diff --git a/.claude/skills/generate-e2e-tests/SKILL.md b/.claude/skills/generate-e2e-tests/SKILL.md new file mode 100644 index 000000000..022531c88 --- /dev/null +++ b/.claude/skills/generate-e2e-tests/SKILL.md @@ -0,0 +1,335 @@ +--- +name: generate-e2e-tests +description: Generate comprehensive Playwright e2e tests from a .netcanvas protocol file and an optional recording. Invoke with /generate-e2e-tests [recording-path] +user-invocable: true +--- + +# Generate E2E Tests from Protocol + +You are generating comprehensive Playwright e2e tests for a Fresco interview protocol. + +## Inputs + +- **Protocol path**: `$1` — path to a `.netcanvas` file (ZIP containing `protocol.json`) +- **Recording path** (optional): `$2` — path to a recording directory (contains `actions.jsonl`, `SESSION.md`, `screenshots/`) + +If no recording is provided, generate a **synthetic happy path** using the data generation strategies in STAGE_TEST_REFERENCE.md (see "Synthetic Data Generation" section). + +## Step 1: Read Reference Materials + +Read these files to understand the testing infrastructure and patterns: + +1. `tests/e2e/docs/STAGE_TEST_REFERENCE.md` — what to test for each stage type, fixture availability, validation testing patterns +2. `tests/e2e/fixtures/stage-fixture.ts` — available fixture methods and their signatures +3. `tests/e2e/fixtures/interview-fixture.ts` — interview navigation fixture +4. `tests/e2e/fixtures/protocol-fixture.ts` — protocol installation and network state inspection +5. `tests/e2e/CLAUDE.md` — full e2e testing architecture guide +6. `tests/e2e/specs/interview/silos-protocol.spec.ts` — reference test implementation to match style/structure +7. `CLAUDE.md` — project coding conventions (path aliases, TypeScript, etc.) + +## Step 2: Extract and Analyze Protocol + +Extract the protocol JSON: + +```bash +unzip -p "$1" protocol.json +``` + +From the extracted JSON, build a **stage map** — for each stage (by index), extract: + +- `type` — stage type (e.g., `NameGeneratorQuickAdd`, `EgoForm`, `Sociogram`) +- `label` — display label +- `subject` — `{ entity, type }` pointing to codebook entry (null for Information/Anonymisation) +- `introductionPanel` — title and text (if present) +- `form.fields[]` — array of `{ variable }` referencing codebook variables +- `prompts[]` — array of prompt objects (with `createEdge`, `variable`, `highlight`, etc.) +- `panels[]` — side panel configuration +- `behaviours` — `maxNodes`, `minNodes`, `freeDraw`, etc. + +For each form field, resolve the variable UUID against the codebook: + +- Look up `codebook.[entity].[type].variables.[variableId]` +- Extract: `name`, `type`, `component`, `validation`, `options` + +This gives you the field name (UUID), display name, input component type, validation rules, and available options for each form field. + +## Step 3: Analyze Recording (if provided) + +If `$2` is provided, read `$2/actions.jsonl` (one JSON object per line). + +Group actions by stage — track URL changes via the `step=N` query parameter. For each stage visited: + +- Extract the sequence of user actions (click, fill, press, select) +- Note filled values and selected options +- Note which nodes were created (names entered in quick-add or name generator forms) +- Note edge-creating interactions (sociogram clicks, dyad census selections) + +The recording represents the **happy path** — the exact user journey to replay. + +### If no recording + +Generate a synthetic happy path from the protocol alone: + +1. Walk through all stages in order (index 0 to N) +2. For each stage, use the **Synthetic Data Generation** section of STAGE_TEST_REFERENCE.md to determine what values to fill, how many nodes to create, etc. +3. For conditional/skip logic, choose the path that visits the **most stages** +4. Track synthetic state as you go — node names created on earlier stages are needed for bin/census/sociogram stages later + +## Step 4: Generate Test File + +Create `tests/e2e/specs/interview/.spec.ts` where `` is derived from the protocol name (kebab-case, lowercase). + +### File Structure + +Follow this exact pattern (from the reference implementation): + +```typescript +/** + * Tests + * + * Tests interview stage navigation using a real .netcanvas protocol file. + */ + +import path from 'node:path'; +import { expect, test } from '~/tests/e2e/fixtures/interview-test.js'; +import { expectURL } from '~/tests/e2e/helpers/expectations.js'; + +const PROTOCOL_PATH = path.resolve( + import.meta.dirname, + '../../data/.netcanvas', +); + +let sharedProtocolId: string; + +test.describe('', () => { + test.beforeAll(async ({ database, protocol }) => { + await database.restoreSnapshot(); + const { protocolId } = await protocol.install(PROTOCOL_PATH); + sharedProtocolId = protocolId; + }); + + test.describe('Happy Path', () => { + test.describe.configure({ mode: 'serial' }); + + let interviewId: string; + + test.beforeAll(async ({ protocol }) => { + interviewId = await protocol.createInterview(sharedProtocolId); + }); + + test.beforeEach(({ interview }) => { + interview.interviewId = interviewId; + }); + + test.afterEach(async ({ page, interview }) => { + const stepMatch = /step=(\d+)/.exec(page.url()); + if (stepMatch?.[1]) { + const step = stepMatch[1]; + // List stage indices with non-deterministic rendering + const highToleranceStages: string[] = [/* sociogram indices */]; + + await interview.capture(`stage-${step}-final`, { + maxDiffPixelRatio: highToleranceStages.includes(step) + ? 0.1 + : undefined, + }); + } + }); + + // One test() per stage... + }); +}); +``` + +### Per-Stage Test Generation + +For each stage in the protocol, generate a `test()` block. Use the STAGE_TEST_REFERENCE.md to determine what to test. + +#### Mapping Recording Actions to Fixture Calls + +Translate recording actions to fixture method calls using these mappings: + +| Recording Pattern | Fixture Call | +|---|---| +| Navigate to URL with `step=N` | `interview.goto(N)` | +| Click element matching next/forward button | `interview.nextButton.click()` | +| Fill input within `[data-field-name="UUID"]` | `stage.form.fillText(UUID, value)` or `fillNumber`/`fillDate` based on codebook component | +| Click radio within `[data-field-name="UUID"]` | `stage.form.selectRadio(UUID, optionLabel)` | +| Click checkbox within `[data-field-name="UUID"]` | `stage.form.selectCheckbox(UUID, optionLabel)` | +| Click toggle button within `[data-field-name="UUID"]` | `stage.form.selectToggleButton(UUID, optionLabel)` | +| Fill quick-add input + press Enter | `stage.quickAdd.addNode(value)` | +| Click "Add a person" button | `stage.nameGenerator.openAddForm()` | +| Click "Finished" button in dialog | `stage.nameGenerator.submitForm()` | +| Drag node from panel | `stage.nodePanel.dragNodeToMainList(label)` | +| Click node on sociogram (connecting) | `stage.sociogram.connectNodes(from, to)` | +| Drag node to ordinal bin | `stage.ordinalBin.dragNodeToBin(node, bin)` | +| Drag node to categorical bin | `stage.categoricalBin.dragNodeToBin(node, bin)` | + +#### Determine Form Method from Codebook + +Use the codebook variable's `component` (or `type` if no component) to pick the right form fixture method: + +| Component | Method | +|---|---| +| `Text`, `TextArea` | `fillText` | +| `Number` | `fillNumber` | +| `DatePicker` | `fillDate` | +| `RadioGroup` | `selectRadio` | +| `LikertScale` | `selectLikert` | +| `CheckboxGroup` | `selectCheckbox` | +| `ToggleButtonGroup` | `selectToggleButton` | +| `Boolean` | `selectRadio` (options are "Yes"/"No" or custom labels from codebook) | + +#### Comments + +Add a comment above each form field interaction with the field's display name and component type: + +```typescript +// 1. Date of birth (DatePicker) +await stage.form.fillDate('596c2ac2-...', '2000-06-15'); + +// 2. Gender identity (RadioGroup) +await stage.form.selectRadio('a06f06f5-...', 'Cisgender Male'); +``` + +### Validation Tests + +For each form stage (EgoForm, AlterForm, AlterEdgeForm), examine the codebook variables for targeted validation rules. Generate validation test assertions **within the happy path test** for that stage: + +1. **Before filling fields**: Try to advance, verify validation blocks: + ```typescript + // Verify validation blocks advancement + await interview.nextButton.click(); + await expectURL(page, /step=N/); // Still on same stage + + // Verify required field errors + await expect( + stage.form.getFieldError('field-uuid'), + ).toBeVisible(); + ``` + +2. **Then fill fields normally** from the recording data. + +Only test these validations (skip others): +- `required: true` — always test +- `minValue` / `maxValue` — test if present +- `minLength` / `maxLength` — test if present +- `pattern` — test if present +- `unique` — test if applicable (needs duplicate value scenario) +- `sameAs` / `differentFrom` — test if present + +### Network State Verification + +The sync middleware uses a 3-second debounce with leading+trailing edges. Each `interview.goto()` destroys the current page, killing any pending trailing-edge syncs. Stages that set data used by downstream skip logic or filtering must explicitly wait for that data to persist. + +#### Form stages (EgoForm, AlterForm) must click Next to submit + +Form data lives in React Hook Form's local state until the form is submitted. **You must click `interview.nextButton` at the end of every form stage** to flush the data to Redux. Without this, the sync middleware never sees the data. + +For **EgoForm** stages, click Next as the last interaction (replaces the `toBeEnabled` assertion): + +```typescript +// Submit form to flush data to Redux +await interview.nextButton.click(); +``` + +For **AlterForm** stages with slides, click Next after filling the **last slide** (the earlier slides already submit when you click Next to advance): + +```typescript +// Submit last slide to flush form data to Redux +await interview.nextButton.click(); +``` + +Note: clicking Next navigates to the next stage, so the `afterEach` screenshot will capture the next stage's initial state rather than the current stage's final state. + +#### Persistence waits for skip logic + +After stages that set attributes consumed by downstream skip logic or filtering, add explicit waits using the protocol fixture. Available methods: + +- `protocol.waitForNodes(interviewId, expectedCount)` — after node creation stages +- `protocol.waitForNode(interviewId, nodeName)` — when count alone is ambiguous +- `protocol.waitForNodeAttribute(interviewId, nodeName, attributeId)` — after CategoricalBin, OrdinalBin, or AlterForm stages (checks for non-null value) +- `protocol.waitForEgoAttribute(interviewId, attributeId, expectedValue)` — after EgoForm stages + +Example for a CategoricalBin stage with downstream skip logic: + +```typescript +test('Stage N: CategoricalBin', async ({ interview, stage, protocol }) => { + await interview.goto(N); + + await stage.categoricalBin.dragNodeToBin('Dan', 'Yes'); + await stage.categoricalBin.dragNodeToBin('Alice', 'No'); + + await expect(interview.nextButton).toBeEnabled(); + + // Wait for the LAST categorized node's attribute to persist + await protocol.waitForNodeAttribute( + interview.interviewId, + 'Alice', + 'variable-uuid', + ); +}); +``` + +**Always add `protocol` to the test's destructured fixtures** when using persistence waits. + +### Stages With Placeholder Fixtures + +Check the Fixture Availability Summary in STAGE_TEST_REFERENCE.md. If a stage type's fixture is marked **Placeholder**, generate a minimal test with a TODO referencing the placeholder: + +```typescript +test('Stage N: Stage Label', async ({ page, interview }) => { + await interview.goto(N); + + // TODO: stage.dyadCensus is a placeholder fixture — implement its + // interaction methods before writing full test assertions. + // See DyadCensusFixture JSDoc in stage-fixture.ts for the methods needed. + // + // Expected behavior from recording: + // - Dismiss intro panel + // - Select Yes/No for each node pair + // - Auto-advances after 350ms +}); +``` + +Always reference the `stage.` property (e.g., `stage.dyadCensus`, `stage.narrative`) so the test structure is ready — it just needs the fixture methods implemented. Never use raw Playwright selectors as a fallback. + +### Skipped Stages + +If the recording skips certain stage indices (e.g., conditional stages), add a comment: + +```typescript +// Stages N-M are skipped (conditional on ) +``` + +### Browser-Specific Skips + +Add `test.skip()` for known browser limitations: + +```typescript +// Skip geospatial on Firefox (no WebGL in Playwright's Firefox) +test.skip(browserName === 'firefox', 'Firefox lacks WebGL support in Playwright'); +``` + +## Step 5: Verify Protocol File Location + +Check if the `.netcanvas` file is already in `tests/e2e/data/`. If not, suggest copying it there and update the path constant accordingly. + +## Step 6: Output Summary + +After generating the test file, output: +1. Path to the generated test file +2. Number of stages covered +3. Number of validation tests included +4. List of stages with TODO placeholders (missing fixtures) +5. Suggested next steps (copy protocol to test data, run tests, etc.) + +## Important Rules + +- **Always use path aliases** (`~/tests/e2e/...`) for imports, never relative paths +- **Use `.js` extensions** in import paths (TypeScript with ESM) +- **Field names are UUIDs** — always use the variable UUID from the codebook, not the display name +- **Serial mode** — interview tests MUST use `test.describe.configure({ mode: 'serial' })` +- **Soft assertions for screenshots** — the `afterEach` capture pattern handles this via `interview.capture()` +- **No `console.log`** — project ESLint rule forbids it +- **Follow existing patterns** — match the style, structure, and conventions of `silos-protocol.spec.ts` exactly diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..0d425cd4b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,23 @@ +Dockerfile +.dockerignore +node_modules +npm-debug.log +README.md +.next +.git +.gitignore +.env* +.vscode +.idea +*.log +coverage +.nyc_output +.DS_Store +Thumbs.db +*.tsbuildinfo +tests/ +docs/ +*.md +storybook-static/ +!package.json +!pnpm-lock.yaml \ No newline at end of file diff --git a/.env b/.env deleted file mode 100644 index c498ab59b..000000000 --- a/.env +++ /dev/null @@ -1,7 +0,0 @@ -# Environment variables declared in this file are automatically made available to Prisma. -# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema - -# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. -# See the documentation for all the connection string options: https://pris.ly/d/connection-strings - -DATABASE_URL="file:./dev.db" \ No newline at end of file diff --git a/.env.example b/.env.example new file mode 100644 index 000000000..567ef0424 --- /dev/null +++ b/.env.example @@ -0,0 +1,14 @@ +# ------------------- +# Required environment variables +# ------------------- +DATABASE_URL="postgres://user:password@host:5432/database?schema=public" # A pooled connection URL for Prisma. +DATABASE_URL_UNPOOLED="postgres://user:password@host:5432/database?schema=public" # A non-pooling connection URL for Prisma + +# ------------------- +# Optional environment variables - uncomment to use +# ------------------- + +#DISABLE_ANALYTICS # true or false - If true, the app will not send anonymous analytics and error data. Defaults to false. +#SANDBOX_MODE=false # true or false - if true, the app will use the sandbox mode, which disables resetting the database and other features +#PUBLIC_URL="http://yourdomain.com" # When using advanced deployment, this is required. Set to the domain name of your app +#USE_NEON_POSTGRES_ADAPTER=false # true or false - If true, uses Neon serverless PostgreSQL adapter instead of standard pg adapter. Required for Vercel/Netlify deployments with Neon. Defaults to false. \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 5f7efa457..000000000 --- a/.eslintrc.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require("./packages/config/eslint-preset.js"); diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..d3f4eba01 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,14 @@ +# These are supported funding model platforms + +github: [jthrilly] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry +polar: # Replace with a single Polar username +buy_me_a_coffee: # Replace with a single Buy Me a Coffee username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..4a7cb67ad --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: 'npm' + directory: '/' + target-branch: 'next' + schedule: + interval: 'weekly' diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..6d8d05750 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,34 @@ +name: Checks +permissions: + contents: read + +on: + push: + branches: + - main + pull_request: + branches: + - '*' + +jobs: + check: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - name: Lint + command: pnpm lint + - name: Type check + command: pnpm typecheck + - name: Unit tests + command: pnpm test:unit + - name: Knip + command: pnpm knip + name: ${{ matrix.name }} + steps: + - name: Setup + uses: complexdatacollective/github-actions/setup-pnpm@4d9ebee3e57834a7ac8389a57d0fe1ef3614be14 # v2 + + - name: ${{ matrix.name }} + run: ${{ matrix.command }} diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml new file mode 100644 index 000000000..105a8f385 --- /dev/null +++ b/.github/workflows/chromatic.yml @@ -0,0 +1,116 @@ +name: 'Chromatic' +permissions: + contents: read + pull-requests: write + statuses: write + +on: + push: + workflow_dispatch: + issue_comment: + types: [created] + +jobs: + chromatic: + name: Run Chromatic + runs-on: ubuntu-latest + if: > + github.event_name == 'push' || + github.event_name == 'workflow_dispatch' || + (github.event_name == 'issue_comment' && + github.event.issue.pull_request && + startsWith(github.event.comment.body, '/chromatic') && + contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.comment.author_association)) + steps: + - name: Get PR details + if: github.event_name == 'issue_comment' + id: pr + uses: actions/github-script@v9 + with: + script: | + const pr = await github.rest.pulls.get({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: context.issue.number + }); + + core.setOutput('ref', pr.data.head.ref); + core.setOutput('sha', pr.data.head.sha); + + await Promise.all([ + github.rest.reactions.createForIssueComment({ + owner: context.repo.owner, + repo: context.repo.repo, + comment_id: context.payload.comment.id, + content: 'rocket' + }), + github.rest.repos.createCommitStatus({ + owner: context.repo.owner, + repo: context.repo.repo, + sha: pr.data.head.sha, + state: 'pending', + context: 'Chromatic', + description: 'Visual tests running...' + }) + ]); + + - name: Setup + uses: complexdatacollective/github-actions/setup-pnpm@4d9ebee3e57834a7ac8389a57d0fe1ef3614be14 # v2 + with: + fetch-depth: '0' + cache-key-prefix: chromatic-pnpm-store + + - name: Run Chromatic + id: chromatic + uses: chromaui/action@e3eb8ec36101d8f0253c7c3ae66e5a2b4e2197ba # v16.10.0 + with: + projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} + autoAcceptChanges: main + onlyChanged: true + + - name: Post links to PR + if: github.event_name == 'issue_comment' + uses: actions/github-script@v9 + env: + BRANCH: ${{ steps.pr.outputs.ref }} + with: + script: | + const branch = process.env.BRANCH; + const encodedBranch = encodeURIComponent(branch); + const body = [ + '### Chromatic', + '', + `| | |`, + `|---|---|`, + `| **Storybook** | [View on Chromatic](https://${encodedBranch}--68b1958ee9350657446b5406.chromatic.com) |`, + `| **Library** | [View on Chromatic](https://www.chromatic.com/library?appId=68b1958ee9350657446b5406&branch=${encodedBranch}) |`, + ].join('\n'); + + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + body + }); + + - name: Update commit status + if: github.event_name == 'issue_comment' && always() + uses: actions/github-script@v9 + env: + CHROMATIC_OUTCOME: ${{ steps.chromatic.outcome }} + PR_SHA: ${{ steps.pr.outputs.sha }} + BUILD_URL: ${{ steps.chromatic.outputs.buildUrl }} + with: + script: | + const success = process.env.CHROMATIC_OUTCOME === 'success'; + await github.rest.repos.createCommitStatus({ + owner: context.repo.owner, + repo: context.repo.repo, + sha: process.env.PR_SHA, + state: success ? 'success' : 'failure', + context: 'Chromatic', + description: success + ? 'Visual tests passed' + : 'Visual tests failed', + target_url: process.env.BUILD_URL || undefined + }); diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 000000000..c96e1ccba --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,55 @@ +name: Build and Publish Docker Image +permissions: + contents: read + packages: write + +on: + release: + types: [published] + +env: + IMAGE_NAME: fresco + +jobs: + build-and-publish: + runs-on: ubuntu-latest + + steps: + - name: Check out the code + uses: actions/checkout@v6 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v4 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v4 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract release version + id: extract_version + run: | + VERSION=${GITHUB_REF#refs/tags/} + VERSION=${VERSION#v} + echo "version=$VERSION" >> $GITHUB_ENV + + - name: Set up QEMU + uses: docker/setup-qemu-action@v4 + + - name: Build and Push Multi-platform Docker Image + uses: docker/build-push-action@v7 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: | + ghcr.io/complexdatacollective/fresco:${{ env.version }} + ghcr.io/complexdatacollective/fresco:latest + cache-from: | + type=gha + type=registry,ref=ghcr.io/complexdatacollective/fresco:buildcache + cache-to: | + type=gha,mode=max + type=registry,ref=ghcr.io/complexdatacollective/fresco:buildcache,mode=max,image-manifest=true diff --git a/.github/workflows/netlify-cleanup-preview.yml b/.github/workflows/netlify-cleanup-preview.yml new file mode 100644 index 000000000..ceff9802e --- /dev/null +++ b/.github/workflows/netlify-cleanup-preview.yml @@ -0,0 +1,26 @@ +name: Cleanup Deploy Preview +on: + pull_request: + types: [closed] +permissions: + contents: read +jobs: + delete-preview: + runs-on: ubuntu-latest + env: + BRANCH_NAME: ${{ github.event.pull_request.head.ref }} + PR_NUMBER: ${{ github.event.number }} + steps: + - uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0 + - name: Delete Neon Branch + env: + NEON_API_KEY: ${{ secrets.NEON_API_KEY }} + run: bunx neonctl branches delete "preview/pr-$PR_NUMBER-$BRANCH_NAME" --project-id ${{ vars.NEON_PROJECT_ID }} + + - name: Remove branch-scoped Netlify env vars + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} + run: | + bunx netlify-cli env:unset DATABASE_URL --context "branch:$BRANCH_NAME" + bunx netlify-cli env:unset DATABASE_URL_UNPOOLED --context "branch:$BRANCH_NAME" diff --git a/.github/workflows/netlify-deploy-preview.yml b/.github/workflows/netlify-deploy-preview.yml new file mode 100644 index 000000000..b6ffe473d --- /dev/null +++ b/.github/workflows/netlify-deploy-preview.yml @@ -0,0 +1,134 @@ +name: Deploy Preview + +on: + pull_request: + # Only for development-track PRs (base = next). The sandbox-dev Netlify + # project is wired to this branch; PRs into main go through a separate + # production workflow / project. + branches: [next] + +permissions: + contents: read + pull-requests: write + +jobs: + deploy-preview: + runs-on: ubuntu-latest + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} + steps: + - name: Create Neon Branch + id: create-branch + uses: neondatabase/create-branch-action@fb620d43d4c565abaf088b848a4e28e5c4ea4d9c # 6.3.1 + with: + project_id: ${{ vars.NEON_PROJECT_ID }} + branch_name: preview/pr-${{ github.event.number }}-${{ github.head_ref }} + api_key: ${{ secrets.NEON_API_KEY }} + + - name: Setup + uses: complexdatacollective/github-actions/setup-pnpm@4d9ebee3e57834a7ac8389a57d0fe1ef3614be14 # v2 + + - name: Install Netlify CLI + run: pnpm add -g netlify-cli + + - name: Set Netlify runtime environment variables + # Set the database URLs on Netlify *before* anything else so that the + # deploy preview Netlify auto-triggers from the same push has them + # available when its build container starts. If we set them after the + # migrations, the auto-deploy races ahead with stale env and the + # functions are baked with `connectionString: undefined`, which makes + # `node-postgres` fall back to PGHOST=localhost (127.0.0.1). + env: + BRANCH: ${{ github.head_ref }} + DB_URL_POOLED: ${{ steps.create-branch.outputs.db_url_pooled }} + DB_URL: ${{ steps.create-branch.outputs.db_url }} + run: | + netlify env:set DATABASE_URL "$DB_URL_POOLED" --context "branch:$BRANCH" + netlify env:set DATABASE_URL_UNPOOLED "$DB_URL" --context "branch:$BRANCH" + + - name: Get branch preview URL + id: branch-preview + env: + BRANCH: ${{ github.head_ref }} + run: | + SUBDOMAIN=$(curl -s -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" \ + "https://api.netlify.com/api/v1/sites/$NETLIFY_SITE_ID" | jq -r '.name') + BRANCH_SLUG=$(echo "$BRANCH" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9-]/-/g' | sed 's/--*/-/g' | sed 's/^-//;s/-$//') + echo "url=https://${BRANCH_SLUG}--${SUBDOMAIN}.netlify.app" >> "$GITHUB_OUTPUT" + + - name: Write .env file + # Only used by the local migration/initialization scripts below to + # surface non-DB Netlify env vars (UploadThing keys, etc.). The DB URLs + # are passed to those steps directly via `env:` so the scripts don't + # depend on dotenv parsing this file correctly — `netlify env:list + # --plain` is not guaranteed to terminate with a newline, which would + # otherwise glue an appended `DATABASE_URL=...` line onto the previous + # variable's value. + run: netlify env:list --context deploy-preview --plain >> .env + + - name: Run Migrations + env: + DATABASE_URL: ${{ steps.create-branch.outputs.db_url_pooled }} + DATABASE_URL_UNPOOLED: ${{ steps.create-branch.outputs.db_url }} + run: npx tsx scripts/setup-database.ts + + - name: Run Initialization + env: + DATABASE_URL: ${{ steps.create-branch.outputs.db_url_pooled }} + DATABASE_URL_UNPOOLED: ${{ steps.create-branch.outputs.db_url }} + run: npx tsx scripts/initialize.ts + + - name: Trigger Netlify build and wait for completion + # Branch-scoped DATABASE_URL is set and migrations have run, so the + # build will see the right env. Triggering via API + polling means + # this CI step fails if the Netlify build fails (otherwise we'd post + # a working-preview comment for a broken deploy). + env: + BRANCH: ${{ github.head_ref }} + run: ./scripts/netlify-deploy.sh + + - name: Check for existing deploy comment + id: find-comment + if: success() + env: + GH_TOKEN: ${{ github.token }} + PR_NUMBER: ${{ github.event.pull_request.number }} + REPO: ${{ github.repository }} + run: | + FOUND=$(gh api "repos/$REPO/issues/$PR_NUMBER/comments" \ + --jq '[.[] | select(.body | contains(""))] | length') + if [ "$FOUND" -gt 0 ]; then + echo "exists=true" >> "$GITHUB_OUTPUT" + else + echo "exists=false" >> "$GITHUB_OUTPUT" + fi + + - name: Comment on Pull Request + if: success() && steps.find-comment.outputs.exists != 'true' + uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 + with: + comment-tag: deploy-preview + message: | + | Resource | Link | + |----------|------| + | Branch Preview 🌐 | ${{ steps.branch-preview.outputs.url }} | + | Neon branch 🐘 | https://console.neon.tech/app/projects/${{ vars.NEON_PROJECT_ID }}/branches/${{ steps.create-branch.outputs.branch_id }} | + + - name: Remove failure comment on success + if: success() + continue-on-error: true + uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 + with: + comment-tag: deploy-preview-failure + mode: delete + + - name: Comment on failure + if: failure() + uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 + with: + comment-tag: deploy-preview-failure + message: | + ⚠️ **Branch preview setup failed** + + Check the [workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) for details. diff --git a/.github/workflows/netlify-deploy-status.yml b/.github/workflows/netlify-deploy-status.yml new file mode 100644 index 000000000..457f7da8f --- /dev/null +++ b/.github/workflows/netlify-deploy-status.yml @@ -0,0 +1,25 @@ +name: Production Deploy Status + +on: + push: + branches: [next] + +permissions: + contents: read + +jobs: + await-production-deploy: + runs-on: ubuntu-latest + env: + NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} + COMMIT_SHA: ${{ github.sha }} + steps: + - name: Checkout repository + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + + - name: Await Netlify production deploy + # Netlify auto-deploys this push; we just observe via the API and + # surface the outcome as a real GitHub check (Netlify's own deploy + # notifications don't support production-deploy events on this site). + run: ./scripts/netlify-await-deploy.sh diff --git a/.gitignore b/.gitignore index f8b72e868..81b6d4721 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,28 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies -node_modules -.pnp +/node_modules +/tmp +/.pnp .pnp.js # testing -coverage +/coverage + +# database +/prisma/db.sqlite +/prisma/db.sqlite-journal + +# prisma generated client +/lib/db/generated # next.js -.next/ -out/ -build +/.next/ +/out/ +next-env.d.ts + +# production +/build # misc .DS_Store @@ -21,13 +32,51 @@ build npm-debug.log* yarn-debug.log* yarn-error.log* +.pnpm-debug.log* # local env files -.env.local -.env.development.local -.env.test.local -.env.production.local -!packages/database/.env - -# turbo -.turbo +# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables +.env +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo + +*storybook.log +storybook-static + +# e2e testing +/tests/e2e/playwright-report/ +/tests/e2e/test-results/ +/tests/e2e/test-results-*/ +/tests/e2e/screenshots/ +/tests/e2e/.auth/ +/tests/e2e/.context-data.json +/tests/e2e/.context/ +/tests/e2e/.db-snapshots/ +/.e2e-assets/ +/playwright-report/ +/test-results/ +/playwright/.cache/ + +# Serena +.serena + +# playwright MCP +./playwright-mcp + +.pnpm-store +.pnpm-docker-store + +# Local Netlify folder +.netlify + +# Git worktrees +.worktrees + +# plans +/docs/plans +/docs/superpowers diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 000000000..8ef0a5258 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v24.11.1 diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..0f9304eab --- /dev/null +++ b/.prettierrc @@ -0,0 +1,9 @@ +{ + "plugins": ["prettier-plugin-tailwindcss"], + "printWidth": 80, + "quoteProps": "consistent", + "singleQuote": true, + "tabWidth": 2, + "useTabs": false, + "tailwindFunctions": ["cva", "cx"] +} diff --git a/.storybook/main.ts b/.storybook/main.ts new file mode 100644 index 000000000..7a1621ecf --- /dev/null +++ b/.storybook/main.ts @@ -0,0 +1,30 @@ +import { defineMain } from '@storybook/nextjs-vite/node'; +import { stubUseServer } from './vite-plugin-stub-use-server.ts'; + +export default defineMain({ + addons: [ + '@storybook/addon-docs', + '@storybook/addon-a11y', + '@storybook/addon-vitest', + '@chromatic-com/storybook', + ], + framework: { + name: '@storybook/nextjs-vite', + options: { + builder: { + // Customize the Vite builder options here + viteConfigPath: './vitest.config.ts', + }, + }, + }, + staticDirs: ['../public'], + typescript: { + check: false, + }, + stories: ['../**/*.stories.@(js|jsx|mjs|ts|tsx|mdx)'], + + viteFinal(config) { + config.plugins = [stubUseServer(), ...(config.plugins ?? [])]; + return config; + }, +}); diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx new file mode 100644 index 000000000..3117b9f99 --- /dev/null +++ b/.storybook/preview.tsx @@ -0,0 +1,99 @@ +import '@codaco/tailwind-config/fonts/inclusive-sans.css'; +import '@codaco/tailwind-config/fonts/nunito.css'; +import addonA11y from '@storybook/addon-a11y'; +import addonDocs from '@storybook/addon-docs'; +import addonVitest from '@storybook/addon-vitest'; +import { definePreview } from '@storybook/nextjs-vite'; +import isChromatic from 'chromatic/isChromatic'; +import { NuqsTestingAdapter } from 'nuqs/adapters/testing'; +import { StrictMode } from 'react'; +import Providers from '../components/Providers'; +import '../styles/globals.css'; + +// @chromatic-com/storybook is not included here because it doesn't export a +// CSF Next compatible preview addon. It only provides server-side preset +// functionality and manager UI, so it's configured in main.ts only. +// See: https://github.com/chromaui/addon-visual-tests/pull/404 + +export default definePreview({ + addons: [addonDocs(), addonA11y(), addonVitest()], + parameters: { + options: { + storySort: { + order: [ + 'Design System', + ['Colors', 'Elevation', 'Type Scale', 'Typography'], + 'UI', + 'Systems', + ['Form', 'Dialogs', 'DragAndDrop'], + 'Interview', + '*', + ], + }, + }, + controls: { + matchers: { + color: /(background|color)$/i, + date: /Date$/i, + }, + }, + a11y: { + // 'todo' - show a11y violations in the test UI only + // 'error' - fail CI on a11y violations + // 'off' - skip a11y checks entirely + test: 'todo', + /** + * base-ui dialog adds focus guards which are picked up by a11y tests + * but are necessary for proper focus management within the dialog, + * and compatible with WCAG guidelines, so we disable this rule here. + */ + config: { + rules: [ + { + id: 'aria-hidden-focus', + selector: '[data-base-ui-focus-guard]', + enabled: false, + }, + ], + }, + }, + }, + + decorators: [ + (Story) => { + // Disable Base UI animations whenever the browser is being driven by + // automation (Playwright in vitest browser mode, or Storybook's + // play-function runner). This makes Base UI dialog open/close flows + // deterministic: they no longer wait on `getAnimations()` so sequences + // like "click Cancel → confirm dialog opens → click Continue editing" + // don't race the form store against CSS animation completion. + // + // Also togglable via `?disableAnimations=1` on the URL for interactive + // debugging of the animation-disabled code path. + // + // Manual browsing has `navigator.webdriver === false`, so interactive + // development still gets the full animations by default. + const disableAnimationsFromAutomation = + typeof navigator !== 'undefined' && navigator.webdriver === true; + const disableAnimations = + disableAnimationsFromAutomation || isChromatic(); + + return ( + // nextjs-vite doesn't seem to pick up the strict mode setting from next config + + {/** + * required by base-ui: https://base-ui.com/react/overview/quick-start#portals + */} +
+ + + +
+
+ ); + }, + ], +}); diff --git a/.storybook/tsconfig.json b/.storybook/tsconfig.json new file mode 100644 index 000000000..f45d85d0a --- /dev/null +++ b/.storybook/tsconfig.json @@ -0,0 +1,8 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "allowImportingTsExtensions": true, + "noEmit": true + }, + "include": ["**/*", "../types/**/*.d.ts"] +} diff --git a/.storybook/vite-plugin-stub-use-server.ts b/.storybook/vite-plugin-stub-use-server.ts new file mode 100644 index 000000000..24652d3fb --- /dev/null +++ b/.storybook/vite-plugin-stub-use-server.ts @@ -0,0 +1,48 @@ +const useServerRegex = /^['"]use server['"]/; +const jsExtRegex = /\.[cm]?[jt]sx?$/; + +const exportAsyncFunctionRegex = /^export\s+async\s+function\s+(\w+)/gm; +const exportConstAsyncRegex = /^export\s+const\s+(\w+)\s*=\s*async/gm; +const exportTypeRegex = /^export\s+type\s+(\w+)/gm; + +function getFirstNonEmptyLine(code: string): string { + for (const line of code.split('\n')) { + const trimmed = line.trim(); + if (trimmed !== '') return trimmed; + } + return ''; +} + +export function stubUseServer() { + return { + name: 'stub-use-server', + enforce: 'pre' as const, + + transform(code: string, id: string) { + if (id.includes('node_modules') || !jsExtRegex.test(id)) { + return null; + } + + const firstLine = getFirstNonEmptyLine(code); + if (!useServerRegex.test(firstLine)) { + return null; + } + + const stubs: string[] = [`'use server';`]; + + for (const match of code.matchAll(exportAsyncFunctionRegex)) { + stubs.push(`export async function ${match[1]}() {}`); + } + + for (const match of code.matchAll(exportConstAsyncRegex)) { + stubs.push(`export const ${match[1]} = async () => {};`); + } + + for (const match of code.matchAll(exportTypeRegex)) { + stubs.push(`export type ${match[1]} = never;`); + } + + return { code: stubs.join('\n'), map: null }; + }, + }; +} diff --git a/.vscode/css-data.json b/.vscode/css-data.json new file mode 100644 index 000000000..637802d97 --- /dev/null +++ b/.vscode/css-data.json @@ -0,0 +1,13 @@ +{ + "version": 1.1, + "atDirectives": [ + { + "name": "@tailwind", + "description": "Use the @tailwind directive to insert Tailwind's `base`, `components`, `utilities`, and `screens` styles into your CSS." + }, + { + "name": "@apply", + "description": "Use @apply to inline any existing utility classes into your own custom CSS." + } + ] +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..940260d85 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["dbaeumer.vscode-eslint"] +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..31ba0c876 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,32 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Next.js: debug server-side", + "type": "node-terminal", + "request": "launch", + "command": "pnpm run dev" + }, + { + "name": "Next.js: debug client-side", + "type": "chrome", + "request": "launch", + "url": "http://localhost:3000" + }, + { + "name": "Next.js: debug full stack", + "type": "node", + "request": "launch", + "program": "${workspaceFolder}/node_modules/.bin/next", + "runtimeArgs": ["--inspect"], + "skipFiles": ["/**"], + "serverReadyAction": { + "action": "debugWithEdge", + "killOnServerStop": true, + "pattern": "- Local:.+(https?://.+)", + "uriFormat": "%s", + "webRoot": "${workspaceFolder}" + } + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..2d3801a51 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,28 @@ +{ + "editor.tabSize": 2, + "editor.insertSpaces": true, + "editor.detectIndentation": false, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.quickSuggestions": { + "strings": "on" + }, + "css.customData": ["./.vscode/css-data.json"], + "typescript.tsdk": "node_modules/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true, + "editor.codeActionsOnSave": { + "source.organizeImports": "always", + "source.fixAll": "always", + "source.fixAll.eslint": "always", + "source.fixAll.typescript": "always", + "source.fixAll.tailwindcss": "always" + }, + "editor.formatOnSave": true, + "tailwindCSS.classFunctions": ["cva", "cx"], + // Rule is broken: https://github.com/tailwindlabs/tailwindcss-intellisense/issues/1542 + // Implemented a fixable version using https://github.com/schoero/eslint-plugin-better-tailwindcss + // that can also be selectively disabled via eslint-disable-next-line comments + "tailwindCSS.lint.suggestCanonicalClasses": "ignore", + "files.associations": { + "*.css": "tailwindcss" + } +} diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..e067f0db3 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,382 @@ +# CLAUDE.md - AI Assistant Guide for Fresco + +This document provides guidance for AI assistants working with the Fresco codebase. + +## Project Overview + +Fresco is a web-based interview platform that brings Network Canvas interviews to the browser. It's built with Next.js 14 (App Router), TypeScript, and PostgreSQL. Version 3.0.0. + +**Documentation**: + +## Quick Reference + +```bash +# Development +pnpm install # Install dependencies +pnpm dev # Start dev server (auto-starts PostgreSQL via Docker) +pnpm storybook # Component library at :6006 + +# Quality Checks +pnpm lint # ESLint +pnpm typecheck # TypeScript type checking +pnpm test # Vitest unit tests +pnpm knip # Find unused code + +# Build +pnpm build # Production build +pnpm build:platform # Full build with DB setup (Vercel) +``` + +## Architecture + +### Directory Structure + +``` +app/ # Next.js App Router pages and API routes +├── (blobs)/ # Setup & authentication (route group) +├── (interview)/ # Interview interface (route group) +├── dashboard/ # Admin dashboard pages +├── api/ # API endpoints +└── reset/ # Password reset + +actions/ # Server Actions (Next.js) +components/ # React components +├── ui/ # shadcn/ui base components +├── data-table/ # Table components +└── layout/ # Layout components + +lib/ # Core business logic +├── interviewer/ # Interview session management (Redux) +├── network-exporters/ # Data export functionality +└── network-query/ # Network analysis utilities + +hooks/ # Custom React hooks +queries/ # Database query functions +schemas/ # Zod validation schemas +types/ # TypeScript type definitions +utils/ # Utility functions +prisma/ # Database schema +styles/ # Global CSS/SCSS +``` + +### Tech Stack + +- **Framework**: Next.js 14.2 with App Router +- **Language**: TypeScript 5.8 (strict mode) +- **Database**: PostgreSQL with Prisma ORM +- **Auth**: Lucia authentication +- **Styling**: Tailwind CSS 4.1 + shadcn/ui +- **State Management**: Redux Toolkit (interview sessions) +- **Forms**: React Hook Form + Zod validation +- **Package Manager**: pnpm 11.1.2 + +## Code Conventions + +### TypeScript + +- **Strict mode enabled** with `noUncheckedIndexedAccess` +- **Do not use type assertions (`as`)** to fix type errors unless absolutely necessary. Find the root cause of the typing issue and refactor to resolve it. Type assertions should ALWAYS be confirmed with the user first. +- Use `type` for type definitions (not `interface`) - enforced by ESLint +- Prefer inline type imports: `import { type Foo } from './bar'` +- Unused variables must start with underscore: `_unusedVar` +- **Always use path aliases** (`~/`) for imports - never use relative paths like `../` or `./` + +```typescript +// Correct - use path aliases +import { type Protocol } from '@prisma/client'; +import { cx } from '~/utils/cva'; +import { Button } from '~/components/ui/Button'; + +// Incorrect - never use relative paths +// import { Button } from '../components/ui/Button'; + +// Type definition +export type CreateInterview = { + participantIdentifier?: string; + protocolId: string; +}; +``` + +### Environment Variables + +- **Never use `process.env` directly** - ESLint will error +- Import from `~/env.js` which validates with Zod: + +```typescript +import { env } from '~/env.js'; +const dbUrl = env.DATABASE_URL; +``` + +### Console Logging + +- `no-console` ESLint rule is enforced +- Must disable ESLint for intentional logs: + +```typescript +// eslint-disable-next-line no-console +console.log('Debug info'); +``` + +### Server Actions + +Located in `/actions/`. Pattern: + +- Mark with `'use server'` directive +- Use `requireApiAuth()` for authentication +- Return `{ error, data }` pattern +- Use `safeUpdateTag()` for cache invalidation (read-your-own-writes) +- Track events with `addEvent()` for activity feed + +```typescript +'use server'; + +import { requireApiAuth } from '~/utils/auth'; +import { safeUpdateTag } from '~/lib/cache'; +import { prisma } from '~/utils/db'; + +export async function deleteItem(id: string) { + await requireApiAuth(); + + try { + const result = await prisma.item.delete({ where: { id } }); + safeUpdateTag('getItems'); + return { error: null, data: result }; + } catch (error) { + return { error: 'Failed to delete', data: null }; + } +} +``` + +### Page Components (App Router) + +- Server Components by default +- Use `'use client'` directive only when needed +- Authenticate with `requirePageAuth()` or `requireAppNotExpired()` +- Wrap async operations in `` + +```typescript +import { requirePageAuth } from '~/utils/auth'; + +export default async function DashboardPage() { + await requirePageAuth(); + + return ( + }> + + + ); +} +``` + +### UI Components + +Using shadcn/ui with Tailwind. Follow the pattern: + +- Use `cva` (class-variance-authority) for variants +- Use `cn()` utility from `~/utils/shadcn` for class merging +- Export component + variants + skeleton when applicable +- **Spread HTML props onto root element** - Components should accept all valid HTML attributes for their root element and spread them. This allows consumers to pass `data-testid`, `aria-*`, event handlers, etc. without the component needing explicit props for each. + +```typescript +import { cva, type VariantProps } from 'class-variance-authority'; +import { cn } from '~/utils/shadcn'; + +const buttonVariants = cva('base-classes', { + variants: { + variant: { default: '...', destructive: '...' }, + size: { default: '...', sm: '...' }, + }, + defaultVariants: { + variant: 'default', + size: 'default', + }, +}); + +export type ButtonProps = { + variant?: VariantProps['variant']; +} & React.ButtonHTMLAttributes; + +// Example: spreading props onto root element +const Button = ({ variant, className, ...props }: ButtonProps) => ( + + + + ); +} diff --git a/app/(blobs)/(setup)/_components/OnboardSteps/UploadProtocol.tsx b/app/(blobs)/(setup)/_components/OnboardSteps/UploadProtocol.tsx new file mode 100644 index 000000000..bbfef59a5 --- /dev/null +++ b/app/(blobs)/(setup)/_components/OnboardSteps/UploadProtocol.tsx @@ -0,0 +1,42 @@ +'use client'; +import { parseAsInteger, useQueryState } from 'nuqs'; +import ProtocolImportDropzone from '~/components/ProtocolImport/ProtocolImportDropzone'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useProtocolImport } from '~/hooks/useProtocolImport'; + +function ConfigureStudy() { + const [currentStep, setCurrentStep] = useQueryState( + 'step', + parseAsInteger.withDefault(1), + ); + + const { importProtocols } = useProtocolImport(); + + const handleNextStep = () => { + void setCurrentStep(currentStep + 1); + }; + + return ( +
+ Import Protocols + + If you have already created a Network Canvas protocol ( + .netcanvas) you can import it now. + + + If you don't have a protocol yet, you can upload one later from the + dashboard. + + +
+ +
+
+ ); +} + +export default ConfigureStudy; diff --git a/app/(blobs)/(setup)/_components/S3ConfigForm.tsx b/app/(blobs)/(setup)/_components/S3ConfigForm.tsx new file mode 100644 index 000000000..5163b9163 --- /dev/null +++ b/app/(blobs)/(setup)/_components/S3ConfigForm.tsx @@ -0,0 +1,90 @@ +'use client'; + +import { useRouter } from 'next/navigation'; +import { saveS3Config } from '~/actions/storageProvider'; +import Field from '@codaco/fresco-ui/form/Field/Field'; +import Form from '@codaco/fresco-ui/form/Form'; +import SubmitButton from '@codaco/fresco-ui/form/SubmitButton'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import { s3ConfigSchema } from '~/schemas/s3Settings'; + +export const S3ConfigForm = () => { + const router = useRouter(); + + const handleSubmit = async (rawData: unknown) => { + try { + const result = await saveS3Config(rawData); + + if (!result.success) { + return { + success: false as const, + fieldErrors: result.fieldErrors ?? {}, + formErrors: 'error' in result && result.error ? [result.error] : [], + }; + } + + router.push('/setup?step=3'); + return { success: true as const }; + } catch (error) { + const message = + error instanceof Error ? error.message : 'An unexpected error occurred'; + return { + success: false as const, + formErrors: [message], + }; + } + }; + + return ( +
+ + + + + + Save and continue + + ); +}; diff --git a/app/(blobs)/(setup)/_components/SandboxCredentials.tsx b/app/(blobs)/(setup)/_components/SandboxCredentials.tsx new file mode 100644 index 000000000..84e00f243 --- /dev/null +++ b/app/(blobs)/(setup)/_components/SandboxCredentials.tsx @@ -0,0 +1,31 @@ +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import { env } from '~/env'; + +export default function SandboxCredentials() { + if (!env.SANDBOX_MODE) return null; + return ( + + Sandbox Credentials + +
+
+
+ Username: + admin +
+
+ Password: + Administrator1! +
+
+ +
+ The sandbox is a shared example environment not intended for real + interviews. + All uploaded data is public. +
+
+
+
+ ); +} diff --git a/app/(blobs)/(setup)/_components/Sidebar.tsx b/app/(blobs)/(setup)/_components/Sidebar.tsx new file mode 100644 index 000000000..d36a0d157 --- /dev/null +++ b/app/(blobs)/(setup)/_components/Sidebar.tsx @@ -0,0 +1,52 @@ +'use client'; + +import { Check } from 'lucide-react'; +import { parseAsInteger, useQueryState } from 'nuqs'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import { cx } from '@codaco/fresco-ui/utils/cva'; + +function OnboardSteps({ steps }: { steps: string[] }) { + const [currentStep, setCurrentStep] = useQueryState( + 'step', + parseAsInteger.withDefault(1), + ); + + return ( + + {steps.map((step, index) => ( +
index && 'pointer-events-auto cursor-pointer', + )} + onClick={() => void setCurrentStep(index + 1)} + > +
+ {index < currentStep - 1 ? ( + + ) : ( + index + 1 + )} +
+
+ + {step} + +
+
+ ))} +
+ ); +} + +export default OnboardSteps; diff --git a/app/(blobs)/(setup)/_components/SignInForm.tsx b/app/(blobs)/(setup)/_components/SignInForm.tsx new file mode 100644 index 000000000..1742895b6 --- /dev/null +++ b/app/(blobs)/(setup)/_components/SignInForm.tsx @@ -0,0 +1,364 @@ +'use client'; + +import { + browserSupportsWebAuthn, + startAuthentication, +} from '@simplewebauthn/browser'; +import { ArrowLeft, KeyRound, LockIcon, User2 } from 'lucide-react'; +import { useRouter } from 'next/navigation'; +import { useEffect, useState } from 'react'; +import { login, recoveryCodeLogin, type LoginResult } from '~/actions/auth'; +import { verifyTwoFactor } from '~/actions/twoFactor'; +import { + generateAuthenticationOptions, + verifyAuthentication, +} from '~/actions/webauthn'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import { DialogFooter } from '@codaco/fresco-ui/dialogs/Dialog'; +import Field from '@codaco/fresco-ui/form/Field/Field'; +import Form from '@codaco/fresco-ui/form/Form'; +import SubmitButton from '@codaco/fresco-ui/form/SubmitButton'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import PasswordField from '@codaco/fresco-ui/form/fields/PasswordField'; +import SegmentedCodeField from '@codaco/fresco-ui/form/fields/SegmentedCodeField'; +import { type FormSubmitHandler } from '@codaco/fresco-ui/form/store/types'; +import { loginSchema } from '~/schemas/auth'; + +function isRateLimited( + result: LoginResult, +): result is { success: false; rateLimited: true; retryAfter: number } { + return 'rateLimited' in result; +} + +function isTwoFactorRequired(result: LoginResult): result is { + success: false; + requiresTwoFactor: true; + twoFactorToken: string; +} { + return 'requiresTwoFactor' in result; +} + +export const SignInForm = () => { + const router = useRouter(); + + const [twoFactorRequired, setTwoFactorRequired] = useState(false); + const [twoFactorToken, setTwoFactorToken] = useState(null); + const [retryAfter, setRetryAfter] = useState(null); + const [useRecovery, setUseRecovery] = useState(false); + + const [webauthnSupported, setWebauthnSupported] = useState(false); + const [passkeyLoading, setPasskeyLoading] = useState(false); + const [passkeyError, setPasskeyError] = useState(null); + const [showRecovery, setShowRecovery] = useState(false); + + useEffect(() => { + setWebauthnSupported(browserSupportsWebAuthn()); + }, []); + + useEffect(() => { + if (retryAfter === null || retryAfter <= 0) { + return; + } + + const interval = setInterval(() => { + setRetryAfter((prev) => { + if (prev === null || prev <= 1) { + return null; + } + return prev - 1; + }); + }, 1000); + + return () => clearInterval(interval); + }, [retryAfter]); + + const handleSubmit: FormSubmitHandler = async (data) => { + const result = await login(data); + + if (isRateLimited(result)) { + const secondsRemaining = Math.ceil( + (result.retryAfter - Date.now()) / 1000, + ); + setRetryAfter(Math.max(secondsRemaining, 1)); + return { + success: false, + formErrors: [ + `Too many attempts. Try again in ${String(Math.max(secondsRemaining, 1))} seconds.`, + ], + }; + } + + if (isTwoFactorRequired(result)) { + setTwoFactorToken(result.twoFactorToken); + setTwoFactorRequired(true); + return { success: false }; + } + + if (result.success === true) { + router.push('/dashboard'); + } + + return result; + }; + + const handleTwoFactorSubmit: FormSubmitHandler = async (data) => { + const values = data as Record; + const code = values.code; + if (!code) { + return { success: false, fieldErrors: { code: ['Code is required'] } }; + } + + const result = await verifyTwoFactor({ twoFactorToken, code }); + + if (!result.success) { + const error = + 'formErrors' in result && result.formErrors + ? (result.formErrors[0] ?? 'Verification failed') + : 'Verification failed'; + return { success: false, formErrors: [error] }; + } + + router.push('/dashboard'); + return { success: true }; + }; + + const handlePasskeySignIn = async () => { + setPasskeyError(null); + setPasskeyLoading(true); + + try { + const { error, data } = await generateAuthenticationOptions(); + if (error || !data) { + setPasskeyError(error ?? 'Failed to start passkey authentication'); + return; + } + + // IMMEDIATELY call startAuthentication — preserves Safari user gesture + const credential = await startAuthentication({ + optionsJSON: data.options, + }); + + const result = await verifyAuthentication({ credential }); + if (result.error) { + setPasskeyError(result.error); + return; + } + + router.push('/dashboard'); + } catch (e) { + if (e instanceof Error && e.name === 'NotAllowedError') { + return; + } + setPasskeyError('Passkey authentication failed'); + } finally { + setPasskeyLoading(false); + } + }; + + const handleRecoveryLogin: FormSubmitHandler = async (data) => { + const values = data as Record; + const username = values.username; + const recoveryCode = values.recoveryCode; + + if (!username || !recoveryCode) { + return { + success: false, + formErrors: ['Username and recovery code are required'], + }; + } + + const result = await recoveryCodeLogin({ username, recoveryCode }); + + if (result.success) { + router.push('/dashboard'); + } + + return result; + }; + + const handleBackToSignIn = () => { + setTwoFactorRequired(false); + setTwoFactorToken(null); + setUseRecovery(false); + setShowRecovery(false); + setPasskeyError(null); + }; + + if (showRecovery) { + return ( +
+ } + /> + +
+ + + Sign in + +
+ + ); + } + + if (twoFactorRequired) { + return ( +
+ {useRecovery ? ( + + ) : ( + + )} + + + + + + Verify + + + + ); + } + + return ( + <> +
+ } + /> + } + /> +
+ 0} + > + {retryAfter !== null && retryAfter > 0 + ? `Try again in ${String(retryAfter)}s` + : 'Sign in'} + +
+ + + {webauthnSupported && ( + <> +
+
+ or +
+
+ + + + {passkeyError && ( + + {passkeyError} + + )} + + )} + + + + ); +}; diff --git a/app/(blobs)/(setup)/_components/SignUpForm.tsx b/app/(blobs)/(setup)/_components/SignUpForm.tsx new file mode 100644 index 000000000..94ecfc3f9 --- /dev/null +++ b/app/(blobs)/(setup)/_components/SignUpForm.tsx @@ -0,0 +1,203 @@ +'use client'; + +import { + browserSupportsWebAuthn, + startRegistration, +} from '@simplewebauthn/browser'; +import { useRouter } from 'next/navigation'; +import { useEffect, useState } from 'react'; +import { useMediaQuery } from 'usehooks-ts'; +import { signup } from '~/actions/auth'; +import { + generateSignupRegistrationOptions, + signupWithPasskey, +} from '~/actions/webauthn'; +import Field from '@codaco/fresco-ui/form/Field/Field'; +import FieldGroup from '@codaco/fresco-ui/form/FieldGroup'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import PasswordField from '@codaco/fresco-ui/form/fields/PasswordField'; +import RichSelectGroupField from '@codaco/fresco-ui/form/fields/RichSelectGroup'; +import Form from '@codaco/fresco-ui/form/Form'; +import SubmitButton from '@codaco/fresco-ui/form/SubmitButton'; +import { + type FormSubmissionResult, + type FormSubmitHandler, +} from '@codaco/fresco-ui/form/store/types'; +import { createUserSchema } from '~/schemas/auth'; + +type SignUpFormProps = { + sandboxMode?: boolean; +}; + +export const SignUpForm = ({ sandboxMode = false }: SignUpFormProps) => { + const router = useRouter(); + const [webauthnSupported, setWebauthnSupported] = useState(false); + const [passkeyLoading, setPasskeyLoading] = useState(false); + const [passkeyError, setPasskeyError] = useState(null); + + useEffect(() => { + setWebauthnSupported(browserSupportsWebAuthn()); + }, []); + + const showAuthMethodChoice = webauthnSupported && !sandboxMode; + + const handleSubmit: FormSubmitHandler = async (data) => { + const values = data as Record; + const authMethod = + typeof values?.authMethod === 'string' ? values.authMethod : 'password'; + const username = + typeof values?.username === 'string' ? values.username : ''; + + if (authMethod === 'passkey') { + return handlePasskeySignup(username); + } + + return handlePasswordSignup(data); + }; + + const handlePasswordSignup: FormSubmitHandler = async (data) => { + const result = await signup(data); + + return { + success: false, + formErrors: result.error ? [result.error] : [], + }; + }; + + const handlePasskeySignup = async ( + username: string, + ): Promise => { + if (!username) { + return { + success: false, + formErrors: ['Username is required'], + }; + } + + setPasskeyError(null); + setPasskeyLoading(true); + + try { + // Step 1: Generate registration options (no session created yet) + const { error: genError, data: regData } = + await generateSignupRegistrationOptions(username); + if (genError || !regData) { + setPasskeyLoading(false); + return { + success: false, + formErrors: [genError ?? 'Failed to start passkey registration'], + }; + } + + // Step 2: OS passkey popup (still no session) + const credential = await startRegistration({ + optionsJSON: regData.options, + }); + + // Step 3: Atomic signup — creates user + stores passkey + session + const result = await signupWithPasskey({ username, credential }); + + if (result.error) { + setPasskeyLoading(false); + return { + success: false, + formErrors: [result.error], + }; + } + + // Session now exists — navigate to next step + router.refresh(); + router.push('/setup?step=2'); + return { success: true }; + } catch (e) { + if (e instanceof Error && e.name === 'NotAllowedError') { + setPasskeyLoading(false); + return { success: false }; + } + setPasskeyLoading(false); + return { + success: false, + formErrors: ['Passkey registration failed'], + }; + } + }; + + const isSmallScreen = useMediaQuery('(max-width: 640px)'); + + return ( +
+ + {showAuthMethodChoice && ( + + )} + values.authMethod !== 'passkey'} + > + + !!values.password} + > + + + + {passkeyError && ( +

{passkeyError}

+ )} + + Create account + + + ); +}; diff --git a/app/(blobs)/(setup)/_components/StorageProviderSelector.tsx b/app/(blobs)/(setup)/_components/StorageProviderSelector.tsx new file mode 100644 index 000000000..7e38d78ed --- /dev/null +++ b/app/(blobs)/(setup)/_components/StorageProviderSelector.tsx @@ -0,0 +1,43 @@ +'use client'; + +import { useState } from 'react'; +import type { RichSelectOption } from '@codaco/fresco-ui/form/fields/RichSelectGroup'; +import RichSelectGroupField from '@codaco/fresco-ui/form/fields/RichSelectGroup'; +import { S3ConfigForm } from './S3ConfigForm'; +import { UploadThingTokenForm } from './UploadThingTokenForm'; + +type Provider = 'uploadthing' | 's3'; + +const providerOptions: RichSelectOption[] = [ + { + value: 'uploadthing', + label: 'UploadThing', + description: + 'Third-party managed storage. Easy to set up — just paste your API token.', + }, + { + value: 's3', + label: 'S3 / S3-Compatible', + description: + 'Self-hosted or cloud object storage (AWS S3, MinIO, Cloudflare R2, Backblaze B2).', + }, +]; + +export default function StorageProviderSelector() { + const [selected, setSelected] = useState('uploadthing'); + + return ( +
+ setSelected(value as Provider)} + orientation="horizontal" + size="md" + /> + + {selected === 'uploadthing' && } + {selected === 's3' && } +
+ ); +} diff --git a/app/(blobs)/(setup)/_components/UploadThingTokenForm.tsx b/app/(blobs)/(setup)/_components/UploadThingTokenForm.tsx new file mode 100644 index 000000000..8c04293d6 --- /dev/null +++ b/app/(blobs)/(setup)/_components/UploadThingTokenForm.tsx @@ -0,0 +1,71 @@ +'use client'; + +import { useRouter } from 'next/navigation'; +import { setUploadThingToken } from '~/actions/appSettings'; +import { setStorageProvider } from '~/actions/storageProvider'; +import Field from '@codaco/fresco-ui/form/Field/Field'; +import Form from '@codaco/fresco-ui/form/Form'; +import SubmitButton from '@codaco/fresco-ui/form/SubmitButton'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import { createUploadThingTokenSchema } from '~/schemas/appSettings'; + +export const UploadThingTokenForm = () => { + const router = useRouter(); + + const handleSubmit = async (rawData: unknown) => { + try { + const result = await setUploadThingToken(rawData); + + if (!result.success) { + return { + success: false as const, + fieldErrors: result.fieldErrors, + }; + } + + const providerResult = await setStorageProvider('uploadthing'); + if (!providerResult.success) { + return { + success: false as const, + formErrors: [ + providerResult.error ?? 'Failed to set storage provider.', + ], + }; + } + + router.push('/setup?step=3'); + + return { + success: true as const, + }; + } catch (error) { + const message = + error instanceof Error ? error.message : 'An unexpected error occurred'; + return { + success: false as const, + formErrors: [message], + }; + } + }; + + return ( +
+ + + Save and continue + + + ); +}; diff --git a/app/(blobs)/(setup)/layout.tsx b/app/(blobs)/(setup)/layout.tsx new file mode 100644 index 000000000..c76c1f543 --- /dev/null +++ b/app/(blobs)/(setup)/layout.tsx @@ -0,0 +1,18 @@ +import { Loader2 } from 'lucide-react'; +import { type ReactNode, Suspense } from 'react'; +import { requireAppNotExpired } from '~/queries/appSettings'; + +export default function Layout({ children }: { children: ReactNode }) { + return ( + } + > + {children} + + ); +} + +async function SetupLayoutContent({ children }: { children: ReactNode }) { + await requireAppNotExpired(true); + return children; +} diff --git a/app/(blobs)/(setup)/setup/Setup.tsx b/app/(blobs)/(setup)/setup/Setup.tsx new file mode 100644 index 000000000..fb8ca8395 --- /dev/null +++ b/app/(blobs)/(setup)/setup/Setup.tsx @@ -0,0 +1,66 @@ +'use client'; + +import { parseAsInteger, useQueryState } from 'nuqs'; +import { useEffect } from 'react'; +import { containerClasses } from '~/components/ContainerClasses'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import { cx } from '@codaco/fresco-ui/utils/cva'; +import ConfigureStorage from '../_components/OnboardSteps/ConfigureStorage'; +import CreateAccount from '../_components/OnboardSteps/CreateAccount'; +import Documentation from '../_components/OnboardSteps/Documentation'; +import UploadProtocol from '../_components/OnboardSteps/UploadProtocol'; +import OnboardSteps from '../_components/Sidebar'; +import type { SetupData } from './page'; + +export default function Setup({ setupData }: { setupData: SetupData }) { + const [step, setStep] = useQueryState('step', parseAsInteger.withDefault(1)); + + const steps = [ + { + label: 'Create Account', + component: CreateAccount, + }, + { + label: 'Configure Storage', + component: ConfigureStorage, + }, + { + label: 'Upload Protocol', + component: UploadProtocol, + }, + { + label: 'Documentation', + component: Documentation, + }, + ]; + + const cardClasses = cx( + containerClasses, + 'tablet-portrait:flex-row tablet-portrait:gap-6 flex flex-col gap-4', + ); + + useEffect(() => { + // Redirect to step 1 if we aren't authenticated + if (!setupData.hasAuth && step > 1) { + void setStep(1); + return; + } + + // Don't show the user creation step if we _are_ authenticated + if (setupData.hasAuth && step === 1) { + void setStep(2); + return; + } + }, [step, setStep, setupData]); + + const StepComponent = steps[step - 1]!.component; + + return ( +
+ step.label)} /> + + + +
+ ); +} diff --git a/app/(blobs)/(setup)/setup/page.tsx b/app/(blobs)/(setup)/setup/page.tsx new file mode 100644 index 000000000..be2ecf382 --- /dev/null +++ b/app/(blobs)/(setup)/setup/page.tsx @@ -0,0 +1,52 @@ +import { Loader2 } from 'lucide-react'; +import { Suspense } from 'react'; +import { getServerSession } from '~/lib/auth/guards'; +import { prisma } from '~/lib/db'; +import { + getAppSetting, + requireAppNotConfigured, + requireAppNotExpired, +} from '~/queries/appSettings'; +import Setup from './Setup'; + +async function getSetupData() { + const session = await getServerSession(); + const allowAnonymousRecruitment = await getAppSetting( + 'allowAnonymousRecruitment', + ); + const limitInterviews = await getAppSetting('limitInterviews'); + const otherData = await Promise.all([ + prisma.protocol.count(), + prisma.participant.count(), + ]); + + const uploadThingToken = await getAppSetting('uploadThingToken'); + + return { + hasAuth: !!session, + allowAnonymousRecruitment, + limitInterviews, + hasProtocol: otherData[0] > 0, + hasParticipants: otherData[1] > 0, + hasUploadThingToken: !!uploadThingToken, + }; +} + +export type SetupData = Awaited>; + +export default function Page() { + return ( + } + > + + + ); +} + +async function SetupContent() { + await requireAppNotExpired(true); + await requireAppNotConfigured(); + const setupData = await getSetupData(); + return ; +} diff --git a/app/(blobs)/(setup)/signin/page.tsx b/app/(blobs)/(setup)/signin/page.tsx new file mode 100644 index 000000000..42f117377 --- /dev/null +++ b/app/(blobs)/(setup)/signin/page.tsx @@ -0,0 +1,35 @@ +import { type Metadata } from 'next'; +import { redirect } from 'next/navigation'; +import { connection } from 'next/server'; +import { containerClasses } from '~/components/ContainerClasses'; +import { MotionSurface } from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import { getServerSession } from '~/lib/auth/guards'; +import { cx } from '@codaco/fresco-ui/utils/cva'; +import SandboxCredentials from '../_components/SandboxCredentials'; +import { SignInForm } from '../_components/SignInForm'; + +export const metadata: Metadata = { + title: 'Fresco - Sign In', + description: 'Sign in to Fresco.', +}; + +export default async function Page() { + await connection(); + const session = await getServerSession(); + if (session) redirect('/dashboard'); + return ( + + Sign In To Fresco + + + + ); +} diff --git a/app/(blobs)/expired/page.tsx b/app/(blobs)/expired/page.tsx new file mode 100644 index 000000000..9bcdb06eb --- /dev/null +++ b/app/(blobs)/expired/page.tsx @@ -0,0 +1,30 @@ +import { resetAppSettings } from '~/actions/reset'; +import { containerClasses } from '~/components/ContainerClasses'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import SubmitButton from '~/components/SubmitButton'; +import { env } from '~/env'; +import { cx } from '@codaco/fresco-ui/utils/cva'; + +export default function Page() { + return ( + + Installation expired + + You did not configure this deployment of Fresco in time, and it has now + been locked down for your security. + + + Please redeploy a new instance of Fresco to continue using the software. + + {env.NODE_ENV === 'development' && ( +
+ + Dev mode: Reset Configuration + +
+ )} +
+ ); +} diff --git a/app/(blobs)/layout.tsx b/app/(blobs)/layout.tsx new file mode 100644 index 000000000..2532a59f2 --- /dev/null +++ b/app/(blobs)/layout.tsx @@ -0,0 +1,37 @@ +import Image from 'next/image'; +import Link from 'next/link'; +import { type PropsWithChildren, Suspense } from 'react'; +import BackgroundBlobs from '~/components/BackgroundBlobs/BackgroundBlobs'; +import NetlifyBadge from '~/components/NetlifyBadge'; + +export default function Layout({ children }: PropsWithChildren) { + return ( + <> +
+ + + +
+ +
+
+ + Network Canvas + +
+
{children}
+ +
+ + ); +} diff --git a/app/(interview)/interview/[interviewId]/InterviewClient.tsx b/app/(interview)/interview/[interviewId]/InterviewClient.tsx new file mode 100644 index 000000000..a8a5d6976 --- /dev/null +++ b/app/(interview)/interview/[interviewId]/InterviewClient.tsx @@ -0,0 +1,118 @@ +'use client'; + +import { + Shell, + type AssetRequestHandler, + type FinishHandler, + type InterviewAnalyticsMetadata, + type InterviewPayload, + type StepChangeHandler, + type SyncHandler, +} from '@codaco/interview'; +import { useRouter } from 'next/navigation'; +import { parseAsInteger, useQueryState } from 'nuqs'; +import posthog from 'posthog-js'; +import { useCallback, useEffect, useMemo, useRef } from 'react'; +import { env } from '~/env.js'; +import { POSTHOG_APP_NAME } from '~/fresco.config'; + +type Props = { + payload: InterviewPayload; + assetUrls: Record; + initialStep: number; + installationId: string; + disableAnalytics: boolean; +}; + +export default function InterviewClient({ + payload, + assetUrls, + initialStep, + installationId, + disableAnalytics, +}: Props) { + const router = useRouter(); + const [currentStep, setCurrentStep] = useQueryState( + 'step', + parseAsInteger.withDefault(initialStep).withOptions({ history: 'push' }), + ); + + // Refs let onSync read the latest values even though the package's sync + // middleware captures the handler once at store creation time. + const currentStepRef = useRef(currentStep); + useEffect(() => { + currentStepRef.current = currentStep; + }, [currentStep]); + + const assetUrlsRef = useRef(assetUrls); + useEffect(() => { + assetUrlsRef.current = assetUrls; + }, [assetUrls]); + + const onStepChange = useCallback( + (step) => { + void setCurrentStep(step); + }, + [setCurrentStep], + ); + + const onSync = useCallback(async (id, session) => { + const response = await fetch(`/interview/${id}/sync`, { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + ...session, + currentStep: currentStepRef.current, + }), + }); + if (!response.ok) throw new Error('Sync failed'); + }, []); + + const onFinish = useCallback( + async (id, signal) => { + const response = await fetch(`/api/interviews/${id}/finish`, { + method: 'POST', + signal, + }); + if (!response.ok) throw new Error('Failed to finish interview'); + router.push('/interview/finished'); + }, + [router], + ); + + const onRequestAsset = useCallback((assetId) => { + const url = assetUrlsRef.current[assetId]; + if (!url) return Promise.reject(new Error(`No URL for asset ${assetId}`)); + return Promise.resolve(url); + }, []); + + const flags = useMemo( + () => ({ + isDevelopment: env.NODE_ENV === 'development', + }), + [], + ); + + const analytics = useMemo( + () => ({ + installationId, + hostApp: POSTHOG_APP_NAME, + }), + [installationId], + ); + + return ( + + ); +} diff --git a/app/(interview)/interview/[interviewId]/layout.tsx b/app/(interview)/interview/[interviewId]/layout.tsx new file mode 100644 index 000000000..5fe2377ca --- /dev/null +++ b/app/(interview)/interview/[interviewId]/layout.tsx @@ -0,0 +1,17 @@ +import { type ReactNode, Suspense } from 'react'; +import SmallScreenOverlay from '../_components/SmallScreenOverlay'; + +export default function InterviewSessionLayout({ + children, +}: { + children: ReactNode; +}) { + return ( + <> + + + + {children} + + ); +} diff --git a/app/(interview)/interview/[interviewId]/mapInterviewPayload.ts b/app/(interview)/interview/[interviewId]/mapInterviewPayload.ts new file mode 100644 index 000000000..729b8799b --- /dev/null +++ b/app/(interview)/interview/[interviewId]/mapInterviewPayload.ts @@ -0,0 +1,55 @@ +import { + isValidAssetType, + type InterviewPayload, + type ResolvedAsset, +} from '@codaco/interview'; +import type { GetInterviewByIdQuery } from '~/queries/interviews'; + +export function mapInterviewPayload( + source: NonNullable, +): { + payload: InterviewPayload; + assetUrls: Record; + initialStep: number; +} { + const { protocol, ...session } = source; + + const assets: ResolvedAsset[] = protocol.assets.map((a) => { + if (!isValidAssetType(a.type)) { + throw new Error(`Unrecognised asset type from database: "${a.type}"`); + } + return { + assetId: a.assetId, + name: a.name, + type: a.type, + value: a.value ?? undefined, + }; + }); + + const assetUrls: Record = {}; + for (const a of protocol.assets) { + if (a.url) assetUrls[a.assetId] = a.url; + } + + const payload: InterviewPayload = { + session: { + id: session.id, + startTime: session.startTime.toISOString(), + finishTime: session.finishTime?.toISOString() ?? null, + exportTime: session.exportTime?.toISOString() ?? null, + lastUpdated: session.lastUpdated.toISOString(), + network: session.network, + stageMetadata: session.stageMetadata ?? undefined, + }, + protocol: { + ...protocol, + schemaVersion: 8, + hash: protocol.hash, + description: protocol.description ?? undefined, + importedAt: protocol.importedAt.toISOString(), + assets, + }, + }; + + return { payload, assetUrls, initialStep: session.currentStep }; +} diff --git a/app/(interview)/interview/[interviewId]/page.tsx b/app/(interview)/interview/[interviewId]/page.tsx new file mode 100644 index 000000000..15c1f2571 --- /dev/null +++ b/app/(interview)/interview/[interviewId]/page.tsx @@ -0,0 +1,116 @@ +import { cookies } from 'next/headers'; +import { notFound, redirect } from 'next/navigation'; +import { after, connection } from 'next/server'; +import { Suspense } from 'react'; +import SuperJSON from 'superjson'; +import { type ActivityType } from '~/app/dashboard/_components/ActivityFeed/types'; +import Spinner from '@codaco/fresco-ui/Spinner'; +import { getServerSession } from '~/lib/auth/guards'; +import { safeRevalidateTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; +import { captureEvent, shutdownPostHog } from '~/lib/posthog-server'; +import { getAppSetting } from '~/queries/appSettings'; +import { + getInterviewById, + type GetInterviewByIdQuery, +} from '~/queries/interviews'; +import InterviewClient from './InterviewClient'; +import { mapInterviewPayload } from './mapInterviewPayload'; + +export default function Page(props: { + params: Promise<{ interviewId: string }>; +}) { + return ( + + +
+ } + > + + + ); +} + +async function InterviewContent({ + params: paramsPromise, +}: { + params: Promise<{ interviewId: string }>; +}) { + await connection(); + const { interviewId } = await paramsPromise; + + if (!interviewId) { + return 'No interview id found'; + } + + const rawInterview = await getInterviewById(interviewId); + + if (!rawInterview) { + notFound(); + } + + const interview = + SuperJSON.parse>(rawInterview); + const session = await getServerSession(); + + const limitInterviews = await getAppSetting('limitInterviews'); + + if (limitInterviews && (await cookies()).get(interview.protocol.id)) { + redirect('/interview/finished'); + } + + if (!session && interview?.finishTime) { + redirect('/interview/finished'); + } + + after(async () => { + try { + const message = session + ? `Interview "${interviewId}" was opened by user "${session.user.username}"` + : `Interview "${interviewId}" was opened`; + + const thirtyMinutesAgo = new Date(Date.now() - 30 * 60 * 1000); + + const recentEvent = await prisma.events.findFirst({ + where: { + type: 'Interview Opened', + message, + timestamp: { gte: thirtyMinutesAgo }, + }, + }); + + if (recentEvent) return; + + await prisma.events.create({ + data: { + type: 'Interview Opened' satisfies ActivityType, + message, + }, + }); + + safeRevalidateTag('activityFeed'); + + await captureEvent('Interview Opened', { message }); + await shutdownPostHog(); + } catch { + // Non-critical — don't block the interview + } + }); + + const { payload, assetUrls, initialStep } = mapInterviewPayload(interview); + + const installationId = (await getAppSetting('installationId')) ?? 'unknown'; + const disableAnalytics = (await getAppSetting('disableAnalytics')) ?? false; + + return ( + + ); +} diff --git a/app/(interview)/interview/[interviewId]/sync/route.ts b/app/(interview)/interview/[interviewId]/sync/route.ts new file mode 100644 index 000000000..3012e5e21 --- /dev/null +++ b/app/(interview)/interview/[interviewId]/sync/route.ts @@ -0,0 +1,87 @@ +import { NcNetworkSchema, StageMetadataSchema } from '@codaco/shared-consts'; +import { after, NextResponse, type NextRequest } from 'next/server'; +import { z } from 'zod'; +import { prisma } from '~/lib/db'; +import { captureException, shutdownPostHog } from '~/lib/posthog-server'; +import { getAppSetting } from '~/queries/appSettings'; +import { ensureError } from '~/utils/ensureError'; + +/** + * Handle post requests from the client to store the current interview state. + */ +const routeHandler = async ( + request: NextRequest, + { params }: { params: Promise<{ interviewId: string }> }, +) => { + const { interviewId } = await params; + + const rawPayload = await request.json(); + + const Schema = z.object({ + id: z.string(), + network: NcNetworkSchema, + currentStep: z.number(), + stageMetadata: StageMetadataSchema.optional(), + lastUpdated: z.string(), + }); + + const validatedRequest = Schema.safeParse(rawPayload); + + if (!validatedRequest.success) { + after(async () => { + await captureException(validatedRequest.error, { + interviewId, + }); + await shutdownPostHog(); + }); + + return NextResponse.json( + { + error: validatedRequest.error, + }, + { status: 400 }, + ); + } + + const { network, currentStep, stageMetadata, lastUpdated } = + validatedRequest.data; + + const freezeEnabled = await getAppSetting('freezeInterviewsAfterCompletion'); + + if (freezeEnabled) { + const interview = await prisma.interview.findUnique({ + where: { id: interviewId }, + select: { finishTime: true }, + }); + + if (interview?.finishTime) { + return NextResponse.json({ success: true }); + } + } + + try { + await prisma.interview.update({ + where: { + id: interviewId, + }, + data: { + network, + currentStep, + stageMetadata: stageMetadata ?? undefined, + lastUpdated: new Date(lastUpdated), + }, + }); + + return NextResponse.json({ success: true }); + } catch (e) { + const error = ensureError(e); + return NextResponse.json( + { + error: error.message, + }, + { status: 500 }, + ); + } +}; + +export { routeHandler as POST }; diff --git a/app/(interview)/interview/_components/ErrorMessage.tsx b/app/(interview)/interview/_components/ErrorMessage.tsx new file mode 100644 index 000000000..a13e543cc --- /dev/null +++ b/app/(interview)/interview/_components/ErrorMessage.tsx @@ -0,0 +1,18 @@ +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; + +type ErrorMessageProps = { + title: string; + message: string; +}; + +export const ErrorMessage = ({ title, message }: ErrorMessageProps) => { + return ( +
+
+ {title} + {message} +
+
+ ); +}; diff --git a/app/(interview)/interview/_components/SmallScreenOverlay.tsx b/app/(interview)/interview/_components/SmallScreenOverlay.tsx new file mode 100644 index 000000000..da9e86671 --- /dev/null +++ b/app/(interview)/interview/_components/SmallScreenOverlay.tsx @@ -0,0 +1,40 @@ +import Image from 'next/image'; +import { connection } from 'next/server'; +import { env } from 'node:process'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { getAppSetting } from '~/queries/appSettings'; + +const SmallScreenOverlay = async () => { + await connection(); + const disableSmallScreenOverlay = await getAppSetting( + 'disableSmallScreenOverlay', + ); + if (disableSmallScreenOverlay || env.NODE_ENV === 'development') { + return null; + } + + return ( +
+
+ Screen too small + Screen Size Too Small + + To complete this interview, please use a device with a larger screen, + or maximize your browser window. + + + Note: it is not possible to complete this interview + using a mobile phone. + +
+
+ ); +}; + +export default SmallScreenOverlay; diff --git a/app/(interview)/interview/finished/page.tsx b/app/(interview)/interview/finished/page.tsx new file mode 100644 index 000000000..6097c0525 --- /dev/null +++ b/app/(interview)/interview/finished/page.tsx @@ -0,0 +1,14 @@ +import { BadgeCheck } from 'lucide-react'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; + +export default function InterviewCompleted() { + return ( + + + Thank you for participating! + Your interview has been successfully completed. + + ); +} diff --git a/app/(interview)/layout.tsx b/app/(interview)/layout.tsx new file mode 100644 index 000000000..bff762ea7 --- /dev/null +++ b/app/(interview)/layout.tsx @@ -0,0 +1,20 @@ +import { ThemedRegion } from '@codaco/fresco-ui/ThemedRegion'; +import { type Metadata } from 'next'; + +export const metadata: Metadata = { + title: 'Network Canvas Fresco - Interview', + description: 'Interview', +}; + +function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + {children} + + ); +} + +export default RootLayout; diff --git a/app/(interview)/onboard/[protocolId]/__tests__/route.test.ts b/app/(interview)/onboard/[protocolId]/__tests__/route.test.ts new file mode 100644 index 000000000..9875f0a90 --- /dev/null +++ b/app/(interview)/onboard/[protocolId]/__tests__/route.test.ts @@ -0,0 +1,432 @@ +import { NextRequest } from 'next/server'; +import { beforeEach, describe, expect, it, vi } from 'vitest'; + +// Mock dependencies before importing the handler +vi.mock('~/actions/interviews', () => ({ + createInterview: vi.fn(), +})); + +vi.mock('~/queries/appSettings', () => ({ + getAppSetting: vi.fn(), +})); + +vi.mock('next/headers', () => ({ + cookies: vi.fn(() => ({ + get: vi.fn(), + })), +})); + +vi.mock('~/env', () => ({ + env: { + PUBLIC_URL: 'http://localhost:3000', + }, +})); + +vi.mock('next/server', async (importOriginal) => { + const actual = await importOriginal>(); + return { + ...actual, + after: vi.fn(), + }; +}); + +vi.mock('~/lib/posthog-server', () => ({ + captureEvent: vi.fn(), + captureException: vi.fn(), + shutdownPostHog: vi.fn(), +})); + +// Import after mocks are set up +import { createInterview } from '~/actions/interviews'; +import { getAppSetting } from '~/queries/appSettings'; +import { cookies } from 'next/headers'; + +// Import the handlers +import { GET, POST } from '../route'; + +const mockCreateInterview = vi.mocked(createInterview); +const mockGetAppSetting = vi.mocked(getAppSetting); +const mockCookies = vi.mocked(cookies); + +describe('Onboard Route Handler', () => { + beforeEach(() => { + vi.clearAllMocks(); + + // Default mock implementations + mockGetAppSetting.mockResolvedValue(false); + mockCookies.mockResolvedValue({ + get: vi.fn().mockReturnValue(undefined), + has: vi.fn().mockReturnValue(false), + getAll: vi.fn().mockReturnValue([]), + set: vi.fn(), + delete: vi.fn(), + size: 0, + [Symbol.iterator]: vi.fn(), + }); + }); + + describe('GET handler', () => { + it('should redirect to error page when no protocolId is provided', async () => { + const request = new NextRequest( + 'http://localhost:3000/onboard/undefined', + ); + const params = Promise.resolve({ protocolId: 'undefined' }); + + const response = await GET(request, { params }); + + expect(response.status).toBe(307); + expect(response.headers.get('location')).toBe( + 'http://localhost:3000/onboard/error', + ); + }); + + it('should extract participantIdentifier from query string', async () => { + const protocolId = 'test-protocol-id'; + const participantIdentifier = 'TEST-PARTICIPANT-001'; + const createdInterviewId = 'interview-123'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId, + error: null, + errorType: null, + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}?participantIdentifier=${participantIdentifier}`, + ); + const params = Promise.resolve({ protocolId }); + + const response = await GET(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalledWith({ + participantIdentifier, + protocolId, + }); + expect(response.status).toBe(307); + expect(response.headers.get('location')).toBe( + `http://localhost:3000/interview/${createdInterviewId}`, + ); + }); + + it('should pass undefined when no participantIdentifier is provided', async () => { + const protocolId = 'test-protocol-id'; + const createdInterviewId = 'interview-456'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId, + error: null, + errorType: null, + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + ); + const params = Promise.resolve({ protocolId }); + + await GET(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalledWith({ + participantIdentifier: undefined, + protocolId, + }); + }); + + it('should redirect to finished page when limitInterviews is enabled and cookie exists', async () => { + const protocolId = 'test-protocol-id'; + + mockGetAppSetting.mockResolvedValue(true); + mockCookies.mockResolvedValue({ + get: vi.fn().mockReturnValue({ value: 'completed' }), + } as unknown as Awaited>); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + ); + const params = Promise.resolve({ protocolId }); + + const response = await GET(request, { params }); + + expect(mockCreateInterview).not.toHaveBeenCalled(); + expect(response.status).toBe(307); + expect(response.headers.get('location')).toBe( + 'http://localhost:3000/interview/finished', + ); + }); + + it('should allow new interview when limitInterviews is enabled but no cookie exists', async () => { + const protocolId = 'test-protocol-id'; + const createdInterviewId = 'interview-789'; + + mockGetAppSetting.mockResolvedValue(true); + mockCookies.mockResolvedValue({ + get: vi.fn().mockReturnValue(undefined), + } as unknown as Awaited>); + mockCreateInterview.mockResolvedValue({ + createdInterviewId, + error: null, + errorType: null, + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + ); + const params = Promise.resolve({ protocolId }); + + const response = await GET(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalled(); + expect(response.headers.get('location')).toBe( + `http://localhost:3000/interview/${createdInterviewId}`, + ); + }); + + it('should redirect to error page when createInterview returns an error', async () => { + const protocolId = 'test-protocol-id'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId: null, + error: 'Failed to create interview', + errorType: 'unknown-error', + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + ); + const params = Promise.resolve({ protocolId }); + + const response = await GET(request, { params }); + + expect(response.status).toBe(307); + expect(response.headers.get('location')).toBe( + 'http://localhost:3000/onboard/error', + ); + }); + + it('should redirect to no-anonymous-recruitment page when anonymous recruitment is disabled', async () => { + const protocolId = 'test-protocol-id'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId: null, + error: 'Anonymous recruitment is not enabled', + errorType: 'no-anonymous-recruitment', + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + ); + const params = Promise.resolve({ protocolId }); + + const response = await GET(request, { params }); + + expect(response.status).toBe(307); + expect(response.headers.get('location')).toBe( + 'http://localhost:3000/onboard/no-anonymous-recruitment', + ); + }); + }); + + describe('POST handler', () => { + it('should extract participantIdentifier from JSON body', async () => { + const protocolId = 'test-protocol-id'; + const participantIdentifier = 'POST-PARTICIPANT-001'; + const createdInterviewId = 'interview-post-123'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId, + error: null, + errorType: null, + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + { + method: 'POST', + body: JSON.stringify({ participantIdentifier }), + headers: { + 'Content-Type': 'application/json', + }, + }, + ); + const params = Promise.resolve({ protocolId }); + + const response = await POST(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalledWith({ + participantIdentifier, + protocolId, + }); + expect(response.status).toBe(307); + expect(response.headers.get('location')).toBe( + `http://localhost:3000/interview/${createdInterviewId}`, + ); + }); + + it('should handle POST with empty body gracefully', async () => { + const protocolId = 'test-protocol-id'; + const createdInterviewId = 'interview-post-456'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId, + error: null, + errorType: null, + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + { + method: 'POST', + body: JSON.stringify({}), + headers: { + 'Content-Type': 'application/json', + }, + }, + ); + const params = Promise.resolve({ protocolId }); + + await POST(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalledWith({ + participantIdentifier: undefined, + protocolId, + }); + }); + + it('should redirect to error page when POST body parsing fails', async () => { + const protocolId = 'test-protocol-id'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId: null, + error: 'Failed to create interview', + errorType: 'parse-error', + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + { + method: 'POST', + body: JSON.stringify(null), + headers: { + 'Content-Type': 'application/json', + }, + }, + ); + const params = Promise.resolve({ protocolId }); + + await POST(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalledWith({ + participantIdentifier: undefined, + protocolId, + }); + }); + + it('should redirect to no-anonymous-recruitment page when anonymous recruitment is disabled', async () => { + const protocolId = 'test-protocol-id'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId: null, + error: 'Anonymous recruitment is not enabled', + errorType: 'no-anonymous-recruitment', + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + { + method: 'POST', + body: JSON.stringify({}), + headers: { + 'Content-Type': 'application/json', + }, + }, + ); + const params = Promise.resolve({ protocolId }); + + const response = await POST(request, { params }); + + expect(response.status).toBe(307); + expect(response.headers.get('location')).toBe( + 'http://localhost:3000/onboard/no-anonymous-recruitment', + ); + }); + + it('should check limitInterviews for POST requests too', async () => { + const protocolId = 'test-protocol-id'; + + mockGetAppSetting.mockResolvedValue(true); + mockCookies.mockResolvedValue({ + get: vi.fn().mockReturnValue({ value: 'completed' }), + } as unknown as Awaited>); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + { + method: 'POST', + body: JSON.stringify({ participantIdentifier: 'test' }), + headers: { + 'Content-Type': 'application/json', + }, + }, + ); + const params = Promise.resolve({ protocolId }); + + const response = await POST(request, { params }); + + expect(mockCreateInterview).not.toHaveBeenCalled(); + expect(response.headers.get('location')).toBe( + 'http://localhost:3000/interview/finished', + ); + }); + }); + + describe('Edge cases', () => { + it('should handle protocolId with special characters', async () => { + const protocolId = 'test-protocol-123_abc'; + const createdInterviewId = 'interview-special'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId, + error: null, + errorType: null, + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}`, + ); + const params = Promise.resolve({ protocolId }); + + const response = await GET(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalledWith({ + participantIdentifier: undefined, + protocolId, + }); + expect(response.headers.get('location')).toBe( + `http://localhost:3000/interview/${createdInterviewId}`, + ); + }); + + it('should handle URL-encoded participantIdentifier', async () => { + const protocolId = 'test-protocol-id'; + const participantIdentifier = 'user@example.com'; + const createdInterviewId = 'interview-encoded'; + + mockCreateInterview.mockResolvedValue({ + createdInterviewId, + error: null, + errorType: null, + }); + + const request = new NextRequest( + `http://localhost:3000/onboard/${protocolId}?participantIdentifier=${encodeURIComponent(participantIdentifier)}`, + ); + const params = Promise.resolve({ protocolId }); + + await GET(request, { params }); + + expect(mockCreateInterview).toHaveBeenCalledWith({ + participantIdentifier, + protocolId, + }); + }); + }); +}); diff --git a/app/(interview)/onboard/[protocolId]/route.ts b/app/(interview)/onboard/[protocolId]/route.ts new file mode 100644 index 000000000..1cd33e8f7 --- /dev/null +++ b/app/(interview)/onboard/[protocolId]/route.ts @@ -0,0 +1,102 @@ +import { cookies } from 'next/headers'; +import { after, NextResponse, type NextRequest } from 'next/server'; +import { createInterview } from '~/actions/interviews'; +import { env } from '~/env'; +import { captureEvent, shutdownPostHog } from '~/lib/posthog-server'; +import { getAppSetting } from '~/queries/appSettings'; + +const handler = async ( + req: NextRequest, + { params }: { params: Promise<{ protocolId: string }> }, +) => { + const { protocolId } = await params; + + // when deployed via docker `req.url` and `req.nextUrl` + // shows Docker Container ID instead of real host + // issue: https://github.com/vercel/next.js/issues/65568 + // workaround: use `env.PUBLIC_URL` to get the correct url + const url = new URL(env.PUBLIC_URL ?? req.nextUrl.clone()); + + // If no protocol ID is provided, redirect to the error page. + if (!protocolId || protocolId === 'undefined') { + url.pathname = '/onboard/error'; + return NextResponse.redirect(url); + } + + const limitInterviews = await getAppSetting('limitInterviews'); + + // if limitInterviews is enabled + // Check cookies for interview already completed for this user for this protocol + // and redirect to finished page + if (limitInterviews && (await cookies()).get(protocolId)) { + url.pathname = '/interview/finished'; + return NextResponse.redirect(url); + } + + let participantIdentifier: string | undefined; + + // If the request is a POST, check the request body for a participant identifier. + // Otherwise, check the searchParams for a participant identifier. + if (req.method === 'POST') { + const postData = (await req.json()) as + | { participantIdentifier?: string } + | undefined; + participantIdentifier = postData?.participantIdentifier; + } else { + const searchParams = req.nextUrl.searchParams; + participantIdentifier = + searchParams.get('participantIdentifier') ?? undefined; + } + + // Create a new interview given the protocolId and participantId + const { createdInterviewId, error, errorType } = await createInterview({ + participantIdentifier, + protocolId, + }); + + if (error) { + after(async () => { + await captureEvent('Error', { + name: error, + message: 'Failed to create interview', + path: '/onboard/[protocolId]/route.ts', + }); + await shutdownPostHog(); + }); + + if (errorType === 'no-anonymous-recruitment') { + url.pathname = '/onboard/no-anonymous-recruitment'; + return NextResponse.redirect(url); + } + + url.pathname = '/onboard/error'; + return NextResponse.redirect(url); + } + + // eslint-disable-next-line no-console + console.log( + `🚀 Created interview with ID ${createdInterviewId} using protocol ${protocolId} for participant ${ + participantIdentifier ?? 'Anonymous' + }...`, + ); + + after(async () => { + await captureEvent('InterviewStarted', { + usingAnonymousParticipant: !participantIdentifier, + }); + await shutdownPostHog(); + }); + + // Redirect to the interview + // Explicitly disable caching to prevent Netlify from caching this redirect + // (Netlify adds max-age=86400 by default, causing all users to get the same interview) + // See: https://github.com/opennextjs/opennextjs-netlify/issues/3460 + url.pathname = `/interview/${createdInterviewId}`; + return NextResponse.redirect(url, { + headers: { + 'Cache-Control': 'no-cache, no-store, must-revalidate', + }, + }); +}; + +export { handler as GET, handler as POST }; diff --git a/app/(interview)/onboard/error/page.tsx b/app/(interview)/onboard/error/page.tsx new file mode 100644 index 000000000..753b10bab --- /dev/null +++ b/app/(interview)/onboard/error/page.tsx @@ -0,0 +1,10 @@ +import { ErrorMessage } from '../../interview/_components/ErrorMessage'; + +export default function Page() { + return ( + + ); +} diff --git a/app/(interview)/onboard/no-anonymous-recruitment/page.tsx b/app/(interview)/onboard/no-anonymous-recruitment/page.tsx new file mode 100644 index 000000000..03f91e6e1 --- /dev/null +++ b/app/(interview)/onboard/no-anonymous-recruitment/page.tsx @@ -0,0 +1,11 @@ +import { ErrorMessage } from '../../interview/_components/ErrorMessage'; + +export default function Page() { + return ( + + ); +} diff --git a/app/api/[version]/interview/[interviewId]/route.ts b/app/api/[version]/interview/[interviewId]/route.ts new file mode 100644 index 000000000..8c325d495 --- /dev/null +++ b/app/api/[version]/interview/[interviewId]/route.ts @@ -0,0 +1,92 @@ +import { after, type NextRequest, NextResponse } from 'next/server'; +import { + createCorsHeaders, + requireApiTokenAuth, +} from '~/app/api/_helpers/auth'; +import { prisma } from '~/lib/db'; +import { captureException, shutdownPostHog } from '~/lib/posthog-server'; +import { getAppSetting } from '~/queries/appSettings'; +import { ensureError } from '~/utils/ensureError'; + +const corsHeaders = createCorsHeaders('GET, OPTIONS'); + +export function OPTIONS() { + return new NextResponse(null, { + status: 204, + headers: corsHeaders, + }); +} + +export async function GET( + request: NextRequest, + { params }: { params: Promise<{ version: string; interviewId: string }> }, +) { + const { version, interviewId } = await params; + + if (version !== 'v1') { + return NextResponse.json( + { error: `Unsupported API version: ${version}` }, + { status: 404, headers: corsHeaders }, + ); + } + + const enabled = await getAppSetting('enableInterviewDataApi'); + if (!enabled) { + return NextResponse.json( + { error: 'Interview Data API is not enabled' }, + { status: 403, headers: corsHeaders }, + ); + } + + const authResult = await requireApiTokenAuth(request); + if ('error' in authResult) { + return NextResponse.json( + { error: 'Authentication required. Provide a Bearer token.' }, + { status: 401, headers: corsHeaders }, + ); + } + + try { + const interview = await prisma.interview.findUnique({ + where: { id: interviewId }, + include: { + participant: { + select: { + id: true, + identifier: true, + label: true, + }, + }, + protocol: { + select: { + id: true, + name: true, + schemaVersion: true, + description: true, + codebook: true, + }, + }, + }, + }); + + if (!interview) { + return NextResponse.json( + { error: 'Interview not found' }, + { status: 404, headers: corsHeaders }, + ); + } + + return NextResponse.json({ data: interview }, { headers: corsHeaders }); + } catch (e) { + const error = ensureError(e); + await captureException(error); + after(async () => { + await shutdownPostHog(); + }); + + return NextResponse.json( + { error: 'Failed to fetch interview' }, + { status: 500, headers: corsHeaders }, + ); + } +} diff --git a/app/api/[version]/interview/route.ts b/app/api/[version]/interview/route.ts new file mode 100644 index 000000000..783ea22e3 --- /dev/null +++ b/app/api/[version]/interview/route.ts @@ -0,0 +1,128 @@ +import { after, type NextRequest, NextResponse } from 'next/server'; +import { + createCorsHeaders, + requireApiTokenAuth, +} from '~/app/api/_helpers/auth'; +import { createVersionedHandler } from '~/app/api/_helpers/versioning'; +import { prisma } from '~/lib/db'; +import { type Prisma } from '~/lib/db/generated/client'; +import { captureException, shutdownPostHog } from '~/lib/posthog-server'; +import { getAppSetting } from '~/queries/appSettings'; +import { ensureError } from '~/utils/ensureError'; + +const corsHeaders = createCorsHeaders('GET, OPTIONS'); + +export function OPTIONS() { + return new NextResponse(null, { + status: 204, + headers: corsHeaders, + }); +} + +async function v1(request: NextRequest) { + const enabled = await getAppSetting('enableInterviewDataApi'); + if (!enabled) { + return NextResponse.json( + { error: 'Interview Data API is not enabled' }, + { status: 403, headers: corsHeaders }, + ); + } + + const authResult = await requireApiTokenAuth(request); + if ('error' in authResult) { + return NextResponse.json( + { error: 'Authentication required. Provide a Bearer token.' }, + { status: 401, headers: corsHeaders }, + ); + } + + try { + const { searchParams } = request.nextUrl; + const page = Math.max(1, Number(searchParams.get('page') ?? '1')); + const perPage = Math.min( + 100, + Math.max(1, Number(searchParams.get('perPage') ?? '10')), + ); + const protocolId = searchParams.get('protocolId'); + const participantId = searchParams.get('participantId'); + const status = searchParams.get('status'); + + const where: Prisma.InterviewWhereInput = {}; + + if (protocolId) { + where.protocolId = protocolId; + } + + if (participantId) { + where.participantId = participantId; + } + + if (status === 'completed') { + where.finishTime = { not: null }; + } else if (status === 'in-progress') { + where.finishTime = null; + } + + const [interviews, total] = await Promise.all([ + prisma.interview.findMany({ + where, + select: { + id: true, + startTime: true, + finishTime: true, + lastUpdated: true, + currentStep: true, + protocolId: true, + participantId: true, + participant: { + select: { + id: true, + identifier: true, + label: true, + }, + }, + protocol: { + select: { + id: true, + name: true, + }, + }, + }, + orderBy: { lastUpdated: 'desc' }, + skip: (page - 1) * perPage, + take: perPage, + }), + prisma.interview.count({ where }), + ]); + + return NextResponse.json( + { + data: interviews, + meta: { + page, + perPage, + pageCount: Math.ceil(total / perPage), + total, + }, + }, + { headers: corsHeaders }, + ); + } catch (e) { + const error = ensureError(e); + await captureException(error); + after(async () => { + await shutdownPostHog(); + }); + + return NextResponse.json( + { error: 'Failed to fetch interviews' }, + { status: 500, headers: corsHeaders }, + ); + } +} + +const handlers = { + v1: { GET: v1 }, +}; + +export const GET = createVersionedHandler(handlers, 'GET'); diff --git a/app/api/[version]/protocols-meta/route.ts b/app/api/[version]/protocols-meta/route.ts new file mode 100644 index 000000000..4b080135e --- /dev/null +++ b/app/api/[version]/protocols-meta/route.ts @@ -0,0 +1,71 @@ +import { after, type NextRequest, NextResponse } from 'next/server'; +import { + createCorsHeaders, + requireApiTokenAuth, +} from '~/app/api/_helpers/auth'; +import { createVersionedHandler } from '~/app/api/_helpers/versioning'; +import { prisma } from '~/lib/db'; +import { captureException, shutdownPostHog } from '~/lib/posthog-server'; +import { getAppSetting } from '~/queries/appSettings'; +import { ensureError } from '~/utils/ensureError'; + +const corsHeaders = createCorsHeaders('GET, OPTIONS'); + +export function OPTIONS() { + return new NextResponse(null, { + status: 204, + headers: corsHeaders, + }); +} + +async function v1(request: NextRequest) { + try { + const enabled = await getAppSetting('enableInterviewDataApi'); + if (!enabled) { + return NextResponse.json( + { error: 'Interview Data API is not enabled' }, + { status: 403, headers: corsHeaders }, + ); + } + + const authResult = await requireApiTokenAuth(request); + if ('error' in authResult) { + return NextResponse.json( + { error: 'Authentication required. Provide a Bearer token.' }, + { + status: 401, + headers: { ...corsHeaders, 'WWW-Authenticate': 'Bearer' }, + }, + ); + } + + const protocols = await prisma.protocol.findMany({ + select: { + id: true, + name: true, + importedAt: true, + lastModified: true, + }, + orderBy: { importedAt: 'desc' }, + }); + + return NextResponse.json(protocols, { headers: corsHeaders }); + } catch (e) { + const error = ensureError(e); + await captureException(error); + after(async () => { + await shutdownPostHog(); + }); + + return NextResponse.json( + { error: 'Failed to fetch protocols' }, + { status: 500, headers: corsHeaders }, + ); + } +} + +const handlers = { + v1: { GET: v1 }, +}; + +export const GET = createVersionedHandler(handlers, 'GET'); diff --git a/app/api/_helpers/__tests__/auth.test.ts b/app/api/_helpers/__tests__/auth.test.ts new file mode 100644 index 000000000..a8d0f297f --- /dev/null +++ b/app/api/_helpers/__tests__/auth.test.ts @@ -0,0 +1,83 @@ +import { NextRequest, NextResponse } from 'next/server'; +import { beforeEach, describe, expect, it, vi } from 'vitest'; + +const { mockVerifyApiToken } = vi.hoisted(() => ({ + mockVerifyApiToken: vi.fn(), +})); + +vi.mock('~/actions/apiTokens', () => ({ + verifyApiToken: mockVerifyApiToken, +})); + +import { createCorsHeaders, requireApiTokenAuth } from '../auth'; + +describe('API auth helpers', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + describe('createCorsHeaders', () => { + it('should return headers with specified methods', () => { + const headers = createCorsHeaders('GET, POST'); + + expect(headers['Access-Control-Allow-Origin']).toBe('*'); + expect(headers['Access-Control-Allow-Methods']).toBe('GET, POST'); + expect(headers['Access-Control-Allow-Headers']).toBe( + 'Content-Type, Authorization', + ); + }); + }); + + describe('requireApiTokenAuth', () => { + it('should return error when no authorization header is present', async () => { + const request = new NextRequest('http://localhost:3000/api/v1/test'); + + const result = await requireApiTokenAuth(request); + + expect('error' in result).toBe(true); + if ('error' in result) { + expect(result.error).toBeInstanceOf(NextResponse); + const body = (await result.error.json()) as { error: string }; + expect(body.error).toContain('Authentication required'); + } + }); + + it('should return error when token is invalid', async () => { + mockVerifyApiToken.mockResolvedValue({ valid: false }); + + const request = new NextRequest('http://localhost:3000/api/v1/test', { + headers: { Authorization: 'Bearer invalid-token' }, + }); + + const result = await requireApiTokenAuth(request); + + expect('error' in result).toBe(true); + expect(mockVerifyApiToken).toHaveBeenCalledWith('invalid-token'); + }); + + it('should return valid when token is valid', async () => { + mockVerifyApiToken.mockResolvedValue({ valid: true }); + + const request = new NextRequest('http://localhost:3000/api/v1/test', { + headers: { Authorization: 'Bearer valid-token' }, + }); + + const result = await requireApiTokenAuth(request); + + expect(result).toEqual({ valid: true }); + expect(mockVerifyApiToken).toHaveBeenCalledWith('valid-token'); + }); + + it('should extract token from Bearer prefix', async () => { + mockVerifyApiToken.mockResolvedValue({ valid: true }); + + const request = new NextRequest('http://localhost:3000/api/v1/test', { + headers: { Authorization: 'Bearer my-secret-token' }, + }); + + await requireApiTokenAuth(request); + + expect(mockVerifyApiToken).toHaveBeenCalledWith('my-secret-token'); + }); + }); +}); diff --git a/app/api/_helpers/__tests__/versioning.test.ts b/app/api/_helpers/__tests__/versioning.test.ts new file mode 100644 index 000000000..f45a771d0 --- /dev/null +++ b/app/api/_helpers/__tests__/versioning.test.ts @@ -0,0 +1,64 @@ +import { NextRequest } from 'next/server'; +import { beforeEach, describe, expect, it, vi } from 'vitest'; +import { createVersionedHandler } from '../versioning'; + +describe('createVersionedHandler', () => { + const mockV1Handler = vi.fn(); + const mockV2Handler = vi.fn(); + + const handlers = { + v1: { GET: mockV1Handler, POST: mockV1Handler }, + v2: { GET: mockV2Handler }, + }; + + beforeEach(() => { + vi.clearAllMocks(); + mockV1Handler.mockResolvedValue(Response.json({ ok: true })); + mockV2Handler.mockResolvedValue(Response.json({ ok: true })); + }); + + it('should route to the correct version handler', async () => { + const handler = createVersionedHandler(handlers, 'GET'); + const request = new NextRequest('http://localhost:3000/api/v1/test'); + + await handler(request, { params: Promise.resolve({ version: 'v1' }) }); + + expect(mockV1Handler).toHaveBeenCalledWith(request); + }); + + it('should return 404 for unsupported versions', async () => { + const handler = createVersionedHandler(handlers, 'GET'); + const request = new NextRequest('http://localhost:3000/api/v99/test'); + + const response = await handler(request, { + params: Promise.resolve({ version: 'v99' }), + }); + + expect(response.status).toBe(404); + const body = (await response.json()) as { error: string }; + expect(body.error).toContain('Unsupported API version'); + }); + + it('should return 405 for unsupported methods', async () => { + const handler = createVersionedHandler(handlers, 'DELETE'); + const request = new NextRequest('http://localhost:3000/api/v1/test'); + + const response = await handler(request, { + params: Promise.resolve({ version: 'v1' }), + }); + + expect(response.status).toBe(405); + const body = (await response.json()) as { error: string }; + expect(body.error).toContain('DELETE not supported'); + }); + + it('should support multiple versions', async () => { + const handler = createVersionedHandler(handlers, 'GET'); + const request = new NextRequest('http://localhost:3000/api/v2/test'); + + await handler(request, { params: Promise.resolve({ version: 'v2' }) }); + + expect(mockV2Handler).toHaveBeenCalledWith(request); + expect(mockV1Handler).not.toHaveBeenCalled(); + }); +}); diff --git a/app/api/_helpers/auth.ts b/app/api/_helpers/auth.ts new file mode 100644 index 000000000..93b8b95ee --- /dev/null +++ b/app/api/_helpers/auth.ts @@ -0,0 +1,36 @@ +import { type NextRequest, NextResponse } from 'next/server'; +import { verifyApiToken } from '~/actions/apiTokens'; + +export function createCorsHeaders(methods: string) { + return { + 'Access-Control-Allow-Origin': '*', + 'Access-Control-Allow-Methods': methods, + 'Access-Control-Allow-Headers': 'Content-Type, Authorization', + }; +} + +export async function requireApiTokenAuth( + req: NextRequest, +): Promise<{ valid: true } | { error: NextResponse }> { + const authHeader = req.headers.get('authorization'); + const token = authHeader?.replace('Bearer ', ''); + + if (!token) { + return { + error: NextResponse.json( + { error: 'Authentication required. Provide a Bearer token.' }, + { status: 401 }, + ), + }; + } + + const { valid } = await verifyApiToken(token); + + if (!valid) { + return { + error: NextResponse.json({ error: 'Invalid API token' }, { status: 401 }), + }; + } + + return { valid: true }; +} diff --git a/app/api/_helpers/versioning.ts b/app/api/_helpers/versioning.ts new file mode 100644 index 000000000..1dc54e501 --- /dev/null +++ b/app/api/_helpers/versioning.ts @@ -0,0 +1,34 @@ +import { type HTTP_METHOD } from 'next/dist/server/web/http'; +import { type NextRequest } from 'next/server'; + +type Handler = (request: NextRequest) => Response | Promise; + +export function createVersionedHandler( + handlers: Record>, + method: HTTP_METHOD, +) { + return async ( + request: NextRequest, + { params }: { params: Promise<{ version: string }> }, + ) => { + const { version } = await params; + + const versionHandlers = handlers[version]; + if (!versionHandlers) { + return Response.json( + { error: `Unsupported API version: ${version}` }, + { status: 404 }, + ); + } + + const handler = versionHandlers[method]; + if (!handler) { + return Response.json( + { error: `${method} not supported in ${version}` }, + { status: 405 }, + ); + } + + return handler(request); + }; +} diff --git a/app/api/export-interviews/route.ts b/app/api/export-interviews/route.ts new file mode 100644 index 000000000..b16cf2ccf --- /dev/null +++ b/app/api/export-interviews/route.ts @@ -0,0 +1,131 @@ +import { Effect, Layer, Queue, Stream } from 'effect'; +import { exportPipeline } from '@codaco/network-exporters/pipeline'; +import { type stageMessages } from '@codaco/network-exporters/events'; +import { addEvent } from '~/actions/activityFeed'; +import { requireApiAuth } from '~/lib/auth/guards'; +import { safeRevalidateTag } from '~/lib/cache'; +import { describeExportError } from '~/lib/export/errors'; +import { PrismaInterviewRepository } from '~/lib/export/InterviewRepository'; +import { PrismaProtocolRepository } from '~/lib/export/ProtocolRepository'; +import { makeProductionOutputLayer } from '~/lib/export/Output'; +import { formatSSE, type ExportSseEvent } from '~/lib/export/sseEvents'; +import { + captureEvent, + captureException, + shutdownPostHog, +} from '~/lib/posthog-server'; +import { getStorageProvider } from '~/queries/storageProvider'; +import { exportInterviewsSchema } from '~/schemas/export'; + +// Fresco user-facing copy for each package stage. Keys must cover every +// ExportStage emitted by @codaco/network-exporters/events. +const stageCopy: Record = { + fetching: 'Fetching interview data...', + formatting: 'Formatting sessions...', + generating: 'Generating files...', + outputting: 'Creating archive...', +}; + +export async function POST(request: Request) { + let username: string; + try { + const session = await requireApiAuth(); + username = session.user.username; + } catch { + return new Response(JSON.stringify({ error: 'Unauthorized' }), { + status: 401, + }); + } + + let body: unknown; + try { + body = await request.json(); + } catch { + return new Response(JSON.stringify({ error: 'Invalid JSON body' }), { + status: 400, + }); + } + + const parsed = exportInterviewsSchema.safeParse(body); + if (!parsed.success) { + return new Response(JSON.stringify({ error: 'Invalid request body' }), { + status: 400, + }); + } + + const { interviewIds, exportOptions } = parsed.data; + + const outputLayer = makeProductionOutputLayer(await getStorageProvider()); + + const exportLayer = Layer.mergeAll( + PrismaInterviewRepository, + PrismaProtocolRepository, + outputLayer, + ); + + const program = Effect.gen(function* () { + const queue = yield* Queue.unbounded(); + + yield* exportPipeline(interviewIds, exportOptions, queue).pipe( + Effect.tap((result) => + Effect.sync(() => { + safeRevalidateTag(['getInterviews', 'activityFeed']); + void addEvent( + 'Data Exported', + `User ${username} exported data for ${String(interviewIds.length)} interview(s)`, + ); + void captureEvent('Data Exported', { + interviewCount: interviewIds.length, + }).then(() => shutdownPostHog()); + }).pipe( + Effect.andThen( + Queue.offer(queue, { + type: 'complete', + zipUrl: result.output.url ?? '', + zipKey: result.output.key ?? '', + }), + ), + ), + ), + Effect.tapError((error) => + Effect.sync(() => { + void captureException(error).then(() => shutdownPostHog()); + }).pipe( + Effect.andThen( + Queue.offer(queue, { + type: 'error', + message: describeExportError(error), + }), + ), + ), + ), + Effect.catchAll(() => Effect.void), + Effect.ensuring(Queue.shutdown(queue)), + Effect.provide(exportLayer), + Effect.forkDaemon, + ); + + const encoder = new TextEncoder(); + const sseStream = Stream.fromQueue(queue).pipe( + // Replace the package's stage message with Fresco copy on the wire. + Stream.map((event) => + event.type === 'stage' + ? { ...event, message: stageCopy[event.stage] ?? event.message } + : event, + ), + Stream.map((event) => encoder.encode(formatSSE(event))), + ); + + return Stream.toReadableStream(sseStream); + }); + + const readableStream = await Effect.runPromise(program); + + return new Response(readableStream, { + headers: { + 'Content-Type': 'text/event-stream', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + }, + }); +} diff --git a/app/api/generate-test-interviews/route.ts b/app/api/generate-test-interviews/route.ts new file mode 100644 index 000000000..9c4cd36c7 --- /dev/null +++ b/app/api/generate-test-interviews/route.ts @@ -0,0 +1,183 @@ +import { createId } from '@paralleldrive/cuid2'; +import { addEvent } from '~/actions/activityFeed'; +import { requireApiAuth } from '~/lib/auth/guards'; +import { prisma } from '~/lib/db'; +import { generateNetwork } from '@codaco/protocol-utilities'; +import { generateSyntheticInterviewsSchema } from '~/schemas/synthetic-interviews'; + +export async function POST(request: Request) { + let username: string; + try { + const session = await requireApiAuth(); + username = session.user.username; + } catch { + return new Response(JSON.stringify({ error: 'Unauthorized' }), { + status: 401, + }); + } + + let body: unknown; + try { + body = await request.json(); + } catch { + return new Response(JSON.stringify({ error: 'Invalid JSON body' }), { + status: 400, + }); + } + + const parsed = generateSyntheticInterviewsSchema.safeParse(body); + + if (!parsed.success) { + return new Response(JSON.stringify({ error: 'Invalid request body' }), { + status: 400, + }); + } + + const { protocolId, count, simulateDropOut, respectSkipLogicAndFiltering } = + parsed.data; + + const protocol = await prisma.protocol.findUnique({ + where: { id: protocolId }, + }); + + if (!protocol) { + return new Response(JSON.stringify({ error: 'Protocol not found' }), { + status: 404, + }); + } + + const stream = new ReadableStream({ + async start(controller) { + const encoder = new TextEncoder(); + const send = (data: Record) => { + controller.enqueue(encoder.encode(`data: ${JSON.stringify(data)}\n\n`)); + }; + + try { + const stages = protocol.stages as { id: string }[]; + const typedStages = stages as Parameters[1]; + const typedCodebook = protocol.codebook as Parameters< + typeof generateNetwork + >[0]; + + const genOptions = { simulateDropOut, respectSkipLogicAndFiltering }; + + let completedCount = 0; + const incompleteInterviewIds: string[] = []; + + for (let i = 0; i < count; i++) { + const { network, stageMetadata, currentStep, droppedOut } = + generateNetwork(typedCodebook, typedStages, undefined, genOptions); + + const isCompleted = !droppedOut; + if (isCompleted) { + completedCount++; + } + + const participantIdentifier = `test-${createId()}`; + const startTime = new Date( + Date.now() - Math.floor(Math.random() * 3600000), + ); + const finishTime = isCompleted + ? new Date( + startTime.getTime() + + Math.floor(Math.random() * 1800000) + + 300000, + ) + : null; + + const created = await prisma.interview.create({ + data: { + network: network as object, + currentStep, + startTime, + finishTime, + isSynthetic: true, + stageMetadata: stageMetadata as object | undefined, + participant: { + create: { + identifier: participantIdentifier, + label: participantIdentifier, + isSynthetic: true, + }, + }, + protocol: { + connect: { id: protocolId }, + }, + }, + }); + + if (!isCompleted) { + incompleteInterviewIds.push(created.id); + } + + send({ type: 'progress', current: i + 1, total: count }); + } + + // Enforce 10% minimum completion when drop-out is enabled. + // Regenerate incomplete interviews from this batch with drop-out + // disabled and update them in-place. + if (simulateDropOut) { + const minCompleted = Math.max(1, Math.ceil(count * 0.1)); + + if (completedCount < minCompleted) { + const deficit = minCompleted - completedCount; + const toFix = incompleteInterviewIds.slice(0, deficit); + + const incompleteInterviews = await prisma.interview.findMany({ + where: { id: { in: toFix } }, + select: { id: true, startTime: true }, + }); + + for (const interview of incompleteInterviews) { + const { network, stageMetadata, currentStep } = generateNetwork( + typedCodebook, + typedStages, + undefined, + { + ...genOptions, + simulateDropOut: false, + }, + ); + + await prisma.interview.update({ + where: { id: interview.id }, + data: { + network: network as object, + currentStep, + stageMetadata: stageMetadata as object | undefined, + finishTime: new Date( + interview.startTime.getTime() + + Math.floor(Math.random() * 1800000) + + 300000, + ), + }, + }); + } + } + } + + void addEvent( + 'Synthetic Data Generated', + `User ${username} generated ${String(count)} synthetic interviews for protocol "${protocol.name}"`, + ); + + send({ type: 'complete', created: count }); + } catch (error) { + const message = + error instanceof Error ? error.message : 'Unknown error'; + send({ type: 'error', message }); + } finally { + controller.close(); + } + }, + }); + + return new Response(stream, { + headers: { + 'Content-Type': 'text/event-stream', + 'Cache-Control': 'no-cache', + 'Connection': 'keep-alive', + }, + }); +} diff --git a/app/api/health/route.ts b/app/api/health/route.ts new file mode 100644 index 000000000..bd6b6aec9 --- /dev/null +++ b/app/api/health/route.ts @@ -0,0 +1,134 @@ +import { type NextRequest, NextResponse } from 'next/server'; + +import { env } from '~/env.js'; + +type HealthStatus = 'healthy' | 'degraded' | 'unhealthy'; + +type HealthCheck = { + name: string; + status: HealthStatus; + duration: number; + error?: string; + details?: Record; +}; + +type HealthResponse = { + status: HealthStatus; + timestamp: string; + uptime: number; + version?: string; + checks: HealthCheck[]; +}; + +function checkBasicHealth(): HealthCheck { + const start = performance.now(); + + try { + // Basic health check - just verify the service is running + const nodeVersion = process.version; + const duration = performance.now() - start; + + return { + name: 'basic', + status: 'healthy', + duration: Math.round(duration), + details: { + nodeVersion, + environment: env.NODE_ENV, + uptime: Math.round(process.uptime()), + }, + }; + } catch (error) { + const duration = performance.now() - start; + + return { + name: 'basic', + status: 'unhealthy', + duration: Math.round(duration), + error: + error instanceof Error ? error.message : 'Basic health check failed', + }; + } +} + +function getOverallStatus(checks: HealthCheck[]): HealthStatus { + const hasUnhealthy = checks.some((check) => check.status === 'unhealthy'); + const hasDegraded = checks.some((check) => check.status === 'degraded'); + + if (hasUnhealthy) return 'unhealthy'; + if (hasDegraded) return 'degraded'; + return 'healthy'; +} + +function getStatusCode(status: HealthStatus): number { + switch (status) { + case 'healthy': + return 200; + case 'degraded': + return 200; // Still operational + case 'unhealthy': + return 503; // Service Unavailable + } +} + +export function GET(_request: NextRequest): NextResponse { + const startTime = performance.now(); + + try { + // Run health checks + const basicCheck = checkBasicHealth(); + const checks = [basicCheck]; + + const overallStatus = getOverallStatus(checks); + const statusCode = getStatusCode(overallStatus); + + const response: HealthResponse = { + status: overallStatus, + timestamp: new Date().toISOString(), + uptime: Math.round(process.uptime()), + version: env.APP_VERSION ?? 'unknown', + checks, + }; + + const totalDuration = Math.round(performance.now() - startTime); + + return NextResponse.json( + { + ...response, + duration: totalDuration, + }, + { + status: statusCode, + headers: { + 'Content-Type': 'application/json', + 'Cache-Control': 'no-cache, no-store, must-revalidate', + 'X-Health-Check': 'true', + }, + }, + ); + } catch (error) { + // Fallback error response + const response: HealthResponse = { + status: 'unhealthy', + timestamp: new Date().toISOString(), + uptime: Math.round(process.uptime()), + checks: [ + { + name: 'health_check', + status: 'unhealthy', + duration: Math.round(performance.now() - startTime), + error: error instanceof Error ? error.message : 'Health check failed', + }, + ], + }; + + return NextResponse.json(response, { + status: 503, + headers: { + 'Content-Type': 'application/json', + 'Cache-Control': 'no-cache, no-store, must-revalidate', + 'X-Health-Check': 'true', + }, + }); + } +} diff --git a/app/api/interviews/[interviewId]/finish/route.ts b/app/api/interviews/[interviewId]/finish/route.ts new file mode 100644 index 000000000..5b0560a61 --- /dev/null +++ b/app/api/interviews/[interviewId]/finish/route.ts @@ -0,0 +1,54 @@ +import { cookies } from 'next/headers'; +import { after, NextResponse } from 'next/server'; +import { addEvent } from '~/actions/activityFeed'; +import { safeRevalidateTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; +import { captureException, shutdownPostHog } from '~/lib/posthog-server'; +import { ensureError } from '~/utils/ensureError'; + +export async function POST( + _request: Request, + { params }: { params: Promise<{ interviewId: string }> }, +) { + const { interviewId } = await params; + + try { + const updatedInterview = await prisma.interview.update({ + where: { id: interviewId }, + data: { finishTime: new Date() }, + include: { participant: true }, + }); + + const { label, identifier } = updatedInterview.participant; + const participantDisplay = label ? `${label} (${identifier})` : identifier; + + const network = updatedInterview.network; + + void addEvent( + 'Interview Completed', + `Participant "${participantDisplay}" completed an interview`, + { + nodeCount: network?.nodes?.length ?? 0, + edgeCount: network?.edges?.length ?? 0, + }, + ); + + (await cookies()).set(updatedInterview.protocolId, 'completed'); + + safeRevalidateTag(['getInterviews', 'summaryStatistics', 'activityFeed']); + + return NextResponse.json({ success: true }); + } catch (e) { + const error = ensureError(e); + + after(async () => { + await captureException(error, { interviewId }); + await shutdownPostHog(); + }); + + return NextResponse.json( + { error: 'Failed to finish interview' }, + { status: 500 }, + ); + } +} diff --git a/app/api/storage/presign/route.ts b/app/api/storage/presign/route.ts new file mode 100644 index 000000000..2434dfc28 --- /dev/null +++ b/app/api/storage/presign/route.ts @@ -0,0 +1,62 @@ +import { Effect } from 'effect'; +import { z } from 'zod'; +import { requireApiAuth } from '~/lib/auth/guards'; +import { getStorageLayer } from '~/lib/storage/layers/StorageLayer'; +import { AssetStorage } from '~/lib/storage/services/AssetStorage'; +import { getStorageProvider } from '~/queries/storageProvider'; + +const requestSchema = z.object({ + files: z.array( + z.object({ + name: z.string(), + size: z.number().positive(), + }), + ), +}); + +export async function POST(request: Request) { + try { + await requireApiAuth(); + } catch { + return Response.json({ error: 'Unauthorized' }, { status: 401 }); + } + + let body: unknown; + try { + body = await request.json(); + } catch { + return Response.json({ error: 'Invalid JSON body' }, { status: 400 }); + } + + const parsed = requestSchema.safeParse(body); + if (!parsed.success) { + return Response.json({ error: 'Invalid request body' }, { status: 400 }); + } + + const provider = await getStorageProvider(); + + // UploadThing's ingest protocol is not a plain presigned-PUT; the client + // must use the UploadThing SDK's uploader directly, which hits + // /api/uploadthing. We only generate presigned URLs for S3. + if (provider === 'uploadthing') { + return Response.json({ provider: 'uploadthing' }); + } + + try { + const storageLayer = await getStorageLayer(); + + const urls = await Effect.gen(function* () { + const assetStorage = yield* AssetStorage; + return yield* assetStorage.generatePresignedUploadUrls(parsed.data.files); + }).pipe(Effect.provide(storageLayer), Effect.runPromise); + + return Response.json({ provider: 's3', urls }); + } catch (error) { + // eslint-disable-next-line no-console + console.error('Failed to generate presigned URLs:', error); + return Response.json( + { error: 'Failed to generate upload URLs' }, + { status: 500 }, + ); + } +} diff --git a/app/api/uploadthing/core.ts b/app/api/uploadthing/core.ts new file mode 100644 index 000000000..f92f0670c --- /dev/null +++ b/app/api/uploadthing/core.ts @@ -0,0 +1,20 @@ +import { createUploadthing } from 'uploadthing/next'; +import { getServerSession } from '~/lib/auth/guards'; + +const f = createUploadthing(); + +export const ourFileRouter = { + assetRouter: f({ + blob: { maxFileSize: '256MB', maxFileCount: 50 }, + }) + .middleware(async () => { + const session = await getServerSession(); + if (!session) { + throw new Error('You must be logged in to upload assets.'); + } + return {}; + }) + .onUploadComplete(() => undefined), +}; + +export type OurFileRouter = typeof ourFileRouter; diff --git a/app/api/uploadthing/route.ts b/app/api/uploadthing/route.ts new file mode 100644 index 000000000..aa0176667 --- /dev/null +++ b/app/api/uploadthing/route.ts @@ -0,0 +1,48 @@ +import { invariant } from 'es-toolkit'; +import { type NextRequest } from 'next/server'; +import { createRouteHandler } from 'uploadthing/next'; +import { getAppSetting } from '~/queries/appSettings'; +import { getBaseUrl } from '~/utils/getBaseUrl'; +import { ourFileRouter } from './core'; + +/** + * getAppSetting uses 'use cache', which can't be called at the top level of + * a route handler. We wrap the route handler in a function that calls + * getAppSetting to work around this limitation. + */ +const routeHandler = async () => { + const uploadThingToken = await getAppSetting('uploadThingToken'); + + invariant( + uploadThingToken, + 'UploadThing token is not set. Please set it in the app settings.', + ); + + const handler = createRouteHandler({ + router: ourFileRouter, + config: { + // The URL to where the route handler is hosted + // UploadThing attempts to automatically detect this value based on the request URL and headers + // However, the automatic detection fails in docker deployments + // docs: https://docs.uploadthing.com/api-reference/server#config + callbackUrl: `${getBaseUrl()}/api/uploadthing`, + token: uploadThingToken ?? undefined, + }, + }); + + return handler; +}; + +const POST_HANDLER = async (request: NextRequest) => { + const { POST } = await routeHandler(); + return POST(request); +}; + +export { POST_HANDLER as POST }; + +const GET_HANDLER = async (request: NextRequest) => { + const { GET } = await routeHandler(); + return GET(request); +}; + +export { GET_HANDLER as GET }; diff --git a/app/dashboard/_components/ActivityFeed/ActivityFeed.tsx b/app/dashboard/_components/ActivityFeed/ActivityFeed.tsx new file mode 100644 index 000000000..0848f7553 --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/ActivityFeed.tsx @@ -0,0 +1,18 @@ +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import { type fetchActivities } from '~/queries/activityFeed'; +import ActivityFeedTable from './ActivityFeedTable'; + +type ActivityFeedProps = { + activitiesPromise: ReturnType; +}; + +export default function ActivityFeed({ activitiesPromise }: ActivityFeedProps) { + return ( + } + > + + + ); +} diff --git a/app/dashboard/_components/ActivityFeed/ActivityFeedRows.tsx b/app/dashboard/_components/ActivityFeed/ActivityFeedRows.tsx new file mode 100644 index 000000000..5bdee113f --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/ActivityFeedRows.tsx @@ -0,0 +1,126 @@ +'use client'; + +import { + getCoreRowModel, + getPaginationRowModel, + getSortedRowModel, + useReactTable, + type ColumnDef, + type ColumnFiltersState, + type PaginationState, + type SortingState, +} from '@tanstack/react-table'; +import { + parseAsArrayOf, + parseAsInteger, + parseAsString, + parseAsStringLiteral, + useQueryStates, +} from 'nuqs'; +import { use, useMemo } from 'react'; +import { DataTable } from '@codaco/fresco-ui/DataTable/DataTable'; +import { useNuqsTable } from '~/components/DataTable/nuqs/NuqsTableProvider'; +import type { Events } from '~/lib/db/generated/client'; +import type { ActivitiesFeed } from '~/queries/activityFeed'; +import { fetchActivityFeedTableColumnDefs } from './ColumnDefinition'; +import { searchParamsUrlKeys } from './SearchParams'; +import { activityTypes, sortableFields, sortOrder } from './types'; + +export default function ActivityFeedRows({ + activitiesPromise, +}: { + activitiesPromise: ActivitiesFeed; +}) { + // TanStack Table returns a mutable ref with stable identity, defeating React Compiler memoization. + 'use no memo'; + const tableData = use(activitiesPromise); + const { startTransition } = useNuqsTable(); + + const columns = useMemo[]>( + () => fetchActivityFeedTableColumnDefs(), + [], + ); + + // Pagination + sort writes go through the shared transition so the table + // fades during the refetch. Filter keys (q, type) are read-only here — + // they're owned by the toolbar components, and we mirror them into the + // react-table `columnFilters` state below so the column highlight styling + // reflects the active filter. + const [{ page, perPage, sort, sortField, q, type }, setTableState] = + useQueryStates( + { + page: parseAsInteger.withDefault(1), + perPage: parseAsInteger.withDefault(10), + sort: parseAsStringLiteral(sortOrder).withDefault('none'), + sortField: + parseAsStringLiteral(sortableFields).withDefault('timestamp'), + q: parseAsString, + type: parseAsArrayOf(parseAsStringLiteral(activityTypes)), + }, + { + urlKeys: searchParamsUrlKeys, + shallow: false, + clearOnDefault: true, + startTransition, + }, + ); + + const pagination: PaginationState = { + pageIndex: page - 1, + pageSize: perPage, + }; + + const sorting: SortingState = + sort === 'none' ? [] : [{ id: sortField, desc: sort === 'desc' }]; + + // Derived for column highlighting only. The server does the actual + // filtering via `manualFiltering: true`, and the toolbar owns writes to + // these URL params — this local state is feed-only. + const columnFilters = useMemo(() => { + const filters: ColumnFiltersState = []; + if (q) filters.push({ id: 'message', value: q }); + if (type && type.length > 0) filters.push({ id: 'type', value: type }); + return filters; + }, [q, type]); + + const table = useReactTable({ + data: tableData.events, + columns, + pageCount: tableData.pageCount, + state: { pagination, sorting, columnFilters }, + onPaginationChange: (updater) => { + const next = + typeof updater === 'function' ? updater(pagination) : updater; + void setTableState({ + page: next.pageIndex + 1, + perPage: next.pageSize, + }); + }, + onSortingChange: (updater) => { + const next = typeof updater === 'function' ? updater(sorting) : updater; + const first = next[0]; + if (!first) { + void setTableState({ sort: null, sortField: null }); + return; + } + if ( + first.id === 'timestamp' || + first.id === 'type' || + first.id === 'message' + ) { + void setTableState({ + sort: first.desc ? 'desc' : 'asc', + sortField: first.id, + }); + } + }, + getCoreRowModel: getCoreRowModel(), + getPaginationRowModel: getPaginationRowModel(), + getSortedRowModel: getSortedRowModel(), + manualPagination: true, + manualSorting: true, + manualFiltering: true, + }); + + return ; +} diff --git a/app/dashboard/_components/ActivityFeed/ActivityFeedTable.tsx b/app/dashboard/_components/ActivityFeed/ActivityFeedTable.tsx new file mode 100644 index 000000000..da291bba0 --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/ActivityFeedTable.tsx @@ -0,0 +1,54 @@ +'use client'; + +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import { + NuqsTableProvider, + useNuqsTable, +} from '~/components/DataTable/nuqs/NuqsTableProvider'; +import type { ActivitiesFeed } from '~/queries/activityFeed'; +import { cx } from '@codaco/fresco-ui/utils/cva'; +import ActivityFeedRows from './ActivityFeedRows'; +import ActivityFeedToolbar from './ActivityFeedToolbar'; +import { ACTIVITY_FEED_PREFIX } from './SearchParams'; + +export default function ActivityFeedTable({ + activitiesPromise, +}: { + activitiesPromise: ActivitiesFeed; +}) { + return ( + + + + ); +} + +function ActivityFeedTableInner({ + activitiesPromise, +}: { + activitiesPromise: ActivitiesFeed; +}) { + const { isPending } = useNuqsTable(); + + return ( +
+ + + } + > +
+ +
+
+
+ ); +} diff --git a/app/dashboard/_components/ActivityFeed/ActivityFeedToolbar.tsx b/app/dashboard/_components/ActivityFeed/ActivityFeedToolbar.tsx new file mode 100644 index 000000000..99abf500b --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/ActivityFeedToolbar.tsx @@ -0,0 +1,30 @@ +'use client'; + +import NuqsClearFilters from '~/components/DataTable/nuqs/NuqsClearFilters'; +import NuqsFacetedFilter from '~/components/DataTable/nuqs/NuqsFacetedFilter'; +import NuqsSearchFilter from '~/components/DataTable/nuqs/NuqsSearchFilter'; +import ExportActivityFeed from './ExportActivityFeed'; +import { activityTypes } from './types'; + +const clearableFilters = ['q', 'type'] as const; + +export default function ActivityFeedToolbar() { + return ( +
+ + + + +
+ ); +} diff --git a/app/dashboard/_components/ActivityFeed/ColumnDefinition.tsx b/app/dashboard/_components/ActivityFeed/ColumnDefinition.tsx new file mode 100644 index 000000000..1727a3529 --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/ColumnDefinition.tsx @@ -0,0 +1,48 @@ +'use client'; + +import { type StrictColumnDef } from '@codaco/fresco-ui/DataTable/types'; +import { DataTableColumnHeader } from '@codaco/fresco-ui/DataTable/ColumnHeader'; +import { Badge } from '@codaco/fresco-ui/Badge'; +import TimeAgo from '@codaco/fresco-ui/TimeAgo'; +import type { Events } from '~/lib/db/generated/client'; +import { getBadgeColorsForActivityType } from './utils'; + +export function fetchActivityFeedTableColumnDefs(): StrictColumnDef[] { + return [ + { + accessorKey: 'timestamp', + sortingFn: 'datetime', + header: ({ column }) => ( + + ), + cell: ({ row }) => { + const timestamp: string = row.getValue('timestamp'); + return ; + }, + }, + { + accessorKey: 'type', + sortingFn: 'text', + header: ({ column }) => ( + + ), + cell: ({ row }) => { + const activityType: string = row.getValue('type'); + const color = getBadgeColorsForActivityType(activityType); + return {activityType}; + }, + enableHiding: false, + }, + { + accessorKey: 'message', + header: ({ column }) => ( + + ), + cell: ({ row }) => ( +
{row.original.message}
+ ), + enableSorting: false, + enableHiding: false, + }, + ]; +} diff --git a/app/dashboard/_components/ActivityFeed/ExportActivityFeed.tsx b/app/dashboard/_components/ActivityFeed/ExportActivityFeed.tsx new file mode 100644 index 000000000..2bac3b4dc --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/ExportActivityFeed.tsx @@ -0,0 +1,58 @@ +'use client'; + +import { FileUp } from 'lucide-react'; +import { unparse } from 'papaparse'; +import { useTransition } from 'react'; +import { getActivitiesForExport } from '~/actions/activityFeed'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import { useDownload } from '~/hooks/useDownload'; + +export default function ExportActivityFeed() { + const download = useDownload(); + const { add } = useToast(); + const [isPending, startTransition] = useTransition(); + + const exportActivityFeed = () => { + startTransition(async () => { + try { + const activities = await getActivitiesForExport(); + + const csvData = activities.map((activity) => ({ + timestamp: activity.timestamp.toISOString(), + type: activity.type, + details: activity.message, + })); + + const csv = unparse(csvData, { header: true }); + const blob = new Blob([csv], { type: 'text/csv' }); + const url = URL.createObjectURL(blob); + download(url, 'activity-feed.csv'); + URL.revokeObjectURL(url); + + add({ + title: 'Success', + description: 'Activity feed exported successfully', + variant: 'success', + }); + } catch (error) { + add({ + title: 'Error', + description: 'An error occurred while exporting the activity feed', + variant: 'destructive', + }); + } + }); + }; + + return ( + + ); +} diff --git a/app/dashboard/_components/ActivityFeed/SearchParams.ts b/app/dashboard/_components/ActivityFeed/SearchParams.ts new file mode 100644 index 000000000..d894fdfdc --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/SearchParams.ts @@ -0,0 +1,42 @@ +import { + createSearchParamsCache, + parseAsArrayOf, + parseAsInteger, + parseAsString, + parseAsStringLiteral, +} from 'nuqs/server'; +import { activityTypes, sortableFields, sortOrder } from './types'; + +/** + * URL namespace prefix for this table. Used by the client provider to + * namespace URL params so multiple server-fetched tables can coexist on + * the same page without colliding. + */ +export const ACTIVITY_FEED_PREFIX = 'af'; + +/** + * Logical-name parsers — these are what the rest of the app sees. The + * actual URL keys are prefixed via `urlKeys` so the URL stays + * `?af_q=foo&af_type=...&af_page=2` etc. + */ +const searchParamsParsers = { + page: parseAsInteger.withDefault(1), + perPage: parseAsInteger.withDefault(10), + sort: parseAsStringLiteral(sortOrder).withDefault('none'), + sortField: parseAsStringLiteral(sortableFields).withDefault('timestamp'), + q: parseAsString, + type: parseAsArrayOf(parseAsStringLiteral(activityTypes)), +}; + +export const searchParamsUrlKeys = { + page: `${ACTIVITY_FEED_PREFIX}_page`, + perPage: `${ACTIVITY_FEED_PREFIX}_perPage`, + sort: `${ACTIVITY_FEED_PREFIX}_sort`, + sortField: `${ACTIVITY_FEED_PREFIX}_sortField`, + q: `${ACTIVITY_FEED_PREFIX}_q`, + type: `${ACTIVITY_FEED_PREFIX}_type`, +}; + +export const searchParamsCache = createSearchParamsCache(searchParamsParsers, { + urlKeys: searchParamsUrlKeys, +}); diff --git a/app/dashboard/_components/ActivityFeed/types.ts b/app/dashboard/_components/ActivityFeed/types.ts new file mode 100644 index 000000000..0f7d5b3b4 --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/types.ts @@ -0,0 +1,59 @@ +import { type Prisma } from '~/lib/db/generated/client'; + +export const activityTypes = [ + 'Protocol Installed', + 'Protocol Uninstalled', + 'Participant(s) Added', + 'Participant(s) Removed', + 'Interview Started', + 'Interview Completed', + 'Interview Opened', + 'Interview(s) Deleted', + 'Data Exported', + 'API Token Created', + 'API Token Updated', + 'API Token Deleted', + 'User Login', + 'User Created', + 'User Deleted', + 'Password Changed', + 'Two-Factor Enabled', + 'Two-Factor Disabled', + 'Two-Factor Reset', + 'Recovery Code Used', + 'Recovery Codes Regenerated', + 'Passkey Registered', + 'Passkey Removed', + 'Password Removed', + 'Password Set', + 'Auth Reset', + 'Switched to Passkey Mode', + 'Switched to Password Mode', + 'Setting Changed', + 'Synthetic Data Generated', + 'Synthetic Data Deleted', +] as const; + +export type ActivityType = (typeof activityTypes)[number]; + +export type Activity = Prisma.EventsGetPayload<{ + select: { + id: true; + timestamp: true; + type: true; + message: true; + }; +}>; + +export const sortOrder = ['asc', 'desc', 'none'] as const; + +export const sortableFields = ['timestamp', 'type', 'message'] as const; + +export type SearchParams = { + page: number; + perPage: number; + sort: (typeof sortOrder)[number]; + sortField: (typeof sortableFields)[number]; + q: string | null; + type: ActivityType[] | null; +}; diff --git a/app/dashboard/_components/ActivityFeed/utils.ts b/app/dashboard/_components/ActivityFeed/utils.ts new file mode 100644 index 000000000..8af894f67 --- /dev/null +++ b/app/dashboard/_components/ActivityFeed/utils.ts @@ -0,0 +1,75 @@ +export const getBadgeColorsForActivityType = (type: string) => { + switch (type) { + case 'Protocol Installed': + return 'bg-slate-blue hover:bg-slate-blue-dark'; + case 'Protocol Uninstalled': + return 'bg-neon-carrot hover:bg-neon-carrot-dark'; + case 'Participant(s) Added': + return 'bg-sea-green hover:bg-sea-green'; + case 'Participant(s) Removed': + return 'bg-tomato hover:bg-tomato-dark'; + case 'Interview Started': + return 'bg-sea-serpent hover:bg-sea-serpent-dark'; + case 'Interview Completed': + return 'bg-purple-pizazz hover:bg-purple-pizazz-dark'; + case 'Interview Opened': + return 'bg-cerulean-blue hover:bg-cerulean-blue-dark'; + case 'Interview(s) Deleted': + return 'bg-paradise-pink hover:bg-paradise-pink-dark'; + case 'Data Exported': + return 'bg-kiwi hover:bg-kiwi-dark'; + case 'API Token Created': + return 'bg-cerulean-blue hover:bg-cerulean-blue-dark'; + case 'API Token Updated': + return 'bg-kiwi hover:bg-kiwi-dark'; + case 'API Token Deleted': + return 'bg-cyber-grape hover:bg-cyber-grape-dark'; + case 'Password Changed': + return 'bg-mustard hover:bg-mustard-dark'; + case 'User Login': + return 'bg-neon-coral hover:bg-neon-coral-dark'; + case 'User Created': + return 'bg-sea-green hover:bg-sea-green-dark'; + case 'User Deleted': + return 'bg-charcoal hover:bg-charcoal-dark'; + case 'Two-Factor Enabled': + return 'bg-sea-green hover:bg-sea-green-dark'; + case 'Two-Factor Disabled': + return 'bg-neon-carrot hover:bg-neon-carrot-dark'; + case 'Two-Factor Reset': + return 'bg-mustard hover:bg-mustard-dark'; + case 'Recovery Code Used': + return 'bg-purple-pizazz hover:bg-purple-pizazz-dark'; + case 'Recovery Codes Regenerated': + return 'bg-cerulean-blue hover:bg-cerulean-blue-dark'; + case 'Passkey Registered': + return 'bg-sea-green hover:bg-sea-green-dark'; + case 'Passkey Removed': + return 'bg-neon-carrot hover:bg-neon-carrot-dark'; + case 'Password Removed': + return 'bg-mustard hover:bg-mustard-dark'; + case 'Password Set': + return 'bg-sea-green hover:bg-sea-green-dark'; + case 'Auth Reset': + return 'bg-tomato hover:bg-tomato-dark'; + case 'Switched to Passkey Mode': + return 'bg-sea-green hover:bg-sea-green-dark'; + case 'Switched to Password Mode': + return 'bg-mustard hover:bg-mustard-dark'; + case 'Setting Changed': + return 'bg-mustard hover:bg-mustard-dark'; + case 'Synthetic Data Generated': + return 'bg-sea-green hover:bg-sea-green'; + case 'Synthetic Data Deleted': + return 'bg-neon-carrot hover:bg-neon-carrot-dark'; + // Legacy event types kept for backward compatibility with existing DB rows + case 'Two-Factor Login': + return 'bg-neon-coral hover:bg-neon-coral-dark'; + case 'Passkey Login': + return 'bg-neon-coral hover:bg-neon-coral-dark'; + case 'Recovery Code Login': + return 'bg-purple-pizazz hover:bg-purple-pizazz-dark'; + default: + return 'bg-slate hover:bg-slate-dark'; + } +}; diff --git a/app/dashboard/_components/InterviewsTable/ActionsDropdown.tsx b/app/dashboard/_components/InterviewsTable/ActionsDropdown.tsx new file mode 100644 index 000000000..c9229d62c --- /dev/null +++ b/app/dashboard/_components/InterviewsTable/ActionsDropdown.tsx @@ -0,0 +1,99 @@ +'use client'; + +import type { Row } from '@tanstack/react-table'; +import { + DeleteIcon, + DoorOpenIcon, + FileIcon, + MoreHorizontal, +} from 'lucide-react'; +import Link from 'next/link'; +import { hash as objectHash } from 'ohash'; +import { useState } from 'react'; +import { DeleteInterviewsDialog } from '~/app/dashboard/interviews/_components/DeleteInterviewsDialog'; +import { ExportInterviewsDialog } from '~/app/dashboard/interviews/_components/ExportInterviewsDialog'; +import { IconButton } from '@codaco/fresco-ui/Button'; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuGroup, + DropdownMenuItem, + DropdownMenuLabel, + DropdownMenuTrigger, +} from '@codaco/fresco-ui/DropdownMenu'; +import type { GetInterviewsQuery } from '~/queries/interviews'; + +type InterviewRow = GetInterviewsQuery[number]; + +export const ActionsDropdown = ({ row }: { row: Row }) => { + const [showDeleteModal, setShowDeleteModal] = useState(false); + const [showExportModal, setShowExportModal] = useState(false); + const [selectedInterviews, setSelectedInterviews] = + useState(); + + const handleDelete = (data: InterviewRow) => { + setSelectedInterviews([data]); + setShowDeleteModal(true); + }; + + const handleExport = (data: InterviewRow) => { + setSelectedInterviews([data]); + setShowExportModal(true); + }; + + const handleResetExport = () => { + setSelectedInterviews([]); + setShowExportModal(false); + }; + + return ( + <> + + + + } + size="sm" + /> + } + nativeButton + /> + + + Actions + handleDelete(row.original)} + icon={} + > + Delete + + handleExport(row.original)} + icon={} + > + Export + + + + }> + Enter Interview + + + + + + ); +}; diff --git a/app/dashboard/_components/InterviewsTable/Columns.tsx b/app/dashboard/_components/InterviewsTable/Columns.tsx new file mode 100644 index 000000000..a072ae1a7 --- /dev/null +++ b/app/dashboard/_components/InterviewsTable/Columns.tsx @@ -0,0 +1,290 @@ +'use client'; + +import { Badge } from '@codaco/fresco-ui/Badge'; +import Checkbox from '@codaco/fresco-ui/form/fields/Checkbox'; +import ProgressBar from '@codaco/fresco-ui/ProgressBar'; +import TimeAgo from '@codaco/fresco-ui/TimeAgo'; +import { type FilterFn } from '@tanstack/react-table'; +import Image from 'next/image'; +import { DataTableColumnHeader } from '@codaco/fresco-ui/DataTable/ColumnHeader'; +import { + booleanFilterFn, + dateFilterFn, + facetedFilterFn, + operatorFilterFn, + rangeFilterFn, +} from '@codaco/fresco-ui/DataTable/filters/filterFns'; +import { SelectAllHeader } from '@codaco/fresco-ui/DataTable/SelectAllHeader'; +import { + type Option, + type StrictColumnDef, +} from '@codaco/fresco-ui/DataTable/types'; +import type { GetInterviewsQuery } from '~/queries/interviews'; +import NetworkSummary from './NetworkSummary'; + +type InterviewRow = GetInterviewsQuery[number]; + +export const InterviewColumns = (): StrictColumnDef[] => [ + { + id: 'select', + meta: { + className: 'sticky left-0', + }, + header: ({ table }) => , + cell: ({ row }) => ( + row.toggleSelected(!!value)} + aria-label="Select row" + /> + ), + enableSorting: false, + enableHiding: false, + }, + { + id: 'identifier', + accessorKey: 'participant.identifier', + sortingFn: 'text', + header: ({ column }) => { + return ( + + Participant icon + Participant Identifier +
+ } + /> + ); + }, + cell: ({ row }) => { + return ( +
+ + {row.original.participant.identifier} + +
+ ); + }, + }, + { + id: 'protocolName', + accessorKey: 'protocol.name', + sortingFn: 'text', + meta: { + filterType: 'faceted' as const, + filterConfig: { + type: 'faceted' as const, + options: (data: unknown[]) => { + const rows = data as GetInterviewsQuery; + const names = [...new Set(rows.map((r) => r.protocol.name))]; + return names.map((name) => ({ + label: name.replace(/\.netcanvas$/, ''), + value: name, + })); + }, + }, + }, + filterFn: facetedFilterFn, + header: ({ column, table }) => { + return ( + + Protocol icon + Protocol Name + + } + /> + ); + }, + cell: ({ row }) => { + const protocolFileName = row.original.protocol.name; + const protocolName = protocolFileName.replace(/\.netcanvas$/, ''); + return ( +
+ {protocolName} +
+ ); + }, + }, + { + id: 'startTime', + accessorKey: 'startTime', + sortingFn: 'datetime', + meta: { + filterType: 'date' as const, + filterConfig: { type: 'date' as const }, + }, + filterFn: dateFilterFn, + header: ({ column, table }) => { + return ( + + ); + }, + cell: ({ row }) => { + return ; + }, + }, + { + id: 'lastUpdated', + accessorKey: 'lastUpdated', + sortingFn: 'datetime', + meta: { + filterType: 'date' as const, + filterConfig: { type: 'date' as const }, + }, + filterFn: dateFilterFn, + header: ({ column, table }) => { + return ( + + ); + }, + cell: ({ row }) => { + return ; + }, + }, + { + id: 'progress', + sortingFn: 'basic', + accessorFn: (row) => { + const stageCount = row.protocol.stageCount; + return stageCount > 0 ? (row.currentStep / stageCount) * 100 : 0; + }, + meta: { + filterType: 'range' as const, + filterConfig: { + type: 'range' as const, + min: 0, + max: 100, + step: 1, + presets: [ + { label: 'Not Started', min: 0, max: 0 }, + { label: 'In Progress', min: 1, max: 99 }, + { label: 'Complete', min: 100, max: 100 }, + ], + formatLabel: (v: number) => `${String(v)}%`, + }, + }, + filterFn: rangeFilterFn, + header: ({ column, table }) => { + return ( + + ); + }, + cell: ({ row }) => { + const stageCount = row.original.protocol.stageCount; + const progress = + stageCount > 0 ? (row.original.currentStep / stageCount) * 100 : 0; + return ( +
+ +
{progress.toFixed(0)}%
+
+ ); + }, + }, + { + id: 'network', + enableSorting: false, + accessorFn: (row) => { + const network = row.network; + const nodeCount = network.nodes.reduce((sum, n) => sum + n.count, 0); + const edgeCount = network.edges.reduce((sum, e) => sum + e.count, 0); + return nodeCount + edgeCount; + }, + meta: { + filterType: 'operator' as const, + filterConfig: { + type: 'operator' as const, + operators: ['eq', 'gt', 'lt', 'gte', 'lte'] as const, + entitySelector: { + label: 'Entity Type', + getOptions: (data: unknown[]) => { + const rows = data as GetInterviewsQuery; + const types = new Map(); + for (const row of rows) { + for (const node of row.network.nodes) { + types.set(`nodes.${node.type}`, { + label: `${node.name} (nodes)`, + value: `nodes.${node.type}`, + }); + } + for (const edge of row.network.edges) { + types.set(`edges.${edge.type}`, { + label: `${edge.name} (edges)`, + value: `edges.${edge.type}`, + }); + } + } + return Array.from(types.values()); + }, + }, + }, + }, + filterFn: operatorFilterFn as FilterFn, + header: ({ column, table }) => { + return ( + + ); + }, + cell: ({ row }) => { + return ; + }, + }, + { + id: 'exportTime', + accessorKey: 'exportTime', + sortingFn: 'datetime', + meta: { + filterType: 'boolean' as const, + filterConfig: { + type: 'boolean' as const, + trueLabel: 'Exported', + falseLabel: 'Not Exported', + }, + }, + filterFn: booleanFilterFn, + header: ({ column, table }) => { + return ( + + ); + }, + cell: ({ row }) => { + if (!row.original.exportTime) { + return Not exported; + } + + return ; + }, + }, +]; diff --git a/app/dashboard/_components/InterviewsTable/InterviewsTable.tsx b/app/dashboard/_components/InterviewsTable/InterviewsTable.tsx new file mode 100644 index 000000000..d9a3ffe3a --- /dev/null +++ b/app/dashboard/_components/InterviewsTable/InterviewsTable.tsx @@ -0,0 +1,191 @@ +'use client'; + +import { type ColumnDef, type Row } from '@tanstack/react-table'; +import { FileUp, HardDriveUpload, Trash } from 'lucide-react'; +import { use, useMemo, useState } from 'react'; +import superjson from 'superjson'; +import { ActionsDropdown } from '~/app/dashboard/_components/InterviewsTable/ActionsDropdown'; +import { InterviewColumns } from '~/app/dashboard/_components/InterviewsTable/Columns'; +import { DeleteInterviewsDialog } from '~/app/dashboard/interviews/_components/DeleteInterviewsDialog'; +import { ExportInterviewsDialog } from '~/app/dashboard/interviews/_components/ExportInterviewsDialog'; +import { GenerateInterviewURLs } from '~/app/dashboard/interviews/_components/GenerateInterviewURLs'; +import { DataTable } from '@codaco/fresco-ui/DataTable/DataTable'; +import { DataTableFloatingBar } from '@codaco/fresco-ui/DataTable/DataTableFloatingBar'; +import { DataTableToolbar } from '@codaco/fresco-ui/DataTable/DataTableToolbar'; +import { Button } from '@codaco/fresco-ui/Button'; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuTrigger, +} from '@codaco/fresco-ui/DropdownMenu'; +import { useClientDataTable } from '~/hooks/useClientDataTable'; +import type { + GetInterviewsQuery, + GetInterviewsReturnType, +} from '~/queries/interviews'; +import type { GetProtocolsReturnType } from '~/queries/protocols'; + +type InterviewRow = GetInterviewsQuery[number]; + +export const InterviewsTable = ({ + interviewsPromise, + protocolsPromise, +}: { + interviewsPromise: GetInterviewsReturnType; + protocolsPromise: GetProtocolsReturnType; +}) => { + // TanStack Table: consumers must also opt out so React Compiler doesn't memoize JSX that depends on the table ref. + 'use no memo'; + const serializedInterviews = use(interviewsPromise); + const interviews = useMemo( + () => superjson.parse(serializedInterviews), + [serializedInterviews], + ); + + const [selectedInterviews, setSelectedInterviews] = + useState(); + const [showDeleteModal, setShowDeleteModal] = useState(false); + const [showExportModal, setShowExportModal] = useState(false); + + const unexportedInterviews = useMemo( + () => interviews.filter((interview) => !interview.exportTime), + [interviews], + ); + + const completedInterviews = useMemo( + () => interviews.filter((interview) => interview.finishTime), + [interviews], + ); + + const handleDelete = (data: typeof interviews) => { + setSelectedInterviews(data); + setShowDeleteModal(true); + }; + + const handleExportUnexported = () => { + setSelectedInterviews(unexportedInterviews); + setShowExportModal(true); + }; + + const handleExportAll = () => { + setSelectedInterviews(interviews); + setShowExportModal(true); + }; + + const handleExportCompleted = () => { + setSelectedInterviews(completedInterviews); + setShowExportModal(true); + }; + + const handleResetExport = () => { + setSelectedInterviews([]); + setShowExportModal(false); + }; + + const actionsColumn: ColumnDef = { + id: 'actions', + cell: ({ row }: { row: Row }) => ( + + ), + }; + + const columns = useMemo[]>( + () => [...InterviewColumns(), actionsColumn], + // eslint-disable-next-line react-hooks/exhaustive-deps + [], + ); + + const { table } = useClientDataTable({ + data: interviews, + columns, + defaultSortBy: { id: 'lastUpdated', desc: true }, + enableUrlFilters: true, + }); + + return ( + <> + + + + + + } />} + disabled={interviews.length === 0} + nativeButton + data-testid="export-interviews-button" + className="tablet-landscape:w-auto w-full" + > + Export Interview Data + + + + Export all interviews + + + Export all completed interviews + + + Export all unexported interviews + + + + + + + } + floatingBar={ + + + + + } + /> + + ); +}; diff --git a/app/dashboard/_components/InterviewsTable/InterviewsTableServer.tsx b/app/dashboard/_components/InterviewsTable/InterviewsTableServer.tsx new file mode 100644 index 000000000..667ca6d47 --- /dev/null +++ b/app/dashboard/_components/InterviewsTable/InterviewsTableServer.tsx @@ -0,0 +1,27 @@ +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import { getInterviews } from '~/queries/interviews'; +import { getProtocols } from '~/queries/protocols'; +import { InterviewsTable } from './InterviewsTable'; + +export default function InterviewsTableServer() { + const interviewsPromise = getInterviews(); + const protocolsPromise = getProtocols(); + + return ( + + } + > + + + ); +} diff --git a/app/dashboard/_components/InterviewsTable/NetworkSummary.tsx b/app/dashboard/_components/InterviewsTable/NetworkSummary.tsx new file mode 100644 index 000000000..e0fcc53a2 --- /dev/null +++ b/app/dashboard/_components/InterviewsTable/NetworkSummary.tsx @@ -0,0 +1,154 @@ +import Node, { type NodeColorSequence } from '@codaco/fresco-ui/Node'; +import { cx } from '@codaco/fresco-ui/utils/cva'; +import type { GetInterviewsQuery } from '~/queries/interviews'; + +// TODO: Move to shared-consts or protocol-validation +type EdgeColorSequence = + | 'edge-color-seq-1' + | 'edge-color-seq-2' + | 'edge-color-seq-3' + | 'edge-color-seq-4' + | 'edge-color-seq-5' + | 'edge-color-seq-6' + | 'edge-color-seq-7' + | 'edge-color-seq-8' + | 'edge-color-seq-9'; + +type EdgeSummaryProps = { + color: EdgeColorSequence; + count: number; + typeName: string; +}; + +function EdgeSummary({ color, count, typeName }: EdgeSummaryProps) { + /** + * There is a bug in the suggestCanonicalClasses rule: https://github.com/tailwindlabs/tailwindcss-intellisense/issues/1542 + */ + const edgeColorClasses = cx( + color === 'edge-color-seq-1' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-1)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-1)]', + color === 'edge-color-seq-2' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-2)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-2)]', + color === 'edge-color-seq-3' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-3)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-3)]', + color === 'edge-color-seq-4' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-4)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-4)]', + color === 'edge-color-seq-5' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-5)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-5)]', + color === 'edge-color-seq-6' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-6)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-6)]', + color === 'edge-color-seq-7' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-7)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-7)]', + color === 'edge-color-seq-8' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-8)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-8)]', + color === 'edge-color-seq-9' && + // eslint-disable-next-line better-tailwindcss/enforce-canonical-classes + '[--fill-dark:oklch(from_var(--edge-9)_calc(l_-_var(--dark-mod))_c_h)] [--fill:var(--edge-9)]', + ); + + return ( +
+
+ + + + + + + + + + + + +
+ + {typeName} ({count}) + +
+ ); +} + +const NetworkSummary = ({ + network, +}: { + network: GetInterviewsQuery[number]['network']; +}) => { + const nodeSummaries = network.nodes.map( + ({ type: nodeType, count, name, color }) => ( +
+ + {name} +
+ ), + ); + + const edgeSummaries = network.edges + .map(({ type: edgeType, count, name, color }) => { + if (!color) return null; + + return ( + + ); + }) + .filter(Boolean); + + if (nodeSummaries.length === 0 && edgeSummaries.length === 0) { + return
No nodes or edges
; + } + + return ( +
+ {nodeSummaries} + {edgeSummaries} +
+ ); +}; + +export default NetworkSummary; diff --git a/app/dashboard/_components/MobileNavDrawer.tsx b/app/dashboard/_components/MobileNavDrawer.tsx new file mode 100644 index 000000000..9cca0bb9a --- /dev/null +++ b/app/dashboard/_components/MobileNavDrawer.tsx @@ -0,0 +1,138 @@ +'use client'; + +import { Menu, Settings, X } from 'lucide-react'; +import { motion } from 'motion/react'; +import type { Route } from 'next'; +import Link from 'next/link'; +import { usePathname } from 'next/navigation'; +import { useState } from 'react'; +import type { UrlObject } from 'url'; +import { logout } from '~/actions/auth'; +import Modal from '@codaco/fresco-ui/Modal'; +import ModalPopup from '@codaco/fresco-ui/Modal/ModalPopup'; +import SubmitButton from '~/components/SubmitButton'; +import { cx } from '@codaco/fresco-ui/utils/cva'; + +type NavItem = { + label: string; + href: UrlObject | Route; + icon?: React.ReactNode; +}; + +const navItems: NavItem[] = [ + { label: 'Dashboard', href: '/dashboard' }, + { label: 'Protocols', href: '/dashboard/protocols' }, + { label: 'Participants', href: '/dashboard/participants' }, + { label: 'Interviews', href: '/dashboard/interviews' }, +]; + +const MobileNavLink = ({ + item, + isActive, + onClick, +}: { + item: NavItem; + isActive: boolean; + onClick: () => void; +}) => { + return ( + + {item.icon} + {item.label} + + ); +}; + +export function MobileNavDrawer() { + const [open, setOpen] = useState(false); + const pathname = usePathname(); + + const handleClose = () => setOpen(false); + + return ( + <> + + + + + + + + + ); +} diff --git a/app/dashboard/_components/NavigationBar.tsx b/app/dashboard/_components/NavigationBar.tsx new file mode 100644 index 000000000..c0c87722b --- /dev/null +++ b/app/dashboard/_components/NavigationBar.tsx @@ -0,0 +1,147 @@ +'use client'; + +import { Settings } from 'lucide-react'; +import { motion, useReducedMotion, type Variants } from 'motion/react'; +import type { Route } from 'next'; +import Link from 'next/link'; +import { usePathname } from 'next/navigation'; +import type { UrlObject } from 'url'; +import { MotionSurface } from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Spinner from '@codaco/fresco-ui/Spinner'; +import { cx } from '@codaco/fresco-ui/utils/cva'; +import { MobileNavDrawer } from './MobileNavDrawer'; +import UserMenu from './UserMenu'; + +const containerVariants: Variants = { + hidden: { + y: '-150%', + }, + visible: { + y: 0, + transition: { + type: 'spring', + delayChildren: 0.5, + staggerChildren: 0.1, + }, + }, +}; + +const itemVariants: Variants = { + hidden: { opacity: 0, y: '-100%' }, + visible: { + opacity: 1, + y: 0, + transition: { + type: 'spring', + }, + }, +}; + +const NavButton = ({ + label, + href, + isActive = false, +}: { + label: string | React.ReactNode; + href: UrlObject | Route; + isActive?: boolean; +}) => { + return ( + + + {isActive && ( + + )} + {label} + + + ); +}; + +export function NavigationBar() { + const pathname = usePathname(); + const shouldReduceMotion = useReducedMotion(); + + return ( +
+ + + + + Fresco + + +
    + + + + +
+
+ + + Settings +
+ } + href="/dashboard/settings" + isActive={pathname === '/dashboard/settings'} + /> + + + + +
+ +
+ +
+ + + ); +} diff --git a/app/dashboard/_components/ParticipantsTable/ActionsDropdown.tsx b/app/dashboard/_components/ParticipantsTable/ActionsDropdown.tsx new file mode 100644 index 000000000..aa4ad8021 --- /dev/null +++ b/app/dashboard/_components/ParticipantsTable/ActionsDropdown.tsx @@ -0,0 +1,55 @@ +import type { Row } from '@tanstack/react-table'; +import { DeleteIcon, MoreHorizontal, PencilIcon } from 'lucide-react'; +import { IconButton } from '@codaco/fresco-ui/Button'; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuGroup, + DropdownMenuItem, + DropdownMenuLabel, + DropdownMenuTrigger, +} from '@codaco/fresco-ui/DropdownMenu'; +import type { ParticipantWithInterviews } from './ParticipantsTableClient'; + +export function ActionsDropdown({ + row, + onEdit, + onDelete, +}: { + row: Row; + onEdit: (participant: ParticipantWithInterviews) => void; + onDelete: (participant: ParticipantWithInterviews) => void; +}) { + return ( + + } + size="sm" + /> + } + nativeButton + /> + + + Actions + onEdit(row.original)} + icon={} + > + Edit + + onDelete(row.original)} + icon={} + > + Delete + + + + + ); +} diff --git a/app/dashboard/_components/ParticipantsTable/Columns.tsx b/app/dashboard/_components/ParticipantsTable/Columns.tsx new file mode 100644 index 000000000..fe3930103 --- /dev/null +++ b/app/dashboard/_components/ParticipantsTable/Columns.tsx @@ -0,0 +1,107 @@ +import { type StrictColumnDef } from '@codaco/fresco-ui/DataTable/types'; +import Image from 'next/image'; +import Checkbox from '@codaco/fresco-ui/form/fields/Checkbox'; +import { DataTableColumnHeader } from '@codaco/fresco-ui/DataTable/ColumnHeader'; +import { SelectAllHeader } from '@codaco/fresco-ui/DataTable/SelectAllHeader'; +import { Badge } from '@codaco/fresco-ui/Badge'; +import type { ProtocolWithInterviews } from '../ProtocolsTable/ProtocolsTableClient'; +import { GenerateParticipationURLButton } from './GenerateParticipantURLButton'; +import type { ParticipantWithInterviews } from './ParticipantsTableClient'; + +export function getParticipantColumns( + protocols: ProtocolWithInterviews[], +): StrictColumnDef[] { + return [ + { + id: 'select', + header: ({ table }) => , + cell: ({ row }) => ( + row.toggleSelected(!!value)} + aria-label="Select row" + /> + ), + enableSorting: false, + enableHiding: false, + }, + { + id: 'identifier', + accessorKey: 'identifier', + sortingFn: 'text', + header: ({ column }) => { + return ; + }, + cell: ({ row }) => { + return ( +
+ Protocol icon + + + {row.original.identifier} + + +
+ ); + }, + }, + { + accessorKey: 'label', + sortingFn: 'text', + header: ({ column }) => { + return ; + }, + cell: ({ row }) => { + return {row.original.label}; + }, + }, + { + id: 'interviews', + accessorFn: (row) => row._count.interviews, + sortingFn: 'basic', + header: ({ column }) => { + return ; + }, + cell: ({ row }) => { + const completedInterviews = row.original.interviews.filter( + (interview) => interview.finishTime, + ).length; + return ( + + {row.original._count.interviews ?? ''} ({completedInterviews}{' '} + completed) + + ); + }, + }, + { + id: 'participant-url', + enableSorting: false, + header: ({ column }) => { + return ( + + ); + }, + cell: ({ row }) => { + return ( + + ); + }, + }, + ]; +} diff --git a/app/dashboard/_components/ParticipantsTable/GenerateParticipantURLButton.tsx b/app/dashboard/_components/ParticipantsTable/GenerateParticipantURLButton.tsx new file mode 100644 index 000000000..4753e3dd9 --- /dev/null +++ b/app/dashboard/_components/ParticipantsTable/GenerateParticipantURLButton.tsx @@ -0,0 +1,88 @@ +'use client'; + +import { Copy } from 'lucide-react'; +import { memo, useState } from 'react'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import { + Popover, + PopoverContent, + PopoverTrigger, +} from '@codaco/fresco-ui/Popover'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import type { Participant, Protocol } from '~/lib/db/generated/client'; +import SelectField from '@codaco/fresco-ui/form/fields/Select/Native'; +import type { ProtocolWithInterviews } from '../ProtocolsTable/ProtocolsTableClient'; + +export const GenerateParticipationURLButton = memo( + function GenerateParticipationURLButton({ + participant, + protocols, + }: { + participant: Participant; + protocols: ProtocolWithInterviews[]; + }) { + const [open, setOpen] = useState(false); + const [selectedProtocol, setSelectedProtocol] = + useState | null>(); + + const { promise } = useToast(); + + const handleCopy = (url: string) => { + if (url) { + void promise(navigator.clipboard.writeText(url), { + loading: 'Copying URL to clipboard...', + success: 'URL copied to clipboard!', + error: 'Failed to copy URL to clipboard.', + }); + } + }; + + if (!open) { + return ( + + ); + } + + return ( + setOpen(nextOpen)}> + } />} + > + Copy Unique URL + + + + Select a protocol, and the URL will be copied to your clipboard. + + ({ value: p.id, label: p.name }))} + onChange={(value) => { + const protocol = protocols.find( + (protocol) => protocol.id === value, + ) as Protocol; + + setSelectedProtocol(protocol); + handleCopy( + `${window.location.origin}/onboard/${protocol?.id}/?participantIdentifier=${participant.identifier}`, + ); + + setSelectedProtocol(null); + }} + value={selectedProtocol?.id} + placeholder="Select a Protocol..." + /> + + + ); + }, +); diff --git a/app/dashboard/_components/ParticipantsTable/ParticipantsTable.tsx b/app/dashboard/_components/ParticipantsTable/ParticipantsTable.tsx new file mode 100644 index 000000000..b0ee6b8ff --- /dev/null +++ b/app/dashboard/_components/ParticipantsTable/ParticipantsTable.tsx @@ -0,0 +1,27 @@ +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import { getParticipants } from '~/queries/participants'; +import { getProtocols } from '~/queries/protocols'; +import { ParticipantsTableClient } from './ParticipantsTableClient'; + +export default function ParticipantsTable() { + const participantsPromise = getParticipants(); + const protocolsPromise = getProtocols(); + + return ( + + } + > + + + ); +} diff --git a/app/dashboard/_components/ParticipantsTable/ParticipantsTableClient.tsx b/app/dashboard/_components/ParticipantsTable/ParticipantsTableClient.tsx new file mode 100644 index 000000000..666b1ec85 --- /dev/null +++ b/app/dashboard/_components/ParticipantsTable/ParticipantsTableClient.tsx @@ -0,0 +1,200 @@ +'use client'; + +import { type ColumnDef, type Row } from '@tanstack/react-table'; +import { FileUp, Trash } from 'lucide-react'; +import { use, useCallback, useMemo, useRef, useState } from 'react'; +import SuperJSON from 'superjson'; +import { deleteParticipants } from '~/actions/participants'; +import { ActionsDropdown } from '~/app/dashboard/_components/ParticipantsTable/ActionsDropdown'; +import { getParticipantColumns } from '~/app/dashboard/_components/ParticipantsTable/Columns'; +import AddParticipantButton from '~/app/dashboard/participants/_components/AddParticipantButton'; +import { DeleteParticipantsDialog } from '~/app/dashboard/participants/_components/DeleteParticipantsDialog'; +import ExportParticipants, { + useExportParticipants, +} from '~/app/dashboard/participants/_components/ExportParticipants/ExportParticipants'; +import ImportParticipants from '~/app/dashboard/participants/_components/ImportParticipants'; +import ParticipantModal from '~/app/dashboard/participants/_components/ParticipantModal'; +import { DataTable } from '@codaco/fresco-ui/DataTable/DataTable'; +import { DataTableFloatingBar } from '@codaco/fresco-ui/DataTable/DataTableFloatingBar'; +import { DataTableToolbar } from '@codaco/fresco-ui/DataTable/DataTableToolbar'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useClientDataTable } from '~/hooks/useClientDataTable'; +import type { Participant } from '~/lib/db/generated/client'; +import type { + GetParticipantsQuery, + GetParticipantsReturnType, +} from '~/queries/participants'; +import type { + GetProtocolsQuery, + GetProtocolsReturnType, +} from '~/queries/protocols'; + +export type ParticipantWithInterviews = GetParticipantsQuery[number]; + +// Memoize SuperJSON.parse results to maintain stable references across +// re-renders. Without this, every table state change (sort, filter, select) +// causes column definitions to be recreated, forcing TanStack Table to +// rebuild its entire row model and re-render all cells. +function useStableParse(raw: string): T { + const ref = useRef<{ raw: string; parsed: T } | null>(null); + if (ref.current?.raw !== raw) { + ref.current = { raw, parsed: SuperJSON.parse(raw) }; + } + return ref.current.parsed; +} + +export const ParticipantsTableClient = ({ + participantsPromise, + protocolsPromise, +}: { + participantsPromise: GetParticipantsReturnType; + protocolsPromise: GetProtocolsReturnType; +}) => { + // TanStack Table: consumers must also opt out so React Compiler doesn't memoize JSX that depends on the table ref. + 'use no memo'; + const rawParticipants = use(participantsPromise); + const rawProtocols = use(protocolsPromise); + const participants = useStableParse(rawParticipants); + const protocols = useStableParse(rawProtocols); + + const [participantsToDelete, setParticipantsToDelete] = useState< + ParticipantWithInterviews[] | null + >(null); + const [showDeleteModal, setShowDeleteModal] = useState(false); + + const [editingParticipant, setEditingParticipant] = + useState(null); + const [showEditModal, setShowEditModal] = useState(false); + + const doDelete = async () => { + if (!participantsToDelete) { + return; + } + + await deleteParticipants(participantsToDelete.map((p) => p.id)); + resetDelete(); + }; + + const resetDelete = () => { + setShowDeleteModal(false); + setParticipantsToDelete(null); + }; + + const handleDeleteItems = useCallback( + (items: ParticipantWithInterviews[]) => { + setParticipantsToDelete(items); + setShowDeleteModal(true); + }, + [], + ); + + const handleEditParticipant = useCallback( + (participant: ParticipantWithInterviews) => { + setEditingParticipant(participant); + setShowEditModal(true); + }, + [], + ); + + const handleDeleteSingle = useCallback( + (participant: ParticipantWithInterviews) => { + handleDeleteItems([participant]); + }, + [handleDeleteItems], + ); + + const columns = useMemo[]>( + () => [ + ...getParticipantColumns(protocols), + { + id: 'actions', + cell: ({ row }: { row: Row }) => ( + + ), + }, + ], + [protocols, handleEditParticipant, handleDeleteSingle], + ); + + const exportParticipants = useExportParticipants(protocols); + + const { table } = useClientDataTable({ + data: participants, + columns, + }); + + return ( + <> + participant._count.interviews > 0, + ) + } + haveUnexportedInterviews={ + !!participantsToDelete?.some((participant) => + participant.interviews.some((interview) => !interview.exportTime), + ) + } + onConfirm={doDelete} + onCancel={resetDelete} + /> + + +
+ + + +
+ + } + floatingBar={ + + + + + } + /> + + ); +}; diff --git a/app/dashboard/_components/ProtocolUploader.tsx b/app/dashboard/_components/ProtocolUploader.tsx new file mode 100644 index 000000000..a5ec37a6e --- /dev/null +++ b/app/dashboard/_components/ProtocolUploader.tsx @@ -0,0 +1,29 @@ +'use client'; + +import ProtocolImportPopover from '~/components/ProtocolImport/ProtocolImportPopover'; +import { type ButtonProps } from '@codaco/fresco-ui/Button'; +import { useProtocolImport } from '~/hooks/useProtocolImport'; + +export default function ProtocolUploader({ + className, + buttonVariant, + buttonSize, + buttonDisabled, +}: { + className?: string; + buttonVariant?: ButtonProps['variant']; + buttonSize?: ButtonProps['size']; + buttonDisabled?: boolean; +}) { + const { importProtocols } = useProtocolImport(); + + return ( + + ); +} diff --git a/app/dashboard/_components/ProtocolsTable/ActionsDropdown.tsx b/app/dashboard/_components/ProtocolsTable/ActionsDropdown.tsx new file mode 100644 index 000000000..2d281ae03 --- /dev/null +++ b/app/dashboard/_components/ProtocolsTable/ActionsDropdown.tsx @@ -0,0 +1,97 @@ +'use client'; + +import type { Row } from '@tanstack/react-table'; +import { Download, MoreHorizontal, Trash2 } from 'lucide-react'; +import { useState } from 'react'; +import { DeleteProtocolsDialog } from '~/app/dashboard/protocols/_components/DeleteProtocolsDialog'; +import { IconButton } from '@codaco/fresco-ui/Button'; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuGroup, + DropdownMenuItem, + DropdownMenuLabel, + DropdownMenuTrigger, +} from '@codaco/fresco-ui/DropdownMenu'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import { useDownload } from '~/hooks/useDownload'; +import type { ProtocolWithInterviews } from './ProtocolsTableClient'; + +export const ActionsDropdown = ({ + row, +}: { + row: Row; +}) => { + const [showDeleteModal, setShowDeleteModal] = useState(false); + const [protocolToDelete, setProtocolToDelete] = + useState(); + const { promise } = useToast(); + const download = useDownload(); + + const handleDelete = (data: ProtocolWithInterviews) => { + setProtocolToDelete([data]); + setShowDeleteModal(true); + }; + + const handleDownload = async () => { + const { originalFileUrl, name } = row.original; + if (!originalFileUrl) return; + + const response = await fetch(originalFileUrl); + if (!response.ok) { + throw new Error('Failed to download protocol file'); + } + const blob = await response.blob(); + const blobUrl = URL.createObjectURL(blob); + download(blobUrl, name); + URL.revokeObjectURL(blobUrl); + }; + + return ( + <> + + + } + size="sm" + /> + } + nativeButton + /> + + + Actions + {row.original.originalFileUrl && ( + + void promise(handleDownload(), { + loading: 'Downloading protocol...', + success: 'Protocol downloaded!', + error: 'Failed to download protocol.', + }) + } + icon={} + > + Download + + )} + handleDelete(row.original)} + icon={} + > + Delete + + + + + + ); +}; diff --git a/app/dashboard/_components/ProtocolsTable/AnonymousRecruitmentURLButton.tsx b/app/dashboard/_components/ProtocolsTable/AnonymousRecruitmentURLButton.tsx new file mode 100644 index 000000000..0f32a9578 --- /dev/null +++ b/app/dashboard/_components/ProtocolsTable/AnonymousRecruitmentURLButton.tsx @@ -0,0 +1,40 @@ +'use client'; + +import { Copy } from 'lucide-react'; +import { useEffect, useState } from 'react'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useToast } from '@codaco/fresco-ui/Toast'; + +export const AnonymousRecruitmentURLButton = ({ + protocolId, +}: { + protocolId: string; +}) => { + const { promise } = useToast(); + const [url, setUrl] = useState(null); + + useEffect(() => { + if (typeof window !== 'undefined') { + setUrl(`${window.location.origin}/onboard/${protocolId}`); + } + }, [protocolId]); + + const handleCopyClick = () => { + if (!url) { + return; + } + + void promise(navigator.clipboard.writeText(url), { + loading: 'Copying URL to clipboard...', + success: 'URL copied to clipboard!', + error: 'Failed to copy URL to clipboard.', + }); + }; + + return ( + + ); +}; diff --git a/app/dashboard/_components/ProtocolsTable/Columns.tsx b/app/dashboard/_components/ProtocolsTable/Columns.tsx new file mode 100644 index 000000000..0ca0478c6 --- /dev/null +++ b/app/dashboard/_components/ProtocolsTable/Columns.tsx @@ -0,0 +1,92 @@ +'use client'; + +import { type StrictColumnDef } from '@codaco/fresco-ui/DataTable/types'; +import Image from 'next/image'; +import Checkbox from '@codaco/fresco-ui/form/fields/Checkbox'; +import { DataTableColumnHeader } from '@codaco/fresco-ui/DataTable/ColumnHeader'; +import TimeAgo from '@codaco/fresco-ui/TimeAgo'; +import { AnonymousRecruitmentURLButton } from './AnonymousRecruitmentURLButton'; +import type { ProtocolWithInterviews } from './ProtocolsTableClient'; + +export const getProtocolColumns = ( + allowAnonRecruitment = false, +): StrictColumnDef[] => { + const columns: StrictColumnDef[] = [ + { + id: 'select', + header: ({ table }) => ( + table.toggleAllPageRowsSelected(!!value)} + aria-label="Select all" + /> + ), + cell: ({ row }) => ( + row.toggleSelected(!!value)} + aria-label="Select row" + /> + ), + enableSorting: false, + enableHiding: false, + }, + { + accessorKey: 'name', + sortingFn: 'text', + header: ({ column }) => { + return ; + }, + cell: ({ row }) => { + return ( +
+ Protocol icon + {row.original.name} +
+ ); + }, + }, + { + accessorKey: 'importedAt', + sortingFn: 'datetime', + header: ({ column }) => { + return ; + }, + cell: ({ row }) => , + }, + { + accessorKey: 'lastModified', + sortingFn: 'datetime', + header: ({ column }) => { + return ; + }, + cell: ({ row }) => , + }, + ]; + + if (allowAnonRecruitment) { + columns.push({ + id: 'participant-url', + enableSorting: false, + header: ({ column }) => { + return ( + + ); + }, + cell: ({ row }) => { + return ; + }, + }); + } + + return columns; +}; diff --git a/app/dashboard/_components/ProtocolsTable/ProtocolsTable.tsx b/app/dashboard/_components/ProtocolsTable/ProtocolsTable.tsx new file mode 100644 index 000000000..317456eb9 --- /dev/null +++ b/app/dashboard/_components/ProtocolsTable/ProtocolsTable.tsx @@ -0,0 +1,39 @@ +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import { getAppSetting } from '~/queries/appSettings'; +import { getProtocols } from '~/queries/protocols'; +import ProtocolsTableClient from './ProtocolsTableClient'; + +async function getData() { + const [ + protocols, + allowAnonymousRecruitment, + storageProvider, + uploadThingToken, + ] = await Promise.all([ + getProtocols(), + getAppSetting('allowAnonymousRecruitment'), + getAppSetting('storageProvider'), + getAppSetting('uploadThingToken'), + ]); + const storageConfigured = storageProvider === 's3' || !!uploadThingToken; + return [protocols, allowAnonymousRecruitment, storageConfigured] as const; +} + +export type GetData = ReturnType; + +export default function ProtocolsTable() { + return ( + + } + > + + + ); +} diff --git a/app/dashboard/_components/ProtocolsTable/ProtocolsTableClient.tsx b/app/dashboard/_components/ProtocolsTable/ProtocolsTableClient.tsx new file mode 100644 index 000000000..c036720a8 --- /dev/null +++ b/app/dashboard/_components/ProtocolsTable/ProtocolsTableClient.tsx @@ -0,0 +1,96 @@ +'use client'; + +import { type ColumnDef, type Row } from '@tanstack/react-table'; +import { Trash } from 'lucide-react'; +import { use, useMemo, useState } from 'react'; +import { SuperJSON } from 'superjson'; +import { DataTable } from '@codaco/fresco-ui/DataTable/DataTable'; +import { DataTableFloatingBar } from '@codaco/fresco-ui/DataTable/DataTableFloatingBar'; +import { DataTableToolbar } from '@codaco/fresco-ui/DataTable/DataTableToolbar'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useClientDataTable } from '~/hooks/useClientDataTable'; +import type { GetProtocolsQuery } from '~/queries/protocols'; +import { DeleteProtocolsDialog } from '../../protocols/_components/DeleteProtocolsDialog'; +import ProtocolUploader from '../ProtocolUploader'; +import { ActionsDropdown } from './ActionsDropdown'; +import { getProtocolColumns } from './Columns'; +import { type GetData } from './ProtocolsTable'; + +export type ProtocolWithInterviews = GetProtocolsQuery[number]; + +const ProtocolsTableClient = ({ dataPromise }: { dataPromise: GetData }) => { + // TanStack Table: consumers must also opt out so React Compiler doesn't memoize JSX that depends on the table ref. + 'use no memo'; + const [rawProtocols, allowAnonymousRecruitment, storageConfigured] = + use(dataPromise); + const protocols = useMemo( + () => SuperJSON.parse(rawProtocols), + [rawProtocols], + ); + + const [showAlertDialog, setShowAlertDialog] = useState(false); + const [protocolsToDelete, setProtocolsToDelete] = + useState(); + + const handleDelete = (data: ProtocolWithInterviews[]) => { + setProtocolsToDelete(data); + setShowAlertDialog(true); + }; + + const actionsColumn: ColumnDef = { + id: 'actions', + cell: ({ row }: { row: Row }) => ( + + ), + }; + + const columns = useMemo[]>( + () => [...getProtocolColumns(allowAnonymousRecruitment), actionsColumn], + // eslint-disable-next-line react-hooks/exhaustive-deps + [allowAnonymousRecruitment], + ); + + const { table } = useClientDataTable({ + data: protocols, + columns, + defaultSortBy: { id: 'importedAt', desc: true }, + }); + + return ( + <> + + + + } + floatingBar={ + + + + } + /> + + + ); +}; + +export default ProtocolsTableClient; diff --git a/app/dashboard/_components/RecruitmentTestSection.tsx b/app/dashboard/_components/RecruitmentTestSection.tsx new file mode 100644 index 000000000..2d4ac6b06 --- /dev/null +++ b/app/dashboard/_components/RecruitmentTestSection.tsx @@ -0,0 +1,118 @@ +'use client'; +import { type Route } from 'next'; +import { useRouter } from 'next/navigation'; +import { use, useEffect, useState } from 'react'; +import { SuperJSON } from 'superjson'; +import { Button } from '@codaco/fresco-ui/Button'; +import type { Participant, Protocol } from '~/lib/db/generated/client'; +import SelectField from '@codaco/fresco-ui/form/fields/Select/Styled'; +import { + type GetParticipantsQuery, + type GetParticipantsReturnType, +} from '~/queries/participants'; +import { + type GetProtocolsQuery, + type GetProtocolsReturnType, +} from '~/queries/protocols'; + +export default function RecruitmentTestSection({ + protocolsPromise, + participantsPromise, + allowAnonymousRecruitmentPromise, +}: { + protocolsPromise: GetProtocolsReturnType; + participantsPromise: GetParticipantsReturnType; + allowAnonymousRecruitmentPromise: Promise; +}) { + const rawProtocols = use(protocolsPromise); + const protocols = SuperJSON.parse(rawProtocols); + const rawParticipants = use(participantsPromise); + const participants = SuperJSON.parse(rawParticipants); + const allowAnonymousRecruitment = use(allowAnonymousRecruitmentPromise); + + const [selectedProtocol, setSelectedProtocol] = useState>(); + const [selectedParticipant, setSelectedParticipant] = useState(); + + const router = useRouter(); + + useEffect(() => { + if (allowAnonymousRecruitment) { + setSelectedParticipant(undefined); + } + }, [allowAnonymousRecruitment]); + + const buttonDisabled = + !selectedProtocol || (!allowAnonymousRecruitment && !selectedParticipant); + + const getInterviewURL = (): Route => { + if (!selectedParticipant) { + return `/onboard/${selectedProtocol?.id}` as Route; + } + + return `/onboard/${selectedProtocol?.id}/?participantIdentifier=${selectedParticipant?.identifier}` as Route; + }; + + return ( + <> +
+ ({ value: p.id, label: p.name }))} + onChange={(value) => { + const protocol = protocols.find( + (protocol) => protocol.id === value, + ) as Protocol; + + setSelectedProtocol(protocol); + }} + value={selectedProtocol?.id} + placeholder="Select a Protocol..." + /> + ({ + value: p.id, + label: p.identifier, + }))} + onChange={(value) => { + const participant = participants?.find( + (participant) => participant.id === value, + ); + + setSelectedParticipant(participant); + }} + value={selectedParticipant?.id} + placeholder="Select a Participant..." + /> +
+
+ + +
+ + ); +} diff --git a/app/dashboard/_components/RecruitmentTestSectionServer.tsx b/app/dashboard/_components/RecruitmentTestSectionServer.tsx new file mode 100644 index 000000000..99171cc85 --- /dev/null +++ b/app/dashboard/_components/RecruitmentTestSectionServer.tsx @@ -0,0 +1,29 @@ +import { Suspense } from 'react'; +import SettingsField from '~/components/settings/SettingsField'; +import { getAppSetting } from '~/queries/appSettings'; +import { getParticipants } from '~/queries/participants'; +import { getProtocols } from '~/queries/protocols'; +import RecruitmentTestSection from './RecruitmentTestSection'; + +export default function RecruitmentTestSectionServer() { + const protocolsPromise = getProtocols(); + const participantsPromise = getParticipants(); + const allowAnonymousRecruitmentPromise = getAppSetting( + 'allowAnonymousRecruitment', + ); + + return ( + + + + + + ); +} diff --git a/app/dashboard/_components/ResetButton.tsx b/app/dashboard/_components/ResetButton.tsx new file mode 100644 index 000000000..56e01eafd --- /dev/null +++ b/app/dashboard/_components/ResetButton.tsx @@ -0,0 +1,53 @@ +'use client'; + +import { Loader2 } from 'lucide-react'; +import { useState } from 'react'; +import { resetAppSettings } from '~/actions/reset'; +import { Button } from '@codaco/fresco-ui/Button'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; + +const ResetButton = () => { + const [showConfirmDialog, setShowConfirmDialog] = useState(false); + const [isResetting, setIsResetting] = useState(false); + + return ( + <> + + setShowConfirmDialog(false)} + title="Are you sure?" + description="This action will delete ALL application data, including interviews and protocols. This action cannot be undone. Do you want to continue?" + footer={ + <> + + + + } + > + + ); +}; + +export default ResetButton; diff --git a/app/dashboard/_components/SummaryStatistics/Icons.tsx b/app/dashboard/_components/SummaryStatistics/Icons.tsx new file mode 100644 index 000000000..5d67b1d7a --- /dev/null +++ b/app/dashboard/_components/SummaryStatistics/Icons.tsx @@ -0,0 +1,30 @@ +export const ProtocolIcon = () => ( +
+
+
+
+
+
+
+
+
+); + +export const InterviewIcon = () => ( +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+); diff --git a/app/dashboard/_components/SummaryStatistics/StatCard.tsx b/app/dashboard/_components/SummaryStatistics/StatCard.tsx new file mode 100644 index 000000000..ca9665a02 --- /dev/null +++ b/app/dashboard/_components/SummaryStatistics/StatCard.tsx @@ -0,0 +1,67 @@ +import { use } from 'react'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import { Skeleton } from '@codaco/fresco-ui/Skeleton'; +import { cx } from '@codaco/fresco-ui/utils/cva'; + +const statCardClasses = cx( + 'flex flex-col gap-4 border transition-all', + '@3xs:flex-row @3xs:items-center @lg:gap-6', + 'hover:elevation-medium hover:scale-[102%]', + 'w-full rounded outline-none', + 'tablet-landscape:px-6 tablet-landscape:py-8 px-4 py-6', +); +function StatCard({ + title, + dataPromise, + render, + icon, +}: { + title: string; + dataPromise: Promise>; + render: string; + icon: React.ReactNode; +}) { + const data = use(dataPromise); + + return ( + +
{icon}
+
+ + {title} + + + {data[render]} + +
+
+ ); +} + +export function StatCardSkeleton({ + title, + icon, +}: { + title: string; + icon: React.ReactNode; +}) { + return ( + +
{icon}
+
+ + {title} + + +
+
+ ); +} + +export default StatCard; diff --git a/app/dashboard/_components/SummaryStatistics/SummaryStatistics.tsx b/app/dashboard/_components/SummaryStatistics/SummaryStatistics.tsx new file mode 100644 index 000000000..3e4aa28c8 --- /dev/null +++ b/app/dashboard/_components/SummaryStatistics/SummaryStatistics.tsx @@ -0,0 +1,96 @@ +import Image from 'next/image'; +import Link from 'next/link'; +import { Suspense } from 'react'; +import ResponsiveContainer from '@codaco/fresco-ui/layout/ResponsiveContainer'; +import { type getSummaryStatistics } from '~/queries/summaryStatistics'; +import { InterviewIcon, ProtocolIcon } from './Icons'; +import StatCard, { StatCardSkeleton } from './StatCard'; + +type SummaryStatisticsProps = { + dataPromise: ReturnType; +}; + +export default function SummaryStatistics({ + dataPromise, +}: SummaryStatisticsProps) { + return ( + + + } /> + } + > + } + /> + + + + + } + /> + } + > + + } + /> + + + + } /> + } + > + } + /> + + + + ); +} diff --git a/app/dashboard/_components/UpdateSettingsValue.tsx b/app/dashboard/_components/UpdateSettingsValue.tsx new file mode 100644 index 000000000..0853b01e5 --- /dev/null +++ b/app/dashboard/_components/UpdateSettingsValue.tsx @@ -0,0 +1,80 @@ +import { Loader2 } from 'lucide-react'; +import { type ReactNode, useState } from 'react'; +import type { z } from 'zod/mini'; +import { setAppSetting } from '~/actions/appSettings'; +import { Button } from '@codaco/fresco-ui/Button'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import { type AppSetting } from '~/schemas/appSettings'; +import ReadOnlyEnvAlert from '../settings/ReadOnlyEnvAlert'; + +export default function UpdateSettingsValue({ + settingsKey, + initialValue, + readOnly, + schema, + suffixComponent, +}: { + settingsKey: AppSetting; + initialValue?: string; + readOnly?: boolean; + schema: z.ZodMiniType; + suffixComponent?: ReactNode; +}) { + const [newValue, setNewValue] = useState(initialValue); + const [error, setError] = useState(null); + const [isSaving, setSaving] = useState(false); + + // If settingsKey is empty or invalid, set the error state + const handleChange = (value: string | undefined) => { + const result = schema.safeParse(value ?? initialValue ?? ''); + + if (!result.success) { + setError( + `Invalid: ${result.error.issues.map((e) => e.message).join(', ')}`, + ); + } else { + setError(null); + } + + setNewValue(result.data); + }; + + const handleReset = () => { + setSaving(false); + setError(null); + setNewValue(initialValue); + }; + + const handleSave = async () => { + if (!newValue) return; + + setSaving(true); + await setAppSetting(settingsKey, newValue); + setSaving(false); + }; + + return ( + <> + {readOnly && } + event.target.select()} + type="text" + className="w-full" + disabled={readOnly ?? isSaving} + suffixComponent={suffixComponent} + /> + {error &&

{error}

} + {newValue !== initialValue && ( +
+ {!isSaving && } + +
+ )} + + ); +} diff --git a/app/dashboard/_components/UpdateUploadThingTokenAlert.tsx b/app/dashboard/_components/UpdateUploadThingTokenAlert.tsx new file mode 100644 index 000000000..04f2e2101 --- /dev/null +++ b/app/dashboard/_components/UpdateUploadThingTokenAlert.tsx @@ -0,0 +1,28 @@ +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import Link from '~/components/Link'; +import { getAppSetting } from '~/queries/appSettings'; + +export default async function UpdateUploadThingTokenAlert() { + const storageProvider = await getAppSetting('storageProvider'); + if (storageProvider === 's3') return null; + + const uploadThingToken = await getAppSetting('uploadThingToken'); + if (uploadThingToken) return null; + + return ( + + Configuration update required + + You need to add a new UploadThing API key before you can upload + protocols. See the{' '} + + upgrade documentation + {' '} + for more information. + + + ); +} diff --git a/app/dashboard/_components/UploadThingModal.tsx b/app/dashboard/_components/UploadThingModal.tsx new file mode 100644 index 000000000..e020b44d2 --- /dev/null +++ b/app/dashboard/_components/UploadThingModal.tsx @@ -0,0 +1,56 @@ +'use client'; + +import Image from 'next/image'; +import { useState } from 'react'; +import { UploadThingTokenForm } from '~/app/(blobs)/(setup)/_components/UploadThingTokenForm'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import Link from '~/components/Link'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; + +function UploadThingModal() { + const [open, setOpen] = useState(true); + return ( + setOpen(false)} + title="Required Environment Variable Update" + description="The Fresco update you installed requires a new UploadThing API + key. Until you add it, you will not be able to upload new protocols. Existing protocols will continue to function." + > + + Updating the key should take a matter of minutes, and can be completed + using the following steps: + +
    +
  1. + Visit the{' '} + + UploadThing dashboard + +
  2. +
  3. Select your project.
  4. +
  5. Select the API Keys tab.
  6. +
  7. + Ensure you have the SDK v7+ tab selected. +
  8. +
  9. + Copy the token by clicking the Copy button (see screenshot below).{' '} + UploadThing API key dashboard +
  10. +
  11. + Paste the token into the field below and click "save and + continue". +
  12. +
+ +
+ ); +} + +export default UploadThingModal; diff --git a/app/dashboard/_components/UserMenu.tsx b/app/dashboard/_components/UserMenu.tsx new file mode 100644 index 000000000..587bc826d --- /dev/null +++ b/app/dashboard/_components/UserMenu.tsx @@ -0,0 +1,14 @@ +import { logout } from '~/actions/auth'; +import SubmitButton from '~/components/SubmitButton'; + +const UserMenu = () => { + return ( +
void logout()}> + + Sign out + +
+ ); +}; + +export default UserMenu; diff --git a/app/dashboard/interviews/_components/DeleteInterviewsDialog.tsx b/app/dashboard/interviews/_components/DeleteInterviewsDialog.tsx new file mode 100644 index 000000000..e06fe1523 --- /dev/null +++ b/app/dashboard/interviews/_components/DeleteInterviewsDialog.tsx @@ -0,0 +1,98 @@ +import { Loader2, Trash2 } from 'lucide-react'; +import { type Dispatch, type SetStateAction, useEffect, useState } from 'react'; +import { deleteInterviews } from '~/actions/interviews'; +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import { Button } from '@codaco/fresco-ui/Button'; +import type { GetInterviewsQuery } from '~/queries/interviews'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; + +type DeleteInterviewsDialog = { + open: boolean; + setOpen: Dispatch>; + interviewsToDelete: GetInterviewsQuery; +}; + +export const DeleteInterviewsDialog = ({ + open, + setOpen, + interviewsToDelete, +}: DeleteInterviewsDialog) => { + const [hasUnexported, setHasUnexported] = useState(false); + const [isDeleting, setIsDeleting] = useState(false); + + useEffect(() => { + setHasUnexported( + interviewsToDelete?.some((interview) => !interview.exportTime), + ); + }, [interviewsToDelete]); + + const handleConfirm = async () => { + await deleteInterviews(interviewsToDelete.map((d) => ({ id: d.id }))); + setHasUnexported(false); + + setOpen(false); + }; + + const handleCancelDialog = () => { + setHasUnexported(false); + setOpen(false); + }; + + return ( + + This action cannot be undone. This will permanently delete{' '} + + {interviewsToDelete.length}{' '} + {interviewsToDelete.length > 1 ? <>interviews. : <>interview.} + + + } + footer={ + <> + + + + } + > + {hasUnexported && ( + + Warning + + {interviewsToDelete.length > 1 ? ( + <> + One or more of the selected interviews + has not yet been exported. + + ) : ( + <> + The selected interview + has not yet been exported. + + )} + + + )} + + ); +}; diff --git a/app/dashboard/interviews/_components/ExportCSVInterviewURLs.tsx b/app/dashboard/interviews/_components/ExportCSVInterviewURLs.tsx new file mode 100644 index 000000000..d14ff6268 --- /dev/null +++ b/app/dashboard/interviews/_components/ExportCSVInterviewURLs.tsx @@ -0,0 +1,77 @@ +'use client'; + +import { Download } from 'lucide-react'; +import { unparse } from 'papaparse'; +import { useState } from 'react'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import { useDownload } from '~/hooks/useDownload'; +import type { GetInterviewsQuery } from '~/queries/interviews'; +import type { ProtocolWithInterviews } from '../../_components/ProtocolsTable/ProtocolsTableClient'; + +function ExportCSVInterviewURLs({ + protocol, + interviews, +}: { + protocol?: ProtocolWithInterviews; + interviews: Awaited; +}) { + const download = useDownload(); + const [isExporting, setIsExporting] = useState(false); + const { add } = useToast(); + + const handleExport = () => { + try { + setIsExporting(true); + if (!protocol?.id) return; + + const csvData = interviews.map((interview) => ({ + identifier: interview.participant.identifier, + interview_url: `${window.location.origin}/interview/${interview.id}`, + })); + + const csv = unparse(csvData, { header: true }); + + // Create a download link + const blob = new Blob([csv], { type: 'text/csv' }); + const url = URL.createObjectURL(blob); + // trigger the download + const protocolNameWithoutExtension = protocol.name.split('.')[0]; + const fileName = `incomplete_interview_urls_${protocolNameWithoutExtension}.csv`; + download(url, fileName); + // Clean up the URL object + URL.revokeObjectURL(url); + add({ + title: 'Success', + description: 'Incomplete interview URLs CSV exported successfully', + variant: 'success', + }); + } catch (error) { + add({ + title: 'Error', + description: + 'An error occurred while exporting incomplete interview URLs', + variant: 'destructive', + }); + throw new Error( + 'An error occurred while exporting incomplete interview URLs', + ); + } + + setIsExporting(false); + }; + + return ( + + ); +} + +export default ExportCSVInterviewURLs; diff --git a/app/dashboard/interviews/_components/ExportInterviewsDialog.tsx b/app/dashboard/interviews/_components/ExportInterviewsDialog.tsx new file mode 100644 index 000000000..0f9c4894b --- /dev/null +++ b/app/dashboard/interviews/_components/ExportInterviewsDialog.tsx @@ -0,0 +1,61 @@ +import { useExportProgress } from '~/components/ExportProgressProvider'; +import { Button } from '@codaco/fresco-ui/Button'; +import useSafeLocalStorage from '@codaco/fresco-ui/hooks/useSafeLocalStorage'; +import type { GetInterviewsQuery } from '~/queries/interviews'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; +import { ExportOptionsSchema } from '@codaco/network-exporters/options'; +import ExportOptionsView from './ExportOptionsView'; + +export const ExportInterviewsDialog = ({ + open, + handleCancel, + interviewsToExport, +}: { + open: boolean; + handleCancel: () => void; + interviewsToExport: GetInterviewsQuery; +}) => { + const { startExport } = useExportProgress(); + + const [exportOptions, setExportOptions] = useSafeLocalStorage( + 'exportOptions', + ExportOptionsSchema, + { + exportCSV: true, + exportGraphML: true, + globalOptions: { + useScreenLayoutCoordinates: true, + screenLayoutHeight: 1080, + screenLayoutWidth: 1920, + }, + }, + ); + + const handleConfirm = () => { + const interviewIds = interviewsToExport.map((interview) => interview.id); + startExport(interviewIds, exportOptions); + handleCancel(); + }; + + return ( + + + + + } + > + + + ); +}; diff --git a/app/dashboard/interviews/_components/ExportOptionsView.tsx b/app/dashboard/interviews/_components/ExportOptionsView.tsx new file mode 100644 index 000000000..8005b39f1 --- /dev/null +++ b/app/dashboard/interviews/_components/ExportOptionsView.tsx @@ -0,0 +1,137 @@ +import { type Dispatch, type SetStateAction } from 'react'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import Switch from '@codaco/fresco-ui/form/fields/ToggleField'; +import type { ExportOptions } from '@codaco/network-exporters/options'; +import { cx } from '@codaco/fresco-ui/utils/cva'; + +const sectionClasses = cx( + 'flex gap-4 p-4', + '[&_div]:basis-[fit-content]', + '[&_div:nth-child(2)]:flex [&_div:nth-child(2)]:items-center [&_div:nth-child(2)]:justify-center [&_div:nth-child(2)]:p-4', +); + +const ExportOptionsView = ({ + exportOptions, + setExportOptions, +}: { + exportOptions: ExportOptions; + setExportOptions: Dispatch>; +}) => { + const handleGraphMLSwitch = (value: boolean) => { + // When turning off, if the other format is off, enable it + if (exportOptions.exportGraphML && !exportOptions.exportCSV) { + setExportOptions((prevState) => { + const updatedOptions = { + ...prevState, + exportCSV: !exportOptions.exportCSV, + }; + return updatedOptions; + }); + } + setExportOptions((prevState) => { + const updatedOptions = { + ...prevState, + exportGraphML: value, + }; + return updatedOptions; + }); + }; + + const handleCSVSwitch = (value: boolean) => { + // When turning off, if the other format is off, enable it + if (exportOptions.exportCSV && !exportOptions.exportGraphML) { + setExportOptions((prevState) => { + const updatedOptions = { + ...prevState, + exportGraphML: !exportOptions.exportGraphML, + }; + return updatedOptions; + }); + } + setExportOptions((prevState) => { + const updatedOptions = { + ...prevState, + exportCSV: value, + }; + return updatedOptions; + }); + }; + + const handleScreenLayoutCoordinatesSwitch = (value: boolean) => + setExportOptions((prevState) => { + const updatedOptions = { + ...prevState, + globalOptions: { + ...prevState.globalOptions, + useScreenLayoutCoordinates: value, + }, + }; + return updatedOptions; + }); + + return ( +
+
+
+ + Export GraphML Files + + + GraphML is the main file format used by the Network Canvas software. + GraphML files can be used to manually import your data into Server, + and can be opened by many other pieces of network analysis software. + +
+
+ handleGraphMLSwitch(v ?? false)} + /> +
+
+
+
+ + Export CSV Files + + + CSV is a widely used format for storing network data, but this wider + compatibility comes at the expense of robustness. If you enable this + format, your networks will be exported as an{' '} + attribute list file for each node type, an{' '} + edge list file for each edge type, and an{' '} + ego attribute file that also contains session data. + +
+
+ handleCSVSwitch(v ?? false)} + /> +
+
+
+
+ + Use Screen Layout Coordinates + + + By default Interviewer exports sociogram node coordinates as + normalized X/Y values (a number between 0 and 1 for each axis, with + the origin in the top left). Enabling this option will store + coordinates as screen space pixel values, with the same origin. + +
+
+ handleScreenLayoutCoordinatesSwitch(v ?? false)} + /> +
+
+
+ ); +}; + +export default ExportOptionsView; diff --git a/app/dashboard/interviews/_components/GenerateInterviewURLs.tsx b/app/dashboard/interviews/_components/GenerateInterviewURLs.tsx new file mode 100644 index 000000000..751fea664 --- /dev/null +++ b/app/dashboard/interviews/_components/GenerateInterviewURLs.tsx @@ -0,0 +1,100 @@ +'use client'; + +import { FileUp } from 'lucide-react'; +import { use, useEffect, useState } from 'react'; +import superjson from 'superjson'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import { + Popover, + PopoverContent, + PopoverTrigger, +} from '@codaco/fresco-ui/Popover'; +import { Skeleton } from '@codaco/fresco-ui/Skeleton'; +import SelectField from '@codaco/fresco-ui/form/fields/Select/Native'; +import type { GetInterviewsQuery } from '~/queries/interviews'; +import type { + GetProtocolsQuery, + GetProtocolsReturnType, +} from '~/queries/protocols'; +import ExportCSVInterviewURLs from './ExportCSVInterviewURLs'; + +export const GenerateInterviewURLs = ({ + interviews, + protocolsPromise, + className, +}: { + interviews: Awaited; + protocolsPromise: GetProtocolsReturnType; + className?: string; +}) => { + const rawProtocols = use(protocolsPromise); + const protocols = superjson.parse(rawProtocols); + + const [interviewsToExport, setInterviewsToExport] = useState< + typeof interviews + >([]); + + const [selectedProtocol, setSelectedProtocol] = + useState<(typeof protocols)[number]>(); + + useEffect(() => { + if (interviews) { + setInterviewsToExport( + interviews.filter( + (interview) => + !interview.finishTime && + selectedProtocol?.id === interview.protocolId, + ), + ); + } + }, [interviews, selectedProtocol]); + + return ( + + } + className={className} + data-testid="export-incomplete-urls-button" + /> + } + > + Export Incomplete Interview URLs + + + + Generate a CSV that contains unique interview URLs for all incomplete + interviews by protocol. + + + {!protocols ? ( + + ) : ( + ({ value: p.id, label: p.name }))} + onChange={(value) => { + const protocol = protocols.find( + (protocol) => protocol.id === value, + ); + + setSelectedProtocol(protocol); + }} + value={selectedProtocol?.id} + placeholder="Select a Protocol..." + /> + )} +
+ +
+
+
+ ); +}; diff --git a/app/dashboard/interviews/page.tsx b/app/dashboard/interviews/page.tsx new file mode 100644 index 000000000..6001b2625 --- /dev/null +++ b/app/dashboard/interviews/page.tsx @@ -0,0 +1,38 @@ +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import ResponsiveContainer from '@codaco/fresco-ui/layout/ResponsiveContainer'; +import PageHeader from '@codaco/fresco-ui/typography/PageHeader'; +import { requirePageAuth } from '~/lib/auth/guards'; +import { requireAppNotExpired } from '~/queries/appSettings'; +import InterviewsTableServer from '../_components/InterviewsTable/InterviewsTableServer'; + +export default function InterviewPage() { + return ( + <> + + + + } + > + + + + + ); +} + +async function AuthenticatedInterviews() { + await requireAppNotExpired(); + await requirePageAuth(); + return ; +} diff --git a/app/dashboard/layout.tsx b/app/dashboard/layout.tsx new file mode 100644 index 000000000..877874944 --- /dev/null +++ b/app/dashboard/layout.tsx @@ -0,0 +1,40 @@ +import { type Metadata } from 'next'; +import { connection } from 'next/server'; +import { Suspense } from 'react'; +import NetlifyBadge from '~/components/NetlifyBadge'; +import { ExportProgressProvider } from '~/components/ExportProgressProvider'; +import { getAppSetting } from '~/queries/appSettings'; +import { NavigationBar } from './_components/NavigationBar'; +import UploadThingModal from './_components/UploadThingModal'; + +export const metadata: Metadata = { + title: 'Network Canvas Fresco - Dashboard', + description: 'Fresco.', +}; + +const Layout = ({ children }: { children: React.ReactNode }) => { + return ( +
+ + + + + {children} + +
+ ); +}; + +async function UploadThingTokenGate() { + await connection(); + const storageProvider = await getAppSetting('storageProvider'); + if (storageProvider === 's3') return null; + const uploadThingToken = await getAppSetting('uploadThingToken'); + if (!uploadThingToken) return ; + return null; +} + +export default Layout; diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx new file mode 100644 index 000000000..bee5a5607 --- /dev/null +++ b/app/dashboard/page.tsx @@ -0,0 +1,113 @@ +import Image from 'next/image'; +import { type SearchParams } from 'nuqs/server'; +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import ResponsiveContainer from '@codaco/fresco-ui/layout/ResponsiveContainer'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import PageHeader from '@codaco/fresco-ui/typography/PageHeader'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { requirePageAuth } from '~/lib/auth/guards'; +import { fetchActivities } from '~/queries/activityFeed'; +import { requireAppNotExpired } from '~/queries/appSettings'; +import { getSummaryStatistics } from '~/queries/summaryStatistics'; +import ActivityFeed from './_components/ActivityFeed/ActivityFeed'; +import { searchParamsCache } from './_components/ActivityFeed/SearchParams'; +import { + InterviewIcon, + ProtocolIcon, +} from './_components/SummaryStatistics/Icons'; +import { StatCardSkeleton } from './_components/SummaryStatistics/StatCard'; +import SummaryStatistics from './_components/SummaryStatistics/SummaryStatistics'; +import UpdateUploadThingTokenAlert from './_components/UpdateUploadThingTokenAlert'; +import AnonymousRecruitmentWarning from './protocols/_components/AnonymousRecruitmentWarning'; + +export default function Home(props: { searchParams: Promise }) { + return ( + <> + + }> + + + + ); +} + +function DashboardContentSkeleton() { + return ( + <> + + } /> + + } + /> + } /> + + + + Recent Activity + + This table summarizes the most recent activity within Fresco. Use it + to keep track of new protocols, interviews, and participants. + + + + + + + ); +} + +async function DashboardContent({ + searchParams: searchParamsPromise, +}: { + searchParams: Promise; +}) { + await requireAppNotExpired(); + await requirePageAuth(); + + const cache = await searchParamsCache.parse(searchParamsPromise); + + const summaryPromise = getSummaryStatistics(); + const activitiesPromise = fetchActivities(cache); + + return ( + <> + + + + + + + + + + + + Recent Activity + + This table summarizes the most recent activity within Fresco. Use it + to keep track of new protocols, interviews, and participants. + + + + + + + ); +} diff --git a/app/dashboard/participants/_components/AddParticipantButton.tsx b/app/dashboard/participants/_components/AddParticipantButton.tsx new file mode 100644 index 000000000..432ada2ce --- /dev/null +++ b/app/dashboard/participants/_components/AddParticipantButton.tsx @@ -0,0 +1,31 @@ +import { Button } from '@codaco/fresco-ui/Button'; + +import { Plus } from 'lucide-react'; +import { useState } from 'react'; +import ParticipantModal from '~/app/dashboard/participants/_components/ParticipantModal'; +import { type Participant } from '~/lib/db/generated/client'; + +type AddParticipantButtonProps = { + existingParticipants: Participant[]; +}; + +function AddParticipantButton({ + existingParticipants, +}: AddParticipantButtonProps) { + const [isOpen, setOpen] = useState(false); + + return ( + <> + + + + ); +} + +export default AddParticipantButton; diff --git a/app/dashboard/participants/_components/DeleteParticipantsDialog.tsx b/app/dashboard/participants/_components/DeleteParticipantsDialog.tsx new file mode 100644 index 000000000..313ba6f49 --- /dev/null +++ b/app/dashboard/participants/_components/DeleteParticipantsDialog.tsx @@ -0,0 +1,106 @@ +import { Trash2 } from 'lucide-react'; +import { useMemo, useState } from 'react'; +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import { Button } from '@codaco/fresco-ui/Button'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; + +type DeleteParticipantsDialog = { + open: boolean; + participantCount: number; + haveInterviews: boolean; + haveUnexportedInterviews: boolean; + onConfirm: () => Promise; + onCancel: () => void; +}; + +export const DeleteParticipantsDialog = ({ + open, + participantCount, + haveInterviews, + haveUnexportedInterviews, + onConfirm, + onCancel, +}: DeleteParticipantsDialog) => { + const [isDeleting, setIsDeleting] = useState(false); + + const dialogContent = useMemo(() => { + if (!haveInterviews) { + return null; + } + + if (haveUnexportedInterviews) { + return ( + + Warning + + {participantCount > 1 ? ( + <> + One or more of the selected participants have interview data + that has not yet been exported. Deleting these + participants will also delete their interview data. + + ) : ( + <> + The selected participant has interview data that + has not yet been exported. Deleting this + participant will also delete their interview data. + + )} + + + ); + } + + return ( + + Warning + + {participantCount > 1 ? ( + <> + One or more of the selected participants have interview data that + will also be deleted. This data is marked as having been exported, + but you may wish to confirm this before proceeding. + + ) : ( + <> + The selected participant has interview data that will also be + deleted. This data is marked as having been exported, but you may + wish to confirm this before proceeding. + + )} + + + ); + }, [haveInterviews, haveUnexportedInterviews, participantCount]); + + return ( + 1 ? 's' : ''}.`} + footer={ + <> + + + + } + > + {dialogContent} + + ); +}; diff --git a/app/dashboard/participants/_components/ExportParticipants/ExportParticipants.tsx b/app/dashboard/participants/_components/ExportParticipants/ExportParticipants.tsx new file mode 100644 index 000000000..238854f1d --- /dev/null +++ b/app/dashboard/participants/_components/ExportParticipants/ExportParticipants.tsx @@ -0,0 +1,79 @@ +'use client'; + +import { FileUp } from 'lucide-react'; +import { unparse } from 'papaparse'; +import { useCallback } from 'react'; +import type { ParticipantWithInterviews } from '~/app/dashboard/_components/ParticipantsTable/ParticipantsTableClient'; +import type { ProtocolWithInterviews } from '~/app/dashboard/_components/ProtocolsTable/ProtocolsTableClient'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import { useDownload } from '~/hooks/useDownload'; + +export function useExportParticipants(protocols: ProtocolWithInterviews[]) { + const download = useDownload(); + const { add } = useToast(); + + return useCallback( + (participants: ParticipantWithInterviews[]) => { + try { + const csvData = participants.map((participant) => { + const row: Record = { + id: participant.id, + identifier: participant.identifier, + label: participant.label ?? '', + }; + + for (const protocol of protocols) { + const name = protocol.name.split('.')[0] ?? protocol.id; + row[`interview_url_${name}`] = + `${window.location.origin}/onboard/${protocol.id}/?participantId=${participant.id}`; + } + + return row; + }); + + const csv = unparse(csvData, { header: true }); + const blob = new Blob([csv], { type: 'text/csv' }); + const url = URL.createObjectURL(blob); + download(url, 'participants.csv'); + URL.revokeObjectURL(url); + + add({ + title: 'Success', + description: 'Participants exported successfully', + variant: 'success', + }); + } catch (error) { + add({ + title: 'Error', + description: 'An error occurred while exporting participants', + variant: 'destructive', + }); + } + }, + [protocols, download, add], + ); +} + +function ExportParticipants({ + participants, + protocols, +}: { + participants: ParticipantWithInterviews[]; + protocols: ProtocolWithInterviews[]; +}) { + const exportParticipants = useExportParticipants(protocols); + + return ( + + ); +} + +export default ExportParticipants; diff --git a/app/dashboard/participants/_components/ImportParticipants.tsx b/app/dashboard/participants/_components/ImportParticipants.tsx new file mode 100644 index 000000000..3aa365110 --- /dev/null +++ b/app/dashboard/participants/_components/ImportParticipants.tsx @@ -0,0 +1,161 @@ +'use client'; + +import { FileDown, Upload } from 'lucide-react'; +import { useCallback, useState } from 'react'; +import { useDropzone } from 'react-dropzone'; +import { importParticipants } from '~/actions/participants'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import { + Popover, + PopoverContent, + PopoverTrigger, +} from '@codaco/fresco-ui/Popover'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import { csvDataSchema } from '~/schemas/participant'; +import { cx } from '@codaco/fresco-ui/utils/cva'; +import parseCSV from '~/utils/parseCSV'; + +export default function ImportParticipants() { + const [open, setOpen] = useState(false); + const { add } = useToast(); + + const handleFilesAccepted = useCallback( + async (files: File[]) => { + const file = files[0]; + if (!file) return; + + try { + const csvData = await parseCSV(file); + const parsed = csvDataSchema.safeParse(csvData); + + if (!parsed.success) { + add({ + title: 'Error', + description: + 'File must be a valid CSV with label or identifier columns', + variant: 'destructive', + }); + return; + } + + const result = await importParticipants(parsed.data); + + if (result.error) { + add({ + title: 'Error', + description: result.error, + variant: 'destructive', + }); + return; + } + + if ( + result.existingParticipants && + result.existingParticipants.length > 0 + ) { + add({ + title: 'Import completed with collisions', + description: ( + <> +

+ Your participants were imported successfully, but some + identifiers collided with existing participants and were not + imported. +

+ {result.existingParticipants.length < 5 && ( +
    + {result.existingParticipants.map((item) => ( +
  • {item.identifier}
  • + ))} +
+ )} + + ), + variant: 'destructive', + }); + } else { + add({ + title: 'Participants imported', + description: 'Participants have been imported successfully', + variant: 'success', + }); + } + + setOpen(false); + } catch (e) { + // eslint-disable-next-line no-console + console.log(e); + add({ + title: 'Error', + description: 'An error occurred while importing participants', + variant: 'destructive', + }); + } + }, + [add], + ); + + const { + getRootProps, + getInputProps, + isDragActive, + open: openFileDialog, + } = useDropzone({ + onDropAccepted: handleFilesAccepted, + accept: { + 'text/csv': [], + 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': [], + 'application/vnd.ms-excel': [], + }, + noClick: true, + multiple: false, + maxFiles: 1, + maxSize: 1024 * 5000, + }); + + return ( + + } />}> + Import Participants + + +
+ +
+ +
+
+ + {isDragActive ? 'Drop file here' : 'Import participants'} + + + Drag & drop a .csv file here + +
+ +
+
+
+ ); +} diff --git a/app/dashboard/participants/_components/ParticipantModal.tsx b/app/dashboard/participants/_components/ParticipantModal.tsx new file mode 100644 index 000000000..314546fe9 --- /dev/null +++ b/app/dashboard/participants/_components/ParticipantModal.tsx @@ -0,0 +1,228 @@ +'use client'; + +import { createId } from '@paralleldrive/cuid2'; +import { HelpCircle, WandSparkles } from 'lucide-react'; +import { useRouter } from 'next/navigation'; +import { useState, type Dispatch, type SetStateAction } from 'react'; +import { createParticipant, updateParticipant } from '~/actions/participants'; +import ActionError from '~/components/ActionError'; +import InfoTooltip from '~/components/InfoTooltip'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import type { Participant } from '~/lib/db/generated/client'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; +import Field from '@codaco/fresco-ui/form/Field/Field'; +import { FormWithoutProvider } from '@codaco/fresco-ui/form/Form'; +import SubmitButton from '@codaco/fresco-ui/form/SubmitButton'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import useFormStore from '@codaco/fresco-ui/form/hooks/useFormStore'; +import FormStoreProvider from '@codaco/fresco-ui/form/store/formStoreProvider'; +import { z } from 'zod/mini'; +import { + participantIdentifierSchema, + participantLabelSchema, +} from '~/schemas/participant'; + +type ParticipantModalProps = { + open: boolean; + setOpen: Dispatch>; + editingParticipant?: Participant | null; + setEditingParticipant?: Dispatch>; + existingParticipants: Participant[]; +}; + +function ParticipantModal({ + open, + setOpen, + editingParticipant, + setEditingParticipant, + existingParticipants, +}: ParticipantModalProps) { + const [error, setError] = useState(null); + const router = useRouter(); + + const handleSubmit = async (data: unknown) => { + setError(null); + + const typedData = data as { + identifier: string; + label?: string | null; + }; + + if (editingParticipant) { + await updateParticipant({ + existingIdentifier: editingParticipant.identifier, + formData: data, + }); + router.refresh(); + setOpen(false); + return { success: true }; + } + + const result = await createParticipant([typedData]); + + if (result.error) { + setError(result.error); + return { + success: false, + errors: { form: [result.error] }, + }; + } + + router.refresh(); + setOpen(false); + return { success: true }; + }; + + const handleOpenChange = (isOpen: boolean) => { + setOpen(isOpen); + if (!isOpen) { + setEditingParticipant?.(null); + setError(null); + } + }; + + // Use initialValues to set values when editing + const initialValues = editingParticipant + ? { + identifier: editingParticipant.identifier, + label: editingParticipant.label ?? '', + } + : undefined; + + return ( + + handleOpenChange(false)} + title={editingParticipant ? 'Edit Participant' : 'Add Participant'} + footer={ + <> + + + {editingParticipant ? 'Update' : 'Submit'} + + + } + > + {error && ( +
+ +
+ )} + + + + +
+
+ ); +} + +// Separate component to handle the identifier field with generate button +function IdentifierField({ + existingParticipants, + editingParticipant, + initialValue, +}: { + existingParticipants: Participant[]; + editingParticipant?: Participant | null; + initialValue?: string; +}) { + const setFieldValue = useFormStore((state) => state.setFieldValue); + + // Create validation that includes the uniqueness check + const identifierValidation = participantIdentifierSchema.check( + z.refine( + (data) => { + const existingParticipant = existingParticipants.find( + (p) => p.identifier === data, + ); + // Allow the current identifier if editing + return ( + !existingParticipant || + existingParticipant.id === editingParticipant?.id + ); + }, + { + message: 'This identifier is already in use.', + }, + ), + ); + + const hint = ( + <> + This could be a study ID, a number, or any other unique identifier. It + should be unique for each participant, and should not be easy to guess{' '} + } + title="Participant Identifiers" + description={(props) => ( + + Participant identifiers are used by Fresco to onboard participants. + They might be exposed to the participant during this process via the + participation URL, and so must not contain any + sensitive information, and must not be easy for other participants + to guess (e.g. sequential numbers, or easily guessable strings). + + )} + /> + . + + ); + + return ( + { + setFieldValue('identifier', `p-${createId()}`); + }} + icon={} + > + Generate + + } + initialValue={initialValue} + /> + ); +} + +export default ParticipantModal; diff --git a/app/dashboard/participants/page.tsx b/app/dashboard/participants/page.tsx new file mode 100644 index 000000000..401730088 --- /dev/null +++ b/app/dashboard/participants/page.tsx @@ -0,0 +1,46 @@ +import { Suspense } from 'react'; +import ParticipantsTable from '~/app/dashboard/_components/ParticipantsTable/ParticipantsTable'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import ResponsiveContainer from '@codaco/fresco-ui/layout/ResponsiveContainer'; +import PageHeader from '@codaco/fresco-ui/typography/PageHeader'; +import { requirePageAuth } from '~/lib/auth/guards'; +import { requireAppNotExpired } from '~/queries/appSettings'; + +export default function ParticipantPage() { + return ( + <> + + + + + } + > + + + + ); +} + +async function AuthenticatedParticipants() { + await requireAppNotExpired(); + await requirePageAuth(); + return ( + + + + ); +} diff --git a/app/dashboard/protocols/_components/AnonymousRecruitmentWarning.tsx b/app/dashboard/protocols/_components/AnonymousRecruitmentWarning.tsx new file mode 100644 index 000000000..54ebe038e --- /dev/null +++ b/app/dashboard/protocols/_components/AnonymousRecruitmentWarning.tsx @@ -0,0 +1,27 @@ +import ResponsiveContainer from '@codaco/fresco-ui/layout/ResponsiveContainer'; +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import Link from '~/components/Link'; +import { getAppSetting } from '~/queries/appSettings'; + +export default async function AnonymousRecruitmentWarning() { + const allowAnonymousRecruitment = await getAppSetting( + 'allowAnonymousRecruitment', + ); + + if (!allowAnonymousRecruitment) return null; + + return ( + + + Please Note + + Anonymous recruitment is enabled. This means that participants can + self-enroll in your study without needing to be invited, by visiting + the protocol-specific onboarding link. To disable anonymous + recruitment, visit{' '} + the settings page. + + + + ); +} diff --git a/app/dashboard/protocols/_components/DeleteProtocolsDialog.tsx b/app/dashboard/protocols/_components/DeleteProtocolsDialog.tsx new file mode 100644 index 000000000..243f06303 --- /dev/null +++ b/app/dashboard/protocols/_components/DeleteProtocolsDialog.tsx @@ -0,0 +1,121 @@ +import { Trash2 } from 'lucide-react'; +import type { Dispatch, SetStateAction } from 'react'; +import { useEffect, useState } from 'react'; +import { deleteProtocols } from '~/actions/protocols'; +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import { Button } from '@codaco/fresco-ui/Button'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; +import type { ProtocolWithInterviews } from '../../_components/ProtocolsTable/ProtocolsTableClient'; + +type DeleteProtocolsDialogProps = { + open: boolean; + setOpen: Dispatch>; + protocolsToDelete: ProtocolWithInterviews[]; +}; + +export const DeleteProtocolsDialog = ({ + open, + setOpen, + protocolsToDelete, +}: DeleteProtocolsDialogProps) => { + const [isDeleting, setIsDeleting] = useState(false); + + const [protocolsInfo, setProtocolsInfo] = useState<{ + hasInterviews: boolean; + hasUnexportedInterviews: boolean; + }>({ + hasInterviews: false, + hasUnexportedInterviews: false, + }); + useEffect(() => { + setProtocolsInfo({ + hasInterviews: protocolsToDelete?.some( + (protocol) => protocol.interviews.length > 0, + ), + hasUnexportedInterviews: protocolsToDelete?.some((protocol) => + protocol.interviews.some((interview) => !interview.exportTime), + ), + }); + }, [protocolsToDelete]); + + const handleConfirm = async () => { + setIsDeleting(true); + await deleteProtocols(protocolsToDelete.map((d) => d.hash)); + setIsDeleting(false); + setOpen(false); + }; + + const handleCancelDialog = () => { + setProtocolsInfo({ + hasInterviews: false, + hasUnexportedInterviews: false, + }); + setOpen(false); + }; + + return ( + handleCancelDialog()} + title="Are you absolutely sure?" + description="This action cannot be undone. This will permanently delete the selected protocols." + footer={ + <> + + + + } + > + {protocolsInfo.hasInterviews && + !protocolsInfo.hasUnexportedInterviews && ( + + Warning + + {protocolsToDelete.length > 1 ? ( + <> + One or more of the selected protocols have interview data that + will also be deleted. This data is marked as having been + exported, but you may wish to confirm this before proceeding. + + ) : ( + <> + The selected protocol has interview data that will also be + deleted. This data is marked as having been exported, but you + may wish to confirm this before proceeding. + + )} + + + )} + {protocolsInfo.hasUnexportedInterviews && ( + + Warning + + {protocolsToDelete.length > 1 ? ( + <> + One or more of the selected protocols have interview data that{' '} + has not yet been exported. Deleting these + protocols will also delete its interview data. + + ) : ( + <> + The selected protocol has interview data that + has not yet been exported. Deleting this + protocol will also delete its interview data. + + )} + + + )} + + ); +}; diff --git a/app/dashboard/protocols/page.tsx b/app/dashboard/protocols/page.tsx new file mode 100644 index 000000000..3cf46c11f --- /dev/null +++ b/app/dashboard/protocols/page.tsx @@ -0,0 +1,52 @@ +import { Suspense } from 'react'; +import { DataTableSkeleton } from '@codaco/fresco-ui/DataTable/DataTableSkeleton'; +import ResponsiveContainer from '@codaco/fresco-ui/layout/ResponsiveContainer'; +import PageHeader from '@codaco/fresco-ui/typography/PageHeader'; +import { requirePageAuth } from '~/lib/auth/guards'; +import { requireAppNotExpired } from '~/queries/appSettings'; +import ProtocolsTable from '../_components/ProtocolsTable/ProtocolsTable'; +import UpdateUploadThingTokenAlert from '../_components/UpdateUploadThingTokenAlert'; + +export default function ProtocolsPage() { + return ( + <> + + + + + } + > + + + + ); +} + +async function AuthenticatedProtocols() { + await requireAppNotExpired(); + await requirePageAuth(); + return ( + <> + + + + + + + + ); +} diff --git a/app/dashboard/settings/ReadOnlyEnvAlert.tsx b/app/dashboard/settings/ReadOnlyEnvAlert.tsx new file mode 100644 index 000000000..7bf7ba97c --- /dev/null +++ b/app/dashboard/settings/ReadOnlyEnvAlert.tsx @@ -0,0 +1,12 @@ +import { Alert, AlertDescription } from '@codaco/fresco-ui/Alert'; + +export default function ReadOnlyEnvAlert() { + return ( + + + This setting is controlled by your .env file, and so can + only be changed by modifying that file. + + + ); +} diff --git a/app/dashboard/settings/_components/ApiTokensSection.tsx b/app/dashboard/settings/_components/ApiTokensSection.tsx new file mode 100644 index 000000000..e58171acf --- /dev/null +++ b/app/dashboard/settings/_components/ApiTokensSection.tsx @@ -0,0 +1,33 @@ +import { Suspense } from 'react'; +import ApiTokenManagement from '~/components/ApiTokenManagement'; +import InterviewDataApiSwitch from '~/components/InterviewDataApiSwitch'; +import SettingsCard from '~/components/settings/SettingsCard'; +import SettingsField from '~/components/settings/SettingsField'; +import { ToggleFieldSkeleton } from '@codaco/fresco-ui/form/fields/ToggleFieldSkeleton'; +import { getApiTokens } from '~/queries/apiTokens'; + +export default function ApiTokensSection() { + const apiTokensPromise = getApiTokens(); + + return ( + + }> + + + } + /> + + + + + ); +} diff --git a/app/dashboard/settings/_components/ConfigurationSection.tsx b/app/dashboard/settings/_components/ConfigurationSection.tsx new file mode 100644 index 000000000..f72770b95 --- /dev/null +++ b/app/dashboard/settings/_components/ConfigurationSection.tsx @@ -0,0 +1,30 @@ +import { Suspense } from 'react'; +import SettingsCard from '~/components/settings/SettingsCard'; +import SettingsField from '~/components/settings/SettingsField'; +import VersionSection, { + VersionSectionSkeleton, +} from '~/components/VersionSection'; +import { env } from '~/env'; +import { getInstallationId } from '~/queries/appSettings'; +import UpdateInstallationId from './UpdateInstallationId'; + +export default async function ConfigurationSection() { + const installationId = await getInstallationId(); + + return ( + + }> + + + + + + + ); +} diff --git a/app/dashboard/settings/_components/DeveloperToolsSection.tsx b/app/dashboard/settings/_components/DeveloperToolsSection.tsx new file mode 100644 index 000000000..73d3ada4c --- /dev/null +++ b/app/dashboard/settings/_components/DeveloperToolsSection.tsx @@ -0,0 +1,22 @@ +import SettingsCard from '~/components/settings/SettingsCard'; +import SettingsField from '~/components/settings/SettingsField'; +import RecruitmentTestSectionServer from '../../_components/RecruitmentTestSectionServer'; +import ResetButton from '../../_components/ResetButton'; + +export default function DeveloperToolsSection() { + return ( + + } + /> + + + ); +} diff --git a/app/dashboard/settings/_components/InterviewSettingsSection.tsx b/app/dashboard/settings/_components/InterviewSettingsSection.tsx new file mode 100644 index 000000000..14b8f23e9 --- /dev/null +++ b/app/dashboard/settings/_components/InterviewSettingsSection.tsx @@ -0,0 +1,84 @@ +import { Suspense } from 'react'; +import AnonymousRecruitmentSwitch from '~/components/AnonymousRecruitmentSwitch'; +import FreezeInterviewsSwitch from '~/components/FreezeInterviewsSwitch'; +import LimitInterviewsSwitch from '~/components/LimitInterviewsSwitch'; +import SettingsCard from '~/components/settings/SettingsCard'; +import SettingsField from '~/components/settings/SettingsField'; +import ToggleSmallScreenWarning from '~/components/ToggleSmallScreenWarning'; +import { Alert, AlertDescription } from '@codaco/fresco-ui/Alert'; +import { ToggleFieldSkeleton } from '@codaco/fresco-ui/form/fields/ToggleFieldSkeleton'; +import { getAppSetting } from '~/queries/appSettings'; + +export default async function InterviewSettingsSection() { + const disableSmallScreenOverlay = await getAppSetting( + 'disableSmallScreenOverlay', + ); + + return ( + + }> + + + } + /> + + If this option is enabled, each participant will only be able to + submit a single completed interview for each + protocol (although they may have multiple incomplete interviews). + Once an interview has been completed, attempting to start a new + interview or to resume any other in-progress interview, will be + prevented. + + } + control={ + }> + + + } + /> + }> + + + } + /> + }> + + + } + > + {disableSmallScreenOverlay && ( + + + Ensure that you test your interview thoroughly on a small screen + when disabling this warning. Fresco is designed to work best on + larger screens, and using it on a small screen may lead to a poor + user experience for participants. + + + )} + + + ); +} diff --git a/app/dashboard/settings/_components/PasskeySettings.tsx b/app/dashboard/settings/_components/PasskeySettings.tsx new file mode 100644 index 000000000..a04c18cd7 --- /dev/null +++ b/app/dashboard/settings/_components/PasskeySettings.tsx @@ -0,0 +1,191 @@ +'use client'; + +import { startRegistration } from '@simplewebauthn/browser'; +import { KeyRound, Plus, Trash } from 'lucide-react'; +import { useState } from 'react'; +import { + generateRegistrationOptions, + removePasskey, + verifyRegistration, +} from '~/actions/webauthn'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import SettingsField from '~/components/settings/SettingsField'; +import { Badge } from '@codaco/fresco-ui/Badge'; +import { Button } from '@codaco/fresco-ui/Button'; +import useDialog from '@codaco/fresco-ui/dialogs/useDialog'; + +type Passkey = { + id: string; + friendlyName: string | null; + deviceType: string; + createdAt: Date; + lastUsedAt: Date | null; + backedUp: boolean; +}; + +type PasskeySettingsProps = { + initialPasskeys: Passkey[]; + sandboxMode: boolean; + hasPassword: boolean; +}; + +function formatDate(date: Date | null) { + if (!date) return 'Never'; + return new Date(date).toLocaleDateString('en-US', { + year: 'numeric', + month: 'short', + day: 'numeric', + }); +} + +export default function PasskeySettings({ + initialPasskeys, + sandboxMode, + hasPassword, +}: PasskeySettingsProps) { + const [passkeys, setPasskeys] = useState(initialPasskeys); + const [loading, setLoading] = useState(false); + const [error, setError] = useState(null); + const { confirm } = useDialog(); + + const handleAddPasskey = async () => { + setError(null); + setLoading(true); + + try { + const { error: genError, data } = await generateRegistrationOptions(); + if (genError || !data) { + setError(genError ?? 'Failed to start registration'); + return; + } + + // IMMEDIATELY call startRegistration — preserves Safari user gesture + const credential = await startRegistration({ + optionsJSON: data.options, + }); + + const result = await verifyRegistration({ credential }); + if (result.error) { + setError(result.error); + return; + } + + if (result.data) { + setPasskeys((prev) => [ + { + id: result.data.id, + friendlyName: result.data.friendlyName, + deviceType: result.data.deviceType, + createdAt: result.data.createdAt, + lastUsedAt: null, + backedUp: false, + }, + ...prev, + ]); + } + } catch (e) { + if (e instanceof Error && e.name === 'NotAllowedError') { + return; + } + setError('Passkey registration failed'); + } finally { + setLoading(false); + } + }; + + const handleRemovePasskey = (passkey: Passkey) => { + void confirm({ + title: 'Remove Passkey', + description: `Remove "${passkey.friendlyName ?? 'Unnamed passkey'}"? You won't be able to sign in with it anymore.`, + confirmLabel: 'Remove', + onConfirm: async () => { + const result = await removePasskey(passkey.id); + if (result.error) { + setError(result.error); + } else { + setPasskeys((prev) => prev.filter((p) => p.id !== passkey.id)); + } + }, + }); + }; + + return ( + void handleAddPasskey()} + disabled={sandboxMode || loading} + color="primary" + icon={} + > + {loading ? 'Registering...' : 'Add passkey'} + + } + > + {error &&

{error}

} + + {passkeys.length > 0 && ( +
+ {passkeys.map((passkey) => ( + +
+ +
+
+ + {passkey.friendlyName ?? 'Unnamed passkey'} + + + {passkey.deviceType === 'multiDevice' + ? 'Synced' + : 'Device-bound'} + +
+
+ + Added {formatDate(passkey.createdAt)} + + + Last used {formatDate(passkey.lastUsedAt)} + +
+
+
+ +
+ ))} +
+ )} +
+ ); +} diff --git a/app/dashboard/settings/_components/PrivacySection.tsx b/app/dashboard/settings/_components/PrivacySection.tsx new file mode 100644 index 000000000..3c3bdb532 --- /dev/null +++ b/app/dashboard/settings/_components/PrivacySection.tsx @@ -0,0 +1,26 @@ +import { Suspense } from 'react'; +import DisableAnalyticsSwitch from '~/components/DisableAnalyticsSwitch'; +import SettingsCard from '~/components/settings/SettingsCard'; +import SettingsField from '~/components/settings/SettingsField'; +import { ToggleFieldSkeleton } from '@codaco/fresco-ui/form/fields/ToggleFieldSkeleton'; +import { env } from '~/env'; +import ReadOnlyEnvAlert from '../ReadOnlyEnvAlert'; + +export default function PrivacySection() { + return ( + + }> + + + } + > + {!!env.DISABLE_ANALYTICS && } + + + ); +} diff --git a/app/dashboard/settings/_components/StorageProviderSection.tsx b/app/dashboard/settings/_components/StorageProviderSection.tsx new file mode 100644 index 000000000..903dd2335 --- /dev/null +++ b/app/dashboard/settings/_components/StorageProviderSection.tsx @@ -0,0 +1,79 @@ +import { Alert, AlertDescription } from '@codaco/fresco-ui/Alert'; +import SettingsCard from '~/components/settings/SettingsCard'; +import SettingsField from '~/components/settings/SettingsField'; +import Link from '~/components/Link'; +import { getAppSetting } from '~/queries/appSettings'; +import { hasProtocols } from '~/queries/storageProvider'; +import UpdateUploadThingToken from './UpdateUploadThingToken'; +import UpdateS3Settings from './UpdateS3Settings'; + +export default async function StorageProviderSection() { + const [ + storageProvider, + uploadThingKey, + , + s3Endpoint, + s3Bucket, + s3Region, + s3AccessKeyId, + s3SecretAccessKey, + ] = await Promise.all([ + getAppSetting('storageProvider'), + getAppSetting('uploadThingToken'), + hasProtocols(), + getAppSetting('s3Endpoint'), + getAppSetting('s3Bucket'), + getAppSetting('s3Region'), + getAppSetting('s3AccessKeyId'), + getAppSetting('s3SecretAccessKey'), + ]); + + const provider = storageProvider ?? 'uploadthing'; + const providerLabel = + provider === 's3' ? 'S3 / S3-Compatible' : 'UploadThing'; + + return ( + + + + + The storage provider type cannot be changed once the application has + been deployed. You can update the credentials below. + + + + + {provider === 'uploadthing' && ( + + The API key used to communicate with UploadThing. See the{' '} + + deployment documentation + {' '} + for details. + + } + > + + + )} + + {provider === 's3' && ( + + )} + + ); +} diff --git a/app/dashboard/settings/_components/SyntheticInterviewDataSection.tsx b/app/dashboard/settings/_components/SyntheticInterviewDataSection.tsx new file mode 100644 index 000000000..295c72487 --- /dev/null +++ b/app/dashboard/settings/_components/SyntheticInterviewDataSection.tsx @@ -0,0 +1,246 @@ +'use client'; + +import { useRouter } from 'next/navigation'; +import { use, useState } from 'react'; +import { SuperJSON } from 'superjson'; +import { + deleteSyntheticData, + revalidateSyntheticData, +} from '~/actions/synthetic-interviews'; +import SettingsCard from '~/components/settings/SettingsCard'; +import SettingsField from '~/components/settings/SettingsField'; +import { Button } from '@codaco/fresco-ui/Button'; +import ProgressBar from '@codaco/fresco-ui/ProgressBar'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import SelectField from '@codaco/fresco-ui/form/fields/Select/Native'; +import ToggleField from '@codaco/fresco-ui/form/fields/ToggleField'; +import { + type GetProtocolsQuery, + type GetProtocolsReturnType, +} from '~/queries/protocols'; + +type SyntheticInterviewDataSectionProps = { + protocolsPromise: GetProtocolsReturnType; + initialCounts: { interviewCount: number; participantCount: number }; +}; + +export default function SyntheticInterviewDataSection({ + protocolsPromise, + initialCounts, +}: SyntheticInterviewDataSectionProps) { + const rawProtocols = use(protocolsPromise); + const protocols = SuperJSON.parse(rawProtocols); + + const [selectedProtocolId, setSelectedProtocolId] = useState(); + const [count, setCount] = useState(10); + const [simulateDropOut, setSimulateDropOut] = useState(true); + const [respectSkipLogicAndFiltering, setRespectSkipLogicAndFiltering] = + useState(false); + const [isGenerating, setIsGenerating] = useState(false); + const [isDeleting, setIsDeleting] = useState(false); + const [progress, setProgress] = useState({ current: 0, total: 0 }); + const [syntheticCounts, setSyntheticCounts] = useState(initialCounts); + const { toast } = useToast(); + const router = useRouter(); + + const handleGenerate = async () => { + if (!selectedProtocolId) return; + + setIsGenerating(true); + setProgress({ current: 0, total: count }); + + try { + const response = await fetch('/api/generate-test-interviews', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ + protocolId: selectedProtocolId, + count, + simulateDropOut, + respectSkipLogicAndFiltering, + }), + }); + + if (!response.ok || !response.body) { + setIsGenerating(false); + return; + } + + const reader = response.body.getReader(); + const decoder = new TextDecoder(); + let buffer = ''; + + for (;;) { + const { done, value } = await reader.read(); + if (done) break; + + buffer += decoder.decode(value, { stream: true }); + const events = buffer.split('\n\n'); + buffer = events.pop() ?? ''; + + for (const event of events) { + const dataLine = event + .split('\n') + .find((line) => line.startsWith('data: ')); + if (!dataLine) continue; + + const data = JSON.parse(dataLine.slice(6)) as { + type: string; + current?: number; + total?: number; + created?: number; + message?: string; + }; + + if (data.type === 'progress' && data.current !== undefined) { + setProgress({ + current: data.current, + total: data.total ?? count, + }); + } else if (data.type === 'error' && data.message) { + toast({ + title: 'Generation failed', + description: data.message, + variant: 'destructive', + }); + } else if (data.type === 'complete' && data.created !== undefined) { + const created = data.created; + setSyntheticCounts((prev) => ({ + interviewCount: prev.interviewCount + created, + participantCount: prev.participantCount + created, + })); + toast({ + title: 'Generation complete', + description: `Successfully generated ${String(created)} synthetic interviews.`, + variant: 'success', + }); + } + } + } + } finally { + setIsGenerating(false); + await revalidateSyntheticData(); + router.refresh(); + } + }; + + const handleDelete = async () => { + setIsDeleting(true); + try { + const result = await deleteSyntheticData(); + if (!result.error) { + setSyntheticCounts({ interviewCount: 0, participantCount: 0 }); + } + } finally { + setIsDeleting(false); + } + }; + + const progressPercent = + progress.total > 0 + ? Math.round((progress.current / progress.total) * 100) + : 0; + + return ( + + +
+ ({ + value: p.id, + label: p.name, + }))} + onChange={(value) => { + if (typeof value === 'string') { + setSelectedProtocolId(value); + } + }} + value={selectedProtocolId} + placeholder="Select a Protocol..." + className="min-w-auto" + /> + setCount(Number(value))} + disabled={isGenerating} + className="shrink-0" + /> + +
+ {isGenerating && ( +
+ +

+ {progress.current} / {progress.total} interviews generated +

+
+ )} +
+ setSimulateDropOut(value ?? true)} + disabled={isGenerating} + /> + } + /> + + setRespectSkipLogicAndFiltering(value ?? false) + } + disabled={isGenerating} + /> + } + /> + + {isDeleting ? 'Deleting...' : 'Delete All'} + + } + /> +
+ ); +} diff --git a/app/dashboard/settings/_components/SyntheticInterviewDataServer.tsx b/app/dashboard/settings/_components/SyntheticInterviewDataServer.tsx new file mode 100644 index 000000000..b64d50cce --- /dev/null +++ b/app/dashboard/settings/_components/SyntheticInterviewDataServer.tsx @@ -0,0 +1,18 @@ +import { Suspense } from 'react'; +import { getProtocols } from '~/queries/protocols'; +import { getSyntheticInterviewCount } from '~/queries/synthetic-interviews'; +import SyntheticInterviewDataSection from '~/app/dashboard/settings/_components/SyntheticInterviewDataSection'; + +export default async function SyntheticInterviewDataServer() { + const protocolsPromise = getProtocols(); + const initialCounts = await getSyntheticInterviewCount(); + + return ( + + + + ); +} diff --git a/app/dashboard/settings/_components/TwoFactorSettings.tsx b/app/dashboard/settings/_components/TwoFactorSettings.tsx new file mode 100644 index 000000000..b362fdbd0 --- /dev/null +++ b/app/dashboard/settings/_components/TwoFactorSettings.tsx @@ -0,0 +1,181 @@ +'use client'; + +import { RefreshCw } from 'lucide-react'; +import { useState } from 'react'; +import { disableTotp, regenerateRecoveryCodes } from '~/actions/totp'; +import RecoveryCodes from '~/components/RecoveryCodes'; +import SettingsField from '~/components/settings/SettingsField'; +import { useTwoFactorSetup } from '~/components/TwoFactorSetup'; +import TwoFactorVerify from '~/components/TwoFactorVerify'; +import { Alert, AlertDescription } from '@codaco/fresco-ui/Alert'; +import { Button } from '@codaco/fresco-ui/Button'; +import ToggleField from '@codaco/fresco-ui/form/fields/ToggleField'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; +import SubmitButton from '@codaco/fresco-ui/form/SubmitButton'; +import FormStoreProvider from '@codaco/fresco-ui/form/store/formStoreProvider'; + +type TwoFactorSettingsProps = { + hasTwoFactor: boolean; + userCount: number; + sandboxMode?: boolean; +}; + +export default function TwoFactorSettings({ + hasTwoFactor: initialHasTwoFactor, + userCount, + sandboxMode = false, +}: TwoFactorSettingsProps) { + const [hasTwoFactor, setHasTwoFactor] = useState(initialHasTwoFactor); + const [showDisable, setShowDisable] = useState(false); + const [showRegenerateVerify, setShowRegenerateVerify] = useState(false); + const [showRecoveryCodes, setShowRecoveryCodes] = useState(false); + const [recoveryCodes, setRecoveryCodes] = useState([]); + + const startTwoFactorSetup = useTwoFactorSetup(userCount); + + const handleToggle = async (checked: boolean) => { + if (checked) { + const completed = await startTwoFactorSetup(); + if (completed) { + setHasTwoFactor(true); + } + } else { + setShowDisable(true); + } + }; + + return ( + <> + void handleToggle(checked ?? false)} + disabled={sandboxMode} + aria-label="Toggle two-factor authentication" + /> + } + > + {hasTwoFactor && ( + + )} + + + + setShowDisable(false)} + title="Disable Two-Factor Authentication" + description="Enter your current authenticator code or a recovery code to disable two-factor authentication." + footer={ + <> + + + Disable + + + } + > + + + If you can't access your authenticator app, you need to use a + recovery code to disable two-factor authentication. If you + don't have any valid recovery codes, you will need another + user to disable two-factor authentication for you. + + + { + const result = await disableTotp({ code }); + if (result.error) throw new Error(result.error); + setHasTwoFactor(false); + setShowDisable(false); + }} + allowRecoveryCodes + /> + + + + + setShowRegenerateVerify(false)} + title="Regenerate Recovery Codes" + description="Enter your current authenticator code to generate new recovery codes. Your existing codes will be invalidated." + footer={ + <> + + + Regenerate + + + } + > + + + If you can't access your authenticator app, you need to + disable two-factor authentication using an existing recovery code + before you generate new codes. If you don't have any valid + recovery codes, you will need another user to disable two-factor + authentication for you. + + + { + const result = await regenerateRecoveryCodes({ code }); + if (result.error) throw new Error(result.error); + if (result.data) { + setShowRegenerateVerify(false); + setRecoveryCodes(result.data.recoveryCodes); + setShowRecoveryCodes(true); + } + }} + /> + + + + { + setShowRecoveryCodes(false); + setRecoveryCodes([]); + }} + title="New Recovery Codes" + description="Your previous recovery codes have been invalidated. Save these new codes." + footer={ + + } + > + + + + ); +} diff --git a/app/dashboard/settings/_components/UpdateInstallationId.tsx b/app/dashboard/settings/_components/UpdateInstallationId.tsx new file mode 100644 index 000000000..33a29e483 --- /dev/null +++ b/app/dashboard/settings/_components/UpdateInstallationId.tsx @@ -0,0 +1,54 @@ +'use client'; + +import { Loader2, RefreshCw } from 'lucide-react'; +import { useState } from 'react'; +import { z } from 'zod/mini'; +import { regenerateInstallationId } from '~/actions/appSettings'; +import { Button } from '@codaco/fresco-ui/Button'; +import UpdateSettingsValue from '../../_components/UpdateSettingsValue'; + +export default function UpdateInstallationId({ + installationId, + readOnly, +}: { + installationId?: string; + readOnly?: boolean; +}) { + const [currentId, setCurrentId] = useState(installationId); + const [isRegenerating, setIsRegenerating] = useState(false); + + const handleRegenerate = async () => { + setIsRegenerating(true); + try { + const newId = await regenerateInstallationId(); + setCurrentId(newId); + } finally { + setIsRegenerating(false); + } + }; + + return ( + + {isRegenerating ? ( + + ) : ( + + )} + + } + /> + ); +} diff --git a/app/dashboard/settings/_components/UpdateS3Settings.tsx b/app/dashboard/settings/_components/UpdateS3Settings.tsx new file mode 100644 index 000000000..650e92d49 --- /dev/null +++ b/app/dashboard/settings/_components/UpdateS3Settings.tsx @@ -0,0 +1,89 @@ +'use client'; + +import { useState } from 'react'; +import SettingsField from '~/components/settings/SettingsField'; +import { setAppSetting } from '~/actions/appSettings'; +import { Button } from '@codaco/fresco-ui/Button'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import { type AppSetting } from '~/schemas/appSettings'; + +type S3Field = { + key: Extract; + label: string; + type: 'text' | 'password'; +}; + +const s3Fields: S3Field[] = [ + { key: 's3Endpoint', label: 'Endpoint URL', type: 'text' }, + { key: 's3Bucket', label: 'Bucket Name', type: 'text' }, + { key: 's3Region', label: 'Region', type: 'text' }, + { key: 's3AccessKeyId', label: 'Access Key ID', type: 'password' }, + { key: 's3SecretAccessKey', label: 'Secret Access Key', type: 'password' }, +]; + +export default function UpdateS3Settings({ + initialValues, +}: { + initialValues: Partial>; +}) { + return ( + <> + {s3Fields.map((field) => ( + + + + ))} + + ); +} + +function S3FieldEditor({ + settingsKey, + inputType, + initialValue, +}: { + settingsKey: S3Field['key']; + inputType: 'text' | 'password'; + initialValue: string; +}) { + const [value, setValue] = useState(initialValue); + const [isSaving, setSaving] = useState(false); + const [savedValue, setSavedValue] = useState(initialValue); + + const handleSave = async () => { + setSaving(true); + await setAppSetting(settingsKey, value); + setSavedValue(value); + setSaving(false); + }; + + return ( +
+ setValue(v ?? '')} + type={inputType} + className="w-full" + disabled={isSaving} + /> + {value !== savedValue && ( +
+ + +
+ )} +
+ ); +} diff --git a/app/dashboard/settings/_components/UpdateUploadThingToken.tsx b/app/dashboard/settings/_components/UpdateUploadThingToken.tsx new file mode 100644 index 000000000..8a9686785 --- /dev/null +++ b/app/dashboard/settings/_components/UpdateUploadThingToken.tsx @@ -0,0 +1,18 @@ +'use client'; + +import { createUploadThingTokenSchema } from '~/schemas/appSettings'; +import UpdateSettingsValue from '../../_components/UpdateSettingsValue'; + +export default function UpdateUploadThingToken({ + uploadThingKey, +}: { + uploadThingKey: string | null | undefined; +}) { + return ( + + ); +} diff --git a/app/dashboard/settings/_components/UserManagement.tsx b/app/dashboard/settings/_components/UserManagement.tsx new file mode 100644 index 000000000..85829fffe --- /dev/null +++ b/app/dashboard/settings/_components/UserManagement.tsx @@ -0,0 +1,937 @@ +'use client'; + +import { + startAuthentication, + startRegistration, +} from '@simplewebauthn/browser'; +import { type StrictColumnDef } from '@codaco/fresco-ui/DataTable/types'; +import { Plus, Trash, User } from 'lucide-react'; +import { useRouter } from 'next/navigation'; +import { use, useCallback, useState } from 'react'; +import { z } from 'zod/mini'; +import { + changePassword, + checkUsernameAvailable, + createUser, + deleteUsers, +} from '~/actions/users'; +import { + generateAuthenticationOptions, + generateRegistrationOptions, + resetAuthForUser, + switchToPasskeyMode, + switchToPasswordMode, + verifyPasskeyReauth, +} from '~/actions/webauthn'; +import PasskeySettings from '~/app/dashboard/settings/_components/PasskeySettings'; +import TwoFactorSettings from '~/app/dashboard/settings/_components/TwoFactorSettings'; +import { DataTableColumnHeader } from '@codaco/fresco-ui/DataTable/ColumnHeader'; +import { DataTable } from '@codaco/fresco-ui/DataTable/DataTable'; +import { DataTableFloatingBar } from '@codaco/fresco-ui/DataTable/DataTableFloatingBar'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import SettingsField from '~/components/settings/SettingsField'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useClientDataTable } from '~/hooks/useClientDataTable'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; +import useDialog from '@codaco/fresco-ui/dialogs/useDialog'; +import Field from '@codaco/fresco-ui/form/Field/Field'; +import { FormWithoutProvider } from '@codaco/fresco-ui/form/Form'; +import SubmitButton from '@codaco/fresco-ui/form/SubmitButton'; +import Checkbox from '@codaco/fresco-ui/form/fields/Checkbox'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import PasswordField from '@codaco/fresco-ui/form/fields/PasswordField'; +import FormStoreProvider from '@codaco/fresco-ui/form/store/formStoreProvider'; +import { type FormSubmissionResult } from '@codaco/fresco-ui/form/store/types'; +import { type GetUsersReturnType } from '~/queries/users'; + +type UserRow = GetUsersReturnType[number]; + +type Passkey = { + id: string; + friendlyName: string | null; + deviceType: string; + createdAt: Date; + lastUsedAt: Date | null; + backedUp: boolean; +}; + +type UserManagementProps = { + usersPromise: Promise; + currentUserId: string; + currentUsername: string; + hasTwoFactorPromise: Promise; + passkeysPromise: Promise; + hasPasswordPromise: Promise; + sandboxMode: boolean; +}; + +const usernameSchema = z + .string() + .check(z.minLength(4, 'Username must be at least 4 characters')) + .check(z.refine((s) => !s.includes(' '), 'Username cannot contain spaces')); + +const usernameUniqueSchema = z.string().check( + z.refine(async (username) => { + if (!username || username.length < 4 || username.includes(' ')) { + return true; // Let the basic validation handle these cases + } + const result = await checkUsernameAvailable(username); + return result.available; + }, 'Username is already taken'), +); + +const passwordSchema = z + .string() + .check(z.minLength(8, 'Password must be at least 8 characters')) + .check(z.regex(/[a-z]/, 'Password must contain at least 1 lowercase letter')) + .check(z.regex(/[A-Z]/, 'Password must contain at least 1 uppercase letter')) + .check(z.regex(/[0-9]/, 'Password must contain at least 1 number')) + .check(z.regex(/[^a-zA-Z0-9]/, 'Password must contain at least 1 symbol')); + +function makeUserColumns( + currentUserId: string, + userCount: number, + onDeleteUser: (user: UserRow) => void, + onResetAuth: (user: UserRow) => void, +): StrictColumnDef[] { + return [ + { + id: 'select', + header: ({ table }) => ( + + table.toggleAllPageRowsSelected(!!value) + } + aria-label="Select all" + /> + ), + cell: ({ row }) => { + const isCurrentUser = row.original.id === currentUserId; + return ( + row.toggleSelected(!!value)} + aria-label="Select row" + disabled={isCurrentUser} + /> + ); + }, + enableSorting: false, + enableHiding: false, + }, + { + id: 'username', + accessorKey: 'username', + sortingFn: 'text', + header: ({ column }) => ( + + ), + cell: ({ row }) => { + const isCurrentUser = row.original.id === currentUserId; + return ( +
+ {row.original.username} + {isCurrentUser && ( + (you) + )} +
+ ); + }, + }, + { + id: 'authMethod', + enableSorting: false, + header: ({ column }) => ( + + ), + cell: ({ row }) => { + const hasPasskeys = row.original.webAuthnCredentials.length > 0; + const has2FA = row.original.totpCredential?.verified === true; + + if (hasPasskeys) return 'Passkey'; + if (has2FA) return 'Password + 2FA'; + return 'Password'; + }, + }, + { + id: 'actions', + enableSorting: false, + header: ({ column }) => ( + + ), + cell: ({ row }) => { + const isCurrentUser = row.original.id === currentUserId; + const isLastUser = userCount <= 1; + const hasAuth = + row.original.totpCredential?.verified === true || + row.original.webAuthnCredentials.length > 0; + return ( +
+ {hasAuth && !isCurrentUser && ( + + )} + +
+ ); + }, + }, + ]; +} + +export default function UserManagement({ + usersPromise, + currentUserId, + currentUsername, + hasTwoFactorPromise, + passkeysPromise, + hasPasswordPromise, + sandboxMode, +}: UserManagementProps) { + // TanStack Table: consumers must also opt out so React Compiler doesn't memoize JSX that depends on the table ref. + 'use no memo'; + const router = useRouter(); + const users = use(usersPromise); + const hasTwoFactor = use(hasTwoFactorPromise); + const initialPasskeys = use(passkeysPromise); + const hasPassword = use(hasPasswordPromise); + const [isCreating, setIsCreating] = useState(false); + const [isChangingPassword, setIsChangingPassword] = useState(false); + const [passwordChangeSuccess, setPasswordChangeSuccess] = useState(false); + const [error, setError] = useState(null); + const [showSwitchToPasskey, setShowSwitchToPasskey] = useState(false); + const [showSwitchToPassword, setShowSwitchToPassword] = useState(false); + const [switchToPasswordReauthed, setSwitchToPasswordReauthed] = + useState(false); + const [switchToPasswordReauthError, setSwitchToPasswordReauthError] = + useState(null); + const [switchToPasswordReauthLoading, setSwitchToPasswordReauthLoading] = + useState(false); + + const { confirm } = useDialog(); + + const doDeleteUsers = useCallback( + async (usersToDelete: UserRow[]) => { + const ids = usersToDelete.map((u) => u.id); + const result = await deleteUsers({ ids }); + + if (result.error) { + setError(result.error); + return; + } + + router.refresh(); + }, + [router], + ); + + const handleDeleteUser = useCallback( + (user: UserRow) => { + void confirm({ + title: 'Delete User', + description: `Are you sure you want to delete the user "${user.username}"? This action cannot be undone.`, + confirmLabel: 'Delete User', + intent: 'destructive', + onConfirm: () => doDeleteUsers([user]), + }); + }, + [confirm, doDeleteUsers], + ); + + const [tempPassword, setTempPassword] = useState(null); + + const handleResetAuth = useCallback( + (user: UserRow) => { + void confirm({ + title: 'Reset Authentication', + description: `This will remove all passkeys, 2FA, and recovery codes for ${user.username}, and set a temporary password. They will need to set up their authentication again.`, + confirmLabel: 'Reset Auth', + intent: 'destructive', + onConfirm: async () => { + const result = await resetAuthForUser(user.id); + if (result.error) { + setError(result.error); + } else if (result.data?.temporaryPassword) { + setTempPassword(result.data.temporaryPassword); + } + }, + }); + }, + [confirm], + ); + + const columns = makeUserColumns( + currentUserId, + users.length, + handleDeleteUser, + handleResetAuth, + ); + + const handleDeleteSelected = useCallback( + (selectedUsers: UserRow[]) => { + const deletableUsers = selectedUsers.filter( + (user) => user.id !== currentUserId, + ); + + if (deletableUsers.length === 0) { + setError('You cannot delete your own account'); + return; + } + + const isSingle = deletableUsers.length === 1; + void confirm({ + title: isSingle ? 'Delete User' : 'Delete Multiple Users', + description: isSingle + ? `Are you sure you want to delete the user "${deletableUsers[0]?.username}"? This action cannot be undone.` + : `Are you sure you want to delete ${deletableUsers.length} users? This action cannot be undone.`, + confirmLabel: isSingle + ? 'Delete User' + : `Delete ${deletableUsers.length} Users`, + intent: 'destructive', + onConfirm: () => doDeleteUsers(deletableUsers), + }); + }, + [currentUserId, confirm, doDeleteUsers], + ); + + const { table } = useClientDataTable({ + data: users, + columns, + enablePagination: false, + enableRowSelection: (row) => row.original.id !== currentUserId, + }); + + const handleCreateUser = async ( + values: unknown, + ): Promise => { + setError(null); + + const { username, password, confirmPassword } = values as { + username: string; + password: string; + confirmPassword: string; + }; + + if (password !== confirmPassword) { + return { + success: false, + formErrors: ['Passwords do not match'], + }; + } + + const result = await createUser({ username, password, confirmPassword }); + + if (result.error) { + return { + success: false, + formErrors: [result.error], + }; + } + + setIsCreating(false); + router.refresh(); + return { success: true }; + }; + + const handleChangePassword = async ( + values: unknown, + ): Promise => { + const { currentPassword, newPassword, confirmNewPassword } = values as { + currentPassword: string; + newPassword: string; + confirmNewPassword: string; + }; + + if (newPassword !== confirmNewPassword) { + return { + success: false, + formErrors: ['New passwords do not match'], + }; + } + + const result = await changePassword({ + currentPassword, + newPassword, + confirmNewPassword, + }); + + if (result.error) { + return { + success: false, + formErrors: [result.error], + }; + } + + setPasswordChangeSuccess(true); + setTimeout(() => { + setIsChangingPassword(false); + setPasswordChangeSuccess(false); + }, 1500); + + return { success: true }; + }; + + const handleSwitchToPasskey = async ( + values: unknown, + ): Promise => { + const { currentPassword } = values as { currentPassword: string }; + + const { error: genError, data } = await generateRegistrationOptions(); + if (genError || !data) { + return { + success: false, + formErrors: [genError ?? 'Failed to start registration'], + }; + } + + let credential; + try { + credential = await startRegistration({ optionsJSON: data.options }); + } catch (e) { + if (e instanceof Error && e.name === 'NotAllowedError') { + return { success: false, formErrors: ['Passkey creation cancelled.'] }; + } + return { success: false, formErrors: ['Passkey creation failed.'] }; + } + + const result = await switchToPasskeyMode({ currentPassword, credential }); + + if (result.error) { + return { success: false, formErrors: [result.error] }; + } + + setShowSwitchToPasskey(false); + router.refresh(); + return { success: true }; + }; + + const handleSwitchToPasswordReauth = async () => { + setSwitchToPasswordReauthError(null); + setSwitchToPasswordReauthLoading(true); + + try { + const { error: genError, data: regData } = + await generateAuthenticationOptions(); + if (genError || !regData) { + setSwitchToPasswordReauthError( + genError ?? 'Failed to start verification', + ); + setSwitchToPasswordReauthLoading(false); + return; + } + + const credential = await startAuthentication({ + optionsJSON: regData.options, + }); + + const result = await verifyPasskeyReauth({ credential }); + + if (result.error) { + setSwitchToPasswordReauthError(result.error); + setSwitchToPasswordReauthLoading(false); + return; + } + + setSwitchToPasswordReauthed(true); + setSwitchToPasswordReauthLoading(false); + } catch (e) { + if (e instanceof Error && e.name === 'NotAllowedError') { + setSwitchToPasswordReauthLoading(false); + return; + } + setSwitchToPasswordReauthError('Verification failed'); + setSwitchToPasswordReauthLoading(false); + } + }; + + const handleSwitchToPassword = async ( + values: unknown, + ): Promise => { + const { newPassword, confirmNewPassword } = values as { + newPassword: string; + confirmNewPassword: string; + }; + + if (newPassword !== confirmNewPassword) { + return { + success: false, + formErrors: ['Passwords do not match'], + }; + } + + const result = await switchToPasswordMode(newPassword); + + if (result.error) { + return { success: false, formErrors: [result.error] }; + } + + setShowSwitchToPassword(false); + setSwitchToPasswordReauthed(false); + router.refresh(); + return { success: true }; + }; + + return ( +
+ +
+
+
+
+ +
+
+ + Logged in as: + + + {currentUsername} + +
+
+ {hasPassword && !sandboxMode && ( + + )} +
+ {hasPassword && !hasTwoFactor && !sandboxMode && ( + + Security Warning + + Your account is only protected by a password. Enable two-factor + authentication for stronger security. + + + )} +
+ + {hasPassword ? ( + <> + + {!sandboxMode && ( + setShowSwitchToPasskey(true)} + size="sm" + color="destructive" + > + Switch to Passkey + + } + /> + )} + + ) : ( + <> + + {users.length === 1 && ( +
+ + + You are the only user. If you lose access to your passkey, + you will be locked out. Consider adding another user or + backing up your passkey. + + +
+ )} + {!sandboxMode && ( + setShowSwitchToPassword(true)} + size="sm" + color="destructive" + > + Switch to Password + + } + /> + )} + + )} +
+
+
+ All Users + +
+ + + + + } + /> +
+ + { + setIsChangingPassword(false); + setPasswordChangeSuccess(false); + }} + title="Change Password" + description="Update your account password." + footer={ + passwordChangeSuccess ? null : ( + <> + + + Update Password + + + ) + } + > + {passwordChangeSuccess ? ( +
+ Password updated successfully! +
+ ) : ( + + + + + + + )} +
+
+ {/* Create User Dialog */} + + { + setIsCreating(false); + setError(null); + }} + title="Add User" + footer={ + <> + + Create User + + } + > + + {error && ( +
{error}
+ )} + + + +
+
+
+ setTempPassword(null)} + title="Temporary Password" + description="The user's authentication has been reset. Share this temporary password with them so they can sign in and set up their account again." + footer={ + + } + > +
+ + {tempPassword} + +
+
+ {/* Switch to Passkey Dialog */} + + setShowSwitchToPasskey(false)} + title="Switch to Passkey Authentication" + description="Enter your current password, then register a passkey. Your password and two-factor authentication will be removed." + footer={ + <> + + + Switch to Passkey + + + } + > + + + + + + + {/* Switch to Password Dialog */} + + { + setShowSwitchToPassword(false); + setSwitchToPasswordReauthed(false); + setSwitchToPasswordReauthError(null); + setSwitchToPasswordReauthLoading(false); + }} + title="Switch to Password Authentication" + description="All your passkeys will be removed and replaced with a password." + footer={ + switchToPasswordReauthed ? ( + <> + + + Switch to Password + + + ) : null + } + > + {switchToPasswordReauthed ? ( + + + + + + ) : ( +
+ + Verify your identity with a passkey to continue. + + {switchToPasswordReauthError && ( +

+ {switchToPasswordReauthError} +

+ )} + +
+ )} +
+
+
+ ); +} diff --git a/app/dashboard/settings/_components/UserManagementSection.tsx b/app/dashboard/settings/_components/UserManagementSection.tsx new file mode 100644 index 000000000..ac6745c54 --- /dev/null +++ b/app/dashboard/settings/_components/UserManagementSection.tsx @@ -0,0 +1,65 @@ +import SettingsCard from '~/components/settings/SettingsCard'; +import { env } from '~/env'; +import { prisma } from '~/lib/db'; +import { getUsers } from '~/queries/users'; +import UserManagement from './UserManagement'; + +async function getHasTwoFactor(userId: string) { + const result = await prisma.totpCredential.findFirst({ + where: { user_id: userId, verified: true }, + select: { id: true }, + }); + + return !!result; +} + +async function getPasskeys(userId: string) { + return prisma.webAuthnCredential.findMany({ + where: { user_id: userId }, + select: { + id: true, + friendlyName: true, + deviceType: true, + createdAt: true, + lastUsedAt: true, + backedUp: true, + }, + orderBy: { createdAt: 'desc' }, + }); +} + +async function getHasPassword(userId: string) { + const key = await prisma.key.findFirst({ + where: { user_id: userId }, + select: { hashed_password: true }, + }); + + return !!key?.hashed_password; +} + +export default function UserManagementSection({ + userId, + username, +}: { + userId: string; + username: string; +}) { + const usersPromise = getUsers(); + const hasTwoFactorPromise = getHasTwoFactor(userId); + const passkeysPromise = getPasskeys(userId); + const hasPasswordPromise = getHasPassword(userId); + + return ( + + + + ); +} diff --git a/app/dashboard/settings/page.tsx b/app/dashboard/settings/page.tsx new file mode 100644 index 000000000..be8330fcd --- /dev/null +++ b/app/dashboard/settings/page.tsx @@ -0,0 +1,119 @@ +import { Suspense } from 'react'; +import { SettingsCardSkeleton } from '~/components/settings/SettingsCard'; +import SettingsNavigation, { + type SettingsSection, +} from '~/components/settings/SettingsNavigation'; +import PageHeader from '@codaco/fresco-ui/typography/PageHeader'; +import { env } from '~/env'; +import { requirePageAuth } from '~/lib/auth/guards'; +import { requireAppNotExpired } from '~/queries/appSettings'; +import ApiTokensSection from './_components/ApiTokensSection'; +import ConfigurationSection from './_components/ConfigurationSection'; +import DeveloperToolsSection from './_components/DeveloperToolsSection'; +import InterviewSettingsSection from './_components/InterviewSettingsSection'; +import PrivacySection from './_components/PrivacySection'; +import StorageProviderSection from './_components/StorageProviderSection'; +import SyntheticInterviewDataServer from './_components/SyntheticInterviewDataServer'; +import UserManagementSection from './_components/UserManagementSection'; + +function getSettingsSections(): SettingsSection[] { + const sections: SettingsSection[] = [ + { id: 'app-details', title: 'App Details' }, + { id: 'user-management', title: 'User Management' }, + { id: 'storage', title: 'Storage' }, + { id: 'interview-settings', title: 'Interview Settings' }, + { id: 'privacy', title: 'Privacy' }, + { id: 'api-tokens', title: 'API Tokens' }, + { id: 'synthetic-interview-data', title: 'Synthetic Interview Data' }, + ]; + + if (env.NODE_ENV === 'development' || !env.SANDBOX_MODE) { + sections.push({ + id: 'developer-tools', + title: 'Developer Tools', + variant: 'destructive', + }); + } + + return sections; +} + +function SettingsContentSkeleton() { + const sections = getSettingsSections(); + + return ( +
+
+ +
+ + + + + + + + {(env.NODE_ENV === 'development' || !env.SANDBOX_MODE) && ( + + )} +
+
+
+ ); +} + +export default function Settings() { + return ( + <> + + }> + + + + ); +} + +async function SettingsContent() { + await requireAppNotExpired(); + const session = await requirePageAuth(); + const sections = getSettingsSections(); + + return ( +
+
+ +
+ }> + + + }> + + + }> + + + }> + + + + }> + + + }> + + + {(env.NODE_ENV === 'development' || !env.SANDBOX_MODE) && ( + + )} +
+
+
+ ); +} diff --git a/app/error.tsx b/app/error.tsx new file mode 100644 index 000000000..c768c037a --- /dev/null +++ b/app/error.tsx @@ -0,0 +1,74 @@ +'use client'; + +import { ClipboardCopy } from 'lucide-react'; +import posthog from 'posthog-js'; +import { useEffect } from 'react'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import { useToast } from '@codaco/fresco-ui/Toast'; + +export default function Error({ + error, + reset, +}: { + error: Error; + reset: () => void; + heading?: string; +}) { + const { add } = useToast(); + + const handleReset = () => { + reset(); + }; + + const copyDebugInfoToClipboard = async () => { + const debugInfo = ` +Error: ${error.message} +Path: ${window.location.pathname} +User Agent: ${navigator.userAgent} +Stack Trace: +${error.stack}`; + + await navigator.clipboard.writeText(debugInfo); + add({ + title: 'Success', + description: 'Debug information copied to clipboard', + variant: 'success', + }); + }; + + useEffect(() => { + posthog.captureException(error); + }, [error]); + + return ( +
+ + + Something went wrong. + + + Fresco encountered an error while trying to load the page, and could + not continue. + + + This error has been automatically reported to us, but if you would + like to provide further information that you think might be useful + please contact us. You can also use the retry button to attempt to + load the page again. + +
+
+ + +
+
+
+ ); +} diff --git a/app/global-error.tsx b/app/global-error.tsx new file mode 100644 index 000000000..234f4fb1f --- /dev/null +++ b/app/global-error.tsx @@ -0,0 +1,82 @@ +'use client'; + +import { ClipboardCopy } from 'lucide-react'; +import Image from 'next/image'; +import posthog from 'posthog-js'; +import { useEffect, useState } from 'react'; +import Surface from '@codaco/fresco-ui/layout/Surface'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; +import { Button } from '@codaco/fresco-ui/Button'; +import Link from '~/components/Link'; + +export default function Error({ + error, + reset, +}: { + error: Error; + reset: () => void; + heading?: string; +}) { + const [copied, setCopied] = useState(false); + + const handleReset = () => { + reset(); + }; + + const copyDebugInfoToClipboard = async () => { + const debugInfo = ` +Error: ${error.message} +Path: ${window.location.pathname} +User Agent: ${navigator.userAgent} +Stack Trace: +${error.stack}`; + + await navigator.clipboard.writeText(debugInfo); + setCopied(true); + setTimeout(() => setCopied(false), 2000); + }; + + useEffect(() => { + posthog.captureException(error); + }, [error]); + + return ( +
+ +
+ Error robot + + There's a problem with Fresco. + +
+ + Fresco encountered a serious error and is unable to continue. + + + This could indicate a problem with your deployment, or it could be a + bug in the application. We've been notified and will investigate + the issue, but please feel free to reach out via our{' '} + + community website + + . + +
+ + +
+
+
+ ); +} diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 000000000..333d67694 --- /dev/null +++ b/app/layout.tsx @@ -0,0 +1,63 @@ +import { type Metadata, type Viewport } from 'next'; +import { connection } from 'next/server'; +import { Suspense } from 'react'; +import Providers from '~/components/Providers'; +import { PostHogIdentify } from '~/components/Providers/PosthogIdentify'; +import { env } from '~/env'; +import { getDisableAnalytics, getInstallationId } from '~/queries/appSettings'; +import '@codaco/tailwind-config/fonts/inclusive-sans.css'; +import '@codaco/tailwind-config/fonts/nunito.css'; +import '~/styles/globals.css'; + +export const metadata: Metadata = { + title: 'Network Canvas Fresco', + description: 'Fresco.', +}; + +export const viewport: Viewport = { + viewportFit: 'cover', +}; + +async function AnalyticsLoader() { + // Opt this subtree out of prerendering — getInstallationId and + // getDisableAnalytics can fall back to the database, which isn't + // available at build time (e.g. when building the distributable + // Docker image). The boundary in RootLayout lets Next + // stream this in at request time instead. + await connection(); + + try { + const [installationId, disableAnalytics] = await Promise.all([ + getInstallationId(), + getDisableAnalytics(), + ]); + + return ( + + ); + } catch { + return null; + } +} + +function RootLayout({ children }: { children: React.ReactNode }) { + return ( + + +
+ + + + + {children} + +
+ + + ); +} + +export default RootLayout; diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 000000000..43f33771e --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,13 @@ +import { FileWarning } from 'lucide-react'; +import Heading from '@codaco/fresco-ui/typography/Heading'; +import Paragraph from '@codaco/fresco-ui/typography/Paragraph'; + +export default function NotFound() { + return ( +
+ + 404 + Page not found. +
+ ); +} diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 000000000..7a4e2de8a --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,5 @@ +import { permanentRedirect } from 'next/navigation'; + +export default function Home() { + permanentRedirect('/dashboard'); +} diff --git a/app/reset/route.ts b/app/reset/route.ts new file mode 100644 index 000000000..5e056aff2 --- /dev/null +++ b/app/reset/route.ts @@ -0,0 +1,27 @@ +import { revalidatePath } from 'next/cache'; +import { redirect } from 'next/navigation'; +import { safeRevalidateTag } from '~/lib/cache'; + +/** + * + * This is an emergency bailout for if the server ends up with stale + * data (such as appSettings, or session) that cannot be cleared by the user. + * + * For example, if a database is wiped outside of the app, app settings won't + * be refetched automatically because they are aggressively cached. This can + * cause issues such as being redirected to the login screen, even though the + * app is unconfigured and there are no users. + * + * Visiting this route handler should clear all caches and redirect the user + * to the root of the app. + */ +export function GET() { + revalidatePath('/'); + safeRevalidateTag('appSettings'); + safeRevalidateTag('getInterviews'); + safeRevalidateTag('getParticipants'); + safeRevalidateTag('getProtocols'); + safeRevalidateTag('activityFeed'); + + redirect('/'); +} diff --git a/apps/electron-backend/.eslintrc b/apps/electron-backend/.eslintrc deleted file mode 100644 index 11643ef33..000000000 --- a/apps/electron-backend/.eslintrc +++ /dev/null @@ -1,12 +0,0 @@ -{ - "root": true, - "parser": "@typescript-eslint/parser", - "plugins": [ - "@typescript-eslint" - ], - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended" - ] -} diff --git a/apps/electron-backend/.gitignore b/apps/electron-backend/.gitignore deleted file mode 100644 index 76add878f..000000000 --- a/apps/electron-backend/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules -dist \ No newline at end of file diff --git a/apps/electron-backend/loading.html b/apps/electron-backend/loading.html deleted file mode 100644 index 19f119e07..000000000 --- a/apps/electron-backend/loading.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - Loading... - - - - - - - -
- - diff --git a/apps/electron-backend/package.json b/apps/electron-backend/package.json deleted file mode 100644 index 6b3420fb1..000000000 --- a/apps/electron-backend/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "electron-backend", - "version": "0.0.0", - "private": true, - "scripts": { - "dev": "tsc && vite", - "build": "tsc && vite build" - }, - "main": "dist/main.js", - "devDependencies": { - "electron": "^23.0.0", - "typescript": "^4.9.5" - }, - "dependencies": { - "@codaco/api": "*", - "database": "*", - "electron-trpc": "^0.4.1", - "vite": "^4.1.1", - "vite-plugin-electron": "^0.11.1", - "wait-for-server-up": "*" - } -} diff --git a/apps/electron-backend/readme.md b/apps/electron-backend/readme.md deleted file mode 100644 index 37ec00eef..000000000 --- a/apps/electron-backend/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -Use: -- -- \ No newline at end of file diff --git a/apps/electron-backend/src/connectPrisma.ts b/apps/electron-backend/src/connectPrisma.ts deleted file mode 100644 index c7b3bdacd..000000000 --- a/apps/electron-backend/src/connectPrisma.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { PrismaClient } from 'database'; - -declare global { - var prisma: PrismaClient | undefined; -} - -export const prisma = - global.prisma || new PrismaClient({ log: ['query', 'info'] }); - -if (process.env.NODE_ENV !== 'production') { - global.prisma = prisma; -} - -async function connectDB() { - try { - await prisma.$connect(); - console.log('🚀 Database connected successfully'); - } catch (error) { - console.log(error); - process.exit(1); - } finally { - await prisma.$disconnect(); - } -} - -export default connectDB; \ No newline at end of file diff --git a/apps/electron-backend/src/env.d.ts b/apps/electron-backend/src/env.d.ts deleted file mode 100644 index f3b45a19a..000000000 --- a/apps/electron-backend/src/env.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -/// - -// This provides type support for Vite's import.meta.env in your TypeScript code - -interface ImportMetaEnv { - readonly VITE_APP_TITLE: string - // more env variables... - readonly VITE_APP_PLATFORM: 'electron' | 'web' -} - -interface ImportMeta { - readonly env: ImportMetaEnv -} \ No newline at end of file diff --git a/apps/electron-backend/src/main.ts b/apps/electron-backend/src/main.ts deleted file mode 100644 index 91f552cc6..000000000 --- a/apps/electron-backend/src/main.ts +++ /dev/null @@ -1,80 +0,0 @@ -import { app, BrowserWindow } from "electron"; -import * as path from "node:path"; -import connectDB from "./connectPrisma"; -import { waitForServerUp } from "./waitForServerUp"; -import { createIPCHandler } from 'electron-trpc/main'; -import { appRouter, createTRPCContext } from '@codaco/api'; - -// TODO: maybe better "production detection" -const isProduction = import.meta.env.PROD; -const FRONTEND_PROD_PATH = path.join(__dirname, "../dist-frontend/"); -const FRONTEND_DEV_PATH = 'http://localhost:3000/'; - -async function createWindow() { - // Create the browser window. - const mainWindow = new BrowserWindow({ - height: 800, - webPreferences: { - preload: path.join(__dirname, "preload.js"), - allowRunningInsecureContent: false, // https://www.electronjs.org/docs/latest/tutorial/security#8-do-not-enable-allowrunninginsecurecontent - enableBlinkFeatures: "", // https://www.electronjs.org/docs/latest/tutorial/security#10-do-not-use-enableblinkfeatures - experimentalFeatures: false, // https://www.electronjs.org/docs/latest/tutorial/security#9-do-not-enable-experimental-features - nodeIntegration: false, - contextIsolation: true, - // prefer exposing a method via contextBridge before turning off the sandbox. https://www.electronjs.org/docs/latest/api/context-bridge - // https://www.electronjs.org/docs/latest/tutorial/context-isolation#security-considerations - sandbox: true, // enable when using Node.js api in the preload script like https://github.com/cawa-93/vite-electron-builder/tree/main/packages/preload/src - webSecurity: true, // https://www.electronjs.org/docs/latest/tutorial/security#6-do-not-disable-websecurity - webviewTag: false, // The webview tag is not recommended. Consider alternatives like an iframe or Electron's BrowserView. @see https://www.electronjs.org/docs/latest/api/webview-tag#warning - }, - width: 1024, - }); - - await connectDB(); - - if (isProduction) { - // load bundled React app - mainWindow.loadFile(path.join(FRONTEND_PROD_PATH, "index.html")); - } else { - // show loading spinner while local server is ready - mainWindow.loadFile(path.join(__dirname, "../loading.html")); - await waitForServerUp(FRONTEND_DEV_PATH) - // load locally served React app in dev mode - mainWindow.loadURL(FRONTEND_DEV_PATH); - - // Open the DevTools. - mainWindow.webContents.openDevTools(); - } - - - createIPCHandler({ - createContext: createTRPCContext, - router: appRouter, - windows: [mainWindow] - }); -} - -// This method will be called when Electron has finished -// initialization and is ready to create browser windows. -// Some APIs can only be used after this event occurs. -app.on("ready", () => { - createWindow(); - - app.on("activate", function () { - // On macOS it's common to re-create a window in the app when the - // dock icon is clicked and there are no other windows open. - if (BrowserWindow.getAllWindows().length === 0) createWindow(); - }); -}); - -// Quit when all windows are closed, except on macOS. There, it's common -// for applications and their menu bar to stay active until the user quits -// explicitly with Cmd + Q. -app.on("window-all-closed", () => { - if (process.platform !== "darwin") { - app.quit(); - } -}); - -// In this file you can include the rest of your app"s specific main process -// code. You can also put them in separate files and require them here. diff --git a/apps/electron-backend/src/preload.ts b/apps/electron-backend/src/preload.ts deleted file mode 100644 index c16be080c..000000000 --- a/apps/electron-backend/src/preload.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { contextBridge } from 'electron'; -import { exposeElectronTRPC } from 'electron-trpc/main'; - -process.once('loaded', async () => { - exposeElectronTRPC(); -}); - -contextBridge.exposeInMainWorld('versions', { - node: () => process.versions.node, - chrome: () => process.versions.chrome, - electron: () => process.versions.electron, -}); \ No newline at end of file diff --git a/apps/electron-backend/src/waitForServerUp.ts b/apps/electron-backend/src/waitForServerUp.ts deleted file mode 100644 index 35367cc2c..000000000 --- a/apps/electron-backend/src/waitForServerUp.ts +++ /dev/null @@ -1,20 +0,0 @@ -import * as http from "http"; - -function isHostUp(url: string): Promise { - return new Promise(resolve => { - http.get(url, () => { resolve(true) }) - .on("error", (e) => { - resolve(false) - }); - }); -} - -const wait = (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); -export async function waitForServerUp(url: string) { - while (true) { - const isUp = await isHostUp(url); - if (isUp) break; - await wait(1000); - } - console.log("✅ local server: up"); -} diff --git a/apps/electron-backend/tsconfig.json b/apps/electron-backend/tsconfig.json deleted file mode 100644 index 14f750cfa..000000000 --- a/apps/electron-backend/tsconfig.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "compilerOptions": { - "alwaysStrict": true, - "strict": true, - "target": "ESNext", - "esModuleInterop": true, - "composite": true, - "module": "ESNext", - "moduleResolution": "nodenext", - "noImplicitAny": true, - "skipLibCheck": true, - "sourceMap": true, - "resolveJsonModule": true, - "allowSyntheticDefaultImports": true, - "outDir": "dist", - }, - "exclude": [ - "node_modules" - ], - "include": [ - // "vite.config.ts", - "package.json", - "src/**/*" - ] -} \ No newline at end of file diff --git a/apps/electron-backend/vite.config.ts b/apps/electron-backend/vite.config.ts deleted file mode 100644 index 0b3fb7733..000000000 --- a/apps/electron-backend/vite.config.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { rmSync } from 'node:fs' -import { defineConfig } from 'vite' - -// https://vitejs.dev/config/ -export default defineConfig(() => { - rmSync('dist', { recursive: true, force: true }) - - return { - build: { - // ssr: true, - sourcemap: 'inline', - // Minify when in producrion - minify: process.env.MODE !== 'development', - target: 'node18', - outDir: 'dist', - assetsDir: '.', - lib: { - entry: ["./src/main.ts", "./src/preload.ts"], - fileName: "[name]", - formats: ["cjs"], - }, - rollupOptions: { - // input: { - // "main": "./src/main.ts", - // "preload": "./src/preload.ts", - // }, - external: [ - 'electron', - 'electron-devtools-installer', - 'electron-log', - 'electron-updater', - 'prisma', - "@prisma/client", - "superjson", - ] - }, - emptyOutDir: true, - }, - } -}) \ No newline at end of file diff --git a/apps/electron-packager/.gitignore b/apps/electron-packager/.gitignore deleted file mode 100644 index 0dee1f6a7..000000000 --- a/apps/electron-packager/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -node_modules -pkg -dist-frontend -dist-backend diff --git a/apps/electron-packager/electron-builder-config.yaml b/apps/electron-packager/electron-builder-config.yaml deleted file mode 100644 index 01dd4874b..000000000 --- a/apps/electron-packager/electron-builder-config.yaml +++ /dev/null @@ -1,20 +0,0 @@ -directories: - output: ./pkg/ -appId: org.codaco.networkCanvasInterviewer7 -asar: false -extraMetadata: - name: network-canvas-interviewer -files: - - filter: - - ./dist-backend/**/* - - ./dist-frontend/**/* -mac: - category: public.app-category.education - target: - target: dmg - arch: - - x64 - - arm64 -linux: - target: appimage -electronVersion: 23.0.0 diff --git a/apps/electron-packager/package.json b/apps/electron-packager/package.json deleted file mode 100644 index 10e7eecd2..000000000 --- a/apps/electron-packager/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "electron-packager", - "version": "0.0.0", - "main": "dist-backend/main.js", - "scripts": { - "copy-backend": "rm -fr dist-backend/ && cp -R ../electron-backend/dist/ dist-backend", - "copy-frontend": "rm -fr dist-frontend/ && cp -R ../frontend/dist/ dist-frontend", - "prepackage": "yarn run copy-backend && yarn run copy-frontend", - "package": "electron-builder --config ./electron-builder-config.yaml", - "prepackage-dir": "npm run prepackage", - "package-dir": "electron-builder --config ./electron-builder-config.yaml --dir --config.asar=false", - "clean": "rm -fr dist dist-frontend pkg" - }, - "devDependencies": { - "electron-builder": "^23.6.0" - } -} diff --git a/apps/frontend/.gitignore b/apps/frontend/.gitignore deleted file mode 100644 index a547bf36d..000000000 --- a/apps/frontend/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/apps/frontend/index.html b/apps/frontend/index.html deleted file mode 100644 index a7b82ecda..000000000 --- a/apps/frontend/index.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - Vite + React + TS - - -
- - - diff --git a/apps/frontend/package.json b/apps/frontend/package.json deleted file mode 100644 index 1dc80dee6..000000000 --- a/apps/frontend/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "frontend", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "tsc && vite build", - "preview": "vite preview" - }, - "dependencies": { - "electron-trpc": "^0.4.1", - "react": "^18.2.0", - "react-dom": "^18.2.0" - }, - "devDependencies": { - "@tanstack/react-query": "^4.24.6", - "@tanstack/react-query-devtools": "^4.24.6", - "@trpc/client": "^10.11.1", - "@trpc/react-query": "^10.11.1", - "@trpc/server": "^10.11.1", - "@types/react": "^18.0.27", - "@types/react-dom": "^18.0.10", - "@vitejs/plugin-react-swc": "^3.0.0", - "superjson": "^1.12.2", - "typescript": "^4.9.3", - "vite": "^4.1.0" - } -} diff --git a/apps/frontend/public/vite.svg b/apps/frontend/public/vite.svg deleted file mode 100644 index e7b8dfb1b..000000000 --- a/apps/frontend/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/frontend/src/App.css b/apps/frontend/src/App.css deleted file mode 100644 index b9d355df2..000000000 --- a/apps/frontend/src/App.css +++ /dev/null @@ -1,42 +0,0 @@ -#root { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; -} - -.logo { - height: 6em; - padding: 1.5em; - will-change: filter; - transition: filter 300ms; -} -.logo:hover { - filter: drop-shadow(0 0 2em #646cffaa); -} -.logo.react:hover { - filter: drop-shadow(0 0 2em #61dafbaa); -} - -@keyframes logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -@media (prefers-reduced-motion: no-preference) { - a:nth-of-type(2) .logo { - animation: logo-spin infinite 20s linear; - } -} - -.card { - padding: 2em; -} - -.read-the-docs { - color: #888; -} diff --git a/apps/frontend/src/App.tsx b/apps/frontend/src/App.tsx deleted file mode 100644 index c5151846f..000000000 --- a/apps/frontend/src/App.tsx +++ /dev/null @@ -1,123 +0,0 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import './App.css' -import { trpc } from './utils/trpc' -import { QueryClient, QueryClientProvider } from '@tanstack/react-query' -import { createTRPCReact, getFetch, httpBatchLink, loggerLink } from '@trpc/react-query'; -import { AppRouter } from '@codaco/api' -import { ipcLink } from 'electron-trpc/renderer' - -const trpcReact = createTRPCReact(); - -const AppContent = () => { - const [userName, setUserName] = useState(''); - const utils = trpc.useContext(); - - const { - data: users, - isFetching, - isLoading, - error, - } = trpc.user.all.useQuery(); - - const { - mutate: createUser, - isLoading: isCreatingUser, - isError: isCreateUserError, - } = trpc.user.create.useMutation({ - onSuccess: () => { - utils.user.all.invalidate(); // https://trpc.io/docs/useContext#query-invalidation - } - }); - - const handleSubmit = () => { - createUser({ - name: userName, - email: `${userName}@places.com` - }); - setUserName(''); - } - - - return ( -
-

Users

- setUserName(e.target.value)} /> - - {isCreateUserError &&

Error creating user

} - {isCreatingUser &&

Creating user...

} - {isLoading &&

Loading...

} - {isFetching &&

Updating...

} - {error &&

{error.message}

} -
    - {users && users.map((user) => ( -
  • {user.name} - {user.email}
  • - ))} -
-
- ) -} - -function App() { - const [queryClient] = useState(() => new QueryClient({ - defaultOptions: { - queries: { - // https://react-query.tanstack.com/guides/window-focus-refetching - // Should set to true for web but false for Electron. - // This is because on Electron we know the data won't have changed - // when we weren't looking! - refetchOnWindowFocus: false, - }, - }, - })); - - // const [trpcClient] = useState(() => getClient()); - - const [trpcClient] = useState(() => { - - // Electron - return trpcReact.createClient({ - links: [loggerLink(), ipcLink()], - }) - - // Browser - return trpc.createClient({ - // transformer: superjson, - links: [ - loggerLink(), - httpBatchLink({ - url: "http://localhost:3001/api/trpc", - fetch: async (input, init?) => { - const fetch = getFetch(); - return fetch(input, { - ...init, - }); - }, - }), - ], - }) - - - } - ); - - return ( - - -
- - -
-
-
- ) -} - -export default App diff --git a/apps/frontend/src/assets/react.svg b/apps/frontend/src/assets/react.svg deleted file mode 100644 index 6c87de9bb..000000000 --- a/apps/frontend/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/frontend/src/index.css b/apps/frontend/src/index.css deleted file mode 100644 index 2c3fac689..000000000 --- a/apps/frontend/src/index.css +++ /dev/null @@ -1,69 +0,0 @@ -:root { - font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; - line-height: 1.5; - font-weight: 400; - - color-scheme: light dark; - color: rgba(255, 255, 255, 0.87); - background-color: #242424; - - font-synthesis: none; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-text-size-adjust: 100%; -} - -a { - font-weight: 500; - color: #646cff; - text-decoration: inherit; -} -a:hover { - color: #535bf2; -} - -body { - margin: 0; - display: flex; - place-items: center; - min-width: 320px; - min-height: 100vh; -} - -h1 { - font-size: 3.2em; - line-height: 1.1; -} - -button { - border-radius: 8px; - border: 1px solid transparent; - padding: 0.6em 1.2em; - font-size: 1em; - font-weight: 500; - font-family: inherit; - background-color: #1a1a1a; - cursor: pointer; - transition: border-color 0.25s; -} -button:hover { - border-color: #646cff; -} -button:focus, -button:focus-visible { - outline: 4px auto -webkit-focus-ring-color; -} - -@media (prefers-color-scheme: light) { - :root { - color: #213547; - background-color: #ffffff; - } - a:hover { - color: #747bff; - } - button { - background-color: #f9f9f9; - } -} diff --git a/apps/frontend/src/main.tsx b/apps/frontend/src/main.tsx deleted file mode 100644 index 791f139e2..000000000 --- a/apps/frontend/src/main.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react' -import ReactDOM from 'react-dom/client' -import App from './App' -import './index.css' - -ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( - - - , -) diff --git a/apps/frontend/src/utils/trpc.ts b/apps/frontend/src/utils/trpc.ts deleted file mode 100644 index 4a7598b98..000000000 --- a/apps/frontend/src/utils/trpc.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { createTRPCReact } from "@trpc/react-query"; -import type { AppRouter } from "@codaco/api"; -import { createTRPCProxyClient, getFetch, httpBatchLink, httpLink, loggerLink } from '@trpc/client' -import superjson from "superjson"; -import { ipcLink } from 'electron-trpc/renderer'; - -export const trpc = createTRPCReact(); \ No newline at end of file diff --git a/apps/frontend/src/vite-env.d.ts b/apps/frontend/src/vite-env.d.ts deleted file mode 100644 index 11f02fe2a..000000000 --- a/apps/frontend/src/vite-env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/apps/frontend/tsconfig.json b/apps/frontend/tsconfig.json deleted file mode 100644 index 3d0a51a86..000000000 --- a/apps/frontend/tsconfig.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "compilerOptions": { - "target": "ESNext", - "useDefineForClassFields": true, - "lib": ["DOM", "DOM.Iterable", "ESNext"], - "allowJs": false, - "skipLibCheck": true, - "esModuleInterop": false, - "allowSyntheticDefaultImports": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "module": "ESNext", - "moduleResolution": "Node", - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "react-jsx" - }, - "include": ["src"], - "references": [{ "path": "./tsconfig.node.json" }] -} diff --git a/apps/frontend/tsconfig.node.json b/apps/frontend/tsconfig.node.json deleted file mode 100644 index 9d31e2aed..000000000 --- a/apps/frontend/tsconfig.node.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "module": "ESNext", - "moduleResolution": "Node", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] -} diff --git a/apps/frontend/vite.config.ts b/apps/frontend/vite.config.ts deleted file mode 100644 index 6f555bd09..000000000 --- a/apps/frontend/vite.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { defineConfig } from 'vite' -import react from '@vitejs/plugin-react-swc' - -// https://vitejs.dev/config/ -export default defineConfig({ - plugins: [react()], - server: { - port: 3000, - } -}) diff --git a/apps/web-backend/package.json b/apps/web-backend/package.json deleted file mode 100644 index fd48e12d0..000000000 --- a/apps/web-backend/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "web-backend", - "version": "1.0.0", - "main": "src/app.ts", - "license": "MIT", - "scripts": { - "dev": "ts-node-dev --respawn --transpile-only src/app.ts" - }, - "devDependencies": { - "@types/cors": "^2.8.12", - "@types/express": "^4.17.14", - "@types/morgan": "^1.9.3", - "morgan": "^1.10.0", - "ts-node-dev": "^2.0.0", - "typescript": "^4.9.5" - }, - "dependencies": { - "@codaco/api": "*", - "database": "*", - "@trpc/server": "^10.11.1", - "cors": "^2.8.5", - "dotenv": "^16.0.3", - "express": "^4.18.2" - } -} diff --git a/apps/web-backend/src/app.ts b/apps/web-backend/src/app.ts deleted file mode 100644 index 4f4a7e132..000000000 --- a/apps/web-backend/src/app.ts +++ /dev/null @@ -1,39 +0,0 @@ -import path from "path"; -import dotenv from "dotenv"; -import express from "express"; -import morgan from "morgan"; -import cors from "cors"; -import * as trpcExpress from "@trpc/server/adapters/express"; -import connectDB from "./utils/prisma"; -import { appRouter, createTRPCContext } from "@codaco/api"; - -dotenv.config({ path: path.join(__dirname, "./.env") }); - -const app = express(); -if (process.env.NODE_ENV !== "production") app.use(morgan("dev")); - -app.use(cors()); - -// Dev mode middleware to add 2 seconds delay to all requests -if (process.env.NODE_ENV !== "production") { - app.use(async (_req, _res, next) => { - await new Promise((resolve) => setTimeout(resolve, 2000)); - next(); - }); -} - -app.use( - "/api/trpc", - trpcExpress.createExpressMiddleware({ - router: appRouter, - createContext: createTRPCContext, - }) -); - -const PORT = 3001; - -app.listen(PORT, () => { - console.log(`🚀 Server listening on port ${PORT}`); - // CONNECT DB - connectDB(); -}); \ No newline at end of file diff --git a/apps/web-backend/src/utils/prisma.ts b/apps/web-backend/src/utils/prisma.ts deleted file mode 100644 index c7b3bdacd..000000000 --- a/apps/web-backend/src/utils/prisma.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { PrismaClient } from 'database'; - -declare global { - var prisma: PrismaClient | undefined; -} - -export const prisma = - global.prisma || new PrismaClient({ log: ['query', 'info'] }); - -if (process.env.NODE_ENV !== 'production') { - global.prisma = prisma; -} - -async function connectDB() { - try { - await prisma.$connect(); - console.log('🚀 Database connected successfully'); - } catch (error) { - console.log(error); - process.exit(1); - } finally { - await prisma.$disconnect(); - } -} - -export default connectDB; \ No newline at end of file diff --git a/apps/web-backend/tsconfig.json b/apps/web-backend/tsconfig.json deleted file mode 100644 index ce7b70c02..000000000 --- a/apps/web-backend/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "compilerOptions": { - "target": "es2018", - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "module": "commonjs", - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "strictPropertyInitialization": false, - "skipLibCheck": true - } -} \ No newline at end of file diff --git a/chromatic.config.json b/chromatic.config.json new file mode 100644 index 000000000..74ff7ea6f --- /dev/null +++ b/chromatic.config.json @@ -0,0 +1,5 @@ +{ + "onlyChanged": true, + "projectId": "Project:68b1958ee9350657446b5406", + "zip": true +} diff --git a/components/ActionError.tsx b/components/ActionError.tsx new file mode 100644 index 000000000..997c82061 --- /dev/null +++ b/components/ActionError.tsx @@ -0,0 +1,18 @@ +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; + +const ActionError = ({ + errorTitle, + errorDescription, +}: { + errorTitle: string; + errorDescription: string; +}) => { + return ( + + {errorTitle} + {errorDescription} + + ); +}; + +export default ActionError; diff --git a/components/AnonymousRecruitmentSwitch.tsx b/components/AnonymousRecruitmentSwitch.tsx new file mode 100644 index 000000000..74805df9c --- /dev/null +++ b/components/AnonymousRecruitmentSwitch.tsx @@ -0,0 +1,26 @@ +import { setAppSetting } from '~/actions/appSettings'; +import { getAppSetting } from '~/queries/appSettings'; +import SwitchWithOptimisticUpdate from './SwitchWithOptimisticUpdate'; + +const AnonymousRecruitmentSwitch = async () => { + const allowAnonymousRecruitment = await getAppSetting( + 'allowAnonymousRecruitment', + ); + + if (allowAnonymousRecruitment === null) { + return null; + } + + return ( + { + 'use server'; + await setAppSetting('allowAnonymousRecruitment', value); + return value; + }} + /> + ); +}; + +export default AnonymousRecruitmentSwitch; diff --git a/components/ApiTokenManagement.tsx b/components/ApiTokenManagement.tsx new file mode 100644 index 000000000..ba08d1af0 --- /dev/null +++ b/components/ApiTokenManagement.tsx @@ -0,0 +1,311 @@ +'use client'; + +import { type Row } from '@tanstack/react-table'; +import { type StrictColumnDef } from '@codaco/fresco-ui/DataTable/types'; +import { Clipboard } from 'lucide-react'; +import { use, useState } from 'react'; +import { + createApiToken, + deleteApiToken, + updateApiToken, +} from '~/actions/apiTokens'; +import { DataTable } from '@codaco/fresco-ui/DataTable/DataTable'; +import { useClientDataTable } from '~/hooks/useClientDataTable'; +import Dialog from '@codaco/fresco-ui/dialogs/Dialog'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import { type GetApiTokensReturnType } from '~/queries/apiTokens'; +import { DataTableColumnHeader } from '@codaco/fresco-ui/DataTable/ColumnHeader'; +import { Alert, AlertDescription, AlertTitle } from '@codaco/fresco-ui/Alert'; +import { Button } from '@codaco/fresco-ui/Button'; +import { Label } from '@codaco/fresco-ui/Label'; +import ToggleField from '@codaco/fresco-ui/form/fields/ToggleField'; +import TimeAgo from '@codaco/fresco-ui/TimeAgo'; +import { useToast } from '@codaco/fresco-ui/Toast'; + +type ApiToken = GetApiTokensReturnType[number]; + +type ApiTokenManagementProps = { + tokensPromise: Promise; + disabled?: boolean; +}; + +export default function ApiTokenManagement({ + tokensPromise, + disabled, +}: ApiTokenManagementProps) { + // TanStack Table: consumers must also opt out so React Compiler doesn't memoize JSX that depends on the table ref. + 'use no memo'; + const initialTokens = use(tokensPromise); + const [tokens, setTokens] = useState(initialTokens); + const [isCreating, setIsCreating] = useState(false); + const [newTokenDescription, setNewTokenDescription] = useState(''); + const [createdToken, setCreatedToken] = useState(null); + const [isLoading, setIsLoading] = useState(false); + const [tokenToDelete, setTokenToDelete] = useState(null); + const [isDeleting, setIsDeleting] = useState(false); + + const { add } = useToast(); + + const handleCreateToken = async () => { + setIsLoading(true); + const result = await createApiToken({ + description: newTokenDescription || undefined, + }); + + if (result.error) { + alert(result.error); + } else if (result.data) { + setTokens([ + { + id: result.data.id, + description: result.data.description, + createdAt: result.data.createdAt, + lastUsedAt: result.data.lastUsedAt, + isActive: result.data.isActive, + }, + ...tokens, + ]); + setCreatedToken(result.data.token); + setNewTokenDescription(''); + setIsCreating(false); + } + + setIsLoading(false); + }; + + const handleToggleActive = async (id: string, isActive: boolean) => { + const result = await updateApiToken({ id, isActive: !isActive }); + + if (result.error) { + alert(result.error); + } else if (result.data) { + setTokens( + tokens.map((token) => + token.id === id ? { ...token, isActive: !isActive } : token, + ), + ); + } + }; + + const handleDeleteToken = async (token: ApiToken) => { + setIsDeleting(true); + const result = await deleteApiToken({ id: token.id }); + + if (result.error) { + add({ title: result.error, variant: 'destructive' }); + } else { + setTokens(tokens.filter((t) => t.id !== token.id)); + setTokenToDelete(null); + } + setIsDeleting(false); + }; + + const columns: StrictColumnDef[] = [ + { + accessorKey: 'description', + header: ({ column }) => ( + + ), + cell: ({ row }) => ( + + {row.original.description ?? Untitled} + + ), + enableSorting: false, + enableHiding: false, + }, + { + accessorKey: 'createdAt', + sortingFn: 'datetime', + header: ({ column }) => ( + + ), + cell: ({ row }) => ( + + ), + }, + { + accessorKey: 'lastUsedAt', + sortingFn: 'datetime', + header: ({ column }) => ( + + ), + cell: ({ row }) => { + if (!row.original.lastUsedAt) { + return 'Never'; + } + + return ( + + ); + }, + }, + { + accessorKey: 'isActive', + sortingFn: 'basic', + header: ({ column }) => ( + + ), + cell: ({ row }) => ( + + handleToggleActive(row.original.id, row.original.isActive) + } + /> + ), + }, + { + id: 'actions', + enableSorting: false, + cell: ({ row }: { row: Row }) => ( + + ), + }, + ]; + + const { table } = useClientDataTable({ + data: tokens, + columns, + enablePagination: false, + }); + + return ( +
+ + + + {/* Create Token Dialog */} + setIsCreating(false)} + title="Create API Token" + description="Create a new API token for authenticating Interview Data API requests." + footer={ + <> + + + + } + > +
+ + setNewTokenDescription(value ?? '')} + /> +
+
+ + {/* Show Created Token Dialog */} + setCreatedToken(null)} + title="API Token Created" + description="Your token has been created and is displayed below. Save this token somewhere safe now - you won't be able to see it again after you close this dialog." + footer={ + <> + + + + } + > + + Your API Token + + + {createdToken} + + + + + {/* Delete Token Confirmation Dialog */} + setTokenToDelete(null)} + title="Delete API Token" + description="Are you sure you want to delete this API token? Any applications using this token will no longer be able to authenticate." + footer={ + <> + + + + } + /> +
+ ); +} diff --git a/components/BackgroundBlobs/BackgroundBlobs.tsx b/components/BackgroundBlobs/BackgroundBlobs.tsx new file mode 100644 index 000000000..c6e347422 --- /dev/null +++ b/components/BackgroundBlobs/BackgroundBlobs.tsx @@ -0,0 +1,280 @@ +'use client'; + +import * as blobs2 from 'blobs/v2'; +import { interpolatePath as interpolate } from 'd3-interpolate-path'; +import { memo, useMemo } from 'react'; +import Canvas from './Canvas'; + +const random = (a = 1, b = 0) => { + const lower = Math.min(a, b); + const upper = Math.max(a, b); + return lower + Math.random() * (upper - lower); +}; + +const randomInt = (a = 1, b = 0) => { + const lower = Math.ceil(Math.min(a, b)); + const upper = Math.floor(Math.max(a, b)); + return Math.floor(lower + Math.random() * (upper - lower + 1)); +}; + +const gradients = [ + ['rgb(237,0,140)', 'rgb(226,33,91)'], + ['#00c9ff', '#92fe9d'], + ['#fc466b', '#3f5efb'], + ['#d53369', '#daae51'], + ['#3f2b96', '#a8c0ff'], + ['rgb(0, 201, 162)', 'rgb(0, 160, 129)'], + ['rgb(107, 114, 236)', 'rgb(58, 58, 117)'], + ['rgb(242, 183, 0)', 'rgb(247,137,30)'], + ['rgb(15, 178, 226)', 'rgb(15, 112, 255)'], + ['rgb(45, 41, 285)', 'rgb(58,58,217)'], +]; + +const DEFAULT_SPEED_FACTOR = 1; + +class NCBlob { + layer: 1 | 2 | 3; + speed: number; + angle: number; + size: number; + velocityX: number; + velocityY: number; + gradient; + firstRender: boolean; + animateForward: boolean; + lastUpdate: number | null; + positionX: number; + positionY: number; + canvasWidth: number; + canvasHeight: number; + startFrameTime: number | undefined; + endFrameTime: number | undefined; + shape: string | null; + shape2: string | null; + interpolator: ((t: number) => string) | null; + + constructor(layer: 1 | 2 | 3, speedFactor: number) { + const speeds = { + 1: speedFactor * random(3, 6), + 2: speedFactor * random(0.5, 1.5), + 3: speedFactor * 0.5, + }; + + this.layer = layer; // Used to determine size and speed + + this.speed = speeds[layer]; + this.angle = (randomInt(0, 360) * Math.PI) / 180; // in radians + this.velocityX = Math.sin(this.angle) * this.speed; + this.velocityY = Math.cos(this.angle) * this.speed; + + this.gradient = gradients[randomInt(0, gradients.length - 1)]; + + this.firstRender = true; // Used to know if we need to initialize contextual values + this.animateForward = true; // Toggle for shape animation direction + this.lastUpdate = null; // Used to calculate time delta + this.positionX = 0; // Used to track position + this.positionY = 0; // Used to track position + this.size = 0; // Used to track size + + this.canvasWidth = 0; // Used to track canvas width + this.canvasHeight = 0; // Used to track canvas height + + this.shape = null; + this.shape2 = null; + + this.interpolator = null; + } + + // Update positionX and positionY + updatePosition(time: number) { + const timeInSeconds = time / 1000; + + this.lastUpdate ??= timeInSeconds; + + const timeDelta = timeInSeconds - this.lastUpdate || 1; + + this.lastUpdate = timeInSeconds; + + // Update position relative to time + this.positionX += this.velocityX * timeDelta; + this.positionY += this.velocityY * timeDelta; + + if (this.positionY + this.size < 0) { + this.gradient = gradients[randomInt(0, gradients.length - 1)]; + this.positionY = this.canvasHeight; + } + + if (this.positionX + this.size < 0) { + this.gradient = gradients[randomInt(0, gradients.length - 1)]; + this.positionX = this.canvasWidth; + } + + if (this.positionY > this.canvasHeight) { + this.gradient = gradients[randomInt(0, gradients.length - 1)]; + this.positionY = -this.size; + } + + if (this.positionX > this.canvasWidth) { + this.gradient = gradients[randomInt(0, gradients.length - 1)]; + this.positionX = -this.size; + } + } + + invert(number: number) { + return this.animateForward ? number : number * -1 + 1; + } + + animationPosition(time: number) { + const duration = 30000; // some number of ms? + + // Start + if (!this.startFrameTime) { + this.startFrameTime = time; + this.endFrameTime = time + duration; + return this.invert(0); + } + + if (!this.endFrameTime || time > this.endFrameTime) { + this.startFrameTime = time; + this.endFrameTime = time + duration; + this.animateForward = !this.animateForward; + } + + return this.invert( + (time - this.startFrameTime) / (this.endFrameTime - this.startFrameTime), + ); + } + + // Some properties are derived from the canvas context, so we need to + // set them only when it is available. + initialize(ctx: CanvasRenderingContext2D) { + const { devicePixelRatio } = window; + + // Give class knowledge of canvas height and width + this.canvasWidth = ctx.canvas.width / devicePixelRatio; + this.canvasHeight = ctx.canvas.height / devicePixelRatio; + + // Use vmin for sizing to get better responsiveness in landscape/portrait + const vmin = Math.min(this.canvasWidth, this.canvasHeight); + + // Create a random blob sized based on layer + const sizes = { + 1: randomInt(vmin * 0.1, vmin * 0.2), + 2: randomInt(vmin * 0.3, vmin * 0.8), + 3: randomInt(vmin, vmin * 1.5), + }; + + this.size = sizes[this.layer]; + + // Set a random starting position within the screen boundaries with + // at least half of the shape visible + this.positionX = randomInt( + 0 - this.size / 2, + this.canvasWidth - this.size / 2, + ); + this.positionY = randomInt( + 0 - this.size / 2, + this.canvasHeight - this.size / 2, + ); + + // Create two random shapes to interpolate between for visual variation + this.shape = blobs2.svgPath({ + seed: Math.random(), + extraPoints: 6, + randomness: 6, + size: this.size, + }); + + this.shape2 = blobs2.svgPath({ + seed: Math.random(), + extraPoints: 8, + randomness: 8, + size: this.size, + }); + + // Initialize the interpolation function + if (typeof this.shape !== 'string' || typeof this.shape2 !== 'string') { + throw new Error('Shape is not a string'); + } + + this.interpolator = interpolate(this.shape, this.shape2); + + this.firstRender = false; + } + + // Main method called from draw loop. + // Renders the blob to the context and animates properties based on time + render(ctx: CanvasRenderingContext2D, time: number) { + // Initialize context specific values + if (this.firstRender) { + this.initialize(ctx); + } + + if (!this.interpolator) return; + + if (!this.gradient?.[0] || !this.gradient[1]) { + return; + } + + // Update position + this.updatePosition(time); + + // Create gradient + + const grd = ctx.createLinearGradient(0, 0, this.size, 0); + grd.addColorStop(0, this.gradient[0]); + grd.addColorStop(1, this.gradient[1]); + ctx.fillStyle = grd; + + // Render interpolated shape + const t = this.animationPosition(time); + const p = new Path2D(this.interpolator(t)); + + // Save before translating so we can restore afterwards - important! + ctx.save(); + ctx.translate(this.positionX, this.positionY); + ctx.fill(p); + ctx.restore(); + } +} + +type BackgroundBlobsProps = { + large?: number; + medium?: number; + small?: number; + speedFactor?: number; + compositeOperation?: GlobalCompositeOperation; + filter?: CanvasFilters['filter']; +}; + +const BackgroundBlobs = memo( + ({ + large = 2, + medium = 4, + small = 4, + speedFactor = DEFAULT_SPEED_FACTOR, + compositeOperation = 'screen', + filter = '', + }: BackgroundBlobsProps) => { + const blobs = useMemo( + () => [ + new Array(large).fill(null).map(() => new NCBlob(3, speedFactor)), + new Array(medium).fill(null).map(() => new NCBlob(2, speedFactor)), + new Array(small).fill(null).map(() => new NCBlob(1, speedFactor)), + ], + [large, medium, small, speedFactor], + ); + + const drawBlobs = (ctx: CanvasRenderingContext2D, time: number) => { + ctx.globalCompositeOperation = compositeOperation; + ctx.filter = filter; + blobs.forEach((layer) => layer.forEach((blob) => blob.render(ctx, time))); + }; + + return ; + }, +); + +BackgroundBlobs.displayName = 'BackgroundBlobs'; + +export default memo(BackgroundBlobs); diff --git a/components/BackgroundBlobs/Canvas.tsx b/components/BackgroundBlobs/Canvas.tsx new file mode 100644 index 000000000..35b6c7c04 --- /dev/null +++ b/components/BackgroundBlobs/Canvas.tsx @@ -0,0 +1,18 @@ +'use client'; + +import useCanvas from '~/hooks/useCanvas'; + +type CanvasProps = { + draw: (ctx: CanvasRenderingContext2D, time: number) => void; + predraw?: (ctx: CanvasRenderingContext2D, time: number) => void; + postdraw?: (ctx: CanvasRenderingContext2D, time: number) => void; +}; + +const Canvas = (props: CanvasProps) => { + const { draw, predraw, postdraw } = props; + const canvasRef = useCanvas(draw, predraw, postdraw); + + return ; +}; + +export default Canvas; diff --git a/components/ContainerClasses.ts b/components/ContainerClasses.ts new file mode 100644 index 000000000..28a4e2343 --- /dev/null +++ b/components/ContainerClasses.ts @@ -0,0 +1,6 @@ +import { cx } from '@codaco/fresco-ui/utils/cva'; + +export const containerClasses = cx( + 'relative m-6! overflow-visible', + 'before:bg-surface-1/30 mx-0 before:absolute before:inset-[-20px] before:z-[-1] before:rounded before:shadow-2xl before:backdrop-blur-sm', +); diff --git a/components/DataTable/nuqs/NuqsClearFilters.tsx b/components/DataTable/nuqs/NuqsClearFilters.tsx new file mode 100644 index 000000000..c8287af26 --- /dev/null +++ b/components/DataTable/nuqs/NuqsClearFilters.tsx @@ -0,0 +1,72 @@ +'use client'; + +import { X } from 'lucide-react'; +import { parseAsString, useQueryStates } from 'nuqs'; +import { useMemo } from 'react'; +import { Button } from '@codaco/fresco-ui/Button'; +import { nuqsTableUrlKey, useNuqsTable } from './NuqsTableProvider'; + +type NuqsClearFiltersProps = { + /** + * Logical param names (unprefixed) to clear. The provider's `prefix` will + * be applied to derive the URL keys. + */ + paramKeys: readonly string[]; + label?: string; +}; + +/** + * URL-backed "clear all filters" button for server-fetched tables. + * + * Hidden when none of the tracked params are set. Uses a string parser for + * all keys because the only thing we need to know is presence — the actual + * parsing for each key lives in its dedicated filter component. + */ +export default function NuqsClearFilters({ + paramKeys, + label = 'Clear Filters', +}: NuqsClearFiltersProps) { + const { prefix, startTransition } = useNuqsTable(); + + const parsers = useMemo(() => { + const entries = paramKeys.map( + (key) => [key, parseAsString.withOptions({ clearOnDefault: true })] as const, + ); + return Object.fromEntries(entries); + }, [paramKeys]); + + const urlKeys = useMemo(() => { + const entries = paramKeys.map( + (key) => [key, nuqsTableUrlKey(prefix, key)] as const, + ); + return Object.fromEntries(entries); + }, [paramKeys, prefix]); + + const [values, setValues] = useQueryStates(parsers, { + urlKeys, + shallow: false, + startTransition, + }); + + const hasAnyFilter = Object.values(values).some( + (v) => v !== null && v !== '', + ); + if (!hasAnyFilter) return null; + + const cleared = Object.fromEntries(paramKeys.map((k) => [k, null])) as Record< + (typeof paramKeys)[number], + null + >; + + return ( + + ); +} diff --git a/components/DataTable/nuqs/NuqsFacetedFilter.tsx b/components/DataTable/nuqs/NuqsFacetedFilter.tsx new file mode 100644 index 000000000..8c59492a1 --- /dev/null +++ b/components/DataTable/nuqs/NuqsFacetedFilter.tsx @@ -0,0 +1,75 @@ +'use client'; + +import { + parseAsArrayOf, + parseAsStringLiteral, + useQueryState, +} from 'nuqs'; +import { useMemo } from 'react'; +import ComboboxField from '@codaco/fresco-ui/form/fields/Combobox/Combobox'; +import { nuqsTableUrlKey, useNuqsTable } from './NuqsTableProvider'; + +type NuqsFacetedFilterProps = { + /** Logical param name (unprefixed). The provider's `prefix` will be applied. */ + paramKey: string; + /** Whitelist of values this filter accepts. Used for URL parsing + options. */ + values: readonly T[]; + /** Visible label for each option. Defaults to the value itself. */ + getLabel?: (value: T) => string; + placeholder?: string; + searchPlaceholder?: string; + emptyMessage?: string; + className?: string; +}; + +/** + * URL-backed multi-select filter for server-fetched tables. + * + * Values are parsed via `parseAsStringLiteral(values)` so unknown URL values + * are rejected. Writes go through the provider's `startTransition`, so the + * table body fades concurrently without unmounting. + */ +export default function NuqsFacetedFilter({ + paramKey, + values, + getLabel = (v) => v, + placeholder = 'Filter...', + searchPlaceholder = 'Search...', + emptyMessage = 'No options found.', + className, +}: NuqsFacetedFilterProps) { + const { prefix, startTransition } = useNuqsTable(); + const urlKey = nuqsTableUrlKey(prefix, paramKey); + + const [selected, setSelected] = useQueryState( + urlKey, + parseAsArrayOf(parseAsStringLiteral(values)).withOptions({ + shallow: false, + clearOnDefault: true, + startTransition, + }), + ); + + const options = useMemo( + () => values.map((v) => ({ value: v, label: getLabel(v) })), + [values, getLabel], + ); + + return ( + { + const next = (newValues as T[] | undefined) ?? []; + void setSelected(next.length > 0 ? next : null); + }} + showSelectAll + showDeselectAll + className={className ?? 'w-auto shrink-0'} + /> + ); +} diff --git a/components/DataTable/nuqs/NuqsSearchFilter.tsx b/components/DataTable/nuqs/NuqsSearchFilter.tsx new file mode 100644 index 000000000..6ae8a2cbc --- /dev/null +++ b/components/DataTable/nuqs/NuqsSearchFilter.tsx @@ -0,0 +1,92 @@ +'use client'; + +import { debounce } from 'es-toolkit'; +import { Search } from 'lucide-react'; +import { parseAsString, useQueryState } from 'nuqs'; +import { useEffect, useMemo, useRef, useState } from 'react'; +import InputField from '@codaco/fresco-ui/form/fields/InputField'; +import { nuqsTableUrlKey, useNuqsTable } from './NuqsTableProvider'; + +type NuqsSearchFilterProps = { + /** Logical param name (unprefixed). The provider's `prefix` will be applied. */ + paramKey: string; + placeholder?: string; + className?: string; + /** Delay between last keystroke and URL commit. Defaults to 300 ms. */ + debounceMs?: number; +}; + +/** + * URL-backed text filter for server-fetched tables. + * + * Holds a transient local buffer for instant keystroke feedback while the + * actual URL write is debounced and routed through the provider's + * `startTransition` — so the table body fades but the input never unmounts + * or loses focus, and concurrent typing isn't dropped. + */ +export default function NuqsSearchFilter({ + paramKey, + placeholder = 'Filter...', + className, + debounceMs = 300, +}: NuqsSearchFilterProps) { + const { prefix, startTransition } = useNuqsTable(); + const urlKey = nuqsTableUrlKey(prefix, paramKey); + + const [value, setValue] = useQueryState( + urlKey, + parseAsString.withOptions({ + shallow: false, + clearOnDefault: true, + startTransition, + }), + ); + + const [local, setLocal] = useState(value ?? ''); + + // Tracks the last value this component wrote to the URL. Distinguishes + // "my own debounced commit arrived back through nuqs" from "URL changed + // externally" (clear button, browser back, navigation), so the external + // case can cancel any in-flight debounce and adopt the new value without + // being clobbered when the pending commit fires. + const lastWrittenRef = useRef(value); + + const debouncedCommit = useMemo( + () => + debounce( + (next: string | null) => { + lastWrittenRef.current = next; + void setValue(next); + }, + debounceMs, + { edges: ['trailing'] }, + ), + [setValue, debounceMs], + ); + + useEffect(() => () => debouncedCommit.cancel(), [debouncedCommit]); + + useEffect(() => { + if (value !== lastWrittenRef.current) { + debouncedCommit.cancel(); + lastWrittenRef.current = value; + setLocal(value ?? ''); + } + }, [value, debouncedCommit]); + + return ( + } + name={urlKey} + className={className} + placeholder={placeholder} + value={local} + onChange={(next) => { + const v = next ?? ''; + setLocal(v); + debouncedCommit(v.length > 0 ? v : null); + }} + /> + ); +} diff --git a/components/DataTable/nuqs/NuqsTableProvider.tsx b/components/DataTable/nuqs/NuqsTableProvider.tsx new file mode 100644 index 000000000..ef59c4389 --- /dev/null +++ b/components/DataTable/nuqs/NuqsTableProvider.tsx @@ -0,0 +1,68 @@ +'use client'; + +import { + createContext, + useContext, + useMemo, + useTransition, + type ReactNode, + type TransitionStartFunction, +} from 'react'; + +/** + * Shared context for URL-driven server-fetched tables. + * + * Provides a single `useTransition` so every filter / pagination / sort + * control that writes to the URL funnels through one concurrent render, + * letting the table body fade consistently while fresh data is fetched. + * + * Tables that want URL param namespacing (so multiple instances can coexist + * on the same page) pass a `prefix` — filter components then map their + * logical param name (`q`, `type`, `page`, …) to `${prefix}_${name}` in the + * URL, while programmatic state keeps the short name. + */ +type NuqsTableContextValue = { + prefix: string; + isPending: boolean; + startTransition: TransitionStartFunction; +}; + +const NuqsTableContext = createContext(null); + +export function useNuqsTable(): NuqsTableContextValue { + const ctx = useContext(NuqsTableContext); + if (!ctx) { + throw new Error('useNuqsTable must be used within a '); + } + return ctx; +} + +/** + * Resolve a logical param name to its URL key given a namespace prefix. + * Exported so row components that read state directly with nuqs hooks can + * stay in sync with the namespace their parent provider uses. + */ +export function nuqsTableUrlKey(prefix: string, paramKey: string): string { + return prefix ? `${prefix}_${paramKey}` : paramKey; +} + +type NuqsTableProviderProps = { + prefix?: string; + children: ReactNode; +}; + +export function NuqsTableProvider({ + prefix = '', + children, +}: NuqsTableProviderProps) { + const [isPending, startTransition] = useTransition(); + const value = useMemo( + () => ({ prefix, isPending, startTransition }), + [prefix, isPending], + ); + return ( + + {children} + + ); +} diff --git a/components/DisableAnalyticsSwitch.tsx b/components/DisableAnalyticsSwitch.tsx new file mode 100644 index 000000000..52f81ec2f --- /dev/null +++ b/components/DisableAnalyticsSwitch.tsx @@ -0,0 +1,22 @@ +import { setAppSetting } from '~/actions/appSettings'; +import SwitchWithOptimisticUpdate from '~/components/SwitchWithOptimisticUpdate'; +import { env } from '~/env'; +import { getDisableAnalytics } from '~/queries/appSettings'; + +const DisableAnalyticsSwitch = async () => { + const disableAnalytics = await getDisableAnalytics(); + const readOnly = !!env.DISABLE_ANALYTICS; + return ( + { + 'use server'; + await setAppSetting('disableAnalytics', value); + return value; + }} + /> + ); +}; + +export default DisableAnalyticsSwitch; diff --git a/components/ExportProgressProvider.tsx b/components/ExportProgressProvider.tsx new file mode 100644 index 000000000..7912430f3 --- /dev/null +++ b/components/ExportProgressProvider.tsx @@ -0,0 +1,238 @@ +'use client'; + +import { Loader2 } from 'lucide-react'; +import posthog from 'posthog-js'; +import { createContext, useCallback, useContext, useRef } from 'react'; +import { updateExportTime } from '~/actions/interviews'; +import { deleteZipFromStorage } from '~/actions/uploadThing'; +import type { ExportSseEvent } from '~/lib/export/sseEvents'; +import ProgressBar from '@codaco/fresco-ui/ProgressBar'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import { useDownload } from '~/hooks/useDownload'; +import type { ExportOptions } from '@codaco/network-exporters/options'; +import { ensureError } from '~/utils/ensureError'; +import Spinner from '@codaco/fresco-ui/Spinner'; + +type ExportContextValue = { + startExport: (interviewIds: string[], exportOptions: ExportOptions) => void; +}; + +const ExportContext = createContext(null); + +export function useExportProgress() { + const ctx = useContext(ExportContext); + if (!ctx) { + throw new Error( + 'useExportProgress must be used within ExportProgressProvider', + ); + } + return ctx; +} + +function ExportProgressDescription({ + stage, + message, + current, + total, +}: { + stage: string; + message: string; + current?: number; + total?: number; +}) { + const progressStages = ['generating', 'outputting']; + const showProgress = + progressStages.includes(stage) && total !== undefined && total > 0; + const percent = + showProgress && current !== undefined + ? Math.round((current / total) * 100) + : 0; + + return ( +
+
+
+ {showProgress && ( + + )} +
+ ); +} + +export function ExportProgressProvider({ + children, +}: { + children: React.ReactNode; +}) { + const { add, update, close } = useToast(); + const download = useDownload(); + const abortControllers = useRef(new Map()); + + const abortExport = useCallback((toastId: string) => { + const controller = abortControllers.current.get(toastId); + controller?.abort(); + abortControllers.current.delete(toastId); + }, []); + + const startExport = useCallback( + (interviewIds: string[], exportOptions: ExportOptions) => { + const controller = new AbortController(); + + const toastId = add({ + icon:
} />, + ); + expect(getByTestId('width').textContent).toBe('0'); + expect(getByTestId('height').textContent).toBe('0'); + }); + + test('creates a hidden container on document.body', () => { + setup(); + render(test
} />); + + const containers = document.querySelectorAll( + 'div[style*="visibility: hidden"]', + ); + expect(containers.length).toBeGreaterThanOrEqual(1); + }); + + test('renders content into the hidden container', () => { + setup(); + render(test
} />); + + const containers = document.querySelectorAll( + 'div[style*="visibility: hidden"]', + ); + const container = containers[0]!; + expect(container.children.length).toBeGreaterThan(0); + }); + + test('creates a ResizeObserver for the content', () => { + setup(); + render(test
} />); + + expect(latestObserverInstances.length).toBeGreaterThan(0); + expect(latestObserverInstances[0]!.observeSpy).toHaveBeenCalled(); + }); + + test('updates dimensions when ResizeObserver fires', () => { + setup(); + const { getByTestId } = render( + test
} />, + ); + + act(() => { + triggerAllObservers(120, 80); + }); + + expect(getByTestId('width').textContent).toBe('120'); + expect(getByTestId('height').textContent).toBe('80'); + }); + + test('updates dimensions when size changes', () => { + setup(); + const { getByTestId } = render( + test
} />, + ); + + act(() => { + triggerAllObservers(100, 100); + }); + expect(getByTestId('width').textContent).toBe('100'); + + act(() => { + triggerAllObservers(200, 150); + }); + expect(getByTestId('width').textContent).toBe('200'); + expect(getByTestId('height').textContent).toBe('150'); + }); + + test('cleans up container on unmount', () => { + setup(); + const { unmount } = render(test
} />); + + const before = document.querySelectorAll( + 'div[style*="visibility: hidden"]', + ).length; + + unmount(); + + const after = document.querySelectorAll( + 'div[style*="visibility: hidden"]', + ).length; + + expect(after).toBeLessThan(before); + }); + + test('disconnects observer on unmount', () => { + setup(); + const { unmount } = render(test
} />); + + expect(latestObserverInstances.length).toBeGreaterThan(0); + + unmount(); + + const anyDisconnected = latestObserverInstances.some( + (obs) => obs.disconnectSpy.mock.calls.length > 0, + ); + expect(anyDisconnected).toBe(true); + }); +}); diff --git a/hooks/__tests__/useScrolledToBottom.test.tsx b/hooks/__tests__/useScrolledToBottom.test.tsx new file mode 100644 index 000000000..bd0834719 --- /dev/null +++ b/hooks/__tests__/useScrolledToBottom.test.tsx @@ -0,0 +1,171 @@ +import { act, renderHook } from '@testing-library/react'; +import { afterEach, describe, expect, test, vi } from 'vitest'; +import { useScrolledToBottom } from '~/hooks/useScrolledToBottom'; + +type IOCallback = IntersectionObserverCallback; + +let latestObserverInstances: MockIntersectionObserver[]; + +class MockIntersectionObserver { + callback: IOCallback; + observeSpy = vi.fn(); + disconnectSpy = vi.fn(); + root: Element | Document | null; + + constructor(cb: IOCallback, options?: IntersectionObserverInit) { + this.callback = cb; + this.root = (options?.root as Element | Document | null) ?? null; + latestObserverInstances.push(this); + } + + observe(target: Element) { + this.observeSpy(target); + } + + unobserve() { + // no-op: required by IntersectionObserver interface + } + + disconnect() { + this.disconnectSpy(); + } +} + +function latest() { + return latestObserverInstances[latestObserverInstances.length - 1] ?? null; +} + +describe('useScrolledToBottom', () => { + afterEach(() => { + latestObserverInstances = []; + vi.restoreAllMocks(); + }); + + test('returns false initially', () => { + vi.stubGlobal('IntersectionObserver', MockIntersectionObserver); + + const { result } = renderHook(() => useScrolledToBottom()); + + expect(result.current.hasScrolledToBottom).toBe(false); + }); + + test('observes sentinel when callback ref is attached', () => { + vi.stubGlobal('IntersectionObserver', MockIntersectionObserver); + + const { result } = renderHook(() => useScrolledToBottom()); + + const sentinelEl = document.createElement('div'); + act(() => { + result.current.sentinelRef(sentinelEl); + }); + + expect(latest()?.observeSpy).toHaveBeenCalledWith(sentinelEl); + }); + + test('returns true when sentinel becomes visible', () => { + vi.stubGlobal('IntersectionObserver', MockIntersectionObserver); + + const { result } = renderHook(() => useScrolledToBottom()); + + const sentinelEl = document.createElement('div'); + act(() => { + result.current.sentinelRef(sentinelEl); + }); + + act(() => { + latest()?.callback( + [{ isIntersecting: true }] as IntersectionObserverEntry[], + latest() as unknown as IntersectionObserver, + ); + }); + + expect(result.current.hasScrolledToBottom).toBe(true); + }); + + test('stays true when sentinel leaves viewport after being visible', () => { + vi.stubGlobal('IntersectionObserver', MockIntersectionObserver); + + const { result } = renderHook(() => useScrolledToBottom()); + + const sentinelEl = document.createElement('div'); + act(() => { + result.current.sentinelRef(sentinelEl); + }); + + act(() => { + latest()?.callback( + [{ isIntersecting: true }] as IntersectionObserverEntry[], + latest() as unknown as IntersectionObserver, + ); + }); + expect(result.current.hasScrolledToBottom).toBe(true); + + act(() => { + latest()?.callback( + [{ isIntersecting: false }] as IntersectionObserverEntry[], + latest() as unknown as IntersectionObserver, + ); + }); + expect(result.current.hasScrolledToBottom).toBe(true); + }); + + test('disconnects old observer when sentinel changes', () => { + vi.stubGlobal('IntersectionObserver', MockIntersectionObserver); + + const { result } = renderHook(() => useScrolledToBottom()); + + const firstEl = document.createElement('div'); + act(() => { + result.current.sentinelRef(firstEl); + }); + + const firstObserver = latest(); + + const secondEl = document.createElement('div'); + act(() => { + result.current.sentinelRef(secondEl); + }); + + expect(firstObserver?.disconnectSpy).toHaveBeenCalled(); + expect(latest()?.observeSpy).toHaveBeenCalledWith(secondEl); + }); + + test('disconnects observer on unmount', () => { + vi.stubGlobal('IntersectionObserver', MockIntersectionObserver); + + const { result, unmount } = renderHook(() => useScrolledToBottom()); + + const sentinelEl = document.createElement('div'); + act(() => { + result.current.sentinelRef(sentinelEl); + }); + + const observer = latest(); + unmount(); + expect(observer?.disconnectSpy).toHaveBeenCalled(); + }); + + test('resets to false when sentinel detaches (null)', () => { + vi.stubGlobal('IntersectionObserver', MockIntersectionObserver); + + const { result } = renderHook(() => useScrolledToBottom()); + + const sentinelEl = document.createElement('div'); + act(() => { + result.current.sentinelRef(sentinelEl); + }); + + act(() => { + latest()?.callback( + [{ isIntersecting: true }] as IntersectionObserverEntry[], + latest() as unknown as IntersectionObserver, + ); + }); + expect(result.current.hasScrolledToBottom).toBe(true); + + act(() => { + result.current.sentinelRef(null); + }); + expect(result.current.hasScrolledToBottom).toBe(false); + }); +}); diff --git a/hooks/useCanvas.ts b/hooks/useCanvas.ts new file mode 100644 index 000000000..ec5281a75 --- /dev/null +++ b/hooks/useCanvas.ts @@ -0,0 +1,87 @@ +import { useEffect, useRef } from 'react'; + +const resizeCanvas = ( + context: CanvasRenderingContext2D, + canvasRef: React.RefObject, +) => { + if (!canvasRef?.current) { + return false; + } + + const currentCanvas = canvasRef.current; + + const { width, height } = currentCanvas.getBoundingClientRect(); + const { devicePixelRatio: ratio = 1 } = window; + + if ( + currentCanvas.width !== width * ratio || + currentCanvas.height !== height * ratio + ) { + currentCanvas.width = width * ratio; + currentCanvas.height = height * ratio; + context.scale(ratio, ratio); + return true; + } + + return false; +}; + +type DrawFunction = ( + ctx: CanvasRenderingContext2D, + time: number, + canvasRef: React.RefObject, +) => void; + +const defaultPredraw: DrawFunction = (context: CanvasRenderingContext2D) => { + context.save(); + const { width, height } = context.canvas; + context.clearRect(0, 0, width, height); +}; + +const defaultPostdraw: DrawFunction = (context: CanvasRenderingContext2D) => { + context.restore(); +}; + +const useCanvas = ( + draw: DrawFunction, + predraw = defaultPredraw, + postdraw = defaultPostdraw, +) => { + const canvasRef = useRef(null); + + useEffect(() => { + const canvas = canvasRef.current; + + if (!canvas) { + return; + } + + const context = canvas.getContext('2d'); + + if (!context) { + return; + } + + let requestAnimationId: number | null = null; + + const render = (ctx: CanvasRenderingContext2D, time: number) => { + resizeCanvas(context, canvasRef); + predraw(ctx, time, canvasRef); + draw(ctx, time, canvasRef); + postdraw(ctx, time, canvasRef); + requestAnimationId = requestAnimationFrame((t) => render(ctx, t)); + }; + + render(context, 0); + + return () => { + if (requestAnimationId) { + cancelAnimationFrame(requestAnimationId); + } + }; + }); + + return canvasRef; +}; + +export default useCanvas; diff --git a/hooks/useClientDataTable.ts b/hooks/useClientDataTable.ts new file mode 100644 index 000000000..b46f8dadc --- /dev/null +++ b/hooks/useClientDataTable.ts @@ -0,0 +1,92 @@ +'use client'; + +import { + getCoreRowModel, + getFilteredRowModel, + getPaginationRowModel, + getSortedRowModel, + useReactTable, + type ColumnDef, + type ColumnFiltersState, + type OnChangeFn, + type Row, + type SortingState, +} from '@tanstack/react-table'; +import { parseAsJson, useQueryState } from 'nuqs'; +import { useState } from 'react'; +import { z } from 'zod/mini'; + +const ColumnFiltersStateSchema = z.array( + z.object({ + id: z.string(), + value: z.unknown(), + }), +); + +type UseClientDataTableOptions = { + data: TData[]; + columns: ColumnDef[]; + enablePagination?: boolean; + enableRowSelection?: boolean | ((row: Row) => boolean); + enableUrlFilters?: boolean; + defaultSortBy?: { id: string; desc: boolean }; +}; + +export function useClientDataTable({ + data, + columns, + enablePagination = true, + enableRowSelection = true, + enableUrlFilters = false, + defaultSortBy, +}: UseClientDataTableOptions) { + // TanStack Table returns a mutable ref with stable identity, defeating React Compiler memoization. + 'use no memo'; + const [sorting, setSorting] = useState( + defaultSortBy ? [{ ...defaultSortBy }] : [], + ); + const [rowSelection, setRowSelection] = useState({}); + + const [urlFilters, setUrlFilters] = useQueryState( + 'filters', + parseAsJson( + // z.unknown() infers value as optional, but ColumnFiltersState requires it + (value) => ColumnFiltersStateSchema.parse(value) as ColumnFiltersState, + ).withDefault([]), + ); + const [localFilters, setLocalFilters] = useState([]); + const columnFilters = enableUrlFilters ? urlFilters : localFilters; + + const onColumnFiltersChange: OnChangeFn = enableUrlFilters + ? (updaterOrValue) => { + void setUrlFilters((prev) => { + const current = prev ?? []; + return typeof updaterOrValue === 'function' + ? updaterOrValue(current) + : updaterOrValue; + }); + } + : setLocalFilters; + + const table = useReactTable({ + data, + columns, + getCoreRowModel: getCoreRowModel(), + ...(enablePagination && { + getPaginationRowModel: getPaginationRowModel(), + }), + onSortingChange: setSorting, + getSortedRowModel: getSortedRowModel(), + onRowSelectionChange: setRowSelection, + onColumnFiltersChange, + getFilteredRowModel: getFilteredRowModel(), + enableRowSelection, + state: { + sorting, + rowSelection, + columnFilters, + }, + }); + + return { table }; +} diff --git a/hooks/useDownload.ts b/hooks/useDownload.ts new file mode 100644 index 000000000..73d04fc80 --- /dev/null +++ b/hooks/useDownload.ts @@ -0,0 +1,14 @@ +import { useCallback } from 'react'; + +export const useDownload = () => { + const download = useCallback((url: string, nameWithExtension: string) => { + const link = document.createElement('a'); + link.href = url; + link.download = nameWithExtension; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + }, []); + + return download; +}; diff --git a/hooks/useNodeMeasurement.tsx b/hooks/useNodeMeasurement.tsx new file mode 100644 index 000000000..b6e8391aa --- /dev/null +++ b/hooks/useNodeMeasurement.tsx @@ -0,0 +1,109 @@ +'use client'; + +import { + useLayoutEffect, + useMemo, + useRef, + useState, + type ReactElement, + type ReactNode, +} from 'react'; +import { createPortal } from 'react-dom'; + +type NodeMeasurement = { + nodeWidth: number; + nodeHeight: number; + /** + * Hidden React node that renders the measurement component into + * `document.body` via a portal. Render this anywhere in the caller's + * JSX — its position in the tree is irrelevant because it portals to + * `document.body`. The hook measures it with a `ResizeObserver`. + * + * The caller MUST render this node somewhere so the measurement + * component actually mounts. + */ + measurementContainer: ReactNode; +}; + +/** + * Measure the natural width and height of a React element off-screen, + * for use in layouts that need to know an item's size before computing + * positions (e.g. ``). + * + * Implementation note: this hook historically rendered the measurement + * component in a secondary React root created with `createRoot`. That + * worked but was fragile (two roots sharing the scheduler, async + * unmount with `setTimeout`, etc.). The current implementation uses + * `createPortal`, which keeps the measurement subtree inside the + * caller's React tree while still rendering into `document.body`. This + * is simpler, shares React context (so the measured component behaves + * identically to how it would render normally), and has no bespoke + * unmount teardown. + */ +export function useNodeMeasurement({ + component, +}: { + component: ReactElement; +}): NodeMeasurement { + const [dimensions, setDimensions] = useState({ nodeWidth: 0, nodeHeight: 0 }); + const wrapperRef = useRef(null); + + useLayoutEffect(() => { + const wrapper = wrapperRef.current; + if (!wrapper) return; + + const applyDimensions = (width: number, height: number) => { + setDimensions((prev) => { + if (prev.nodeWidth === width && prev.nodeHeight === height) { + return prev; + } + return { nodeWidth: width, nodeHeight: height }; + }); + }; + + // Initial synchronous measurement via getBoundingClientRect so the + // caller gets a non-zero size on the first render after mount. + const initialRect = wrapper.getBoundingClientRect(); + applyDimensions(initialRect.width, initialRect.height); + + // Keep in sync with later size changes (e.g. font load, CSS variable + // updates). Reads from `entry.contentRect` — the single-source-of-truth + // exposed by the observer — so this works both in real DOM and under + // jsdom with mocked ResizeObserver. + const observer = new ResizeObserver((entries) => { + const entry = entries[0]; + if (!entry) return; + applyDimensions(entry.contentRect.width, entry.contentRect.height); + }); + observer.observe(wrapper); + + return () => observer.disconnect(); + }, []); + + const measurementContainer = useMemo(() => { + if (typeof document === 'undefined') return null; + return createPortal( + , + document.body, + ); + }, [component]); + + return { + nodeWidth: dimensions.nodeWidth, + nodeHeight: dimensions.nodeHeight, + measurementContainer, + }; +} diff --git a/hooks/useProtocolImport.tsx b/hooks/useProtocolImport.tsx new file mode 100644 index 000000000..ae4206c4c --- /dev/null +++ b/hooks/useProtocolImport.tsx @@ -0,0 +1,374 @@ +'use client'; + +import { + CURRENT_SCHEMA_VERSION, + getMigrationInfo, + hashProtocol, +} from '@codaco/protocol-validation'; +import { queue } from 'async'; +import posthog from 'posthog-js'; +import { useCallback, useRef } from 'react'; +import { + cleanupUploadedFiles, + getNewAssetIds, + getProtocolByHash, + insertProtocol, +} from '~/actions/protocols'; +import { + calculateImportProgress, + type ImportPhase, +} from '~/components/ProtocolImport/calculateImportProgress'; +import ImportToastContent from '~/components/ProtocolImport/ImportToastContent'; +import { useToast } from '@codaco/fresco-ui/Toast'; +import { APP_SUPPORTED_SCHEMA_VERSIONS } from '~/fresco.config'; +import { + validateAndMigrateProtocol, + type ProtocolValidationError, +} from '~/lib/protocol/validateAndMigrateProtocol'; +import { useUploadAssets } from '~/hooks/useUploadAssets'; +import Spinner from '@codaco/fresco-ui/Spinner'; +import { type AssetInsertType } from '~/schemas/protocol'; +import { getProtocolSizeError } from '~/utils/protocolSize'; +import { DatabaseError } from '~/utils/databaseError'; +import { ensureError } from '~/utils/ensureError'; +import { + fileAsArrayBuffer, + getProtocolAssets, + getProtocolJson, +} from '~/utils/protocolImport'; + +function formatNumberList(numbers: number[]): string { + if (numbers.length === 1) { + return numbers[0]!.toString(); + } + + if (numbers.length === 2) { + return numbers.join(' and '); + } + + const lastNumber = numbers.pop(); + const formattedList = numbers.join(', ') + `, and ${lastNumber}`; + + return formattedList; +} + +function getValidationErrorMessage( + validationError: ProtocolValidationError, +): string { + switch (validationError.error) { + case 'invalid-object': + return 'The uploaded file does not contain a valid protocol.'; + case 'unsupported-version': + return `Protocol version not supported. Fresco supports version${APP_SUPPORTED_SCHEMA_VERSIONS.length > 1 ? 's' : ''} ${formatNumberList([...APP_SUPPORTED_SCHEMA_VERSIONS])}.`; + case 'validation-failed': + return 'The protocol is invalid. Please check the protocol structure.'; + case 'missing-dependencies': + return `Migration failed: missing ${validationError.missingDependencies.join(', ')}.`; + } +} + +function generateJobId(): string { + return `import-${Date.now()}-${Math.random().toString(36).substring(2, 9)}`; +} + +export const useProtocolImport = () => { + const { add, update, close } = useToast(); + const { uploadAssets } = useUploadAssets(); + const activeJobs = useRef>(new Set()); + // Store refs to toast manager functions so the queue callback can access them + // without being recreated when toast manager changes + const toastRef = useRef({ add, update, close }); + toastRef.current = { add, update, close }; + + const updateToastPhase = ( + toastId: string, + phase: ImportPhase, + phaseProgress = 0, + error?: string | null, + onRetry?: () => void, + ) => { + const progress = calculateImportProgress(phase, phaseProgress); + const { update: toastUpdate } = toastRef.current; + + if (phase === 'complete') { + toastUpdate(toastId, { + variant: 'success', + title: 'Protocol imported successfully', + description: `Protocol ${toastId} has been imported.`, + icon: null, + timeout: 2000, + }); + return; + } + + if (phase === 'error') { + toastUpdate(toastId, { + variant: 'destructive', + icon: null, + description: ( + + ), + timeout: 0, + }); + return; + } + + toastUpdate(toastId, { + description: , + }); + }; + + const processJob = async ({ + file, + toastId, + }: { + file: File; + toastId: string; + }) => { + const fileName = file.name; + + const retryThisFile = () => { + importProtocols([file]); + }; + + // Storage keys of every blob uploaded during this attempt, so they can be + // cleaned up on a best-effort basis if the import fails partway through. + const uploadedKeys: string[] = []; + + try { + // Phase: Parsing + updateToastPhase(toastId, 'parsing'); + const fileArrayBuffer = await fileAsArrayBuffer(file); + + const JSZip = (await import('jszip')).default; + const zip = await JSZip.loadAsync(fileArrayBuffer); + const protocolJson = await getProtocolJson(zip); + + const dependencies: Record = {}; + if (protocolJson.schemaVersion < CURRENT_SCHEMA_VERSION) { + const migrationInfo = getMigrationInfo( + protocolJson.schemaVersion, + CURRENT_SCHEMA_VERSION, + ); + for (const dep of migrationInfo.dependencies) { + if (dep === 'name') { + dependencies.name = fileName.replace(/\.netcanvas$/i, ''); + } + } + } + + // Phase: Validating + updateToastPhase(toastId, 'validating'); + const validationResult = await validateAndMigrateProtocol( + protocolJson, + dependencies, + ); + + if (!validationResult.success) { + const errorMessage = getValidationErrorMessage(validationResult); + updateToastPhase(toastId, 'error', 0, errorMessage, retryThisFile); + return; + } + + const validatedProtocol = validationResult.protocol; + + // Phase: Checking duplicates + updateToastPhase(toastId, 'checking-duplicates'); + const protocolHash = hashProtocol(validatedProtocol); + const exists = await getProtocolByHash(protocolHash); + if (exists) { + updateToastPhase( + toastId, + 'error', + 0, + 'Protocol already exists. Delete the existing protocol first before importing again.', + retryThisFile, + ); + return; + } + + // Phase: Extracting assets + updateToastPhase(toastId, 'extracting-assets'); + const { fileAssets, apikeyAssets } = await getProtocolAssets( + validatedProtocol, + zip, + ); + + const newAssets: typeof fileAssets = []; + const existingAssetIds: string[] = []; + let newAssetsWithCombinedMetadata: AssetInsertType[] = []; + const newApikeyAssets: typeof apikeyAssets = []; + + try { + const newFileAssetIds = await getNewAssetIds( + fileAssets.map((asset) => asset.assetId), + ); + + fileAssets.forEach((asset) => { + if (newFileAssetIds.includes(asset.assetId)) { + newAssets.push(asset); + } else { + existingAssetIds.push(asset.assetId); + } + }); + + const newApikeyAssetIds = await getNewAssetIds( + apikeyAssets.map((apiKey) => apiKey.assetId), + ); + + apikeyAssets.forEach((apiKey) => { + if (newApikeyAssetIds.includes(apiKey.assetId)) { + newApikeyAssets.push(apiKey); + } else { + existingAssetIds.push(apiKey.assetId); + } + }); + } catch (_e) { + throw new Error('Error checking for existing assets'); + } + + // Phase: Uploading protocol + updateToastPhase(toastId, 'uploading-protocol'); + + const [uploadedOriginalFile] = await uploadAssets([file], (progress) => { + updateToastPhase(toastId, 'uploading-protocol', progress); + }); + + if (uploadedOriginalFile) { + uploadedKeys.push(uploadedOriginalFile.key); + } + + if (uploadedOriginalFile?.name !== file.name) { + throw new Error('Original protocol file upload result mismatch'); + } + + // Phase: Uploading assets + updateToastPhase(toastId, 'uploading-assets'); + + const uploadedAssetFiles = newAssets.length + ? await uploadAssets( + newAssets.map((asset) => asset.file), + (progress) => { + updateToastPhase(toastId, 'uploading-assets', progress); + }, + ) + : []; + + uploadedKeys.push( + ...uploadedAssetFiles.map((uploadedFile) => uploadedFile.key), + ); + + newAssetsWithCombinedMetadata = newAssets.map((asset) => { + const uploadedAsset = uploadedAssetFiles.find( + (uploadedFile) => uploadedFile.name === asset.name, + ); + + if (!uploadedAsset) { + throw new Error('Asset upload failed'); + } + + return { + key: uploadedAsset.key, + assetId: asset.assetId, + name: asset.name, + type: asset.type, + url: uploadedAsset.url, + size: uploadedAsset.size, + }; + }); + + // Phase: Saving + updateToastPhase(toastId, 'saving'); + const result = await insertProtocol({ + protocol: validatedProtocol, + protocolName: fileName, + newAssets: [...newAssetsWithCombinedMetadata, ...newApikeyAssets], + existingAssetIds: existingAssetIds, + originalFile: { + key: uploadedOriginalFile.key, + url: uploadedOriginalFile.url, + }, + }); + + if (result.error) { + throw new DatabaseError(result.error, result.errorDetails); + } + + posthog.capture('ProtocolInstalled', { + protocol: fileName, + }); + + // Phase: Complete + updateToastPhase(toastId, 'complete'); + + return; + } catch (e) { + const error = ensureError(e); + + posthog.captureException(error); + + // Best-effort cleanup of any blobs uploaded before the failure, so a + // failed import doesn't leave orphaned files in storage. + if (uploadedKeys.length > 0) { + void cleanupUploadedFiles(uploadedKeys); + } + + updateToastPhase(toastId, 'error', 0, error.message, retryThisFile); + + return; + } finally { + activeJobs.current.delete(fileName); + } + }; + + const jobQueue = useRef(queue(processJob, 2)); + + const importProtocols = useCallback((files: File[]) => { + files.forEach((file) => { + const sizeError = getProtocolSizeError(file); + if (sizeError) { + toastRef.current.add({ + id: generateJobId(), + variant: 'destructive', + title: file.name, + description: sizeError, + timeout: 0, + }); + return; + } + + const jobAlreadyExists = activeJobs.current.has(file.name); + + if (jobAlreadyExists) { + // eslint-disable-next-line no-console + console.warn(`Skipping duplicate job: ${file.name}`); + return; + } + + activeJobs.current.add(file.name); + + const toastId = generateJobId(); + toastRef.current.add({ + id: toastId, + title: file.name, + description: , + icon: , + timeout: 0, + }); + + jobQueue.current.push({ file, toastId }).catch((error) => { + // eslint-disable-next-line no-console + console.log('jobQueue error', error); + }); + }); + }, []); + + return { + importProtocols, + }; +}; diff --git a/hooks/useScrolledToBottom.ts b/hooks/useScrolledToBottom.ts new file mode 100644 index 000000000..ff5b9bc11 --- /dev/null +++ b/hooks/useScrolledToBottom.ts @@ -0,0 +1,59 @@ +'use client'; + +import { useCallback, useEffect, useRef, useState } from 'react'; + +/** + * Tracks whether a sentinel element has ever been visible within its scroll + * container. Once the sentinel intersects, the state latches to true and does + * not revert when the user scrolls away again. + * + * Returns a callback ref to attach to a sentinel element, plus a boolean. + * Uses a callback ref (not a RefObject) so the observer automatically + * reconnects when the sentinel DOM node changes (e.g. between slide transitions). + * When the sentinel detaches (node is null), the latch resets so a fresh DOM + * instance starts from false. + * + * If content doesn't overflow (sentinel visible on mount), returns true immediately. + */ +export function useScrolledToBottom( + rootRef?: React.RefObject, +) { + const [hasScrolledToBottom, setHasScrolledToBottom] = useState(false); + const observerRef = useRef(null); + + const sentinelRef = useCallback( + (node: HTMLDivElement | null) => { + if (observerRef.current) { + observerRef.current.disconnect(); + observerRef.current = null; + } + + if (!node) { + setHasScrolledToBottom(false); + return; + } + + const observer = new IntersectionObserver( + (entries) => { + const entry = entries[0]; + if (entry?.isIntersecting) { + setHasScrolledToBottom(true); + } + }, + { root: rootRef?.current ?? null }, + ); + + observer.observe(node); + observerRef.current = observer; + }, + [rootRef], + ); + + useEffect(() => { + return () => { + observerRef.current?.disconnect(); + }; + }, []); + + return { hasScrolledToBottom, sentinelRef }; +} diff --git a/hooks/useUploadAssets.ts b/hooks/useUploadAssets.ts new file mode 100644 index 000000000..76d098c6a --- /dev/null +++ b/hooks/useUploadAssets.ts @@ -0,0 +1,123 @@ +'use client'; + +import { useCallback } from 'react'; +import type { PresignedUploadUrl } from '~/lib/storage/services/AssetStorage'; +import { + type UploadedFile, + uploadToUploadThingWithRetry, +} from '~/lib/uploadthing/uploadWithRetry'; + +type PresignResponse = + | { provider: 's3'; urls: PresignedUploadUrl[] } + | { provider: 'uploadthing' }; + +async function fetchPresignResponse( + files: { name: string; size: number }[], +): Promise { + const response = await fetch('/api/storage/presign', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ files }), + }); + + if (!response.ok) { + const error = (await response.json()) as { error?: string }; + throw new Error(error.error ?? 'Failed to prepare upload'); + } + + return (await response.json()) as PresignResponse; +} + +async function uploadFileToUrl( + file: File, + uploadUrl: string, + onProgress?: (loaded: number, total: number) => void, +): Promise { + return new Promise((resolve, reject) => { + const xhr = new XMLHttpRequest(); + xhr.open('PUT', uploadUrl); + + xhr.upload.addEventListener('progress', (event) => { + if (event.lengthComputable && onProgress) { + onProgress(event.loaded, event.total); + } + }); + + xhr.addEventListener('load', () => { + if (xhr.status >= 200 && xhr.status < 300) { + resolve(); + } else { + reject(new Error(`Upload failed with status ${String(xhr.status)}`)); + } + }); + + xhr.addEventListener('error', () => { + reject(new Error('Upload failed')); + }); + + xhr.send(file); + }); +} + +async function uploadViaS3( + files: File[], + urls: PresignedUploadUrl[], + onProgress?: (progress: number) => void, +): Promise { + const totalBytes = files.reduce((sum, f) => sum + f.size, 0); + const loaded = new Array(files.length).fill(0); + + const uploadPromises = files.map(async (file, index) => { + const presigned = urls[index]; + if (!presigned) { + throw new Error(`No presigned URL for file: ${file.name}`); + } + + await uploadFileToUrl(file, presigned.uploadUrl, (fileLoaded) => { + loaded[index] = fileLoaded; + if (onProgress) { + const totalLoaded = loaded.reduce((sum, l) => sum + l, 0); + const progress = + totalBytes > 0 ? Math.round((totalLoaded / totalBytes) * 100) : 0; + onProgress(progress); + } + }); + + return { + key: presigned.fileKey, + url: presigned.publicUrl, + name: file.name, + size: file.size, + }; + }); + + return Promise.all(uploadPromises); +} + +async function uploadViaUploadThing( + files: File[], + onProgress?: (progress: number) => void, +): Promise { + return uploadToUploadThingWithRetry(files, onProgress); +} + +export function useUploadAssets() { + const uploadAssets = useCallback( + async ( + files: File[], + onProgress?: (progress: number) => void, + ): Promise => { + const fileMeta = files.map((f) => ({ name: f.name, size: f.size })); + const presign = await fetchPresignResponse(fileMeta); + + if (presign.provider === 'uploadthing') { + return uploadViaUploadThing(files, onProgress); + } + + return uploadViaS3(files, presign.urls, onProgress); + }, + [], + ); + + return { uploadAssets }; +} diff --git a/instrumentation-client.ts b/instrumentation-client.ts new file mode 100644 index 000000000..3b69fdfcb --- /dev/null +++ b/instrumentation-client.ts @@ -0,0 +1,13 @@ +import { POSTHOG_API_KEY, POSTHOG_PROXY_HOST } from './fresco.config'; + +// Defer PostHog to a separate chunk loaded after the page is interactive. +// The dynamic import creates a code-split point so posthog-js doesn't +// block the initial bundle. +void import('posthog-js').then(({ default: posthog }) => { + posthog.init(POSTHOG_API_KEY, { + api_host: POSTHOG_PROXY_HOST, + defaults: '2026-01-30', + capture_exceptions: true, + autocapture: true, + }); +}); diff --git a/instrumentation.ts b/instrumentation.ts new file mode 100644 index 000000000..8980f1c87 --- /dev/null +++ b/instrumentation.ts @@ -0,0 +1,40 @@ +import { type Instrumentation } from 'next'; + +export function register() { + // No-op for initialization +} +export const onRequestError: Instrumentation.onRequestError = async ( + err, + request, + context, +) => { + // eslint-disable-next-line no-process-env + if (process.env.NEXT_RUNTIME === 'nodejs') { + // Dynamic imports to avoid pulling Prisma (node:path, node:url, etc.) + // into the Edge Instrumentation bundle + const { getPostHogServer, shutdownPostHog } = + await import('./lib/posthog-server'); + const { env } = await import('./env'); + const { prisma } = await import('./lib/db'); + + const posthog = getPostHogServer(); + + // Query installation ID directly instead of using the cached query + // from queries/appSettings. The cached version uses 'use cache' + + // cacheLife(), which isn't available in the instrumentation context. + let distinctId = env.INSTALLATION_ID; + if (!distinctId) { + const result = await prisma.appSettings.findUnique({ + where: { key: 'installationId' }, + }); + distinctId = result?.value ?? 'unknown'; + } + + posthog.captureException(err, distinctId, { + ...context, + $source: 'server', + }); + + await shutdownPostHog(); + } +}; diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 000000000..cadc63f57 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "module": "ESNext", + "moduleResolution": "Bundler", + "target": "ES2022", + "jsx": "react", + "allowImportingTsExtensions": true, + "strictNullChecks": true, + "strictFunctionTypes": true + }, + "exclude": [ + "node_modules", + "**/node_modules/*", + ".next", + "storybook-static", + "lib/db/generated" + ] +} diff --git a/knip.config.ts b/knip.config.ts new file mode 100644 index 000000000..62ded15a8 --- /dev/null +++ b/knip.config.ts @@ -0,0 +1,33 @@ +import type { KnipConfig } from 'knip'; + +// NOTE: This file is named knip.config.ts rather than knip.ts (as the docs suggest) +// because of a TS resolution bug: https://github.com/webpro-nl/knip/issues/649 + +/** + * Knip configuration file + * + * Please make sure to document any exceptions or ignores added here, so future + * maintainers understand the reasoning behind them! + */ + +const config: KnipConfig = { + project: ['**/*.{js,jsx,ts,tsx}'], + ignoreDependencies: [ + 'sharp', // Used by next/image but not directly imported + '@tailwindcss/forms', // Used in globals.css but not detected as used + 'tailwindcss-animate', // Used in globals.css but not detected as used + '@prisma/client', // Used at runtime by Prisma generated client (imports @prisma/client/runtime/client) + ], + ignoreBinaries: [ + 'netlify', // Installed during CI via pnpm add -g netlify-cli + ], + ignoreIssues: { + // Server actions for passkey password management — UI not yet wired + 'actions/webauthn.ts': ['exports'], + + // Pre-existing unused type exports + 'lib/protocol/validateAndMigrateProtocol.ts': ['types'], + }, +}; + +export default config; diff --git a/lib/__tests__/cache.test.ts b/lib/__tests__/cache.test.ts new file mode 100644 index 000000000..3ac6dfa4f --- /dev/null +++ b/lib/__tests__/cache.test.ts @@ -0,0 +1,66 @@ +import { beforeEach, describe, expect, it, vi } from 'vitest'; + +const { mockCacheTag, mockUpdateTag, mockRevalidateTag } = vi.hoisted(() => ({ + mockCacheTag: vi.fn(), + mockUpdateTag: vi.fn(), + mockRevalidateTag: vi.fn(), +})); + +vi.mock('next/cache', () => ({ + cacheTag: mockCacheTag, + updateTag: mockUpdateTag, + revalidateTag: mockRevalidateTag, +})); + +import { safeCacheTag, safeRevalidateTag, safeUpdateTag } from '../cache'; + +describe('safeUpdateTag', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + it('should call updateTag for a single tag', () => { + safeUpdateTag('getInterviews'); + expect(mockUpdateTag).toHaveBeenCalledWith('getInterviews'); + }); + + it('should call updateTag for each tag in an array', () => { + safeUpdateTag(['getInterviews', 'getParticipants']); + expect(mockUpdateTag).toHaveBeenCalledWith('getInterviews'); + expect(mockUpdateTag).toHaveBeenCalledWith('getParticipants'); + }); +}); + +describe('safeRevalidateTag', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + it('should call revalidateTag with max profile for a single tag', () => { + safeRevalidateTag('getInterviews'); + expect(mockRevalidateTag).toHaveBeenCalledWith('getInterviews', 'max'); + }); + + it('should call revalidateTag with max profile for each tag in an array', () => { + safeRevalidateTag(['getInterviews', 'getParticipants']); + expect(mockRevalidateTag).toHaveBeenCalledWith('getInterviews', 'max'); + expect(mockRevalidateTag).toHaveBeenCalledWith('getParticipants', 'max'); + }); +}); + +describe('safeCacheTag', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + it('should call cacheTag for a single tag', () => { + safeCacheTag('getInterviews'); + expect(mockCacheTag).toHaveBeenCalledWith('getInterviews'); + }); + + it('should call cacheTag for each tag in an array', () => { + safeCacheTag(['getInterviews', 'getParticipants']); + expect(mockCacheTag).toHaveBeenCalledWith('getInterviews'); + expect(mockCacheTag).toHaveBeenCalledWith('getParticipants'); + }); +}); diff --git a/lib/__tests__/posthog-server.test.ts b/lib/__tests__/posthog-server.test.ts new file mode 100644 index 000000000..8e56fc9c5 --- /dev/null +++ b/lib/__tests__/posthog-server.test.ts @@ -0,0 +1,144 @@ +import { beforeEach, describe, expect, it, vi } from 'vitest'; + +const { + mockCapture, + mockCaptureException, + mockShutdown, + mockGetDisableAnalytics, + mockGetInstallationId, +} = vi.hoisted(() => ({ + mockCapture: vi.fn(), + mockCaptureException: vi.fn(), + mockShutdown: vi.fn().mockResolvedValue(undefined), + mockGetDisableAnalytics: vi.fn(), + mockGetInstallationId: vi.fn(), +})); + +vi.mock('posthog-node', () => { + const MockPostHog = vi.fn(function (this: Record) { + this.capture = mockCapture; + this.captureException = mockCaptureException; + this.shutdown = mockShutdown; + }); + return { PostHog: MockPostHog }; +}); + +vi.mock('~/queries/appSettings', () => ({ + getDisableAnalytics: mockGetDisableAnalytics, + getInstallationId: mockGetInstallationId, +})); + +vi.mock('~/fresco.config', () => ({ + POSTHOG_API_KEY: 'test-api-key', + POSTHOG_APP_NAME: 'Fresco', + POSTHOG_PROXY_HOST: 'https://test.example.com', +})); + +describe('posthog-server', () => { + beforeEach(() => { + vi.clearAllMocks(); + vi.resetModules(); + }); + + describe('captureEvent', () => { + it('returns early when analytics disabled', async () => { + mockGetDisableAnalytics.mockResolvedValue(true); + + const { captureEvent } = await import('../posthog-server'); + await captureEvent('test-event', { key: 'value' }); + + expect(mockGetDisableAnalytics).toHaveBeenCalled(); + expect(mockGetInstallationId).not.toHaveBeenCalled(); + expect(mockCapture).not.toHaveBeenCalled(); + }); + + it('calls capture with correct args when analytics enabled', async () => { + mockGetDisableAnalytics.mockResolvedValue(false); + mockGetInstallationId.mockResolvedValue('install-123'); + + const { captureEvent } = await import('../posthog-server'); + await captureEvent('test-event', { key: 'value' }); + + expect(mockCapture).toHaveBeenCalledWith({ + distinctId: 'install-123', + event: 'test-event', + properties: { + app: 'Fresco', + installation_id: 'install-123', + key: 'value', + $source: 'server', + }, + }); + }); + + it('swallows errors thrown by underlying lookups', async () => { + mockGetDisableAnalytics.mockRejectedValue(new Error('db down')); + + const { captureEvent } = await import('../posthog-server'); + + await expect( + captureEvent('test-event', { key: 'value' }), + ).resolves.toBeUndefined(); + expect(mockCapture).not.toHaveBeenCalled(); + }); + }); + + describe('captureException', () => { + it('returns early when analytics disabled', async () => { + mockGetDisableAnalytics.mockResolvedValue(true); + + const { captureException } = await import('../posthog-server'); + await captureException(new Error('test'), { extra: 'data' }); + + expect(mockGetDisableAnalytics).toHaveBeenCalled(); + expect(mockGetInstallationId).not.toHaveBeenCalled(); + expect(mockCaptureException).not.toHaveBeenCalled(); + }); + + it('calls captureException with correct args when analytics enabled', async () => { + mockGetDisableAnalytics.mockResolvedValue(false); + mockGetInstallationId.mockResolvedValue('install-123'); + + const error = new Error('test error'); + const { captureException } = await import('../posthog-server'); + await captureException(error, { extra: 'data' }); + + expect(mockCaptureException).toHaveBeenCalledWith(error, 'install-123', { + extra: 'data', + }); + }); + + it('swallows errors thrown by underlying lookups', async () => { + mockGetDisableAnalytics.mockRejectedValue(new Error('db down')); + + const { captureException } = await import('../posthog-server'); + + await expect( + captureException(new Error('test'), { extra: 'data' }), + ).resolves.toBeUndefined(); + expect(mockCaptureException).not.toHaveBeenCalled(); + }); + }); + + describe('shutdownPostHog', () => { + it('calls shutdown and allows re-initialization', async () => { + mockGetDisableAnalytics.mockResolvedValue(false); + mockGetInstallationId.mockResolvedValue('install-123'); + + const { captureEvent, shutdownPostHog } = + await import('../posthog-server'); + + // Initialize the client by making a call + await captureEvent('init-event'); + expect(mockCapture).toHaveBeenCalledTimes(1); + + // Shutdown + await shutdownPostHog(); + expect(mockShutdown).toHaveBeenCalledTimes(1); + + // Re-initialize by making another call + await captureEvent('post-shutdown-event'); + expect(mockCapture).toHaveBeenCalledTimes(2); + }); + }); +}); diff --git a/lib/__tests__/rateLimit.test.ts b/lib/__tests__/rateLimit.test.ts new file mode 100644 index 000000000..b31d59e92 --- /dev/null +++ b/lib/__tests__/rateLimit.test.ts @@ -0,0 +1,418 @@ +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'; + +vi.mock('server-only', () => ({})); + +const { mockCount, mockFindFirst, mockCreate, mockDeleteMany } = vi.hoisted( + () => ({ + mockCount: vi.fn(), + mockFindFirst: vi.fn(), + mockCreate: vi.fn(), + mockDeleteMany: vi.fn(), + }), +); + +vi.mock('~/lib/db', () => ({ + prisma: { + loginAttempt: { + count: mockCount, + findFirst: mockFindFirst, + create: mockCreate, + deleteMany: mockDeleteMany, + }, + }, +})); + +import { + checkRateLimit, + cleanupOldAttempts, + recordLoginAttempt, +} from '~/lib/rateLimit'; + +const WINDOW_MS = 15 * 60 * 1000; +const CLEANUP_AGE_MS = 60 * 60 * 1000; + +describe('checkRateLimit', () => { + beforeEach(() => { + vi.clearAllMocks(); + vi.useFakeTimers(); + }); + + afterEach(() => { + vi.useRealTimers(); + }); + + it('returns allowed when there are no failures (0 failures)', async () => { + mockCount.mockResolvedValue(0); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + expect(result).toEqual({ allowed: true }); + expect(mockFindFirst).not.toHaveBeenCalled(); + }); + + it('returns allowed when there is exactly 1 failure (within FREE_FAILURES limit)', async () => { + mockCount.mockResolvedValue(1); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + expect(result).toEqual({ allowed: true }); + expect(mockFindFirst).not.toHaveBeenCalled(); + }); + + it('returns not allowed with retryAfter when 2 failures and delay not yet expired', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + const lastAttemptTime = now - 500; + mockCount.mockResolvedValue(2); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + // 2 failures → delay = 1000 * 2^(2-2) = 1000ms + expect(result).toEqual({ + allowed: false, + retryAfter: lastAttemptTime + 1000, + }); + }); + + it('returns not allowed with retryAfter when 3 failures and delay not yet expired', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + const lastAttemptTime = now - 500; + mockCount.mockResolvedValue(3); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + // 3 failures → delay = 1000 * 2^(3-2) = 2000ms + expect(result).toEqual({ + allowed: false, + retryAfter: lastAttemptTime + 2000, + }); + }); + + it('returns not allowed with retryAfter when 4 failures and delay not yet expired', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + const lastAttemptTime = now - 500; + mockCount.mockResolvedValue(4); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + // 4 failures → delay = 1000 * 2^(4-2) = 4000ms + expect(result).toEqual({ + allowed: false, + retryAfter: lastAttemptTime + 4000, + }); + }); + + it('returns allowed when delay has expired', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + // Last attempt was 2000ms ago with 2 failures (delay is 1000ms) — fully expired + const lastAttemptTime = now - 2000; + mockCount.mockResolvedValue(2); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + expect(result).toEqual({ allowed: true }); + }); + + it('uses the worst of username and IP failure counts', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + const lastAttemptTime = now - 500; + // Return 1 for username, 3 for IP — worst is 3 → delay 2000ms + mockCount + .mockResolvedValueOnce(1) // username + .mockResolvedValueOnce(3); // ipAddress + // Per-dimension last attempt queries: username then IP + mockFindFirst + .mockResolvedValueOnce({ timestamp: new Date(lastAttemptTime) }) // username + .mockResolvedValueOnce({ timestamp: new Date(lastAttemptTime) }); // ipAddress + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + // IP has 3 failures → delay 2000ms, which is worse than username's 1 failure (0ms) + expect(result).toEqual({ + allowed: false, + retryAfter: lastAttemptTime + 2000, + }); + }); + + it('works with null username (IP-only check)', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + const lastAttemptTime = now - 500; + mockCount.mockResolvedValue(2); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + const result = await checkRateLimit(null, '127.0.0.1'); + + // count should only be called once (for IP, not username) + expect(mockCount).toHaveBeenCalledTimes(1); + expect(mockCount.mock.calls[0]?.[0]).toHaveProperty( + 'where.ipAddress', + '127.0.0.1', + ); + expect(result).toEqual({ + allowed: false, + retryAfter: lastAttemptTime + 1000, + }); + }); + + it('works with null ipAddress (username-only check)', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + const lastAttemptTime = now - 500; + mockCount.mockResolvedValue(2); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + const result = await checkRateLimit('testuser', null); + + // count should only be called once (for username, not IP) + expect(mockCount).toHaveBeenCalledTimes(1); + expect(mockCount.mock.calls[0]?.[0]).toHaveProperty( + 'where.username', + 'testuser', + ); + expect(result).toEqual({ + allowed: false, + retryAfter: lastAttemptTime + 1000, + }); + }); + + it('returns allowed when both username and ipAddress are null', async () => { + const result = await checkRateLimit(null, null); + + expect(mockCount).not.toHaveBeenCalled(); + expect(mockFindFirst).not.toHaveBeenCalled(); + expect(result).toEqual({ allowed: true }); + }); + + it('returns allowed when delay is non-zero but findFirst returns null', async () => { + mockCount.mockResolvedValue(2); + mockFindFirst.mockResolvedValue(null); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + expect(result).toEqual({ allowed: true }); + }); + + it('caps delay at 30000ms for a very large number of failures', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + // With 20 failures: 1000 * 2^18 >> 30000ms, so it should be capped at 30000 + const lastAttemptTime = now - 500; + mockCount.mockResolvedValue(20); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + const result = await checkRateLimit('testuser', '127.0.0.1'); + + expect(result).toEqual({ + allowed: false, + retryAfter: lastAttemptTime + 30_000, + }); + }); + + it('queries count using the 15-minute window', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + mockCount.mockResolvedValue(0); + + await checkRateLimit('testuser', '127.0.0.1'); + + const expectedWindowStart = new Date(now - WINDOW_MS); + expect(mockCount.mock.calls[0]?.[0]).toHaveProperty('where.timestamp', { + gte: expectedWindowStart, + }); + }); + + it('queries per-dimension findFirst using the 15-minute window and orders by timestamp desc', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + const lastAttemptTime = now - 500; + mockCount.mockResolvedValue(2); + mockFindFirst.mockResolvedValue({ + timestamp: new Date(lastAttemptTime), + }); + + await checkRateLimit('testuser', '127.0.0.1'); + + const expectedWindowStart = new Date(now - WINDOW_MS); + // Two separate findFirst calls: one for username, one for IP + expect(mockFindFirst).toHaveBeenCalledTimes(2); + expect(mockFindFirst.mock.calls[0]?.[0]).toHaveProperty( + 'where.username', + 'testuser', + ); + expect(mockFindFirst.mock.calls[0]?.[0]).toHaveProperty('where.timestamp', { + gte: expectedWindowStart, + }); + expect(mockFindFirst.mock.calls[0]?.[0]).toHaveProperty('orderBy', { + timestamp: 'desc', + }); + expect(mockFindFirst.mock.calls[0]?.[0]).toHaveProperty('select', { + timestamp: true, + }); + expect(mockFindFirst.mock.calls[1]?.[0]).toHaveProperty( + 'where.ipAddress', + '127.0.0.1', + ); + }); +}); + +describe('recordLoginAttempt', () => { + beforeEach(() => { + vi.clearAllMocks(); + mockCreate.mockResolvedValue(undefined); + mockDeleteMany.mockResolvedValue({ count: 0 }); + }); + + it('creates a login attempt record with the provided data', async () => { + await recordLoginAttempt('testuser', '127.0.0.1', false); + + expect(mockCreate).toHaveBeenCalledWith({ + data: { + username: 'testuser', + ipAddress: '127.0.0.1', + success: false, + }, + }); + }); + + it('creates a successful login attempt record', async () => { + await recordLoginAttempt('testuser', '127.0.0.1', true); + + expect(mockCreate).toHaveBeenCalledWith({ + data: { + username: 'testuser', + ipAddress: '127.0.0.1', + success: true, + }, + }); + }); + + it('creates a record with null username', async () => { + await recordLoginAttempt(null, '127.0.0.1', false); + + expect(mockCreate).toHaveBeenCalledWith({ + data: { + username: null, + ipAddress: '127.0.0.1', + success: false, + }, + }); + }); + + it('creates a record with null ipAddress', async () => { + await recordLoginAttempt('testuser', null, false); + + expect(mockCreate).toHaveBeenCalledWith({ + data: { + username: 'testuser', + ipAddress: null, + success: false, + }, + }); + }); + + it('calls cleanupOldAttempts probabilistically after creating the record', async () => { + const randomSpy = vi.spyOn(Math, 'random').mockReturnValue(0.01); + + await recordLoginAttempt('testuser', '127.0.0.1', false); + + expect(mockCreate).toHaveBeenCalledTimes(1); + expect(mockDeleteMany).toHaveBeenCalledTimes(1); + + randomSpy.mockRestore(); + }); + + it('skips cleanup when random value exceeds threshold', async () => { + const randomSpy = vi.spyOn(Math, 'random').mockReturnValue(0.5); + + await recordLoginAttempt('testuser', '127.0.0.1', false); + + expect(mockCreate).toHaveBeenCalledTimes(1); + expect(mockDeleteMany).not.toHaveBeenCalled(); + + randomSpy.mockRestore(); + }); + + it('calls cleanup after create, not before', async () => { + const randomSpy = vi.spyOn(Math, 'random').mockReturnValue(0.01); + const callOrder: string[] = []; + mockCreate.mockImplementation(() => { + callOrder.push('create'); + return Promise.resolve(undefined); + }); + mockDeleteMany.mockImplementation(() => { + callOrder.push('deleteMany'); + return Promise.resolve({ count: 0 }); + }); + + await recordLoginAttempt('testuser', '127.0.0.1', false); + + expect(callOrder).toEqual(['create', 'deleteMany']); + + randomSpy.mockRestore(); + }); +}); + +describe('cleanupOldAttempts', () => { + beforeEach(() => { + vi.clearAllMocks(); + vi.useFakeTimers(); + mockDeleteMany.mockResolvedValue({ count: 0 }); + }); + + afterEach(() => { + vi.useRealTimers(); + }); + + it('deletes records older than 1 hour', async () => { + const now = 1_000_000; + vi.setSystemTime(now); + + await cleanupOldAttempts(); + + const expectedCutoff = new Date(now - CLEANUP_AGE_MS); + expect(mockDeleteMany).toHaveBeenCalledWith({ + where: { + timestamp: { lt: expectedCutoff }, + }, + }); + }); + + it('calls deleteMany exactly once', async () => { + await cleanupOldAttempts(); + + expect(mockDeleteMany).toHaveBeenCalledTimes(1); + }); +}); diff --git a/lib/auth/__tests__/totp.test.ts b/lib/auth/__tests__/totp.test.ts new file mode 100644 index 000000000..705a5ea22 --- /dev/null +++ b/lib/auth/__tests__/totp.test.ts @@ -0,0 +1,194 @@ +import { afterEach, describe, expect, it, vi } from 'vitest'; + +vi.mock('server-only', () => ({})); + +import { Secret, TOTP } from 'otpauth'; +import { + createTwoFactorToken, + generateQrCodeDataUrl, + generateRecoveryCodes, + generateTotpSecret, + generateTotpUri, + hashRecoveryCode, + verifyTotpCode, + verifyTwoFactorToken, +} from '~/lib/auth/totp'; + +describe('generateTotpSecret', () => { + it('returns a non-empty string', () => { + const secret = generateTotpSecret(); + expect(typeof secret).toBe('string'); + expect(secret.length).toBeGreaterThan(0); + }); + + it('returns a valid base32 string', () => { + const secret = generateTotpSecret(); + expect(secret).toMatch(/^[A-Z2-7]+=*$/); + }); + + it('returns a unique secret on each call', () => { + const secret1 = generateTotpSecret(); + const secret2 = generateTotpSecret(); + expect(secret1).not.toBe(secret2); + }); +}); + +describe('generateTotpUri', () => { + it('returns a string starting with otpauth://totp/', () => { + const secret = generateTotpSecret(); + const uri = generateTotpUri(secret, 'testuser', 'Fresco (localhost)'); + expect(uri).toMatch(/^otpauth:\/\/totp\//); + }); + + it('contains the issuer Fresco', () => { + const secret = generateTotpSecret(); + const uri = generateTotpUri(secret, 'testuser', 'Fresco (localhost)'); + expect(uri).toContain('Fresco'); + }); + + it('contains the username in the label', () => { + const secret = generateTotpSecret(); + const username = 'alice@example.com'; + const uri = generateTotpUri(secret, username, 'Fresco (localhost)'); + expect(uri).toContain(encodeURIComponent(username)); + }); +}); + +describe('verifyTotpCode', () => { + it('returns true for a valid code generated from the same secret', () => { + const secret = new Secret(); + const totp = new TOTP({ issuer: 'Fresco', secret }); + const validCode = totp.generate(); + expect(verifyTotpCode(secret.base32, validCode)).toBe(true); + }); + + it('returns false for an incorrect code', () => { + const secret = generateTotpSecret(); + expect(verifyTotpCode(secret, '000000')).toBe(false); + }); + + it('returns false for an empty string', () => { + const secret = generateTotpSecret(); + expect(verifyTotpCode(secret, '')).toBe(false); + }); +}); + +describe('generateRecoveryCodes', () => { + it('returns exactly 10 codes', () => { + const codes = generateRecoveryCodes(); + expect(codes).toHaveLength(10); + }); + + it('each code is 20 hex characters (10 bytes as hex)', () => { + const codes = generateRecoveryCodes(); + for (const code of codes) { + expect(code).toMatch(/^[0-9a-f]{20}$/); + } + }); + + it('all codes are unique', () => { + const codes = generateRecoveryCodes(); + const uniqueCodes = new Set(codes); + expect(uniqueCodes.size).toBe(codes.length); + }); +}); + +describe('hashRecoveryCode', () => { + it('returns a 64-character hex string (SHA-256)', () => { + const hash = hashRecoveryCode('somerecoverycode'); + expect(hash).toMatch(/^[0-9a-f]{64}$/); + }); + + it('same input produces the same hash', () => { + const code = 'a1b2c3d4e5'; + const hash1 = hashRecoveryCode(code); + const hash2 = hashRecoveryCode(code); + expect(hash1).toBe(hash2); + }); + + it('different inputs produce different hashes', () => { + const hash1 = hashRecoveryCode('code-one'); + const hash2 = hashRecoveryCode('code-two'); + expect(hash1).not.toBe(hash2); + }); +}); + +describe('createTwoFactorToken and verifyTwoFactorToken', () => { + const installationId = 'test-installation-id'; + + afterEach(() => { + vi.useRealTimers(); + }); + + it('created token can be verified and returns the correct userId', () => { + const userId = 'user-abc-123'; + const token = createTwoFactorToken(userId, installationId); + const result = verifyTwoFactorToken(token, installationId); + expect(result.valid).toBe(true); + if (result.valid) { + expect(result.userId).toBe(userId); + } + }); + + it('tampered signature returns { valid: false }', () => { + const token = createTwoFactorToken('user-123', installationId); + const separatorIndex = token.lastIndexOf(':'); + const payloadEncoded = token.slice(0, separatorIndex); + const tamperedToken = `${payloadEncoded}:invalidsignatureXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX`; + const result = verifyTwoFactorToken(tamperedToken, installationId); + expect(result.valid).toBe(false); + }); + + it('tampered payload returns { valid: false }', () => { + const token = createTwoFactorToken('user-123', installationId); + const separatorIndex = token.lastIndexOf(':'); + const signature = token.slice(separatorIndex + 1); + const tamperedPayload = Buffer.from('tampered:payload:data').toString( + 'base64url', + ); + const tamperedToken = `${tamperedPayload}:${signature}`; + const result = verifyTwoFactorToken(tamperedToken, installationId); + expect(result.valid).toBe(false); + }); + + it('token missing separator returns { valid: false }', () => { + const result = verifyTwoFactorToken( + 'tokenwithoutseparator', + installationId, + ); + expect(result.valid).toBe(false); + }); + + it('empty string returns { valid: false }', () => { + const result = verifyTwoFactorToken('', installationId); + expect(result.valid).toBe(false); + }); + + it('expired token returns { valid: false }', () => { + vi.useFakeTimers(); + const userId = 'user-expired'; + const token = createTwoFactorToken(userId, installationId); + + // Advance time past the 5-minute TTL + vi.advanceTimersByTime(5 * 60 * 1000 + 1); + + const result = verifyTwoFactorToken(token, installationId); + expect(result.valid).toBe(false); + }); + + it('token created with one installation ID fails verification with a different one', () => { + const userId = 'user-cross-id'; + const token = createTwoFactorToken(userId, 'installation-a'); + const result = verifyTwoFactorToken(token, 'installation-b'); + expect(result.valid).toBe(false); + }); +}); + +describe('generateQrCodeDataUrl', () => { + it('returns a data URL starting with data:image/png;base64,', async () => { + const secret = generateTotpSecret(); + const uri = generateTotpUri(secret, 'testuser', 'Fresco (localhost)'); + const dataUrl = await generateQrCodeDataUrl(uri); + expect(dataUrl).toMatch(/^data:image\/png;base64,/); + }); +}); diff --git a/lib/auth/__tests__/webauthn.test.ts b/lib/auth/__tests__/webauthn.test.ts new file mode 100644 index 000000000..177f60c91 --- /dev/null +++ b/lib/auth/__tests__/webauthn.test.ts @@ -0,0 +1,69 @@ +import { describe, expect, it, vi } from 'vitest'; + +vi.mock('server-only', () => ({})); + +vi.mock('next/headers', () => ({ + cookies: vi.fn(() => ({ + get: vi.fn(), + set: vi.fn(), + delete: vi.fn(), + })), + headers: vi.fn(() => new Map([['origin', 'https://fresco.example.com']])), +})); + +vi.mock('~/queries/appSettings', () => ({ + getInstallationId: vi.fn().mockResolvedValue('test-installation-id'), +})); + +describe('getWebAuthnConfig', () => { + it('derives rpID and origin from the origin header', async () => { + const { getWebAuthnConfig } = await import('../webauthn'); + const config = await getWebAuthnConfig(); + expect(config.rpID).toBe('fresco.example.com'); + expect(config.rpName).toBe('Fresco'); + expect(config.origin).toBe('https://fresco.example.com'); + }); +}); + +describe('challenge cookie', () => { + it('creates and verifies a valid challenge cookie', async () => { + const { createChallengeCookie, verifyChallengeCookie } = + await import('../webauthn'); + const challenge = 'test-challenge-base64url'; + + const cookieValue = await createChallengeCookie(challenge); + expect(typeof cookieValue).toBe('string'); + + const result = await verifyChallengeCookie(cookieValue); + expect(result).toBe(challenge); + }); + + it('rejects a tampered challenge cookie', async () => { + const { createChallengeCookie, verifyChallengeCookie } = + await import('../webauthn'); + const challenge = 'test-challenge'; + + const cookieValue = await createChallengeCookie(challenge); + const tampered = 'tampered' + cookieValue; + + const result = await verifyChallengeCookie(tampered); + expect(result).toBeNull(); + }); + + it('rejects an expired challenge cookie', async () => { + const { createChallengeCookie, verifyChallengeCookie } = + await import('../webauthn'); + const challenge = 'test-challenge'; + + const cookieValue = await createChallengeCookie(challenge); + + // Fast-forward time past the 5 minute TTL + vi.useFakeTimers(); + vi.advanceTimersByTime(6 * 60 * 1000); + + const result = await verifyChallengeCookie(cookieValue); + expect(result).toBeNull(); + + vi.useRealTimers(); + }); +}); diff --git a/lib/auth/guards.ts b/lib/auth/guards.ts new file mode 100644 index 000000000..f016a0d5b --- /dev/null +++ b/lib/auth/guards.ts @@ -0,0 +1,54 @@ +import { cookies } from 'next/headers'; +import { redirect } from 'next/navigation'; +import { cache } from 'react'; +import 'server-only'; +import { prisma } from '~/lib/db'; +import { SESSION_COOKIE_NAME } from './session'; + +export const getServerSession = cache(async () => { + const cookieStore = await cookies(); + const sessionId = cookieStore.get(SESSION_COOKIE_NAME)?.value; + if (!sessionId) return null; + + const session = await prisma.session.findUnique({ + where: { id: sessionId }, + include: { user: true }, + }); + + if (!session) return null; + + if (session.idle_expires < BigInt(Date.now())) { + // Session already expired; delete is best-effort (may already be removed) + await prisma.session + .delete({ where: { id: sessionId } }) + .catch((_error: unknown) => undefined); + return null; + } + + return { + sessionId: session.id, + user: { + userId: session.user_id, + username: session.user.username, + }, + }; +}); + +export async function requirePageAuth() { + const session = await getServerSession(); + + if (!session) { + redirect('/signin'); + } + return session; +} + +export async function requireApiAuth() { + const session = await getServerSession(); + + if (!session) { + throw new Error('Unauthorized'); + } + + return session; +} diff --git a/lib/auth/session.ts b/lib/auth/session.ts new file mode 100644 index 000000000..802cd5514 --- /dev/null +++ b/lib/auth/session.ts @@ -0,0 +1,41 @@ +import 'server-only'; + +import { createId } from '@paralleldrive/cuid2'; +import { cookies } from 'next/headers'; +import { env } from '~/env'; +import { prisma } from '~/lib/db'; + +export const SESSION_COOKIE_NAME = 'auth_session'; +const SESSION_ACTIVE_PERIOD_MS = 1000 * 60 * 60 * 24; // 24 hours +const SESSION_IDLE_PERIOD_MS = 1000 * 60 * 60 * 24 * 14; // 2 weeks + +export async function createSessionCookie(userId: string) { + const sessionId = createId(); + const now = Date.now(); + + await prisma.session.create({ + data: { + id: sessionId, + user_id: userId, + active_expires: BigInt(now + SESSION_ACTIVE_PERIOD_MS), + idle_expires: BigInt(now + SESSION_IDLE_PERIOD_MS), + }, + }); + + const cookieStore = await cookies(); + // COOKIE_SECURE overrides the default when set (e.g. 'false' for test servers + // on http://localhost where WebKit rejects Secure cookies over plain HTTP). + // String comparison handles both validated (boolean) and unvalidated (string) env. + const secure = + env.COOKIE_SECURE !== undefined + ? String(env.COOKIE_SECURE) !== 'false' + : env.NODE_ENV === 'production'; + + cookieStore.set(SESSION_COOKIE_NAME, sessionId, { + httpOnly: true, + secure, + sameSite: 'lax', + path: '/', + maxAge: SESSION_IDLE_PERIOD_MS / 1000, + }); +} diff --git a/lib/auth/totp.ts b/lib/auth/totp.ts new file mode 100644 index 000000000..889e77cbf --- /dev/null +++ b/lib/auth/totp.ts @@ -0,0 +1,134 @@ +import 'server-only'; + +import { + createHash, + createHmac, + hkdfSync, + randomBytes, + timingSafeEqual, +} from 'node:crypto'; +import { Secret, TOTP } from 'otpauth'; +import { toDataURL } from 'qrcode'; + +const RECOVERY_CODE_COUNT = 10; +const RECOVERY_CODE_BYTES = 10; +const TWO_FACTOR_TOKEN_TTL_MS = 5 * 60 * 1000; + +function deriveHmacKey(installationId: string): Buffer { + return Buffer.from( + hkdfSync('sha256', installationId, '', 'fresco-two-factor-token', 32), + ); +} + +export function generateTotpSecret(): string { + const secret = new Secret(); + return secret.base32; +} + +export function generateTotpUri( + secret: string, + username: string, + issuer: string, +): string { + const totp = new TOTP({ + issuer, + label: username, + secret: Secret.fromBase32(secret), + }); + + return totp.toString(); +} + +export function verifyTotpCode(secret: string, code: string): boolean { + const totp = new TOTP({ + secret: Secret.fromBase32(secret), + }); + + const delta = totp.validate({ token: code, window: 1 }); + return delta !== null; +} + +export function generateRecoveryCodes(): string[] { + return Array.from({ length: RECOVERY_CODE_COUNT }, () => + randomBytes(RECOVERY_CODE_BYTES).toString('hex'), + ); +} + +export function hashRecoveryCode(code: string): string { + return createHash('sha256').update(code).digest('hex'); +} + +export function createTwoFactorToken( + userId: string, + installationId: string, +): string { + const hmacKey = deriveHmacKey(installationId); + const timestamp = Date.now().toString(); + const nonce = randomBytes(16).toString('hex'); + const payload = `${userId}:${timestamp}:${nonce}`; + + const payloadEncoded = Buffer.from(payload).toString('base64url'); + const signature = createHmac('sha256', hmacKey) + .update(payload) + .digest('base64url'); + + return `${payloadEncoded}:${signature}`; +} + +export function verifyTwoFactorToken( + token: string, + installationId: string, +): { valid: true; userId: string } | { valid: false } { + const hmacKey = deriveHmacKey(installationId); + const separatorIndex = token.lastIndexOf(':'); + if (separatorIndex === -1) { + return { valid: false }; + } + + const payloadEncoded = token.slice(0, separatorIndex); + const signature = token.slice(separatorIndex + 1); + + let payload: string; + try { + payload = Buffer.from(payloadEncoded, 'base64url').toString(); + } catch { + return { valid: false }; + } + + const expectedSignature = createHmac('sha256', hmacKey) + .update(payload) + .digest('base64url'); + + const sigBuf = Buffer.from(signature); + const expectedBuf = Buffer.from(expectedSignature); + + if (sigBuf.length !== expectedBuf.length) { + return { valid: false }; + } + + if (!timingSafeEqual(sigBuf, expectedBuf)) { + return { valid: false }; + } + + const parts = payload.split(':'); + if (parts.length !== 3) { + return { valid: false }; + } + + const [userId, timestampStr] = parts; + const timestamp = Number(timestampStr); + + if (!userId || Number.isNaN(timestamp)) { + return { valid: false }; + } + + if (Date.now() - timestamp > TWO_FACTOR_TOKEN_TTL_MS) { + return { valid: false }; + } + + return { valid: true, userId }; +} + +export async function generateQrCodeDataUrl(uri: string): Promise { + return toDataURL(uri); +} diff --git a/lib/auth/utils/aaguid-names.json b/lib/auth/utils/aaguid-names.json new file mode 100644 index 000000000..e88e36788 --- /dev/null +++ b/lib/auth/utils/aaguid-names.json @@ -0,0 +1,41 @@ +{ + "a11a5faa-9f32-4b8c-8c5d-2f7d13e8c942": "AliasVault", + "ea9b8d66-4d01-1d21-3ce4-b6b48cb575d4": "Google Password Manager", + "adce0002-35bc-c60a-648b-0b25f1f05503": "Chrome on Mac", + "08987058-cadc-4b81-b6e1-30de50dcbe96": "Windows Hello", + "9ddd1817-af5a-4672-a2b9-3e3dd95000a9": "Windows Hello", + "6028b017-b1d4-4c02-b4b3-afcdafc96bb2": "Windows Hello", + "dd4ec289-e01d-41c9-bb89-70fa845d4bf2": "iCloud Keychain (Managed)", + "531126d6-e717-415c-9320-3d9aa6981239": "Dashlane", + "bada5566-a7aa-401f-bd96-45619a55120d": "1Password", + "b84e4048-15dc-4dd0-8640-f4f60813c8af": "NordPass", + "0ea242b4-43c4-4a1b-8b17-dd6d0b6baec6": "Keeper", + "891494da-2c90-4d31-a9cd-4eab0aed1309": "Sésame", + "f3809540-7f14-49c1-a8b3-8f813b225541": "Enpass", + "b5397666-4885-aa6b-cebf-e52262a439a2": "Chromium Browser", + "771b48fd-d3d4-4f74-9232-fc157ab0507a": "Edge on Mac", + "39a5647e-1853-446c-a1f6-a79bae9f5bc7": "IDmelon", + "d548826e-79b4-db40-a3d8-11116f7e8349": "Bitwarden", + "fbfc3007-154e-4ecc-8c0b-6e020557d7bd": "Apple Passwords", + "53414d53-554e-4700-0000-000000000000": "Samsung Pass", + "66a0ccb3-bd6a-191f-ee06-e375c50b9846": "Thales Bio iOS SDK", + "8836336a-f590-0921-301d-46427531eee6": "Thales Bio Android SDK", + "cd69adb5-3c7a-deb9-3177-6800ea6cb72a": "Thales PIN Android SDK", + "17290f1e-c212-34d0-1423-365d729f09d9": "Thales PIN iOS SDK", + "50726f74-6f6e-5061-7373-50726f746f6e": "Proton Pass", + "fdb141b2-5d84-443e-8a35-4698c205a502": "KeePassXC", + "eaecdef2-1c31-5634-8639-f1cbd9c00a08": "KeePassDX", + "cc45f64e-52a2-451b-831a-4edd8022a202": "ToothPic Passkey Provider", + "bfc748bb-3429-4faa-b9f9-7cfa9f3b76d0": "iPasswords", + "b35a26b2-8f6e-4697-ab1d-d44db4da28c6": "Zoho Vault", + "b78a0a55-6ef8-d246-a042-ba0f6d55050c": "LastPass", + "de503f9c-21a4-4f76-b4b7-558eb55c6f89": "Devolutions", + "22248c4c-7a12-46e2-9a41-44291b373a4d": "LogMeOnce", + "a10c6dd9-465e-4226-8198-c7c44b91c555": "Kaspersky Password Manager", + "d350af52-0351-4ba2-acd3-dfeeadc3f764": "pwSafe", + "d3452668-01fd-4c12-926c-83a4204853aa": "Microsoft Password Manager", + "6d212b28-a2c1-4638-b375-5932070f62e9": "initial", + "d49b2120-b865-4191-8cea-be84a52b0485": "Heimlane Vault", + "e8b7f4a2-c3d5-e6f7-890a-b1c2d3e4f567": "Sherlocked", + "d9be9d39-e6a6-4c28-a581-32b044d986e4": "Sticky Password Manager" +} diff --git a/lib/auth/utils/getAuthenticatorName.ts b/lib/auth/utils/getAuthenticatorName.ts new file mode 100644 index 000000000..a066b5b5d --- /dev/null +++ b/lib/auth/utils/getAuthenticatorName.ts @@ -0,0 +1,12 @@ +import aaguidNames from './aaguid-names.json'; + +const registry = aaguidNames as Record; + +export function getAuthenticatorName( + aaguid: string, + deviceType: string, +): string { + const name = registry[aaguid]; + if (name) return name; + return deviceType === 'multiDevice' ? 'Synced passkey' : 'Security key'; +} diff --git a/lib/auth/webauthn.ts b/lib/auth/webauthn.ts new file mode 100644 index 000000000..51abd6658 --- /dev/null +++ b/lib/auth/webauthn.ts @@ -0,0 +1,101 @@ +import 'server-only'; + +import { createHmac, hkdfSync, timingSafeEqual } from 'node:crypto'; +import { headers } from 'next/headers'; +import { getInstallationId } from '~/queries/appSettings'; + +const CHALLENGE_TTL_MS = 5 * 60 * 1000; // 5 minutes + +function deriveWebAuthnKey(installationId: string): Buffer { + return Buffer.from( + hkdfSync('sha256', installationId, '', 'fresco-webauthn-challenge', 32), + ); +} + +export async function getWebAuthnConfig() { + const headerStore = await headers(); + const origin = + headerStore.get('origin') ?? + headerStore.get('referer') ?? + 'http://localhost:3000'; + const url = new URL(origin); + + return { + rpID: url.hostname, + rpName: 'Fresco', + origin: url.origin, + attestationType: 'none' as const, + authenticatorSelection: { + residentKey: 'preferred' as const, + // 'preferred' means the authenticator MAY skip user verification. + // requireUserVerification must stay in sync — when generation uses + // 'preferred', verification must accept responses without UV. + userVerification: 'preferred' as const, + }, + requireUserVerification: false, + }; +} + +export async function createChallengeCookie( + challenge: string, +): Promise { + const installationId = await getInstallationId(); + if (!installationId) { + throw new Error('Installation ID not configured'); + } + + const key = deriveWebAuthnKey(installationId); + const timestamp = Date.now().toString(); + const payload = `${challenge}:${timestamp}`; + const payloadEncoded = Buffer.from(payload).toString('base64url'); + const signature = createHmac('sha256', key) + .update(payload) + .digest('base64url'); + + return `${payloadEncoded}:${signature}`; +} + +export async function verifyChallengeCookie( + cookie: string, +): Promise { + const installationId = await getInstallationId(); + if (!installationId) { + return null; + } + + const key = deriveWebAuthnKey(installationId); + const separatorIndex = cookie.lastIndexOf(':'); + if (separatorIndex === -1) return null; + + const payloadEncoded = cookie.slice(0, separatorIndex); + const signature = cookie.slice(separatorIndex + 1); + + let payload: string; + try { + payload = Buffer.from(payloadEncoded, 'base64url').toString(); + } catch { + return null; + } + + const expectedSignature = createHmac('sha256', key) + .update(payload) + .digest('base64url'); + + const sigBuf = Buffer.from(signature); + const expectedBuf = Buffer.from(expectedSignature); + + if (sigBuf.length !== expectedBuf.length) return null; + if (!timingSafeEqual(sigBuf, expectedBuf)) return null; + + const colonIndex = payload.lastIndexOf(':'); + if (colonIndex === -1) return null; + + const challenge = payload.slice(0, colonIndex); + const timestampStr = payload.slice(colonIndex + 1); + const timestamp = Number(timestampStr); + + if (Number.isNaN(timestamp)) return null; + if (Date.now() - timestamp > CHALLENGE_TTL_MS) return null; + + return challenge; +} diff --git a/lib/cache/index.ts b/lib/cache/index.ts new file mode 100644 index 000000000..0f7f9114d --- /dev/null +++ b/lib/cache/index.ts @@ -0,0 +1,54 @@ +// eslint-disable-next-line no-restricted-imports +import { cacheTag, revalidateTag, updateTag } from 'next/cache'; + +export const CacheTags = [ + 'activityFeed', + 'appSettings', + 'totpIsEnabled', + 'getInterviews', + 'summaryStatistics', + 'getParticipants', + 'getProtocols', + 'interviewCount', + 'protocolCount', + 'participantCount', + 'getApiTokens', + 'getUsers', +] as const satisfies string[]; + +type StaticTag = (typeof CacheTags)[number]; + +type DynamicTag = `${StaticTag}-${string}`; + +type CacheTag = StaticTag | DynamicTag; + +/** + * Invalidate cache tags from Server Actions using `updateTag` for + * read-your-own-writes semantics (the next request waits for fresh data). + */ +export function safeUpdateTag(tag: CacheTag | CacheTag[]) { + const tags = Array.isArray(tag) ? tag : [tag]; + for (const t of tags) { + updateTag(t); + } +} + +/** + * Invalidate cache tags from Route Handlers using `revalidateTag` with the + * `'max'` profile (stale-while-revalidate). Cannot use `updateTag` here + * because it is only available in Server Actions. + */ +export function safeRevalidateTag(tag: CacheTag | CacheTag[]) { + const tags = Array.isArray(tag) ? tag : [tag]; + for (const t of tags) { + revalidateTag(t, 'max'); + } +} + +export function safeCacheTag(tag: CacheTag | CacheTag[]) { + if (Array.isArray(tag)) { + tag.forEach((t) => cacheTag(t)); + return; + } + cacheTag(tag); +} diff --git a/lib/db/__tests__/resetDatabase.test.ts b/lib/db/__tests__/resetDatabase.test.ts new file mode 100644 index 000000000..6a89c3d12 --- /dev/null +++ b/lib/db/__tests__/resetDatabase.test.ts @@ -0,0 +1,103 @@ +import fs from 'node:fs'; +import path from 'node:path'; +import { beforeEach, describe, expect, it, vi } from 'vitest'; + +const SCHEMA_PATH = path.resolve(__dirname, '../schema.prisma'); + +// Parse schema.prisma to get all model names and cascade-deleted models +function parseSchema(): { + allModels: string[]; + cascadeDeletedModels: string[]; +} { + const schema = fs.readFileSync(SCHEMA_PATH, 'utf-8'); + + // Extract all model names + const modelRegex = /^model\s+(\w+)\s*\{/gm; + const allModels: string[] = []; + let match; + while ((match = modelRegex.exec(schema)) !== null) { + if (match[1]) allModels.push(match[1]); + } + + // Find models that have onDelete: Cascade in their relations + // These models are automatically deleted when their parent is deleted + const cascadeDeletedModels: string[] = []; + const modelBlockRegex = /^model\s+(\w+)\s*\{([^}]+)\}/gm; + + while ((match = modelBlockRegex.exec(schema)) !== null) { + const modelName = match[1]; + const modelBody = match[2]; + if (modelName && modelBody && /onDelete:\s*Cascade/i.test(modelBody)) { + cascadeDeletedModels.push(modelName); + } + } + + return { allModels, cascadeDeletedModels }; +} + +const mockPrisma = { + user: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) }, + participant: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) }, + protocol: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) }, + appSettings: { + deleteMany: vi.fn().mockResolvedValue({ count: 0 }), + create: vi.fn().mockResolvedValue({ key: 'initializedAt', value: '' }), + }, + events: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) }, + asset: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) }, + apiToken: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) }, + loginAttempt: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) }, +}; + +vi.mock('~/lib/db', () => ({ + prisma: mockPrisma, +})); + +describe('resetDatabase', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + it('should delete all models defined in the schema (except cascade-deleted ones)', async () => { + const { resetDatabase } = await import('~/lib/db/resetDatabase'); + const { allModels, cascadeDeletedModels } = parseSchema(); + + // Models that need explicit deletion (not cascade-deleted) + const modelsRequiringDeletion = allModels.filter( + (model) => !cascadeDeletedModels.includes(model), + ); + + await resetDatabase(); + + // Verify each model that requires deletion has deleteMany called + for (const model of modelsRequiringDeletion) { + const prismaKey = model.charAt(0).toLowerCase() + model.slice(1); + const mockModel = mockPrisma[prismaKey as keyof typeof mockPrisma]; + + expect( + mockModel, + `Missing mock for model "${model}" - add it to mockPrisma and resetDatabase()`, + ).toBeDefined(); + + expect( + 'deleteMany' in mockModel ? mockModel.deleteMany : undefined, + `Model "${model}" should have deleteMany called in resetDatabase()`, + ).toHaveBeenCalled(); + } + }); + + it('should create only initializedAt setting after clearing data', async () => { + const { resetDatabase } = await import('~/lib/db/resetDatabase'); + + await resetDatabase(); + + expect(mockPrisma.appSettings.create).toHaveBeenCalledOnce(); + + const callArg: unknown = mockPrisma.appSettings.create.mock.lastCall?.[0]; + expect(callArg).toHaveProperty('data.key', 'initializedAt'); + expect(callArg).toHaveProperty( + 'data.value', + expect.stringMatching(/^\d{4}-\d{2}-\d{2}T/), + ); + }); +}); diff --git a/lib/db/index.ts b/lib/db/index.ts new file mode 100644 index 000000000..2b9c68c92 --- /dev/null +++ b/lib/db/index.ts @@ -0,0 +1,235 @@ +import { + type CurrentProtocol, + CurrentProtocolSchema, +} from '@codaco/protocol-validation'; +import { NcNetworkSchema, StageMetadataSchema } from '@codaco/shared-consts'; +import { PrismaNeon } from '@prisma/adapter-neon'; +import { PrismaPg } from '@prisma/adapter-pg'; +import { env } from '~/env'; +import { PrismaClient } from '~/lib/db/generated/client'; +import { captureException } from '../posthog-server'; + +/** + * Safely parse data with a Zod schema. On failure: + * - Development: logs a warning and returns the fallback so the app stays usable + * - Production: captures the exception to PostHog and throws, which is caught + * by the nearest error.tsx boundary rather than crashing the entire app + */ +function safeParseField( + schema: { + safeParse: (data: unknown) => { + success: boolean; + data?: T; + error?: unknown; + }; + }, + data: unknown, + fieldName: string, + fallback: T, +): T { + const result = schema.safeParse(data); + + if (result.success && result.data !== undefined) { + return result.data; + } + + const parseError = result.error; + + if (env.NODE_ENV === 'development') { + // eslint-disable-next-line no-console + console.warn(`[Prisma] Failed to parse "${fieldName}" field:`, parseError); + return fallback; + } + + void captureException(parseError, { + context: `prisma.result.${fieldName}`, + }); + + throw new Error( + `Failed to parse "${fieldName}" from database. This is likely a data integrity issue.`, + ); +} + +const createPrismaClient = () => { + const adapter = env.USE_NEON_POSTGRES_ADAPTER + ? new PrismaNeon({ connectionString: env.DATABASE_URL }) + : new PrismaPg({ connectionString: env.DATABASE_URL }); + + return new PrismaClient({ + adapter, + log: env.NODE_ENV === 'development' ? ['error', 'warn'] : ['error'], + }).$extends({ + /** + * These transformations use our Zod schemas to parse JSON from the DB + * into known structures. + * + * Ultimately we will want to think about how to replace this. Some + * considerations: + * + * - MongoDB or similar also stores unstructured data - could a similar + * approach help us to parse and validate that data? + * - Zod has a Codec feature (https://zod.dev/codecs) that might be useful + * for two-way transformations. This might also help with passing data + * across client boundaries, where we currently need to use superjson. + */ + query: { + appSettings: { + async findUnique({ args, query }) { + // Only intercept queries with a key + if (!args.where?.key) { + return query(args); + } + + const key = args.where.key; + const result = await query(args); + + // Return the raw value or null if no result + // The query layer will handle parsing to proper types + return { + key, + value: result?.value ?? null, + }; + }, + }, + }, + result: { + interview: { + network: { + needs: { + network: true, + }, + compute: ({ network }) => { + const emptyNetwork = { + nodes: [], + edges: [], + ego: { _uid: 'empty', attributes: {} }, + }; + + if (!network) { + return NcNetworkSchema.parse(emptyNetwork); + } + + return safeParseField( + NcNetworkSchema, + network, + 'interview.network', + NcNetworkSchema.parse(emptyNetwork), + ); + }, + }, + stageMetadata: { + needs: { + stageMetadata: true, + }, + compute: ({ stageMetadata }) => { + if (!stageMetadata) { + return null; + } + return safeParseField( + StageMetadataSchema, + stageMetadata, + 'interview.stageMetadata', + null, + ); + }, + }, + }, + protocol: protocolJsonExtensions(), + }, + }); +}; + +/** + * Returns the result-extension config that parses Protocol's JSON fields + * (stages, codebook, experiments) into structured types using + * CurrentProtocolSchema. Protocols are stored as schema-8. + */ +function protocolJsonExtensions() { + const modelName = 'protocol'; + return { + stages: { + needs: { + name: true, + schemaVersion: true, + stages: true, + codebook: true, + }, + compute: ({ + name, + schemaVersion, + stages, + codebook, + }: { + name: string; + schemaVersion: number; + stages: unknown; + codebook: unknown; + }): CurrentProtocol['stages'] => { + const parsed = safeParseField( + CurrentProtocolSchema, + { name, schemaVersion, stages, codebook, experiments: {} }, + `${modelName}.stages`, + null, + ); + return parsed?.stages ?? []; + }, + }, + codebook: { + needs: { + name: true, + schemaVersion: true, + codebook: true, + }, + compute: ({ + name, + schemaVersion, + codebook, + }: { + name: string; + schemaVersion: number; + codebook: unknown; + }): CurrentProtocol['codebook'] => { + const parsed = safeParseField( + CurrentProtocolSchema, + { name, schemaVersion, stages: [], codebook, experiments: {} }, + `${modelName}.codebook`, + null, + ); + return parsed?.codebook ?? { edge: {}, node: {} }; + }, + }, + experiments: { + needs: { + name: true, + schemaVersion: true, + experiments: true, + }, + compute: ({ + name, + schemaVersion, + experiments, + }: { + name: string; + schemaVersion: number; + experiments: unknown; + }): CurrentProtocol['experiments'] => { + if (!experiments) return {}; + const parsed = safeParseField( + CurrentProtocolSchema, + { name, schemaVersion, stages: [], codebook: {}, experiments }, + `${modelName}.experiments`, + null, + ); + return parsed?.experiments ?? {}; + }, + }, + }; +} + +const globalForPrisma = globalThis as unknown as { + prisma: ReturnType | undefined; +}; + +export const prisma = globalForPrisma.prisma ?? createPrismaClient(); + +if (env.NODE_ENV !== 'production') globalForPrisma.prisma = prisma; diff --git a/lib/db/migrations/0_init/migration.sql b/lib/db/migrations/0_init/migration.sql new file mode 100644 index 000000000..8f52e624e --- /dev/null +++ b/lib/db/migrations/0_init/migration.sql @@ -0,0 +1,167 @@ +-- CreateTable +CREATE TABLE "User" ( + "id" TEXT NOT NULL, + "username" TEXT NOT NULL, + + CONSTRAINT "User_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Session" ( + "id" TEXT NOT NULL, + "user_id" TEXT NOT NULL, + "active_expires" BIGINT NOT NULL, + "idle_expires" BIGINT NOT NULL, + + CONSTRAINT "Session_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Key" ( + "id" TEXT NOT NULL, + "hashed_password" TEXT, + "user_id" TEXT NOT NULL, + + CONSTRAINT "Key_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Protocol" ( + "id" TEXT NOT NULL, + "hash" TEXT NOT NULL, + "name" TEXT NOT NULL, + "schemaVersion" INTEGER NOT NULL, + "description" TEXT, + "importedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "lastModified" TIMESTAMP(3) NOT NULL, + "stages" JSONB NOT NULL, + "codebook" JSONB NOT NULL, + + CONSTRAINT "Protocol_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Asset" ( + "key" TEXT NOT NULL, + "assetId" TEXT NOT NULL, + "name" TEXT NOT NULL, + "type" TEXT NOT NULL, + "url" TEXT NOT NULL, + "size" INTEGER NOT NULL, + + CONSTRAINT "Asset_pkey" PRIMARY KEY ("key") +); + +-- CreateTable +CREATE TABLE "Interview" ( + "id" TEXT NOT NULL, + "startTime" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "finishTime" TIMESTAMP(3), + "exportTime" TIMESTAMP(3), + "lastUpdated" TIMESTAMP(3) NOT NULL, + "network" JSONB NOT NULL, + "participantId" TEXT NOT NULL, + "protocolId" TEXT NOT NULL, + "currentStep" INTEGER NOT NULL DEFAULT 0, + "stageMetadata" JSONB, + + CONSTRAINT "Interview_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Participant" ( + "id" TEXT NOT NULL, + "identifier" TEXT NOT NULL, + "label" TEXT, + + CONSTRAINT "Participant_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "AppSettings" ( + "configured" BOOLEAN NOT NULL DEFAULT false, + "initializedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "allowAnonymousRecruitment" BOOLEAN NOT NULL DEFAULT false, + "limitInterviews" BOOLEAN NOT NULL DEFAULT true, + "installationId" TEXT NOT NULL +); + +-- CreateTable +CREATE TABLE "Events" ( + "id" TEXT NOT NULL, + "timestamp" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "type" TEXT NOT NULL, + "message" TEXT NOT NULL, + + CONSTRAINT "Events_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "_AssetToProtocol" ( + "A" TEXT NOT NULL, + "B" TEXT NOT NULL +); + +-- CreateIndex +CREATE UNIQUE INDEX "User_username_key" ON "User"("username"); + +-- CreateIndex +CREATE UNIQUE INDEX "Session_id_key" ON "Session"("id"); + +-- CreateIndex +CREATE INDEX "Session_user_id_idx" ON "Session"("user_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "Key_id_key" ON "Key"("id"); + +-- CreateIndex +CREATE INDEX "Key_user_id_idx" ON "Key"("user_id"); + +-- CreateIndex +CREATE UNIQUE INDEX "Protocol_hash_key" ON "Protocol"("hash"); + +-- CreateIndex +CREATE UNIQUE INDEX "Asset_assetId_key" ON "Asset"("assetId"); + +-- CreateIndex +CREATE INDEX "Asset_assetId_key_idx" ON "Asset"("assetId", "key"); + +-- CreateIndex +CREATE INDEX "Interview_protocolId_idx" ON "Interview"("protocolId"); + +-- CreateIndex +CREATE INDEX "Interview_participantId_idx" ON "Interview"("participantId"); + +-- CreateIndex +CREATE UNIQUE INDEX "Participant_id_key" ON "Participant"("id"); + +-- CreateIndex +CREATE UNIQUE INDEX "Participant_identifier_key" ON "Participant"("identifier"); + +-- CreateIndex +CREATE UNIQUE INDEX "AppSettings_installationId_key" ON "AppSettings"("installationId"); + +-- CreateIndex +CREATE UNIQUE INDEX "_AssetToProtocol_AB_unique" ON "_AssetToProtocol"("A", "B"); + +-- CreateIndex +CREATE INDEX "_AssetToProtocol_B_index" ON "_AssetToProtocol"("B"); + +-- AddForeignKey +ALTER TABLE "Session" ADD CONSTRAINT "Session_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "Key" ADD CONSTRAINT "Key_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "Interview" ADD CONSTRAINT "Interview_participantId_fkey" FOREIGN KEY ("participantId") REFERENCES "Participant"("id") ON DELETE CASCADE ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "Interview" ADD CONSTRAINT "Interview_protocolId_fkey" FOREIGN KEY ("protocolId") REFERENCES "Protocol"("id") ON DELETE CASCADE ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "_AssetToProtocol" ADD CONSTRAINT "_AssetToProtocol_A_fkey" FOREIGN KEY ("A") REFERENCES "Asset"("key") ON DELETE CASCADE ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "_AssetToProtocol" ADD CONSTRAINT "_AssetToProtocol_B_fkey" FOREIGN KEY ("B") REFERENCES "Protocol"("id") ON DELETE CASCADE ON UPDATE CASCADE; + diff --git a/lib/db/migrations/20241016134934_app_settings_kv/migration.sql b/lib/db/migrations/20241016134934_app_settings_kv/migration.sql new file mode 100644 index 000000000..ad60bd14f --- /dev/null +++ b/lib/db/migrations/20241016134934_app_settings_kv/migration.sql @@ -0,0 +1,36 @@ +-- CreateEnum +CREATE TYPE "AppSetting" AS ENUM ('configured', 'allowAnonymousRecruitment', 'limitInterviews', 'initializedAt', 'installationId', 'disableAnalytics', 'uploadThingToken'); + +-- Temporary table to hold the data +CREATE TEMPORARY TABLE _OldAppSettings AS SELECT * FROM "AppSettings"; + +-- Drop existing table +DROP TABLE "AppSettings"; + +-- Create new table structure +CREATE TABLE "AppSettings" ( + "key" "AppSetting" NOT NULL, + "value" TEXT NOT NULL +); + +-- CreateIndex +CREATE UNIQUE INDEX "AppSettings_key_key" ON "AppSettings"("key"); + +-- Migrate data from old table +INSERT INTO "AppSettings" ("key", "value") +SELECT 'configured', CAST("configured" AS TEXT) FROM _OldAppSettings LIMIT 1; + +INSERT INTO "AppSettings" ("key", "value") +SELECT 'allowAnonymousRecruitment', CAST("allowAnonymousRecruitment" AS TEXT) FROM _OldAppSettings LIMIT 1; + +INSERT INTO "AppSettings" ("key", "value") +SELECT 'limitInterviews', CAST("limitInterviews" AS TEXT) FROM _OldAppSettings LIMIT 1; + +INSERT INTO "AppSettings" ("key", "value") +SELECT 'initializedAt', CAST("initializedAt" AS TEXT) FROM _OldAppSettings LIMIT 1; + +INSERT INTO "AppSettings" ("key", "value") +SELECT 'installationId', "installationId" FROM _OldAppSettings LIMIT 1; + +-- Drop the temporary table +DROP TABLE _OldAppSettings; diff --git a/lib/db/migrations/20250122184616_add_asset_value/migration.sql b/lib/db/migrations/20250122184616_add_asset_value/migration.sql new file mode 100644 index 000000000..e9d48ffe8 --- /dev/null +++ b/lib/db/migrations/20250122184616_add_asset_value/migration.sql @@ -0,0 +1,8 @@ +-- AlterTable +ALTER TABLE "Asset" ADD COLUMN "value" TEXT; + +-- AlterTable +ALTER TABLE "_AssetToProtocol" ADD CONSTRAINT "_AssetToProtocol_AB_pkey" PRIMARY KEY ("A", "B"); + +-- DropIndex +DROP INDEX "_AssetToProtocol_AB_unique"; diff --git a/lib/db/migrations/20250426201139_add_protocol_experiments/migration.sql b/lib/db/migrations/20250426201139_add_protocol_experiments/migration.sql new file mode 100644 index 000000000..c64395f6c --- /dev/null +++ b/lib/db/migrations/20250426201139_add_protocol_experiments/migration.sql @@ -0,0 +1,2 @@ +-- AlterTable +ALTER TABLE "Protocol" ADD COLUMN "experiments" JSONB; diff --git a/lib/db/migrations/20250624154707_add_disable_small_screen_overlay/migration.sql b/lib/db/migrations/20250624154707_add_disable_small_screen_overlay/migration.sql new file mode 100644 index 000000000..593c59396 --- /dev/null +++ b/lib/db/migrations/20250624154707_add_disable_small_screen_overlay/migration.sql @@ -0,0 +1,2 @@ +-- AlterEnum +ALTER TYPE "AppSetting" ADD VALUE 'disableSmallScreenOverlay'; \ No newline at end of file diff --git a/lib/db/migrations/20251118073416_add_api_tokens/migration.sql b/lib/db/migrations/20251118073416_add_api_tokens/migration.sql new file mode 100644 index 000000000..d882a054f --- /dev/null +++ b/lib/db/migrations/20251118073416_add_api_tokens/migration.sql @@ -0,0 +1,14 @@ +-- CreateTable +CREATE TABLE "ApiToken" ( + "id" TEXT NOT NULL, + "token" TEXT NOT NULL, + "description" TEXT, + "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "lastUsedAt" TIMESTAMP(3), + "isActive" BOOLEAN NOT NULL DEFAULT true, + + CONSTRAINT "ApiToken_pkey" PRIMARY KEY ("id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "ApiToken_token_key" ON "ApiToken"("token"); diff --git a/lib/db/migrations/20260226120000_add_auth_security_models/migration.sql b/lib/db/migrations/20260226120000_add_auth_security_models/migration.sql new file mode 100644 index 000000000..5c0db9189 --- /dev/null +++ b/lib/db/migrations/20260226120000_add_auth_security_models/migration.sql @@ -0,0 +1,56 @@ +-- CreateTable +CREATE TABLE "LoginAttempt" ( + "id" TEXT NOT NULL, + "username" TEXT, + "ipAddress" TEXT, + "success" BOOLEAN NOT NULL, + "timestamp" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "LoginAttempt_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "TotpCredential" ( + "id" TEXT NOT NULL, + "user_id" TEXT NOT NULL, + "secret" TEXT NOT NULL, + "verified" BOOLEAN NOT NULL DEFAULT false, + "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "TotpCredential_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "RecoveryCode" ( + "id" TEXT NOT NULL, + "user_id" TEXT NOT NULL, + "codeHash" TEXT NOT NULL, + "usedAt" TIMESTAMP(3), + "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "RecoveryCode_pkey" PRIMARY KEY ("id") +); + +-- CreateIndex +CREATE INDEX "LoginAttempt_username_timestamp_idx" ON "LoginAttempt"("username", "timestamp"); + +-- CreateIndex +CREATE INDEX "LoginAttempt_ipAddress_timestamp_idx" ON "LoginAttempt"("ipAddress", "timestamp"); + +-- CreateIndex +CREATE INDEX "LoginAttempt_timestamp_idx" ON "LoginAttempt"("timestamp"); + +-- CreateIndex +CREATE UNIQUE INDEX "TotpCredential_user_id_key" ON "TotpCredential"("user_id"); + +-- CreateIndex +CREATE INDEX "TotpCredential_user_id_idx" ON "TotpCredential"("user_id"); + +-- CreateIndex +CREATE INDEX "RecoveryCode_user_id_idx" ON "RecoveryCode"("user_id"); + +-- AddForeignKey +ALTER TABLE "TotpCredential" ADD CONSTRAINT "TotpCredential_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "RecoveryCode" ADD CONSTRAINT "RecoveryCode_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; diff --git a/lib/db/migrations/20260302203729_add_webauthn_credential/migration.sql b/lib/db/migrations/20260302203729_add_webauthn_credential/migration.sql new file mode 100644 index 000000000..c62365435 --- /dev/null +++ b/lib/db/migrations/20260302203729_add_webauthn_credential/migration.sql @@ -0,0 +1,26 @@ +-- CreateTable +CREATE TABLE "WebAuthnCredential" ( + "id" TEXT NOT NULL, + "user_id" TEXT NOT NULL, + "credentialId" TEXT NOT NULL, + "publicKey" TEXT NOT NULL, + "counter" BIGINT NOT NULL DEFAULT 0, + "transports" TEXT, + "deviceType" TEXT NOT NULL, + "backedUp" BOOLEAN NOT NULL DEFAULT false, + "aaguid" TEXT, + "friendlyName" TEXT, + "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "lastUsedAt" TIMESTAMP(3), + + CONSTRAINT "WebAuthnCredential_pkey" PRIMARY KEY ("id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "WebAuthnCredential_credentialId_key" ON "WebAuthnCredential"("credentialId"); + +-- CreateIndex +CREATE INDEX "WebAuthnCredential_user_id_idx" ON "WebAuthnCredential"("user_id"); + +-- AddForeignKey +ALTER TABLE "WebAuthnCredential" ADD CONSTRAINT "WebAuthnCredential_user_id_fkey" FOREIGN KEY ("user_id") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; diff --git a/lib/db/migrations/20260304104620_add_freeze_interviews_setting/migration.sql b/lib/db/migrations/20260304104620_add_freeze_interviews_setting/migration.sql new file mode 100644 index 000000000..b93cd9eca --- /dev/null +++ b/lib/db/migrations/20260304104620_add_freeze_interviews_setting/migration.sql @@ -0,0 +1,2 @@ +-- AlterEnum +ALTER TYPE "AppSetting" ADD VALUE 'freezeInterviewsAfterCompletion'; diff --git a/lib/db/migrations/20260304113211_add_enable_interview_data_api_setting/migration.sql b/lib/db/migrations/20260304113211_add_enable_interview_data_api_setting/migration.sql new file mode 100644 index 000000000..724fb22f5 --- /dev/null +++ b/lib/db/migrations/20260304113211_add_enable_interview_data_api_setting/migration.sql @@ -0,0 +1,2 @@ +-- AlterEnum +ALTER TYPE "AppSetting" ADD VALUE 'enableInterviewDataApi'; diff --git a/lib/db/migrations/20260318140316_add_is_synthetic/migration.sql b/lib/db/migrations/20260318140316_add_is_synthetic/migration.sql new file mode 100644 index 000000000..89df62d02 --- /dev/null +++ b/lib/db/migrations/20260318140316_add_is_synthetic/migration.sql @@ -0,0 +1,5 @@ +-- AlterTable +ALTER TABLE "Interview" ADD COLUMN "isSynthetic" BOOLEAN NOT NULL DEFAULT false; + +-- AlterTable +ALTER TABLE "Participant" ADD COLUMN "isSynthetic" BOOLEAN NOT NULL DEFAULT false; diff --git a/lib/db/migrations/20260402082842_add_storage_provider_settings/migration.sql b/lib/db/migrations/20260402082842_add_storage_provider_settings/migration.sql new file mode 100644 index 000000000..b5d88b2f9 --- /dev/null +++ b/lib/db/migrations/20260402082842_add_storage_provider_settings/migration.sql @@ -0,0 +1,14 @@ +-- AlterEnum +-- This migration adds more than one value to an enum. +-- With PostgreSQL versions 11 and earlier, this is not possible +-- in a single migration. This can be worked around by creating +-- multiple migrations, each migration adding only one value to +-- the enum. + + +ALTER TYPE "AppSetting" ADD VALUE 'storageProvider'; +ALTER TYPE "AppSetting" ADD VALUE 's3Endpoint'; +ALTER TYPE "AppSetting" ADD VALUE 's3Bucket'; +ALTER TYPE "AppSetting" ADD VALUE 's3Region'; +ALTER TYPE "AppSetting" ADD VALUE 's3AccessKeyId'; +ALTER TYPE "AppSetting" ADD VALUE 's3SecretAccessKey'; diff --git a/lib/db/migrations/20260429120000_add_protocol_original_file/migration.sql b/lib/db/migrations/20260429120000_add_protocol_original_file/migration.sql new file mode 100644 index 000000000..7b1b8c48d --- /dev/null +++ b/lib/db/migrations/20260429120000_add_protocol_original_file/migration.sql @@ -0,0 +1,3 @@ +-- AlterTable +ALTER TABLE "Protocol" ADD COLUMN "originalFileKey" TEXT; +ALTER TABLE "Protocol" ADD COLUMN "originalFileUrl" TEXT; diff --git a/lib/db/migrations/migration_lock.toml b/lib/db/migrations/migration_lock.toml new file mode 100644 index 000000000..044d57cdb --- /dev/null +++ b/lib/db/migrations/migration_lock.toml @@ -0,0 +1,3 @@ +# Please do not edit this file manually +# It should be added in your version-control system (e.g., Git) +provider = "postgresql" diff --git a/lib/db/resetDatabase.ts b/lib/db/resetDatabase.ts new file mode 100644 index 000000000..9b4859455 --- /dev/null +++ b/lib/db/resetDatabase.ts @@ -0,0 +1,32 @@ +import { prisma } from '~/lib/db'; + +/** + * Deletes all data from the database and creates a fresh initializedAt setting. + * This is the core database reset logic, separated from orchestration concerns + * (auth, cache invalidation, file cleanup) for testability. + */ +export async function resetDatabase(): Promise { + // Delete all data from all tables + // Note: Some models cascade-delete their children: + // - User cascades to Session, Key, TotpCredential, RecoveryCode + // - Protocol cascades to Interview + // - Participant cascades to Interview + await Promise.all([ + prisma.user.deleteMany(), + prisma.participant.deleteMany(), + prisma.protocol.deleteMany(), + prisma.appSettings.deleteMany(), + prisma.events.deleteMany(), + prisma.asset.deleteMany(), + prisma.apiToken.deleteMany(), + prisma.loginAttempt.deleteMany(), + ]); + + // Create fresh initializedAt setting + await prisma.appSettings.create({ + data: { + key: 'initializedAt', + value: new Date().toISOString(), + }, + }); +} diff --git a/lib/db/schema.prisma b/lib/db/schema.prisma new file mode 100644 index 000000000..ccd6ac77a --- /dev/null +++ b/lib/db/schema.prisma @@ -0,0 +1,192 @@ +// This is your Prisma schema file, +// learn more about it in the docs: https://pris.ly/d/prisma-schema + +generator client { + provider = "prisma-client" + output = "./generated" + binaryTargets = ["native", "linux-musl-arm64-openssl-3.0.x"] +} + +datasource db { + provider = "postgresql" +} + +model User { + id String @id @default(cuid()) + username String @unique + auth_session Session[] + key Key[] + totpCredential TotpCredential? + recoveryCodes RecoveryCode[] + webAuthnCredentials WebAuthnCredential[] +} + +model Session { + id String @id @unique + user_id String + active_expires BigInt + idle_expires BigInt + user User @relation(references: [id], fields: [user_id], onDelete: Cascade) + + @@index([user_id]) +} + +model Key { + id String @id @unique + hashed_password String? + user_id String + user User @relation(references: [id], fields: [user_id], onDelete: Cascade) + + @@index([user_id]) +} + +model WebAuthnCredential { + id String @id @default(cuid()) + user_id String + credentialId String @unique + publicKey String + counter BigInt @default(0) + transports String? + deviceType String + backedUp Boolean @default(false) + aaguid String? + friendlyName String? + createdAt DateTime @default(now()) + lastUsedAt DateTime? + + user User @relation(references: [id], fields: [user_id], onDelete: Cascade) + + @@index([user_id]) +} + +model Protocol { + id String @id @default(cuid()) + hash String @unique + name String + schemaVersion Int + description String? + importedAt DateTime @default(now()) + lastModified DateTime + stages Json + codebook Json + assets Asset[] + interviews Interview[] + experiments Json? + originalFileKey String? + originalFileUrl String? +} + +model Asset { + key String @id + assetId String @unique + name String + type String + url String + size Int + protocols Protocol[] + value String? + + @@index(fields: [assetId, key]) +} + +model Interview { + id String @id @default(cuid()) // Cannot be bigint because we want to obfuscate the id + startTime DateTime @default(now()) + finishTime DateTime? + exportTime DateTime? + lastUpdated DateTime @updatedAt + network Json + participant Participant @relation(fields: [participantId], references: [id], onDelete: Cascade) + participantId String + protocol Protocol @relation(fields: [protocolId], references: [id], onDelete: Cascade) + protocolId String @map("protocolId") + currentStep Int @default(0) + stageMetadata Json? // Used to store negative responses in tiestrength census and dyadcensus + isSynthetic Boolean @default(false) + + @@index(fields: [protocolId]) + @@index([participantId]) +} + +model Participant { + id String @id @unique @default(cuid()) + identifier String @unique + label String? + isSynthetic Boolean @default(false) + interviews Interview[] +} + +// Cant be shared with TS, unfortunately. Ensure `./schemas/appSettings.ts` is in sync +enum AppSetting { + configured + allowAnonymousRecruitment + limitInterviews + initializedAt + installationId + disableAnalytics + disableSmallScreenOverlay + uploadThingToken + freezeInterviewsAfterCompletion + enableInterviewDataApi + storageProvider + s3Endpoint + s3Bucket + s3Region + s3AccessKeyId + s3SecretAccessKey +} + +model AppSettings { + key AppSetting @unique + value String +} + +model Events { + id String @id @default(cuid()) + timestamp DateTime @default(now()) + type String + message String +} + +model ApiToken { + id String @id @default(cuid()) + token String @unique + description String? + createdAt DateTime @default(now()) + lastUsedAt DateTime? + isActive Boolean @default(true) +} + +model LoginAttempt { + id String @id @default(cuid()) + username String? + ipAddress String? + success Boolean + timestamp DateTime @default(now()) + + @@index([username, timestamp]) + @@index([ipAddress, timestamp]) + @@index([timestamp]) +} + +model TotpCredential { + id String @id @default(cuid()) + user_id String @unique + secret String + verified Boolean @default(false) + createdAt DateTime @default(now()) + user User @relation(references: [id], fields: [user_id], onDelete: Cascade) + + @@index([user_id]) +} + +model RecoveryCode { + id String @id @default(cuid()) + user_id String + codeHash String + usedAt DateTime? + createdAt DateTime @default(now()) + user User @relation(references: [id], fields: [user_id], onDelete: Cascade) + + @@index([user_id]) +} diff --git a/lib/export/InterviewRepository.ts b/lib/export/InterviewRepository.ts new file mode 100644 index 000000000..9ded6699a --- /dev/null +++ b/lib/export/InterviewRepository.ts @@ -0,0 +1,30 @@ +import { NcNetworkSchema } from '@codaco/shared-consts'; +import { Effect, Layer } from 'effect'; +import { DatabaseError } from '@codaco/network-exporters/errors'; +import { type InterviewExportInput } from '@codaco/network-exporters/input'; +import { InterviewRepository } from '@codaco/network-exporters/services/InterviewRepository'; +import { getInterviewsForExport } from '~/queries/interviews'; + +export const PrismaInterviewRepository = Layer.succeed(InterviewRepository, { + getForExport: (ids) => + Effect.gen(function* () { + const rows = yield* Effect.tryPromise({ + try: () => getInterviewsForExport([...ids]), + catch: (error) => new DatabaseError({ cause: error }), + }); + + const inputs: InterviewExportInput[] = rows.map((row) => ({ + id: row.id, + participantIdentifier: + row.participant.label && row.participant.label !== '' + ? row.participant.label + : row.participant.identifier, + startTime: row.startTime, + finishTime: row.finishTime, + network: NcNetworkSchema.parse(row.network), + protocolHash: row.protocol.hash, + })); + + return inputs; + }), +}); diff --git a/lib/export/Output.ts b/lib/export/Output.ts new file mode 100644 index 000000000..05f1483a2 --- /dev/null +++ b/lib/export/Output.ts @@ -0,0 +1,11 @@ +import { type Layer } from 'effect'; +import { makeZipOutput } from '@codaco/network-exporters/layers/ZipOutput'; +import type { Output } from '@codaco/network-exporters/services/Output'; +import { makeS3Sink } from '~/lib/storage/layers/S3FileStorage'; +import { makeUploadThingSink } from '~/lib/storage/layers/UploadThingFileStorage'; +import type { StorageProvider } from '~/queries/storageProvider'; + +export const makeProductionOutputLayer = ( + provider: StorageProvider, +): Layer.Layer => + makeZipOutput(provider === 's3' ? makeS3Sink : makeUploadThingSink); diff --git a/lib/export/ProtocolRepository.ts b/lib/export/ProtocolRepository.ts new file mode 100644 index 000000000..5821bb7f2 --- /dev/null +++ b/lib/export/ProtocolRepository.ts @@ -0,0 +1,29 @@ +import { CodebookSchema } from '@codaco/protocol-validation'; +import { Effect, Layer } from 'effect'; +import { DatabaseError } from '@codaco/network-exporters/errors'; +import { type ProtocolExportInput } from '@codaco/network-exporters/input'; +import { ProtocolRepository } from '@codaco/network-exporters/services/ProtocolRepository'; +import { prisma } from '~/lib/db'; + +export const PrismaProtocolRepository = Layer.succeed(ProtocolRepository, { + getProtocols: (hashes) => + Effect.gen(function* () { + const rows = yield* Effect.tryPromise({ + try: () => + prisma.protocol.findMany({ + where: { hash: { in: [...hashes] } }, + }), + catch: (error) => new DatabaseError({ cause: error }), + }); + + const result: Record = {}; + for (const row of rows) { + result[row.hash] = { + hash: row.hash, + name: row.name, + codebook: CodebookSchema.parse(row.codebook), + }; + } + return result; + }), +}); diff --git a/lib/export/__tests__/Output.test.ts b/lib/export/__tests__/Output.test.ts new file mode 100644 index 000000000..e8666eb68 --- /dev/null +++ b/lib/export/__tests__/Output.test.ts @@ -0,0 +1,247 @@ +import { Readable } from 'node:stream'; +import { Cause, Effect } from 'effect'; +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'; + +vi.mock('server-only', () => ({})); + +import { unzipSync } from 'fflate'; +import { Output } from '@codaco/network-exporters/services/Output'; + +// Hoisted mock state — available when vi.mock factories run (before imports). +const { + mockUploadDone, + capturedUploadParams, + mockGetSignedUrl, + mockGetS3Client, + mockGetS3Bucket, + mockGetUTApi, + mockUploadFiles, +} = vi.hoisted(() => { + const mockUploadDone = vi.fn<() => Promise>(); + const capturedUploadParams: { value?: unknown } = {}; + const mockGetSignedUrl = vi.fn<() => Promise>(); + const mockGetS3Client = vi.fn<() => Promise>(); + const mockGetS3Bucket = vi.fn<() => Promise>(); + const mockUploadFiles = vi.fn< + (file: File) => Promise<{ + data: { key: string; ufsUrl: string } | null; + error: Error | null; + }> + >(); + const mockGetUTApi = vi.fn< + () => Promise<{ uploadFiles: typeof mockUploadFiles }> + >(); + return { + mockUploadDone, + capturedUploadParams, + mockGetSignedUrl, + mockGetS3Client, + mockGetS3Bucket, + mockGetUTApi, + mockUploadFiles, + }; +}); + +// Static mocks — hoisted before any imports, so the module graph never +// loads the real AWS SDK or Prisma (which can take 2–3 s on first load +// and cause the test to exceed its 5 s timeout). +vi.mock('@aws-sdk/client-s3', () => ({ + // These are only passed as opaque values to mocked functions (getSignedUrl, + // Upload) that ignore them — no body is needed. + GetObjectCommand: class {}, + PutObjectCommand: class {}, + DeleteObjectCommand: class {}, + S3Client: class {}, +})); + +vi.mock('@aws-sdk/lib-storage', () => ({ + Upload: vi.fn(function ( + this: { done: typeof mockUploadDone }, + input: { params: unknown }, + ) { + capturedUploadParams.value = input.params; + this.done = mockUploadDone; + }), +})); + +vi.mock('@aws-sdk/s3-request-presigner', () => ({ + getSignedUrl: mockGetSignedUrl, +})); + +vi.mock('~/lib/storage/layers/S3Client', () => ({ + getS3Client: mockGetS3Client, + getS3Bucket: mockGetS3Bucket, + getS3PublicBaseUrl: vi.fn(() => Promise.resolve('https://cdn.example')), +})); + +vi.mock('~/lib/uploadthing/server-helpers', () => ({ + getUTApi: mockGetUTApi, +})); + +vi.mock('~/lib/uploadthing/token', () => ({ + parseUploadThingToken: vi.fn(() => Promise.resolve(null)), +})); + +import { makeProductionOutputLayer } from '~/lib/export/Output'; + +const utf8 = (s: string) => new TextEncoder().encode(s); + +const writeTwoEntries = Effect.gen(function* () { + const output = yield* Output; + const handle = yield* output.begin(); + yield* output.writeEntry(handle, { + name: 'a.txt', + data: Readable.from([utf8('hello a')]), + }); + yield* output.writeEntry(handle, { + name: 'b.txt', + data: Readable.from([utf8('hello b')]), + }); + return yield* output.end(handle); +}); + +const decode = (buf: Uint8Array) => new TextDecoder().decode(buf); + +describe('makeProductionOutputLayer (s3)', () => { + describe('happy path', () => { + beforeEach(() => { + capturedUploadParams.value = undefined; + mockUploadDone.mockResolvedValue(undefined); + mockGetSignedUrl.mockResolvedValue('https://signed.example/test'); + mockGetS3Client.mockResolvedValue({}); + mockGetS3Bucket.mockResolvedValue('test-bucket'); + }); + + it('streams the zip into S3 and returns a signed URL', async () => { + const layer = makeProductionOutputLayer('s3'); + + const result = await Effect.runPromise( + writeTwoEntries.pipe(Effect.provide(layer)), + ); + + expect(result.key).toMatch(/\.zip$/); + expect(result.url).toBe('https://signed.example/test'); + + if ( + !capturedUploadParams.value || + typeof capturedUploadParams.value !== 'object' || + !('Bucket' in capturedUploadParams.value) + ) { + throw new Error('expected captured S3 Upload params'); + } + const { Bucket, Key, ContentType, Body } = capturedUploadParams.value as { + Bucket: string; + Key: string; + ContentType: string; + Body: NodeJS.ReadableStream; + }; + expect(Bucket).toBe('test-bucket'); + expect(ContentType).toBe('application/zip'); + expect(Key).toBe(result.key); + + // Consume the captured Body and assert it's a real zip with our entries. + const chunks: Buffer[] = []; + for await (const chunk of Body) { + chunks.push(Buffer.from(chunk)); + } + const zipBytes = Buffer.concat(chunks); + const entries = unzipSync(new Uint8Array(zipBytes)); + expect(decode(entries['a.txt']!)).toBe('hello a'); + expect(decode(entries['b.txt']!)).toBe('hello b'); + }); + }); + + describe('error path', () => { + beforeEach(() => { + mockUploadDone.mockRejectedValue(new Error('s3 boom')); + mockGetS3Client.mockResolvedValue({}); + mockGetS3Bucket.mockResolvedValue('test-bucket'); + }); + + afterEach(() => { + mockUploadDone.mockReset(); + }); + + it('maps S3 upload failures to OutputError', async () => { + const exit = await Effect.runPromiseExit( + writeTwoEntries.pipe(Effect.provide(makeProductionOutputLayer('s3'))), + ); + expect(exit._tag).toBe('Failure'); + if (exit._tag !== 'Failure') return; + const opt = Cause.failureOption(exit.cause); + expect(opt._tag).toBe('Some'); + if (opt._tag !== 'Some') return; + expect(opt.value._tag).toBe('NetworkExporters/OutputError'); + expect(opt.value.cause).toBeInstanceOf(Error); + expect((opt.value.cause as Error).message).toContain('s3 boom'); + }); + }); +}); + +describe('makeProductionOutputLayer (uploadthing)', () => { + describe('happy path', () => { + let capturedFile: File | undefined; + + beforeEach(() => { + capturedFile = undefined; + mockUploadFiles.mockImplementation((file: File) => { + capturedFile = file; + return Promise.resolve({ + data: { + key: 'utkey-abc', + ufsUrl: 'https://TEST.ufs.sh/f/utkey-abc', + }, + error: null, + }); + }); + mockGetUTApi.mockResolvedValue({ uploadFiles: mockUploadFiles }); + }); + + it('uploads the zip as a File and returns the ufsUrl', async () => { + const { makeProductionOutputLayer: freshMakeLayer } = + await import('~/lib/export/Output'); + const result = await Effect.runPromise( + writeTwoEntries.pipe( + Effect.provide(freshMakeLayer('uploadthing')), + ), + ); + expect(result).toEqual({ + key: 'utkey-abc', + url: 'https://TEST.ufs.sh/f/utkey-abc', + }); + expect(mockUploadFiles).toHaveBeenCalledTimes(1); + if (!capturedFile) throw new Error('no file captured'); + expect(capturedFile.name).toMatch(/\.zip$/); + const buf = new Uint8Array(await capturedFile.arrayBuffer()); + const entries = unzipSync(buf); + expect(decode(entries['a.txt']!)).toBe('hello a'); + expect(decode(entries['b.txt']!)).toBe('hello b'); + }); + }); + + describe('error path', () => { + beforeEach(() => { + mockGetUTApi.mockRejectedValue(new Error('ut boom')); + }); + + afterEach(() => { + mockGetUTApi.mockReset(); + }); + + it('maps UploadThing failures to OutputError', async () => { + const exit = await Effect.runPromiseExit( + writeTwoEntries.pipe( + Effect.provide(makeProductionOutputLayer('uploadthing')), + ), + ); + expect(exit._tag).toBe('Failure'); + if (exit._tag !== 'Failure') return; + const opt = Cause.failureOption(exit.cause); + expect(opt._tag).toBe('Some'); + if (opt._tag !== 'Some') return; + expect(opt.value._tag).toBe('NetworkExporters/OutputError'); + expect(opt.value.cause).toBeInstanceOf(Error); + expect((opt.value.cause as Error).message).toContain('ut boom'); + }); + }); +}); diff --git a/lib/export/__tests__/errors.test.ts b/lib/export/__tests__/errors.test.ts new file mode 100644 index 000000000..91a783b05 --- /dev/null +++ b/lib/export/__tests__/errors.test.ts @@ -0,0 +1,108 @@ +import { describe, expect, it } from 'vitest'; +import { + DatabaseError, + ExportGenerationError, + OutputError, + ProtocolNotFoundError, + SessionProcessingError, +} from '@codaco/network-exporters/errors'; +import { describeExportError } from '~/lib/export/errors'; + +describe('describeExportError', () => { + describe('cause classifier', () => { + it('returns disk-space message when cause has ENOSPC code', () => { + const cause = Object.assign(new Error('write failed'), { + code: 'ENOSPC', + }); + const err = new OutputError({ cause }); + expect(describeExportError(err, 'uploading')).toMatch(/disk space/i); + }); + + it('returns out-of-memory message when cause mentions heap', () => { + const cause = new Error('JavaScript heap out of memory'); + const err = new OutputError({ cause }); + expect(describeExportError(err, 'archiving')).toMatch(/memory/i); + }); + + it('returns timeout message when cause has ETIMEDOUT code', () => { + const cause = Object.assign(new Error('socket timeout'), { + code: 'ETIMEDOUT', + }); + const err = new DatabaseError({ cause }); + expect(describeExportError(err)).toMatch(/timed out/i); + }); + + it('returns connection message when cause has ECONNREFUSED code', () => { + const cause = Object.assign(new Error('refused'), { + code: 'ECONNREFUSED', + }); + const err = new DatabaseError({ cause }); + expect(describeExportError(err, 'fetching')).toMatch( + /database connection failed.*fetching/i, + ); + }); + + it('falls back to tag-aware copy with the cause message when classifier returns unknown', () => { + const err = new DatabaseError({ cause: new Error('wat') }); + expect(describeExportError(err, 'fetching interviews')).toContain('wat'); + }); + }); + + describe('per-tag copy', () => { + it('describes ExportGenerationError with format/partition/session context', () => { + const err = new ExportGenerationError({ + cause: new Error('bad codebook'), + format: 'attributeList', + sessionId: 'session-A', + partitionEntity: 'person', + }); + const message = describeExportError(err); + expect(message).toContain('attributeList'); + expect(message).toContain('person'); + expect(message).toContain('session-A'); + expect(message).toContain('bad codebook'); + }); + + it('describes ProtocolNotFoundError with definitive copy and no classifier', () => { + const err = new ProtocolNotFoundError({ + hash: 'abc123', + sessionId: 'session-A', + }); + const message = describeExportError(err); + expect(message).toMatch(/protocol/i); + expect(message).toMatch(/deleted/i); + }); + + it('describes SessionProcessingError with stage and session context', () => { + const err = new SessionProcessingError({ + cause: new Error('boom'), + stage: 'format', + sessionId: 'session-A', + }); + const message = describeExportError(err); + expect(message).toContain('session-A'); + expect(message).toContain('format'); + expect(message).toContain('boom'); + }); + + it('routes SessionProcessingError through the classifier when cause is OOM', () => { + const err = new SessionProcessingError({ + cause: new Error('JavaScript heap out of memory'), + stage: 'format', + sessionId: 'session-A', + }); + expect(describeExportError(err)).toMatch(/memory/i); + }); + }); + + describe('unknown error fallthrough', () => { + it('falls through to a generic message for non-tagged errors', () => { + const message = describeExportError(new Error('plain failure')); + expect(message).toMatch(/export failed.*plain failure/i); + }); + + it('handles non-Error values', () => { + expect(describeExportError('a string')).toMatch(/unexpected/i); + }); + }); +}); diff --git a/lib/export/errors.ts b/lib/export/errors.ts new file mode 100644 index 000000000..7a8d2cf83 --- /dev/null +++ b/lib/export/errors.ts @@ -0,0 +1,110 @@ +import { + DatabaseError, + ExportGenerationError, + OutputError, + ProtocolNotFoundError, + SessionProcessingError, +} from '@codaco/network-exporters/errors'; + +type CauseKind = 'oom' | 'disk-full' | 'timeout' | 'connection' | 'unknown'; + +function classifyCause(cause: unknown): CauseKind { + if (cause && typeof cause === 'object' && 'code' in cause) { + const { code } = cause; + if (code === 'ENOSPC') return 'disk-full'; + if (code === 'ETIMEDOUT' || code === 'ESOCKETTIMEDOUT') return 'timeout'; + if (code === 'ECONNREFUSED' || code === 'ECONNRESET') return 'connection'; + } + const message = + cause instanceof Error + ? cause.message.toLowerCase() + : String(cause).toLowerCase(); + if (message.includes('heap') || message.includes('out of memory')) + return 'oom'; + if (message.includes('no space')) return 'disk-full'; + if (message.includes('timeout') || message.includes('timed out')) + return 'timeout'; + if (message.includes('database') || message.includes('prisma')) + return 'connection'; + return 'unknown'; +} + +const TAG_FALLBACK_MESSAGE = { + 'NetworkExporters/DatabaseError': 'Database connection failed', + 'NetworkExporters/OutputError': 'Failed to write the export archive', +} as const; + +type ClassifiableTag = keyof typeof TAG_FALLBACK_MESSAGE; + +function describeClassifiable( + tag: ClassifiableTag, + cause: unknown, + stageSuffix: string, +): string { + const kind = classifyCause(cause); + switch (kind) { + case 'oom': + return `Export ran out of memory${stageSuffix}. Try exporting fewer interviews at a time.`; + case 'disk-full': + return `Export ran out of disk space${stageSuffix}. Please free up server storage and try again.`; + case 'timeout': + return `Export timed out${stageSuffix}. Try exporting fewer interviews at a time.`; + case 'connection': + return `${TAG_FALLBACK_MESSAGE[tag]}${stageSuffix}.`; + case 'unknown': + return `${TAG_FALLBACK_MESSAGE[tag]}${stageSuffix}: ${ + cause instanceof Error ? cause.message : String(cause) + }`; + } +} + +export function describeExportError(error: unknown, stage?: string): string { + const stageSuffix = stage ? ` while ${stage}` : ''; + + if (error instanceof ExportGenerationError) { + const partition = error.partitionEntity + ? ` (${error.partitionEntity})` + : ''; + const causeMessage = + error.cause instanceof Error ? error.cause.message : String(error.cause); + return `Failed to generate ${error.format}${partition} for session ${error.sessionId}: ${causeMessage}`; + } + + if (error instanceof ProtocolNotFoundError) { + return 'Could not find the protocol for one of the selected interviews. The protocol may have been deleted.'; + } + + if (error instanceof SessionProcessingError) { + const kind = classifyCause(error.cause); + if (kind === 'oom' || kind === 'disk-full' || kind === 'timeout') { + return describeClassifiable( + 'NetworkExporters/OutputError', + error.cause, + stageSuffix, + ); + } + const causeMessage = + error.cause instanceof Error ? error.cause.message : String(error.cause); + return `Failed to process interview ${error.sessionId} during ${error.stage}: ${causeMessage}`; + } + + if (error instanceof DatabaseError) { + return describeClassifiable( + 'NetworkExporters/DatabaseError', + error.cause, + stageSuffix, + ); + } + + if (error instanceof OutputError) { + return describeClassifiable( + 'NetworkExporters/OutputError', + error.cause, + stageSuffix, + ); + } + + const message = + error instanceof Error ? error.message : 'An unexpected error occurred'; + return `Export failed${stageSuffix}: ${message}`; +} diff --git a/lib/export/sseEvents.ts b/lib/export/sseEvents.ts new file mode 100644 index 000000000..755b2ec69 --- /dev/null +++ b/lib/export/sseEvents.ts @@ -0,0 +1,21 @@ +import type { ExportEvent } from '@codaco/network-exporters/events'; + +type ExportCompleteEvent = { + type: 'complete'; + zipUrl: string; + zipKey: string; +}; + +type ExportErrorEvent = { + type: 'error'; + message: string; +}; + +export type ExportSseEvent = + | ExportEvent + | ExportCompleteEvent + | ExportErrorEvent; + +export function formatSSE(event: ExportSseEvent): string { + return `data: ${JSON.stringify(event)}\n\n`; +} diff --git a/lib/posthog-server.ts b/lib/posthog-server.ts new file mode 100644 index 000000000..62c0ec86c --- /dev/null +++ b/lib/posthog-server.ts @@ -0,0 +1,83 @@ +// lib/posthog-server.ts +import { PostHog } from 'posthog-node'; +import { + POSTHOG_API_KEY, + POSTHOG_APP_NAME, + POSTHOG_PROXY_HOST, +} from '~/fresco.config'; + +let client: PostHog | null = null; + +export function getPostHogServer() { + client ??= new PostHog(POSTHOG_API_KEY, { + host: POSTHOG_PROXY_HOST, + flushAt: 1, + flushInterval: 0, + enableExceptionAutocapture: true, + }); + return client; +} + +// Dynamic imports to avoid pulling Prisma (node:path, node:url, etc.) +// into Edge-compatible bundles that import this module +async function resolveInstallationId() { + const { getInstallationId } = await import('~/queries/appSettings'); + return getInstallationId(); +} + +async function isAnalyticsDisabled() { + const { getDisableAnalytics } = await import('~/queries/appSettings'); + return getDisableAnalytics(); +} + +export async function captureEvent( + event: string, + properties?: Record, +) { + // Telemetry must never throw — DB lookups for installationId/disableAnalytics + // can fail, and a failed capture should never break the calling flow. + try { + if (await isAnalyticsDisabled()) return; + + const distinctId = await resolveInstallationId(); + const client = getPostHogServer(); + + client.capture({ + distinctId, + event, + properties: { + app: POSTHOG_APP_NAME, + installation_id: distinctId, + ...properties, + $source: 'server', + }, + }); + } catch { + // swallow + } +} + +export async function captureException( + error: unknown, + properties?: Record, +) { + // Telemetry must never throw — DB lookups for installationId/disableAnalytics + // can fail, and a failed capture should never replace the original error. + try { + if (await isAnalyticsDisabled()) return; + + const distinctId = await resolveInstallationId(); + const client = getPostHogServer(); + + client.captureException(error, distinctId, properties); + } catch { + // swallow + } +} + +export async function shutdownPostHog() { + if (client) { + await client.shutdown(); + client = null; + } +} diff --git a/lib/protocol/__tests__/selectUnreferencedKeys.test.ts b/lib/protocol/__tests__/selectUnreferencedKeys.test.ts new file mode 100644 index 000000000..013615070 --- /dev/null +++ b/lib/protocol/__tests__/selectUnreferencedKeys.test.ts @@ -0,0 +1,24 @@ +import { describe, expect, it } from 'vitest'; +import { selectUnreferencedKeys } from '~/lib/protocol/selectUnreferencedKeys'; + +describe('selectUnreferencedKeys', () => { + it('returns all keys when none are referenced', () => { + expect(selectUnreferencedKeys(['a', 'b'], [])).toEqual(['a', 'b']); + }); + + it('excludes keys referenced by existing assets or protocols', () => { + expect(selectUnreferencedKeys(['a', 'b', 'c'], ['b'])).toEqual(['a', 'c']); + }); + + it('de-duplicates repeated keys', () => { + expect(selectUnreferencedKeys(['a', 'a', 'b'], [])).toEqual(['a', 'b']); + }); + + it('drops empty keys', () => { + expect(selectUnreferencedKeys(['', 'a', ''], [])).toEqual(['a']); + }); + + it('returns an empty array when every key is referenced', () => { + expect(selectUnreferencedKeys(['a', 'b'], ['a', 'b'])).toEqual([]); + }); +}); diff --git a/lib/protocol/selectUnreferencedKeys.ts b/lib/protocol/selectUnreferencedKeys.ts new file mode 100644 index 000000000..529df8270 --- /dev/null +++ b/lib/protocol/selectUnreferencedKeys.ts @@ -0,0 +1,24 @@ +/** + * From a set of storage keys uploaded during an import, returns those that are + * safe to delete after a failure: de-duplicated, non-empty, and not present in + * `referencedKeys`. `referencedKeys` are the keys still in use by existing + * assets or protocols, so blobs belonging to other protocols are never removed. + */ +export function selectUnreferencedKeys( + uploadedKeys: string[], + referencedKeys: Iterable, +): string[] { + const referenced = new Set(referencedKeys); + const seen = new Set(); + const result: string[] = []; + + for (const key of uploadedKeys) { + if (key.length === 0 || seen.has(key) || referenced.has(key)) { + continue; + } + seen.add(key); + result.push(key); + } + + return result; +} diff --git a/lib/protocol/validateAndMigrateProtocol.ts b/lib/protocol/validateAndMigrateProtocol.ts new file mode 100644 index 000000000..eff349d43 --- /dev/null +++ b/lib/protocol/validateAndMigrateProtocol.ts @@ -0,0 +1,106 @@ +import { + CURRENT_SCHEMA_VERSION, + type CurrentProtocol, + getMigrationInfo, + migrateProtocol, + validateProtocol, + type VersionedProtocol, +} from '@codaco/protocol-validation'; +import { APP_SUPPORTED_SCHEMA_VERSIONS } from '~/fresco.config'; + +type ProtocolValidationSuccess = { + success: true; + protocol: CurrentProtocol; +}; + +export type ProtocolValidationError = + | { success: false; error: 'invalid-object' } + | { success: false; error: 'unsupported-version'; version: unknown } + | { success: false; error: 'validation-failed'; validationResult: unknown } + | { + success: false; + error: 'missing-dependencies'; + missingDependencies: string[]; + }; + +export type ProtocolValidationResult = + | ProtocolValidationSuccess + | ProtocolValidationError; + +/** + * Validates and migrates a protocol JSON object. + * + * This is a shared utility used by the protocol import flow (useProtocolImport). + * It handles: + * 1. Basic object validation + * 2. Schema version checking against APP_SUPPORTED_SCHEMA_VERSIONS + * 3. Migration from older schema versions to v8 (with dependency checking) + * 4. Full protocol validation + * + * Returns a discriminated union so consumers can handle errors appropriately. + * + * @param protocolJson - The protocol JSON to validate + * @param dependencies - Dependencies required for migration (e.g., { name: 'Protocol Name' } for v7→v8) + */ +export async function validateAndMigrateProtocol( + protocolJson: VersionedProtocol, + dependencies: Record = {}, +): Promise { + // Check protocol object exists + if (!protocolJson || typeof protocolJson !== 'object') { + return { success: false, error: 'invalid-object' }; + } + + // Check schema version + const protocolVersion = protocolJson.schemaVersion; + if (!APP_SUPPORTED_SCHEMA_VERSIONS.includes(protocolVersion)) { + return { + success: false, + error: 'unsupported-version', + version: protocolVersion, + }; + } + + // Migrate if needed + let protocolToValidate: CurrentProtocol; + + if (protocolVersion < CURRENT_SCHEMA_VERSION) { + // Check required dependencies for migration + const migrationInfo = getMigrationInfo( + protocolVersion, + CURRENT_SCHEMA_VERSION, + ); + const missingDependencies = migrationInfo.dependencies.filter( + (dep) => !(dep in dependencies), + ); + + if (missingDependencies.length > 0) { + return { + success: false, + error: 'missing-dependencies', + missingDependencies, + }; + } + + protocolToValidate = migrateProtocol( + protocolJson, + CURRENT_SCHEMA_VERSION, + dependencies, + ); + } else { + protocolToValidate = protocolJson as CurrentProtocol; + } + + // Validate + const validationResult = await validateProtocol(protocolToValidate); + + if (!validationResult.success) { + return { + success: false, + error: 'validation-failed', + validationResult, + }; + } + + return { success: true, protocol: validationResult.data as CurrentProtocol }; +} diff --git a/lib/rateLimit.ts b/lib/rateLimit.ts new file mode 100644 index 000000000..a12e4506c --- /dev/null +++ b/lib/rateLimit.ts @@ -0,0 +1,129 @@ +import 'server-only'; + +import { prisma } from '~/lib/db'; + +const WINDOW_MS = 15 * 60 * 1000; +const CLEANUP_AGE_MS = 60 * 60 * 1000; +const MAX_DELAY_MS = 30_000; +const FREE_FAILURES = 1; + +type RateLimitResult = + | { allowed: true } + | { allowed: false; retryAfter: number }; + +function calculateDelay(failures: number): number { + if (failures <= FREE_FAILURES) return 0; + return Math.min(1000 * Math.pow(2, failures - 2), MAX_DELAY_MS); +} + +async function getFailureCount( + field: 'username' | 'ipAddress', + value: string, + since: Date, +): Promise { + return prisma.loginAttempt.count({ + where: { + [field]: value, + success: false, + timestamp: { gte: since }, + }, + }); +} + +async function getLastAttemptTimestamp( + field: 'username' | 'ipAddress', + value: string, + since: Date, +): Promise { + const result = await prisma.loginAttempt.findFirst({ + where: { + [field]: value, + success: false, + timestamp: { gte: since }, + }, + orderBy: { timestamp: 'desc' }, + select: { timestamp: true }, + }); + return result?.timestamp ?? null; +} + +export async function checkRateLimit( + username: string | null, + ipAddress: string | null, +): Promise { + const windowStart = new Date(Date.now() - WINDOW_MS); + + const [usernameFailures, ipFailures] = await Promise.all([ + username ? getFailureCount('username', username, windowStart) : 0, + ipAddress ? getFailureCount('ipAddress', ipAddress, windowStart) : 0, + ]); + + const worstFailures = Math.max(usernameFailures, ipFailures); + const delayMs = calculateDelay(worstFailures); + + if (delayMs === 0) { + return { allowed: true }; + } + + const [usernameLastAttempt, ipLastAttempt] = await Promise.all([ + username + ? getLastAttemptTimestamp('username', username, windowStart) + : null, + ipAddress + ? getLastAttemptTimestamp('ipAddress', ipAddress, windowStart) + : null, + ]); + + const now = Date.now(); + let latestRetryAfter = 0; + + if (usernameLastAttempt) { + const usernameDelay = calculateDelay(usernameFailures); + latestRetryAfter = Math.max( + latestRetryAfter, + usernameLastAttempt.getTime() + usernameDelay, + ); + } + + if (ipLastAttempt) { + const ipDelay = calculateDelay(ipFailures); + latestRetryAfter = Math.max( + latestRetryAfter, + ipLastAttempt.getTime() + ipDelay, + ); + } + + if (latestRetryAfter === 0 || now >= latestRetryAfter) { + return { allowed: true }; + } + + return { allowed: false, retryAfter: latestRetryAfter }; +} + +export async function recordLoginAttempt( + username: string | null, + ipAddress: string | null, + success: boolean, +): Promise { + await prisma.loginAttempt.create({ + data: { + username, + ipAddress, + success, + }, + }); + + if (Math.random() < 0.05) { + await cleanupOldAttempts(); + } +} + +export async function cleanupOldAttempts(): Promise { + const cutoff = new Date(Date.now() - CLEANUP_AGE_MS); + + await prisma.loginAttempt.deleteMany({ + where: { + timestamp: { lt: cutoff }, + }, + }); +} diff --git a/lib/storage/errors.ts b/lib/storage/errors.ts new file mode 100644 index 000000000..2b7abddc5 --- /dev/null +++ b/lib/storage/errors.ts @@ -0,0 +1,46 @@ +import { Data } from 'effect'; + +export class FileStorageError extends Data.TaggedError('FileStorageError')<{ + readonly cause: unknown; + readonly userMessage: string; +}> {} + +export class AssetStorageError extends Data.TaggedError('AssetStorageError')<{ + readonly cause: unknown; + readonly userMessage: string; +}> {} + +export function getUserMessage(error: unknown, stage: string): string { + const message = + error instanceof Error ? error.message.toLowerCase() : String(error); + + if (message.includes('heap') || message.includes('memory')) { + return `Export ran out of memory while ${stage}. Try exporting fewer interviews at a time.`; + } + + if (message.includes('enospc') || message.includes('no space')) { + return `Export ran out of disk space while ${stage}. Please free up server storage and try again.`; + } + + if ( + message.includes('timeout') || + message.includes('timedout') || + message.includes('timed out') || + message.includes('etimedout') || + message.includes('econnreset') + ) { + return `Export timed out while ${stage}. Try exporting fewer interviews at a time.`; + } + + if ( + message.includes('econnrefused') || + message.includes('database') || + message.includes('prisma') + ) { + return `Database connection failed while ${stage}. Please try again later.`; + } + + const originalMessage = + error instanceof Error ? error.message : String(error); + return `Export failed while ${stage}: ${originalMessage}`; +} diff --git a/lib/storage/layers/ProductionLayer.ts b/lib/storage/layers/ProductionLayer.ts new file mode 100644 index 000000000..fe78fc06d --- /dev/null +++ b/lib/storage/layers/ProductionLayer.ts @@ -0,0 +1,12 @@ +import { Layer } from 'effect'; +import { S3AssetStorage } from '~/lib/storage/layers/S3AssetStorage'; +import { S3FileStorage } from '~/lib/storage/layers/S3FileStorage'; +import { UploadThingAssetStorage } from '~/lib/storage/layers/UploadThingAssetStorage'; +import { UploadThingFileStorage } from '~/lib/storage/layers/UploadThingFileStorage'; +import type { StorageProvider } from '~/queries/storageProvider'; + +export function makeProductionLayer(provider: StorageProvider) { + return provider === 's3' + ? Layer.mergeAll(S3FileStorage, S3AssetStorage) + : Layer.mergeAll(UploadThingFileStorage, UploadThingAssetStorage); +} diff --git a/lib/storage/layers/S3AssetStorage.ts b/lib/storage/layers/S3AssetStorage.ts new file mode 100644 index 000000000..8c8b3935c --- /dev/null +++ b/lib/storage/layers/S3AssetStorage.ts @@ -0,0 +1,91 @@ +import { DeleteObjectsCommand, PutObjectCommand } from '@aws-sdk/client-s3'; +import { getSignedUrl } from '@aws-sdk/s3-request-presigner'; +import { Effect, Layer } from 'effect'; +import { AssetStorageError } from '~/lib/storage/errors'; +import { AssetStorage } from '~/lib/storage/services/AssetStorage'; +import { + getS3Bucket, + getS3Client, + getS3PublicBaseUrl, +} from '~/lib/storage/layers/S3Client'; + +function generateS3Key(fileName: string): string { + const timestamp = Date.now(); + const random = Math.random().toString(36).slice(2, 10); + return `assets/${timestamp}-${random}-${fileName}`; +} + +export const S3AssetStorage = Layer.succeed(AssetStorage, { + generatePresignedUploadUrls: (files) => + Effect.gen(function* () { + const [client, bucket, baseUrl] = yield* Effect.tryPromise({ + try: () => + Promise.all([getS3Client(), getS3Bucket(), getS3PublicBaseUrl()]), + catch: (error) => + new AssetStorageError({ + cause: error, + userMessage: 'Failed to connect to storage provider.', + }), + }); + + const results = yield* Effect.forEach(files, (file) => + Effect.gen(function* () { + const fileKey = generateS3Key(file.name); + + const command = new PutObjectCommand({ + Bucket: bucket, + Key: fileKey, + ContentLength: file.size, + }); + + const uploadUrl = yield* Effect.tryPromise({ + try: () => getSignedUrl(client, command, { expiresIn: 3600 }), + catch: (error) => + new AssetStorageError({ + cause: error, + userMessage: `Failed to generate upload URL for ${file.name}.`, + }), + }); + + return { + uploadUrl, + fileKey, + publicUrl: `${baseUrl}/${fileKey}`, + }; + }), + ); + + return results; + }), + + deleteAssets: (keys) => + Effect.gen(function* () { + if (keys.length === 0) return; + + const [client, bucket] = yield* Effect.tryPromise({ + try: () => Promise.all([getS3Client(), getS3Bucket()]), + catch: (error) => + new AssetStorageError({ + cause: error, + userMessage: 'Failed to connect to storage provider.', + }), + }); + + yield* Effect.tryPromise({ + try: () => + client.send( + new DeleteObjectsCommand({ + Bucket: bucket, + Delete: { + Objects: keys.map((key) => ({ Key: key })), + }, + }), + ), + catch: (error) => + new AssetStorageError({ + cause: error, + userMessage: 'Failed to delete assets from storage.', + }), + }); + }), +}); diff --git a/lib/storage/layers/S3Client.ts b/lib/storage/layers/S3Client.ts new file mode 100644 index 000000000..f2e8f7a4c --- /dev/null +++ b/lib/storage/layers/S3Client.ts @@ -0,0 +1,46 @@ +import { S3Client } from '@aws-sdk/client-s3'; +import { getAppSetting } from '~/queries/appSettings'; + +export async function getS3Client(): Promise { + const [endpoint, region, accessKeyId, secretAccessKey] = await Promise.all([ + getAppSetting('s3Endpoint'), + getAppSetting('s3Region'), + getAppSetting('s3AccessKeyId'), + getAppSetting('s3SecretAccessKey'), + ]); + + if (!endpoint || !region || !accessKeyId || !secretAccessKey) { + throw new Error('S3 credentials are not configured'); + } + + return new S3Client({ + endpoint, + region, + credentials: { + accessKeyId, + secretAccessKey, + }, + forcePathStyle: true, + }); +} + +export async function getS3Bucket(): Promise { + const bucket = await getAppSetting('s3Bucket'); + if (!bucket) { + throw new Error('S3 bucket is not configured'); + } + return bucket; +} + +export async function getS3PublicBaseUrl(): Promise { + const [endpoint, bucket] = await Promise.all([ + getAppSetting('s3Endpoint'), + getAppSetting('s3Bucket'), + ]); + + if (!endpoint || !bucket) { + throw new Error('S3 configuration is incomplete'); + } + + return `${endpoint.replace(/\/$/, '')}/${bucket}`; +} diff --git a/lib/storage/layers/S3FileStorage.ts b/lib/storage/layers/S3FileStorage.ts new file mode 100644 index 000000000..9e54e6263 --- /dev/null +++ b/lib/storage/layers/S3FileStorage.ts @@ -0,0 +1,151 @@ +import { Readable } from 'node:stream'; +import { + DeleteObjectCommand, + GetObjectCommand, + PutObjectCommand, +} from '@aws-sdk/client-s3'; +import { Upload } from '@aws-sdk/lib-storage'; +import { getSignedUrl } from '@aws-sdk/s3-request-presigner'; +import { OutputError } from '@codaco/network-exporters/errors'; +import { type OutputResult } from '@codaco/network-exporters/output'; +import { Effect, Layer } from 'effect'; +import { FileStorageError, getUserMessage } from '~/lib/storage/errors'; +import { FileStorage } from '~/lib/storage/services/FileStorage'; +import { + getS3Bucket, + getS3Client, + getS3PublicBaseUrl, +} from '~/lib/storage/layers/S3Client'; + +export const S3FileStorage = Layer.succeed(FileStorage, { + upload: (fileBuffer, fileName) => + Effect.gen(function* () { + const [client, bucket, baseUrl] = yield* Effect.tryPromise({ + try: () => + Promise.all([getS3Client(), getS3Bucket(), getS3PublicBaseUrl()]), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage( + error, + 'retrieving storage credentials', + ), + }), + }); + + yield* Effect.tryPromise({ + try: () => + client.send( + new PutObjectCommand({ + Bucket: bucket, + Key: fileName, + Body: fileBuffer, + ContentType: 'application/zip', + }), + ), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage(error, 'uploading zip file'), + }), + }); + + return { url: `${baseUrl}/${fileName}`, key: fileName }; + }), + + delete: (key) => + Effect.gen(function* () { + const [client, bucket] = yield* Effect.tryPromise({ + try: () => Promise.all([getS3Client(), getS3Bucket()]), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage( + error, + 'retrieving storage credentials', + ), + }), + }); + + yield* Effect.tryPromise({ + try: () => + client.send( + new DeleteObjectCommand({ + Bucket: bucket, + Key: key, + }), + ), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage(error, 'deleting file from storage'), + }), + }); + }), + + getDownloadUrl: (key) => + Effect.gen(function* () { + const [client, bucket] = yield* Effect.tryPromise({ + try: () => Promise.all([getS3Client(), getS3Bucket()]), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage( + error, + 'retrieving storage credentials', + ), + }), + }); + + const command = new GetObjectCommand({ + Bucket: bucket, + Key: key, + }); + + return yield* Effect.tryPromise({ + try: () => getSignedUrl(client, command, { expiresIn: 3600 }), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage(error, 'generating download URL'), + }), + }); + }), +}); + +export const makeS3Sink = ( + zipStream: AsyncIterable, + fileName: string, +): Effect.Effect => + Effect.gen(function* () { + const [client, bucket] = yield* Effect.tryPromise({ + try: () => Promise.all([getS3Client(), getS3Bucket()]), + catch: (error) => new OutputError({ cause: error }), + }); + + yield* Effect.tryPromise({ + try: () => + new Upload({ + client, + params: { + Bucket: bucket, + Key: fileName, + Body: Readable.from(zipStream), + ContentType: 'application/zip', + }, + }).done(), + catch: (error) => new OutputError({ cause: error }), + }); + + const url = yield* Effect.tryPromise({ + try: () => + getSignedUrl( + client, + new GetObjectCommand({ Bucket: bucket, Key: fileName }), + { expiresIn: 3600 }, + ), + catch: (error) => new OutputError({ cause: error }), + }); + + return { key: fileName, url }; + }); diff --git a/lib/storage/layers/StorageLayer.ts b/lib/storage/layers/StorageLayer.ts new file mode 100644 index 000000000..53130f2a7 --- /dev/null +++ b/lib/storage/layers/StorageLayer.ts @@ -0,0 +1,7 @@ +import { makeProductionLayer } from '~/lib/storage/layers/ProductionLayer'; +import { getStorageProvider } from '~/queries/storageProvider'; + +export const getStorageLayer = async () => { + const provider = await getStorageProvider(); + return makeProductionLayer(provider); +}; diff --git a/lib/storage/layers/UploadThingAssetStorage.ts b/lib/storage/layers/UploadThingAssetStorage.ts new file mode 100644 index 000000000..d4881bd01 --- /dev/null +++ b/lib/storage/layers/UploadThingAssetStorage.ts @@ -0,0 +1,51 @@ +import { Effect, Layer } from 'effect'; +import { AssetStorageError } from '~/lib/storage/errors'; +import { AssetStorage } from '~/lib/storage/services/AssetStorage'; +import { getUTApi } from '~/lib/uploadthing/server-helpers'; + +export const UploadThingAssetStorage = Layer.succeed(AssetStorage, { + // UploadThing's ingest protocol is not a plain presigned-PUT; clients must + // use the UploadThing SDK's uploader directly (which hits /api/uploadthing). + // Callers should check the storage provider and route around this method. + generatePresignedUploadUrls: () => + Effect.fail( + new AssetStorageError({ + cause: new Error( + 'generatePresignedUploadUrls is not supported for UploadThing — use the UploadThing SDK client uploader instead.', + ), + userMessage: 'Upload flow misconfigured for UploadThing.', + }), + ), + + deleteAssets: (keys) => + Effect.gen(function* () { + if (keys.length === 0) return; + + const utapi = yield* Effect.tryPromise({ + try: () => getUTApi(), + catch: (error) => + new AssetStorageError({ + cause: error, + userMessage: 'Failed to connect to storage provider.', + }), + }); + + const response = yield* Effect.tryPromise({ + try: () => utapi.deleteFiles(keys), + catch: (error) => + new AssetStorageError({ + cause: error, + userMessage: 'Failed to delete assets from storage.', + }), + }); + + if (!response.success) { + return yield* Effect.fail( + new AssetStorageError({ + cause: new Error('Delete returned unsuccessful'), + userMessage: 'Failed to delete assets from storage.', + }), + ); + } + }), +}); diff --git a/lib/storage/layers/UploadThingFileStorage.ts b/lib/storage/layers/UploadThingFileStorage.ts new file mode 100644 index 000000000..fc07f4449 --- /dev/null +++ b/lib/storage/layers/UploadThingFileStorage.ts @@ -0,0 +1,146 @@ +import { OutputError } from '@codaco/network-exporters/errors'; +import type { OutputResult } from '@codaco/network-exporters/output'; +import { Effect, Layer } from 'effect'; +import { File } from 'node:buffer'; +import { Readable } from 'node:stream'; +import { buffer as streamToBuffer } from 'node:stream/consumers'; +import { FileStorageError, getUserMessage } from '~/lib/storage/errors'; +import { FileStorage } from '~/lib/storage/services/FileStorage'; +import { getUTApi } from '~/lib/uploadthing/server-helpers'; +import { parseUploadThingToken } from '~/lib/uploadthing/token'; + +export const UploadThingFileStorage = Layer.succeed(FileStorage, { + upload: (fileBuffer, fileName) => + Effect.gen(function* () { + const utapi = yield* Effect.tryPromise({ + try: () => getUTApi(), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage( + error, + 'retrieving file storage credentials', + ), + }), + }); + + const zipFile = new File([fileBuffer], fileName, { + type: 'application/zip', + }); + + const { data, error } = yield* Effect.tryPromise({ + try: () => utapi.uploadFiles(zipFile), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage(error, 'uploading zip file'), + }), + }); + + if (!data) { + return yield* Effect.fail( + new FileStorageError({ + cause: error ?? new Error('Upload returned no data'), + userMessage: getUserMessage( + error ?? new Error('Upload returned no data'), + 'uploading zip file', + ), + }), + ); + } + + return { url: data.ufsUrl, key: data.key }; + }), + + delete: (key) => + Effect.gen(function* () { + const utapi = yield* Effect.tryPromise({ + try: () => getUTApi(), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage( + error, + 'retrieving file storage credentials', + ), + }), + }); + + const response = yield* Effect.tryPromise({ + try: () => utapi.deleteFiles(key), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage( + error, + 'deleting file from file storage', + ), + }), + }); + + if (!response.success) { + return yield* Effect.fail( + new FileStorageError({ + cause: new Error('Delete returned unsuccessful'), + userMessage: 'Failed to delete the zip file from file storage.', + }), + ); + } + }), + + getDownloadUrl: (key) => + Effect.gen(function* () { + const tokenData = yield* Effect.tryPromise({ + try: () => parseUploadThingToken(), + catch: (error) => + new FileStorageError({ + cause: error, + userMessage: getUserMessage(error, 'parsing storage credentials'), + }), + }); + + if (!tokenData) { + return yield* Effect.fail( + new FileStorageError({ + cause: new Error('UploadThing token not configured'), + userMessage: 'Storage credentials are not configured.', + }), + ); + } + + return `https://${tokenData.appId}.ufs.sh/f/${key}`; + }), +}); + +export const makeUploadThingSink = ( + zipStream: AsyncIterable, + fileName: string, +): Effect.Effect => + Effect.gen(function* () { + const utapi = yield* Effect.tryPromise({ + try: () => getUTApi(), + catch: (error) => new OutputError({ cause: error }), + }); + + const buf = yield* Effect.tryPromise({ + try: () => streamToBuffer(Readable.from(zipStream)), + catch: (error) => new OutputError({ cause: error }), + }); + + const file = new File([buf], fileName, { type: 'application/zip' }); + + const { data, error } = yield* Effect.tryPromise({ + try: () => utapi.uploadFiles(file), + catch: (error) => new OutputError({ cause: error }), + }); + + if (!data) { + return yield* Effect.fail( + new OutputError({ + cause: error ?? new Error('Upload returned no data'), + }), + ); + } + + return { key: data.key, url: data.ufsUrl }; + }); diff --git a/lib/storage/services/AssetStorage.ts b/lib/storage/services/AssetStorage.ts new file mode 100644 index 000000000..6f195a414 --- /dev/null +++ b/lib/storage/services/AssetStorage.ts @@ -0,0 +1,20 @@ +import { Context, type Effect } from 'effect'; +import type { AssetStorageError } from '~/lib/storage/errors'; + +export type PresignedUploadUrl = { + uploadUrl: string; + fileKey: string; + publicUrl: string; +}; + +export class AssetStorage extends Context.Tag('AssetStorage')< + AssetStorage, + { + readonly generatePresignedUploadUrls: ( + files: { name: string; size: number }[], + ) => Effect.Effect; + readonly deleteAssets: ( + keys: string[], + ) => Effect.Effect; + } +>() {} diff --git a/lib/storage/services/FileStorage.ts b/lib/storage/services/FileStorage.ts new file mode 100644 index 000000000..7c5f052eb --- /dev/null +++ b/lib/storage/services/FileStorage.ts @@ -0,0 +1,16 @@ +import { Context, type Effect } from 'effect'; +import type { FileStorageError } from '~/lib/storage/errors'; + +export class FileStorage extends Context.Tag('FileStorage')< + FileStorage, + { + readonly upload: ( + fileBuffer: Buffer, + fileName: string, + ) => Effect.Effect<{ url: string; key: string }, FileStorageError>; + readonly delete: (key: string) => Effect.Effect; + readonly getDownloadUrl: ( + key: string, + ) => Effect.Effect; + } +>() {} diff --git a/lib/uploadthing/__tests__/uploadWithRetry.test.ts b/lib/uploadthing/__tests__/uploadWithRetry.test.ts new file mode 100644 index 000000000..12e9924ac --- /dev/null +++ b/lib/uploadthing/__tests__/uploadWithRetry.test.ts @@ -0,0 +1,78 @@ +import { describe, expect, it, vi } from 'vitest'; +import { + type UploadedFile, + uploadToUploadThingWithRetry, +} from '~/lib/uploadthing/uploadWithRetry'; + +const uploadedFiles: UploadedFile[] = [ + { key: 'key-1', url: 'https://ut/key-1', name: 'p.netcanvas', size: 10 }, +]; + +const file = new File(['x'], 'p.netcanvas'); +const NO_BACKOFF = [0, 0, 0]; + +describe('uploadToUploadThingWithRetry', () => { + it('returns mapped files on first success', async () => { + const startUpload = vi.fn().mockResolvedValue({ + done: () => Promise.resolve(uploadedFiles), + }); + + const result = await uploadToUploadThingWithRetry([file], undefined, { + backoffMs: NO_BACKOFF, + startUpload, + }); + + expect(result).toEqual(uploadedFiles); + expect(startUpload).toHaveBeenCalledTimes(1); + }); + + it('retries after a failed attempt then succeeds', async () => { + const startUpload = vi + .fn() + .mockResolvedValueOnce({ + done: () => Promise.reject(new Error('XHR failed 400')), + }) + .mockResolvedValueOnce({ done: () => Promise.resolve(uploadedFiles) }); + + const result = await uploadToUploadThingWithRetry([file], undefined, { + backoffMs: NO_BACKOFF, + startUpload, + }); + + expect(result).toEqual(uploadedFiles); + expect(startUpload).toHaveBeenCalledTimes(2); + }); + + it('throws the last error after exhausting all attempts', async () => { + const startUpload = vi.fn().mockResolvedValue({ + done: () => Promise.reject(new Error('XHR failed 400')), + }); + + await expect( + uploadToUploadThingWithRetry([file], undefined, { + backoffMs: NO_BACKOFF, + startUpload, + }), + ).rejects.toThrow('XHR failed 400'); + expect(startUpload).toHaveBeenCalledTimes(3); + }); + + it('forwards aggregate progress', async () => { + const startUpload = vi.fn( + (_files: File[], onProgress: (p: number) => void) => { + onProgress(42); + return Promise.resolve({ + done: () => Promise.resolve(uploadedFiles), + }); + }, + ); + const onProgress = vi.fn(); + + await uploadToUploadThingWithRetry([file], onProgress, { + backoffMs: NO_BACKOFF, + startUpload, + }); + + expect(onProgress).toHaveBeenCalledWith(42); + }); +}); diff --git a/lib/uploadthing/client-helpers.ts b/lib/uploadthing/client-helpers.ts new file mode 100644 index 000000000..48eda8fb6 --- /dev/null +++ b/lib/uploadthing/client-helpers.ts @@ -0,0 +1,4 @@ +import { genUploader } from 'uploadthing/client'; +import type { OurFileRouter } from '~/app/api/uploadthing/core'; + +export const { createUpload } = genUploader(); diff --git a/lib/uploadthing/server-helpers.ts b/lib/uploadthing/server-helpers.ts new file mode 100644 index 000000000..a0fe82f62 --- /dev/null +++ b/lib/uploadthing/server-helpers.ts @@ -0,0 +1,14 @@ +'use server'; + +import { UTApi } from 'uploadthing/server'; +import { getAppSetting } from '~/queries/appSettings'; + +export const getUTApi = async () => { + const UPLOADTHING_TOKEN = await getAppSetting('uploadThingToken'); + + const utapi = new UTApi({ + token: UPLOADTHING_TOKEN ?? undefined, + }); + + return utapi; +}; diff --git a/lib/uploadthing/token.ts b/lib/uploadthing/token.ts new file mode 100644 index 000000000..82ae53368 --- /dev/null +++ b/lib/uploadthing/token.ts @@ -0,0 +1,24 @@ +import { z } from 'zod/mini'; +import { getAppSetting } from '~/queries/appSettings'; + +const uploadThingTokenSchema = z.object({ + apiKey: z.string().check(z.minLength(1)), + appId: z.string().check(z.minLength(1)), + regions: z.array(z.string()), + ingestHost: z._default(z.optional(z.string()), 'ingest.uploadthing.com'), +}); + +type ParsedToken = z.infer; + +export async function parseUploadThingToken(): Promise { + const token = await getAppSetting('uploadThingToken'); + if (!token) return null; + + try { + const decoded = Buffer.from(token, 'base64').toString('utf-8'); + const parsed = uploadThingTokenSchema.safeParse(JSON.parse(decoded)); + return parsed.success ? parsed.data : null; + } catch { + return null; + } +} diff --git a/lib/uploadthing/uploadWithRetry.ts b/lib/uploadthing/uploadWithRetry.ts new file mode 100644 index 000000000..0e48821b0 --- /dev/null +++ b/lib/uploadthing/uploadWithRetry.ts @@ -0,0 +1,81 @@ +import { createUpload } from '~/lib/uploadthing/client-helpers'; +import { ensureError } from '~/utils/ensureError'; + +export type UploadedFile = { + key: string; + url: string; + name: string; + size: number; +}; + +type AssetUploadHandle = { + done: () => Promise; +}; + +type StartAssetUpload = ( + files: File[], + onProgress: (totalProgress: number) => void, +) => Promise; + +// Delay (ms) applied before attempt index N. Index 0 (first attempt) never +// waits. Length determines the number of attempts. +const DEFAULT_BACKOFF_MS = [0, 2000, 5000]; + +const wait = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)); + +// Default uploader: drives UploadThing's resumable `createUpload` and maps the +// SDK result to the app's `UploadedFile` shape. `createUpload`'s +// `onUploadProgress` reports `totalProgress` (overall bytes across the batch), +// which avoids the per-file progress overwrites that made the bar jump. +const startAssetUpload: StartAssetUpload = async (files, onProgress) => { + const { done } = await createUpload('assetRouter', { + files, + onUploadProgress: ({ totalProgress }) => onProgress(totalProgress), + }); + + return { + done: async () => { + const results = await done(); + return results.map((result) => ({ + key: result.key, + url: result.ufsUrl, + name: result.name, + size: result.size, + })); + }, + }; +}; + +/** + * Uploads files to UploadThing via the resumable `createUpload` API, retrying + * the whole upload on failure. UploadThing's single-PUT upload has no built-in + * retry, so a transient ingest rejection (observed as `XHR failed 400` on large + * files) would otherwise abort the import permanently. + */ +export async function uploadToUploadThingWithRetry( + files: File[], + onProgress?: (progress: number) => void, + options: { backoffMs?: number[]; startUpload?: StartAssetUpload } = {}, +): Promise { + const backoffMs = options.backoffMs ?? DEFAULT_BACKOFF_MS; + const startUpload = options.startUpload ?? startAssetUpload; + let lastError: Error = new Error('Upload failed'); + + for (let attempt = 0; attempt < backoffMs.length; attempt++) { + const delay = backoffMs[attempt] ?? 0; + if (attempt > 0 && delay > 0) { + await wait(delay); + } + + try { + const { done } = await startUpload(files, (progress) => + onProgress?.(progress), + ); + return await done(); + } catch (error) { + lastError = ensureError(error); + } + } + + throw lastError; +} diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 000000000..695b7c132 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,7 @@ +[build] + publish = ".next" + command = "pnpm build:platform" + ignore = "bash scripts/netlify-should-build.sh" + +[context.branch-deploy] + command = "pnpm build:branch-preview" \ No newline at end of file diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 000000000..77a0b1daf --- /dev/null +++ b/next.config.ts @@ -0,0 +1,76 @@ +import { withPostHogConfig } from '@posthog/nextjs-config'; +import type { NextConfig } from 'next'; +import ChildProcess from 'node:child_process'; +import './env.js'; +import { POSTHOG_APP_NAME } from './fresco.config'; +import pkg from './package.json' with { type: 'json' }; + +let commitHash = 'Unknown commit hash'; + +try { + commitHash = ChildProcess.execSync('git log --pretty=format:"%h" -n1') + .toString() + .trim(); +} catch (error) { + if (error instanceof Error) { + // eslint-disable-next-line no-console + console.info( + 'Error getting commit hash:', + error.message ?? 'Unknown error', + ); + } else { + // eslint-disable-next-line no-console + console.info('Error getting commit hash:', error); + } +} + +const config: NextConfig = { + output: 'standalone', + reactStrictMode: true, + reactCompiler: true, + cacheComponents: true, + typedRoutes: true, + turbopack: {}, + transpilePackages: ['@codaco/shared-consts'], + experimental: { + optimizePackageImports: ['lucide-react', 'es-toolkit'], + }, + serverExternalPackages: [ + 'posthog-node', + 'archiver', + '@xmldom/xmldom', + 'csvtojson', + 'sharp', + ], + env: { + APP_VERSION: `v${pkg.version}`, + COMMIT_HASH: commitHash, + }, + typescript: { + ignoreBuildErrors: true, + }, +}; + +// eslint-disable-next-line no-process-env +const posthogPersonalApiKey = process.env.POSTHOG_PERSONAL_API_KEY; +// eslint-disable-next-line no-process-env +const posthogProjectId = process.env.POSTHOG_PROJECT_ID; + +/** + * posthog requires personalApiKey and projectId to be set at build time, but + * we don't want to require them for local development or CI. If they're not + * set, we provide dummy values and the posthog client will be a no-op. + */ +export default withPostHogConfig(config, { + personalApiKey: posthogPersonalApiKey ?? 'none', + projectId: posthogProjectId ?? 'none', + sourcemaps: { + enabled: + // eslint-disable-next-line no-process-env + process.env.CI === 'true' && + !!posthogPersonalApiKey && + !!posthogProjectId, + releaseName: POSTHOG_APP_NAME, + deleteAfterUpload: true, + }, +}); diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index b2e4c535e..000000000 --- a/package-lock.json +++ /dev/null @@ -1,14390 +0,0 @@ -{ - "name": "prisma-trpc-mono", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "workspaces": [ - "apps/*", - "packages/*" - ], - "devDependencies": { - "prettier": "^2.5.1", - "tsx": "^3.7.1", - "turbo": "1.7.4" - } - }, - "apps/electron-backend": { - "version": "0.0.0", - "dependencies": { - "@codaco/api": "*", - "database": "*", - "database-test": "*", - "electron-trpc": "^0.4.1", - "vite": "^4.1.1", - "vite-plugin-electron": "^0.11.1", - "wait-for-server-up": "*" - }, - "devDependencies": { - "electron": "^23.0.0", - "typescript": "^4.9.5" - } - }, - "apps/electron-packager": { - "version": "0.0.0", - "devDependencies": { - "electron-builder": "^23.6.0" - } - }, - "apps/frontend": { - "version": "0.0.0", - "dependencies": { - "electron-trpc": "^0.4.1", - "react": "^18.2.0", - "react-dom": "^18.2.0" - }, - "devDependencies": { - "@tanstack/react-query": "^4.24.6", - "@tanstack/react-query-devtools": "^4.24.6", - "@trpc/client": "^10.11.1", - "@trpc/react-query": "^10.11.1", - "@trpc/server": "^10.11.1", - "@types/react": "^18.0.27", - "@types/react-dom": "^18.0.10", - "@vitejs/plugin-react-swc": "^3.0.0", - "superjson": "^1.12.2", - "typescript": "^4.9.3", - "vite": "^4.1.0" - } - }, - "apps/web-backend": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "@codaco/api": "*", - "@trpc/server": "^10.11.1", - "cors": "^2.8.5", - "database": "*", - "dotenv": "^16.0.3", - "express": "^4.18.2" - }, - "devDependencies": { - "@types/cors": "^2.8.12", - "@types/express": "^4.17.14", - "@types/morgan": "^1.9.3", - "morgan": "^1.10.0", - "ts-node-dev": "^2.0.0", - "typescript": "^4.9.5" - } - }, - "node_modules/@babel/runtime": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz", - "integrity": "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==", - "dependencies": { - "regenerator-runtime": "^0.13.10" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/runtime-corejs3": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz", - "integrity": "sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==", - "dependencies": { - "core-js-pure": "^3.25.1", - "regenerator-runtime": "^0.13.10" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@codaco/api": { - "resolved": "packages/trpc", - "link": true - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@develar/schema-utils": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", - "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", - "dev": true, - "dependencies": { - "ajv": "^6.12.0", - "ajv-keywords": "^3.4.1" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/@electron/get": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.2.tgz", - "integrity": "sha512-eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g==", - "dependencies": { - "debug": "^4.1.1", - "env-paths": "^2.2.0", - "fs-extra": "^8.1.0", - "got": "^11.8.5", - "progress": "^2.0.3", - "semver": "^6.2.0", - "sumchecker": "^3.0.1" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "global-agent": "^3.0.0" - } - }, - "node_modules/@electron/get/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@electron/universal": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.2.1.tgz", - "integrity": "sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ==", - "dev": true, - "dependencies": { - "@malept/cross-spawn-promise": "^1.1.0", - "asar": "^3.1.0", - "debug": "^4.3.1", - "dir-compare": "^2.4.0", - "fs-extra": "^9.0.1", - "minimatch": "^3.0.4", - "plist": "^3.0.4" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/@electron/universal/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@electron/universal/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@electron/universal/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@esbuild-kit/cjs-loader": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@esbuild-kit/cjs-loader/-/cjs-loader-2.4.1.tgz", - "integrity": "sha512-lhc/XLith28QdW0HpHZvZKkorWgmCNT7sVelMHDj3HFdTfdqkwEKvT+aXVQtNAmCC39VJhunDkWhONWB7335mg==", - "dev": true, - "dependencies": { - "@esbuild-kit/core-utils": "^3.0.0", - "get-tsconfig": "^4.2.0" - } - }, - "node_modules/@esbuild-kit/core-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@esbuild-kit/core-utils/-/core-utils-3.0.0.tgz", - "integrity": "sha512-TXmwH9EFS3DC2sI2YJWJBgHGhlteK0Xyu1VabwetMULfm3oYhbrsWV5yaSr2NTWZIgDGVLHbRf0inxbjXqAcmQ==", - "dev": true, - "dependencies": { - "esbuild": "~0.15.10", - "source-map-support": "^0.5.21" - } - }, - "node_modules/@esbuild-kit/esm-loader": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@esbuild-kit/esm-loader/-/esm-loader-2.5.0.tgz", - "integrity": "sha512-ySs0qOsiwj+hsgZM9/MniGdvfa9/WzqfFuIia8/5gSUPeIQIX2/tG91QakxPFOR35VFiwTB7wCiHtiS6dc6SkA==", - "dev": true, - "dependencies": { - "@esbuild-kit/core-utils": "^3.0.0", - "get-tsconfig": "^4.2.0" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.15.tgz", - "integrity": "sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", - "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", - "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", - "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", - "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", - "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", - "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", - "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", - "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", - "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.15.tgz", - "integrity": "sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", - "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", - "cpu": [ - "mips64el" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", - "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", - "cpu": [ - "ppc64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", - "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", - "cpu": [ - "riscv64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", - "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", - "cpu": [ - "s390x" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", - "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", - "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", - "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", - "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", - "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", - "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", - "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@malept/cross-spawn-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", - "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/malept" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" - } - ], - "dependencies": { - "cross-spawn": "^7.0.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@malept/flatpak-bundler": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", - "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "fs-extra": "^9.0.0", - "lodash": "^4.17.15", - "tmp-promise": "^3.0.2" - }, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@malept/flatpak-bundler/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/@next/eslint-plugin-next": { - "version": "13.1.5", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.5.tgz", - "integrity": "sha512-3kvLTX35bOWOCKU8KY74Ygczc55Qk/kB2TQy0tH7Rti6hzZ6Aij7WQ8zHdIVjmnlD0n/zXWXrIf5y56RKcLQkQ==", - "dependencies": { - "glob": "7.1.7" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgr/utils": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", - "dependencies": { - "cross-spawn": "^7.0.3", - "is-glob": "^4.0.3", - "open": "^8.4.0", - "picocolors": "^1.0.0", - "tiny-glob": "^0.2.9", - "tslib": "^2.4.0" - }, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@prisma/client": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-4.10.1.tgz", - "integrity": "sha512-VonXLJZybdt8e5XZH5vnIGCRNnIh6OMX1FS3H/yzMGLT3STj5TJ/OkMcednrvELgk8PK89Vo3aSh51MWNO0axA==", - "hasInstallScript": true, - "dependencies": { - "@prisma/engines-version": "4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "prisma": "*" - }, - "peerDependenciesMeta": { - "prisma": { - "optional": true - } - } - }, - "node_modules/@prisma/engines": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-4.10.1.tgz", - "integrity": "sha512-B3tcTxjx196nuAu1GOTKO9cGPUgTFHYRdkPkTS4m5ptb2cejyBlH9X7GOfSt3xlI7p4zAJDshJP4JJivCg9ouA==", - "devOptional": true, - "hasInstallScript": true - }, - "node_modules/@prisma/engines-version": { - "version": "4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19.tgz", - "integrity": "sha512-tsjTho7laDhf9EJ9EnDxAPEf7yrigSMDhniXeU4YoWc7azHAs4GPxRi2P9LTFonmHkJLMOLjR77J1oIP8Ife1w==" - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", - "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" - }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/@swc/core": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.35.tgz", - "integrity": "sha512-KmiBin0XSVzJhzX19zTiCqmLslZ40Cl7zqskJcTDeIrRhfgKdiAsxzYUanJgMJIRjYtl9Kcg1V/Ip2o2wL8v3w==", - "dev": true, - "hasInstallScript": true, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/swc" - }, - "optionalDependencies": { - "@swc/core-darwin-arm64": "1.3.35", - "@swc/core-darwin-x64": "1.3.35", - "@swc/core-linux-arm-gnueabihf": "1.3.35", - "@swc/core-linux-arm64-gnu": "1.3.35", - "@swc/core-linux-arm64-musl": "1.3.35", - "@swc/core-linux-x64-gnu": "1.3.35", - "@swc/core-linux-x64-musl": "1.3.35", - "@swc/core-win32-arm64-msvc": "1.3.35", - "@swc/core-win32-ia32-msvc": "1.3.35", - "@swc/core-win32-x64-msvc": "1.3.35" - } - }, - "node_modules/@swc/core-darwin-arm64": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.35.tgz", - "integrity": "sha512-zQUFkHx4gZpu0uo2IspvPnKsz8bsdXd5bC33xwjtoAI1cpLerDyqo4v2zIahEp+FdKZjyVsLHtfJiQiA1Qka3A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.35.tgz", - "integrity": "sha512-oOSkSGWtALovaw22lNevKD434OQTPf8X+dVPvPMrJXJpJ34dWDlFWpLntoc+arvKLNZ7LQmTuk8rR1hkrAY7cw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.35.tgz", - "integrity": "sha512-Yie8k00O6O8BCATS/xeKStquV4OYSskUGRDXBQVDw1FrE23PHaSeHCgg4q6iNZjJzXCOJbaTCKnYoIDn9DMf7A==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.35.tgz", - "integrity": "sha512-Zlv3WHa/4x2p51HSvjUWXHfSe1Gl2prqImUZJc8NZOlj75BFzVuR0auhQ+LbwvIQ3gaA1LODX9lyS9wXL3yjxA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.35.tgz", - "integrity": "sha512-u6tCYsrSyZ8U+4jLMA/O82veBfLy2aUpn51WxQaeH7wqZGy9TGSJXoO8vWxARQ6b72vjsnKDJHP4MD8hFwcctg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.35.tgz", - "integrity": "sha512-Dtxf2IbeH7XlNhP1Qt2/MvUPkpEbn7hhGfpSRs4ot8D3Vf5QEX4S/QtC1OsFWuciiYgHAT1Ybjt4xZic9DSkmA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.35.tgz", - "integrity": "sha512-4XavNJ60GprjpTiESCu5daJUnmErixPAqDitJSMu4TV32LNIE8G00S9pDLXinDTW1rgcGtQdq1NLkNRmwwovtg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.35.tgz", - "integrity": "sha512-dNGfKCUSX2M4qVyaS80Lyos0FkXyHRCvrdQ2Y4Hrg3FVokiuw3yY6fLohpUfQ5ws3n2A39dh7jGDeh34+l0sGA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.35.tgz", - "integrity": "sha512-ChuPSrDR+JBf7S7dEKPicnG8A3bM0uWPsW2vG+V2wH4iNfNxKVemESHosmYVeEZXqMpomNMvLyeHep1rjRsc0Q==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.35.tgz", - "integrity": "sha512-/RvphT4WfuGfIK84Ha0dovdPrKB1bW/mc+dtdmhv2E3EGkNc5FoueNwYmXWRimxnU7X0X7IkcRhyKB4G5DeAmg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "dependencies": { - "defer-to-connect": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@tanstack/match-sorter-utils": { - "version": "8.7.6", - "resolved": "https://registry.npmjs.org/@tanstack/match-sorter-utils/-/match-sorter-utils-8.7.6.tgz", - "integrity": "sha512-2AMpRiA6QivHOUiBpQAVxjiHAA68Ei23ZUMNaRJrN6omWiSFLoYrxGcT6BXtuzp0Jw4h6HZCmGGIM/gbwebO2A==", - "dev": true, - "dependencies": { - "remove-accents": "0.4.2" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/kentcdodds" - } - }, - "node_modules/@tanstack/query-core": { - "version": "4.24.6", - "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.24.6.tgz", - "integrity": "sha512-Tfru6YTDTCpX7dKVwHp/sosw/dNjEdzrncduUjIkQxn7n7u+74HT2ZrGtwwrU6Orws4x7zp3FKRqBPWVVhpx9w==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - } - }, - "node_modules/@tanstack/react-query": { - "version": "4.24.6", - "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.24.6.tgz", - "integrity": "sha512-pbJUVZCS4pcXS0kZiY+mVJ01ude0GrH5OXT2g9whcqSveRG/YVup/XdA9NdRpSMGkP2HxDRxxRNsTXkniWeIIA==", - "dev": true, - "dependencies": { - "@tanstack/query-core": "4.24.6", - "use-sync-external-store": "^1.2.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-native": "*" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/@tanstack/react-query-devtools": { - "version": "4.24.6", - "resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-4.24.6.tgz", - "integrity": "sha512-d8CN4ZTtLkdCNi9x4Hogma0fdhlv7ckknv/RLuV4nbUciUoZEvhg1cI0+vp/1aY4W3jq9vH0BD/eUQKecgY15Q==", - "dev": true, - "dependencies": { - "@tanstack/match-sorter-utils": "^8.7.0", - "superjson": "^1.10.0", - "use-sync-external-store": "^1.2.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/tannerlinsley" - }, - "peerDependencies": { - "@tanstack/react-query": "4.24.6", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@trpc/client": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@trpc/client/-/client-10.11.1.tgz", - "integrity": "sha512-6aHY27YomzyUAlKhJE4jJulzDjc6vAKAKoWqAmoYbEEhApvyDrMo52bdYqqsukjxvA/L/uPhjOcPU5OsO+x+pA==", - "peerDependencies": { - "@trpc/server": "10.11.1" - } - }, - "node_modules/@trpc/react-query": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@trpc/react-query/-/react-query-10.11.1.tgz", - "integrity": "sha512-GqM0idzlQMi6upK/8IOa117UXckJDsRY+UHVkeawtkLi4hWvk82ic+zXRNw5MDYqKCC2CAlp8JIyrKfOuBdXqw==", - "dev": true, - "peerDependencies": { - "@tanstack/react-query": "^4.3.8", - "@trpc/client": "10.11.1", - "@trpc/server": "10.11.1", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" - } - }, - "node_modules/@trpc/server": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@trpc/server/-/server-10.11.1.tgz", - "integrity": "sha512-7FnvuaNsSl6HLloh0a297McS4yjhbqg/bw1h/XOAKduNPUQwXNmJf48X1PAsD8ODtO1Rrjz9TeynJD7uCEn0xQ==" - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", - "dev": true - }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "dev": true, - "dependencies": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/cors": { - "version": "2.8.13", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.13.tgz", - "integrity": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/debug": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", - "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", - "dev": true, - "dependencies": { - "@types/ms": "*" - } - }, - "node_modules/@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", - "dev": true, - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.33", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", - "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", - "dev": true, - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "node_modules/@types/fs-extra": { - "version": "9.0.13", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", - "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "optional": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/mime": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", - "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", - "dev": true - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true, - "optional": true - }, - "node_modules/@types/morgan": { - "version": "1.9.4", - "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.9.4.tgz", - "integrity": "sha512-cXoc4k+6+YAllH3ZHmx4hf7La1dzUk6keTR4bF4b4Sc0mZxU/zK4wO7l+ZzezXm/jkYj/qC+uYGZrarZdIVvyQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/ms": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.13.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.13.0.tgz", - "integrity": "sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==" - }, - "node_modules/@types/plist": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.2.tgz", - "integrity": "sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==", - "dev": true, - "optional": true, - "dependencies": { - "@types/node": "*", - "xmlbuilder": ">=11.0.1" - } - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true - }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "node_modules/@types/react": { - "version": "18.0.28", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", - "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", - "dev": true, - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.0.11", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz", - "integrity": "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", - "dev": true - }, - "node_modules/@types/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", - "dev": true, - "dependencies": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "node_modules/@types/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==", - "dev": true - }, - "node_modules/@types/strip-json-comments": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz", - "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", - "dev": true - }, - "node_modules/@types/verror": { - "version": "1.10.6", - "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.6.tgz", - "integrity": "sha512-NNm+gdePAX1VGvPcGZCDKQZKYSiAWigKhKaz5KF94hG6f2s8de9Ow5+7AbXoeKxL8gavZfk4UquSAygOF2duEQ==", - "dev": true, - "optional": true - }, - "node_modules/@types/yargs": { - "version": "17.0.22", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz", - "integrity": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "node_modules/@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", - "optional": true, - "peer": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.49.0.tgz", - "integrity": "sha512-veDlZN9mUhGqU31Qiv2qEp+XrJj5fgZpJ8PW30sHU+j/8/e5ruAhLaVDAeznS7A7i4ucb/s8IozpDtt9NqCkZg==", - "dependencies": { - "@typescript-eslint/scope-manager": "5.49.0", - "@typescript-eslint/types": "5.49.0", - "@typescript-eslint/typescript-estree": "5.49.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.49.0.tgz", - "integrity": "sha512-clpROBOiMIzpbWNxCe1xDK14uPZh35u4QaZO1GddilEzoCLAEz4szb51rBpdgurs5k2YzPtJeTEN3qVbG+LRUQ==", - "dependencies": { - "@typescript-eslint/types": "5.49.0", - "@typescript-eslint/visitor-keys": "5.49.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.49.0.tgz", - "integrity": "sha512-7If46kusG+sSnEpu0yOz2xFv5nRz158nzEXnJFCGVEHWnuzolXKwrH5Bsf9zsNlOQkyZuk0BZKKoJQI+1JPBBg==", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.49.0.tgz", - "integrity": "sha512-PBdx+V7deZT/3GjNYPVQv1Nc0U46dAHbIuOG8AZ3on3vuEKiPDwFE/lG1snN2eUB9IhF7EyF7K1hmTcLztNIsA==", - "dependencies": { - "@typescript-eslint/types": "5.49.0", - "@typescript-eslint/visitor-keys": "5.49.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.49.0.tgz", - "integrity": "sha512-v9jBMjpNWyn8B6k/Mjt6VbUS4J1GvUlR4x3Y+ibnP1z7y7V4n0WRz+50DY6+Myj0UaXVSuUlHohO+eZ8IJEnkg==", - "dependencies": { - "@typescript-eslint/types": "5.49.0", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@vitejs/plugin-react-swc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.1.0.tgz", - "integrity": "sha512-xnDULNrkEbtTtRNnMPp+RsuIuIbk1JJV0xY7irchYyv9JJS4uvmc1EYip+qyrnkcX7TQ9c8vCS3AmkQqADI0Fw==", - "dev": true, - "dependencies": { - "@swc/core": "^1.3.30" - }, - "peerDependencies": { - "vite": "^4" - } - }, - "node_modules/7zip-bin": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.1.1.tgz", - "integrity": "sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ==", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/app-builder-bin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-4.0.0.tgz", - "integrity": "sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==", - "dev": true - }, - "node_modules/app-builder-lib": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-23.6.0.tgz", - "integrity": "sha512-dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA==", - "dev": true, - "dependencies": { - "@develar/schema-utils": "~2.6.5", - "@electron/universal": "1.2.1", - "@malept/flatpak-bundler": "^0.4.0", - "7zip-bin": "~5.1.1", - "async-exit-hook": "^2.0.1", - "bluebird-lst": "^1.0.9", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chromium-pickle-js": "^0.2.0", - "debug": "^4.3.4", - "ejs": "^3.1.7", - "electron-osx-sign": "^0.6.0", - "electron-publish": "23.6.0", - "form-data": "^4.0.0", - "fs-extra": "^10.1.0", - "hosted-git-info": "^4.1.0", - "is-ci": "^3.0.0", - "isbinaryfile": "^4.0.10", - "js-yaml": "^4.1.0", - "lazy-val": "^1.0.5", - "minimatch": "^3.1.2", - "read-config-file": "6.2.0", - "sanitize-filename": "^1.6.3", - "semver": "^7.3.7", - "tar": "^6.1.11", - "temp-file": "^3.4.0" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/app-builder-lib/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/app-builder-lib/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/app-builder-lib/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", - "dependencies": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" - }, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, - "node_modules/asar": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/asar/-/asar-3.2.0.tgz", - "integrity": "sha512-COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg==", - "deprecated": "Please use @electron/asar moving forward. There is no API change, just a package name change", - "dev": true, - "dependencies": { - "chromium-pickle-js": "^0.2.0", - "commander": "^5.0.0", - "glob": "^7.1.6", - "minimatch": "^3.0.4" - }, - "bin": { - "asar": "bin/asar.js" - }, - "engines": { - "node": ">=10.12.0" - }, - "optionalDependencies": { - "@types/glob": "^7.1.1" - } - }, - "node_modules/asar/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "node_modules/async-exit-hook": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", - "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/axe-core": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.5.2.tgz", - "integrity": "sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "dev": true, - "dependencies": { - "safe-buffer": "5.1.2" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/basic-auth/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "node_modules/bluebird-lst": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", - "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", - "dev": true, - "dependencies": { - "bluebird": "^3.5.5" - } - }, - "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/boolean": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", - "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", - "optional": true, - "peer": true - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true, - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dev": true, - "dependencies": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "node_modules/buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "engines": { - "node": "*" - } - }, - "node_modules/buffer-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", - "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", - "dev": true - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/builder-util": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-23.6.0.tgz", - "integrity": "sha512-QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ==", - "dev": true, - "dependencies": { - "@types/debug": "^4.1.6", - "@types/fs-extra": "^9.0.11", - "7zip-bin": "~5.1.1", - "app-builder-bin": "4.0.0", - "bluebird-lst": "^1.0.9", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "cross-spawn": "^7.0.3", - "debug": "^4.3.4", - "fs-extra": "^10.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-ci": "^3.0.0", - "js-yaml": "^4.1.0", - "source-map-support": "^0.5.19", - "stat-mode": "^1.0.0", - "temp-file": "^3.4.0" - } - }, - "node_modules/builder-util-runtime": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz", - "integrity": "sha512-azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw==", - "dev": true, - "dependencies": { - "debug": "^4.3.4", - "sax": "^1.2.4" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/builder-util/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/builder-util/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/builder-util/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/bundle-require": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bundle-require/-/bundle-require-3.1.2.tgz", - "integrity": "sha512-Of6l6JBAxiyQ5axFxUM6dYeP/W7X2Sozeo/4EYB9sJhL+dqL7TKjg+shwxp6jlu/6ZSERfsYtIpSJ1/x3XkAEA==", - "dev": true, - "dependencies": { - "load-tsconfig": "^0.2.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "esbuild": ">=0.13" - } - }, - "node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "engines": { - "node": ">=10.6.0" - } - }, - "node_modules/cacheable-request": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", - "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", - "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/chromium-pickle-js": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", - "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", - "dev": true - }, - "node_modules/ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "optional": true, - "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", - "dev": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/compare-version": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", - "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/config": { - "resolved": "packages/config", - "link": true - }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dependencies": { - "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "node_modules/copy-anything": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.3.tgz", - "integrity": "sha512-fpW2W/BqEzqPp29QS+MwwfisHCQZtiduTe/m8idFo0xbti9fIZ2WVhAsCv4ggFVH3AgCkVdpoOCtQC6gBrdhjw==", - "dependencies": { - "is-what": "^4.1.8" - }, - "engines": { - "node": ">=12.13" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/core-js-pure": { - "version": "3.26.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz", - "integrity": "sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==", - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true, - "optional": true - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/crc": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", - "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", - "dev": true, - "optional": true, - "dependencies": { - "buffer": "^5.1.0" - } - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==", - "dev": true - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" - }, - "node_modules/database": { - "resolved": "packages/database", - "link": true - }, - "node_modules/database-test": { - "resolved": "packages/test", - "link": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decompress-response/node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "engines": { - "node": ">=10" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "optional": true, - "peer": true - }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/dir-compare": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz", - "integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==", - "dev": true, - "dependencies": { - "buffer-equal": "1.0.0", - "colors": "1.0.3", - "commander": "2.9.0", - "minimatch": "3.0.4" - }, - "bin": { - "dircompare": "src/cli/dircompare.js" - } - }, - "node_modules/dir-compare/node_modules/commander": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "integrity": "sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==", - "dev": true, - "dependencies": { - "graceful-readlink": ">= 1.0.0" - }, - "engines": { - "node": ">= 0.6.x" - } - }, - "node_modules/dir-compare/node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dmg-builder": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-23.6.0.tgz", - "integrity": "sha512-jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA==", - "dev": true, - "dependencies": { - "app-builder-lib": "23.6.0", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "fs-extra": "^10.0.0", - "iconv-lite": "^0.6.2", - "js-yaml": "^4.1.0" - }, - "optionalDependencies": { - "dmg-license": "^1.0.11" - } - }, - "node_modules/dmg-builder/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/dmg-builder/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/dmg-builder/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/dmg-builder/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/dmg-license": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", - "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "@types/plist": "^3.0.1", - "@types/verror": "^1.10.3", - "ajv": "^6.10.0", - "crc": "^3.8.0", - "iconv-corefoundation": "^1.1.7", - "plist": "^3.0.4", - "smart-buffer": "^4.0.2", - "verror": "^1.10.0" - }, - "bin": { - "dmg-license": "bin/dmg-license.js" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", - "engines": { - "node": ">=12" - } - }, - "node_modules/dotenv-expand": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", - "dev": true - }, - "node_modules/dynamic-dedupe": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz", - "integrity": "sha512-ssuANeD+z97meYOqd50e04Ze5qp4bPqo8cCkI4TRjZkzAUgIDTrXV1R8QCdINpiI+hw14+rYazvTRdQrz0/rFQ==", - "dev": true, - "dependencies": { - "xtend": "^4.0.0" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/ejs": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", - "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", - "dev": true, - "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/electron": { - "version": "23.0.0", - "resolved": "https://registry.npmjs.org/electron/-/electron-23.0.0.tgz", - "integrity": "sha512-S6hVtTAjauMiiWP9sBVR5RpcUC464cNZ06I2EMUjeZBq+KooS6tLmNsfw0zLpAXDp1qosjlBP3v71NTZ3gd9iA==", - "hasInstallScript": true, - "dependencies": { - "@electron/get": "^2.0.0", - "@types/node": "^16.11.26", - "extract-zip": "^2.0.1" - }, - "bin": { - "electron": "cli.js" - }, - "engines": { - "node": ">= 12.20.55" - } - }, - "node_modules/electron-backend": { - "resolved": "apps/electron-backend", - "link": true - }, - "node_modules/electron-builder": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-23.6.0.tgz", - "integrity": "sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw==", - "dev": true, - "dependencies": { - "@types/yargs": "^17.0.1", - "app-builder-lib": "23.6.0", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "dmg-builder": "23.6.0", - "fs-extra": "^10.0.0", - "is-ci": "^3.0.0", - "lazy-val": "^1.0.5", - "read-config-file": "6.2.0", - "simple-update-notifier": "^1.0.7", - "yargs": "^17.5.1" - }, - "bin": { - "electron-builder": "cli.js", - "install-app-deps": "install-app-deps.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/electron-builder/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/electron-builder/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/electron-builder/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/electron-osx-sign": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.6.0.tgz", - "integrity": "sha512-+hiIEb2Xxk6eDKJ2FFlpofCnemCbjbT5jz+BKGpVBrRNT3kWTGs4DfNX6IzGwgi33hUcXF+kFs9JW+r6Wc1LRg==", - "deprecated": "Please use @electron/osx-sign moving forward. Be aware the API is slightly different", - "dev": true, - "dependencies": { - "bluebird": "^3.5.0", - "compare-version": "^0.1.2", - "debug": "^2.6.8", - "isbinaryfile": "^3.0.2", - "minimist": "^1.2.0", - "plist": "^3.0.1" - }, - "bin": { - "electron-osx-flat": "bin/electron-osx-flat.js", - "electron-osx-sign": "bin/electron-osx-sign.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/electron-osx-sign/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/electron-osx-sign/node_modules/isbinaryfile": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", - "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", - "dev": true, - "dependencies": { - "buffer-alloc": "^1.2.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/electron-osx-sign/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/electron-packager": { - "resolved": "apps/electron-packager", - "link": true - }, - "node_modules/electron-publish": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-23.6.0.tgz", - "integrity": "sha512-jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg==", - "dev": true, - "dependencies": { - "@types/fs-extra": "^9.0.11", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "fs-extra": "^10.0.0", - "lazy-val": "^1.0.5", - "mime": "^2.5.2" - } - }, - "node_modules/electron-publish/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/electron-publish/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/electron-publish/node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/electron-publish/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/electron-trpc": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/electron-trpc/-/electron-trpc-0.4.1.tgz", - "integrity": "sha512-NmUbz44M+ZEFTwVDzbTzYtsrY22LtsTRpm4NU/9fIcjpzCkfar1BZrLgTpZf+wHnic+EQiNKgj3DvTmzNyil1Q==", - "peerDependencies": { - "@trpc/client": ">10.0.0", - "@trpc/server": ">10.0.0", - "electron": ">19.0.0" - } - }, - "node_modules/electron/node_modules/@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==" - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/es-abstract": { - "version": "1.20.4", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz", - "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==", - "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dependencies": { - "has": "^1.0.3" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es6-error": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", - "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", - "optional": true, - "peer": true - }, - "node_modules/esbuild": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.15.tgz", - "integrity": "sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.15.15", - "@esbuild/linux-loong64": "0.15.15", - "esbuild-android-64": "0.15.15", - "esbuild-android-arm64": "0.15.15", - "esbuild-darwin-64": "0.15.15", - "esbuild-darwin-arm64": "0.15.15", - "esbuild-freebsd-64": "0.15.15", - "esbuild-freebsd-arm64": "0.15.15", - "esbuild-linux-32": "0.15.15", - "esbuild-linux-64": "0.15.15", - "esbuild-linux-arm": "0.15.15", - "esbuild-linux-arm64": "0.15.15", - "esbuild-linux-mips64le": "0.15.15", - "esbuild-linux-ppc64le": "0.15.15", - "esbuild-linux-riscv64": "0.15.15", - "esbuild-linux-s390x": "0.15.15", - "esbuild-netbsd-64": "0.15.15", - "esbuild-openbsd-64": "0.15.15", - "esbuild-sunos-64": "0.15.15", - "esbuild-windows-32": "0.15.15", - "esbuild-windows-64": "0.15.15", - "esbuild-windows-arm64": "0.15.15" - } - }, - "node_modules/esbuild-android-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.15.tgz", - "integrity": "sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-android-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.15.tgz", - "integrity": "sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-darwin-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.15.tgz", - "integrity": "sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-darwin-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.15.tgz", - "integrity": "sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-freebsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.15.tgz", - "integrity": "sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-freebsd-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.15.tgz", - "integrity": "sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.15.tgz", - "integrity": "sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.15.tgz", - "integrity": "sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.15.tgz", - "integrity": "sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.15.tgz", - "integrity": "sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-mips64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.15.tgz", - "integrity": "sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-ppc64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.15.tgz", - "integrity": "sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-riscv64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.15.tgz", - "integrity": "sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-linux-s390x": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.15.tgz", - "integrity": "sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-netbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.15.tgz", - "integrity": "sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-openbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.15.tgz", - "integrity": "sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-sunos-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.15.tgz", - "integrity": "sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-windows-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.15.tgz", - "integrity": "sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-windows-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.15.tgz", - "integrity": "sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-windows-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.15.tgz", - "integrity": "sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "8.34.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.34.0.tgz", - "integrity": "sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==", - "dependencies": { - "@eslint/eslintrc": "^1.4.1", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-next": { - "version": "13.1.5", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.1.5.tgz", - "integrity": "sha512-7FqkjkvGCQfvYUiPTFRiRYPR1uI6Ew+4f4mVp16lLSWcaChtWoZxQCZHM5n0yxzKKVmuEg1aM4uvDQfSXSjTww==", - "dependencies": { - "@next/eslint-plugin-next": "13.1.5", - "@rushstack/eslint-patch": "^1.1.3", - "@typescript-eslint/parser": "^5.42.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.31.7", - "eslint-plugin-react-hooks": "^4.5.0" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-config-next/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-config-next/node_modules/eslint-plugin-react": { - "version": "7.31.11", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz", - "integrity": "sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-config-next/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-config-next/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-config-prettier": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", - "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-config-turbo": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/eslint-config-turbo/-/eslint-config-turbo-0.0.4.tgz", - "integrity": "sha512-HErPS/wfWkSdV9Yd2dDkhZt3W2B78Ih/aWPFfaHmCMjzPalh+5KxRRGTf8MOBQLCebcWJX0lP1Zvc1rZIHlXGg==", - "dependencies": { - "eslint-plugin-turbo": "0.0.4" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0" - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "dependencies": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz", - "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==", - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.10.0", - "get-tsconfig": "^4.2.0", - "globby": "^13.1.2", - "is-core-module": "^2.10.0", - "is-glob": "^4.0.3", - "synckit": "^0.8.4" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" - } - }, - "node_modules/eslint-import-resolver-typescript/node_modules/globby": { - "version": "13.1.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", - "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint-import-resolver-typescript/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", - "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz", - "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==", - "dependencies": { - "@babel/runtime": "^7.18.9", - "aria-query": "^4.2.2", - "array-includes": "^3.1.5", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.4.3", - "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.2", - "language-tags": "^1.0.5", - "minimatch": "^3.1.2", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz", - "integrity": "sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==", - "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flatmap": "^1.2.5", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.0.4", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.0", - "object.values": "^1.1.5", - "prop-types": "^15.7.2", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-turbo": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-turbo/-/eslint-plugin-turbo-0.0.4.tgz", - "integrity": "sha512-dfmYE/iPvoJInQq+5E/0mj140y/rYwKtzZkn3uVK8+nvwC5zmWKQ6ehMWrL4bYBkGzSgpOndZM+jOXhPQ2m8Cg==", - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0" - } - }, - "node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", - "dependencies": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "dependencies": { - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - }, - "engines": { - "node": ">= 10.17.0" - }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" - } - }, - "node_modules/extract-zip/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/extsprintf": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", - "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", - "dev": true, - "engines": [ - "node >=0.6.0" - ], - "optional": true - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dependencies": { - "pend": "~1.2.0" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, - "dependencies": { - "minimatch": "^5.0.1" - } - }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" - }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/frontend": { - "resolved": "apps/frontend", - "link": true - }, - "node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.2.0.tgz", - "integrity": "sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==", - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/global-agent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", - "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", - "optional": true, - "peer": true, - "dependencies": { - "boolean": "^3.0.1", - "es6-error": "^4.1.1", - "matcher": "^3.0.0", - "roarr": "^2.15.3", - "semver": "^7.3.2", - "serialize-error": "^7.0.1" - }, - "engines": { - "node": ">=10.0" - } - }, - "node_modules/globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "optional": true, - "peer": true, - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globalyzer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" - }, - "node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=10.19.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "node_modules/graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==", - "dev": true - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/iconv-corefoundation": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", - "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "cli-truncate": "^2.1.0", - "node-addon-api": "^1.6.3" - }, - "engines": { - "node": "^8.11.2 || >=10" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true - }, - "node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", - "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "dependencies": { - "ci-info": "^3.2.0" - }, - "bin": { - "is-ci": "bin.js" - } - }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-what": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.8.tgz", - "integrity": "sha512-yq8gMao5upkPoGEU9LsB2P+K3Kt8Q3fQFCGyNCWOAnJAMzEXVV9drYb0TXr42TTliLLhKIBvulgAXgtLLnwzGA==", - "engines": { - "node": ">=12.13" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/isbinaryfile": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", - "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", - "dev": true, - "engines": { - "node": ">= 8.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/gjtorikian/" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", - "dev": true, - "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, - "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/joycon": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", - "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/js-sdsl": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", - "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "optional": true, - "peer": true - }, - "node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", - "dependencies": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dependencies": { - "language-subtag-registry": "~0.3.2" - } - }, - "node_modules/lazy-val": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", - "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", - "dev": true - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/load-tsconfig": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/load-tsconfig/-/load-tsconfig-0.2.3.tgz", - "integrity": "sha512-iyT2MXws+dc2Wi6o3grCFtGXpeMvHmJqS27sMPGtV2eUu4PeFnG+33I8BlFK1t1NWMjOpcx9bridn5yxLDX2gQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/matcher": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", - "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", - "optional": true, - "peer": true, - "dependencies": { - "escape-string-regexp": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.0.3.tgz", - "integrity": "sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dev": true, - "dependencies": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/morgan/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/morgan/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/morgan/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/node-addon-api": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", - "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", - "dev": true, - "optional": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/plist": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.6.tgz", - "integrity": "sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==", - "dev": true, - "dependencies": { - "base64-js": "^1.5.1", - "xmlbuilder": "^15.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz", - "integrity": "sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/prisma": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/prisma/-/prisma-4.10.1.tgz", - "integrity": "sha512-0jDxgg+DruB1kHVNlcspXQB9au62IFfVg9drkhzXudszHNUAQn0lVuu+T8np0uC2z1nKD5S3qPeCyR8u5YFLnA==", - "devOptional": true, - "hasInstallScript": true, - "dependencies": { - "@prisma/engines": "4.10.1" - }, - "bin": { - "prisma": "build/index.js", - "prisma2": "build/index.js" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/read-config-file": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/read-config-file/-/read-config-file-6.2.0.tgz", - "integrity": "sha512-gx7Pgr5I56JtYz+WuqEbQHj/xWo+5Vwua2jhb1VwM4Wid5PqYmZ4i00ZB0YEGIfkVBsCv9UrjgyqCiQfS/Oosg==", - "dev": true, - "dependencies": { - "dotenv": "^9.0.2", - "dotenv-expand": "^5.1.0", - "js-yaml": "^4.1.0", - "json5": "^2.2.0", - "lazy-val": "^1.0.4" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/read-config-file/node_modules/dotenv": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz", - "integrity": "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/read-config-file/node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/remove-accents": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", - "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==", - "dev": true - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dependencies": { - "lowercase-keys": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/roarr": { - "version": "2.15.4", - "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", - "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", - "optional": true, - "peer": true, - "dependencies": { - "boolean": "^3.0.1", - "detect-node": "^2.0.4", - "globalthis": "^1.0.1", - "json-stringify-safe": "^5.0.1", - "semver-compare": "^1.0.0", - "sprintf-js": "^1.1.2" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/rollup": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.15.0.tgz", - "integrity": "sha512-F9hrCAhnp5/zx/7HYmftvsNBkMfLfk/dXUh73hPSM2E3CRgap65orDNJbLetoiUFwSAk6iHPLvBrZ5iHYvzqsg==", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/sanitize-filename": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", - "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", - "dev": true, - "dependencies": { - "truncate-utf8-bytes": "^1.0.0" - } - }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", - "optional": true, - "peer": true - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/serialize-error": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", - "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", - "optional": true, - "peer": true, - "dependencies": { - "type-fest": "^0.13.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/serialize-error/node_modules/type-fest": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", - "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", - "optional": true, - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/simple-update-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", - "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", - "dev": true, - "dependencies": { - "semver": "~7.0.0" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/simple-update-notifier/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "optional": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "optional": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/sprintf-js": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", - "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", - "optional": true, - "peer": true - }, - "node_modules/stat-mode": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", - "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/sucrase": { - "version": "3.29.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.29.0.tgz", - "integrity": "sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==", - "dev": true, - "dependencies": { - "commander": "^4.0.0", - "glob": "7.1.6", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "ts-interface-checker": "^0.1.9" - }, - "bin": { - "sucrase": "bin/sucrase", - "sucrase-node": "bin/sucrase-node" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/sucrase/node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/sumchecker": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", - "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", - "dependencies": { - "debug": "^4.1.0" - }, - "engines": { - "node": ">= 8.0" - } - }, - "node_modules/superjson": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/superjson/-/superjson-1.12.2.tgz", - "integrity": "sha512-ugvUo9/WmvWOjstornQhsN/sR9mnGtWGYeTxFuqLb4AiT4QdUavjGFRALCPKWWnAiUJ4HTpytj5e0t5HoMRkXg==", - "dependencies": { - "copy-anything": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/synckit": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.4.tgz", - "integrity": "sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==", - "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.4.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "6.1.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz", - "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==", - "dev": true, - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/temp-file": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz", - "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==", - "dev": true, - "dependencies": { - "async-exit-hook": "^2.0.1", - "fs-extra": "^10.0.0" - } - }, - "node_modules/temp-file/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/temp-file/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/temp-file/node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tiny-glob": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", - "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", - "dependencies": { - "globalyzer": "0.1.0", - "globrex": "^0.1.2" - } - }, - "node_modules/tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "dependencies": { - "rimraf": "^3.0.0" - }, - "engines": { - "node": ">=8.17.0" - } - }, - "node_modules/tmp-promise": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz", - "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==", - "dev": true, - "dependencies": { - "tmp": "^0.2.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true, - "bin": { - "tree-kill": "cli.js" - } - }, - "node_modules/truncate-utf8-bytes": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", - "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", - "dev": true, - "dependencies": { - "utf8-byte-length": "^1.0.1" - } - }, - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "dev": true - }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/ts-node-dev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ts-node-dev/-/ts-node-dev-2.0.0.tgz", - "integrity": "sha512-ywMrhCfH6M75yftYvrvNarLEY+SUXtUvU8/0Z6llrHQVBx12GiFk5sStF8UdfE/yfzk9IAq7O5EEbTQsxlBI8w==", - "dev": true, - "dependencies": { - "chokidar": "^3.5.1", - "dynamic-dedupe": "^0.3.0", - "minimist": "^1.2.6", - "mkdirp": "^1.0.4", - "resolve": "^1.0.0", - "rimraf": "^2.6.1", - "source-map-support": "^0.5.12", - "tree-kill": "^1.2.2", - "ts-node": "^10.4.0", - "tsconfig": "^7.0.0" - }, - "bin": { - "ts-node-dev": "lib/bin.js", - "tsnd": "lib/bin.js" - }, - "engines": { - "node": ">=0.8.0" - }, - "peerDependencies": { - "node-notifier": "*", - "typescript": "*" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/ts-node-dev/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/ts-node-dev/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ts-node-dev/node_modules/tsconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz", - "integrity": "sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==", - "dev": true, - "dependencies": { - "@types/strip-bom": "^3.0.0", - "@types/strip-json-comments": "0.0.30", - "strip-bom": "^3.0.0", - "strip-json-comments": "^2.0.0" - } - }, - "node_modules/tsconfig": { - "resolved": "packages/tsconfig", - "link": true - }, - "node_modules/tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" - }, - "node_modules/tsup": { - "version": "5.12.9", - "resolved": "https://registry.npmjs.org/tsup/-/tsup-5.12.9.tgz", - "integrity": "sha512-dUpuouWZYe40lLufo64qEhDpIDsWhRbr2expv5dHEMjwqeKJS2aXA/FPqs1dxO4T6mBojo7rvo3jP9NNzaKyDg==", - "dev": true, - "dependencies": { - "bundle-require": "^3.0.2", - "cac": "^6.7.12", - "chokidar": "^3.5.1", - "debug": "^4.3.1", - "esbuild": "^0.14.25", - "execa": "^5.0.0", - "globby": "^11.0.3", - "joycon": "^3.0.1", - "postcss-load-config": "^3.0.1", - "resolve-from": "^5.0.0", - "rollup": "^2.74.1", - "source-map": "0.8.0-beta.0", - "sucrase": "^3.20.3", - "tree-kill": "^1.2.2" - }, - "bin": { - "tsup": "dist/cli-default.js", - "tsup-node": "dist/cli-node.js" - }, - "peerDependencies": { - "@swc/core": "^1", - "postcss": "^8.4.12", - "typescript": "^4.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "postcss": { - "optional": true - }, - "typescript": { - "optional": true - } - } - }, - "node_modules/tsup/node_modules/@esbuild/linux-loong64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz", - "integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz", - "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/linux-loong64": "0.14.54", - "esbuild-android-64": "0.14.54", - "esbuild-android-arm64": "0.14.54", - "esbuild-darwin-64": "0.14.54", - "esbuild-darwin-arm64": "0.14.54", - "esbuild-freebsd-64": "0.14.54", - "esbuild-freebsd-arm64": "0.14.54", - "esbuild-linux-32": "0.14.54", - "esbuild-linux-64": "0.14.54", - "esbuild-linux-arm": "0.14.54", - "esbuild-linux-arm64": "0.14.54", - "esbuild-linux-mips64le": "0.14.54", - "esbuild-linux-ppc64le": "0.14.54", - "esbuild-linux-riscv64": "0.14.54", - "esbuild-linux-s390x": "0.14.54", - "esbuild-netbsd-64": "0.14.54", - "esbuild-openbsd-64": "0.14.54", - "esbuild-sunos-64": "0.14.54", - "esbuild-windows-32": "0.14.54", - "esbuild-windows-64": "0.14.54", - "esbuild-windows-arm64": "0.14.54" - } - }, - "node_modules/tsup/node_modules/esbuild-android-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz", - "integrity": "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-android-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz", - "integrity": "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-darwin-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", - "integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-darwin-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz", - "integrity": "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-freebsd-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz", - "integrity": "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-freebsd-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz", - "integrity": "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-32": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz", - "integrity": "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz", - "integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-arm": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz", - "integrity": "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz", - "integrity": "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-mips64le": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz", - "integrity": "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-ppc64le": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz", - "integrity": "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-riscv64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz", - "integrity": "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-linux-s390x": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz", - "integrity": "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-netbsd-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz", - "integrity": "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-openbsd-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz", - "integrity": "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-sunos-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz", - "integrity": "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-windows-32": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz", - "integrity": "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-windows-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz", - "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/esbuild-windows-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz", - "integrity": "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/tsup/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tsup/node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/tsup/node_modules/source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dev": true, - "dependencies": { - "whatwg-url": "^7.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, - "node_modules/tsx": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/tsx/-/tsx-3.12.1.tgz", - "integrity": "sha512-Rcg1x+rNe7qwlP8j7kx4VjP/pJo/V57k+17hlrn6a7FuQLNwkaw5W4JF75tYornNVCxkXdSUnqlIT8JY/ttvIw==", - "dev": true, - "dependencies": { - "@esbuild-kit/cjs-loader": "^2.4.0", - "@esbuild-kit/core-utils": "^3.0.0", - "@esbuild-kit/esm-loader": "^2.5.0" - }, - "bin": { - "tsx": "dist/cli.js" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/turbo": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo/-/turbo-1.7.4.tgz", - "integrity": "sha512-8RLedDoUL0kkVKWEZ/RMM70BvKLyDFen06QuKKhYC2XNOfNKqFDqzIdcY/vGick869bNIWalChoy4O07k0HLsA==", - "dev": true, - "hasInstallScript": true, - "bin": { - "turbo": "bin/turbo" - }, - "optionalDependencies": { - "turbo-darwin-64": "1.7.4", - "turbo-darwin-arm64": "1.7.4", - "turbo-linux-64": "1.7.4", - "turbo-linux-arm64": "1.7.4", - "turbo-windows-64": "1.7.4", - "turbo-windows-arm64": "1.7.4" - } - }, - "node_modules/turbo-darwin-64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-darwin-64/-/turbo-darwin-64-1.7.4.tgz", - "integrity": "sha512-ZyYrQlUl8K/mYN1e6R7bEhPPYjMakz0DYMaexkyD7TAijQtWmTSd4a+I7VknOYNEssnUZ/v41GU3gPV1JAzxxQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/turbo-darwin-arm64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.7.4.tgz", - "integrity": "sha512-CKIXg9uqp1a+Yeq/c4U0alPOqvwLUq5SBZf1PGYhGqJsfG0fRBtJfkUjHuBsuJIOGXg8rCmcGSWGIsIF6fqYuw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/turbo-linux-64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-linux-64/-/turbo-linux-64-1.7.4.tgz", - "integrity": "sha512-RIUl4RUFFyzD2T024vL7509Ygwcw+SEa8NOwPfaN6TtJHK7RZV/SBP3fLNVOptG9WRLnOWX3OvsLMbiOqDLLyA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/turbo-linux-arm64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-linux-arm64/-/turbo-linux-arm64-1.7.4.tgz", - "integrity": "sha512-Bg65F0AjYYYxqE6RPf2H5TIGuA/EyWMeGOATHVSZOWAbYcnG3Ly03GZii8AHnUi7ntWBdjwvXf/QbOS1ayNB6A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/turbo-windows-64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-windows-64/-/turbo-windows-64-1.7.4.tgz", - "integrity": "sha512-rTaV50XZ2BRxRHOHqt1UsWfeDmYLbn8UKE6g2D2ED+uW+kmnTvR9s01nmlGWd2sAuWcRYQyQ2V+O09VfKPKcQw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/turbo-windows-arm64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-windows-arm64/-/turbo-windows-arm64-1.7.4.tgz", - "integrity": "sha512-h8sxdKPvHTnWUPtwnYszFMmSO0P/iUUwmYY9n7iYThA71zSao28UeZ0H0Gw75cY3MPjvkjn2C4EBAUGPjuZJLw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "dev": true, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/utf8-byte-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz", - "integrity": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==", - "dev": true - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", - "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", - "dev": true, - "optional": true, - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/vite": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.1.1.tgz", - "integrity": "sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==", - "dependencies": { - "esbuild": "^0.16.14", - "postcss": "^8.4.21", - "resolve": "^1.22.1", - "rollup": "^3.10.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vite-plugin-electron": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/vite-plugin-electron/-/vite-plugin-electron-0.11.1.tgz", - "integrity": "sha512-pi9Wy4KCGjKIRvp7/5VUOT8BYEAJdZrpy3gI+GhGc5vYs2V9yPxLOtfCqNfSTYqH3uM6hYY6MyifFVku3Wg+2A==" - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", - "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", - "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", - "cpu": [ - "loong64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", - "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.16.17", - "@esbuild/android-arm64": "0.16.17", - "@esbuild/android-x64": "0.16.17", - "@esbuild/darwin-arm64": "0.16.17", - "@esbuild/darwin-x64": "0.16.17", - "@esbuild/freebsd-arm64": "0.16.17", - "@esbuild/freebsd-x64": "0.16.17", - "@esbuild/linux-arm": "0.16.17", - "@esbuild/linux-arm64": "0.16.17", - "@esbuild/linux-ia32": "0.16.17", - "@esbuild/linux-loong64": "0.16.17", - "@esbuild/linux-mips64el": "0.16.17", - "@esbuild/linux-ppc64": "0.16.17", - "@esbuild/linux-riscv64": "0.16.17", - "@esbuild/linux-s390x": "0.16.17", - "@esbuild/linux-x64": "0.16.17", - "@esbuild/netbsd-x64": "0.16.17", - "@esbuild/openbsd-x64": "0.16.17", - "@esbuild/sunos-x64": "0.16.17", - "@esbuild/win32-arm64": "0.16.17", - "@esbuild/win32-ia32": "0.16.17", - "@esbuild/win32-x64": "0.16.17" - } - }, - "node_modules/wait-for-server-up": { - "resolved": "packages/wait-for-server-up", - "link": true - }, - "node_modules/web-backend": { - "resolved": "apps/web-backend", - "link": true - }, - "node_modules/webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "node_modules/whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/xmlbuilder": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", - "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", - "dev": true, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", - "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zod": { - "version": "3.20.6", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.20.6.tgz", - "integrity": "sha512-oyu0m54SGCtzh6EClBVqDDlAYRz4jrVtKwQ7ZnsEmMI9HnzuZFj8QFwAY1M5uniIYACdGvv0PBWPF2kO0aNofA==", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - }, - "packages/config": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "eslint-config-next": "latest", - "eslint-config-prettier": "^8.3.0", - "eslint-config-turbo": "latest", - "eslint-plugin-react": "7.28.0" - }, - "devDependencies": { - "typescript": "^4.9.5" - } - }, - "packages/database": { - "version": "1.0.0", - "license": "MIT", - "dependencies": { - "@prisma/client": "^4.10.1" - }, - "devDependencies": { - "config": "*", - "eslint": "^8.12.0", - "prisma": "^4.10.1", - "rimraf": "^3.0.2", - "tsconfig": "*", - "tsup": "^5.11.13", - "tsx": "^3.7.1", - "typescript": "^4.9.5" - } - }, - "packages/test": { - "name": "database-test", - "version": "1.0.0", - "license": "MIT" - }, - "packages/trpc": { - "name": "@codaco/api", - "version": "0.1.0", - "license": "MIT", - "dependencies": { - "@trpc/client": "^10.11.1", - "@trpc/server": "^10.11.1", - "database-test": "*", - "superjson": "1.12.2", - "zod": "^3.20.6" - }, - "devDependencies": { - "eslint": "^8.32.0", - "typescript": "^4.9.5" - } - }, - "packages/tsconfig": { - "version": "0.0.0", - "license": "MIT" - }, - "packages/wait-for-server-up": { - "version": "0.0.0", - "license": "MIT" - } - }, - "dependencies": { - "@babel/runtime": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz", - "integrity": "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==", - "requires": { - "regenerator-runtime": "^0.13.10" - } - }, - "@babel/runtime-corejs3": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz", - "integrity": "sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==", - "requires": { - "core-js-pure": "^3.25.1", - "regenerator-runtime": "^0.13.10" - } - }, - "@codaco/api": { - "version": "file:packages/trpc", - "requires": { - "@trpc/client": "^10.11.1", - "@trpc/server": "^10.11.1", - "database-test": "*", - "eslint": "^8.32.0", - "superjson": "1.12.2", - "typescript": "^4.9.5", - "zod": "^3.20.6" - } - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - } - }, - "@develar/schema-utils": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz", - "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==", - "dev": true, - "requires": { - "ajv": "^6.12.0", - "ajv-keywords": "^3.4.1" - } - }, - "@electron/get": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.2.tgz", - "integrity": "sha512-eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g==", - "requires": { - "debug": "^4.1.1", - "env-paths": "^2.2.0", - "fs-extra": "^8.1.0", - "global-agent": "^3.0.0", - "got": "^11.8.5", - "progress": "^2.0.3", - "semver": "^6.2.0", - "sumchecker": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "@electron/universal": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-1.2.1.tgz", - "integrity": "sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ==", - "dev": true, - "requires": { - "@malept/cross-spawn-promise": "^1.1.0", - "asar": "^3.1.0", - "debug": "^4.3.1", - "dir-compare": "^2.4.0", - "fs-extra": "^9.0.1", - "minimatch": "^3.0.4", - "plist": "^3.0.4" - }, - "dependencies": { - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "@esbuild-kit/cjs-loader": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@esbuild-kit/cjs-loader/-/cjs-loader-2.4.1.tgz", - "integrity": "sha512-lhc/XLith28QdW0HpHZvZKkorWgmCNT7sVelMHDj3HFdTfdqkwEKvT+aXVQtNAmCC39VJhunDkWhONWB7335mg==", - "dev": true, - "requires": { - "@esbuild-kit/core-utils": "^3.0.0", - "get-tsconfig": "^4.2.0" - } - }, - "@esbuild-kit/core-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@esbuild-kit/core-utils/-/core-utils-3.0.0.tgz", - "integrity": "sha512-TXmwH9EFS3DC2sI2YJWJBgHGhlteK0Xyu1VabwetMULfm3oYhbrsWV5yaSr2NTWZIgDGVLHbRf0inxbjXqAcmQ==", - "dev": true, - "requires": { - "esbuild": "~0.15.10", - "source-map-support": "^0.5.21" - } - }, - "@esbuild-kit/esm-loader": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@esbuild-kit/esm-loader/-/esm-loader-2.5.0.tgz", - "integrity": "sha512-ySs0qOsiwj+hsgZM9/MniGdvfa9/WzqfFuIia8/5gSUPeIQIX2/tG91QakxPFOR35VFiwTB7wCiHtiS6dc6SkA==", - "dev": true, - "requires": { - "@esbuild-kit/core-utils": "^3.0.0", - "get-tsconfig": "^4.2.0" - } - }, - "@esbuild/android-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.15.tgz", - "integrity": "sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", - "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", - "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", - "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==", - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", - "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", - "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", - "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", - "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", - "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", - "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.15.tgz", - "integrity": "sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", - "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", - "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", - "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", - "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", - "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", - "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", - "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", - "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", - "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", - "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", - "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", - "optional": true - }, - "@eslint/eslintrc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", - "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@malept/cross-spawn-promise": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", - "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.1" - } - }, - "@malept/flatpak-bundler": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz", - "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "fs-extra": "^9.0.0", - "lodash": "^4.17.15", - "tmp-promise": "^3.0.2" - }, - "dependencies": { - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "@next/eslint-plugin-next": { - "version": "13.1.5", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.5.tgz", - "integrity": "sha512-3kvLTX35bOWOCKU8KY74Ygczc55Qk/kB2TQy0tH7Rti6hzZ6Aij7WQ8zHdIVjmnlD0n/zXWXrIf5y56RKcLQkQ==", - "requires": { - "glob": "7.1.7" - } - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@pkgr/utils": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", - "requires": { - "cross-spawn": "^7.0.3", - "is-glob": "^4.0.3", - "open": "^8.4.0", - "picocolors": "^1.0.0", - "tiny-glob": "^0.2.9", - "tslib": "^2.4.0" - } - }, - "@prisma/client": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-4.10.1.tgz", - "integrity": "sha512-VonXLJZybdt8e5XZH5vnIGCRNnIh6OMX1FS3H/yzMGLT3STj5TJ/OkMcednrvELgk8PK89Vo3aSh51MWNO0axA==", - "requires": { - "@prisma/engines-version": "4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19" - } - }, - "@prisma/engines": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-4.10.1.tgz", - "integrity": "sha512-B3tcTxjx196nuAu1GOTKO9cGPUgTFHYRdkPkTS4m5ptb2cejyBlH9X7GOfSt3xlI7p4zAJDshJP4JJivCg9ouA==", - "devOptional": true - }, - "@prisma/engines-version": { - "version": "4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19.tgz", - "integrity": "sha512-tsjTho7laDhf9EJ9EnDxAPEf7yrigSMDhniXeU4YoWc7azHAs4GPxRi2P9LTFonmHkJLMOLjR77J1oIP8Ife1w==" - }, - "@rushstack/eslint-patch": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", - "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" - }, - "@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - }, - "@swc/core": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.35.tgz", - "integrity": "sha512-KmiBin0XSVzJhzX19zTiCqmLslZ40Cl7zqskJcTDeIrRhfgKdiAsxzYUanJgMJIRjYtl9Kcg1V/Ip2o2wL8v3w==", - "dev": true, - "requires": { - "@swc/core-darwin-arm64": "1.3.35", - "@swc/core-darwin-x64": "1.3.35", - "@swc/core-linux-arm-gnueabihf": "1.3.35", - "@swc/core-linux-arm64-gnu": "1.3.35", - "@swc/core-linux-arm64-musl": "1.3.35", - "@swc/core-linux-x64-gnu": "1.3.35", - "@swc/core-linux-x64-musl": "1.3.35", - "@swc/core-win32-arm64-msvc": "1.3.35", - "@swc/core-win32-ia32-msvc": "1.3.35", - "@swc/core-win32-x64-msvc": "1.3.35" - } - }, - "@swc/core-darwin-arm64": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.35.tgz", - "integrity": "sha512-zQUFkHx4gZpu0uo2IspvPnKsz8bsdXd5bC33xwjtoAI1cpLerDyqo4v2zIahEp+FdKZjyVsLHtfJiQiA1Qka3A==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-darwin-x64": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.35.tgz", - "integrity": "sha512-oOSkSGWtALovaw22lNevKD434OQTPf8X+dVPvPMrJXJpJ34dWDlFWpLntoc+arvKLNZ7LQmTuk8rR1hkrAY7cw==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-linux-arm-gnueabihf": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.35.tgz", - "integrity": "sha512-Yie8k00O6O8BCATS/xeKStquV4OYSskUGRDXBQVDw1FrE23PHaSeHCgg4q6iNZjJzXCOJbaTCKnYoIDn9DMf7A==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-linux-arm64-gnu": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.35.tgz", - "integrity": "sha512-Zlv3WHa/4x2p51HSvjUWXHfSe1Gl2prqImUZJc8NZOlj75BFzVuR0auhQ+LbwvIQ3gaA1LODX9lyS9wXL3yjxA==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-linux-arm64-musl": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.35.tgz", - "integrity": "sha512-u6tCYsrSyZ8U+4jLMA/O82veBfLy2aUpn51WxQaeH7wqZGy9TGSJXoO8vWxARQ6b72vjsnKDJHP4MD8hFwcctg==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-linux-x64-gnu": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.35.tgz", - "integrity": "sha512-Dtxf2IbeH7XlNhP1Qt2/MvUPkpEbn7hhGfpSRs4ot8D3Vf5QEX4S/QtC1OsFWuciiYgHAT1Ybjt4xZic9DSkmA==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-linux-x64-musl": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.35.tgz", - "integrity": "sha512-4XavNJ60GprjpTiESCu5daJUnmErixPAqDitJSMu4TV32LNIE8G00S9pDLXinDTW1rgcGtQdq1NLkNRmwwovtg==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-win32-arm64-msvc": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.35.tgz", - "integrity": "sha512-dNGfKCUSX2M4qVyaS80Lyos0FkXyHRCvrdQ2Y4Hrg3FVokiuw3yY6fLohpUfQ5ws3n2A39dh7jGDeh34+l0sGA==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-win32-ia32-msvc": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.35.tgz", - "integrity": "sha512-ChuPSrDR+JBf7S7dEKPicnG8A3bM0uWPsW2vG+V2wH4iNfNxKVemESHosmYVeEZXqMpomNMvLyeHep1rjRsc0Q==", - "dev": true, - "optional": true, - "peer": true - }, - "@swc/core-win32-x64-msvc": { - "version": "1.3.35", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.35.tgz", - "integrity": "sha512-/RvphT4WfuGfIK84Ha0dovdPrKB1bW/mc+dtdmhv2E3EGkNc5FoueNwYmXWRimxnU7X0X7IkcRhyKB4G5DeAmg==", - "dev": true, - "optional": true, - "peer": true - }, - "@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "requires": { - "defer-to-connect": "^2.0.0" - } - }, - "@tanstack/match-sorter-utils": { - "version": "8.7.6", - "resolved": "https://registry.npmjs.org/@tanstack/match-sorter-utils/-/match-sorter-utils-8.7.6.tgz", - "integrity": "sha512-2AMpRiA6QivHOUiBpQAVxjiHAA68Ei23ZUMNaRJrN6omWiSFLoYrxGcT6BXtuzp0Jw4h6HZCmGGIM/gbwebO2A==", - "dev": true, - "requires": { - "remove-accents": "0.4.2" - } - }, - "@tanstack/query-core": { - "version": "4.24.6", - "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.24.6.tgz", - "integrity": "sha512-Tfru6YTDTCpX7dKVwHp/sosw/dNjEdzrncduUjIkQxn7n7u+74HT2ZrGtwwrU6Orws4x7zp3FKRqBPWVVhpx9w==", - "dev": true - }, - "@tanstack/react-query": { - "version": "4.24.6", - "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.24.6.tgz", - "integrity": "sha512-pbJUVZCS4pcXS0kZiY+mVJ01ude0GrH5OXT2g9whcqSveRG/YVup/XdA9NdRpSMGkP2HxDRxxRNsTXkniWeIIA==", - "dev": true, - "requires": { - "@tanstack/query-core": "4.24.6", - "use-sync-external-store": "^1.2.0" - } - }, - "@tanstack/react-query-devtools": { - "version": "4.24.6", - "resolved": "https://registry.npmjs.org/@tanstack/react-query-devtools/-/react-query-devtools-4.24.6.tgz", - "integrity": "sha512-d8CN4ZTtLkdCNi9x4Hogma0fdhlv7ckknv/RLuV4nbUciUoZEvhg1cI0+vp/1aY4W3jq9vH0BD/eUQKecgY15Q==", - "dev": true, - "requires": { - "@tanstack/match-sorter-utils": "^8.7.0", - "superjson": "^1.10.0", - "use-sync-external-store": "^1.2.0" - } - }, - "@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true - }, - "@trpc/client": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@trpc/client/-/client-10.11.1.tgz", - "integrity": "sha512-6aHY27YomzyUAlKhJE4jJulzDjc6vAKAKoWqAmoYbEEhApvyDrMo52bdYqqsukjxvA/L/uPhjOcPU5OsO+x+pA==", - "requires": {} - }, - "@trpc/react-query": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@trpc/react-query/-/react-query-10.11.1.tgz", - "integrity": "sha512-GqM0idzlQMi6upK/8IOa117UXckJDsRY+UHVkeawtkLi4hWvk82ic+zXRNw5MDYqKCC2CAlp8JIyrKfOuBdXqw==", - "dev": true, - "requires": {} - }, - "@trpc/server": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@trpc/server/-/server-10.11.1.tgz", - "integrity": "sha512-7FnvuaNsSl6HLloh0a297McS4yjhbqg/bw1h/XOAKduNPUQwXNmJf48X1PAsD8ODtO1Rrjz9TeynJD7uCEn0xQ==" - }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz", - "integrity": "sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==", - "dev": true - }, - "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "dev": true, - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "requires": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, - "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/cors": { - "version": "2.8.13", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.13.tgz", - "integrity": "sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/debug": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz", - "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", - "dev": true, - "requires": { - "@types/ms": "*" - } - }, - "@types/express": { - "version": "4.17.17", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz", - "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==", - "dev": true, - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.33", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", - "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", - "dev": true, - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "@types/fs-extra": { - "version": "9.0.13", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz", - "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "optional": true, - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - }, - "@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "requires": { - "@types/node": "*" - } - }, - "@types/mime": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", - "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", - "dev": true - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true, - "optional": true - }, - "@types/morgan": { - "version": "1.9.4", - "resolved": "https://registry.npmjs.org/@types/morgan/-/morgan-1.9.4.tgz", - "integrity": "sha512-cXoc4k+6+YAllH3ZHmx4hf7La1dzUk6keTR4bF4b4Sc0mZxU/zK4wO7l+ZzezXm/jkYj/qC+uYGZrarZdIVvyQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/ms": { - "version": "0.7.31", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz", - "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==", - "dev": true - }, - "@types/node": { - "version": "18.13.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.13.0.tgz", - "integrity": "sha512-gC3TazRzGoOnoKAhUx+Q0t8S9Tzs74z7m0ipwGpSqQrleP14hKxP4/JUeEQcD3W1/aIpnWl8pHowI7WokuZpXg==" - }, - "@types/plist": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.2.tgz", - "integrity": "sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==", - "dev": true, - "optional": true, - "requires": { - "@types/node": "*", - "xmlbuilder": ">=11.0.1" - } - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true - }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "@types/react": { - "version": "18.0.28", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", - "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", - "dev": true, - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-dom": { - "version": "18.0.11", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz", - "integrity": "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "requires": { - "@types/node": "*" - } - }, - "@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", - "dev": true - }, - "@types/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", - "dev": true, - "requires": { - "@types/mime": "*", - "@types/node": "*" - } - }, - "@types/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==", - "dev": true - }, - "@types/strip-json-comments": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz", - "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", - "dev": true - }, - "@types/verror": { - "version": "1.10.6", - "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.6.tgz", - "integrity": "sha512-NNm+gdePAX1VGvPcGZCDKQZKYSiAWigKhKaz5KF94hG6f2s8de9Ow5+7AbXoeKxL8gavZfk4UquSAygOF2duEQ==", - "dev": true, - "optional": true - }, - "@types/yargs": { - "version": "17.0.22", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.22.tgz", - "integrity": "sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", - "dev": true - }, - "@types/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==", - "optional": true, - "peer": true, - "requires": { - "@types/node": "*" - } - }, - "@typescript-eslint/parser": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.49.0.tgz", - "integrity": "sha512-veDlZN9mUhGqU31Qiv2qEp+XrJj5fgZpJ8PW30sHU+j/8/e5ruAhLaVDAeznS7A7i4ucb/s8IozpDtt9NqCkZg==", - "requires": { - "@typescript-eslint/scope-manager": "5.49.0", - "@typescript-eslint/types": "5.49.0", - "@typescript-eslint/typescript-estree": "5.49.0", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.49.0.tgz", - "integrity": "sha512-clpROBOiMIzpbWNxCe1xDK14uPZh35u4QaZO1GddilEzoCLAEz4szb51rBpdgurs5k2YzPtJeTEN3qVbG+LRUQ==", - "requires": { - "@typescript-eslint/types": "5.49.0", - "@typescript-eslint/visitor-keys": "5.49.0" - } - }, - "@typescript-eslint/types": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.49.0.tgz", - "integrity": "sha512-7If46kusG+sSnEpu0yOz2xFv5nRz158nzEXnJFCGVEHWnuzolXKwrH5Bsf9zsNlOQkyZuk0BZKKoJQI+1JPBBg==" - }, - "@typescript-eslint/typescript-estree": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.49.0.tgz", - "integrity": "sha512-PBdx+V7deZT/3GjNYPVQv1Nc0U46dAHbIuOG8AZ3on3vuEKiPDwFE/lG1snN2eUB9IhF7EyF7K1hmTcLztNIsA==", - "requires": { - "@typescript-eslint/types": "5.49.0", - "@typescript-eslint/visitor-keys": "5.49.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.49.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.49.0.tgz", - "integrity": "sha512-v9jBMjpNWyn8B6k/Mjt6VbUS4J1GvUlR4x3Y+ibnP1z7y7V4n0WRz+50DY6+Myj0UaXVSuUlHohO+eZ8IJEnkg==", - "requires": { - "@typescript-eslint/types": "5.49.0", - "eslint-visitor-keys": "^3.3.0" - } - }, - "@vitejs/plugin-react-swc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.1.0.tgz", - "integrity": "sha512-xnDULNrkEbtTtRNnMPp+RsuIuIbk1JJV0xY7irchYyv9JJS4uvmc1EYip+qyrnkcX7TQ9c8vCS3AmkQqADI0Fw==", - "dev": true, - "requires": { - "@swc/core": "^1.3.30" - } - }, - "7zip-bin": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.1.1.tgz", - "integrity": "sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ==", - "dev": true - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "requires": {} - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "requires": { - "debug": "4" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "requires": {} - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "app-builder-bin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-4.0.0.tgz", - "integrity": "sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==", - "dev": true - }, - "app-builder-lib": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-23.6.0.tgz", - "integrity": "sha512-dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA==", - "dev": true, - "requires": { - "@develar/schema-utils": "~2.6.5", - "@electron/universal": "1.2.1", - "@malept/flatpak-bundler": "^0.4.0", - "7zip-bin": "~5.1.1", - "async-exit-hook": "^2.0.1", - "bluebird-lst": "^1.0.9", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chromium-pickle-js": "^0.2.0", - "debug": "^4.3.4", - "ejs": "^3.1.7", - "electron-osx-sign": "^0.6.0", - "electron-publish": "23.6.0", - "form-data": "^4.0.0", - "fs-extra": "^10.1.0", - "hosted-git-info": "^4.1.0", - "is-ci": "^3.0.0", - "isbinaryfile": "^4.0.10", - "js-yaml": "^4.1.0", - "lazy-val": "^1.0.5", - "minimatch": "^3.1.2", - "read-config-file": "6.2.0", - "sanitize-filename": "^1.6.3", - "semver": "^7.3.7", - "tar": "^6.1.11", - "temp-file": "^3.4.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", - "requires": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" - } - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" - } - }, - "asar": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/asar/-/asar-3.2.0.tgz", - "integrity": "sha512-COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg==", - "dev": true, - "requires": { - "@types/glob": "^7.1.1", - "chromium-pickle-js": "^0.2.0", - "commander": "^5.0.0", - "glob": "^7.1.6", - "minimatch": "^3.0.4" - }, - "dependencies": { - "commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", - "dev": true, - "optional": true - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" - }, - "astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", - "dev": true, - "optional": true - }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "dev": true - }, - "async-exit-hook": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz", - "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", - "dev": true - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true - }, - "axe-core": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.5.2.tgz", - "integrity": "sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA==" - }, - "axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true - }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "dev": true, - "requires": { - "safe-buffer": "5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "bluebird-lst": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/bluebird-lst/-/bluebird-lst-1.0.9.tgz", - "integrity": "sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==", - "dev": true, - "requires": { - "bluebird": "^3.5.5" - } - }, - "body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "boolean": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", - "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", - "optional": true, - "peer": true - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "optional": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dev": true, - "requires": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true - }, - "buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - }, - "buffer-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", - "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==", - "dev": true - }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", - "dev": true - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "builder-util": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-23.6.0.tgz", - "integrity": "sha512-QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ==", - "dev": true, - "requires": { - "@types/debug": "^4.1.6", - "@types/fs-extra": "^9.0.11", - "7zip-bin": "~5.1.1", - "app-builder-bin": "4.0.0", - "bluebird-lst": "^1.0.9", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "cross-spawn": "^7.0.3", - "debug": "^4.3.4", - "fs-extra": "^10.0.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-ci": "^3.0.0", - "js-yaml": "^4.1.0", - "source-map-support": "^0.5.19", - "stat-mode": "^1.0.0", - "temp-file": "^3.4.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "builder-util-runtime": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz", - "integrity": "sha512-azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw==", - "dev": true, - "requires": { - "debug": "^4.3.4", - "sax": "^1.2.4" - } - }, - "bundle-require": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bundle-require/-/bundle-require-3.1.2.tgz", - "integrity": "sha512-Of6l6JBAxiyQ5axFxUM6dYeP/W7X2Sozeo/4EYB9sJhL+dqL7TKjg+shwxp6jlu/6ZSERfsYtIpSJ1/x3XkAEA==", - "dev": true, - "requires": { - "load-tsconfig": "^0.2.0" - } - }, - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, - "cac": { - "version": "6.7.14", - "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", - "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", - "dev": true - }, - "cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - }, - "cacheable-request": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", - "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "requires": { - "pump": "^3.0.0" - } - } - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "dev": true - }, - "chromium-pickle-js": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", - "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==", - "dev": true - }, - "ci-info": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", - "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", - "dev": true - }, - "cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", - "dev": true, - "optional": true, - "requires": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" - } - }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - } - }, - "clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==", - "dev": true - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true - }, - "compare-version": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", - "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "config": { - "version": "file:packages/config", - "requires": { - "eslint-config-next": "latest", - "eslint-config-prettier": "^8.3.0", - "eslint-config-turbo": "latest", - "eslint-plugin-react": "7.28.0", - "typescript": "^4.9.5" - } - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "requires": { - "safe-buffer": "5.2.1" - } - }, - "content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "copy-anything": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.3.tgz", - "integrity": "sha512-fpW2W/BqEzqPp29QS+MwwfisHCQZtiduTe/m8idFo0xbti9fIZ2WVhAsCv4ggFVH3AgCkVdpoOCtQC6gBrdhjw==", - "requires": { - "is-what": "^4.1.8" - } - }, - "core-js-pure": { - "version": "3.26.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz", - "integrity": "sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==", - "dev": true, - "optional": true - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "crc": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", - "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", - "dev": true, - "optional": true, - "requires": { - "buffer": "^5.1.0" - } - }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==", - "dev": true - }, - "damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" - }, - "database": { - "version": "file:packages/database", - "requires": { - "@prisma/client": "^4.10.1", - "config": "*", - "eslint": "^8.12.0", - "prisma": "^4.10.1", - "rimraf": "^3.0.2", - "tsconfig": "*", - "tsup": "^5.11.13", - "tsx": "^3.7.1", - "typescript": "^4.9.5" - } - }, - "database-test": { - "version": "file:packages/test" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - } - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - }, - "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "optional": true, - "peer": true - }, - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - }, - "dir-compare": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-2.4.0.tgz", - "integrity": "sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA==", - "dev": true, - "requires": { - "buffer-equal": "1.0.0", - "colors": "1.0.3", - "commander": "2.9.0", - "minimatch": "3.0.4" - }, - "dependencies": { - "commander": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "integrity": "sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==", - "dev": true, - "requires": { - "graceful-readlink": ">= 1.0.0" - } - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "requires": { - "path-type": "^4.0.0" - } - }, - "dmg-builder": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-23.6.0.tgz", - "integrity": "sha512-jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA==", - "dev": true, - "requires": { - "app-builder-lib": "23.6.0", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "dmg-license": "^1.0.11", - "fs-extra": "^10.0.0", - "iconv-lite": "^0.6.2", - "js-yaml": "^4.1.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "dmg-license": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz", - "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==", - "dev": true, - "optional": true, - "requires": { - "@types/plist": "^3.0.1", - "@types/verror": "^1.10.3", - "ajv": "^6.10.0", - "crc": "^3.8.0", - "iconv-corefoundation": "^1.1.7", - "plist": "^3.0.4", - "smart-buffer": "^4.0.2", - "verror": "^1.10.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "requires": { - "esutils": "^2.0.2" - } - }, - "dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==" - }, - "dotenv-expand": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", - "dev": true - }, - "dynamic-dedupe": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz", - "integrity": "sha512-ssuANeD+z97meYOqd50e04Ze5qp4bPqo8cCkI4TRjZkzAUgIDTrXV1R8QCdINpiI+hw14+rYazvTRdQrz0/rFQ==", - "dev": true, - "requires": { - "xtend": "^4.0.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "ejs": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", - "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", - "dev": true, - "requires": { - "jake": "^10.8.5" - } - }, - "electron": { - "version": "23.0.0", - "resolved": "https://registry.npmjs.org/electron/-/electron-23.0.0.tgz", - "integrity": "sha512-S6hVtTAjauMiiWP9sBVR5RpcUC464cNZ06I2EMUjeZBq+KooS6tLmNsfw0zLpAXDp1qosjlBP3v71NTZ3gd9iA==", - "requires": { - "@electron/get": "^2.0.0", - "@types/node": "^16.11.26", - "extract-zip": "^2.0.1" - }, - "dependencies": { - "@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==" - } - } - }, - "electron-backend": { - "version": "file:apps/electron-backend", - "requires": { - "@codaco/api": "*", - "database": "*", - "database-test": "*", - "electron": "^23.0.0", - "electron-trpc": "^0.4.1", - "typescript": "^4.9.5", - "vite": "^4.1.1", - "vite-plugin-electron": "^0.11.1", - "wait-for-server-up": "*" - } - }, - "electron-builder": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-23.6.0.tgz", - "integrity": "sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw==", - "dev": true, - "requires": { - "@types/yargs": "^17.0.1", - "app-builder-lib": "23.6.0", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "dmg-builder": "23.6.0", - "fs-extra": "^10.0.0", - "is-ci": "^3.0.0", - "lazy-val": "^1.0.5", - "read-config-file": "6.2.0", - "simple-update-notifier": "^1.0.7", - "yargs": "^17.5.1" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "electron-osx-sign": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.6.0.tgz", - "integrity": "sha512-+hiIEb2Xxk6eDKJ2FFlpofCnemCbjbT5jz+BKGpVBrRNT3kWTGs4DfNX6IzGwgi33hUcXF+kFs9JW+r6Wc1LRg==", - "dev": true, - "requires": { - "bluebird": "^3.5.0", - "compare-version": "^0.1.2", - "debug": "^2.6.8", - "isbinaryfile": "^3.0.2", - "minimist": "^1.2.0", - "plist": "^3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "isbinaryfile": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", - "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", - "dev": true, - "requires": { - "buffer-alloc": "^1.2.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } - } - }, - "electron-packager": { - "version": "file:apps/electron-packager", - "requires": { - "electron-builder": "^23.6.0" - } - }, - "electron-publish": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-23.6.0.tgz", - "integrity": "sha512-jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg==", - "dev": true, - "requires": { - "@types/fs-extra": "^9.0.11", - "builder-util": "23.6.0", - "builder-util-runtime": "9.1.1", - "chalk": "^4.1.1", - "fs-extra": "^10.0.0", - "lazy-val": "^1.0.5", - "mime": "^2.5.2" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "dev": true - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "electron-trpc": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/electron-trpc/-/electron-trpc-0.4.1.tgz", - "integrity": "sha512-NmUbz44M+ZEFTwVDzbTzYtsrY22LtsTRpm4NU/9fIcjpzCkfar1BZrLgTpZf+wHnic+EQiNKgj3DvTmzNyil1Q==", - "requires": {} - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - }, - "es-abstract": { - "version": "1.20.4", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz", - "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==", - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" - } - }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "requires": { - "has": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es6-error": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", - "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", - "optional": true, - "peer": true - }, - "esbuild": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.15.tgz", - "integrity": "sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.15.15", - "@esbuild/linux-loong64": "0.15.15", - "esbuild-android-64": "0.15.15", - "esbuild-android-arm64": "0.15.15", - "esbuild-darwin-64": "0.15.15", - "esbuild-darwin-arm64": "0.15.15", - "esbuild-freebsd-64": "0.15.15", - "esbuild-freebsd-arm64": "0.15.15", - "esbuild-linux-32": "0.15.15", - "esbuild-linux-64": "0.15.15", - "esbuild-linux-arm": "0.15.15", - "esbuild-linux-arm64": "0.15.15", - "esbuild-linux-mips64le": "0.15.15", - "esbuild-linux-ppc64le": "0.15.15", - "esbuild-linux-riscv64": "0.15.15", - "esbuild-linux-s390x": "0.15.15", - "esbuild-netbsd-64": "0.15.15", - "esbuild-openbsd-64": "0.15.15", - "esbuild-sunos-64": "0.15.15", - "esbuild-windows-32": "0.15.15", - "esbuild-windows-64": "0.15.15", - "esbuild-windows-arm64": "0.15.15" - } - }, - "esbuild-android-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.15.tgz", - "integrity": "sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==", - "dev": true, - "optional": true - }, - "esbuild-android-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.15.tgz", - "integrity": "sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==", - "dev": true, - "optional": true - }, - "esbuild-darwin-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.15.tgz", - "integrity": "sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==", - "dev": true, - "optional": true - }, - "esbuild-darwin-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.15.tgz", - "integrity": "sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.15.tgz", - "integrity": "sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.15.tgz", - "integrity": "sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==", - "dev": true, - "optional": true - }, - "esbuild-linux-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.15.tgz", - "integrity": "sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==", - "dev": true, - "optional": true - }, - "esbuild-linux-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.15.tgz", - "integrity": "sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.15.tgz", - "integrity": "sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.15.tgz", - "integrity": "sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==", - "dev": true, - "optional": true - }, - "esbuild-linux-mips64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.15.tgz", - "integrity": "sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==", - "dev": true, - "optional": true - }, - "esbuild-linux-ppc64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.15.tgz", - "integrity": "sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==", - "dev": true, - "optional": true - }, - "esbuild-linux-riscv64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.15.tgz", - "integrity": "sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==", - "dev": true, - "optional": true - }, - "esbuild-linux-s390x": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.15.tgz", - "integrity": "sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==", - "dev": true, - "optional": true - }, - "esbuild-netbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.15.tgz", - "integrity": "sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==", - "dev": true, - "optional": true - }, - "esbuild-openbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.15.tgz", - "integrity": "sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==", - "dev": true, - "optional": true - }, - "esbuild-sunos-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.15.tgz", - "integrity": "sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==", - "dev": true, - "optional": true - }, - "esbuild-windows-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.15.tgz", - "integrity": "sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==", - "dev": true, - "optional": true - }, - "esbuild-windows-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.15.tgz", - "integrity": "sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==", - "dev": true, - "optional": true - }, - "esbuild-windows-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.15.tgz", - "integrity": "sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==", - "dev": true, - "optional": true - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "eslint": { - "version": "8.34.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.34.0.tgz", - "integrity": "sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==", - "requires": { - "@eslint/eslintrc": "^1.4.1", - "@humanwhocodes/config-array": "^0.11.8", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - } - }, - "eslint-config-next": { - "version": "13.1.5", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.1.5.tgz", - "integrity": "sha512-7FqkjkvGCQfvYUiPTFRiRYPR1uI6Ew+4f4mVp16lLSWcaChtWoZxQCZHM5n0yxzKKVmuEg1aM4uvDQfSXSjTww==", - "requires": { - "@next/eslint-plugin-next": "13.1.5", - "@rushstack/eslint-patch": "^1.1.3", - "@typescript-eslint/parser": "^5.42.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.31.7", - "eslint-plugin-react-hooks": "^4.5.0" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "eslint-plugin-react": { - "version": "7.31.11", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz", - "integrity": "sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==", - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - } - }, - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "eslint-config-prettier": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", - "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", - "requires": {} - }, - "eslint-config-turbo": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/eslint-config-turbo/-/eslint-config-turbo-0.0.4.tgz", - "integrity": "sha512-HErPS/wfWkSdV9Yd2dDkhZt3W2B78Ih/aWPFfaHmCMjzPalh+5KxRRGTf8MOBQLCebcWJX0lP1Zvc1rZIHlXGg==", - "requires": { - "eslint-plugin-turbo": "0.0.4" - } - }, - "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "requires": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-import-resolver-typescript": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz", - "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==", - "requires": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.10.0", - "get-tsconfig": "^4.2.0", - "globby": "^13.1.2", - "is-core-module": "^2.10.0", - "is-glob": "^4.0.3", - "synckit": "^0.8.4" - }, - "dependencies": { - "globby": { - "version": "13.1.3", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz", - "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==", - "requires": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" - } - }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - } - }, - "eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", - "requires": { - "debug": "^3.2.7" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "eslint-plugin-jsx-a11y": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz", - "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==", - "requires": { - "@babel/runtime": "^7.18.9", - "aria-query": "^4.2.2", - "array-includes": "^3.1.5", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.4.3", - "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.2", - "language-tags": "^1.0.5", - "minimatch": "^3.1.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "eslint-plugin-react": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz", - "integrity": "sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==", - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flatmap": "^1.2.5", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.0.4", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.0", - "object.values": "^1.1.5", - "prop-types": "^15.7.2", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.6" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "requires": {} - }, - "eslint-plugin-turbo": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-turbo/-/eslint-plugin-turbo-0.0.4.tgz", - "integrity": "sha512-dfmYE/iPvoJInQq+5E/0mj140y/rYwKtzZkn3uVK8+nvwC5zmWKQ6ehMWrL4bYBkGzSgpOndZM+jOXhPQ2m8Cg==", - "requires": {} - }, - "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "requires": { - "eslint-visitor-keys": "^2.0.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - } - } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==" - }, - "espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", - "requires": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - } - }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "extract-zip": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", - "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", - "requires": { - "@types/yauzl": "^2.9.1", - "debug": "^4.1.1", - "get-stream": "^5.1.0", - "yauzl": "^2.10.0" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "requires": { - "pump": "^3.0.0" - } - } - } - }, - "extsprintf": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz", - "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==", - "dev": true, - "optional": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "requires": { - "reusify": "^1.0.4" - } - }, - "fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "requires": { - "pend": "~1.2.0" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "requires": { - "flat-cache": "^3.0.4" - } - }, - "filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, - "requires": { - "minimatch": "^5.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - }, - "frontend": { - "version": "file:apps/frontend", - "requires": { - "@tanstack/react-query": "^4.24.6", - "@tanstack/react-query-devtools": "^4.24.6", - "@trpc/client": "^10.11.1", - "@trpc/react-query": "^10.11.1", - "@trpc/server": "^10.11.1", - "@types/react": "^18.0.27", - "@types/react-dom": "^18.0.10", - "@vitejs/plugin-react-swc": "^3.0.0", - "electron-trpc": "^0.4.1", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "superjson": "^1.12.2", - "typescript": "^4.9.3", - "vite": "^4.1.0" - } - }, - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "requires": { - "minipass": "^3.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - } - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "get-tsconfig": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.2.0.tgz", - "integrity": "sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==" - }, - "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "requires": { - "is-glob": "^4.0.3" - } - }, - "global-agent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", - "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", - "optional": true, - "peer": true, - "requires": { - "boolean": "^3.0.1", - "es6-error": "^4.1.1", - "matcher": "^3.0.0", - "roarr": "^2.15.3", - "semver": "^7.3.2", - "serialize-error": "^7.0.1" - } - }, - "globals": { - "version": "13.20.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", - "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", - "requires": { - "type-fest": "^0.20.2" - } - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "optional": true, - "peer": true, - "requires": { - "define-properties": "^1.1.3" - } - }, - "globalyzer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" - }, - "got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "requires": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==", - "dev": true - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "requires": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - } - }, - "http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "dev": true, - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true - }, - "iconv-corefoundation": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz", - "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==", - "dev": true, - "optional": true, - "requires": { - "cli-truncate": "^2.1.0", - "node-addon-api": "^1.6.3" - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "optional": true - }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - }, - "is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", - "dev": true, - "requires": { - "ci-info": "^3.2.0" - } - }, - "is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-what": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.8.tgz", - "integrity": "sha512-yq8gMao5upkPoGEU9LsB2P+K3Kt8Q3fQFCGyNCWOAnJAMzEXVV9drYb0TXr42TTliLLhKIBvulgAXgtLLnwzGA==" - }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "requires": { - "is-docker": "^2.0.0" - } - }, - "isbinaryfile": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", - "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", - "dev": true, - "requires": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - } - }, - "joycon": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", - "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", - "dev": true - }, - "js-sdsl": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", - "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==" - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "requires": { - "argparse": "^2.0.1" - } - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", - "optional": true, - "peer": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsx-ast-utils": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", - "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", - "requires": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.3" - } - }, - "keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "requires": { - "json-buffer": "3.0.1" - } - }, - "language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" - }, - "language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "requires": { - "language-subtag-registry": "~0.3.2" - } - }, - "lazy-val": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz", - "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==", - "dev": true - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", - "dev": true - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "load-tsconfig": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/load-tsconfig/-/load-tsconfig-0.2.3.tgz", - "integrity": "sha512-iyT2MXws+dc2Wi6o3grCFtGXpeMvHmJqS27sMPGtV2eUu4PeFnG+33I8BlFK1t1NWMjOpcx9bridn5yxLDX2gQ==", - "dev": true - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", - "dev": true - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "requires": { - "yallist": "^4.0.0" - } - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "matcher": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", - "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", - "optional": true, - "peer": true, - "requires": { - "escape-string-regexp": "^4.0.0" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { - "mime-db": "1.52.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" - }, - "minipass": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.0.3.tgz", - "integrity": "sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw==", - "dev": true - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, - "requires": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "dependencies": { - "minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - } - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "morgan": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz", - "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==", - "dev": true, - "requires": { - "basic-auth": "~2.0.1", - "debug": "2.6.9", - "depd": "~2.0.0", - "on-finished": "~2.3.0", - "on-headers": "~1.0.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - } - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "requires": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - }, - "node-addon-api": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", - "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", - "dev": true, - "optional": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - } - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - }, - "object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "requires": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "requires": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - } - }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "requires": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - } - }, - "p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "requires": { - "p-limit": "^3.0.2" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "requires": { - "callsites": "^3.0.0" - } - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - }, - "pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - "dev": true - }, - "plist": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.6.tgz", - "integrity": "sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==", - "dev": true, - "requires": { - "base64-js": "^1.5.1", - "xmlbuilder": "^15.1.1" - } - }, - "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dev": true, - "requires": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - } - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - }, - "prettier": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz", - "integrity": "sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==", - "dev": true - }, - "prisma": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/prisma/-/prisma-4.10.1.tgz", - "integrity": "sha512-0jDxgg+DruB1kHVNlcspXQB9au62IFfVg9drkhzXudszHNUAQn0lVuu+T8np0uC2z1nKD5S3qPeCyR8u5YFLnA==", - "devOptional": true, - "requires": { - "@prisma/engines": "4.10.1" - } - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - }, - "prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "requires": { - "side-channel": "^1.0.4" - } - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - }, - "raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "requires": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - } - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "read-config-file": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/read-config-file/-/read-config-file-6.2.0.tgz", - "integrity": "sha512-gx7Pgr5I56JtYz+WuqEbQHj/xWo+5Vwua2jhb1VwM4Wid5PqYmZ4i00ZB0YEGIfkVBsCv9UrjgyqCiQfS/Oosg==", - "dev": true, - "requires": { - "dotenv": "^9.0.2", - "dotenv-expand": "^5.1.0", - "js-yaml": "^4.1.0", - "json5": "^2.2.0", - "lazy-val": "^1.0.4" - }, - "dependencies": { - "dotenv": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz", - "integrity": "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==", - "dev": true - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - } - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "requires": { - "picomatch": "^2.2.1" - } - }, - "regenerator-runtime": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", - "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - } - }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - }, - "remove-accents": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", - "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==", - "dev": true - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "requires": { - "lowercase-keys": "^2.0.0" - } - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - }, - "roarr": { - "version": "2.15.4", - "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", - "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", - "optional": true, - "peer": true, - "requires": { - "boolean": "^3.0.1", - "detect-node": "^2.0.4", - "globalthis": "^1.0.1", - "json-stringify-safe": "^5.0.1", - "semver-compare": "^1.0.0", - "sprintf-js": "^1.1.2" - } - }, - "rollup": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.15.0.tgz", - "integrity": "sha512-F9hrCAhnp5/zx/7HYmftvsNBkMfLfk/dXUh73hPSM2E3CRgap65orDNJbLetoiUFwSAk6iHPLvBrZ5iHYvzqsg==", - "requires": { - "fsevents": "~2.3.2" - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sanitize-filename": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz", - "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==", - "dev": true, - "requires": { - "truncate-utf8-bytes": "^1.0.0" - } - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "requires": { - "lru-cache": "^6.0.0" - } - }, - "semver-compare": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", - "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", - "optional": true, - "peer": true - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - } - }, - "serialize-error": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", - "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", - "optional": true, - "peer": true, - "requires": { - "type-fest": "^0.13.1" - }, - "dependencies": { - "type-fest": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", - "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", - "optional": true, - "peer": true - } - } - }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "simple-update-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", - "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", - "dev": true, - "requires": { - "semver": "~7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true - } - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", - "dev": true, - "optional": true, - "requires": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - } - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "optional": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "sprintf-js": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", - "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", - "optional": true, - "peer": true - }, - "stat-mode": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz", - "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==", - "dev": true - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - } - } - }, - "string.prototype.matchall": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", - "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4" - } - }, - "string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - }, - "sucrase": { - "version": "3.29.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.29.0.tgz", - "integrity": "sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==", - "dev": true, - "requires": { - "commander": "^4.0.0", - "glob": "7.1.6", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "ts-interface-checker": "^0.1.9" - }, - "dependencies": { - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, - "sumchecker": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", - "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", - "requires": { - "debug": "^4.1.0" - } - }, - "superjson": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/superjson/-/superjson-1.12.2.tgz", - "integrity": "sha512-ugvUo9/WmvWOjstornQhsN/sR9mnGtWGYeTxFuqLb4AiT4QdUavjGFRALCPKWWnAiUJ4HTpytj5e0t5HoMRkXg==", - "requires": { - "copy-anything": "^3.0.2" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, - "synckit": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.4.tgz", - "integrity": "sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==", - "requires": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.4.0" - } - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - }, - "tar": { - "version": "6.1.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz", - "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==", - "dev": true, - "requires": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - } - }, - "temp-file": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz", - "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==", - "dev": true, - "requires": { - "async-exit-hook": "^2.0.1", - "fs-extra": "^10.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } - }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true - } - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - }, - "thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "requires": { - "any-promise": "^1.0.0" - } - }, - "thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "requires": { - "thenify": ">= 3.1.0 < 4" - } - }, - "tiny-glob": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", - "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", - "requires": { - "globalyzer": "0.1.0", - "globrex": "^0.1.2" - } - }, - "tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", - "dev": true, - "requires": { - "rimraf": "^3.0.0" - } - }, - "tmp-promise": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz", - "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==", - "dev": true, - "requires": { - "tmp": "^0.2.0" - } - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - } - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "tree-kill": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", - "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true - }, - "truncate-utf8-bytes": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", - "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==", - "dev": true, - "requires": { - "utf8-byte-length": "^1.0.1" - } - }, - "ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "dev": true - }, - "ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - } - }, - "ts-node-dev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ts-node-dev/-/ts-node-dev-2.0.0.tgz", - "integrity": "sha512-ywMrhCfH6M75yftYvrvNarLEY+SUXtUvU8/0Z6llrHQVBx12GiFk5sStF8UdfE/yfzk9IAq7O5EEbTQsxlBI8w==", - "dev": true, - "requires": { - "chokidar": "^3.5.1", - "dynamic-dedupe": "^0.3.0", - "minimist": "^1.2.6", - "mkdirp": "^1.0.4", - "resolve": "^1.0.0", - "rimraf": "^2.6.1", - "source-map-support": "^0.5.12", - "tree-kill": "^1.2.2", - "ts-node": "^10.4.0", - "tsconfig": "^7.0.0" - }, - "dependencies": { - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true - }, - "tsconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz", - "integrity": "sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==", - "dev": true, - "requires": { - "@types/strip-bom": "^3.0.0", - "@types/strip-json-comments": "0.0.30", - "strip-bom": "^3.0.0", - "strip-json-comments": "^2.0.0" - } - } - } - }, - "tsconfig": { - "version": "file:packages/tsconfig" - }, - "tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "tslib": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" - }, - "tsup": { - "version": "5.12.9", - "resolved": "https://registry.npmjs.org/tsup/-/tsup-5.12.9.tgz", - "integrity": "sha512-dUpuouWZYe40lLufo64qEhDpIDsWhRbr2expv5dHEMjwqeKJS2aXA/FPqs1dxO4T6mBojo7rvo3jP9NNzaKyDg==", - "dev": true, - "requires": { - "bundle-require": "^3.0.2", - "cac": "^6.7.12", - "chokidar": "^3.5.1", - "debug": "^4.3.1", - "esbuild": "^0.14.25", - "execa": "^5.0.0", - "globby": "^11.0.3", - "joycon": "^3.0.1", - "postcss-load-config": "^3.0.1", - "resolve-from": "^5.0.0", - "rollup": "^2.74.1", - "source-map": "0.8.0-beta.0", - "sucrase": "^3.20.3", - "tree-kill": "^1.2.2" - }, - "dependencies": { - "@esbuild/linux-loong64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz", - "integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==", - "dev": true, - "optional": true - }, - "esbuild": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz", - "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", - "dev": true, - "requires": { - "@esbuild/linux-loong64": "0.14.54", - "esbuild-android-64": "0.14.54", - "esbuild-android-arm64": "0.14.54", - "esbuild-darwin-64": "0.14.54", - "esbuild-darwin-arm64": "0.14.54", - "esbuild-freebsd-64": "0.14.54", - "esbuild-freebsd-arm64": "0.14.54", - "esbuild-linux-32": "0.14.54", - "esbuild-linux-64": "0.14.54", - "esbuild-linux-arm": "0.14.54", - "esbuild-linux-arm64": "0.14.54", - "esbuild-linux-mips64le": "0.14.54", - "esbuild-linux-ppc64le": "0.14.54", - "esbuild-linux-riscv64": "0.14.54", - "esbuild-linux-s390x": "0.14.54", - "esbuild-netbsd-64": "0.14.54", - "esbuild-openbsd-64": "0.14.54", - "esbuild-sunos-64": "0.14.54", - "esbuild-windows-32": "0.14.54", - "esbuild-windows-64": "0.14.54", - "esbuild-windows-arm64": "0.14.54" - } - }, - "esbuild-android-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz", - "integrity": "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==", - "dev": true, - "optional": true - }, - "esbuild-android-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz", - "integrity": "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==", - "dev": true, - "optional": true - }, - "esbuild-darwin-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", - "integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==", - "dev": true, - "optional": true - }, - "esbuild-darwin-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz", - "integrity": "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz", - "integrity": "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==", - "dev": true, - "optional": true - }, - "esbuild-freebsd-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz", - "integrity": "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==", - "dev": true, - "optional": true - }, - "esbuild-linux-32": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz", - "integrity": "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==", - "dev": true, - "optional": true - }, - "esbuild-linux-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz", - "integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz", - "integrity": "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==", - "dev": true, - "optional": true - }, - "esbuild-linux-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz", - "integrity": "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==", - "dev": true, - "optional": true - }, - "esbuild-linux-mips64le": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz", - "integrity": "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==", - "dev": true, - "optional": true - }, - "esbuild-linux-ppc64le": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz", - "integrity": "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==", - "dev": true, - "optional": true - }, - "esbuild-linux-riscv64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz", - "integrity": "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==", - "dev": true, - "optional": true - }, - "esbuild-linux-s390x": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz", - "integrity": "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==", - "dev": true, - "optional": true - }, - "esbuild-netbsd-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz", - "integrity": "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==", - "dev": true, - "optional": true - }, - "esbuild-openbsd-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz", - "integrity": "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==", - "dev": true, - "optional": true - }, - "esbuild-sunos-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz", - "integrity": "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==", - "dev": true, - "optional": true - }, - "esbuild-windows-32": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz", - "integrity": "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==", - "dev": true, - "optional": true - }, - "esbuild-windows-64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz", - "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==", - "dev": true, - "optional": true - }, - "esbuild-windows-arm64": { - "version": "0.14.54", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz", - "integrity": "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==", - "dev": true, - "optional": true - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "dev": true, - "requires": { - "fsevents": "~2.3.2" - } - }, - "source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dev": true, - "requires": { - "whatwg-url": "^7.0.0" - } - } - } - }, - "tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "tsx": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/tsx/-/tsx-3.12.1.tgz", - "integrity": "sha512-Rcg1x+rNe7qwlP8j7kx4VjP/pJo/V57k+17hlrn6a7FuQLNwkaw5W4JF75tYornNVCxkXdSUnqlIT8JY/ttvIw==", - "dev": true, - "requires": { - "@esbuild-kit/cjs-loader": "^2.4.0", - "@esbuild-kit/core-utils": "^3.0.0", - "@esbuild-kit/esm-loader": "^2.5.0", - "fsevents": "~2.3.2" - } - }, - "turbo": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo/-/turbo-1.7.4.tgz", - "integrity": "sha512-8RLedDoUL0kkVKWEZ/RMM70BvKLyDFen06QuKKhYC2XNOfNKqFDqzIdcY/vGick869bNIWalChoy4O07k0HLsA==", - "dev": true, - "requires": { - "turbo-darwin-64": "1.7.4", - "turbo-darwin-arm64": "1.7.4", - "turbo-linux-64": "1.7.4", - "turbo-linux-arm64": "1.7.4", - "turbo-windows-64": "1.7.4", - "turbo-windows-arm64": "1.7.4" - } - }, - "turbo-darwin-64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-darwin-64/-/turbo-darwin-64-1.7.4.tgz", - "integrity": "sha512-ZyYrQlUl8K/mYN1e6R7bEhPPYjMakz0DYMaexkyD7TAijQtWmTSd4a+I7VknOYNEssnUZ/v41GU3gPV1JAzxxQ==", - "dev": true, - "optional": true - }, - "turbo-darwin-arm64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.7.4.tgz", - "integrity": "sha512-CKIXg9uqp1a+Yeq/c4U0alPOqvwLUq5SBZf1PGYhGqJsfG0fRBtJfkUjHuBsuJIOGXg8rCmcGSWGIsIF6fqYuw==", - "dev": true, - "optional": true - }, - "turbo-linux-64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-linux-64/-/turbo-linux-64-1.7.4.tgz", - "integrity": "sha512-RIUl4RUFFyzD2T024vL7509Ygwcw+SEa8NOwPfaN6TtJHK7RZV/SBP3fLNVOptG9WRLnOWX3OvsLMbiOqDLLyA==", - "dev": true, - "optional": true - }, - "turbo-linux-arm64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-linux-arm64/-/turbo-linux-arm64-1.7.4.tgz", - "integrity": "sha512-Bg65F0AjYYYxqE6RPf2H5TIGuA/EyWMeGOATHVSZOWAbYcnG3Ly03GZii8AHnUi7ntWBdjwvXf/QbOS1ayNB6A==", - "dev": true, - "optional": true - }, - "turbo-windows-64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-windows-64/-/turbo-windows-64-1.7.4.tgz", - "integrity": "sha512-rTaV50XZ2BRxRHOHqt1UsWfeDmYLbn8UKE6g2D2ED+uW+kmnTvR9s01nmlGWd2sAuWcRYQyQ2V+O09VfKPKcQw==", - "dev": true, - "optional": true - }, - "turbo-windows-arm64": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/turbo-windows-arm64/-/turbo-windows-arm64-1.7.4.tgz", - "integrity": "sha512-h8sxdKPvHTnWUPtwnYszFMmSO0P/iUUwmYY9n7iYThA71zSao28UeZ0H0Gw75cY3MPjvkjn2C4EBAUGPjuZJLw==", - "dev": true, - "optional": true - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==" - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "requires": { - "punycode": "^2.1.0" - } - }, - "use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "dev": true, - "requires": {} - }, - "utf8-byte-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz", - "integrity": "sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA==", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - }, - "verror": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz", - "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==", - "dev": true, - "optional": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "vite": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.1.1.tgz", - "integrity": "sha512-LM9WWea8vsxhr782r9ntg+bhSFS06FJgCvvB0+8hf8UWtvaiDagKYWXndjfX6kGl74keHJUcpzrQliDXZlF5yg==", - "requires": { - "esbuild": "^0.16.14", - "fsevents": "~2.3.2", - "postcss": "^8.4.21", - "resolve": "^1.22.1", - "rollup": "^3.10.0" - }, - "dependencies": { - "@esbuild/android-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", - "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", - "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", - "optional": true - }, - "esbuild": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", - "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", - "requires": { - "@esbuild/android-arm": "0.16.17", - "@esbuild/android-arm64": "0.16.17", - "@esbuild/android-x64": "0.16.17", - "@esbuild/darwin-arm64": "0.16.17", - "@esbuild/darwin-x64": "0.16.17", - "@esbuild/freebsd-arm64": "0.16.17", - "@esbuild/freebsd-x64": "0.16.17", - "@esbuild/linux-arm": "0.16.17", - "@esbuild/linux-arm64": "0.16.17", - "@esbuild/linux-ia32": "0.16.17", - "@esbuild/linux-loong64": "0.16.17", - "@esbuild/linux-mips64el": "0.16.17", - "@esbuild/linux-ppc64": "0.16.17", - "@esbuild/linux-riscv64": "0.16.17", - "@esbuild/linux-s390x": "0.16.17", - "@esbuild/linux-x64": "0.16.17", - "@esbuild/netbsd-x64": "0.16.17", - "@esbuild/openbsd-x64": "0.16.17", - "@esbuild/sunos-x64": "0.16.17", - "@esbuild/win32-arm64": "0.16.17", - "@esbuild/win32-ia32": "0.16.17", - "@esbuild/win32-x64": "0.16.17" - } - } - } - }, - "vite-plugin-electron": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/vite-plugin-electron/-/vite-plugin-electron-0.11.1.tgz", - "integrity": "sha512-pi9Wy4KCGjKIRvp7/5VUOT8BYEAJdZrpy3gI+GhGc5vYs2V9yPxLOtfCqNfSTYqH3uM6hYY6MyifFVku3Wg+2A==" - }, - "wait-for-server-up": { - "version": "file:packages/wait-for-server-up" - }, - "web-backend": { - "version": "file:apps/web-backend", - "requires": { - "@codaco/api": "*", - "@trpc/server": "^10.11.1", - "@types/cors": "^2.8.12", - "@types/express": "^4.17.14", - "@types/morgan": "^1.9.3", - "cors": "^2.8.5", - "database": "*", - "dotenv": "^16.0.3", - "express": "^4.18.2", - "morgan": "^1.10.0", - "ts-node-dev": "^2.0.0", - "typescript": "^4.9.5" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "xmlbuilder": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz", - "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==", - "dev": true - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, - "y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true - }, - "yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", - "dev": true, - "requires": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - } - }, - "yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true - }, - "yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "requires": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - }, - "zod": { - "version": "3.20.6", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.20.6.tgz", - "integrity": "sha512-oyu0m54SGCtzh6EClBVqDDlAYRz4jrVtKwQ7ZnsEmMI9HnzuZFj8QFwAY1M5uniIYACdGvv0PBWPF2kO0aNofA==" - } - } -} diff --git a/package.json b/package.json index 6c7a1e349..d7443f9a1 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,135 @@ { + "name": "fresco", + "version": "4.0.0", "private": true, - "workspaces": [ - "apps/*", - "packages/*" - ], - "prisma": { - "schema": "packages/database/prisma/schema.prisma", - "seed": "tsx packages/database/src/seed.ts" - }, + "type": "module", + "packageManager": "pnpm@11.5.0+sha512.dbfcc4f81cf48597afd4bc391ffdf12c11f1a9fb83a395bfa6b0a2d9cc2fd8ffebafdb1ccbd529632153f793904c2615b7f09fe1a345473fd1c35845172a8eb1", "scripts": { - "build": "turbo run build", - "db:migrate:deploy": "turbo run db:migrate:deploy", - "db:push": "turbo run db:push", - "db:seed": "turbo run db:seed", - "dev": "turbo run dev", - "format": "prettier --write \"**/*.{ts,tsx,md}\"", - "generate": "turbo run generate", - "lint": "turbo run lint" + "build": "next build", + "build:platform": "prisma generate && tsx ./scripts/setup-database.ts && tsx ./scripts/initialize.ts && next build", + "build:branch-preview": "SKIP_ENV_VALIDATION=true prisma generate && next build", + "dev": "concurrently -k './scripts/dev-db.sh' 'tsx scripts/dev-s3.ts' 'next dev'", + "postinstall": "SKIP_ENV_VALIDATION=true prisma generate && SKIP_ENV_VALIDATION=true next typegen", + "lint": "SKIP_ENV_VALIDATION=true eslint .", + "start": "next start", + "vercel-build": "pnpm build:platform", + "knip": "SKIP_ENV_VALIDATION=true knip", + "test": "SKIP_ENV_VALIDATION=true vitest", + "test:unit": "SKIP_ENV_VALIDATION=true vitest --run --project=units", + "test:storybook": "vitest --project=storybook", + "load-test": "docker run -i grafana/k6 run - >; - -(async () => { - try { - await Promise.all( - DEFAULT_USERS.map((user) => - prisma.user.upsert({ - where: { - email: user.email!, - }, - update: { - ...user, - }, - create: { - ...user, - }, - }) - ) - ); - } catch (error) { - console.error(error); - process.exit(1); - } finally { - await prisma.$disconnect(); - } -})(); diff --git a/packages/database/tsconfig.json b/packages/database/tsconfig.json deleted file mode 100644 index ce7b70c02..000000000 --- a/packages/database/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "compilerOptions": { - "target": "es2018", - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "module": "commonjs", - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "strictPropertyInitialization": false, - "skipLibCheck": true - } -} \ No newline at end of file diff --git a/packages/database/tsup.config.ts b/packages/database/tsup.config.ts deleted file mode 100644 index 27be5a773..000000000 --- a/packages/database/tsup.config.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { defineConfig } from "tsup"; - -const isProduction = process.env.NODE_ENV === "production"; - -export default defineConfig({ - clean: true, - dts: true, - entry: ["src/index.ts"], - format: ["cjs", "esm"], - minify: isProduction, - sourcemap: true, -}); diff --git a/packages/trpc/index.ts b/packages/trpc/index.ts deleted file mode 100644 index cc7475fa5..000000000 --- a/packages/trpc/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export { appRouter, type AppRouter } from "./src/root"; -export { createTRPCContext } from "./src/trpc"; \ No newline at end of file diff --git a/packages/trpc/package.json b/packages/trpc/package.json deleted file mode 100644 index cd0ddbdd4..000000000 --- a/packages/trpc/package.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "@codaco/api", - "version": "0.1.0", - "main": "./index.ts", - "types": "./index.ts", - "license": "MIT", - "scripts": { - "lint": "eslint .", - "type-check": "tsc --noEmit" - }, - "dependencies": { - "database": "*", - "@trpc/client": "^10.11.1", - "@trpc/server": "^10.11.1", - "superjson": "1.12.2", - "zod": "^3.20.6" - }, - "devDependencies": { - "eslint": "^8.32.0", - "typescript": "^4.9.5" - } -} diff --git a/packages/trpc/src/root.ts b/packages/trpc/src/root.ts deleted file mode 100644 index 3e10e7681..000000000 --- a/packages/trpc/src/root.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { z } from "zod"; -import { createTRPCRouter, publicProcedure } from "./trpc"; - -const userRouter = createTRPCRouter({ - all: publicProcedure.query(({ ctx }) => { - return ctx.prisma.user.findMany({ orderBy: { id: "desc" } }); - }), - byId: publicProcedure.input(z.string()).query(({ ctx, input }) => { - return ctx.prisma.user.findFirst({ where: { id: input } }); - }), - create: publicProcedure - .input(z.object({ name: z.string().min(1), email: z.string().min(1) })) - .mutation(({ ctx, input }) => { - return ctx.prisma.user.create({ data: input }); - }), - delete: publicProcedure.input(z.string()).mutation(({ ctx, input }) => { - return ctx.prisma.user.delete({ where: { id: input } }); - }), -}); - -export const appRouter = createTRPCRouter({ - user: userRouter, -}); - -// export type definition of API -export type AppRouter = typeof appRouter; \ No newline at end of file diff --git a/packages/trpc/src/trpc.ts b/packages/trpc/src/trpc.ts deleted file mode 100644 index 6843e578d..000000000 --- a/packages/trpc/src/trpc.ts +++ /dev/null @@ -1,51 +0,0 @@ -/** - * Adapted from: https://www.jumr.dev/blog/t3-turbo -*/ - -import { initTRPC } from "@trpc/server"; -import superjson from "superjson"; -import { ZodError } from "zod"; -import { prisma } from "database"; - -/** - * This is the actual context you'll use in your router. It will be used to - * process every request that goes through your tRPC endpoint - * @link https://trpc.io/docs/context - */ -export const createTRPCContext = async () => { - // Inject prisma into the context - return { - prisma, - }; -}; - -const t = initTRPC.context().create({ - isServer: true, - // transformer: superjson, // Allows more types in JSON: https://github.com/blitz-js/superjson - errorFormatter({ shape, error }) { - return { - ...shape, - data: { - ...shape.data, - zodError: - error.cause instanceof ZodError ? error.cause.flatten() : null, - }, - }; - }, -}); - - -/** - * This is how you create new routers and subrouters in your tRPC API - * @see https://trpc.io/docs/router - */ -export const createTRPCRouter = t.router; - -/** - * Public (unauthed) procedure - * - * This is the base piece you use to build new queries and mutations on your - * tRPC API. It does not guarantee that a user querying is authorized, but you - * can still access user session data if they are logged in - */ -export const publicProcedure = t.procedure; diff --git a/packages/tsconfig/base.json b/packages/tsconfig/base.json deleted file mode 100644 index d72a9f3a2..000000000 --- a/packages/tsconfig/base.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Default", - "compilerOptions": { - "composite": false, - "declaration": true, - "declarationMap": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "inlineSources": false, - "isolatedModules": true, - "moduleResolution": "node", - "noUnusedLocals": false, - "noUnusedParameters": false, - "preserveWatchOutput": true, - "skipLibCheck": true, - "strict": true - }, - "exclude": ["node_modules"] -} diff --git a/packages/tsconfig/nextjs.json b/packages/tsconfig/nextjs.json deleted file mode 100644 index 91cd404f7..000000000 --- a/packages/tsconfig/nextjs.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Next.js", - "extends": "./base.json", - "compilerOptions": { - "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": false, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "incremental": true, - "esModuleInterop": true, - "module": "esnext", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve" - }, - "include": ["src", "next-env.d.ts"], - "exclude": ["node_modules"] -} diff --git a/packages/tsconfig/node16.json b/packages/tsconfig/node16.json deleted file mode 100644 index bf7fb492b..000000000 --- a/packages/tsconfig/node16.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Node 16", - "extends": "./base.json", - "compilerOptions": { - "lib": ["ES2021"], - "module": "commonjs", - "target": "ES2021", - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true - } -} diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json deleted file mode 100644 index 6efb83e14..000000000 --- a/packages/tsconfig/package.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "tsconfig", - "version": "0.0.0", - "private": true, - "license": "MIT", - "publishConfig": { - "access": "public" - } -} diff --git a/patches/react-best-merge-refs@1.0.2.patch b/patches/react-best-merge-refs@1.0.2.patch new file mode 100644 index 000000000..4ced6a251 --- /dev/null +++ b/patches/react-best-merge-refs@1.0.2.patch @@ -0,0 +1,20 @@ +diff --git a/package.json b/package.json +index 52fbaec16855366b6cf9163f4c3b092189027743..f706e8c3b85194171debe253bcb86e97e9a889c0 100644 +--- a/package.json ++++ b/package.json +@@ -22,12 +22,14 @@ + "license": "MIT", + "type": "module", + "sideEffects": false, ++ "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { ++ "types": "./dist/index.d.ts", + "import": "./dist/index.js", +- "types": "./dist/index.d.ts" ++ "default": "./dist/index.js" + } + }, + "files": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 000000000..133564612 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,13913 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +patchedDependencies: + react-best-merge-refs@1.0.2: 469dfbaa03c158d70d3588a72c8d8cd96e54c22d37f6fe62535c0b33fd21adc8 + +importers: + + .: + dependencies: + '@aws-sdk/client-s3': + specifier: ^3.1057.0 + version: 3.1057.0 + '@aws-sdk/lib-storage': + specifier: ^3.1057.0 + version: 3.1057.0(@aws-sdk/client-s3@3.1057.0) + '@aws-sdk/s3-request-presigner': + specifier: ^3.1057.0 + version: 3.1057.0 + '@base-ui/react': + specifier: ^1.5.0 + version: 1.5.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@codaco/fresco-ui': + specifier: ^2.11.2 + version: 2.11.2(@base-ui/react@1.5.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(@codaco/shared-consts@5.1.0)(@codaco/tailwind-config@1.0.0-alpha.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0))(@floating-ui/dom@1.7.6)(@tanstack/react-table@8.21.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(motion@12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0)(typescript@6.0.3)(zod@4.4.3)(zustand@5.0.14(@types/react@19.2.15)(immer@11.1.8)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6))) + '@codaco/interview': + specifier: 1.0.0-alpha.23 + version: 1.0.0-alpha.23(ed4fb8fbcd34bd15b353c5c5fe190839) + '@codaco/network-exporters': + specifier: ^1.0.3 + version: 1.0.3 + '@codaco/protocol-utilities': + specifier: 1.0.0-alpha.0 + version: 1.0.0-alpha.0 + '@codaco/protocol-validation': + specifier: ^11.6.1 + version: 11.6.1 + '@codaco/shared-consts': + specifier: 5.1.0 + version: 5.1.0 + '@codaco/tailwind-config': + specifier: 1.0.0-alpha.19 + version: 1.0.0-alpha.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0) + '@paralleldrive/cuid2': + specifier: ^3.3.0 + version: 3.3.0 + '@posthog/nextjs-config': + specifier: ^1.9.39 + version: 1.9.39(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + '@prisma/adapter-neon': + specifier: ^7.8.0 + version: 7.8.0 + '@prisma/adapter-pg': + specifier: ^7.8.0 + version: 7.8.0 + '@prisma/client': + specifier: ^7.8.0 + version: 7.8.0(prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(magicast@0.5.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@6.0.3))(typescript@6.0.3) + '@simplewebauthn/browser': + specifier: ^13.3.0 + version: 13.3.0 + '@simplewebauthn/server': + specifier: ^13.3.1 + version: 13.3.1 + '@tanstack/react-table': + specifier: ^8.21.3 + version: 8.21.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + async: + specifier: ^3.2.6 + version: 3.2.6 + blobs: + specifier: 2.3.0-beta.2 + version: 2.3.0-beta.2 + d3-interpolate-path: + specifier: ^2.3.0 + version: 2.3.0 + dotenv: + specifier: ^17.4.2 + version: 17.4.2 + effect: + specifier: ^3.21.2 + version: 3.21.2 + es-toolkit: + specifier: ^1.47.0 + version: 1.47.0 + immer: + specifier: ^11.1.8 + version: 11.1.8 + jszip: + specifier: ^3.10.1 + version: 3.10.1 + lucide-react: + specifier: ^1.17.0 + version: 1.17.0(react@19.2.6) + motion: + specifier: ^12.40.0 + version: 12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + next: + specifier: 16.2.6 + version: 16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0) + nuqs: + specifier: ^2.8.9 + version: 2.8.9(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(react@19.2.6) + ohash: + specifier: ^2.0.11 + version: 2.0.11 + otpauth: + specifier: ^9.5.1 + version: 9.5.1 + papaparse: + specifier: ^5.5.3 + version: 5.5.3 + postcss: + specifier: ^8.5.15 + version: 8.5.15 + posthog-js: + specifier: ^1.376.5 + version: 1.376.5 + posthog-node: + specifier: ^5.35.7 + version: 5.35.7(rxjs@7.8.2) + qrcode: + specifier: ^1.5.4 + version: 1.5.4 + react: + specifier: 19.2.6 + version: 19.2.6 + react-dom: + specifier: 19.2.6 + version: 19.2.6(react@19.2.6) + react-dropzone: + specifier: ^15.0.0 + version: 15.0.0(react@19.2.6) + react-markdown: + specifier: ^10.1.0 + version: 10.1.0(@types/react@19.2.15)(react@19.2.6) + server-only: + specifier: ^0.0.1 + version: 0.0.1 + sharp: + specifier: ^0.34.5 + version: 0.34.5 + superjson: + specifier: ^2.2.6 + version: 2.2.6 + uploadthing: + specifier: ^7.7.4 + version: 7.7.4(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(tailwindcss@4.3.0) + usehooks-ts: + specifier: ^3.1.1 + version: 3.1.1(react@19.2.6) + zod: + specifier: ^4.4.3 + version: 4.4.3 + zustand: + specifier: ^5.0.14 + version: 5.0.14(@types/react@19.2.15)(immer@11.1.8)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6)) + devDependencies: + '@chromatic-com/storybook': + specifier: ^5.2.1 + version: 5.2.1(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)) + '@eslint/compat': + specifier: ^2.1.0 + version: 2.1.0(eslint@9.39.4(jiti@2.7.0)) + '@eslint/js': + specifier: ^9.39.4 + version: 9.39.4 + '@next/eslint-plugin-next': + specifier: 16.2.6 + version: 16.2.6 + '@storybook/addon-a11y': + specifier: ^10.4.1 + version: 10.4.1(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)) + '@storybook/addon-docs': + specifier: ^10.4.1 + version: 10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + '@storybook/addon-vitest': + specifier: ^10.4.1 + version: 10.4.1(@vitest/browser-playwright@4.1.7)(@vitest/browser@4.1.7)(@vitest/runner@4.1.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vitest@4.1.7) + '@storybook/nextjs-vite': + specifier: ^10.4.1 + version: 10.4.1(@babel/core@7.29.7)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(esbuild@0.28.0)(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + '@t3-oss/env-nextjs': + specifier: ^0.13.11 + version: 0.13.11(typescript@6.0.3)(valibot@1.4.1(typescript@6.0.3))(zod@4.4.3) + '@tailwindcss/forms': + specifier: ^0.5.11 + version: 0.5.11(tailwindcss@4.3.0) + '@tailwindcss/postcss': + specifier: 4.3.0 + version: 4.3.0 + '@testing-library/jest-dom': + specifier: ^6.9.1 + version: 6.9.1 + '@testing-library/react': + specifier: ^16.3.2 + version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@total-typescript/ts-reset': + specifier: ^0.6.1 + version: 0.6.1 + '@types/async': + specifier: ^3.2.25 + version: 3.2.25 + '@types/d3-interpolate-path': + specifier: ^2.0.3 + version: 2.0.3 + '@types/node': + specifier: ^24.12.4 + version: 24.12.4 + '@types/papaparse': + specifier: ^5.5.2 + version: 5.5.2 + '@types/qrcode': + specifier: ^1.5.6 + version: 1.5.6 + '@types/react': + specifier: 19.2.15 + version: 19.2.15 + '@types/react-dom': + specifier: 19.2.3 + version: 19.2.3(@types/react@19.2.15) + '@vitejs/plugin-react': + specifier: ^6.0.2 + version: 6.0.2(babel-plugin-react-compiler@1.0.0)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + '@vitest/browser': + specifier: 4.1.7 + version: 4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7) + '@vitest/browser-playwright': + specifier: ^4.1.7 + version: 4.1.7(playwright@1.60.0)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7) + '@vitest/coverage-v8': + specifier: ^4.1.7 + version: 4.1.7(@vitest/browser@4.1.7)(vitest@4.1.7) + babel-plugin-react-compiler: + specifier: ^1.0.0 + version: 1.0.0 + chromatic: + specifier: ^17.0.1 + version: 17.0.1 + concurrently: + specifier: ^10.0.0 + version: 10.0.0 + esbuild: + specifier: ^0.28.0 + version: 0.28.0 + eslint: + specifier: ^9.39.4 + version: 9.39.4(jiti@2.7.0) + eslint-config-prettier: + specifier: ^10.1.8 + version: 10.1.8(eslint@9.39.4(jiti@2.7.0)) + eslint-import-resolver-typescript: + specifier: ^4.4.4 + version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.7.0)) + eslint-plugin-better-tailwindcss: + specifier: ^4.5.0 + version: 4.5.0(eslint@9.39.4(jiti@2.7.0))(tailwindcss@4.3.0)(typescript@6.0.3) + eslint-plugin-import: + specifier: ^2.32.0 + version: 2.32.0(@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.7.0)) + eslint-plugin-jsx-a11y: + specifier: ^6.10.2 + version: 6.10.2(eslint@9.39.4(jiti@2.7.0)) + eslint-plugin-react: + specifier: ^7.37.5 + version: 7.37.5(eslint@9.39.4(jiti@2.7.0)) + eslint-plugin-react-hooks: + specifier: ^7.1.1 + version: 7.1.1(eslint@9.39.4(jiti@2.7.0)) + eslint-plugin-storybook: + specifier: ^10.4.1 + version: 10.4.1(eslint@9.39.4(jiti@2.7.0))(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3) + fflate: + specifier: ^0.8.3 + version: 0.8.3 + globals: + specifier: ^17.6.0 + version: 17.6.0 + jsdom: + specifier: ^29.1.1 + version: 29.1.1(@noble/hashes@2.2.0) + knip: + specifier: ^6.15.0 + version: 6.15.0 + prettier: + specifier: ^3.8.3 + version: 3.8.3 + prettier-plugin-tailwindcss: + specifier: ^0.8.0 + version: 0.8.0(prettier@3.8.3) + prisma: + specifier: ^7.8.0 + version: 7.8.0(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(magicast@0.5.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@6.0.3) + sass: + specifier: ^1.100.0 + version: 1.100.0 + sass-embedded: + specifier: ^1.100.0 + version: 1.100.0 + storybook: + specifier: ^10.4.1 + version: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + tailwindcss: + specifier: 4.3.0 + version: 4.3.0 + tailwindcss-animate: + specifier: ^1.0.7 + version: 1.0.7(tailwindcss@4.3.0) + tsx: + specifier: ^4.22.4 + version: 4.22.4 + typescript: + specifier: 6.0.3 + version: 6.0.3 + typescript-eslint: + specifier: ^8.60.0 + version: 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + vite: + specifier: ^8.0.14 + version: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + vitest: + specifier: ^4.1.7 + version: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.12.4)(@vitest/browser-playwright@4.1.7)(@vitest/coverage-v8@4.1.7)(jsdom@29.1.1(@noble/hashes@2.2.0))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + +packages: + + '@adobe/css-tools@4.5.0': + resolution: {integrity: sha512-6OzddxPio9UiWTCemp4N8cYLV2ZN1ncRnV1cVGtve7dhPOtRkleRyx32GQCYSwDYgaHU3USMm84tNsvKzRCa1Q==} + + '@alloc/quick-lru@5.2.0': + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + + '@asamuzakjp/css-color@5.1.11': + resolution: {integrity: sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + '@asamuzakjp/dom-selector@7.1.1': + resolution: {integrity: sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + '@asamuzakjp/generational-cache@1.0.1': + resolution: {integrity: sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + '@asamuzakjp/nwsapi@2.3.9': + resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==} + + '@aws-crypto/crc32@5.2.0': + resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==} + engines: {node: '>=16.0.0'} + + '@aws-crypto/crc32c@5.2.0': + resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==} + + '@aws-crypto/sha1-browser@5.2.0': + resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==} + + '@aws-crypto/sha256-browser@5.2.0': + resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==} + + '@aws-crypto/sha256-js@5.2.0': + resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==} + engines: {node: '>=16.0.0'} + + '@aws-crypto/supports-web-crypto@5.2.0': + resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==} + + '@aws-crypto/util@5.2.0': + resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} + + '@aws-sdk/client-s3@3.1057.0': + resolution: {integrity: sha512-4MV5+ph7WSLEqStKYdWf2EIHIvLpPzV8xN98jWSVJfUpp5j7T8dyN3AROPPsKWvCme8hbx1ybCjtK76ALCZUYg==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/core@3.974.15': + resolution: {integrity: sha512-UpA0rTGW/tHGITcCqHisbuuEPraYg9GG+mWmXjY5+RxZBMLGe6aL9oe0ix50LztwAcPIkGZLH0yWdMIkCM10hw==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/crc64-nvme@3.972.9': + resolution: {integrity: sha512-P+QGozmXn2mZZI7sDgk+aUm+RTI61MPSFB+Ir2vjEjEbEsE4e7hYtzrDvAUxZy9ko81h53e11+F/GYlvwDkaOQ==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-env@3.972.41': + resolution: {integrity: sha512-n1EbJ98yvPWWdHZZv8bRBMqqDQJrtgtxyJ4xLy2Uqrh25BCOZQ7nnS1CsFXvuH8r0b0KVHDZEGEH5FxmEMP8jg==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-http@3.972.43': + resolution: {integrity: sha512-TT76RN1NkI9WoyZqCNxOw6/WBMF7pYOTJcXbMokNFU+euSG40Kaf/t/FhDACVZWP+43wEM6ZynIPIkzS1wR1iA==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-ini@3.972.46': + resolution: {integrity: sha512-hvcgcwOiS0nb2XFb5Op1Pz/vYaWz5K8kKullziGpdNRuG0NwzRXseuPt2CoBqknHGaSPVesu1aOn2OcctEYdCA==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-login@3.972.45': + resolution: {integrity: sha512-MZQv4SNjByk1iOKmrqmzcUF/uCB05wjvEHyXKxmGQTUANTIVayX6HPUF0bzkWLvtnkH7sAn9kUCfkXbSpj9sDA==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-node@3.972.47': + resolution: {integrity: sha512-HrId+C0DWA5qDIyLG64/kjUB2RNtPypxmABnIctK+TA1P1kHlOYoE/Wf5T5tKOMKgb08P7k/zNyhvfJ3lh5Oag==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-process@3.972.41': + resolution: {integrity: sha512-7I/n1zkysouLOWvkEhjNEP4vMnD2v4kzzr3/3QBdrripEpn7ap1/I5DF3Hou1SUqkKWo1f3oPGMyFAA1FAMvsQ==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-sso@3.972.45': + resolution: {integrity: sha512-oHgbz/eFD8IKiksqDsz9ZMU4A59BpQq4QwJedBnGD80ZqYcHPPHZBwjBnxLVkB7iRVVHWpDclR8yWdD2PkQIUA==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/credential-provider-web-identity@3.972.45': + resolution: {integrity: sha512-CDhzKdb2onv5bpnjn/acgdNmJOQthPDLsPizU7rZflsEcgMMp8Mlri+U5hdxf8ldvZJpvM3vLU6D56vfJm5AMQ==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/lib-storage@3.1057.0': + resolution: {integrity: sha512-0LlXWaklL2LGBSJ6w3YwsJaFCR9yu57648aEyyIRLM5NT+rQ3Xbx0/pCsuM4fD+QJZhASMMAALAl/pdiN5B+FQ==} + engines: {node: '>=20.0.0'} + peerDependencies: + '@aws-sdk/client-s3': ^3.1057.0 + + '@aws-sdk/middleware-bucket-endpoint@3.972.17': + resolution: {integrity: sha512-lbDmWuHenc+kiwCNrxz4MyN6nkxCWyTXPIWuspJN0ibziu+8CXci7vI1bK9MAkwy8cwJOEXNu0gBM5S0uTGRIg==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/middleware-expect-continue@3.972.14': + resolution: {integrity: sha512-3TNFEVGO4sWZj9TEXOCZLzGEctXHnaO4fk2EQ8KVaboTbwHmEPEQrm17Xb9koImUIXEw0sgi2xtHjg7LuTS3rA==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/middleware-flexible-checksums@3.974.23': + resolution: {integrity: sha512-4nPKARo2lfKvQGUt2fPA5NlS/mEohckdxpuC9ecbjVfj7B7NFFYHeTg+Bf5BEQwdn3yRfUIzFiEkPp8Yuaw3wA==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/middleware-location-constraint@3.972.11': + resolution: {integrity: sha512-hkfspNUP4criAH6ton6BGKgnm5dZx+7bUOy1YqlTfejDeUPAM23D81q/IX+hdlS3KUsfwGz5ADTqZWKBEUpf4A==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/middleware-sdk-s3@3.972.44': + resolution: {integrity: sha512-8HQsRg1NpX8vR4vNl1E8pyLnqZroq9VSL2vZQVSgBqp6wv6365LzYD08/c9FFh/9FTg7YRc7aTtEmXF0ir/pqg==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/middleware-ssec@3.972.11': + resolution: {integrity: sha512-7PQvGNhtveKlvVqNahqWx5yrwxP7ecwAoB1dYBf8eKwfo2tzzCbNnW+q2nO3N066ktQaB4iBQbDRWtizm+amoQ==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/nested-clients@3.997.13': + resolution: {integrity: sha512-2pA6eyb5nSo/ZD2cayhOTEMoGQYgspq0RI05GDLkzQ3ajZ6isS6waV6E92Am/hz4LIlLUTrbwPLurJ/fuiHvkg==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/s3-request-presigner@3.1057.0': + resolution: {integrity: sha512-mTxO9BCztlos7gzHIFKf3p3CakOmLhjfv6Llo9LIAF+UCu/eCoKMPaFi87WmYUWWf7rIGIyb20Wa8hd4puuUKg==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/signature-v4-multi-region@3.996.30': + resolution: {integrity: sha512-HULDLMVzkmTSEv6//7kx2kRevp/VYUpm8hJNNFbmhxDn0fUiGTxVcM9yg31TukvTq8nyOBDUN2gH0o5IRbKjdw==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/token-providers@3.1056.0': + resolution: {integrity: sha512-81duvlltQlsfn5K+o8zILcystBRdbT1G2JJYVCML5NZHBz4CL/zf+sAemCtBh/uh6RQUMyInGeZLQ7/8igZhbA==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/types@3.973.9': + resolution: {integrity: sha512-kuBfgQVdcz5Bmapc4A13YbpVw/pXkesfhetcFYwbntqas8sF41OHyd4o28+/TG2ZQdHBsv90Lsu5y6oitvYCdg==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/util-locate-window@3.965.5': + resolution: {integrity: sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==} + engines: {node: '>=20.0.0'} + + '@aws-sdk/xml-builder@3.972.26': + resolution: {integrity: sha512-cDbrqvDS73whl6YAPSPq0U6whzG6UWI9PuWh0wrUuGoZexhWEqhdunbukV7iBoaWnFV1AODutM5hOD6rtn439g==} + engines: {node: '>=20.0.0'} + + '@aws/lambda-invoke-store@0.2.4': + resolution: {integrity: sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ==} + engines: {node: '>=18.0.0'} + + '@babel/code-frame@7.29.7': + resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.29.7': + resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.29.7': + resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.29.7': + resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.29.7': + resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-globals@7.29.7': + resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.29.7': + resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.29.7': + resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-string-parser@7.29.7': + resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.29.7': + resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.29.7': + resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.29.7': + resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.29.7': + resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/runtime@7.29.7': + resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.29.7': + resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.29.7': + resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.29.7': + resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==} + engines: {node: '>=6.9.0'} + + '@base-ui/react@1.5.0': + resolution: {integrity: sha512-z1gSAlced1yY+iM+mHDEtIkD8UI3Ebs52MuBPxvV6f5hRutk+xvCH/wuB7hDqDzK9JG5FoMz5nhrqtSs1wjt1A==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@date-fns/tz': ^1.2.0 + '@types/react': ^17 || ^18 || ^19 + date-fns: ^4.0.0 + react: ^17 || ^18 || ^19 + react-dom: ^17 || ^18 || ^19 + peerDependenciesMeta: + '@date-fns/tz': + optional: true + '@types/react': + optional: true + date-fns: + optional: true + + '@base-ui/utils@0.2.9': + resolution: {integrity: sha512-x/PDDCYzoqPpjrdyb3VcyylTI2IjUXEtYDGi5foh7KsnmNJIIaVwA2GLgDH1dps1GgXiJbA60hM+AyuTfQzIvw==} + peerDependencies: + '@types/react': ^17 || ^18 || ^19 + react: ^17 || ^18 || ^19 + react-dom: ^17 || ^18 || ^19 + peerDependenciesMeta: + '@types/react': + optional: true + + '@bcoe/v8-coverage@1.0.2': + resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} + engines: {node: '>=18'} + + '@blazediff/core@1.9.1': + resolution: {integrity: sha512-ehg3jIkYKulZh+8om/O25vkvSsXXwC+skXmyA87FFx6A/45eqOkZsBltMw/TVteb0mloiGT8oGRTcjRAz66zaA==} + + '@bramus/specificity@2.4.2': + resolution: {integrity: sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==} + hasBin: true + + '@bufbuild/protobuf@2.12.0': + resolution: {integrity: sha512-B/XlCaFIP8LOwzo+bz5uFzATYokcwCKQcghqnlfwSmM5eX/qTkvDBnDPs+gXtX/RyjxJ4DRikECcPJbyALA8FA==} + + '@chromatic-com/storybook@5.2.1': + resolution: {integrity: sha512-z6I7NJk/0VngA64y5TNYaB4Hc2X8+90n4op6lBt9PvWk5TmIlFLDqdX33rlrwbNRkkYijVgA/wO04rVYXi5Mlg==} + engines: {node: '>=20.0.0', yarn: '>=1.22.18'} + peerDependencies: + storybook: ^0.0.0-0 || ^10.1.0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 || ^10.4.0-0 || ^10.5.0-0 || ^10.6.0-0 + + '@codaco/fresco-ui@2.11.2': + resolution: {integrity: sha512-VBHwfeCDeZ7bVNh1IwS/n5pTrFcR4q8zg4o4Zk2f1ff1qrMtBHz2iGHkkukSOu1ZwUcpuFkcJDZcqCE7nkc/ww==} + peerDependencies: + '@base-ui/react': ^1.4.0 + '@codaco/shared-consts': 5.0.0 + '@codaco/tailwind-config': ^1.0.0-alpha.19 + '@tanstack/react-table': ^8.21.3 + motion: ^12.40.0 + react: ^19.2.6 + react-dom: ^19.2.6 + tailwindcss: ^4.3.0 + zod: ^4.4.3 + zustand: ^5.0.14 + + '@codaco/interview@1.0.0-alpha.23': + resolution: {integrity: sha512-N2VkvJsxh1rsCUk27qEeUaD+oNFm5ZkPZ7Yh1ieodNb9cGU2j3PSH7rVmoLqhnMkjfcjJqEMEbhexkXfrwYqXg==} + peerDependencies: + '@codaco/fresco-ui': ^2.11.2 + '@codaco/protocol-validation': ^11.6.1 + '@codaco/shared-consts': ^5.1.0 + '@codaco/tailwind-config': ^1.0.0-alpha.19 + motion: ^12.40.0 + react: ^19.2.6 + react-dom: ^19.2.6 + tailwindcss: ^4.3.0 + + '@codaco/network-exporters@1.0.3': + resolution: {integrity: sha512-1r72LZ6aKikWr2ZH+8bPwr4/uII7f6tlLGaZS10q/AbPRp2DY0SyvbTmOKv8cJ0Pis4RqjIQWOjYhEk0J8wl3A==} + + '@codaco/network-query@1.0.1': + resolution: {integrity: sha512-v93+t6ZM3HykaN9MjsFQc4abUlQPJ5gEgGxpa5XAaE6ZCKoJG95EKBI1llBTvwid25FfTSWAZYgHYY036i2CUA==} + + '@codaco/protocol-utilities@1.0.0-alpha.0': + resolution: {integrity: sha512-7EzSsFaIFJP/qyFCwRR1Ozyx5R7TlBM/w6NsQO3SfbmlyhcnWOzvuz9pZH7WuJFxq9ZR/XAl3A+61qdxovjYjQ==} + + '@codaco/protocol-validation@11.4.0': + resolution: {integrity: sha512-mfoZqpPc9YW+qk9rPULrkyrUNlgJnaOgDBCb9gPzklpgV6NQDazala9DUvneBHTuBFlGq0hIfrIKBwkkyxNC2A==} + hasBin: true + + '@codaco/protocol-validation@11.6.0': + resolution: {integrity: sha512-EaMcK/JozsYs3Q1HZH5ba33+YAHW3WnsGY28kMvJ4LdVWz0EdLJnkQcqNMImXPJs9HzUg+qQ3XpHBARIatZaHA==} + hasBin: true + + '@codaco/protocol-validation@11.6.1': + resolution: {integrity: sha512-Vbj9BBlL4GrtBzrvfkkuvGYdZue2s4xuSI35Ejn50riEYKasS2ADm+EuUqklVVd6V4qagG5DQf0cPd7hDlgI9w==} + hasBin: true + + '@codaco/shared-consts@5.0.0': + resolution: {integrity: sha512-7neTWHNjw6Y7FdVOU8htO2OshADlpS9vI+5mQEDWOdtlL8BdHmBflqQlZE8lFjzBin8tUI9jIlxsLlMYOpjm/w==} + engines: {node: '>=20.0.0'} + + '@codaco/shared-consts@5.1.0': + resolution: {integrity: sha512-lPWbwcsaGKUUe3grkhk2USdA7dMZGiEgGxef0SwgTsXCVGyNxyBPWq6Vgt+w2HSU2X317aqcUwQBtXXs9BAXOQ==} + engines: {node: '>=20.0.0'} + + '@codaco/tailwind-config@1.0.0-alpha.19': + resolution: {integrity: sha512-J0lhHDeVDzDNX+CpK83snyCVCNMwUs2cpaFMH66kvCWBHJUug/YeHg+Mt2sPzDn4uAIegsLWHAkUR+a7eyukQQ==} + peerDependencies: + tailwindcss: ^4.3.0 + + '@csstools/color-helpers@6.0.2': + resolution: {integrity: sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==} + engines: {node: '>=20.19.0'} + + '@csstools/css-calc@3.2.1': + resolution: {integrity: sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==} + engines: {node: '>=20.19.0'} + peerDependencies: + '@csstools/css-parser-algorithms': ^4.0.0 + '@csstools/css-tokenizer': ^4.0.0 + + '@csstools/css-color-parser@4.1.1': + resolution: {integrity: sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==} + engines: {node: '>=20.19.0'} + peerDependencies: + '@csstools/css-parser-algorithms': ^4.0.0 + '@csstools/css-tokenizer': ^4.0.0 + + '@csstools/css-parser-algorithms@4.0.0': + resolution: {integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==} + engines: {node: '>=20.19.0'} + peerDependencies: + '@csstools/css-tokenizer': ^4.0.0 + + '@csstools/css-syntax-patches-for-csstree@1.1.4': + resolution: {integrity: sha512-wgsqt92b7C7tQhIdPNxj0n9zuUbQlvAuI1exyzeNrOKOi62SD7ren8zqszmpVREjAOqg8cD2FqYhQfAuKjk4sw==} + peerDependencies: + css-tree: ^3.2.1 + peerDependenciesMeta: + css-tree: + optional: true + + '@csstools/css-tokenizer@4.0.0': + resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==} + engines: {node: '>=20.19.0'} + + '@effect/platform@0.90.3': + resolution: {integrity: sha512-XvQ37yzWQKih4Du2CYladd1i/MzqtgkTPNCaN6Ku6No4CK83hDtXIV/rP03nEoBg2R3Pqgz6gGWmE2id2G81HA==} + peerDependencies: + effect: ^3.17.7 + + '@electric-sql/pglite-socket@0.1.1': + resolution: {integrity: sha512-p2hoXw3Z3LQHwTeikdZNsFBOvXGqKY2hk51BBw+8NKND8eoH+8LFOtW9Z8CQKmTJ2qqGYu82ipqiyFZOTTXNfw==} + hasBin: true + peerDependencies: + '@electric-sql/pglite': 0.4.1 + + '@electric-sql/pglite-tools@0.3.1': + resolution: {integrity: sha512-C+T3oivmy9bpQvSxVqXA1UDY8cB9Eb9vZHL9zxWwEUfDixbXv4G3r2LjoTdR33LD8aomR3O9ZXEO3XEwr/cUCA==} + peerDependencies: + '@electric-sql/pglite': 0.4.1 + + '@electric-sql/pglite@0.4.1': + resolution: {integrity: sha512-mZ9NzzUSYPOCnxHH1oAHPRzoMFJHY472raDKwXl/+6oPbpdJ7g8LsCN4FSaIIfkiCKHhb3iF/Zqo3NYxaIhU7Q==} + + '@emnapi/core@1.10.0': + resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==} + + '@emnapi/core@1.9.2': + resolution: {integrity: sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==} + + '@emnapi/runtime@1.10.0': + resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==} + + '@emnapi/runtime@1.9.2': + resolution: {integrity: sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==} + + '@emnapi/wasi-threads@1.2.1': + resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==} + + '@esbuild/aix-ppc64@0.27.7': + resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.28.0': + resolution: {integrity: sha512-lhRUCeuOyJQURhTxl4WkpFTjIsbDayJHih5kZC1giwE+MhIzAb7mEsQMqMf18rHLsrb5qI1tafG20mLxEWcWlA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.27.7': + resolution: {integrity: sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.28.0': + resolution: {integrity: sha512-+WzIXQOSaGs33tLEgYPYe/yQHf0WTU0X42Jca3y8NWMbUVhp7rUnw+vAsRC/QiDrdD31IszMrZy+qwPOPjd+rw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.27.7': + resolution: {integrity: sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.28.0': + resolution: {integrity: sha512-wqh0ByljabXLKHeWXYLqoJ5jKC4XBaw6Hk08OfMrCRd2nP2ZQ5eleDZC41XHyCNgktBGYMbqnrJKq/K/lzPMSQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.27.7': + resolution: {integrity: sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.28.0': + resolution: {integrity: sha512-+VJggoaKhk2VNNqVL7f6S189UzShHC/mR9EE8rDdSkdpN0KflSwWY/gWjDrNxxisg8Fp1ZCD9jLMo4m0OUfeUA==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.27.7': + resolution: {integrity: sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.28.0': + resolution: {integrity: sha512-0T+A9WZm+bZ84nZBtk1ckYsOvyA3x7e2Acj1KdVfV4/2tdG4fzUp91YHx+GArWLtwqp77pBXVCPn2We7Letr0Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.27.7': + resolution: {integrity: sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.28.0': + resolution: {integrity: sha512-fyzLm/DLDl/84OCfp2f/XQ4flmORsjU7VKt8HLjvIXChJoFFOIL6pLJPH4Yhd1n1gGFF9mPwtlN5Wf82DZs+LQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.27.7': + resolution: {integrity: sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.28.0': + resolution: {integrity: sha512-l9GeW5UZBT9k9brBYI+0WDffcRxgHQD8ShN2Ur4xWq/NFzUKm3k5lsH4PdaRgb2w7mI9u61nr2gI2mLI27Nh3Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.27.7': + resolution: {integrity: sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.28.0': + resolution: {integrity: sha512-BXoQai/A0wPO6Es3yFJ7APCiKGc1tdAEOgeTNy3SsB491S3aHn4S4r3e976eUnPdU+NbdtmBuLncYir2tMU9Nw==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.27.7': + resolution: {integrity: sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.28.0': + resolution: {integrity: sha512-RVyzfb3FWsGA55n6WY0MEIEPURL1FcbhFE6BffZEMEekfCzCIMtB5yyDcFnVbTnwk+CLAgTujmV/Lgvih56W+A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.27.7': + resolution: {integrity: sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.28.0': + resolution: {integrity: sha512-CjaaREJagqJp7iTaNQjjidaNbCKYcd4IDkzbwwxtSvjI7NZm79qiHc8HqciMddQ6CKvJT6aBd8lO9kN/ZudLlw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.27.7': + resolution: {integrity: sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.28.0': + resolution: {integrity: sha512-KBnSTt1kxl9x70q+ydterVdl+Cn0H18ngRMRCEQfrbqdUuntQQ0LoMZv47uB97NljZFzY6HcfqEZ2SAyIUTQBQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.27.7': + resolution: {integrity: sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.28.0': + resolution: {integrity: sha512-zpSlUce1mnxzgBADvxKXX5sl8aYQHo2ezvMNI8I0lbblJtp8V4odlm3Yzlj7gPyt3T8ReksE6bK+pT3WD+aJRg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.27.7': + resolution: {integrity: sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.28.0': + resolution: {integrity: sha512-2jIfP6mmjkdmeTlsX/9vmdmhBmKADrWqN7zcdtHIeNSCH1SqIoNI63cYsjQR8J+wGa4Y5izRcSHSm8K3QWmk3w==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.27.7': + resolution: {integrity: sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.28.0': + resolution: {integrity: sha512-bc0FE9wWeC0WBm49IQMPSPILRocGTQt3j5KPCA8os6VprfuJ7KD+5PzESSrJ6GmPIPJK965ZJHTUlSA6GNYEhg==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.27.7': + resolution: {integrity: sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.28.0': + resolution: {integrity: sha512-SQPZOwoTTT/HXFXQJG/vBX8sOFagGqvZyXcgLA3NhIqcBv1BJU1d46c0rGcrij2B56Z2rNiSLaZOYW5cUk7yLQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.27.7': + resolution: {integrity: sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.28.0': + resolution: {integrity: sha512-SCfR0HN8CEEjnYnySJTd2cw0k9OHB/YFzt5zgJEwa+wL/T/raGWYMBqwDNAC6dqFKmJYZoQBRfHjgwLHGSrn3Q==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.27.7': + resolution: {integrity: sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.28.0': + resolution: {integrity: sha512-us0dSb9iFxIi8srnpl931Nvs65it/Jd2a2K3qs7fz2WfGPHqzfzZTfec7oxZJRNPXPnNYZtanmRc4AL/JwVzHQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.27.7': + resolution: {integrity: sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-arm64@0.28.0': + resolution: {integrity: sha512-CR/RYotgtCKwtftMwJlUU7xCVNg3lMYZ0RzTmAHSfLCXw3NtZtNpswLEj/Kkf6kEL3Gw+BpOekRX0BYCtklhUw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.7': + resolution: {integrity: sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.28.0': + resolution: {integrity: sha512-nU1yhmYutL+fQ71Kxnhg8uEOdC0pwEW9entHykTgEbna2pw2dkbFSMeqjjyHZoCmt8SBkOSvV+yNmm94aUrrqw==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.27.7': + resolution: {integrity: sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-arm64@0.28.0': + resolution: {integrity: sha512-cXb5vApOsRsxsEl4mcZ1XY3D4DzcoMxR/nnc4IyqYs0rTI8ZKmW6kyyg+11Z8yvgMfAEldKzP7AdP64HnSC/6g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.27.7': + resolution: {integrity: sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.28.0': + resolution: {integrity: sha512-8wZM2qqtv9UP3mzy7HiGYNH/zjTA355mpeuA+859TyR+e+Tc08IHYpLJuMsfpDJwoLo1ikIJI8jC3GFjnRClzA==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.27.7': + resolution: {integrity: sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/openharmony-arm64@0.28.0': + resolution: {integrity: sha512-FLGfyizszcef5C3YtoyQDACyg95+dndv79i2EekILBofh5wpCa1KuBqOWKrEHZg3zrL3t5ouE5jgr94vA+Wb2w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.27.7': + resolution: {integrity: sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.28.0': + resolution: {integrity: sha512-1ZgjUoEdHZZl/YlV76TSCz9Hqj9h9YmMGAgAPYd+q4SicWNX3G5GCyx9uhQWSLcbvPW8Ni7lj4gDa1T40akdlw==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.27.7': + resolution: {integrity: sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.28.0': + resolution: {integrity: sha512-Q9StnDmQ/enxnpxCCLSg0oo4+34B9TdXpuyPeTedN/6+iXBJ4J+zwfQI28u/Jl40nOYAxGoNi7mFP40RUtkmUA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.27.7': + resolution: {integrity: sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.28.0': + resolution: {integrity: sha512-zF3ag/gfiCe6U2iczcRzSYJKH1DCI+ByzSENHlM2FcDbEeo5Zd2C86Aq0tKUYAJJ1obRP84ymxIAksZUcdztHA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.27.7': + resolution: {integrity: sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.28.0': + resolution: {integrity: sha512-pEl1bO9mfAmIC+tW5btTmrKaujg3zGtUmWNdCw/xs70FBjwAL3o9OEKNHvNmnyylD6ubxUERiEhdsL0xBQ9efw==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.9.1': + resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.2': + resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@2.1.0': + resolution: {integrity: sha512-LgaSCymEpw7tF53xvDw9SNsraPb1IBHxpdABIOM0hW8UAlP8znrjYtuxfR58FSJ3L9BhwD+FaPRFQpZq84Nh6g==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + peerDependencies: + eslint: ^8.40 || 9 || 10 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.21.2': + resolution: {integrity: sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.4.2': + resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.17.0': + resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@1.2.1': + resolution: {integrity: sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + + '@eslint/css-tree@4.0.4': + resolution: {integrity: sha512-nxMparyhqVWQvadx9x8dIfubfIPOE+X2b2waua8fzdnM9vdp9rgVtwEZlG0TmCwEUz/d/f40fzvO/eqBwdxz0A==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + + '@eslint/eslintrc@3.3.5': + resolution: {integrity: sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.39.4': + resolution: {integrity: sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.7': + resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.4.1': + resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@exodus/bytes@1.15.1': + resolution: {integrity: sha512-S6mL0yNB/Abt9Ei4tq8gDhcczc4S3+vQ4ra7vxnAf+YHC02srtqxKKZghx2Dq6p0e66THKwR6r8N6P95wEty7Q==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + peerDependencies: + '@noble/hashes': ^1.8.0 || ^2.0.0 + peerDependenciesMeta: + '@noble/hashes': + optional: true + + '@faker-js/faker@10.4.0': + resolution: {integrity: sha512-sDBWI3yLy8EcDzgobvJTWq1MJYzAkQdpjXuPukga9wXonhpMRvd1Izuo2Qgwey2OiEoRIBr35RMU9HJRoOHzpw==} + engines: {node: ^20.19.0 || ^22.13.0 || ^23.5.0 || >=24.0.0, npm: '>=10'} + + '@floating-ui/core@0.7.3': + resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==} + + '@floating-ui/core@1.7.5': + resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==} + + '@floating-ui/dom@0.5.4': + resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==} + + '@floating-ui/dom@1.7.6': + resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==} + + '@floating-ui/react-dom@2.1.8': + resolution: {integrity: sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@floating-ui/utils@0.2.11': + resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==} + + '@fontsource-variable/inclusive-sans@5.2.8': + resolution: {integrity: sha512-CSRL3U4GKwaDALSvBvbm8xyWvfZT4cizRwOhq2ABwLusdoufuweCX0jkl/jHapeQxJ0ld8auxmnTs9Px+4mgDw==} + + '@fontsource-variable/nunito@5.2.7': + resolution: {integrity: sha512-2N8QhatkyKgSUbAGZO2FYLioxA32+RyI1EplVLawbpkGjUeui9Qg9VMrpkCaik1ydjFjfLV+kzQ0cGEsMrMenQ==} + + '@hexagon/base64@1.1.28': + resolution: {integrity: sha512-lhqDEAvWixy3bZ+UOYbPwUbBkwBq5C1LAJ/xPC8Oi+lL54oyakv/npbA0aU2hgCsx/1NUd4IBvV03+aUBWxerw==} + + '@hono/node-server@1.19.11': + resolution: {integrity: sha512-dr8/3zEaB+p0D2n/IUrlPF1HZm586qgJNXK1a9fhg/PzdtkK7Ksd5l312tJX2yBuALqDYBlG20QEbayqPyxn+g==} + engines: {node: '>=18.14.1'} + peerDependencies: + hono: ^4 + + '@humanfs/core@0.19.2': + resolution: {integrity: sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.8': + resolution: {integrity: sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==} + engines: {node: '>=18.18.0'} + + '@humanfs/types@0.15.0': + resolution: {integrity: sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@img/colour@1.1.0': + resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==} + engines: {node: '>=18'} + + '@img/sharp-darwin-arm64@0.34.5': + resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.34.5': + resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.2.4': + resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.2.4': + resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.2.4': + resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-arm@1.2.4': + resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-ppc64@1.2.4': + resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-riscv64@1.2.4': + resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-s390x@1.2.4': + resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linux-x64@1.2.4': + resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@img/sharp-linux-arm64@0.34.5': + resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-arm@0.34.5': + resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-ppc64@0.34.5': + resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-riscv64@0.34.5': + resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-s390x@0.34.5': + resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@img/sharp-linux-x64@0.34.5': + resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@img/sharp-linuxmusl-arm64@0.34.5': + resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@img/sharp-linuxmusl-x64@0.34.5': + resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@img/sharp-wasm32@0.34.5': + resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-arm64@0.34.5': + resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-ia32@0.34.5': + resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.34.5': + resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@internationalized/date@3.12.2': + resolution: {integrity: sha512-FY1Y+H64NDs+HAF6omlnWxm3mEpfgaCSWtL5l551ZZfImA+kGjPFgrnJrGjH6lfmLL0g8Z/mBu1R3kufeCp6Jw==} + + '@internationalized/number@3.6.7': + resolution: {integrity: sha512-3ji1fcrT+FPAK86UqEhB/psHixYo6niWPJtt7+qRaYFynt/BaJG8GhAPimtWUpEiVSTq8ZM8L5psMxGquiB/Vg==} + + '@internationalized/string@3.2.9': + resolution: {integrity: sha512-kzP/M/mbQxODlmOt4bIQZ2SBVUWUSqMLXooXixnX7noche8WHaQcA+nwFN1K2KCF/cp+LDUhcJsCicwkvhD1pg==} + + '@joshwooding/vite-plugin-react-docgen-typescript@0.7.0': + resolution: {integrity: sha512-qvsTEwEFefhdirGOPnu9Wp6ChfIwy2dBCRuETU3uE+4cC+PFoxMSiiEhxk4lOluA34eARHA0OxqsEUYDqRMgeQ==} + peerDependencies: + typescript: '>= 4.3.x' + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + + '@jridgewell/gen-mapping@0.3.13': + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.11': + resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@jridgewell/trace-mapping@0.3.31': + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + + '@kurkle/color@0.3.4': + resolution: {integrity: sha512-M5UknZPHRu3DEDWoipU6sE8PdkZ6Z/S+v4dD+Ke8IaNlpdSQah50lz1KtcFBa2vsdOnwbbnxJwVM4wty6udA5w==} + + '@levischuck/tiny-cbor@0.2.11': + resolution: {integrity: sha512-llBRm4dT4Z89aRsm6u2oEZ8tfwL/2l6BwpZ7JcyieouniDECM5AqNgr/y08zalEIvW3RSK4upYyybDcmjXqAow==} + + '@mapbox/mapbox-gl-supported@3.0.0': + resolution: {integrity: sha512-2XghOwu16ZwPJLOFVuIOaLbN0iKMn867evzXFyf0P22dqugezfJwLmdanAgU25ITvz1TvOfVP4jsDImlDJzcWg==} + + '@mapbox/point-geometry@1.1.0': + resolution: {integrity: sha512-YGcBz1cg4ATXDCM/71L9xveh4dynfGmcLDqufR+nQQy3fKwsAZsWd/x4621/6uJaeB9mwOHE6hPeDgXz9uViUQ==} + + '@mapbox/search-js-core@1.5.1': + resolution: {integrity: sha512-aXv9LoN8FvTkMhOOWxIEwFsh8aZFMid1xZfGD71nxWGEWG+TufjCdMCExOI/q7XI49xR1+kEc3ONI21X484uow==} + engines: {node: '>=12.20.1'} + + '@mapbox/search-js-react@1.5.1': + resolution: {integrity: sha512-+5t7WkAOhpVvqWF9A+BZYEjkFaZ6i5lvLwkXqV5a/UrpsHCCDpcg2Ii5TKvtCJ1GW7VVnCocDH2aF49tIvtM2g==} + engines: {node: '>=12.20.1'} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@mapbox/search-js-web@1.5.1': + resolution: {integrity: sha512-hhPbcbamv8Mzitzwgzzxac7GA1TUW5S4aKGDdDkOgbgTyoudunSm4Jem364yxv4bJi4dPFk+WSyhNdF1m5VCkw==} + engines: {node: '>=12.20.1'} + peerDependencies: + mapbox-gl: '>=2.7.0' + + '@mapbox/sphericalmercator@1.2.0': + resolution: {integrity: sha512-ZTOuuwGuMOJN+HEmG/68bSEw15HHaMWmQ5gdTsWdWsjDe56K1kGvLOK6bOSC8gWgIvEO0w6un/2Gvv1q5hJSkQ==} + hasBin: true + + '@mapbox/tiny-sdf@2.2.0': + resolution: {integrity: sha512-LVL4wgI9YAum5V+LNVQO6QgFBPw7/MIIY4XJPNsPDMrjEwcE+JfKk1LuIl8GnF197ejVdC9QdPaxrx5gfgdGXg==} + + '@mapbox/unitbezier@0.0.1': + resolution: {integrity: sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==} + + '@mapbox/vector-tile@2.0.5': + resolution: {integrity: sha512-pXj8m7KTsqZt+1jsE0xIpGvqTSbblfkuEJL/NJmNePMtEwxO8V3XMDo9WMSfDeqHvCtBI9Lmt4mGcGR10zecmw==} + + '@mdx-js/react@3.1.1': + resolution: {integrity: sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==} + peerDependencies: + '@types/react': '>=16' + react: '>=16' + + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4': + resolution: {integrity: sha512-LCkGo6JDfaBhgST7UpPWgNgLINpcpabaHfyz5OBx75nUYxBsaEPxjnyNjWpeb/xBup/682QnBfRBy2/LvPutZQ==} + cpu: [arm64] + os: [darwin] + + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.4': + resolution: {integrity: sha512-zExlW9zUJKZH/tOtVMttwjKa4Xm/3KcNjnE3dPN92uCktwavMxpgCA3MoJK/DOnTWsQgo224OaST27/mPNAf+w==} + cpu: [x64] + os: [darwin] + + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4': + resolution: {integrity: sha512-dgX0P/9wGPJeHFBG+ZmhgE6bmtMt7NP5CRBGyyktpopdk/mW4POnrpQsSLtKI1dwpc+pPLuXHDh6vvskyQE/sw==} + cpu: [arm64] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.4': + resolution: {integrity: sha512-Tg3yX65f5GbtXLkrYEHE5oibZG9epyYWas7FogTTEJeDEF9JlXJzKgXaNhT3UXlTOeA+AfZpYZYZ0uPj7Cfquw==} + cpu: [arm] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.4': + resolution: {integrity: sha512-8TNXMEjJc3QEy7R/x1INhgiU+XakDAFUzBhaz7+Rbrs8NH5UQeHQxxmzsSBJGyV6I1jW79undiQm8tOI+D+8FQ==} + cpu: [x64] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4': + resolution: {integrity: sha512-CmCXPQrkbwExx3j946/PtHWHbYJiCRBRDl4BlkRQcJB/YOwQxJRTpoo7aTsortjgoJ1x7opzTSxn7C+ASSLVjQ==} + cpu: [x64] + os: [win32] + + '@napi-rs/wasm-runtime@1.1.4': + resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==} + peerDependencies: + '@emnapi/core': ^1.7.1 + '@emnapi/runtime': ^1.7.1 + + '@neoconfetti/react@1.0.0': + resolution: {integrity: sha512-klcSooChXXOzIm+SE5IISIAn3bYzYfPjbX7D7HoqZL84oAfgREeSg5vSIaSFH+DaGzzvImTyWe1OyrJ67vik4A==} + + '@neondatabase/serverless@1.1.0': + resolution: {integrity: sha512-r3ZZhRjEcfEdKIZnoB1RusNgvHuaBRqfCzV4Gi+5A9yUX0S4HTws/ASWqt13wL4y4I+0rqsWGdA2w7EQXHi3+Q==} + engines: {node: '>=19.0.0'} + + '@next/env@16.0.0': + resolution: {integrity: sha512-s5j2iFGp38QsG1LWRQaE2iUY3h1jc014/melHFfLdrsMJPqxqDQwWNwyQTcNoUSGZlCVZuM7t7JDMmSyRilsnA==} + + '@next/env@16.2.6': + resolution: {integrity: sha512-gd8HoHN4ufj73WmR3JmVolrpJR47ILK6LouP5xElPglaVxir6e1a7VzvTvDWkOoPXT9rkkTzyCxBu4yeZfZwcw==} + + '@next/eslint-plugin-next@16.2.6': + resolution: {integrity: sha512-Z8l6o4JWKUl755x4R+wogD86KPeU+Ckw4K+SYG4kHeOJtRenDeK+OSbGcqZpDtbwn9DsJVdir2UxmwXuinUbUw==} + + '@next/swc-darwin-arm64@16.2.6': + resolution: {integrity: sha512-ZJGkkcNfYgrrMkqOdZ7zoLa1TOy0qpcMfk/z4Mh/FKUz40gVO+HNQWqmLxf67Z5WB64DRp0dhEbyHfel+6sJUg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@16.2.6': + resolution: {integrity: sha512-v/YLBHIY132Ced3puBJ7YJKw1lqsCrgcNo2aRJlCEyQrrCeRJlvGlnmxhPxNQI3KE3N1DN5r9TPNPvka3nq5RQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@16.2.6': + resolution: {integrity: sha512-RPOvqlYBbcQjkz9VQQDZ2T2bARIjXZV1KFlt+V2Mr6SW/e4I9fcKsaA0hdyf2FHoTlsV2xnBd5Y912rP/1Ce6w==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@next/swc-linux-arm64-musl@16.2.6': + resolution: {integrity: sha512-URUTu1+dMkxJsPFgm+OeEvq9wf5sujw0EvgYy80TDGHTSLTnIHeqb0Eu8A3sC95IRgjejQL+kC4mw+4yPxiAXA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@next/swc-linux-x64-gnu@16.2.6': + resolution: {integrity: sha512-DOj182mPV8G3UkrayLoREM5YEYI+Dk5wv7Ox9xl1fFibAELEsFD0lDPfHIeILlutMMfdyhlzYPELG3peuKaurw==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@next/swc-linux-x64-musl@16.2.6': + resolution: {integrity: sha512-HKQ5SP/V/ub73UvF7n/zeJlxk2kLmtL7Wzrg4WfmkjmNos5onJ2tKu7yZOPdL18A6Svfn3max29ym+ry7NkK4g==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@next/swc-win32-arm64-msvc@16.2.6': + resolution: {integrity: sha512-LZXpTlPyS5v7HhSmnvsLGP3iIYgYOBnc8r8ArlT55sGHV89bR2HlDdBjWQ+PY6SJMmk8TuVGFuxalnP3k/0Dwg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-x64-msvc@16.2.6': + resolution: {integrity: sha512-F0+4i0h9J6C4eE3EAPWsoCk7UW/dbzOjyzxY0qnDUOYFu6FFmdZ6l97/XdV3/Nz3VYyO7UWjyEJUXkGqcoXfMA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@noble/hashes@2.2.0': + resolution: {integrity: sha512-IYqDGiTXab6FniAgnSdZwgWbomxpy9FtYvLKs7wCUs2a8RkITG+DFGO1DM9cr+E3/RgADRpFjrKVaJ1z6sjtEg==} + engines: {node: '>= 20.19.0'} + + '@nodable/entities@2.1.1': + resolution: {integrity: sha512-Pig3HxDIoMgjdEH8OCf/dkcTmLFjJRjWuq8jSnklu284/TKOPibSRERmOykiwmyXTtv61mP+44f3GMx0tLAyjg==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@opentelemetry/api-logs@0.208.0': + resolution: {integrity: sha512-CjruKY9V6NMssL/T1kAFgzosF1v9o6oeN+aX5JB/C/xPNtmgIJqcXHG7fA82Ou1zCpWGl4lROQUKwUNE1pMCyg==} + engines: {node: '>=8.0.0'} + + '@opentelemetry/api@1.9.1': + resolution: {integrity: sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==} + engines: {node: '>=8.0.0'} + + '@opentelemetry/core@2.2.0': + resolution: {integrity: sha512-FuabnnUm8LflnieVxs6eP7Z383hgQU4W1e3KJS6aOG3RxWxcHyBxH8fDMHNgu/gFx/M2jvTOW/4/PHhLz6bjWw==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/core@2.7.1': + resolution: {integrity: sha512-QAqIj32AtK6+pEVNG7EOVxHdE06RP+FM5qpiEJ4RtDcFIqKUZHYhl7/7UY5efhwmwNAg7j8QbJVBLxMerc0+gw==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/exporter-logs-otlp-http@0.208.0': + resolution: {integrity: sha512-jOv40Bs9jy9bZVLo/i8FwUiuCvbjWDI+ZW13wimJm4LjnlwJxGgB+N/VWOZUTpM+ah/awXeQqKdNlpLf2EjvYg==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/otlp-exporter-base@0.208.0': + resolution: {integrity: sha512-gMd39gIfVb2OgxldxUtOwGJYSH8P1kVFFlJLuut32L6KgUC4gl1dMhn+YC2mGn0bDOiQYSk/uHOdSjuKp58vvA==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/otlp-transformer@0.208.0': + resolution: {integrity: sha512-DCFPY8C6lAQHUNkzcNT9R+qYExvsk6C5Bto2pbNxgicpcSWbe2WHShLxkOxIdNcBiYPdVHv/e7vH7K6TI+C+fQ==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/resources@2.2.0': + resolution: {integrity: sha512-1pNQf/JazQTMA0BiO5NINUzH0cbLbbl7mntLa4aJNmCCXSj0q03T5ZXXL0zw4G55TjdL9Tz32cznGClf+8zr5A==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.10.0' + + '@opentelemetry/resources@2.7.1': + resolution: {integrity: sha512-DeT6KKolmC4e/dRQvMQ/RwlnzhaqeiFOXY5ngoOPJ07GgVVKxZOg9EcrNZb5aTzUn+iCrJldAgOfQm1O/QfPAQ==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.10.0' + + '@opentelemetry/sdk-logs@0.208.0': + resolution: {integrity: sha512-QlAyL1jRpOeaqx7/leG1vJMp84g0xKP6gJmfELBpnI4O/9xPX+Hu5m1POk9Kl+veNkyth5t19hRlN6tNY1sjbA==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.4.0 <1.10.0' + + '@opentelemetry/sdk-metrics@2.2.0': + resolution: {integrity: sha512-G5KYP6+VJMZzpGipQw7Giif48h6SGQ2PFKEYCybeXJsOCB4fp8azqMAAzE5lnnHK3ZVwYQrgmFbsUJO/zOnwGw==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.9.0 <1.10.0' + + '@opentelemetry/sdk-trace-base@2.2.0': + resolution: {integrity: sha512-xWQgL0Bmctsalg6PaXExmzdedSp3gyKV8mQBwK/j9VGdCDu2fmXIb2gAehBKbkXCpJ4HPkgv3QfoJWRT4dHWbw==} + engines: {node: ^18.19.0 || >=20.6.0} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.10.0' + + '@opentelemetry/semantic-conventions@1.41.1': + resolution: {integrity: sha512-/UhIkaZgPutTFmQ7RnIJGgDXZmtEJ7Dvi86xNTFWcnRxVRNk/aotsqDJYeEvDP+FSMB2SdW+pQzNMcWP0rwuNA==} + engines: {node: '>=14'} + + '@oxc-parser/binding-android-arm-eabi@0.127.0': + resolution: {integrity: sha512-0LC7ye4hvqbIKxAzThzvswgHLFu2AURKzYLeSVvLdu2TBOYWQDmHnTqPLeA597BcUCxiLqLsS4CJ5uoI5WYWCQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [android] + + '@oxc-parser/binding-android-arm-eabi@0.133.0': + resolution: {integrity: sha512-l/44caGse+VpnY9gx0yvvc5QnnG3yG1FO3KZgYvNL1GZrfK86zIwAOgGEVlxDyRymzrU/KHiblPFpevKOmJmUA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [android] + + '@oxc-parser/binding-android-arm64@0.127.0': + resolution: {integrity: sha512-b5jtVTH6AU5CJXHNdj7Jj9IEiR9yVjjnwHzPJhGyHGPdcsZSzBCkS9GBbV33niRMvKthDwQRFRJfI4a+k4PvYg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@oxc-parser/binding-android-arm64@0.133.0': + resolution: {integrity: sha512-KUHmPMziLBp4u+zbrLdB7iWS7KshuZe+RAp7ELnY9SI9nNXBZ+dp8fiBqWOxhXqn+FQg3a4UcQhwmsJOKV8Jjg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@oxc-parser/binding-darwin-arm64@0.127.0': + resolution: {integrity: sha512-obCE8B7ISKkJidjlhv9xRGJPOSDG2Yu6PRga9Ruaz35uintHxbp1Ki/Yc71wx4rj3Edrm0a1kzG1TAwit0wFpg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@oxc-parser/binding-darwin-arm64@0.133.0': + resolution: {integrity: sha512-q8dWmnU/8ea2tga9w2f1PinQ5rcMPDUGkF64T189b65YMjUomET4oy5oRldOr4AwOQkneOG/Zttnz1Dvrc62wg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@oxc-parser/binding-darwin-x64@0.127.0': + resolution: {integrity: sha512-JL6Xb5IwPQT8rUzlpsX7E+AgfcdNklXNPFp8pjCQQ5MQOQo5rtEB2ui+3Hgg9Sn7Y9Egj6YOLLiHhLpdAe12Aw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@oxc-parser/binding-darwin-x64@0.133.0': + resolution: {integrity: sha512-cOKeIELIB2bJnCKwqx4Rdj+1Lss/U6uCbLxRySZrhyOOQa1flKhwZFjEHRHxk8fU1NKmhK5OnTdPQ4CpjuFuVw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@oxc-parser/binding-freebsd-x64@0.127.0': + resolution: {integrity: sha512-SDQ/3MQFw58fqQz3Z1PhSKFF3JoCF4gmlNjziDm8X02tTahCw0qJbd7FGPDKw1i4VTBZene9JPyC3mHtSvi+wA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@oxc-parser/binding-freebsd-x64@0.133.0': + resolution: {integrity: sha512-OpaSv4pW3KgFrMYQxTaS0aOE4T1DQF3qZE/4B6uqqv1KgPWWd4UQhJALi8PJPX1RRV5K7ThKXRfF7qGg2+3l1A==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@oxc-parser/binding-linux-arm-gnueabihf@0.127.0': + resolution: {integrity: sha512-Av+D1MIqzV0YMGPT9we2SIZaMKD7Cxs4CvXSx/yxaWHewZjYEjScpOf5igc8IILASViw4WTnjlwUdI1KzVtDHQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm-gnueabihf@0.133.0': + resolution: {integrity: sha512-JGK1wlGrGwxBIlVSF7KWTX1/ru6BEtf28fRROztDRkLfiW+Kxa4onnriezMIiogfn9hVw2KzYcKiLjkLR2ns8A==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm-musleabihf@0.127.0': + resolution: {integrity: sha512-Cs2fdJ8cPpFdeebj6p4dag8A4+56hPvZ0AhQQzlaLswGz1tz7bXt1nETLeorrM9+AMcWFFkqxcXwDGfTVidY8g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm-musleabihf@0.133.0': + resolution: {integrity: sha512-yuZO533Ftonxn/iyoqQzURzLQHMspvsIyfiCSNi1t/ER4eIQaR0SsmUOUm5b/lmSig7IWIUa5/BrbEkAPwcilQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@oxc-parser/binding-linux-arm64-gnu@0.127.0': + resolution: {integrity: sha512-qdOfTcT6SY8gsJrrV92uyEUyjqMGPpIB5JZUG6QN5dukYd+7/j0kX6MwK1DgQj39jtUYixxPiaRUiEN1+0CXgQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-arm64-gnu@0.133.0': + resolution: {integrity: sha512-hvpbqT5pN2rR+3+xtWeizwfR/aZ0vGceg6TqYMl+ToxMpk9/tmnX7kSvQnfEUkoua8mhogzvIKsAkn0wxgblBA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-arm64-musl@0.127.0': + resolution: {integrity: sha512-EoTCZneNFU/P2qrpEM+RHmQwt+CvDkyGESG6qhr7KaegXLZwePfbrkCDfAk8/rhxbDUVGsZILX+2tqPzFtoFWA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-arm64-musl@0.133.0': + resolution: {integrity: sha512-wJQGamIosQBoJHW9+S5XxrtKRo3eyJxsnS1XCPrqN0LHi8uw1pTqqTfn3t/NVuvbBg7Pumn4ez9Eidgcn0xbEg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-ppc64-gnu@0.127.0': + resolution: {integrity: sha512-zALjmZYgxFLHjXeudcDF0xFGNydTAtkAeXAr2EuC17ywCyFxcmQra4w0BMde0Yi/re4Bi4iwEoEXtYN7l6eBLQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-ppc64-gnu@0.133.0': + resolution: {integrity: sha512-Koaz32/O5+abIfrNGdyndgRvdOZ9jEf5/z3Ep9h3h2QWpdDiUQpVwgH0OcMXCs+l9aXxPLtkupqyVig9W6FDKw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-riscv64-gnu@0.127.0': + resolution: {integrity: sha512-fPP8M6zQLS7Jz7o9d5ArUSuAuSK3e+WCYVrCpdzeCOejidtZExJ9tjhDrAd3HEPqARBCPmdpqxESPFqy44vkBQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-riscv64-gnu@0.133.0': + resolution: {integrity: sha512-R4vOjWzxhnNWHnVLeiB6jNuIifdy9vcMXZGPc7StXcxBovI+U2zg1QhZ9o8OjV80oGivs1lX5NfPLzk4IPqlRA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-riscv64-musl@0.127.0': + resolution: {integrity: sha512-7IcC4Ao02oGpfnjt+X/oF4U2mllo2qoSkw5xxiXNKL9MCTsTiAC6616beOuehdxGcnz1bRoPC1RQ2f1GQDdN+g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-riscv64-musl@0.133.0': + resolution: {integrity: sha512-iwgBNUTHiMdxARLYuM0SBlnYeb19iw1Ea5M+4ERZupCsBMLArti6FyZ6UfFjJxIiTDr2oW2DGQFxlQVQ/dW9rA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-s390x-gnu@0.127.0': + resolution: {integrity: sha512-pbXIhiNFHoqWeqDNLiJ9JkpHz1IM9k4DXa66x+1GTWMG7iLxtkXgE53iiuKSXwmk3zIYmaPVfBvgcAhS583K4Q==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-s390x-gnu@0.133.0': + resolution: {integrity: sha512-ZwZNo8FZmB/gVfboQl+wXilBigGl+6nQQs+nITOeAP/HcAOjiHl6XZJL9F/KXNEspODQcbjAiyjUbeCJd9a0fA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-x64-gnu@0.127.0': + resolution: {integrity: sha512-MYCguB9RvBvlSd6gbuNI7QwiLoCCAlGnlRJFPrzLI6U1/9wkC/WK6LtBAUln55H1Ctqw45PWmqrobKoMhsYQzQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-x64-gnu@0.133.0': + resolution: {integrity: sha512-govCvWx1dBlED3uu4qXctxpRcouu9I8Kn+DBktGCl760JtlGJzc9l/OmPJKlYWSbrRqKkMZehNeZ/4Wfma7uSA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@oxc-parser/binding-linux-x64-musl@0.127.0': + resolution: {integrity: sha512-5eY0B/bxf1xIUxb4NOTvOI3KWtBQfPWYyKAzgcrCt0mDibSZygVpO1Pz8bkeiSZ5Jj9+M09dkggG3H8I5d0Uyg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-linux-x64-musl@0.133.0': + resolution: {integrity: sha512-ssTlpXD5Mq9uCssDJPzlRWqBt4Y7Zzd9i+XZhWmK/9Y6KUIuAxVYTYiI8lxcGWi0+3/Cz4A8q9UrD4NK9Y2j7g==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@oxc-parser/binding-openharmony-arm64@0.127.0': + resolution: {integrity: sha512-Gld0ajrFTUXNtdw20fVBuTQx66FA75nIVg+//pPfR3sXkuABB4mTBhl3r9JNzrJpgW//qiwxf0nWXUWGJSL3UQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@oxc-parser/binding-openharmony-arm64@0.133.0': + resolution: {integrity: sha512-51aByfXhPtLEdWG4a2Ihdw6cPWV1ei1AarALpFdDP8MLWDLE2NuUMgbo3DERR2Kt8fT/ok1GUvBiLxVGke9uUQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@oxc-parser/binding-wasm32-wasi@0.127.0': + resolution: {integrity: sha512-T6KVD7rhLzFlwGRXMnxUFfkCZD8FHnb968wVXW1mXzgRFc5RNXOBY2mPPDZ77x5Ln76ltLMgtPg0cOkU1NSrEQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@oxc-parser/binding-wasm32-wasi@0.133.0': + resolution: {integrity: sha512-2e16tkKp+wDO2GTAmXfxbBcCmGEaFPIJEIRBBmVKNVXSc8/fJsSIaBGyFTPHM9ST5GNWgJcYIt94rDTks+PLwA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@oxc-parser/binding-win32-arm64-msvc@0.127.0': + resolution: {integrity: sha512-Ujvw4X+LD1CCGULcsQcvb4YNVoBGqt+JHgNNzGGaCImELiZLk477ifUH53gIbE7EKd933NdTi25JWEr9K2HwXw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@oxc-parser/binding-win32-arm64-msvc@0.133.0': + resolution: {integrity: sha512-KPTNDKbxH1cglrqTyVeXHb4Pk4oksz8EcE1/v8zqU7N4UXbiHfA/IwtXZ2U77fnRAWBbgVkl/lZbL7o3hRdejg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@oxc-parser/binding-win32-ia32-msvc@0.127.0': + resolution: {integrity: sha512-0cwxKO7KHQQQfo4Uf4B2SQrhgm+cJaP9OvFFhx52Tkg4bezsacu83GB2/In5bC415Ueeym+kXdnge/57rbSfTw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@oxc-parser/binding-win32-ia32-msvc@0.133.0': + resolution: {integrity: sha512-Una1bNYv9zCavQrfnDR9wuZVB3itLjCEH4Oz7i6CwAJN/Xq9b+zbbcxmvdkKvvJt4Ngc/MBmIYlbLo3zS4TQ0A==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ia32] + os: [win32] + + '@oxc-parser/binding-win32-x64-msvc@0.127.0': + resolution: {integrity: sha512-rOrnSQSCbhI2kowr9XxE7m9a8oQXnBHjnS6j95LxxAnEZ0+Fz20WlRXG4ondQb+ejjt2KOsa65sE6++L6kUd+w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@oxc-parser/binding-win32-x64-msvc@0.133.0': + resolution: {integrity: sha512-kjBhCiOGSYTwDJQuuZa7a94JbP8htWu7J0X1KwH74kV2K5eYf6eyJRYmkpCDvr0XEL8tMxYI4WU1VekblFCLgg==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@oxc-project/types@0.127.0': + resolution: {integrity: sha512-aIYXQBo4lCbO4z0R3FHeucQHpF46l2LbMdxRvqvuRuW2OxdnSkcng5B8+K12spgLDj93rtN3+J2Vac/TIO+ciQ==} + + '@oxc-project/types@0.132.0': + resolution: {integrity: sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==} + + '@oxc-project/types@0.133.0': + resolution: {integrity: sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==} + + '@oxc-resolver/binding-android-arm-eabi@11.20.0': + resolution: {integrity: sha512-IjfWOXRgJFNdORDl+Uf1aibNgZY2guOD3zmOhx1BGVb/MIiqlFTdmjpQNplSN58lhWehnX4UNqC3QwpUo8pjJg==} + cpu: [arm] + os: [android] + + '@oxc-resolver/binding-android-arm64@11.20.0': + resolution: {integrity: sha512-QqslZAuFQG8Q9xm7JuIn8JUbvywhSBMVhuQHtYW+auirZJloS41oxUUaBXk7uUhZJgp44c5zQLeVvmFaDQB+2Q==} + cpu: [arm64] + os: [android] + + '@oxc-resolver/binding-darwin-arm64@11.20.0': + resolution: {integrity: sha512-MUcavykj2ewlR+kc5arpg4tC2RvzJkUxWtNv74pf7lcNk00GpIpN43vXMj+j6r4eMmfZhlb8hueKoIb8e9kAGQ==} + cpu: [arm64] + os: [darwin] + + '@oxc-resolver/binding-darwin-x64@11.20.0': + resolution: {integrity: sha512-BGB16nRUK5Etiv//ihPyzj8Lj1px0mhh4YIfe0FDf045ywknfSm0GEbiRESpr6Q4K82AvnyaRIhhluHByvS4bg==} + cpu: [x64] + os: [darwin] + + '@oxc-resolver/binding-freebsd-x64@11.20.0': + resolution: {integrity: sha512-JZgtePaqj3qmD5XFHJaSLWzHRxQu0LaPkdoM1KJXYADvAaa83ijXHclV3ej3CueeW0wxfIAbGCZVP45J0CA7uQ==} + cpu: [x64] + os: [freebsd] + + '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0': + resolution: {integrity: sha512-hOQ/p3ry3v3SchUBXicrrnszaI/UmYzM4wtS4RGfwgVUX7a+HbyQSzJ5aOzu+o6XZkFkS3ZXN4PZAzhOb77OSg==} + cpu: [arm] + os: [linux] + + '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0': + resolution: {integrity: sha512-2ArPksaw0AqeuGBfoS715VF+JvJQAhD2niWgjE5hVO+L+nAfikVQopvngCMX9x4BD8itWoQ3dnikrQyl5Ho5Jg==} + cpu: [arm] + os: [linux] + + '@oxc-resolver/binding-linux-arm64-gnu@11.20.0': + resolution: {integrity: sha512-0bJnmYFp62JdZ4nVMDUZ/C58BCZOCcqgKtnUlp7L9Ojf/czIN+3j72YlLPeWLkzlr6SlYvIQA4SGV/HyO0d+qg==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-arm64-musl@11.20.0': + resolution: {integrity: sha512-wKHHzPKZo7Ufhv/Bt6yxT7FOgnIgW4gwXcJUipkShGp68W3wGVqvr1Sr0fY65lN0Oy6y41+g2kIDvkgZaMMUkw==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0': + resolution: {integrity: sha512-RN8goF7Ie0B79L4i4G6OeBocTgSC56vJbQ65VJje+oXnldVpLnOU7j/AQ/dP94TcCS+Yh6WG8u3Qt4ETteXFNQ==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0': + resolution: {integrity: sha512-5l1yU6/xQEqLZRzxqmMxJfWPslpwCmBsdDGaBvABPehxquCXDC7dd7oraNdKSJUMDXSM7VvVj8H2D2FTjU7oWw==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-riscv64-musl@11.20.0': + resolution: {integrity: sha512-xHEvkbgz6UC+A3JOyDQy76LkUaxsNSfIr3/GV8slwZsnuooJiIB34gzJfsyvR4JdCYNUUPsRJc/w/oWkODu+hg==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-linux-s390x-gnu@11.20.0': + resolution: {integrity: sha512-aWPDUUmSeyHvlW+SoEUd+JIJsQhVhu6a5tBpDRMu058naPAchTgAVGCFy35zjbnFlt0i8hLWziff6HX0D3LU4g==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-x64-gnu@11.20.0': + resolution: {integrity: sha512-x2YeSimvhJjKLVD8KSu8f/rqU1potcdEMkApIPJqjZWN7c2Fpt4g2X32WDg1p+XDAmyT7nuQGe0vnhvXeLbH+g==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@oxc-resolver/binding-linux-x64-musl@11.20.0': + resolution: {integrity: sha512-kcRLEIxpZefeYfLChjpgFf3ilBzRDZ+yobMrpRsQlSrxuFGtm3U6PMU7AaEpMqo3NfDGVyJJseAjnRLzMFHjwQ==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@oxc-resolver/binding-openharmony-arm64@11.20.0': + resolution: {integrity: sha512-HHcfnApSZGtKhTiHqe8OZruOZe5XuFQH5/E0Yhj3u8fnFvzkM4/k6WjacUf4SvA0SPEAbfbgYmVPuo0VX/fIBQ==} + cpu: [arm64] + os: [openharmony] + + '@oxc-resolver/binding-wasm32-wasi@11.20.0': + resolution: {integrity: sha512-Tn0y1XOFYHNfK1wp1Z5QK8Rcld/bsOwRISQXfqAZ5IBpv8Gz1IvV39fUWNprqNdRizgcvFhOzWwFun2zkJsyBg==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@oxc-resolver/binding-win32-arm64-msvc@11.20.0': + resolution: {integrity: sha512-qPi25YNPe4YenS8MgsQU2+bIFHxxpLx1LVna2444cEHqNPhNjvWf9zqj4aWE43H9LpAsTmkkAlA3eL5ElBU3mA==} + cpu: [arm64] + os: [win32] + + '@oxc-resolver/binding-win32-x64-msvc@11.20.0': + resolution: {integrity: sha512-Wb14jWEW8huH6It9F6sXd9vrYmIS7pMrgkU6sxpLxkP+9z+wRgs71hUEhRpcn8FOXAFa27FVWfY2tRpbfTzfLw==} + cpu: [x64] + os: [win32] + + '@paralleldrive/cuid2@3.3.0': + resolution: {integrity: sha512-OqiFvSOF0dBSesELYY2CAMa4YINvlLpvKOz/rv6NeZEqiyttlHgv98Juwv4Ch+GrEV7IZ8jfI2VcEoYUjXXCjw==} + hasBin: true + + '@parcel/watcher-android-arm64@2.5.6': + resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.5.6': + resolution: {integrity: sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.5.6': + resolution: {integrity: sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.5.6': + resolution: {integrity: sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.5.6': + resolution: {integrity: sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@parcel/watcher-linux-arm-musl@2.5.6': + resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + libc: [musl] + + '@parcel/watcher-linux-arm64-glibc@2.5.6': + resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@parcel/watcher-linux-arm64-musl@2.5.6': + resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@parcel/watcher-linux-x64-glibc@2.5.6': + resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@parcel/watcher-linux-x64-musl@2.5.6': + resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@parcel/watcher-win32-arm64@2.5.6': + resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.5.6': + resolution: {integrity: sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.5.6': + resolution: {integrity: sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.5.6': + resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==} + engines: {node: '>= 10.0.0'} + + '@peculiar/asn1-android@2.7.0': + resolution: {integrity: sha512-iD3VskhVQnM4nE3PN9cBdPTR7JrqZy3FYk+uD2CeG6DUqKoANqaEfx0f7izPmW+Qm5JBM35ek+viLCmjy18ByQ==} + + '@peculiar/asn1-cms@2.7.0': + resolution: {integrity: sha512-hew63shtzzvBcSHbhm+cyAmKe6AIfinT9hzEqSPjDC6opTTMKmTkQ0gHuN2KsWlvqiKw1S/fS94fhag/FJkioQ==} + + '@peculiar/asn1-csr@2.7.0': + resolution: {integrity: sha512-VVsAyGqErT9D1SY4aEqozThXMVI+ssVRiv2DDeYuvpBKLIgZ3hYs3Ay3u/VSoKq6ESFi9cf6rf3IOOzfwh7oMA==} + + '@peculiar/asn1-ecc@2.7.0': + resolution: {integrity: sha512-n7KEs/Q/wrB415cxy4fHOBhegp4NdJ15fkJPwcB/3/8iNBQC2L/N7SChJPKDJPZGYH0jD4Tg4/0vnHmwghnbKw==} + + '@peculiar/asn1-pfx@2.7.0': + resolution: {integrity: sha512-V/nrlQVmhg7lYAsM7E13UDL5erAwFv6kCIVFqNaMIHSVi7dngcT839JkRTkQBqznMG98l2XjxYk74ZztAohZzA==} + + '@peculiar/asn1-pkcs8@2.7.0': + resolution: {integrity: sha512-9GTl1nE8Mx1kTZ+7QyYatDyKsm34QcWRBFkY1iPvWC3X4Dona5s/tlLiQsx5WzVdZqiMBZNYT0buyw4/vbhnjw==} + + '@peculiar/asn1-pkcs9@2.7.0': + resolution: {integrity: sha512-Bh7m+OuIaSEllPQcSd9OSp93F4ROWH7sbITWV8MI+8dwsjE5111/87VxiWVvYFKyww3vp39geLv9ENqhwWHcew==} + + '@peculiar/asn1-rsa@2.7.0': + resolution: {integrity: sha512-/qvENQrXyTZURjMqSeofHul0JJt2sNSzSwk36pl2olkHbaioMQgrASDZAlHXl0xUlnVbHj0uGgOrBMTb5x2aJQ==} + + '@peculiar/asn1-schema@2.7.0': + resolution: {integrity: sha512-W8ZfWzLmQnrcky+eh3tni4IozMdqBDiHWU0N+vve/UGjMaUs8c0L7A2oEdkBXS8rTpWDpK/aoI3DG/L/hxmxPg==} + + '@peculiar/asn1-x509-attr@2.7.0': + resolution: {integrity: sha512-NS8e7SOgXipkzUPLF/sce7ukpMpWjhxYsH0n6Y+bHYo4TTxOb95Zv7hqwSuL212mj5YxovjdOKQOgH1As3E94w==} + + '@peculiar/asn1-x509@2.7.0': + resolution: {integrity: sha512-mUn9RRrkGDnG4ALfunDmzyRW5dg+sWCj/pfnCCqEHYbkGxEpvUt6iVJv8Yw1cyp6SWZ26ZE5oSmI5SqEaen15g==} + + '@peculiar/utils@2.0.3': + resolution: {integrity: sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==} + + '@peculiar/x509@1.14.3': + resolution: {integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==} + engines: {node: '>=20.0.0'} + + '@pkgr/core@0.3.6': + resolution: {integrity: sha512-SEeaJLb3qBNF/OaXnaR1NmmBbFYk1zC0ZH/52fATcRPLFg/p791YrcyFFy44Bo9sLaGuSuLp5Q6axbb/O+v/RA==} + engines: {node: ^14.18.0 || >=16.0.0} + + '@polka/url@1.0.0-next.29': + resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} + + '@posthog/cli@0.7.14': + resolution: {integrity: sha512-ZuaavNvFxzhPadzdyR5mWlVi11OXX88iKvQmfWUAx6wQNYTGuRgW3tTpMn+F/cfm6H/InnvBRqKwgVuJ/OtUkw==} + engines: {node: '>=14.14', npm: '>=6'} + hasBin: true + + '@posthog/core@1.29.14': + resolution: {integrity: sha512-IqfiD5rxdgPHsZMz45uQu824a5CEnpXRIU6QSoQT4NWjLbzKPMxg5zpHSCz+DMbDJ+Ii53T/tO76jGztpTd7uQ==} + + '@posthog/nextjs-config@1.9.39': + resolution: {integrity: sha512-2f9nkJduavLZFrIdPBDAs1MKrbZuBPGnpu9D4eywifGOhWjTE+eQvDAWwbVxeq7NO7TCfiKR484hhCXdRARBxQ==} + engines: {node: ^20.20.0 || >=22.22.0} + peerDependencies: + next: '>12.1.0' + + '@posthog/plugin-utils@1.1.1': + resolution: {integrity: sha512-vCbaFeuwf9Pc0gI5bkCGvkOn2Bxru2KbZJtOa6loTJjanCNoMsjECEPijr7X5oln1IIg+VKnGiwV4tKY2b7NuQ==} + + '@posthog/types@1.376.5': + resolution: {integrity: sha512-NhpEto2LtaGtdN+xqvh48wiFtAkdA+4onNaUrETnilrvJOqk95jAiPd2n/AXE/TT9zRyivQHhXwFowBInGldiQ==} + + '@posthog/webpack-plugin@1.4.39': + resolution: {integrity: sha512-b3QSefMYv7mkwWWHb8kIYyIGAgan82p8Dkso54awOIDMUAm5tFrny/EJluP3l6CKL3Ox5tvSSfFv/s6o8L2zwQ==} + peerDependencies: + webpack: ^5 + + '@prisma/adapter-neon@7.8.0': + resolution: {integrity: sha512-9MoOjRuY53sQNyji87u1NivsK0tIacoUE3PqTxdG95b7ORn1pzwribH2z83j4Vh3eb9nQ/UC+MTfVW7jCFnXlA==} + + '@prisma/adapter-pg@7.8.0': + resolution: {integrity: sha512-ygb3UkerK3v8MDpXVgCISdRNDozpxh6+JVJgiIGbSr5KBgz10LLf5ejUskPGoXlsIjxsOu6nuy1JVQr2EKGSlg==} + + '@prisma/client-runtime-utils@7.8.0': + resolution: {integrity: sha512-5NQZztQ0oY/ADFkmd9gPuweH5A1/CCY8YQPorLLO0Mu6a87mY5gsnDkzmFmIHs9NFaLnZojzgddFVN4RpKYrdw==} + + '@prisma/client@7.8.0': + resolution: {integrity: sha512-HFp3Dawv/3sU3JtlPha90IB+48lS7zHiH4LKZPjmcE8YH5P9DOXGPvo8dqOtO7MqLDd1p2hOWMcFlRT1DMblHw==} + engines: {node: ^20.19 || ^22.12 || >=24.0} + peerDependencies: + prisma: '*' + typescript: '>=5.4.0' + peerDependenciesMeta: + prisma: + optional: true + typescript: + optional: true + + '@prisma/config@7.8.0': + resolution: {integrity: sha512-HFESzd9rx2ZQxlK+TL7tu1HPvCqrHiL6LCxYykI2c34mvaUuIVVl3lYuicJD/MNnzgPnyeBEMlK4WTomJCV5jw==} + + '@prisma/debug@7.2.0': + resolution: {integrity: sha512-YSGTiSlBAVJPzX4ONZmMotL+ozJwQjRmZweQNIq/ER0tQJKJynNkRB3kyvt37eOfsbMCXk3gnLF6J9OJ4QWftw==} + + '@prisma/debug@7.8.0': + resolution: {integrity: sha512-p+QZReysDUqXC+mk17q9a+Y/qzh4c2KYliDK30buYUyfrGeTGSyfmc0AIrJRhZJrLHhRiJa9Au/J72h3C+szvA==} + + '@prisma/dev@0.24.3': + resolution: {integrity: sha512-ffHlQuKXZiaDt9Go0OnCTdJZrHxK0k7omJKNV86/VjpsXu5EIHZLK0T7JSWgvNlJwh56kW9JFu9v0qJciFzepg==} + + '@prisma/driver-adapter-utils@7.8.0': + resolution: {integrity: sha512-/Q13o0ZT0rjc1Xk0Q9KhZYwuq2EW/vSbWUBKfgEKkaCuB/Sg6bqnjmTZqC5cD4d6y1vfFAEwBRzfzoSMIVJ55A==} + + '@prisma/engines-version@7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a': + resolution: {integrity: sha512-fJPQxCkLgA5EayWaW8eArgCvjJ+N+Kz3VyeNKMEeYiQC4alNkxRKFVAGxv/ZUzuJISKqdw+zGeDbS6mn6RCPOA==} + + '@prisma/engines@7.8.0': + resolution: {integrity: sha512-jx3rCnNNrt5uzbkKlegtQ2GZHxSlihMCzutgT/BP6UIDF1r9tDI39hV/0T/cHZgzJ3ELbuQPXlVZy+Y1n0pcgw==} + + '@prisma/fetch-engine@7.8.0': + resolution: {integrity: sha512-gwB0Euiz/DDRyxFRpLXYlK3RfaZUj1c5dAYMuhZYfApg7arknJlcb9bIsOHDppJmbqYaVA+yBIiFMDBfprsNPQ==} + + '@prisma/get-platform@7.2.0': + resolution: {integrity: sha512-k1V0l0Td1732EHpAfi2eySTezyllok9dXb6UQanajkJQzPUGi3vO2z7jdkz67SypFTdmbnyGYxvEvYZdZsMAVA==} + + '@prisma/get-platform@7.8.0': + resolution: {integrity: sha512-WlxgRGnolL8VH2EmkH1R/DkKNr/mVdS3G2h42IZFFZ3eUrH9OT6t73kIOSlkkrv50wG123Iq8d96ufv5LlZktw==} + + '@prisma/query-plan-executor@7.2.0': + resolution: {integrity: sha512-EOZmNzcV8uJ0mae3DhTsiHgoNCuu1J9mULQpGCh62zN3PxPTd+qI9tJvk5jOst8WHKQNwJWR3b39t0XvfBB0WQ==} + + '@prisma/streams-local@0.1.2': + resolution: {integrity: sha512-l49yTxKKF2odFxaAXTmwmkBKL3+bVQ1tFOooGifu4xkdb9NMNLxHj27XAhTylWZod8I+ISGM5erU1xcl/oBCtg==} + engines: {bun: '>=1.3.6', node: '>=22.0.0'} + + '@prisma/studio-core@0.27.3': + resolution: {integrity: sha512-AADjNFPdsrglxHQVTmHFqv6DuKQZ5WY4p5/gVFY017twvNrSwpLJ9lqUbYYxEu2W7nbvVxTZA8deJ8LseNALsw==} + engines: {node: ^20.19 || ^22.12 || >=24.0, pnpm: '8'} + peerDependencies: + '@types/react': ^18.0.0 || ^19.0.0 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + + '@protobufjs/aspromise@1.1.2': + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + + '@protobufjs/base64@1.1.2': + resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} + + '@protobufjs/codegen@2.0.5': + resolution: {integrity: sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==} + + '@protobufjs/eventemitter@1.1.1': + resolution: {integrity: sha512-vW1GmwMZNnL+gMRaovlh9yZX74kc+TTU3FObkkurpMaRtBfLP3ldjS9KQWlwZgraRE0+dheEEoAxdzcJQ8eXZg==} + + '@protobufjs/fetch@1.1.1': + resolution: {integrity: sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==} + + '@protobufjs/float@1.0.2': + resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} + + '@protobufjs/inquire@1.1.2': + resolution: {integrity: sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==} + + '@protobufjs/path@1.1.2': + resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} + + '@protobufjs/pool@1.1.0': + resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} + + '@protobufjs/utf8@1.1.1': + resolution: {integrity: sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==} + + '@radix-ui/primitive@1.1.3': + resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==} + + '@radix-ui/react-compose-refs@1.1.2': + resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-primitive@2.1.3': + resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-slot@1.2.3': + resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-slot@1.2.4': + resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-toggle@1.1.10': + resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==} + peerDependencies: + '@types/react': '*' + '@types/react-dom': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@radix-ui/react-use-controllable-state@1.2.2': + resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-effect-event@0.0.2': + resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@radix-ui/react-use-layout-effect@1.1.1': + resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==} + peerDependencies: + '@types/react': '*' + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc + peerDependenciesMeta: + '@types/react': + optional: true + + '@react-types/shared@3.35.0': + resolution: {integrity: sha512-iNWvuzEwANttpQpdlu8nPBtdHb0mcCMj1ZTH//iRB5E/14IAnyRlR25rxH7pNLyzHINsPGEKnWvpwDMCT6vziQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@reduxjs/toolkit@2.12.0': + resolution: {integrity: sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==} + peerDependencies: + react: ^16.9.0 || ^17.0.0 || ^18 || ^19 + react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0 + peerDependenciesMeta: + react: + optional: true + react-redux: + optional: true + + '@rolldown/binding-android-arm64@1.0.2': + resolution: {integrity: sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [android] + + '@rolldown/binding-darwin-arm64@1.0.2': + resolution: {integrity: sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [darwin] + + '@rolldown/binding-darwin-x64@1.0.2': + resolution: {integrity: sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [darwin] + + '@rolldown/binding-freebsd-x64@1.0.2': + resolution: {integrity: sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [freebsd] + + '@rolldown/binding-linux-arm-gnueabihf@1.0.2': + resolution: {integrity: sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm] + os: [linux] + + '@rolldown/binding-linux-arm64-gnu@1.0.2': + resolution: {integrity: sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-arm64-musl@1.0.2': + resolution: {integrity: sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rolldown/binding-linux-ppc64-gnu@1.0.2': + resolution: {integrity: sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-s390x-gnu@1.0.2': + resolution: {integrity: sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-x64-gnu@1.0.2': + resolution: {integrity: sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rolldown/binding-linux-x64-musl@1.0.2': + resolution: {integrity: sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rolldown/binding-openharmony-arm64@1.0.2': + resolution: {integrity: sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [openharmony] + + '@rolldown/binding-wasm32-wasi@1.0.2': + resolution: {integrity: sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [wasm32] + + '@rolldown/binding-win32-arm64-msvc@1.0.2': + resolution: {integrity: sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [arm64] + os: [win32] + + '@rolldown/binding-win32-x64-msvc@1.0.2': + resolution: {integrity: sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==} + engines: {node: ^20.19.0 || >=22.12.0} + cpu: [x64] + os: [win32] + + '@rolldown/pluginutils@1.0.1': + resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} + + '@rollup/pluginutils@5.4.0': + resolution: {integrity: sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rtsao/scc@1.1.0': + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + + '@simplewebauthn/browser@13.3.0': + resolution: {integrity: sha512-BE/UWv6FOToAdVk0EokzkqQQDOWtNydYlY6+OrmiZ5SCNmb41VehttboTetUM3T/fr6EAFYVXjz4My2wg230rQ==} + + '@simplewebauthn/server@13.3.1': + resolution: {integrity: sha512-GV/oM/qeycWn8p42JZIMJBsXWQcNFg+nJFzeQTnMA4gN8mXg0+HZFWJerHg8ZN/zlveMS3iV1wzuFpOVWS/46w==} + engines: {node: '>=20.0.0'} + + '@smithy/core@3.24.5': + resolution: {integrity: sha512-Kt8phUg45M15EjhYAbZ+fFikYneijLu9Liugz8ZsYz2i8j0hzGv27LWKpEHYRfvj+LyCOSijpcR/2i8RouV+cA==} + engines: {node: '>=18.0.0'} + + '@smithy/credential-provider-imds@4.3.6': + resolution: {integrity: sha512-tHhdiWZfG1ZIh2YcRfPJmY2gHcBmqbAzqm3ER4TIDFYsSEqTD5tICT7cgQ/kI8LRakxp12myOYyK68XPn7MnHw==} + engines: {node: '>=18.0.0'} + + '@smithy/fetch-http-handler@5.4.5': + resolution: {integrity: sha512-SK3VMeH0fibgdTg2QeB+O4p7Yy/2E5HBOHJeC58FshkDdeuX8lOgO7PfjYfLyPLP1ch55j91cQqKBzDS0mRjSQ==} + engines: {node: '>=18.0.0'} + + '@smithy/is-array-buffer@2.2.0': + resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==} + engines: {node: '>=14.0.0'} + + '@smithy/node-http-handler@4.7.5': + resolution: {integrity: sha512-3dA9TQ+ybRSZ/m0wnbZhiBy4Dezjgq1Ib/ZZrYTpJDBgpoLLU/SDzZc/g0x0MNAdOJe1wPcM+x2PBRmoOur+Sw==} + engines: {node: '>=18.0.0'} + + '@smithy/signature-v4@5.4.5': + resolution: {integrity: sha512-QBJKWGqIknH0dc9LWpfH1mkdokAx6iXYN3UcQ3eY6uIEyScuoQAhfl94ge7ozUy9WgFUdE8xsvwBjaYBbWmPNA==} + engines: {node: '>=18.0.0'} + + '@smithy/types@4.14.2': + resolution: {integrity: sha512-P+otAxbV4CqBybp7EkcJCrig63yE2E7PuNVOmilVMRcx/O+QDzGULTrKsq4DV13gSfak9ObPrWaHl/9bL5YcWw==} + engines: {node: '>=18.0.0'} + + '@smithy/util-buffer-from@2.2.0': + resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==} + engines: {node: '>=14.0.0'} + + '@smithy/util-utf8@2.3.0': + resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==} + engines: {node: '>=14.0.0'} + + '@standard-schema/spec@1.0.0': + resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} + + '@standard-schema/spec@1.0.0-beta.4': + resolution: {integrity: sha512-d3IxtzLo7P1oZ8s8YNvxzBUXRXojSut8pbPrTYtzsc5sn4+53jVqbk66pQerSZbZSJZQux6LkclB/+8IDordHg==} + + '@standard-schema/spec@1.1.0': + resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} + + '@standard-schema/utils@0.3.0': + resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==} + + '@storybook/addon-a11y@10.4.1': + resolution: {integrity: sha512-MGft/IXjJ20a9KbaSVG9bHTAAoanbucKrgEiJJRNqpim8DsXA01+XTdSk17LmiOCB203Rrq9mWgdQ6+79cc8iA==} + peerDependencies: + storybook: ^10.4.1 + + '@storybook/addon-docs@10.4.1': + resolution: {integrity: sha512-IYqUdjoZe4VO2LFZlKL/gwy7DsQSWCq6hX+zc1MBmZo04yycDASk1tte57n9pdlW3ajw9yYMF/+lVBi+xQjyvw==} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^10.4.1 + peerDependenciesMeta: + '@types/react': + optional: true + + '@storybook/addon-vitest@10.4.1': + resolution: {integrity: sha512-ymrX9EOou1x3d21iDhjP3j3XfhOAiflhlPZWKcipULBoJCq/aZPbV68EghzovkJNuGRl9ezMYxbbKxwrMmCmGg==} + peerDependencies: + '@vitest/browser': ^3.0.0 || ^4.0.0 + '@vitest/browser-playwright': ^4.0.0 + '@vitest/runner': ^3.0.0 || ^4.0.0 + storybook: ^10.4.1 + vitest: ^3.0.0 || ^4.0.0 + peerDependenciesMeta: + '@vitest/browser': + optional: true + '@vitest/browser-playwright': + optional: true + '@vitest/runner': + optional: true + vitest: + optional: true + + '@storybook/builder-vite@10.4.1': + resolution: {integrity: sha512-/oyQrXoNOqN8SW5hNnYP+I1uvgFxKxWXj/EP6NXYzc5SQwImofgru+D2+6gDhL0+Q//+Hx05DJoQO2omvUJ8bQ==} + peerDependencies: + storybook: ^10.4.1 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@storybook/csf-plugin@10.4.1': + resolution: {integrity: sha512-WdPepGBxDGOUDjYd8KxMtcf+us/2PAcnBczl77XtrnxxHNs0jWesxKkiJ9yiuGrge4BPhDeAj6rxjbBoaHxLBA==} + peerDependencies: + esbuild: '*' + rollup: '*' + storybook: ^10.4.1 + vite: '*' + webpack: '*' + peerDependenciesMeta: + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true + + '@storybook/global@5.0.0': + resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} + + '@storybook/icons@2.0.2': + resolution: {integrity: sha512-KZBCpXsshAIjczYNXR/rlxEtCUX/eAbpFNwKi8bcOomrLA4t/SyPz5RF+lVPO2oZBUE4sAkt43mfJUevQDSEEw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@storybook/nextjs-vite@10.4.1': + resolution: {integrity: sha512-alq4yrNzlua5Y/NY42S7bdvVhshx+ux29xRy7K0P1xStbKwNz8CTYRVOyn6Xn+8Gyqm/E7b5vEb8fAedTKjZcA==} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + '@types/react-dom': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + next: ^14.1.0 || ^15.0.0 || ^16.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^10.4.1 + typescript: '*' + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + typescript: + optional: true + + '@storybook/react-dom-shim@10.4.1': + resolution: {integrity: sha512-6QFqfDNH4DMrt7yHKRfpqRopsVUc/Az+sXIdJ39IetYnHUxL3nW4NVaPc6uy/8Qi8urzUyEXL/nn7cpSIP2aPQ==} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + '@types/react-dom': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^10.4.1 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@storybook/react-vite@10.4.1': + resolution: {integrity: sha512-zY6OzaXvXqBIUyc5ySE55/LAPQiF+o9ZyhQI978WMu4mY/fL7FpQ+ZVHRUCCgz/wTXtqE9jJwd/N10HI1kD0/Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^10.4.1 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + + '@storybook/react@10.4.1': + resolution: {integrity: sha512-WuYz4NaUk4gmFAMliSpCbV8w6jP5OY9juBfw1huwzu2S/k5FhnVXwmrUaL0fmf3Bq/7NgkzmBBbZr6I6LuHayQ==} + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + '@types/react-dom': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + storybook: ^10.4.1 + typescript: '>= 4.9.x' + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + typescript: + optional: true + + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + + '@swc/helpers@0.5.23': + resolution: {integrity: sha512-5lSsMOTXURePglDfvuAQUqkGek9Hg2kksOYay2m0+XR++b2NWYL/4sWyuvVBIs8oKnJaxkdi9whaL/sqN13afw==} + + '@t3-oss/env-core@0.13.11': + resolution: {integrity: sha512-sM7GYY+KL7H/Hl0BE0inWfk3nRHZOLhmVn7sHGxaZt9FAR6KqREXAE+6TqKfiavfXmpRxO/OZ2QgKRd+oiBYRQ==} + peerDependencies: + arktype: ^2.1.0 + typescript: '>=5.0.0' + valibot: ^1.0.0-beta.7 || ^1.0.0 + zod: ^3.24.0 || ^4.0.0 + peerDependenciesMeta: + arktype: + optional: true + typescript: + optional: true + valibot: + optional: true + zod: + optional: true + + '@t3-oss/env-nextjs@0.13.11': + resolution: {integrity: sha512-NC+3j7YWgpzdFu1t5y/8wqibTK0lm5RS4bjXA1n8uwik3wIR4iZM4Fa+U2BaMa5k3Qk8RZiYhoAIX0WogmGkzg==} + peerDependencies: + arktype: ^2.1.0 + typescript: '>=5.0.0' + valibot: ^1.0.0-beta.7 || ^1.0.0 + zod: ^3.24.0 || ^4.0.0 + peerDependenciesMeta: + arktype: + optional: true + typescript: + optional: true + valibot: + optional: true + zod: + optional: true + + '@tailwindcss/forms@0.5.11': + resolution: {integrity: sha512-h9wegbZDPurxG22xZSoWtdzc41/OlNEUQERNqI/0fOwa2aVlWGu7C35E/x6LDyD3lgtztFSSjKZyuVM0hxhbgA==} + peerDependencies: + tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1' + + '@tailwindcss/node@4.3.0': + resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==} + + '@tailwindcss/oxide-android-arm64@4.3.0': + resolution: {integrity: sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [android] + + '@tailwindcss/oxide-darwin-arm64@4.3.0': + resolution: {integrity: sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [darwin] + + '@tailwindcss/oxide-darwin-x64@4.3.0': + resolution: {integrity: sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==} + engines: {node: '>= 20'} + cpu: [x64] + os: [darwin] + + '@tailwindcss/oxide-freebsd-x64@4.3.0': + resolution: {integrity: sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==} + engines: {node: '>= 20'} + cpu: [x64] + os: [freebsd] + + '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0': + resolution: {integrity: sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==} + engines: {node: '>= 20'} + cpu: [arm] + os: [linux] + + '@tailwindcss/oxide-linux-arm64-gnu@4.3.0': + resolution: {integrity: sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@tailwindcss/oxide-linux-arm64-musl@4.3.0': + resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@tailwindcss/oxide-linux-x64-gnu@4.3.0': + resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==} + engines: {node: '>= 20'} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@tailwindcss/oxide-linux-x64-musl@4.3.0': + resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==} + engines: {node: '>= 20'} + cpu: [x64] + os: [linux] + libc: [musl] + + '@tailwindcss/oxide-wasm32-wasi@4.3.0': + resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + bundledDependencies: + - '@napi-rs/wasm-runtime' + - '@emnapi/core' + - '@emnapi/runtime' + - '@tybys/wasm-util' + - '@emnapi/wasi-threads' + - tslib + + '@tailwindcss/oxide-win32-arm64-msvc@4.3.0': + resolution: {integrity: sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [win32] + + '@tailwindcss/oxide-win32-x64-msvc@4.3.0': + resolution: {integrity: sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==} + engines: {node: '>= 20'} + cpu: [x64] + os: [win32] + + '@tailwindcss/oxide@4.3.0': + resolution: {integrity: sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==} + engines: {node: '>= 20'} + + '@tailwindcss/postcss@4.3.0': + resolution: {integrity: sha512-Jm05Tjx+9yCLGv5qw1c+84Psds8MnyrEQYCB+FFk2lgGiUjlRqdxke4mVTuYrj2xnVZqKim2Apr5ySuQRYAw/w==} + + '@tanstack/react-table@8.21.3': + resolution: {integrity: sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==} + engines: {node: '>=12'} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + + '@tanstack/table-core@8.21.3': + resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==} + engines: {node: '>=12'} + + '@testing-library/dom@10.4.1': + resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==} + engines: {node: '>=18'} + + '@testing-library/jest-dom@6.9.1': + resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + + '@testing-library/react@16.3.2': + resolution: {integrity: sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==} + engines: {node: '>=18'} + peerDependencies: + '@testing-library/dom': ^10.0.0 + '@types/react': ^18.0.0 || ^19.0.0 + '@types/react-dom': ^18.0.0 || ^19.0.0 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@testing-library/user-event@14.6.1': + resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@testing-library/dom': '>=7.21.4' + + '@tiptap/core@3.24.0': + resolution: {integrity: sha512-GTAsXAI32p4hEZgPzvUv2RPrObxamy9AFhmhG10fXSvN/cDUs8naEYVIqDV3Sh99jMwQEbTFKW1E1mcspsY6ow==} + peerDependencies: + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-blockquote@3.24.0': + resolution: {integrity: sha512-DgwEEJ1GbDQcT054ynxoaZGmB9apGeUklPrinq9o6xdLHpdg+bO9HCQzggdB8n21VLLglb8jfAEWsVNwh3eASQ==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-bold@3.24.0': + resolution: {integrity: sha512-CujogYaynasklFKHADUseuvj8X2FnWktTCCo3Hl+nlyRvBTmm5TK2aqiamg3v2P4dBh3O6a70mo8BfRJPuiR1g==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-bubble-menu@3.24.0': + resolution: {integrity: sha512-jRXD+JPu9ayvq78g8hsCxx4q/qUFtrdfIYirRSf5YUseuuUbtfrq83AsGabcygpUTefjJkMQoXNITkh6294Ggw==} + peerDependencies: + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-bullet-list@3.24.0': + resolution: {integrity: sha512-IOpAm5c4XVVVvkOef+V9XYMVpea+3MgBpCQgn83UQRlwO9eIMwmcyxOznu7gQPQVShTEpkt4T6uK+ZN9o8meIA==} + peerDependencies: + '@tiptap/extension-list': 3.24.0 + + '@tiptap/extension-code-block@3.24.0': + resolution: {integrity: sha512-NZglw4oHoH6oJ5+HvxxQCYk+wODJmsxzUpRQdsOmje08sekQH+Zt9i4UKimBhg4urpd5r+dKXTslab9a5eQ86w==} + peerDependencies: + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-code@3.24.0': + resolution: {integrity: sha512-MAQtrPRQ+HRmcGotWbksdIGeH1gqayFAdvi4lNGeFT7taHXP1o1XD7CQp7iYIKmg8IU4/MQ+RdetSfuC1A9edQ==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-document@3.24.0': + resolution: {integrity: sha512-yxgM3+yXy2XZzEwH43y2Kp8D1BkblxEWLXqo0YCoAKtxyKCcEaT8kdlf70kS7D0+VSzYU4D0iN7VdQIYHcL2mA==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-dropcursor@3.24.0': + resolution: {integrity: sha512-Dbv1c5LnvG3PT+yEbCNroyOeeUkHq9wcir2pbC7wri7g7d2sCi0+HvKH0MAxLwY3j5NJJSiSyG2ypMaXOAs4sg==} + peerDependencies: + '@tiptap/extensions': 3.24.0 + + '@tiptap/extension-floating-menu@3.24.0': + resolution: {integrity: sha512-7QEbf3mUzFAkejjQGX9f0L507oMtnOBRwHt2skUTR+9yXgudsN8zaDBSSRHLeMWGk9b7L293ZMA6zCRrZaHrfA==} + peerDependencies: + '@floating-ui/dom': ^1.0.0 + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-gapcursor@3.24.0': + resolution: {integrity: sha512-CzCP5/jni5RFwW9jCfBO6auh83GbaioMTpSk6tyR3sd+CbwlBcUdsJFGJkbaRdiSS9dgIyi+6hRbhjpYdHcp+w==} + peerDependencies: + '@tiptap/extensions': 3.24.0 + + '@tiptap/extension-hard-break@3.24.0': + resolution: {integrity: sha512-T/ZEBiHQPMyTqDvXG0tiqBToNeuSemIPmNtdoGSgBN/degVl7VJZqQIrLIvOUHfjf3QkRs7TE/mcqTJsIboO/g==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-heading@3.24.0': + resolution: {integrity: sha512-GCSgapIzQPqEGNcVGE0/Pcjg5wITMLYJlrS3GGVw7BPmECJwgexcoOsEwkxtzJnXT/HpFXbvOFW43sM0KeHSjg==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-horizontal-rule@3.24.0': + resolution: {integrity: sha512-DFzWJTrb23x+qssLLs85vEyho8ItUGp3RY9XUsVTIAGZn5IsoUw8wMsvIBlH1ux4Ch7gLchtcD6kpTdMdrL9kw==} + peerDependencies: + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-italic@3.24.0': + resolution: {integrity: sha512-mf3cbNlbMPUNj3IyUkIke+o3ZpOUrtVeY5Yqs5IM/VhkUUh/PdIzqw74VuqEAJ0Z4oZ6nNDHeYLrl3Be1j99lQ==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-link@3.24.0': + resolution: {integrity: sha512-MwMoNGG2mL5XGFV1tEGunBRglwsIbW+ZOB2QnKiv+Mcbi2JCWMrorndJZBqpVPR5nM+Bef2KnpchEJmYlQLvKQ==} + peerDependencies: + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-list-item@3.24.0': + resolution: {integrity: sha512-zl/U3viJiV9OzkKM37AHIUN1af1TSLrcbHUUoNLkfJ33Nq+NlpaXpCVK0rKRqiLFJf7zk/a5KWG5CrOy9TxjKA==} + peerDependencies: + '@tiptap/extension-list': 3.24.0 + + '@tiptap/extension-list-keymap@3.24.0': + resolution: {integrity: sha512-69fKcrngYGEKWNn4R5oLwl0YuV3FY4kufEValVcjnihUmqJTE1vx+fwctYoTsOGnIuNGpUIQ7f9YDD/0w34qBw==} + peerDependencies: + '@tiptap/extension-list': 3.24.0 + + '@tiptap/extension-list@3.24.0': + resolution: {integrity: sha512-GcxDVMMmDGj7OFTBrV7JpVgr5wxlr2vmjwH7U8QxZX7OJI5vrsMYl/U6KRTvUpG8wP+Zmo5jRlLM+BbL+a/W3g==} + peerDependencies: + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-ordered-list@3.24.0': + resolution: {integrity: sha512-buRa6bmBDw0TztH+rAcusIye14DiLDS+yGheo6GiNCTD7kKJnksXagBdxvip3jhW5sx7gyAKvoBmvGSg1BbsGA==} + peerDependencies: + '@tiptap/extension-list': 3.24.0 + + '@tiptap/extension-paragraph@3.24.0': + resolution: {integrity: sha512-wD06aB6hO7LgcrlhGiw7I64k2tus9kNoICX5R+UecBSB1DVJdzKvXoXL2kPNv4DqYvljHdkIeK/OpuOTQd6MJA==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-strike@3.24.0': + resolution: {integrity: sha512-sfN1iQs6Fdlorrfe8wipDkTPwu/Egx3s2fkY7TAWusTGFHwlovuRUGFKqCL9dI4N3u6uqUMpEuWmQNgv+aQGjQ==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-text@3.24.0': + resolution: {integrity: sha512-Im7keLPEihxm3+LyF+drYCoaOY5hlq35lvHAp/el6M8pJ/scts88HrYpdR1Yc4BtpZBIhfHSyWgPaupI4qwdeg==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extension-underline@3.24.0': + resolution: {integrity: sha512-D4W4X3UMq9dLVIOfPB9+UodQ4eAJ8yDcm8qFWAwq0a15YWH6bnwulCuIdV+U5dEG+yaRxN8haB9GrrID9jmrSA==} + peerDependencies: + '@tiptap/core': 3.24.0 + + '@tiptap/extensions@3.24.0': + resolution: {integrity: sha512-z6gRYzy2ucJp07OQ0F2W07NxyhMTxPYH1ia2eGiQkWax1i56oExpjMsDHP8THWlg8Tb7NnbfKpkfh881EsmofA==} + peerDependencies: + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + + '@tiptap/pm@3.24.0': + resolution: {integrity: sha512-QQP/78ryOZDN99gNBV7dgh69/8AYaOYQYFklq/iR+ZRFaaL3+qqHFvPVJapGkzPdymBgNJ34xjFM8n5pJ4QmMg==} + + '@tiptap/react@3.24.0': + resolution: {integrity: sha512-KxnrlQbzOgA02EMsfuGGHtNhfkJQGqVlQttmQctI9DOl/F3gcaRqg+wNTBY1Fof8yDaZ8Z1LL1F0C05W0o3vUw==} + peerDependencies: + '@tiptap/core': 3.24.0 + '@tiptap/pm': 3.24.0 + '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0 + '@types/react-dom': ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@tiptap/starter-kit@3.24.0': + resolution: {integrity: sha512-Ef4PCP96vcY2GonXN9J0M8iC6zvxPTmQlL/QZiCwuYqqnH/hNpYIjNSQdTndiDpxRKofa32Sr2HWktgEnL32Bg==} + + '@total-typescript/ts-reset@0.6.1': + resolution: {integrity: sha512-cka47fVSo6lfQDIATYqb/vO1nvFfbPw7uWLayIXIhGETj0wcOOlrlkobOMDNQOFr9QOafegUPq13V2+6vtD7yg==} + + '@tybys/wasm-util@0.10.2': + resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/async@3.2.25': + resolution: {integrity: sha512-O6Th/DI18XjrL9TX8LO9F/g26qAz5vynmQqlXt/qLGrskvzCKXKc5/tATz3G2N6lM8eOf3M8/StB14FncAmocg==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.28.0': + resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} + + '@types/chai@5.2.3': + resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} + + '@types/d3-interpolate-path@2.0.3': + resolution: {integrity: sha512-EmFAmzvZN9vmYfUEOLOQj/PWXkUKrMp0iGElacDIcYj3N2zFJ2Mk5DiL8J4fKYnnyQdcYOixABJx7TaIc4GcdA==} + + '@types/debug@4.1.13': + resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/doctrine@0.0.9': + resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@1.0.9': + resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} + + '@types/geojson-vt@3.2.5': + resolution: {integrity: sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==} + + '@types/geojson@7946.0.16': + resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/node@24.12.4': + resolution: {integrity: sha512-GUUEShf+PBCGW2KaXwcIt3Yk+e3pkKwWKb9GSyM9WQVE+ep2jzmHdGsHzu4wgcZy5fN9FBdVzjpBQsYlpfpgLA==} + + '@types/papaparse@5.5.2': + resolution: {integrity: sha512-gFnFp/JMzLHCwRf7tQHrNnfhN4eYBVYYI897CGX4MY1tzY9l2aLkVyx2IlKZ/SAqDbB3I1AOZW5gTMGGsqWliA==} + + '@types/pbf@3.0.5': + resolution: {integrity: sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==} + + '@types/pg@8.20.0': + resolution: {integrity: sha512-bEPFOaMAHTEP1EzpvHTbmwR8UsFyHSKsRisLIHVMXnpNefSbGA1bD6CVy+qKjGSqmZqNqBDV2azOBo8TgkcVow==} + + '@types/qrcode@1.5.6': + resolution: {integrity: sha512-te7NQcV2BOvdj2b1hCAHzAoMNuj65kNBMz0KBaxM6c3VGBOhU0dURQKOtH8CFNI/dsKkwlv32p26qYQTWoB5bw==} + + '@types/react-dom@19.2.3': + resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} + peerDependencies: + '@types/react': ^19.2.0 + + '@types/react@19.2.15': + resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==} + + '@types/resolve@1.20.6': + resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} + + '@types/supercluster@7.1.3': + resolution: {integrity: sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==} + + '@types/trusted-types@2.0.7': + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@types/use-sync-external-store@0.0.6': + resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==} + + '@typescript-eslint/eslint-plugin@8.60.0': + resolution: {integrity: sha512-QYb/sa74/s7OKMbACMjrYnGspj9Hs5YI5aaffSL65UfeBUzVzBJfVo3oWSpbzPurvm7yaCCo2Lk7lVj610HqKw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.60.0 + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/parser@8.60.0': + resolution: {integrity: sha512-fcqpj/MyK4sxDPcbe7STNPbpQL4RLZOPWuaTmwZYuc+hJKzRf58yRxfhqGpc6PIq9ZyfSBpfHgmUHmHs0KwHwg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/project-service@8.60.0': + resolution: {integrity: sha512-aZu74NNKJeUWqCjDddzdiKaS82dgYgV/vmf+Ui3ZdZejmgfXR/q+pRumgobnQ2cCJTgGTWp4ypiwsuofFubavg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/scope-manager@8.60.0': + resolution: {integrity: sha512-pFzqhllJMs+jghLQWzV00ds39xLzuyqPSev5pd8f4Ir0rtKR3ZLUB4/4dhjOFighWb9larvtfJvqL+4yKDI3Xw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.60.0': + resolution: {integrity: sha512-BZPR3RGYlAXnly6ymAxfkVn5rCbZzQNou0rxv3GfWZ8cTQp+hhVd73khbGLAd8k1TlAPLISH337M+tAgAnaJDQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/type-utils@8.60.0': + resolution: {integrity: sha512-SX46wEUtitCpq7AN38HkUU/+zvUpdKf7ephtWAFgckH8O7PQIyL5gvrhQgBLuEYgLfuKWOVvWVskMbuFHAz5xg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/types@8.60.0': + resolution: {integrity: sha512-AsE7x2XaAK+CVbeih0Fvbn+r1qHxtpLDJ3XUuFcIinT318T90yHMJC+Zgv+jUuDjQQd06HKwxnDu6sz1IcTilA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.60.0': + resolution: {integrity: sha512-3AcZNBGMClm6CXDyo8kYvVGT/sx29sS0oBsIb9oZI2gunA4Vm2M3YHzRLPvsUBBsl+yB5FPtltq7gGH0iTlp9g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/utils@8.60.0': + resolution: {integrity: sha512-HtXuPfrHTyBDkameWpl+vJb1Uevu2tznAyahM1Oc4AENidCLTPiZDWIo4GfcxNdC/RcfGcadzzkqbRG87dUrQA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' + + '@typescript-eslint/visitor-keys@8.60.0': + resolution: {integrity: sha512-9WI52t8ZGLVGrPMBet25yAftqY/n95+zmoUUtJBBQTKDSKUu7OsPTroT2op7U9JatkoRccL0YkWDNMFfC4Sjxg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@ungap/structured-clone@1.3.1': + resolution: {integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==} + + '@unrs/resolver-binding-android-arm-eabi@1.12.2': + resolution: {integrity: sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==} + cpu: [arm] + os: [android] + + '@unrs/resolver-binding-android-arm64@1.12.2': + resolution: {integrity: sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==} + cpu: [arm64] + os: [android] + + '@unrs/resolver-binding-darwin-arm64@1.12.2': + resolution: {integrity: sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==} + cpu: [arm64] + os: [darwin] + + '@unrs/resolver-binding-darwin-x64@1.12.2': + resolution: {integrity: sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==} + cpu: [x64] + os: [darwin] + + '@unrs/resolver-binding-freebsd-x64@1.12.2': + resolution: {integrity: sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==} + cpu: [x64] + os: [freebsd] + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.12.2': + resolution: {integrity: sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm-musleabihf@1.12.2': + resolution: {integrity: sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-gnu@1.12.2': + resolution: {integrity: sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@unrs/resolver-binding-linux-arm64-musl@1.12.2': + resolution: {integrity: sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@unrs/resolver-binding-linux-loong64-gnu@1.12.2': + resolution: {integrity: sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==} + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@unrs/resolver-binding-linux-loong64-musl@1.12.2': + resolution: {integrity: sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==} + cpu: [loong64] + os: [linux] + libc: [musl] + + '@unrs/resolver-binding-linux-ppc64-gnu@1.12.2': + resolution: {integrity: sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@unrs/resolver-binding-linux-riscv64-gnu@1.12.2': + resolution: {integrity: sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@unrs/resolver-binding-linux-riscv64-musl@1.12.2': + resolution: {integrity: sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@unrs/resolver-binding-linux-s390x-gnu@1.12.2': + resolution: {integrity: sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@unrs/resolver-binding-linux-x64-gnu@1.12.2': + resolution: {integrity: sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@unrs/resolver-binding-linux-x64-musl@1.12.2': + resolution: {integrity: sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@unrs/resolver-binding-openharmony-arm64@1.12.2': + resolution: {integrity: sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==} + cpu: [arm64] + os: [openharmony] + + '@unrs/resolver-binding-wasm32-wasi@1.12.2': + resolution: {integrity: sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@unrs/resolver-binding-win32-arm64-msvc@1.12.2': + resolution: {integrity: sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==} + cpu: [arm64] + os: [win32] + + '@unrs/resolver-binding-win32-ia32-msvc@1.12.2': + resolution: {integrity: sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==} + cpu: [ia32] + os: [win32] + + '@unrs/resolver-binding-win32-x64-msvc@1.12.2': + resolution: {integrity: sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==} + cpu: [x64] + os: [win32] + + '@uploadthing/mime-types@0.3.6': + resolution: {integrity: sha512-t3tTzgwFV9+1D7lNDYc7Lr7kBwotHaX0ZsvoCGe7xGnXKo9z0jG2Sjl/msll12FeoLj77nyhsxevXyGpQDBvLg==} + + '@uploadthing/shared@7.1.10': + resolution: {integrity: sha512-R/XSA3SfCVnLIzFpXyGaKPfbwlYlWYSTuGjTFHuJhdAomuBuhopAHLh2Ois5fJibAHzi02uP1QCKbgTAdmArqg==} + + '@valibot/to-json-schema@1.7.0': + resolution: {integrity: sha512-Y3pPVibbIOHzohrlxSINvO7w/bvXkoYS3BQHoImV9ynE+bXKf171bdMucPurV2zp7gdmt0L1HCcNAsbo7cFRQw==} + peerDependencies: + valibot: ^1.4.0 + + '@vitejs/plugin-react@6.0.2': + resolution: {integrity: sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==} + engines: {node: ^20.19.0 || >=22.12.0} + peerDependencies: + '@rolldown/plugin-babel': ^0.1.7 || ^0.2.0 + babel-plugin-react-compiler: ^1.0.0 + vite: ^8.0.0 + peerDependenciesMeta: + '@rolldown/plugin-babel': + optional: true + babel-plugin-react-compiler: + optional: true + + '@vitest/browser-playwright@4.1.7': + resolution: {integrity: sha512-OlTlJej7YN6VwV7zJJoNeaCsctF+JXpzpZ4oBHUbrQFfIq+0KW2f07rprCLh9N/zRIZ0v4Mchn1QDDmWMUhPKw==} + peerDependencies: + playwright: '*' + vitest: 4.1.7 + + '@vitest/browser@4.1.7': + resolution: {integrity: sha512-N2JFGfXoEGVAut+kHeru9dD4BUMq/q5xDvBARNl0tUsly3m5KglLOu8VO/6MkDfOlgxXTycojkt6gBKsuyR+IQ==} + peerDependencies: + vitest: 4.1.7 + + '@vitest/coverage-v8@4.1.7': + resolution: {integrity: sha512-qsYPeXc5Q9dFLd1i8Ap+Bx8sQgcp+rFVQo4R0dDsWNBzl26ldVF1qOO+RL24K7FDrR6pA+50XedRLSoSG24bVQ==} + peerDependencies: + '@vitest/browser': 4.1.7 + vitest: 4.1.7 + peerDependenciesMeta: + '@vitest/browser': + optional: true + + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/expect@4.1.7': + resolution: {integrity: sha512-1R+tw0ortHEbZDGMymm+pN7/AFQ/RkFFdtd7EN+VBpynKmLbP8A3rpEXdshBJ7+8hQ9zBJh/i1s0yKNtxAnU7w==} + + '@vitest/mocker@4.1.7': + resolution: {integrity: sha512-vY7nuamKgfvpA1Koa3oYIw/k7D6kZnpGyNMZW8loow2bsBYla1TFdqTaXncWdRn4pgwNs+90RhnXhJScDwQeJA==} + peerDependencies: + msw: ^2.4.9 + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + + '@vitest/pretty-format@4.1.7': + resolution: {integrity: sha512-umgCarTOYQWIaDMvGDRZij+6b9oVeLIyJzfN+AS88e0ZOU3QTgNNSTtjQOpcvWr3np1N0j4WgZj+sb3oYBDscw==} + + '@vitest/runner@4.1.7': + resolution: {integrity: sha512-BapjmAQ2aI78WdMEfeUWivnfVzB+VPGwWRQcJE0OUq7qEeEcBsCSf+0T5iREBNE5nBb4wA5Ya0W6IA+sghdEFw==} + + '@vitest/snapshot@4.1.7': + resolution: {integrity: sha512-ZacLzja+TmJeZ1h14xW2FB/WpeimUD3haBXQPyJqxvo8jQTmfeA8zv58mtjN2C7EHXZDYVcVYdYmAxjkWVvKCw==} + + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + + '@vitest/spy@4.1.7': + resolution: {integrity: sha512-kbkI5LMWakyuTIvs6fUJ5qdIVb1XVKsYJAT4OJ938cHMROYMSfmoQdZy0aaAnjbbc8F61vkoTqz/Az+/HiIu5Q==} + + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + + '@vitest/utils@4.1.7': + resolution: {integrity: sha512-T532WBu791cBxJlCl6SO+J14l81DQx6uQHm1bQbmCDY7nqlEIgkza/UFnSBNaUtSf41unldDFjdOBYEQC4b5Hw==} + + '@webassemblyjs/ast@1.14.1': + resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} + + '@webassemblyjs/floating-point-hex-parser@1.13.2': + resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==} + + '@webassemblyjs/helper-api-error@1.13.2': + resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==} + + '@webassemblyjs/helper-buffer@1.14.1': + resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==} + + '@webassemblyjs/helper-numbers@1.13.2': + resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==} + + '@webassemblyjs/helper-wasm-bytecode@1.13.2': + resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==} + + '@webassemblyjs/helper-wasm-section@1.14.1': + resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==} + + '@webassemblyjs/ieee754@1.13.2': + resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==} + + '@webassemblyjs/leb128@1.13.2': + resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==} + + '@webassemblyjs/utf8@1.13.2': + resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==} + + '@webassemblyjs/wasm-edit@1.14.1': + resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==} + + '@webassemblyjs/wasm-gen@1.14.1': + resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==} + + '@webassemblyjs/wasm-opt@1.14.1': + resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==} + + '@webassemblyjs/wasm-parser@1.14.1': + resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==} + + '@webassemblyjs/wast-printer@1.14.1': + resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} + + '@webcontainer/env@1.1.1': + resolution: {integrity: sha512-6aN99yL695Hi9SuIk1oC88l9o0gmxL1nGWWQ/kNy81HigJ0FoaoTXpytCj6ItzgyCEwA9kF1wixsTuv5cjsgng==} + + '@xmldom/xmldom@0.9.10': + resolution: {integrity: sha512-A9gOqLdi6cV4ibazAjcQufGj0B1y/vDqYrcuP6d/6x8P27gRS8643Dj9o1dEKtB6O7fwxb2FgBmJS2mX7gpvdw==} + engines: {node: '>=14.6'} + + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + acorn-import-phases@1.0.4: + resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==} + engines: {node: '>=10.13.0'} + peerDependencies: + acorn: ^8.14.0 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.16.0: + resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} + engines: {node: '>=0.4.0'} + hasBin: true + + ajv-formats@2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv-keywords@5.1.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + + ajv@6.15.0: + resolution: {integrity: sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==} + + ajv@8.20.0: + resolution: {integrity: sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.2.2: + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + engines: {node: '>=12'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-hidden@1.2.6: + resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} + engines: {node: '>=10'} + + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-includes@3.1.9: + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlast@1.2.5: + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} + + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} + + array.prototype.tosorted@1.1.4: + resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + asn1js@3.0.10: + resolution: {integrity: sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==} + engines: {node: '>=12.0.0'} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + + ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + + ast-types@0.16.1: + resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==} + engines: {node: '>=4'} + + ast-v8-to-istanbul@1.0.3: + resolution: {integrity: sha512-jCMQ6ZylLPudp0CDfBmQBZUsrh1/8psbmu9ibeVWKuHWD0YrH9YABwlKu5kVEFoT0GCQQW9Z/SxfuEbbkGQCRg==} + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + + attr-accept@2.2.5: + resolution: {integrity: sha512-0bDNnY/u6pPwHDMoF0FieU354oBi0a8rD9FcsLwzcGWbc8KS8KPIi7y+s13OlVY+gMWc/9xEMUgNE6Qm8ZllYQ==} + engines: {node: '>=4'} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + aws-ssl-profiles@1.1.2: + resolution: {integrity: sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==} + engines: {node: '>= 6.0.0'} + + axe-core@4.11.4: + resolution: {integrity: sha512-KunSNx+TVpkAw/6ULfhnx+HWRecjqZGTOyquAoWHYLRSdK1tB5Ihce1ZW+UY3fj33bYAFWPu7W/GRSmmrCGuxA==} + engines: {node: '>=4'} + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + babel-plugin-react-compiler@1.0.0: + resolution: {integrity: sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==} + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + balanced-match@4.0.4: + resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} + engines: {node: 18 || 20 || >=22} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + baseline-browser-mapping@2.10.33: + resolution: {integrity: sha512-bA6+tcSLpz2tIEdDXZPpPTIuxBcC4+w6SieaYyfigIa4h8GlFxbA17v22Vx3JUtuZQj9SgOsnbK+aTBzyDyEuw==} + engines: {node: '>=6.0.0'} + hasBin: true + + better-result@2.9.2: + resolution: {integrity: sha512-WIFoBPCdnTOdk9inkE1ZRvCZ4P0CpSkAiLlchC65N7n9DcjZ3NhqkBOlafzpOVnO8ixyi37kicmSJ3ENhPZl7Q==} + + bidi-js@1.0.3: + resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} + + bignumber.js@9.3.1: + resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==} + + blobs@2.3.0-beta.2: + resolution: {integrity: sha512-kzLT5TOg/hsETxeyHae1sNpRWXNHnB1VN467FASoZfLRm4LdoXyp6HTTjes0cPE1sOVoOHEJFT9qyFGOpQFvPw==} + + bowser@2.14.1: + resolution: {integrity: sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==} + + brace-expansion@1.1.15: + resolution: {integrity: sha512-EwOCDEex4quD37XhqM3omwtMoJjr//isUZz1JopUNWms+4Z2ViyM/k1YIRePpoVNnQhENnxtFjLaxNHrT7xIUg==} + + brace-expansion@5.0.6: + resolution: {integrity: sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==} + engines: {node: 18 || 20 || >=22} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.28.2: + resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.6.0: + resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==} + + bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + + c12@3.3.4: + resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==} + peerDependencies: + magicast: '*' + peerDependenciesMeta: + magicast: + optional: true + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.9: + resolution: {integrity: sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + caniuse-lite@1.0.30001793: + resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chai@5.3.3: + resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} + engines: {node: '>=18'} + + chai@6.2.2: + resolution: {integrity: sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==} + engines: {node: '>=18'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.6.2: + resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + + chart.js@4.5.1: + resolution: {integrity: sha512-GIjfiT9dbmHRiYi6Nl2yFCq7kkwdkp1W/lp2J99rX0yo9tgJGn3lKQATztIjb5tVtevcBtIdICNWqlq5+E8/Pw==} + engines: {pnpm: '>=8'} + + cheap-ruler@4.0.0: + resolution: {integrity: sha512-0BJa8f4t141BYKQyn9NSQt1PguFQXMXwZiA5shfoaBYHAb2fFk2RAX+tiWMoQU+Agtzt3mdt0JtuyshAXqZ+Vw==} + + check-error@2.1.3: + resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==} + engines: {node: '>= 16'} + + chokidar@5.0.0: + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} + engines: {node: '>= 20.19.0'} + + chromatic@16.10.0: + resolution: {integrity: sha512-nFsztmnu7rFiGafUJgXvLUNpqmRylz92eNvzBoJNTKKQj4EQUyxznwnfpf1dTs7hXtWD8JwcH92jADydaHA1sw==} + hasBin: true + peerDependencies: + '@chromatic-com/cypress': ^0.*.* || ^1.0.0 + '@chromatic-com/playwright': ^0.*.* || ^1.0.0 + '@chromatic-com/vitest': ^0.*.* || ^1.0.0 + peerDependenciesMeta: + '@chromatic-com/cypress': + optional: true + '@chromatic-com/playwright': + optional: true + '@chromatic-com/vitest': + optional: true + + chromatic@17.0.1: + resolution: {integrity: sha512-6qcoYWLT917ov8kpeN7YCVIUTdnI8ecEduT2dbyh39clUsIvR7YLDKyPPTKYE2vZgZsMGgeErv0aedJuaxhrqA==} + engines: {node: '>=22.0.0'} + hasBin: true + peerDependencies: + '@chromatic-com/cypress': ^0.*.* || ^1.0.0 + '@chromatic-com/playwright': ^0.*.* || ^1.0.0 + '@chromatic-com/vitest': ^0.*.* || ^1.0.0 + peerDependenciesMeta: + '@chromatic-com/cypress': + optional: true + '@chromatic-com/playwright': + optional: true + '@chromatic-com/vitest': + optional: true + + chrome-trace-event@1.0.4: + resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} + engines: {node: '>=6.0'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + cliui@6.0.0: + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + + cliui@9.0.1: + resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} + engines: {node: '>=20'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + colorjs.io@0.5.2: + resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==} + + comlink@4.4.2: + resolution: {integrity: sha512-OxGdvBmJuNKSCMO4NTl1L47VRp6xn2wG4F/2hYzB6tiCb709otOxtEYCSvK80PtjODfXXZu8ds+Nw5kVCjqd2g==} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concaveman@2.0.0: + resolution: {integrity: sha512-3a9C//4G44/boNehBPZMRh8XxrwBvTXlhENUim+GMm207WoDie/Vq89U5lkhLn3kKA+vxwmwfdQPWIRwjQWoLA==} + + concurrently@10.0.0: + resolution: {integrity: sha512-DRrk10z3sVPpguNe8od2cGNqZGqbT15rwAnxD4dG3b78mdNNb/gJyr8T834Oj518WcBmTktrt4FhdwZn09ZWSg==} + engines: {node: '>=22'} + hasBin: true + + confbox@0.2.4: + resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + copy-anything@4.0.5: + resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==} + engines: {node: '>=18'} + + core-js@3.49.0: + resolution: {integrity: sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + css-tree@3.2.1: + resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css.escape@1.5.1: + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} + + csscolorparser@1.0.3: + resolution: {integrity: sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==} + + csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} + + csvtojson@2.0.14: + resolution: {integrity: sha512-F7NNvhhDyob7OsuEGRsH0FM1aqLs/WYITyza3l+hTEEmOK9sGPBlYQZwlVG0ezCojXYpE17lhS5qL6BCOZSPyA==} + engines: {node: '>=8.0.0'} + hasBin: true + + cva@1.0.0-beta.4: + resolution: {integrity: sha512-F/JS9hScapq4DBVQXcK85l9U91M6ePeXoBMSp7vypzShoefUBxjQTo3g3935PUHgQd+IW77DjbPRIxugy4/GCQ==} + peerDependencies: + typescript: '>= 4.5.5' + peerDependenciesMeta: + typescript: + optional: true + + d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + + d3-force@3.0.0: + resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} + engines: {node: '>=12'} + + d3-interpolate-path@2.3.0: + resolution: {integrity: sha512-tZYtGXxBmbgHsIc9Wms6LS5u4w6KbP8C09a4/ZYc4KLMYYqub57rRBUgpUr2CIarIrJEpdAWWxWQvofgaMpbKQ==} + + d3-quadtree@3.0.1: + resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} + engines: {node: '>=12'} + + d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + + damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + + data-urls@7.0.0: + resolution: {integrity: sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + decimal.js@10.6.0: + resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==} + + decode-named-character-reference@1.3.0: + resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==} + + deep-diff@0.3.8: + resolution: {integrity: sha512-yVn6RZmHiGnxRKR9sJb3iVV2XTF1Ghh2DiWRZ3dMnGc43yUdWWF/kX6lQyk3+P84iprfWKU/8zFTrlkvtFm1ug==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + deepmerge-ts@7.1.5: + resolution: {integrity: sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==} + engines: {node: '>=16.0.0'} + + default-browser-id@5.0.1: + resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==} + engines: {node: '>=18'} + + default-browser@5.5.0: + resolution: {integrity: sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==} + engines: {node: '>=18'} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + defu@6.1.7: + resolution: {integrity: sha512-7z22QmUWiQ/2d0KkdYmANbRUVABpZ9SNYyH5vx6PZ+nE5bcC0l7uFvEfHlyld/HcGBFTL536ClDt3DEcSlEJAQ==} + + denque@2.1.0: + resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} + engines: {node: '>=0.10'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} + + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + dijkstrajs@1.0.3: + resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + + dom-accessibility-api@0.6.3: + resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} + + dompurify@3.4.7: + resolution: {integrity: sha512-2jBxDJY4RR06tQNy4w5FlFH7kfxsQZlufd0sbv+chfHCxeJwrFw2baUDsSwvBISD4K4RDbd0PTfy3uNXsR6siA==} + + dotenv@17.4.2: + resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==} + engines: {node: '>=12'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + earcut@3.0.2: + resolution: {integrity: sha512-X7hshQbLyMJ/3RPhyObLARM2sNxxmRALLKx1+NVFFnQ9gKzmCrxm9+uLIAdBcvc8FNLpctqlQ2V6AE92Ol9UDQ==} + + effect@3.17.7: + resolution: {integrity: sha512-dpt0ONUn3zzAuul6k4nC/coTTw27AL5nhkORXgTi6NfMPzqWYa1M05oKmOMTxpVSTKepqXVcW9vIwkuaaqx9zA==} + + effect@3.20.0: + resolution: {integrity: sha512-qMLfDJscrNG8p/aw+IkT9W7fgj50Z4wG5bLBy0Txsxz8iUHjDIkOgO3SV0WZfnQbNG2VJYb0b+rDLMrhM4+Krw==} + + effect@3.21.2: + resolution: {integrity: sha512-rXd2FGDM8KdjSIrc+mqEELo7ScW7xTVxEf1iInmPSpIde9/nyGuFM710cjTo7/EreGXiUX2MOonPpprbz2XHCg==} + + electron-to-chromium@1.5.364: + resolution: {integrity: sha512-G/dYE3+AYhyHwzTwg8UbnXf7zqMERYh7l2jJ3QujhFsH8agSYwtnGAR2aZ7f0AakIKJXd5En/Hre4igIUrdlYw==} + + emoji-regex@10.6.0: + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + empathic@2.0.0: + resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} + engines: {node: '>=14'} + + empathic@2.0.1: + resolution: {integrity: sha512-YGRs8knHhKHVShLkFET/rWAU8kmHbOV5LwN938RHI0pljAJ1Gf6SzXsSmRaEzcXTtOOmVqJ5+WtQPL5uigY50Q==} + engines: {node: '>=14'} + + enhanced-resolve@5.22.1: + resolution: {integrity: sha512-6QEuw3zoX1SJQc7b87aBXke/no+mG2bTBgw29gWMQonLmpEkWoCAVkl+M49e48AZlWzxiDzDZzYdp6kobcyLww==} + engines: {node: '>=10.13.0'} + + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + + entities@8.0.0: + resolution: {integrity: sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==} + engines: {node: '>=20.19.0'} + + env-paths@3.0.0: + resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + error-causes@3.0.2: + resolution: {integrity: sha512-i0B8zq1dHL6mM85FGoxaJnVtx6LD5nL2v0hlpGdntg5FOSyzQ46c9lmz5qx0xRS2+PWHGOHcYxGIBC5Le2dRMw==} + + es-abstract@1.24.2: + resolution: {integrity: sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-iterator-helpers@1.3.2: + resolution: {integrity: sha512-HVLACW1TppGYjJ8H6/jqH/pqOtKRw6wMlrB23xfExmFWxFquAIWCmwoLsOyN96K4a5KbmOf5At9ZUO3GZbetAw==} + engines: {node: '>= 0.4'} + + es-module-lexer@2.1.0: + resolution: {integrity: sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==} + + es-object-atoms@1.1.2: + resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + es-toolkit@1.47.0: + resolution: {integrity: sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw==} + + esbuild@0.27.7: + resolution: {integrity: sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==} + engines: {node: '>=18'} + hasBin: true + + esbuild@0.28.0: + resolution: {integrity: sha512-sNR9MHpXSUV/XB4zmsFKN+QgVG82Cc7+/aaxJ8Adi8hyOac+EXptIp45QBPaVyX3N70664wRbTcLTOemCAnyqw==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + eslint-config-prettier@10.1.8: + resolution: {integrity: sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-import-context@0.1.9: + resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + peerDependencies: + unrs-resolver: ^1.0.0 + peerDependenciesMeta: + unrs-resolver: + optional: true + + eslint-import-resolver-node@0.3.10: + resolution: {integrity: sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==} + + eslint-import-resolver-typescript@4.4.4: + resolution: {integrity: sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw==} + engines: {node: ^16.17.0 || >=18.6.0} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + eslint-plugin-import-x: '*' + peerDependenciesMeta: + eslint-plugin-import: + optional: true + eslint-plugin-import-x: + optional: true + + eslint-module-utils@2.13.0: + resolution: {integrity: sha512-bLohSkT6469rRs8czj0tLTD8vaeIS/whvPRJVjDr7IuoTT1k5DYDERlNycjDj/HkOlvQdYurmfZ/g3fG5bgeLQ==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-better-tailwindcss@4.5.0: + resolution: {integrity: sha512-EBNTx6OJYaWv7uUxHWTy1fhiNz2rZVkoeOHZzAJFwWaEPideBf04CMshrJ7YntG0KQzadlbRhHKYr32q5aBX4w==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 + oxlint: ^1.35.0 + tailwindcss: ^3.3.0 || ^4.1.17 + peerDependenciesMeta: + eslint: + optional: true + oxlint: + optional: true + + eslint-plugin-import@2.32.0: + resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jsx-a11y@6.10.2: + resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 + + eslint-plugin-react-hooks@7.1.1: + resolution: {integrity: sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==} + engines: {node: '>=18'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0 + + eslint-plugin-react@7.37.5: + resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 + + eslint-plugin-storybook@10.4.1: + resolution: {integrity: sha512-sLEvd/7lg/LtXwMjj3iFxZtoeAC/8l1Qhuw3Noa8iF8i0UIgAejUs7k6DNSqHkwrPR8caWT4+3fxdMXs1iGLTg==} + peerDependencies: + eslint: '>=8' + storybook: ^10.4.1 + + eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@5.0.1: + resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + + eslint@9.39.4: + resolution: {integrity: sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.7.0: + resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + expect-type@1.3.0: + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} + engines: {node: '>=12.0.0'} + + exsolve@1.0.8: + resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + fast-check@3.23.2: + resolution: {integrity: sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==} + engines: {node: '>=8.0.0'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-equals@5.4.0: + resolution: {integrity: sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw==} + engines: {node: '>=6.0.0'} + + fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-uri@3.1.2: + resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==} + + fast-xml-builder@1.2.0: + resolution: {integrity: sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==} + + fast-xml-parser@5.7.3: + resolution: {integrity: sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==} + hasBin: true + + fastq@1.20.1: + resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} + + fd-package-json@2.0.0: + resolution: {integrity: sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fflate@0.4.8: + resolution: {integrity: sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==} + + fflate@0.8.3: + resolution: {integrity: sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA==} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + file-selector@2.1.2: + resolution: {integrity: sha512-QgXo+mXTe8ljeqUFaX3QVHc5osSItJ/Km+xpocx0aSqWGMSCf6qYs/VnzZgS864Pjn5iceMRFigeAV7AfTlaig==} + engines: {node: '>= 12'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-my-way-ts@0.1.6: + resolution: {integrity: sha512-a85L9ZoXtNAey3Y6Z+eBWW658kO/MwR7zIafkIUPUMf3isZG0NCs2pjW2wtjxAKuJPxMAsHUIP4ZPGv0o5gyTA==} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.4.2: + resolution: {integrity: sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==} + + focus-trap@6.9.4: + resolution: {integrity: sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==} + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + + formatly@0.3.0: + resolution: {integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==} + engines: {node: '>=18.3.0'} + hasBin: true + + framer-motion@12.40.0: + resolution: {integrity: sha512-uaBd3qC1v3KQqBEjwTUd183K6PbS+j0yR9w9VmEOLWA/tnUcSn8Xa3uck7t4dgpDoUss8xQTcj8W2L07lrnLFg==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true + + fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + fuse.js@7.4.0: + resolution: {integrity: sha512-3UqmoSFwzX1sNB1YSk+Co0EdH29XCW2p9g48OAiy93cjKqzuABsqw2VIgSN3CmsT/wo6pIJ3F0Jxeiiby8rhIQ==} + engines: {node: '>=10'} + + gemoji@8.1.0: + resolution: {integrity: sha512-HA4Gx59dw2+tn+UAa7XEV4ufUKI4fH1KgcbenVA9YKSj1QJTT0xh5Mwv5HMFNN3l2OtUe3ZIfuRwSyZS5pLIWw==} + + generate-function@2.3.1: + resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==} + + generator-function@2.0.1: + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} + engines: {node: '>= 0.4'} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + geojson-vt@4.0.3: + resolution: {integrity: sha512-jR1MwkLaZGa8Zftct9ZFruyWFrdl9ZyD2OliXNy9Qq5bBPeg5wHVpBQF9p5GjnicSDQqvBVpysxTPKmWdsfWMA==} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-east-asian-width@1.6.0: + resolution: {integrity: sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==} + engines: {node: '>=18'} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-port-please@3.2.0: + resolution: {integrity: sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.14.0: + resolution: {integrity: sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==} + + giget@3.2.0: + resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==} + hasBin: true + + gl-matrix@3.4.4: + resolution: {integrity: sha512-latSnyDNt/8zYUB6VIJ6PCh2jBjJX6gnDsoCZ7LyW7GkqrD51EWwa9qCoGixj8YqBtETQK/xY7OmpTF8xz1DdQ==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + + glob@13.0.6: + resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==} + engines: {node: 18 || 20 || >=22} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@17.6.0: + resolution: {integrity: sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globrex@0.1.2: + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + grammex@3.1.12: + resolution: {integrity: sha512-6ufJOsSA7LcQehIJNCO7HIBykfM7DXQual0Ny780/DEcJIpBlHRvcqEBWGPYd7hrXL2GJ3oJI1MIhaXjWmLQOQ==} + + graphmatch@1.1.1: + resolution: {integrity: sha512-5ykVn/EXM1hF0XCaWh05VbYvEiOL2lY1kBxZtaYsyvjp7cmWOU1XsAdfQBwClraEofXDT197lFbXOEVMHpvQOg==} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hasown@2.0.4: + resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==} + engines: {node: '>= 0.4'} + + hast-util-from-parse5@8.0.3: + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} + + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + + hast-util-raw@9.1.0: + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} + + hast-util-sanitize@5.0.2: + resolution: {integrity: sha512-3yTWghByc50aGS7JlGhk61SPenfE/p1oaFeNwkOOyrscaOkMGrcW9+Cy/QAIOBpZxP1yqDIzFMR0+Np0i0+usg==} + + hast-util-to-jsx-runtime@2.3.6: + resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==} + + hast-util-to-parse5@8.0.1: + resolution: {integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==} + + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + + hastscript@9.0.1: + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} + + hermes-estree@0.25.1: + resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} + + hermes-parser@0.25.1: + resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} + + hono@4.12.23: + resolution: {integrity: sha512-eIaZ9qDgu7XV0pxOCrg7/WhnQ6Ivm22UcxhXx/A3dcbqbbYgBEkc6e/J/s7j2tS96zoB0S9VBdLwQNCWwUo4LA==} + engines: {node: '>=16.9.0'} + + html-encoding-sniffer@6.0.0: + resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + html-url-attributes@3.0.1: + resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==} + + html-void-elements@3.0.0: + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + + http-status-codes@2.3.0: + resolution: {integrity: sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==} + + iconv-lite@0.7.2: + resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + image-size@2.0.2: + resolution: {integrity: sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==} + engines: {node: '>=16.x'} + hasBin: true + + immediate@3.0.6: + resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} + + immer@11.1.8: + resolution: {integrity: sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==} + + immutable@5.1.6: + resolution: {integrity: sha512-q1swsS8K7L8usSHuOqF2TAoCCkonYz0SG38wLAggaa4Wml70zixIvt2ql4coQ2C2B3hTjltJry4r6bULwgAXLQ==} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + inline-style-parser@0.2.7: + resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-bun-module@2.0.0: + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.2: + resolution: {integrity: sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-generator-function@1.1.2: + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + + is-property@1.0.2: + resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-what@5.5.0: + resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==} + engines: {node: '>=18'} + + is-wsl@3.1.1: + resolution: {integrity: sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==} + engines: {node: '>=16'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-reports@3.2.0: + resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==} + engines: {node: '>=8'} + + iterator.prototype@1.1.5: + resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} + engines: {node: '>= 0.4'} + + jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + + jiti@2.7.0: + resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==} + hasBin: true + + js-tokens@10.0.0: + resolution: {integrity: sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@4.2.0: + resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==} + hasBin: true + + jsdom@29.1.1: + resolution: {integrity: sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24.0.0} + peerDependencies: + canvas: ^3.0.0 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonfile@6.2.1: + resolution: {integrity: sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==} + + jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + + jszip@3.10.1: + resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} + + kdbush@4.1.0: + resolution: {integrity: sha512-e9vurzrXJQrFX6ckpHP3bvj5l+9CnYzkxDNnNQ1h2QTqdWsUAJgXiKdGNcOa1EY85dU8KbQ+z/FdQdB7P+9yfQ==} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + knip@6.15.0: + resolution: {integrity: sha512-uBaKFEGcu/HG4EY2gWFBMr+fBF43Jftoc2riJX51TKME1Z46C8UQIbNEusenYbEWihphxe2PY0Kns0yPvPYz4A==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + language-subtag-registry@0.3.23: + resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + + language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lie@3.3.0: + resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} + + lightningcss-android-arm64@1.32.0: + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] + + lightningcss-darwin-arm64@1.32.0: + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] + + lightningcss-darwin-x64@1.32.0: + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] + + lightningcss-freebsd-x64@1.32.0: + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] + + lightningcss-linux-arm-gnueabihf@1.32.0: + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] + + lightningcss-linux-arm64-gnu@1.32.0: + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [glibc] + + lightningcss-linux-arm64-musl@1.32.0: + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] + libc: [musl] + + lightningcss-linux-x64-gnu@1.32.0: + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [glibc] + + lightningcss-linux-x64-musl@1.32.0: + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] + libc: [musl] + + lightningcss-win32-arm64-msvc@1.32.0: + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] + + lightningcss-win32-x64-msvc@1.32.0: + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] + + lightningcss@1.32.0: + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} + engines: {node: '>= 12.0.0'} + + linkifyjs@4.3.3: + resolution: {integrity: sha512-P8aEP5U/D1/IlTY2OeYsErdwh9bGuLE30NcXtKEjgdHcahveQoQwM2yZNsioQHsWFz0P7KKudisbrzCgR0sDHg==} + + loader-runner@4.3.2: + resolution: {integrity: sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==} + engines: {node: '>=6.11.5'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash@4.18.1: + resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==} + + long@5.3.2: + resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loupe@3.2.1: + resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} + + lru-cache@11.5.1: + resolution: {integrity: sha512-RPimw/7aMdv2oqRrxKwvZXcPfwBrn/JZ2xYcY9Hus/6LaS3VOAKVWKWgNLCFSiOm1ESXinjsDlidVU7JlnCN2A==} + engines: {node: 20 || >=22} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru.min@1.1.4: + resolution: {integrity: sha512-DqC6n3QQ77zdFpCMASA1a3Jlb64Hv2N2DciFGkO/4L9+q/IpIAuRlKOvCXabtRW6cQf8usbmM6BE/TOPysCdIA==} + engines: {bun: '>=1.0.0', deno: '>=1.30.0', node: '>=8.0.0'} + + lucide-react@1.17.0: + resolution: {integrity: sha512-9FA9evdox/JQL5PT57fdA1x/yg8T7knJ98+zjTL3UfKza6pflQUUh3XtaQIHKvnsJw1lmsEyHVlt5jchYxOQ5w==} + peerDependencies: + react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + magicast@0.5.3: + resolution: {integrity: sha512-pVKE4UdSQ7DvHzivsCIFx2BJn1mHG6KsyrFcaxFx6tONdneEuThrDx0Cj3AMg58KyN4pzYT+LHOotxDQDjNvkw==} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + mapbox-gl@3.24.0: + resolution: {integrity: sha512-R+FdFUB3DnoE5FYASV7lGSiRyMkSblcZ2UEy7b2pt7s5ZbCxFIUPXd0E6iAFd8OdvdA2VtbvZZVylzAZNaurjA==} + + martinez-polygon-clipping@0.8.1: + resolution: {integrity: sha512-9PLLMzMPI6ihHox4Ns6LpVBLpRc7sbhULybZ/wyaY8sY3ECNe2+hxm1hA2/9bEEpRrdpjoeduBuZLg2aq1cSIQ==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@2.0.3: + resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==} + + mdast-util-mdx-expression@2.0.1: + resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} + + mdast-util-mdx-jsx@3.2.0: + resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==} + + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@13.2.1: + resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdn-data@2.27.1: + resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==} + + mdn-data@2.28.1: + resolution: {integrity: sha512-U9w+PzSZ00Z5m9rZ5ARVFL5xOfuCHdKYi/1RRwDCJsboFgJDNT3zT6PIPD7mZQYaQLhsZM3GfDRgSMRHhSmVng==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.2: + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime-db@1.54.0: + resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} + engines: {node: '>= 0.6'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true + + minimatch@10.2.5: + resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==} + engines: {node: 18 || 20 || >=22} + + minimatch@3.1.5: + resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.3: + resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==} + engines: {node: '>=16 || 14 >=14.17'} + + module-alias@2.3.4: + resolution: {integrity: sha512-bOclZt8hkpuGgSSoG07PKmvzTizROilUTvLNyrMqvlC9snhs7y7GzjNWAVbISIOlhCP1T14rH1PDAV9iNyBq/w==} + + motion-dom@12.40.0: + resolution: {integrity: sha512-HxU3ZaBwNPVQUBQf1xxgq+7JrPNZvjLVxgbpEZL7RrWJnsxOf0/OM+yrHG9ogLQ31Do/r57Oz2gQWPK+6q62mg==} + + motion-utils@12.39.0: + resolution: {integrity: sha512-8nadJAJjTtqRkmRF36FoJTrywK9nnFmnPwnSMyxaOCU7GDjN9RTMJIxx9De8ErM+vpPhMccr/6fo5WciyQLnMQ==} + + motion@12.40.0: + resolution: {integrity: sha512-yjrHUrBFW6kQvjJwRsoiPSAhC5tRwRqNGJWmiJ4CrGnbKp0V88AdzkhBmDoqIsIPfarOe0Uddd37Xq43/gIocA==} + peerDependencies: + '@emotion/is-prop-valid': '*' + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@emotion/is-prop-valid': + optional: true + react: + optional: true + react-dom: + optional: true + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + msgpackr-extract@3.0.4: + resolution: {integrity: sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw==} + hasBin: true + + msgpackr@1.11.12: + resolution: {integrity: sha512-RBdJ1Un7yGlXWajrkxcSa93nvQ0w4zBf60c0yYv7YtBelP8H2FA7XsfBbMHtXKXUMUxH7zV3Zuozh+kUQWhHvg==} + + multipasta@0.2.7: + resolution: {integrity: sha512-KPA58d68KgGil15oDqXjkUBEBYc00XvbPj5/X+dyzeo/lWm9Nc25pQRlf1D+gv4OpK7NM0J1odrbu9JNNGvynA==} + + murmurhash-js@1.0.0: + resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==} + + mysql2@3.15.3: + resolution: {integrity: sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==} + engines: {node: '>= 8.0'} + + named-placeholders@1.1.6: + resolution: {integrity: sha512-Tz09sEL2EEuv5fFowm419c1+a/jSMiBjI9gHxVLrVdbUkkNUUfjsVYs9pVZu5oCon/kmRh9TfLEObFtkVxmY0w==} + engines: {node: '>=8.0.0'} + + nanoid@3.3.12: + resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + nanoid@5.1.11: + resolution: {integrity: sha512-v+KEsUv2ps74PaSKv0gHTxTCgMXOIfBEbaqa6w6ISIGC7ZsvHN4N9oJ8d4cmf0n5oTzQz2SLmThbQWhjd/8eKg==} + engines: {node: ^18 || >=20} + hasBin: true + + napi-postinstall@0.3.4: + resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + next@16.2.6: + resolution: {integrity: sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==} + engines: {node: '>=20.9.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.51.1 + babel-plugin-react-compiler: '*' + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + babel-plugin-react-compiler: + optional: true + sass: + optional: true + + no-scroll@2.1.1: + resolution: {integrity: sha512-YTzGAJOo/B6hkodeT5SKKHpOhAzjMfkUCCXjLJwjWk2F4/InIg+HbdH9kmT7bKpleDuqLZDTRy2OdNtAj0IVyQ==} + + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + + node-exports-info@1.6.0: + resolution: {integrity: sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==} + engines: {node: '>= 0.4'} + + node-gyp-build-optional-packages@5.2.2: + resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==} + hasBin: true + + node-releases@2.0.46: + resolution: {integrity: sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==} + engines: {node: '>=18'} + + nuqs@2.8.9: + resolution: {integrity: sha512-8ou6AEwsxMWSYo2qkfZtYFVzngwbKmg4c00HVxC1fF6CEJv3Fwm6eoZmfVPALB+vw8Udo7KL5uy96PFcYe1BIQ==} + peerDependencies: + '@remix-run/react': '>=2' + '@tanstack/react-router': ^1 + next: '>=14.2.0' + react: '>=18.2.0 || ^19.0.0-0' + react-router: ^5 || ^6 || ^7 + react-router-dom: ^5 || ^6 || ^7 + peerDependenciesMeta: + '@remix-run/react': + optional: true + '@tanstack/react-router': + optional: true + next: + optional: true + react-router: + optional: true + react-router-dom: + optional: true + + object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.entries@1.1.9: + resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} + + ohash@2.0.11: + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} + + open@10.2.0: + resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==} + engines: {node: '>=18'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + orderedmap@2.1.1: + resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==} + + otpauth@9.5.1: + resolution: {integrity: sha512-fJmDAHc8wImfqqqOXIlBvT1dEKrZK0Cmb2VEgScpNTolCz0PHh6ExUZGv4sLtOsWNaHCQlD+rRqaPgnoxFoZjQ==} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + oxc-parser@0.127.0: + resolution: {integrity: sha512-bkgD4qHlN7WxLdX8bLXdaU54TtQtAIg/ZBAfm0aje/mo3MRDo3P0hZSgr4U7O3xfX+fQmR5AP04JS/TGcZLcFA==} + engines: {node: ^20.19.0 || >=22.12.0} + + oxc-parser@0.133.0: + resolution: {integrity: sha512-661RSx+ZcjBmjBYid+Fpp/2F5EbtildpeoZh5HdgnGs+jZ03nqQEQW8yGkt4BGyOC3OMPDQQRl8M5kqD2/g6jw==} + engines: {node: ^20.19.0 || >=22.12.0} + + oxc-resolver@11.20.0: + resolution: {integrity: sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g==} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + pako@1.0.11: + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + + papaparse@5.5.3: + resolution: {integrity: sha512-5QvjGxYVjxO59MGU2lHVYpRWBBtKHnlIAcSe1uNFCkkptUh63NFRj0FJQm7nR67puEruUci/ZkjmEFrjCAyP4A==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-entities@4.0.2: + resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + parse5@8.0.1: + resolution: {integrity: sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-expression-matcher@1.5.0: + resolution: {integrity: sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==} + engines: {node: '>=14.0.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@2.0.2: + resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==} + engines: {node: 18 || 20 || >=22} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + + pbf@4.0.2: + resolution: {integrity: sha512-J0ajxARhZfpUEebxYs1vhMGMuLSXtBe1e+fFPDrf2uA2hgo+UshKfNUWOz92HJNz6/NFEXseQPddnHkTreWRqg==} + hasBin: true + + perfect-debounce@2.1.0: + resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==} + + pg-cloudflare@1.4.0: + resolution: {integrity: sha512-Vo7z/6rrQYxpNRylp4Tlob2elzbh+N/MOQbxFVWCxS7oEx6jF53GTJFxK2WWpKuBRkmiin4Mt+xofFDjx09R0A==} + + pg-connection-string@2.13.0: + resolution: {integrity: sha512-EMnU9E2fSULdsbErBbMaXJvFeD9B4+nPcM3f+4lsiCR0BHLPrLVjv3DbyM2hgQQviKJaTWIRRTjKjWlHg3p2ig==} + + pg-int8@1.0.1: + resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} + engines: {node: '>=4.0.0'} + + pg-pool@3.14.0: + resolution: {integrity: sha512-gKtPkFdQPU3DksooVLi9LsjZxrsBUZIpa+7aVx+LV5pNh0KzP4Zleud2po+ConrxbuXGBJ6Hfer6hdgpIBpBaw==} + peerDependencies: + pg: '>=8.0' + + pg-protocol@1.14.0: + resolution: {integrity: sha512-n5taZ1kO3s9ngDTVxsEznOqCyToTgz0FLuPq0B33COy5pPpuWJpY3/2oRBVETuOgzdqRXfWpM9HIhp2LBBT1BA==} + + pg-types@2.2.0: + resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} + engines: {node: '>=4'} + + pg@8.21.0: + resolution: {integrity: sha512-AUP1EYJuHraQGsVoCQVIcM7TEJVGtDzxWtGFZd8rds9d+CCXlU5Js1rYgfLNvxy9iJrpHjGrRjoi/3BT9fRyiA==} + engines: {node: '>= 16.0.0'} + peerDependencies: + pg-native: '>=3.0.1' + peerDependenciesMeta: + pg-native: + optional: true + + pgpass@1.0.5: + resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.2: + resolution: {integrity: sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==} + engines: {node: '>=8.6'} + + picomatch@4.0.4: + resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==} + engines: {node: '>=12'} + + pkg-types@2.3.1: + resolution: {integrity: sha512-y+ichcgc2LrADuhLNAx8DFjVfgz91pRxfZdI3UDhxHvcVEZsenLO+7XaU5vOp0u/7V/wZ+plyuQxtrDlZJ+yeg==} + + playwright-core@1.60.0: + resolution: {integrity: sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==} + engines: {node: '>=18'} + hasBin: true + + playwright@1.60.0: + resolution: {integrity: sha512-hheHdokM8cdqCb0lcE3s+zT4t4W+vvjpGxsZlDnikarzx8tSzMebh3UiFtgqwFwnTnjYQcsyMF8ei2mCO/tpeA==} + engines: {node: '>=18'} + hasBin: true + + pngjs@5.0.0: + resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} + engines: {node: '>=10.13.0'} + + pngjs@7.0.0: + resolution: {integrity: sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==} + engines: {node: '>=14.19.0'} + + point-in-polygon@1.1.0: + resolution: {integrity: sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.15: + resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==} + engines: {node: ^10 || ^12 || >=14} + + postgres-array@2.0.0: + resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} + engines: {node: '>=4'} + + postgres-array@3.0.4: + resolution: {integrity: sha512-nAUSGfSDGOaOAEGwqsRY27GPOea7CNipJPOA7lPbdEpx5Kg3qzdP0AaWC5MlhTWV9s4hFX39nomVZ+C4tnGOJQ==} + engines: {node: '>=12'} + + postgres-bytea@1.0.1: + resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==} + engines: {node: '>=0.10.0'} + + postgres-date@1.0.7: + resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==} + engines: {node: '>=0.10.0'} + + postgres-interval@1.2.0: + resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} + engines: {node: '>=0.10.0'} + + postgres@3.4.7: + resolution: {integrity: sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==} + engines: {node: '>=12'} + + posthog-js@1.376.5: + resolution: {integrity: sha512-Fa3QluqdwhprwQ+A38Hhirbw4s6f06KYeN/k4Cnp/xmSASbKDRHdphdh2/AYwXgnK1oS+LK5yAt43whc0z9I5w==} + + posthog-node@5.35.7: + resolution: {integrity: sha512-UP6qXHN8bsVWZq3b5dURc1dZ2tEiumVi430IeOwSMx8ztqIQnmuI7bOm4jJ7HFVdrUOEw2DnNPIQY6IxD1XmwQ==} + engines: {node: ^20.20.0 || >=22.22.0} + peerDependencies: + rxjs: ^7.0.0 + peerDependenciesMeta: + rxjs: + optional: true + + potpack@2.1.0: + resolution: {integrity: sha512-pcaShQc1Shq0y+E7GqJqvZj8DTthWV1KeHGdi0Z6IAin2Oi3JnLCOfwnCo84qc+HAp52wT9nK9H7FAJp5a44GQ==} + + preact@10.29.2: + resolution: {integrity: sha512-7tNmwg/7mzzAoB/8kSg6Hl37JraAZw3Z3A0JSY7VXlZwo82Xn0G7wKbNNs2qoF4ZEEsQGTwDAroNdqKs1ofJxQ==} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-plugin-tailwindcss@0.8.0: + resolution: {integrity: sha512-V8ITGH87yuBDF6JpEZTOVlUz/saAwqb8f3HRgUj8Lh+tGCcrmorhsLpYqzygwFwK0PE2Ib6Mv3M7T/uE2tZV1g==} + engines: {node: '>=20.19'} + peerDependencies: + '@ianvs/prettier-plugin-sort-imports': '*' + '@prettier/plugin-hermes': '*' + '@prettier/plugin-oxc': '*' + '@prettier/plugin-pug': '*' + '@shopify/prettier-plugin-liquid': '*' + '@trivago/prettier-plugin-sort-imports': '*' + '@zackad/prettier-plugin-twig': '*' + prettier: ^3.0 + prettier-plugin-astro: '*' + prettier-plugin-css-order: '*' + prettier-plugin-jsdoc: '*' + prettier-plugin-marko: '*' + prettier-plugin-multiline-arrays: '*' + prettier-plugin-organize-attributes: '*' + prettier-plugin-organize-imports: '*' + prettier-plugin-sort-imports: '*' + prettier-plugin-svelte: '*' + peerDependenciesMeta: + '@ianvs/prettier-plugin-sort-imports': + optional: true + '@prettier/plugin-hermes': + optional: true + '@prettier/plugin-oxc': + optional: true + '@prettier/plugin-pug': + optional: true + '@shopify/prettier-plugin-liquid': + optional: true + '@trivago/prettier-plugin-sort-imports': + optional: true + '@zackad/prettier-plugin-twig': + optional: true + prettier-plugin-astro: + optional: true + prettier-plugin-css-order: + optional: true + prettier-plugin-jsdoc: + optional: true + prettier-plugin-marko: + optional: true + prettier-plugin-multiline-arrays: + optional: true + prettier-plugin-organize-attributes: + optional: true + prettier-plugin-organize-imports: + optional: true + prettier-plugin-sort-imports: + optional: true + prettier-plugin-svelte: + optional: true + + prettier@3.8.3: + resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==} + engines: {node: '>=14'} + hasBin: true + + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + prisma@7.8.0: + resolution: {integrity: sha512-yfN4yrw7HV9kEJhoy1+jgah0jafEIQsf7uWouSsM8MvJtlubsk+kM7AIBWZ8+GJl74Yj3c+nbYqBkMOxtsZ3Lw==} + engines: {node: ^20.19 || ^22.12 || >=24.0} + hasBin: true + peerDependencies: + better-sqlite3: '>=9.0.0' + typescript: '>=5.4.0' + peerDependenciesMeta: + better-sqlite3: + optional: true + typescript: + optional: true + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + + proper-lockfile@4.1.2: + resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==} + + property-information@7.1.0: + resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} + + prosemirror-changeset@2.4.1: + resolution: {integrity: sha512-96WBLhOaYhJ+kPhLg3uW359Tz6I/MfcrQfL4EGv4SrcqKEMC1gmoGrXHecPE8eOwTVCJ4IwgfzM8fFad25wNfw==} + + prosemirror-commands@1.7.1: + resolution: {integrity: sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==} + + prosemirror-dropcursor@1.8.2: + resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==} + + prosemirror-gapcursor@1.4.1: + resolution: {integrity: sha512-pMdYaEnjNMSwl11yjEGtgTmLkR08m/Vl+Jj443167p9eB3HVQKhYCc4gmHVDsLPODfZfjr/MmirsdyZziXbQKw==} + + prosemirror-history@1.5.0: + resolution: {integrity: sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg==} + + prosemirror-inputrules@1.5.1: + resolution: {integrity: sha512-7wj4uMjKaXWAQ1CDgxNzNtR9AlsuwzHfdFH1ygEHA2KHF2DOEaXl1CJfNPAKCg9qNEh4rum975QLaCiQPyY6Fw==} + + prosemirror-keymap@1.2.3: + resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==} + + prosemirror-model@1.25.7: + resolution: {integrity: sha512-A79aN8QEFUwI6cax8Yq4Rpcx1TJZ3Kagn+ii7qLo4/V8H3mMiHrhFyhTyHHvpSnOgMPpWiDGSwM3etwrxE50ug==} + + prosemirror-schema-list@1.5.1: + resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==} + + prosemirror-state@1.4.4: + resolution: {integrity: sha512-6jiYHH2CIGbCfnxdHbXZ12gySFY/fz/ulZE333G6bPqIZ4F+TXo9ifiR86nAHpWnfoNjOb3o5ESi7J8Uz1jXHw==} + + prosemirror-tables@1.8.5: + resolution: {integrity: sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw==} + + prosemirror-transform@1.12.0: + resolution: {integrity: sha512-GxboyN4AMIsoHNtz5uf2r2Ru551i5hWeCMD6E2Ib4Eogqoub0NflniaBPVQ4MrGE5yZ8JV9tUHg9qcZTTrcN4w==} + + prosemirror-view@1.41.8: + resolution: {integrity: sha512-TnKDdohEatgyZNGCDWIdccOHXhYloJwbwU+phw/a23KBvJIR9lWQWW7WHHK3vBdOLDNuF7TaX98GObUZOWkOnA==} + + protobufjs@7.6.2: + resolution: {integrity: sha512-N9EiLovGEQOJSPF26Ij7qUGvahfEnq0eeYZ02aigIedkmz1qZSwjnP9SBITHJuF/6MYbIW4HDN8zdYjsjqJKXQ==} + engines: {node: '>=12.0.0'} + + protocol-buffers-schema@3.6.1: + resolution: {integrity: sha512-VG2K63Igkiv9p76tk1lilczEK1cT+kCjKtkdhw1dQZV3k3IXJbd3o6Ho8b9zJZaHSnT2hKe4I+ObmX9w6m5SmQ==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + pvtsutils@1.3.6: + resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==} + + pvutils@1.1.5: + resolution: {integrity: sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==} + engines: {node: '>=16.0.0'} + + qrcode@1.5.4: + resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==} + engines: {node: '>=10.13.0'} + hasBin: true + + query-selector-shadow-dom@1.0.1: + resolution: {integrity: sha512-lT5yCqEBgfoMYpf3F2xQRK7zEr1rhIIZuceDK6+xRkJQ4NMbHTwXqk4NkwDwQMNqXgG9r9fyHnzwNVs6zV5KRw==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quickselect@3.0.0: + resolution: {integrity: sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==} + + rbush@4.0.1: + resolution: {integrity: sha512-IP0UpfeWQujYC8Jg162rMNc01Rf0gWMMAb2Uxus/Q0qOFw4lCcq6ZnQEZwUoJqWyUGJ9th7JjwI4yIWo+uvoAQ==} + + rc9@3.0.1: + resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==} + + react-aria-components@1.18.0: + resolution: {integrity: sha512-FhRQjuDkH4WhgFv+O2sYTzK3JzdZTGpBeaqfRlfTo+DcSZzD8elJEkytHe7SDpcexVKeire8NVd7OruZHfCVoA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + react-aria@3.49.0: + resolution: {integrity: sha512-4+oK9FwJQWYhyA5zLfj/feOGY0zZbkE1muoF4gyxMroHVypjcYaRSTlJwvxph2zIlxt757KX6xIK2wJ5Aw1Kog==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + react-best-merge-refs@1.0.2: + resolution: {integrity: sha512-L8UHTNEBTLCCHbF92Me/CVGFaNS/yJch7JwyE1PlnE5zJYRVgrHeqaXO50E8V4KObybpk1fnt4miQkoIKKHaVQ==} + peerDependencies: + react: ^19 + + react-docgen-typescript@2.4.0: + resolution: {integrity: sha512-ZtAp5XTO5HRzQctjPU0ybY0RRCQO19X/8fxn3w7y2VVTUbGHDKULPTL4ky3vB05euSgG5NpALhEhDPvQ56wvXg==} + peerDependencies: + typescript: '>= 4.3.x' + + react-docgen@8.0.3: + resolution: {integrity: sha512-aEZ9qP+/M+58x2qgfSFEWH1BxLyHe5+qkLNJOZQb5iGS017jpbRnoKhNRrXPeA6RfBrZO5wZrT9DMC1UqE1f1w==} + engines: {node: ^20.9.0 || >=22} + + react-dom@19.2.6: + resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==} + peerDependencies: + react: ^19.2.6 + + react-dropzone@15.0.0: + resolution: {integrity: sha512-lGjYV/EoqEjEWPnmiSvH4v5IoIAwQM2W4Z1C0Q/Pw2xD0eVzKPS359BQTUMum+1fa0kH2nrKjuavmTPOGhpLPg==} + engines: {node: '>= 10.13'} + peerDependencies: + react: '>= 16.8 || 18.0.0' + + react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-markdown@10.1.0: + resolution: {integrity: sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==} + peerDependencies: + '@types/react': '>=18' + react: '>=18' + + react-redux@9.3.0: + resolution: {integrity: sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==} + peerDependencies: + '@types/react': ^18.2.25 || ^19 + react: ^18.0 || ^19 + redux: ^5.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + redux: + optional: true + + react-stately@3.47.0: + resolution: {integrity: sha512-H3ar+SOWP920EbVg7qWfP3fZjZiwhlEJAEJQqjt+w8oKijCwFgr0+R4941PIHscOXRNRvEOjvWilitImC0DdBg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + react@19.2.6: + resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==} + engines: {node: '>=0.10.0'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@5.0.0: + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} + engines: {node: '>= 20.19.0'} + + recast@0.23.11: + resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==} + engines: {node: '>= 4'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + redux-logger@3.0.6: + resolution: {integrity: sha512-JoCIok7bg/XpqA1JqCqXFypuqBbQzGQySrhFzewB7ThcnysTO30l4VCst86AuB9T9tuT03MAA56Jw2PNhRSNCg==} + + redux-thunk@3.1.0: + resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==} + peerDependencies: + redux: ^5.0.0 + + redux@5.0.1: + resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==} + + reflect-metadata@0.2.2: + resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + + rehype-sanitize@6.0.0: + resolution: {integrity: sha512-CsnhKNsyI8Tub6L4sm5ZFsme4puGfc6pYylvXo1AeqaGbjOYyzNv3qZPwvs0oMJ39eryyeOdmxwUIo94IpEhqg==} + + remark-gemoji@8.0.0: + resolution: {integrity: sha512-/fL9rc72FYwFGtOKcT+QeQdx9Q9t5v4N6KLXSDOTEgaedzK85I9judBqB2eqz+g4b0ERMejlwSOuPK+wket6aA==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-rehype@11.1.2: + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} + + remeda@2.33.4: + resolution: {integrity: sha512-ygHswjlc/opg2VrtiYvUOPLjxjtdKvjGz1/plDhkG66hjNjFr1xmfrs2ClNFo/E6TyUFiwYNh53bKV26oBoMGQ==} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + require-main-filename@2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + + reselect@5.2.0: + resolution: {integrity: sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve-protobuf-schema@2.1.0: + resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} + + resolve@1.22.12: + resolution: {integrity: sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==} + engines: {node: '>= 0.4'} + hasBin: true + + resolve@2.0.0-next.7: + resolution: {integrity: sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==} + engines: {node: '>= 0.4'} + hasBin: true + + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + robust-predicates@2.0.4: + resolution: {integrity: sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==} + + robust-predicates@3.0.3: + resolution: {integrity: sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA==} + + rolldown@1.0.2: + resolution: {integrity: sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + + rope-sequence@1.3.4: + resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==} + + run-applescript@7.1.0: + resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} + engines: {node: '>=18'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rxjs@7.8.2: + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + + safe-array-concat@1.1.4: + resolution: {integrity: sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sanitize-filename@1.6.4: + resolution: {integrity: sha512-9ZyI08PsvdQl2r/bBIGubpVdR3RR9sY6RDiWFPreA21C/EFlQhmgo20UZlNjZMMZNubusLhAQozkA0Od5J21Eg==} + + sass-embedded-all-unknown@1.100.0: + resolution: {integrity: sha512-auFtXY/kwYILmSVjtBDwyj0axcLbYYiffOKWoaXHnI5bsYwiRbBh3EneR1rpbX2ZIZCrwX93i5pxKLTZF/662Q==} + cpu: ['!arm', '!arm64', '!riscv64', '!x64'] + + sass-embedded-android-arm64@1.100.0: + resolution: {integrity: sha512-W+Ru9JwTnfU0UX3jSZcbqFdtKFMcYdfFwytc57h2DgnqCOIiAqI2E06mABZBZC+r3LwXCBuS5GbXAGeVgvVDkA==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [android] + + sass-embedded-android-arm@1.100.0: + resolution: {integrity: sha512-70f3HgX2pFNmzpGQ86n5e6QfWn2fP4QUQGfFQK0P1XH73ZLIzLo2YqygrGKGKeeqtc5eU2Wl1/xQzhzuKnO4kw==} + engines: {node: '>=14.0.0'} + cpu: [arm] + os: [android] + + sass-embedded-android-riscv64@1.100.0: + resolution: {integrity: sha512-icU3o0V/uCSytSpf+tX5Lf51BvyQEbLzDUJfUi9etSauYBGHpPKkdtdZH0si4v98phq11Kl8rSV1SggksxF1Hg==} + engines: {node: '>=14.0.0'} + cpu: [riscv64] + os: [android] + + sass-embedded-android-x64@1.100.0: + resolution: {integrity: sha512-mevF9VQk6gEYByy8+jusaHGmd7Usb2ytX/DsEOd0JtOGCtcf1kh575xJ6OUBDIcJ15uLnbau/0iy1eP6WVBvWA==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [android] + + sass-embedded-darwin-arm64@1.100.0: + resolution: {integrity: sha512-1PVlYi61POo93IT/FfrG1mc1tAHxeSTyUALF2aOFmXGWjVXr3bQzEQiBGCOvQbj/ix+5hNyXFXcEMEyKvtUJJA==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [darwin] + + sass-embedded-darwin-x64@1.100.0: + resolution: {integrity: sha512-x97o3JnGyImZNCIVs9wQHJUE5QCvmVIKaH1cwrz/5dK7OT1FpeNiW+u9TUomP9hG6Ekjd8EL8NBHpxTfIhdjmg==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [darwin] + + sass-embedded-linux-arm64@1.100.0: + resolution: {integrity: sha512-Dwjmj8Z6VRy7rAi53JAdEwIyUjpfl7PhpSc2/LpQPQx+aO5Dp7Spaipkax0ufJl1SoDUdchCsM4y/88YaluorQ==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [linux] + libc: glibc + + sass-embedded-linux-arm@1.100.0: + resolution: {integrity: sha512-9Ul7O1eKrc5YlhwWjkp8tZPSe3UEwSZ1uwUZOQom1HL0pRlBA6F/IlGZYFTLwnHMIP1fc77MMNaBRfc05mKMpw==} + engines: {node: '>=14.0.0'} + cpu: [arm] + os: [linux] + libc: glibc + + sass-embedded-linux-musl-arm64@1.100.0: + resolution: {integrity: sha512-XpACJB2KjSLjf2e9uuvGVdOURsoNrFqgRiihhXyUHK9W0t3LIHb7z5MA/7XGPIT9bWSOO2zyw+rH/FHtDV/Yrg==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [linux] + libc: musl + + sass-embedded-linux-musl-arm@1.100.0: + resolution: {integrity: sha512-sl0JgbGloPyJg66XXx5UDSDScZ0oU85DpMQU4JU/sCUCFj1Z8zZ69SJWKTCNE4/jwnce7WI2zPCV5AG+RHOZJw==} + engines: {node: '>=14.0.0'} + cpu: [arm] + os: [linux] + libc: musl + + sass-embedded-linux-musl-riscv64@1.100.0: + resolution: {integrity: sha512-ShvI0Kx04mwoCARwZ0UjiT97isQvzO80tAt91zmFyHLN9kelc/IrQi940farSm2xQVPCKdeVyeG0ekBsokSpYQ==} + engines: {node: '>=14.0.0'} + cpu: [riscv64] + os: [linux] + libc: musl + + sass-embedded-linux-musl-x64@1.100.0: + resolution: {integrity: sha512-TDBCRWNuS4RDLQXvRc1gjZlWiWTWaWGp0Bwu/IKwJxov81lsvrCs3TihTyNXtW7V5aoN4Ky3r0QOkNb3mwmBnA==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [linux] + libc: musl + + sass-embedded-linux-riscv64@1.100.0: + resolution: {integrity: sha512-j4ENJGOheO+fm3j/yorLxCjBP6/XskrZx7dTLlT+lXYwN/qqCqoA/gsNLI0McS3DFM6GBwPiffzWsdWS8t6sEQ==} + engines: {node: '>=14.0.0'} + cpu: [riscv64] + os: [linux] + libc: glibc + + sass-embedded-linux-x64@1.100.0: + resolution: {integrity: sha512-0vUSN8j0WGtCJIOPh//EmUvYGHW0QOe5iul8qyhPk50MAcw49MA0r34AhftjDdx94ILPF6vApFs0gwHPQRlpVA==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [linux] + libc: glibc + + sass-embedded-unknown-all@1.100.0: + resolution: {integrity: sha512-c+naBgWId4MIpToXcI0DgqetjdAkwTTAxFAuOaBz7HUXLdyG1oZRrEvSsbe41nEdQOKH0vgofVFCeSQgoXOG9A==} + os: ['!android', '!darwin', '!linux', '!win32'] + + sass-embedded-win32-arm64@1.100.0: + resolution: {integrity: sha512-iE+yxj+hUXwwbqpHkXxgAWTzeRfcWxJ7SSTQEPMk48lwq3oCrWLlz5sQuWHbuTK/i0GKQfROdP+hOmPi89yjUg==} + engines: {node: '>=14.0.0'} + cpu: [arm64] + os: [win32] + + sass-embedded-win32-x64@1.100.0: + resolution: {integrity: sha512-qI4F8MI7/KYoy9NdjJfhSspG42WPkADSNDvwEV7qWvCSFC83koJssRsKO2/PfY+niZz6BG65Ic/D+A11h959hw==} + engines: {node: '>=14.0.0'} + cpu: [x64] + os: [win32] + + sass-embedded@1.100.0: + resolution: {integrity: sha512-Ut8wlQSk19tm7jMK6mz6cF1+e+E7tUnW2tM02zQDPnOTcVbV8qCQG8UWxZkkNlY50+hV3hqP24OOkUlMz8xBpw==} + engines: {node: '>=16.0.0'} + hasBin: true + + sass@1.100.0: + resolution: {integrity: sha512-B5j0rYMlinhhOo9tjQebMVVn0TfyXAF+wB3b2ggZUuJ/is/Y+7+JGjirAMxHZ9Z3hIP98NPfamlAkBHa1lAaXQ==} + engines: {node: '>=20.19.0'} + hasBin: true + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.27.0: + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} + + schema-utils@4.3.3: + resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==} + engines: {node: '>= 10.13.0'} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.8.1: + resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==} + engines: {node: '>=10'} + hasBin: true + + seq-queue@0.0.5: + resolution: {integrity: sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==} + + server-only@0.0.1: + resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + setimmediate@1.0.5: + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + + sharp@0.34.5: + resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shell-quote@1.8.4: + resolution: {integrity: sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==} + engines: {node: '>= 0.4'} + + side-channel-list@1.0.1: + resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + simplex-noise@4.0.3: + resolution: {integrity: sha512-qSE2I4AngLQG7BXqoZj51jokT4WUXe8mOBrvfOXpci8+6Yu44+/dD5zqDpOx3Ux792eamTd2lLcI8jqFntk/lg==} + + sirv@3.0.2: + resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==} + engines: {node: '>=18'} + + smol-toml@1.6.1: + resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==} + engines: {node: '>= 18'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + splaytree@0.1.4: + resolution: {integrity: sha512-D50hKrjZgBzqD3FT2Ek53f2dcDLAQT8SSGrzj3vidNH5ISRgceeGVJ2dQIthKOuayqFXfFjXheHNo4bbt9LhRQ==} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + sqids@0.3.0: + resolution: {integrity: sha512-lOQK1ucVg+W6n3FhRwwSeUijxe93b51Bfz5PMRMihVf1iVkl82ePQG7V5vwrhzB11v0NtsR25PSZRGiSomJaJw==} + + sqlstring@2.3.3: + resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==} + engines: {node: '>= 0.6'} + + stable-hash-x@0.2.0: + resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==} + engines: {node: '>=12.0.0'} + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} + + std-env@4.1.0: + resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + storybook@10.4.1: + resolution: {integrity: sha512-V1Zd2e+gBFufqAQVZ1JR8KLqALsEZ3JYSBnWwQbKa6zCfWWanR6AFMyuOkLt2gZOgGp3h2Riuz88pGNVTQSG0A==} + hasBin: true + peerDependencies: + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + prettier: ^2 || ^3 + vite-plus: ^0.1.15 + peerDependenciesMeta: + '@types/react': + optional: true + prettier: + optional: true + vite-plus: + optional: true + + stream-browserify@3.0.0: + resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string.prototype.includes@2.0.1: + resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} + engines: {node: '>= 0.4'} + + string.prototype.matchall@4.0.12: + resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} + engines: {node: '>= 0.4'} + + string.prototype.repeat@1.0.0: + resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.2.0: + resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + strip-indent@4.1.1: + resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==} + engines: {node: '>=12'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-json-comments@5.0.3: + resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==} + engines: {node: '>=14.16'} + + strnum@2.3.0: + resolution: {integrity: sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==} + + style-to-js@1.1.21: + resolution: {integrity: sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==} + + style-to-object@1.0.14: + resolution: {integrity: sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==} + + styled-jsx@5.1.6: + resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + subtag@0.5.0: + resolution: {integrity: sha512-CaIBcTSb/nyk4xiiSOtZYz1B+F12ZxW8NEp54CdT+84vmh/h4sUnHGC6+KQXUfED8u22PQjCYWfZny8d2ELXwg==} + + supercluster@8.0.1: + resolution: {integrity: sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==} + + superjson@2.2.6: + resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==} + engines: {node: '>=16'} + + supports-color@10.2.2: + resolution: {integrity: sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==} + engines: {node: '>=18'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + + sync-child-process@1.0.2: + resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==} + engines: {node: '>=16.0.0'} + + sync-message-port@1.2.0: + resolution: {integrity: sha512-gAQ9qrUN/UCypHtGFbbe7Rc/f9bzO88IwrG8TDo/aMKAApKyD6E3W4Cm0EfhfBb6Z6SKt59tTCTfD+n1xmAvMg==} + engines: {node: '>=16.0.0'} + + synckit@0.11.13: + resolution: {integrity: sha512-eNRKgb3z66Yp3D2CixVujOUvXLFUTij/zVnV8KRyvFdQwpz7I5DS8UfRkTeLzb64u+dkzDSdelE24izu+zSSUg==} + engines: {node: ^14.18.0 || >=16.0.0} + + tabbable@5.3.3: + resolution: {integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==} + + tailwind-csstree@0.3.2: + resolution: {integrity: sha512-0iVbtKbzPZG+wcBELC7vK2z1I3n+hUQG3OzyhmMXoJTCm8j5tI+ek2Ch3X/lf/VaTf/yag9mLngoKIaehH6X0g==} + engines: {node: '>=18.18'} + peerDependencies: + '@eslint/css': '>=1.0.0' + peerDependenciesMeta: + '@eslint/css': + optional: true + + tailwind-merge@3.6.0: + resolution: {integrity: sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==} + + tailwindcss-animate@1.0.7: + resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} + peerDependencies: + tailwindcss: '>=3.0.0 || insiders' + + tailwindcss@4.3.0: + resolution: {integrity: sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==} + + tapable@2.3.3: + resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==} + engines: {node: '>=6'} + + terser-webpack-plugin@5.6.1: + resolution: {integrity: sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@minify-html/node': '*' + '@swc/core': '*' + '@swc/css': '*' + '@swc/html': '*' + clean-css: '*' + cssnano: '*' + csso: '*' + esbuild: '*' + html-minifier-terser: '*' + lightningcss: '*' + postcss: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@minify-html/node': + optional: true + '@swc/core': + optional: true + '@swc/css': + optional: true + '@swc/html': + optional: true + clean-css: + optional: true + cssnano: + optional: true + csso: + optional: true + esbuild: + optional: true + html-minifier-terser: + optional: true + lightningcss: + optional: true + postcss: + optional: true + uglify-js: + optional: true + + terser@5.48.0: + resolution: {integrity: sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==} + engines: {node: '>=10'} + hasBin: true + + tiny-invariant@1.3.3: + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinyexec@1.2.4: + resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==} + engines: {node: '>=18'} + + tinyglobby@0.2.17: + resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} + engines: {node: '>=12.0.0'} + + tinyqueue@3.0.0: + resolution: {integrity: sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + + tinyrainbow@3.1.0: + resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} + engines: {node: '>=14.0.0'} + + tinyspy@4.0.4: + resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} + engines: {node: '>=14.0.0'} + + tldts-core@7.4.2: + resolution: {integrity: sha512-nwEyF4vl4RSJjwSjBUmOSxc3BFPoIFdlRthJ6e+5v9P3bHNsoD06UjuqMUspqp7vsEZ1beaHi1km+optiE17yA==} + + tldts@7.4.2: + resolution: {integrity: sha512-kCwffuaH8ntKtygnWe1b4BJKWiCUH30n5KfoTr6IchcXOwR7chAOFJxFrH3vjANafUYrIA4a7SDL+nn7SiR4Sw==} + hasBin: true + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + + tough-cookie@6.0.1: + resolution: {integrity: sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==} + engines: {node: '>=16'} + + tr46@6.0.0: + resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==} + engines: {node: '>=20'} + + tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + truncate-utf8-bytes@1.0.2: + resolution: {integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==} + + ts-api-utils@2.5.0: + resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} + + tsconfck@3.1.6: + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tsconfig-paths-webpack-plugin@4.2.0: + resolution: {integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA==} + engines: {node: '>=10.13.0'} + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsx@4.22.4: + resolution: {integrity: sha512-X8EX+XV4QR5xCsrgxaED954zTDfY8KqlDtskKEL0cHhyS/P8b4IFOvGDQpsC9Q1XnLq915wEfwwY/zzskCtmhg==} + engines: {node: '>=18.0.0'} + hasBin: true + + tsyringe@4.10.0: + resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==} + engines: {node: '>= 6.0.0'} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.8: + resolution: {integrity: sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==} + engines: {node: '>= 0.4'} + + typescript-eslint@8.60.0: + resolution: {integrity: sha512-9f65qWLZdAW9m1JaxBDUHcqRUfL8bkxxXL7XxEfI+F09q56PkBvIfCjLF3yInsDM/BBmwkqmCQdCZe/RYlIWEw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.1.0' + + typescript@6.0.3: + resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==} + engines: {node: '>=14.17'} + hasBin: true + + unbash@3.0.0: + resolution: {integrity: sha512-FeFPZ/WFT0mbRCuydiZzpPFlrYN8ZUpphQKoq4EeElVIYjYyGzPMxQR/simUwCOJIyVhpFk4RbtyO7RuMpMnHA==} + engines: {node: '>=14'} + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + + undici@7.26.0: + resolution: {integrity: sha512-3O9Tf67pGhgOv9jM35AbhkXAKi13f3oy3aE4CSgr+TckGeY+/iu97ZXN+J7DpHPzLbVApFd1IFhcnBjREYXYcg==} + engines: {node: '>=20.18.1'} + + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unist-util-is@6.0.1: + resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@6.0.2: + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} + + unist-util-visit@5.1.0: + resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unplugin@2.3.11: + resolution: {integrity: sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==} + engines: {node: '>=18.12.0'} + + unrs-resolver@1.12.2: + resolution: {integrity: sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==} + + update-browserslist-db@1.2.3: + resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uploadthing@7.7.4: + resolution: {integrity: sha512-rlK/4JWHW5jP30syzWGBFDDXv3WJDdT8gn9OoxRJmXLoXi94hBmyyjxihGlNrKhBc81czyv8TkzMioe/OuKGfA==} + engines: {node: '>=18.13.0'} + peerDependencies: + express: '*' + fastify: '*' + h3: '*' + next: '*' + tailwindcss: ^3.0.0 || ^4.0.0-beta.0 + peerDependenciesMeta: + express: + optional: true + fastify: + optional: true + h3: + optional: true + next: + optional: true + tailwindcss: + optional: true + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + use-sync-external-store@1.6.0: + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + usehooks-ts@3.1.1: + resolution: {integrity: sha512-I4diPp9Cq6ieSUH2wu+fDAVQO43xwtulo+fKEidHUwZPnYImbtkTjzIJYcDcJqxgmX31GVqNFURodvcgHcW0pA==} + engines: {node: '>=16.15.0'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 || ^19 || ^19.0.0-rc + + utf8-byte-length@1.0.5: + resolution: {integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + uuid@14.0.0: + resolution: {integrity: sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==} + hasBin: true + + valibot@1.2.0: + resolution: {integrity: sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==} + peerDependencies: + typescript: '>=5' + peerDependenciesMeta: + typescript: + optional: true + + valibot@1.4.1: + resolution: {integrity: sha512-klCmFTz2jeDluy9RwX+F884TCiogtdBJ/YaxSx1EOBYXa3NXNWj8kR1jjN8rzluwojJVWWaHJ4r1U5LfICnM3g==} + peerDependencies: + typescript: '>=5' + peerDependenciesMeta: + typescript: + optional: true + + varint@6.0.0: + resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==} + + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + + vfile-message@4.0.3: + resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} + + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + + vite-plugin-storybook-nextjs@3.3.0: + resolution: {integrity: sha512-46DqDN/2Jdst9HdnKaJctdkZJAzwatulgiapSOFOmnZhxwnHrrIFo222ylEWmvTi8W8k2xhj8vfuBbqkWgctiQ==} + peerDependencies: + next: ^14.1.0 || ^15.0.0 || ^16.0.0 + storybook: ^0.0.0-0 || ^9.0.0 || ^10.0.0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0 || ^10.4.0-0 || ^10.5.0-0 || ^10.6.0-0 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + + vite-tsconfig-paths@5.1.4: + resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==} + peerDependencies: + vite: '*' + peerDependenciesMeta: + vite: + optional: true + + vite@8.0.14: + resolution: {integrity: sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + '@vitejs/devtools': ^0.1.18 + esbuild: ^0.27.0 || ^0.28.0 + jiti: '>=1.21.0' + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + '@vitejs/devtools': + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitest@4.1.7: + resolution: {integrity: sha512-flYyaFd2CgoCoU+0UKt3pxksgC+S02iTDN0n3LtqaMeXsI9SBcdNujc2k0DeFLzUn/0k538yNjOSdwgCqcrwJA==} + engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@opentelemetry/api': ^1.9.0 + '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 + '@vitest/browser-playwright': 4.1.7 + '@vitest/browser-preview': 4.1.7 + '@vitest/browser-webdriverio': 4.1.7 + '@vitest/coverage-istanbul': 4.1.7 + '@vitest/coverage-v8': 4.1.7 + '@vitest/ui': 4.1.7 + happy-dom: '*' + jsdom: '*' + vite: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@opentelemetry/api': + optional: true + '@types/node': + optional: true + '@vitest/browser-playwright': + optional: true + '@vitest/browser-preview': + optional: true + '@vitest/browser-webdriverio': + optional: true + '@vitest/coverage-istanbul': + optional: true + '@vitest/coverage-v8': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + w3c-keyname@2.2.8: + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + + walk-up-path@4.0.0: + resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} + engines: {node: 20 || >=22} + + watchpack@2.5.1: + resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==} + engines: {node: '>=10.13.0'} + + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + + web-vitals@5.3.0: + resolution: {integrity: sha512-q6LWsLatGYZp5VGBIOvbTj6JBV2nOmC8KvWztXBmwJcfFAzhwKwbOxhUH306XY3CcaZDUlSmSuNPBsCn0bFu+g==} + + webidl-conversions@8.0.1: + resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==} + engines: {node: '>=20'} + + webpack-sources@3.5.0: + resolution: {integrity: sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ==} + engines: {node: '>=10.13.0'} + + webpack-virtual-modules@0.6.2: + resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} + + webpack@5.107.2: + resolution: {integrity: sha512-v7RhXaJbpMlV0D7hC7lb2EbnxkoeUqf9qhKr6lozx3Q48pmFrqqNRmZFUEGmi7pSwm6fCQ2H1IjvCkHqdpVdjQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + + whatwg-mimetype@5.0.0: + resolution: {integrity: sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==} + engines: {node: '>=20'} + + whatwg-url@16.0.1: + resolution: {integrity: sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-module@2.0.1: + resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} + + which-typed-array@1.1.21: + resolution: {integrity: sha512-zbRA8cVm6io/d5W8uIe2hblzN76/Wm3v/yiythQvr+dpBWeqhPSWIDNj4zOyHi4zKbMK6DN34Xsr9jPHJERAEw==} + engines: {node: '>= 0.4'} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@9.0.2: + resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} + engines: {node: '>=18'} + + ws@8.21.0: + resolution: {integrity: sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + wsl-utils@0.1.0: + resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==} + engines: {node: '>=18'} + + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xml-naming@0.1.0: + resolution: {integrity: sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==} + engines: {node: '>=16.0.0'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yaml@2.9.0: + resolution: {integrity: sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==} + engines: {node: '>= 14.6'} + hasBin: true + + yargs-parser@18.1.3: + resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} + engines: {node: '>=6'} + + yargs-parser@22.0.0: + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} + + yargs@15.4.1: + resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} + engines: {node: '>=8'} + + yargs@18.0.0: + resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zeptomatch@2.1.0: + resolution: {integrity: sha512-KiGErG2J0G82LSpniV0CtIzjlJ10E04j02VOudJsPyPwNZgGnRKQy7I1R7GMyg/QswnE4l7ohSGrQbQbjXPPDA==} + + zod-validation-error@4.0.2: + resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + zod: ^3.25.0 || ^4.0.0 + + zod@4.4.3: + resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} + + zustand@5.0.14: + resolution: {integrity: sha512-/8tAspM5LMPr28b3fwLYrtdj77ECpfZviaP75CMTnwO8ISyaE4GDIG/9rDDYq/cH9D2Xw2A2RXglLInmVBQB/g==} + engines: {node: '>=12.20.0'} + peerDependencies: + '@types/react': '>=18.0.0' + immer: '>=9.0.6' + react: '>=18.0.0' + use-sync-external-store: '>=1.2.0' + peerDependenciesMeta: + '@types/react': + optional: true + immer: + optional: true + react: + optional: true + use-sync-external-store: + optional: true + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@adobe/css-tools@4.5.0': {} + + '@alloc/quick-lru@5.2.0': {} + + '@asamuzakjp/css-color@5.1.11': + dependencies: + '@asamuzakjp/generational-cache': 1.0.1 + '@csstools/css-calc': 3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) + '@csstools/css-tokenizer': 4.0.0 + + '@asamuzakjp/dom-selector@7.1.1': + dependencies: + '@asamuzakjp/generational-cache': 1.0.1 + '@asamuzakjp/nwsapi': 2.3.9 + bidi-js: 1.0.3 + css-tree: 3.2.1 + is-potential-custom-element-name: 1.0.1 + + '@asamuzakjp/generational-cache@1.0.1': {} + + '@asamuzakjp/nwsapi@2.3.9': {} + + '@aws-crypto/crc32@5.2.0': + dependencies: + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.973.9 + tslib: 2.8.1 + + '@aws-crypto/crc32c@5.2.0': + dependencies: + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.973.9 + tslib: 2.8.1 + + '@aws-crypto/sha1-browser@5.2.0': + dependencies: + '@aws-crypto/supports-web-crypto': 5.2.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.973.9 + '@aws-sdk/util-locate-window': 3.965.5 + '@smithy/util-utf8': 2.3.0 + tslib: 2.8.1 + + '@aws-crypto/sha256-browser@5.2.0': + dependencies: + '@aws-crypto/sha256-js': 5.2.0 + '@aws-crypto/supports-web-crypto': 5.2.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.973.9 + '@aws-sdk/util-locate-window': 3.965.5 + '@smithy/util-utf8': 2.3.0 + tslib: 2.8.1 + + '@aws-crypto/sha256-js@5.2.0': + dependencies: + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.973.9 + tslib: 2.8.1 + + '@aws-crypto/supports-web-crypto@5.2.0': + dependencies: + tslib: 2.8.1 + + '@aws-crypto/util@5.2.0': + dependencies: + '@aws-sdk/types': 3.973.9 + '@smithy/util-utf8': 2.3.0 + tslib: 2.8.1 + + '@aws-sdk/client-s3@3.1057.0': + dependencies: + '@aws-crypto/sha1-browser': 5.2.0 + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/core': 3.974.15 + '@aws-sdk/credential-provider-node': 3.972.47 + '@aws-sdk/middleware-bucket-endpoint': 3.972.17 + '@aws-sdk/middleware-expect-continue': 3.972.14 + '@aws-sdk/middleware-flexible-checksums': 3.974.23 + '@aws-sdk/middleware-location-constraint': 3.972.11 + '@aws-sdk/middleware-sdk-s3': 3.972.44 + '@aws-sdk/middleware-ssec': 3.972.11 + '@aws-sdk/signature-v4-multi-region': 3.996.30 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/fetch-http-handler': 5.4.5 + '@smithy/node-http-handler': 4.7.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/core@3.974.15': + dependencies: + '@aws-sdk/types': 3.973.9 + '@aws-sdk/xml-builder': 3.972.26 + '@aws/lambda-invoke-store': 0.2.4 + '@smithy/core': 3.24.5 + '@smithy/signature-v4': 5.4.5 + '@smithy/types': 4.14.2 + bowser: 2.14.1 + tslib: 2.8.1 + + '@aws-sdk/crc64-nvme@3.972.9': + dependencies: + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-env@3.972.41': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-http@3.972.43': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/fetch-http-handler': 5.4.5 + '@smithy/node-http-handler': 4.7.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-ini@3.972.46': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/credential-provider-env': 3.972.41 + '@aws-sdk/credential-provider-http': 3.972.43 + '@aws-sdk/credential-provider-login': 3.972.45 + '@aws-sdk/credential-provider-process': 3.972.41 + '@aws-sdk/credential-provider-sso': 3.972.45 + '@aws-sdk/credential-provider-web-identity': 3.972.45 + '@aws-sdk/nested-clients': 3.997.13 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/credential-provider-imds': 4.3.6 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-login@3.972.45': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/nested-clients': 3.997.13 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-node@3.972.47': + dependencies: + '@aws-sdk/credential-provider-env': 3.972.41 + '@aws-sdk/credential-provider-http': 3.972.43 + '@aws-sdk/credential-provider-ini': 3.972.46 + '@aws-sdk/credential-provider-process': 3.972.41 + '@aws-sdk/credential-provider-sso': 3.972.45 + '@aws-sdk/credential-provider-web-identity': 3.972.45 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/credential-provider-imds': 4.3.6 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-process@3.972.41': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-sso@3.972.45': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/nested-clients': 3.997.13 + '@aws-sdk/token-providers': 3.1056.0 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-web-identity@3.972.45': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/nested-clients': 3.997.13 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/lib-storage@3.1057.0(@aws-sdk/client-s3@3.1057.0)': + dependencies: + '@aws-sdk/client-s3': 3.1057.0 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + buffer: 5.6.0 + events: 3.3.0 + stream-browserify: 3.0.0 + tslib: 2.8.1 + + '@aws-sdk/middleware-bucket-endpoint@3.972.17': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/middleware-expect-continue@3.972.14': + dependencies: + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/middleware-flexible-checksums@3.974.23': + dependencies: + '@aws-crypto/crc32': 5.2.0 + '@aws-crypto/crc32c': 5.2.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/core': 3.974.15 + '@aws-sdk/crc64-nvme': 3.972.9 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/middleware-location-constraint@3.972.11': + dependencies: + '@aws-sdk/types': 3.973.9 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/middleware-sdk-s3@3.972.44': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/signature-v4-multi-region': 3.996.30 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/middleware-ssec@3.972.11': + dependencies: + '@aws-sdk/types': 3.973.9 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/nested-clients@3.997.13': + dependencies: + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/core': 3.974.15 + '@aws-sdk/signature-v4-multi-region': 3.996.30 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/fetch-http-handler': 5.4.5 + '@smithy/node-http-handler': 4.7.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/s3-request-presigner@3.1057.0': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/signature-v4-multi-region': 3.996.30 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/signature-v4-multi-region@3.996.30': + dependencies: + '@aws-sdk/types': 3.973.9 + '@smithy/signature-v4': 5.4.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/token-providers@3.1056.0': + dependencies: + '@aws-sdk/core': 3.974.15 + '@aws-sdk/nested-clients': 3.997.13 + '@aws-sdk/types': 3.973.9 + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/types@3.973.9': + dependencies: + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@aws-sdk/util-locate-window@3.965.5': + dependencies: + tslib: 2.8.1 + + '@aws-sdk/xml-builder@3.972.26': + dependencies: + '@smithy/types': 4.14.2 + fast-xml-parser: 5.7.3 + tslib: 2.8.1 + + '@aws/lambda-invoke-store@0.2.4': {} + + '@babel/code-frame@7.29.7': + dependencies: + '@babel/helper-validator-identifier': 7.29.7 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.29.7': {} + + '@babel/core@7.29.7': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7) + '@babel/helpers': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + '@jridgewell/remapping': 2.3.5 + convert-source-map: 2.0.0 + debug: 4.4.3 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.29.7': + dependencies: + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + + '@babel/helper-compilation-targets@7.29.7': + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + browserslist: 4.28.2 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-globals@7.29.7': {} + + '@babel/helper-module-imports@7.29.7': + dependencies: + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)': + dependencies: + '@babel/core': 7.29.7 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.7 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.29.7': {} + + '@babel/helper-validator-identifier@7.29.7': {} + + '@babel/helper-validator-option@7.29.7': {} + + '@babel/helpers@7.29.7': + dependencies: + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 + + '@babel/parser@7.29.7': + dependencies: + '@babel/types': 7.29.7 + + '@babel/runtime@7.29.7': {} + + '@babel/template@7.29.7': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + + '@babel/traverse@7.29.7': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-globals': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 + debug: 4.4.3 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.29.7': + dependencies: + '@babel/helper-string-parser': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + + '@base-ui/react@1.5.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@babel/runtime': 7.29.7 + '@base-ui/utils': 0.2.9(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@floating-ui/react-dom': 2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@floating-ui/utils': 0.2.11 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + use-sync-external-store: 1.6.0(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + + '@base-ui/utils@0.2.9(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@babel/runtime': 7.29.7 + '@floating-ui/utils': 0.2.11 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + reselect: 5.2.0 + use-sync-external-store: 1.6.0(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + + '@bcoe/v8-coverage@1.0.2': {} + + '@blazediff/core@1.9.1': {} + + '@bramus/specificity@2.4.2': + dependencies: + css-tree: 3.2.1 + + '@bufbuild/protobuf@2.12.0': {} + + '@chromatic-com/storybook@5.2.1(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))': + dependencies: + '@neoconfetti/react': 1.0.0 + chromatic: 16.10.0 + jsonfile: 6.2.1 + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + strip-ansi: 7.2.0 + transitivePeerDependencies: + - '@chromatic-com/cypress' + - '@chromatic-com/playwright' + - '@chromatic-com/vitest' + + '@codaco/fresco-ui@2.11.2(@base-ui/react@1.5.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(@codaco/shared-consts@5.1.0)(@codaco/tailwind-config@1.0.0-alpha.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0))(@floating-ui/dom@1.7.6)(@tanstack/react-table@8.21.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(motion@12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0)(typescript@6.0.3)(zod@4.4.3)(zustand@5.0.14(@types/react@19.2.15)(immer@11.1.8)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6)))': + dependencies: + '@base-ui/react': 1.5.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@codaco/shared-consts': 5.1.0 + '@codaco/tailwind-config': 1.0.0-alpha.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0) + '@radix-ui/react-slot': 1.2.4(@types/react@19.2.15)(react@19.2.6) + '@tanstack/react-table': 8.21.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/extension-bullet-list': 3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-heading': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-ordered-list': 3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-paragraph': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/pm': 3.24.0 + '@tiptap/react': 3.24.0(@floating-ui/dom@1.7.6)(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@tiptap/starter-kit': 3.24.0 + comlink: 4.4.2 + cva: 1.0.0-beta.4(typescript@6.0.3) + es-toolkit: 1.47.0 + fuse.js: 7.4.0 + immer: 11.1.8 + lucide-react: 1.17.0(react@19.2.6) + motion: 12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + nanoid: 5.1.11 + react: 19.2.6 + react-aria-components: 1.18.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + react-best-merge-refs: 1.0.2(patch_hash=469dfbaa03c158d70d3588a72c8d8cd96e54c22d37f6fe62535c0b33fd21adc8)(react@19.2.6) + react-dom: 19.2.6(react@19.2.6) + react-markdown: 10.1.0(@types/react@19.2.15)(react@19.2.6) + rehype-raw: 7.0.0 + rehype-sanitize: 6.0.0 + remark-gemoji: 8.0.0 + tailwind-merge: 3.6.0 + tailwindcss: 4.3.0 + usehooks-ts: 3.1.1(react@19.2.6) + zod: 4.4.3 + zustand: 5.0.14(@types/react@19.2.15)(immer@11.1.8)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6)) + transitivePeerDependencies: + - '@floating-ui/dom' + - '@tiptap/extension-list' + - '@types/react' + - '@types/react-dom' + - supports-color + - typescript + + '@codaco/interview@1.0.0-alpha.23(ed4fb8fbcd34bd15b353c5c5fe190839)': + dependencies: + '@base-ui/react': 1.5.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@codaco/fresco-ui': 2.11.2(@base-ui/react@1.5.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(@codaco/shared-consts@5.1.0)(@codaco/tailwind-config@1.0.0-alpha.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0))(@floating-ui/dom@1.7.6)(@tanstack/react-table@8.21.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(motion@12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0)(typescript@6.0.3)(zod@4.4.3)(zustand@5.0.14(@types/react@19.2.15)(immer@11.1.8)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6))) + '@codaco/network-query': 1.0.1 + '@codaco/protocol-validation': 11.6.1 + '@codaco/shared-consts': 5.1.0 + '@codaco/tailwind-config': 1.0.0-alpha.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0) + '@faker-js/faker': 10.4.0 + '@mapbox/search-js-react': 1.5.1(mapbox-gl@3.24.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@reduxjs/toolkit': 2.12.0(react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1))(react@19.2.6) + concaveman: 2.0.0 + csvtojson: 2.0.14 + d3-force: 3.0.0 + es-toolkit: 1.47.0 + immer: 11.1.8 + lucide-react: 1.17.0(react@19.2.6) + mapbox-gl: 3.24.0 + motion: 12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + ohash: 2.0.11 + posthog-js: 1.376.5 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + react-redux: 9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1) + redux-logger: 3.0.6 + redux-thunk: 3.1.0(redux@5.0.1) + tailwindcss: 4.3.0 + uuid: 14.0.0 + zustand: 5.0.14(@types/react@19.2.15)(immer@11.1.8)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6)) + transitivePeerDependencies: + - '@date-fns/tz' + - '@types/react' + - date-fns + - redux + - use-sync-external-store + + '@codaco/network-exporters@1.0.3': + dependencies: + '@codaco/protocol-validation': 11.6.1 + '@codaco/shared-consts': 5.1.0 + '@xmldom/xmldom': 0.9.10 + effect: 3.21.2 + es-toolkit: 1.47.0 + fflate: 0.8.3 + ohash: 2.0.11 + sanitize-filename: 1.6.4 + zod: 4.4.3 + + '@codaco/network-query@1.0.1': + dependencies: + '@codaco/protocol-validation': 11.4.0 + '@codaco/shared-consts': 5.0.0 + es-toolkit: 1.47.0 + + '@codaco/protocol-utilities@1.0.0-alpha.0': + dependencies: + '@codaco/network-query': 1.0.1 + '@codaco/protocol-validation': 11.6.0 + '@codaco/shared-consts': 5.1.0 + '@faker-js/faker': 10.4.0 + es-toolkit: 1.47.0 + uuid: 14.0.0 + + '@codaco/protocol-validation@11.4.0': + dependencies: + '@codaco/shared-consts': 5.0.0 + '@faker-js/faker': 10.4.0 + zod: 4.4.3 + + '@codaco/protocol-validation@11.6.0': + dependencies: + '@codaco/shared-consts': 5.1.0 + '@faker-js/faker': 10.4.0 + ohash: 2.0.11 + zod: 4.4.3 + + '@codaco/protocol-validation@11.6.1': + dependencies: + '@codaco/shared-consts': 5.1.0 + '@faker-js/faker': 10.4.0 + ohash: 2.0.11 + zod: 4.4.3 + + '@codaco/shared-consts@5.0.0': + dependencies: + zod: 4.4.3 + + '@codaco/shared-consts@5.1.0': + dependencies: + zod: 4.4.3 + + '@codaco/tailwind-config@1.0.0-alpha.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(tailwindcss@4.3.0)': + dependencies: + '@fontsource-variable/inclusive-sans': 5.2.8 + '@fontsource-variable/nunito': 5.2.7 + motion: 12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + tailwindcss: 4.3.0 + transitivePeerDependencies: + - '@emotion/is-prop-valid' + - react + - react-dom + + '@csstools/color-helpers@6.0.2': {} + + '@csstools/css-calc@3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': + dependencies: + '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) + '@csstools/css-tokenizer': 4.0.0 + + '@csstools/css-color-parser@4.1.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': + dependencies: + '@csstools/color-helpers': 6.0.2 + '@csstools/css-calc': 3.2.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) + '@csstools/css-tokenizer': 4.0.0 + + '@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0)': + dependencies: + '@csstools/css-tokenizer': 4.0.0 + + '@csstools/css-syntax-patches-for-csstree@1.1.4(css-tree@3.2.1)': + optionalDependencies: + css-tree: 3.2.1 + + '@csstools/css-tokenizer@4.0.0': {} + + '@effect/platform@0.90.3(effect@3.17.7)': + dependencies: + '@opentelemetry/semantic-conventions': 1.41.1 + effect: 3.17.7 + find-my-way-ts: 0.1.6 + msgpackr: 1.11.12 + multipasta: 0.2.7 + + '@electric-sql/pglite-socket@0.1.1(@electric-sql/pglite@0.4.1)': + dependencies: + '@electric-sql/pglite': 0.4.1 + + '@electric-sql/pglite-tools@0.3.1(@electric-sql/pglite@0.4.1)': + dependencies: + '@electric-sql/pglite': 0.4.1 + + '@electric-sql/pglite@0.4.1': {} + + '@emnapi/core@1.10.0': + dependencies: + '@emnapi/wasi-threads': 1.2.1 + tslib: 2.8.1 + optional: true + + '@emnapi/core@1.9.2': + dependencies: + '@emnapi/wasi-threads': 1.2.1 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.10.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.9.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.2.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@esbuild/aix-ppc64@0.27.7': + optional: true + + '@esbuild/aix-ppc64@0.28.0': + optional: true + + '@esbuild/android-arm64@0.27.7': + optional: true + + '@esbuild/android-arm64@0.28.0': + optional: true + + '@esbuild/android-arm@0.27.7': + optional: true + + '@esbuild/android-arm@0.28.0': + optional: true + + '@esbuild/android-x64@0.27.7': + optional: true + + '@esbuild/android-x64@0.28.0': + optional: true + + '@esbuild/darwin-arm64@0.27.7': + optional: true + + '@esbuild/darwin-arm64@0.28.0': + optional: true + + '@esbuild/darwin-x64@0.27.7': + optional: true + + '@esbuild/darwin-x64@0.28.0': + optional: true + + '@esbuild/freebsd-arm64@0.27.7': + optional: true + + '@esbuild/freebsd-arm64@0.28.0': + optional: true + + '@esbuild/freebsd-x64@0.27.7': + optional: true + + '@esbuild/freebsd-x64@0.28.0': + optional: true + + '@esbuild/linux-arm64@0.27.7': + optional: true + + '@esbuild/linux-arm64@0.28.0': + optional: true + + '@esbuild/linux-arm@0.27.7': + optional: true + + '@esbuild/linux-arm@0.28.0': + optional: true + + '@esbuild/linux-ia32@0.27.7': + optional: true + + '@esbuild/linux-ia32@0.28.0': + optional: true + + '@esbuild/linux-loong64@0.27.7': + optional: true + + '@esbuild/linux-loong64@0.28.0': + optional: true + + '@esbuild/linux-mips64el@0.27.7': + optional: true + + '@esbuild/linux-mips64el@0.28.0': + optional: true + + '@esbuild/linux-ppc64@0.27.7': + optional: true + + '@esbuild/linux-ppc64@0.28.0': + optional: true + + '@esbuild/linux-riscv64@0.27.7': + optional: true + + '@esbuild/linux-riscv64@0.28.0': + optional: true + + '@esbuild/linux-s390x@0.27.7': + optional: true + + '@esbuild/linux-s390x@0.28.0': + optional: true + + '@esbuild/linux-x64@0.27.7': + optional: true + + '@esbuild/linux-x64@0.28.0': + optional: true + + '@esbuild/netbsd-arm64@0.27.7': + optional: true + + '@esbuild/netbsd-arm64@0.28.0': + optional: true + + '@esbuild/netbsd-x64@0.27.7': + optional: true + + '@esbuild/netbsd-x64@0.28.0': + optional: true + + '@esbuild/openbsd-arm64@0.27.7': + optional: true + + '@esbuild/openbsd-arm64@0.28.0': + optional: true + + '@esbuild/openbsd-x64@0.27.7': + optional: true + + '@esbuild/openbsd-x64@0.28.0': + optional: true + + '@esbuild/openharmony-arm64@0.27.7': + optional: true + + '@esbuild/openharmony-arm64@0.28.0': + optional: true + + '@esbuild/sunos-x64@0.27.7': + optional: true + + '@esbuild/sunos-x64@0.28.0': + optional: true + + '@esbuild/win32-arm64@0.27.7': + optional: true + + '@esbuild/win32-arm64@0.28.0': + optional: true + + '@esbuild/win32-ia32@0.27.7': + optional: true + + '@esbuild/win32-ia32@0.28.0': + optional: true + + '@esbuild/win32-x64@0.27.7': + optional: true + + '@esbuild/win32-x64@0.28.0': + optional: true + + '@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.7.0))': + dependencies: + eslint: 9.39.4(jiti@2.7.0) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.2': {} + + '@eslint/compat@2.1.0(eslint@9.39.4(jiti@2.7.0))': + dependencies: + '@eslint/core': 1.2.1 + optionalDependencies: + eslint: 9.39.4(jiti@2.7.0) + + '@eslint/config-array@0.21.2': + dependencies: + '@eslint/object-schema': 2.1.7 + debug: 4.4.3 + minimatch: 3.1.5 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.4.2': + dependencies: + '@eslint/core': 0.17.0 + + '@eslint/core@0.17.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/core@1.2.1': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/css-tree@4.0.4': + dependencies: + mdn-data: 2.28.1 + source-map-js: 1.2.1 + + '@eslint/eslintrc@3.3.5': + dependencies: + ajv: 6.15.0 + debug: 4.4.3 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.2.0 + minimatch: 3.1.5 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.39.4': {} + + '@eslint/object-schema@2.1.7': {} + + '@eslint/plugin-kit@0.4.1': + dependencies: + '@eslint/core': 0.17.0 + levn: 0.4.1 + + '@exodus/bytes@1.15.1(@noble/hashes@2.2.0)': + optionalDependencies: + '@noble/hashes': 2.2.0 + + '@faker-js/faker@10.4.0': {} + + '@floating-ui/core@0.7.3': {} + + '@floating-ui/core@1.7.5': + dependencies: + '@floating-ui/utils': 0.2.11 + + '@floating-ui/dom@0.5.4': + dependencies: + '@floating-ui/core': 0.7.3 + + '@floating-ui/dom@1.7.6': + dependencies: + '@floating-ui/core': 1.7.5 + '@floating-ui/utils': 0.2.11 + + '@floating-ui/react-dom@2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@floating-ui/dom': 1.7.6 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + + '@floating-ui/utils@0.2.11': {} + + '@fontsource-variable/inclusive-sans@5.2.8': {} + + '@fontsource-variable/nunito@5.2.7': {} + + '@hexagon/base64@1.1.28': {} + + '@hono/node-server@1.19.11(hono@4.12.23)': + dependencies: + hono: 4.12.23 + + '@humanfs/core@0.19.2': + dependencies: + '@humanfs/types': 0.15.0 + + '@humanfs/node@0.16.8': + dependencies: + '@humanfs/core': 0.19.2 + '@humanfs/types': 0.15.0 + '@humanwhocodes/retry': 0.4.3 + + '@humanfs/types@0.15.0': {} + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@img/colour@1.1.0': {} + + '@img/sharp-darwin-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.2.4 + optional: true + + '@img/sharp-darwin-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.2.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm@1.2.4': + optional: true + + '@img/sharp-libvips-linux-ppc64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-riscv64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-s390x@1.2.4': + optional: true + + '@img/sharp-libvips-linux-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + optional: true + + '@img/sharp-linux-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.2.4 + optional: true + + '@img/sharp-linux-arm@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.2.4 + optional: true + + '@img/sharp-linux-ppc64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-ppc64': 1.2.4 + optional: true + + '@img/sharp-linux-riscv64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-riscv64': 1.2.4 + optional: true + + '@img/sharp-linux-s390x@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.2.4 + optional: true + + '@img/sharp-linux-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + optional: true + + '@img/sharp-wasm32@0.34.5': + dependencies: + '@emnapi/runtime': 1.10.0 + optional: true + + '@img/sharp-win32-arm64@0.34.5': + optional: true + + '@img/sharp-win32-ia32@0.34.5': + optional: true + + '@img/sharp-win32-x64@0.34.5': + optional: true + + '@internationalized/date@3.12.2': + dependencies: + '@swc/helpers': 0.5.23 + + '@internationalized/number@3.6.7': + dependencies: + '@swc/helpers': 0.5.23 + + '@internationalized/string@3.2.9': + dependencies: + '@swc/helpers': 0.5.23 + + '@joshwooding/vite-plugin-react-docgen-typescript@0.7.0(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))': + dependencies: + glob: 13.0.6 + react-docgen-typescript: 2.4.0(typescript@6.0.3) + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + optionalDependencies: + typescript: 6.0.3 + + '@jridgewell/gen-mapping@0.3.13': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/source-map@0.3.11': + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@jridgewell/trace-mapping@0.3.31': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.5 + + '@kurkle/color@0.3.4': {} + + '@levischuck/tiny-cbor@0.2.11': {} + + '@mapbox/mapbox-gl-supported@3.0.0': {} + + '@mapbox/point-geometry@1.1.0': {} + + '@mapbox/search-js-core@1.5.1': + dependencies: + '@types/geojson': 7946.0.16 + + '@mapbox/search-js-react@1.5.1(mapbox-gl@3.24.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@mapbox/search-js-core': 1.5.1 + '@mapbox/search-js-web': 1.5.1(mapbox-gl@3.24.0) + '@types/geojson': 7946.0.16 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + transitivePeerDependencies: + - mapbox-gl + + '@mapbox/search-js-web@1.5.1(mapbox-gl@3.24.0)': + dependencies: + '@floating-ui/dom': 0.5.4 + '@mapbox/search-js-core': 1.5.1 + '@mapbox/sphericalmercator': 1.2.0 + focus-trap: 6.9.4 + mapbox-gl: 3.24.0 + no-scroll: 2.1.1 + subtag: 0.5.0 + + '@mapbox/sphericalmercator@1.2.0': {} + + '@mapbox/tiny-sdf@2.2.0': {} + + '@mapbox/unitbezier@0.0.1': {} + + '@mapbox/vector-tile@2.0.5': + dependencies: + '@mapbox/point-geometry': 1.1.0 + '@types/geojson': 7946.0.16 + pbf: 4.0.2 + + '@mdx-js/react@3.1.1(@types/react@19.2.15)(react@19.2.6)': + dependencies: + '@types/mdx': 2.0.13 + '@types/react': 19.2.15 + react: 19.2.6 + + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.4': + optional: true + + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.4': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.4': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.4': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.4': + optional: true + + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.4': + optional: true + + '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': + dependencies: + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@tybys/wasm-util': 0.10.2 + optional: true + + '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2)': + dependencies: + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@tybys/wasm-util': 0.10.2 + optional: true + + '@neoconfetti/react@1.0.0': {} + + '@neondatabase/serverless@1.1.0': {} + + '@next/env@16.0.0': {} + + '@next/env@16.2.6': {} + + '@next/eslint-plugin-next@16.2.6': + dependencies: + fast-glob: 3.3.1 + + '@next/swc-darwin-arm64@16.2.6': + optional: true + + '@next/swc-darwin-x64@16.2.6': + optional: true + + '@next/swc-linux-arm64-gnu@16.2.6': + optional: true + + '@next/swc-linux-arm64-musl@16.2.6': + optional: true + + '@next/swc-linux-x64-gnu@16.2.6': + optional: true + + '@next/swc-linux-x64-musl@16.2.6': + optional: true + + '@next/swc-win32-arm64-msvc@16.2.6': + optional: true + + '@next/swc-win32-x64-msvc@16.2.6': + optional: true + + '@noble/hashes@2.2.0': {} + + '@nodable/entities@2.1.1': {} + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.20.1 + + '@opentelemetry/api-logs@0.208.0': + dependencies: + '@opentelemetry/api': 1.9.1 + + '@opentelemetry/api@1.9.1': {} + + '@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/semantic-conventions': 1.41.1 + + '@opentelemetry/core@2.7.1(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/semantic-conventions': 1.41.1 + + '@opentelemetry/exporter-logs-otlp-http@0.208.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/api-logs': 0.208.0 + '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.1) + '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.1) + + '@opentelemetry/otlp-exporter-base@0.208.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.1) + + '@opentelemetry/otlp-transformer@0.208.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/api-logs': 0.208.0 + '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.1) + protobufjs: 7.6.2 + + '@opentelemetry/resources@2.2.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.41.1 + + '@opentelemetry/resources@2.7.1(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 2.7.1(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.41.1 + + '@opentelemetry/sdk-logs@0.208.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/api-logs': 0.208.0 + '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1) + + '@opentelemetry/sdk-metrics@2.2.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1) + + '@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.1)': + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.1) + '@opentelemetry/semantic-conventions': 1.41.1 + + '@opentelemetry/semantic-conventions@1.41.1': {} + + '@oxc-parser/binding-android-arm-eabi@0.127.0': + optional: true + + '@oxc-parser/binding-android-arm-eabi@0.133.0': + optional: true + + '@oxc-parser/binding-android-arm64@0.127.0': + optional: true + + '@oxc-parser/binding-android-arm64@0.133.0': + optional: true + + '@oxc-parser/binding-darwin-arm64@0.127.0': + optional: true + + '@oxc-parser/binding-darwin-arm64@0.133.0': + optional: true + + '@oxc-parser/binding-darwin-x64@0.127.0': + optional: true + + '@oxc-parser/binding-darwin-x64@0.133.0': + optional: true + + '@oxc-parser/binding-freebsd-x64@0.127.0': + optional: true + + '@oxc-parser/binding-freebsd-x64@0.133.0': + optional: true + + '@oxc-parser/binding-linux-arm-gnueabihf@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm-gnueabihf@0.133.0': + optional: true + + '@oxc-parser/binding-linux-arm-musleabihf@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm-musleabihf@0.133.0': + optional: true + + '@oxc-parser/binding-linux-arm64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm64-gnu@0.133.0': + optional: true + + '@oxc-parser/binding-linux-arm64-musl@0.127.0': + optional: true + + '@oxc-parser/binding-linux-arm64-musl@0.133.0': + optional: true + + '@oxc-parser/binding-linux-ppc64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-ppc64-gnu@0.133.0': + optional: true + + '@oxc-parser/binding-linux-riscv64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-riscv64-gnu@0.133.0': + optional: true + + '@oxc-parser/binding-linux-riscv64-musl@0.127.0': + optional: true + + '@oxc-parser/binding-linux-riscv64-musl@0.133.0': + optional: true + + '@oxc-parser/binding-linux-s390x-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-s390x-gnu@0.133.0': + optional: true + + '@oxc-parser/binding-linux-x64-gnu@0.127.0': + optional: true + + '@oxc-parser/binding-linux-x64-gnu@0.133.0': + optional: true + + '@oxc-parser/binding-linux-x64-musl@0.127.0': + optional: true + + '@oxc-parser/binding-linux-x64-musl@0.133.0': + optional: true + + '@oxc-parser/binding-openharmony-arm64@0.127.0': + optional: true + + '@oxc-parser/binding-openharmony-arm64@0.133.0': + optional: true + + '@oxc-parser/binding-wasm32-wasi@0.127.0': + dependencies: + '@emnapi/core': 1.9.2 + '@emnapi/runtime': 1.9.2 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.9.2)(@emnapi/runtime@1.9.2) + optional: true + + '@oxc-parser/binding-wasm32-wasi@0.133.0': + dependencies: + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + optional: true + + '@oxc-parser/binding-win32-arm64-msvc@0.127.0': + optional: true + + '@oxc-parser/binding-win32-arm64-msvc@0.133.0': + optional: true + + '@oxc-parser/binding-win32-ia32-msvc@0.127.0': + optional: true + + '@oxc-parser/binding-win32-ia32-msvc@0.133.0': + optional: true + + '@oxc-parser/binding-win32-x64-msvc@0.127.0': + optional: true + + '@oxc-parser/binding-win32-x64-msvc@0.133.0': + optional: true + + '@oxc-project/types@0.127.0': {} + + '@oxc-project/types@0.132.0': {} + + '@oxc-project/types@0.133.0': {} + + '@oxc-resolver/binding-android-arm-eabi@11.20.0': + optional: true + + '@oxc-resolver/binding-android-arm64@11.20.0': + optional: true + + '@oxc-resolver/binding-darwin-arm64@11.20.0': + optional: true + + '@oxc-resolver/binding-darwin-x64@11.20.0': + optional: true + + '@oxc-resolver/binding-freebsd-x64@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-arm64-gnu@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-arm64-musl@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-riscv64-musl@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-s390x-gnu@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-x64-gnu@11.20.0': + optional: true + + '@oxc-resolver/binding-linux-x64-musl@11.20.0': + optional: true + + '@oxc-resolver/binding-openharmony-arm64@11.20.0': + optional: true + + '@oxc-resolver/binding-wasm32-wasi@11.20.0': + dependencies: + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + optional: true + + '@oxc-resolver/binding-win32-arm64-msvc@11.20.0': + optional: true + + '@oxc-resolver/binding-win32-x64-msvc@11.20.0': + optional: true + + '@paralleldrive/cuid2@3.3.0': + dependencies: + '@noble/hashes': 2.2.0 + bignumber.js: 9.3.1 + error-causes: 3.0.2 + + '@parcel/watcher-android-arm64@2.5.6': + optional: true + + '@parcel/watcher-darwin-arm64@2.5.6': + optional: true + + '@parcel/watcher-darwin-x64@2.5.6': + optional: true + + '@parcel/watcher-freebsd-x64@2.5.6': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.5.6': + optional: true + + '@parcel/watcher-linux-arm-musl@2.5.6': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.5.6': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.5.6': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.5.6': + optional: true + + '@parcel/watcher-linux-x64-musl@2.5.6': + optional: true + + '@parcel/watcher-win32-arm64@2.5.6': + optional: true + + '@parcel/watcher-win32-ia32@2.5.6': + optional: true + + '@parcel/watcher-win32-x64@2.5.6': + optional: true + + '@parcel/watcher@2.5.6': + dependencies: + detect-libc: 2.1.2 + is-glob: 4.0.3 + node-addon-api: 7.1.1 + picomatch: 4.0.4 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.5.6 + '@parcel/watcher-darwin-arm64': 2.5.6 + '@parcel/watcher-darwin-x64': 2.5.6 + '@parcel/watcher-freebsd-x64': 2.5.6 + '@parcel/watcher-linux-arm-glibc': 2.5.6 + '@parcel/watcher-linux-arm-musl': 2.5.6 + '@parcel/watcher-linux-arm64-glibc': 2.5.6 + '@parcel/watcher-linux-arm64-musl': 2.5.6 + '@parcel/watcher-linux-x64-glibc': 2.5.6 + '@parcel/watcher-linux-x64-musl': 2.5.6 + '@parcel/watcher-win32-arm64': 2.5.6 + '@parcel/watcher-win32-ia32': 2.5.6 + '@parcel/watcher-win32-x64': 2.5.6 + optional: true + + '@peculiar/asn1-android@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-cms@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + '@peculiar/asn1-x509-attr': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-csr@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-ecc@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-pfx@2.7.0': + dependencies: + '@peculiar/asn1-cms': 2.7.0 + '@peculiar/asn1-pkcs8': 2.7.0 + '@peculiar/asn1-rsa': 2.7.0 + '@peculiar/asn1-schema': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-pkcs8@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-pkcs9@2.7.0': + dependencies: + '@peculiar/asn1-cms': 2.7.0 + '@peculiar/asn1-pfx': 2.7.0 + '@peculiar/asn1-pkcs8': 2.7.0 + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + '@peculiar/asn1-x509-attr': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-rsa@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-schema@2.7.0': + dependencies: + '@peculiar/utils': 2.0.3 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-x509-attr@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/asn1-x509@2.7.0': + dependencies: + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/utils': 2.0.3 + asn1js: 3.0.10 + tslib: 2.8.1 + + '@peculiar/utils@2.0.3': + dependencies: + tslib: 2.8.1 + + '@peculiar/x509@1.14.3': + dependencies: + '@peculiar/asn1-cms': 2.7.0 + '@peculiar/asn1-csr': 2.7.0 + '@peculiar/asn1-ecc': 2.7.0 + '@peculiar/asn1-pkcs9': 2.7.0 + '@peculiar/asn1-rsa': 2.7.0 + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + pvtsutils: 1.3.6 + reflect-metadata: 0.2.2 + tslib: 2.8.1 + tsyringe: 4.10.0 + + '@pkgr/core@0.3.6': {} + + '@polka/url@1.0.0-next.29': {} + + '@posthog/cli@0.7.14': + dependencies: + detect-libc: 2.1.2 + + '@posthog/core@1.29.14': + dependencies: + '@posthog/types': 1.376.5 + + '@posthog/nextjs-config@1.9.39(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15))': + dependencies: + '@posthog/cli': 0.7.14 + '@posthog/plugin-utils': 1.1.1 + '@posthog/webpack-plugin': 1.4.39(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + next: 16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0) + semver: 7.8.1 + transitivePeerDependencies: + - webpack + + '@posthog/plugin-utils@1.1.1': + dependencies: + cross-spawn: 7.0.6 + + '@posthog/types@1.376.5': {} + + '@posthog/webpack-plugin@1.4.39(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15))': + dependencies: + '@posthog/cli': 0.7.14 + '@posthog/core': 1.29.14 + '@posthog/plugin-utils': 1.1.1 + webpack: 5.107.2(esbuild@0.28.0)(postcss@8.5.15) + + '@prisma/adapter-neon@7.8.0': + dependencies: + '@neondatabase/serverless': 1.1.0 + '@prisma/driver-adapter-utils': 7.8.0 + postgres-array: 3.0.4 + + '@prisma/adapter-pg@7.8.0': + dependencies: + '@prisma/driver-adapter-utils': 7.8.0 + '@types/pg': 8.20.0 + pg: 8.21.0 + postgres-array: 3.0.4 + transitivePeerDependencies: + - pg-native + + '@prisma/client-runtime-utils@7.8.0': {} + + '@prisma/client@7.8.0(prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(magicast@0.5.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@6.0.3))(typescript@6.0.3)': + dependencies: + '@prisma/client-runtime-utils': 7.8.0 + optionalDependencies: + prisma: 7.8.0(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(magicast@0.5.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@6.0.3) + typescript: 6.0.3 + + '@prisma/config@7.8.0(magicast@0.5.3)': + dependencies: + c12: 3.3.4(magicast@0.5.3) + deepmerge-ts: 7.1.5 + effect: 3.20.0 + empathic: 2.0.0 + transitivePeerDependencies: + - magicast + + '@prisma/debug@7.2.0': {} + + '@prisma/debug@7.8.0': {} + + '@prisma/dev@0.24.3(typescript@6.0.3)': + dependencies: + '@electric-sql/pglite': 0.4.1 + '@electric-sql/pglite-socket': 0.1.1(@electric-sql/pglite@0.4.1) + '@electric-sql/pglite-tools': 0.3.1(@electric-sql/pglite@0.4.1) + '@hono/node-server': 1.19.11(hono@4.12.23) + '@prisma/get-platform': 7.2.0 + '@prisma/query-plan-executor': 7.2.0 + '@prisma/streams-local': 0.1.2 + foreground-child: 3.3.1 + get-port-please: 3.2.0 + hono: 4.12.23 + http-status-codes: 2.3.0 + pathe: 2.0.3 + proper-lockfile: 4.1.2 + remeda: 2.33.4 + std-env: 3.10.0 + valibot: 1.2.0(typescript@6.0.3) + zeptomatch: 2.1.0 + transitivePeerDependencies: + - typescript + + '@prisma/driver-adapter-utils@7.8.0': + dependencies: + '@prisma/debug': 7.8.0 + + '@prisma/engines-version@7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a': {} + + '@prisma/engines@7.8.0': + dependencies: + '@prisma/debug': 7.8.0 + '@prisma/engines-version': 7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a + '@prisma/fetch-engine': 7.8.0 + '@prisma/get-platform': 7.8.0 + + '@prisma/fetch-engine@7.8.0': + dependencies: + '@prisma/debug': 7.8.0 + '@prisma/engines-version': 7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a + '@prisma/get-platform': 7.8.0 + + '@prisma/get-platform@7.2.0': + dependencies: + '@prisma/debug': 7.2.0 + + '@prisma/get-platform@7.8.0': + dependencies: + '@prisma/debug': 7.8.0 + + '@prisma/query-plan-executor@7.2.0': {} + + '@prisma/streams-local@0.1.2': + dependencies: + ajv: 8.20.0 + better-result: 2.9.2 + env-paths: 3.0.0 + proper-lockfile: 4.1.2 + + '@prisma/studio-core@0.27.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@types/react': 19.2.15 + chart.js: 4.5.1 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + transitivePeerDependencies: + - '@types/react-dom' + + '@protobufjs/aspromise@1.1.2': {} + + '@protobufjs/base64@1.1.2': {} + + '@protobufjs/codegen@2.0.5': {} + + '@protobufjs/eventemitter@1.1.1': {} + + '@protobufjs/fetch@1.1.1': + dependencies: + '@protobufjs/aspromise': 1.1.2 + + '@protobufjs/float@1.0.2': {} + + '@protobufjs/inquire@1.1.2': {} + + '@protobufjs/path@1.1.2': {} + + '@protobufjs/pool@1.1.0': {} + + '@protobufjs/utf8@1.1.1': {} + + '@radix-ui/primitive@1.1.3': {} + + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.15)(react@19.2.6)': + dependencies: + react: 19.2.6 + optionalDependencies: + '@types/react': 19.2.15 + + '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6) + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + '@types/react-dom': 19.2.3(@types/react@19.2.15) + + '@radix-ui/react-slot@1.2.3(@types/react@19.2.15)(react@19.2.6)': + dependencies: + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6) + react: 19.2.6 + optionalDependencies: + '@types/react': 19.2.15 + + '@radix-ui/react-slot@1.2.4(@types/react@19.2.15)(react@19.2.6)': + dependencies: + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6) + react: 19.2.6 + optionalDependencies: + '@types/react': 19.2.15 + + '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@radix-ui/primitive': 1.1.3 + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6) + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + '@types/react-dom': 19.2.3(@types/react@19.2.15) + + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.15)(react@19.2.6)': + dependencies: + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.15)(react@19.2.6) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6) + react: 19.2.6 + optionalDependencies: + '@types/react': 19.2.15 + + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.15)(react@19.2.6)': + dependencies: + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6) + react: 19.2.6 + optionalDependencies: + '@types/react': 19.2.15 + + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.15)(react@19.2.6)': + dependencies: + react: 19.2.6 + optionalDependencies: + '@types/react': 19.2.15 + + '@react-types/shared@3.35.0(react@19.2.6)': + dependencies: + react: 19.2.6 + + '@reduxjs/toolkit@2.12.0(react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1))(react@19.2.6)': + dependencies: + '@standard-schema/spec': 1.1.0 + '@standard-schema/utils': 0.3.0 + immer: 11.1.8 + redux: 5.0.1 + redux-thunk: 3.1.0(redux@5.0.1) + reselect: 5.2.0 + optionalDependencies: + react: 19.2.6 + react-redux: 9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1) + + '@rolldown/binding-android-arm64@1.0.2': + optional: true + + '@rolldown/binding-darwin-arm64@1.0.2': + optional: true + + '@rolldown/binding-darwin-x64@1.0.2': + optional: true + + '@rolldown/binding-freebsd-x64@1.0.2': + optional: true + + '@rolldown/binding-linux-arm-gnueabihf@1.0.2': + optional: true + + '@rolldown/binding-linux-arm64-gnu@1.0.2': + optional: true + + '@rolldown/binding-linux-arm64-musl@1.0.2': + optional: true + + '@rolldown/binding-linux-ppc64-gnu@1.0.2': + optional: true + + '@rolldown/binding-linux-s390x-gnu@1.0.2': + optional: true + + '@rolldown/binding-linux-x64-gnu@1.0.2': + optional: true + + '@rolldown/binding-linux-x64-musl@1.0.2': + optional: true + + '@rolldown/binding-openharmony-arm64@1.0.2': + optional: true + + '@rolldown/binding-wasm32-wasi@1.0.2': + dependencies: + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + optional: true + + '@rolldown/binding-win32-arm64-msvc@1.0.2': + optional: true + + '@rolldown/binding-win32-x64-msvc@1.0.2': + optional: true + + '@rolldown/pluginutils@1.0.1': {} + + '@rollup/pluginutils@5.4.0': + dependencies: + '@types/estree': 1.0.9 + estree-walker: 2.0.2 + picomatch: 4.0.4 + + '@rtsao/scc@1.1.0': {} + + '@simplewebauthn/browser@13.3.0': {} + + '@simplewebauthn/server@13.3.1': + dependencies: + '@hexagon/base64': 1.1.28 + '@levischuck/tiny-cbor': 0.2.11 + '@peculiar/asn1-android': 2.7.0 + '@peculiar/asn1-ecc': 2.7.0 + '@peculiar/asn1-rsa': 2.7.0 + '@peculiar/asn1-schema': 2.7.0 + '@peculiar/asn1-x509': 2.7.0 + '@peculiar/x509': 1.14.3 + + '@smithy/core@3.24.5': + dependencies: + '@aws-crypto/crc32': 5.2.0 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@smithy/credential-provider-imds@4.3.6': + dependencies: + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@smithy/fetch-http-handler@5.4.5': + dependencies: + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@smithy/is-array-buffer@2.2.0': + dependencies: + tslib: 2.8.1 + + '@smithy/node-http-handler@4.7.5': + dependencies: + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@smithy/signature-v4@5.4.5': + dependencies: + '@smithy/core': 3.24.5 + '@smithy/types': 4.14.2 + tslib: 2.8.1 + + '@smithy/types@4.14.2': + dependencies: + tslib: 2.8.1 + + '@smithy/util-buffer-from@2.2.0': + dependencies: + '@smithy/is-array-buffer': 2.2.0 + tslib: 2.8.1 + + '@smithy/util-utf8@2.3.0': + dependencies: + '@smithy/util-buffer-from': 2.2.0 + tslib: 2.8.1 + + '@standard-schema/spec@1.0.0': {} + + '@standard-schema/spec@1.0.0-beta.4': {} + + '@standard-schema/spec@1.1.0': {} + + '@standard-schema/utils@0.3.0': {} + + '@storybook/addon-a11y@10.4.1(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))': + dependencies: + '@storybook/global': 5.0.0 + axe-core: 4.11.4 + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + + '@storybook/addon-docs@10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15))': + dependencies: + '@mdx-js/react': 3.1.1(@types/react@19.2.15)(react@19.2.6) + '@storybook/csf-plugin': 10.4.1(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + '@storybook/icons': 2.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@storybook/react-dom-shim': 10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)) + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + ts-dedent: 2.2.0 + optionalDependencies: + '@types/react': 19.2.15 + transitivePeerDependencies: + - '@types/react-dom' + - esbuild + - rollup + - vite + - webpack + + '@storybook/addon-vitest@10.4.1(@vitest/browser-playwright@4.1.7)(@vitest/browser@4.1.7)(@vitest/runner@4.1.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vitest@4.1.7)': + dependencies: + '@storybook/global': 5.0.0 + '@storybook/icons': 2.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + optionalDependencies: + '@vitest/browser': 4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7) + '@vitest/browser-playwright': 4.1.7(playwright@1.60.0)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7) + '@vitest/runner': 4.1.7 + vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.12.4)(@vitest/browser-playwright@4.1.7)(@vitest/coverage-v8@4.1.7)(jsdom@29.1.1(@noble/hashes@2.2.0))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + transitivePeerDependencies: + - react + - react-dom + + '@storybook/builder-vite@10.4.1(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15))': + dependencies: + '@storybook/csf-plugin': 10.4.1(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + ts-dedent: 2.2.0 + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + transitivePeerDependencies: + - esbuild + - rollup + - webpack + + '@storybook/csf-plugin@10.4.1(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15))': + dependencies: + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + unplugin: 2.3.11 + optionalDependencies: + esbuild: 0.28.0 + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + webpack: 5.107.2(esbuild@0.28.0)(postcss@8.5.15) + + '@storybook/global@5.0.0': {} + + '@storybook/icons@2.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + + '@storybook/nextjs-vite@10.4.1(@babel/core@7.29.7)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(esbuild@0.28.0)(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15))': + dependencies: + '@storybook/builder-vite': 10.4.1(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + '@storybook/react': 10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3) + '@storybook/react-vite': 10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(esbuild@0.28.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + next: 16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0) + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + styled-jsx: 5.1.6(@babel/core@7.29.7)(react@19.2.6) + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + vite-plugin-storybook-nextjs: 3.3.0(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + optionalDependencies: + '@types/react': 19.2.15 + '@types/react-dom': 19.2.3(@types/react@19.2.15) + typescript: 6.0.3 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + - esbuild + - rollup + - supports-color + - webpack + + '@storybook/react-dom-shim@10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))': + dependencies: + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + '@types/react-dom': 19.2.3(@types/react@19.2.15) + + '@storybook/react-vite@10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(esbuild@0.28.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15))': + dependencies: + '@joshwooding/vite-plugin-react-docgen-typescript': 0.7.0(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + '@rollup/pluginutils': 5.4.0 + '@storybook/builder-vite': 10.4.1(esbuild@0.28.0)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + '@storybook/react': 10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3) + empathic: 2.0.1 + magic-string: 0.30.21 + react: 19.2.6 + react-docgen: 8.0.3 + react-dom: 19.2.6(react@19.2.6) + resolve: 1.22.12 + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + tsconfig-paths: 4.2.0 + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + transitivePeerDependencies: + - '@types/react' + - '@types/react-dom' + - esbuild + - rollup + - supports-color + - typescript + - webpack + + '@storybook/react@10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3)': + dependencies: + '@storybook/global': 5.0.0 + '@storybook/react-dom-shim': 10.4.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)) + react: 19.2.6 + react-docgen: 8.0.3 + react-docgen-typescript: 2.4.0(typescript@6.0.3) + react-dom: 19.2.6(react@19.2.6) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + '@types/react-dom': 19.2.3(@types/react@19.2.15) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@swc/helpers@0.5.15': + dependencies: + tslib: 2.8.1 + + '@swc/helpers@0.5.23': + dependencies: + tslib: 2.8.1 + + '@t3-oss/env-core@0.13.11(typescript@6.0.3)(valibot@1.4.1(typescript@6.0.3))(zod@4.4.3)': + optionalDependencies: + typescript: 6.0.3 + valibot: 1.4.1(typescript@6.0.3) + zod: 4.4.3 + + '@t3-oss/env-nextjs@0.13.11(typescript@6.0.3)(valibot@1.4.1(typescript@6.0.3))(zod@4.4.3)': + dependencies: + '@t3-oss/env-core': 0.13.11(typescript@6.0.3)(valibot@1.4.1(typescript@6.0.3))(zod@4.4.3) + optionalDependencies: + typescript: 6.0.3 + valibot: 1.4.1(typescript@6.0.3) + zod: 4.4.3 + + '@tailwindcss/forms@0.5.11(tailwindcss@4.3.0)': + dependencies: + mini-svg-data-uri: 1.4.4 + tailwindcss: 4.3.0 + + '@tailwindcss/node@4.3.0': + dependencies: + '@jridgewell/remapping': 2.3.5 + enhanced-resolve: 5.22.1 + jiti: 2.7.0 + lightningcss: 1.32.0 + magic-string: 0.30.21 + source-map-js: 1.2.1 + tailwindcss: 4.3.0 + + '@tailwindcss/oxide-android-arm64@4.3.0': + optional: true + + '@tailwindcss/oxide-darwin-arm64@4.3.0': + optional: true + + '@tailwindcss/oxide-darwin-x64@4.3.0': + optional: true + + '@tailwindcss/oxide-freebsd-x64@4.3.0': + optional: true + + '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0': + optional: true + + '@tailwindcss/oxide-linux-arm64-gnu@4.3.0': + optional: true + + '@tailwindcss/oxide-linux-arm64-musl@4.3.0': + optional: true + + '@tailwindcss/oxide-linux-x64-gnu@4.3.0': + optional: true + + '@tailwindcss/oxide-linux-x64-musl@4.3.0': + optional: true + + '@tailwindcss/oxide-wasm32-wasi@4.3.0': + optional: true + + '@tailwindcss/oxide-win32-arm64-msvc@4.3.0': + optional: true + + '@tailwindcss/oxide-win32-x64-msvc@4.3.0': + optional: true + + '@tailwindcss/oxide@4.3.0': + optionalDependencies: + '@tailwindcss/oxide-android-arm64': 4.3.0 + '@tailwindcss/oxide-darwin-arm64': 4.3.0 + '@tailwindcss/oxide-darwin-x64': 4.3.0 + '@tailwindcss/oxide-freebsd-x64': 4.3.0 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.0 + '@tailwindcss/oxide-linux-arm64-gnu': 4.3.0 + '@tailwindcss/oxide-linux-arm64-musl': 4.3.0 + '@tailwindcss/oxide-linux-x64-gnu': 4.3.0 + '@tailwindcss/oxide-linux-x64-musl': 4.3.0 + '@tailwindcss/oxide-wasm32-wasi': 4.3.0 + '@tailwindcss/oxide-win32-arm64-msvc': 4.3.0 + '@tailwindcss/oxide-win32-x64-msvc': 4.3.0 + + '@tailwindcss/postcss@4.3.0': + dependencies: + '@alloc/quick-lru': 5.2.0 + '@tailwindcss/node': 4.3.0 + '@tailwindcss/oxide': 4.3.0 + postcss: 8.5.15 + tailwindcss: 4.3.0 + + '@tanstack/react-table@8.21.3(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@tanstack/table-core': 8.21.3 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + + '@tanstack/table-core@8.21.3': {} + + '@testing-library/dom@10.4.1': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/runtime': 7.29.7 + '@types/aria-query': 5.0.4 + aria-query: 5.3.0 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + picocolors: 1.1.1 + pretty-format: 27.5.1 + + '@testing-library/jest-dom@6.9.1': + dependencies: + '@adobe/css-tools': 4.5.0 + aria-query: 5.3.2 + css.escape: 1.5.1 + dom-accessibility-api: 0.6.3 + picocolors: 1.1.1 + redent: 3.0.0 + + '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@babel/runtime': 7.29.7 + '@testing-library/dom': 10.4.1 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + '@types/react-dom': 19.2.3(@types/react@19.2.15) + + '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)': + dependencies: + '@testing-library/dom': 10.4.1 + + '@tiptap/core@3.24.0(@tiptap/pm@3.24.0)': + dependencies: + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-blockquote@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-bold@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-bubble-menu@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)': + dependencies: + '@floating-ui/dom': 1.7.6 + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + optional: true + + '@tiptap/extension-bullet-list@3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/extension-list': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + + '@tiptap/extension-code-block@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-code@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-document@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-dropcursor@3.24.0(@tiptap/extensions@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/extensions': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + + '@tiptap/extension-floating-menu@3.24.0(@floating-ui/dom@1.7.6)(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)': + dependencies: + '@floating-ui/dom': 1.7.6 + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + optional: true + + '@tiptap/extension-gapcursor@3.24.0(@tiptap/extensions@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/extensions': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + + '@tiptap/extension-hard-break@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-heading@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-horizontal-rule@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-italic@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-link@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + linkifyjs: 4.3.3 + + '@tiptap/extension-list-item@3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/extension-list': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + + '@tiptap/extension-list-keymap@3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/extension-list': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + + '@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + + '@tiptap/extension-ordered-list@3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/extension-list': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + + '@tiptap/extension-paragraph@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-strike@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-text@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extension-underline@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + + '@tiptap/extensions@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + + '@tiptap/pm@3.24.0': + dependencies: + prosemirror-changeset: 2.4.1 + prosemirror-commands: 1.7.1 + prosemirror-dropcursor: 1.8.2 + prosemirror-gapcursor: 1.4.1 + prosemirror-history: 1.5.0 + prosemirror-inputrules: 1.5.1 + prosemirror-keymap: 1.2.3 + prosemirror-model: 1.25.7 + prosemirror-schema-list: 1.5.1 + prosemirror-state: 1.4.4 + prosemirror-tables: 1.8.5 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.41.8 + + '@tiptap/react@3.24.0(@floating-ui/dom@1.7.6)(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + '@types/react': 19.2.15 + '@types/react-dom': 19.2.3(@types/react@19.2.15) + '@types/use-sync-external-store': 0.0.6 + fast-equals: 5.4.0 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + use-sync-external-store: 1.6.0(react@19.2.6) + optionalDependencies: + '@tiptap/extension-bubble-menu': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + '@tiptap/extension-floating-menu': 3.24.0(@floating-ui/dom@1.7.6)(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + transitivePeerDependencies: + - '@floating-ui/dom' + + '@tiptap/starter-kit@3.24.0': + dependencies: + '@tiptap/core': 3.24.0(@tiptap/pm@3.24.0) + '@tiptap/extension-blockquote': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-bold': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-bullet-list': 3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-code': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-code-block': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + '@tiptap/extension-document': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-dropcursor': 3.24.0(@tiptap/extensions@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-gapcursor': 3.24.0(@tiptap/extensions@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-hard-break': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-heading': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-horizontal-rule': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + '@tiptap/extension-italic': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-link': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + '@tiptap/extension-list': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + '@tiptap/extension-list-item': 3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-list-keymap': 3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-ordered-list': 3.24.0(@tiptap/extension-list@3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0)) + '@tiptap/extension-paragraph': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-strike': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-text': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extension-underline': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0)) + '@tiptap/extensions': 3.24.0(@tiptap/core@3.24.0(@tiptap/pm@3.24.0))(@tiptap/pm@3.24.0) + '@tiptap/pm': 3.24.0 + + '@total-typescript/ts-reset@0.6.1': {} + + '@tybys/wasm-util@0.10.2': + dependencies: + tslib: 2.8.1 + optional: true + + '@types/aria-query@5.0.4': {} + + '@types/async@3.2.25': {} + + '@types/babel__core@7.20.5': + dependencies: + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + '@types/babel__generator': 7.27.0 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.28.0 + + '@types/babel__generator@7.27.0': + dependencies: + '@babel/types': 7.29.7 + + '@types/babel__template@7.4.4': + dependencies: + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + + '@types/babel__traverse@7.28.0': + dependencies: + '@babel/types': 7.29.7 + + '@types/chai@5.2.3': + dependencies: + '@types/deep-eql': 4.0.2 + assertion-error: 2.0.1 + + '@types/d3-interpolate-path@2.0.3': {} + + '@types/debug@4.1.13': + dependencies: + '@types/ms': 2.1.0 + + '@types/deep-eql@4.0.2': {} + + '@types/doctrine@0.0.9': {} + + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.9 + + '@types/estree@1.0.9': {} + + '@types/geojson-vt@3.2.5': + dependencies: + '@types/geojson': 7946.0.16 + + '@types/geojson@7946.0.16': {} + + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/json-schema@7.0.15': {} + + '@types/json5@0.0.29': {} + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/mdx@2.0.13': {} + + '@types/ms@2.1.0': {} + + '@types/node@24.12.4': + dependencies: + undici-types: 7.16.0 + + '@types/papaparse@5.5.2': + dependencies: + '@types/node': 24.12.4 + + '@types/pbf@3.0.5': {} + + '@types/pg@8.20.0': + dependencies: + '@types/node': 24.12.4 + pg-protocol: 1.14.0 + pg-types: 2.2.0 + + '@types/qrcode@1.5.6': + dependencies: + '@types/node': 24.12.4 + + '@types/react-dom@19.2.3(@types/react@19.2.15)': + dependencies: + '@types/react': 19.2.15 + + '@types/react@19.2.15': + dependencies: + csstype: 3.2.3 + + '@types/resolve@1.20.6': {} + + '@types/supercluster@7.1.3': + dependencies: + '@types/geojson': 7946.0.16 + + '@types/trusted-types@2.0.7': + optional: true + + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + + '@types/use-sync-external-store@0.0.6': {} + + '@typescript-eslint/eslint-plugin@8.60.0(@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3)': + dependencies: + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/scope-manager': 8.60.0 + '@typescript-eslint/type-utils': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/utils': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.60.0 + eslint: 9.39.4(jiti@2.7.0) + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.5.0(typescript@6.0.3) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.60.0 + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3) + '@typescript-eslint/visitor-keys': 8.60.0 + debug: 4.4.3 + eslint: 9.39.4(jiti@2.7.0) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.60.0(typescript@6.0.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.60.0(typescript@6.0.3) + '@typescript-eslint/types': 8.60.0 + debug: 4.4.3 + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.60.0': + dependencies: + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/visitor-keys': 8.60.0 + + '@typescript-eslint/tsconfig-utils@8.60.0(typescript@6.0.3)': + dependencies: + typescript: 6.0.3 + + '@typescript-eslint/type-utils@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3)': + dependencies: + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + debug: 4.4.3 + eslint: 9.39.4(jiti@2.7.0) + ts-api-utils: 2.5.0(typescript@6.0.3) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.60.0': {} + + '@typescript-eslint/typescript-estree@8.60.0(typescript@6.0.3)': + dependencies: + '@typescript-eslint/project-service': 8.60.0(typescript@6.0.3) + '@typescript-eslint/tsconfig-utils': 8.60.0(typescript@6.0.3) + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/visitor-keys': 8.60.0 + debug: 4.4.3 + minimatch: 10.2.5 + semver: 7.8.1 + tinyglobby: 0.2.17 + ts-api-utils: 2.5.0(typescript@6.0.3) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3)': + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.60.0 + '@typescript-eslint/types': 8.60.0 + '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3) + eslint: 9.39.4(jiti@2.7.0) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.60.0': + dependencies: + '@typescript-eslint/types': 8.60.0 + eslint-visitor-keys: 5.0.1 + + '@ungap/structured-clone@1.3.1': {} + + '@unrs/resolver-binding-android-arm-eabi@1.12.2': + optional: true + + '@unrs/resolver-binding-android-arm64@1.12.2': + optional: true + + '@unrs/resolver-binding-darwin-arm64@1.12.2': + optional: true + + '@unrs/resolver-binding-darwin-x64@1.12.2': + optional: true + + '@unrs/resolver-binding-freebsd-x64@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-arm-musleabihf@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-arm64-gnu@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-arm64-musl@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-loong64-gnu@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-loong64-musl@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-ppc64-gnu@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-riscv64-gnu@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-riscv64-musl@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-s390x-gnu@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-x64-gnu@1.12.2': + optional: true + + '@unrs/resolver-binding-linux-x64-musl@1.12.2': + optional: true + + '@unrs/resolver-binding-openharmony-arm64@1.12.2': + optional: true + + '@unrs/resolver-binding-wasm32-wasi@1.12.2': + dependencies: + '@emnapi/core': 1.10.0 + '@emnapi/runtime': 1.10.0 + '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + optional: true + + '@unrs/resolver-binding-win32-arm64-msvc@1.12.2': + optional: true + + '@unrs/resolver-binding-win32-ia32-msvc@1.12.2': + optional: true + + '@unrs/resolver-binding-win32-x64-msvc@1.12.2': + optional: true + + '@uploadthing/mime-types@0.3.6': {} + + '@uploadthing/shared@7.1.10': + dependencies: + '@uploadthing/mime-types': 0.3.6 + effect: 3.17.7 + sqids: 0.3.0 + + '@valibot/to-json-schema@1.7.0(valibot@1.4.1(typescript@6.0.3))': + dependencies: + valibot: 1.4.1(typescript@6.0.3) + + '@vitejs/plugin-react@6.0.2(babel-plugin-react-compiler@1.0.0)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))': + dependencies: + '@rolldown/pluginutils': 1.0.1 + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + optionalDependencies: + babel-plugin-react-compiler: 1.0.0 + + '@vitest/browser-playwright@4.1.7(playwright@1.60.0)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7)': + dependencies: + '@vitest/browser': 4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7) + '@vitest/mocker': 4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + playwright: 1.60.0 + tinyrainbow: 3.1.0 + vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.12.4)(@vitest/browser-playwright@4.1.7)(@vitest/coverage-v8@4.1.7)(jsdom@29.1.1(@noble/hashes@2.2.0))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + transitivePeerDependencies: + - bufferutil + - msw + - utf-8-validate + - vite + + '@vitest/browser@4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7)': + dependencies: + '@blazediff/core': 1.9.1 + '@vitest/mocker': 4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + '@vitest/utils': 4.1.7 + magic-string: 0.30.21 + pngjs: 7.0.0 + sirv: 3.0.2 + tinyrainbow: 3.1.0 + vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.12.4)(@vitest/browser-playwright@4.1.7)(@vitest/coverage-v8@4.1.7)(jsdom@29.1.1(@noble/hashes@2.2.0))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + ws: 8.21.0 + transitivePeerDependencies: + - bufferutil + - msw + - utf-8-validate + - vite + + '@vitest/coverage-v8@4.1.7(@vitest/browser@4.1.7)(vitest@4.1.7)': + dependencies: + '@bcoe/v8-coverage': 1.0.2 + '@vitest/utils': 4.1.7 + ast-v8-to-istanbul: 1.0.3 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-reports: 3.2.0 + magicast: 0.5.3 + obug: 2.1.1 + std-env: 4.1.0 + tinyrainbow: 3.1.0 + vitest: 4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.12.4)(@vitest/browser-playwright@4.1.7)(@vitest/coverage-v8@4.1.7)(jsdom@29.1.1(@noble/hashes@2.2.0))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + optionalDependencies: + '@vitest/browser': 4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7) + + '@vitest/expect@3.2.4': + dependencies: + '@types/chai': 5.2.3 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.3.3 + tinyrainbow: 2.0.0 + + '@vitest/expect@4.1.7': + dependencies: + '@standard-schema/spec': 1.1.0 + '@types/chai': 5.2.3 + '@vitest/spy': 4.1.7 + '@vitest/utils': 4.1.7 + chai: 6.2.2 + tinyrainbow: 3.1.0 + + '@vitest/mocker@4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))': + dependencies: + '@vitest/spy': 4.1.7 + estree-walker: 3.0.3 + magic-string: 0.30.21 + optionalDependencies: + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + + '@vitest/pretty-format@3.2.4': + dependencies: + tinyrainbow: 2.0.0 + + '@vitest/pretty-format@4.1.7': + dependencies: + tinyrainbow: 3.1.0 + + '@vitest/runner@4.1.7': + dependencies: + '@vitest/utils': 4.1.7 + pathe: 2.0.3 + + '@vitest/snapshot@4.1.7': + dependencies: + '@vitest/pretty-format': 4.1.7 + '@vitest/utils': 4.1.7 + magic-string: 0.30.21 + pathe: 2.0.3 + + '@vitest/spy@3.2.4': + dependencies: + tinyspy: 4.0.4 + + '@vitest/spy@4.1.7': {} + + '@vitest/utils@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + loupe: 3.2.1 + tinyrainbow: 2.0.0 + + '@vitest/utils@4.1.7': + dependencies: + '@vitest/pretty-format': 4.1.7 + convert-source-map: 2.0.0 + tinyrainbow: 3.1.0 + + '@webassemblyjs/ast@1.14.1': + dependencies: + '@webassemblyjs/helper-numbers': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + + '@webassemblyjs/floating-point-hex-parser@1.13.2': {} + + '@webassemblyjs/helper-api-error@1.13.2': {} + + '@webassemblyjs/helper-buffer@1.14.1': {} + + '@webassemblyjs/helper-numbers@1.13.2': + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.13.2 + '@webassemblyjs/helper-api-error': 1.13.2 + '@xtuc/long': 4.2.2 + + '@webassemblyjs/helper-wasm-bytecode@1.13.2': {} + + '@webassemblyjs/helper-wasm-section@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/wasm-gen': 1.14.1 + + '@webassemblyjs/ieee754@1.13.2': + dependencies: + '@xtuc/ieee754': 1.2.0 + + '@webassemblyjs/leb128@1.13.2': + dependencies: + '@xtuc/long': 4.2.2 + + '@webassemblyjs/utf8@1.13.2': {} + + '@webassemblyjs/wasm-edit@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/helper-wasm-section': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-opt': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + '@webassemblyjs/wast-printer': 1.14.1 + + '@webassemblyjs/wasm-gen@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 + + '@webassemblyjs/wasm-opt@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-buffer': 1.14.1 + '@webassemblyjs/wasm-gen': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + + '@webassemblyjs/wasm-parser@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/helper-api-error': 1.13.2 + '@webassemblyjs/helper-wasm-bytecode': 1.13.2 + '@webassemblyjs/ieee754': 1.13.2 + '@webassemblyjs/leb128': 1.13.2 + '@webassemblyjs/utf8': 1.13.2 + + '@webassemblyjs/wast-printer@1.14.1': + dependencies: + '@webassemblyjs/ast': 1.14.1 + '@xtuc/long': 4.2.2 + + '@webcontainer/env@1.1.1': {} + + '@xmldom/xmldom@0.9.10': {} + + '@xtuc/ieee754@1.2.0': {} + + '@xtuc/long@4.2.2': {} + + acorn-import-phases@1.0.4(acorn@8.16.0): + dependencies: + acorn: 8.16.0 + + acorn-jsx@5.3.2(acorn@8.16.0): + dependencies: + acorn: 8.16.0 + + acorn@8.16.0: {} + + ajv-formats@2.1.1(ajv@8.20.0): + optionalDependencies: + ajv: 8.20.0 + + ajv-keywords@5.1.0(ajv@8.20.0): + dependencies: + ajv: 8.20.0 + fast-deep-equal: 3.1.3 + + ajv@6.15.0: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.20.0: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.1.2 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + ansi-regex@5.0.1: {} + + ansi-regex@6.2.2: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@5.2.0: {} + + ansi-styles@6.2.3: {} + + argparse@2.0.1: {} + + aria-hidden@1.2.6: + dependencies: + tslib: 2.8.1 + + aria-query@5.3.0: + dependencies: + dequal: 2.0.3 + + aria-query@5.3.2: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + + array-includes@3.1.9: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-object-atoms: 1.1.2 + get-intrinsic: 1.3.0 + is-string: 1.1.1 + math-intrinsics: 1.1.0 + + array.prototype.findlast@1.2.5: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + es-shim-unscopables: 1.1.0 + + array.prototype.findlastindex@1.2.6: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + es-shim-unscopables: 1.1.0 + + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-shim-unscopables: 1.1.0 + + array.prototype.flatmap@1.3.3: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-shim-unscopables: 1.1.0 + + array.prototype.tosorted@1.1.4: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-errors: 1.3.0 + es-shim-unscopables: 1.1.0 + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + + asn1js@3.0.10: + dependencies: + pvtsutils: 1.3.6 + pvutils: 1.1.5 + tslib: 2.8.1 + + assertion-error@2.0.1: {} + + ast-types-flow@0.0.8: {} + + ast-types@0.16.1: + dependencies: + tslib: 2.8.1 + + ast-v8-to-istanbul@1.0.3: + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + estree-walker: 3.0.3 + js-tokens: 10.0.0 + + async-function@1.0.0: {} + + async@3.2.6: {} + + attr-accept@2.2.5: {} + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.1.0 + + aws-ssl-profiles@1.1.2: {} + + axe-core@4.11.4: {} + + axobject-query@4.1.0: {} + + babel-plugin-react-compiler@1.0.0: + dependencies: + '@babel/types': 7.29.7 + + bail@2.0.2: {} + + balanced-match@1.0.2: {} + + balanced-match@4.0.4: {} + + base64-js@1.5.1: {} + + baseline-browser-mapping@2.10.33: {} + + better-result@2.9.2: {} + + bidi-js@1.0.3: + dependencies: + require-from-string: 2.0.2 + + bignumber.js@9.3.1: {} + + blobs@2.3.0-beta.2: + dependencies: + simplex-noise: 4.0.3 + + bowser@2.14.1: {} + + brace-expansion@1.1.15: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@5.0.6: + dependencies: + balanced-match: 4.0.4 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.28.2: + dependencies: + baseline-browser-mapping: 2.10.33 + caniuse-lite: 1.0.30001793 + electron-to-chromium: 1.5.364 + node-releases: 2.0.46 + update-browserslist-db: 1.2.3(browserslist@4.28.2) + + buffer-from@1.1.2: {} + + buffer@5.6.0: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + bundle-name@4.1.0: + dependencies: + run-applescript: 7.1.0 + + c12@3.3.4(magicast@0.5.3): + dependencies: + chokidar: 5.0.0 + confbox: 0.2.4 + defu: 6.1.7 + dotenv: 17.4.2 + exsolve: 1.0.8 + giget: 3.2.0 + jiti: 2.7.0 + ohash: 2.0.11 + pathe: 2.0.3 + perfect-debounce: 2.1.0 + pkg-types: 2.3.1 + rc9: 3.0.1 + optionalDependencies: + magicast: 0.5.3 + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.9: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + callsites@3.1.0: {} + + camelcase@5.3.1: {} + + caniuse-lite@1.0.30001793: {} + + ccount@2.0.1: {} + + chai@5.3.3: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.3 + deep-eql: 5.0.2 + loupe: 3.2.1 + pathval: 2.0.1 + + chai@6.2.2: {} + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.6.2: {} + + character-entities-html4@2.1.0: {} + + character-entities-legacy@3.0.0: {} + + character-entities@2.0.2: {} + + character-reference-invalid@2.0.1: {} + + chart.js@4.5.1: + dependencies: + '@kurkle/color': 0.3.4 + + cheap-ruler@4.0.0: {} + + check-error@2.1.3: {} + + chokidar@5.0.0: + dependencies: + readdirp: 5.0.0 + + chromatic@16.10.0: + dependencies: + semver: 7.8.1 + + chromatic@17.0.1: + dependencies: + semver: 7.8.1 + + chrome-trace-event@1.0.4: {} + + client-only@0.0.1: {} + + cliui@6.0.0: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 6.2.0 + + cliui@9.0.1: + dependencies: + string-width: 7.2.0 + strip-ansi: 7.2.0 + wrap-ansi: 9.0.2 + + clsx@2.1.1: {} + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + colorjs.io@0.5.2: {} + + comlink@4.4.2: {} + + comma-separated-tokens@2.0.3: {} + + commander@2.20.3: {} + + concat-map@0.0.1: {} + + concaveman@2.0.0: + dependencies: + point-in-polygon: 1.1.0 + rbush: 4.0.1 + robust-predicates: 3.0.3 + tinyqueue: 3.0.0 + + concurrently@10.0.0: + dependencies: + chalk: 5.6.2 + rxjs: 7.8.2 + shell-quote: 1.8.4 + supports-color: 10.2.2 + tree-kill: 1.2.2 + yargs: 18.0.0 + + confbox@0.2.4: {} + + convert-source-map@2.0.0: {} + + copy-anything@4.0.5: + dependencies: + is-what: 5.5.0 + + core-js@3.49.0: {} + + core-util-is@1.0.3: {} + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + css-tree@3.2.1: + dependencies: + mdn-data: 2.27.1 + source-map-js: 1.2.1 + + css.escape@1.5.1: {} + + csscolorparser@1.0.3: {} + + csstype@3.2.3: {} + + csvtojson@2.0.14: + dependencies: + lodash: 4.18.1 + + cva@1.0.0-beta.4(typescript@6.0.3): + dependencies: + clsx: 2.1.1 + optionalDependencies: + typescript: 6.0.3 + + d3-dispatch@3.0.1: {} + + d3-force@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-quadtree: 3.0.1 + d3-timer: 3.0.1 + + d3-interpolate-path@2.3.0: {} + + d3-quadtree@3.0.1: {} + + d3-timer@3.0.1: {} + + damerau-levenshtein@1.0.8: {} + + data-urls@7.0.0(@noble/hashes@2.2.0): + dependencies: + whatwg-mimetype: 5.0.0 + whatwg-url: 16.0.1(@noble/hashes@2.2.0) + transitivePeerDependencies: + - '@noble/hashes' + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + debug@3.2.7: + dependencies: + ms: 2.1.3 + + debug@4.4.3: + dependencies: + ms: 2.1.3 + + decamelize@1.2.0: {} + + decimal.js@10.6.0: {} + + decode-named-character-reference@1.3.0: + dependencies: + character-entities: 2.0.2 + + deep-diff@0.3.8: {} + + deep-eql@5.0.2: {} + + deep-is@0.1.4: {} + + deepmerge-ts@7.1.5: {} + + default-browser-id@5.0.1: {} + + default-browser@5.5.0: + dependencies: + bundle-name: 4.1.0 + default-browser-id: 5.0.1 + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-lazy-prop@3.0.0: {} + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + defu@6.1.7: {} + + denque@2.1.0: {} + + dequal@2.0.3: {} + + destr@2.0.5: {} + + detect-libc@2.1.2: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + dijkstrajs@1.0.3: {} + + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 + + doctrine@3.0.0: + dependencies: + esutils: 2.0.3 + + dom-accessibility-api@0.5.16: {} + + dom-accessibility-api@0.6.3: {} + + dompurify@3.4.7: + optionalDependencies: + '@types/trusted-types': 2.0.7 + + dotenv@17.4.2: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + earcut@3.0.2: {} + + effect@3.17.7: + dependencies: + '@standard-schema/spec': 1.1.0 + fast-check: 3.23.2 + + effect@3.20.0: + dependencies: + '@standard-schema/spec': 1.1.0 + fast-check: 3.23.2 + + effect@3.21.2: + dependencies: + '@standard-schema/spec': 1.1.0 + fast-check: 3.23.2 + + electron-to-chromium@1.5.364: {} + + emoji-regex@10.6.0: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + empathic@2.0.0: {} + + empathic@2.0.1: {} + + enhanced-resolve@5.22.1: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.3.3 + + entities@6.0.1: {} + + entities@8.0.0: {} + + env-paths@3.0.0: {} + + error-causes@3.0.2: {} + + es-abstract@1.24.2: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.9 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.4 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.4 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.8 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.21 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-iterator-helpers@1.3.2: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-errors: 1.3.0 + es-set-tostringtag: 2.1.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + iterator.prototype: 1.1.5 + math-intrinsics: 1.1.0 + + es-module-lexer@2.1.0: {} + + es-object-atoms@1.1.2: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.4 + + es-shim-unscopables@1.1.0: + dependencies: + hasown: 2.0.4 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + es-toolkit@1.47.0: {} + + esbuild@0.27.7: + optionalDependencies: + '@esbuild/aix-ppc64': 0.27.7 + '@esbuild/android-arm': 0.27.7 + '@esbuild/android-arm64': 0.27.7 + '@esbuild/android-x64': 0.27.7 + '@esbuild/darwin-arm64': 0.27.7 + '@esbuild/darwin-x64': 0.27.7 + '@esbuild/freebsd-arm64': 0.27.7 + '@esbuild/freebsd-x64': 0.27.7 + '@esbuild/linux-arm': 0.27.7 + '@esbuild/linux-arm64': 0.27.7 + '@esbuild/linux-ia32': 0.27.7 + '@esbuild/linux-loong64': 0.27.7 + '@esbuild/linux-mips64el': 0.27.7 + '@esbuild/linux-ppc64': 0.27.7 + '@esbuild/linux-riscv64': 0.27.7 + '@esbuild/linux-s390x': 0.27.7 + '@esbuild/linux-x64': 0.27.7 + '@esbuild/netbsd-arm64': 0.27.7 + '@esbuild/netbsd-x64': 0.27.7 + '@esbuild/openbsd-arm64': 0.27.7 + '@esbuild/openbsd-x64': 0.27.7 + '@esbuild/openharmony-arm64': 0.27.7 + '@esbuild/sunos-x64': 0.27.7 + '@esbuild/win32-arm64': 0.27.7 + '@esbuild/win32-ia32': 0.27.7 + '@esbuild/win32-x64': 0.27.7 + + esbuild@0.28.0: + optionalDependencies: + '@esbuild/aix-ppc64': 0.28.0 + '@esbuild/android-arm': 0.28.0 + '@esbuild/android-arm64': 0.28.0 + '@esbuild/android-x64': 0.28.0 + '@esbuild/darwin-arm64': 0.28.0 + '@esbuild/darwin-x64': 0.28.0 + '@esbuild/freebsd-arm64': 0.28.0 + '@esbuild/freebsd-x64': 0.28.0 + '@esbuild/linux-arm': 0.28.0 + '@esbuild/linux-arm64': 0.28.0 + '@esbuild/linux-ia32': 0.28.0 + '@esbuild/linux-loong64': 0.28.0 + '@esbuild/linux-mips64el': 0.28.0 + '@esbuild/linux-ppc64': 0.28.0 + '@esbuild/linux-riscv64': 0.28.0 + '@esbuild/linux-s390x': 0.28.0 + '@esbuild/linux-x64': 0.28.0 + '@esbuild/netbsd-arm64': 0.28.0 + '@esbuild/netbsd-x64': 0.28.0 + '@esbuild/openbsd-arm64': 0.28.0 + '@esbuild/openbsd-x64': 0.28.0 + '@esbuild/openharmony-arm64': 0.28.0 + '@esbuild/sunos-x64': 0.28.0 + '@esbuild/win32-arm64': 0.28.0 + '@esbuild/win32-ia32': 0.28.0 + '@esbuild/win32-x64': 0.28.0 + + escalade@3.2.0: {} + + escape-string-regexp@4.0.0: {} + + escape-string-regexp@5.0.0: {} + + eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.7.0)): + dependencies: + eslint: 9.39.4(jiti@2.7.0) + + eslint-import-context@0.1.9(unrs-resolver@1.12.2): + dependencies: + get-tsconfig: 4.14.0 + stable-hash-x: 0.2.0 + optionalDependencies: + unrs-resolver: 1.12.2 + + eslint-import-resolver-node@0.3.10: + dependencies: + debug: 3.2.7 + is-core-module: 2.16.2 + resolve: 2.0.0-next.7 + transitivePeerDependencies: + - supports-color + + eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.7.0)): + dependencies: + debug: 4.4.3 + eslint: 9.39.4(jiti@2.7.0) + eslint-import-context: 0.1.9(unrs-resolver@1.12.2) + get-tsconfig: 4.14.0 + is-bun-module: 2.0.0 + stable-hash-x: 0.2.0 + tinyglobby: 0.2.17 + unrs-resolver: 1.12.2 + optionalDependencies: + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.7.0)) + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.13.0(@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.7.0)): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + eslint: 9.39.4(jiti@2.7.0) + eslint-import-resolver-node: 0.3.10 + eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@2.7.0)) + transitivePeerDependencies: + - supports-color + + eslint-plugin-better-tailwindcss@4.5.0(eslint@9.39.4(jiti@2.7.0))(tailwindcss@4.3.0)(typescript@6.0.3): + dependencies: + '@eslint/css-tree': 4.0.4 + '@valibot/to-json-schema': 1.7.0(valibot@1.4.1(typescript@6.0.3)) + enhanced-resolve: 5.22.1 + jiti: 2.7.0 + synckit: 0.11.13 + tailwind-csstree: 0.3.2 + tailwindcss: 4.3.0 + tsconfig-paths-webpack-plugin: 4.2.0 + valibot: 1.4.1(typescript@6.0.3) + optionalDependencies: + eslint: 9.39.4(jiti@2.7.0) + transitivePeerDependencies: + - '@eslint/css' + - typescript + + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.7.0)): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 9.39.4(jiti@2.7.0) + eslint-import-resolver-node: 0.3.10 + eslint-module-utils: 2.13.0(@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@4.4.4)(eslint@9.39.4(jiti@2.7.0)) + hasown: 2.0.4 + is-core-module: 2.16.2 + is-glob: 4.0.3 + minimatch: 3.1.5 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.9 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-jsx-a11y@6.10.2(eslint@9.39.4(jiti@2.7.0)): + dependencies: + aria-query: 5.3.2 + array-includes: 3.1.9 + array.prototype.flatmap: 1.3.3 + ast-types-flow: 0.0.8 + axe-core: 4.11.4 + axobject-query: 4.1.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 9.39.4(jiti@2.7.0) + hasown: 2.0.4 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.5 + object.fromentries: 2.0.8 + safe-regex-test: 1.1.0 + string.prototype.includes: 2.0.1 + + eslint-plugin-react-hooks@7.1.1(eslint@9.39.4(jiti@2.7.0)): + dependencies: + '@babel/core': 7.29.7 + '@babel/parser': 7.29.7 + eslint: 9.39.4(jiti@2.7.0) + hermes-parser: 0.25.1 + zod: 4.4.3 + zod-validation-error: 4.0.2(zod@4.4.3) + transitivePeerDependencies: + - supports-color + + eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.7.0)): + dependencies: + array-includes: 3.1.9 + array.prototype.findlast: 1.2.5 + array.prototype.flatmap: 1.3.3 + array.prototype.tosorted: 1.1.4 + doctrine: 2.1.0 + es-iterator-helpers: 1.3.2 + eslint: 9.39.4(jiti@2.7.0) + estraverse: 5.3.0 + hasown: 2.0.4 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.5 + object.entries: 1.1.9 + object.fromentries: 2.0.8 + object.values: 1.2.1 + prop-types: 15.8.1 + resolve: 2.0.0-next.7 + semver: 6.3.1 + string.prototype.matchall: 4.0.12 + string.prototype.repeat: 1.0.0 + + eslint-plugin-storybook@10.4.1(eslint@9.39.4(jiti@2.7.0))(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3): + dependencies: + '@typescript-eslint/utils': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + eslint: 9.39.4(jiti@2.7.0) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + transitivePeerDependencies: + - supports-color + - typescript + + eslint-scope@5.1.1: + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint-visitor-keys@5.0.1: {} + + eslint@9.39.4(jiti@2.7.0): + dependencies: + '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@2.7.0)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.21.2 + '@eslint/config-helpers': 0.4.2 + '@eslint/core': 0.17.0 + '@eslint/eslintrc': 3.3.5 + '@eslint/js': 9.39.4 + '@eslint/plugin-kit': 0.4.1 + '@humanfs/node': 0.16.8 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.9 + ajv: 6.15.0 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.3 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.7.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.5 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.7.0 + transitivePeerDependencies: + - supports-color + + espree@10.4.0: + dependencies: + acorn: 8.16.0 + acorn-jsx: 5.3.2(acorn@8.16.0) + eslint-visitor-keys: 4.2.1 + + esprima@4.0.1: {} + + esquery@1.7.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@4.3.0: {} + + estraverse@5.3.0: {} + + estree-util-is-identifier-name@3.0.0: {} + + estree-walker@2.0.2: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.9 + + esutils@2.0.3: {} + + events@3.3.0: {} + + expect-type@1.3.0: {} + + exsolve@1.0.8: {} + + extend@3.0.2: {} + + fast-check@3.23.2: + dependencies: + pure-rand: 6.1.0 + + fast-deep-equal@3.1.3: {} + + fast-equals@5.4.0: {} + + fast-glob@3.3.1: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-uri@3.1.2: {} + + fast-xml-builder@1.2.0: + dependencies: + path-expression-matcher: 1.5.0 + xml-naming: 0.1.0 + + fast-xml-parser@5.7.3: + dependencies: + '@nodable/entities': 2.1.1 + fast-xml-builder: 1.2.0 + path-expression-matcher: 1.5.0 + strnum: 2.3.0 + + fastq@1.20.1: + dependencies: + reusify: 1.1.0 + + fd-package-json@2.0.0: + dependencies: + walk-up-path: 4.0.0 + + fdir@6.5.0(picomatch@4.0.4): + optionalDependencies: + picomatch: 4.0.4 + + fflate@0.4.8: {} + + fflate@0.8.3: {} + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + file-selector@2.1.2: + dependencies: + tslib: 2.8.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-my-way-ts@0.1.6: {} + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.4.2 + keyv: 4.5.4 + + flatted@3.4.2: {} + + focus-trap@6.9.4: + dependencies: + tabbable: 5.3.3 + + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + + foreground-child@3.3.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + formatly@0.3.0: + dependencies: + fd-package-json: 2.0.0 + + framer-motion@12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6): + dependencies: + motion-dom: 12.40.0 + motion-utils: 12.39.0 + tslib: 2.8.1 + optionalDependencies: + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + + fsevents@2.3.2: + optional: true + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.4 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + fuse.js@7.4.0: {} + + gemoji@8.1.0: {} + + generate-function@2.3.1: + dependencies: + is-property: 1.0.2 + + generator-function@2.0.1: {} + + gensync@1.0.0-beta.2: {} + + geojson-vt@4.0.3: {} + + get-caller-file@2.0.5: {} + + get-east-asian-width@1.6.0: {} + + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.4 + math-intrinsics: 1.1.0 + + get-port-please@3.2.0: {} + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.2 + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + + get-tsconfig@4.14.0: + dependencies: + resolve-pkg-maps: 1.0.0 + + giget@3.2.0: {} + + gl-matrix@3.4.4: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob-to-regexp@0.4.1: {} + + glob@13.0.6: + dependencies: + minimatch: 10.2.5 + minipass: 7.1.3 + path-scurry: 2.0.2 + + globals@14.0.0: {} + + globals@17.6.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globrex@0.1.2: {} + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + grammex@3.1.12: {} + + graphmatch@1.1.1: {} + + has-bigints@1.1.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + hasown@2.0.4: + dependencies: + function-bind: 1.1.2 + + hast-util-from-parse5@8.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + devlop: 1.1.0 + hastscript: 9.0.1 + property-information: 7.1.0 + vfile: 6.0.3 + vfile-location: 5.0.3 + web-namespaces: 2.0.1 + + hast-util-parse-selector@4.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-raw@9.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + '@ungap/structured-clone': 1.3.1 + hast-util-from-parse5: 8.0.3 + hast-util-to-parse5: 8.0.1 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.1 + parse5: 7.3.0 + unist-util-position: 5.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-sanitize@5.0.2: + dependencies: + '@types/hast': 3.0.4 + '@ungap/structured-clone': 1.3.1 + unist-util-position: 5.0.0 + + hast-util-to-jsx-runtime@2.3.6: + dependencies: + '@types/estree': 1.0.9 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + style-to-js: 1.1.21 + unist-util-position: 5.0.0 + vfile-message: 4.0.3 + transitivePeerDependencies: + - supports-color + + hast-util-to-parse5@8.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hastscript@9.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + + hermes-estree@0.25.1: {} + + hermes-parser@0.25.1: + dependencies: + hermes-estree: 0.25.1 + + hono@4.12.23: {} + + html-encoding-sniffer@6.0.0(@noble/hashes@2.2.0): + dependencies: + '@exodus/bytes': 1.15.1(@noble/hashes@2.2.0) + transitivePeerDependencies: + - '@noble/hashes' + + html-escaper@2.0.2: {} + + html-url-attributes@3.0.1: {} + + html-void-elements@3.0.0: {} + + http-status-codes@2.3.0: {} + + iconv-lite@0.7.2: + dependencies: + safer-buffer: 2.1.2 + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + image-size@2.0.2: {} + + immediate@3.0.6: {} + + immer@11.1.8: {} + + immutable@5.1.6: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + indent-string@4.0.0: {} + + inherits@2.0.4: {} + + inline-style-parser@0.2.7: {} + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.4 + side-channel: 1.1.0 + + is-alphabetical@2.0.1: {} + + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-bun-module@2.0.0: + dependencies: + semver: 7.8.1 + + is-callable@1.2.7: {} + + is-core-module@2.16.2: + dependencies: + hasown: 2.0.4 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-decimal@2.0.1: {} + + is-docker@3.0.0: {} + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-fullwidth-code-point@3.0.0: {} + + is-generator-function@1.1.2: + dependencies: + call-bound: 1.0.4 + generator-function: 2.0.1 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-hexadecimal@2.0.1: {} + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-map@2.0.3: {} + + is-negative-zero@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-plain-obj@4.1.0: {} + + is-potential-custom-element-name@1.0.1: {} + + is-property@1.0.2: {} + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.4 + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.21 + + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-what@5.5.0: {} + + is-wsl@3.1.1: + dependencies: + is-inside-container: 1.0.0 + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-report@3.0.1: + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + + istanbul-reports@3.2.0: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + + iterator.prototype@1.1.5: + dependencies: + define-data-property: 1.1.4 + es-object-atoms: 1.1.2 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + has-symbols: 1.1.0 + set-function-name: 2.0.2 + + jest-worker@27.5.1: + dependencies: + '@types/node': 24.12.4 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jiti@2.7.0: {} + + js-tokens@10.0.0: {} + + js-tokens@4.0.0: {} + + js-yaml@4.2.0: + dependencies: + argparse: 2.0.1 + + jsdom@29.1.1(@noble/hashes@2.2.0): + dependencies: + '@asamuzakjp/css-color': 5.1.11 + '@asamuzakjp/dom-selector': 7.1.1 + '@bramus/specificity': 2.4.2 + '@csstools/css-syntax-patches-for-csstree': 1.1.4(css-tree@3.2.1) + '@exodus/bytes': 1.15.1(@noble/hashes@2.2.0) + css-tree: 3.2.1 + data-urls: 7.0.0(@noble/hashes@2.2.0) + decimal.js: 10.6.0 + html-encoding-sniffer: 6.0.0(@noble/hashes@2.2.0) + is-potential-custom-element-name: 1.0.1 + lru-cache: 11.5.1 + parse5: 8.0.1 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 6.0.1 + undici: 7.26.0 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 8.0.1 + whatwg-mimetype: 5.0.0 + whatwg-url: 16.0.1(@noble/hashes@2.2.0) + xml-name-validator: 5.0.0 + transitivePeerDependencies: + - '@noble/hashes' + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json5@1.0.2: + dependencies: + minimist: 1.2.8 + + json5@2.2.3: {} + + jsonfile@6.2.1: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + jsx-ast-utils@3.3.5: + dependencies: + array-includes: 3.1.9 + array.prototype.flat: 1.3.3 + object.assign: 4.1.7 + object.values: 1.2.1 + + jszip@3.10.1: + dependencies: + lie: 3.3.0 + pako: 1.0.11 + readable-stream: 2.3.8 + setimmediate: 1.0.5 + + kdbush@4.1.0: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + knip@6.15.0: + dependencies: + fdir: 6.5.0(picomatch@4.0.4) + formatly: 0.3.0 + get-tsconfig: 4.14.0 + jiti: 2.7.0 + minimist: 1.2.8 + oxc-parser: 0.133.0 + oxc-resolver: 11.20.0 + picomatch: 4.0.4 + smol-toml: 1.6.1 + strip-json-comments: 5.0.3 + tinyglobby: 0.2.17 + unbash: 3.0.0 + yaml: 2.9.0 + zod: 4.4.3 + + language-subtag-registry@0.3.23: {} + + language-tags@1.0.9: + dependencies: + language-subtag-registry: 0.3.23 + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lie@3.3.0: + dependencies: + immediate: 3.0.6 + + lightningcss-android-arm64@1.32.0: + optional: true + + lightningcss-darwin-arm64@1.32.0: + optional: true + + lightningcss-darwin-x64@1.32.0: + optional: true + + lightningcss-freebsd-x64@1.32.0: + optional: true + + lightningcss-linux-arm-gnueabihf@1.32.0: + optional: true + + lightningcss-linux-arm64-gnu@1.32.0: + optional: true + + lightningcss-linux-arm64-musl@1.32.0: + optional: true + + lightningcss-linux-x64-gnu@1.32.0: + optional: true + + lightningcss-linux-x64-musl@1.32.0: + optional: true + + lightningcss-win32-arm64-msvc@1.32.0: + optional: true + + lightningcss-win32-x64-msvc@1.32.0: + optional: true + + lightningcss@1.32.0: + dependencies: + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.32.0 + lightningcss-darwin-arm64: 1.32.0 + lightningcss-darwin-x64: 1.32.0 + lightningcss-freebsd-x64: 1.32.0 + lightningcss-linux-arm-gnueabihf: 1.32.0 + lightningcss-linux-arm64-gnu: 1.32.0 + lightningcss-linux-arm64-musl: 1.32.0 + lightningcss-linux-x64-gnu: 1.32.0 + lightningcss-linux-x64-musl: 1.32.0 + lightningcss-win32-arm64-msvc: 1.32.0 + lightningcss-win32-x64-msvc: 1.32.0 + + linkifyjs@4.3.3: {} + + loader-runner@4.3.2: {} + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash.debounce@4.0.8: {} + + lodash.merge@4.6.2: {} + + lodash@4.18.1: {} + + long@5.3.2: {} + + longest-streak@3.1.0: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + loupe@3.2.1: {} + + lru-cache@11.5.1: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lru.min@1.1.4: {} + + lucide-react@1.17.0(react@19.2.6): + dependencies: + react: 19.2.6 + + lz-string@1.5.0: {} + + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + magicast@0.5.3: + dependencies: + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + source-map-js: 1.2.1 + + make-dir@4.0.0: + dependencies: + semver: 7.8.1 + + mapbox-gl@3.24.0: + dependencies: + '@mapbox/mapbox-gl-supported': 3.0.0 + '@mapbox/point-geometry': 1.1.0 + '@mapbox/tiny-sdf': 2.2.0 + '@mapbox/unitbezier': 0.0.1 + '@mapbox/vector-tile': 2.0.5 + '@types/geojson': 7946.0.16 + '@types/geojson-vt': 3.2.5 + '@types/pbf': 3.0.5 + '@types/supercluster': 7.1.3 + cheap-ruler: 4.0.0 + csscolorparser: 1.0.3 + earcut: 3.0.2 + geojson-vt: 4.0.3 + gl-matrix: 3.4.4 + kdbush: 4.1.0 + martinez-polygon-clipping: 0.8.1 + murmurhash-js: 1.0.0 + pbf: 4.0.2 + potpack: 2.1.0 + quickselect: 3.0.0 + supercluster: 8.0.1 + tinyqueue: 3.0.0 + + martinez-polygon-clipping@0.8.1: + dependencies: + robust-predicates: 2.0.4 + splaytree: 0.1.4 + tinyqueue: 3.0.0 + + math-intrinsics@1.1.0: {} + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 + + mdast-util-from-markdown@2.0.3: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.3 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.2.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.3 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.3 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.3 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.1 + + mdast-util-to-hast@13.2.1: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.1 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.1.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + mdn-data@2.27.1: {} + + mdn-data@2.28.1: {} + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.3.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.2: {} + + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.13 + debug: 4.4.3 + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.2 + + mime-db@1.54.0: {} + + min-indent@1.0.1: {} + + mini-svg-data-uri@1.4.4: {} + + minimatch@10.2.5: + dependencies: + brace-expansion: 5.0.6 + + minimatch@3.1.5: + dependencies: + brace-expansion: 1.1.15 + + minimist@1.2.8: {} + + minipass@7.1.3: {} + + module-alias@2.3.4: {} + + motion-dom@12.40.0: + dependencies: + motion-utils: 12.39.0 + + motion-utils@12.39.0: {} + + motion@12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6): + dependencies: + framer-motion: 12.40.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + tslib: 2.8.1 + optionalDependencies: + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + + mrmime@2.0.1: {} + + ms@2.1.3: {} + + msgpackr-extract@3.0.4: + dependencies: + node-gyp-build-optional-packages: 5.2.2 + optionalDependencies: + '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.4 + '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.4 + '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.4 + optional: true + + msgpackr@1.11.12: + optionalDependencies: + msgpackr-extract: 3.0.4 + + multipasta@0.2.7: {} + + murmurhash-js@1.0.0: {} + + mysql2@3.15.3: + dependencies: + aws-ssl-profiles: 1.1.2 + denque: 2.1.0 + generate-function: 2.3.1 + iconv-lite: 0.7.2 + long: 5.3.2 + lru.min: 1.1.4 + named-placeholders: 1.1.6 + seq-queue: 0.0.5 + sqlstring: 2.3.3 + + named-placeholders@1.1.6: + dependencies: + lru.min: 1.1.4 + + nanoid@3.3.12: {} + + nanoid@5.1.11: {} + + napi-postinstall@0.3.4: {} + + natural-compare@1.4.0: {} + + neo-async@2.6.2: {} + + next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0): + dependencies: + '@next/env': 16.2.6 + '@swc/helpers': 0.5.15 + baseline-browser-mapping: 2.10.33 + caniuse-lite: 1.0.30001793 + postcss: 8.4.31 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + styled-jsx: 5.1.6(@babel/core@7.29.7)(react@19.2.6) + optionalDependencies: + '@next/swc-darwin-arm64': 16.2.6 + '@next/swc-darwin-x64': 16.2.6 + '@next/swc-linux-arm64-gnu': 16.2.6 + '@next/swc-linux-arm64-musl': 16.2.6 + '@next/swc-linux-x64-gnu': 16.2.6 + '@next/swc-linux-x64-musl': 16.2.6 + '@next/swc-win32-arm64-msvc': 16.2.6 + '@next/swc-win32-x64-msvc': 16.2.6 + '@opentelemetry/api': 1.9.1 + babel-plugin-react-compiler: 1.0.0 + sass: 1.100.0 + sharp: 0.34.5 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + no-scroll@2.1.1: {} + + node-addon-api@7.1.1: + optional: true + + node-exports-info@1.6.0: + dependencies: + array.prototype.flatmap: 1.3.3 + es-errors: 1.3.0 + object.entries: 1.1.9 + semver: 6.3.1 + + node-gyp-build-optional-packages@5.2.2: + dependencies: + detect-libc: 2.1.2 + optional: true + + node-releases@2.0.46: {} + + nuqs@2.8.9(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(react@19.2.6): + dependencies: + '@standard-schema/spec': 1.0.0 + react: 19.2.6 + optionalDependencies: + next: 16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0) + + object-assign@4.1.1: {} + + object-inspect@1.13.4: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.2 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.entries@1.1.9: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.2 + + object.fromentries@2.0.8: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-object-atoms: 1.1.2 + + object.groupby@1.0.3: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + + object.values@1.2.1: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.2 + + obug@2.1.1: {} + + ohash@2.0.11: {} + + open@10.2.0: + dependencies: + default-browser: 5.5.0 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + wsl-utils: 0.1.0 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + orderedmap@2.1.1: {} + + otpauth@9.5.1: + dependencies: + '@noble/hashes': 2.2.0 + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + oxc-parser@0.127.0: + dependencies: + '@oxc-project/types': 0.127.0 + optionalDependencies: + '@oxc-parser/binding-android-arm-eabi': 0.127.0 + '@oxc-parser/binding-android-arm64': 0.127.0 + '@oxc-parser/binding-darwin-arm64': 0.127.0 + '@oxc-parser/binding-darwin-x64': 0.127.0 + '@oxc-parser/binding-freebsd-x64': 0.127.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.127.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.127.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.127.0 + '@oxc-parser/binding-linux-arm64-musl': 0.127.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.127.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.127.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.127.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.127.0 + '@oxc-parser/binding-linux-x64-gnu': 0.127.0 + '@oxc-parser/binding-linux-x64-musl': 0.127.0 + '@oxc-parser/binding-openharmony-arm64': 0.127.0 + '@oxc-parser/binding-wasm32-wasi': 0.127.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.127.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.127.0 + '@oxc-parser/binding-win32-x64-msvc': 0.127.0 + + oxc-parser@0.133.0: + dependencies: + '@oxc-project/types': 0.133.0 + optionalDependencies: + '@oxc-parser/binding-android-arm-eabi': 0.133.0 + '@oxc-parser/binding-android-arm64': 0.133.0 + '@oxc-parser/binding-darwin-arm64': 0.133.0 + '@oxc-parser/binding-darwin-x64': 0.133.0 + '@oxc-parser/binding-freebsd-x64': 0.133.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.133.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.133.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.133.0 + '@oxc-parser/binding-linux-arm64-musl': 0.133.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.133.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.133.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.133.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.133.0 + '@oxc-parser/binding-linux-x64-gnu': 0.133.0 + '@oxc-parser/binding-linux-x64-musl': 0.133.0 + '@oxc-parser/binding-openharmony-arm64': 0.133.0 + '@oxc-parser/binding-wasm32-wasi': 0.133.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.133.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.133.0 + '@oxc-parser/binding-win32-x64-msvc': 0.133.0 + + oxc-resolver@11.20.0: + optionalDependencies: + '@oxc-resolver/binding-android-arm-eabi': 11.20.0 + '@oxc-resolver/binding-android-arm64': 11.20.0 + '@oxc-resolver/binding-darwin-arm64': 11.20.0 + '@oxc-resolver/binding-darwin-x64': 11.20.0 + '@oxc-resolver/binding-freebsd-x64': 11.20.0 + '@oxc-resolver/binding-linux-arm-gnueabihf': 11.20.0 + '@oxc-resolver/binding-linux-arm-musleabihf': 11.20.0 + '@oxc-resolver/binding-linux-arm64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-arm64-musl': 11.20.0 + '@oxc-resolver/binding-linux-ppc64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-riscv64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-riscv64-musl': 11.20.0 + '@oxc-resolver/binding-linux-s390x-gnu': 11.20.0 + '@oxc-resolver/binding-linux-x64-gnu': 11.20.0 + '@oxc-resolver/binding-linux-x64-musl': 11.20.0 + '@oxc-resolver/binding-openharmony-arm64': 11.20.0 + '@oxc-resolver/binding-wasm32-wasi': 11.20.0 + '@oxc-resolver/binding-win32-arm64-msvc': 11.20.0 + '@oxc-resolver/binding-win32-x64-msvc': 11.20.0 + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-try@2.2.0: {} + + pako@1.0.11: {} + + papaparse@5.5.3: {} + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-entities@4.0.2: + dependencies: + '@types/unist': 2.0.11 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.3.0 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 + + parse5@7.3.0: + dependencies: + entities: 6.0.1 + + parse5@8.0.1: + dependencies: + entities: 8.0.0 + + path-exists@4.0.0: {} + + path-expression-matcher@1.5.0: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-scurry@2.0.2: + dependencies: + lru-cache: 11.5.1 + minipass: 7.1.3 + + pathe@2.0.3: {} + + pathval@2.0.1: {} + + pbf@4.0.2: + dependencies: + resolve-protobuf-schema: 2.1.0 + + perfect-debounce@2.1.0: {} + + pg-cloudflare@1.4.0: + optional: true + + pg-connection-string@2.13.0: {} + + pg-int8@1.0.1: {} + + pg-pool@3.14.0(pg@8.21.0): + dependencies: + pg: 8.21.0 + + pg-protocol@1.14.0: {} + + pg-types@2.2.0: + dependencies: + pg-int8: 1.0.1 + postgres-array: 2.0.0 + postgres-bytea: 1.0.1 + postgres-date: 1.0.7 + postgres-interval: 1.2.0 + + pg@8.21.0: + dependencies: + pg-connection-string: 2.13.0 + pg-pool: 3.14.0(pg@8.21.0) + pg-protocol: 1.14.0 + pg-types: 2.2.0 + pgpass: 1.0.5 + optionalDependencies: + pg-cloudflare: 1.4.0 + + pgpass@1.0.5: + dependencies: + split2: 4.2.0 + + picocolors@1.1.1: {} + + picomatch@2.3.2: {} + + picomatch@4.0.4: {} + + pkg-types@2.3.1: + dependencies: + confbox: 0.2.4 + exsolve: 1.0.8 + pathe: 2.0.3 + + playwright-core@1.60.0: {} + + playwright@1.60.0: + dependencies: + playwright-core: 1.60.0 + optionalDependencies: + fsevents: 2.3.2 + + pngjs@5.0.0: {} + + pngjs@7.0.0: {} + + point-in-polygon@1.1.0: {} + + possible-typed-array-names@1.1.0: {} + + postcss@8.4.31: + dependencies: + nanoid: 3.3.12 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postcss@8.5.15: + dependencies: + nanoid: 3.3.12 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postgres-array@2.0.0: {} + + postgres-array@3.0.4: {} + + postgres-bytea@1.0.1: {} + + postgres-date@1.0.7: {} + + postgres-interval@1.2.0: + dependencies: + xtend: 4.0.2 + + postgres@3.4.7: {} + + posthog-js@1.376.5: + dependencies: + '@opentelemetry/api': 1.9.1 + '@opentelemetry/api-logs': 0.208.0 + '@opentelemetry/exporter-logs-otlp-http': 0.208.0(@opentelemetry/api@1.9.1) + '@opentelemetry/resources': 2.7.1(@opentelemetry/api@1.9.1) + '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.1) + '@posthog/core': 1.29.14 + '@posthog/types': 1.376.5 + core-js: 3.49.0 + dompurify: 3.4.7 + fflate: 0.4.8 + preact: 10.29.2 + query-selector-shadow-dom: 1.0.1 + web-vitals: 5.3.0 + + posthog-node@5.35.7(rxjs@7.8.2): + dependencies: + '@posthog/core': 1.29.14 + optionalDependencies: + rxjs: 7.8.2 + + potpack@2.1.0: {} + + preact@10.29.2: {} + + prelude-ls@1.2.1: {} + + prettier-plugin-tailwindcss@0.8.0(prettier@3.8.3): + dependencies: + prettier: 3.8.3 + + prettier@3.8.3: {} + + pretty-format@27.5.1: + dependencies: + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 + + prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(magicast@0.5.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@6.0.3): + dependencies: + '@prisma/config': 7.8.0(magicast@0.5.3) + '@prisma/dev': 0.24.3(typescript@6.0.3) + '@prisma/engines': 7.8.0 + '@prisma/studio-core': 0.27.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + mysql2: 3.15.3 + postgres: 3.4.7 + optionalDependencies: + typescript: 6.0.3 + transitivePeerDependencies: + - '@types/react' + - '@types/react-dom' + - magicast + - react + - react-dom + + process-nextick-args@2.0.1: {} + + prop-types@15.8.1: + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + proper-lockfile@4.1.2: + dependencies: + graceful-fs: 4.2.11 + retry: 0.12.0 + signal-exit: 3.0.7 + + property-information@7.1.0: {} + + prosemirror-changeset@2.4.1: + dependencies: + prosemirror-transform: 1.12.0 + + prosemirror-commands@1.7.1: + dependencies: + prosemirror-model: 1.25.7 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + + prosemirror-dropcursor@1.8.2: + dependencies: + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.41.8 + + prosemirror-gapcursor@1.4.1: + dependencies: + prosemirror-keymap: 1.2.3 + prosemirror-model: 1.25.7 + prosemirror-state: 1.4.4 + prosemirror-view: 1.41.8 + + prosemirror-history@1.5.0: + dependencies: + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.41.8 + rope-sequence: 1.3.4 + + prosemirror-inputrules@1.5.1: + dependencies: + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + + prosemirror-keymap@1.2.3: + dependencies: + prosemirror-state: 1.4.4 + w3c-keyname: 2.2.8 + + prosemirror-model@1.25.7: + dependencies: + orderedmap: 2.1.1 + + prosemirror-schema-list@1.5.1: + dependencies: + prosemirror-model: 1.25.7 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + + prosemirror-state@1.4.4: + dependencies: + prosemirror-model: 1.25.7 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.41.8 + + prosemirror-tables@1.8.5: + dependencies: + prosemirror-keymap: 1.2.3 + prosemirror-model: 1.25.7 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + prosemirror-view: 1.41.8 + + prosemirror-transform@1.12.0: + dependencies: + prosemirror-model: 1.25.7 + + prosemirror-view@1.41.8: + dependencies: + prosemirror-model: 1.25.7 + prosemirror-state: 1.4.4 + prosemirror-transform: 1.12.0 + + protobufjs@7.6.2: + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.5 + '@protobufjs/eventemitter': 1.1.1 + '@protobufjs/fetch': 1.1.1 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.2 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.1 + '@types/node': 24.12.4 + long: 5.3.2 + + protocol-buffers-schema@3.6.1: {} + + punycode@2.3.1: {} + + pure-rand@6.1.0: {} + + pvtsutils@1.3.6: + dependencies: + tslib: 2.8.1 + + pvutils@1.1.5: {} + + qrcode@1.5.4: + dependencies: + dijkstrajs: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 + + query-selector-shadow-dom@1.0.1: {} + + queue-microtask@1.2.3: {} + + quickselect@3.0.0: {} + + rbush@4.0.1: + dependencies: + quickselect: 3.0.0 + + rc9@3.0.1: + dependencies: + defu: 6.1.7 + destr: 2.0.5 + + react-aria-components@1.18.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6): + dependencies: + '@internationalized/date': 3.12.2 + '@react-types/shared': 3.35.0(react@19.2.6) + '@swc/helpers': 0.5.23 + client-only: 0.0.1 + react: 19.2.6 + react-aria: 3.49.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + react-dom: 19.2.6(react@19.2.6) + react-stately: 3.47.0(react@19.2.6) + + react-aria@3.49.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6): + dependencies: + '@internationalized/date': 3.12.2 + '@internationalized/number': 3.6.7 + '@internationalized/string': 3.2.9 + '@react-types/shared': 3.35.0(react@19.2.6) + '@swc/helpers': 0.5.23 + aria-hidden: 1.2.6 + clsx: 2.1.1 + react: 19.2.6 + react-dom: 19.2.6(react@19.2.6) + react-stately: 3.47.0(react@19.2.6) + use-sync-external-store: 1.6.0(react@19.2.6) + + react-best-merge-refs@1.0.2(patch_hash=469dfbaa03c158d70d3588a72c8d8cd96e54c22d37f6fe62535c0b33fd21adc8)(react@19.2.6): + dependencies: + react: 19.2.6 + + react-docgen-typescript@2.4.0(typescript@6.0.3): + dependencies: + typescript: 6.0.3 + + react-docgen@8.0.3: + dependencies: + '@babel/core': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.28.0 + '@types/doctrine': 0.0.9 + '@types/resolve': 1.20.6 + doctrine: 3.0.0 + resolve: 1.22.12 + strip-indent: 4.1.1 + transitivePeerDependencies: + - supports-color + + react-dom@19.2.6(react@19.2.6): + dependencies: + react: 19.2.6 + scheduler: 0.27.0 + + react-dropzone@15.0.0(react@19.2.6): + dependencies: + attr-accept: 2.2.5 + file-selector: 2.1.2 + prop-types: 15.8.1 + react: 19.2.6 + + react-is@16.13.1: {} + + react-is@17.0.2: {} + + react-markdown@10.1.0(@types/react@19.2.15)(react@19.2.6): + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/react': 19.2.15 + devlop: 1.1.0 + hast-util-to-jsx-runtime: 2.3.6 + html-url-attributes: 3.0.1 + mdast-util-to-hast: 13.2.1 + react: 19.2.6 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + unified: 11.0.5 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + react-redux@9.3.0(@types/react@19.2.15)(react@19.2.6)(redux@5.0.1): + dependencies: + '@types/use-sync-external-store': 0.0.6 + react: 19.2.6 + use-sync-external-store: 1.6.0(react@19.2.6) + optionalDependencies: + '@types/react': 19.2.15 + redux: 5.0.1 + + react-stately@3.47.0(react@19.2.6): + dependencies: + '@internationalized/date': 3.12.2 + '@internationalized/number': 3.6.7 + '@internationalized/string': 3.2.9 + '@react-types/shared': 3.35.0(react@19.2.6) + '@swc/helpers': 0.5.23 + react: 19.2.6 + use-sync-external-store: 1.6.0(react@19.2.6) + + react@19.2.6: {} + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readdirp@5.0.0: {} + + recast@0.23.11: + dependencies: + ast-types: 0.16.1 + esprima: 4.0.1 + source-map: 0.6.1 + tiny-invariant: 1.3.3 + tslib: 2.8.1 + + redent@3.0.0: + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + + redux-logger@3.0.6: + dependencies: + deep-diff: 0.3.8 + + redux-thunk@3.1.0(redux@5.0.1): + dependencies: + redux: 5.0.1 + + redux@5.0.1: {} + + reflect-metadata@0.2.2: {} + + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 + + rehype-raw@7.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-raw: 9.1.0 + vfile: 6.0.3 + + rehype-sanitize@6.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-sanitize: 5.0.2 + + remark-gemoji@8.0.0: + dependencies: + '@types/mdast': 4.0.4 + gemoji: 8.1.0 + mdast-util-find-and-replace: 3.0.2 + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.3 + micromark-util-types: 2.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-rehype@11.1.2: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.1 + unified: 11.0.5 + vfile: 6.0.3 + + remeda@2.33.4: {} + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + require-main-filename@2.0.0: {} + + reselect@5.2.0: {} + + resolve-from@4.0.0: {} + + resolve-pkg-maps@1.0.0: {} + + resolve-protobuf-schema@2.1.0: + dependencies: + protocol-buffers-schema: 3.6.1 + + resolve@1.22.12: + dependencies: + es-errors: 1.3.0 + is-core-module: 2.16.2 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + resolve@2.0.0-next.7: + dependencies: + es-errors: 1.3.0 + is-core-module: 2.16.2 + node-exports-info: 1.6.0 + object-keys: 1.1.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + retry@0.12.0: {} + + reusify@1.1.0: {} + + robust-predicates@2.0.4: {} + + robust-predicates@3.0.3: {} + + rolldown@1.0.2: + dependencies: + '@oxc-project/types': 0.132.0 + '@rolldown/pluginutils': 1.0.1 + optionalDependencies: + '@rolldown/binding-android-arm64': 1.0.2 + '@rolldown/binding-darwin-arm64': 1.0.2 + '@rolldown/binding-darwin-x64': 1.0.2 + '@rolldown/binding-freebsd-x64': 1.0.2 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.2 + '@rolldown/binding-linux-arm64-gnu': 1.0.2 + '@rolldown/binding-linux-arm64-musl': 1.0.2 + '@rolldown/binding-linux-ppc64-gnu': 1.0.2 + '@rolldown/binding-linux-s390x-gnu': 1.0.2 + '@rolldown/binding-linux-x64-gnu': 1.0.2 + '@rolldown/binding-linux-x64-musl': 1.0.2 + '@rolldown/binding-openharmony-arm64': 1.0.2 + '@rolldown/binding-wasm32-wasi': 1.0.2 + '@rolldown/binding-win32-arm64-msvc': 1.0.2 + '@rolldown/binding-win32-x64-msvc': 1.0.2 + + rope-sequence@1.3.4: {} + + run-applescript@7.1.0: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rxjs@7.8.2: + dependencies: + tslib: 2.8.1 + + safe-array-concat@1.1.4: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safer-buffer@2.1.2: {} + + sanitize-filename@1.6.4: + dependencies: + truncate-utf8-bytes: 1.0.2 + + sass-embedded-all-unknown@1.100.0: + dependencies: + sass: 1.100.0 + optional: true + + sass-embedded-android-arm64@1.100.0: + optional: true + + sass-embedded-android-arm@1.100.0: + optional: true + + sass-embedded-android-riscv64@1.100.0: + optional: true + + sass-embedded-android-x64@1.100.0: + optional: true + + sass-embedded-darwin-arm64@1.100.0: + optional: true + + sass-embedded-darwin-x64@1.100.0: + optional: true + + sass-embedded-linux-arm64@1.100.0: + optional: true + + sass-embedded-linux-arm@1.100.0: + optional: true + + sass-embedded-linux-musl-arm64@1.100.0: + optional: true + + sass-embedded-linux-musl-arm@1.100.0: + optional: true + + sass-embedded-linux-musl-riscv64@1.100.0: + optional: true + + sass-embedded-linux-musl-x64@1.100.0: + optional: true + + sass-embedded-linux-riscv64@1.100.0: + optional: true + + sass-embedded-linux-x64@1.100.0: + optional: true + + sass-embedded-unknown-all@1.100.0: + dependencies: + sass: 1.100.0 + optional: true + + sass-embedded-win32-arm64@1.100.0: + optional: true + + sass-embedded-win32-x64@1.100.0: + optional: true + + sass-embedded@1.100.0: + dependencies: + '@bufbuild/protobuf': 2.12.0 + colorjs.io: 0.5.2 + immutable: 5.1.6 + rxjs: 7.8.2 + supports-color: 8.1.1 + sync-child-process: 1.0.2 + varint: 6.0.0 + optionalDependencies: + sass-embedded-all-unknown: 1.100.0 + sass-embedded-android-arm: 1.100.0 + sass-embedded-android-arm64: 1.100.0 + sass-embedded-android-riscv64: 1.100.0 + sass-embedded-android-x64: 1.100.0 + sass-embedded-darwin-arm64: 1.100.0 + sass-embedded-darwin-x64: 1.100.0 + sass-embedded-linux-arm: 1.100.0 + sass-embedded-linux-arm64: 1.100.0 + sass-embedded-linux-musl-arm: 1.100.0 + sass-embedded-linux-musl-arm64: 1.100.0 + sass-embedded-linux-musl-riscv64: 1.100.0 + sass-embedded-linux-musl-x64: 1.100.0 + sass-embedded-linux-riscv64: 1.100.0 + sass-embedded-linux-x64: 1.100.0 + sass-embedded-unknown-all: 1.100.0 + sass-embedded-win32-arm64: 1.100.0 + sass-embedded-win32-x64: 1.100.0 + + sass@1.100.0: + dependencies: + chokidar: 5.0.0 + immutable: 5.1.6 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.5.6 + + saxes@6.0.0: + dependencies: + xmlchars: 2.2.0 + + scheduler@0.27.0: {} + + schema-utils@4.3.3: + dependencies: + '@types/json-schema': 7.0.15 + ajv: 8.20.0 + ajv-formats: 2.1.1(ajv@8.20.0) + ajv-keywords: 5.1.0(ajv@8.20.0) + + semver@6.3.1: {} + + semver@7.8.1: {} + + seq-queue@0.0.5: {} + + server-only@0.0.1: {} + + set-blocking@2.0.0: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + + setimmediate@1.0.5: {} + + sharp@0.34.5: + dependencies: + '@img/colour': 1.1.0 + detect-libc: 2.1.2 + semver: 7.8.1 + optionalDependencies: + '@img/sharp-darwin-arm64': 0.34.5 + '@img/sharp-darwin-x64': 0.34.5 + '@img/sharp-libvips-darwin-arm64': 1.2.4 + '@img/sharp-libvips-darwin-x64': 1.2.4 + '@img/sharp-libvips-linux-arm': 1.2.4 + '@img/sharp-libvips-linux-arm64': 1.2.4 + '@img/sharp-libvips-linux-ppc64': 1.2.4 + '@img/sharp-libvips-linux-riscv64': 1.2.4 + '@img/sharp-libvips-linux-s390x': 1.2.4 + '@img/sharp-libvips-linux-x64': 1.2.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + '@img/sharp-linux-arm': 0.34.5 + '@img/sharp-linux-arm64': 0.34.5 + '@img/sharp-linux-ppc64': 0.34.5 + '@img/sharp-linux-riscv64': 0.34.5 + '@img/sharp-linux-s390x': 0.34.5 + '@img/sharp-linux-x64': 0.34.5 + '@img/sharp-linuxmusl-arm64': 0.34.5 + '@img/sharp-linuxmusl-x64': 0.34.5 + '@img/sharp-wasm32': 0.34.5 + '@img/sharp-win32-arm64': 0.34.5 + '@img/sharp-win32-ia32': 0.34.5 + '@img/sharp-win32-x64': 0.34.5 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + shell-quote@1.8.4: {} + + side-channel-list@1.0.1: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.1 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + siginfo@2.0.0: {} + + signal-exit@3.0.7: {} + + signal-exit@4.1.0: {} + + simplex-noise@4.0.3: {} + + sirv@3.0.2: + dependencies: + '@polka/url': 1.0.0-next.29 + mrmime: 2.0.1 + totalist: 3.0.1 + + smol-toml@1.6.1: {} + + source-map-js@1.2.1: {} + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.6.1: {} + + space-separated-tokens@2.0.2: {} + + splaytree@0.1.4: {} + + split2@4.2.0: {} + + sqids@0.3.0: {} + + sqlstring@2.3.3: {} + + stable-hash-x@0.2.0: {} + + stackback@0.0.2: {} + + std-env@3.10.0: {} + + std-env@4.1.0: {} + + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + + storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6): + dependencies: + '@storybook/global': 5.0.0 + '@storybook/icons': 2.0.2(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + '@testing-library/jest-dom': 6.9.1 + '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.1) + '@vitest/expect': 3.2.4 + '@vitest/spy': 3.2.4 + '@webcontainer/env': 1.1.1 + esbuild: 0.27.7 + open: 10.2.0 + oxc-parser: 0.127.0 + oxc-resolver: 11.20.0 + recast: 0.23.11 + semver: 7.8.1 + use-sync-external-store: 1.6.0(react@19.2.6) + ws: 8.21.0 + optionalDependencies: + '@types/react': 19.2.15 + prettier: 3.8.3 + transitivePeerDependencies: + - '@testing-library/dom' + - bufferutil + - react + - react-dom + - utf-8-validate + + stream-browserify@3.0.0: + dependencies: + inherits: 2.0.4 + readable-stream: 3.6.2 + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@7.2.0: + dependencies: + emoji-regex: 10.6.0 + get-east-asian-width: 1.6.0 + strip-ansi: 7.2.0 + + string.prototype.includes@2.0.1: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-abstract: 1.24.2 + + string.prototype.matchall@4.0.12: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-errors: 1.3.0 + es-object-atoms: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-symbols: 1.1.0 + internal-slot: 1.1.0 + regexp.prototype.flags: 1.5.4 + set-function-name: 2.0.2 + side-channel: 1.1.0 + + string.prototype.repeat@1.0.0: + dependencies: + define-properties: 1.2.1 + es-abstract: 1.24.2 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.2 + es-object-atoms: 1.1.2 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.9 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.2 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.9 + define-properties: 1.2.1 + es-object-atoms: 1.1.2 + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.2.0: + dependencies: + ansi-regex: 6.2.2 + + strip-bom@3.0.0: {} + + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 + + strip-indent@4.1.1: {} + + strip-json-comments@3.1.1: {} + + strip-json-comments@5.0.3: {} + + strnum@2.3.0: {} + + style-to-js@1.1.21: + dependencies: + style-to-object: 1.0.14 + + style-to-object@1.0.14: + dependencies: + inline-style-parser: 0.2.7 + + styled-jsx@5.1.6(@babel/core@7.29.7)(react@19.2.6): + dependencies: + client-only: 0.0.1 + react: 19.2.6 + optionalDependencies: + '@babel/core': 7.29.7 + + subtag@0.5.0: {} + + supercluster@8.0.1: + dependencies: + kdbush: 4.1.0 + + superjson@2.2.6: + dependencies: + copy-anything: 4.0.5 + + supports-color@10.2.2: {} + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-color@8.1.1: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + symbol-tree@3.2.4: {} + + sync-child-process@1.0.2: + dependencies: + sync-message-port: 1.2.0 + + sync-message-port@1.2.0: {} + + synckit@0.11.13: + dependencies: + '@pkgr/core': 0.3.6 + + tabbable@5.3.3: {} + + tailwind-csstree@0.3.2: {} + + tailwind-merge@3.6.0: {} + + tailwindcss-animate@1.0.7(tailwindcss@4.3.0): + dependencies: + tailwindcss: 4.3.0 + + tailwindcss@4.3.0: {} + + tapable@2.3.3: {} + + terser-webpack-plugin@5.6.1(esbuild@0.28.0)(postcss@8.5.15)(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)): + dependencies: + '@jridgewell/trace-mapping': 0.3.31 + jest-worker: 27.5.1 + schema-utils: 4.3.3 + terser: 5.48.0 + webpack: 5.107.2(esbuild@0.28.0)(postcss@8.5.15) + optionalDependencies: + esbuild: 0.28.0 + postcss: 8.5.15 + + terser@5.48.0: + dependencies: + '@jridgewell/source-map': 0.3.11 + acorn: 8.16.0 + commander: 2.20.3 + source-map-support: 0.5.21 + + tiny-invariant@1.3.3: {} + + tinybench@2.9.0: {} + + tinyexec@1.2.4: {} + + tinyglobby@0.2.17: + dependencies: + fdir: 6.5.0(picomatch@4.0.4) + picomatch: 4.0.4 + + tinyqueue@3.0.0: {} + + tinyrainbow@2.0.0: {} + + tinyrainbow@3.1.0: {} + + tinyspy@4.0.4: {} + + tldts-core@7.4.2: {} + + tldts@7.4.2: + dependencies: + tldts-core: 7.4.2 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + totalist@3.0.1: {} + + tough-cookie@6.0.1: + dependencies: + tldts: 7.4.2 + + tr46@6.0.0: + dependencies: + punycode: 2.3.1 + + tree-kill@1.2.2: {} + + trim-lines@3.0.1: {} + + trough@2.2.0: {} + + truncate-utf8-bytes@1.0.2: + dependencies: + utf8-byte-length: 1.0.5 + + ts-api-utils@2.5.0(typescript@6.0.3): + dependencies: + typescript: 6.0.3 + + ts-dedent@2.2.0: {} + + tsconfck@3.1.6(typescript@6.0.3): + optionalDependencies: + typescript: 6.0.3 + + tsconfig-paths-webpack-plugin@4.2.0: + dependencies: + chalk: 4.1.2 + enhanced-resolve: 5.22.1 + tapable: 2.3.3 + tsconfig-paths: 4.2.0 + + tsconfig-paths@3.15.0: + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tsconfig-paths@4.2.0: + dependencies: + json5: 2.2.3 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tslib@1.14.1: {} + + tslib@2.8.1: {} + + tsx@4.22.4: + dependencies: + esbuild: 0.28.0 + optionalDependencies: + fsevents: 2.3.3 + + tsyringe@4.10.0: + dependencies: + tslib: 1.14.1 + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.9 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.9 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + + typed-array-length@1.0.8: + dependencies: + call-bind: 1.0.9 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 + + typescript-eslint@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3): + dependencies: + '@typescript-eslint/eslint-plugin': 8.60.0(@typescript-eslint/parser@8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/parser': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + '@typescript-eslint/typescript-estree': 8.60.0(typescript@6.0.3) + '@typescript-eslint/utils': 8.60.0(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3) + eslint: 9.39.4(jiti@2.7.0) + typescript: 6.0.3 + transitivePeerDependencies: + - supports-color + + typescript@6.0.3: {} + + unbash@3.0.0: {} + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + undici-types@7.16.0: {} + + undici@7.26.0: {} + + unified@11.0.5: + dependencies: + '@types/unist': 3.0.3 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + + unist-util-is@6.0.1: + dependencies: + '@types/unist': 3.0.3 + + unist-util-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.2: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + + unist-util-visit@5.1.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 + + universalify@2.0.1: {} + + unplugin@2.3.11: + dependencies: + '@jridgewell/remapping': 2.3.5 + acorn: 8.16.0 + picomatch: 4.0.4 + webpack-virtual-modules: 0.6.2 + + unrs-resolver@1.12.2: + dependencies: + napi-postinstall: 0.3.4 + optionalDependencies: + '@unrs/resolver-binding-android-arm-eabi': 1.12.2 + '@unrs/resolver-binding-android-arm64': 1.12.2 + '@unrs/resolver-binding-darwin-arm64': 1.12.2 + '@unrs/resolver-binding-darwin-x64': 1.12.2 + '@unrs/resolver-binding-freebsd-x64': 1.12.2 + '@unrs/resolver-binding-linux-arm-gnueabihf': 1.12.2 + '@unrs/resolver-binding-linux-arm-musleabihf': 1.12.2 + '@unrs/resolver-binding-linux-arm64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-arm64-musl': 1.12.2 + '@unrs/resolver-binding-linux-loong64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-loong64-musl': 1.12.2 + '@unrs/resolver-binding-linux-ppc64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-riscv64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-riscv64-musl': 1.12.2 + '@unrs/resolver-binding-linux-s390x-gnu': 1.12.2 + '@unrs/resolver-binding-linux-x64-gnu': 1.12.2 + '@unrs/resolver-binding-linux-x64-musl': 1.12.2 + '@unrs/resolver-binding-openharmony-arm64': 1.12.2 + '@unrs/resolver-binding-wasm32-wasi': 1.12.2 + '@unrs/resolver-binding-win32-arm64-msvc': 1.12.2 + '@unrs/resolver-binding-win32-ia32-msvc': 1.12.2 + '@unrs/resolver-binding-win32-x64-msvc': 1.12.2 + + update-browserslist-db@1.2.3(browserslist@4.28.2): + dependencies: + browserslist: 4.28.2 + escalade: 3.2.0 + picocolors: 1.1.1 + + uploadthing@7.7.4(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(tailwindcss@4.3.0): + dependencies: + '@effect/platform': 0.90.3(effect@3.17.7) + '@standard-schema/spec': 1.0.0-beta.4 + '@uploadthing/mime-types': 0.3.6 + '@uploadthing/shared': 7.1.10 + effect: 3.17.7 + optionalDependencies: + next: 16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0) + tailwindcss: 4.3.0 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + use-sync-external-store@1.6.0(react@19.2.6): + dependencies: + react: 19.2.6 + + usehooks-ts@3.1.1(react@19.2.6): + dependencies: + lodash.debounce: 4.0.8 + react: 19.2.6 + + utf8-byte-length@1.0.5: {} + + util-deprecate@1.0.2: {} + + uuid@14.0.0: {} + + valibot@1.2.0(typescript@6.0.3): + optionalDependencies: + typescript: 6.0.3 + + valibot@1.4.1(typescript@6.0.3): + optionalDependencies: + typescript: 6.0.3 + + varint@6.0.0: {} + + vfile-location@5.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile: 6.0.3 + + vfile-message@4.0.3: + dependencies: + '@types/unist': 3.0.3 + unist-util-stringify-position: 4.0.0 + + vfile@6.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile-message: 4.0.3 + + vite-plugin-storybook-nextjs@3.3.0(next@16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0))(storybook@10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)): + dependencies: + '@next/env': 16.0.0 + image-size: 2.0.2 + magic-string: 0.30.21 + module-alias: 2.3.4 + next: 16.2.6(@babel/core@7.29.7)(@opentelemetry/api@1.9.1)(babel-plugin-react-compiler@1.0.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.100.0) + storybook: 10.4.1(@testing-library/dom@10.4.1)(@types/react@19.2.15)(prettier@3.8.3)(react-dom@19.2.6(react@19.2.6))(react@19.2.6) + ts-dedent: 2.2.0 + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + vite-tsconfig-paths: 5.1.4(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + transitivePeerDependencies: + - supports-color + - typescript + + vite-tsconfig-paths@5.1.4(typescript@6.0.3)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)): + dependencies: + debug: 4.4.3 + globrex: 0.1.2 + tsconfck: 3.1.6(typescript@6.0.3) + optionalDependencies: + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + transitivePeerDependencies: + - supports-color + - typescript + + vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0): + dependencies: + lightningcss: 1.32.0 + picomatch: 4.0.4 + postcss: 8.5.15 + rolldown: 1.0.2 + tinyglobby: 0.2.17 + optionalDependencies: + '@types/node': 24.12.4 + esbuild: 0.28.0 + fsevents: 2.3.3 + jiti: 2.7.0 + sass: 1.100.0 + sass-embedded: 1.100.0 + terser: 5.48.0 + tsx: 4.22.4 + yaml: 2.9.0 + + vitest@4.1.7(@opentelemetry/api@1.9.1)(@types/node@24.12.4)(@vitest/browser-playwright@4.1.7)(@vitest/coverage-v8@4.1.7)(jsdom@29.1.1(@noble/hashes@2.2.0))(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)): + dependencies: + '@vitest/expect': 4.1.7 + '@vitest/mocker': 4.1.7(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0)) + '@vitest/pretty-format': 4.1.7 + '@vitest/runner': 4.1.7 + '@vitest/snapshot': 4.1.7 + '@vitest/spy': 4.1.7 + '@vitest/utils': 4.1.7 + es-module-lexer: 2.1.0 + expect-type: 1.3.0 + magic-string: 0.30.21 + obug: 2.1.1 + pathe: 2.0.3 + picomatch: 4.0.4 + std-env: 4.1.0 + tinybench: 2.9.0 + tinyexec: 1.2.4 + tinyglobby: 0.2.17 + tinyrainbow: 3.1.0 + vite: 8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0) + why-is-node-running: 2.3.0 + optionalDependencies: + '@opentelemetry/api': 1.9.1 + '@types/node': 24.12.4 + '@vitest/browser-playwright': 4.1.7(playwright@1.60.0)(vite@8.0.14(@types/node@24.12.4)(esbuild@0.28.0)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.48.0)(tsx@4.22.4)(yaml@2.9.0))(vitest@4.1.7) + '@vitest/coverage-v8': 4.1.7(@vitest/browser@4.1.7)(vitest@4.1.7) + jsdom: 29.1.1(@noble/hashes@2.2.0) + transitivePeerDependencies: + - msw + + w3c-keyname@2.2.8: {} + + w3c-xmlserializer@5.0.0: + dependencies: + xml-name-validator: 5.0.0 + + walk-up-path@4.0.0: {} + + watchpack@2.5.1: + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + + web-namespaces@2.0.1: {} + + web-vitals@5.3.0: {} + + webidl-conversions@8.0.1: {} + + webpack-sources@3.5.0: {} + + webpack-virtual-modules@0.6.2: {} + + webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15): + dependencies: + '@types/estree': 1.0.9 + '@types/json-schema': 7.0.15 + '@webassemblyjs/ast': 1.14.1 + '@webassemblyjs/wasm-edit': 1.14.1 + '@webassemblyjs/wasm-parser': 1.14.1 + acorn: 8.16.0 + acorn-import-phases: 1.0.4(acorn@8.16.0) + browserslist: 4.28.2 + chrome-trace-event: 1.0.4 + enhanced-resolve: 5.22.1 + es-module-lexer: 2.1.0 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.11 + loader-runner: 4.3.2 + mime-db: 1.54.0 + neo-async: 2.6.2 + schema-utils: 4.3.3 + tapable: 2.3.3 + terser-webpack-plugin: 5.6.1(esbuild@0.28.0)(postcss@8.5.15)(webpack@5.107.2(esbuild@0.28.0)(postcss@8.5.15)) + watchpack: 2.5.1 + webpack-sources: 3.5.0 + transitivePeerDependencies: + - '@minify-html/node' + - '@swc/core' + - '@swc/css' + - '@swc/html' + - clean-css + - cssnano + - csso + - esbuild + - html-minifier-terser + - lightningcss + - postcss + - uglify-js + + whatwg-mimetype@5.0.0: {} + + whatwg-url@16.0.1(@noble/hashes@2.2.0): + dependencies: + '@exodus/bytes': 1.15.1(@noble/hashes@2.2.0) + tr46: 6.0.0 + webidl-conversions: 8.0.1 + transitivePeerDependencies: + - '@noble/hashes' + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.2 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.21 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-module@2.0.1: {} + + which-typed-array@1.1.21: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.9 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + + word-wrap@1.2.5: {} + + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@9.0.2: + dependencies: + ansi-styles: 6.2.3 + string-width: 7.2.0 + strip-ansi: 7.2.0 + + ws@8.21.0: {} + + wsl-utils@0.1.0: + dependencies: + is-wsl: 3.1.1 + + xml-name-validator@5.0.0: {} + + xml-naming@0.1.0: {} + + xmlchars@2.2.0: {} + + xtend@4.0.2: {} + + y18n@4.0.3: {} + + y18n@5.0.8: {} + + yallist@3.1.1: {} + + yaml@2.9.0: {} + + yargs-parser@18.1.3: + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + + yargs-parser@22.0.0: {} + + yargs@15.4.1: + dependencies: + cliui: 6.0.0 + decamelize: 1.2.0 + find-up: 4.1.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + require-main-filename: 2.0.0 + set-blocking: 2.0.0 + string-width: 4.2.3 + which-module: 2.0.1 + y18n: 4.0.3 + yargs-parser: 18.1.3 + + yargs@18.0.0: + dependencies: + cliui: 9.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + string-width: 7.2.0 + y18n: 5.0.8 + yargs-parser: 22.0.0 + + yocto-queue@0.1.0: {} + + zeptomatch@2.1.0: + dependencies: + grammex: 3.1.12 + graphmatch: 1.1.1 + + zod-validation-error@4.0.2(zod@4.4.3): + dependencies: + zod: 4.4.3 + + zod@4.4.3: {} + + zustand@5.0.14(@types/react@19.2.15)(immer@11.1.8)(react@19.2.6)(use-sync-external-store@1.6.0(react@19.2.6)): + optionalDependencies: + '@types/react': 19.2.15 + immer: 11.1.8 + react: 19.2.6 + use-sync-external-store: 1.6.0(react@19.2.6) + + zwitch@2.0.4: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 000000000..9814a1a4e --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,28 @@ +autoInstallPeers: true + +publicHoistPattern: + - '*tailwind-config*' + +allowBuilds: + '@parcel/watcher': true + '@posthog/cli': false + '@prisma/engines': true + '@tailwindcss/oxide': true + core-js: false + core-js-pure: true + esbuild: true + msgpackr-extract: false + prisma: true + protobufjs: false + sharp: true + unrs-resolver: true + +patchedDependencies: + react-best-merge-refs@1.0.2: patches/react-best-merge-refs@1.0.2.patch + +minimumReleaseAgeExclude: + - '@codaco/fresco-ui@2.11.2' + - '@codaco/interview@1.0.0-alpha.23' + - '@codaco/network-exporters@1.0.3' + - '@codaco/protocol-validation@11.6.1' + - '@codaco/tailwind-config@1.0.0-alpha.19' diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 000000000..297374d80 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,7 @@ +const config = { + plugins: { + '@tailwindcss/postcss': {}, + }, +}; + +export default config; diff --git a/prisma.config.ts b/prisma.config.ts new file mode 100644 index 000000000..e95aea9c5 --- /dev/null +++ b/prisma.config.ts @@ -0,0 +1,14 @@ +import 'dotenv/config'; +import path from 'node:path'; +import { defineConfig, type PrismaConfig } from 'prisma/config'; +import { env } from './env'; + +export default defineConfig({ + schema: path.join(import.meta.dirname, 'lib', 'db', 'schema.prisma'), + datasource: { + // Note: do _not_ use the prisma/config `env()` utility, as it enforces + // that the variable is set at config time, which breaks certain workflows + // (e.g. generating the client without a live database connection). + url: env.DATABASE_URL_UNPOOLED, + }, +}) satisfies PrismaConfig; diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..652f2f4d9 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 000000000..cbe6c9048 Binary files /dev/null and b/public/favicon.png differ diff --git a/public/images/NC-Mark.svg b/public/images/NC-Mark.svg new file mode 100644 index 000000000..f658813ae --- /dev/null +++ b/public/images/NC-Mark.svg @@ -0,0 +1 @@ +NC-Mark \ No newline at end of file diff --git a/public/images/NC-Type and Mark Wide Pos.svg b/public/images/NC-Type and Mark Wide Pos.svg new file mode 100644 index 000000000..c853cd417 --- /dev/null +++ b/public/images/NC-Type and Mark Wide Pos.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/cancel.svg b/public/images/cancel.svg new file mode 100644 index 000000000..7614e589b --- /dev/null +++ b/public/images/cancel.svg @@ -0,0 +1 @@ +Cancel diff --git a/public/images/categorical.svg b/public/images/categorical.svg new file mode 100644 index 000000000..228d139c6 --- /dev/null +++ b/public/images/categorical.svg @@ -0,0 +1 @@ +Menu - CAT diff --git a/public/images/chevron.svg b/public/images/chevron.svg new file mode 100644 index 000000000..8b6438b73 --- /dev/null +++ b/public/images/chevron.svg @@ -0,0 +1,7 @@ + + + + + diff --git a/public/images/close.svg b/public/images/close.svg new file mode 100644 index 000000000..fe2fc2ce1 --- /dev/null +++ b/public/images/close.svg @@ -0,0 +1 @@ +Close \ No newline at end of file diff --git a/public/images/context.svg b/public/images/context.svg new file mode 100644 index 000000000..7e57d6a3a --- /dev/null +++ b/public/images/context.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/contexts.svg b/public/images/contexts.svg new file mode 100644 index 000000000..8c3e3b86b --- /dev/null +++ b/public/images/contexts.svg @@ -0,0 +1,17 @@ + + + Contexts + + + + + + + + + + + + + + diff --git a/public/images/cross.svg b/public/images/cross.svg new file mode 100644 index 000000000..b3c9fcd69 --- /dev/null +++ b/public/images/cross.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/images/custom.svg b/public/images/custom.svg new file mode 100644 index 000000000..3de339281 --- /dev/null +++ b/public/images/custom.svg @@ -0,0 +1 @@ +Menu - Custom Interface diff --git a/public/images/down-arrow.svg b/public/images/down-arrow.svg new file mode 100644 index 000000000..6d55f346c --- /dev/null +++ b/public/images/down-arrow.svg @@ -0,0 +1 @@ +down-arrow \ No newline at end of file diff --git a/public/images/download-data.svg b/public/images/download-data.svg new file mode 100644 index 000000000..51f24600f --- /dev/null +++ b/public/images/download-data.svg @@ -0,0 +1 @@ +Menu - Download Data Selected diff --git a/public/images/edit.svg b/public/images/edit.svg new file mode 100644 index 000000000..a259d9fe5 --- /dev/null +++ b/public/images/edit.svg @@ -0,0 +1 @@ +Edit - Blue diff --git a/public/images/file-icon.svg b/public/images/file-icon.svg new file mode 100644 index 000000000..6f7de5cfc --- /dev/null +++ b/public/images/file-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/highlighted.svg b/public/images/highlighted.svg new file mode 100644 index 000000000..315b0b743 --- /dev/null +++ b/public/images/highlighted.svg @@ -0,0 +1,11 @@ + + + Highlighted + + + + + + + + diff --git a/public/images/info.svg b/public/images/info.svg new file mode 100644 index 000000000..16bb5b0d2 --- /dev/null +++ b/public/images/info.svg @@ -0,0 +1 @@ +Info diff --git a/public/images/interface.svg b/public/images/interface.svg new file mode 100644 index 000000000..2c84c99b8 --- /dev/null +++ b/public/images/interface.svg @@ -0,0 +1 @@ +Menu - Default Interface diff --git a/public/images/interview-icon.png b/public/images/interview-icon.png new file mode 100644 index 000000000..6b49281a3 Binary files /dev/null and b/public/images/interview-icon.png differ diff --git a/public/images/links.svg b/public/images/links.svg new file mode 100644 index 000000000..38ecb7d71 --- /dev/null +++ b/public/images/links.svg @@ -0,0 +1 @@ + diff --git a/public/images/menu-ord.svg b/public/images/menu-ord.svg new file mode 100644 index 000000000..74afeaff4 --- /dev/null +++ b/public/images/menu-ord.svg @@ -0,0 +1 @@ +Menu - ORD diff --git a/public/images/menu-purge-data.svg b/public/images/menu-purge-data.svg new file mode 100644 index 000000000..f8c2fd55b --- /dev/null +++ b/public/images/menu-purge-data.svg @@ -0,0 +1 @@ +Menu - Purge Data diff --git a/public/images/menu-quit.svg b/public/images/menu-quit.svg new file mode 100644 index 000000000..10942dd04 --- /dev/null +++ b/public/images/menu-quit.svg @@ -0,0 +1 @@ +Menu - Quit diff --git a/public/images/menu-sociogram.svg b/public/images/menu-sociogram.svg new file mode 100644 index 000000000..b1b6f2522 --- /dev/null +++ b/public/images/menu-sociogram.svg @@ -0,0 +1 @@ +Menu - Sociogram diff --git a/public/images/menu.svg b/public/images/menu.svg new file mode 100644 index 000000000..22981036e --- /dev/null +++ b/public/images/menu.svg @@ -0,0 +1 @@ +Menu diff --git a/public/images/name-generator.svg b/public/images/name-generator.svg new file mode 100644 index 000000000..b91565429 --- /dev/null +++ b/public/images/name-generator.svg @@ -0,0 +1 @@ +Menu - NG diff --git a/public/images/participant.svg b/public/images/participant.svg new file mode 100644 index 000000000..50a393d10 --- /dev/null +++ b/public/images/participant.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/person.svg b/public/images/person.svg new file mode 100644 index 000000000..4cfe973f5 --- /dev/null +++ b/public/images/person.svg @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/public/images/place.svg b/public/images/place.svg new file mode 100644 index 000000000..fce7a82ef --- /dev/null +++ b/public/images/place.svg @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/public/images/protocol-icon.png b/public/images/protocol-icon.png new file mode 100644 index 000000000..3885d7b17 Binary files /dev/null and b/public/images/protocol-icon.png differ diff --git a/public/images/relationship.svg b/public/images/relationship.svg new file mode 100644 index 000000000..156bd28bd --- /dev/null +++ b/public/images/relationship.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + diff --git a/public/images/robot.svg b/public/images/robot.svg new file mode 100644 index 000000000..fa991e81f --- /dev/null +++ b/public/images/robot.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/public/images/roster-list-bg-cards.svg b/public/images/roster-list-bg-cards.svg new file mode 100644 index 000000000..20917ae0c --- /dev/null +++ b/public/images/roster-list-bg-cards.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/roster-list-character.svg b/public/images/roster-list-character.svg new file mode 100644 index 000000000..fe7715fb0 --- /dev/null +++ b/public/images/roster-list-character.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/session.svg b/public/images/session.svg new file mode 100644 index 000000000..797cd05be --- /dev/null +++ b/public/images/session.svg @@ -0,0 +1 @@ +Menu - New Session diff --git a/public/images/tick.svg b/public/images/tick.svg new file mode 100644 index 000000000..bfc0e97d8 --- /dev/null +++ b/public/images/tick.svg @@ -0,0 +1,7 @@ + + + + + diff --git a/public/images/too-small.svg b/public/images/too-small.svg new file mode 100644 index 000000000..9e006015f --- /dev/null +++ b/public/images/too-small.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/images/uploadthing-key.png b/public/images/uploadthing-key.png new file mode 100644 index 000000000..c1558fbe6 Binary files /dev/null and b/public/images/uploadthing-key.png differ diff --git a/public/images/warning.svg b/public/images/warning.svg new file mode 100644 index 000000000..2e9c44626 --- /dev/null +++ b/public/images/warning.svg @@ -0,0 +1 @@ +Warning diff --git a/public/mock-data.json b/public/mock-data.json new file mode 100644 index 000000000..b08cf4033 --- /dev/null +++ b/public/mock-data.json @@ -0,0 +1,14 @@ +{ + "nodes": [ + { "name": "Alice Johnson", "age": 32, "location": "New York" }, + { "name": "Bob Smith", "age": 45, "location": "Los Angeles" }, + { "name": "Charlie Brown", "age": 28, "location": "Chicago" }, + { "name": "Diana Prince", "age": 35, "location": "Houston" }, + { "name": "Eve Martinez", "age": 41, "location": "Phoenix" }, + { "name": "Frank Wilson", "age": 29, "location": "Philadelphia" }, + { "name": "Grace Lee", "age": 38, "location": "San Antonio" }, + { "name": "Henry Garcia", "age": 52, "location": "San Diego" }, + { "name": "Iris Chen", "age": 24, "location": "Dallas" }, + { "name": "Jack Taylor", "age": 33, "location": "San Jose" } + ] +} diff --git a/public/sounds/create-edge.mp3 b/public/sounds/create-edge.mp3 new file mode 100644 index 000000000..501c6e6ef Binary files /dev/null and b/public/sounds/create-edge.mp3 differ diff --git a/public/sounds/create-node.mp3 b/public/sounds/create-node.mp3 new file mode 100644 index 000000000..1ba750a38 Binary files /dev/null and b/public/sounds/create-node.mp3 differ diff --git a/public/sounds/discard.mp3 b/public/sounds/discard.mp3 new file mode 100644 index 000000000..6201fa147 Binary files /dev/null and b/public/sounds/discard.mp3 differ diff --git a/public/sounds/drop-node.mp3 b/public/sounds/drop-node.mp3 new file mode 100644 index 000000000..1546182de Binary files /dev/null and b/public/sounds/drop-node.mp3 differ diff --git a/public/sounds/error.mp3 b/public/sounds/error.mp3 new file mode 100644 index 000000000..fa2dbba0c Binary files /dev/null and b/public/sounds/error.mp3 differ diff --git a/public/sounds/finish-interview.mp3 b/public/sounds/finish-interview.mp3 new file mode 100644 index 000000000..f4b1facaa Binary files /dev/null and b/public/sounds/finish-interview.mp3 differ diff --git a/public/sounds/node-linking-mode.mp3 b/public/sounds/node-linking-mode.mp3 new file mode 100644 index 000000000..be6ba65d2 Binary files /dev/null and b/public/sounds/node-linking-mode.mp3 differ diff --git a/public/sounds/open-app.mp3 b/public/sounds/open-app.mp3 new file mode 100644 index 000000000..aebdb0d28 Binary files /dev/null and b/public/sounds/open-app.mp3 differ diff --git a/public/sounds/tap-button.mp3 b/public/sounds/tap-button.mp3 new file mode 100644 index 000000000..5e1b51fb7 Binary files /dev/null and b/public/sounds/tap-button.mp3 differ diff --git a/public/sounds/toggle-off.mp3 b/public/sounds/toggle-off.mp3 new file mode 100644 index 000000000..6f7dace4c Binary files /dev/null and b/public/sounds/toggle-off.mp3 differ diff --git a/public/sounds/toggle-on.mp3 b/public/sounds/toggle-on.mp3 new file mode 100644 index 000000000..d4b4dba06 Binary files /dev/null and b/public/sounds/toggle-on.mp3 differ diff --git a/public/storybook/chicago.geojson b/public/storybook/chicago.geojson new file mode 100644 index 000000000..6dfcad0ca --- /dev/null +++ b/public/storybook/chicago.geojson @@ -0,0 +1,5 @@ +{ + "type": "FeatureCollection", + "features": [ + {"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11228197.5722","perimeter":"0.0","tract_cent":"1160171.70454335","census_t_1":"17031720500","tract_numa":"36","tract_comm":"72","objectid":"1","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1834962.2944345","census_tra":"720500","tract_ce_3":"41.70283387","tract_crea":"","tract_ce_2":"-87.68910702","shape_len":"14047.0507089"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69148523416723,41.70636229447373],[-87.6914754960293,41.706316345296074],[-87.69107315502133,41.70631746052196],[-87.69077830359282,41.70632155035861],[-87.6904336528242,41.706328230043404],[-87.69025375994657,41.70633055181571],[-87.69012348728083,41.706332232798374],[-87.68984352384363,41.706333104882745],[-87.68979420767823,41.70633325820753],[-87.68952615525157,41.706337495178104],[-87.68941930715027,41.70633956483483],[-87.68929638809033,41.70634194582074],[-87.68902251834898,41.70634041062201],[-87.68866080006066,41.70634412037247],[-87.68831470362437,41.70634741720179],[-87.68828172139133,41.70634773126345],[-87.68794092761465,41.70635155592516],[-87.68778965276178,41.7063551218631],[-87.68764604686041,41.70635850675481],[-87.68736650917745,41.706362674153574],[-87.68712145615109,41.706364165599844],[-87.68677299061339,41.70636613239942],[-87.68667368009554,41.70636704950083],[-87.68654734195906,41.70636821589498],[-87.6864678593025,41.7063692378278],[-87.6864082704525,41.70636970482815],[-87.68602964368598,41.706372670581075],[-87.68562968161103,41.706377798940856],[-87.68533361247052,41.70638095874577],[-87.68500033991228,41.70638451412262],[-87.68462286670442,41.70638932703445],[-87.6843900686775,41.706392238905394],[-87.68411756059085,41.706389017431825],[-87.6838343609515,41.706385669020776],[-87.68351042726862,41.7063796937797],[-87.68327470562191,41.70637836059267],[-87.68289701713954,41.70637796391912],[-87.68228756040493,41.7063773209997],[-87.6819950125871,41.706376136627966],[-87.68162036664012,41.70637632437215],[-87.6816089019039,41.70605039120507],[-87.68160386174927,41.705882272495465],[-87.68158664914753,41.70526950348013],[-87.68157231521297,41.7048467406316],[-87.6815643740696,41.70455417836924],[-87.68155945066697,41.70437277689964],[-87.68154111408145,41.70384598119066],[-87.68152269866769,41.703268963748265],[-87.68151077923353,41.70290455889901],[-87.68150316760378,41.70273329175844],[-87.68149498303053,41.702536015540815],[-87.68149143755309,41.70239032638167],[-87.68148380697333,41.702036319645636],[-87.68147560061757,41.70179016126414],[-87.68146499902208,41.701469316047145],[-87.68145402348124,41.70113837010173],[-87.68144721498079,41.70090628595259],[-87.68144326317272,41.700771583845544],[-87.68143821056674,41.70062651783644],[-87.68143030278868,41.700401547597465],[-87.68142245332433,41.70017805934458],[-87.68141334691718,41.69988683412707],[-87.68140531397623,41.69962717479709],[-87.68140308450523,41.69955526066208],[-87.68139611647388,41.699330515257245],[-87.68138771505961,41.699078961390505],[-87.68153570521923,41.69908741801876],[-87.68155616615904,41.699087160014166],[-87.68181161849027,41.699083933306866],[-87.68205693723334,41.699082264190864],[-87.6821262597485,41.699081792297605],[-87.68236961373113,41.69908253983975],[-87.68266688303667,41.69908000996708],[-87.68302212465082,41.699076985742444],[-87.68327180749546,41.699074693535906],[-87.68354624720811,41.69907207423502],[-87.68387954165995,41.69906823717927],[-87.68414259952527,41.69906520826564],[-87.68433599936279,41.69906306232209],[-87.68463563941147,41.69905970454648],[-87.68482925919626,41.69905753157092],[-87.68509509371178,41.69905348070902],[-87.6852576423504,41.699051003306835],[-87.68538783829429,41.699049018921485],[-87.68556508423066,41.699047411024786],[-87.68575851648397,41.699045674519404],[-87.68594389154437,41.69904402951587],[-87.68615417125281,41.699042071379054],[-87.68621155109206,41.699041536899685],[-87.68630666206103,41.69904065087314],[-87.68639107196104,41.699039864795566],[-87.68646065176671,41.6990392163729],[-87.68663800905024,41.699037564087455],[-87.68681540965679,41.69903513183277],[-87.68711399509232,41.69903102069132],[-87.68734032133099,41.69902814920898],[-87.68754184714813,41.69902622494764],[-87.68780888977504,41.699023674373585],[-87.68793040138375,41.699022271168474],[-87.68807410921966,41.69902031461574],[-87.68827575342225,41.69901756890213],[-87.68842903470303,41.69901757844148],[-87.68863033510631,41.69901629290539],[-87.68877408263089,41.69901402559031],[-87.68906003878989,41.6990095095109],[-87.68919635331505,41.699007199721336],[-87.68944765504854,41.699004052425586],[-87.6895999243348,41.699002762152325],[-87.68974010875348,41.69900157414684],[-87.68984191478746,41.69900068975659],[-87.69000342706606,41.69899782304063],[-87.69002120151306,41.69899750759887],[-87.69014633498503,41.69899528612709],[-87.69045037531964,41.69899125173222],[-87.69072949293762,41.69898949218636],[-87.6912379690734,41.69898185071092],[-87.69128453110305,41.698981328449726],[-87.69135882094398,41.69898049535506],[-87.69602076977927,41.69892817508599],[-87.69614814752514,41.69894057556605],[-87.6963009301957,41.702285861546095],[-87.69631248484181,41.70258096178059],[-87.69631721263883,41.702704825927626],[-87.69643643133804,41.70626199020595],[-87.69645961375069,41.70714491311911],[-87.69630527246268,41.70715149340508],[-87.69585002205022,41.70715497894405],[-87.6955344576387,41.70715764660162],[-87.69511589551144,41.707161936328255],[-87.69481771883312,41.70716535722226],[-87.6945197600505,41.70716899782561],[-87.69414140522503,41.707173644447565],[-87.69398127369628,41.707175525417796],[-87.6939812568482,41.7071755255985],[-87.69369206982502,41.70717893815065],[-87.69338506110006,41.70718299252247],[-87.6930357882319,41.70718727657868],[-87.69283932357216,41.70718952981741],[-87.692646962193,41.707191586050804],[-87.69234801875628,41.707194748996685],[-87.69207530218549,41.70719745376722],[-87.69206826376387,41.70719752453862],[-87.69206127479062,41.707197594487795],[-87.69182973644183,41.70719996120405],[-87.69151939157359,41.707203132717844],[-87.69151082789178,41.70707366180094],[-87.6915037029145,41.70686582143555],[-87.69150147018759,41.70679356697974],[-87.69149627804978,41.70662554142001],[-87.69149535603265,41.7065415049191],[-87.6914946110121,41.706406534659656],[-87.69148523416723,41.70636229447373]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"20199335.5566","perimeter":"0.0","tract_cent":"1169816.30242459","census_t_1":"17031730200","tract_numa":"113","tract_comm":"73","objectid":"2","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1843710.10211415","census_tra":"730200","tract_ce_3":"41.72663578","tract_crea":"","tract_ce_2":"-87.65353787","shape_len":"19738.525071"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64651275537268,41.732526590727836],[-87.64655980183484,41.73243601703265],[-87.64673086418252,41.731984803843936],[-87.64685992359608,41.73164171239967],[-87.64687928295783,41.731589851020146],[-87.64687930672375,41.731589786670746],[-87.64695574866539,41.73138500538614],[-87.64714814487506,41.73086767336269],[-87.64726885956202,41.73054308065081],[-87.6474190214258,41.73013930073481],[-87.64744930682744,41.73005591712608],[-87.64752803786637,41.72984567854718],[-87.64760914271024,41.729629169590396],[-87.64767449189725,41.72945419781488],[-87.64775726627299,41.729228697345306],[-87.64782374510317,41.72904739284277],[-87.64789339261964,41.72885735310532],[-87.64795136678372,41.728700339040046],[-87.6475728391249,41.72865417210197],[-87.6474924489983,41.72863482513408],[-87.64724342406062,41.728927666348106],[-87.64698144796851,41.72914633313084],[-87.64671104491306,41.72933922099441],[-87.6464326745113,41.72950598959048],[-87.646102375575,41.729646718986764],[-87.64582437498227,41.72973561864391],[-87.64544295177008,41.72981772326676],[-87.64518311163768,41.729835377348415],[-87.64468120891429,41.72983545778872],[-87.64467358284392,41.72934036537466],[-87.6446635905748,41.72912685265391],[-87.64465746957892,41.728996790311875],[-87.64465350018894,41.72891224161036],[-87.64464608418002,41.72880396136548],[-87.64461542580007,41.728700618794846],[-87.64451753185419,41.7287492375755],[-87.64443766336285,41.728753149671675],[-87.64435316075088,41.728755332450476],[-87.64420027896486,41.72875930054424],[-87.6440201694545,41.72876400386352],[-87.64374429802945,41.72876869482483],[-87.6436837777026,41.728768697148446],[-87.6434149994753,41.7287688976545],[-87.64340798174919,41.72858154419517],[-87.64339560740099,41.72812452736855],[-87.64338500441943,41.72777097992569],[-87.64337274635085,41.72730318652822],[-87.6433627911872,41.72693790136685],[-87.64336056048722,41.72685604724942],[-87.64335135565825,41.726613333495884],[-87.64333677405858,41.72609379678068],[-87.6433202154301,41.72549018807449],[-87.64331412131082,41.725253058415895],[-87.64331113947708,41.72511032203021],[-87.64330764893252,41.724943233907105],[-87.64330651053173,41.72488875155282],[-87.64329199904202,41.724362749213746],[-87.64327486453223,41.72381302154137],[-87.643260168938,41.723304260819745],[-87.64325988289552,41.723284297208096],[-87.64325630270258,41.72303436686361],[-87.64325522782661,41.72295936862535],[-87.64324308681157,41.72248079886915],[-87.64322351401402,41.72189010372706],[-87.64321492530235,41.721514619477105],[-87.64321361749532,41.72145745816634],[-87.64355755276708,41.721455619461565],[-87.64385273734716,41.721453026451144],[-87.64434992820507,41.72144509777145],[-87.64442631142093,41.72144434054791],[-87.64485291250753,41.72144011117864],[-87.64519084552676,41.721434861323644],[-87.64558898673798,41.72142851608],[-87.64564174580131,41.72142810980675],[-87.64617352253327,41.72142401177181],[-87.64677749104047,41.72141816583381],[-87.64685469475009,41.72141671758532],[-87.6469837052705,41.721414297414995],[-87.6471892391167,41.721410441578115],[-87.64746860080416,41.721405650605],[-87.64750387167412,41.72140504578565],[-87.64807422993853,41.721401348971504],[-87.6481466579611,41.721400879088925],[-87.6487253997881,41.72139341772142],[-87.64903224940957,41.7213894261373],[-87.64929253028255,41.72138627757916],[-87.64935463296295,41.721385526472375],[-87.64969063119501,41.721379524620396],[-87.65010622396342,41.72137544983017],[-87.6502111729141,41.7213742732399],[-87.65027350102766,41.7213735745698],[-87.65063641635547,41.72136939328502],[-87.65106950561278,41.721362260796184],[-87.65153753900962,41.72135703741459],[-87.65172900598138,41.721354223120954],[-87.65199587946015,41.721350299341275],[-87.65236101094422,41.72134373544689],[-87.65271447637055,41.721338555508275],[-87.65294696050009,41.72133577053915],[-87.65324271761864,41.72133222701763],[-87.65376513346811,41.72132586164723],[-87.6541599116563,41.72132271883079],[-87.6547186445433,41.72131840356328],[-87.65531293420132,41.72130954579226],[-87.65538356178186,41.72130864989932],[-87.65582175821102,41.72130309087086],[-87.65621210052687,41.7212995723575],[-87.65659411973252,41.72129601200809],[-87.65727829794704,41.72128621042222],[-87.65770203122365,41.72127957748595],[-87.65781184899498,41.721277857798604],[-87.65805515231753,41.72127404812659],[-87.65846688343667,41.721267738116396],[-87.65903053944781,41.721259325015865],[-87.65912198214825,41.721258144455845],[-87.65964573661357,41.72125137873905],[-87.6601681595162,41.721244257049655],[-87.66024959587808,41.72124356775734],[-87.66066473740699,41.72124005313634],[-87.66082843510495,41.7212386668176],[-87.66146420838655,41.72123095032632],[-87.66151592482134,41.721230322373316],[-87.6621121393425,41.72122289572362],[-87.66268341412585,41.721215175251416],[-87.66268545832118,41.72127585175071],[-87.6626910979981,41.72144321491707],[-87.66269387001293,41.721634592528574],[-87.66269429832144,41.72167661056658],[-87.66269764235477,41.72200454886243],[-87.66270356768105,41.72242814174264],[-87.66271463917272,41.722814798643284],[-87.66271758338713,41.72303323592801],[-87.66272096690919,41.72328425138583],[-87.66272608625991,41.72336886117881],[-87.66272781540434,41.72346407170004],[-87.66274205832693,41.723928411536946],[-87.66275314878783,41.724289957654946],[-87.66275658590375,41.72443944401049],[-87.66276595150543,41.7248467865467],[-87.6627706803017,41.72505243164883],[-87.66277756289738,41.725387498186436],[-87.66278605233674,41.72577589590575],[-87.66280633078645,41.726667070350445],[-87.66281446476243,41.727024534432424],[-87.66283018676744,41.727682768338674],[-87.66285157754133,41.72848216640079],[-87.66286949675441,41.729151810927654],[-87.66287832208855,41.72943046541737],[-87.66290085347016,41.730230674794576],[-87.66290274226134,41.73029780684177],[-87.6629036043534,41.730328454079356],[-87.6629171680002,41.73081047924502],[-87.66294896200426,41.73181305256028],[-87.66295431528435,41.73198186466085],[-87.66295515629956,41.7320083763579],[-87.66295692641751,41.73206420330896],[-87.66295751061331,41.73208261091719],[-87.66295760776295,41.7320856702975],[-87.66295810178059,41.732101264182205],[-87.66296089097114,41.73218920556312],[-87.6627311239582,41.73219687853664],[-87.66262627662708,41.732207214203434],[-87.66251412218567,41.73221750684095],[-87.662399531891,41.73222778542029],[-87.66224844449759,41.73223420134457],[-87.66211200996338,41.73223705355102],[-87.662014563812,41.73223830896744],[-87.66189515950921,41.73224308510756],[-87.66174640399642,41.73224861715557],[-87.66168316128154,41.73225096903804],[-87.66140056747987,41.73225479065826],[-87.66112773484456,41.73225684399287],[-87.66079882499352,41.73226404200991],[-87.66052895425445,41.732278113244675],[-87.66045275121074,41.732282086469475],[-87.66020182066414,41.73228609055651],[-87.65995336365789,41.73228645920153],[-87.65971706594436,41.73228872328742],[-87.65940288405255,41.73228505657663],[-87.65931421830841,41.732286012123666],[-87.65907401208763,41.732288601036785],[-87.65880117967434,41.73229064884751],[-87.65854048741171,41.73229641642091],[-87.65818482248989,41.732299800987015],[-87.65809856097306,41.73232924994493],[-87.65731456751261,41.73234150203166],[-87.65711894112778,41.73234723916298],[-87.65688524093957,41.73235024324714],[-87.65628028883363,41.73235801758218],[-87.65566775218885,41.73236588588203],[-87.65445303945489,41.732382827057734],[-87.65323859154097,41.73239975174285],[-87.6528040342301,41.73240564288057],[-87.65263423573582,41.73240794483277],[-87.65255948592751,41.73240895757092],[-87.65253028923016,41.73240939519536],[-87.65202582538265,41.73241695348152],[-87.65187789689087,41.73241916938324],[-87.65159615638746,41.73242338935667],[-87.65144914948117,41.73242534370125],[-87.6511847062486,41.7324287961884],[-87.65081555990297,41.73243511421355],[-87.650399037378,41.732442241718594],[-87.65020717806789,41.73244512001457],[-87.64992737531023,41.73244931695372],[-87.64960269953146,41.73245289520822],[-87.64934357475391,41.732455750224055],[-87.64908068666433,41.73245767058394],[-87.64899726408291,41.73245768558817],[-87.64882140847615,41.7324577177219],[-87.64862013441352,41.732456985041196],[-87.64839673647359,41.73244750243651],[-87.64827335528808,41.732440976949526],[-87.64806574892849,41.732487956605674],[-87.64782339721393,41.73252586446915],[-87.64779747281204,41.7325261310553],[-87.64750242459519,41.7325291633177],[-87.64723441040475,41.732527288871765],[-87.64717135772297,41.73252723701582],[-87.64704673906583,41.73252713439571],[-87.64695760677778,41.73252706085111],[-87.64651275537268,41.732526590727836]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3170252.61205","perimeter":"0.0","tract_cent":"1166814.1830406","census_t_1":"17031730300","tract_numa":"22","tract_comm":"73","objectid":"3","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1843978.09707551","census_tra":"730300","tract_ce_3":"41.72743573","tract_crea":"","tract_ce_2":"-87.66452735","shape_len":"9848.21406776"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66332792156787,41.72120307722428],[-87.66344522717199,41.72120162660872],[-87.66441444244973,41.723022626607396],[-87.66536214972447,41.72480337097818],[-87.66537700101595,41.724831223501766],[-87.66708438610303,41.72803314093893],[-87.66716132932197,41.728164970954886],[-87.66731972340914,41.72843650954051],[-87.66731972191053,41.728436548226696],[-87.66730931845184,41.72868184468326],[-87.66727541922808,41.72876510094599],[-87.66724822389635,41.72884702472342],[-87.66724812937566,41.728847308761154],[-87.66724702338679,41.72885064136027],[-87.66726347237011,41.72887188167153],[-87.6678930900866,41.72987874721692],[-87.66805725338607,41.730141267097636],[-87.66811663188152,41.73020061394394],[-87.6680948420077,41.730201524597554],[-87.66803993849689,41.73020381958744],[-87.66799139334262,41.73020416969753],[-87.6678911138939,41.73020852877099],[-87.66762690645739,41.73021138929194],[-87.6674539961745,41.73021322996684],[-87.66706771538459,41.7302173417105],[-87.6667351708265,41.73022086816168],[-87.6665399984551,41.73022293754135],[-87.66641819873257,41.73022422881303],[-87.66617605862866,41.730226795292154],[-87.66585263497893,41.73023089960324],[-87.66533097017856,41.73023722264209],[-87.66533716829572,41.730464903254585],[-87.66535002529989,41.73087176793618],[-87.665354342237,41.73105623849101],[-87.66535791782256,41.73118206474336],[-87.6653618596087,41.73132077932979],[-87.6653726671864,41.73166733942688],[-87.66538724144911,41.732085580408075],[-87.66484101300648,41.73209384271251],[-87.6645196306998,41.73209806490422],[-87.66416525028241,41.732103236489436],[-87.66372922551037,41.73210959812678],[-87.66349170670397,41.732113592603106],[-87.66341925815657,41.73211531080389],[-87.66333345042219,41.732122851340684],[-87.66296089097114,41.73218920556312],[-87.66295810178059,41.732101264182205],[-87.66295760776295,41.7320856702975],[-87.66295751061331,41.73208261091719],[-87.66295692641751,41.73206420330896],[-87.66295515629956,41.7320083763579],[-87.66295431528435,41.73198186466085],[-87.66294896200426,41.73181305256028],[-87.6629171680002,41.73081047924502],[-87.6629036043534,41.730328454079356],[-87.66290274226134,41.73029780684177],[-87.66290085347016,41.730230674794576],[-87.66287832208855,41.72943046541737],[-87.66286949675441,41.729151810927654],[-87.66285157754133,41.72848216640079],[-87.66283018676744,41.727682768338674],[-87.66281446476243,41.727024534432424],[-87.66280633078645,41.726667070350445],[-87.66278605233674,41.72577589590575],[-87.66277756289738,41.725387498186436],[-87.6627706803017,41.72505243164883],[-87.66276595150543,41.7248467865467],[-87.66275658590375,41.72443944401049],[-87.66275314878783,41.724289957654946],[-87.66274205832693,41.723928411536946],[-87.66272781540434,41.72346407170004],[-87.66272608625991,41.72336886117881],[-87.66272096690919,41.72328425138583],[-87.66271758338713,41.72303323592801],[-87.66271463917272,41.722814798643284],[-87.66270356768105,41.72242814174264],[-87.66269764235477,41.72200454886243],[-87.66269429832144,41.72167661056658],[-87.66269387001293,41.721634592528574],[-87.6626910979981,41.72144321491707],[-87.66268545832118,41.72127585175071],[-87.66268341412585,41.721215175251416],[-87.66275108637625,41.721214260599716],[-87.66321543807169,41.72120525838724],[-87.66326342096943,41.72120432685629],[-87.66326359095787,41.72120432455436],[-87.66332792156787,41.72120307722428]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9690785.77117","perimeter":"0.0","tract_cent":"1157599.24855614","census_t_1":"17031740100","tract_numa":"45","tract_comm":"74","objectid":"4","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1832915.38233703","census_tra":"740100","tract_ce_3":"41.69726919","tract_crea":"","tract_ce_2":"-87.69858205","shape_len":"18058.3722532"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69645961375069,41.70714491311911],[-87.69643643133804,41.70626199020595],[-87.69631721263883,41.702704825927626],[-87.69631248484181,41.70258096178059],[-87.6963009301957,41.702285861546095],[-87.69614814752514,41.69894057556605],[-87.69602076977927,41.69892817508599],[-87.69601641221291,41.69880638734175],[-87.69601565045987,41.698785110146524],[-87.69600897177699,41.69859845215707],[-87.69600757930233,41.69855953912376],[-87.69600158139234,41.69839190477692],[-87.6959929669179,41.69815116526525],[-87.69599212176358,41.69812754421884],[-87.69598426272105,41.6979079103384],[-87.6959748733395,41.69764549587903],[-87.69596507223056,41.6973715699376],[-87.69596349728347,41.69732755581407],[-87.69595577105044,41.69711162062788],[-87.69595080868618,41.696972931802904],[-87.6959406211141,41.696688210493825],[-87.69593178756709,41.69644132677524],[-87.69592019229064,41.696117255131114],[-87.69591110803769,41.69586336425984],[-87.6959050072015,41.69569284578777],[-87.6958979542087,41.695495719548894],[-87.69588981935831,41.69526836120159],[-87.69588628078588,41.695169467041694],[-87.69587982852738,41.694989124076166],[-87.69586882252173,41.69468150982331],[-87.69585500503443,41.69429531019627],[-87.6958405239519,41.693890560643844],[-87.69582795360634,41.6935392025515],[-87.69581623868064,41.69321176140065],[-87.69580409768975,41.69287241513407],[-87.69579194938788,41.6925328558455],[-87.69578631824018,41.69237544847062],[-87.69578064334493,41.692216837731635],[-87.69577535968092,41.69206914749948],[-87.69577003121982,41.6919202116351],[-87.69576609932491,41.6918103082494],[-87.69576609907803,41.691810296172946],[-87.69576270237317,41.69171534634901],[-87.69576270210463,41.6917153364679],[-87.69576230113748,41.691715341378696],[-87.69575662111812,41.691626556935425],[-87.69589497291392,41.691625083656106],[-87.69590259884825,41.69162500245906],[-87.69591677453094,41.69162485165818],[-87.6957659365033,41.68807557664978],[-87.69605432522303,41.68807703978494],[-87.69605433555495,41.68807703160921],[-87.69605842346375,41.6880736320879],[-87.69605844812212,41.688073619051806],[-87.69608962981235,41.688057366268495],[-87.69614779236898,41.68803279816108],[-87.69621279328244,41.68802747720292],[-87.69624509081689,41.688023100373904],[-87.69642529140765,41.68801207897723],[-87.69650131362174,41.688000464694504],[-87.69658805605705,41.687987212110144],[-87.69660587466227,41.68798448416514],[-87.69678098340263,41.687981200750585],[-87.69709200902714,41.68796887176953],[-87.6974258895719,41.68795565300538],[-87.69764728660058,41.68795119732962],[-87.69766233650297,41.687950896092595],[-87.69798597030683,41.687944645078254],[-87.69826020548695,41.687946792021314],[-87.69843632915156,41.687948176518454],[-87.69881553155525,41.6879427241209],[-87.69886921062398,41.68794200507329],[-87.69890790334402,41.687941491427274],[-87.69903713221788,41.687939775454204],[-87.69916798559676,41.6879380158831],[-87.69936265161277,41.687935397668234],[-87.69947334738708,41.687933346247455],[-87.69947334707217,41.687933341031474],[-87.69947131350463,41.687887146719326],[-87.69946403684256,41.68772189824307],[-87.69945872975987,41.68757628182132],[-87.6994571570191,41.68753785817215],[-87.6994516720067,41.687403843552815],[-87.69944331481125,41.68719975588777],[-87.69944133683896,41.6871413004455],[-87.69943599420051,41.686983351851865],[-87.69942866137686,41.6867680468478],[-87.69942866139571,41.68676804492688],[-87.69942030409534,41.68658259157282],[-87.69941815835426,41.686521463584675],[-87.6994114450474,41.68632891117781],[-87.699397839237,41.68614850588502],[-87.699397803414,41.68614786625641],[-87.69939779438154,41.686147704839456],[-87.69939777789652,41.6861474075366],[-87.70021518656705,41.68614000470448],[-87.70021798531715,41.68613997923191],[-87.70062407886762,41.68613629967284],[-87.70062398983944,41.686134213759374],[-87.70062057992202,41.68605518601046],[-87.7006239909377,41.68613421376543],[-87.70062694370215,41.68620261867842],[-87.70063496293132,41.68641919117974],[-87.70064123751908,41.686594753369775],[-87.70065220319592,41.68690157621098],[-87.70066071631761,41.6871238047413],[-87.70067291907587,41.68744775876109],[-87.70068181158575,41.68769106587678],[-87.70069005284185,41.68792237663819],[-87.70069470383335,41.6880530330178],[-87.70070357940799,41.6882868717724],[-87.70071422419684,41.68856808780456],[-87.70072218933686,41.688799424178036],[-87.7007329214427,41.689111130531465],[-87.70073913060422,41.68928029824294],[-87.70074072344087,41.68932377731922],[-87.70074750746299,41.6895207480535],[-87.70075617892118,41.689743801198986],[-87.70076730519925,41.690029986782626],[-87.70077662259722,41.69029725418609],[-87.7007867815251,41.690601958965935],[-87.70080111624725,41.690999911836435],[-87.7008073764526,41.69111946216129],[-87.7008194987377,41.691350958798814],[-87.7008277065439,41.691567788180734],[-87.70083985911127,41.69188882333332],[-87.70084276253802,41.692023938877824],[-87.70084589475279,41.69216971221063],[-87.70085713777875,41.69245724330871],[-87.70087173471028,41.692843451729296],[-87.70088523262537,41.69319979570064],[-87.70089133951319,41.69339352480224],[-87.70089629469457,41.693550719902646],[-87.70090174651796,41.69377910607087],[-87.70090843938858,41.694060217743186],[-87.70091772640463,41.69433815997379],[-87.70093237301515,41.69472683871192],[-87.70094191164236,41.694986587626985],[-87.70095112925992,41.6952188955311],[-87.7009595899382,41.695432117625984],[-87.70096442975974,41.695629599416016],[-87.70097464392266,41.695921296059716],[-87.70097632968273,41.695966118946444],[-87.70098037259473,41.69607361070375],[-87.70098296303634,41.69614248030915],[-87.70098803825762,41.69628087757618],[-87.70099614818004,41.696484661580705],[-87.70100417405033,41.69668207825978],[-87.70100974957576,41.69681564823786],[-87.70101819356887,41.69704350488852],[-87.70102573637583,41.69724703573524],[-87.70103202286313,41.69745756073204],[-87.70103960702438,41.697700091791866],[-87.70104682508858,41.69790897529692],[-87.70105683735225,41.69815783166318],[-87.70106391233102,41.69833647180952],[-87.70107104707441,41.698512752152105],[-87.70107642400593,41.69870400687749],[-87.70108253142959,41.69887141598803],[-87.70109143499789,41.69911546500006],[-87.7010986212498,41.69930519283235],[-87.70110701355694,41.69955124100318],[-87.70111662913394,41.699818207708006],[-87.70112722835209,41.70010439013922],[-87.70113452099412,41.70030196731339],[-87.70114783688604,41.70066167215443],[-87.70115548597,41.700868293295095],[-87.70116446537968,41.70110303797743],[-87.70117324017889,41.70135120130753],[-87.70117718907056,41.70147145221316],[-87.7011820981429,41.70163795093877],[-87.70118785438633,41.70183318637542],[-87.70119675835065,41.70206817759136],[-87.70120248721129,41.7022197785392],[-87.70121111230907,41.70237112098081],[-87.70121408639346,41.70244576696502],[-87.70121722917713,41.70252465057503],[-87.70122713208842,41.70277319876372],[-87.70123457383798,41.70300469659548],[-87.70123734765467,41.703091158285055],[-87.70124320359012,41.703263451885356],[-87.70124823123324,41.703404483543046],[-87.70125572800963,41.70361493263299],[-87.70126133726434,41.70377506774892],[-87.70126745490138,41.70393564474932],[-87.701274445836,41.704115491749654],[-87.70128151822287,41.704353284085784],[-87.70128640215133,41.70451749216835],[-87.70129127709285,41.70463300013215],[-87.70129855360705,41.70480609762758],[-87.7013059393065,41.70499426236559],[-87.70131092279523,41.70527440355798],[-87.70131134816641,41.70546650900401],[-87.70131217742305,41.705677278108645],[-87.701315155512,41.70598273840278],[-87.70132173462737,41.70611518191148],[-87.70132488614075,41.70617824280971],[-87.70132488683284,41.70617824693001],[-87.70132488680596,41.706178249674196],[-87.70132812758972,41.70624371317438],[-87.70134721499704,41.70662807890238],[-87.70136234395045,41.706870733382935],[-87.70137474308379,41.70705169486203],[-87.70137474442498,41.70705170749333],[-87.7013747352511,41.70705170936391],[-87.70120153843935,41.70708357730562],[-87.69901838376711,41.70710859564394],[-87.69878097088127,41.70711134735806],[-87.69870278774819,41.70711223975367],[-87.69870270204044,41.70711224092694],[-87.69870260058865,41.70711224173883],[-87.69856062557315,41.70711386216878],[-87.69843994324846,41.707118187966145],[-87.69843987620898,41.70711819006565],[-87.69843987071322,41.70711819030973],[-87.69843982640533,41.70711818979049],[-87.69843981871506,41.70711818974801],[-87.69832262729349,41.70711666458883],[-87.6980120147197,41.70712020178775],[-87.69801199933646,41.70712020197713],[-87.69801196856999,41.70712020235591],[-87.69801196344314,41.707120202327566],[-87.69801190923965,41.70712020257676],[-87.69801166750499,41.70712020535681],[-87.69786516290276,41.707121873707685],[-87.69740777132176,41.70712708278025],[-87.6972863735971,41.70712361280578],[-87.69728632966083,41.707123611739306],[-87.69728632013414,41.70712361223544],[-87.69728626773733,41.70712361496419],[-87.69716610894554,41.70712991631705],[-87.69699537642805,41.70713188276213],[-87.69699531086685,41.70713188349683],[-87.69699498672014,41.707131887464975],[-87.69668007587099,41.707135513346905],[-87.69645961375069,41.70714491311911]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8038189.85397","perimeter":"0.0","tract_cent":"1165053.80574048","census_t_1":"17031710500","tract_numa":"33","tract_comm":"71","objectid":"5","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1851288.62298081","census_tra":"710500","tract_ce_3":"41.74753426","tract_crea":"","tract_ce_2":"-87.67076974","shape_len":"12094.2889266"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66338805460082,41.748478194296965],[-87.6633496289828,41.74694000506063],[-87.66334475088242,41.746714888192315],[-87.66334076379856,41.746530886797004],[-87.66332202623177,41.745774336365606],[-87.66330657481171,41.745149284835925],[-87.6633034672394,41.74493713163438],[-87.66330237910246,41.74489404567535],[-87.66349156592953,41.74489066949805],[-87.66390547840214,41.74488582776199],[-87.66428390035489,41.74488139974139],[-87.6645133900657,41.74487770741918],[-87.66471724867944,41.74487442697541],[-87.6651195782288,41.74487015261093],[-87.66556183256127,41.74486545216666],[-87.66573039428455,41.74486356032189],[-87.6659323437906,41.7448612932753],[-87.66633496597119,41.74485468231912],[-87.66672500909307,41.744848276343376],[-87.66694323129512,41.74484565213541],[-87.66719916493233,41.74484257379776],[-87.66754680486596,41.74483726966337],[-87.66793043199041,41.744831415462166],[-87.66815683747751,41.74482988109813],[-87.66840430540732,41.744828203628316],[-87.6687612737861,41.744823304367536],[-87.66914417268693,41.744818047844625],[-87.66936535497439,41.74481508460072],[-87.66956775951932,41.74481237250789],[-87.66997147282844,41.74480699224455],[-87.67041251318464,41.74480111295877],[-87.67057922359052,41.744798986517516],[-87.67075176843134,41.74479678535376],[-87.67099507704218,41.744793760774705],[-87.67118284219062,41.744791416178295],[-87.67162616245515,41.74478587990326],[-87.67178924625105,41.74478270938819],[-87.67195286953799,41.74477952802546],[-87.67239577675115,41.74477452154323],[-87.67285862332727,41.7447692876782],[-87.67300346958648,41.74478155437306],[-87.67312804973285,41.74479210450641],[-87.67361262153517,41.74478520424181],[-87.67435300789931,41.744774657289554],[-87.67535394224204,41.744762363466656],[-87.67812954647647,41.74473741677347],[-87.67813214305328,41.74481811429415],[-87.6781372288095,41.74499548060319],[-87.6781413892403,41.745148527045124],[-87.67814512188849,41.745307608525025],[-87.6781484154045,41.74546663261022],[-87.67815094632998,41.74562137121952],[-87.67815176920847,41.74570622996399],[-87.67814683350733,41.74574473192537],[-87.67813644777061,41.74587963784401],[-87.67814043896877,41.745962868066044],[-87.67814815709978,41.746097547896774],[-87.6781508914212,41.74618903131937],[-87.6781541225621,41.746303734429986],[-87.67815644406362,41.74638536342507],[-87.67815813073597,41.746457383716816],[-87.67815804537042,41.746501786152805],[-87.67815604305989,41.74656255761568],[-87.67815359599835,41.74658979821939],[-87.67814862683133,41.74662080802015],[-87.67814165942625,41.74665372744224],[-87.67813288285632,41.74669154886035],[-87.6781255781175,41.746725207320864],[-87.67812061105732,41.74675964751798],[-87.67811752355817,41.746803813287016],[-87.67811698327338,41.74686415756145],[-87.67811626925273,41.74693438035683],[-87.67811568218177,41.74700649744846],[-87.67811685906204,41.74709978321992],[-87.67811772447534,41.747198473502166],[-87.67811846574158,41.747273369917366],[-87.67812211419292,41.747332612906824],[-87.67812507685987,41.747372806482055],[-87.67813457157858,41.747419266886595],[-87.67813665492753,41.747448416739246],[-87.67824187818981,41.74744702791774],[-87.67824235944715,41.7474899845819],[-87.67824253465412,41.747517771981016],[-87.67824333375083,41.7475743779039],[-87.67824172720412,41.747642290383645],[-87.67823364773135,41.74780621675764],[-87.67821961366175,41.747970109175135],[-87.67821707584548,41.747994450443045],[-87.67821063736615,41.748087033868444],[-87.67821015067616,41.748179994815445],[-87.6782148580384,41.748347829525265],[-87.6782155368772,41.74837109826953],[-87.67823945985734,41.74926210541053],[-87.6782637104385,41.75016624853396],[-87.67811624604578,41.750168053202074],[-87.67804036498148,41.7501689816298],[-87.67796408257875,41.750169915402225],[-87.67702100724325,41.75018145172511],[-87.67678244100091,41.75018463441219],[-87.67662780725865,41.75018669697793],[-87.6763014868258,41.75019032659398],[-87.67577061494796,41.75019622945646],[-87.67557971753024,41.750199887996814],[-87.6753957183696,41.75020341392824],[-87.67453028584008,41.75021604591837],[-87.67435395936185,41.75021784766456],[-87.67415872188961,41.75021984252106],[-87.67338270491966,41.75022910934439],[-87.67313427594465,41.7502311844191],[-87.67290966391931,41.75023305995518],[-87.67210914633475,41.75024426301714],[-87.67192056102647,41.7502463121115],[-87.67173270506524,41.750248352746645],[-87.67093889301088,41.75025960081022],[-87.67070800956692,41.75026207229061],[-87.67051066640971,41.750264005168866],[-87.66975099410392,41.750273122203616],[-87.66949548618399,41.750277365101454],[-87.66928751546533,41.75028081794024],[-87.66855601845381,41.750290528997596],[-87.66829100173024,41.750292597515426],[-87.66808155045717,41.75029423192633],[-87.66734021554896,41.75030544253479],[-87.66707871839384,41.75031008854621],[-87.66686738491966,41.7503138427041],[-87.66608376469026,41.750324552929634],[-87.66586376117154,41.750325020450724],[-87.66564102483734,41.75032549362392],[-87.6648481741946,41.750335730134424],[-87.66465086305502,41.75033870859292],[-87.66444532523025,41.750341810613456],[-87.66404575525891,41.75034543067162],[-87.66370407294666,41.750348525017934],[-87.66343735876742,41.75035707672638],[-87.6634308533283,41.750198630018325],[-87.66342053430226,41.74965086113692],[-87.66340467377385,41.74870903227846],[-87.66339159872774,41.74852742258731],[-87.66338805460082,41.748478194296965]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"882336.109774","perimeter":"0.0","tract_cent":"1172519.95496059","census_t_1":"17031601200","tract_numa":"2","tract_comm":"60","objectid":"37","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1882355.10264247","census_tra":"601200","tract_ce_3":"41.83262306","tract_crea":"","tract_ce_2":"-87.64249685","shape_len":"3987.7210951"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6432732880789,41.830790161604774],[-87.64367331037944,41.8307814347812],[-87.64367832814499,41.83108173026176],[-87.64368383230828,41.831300481385014],[-87.64368928977544,41.83154409527644],[-87.6436943634615,41.83176877141322],[-87.64369971359744,41.83200533187517],[-87.64370576010599,41.83225899328826],[-87.64371151740495,41.83250203264296],[-87.64371396530616,41.832609979059086],[-87.64372040812422,41.832894104453224],[-87.64372460067855,41.83303683146228],[-87.64372872213639,41.833203241056395],[-87.64373425415555,41.83342967620957],[-87.64373793723163,41.83361641816978],[-87.64374265284445,41.83387789267774],[-87.64374817853981,41.834081028951445],[-87.64375392348197,41.83425000042879],[-87.64375687319678,41.83443205020513],[-87.64360231037251,41.83443369682865],[-87.6433243402405,41.83443779023795],[-87.64314416835019,41.83444013202203],[-87.64280441748916,41.83444407849489],[-87.64253637074951,41.83444761521437],[-87.64217000899669,41.834453654724555],[-87.64192512242867,41.8344563422685],[-87.64168271928114,41.834458899347524],[-87.6413248130253,41.83446374145559],[-87.64132357118925,41.83436724450945],[-87.64132257944003,41.83429018038792],[-87.64131684241781,41.83405290435577],[-87.64131031944923,41.83381024454353],[-87.64130509734638,41.83363073811107],[-87.64130040424521,41.83345669594887],[-87.64129561236041,41.833271319368386],[-87.64129050035172,41.83307485401887],[-87.64128891783999,41.83301342781308],[-87.64128242532597,41.83278553229089],[-87.64127572866663,41.83254957891292],[-87.64127433945544,41.83250062875122],[-87.64126826792008,41.832280803887585],[-87.6412614213626,41.831996676184225],[-87.64125624939697,41.83178187872892],[-87.64125091698232,41.83154457731254],[-87.64124550024208,41.83131166620494],[-87.64124484232123,41.83127167799995],[-87.64124122064582,41.831051538538176],[-87.64123527964011,41.830815423612925],[-87.64165010438406,41.830811518381964],[-87.64184104088498,41.830809251140685],[-87.64194452751235,41.83080802200436],[-87.64220816058102,41.83080494334914],[-87.64245421486714,41.830800297307356],[-87.64258969563906,41.83079773915454],[-87.64306129397441,41.8307920319007],[-87.6432732880789,41.830790161604774]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11845174.4386","perimeter":"0.0","tract_cent":"1165328.30868512","census_t_1":"17031711200","tract_numa":"56","tract_comm":"71","objectid":"6","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1848758.35148806","census_tra":"711200","tract_ce_3":"41.74058502","tract_crea":"","tract_ce_2":"-87.66983536","shape_len":"13762.5188737"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66330237910246,41.74489404567535],[-87.6632926698463,41.744509477872214],[-87.66327941758269,41.74403951995413],[-87.66327670887325,41.743944084519306],[-87.66325400596213,41.743220085574535],[-87.66325155885002,41.74307676371909],[-87.6632494737065,41.74295462922027],[-87.66323205497011,41.74216301399172],[-87.66320922807226,41.74136996723893],[-87.66320489376903,41.74125155102528],[-87.66320069606883,41.74113684316961],[-87.66317863847223,41.74028043461396],[-87.66316109771844,41.73959930428232],[-87.66315679106984,41.73943204411197],[-87.66315305887346,41.73928706423702],[-87.66313249863661,41.73842413267243],[-87.66311664477738,41.73775706256186],[-87.6631108997599,41.73761299683433],[-87.66310618240547,41.737494700154116],[-87.66309616434471,41.73709259992596],[-87.66308487331321,41.73663692325653],[-87.6630768356033,41.73629196096336],[-87.66306513463402,41.73578978493854],[-87.663494831337,41.73578330774188],[-87.6636974336297,41.73578064661521],[-87.66427914611918,41.735773752052125],[-87.66457298324968,41.735770267912976],[-87.66498510741998,41.735765420838575],[-87.6654963423717,41.73575803934551],[-87.66644445652044,41.73574434380767],[-87.66671027529591,41.73574077802788],[-87.66720704637436,41.73573411238431],[-87.66792458257403,41.73572492129327],[-87.66825882190606,41.73572063833608],[-87.6691400644613,41.7357093321213],[-87.66966237325946,41.73570262784146],[-87.67035757217653,41.7356935741005],[-87.67094478241273,41.73568592309501],[-87.67108868224378,41.73568404803109],[-87.67115453047838,41.735683189843236],[-87.6715816814357,41.73567729590147],[-87.67262296164294,41.73565141293076],[-87.6727850225177,41.735654382069384],[-87.67278537987222,41.7356681715571],[-87.67279134817527,41.73589824249223],[-87.67290738574631,41.73590177730556],[-87.6729805185372,41.73591591919543],[-87.67301549971107,41.735943563367],[-87.67304354905664,41.735977342400446],[-87.67308789092243,41.73603008192975],[-87.67316978387623,41.73612797588078],[-87.67327520606304,41.73625379056555],[-87.67340417566939,41.73640581192397],[-87.67352997490137,41.73655438426302],[-87.67402760981126,41.73715584412048],[-87.6740719434909,41.73720961260664],[-87.6743551443092,41.737552217790466],[-87.67439803638231,41.737600897882096],[-87.67519944748636,41.738548165775896],[-87.67525961396724,41.73861961552425],[-87.67529902019265,41.73867527632434],[-87.67609101024624,41.73929759519447],[-87.67688881542158,41.74011138472636],[-87.67719330659563,41.74065984603137],[-87.67730038778436,41.74089235181685],[-87.67734798403305,41.74100063912238],[-87.67741656261177,41.74115666081782],[-87.6774445040336,41.741223095720215],[-87.67748056770708,41.74130870428018],[-87.6775237505401,41.74141488146069],[-87.67757079232595,41.74153074034922],[-87.6776094139086,41.74163507994179],[-87.67763940500419,41.74172331604734],[-87.67767026168305,41.74182379671187],[-87.67771229908672,41.741963392714155],[-87.67776501864849,41.74213713399141],[-87.67780472400604,41.742264641678226],[-87.67785135125999,41.74241419821198],[-87.67789020231255,41.74254290848688],[-87.67790337925267,41.74260193145425],[-87.67792541894113,41.742711939386055],[-87.67793951367047,41.74278232957899],[-87.67795880254573,41.7428786614541],[-87.67797840603001,41.7429765632181],[-87.67797936535183,41.74298135421902],[-87.67802327846594,41.7432176700167],[-87.67804259883204,41.74335013858461],[-87.67805841981968,41.74347709829377],[-87.67806960672807,41.743587757808804],[-87.67807846762379,41.74369653792468],[-87.67808665003494,41.74382156048651],[-87.67809379070833,41.74393378861796],[-87.67810012348161,41.744039919770685],[-87.67810266171664,41.74408483116242],[-87.67810878030507,41.7441966418128],[-87.67811370732792,41.74429590416805],[-87.67811734261845,41.744381657149205],[-87.67812172451241,41.74449485748786],[-87.67812543226066,41.74460956335043],[-87.67812954647647,41.74473741677347],[-87.67535394224204,41.744762363466656],[-87.67435300789931,41.744774657289554],[-87.67361262153517,41.74478520424181],[-87.67312804973285,41.74479210450641],[-87.67300346958648,41.74478155437306],[-87.67285862332727,41.7447692876782],[-87.67239577675115,41.74477452154323],[-87.67195286953799,41.74477952802546],[-87.67178924625105,41.74478270938819],[-87.67162616245515,41.74478587990326],[-87.67118284219062,41.744791416178295],[-87.67099507704218,41.744793760774705],[-87.67075176843134,41.74479678535376],[-87.67057922359052,41.744798986517516],[-87.67041251318464,41.74480111295877],[-87.66997147282844,41.74480699224455],[-87.66956775951932,41.74481237250789],[-87.66936535497439,41.74481508460072],[-87.66914417268693,41.744818047844625],[-87.6687612737861,41.744823304367536],[-87.66840430540732,41.744828203628316],[-87.66815683747751,41.74482988109813],[-87.66793043199041,41.744831415462166],[-87.66754680486596,41.74483726966337],[-87.66719916493233,41.74484257379776],[-87.66694323129512,41.74484565213541],[-87.66672500909307,41.744848276343376],[-87.66633496597119,41.74485468231912],[-87.6659323437906,41.7448612932753],[-87.66573039428455,41.74486356032189],[-87.66556183256127,41.74486545216666],[-87.6651195782288,41.74487015261093],[-87.66471724867944,41.74487442697541],[-87.6645133900657,41.74487770741918],[-87.66428390035489,41.74488139974139],[-87.66390547840214,41.74488582776199],[-87.66349156592953,41.74489066949805],[-87.66330237910246,41.74489404567535]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3757463.37024","perimeter":"0.0","tract_cent":"1166045.58905159","census_t_1":"17031711300","tract_numa":"20","tract_comm":"71","objectid":"7","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1846185.79267211","census_tra":"711300","tract_ce_3":"41.73351033","tract_crea":"","tract_ce_2":"-87.66728026","shape_len":"8553.67144808"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66306513463402,41.73578978493854],[-87.6630550556713,41.735357213298364],[-87.66305306820797,41.735288483820085],[-87.66301501006953,41.733972282640664],[-87.66298992344137,41.733104657153255],[-87.6629732309042,41.73257830998754],[-87.66296089097114,41.73218920556312],[-87.66333345042219,41.732122851340684],[-87.66341925815657,41.73211531080389],[-87.66349170670397,41.732113592603106],[-87.66372922551037,41.73210959812678],[-87.66416525028241,41.732103236489436],[-87.6645196306998,41.73209806490422],[-87.66484101300648,41.73209384271251],[-87.66538724144911,41.732085580408075],[-87.6653726671864,41.73166733942688],[-87.6653618596087,41.73132077932979],[-87.66535791782256,41.73118206474336],[-87.665354342237,41.73105623849101],[-87.66535002529989,41.73087176793618],[-87.66533716829572,41.730464903254585],[-87.66533097017856,41.73023722264209],[-87.66585263497893,41.73023089960324],[-87.66617605862866,41.730226795292154],[-87.66641819873257,41.73022422881303],[-87.6665399984551,41.73022293754135],[-87.6667351708265,41.73022086816168],[-87.66706771538459,41.7302173417105],[-87.6674539961745,41.73021322996684],[-87.66762690645739,41.73021138929194],[-87.6678911138939,41.73020852877099],[-87.66799139334262,41.73020416969753],[-87.66803993849689,41.73020381958744],[-87.6680948420077,41.730201524597554],[-87.66811663188152,41.73020061394394],[-87.66815062835565,41.730234428352546],[-87.66816830658372,41.730252025705624],[-87.66820094034361,41.73028480336649],[-87.66914919019527,41.73123296125266],[-87.66974811949271,41.73190706355063],[-87.67308255593431,41.735656724964834],[-87.6727850225177,41.735654382069384],[-87.67262296164294,41.73565141293076],[-87.6715816814357,41.73567729590147],[-87.67115453047838,41.735683189843236],[-87.67108868224378,41.73568404803109],[-87.67094478241273,41.73568592309501],[-87.67035757217653,41.7356935741005],[-87.66966237325946,41.73570262784146],[-87.6691400644613,41.7357093321213],[-87.66825882190606,41.73572063833608],[-87.66792458257403,41.73572492129327],[-87.66720704637436,41.73573411238431],[-87.66671027529591,41.73574077802788],[-87.66644445652044,41.73574434380767],[-87.6654963423717,41.73575803934551],[-87.66498510741998,41.735765420838575],[-87.66457298324968,41.735770267912976],[-87.66427914611918,41.735773752052125],[-87.6636974336297,41.73578064661521],[-87.663494831337,41.73578330774188],[-87.66306513463402,41.73578978493854]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"17996571.0532","perimeter":"0.0","tract_cent":"1166429.86748929","census_t_1":"17031720200","tract_numa":"56","tract_comm":"72","objectid":"8","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1838752.2573972","census_tra":"720200","tract_ce_3":"41.71310339","tract_crea":"","tract_ce_2":"-87.66608353","shape_len":"18245.0260748"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66208354218533,41.70670107920429],[-87.6622307038326,41.70669977920317],[-87.66227376533962,41.70670035834446],[-87.6624545312561,41.70669688565753],[-87.66286633965126,41.70668693985752],[-87.66319384555874,41.70668036994959],[-87.66359541719126,41.70667225515075],[-87.6640425446487,41.706664321952545],[-87.66451523250012,41.70666004851885],[-87.66483919533401,41.70665672783098],[-87.66495415785668,41.70665554933145],[-87.6654930387799,41.706642573127695],[-87.66587462579716,41.70663688644351],[-87.66631527910926,41.70663167856757],[-87.6668227679598,41.70661933720878],[-87.66710466590118,41.706614970295036],[-87.66750338690179,41.70660879271858],[-87.66785793519021,41.70660420517096],[-87.66820500839182,41.706599984913204],[-87.66842434919498,41.70659529904626],[-87.66860495626062,41.7065929683809],[-87.66883980120711,41.70658992743663],[-87.6688408337174,41.70658991419674],[-87.6689824692878,41.706588098550476],[-87.66911026981198,41.706586388005036],[-87.66938053228408,41.70658276990461],[-87.66954485073863,41.70657960268125],[-87.66983862664809,41.70657306625681],[-87.67018424845826,41.70656754180628],[-87.67042832628721,41.706564723787714],[-87.67069685666672,41.70656289699456],[-87.67103087354253,41.70656062371602],[-87.67128553857513,41.70655385817542],[-87.67138773587314,41.70655171437554],[-87.67155011663603,41.70654824716372],[-87.67173242837632,41.70654397265203],[-87.67208109215039,41.70653819024133],[-87.67209017903808,41.70671639961485],[-87.67211011837207,41.7067861928245],[-87.67212582241464,41.70681191520352],[-87.6721642281534,41.70687731395664],[-87.67222789414782,41.70696862725525],[-87.67229791545863,41.707040163031195],[-87.67238199005858,41.7071126580529],[-87.67251041437774,41.70720308097338],[-87.67262379508206,41.7072747835486],[-87.67277382762633,41.707365138579284],[-87.672952047182,41.70747105107401],[-87.67307737864914,41.7075488868394],[-87.67316794487172,41.707624190075954],[-87.6732656332943,41.7077192933061],[-87.67335412270609,41.707825787465325],[-87.67343045720628,41.7079284245845],[-87.67350583635773,41.70803135804204],[-87.67352462707773,41.70807029816204],[-87.67355973833727,41.70814305976166],[-87.67359202716796,41.70822667268085],[-87.67361366807289,41.70828788564006],[-87.67362476619417,41.708329663397095],[-87.67364230385938,41.70839568253484],[-87.67366911607125,41.708531406199995],[-87.6736864789996,41.708652860001855],[-87.67369897847901,41.70875567934629],[-87.67371051753459,41.708887966969],[-87.67371453673331,41.70901595771722],[-87.67371753528685,41.709111450600574],[-87.67371533729343,41.70922615083412],[-87.67370641472044,41.7093466304377],[-87.67368708608696,41.709496249937565],[-87.67366654700331,41.70960667350151],[-87.6736418126201,41.70971043170604],[-87.67363668337009,41.70973350948781],[-87.67361285506985,41.70982887524701],[-87.67360147628474,41.70990296161582],[-87.67360097150333,41.709977439730515],[-87.67361581819792,41.71015165849569],[-87.6734544775703,41.710156324523616],[-87.6732708534982,41.710162556130406],[-87.67306440616484,41.710169561937086],[-87.67272711638309,41.7101750057007],[-87.672479745068,41.710179812997794],[-87.6723428144617,41.71018270284904],[-87.6720619693826,41.71018751703587],[-87.67206801475926,41.71044811733562],[-87.67207142111891,41.710576736044935],[-87.67207533775372,41.71072703786083],[-87.6720798804421,41.71089844713939],[-87.67208361415592,41.71104158492998],[-87.67208688919554,41.71116515358562],[-87.67209046759832,41.711302006244914],[-87.67209441268137,41.71145307661631],[-87.67209836807285,41.71160321397237],[-87.67210068809831,41.71169132016372],[-87.67210535016206,41.71186895971808],[-87.67210900859993,41.71199061118074],[-87.67211409147737,41.712159606602135],[-87.67211852098309,41.71230991132694],[-87.67212350922733,41.71248074681289],[-87.67212894594063,41.712665004622394],[-87.67213340143688,41.71281635232659],[-87.67213902228144,41.71300766409885],[-87.67214404976468,41.7131782528001],[-87.6721486714693,41.713341978350186],[-87.67215328178837,41.71351396424645],[-87.67215894704358,41.71372596845573],[-87.67215828531573,41.71380683384747],[-87.67215663237214,41.714009004739445],[-87.6721610298807,41.71416595049527],[-87.67216686935546,41.71437175351064],[-87.67217216244326,41.71456289868513],[-87.67217603480785,41.71470683330906],[-87.67218043087182,41.71486399858299],[-87.67218441595041,41.715007659415356],[-87.67218865802143,41.71515837463438],[-87.67219282955928,41.7153088973409],[-87.67219741203317,41.71547289703597],[-87.67220218909395,41.71562509505969],[-87.67220726890777,41.715786959504584],[-87.67221303404364,41.71597141092364],[-87.67221857612182,41.716163298443476],[-87.67222328153208,41.7163474421522],[-87.67222913873917,41.716563124477915],[-87.67224526469978,41.71710453520618],[-87.6722551451163,41.71744289293172],[-87.67226153245942,41.717661616504614],[-87.67227568406068,41.71813212965153],[-87.67229700829407,41.718832054449095],[-87.67230000985697,41.71894251557741],[-87.67230870241285,41.71926239954368],[-87.67231594615122,41.71952897412097],[-87.67232195186232,41.71970426104117],[-87.67233676718622,41.720163690776396],[-87.67234892833464,41.72059925705634],[-87.67236064291438,41.72101882683186],[-87.67236230128607,41.7210782215532],[-87.67229843583229,41.72107900102717],[-87.67194694374305,41.72108134277266],[-87.67117211794746,41.721094140620764],[-87.67098990888921,41.72109724787702],[-87.67076065798982,41.72110115718742],[-87.67027087134538,41.72110950826398],[-87.66975941635725,41.721116325386554],[-87.66939499401354,41.7211211810568],[-87.66913968124499,41.7211234905638],[-87.66865897841626,41.72112783720562],[-87.66834136955245,41.72113299708254],[-87.66826278230697,41.72113427365615],[-87.66764517994694,41.721144517852345],[-87.66744538684141,41.72114753106589],[-87.66705283505658,41.72115345069187],[-87.66655019845932,41.721159848553135],[-87.66650322935283,41.72116044622093],[-87.66626013907208,41.721163398759145],[-87.66589536532817,41.721167827994115],[-87.66555561537184,41.72117287159733],[-87.66536711047205,41.72117566961932],[-87.66488934788899,41.72118307502769],[-87.66474320098078,41.72118510576609],[-87.66431945761312,41.72119096272283],[-87.66380761131296,41.721197144301996],[-87.66344522717199,41.72120162660872],[-87.66332792156787,41.72120307722428],[-87.66326359095787,41.72120432455436],[-87.66326342096943,41.72120432685629],[-87.66320230798638,41.7210928249553],[-87.66320229350796,41.72109270247418],[-87.66320225145513,41.721092342997416],[-87.66308531650246,41.72010178597477],[-87.662362289081,41.71852198310813],[-87.66234929041075,41.718493588005835],[-87.66106584437178,41.715689812362086],[-87.65997595429693,41.71400107651109],[-87.65866825351058,41.711344936114656],[-87.656364408248,41.70677784109243],[-87.65640090882451,41.70677703110547],[-87.65654663981427,41.70677500737589],[-87.65670931024712,41.70677274811981],[-87.65719462498636,41.70676600634372],[-87.65760027930037,41.70676160623424],[-87.6578622847415,41.706758763352276],[-87.65838589365325,41.70675305806675],[-87.65864104880744,41.70674794450646],[-87.6590456686655,41.70673983414233],[-87.65939808229511,41.70673287261091],[-87.66001868172049,41.70672567040831],[-87.6603293517401,41.70672167284014],[-87.66065474540699,41.70671748508966],[-87.66086729990502,41.70671403384554],[-87.6610821242333,41.70671054581428],[-87.6616342955558,41.70670504742177],[-87.66208354218533,41.70670107920429]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1723521.25085","perimeter":"0.0","tract_cent":"1166346.3655478","census_t_1":"17031310700","tract_numa":"10","tract_comm":"31","objectid":"97","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890821.57159622","census_tra":"310700","tract_ce_3":"41.85598987","tract_crea":"","tract_ce_2":"-87.66490689","shape_len":"6609.22187367"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66576558201085,41.85233675822092],[-87.66602422922897,41.85233105651881],[-87.66602809926886,41.85282520685102],[-87.66602891800888,41.852929712956644],[-87.66603199045588,41.85322106068957],[-87.66603211305869,41.85323264271926],[-87.66603284381773,41.8533019666457],[-87.66604140719689,41.85374186631427],[-87.66604607085566,41.85398448578559],[-87.66605012597915,41.85416134930174],[-87.66605390046973,41.85432594435127],[-87.66607328557576,41.855065365092656],[-87.66607823994144,41.85525435820127],[-87.66608733876859,41.85581278500456],[-87.66609536443774,41.85597434376026],[-87.66610130223847,41.85609387800854],[-87.66612103452613,41.85676995788665],[-87.66612310045669,41.85688501212884],[-87.6661251956717,41.85700173449774],[-87.66613873259286,41.857687685039856],[-87.66613813451029,41.85779374760138],[-87.6661790521236,41.858700290793145],[-87.66619444602011,41.85946507872072],[-87.66619826527122,41.85960733344552],[-87.66590719322703,41.85961130781012],[-87.66582769542701,41.8596126526113],[-87.66400461315988,41.85964347481219],[-87.66380766126575,41.859646791179415],[-87.6638046533383,41.85955951512375],[-87.66379414528411,41.85919522757425],[-87.6637838945747,41.85883985045126],[-87.66378364882806,41.858741368128804],[-87.6637832565272,41.85858430168687],[-87.6637764026772,41.85828891289613],[-87.66376942991657,41.85798838834582],[-87.66376326241563,41.85783479811734],[-87.66375940619801,41.85773876730318],[-87.66374951001892,41.85737487618076],[-87.663741952057,41.857096509683515],[-87.66373606571325,41.85693072285128],[-87.66373292945673,41.856842393857235],[-87.66372499029778,41.85646943087291],[-87.66371814855194,41.85614803829188],[-87.66371459220086,41.85602133883774],[-87.66371145812059,41.85590968777803],[-87.66370348111806,41.85556595084578],[-87.66369631489886,41.85525709785004],[-87.6636931377878,41.85511913898006],[-87.66368796210384,41.85489439779235],[-87.66368186428943,41.85462962156383],[-87.66367098097948,41.85434635076437],[-87.66366523049524,41.85420951628315],[-87.66366154143869,41.85412173314873],[-87.66364951704651,41.853727944418644],[-87.6636472136729,41.85365142108684],[-87.66363776904527,41.85328349827433],[-87.66362857864867,41.852925483691436],[-87.66362057639282,41.85259478138208],[-87.6636139168171,41.852379529044384],[-87.66450311605716,41.85236570173004],[-87.66522539148163,41.85234866500476],[-87.66576558201085,41.85233675822092]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"28335240.6292","perimeter":"0.0","tract_cent":"1153831.9887333","census_t_1":"17031700400","tract_numa":"147","tract_comm":"70","objectid":"9","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1849313.66304566","census_tra":"700400","tract_ce_3":"41.7423444","tract_crea":"","tract_ce_2":"-87.71194244","shape_len":"21262.7812439"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72143876103222,41.73485966156893],[-87.72143876982751,41.73485966134134],[-87.72145478098194,41.735381984682355],[-87.72145953051553,41.73553692090918],[-87.72146154309281,41.735602579531225],[-87.72146617380174,41.735753631910725],[-87.72148201881869,41.73627052849475],[-87.72148533405156,41.73637867743834],[-87.721490000336,41.73653089357646],[-87.72149551553316,41.73668535222079],[-87.72150612279805,41.73698241948088],[-87.72151352783412,41.737186608599494],[-87.7215202611004,41.737372791419624],[-87.72152180865668,41.73741854740992],[-87.72152852581503,41.73760643161235],[-87.72153233383332,41.73771444072371],[-87.72153744990402,41.73787800175209],[-87.72154508450147,41.73811978918635],[-87.72155098974045,41.73829671922221],[-87.7215592089007,41.73851699596276],[-87.72156524432172,41.73867874896749],[-87.72157299655093,41.738919741141544],[-87.72158450757574,41.73927425819763],[-87.7215895055776,41.73943128708127],[-87.72159382191684,41.739566906398935],[-87.72160088795535,41.739795243863384],[-87.72161069533426,41.74011317007651],[-87.7216190435755,41.74034814488364],[-87.7216278429236,41.740595821672734],[-87.72163350424586,41.740798492001254],[-87.72164250573262,41.74107777391993],[-87.72164921230429,41.74126703037286],[-87.72165912416543,41.74154672848696],[-87.72166443199848,41.741721295122765],[-87.72166607763135,41.741775421757104],[-87.72167260159108,41.74199146144401],[-87.72167918648451,41.74217903769774],[-87.72168287016247,41.742283977640355],[-87.72169304786125,41.74263596261504],[-87.72169972971261,41.742854994410834],[-87.72170859391005,41.74309462016582],[-87.72171431044505,41.74324915544091],[-87.72172200899583,41.74346500922092],[-87.72173199184729,41.74375678285365],[-87.72173675136358,41.74401414270036],[-87.7217409278068,41.744239966727704],[-87.72174228803541,41.7442805074696],[-87.72174632882322,41.74440062010907],[-87.72175259525694,41.74458592202073],[-87.7217629804655,41.74492459803881],[-87.72177028076614,41.74516267856506],[-87.72177547585456,41.74532187633802],[-87.72178008376794,41.74546186079481],[-87.72179107537552,41.74578477446244],[-87.72179110575563,41.74578566625116],[-87.72179693317113,41.74595685974118],[-87.72180050085292,41.74607131654339],[-87.72180769442879,41.74630182215151],[-87.72181489654693,41.74657939246888],[-87.72182360555186,41.74691504097626],[-87.72182621248609,41.74699173091788],[-87.72183962378666,41.7473895628063],[-87.72184375996235,41.74751251515059],[-87.72184997058105,41.7476971454026],[-87.72185877852253,41.747958368376835],[-87.72186827275472,41.74823995777891],[-87.72187930757399,41.74856774211737],[-87.72188642529277,41.748779256587746],[-87.72189397527343,41.74900315019147],[-87.7219041822379,41.74930620384143],[-87.72190928684712,41.749438459843674],[-87.7219117309776,41.74950177640799],[-87.7204264398689,41.749523707018376],[-87.72029311661197,41.749526082820154],[-87.71997057547033,41.749531565253946],[-87.71960406079589,41.74953681217913],[-87.71946662077909,41.74953847922871],[-87.719364454426,41.74953999156932],[-87.71902313646036,41.74954502796659],[-87.71871664061644,41.7495492202366],[-87.71835379061129,41.74955448277604],[-87.71823302006958,41.749557245006706],[-87.71790523473165,41.749564430166394],[-87.71752956264852,41.749569278383866],[-87.71729133319496,41.749572117516564],[-87.71703021770345,41.74957449063404],[-87.71703020450877,41.749574490837695],[-87.71675120830311,41.74957711017302],[-87.7161646414644,41.749591801157486],[-87.71583622824222,41.74959723824598],[-87.71554621552333,41.74960219726812],[-87.7153075216366,41.74960571614162],[-87.71500788965486,41.749610621788584],[-87.71480401136714,41.74961398393324],[-87.71459288382394,41.74961629786964],[-87.71411123344987,41.74962124089786],[-87.71385248141341,41.74962395131701],[-87.71351940450164,41.749629358832806],[-87.71332285465905,41.7496327578818],[-87.71300672983115,41.749637912348014],[-87.7128010188027,41.74964126076856],[-87.71253162493119,41.749645637732485],[-87.71224115709573,41.74965024236423],[-87.71212203904595,41.749651999666895],[-87.71207393310584,41.749652768680804],[-87.71189114224137,41.74965553987617],[-87.71051439465323,41.749676571196126],[-87.71027478091436,41.74968041739067],[-87.70993345850144,41.749685770070286],[-87.70970942197648,41.74968935683762],[-87.70933602883194,41.749695219471775],[-87.70906709598458,41.7496992472274],[-87.70875967964048,41.74970375124397],[-87.70849074637151,41.749707777648034],[-87.70812926291674,41.74971370112717],[-87.7077449327918,41.74971366714448],[-87.70758686302338,41.749716923123295],[-87.70751033745616,41.749719593677746],[-87.70727836924222,41.74972695614779],[-87.7061963319421,41.749742959484635],[-87.70605247518587,41.74974491904891],[-87.70574872631803,41.74974909144301],[-87.70543397735105,41.74975388954658],[-87.70522185365074,41.74975718962489],[-87.70506104130502,41.74975974078344],[-87.70482511494973,41.74976119477771],[-87.70361906621059,41.7497686678155],[-87.70355553506535,41.7497690745643],[-87.7029271656298,41.749773094507404],[-87.70272423279037,41.749773353053115],[-87.70254603505026,41.749773747038944],[-87.70239430139927,41.749773602192555],[-87.70239430141538,41.74977360054606],[-87.70241598411673,41.74953530692621],[-87.70238487430248,41.74942227939356],[-87.7023836646299,41.74937538457954],[-87.70238335197874,41.749363265090366],[-87.70238111880568,41.74927669785899],[-87.70237886353812,41.74920170600202],[-87.70237672363318,41.74913053924722],[-87.70237080648232,41.74893390442156],[-87.70236690209143,41.74879690900141],[-87.70236426014927,41.74870422464579],[-87.70235726850267,41.748437768389906],[-87.702350003146,41.74819548853728],[-87.70234349129566,41.74797839103308],[-87.70233903548817,41.747829831331956],[-87.70233458345204,41.74767074666938],[-87.70233048848515,41.747523848700574],[-87.70232606748209,41.74736534050492],[-87.7023217799986,41.74721191001222],[-87.7023195020969,41.7471307087266],[-87.70231661903861,41.747027930543204],[-87.70230986101963,41.74678625688971],[-87.70230372456973,41.74656344005371],[-87.7022994152096,41.74640476778546],[-87.70229233310893,41.74615166830807],[-87.70228508283726,41.74589254577967],[-87.70227963558091,41.74568913497271],[-87.7022755848067,41.745537818853855],[-87.70226963273109,41.745314865491025],[-87.70226212658686,41.74503361495942],[-87.70225517902355,41.74477391005259],[-87.70224925438774,41.74455194503683],[-87.70224205698274,41.74432502091113],[-87.70223729970148,41.744175030494105],[-87.70222216795024,41.74364337416503],[-87.70221259179725,41.74330412458901],[-87.70221080919042,41.74297726720654],[-87.70220635721465,41.742821969558214],[-87.70220155083717,41.74265047851519],[-87.70219831413567,41.74249602345078],[-87.70219420885006,41.742300126685514],[-87.70218491583996,41.742038817616866],[-87.70218306130657,41.741986664937876],[-87.70217775225979,41.74179167951531],[-87.70217330917488,41.741583177338214],[-87.70217024578261,41.74143943342738],[-87.7021639309288,41.74121620375281],[-87.70216067425315,41.74112688563751],[-87.70215774935025,41.74104668101213],[-87.70215213827183,41.74086387892355],[-87.70214607614898,41.7406689927858],[-87.70213959767712,41.740460725276776],[-87.70213358822272,41.74030360775594],[-87.7021313526786,41.74021478921179],[-87.70212931506903,41.74013382103961],[-87.70212652435112,41.74000347825057],[-87.70211953685873,41.73975609266618],[-87.70211512402254,41.73959986427237],[-87.7021045495125,41.739299084251336],[-87.70209959467243,41.7391427957854],[-87.70209689953182,41.73905134043087],[-87.70209176423272,41.738854292410906],[-87.70208637997439,41.738647648893256],[-87.70207949960016,41.738426090032334],[-87.70207395605733,41.738228908020545],[-87.70207033795835,41.738012196785085],[-87.70206795175925,41.73786926003932],[-87.70206311497925,41.73754315809459],[-87.70206305245199,41.73753895483278],[-87.7020629252698,41.737532486607094],[-87.70205996711591,41.737382594259515],[-87.70205915186905,41.73731326838365],[-87.7020563733743,41.73710900225571],[-87.70205605840454,41.73708582999827],[-87.70205426974795,41.73700261418279],[-87.70205285278888,41.73693670331556],[-87.70204845661706,41.73673218349369],[-87.70204758384772,41.73662623083824],[-87.70204561169764,41.73638665828361],[-87.70203715275001,41.736075653416705],[-87.70203530039576,41.736006503226335],[-87.70203092841103,41.735843258012494],[-87.70203118784485,41.73559329645467],[-87.70209494002829,41.73519018890171],[-87.7020949554236,41.73519018816299],[-87.70215111590593,41.73518709399638],[-87.70220972513677,41.73518603581333],[-87.7027980054009,41.73517541439805],[-87.70346664693506,41.73516492095472],[-87.70346665646318,41.73516492073253],[-87.70368444359639,41.735161898548036],[-87.70450863261104,41.735150457342804],[-87.70462528415486,41.73514882776971],[-87.70464696119447,41.735148524848775],[-87.70494125934214,41.73514330080184],[-87.70610061480568,41.73512271409945],[-87.70658878367334,41.73511713695092],[-87.70691180200296,41.73511344517246],[-87.70697887723853,41.73511267330769],[-87.70697959615974,41.73511266515161],[-87.70698156604898,41.735112642683454],[-87.70706723872347,41.7351116570944],[-87.70736587364998,41.73510599107456],[-87.70748515046772,41.7351037277106],[-87.70769086285998,41.73509982423613],[-87.70845683901008,41.73509419460105],[-87.7088850057414,41.735087868627986],[-87.70888805154733,41.73508782343333],[-87.70890883021862,41.73508751647266],[-87.70915746155887,41.73508384195262],[-87.70934160175038,41.735080451176195],[-87.71002531953967,41.73506786086481],[-87.71121005391386,41.735044890382575],[-87.71154026259052,41.735037175830406],[-87.71167545901343,41.7350340167367],[-87.71167546340979,41.73503401676048],[-87.71192817761437,41.735028111286674],[-87.71195196154505,41.73502774263837],[-87.71195581792381,41.735027682810035],[-87.71197804962974,41.73502733814515],[-87.71265295719859,41.73501717282483],[-87.71277852710665,41.73501528099799],[-87.71342172079792,41.735000277287746],[-87.7139909358315,41.73498699644811],[-87.71411890168145,41.734984733512725],[-87.7141217013112,41.73498468410836],[-87.71414319324116,41.73498430402709],[-87.71414320936375,41.73498430383954],[-87.71470176304864,41.734974469537335],[-87.71508082607654,41.7349679428133],[-87.71530679142678,41.73496405151981],[-87.71532027685603,41.734963819432956],[-87.71561610910004,41.73495872420971],[-87.71657303725306,41.73494207473236],[-87.71657305190756,41.734942074811016],[-87.71685122345049,41.734937230138456],[-87.71695490684698,41.73493542433868],[-87.71712483241903,41.734932384199816],[-87.71817157351516,41.734913650806554],[-87.71861704459742,41.734905861400506],[-87.7189827301283,41.73489946621176],[-87.719010310411,41.734898982751574],[-87.71901032360267,41.734898982547676],[-87.71969644904527,41.73488695184968],[-87.72039220423927,41.734876419892295],[-87.72056481908123,41.73487380669589],[-87.72091891020318,41.73486844480665],[-87.72099444587296,41.73486717141581],[-87.72107226006399,41.73486585934643],[-87.7210722648267,41.73486585937181],[-87.72143876103222,41.73485966156893]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8159580.41057","perimeter":"0.0","tract_cent":"1170314.99147417","census_t_1":"17031710200","tract_numa":"37","tract_comm":"71","objectid":"10","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854113.89003752","census_tra":"710200","tract_ce_3":"41.75517438","tract_crea":"","tract_ce_2":"-87.65140913","shape_len":"12077.7642835"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64423324321783,41.758061856052414],[-87.64423260107061,41.75803534060161],[-87.64423152206834,41.75799073346681],[-87.64422996175914,41.75792629723811],[-87.64422548156716,41.75774118835283],[-87.64422235560164,41.75761199532251],[-87.64422104088133,41.75756324863797],[-87.64421632985055,41.757404380193805],[-87.6442093108006,41.75706014774791],[-87.6442022148982,41.75682242118612],[-87.6441926299302,41.75647820048313],[-87.64418761889512,41.75626485608152],[-87.64418368640354,41.756088416934375],[-87.64417991775366,41.75591927476724],[-87.64417237518589,41.75565819146256],[-87.64416514986749,41.75540863612035],[-87.64415418371901,41.75500513037702],[-87.64414646556887,41.754661195465914],[-87.64414116214095,41.75442378142836],[-87.64413677590314,41.754272609047185],[-87.64413320964219,41.754149687597504],[-87.64412451151217,41.753804841135995],[-87.64411326688399,41.75336573998836],[-87.6441021766307,41.75299782697655],[-87.64409147628967,41.752641469799755],[-87.64408928842055,41.75245500975084],[-87.64436941609394,41.75245641433649],[-87.64463955815565,41.75245210621585],[-87.64470147132913,41.75245128436395],[-87.64503548635304,41.75244684960144],[-87.64530399066133,41.75244321590867],[-87.64537592024777,41.75244224208842],[-87.64544928700876,41.752441248835666],[-87.64559071092188,41.75243933441648],[-87.64591077683201,41.75243428396043],[-87.64632057074341,41.752427674171436],[-87.6465153280464,41.75242514581552],[-87.64685900426645,41.75242068364358],[-87.64712231757164,41.75241649738404],[-87.6471902488378,41.752415417316314],[-87.64757253985229,41.752410509605575],[-87.64772731428835,41.75240785855244],[-87.64792068609971,41.75240454620134],[-87.64833492408306,41.75239819860849],[-87.64876134823272,41.75239136339],[-87.64894040354245,41.752389728608335],[-87.64925247905927,41.75238687898435],[-87.64954699207301,41.75238175269896],[-87.64961668085056,41.752380539500976],[-87.64994870011063,41.75237472096855],[-87.65015112376581,41.752371789390466],[-87.65042424380191,41.75236783362574],[-87.65075786986868,41.75236299077008],[-87.65080522158242,41.752362303604286],[-87.65116963961096,41.75235631724137],[-87.6513628472853,41.75235445946356],[-87.6517713870495,41.752350530316306],[-87.65197207257413,41.75234771529886],[-87.65208902592474,41.75234607477349],[-87.65235814726138,41.75234116614511],[-87.65257571140027,41.75233723410849],[-87.65276824371662,41.7523336616357],[-87.65311939082292,41.75232805701027],[-87.6531805758454,41.75232707177315],[-87.65354560508264,41.752321194007486],[-87.65378626842276,41.752317562923245],[-87.65417539133036,41.75231169090998],[-87.65459951099064,41.752305415362535],[-87.65515514474002,41.75229711540396],[-87.65539321220497,41.752294104504955],[-87.65587713214998,41.75228798250484],[-87.65598240153552,41.75228641512009],[-87.65620323998243,41.752283126431934],[-87.65626529466601,41.752282202307484],[-87.65641887373181,41.752279901334056],[-87.65674644795808,41.75227499253254],[-87.65701173896812,41.75227071182349],[-87.65728350454026,41.75226632589466],[-87.6577999015844,41.75226019752953],[-87.65781910712218,41.752259969879454],[-87.65833737356746,41.752253833348874],[-87.6586344646863,41.75224803341669],[-87.65863723974734,41.75238559236739],[-87.65864385822458,41.75262147681252],[-87.6586481135005,41.752773317027575],[-87.65865202200379,41.75291277783827],[-87.65866011225968,41.75320410586025],[-87.6586706307957,41.75357849078348],[-87.65868064332079,41.75393824556801],[-87.65868353758661,41.75406457328887],[-87.65869020170621,41.75435540850754],[-87.65870209212602,41.75479829923832],[-87.65871514011913,41.75528472138939],[-87.65872625460192,41.75570027422755],[-87.65873081827246,41.755883450079025],[-87.65873590522274,41.75608763444417],[-87.65874087337899,41.75632367370278],[-87.65874997318969,41.75668314852314],[-87.65875909449336,41.757044077927425],[-87.65876682078103,41.75734923488533],[-87.65877457257022,41.75764961688987],[-87.65877517119067,41.757672145640775],[-87.65877599485466,41.757703143533085],[-87.65877783001496,41.75777219218003],[-87.65877900393271,41.75781636231079],[-87.65864810587188,41.75781833499832],[-87.65836401698114,41.75782249803867],[-87.65815322861289,41.757826748119456],[-87.65792915105261,41.75783126273089],[-87.65749433254668,41.75783556656418],[-87.65717684394748,41.75783541374185],[-87.65664343037936,41.75784873912946],[-87.65590846202521,41.757859501671376],[-87.6553952590921,41.75786779485866],[-87.6546277396333,41.75788075839501],[-87.65406230496474,41.7578894231431],[-87.65400961139277,41.75789014070914],[-87.65393085117313,41.757928178108614],[-87.65393281335702,41.75799945978889],[-87.6537427097518,41.758002107803044],[-87.65316948895207,41.75801037906183],[-87.65273463617011,41.75801775228873],[-87.65253347814716,41.75802101971621],[-87.65160513765531,41.75803506822071],[-87.65150868044446,41.75803655818492],[-87.65102595408119,41.75804397947754],[-87.6504559467936,41.75805157020366],[-87.65031160933184,41.75805379956839],[-87.64996886194892,41.75805930830302],[-87.64959726442399,41.758063615216],[-87.64908519515274,41.7580722343855],[-87.64908497227776,41.758072237723475],[-87.64895667128671,41.758074208796394],[-87.64886273694077,41.758075707450146],[-87.64858551754423,41.758079887230835],[-87.64810713976684,41.75808732629094],[-87.64794906978621,41.758088441946114],[-87.64679024987934,41.75810553534138],[-87.64666170390993,41.75810750815016],[-87.64652533252199,41.75807307890018],[-87.64567993474992,41.75808517404252],[-87.64550487730516,41.75808961476289],[-87.64443082633815,41.758105477446755],[-87.64432680904798,41.758107254421915],[-87.6442352251395,41.75814375377996],[-87.64423324321783,41.758061856052414]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6758068.30205","perimeter":"0.0","tract_cent":"1170896.69639786","census_t_1":"17031681400","tract_numa":"34","tract_comm":"68","objectid":"11","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856464.78425532","census_tra":"681400","tract_ce_3":"41.76161287","tract_crea":"","tract_ce_2":"-87.64920883","shape_len":"10432.9337768"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64443082633815,41.758105477446755],[-87.64550487730516,41.75808961476289],[-87.64567993474992,41.75808517404252],[-87.64652533252199,41.75807307890018],[-87.64666170390993,41.75810750815016],[-87.64679024987934,41.75810553534138],[-87.64794906978621,41.758088441946114],[-87.64810713976684,41.75808732629094],[-87.64858551754423,41.758079887230835],[-87.64886273694077,41.758075707450146],[-87.64895667128671,41.758074208796394],[-87.64908497227776,41.758072237723475],[-87.64908519515274,41.7580722343855],[-87.64959726442399,41.758063615216],[-87.64996886194892,41.75805930830302],[-87.65031160933184,41.75805379956839],[-87.6504559467936,41.75805157020366],[-87.65102595408119,41.75804397947754],[-87.65150868044446,41.75803655818492],[-87.65160513765531,41.75803506822071],[-87.65253347814716,41.75802101971621],[-87.65273463617011,41.75801775228873],[-87.65316948895207,41.75801037906183],[-87.6537427097518,41.758002107803044],[-87.65393281335702,41.75799945978889],[-87.65393345300667,41.75802269875467],[-87.65393428157034,41.75805280288604],[-87.6539387030509,41.758213947009565],[-87.65394346285001,41.758388156006625],[-87.6539462718285,41.75857357765753],[-87.65394783597722,41.75868242591985],[-87.65394872633567,41.75874395843234],[-87.65394936546195,41.75885710977541],[-87.65395315596672,41.75902244892672],[-87.65396121578515,41.75918611157682],[-87.65396642111874,41.759345888426715],[-87.65396836945284,41.759487780336116],[-87.65397330626222,41.759596325793915],[-87.65397979475263,41.75973897891805],[-87.6539811897938,41.7599055662578],[-87.65398110371876,41.76015002810294],[-87.65398685757378,41.760362059387305],[-87.65399185030559,41.760509512760905],[-87.65399753327203,41.76067736036775],[-87.65400386101943,41.76087668891264],[-87.65400881356871,41.761032649367316],[-87.65401701887035,41.761290277946806],[-87.65402050243934,41.76141680147157],[-87.65402711576567,41.76165700364329],[-87.65403239779413,41.76187556351594],[-87.65403862408454,41.762133180355754],[-87.65404136525328,41.76232763050643],[-87.65404252376351,41.76240982887068],[-87.65404737983435,41.7625645263344],[-87.65405404423045,41.762777139214414],[-87.65406044854824,41.76298313678603],[-87.65406637203235,41.76317217173476],[-87.65406881317332,41.76323778673175],[-87.65407585341299,41.76342700857481],[-87.65407818908623,41.76358783834022],[-87.6540806770295,41.76375511810517],[-87.65408285371613,41.76390318592924],[-87.65408873021602,41.764065408764864],[-87.65409135319398,41.76414492634895],[-87.65409336805591,41.76420602663745],[-87.65409573715932,41.76431507165268],[-87.6540990924183,41.764469595807455],[-87.65410350450878,41.764597354470794],[-87.6541118798953,41.76491144839192],[-87.65411569749986,41.76505710349442],[-87.65390654482262,41.76506018277236],[-87.6530546438143,41.76507029023533],[-87.6528974268739,41.76507148276259],[-87.65273362832455,41.76507272500115],[-87.6524519569605,41.76507742282618],[-87.65229844357827,41.765080180699215],[-87.65198561389096,41.76508580000309],[-87.65168929986933,41.765091768370674],[-87.65141304709462,41.76509733170999],[-87.65108627238536,41.7651027197973],[-87.6510789495905,41.76510284042135],[-87.65075860387489,41.765107770956824],[-87.65047464519117,41.765111235168426],[-87.65002646734548,41.76511670131236],[-87.64987174752088,41.765118934485336],[-87.64970737084832,41.765121307030014],[-87.64946739480585,41.76512424228968],[-87.64926709454024,41.76512788750363],[-87.64889927521905,41.765134580720634],[-87.64847451632386,41.7651412700819],[-87.64805543845725,41.76514751973869],[-87.64767523154157,41.765153188364685],[-87.64714188680139,41.765161036221194],[-87.6468413589102,41.76516528081789],[-87.64623526583539,41.76517383988934],[-87.64595524131967,41.765178668847206],[-87.64563054931234,41.76518381265079],[-87.6452222316831,41.76519028021334],[-87.64503148291116,41.76519300705948],[-87.6446242926453,41.765198827205275],[-87.64441296182687,41.76520275843198],[-87.64440443911448,41.76490370450783],[-87.64440080549792,41.76476366861792],[-87.64439386481439,41.76449419177805],[-87.6443921210228,41.76442502499885],[-87.64438525287065,41.764151377243834],[-87.6443766586079,41.763806916215636],[-87.64436947385235,41.7635123000882],[-87.64436645733431,41.763382979686824],[-87.6443625885237,41.763217109438266],[-87.64435558916104,41.76294628746634],[-87.64434325283348,41.76246854074442],[-87.64433311723715,41.76207631955718],[-87.64432484353217,41.7617567511244],[-87.64432126245016,41.761563519414295],[-87.64443692635344,41.76156208809058],[-87.64444906292655,41.7597419707463],[-87.64444902132387,41.75837492683286],[-87.64443082633815,41.758105477446755]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6975318.45548","perimeter":"0.0","tract_cent":"1184149.12329641","census_t_1":"17031690800","tract_numa":"40","tract_comm":"69","objectid":"12","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856803.68421227","census_tra":"690800","tract_ce_3":"41.76224335","tract_crea":"","tract_ce_2":"-87.60062724","shape_len":"10636.4122143"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59584207297571,41.76589996738398],[-87.59583948699881,41.76552916337765],[-87.59583622842739,41.76539568713357],[-87.59583347403802,41.76527771993736],[-87.59582787983234,41.765071779309324],[-87.59582649799967,41.76502091508658],[-87.59582274761618,41.76488285654284],[-87.59582056861734,41.76479825103355],[-87.59581939849348,41.76475281034554],[-87.5958177926888,41.76468674485501],[-87.59581604449147,41.76461480538367],[-87.59581496362401,41.76457034113854],[-87.59581096647806,41.764394461044155],[-87.59580527525584,41.76415987398334],[-87.59580104172674,41.76398722623656],[-87.59579443161358,41.76371945033627],[-87.59578338323236,41.76334953068886],[-87.59578100464337,41.76324811341733],[-87.59577634674201,41.76304950983823],[-87.59577481265782,41.76298410040063],[-87.59577236214322,41.76279506085873],[-87.59576502874127,41.76252938979942],[-87.59575905058294,41.762336168614944],[-87.59575202746062,41.762109182028944],[-87.59574010437024,41.76173566163202],[-87.59573196842324,41.761409120439176],[-87.59572564022471,41.76105915453899],[-87.59571984533608,41.76079064277439],[-87.59571031126637,41.7605071777406],[-87.59570294767528,41.76028824560259],[-87.5956949985854,41.76003182232187],[-87.5956889055732,41.759798957017686],[-87.59568208152453,41.759514137458716],[-87.59568311670184,41.759289907550986],[-87.59570314061996,41.75912883606668],[-87.59570715886689,41.7590692008325],[-87.59572449009087,41.75901843282104],[-87.59576233802443,41.758936374310125],[-87.59582689674077,41.758861430322554],[-87.59563037137991,41.758695855166756],[-87.59626280525424,41.75869391625561],[-87.5965004774507,41.7586920438684],[-87.59650212838484,41.758692030855336],[-87.59659112267512,41.758691329583],[-87.59728661376924,41.758683572988176],[-87.59733648967074,41.75868301652434],[-87.59738244192508,41.75868201969329],[-87.5974877975767,41.758679734237376],[-87.59770569946738,41.758675007644186],[-87.59774903379534,41.75866751873315],[-87.59777682212528,41.75865732319549],[-87.59800071865311,41.75865214621044],[-87.5980859348414,41.7586519904132],[-87.59811156248526,41.75865194337743],[-87.59822267094478,41.758651740209615],[-87.59833089633487,41.758651542365776],[-87.59870491235587,41.75865085701165],[-87.598793727524,41.75865013998931],[-87.59913744005982,41.75864736481963],[-87.59930927670187,41.75864610652905],[-87.59934778196484,41.75864582452325],[-87.5997658460618,41.758642761724445],[-87.60015305157847,41.75863787860441],[-87.60051553024464,41.758634368058644],[-87.60079536675822,41.758631657172636],[-87.60106376268483,41.758628702816175],[-87.60143648149547,41.758624628655554],[-87.60172587707214,41.758621944837124],[-87.60190951788078,41.75862024134575],[-87.60205049550706,41.75861893343229],[-87.60227361663867,41.758616868115695],[-87.60266150892005,41.75861280419948],[-87.60293674556087,41.758609312393986],[-87.60325806083881,41.758605235116285],[-87.60355680348732,41.75860235799575],[-87.60392995748641,41.75859863499316],[-87.6041468081332,41.75859696065155],[-87.60440782475133,41.75859494453418],[-87.60475397294178,41.758591917457316],[-87.60479523304066,41.7585915564168],[-87.60515286496111,41.75858624936708],[-87.60539129340302,41.758580064159105],[-87.60540324864103,41.75881821988226],[-87.60541078452619,41.75912107351911],[-87.60542113066332,41.759489917873935],[-87.60543029784343,41.759859276151886],[-87.60544146969777,41.76028476799746],[-87.60544495131795,41.76040567609914],[-87.60545241972908,41.76066503238053],[-87.60545996248183,41.7610224425966],[-87.60546801887241,41.76134744589297],[-87.60547490319942,41.76162694129799],[-87.60548341096744,41.76200603723955],[-87.60548932047061,41.76222964431867],[-87.6054918065173,41.762323715630124],[-87.60550023051168,41.76270050605985],[-87.60550763051786,41.76302520295511],[-87.60551525488663,41.763304072052115],[-87.60552059174408,41.76360278739086],[-87.60552298343539,41.76373667480133],[-87.60552371901063,41.76377784033656],[-87.60552582563648,41.7638957615432],[-87.60552741874466,41.7639849456166],[-87.6055293765319,41.764065181202774],[-87.6055323175333,41.764185428540245],[-87.60553571232448,41.764425617105175],[-87.60553722172764,41.76453239349747],[-87.6055380098619,41.764570012083176],[-87.60553906354568,41.76462029755039],[-87.60554009745557,41.76466964077514],[-87.60554172423933,41.76474738188552],[-87.60554657475296,41.76498597121697],[-87.60554788408037,41.765152260222735],[-87.6055549721714,41.76541704730878],[-87.60558716421771,41.76586856404107],[-87.60556812209886,41.76586865116301],[-87.60522889368583,41.76587020496313],[-87.60514499775003,41.765869426257254],[-87.60498675510387,41.765853247221074],[-87.60496338973742,41.76585139762895],[-87.60477089362962,41.765817300426804],[-87.60452917968169,41.76579847829269],[-87.60443704553917,41.76580087025911],[-87.60440770401274,41.76580163198143],[-87.60417309492775,41.76580604346974],[-87.60405504665961,41.7658075994039],[-87.60384219134066,41.76581047428051],[-87.60372525988316,41.765812036418126],[-87.60358321663385,41.76581393400514],[-87.6031117522002,41.7658171457097],[-87.60266191695627,41.765820208181225],[-87.60250633535149,41.76582158281462],[-87.60230793460936,41.76582333518912],[-87.60192112866578,41.76582803813409],[-87.60157457499766,41.7658322508114],[-87.60129789439148,41.76583586703773],[-87.60079677439028,41.76584241520684],[-87.6006903136099,41.76584354759189],[-87.60020434806783,41.76584870762155],[-87.60008509596078,41.765849740257245],[-87.59985032988895,41.765851772215775],[-87.59949439223331,41.76585604082766],[-87.59887266386359,41.76586349406496],[-87.59827087952034,41.76587070490385],[-87.59766249653472,41.76587799190902],[-87.59746691199132,41.765880333824484],[-87.59706254653517,41.76588504405449],[-87.59678355778134,41.76588851990347],[-87.59653914136533,41.76589139844808],[-87.59645482360462,41.76589222268904],[-87.59630352923216,41.76589370176619],[-87.59603800620016,41.76589730746937],[-87.59584207297571,41.76589996738398]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7275016.0705","perimeter":"0.0","tract_cent":"1176172.11165603","census_t_1":"17031691100","tract_numa":"37","tract_comm":"69","objectid":"13","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856539.95243038","census_tra":"691100","tract_ce_3":"41.76170238","tract_crea":"","tract_ce_2":"-87.62987174","shape_len":"11376.3389003"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62490521858305,41.76545345591693],[-87.62490330087968,41.7653704123749],[-87.62490150679326,41.765292725637984],[-87.62490003157446,41.76522883672091],[-87.62489922536022,41.76519393225211],[-87.62489657972294,41.76506460466901],[-87.62489397249193,41.76493508521902],[-87.62489053416296,41.764767826556856],[-87.62488846868104,41.76466569852596],[-87.6248867788673,41.76458270056087],[-87.62488528520039,41.76450859532698],[-87.62488256639439,41.76436919570633],[-87.62488123012517,41.76429441112895],[-87.62488119817817,41.764290984402365],[-87.62488115516274,41.76428643134792],[-87.6248810528188,41.76427544282491],[-87.62488015083811,41.76417897356578],[-87.62486950926727,41.76369687209819],[-87.62486945513041,41.76369442961395],[-87.62486537244429,41.76350985014955],[-87.62485322255009,41.762954960544086],[-87.6248403283804,41.76240783265881],[-87.62483284171273,41.76207215881478],[-87.62482908598463,41.76187399731144],[-87.62482637141326,41.76173072819191],[-87.62482079036133,41.761378435609906],[-87.62481405898592,41.76096408731582],[-87.62480717256494,41.760617247791906],[-87.6248007696547,41.760292996811],[-87.62479576407748,41.76005396519679],[-87.62479377288204,41.75995886267183],[-87.62478486260329,41.75953333153897],[-87.62477741340341,41.7588910920319],[-87.624787686536,41.75862436992009],[-87.62476615146042,41.758526057583204],[-87.62476449714983,41.75842599075076],[-87.62475945753556,41.758236948471335],[-87.6247579816719,41.75818156625304],[-87.62502347775091,41.75817955588966],[-87.62516926203118,41.758174905854425],[-87.62526558787138,41.7581754995391],[-87.62536885426215,41.75817613591072],[-87.62554968611504,41.75817170162411],[-87.62568308016905,41.75817067392396],[-87.62579929601213,41.758168389597735],[-87.62596470898569,41.75816685977272],[-87.62608822398518,41.758165770503986],[-87.62621916783274,41.758162877714575],[-87.62637291782582,41.75816079471903],[-87.62640692059337,41.758160334057415],[-87.62696481193323,41.758191507507426],[-87.62703574652025,41.75819130115677],[-87.62720169782169,41.758190818164024],[-87.62757740597141,41.75818972372853],[-87.62775164497056,41.758186519930234],[-87.62800546245681,41.75818196355301],[-87.6286401732067,41.75817056761313],[-87.62902125948985,41.75816511056126],[-87.62929076395046,41.758161054212245],[-87.629623552556,41.758154926515665],[-87.62987227993558,41.75815034581389],[-87.6302159350356,41.75814580821592],[-87.63044230283144,41.758141567498974],[-87.63055686113044,41.7581394144901],[-87.63087049546093,41.75813521244107],[-87.63137725304061,41.7581283396391],[-87.63161814452576,41.75812507174817],[-87.63204532923254,41.75811701511683],[-87.63205211073888,41.758116887186645],[-87.63206142243604,41.758116711306315],[-87.63223151949096,41.75811350314871],[-87.63251415226937,41.75810875094416],[-87.63286521841545,41.758103488533486],[-87.63327390965212,41.758097360732705],[-87.63342508433875,41.75809509371136],[-87.63367541653835,41.758091257707434],[-87.63387160922493,41.75808800679573],[-87.63403697307434,41.75808526276964],[-87.6342072099917,41.758082626096545],[-87.63428030503398,41.75808147449979],[-87.6344852861496,41.75807752434796],[-87.63469161738958,41.75807354801088],[-87.63505577646735,41.75806747403222],[-87.63540523374223,41.75806185845246],[-87.63570170906125,41.7580575631267],[-87.63570799533845,41.75825266977342],[-87.63571397769277,41.75857340508843],[-87.63572120662535,41.75887038231164],[-87.63573275695182,41.759333580590024],[-87.63574079517291,41.75967770976482],[-87.63574692102351,41.75988030457637],[-87.63543275252815,41.75988572307409],[-87.63505153922584,41.75989185923796],[-87.63478275712514,41.759896262797625],[-87.63453047967863,41.75990021094341],[-87.63453641374272,41.760109423890675],[-87.63454556866606,41.76045476737719],[-87.63455319953107,41.76079870198035],[-87.63455900301108,41.761047562915714],[-87.63456539603497,41.76130965494866],[-87.6345705556309,41.761523275143404],[-87.63457388750922,41.76167356993929],[-87.63457485123219,41.76171703973632],[-87.634578725942,41.7618918296001],[-87.63458825763007,41.76221261351977],[-87.6345952693027,41.76246161895612],[-87.63460350516132,41.76274644464991],[-87.63460978210146,41.762995610526616],[-87.63459373653616,41.76306911502864],[-87.63455824308745,41.76316483983464],[-87.63448813652045,41.76330212231315],[-87.63445983456084,41.76334314207565],[-87.63443888050007,41.763392686411336],[-87.63443179586015,41.763420662600325],[-87.63443820301592,41.76345511507731],[-87.63445494712919,41.76347939420134],[-87.63448127817323,41.76351796302058],[-87.63461695240093,41.76354977930351],[-87.6346637461391,41.76356075291672],[-87.63468789416757,41.76356641580262],[-87.63471006459713,41.763571614946585],[-87.63484295051477,41.76360277733029],[-87.63484275022056,41.763695560836744],[-87.6347853420668,41.76384837108393],[-87.63473182982688,41.763989980808404],[-87.63467755386836,41.764134357600895],[-87.63464276969675,41.764279566420136],[-87.63464436161075,41.764366158700824],[-87.63464515663522,41.76440754754798],[-87.63464701747382,41.76449614479959],[-87.63465171784023,41.76469134784373],[-87.63465410665329,41.764788784940336],[-87.6346581212904,41.7649660086549],[-87.63466019374037,41.765072335347064],[-87.63466297927337,41.76521425991249],[-87.63466550384764,41.76535581103516],[-87.63412816359755,41.76536419081254],[-87.63401818614176,41.76536547182034],[-87.63394852956122,41.76536628301787],[-87.63344085575154,41.76537611763996],[-87.63326303936756,41.76537956180758],[-87.63289806292974,41.76538622879256],[-87.63282866128162,41.76538745854724],[-87.63268718052443,41.765389964995755],[-87.6324337699236,41.76539442931706],[-87.6322136897952,41.765397400509826],[-87.63208516261375,41.76539913535727],[-87.63173922315981,41.7654045701486],[-87.63160372222053,41.76540661176843],[-87.63152277382589,41.76540783113081],[-87.63129954321582,41.76541116004009],[-87.63100004866004,41.76541571473748],[-87.63077565071565,41.76541912687764],[-87.6304849956655,41.76542377078523],[-87.63039515330937,41.765425480509066],[-87.6303420465599,41.76542649121806],[-87.63015772861145,41.76542786056512],[-87.62977080982571,41.76543505100143],[-87.6294168457439,41.76544162809122],[-87.62912050789939,41.765446398385784],[-87.62896377688652,41.76544886001013],[-87.62867561801559,41.76545338538655],[-87.62858209079907,41.765455144364324],[-87.62835257842472,41.76545474067767],[-87.62816342032389,41.765454408043105],[-87.62792392065589,41.765453986108085],[-87.62766534258768,41.765453530193824],[-87.62734338177887,41.7654494330619],[-87.62668446338867,41.76544104533129],[-87.62654943651116,41.765441988381475],[-87.62594769846649,41.765446187740885],[-87.6255143755786,41.765449210303444],[-87.62490521858305,41.76545345591693]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6965470.64161","perimeter":"0.0","tract_cent":"1178928.9048535","census_t_1":"17031691300","tract_numa":"24","tract_comm":"69","objectid":"14","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854003.34303717","census_tra":"691300","tract_ce_3":"41.75467933","tract_crea":"","tract_ce_2":"-87.61984499","shape_len":"10539.9131951"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62319936440903,41.7509759767672],[-87.62349308813967,41.75097295524693],[-87.62381314026084,41.75097515935445],[-87.62385000451967,41.75097541334349],[-87.62454557750216,41.75096011291615],[-87.6245488232654,41.75102358096254],[-87.62455362766492,41.75112172576258],[-87.62456065101927,41.75126518144707],[-87.62456239533157,41.75131705954169],[-87.6245638662376,41.75136081089027],[-87.62456798965002,41.751468960506266],[-87.62457299609069,41.75160028023114],[-87.62457980284168,41.75168051487706],[-87.62458726969645,41.751768539181555],[-87.62459265594386,41.75181469975251],[-87.62459853417398,41.75186507641182],[-87.62458874989898,41.75215368380724],[-87.62458941241299,41.75217677763609],[-87.62459553230792,41.75238998268513],[-87.62460026771504,41.7525595417527],[-87.62460097464725,41.75258486148344],[-87.62460541300761,41.75277183049021],[-87.62460911380984,41.75292770309026],[-87.62461272549744,41.753099106791055],[-87.62461733374245,41.7533165114175],[-87.62462195076276,41.75353312024214],[-87.62462607795149,41.753727661847044],[-87.62463020744282,41.75392192902933],[-87.62463405374834,41.754105327022025],[-87.62463770451885,41.754276484215865],[-87.62464182905482,41.7544712727663],[-87.62464416058165,41.75459384739493],[-87.62464856273455,41.75482530179269],[-87.62465224815637,41.75499667872287],[-87.62465696320247,41.75521438580914],[-87.62466043396482,41.75537862621977],[-87.62471384508,41.755724024109114],[-87.62470969085808,41.75580841319526],[-87.62471558791434,41.75604865825197],[-87.62472088926057,41.75626639663021],[-87.62472282398535,41.75638481088199],[-87.62472368374434,41.75643742443464],[-87.6247244344014,41.756483363997276],[-87.62472706611726,41.756644434467795],[-87.62473058557374,41.756827555926165],[-87.62473475990022,41.75704443631623],[-87.62473739377002,41.75718155809606],[-87.62474247687528,41.757444767595864],[-87.62474712330298,41.757686404463826],[-87.62475323725988,41.75800357351556],[-87.62475637800758,41.758121409535846],[-87.6247579816719,41.75818156625304],[-87.62454172684112,41.758187681744786],[-87.62446516019187,41.758187209365985],[-87.62434893303708,41.75819943843957],[-87.62423525666956,41.75820428532873],[-87.62411164014989,41.75821461917197],[-87.62400541412751,41.75821581278169],[-87.62392378608622,41.7582264059199],[-87.62382494969597,41.75822949437399],[-87.62368884137366,41.758245002111856],[-87.6234884361098,41.758253510769215],[-87.62326728308763,41.75826010266604],[-87.6231482203108,41.75826235173895],[-87.62297940032597,41.75826554062015],[-87.62273180638752,41.75827015676658],[-87.62249847311918,41.758274503577056],[-87.62234452839873,41.758277358739335],[-87.62227434066774,41.75827866041887],[-87.62203077892912,41.758283217680095],[-87.62178674072847,41.75828777147407],[-87.62153550079074,41.75829233282308],[-87.62135622073416,41.75829558761294],[-87.62106551825012,41.758300811195774],[-87.62078112108577,41.75830588104715],[-87.62072876529788,41.75830681596264],[-87.62053360232397,41.75831030082056],[-87.62025525366967,41.75831526968017],[-87.6200794391032,41.75831840457531],[-87.61992626332642,41.75832077827344],[-87.61976081126637,41.75832334171954],[-87.61940213878258,41.75833016970648],[-87.61911828639687,41.758335568141995],[-87.6190626016721,41.75833662156332],[-87.61874733346428,41.758342619616506],[-87.61849702521278,41.75834737441075],[-87.61830482443418,41.75835139670108],[-87.6181452740279,41.7583547355097],[-87.61789141564296,41.75835902779714],[-87.61758627270395,41.75836415292646],[-87.61750896073634,41.75836546603988],[-87.61727189117698,41.75836949354747],[-87.6169839770237,41.75837433997691],[-87.6167037171112,41.75837918567677],[-87.61648472623797,41.758382971680014],[-87.61616684887332,41.75838955011708],[-87.61589923183429,41.75839511082088],[-87.61579123419108,41.758397111805714],[-87.61539130852589,41.75840240724276],[-87.6151203569961,41.75840759128056],[-87.615117806876,41.75828494330086],[-87.61511550636196,41.757998039848225],[-87.61511485433131,41.75794998336072],[-87.61510973625703,41.75770043936621],[-87.61510269534242,41.757414850957936],[-87.61509893931044,41.75726194253051],[-87.61509146839043,41.75695898026704],[-87.6150851339972,41.75670207390097],[-87.61508234615266,41.75658293874952],[-87.61507664475855,41.75633927921952],[-87.61506954804327,41.75601266337582],[-87.61506344326192,41.755731855543864],[-87.61505662247635,41.7554166574074],[-87.61504877652807,41.755055321145406],[-87.6150432478798,41.75484778998166],[-87.61504064335858,41.754765603012316],[-87.61503465382202,41.75457659930151],[-87.61502687863286,41.754215537858705],[-87.61502087118306,41.75393588342787],[-87.61501385456482,41.753608691369664],[-87.6150083197334,41.75335239387209],[-87.61500228584312,41.753071833614115],[-87.6149981392997,41.75294033943551],[-87.61499378428067,41.752802235122246],[-87.61498715729346,41.75249927762331],[-87.61498155604217,41.75224237591413],[-87.61497418727667,41.751904094575245],[-87.61496871753816,41.75157564969309],[-87.61496685544458,41.75146383516139],[-87.61496172842746,41.75122686000901],[-87.61495839313913,41.75111405846441],[-87.61534332942766,41.7511123928837],[-87.61572972960677,41.75110327175008],[-87.61595936275974,41.75109987330047],[-87.61629364039547,41.751094945784416],[-87.6165382152809,41.75109026452934],[-87.61688074411956,41.751083706993214],[-87.6172045801628,41.75107850836237],[-87.61752889224262,41.751073339227354],[-87.61797181537206,41.75106627320268],[-87.61815351251407,41.75106288502278],[-87.61840874064005,41.75105812503968],[-87.6187032211149,41.75105304166607],[-87.61914226554444,41.75104545302882],[-87.6194964189201,41.7510393112214],[-87.6197687879933,41.751034108868616],[-87.62009924596057,41.751027796633],[-87.62034834675143,41.75102363454952],[-87.62073182078466,41.7510171769045],[-87.62106856108811,41.7510115534396],[-87.62138555564057,41.7510073069457],[-87.62156672877619,41.75100487968222],[-87.62162740314425,41.75100406670582],[-87.62190630742923,41.750999043018716],[-87.62219298203597,41.75099391416545],[-87.6222732544823,41.75099247789252],[-87.62271457453917,41.750984532925315],[-87.62299649016043,41.75097955759881],[-87.62319936440903,41.7509759767672]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3518727.97027","perimeter":"0.0","tract_cent":"1169955.4729125","census_t_1":"17031680500","tract_numa":"28","tract_comm":"68","objectid":"15","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867007.70659469","census_tra":"680500","tract_ce_3":"41.79056442","tract_crea":"","tract_ce_2":"-87.65235252","shape_len":"7960.17849571"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65001637321343,41.79423975791009],[-87.65001381530867,41.794057158563035],[-87.65001333847417,41.79402312631945],[-87.65001193448465,41.7939659020973],[-87.65000959165685,41.793870359327535],[-87.65000627586686,41.79373515392887],[-87.64999597662472,41.793351139731534],[-87.64997738093253,41.79265779518263],[-87.6499716552986,41.79241642151141],[-87.64996755297658,41.792243486800885],[-87.6499617225142,41.79203639575396],[-87.64995789385672,41.79190118945604],[-87.64995615622608,41.79183885666043],[-87.6499379177045,41.79119452672869],[-87.64992648484919,41.79075186021345],[-87.64992359894262,41.79059681665498],[-87.64991976102475,41.790390617219515],[-87.64990550298214,41.7898272947095],[-87.64989139013336,41.78927099893121],[-87.6498833799029,41.78895497404528],[-87.64988128692094,41.78877417507862],[-87.64987913427743,41.788588257106376],[-87.64986327742719,41.788265297337944],[-87.64985880053499,41.78807229239397],[-87.64985870370212,41.78806825606834],[-87.6498569246072,41.78799378856657],[-87.6498564630917,41.78797447810986],[-87.64985557920726,41.787937488084914],[-87.64985486311957,41.78790751949508],[-87.64984999200371,41.78770368213579],[-87.64984100612813,41.78741463758836],[-87.64983957890568,41.78736873472155],[-87.64983071986751,41.787084291436116],[-87.6498276736979,41.78695623689929],[-87.65002175084422,41.786953866677926],[-87.65057068029418,41.786945576966616],[-87.65079842323092,41.78694215521478],[-87.65104689938501,41.78693808857275],[-87.65125362139271,41.78693470490471],[-87.65173528684822,41.78692784891345],[-87.65211434054,41.786922495580775],[-87.65225922945295,41.78692038862786],[-87.6524827610159,41.78691713286443],[-87.65270772092991,41.78691330663247],[-87.6530143176491,41.7869080973248],[-87.6532989096055,41.7869032780838],[-87.65347346528085,41.78690160893412],[-87.65360555515217,41.7869003455208],[-87.653844757437,41.786895091697644],[-87.65421016438482,41.78689030963402],[-87.65451680472985,41.78688789574788],[-87.65468442500804,41.78688594941482],[-87.65468961056658,41.78700346331581],[-87.65469390786305,41.78721479891478],[-87.65469632927078,41.787342827961034],[-87.65470133125108,41.78760966353073],[-87.65470815162166,41.78786815594227],[-87.65470965436155,41.787907193536064],[-87.65471040853814,41.78792677656577],[-87.65471522178208,41.78805182296263],[-87.6547232095001,41.78827146807218],[-87.65472940379611,41.78844208959818],[-87.65473624552237,41.78863129349704],[-87.65473745769548,41.78870650813756],[-87.65473890494168,41.788796323501764],[-87.65474112990597,41.78890522997909],[-87.65474468350133,41.78907594565865],[-87.65474976026871,41.78929343298879],[-87.65475660186485,41.78957306140056],[-87.65476174640989,41.78978412747993],[-87.65476726301334,41.79000856042739],[-87.65477259142774,41.79022657062277],[-87.65477783431103,41.790442192774954],[-87.65478001118586,41.79052301802142],[-87.65478249868048,41.790615384827596],[-87.65478631231326,41.79075794560971],[-87.65479122321162,41.79094250073008],[-87.654796144266,41.79112609485525],[-87.65480087638359,41.791303266502496],[-87.65480527566984,41.79146679707476],[-87.65481071685434,41.79167061991975],[-87.65481600143447,41.79186843184553],[-87.65481764077069,41.79192999586818],[-87.65482183120905,41.79208757008783],[-87.65482630614235,41.792254366784576],[-87.65482863079892,41.792346049547845],[-87.65483345450197,41.79253624717645],[-87.65483920350457,41.7927560984301],[-87.65484498246411,41.792980066280705],[-87.65485137502127,41.793215399088865],[-87.65485313271753,41.793280488281844],[-87.65485722957662,41.79343220478257],[-87.65486258656324,41.793689238753146],[-87.6548646417683,41.79380199272003],[-87.65486757480048,41.79395008454198],[-87.65487082341218,41.794066132656795],[-87.65487424667296,41.794171880303075],[-87.65467432863795,41.79416766314448],[-87.65450097959614,41.79417127648725],[-87.6542982868089,41.79417548534517],[-87.65400367441693,41.79418159190259],[-87.65384420623606,41.7941869139737],[-87.65378363936658,41.79418893500436],[-87.65366046980782,41.79419139519383],[-87.65343914502337,41.79419581557407],[-87.65329580689904,41.79419815051542],[-87.65309932389803,41.794201185983],[-87.65283572666483,41.79420467429744],[-87.65265582863758,41.79420703391011],[-87.6525935857258,41.794207850069334],[-87.65244948470416,41.79421019150854],[-87.65215058730006,41.794215046982465],[-87.651840923246,41.79421922198979],[-87.65144913741113,41.79422446529334],[-87.651367826278,41.79422555262515],[-87.65128447283986,41.79422664451396],[-87.65123853939727,41.7942272461174],[-87.65100303724823,41.794230329796314],[-87.65071012721747,41.794234928660046],[-87.65014881132248,41.79424342024724],[-87.65001637321343,41.79423975791009]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8555877.81508","perimeter":"0.0","tract_cent":"1173796.89353762","census_t_1":"17031681200","tract_numa":"37","tract_comm":"68","objectid":"16","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859249.18873905","census_tra":"681200","tract_ce_3":"41.76918982","tract_crea":"","tract_ce_2":"-87.63849692","shape_len":"12582.2161636"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64396157975551,41.76521115377373],[-87.64441296182687,41.76520275843198],[-87.64442037649903,41.76546292310942],[-87.6444251598076,41.76565307703108],[-87.64443302913472,41.765962543803205],[-87.64443740941637,41.76613219511309],[-87.64444089888401,41.76627201056095],[-87.64444624604926,41.766502014488125],[-87.6444494211758,41.76664380421068],[-87.64445320948347,41.76681397336719],[-87.644458017594,41.76701501429415],[-87.64446559456066,41.76733178675346],[-87.64447313615896,41.767582825659666],[-87.64447975821979,41.767803287024535],[-87.64448854730647,41.76811251220714],[-87.64449655775464,41.768422501107324],[-87.64450709315634,41.768837555700635],[-87.6445135268181,41.76909103114386],[-87.64451954551761,41.76935081487141],[-87.64452512051464,41.769590397907635],[-87.64452839326164,41.76972993754123],[-87.6445344746759,41.769949600009284],[-87.64453695684206,41.77003968268256],[-87.64454953752765,41.77049135942165],[-87.64455194960486,41.77065409826457],[-87.64455547770123,41.770892144518015],[-87.64455982737458,41.77108180141023],[-87.64456453238616,41.77128680103719],[-87.6445657783102,41.771341090667484],[-87.64457558486151,41.77174027974997],[-87.64457828529943,41.771830528361036],[-87.64458798625213,41.77213679495145],[-87.6445928713578,41.772290120548604],[-87.64459718011128,41.77247247924577],[-87.64431317340826,41.7724773332374],[-87.64404444407582,41.77248222522323],[-87.6439709910788,41.77248338552215],[-87.64373975301466,41.772487037944174],[-87.64347841447878,41.77248977753224],[-87.64325691148112,41.77249389002571],[-87.64321558770166,41.772494657466346],[-87.64289878708708,41.77250053848742],[-87.64261301631768,41.77250516636302],[-87.6425295278932,41.772506518154216],[-87.64230927413327,41.77251008445415],[-87.6421593098558,41.77251261271204],[-87.64196688635668,41.77251584577272],[-87.64177684817139,41.772518883205336],[-87.64141059328077,41.77252473630254],[-87.64126030176243,41.772527041872266],[-87.6410136168359,41.7725307722116],[-87.64086449857318,41.77253302697787],[-87.64067701507152,41.772537088163745],[-87.64051167902576,41.77254066953053],[-87.64045822059231,41.77254150001522],[-87.64029636981856,41.77254483562059],[-87.64008945454721,41.772549099708534],[-87.64008278104305,41.77254923726954],[-87.63984440490962,41.772554152195845],[-87.63976644230442,41.7725542213659],[-87.63968119283004,41.77255429670775],[-87.6396501811876,41.77255432434196],[-87.63954806389833,41.77255597010893],[-87.6394247744216,41.77255756996231],[-87.63922269955492,41.772557313331156],[-87.63895645786273,41.7725660230119],[-87.63873265618564,41.77256850171209],[-87.63839865356552,41.77257220041219],[-87.63824972523419,41.77257382421492],[-87.63804742060707,41.77257888448943],[-87.63800818443984,41.77257989266256],[-87.63774573930405,41.772586635919986],[-87.63749979433454,41.77258970209248],[-87.63727432103666,41.772592604718334],[-87.63700111886038,41.77259612077119],[-87.636809390976,41.772600376322764],[-87.63673890423611,41.77260194104235],[-87.63667887961084,41.77260317947023],[-87.63640786840504,41.77260877000923],[-87.63614027632751,41.77261348574367],[-87.6358622726442,41.77261819253248],[-87.63561566055813,41.772621942731575],[-87.6354560187669,41.77262436998411],[-87.63513497720265,41.77262903311406],[-87.63485392860633,41.772633285907844],[-87.63454627583923,41.77263794042588],[-87.63429650241716,41.772642403486],[-87.6340490843301,41.772646090805985],[-87.63372811426832,41.772650936502096],[-87.63324004908016,41.77265924378707],[-87.63300619135585,41.772663223079014],[-87.6326162416324,41.77267017594645],[-87.63237966964552,41.77267424855176],[-87.63197597443462,41.77268108821095],[-87.63162592919214,41.7726862538342],[-87.63132547868106,41.772690686575245],[-87.63129821059516,41.77269108884333],[-87.63127259905369,41.77269146664988],[-87.63121958779345,41.77269224891444],[-87.63114465866964,41.77269335411862],[-87.63103881150387,41.77269487319855],[-87.63125279926645,41.771392835169834],[-87.63135891025546,41.76905736437554],[-87.63157574118895,41.769053952373845],[-87.63198936357011,41.769042372440296],[-87.63235649082479,41.76903201670343],[-87.63266102968176,41.76902847336728],[-87.63279284312001,41.76902693932429],[-87.63307299459105,41.76902217069916],[-87.63354628674377,41.76901467449651],[-87.63354074556918,41.7687993847772],[-87.63353805216647,41.76869305435346],[-87.63353089518407,41.76841391587068],[-87.63352575352552,41.76821239861622],[-87.63352016697884,41.76799117432412],[-87.63351263837376,41.76769227433563],[-87.63350999225766,41.76760520913922],[-87.63350516267461,41.76752005164861],[-87.63350242427384,41.76735378549317],[-87.63353733920569,41.76719367088061],[-87.63387008511283,41.767188787043715],[-87.6341083923608,41.76718504901451],[-87.63440686332942,41.767180335650295],[-87.6347117673886,41.76717110098064],[-87.6347065260413,41.76694752089973],[-87.63469848336392,41.76665495740089],[-87.63469164866801,41.766406474641784],[-87.63468216233048,41.76603409817607],[-87.63467524707785,41.76575929708919],[-87.63466785616806,41.76548773136732],[-87.63466550384764,41.76535581103516],[-87.6349633053261,41.7653519834868],[-87.63531128788705,41.765346066206824],[-87.63591057364546,41.76533720538892],[-87.63619417704304,41.765333058763055],[-87.63651696933695,41.765328170511886],[-87.6371223413067,41.765317690962355],[-87.63744772478502,41.76531200787648],[-87.63773370266621,41.76530842425887],[-87.63778730919685,41.76530775235327],[-87.6383385110817,41.765298197517],[-87.63869323210012,41.76529204730125],[-87.63893128233829,41.765287673921605],[-87.63908211224715,41.76528490260405],[-87.63928921348376,41.765281799231595],[-87.63938248996568,41.76528040132462],[-87.63940698517891,41.76528003417229],[-87.63961454363165,41.76527698456763],[-87.64008753671168,41.76527077929253],[-87.64013581896009,41.76527014551569],[-87.64047742111232,41.76526566314396],[-87.64074449629989,41.76526179996232],[-87.64079402497373,41.765261083409676],[-87.64103312887605,41.76525762423007],[-87.64115128778259,41.765255838858934],[-87.6415437575422,41.765248961576226],[-87.6418132977505,41.76524423779106],[-87.64195312358356,41.76524214346743],[-87.64223937424852,41.76523785514317],[-87.64228926947997,41.765237100907285],[-87.64247576598969,41.765234282242254],[-87.64256034312345,41.76523300370612],[-87.64271215771119,41.765230708854745],[-87.64302770859152,41.76522523324459],[-87.64316702427347,41.76522281549066],[-87.64329354402392,41.76522076693753],[-87.64343696631205,41.76521826841425],[-87.64374023839883,41.76521267951665],[-87.64377370165143,41.76521244896204],[-87.64396157975551,41.76521115377373]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3518648.10957","perimeter":"0.0","tract_cent":"1168631.42144394","census_t_1":"17031670100","tract_numa":"27","tract_comm":"67","objectid":"17","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866971.7218672","census_tra":"670100","tract_ce_3":"41.79049435","tract_crea":"","tract_ce_2":"-87.65720852","shape_len":"7959.28184974"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65487424667296,41.794171880303075],[-87.65487082341218,41.794066132656795],[-87.65486757480048,41.79395008454198],[-87.6548646417683,41.79380199272003],[-87.65486258656324,41.793689238753146],[-87.65485722957662,41.79343220478257],[-87.65485313271753,41.793280488281844],[-87.65485137502127,41.793215399088865],[-87.65484498246411,41.792980066280705],[-87.65483920350457,41.7927560984301],[-87.65483345450197,41.79253624717645],[-87.65482863079892,41.792346049547845],[-87.65482630614235,41.792254366784576],[-87.65482183120905,41.79208757008783],[-87.65481764077069,41.79192999586818],[-87.65481600143447,41.79186843184553],[-87.65481071685434,41.79167061991975],[-87.65480527566984,41.79146679707476],[-87.65480087638359,41.791303266502496],[-87.654796144266,41.79112609485525],[-87.65479122321162,41.79094250073008],[-87.65478631231326,41.79075794560971],[-87.65478249868048,41.790615384827596],[-87.65478001118586,41.79052301802142],[-87.65477783431103,41.790442192774954],[-87.65477259142774,41.79022657062277],[-87.65476726301334,41.79000856042739],[-87.65476174640989,41.78978412747993],[-87.65475660186485,41.78957306140056],[-87.65474976026871,41.78929343298879],[-87.65474468350133,41.78907594565865],[-87.65474112990597,41.78890522997909],[-87.65473890494168,41.788796323501764],[-87.65473745769548,41.78870650813756],[-87.65473624552237,41.78863129349704],[-87.65472940379611,41.78844208959818],[-87.6547232095001,41.78827146807218],[-87.65471522178208,41.78805182296263],[-87.65471040853814,41.78792677656577],[-87.65470965436155,41.787907193536064],[-87.65470815162166,41.78786815594227],[-87.65470133125108,41.78760966353073],[-87.65469632927078,41.787342827961034],[-87.65469390786305,41.78721479891478],[-87.65468961056658,41.78700346331581],[-87.65468442500804,41.78688594941482],[-87.65488649654701,41.786883603106055],[-87.65513327388905,41.78687973631092],[-87.65524534862993,41.78687798813402],[-87.65544213954287,41.78687491811763],[-87.65577924442444,41.78686960702053],[-87.65590037725032,41.78686823133755],[-87.65593337783194,41.78686784112473],[-87.65614678878028,41.786865316866724],[-87.65636164486605,41.7868618437947],[-87.65668408176322,41.78685660826215],[-87.6569834509166,41.786851729988946],[-87.65711449065854,41.786850762345935],[-87.65728942936522,41.78684946946125],[-87.65748406172817,41.786845921928816],[-87.65783617488745,41.78683951304432],[-87.65817288508511,41.78683334187164],[-87.65832762865878,41.78683205001317],[-87.65859925682979,41.786829782021364],[-87.65887706338376,41.78682507403733],[-87.65910117880323,41.78682125776803],[-87.65933296000709,41.78681729393644],[-87.65954069452745,41.78681641533668],[-87.65954497381706,41.786922189413026],[-87.65954763601208,41.78703287176845],[-87.65954875474002,41.78707937701084],[-87.65955373366018,41.78729724785426],[-87.65956265521015,41.78749571224956],[-87.65956455919758,41.78753806778957],[-87.65956946457989,41.78780208476687],[-87.65957085182866,41.787863289712256],[-87.65957356308054,41.787982915423974],[-87.65957668554655,41.78821847545529],[-87.65958343288592,41.78839585120742],[-87.65958933950594,41.78856485139556],[-87.65959117828031,41.78863721725613],[-87.6595930006861,41.78870897543441],[-87.65959730212809,41.788879503274806],[-87.65960212831669,41.78906995771751],[-87.65960880954364,41.78933539697469],[-87.65961660097548,41.78964189727296],[-87.65962275841277,41.7898873275758],[-87.65963003008483,41.79017343474108],[-87.65963481429033,41.790364410308634],[-87.65963763023422,41.79045661264505],[-87.65964084929979,41.79056200693702],[-87.65964641389147,41.79078001829555],[-87.65965309164775,41.79104581448386],[-87.65965967222265,41.79132439791749],[-87.65966513134974,41.79155599284738],[-87.65967028696873,41.7917745506267],[-87.6596746262885,41.79195858048652],[-87.65967976002972,41.792176150178946],[-87.65968335517101,41.79227540767548],[-87.65968727001892,41.792383497609485],[-87.65969139038707,41.792557344863674],[-87.6596967772098,41.79278188650388],[-87.65970303165675,41.79304257546959],[-87.65970675838726,41.79321900002413],[-87.65970813436279,41.7932765006079],[-87.65971185986176,41.79343220606454],[-87.65971891314383,41.79364119734189],[-87.65972019536677,41.79371304669264],[-87.65972054859314,41.793732827105195],[-87.65972241348967,41.79383732177692],[-87.65972671725942,41.79401660649165],[-87.65972895801578,41.79410026600234],[-87.65958966471025,41.79409813133886],[-87.65935621355456,41.79410150954663],[-87.65909283373345,41.79410531536835],[-87.65880571906236,41.79411339952347],[-87.65856488471046,41.794121425498474],[-87.65824951557408,41.79412764084081],[-87.65798470809547,41.79413118874594],[-87.65772790089025,41.794134179348575],[-87.65747971244642,41.794137082869604],[-87.65730110989756,41.79414063934352],[-87.65712333482193,41.79414417900509],[-87.656897219359,41.79414740329517],[-87.65663365679728,41.79415112007297],[-87.65639976562792,41.79415446223666],[-87.6561503987487,41.794157822469565],[-87.6558949074632,41.79416120093086],[-87.65565313287055,41.79416444019903],[-87.65531510881549,41.79416982776504],[-87.65498757839791,41.79417427106967],[-87.65487424667296,41.794171880303075]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3520525.10329","perimeter":"0.0","tract_cent":"1164733.91121415","census_t_1":"17031670600","tract_numa":"16","tract_comm":"67","objectid":"18","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864212.4768561","census_tra":"670600","tract_ce_3":"41.78300585","tract_crea":"","tract_ce_2":"-87.67157759","shape_len":"7968.48834578"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67364808269592,41.77931878900039],[-87.67390512861013,41.77931565046503],[-87.67390330628137,41.77948600957831],[-87.67391196064891,41.77978773145148],[-87.67393280651336,41.78051446551898],[-87.6739487901745,41.78107293849503],[-87.67395054896326,41.7811628016674],[-87.67395261666664,41.781268463856605],[-87.673976455069,41.78209455059828],[-87.67397830447993,41.78216333317198],[-87.67399719017338,41.78286570558187],[-87.67400093685842,41.7829822499846],[-87.67400583737012,41.783134695792185],[-87.67402669632884,41.783893776737024],[-87.67404790444509,41.78470478156641],[-87.67405047340877,41.78480595059478],[-87.67405349503333,41.78492496065782],[-87.67406006328096,41.785181314827355],[-87.67406644954478,41.785428557445286],[-87.6740719323758,41.78563424603676],[-87.67407869068253,41.78588719861925],[-87.67408517098609,41.78612799238955],[-87.67408677780769,41.786187937182056],[-87.67409021136376,41.78631603263122],[-87.67409492985328,41.78649254500143],[-87.67409987728286,41.78662752741925],[-87.67394107985884,41.78662791575892],[-87.67375353535076,41.78663046187459],[-87.67350868651118,41.78663597144053],[-87.6732835932413,41.78663873993085],[-87.6730319583752,41.786640916343174],[-87.67288860922407,41.786642063272396],[-87.6727425545196,41.78664323151308],[-87.67260187717899,41.78664524939198],[-87.67236621682375,41.786648641380324],[-87.67205981394086,41.78665305273093],[-87.67182449284022,41.78665553994497],[-87.67167140565687,41.7866572042096],[-87.67151920152249,41.786658858538146],[-87.67133866332433,41.78666122125553],[-87.67112691659902,41.78666398009886],[-87.6708905259368,41.78666706297791],[-87.67063253483997,41.78667045985447],[-87.67056421870387,41.78667089808838],[-87.67045863935273,41.78667156886815],[-87.67033114409566,41.78667242564585],[-87.67013175212597,41.78667539117052],[-87.66991842447705,41.7866785503028],[-87.66968408303357,41.78668202673333],[-87.66952580166206,41.786684377959226],[-87.66937386480468,41.786686628421215],[-87.66924494782619,41.78668799033061],[-87.66924101965789,41.78658701124476],[-87.66924076952002,41.78652597679642],[-87.66923583662982,41.78632534070097],[-87.66923381199652,41.786242613632524],[-87.66923091055897,41.786124046008254],[-87.6692268245989,41.785958596591875],[-87.66922316217072,41.785808956729625],[-87.66921884877443,41.78563357165906],[-87.66921440361399,41.785453191213215],[-87.66921026011435,41.7852826645076],[-87.66920706288971,41.78515336223383],[-87.6692031828017,41.784994939637144],[-87.66919953888664,41.78486920125435],[-87.66919644999957,41.78476262396956],[-87.66916499567718,41.783499931409985],[-87.6691568880884,41.78317446621327],[-87.66915571332765,41.783046174231615],[-87.6691548711473,41.78295422517408],[-87.66913210166872,41.782073175935594],[-87.6691127911968,41.781325958245084],[-87.66910937104223,41.781229120940885],[-87.66910787064576,41.78118663940451],[-87.66910609496581,41.78113637126799],[-87.66909007562322,41.780535690261445],[-87.66907890166777,41.78011920669356],[-87.66907188836412,41.7798572288862],[-87.66906350061748,41.77954391386384],[-87.66907886090783,41.77938321537298],[-87.66929681846389,41.77938126374409],[-87.67010586230174,41.77936771512093],[-87.67028436296086,41.77936673033735],[-87.67051424219432,41.77936546157167],[-87.67063946754497,41.779363526414365],[-87.671278904755,41.7793536793978],[-87.6714942956505,41.779350522175555],[-87.67167940205711,41.7793478086987],[-87.67243925922737,41.77933626555347],[-87.67269550541204,41.779333541708155],[-87.67294519509038,41.77933088717883],[-87.67364808269592,41.77931878900039]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3512438.56784","perimeter":"0.0","tract_cent":"1167378.58927242","census_t_1":"17031670800","tract_numa":"16","tract_comm":"67","objectid":"19","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864283.64422403","census_tra":"670800","tract_ce_3":"41.78314488","tract_crea":"","tract_ce_2":"-87.66187931","shape_len":"7954.87527917"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6639910993066,41.77947786384261],[-87.66422076561432,41.77946457161035],[-87.66422444755668,41.77962738751484],[-87.6642317554953,41.779924970119374],[-87.66424546735357,41.780483317531825],[-87.66425955744542,41.78118764009634],[-87.66426208875973,41.78129387128335],[-87.66426410157834,41.78137831224164],[-87.6642822036961,41.782063530075085],[-87.66429814146987,41.78266698306112],[-87.6643070925493,41.78300589998191],[-87.66430926769192,41.783110145761526],[-87.66431220776163,41.78325099495542],[-87.66432532858985,41.78382643937136],[-87.66435039728513,41.78481861889892],[-87.66435283781823,41.78492947663685],[-87.6643555282396,41.78505163900976],[-87.66435704140767,41.78512522196329],[-87.66435924369341,41.78521272302791],[-87.6643646406802,41.78544481133879],[-87.66436929227818,41.78564635190323],[-87.66437430353145,41.78586271344476],[-87.66437988873219,41.78610495697095],[-87.66438489751039,41.786321455695095],[-87.66439016603115,41.78654838422306],[-87.66439449268405,41.78674683854954],[-87.66414315286801,41.78675139516662],[-87.6638675599049,41.786754866414405],[-87.66377928913609,41.786755975229674],[-87.66362134158362,41.78675795939053],[-87.66337952394551,41.786760995173935],[-87.66316688612001,41.786764299469695],[-87.66296093239244,41.7867674996733],[-87.6626646516975,41.78677161571291],[-87.66254986512146,41.78677321368971],[-87.66233411911047,41.78677621700549],[-87.66211393479827,41.7867792941507],[-87.66196327246905,41.78678101233444],[-87.66177024485687,41.7867832132009],[-87.66146629112625,41.7867882966813],[-87.66139609702931,41.78678947617744],[-87.66119681016778,41.78679284009606],[-87.66091948106937,41.78679750187414],[-87.66075863839919,41.78679924341418],[-87.6606349082687,41.78680058321559],[-87.66034342485324,41.78680529765928],[-87.66015360194503,41.78680836750758],[-87.66005069449544,41.78681003149816],[-87.65980417345253,41.78681402013279],[-87.6596347474442,41.78681601795929],[-87.65954069452745,41.78681641533668],[-87.65953670121611,41.7867177188103],[-87.65953120426427,41.78648626067518],[-87.65952830838552,41.78636354652367],[-87.65952719158919,41.78631622842827],[-87.6595222183097,41.78610483410288],[-87.65951576118614,41.78583201386997],[-87.65951130209332,41.785641589188636],[-87.65950610683471,41.78542338742354],[-87.65950068135973,41.78519212175521],[-87.65949798945486,41.785096823952316],[-87.65949589530221,41.78499836685996],[-87.65949341676259,41.78490195283047],[-87.65947248976349,41.78408161695131],[-87.65946174044709,41.78363052950871],[-87.65946079210246,41.78359073173449],[-87.6594535385195,41.783286265038335],[-87.65945106619611,41.78317718584041],[-87.65944867318403,41.78307163297031],[-87.65943997786505,41.782734649743084],[-87.6594248347262,41.78214779225516],[-87.65941601625632,41.78179940764113],[-87.65940777212974,41.78147328257859],[-87.65940503182307,41.78135836274475],[-87.6594031688459,41.781280249279334],[-87.65940017991153,41.781154900223854],[-87.65939465265662,41.78091943501819],[-87.65938023054728,41.78030446437943],[-87.65937234285738,41.77998627232625],[-87.65936422448432,41.77965863853636],[-87.65936145554264,41.779543032699145],[-87.65960627014033,41.77954021500611],[-87.66034330525213,41.77953070370229],[-87.66057178576538,41.77952690981685],[-87.66084179482552,41.77952242606864],[-87.66141940836508,41.779513730893626],[-87.66147206570396,41.779512904914256],[-87.66164602450057,41.779510280999666],[-87.66178366750887,41.77950838501323],[-87.66283064399123,41.77949395682151],[-87.66299803723733,41.77949240123437],[-87.66320615063418,41.77949046711578],[-87.6639910993066,41.77947786384261]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5217003.30245","perimeter":"0.0","tract_cent":"1164821.62577062","census_t_1":"17031671300","tract_numa":"24","tract_comm":"67","objectid":"20","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1860895.51669745","census_tra":"671300","tract_ce_3":"41.77390182","tract_crea":"","tract_ce_2":"-87.67134962","shape_len":"10572.69708"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66910612402269,41.76849156468282],[-87.66942464092095,41.768487752489634],[-87.66959513224276,41.76849142699679],[-87.66981570697327,41.76848704784262],[-87.66998612431476,41.76848491797472],[-87.67013411556349,41.76848306839878],[-87.670751531676,41.76847601448251],[-87.67100720884991,41.768473093737434],[-87.67119823129408,41.76847112476543],[-87.67136751335549,41.76846937983758],[-87.6718069375371,41.768464418939395],[-87.67222172491994,41.76845972623838],[-87.67241183315163,41.768457212928304],[-87.67262816103116,41.7684543528245],[-87.6730172920694,41.76844925530607],[-87.67339689202333,41.76844428119903],[-87.67362490536182,41.76844095861179],[-87.67363057228634,41.768620489952404],[-87.67363609618732,41.7688991384841],[-87.67364294583287,41.769244641875744],[-87.67364514821735,41.76935670393944],[-87.67364848816914,41.76952665032694],[-87.67365520377328,41.769803918140155],[-87.67366270802151,41.77011373729042],[-87.67366792391131,41.770258987789305],[-87.67367611312656,41.77048703873942],[-87.67368128715596,41.770713308058944],[-87.67368892302173,41.77104722339411],[-87.67369324803555,41.77116887575587],[-87.6736971757682,41.77127935599554],[-87.6737014308485,41.771457787183444],[-87.67370528246298,41.771620318611035],[-87.67371269338237,41.771933054313436],[-87.67371300373615,41.77207648045776],[-87.67371342242201,41.772269838601744],[-87.67371941099107,41.7724920509681],[-87.67375382294642,41.77376895034012],[-87.67375666315247,41.77389145555285],[-87.67375992489868,41.774032108467466],[-87.67380489630727,41.77558624165283],[-87.67380840874921,41.77570666145346],[-87.67381222183086,41.77583738643308],[-87.6738538546321,41.777391939314896],[-87.67385745524733,41.77752384253337],[-87.67386286471702,41.77772199241595],[-87.67388108771506,41.77831955726751],[-87.67388290458564,41.77837829558496],[-87.67389596221837,41.77880693097239],[-87.67390677398882,41.779161846104664],[-87.67390512861013,41.77931565046503],[-87.67364808269592,41.77931878900039],[-87.67294519509038,41.77933088717883],[-87.67269550541204,41.779333541708155],[-87.67243925922737,41.77933626555347],[-87.67167940205711,41.7793478086987],[-87.6714942956505,41.779350522175555],[-87.671278904755,41.7793536793978],[-87.67063946754497,41.779363526414365],[-87.67051424219432,41.77936546157167],[-87.67028436296086,41.77936673033735],[-87.67010586230174,41.77936771512093],[-87.66929681846389,41.77938126374409],[-87.66907886090783,41.77938321537298],[-87.6690915314803,41.77925065612488],[-87.6690814801259,41.778877598890304],[-87.66906746090633,41.77835727718821],[-87.6690657775724,41.77829181577934],[-87.66905092712678,41.777714110972624],[-87.66904755906306,41.7775888350647],[-87.66904467487522,41.777481578241705],[-87.66902054254773,41.776636909618254],[-87.66900687977913,41.77604957903574],[-87.66900114666322,41.7758661995567],[-87.6689981252507,41.77576958675239],[-87.6689949723088,41.77566873901335],[-87.66898252870894,41.775240392392654],[-87.66896206371949,41.77450584604536],[-87.66894977298017,41.77405916832556],[-87.66894631495393,41.77395166113023],[-87.6689436667853,41.77386933752897],[-87.6689277822179,41.77317768312081],[-87.66890733628587,41.77248045877028],[-87.66890003448869,41.77223244192164],[-87.66888593679913,41.77213230608438],[-87.6688715833389,41.77203035204015],[-87.66886309202819,41.771705762413816],[-87.66885476808322,41.77142985756234],[-87.66884655347236,41.77115927726566],[-87.6688290187657,41.77041097068365],[-87.6688250202327,41.77031384635911],[-87.66882075318162,41.77021020496888],[-87.66879235342591,41.7691507692597],[-87.66878680189754,41.76895070609578],[-87.66877765732924,41.76862117195358],[-87.66877375708474,41.76849553710348],[-87.66900564602919,41.768492765599035],[-87.66910612402269,41.76849156468282]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"34926101.7509","perimeter":"0.0","tract_cent":"1148291.32335184","census_t_1":"17031650500","tract_numa":"52","tract_comm":"65","objectid":"21","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856526.84995397","census_tra":"650500","tract_ce_3":"41.76224665","tract_crea":"","tract_ce_2":"-87.73205903","shape_len":"23778.9375096"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72494487779716,41.75329344349576],[-87.72650797862332,41.753264908483374],[-87.72689041561055,41.75326310926092],[-87.72697386405002,41.753262716514556],[-87.72697387027996,41.75326271654743],[-87.72724519562736,41.753261439227444],[-87.727844880946,41.75324988058591],[-87.72827747968756,41.753237439313544],[-87.72879846710376,41.75323282147208],[-87.72920157962842,41.75322022157191],[-87.72933897423808,41.75321791831883],[-87.72953582174199,41.753214618041156],[-87.73000766495073,41.753209736444816],[-87.73042053692343,41.753204543476706],[-87.73107919288768,41.753193277381705],[-87.73141350425762,41.753180308513336],[-87.73176743069489,41.75317179439618],[-87.73201306937646,41.75316588437827],[-87.73206704743426,41.7531664412957],[-87.73212954714032,41.75316490221702],[-87.73218456117841,41.75316837346793],[-87.73223523524837,41.7531813172975],[-87.73227317017138,41.753200561260314],[-87.73228366377285,41.75321120397497],[-87.73229832955622,41.753226077735455],[-87.73231504510217,41.7532531689039],[-87.73232292639193,41.753279095553026],[-87.73232325886092,41.7532801884295],[-87.73232378086247,41.75328225707604],[-87.73232947906531,41.753304837694934],[-87.73232911070717,41.75332075276168],[-87.73658196972679,41.753040853943055],[-87.73658220015916,41.75316434907103],[-87.73718108824413,41.753148934213165],[-87.73730617663352,41.75314615251841],[-87.73777028264976,41.75314135532769],[-87.73818722531381,41.75313425374029],[-87.73828807952937,41.75312654317688],[-87.73868115699061,41.753124118738945],[-87.73911916149605,41.7531181521644],[-87.73939561355004,41.75314462312162],[-87.74018119074772,41.75320253842543],[-87.74027641242206,41.75320954770322],[-87.74121169064668,41.75327851973344],[-87.7412149191713,41.75327910142508],[-87.74130773416239,41.75329582355364],[-87.74149563409964,41.753291549959094],[-87.74149647345928,41.75342909442152],[-87.74149657031006,41.75344496169582],[-87.7415019486074,41.753725210307415],[-87.74150729508327,41.75389777972219],[-87.7415092980438,41.75396243883529],[-87.74152154359226,41.754348983547466],[-87.74152154419916,41.754348997272146],[-87.74153182530249,41.75467376045983],[-87.74153182594722,41.75467377006822],[-87.74153256523941,41.75469710105249],[-87.74153950444692,41.754883255560806],[-87.74155383347635,41.75527027692357],[-87.74155383343854,41.75527028103984],[-87.74157308783826,41.7557915757533],[-87.74159474001958,41.75636694893352],[-87.74160032270204,41.756509297513354],[-87.74162172988093,41.7570556074088],[-87.74162603942715,41.75719292733039],[-87.74162949881307,41.75730310139102],[-87.74163105426365,41.757353137859496],[-87.74163562360795,41.75749808856175],[-87.7416479163178,41.757847666896716],[-87.7416582582357,41.75810634397416],[-87.74166811003828,41.758360529102866],[-87.74166862883696,41.758373916584866],[-87.74167485102815,41.75853445849749],[-87.74168240145627,41.75872992032155],[-87.74168509637563,41.75879963932724],[-87.74169036066425,41.758936826357626],[-87.74172445662398,41.75959423654977],[-87.74173376673244,41.75977376160182],[-87.74174618438107,41.75996369067227],[-87.74175838362018,41.76015027055671],[-87.74177438817813,41.76039511765632],[-87.74177885735588,41.76046322718332],[-87.7417922430849,41.76083759148946],[-87.74178484741196,41.76128358575731],[-87.74182152501076,41.76191952048665],[-87.74184169557378,41.762269523297086],[-87.7418549622524,41.762589028751655],[-87.74186684053159,41.762971920490266],[-87.74186835866612,41.76327753412499],[-87.74187834496777,41.76360706679012],[-87.74189743370968,41.76411881269079],[-87.7418974333255,41.76411881460982],[-87.74189515687561,41.76413128810519],[-87.74189777732265,41.76423442350649],[-87.74189941064647,41.76429868514114],[-87.7418994109021,41.76429869721739],[-87.7419359308003,41.76595385321433],[-87.74194676297556,41.76644496177391],[-87.74196108880095,41.76709447381725],[-87.74197348367845,41.76765642023338],[-87.74198227461682,41.768054749728144],[-87.7419938734496,41.768580305793414],[-87.74199481987117,41.76862318325667],[-87.74201210488206,41.76940635477944],[-87.74201210521082,41.76940635889759],[-87.74203394848578,41.7703968352738],[-87.74204233875787,41.77067311546661],[-87.74204237759288,41.770674395334304],[-87.7420424375622,41.77067636769804],[-87.74204247687078,41.77067767583448],[-87.74205453828297,41.77112870869284],[-87.74205453853614,41.771128721043496],[-87.74163997164564,41.77113587781446],[-87.74146376602214,41.7711384952481],[-87.74085646755177,41.771147514600834],[-87.74024198248026,41.77115663771935],[-87.73963618658928,41.771165628464566],[-87.73902899844347,41.771174636530446],[-87.73841770271635,41.771183702720464],[-87.73771353818346,41.77119414157493],[-87.73726685751728,41.771200763976324],[-87.73719732826436,41.77120179485707],[-87.73717602842368,41.77120211052383],[-87.73706407510574,41.77120376998936],[-87.73668526462343,41.77120937761368],[-87.73634562363367,41.77121304697487],[-87.73597830756337,41.77121646413811],[-87.7358573597867,41.7712175890965],[-87.73552618447042,41.77122151932988],[-87.73513102630578,41.771226872380865],[-87.73487603420624,41.77123012162057],[-87.73476294629444,41.771231533904654],[-87.73445235598327,41.771235411589025],[-87.73422203114475,41.77123909559404],[-87.73414911016826,41.7712398470575],[-87.73354459915946,41.771246074389495],[-87.73307618704636,41.77125089768329],[-87.73293664763834,41.77125261344418],[-87.7328130566336,41.77125413302906],[-87.73232733591719,41.77125982467343],[-87.73190946482497,41.77126471960523],[-87.7316789031987,41.77126625671696],[-87.73131627322883,41.77127028478955],[-87.73110326543252,41.77127219731104],[-87.73077584025941,41.77127513567918],[-87.73033625043385,41.771280540794194],[-87.72989010290982,41.771286699592984],[-87.72931370358225,41.77129465415965],[-87.7290163987774,41.77129874369296],[-87.72867070226474,41.77130304787758],[-87.72835481283549,41.771306979980494],[-87.72803628842739,41.77131043409426],[-87.72785979496426,41.77131233071912],[-87.72745288809608,41.771316697230056],[-87.72719785283552,41.77131943330297],[-87.72693310496247,41.771323085734345],[-87.72683620285058,41.77132444419315],[-87.72667997889029,41.771326634540074],[-87.7262336087307,41.77133060008498],[-87.72581989037226,41.77133427414385],[-87.72571033765749,41.771335978323535],[-87.72561574038879,41.77133786524328],[-87.72555725917914,41.77133892254506],[-87.72501319324664,41.77134531056571],[-87.72495470452743,41.77134599704043],[-87.7246248927601,41.77134899772115],[-87.72439555853549,41.771352497125136],[-87.72379248067128,41.77135727126025],[-87.72363347428467,41.77135847753132],[-87.72342409305618,41.771360851710625],[-87.72318755586373,41.7713646746327],[-87.72313653357789,41.7713654991777],[-87.72257606181493,41.77137395486959],[-87.7225657256313,41.77100535028412],[-87.72255892204754,41.770667573343616],[-87.72255285466142,41.770458205297416],[-87.72254110879523,41.77005289225182],[-87.72253367653049,41.76980841786744],[-87.72252772415814,41.76955444041632],[-87.72251992418785,41.76922164064522],[-87.72251557297342,41.76906590586375],[-87.72250660846228,41.76864855947313],[-87.72249889244385,41.768289344820516],[-87.72249657347763,41.76819374819246],[-87.72248922197721,41.767886731519965],[-87.7224853989569,41.767735379690116],[-87.72247472528134,41.76731279347466],[-87.72246810699613,41.767067609780426],[-87.72246236367148,41.76682393981948],[-87.72245239884067,41.766401154775245],[-87.7224438805552,41.76608578912156],[-87.72244130720577,41.765928843589684],[-87.72243521908236,41.76555754712016],[-87.72243102850095,41.76519557872282],[-87.72241671662105,41.76500491049938],[-87.7223548604666,41.76410025705833],[-87.7223080563487,41.762292655111935],[-87.7223013068762,41.762031956671585],[-87.72229786900388,41.76189918485066],[-87.72229469137302,41.7617764588401],[-87.722292077087,41.76167548663308],[-87.72228674742385,41.76146963460926],[-87.72226308924002,41.760555889581134],[-87.7222591657025,41.760404356718034],[-87.72224785860007,41.759967630389255],[-87.72219532365052,41.75793846716572],[-87.72219178340266,41.75780172561332],[-87.72217820790127,41.75750194795402],[-87.7221753171933,41.757223275398204],[-87.72217598530328,41.75715161988713],[-87.72217731532136,41.75700884589021],[-87.72217498594735,41.75690174735048],[-87.72217526106843,41.75685586756926],[-87.72217568835241,41.75678463943338],[-87.72217742507308,41.75660158418162],[-87.72217158943623,41.756384882956475],[-87.72216420123279,41.75615474831303],[-87.7221605103082,41.75593025613886],[-87.7221515883283,41.75566277152544],[-87.72214691450948,41.75552264646886],[-87.72216852976132,41.755084964512015],[-87.72216988905308,41.754941684569545],[-87.72217066159762,41.75486025189113],[-87.72216599861632,41.75473818387117],[-87.72216162545749,41.75458560644786],[-87.72215421736759,41.7544460889556],[-87.72214654090372,41.75433490144614],[-87.72212922550705,41.754257076806574],[-87.72210187865326,41.754134164150614],[-87.72208095345238,41.75388560757924],[-87.72203842150911,41.75346040894168],[-87.72203628516748,41.75337409318685],[-87.72233626432269,41.75336849708011],[-87.72281582947348,41.753359676652195],[-87.723173027093,41.75335367051141],[-87.7234513241731,41.75334724447356],[-87.72371612036184,41.75333844090972],[-87.72428235354975,41.753328806300686],[-87.72494487779716,41.75329344349576]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7078901.65087","perimeter":"0.0","tract_cent":"1160087.4616938","census_t_1":"17031660200","tract_numa":"32","tract_comm":"66","objectid":"22","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864115.48766297","census_tra":"660200","tract_ce_3":"41.78283656","tract_crea":"","tract_ce_2":"-87.68861571","shape_len":"10649.0733362"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68364376326704,41.77935478483859],[-87.68363935062678,41.77921601523951],[-87.6839068959342,41.77924940979022],[-87.68411182608739,41.7792475767737],[-87.68429284850436,41.77924599252785],[-87.68450507505918,41.77924411770191],[-87.68466067989293,41.77924351448381],[-87.68486292580961,41.77924052471696],[-87.68493737516413,41.779239423764714],[-87.68500323998693,41.77923844995391],[-87.68546012697402,41.779232245947966],[-87.6859789847172,41.77922509924447],[-87.68609228871118,41.77922337836962],[-87.68627024621635,41.77922067519919],[-87.68649850457389,41.779217761824555],[-87.68670417959879,41.77921472088747],[-87.68687670789653,41.77921198704214],[-87.68715689090938,41.77920812959671],[-87.68730521764374,41.77920463712416],[-87.68745136641802,41.77920119560872],[-87.68765590280476,41.77920204373834],[-87.68780827073114,41.779202515781805],[-87.6879635408854,41.77919875027049],[-87.68811279418134,41.779195389844205],[-87.68824723137757,41.77919244000402],[-87.68840829011391,41.779189090596006],[-87.68852327077795,41.77918786412215],[-87.68868476048463,41.7791861419165],[-87.68883649872336,41.77918359006446],[-87.68897297769567,41.77918177022679],[-87.68903461788948,41.77918088676729],[-87.68925554352981,41.779177954232885],[-87.6896524496534,41.779171644250106],[-87.68973690584015,41.779170238946406],[-87.68994741849914,41.77916673740482],[-87.69015140082665,41.77916428456028],[-87.69041104996029,41.7791606335312],[-87.69060062933167,41.779157605312236],[-87.69085810966128,41.779154517440766],[-87.69095854519831,41.77915273708885],[-87.69116411878413,41.77914909318439],[-87.69137727063145,41.77914622261295],[-87.69157456383462,41.77914172707688],[-87.69178624664819,41.77913917713007],[-87.6919952848297,41.779137078285245],[-87.69217607607177,41.77913399401534],[-87.69246194078602,41.779129116897295],[-87.69272976461573,41.77912556138859],[-87.6929259297401,41.77912388304127],[-87.69319230019224,41.77911900054212],[-87.69339234976708,41.779115772482704],[-87.69339635752232,41.77922329569011],[-87.69340368503406,41.77938607317641],[-87.69340647354072,41.779514933337595],[-87.69340811344433,41.779591532712686],[-87.69340987848679,41.77967398416838],[-87.69341511502955,41.779847946715336],[-87.69341919890115,41.77997190179456],[-87.69342366192527,41.78011303826481],[-87.6934271961687,41.78023696283371],[-87.69343132111787,41.78038998020762],[-87.69343403931013,41.78052592023292],[-87.693436078596,41.78066745510761],[-87.69343975467066,41.780832435091064],[-87.6934447350582,41.78093935362618],[-87.69345014872526,41.781055576356216],[-87.69345246478952,41.781220905511425],[-87.69345541014852,41.78136719276913],[-87.69345962072377,41.781496856651046],[-87.69346390518368,41.78162646605556],[-87.69346737245888,41.781738699528],[-87.69347065634625,41.781876755777674],[-87.69347360003644,41.782001088662525],[-87.6934774867835,41.78214861607528],[-87.69348106026098,41.782283325890155],[-87.6934842899808,41.78240101916973],[-87.69348795284722,41.78251940093256],[-87.69349247038737,41.7826476669079],[-87.69349700651894,41.78276001306582],[-87.69350041429095,41.78284442207248],[-87.69350409531387,41.783031054490515],[-87.6935070787581,41.78315508569912],[-87.69351064049435,41.783331591002565],[-87.6935131548022,41.783458555984964],[-87.6935172001586,41.78358273031301],[-87.6935207151867,41.78374180908561],[-87.6935222523568,41.78387486094615],[-87.69352617333995,41.784011548820075],[-87.69352980486022,41.784129408684365],[-87.69353411536721,41.78427117566211],[-87.69353682971936,41.784359584432],[-87.69354037321028,41.78447892571645],[-87.69354469317456,41.7845841914575],[-87.69354916905246,41.78469324902986],[-87.69355316153522,41.784848570750135],[-87.69355611281497,41.78497216265301],[-87.69355909481624,41.78510741796473],[-87.69356216455779,41.78524860143216],[-87.69356401386463,41.78532075916196],[-87.69357442106258,41.78569758092358],[-87.69358151491942,41.78595470071908],[-87.69358547233799,41.786098144367365],[-87.69359238589489,41.78631004215972],[-87.69359512574917,41.78640707442582],[-87.69317742837968,41.786416239903176],[-87.6926612735969,41.78642236383024],[-87.69237602336105,41.78642734553565],[-87.69198240494325,41.7864342183484],[-87.6914778239129,41.78644163650106],[-87.69115603797938,41.786446885803386],[-87.69062703773974,41.78645551363094],[-87.69026382729507,41.78646113763332],[-87.68993704259033,41.786467091557675],[-87.68955410975106,41.78647406748598],[-87.68889985839544,41.786484436324436],[-87.68871826135087,41.786486930190776],[-87.68844372592652,41.786490699604144],[-87.68771746995174,41.786500122072574],[-87.6874981151583,41.78650408570686],[-87.68724019274848,41.786508745597864],[-87.68650715898052,41.7865211412892],[-87.68628005921663,41.78652484246513],[-87.68534083221584,41.786540145263494],[-87.68505689768521,41.786544688378356],[-87.68484123064421,41.78654813864938],[-87.68421908879952,41.78655587662153],[-87.68400854722877,41.78655196995237],[-87.6838306050637,41.78652872103305],[-87.68380175189405,41.785236806726324],[-87.6837992957211,41.78515600117992],[-87.68379476818717,41.78499063203134],[-87.68379383221207,41.784734474581306],[-87.68378532396606,41.78456041095222],[-87.68377943223568,41.784359468053566],[-87.68377349190854,41.784141510264256],[-87.68376981460914,41.7839536701434],[-87.68376715353625,41.783817757490475],[-87.68376278568401,41.7836401773808],[-87.68375895566153,41.78351106422952],[-87.68375439342537,41.783360047484216],[-87.68374864843577,41.78316637774672],[-87.68374346584521,41.782989643465854],[-87.68374158204996,41.78291095395423],[-87.68373971911974,41.78283313998874],[-87.68373509716277,41.78267090147577],[-87.683731973755,41.782558971568605],[-87.683728099486,41.78242335416889],[-87.68372478343552,41.782305084126016],[-87.68372126717658,41.782181186325346],[-87.6837179079248,41.78206360210626],[-87.6837141441546,41.78192790299064],[-87.6837114189466,41.7818274190214],[-87.68370773533452,41.78168381678983],[-87.68370424599905,41.78152460062626],[-87.68370034891647,41.781347626576576],[-87.68369748173576,41.78121758575753],[-87.6836908822722,41.78105538376629],[-87.68368526132842,41.780917236094204],[-87.68368267850278,41.78081710967017],[-87.68367986433309,41.780710917047855],[-87.68367759931476,41.78062289475119],[-87.68367542877846,41.78054011458787],[-87.6836730981113,41.78045129607219],[-87.68366987473503,41.78032756509334],[-87.68366632647272,41.780192361127355],[-87.6836639538025,41.78010414611327],[-87.68365994527741,41.77995642555986],[-87.68365580996343,41.77980310592628],[-87.68365387028217,41.77973116674255],[-87.68365247500158,41.77967942891362],[-87.68365190271643,41.77965821283478],[-87.68364801869147,41.77951436215374],[-87.68364376326704,41.77935478483859]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1095868.43462","perimeter":"0.0","tract_cent":"1151905.27784699","census_t_1":"17031290600","tract_numa":"5","tract_comm":"29","objectid":"105","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1894887.02680037","census_tra":"290600","tract_ce_3":"41.86744222","tract_crea":"","tract_ce_2":"-87.71780614","shape_len":"4276.4816798"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71952714944135,41.86624750003089],[-87.72012320064557,41.866239745789784],[-87.72012782270903,41.866452634092546],[-87.72014478223478,41.86699070835017],[-87.72014802652876,41.8671377082236],[-87.72015226325998,41.86732969117437],[-87.7201685189331,41.867764879497415],[-87.72017463293167,41.86792405144363],[-87.72018036242173,41.86805134874147],[-87.72018556561578,41.86816694886205],[-87.7201878911191,41.86830011248464],[-87.72019076312047,41.868437560058005],[-87.72019406901688,41.86853248361379],[-87.72019546828335,41.86857266339391],[-87.7201960612297,41.868587108744514],[-87.71988519676783,41.868590484392],[-87.71959730088322,41.86859446328632],[-87.71959722707277,41.86859446481286],[-87.71944626116293,41.868596550670254],[-87.71934101801322,41.868598004816754],[-87.71875499218876,41.8686047496075],[-87.71809553115209,41.8686121957346],[-87.71745221749839,41.8686202735195],[-87.71674648759654,41.86862856146627],[-87.7161369601106,41.86863571556805],[-87.715624390526,41.86864201913872],[-87.71561114791261,41.868642182270584],[-87.71549070056126,41.8686436627993],[-87.71548676566603,41.86845472117228],[-87.71548346281705,41.868344000208765],[-87.71547682589299,41.8681110484321],[-87.71547347500888,41.86799342293495],[-87.71546414553033,41.86781842655383],[-87.71546139385958,41.86773965165989],[-87.71545879898561,41.86765687099745],[-87.71545877889739,41.867656211993975],[-87.71545483548283,41.867527073897506],[-87.71545049150885,41.86735287244022],[-87.71544564768872,41.86721388201044],[-87.71543867517545,41.86696345434112],[-87.71543465010546,41.866798118798506],[-87.71543431092378,41.866784121275835],[-87.71543334864418,41.86674443417868],[-87.71543094546041,41.86664529877577],[-87.71542749781115,41.866503841345704],[-87.71542078841789,41.86628980936652],[-87.71563381663229,41.86628739904904],[-87.71663514996303,41.86628507829349],[-87.71785388122414,41.86626925618807],[-87.71870785917952,41.866258155506806],[-87.71879370528328,41.86625703942014],[-87.71952714944135,41.86624750003089]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5287088.03287","perimeter":"0.0","tract_cent":"1162177.84377003","census_t_1":"17031660700","tract_numa":"28","tract_comm":"66","objectid":"23","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1860854.7209442","census_tra":"660700","tract_ce_3":"41.77384531","tract_crea":"","tract_ce_2":"-87.68104236","shape_len":"10793.526667"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67848331061856,41.77916642638279],[-87.67848283692642,41.77912285801922],[-87.67853602174044,41.77862507182412],[-87.67873449014711,41.77677449016114],[-87.67877850478203,41.776366870097824],[-87.6787992808213,41.77617145743787],[-87.67881603718396,41.7759657304851],[-87.67881062877152,41.775731405457755],[-87.67880901104836,41.775665190388885],[-87.67880834364558,41.77564090423728],[-87.67855717648352,41.775644125144964],[-87.67855717060962,41.77564401780954],[-87.67845417265588,41.773832036861215],[-87.67844794017034,41.773723944667665],[-87.67835026379667,41.772019220468856],[-87.67871506409507,41.77201461975883],[-87.6787021094619,41.77148638974192],[-87.67869592508725,41.77123833889479],[-87.67866856562054,41.77027870762319],[-87.67866660482701,41.770201187595404],[-87.6786441699968,41.769343106511386],[-87.67862000357837,41.768385304075245],[-87.6786708654723,41.76838471463591],[-87.67873094808394,41.768384018542],[-87.67883859782098,41.768382771213524],[-87.6788708866568,41.76838239696064],[-87.67904572985113,41.76838037079786],[-87.67936301777299,41.76837669282232],[-87.67959085878633,41.76837487555797],[-87.67978871513507,41.76837329727617],[-87.6799168829485,41.76837183112236],[-87.6800636752144,41.76837014086291],[-87.68018942146333,41.76836870920982],[-87.68036268558883,41.768366736282054],[-87.68080781511266,41.768361933370585],[-87.68120739461277,41.76835762048589],[-87.6814541941958,41.76835526140224],[-87.6816877227103,41.768353018616985],[-87.68202663333432,41.76834872072767],[-87.68276741306592,41.7683393236722],[-87.68306953596944,41.768336149214115],[-87.68334341459824,41.768331989235044],[-87.68335208144397,41.76859112919438],[-87.68335758684341,41.76880812462052],[-87.68336028948619,41.768914646152055],[-87.68336577155114,41.769130543714255],[-87.683372903955,41.76941173747048],[-87.68338387184045,41.7698431758111],[-87.68338893558993,41.77002698683018],[-87.68339231637937,41.770149715610195],[-87.6834044220275,41.770589137456625],[-87.68341086374905,41.77083709378432],[-87.68341972697327,41.77116108085034],[-87.68343070415293,41.771513236350366],[-87.68343204986543,41.77155638432225],[-87.68343591742037,41.7716817105558],[-87.68343890705958,41.771777723271356],[-87.68344423434095,41.77197761483119],[-87.68344808055727,41.77212191006705],[-87.68345292121192,41.77229244064381],[-87.68345688200793,41.77243025421523],[-87.68345700074329,41.77243439850128],[-87.68346029626687,41.77254965045757],[-87.6834644052908,41.772701872421024],[-87.68346808108583,41.772846133468335],[-87.68347136112335,41.77297156639601],[-87.68347499049018,41.773109570176814],[-87.6834789811901,41.77325899227306],[-87.68348245766725,41.773390353983785],[-87.68348593083125,41.77352204498831],[-87.68348860757487,41.77362368143627],[-87.68349407723828,41.773783268526216],[-87.68350050194556,41.77397071013476],[-87.68350553637364,41.774162016075415],[-87.6835099735607,41.774328921836926],[-87.68351526658374,41.774527336955416],[-87.68351806658096,41.774634929205114],[-87.68352267426751,41.77479588079437],[-87.68352465187101,41.77486142577125],[-87.68352846717711,41.77498469368768],[-87.68353340621859,41.77514550992626],[-87.68353707362178,41.77526523685814],[-87.68354188064528,41.77542097539465],[-87.68354796735586,41.775599358860354],[-87.68355166924465,41.7757078645524],[-87.6835557673084,41.775922985623865],[-87.68355855979354,41.7760712482643],[-87.68356584918105,41.77633704706504],[-87.68357074694043,41.77651649679659],[-87.68357500725092,41.77667193033381],[-87.68357850922585,41.77680079480046],[-87.68358261174049,41.776950107659275],[-87.68358619676133,41.77708160711249],[-87.68359029386144,41.77723138646338],[-87.68359182191294,41.77733065625418],[-87.68359397897149,41.77741744333333],[-87.68359677559131,41.777530002408],[-87.6836031259588,41.777768956626886],[-87.68360790808224,41.777948981960755],[-87.68361298020523,41.77814023309368],[-87.68361809909088,41.77833771403302],[-87.68362148625226,41.778481671431486],[-87.68362353951838,41.778576059326916],[-87.68362528877434,41.77865817795708],[-87.68362667386856,41.77872319867098],[-87.6836278975784,41.778780671113395],[-87.68362893688243,41.77882949798556],[-87.68363095977598,41.77892333684462],[-87.68363285412185,41.779011713829824],[-87.68363935062678,41.77921601523951],[-87.6833910336238,41.77918502033475],[-87.68321045142115,41.77918292829685],[-87.68295458558433,41.77918584350812],[-87.68274277945406,41.77918966629938],[-87.68246694917475,41.77919455302712],[-87.68231703527081,41.779196466284844],[-87.68213635028938,41.77919877190252],[-87.68146912831797,41.77920832522044],[-87.68123364263516,41.77921168155084],[-87.6810914276713,41.77921300736808],[-87.68095915527014,41.779214239630534],[-87.68082472642666,41.77921633025715],[-87.68059597633827,41.77922071148211],[-87.68047782392958,41.779223003951266],[-87.68020301648852,41.77922819292723],[-87.67998990321824,41.779230768278666],[-87.67985399840323,41.779233782435256],[-87.67959824396343,41.779236526146114],[-87.67943446374959,41.77923693080103],[-87.67929880683265,41.779237265908826],[-87.67917505441972,41.779238618167845],[-87.67911959442866,41.779239352876644],[-87.67902471826275,41.779240610346264],[-87.67897803811204,41.77924122896117],[-87.67890738535785,41.779242165182495],[-87.6785411501137,41.77924687873333],[-87.67848523599672,41.77924734682086],[-87.67848331061856,41.77916642638279]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14369430.3568","perimeter":"0.0","tract_cent":"1132099.77860167","census_t_1":"17031640400","tract_numa":"59","tract_comm":"64","objectid":"24","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1863318.21459741","census_tra":"640400","tract_ce_3":"41.78117873","tract_crea":"","tract_ce_2":"-87.79124765","shape_len":"16096.7506642"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78153568671503,41.78490040068947],[-87.78152688818747,41.78467782365795],[-87.78151886890572,41.78447564021374],[-87.78150957000591,41.78424018945819],[-87.78150736092815,41.78418425034286],[-87.7814941768365,41.783867569467134],[-87.78148699961228,41.7836750033117],[-87.78148531279969,41.78362974146793],[-87.78147769775741,41.78341460684128],[-87.78146869099432,41.78317667412781],[-87.78146266111807,41.783017379838206],[-87.78145443656373,41.782800650566664],[-87.78144423064282,41.78253278549515],[-87.78143689455284,41.782340731713056],[-87.78142887313892,41.782130260390474],[-87.78142067838331,41.78191435451619],[-87.78141227033143,41.78169339809942],[-87.78140341333643,41.78146066647588],[-87.78139792199974,41.78134194369028],[-87.78139169080403,41.78120722906322],[-87.78138409453273,41.78099851609033],[-87.78137654715684,41.780792657140815],[-87.78136653150257,41.78051977109143],[-87.7813539652816,41.78017659099741],[-87.78134409911175,41.779907712038],[-87.78133750839312,41.7797271329159],[-87.7813308699894,41.77950748516206],[-87.7813243140893,41.7792905337959],[-87.78131541125839,41.77904611113253],[-87.78130954686154,41.77888598050565],[-87.78130276343033,41.77869971972308],[-87.78129773340996,41.77856226128744],[-87.78129079889347,41.77837199281535],[-87.78128367428438,41.77818957239603],[-87.78128116091543,41.778126277031646],[-87.78127758385045,41.77803619163634],[-87.78127056390976,41.77783302479836],[-87.781265474077,41.77767583645475],[-87.78142745803014,41.777673072387],[-87.78168892634145,41.77766980007154],[-87.78188076507548,41.77766740045274],[-87.78214540194017,41.77766230362596],[-87.78230014231012,41.777659423441335],[-87.78248663146361,41.77765665054702],[-87.78265181699021,41.77765419401792],[-87.78289784223614,41.7776518603179],[-87.78308839424027,41.777649864162484],[-87.78331053150887,41.77764565881281],[-87.78351466446058,41.77764180595853],[-87.7837100958709,41.77763997647362],[-87.78376619468314,41.77763945118876],[-87.78389877130593,41.77763820984814],[-87.78409659781873,41.77763440812849],[-87.78421459556647,41.77763231020862],[-87.78451126496542,41.7776284038662],[-87.78467883137948,41.777626185493865],[-87.78493036585789,41.777622631131365],[-87.78514626083604,41.77761958016758],[-87.78537440213276,41.77761635998039],[-87.78561486336835,41.77761297853188],[-87.78585433450425,41.77760961930476],[-87.78598072496571,41.77760786143809],[-87.78615213508614,41.7776060179092],[-87.7863379233336,41.77760401919639],[-87.78653087349909,41.77760021751012],[-87.78671626962226,41.777596598828225],[-87.78688450489241,41.77759331041789],[-87.78710568930946,41.77758901086779],[-87.78737347726744,41.77758405172347],[-87.78757973594035,41.77758023165983],[-87.78784414682096,41.77757575181981],[-87.78808391708287,41.777571675846715],[-87.78832372374836,41.77756762698885],[-87.78859201031725,41.77756295003216],[-87.78875933780532,41.7775600330107],[-87.78893970305045,41.777557347398464],[-87.78908926796474,41.777555119619116],[-87.78930494372653,41.777551887458635],[-87.78949649238224,41.77754903465948],[-87.78962222369763,41.77754715989386],[-87.78981457541501,41.77754471981455],[-87.7900238291789,41.77754219907881],[-87.79024315568492,41.77754079366008],[-87.79042479100937,41.77753964880286],[-87.79061567067819,41.777537861253464],[-87.79079753914323,41.77753515265667],[-87.79101800038877,41.77752990882143],[-87.79124326057394,41.777524550540726],[-87.7914114614751,41.77752089803009],[-87.79168270085805,41.77751089835076],[-87.79189684036749,41.77750285127967],[-87.79225214524679,41.777492999421774],[-87.79249973440677,41.77748768867735],[-87.79268190680261,41.777483688706305],[-87.79291402429281,41.77747838631326],[-87.7931085921862,41.777473950272864],[-87.79332750845033,41.77746896944458],[-87.7934993834846,41.77746443238755],[-87.79359244735686,41.77746197550319],[-87.7936787385469,41.77745969749271],[-87.79384800546939,41.777455717379844],[-87.7938871815668,41.777454781662065],[-87.79409567275138,41.77744980201145],[-87.79428012141094,41.7774453963491],[-87.79450556338683,41.77744041645142],[-87.79469528374244,41.77743626564275],[-87.79473074824674,41.777435489791905],[-87.79476266390245,41.777434880887434],[-87.79498247559137,41.77743068707052],[-87.7952574140905,41.777425416207116],[-87.7953493631195,41.777423771302935],[-87.7954676675211,41.77742165530092],[-87.7955624942319,41.77741995893308],[-87.79560880205126,41.77741913038128],[-87.79582195511637,41.777414968557665],[-87.79596840153198,41.777411137611175],[-87.79622063569126,41.77740453867622],[-87.7964961468991,41.77739646833805],[-87.79684191125251,41.77738746304682],[-87.79722459900421,41.777377915502534],[-87.79749262651238,41.77737041159815],[-87.79800370706735,41.77735627349231],[-87.79843269043556,41.77734334259981],[-87.79866753515391,41.77733625775639],[-87.79890173309391,41.777327495400215],[-87.79897838038998,41.77732471710872],[-87.7990027678947,41.777323821456555],[-87.7993694521192,41.777316497546956],[-87.7995607241544,41.77731437340394],[-87.79959099754208,41.77731403709311],[-87.79969522670834,41.77731287936046],[-87.8000776363316,41.777319101027224],[-87.8002605679184,41.777315044260966],[-87.80048084909699,41.77731015904408],[-87.80089887863522,41.777291532438255],[-87.80089887965335,41.77729154232246],[-87.800913131105,41.7774733126904],[-87.80092381983755,41.77760964011913],[-87.80093383172202,41.777830822046774],[-87.80093689094899,41.777921947301415],[-87.80094380087186,41.778114848813644],[-87.80094738546076,41.7782178587732],[-87.80094928126591,41.77827234166143],[-87.80095591276297,41.778463540678885],[-87.80096778881068,41.778632369673325],[-87.80098959676334,41.778978857204976],[-87.80099492274798,41.779018455524216],[-87.80101059469023,41.779134978701],[-87.8010105967515,41.77913499545078],[-87.80100388367025,41.77934827883586],[-87.80100660179295,41.77968015996804],[-87.8010176930625,41.78003249664886],[-87.80101769304888,41.78003249829537],[-87.80102359250787,41.78021910950575],[-87.8010381552465,41.780533014867494],[-87.8010567189116,41.78094388168939],[-87.80105671953366,41.78094389513933],[-87.80106796496165,41.78119340409169],[-87.8010809629438,41.781554696199656],[-87.80108096293017,41.781554697846175],[-87.80109533333054,41.78185649850509],[-87.80110664022655,41.78209426209832],[-87.80111740057919,41.782362567747676],[-87.80112595886843,41.78257797944172],[-87.80113432642611,41.78277212274978],[-87.80113432674283,41.7827721287887],[-87.80114622465449,41.78304921456946],[-87.80115944570139,41.783356966867956],[-87.8011723346287,41.783656210010264],[-87.80117574697063,41.783735645816854],[-87.80117574724424,41.78373565706975],[-87.80118155748882,41.783870528657935],[-87.80118309924161,41.78390631980482],[-87.80119536452074,41.78419227789813],[-87.80120394567989,41.78439171808344],[-87.80121249147557,41.78459983090288],[-87.80121542292427,41.7846706536839],[-87.80121615884292,41.784688433283385],[-87.80096079625572,41.78469487990694],[-87.80071887613543,41.78469864343774],[-87.80058785020324,41.78470067866804],[-87.800438597928,41.784702996942],[-87.80020459878537,41.78470663147359],[-87.79995794783402,41.78471044307395],[-87.79972116214947,41.784714101829174],[-87.79954194903948,41.78471697380443],[-87.79933361852942,41.784720303477634],[-87.79920669922316,41.78472233152214],[-87.79890166702376,41.784727197373414],[-87.79870052252294,41.78473059527746],[-87.7985463181172,41.78473320034793],[-87.79831829635233,41.78473672164681],[-87.79804194241459,41.78474092292071],[-87.79781326063315,41.784744440141736],[-87.79761815837021,41.7847576084942],[-87.7974419523495,41.7847604475811],[-87.79725093031082,41.78476352489809],[-87.79691421293495,41.78476014220969],[-87.79681284371216,41.78476284399868],[-87.79662862706131,41.78476775451751],[-87.79635440685566,41.784775474400824],[-87.79630309080437,41.784776366279885],[-87.79618586365868,41.78477840363577],[-87.79588904075098,41.78478356167593],[-87.79564400151115,41.78478754718793],[-87.79539280158983,41.78479161282747],[-87.79514101637746,41.78479551051788],[-87.79496539981072,41.7847979478997],[-87.79473585548186,41.78480113359471],[-87.79464581356785,41.78480238297488],[-87.79435269916205,41.7848068958027],[-87.79410223511292,41.784810727709285],[-87.79388143733397,41.78481410944994],[-87.79373113695003,41.78481604113694],[-87.79339195912979,41.78482039963665],[-87.79313437929372,41.78482442596115],[-87.79293547347969,41.78482755645313],[-87.79266597577805,41.784831722158],[-87.79252436086283,41.784834181900926],[-87.79234029229866,41.784837379011805],[-87.79222169694914,41.78483923545819],[-87.7919121534997,41.78484412708872],[-87.79164621156518,41.78484829618144],[-87.79145735389866,41.78485127527432],[-87.79130253750319,41.7848531635469],[-87.79102416690894,41.784856558492805],[-87.79075612983101,41.784861412686126],[-87.79069209938382,41.78486257873475],[-87.79048688230668,41.78486631542033],[-87.79023582436352,41.784870864426594],[-87.79008175699796,41.784873142364],[-87.78974901440971,41.78487806116383],[-87.78955432627964,41.784881032866636],[-87.78947137536971,41.784882339197466],[-87.78928101365248,41.78488533723029],[-87.78906274489333,41.78488877657103],[-87.78885960996205,41.78489238080343],[-87.78852685519094,41.784898283677826],[-87.7883095802704,41.784901260044336],[-87.78825178743378,41.78490204048467],[-87.78808398141805,41.784904305991205],[-87.78779714244818,41.784908158423995],[-87.78764164609957,41.784911291305356],[-87.78736066132429,41.784916952327535],[-87.78711995019502,41.78492069296335],[-87.78703098479681,41.784922081451896],[-87.78686387318186,41.784924689319794],[-87.78666852435806,41.78492771171664],[-87.7864200877616,41.78493193828511],[-87.78618955217938,41.78493585988313],[-87.7858019888344,41.78494162472145],[-87.78566904014838,41.78494358848945],[-87.78543562766193,41.784947031073465],[-87.78519897921916,41.78495117427968],[-87.78495397610963,41.784955463182044],[-87.7846659595456,41.78495976870523],[-87.78458808616082,41.78496093192458],[-87.7844014859642,41.784963719196405],[-87.78414335636143,41.78496759018274],[-87.78397887797706,41.78497036314077],[-87.78372485624774,41.784974644989916],[-87.7834439852689,41.7849794481644],[-87.78336890818092,41.78498059485216],[-87.78302802102624,41.78498579905346],[-87.78275912515068,41.784990917800016],[-87.78241298418207,41.78499750584023],[-87.78215492379627,41.785001871603235],[-87.78210207909761,41.78500276544647],[-87.78179858151118,41.78500792255882],[-87.78153919598994,41.78501099624578],[-87.78153568671503,41.78490040068947]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"831414.986736","perimeter":"0.0","tract_cent":"1154761.49822556","census_t_1":"17031291900","tract_numa":"4","tract_comm":"29","objectid":"107","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890857.28796963","census_tra":"291900","tract_ce_3":"41.85632749","tract_crea":"","tract_ce_2":"-87.70742831","shape_len":"4042.15728352"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70537254460363,41.85585855814737],[-87.70535838992852,41.855414932455666],[-87.70559235820353,41.855418181045394],[-87.7059636745219,41.855414788932706],[-87.70640438536022,41.8554107612576],[-87.70657632005374,41.855408655721284],[-87.7067284712536,41.855406849242726],[-87.70718310775489,41.855402565242585],[-87.70757331932751,41.85539888674102],[-87.70779552173695,41.8553968545642],[-87.70801710741048,41.85539482738118],[-87.70840545653552,41.85539192598407],[-87.7087969633936,41.855388999280855],[-87.70901272541462,41.85538720525085],[-87.70919809137376,41.855385663863764],[-87.70961900438894,41.855382203699996],[-87.71023125763612,41.855377168242605],[-87.71023503929965,41.855523732219],[-87.71023568936073,41.85555224777874],[-87.71023883576115,41.855690328542494],[-87.71024415203883,41.85592362052934],[-87.71024805310189,41.856035273770686],[-87.71025161866748,41.856137321928934],[-87.71025628566302,41.85627088893753],[-87.70920780902576,41.856636275599456],[-87.70904935179776,41.85669010637998],[-87.7087553248831,41.856789991578815],[-87.70803971986369,41.85704147848509],[-87.70784583639983,41.857111222144226],[-87.70760128691717,41.857199190688284],[-87.70689420448,41.857449097746546],[-87.70663501895804,41.85754313592219],[-87.70648802557474,41.8575962241099],[-87.7059553907548,41.857787856258305],[-87.70564373463152,41.857897103748755],[-87.70542977680164,41.857977770454646],[-87.70542711221331,41.857843873687884],[-87.70542497222254,41.857736354028255],[-87.70542015671008,41.85749436919597],[-87.70541661759056,41.85739111084865],[-87.70541268529485,41.85727637441002],[-87.70539376994395,41.85672448786968],[-87.70537254460363,41.85585855814737]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7104092.84407","perimeter":"0.0","tract_cent":"1137517.67806185","census_t_1":"17031640600","tract_numa":"32","tract_comm":"64","objectid":"25","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861478.9821611","census_tra":"640600","tract_ce_3":"41.7760361","tract_crea":"","tract_ce_2":"-87.77142809","shape_len":"13337.8563661"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76171488694926,41.77805330891449],[-87.76170678028785,41.77787922924073],[-87.76170294782848,41.77777404862419],[-87.76169646635975,41.77761199541238],[-87.7616957778123,41.77759478275948],[-87.76169271347881,41.777444434790816],[-87.76169016328967,41.77731876035455],[-87.76168771063408,41.77715514508713],[-87.76168454588081,41.77694402601216],[-87.76167825346296,41.77681040219241],[-87.76167098009545,41.77665509324525],[-87.76166395068753,41.776505384428056],[-87.76165658325648,41.77634420247634],[-87.76165297926838,41.776241796356906],[-87.76164651279758,41.77605805908715],[-87.76164264474095,41.77594456302915],[-87.76163737941312,41.77579025227159],[-87.76163263116997,41.77565202568254],[-87.76162640896095,41.77546927920327],[-87.76161918246045,41.77532956685868],[-87.76161079555142,41.77516741078579],[-87.76160505304006,41.77501317996055],[-87.76159974680752,41.77485936294719],[-87.76159510513114,41.77469676747434],[-87.76159119824254,41.774558764588726],[-87.76158271819865,41.77438783477342],[-87.76182165587586,41.77439267327309],[-87.76201643534256,41.77438831837722],[-87.76218484589691,41.7743851216112],[-87.76219845269526,41.77438501499185],[-87.76226378190579,41.77438406419081],[-87.76227244849406,41.77438393794606],[-87.76234217643929,41.77438292361702],[-87.76256190261783,41.77438254230757],[-87.76258128061353,41.77438250877228],[-87.76285893821901,41.77437944205251],[-87.76286102260522,41.77437999522526],[-87.76403023700125,41.77435601439659],[-87.76614427276014,41.7743126244529],[-87.76646581553004,41.77430602106466],[-87.76646581772958,41.77430602107551],[-87.7689081144888,41.77425583923441],[-87.77050697243821,41.7742229590017],[-87.77078208984328,41.774217299155204],[-87.77103511140766,41.77420997558619],[-87.7710834524155,41.77420921050319],[-87.7713525565209,41.77420495211258],[-87.77146637062549,41.7742027598195],[-87.77148195983247,41.774202459266164],[-87.77148413746488,41.77420241749958],[-87.77162036333263,41.774199793478616],[-87.77184191584176,41.774198088827504],[-87.77186704427571,41.77419789549177],[-87.77198769844607,41.774196967203686],[-87.77249396612427,41.77419019720168],[-87.77297556219104,41.77418099475798],[-87.77337131445621,41.77417097015868],[-87.77341758689593,41.77416979828288],[-87.77366403416362,41.774163555459644],[-87.77371635925233,41.774162635236955],[-87.77372622133245,41.77416246180956],[-87.77379639987059,41.774161228117975],[-87.77401427822844,41.77415739705224],[-87.77403397452046,41.77415705055863],[-87.77403539056523,41.77415702561835],[-87.77428145632254,41.77415269815447],[-87.77475379262577,41.77414344264735],[-87.77512204144571,41.77413463205613],[-87.77516544068958,41.774133593708314],[-87.77531567715327,41.77412999904562],[-87.77569848416672,41.77412261547064],[-87.77621403108431,41.77411356395854],[-87.77622787795633,41.77411328504825],[-87.77622900069255,41.774113262775096],[-87.776235674792,41.77411312855932],[-87.77665882075038,41.77410462286252],[-87.77676170641726,41.77410255486579],[-87.77686233743738,41.77410053184007],[-87.77734391209107,41.774093621131186],[-87.77774525765936,41.77408400947293],[-87.77814970972278,41.77407210154529],[-87.7782457490322,41.774070534822506],[-87.77828984931381,41.77406981564819],[-87.77867484137414,41.77406353509671],[-87.77868966454247,41.77406329298582],[-87.77869081694259,41.77406327412497],[-87.77869612098576,41.77406318776362],[-87.77894152873314,41.77405745989588],[-87.77900289193666,41.77405602790137],[-87.7790093671053,41.77405587664766],[-87.77927035055032,41.77404978468839],[-87.77984764672402,41.77403870394419],[-87.78039971990566,41.774026990388606],[-87.78047003750588,41.77402549834341],[-87.78091272852835,41.77401610338851],[-87.78111998028538,41.774012236837635],[-87.78111998321809,41.77401223685173],[-87.78112511852203,41.77414952850611],[-87.78113000922124,41.774314484563995],[-87.78113483576118,41.77443136013924],[-87.78114100604647,41.7745796369837],[-87.78114674404073,41.774705655458895],[-87.78115131966925,41.77480477418743],[-87.7811580288903,41.77494788444515],[-87.78116185660781,41.775029528252624],[-87.78116809814023,41.77519943051914],[-87.78117434287596,41.77534331681773],[-87.7811804016874,41.77547468820441],[-87.78118494357803,41.77559057443778],[-87.78118754538804,41.77568474392126],[-87.7811959223047,41.77585843780246],[-87.78120304612047,41.77600614864971],[-87.78120834553201,41.77613630887791],[-87.78121481774949,41.776292161396974],[-87.78122120918731,41.77642751359508],[-87.78122870028511,41.776584221735305],[-87.78123240611535,41.776660860424734],[-87.78123501848908,41.77677565281235],[-87.7812379445719,41.77690422419267],[-87.78124622849349,41.77708396081151],[-87.78125102760934,41.77718697747651],[-87.78125322637428,41.77724886049502],[-87.78125601873158,41.777327454764766],[-87.7812581970341,41.77739835051511],[-87.78125940452449,41.777488396816736],[-87.781265474077,41.77767583645475],[-87.78090292419988,41.77768202253662],[-87.78076577959509,41.77768515012873],[-87.78064411689199,41.77768707374274],[-87.78047709413215,41.777689990563225],[-87.78024387812478,41.77769493321981],[-87.78004396655385,41.77769814113636],[-87.77985186515993,41.777701223320555],[-87.77971340398275,41.77770395938578],[-87.77948231753095,41.77770852600726],[-87.77929714077315,41.777712133797095],[-87.77911885768528,41.77771560961146],[-87.77899367080897,41.77771805208502],[-87.77882421775068,41.777722136196886],[-87.7786236691316,41.7777269689556],[-87.77845081227655,41.77773041532112],[-87.77824928011285,41.77773446384338],[-87.77805867564051,41.777738290398986],[-87.77782238109475,41.777743020884266],[-87.77760131486953,41.77774619909862],[-87.77741816313002,41.777748832018666],[-87.7771990331061,41.777752848429714],[-87.77701965284089,41.7777559866332],[-87.7768869139009,41.77775836279804],[-87.77670239988747,41.77776161230699],[-87.77650021192184,41.777765160883554],[-87.77638052187157,41.77776766502258],[-87.77607635278905,41.77777402804217],[-87.77591460803946,41.777777057959064],[-87.77571861475967,41.77778074471344],[-87.77556871339158,41.77778361208212],[-87.77536051005764,41.77778745848975],[-87.77516238565782,41.77779172149934],[-87.77494845599043,41.77779632393406],[-87.77477479369892,41.77779959619506],[-87.77456142274535,41.77780322392898],[-87.77435423795234,41.777807979085544],[-87.77418181636273,41.77781191511867],[-87.77404371379062,41.777814423806646],[-87.77393717643722,41.777816358788996],[-87.77363850124382,41.77782178351951],[-87.77347686365464,41.777825112398844],[-87.77329858099081,41.77782846968413],[-87.77306731273107,41.77783272091522],[-87.77288818815046,41.77783596368577],[-87.77271826167082,41.777839603429925],[-87.77247287021945,41.77784485921344],[-87.77225161045317,41.77784918510515],[-87.77209541077988,41.77785113900527],[-87.77188009461187,41.77785497152533],[-87.77165691667436,41.77786063187863],[-87.7714956439894,41.777862371627755],[-87.77123451330023,41.77786638722916],[-87.77098200141968,41.77787247877459],[-87.7706878547921,41.77787696627638],[-87.77058812000622,41.77787919272476],[-87.77040153690808,41.77788335750924],[-87.7702730138266,41.777885842464485],[-87.77014562526944,41.777888305394555],[-87.76997485747299,41.77789177668891],[-87.76970974986415,41.77789599243416],[-87.76953877635967,41.77789778804822],[-87.7693212149541,41.777902592975636],[-87.76905229460806,41.77790899572569],[-87.76879375007216,41.77791515080155],[-87.76863926422166,41.77791809637137],[-87.7683645030344,41.77792357882541],[-87.76813927811443,41.77792848104236],[-87.76791940664266,41.77793329939299],[-87.76782469281183,41.77793479539125],[-87.76771942086528,41.777936458875416],[-87.76747586992214,41.777940748149256],[-87.767260472228,41.77794545005862],[-87.76705083439656,41.77794971342417],[-87.7668200722865,41.777954722976],[-87.76660906868999,41.77795036910985],[-87.76651597422195,41.777948447954785],[-87.76622577322557,41.777962768089054],[-87.76583619666006,41.77797099828029],[-87.765487751784,41.77797965000302],[-87.76538768232032,41.77798162549026],[-87.76506085069491,41.77798807727661],[-87.7647656666042,41.77799369708715],[-87.76449090559464,41.77799908794734],[-87.76429425033098,41.77800286170291],[-87.76416840868637,41.7780054686441],[-87.76394787125494,41.778010037064796],[-87.76368917860607,41.77801427070787],[-87.76340914505599,41.778018864433456],[-87.76307649213895,41.77802440379395],[-87.76294712046014,41.77802726603062],[-87.76250917245694,41.77803695447096],[-87.76230972612478,41.77804123320127],[-87.76217709185264,41.77804408576394],[-87.76198732645301,41.778048136535325],[-87.76171488694926,41.77805330891449]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7083525.07074","perimeter":"0.0","tract_cent":"1142832.36207779","census_t_1":"17031640700","tract_numa":"30","tract_comm":"64","objectid":"26","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861650.12374774","census_tra":"640700","tract_ce_3":"41.77640879","tract_crea":"","tract_ce_2":"-87.75194027","shape_len":"13264.6121774"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76158271086443,41.774387835011346],[-87.76158271819865,41.77438783477342],[-87.76159119824254,41.774558764588726],[-87.76159510513114,41.77469676747434],[-87.76159974680752,41.77485936294719],[-87.76160505304006,41.77501317996055],[-87.76161079555142,41.77516741078579],[-87.76161918246045,41.77532956685868],[-87.76162640896095,41.77546927920327],[-87.76163263116997,41.77565202568254],[-87.76163737941312,41.77579025227159],[-87.76164264474095,41.77594456302915],[-87.76164651279758,41.77605805908715],[-87.76165297926838,41.776241796356906],[-87.76165658325648,41.77634420247634],[-87.76166395068753,41.776505384428056],[-87.76167098009545,41.77665509324525],[-87.76167825346296,41.77681040219241],[-87.76168454588081,41.77694402601216],[-87.76168771063408,41.77715514508713],[-87.76169016328967,41.77731876035455],[-87.76169271347881,41.777444434790816],[-87.7616957778123,41.77759478275948],[-87.76169646635975,41.77761199541238],[-87.76170294782848,41.77777404862419],[-87.76170678028785,41.77787922924073],[-87.76171488694926,41.77805330891449],[-87.7614352397733,41.77805861738451],[-87.76104372013495,41.778066711877024],[-87.76070629113784,41.778073318301466],[-87.76043977646928,41.77807890523134],[-87.76003902034789,41.778086730695996],[-87.75967537262729,41.77809386188595],[-87.75927960294392,41.778101591594854],[-87.7589122517485,41.77810876498239],[-87.75864596156484,41.7781138551732],[-87.75842928459784,41.77811798498862],[-87.75816867829407,41.7781229375834],[-87.75790183809832,41.778128023021104],[-87.75763609770034,41.778133113350066],[-87.7572562071958,41.77814032014471],[-87.75686377139631,41.77814825858089],[-87.75662241344423,41.77815313959179],[-87.75636221263716,41.77815781569372],[-87.75607546349814,41.778162989002375],[-87.75579927567452,41.77816788537197],[-87.75564761013058,41.77817108698299],[-87.75547064173855,41.77817482250179],[-87.75523141439484,41.77817921733282],[-87.7549277229856,41.77818482366417],[-87.75463011899923,41.77819026830437],[-87.75442270156512,41.778194263215326],[-87.7543308256004,41.77819603270062],[-87.75405422711566,41.778201718651296],[-87.75376717819479,41.778207570760685],[-87.75342486806976,41.77821457025889],[-87.75321897410032,41.778218168646454],[-87.75314244684958,41.77821950149967],[-87.75295844019864,41.77822313722883],[-87.75278961379594,41.77822656533872],[-87.75254510148888,41.778231531888856],[-87.75228372132253,41.778236823704084],[-87.75200606380773,41.77824107370341],[-87.75175145018751,41.778244970413404],[-87.75149586051145,41.77825053701003],[-87.75125013748561,41.77825557672641],[-87.7509462589531,41.77826152861636],[-87.75079008416634,41.77826460902086],[-87.75050795047716,41.778270173291546],[-87.75035052858644,41.77827327147039],[-87.75001309701992,41.77827992879833],[-87.74969187260233,41.77828633815599],[-87.74956241200084,41.778289021579965],[-87.74938777062434,41.77829264154654],[-87.74909400902949,41.77829877717367],[-87.74882668903963,41.778304058633054],[-87.74851133494097,41.77830997313907],[-87.74836465820358,41.77831276735831],[-87.74809983332581,41.77831781202047],[-87.7478983735878,41.778321560674044],[-87.74764264385188,41.77832629469347],[-87.74745819883748,41.77832969022787],[-87.74728358074296,41.77833294349441],[-87.74714926176222,41.77833550583451],[-87.74681934840024,41.77834179860817],[-87.74663985181778,41.77834530042011],[-87.74643234159737,41.77834915281875],[-87.74610547352906,41.778355221442894],[-87.74593799972742,41.77835900425257],[-87.74568735739149,41.77836466445066],[-87.74550767664638,41.77836824588032],[-87.74521872093861,41.778374011984624],[-87.74503999322401,41.77837757011841],[-87.7448258435199,41.7783818247035],[-87.74471638608509,41.778383875696996],[-87.7445636219975,41.778386738156996],[-87.74435091985463,41.77838905082357],[-87.7441476943763,41.77839335987461],[-87.74397512039641,41.77839756098672],[-87.74371249996598,41.77840202230697],[-87.74350414121248,41.77840641392034],[-87.74306116794821,41.778415747190515],[-87.74262985735933,41.778424644745094],[-87.74229269392967,41.77842912375372],[-87.74228385946027,41.77814226047156],[-87.7422781949399,41.77797274101044],[-87.74227436879563,41.77785823195182],[-87.74226525742492,41.77754088931295],[-87.74225059111416,41.77722961041887],[-87.74223788755906,41.7769401587788],[-87.74222833481323,41.7766052332895],[-87.74222044330352,41.77632855693658],[-87.74220482591373,41.77611291189921],[-87.74218382791904,41.77583645294076],[-87.74217955439788,41.77555925673347],[-87.7421858906562,41.77531639140496],[-87.74218119561931,41.77503718966532],[-87.74216537225696,41.77478022094939],[-87.74253617761144,41.77476533711493],[-87.74268185607717,41.77475948941566],[-87.742691091571,41.774759260271004],[-87.74278585017333,41.774756908689575],[-87.74286316965768,41.77475498936737],[-87.74287055556054,41.774754805862585],[-87.74307630702138,41.77474960641206],[-87.7431386197943,41.774748562623984],[-87.74339200537433,41.77474431807677],[-87.74352177557023,41.77474214374554],[-87.74355275100079,41.774741624922406],[-87.74391611095854,41.77473196362467],[-87.74399865439767,41.77472973992537],[-87.74400870291198,41.774729442395795],[-87.74417547618145,41.77472503364017],[-87.74446391701684,41.77471770324496],[-87.74461193940346,41.774715211236504],[-87.74477382205968,41.77471248542625],[-87.74501307364066,41.774708112478386],[-87.74503093186865,41.77470774837277],[-87.74521164967457,41.77470406211224],[-87.74522961716976,41.77470369579079],[-87.74523139225124,41.774703659322],[-87.74540505080508,41.77470007493364],[-87.74566110006332,41.77469488097713],[-87.74583204321847,41.77469152547272],[-87.74600826681686,41.77468806662891],[-87.74628531613041,41.774683582381485],[-87.74630443869015,41.774683227557055],[-87.74643329084276,41.77468083503232],[-87.746496291672,41.77467966505333],[-87.74650322796225,41.77467953637422],[-87.74670710396944,41.774674951754896],[-87.74690357826593,41.77466999116928],[-87.74703799897209,41.774667415902414],[-87.74889105839075,41.77463189851152],[-87.7506776944006,41.774597626103514],[-87.75124111021681,41.77458681302925],[-87.75185970212385,41.774574936972414],[-87.75225748076524,41.77456729839037],[-87.7522574891993,41.77456729815861],[-87.75440991431357,41.77452594213789],[-87.75440991797946,41.774525942156366],[-87.75489135704149,41.774516686582736],[-87.75493759011233,41.77451579775537],[-87.7549432408669,41.77451568898875],[-87.75494660213167,41.77451562440499],[-87.75554091053984,41.77450419546989],[-87.75554091310596,41.77450419548279],[-87.7567327703838,41.774481266438734],[-87.7579064236404,41.774458675410315],[-87.75816404861712,41.77445371477451],[-87.75915062706129,41.77443471338653],[-87.76127691446155,41.77439373198877],[-87.76158270793171,41.77438783499675],[-87.76158271086443,41.774387835011346]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"889171.076103","perimeter":"0.0","tract_cent":"1157051.04108015","census_t_1":"17031270800","tract_numa":"4","tract_comm":"27","objectid":"123","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900215.59792553","census_tra":"270800","tract_ce_3":"41.88196155","tract_crea":"","tract_ce_2":"-87.69877054","shape_len":"4006.92008798"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70097184485559,41.88102679097626],[-87.70120775358022,41.881025585351644],[-87.7012145744215,41.88118320468617],[-87.70121631659863,41.88138274845927],[-87.70121887738837,41.88149372150512],[-87.70122732522125,41.88179708052622],[-87.70123116321992,41.88194110269371],[-87.70123853087571,41.88221758820144],[-87.70124134079498,41.88232780601344],[-87.7012508765583,41.8827161484798],[-87.70125401666236,41.88284681986753],[-87.70106240064965,41.88284817943683],[-87.69961219001178,41.88286326497859],[-87.69897792831227,41.88286972478127],[-87.69879250847487,41.88287152038869],[-87.6986350907656,41.88287304455607],[-87.69781767058925,41.88288183349813],[-87.69757512197508,41.882885169929956],[-87.69735817243534,41.88288815365438],[-87.69711266505824,41.88288989670341],[-87.69662652317591,41.88289447273653],[-87.6963350553292,41.88289772960711],[-87.69632849241356,41.882594108815994],[-87.6963229992279,41.88243841264286],[-87.69631944800894,41.8823179051782],[-87.69630954764439,41.88199319936296],[-87.696303299632,41.88178828586907],[-87.6962995461319,41.88154378014391],[-87.69629572453492,41.88135618970243],[-87.69629312954237,41.88122615290884],[-87.69628877644246,41.8810766587074],[-87.6964334816586,41.88107468332766],[-87.69661086681238,41.881072261352294],[-87.69707808219734,41.88106779812591],[-87.69726868388996,41.88106602739384],[-87.69751585351047,41.88106259341776],[-87.69770184951955,41.881061161177406],[-87.6979284141046,41.88105941605756],[-87.69821509192273,41.881056391537875],[-87.69845189816753,41.88105374922318],[-87.6987276026624,41.88105174344298],[-87.69891274914639,41.881050395930124],[-87.69921723503644,41.88104754961286],[-87.69942245598034,41.88104538950618],[-87.6997003920377,41.88104256000611],[-87.70006866267765,41.88103978892189],[-87.70035520396084,41.8810356606074],[-87.70068420141082,41.88103094220033],[-87.70097184485559,41.88102679097626]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11834901.0751","perimeter":"0.0","tract_cent":"1152335.16946945","census_t_1":"17031650400","tract_numa":"54","tract_comm":"65","objectid":"27","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1857679.20130248","census_tra":"650400","tract_ce_3":"41.76533037","tract_crea":"","tract_ce_2":"-87.71720734","shape_len":"14601.4321643"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7125247372072,41.76058132147187],[-87.71253999807008,41.75842746743442],[-87.71254775561138,41.75733733382749],[-87.71278459500843,41.75738663861045],[-87.71297201145357,41.75743018744838],[-87.71308211935163,41.757461655632795],[-87.71327673065701,41.7575193073835],[-87.71342423252254,41.757568814481324],[-87.7136324126224,41.757644719866605],[-87.71372003731308,41.75767983931654],[-87.71392076367505,41.757768739434944],[-87.71419433670314,41.75790502802073],[-87.71445786307578,41.75803817449343],[-87.71460743321957,41.758111018086204],[-87.71484053632348,41.75821587070404],[-87.71507317951134,41.75832106341143],[-87.71530627792498,41.7584266011338],[-87.71553846086724,41.75853213318534],[-87.71581291444704,41.758672882139756],[-87.71587856174274,41.7587068529761],[-87.71622182861566,41.75888604771028],[-87.71622608710021,41.75877629835608],[-87.71633186881424,41.75882935132028],[-87.71642898614678,41.75887824148094],[-87.71658127273759,41.75895487050497],[-87.7166638552702,41.75899064671616],[-87.71678789372928,41.759051001050004],[-87.7168380539651,41.759075625922996],[-87.71700290564588,41.7591320825543],[-87.71710263122755,41.75919573622939],[-87.71722880485167,41.75922454229878],[-87.71735937943518,41.759272238650574],[-87.71749088649814,41.759318224661094],[-87.71762332713169,41.75936250033301],[-87.71775670022777,41.759405065657184],[-87.71788182392966,41.75944792967521],[-87.71800601515663,41.75949250402822],[-87.7181288157963,41.75953878544294],[-87.71825114210445,41.75958677965225],[-87.71829815538077,41.759605212077844],[-87.71834470145778,41.75962467164678],[-87.71839078579542,41.75964447148923],[-87.71843640511408,41.75966495517521],[-87.71848156379653,41.75968577886725],[-87.71852625746148,41.75970728640393],[-87.71857048975295,41.759729134492666],[-87.71861471552715,41.75975166860583],[-87.71865801852837,41.759774883567005],[-87.7187013248289,41.75979775604015],[-87.71874462752339,41.75982097124139],[-87.7187879342576,41.75984384313525],[-87.71883169877886,41.759866718284485],[-87.71887500557493,41.75988959014577],[-87.71891877016363,41.759912464713246],[-87.71896253805538,41.759934996243494],[-87.71900630270882,41.75995787050345],[-87.71905007065963,41.75998040227502],[-87.71925112549157,41.76008438850015],[-87.71941251921888,41.76016758016434],[-87.71967966142955,41.76030793775677],[-87.72016110603882,41.76055680930072],[-87.72062116549805,41.76079047164979],[-87.72101977450339,41.76098229678501],[-87.72129847127205,41.761112764076415],[-87.7215699859083,41.76122775573339],[-87.72183435689523,41.76132315528057],[-87.7220740638792,41.76141053394931],[-87.72228674742385,41.76146963460926],[-87.722292077087,41.76167548663308],[-87.72229469137302,41.7617764588401],[-87.72229786900388,41.76189918485066],[-87.7223013068762,41.762031956671585],[-87.7223080563487,41.762292655111935],[-87.7223548604666,41.76410025705833],[-87.72241671662105,41.76500491049938],[-87.72243102850095,41.76519557872282],[-87.72243521908236,41.76555754712016],[-87.72244130720577,41.765928843589684],[-87.7224438805552,41.76608578912156],[-87.72245239884067,41.766401154775245],[-87.72246236367148,41.76682393981948],[-87.72246810699613,41.767067609780426],[-87.72247472528134,41.76731279347466],[-87.7224853989569,41.767735379690116],[-87.72248922197721,41.767886731519965],[-87.72249657347763,41.76819374819246],[-87.72249889244385,41.768289344820516],[-87.72250660846228,41.76864855947313],[-87.72251557297342,41.76906590586375],[-87.72251992418785,41.76922164064522],[-87.72252772415814,41.76955444041632],[-87.72253367653049,41.76980841786744],[-87.72254110879523,41.77005289225182],[-87.72255285466142,41.770458205297416],[-87.72255892204754,41.770667573343616],[-87.7225657256313,41.77100535028412],[-87.72257606181493,41.77137395486959],[-87.72211147834149,41.771380961869845],[-87.72197918038653,41.77138263533579],[-87.72182132518917,41.77138463201512],[-87.7213751621143,41.771394935033264],[-87.72104395197175,41.77139849428705],[-87.72057763744128,41.77140377451267],[-87.72012411372873,41.771411916460295],[-87.71965965197234,41.771420252863365],[-87.71928300110426,41.77142592440729],[-87.71895185412235,41.771430520800365],[-87.71844013708544,41.771437690096754],[-87.71818502622732,41.77144173070279],[-87.7176729833392,41.77144998953813],[-87.71729987045627,41.77145600587338],[-87.71692348647626,41.77146060083469],[-87.71654436715582,41.77146747109362],[-87.71614385015813,41.77147321031078],[-87.71577340411298,41.77147783340272],[-87.71522344295042,41.771487305074245],[-87.71488332494914,41.771493161206706],[-87.71451103956609,41.77149842895819],[-87.71413874516371,41.77150462851635],[-87.71392330352218,41.771508098185414],[-87.71350166077208,41.771514887203594],[-87.71298413346875,41.77152008560083],[-87.71286559740963,41.771521275665094],[-87.71277484601254,41.77152218702763],[-87.71277479028592,41.77152218754991],[-87.71277478884187,41.771522147200905],[-87.71274919291493,41.770808146904955],[-87.71274354776725,41.77063316784592],[-87.71271884787768,41.76985125249051],[-87.71271510889318,41.76973288379461],[-87.71270598989203,41.769442967532896],[-87.71268666735814,41.76883294234623],[-87.71266941021287,41.76829393676438],[-87.71266148508946,41.76806730250237],[-87.71265755630127,41.76795495181874],[-87.71265681173576,41.767932102586975],[-87.712654727686,41.767868147738724],[-87.71265050117393,41.76774953157503],[-87.71265039990541,41.767746689304],[-87.7126293634688,41.7671719878278],[-87.71262035628048,41.766862853142904],[-87.71261145996755,41.766557510292905],[-87.71258983326187,41.76590150527952],[-87.71258034259567,41.76556566722313],[-87.7125754833371,41.765393731834216],[-87.71257295771949,41.7653017516759],[-87.71256802276294,41.765122005585035],[-87.71255770814967,41.76481355857994],[-87.71255502431471,41.76473734933906],[-87.71255303163943,41.76468077794521],[-87.71255006880806,41.764584041182744],[-87.71254431906482,41.76439635222151],[-87.71254042459778,41.76424237606256],[-87.71253978153501,41.76421664721806],[-87.71253670068883,41.764093408899484],[-87.71252548837025,41.76373555980477],[-87.71252052641425,41.763574225322444],[-87.71251362804409,41.7633499211145],[-87.71251221867153,41.763306004645656],[-87.71250332350161,41.76297811578209],[-87.71249531587871,41.7626829564186],[-87.712475851279,41.762073061723605],[-87.71247455456276,41.762032444232396],[-87.71246539066001,41.761715656473186],[-87.71246080855474,41.761557262311605],[-87.71244784155105,41.761143831408646],[-87.71243822887435,41.7609040353806],[-87.71243786955414,41.76089507493126],[-87.71243158698715,41.76059625482183],[-87.7125247372072,41.76058132147187]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6868114.70025","perimeter":"0.0","tract_cent":"1158508.85281433","census_t_1":"17031630200","tract_numa":"15","tract_comm":"63","objectid":"28","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871362.34936382","census_tra":"630200","tract_ce_3":"41.80275528","tract_crea":"","tract_ce_2":"-87.69420589","shape_len":"13311.405386"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69409636378124,41.804456191156405],[-87.69409480914506,41.804409537931306],[-87.69409480638853,41.80440944625693],[-87.69382750260164,41.804422451852474],[-87.69314908943969,41.80445606366004],[-87.69285563632806,41.80445923065],[-87.69186796941861,41.80447121444765],[-87.69114901692191,41.80447817461086],[-87.69051945438804,41.80448631659288],[-87.68986468371939,41.80449362785125],[-87.68938921749098,41.80449679511426],[-87.68921268497064,41.80449889270789],[-87.6887193179595,41.80450401503423],[-87.68851619248923,41.804506305087926],[-87.68799760400542,41.8045119688062],[-87.6878816003937,41.80451303251155],[-87.68698793469154,41.80452344427069],[-87.68676784282798,41.8045259790776],[-87.68668714258995,41.80452689696725],[-87.68668697972521,41.8045268985203],[-87.68668619803178,41.80452690756695],[-87.68665738996022,41.80452722729194],[-87.68617451367717,41.804532586001585],[-87.68603420240898,41.80453454000255],[-87.68555640492376,41.80454145137615],[-87.6851537690389,41.804545977491024],[-87.68452014130845,41.80455309793724],[-87.68439389050516,41.80455438372679],[-87.68436794530248,41.80455464797348],[-87.6843665211736,41.80449925070989],[-87.6843521339386,41.80432283667622],[-87.68434265914135,41.80421128296018],[-87.68431985559204,41.80397767058671],[-87.6842920168531,41.80367616364434],[-87.68427992325505,41.80332990406478],[-87.68427560734216,41.80310707136429],[-87.68427197114165,41.80296378279033],[-87.68426878487138,41.80283820286829],[-87.68426495916142,41.80263941283752],[-87.68425717712216,41.80231666861937],[-87.68424807655668,41.801982774867966],[-87.68423404015603,41.801571080761626],[-87.68422853786456,41.801280484925755],[-87.68422403398748,41.80114618057829],[-87.68443566264483,41.801151658391866],[-87.68467182171833,41.80114766824329],[-87.6849308695923,41.80114336772052],[-87.68524611484023,41.80113806641967],[-87.68546744909834,41.801134003071866],[-87.6856692117112,41.80113029877536],[-87.68602466892241,41.8011234657045],[-87.68615591755696,41.8011212139357],[-87.68652924689408,41.80111692240204],[-87.68668056100029,41.80111399622497],[-87.68693371273511,41.801109100081156],[-87.68717046311924,41.80110466903677],[-87.68749715155347,41.80109926126697],[-87.6877863443597,41.801095178663296],[-87.6879021206043,41.80109316945911],[-87.68818295188457,41.80108829572454],[-87.68843026544964,41.80108375674992],[-87.68875364647025,41.80107902333762],[-87.68897153429789,41.801075652352054],[-87.6891205800239,41.801072741246756],[-87.68934049130357,41.801068445656654],[-87.69019775441123,41.801053352259295],[-87.69033869856926,41.80105053033208],[-87.69047948094222,41.80104771171737],[-87.69134002242527,41.801034851010435],[-87.69155945253667,41.80103074744313],[-87.69170383996237,41.801028047085566],[-87.69265047039319,41.801010388349795],[-87.69277806709715,41.80100821539841],[-87.69298552332978,41.801004682305184],[-87.69385434813198,41.8009922605758],[-87.69400021684466,41.800989399548094],[-87.69417150824063,41.8009860398224],[-87.69461142193948,41.80097819092438],[-87.69505092765068,41.80097034713061],[-87.6952190023832,41.800967663097026],[-87.69538238187387,41.80096505345802],[-87.69583307801193,41.80095808633849],[-87.69603024746344,41.80095503759433],[-87.69618501122945,41.800952149318256],[-87.6962988732886,41.80095002388514],[-87.69644134864693,41.800947340174304],[-87.696576890265,41.80094478662637],[-87.69705596723786,41.80093659850655],[-87.69746565592116,41.80092959460317],[-87.6976632599042,41.800926351988814],[-87.6978819191734,41.80092275897929],[-87.69794882714609,41.800921592548875],[-87.69827111906608,41.80091558123336],[-87.6987111249376,41.800907364775895],[-87.6988836394474,41.80090448228509],[-87.6990715595331,41.80090134210872],[-87.69987503389724,41.80088810235252],[-87.70010378255965,41.8008840832433],[-87.70028161730819,41.800880958216325],[-87.70044877592926,41.80087818820866],[-87.70107955300902,41.80086773439685],[-87.70132535989885,41.80086336353729],[-87.701652343426,41.80085754829604],[-87.70234336254609,41.800844990098085],[-87.70254354111968,41.800840916770994],[-87.70288073125617,41.80083405444265],[-87.70316189245123,41.800829724388365],[-87.7035846796568,41.80082320630457],[-87.70376588354931,41.80082074776667],[-87.70377368059566,41.801125537306824],[-87.70378144444165,41.8013572880581],[-87.70379011428682,41.801616085945994],[-87.70379975807992,41.80195962580475],[-87.70381072744428,41.80235037734159],[-87.70383192699079,41.80314095711857],[-87.70383287763177,41.803178992340456],[-87.7038383706279,41.80339884506903],[-87.7038426259912,41.80356917891424],[-87.70384575207781,41.803664008852024],[-87.70384837891038,41.80374370901196],[-87.70384955508906,41.803779387851606],[-87.70385566315504,41.803964701630065],[-87.70386282561006,41.804217513813036],[-87.70386351174744,41.804241730660046],[-87.70386401170136,41.804259375848936],[-87.7038654210124,41.80430912206176],[-87.70386807446498,41.80440244443206],[-87.70386901590004,41.804435240483656],[-87.70387037954784,41.804482720215546],[-87.70387017815767,41.80448272322843],[-87.70265186325396,41.804498681464445],[-87.70247272828259,41.80448569186673],[-87.70242031054917,41.804501183341415],[-87.70173395156988,41.804503929306705],[-87.70084998476437,41.804507298778354],[-87.69992645073629,41.80452485021878],[-87.69887725373111,41.804546503022266],[-87.69804450374784,41.80456316911028],[-87.69788812927432,41.804566763383725],[-87.69688569272883,41.80458865664921],[-87.69587639627015,41.80460878792135],[-87.6954228862644,41.804616904766824],[-87.69410221407155,41.80464420899737],[-87.69410205265996,41.80464421194116],[-87.69410145624717,41.80462174365004],[-87.69410065919708,41.804591712096986],[-87.69409816564595,41.80451025916221],[-87.69409636378124,41.804456191156405]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10493769.1657","perimeter":"0.0","tract_cent":"1154584.42118124","census_t_1":"17031630300","tract_numa":"39","tract_comm":"63","objectid":"29","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869891.08771097","census_tra":"630300","tract_ce_3":"41.7987971","tract_crea":"","tract_ce_2":"-87.70863786","shape_len":"13206.3620364"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70386282561006,41.804217513813036],[-87.70385566315504,41.803964701630065],[-87.70384955508906,41.803779387851606],[-87.70384837891038,41.80374370901196],[-87.70384575207781,41.803664008852024],[-87.7038426259912,41.80356917891424],[-87.7038383706279,41.80339884506903],[-87.70383287763177,41.803178992340456],[-87.70383192699079,41.80314095711857],[-87.70381072744428,41.80235037734159],[-87.70379975807992,41.80195962580475],[-87.70379011428682,41.801616085945994],[-87.70378144444165,41.8013572880581],[-87.70377368059566,41.801125537306824],[-87.70376588354931,41.80082074776667],[-87.70376153177145,41.80065062708977],[-87.70375343074342,41.80035944147549],[-87.7037511677072,41.800278115899836],[-87.70373924351789,41.79984401436819],[-87.70372562418942,41.79939947522663],[-87.70371591246283,41.79906911976011],[-87.7037136875264,41.798993088650924],[-87.70371038883788,41.79886527137044],[-87.70368715547882,41.798140323173136],[-87.70366413588431,41.79733738342568],[-87.70365950655781,41.79716684591145],[-87.70365669668776,41.79706332561674],[-87.70363947943862,41.79642447100693],[-87.70363442790548,41.79625297998073],[-87.70362995561204,41.79610114177017],[-87.70361500862919,41.79550763512643],[-87.70361232853368,41.79534033113319],[-87.70361059258565,41.795231974670656],[-87.70358983507398,41.79463267307878],[-87.70358511521367,41.79442720952982],[-87.70358291791989,41.79433155931908],[-87.70355407943639,41.79351390765323],[-87.70377482259575,41.793510834028936],[-87.7041691724713,41.79350487303299],[-87.70467828423796,41.793497175378135],[-87.70478068718703,41.7934952502167],[-87.70501521010733,41.79349084068555],[-87.70591354857352,41.79347977881438],[-87.70600466417272,41.79347869982242],[-87.70622279755837,41.793476116033034],[-87.70716568820404,41.79346165604952],[-87.70723097225633,41.79346074236747],[-87.70736139364934,41.79345891711135],[-87.7076208539686,41.79345412852677],[-87.70779740838904,41.793452263421074],[-87.70808219581146,41.79344879174714],[-87.70836098194428,41.79344399690265],[-87.70845740833211,41.79344139543171],[-87.70857938085511,41.79343810458644],[-87.7088424994582,41.793434211309766],[-87.70904773813956,41.793431594594125],[-87.70934719190561,41.793428336698874],[-87.7095321876703,41.793425746376414],[-87.70968348554919,41.79342286771589],[-87.709869957057,41.79341931969447],[-87.71014473377993,41.79341576113351],[-87.71036497152681,41.79341308621527],[-87.71063656593297,41.79340868593372],[-87.7109012242133,41.79340497411664],[-87.7110303602941,41.793403163252236],[-87.71128948943715,41.79339844252408],[-87.71141239696281,41.79339620342364],[-87.71155408704277,41.79339345003543],[-87.71184428382912,41.793387810564454],[-87.71202749030627,41.79338441069911],[-87.71225418889308,41.79338102614284],[-87.7124326203593,41.79337842310223],[-87.71299352004448,41.79336970775813],[-87.71326287838258,41.79336517942006],[-87.71339850340432,41.793361876190794],[-87.71340248413209,41.793517407206046],[-87.71340283204364,41.793531003742736],[-87.71340303103993,41.79353828596436],[-87.71341028512626,41.793804100993036],[-87.71341768476519,41.794007473246495],[-87.71342152023786,41.79411289384455],[-87.71343516837045,41.79457746497257],[-87.7134467180898,41.7949706200019],[-87.71345428383415,41.79523205429032],[-87.7134733405342,41.79587089017818],[-87.71349751936575,41.796644223724336],[-87.71350891144976,41.797031915802364],[-87.7135157711759,41.79726153962074],[-87.71352416276162,41.7975424355283],[-87.71354482739399,41.798299970507514],[-87.71355078260278,41.7984907302938],[-87.71355984918667,41.79878681913321],[-87.7135599545186,41.79879019874157],[-87.71356440013187,41.79893297694528],[-87.71357202942313,41.79918789371105],[-87.71357229456571,41.79919752511691],[-87.71358425505616,41.799631847976826],[-87.7135921412797,41.79990769127813],[-87.71359842333024,41.80011350326021],[-87.71361130630163,41.80053555007253],[-87.71361443207722,41.80068769943335],[-87.71361442951006,41.8006876994195],[-87.71361429855338,41.80068770200617],[-87.7134980221403,41.800689968792305],[-87.71370624388945,41.80081332451705],[-87.71374972306589,41.80247257167259],[-87.71376803937743,41.80347518452674],[-87.7137763123435,41.80392803879571],[-87.713710634972,41.80393008031425],[-87.71357629807501,41.80393072777158],[-87.71325117505685,41.80393789215807],[-87.71300904428766,41.80394413167491],[-87.71283294852365,41.803948669181146],[-87.71277424122661,41.803951096337535],[-87.71271598574633,41.80395421225036],[-87.71265727182208,41.803957325107746],[-87.71259901633384,41.80396044068675],[-87.71232644926275,41.80398503848585],[-87.71205691878775,41.804027489632496],[-87.71168454936995,41.804084476957186],[-87.71154314939614,41.80410429380117],[-87.71133613161642,41.80412992983275],[-87.71122556045096,41.80413825027541],[-87.71115034559003,41.80414092996314],[-87.71086600338282,41.804150366955085],[-87.71042120861193,41.80415858970229],[-87.71005668154939,41.80416313011723],[-87.70992967228648,41.804164499137656],[-87.70950413203522,41.80417282337226],[-87.70923635344789,41.804176171090845],[-87.70880029547271,41.80418169101719],[-87.70871822045633,41.80418261691234],[-87.7083215733237,41.80419064901733],[-87.7080505575485,41.80419613638382],[-87.70795855015372,41.80418122804019],[-87.70772072392323,41.80416895592607],[-87.70754563131256,41.804164571591656],[-87.70745484585383,41.80416544940696],[-87.70717009512967,41.8041697292167],[-87.70706141992298,41.80417153803646],[-87.70674823851789,41.80417634786817],[-87.70633280712352,41.804182313969456],[-87.7062557716452,41.80418360837266],[-87.70570506877658,41.80419192128992],[-87.70518187956921,41.80419969567495],[-87.7040800379831,41.80421390438633],[-87.70386282561006,41.804217513813036]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7079980.73636","perimeter":"0.0","tract_cent":"1159938.26453459","census_t_1":"17031630500","tract_numa":"31","tract_comm":"63","objectid":"30","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869431.5805783","census_tra":"630500","tract_ce_3":"41.79742771","tract_crea":"","tract_ce_2":"-87.68901664","shape_len":"10637.5482237"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69292355560773,41.793705963039336],[-87.69379793880665,41.79369080797132],[-87.69381076459604,41.79415020782218],[-87.6938150698569,41.7943044091582],[-87.69383314665367,41.79495762246831],[-87.69384444233162,41.79536705093396],[-87.69384766948508,41.79551579827661],[-87.69385221337285,41.7957252508079],[-87.69387668149477,41.79651030816097],[-87.6938955304477,41.79716341601563],[-87.69390015088952,41.797338662209135],[-87.69390679584235,41.79759070917923],[-87.69392599091236,41.79829390204796],[-87.69394333014976,41.79894401002104],[-87.6939458429507,41.79901515588278],[-87.69394707922481,41.799061239313936],[-87.69395053123242,41.799163638480074],[-87.69395492464758,41.79929397092552],[-87.69397239037171,41.799957224611376],[-87.69398787191481,41.800542365111625],[-87.69399603717684,41.80085097763243],[-87.69400021684466,41.800989399548094],[-87.69385434813198,41.8009922605758],[-87.69298552332978,41.801004682305184],[-87.69277806709715,41.80100821539841],[-87.69265047039319,41.801010388349795],[-87.69170383996237,41.801028047085566],[-87.69155945253667,41.80103074744313],[-87.69134002242527,41.801034851010435],[-87.69047948094222,41.80104771171737],[-87.69033869856926,41.80105053033208],[-87.69019775441123,41.801053352259295],[-87.68934049130357,41.801068445656654],[-87.6891205800239,41.801072741246756],[-87.68897153429789,41.801075652352054],[-87.68875364647025,41.80107902333762],[-87.68843026544964,41.80108375674992],[-87.68818295188457,41.80108829572454],[-87.6879021206043,41.80109316945911],[-87.6877863443597,41.801095178663296],[-87.68749715155347,41.80109926126697],[-87.68717046311924,41.80110466903677],[-87.68693371273511,41.801109100081156],[-87.68668056100029,41.80111399622497],[-87.68652924689408,41.80111692240204],[-87.68615591755696,41.8011212139357],[-87.68602466892241,41.8011234657045],[-87.6856692117112,41.80113029877536],[-87.68546744909834,41.801134003071866],[-87.68524611484023,41.80113806641967],[-87.6849308695923,41.80114336772052],[-87.68467182171833,41.80114766824329],[-87.68443566264483,41.801151658391866],[-87.68422403398748,41.80114618057829],[-87.68421664113747,41.80092571903024],[-87.68421165307544,41.80068589531996],[-87.68420053882878,41.80023315545577],[-87.68418985146961,41.79980085053678],[-87.68418185760413,41.799477308568214],[-87.68417780154957,41.79933411632384],[-87.68416955430956,41.79904295600514],[-87.68416734182539,41.798960313363864],[-87.68416349612191,41.79881725100197],[-87.68416225056508,41.79877092894281],[-87.68414895492452,41.79827507128928],[-87.68413357691685,41.79770208740672],[-87.68412900185245,41.79751019127183],[-87.68412481642184,41.79733463296634],[-87.68410599901063,41.79656104969967],[-87.68408006854038,41.795496668992634],[-87.6840747244474,41.795259013497216],[-87.68407430745943,41.79524048446242],[-87.684073430728,41.795201485665984],[-87.68407219623656,41.79514659213513],[-87.68406928566021,41.795017153758465],[-87.68405023642914,41.794252103597685],[-87.68404268054476,41.79391698865868],[-87.68404176962778,41.79387658348722],[-87.68425203442891,41.793865481976034],[-87.68431505411951,41.7938621549246],[-87.6849376536957,41.7938523609128],[-87.68583816503819,41.79383757802052],[-87.68602137012569,41.79383456980075],[-87.68651249348302,41.7938255277353],[-87.68659156848578,41.79382407169897],[-87.68756336735478,41.79380617296322],[-87.68770398456273,41.793804357362916],[-87.68785200489017,41.793802445973384],[-87.68800021922617,41.79380053218982],[-87.68875036988413,41.79378624726284],[-87.68882673737012,41.79378456730194],[-87.68893115354572,41.79378258962883],[-87.6899190251855,41.79376387389191],[-87.6901427399978,41.793758875182235],[-87.69034131959052,41.793754437890755],[-87.69107176560588,41.793741289882085],[-87.69136140634036,41.79373620619907],[-87.69155679557407,41.79373277643863],[-87.69233810785157,41.79371930079137],[-87.69258080808586,41.79371377180542],[-87.69292355560773,41.793705963039336]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"873692.71224","perimeter":"0.0","tract_cent":"1167112.68841877","census_t_1":"17031610500","tract_numa":"4","tract_comm":"61","objectid":"31","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1873901.87739449","census_tra":"610500","tract_ce_3":"41.80954414","tract_crea":"","tract_ce_2":"-87.66257903","shape_len":"3963.13404102"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.664650424251,41.80860906588994],[-87.66497251832394,41.80860444112622],[-87.6649798027717,41.80894943826911],[-87.66498291675451,41.80909692377499],[-87.66499179074685,41.80935831306514],[-87.66500102831283,41.80964119215886],[-87.66500684358441,41.80986867178951],[-87.66501504688077,41.810176956856466],[-87.66502054019294,41.81042158440968],[-87.66467704547125,41.81042609130874],[-87.66439066921838,41.81043029671739],[-87.66410605409382,41.810434456786645],[-87.66380419474014,41.810439009063764],[-87.66367898253338,41.81044089695346],[-87.66355083537198,41.81044282906542],[-87.66319314706169,41.81044737143501],[-87.66290186108384,41.810451063142004],[-87.662588199933,41.810455251076505],[-87.66225545018776,41.8104596927259],[-87.66197831826267,41.81046376884452],[-87.66185618849741,41.81046556491202],[-87.66152897865693,41.81047045753801],[-87.66137273073608,41.81047270394405],[-87.66117348536147,41.81047556793404],[-87.6611486109091,41.81047601404528],[-87.66102636640723,41.81047821965176],[-87.66080352390493,41.810482184205],[-87.66058640443178,41.810486072072315],[-87.66040296446248,41.81048936099447],[-87.66022223957594,41.81049258320503],[-87.66017780378802,41.80979614066274],[-87.66016363053058,41.80957400214183],[-87.66010587278643,41.80866874086063],[-87.66033250974286,41.808666116311734],[-87.66045961634299,41.808664725331106],[-87.66063306397346,41.80866282732152],[-87.66089432971538,41.808659966188664],[-87.6611676407652,41.808655705109445],[-87.66131862886012,41.80865309779317],[-87.6615266199845,41.8086495053156],[-87.66179591392938,41.80864701839682],[-87.66215679425109,41.80864144356327],[-87.66253350621659,41.808636796503485],[-87.66275996684507,41.80863400230132],[-87.6627637072255,41.80863395607808],[-87.66304828138195,41.80862941488404],[-87.6634441092214,41.80862464366437],[-87.66375442875879,41.80862051485597],[-87.6639345894314,41.808618117502526],[-87.66423420374517,41.80861346891451],[-87.66434502591903,41.80861233855426],[-87.664650424251,41.80860906588994]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10293029.8834","perimeter":"0.0","tract_cent":"1170343.99873585","census_t_1":"17031610600","tract_numa":"15","tract_comm":"61","objectid":"32","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875264.30961056","census_tra":"610600","tract_ce_3":"41.81321297","tract_crea":"","tract_ce_2":"-87.65068745","shape_len":"13754.5536027"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64929181871048,41.81869194995329],[-87.64900896063277,41.81866494017738],[-87.64887694820933,41.818634224584315],[-87.64878791617143,41.81862872497717],[-87.64831301194235,41.81859938824252],[-87.64817570220133,41.81859090563852],[-87.64806285420842,41.818597009172564],[-87.64779744118081,41.81859967908584],[-87.64748453171973,41.81860469930396],[-87.64702699079145,41.81861124213],[-87.64656790997142,41.81861769159825],[-87.64579213268658,41.81862737557206],[-87.6457822105435,41.81817536184218],[-87.64577658886625,41.81793954050689],[-87.64576714937932,41.817655945676734],[-87.64576450065742,41.8175647919506],[-87.64575822034496,41.8173486433636],[-87.64574930965921,41.81700533627166],[-87.64573889698863,41.816600109347696],[-87.6457268432914,41.81618375826103],[-87.64571229764618,41.81568130433896],[-87.64570211950362,41.81524386094011],[-87.64569491065144,41.81493700787684],[-87.64569205022661,41.814816654304366],[-87.64568732120823,41.81461769351062],[-87.64568048858575,41.81430993705507],[-87.64567242191309,41.81395637124218],[-87.6456644263159,41.81360302537485],[-87.64566075558213,41.81348086064105],[-87.64565587735248,41.81331853004576],[-87.64565114948653,41.81312955864407],[-87.6456415355808,41.81282120888484],[-87.64563400016556,41.81249341491048],[-87.64563014118524,41.81232953081674],[-87.64562622366886,41.81218850673614],[-87.64561840892577,41.81190717164882],[-87.64560513663339,41.81146076309347],[-87.6455950572689,41.811110231199756],[-87.64558743121468,41.81080126232193],[-87.64558522186934,41.81068947470326],[-87.64557943438112,41.81039665315861],[-87.64557161393262,41.81007843486453],[-87.64556159027482,41.80966442808657],[-87.64555339546256,41.80929206291695],[-87.64553794123329,41.80886374536395],[-87.64568385542317,41.80886792003455],[-87.6459404133719,41.808865214849114],[-87.6462300477159,41.80886215973435],[-87.64687181787153,41.80884711608886],[-87.6474043275675,41.80883457239892],[-87.64802601785382,41.80882705536575],[-87.64810332133341,41.80882612051117],[-87.64820585974894,41.80882428176564],[-87.6485982314778,41.80881724386348],[-87.64912326870504,41.80881057530026],[-87.64934220822668,41.80880790655667],[-87.649464884729,41.80880641107844],[-87.64960574812751,41.80880469413407],[-87.65006019930047,41.80879927486189],[-87.65039725956522,41.80879524624807],[-87.65038670482123,41.8084283240174],[-87.6503840941736,41.80833785736279],[-87.65037992109954,41.808193263701995],[-87.65037386995687,41.80806542668638],[-87.6503657335948,41.80788005692088],[-87.65036128887195,41.8077787943385],[-87.6503575929121,41.80760876431249],[-87.65035367937739,41.80742814007239],[-87.65034980282628,41.807247488603686],[-87.65034654383096,41.807098482335164],[-87.65034290547185,41.80697227848973],[-87.65103037230222,41.80696190182612],[-87.65134454326547,41.8069570714406],[-87.65165488555664,41.806953561897565],[-87.65201569318072,41.80695049491822],[-87.6521532524721,41.806949328525484],[-87.65244649068426,41.80694684057049],[-87.65263261286124,41.806945693602465],[-87.65277594364912,41.80694299642528],[-87.65299517381321,41.80694022034254],[-87.65328868097335,41.80693650349086],[-87.65354729136854,41.80693322758114],[-87.653789381842,41.80693016072282],[-87.6539746073549,41.80692781388642],[-87.65404295145309,41.80692694773154],[-87.65431439348079,41.80692350777002],[-87.65459316751304,41.80691997437351],[-87.65479308565047,41.80691743997457],[-87.65505902869491,41.806914067857974],[-87.65519797364418,41.8069123058265],[-87.65520147221577,41.807056772434805],[-87.65520753339206,41.80726803537367],[-87.65521059035028,41.807365063406884],[-87.65521577774962,41.80752969642713],[-87.65522110788173,41.80769902217854],[-87.65522293040023,41.807822607535215],[-87.65522534210378,41.80798618105622],[-87.6552306599434,41.80820537053722],[-87.65523227657032,41.80827704060237],[-87.65523465889272,41.80838267453498],[-87.6552391593235,41.80858550327638],[-87.65524046485282,41.80873418528035],[-87.65524133392545,41.80883316143434],[-87.65524173155681,41.808878444921405],[-87.65524210841241,41.80892142034748],[-87.65525184570586,41.80905545348774],[-87.65525466995588,41.809232887738645],[-87.65525928506136,41.8094352505994],[-87.65526233740013,41.80952838196781],[-87.655259314597,41.809863742319564],[-87.65525205249482,41.80993323944954],[-87.65523632969777,41.810085014964],[-87.65520786704653,41.8103596040132],[-87.65520023683706,41.81054123288225],[-87.65519847848518,41.81059505561998],[-87.655198478271,41.81059507592636],[-87.65519718472943,41.81071163174634],[-87.65519905704633,41.81077756034135],[-87.65520432245648,41.81094952039765],[-87.6552096931379,41.811132403293215],[-87.65521598222585,41.81134649403476],[-87.65522275712954,41.81157013771988],[-87.65522791889063,41.81174849130504],[-87.6552341824479,41.811968454624626],[-87.65524060757528,41.81219393488547],[-87.65524562540432,41.81236973514952],[-87.65524980132878,41.81251465787643],[-87.6552510651815,41.81255884818872],[-87.65526440155881,41.81306153893569],[-87.65527113721993,41.8133226304385],[-87.65527215825718,41.81336219493145],[-87.65528510286018,41.813832146278486],[-87.65529313223811,41.814135134281756],[-87.65529500123489,41.814205843894186],[-87.65530611091036,41.81462618924418],[-87.65532173493922,41.81510650221909],[-87.6553217136439,41.815148589122366],[-87.65532154194894,41.815496956554966],[-87.65532898080282,41.8157794412498],[-87.6553329726325,41.81598212402602],[-87.65533758154888,41.81621610614687],[-87.6553468644838,41.81646632902054],[-87.6553603013713,41.816677552816515],[-87.65536965070095,41.816966744757366],[-87.65537878173411,41.81725855370685],[-87.65538111942124,41.817333255397834],[-87.65538212563249,41.81738174799691],[-87.65538564356599,41.81755125979837],[-87.65538908299764,41.81783037277105],[-87.65539243867401,41.81805481930009],[-87.65539588141768,41.81823275089326],[-87.655399378259,41.81850938115297],[-87.65540597545541,41.81859292915993],[-87.655132472959,41.81860413398203],[-87.65463870268258,41.818624360582106],[-87.65440153558797,41.81862724008886],[-87.65389535315,41.81863346787978],[-87.65329626933121,41.818640954698864],[-87.65318748647972,41.818642310927174],[-87.65297988593197,41.81864489905568],[-87.65263268274033,41.818649263646414],[-87.65231626230955,41.81865323339833],[-87.6519694258131,41.81865757071522],[-87.65189160494492,41.818658547893754],[-87.65163671503466,41.81866174383271],[-87.6511778250603,41.8186674993489],[-87.65094469263558,41.81867042312025],[-87.65067813817653,41.81867529765842],[-87.65040670132461,41.818680261102806],[-87.64999537124166,41.81868802353926],[-87.64967885829068,41.81869379669453],[-87.64942727625427,41.81868815164768],[-87.64929181871048,41.81869194995329]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4931603.07452","perimeter":"0.0","tract_cent":"1167557.80527795","census_t_1":"17031600700","tract_numa":"31","tract_comm":"60","objectid":"36","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885343.21857247","census_tra":"600700","tract_ce_3":"41.84093081","tract_crea":"","tract_ce_2":"-87.66061783","shape_len":"9348.5505594"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66086225130158,41.83784755897412],[-87.66120753827617,41.83784334287399],[-87.66125321942566,41.83784285578287],[-87.66143853325981,41.83784087984704],[-87.66165606196483,41.83783477006261],[-87.66175104045297,41.837837575743606],[-87.66180051750082,41.83784014276788],[-87.6618088577638,41.83784222996997],[-87.66183197201391,41.83784801417571],[-87.66346551323149,41.83784343494187],[-87.66388575187626,41.83846181666178],[-87.66403066940705,41.838678368386944],[-87.66404067470866,41.83869331926528],[-87.66413109818578,41.83883082226838],[-87.6642851178734,41.839065032247895],[-87.6643844292771,41.839250857330384],[-87.66441081584907,41.83930022993842],[-87.66453755697589,41.839555196651176],[-87.66456648247464,41.83988223438909],[-87.66456524182318,41.839900093422635],[-87.66456364272324,41.839923124679046],[-87.66455747536871,41.840011930752084],[-87.66452844904755,41.84042987780046],[-87.66454220020846,41.840659982067145],[-87.66457355748108,41.84075700971884],[-87.66464718562176,41.84088952969042],[-87.66484348231597,41.841242833813915],[-87.66493764694638,41.841521814804594],[-87.66496896860639,41.841618869570794],[-87.66495177757595,41.84171561458613],[-87.6645940552287,41.84232049529743],[-87.66447319138473,41.84252486342617],[-87.66430961138158,41.84280145831626],[-87.66394639604212,41.843915891072164],[-87.66391878039097,41.844000621952745],[-87.66388768731139,41.84409602036017],[-87.6637776762217,41.84429156639367],[-87.66360685354249,41.844405994106495],[-87.66345070413499,41.84450343783441],[-87.66288401496085,41.844751954620534],[-87.66252443300553,41.844909643533946],[-87.6621306603932,41.845103694132476],[-87.66163820270657,41.84534637253661],[-87.6607786029615,41.84583586740942],[-87.66077326669641,41.84583890616663],[-87.66072032808557,41.84571608657964],[-87.66058836585539,41.845420310290216],[-87.6605548021933,41.84534508092199],[-87.66029827311286,41.844853781928016],[-87.66013310631274,41.84465863165252],[-87.65994714056421,41.84443890480345],[-87.659761731412,41.8442217618892],[-87.6594245189111,41.843828973197304],[-87.65915159885382,41.84351106816278],[-87.65914671610984,41.84350542199735],[-87.65893346066214,41.84325879730884],[-87.65882948602088,41.84313691780508],[-87.65868268262909,41.842962798513305],[-87.65867879104515,41.842958182582656],[-87.65861194545589,41.84287889841248],[-87.65854861535149,41.8428037830833],[-87.6584967679541,41.84274228745123],[-87.65839846819016,41.84262569478194],[-87.65836020159232,41.84258030703103],[-87.65830578097764,41.84251575911355],[-87.65818266297435,41.84236972840842],[-87.65812524035849,41.84230161881637],[-87.65797909466833,41.842128273884484],[-87.65773067151028,41.8418460594438],[-87.65767477505439,41.841782832684075],[-87.65736796180437,41.84143577827589],[-87.65733893697067,41.841402946606564],[-87.65719478095477,41.841235932952905],[-87.65696869251352,41.84097343027282],[-87.65678473765979,41.84075947436179],[-87.65662884802954,41.84057790115734],[-87.65621430666394,41.84009732503394],[-87.65609837387056,41.839962364699325],[-87.65590709931054,41.83973969533977],[-87.6556279441447,41.83941471692472],[-87.65491852405302,41.83858711191512],[-87.65435934080651,41.83793717396521],[-87.65480421116459,41.83793066945745],[-87.6552882062515,41.83792359122734],[-87.6554064226589,41.83792203023288],[-87.655675144673,41.837918481752205],[-87.65601960062858,41.83791393194271],[-87.6565894713797,41.837906402616255],[-87.6568864327673,41.83790189061455],[-87.65740162721649,41.8378940607551],[-87.65796251238557,41.83788594401306],[-87.65844122112543,41.837878960818664],[-87.65856610463233,41.83787713771924],[-87.65893850196292,41.837871700480065],[-87.6590315406251,41.83787051783629],[-87.65932712797616,41.83786675518533],[-87.65975012211064,41.837861369620256],[-87.6599859589877,41.8378583802756],[-87.66025480599306,41.83785497384339],[-87.66064112521765,41.837850258665455],[-87.66084991962252,41.837847709608326],[-87.66086225130158,41.83784755897412]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3517409.34925","perimeter":"0.0","tract_cent":"1168487.92657349","census_t_1":"17031611100","tract_numa":"18","tract_comm":"61","objectid":"33","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872278.28844056","census_tra":"611100","tract_ce_3":"41.80505927","tract_crea":"","tract_ce_2":"-87.65758172","shape_len":"7961.79379237"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65977757034942,41.801383001481426],[-87.65991844005372,41.80138243355406],[-87.65991902249029,41.80152373428755],[-87.65992564029065,41.80171488487793],[-87.6599287272265,41.80183714234529],[-87.65993046245586,41.80190586027857],[-87.65993688171332,41.80215447495118],[-87.65994251941942,41.80237265094848],[-87.6599475676147,41.8025770746313],[-87.65995424562442,41.80282547124868],[-87.65996062029612,41.803067883543804],[-87.65996353078934,41.80320560067915],[-87.65996562350932,41.80330463457007],[-87.65996875826139,41.80342559368956],[-87.65997408717251,41.80361723035594],[-87.65997512645023,41.80365952554386],[-87.65997799646718,41.803776311522476],[-87.65998307733872,41.804005653690645],[-87.65998521383169,41.804098233824654],[-87.65998736639412,41.80419152152692],[-87.65999123796269,41.80431918071687],[-87.65999647718137,41.80449487283132],[-87.65999887734586,41.80456749233159],[-87.66000319849473,41.80469824612904],[-87.66000374691525,41.80471484208685],[-87.66000501682201,41.804753433839736],[-87.66000502685898,41.80475373631828],[-87.66000789384333,41.80484086838543],[-87.66001087008713,41.80493129779568],[-87.66001226008208,41.805028937010626],[-87.66001395551022,41.80514805914269],[-87.66001908831079,41.80535841086644],[-87.6600234863815,41.805537418597034],[-87.66002709549608,41.805682063311565],[-87.6600302195694,41.805808647817145],[-87.66003513949995,41.80600080369302],[-87.66004386700122,41.80633379087451],[-87.66004974663359,41.80657795645661],[-87.66005834157366,41.806846580966045],[-87.6600598057442,41.80689237263679],[-87.66006361154552,41.80702637066534],[-87.66007163782378,41.807338771581946],[-87.66007822874633,41.80759205229625],[-87.66008597549224,41.80789616382071],[-87.66009217366724,41.80814145635666],[-87.66009433894922,41.808225422026105],[-87.66009673869361,41.80831848909697],[-87.66010587278643,41.80866874086063],[-87.6599485702958,41.80867056229999],[-87.6596312805014,41.80867471184581],[-87.65928665743482,41.808679523688305],[-87.65904680741171,41.8086828907999],[-87.6588956294833,41.808684767878795],[-87.65875567674868,41.808686505407074],[-87.6585565863092,41.80868948871999],[-87.65843728024952,41.80869127633923],[-87.65833982728473,41.80869265985781],[-87.65813653208654,41.808695546383625],[-87.65791469424182,41.80869868796397],[-87.65767198074487,41.80869885227905],[-87.65752474551633,41.808698946655404],[-87.6572067777895,41.808704786967425],[-87.65688884734979,41.8087105991759],[-87.65661956053135,41.80871581890936],[-87.6564595383668,41.80871805945598],[-87.65629944283842,41.80872029934723],[-87.65588330141905,41.80872432240424],[-87.6555674373416,41.808728880772996],[-87.65524046485282,41.80873418528035],[-87.6552391593235,41.80858550327638],[-87.65523465889272,41.80838267453498],[-87.65523227657032,41.80827704060237],[-87.6552306599434,41.80820537053722],[-87.65522534210378,41.80798618105622],[-87.65522293040023,41.807822607535215],[-87.65522110788173,41.80769902217854],[-87.65521577774962,41.80752969642713],[-87.65521059035028,41.807365063406884],[-87.65520753339206,41.80726803537367],[-87.65520147221577,41.807056772434805],[-87.65519797364418,41.8069123058265],[-87.65519431727978,41.806761308545],[-87.65518664823783,41.806507746750526],[-87.6551806384054,41.80627068785938],[-87.65517418150364,41.806016968541975],[-87.65516682980277,41.805701991333045],[-87.65516590227587,41.80565346726591],[-87.65516074797222,41.80539525499208],[-87.65515651504677,41.80518455163264],[-87.65515435055815,41.805092571170846],[-87.65515188005844,41.80498759473486],[-87.6551511079412,41.80490586771106],[-87.65514991138228,41.8048171575549],[-87.65514990200462,41.8048169338407],[-87.65514767513001,41.80476467591137],[-87.65513978846789,41.8045795312171],[-87.6551343370905,41.804324390734735],[-87.65513021438589,41.80417902930414],[-87.65512781307255,41.80409438151741],[-87.65512260708914,41.80390285488611],[-87.65511545070238,41.80362854922764],[-87.65510863764534,41.80336686927471],[-87.65510531390166,41.80327227953745],[-87.6550992153135,41.80309869740098],[-87.65509282207604,41.802779829084244],[-87.65508460232343,41.8024672618123],[-87.65507637192646,41.80214868448397],[-87.65506984391524,41.80189967896317],[-87.65506516832833,41.801764336596264],[-87.65506160431923,41.80154932852973],[-87.65505899103138,41.80145210378091],[-87.6551070756022,41.80145156330459],[-87.65518026343133,41.80145074097797],[-87.65550116979682,41.801444594241204],[-87.65577223495995,41.80144172020636],[-87.65603632383443,41.80143614244643],[-87.65627070819878,41.80143389866779],[-87.6564053576856,41.801432609298146],[-87.65670119008136,41.80142875386079],[-87.65700810907202,41.80142386549649],[-87.6572285694499,41.80142025099043],[-87.65748736991628,41.801416618218745],[-87.65762116988535,41.801414739814646],[-87.65791963855824,41.801411253502614],[-87.65817468414804,41.801407648423],[-87.65848563362871,41.80140310883837],[-87.65870284226393,41.8014003247734],[-87.65885123173072,41.80139842276614],[-87.65914842650504,41.80139399272529],[-87.65950662298454,41.80138860277387],[-87.65977757034942,41.801383001481426]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5296988.90571","perimeter":"0.0","tract_cent":"1162738.43035121","census_t_1":"17031611500","tract_numa":"26","tract_comm":"61","objectid":"34","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872365.55290089","census_tra":"611500","tract_ce_3":"41.80542084","tract_crea":"","tract_ce_2":"-87.67866605","shape_len":"10747.4571873"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6746867661243,41.808510081425155],[-87.67468102220478,41.80829016664851],[-87.67467458510767,41.808067705587845],[-87.67466624236584,41.807842325203616],[-87.6746598865413,41.807524638346976],[-87.67465236224858,41.80719931567352],[-87.67464763634005,41.80699462015016],[-87.6746434099263,41.80681281478243],[-87.67464081237792,41.80668623037969],[-87.67463841926445,41.80656958802825],[-87.67463418677914,41.80639557636913],[-87.67462880726664,41.80617592073893],[-87.67462271322495,41.8059257992111],[-87.67461883347941,41.805766663831996],[-87.67461387361546,41.80556416234024],[-87.67460840529664,41.805338935277874],[-87.67460429393189,41.80517090680855],[-87.6746001864942,41.80500260392865],[-87.67459320955952,41.804870556304124],[-87.67459072420931,41.80482351275328],[-87.67459081856701,41.80466606481392],[-87.67459026372103,41.80460973333421],[-87.67458904538798,41.804486121164565],[-87.67458526973354,41.804296140342245],[-87.6745796103516,41.80408238323151],[-87.67457423524188,41.8038802634978],[-87.67456934350174,41.80369540806201],[-87.67456365548124,41.80348090980813],[-87.6745590778699,41.80330832310165],[-87.67455409641016,41.803121491249435],[-87.67455250704423,41.80305462263887],[-87.67455033215546,41.80296313610448],[-87.67454891888269,41.8029036753198],[-87.6745449390209,41.802697803878615],[-87.67454048904854,41.80246632557848],[-87.67453566202896,41.80221426298715],[-87.67452625314806,41.80188678866085],[-87.67452055140258,41.80168861846824],[-87.67451900468129,41.801634849370835],[-87.67451098940603,41.80135752105398],[-87.67450695863394,41.80123336221474],[-87.67482440419053,41.80123028192188],[-87.67511715479162,41.801226339978534],[-87.67534043075341,41.80122335943025],[-87.675568740281,41.80121953513681],[-87.67572126422756,41.80121700985988],[-87.67578048445257,41.80121602940673],[-87.67585476180084,41.80121499075358],[-87.67604772228303,41.80121275410288],[-87.6763298296215,41.80120947375809],[-87.67671118620437,41.80120579079156],[-87.67693615089101,41.80120317547178],[-87.67730470818012,41.80119889077015],[-87.67756583966639,41.80119533227147],[-87.67782730147422,41.80119174762116],[-87.678107981951,41.801188107340515],[-87.67846396131283,41.801184127259006],[-87.67877031244879,41.801180717594846],[-87.67897399666845,41.80117841665805],[-87.67906948092762,41.80117677058757],[-87.6793105126276,41.801172615039654],[-87.67942628875615,41.8011706187695],[-87.67951653277301,41.80116951193667],[-87.67951949838334,41.80127002584523],[-87.67953333565963,41.80175790094654],[-87.67954100400196,41.802085886414815],[-87.67954235963415,41.802132889975965],[-87.67954807670763,41.80238230922169],[-87.67954873532426,41.80249791588329],[-87.6795438909108,41.8026587718877],[-87.67953308684059,41.80281959396834],[-87.67952594345851,41.80289090465957],[-87.67951424798939,41.80300400297617],[-87.67951424468158,41.80300403973072],[-87.67947118526567,41.80345179875042],[-87.67944311170349,41.80373292788266],[-87.67942673961254,41.803900235898034],[-87.67940946798683,41.804065823609186],[-87.67939654745472,41.80416420117425],[-87.6793891247109,41.8042629530691],[-87.67938765785762,41.80436208190265],[-87.67939215536549,41.80446090165294],[-87.67939564186399,41.80461391521118],[-87.67939646957966,41.804667776452554],[-87.67940651094236,41.804852517186696],[-87.67970038789267,41.80485309916239],[-87.68192243787772,41.80485747415014],[-87.6819415289893,41.80484473916991],[-87.68195967223181,41.80483874974497],[-87.68198955794058,41.80483214082857],[-87.68204112643993,41.8048249962133],[-87.68214516844527,41.8048154324827],[-87.68222381208214,41.80481115782958],[-87.68233932449941,41.80480983662327],[-87.6825783772554,41.80480756865442],[-87.68284589318681,41.80480518694102],[-87.68309829581817,41.80480296604244],[-87.68338096076825,41.80480047673271],[-87.68376082573472,41.80479708193673],[-87.68375270397809,41.80474110754387],[-87.6843722576407,41.80472240642289],[-87.6843735058163,41.80477096146967],[-87.68434781360816,41.80567862446184],[-87.68434962940802,41.80582205114788],[-87.68435147568955,41.80593265612212],[-87.68436012269957,41.80622431231341],[-87.68437136834373,41.80661425587838],[-87.68437664244874,41.80679713712268],[-87.68438164759904,41.80695902309223],[-87.68438848881108,41.80718612354313],[-87.68439832595473,41.807527101116776],[-87.68440251168211,41.80767202278183],[-87.68440714536551,41.80782347836145],[-87.68441402755263,41.80805016736663],[-87.68442098377741,41.808276829338055],[-87.68442535589212,41.80842575155067],[-87.68431053453581,41.80841912747157],[-87.68420498591146,41.8084175156897],[-87.6840463363645,41.808418347686604],[-87.68387370344259,41.80841735147619],[-87.68358599354451,41.80841569015737],[-87.68321076734006,41.8084193424874],[-87.68315272404641,41.80841990723559],[-87.6826323241601,41.808425687362835],[-87.68231584667508,41.80842951997946],[-87.68198711763823,41.80843350179801],[-87.68172427358168,41.808436676387736],[-87.68132082467,41.808440891052435],[-87.68077328007388,41.80844675566414],[-87.68025369229252,41.808451953328365],[-87.67982762119868,41.80845674544863],[-87.67979022426402,41.808457166070106],[-87.67969564824188,41.80845774597427],[-87.67965732262218,41.80845798096889],[-87.67950967875039,41.80845888579241],[-87.67950966077545,41.80845888596452],[-87.67939463231579,41.80845957890409],[-87.67932428682779,41.808460002801525],[-87.67923942868808,41.80846077295052],[-87.67915367657402,41.80846155111827],[-87.67901585316505,41.80846280185232],[-87.6787022297506,41.808467354281404],[-87.67847509881369,41.808471794947366],[-87.67825613694094,41.80847727023985],[-87.67798926230203,41.808483596661155],[-87.6777917269414,41.8084885344036],[-87.6775580507175,41.8084945553029],[-87.67727104345997,41.80850040808976],[-87.67711968067269,41.80850251611738],[-87.67700690998838,41.808504085932455],[-87.67681289448761,41.80850555714139],[-87.6766202483972,41.80850582809392],[-87.67640530105501,41.808506080959724],[-87.67619930311136,41.80850638461972],[-87.67609292248581,41.80850586684308],[-87.67600641262736,41.80850544566155],[-87.67590166157483,41.808504724625415],[-87.67577010007524,41.80850381873954],[-87.67570597173994,41.80850291951239],[-87.67561793661545,41.80850168523231],[-87.67542740711664,41.808502981686566],[-87.6752036437306,41.808504526507825],[-87.67501317839395,41.80850675569763],[-87.6749452660053,41.80850744772151],[-87.67478390451821,41.80850909167901],[-87.6746867661243,41.808510081425155]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7034049.13542","perimeter":"0.0","tract_cent":"1167897.78213396","census_t_1":"17031611900","tract_numa":"28","tract_comm":"61","objectid":"35","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869607.6383455","census_tra":"611900","tract_ce_3":"41.79774341","tract_crea":"","tract_ce_2":"-87.65982286","shape_len":"10611.5357059"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65487804278185,41.794289148462795],[-87.65487424667296,41.794171880303075],[-87.65498757839791,41.79417427106967],[-87.65531510881549,41.79416982776504],[-87.65565313287055,41.79416444019903],[-87.6558949074632,41.79416120093086],[-87.6561503987487,41.794157822469565],[-87.65639976562792,41.79415446223666],[-87.65663365679728,41.79415112007297],[-87.656897219359,41.79414740329517],[-87.65712333482193,41.79414417900509],[-87.65730110989756,41.79414063934352],[-87.65747971244642,41.794137082869604],[-87.65772790089025,41.794134179348575],[-87.65798470809547,41.79413118874594],[-87.65824951557408,41.79412764084081],[-87.65856488471046,41.794121425498474],[-87.65880571906236,41.79411339952347],[-87.65909283373345,41.79410531536835],[-87.65935621355456,41.79410150954663],[-87.65958966471025,41.79409813133886],[-87.65972895801578,41.79410026600234],[-87.65989135157355,41.79410275436447],[-87.66021237095366,41.79409841946542],[-87.660268316866,41.79409766382206],[-87.66048691203154,41.79409469071988],[-87.66066736593011,41.79409193295662],[-87.66094578929449,41.79408737182527],[-87.66108204783113,41.79408513958784],[-87.66129264546295,41.79408242002244],[-87.66149818326518,41.794079615319504],[-87.66169202061181,41.794077016544435],[-87.66189876847695,41.79407421874826],[-87.66201452094396,41.79407264492597],[-87.66215860166233,41.79407029164189],[-87.6622793360958,41.79406831937466],[-87.66235147538494,41.79406732579916],[-87.66242765794371,41.79406627675649],[-87.66258892698379,41.794064035114936],[-87.6627766395968,41.79406148107675],[-87.66292518115264,41.794059466541434],[-87.66308623015038,41.79405722291747],[-87.6632337458031,41.794055119668904],[-87.66337056484673,41.794051872325866],[-87.66344444035299,41.79405011896618],[-87.66358796090456,41.79404428718],[-87.663789106081,41.79403717168203],[-87.66397063743607,41.79403304286569],[-87.66411250391437,41.79403109794634],[-87.66429970331558,41.79402851098633],[-87.66458181581164,41.79402436374037],[-87.66458545789624,41.79412647155185],[-87.66459145518563,41.79427626241298],[-87.66459395131896,41.79442419394277],[-87.6645960093804,41.794499121079454],[-87.6646008154384,41.794674046219185],[-87.66460763492283,41.79488586242859],[-87.66461397858728,41.79509759353153],[-87.66461974221156,41.795329848503556],[-87.66462679774511,41.79554715463241],[-87.66463491806508,41.79576441206523],[-87.66463652885321,41.79585161012062],[-87.66464047976808,41.79606549249967],[-87.66464601643744,41.796249035055816],[-87.6646510209267,41.79645551672832],[-87.6646553425133,41.79665367923588],[-87.66466070653279,41.79687144199576],[-87.66466582608493,41.797070459861786],[-87.66466966937946,41.797229897712036],[-87.66467455015106,41.79743777821367],[-87.66467869352512,41.79760366686805],[-87.66468024711895,41.79767312441215],[-87.66468372601929,41.797828672571654],[-87.66468898882256,41.797989188659315],[-87.66469371951081,41.798172671850224],[-87.6646988785777,41.7983713605864],[-87.66470395765039,41.7985601419858],[-87.66471254656382,41.79884872595927],[-87.66471803260698,41.79902312966588],[-87.66472428822244,41.799201050528964],[-87.66473170493798,41.79941542222665],[-87.66473133388348,41.799494726012064],[-87.66473074288365,41.79962090855768],[-87.66473700777792,41.799868506804046],[-87.6647413553126,41.80006417204605],[-87.66474799147632,41.80032192628057],[-87.66475966832895,41.80059573645174],[-87.66476392014758,41.80080767470761],[-87.66476795108443,41.80103031437205],[-87.66477393956802,41.801212789125564],[-87.66477647751485,41.80131821562656],[-87.66454475629799,41.80132174777691],[-87.6642398537257,41.801326805514755],[-87.66415517122876,41.801327834771264],[-87.66389182888031,41.80133103512651],[-87.66355916852055,41.80133354890186],[-87.66340392779465,41.801334721909654],[-87.66318331691835,41.80133875903382],[-87.66292107932742,41.80134271746254],[-87.66262462763329,41.80134631087669],[-87.6623470049418,41.80135018612392],[-87.66220048245549,41.801352231164365],[-87.66192896384341,41.80135640753283],[-87.66168308554143,41.80136021176348],[-87.66124381932231,41.801367127117075],[-87.6611343954613,41.801366583735636],[-87.66097238795287,41.80136645505785],[-87.66071023730453,41.8013690914177],[-87.66042989859372,41.80137499665533],[-87.66010488003698,41.80138168192022],[-87.65991844005372,41.80138243355406],[-87.65977757034942,41.801383001481426],[-87.65950662298454,41.80138860277387],[-87.65914842650504,41.80139399272529],[-87.65885123173072,41.80139842276614],[-87.65870284226393,41.8014003247734],[-87.65848563362871,41.80140310883837],[-87.65817468414804,41.801407648423],[-87.65791963855824,41.801411253502614],[-87.65762116988535,41.801414739814646],[-87.65748736991628,41.801416618218745],[-87.6572285694499,41.80142025099043],[-87.65700810907202,41.80142386549649],[-87.65670119008136,41.80142875386079],[-87.6564053576856,41.801432609298146],[-87.65627070819878,41.80143389866779],[-87.65603632383443,41.80143614244643],[-87.65577223495995,41.80144172020636],[-87.65550116979682,41.801444594241204],[-87.65518026343133,41.80145074097797],[-87.6551070756022,41.80145156330459],[-87.65505899103138,41.80145210378091],[-87.65505259537629,41.80121417109047],[-87.65504661707574,41.801006672745636],[-87.6550452660076,41.80095978776715],[-87.65503803768571,41.80069231480342],[-87.65503174068893,41.800399133401875],[-87.6550266748557,41.80016309521347],[-87.65502131884628,41.79992675370523],[-87.65501626345385,41.79970364085532],[-87.65501191893064,41.79961944942721],[-87.65503540241598,41.79955113059023],[-87.65500151636057,41.79938406439184],[-87.65499631964633,41.79924391062893],[-87.65499080028948,41.799071756619284],[-87.65498560714742,41.79885476294742],[-87.65498413603487,41.79879169063783],[-87.65497940167027,41.79858770756621],[-87.65497274484245,41.79833563329339],[-87.65496612812007,41.798111056964906],[-87.65496083227912,41.79793163188945],[-87.65495783859254,41.79781023428105],[-87.65495433319924,41.797668087413804],[-87.65494733770662,41.79737163630795],[-87.65494150234701,41.79715296449092],[-87.65493525292635,41.7969109640818],[-87.65492823436549,41.796630621472815],[-87.65492155270502,41.79636702097274],[-87.6549154419759,41.79612578974864],[-87.6549114881293,41.79598997921303],[-87.6549098324389,41.79593308206782],[-87.65490795810834,41.79586871560979],[-87.65490003752154,41.79555916870943],[-87.65489388966077,41.79531799211727],[-87.65488862901854,41.79509353344859],[-87.6548835339778,41.794863806722205],[-87.65488049819095,41.79470890162971],[-87.65487957620864,41.79466185886672],[-87.65488058340664,41.794479424750456],[-87.65487804278185,41.794289148462795]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2804353.18897","perimeter":"0.0","tract_cent":"1173778.51533929","census_t_1":"17031601600","tract_numa":"14","tract_comm":"60","objectid":"38","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880301.78685266","census_tra":"601600","tract_ce_3":"41.82696072","tract_crea":"","tract_ce_2":"-87.63794001","shape_len":"8180.18994487"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63641656956702,41.827418594943474],[-87.63640384194206,41.827230910208236],[-87.63629224144042,41.82723273935631],[-87.6362033802724,41.827233491521575],[-87.63619575238062,41.826784706569164],[-87.6361886440369,41.826366498358624],[-87.6361871350975,41.826306255245676],[-87.63618595436233,41.82625911608653],[-87.63618251760091,41.82612187959147],[-87.63618063681989,41.826041598586414],[-87.63616486672761,41.8254064257774],[-87.63611651424941,41.82540530818509],[-87.6360719050098,41.825404276962374],[-87.63606374419649,41.8252104523779],[-87.63396392306542,41.823613287848694],[-87.63409377632807,41.823611239462856],[-87.63447029132746,41.82360628602623],[-87.63476387209583,41.82360302241885],[-87.63510828590361,41.82360138432135],[-87.6354537109586,41.8235977751862],[-87.63573973766776,41.82359418903511],[-87.63603944516301,41.823587524372904],[-87.63608709089478,41.82358646451838],[-87.63611787966256,41.823585779827816],[-87.63616476098156,41.82358473725529],[-87.63617401497062,41.82358453134435],[-87.63622243215248,41.82358405625463],[-87.63631224321367,41.823583174538044],[-87.6364193408279,41.82358212320822],[-87.63654944718145,41.82358108319825],[-87.63659281351676,41.82358073675506],[-87.63661454089856,41.82358056310946],[-87.63688518695126,41.823577648932755],[-87.63711493502713,41.823577285388474],[-87.63736656519093,41.823568661993335],[-87.63755080093505,41.82356234775357],[-87.63755080973972,41.82356234780691],[-87.6378968901174,41.82355924490365],[-87.63812594905727,41.823558106768836],[-87.63834641275288,41.82355790410907],[-87.6386170800061,41.82355240279759],[-87.63875117639063,41.82354967721506],[-87.6389611381272,41.823546912583545],[-87.63922145778255,41.823545577037905],[-87.6395343880433,41.823544311707245],[-87.6398407583215,41.823539006144216],[-87.6398520150665,41.82399099668041],[-87.6398613010464,41.82446742755022],[-87.63987373480614,41.82478734753508],[-87.63987736769738,41.82492332031339],[-87.63987984569513,41.82506768385546],[-87.63988248269679,41.825231313125805],[-87.63988167932224,41.82536067066892],[-87.63988109124361,41.825455456654275],[-87.63989284524207,41.82563102364046],[-87.63989572539259,41.825772123912124],[-87.63989957991572,41.82596229759547],[-87.63990217835918,41.82608533886761],[-87.63990340778088,41.82614440296048],[-87.63990682354411,41.82630768014653],[-87.63991261804756,41.8265799194379],[-87.63991716594205,41.82679509674547],[-87.63991728164353,41.826800559087665],[-87.63992254804519,41.82704354098927],[-87.63992536887986,41.82718266581789],[-87.63992872602927,41.827348219540006],[-87.63993407216435,41.82755665156046],[-87.63993443335855,41.82757067942231],[-87.63994051048364,41.82780661094589],[-87.63994588766667,41.82801553710515],[-87.63995183254069,41.8282466952552],[-87.63995705242138,41.828449802600524],[-87.6399614687734,41.828621323504116],[-87.63996421442106,41.82872794994602],[-87.63997046047398,41.829007846982385],[-87.63997509655634,41.82921558968635],[-87.63998084473198,41.82944112085168],[-87.63998721058442,41.82966728691808],[-87.63999344654856,41.82988845762481],[-87.63999833388011,41.83006796220575],[-87.64000280099755,41.830300044402705],[-87.6400054699071,41.83044034744634],[-87.64000816662637,41.83062571151816],[-87.6400158323365,41.83083140382206],[-87.63980249248115,41.83083415927539],[-87.63951633050905,41.830837178652416],[-87.6394078915849,41.83083832079635],[-87.63924477319942,41.83084003858728],[-87.63898599225163,41.83084228904862],[-87.6388023847579,41.830845896367705],[-87.63850855533187,41.830851668766734],[-87.63844516053308,41.83085242055988],[-87.63816840689532,41.83085570288405],[-87.63796999200255,41.830857883618805],[-87.63773688587916,41.83086044504117],[-87.63761732729091,41.830862049443226],[-87.63742407166339,41.830864642486425],[-87.63728639913695,41.83086656956615],[-87.63714509273855,41.83086854745295],[-87.63699719715422,41.830870617493204],[-87.63697821239225,41.830870883301984],[-87.63680015189911,41.830873375591985],[-87.6365285442083,41.83087716953296],[-87.63650105425378,41.830877553535764],[-87.6364877887709,41.83032452032138],[-87.63646402973266,41.829385836554174],[-87.63644392251362,41.828491083346265],[-87.63641656956702,41.827418594943474]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7075659.96552","perimeter":"0.0","tract_cent":"1172986.22747075","census_t_1":"17031610100","tract_numa":"42","tract_comm":"61","objectid":"39","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1877716.55471058","census_tra":"610100","tract_ce_3":"41.81988416","tract_crea":"","tract_ce_2":"-87.6409232","shape_len":"10747.8327651"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6360363673747,41.81820377147031],[-87.6360355549488,41.818152016967026],[-87.6358878747627,41.81815380153146],[-87.63582240288737,41.81725663847484],[-87.63571574555003,41.81635268387243],[-87.63583314484896,41.816351574336835],[-87.63597446908724,41.81635008467824],[-87.6359957817832,41.81634969978894],[-87.6359973220962,41.8163496720922],[-87.63608860131997,41.816348022817394],[-87.63616198200044,41.816346696787114],[-87.63646529108452,41.81634121556125],[-87.63653989746848,41.816339881083145],[-87.63681601190066,41.816334946925004],[-87.63687602530506,41.81633387418418],[-87.63703678080256,41.816331001011555],[-87.63751604430523,41.816322475840096],[-87.63786072482785,41.816316343605955],[-87.6381031816131,41.81631207579297],[-87.63842613855498,41.81630649260483],[-87.6387016896041,41.8163017283336],[-87.63905598241716,41.81629541792531],[-87.63934877870734,41.81629031450538],[-87.63960547108535,41.81628583973068],[-87.63995884441246,41.81627976796852],[-87.64039532573587,41.81627200108025],[-87.64072534723802,41.816267789406815],[-87.6408680047574,41.81626516810608],[-87.64125040476324,41.81625814110052],[-87.6415260323957,41.816253075230165],[-87.6417997051188,41.81624896016932],[-87.64208227242636,41.81624333264889],[-87.64237958959846,41.816237411155164],[-87.64274624477466,41.816231062186006],[-87.64309795929925,41.81622564862757],[-87.64330058071128,41.816222737786056],[-87.64364210870708,41.81621783025599],[-87.64391633901064,41.816213144611034],[-87.6440509578743,41.81621084405614],[-87.64451592440699,41.81620362568846],[-87.64468592268996,41.816200986039945],[-87.64511712994805,41.816192568041714],[-87.6457268432914,41.81618375826103],[-87.64573889698863,41.816600109347696],[-87.64574930965921,41.81700533627166],[-87.64575822034496,41.8173486433636],[-87.64576450065742,41.8175647919506],[-87.64576714937932,41.817655945676734],[-87.64577658886625,41.81793954050689],[-87.6457822105435,41.81817536184218],[-87.64579213268658,41.81862737557206],[-87.64579267165743,41.81865192659457],[-87.64579493972272,41.818755248326376],[-87.64579725687388,41.8188608066581],[-87.64579924545502,41.81891645100965],[-87.64580086470929,41.818961762883745],[-87.6458066309019,41.81912310575333],[-87.64581234481246,41.819319245683],[-87.64581517998639,41.819417946697605],[-87.64581965566886,41.81963405750984],[-87.64582293313376,41.81976662548866],[-87.64582823821912,41.819936033735935],[-87.64583371880414,41.82011647500319],[-87.64584009012852,41.82028567007974],[-87.6458442325606,41.82039568530293],[-87.6458487600473,41.82059324510869],[-87.64585007448468,41.82079619189296],[-87.64585530515782,41.820958848754934],[-87.64586001463289,41.82112221600343],[-87.64587102637095,41.82150865176974],[-87.64587819812849,41.82176032683415],[-87.64588377104376,41.821955892275334],[-87.64589543868452,41.82236533603797],[-87.64589778721522,41.822540215054865],[-87.64590056689073,41.82270908669306],[-87.64590883004291,41.82290724507207],[-87.64591220639524,41.82308893601545],[-87.64591993042974,41.823330642732124],[-87.64592818941182,41.823459057893274],[-87.64562980060673,41.823464143724806],[-87.64541375553081,41.82346630781865],[-87.64532628167409,41.82346709813706],[-87.64518905339528,41.82346833731433],[-87.64498788958007,41.8234717972379],[-87.6447204175355,41.82347388426967],[-87.64434340241401,41.82347682465355],[-87.64409675811396,41.82347904092504],[-87.64400825726526,41.82347983587751],[-87.64376388992973,41.82348525723421],[-87.64348999457874,41.823491597347825],[-87.64331485804087,41.823495650831745],[-87.64299983006246,41.82349754503835],[-87.64289523044239,41.82349763946208],[-87.64270206314652,41.82349781327548],[-87.64260680702616,41.82349899683267],[-87.64235122018526,41.82350199285665],[-87.64227433006064,41.8235028941893],[-87.64213801537952,41.82350449197253],[-87.64180307564651,41.823508815247095],[-87.6416715858068,41.82351212156652],[-87.64149400158756,41.82351658646411],[-87.64123790888397,41.82352058712942],[-87.6410625511091,41.82352291848101],[-87.64087144802136,41.82352545870991],[-87.64058442454144,41.823529737972535],[-87.64031319879304,41.823531971301975],[-87.64009953390082,41.82353452395703],[-87.6398407583215,41.823539006144216],[-87.6395343880433,41.823544311707245],[-87.63922145778255,41.823545577037905],[-87.6389611381272,41.823546912583545],[-87.63875117639063,41.82354967721506],[-87.6386170800061,41.82355240279759],[-87.63834641275288,41.82355790410907],[-87.63812594905727,41.823558106768836],[-87.6378968901174,41.82355924490365],[-87.63755080973972,41.82356234780691],[-87.63755080093505,41.82356234775357],[-87.63736656519093,41.823568661993335],[-87.63711493502713,41.823577285388474],[-87.63688518695126,41.823577648932755],[-87.63661454089856,41.82358056310946],[-87.63659281351676,41.82358073675506],[-87.63654944718145,41.82358108319825],[-87.6364193408279,41.82358212320822],[-87.63631224321367,41.823583174538044],[-87.63622243215248,41.82358405625463],[-87.63617401497062,41.82358453134435],[-87.63616476098156,41.82358473725529],[-87.63611787966256,41.823585779827816],[-87.63611351678765,41.82339331415017],[-87.63609887355332,41.822883133758786],[-87.63609329611121,41.8225095360874],[-87.6360868986954,41.822127014260175],[-87.63607723637628,41.82179134007044],[-87.63610520253579,41.8217909360012],[-87.63608156017877,41.820272419868914],[-87.63607677355006,41.819964960486004],[-87.6360761880696,41.8199526475011],[-87.63607014298951,41.81982551644484],[-87.6360697672301,41.81981761148433],[-87.63606627076848,41.819744081371326],[-87.63603338495167,41.819052455821264],[-87.63605339564712,41.81905201965946],[-87.63605738721836,41.819004256780474],[-87.63605750656001,41.819002826092536],[-87.6360562342647,41.818951020231296],[-87.63604863474711,41.81863709795543],[-87.63603779379198,41.81828370706755],[-87.63603697158311,41.818237622447135],[-87.6360363673747,41.81820377147031]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6419890.53901","perimeter":"0.0","tract_cent":"1162341.31437924","census_t_1":"17031590500","tract_numa":"25","tract_comm":"59","objectid":"42","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880103.67817361","census_tra":"590500","tract_ce_3":"41.82666346","tract_crea":"","tract_ce_2":"-87.67990671","shape_len":"10971.24217"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67642578606232,41.82756184159343],[-87.67640262770475,41.826729776282114],[-87.67587910076203,41.82673617345357],[-87.67579980720433,41.82673672149902],[-87.67544783223423,41.82673915317326],[-87.675180949042,41.826740996160574],[-87.67517984578785,41.82670843098409],[-87.67518033077458,41.826542542575496],[-87.67518047571379,41.826492926983704],[-87.67518916281533,41.82635200354846],[-87.67518586609744,41.8263369323312],[-87.67513026505834,41.82608275491806],[-87.67513308193494,41.826008373862926],[-87.67514574081876,41.82578978257893],[-87.6751542905175,41.82554251809265],[-87.67514848021904,41.82531097804198],[-87.67514119099022,41.825102042307066],[-87.67513554843654,41.82491603039605],[-87.67512821743861,41.824674355516265],[-87.67512175402896,41.82439909543227],[-87.67511495591872,41.824145842754966],[-87.67510645026672,41.82384793042063],[-87.67509972561507,41.82360535308515],[-87.67509817871989,41.82354285686067],[-87.67509078815104,41.823244371294045],[-87.6750875284803,41.82311272384771],[-87.6755095639102,41.8231009984362],[-87.67596735211899,41.82309467292014],[-87.67617896732565,41.823092241041564],[-87.67631815641076,41.823090641248896],[-87.67645022271775,41.82308912322337],[-87.67687050445319,41.82308429093951],[-87.67705139871545,41.823082210697685],[-87.6773717705452,41.82307880133442],[-87.67748528843822,41.82307759304728],[-87.67748700637325,41.82307757459021],[-87.67756608709975,41.823076730520754],[-87.67805486109722,41.82307141908884],[-87.67862726832175,41.82306458419425],[-87.67878925013851,41.82306270900792],[-87.67883572318911,41.823062170845525],[-87.67921662494426,41.82305776064087],[-87.67936119135058,41.823056335423956],[-87.67977617983676,41.82305202686695],[-87.67995056093078,41.82304999144449],[-87.68011490841704,41.82304807241064],[-87.68036414286544,41.82304516232727],[-87.68108390938194,41.82303643567832],[-87.68111225919283,41.823036106803755],[-87.68138524084807,41.82303293718573],[-87.68165860335671,41.8230297622189],[-87.68195220328356,41.82302635174603],[-87.68260207651181,41.82301699719538],[-87.68269197663052,41.82301610194205],[-87.68328877418789,41.823010158048476],[-87.68384945013598,41.82299870268451],[-87.68423972710931,41.822999793227325],[-87.68424896263153,41.823186254298015],[-87.68426149763265,41.82355070945078],[-87.68428459688585,41.823988112711405],[-87.68429538593766,41.82436199824315],[-87.68430631134687,41.824771797717425],[-87.68430744016315,41.82481413065731],[-87.68431973384517,41.82523163139728],[-87.68432887331832,41.82556184643022],[-87.68433869195556,41.82595556773494],[-87.68434897056716,41.82628384511947],[-87.68435273778385,41.82640414344605],[-87.6843677727176,41.826937934340364],[-87.68437424762153,41.827197570768895],[-87.68437689918574,41.827303878789166],[-87.68437723010116,41.827317142624416],[-87.684377815377,41.8273406058834],[-87.68437845408191,41.82736622644139],[-87.68437910150229,41.827392182947314],[-87.68437910223436,41.82739221945025],[-87.68437970030065,41.82741619650878],[-87.68439044080313,41.82784685529267],[-87.6844051594167,41.828460190794466],[-87.68441690989923,41.828949817504665],[-87.68442889076925,41.82929039399684],[-87.68444744170903,41.8298177282771],[-87.68445927144815,41.830288759869454],[-87.68409673839797,41.83029341416533],[-87.68372453393913,41.83029683121167],[-87.68330682367109,41.83030066462439],[-87.68315805772238,41.83030209077],[-87.68260677185397,41.83030737376798],[-87.68184162563,41.8303147017776],[-87.68145211487241,41.830320224355305],[-87.68137965557705,41.83032125137201],[-87.68077614338786,41.83032980519254],[-87.68070392261089,41.83033082847271],[-87.68016542903447,41.83033680855659],[-87.67968052417615,41.8303421912436],[-87.67951314141712,41.83034404926408],[-87.6794365277151,41.83034489909987],[-87.67933653533275,41.83034600875338],[-87.6792452466425,41.83034702243766],[-87.67895334788003,41.83035025972207],[-87.67870681023916,41.830353308305604],[-87.67851430390931,41.83035568853931],[-87.6777212675223,41.83036362565735],[-87.67688656978534,41.830371973990346],[-87.67664020257253,41.8303749170246],[-87.6765009214755,41.8303765803236],[-87.67589758711107,41.8303837843158],[-87.6757553860066,41.83038548186396],[-87.67528047958764,41.830390070601446],[-87.67527288276202,41.829984854360546],[-87.67527156702985,41.82991470356789],[-87.675269791513,41.829820015821284],[-87.67525894096164,41.82946437863499],[-87.67525290887495,41.82924010978956],[-87.67524830573814,41.82905544893761],[-87.67523661357978,41.82856823888612],[-87.67551827270418,41.82856549630819],[-87.67584704281892,41.82856121808599],[-87.67605719497156,41.82855848280196],[-87.6764541393553,41.828553469155786],[-87.67644399651284,41.82821181645312],[-87.67643918150974,41.82804962997508],[-87.67642578606232,41.82756184159343]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1753942.18436","perimeter":"0.0","tract_cent":"1167007.40917667","census_t_1":"17031061500","tract_numa":"10","tract_comm":"6","objectid":"190","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923366.91306612","census_tra":"061500","tract_ce_3":"41.94528233","tract_crea":"","tract_ce_2":"-87.6615451","shape_len":"5299.86538187"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66336674155264,41.94342681861588],[-87.66391735367066,41.94341810664464],[-87.66392669136712,41.943761148453525],[-87.66392948270924,41.9438636869524],[-87.66392963808903,41.94386938951368],[-87.6639422738872,41.944331896861236],[-87.66394846111777,41.94455835836025],[-87.66395572715031,41.94480548980046],[-87.66396797517642,41.94524349364196],[-87.663977823796,41.94559567792333],[-87.66399142051407,41.94614256981931],[-87.66399862568787,41.94643237280967],[-87.66400680860035,41.946746468324214],[-87.66401530118848,41.947067933839634],[-87.66340346093057,41.947078419587186],[-87.66325011066354,41.94708104715585],[-87.66280726903048,41.94708829890389],[-87.66250148887892,41.94709330542789],[-87.66159575407666,41.94710826425109],[-87.66105836107033,41.94711713629296],[-87.66038687005147,41.94712843448085],[-87.6597148901653,41.947137228912894],[-87.65958236134959,41.94714179891847],[-87.65942430653757,41.94714430156279],[-87.65916841268226,41.94714851051929],[-87.65917108106942,41.947052667530706],[-87.65916979951128,41.9470033464953],[-87.65916418980281,41.946792640307585],[-87.65916124506569,41.94667830567692],[-87.65915931144616,41.94660323350209],[-87.6591565237588,41.94645264214454],[-87.65915390808792,41.94631014722289],[-87.65915165863129,41.94622458233472],[-87.65914792520613,41.946082534736796],[-87.65913885741018,41.94582674794506],[-87.65913698919519,41.945773801091875],[-87.65913319776364,41.945666150764154],[-87.65912907368676,41.94554820767906],[-87.6591254073285,41.94544264368395],[-87.65912157564446,41.94531572104766],[-87.6591181319087,41.94520165897581],[-87.65911636291172,41.94511487654015],[-87.65911297838747,41.944947679142864],[-87.65911123145733,41.94486204775635],[-87.65910919717851,41.94476231271314],[-87.65910561957398,41.94458902201597],[-87.65910385196717,41.9445020749263],[-87.65909893030056,41.944404370927984],[-87.65909315158497,41.944289664779454],[-87.65909020352017,41.94417175601348],[-87.65908498434095,41.943962396678316],[-87.6590846733812,41.94395004588651],[-87.65908381390494,41.943915620704225],[-87.65908255130424,41.94386503302321],[-87.65908033093761,41.94377609233577],[-87.65907567661428,41.943589842317145],[-87.65907261489046,41.943493470564675],[-87.65928050844182,41.94349022258602],[-87.65942910249869,41.94348824088031],[-87.65957879940856,41.94348621056979],[-87.65974481870022,41.943483973961854],[-87.65981010883205,41.94348309464917],[-87.66088276359356,41.943468622925515],[-87.66097143500362,41.943467426272896],[-87.66149458868593,41.94345744959613],[-87.66173885927837,41.94345279066092],[-87.6621076655872,41.94344725150183],[-87.66256080694419,41.94344044430696],[-87.66329102370952,41.94342809902713],[-87.66336674155264,41.94342681861588]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"25656970.9024","perimeter":"0.0","tract_cent":"1163680.0975204","census_t_1":"17031610300","tract_numa":"60","tract_comm":"61","objectid":"40","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1876292.8299054","census_tra":"610300","tract_ce_3":"41.81617802","tract_crea":"","tract_ce_2":"-87.67510206","shape_len":"20901.8533587"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66652824746747,41.82314498692366],[-87.66635600244174,41.82314080353255],[-87.66601374868078,41.823143206788835],[-87.66597723946612,41.82314365796902],[-87.66559712255808,41.82314835841359],[-87.66546190791684,41.82315003006822],[-87.66546210822075,41.82310417197556],[-87.66546287996262,41.822927458506065],[-87.66542764424031,41.822575495818995],[-87.6653448613574,41.822035475634],[-87.665323548985,41.821704751900654],[-87.66530656894535,41.82129735447842],[-87.66527186393525,41.82075115727164],[-87.66525619726656,41.820426610717284],[-87.66524899827805,41.820262027425116],[-87.66524523280754,41.82013919846138],[-87.66524240190489,41.82003933160254],[-87.6652399750531,41.8199415703033],[-87.66523730618405,41.819831339810534],[-87.66523370237101,41.819682479871275],[-87.6652307499405,41.8195329664632],[-87.66522942717104,41.8194660006832],[-87.66522901126356,41.819448166247],[-87.66522521035074,41.819285306609935],[-87.66521815084114,41.81899039330625],[-87.66520915903502,41.818620138420165],[-87.66520385998308,41.81840327699645],[-87.6652034897732,41.81838810586656],[-87.6652021899987,41.81833491920858],[-87.66519979110006,41.81823673624757],[-87.66519954777775,41.81822707526067],[-87.66519454631177,41.81802838786443],[-87.66518753201699,41.81770987427058],[-87.66518557445126,41.81762097555186],[-87.66517809360931,41.817239532723725],[-87.66517615511248,41.81715088356317],[-87.66517448428365,41.8170744586846],[-87.66517167828313,41.81694613241219],[-87.66516335530967,41.8165751677718],[-87.66515499478494,41.816204257774324],[-87.66515181478367,41.81603371000086],[-87.66514819189145,41.81587079723931],[-87.66514481527075,41.8157189557647],[-87.66514093433055,41.81529472304773],[-87.6651292439861,41.81495831658919],[-87.66512182382657,41.81461342769469],[-87.66511549377415,41.81436130165921],[-87.66510915214448,41.81405993224955],[-87.66510444442804,41.81383620242346],[-87.6650948994116,41.81346632790769],[-87.66508526370421,41.81309466960903],[-87.66507472339433,41.812686424535904],[-87.66507205187247,41.812572219624805],[-87.6650636423047,41.81222247404512],[-87.66521820320082,41.81223675860922],[-87.66534009583029,41.81223691865379],[-87.66564140947037,41.812232770274605],[-87.66570152427026,41.81223194266283],[-87.66595816771786,41.81222840896646],[-87.66629867308643,41.812227416070826],[-87.66656843009963,41.8122266289876],[-87.66678260434482,41.81222430441227],[-87.6668948275029,41.812223089444394],[-87.66717830127293,41.8122200135693],[-87.66751037849757,41.81221710895627],[-87.66765065956952,41.81221587805068],[-87.66787576543479,41.81221390238668],[-87.66808164826037,41.81221169201165],[-87.66839816986833,41.8122089417272],[-87.66871405405479,41.81220759744107],[-87.66889002509221,41.81220684813678],[-87.66912734332767,41.81220470821924],[-87.66931791010241,41.81220300559245],[-87.66957120133758,41.81220074221343],[-87.66992629953943,41.81219717657855],[-87.66992475712833,41.81207857865306],[-87.66991818845385,41.81186550243908],[-87.66991664389629,41.81181170594901],[-87.66991001221675,41.81158070895201],[-87.6699021678311,41.81126024175279],[-87.66989551804822,41.81098753187514],[-87.66988950961536,41.81078167603286],[-87.66988016140739,41.81049221072317],[-87.66987761020307,41.810378355086485],[-87.66987265203463,41.81015703606413],[-87.66986798928951,41.80995486557161],[-87.66986272441284,41.809729255453604],[-87.66985809482576,41.80952735956527],[-87.6698561643996,41.809444279094066],[-87.66985314195006,41.80931421025882],[-87.66984194588454,41.80907687522831],[-87.66983980403033,41.809000068048945],[-87.66983600175489,41.80886374762202],[-87.66983096935351,41.80869741523509],[-87.66982753385358,41.808557332042554],[-87.67017966831392,41.80855337827035],[-87.67033872528052,41.808552209101705],[-87.67055104476057,41.80855066426222],[-87.67077048161669,41.80854904866493],[-87.67091750644582,41.80854794815469],[-87.67104316941492,41.80854604316607],[-87.67115618387083,41.8085443296765],[-87.67130798406892,41.80854251523861],[-87.67153667529087,41.808539826357304],[-87.67164614171446,41.808538535968985],[-87.67177864605233,41.80853696624011],[-87.67200242083415,41.80853433071983],[-87.67213738350311,41.8085327201189],[-87.6722554172055,41.808530435362044],[-87.67237779541271,41.80852806625944],[-87.67263387543281,41.80852638350892],[-87.6728538603145,41.80852493173999],[-87.6730329080221,41.80852373821278],[-87.67325208570148,41.808522308483944],[-87.67347173102007,41.80852138130531],[-87.67360452204011,41.808520820462775],[-87.67380588337359,41.808518436626066],[-87.6740299853483,41.80851607318744],[-87.6740795810954,41.808515644867974],[-87.67426292394401,41.80851406188256],[-87.67445987594726,41.80851239255623],[-87.67462641903604,41.80851069616421],[-87.6746867661243,41.808510081425155],[-87.67478390451821,41.80850909167901],[-87.6749452660053,41.80850744772151],[-87.67501317839395,41.80850675569763],[-87.6752036437306,41.808504526507825],[-87.67542740711664,41.808502981686566],[-87.67561793661545,41.80850168523231],[-87.67570597173994,41.80850291951239],[-87.67577010007524,41.80850381873954],[-87.67590166157483,41.808504724625415],[-87.67600641262736,41.80850544566155],[-87.67609292248581,41.80850586684308],[-87.67619930311136,41.80850638461972],[-87.67640530105501,41.808506080959724],[-87.6766202483972,41.80850582809392],[-87.67681289448761,41.80850555714139],[-87.67700690998838,41.808504085932455],[-87.67711968067269,41.80850251611738],[-87.67727104345997,41.80850040808976],[-87.6775580507175,41.8084945553029],[-87.6777917269414,41.8084885344036],[-87.67798926230203,41.808483596661155],[-87.67825613694094,41.80847727023985],[-87.67847509881369,41.808471794947366],[-87.6787022297506,41.808467354281404],[-87.67901585316505,41.80846280185232],[-87.67915367657402,41.80846155111827],[-87.67923942868808,41.80846077295052],[-87.67932428682779,41.808460002801525],[-87.67939463231579,41.80845957890409],[-87.67950966077545,41.80845888596452],[-87.67950967875039,41.80845888579241],[-87.67965732262218,41.80845798096889],[-87.67969564824188,41.80845774597427],[-87.67979022426402,41.808457166070106],[-87.67982762119868,41.80845674544863],[-87.68025369229252,41.808451953328365],[-87.68077328007388,41.80844675566414],[-87.68132082467,41.808440891052435],[-87.68172427358168,41.808436676387736],[-87.68198711763823,41.80843350179801],[-87.68231584667508,41.80842951997946],[-87.6826323241601,41.808425687362835],[-87.68315272404641,41.80841990723559],[-87.68321076734006,41.8084193424874],[-87.68358599354451,41.80841569015737],[-87.68387370344259,41.80841735147619],[-87.68387670448809,41.80855506956381],[-87.68388279281479,41.80871858075371],[-87.6838824779303,41.808869596705506],[-87.68388417420367,41.80919554470034],[-87.68388828012297,41.80931197999081],[-87.68389936242622,41.8096238202685],[-87.68390775230398,41.80994802200747],[-87.68391170250712,41.810100726720094],[-87.68391334494463,41.810164220519496],[-87.6839215543032,41.81046635720153],[-87.68392812987018,41.81070509178254],[-87.683942081123,41.81115303699598],[-87.6839472973312,41.81132052238384],[-87.68395068910294,41.8115149462705],[-87.68395426261257,41.811687746536265],[-87.68396335631695,41.812063352197974],[-87.68396393612284,41.812087299031326],[-87.6839645159235,41.81211124641339],[-87.6839667122785,41.81220198440171],[-87.68397383904106,41.81243342251911],[-87.68397901740086,41.81257445281228],[-87.68398285882914,41.812680678096314],[-87.68398435405378,41.812721603737046],[-87.68399148542066,41.81291624081488],[-87.68399618311423,41.81305529222386],[-87.68399659686665,41.813067534317284],[-87.68400796301586,41.81336952403106],[-87.68401569226532,41.813628462894435],[-87.68401924008198,41.813785923261264],[-87.68402324017566,41.81396347209714],[-87.68403079368574,41.81429793245628],[-87.68403934184394,41.81466467111909],[-87.68404996841451,41.81499997209033],[-87.68405964435053,41.81530228173307],[-87.68407223295809,41.81570339602545],[-87.68408925690274,41.816245793976506],[-87.68409160760812,41.816470700722036],[-87.68409357675071,41.81661374353839],[-87.68409681287446,41.81684883653898],[-87.68410314619173,41.81710798689443],[-87.6841085406906,41.817329370968075],[-87.68411350910083,41.81752171736211],[-87.68412125291296,41.81782149121519],[-87.68412806170531,41.818091731087144],[-87.68413624373144,41.81841488833977],[-87.68414470234045,41.818717931598535],[-87.68415051562393,41.81893415873844],[-87.68415710170005,41.81919377695359],[-87.68416110252356,41.819339849612284],[-87.68416665002343,41.81954240846237],[-87.68417510147303,41.81985980417738],[-87.68418496930892,41.82026675356173],[-87.68419354584488,41.82061990783961],[-87.6841950063809,41.820670468373635],[-87.68420768172199,41.82110930913433],[-87.68420849607232,41.82113750758673],[-87.68421416083237,41.82135757550386],[-87.68422515187517,41.821747394783415],[-87.68422696426704,41.8218116879958],[-87.68422901274917,41.8219570409824],[-87.68423111185922,41.82210602712107],[-87.68423192735105,41.82216390105375],[-87.68423284866708,41.82223102186535],[-87.68423284999622,41.822231144541895],[-87.68423356080393,41.822288594989175],[-87.68423441189924,41.822357401484254],[-87.68423464314571,41.82237609788093],[-87.68423580096047,41.82246967756849],[-87.68423564386521,41.822519304947896],[-87.68423502063308,41.8227155603441],[-87.68423445695757,41.822893385804406],[-87.68423972710931,41.822999793227325],[-87.68384945013598,41.82299870268451],[-87.68328877418789,41.823010158048476],[-87.68269197663052,41.82301610194205],[-87.68260207651181,41.82301699719538],[-87.68195220328356,41.82302635174603],[-87.68165860335671,41.8230297622189],[-87.68138524084807,41.82303293718573],[-87.68111225919283,41.823036106803755],[-87.68108390938194,41.82303643567832],[-87.68036414286544,41.82304516232727],[-87.68011490841704,41.82304807241064],[-87.67995056093078,41.82304999144449],[-87.67977617983676,41.82305202686695],[-87.67936119135058,41.823056335423956],[-87.67921662494426,41.82305776064087],[-87.67883572318911,41.823062170845525],[-87.67878925013851,41.82306270900792],[-87.67862726832175,41.82306458419425],[-87.67805486109722,41.82307141908884],[-87.67756608709975,41.823076730520754],[-87.67748700637325,41.82307757459021],[-87.67748528843822,41.82307759304728],[-87.6773717705452,41.82307880133442],[-87.67705139871545,41.823082210697685],[-87.67687050445319,41.82308429093951],[-87.67645022271775,41.82308912322337],[-87.67631815641076,41.823090641248896],[-87.67617896732565,41.823092241041564],[-87.67596735211899,41.82309467292014],[-87.6755095639102,41.8231009984362],[-87.6750875284803,41.82311272384771],[-87.67483643436435,41.82311969941307],[-87.67437991255775,41.823124216466084],[-87.67386426027068,41.82313111235889],[-87.67375818009897,41.82313253046965],[-87.67336495284816,41.82313622715719],[-87.67299814401741,41.82313971734594],[-87.67264351375013,41.82314335956503],[-87.67224786119007,41.82314742157805],[-87.67158071634691,41.82315496872629],[-87.67141255496722,41.82315671059291],[-87.67114488562646,41.823159482351514],[-87.67055772968398,41.82316616740999],[-87.67021336599346,41.82317034572745],[-87.66998678659641,41.82317313519647],[-87.66918064063118,41.82318307638193],[-87.66899156115434,41.82318550194054],[-87.66887156988476,41.823187041174144],[-87.6684025973207,41.82319305631521],[-87.66830856172564,41.82319426221844],[-87.66826059449072,41.82319487720724],[-87.66798687354218,41.82319027332183],[-87.667777460641,41.82318273786492],[-87.66760237676881,41.82317643723231],[-87.6672478148863,41.82316628611683],[-87.66694796235005,41.823159113259415],[-87.66671660957205,41.82315162366715],[-87.66652824746747,41.82314498692366]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7294482.04206","perimeter":"0.0","tract_cent":"1158552.59192378","census_t_1":"17031581100","tract_numa":"16","tract_comm":"58","objectid":"41","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872692.35837299","census_tra":"581100","tract_ce_3":"41.8064041","tract_crea":"","tract_ce_2":"-87.69400919","shape_len":"13470.478316"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68442098377741,41.808276829338055],[-87.68441402755263,41.80805016736663],[-87.68440714536551,41.80782347836145],[-87.68440251168211,41.80767202278183],[-87.68439832595473,41.807527101116776],[-87.68438848881108,41.80718612354313],[-87.68438164759904,41.80695902309223],[-87.68437664244874,41.80679713712268],[-87.68437136834373,41.80661425587838],[-87.68436012269957,41.80622431231341],[-87.68435147568955,41.80593265612212],[-87.68434962940802,41.80582205114788],[-87.68434781360816,41.80567862446184],[-87.6843735058163,41.80477096146967],[-87.6843722576407,41.80472240642289],[-87.68436992933609,41.804631832785184],[-87.68436794617568,41.80455467048153],[-87.68436794530248,41.80455464797348],[-87.68439389050516,41.80455438372679],[-87.68452014130845,41.80455309793724],[-87.6851537690389,41.804545977491024],[-87.68555640492376,41.80454145137615],[-87.68603420240898,41.80453454000255],[-87.68617451367717,41.804532586001585],[-87.68665738996022,41.80452722729194],[-87.68668619803178,41.80452690756695],[-87.68668697972521,41.8045268985203],[-87.68668714258995,41.80452689696725],[-87.68676784282798,41.8045259790776],[-87.68698793469154,41.80452344427069],[-87.6878816003937,41.80451303251155],[-87.68799760400542,41.8045119688062],[-87.68851619248923,41.804506305087926],[-87.6887193179595,41.80450401503423],[-87.68921268497064,41.80449889270789],[-87.68938921749098,41.80449679511426],[-87.68986468371939,41.80449362785125],[-87.69051945438804,41.80448631659288],[-87.69114901692191,41.80447817461086],[-87.69186796941861,41.80447121444765],[-87.69285563632806,41.80445923065],[-87.69314908943969,41.80445606366004],[-87.69382750260164,41.804422451852474],[-87.69409480638853,41.80440944625693],[-87.69409480914506,41.804409537931306],[-87.69409636378124,41.804456191156405],[-87.69409816564595,41.80451025916221],[-87.69410065919708,41.804591712096986],[-87.69410145624717,41.80462174365004],[-87.69410205265996,41.80464421194116],[-87.69410221407155,41.80464420899737],[-87.6954228862644,41.804616904766824],[-87.69587639627015,41.80460878792135],[-87.69688569272883,41.80458865664921],[-87.69788812927432,41.804566763383725],[-87.69804450374784,41.80456316911028],[-87.69887725373111,41.804546503022266],[-87.69992645073629,41.80452485021878],[-87.70084998476437,41.804507298778354],[-87.70173395156988,41.804503929306705],[-87.70242031054917,41.804501183341415],[-87.70247272828259,41.80448569186673],[-87.70265186325396,41.804498681464445],[-87.70387017815767,41.80448272322843],[-87.70387037954784,41.804482720215546],[-87.70388182940583,41.80488152044771],[-87.70388590284465,41.805023392291595],[-87.70389006883408,41.80515689677131],[-87.70389486529456,41.80531060317367],[-87.70390523580252,41.80553640470695],[-87.7039077788553,41.8056979742942],[-87.70390797650694,41.80571053239174],[-87.70390989436383,41.805832401127454],[-87.70391256429203,41.805930908061384],[-87.7039160347915,41.80606862529877],[-87.7039160756966,41.80607025452903],[-87.70391614940954,41.80607272890367],[-87.70392030810683,41.80621272244873],[-87.70392267534686,41.80628785740808],[-87.70392624484363,41.80640283495741],[-87.70392861989455,41.8064781848343],[-87.70393094675906,41.806552012741584],[-87.70393287035256,41.80661469116357],[-87.7039353407488,41.80669517830756],[-87.7039372298609,41.80675722068881],[-87.70393923859996,41.80682319271367],[-87.703944084035,41.80698233301708],[-87.70394719561982,41.80710287893581],[-87.7039526100945,41.807291687763005],[-87.70395646951685,41.80741827519272],[-87.70395837327789,41.807474289831],[-87.70396193739207,41.80757914751261],[-87.70396336030561,41.80771483260204],[-87.70396391746331,41.80776474974937],[-87.70396490387911,41.80785318030261],[-87.70396997016502,41.80799887425788],[-87.70397493427136,41.80811536080931],[-87.70386240626223,41.80811321567169],[-87.70365872503359,41.80812428397454],[-87.70335672648632,41.80812943397689],[-87.7031371014669,41.80813552909372],[-87.70291081664982,41.80813999555811],[-87.70276899485293,41.80814183464007],[-87.70257181544342,41.808144391561534],[-87.70233427801486,41.80814802670242],[-87.70205040999402,41.80815206565133],[-87.70184409209743,41.80815518499782],[-87.70166733382105,41.80815874122499],[-87.70153638700765,41.808166231704654],[-87.70146731639655,41.80817018254439],[-87.70118799659832,41.808166752217],[-87.70098937908563,41.80817010477761],[-87.70065935076872,41.80817586178468],[-87.70043717901761,41.808179797172365],[-87.70031306052103,41.80818141955681],[-87.70017723231405,41.80818319461255],[-87.69996306655977,41.8081861303838],[-87.69975608829516,41.808189242612755],[-87.6994418361536,41.808194589163406],[-87.69923191902058,41.80819815075808],[-87.69909243847596,41.808200527321475],[-87.69898131694036,41.80820242035867],[-87.6987752490443,41.808206194474806],[-87.69851544050564,41.80821043964425],[-87.69827093093642,41.808214329721636],[-87.69803999512806,41.80821799247755],[-87.69786898034342,41.808219936287045],[-87.69752714748896,41.80822440327426],[-87.69722434533963,41.80822912106149],[-87.69689072661046,41.80823435338643],[-87.69665029008925,41.808238065266316],[-87.69633087010129,41.80824299567632],[-87.6960735149294,41.80824763312587],[-87.6956481696929,41.80825559119575],[-87.69542812182983,41.80825986458396],[-87.69526024203911,41.80826312435403],[-87.69495203789144,41.80826882152788],[-87.6948116412492,41.80827107748125],[-87.69454214825149,41.8082754069238],[-87.69420501107831,41.808280827581875],[-87.69382820703035,41.80828688483739],[-87.69359982953003,41.80829143135198],[-87.69325370216978,41.80829672038887],[-87.6929817009066,41.80830059695049],[-87.69267925025181,41.808304906793296],[-87.69245168693503,41.80830871433536],[-87.69214825929171,41.808313552463865],[-87.69176319808405,41.80832043310351],[-87.6915421259517,41.808324382947426],[-87.69128377966676,41.808329031569514],[-87.69081500008144,41.80833741503461],[-87.69054607940693,41.808340836531045],[-87.6903295894125,41.808343590397286],[-87.69002462251011,41.80834830452786],[-87.68963142599992,41.808354417026244],[-87.68932356856651,41.80835986914697],[-87.68901113152143,41.80836540178212],[-87.68873771237612,41.80836979547439],[-87.6887136897598,41.808370181260074],[-87.68868055548454,41.80837071322066],[-87.68850651841159,41.80837349249781],[-87.68830423263861,41.80837674764387],[-87.68810216025025,41.80838066802253],[-87.6879147993619,41.80838430242248],[-87.68753911136827,41.80838916143258],[-87.68722186192598,41.808393277655824],[-87.68688420770103,41.80839849443986],[-87.68669450552945,41.80840142458443],[-87.68622558386599,41.8084092396611],[-87.68600249916949,41.80841264801212],[-87.6857655701364,41.808417569568164],[-87.68552921704122,41.808423646481096],[-87.68531887176024,41.8084258355343],[-87.68510260840183,41.80842781819087],[-87.68504462743647,41.80842834994336],[-87.68481247786056,41.80843219851993],[-87.68472513168625,41.80843229016868],[-87.68454203366612,41.80843248259871],[-87.68442535589212,41.80842575155067],[-87.68442098377741,41.808276829338055]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3747092.09583","perimeter":"0.0","tract_cent":"1164243.56460604","census_t_1":"17031590600","tract_numa":"17","tract_comm":"59","objectid":"43","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880180.01267541","census_tra":"590600","tract_ce_3":"41.82683301","tract_crea":"","tract_ce_2":"-87.67292554","shape_len":"8628.80947831"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67030561177891,41.826796050540494],[-87.67029462716745,41.826323854548576],[-87.67029139313634,41.826197352431784],[-87.67028341471324,41.825889646147665],[-87.67027054245922,41.825547717976455],[-87.67026331260244,41.825295450260775],[-87.6702575503914,41.82509288976334],[-87.6702551076978,41.82496818062881],[-87.67025137399051,41.82477764707431],[-87.6702451731124,41.82455730087056],[-87.67024408202798,41.82451544497623],[-87.67023915476184,41.82432630848585],[-87.67023169043426,41.82402922540009],[-87.6702248792978,41.82366532304229],[-87.6702230298111,41.82358660142436],[-87.67022151434178,41.823522052606684],[-87.67021615594605,41.82329075992436],[-87.67021336599346,41.82317034572745],[-87.67055772968398,41.82316616740999],[-87.67114488562646,41.823159482351514],[-87.67141255496722,41.82315671059291],[-87.67158071634691,41.82315496872629],[-87.67224786119007,41.82314742157805],[-87.67264351375013,41.82314335956503],[-87.67299814401741,41.82313971734594],[-87.67336495284816,41.82313622715719],[-87.67375818009897,41.82313253046965],[-87.67386426027068,41.82313111235889],[-87.67437991255775,41.823124216466084],[-87.67483643436435,41.82311969941307],[-87.6750875284803,41.82311272384771],[-87.67509078815104,41.823244371294045],[-87.67509817871989,41.82354285686067],[-87.67509972561507,41.82360535308515],[-87.67510645026672,41.82384793042063],[-87.67511495591872,41.824145842754966],[-87.67512175402896,41.82439909543227],[-87.67512821743861,41.824674355516265],[-87.67513554843654,41.82491603039605],[-87.67514119099022,41.825102042307066],[-87.67514848021904,41.82531097804198],[-87.6751542905175,41.82554251809265],[-87.67514574081876,41.82578978257893],[-87.67513308193494,41.826008373862926],[-87.67513026505834,41.82608275491806],[-87.67518586609744,41.8263369323312],[-87.67518916281533,41.82635200354846],[-87.67518047571379,41.826492926983704],[-87.67518033077458,41.826542542575496],[-87.67517984578785,41.82670843098409],[-87.675180949042,41.826740996160574],[-87.67544783223423,41.82673915317326],[-87.67579980720433,41.82673672149902],[-87.67587910076203,41.82673617345357],[-87.67640262770475,41.826729776282114],[-87.67642578606232,41.82756184159343],[-87.67643918150974,41.82804962997508],[-87.67644399651284,41.82821181645312],[-87.6764541393553,41.828553469155786],[-87.67605719497156,41.82855848280196],[-87.67584704281892,41.82856121808599],[-87.67551827270418,41.82856549630819],[-87.67523661357978,41.82856823888612],[-87.67524830573814,41.82905544893761],[-87.67525290887495,41.82924010978956],[-87.67525894096164,41.82946437863499],[-87.675269791513,41.829820015821284],[-87.67527156702985,41.82991470356789],[-87.67527288276202,41.829984854360546],[-87.67528047958764,41.830390070601446],[-87.67466404353773,41.83039602371848],[-87.67406110908881,41.830403517285845],[-87.67354008226894,41.83040999027172],[-87.67284063478806,41.8304176403483],[-87.67223082054602,41.830424306470384],[-87.67162406251393,41.83043248423421],[-87.67101811171723,41.830440647804615],[-87.67073286122022,41.83044448980344],[-87.67039874328988,41.83044651281919],[-87.67039577489032,41.83033182503384],[-87.67038888739513,41.83006571686606],[-87.67038645524053,41.82996872447167],[-87.67037495381045,41.82951008656851],[-87.67036311840936,41.828996455652984],[-87.67035299561549,41.828618692675335],[-87.67034028319037,41.82814428293902],[-87.67032898416274,41.82773872435981],[-87.67031808711987,41.82733333272792],[-87.67030561177891,41.826796050540494]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"16496078.2359","perimeter":"0.0","tract_cent":"1151733.33881412","census_t_1":"17031570100","tract_numa":"23","tract_comm":"57","objectid":"44","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1876235.86234394","census_tra":"570100","tract_ce_3":"41.81626445","tract_crea":"","tract_ce_2":"-87.71892719","shape_len":"19148.9843524"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72328845728745,41.806042053730906],[-87.72352895538019,41.80603911243144],[-87.72353645702525,41.80623763833451],[-87.72354199947955,41.80642674889601],[-87.72354788550038,41.80663765088554],[-87.72355185527229,41.80678556111736],[-87.72355311636409,41.80683254994297],[-87.72356043415787,41.807043322577734],[-87.72356540333146,41.80718072777368],[-87.72356987248908,41.80733991992003],[-87.72357202494688,41.807417539671775],[-87.72357424568311,41.80749762963961],[-87.72358661403264,41.80788362462723],[-87.72360134881461,41.808331925993244],[-87.72360914874398,41.80854371596561],[-87.72361569931357,41.80871938481565],[-87.72362388077993,41.808947423224126],[-87.72362943616433,41.80911973875466],[-87.72363866087025,41.809338342352966],[-87.72365161017497,41.80970243625973],[-87.72365493619029,41.80979595544173],[-87.72366428427382,41.810047985020454],[-87.72367160745182,41.810219568942806],[-87.72368108317603,41.81044267445075],[-87.72368607126053,41.81057813094752],[-87.72369259122378,41.81075319610207],[-87.72369714990903,41.810864308810196],[-87.72370629285805,41.81106449777604],[-87.72371288165617,41.81120523204685],[-87.72372013179533,41.811407716150946],[-87.72372402972815,41.81154109435718],[-87.72372702628863,41.81164365087234],[-87.7237306563113,41.81176787657167],[-87.7237328389645,41.81184984638154],[-87.7237350383845,41.81193244691496],[-87.72373790463222,41.812031340762964],[-87.72373863152883,41.81205642515247],[-87.72374045161342,41.81210030515994],[-87.72374743938722,41.8122687694599],[-87.72375743315258,41.812402468966894],[-87.72376324922392,41.81257829845162],[-87.72376731771448,41.81271405216072],[-87.7237731219462,41.812898718155935],[-87.72377465768791,41.81295355702946],[-87.72378352249099,41.81314444133116],[-87.72379206669389,41.81336601074132],[-87.7238007462364,41.81359110835831],[-87.72380504556683,41.81370260465451],[-87.72381282695659,41.81394974119536],[-87.7238217517902,41.814169138573924],[-87.72382848674458,41.81433320019187],[-87.72383029026727,41.81437887704737],[-87.72383824778551,41.81458048387361],[-87.72384333716369,41.81470585585182],[-87.7238455038937,41.81475923014023],[-87.72385538559678,41.815017052750434],[-87.72386189194762,41.815195491781694],[-87.72387320317573,41.815505683627805],[-87.72387385329591,41.81557149269818],[-87.72387479425814,41.81566675409199],[-87.72387880507488,41.815858929797876],[-87.72388272017402,41.81603024846891],[-87.72388778493303,41.816223472580305],[-87.72389144329176,41.81636232533374],[-87.72389719985928,41.81658082763713],[-87.72389856167251,41.81664017604812],[-87.72390088619277,41.816741497271316],[-87.72390551679621,41.816932194867476],[-87.72390759859975,41.81701790945777],[-87.72390996213406,41.817115233839544],[-87.72391258069433,41.8173188457509],[-87.72392252239773,41.81750070693702],[-87.72392626231631,41.81770986822575],[-87.7239340501963,41.817940922878876],[-87.72393759993336,41.81802898803169],[-87.72394016833852,41.8180927139147],[-87.72394281170604,41.81815936806487],[-87.7239470077004,41.818265173185516],[-87.723952040008,41.81842628899663],[-87.72395961594961,41.81866884101921],[-87.72396622045497,41.81881190781181],[-87.72396592660121,41.81908533811862],[-87.7239658748217,41.819133714243264],[-87.72396566708959,41.8193268960075],[-87.72396952067488,41.81946166897966],[-87.72397035080988,41.81949069933102],[-87.72397112581852,41.81953165848906],[-87.72397318574686,41.81964055163895],[-87.72397611460148,41.81976049236802],[-87.72397685200332,41.81979102361998],[-87.72398088814026,41.819958050764605],[-87.7239836951571,41.82006000375071],[-87.72398629159451,41.820154295242865],[-87.72399268770485,41.82042771404819],[-87.7239968957381,41.820676532512884],[-87.72400492392492,41.82092044662693],[-87.72400777615822,41.821007110921315],[-87.72401141866371,41.821103369829956],[-87.72401552111563,41.82121179271279],[-87.72401593945577,41.82126971261422],[-87.7240169484736,41.821409632434644],[-87.72401455454693,41.821553479921114],[-87.72401455026454,41.8215537381348],[-87.72401221877766,41.821687824832324],[-87.72401771964456,41.82184807913325],[-87.7240228841965,41.821998533481775],[-87.72403041645613,41.82220631514115],[-87.72403763030452,41.82242833789608],[-87.72403890714773,41.82248451752849],[-87.72404090510788,41.822572448141564],[-87.72404213484639,41.82262655367338],[-87.72404572888239,41.82278470834099],[-87.72404844188324,41.82290410394303],[-87.72405041095438,41.82299074952647],[-87.72405207136333,41.82306382412576],[-87.72405237737539,41.82307728806778],[-87.7240523788611,41.82307732484896],[-87.72405360478635,41.82313129231866],[-87.72405426566436,41.8231603813041],[-87.72405482473106,41.823184962002216],[-87.7240548647501,41.823186739132964],[-87.72405580162257,41.82322796943415],[-87.72405680171985,41.8232719734353],[-87.72369533671117,41.82338611152278],[-87.72350700753482,41.82344557864516],[-87.72233852918133,41.823814529737156],[-87.7219523572832,41.82393646130223],[-87.72181792629867,41.823978581640894],[-87.72133794337329,41.824128970080665],[-87.72119731210155,41.82417303171017],[-87.72107338399583,41.824211860227805],[-87.72060304052324,41.82436094595948],[-87.71959377559067,41.82467828445791],[-87.71933427592101,41.824758832878416],[-87.71922255433702,41.82479351108104],[-87.71858348687928,41.82499187307111],[-87.71775801273604,41.82523715675004],[-87.71764166917593,41.825291247432226],[-87.7174763669198,41.825343790914594],[-87.71710206858542,41.82546276506949],[-87.71683195252783,41.825548492698864],[-87.7167683413234,41.825568681180876],[-87.71643236024046,41.82567321784054],[-87.71602313585832,41.82580162834659],[-87.71587540356938,41.82584814256347],[-87.71576875741874,41.825881692357385],[-87.71573033842834,41.82589377849258],[-87.71522984765724,41.82605122598607],[-87.71437442000348,41.82632111996084],[-87.7143693473594,41.82604056364234],[-87.71436194672735,41.82563255919317],[-87.7143619476757,41.825632308371645],[-87.71436195094101,41.82563151227538],[-87.7143666595173,41.824508508203635],[-87.71434070589413,41.82444147692992],[-87.71433927821425,41.824351593971976],[-87.7143380815181,41.82428538189986],[-87.71433716500202,41.824237694915844],[-87.71433672522942,41.82423634840026],[-87.71432301164725,41.824194408119524],[-87.71429371589588,41.82336495537117],[-87.71429349241198,41.82335863794344],[-87.71426186546138,41.82246317350484],[-87.71426040608861,41.822421840968055],[-87.71432667813406,41.82223157361462],[-87.71432842387782,41.82219316316485],[-87.7143301663155,41.82215509573142],[-87.71433053633379,41.82211667786742],[-87.71433016760874,41.822059731887364],[-87.71431775989466,41.8215385959425],[-87.71428268852236,41.82032337867569],[-87.71426797413123,41.81970858142212],[-87.71425066784091,41.818981940843436],[-87.71421585972188,41.81793000895924],[-87.71420977067126,41.8176576068605],[-87.71420420419233,41.81752139152703],[-87.71419868728385,41.8173800317597],[-87.71419645545832,41.81727848145004],[-87.71419115404073,41.81706714347583],[-87.71417980790383,41.816721646594495],[-87.71417167749627,41.816423162241726],[-87.71416468226533,41.81610204396949],[-87.71415680456943,41.81587251121901],[-87.71414870773474,41.81557059665379],[-87.7141426176239,41.81539355812304],[-87.71414045787999,41.8153321432436],[-87.71413370516741,41.815128687174855],[-87.71412961184177,41.81488716856321],[-87.71412065396153,41.814579417984746],[-87.71411246780904,41.81428676508555],[-87.71410171713127,41.81387952440517],[-87.71409375248143,41.81356388959622],[-87.71408452469936,41.81323658449677],[-87.71407561672993,41.812923688571914],[-87.71407406429329,41.81284684036446],[-87.7140689121489,41.81262006645333],[-87.71405479567099,41.81213390944911],[-87.71403978398693,41.81169302875371],[-87.71403924365329,41.81165391984334],[-87.7140333274388,41.811363680275015],[-87.71402634812095,41.81113621038323],[-87.71401470927353,41.81063085691555],[-87.71400207854927,41.810276090486425],[-87.71400091395584,41.81011142733478],[-87.71399427532096,41.81003901112365],[-87.71396363259076,41.80984057158006],[-87.71394299951524,41.80969775769416],[-87.71393249117132,41.80964624575496],[-87.7139150881678,41.80950139106519],[-87.71390946993347,41.809370664360415],[-87.71390206329359,41.80909242259328],[-87.71389589580059,41.80887593438476],[-87.71389081052664,41.80864229969277],[-87.71388985476575,41.80859872933732],[-87.71388702299453,41.80851192614935],[-87.71388497269852,41.80843919134518],[-87.71388318591195,41.808386697315704],[-87.71388139912516,41.80833420356016],[-87.71388040041643,41.808295092154715],[-87.71387540873536,41.80818002273433],[-87.71387381565924,41.80798866879242],[-87.7139273453464,41.80798874229295],[-87.714187063731,41.807989099062155],[-87.71464435256657,41.80798424827518],[-87.71607997293992,41.80796765679758],[-87.71623126967529,41.80796457471624],[-87.7163760728807,41.807961618375096],[-87.71664760425642,41.80795868554973],[-87.71684371991346,41.80795594479992],[-87.71716485549732,41.807951664139765],[-87.71733932704265,41.80794927928342],[-87.71745432858835,41.80794820461327],[-87.71769016316325,41.80794600083366],[-87.71793407342469,41.80794319108526],[-87.71806166670368,41.80794093049855],[-87.7182789577886,41.80793708005797],[-87.7185444107415,41.8079330399325],[-87.71867788063562,41.80793283045322],[-87.71882989313207,41.80793259158083],[-87.71907770244073,41.80792862049443],[-87.71927621204733,41.807924914171906],[-87.71954925509469,41.80792109698742],[-87.71969955242228,41.807918936132275],[-87.71988800890104,41.807916948953476],[-87.72011763292623,41.80791452754735],[-87.72035149471078,41.80791154952661],[-87.72051654030423,41.80790902721609],[-87.72078257520224,41.80790547899314],[-87.72098242238057,41.80790377277097],[-87.72112384646192,41.807902572921336],[-87.72121682450333,41.80790178381045],[-87.72140994619001,41.80789759859458],[-87.7214959315405,41.80789673935053],[-87.7217382675257,41.80789358437331],[-87.72193614319133,41.80789090549608],[-87.7221571256144,41.80788837638802],[-87.7223606286086,41.80788875091914],[-87.72235120232342,41.807667862854096],[-87.7223475132654,41.807538834492384],[-87.7223432501547,41.807408458375704],[-87.72233906858214,41.80728494339735],[-87.72233605391726,41.80718530988613],[-87.72233234422144,41.80705073795146],[-87.72232880375621,41.80692151826601],[-87.72232543069484,41.80679784292031],[-87.72232255860465,41.80668706836835],[-87.72231953477493,41.80656910298456],[-87.72231688041576,41.80645857657175],[-87.72231413797584,41.80637260690928],[-87.722312076044,41.806307972181145],[-87.72231005101371,41.80626041477629],[-87.72230508907963,41.80614388146992],[-87.72230431967775,41.806054932126024],[-87.722527790505,41.80605241909927],[-87.7227157452499,41.80605100337435],[-87.72291697713247,41.80604809667224],[-87.72305287048607,41.80604587930527],[-87.72328845728745,41.806042053730906]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2631631.35365","perimeter":"0.0","tract_cent":"1177680.67118126","census_t_1":"17031380700","tract_numa":"9","tract_comm":"38","objectid":"80","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875539.97265392","census_tra":"380700","tract_ce_3":"41.81380634","tract_crea":"","tract_ce_2":"-87.62376805","shape_len":"6617.52615251"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62532186238535,41.81106269089777],[-87.6261302694716,41.81105420159863],[-87.6261331206914,41.81113847444069],[-87.62613850513127,41.81129761490432],[-87.62613856823755,41.81129948112552],[-87.62615202197723,41.811820482244144],[-87.62616181398066,41.81227754661414],[-87.62616307109711,41.81233927309145],[-87.62616777990108,41.81257555668351],[-87.62617590152426,41.812907663896844],[-87.62618331769087,41.81305902911636],[-87.62618711950331,41.813136629863166],[-87.62619282714506,41.813253135019536],[-87.62619933663595,41.8135151160646],[-87.62620544473268,41.81384690895706],[-87.62621192363319,41.81415496614438],[-87.62622148027256,41.81452679173879],[-87.62622553889472,41.81463421496951],[-87.62622752234148,41.81468671058855],[-87.62623347049362,41.81484413101776],[-87.62623988272827,41.815104903635934],[-87.62625120240409,41.81558560588657],[-87.62625218483433,41.81562732461154],[-87.62625781339918,41.81593600765096],[-87.62626324521793,41.81633601886249],[-87.62627050845802,41.81648982544944],[-87.62576972975627,41.81649598973982],[-87.62546594335342,41.81650000122855],[-87.62535737222821,41.816501434769],[-87.62465483802154,41.81651352623505],[-87.62440089922119,41.81651789567263],[-87.62396813388466,41.81652436811679],[-87.62385078511004,41.81652617385792],[-87.62372887346957,41.8165280495365],[-87.62338211409723,41.8165329322002],[-87.62303078252383,41.81653922354261],[-87.62260402760792,41.81654686386726],[-87.62234127540134,41.81655176890182],[-87.62221256062266,41.81655346995929],[-87.6220032146531,41.81655623499175],[-87.62174691156544,41.81655851693362],[-87.62148402319112,41.81656275587265],[-87.62140742832896,41.8165639908571],[-87.62139760890283,41.816229921578376],[-87.62138711239224,41.81583616289619],[-87.62138190075198,41.81563771967347],[-87.6213753900715,41.815390859417974],[-87.62136891465242,41.81514416402666],[-87.621363548769,41.81493968242273],[-87.62135885047944,41.814751635736435],[-87.62135284805888,41.81451142714365],[-87.62134727887216,41.81433199947317],[-87.62134250282705,41.814147170494294],[-87.62133817912512,41.81396124660374],[-87.6213337334294,41.813769778518086],[-87.62132658883432,41.81350403392246],[-87.62131913208201,41.813256508809495],[-87.621315626175,41.81313258310866],[-87.62131020105736,41.81294056006919],[-87.62130184407582,41.81264475784228],[-87.62129643289528,41.81243445800564],[-87.62129304721722,41.812309188337565],[-87.62129047226023,41.81221422048186],[-87.62128471862104,41.812005071101694],[-87.62127308233711,41.81158517983907],[-87.6212676435271,41.811393979944455],[-87.62126038121971,41.81112498940216],[-87.6215737812609,41.8111195833945],[-87.62178370481807,41.811116658035665],[-87.62207492307834,41.811112617940616],[-87.62235818723452,41.811108716682085],[-87.6225762549806,41.81110570279403],[-87.62288463695008,41.81109968641065],[-87.6233986097307,41.81108965728231],[-87.62361627301387,41.81108672124799],[-87.62369514964686,41.81108563883337],[-87.6239279288674,41.81108244432332],[-87.62419955891166,41.811078742746986],[-87.62450913396205,41.811071219741],[-87.62532186238535,41.81106269089777]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"19212604.0074","perimeter":"0.0","tract_cent":"1148519.66886086","census_t_1":"17031570200","tract_numa":"39","tract_comm":"57","objectid":"45","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875548.59352728","census_tra":"570200","tract_ce_3":"41.81444094","tract_crea":"","tract_ce_2":"-87.73073345","shape_len":"17936.4271779"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73818007310543,41.807684642792324],[-87.73827197637961,41.807683529142274],[-87.73828365279019,41.80778810814504],[-87.73829303148045,41.80821146247971],[-87.73830520834207,41.80872882325543],[-87.73830694207436,41.808789205919496],[-87.7383087488076,41.808846972012546],[-87.7383159279794,41.80907646201051],[-87.73832887982387,41.80949048388717],[-87.73838669594201,41.8113191618425],[-87.73838671355414,41.811319716278696],[-87.73844340068574,41.81311089267003],[-87.73844346259872,41.81311284390019],[-87.7384712402759,41.813987590114635],[-87.73850187175285,41.814952180870975],[-87.73850240460227,41.81496896874663],[-87.73844646178507,41.81496902235208],[-87.73844648443091,41.81497085647191],[-87.738447250127,41.815032487917506],[-87.73844949664176,41.81518617924766],[-87.73845107296593,41.81531311037117],[-87.73846362201688,41.81564180290252],[-87.73847845295685,41.816021276408414],[-87.73848229779574,41.81629949740809],[-87.73848974592983,41.81683261283852],[-87.73850512219235,41.817252223623],[-87.73851645216624,41.81801004663168],[-87.73851710580101,41.818038521910005],[-87.7385182635153,41.818111594604595],[-87.73852223332054,41.81827730072081],[-87.73852319426298,41.81832398587874],[-87.73852587900325,41.81843383130451],[-87.73852650578606,41.81845981738089],[-87.73852820496145,41.81852397369377],[-87.73853045620659,41.81862758214435],[-87.73855658142494,41.818706145062364],[-87.7381755019372,41.818826745524944],[-87.73798757328402,41.818886219064275],[-87.73681224538412,41.819261340682644],[-87.73667282431316,41.81930489439745],[-87.73649891739005,41.81935922062926],[-87.73613783134891,41.81947194496329],[-87.73605016781848,41.81949936005477],[-87.73594922920012,41.81953092674046],[-87.7357278184038,41.81960104120313],[-87.73559923812117,41.81964175863851],[-87.73504087949225,41.819818656839765],[-87.73483460155165,41.81988410353759],[-87.73445554358196,41.820003589617585],[-87.73442202372065,41.82001414634953],[-87.73435864385138,41.82003411502017],[-87.73433128812952,41.82004273375134],[-87.73393567249781,41.82016723612107],[-87.73364839569206,41.820257300067084],[-87.73335939905168,41.82034790206682],[-87.73291017931439,41.820488202360195],[-87.73239945711661,41.82064952962984],[-87.73211598057392,41.820739658459246],[-87.73196595837742,41.82078735628411],[-87.73191847972656,41.82080246276111],[-87.73182302928362,41.82083283251615],[-87.73119134605575,41.82103059801279],[-87.73114022292103,41.82104660329726],[-87.73011143272248,41.82136868361541],[-87.72950026349383,41.821561559235136],[-87.72899141071713,41.82172214181699],[-87.72885729714574,41.821764223794034],[-87.72833685785437,41.82192752381638],[-87.72764589257726,41.82214898171373],[-87.72748330801446,41.82219925647102],[-87.7272506943602,41.82225281167662],[-87.72674071429992,41.82242888017219],[-87.72666919365103,41.822450995368555],[-87.7265822389588,41.82247844345143],[-87.72611472729683,41.822625618355275],[-87.72557571760318,41.82279508106711],[-87.72522301043642,41.82290614403765],[-87.7245298774191,41.82312259051228],[-87.72437055362576,41.82317290035939],[-87.72411774757282,41.82325272890921],[-87.72405680171985,41.8232719734353],[-87.72405580162257,41.82322796943415],[-87.7240548647501,41.823186739132964],[-87.72405482473106,41.823184962002216],[-87.72405426566436,41.8231603813041],[-87.72405360478635,41.82313129231866],[-87.7240523788611,41.82307732484896],[-87.72405237737539,41.82307728806778],[-87.72405207136333,41.82306382412576],[-87.72405041095438,41.82299074952647],[-87.72404844188324,41.82290410394303],[-87.72404572888239,41.82278470834099],[-87.72404213484639,41.82262655367338],[-87.72404090510788,41.822572448141564],[-87.72403890714773,41.82248451752849],[-87.72403763030452,41.82242833789608],[-87.72403041645613,41.82220631514115],[-87.7240228841965,41.821998533481775],[-87.72401771964456,41.82184807913325],[-87.72401221877766,41.821687824832324],[-87.72401455026454,41.8215537381348],[-87.72401455454693,41.821553479921114],[-87.7240169484736,41.821409632434644],[-87.72401593945577,41.82126971261422],[-87.72401552111563,41.82121179271279],[-87.72401141866371,41.821103369829956],[-87.72400777615822,41.821007110921315],[-87.72400492392492,41.82092044662693],[-87.7239968957381,41.820676532512884],[-87.72399268770485,41.82042771404819],[-87.72398629159451,41.820154295242865],[-87.7239836951571,41.82006000375071],[-87.72398088814026,41.819958050764605],[-87.72397685200332,41.81979102361998],[-87.72397611460148,41.81976049236802],[-87.72397318574686,41.81964055163895],[-87.72397112581852,41.81953165848906],[-87.72397035080988,41.81949069933102],[-87.72396952067488,41.81946166897966],[-87.72396566708959,41.8193268960075],[-87.7239658748217,41.819133714243264],[-87.72396592660121,41.81908533811862],[-87.72396622045497,41.81881190781181],[-87.72395961594961,41.81866884101921],[-87.723952040008,41.81842628899663],[-87.7239470077004,41.818265173185516],[-87.72394281170604,41.81815936806487],[-87.72394016833852,41.8180927139147],[-87.72393759993336,41.81802898803169],[-87.7239340501963,41.817940922878876],[-87.72392626231631,41.81770986822575],[-87.72392252239773,41.81750070693702],[-87.72391258069433,41.8173188457509],[-87.72390996213406,41.817115233839544],[-87.72390759859975,41.81701790945777],[-87.72390551679621,41.816932194867476],[-87.72390088619277,41.816741497271316],[-87.72389856167251,41.81664017604812],[-87.72389719985928,41.81658082763713],[-87.72389144329176,41.81636232533374],[-87.72388778493303,41.816223472580305],[-87.72388272017402,41.81603024846891],[-87.72387880507488,41.815858929797876],[-87.72387479425814,41.81566675409199],[-87.72387385329591,41.81557149269818],[-87.72387320317573,41.815505683627805],[-87.72386189194762,41.815195491781694],[-87.72385538559678,41.815017052750434],[-87.7238455038937,41.81475923014023],[-87.72384333716369,41.81470585585182],[-87.72383824778551,41.81458048387361],[-87.72383029026727,41.81437887704737],[-87.72382848674458,41.81433320019187],[-87.7238217517902,41.814169138573924],[-87.72381282695659,41.81394974119536],[-87.72380504556683,41.81370260465451],[-87.7238007462364,41.81359110835831],[-87.72379206669389,41.81336601074132],[-87.72378352249099,41.81314444133116],[-87.72377465768791,41.81295355702946],[-87.7237731219462,41.812898718155935],[-87.72376731771448,41.81271405216072],[-87.72376324922392,41.81257829845162],[-87.72375743315258,41.812402468966894],[-87.72374743938722,41.8122687694599],[-87.72374045161342,41.81210030515994],[-87.72373863152883,41.81205642515247],[-87.72373790463222,41.812031340762964],[-87.7237350383845,41.81193244691496],[-87.7237328389645,41.81184984638154],[-87.7237306563113,41.81176787657167],[-87.72372702628863,41.81164365087234],[-87.72372402972815,41.81154109435718],[-87.72372013179533,41.811407716150946],[-87.72371288165617,41.81120523204685],[-87.72370629285805,41.81106449777604],[-87.72369714990903,41.810864308810196],[-87.72369259122378,41.81075319610207],[-87.72368607126053,41.81057813094752],[-87.72368108317603,41.81044267445075],[-87.72367160745182,41.810219568942806],[-87.72366428427382,41.810047985020454],[-87.72365493619029,41.80979595544173],[-87.72365161017497,41.80970243625973],[-87.72363866087025,41.809338342352966],[-87.72362943616433,41.80911973875466],[-87.72362388077993,41.808947423224126],[-87.72361569931357,41.80871938481565],[-87.72360914874398,41.80854371596561],[-87.72360134881461,41.808331925993244],[-87.72358661403264,41.80788362462723],[-87.72381246712327,41.807881940923984],[-87.72400492687214,41.80787791248943],[-87.72417584423734,41.80787508675267],[-87.72419400417903,41.807874678103865],[-87.7243357649968,41.80787148922416],[-87.72445245869918,41.80786596035141],[-87.72469589420716,41.807855120695166],[-87.72480669464467,41.807854114375],[-87.72492490500727,41.80785304071592],[-87.72512427207187,41.807851654058084],[-87.72534147571079,41.80784918141876],[-87.72542749765675,41.807848319425084],[-87.72561046816347,41.807847009808185],[-87.72575529969419,41.80784486699766],[-87.72590944893956,41.80784260861834],[-87.72603189848117,41.8078409755456],[-87.72617027412612,41.807839130139136],[-87.7264128600538,41.80783665241622],[-87.72662082406829,41.80783374434051],[-87.72681290446067,41.807831053621165],[-87.72700483516998,41.80782863676769],[-87.72725613091758,41.80782589313233],[-87.72737082530367,41.80782464033449],[-87.72761231868893,41.80782135847283],[-87.72769166729152,41.80782024005199],[-87.72789089621672,41.80781788736446],[-87.72797853385273,41.80781686704434],[-87.72807438798003,41.80781578072766],[-87.7281782763583,41.807814544282046],[-87.72847590385844,41.807809035685345],[-87.72860188989951,41.807806703608215],[-87.72881028729988,41.80780453480605],[-87.72897741853241,41.80780253272681],[-87.72904910091904,41.80780142792074],[-87.72921693443281,41.80779885288782],[-87.72947297860748,41.807796686463654],[-87.72970651041534,41.80779364567249],[-87.72979334061316,41.80779251461867],[-87.72991139045426,41.807790976963204],[-87.73014683040967,41.807787767745076],[-87.73031528275342,41.8077856883276],[-87.73055504706032,41.80778288517279],[-87.730811244301,41.80778003049765],[-87.7309226528424,41.80777865400755],[-87.73108501584531,41.80777666474571],[-87.73121058459053,41.80777512648012],[-87.73143424625081,41.807772346855366],[-87.73168974937924,41.807769184712505],[-87.73190570995041,41.807766226620764],[-87.73203249082273,41.80776450252628],[-87.73215567951894,41.8077624790267],[-87.73224658592903,41.80776098544653],[-87.73238172604091,41.807759538794606],[-87.73260820971598,41.80775711413358],[-87.73273575976697,41.807755503330995],[-87.73287156514118,41.80775363366819],[-87.73305593783552,41.80775138618912],[-87.73317589274147,41.80775003735388],[-87.73337035823761,41.80774719362592],[-87.73348147555475,41.80774556861709],[-87.73367861388549,41.80774319497323],[-87.73383840753549,41.80774133961659],[-87.73398917945266,41.807739288501566],[-87.73405418431668,41.80773840396877],[-87.73419725695625,41.807736021794234],[-87.73434088333335,41.807733258129176],[-87.73453644978102,41.80773030400546],[-87.73459686602767,41.807729851071784],[-87.7346772358996,41.80772924852438],[-87.73484722925569,41.80772708816257],[-87.73504040655787,41.807724664101414],[-87.73520933671658,41.80772244634807],[-87.735299322747,41.80772126471957],[-87.73548905230881,41.80771882195458],[-87.73564319749171,41.80771693468987],[-87.7358193982926,41.80771388228427],[-87.73599163631131,41.8077108984654],[-87.73621864093731,41.80770752316494],[-87.73642032740881,41.807705141013805],[-87.73666309556823,41.80770269747405],[-87.73693784753345,41.807700337150905],[-87.73706098244992,41.80769902162459],[-87.73713146154348,41.807698268596944],[-87.73730159970819,41.80769629745395],[-87.73755985272537,41.80769319140648],[-87.73785985473496,41.80768925837576],[-87.73808700695675,41.807685770376324],[-87.73818007310543,41.807684642792324]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7117045.98466","perimeter":"0.0","tract_cent":"1141261.5112351","census_t_1":"17031560700","tract_numa":"39","tract_comm":"56","objectid":"48","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1868947.5218343","census_tra":"560700","tract_ce_3":"41.79646311","tract_crea":"","tract_ce_2":"-87.75751986","shape_len":"10672.6928949"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75273612068429,41.80018714345771],[-87.75272964787275,41.79999460139555],[-87.75272682996244,41.799912670148494],[-87.75272220772159,41.7997787255167],[-87.75271712307593,41.799631002216664],[-87.75271286034837,41.799473485956995],[-87.75270876440612,41.79931780920923],[-87.75270527067426,41.79918480332509],[-87.75270125157483,41.799028742757294],[-87.75269769297695,41.7989069881224],[-87.75269150065672,41.79869915927471],[-87.75268755569626,41.798543016739494],[-87.75268319785636,41.798361719606476],[-87.75267769095534,41.79813261333862],[-87.75267375824656,41.797999495436024],[-87.75266723300516,41.7977798095421],[-87.7526649794586,41.79768855547103],[-87.75266266736467,41.79759493113423],[-87.75265873117213,41.797433766562996],[-87.75263924183932,41.79721469624791],[-87.75262413754336,41.79704491796675],[-87.75261793146606,41.796846776321956],[-87.75261415433036,41.79673706796636],[-87.75261037893955,41.79662716751709],[-87.75260294980052,41.79637764656674],[-87.75259652077611,41.79614734069156],[-87.75258943643895,41.795932756276784],[-87.75258543006093,41.79578300782411],[-87.75257923609722,41.79555149535059],[-87.75257277280518,41.795349373131096],[-87.75256960968797,41.795229267263416],[-87.7525671797324,41.79513697930769],[-87.75256616001334,41.79509821077401],[-87.75256392626814,41.79501315281838],[-87.75256217053997,41.79493250351116],[-87.7525595193361,41.79481073910343],[-87.75255621041069,41.79468980892547],[-87.75255111274159,41.79450297927889],[-87.7525464137573,41.794312611506406],[-87.75254437512433,41.794236045910466],[-87.75254225125809,41.79415624820548],[-87.75253678447157,41.79396562955328],[-87.75253274912129,41.7938154964265],[-87.7525266915394,41.79358467090863],[-87.75252046132614,41.79339336202991],[-87.75251895999654,41.79334376564297],[-87.75251450132957,41.79319645670505],[-87.75250742305312,41.792887830823084],[-87.75287751641062,41.792882862910155],[-87.75302704805011,41.79288027004938],[-87.75319678851494,41.79287734023757],[-87.7534330592568,41.79287342904802],[-87.75364028145985,41.79287002887505],[-87.75375207255745,41.792868211435035],[-87.75394044235765,41.792865148929586],[-87.7542846502902,41.7928596672144],[-87.7545847698795,41.792855251632105],[-87.75486190113047,41.79285033585863],[-87.75497497057911,41.792848960282335],[-87.75529914172103,41.79284501710874],[-87.75545281549894,41.79284263430663],[-87.75567654975548,41.79283813374892],[-87.75587621921183,41.79283458206642],[-87.75619595750581,41.7928301804812],[-87.7563523057786,41.7928280278087],[-87.75660834549123,41.79282371512864],[-87.75683068151486,41.792819726718726],[-87.75703064422859,41.79281617450107],[-87.75715307048331,41.79281415407908],[-87.75742032766647,41.79281034591393],[-87.75769158101676,41.792806480311],[-87.75796734482951,41.79280270252098],[-87.75803193105831,41.792801802025174],[-87.75815127296174,41.792800138316835],[-87.7583124608654,41.792798118625626],[-87.75851182399828,41.79279598786003],[-87.75863799446267,41.7927935787094],[-87.75881019426043,41.7927902903842],[-87.75909403259676,41.79278572698288],[-87.75925551922897,41.79278309960081],[-87.75938693045954,41.7927809611564],[-87.759655067841,41.79277703144022],[-87.7598676764616,41.79277411949771],[-87.76001775250178,41.792772063623495],[-87.76029143131129,41.792767666104076],[-87.7605366443337,41.79276427860616],[-87.76079792197558,41.79276058644787],[-87.76108660138453,41.792755897350865],[-87.76133317701877,41.792751891436865],[-87.76156391771181,41.79274705753909],[-87.7617014855913,41.792745404562424],[-87.76190308798793,41.79274298212074],[-87.76217930019274,41.792738209052615],[-87.76230157887223,41.7927356357463],[-87.762309396562,41.79303710491052],[-87.76231595281622,41.79320739337698],[-87.76232205163504,41.793412696729106],[-87.76232722374792,41.7935819354731],[-87.76233503017814,41.79379317496912],[-87.76234323961472,41.793992067147755],[-87.76235024240331,41.79416164428801],[-87.76235658328514,41.79431903347895],[-87.76236445864868,41.79453987803425],[-87.76237182311917,41.79474639538989],[-87.76237313334518,41.794805821021654],[-87.76237404540868,41.794847220443614],[-87.76237516999304,41.794898226215146],[-87.76237892018096,41.795062380907964],[-87.762380839869,41.79513437265564],[-87.76238290984539,41.79521199204371],[-87.76238951351725,41.795422429654785],[-87.76240657224365,41.79570311406148],[-87.7624223133062,41.79596212024022],[-87.7624304153864,41.79643316309739],[-87.76242996430697,41.79658349336003],[-87.76242954157009,41.79672616664075],[-87.76243398290951,41.79698192912287],[-87.7624404316907,41.79720158671207],[-87.76244532426118,41.79738171878281],[-87.76245259927555,41.797603328908075],[-87.76245996906924,41.79781426420808],[-87.76246383148381,41.797994775340335],[-87.76246916424219,41.798240281845096],[-87.76253173343903,41.8000576906349],[-87.76222547861443,41.80005274060218],[-87.76211433805302,41.80005438344264],[-87.76190431305186,41.80005742076041],[-87.76187301806513,41.800058122949864],[-87.7614869975691,41.80006377624756],[-87.76136931850128,41.80006566738265],[-87.76129590030841,41.80006684684698],[-87.76109695266987,41.80007004377835],[-87.76091071040837,41.80007303583364],[-87.76083714841063,41.80007405292398],[-87.76068428658985,41.800076166760185],[-87.76064528976838,41.80007670535662],[-87.76061309080269,41.80007715049606],[-87.76024593430597,41.80008132969855],[-87.76013483879244,41.8000826396127],[-87.76006967579065,41.80008340777406],[-87.75992124203638,41.80008515794272],[-87.75977167342548,41.800086921188964],[-87.75956098170727,41.80009017757125],[-87.75946011316957,41.80009151650765],[-87.75941228260152,41.800092151337346],[-87.75911400713468,41.80009576541564],[-87.75909617572414,41.80009595949273],[-87.75884883022965,41.80009865125557],[-87.75854920857732,41.80010191217794],[-87.75845576888625,41.80010292927282],[-87.75823641903487,41.800106523822855],[-87.75823476810967,41.8001065430008],[-87.75790051105665,41.80011049492954],[-87.75786551453088,41.80011093296928],[-87.75763075659881,41.80011387287473],[-87.75728224341276,41.80011823619989],[-87.7570146503364,41.80012351901647],[-87.7570087383375,41.800123635627116],[-87.75700735029768,41.80012366324145],[-87.75670246008457,41.80012871951261],[-87.75639097523093,41.80013250966882],[-87.75600636065822,41.80013718836287],[-87.75583374500481,41.80013961387229],[-87.75579060863367,41.80014026777349],[-87.75546664878898,41.80014517741322],[-87.75539213872979,41.800146340476196],[-87.75518028978655,41.800149647491494],[-87.75492039568977,41.800153703724824],[-87.75482848258028,41.80015513802189],[-87.75460993813623,41.80015881230531],[-87.75457023784311,41.80015946686715],[-87.75456639810417,41.80015953012495],[-87.75456639407008,41.80015953010463],[-87.75430398410455,41.800163856850396],[-87.75395755201247,41.80016855949683],[-87.7539575472449,41.80016855947279],[-87.75395754357751,41.80016855945429],[-87.75348884926821,41.800174921203734],[-87.75334718742502,41.8001773013505],[-87.753264032283,41.800178698204945],[-87.7532354758292,41.80017910066692],[-87.75294436635224,41.80018320445759],[-87.7528482666996,41.800184392084304],[-87.75273612508512,41.80018714347995],[-87.75273612068429,41.80018714345771]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8213044.80529","perimeter":"0.0","tract_cent":"1157034.38410583","census_t_1":"17031580200","tract_numa":"35","tract_comm":"58","objectid":"46","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880167.3492022","census_tra":"580200","tract_ce_3":"41.82694729","tract_crea":"","tract_ce_2":"-87.69937523","shape_len":"11709.7186028"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69487208442489,41.83206460126698],[-87.69486002731641,41.83173358710938],[-87.6948541369635,41.831468257559294],[-87.69485119302585,41.831335635597114],[-87.69484199725652,41.8309740293581],[-87.69481264522268,41.83058170282836],[-87.69479283930015,41.8300750816145],[-87.69477601795639,41.82963456831893],[-87.69479095735512,41.829181748964785],[-87.69479403702037,41.82908839994496],[-87.69478629173724,41.82894031251458],[-87.69478152419282,41.82881454350324],[-87.69477652428,41.828682104617904],[-87.69477071297787,41.82852896941236],[-87.69476410414994,41.828273147362665],[-87.6947604318453,41.8281309928909],[-87.69475606160645,41.827968946798784],[-87.6947512527189,41.827791969150695],[-87.6947473344153,41.82764721474818],[-87.694743762726,41.827515579614065],[-87.69474064794213,41.82733822881874],[-87.6947377643174,41.82717402162183],[-87.69473312227625,41.82703933438395],[-87.69472751633721,41.82687980612076],[-87.69472229915512,41.82673284878118],[-87.69471913928508,41.82663727565312],[-87.69471783782207,41.826585226037565],[-87.6947166581982,41.8265380470846],[-87.69471473814454,41.826462221495184],[-87.6947141298828,41.82643855041077],[-87.6947131526542,41.826400467374995],[-87.69471118005595,41.82632361650584],[-87.6947096827046,41.82626528800062],[-87.69470887630794,41.82623386516506],[-87.69470501895123,41.82607560924041],[-87.69470033439451,41.82590091024474],[-87.69469438510251,41.82570210949734],[-87.69468928584828,41.82552137078419],[-87.6946825010206,41.8252809070405],[-87.69467619218761,41.82509245045567],[-87.69467128658577,41.82494738834966],[-87.6946654040275,41.82477142056651],[-87.69466171665094,41.82461390704851],[-87.69465628667734,41.82438195722325],[-87.69465172083441,41.824206408110236],[-87.69464967648534,41.82414705045776],[-87.69464505824082,41.82401295466979],[-87.69463557270093,41.82381191133064],[-87.69463295186546,41.823698891136765],[-87.69462763712774,41.8234696837185],[-87.69462225929244,41.823294596588354],[-87.69461671609587,41.8231140748708],[-87.69461413215714,41.82294954155193],[-87.6946272319414,41.82278623705652],[-87.69491559939392,41.82277970009097],[-87.69519767676047,41.822774108260404],[-87.69525187582666,41.82277303392121],[-87.69547729526987,41.82276855038201],[-87.69571702618222,41.82276378908848],[-87.69590424588513,41.82276008059703],[-87.69612265666596,41.822755748996435],[-87.69637956068452,41.822750669944604],[-87.69662189701695,41.82274583888155],[-87.69684085864839,41.822741481525725],[-87.69708826550989,41.82273736172287],[-87.69729344432159,41.82273394446199],[-87.69749651689717,41.82272985462866],[-87.69764476627735,41.82272688806892],[-87.69770861647817,41.822725587711865],[-87.69789789116103,41.82272181214873],[-87.69820121536462,41.822715723442975],[-87.6984872193403,41.82270997702012],[-87.69881443179798,41.82270344269642],[-87.69905328238134,41.82269861469005],[-87.6993001321315,41.82269366568449],[-87.69953679046986,41.822689104213296],[-87.69992882894321,41.822681546763164],[-87.70011190188349,41.82267785602154],[-87.70016826637053,41.822676719399446],[-87.70035089944248,41.82267306097888],[-87.700598005735,41.82266808315454],[-87.70078973898698,41.8226642269049],[-87.70099394873253,41.82266010998101],[-87.7012174968963,41.82265560459863],[-87.70133723412603,41.82265320167525],[-87.70141711948729,41.8226515986179],[-87.70164008062163,41.822647089457895],[-87.70177500939512,41.822644373622964],[-87.70200627825194,41.82263790995114],[-87.70237315259386,41.822627655042794],[-87.70256359708158,41.82262421603592],[-87.7026120342885,41.822623341217906],[-87.70286706160981,41.822618731043505],[-87.70312186877686,41.822614119918185],[-87.70337667592236,41.82260950740413],[-87.70364711480553,41.82260462353685],[-87.7037902597353,41.822602054107996],[-87.7038462192328,41.82260104957715],[-87.70392287512726,41.822599640034284],[-87.70420494628053,41.822594452780535],[-87.70443962230226,41.82258990218221],[-87.70440355727503,41.82268253392871],[-87.70440094796494,41.82271298109118],[-87.70440429815437,41.82282052011705],[-87.70440791478062,41.82293832418671],[-87.70441401907532,41.82313558862236],[-87.7044164168167,41.82321299056589],[-87.70441986411639,41.82332560674707],[-87.70442401544899,41.82350008574342],[-87.70442722103756,41.8236348169763],[-87.70443064523108,41.82376104489707],[-87.70443433586918,41.823897537859175],[-87.70443769986902,41.82402242075018],[-87.70444141889253,41.824159764586305],[-87.70444400390994,41.8242555264596],[-87.7044482196341,41.824403827053246],[-87.70445265589561,41.82455988636372],[-87.70445650662982,41.82466128092121],[-87.70446099558546,41.82477994045286],[-87.70446641740635,41.82492324866687],[-87.70447120532803,41.82504885284185],[-87.7044783192355,41.82523670987204],[-87.70447886504267,41.82529378743739],[-87.70447907777783,41.82531606469328],[-87.7044809297996,41.825509834258916],[-87.70448746394892,41.825689455279736],[-87.70449058612775,41.82579032441595],[-87.70449507492772,41.82593900627129],[-87.70449883783901,41.82606438526987],[-87.70450422514944,41.82624351809985],[-87.70450515107949,41.82627206388297],[-87.70450648502995,41.82631335493142],[-87.7045065013896,41.8263138577718],[-87.70450728740724,41.82633832946419],[-87.70450978023531,41.826415931666936],[-87.70451299672524,41.82651627989443],[-87.70451789925056,41.82666982135827],[-87.70452387318612,41.82686546582742],[-87.70452839278872,41.827018511216274],[-87.7045316828949,41.82716630830958],[-87.70453364318138,41.82725435530559],[-87.70453956655355,41.82748142139732],[-87.70454532611645,41.82770269616851],[-87.70455306525206,41.82795422364771],[-87.70454980258911,41.82807860337221],[-87.70454545727851,41.828244251568705],[-87.70454879736549,41.82843535351651],[-87.70455308399607,41.82858222297595],[-87.70456080933741,41.8287494185929],[-87.70456615001144,41.828864994570715],[-87.70457383663094,41.82903135378716],[-87.70457772629852,41.82911553420863],[-87.70458161571277,41.82919970392472],[-87.70458667935551,41.82930928790577],[-87.70459020325875,41.829385554036904],[-87.70459461254968,41.829480980577515],[-87.70460266273797,41.82965519477181],[-87.70460744033225,41.82979817962559],[-87.70428507866269,41.82985009095194],[-87.7041738488757,41.8298741801853],[-87.70407819086351,41.82990055031079],[-87.70388837918483,41.829953270299896],[-87.70374676004353,41.829993136522546],[-87.70361007057696,41.830031630567255],[-87.70345818347279,41.83007467865368],[-87.70332303869802,41.830112768911356],[-87.7031906566765,41.8301497764578],[-87.7030097808558,41.83020034887059],[-87.70288753546973,41.83023260921812],[-87.70271486775998,41.83027677717989],[-87.70255577389774,41.83031742442945],[-87.70241102578234,41.830354418049744],[-87.70230610042977,41.830381118890664],[-87.70228793222769,41.8303857422418],[-87.70225299987808,41.83039463166161],[-87.70207110609468,41.8304440992907],[-87.70203190267821,41.830455228644595],[-87.70192506598497,41.83048555835791],[-87.7017899530072,41.83052400373644],[-87.70080715742081,41.83079826447666],[-87.70076308897151,41.83080949284156],[-87.70038325249884,41.83091681443721],[-87.70018995759882,41.83097681325241],[-87.69996628345693,41.831046240942875],[-87.69964450401669,41.831145771438635],[-87.69961273337827,41.831155598473345],[-87.69935406314718,41.83123592284879],[-87.69904473698642,41.83133295395194],[-87.69854186381569,41.831492142715085],[-87.69816609157806,41.831614408245436],[-87.69781084892472,41.83173099544852],[-87.69761877108492,41.831807716394565],[-87.69729176821761,41.831939234799954],[-87.69729074774803,41.83193964518044],[-87.69704999395603,41.832029421518115],[-87.69683497519249,41.83211042108431],[-87.69661466513139,41.83219452212632],[-87.69635786270999,41.83199450179383],[-87.69598157765239,41.8321047557974],[-87.6955607560301,41.8322325257622],[-87.69526153053225,41.83232576212336],[-87.69518936864478,41.83234824706626],[-87.69497275125742,41.832417517321886],[-87.69488877699408,41.83244437061601],[-87.69488647165547,41.83241858499455],[-87.6948761777213,41.83216531511675],[-87.69487208442489,41.83206460126698]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3504799.27721","perimeter":"0.0","tract_cent":"1145937.69749326","census_t_1":"17031560500","tract_numa":"18","tract_comm":"56","objectid":"47","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869086.89947258","census_tra":"560500","tract_ce_3":"41.79675835","tract_crea":"","tract_ce_2":"-87.74036808","shape_len":"7832.16417815"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7415170874042,41.79304118165392],[-87.74198473608486,41.79303097051948],[-87.74222139650611,41.79346160608357],[-87.7423182039305,41.793673743868716],[-87.74238164745962,41.79380426653187],[-87.74253850146975,41.79413749004073],[-87.74268171632644,41.794408148841406],[-87.74274089300427,41.794542749597326],[-87.74276493797451,41.794633290714074],[-87.74277069073901,41.79466688625054],[-87.7427818019443,41.79473177283548],[-87.74278870045215,41.79477358846974],[-87.74280200038224,41.79485420559689],[-87.74281484766217,41.79500319438199],[-87.74282029456504,41.79518405709771],[-87.74282100931741,41.79522416719756],[-87.74282132616892,41.795241945238914],[-87.7428217121548,41.795263617783],[-87.74282225823141,41.79529429763506],[-87.7428238493914,41.79538359485383],[-87.74282498515518,41.795447355211],[-87.74282911434449,41.79577181488116],[-87.74283723637633,41.79604842723771],[-87.74285114762463,41.796468673337216],[-87.74286028468097,41.7966742365622],[-87.74287182641305,41.79693390180418],[-87.74288857440692,41.797467611045896],[-87.74289181575486,41.79757123833226],[-87.7428941883841,41.79764708922336],[-87.74290182301385,41.797958028934865],[-87.7429290871209,41.7986607834834],[-87.74294719920842,41.79912763087322],[-87.74294732316507,41.79918676680244],[-87.74294757901085,41.79927744351148],[-87.74294786216691,41.799383045169726],[-87.74294700704424,41.799669795536914],[-87.74294697940805,41.79967903952853],[-87.74295164542852,41.7999310187666],[-87.7429516509199,41.799931299535466],[-87.74295552628085,41.800149512002776],[-87.74295868696494,41.80032747663542],[-87.74272190885092,41.800329596034636],[-87.742528973695,41.80033206173549],[-87.74234651807842,41.80033517379166],[-87.74225206782882,41.800336784481814],[-87.74200855816376,41.80033915372853],[-87.74173791806037,41.80034094338338],[-87.74160723167248,41.80034180736572],[-87.74135175904621,41.80034490944136],[-87.74112720429257,41.800347952718525],[-87.74103634801223,41.80034918383815],[-87.74084678926934,41.80035138969328],[-87.74065693965652,41.80035331930617],[-87.74051331536864,41.800355444076764],[-87.74029248286908,41.800358710752334],[-87.74007098828484,41.800360036940475],[-87.73990094137352,41.80036217981227],[-87.73975433276068,41.80036402696097],[-87.73946270003887,41.80036691054189],[-87.73928745768394,41.80036908986284],[-87.73905588679972,41.800371969315464],[-87.73892222533703,41.80037369274959],[-87.7386738739506,41.80037609683416],[-87.73866914240025,41.80037614259469],[-87.73852653241235,41.800377874130895],[-87.73836073756443,41.80038025381196],[-87.73821104574044,41.80038235992051],[-87.73806105056397,41.80038355864725],[-87.73805173679374,41.80005248072553],[-87.73803877230092,41.79962053157179],[-87.73803299914793,41.79945526617466],[-87.73802896028288,41.79934330739558],[-87.73802087846174,41.79912680981484],[-87.73800492325057,41.7986217781461],[-87.73799003109308,41.7981009722828],[-87.73798516591283,41.79793320244285],[-87.73797621589817,41.797612417343075],[-87.7379587566517,41.79702230451429],[-87.73793533492976,41.796283969655214],[-87.73791726111638,41.79566126533739],[-87.73791413693415,41.79560258968226],[-87.73790888035057,41.795427614252766],[-87.73790510808726,41.79529038021965],[-87.73790026548045,41.795120209158696],[-87.73787946813987,41.7943956088259],[-87.73786484744988,41.793845646165465],[-87.73785908826831,41.79367547030954],[-87.73782292012527,41.79362108281546],[-87.73783402785926,41.793560080207314],[-87.7378408038531,41.79352135195459],[-87.73785142460805,41.79346343387172],[-87.73784867241034,41.793364625146054],[-87.73783891223644,41.793072765897165],[-87.7379465780103,41.79307180279092],[-87.73801120101847,41.79307122467142],[-87.73806452709951,41.793070724095514],[-87.73812851919973,41.793070123705206],[-87.73837292085436,41.793067829559774],[-87.73878680815177,41.79306613034084],[-87.7391527900704,41.793067833964706],[-87.7392107094325,41.79306810388451],[-87.73963227515232,41.79306089786231],[-87.74001615010673,41.7930568711144],[-87.7403178022217,41.79305408061334],[-87.74070346426778,41.79305051195497],[-87.74108723139965,41.79304623408508],[-87.7415170874042,41.79304118165392]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7790598.70608","perimeter":"0.0","tract_cent":"1203424.91259042","census_t_1":"17031520400","tract_numa":"37","tract_comm":"52","objectid":"52","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1835388.10196528","census_tra":"520400","tract_ce_3":"41.7030053","tract_crea":"","tract_ce_2":"-87.53071248","shape_len":"12177.6190465"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.53045152419556,41.70742022043557],[-87.53045225181596,41.70638374376212],[-87.52984493511315,41.70638221692291],[-87.52972364148202,41.70638191158825],[-87.52924848278283,41.70638120884685],[-87.52863808328094,41.70638030308839],[-87.52850767458865,41.70638010910021],[-87.52654209849153,41.7045417958774],[-87.52648449483004,41.704487904952074],[-87.52650502452666,41.70436577764169],[-87.52651650594204,41.70375927990357],[-87.52652010450358,41.703418707780635],[-87.52652771715928,41.702689632194215],[-87.52624887943098,41.70268799443591],[-87.52574340900001,41.70268582941342],[-87.52494858581647,41.70268242043097],[-87.52452774411434,41.702680612915486],[-87.52452766770752,41.702663888498165],[-87.52452759341695,41.702647754947556],[-87.52452748951562,41.7026251887793],[-87.52452738927724,41.702603382264236],[-87.52452738905207,41.702603371010944],[-87.52452738884067,41.70260335866002],[-87.52452897941379,41.70232133426738],[-87.52452937683785,41.70225081602195],[-87.52452939276534,41.702248054800144],[-87.52453017558503,41.7021092633495],[-87.52453040120241,41.70206198031754],[-87.52453050299616,41.70204532493736],[-87.52453140812545,41.70189688943256],[-87.52453206491496,41.70178311457617],[-87.52453403667285,41.70148547956983],[-87.52453575036006,41.70121728955587],[-87.52453725690013,41.70097719935681],[-87.52453837126345,41.70086784605775],[-87.5245404384953,41.70066491843054],[-87.5245417094195,41.700528370840246],[-87.52454170944011,41.700528369193805],[-87.52454298251013,41.700391766454565],[-87.52454501270684,41.7001771203032],[-87.52454698099254,41.699967412935656],[-87.52454853495334,41.69979667199263],[-87.52455094491582,41.69954300425605],[-87.52455490530953,41.699323376171286],[-87.52455742011024,41.69923074560933],[-87.52456217259363,41.69911450301731],[-87.52456358770854,41.69903657509436],[-87.5248186004823,41.69903894476475],[-87.5248539690053,41.69903915106249],[-87.5249942055261,41.699039968262696],[-87.52516754752737,41.69904114462735],[-87.5253184639925,41.69904210377497],[-87.52548879566424,41.69904316408383],[-87.52577672461305,41.699044756400596],[-87.52614826916528,41.699046810206845],[-87.52638103981343,41.699046835697985],[-87.52661708435996,41.6990468090548],[-87.52698986836356,41.69904975031645],[-87.5273415279908,41.69905252354959],[-87.52759242926466,41.69905236226723],[-87.52768207421556,41.699052304423056],[-87.52789504397728,41.69905215070414],[-87.52817915118737,41.699053074355504],[-87.52834798508077,41.699053622935374],[-87.52849970009383,41.699054478390934],[-87.52863900125976,41.69905525577651],[-87.52885883822414,41.69905645931994],[-87.5292452109768,41.699065884854846],[-87.52955454407046,41.699073429942196],[-87.52975325864608,41.699074161301475],[-87.52985112421369,41.699074520676064],[-87.53015046815084,41.69907562063056],[-87.5304543352719,41.69907756098165],[-87.53078866181801,41.699079695139616],[-87.53105241748334,41.69907967891722],[-87.5313556951632,41.69907893348877],[-87.53165856151466,41.699077842996765],[-87.53206138446662,41.69907639159531],[-87.53225947120832,41.69907690786964],[-87.53235054428487,41.69907714531546],[-87.53253481043009,41.699079581859614],[-87.53286423524705,41.699086603798335],[-87.53327308254005,41.69909531720642],[-87.53347772070964,41.699096741727516],[-87.5335417593884,41.69909718743677],[-87.53379715167247,41.699098443191254],[-87.53407506766894,41.69909900209945],[-87.53414786479857,41.6990992803332],[-87.53448477403276,41.69910004185324],[-87.53467377349313,41.699100646397774],[-87.5346749217771,41.69910064998728],[-87.53490955879742,41.69910131992975],[-87.53528133479281,41.699102748647626],[-87.53528105705051,41.6993224579133],[-87.53528095451752,41.699410714849535],[-87.53528069842595,41.69964170259081],[-87.53528033315347,41.6998726346783],[-87.53527965317059,41.70000463179894],[-87.53528140756099,41.70019147735501],[-87.53528245390815,41.700323047365806],[-87.53528247861986,41.7004335887813],[-87.53528137961504,41.70063205042782],[-87.535281895928,41.700741332589516],[-87.53528334979657,41.70092185998116],[-87.53528423583302,41.70103186289369],[-87.53528415458128,41.7011598574382],[-87.53528375166717,41.70131386590364],[-87.53528276680474,41.70162155253499],[-87.53528262585078,41.70181952654238],[-87.53528253269123,41.701972055208685],[-87.53528236210951,41.702225848741584],[-87.53528245523624,41.702264249834414],[-87.53528359402243,41.70273382514047],[-87.53528466749727,41.7031766068892],[-87.53528566968671,41.70344500829355],[-87.53528429038421,41.70410736760999],[-87.53528458939573,41.7045644080225],[-87.53528486468996,41.70498489500747],[-87.53528673628456,41.70589958935174],[-87.53528590639405,41.70639151688562],[-87.53528525550512,41.70677740408289],[-87.53528404587178,41.707100264667694],[-87.53528353603146,41.707421291127346],[-87.53528302074434,41.70774577592029],[-87.5352884973127,41.70821662655628],[-87.53478754613272,41.70821696381944],[-87.53466758316225,41.70821707416383],[-87.53407909477129,41.70821761524264],[-87.53403493964164,41.70821765555278],[-87.53357784544916,41.708218073591794],[-87.53347381314153,41.70821802681297],[-87.53286881506065,41.708217752462666],[-87.53232161734462,41.70821750187245],[-87.5322632169976,41.7082176644929],[-87.53166058616888,41.7082193416126],[-87.53108017260652,41.708220953880044],[-87.53053769316669,41.70823623312363],[-87.53041821036473,41.708132443374794],[-87.5304285929794,41.70797991982661],[-87.53045152419556,41.70742022043557]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14221500.3239","perimeter":"0.0","tract_cent":"1137268.48948424","census_t_1":"17031560800","tract_numa":"68","tract_comm":"56","objectid":"49","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1868827.39258693","census_tra":"560800","tract_ce_3":"41.79620591","tract_crea":"","tract_ce_2":"-87.77216579","shape_len":"15980.4029542"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76287274046683,41.80006320157178],[-87.76253173857334,41.80005769066042],[-87.76253173343903,41.8000576906349],[-87.76246916424219,41.798240281845096],[-87.76246383148381,41.797994775340335],[-87.76245996906924,41.79781426420808],[-87.76245259927555,41.797603328908075],[-87.76244532426118,41.79738171878281],[-87.7624404316907,41.79720158671207],[-87.76243398290951,41.79698192912287],[-87.76242954157009,41.79672616664075],[-87.76242996430697,41.79658349336003],[-87.7624304153864,41.79643316309739],[-87.7624223133062,41.79596212024022],[-87.76240657224365,41.79570311406148],[-87.76238951351725,41.795422429654785],[-87.76238290984539,41.79521199204371],[-87.762380839869,41.79513437265564],[-87.76237892018096,41.795062380907964],[-87.76237516999304,41.794898226215146],[-87.76237404540868,41.794847220443614],[-87.76237313334518,41.794805821021654],[-87.76237182311917,41.79474639538989],[-87.76236445864868,41.79453987803425],[-87.76235658328514,41.79431903347895],[-87.76235024240331,41.79416164428801],[-87.76234323961472,41.793992067147755],[-87.76233503017814,41.79379317496912],[-87.76232722374792,41.7935819354731],[-87.76232205163504,41.793412696729106],[-87.76231595281622,41.79320739337698],[-87.762309396562,41.79303710491052],[-87.76230157887223,41.7927356357463],[-87.7626542672036,41.79272956433994],[-87.76294468134395,41.792723624500134],[-87.76322841308902,41.792718611266174],[-87.7635360896237,41.79271375232381],[-87.76382608820413,41.792709171558684],[-87.76417063379927,41.79270264622923],[-87.76453051204379,41.79269423334048],[-87.76466660220999,41.79269105162783],[-87.7647636694454,41.79268900870474],[-87.7649083093373,41.79268596342403],[-87.76506826074524,41.79268259687784],[-87.76516696158879,41.79268051943267],[-87.76547916377183,41.792673912539215],[-87.7656431136778,41.79267046890697],[-87.76596404259386,41.79266396144957],[-87.76617416848106,41.79265970007867],[-87.76644891818871,41.79265436011538],[-87.76662841675764,41.792650846629115],[-87.76672216441152,41.79264901207935],[-87.7669563494438,41.79264440388031],[-87.76718863082296,41.79264025729176],[-87.76748640222215,41.792634941030684],[-87.7677609751573,41.79262882865626],[-87.76777058485217,41.7926286136118],[-87.76816828674451,41.792619718819196],[-87.76840947690383,41.79261497746232],[-87.76866056994358,41.792610037289215],[-87.76898894250203,41.7926035277806],[-87.76931705831848,41.79259701607269],[-87.7694817762551,41.792593763106794],[-87.76963021103504,41.79259064954924],[-87.76984758911492,41.792586109682965],[-87.7700473457464,41.792582020336255],[-87.77041419435925,41.79257454280245],[-87.77064893041982,41.79256976511719],[-87.77084735461032,41.79256585336699],[-87.77110945056114,41.792560685912186],[-87.77121598437894,41.79255851783592],[-87.77132533438419,41.79255628138375],[-87.77140301720158,41.79255471267148],[-87.7716063574219,41.792550547855186],[-87.77183236458112,41.792545889452406],[-87.7720662230048,41.79254248715572],[-87.77234065234542,41.79253849352644],[-87.7726217870337,41.79253251134676],[-87.7728633471591,41.79252732335625],[-87.77316850607988,41.7925208258571],[-87.77328397063452,41.79251882345169],[-87.77354399994857,41.792514313541524],[-87.77378578259413,41.79250882282312],[-87.77405155294916,41.79250276230727],[-87.77432517194056,41.79249657471091],[-87.77450099071108,41.79249370913037],[-87.77476345168097,41.7924894311249],[-87.77495145993066,41.79248562465063],[-87.77526387785109,41.7924792940819],[-87.775515117863,41.79247420269794],[-87.7757213202345,41.7924697697907],[-87.77594102000198,41.79246504551938],[-87.77615162264622,41.792460633463975],[-87.77648021702112,41.79245374685628],[-87.77675357467211,41.79244804645535],[-87.77693802053126,41.7924447850687],[-87.77713735777101,41.79244126040611],[-87.77738470702246,41.79243655746483],[-87.7777043193176,41.79242937690054],[-87.77798043007265,41.79242332986293],[-87.77815406906602,41.79241945307233],[-87.77855939169845,41.79241040242967],[-87.7788492235147,41.79240362371911],[-87.77902157446984,41.79239962551196],[-87.77922521193457,41.79239489978332],[-87.779370485267,41.792392581677326],[-87.77956085656334,41.79238969537255],[-87.77962909440762,41.792362049512754],[-87.77968295250301,41.79235059095628],[-87.77972412407298,41.79234746877601],[-87.7801310957769,41.79233911072335],[-87.78027083613975,41.792336270861576],[-87.7804979786141,41.79233162859051],[-87.78051833390425,41.792331283066645],[-87.78061229971834,41.79232944015059],[-87.7807282732112,41.79232716541611],[-87.78088902798606,41.792324041959176],[-87.78102161013034,41.792322099820424],[-87.78113922280689,41.792321018635384],[-87.7814086620504,41.79231885562775],[-87.78152199094973,41.792321266165466],[-87.78180560844102,41.79234898021704],[-87.78181230436478,41.792544838279376],[-87.78181456049009,41.7926098888627],[-87.7818195235862,41.79275503091849],[-87.78182238310814,41.792838887195494],[-87.7818253844364,41.79292690669588],[-87.78183374716777,41.79319621688241],[-87.78183972116959,41.79340195776425],[-87.78184743549285,41.79366563901476],[-87.78185260465398,41.79384121623854],[-87.78185742012587,41.794006720204855],[-87.78186362881281,41.7942335251776],[-87.78186697109875,41.79435562052595],[-87.78187428609546,41.794601736343296],[-87.78187935056597,41.79477242819477],[-87.78188520028459,41.79496702659556],[-87.78189124138486,41.79516069284889],[-87.78189883515607,41.79539569558619],[-87.78190697605667,41.795618214411675],[-87.78191636222918,41.79587515262435],[-87.78192041429377,41.79604418065275],[-87.78192362902175,41.7961782670803],[-87.78192854605153,41.796353349042114],[-87.78193508057284,41.79658787984056],[-87.78194019131415,41.79677031769458],[-87.78194627893917,41.796975702231954],[-87.78195229451731,41.79716382482456],[-87.78195903334415,41.79737453639762],[-87.78196430085002,41.79753869772595],[-87.78197538510199,41.79785330978279],[-87.78198146840613,41.79802597408076],[-87.78198687414458,41.79820824837156],[-87.78199177362777,41.798372572566244],[-87.78199643572917,41.79853036420536],[-87.78200116790225,41.79868854037698],[-87.7820043114181,41.798792454298855],[-87.78201086857412,41.79900300028059],[-87.78201785894592,41.79923146854834],[-87.78202516136885,41.79947162897999],[-87.78203113200547,41.79966829177693],[-87.78188943436186,41.79966880351544],[-87.78179361713964,41.799669149245695],[-87.7816429660291,41.799672267853644],[-87.78145585506495,41.79967595207148],[-87.7814445642467,41.799676170611185],[-87.78142152189396,41.79967661672541],[-87.78131496980923,41.79967867945066],[-87.78126276559125,41.799679689581986],[-87.78110591768525,41.799682695376255],[-87.78100902412575,41.79968469529886],[-87.7808130151877,41.79968874101942],[-87.78065277844539,41.79969204795878],[-87.78055595088833,41.79969404617015],[-87.78049165524968,41.799695355073844],[-87.78045504054677,41.79969610011827],[-87.78041992938603,41.79969681808413],[-87.78033501832867,41.79969855375432],[-87.78029978875026,41.79969926644811],[-87.78020091138231,41.79970126711577],[-87.78015876038103,41.79970211987843],[-87.7801498504613,41.79970230008414],[-87.78008048601654,41.79970364362556],[-87.77991611808179,41.79970682755345],[-87.77959336751665,41.79971230284548],[-87.77950230288606,41.79971384769682],[-87.77949727656643,41.7997139332359],[-87.77940339928072,41.7997155253718],[-87.7792417426068,41.79971897223627],[-87.77903892898907,41.79972329029132],[-87.7789813385255,41.79972452202887],[-87.77883593174371,41.79972763454478],[-87.77868634345408,41.79973080929064],[-87.77854937405672,41.79973371546924],[-87.7783813071205,41.79973696193983],[-87.77816069987026,41.799741223220195],[-87.777945745529,41.79974567277107],[-87.77778449308046,41.799749009767204],[-87.77777894975618,41.79974912401573],[-87.77776365829001,41.79974943975271],[-87.77761246104895,41.7997525622333],[-87.7775680715182,41.79975347868415],[-87.77744874651837,41.79975594749639],[-87.77735271382754,41.79975795261668],[-87.7771523943704,41.799762170737864],[-87.77689283420102,41.799767636180384],[-87.77673814860138,41.79977072881257],[-87.7766686475713,41.79977211628465],[-87.77654542475723,41.799774575698734],[-87.77653258956175,41.799774831551],[-87.7765235255793,41.79977501264967],[-87.77632031086188,41.799779021813734],[-87.7761353635891,41.799782653244016],[-87.77593291445469,41.79978718712552],[-87.77566278664477,41.79979323079607],[-87.77555340540287,41.7997950867327],[-87.77533453286857,41.79979879940547],[-87.77532550937605,41.79979896276839],[-87.77519111068676,41.79980139580645],[-87.77500018694727,41.799804831439396],[-87.77500018291317,41.79980483141979],[-87.77484528353631,41.79980764603473],[-87.77479447638353,41.79980895832243],[-87.7747046429206,41.799811279245645],[-87.77454648049388,41.79981536466156],[-87.77447962399557,41.79981709188969],[-87.77430751265801,41.79982078254618],[-87.7741057242466,41.79982513859234],[-87.77396622295578,41.799828149924075],[-87.77384715311338,41.79983072600861],[-87.77365090464745,41.79983492930929],[-87.7734966344392,41.79984078337358],[-87.77329327776832,41.79984849951374],[-87.77311989523999,41.79985487159692],[-87.77289988419221,41.79986293694931],[-87.7728976393182,41.79986301985218],[-87.77288576010227,41.799863456692975],[-87.77272284932869,41.79986945225343],[-87.77269249311394,41.799870569224744],[-87.77246320056749,41.7998789726434],[-87.7724144625706,41.799880363685595],[-87.77227958547967,41.7998842130715],[-87.7721291670786,41.79988850559576],[-87.77207728155777,41.79988998622453],[-87.77181559660333,41.79989507415194],[-87.7716678812157,41.79989792618323],[-87.77163640862715,41.799898533565575],[-87.77145120062816,41.79990251321031],[-87.77128444264005,41.79990625708011],[-87.77127857382668,41.799906389181274],[-87.77111365208107,41.799909594850426],[-87.77106182347296,41.7999106019091],[-87.77100777856747,41.799911652706854],[-87.77093867558229,41.799912995849176],[-87.77062494982678,41.79991909304208],[-87.77050117759445,41.799921498273974],[-87.77047103428056,41.7999220841324],[-87.7704505282737,41.79992248256848],[-87.77038553541978,41.79992374562507],[-87.7703379522954,41.799924670251045],[-87.77014804791192,41.79992889865793],[-87.77002709296583,41.7999314788294],[-87.76984127647722,41.79993544246599],[-87.76970407283234,41.79993836932981],[-87.76960412675751,41.799940501078694],[-87.76940557009469,41.79994441136958],[-87.76938512345134,41.79994481402331],[-87.76922766474598,41.79994791393724],[-87.7691463869326,41.79994951482741],[-87.76913783133729,41.79994968302088],[-87.76900291770559,41.799952225116485],[-87.76881803099532,41.79995570839587],[-87.76881725298436,41.7999557232338],[-87.7686200021019,41.79995943962245],[-87.76840171926982,41.79996355143072],[-87.76837014367175,41.799964146434334],[-87.7683661314737,41.79996422220345],[-87.76817559968592,41.79996882846391],[-87.76811482077504,41.79997025257221],[-87.76800685940883,41.799972782031126],[-87.76799209129932,41.799973128132144],[-87.76798587650771,41.79997327373043],[-87.76774466367182,41.79997741030182],[-87.76764999267881,41.79997926801758],[-87.76739753569541,41.79998422172277],[-87.767190357264,41.799988287414024],[-87.76708846878057,41.79999028665233],[-87.76682182435131,41.799996189485455],[-87.76678261142892,41.79999695660147],[-87.76658849282413,41.80000074669561],[-87.76617516547788,41.80000880577278],[-87.76594917065898,41.80001320580594],[-87.7657851291841,41.80001659423441],[-87.76555952948856,41.800021929060115],[-87.76550102028722,41.8000233133316],[-87.7652769328991,41.800027666584676],[-87.76521207770776,41.80002885055444],[-87.76511773637502,41.80003057306871],[-87.76504033439278,41.80003198604924],[-87.76502813534783,41.800032208361586],[-87.76495589989736,41.80003352746796],[-87.7648218479125,41.800035974237595],[-87.76479318196066,41.80003649758442],[-87.76464660552233,41.80003901032162],[-87.7644477956357,41.80004241681624],[-87.76428075116358,41.80004529425272],[-87.7639006804972,41.80005002463415],[-87.7638590765784,41.80005046852094],[-87.76374200842767,41.800051717463255],[-87.76363481601413,41.80005286103384],[-87.76360563700528,41.80005317215067],[-87.76336596422978,41.800057362050026],[-87.76313279673388,41.80005987212622],[-87.7630815568955,41.8000604237776],[-87.76287274046683,41.80006320157178]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6813823.98036","perimeter":"0.0","tract_cent":"1179208.93536855","census_t_1":"17031490300","tract_numa":"28","tract_comm":"49","objectid":"55","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1843330.74969353","census_tra":"490300","tract_ce_3":"41.72538609","tract_crea":"","tract_ce_2":"-87.61914336","shape_len":"10416.1075356"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62353696471955,41.721716633886686],[-87.62372917810666,41.721670677783024],[-87.6237361146506,41.72196394680053],[-87.6237395606801,41.72207689673183],[-87.6237439873547,41.72223049605237],[-87.62374932486937,41.72239466661374],[-87.62376097825727,41.72258401411452],[-87.62377539145946,41.72277110086701],[-87.6237880233598,41.723135020379054],[-87.62377602635215,41.72348363915907],[-87.62377816580846,41.72355623926594],[-87.6238004591635,41.724312738203366],[-87.62380283038671,41.724406827999665],[-87.62380851773797,41.72463241844836],[-87.6238137173427,41.72483901521086],[-87.62383103769112,41.72538518609662],[-87.62384102331887,41.72570007562758],[-87.62384591138574,41.72586844211474],[-87.62385167969764,41.72607334086798],[-87.62385601707571,41.726241786273256],[-87.62385895852427,41.726354046924335],[-87.62386287434333,41.72650424002339],[-87.62386811933865,41.72671009603268],[-87.62388288150862,41.72721431753829],[-87.62389168469215,41.727514984391014],[-87.62389686987461,41.727702947063776],[-87.62390071799156,41.727852645732376],[-87.62390410698193,41.72798417420138],[-87.62391120730258,41.72822785826184],[-87.62391596485868,41.72837811139419],[-87.62392303042634,41.728621630564156],[-87.62393809541032,41.72904227980644],[-87.62377718992364,41.72904404516443],[-87.62361583413075,41.72904581574865],[-87.62351017575752,41.729048032276864],[-87.62332459532313,41.72905192536898],[-87.62314064622636,41.72905578378618],[-87.62285992173844,41.729061671804956],[-87.62258757199376,41.729065723126496],[-87.62240458562718,41.729068646667],[-87.62215121301423,41.72907269471353],[-87.62198046513599,41.72907542218719],[-87.62159540151795,41.72908157196607],[-87.62157349082248,41.72908192198986],[-87.62078787180039,41.72909407453498],[-87.62055765571037,41.72909763448835],[-87.61998341080194,41.72910719505093],[-87.61967870019886,41.72911226719963],[-87.61917672453735,41.72911946704602],[-87.61918432281894,41.72937281440027],[-87.6191901610543,41.72954126645041],[-87.61919005725214,41.72954124467407],[-87.61893741118486,41.72948789914447],[-87.61852309079467,41.72939510315542],[-87.61821337588138,41.72929357996991],[-87.61813799279186,41.729268869724706],[-87.61791304931033,41.72919508814118],[-87.61734633793719,41.729052284393084],[-87.61696489610829,41.728927098929475],[-87.6163660404591,41.72871033679101],[-87.61611556548148,41.728626787005936],[-87.61570170946656,41.72849316207901],[-87.6153210945916,41.72833538732289],[-87.61497281330402,41.72819393684209],[-87.61462462494903,41.72804425267036],[-87.6143010554578,41.727888893400454],[-87.61429966858358,41.72783336368726],[-87.61429731080727,41.727739273856784],[-87.61429706459295,41.72773398759098],[-87.61429184157828,41.72762200254546],[-87.61429076450067,41.72760101333052],[-87.61428637507545,41.727515493898885],[-87.61428567248551,41.727501790161675],[-87.61428543102507,41.72749709614831],[-87.6142839227318,41.7273400021791],[-87.61427988956382,41.72721543997033],[-87.61427645327464,41.727089948427135],[-87.6142727657199,41.72693377003424],[-87.61426769477792,41.726719026997635],[-87.61426394160029,41.72658250131673],[-87.61426006751728,41.72640428873984],[-87.61425955209306,41.7263782694135],[-87.61425587932169,41.72619514576704],[-87.61424951307107,41.725964473729675],[-87.6142441017544,41.72577628965101],[-87.61423737014967,41.725543597689835],[-87.61423170131086,41.7253476321271],[-87.61422869918958,41.72523246215835],[-87.61422531576449,41.72508578478985],[-87.61422114725168,41.724907707539295],[-87.61421593260219,41.72469861297414],[-87.61421088476993,41.724520585094744],[-87.61420612289619,41.724343162748745],[-87.61420304846872,41.72421805761069],[-87.61420147658765,41.72415531272157],[-87.614198314588,41.724025020274944],[-87.61419692258944,41.72397245792026],[-87.61419496128455,41.72389867844254],[-87.61419385562662,41.72385657372128],[-87.61419055183059,41.72371790911977],[-87.61418686837011,41.723563327302806],[-87.61418317938018,41.72343755966555],[-87.61417715050334,41.72322922835881],[-87.61417395815143,41.72307525225396],[-87.61417219749387,41.722983581079774],[-87.61416699372663,41.72279317530474],[-87.61416053175195,41.72256456076669],[-87.61415672692308,41.72240319859972],[-87.61415648176047,41.72239282711727],[-87.61414973540127,41.7221070705473],[-87.61414331283163,41.721892472550536],[-87.61436557582199,41.72188915034888],[-87.61466938818133,41.72188276302823],[-87.61505866197808,41.721876140733556],[-87.61535348013904,41.721871478639],[-87.61553380853121,41.72186862652952],[-87.61590406770773,41.72186232168049],[-87.61628473988206,41.721855119832234],[-87.6165610608952,41.72185104916654],[-87.6167650088297,41.721848044422515],[-87.61713720703955,41.721841967236266],[-87.6174929255485,41.72183548430759],[-87.61777090026573,41.72182946708036],[-87.61794875632698,41.72182561688656],[-87.61820257340383,41.72182198259088],[-87.61879638468174,41.72181272345436],[-87.61897268517546,41.72180961257299],[-87.61899206654432,41.72180927064364],[-87.61901144828234,41.7218089284389],[-87.6192356713045,41.72180497094581],[-87.6196421961981,41.7217984403255],[-87.62026957764108,41.721787680595526],[-87.62058946584021,41.72178195038946],[-87.62106384909224,41.72177345136126],[-87.62174313903066,41.721762346420654],[-87.62219795961363,41.721754297594806],[-87.6226070558904,41.72174705612975],[-87.62307174252086,41.72173453372491],[-87.62340544579162,41.721717989422864],[-87.62353696471955,41.721716633886686]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14124186.553","perimeter":"0.0","tract_cent":"1170517.68728582","census_t_1":"17031530400","tract_numa":"58","tract_comm":"53","objectid":"50","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1824549.05143875","census_tra":"530400","tract_ce_3":"41.67403961","tract_crea":"","tract_ce_2":"-87.65152428","shape_len":"15925.1462843"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65608100728856,41.67032157322569],[-87.65628094470574,41.67031870988599],[-87.6565585351078,41.670314746340665],[-87.65687705224553,41.6703101722676],[-87.6571152580916,41.67030630488656],[-87.65712433596585,41.670306165644014],[-87.65725429691649,41.67030372014188],[-87.65749418752326,41.67029977873215],[-87.65774864690094,41.67029559451023],[-87.65783297253127,41.670294506667894],[-87.65807023393064,41.67029144682647],[-87.65828727647435,41.67028830314517],[-87.65841140473295,41.67028703150872],[-87.65849841593155,41.670286140075305],[-87.65865229768241,41.67028523250903],[-87.65872399699076,41.67031007804019],[-87.65872400683816,41.670310081391214],[-87.65879485671208,41.67033464361581],[-87.65888644252486,41.67032672879186],[-87.659069739081,41.67032357825247],[-87.65936381242852,41.67031838706905],[-87.65953371897731,41.670319981276926],[-87.65970755724487,41.67032161199944],[-87.6605988948645,41.670329968689394],[-87.66115004358828,41.670335132288805],[-87.66115663990858,41.670531419184634],[-87.66116185819872,41.67074051382584],[-87.66117055619607,41.670977689725255],[-87.66117121000906,41.67099551778745],[-87.66118027197203,41.67124327579814],[-87.66118027193492,41.67124327936557],[-87.66118800393112,41.67145359207563],[-87.66119544943207,41.671666678731135],[-87.66120824797902,41.67206547950162],[-87.66121565601777,41.67229632236373],[-87.66122600897235,41.67254663983017],[-87.66123460484503,41.672797083403765],[-87.66124239654887,41.67305784181571],[-87.66124239723807,41.67305784593626],[-87.66125099694668,41.67328323009268],[-87.66125874220045,41.673481608754074],[-87.66126564862158,41.673732619541326],[-87.6612708551257,41.67389014752602],[-87.66127905747666,41.674137947308274],[-87.66127961153616,41.674154672649074],[-87.66127990675496,41.67416359156679],[-87.66128760983017,41.674373112802456],[-87.66129490195182,41.67457291583282],[-87.66130070315842,41.674728459544085],[-87.66130194211057,41.6747616856766],[-87.66130833128457,41.674946252040954],[-87.66131301208972,41.67508399076132],[-87.66131753569603,41.67521977650878],[-87.66131845119791,41.67524725574197],[-87.66131885806392,41.67526092549192],[-87.66132090776405,41.67533486976942],[-87.6613227801753,41.67539767153083],[-87.66133203982292,41.6757109373842],[-87.66133822291022,41.675920502090655],[-87.66133824271618,41.67592116688597],[-87.6613517146382,41.67637779016774],[-87.66136132918353,41.676702776377866],[-87.66137365200021,41.67702426509838],[-87.66138359004803,41.67730753973085],[-87.66138220775169,41.677447463938925],[-87.66138220773456,41.67744746558544],[-87.6613650662948,41.677544220558],[-87.66136505966404,41.67754425976329],[-87.66104047746354,41.677551261432725],[-87.6607833173775,41.677551869995916],[-87.66049048940276,41.67755383344864],[-87.66017424018219,41.677558704919036],[-87.65998576470828,41.67756160784365],[-87.65976148090982,41.677565288288875],[-87.65951087818374,41.67756892376663],[-87.65920147824484,41.677573393896424],[-87.65895663354483,41.677575938955606],[-87.65874579979436,41.67757812986968],[-87.65847033582625,41.677582303235035],[-87.65824502967702,41.67758575516984],[-87.65797103007827,41.67758990849644],[-87.65774027280727,41.67759302388469],[-87.6574753580948,41.67759659988141],[-87.65727754861238,41.67759944319899],[-87.65703668273466,41.6776030756693],[-87.65677860926499,41.67760699082186],[-87.65651918374604,41.677610852974304],[-87.65561245692876,41.677623461258726],[-87.65385290111081,41.67764790720605],[-87.65286495769543,41.67766162124885],[-87.65286493463246,41.67766162138673],[-87.65223798575869,41.67766979256677],[-87.65179484273882,41.67767592904549],[-87.65163518367737,41.67767830389157],[-87.65111288351919,41.67768607118204],[-87.65053390797273,41.67769500988521],[-87.6497331574964,41.677705727865565],[-87.64926697245154,41.677712745019335],[-87.64877796522616,41.677720103509046],[-87.64819886208093,41.67772724586576],[-87.64765651699717,41.67773380875358],[-87.64717918007976,41.677740647441645],[-87.64677807084469,41.67774618864805],[-87.64656228457228,41.67774916903707],[-87.64610567298956,41.677755474506576],[-87.64584997429073,41.67775970836044],[-87.64556473109191,41.67776429258235],[-87.64525517756518,41.67776926679682],[-87.6450169897754,41.67777223146369],[-87.6445910669445,41.67777719928317],[-87.64434628585235,41.67778045785681],[-87.6442283999683,41.67778203739074],[-87.64415503182651,41.67778298307393],[-87.64376410106124,41.67778821254196],[-87.64348047536247,41.67779216515695],[-87.64347966954821,41.677792176786134],[-87.64338144237414,41.677793545226855],[-87.64296432872733,41.67779968507955],[-87.64258287484387,41.67780526933276],[-87.64234456943164,41.677808941281306],[-87.64196508759949,41.67781392472475],[-87.64190852209138,41.677814667624496],[-87.64187621113174,41.67684932882599],[-87.64184754860167,41.675992974464314],[-87.64178725697239,41.67419158140611],[-87.64178687619403,41.67418020382159],[-87.64178485213652,41.67411973545721],[-87.64172588221331,41.67235775492579],[-87.64166503121969,41.670539539715215],[-87.64167713039426,41.6705393866688],[-87.64168555976784,41.67053928014529],[-87.64173557118092,41.67053864719762],[-87.64192017683925,41.670536354645606],[-87.6421409181882,41.67053312731938],[-87.64227358299776,41.670531208179646],[-87.64241016449934,41.67052925754547],[-87.64268186535294,41.670525072569454],[-87.64271514036055,41.670524403113596],[-87.64288346998276,41.67052101474049],[-87.64288347364268,41.67052101476247],[-87.64308852303718,41.67051686776869],[-87.64321024861361,41.67051516177248],[-87.64329139863224,41.6705140240934],[-87.64348940110457,41.67051172712261],[-87.64354441953354,41.670511097369385],[-87.6438492320502,41.67050812376186],[-87.64398853295064,41.670505658730555],[-87.64409827877057,41.67050371637743],[-87.644306068759,41.67050004990983],[-87.6443920644806,41.67049828817344],[-87.64469338088298,41.6704936173206],[-87.6447105491086,41.67049341830867],[-87.64509626432103,41.67048914227552],[-87.64531887660297,41.67048558990344],[-87.64555495947718,41.670481815559654],[-87.64592030615773,41.670475823973334],[-87.64593274920728,41.67047565140413],[-87.6459327525012,41.67047565142383],[-87.64632668045506,41.67047007592644],[-87.64644484270725,41.670468301568874],[-87.64653325600797,41.67046697366083],[-87.64668168056815,41.67046473195488],[-87.64673115541981,41.67046398467694],[-87.64714500742117,41.6704571532268],[-87.64720134656983,41.67045622745566],[-87.64748951993529,41.67045188245896],[-87.64775634778044,41.67044762841283],[-87.64775635290434,41.6704476284434],[-87.6479341571037,41.67044479249998],[-87.64834041703256,41.67043933797837],[-87.64835091086418,41.670439182071156],[-87.6483641392583,41.67043898537805],[-87.64859422200092,41.670435495607286],[-87.64873174998257,41.67043340944861],[-87.6489716433783,41.67042929456698],[-87.64929291607545,41.670423797404105],[-87.64958321953618,41.670418745481804],[-87.64958813157018,41.670418665204885],[-87.6495929930915,41.67041858517612],[-87.64996015424107,41.67041407238729],[-87.64999850822008,41.67041354957677],[-87.65019004455931,41.6704109383349],[-87.65041591126099,41.67040783864362],[-87.65047191632428,41.67040706982792],[-87.65079522948221,41.670402458777836],[-87.65083498457943,41.67040189872715],[-87.65121489868214,41.67039578360945],[-87.65131561471225,41.670394240997794],[-87.65141118740125,41.67039277728052],[-87.6515244770217,41.67039103575081],[-87.65159407755291,41.670389965575616],[-87.65177050631037,41.67038716575882],[-87.6520145525387,41.67038329254082],[-87.65202811493455,41.67038307517669],[-87.65203831089046,41.670382911952714],[-87.65241658074474,41.67037650922972],[-87.65249596873171,41.670375345005894],[-87.65262718174806,41.67037342095531],[-87.65271055415589,41.67037218769721],[-87.65274377587309,41.67037169614834],[-87.6532382297634,41.670364194291835],[-87.6532799258092,41.6703635630991],[-87.65335951280412,41.670362475474526],[-87.65345790795311,41.67036113076405],[-87.65349034577874,41.67036083634594],[-87.65350549436178,41.67036069899405],[-87.65356166817938,41.67036006030139],[-87.65384376866538,41.67035685339817],[-87.65401649659455,41.67035487762762],[-87.65406519699712,41.670354320481685],[-87.65435278956821,41.67034943341515],[-87.65445313344607,41.67034755598485],[-87.65461014795058,41.67034464179607],[-87.65470571208199,41.670342724941335],[-87.65484905845489,41.670339849374024],[-87.6548602211049,41.67033968008013],[-87.65506665231015,41.670336551193124],[-87.65524288018737,41.67033385820083],[-87.65563779643885,41.670328091679224],[-87.65565746394616,41.6703278028558],[-87.65567110849925,41.670327602012186],[-87.65595781551798,41.67032333718069],[-87.65601843985664,41.67032246911628],[-87.65608100728856,41.67032157322569]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10309910.2977","perimeter":"0.0","tract_cent":"1201015.01321767","census_t_1":"17031520300","tract_numa":"47","tract_comm":"52","objectid":"51","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1834675.657887","census_tra":"520300","tract_ce_3":"41.70111159","tract_crea":"","tract_ce_2":"-87.53956079","shape_len":"14387.8587072"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.53528092662704,41.69567821694171],[-87.53528203010343,41.69547418418173],[-87.53528203074508,41.69547407304109],[-87.53560672564787,41.69547734419062],[-87.53584113088003,41.69547792826827],[-87.53589104907914,41.69547776340296],[-87.53589399455184,41.69547775392896],[-87.53590715105938,41.69547771047694],[-87.53617888657112,41.69547681381809],[-87.53644058719455,41.69547677917775],[-87.53649063892041,41.695476772227586],[-87.53668751415758,41.69547674581192],[-87.53672217199426,41.6954767368788],[-87.53693924695646,41.69547667935651],[-87.53704048466784,41.695478988245],[-87.53709839675808,41.69548030913611],[-87.53716912801826,41.69548192216501],[-87.5372828216523,41.69548188346873],[-87.53739563285377,41.69548184458567],[-87.53769962843397,41.69548371751255],[-87.53815029561439,41.69548649265686],[-87.5383028159958,41.695486100841116],[-87.53833563410423,41.69548601639758],[-87.53838456943028,41.69548589057747],[-87.53852171843037,41.695487445167274],[-87.53863289817112,41.6954887055724],[-87.53890409791596,41.69549010893506],[-87.53926363445696,41.695491968126994],[-87.53936424691871,41.69549204170834],[-87.53941024188688,41.69549207543865],[-87.53944975325734,41.69549226442187],[-87.53949883208045,41.69549249917377],[-87.53962936733988,41.69549312363176],[-87.53973306240603,41.695493619400686],[-87.53993512679668,41.695493569192244],[-87.54009952573362,41.695493528139444],[-87.54037764494285,41.695493458175044],[-87.5407282648563,41.695496248270636],[-87.54079240903923,41.695497000494434],[-87.5408235354834,41.69549736581779],[-87.54094915313202,41.69549883908437],[-87.54106604472575,41.69550020951828],[-87.54115337738916,41.69550052835456],[-87.54134505611768,41.69550122819427],[-87.541575695387,41.69550206963415],[-87.54178550865834,41.695502834676375],[-87.54196036587147,41.69550436825756],[-87.54228408336681,41.69550957819482],[-87.54238948910617,41.69551127437844],[-87.54256574457024,41.69551225133137],[-87.54304523014547,41.69551490754226],[-87.54316219946767,41.69551627610395],[-87.54324999144428,41.69551730344272],[-87.54334609022675,41.69551870423871],[-87.54347396462676,41.695520654323886],[-87.54378889857409,41.69552038976515],[-87.54395791789157,41.69552024732487],[-87.54418150680605,41.69551909349633],[-87.54439297473435,41.6955180094282],[-87.54481775595613,41.695516624215735],[-87.54500182113229,41.69550696434622],[-87.5451867436139,41.69549725901696],[-87.54518767587467,41.69564580166616],[-87.54518979056732,41.695997432925665],[-87.54519079793025,41.69625231889053],[-87.5451918235841,41.69654322421476],[-87.54519266369654,41.696699313369024],[-87.54519527542628,41.697235160115824],[-87.54519680206722,41.69744751285613],[-87.54520024571153,41.69799022659546],[-87.54520337401473,41.69840875697889],[-87.54520467867812,41.69863928929031],[-87.54520628070588,41.69884546722243],[-87.54520734011734,41.699021111115265],[-87.54520834741243,41.69927599694769],[-87.5452094289244,41.69948731716577],[-87.5452104415575,41.699779251360255],[-87.5452108547939,41.69997032760364],[-87.5452113434176,41.70015522935947],[-87.54520487755664,41.70030989642482],[-87.54518650749068,41.70046482460807],[-87.54515757269915,41.70062276768631],[-87.54512457605574,41.700738488950655],[-87.54504891109598,41.70093727628388],[-87.54497657421322,41.70108840380932],[-87.54488312006565,41.701244532001716],[-87.5447289487686,41.701462333727086],[-87.54456518112026,41.70167869720754],[-87.54442186570161,41.70186947284514],[-87.54434740029146,41.70196981539851],[-87.54424873642502,41.702102580276815],[-87.54419187255385,41.7021858918563],[-87.54409944354748,41.70233276460773],[-87.54404203877927,41.70242293264679],[-87.54400375601553,41.70248407359594],[-87.54391431993106,41.702610727109175],[-87.54384640835605,41.70269910821639],[-87.54379573476767,41.702762719750936],[-87.5437666614004,41.702762560886725],[-87.54325746190773,41.70275977740124],[-87.54315390833747,41.7027592105709],[-87.54306704587228,41.70275916486572],[-87.54256195473074,41.70275889839361],[-87.54198292784822,41.70275858985576],[-87.54134196360893,41.70275734933775],[-87.54133967481582,41.70323364324723],[-87.54133808236885,41.70356503908775],[-87.54133807968033,41.704093430384155],[-87.54133947970813,41.70458310236807],[-87.54134014851904,41.704817066783384],[-87.54133930145215,41.70534561680616],[-87.54133772926572,41.705909371392785],[-87.54133934963383,41.70639918799648],[-87.5413407305507,41.70681660889034],[-87.54134057777658,41.7072527623278],[-87.54133926944472,41.70819183857766],[-87.540734351846,41.70819133917734],[-87.54067124008488,41.70819128696155],[-87.54012701656868,41.70819202026832],[-87.53990595781744,41.70819231748764],[-87.53954062429443,41.708200211312565],[-87.53938526320577,41.70820356788769],[-87.53891612273527,41.708209727891706],[-87.53851027661987,41.708215055363745],[-87.53830970554564,41.70821444206505],[-87.53820459770253,41.70821412071567],[-87.53770547504594,41.708214580502315],[-87.53710050550028,41.70821513491257],[-87.53707088977926,41.708215162145166],[-87.5364968245243,41.708215704403365],[-87.53610575817663,41.70821607220697],[-87.53590434505979,41.70821620931782],[-87.5352884973127,41.70821662655628],[-87.53528302074434,41.70774577592029],[-87.53528353603146,41.707421291127346],[-87.53528404587178,41.707100264667694],[-87.53528525550512,41.70677740408289],[-87.53528590639405,41.70639151688562],[-87.53528673628456,41.70589958935174],[-87.53528486468996,41.70498489500747],[-87.53528458939573,41.7045644080225],[-87.53528429038421,41.70410736760999],[-87.53528566968671,41.70344500829355],[-87.53528466749727,41.7031766068892],[-87.53528359402243,41.70273382514047],[-87.53528245523624,41.702264249834414],[-87.53528236210951,41.702225848741584],[-87.53528253269123,41.701972055208685],[-87.53528262585078,41.70181952654238],[-87.53528276680474,41.70162155253499],[-87.53528375166717,41.70131386590364],[-87.53528415458128,41.7011598574382],[-87.53528423583302,41.70103186289369],[-87.53528334979657,41.70092185998116],[-87.535281895928,41.700741332589516],[-87.53528137961504,41.70063205042782],[-87.53528247861986,41.7004335887813],[-87.53528245390815,41.700323047365806],[-87.53528140756099,41.70019147735501],[-87.53527965317059,41.70000463179894],[-87.53528033315347,41.6998726346783],[-87.53528069842595,41.69964170259081],[-87.53528095451752,41.699410714849535],[-87.53528105705051,41.6993224579133],[-87.53528133479281,41.699102748647626],[-87.53528170082681,41.69881432409575],[-87.53528124233499,41.69871514112876],[-87.53528181746749,41.6985501562295],[-87.53528200831053,41.69836291275596],[-87.53528230402912,41.69805470002032],[-87.53528211595336,41.69785666843946],[-87.5352820471041,41.697669724741246],[-87.53528237731753,41.69743865510702],[-87.53528256904794,41.69729614680198],[-87.53528282024759,41.69710961393802],[-87.53528257371634,41.69684522420122],[-87.53528258008271,41.69665811633361],[-87.53528259145213,41.69636101604041],[-87.53528232877794,41.6961956687689],[-87.53528160348894,41.69585448950963],[-87.53528092662704,41.69567821694171]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1169732.56499","perimeter":"0.0","tract_cent":"1177938.45206776","census_t_1":"17031381500","tract_numa":"4","tract_comm":"38","objectid":"81","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1874225.297771","census_tra":"381500","tract_ce_3":"41.81019291","tract_crea":"","tract_ce_2":"-87.62286236","shape_len":"4863.5480449"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62580118973659,41.80924117269755],[-87.62608506661246,41.8092364224165],[-87.62609706313876,41.809653812848296],[-87.62610795649458,41.810110746959204],[-87.62611802308813,41.81055614998609],[-87.62612472700422,41.81089038912399],[-87.6261302694716,41.81105420159863],[-87.62532186238535,41.81106269089777],[-87.62450913396205,41.811071219741],[-87.62419955891166,41.811078742746986],[-87.6239279288674,41.81108244432332],[-87.62369514964686,41.81108563883337],[-87.62361627301387,41.81108672124799],[-87.6233986097307,41.81108965728231],[-87.62288463695008,41.81109968641065],[-87.6225762549806,41.81110570279403],[-87.62235818723452,41.811108716682085],[-87.62207492307834,41.811112617940616],[-87.62178370481807,41.811116658035665],[-87.6215737812609,41.8111195833945],[-87.62126038121971,41.81112498940216],[-87.6209487568627,41.81113036357945],[-87.62077016251469,41.8111329880646],[-87.62048282627596,41.811137242687906],[-87.62045208771845,41.8111376943623],[-87.62022546399342,41.81114102404871],[-87.62005545392954,41.81114353605688],[-87.61964248174267,41.81115086874584],[-87.61963609202742,41.81093384828856],[-87.61962854368973,41.81064894537209],[-87.61962177164514,41.81039324690129],[-87.6196154534534,41.810159450281176],[-87.61960967007576,41.809950108468016],[-87.61960474609826,41.80974400995751],[-87.61960371000555,41.809700644241666],[-87.61959283435533,41.809335929676855],[-87.61997980522251,41.80932956686828],[-87.62034495859977,41.809322997359374],[-87.62040420830412,41.80932195344694],[-87.62067092734193,41.80931725385893],[-87.62121289794369,41.80931119583338],[-87.62154887151534,41.80930743916909],[-87.62182956448771,41.809302811403235],[-87.62203341455417,41.809299443726545],[-87.62211711801505,41.80929806077205],[-87.62236556256762,41.80929400042303],[-87.62283564608744,41.80928725871633],[-87.6231542793515,41.80928268811461],[-87.6234565478399,41.80927736647723],[-87.62364857069704,41.80927398321696],[-87.62374483838136,41.80927228701201],[-87.62397076013771,41.8092683035998],[-87.62445799058152,41.80926193529279],[-87.62517663984762,41.80925055154792],[-87.62526762588664,41.8092491853968],[-87.62580118973659,41.80924117269755]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14081418.9138","perimeter":"0.0","tract_cent":"1170434.21634214","census_t_1":"17031530300","tract_numa":"58","tract_comm":"53","objectid":"53","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1827199.52801847","census_tra":"530300","tract_ce_3":"41.68131478","tract_crea":"","tract_ce_2":"-87.65175306","shape_len":"15930.9749205"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66104047746354,41.677551261432725],[-87.66136505966404,41.67754425976329],[-87.66136505889202,41.67754426360086],[-87.66136505811427,41.67754426798726],[-87.66135020298385,41.67762807562587],[-87.66137178744924,41.67788971004273],[-87.66137917138605,41.67814055849109],[-87.66138715482728,41.67839135060668],[-87.66140229147322,41.67886687353877],[-87.66140997105413,41.67908583444134],[-87.66141673245141,41.67936181734945],[-87.66142420699987,41.679666866971],[-87.66143415630414,41.67995617853514],[-87.66144255887745,41.68023230821239],[-87.66144939646966,41.680458262204155],[-87.66145530461127,41.68065750833245],[-87.66146459372749,41.68097159736755],[-87.66147019520893,41.68118245325757],[-87.66147022201604,41.68118346580095],[-87.661477747045,41.68146669812528],[-87.66148504465289,41.681701271980174],[-87.66149246239537,41.681945451712714],[-87.6614995940135,41.682196765316554],[-87.66150565251995,41.682415963327934],[-87.66151036721449,41.68258915863955],[-87.66151457188336,41.68274100001284],[-87.66151906228163,41.68289352913684],[-87.66152286946526,41.68300313281468],[-87.66152793662276,41.6831489965615],[-87.6615367030445,41.683425402641994],[-87.66154381532489,41.683632037972274],[-87.66155235508724,41.68388097188335],[-87.66156240302026,41.684087020601964],[-87.66157550180692,41.68428833944124],[-87.66157800794902,41.68437183656253],[-87.66158110210102,41.684474932237784],[-87.66158464201517,41.68459219102314],[-87.66158956126307,41.68467166120783],[-87.66159876515245,41.684820342824615],[-87.66124917358223,41.68482585850261],[-87.66088122477495,41.68483144518653],[-87.66065146333185,41.684834930339406],[-87.66038926751916,41.68483813730032],[-87.66021139591858,41.68484031255373],[-87.6599831446798,41.68484290836613],[-87.65979729169833,41.68484502167034],[-87.6596495134772,41.68484706450116],[-87.65942953148182,41.684850055943436],[-87.65917062441379,41.68485394381214],[-87.65896136749703,41.684857079601805],[-87.65882252410371,41.68485895425032],[-87.6585740550171,41.6848623257251],[-87.65836260664994,41.684865070760246],[-87.65815049774027,41.68486782414958],[-87.65795703166928,41.68486979616861],[-87.65771842106196,41.68487222808195],[-87.65745131543711,41.684875871775816],[-87.65723960829627,41.68487874302971],[-87.65711043091471,41.68488050781274],[-87.65689923654303,41.68488335401326],[-87.65674177014475,41.6848855707218],[-87.65651983118514,41.68488869491324],[-87.65627106318853,41.684892690570756],[-87.6560323281867,41.684896498102496],[-87.65581146067242,41.684900080879],[-87.65552350674301,41.68490326923426],[-87.65526803704557,41.684906097193256],[-87.65505640124753,41.684909129505776],[-87.65485362615843,41.684912049079045],[-87.65461482186343,41.6849154690494],[-87.65448564322206,41.684917340647615],[-87.65430820876685,41.68491898874439],[-87.65414433439186,41.68492051088024],[-87.65391585304913,41.68492401784752],[-87.65368602175687,41.684927049839914],[-87.65345545845526,41.68493013192892],[-87.65330453284166,41.68493207525512],[-87.65309271576318,41.684934784809535],[-87.65281660631169,41.68493831613557],[-87.65250698482839,41.684943014132074],[-87.65220596881706,41.684947569644024],[-87.65204280963758,41.684950032956756],[-87.65187548196157,41.68495219386812],[-87.65161467439177,41.684955562205936],[-87.65139967510133,41.68495812901218],[-87.65116878528656,41.68496087525497],[-87.6509625734934,41.68496332846837],[-87.65066119712685,41.68496714944692],[-87.65043041628802,41.6849700746074],[-87.650258390629,41.68497325111439],[-87.65006066233664,41.68497660387596],[-87.64986352047907,41.68497995978483],[-87.6496744370268,41.68498284159449],[-87.64944560158911,41.68498555405835],[-87.64916571809194,41.68498887083149],[-87.64896016096833,41.68499168111234],[-87.64872011339942,41.68499494421127],[-87.64854784119076,41.68499715617088],[-87.64823035010609,41.68500172988793],[-87.64808429121226,41.68500383368368],[-87.64777749828599,41.68500760245254],[-87.64701549258608,41.68501729667765],[-87.64676437002909,41.685020490375386],[-87.64643009399819,41.685026671034386],[-87.64597507907268,41.68503284218403],[-87.64543542248465,41.685038998912376],[-87.6454023598321,41.68503937923943],[-87.64524740802968,41.68504116136834],[-87.6451874708951,41.685041850556885],[-87.64487004987211,41.685046645658346],[-87.64464565011109,41.68504945417173],[-87.64456904093443,41.685050413066215],[-87.64421808950644,41.68505481330581],[-87.64415079104133,41.6850557256606],[-87.64359933363399,41.68506298443472],[-87.64314578585612,41.68506885130867],[-87.64271570931287,41.68507433601588],[-87.64249254215979,41.68507716611851],[-87.6421520465059,41.68508212044722],[-87.64214817291034,41.68489073104083],[-87.64213947152194,41.68463309533125],[-87.64213079408472,41.6843698064212],[-87.64212565151762,41.68419013124226],[-87.64211868690869,41.6839983156812],[-87.64211140106609,41.68379766032029],[-87.64210263281477,41.68355997548466],[-87.64209386667211,41.683322098547876],[-87.64209275443339,41.68329190223355],[-87.64208842045089,41.68317422837183],[-87.64208004865364,41.68291261527632],[-87.64207442947625,41.68273702624583],[-87.64206434752877,41.682440824196185],[-87.64205800156678,41.68225389639227],[-87.64205232239894,41.68208675981335],[-87.64204330204832,41.68182925927172],[-87.64203605961175,41.68162242988251],[-87.6420302019168,41.68144195171135],[-87.64202714014179,41.68134761315577],[-87.6420189725201,41.68109832327892],[-87.64201343652248,41.68092808615022],[-87.64200641866275,41.68074765888328],[-87.64199991522784,41.68058046186501],[-87.64199086591861,41.680280176573575],[-87.64198316490048,41.68002493451614],[-87.64196831952628,41.67964888348686],[-87.64195851344739,41.67940047668494],[-87.64195532957876,41.67929792904348],[-87.64195176250887,41.67918302957109],[-87.64194365431031,41.67892139015563],[-87.6419364790549,41.678701937377575],[-87.64192969993618,41.678494589234354],[-87.64192708169918,41.67841218513411],[-87.64192014700706,41.67819191404912],[-87.64190852209138,41.677814667624496],[-87.64196508759949,41.67781392472475],[-87.64234456943164,41.677808941281306],[-87.64258287484387,41.67780526933276],[-87.64296432872733,41.67779968507955],[-87.64338144237414,41.677793545226855],[-87.64347966954821,41.677792176786134],[-87.64348047536247,41.67779216515695],[-87.64376410106124,41.67778821254196],[-87.64415503182651,41.67778298307393],[-87.6442283999683,41.67778203739074],[-87.64434628585235,41.67778045785681],[-87.6445910669445,41.67777719928317],[-87.6450169897754,41.67777223146369],[-87.64525517756518,41.67776926679682],[-87.64556473109191,41.67776429258235],[-87.64584997429073,41.67775970836044],[-87.64610567298956,41.677755474506576],[-87.64656228457228,41.67774916903707],[-87.64677807084469,41.67774618864805],[-87.64717918007976,41.677740647441645],[-87.64765651699717,41.67773380875358],[-87.64819886208093,41.67772724586576],[-87.64877796522616,41.677720103509046],[-87.64926697245154,41.677712745019335],[-87.6497331574964,41.677705727865565],[-87.65053390797273,41.67769500988521],[-87.65111288351919,41.67768607118204],[-87.65163518367737,41.67767830389157],[-87.65179484273882,41.67767592904549],[-87.65223798575869,41.67766979256677],[-87.65286493463246,41.67766162138673],[-87.65286495769543,41.67766162124885],[-87.65385290111081,41.67764790720605],[-87.65561245692876,41.677623461258726],[-87.65651918374604,41.677610852974304],[-87.65677860926499,41.67760699082186],[-87.65703668273466,41.6776030756693],[-87.65727754861238,41.67759944319899],[-87.6574753580948,41.67759659988141],[-87.65774027280727,41.67759302388469],[-87.65797103007827,41.67758990849644],[-87.65824502967702,41.67758575516984],[-87.65847033582625,41.677582303235035],[-87.65874579979436,41.67757812986968],[-87.65895663354483,41.677575938955606],[-87.65920147824484,41.677573393896424],[-87.65951087818374,41.67756892376663],[-87.65976148090982,41.677565288288875],[-87.65998576470828,41.67756160784365],[-87.66017424018219,41.677558704919036],[-87.66049048940276,41.67755383344864],[-87.6607833173775,41.677551869995916],[-87.66104047746354,41.677551261432725]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"25199181.5394","perimeter":"0.0","tract_cent":"1198134.24865665","census_t_1":"17031510100","tract_numa":"69","tract_comm":"51","objectid":"54","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1839046.35636133","census_tra":"510100","tract_ce_3":"41.71317756","tract_crea":"","tract_ce_2":"-87.54996332","shape_len":"23421.7965038"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.54313694360947,41.72280197561811],[-87.54310169207454,41.7226084593306],[-87.54309416598826,41.7225513198656],[-87.54302190552431,41.72199217911183],[-87.54295835878156,41.72163228938286],[-87.54280855973641,41.72123347452145],[-87.5427349192462,41.720968794120736],[-87.54269243576454,41.72081609783102],[-87.5427045973459,41.72050609731861],[-87.54278795805594,41.72033810176539],[-87.54288891834334,41.720134638425094],[-87.54297379283804,41.719690454844745],[-87.54299228841353,41.71952825570592],[-87.54301130211475,41.719361668399706],[-87.5430233723186,41.71925591645373],[-87.54303943750756,41.71911516494615],[-87.54316417423902,41.71802226999667],[-87.54315346172747,41.717941344199936],[-87.54314920722213,41.71792012527783],[-87.5431414776402,41.71788157681933],[-87.54312929426823,41.717799986659564],[-87.54312270500544,41.71775799506682],[-87.54307732793772,41.7174688105459],[-87.54306226690399,41.71736649748241],[-87.54305736863587,41.71733322247489],[-87.5430300336987,41.717147524647146],[-87.54242002047856,41.716438590845186],[-87.54231840624699,41.715861573111596],[-87.54221184385547,41.71576212982281],[-87.54218035621214,41.71564306419743],[-87.54218173864692,41.715530342500784],[-87.5421848634385,41.71527554921567],[-87.54221100471005,41.71462230762744],[-87.54228813493182,41.714255320257756],[-87.5424005200795,41.71397021857533],[-87.54244466130612,41.71382096902219],[-87.54253310780012,41.713521914159834],[-87.54259537048512,41.71288253293592],[-87.54260723203961,41.71191473637456],[-87.54261355415741,41.7113988887892],[-87.54267351451126,41.71095008449804],[-87.5427337654918,41.71079990165678],[-87.54272558224002,41.710753867350505],[-87.54276886892097,41.71072277100127],[-87.54285984599414,41.7105565962015],[-87.54306317145443,41.710258534841635],[-87.54308681515896,41.71022292005673],[-87.54316757118534,41.71010127369797],[-87.54319661338161,41.71003489407186],[-87.54327853397159,41.709847654386515],[-87.54330451429003,41.709815844148316],[-87.54333960394449,41.70977288050487],[-87.5436411220449,41.709403701466314],[-87.54389990669871,41.70919144779195],[-87.54426151159468,41.708894858144745],[-87.54458744012325,41.708675327426256],[-87.54519484208465,41.70819756061661],[-87.54526584395977,41.70814171138215],[-87.54563774899373,41.70769762350706],[-87.54572993607391,41.70756246898596],[-87.54579324720852,41.707469648489116],[-87.54585596867797,41.707332642858546],[-87.5458535312051,41.706399726599955],[-87.54585327535617,41.706301913205955],[-87.5458763020901,41.705611952698355],[-87.54571472887345,41.705144288061526],[-87.54567185509052,41.704903482040535],[-87.5456292609564,41.704639790285256],[-87.54562874747984,41.70458456035109],[-87.54562860885511,41.70456966542909],[-87.54562265736077,41.70392970715365],[-87.5456599045999,41.70338024770452],[-87.54575557331435,41.70304878576751],[-87.54590291616292,41.70277083723572],[-87.54656505052286,41.70276673386002],[-87.54685755530902,41.70276639383784],[-87.54781339856945,41.70276527658118],[-87.54881297760829,41.702764810839746],[-87.54917514547698,41.70276480655743],[-87.54986834970045,41.702765281579026],[-87.5512261069161,41.70276481465913],[-87.55185109599506,41.702764594160676],[-87.55241232422168,41.702765046242305],[-87.55369778485377,41.702766080260986],[-87.55409703440158,41.70276639848176],[-87.55491170358064,41.70276713508186],[-87.55548944731966,41.70276765381794],[-87.55636415617892,41.70276722415906],[-87.55686145967657,41.702766976941135],[-87.5575243143083,41.70276877264835],[-87.5581043295153,41.70277113144315],[-87.55799359266676,41.702958374487636],[-87.55792553543456,41.70317471666888],[-87.55785624146135,41.70353203995356],[-87.5578606302965,41.7037763144179],[-87.55788659786381,41.70401524502172],[-87.5579274104633,41.70423781067862],[-87.55806062185528,41.70458037739046],[-87.55816233361209,41.70476356058654],[-87.558428924819,41.705244585828346],[-87.55861747271315,41.70582079219306],[-87.55871912564106,41.70639226143087],[-87.55844213949013,41.7063929245271],[-87.55819584940066,41.706393765748906],[-87.55802419858455,41.706394388016015],[-87.55766844708421,41.70639550411104],[-87.5574467978703,41.70639619911754],[-87.5563718335665,41.706396606718165],[-87.55600537830286,41.70639674378379],[-87.55574691713535,41.70639683906295],[-87.55532956707893,41.7063975269664],[-87.55523874343885,41.70639532388981],[-87.55498677658048,41.706389212067926],[-87.55499466145578,41.70654018658109],[-87.5549956213766,41.70680976757827],[-87.55500063996482,41.70694021162395],[-87.5550020560136,41.7070096607255],[-87.5550067149126,41.707238121177944],[-87.55501252570326,41.70754275278333],[-87.55501749081682,41.707759614503786],[-87.55502001968661,41.70789001449581],[-87.55501755183045,41.70812801254889],[-87.5550036344727,41.70818272232966],[-87.55514643440026,41.709985349499085],[-87.55514611534628,41.710025194833676],[-87.55513158510722,41.7118390241079],[-87.55508825383836,41.71336594505153],[-87.55508998818333,41.71336593539185],[-87.5551154821298,41.71336579409867],[-87.55548420313927,41.71336513629546],[-87.55590141401287,41.71336439043689],[-87.556389363044,41.713361276056716],[-87.55649500335024,41.715433046159916],[-87.55649785123023,41.71583902154753],[-87.55650955543763,41.71649663883389],[-87.55651500537813,41.716993040166734],[-87.55652034076321,41.71728361517545],[-87.55653048956198,41.71783633518987],[-87.55653527446462,41.71815072872803],[-87.5565384443234,41.71851406989247],[-87.55654828230068,41.71904875590057],[-87.55655301148936,41.71930576567401],[-87.55655700871253,41.71955953219804],[-87.55656305056894,41.71994314572105],[-87.55656795717441,41.720254685607465],[-87.55656875329763,41.72035960580508],[-87.55657124164716,41.72068756830542],[-87.55657339959691,41.720874950855524],[-87.55657718590277,41.721203813728025],[-87.55658051637586,41.72134730890724],[-87.55658081209025,41.72136004396793],[-87.55658782115002,41.72166202143752],[-87.55659448918024,41.722121189696715],[-87.55659516692583,41.722165042350376],[-87.55660355559507,41.72270052038639],[-87.55653709838869,41.72270007114046],[-87.55633627313792,41.72270247305002],[-87.5558231043028,41.72270893628336],[-87.55522475512741,41.72271648294951],[-87.55486450726083,41.72272102499407],[-87.55439579390563,41.722725642455735],[-87.55384619066034,41.72273277936732],[-87.55352391137542,41.72273696305979],[-87.5529804521097,41.722743098254334],[-87.55245753896325,41.72274954806257],[-87.55217034519556,41.722753089850904],[-87.55203918610302,41.72275473222426],[-87.55176067196487,41.72275803699059],[-87.55140209573248,41.72276101885771],[-87.5510762430193,41.72276488321401],[-87.5503902719334,41.72277301373477],[-87.55036400514058,41.72277332516567],[-87.54989436826392,41.72277846683118],[-87.54982747750559,41.722778605714815],[-87.54969662911354,41.722778877297536],[-87.5493451817462,41.722779606019394],[-87.54902612387524,41.72277874322832],[-87.54895751796697,41.72277855759589],[-87.54887594508625,41.722778336913066],[-87.54876476062624,41.72277803583962],[-87.54866200103598,41.722777757611965],[-87.54855921507581,41.72277747911233],[-87.5484753674682,41.722771654917146],[-87.54832610814336,41.72276128709917],[-87.548225348783,41.72275428678266],[-87.54817811248104,41.72275415173886],[-87.548051161002,41.722753787244905],[-87.54790824113772,41.722753377130736],[-87.54785161516801,41.722753214544696],[-87.54772283180182,41.722754261188605],[-87.54763683957518,41.72275496004063],[-87.54761852589873,41.72275510869829],[-87.54756871884398,41.72275551374399],[-87.54750442094337,41.722756036194646],[-87.54741514917696,41.72275676157561],[-87.54687835351449,41.72276133714821],[-87.54686328192992,41.72276146561284],[-87.54657666450261,41.72276415979876],[-87.54654400563338,41.722764466657054],[-87.54648400780032,41.72276640330822],[-87.54646015451463,41.722767173305385],[-87.5464049993781,41.722768953720134],[-87.54632798043578,41.72277143976538],[-87.5459976070698,41.72278929233845],[-87.54567696315212,41.72282057819381],[-87.54558842614667,41.72282921711964],[-87.54510397945795,41.72283824409179],[-87.54473318461622,41.722839487089296],[-87.54424949280782,41.7228466497817],[-87.54374648587006,41.722852899427735],[-87.5437260642204,41.72285315290619],[-87.54320918327727,41.722863458923825],[-87.54314429934149,41.72286175283583],[-87.54313694360947,41.72280197561811]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1587028.91957","perimeter":"0.0","tract_cent":"1160443.95855002","census_t_1":"17031311200","tract_numa":"6","tract_comm":"31","objectid":"616","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888027.72857975","census_tra":"311200","tract_ce_3":"41.84844732","tract_crea":"","tract_ce_2":"-87.6866489","shape_len":"6438.03421558"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68747687649143,41.84479598069803],[-87.6875602695139,41.84479497867857],[-87.68762852988908,41.84585125029838],[-87.6876683832575,41.846467929579504],[-87.68767403975902,41.846555456422884],[-87.68768022862865,41.84665121492812],[-87.68769524114609,41.846883515229976],[-87.68776013628064,41.847887652576524],[-87.6877911719409,41.848367862327905],[-87.6878003981831,41.84876988948897],[-87.6878178690451,41.84953116258898],[-87.68783068094291,41.85008942357273],[-87.68783284062083,41.85018353805788],[-87.68787474362856,41.85200933535459],[-87.68786668815609,41.85200935786665],[-87.68770864405113,41.8520108178194],[-87.68708298441354,41.85201659442836],[-87.68647850803222,41.85202595238684],[-87.68611791196369,41.85203034249391],[-87.685640263929,41.85203190621063],[-87.68562482581457,41.851505714352015],[-87.68561522636895,41.85111869210649],[-87.68560353506393,41.85064735435947],[-87.68558823871143,41.85021444799754],[-87.68557258527584,41.849771403934874],[-87.68556010617276,41.84930445272362],[-87.68554612710346,41.84878137232274],[-87.68553632142513,41.84839957901467],[-87.6855293058029,41.8481263945922],[-87.68551298680697,41.84749099279212],[-87.68550018783384,41.846992623001036],[-87.68548971405619,41.846584872492],[-87.68547097499633,41.84585512613388],[-87.68546071670647,41.84530843555353],[-87.68545526986966,41.84501814715564],[-87.6854470542784,41.84483841799353],[-87.68550653577648,41.84482584394352],[-87.68560112630948,41.84482094378827],[-87.68607564100134,41.844812548219004],[-87.68610221743789,41.84481207805585],[-87.68614705247542,41.8448117184552],[-87.6863494535497,41.84481009556437],[-87.68636981662482,41.84480983649953],[-87.68714618169835,41.844799953863784],[-87.68747687649143,41.84479598069803]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11751008.1928","perimeter":"0.0","tract_cent":"1180306.6896427","census_t_1":"17031490800","tract_numa":"61","tract_comm":"49","objectid":"56","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1837993.74091633","census_tra":"490800","tract_ce_3":"41.71071559","tract_crea":"","tract_ce_2":"-87.61528532","shape_len":"16058.3262256"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61691588350523,41.7138016823448],[-87.616746263251,41.71379884091622],[-87.61667850825052,41.71379855559468],[-87.61635360510616,41.713801832533996],[-87.61619513398006,41.713803690621354],[-87.6159690037308,41.713807081461006],[-87.61571847640768,41.71381084147045],[-87.61558549799754,41.71381316692421],[-87.61542928959325,41.71381630761094],[-87.61530436680921,41.71381882028195],[-87.61521717080574,41.71382115694009],[-87.6151384904226,41.71382852110984],[-87.61505830458673,41.71383602620435],[-87.61494404600087,41.71385443986994],[-87.61484231163097,41.713876307244576],[-87.614777019924,41.713891651386334],[-87.61472454233288,41.7139073775007],[-87.61464566604462,41.713932214292846],[-87.61453989810859,41.71396437756079],[-87.61448941455677,41.71397860391992],[-87.61449049205464,41.713416087540374],[-87.61446214117805,41.71341450344684],[-87.61436500131644,41.71342197609263],[-87.61410566802,41.71344186486623],[-87.61402944663769,41.71344312163801],[-87.61395261275588,41.71344438852083],[-87.6139485939622,41.71330132827692],[-87.6114710611291,41.71334135984362],[-87.6102713478832,41.713360917310595],[-87.6058992619499,41.713431775842835],[-87.60565290900135,41.71343570471657],[-87.6053873214698,41.713440197570584],[-87.6051564081013,41.7134438647773],[-87.6051887933384,41.71330017541826],[-87.60520816252053,41.71321424011717],[-87.60526945610223,41.71294228983841],[-87.60527427329295,41.71292091658303],[-87.60528372954836,41.712878959307055],[-87.60533480868523,41.71265232735988],[-87.605409228098,41.71232836579603],[-87.60557237988402,41.71161812561192],[-87.6056193808849,41.711412544317206],[-87.60571307494523,41.711003274376246],[-87.60572528258193,41.71094994965449],[-87.60574039554642,41.71088393190542],[-87.60582169837451,41.710528781803724],[-87.60589677533218,41.71020098136167],[-87.60597399263794,41.70986183290681],[-87.60607132279983,41.709434334734155],[-87.60610130295285,41.709302851903075],[-87.60611596816285,41.70923857005342],[-87.60612545381991,41.7091969915823],[-87.60619937955944,41.70887025386277],[-87.6064056808259,41.70794027328074],[-87.6065175045448,41.70743344610845],[-87.60705016540972,41.70742164132417],[-87.60726983965334,41.70741677216687],[-87.60746968338458,41.70741234238709],[-87.60779988296548,41.70740502228806],[-87.60853786387767,41.707394914825805],[-87.60889067238975,41.707389427436816],[-87.61011269201093,41.7073704128926],[-87.61074247715855,41.70736060839461],[-87.61099280199528,41.70735636421333],[-87.61132944982623,41.70735129603222],[-87.61170526378359,41.707345636901074],[-87.61254994802778,41.707333252622924],[-87.61261818667067,41.707332251648445],[-87.61290194877964,41.707328089792036],[-87.61345513769693,41.7073208262418],[-87.613767357225,41.70731537312471],[-87.61406000045265,41.70731026096868],[-87.61464421193534,41.707299343812],[-87.61498750431399,41.70729437644782],[-87.61527989511958,41.70729014492534],[-87.61599231470306,41.707279829856],[-87.61620720213965,41.70727656581135],[-87.61644680098559,41.70727292614727],[-87.61711362526522,41.707262591636116],[-87.61742572566739,41.7072577573825],[-87.61864257467612,41.70723890146563],[-87.61926280895572,41.70722928560242],[-87.61960235124155,41.70722445184327],[-87.61980622276901,41.70722154652496],[-87.62020895596942,41.70721489578474],[-87.62113849256879,41.70719954119862],[-87.62195046956934,41.70718739114993],[-87.62233668117848,41.70718135078358],[-87.62247580795078,41.70717917435371],[-87.6227299265238,41.70717519893172],[-87.62319040380234,41.70716953806891],[-87.62352262903596,41.70716471144916],[-87.623529048994,41.70736606566403],[-87.62353238870688,41.707617356597936],[-87.6235342391533,41.70775653269297],[-87.62353974250895,41.70806972120004],[-87.62354304585931,41.7082577006072],[-87.623551864304,41.70864124684812],[-87.62355869463927,41.708984764708],[-87.62356209809158,41.70915592556984],[-87.62356685184226,41.70941205516826],[-87.6235698772039,41.70955406512956],[-87.62357302195993,41.70975760354522],[-87.62357658679585,41.70989478709616],[-87.6235805871513,41.71004871315394],[-87.62358105862874,41.71020228836756],[-87.62358475861383,41.710378661395566],[-87.62359108699866,41.71067234299688],[-87.62359460340373,41.7108057777567],[-87.62359876128173,41.710963535562385],[-87.62360251277893,41.71114185707941],[-87.62360473309649,41.71131953848877],[-87.62360847332656,41.71150897470415],[-87.62361322847418,41.71171485594486],[-87.62361785117369,41.71191500017844],[-87.6236211789038,41.71211856708388],[-87.6236274459321,41.712461097142686],[-87.62363146804107,41.712626414670034],[-87.62363609703446,41.71281670487542],[-87.62364458291394,41.71307077167556],[-87.62365254398064,41.71341583691501],[-87.62365506844051,41.71353904508354],[-87.6236582397276,41.713693816936605],[-87.62365247673662,41.71384480133244],[-87.62363507109542,41.7140086944575],[-87.62362190522225,41.714089286299355],[-87.62360510615419,41.714164003709186],[-87.6235584946843,41.71433306867501],[-87.62352019896515,41.71443882163718],[-87.6234935458723,41.71450150688121],[-87.62345469713738,41.714583570719434],[-87.62340996476686,41.714672809994454],[-87.62335458542893,41.71478796203061],[-87.6232669853269,41.71496148834618],[-87.6231707829238,41.71515644341735],[-87.62311367955797,41.71526383279025],[-87.62305246677265,41.715381672350986],[-87.62303774017762,41.715411345122796],[-87.62299323368956,41.71550102031754],[-87.62292172168104,41.715647227841814],[-87.62288280766649,41.715736551986666],[-87.62285410438372,41.71580243826417],[-87.62279975188548,41.71595669962242],[-87.62277109001334,41.71608624557241],[-87.6227455425895,41.716229744506435],[-87.62273718470799,41.71638624391679],[-87.62273198943161,41.71653823420333],[-87.62276102454106,41.7169213215274],[-87.62258466498945,41.71667528001231],[-87.62243465321802,41.716444570175064],[-87.62239940308632,41.716392703997165],[-87.62230267592808,41.716265043244],[-87.62219047077481,41.71611774761226],[-87.62204657524006,41.71594712082142],[-87.62193866629927,41.715831328606036],[-87.62185102663021,41.71574082720261],[-87.62175609558079,41.715647262102785],[-87.62167519349742,41.715570249178704],[-87.62162006065755,41.71552127837033],[-87.62154936374749,41.71545881912168],[-87.62142796322514,41.71536110860218],[-87.62136269400891,41.71530857586309],[-87.6214677373031,41.715200510400045],[-87.62129885378052,41.71513192771027],[-87.6208977040263,41.71497228921005],[-87.62075355547834,41.71488306809799],[-87.6206689176786,41.714832788690885],[-87.62047998695913,41.71473321207486],[-87.62040465854624,41.71467909026906],[-87.62033808237965,41.71465842027516],[-87.62011694752229,41.714541869128915],[-87.61996825303733,41.71447478057315],[-87.61985058104933,41.71442786008058],[-87.61963999108367,41.71434388984269],[-87.6194933992027,41.714285437483255],[-87.61943881770442,41.714266327254194],[-87.61936431770603,41.714240040339796],[-87.61931623314348,41.714222973772934],[-87.6192012130238,41.71418449717527],[-87.61912931215247,41.71416165666164],[-87.61904958783407,41.71413750508585],[-87.61883596639078,41.71407940390131],[-87.61868796777443,41.71403915060846],[-87.61855377502931,41.71400889658528],[-87.61843554161767,41.71398283128027],[-87.61831612479368,41.713957801057504],[-87.61820373755829,41.713936353259356],[-87.61806237084045,41.713912285270894],[-87.6179578005547,41.71389601914038],[-87.6178537357488,41.713880414698956],[-87.61774256785273,41.713864601271275],[-87.61758994308894,41.713848446646004],[-87.61740812509812,41.71382920205997],[-87.61725559643463,41.713817603710496],[-87.61708601718087,41.71380776502144],[-87.61697351001551,41.71380374253188],[-87.61691588350523,41.7138016823448]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6989585.67463","perimeter":"0.0","tract_cent":"1174322.20127303","census_t_1":"17031491200","tract_numa":"33","tract_comm":"49","objectid":"57","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1829949.52459317","census_tra":"491200","tract_ce_3":"41.68877592","tract_crea":"","tract_ce_2":"-87.63743967","shape_len":"10582.4976884"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64184792718895,41.68508654453661],[-87.6421520465059,41.68508212044722],[-87.64215722466845,41.68533797500452],[-87.64216288579415,41.68544868811023],[-87.64217280737962,41.68571198445175],[-87.64217965960019,41.685944086671014],[-87.64218841306135,41.686241350835125],[-87.64219629968434,41.68651015101472],[-87.64220333602053,41.68673525625376],[-87.64220849362034,41.68690302102773],[-87.64221848901553,41.687228175051665],[-87.64222697789761,41.687492066446524],[-87.64223942812993,41.68787151813582],[-87.6422494326263,41.688199059729016],[-87.64225792885726,41.6885032653923],[-87.64226569059043,41.68872014685045],[-87.64227154156654,41.68888362963332],[-87.64227511656291,41.688970399529715],[-87.64227871216535,41.68911340095172],[-87.64228389931613,41.68931972372283],[-87.64229217278391,41.68961059052404],[-87.64230281711627,41.689953613904116],[-87.64231468343075,41.690302133277584],[-87.64232385845861,41.69053659156173],[-87.64233745391569,41.69088404140015],[-87.64234307819537,41.69104615552932],[-87.64235154589427,41.69133598056195],[-87.64235982623963,41.691619437601105],[-87.64236285142654,41.69173362003263],[-87.64236801503489,41.691928526142384],[-87.64237406526117,41.6921740156247],[-87.64237845382664,41.692356090049664],[-87.64203421402247,41.69235886083758],[-87.64184552244907,41.692360744672925],[-87.64173133118604,41.692361619051006],[-87.6416047297201,41.69236258849208],[-87.64135522284496,41.69236443477215],[-87.64116534926609,41.69236779423383],[-87.64095832612568,41.692371457045965],[-87.64078607338445,41.69237341046214],[-87.64057126478319,41.69237634204641],[-87.64022704626043,41.692380798057144],[-87.63995607623329,41.69238373335291],[-87.63983164293933,41.692385081388004],[-87.63969329390518,41.69238710053758],[-87.63934929445062,41.69239163757095],[-87.63902243351524,41.6923958380263],[-87.63874402429225,41.69240015668817],[-87.63864938532825,41.692401624512975],[-87.63836697929273,41.692405295961024],[-87.63801434108268,41.69240958465305],[-87.63770446865996,41.69241380181443],[-87.63753445254278,41.69241530641417],[-87.63733986906527,41.692417028073415],[-87.63712397314892,41.692418903781665],[-87.63690792249129,41.692421546559494],[-87.63656462483566,41.692425448312356],[-87.6363363066729,41.692428223657544],[-87.63608261244732,41.692431306736566],[-87.63579075451756,41.69243546337246],[-87.63532596766862,41.692443124386514],[-87.63513747383804,41.692444595264526],[-87.63491841937602,41.69244637710984],[-87.63465450774297,41.692449610096595],[-87.63428671529503,41.692453493339144],[-87.6339411064261,41.69245771788292],[-87.63375607203517,41.69245997925429],[-87.63344339513127,41.69246282065947],[-87.63319186842911,41.692465105643855],[-87.63295029558364,41.692467997686414],[-87.63271440484789,41.69247082122407],[-87.63272235134016,41.691616385974385],[-87.63272403693885,41.69146776349509],[-87.6327071050625,41.69127031533942],[-87.63270191444778,41.691175027920195],[-87.63269723037428,41.69104659205218],[-87.63269379918107,41.690937593693235],[-87.63269295774244,41.69077902103257],[-87.63268468192008,41.690654268106755],[-87.63267533743061,41.690513317099736],[-87.6326715729016,41.690391281117655],[-87.63266788801826,41.69028211653912],[-87.63266200656491,41.69010883095161],[-87.63265340091446,41.689889616059624],[-87.6326465645708,41.68975082062932],[-87.6326347998554,41.68951199219778],[-87.63262767357494,41.68932522459443],[-87.6326258703606,41.689267774705776],[-87.63262081769939,41.68910676103499],[-87.63261584157955,41.688941192507286],[-87.63261363103835,41.68888511229781],[-87.63261189734399,41.68883937509473],[-87.6326107699383,41.68880963007464],[-87.63260372595815,41.688623791357315],[-87.63259674729149,41.688403159272504],[-87.63259091237748,41.68822227210533],[-87.63257973289628,41.68792658402847],[-87.63257163045036,41.68767460504416],[-87.63256645489228,41.687483540394396],[-87.63254888744444,41.6871591353076],[-87.63254540762159,41.68702196186773],[-87.63254116945014,41.68685487878878],[-87.6325344624416,41.68670711036979],[-87.63252836173845,41.68655745205314],[-87.63251821357157,41.68628147477256],[-87.63250922492374,41.6860099503713],[-87.63250008532208,41.685732167952715],[-87.6324972980551,41.6856579990263],[-87.63248747256065,41.68539656864422],[-87.63248130814877,41.68520395172776],[-87.63271277217613,41.68520062467017],[-87.63306947629637,41.68519593786042],[-87.63333002897002,41.685192475591464],[-87.63368622935697,41.68518960411641],[-87.63397002491966,41.685187315684104],[-87.6343186091437,41.685181889499844],[-87.63460172384116,41.685177491284215],[-87.63489467992855,41.68517353529],[-87.63499709436432,41.68517215209045],[-87.63507625081897,41.685171593498325],[-87.63530789276156,41.68516712778577],[-87.63557329619493,41.6851619884042],[-87.63582339769917,41.685156755539374],[-87.63610850933428,41.685155368308294],[-87.63651616444523,41.68515338365854],[-87.63677364176107,41.68515000470769],[-87.63706575892351,41.685145874530996],[-87.63731230383328,41.68514235349337],[-87.63743410983474,41.68514061353529],[-87.63774342007363,41.68513776580681],[-87.63802604002005,41.68513511253403],[-87.638224313751,41.68513216798815],[-87.63857013314353,41.68512240220406],[-87.63872136945379,41.68511813095802],[-87.63900457291169,41.68511904644145],[-87.63928000112766,41.68511785601949],[-87.63935149125827,41.685117106027164],[-87.63955394642169,41.68511498194051],[-87.63972102615634,41.6851123231874],[-87.6400078018812,41.68510775893265],[-87.6401971007783,41.68510530570566],[-87.64041898149775,41.6851029673832],[-87.64061779507493,41.685100871608384],[-87.64073807955644,41.685098879670754],[-87.6409368962621,41.685096455963404],[-87.64110869177772,41.68509436149358],[-87.64132333845421,41.68509406244959],[-87.64149036653852,41.68509183963198],[-87.64184792718895,41.68508654453661]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7024579.66422","perimeter":"0.0","tract_cent":"1194283.68275671","census_t_1":"17031460400","tract_numa":"27","tract_comm":"46","objectid":"58","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1850422.73552778","census_tra":"460400","tract_ce_3":"41.74449064","tract_crea":"","tract_ce_2":"-87.56369259","shape_len":"13194.5004159"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56540931539233,41.737201890036964],[-87.5657006250207,41.73719771954062],[-87.56602788951356,41.73743286163748],[-87.56603408422745,41.73813328766574],[-87.56603409230267,41.738134179070066],[-87.56603721803482,41.73829940712829],[-87.56604040761765,41.738465458899746],[-87.56604766618861,41.73901228300406],[-87.56604886691946,41.73910274304074],[-87.56605116724843,41.739276061258806],[-87.56605506578939,41.739524117838336],[-87.56605753102693,41.73971719586441],[-87.56606113846388,41.74000205133091],[-87.5660670516158,41.74035177009353],[-87.566072625172,41.74082712959524],[-87.56607586960797,41.74110382321849],[-87.5660777504945,41.7412690428792],[-87.56608073111543,41.74148959504489],[-87.56608389606683,41.74168232119293],[-87.56608776288863,41.74192077212043],[-87.566090123343,41.74212265885592],[-87.56609186092658,41.74228757565734],[-87.56609737033978,41.742644938587155],[-87.56610219900121,41.74295816032154],[-87.56610485517331,41.74312283624582],[-87.56610772441086,41.74328814477783],[-87.56610851151987,41.74334668601668],[-87.5661143543227,41.74369772137282],[-87.56612547503279,41.744461317431686],[-87.56613117231204,41.74485253299929],[-87.56613324604344,41.744994914660296],[-87.56613986616881,41.74553152480822],[-87.56614928887564,41.74627703833603],[-87.56615403746734,41.74665274900431],[-87.56616103634084,41.74731145548622],[-87.56617287073878,41.748094808762595],[-87.56618874399344,41.74914554687058],[-87.56619516496079,41.74958506196991],[-87.56619991885505,41.74981777522388],[-87.56620106405683,41.74987382476797],[-87.56620188548648,41.74991403836263],[-87.56620789300526,41.750208102757476],[-87.56621560905013,41.750585825071006],[-87.56622784911252,41.75131838775015],[-87.5662325933922,41.75172791962782],[-87.56547905352711,41.75173806617614],[-87.56501926736361,41.75174575942281],[-87.56427666345508,41.751758180648174],[-87.56380680694151,41.75176376179684],[-87.5630798773899,41.75177239241797],[-87.56259729907924,41.75177893439775],[-87.56198012567347,41.75178729809551],[-87.56138629784267,41.751794917947464],[-87.56137820382469,41.751350167239934],[-87.56136546432046,41.75065015860514],[-87.56135723418352,41.750175613682615],[-87.56135385887752,41.749980609075884],[-87.56135211249469,41.749879689448065],[-87.56134388896909,41.74940454076069],[-87.56133124870597,41.74863092301767],[-87.56132358019738,41.74816155251372],[-87.56131433247587,41.7475955187397],[-87.56130411291214,41.74698649000416],[-87.5612915385735,41.746343336187486],[-87.56127975610936,41.74574066057866],[-87.56126794795226,41.744972836766905],[-87.56126735656557,41.74493435630865],[-87.56126072874942,41.74452570771134],[-87.56125354243869,41.744082597049626],[-87.56124834671665,41.743762219447554],[-87.56124116173065,41.74331408144826],[-87.56123868093617,41.743238541568644],[-87.56123555412901,41.74307748487384],[-87.56123176977337,41.74270803347052],[-87.56122769843243,41.742298736127296],[-87.56121921282752,41.74186922336865],[-87.56121542299232,41.74164117345953],[-87.56121210347452,41.741453358465996],[-87.5612087129917,41.74126535088823],[-87.56120196378713,41.74089298804721],[-87.56119408698427,41.74045839984275],[-87.56119034405788,41.740162181953686],[-87.56118742571265,41.73993476929818],[-87.56118506150133,41.73974674112471],[-87.56118144175508,41.73946471208114],[-87.56117638991134,41.739074854886105],[-87.56117399226518,41.738889833943624],[-87.56117152225666,41.738699231416284],[-87.56116682884537,41.73843036777015],[-87.56116292264537,41.73814778787653],[-87.56115908907688,41.73786526334336],[-87.56115723782072,41.7377597304454],[-87.5611560192411,41.73769026581085],[-87.56115349034603,41.73733553499814],[-87.56115441028373,41.73725874014551],[-87.56167168551808,41.73725250071527],[-87.56175538322984,41.737251401113824],[-87.56239778888683,41.73724295820282],[-87.56283549658264,41.73723720381403],[-87.56297375903343,41.737235332519454],[-87.56304092973734,41.73723442332168],[-87.56328429032459,41.73723112879621],[-87.56361884847733,41.73722653056678],[-87.56419598899946,41.737218595940135],[-87.56425590370823,41.737217771931526],[-87.56432457737478,41.73721682758535],[-87.5648023947506,41.737210315180974],[-87.5651875728917,41.73720506409896],[-87.56540931539233,41.737201890036964]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2927445.10115","perimeter":"0.0","tract_cent":"1199979.33992487","census_t_1":"17031460800","tract_numa":"12","tract_comm":"46","objectid":"59","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1845920.80956913","census_tra":"460800","tract_ce_3":"41.73199535","tract_crea":"","tract_ce_2":"-87.54297499","shape_len":"8698.64081885"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.53894484970355,41.73389217767642],[-87.53893900351764,41.733697634610635],[-87.53892951642372,41.73342691188591],[-87.53891819769656,41.733156176758804],[-87.53891121841338,41.73294207265428],[-87.5389100208136,41.7325561460801],[-87.53889856836481,41.732221947632425],[-87.53889698463391,41.73216464929104],[-87.53888941932745,41.731923784111],[-87.53888105202364,41.73163660320454],[-87.53887562276819,41.731371054011916],[-87.53889109296333,41.73123051526138],[-87.53892248568332,41.73113571041507],[-87.53899250587925,41.730990746514905],[-87.53905874609926,41.73089240938001],[-87.53913445776055,41.730805800700665],[-87.53922708932318,41.730683976503556],[-87.53940603118548,41.73047012826352],[-87.53950000553374,41.7303507138354],[-87.53962040160094,41.730205411198995],[-87.53975472376773,41.73004476788479],[-87.53978005804234,41.730069984656446],[-87.539805841795,41.73009589060335],[-87.53992346031026,41.730213335878126],[-87.53992873999088,41.73037974568077],[-87.53993300630373,41.730628478240476],[-87.53994055396245,41.73087105848195],[-87.53994849699161,41.73111878701811],[-87.53995434346236,41.731425160621356],[-87.53995971311979,41.73169585465731],[-87.53996369301717,41.731893472476045],[-87.5399689846876,41.73213329278028],[-87.5401478334089,41.73211943083015],[-87.54014320766062,41.73204221802684],[-87.54013593231443,41.73192076023868],[-87.54012296499711,41.73138459761048],[-87.54011240283285,41.73093882183575],[-87.54010024644755,41.73061965734742],[-87.54009699697731,41.7304371110526],[-87.54009840966157,41.730325263121216],[-87.54009861454168,41.73026096514433],[-87.54010315638216,41.73021637406392],[-87.54012359372213,41.73015836629926],[-87.54014483015575,41.73013438741894],[-87.54019170924632,41.730102767283626],[-87.5403592767887,41.73002250022971],[-87.54071043882927,41.72987236736795],[-87.54124707667474,41.72964214288338],[-87.54138099983682,41.72957473274374],[-87.5414766932264,41.729517455802764],[-87.5414936826791,41.72968561095457],[-87.54149428781926,41.730018170304994],[-87.54149654141628,41.73020122784283],[-87.54170749353474,41.73019720457532],[-87.54220120976564,41.730187787132095],[-87.54242554085599,41.73018350695825],[-87.54289695300899,41.73017734362346],[-87.54387916818031,41.73016449610031],[-87.54429283172514,41.730158707443756],[-87.5451472583637,41.73014674650288],[-87.54566761682621,41.730140140777955],[-87.54641752623586,41.73013061696269],[-87.54664478921757,41.73012777319844],[-87.54693162029625,41.730124183252656],[-87.54694366387251,41.73063799128801],[-87.54695281249516,41.730913884517484],[-87.54695513056119,41.731168380001264],[-87.54697567835912,41.73195390893261],[-87.54698136531462,41.73217132933817],[-87.54699263771735,41.732640902471665],[-87.54699744632414,41.73289546980995],[-87.54700351971182,41.73319052403656],[-87.54700343555454,41.73332658644129],[-87.54700754280321,41.73351550542071],[-87.5470130621269,41.73362770270974],[-87.5470100222838,41.733669669790366],[-87.54700543296708,41.733703503120836],[-87.5469968203012,41.73372476743824],[-87.54698234648528,41.7337459642002],[-87.54696330388225,41.73375999092895],[-87.54695787269709,41.73376399145616],[-87.54692169166344,41.73378064875682],[-87.54691447911871,41.73378180002637],[-87.54686894110255,41.73378906976294],[-87.54666138937507,41.73379217678458],[-87.54656568289079,41.733792948532404],[-87.54637537329643,41.73379426306109],[-87.5462365057453,41.73379522219053],[-87.54574861790236,41.73379995196627],[-87.54524967229817,41.733804786598746],[-87.54508313475998,41.73380649255269],[-87.54483569184795,41.73380902677088],[-87.544380496014,41.733815375769545],[-87.54399706660074,41.73382072254658],[-87.54368145551544,41.733824475909664],[-87.54333889078855,41.7338285483187],[-87.54298321452183,41.733834032850076],[-87.5428767332226,41.73383567446957],[-87.54264715682895,41.73383921356856],[-87.54228244584058,41.733844058002866],[-87.54184118698635,41.733849910821604],[-87.5415944296683,41.73385324933218],[-87.5411826309726,41.73385881961708],[-87.54088786684936,41.73386311792684],[-87.5403393075425,41.73387111493292],[-87.54028750434203,41.733870949502865],[-87.54024979620132,41.73386566715792],[-87.53959026064776,41.73388120128279],[-87.53894484970355,41.73389217767642]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3245091.83039","perimeter":"0.0","tract_cent":"1187221.43907529","census_t_1":"17031480200","tract_numa":"15","tract_comm":"48","objectid":"60","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1846946.6859947","census_tra":"480200","tract_ce_3":"41.73512243","tract_crea":"","tract_ce_2":"-87.58967918","shape_len":"7666.58382785"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59275880820019,41.7331724250856],[-87.59283943556483,41.73317020040845],[-87.59293295110048,41.73332174006602],[-87.59296037703758,41.733366168780556],[-87.5931710216798,41.73368689489692],[-87.59337654720358,41.73397499897278],[-87.59345730968664,41.73408083191543],[-87.59376546342054,41.73448519982532],[-87.59412840722895,41.73494446307341],[-87.59416357961777,41.734992371712394],[-87.5945302221041,41.7354890481124],[-87.59456807629687,41.73554280579814],[-87.59460501466295,41.735596557308554],[-87.59464194879321,41.73565065181804],[-87.5946784254043,41.73570474337407],[-87.59471489851542,41.73575917765977],[-87.59475137524501,41.735813269467016],[-87.59478708363443,41.73589445609657],[-87.59482248887265,41.73592212674868],[-87.59485804239586,41.73597689838982],[-87.59489313766638,41.73603166680005],[-87.59493541873998,41.73609883131492],[-87.59496241247497,41.7361411985258],[-87.59499704567324,41.73619630724671],[-87.59503076768956,41.73625106706337],[-87.59506493949085,41.736306515836795],[-87.59522305522934,41.73657681691412],[-87.59528281981201,41.73667702503087],[-87.59530799434376,41.736718351356174],[-87.59534740898857,41.73678237318107],[-87.59523029922241,41.73678403045418],[-87.59449331404537,41.73679445697423],[-87.59376687426325,41.73680375204512],[-87.59349100281439,41.73680825476047],[-87.59322788522643,41.736812548891145],[-87.59299959237289,41.73681530798058],[-87.59270654886944,41.73681884935313],[-87.59242936759087,41.73682257404202],[-87.59211447920129,41.736826804567805],[-87.59178189053756,41.73683134371872],[-87.59158474085942,41.73683403396327],[-87.59136717951058,41.73683717083906],[-87.59110359032373,41.73684097104188],[-87.59056538978098,41.73684802553763],[-87.5902757149792,41.73685182124065],[-87.58999153501617,41.736855544459196],[-87.58980493826998,41.73685817917033],[-87.58934580214142,41.73686367528418],[-87.58905820360017,41.73686711719127],[-87.5886830404649,41.73687160594944],[-87.58863837096108,41.736872161419605],[-87.58812707218186,41.73687852014978],[-87.58785260495605,41.73688193250934],[-87.58768653292768,41.73688399714388],[-87.58729142841133,41.736889308063596],[-87.58691334790795,41.73689572055848],[-87.58658470325656,41.73690129308695],[-87.58629268172854,41.736904986379706],[-87.58624072201752,41.736905643358554],[-87.58602360723107,41.73690801860769],[-87.58563658566848,41.73691346504758],[-87.58520650786748,41.73691951598732],[-87.58520860356785,41.73661187327916],[-87.5852109321022,41.73627197849659],[-87.58519821031028,41.73606744473611],[-87.58517697307154,41.73591477782638],[-87.58515781586026,41.73525461956134],[-87.58516880913388,41.735098385499995],[-87.58517519300138,41.7350076511122],[-87.58517826113415,41.73496404811343],[-87.58515300163948,41.73458346760721],[-87.58514828160526,41.73435876033109],[-87.58514118833804,41.73402292053178],[-87.58513401798055,41.733687382084774],[-87.58513360344126,41.73333606913745],[-87.5853833046406,41.73330471947425],[-87.58556733719848,41.73328067621369],[-87.58567743319023,41.73326629208405],[-87.58591220744559,41.73326595335613],[-87.58623060276243,41.733261419562176],[-87.58636068251347,41.73325956679313],[-87.58683805640054,41.733252836030886],[-87.58744486992049,41.73324427696614],[-87.58758639228422,41.733242280836436],[-87.58805312571332,41.733236032785705],[-87.58868047070267,41.733227632197085],[-87.58880424980443,41.733225973759836],[-87.58926908200307,41.73321927375092],[-87.58931778000316,41.7332185717735],[-87.58971853280657,41.73321279395175],[-87.5898857317329,41.733210766859926],[-87.59007568396974,41.733208463535895],[-87.59048619050881,41.73320246483675],[-87.59109396273448,41.73319358039214],[-87.59119788174495,41.73319206112373],[-87.59140648822954,41.733189291818306],[-87.59170853275477,41.73318530522858],[-87.59231716687857,41.733177269239306],[-87.59252474678503,41.733174524763356],[-87.59275880820019,41.7331724250856]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4892765.99828","perimeter":"0.0","tract_cent":"1187761.87275081","census_t_1":"17031480300","tract_numa":"21","tract_comm":"48","objectid":"61","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1844781.57471417","census_tra":"480300","tract_ce_3":"41.72916831","tract_crea":"","tract_ce_2":"-87.58776799","shape_len":"10293.7658246"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58713026621477,41.72325580198986],[-87.58737431599786,41.72325635746184],[-87.58741204210855,41.723320064628325],[-87.58742371669109,41.723340036689656],[-87.58749677483188,41.72346397650307],[-87.58765986206775,41.72374704173947],[-87.58780749500812,41.72404747292411],[-87.58793629697666,41.724352927339346],[-87.58805918750414,41.7246549128636],[-87.58820591599574,41.72503389359659],[-87.58835366928524,41.725403618708036],[-87.58849533489199,41.72574551797966],[-87.58858499229257,41.7259535913983],[-87.58878252315995,41.72633363276124],[-87.58901922527168,41.72673377794173],[-87.58932646481507,41.727251698435325],[-87.58962560927795,41.72775721627149],[-87.58963191463303,41.72776795907547],[-87.58966602856232,41.72782608567304],[-87.59001144416709,41.72840977176885],[-87.59034340530536,41.72896935705484],[-87.59060306506656,41.729405666081156],[-87.59066461631704,41.7295086325605],[-87.59068027672872,41.729534898590906],[-87.59092428396444,41.72994459783986],[-87.5912279537023,41.73045700132798],[-87.59122980451396,41.73046008992832],[-87.59155460688437,41.731002141040854],[-87.59170547861314,41.731262795306954],[-87.59175894116416,41.73135267349077],[-87.59179397967152,41.73141190229518],[-87.59200194832289,41.731765202057595],[-87.59216152483472,41.732025911857704],[-87.59230886056858,41.73227590828352],[-87.5924427435186,41.7325011189794],[-87.59261215720554,41.73278281691896],[-87.59277963820344,41.73307342114809],[-87.59283943556483,41.73317020040845],[-87.59275880820019,41.7331724250856],[-87.59252474678503,41.733174524763356],[-87.59231716687857,41.733177269239306],[-87.59170853275477,41.73318530522858],[-87.59140648822954,41.733189291818306],[-87.59119788174495,41.73319206112373],[-87.59109396273448,41.73319358039214],[-87.59048619050881,41.73320246483675],[-87.59007568396974,41.733208463535895],[-87.5898857317329,41.733210766859926],[-87.58971853280657,41.73321279395175],[-87.58931778000316,41.7332185717735],[-87.58926908200307,41.73321927375092],[-87.58880424980443,41.733225973759836],[-87.58868047070267,41.733227632197085],[-87.58805312571332,41.733236032785705],[-87.58758639228422,41.733242280836436],[-87.58744486992049,41.73324427696614],[-87.58683805640054,41.733252836030886],[-87.58636068251347,41.73325956679313],[-87.58623060276243,41.733261419562176],[-87.58591220744559,41.73326595335613],[-87.58567743319023,41.73326629208405],[-87.58556733719848,41.73328067621369],[-87.5853833046406,41.73330471947425],[-87.58513360344126,41.73333606913745],[-87.58513316561364,41.73296529392485],[-87.5851176960279,41.73283346634601],[-87.5851108364274,41.73259743851415],[-87.58510168974878,41.732192291422436],[-87.58509801307021,41.7320103197492],[-87.58509350662746,41.731757759018365],[-87.58509720028856,41.73145416661914],[-87.58510066508644,41.73116934324593],[-87.58507081834469,41.73072328080488],[-87.58506434712211,41.73041593078606],[-87.58505741336326,41.730107370241974],[-87.58504977028525,41.72973416885933],[-87.58504771497172,41.72963382347154],[-87.58504554464814,41.729507496393005],[-87.58506341367828,41.72926518033023],[-87.58506153101531,41.729204569291916],[-87.58505821304148,41.72909777093244],[-87.58503255388521,41.728881269786946],[-87.5850288483448,41.72872377707723],[-87.58502583158928,41.72859554320754],[-87.5850184138603,41.728268729742254],[-87.58501234496856,41.72796777645807],[-87.58502147054496,41.727816628707146],[-87.58502880788684,41.72769509909098],[-87.58501489761609,41.72747321322227],[-87.5849978175081,41.7273003201109],[-87.58499392174772,41.727105723020415],[-87.58499044413342,41.72691228153211],[-87.5849877101358,41.726760228559215],[-87.58498191015207,41.726521380734795],[-87.58497456121374,41.7261760709332],[-87.58497209606679,41.72598999597945],[-87.58497042152713,41.72586357627338],[-87.58498573954643,41.72562319246646],[-87.58498483972434,41.72560435732777],[-87.58497483494281,41.7253948492372],[-87.58495291253529,41.72513742685241],[-87.584958140859,41.724844697866516],[-87.5849678296677,41.72455273860613],[-87.58498019883172,41.72440232102459],[-87.58500169530708,41.72428604725168],[-87.58515789875185,41.72412453959635],[-87.58514702951771,41.72367852446103],[-87.58514577131567,41.72349964190256],[-87.58514431460323,41.72332315630191],[-87.58531076815422,41.7233204695883],[-87.58547621404611,41.723307824918905],[-87.58567981283072,41.72328239277155],[-87.58585802292123,41.723274633151874],[-87.58622759010194,41.723270518583575],[-87.58652023278609,41.72326624648741],[-87.58680373019665,41.7232608851134],[-87.58713026621477,41.72325580198986]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5727158.68221","perimeter":"0.0","tract_cent":"1186978.38550888","census_t_1":"17031430400","tract_numa":"27","tract_comm":"43","objectid":"68","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856789.26685866","census_tra":"430400","tract_ce_3":"41.76213719","tract_crea":"","tract_ce_2":"-87.59025821","shape_len":"10077.1616035"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5901491732226,41.76598133600495],[-87.58957544218039,41.76593341267213],[-87.58944297721942,41.76593581225412],[-87.5892305865581,41.76593965951606],[-87.58881374778683,41.76594519160847],[-87.58855575143191,41.76594958813736],[-87.5883021542334,41.76595390888029],[-87.58807591845482,41.76595681898054],[-87.58789778417682,41.765958641977974],[-87.58779363639047,41.765959707712526],[-87.58742547399642,41.765962257751774],[-87.58718990615192,41.76596385659037],[-87.58712228864565,41.76596441689964],[-87.58679068759079,41.7659671633991],[-87.58632473212407,41.76597208929188],[-87.58631982839962,41.76580748594797],[-87.586315216151,41.76556046950435],[-87.58631135106866,41.76543228584212],[-87.58630348058627,41.76514305302707],[-87.58630050577116,41.76503374408801],[-87.58629491068385,41.76482725417345],[-87.58628087606441,41.764233322563705],[-87.58627682395543,41.76406183515491],[-87.58625721904701,41.763396792473955],[-87.58625356187716,41.763321700972284],[-87.58624588128237,41.76316397508442],[-87.5862454603058,41.7631385239494],[-87.58623461642671,41.76248252075755],[-87.58623219106452,41.76241006766087],[-87.58622856162798,41.76230162627492],[-87.58622097888507,41.762075096289166],[-87.58621281224346,41.761704837690196],[-87.58620793260208,41.76150198740115],[-87.58619847000303,41.76110860101512],[-87.58618489233147,41.760588875017724],[-87.58617516931703,41.760216690407596],[-87.58616455378886,41.75974789551077],[-87.58616264189868,41.75967728878786],[-87.58615896503935,41.75954151521676],[-87.58614066435008,41.75886572311551],[-87.58613636664421,41.75876442319062],[-87.5864771225931,41.75876176135286],[-87.58679243481026,41.75875864146024],[-87.58685042460236,41.75875806790101],[-87.58704671294383,41.75875618905403],[-87.5872979165425,41.75875378417939],[-87.58774697259157,41.75875052452919],[-87.58819494026704,41.758746295560734],[-87.58836764209057,41.75874521512516],[-87.58892700331378,41.75874127138451],[-87.58922256131672,41.75873808159333],[-87.58958551327746,41.75873541378006],[-87.58980020259402,41.758733835408115],[-87.59019176663045,41.75872934970016],[-87.59026713181967,41.75872848613487],[-87.59057869900305,41.75872597269578],[-87.59079961233483,41.75872376720087],[-87.59088562253234,41.7587229083593],[-87.59099917733653,41.75872177461796],[-87.59137170981232,41.758718061226375],[-87.59170052621903,41.75871672641354],[-87.59201274869761,41.758713761329],[-87.59236981995723,41.758710369481136],[-87.59262384310372,41.758707907750114],[-87.59275917605682,41.75870659543039],[-87.59322885078615,41.75870064203222],[-87.59335770961424,41.758699008207294],[-87.59370869567061,41.758698057417526],[-87.59386287095057,41.75869637853103],[-87.59447370887476,41.7586897247491],[-87.59483265556653,41.758696352072384],[-87.59492296160626,41.758698019248065],[-87.59522619262185,41.758697091968294],[-87.5952930033911,41.75869688750792],[-87.59537967522238,41.758696622594385],[-87.59535603625332,41.758800351213296],[-87.59521342754155,41.75949099812217],[-87.59514644894352,41.75981851106402],[-87.59506736075721,41.76020323388622],[-87.59486409340761,41.76110891768277],[-87.59458211125165,41.76234629410265],[-87.59451772606111,41.7623467253264],[-87.59442012610342,41.76234737951621],[-87.59426970935552,41.76234838735945],[-87.59412251580852,41.76234937320748],[-87.59368235308737,41.76235164471591],[-87.59332411468361,41.762354440596766],[-87.59332807405542,41.762560893687585],[-87.5933347448447,41.76281346428811],[-87.59334330406914,41.76308559136545],[-87.59334758291779,41.76326638375638],[-87.59335270527862,41.76348283381483],[-87.59336042630966,41.76372149975655],[-87.59336940614182,41.76400718412193],[-87.5933717870552,41.764107750432935],[-87.59337356923396,41.764176813317434],[-87.59337816616664,41.764354942737334],[-87.59338226941657,41.76461990340438],[-87.59338260212782,41.764635959672624],[-87.59338580707478,41.764790566445875],[-87.59338972064882,41.76490930984588],[-87.59338957871586,41.76502374602405],[-87.59338530124259,41.76505467411955],[-87.59337728538452,41.76506642296003],[-87.59337657175934,41.765066992744714],[-87.59333077678116,41.765624307987224],[-87.59329946094212,41.76600540676925],[-87.59328515630907,41.766005448549095],[-87.59292270296261,41.76600879394043],[-87.59275096136832,41.766009377490114],[-87.59252959151745,41.76601012927365],[-87.59248520509207,41.76601038752806],[-87.59228180402607,41.76601157084556],[-87.5921201936203,41.76601251079271],[-87.5917029487662,41.76601508718553],[-87.59099355391568,41.766015309303626],[-87.59040643967018,41.7660136789218],[-87.5902376220041,41.765987808356286],[-87.5901491732226,41.76598133600495]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7168783.99856","perimeter":"0.0","tract_cent":"1179187.69255594","census_t_1":"17031440600","tract_numa":"33","tract_comm":"44","objectid":"62","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1845987.25469229","census_tra":"440600","tract_ce_3":"41.73267635","tract_crea":"","tract_ce_2":"-87.61914043","shape_len":"11340.7221287"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61435120307145,41.729611699330064],[-87.61434798300981,41.72948651106765],[-87.61433916471168,41.72919788094364],[-87.61433488543484,41.72905782229517],[-87.61433106885214,41.72890071392473],[-87.61432678706839,41.72874327304699],[-87.61432537902013,41.7286914793179],[-87.61432089359471,41.72854504213134],[-87.61431241348401,41.72828392252535],[-87.61430839071916,41.7281600621237],[-87.61430739502887,41.72812940767314],[-87.61430739478801,41.728129396419945],[-87.61430598206866,41.72808590832121],[-87.61430280919139,41.727959127794996],[-87.61430144596015,41.72790453294369],[-87.6143010554578,41.727888893400454],[-87.61462462494903,41.72804425267036],[-87.61497281330402,41.72819393684209],[-87.6153210945916,41.72833538732289],[-87.61570170946656,41.72849316207901],[-87.61611556548148,41.728626787005936],[-87.6163660404591,41.72871033679101],[-87.61696489610829,41.728927098929475],[-87.61734633793719,41.729052284393084],[-87.61791304931033,41.72919508814118],[-87.61813799279186,41.729268869724706],[-87.61821337588138,41.72929357996991],[-87.61852309079467,41.72939510315542],[-87.61893741118486,41.72948789914447],[-87.61919005725214,41.72954124467407],[-87.6191901610543,41.72954126645041],[-87.61918432281894,41.72937281440027],[-87.61917672453735,41.72911946704602],[-87.61967870019886,41.72911226719963],[-87.61998341080194,41.72910719505093],[-87.62055765571037,41.72909763448835],[-87.62078787180039,41.72909407453498],[-87.62157349082248,41.72908192198986],[-87.62159540151795,41.72908157196607],[-87.62198046513599,41.72907542218719],[-87.62215121301423,41.72907269471353],[-87.62240458562718,41.729068646667],[-87.62258757199376,41.729065723126496],[-87.62285992173844,41.729061671804956],[-87.62314064622636,41.72905578378618],[-87.62332459532313,41.72905192536898],[-87.62351017575752,41.729048032276864],[-87.62361583413075,41.72904581574865],[-87.62377718992364,41.72904404516443],[-87.62393809541032,41.72904227980644],[-87.62394718870054,41.729296167408314],[-87.62397059153335,41.729499885076734],[-87.6239960532391,41.729643075886244],[-87.62403869529118,41.729997355559256],[-87.62404367689035,41.730019707457515],[-87.62404444352535,41.73004922673154],[-87.62404528862484,41.73008177072309],[-87.62404528888551,41.7300817803298],[-87.62404569322652,41.73009734308253],[-87.62404781933755,41.73017922044591],[-87.62404942616433,41.730241097615014],[-87.6240511619251,41.73030793921872],[-87.62405162772424,41.730325874809004],[-87.62405280277731,41.73040771995302],[-87.6240533055401,41.7304427103056],[-87.62405413790026,41.73050069098073],[-87.62405443344143,41.73052124880841],[-87.62405491152508,41.73055455290196],[-87.62405702121286,41.73070146735907],[-87.62405188569693,41.73078248702402],[-87.62404229045487,41.730933878470566],[-87.62403243019037,41.73108944127851],[-87.6240106520271,41.73143303449052],[-87.62400690748652,41.73166679937183],[-87.6240101733236,41.73176352883406],[-87.62401401684274,41.731877381979984],[-87.62401812634101,41.73199909510424],[-87.62402374032978,41.732248066338435],[-87.62403340113676,41.73261779526507],[-87.62403527683269,41.73268956813678],[-87.62405743692888,41.73353766191733],[-87.62405873439887,41.73366615860075],[-87.62410815269742,41.73408960904273],[-87.62413052978167,41.734362741655666],[-87.62411916006306,41.73452991969033],[-87.62413334008478,41.73509714627977],[-87.62414750444228,41.73557139574146],[-87.62416057014825,41.73629942645487],[-87.62394047073079,41.7363045284518],[-87.62355260354452,41.73632373800589],[-87.62338004602212,41.73633264833407],[-87.62304459795098,41.7363576889747],[-87.62287154366378,41.73636847449727],[-87.62260422273717,41.736375329199625],[-87.62181868403914,41.73639546766469],[-87.62143215719945,41.736400894785305],[-87.62133890010041,41.73640206946868],[-87.62099263901263,41.736406430361455],[-87.62062895807298,41.736411009557685],[-87.62013286176258,41.73642143307363],[-87.61937459890001,41.73643093541782],[-87.61876816695803,41.73643853123116],[-87.61850534758568,41.736442604644644],[-87.61775865271434,41.736455103328396],[-87.61764789322753,41.73645695692462],[-87.61722062132453,41.73646410625381],[-87.6168549792011,41.736469483474764],[-87.61613798041587,41.73648039192656],[-87.61612207679883,41.73648063377587],[-87.61559108889114,41.736488709232475],[-87.61512248776386,41.73649428848868],[-87.61452795921615,41.736503028008],[-87.61451966584498,41.73626117691549],[-87.6145134363049,41.7360572499928],[-87.61451316374539,41.736048342727635],[-87.6145122036344,41.73601691409838],[-87.61450115392806,41.73559968185774],[-87.61449727562483,41.735453249197555],[-87.61449080977259,41.735134923917826],[-87.6144893673325,41.735063919585116],[-87.61448150183611,41.73467670470526],[-87.61447563270123,41.734387772487615],[-87.61446898306282,41.73422334832035],[-87.61446414504766,41.73410371934167],[-87.61445541656464,41.733763028790186],[-87.6144479862577,41.73347303047343],[-87.61444338623981,41.73330784987197],[-87.61443754768891,41.73309820202754],[-87.61443127090362,41.73284926634143],[-87.61442131542634,41.732454422221416],[-87.61441978184811,41.732394392336154],[-87.6144108071508,41.7320431213684],[-87.61440828862683,41.73193572974587],[-87.61440094988346,41.731622795497955],[-87.61439775306074,41.731488085211375],[-87.61439454418039,41.7313528800467],[-87.61438683705404,41.731023642521464],[-87.61438057341283,41.730756041934896],[-87.61436803059777,41.73028742698178],[-87.61436375221989,41.730111105841544],[-87.61435953265796,41.729937199510246],[-87.61435713424925,41.72984201173538],[-87.61435120307145,41.729611699330064]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6458660.58401","perimeter":"0.0","tract_cent":"1198846.74041183","census_t_1":"17031460200","tract_numa":"31","tract_comm":"46","objectid":"63","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1849332.8206845","census_tra":"460200","tract_ce_3":"41.74138663","tract_crea":"","tract_ce_2":"-87.54700986","shape_len":"11049.1695305"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.54445945821571,41.739279273670995],[-87.54475697475411,41.73927533750432],[-87.54489707163,41.73927492266239],[-87.54522455215127,41.73928208714917],[-87.54536022889285,41.739280520650624],[-87.54535748387951,41.73915070670438],[-87.54535404260442,41.73898790255026],[-87.545344449522,41.738558737453225],[-87.54533479237939,41.73808692512787],[-87.5453117825699,41.73747852416454],[-87.54559078889898,41.73745477370345],[-87.54583641553646,41.737452128563255],[-87.54657915771766,41.7374441269464],[-87.54670572612979,41.737442762955666],[-87.54694534909441,41.737439655561126],[-87.54737268459024,41.73743440530558],[-87.5474962683774,41.73743288665464],[-87.54802185515598,41.737427314120374],[-87.54808496264619,41.73742624813277],[-87.54818018421541,41.7374246391938],[-87.54818023625238,41.737424638451664],[-87.54868391791008,41.73741612800631],[-87.54885253005224,41.7374132786811],[-87.54913218382785,41.73740855194646],[-87.54935172254037,41.737405908396774],[-87.54963256790879,41.737402525873954],[-87.55003834149436,41.737397119455906],[-87.55007093566763,41.73739668521365],[-87.5502072030938,41.73739486947339],[-87.55065713420983,41.73738887239645],[-87.55073262371688,41.73738785170027],[-87.55080466818994,41.7373868774719],[-87.55095945868499,41.737384784125226],[-87.55143060175693,41.73737838700096],[-87.55143868809668,41.73774837346664],[-87.55144003597911,41.73784262205549],[-87.55144164275058,41.73793676263237],[-87.55144858121054,41.73836755585624],[-87.55145081162188,41.738488759507604],[-87.55145327861418,41.7386236862869],[-87.55145532451878,41.738744998449505],[-87.55146496836913,41.73919991489015],[-87.55146958738082,41.73941777927688],[-87.55147266320093,41.739593106327305],[-87.55147638954665,41.73980850463111],[-87.55148413905331,41.74025401297475],[-87.55148760165531,41.74047001293152],[-87.55149204596935,41.74075306316026],[-87.55149648094613,41.74101891229495],[-87.55150326866374,41.741425795623094],[-87.55150494961508,41.741546995471424],[-87.55150715494564,41.74168235921276],[-87.55151802734838,41.74194810967852],[-87.55151808920654,41.74208283422207],[-87.55154222602218,41.74253983588787],[-87.55156951061461,41.74270108463335],[-87.55161362843737,41.742890073138874],[-87.55161973911606,41.74291625034892],[-87.55169738233086,41.74323312469628],[-87.55170055065587,41.743249574190365],[-87.5517053595297,41.74327079291539],[-87.55173417882573,41.74346698673141],[-87.55174398061703,41.743533712774465],[-87.55174712849345,41.7437062135549],[-87.55177029465389,41.743953330848264],[-87.55178680487751,41.743978686612515],[-87.55179594312773,41.74399272138334],[-87.55191213796115,41.744059280247214],[-87.55194139586159,41.74407603971544],[-87.55212646598349,41.744177026106996],[-87.55275182219918,41.7445491781937],[-87.55276094205554,41.74463996346243],[-87.55211960652727,41.74464914256811],[-87.55190494826823,41.74465221424375],[-87.55159205076943,41.744656689652764],[-87.55149675891123,41.74465805256132],[-87.55141757027191,41.74465918496118],[-87.5509369885257,41.744666058833175],[-87.5507704148269,41.744668440969754],[-87.55032449574166,41.74467415068844],[-87.54958972354073,41.74468355512784],[-87.54911975646591,41.74469071965807],[-87.54859114878518,41.74469877597981],[-87.54850671151303,41.744699614481625],[-87.54790651644686,41.74470557185071],[-87.54735647882828,41.74471102862785],[-87.54729054793195,41.74471175078359],[-87.5466854034873,41.74471837649079],[-87.54607527734126,41.74472505379162],[-87.54595449287369,41.74472637519181],[-87.54547632591544,41.74473427709329],[-87.54486687549888,41.74474434593717],[-87.54478309177043,41.74474572983275],[-87.54426839302423,41.74475235207986],[-87.54388602615306,41.74475727041075],[-87.54365201714619,41.74476136250266],[-87.54350184603611,41.74476398816356],[-87.54339706268985,41.74476491329025],[-87.54304461350328,41.74476802430553],[-87.54293639371016,41.74476897943798],[-87.54274261915185,41.74477068941858],[-87.54267526098907,41.74477128356946],[-87.54245503729696,41.74477390246165],[-87.54217097191095,41.74477728005573],[-87.54195159151243,41.74477988567715],[-87.5418966720145,41.74477316805775],[-87.54185899192292,41.74473822054395],[-87.54185088664057,41.744643321683654],[-87.54184716447216,41.74448393450778],[-87.54184096725717,41.74421876492768],[-87.54183701993271,41.74404787756848],[-87.54183134272142,41.743806010665416],[-87.54182573949228,41.74356408937575],[-87.5418219811078,41.7434046742029],[-87.54181844304969,41.74325118878286],[-87.5418169912548,41.74318191261884],[-87.541812685961,41.74296028035668],[-87.54180762084859,41.74271817091171],[-87.5418054847265,41.74263253399008],[-87.5417971807193,41.74229726034677],[-87.54179533503232,41.742211844963784],[-87.5417866161237,41.74180892139655],[-87.54178102236257,41.74155133012337],[-87.54177544109976,41.74129272353295],[-87.54177391859665,41.7412259573458],[-87.5417720508537,41.7411440416035],[-87.54176610612562,41.74088331910352],[-87.5417611176669,41.74060923870125],[-87.54175598300242,41.740326210577905],[-87.54174978850973,41.74003400971695],[-87.54174484401774,41.73978621999838],[-87.54174254276886,41.739666332995384],[-87.54173535892023,41.73933535898571],[-87.54184957055416,41.7393231268156],[-87.54196806305052,41.73931738410565],[-87.54205640315142,41.7393173887646],[-87.54225467830118,41.73931326544855],[-87.54236469460689,41.73931156176412],[-87.54266439687447,41.73930691964676],[-87.54280967124522,41.739304343694315],[-87.5429482026626,41.73930188720434],[-87.54316838602456,41.73929798244509],[-87.54355227134967,41.73929173354124],[-87.54390324693699,41.73928601906741],[-87.54415474766986,41.73928296947557],[-87.54445945821571,41.739279273670995]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7164591.02839","perimeter":"0.0","tract_cent":"1189521.82314126","census_t_1":"17031431100","tract_numa":"30","tract_comm":"43","objectid":"64","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854282.28150589","census_tra":"431100","tract_ce_3":"41.75519714","tract_crea":"","tract_ce_2":"-87.58101668","shape_len":"10712.623655"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58453754213946,41.75149858950602],[-87.58565529833413,41.75150194330311],[-87.58582440079186,41.75150555931452],[-87.58582075287006,41.7516715174641],[-87.58581324221099,41.752013192455195],[-87.58583361637321,41.752357624921586],[-87.58586935836043,41.75317486300298],[-87.58586863509858,41.75331263202542],[-87.58587814162074,41.75391826858303],[-87.58589375879505,41.75467280549452],[-87.58590396225384,41.75499368042822],[-87.58591140359646,41.75511440636324],[-87.58593323314645,41.75546857965665],[-87.58607118956542,41.756025841285414],[-87.58608857204106,41.756944668829526],[-87.58609607370742,41.757199918944394],[-87.58611860183565,41.757734791886136],[-87.58612210898961,41.75785463100472],[-87.58612234584658,41.75812574142549],[-87.58612552589788,41.758338170728685],[-87.58613246134323,41.75867236147375],[-87.58613636664421,41.75876442319062],[-87.58584892265388,41.758766667963144],[-87.5857384418793,41.75876753038564],[-87.58552999650304,41.758769157449386],[-87.5850999278889,41.758775356795624],[-87.5847657736436,41.75878185429616],[-87.58458800266469,41.758782754126436],[-87.58425386757806,41.75878444527294],[-87.5839553474077,41.75878699921366],[-87.58348535457141,41.75879258028377],[-87.5831633438576,41.75879640286663],[-87.58285077745582,41.758799630625866],[-87.58244686162975,41.75880415411067],[-87.58226236503059,41.75880668589525],[-87.58197005810489,41.75881069656519],[-87.58155064610894,41.75881453952822],[-87.58132758978043,41.758817196205335],[-87.58104245853835,41.758821728989616],[-87.58087273232667,41.75882442688162],[-87.58042131819329,41.758828647520346],[-87.58010300127242,41.75883162264907],[-87.57984266352506,41.75883487726212],[-87.57981484052056,41.75883522525997],[-87.57952129154022,41.758838894432174],[-87.57920278203454,41.75884259633443],[-87.57853618211197,41.75885034652735],[-87.57797724192875,41.758856832230414],[-87.5773627050161,41.75886311241864],[-87.57735798995189,41.758863160704166],[-87.57681422034176,41.758868714750136],[-87.57614198394997,41.75887640542735],[-87.57613247063071,41.758425575286594],[-87.57611874668069,41.75777519627364],[-87.57610550163531,41.75713450771249],[-87.57610281065736,41.75705937718908],[-87.57608280903682,41.7560309310154],[-87.57606584660375,41.75524181682058],[-87.5760455642479,41.75429826499436],[-87.57602609180113,41.75342399159278],[-87.57601116527732,41.75275382125558],[-87.5760079043599,41.75260654093426],[-87.5760023557989,41.75235594955004],[-87.57599237085978,41.75199326516279],[-87.5759817140993,41.751606120770454],[-87.57664056743285,41.75159872119109],[-87.57720525082917,41.751591483551586],[-87.5777382512958,41.75158464950335],[-87.57842562924259,41.7515758671374],[-87.5788515186074,41.75157042761238],[-87.57930670462218,41.75156461235575],[-87.57964907887855,41.7515603147115],[-87.58005233384233,41.75155525163067],[-87.58039495727327,41.75155094845722],[-87.58051331625254,41.75154946191129],[-87.5808666502417,41.75154496789806],[-87.58118553010092,41.75154091164718],[-87.58167876571832,41.751534904120334],[-87.58208751543357,41.75152992417927],[-87.58247826975324,41.75152516218239],[-87.58289208223444,41.751519770083064],[-87.58330802064928,41.751514339601435],[-87.58387181717845,41.75150698244376],[-87.5844067649406,41.75150023745774],[-87.58453754213946,41.75149858950602]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1757883.78489","perimeter":"0.0","tract_cent":"1167045.52169984","census_t_1":"17031062300","tract_numa":"11","tract_comm":"6","objectid":"191","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922035.51744172","census_tra":"062300","tract_ce_3":"41.9416281","tract_crea":"","tract_ce_2":"-87.66144337","shape_len":"5302.86527487"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66329306435844,41.939773617678995],[-87.6638209258618,41.93976488119715],[-87.66382723818312,41.93995521764197],[-87.66383290373916,41.94021926188958],[-87.66384223775701,41.940670178746565],[-87.6638469320281,41.94089753179041],[-87.66385918829805,41.94132114558963],[-87.66386628901812,41.94158750657661],[-87.66387365429813,41.94186378888516],[-87.66387959590833,41.94212504543282],[-87.6638916117256,41.942504599631086],[-87.66389970930948,41.94276036629339],[-87.66390338583817,41.94291710987216],[-87.66390408107405,41.94294675145182],[-87.66390720453431,41.943045259551965],[-87.66391735367066,41.94341810664464],[-87.66336674155264,41.94342681861588],[-87.66329102370952,41.94342809902713],[-87.66256080694419,41.94344044430696],[-87.6621076655872,41.94344725150183],[-87.66173885927837,41.94345279066092],[-87.66149458868593,41.94345744959613],[-87.66097143500362,41.943467426272896],[-87.66088276359356,41.943468622925515],[-87.65981010883205,41.94348309464917],[-87.65974481870022,41.943483973961854],[-87.65957879940856,41.94348621056979],[-87.65942910249869,41.94348824088031],[-87.65928050844182,41.94349022258602],[-87.65907261489046,41.943493470564675],[-87.65906838954679,41.94336049293213],[-87.65906581986216,41.943255484179055],[-87.65906423527427,41.943189966620665],[-87.6590620820598,41.943100935483464],[-87.65906093662745,41.94305946366786],[-87.65905608345632,41.942888744989695],[-87.65905129502588,41.942715337355665],[-87.65903977755936,41.942322325530164],[-87.65902556203683,41.941759760192184],[-87.65902221483722,41.94166038895039],[-87.65900859555299,41.941256042072055],[-87.65899769538093,41.94088122792209],[-87.65899333212235,41.94073370068123],[-87.65898441632409,41.94043219616795],[-87.65898029537806,41.94028417610509],[-87.65897663096646,41.9401525147983],[-87.65896858486964,41.93983803823636],[-87.65918691355668,41.93983443265655],[-87.65979184647077,41.93982587138131],[-87.66003534884301,41.9398224244854],[-87.66071766292809,41.939802247135425],[-87.6610840185919,41.93980039827449],[-87.6613997637902,41.939798803654746],[-87.6617646884864,41.9397969601636],[-87.6626401125932,41.93978385570132],[-87.66318755946575,41.93977527221324],[-87.66329306435844,41.939773617678995]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13939421.5741","perimeter":"0.0","tract_cent":"1179044.45233095","census_t_1":"17031440300","tract_numa":"48","tract_comm":"44","objectid":"65","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1850010.8757504","census_tra":"440300","tract_ce_3":"41.74372091","tract_crea":"","tract_ce_2":"-87.61954292","shape_len":"15917.1980064"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61495411737091,41.75096945170199],[-87.61495556707531,41.75073090015762],[-87.61495521661087,41.750661657554595],[-87.61495433877614,41.750523229144775],[-87.61495615876287,41.75048394237803],[-87.61494610994409,41.75015922820556],[-87.61493620010279,41.74982205629452],[-87.61492323821422,41.749403688504614],[-87.61492033180559,41.74929082099788],[-87.61491692190151,41.74915836314715],[-87.61490928681155,41.748880097886655],[-87.6149028777708,41.74863655544987],[-87.61489451137226,41.74832203360777],[-87.61488651393043,41.74802043945401],[-87.61487800507486,41.74771870487105],[-87.6148708081963,41.747463047116355],[-87.61486619311543,41.74729910917819],[-87.61485500491563,41.7469156049628],[-87.61484435828515,41.746555842345856],[-87.61483504064425,41.746195209838916],[-87.6148260225881,41.74584712065769],[-87.6148193474201,41.74563780697065],[-87.61481529818711,41.74551082129788],[-87.61480992912432,41.74520688360244],[-87.61479958184225,41.74484660078157],[-87.61478861357858,41.74448615021912],[-87.61477908462143,41.744197060318584],[-87.61477206695857,41.74401473961892],[-87.61474663511784,41.74381230242343],[-87.61473120865556,41.74368950334472],[-87.61471573708157,41.74346017467048],[-87.61470200387858,41.7429402896759],[-87.61469112631323,41.742545480558654],[-87.61468480558712,41.742330232478345],[-87.61467462378917,41.74198434027933],[-87.61466126006579,41.741530339223],[-87.61463838028345,41.74059191736365],[-87.61462473372694,41.74015536520615],[-87.61461574825024,41.73986790969532],[-87.61460893388835,41.73958849649864],[-87.6146018223181,41.73929637528138],[-87.61459489543525,41.73901723578362],[-87.61458864668568,41.73877586220081],[-87.61457584905115,41.73833088387267],[-87.61456240200133,41.737863325114155],[-87.61455339109524,41.737495091957925],[-87.61454408565456,41.73711384945764],[-87.61454037589448,41.73696132524962],[-87.61453642532682,41.736799084126424],[-87.61453232881152,41.73663044811857],[-87.61452795921615,41.736503028008],[-87.61512248776386,41.73649428848868],[-87.61559108889114,41.736488709232475],[-87.61612207679883,41.73648063377587],[-87.61613798041587,41.73648039192656],[-87.6168549792011,41.736469483474764],[-87.61722062132453,41.73646410625381],[-87.61764789322753,41.73645695692462],[-87.61775865271434,41.736455103328396],[-87.61850534758568,41.736442604644644],[-87.61876816695803,41.73643853123116],[-87.61937459890001,41.73643093541782],[-87.62013286176258,41.73642143307363],[-87.62062895807298,41.736411009557685],[-87.62099263901263,41.736406430361455],[-87.62133890010041,41.73640206946868],[-87.62143215719945,41.736400894785305],[-87.62181868403914,41.73639546766469],[-87.62260422273717,41.736375329199625],[-87.62287154366378,41.73636847449727],[-87.62304459795098,41.7363576889747],[-87.62338004602212,41.73633264833407],[-87.62355260354452,41.73632373800589],[-87.62394047073079,41.7363045284518],[-87.62416057014825,41.73629942645487],[-87.62416926487289,41.73678391154123],[-87.62417066566664,41.73683366108373],[-87.62417058018814,41.73685894910013],[-87.62418128930541,41.737209628253815],[-87.62418358972566,41.7374416107399],[-87.6241909757621,41.73818641588229],[-87.62419407353026,41.738498791757635],[-87.62420548115588,41.73889730843179],[-87.62421920384013,41.739381818566706],[-87.62422835059417,41.739805980512784],[-87.62423450785762,41.740006133506014],[-87.62424511085307,41.74035082921781],[-87.6242509486868,41.740576227857915],[-87.6242683809351,41.74121652767273],[-87.62427712956888,41.741537061956635],[-87.62428138812628,41.74171098432797],[-87.62428429635682,41.741829758904835],[-87.6242960155072,41.74230838388041],[-87.62430483756674,41.74262889111252],[-87.62431426776642,41.743000775511916],[-87.62431932722426,41.743197902604855],[-87.62431960269771,41.74320863482032],[-87.62432985755407,41.74358587566908],[-87.62433174507684,41.743655318009104],[-87.62433280676143,41.743720721669966],[-87.62433599804278,41.74384335699573],[-87.62434753591718,41.74419351941169],[-87.62437016326311,41.7445682020035],[-87.62437766879859,41.74523162950176],[-87.62437927407521,41.74534392159804],[-87.62438118640924,41.74547773314232],[-87.62438255561747,41.74557354531692],[-87.62439228993567,41.745937829672116],[-87.6244043830468,41.746360746928204],[-87.62441923878362,41.746862387879546],[-87.62442730995423,41.74715799937087],[-87.62442902945176,41.74723436835459],[-87.62443053942157,41.747301436691686],[-87.62443681253731,41.7475800223745],[-87.62444950221867,41.748012109166595],[-87.6244590261134,41.74843547694765],[-87.62446995696553,41.748834291851935],[-87.6244795405467,41.749122338290846],[-87.62448361685504,41.74924484174442],[-87.6244968400483,41.74945192619796],[-87.6245291686095,41.750204202175055],[-87.62453660818308,41.7505827421788],[-87.62453827310208,41.750685773885344],[-87.62454055097582,41.75086180757316],[-87.62454557750216,41.75096011291615],[-87.62385000451967,41.75097541334349],[-87.62381314026084,41.75097515935445],[-87.62349308813967,41.75097295524693],[-87.62319936440903,41.7509759767672],[-87.62299649016043,41.75097955759881],[-87.62271457453917,41.750984532925315],[-87.6222732544823,41.75099247789252],[-87.62219298203597,41.75099391416545],[-87.62190630742923,41.750999043018716],[-87.62162740314425,41.75100406670582],[-87.62156672877619,41.75100487968222],[-87.62138555564057,41.7510073069457],[-87.62106856108811,41.7510115534396],[-87.62073182078466,41.7510171769045],[-87.62034834675143,41.75102363454952],[-87.62009924596057,41.751027796633],[-87.6197687879933,41.751034108868616],[-87.6194964189201,41.7510393112214],[-87.61914226554444,41.75104545302882],[-87.6187032211149,41.75105304166607],[-87.61840874064005,41.75105812503968],[-87.61815351251407,41.75106288502278],[-87.61797181537206,41.75106627320268],[-87.61752889224262,41.751073339227354],[-87.6172045801628,41.75107850836237],[-87.61688074411956,41.751083706993214],[-87.6165382152809,41.75109026452934],[-87.61629364039547,41.751094945784416],[-87.61595936275974,41.75109987330047],[-87.61572972960677,41.75110327175008],[-87.61534332942766,41.7511123928837],[-87.61495839313913,41.75111405846441],[-87.61495411737091,41.75096945170199]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3741634.90545","perimeter":"0.0","tract_cent":"1183386.24560837","census_t_1":"17031420800","tract_numa":"16","tract_comm":"42","objectid":"66","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1862142.19829748","census_tra":"420800","tract_ce_3":"41.77691054","tract_crea":"","tract_ce_2":"-87.60325716","shape_len":"8289.48053874"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60539113322253,41.77314602574239],[-87.60576875390609,41.77314086168505],[-87.60577463640972,41.77337266370661],[-87.60578499624805,41.77363025364024],[-87.6057881964791,41.773924461955055],[-87.60579409713873,41.774271707063605],[-87.60579853022101,41.774534748005934],[-87.60580438287897,41.77477916418995],[-87.60580897246894,41.77496004340217],[-87.60581602474018,41.775238001026224],[-87.60581987371216,41.7754488967021],[-87.60582644015265,41.77575349965938],[-87.60583245997842,41.776051293298764],[-87.6058377444042,41.77632660652833],[-87.60584277517101,41.77652370614256],[-87.60584929893135,41.776777599231515],[-87.60585637205811,41.77705289109569],[-87.60586059988282,41.77727572676468],[-87.60586593948585,41.77755587023467],[-87.60587051414382,41.77775447600302],[-87.60587448536279,41.777909059539134],[-87.60587862107201,41.778068748491016],[-87.60588279391602,41.77823151127769],[-87.60588581477793,41.77837620934148],[-87.60589034375148,41.778594339037724],[-87.60589421916664,41.778780990335235],[-87.60589983506188,41.779013961152806],[-87.60590409571563,41.7791949465471],[-87.60590944039534,41.779435764296494],[-87.6059138400531,41.7796238857083],[-87.60591715290631,41.779804425995756],[-87.60592023453046,41.77995793329645],[-87.60592193862051,41.780042770320534],[-87.60592447323502,41.78016562072336],[-87.60592835248856,41.78033815619766],[-87.60592997016487,41.780410105216326],[-87.60560563606573,41.78041610345399],[-87.6053739964796,41.78041910907747],[-87.60508093477033,41.78042290465757],[-87.60505950599732,41.78042314725337],[-87.60483851853547,41.78042564906041],[-87.6046479466166,41.78042825664921],[-87.60453702143437,41.78042977423643],[-87.60430710319162,41.780432871231284],[-87.6039996662917,41.78043701218928],[-87.6036738608169,41.78044114515733],[-87.6034874097407,41.78044240320283],[-87.60318439454177,41.780444594182086],[-87.60288866263224,41.78044788200765],[-87.60274954615623,41.780449428282736],[-87.60268203530451,41.78045017870275],[-87.60248552812536,41.78045236240151],[-87.60215878149803,41.78045541508668],[-87.60198064449997,41.78045749200211],[-87.60166910873515,41.78046088711324],[-87.60144491802285,41.780463328509775],[-87.60128217873462,41.780465502436236],[-87.60106781561316,41.78046776367339],[-87.60094160318057,41.78046909472372],[-87.60071124609863,41.780472099119855],[-87.60045914515366,41.78047522560042],[-87.60045272987499,41.780217618973374],[-87.60044717506716,41.780012662876565],[-87.60044192644767,41.77980760828471],[-87.60043690642637,41.779604471480354],[-87.60043288761162,41.77942938768411],[-87.6004281546219,41.779213958284686],[-87.60042228853551,41.778946709478284],[-87.60041755528117,41.77873130750186],[-87.60041297629887,41.77854167290426],[-87.60041010591151,41.77842280190951],[-87.60040388842064,41.77816710428111],[-87.60039716837215,41.77787424575953],[-87.60039540062618,41.77779525383823],[-87.6003912254918,41.777608121559105],[-87.60038689123745,41.777422085974436],[-87.60038198134423,41.77722224293502],[-87.60037362172918,41.77683586635097],[-87.60059127697443,41.77683323028697],[-87.60083392510025,41.776831484521175],[-87.60098285972182,41.77683024463811],[-87.60097394238946,41.77641530002022],[-87.60096960928828,41.77622901771247],[-87.6009648248965,41.77602440038945],[-87.60095998740714,41.77583089682145],[-87.60095483272582,41.77562660643841],[-87.60094969389178,41.77543381472572],[-87.60094636548548,41.77528812657217],[-87.60094016184954,41.775011926051135],[-87.60093278694958,41.774683554846305],[-87.60092780367316,41.77443843074158],[-87.60092431891425,41.77426782340433],[-87.60091882530527,41.77399989069534],[-87.60091451461481,41.77378910165726],[-87.60090960969094,41.77354998773725],[-87.60090214351052,41.773187962071965],[-87.60113892808651,41.7731848944765],[-87.60141988034565,41.773182376177225],[-87.60171659833506,41.773179710605426],[-87.60212223934977,41.773176412911674],[-87.60223153264053,41.77317552419922],[-87.60254281251281,41.77317215331583],[-87.60272426425648,41.77317017451087],[-87.60282413787583,41.77316908509683],[-87.60310535293918,41.77316604293064],[-87.60333696619392,41.77316306526938],[-87.60360531825667,41.773159614672316],[-87.60380059126265,41.77315761630074],[-87.60393830103263,41.773156203869284],[-87.60408151113856,41.77315473480211],[-87.60423762709098,41.77315309114446],[-87.6045572906584,41.773150709298896],[-87.60489205931864,41.773148213773716],[-87.60515763570675,41.773147066914525],[-87.60517274027026,41.77314700183492],[-87.60539113322253,41.77314602574239]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3481796.4748","perimeter":"0.0","tract_cent":"1192132.02419852","census_t_1":"17031430600","tract_numa":"14","tract_comm":"43","objectid":"69","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1857644.28121098","census_tra":"430600","tract_ce_3":"41.7643597","tract_crea":"","tract_ce_2":"-87.57134203","shape_len":"8051.33040615"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56648932047848,41.76624629409488],[-87.5665037221695,41.7660384870287],[-87.5665037247902,41.76603845164481],[-87.56650883171072,41.76594453131495],[-87.56650756784724,41.76579283513484],[-87.56650721113348,41.76575002179159],[-87.5665054362135,41.76553698341474],[-87.56649616890972,41.76529322837405],[-87.56649279007122,41.76501981937804],[-87.56649128060504,41.76486033844543],[-87.56648966773257,41.76468488503319],[-87.56648691703269,41.764434944181566],[-87.5664846500704,41.7642289695761],[-87.56647950651613,41.764036011430335],[-87.566477089154,41.76393138283451],[-87.56646993731206,41.76354373109574],[-87.56646290618191,41.763176882157154],[-87.56645042279949,41.76261940531639],[-87.56710326520366,41.76261204275199],[-87.56766476578296,41.76260602335946],[-87.56827081401295,41.76259954978426],[-87.56887777240064,41.762593464366404],[-87.56948369916186,41.76258738617158],[-87.56957241760757,41.762586495989346],[-87.57001429901206,41.76258162570488],[-87.5700883917373,41.762580808920305],[-87.57069256801937,41.76257414684617],[-87.57130166929379,41.76256742726627],[-87.57190729050102,41.762560742590296],[-87.5719085911455,41.76256072815818],[-87.57251385504163,41.76255499018622],[-87.5731159123728,41.76254925223158],[-87.57373437608156,41.762542962610105],[-87.57433974764024,41.76253680326137],[-87.57501620258807,41.76252959644433],[-87.57550324585209,41.76252440541423],[-87.57560240618129,41.76252334810645],[-87.57622140614568,41.762514867740066],[-87.57624157499006,41.76343340953517],[-87.57625428897238,41.76399622729542],[-87.5762571676715,41.76415887312559],[-87.57626110640193,41.764330657299716],[-87.57626574554148,41.764533004343974],[-87.57626981206182,41.76472650384701],[-87.57627459475124,41.76496509680596],[-87.57627668424767,41.76507109519069],[-87.57628242958252,41.76529328360414],[-87.57628734349282,41.76548330341281],[-87.57629020169178,41.76568368282319],[-87.57629106085817,41.765743925994734],[-87.57629357847622,41.765919522459654],[-87.57629757286264,41.76606874885903],[-87.57599885050728,41.76607054690623],[-87.57570136739956,41.76607552859355],[-87.57538914527879,41.766080796475535],[-87.57507954127423,41.76608473882899],[-87.57480428881189,41.76608824303448],[-87.57454689109798,41.76609145560512],[-87.57418812515559,41.766095918838204],[-87.5739346370242,41.76609835947631],[-87.5738521009361,41.76609915420374],[-87.57346137976548,41.76610291488556],[-87.5732933637646,41.7661048131669],[-87.57322697174371,41.76610556303431],[-87.57296213571185,41.766108558183475],[-87.57259451101541,41.76611062982469],[-87.57233960654504,41.76611206550262],[-87.57215241771061,41.76611411860211],[-87.57198238581779,41.76611599694441],[-87.57185583403937,41.76611739482748],[-87.57158880684648,41.766119658496706],[-87.57137577396222,41.76612219678014],[-87.57098206876043,41.76612688589817],[-87.57076404891804,41.766129229963205],[-87.57048136058366,41.766132289154946],[-87.57016086930946,41.76613623185535],[-87.56997213799046,41.76613855326865],[-87.56977960777105,41.76613972121991],[-87.56955562129697,41.76614142425738],[-87.56939951597722,41.766143542295715],[-87.5691862092099,41.766144127072735],[-87.56907794574207,41.766144464036856],[-87.56894984418078,41.76614486265895],[-87.56865501106887,41.766145779430886],[-87.56838165711176,41.76614675887705],[-87.56814749223355,41.766144371558475],[-87.56814961662226,41.76623045247963],[-87.56815177543724,41.76631792443613],[-87.56791876838047,41.76631947528599],[-87.56771559598046,41.766321634209454],[-87.56745828194597,41.76632387094939],[-87.56717637475427,41.76632586078141],[-87.56698015542005,41.76632784687521],[-87.56686421254464,41.76632902022656],[-87.56648436943007,41.76631773229667],[-87.56648932047848,41.76624629409488]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5638897.75994","perimeter":"0.0","tract_cent":"1172817.28665128","census_t_1":"17031283500","tract_numa":"28","tract_comm":"28","objectid":"113","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895832.62964427","census_tra":"283500","tract_ce_3":"41.8695999","tract_crea":"","tract_ce_2":"-87.64100721","shape_len":"9965.22870254"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6354395375024,41.871965383734235],[-87.63525901980934,41.871022325068274],[-87.63517960363016,41.87060743209904],[-87.63507012502086,41.869938871451204],[-87.63505743748442,41.86982561410797],[-87.63497942792402,41.869129231333126],[-87.63497353839027,41.86907665688269],[-87.63496253974051,41.86897847131623],[-87.63481347017085,41.86801812048188],[-87.63473937705216,41.867363953988075],[-87.63473401864785,41.86731465855111],[-87.63531041877978,41.86730876893957],[-87.63538513219635,41.867308005396154],[-87.63613274580851,41.867289788647646],[-87.63669969290032,41.867282045698076],[-87.63714970131772,41.86727589795061],[-87.63733905995842,41.86727361920364],[-87.63746387878702,41.86727211650693],[-87.63750796611808,41.86727158587889],[-87.63765169414337,41.86726985561024],[-87.63786504231133,41.86726728717105],[-87.638381358126,41.86726106931841],[-87.63921798418852,41.86725293012393],[-87.63982284358609,41.867252897353104],[-87.64010830291893,41.86724818277823],[-87.6402931515676,41.86724538757643],[-87.64072181946268,41.86724113135921],[-87.64104618992282,41.86723790954612],[-87.64133668362084,41.86723299174746],[-87.6417663088899,41.867225837550784],[-87.6421878542497,41.867219663312916],[-87.64366116497246,41.86719926497839],[-87.64408874336412,41.867193341726804],[-87.64432016498631,41.86719013485009],[-87.64447627159937,41.86718797167327],[-87.64476699540425,41.8671839422995],[-87.64515609449796,41.8671786411154],[-87.64691834905017,41.86715410132742],[-87.64692272244112,41.8684201550275],[-87.64693529861773,41.868877116440814],[-87.64693944676824,41.86902786994935],[-87.64696115973432,41.869600136695205],[-87.64696360414071,41.86966456321867],[-87.64698324093928,41.8703619909044],[-87.6469842178162,41.87041773956718],[-87.64699525975118,41.871047799383845],[-87.64701489638212,41.87174522689814],[-87.64702301124024,41.871929549721635],[-87.64660085708813,41.87193630470552],[-87.64644468309388,41.87193861250071],[-87.64631394215877,41.87194070395466],[-87.6462971838402,41.871940972253796],[-87.64616273069517,41.871940167825755],[-87.64594130162077,41.87194573650587],[-87.64566493184633,41.87192766752488],[-87.64533837801675,41.871950732099535],[-87.64473756151887,41.871953978647554],[-87.6445570967886,41.87195904850128],[-87.64446713855145,41.87196204023678],[-87.64381337711832,41.87197071822061],[-87.64351752140642,41.871974644340774],[-87.6432585295487,41.871977643843564],[-87.64269747215369,41.87198415046077],[-87.64234704092442,41.87198933866004],[-87.6421463433372,41.87199264494488],[-87.6420379381046,41.8719943975127],[-87.64123367903511,41.87200365891615],[-87.64087654461292,41.87200820645458],[-87.64054912062407,41.87201237475562],[-87.6401953019528,41.87201770417565],[-87.63935235002565,41.87202856135137],[-87.63837638202166,41.87204112423727],[-87.63801412801473,41.87204548836793],[-87.63769450455948,41.872049338181526],[-87.6373605672083,41.8720533591437],[-87.6371642162217,41.872056038437684],[-87.63684333218339,41.87206131018854],[-87.63641662165163,41.87207173885785],[-87.63547253779859,41.872105012330465],[-87.6354395375024,41.871965383734235]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15701085.0678","perimeter":"0.0","tract_cent":"1189503.91661868","census_t_1":"17031421100","tract_numa":"34","tract_comm":"42","objectid":"67","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1862132.37983478","census_tra":"421100","tract_ce_3":"41.77673889","tract_crea":"","tract_ce_2":"-87.58083062","shape_len":"19898.8284177"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.57506753248518,41.781518620269736],[-87.57499725252568,41.781434008338316],[-87.57454704889172,41.78143384524322],[-87.57452847613462,41.78141528014639],[-87.57424718561415,41.781134108991886],[-87.573547038314,41.780733960394905],[-87.57284701956975,41.78063396464922],[-87.57204720959217,41.78083414545719],[-87.57168192681652,41.78070646434873],[-87.57205272750413,41.78058458950082],[-87.57239200209662,41.78047353419574],[-87.5726673938806,41.78038338844597],[-87.57307959792074,41.780250549299026],[-87.57292761096419,41.77989498134293],[-87.57292885993066,41.77988472296045],[-87.57293248392898,41.77985494729171],[-87.57295166846198,41.77982733036082],[-87.57295411669473,41.779823805886984],[-87.57295414695423,41.77982378934712],[-87.57295416135564,41.77982378066072],[-87.572954176487,41.779823772253586],[-87.5729600966072,41.77982041565756],[-87.57297995422853,41.77980915720223],[-87.57298534546895,41.779807151135344],[-87.57302488121857,41.779792440244684],[-87.5733755761613,41.779714078648674],[-87.5734033318295,41.77970756235144],[-87.57369617082189,41.7796388103688],[-87.57377461930584,41.779618764483615],[-87.57312548683225,41.779221196450024],[-87.57312539064928,41.779221207065135],[-87.57301535634228,41.77923309135132],[-87.57292348503796,41.7792511441627],[-87.57283514426948,41.779280747098824],[-87.5727466985637,41.779319130440044],[-87.57274091278543,41.77931971563658],[-87.5726652087198,41.77932737261801],[-87.57258972073444,41.779324128753316],[-87.5724770009834,41.77930691655474],[-87.57239673111923,41.779280655298074],[-87.57237254845951,41.77927274360692],[-87.57228848651746,41.779244722218486],[-87.57223815748894,41.779227945034506],[-87.57216900907481,41.77918467658386],[-87.57212585397748,41.77911358777916],[-87.57209514434685,41.779044227996884],[-87.5720868067307,41.779005204428266],[-87.57209825878017,41.77896685975072],[-87.57208239694349,41.77891883555851],[-87.57207772970071,41.77890470311451],[-87.57201991047422,41.77883351737032],[-87.57193956376022,41.77874516689449],[-87.57193951294919,41.77874509218756],[-87.5719360502575,41.77873996788356],[-87.5718847948566,41.778664122139105],[-87.57182346662346,41.77857974045915],[-87.57177680171245,41.77856725966583],[-87.57175402697067,41.77856116868089],[-87.57172345094979,41.77855344965502],[-87.57167141576966,41.77854031300793],[-87.57158072008436,41.778475499471426],[-87.57156598455182,41.77846496908257],[-87.571471818964,41.77836719689219],[-87.57145134642126,41.77834533597633],[-87.57137768540477,41.778266681097804],[-87.57129427789211,41.778188979377326],[-87.5712536669796,41.7781511470133],[-87.57114269700043,41.77804832335888],[-87.57113319645262,41.77804081535074],[-87.57092766748461,41.77787839731749],[-87.57088535703195,41.777846159847236],[-87.57080122385203,41.777782057203545],[-87.5706617513399,41.7776806901898],[-87.57065946167286,41.77767902814265],[-87.57059316747564,41.777628186986476],[-87.57054828497019,41.77759376624875],[-87.57052383738646,41.77757465379582],[-87.5704087947162,41.77748471507835],[-87.57032525241212,41.77741884621677],[-87.57022818278405,41.77731885827778],[-87.57020118640833,41.77728786033162],[-87.57014933316921,41.777228321048725],[-87.57002957448192,41.77712488988929],[-87.56999309853815,41.777083941516146],[-87.56996662105925,41.77705421784127],[-87.56989836554567,41.776997780544356],[-87.56984359438965,41.776979084994046],[-87.56982487473228,41.776972693456344],[-87.5698114620297,41.7769681138378],[-87.56977754623878,41.77696773035502],[-87.56969342647876,41.77696677989793],[-87.56961477003514,41.776921799851834],[-87.56950199364728,41.77684805176292],[-87.5695019659037,41.77684804169902],[-87.5695019520319,41.77684803666707],[-87.56950193816337,41.776848031360714],[-87.56949576270827,41.776845787187426],[-87.56941584397397,41.776816742922165],[-87.56932730383289,41.776767566254996],[-87.56928982445513,41.77674674938896],[-87.56922624034931,41.776710127699694],[-87.56918859642313,41.77668844635325],[-87.56895815960614,41.77651706914411],[-87.56895615602329,41.776515620002016],[-87.56894452820565,41.77650720878313],[-87.5688927990182,41.77646707214127],[-87.56881267156662,41.77640405178626],[-87.56875938533474,41.776351924260005],[-87.56875211404697,41.776344810973676],[-87.5687417988321,41.776334480882205],[-87.56869222492472,41.776284833894245],[-87.56865920263701,41.776252286665404],[-87.56863217945607,41.776225651860315],[-87.56855872812389,41.7761500512179],[-87.56849975959146,41.77608047543236],[-87.56844054080963,41.776016605793934],[-87.56841890036105,41.77599728956685],[-87.56838202666303,41.775964376596555],[-87.5683475400496,41.77592689545106],[-87.56831289675087,41.775889244477945],[-87.56826335965006,41.775837698225736],[-87.56822721541856,41.7758000880002],[-87.56821607977304,41.775786221047284],[-87.56821117487402,41.7757801130764],[-87.5681313889258,41.775697774180074],[-87.56807042129032,41.77562376655128],[-87.56800955563368,41.7755412237355],[-87.56800613907114,41.77553719376596],[-87.56790991561964,41.77542368124148],[-87.56781919410018,41.77531141168535],[-87.56773793712857,41.775201867088306],[-87.56771009942055,41.77516102247394],[-87.5676932565699,41.775136310427754],[-87.56766742587808,41.775100909301315],[-87.56761999339297,41.775035902338246],[-87.56756853192208,41.774968496611415],[-87.5675176903661,41.7749019026373],[-87.56750599278135,41.77488657629759],[-87.56748960641931,41.774865107170335],[-87.56746202080325,41.77483264989615],[-87.56745854960205,41.774828565483226],[-87.56742976452308,41.774789048207346],[-87.56741233191602,41.774767763919485],[-87.56736985150062,41.77471589768383],[-87.5673660037213,41.77470627443005],[-87.56736337174179,41.77469969034873],[-87.56736290335733,41.77469900087936],[-87.56736065946063,41.77469584974584],[-87.56734833554063,41.77467854140505],[-87.56732359940696,41.77465193196406],[-87.56731311595651,41.77464065466422],[-87.56729919562619,41.774614770200735],[-87.56729848186757,41.77461344351778],[-87.56727195919319,41.77458102127622],[-87.56722784686806,41.774517142234174],[-87.56722561063239,41.77451371809233],[-87.56720149159895,41.77447678982434],[-87.56716271785642,41.7744325677457],[-87.56715566333558,41.774423846002676],[-87.5671352238231,41.7743985744749],[-87.56710097777788,41.77435591964744],[-87.56707508504637,41.774329017855074],[-87.56707165415753,41.77432506213178],[-87.56704908339556,41.77429904117833],[-87.56703359991904,41.77427880333148],[-87.56702662961737,41.774269692453146],[-87.56700497827588,41.77424386121651],[-87.56699638571733,41.77423352214876],[-87.56698571388362,41.77422068041509],[-87.56694813165285,41.77418417793589],[-87.56693854730403,41.77416738426722],[-87.56693523951367,41.774161589041064],[-87.56691516301129,41.774132722681514],[-87.56688552525276,41.77410332490432],[-87.56686192739426,41.774074627417185],[-87.56685519192773,41.774060853353234],[-87.56685096526039,41.774052210008804],[-87.56684822095993,41.774046598839284],[-87.56684482608965,41.774024409747106],[-87.56684417372489,41.77402014488659],[-87.56683477131807,41.77400002113083],[-87.5668336358855,41.77398450832466],[-87.56683257745047,41.77398257312568],[-87.56682592222097,41.77397040555286],[-87.56681339256333,41.77395731430081],[-87.56678976010224,41.77395320511914],[-87.56677217167359,41.77394633653804],[-87.56673025225491,41.773920041243166],[-87.56669054235009,41.77390523098067],[-87.56664018199461,41.77388272160333],[-87.56662821316135,41.773876905889765],[-87.56658463411239,41.77385573101109],[-87.56655465249627,41.77383007955099],[-87.56655034883276,41.77382639708084],[-87.56655033721684,41.773826387398294],[-87.56655032597077,41.7738263774438],[-87.56655030274548,41.773826357529906],[-87.56654950749716,41.77382618042963],[-87.56654763436259,41.77382576369387],[-87.56651620223545,41.77381767779032],[-87.56648585883282,41.77380756809728],[-87.56646982887189,41.77380088633027],[-87.56645682119755,41.773795464330625],[-87.56644818641281,41.773791082790176],[-87.56681082630512,41.77355896339622],[-87.5672762701753,41.773550240609],[-87.56739388626835,41.773549323360385],[-87.56752023098392,41.77354810741852],[-87.5681381684898,41.77354215334565],[-87.5683461298291,41.7735399638585],[-87.56865865882388,41.773536672537695],[-87.5688136777682,41.77353490506775],[-87.56905522766097,41.773532066500884],[-87.56924984701072,41.77352968370741],[-87.56946466374308,41.77352748976418],[-87.56975009495562,41.77352463962295],[-87.56988457986672,41.773523305312544],[-87.56998383069418,41.77352223482622],[-87.57021187781366,41.773519774752735],[-87.57021646786181,41.7735197251088],[-87.570505025373,41.773516070571084],[-87.57076993344425,41.77351266997775],[-87.57101915105467,41.77350932931825],[-87.57134532965821,41.77350496179579],[-87.57161687238383,41.77350159035596],[-87.57185681104149,41.77349861089816],[-87.5720281886978,41.773496151947676],[-87.5722177508178,41.77349359614238],[-87.57228477587371,41.77349269244585],[-87.57258030159157,41.77348874954012],[-87.57282722157927,41.77348748555665],[-87.57317173512043,41.77348572136786],[-87.5734356091938,41.773483030081785],[-87.57344429827704,41.77348294155864],[-87.57377171132697,41.77347953581211],[-87.57404772674472,41.77347619286192],[-87.57447824952595,41.77347097744775],[-87.57465920006099,41.77346811127433],[-87.57475911674621,41.77346652046716],[-87.57502370472717,41.773462312105636],[-87.57527179031416,41.77346164415057],[-87.57540974608544,41.773461264545865],[-87.57566336140576,41.77346109875521],[-87.57588485857275,41.77346124673081],[-87.57592731080207,41.773461274963935],[-87.57628977918172,41.77345713264376],[-87.57648746720976,41.77345562582695],[-87.57687298121584,41.77345268646949],[-87.57717083570076,41.77344707306989],[-87.5774504655248,41.7734387319153],[-87.57772608156566,41.773435060532705],[-87.57790420290225,41.773432687663345],[-87.57820203600079,41.7734288826801],[-87.5784977429646,41.773425062955106],[-87.57873900159022,41.7734219551236],[-87.57894967790172,41.773419524145496],[-87.57905080011267,41.7734183129398],[-87.57920237222365,41.77341660020345],[-87.57958614453126,41.77341206590768],[-87.5798360165411,41.77340909461179],[-87.58018044254898,41.773405458901635],[-87.58037483697105,41.773403406503654],[-87.58058625019937,41.773400647764326],[-87.58103932608581,41.77339469656492],[-87.58141447879066,41.77339049791327],[-87.58172620230067,41.77338700796803],[-87.58203928473095,41.77338323791307],[-87.58236663095317,41.773379230928704],[-87.58264920123696,41.773376471637434],[-87.58290199992594,41.773374002376606],[-87.58333201823328,41.773367891518554],[-87.58358963256006,41.77336422164235],[-87.5838614638433,41.77336131464048],[-87.58390194395429,41.77336088166256],[-87.58410601530007,41.77335869891449],[-87.58435680437583,41.77335561399301],[-87.5847079192523,41.773350492916556],[-87.58508062655238,41.773345387908414],[-87.5853324829206,41.773341937328766],[-87.58546499481558,41.77333994595743],[-87.5857572637958,41.77334518440585],[-87.58594587222059,41.773348563904335],[-87.5860988763136,41.773344513796616],[-87.5862961534554,41.77333929086669],[-87.58663741644108,41.773330255628004],[-87.5869455781712,41.77332718611564],[-87.58727797606596,41.773323769315255],[-87.58749766897625,41.773321435822744],[-87.58771153212001,41.77331917439459],[-87.58807945858163,41.773315304722274],[-87.5882169849551,41.77331398651516],[-87.58848682393219,41.7733120463342],[-87.58876563926054,41.77330945484499],[-87.58909214317224,41.77330641913747],[-87.58930611527633,41.773304237500504],[-87.58972735025687,41.773299911933506],[-87.59021076769608,41.77329494422889],[-87.59064707152429,41.77329046577313],[-87.59084989758789,41.773288401305464],[-87.59116924091714,41.77328523794783],[-87.59142163608185,41.77328273717563],[-87.59158523163765,41.773280866749424],[-87.59171373323343,41.77327939744682],[-87.59180514888367,41.77327835192969],[-87.59204833970054,41.773275956674425],[-87.59206267679,41.773275815368585],[-87.59209856899427,41.773275462964236],[-87.59229230733418,41.77327356042639],[-87.59231228517174,41.77327336408874],[-87.59234948298689,41.773272998072976],[-87.59256999634331,41.77327082729785],[-87.59291434207803,41.77326767924115],[-87.5929212144211,41.77362002460156],[-87.59292551169602,41.773842422165124],[-87.59293069838118,41.774111835147444],[-87.59293551412402,41.77436250222369],[-87.59294081042302,41.77462557657772],[-87.5929451383018,41.77483578965158],[-87.59294686551831,41.77491970745191],[-87.59295015068655,41.77507934229402],[-87.59272933328278,41.77508286668389],[-87.59257396634983,41.77508592655264],[-87.59238662234404,41.77508968559526],[-87.59211484331917,41.77509696828421],[-87.59201835684722,41.7755201118229],[-87.59197025753353,41.77573020612946],[-87.59190725292491,41.776005737847484],[-87.59185665523133,41.77623109946026],[-87.59182174271224,41.77638581889519],[-87.59177019171577,41.77660585257556],[-87.5917369294232,41.7767467492136],[-87.59169951432163,41.77691838196107],[-87.59162161858553,41.77727570745998],[-87.59156374160895,41.77751644699252],[-87.59151029837726,41.77775732461199],[-87.59149686761702,41.77781711853791],[-87.59144967553651,41.77801989114594],[-87.59143975057468,41.77815575166005],[-87.59144362392117,41.77832863939864],[-87.59145277329738,41.7785590814849],[-87.59145585215323,41.77875484430861],[-87.59145933174433,41.77897611841973],[-87.59146337354366,41.77919804764687],[-87.59146778971049,41.779431999263664],[-87.59147281760075,41.77968285990791],[-87.59147727899406,41.7798460912308],[-87.59148737374122,41.780023162967],[-87.59150291711745,41.780201477367186],[-87.5915159593906,41.78034231608694],[-87.5915269296362,41.780487943925436],[-87.59152811355587,41.78056632347607],[-87.59122101701082,41.78056966896709],[-87.59087956027251,41.780573280612685],[-87.59071938886869,41.78057509090406],[-87.59059010251782,41.78057642062219],[-87.59058985867296,41.78057642316209],[-87.59044010791125,41.78057794614839],[-87.5903446526905,41.780578943304086],[-87.59034444734627,41.78057894554361],[-87.59019888503339,41.78058053509592],[-87.59005732803637,41.78058208012411],[-87.58972232085112,41.78058190589314],[-87.58972223542088,41.780581906163455],[-87.58953151340758,41.78058152030208],[-87.58897279735817,41.7805809202578],[-87.58865151486232,41.78058056700643],[-87.58829288219651,41.78058567875357],[-87.5881327802811,41.78058800263788],[-87.58800161045065,41.780589963778944],[-87.58782628903047,41.78059234162498],[-87.58775324286755,41.78059333220672],[-87.58745548733287,41.780597369317974],[-87.58719880428612,41.78060042267389],[-87.58687252126867,41.780604450271035],[-87.58645804553066,41.78061940793767],[-87.5858936957947,41.78063977176426],[-87.5855818235611,41.78064989944076],[-87.58549522904002,41.78065055753164],[-87.58516557672296,41.780653062161385],[-87.5847776806681,41.780642796444866],[-87.58457603758733,41.78062654331266],[-87.58440219175719,41.78061253035703],[-87.58388888284911,41.78057115337298],[-87.58369681338279,41.78055567027572],[-87.58340461627186,41.780529229311725],[-87.58306208037868,41.78049644887492],[-87.58272702243923,41.780463826047644],[-87.58236107234092,41.78041104934396],[-87.58216842750988,41.78037444346799],[-87.5818227554979,41.780299514030084],[-87.58154872747934,41.78023067819903],[-87.58145796606384,41.7802039243093],[-87.5812397627104,41.78013960382079],[-87.58092334929397,41.780027156444746],[-87.58063766836254,41.779914086819865],[-87.58049271108688,41.779834815036715],[-87.57992517374146,41.77960748833177],[-87.57939618630854,41.77977457703812],[-87.57918467610652,41.77984330529162],[-87.57897469662652,41.77991271308577],[-87.57893975769917,41.77992428518884],[-87.57877038914432,41.779980382195724],[-87.57859588356949,41.78003817986697],[-87.57855091002918,41.7800530029459],[-87.57809381270074,41.7802036539487],[-87.57763128771406,41.78036076891049],[-87.577116710997,41.78055107455795],[-87.57669629989667,41.780740077123724],[-87.57642991302917,41.78087900047208],[-87.5763430379145,41.78092430648313],[-87.57610412503662,41.781062196577224],[-87.57590172875138,41.78120943796407],[-87.57576515860734,41.78133987897392],[-87.57566670168565,41.781453008308816],[-87.575476667355,41.781559165628266],[-87.5754396819375,41.78157396031979],[-87.57540053496587,41.781579272952904],[-87.57534796366373,41.7815850184141],[-87.57531142260972,41.78158387169646],[-87.57523316451646,41.78156966131328],[-87.57506753248518,41.781518620269736]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1613209.21309","perimeter":"0.0","tract_cent":"1169561.73343288","census_t_1":"17031060700","tract_numa":"11","tract_comm":"6","objectid":"405","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1926142.66988255","census_tra":"060700","tract_ce_3":"41.9528438","tract_crea":"","tract_ce_2":"-87.65207533","shape_len":"5083.33758181"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64961999005963,41.95119789607549],[-87.64967968518754,41.95118777717708],[-87.64975906870308,41.95118984149267],[-87.65005739648099,41.95118920243031],[-87.65048181987716,41.9511882734033],[-87.65142417906887,41.951173453873125],[-87.65202014204642,41.95116366695533],[-87.65263771973575,41.951153521566496],[-87.65323484040812,41.95114362543751],[-87.65359613649339,41.951137634797334],[-87.65367100447774,41.95113639308569],[-87.6537643572101,41.95113495366194],[-87.65381756038674,41.95113413328268],[-87.65444445190778,41.95112446523655],[-87.65445575160507,41.95149706992446],[-87.6544626936285,41.9517955713257],[-87.65447351376078,41.95212996247286],[-87.65447797466834,41.952267830538794],[-87.65449060223531,41.95267441550092],[-87.65450033377418,41.95298776908183],[-87.65450566088616,41.9531440010128],[-87.65451692081356,41.95351025495499],[-87.6545190975725,41.953581068711905],[-87.6545261660581,41.95381097401666],[-87.65452777093887,41.95386316959141],[-87.6545294049226,41.95392398654662],[-87.6545307838812,41.95397530016769],[-87.65453198739468,41.95402010842552],[-87.65454473815764,41.95448837667953],[-87.65382290575538,41.95449923826189],[-87.65333660508571,41.95450655318781],[-87.65253693199625,41.95451613881971],[-87.65227504632789,41.95452017059801],[-87.65212349484962,41.95452250360727],[-87.65130934156002,41.95453503260847],[-87.65053062114228,41.954547763552085],[-87.65044595159125,41.954548524770956],[-87.65025794572979,41.954551668655114],[-87.65010184587166,41.9545552951913],[-87.64989661069214,41.95455720204276],[-87.64969983417441,41.954561232144975],[-87.64969219414438,41.95433117939767],[-87.64968696842598,41.95414591416257],[-87.649682766072,41.95399901906083],[-87.64967668155707,41.953790916878994],[-87.64967425816194,41.95360305527697],[-87.64966897154144,41.953193291631244],[-87.64966805544489,41.9531223211886],[-87.64966050534674,41.95295164126867],[-87.64965369218041,41.952747542902216],[-87.64964633064317,41.952527027594115],[-87.64964009148514,41.95233341386612],[-87.6496331516877,41.952102200279946],[-87.6496263059899,41.95186215088752],[-87.64962146451448,41.95169255730052],[-87.64961510782702,41.95146867420237],[-87.64961999005963,41.95119789607549]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8998191.35787","perimeter":"0.0","tract_cent":"1188829.21883141","census_t_1":"17031411000","tract_numa":"30","tract_comm":"41","objectid":"70","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867143.60854225","census_tra":"411000","tract_ce_3":"41.79050626","tract_crea":"","tract_ce_2":"-87.58314372","shape_len":"14730.0911648"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5793292928338,41.79523773423244],[-87.57921359386211,41.79523675961244],[-87.57864790876985,41.79523406939167],[-87.57604187843074,41.79514858695842],[-87.57604197128506,41.795148518414706],[-87.5760697347795,41.79512892259199],[-87.57609744020473,41.79510936726946],[-87.57615515831041,41.7950893961459],[-87.57616592954588,41.79508566905925],[-87.5762247430643,41.7950739815928],[-87.57626313277544,41.79507443987346],[-87.5763274101925,41.79507520677635],[-87.57634724677172,41.79507852469986],[-87.5763581547267,41.79508034962441],[-87.57637917815748,41.795084653424375],[-87.57639693425665,41.7950882888648],[-87.57644815679822,41.79509456718486],[-87.57645838314752,41.79509582036641],[-87.57645841866841,41.795095824716874],[-87.576458454556,41.795095829069744],[-87.57651212785278,41.795084656993524],[-87.57654443526297,41.79507375577943],[-87.57656956381734,41.795065276566916],[-87.57660228501008,41.795054207642615],[-87.57661890167722,41.79504858649796],[-87.57665120264228,41.79504605553788],[-87.576714891552,41.79505635444394],[-87.57678063754986,41.795078741691796],[-87.57685295329043,41.79510391617042],[-87.57691454427446,41.79510541973083],[-87.5770805811323,41.795081814397754],[-87.57738839927106,41.795038834244956],[-87.5774776245505,41.795019645810775],[-87.57760384281255,41.79499250132012],[-87.57770281449234,41.79496118564139],[-87.57782985031963,41.79492099009516],[-87.5778769112578,41.79490260336431],[-87.57791826879077,41.79488644478614],[-87.57799484099255,41.79485680128649],[-87.57811204492288,41.79481142763708],[-87.57830371062522,41.79472871285417],[-87.57842486980392,41.79465441080795],[-87.57843299317189,41.79464942898621],[-87.5785741125332,41.794561442144754],[-87.57876874989954,41.79441288256495],[-87.57880504727147,41.79438224810557],[-87.57881311199486,41.79437544476728],[-87.5788339371548,41.794357876551956],[-87.57889464452055,41.794308526130244],[-87.57893908794,41.79427239674092],[-87.57896426532034,41.79424791021241],[-87.578989536921,41.7942233304426],[-87.57901162656265,41.794199683135915],[-87.57901163177087,41.79419952043432],[-87.57901211747108,41.79418433787592],[-87.57902544701085,41.794127564469605],[-87.57903861633919,41.794071473334895],[-87.57904704008307,41.79404599202281],[-87.57904704047228,41.79404599010437],[-87.57904704122818,41.79404598818834],[-87.57906036728204,41.79400567714095],[-87.57908204418918,41.79394616046656],[-87.57910906766602,41.79391192626791],[-87.57912889488613,41.793886808791335],[-87.57914605519366,41.79385704255515],[-87.5791631589573,41.7938273747391],[-87.57920169183951,41.793761688688875],[-87.57921827384793,41.79372847457309],[-87.57921827647907,41.793728469101815],[-87.57923606618729,41.79369283532101],[-87.57927029325496,41.79363654072264],[-87.57927881637282,41.79360898207469],[-87.57928668692892,41.793583534159346],[-87.579296460224,41.79355193398153],[-87.57929945293874,41.79351223346101],[-87.57929945298699,41.79351222934491],[-87.57929945340193,41.79351222523122],[-87.57930142827249,41.79348602757261],[-87.57930175515732,41.793458138224985],[-87.57930249546521,41.793394976062146],[-87.57930097183855,41.79333737020212],[-87.57929958822173,41.793285058428594],[-87.57929477514189,41.79321553644098],[-87.57929241142597,41.79318139277935],[-87.5792852475829,41.79314589321976],[-87.5792765494406,41.79310278988965],[-87.57927750625105,41.79302115766635],[-87.57927800788937,41.79297835923849],[-87.57927838946209,41.79294580442164],[-87.57927996988877,41.792918467765084],[-87.57928365187453,41.792854780166095],[-87.5792898021141,41.792826514927945],[-87.579301390566,41.79277325781986],[-87.57930461191856,41.7927394515885],[-87.57930761961124,41.792707886580644],[-87.57931095924819,41.792672842082375],[-87.57932472345061,41.79257245388028],[-87.57935475391191,41.79251613197411],[-87.57940609319219,41.79243168985466],[-87.57946972425667,41.792372448424246],[-87.57952084217317,41.79230684483561],[-87.57955948448067,41.79223173961977],[-87.57957446496212,41.792197546477546],[-87.57957446571797,41.79219754456151],[-87.57958966207956,41.792162858588554],[-87.57959818154437,41.792137085040196],[-87.57960290565468,41.79212279418252],[-87.57961141142285,41.79209706198175],[-87.57962793813188,41.792036302810246],[-87.57962814391963,41.79203554591558],[-87.57961403400213,41.79200291604584],[-87.57961067285169,41.79199636836697],[-87.57958463556446,41.79194564265824],[-87.57954725354126,41.791881180648495],[-87.57950412015238,41.791806802296506],[-87.57944875215641,41.79171258426469],[-87.57940619762871,41.79165138194832],[-87.57938739352204,41.79162208792546],[-87.57936834670258,41.791592416065484],[-87.57934569683188,41.791557130452965],[-87.57933238195902,41.7915336239135],[-87.57932262170507,41.79151639245086],[-87.57931691184437,41.791506312275956],[-87.57929015318985,41.79145907001805],[-87.57927456117218,41.791431524584866],[-87.57924468925893,41.79139351395027],[-87.57917050353711,41.791299116268576],[-87.57911988992149,41.79123731180416],[-87.57910621408915,41.79121526749057],[-87.57902241296411,41.7911065933982],[-87.57896939340215,41.79103230634603],[-87.5789618027435,41.7910216712577],[-87.57894503880269,41.79100083526018],[-87.57888011994852,41.79092014527795],[-87.57885121070144,41.790883730897455],[-87.57884945879812,41.79088149515125],[-87.57884615297954,41.790877276335266],[-87.57882712074768,41.79085296680447],[-87.57881146945904,41.79083297482625],[-87.57878728286325,41.79080138680548],[-87.57876162923291,41.79076788296528],[-87.57870015795888,41.79069393215352],[-87.57867844067914,41.79066963953725],[-87.57863904658731,41.79058924826699],[-87.57863235576698,41.7905788128141],[-87.578582149467,41.79050050831932],[-87.57853463987038,41.79039433056189],[-87.57853140928194,41.790387109986646],[-87.57849732916317,41.79029138560185],[-87.57848701297637,41.79026162605904],[-87.57846186011564,41.79018906552793],[-87.57845036392719,41.79016315119917],[-87.57842327755687,41.79010209268531],[-87.57837407466026,41.79004523686018],[-87.57834817977137,41.790018399394825],[-87.57833494033191,41.79000467796757],[-87.57830958709988,41.78997840141691],[-87.57827194304048,41.78993644091297],[-87.57823051211828,41.789907422237285],[-87.57823042847134,41.78990736323425],[-87.57823042665092,41.78990736212457],[-87.57820865901293,41.789892115611394],[-87.57818613191967,41.7898744046763],[-87.57807435883952,41.789774876005986],[-87.57794645291666,41.78967524114423],[-87.57784299360621,41.789575698032564],[-87.57781664386103,41.7895503454043],[-87.57768871337113,41.78945290524282],[-87.57768433044272,41.78944974134476],[-87.57756366547312,41.78936264318547],[-87.57756364874528,41.78936263127501],[-87.57756363202068,41.78936261909014],[-87.57750997114184,41.789323804933716],[-87.57746255079013,41.78928950471904],[-87.57734832877173,41.789211364074745],[-87.57731088490335,41.78918510021728],[-87.57724722221779,41.7891404455955],[-87.5771242528519,41.78905785685223],[-87.57707085582072,41.789023999028],[-87.57701141977795,41.78898631156613],[-87.57696787435928,41.78895771979165],[-87.57687969563861,41.78889982210225],[-87.57679873834066,41.788845159386035],[-87.57675163879436,41.788813357462615],[-87.5766497485828,41.788746823596576],[-87.57654996926536,41.78868798698758],[-87.57646037795364,41.788635804791106],[-87.57638977013355,41.7885908816468],[-87.57632130629712,41.78857040411042],[-87.57632034346526,41.7885701164767],[-87.5763174323397,41.78850588190712],[-87.57667938168278,41.788472041405875],[-87.57668143258566,41.78842217812832],[-87.57668143560198,41.78842210871784],[-87.5768509791264,41.78841060214953],[-87.57715037080125,41.78839555817615],[-87.57717106403629,41.788381973522846],[-87.57717107151451,41.788381961222804],[-87.57717107899275,41.788381948922755],[-87.57717910336372,41.78836854432825],[-87.5771815367848,41.78836447904847],[-87.57718896664863,41.788356294556415],[-87.57720306431368,41.78835413072469],[-87.57721982413659,41.78835155850057],[-87.57725688905091,41.78835314001422],[-87.57728066283148,41.78835415434267],[-87.57729210882314,41.788357154802846],[-87.57731502566817,41.788363162195246],[-87.57732587703714,41.78837585703355],[-87.5773338467414,41.78838414260366],[-87.57756491789503,41.788368915762256],[-87.57766705359009,41.788362185225495],[-87.57766972538639,41.78831515180012],[-87.57766982751912,41.78831335551566],[-87.57768666833319,41.788309598226],[-87.57773673892294,41.78829842737849],[-87.57775900720387,41.78829755818392],[-87.57775900620378,41.78829754967007],[-87.5777590058887,41.78829754527714],[-87.57775900520693,41.7882975408818],[-87.57774840996348,41.78821041211944],[-87.57774765022411,41.78820416442812],[-87.57774763815233,41.78820406829883],[-87.57766159607613,41.7882024315258],[-87.57764768339015,41.788190004181885],[-87.57764054996989,41.788183631959825],[-87.57763891749524,41.78815634414854],[-87.57763871024659,41.78815288471454],[-87.57759948093559,41.788153017983774],[-87.57758370597222,41.788153071453614],[-87.57751035533568,41.78815423544854],[-87.57731954052687,41.78816615268758],[-87.57731561605878,41.78818808029888],[-87.57730002310052,41.78820444365067],[-87.5772610738388,41.78821132299641],[-87.57719580925672,41.78821089343882],[-87.57719022468072,41.78820895791143],[-87.57716513279225,41.78820026242263],[-87.57714994004355,41.78818259900869],[-87.57714649885924,41.78816336720165],[-87.57714684069349,41.7881342800552],[-87.5771493552882,41.78812046761808],[-87.57715232896369,41.7881041282485],[-87.57722134307826,41.788097447923306],[-87.57727358928791,41.7880824235302],[-87.57727376170868,41.78808110603712],[-87.57727671118288,41.788058522438355],[-87.5772768127012,41.78805774674889],[-87.57727681302363,41.788057719308185],[-87.57727681298263,41.78805769159066],[-87.5772769431375,41.787984200554824],[-87.57728717149514,41.78791050868434],[-87.57729216529377,41.78787452942394],[-87.577310031178,41.787789574233415],[-87.5773214065305,41.787695245488656],[-87.57732797237223,41.7876033285999],[-87.57733018429255,41.78757235965271],[-87.57733447120883,41.78745712797804],[-87.57733599557177,41.78739011383584],[-87.57733750465371,41.787323775783626],[-87.5773383243242,41.78719158905945],[-87.57733832529459,41.78719150646291],[-87.57733239794933,41.78707181698351],[-87.57732155678694,41.78693343376324],[-87.57731050251614,41.78681316140631],[-87.57730702479601,41.786798320486916],[-87.57728884950448,41.78672076213597],[-87.5772706976568,41.786643303004105],[-87.57724176947093,41.78648394389865],[-87.57721114482213,41.78636699337883],[-87.57719685058271,41.786312404958636],[-87.57718798482469,41.786284257214845],[-87.57714456890433,41.786146410930236],[-87.57745273879635,41.78610245471964],[-87.57751083546052,41.78609416805055],[-87.57904777637496,41.78603409043058],[-87.5803480836924,41.786034044863186],[-87.58080158921054,41.78597698529142],[-87.58174785113461,41.78603394898004],[-87.5824102861357,41.78598305225922],[-87.5830479477791,41.78593404840963],[-87.58349391269114,41.78593387285072],[-87.58404804080617,41.785934058055055],[-87.58444795853971,41.78583409786675],[-87.58456526402931,41.785836577958904],[-87.58498805003427,41.78584554123305],[-87.58516460727529,41.78584940477037],[-87.58519202242199,41.7859224822067],[-87.58528242074273,41.786044285918614],[-87.58536253217655,41.78613314605575],[-87.58554518919259,41.78626463269275],[-87.58568762122229,41.78631004568647],[-87.58582367649552,41.78634306663428],[-87.5859532897168,41.786368773157534],[-87.5860550881059,41.78638688903806],[-87.58618706867841,41.78639507472118],[-87.58636098007877,41.786398373650215],[-87.58660134058596,41.786392963876516],[-87.58660576590808,41.78668951446279],[-87.58661045689006,41.78692667853536],[-87.58661434214055,41.78714805772876],[-87.58662186096117,41.78743856159603],[-87.58662785103309,41.78765703096562],[-87.58663206298573,41.78781067043905],[-87.58663462333406,41.78790146825404],[-87.58738030412287,41.787893661255644],[-87.58768979690414,41.78788933120364],[-87.58797067193849,41.787886461212025],[-87.58804826591602,41.78788607054803],[-87.58816326654592,41.787885268241816],[-87.58839615993303,41.78788419192603],[-87.58845728755286,41.78788390935938],[-87.58853781558831,41.78788305412078],[-87.58868063874537,41.78788153676467],[-87.58877894751036,41.78788042970097],[-87.5889219656822,41.78787872642299],[-87.58904939993838,41.787877208505066],[-87.58912818204887,41.787876270189535],[-87.58911243256975,41.78795592143445],[-87.58906906262114,41.788175255872204],[-87.5890358014413,41.78834035601566],[-87.58900156693748,41.788510334662476],[-87.58896957449514,41.78874532671964],[-87.58896933151225,41.7888636712618],[-87.58896924730983,41.788904643413126],[-87.58897387519279,41.78913854120802],[-87.58897928070549,41.78935910681681],[-87.58898243803363,41.7894870564148],[-87.58898464814877,41.78957662601641],[-87.58898872297594,41.78973785570891],[-87.58899126387588,41.78983839113387],[-87.58899503612751,41.78998831159054],[-87.58899706449039,41.79006893364523],[-87.58899812154905,41.79011094283762],[-87.5890013777949,41.79031149140762],[-87.58900351752783,41.790443282972625],[-87.58900557561232,41.79054032398076],[-87.58901006624085,41.79075205717235],[-87.58901811659078,41.79101344705719],[-87.58902207736789,41.79122895402808],[-87.58902056816754,41.79132137166977],[-87.58903262752843,41.791483472214075],[-87.58898690542121,41.79152618600019],[-87.58871494079683,41.791525761046046],[-87.58857498878699,41.791527351106716],[-87.58846349875647,41.79153315223435],[-87.58841768616654,41.791535536062696],[-87.58830999634166,41.7915411388478],[-87.58820981573822,41.79195256962361],[-87.58816776424166,41.79213221196304],[-87.58810825432248,41.79238808693801],[-87.5880564182138,41.79262093224895],[-87.58800757345311,41.79284243561025],[-87.5879899405939,41.792921059299886],[-87.5879771788453,41.79297805288201],[-87.58795989443311,41.79314053939212],[-87.58797070104725,41.793252301750485],[-87.58794434767336,41.793358328120725],[-87.58789538789405,41.7935553030989],[-87.58782074394509,41.793889099554065],[-87.58774873764867,41.79419774800654],[-87.58769041166846,41.79444923950372],[-87.58763547779772,41.7946738041459],[-87.58759980472858,41.7948596896657],[-87.58758311143033,41.7949710539611],[-87.58754916332073,41.79518488330855],[-87.5873953272409,41.795186569214195],[-87.58726736530261,41.79518797097499],[-87.58724223900418,41.79518824632389],[-87.58719498182064,41.79518876377087],[-87.5871128616939,41.795189663692966],[-87.58702356901891,41.79519064182353],[-87.5869474290732,41.79519147592148],[-87.58690959236601,41.79519189035079],[-87.58688087796028,41.79519220460138],[-87.58674127619811,41.795193733491885],[-87.58662421025291,41.79519548801105],[-87.58617030224431,41.79520265672013],[-87.5857755847953,41.795206949454716],[-87.58541060416816,41.79521158812465],[-87.58512015343283,41.795215278577096],[-87.58484896444047,41.795214966401794],[-87.58468418737827,41.795217631466215],[-87.5845248307632,41.79522020868345],[-87.58432316018074,41.79522413577786],[-87.58395113353033,41.79522795409764],[-87.58358746217789,41.79523168551168],[-87.5832478097745,41.79523736078253],[-87.58293690751289,41.79524003400293],[-87.58253849301882,41.79524348354636],[-87.58234755639685,41.79524513618044],[-87.5822499093418,41.795245981339086],[-87.58192574742645,41.79524890212425],[-87.5818313072609,41.795249661425395],[-87.5816396762425,41.79525120186196],[-87.58125256217065,41.79525440365035],[-87.58087515380156,41.79526493895207],[-87.58045346695543,41.795276708919765],[-87.58016802640313,41.79528467523893],[-87.5799256893018,41.795288327704995],[-87.5796885228262,41.795279472224564],[-87.5793292928338,41.79523773423244]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1242963.73306","perimeter":"0.0","tract_cent":"1160774.21572163","census_t_1":"17031280900","tract_numa":"9","tract_comm":"28","objectid":"117","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899034.47845809","census_tra":"280900","tract_ce_3":"41.87864409","tract_crea":"","tract_ce_2":"-87.68513183","shape_len":"5041.33451709"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68590608973463,41.87609806768077],[-87.68626949838719,41.876083619061205],[-87.68628053851064,41.8763390922961],[-87.68630837063175,41.8766303863954],[-87.68631660619076,41.876714418311835],[-87.68631939046594,41.87674282543989],[-87.68633017849565,41.876863688016606],[-87.68633477760804,41.876997468573],[-87.68634255566728,41.8773330241354],[-87.68634308009634,41.8775501681607],[-87.686343662645,41.877791182519466],[-87.68634864605725,41.87794508055316],[-87.68635496149605,41.878192702135145],[-87.68635847892504,41.87833180040602],[-87.68636483637589,41.878588914284315],[-87.68637120607922,41.87884652822174],[-87.68637802536455,41.879109739925255],[-87.68638306421924,41.8793043903008],[-87.68638444544129,41.8793577440448],[-87.686385899822,41.879413929165445],[-87.68639575214236,41.87976231190208],[-87.6863981944024,41.87983498123569],[-87.68639832089688,41.87983875007326],[-87.68640504455934,41.880038792205255],[-87.68641159997914,41.880257847716706],[-87.68641660695421,41.88042516490526],[-87.6864204594411,41.88071131187429],[-87.68642183704587,41.880845887311864],[-87.68642815781169,41.88102020998563],[-87.68643116151189,41.88116173395066],[-87.6847673988077,41.88118754009244],[-87.68395997484052,41.881200549232936],[-87.68395991783964,41.8811591755631],[-87.68395961843365,41.88094176071659],[-87.68395174228782,41.88073831211984],[-87.68394379492409,41.88035385373401],[-87.68393721348285,41.880137075948824],[-87.68393285428445,41.879959299053375],[-87.68393114720405,41.879889695036994],[-87.68392951752415,41.8798232544759],[-87.68392258074793,41.879540394026755],[-87.68391783032331,41.879341820919905],[-87.68391747100156,41.87932682569623],[-87.6839149441173,41.87922119495593],[-87.68391216078018,41.87909798970468],[-87.6839112852047,41.87905923653735],[-87.68390961901169,41.878985488928386],[-87.68390628029208,41.87883288992136],[-87.68390089477646,41.8786239355538],[-87.68389945239025,41.87856797851187],[-87.68389444376676,41.87837362840485],[-87.68388830523013,41.87819288473967],[-87.68388529114172,41.878096320685756],[-87.6838814013847,41.87797171425209],[-87.6838738596475,41.87769387143863],[-87.6838702324899,41.877575029400845],[-87.68385988072004,41.87723585979257],[-87.68385404292466,41.87702880292497],[-87.68385166740283,41.87694453888788],[-87.68384423780896,41.87667645547789],[-87.68384357280806,41.87665245025007],[-87.68383579670825,41.8763469714677],[-87.68382782868936,41.876120179882264],[-87.68408126473147,41.87611811704694],[-87.6844551941506,41.876112162331914],[-87.68463728911703,41.87610984773797],[-87.68478401507844,41.876107982410105],[-87.68508036247232,41.876105209910946],[-87.68539661076854,41.87610249404411],[-87.68572578604122,41.87609957577878],[-87.68590608973463,41.87609806768077]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4379682.03476","perimeter":"0.0","tract_cent":"1183221.1796884","census_t_1":"17031411400","tract_numa":"16","tract_comm":"41","objectid":"71","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867073.01832792","census_tra":"411400","tract_ce_3":"41.790445","tract_crea":"","tract_ce_2":"-87.6037089","shape_len":"9288.35168261"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60560940072136,41.7858807986884],[-87.60603749216132,41.78587406578994],[-87.60603648432159,41.7860409704374],[-87.60604000970264,41.78618652222671],[-87.60604436330209,41.78641552584477],[-87.60604833430234,41.78662439824661],[-87.60605058593283,41.78672361841967],[-87.60605396638803,41.78687550857321],[-87.60605948794417,41.787129782624326],[-87.60606392588551,41.78733416912906],[-87.6060777066882,41.78749048852067],[-87.60607978329169,41.78769555464202],[-87.60608179630286,41.78789430849838],[-87.6060872875377,41.78816756425507],[-87.60609482749283,41.78841865914855],[-87.60610328602895,41.788676016814435],[-87.60610680105822,41.7888678919916],[-87.60611062025762,41.78913018742284],[-87.60611287667483,41.78928739430804],[-87.60611799628794,41.78951347340232],[-87.60612312599673,41.789739991637],[-87.60612635280452,41.78990867575513],[-87.60613106482481,41.790153660360055],[-87.60613616995096,41.79041574433027],[-87.60614056426903,41.79064335558753],[-87.60614503501141,41.79088367335193],[-87.6061491283377,41.791092594115725],[-87.6061530942261,41.79132525019434],[-87.60615523591095,41.79145092640072],[-87.6061604926302,41.791618498161895],[-87.60618985656565,41.793154796299],[-87.60622221130579,41.794801240977684],[-87.60621549757323,41.794965361680696],[-87.60574012982728,41.79496567184403],[-87.60525771863226,41.79497115035736],[-87.60479988216514,41.794976206124495],[-87.60417148820183,41.794984019592285],[-87.60400964828166,41.7949857595506],[-87.60383539549527,41.79498763286329],[-87.60364829559254,41.79498964385068],[-87.60316750691794,41.794994272889156],[-87.60281537198628,41.79499819669192],[-87.60271267933055,41.79499934083307],[-87.60241253844518,41.795002729352795],[-87.60177055677426,41.79500997423139],[-87.60130998605767,41.79501472452065],[-87.6013625732459,41.794933059939225],[-87.60137929594062,41.794697762045246],[-87.60137614101255,41.794530231008615],[-87.60137077585014,41.794344299198116],[-87.60136536990841,41.79415221993088],[-87.60135964431255,41.79394317895959],[-87.6013548086437,41.7937686667157],[-87.60134949797197,41.79356506205215],[-87.60134563689013,41.793401588020004],[-87.60134310290628,41.79321223754815],[-87.60134072156093,41.79303428943715],[-87.60133724683533,41.79289494009208],[-87.60133299860112,41.79272685317967],[-87.60132849624921,41.79253275735379],[-87.60132719235997,41.792476537909835],[-87.6013221806702,41.792256304479096],[-87.60131691170125,41.79203612456052],[-87.60131155828383,41.79182659191208],[-87.60130525726989,41.79160146569141],[-87.60130264299606,41.79150468589542],[-87.60130076076109,41.791393201131925],[-87.60129696858013,41.79116863946332],[-87.60129235151638,41.790923435795094],[-87.60128721824435,41.79065589036155],[-87.6012815770442,41.790374977018864],[-87.60127433954791,41.790066775312134],[-87.60126687973982,41.78976200252661],[-87.6012639112667,41.78963448254383],[-87.6012623377348,41.78956687202667],[-87.60125848118585,41.789401158024475],[-87.60125165716215,41.789092080729134],[-87.60124751057822,41.788905388106485],[-87.60124251435913,41.78864840894617],[-87.60123841210094,41.788396622168655],[-87.6012345384431,41.78822142981417],[-87.6012298727175,41.78802880620033],[-87.60122931984965,41.78774838043281],[-87.60122894097854,41.78755637167397],[-87.60122710042086,41.7874281195199],[-87.60122015301711,41.787180214460705],[-87.60121552072441,41.78701492108437],[-87.60121102892496,41.7868103060129],[-87.60120754781875,41.786652185565124],[-87.60120282478184,41.78646796206471],[-87.60119746556694,41.78625889268468],[-87.60119625764088,41.78613624287558],[-87.60119051225412,41.78592840704843],[-87.60150089559055,41.7859260506899],[-87.60169581173217,41.78592331300822],[-87.60210103383598,41.78591884022696],[-87.6023810589748,41.78591571002913],[-87.60252077801164,41.78591412908547],[-87.60280286547473,41.78591027002171],[-87.60307761737742,41.785906500849734],[-87.60344351669518,41.78590336504817],[-87.6036226887692,41.78590184132245],[-87.60388583891284,41.785899450994165],[-87.60414451997525,41.78589664749602],[-87.60443140530083,41.78589316423401],[-87.60471301020162,41.78588974363798],[-87.60500146214164,41.78588720962943],[-87.6053131678842,41.78588399870337],[-87.60560940072136,41.7858807986884]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2638410.74224","perimeter":"0.0","tract_cent":"1184610.33062479","census_t_1":"17031420300","tract_numa":"8","tract_comm":"42","objectid":"72","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864453.55930374","census_tra":"420300","tract_ce_3":"41.78322452","tract_crea":"","tract_ce_2":"-87.59869737","shape_len":"6644.42261087"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60094160318057,41.78046909472372],[-87.60106781561316,41.78046776367339],[-87.60107533465631,41.78081232456709],[-87.60107772007703,41.78093403768502],[-87.60107944108536,41.781021822229214],[-87.60108626084491,41.78130213979927],[-87.6010933728382,41.781592256324515],[-87.60109861702274,41.78185318915531],[-87.60110338738765,41.78209776300226],[-87.60110727803115,41.78227483576373],[-87.60111343636831,41.782555135060626],[-87.60111793342276,41.782775365310656],[-87.60112203693801,41.78295613019929],[-87.60112759441985,41.783212097805865],[-87.60113238364589,41.78343246710713],[-87.60113932458323,41.783747281012104],[-87.60114436158436,41.78398774004811],[-87.60114800676162,41.784111344256864],[-87.6011554739927,41.784364601376986],[-87.60115854801835,41.78451017790611],[-87.60116331917497,41.78473984989723],[-87.60116639773574,41.78488696352025],[-87.60117312609157,41.78518506328971],[-87.60118103854957,41.78551763881784],[-87.60118576299777,41.78575661387322],[-87.60119051225412,41.78592840704843],[-87.600814979128,41.78593125662235],[-87.60055072115121,41.785934346362716],[-87.60020827841785,41.78593836360055],[-87.59984244002119,41.785942559756016],[-87.59958637798898,41.78594502012227],[-87.5994134984218,41.78594668093715],[-87.59903985540377,41.78595035814695],[-87.59868897974603,41.785954316952775],[-87.59824532309825,41.78595943738321],[-87.59802979205858,41.785961314417875],[-87.59794605337164,41.785962043796154],[-87.59768044735468,41.78596435621542],[-87.59746302436444,41.78596644894448],[-87.59726042104961,41.785968032474834],[-87.59711019663156,41.78596730913978],[-87.59692910541106,41.78596979862135],[-87.59658165203024,41.785986184505276],[-87.59633224554851,41.78601361514884],[-87.59630029799236,41.78470310036741],[-87.59629652238637,41.784539736258324],[-87.59629328373873,41.78439992156197],[-87.59628785077557,41.784166836460166],[-87.59628035165845,41.7838451086301],[-87.59627516497822,41.78360006548651],[-87.59627008115815,41.78339086337152],[-87.5962647650289,41.78317633584275],[-87.596258479803,41.782931175850784],[-87.59625030189098,41.78257595780983],[-87.59624578398571,41.78234261203432],[-87.59623979681781,41.78203337234939],[-87.59623192372717,41.78171237746853],[-87.59622367282675,41.78133473805661],[-87.59621647770805,41.78102719449478],[-87.59620984945141,41.78078098938004],[-87.59620394422505,41.780522268904754],[-87.59653798214681,41.780519368288466],[-87.59675642037038,41.78051659771551],[-87.59699004121632,41.78051359472751],[-87.59724577653618,41.78051002411167],[-87.59729968006248,41.78050936808617],[-87.59746447427571,41.780507029646635],[-87.5975965903156,41.78050568040012],[-87.59782360089258,41.780503548053574],[-87.59820289395685,41.78049998417205],[-87.59853584447814,41.78049632379215],[-87.59881580971974,41.780493174418545],[-87.59910083607852,41.78048989205188],[-87.59917472291173,41.78048910572185],[-87.59932480631316,41.780487508707765],[-87.5994443461407,41.780486227095416],[-87.59968569702758,41.780483639307356],[-87.5999808757455,41.78048069401908],[-87.60024510784156,41.78047787981377],[-87.60045914515366,41.78047522560042],[-87.60071124609863,41.780472099119855],[-87.60094160318057,41.78046909472372]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3512353.58533","perimeter":"0.0","tract_cent":"1183077.95085627","census_t_1":"17031390400","tract_numa":"14","tract_comm":"39","objectid":"73","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872713.02236287","census_tra":"390400","tract_ce_3":"41.80592497","tract_crea":"","tract_ce_2":"-87.60405862","shape_len":"7953.9909828"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60621993191462,41.80225707238694],[-87.60640720551974,41.80225116311801],[-87.60641591599196,41.80251145071613],[-87.6064246860505,41.80294260482601],[-87.60642931863634,41.80316439949868],[-87.60644862866428,41.804081456964894],[-87.60645400527414,41.80434643338573],[-87.60645806763634,41.80453866825781],[-87.60647161141623,41.805125151045225],[-87.60647580565964,41.80535569682775],[-87.60647784312069,41.80550837382791],[-87.60648745840501,41.80589351538746],[-87.60649364854622,41.80614144119496],[-87.60649637320913,41.80637087992753],[-87.6065024388025,41.806622787694124],[-87.6065095382511,41.80691627832021],[-87.6065140670783,41.807122429535816],[-87.60651973924614,41.80738643731011],[-87.60652315852589,41.807515522229146],[-87.6065263591911,41.80771528567668],[-87.60653021280278,41.807955803543386],[-87.6065341011534,41.80813749945039],[-87.60653828883383,41.80833165570629],[-87.60654443694484,41.808624343836726],[-87.60654825710203,41.808806203947526],[-87.60655238528399,41.8090056290866],[-87.60655739855574,41.809198144246054],[-87.60656518017987,41.8095327576212],[-87.60613758352041,41.80953945005606],[-87.6059637756674,41.809540824125094],[-87.60580177845617,41.80954227300939],[-87.60564403587591,41.80954368385311],[-87.60530208655838,41.809547369013806],[-87.6048320414624,41.809553191489755],[-87.60437422602473,41.80955894200968],[-87.60389725176304,41.809564931015004],[-87.60355024115466,41.809569287116986],[-87.6030970815998,41.80957324047584],[-87.60280788183378,41.80957622278257],[-87.60272175904208,41.809577110846995],[-87.60233950651971,41.80958074379243],[-87.60201154567191,41.80958398017486],[-87.60170023495401,41.80958775334527],[-87.60169485519855,41.80928659753482],[-87.60169384505842,41.80923617850437],[-87.60168982595228,41.8090355189941],[-87.60168872812807,41.808984715204495],[-87.60168425127371,41.80877757655598],[-87.60167995387482,41.808578232508985],[-87.6016744594495,41.80832613586699],[-87.60166858387048,41.80804629216546],[-87.60166432718282,41.8077712991144],[-87.60166031788603,41.807512313337284],[-87.60165663191445,41.80731404340825],[-87.6016526187782,41.807102654026046],[-87.6016470989742,41.80687536513458],[-87.60164243494924,41.806640562644084],[-87.60163705066155,41.80637235771927],[-87.60163266887486,41.80613209589684],[-87.60162942789735,41.80594797851635],[-87.60162525027246,41.805710665054825],[-87.60162261498446,41.8054942072048],[-87.60161910764631,41.805324863016615],[-87.60161406030949,41.805098455507],[-87.6016092062684,41.804899738969915],[-87.60160375051004,41.80467651192827],[-87.60160037438351,41.80447681712559],[-87.6015980674253,41.80432498931417],[-87.60159637221619,41.804128842854155],[-87.60159562927582,41.80404286184699],[-87.60158674951496,41.80374661546563],[-87.60158192627631,41.803448501358034],[-87.60157762308305,41.80320780082972],[-87.6015730532093,41.80299050727901],[-87.60156728286461,41.802743403218734],[-87.60155846513422,41.8023127907416],[-87.60178551737476,41.80231059360853],[-87.60198205645298,41.802308222621214],[-87.60211917031828,41.802306682448865],[-87.60223310174187,41.80230540237155],[-87.60246089118917,41.80230284525283],[-87.60288539770778,41.80229841711197],[-87.60320283241036,41.802295104131176],[-87.60332879090008,41.80229406626242],[-87.6034768353907,41.802292427354104],[-87.60378356992953,41.80228644320756],[-87.60395807821077,41.802283286484816],[-87.60420231914537,41.80228130567742],[-87.60452468867678,41.80227869024411],[-87.60479437631945,41.80227665035344],[-87.60492328502554,41.80227567500165],[-87.60521320841227,41.802272765444805],[-87.60555816153949,41.802268447471825],[-87.60585583763633,41.80226429559903],[-87.60621993191462,41.80225707238694]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3488551.75528","perimeter":"0.0","tract_cent":"1178941.86272077","census_t_1":"17031380300","tract_numa":"29","tract_comm":"38","objectid":"79","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1877881.32987116","census_tra":"380300","tract_ce_3":"41.82020254","tract_crea":"","tract_ce_2":"-87.61907055","shape_len":"7910.45823651"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62109406690833,41.81656904286669],[-87.62140742832896,41.8165639908571],[-87.62141468822279,41.81681098962528],[-87.62142140930636,41.817052088151215],[-87.62142585976335,41.817292843281564],[-87.62143143882929,41.817514505263965],[-87.6214383196536,41.817724594478385],[-87.62144369575402,41.817898340201424],[-87.6214493547661,41.81807307561021],[-87.62145334323323,41.81818331027778],[-87.6214575313612,41.818366112953015],[-87.62146189958194,41.81855680377461],[-87.62146547915545,41.81872386975874],[-87.62147037368484,41.818884796719544],[-87.62147819862992,41.81912562757073],[-87.62147815707338,41.819171017558176],[-87.62150651717653,41.820169693538816],[-87.62151250547697,41.820380575705364],[-87.62153994730748,41.82138432542504],[-87.62154978956586,41.821742606958594],[-87.62155147361122,41.82180391587706],[-87.62155399702468,41.82189577152446],[-87.62155730300094,41.82201611507053],[-87.62156498940018,41.82229590669759],[-87.62157757228955,41.82275394919772],[-87.6215935915653,41.823424335964134],[-87.62160197732236,41.823775267423855],[-87.62095332331077,41.82378340645709],[-87.62039535937376,41.82379026692264],[-87.61998816930561,41.823795271862544],[-87.61917760591544,41.82380523061374],[-87.61886174703943,41.82380910972198],[-87.6185513181061,41.823812918018106],[-87.61821435997896,41.82381705071321],[-87.61794972729027,41.82382029561154],[-87.6177099688686,41.823823235209524],[-87.61725854541706,41.823830117912095],[-87.6169968247497,41.82383410764626],[-87.61673229763211,41.823838139374836],[-87.61672560557774,41.823573709016294],[-87.61671537774478,41.82321433808808],[-87.61670728514831,41.82288063937442],[-87.61670200921732,41.822651594454946],[-87.61669472707433,41.82233543939005],[-87.61668730341589,41.82209577554518],[-87.61668274960822,41.82194875198539],[-87.61668117158455,41.821895065325656],[-87.61667442470068,41.82166551886695],[-87.61667093395094,41.82153440332491],[-87.61666597203019,41.82135469514633],[-87.61665862532368,41.8210886024994],[-87.61664955727899,41.820760166298584],[-87.61664089213541,41.820497595352066],[-87.61663341355228,41.820237848515745],[-87.61662539610711,41.81995934725407],[-87.61661417544018,41.819610096259],[-87.61660587572399,41.819335699457184],[-87.6165999768593,41.819140682484665],[-87.61659602331622,41.81894814721317],[-87.61659051125487,41.81873183682326],[-87.6165825406086,41.81843807708257],[-87.61657748515022,41.81825175507671],[-87.61657393588854,41.81804695540498],[-87.61656888236989,41.81786187765107],[-87.6165642954424,41.817707401430056],[-87.61655834287959,41.81753870108187],[-87.61655230892649,41.81736769558131],[-87.61654691529081,41.817213159427205],[-87.61653927558633,41.81699686313663],[-87.6165342600691,41.816847900203705],[-87.6165289977005,41.816638075182965],[-87.61679234059298,41.81663500960243],[-87.61705259789852,41.81663197906254],[-87.61740268939441,41.81662790165607],[-87.61773169782295,41.816622706920796],[-87.6177361440755,41.81662263363097],[-87.61799426070438,41.81661838727647],[-87.61834858881784,41.81661150265349],[-87.61867883265131,41.816605085107135],[-87.61897805644992,41.816599580466885],[-87.61907891406938,41.81659796091984],[-87.61912057956758,41.81659730889479],[-87.61930699118,41.81659439201173],[-87.61945558721659,41.81659226946565],[-87.61979153393668,41.81658680074883],[-87.6201156616521,41.81658152331018],[-87.62040499996635,41.81657752905839],[-87.62059538631193,41.816575664404375],[-87.62073431661656,41.81657430351001],[-87.62109406690833,41.81656904286669]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"442166.190039","perimeter":"0.0","tract_cent":"1161409.5592492","census_t_1":"17031281100","tract_numa":"2","tract_comm":"28","objectid":"118","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900311.26868113","census_tra":"281100","tract_ce_3":"41.88213452","tract_crea":"","tract_ce_2":"-87.68276344","shape_len":"2659.640349"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68341503212835,41.88120932576921],[-87.68395997484052,41.881200549232936],[-87.68395308685575,41.88128705967945],[-87.68395920202339,41.88139634268106],[-87.68396811768348,41.8816473543597],[-87.68397275221021,41.88183157432665],[-87.68398207574522,41.88211604530819],[-87.68398950119811,41.882342592637556],[-87.68399640750138,41.882575662288374],[-87.68400270904942,41.88278986950923],[-87.68401259568905,41.88302846643661],[-87.68363160926606,41.88303464289493],[-87.68320982211543,41.883041037721746],[-87.68269981334592,41.88304879674183],[-87.68234832357025,41.88305415937781],[-87.68180320203722,41.88306248403031],[-87.68157018886178,41.883067048218855],[-87.68156201523892,41.88274382583512],[-87.68155713264912,41.88259780895727],[-87.6815545238872,41.88251979804264],[-87.68155142283109,41.882427464038805],[-87.68154327754765,41.88215342551403],[-87.68153872528963,41.88200027765318],[-87.68153474420443,41.8818825269342],[-87.68152760151848,41.881671179774216],[-87.68152256656491,41.881505227529544],[-87.68152786393249,41.881241253762944],[-87.68341503212835,41.88120932576921]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6583578.27536","perimeter":"0.0","tract_cent":"1187598.18573942","census_t_1":"17031390700","tract_numa":"31","tract_comm":"39","objectid":"74","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872746.97794272","census_tra":"390700","tract_ce_3":"41.8059117","tract_crea":"","tract_ce_2":"-87.58747926","shape_len":"11699.1487125"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5808947335613,41.80419390695469],[-87.58089471268245,41.804193904622515],[-87.58084864110158,41.804194400867395],[-87.58084802190848,41.80419440751393],[-87.58079016877504,41.80419503100617],[-87.58070526180032,41.80420573037963],[-87.58070385020359,41.80420590829053],[-87.58070383516699,41.80420590819202],[-87.58070383259975,41.80420590817519],[-87.58066623888787,41.80420566213213],[-87.58066609255606,41.80420566117333],[-87.58066608778834,41.804205661142085],[-87.58066592788691,41.804205660094375],[-87.58054547975738,41.80415547414131],[-87.58043792157493,41.804100789332],[-87.58033619680582,41.804048636383754],[-87.58033248933855,41.80404673581967],[-87.58033232418282,41.804046651036636],[-87.58033219184142,41.804046582934376],[-87.58025615223005,41.80401589742751],[-87.58020246486971,41.80398756811085],[-87.58017716058126,41.80397421541343],[-87.58015350365235,41.80395636988122],[-87.58011477351228,41.80392715312337],[-87.58006759997124,41.803865148365034],[-87.58004552960236,41.80383613879872],[-87.58002490892893,41.80377107374029],[-87.58002489964369,41.803770989704574],[-87.58002479022197,41.80376999830354],[-87.58001880881154,41.803715681698684],[-87.58001469159747,41.80365069769537],[-87.58001727558921,41.80358669069089],[-87.5800299596594,41.803546515621754],[-87.580059823944,41.80350189716532],[-87.5800875334362,41.803484707602465],[-87.58011031115797,41.803472041192585],[-87.58019069626714,41.803355470285325],[-87.58040896327343,41.802994970925916],[-87.58040896439934,41.80299496873788],[-87.58040896551884,41.80299496709864],[-87.58044752295947,41.802931283948915],[-87.58044323144225,41.802929495917496],[-87.58028926626282,41.802865342831744],[-87.58033537397657,41.80273876155908],[-87.58034647417769,41.80267673574495],[-87.58034647887413,41.8026767105284],[-87.5803640233003,41.80257867594709],[-87.58036929932986,41.80255620554525],[-87.58037662084516,41.80252502285026],[-87.58060742532095,41.80258424623629],[-87.5806081932176,41.80258444364187],[-87.58104820819877,41.80263397933838],[-87.5816280814388,41.80244075118723],[-87.58164791298117,41.80243414266394],[-87.5826480144993,41.802533988035464],[-87.58382356047966,41.802530097316605],[-87.58404609836455,41.802525099775835],[-87.58425599329414,41.80252235226969],[-87.58446906658881,41.80252029799667],[-87.58461256555857,41.80251891392958],[-87.58488929178124,41.802515585461094],[-87.58494537507106,41.802514909676624],[-87.58523043503303,41.80251147468851],[-87.58532301177327,41.802510359089155],[-87.58540606339282,41.80250935812941],[-87.58552670193717,41.80250790475657],[-87.58558415197106,41.80250721258461],[-87.58586404291029,41.80250296931379],[-87.58608282133807,41.802499507875744],[-87.58629250890691,41.80249568503092],[-87.58631195801753,41.80249534306329],[-87.58644214249186,41.80249305260448],[-87.5865830790355,41.80249057256043],[-87.58664669271955,41.80248945312338],[-87.58680584622007,41.80248664582129],[-87.5868058645633,41.802486645391646],[-87.58702079513589,41.80248609381085],[-87.58709675762165,41.80248498794115],[-87.58717814107152,41.802483803071404],[-87.58727031069405,41.80248246097152],[-87.58732301616202,41.80248167893636],[-87.58732305174826,41.802481678069746],[-87.58747023806995,41.80247943703341],[-87.58754106735168,41.80247835846288],[-87.58769609982825,41.8024767526078],[-87.58785733381043,41.80247521972027],[-87.58819966541854,41.80247214929288],[-87.58838689638708,41.802469192336744],[-87.58872771578,41.80246415715247],[-87.58915454937652,41.80245529780114],[-87.58934435861653,41.80245135761896],[-87.58961858213814,41.80244876994357],[-87.58985217709854,41.80244534236478],[-87.5901712440441,41.80244057374914],[-87.59050700623399,41.802437441868626],[-87.5907619453322,41.80243506320657],[-87.59107381686324,41.80243087675347],[-87.59132309641083,41.80242859035462],[-87.59154186531391,41.80242594173888],[-87.59185231662885,41.80242134306179],[-87.5918548099528,41.80264042408308],[-87.59185713143484,41.802763547328766],[-87.59186123592357,41.80297375798281],[-87.5918634011103,41.80309723696848],[-87.59186431166829,41.803149164560786],[-87.59186854572282,41.80338319635765],[-87.59187206849295,41.803564368789175],[-87.59187388882928,41.80371314749039],[-87.59187486341729,41.803792765513506],[-87.59187770035247,41.80402066853029],[-87.59188226806326,41.80423546891155],[-87.59189013894968,41.804605608944335],[-87.59189342486385,41.80476279483712],[-87.59189824253396,41.80500341659726],[-87.59190304069551,41.805207621682904],[-87.5919040386176,41.8052625685233],[-87.59190607469357,41.80536121093211],[-87.59190834868978,41.80550755038438],[-87.59191143910446,41.805713445880365],[-87.59191603280831,41.806054270899],[-87.59191997906771,41.80634709928592],[-87.59192362609072,41.806552504375034],[-87.5919274762845,41.80681663825234],[-87.59193167722162,41.807069440526355],[-87.59193646216026,41.80728113732324],[-87.59193950348613,41.8074818183174],[-87.5919487535862,41.80787613778879],[-87.59195315222361,41.80806363771658],[-87.59195747532135,41.80827124280167],[-87.59196368166896,41.80856928331803],[-87.59196665371088,41.80863931442062],[-87.5919698827569,41.808715401049575],[-87.59196983522787,41.809053522739525],[-87.59196965598618,41.809298180456196],[-87.5920212989366,41.809340945707724],[-87.59207851371178,41.80938832433971],[-87.59213191281145,41.80943254353824],[-87.59218803774135,41.80947901935194],[-87.59222522598256,41.809509814579464],[-87.59243235061106,41.80968560802832],[-87.59220103973549,41.809686033001235],[-87.59207491806869,41.80969995594873],[-87.5919170207465,41.809740210793485],[-87.59176880053681,41.809777838505724],[-87.59169466783017,41.80980706501546],[-87.59152518091174,41.80987388425301],[-87.59139652900878,41.80992460426832],[-87.59133108813153,41.80995040392465],[-87.59130633743246,41.80996016157347],[-87.59120062850896,41.81000164552904],[-87.59103739212868,41.81006550520909],[-87.59072069880173,41.810189397634105],[-87.59048756884896,41.81028059865436],[-87.59023183998129,41.810380830404156],[-87.59001849548275,41.81046444924797],[-87.58973493002867,41.810577561394076],[-87.58955056041302,41.81065110471902],[-87.5894063063618,41.81070768943748],[-87.58931176174454,41.81074477544875],[-87.58921999281925,41.8107807723229],[-87.58907442822193,41.810837870642196],[-87.58884318215166,41.810928577487665],[-87.58719348612868,41.81157774516126],[-87.58719562513798,41.81156357638136],[-87.58719623988057,41.81155950266014],[-87.58721178463163,41.81153496061416],[-87.58722037409069,41.81151965479263],[-87.58722092469606,41.81151867372408],[-87.58722096102292,41.81151860946964],[-87.58722165997906,41.81150895417075],[-87.58720937146605,41.8114933859527],[-87.58720650331281,41.81148975256704],[-87.58720644114553,41.81148967285377],[-87.58719564739263,41.81148567486539],[-87.58717966823987,41.811479756505875],[-87.58717475099095,41.811478625483566],[-87.58716793064507,41.811477056736635],[-87.5871527790354,41.8114735718812],[-87.58713057942708,41.81145523259625],[-87.58712965075628,41.81145497052285],[-87.5871131829455,41.81145032259651],[-87.58709624824232,41.8114455429283],[-87.58709022478533,41.811442348707025],[-87.5870654419286,41.81142920592168],[-87.58704108289253,41.811404074511636],[-87.58701236147165,41.81135956104615],[-87.58699204195206,41.81132806967441],[-87.58698813412514,41.81131714897322],[-87.58698829753652,41.81130307219154],[-87.58699789352185,41.81127272827519],[-87.586996243939,41.811250515569476],[-87.58698610840378,41.81122619116945],[-87.5869688134049,41.81120881704691],[-87.58696879734272,41.81120881035629],[-87.5869594875058,41.81120505744603],[-87.5869404446789,41.8111973809242],[-87.58693432763725,41.81117450882919],[-87.58694102510236,41.811147384324336],[-87.58694563620746,41.81111039432379],[-87.58695234576123,41.81108848374],[-87.5869673485977,41.8110822145105],[-87.58699519172275,41.811075726288415],[-87.5870030164593,41.811067932899206],[-87.58700792023957,41.81106304812142],[-87.58701042008688,41.8110435816745],[-87.58701042047596,41.81104357975603],[-87.58699776256978,41.811021736255945],[-87.58699746312458,41.811008664986424],[-87.58699705619931,41.810990885767694],[-87.587002873384,41.810963782707155],[-87.58699257489337,41.81093770009004],[-87.5869887886757,41.81090685730758],[-87.586996567558,41.81087817531466],[-87.58700613341816,41.810837717456934],[-87.58700671283128,41.81083526564628],[-87.58701503944248,41.81077203654235],[-87.5870165175585,41.81076509627516],[-87.58702303162049,41.81073452019776],[-87.58703058860672,41.81068924241692],[-87.58703268986814,41.81067665107506],[-87.58703472234885,41.81065785036909],[-87.58703696446138,41.810637106158836],[-87.58703500887037,41.81060649508603],[-87.58703316344084,41.81056949057304],[-87.58703281353688,41.810566643586505],[-87.58702971215699,41.81054139396447],[-87.58702432563005,41.810487159579026],[-87.58702031019237,41.81046039082565],[-87.58701744860315,41.81044131298396],[-87.5870086461642,41.81040014631065],[-87.5870019343174,41.81037265091701],[-87.58700048710132,41.81036672321508],[-87.58699711292692,41.810352178050934],[-87.58699210321059,41.810330581004486],[-87.58698649073054,41.81030652775906],[-87.58697910423143,41.81027487068108],[-87.58696777049491,41.81024005481873],[-87.58696122626364,41.81021733499726],[-87.58695599441589,41.8101991706887],[-87.58694756027428,41.810173649032805],[-87.58694631699696,41.810170155727604],[-87.58694147478207,41.81015596628518],[-87.58692474913143,41.81010695246367],[-87.58689180220932,41.81004586463331],[-87.5868855373699,41.810034248579136],[-87.5868476392589,41.809971652416785],[-87.5868299841037,41.80994309054692],[-87.58681415474514,41.809917482675075],[-87.5868007823325,41.80989373354805],[-87.5867865175532,41.80986839929062],[-87.58677316522947,41.80983616143061],[-87.58676796338754,41.80982360193653],[-87.58674735873515,41.809794352104376],[-87.58673485881461,41.80978492908074],[-87.58671386938673,41.80976910611686],[-87.58667375752599,41.80974236288241],[-87.58665826571132,41.80972822303033],[-87.58664214344117,41.80971350799471],[-87.58660665778835,41.80967065820763],[-87.58658289730532,41.80963834113818],[-87.58656442314579,41.809616738867476],[-87.58654877138235,41.80959843681904],[-87.58654014854193,41.809585202759926],[-87.58652564572634,41.80956294462397],[-87.58652515741218,41.809562195006926],[-87.58651756238332,41.80955053872469],[-87.5864798029737,41.8094886563008],[-87.58646375084795,41.809461122097396],[-87.58645095993431,41.80943918216643],[-87.58643515956464,41.8093973664763],[-87.58643853427071,41.80938273729256],[-87.58644141727902,41.809370239133],[-87.58646112867582,41.809349106862236],[-87.58647419519156,41.80933509832874],[-87.58647421376304,41.80933507841629],[-87.58647666135018,41.809328802534445],[-87.58648362835184,41.80931093513659],[-87.58647584191547,41.809301581698605],[-87.5864672639533,41.80929127798595],[-87.5864672046308,41.80929120624913],[-87.58643223547176,41.80928280149278],[-87.58638838712469,41.8092588607378],[-87.58636540742984,41.80925568849146],[-87.58633957089421,41.809252121148226],[-87.58633943900449,41.80925204427418],[-87.58632936410196,41.8092461644647],[-87.58629625133766,41.80922683965164],[-87.5862961490992,41.809226704791776],[-87.586295467719,41.80922580874608],[-87.58627262390516,41.80919575802997],[-87.58628057252463,41.8091682292272],[-87.58628797267693,41.80913433096567],[-87.58628877553745,41.80912423451641],[-87.58629097906604,41.80909653470352],[-87.5862612726044,41.80909535466576],[-87.5862455535702,41.809094730198105],[-87.58624246145017,41.80909337060764],[-87.58622230741128,41.80908450670041],[-87.58620239385122,41.80904838191765],[-87.58620150798426,41.80904677542108],[-87.58616422238148,41.80896939109982],[-87.58614718544952,41.80893388875806],[-87.58614155315566,41.80892215163711],[-87.5861373269793,41.80891257819147],[-87.58611760784802,41.80886790624564],[-87.58610983496251,41.80885064140417],[-87.58610541503037,41.80884082355423],[-87.58610374783335,41.808832245910224],[-87.58610167600027,41.808821589865445],[-87.58610320008225,41.80880883643759],[-87.58610476530231,41.808795730912564],[-87.5861158967105,41.80878060306497],[-87.58612269153768,41.80877136832663],[-87.58612858621164,41.80876134643787],[-87.58613938059845,41.808742992148524],[-87.58614196663193,41.80873569301083],[-87.58614817895074,41.80871815854264],[-87.5861353268948,41.80869790343489],[-87.58613078112926,41.808690739303074],[-87.58610687261506,41.80865542990949],[-87.58610479540715,41.80865224374245],[-87.58610089001802,41.80864625283564],[-87.58603104412856,41.80853641143942],[-87.5859680982042,41.808460946305416],[-87.58592421436211,41.80838019812412],[-87.58591471327003,41.80836315089588],[-87.5859032306237,41.80834254791585],[-87.58590203659682,41.80834116800968],[-87.5858321868034,41.80825061898206],[-87.5857635007419,41.80816416645249],[-87.5857052470215,41.80807322628534],[-87.58570114713055,41.80805942663925],[-87.58568346764406,41.807999922463964],[-87.58568493019918,41.807992181879165],[-87.58568674022028,41.807982602148044],[-87.58568675115346,41.80798254513831],[-87.58569840448278,41.807977132162684],[-87.58569190583539,41.80795881437332],[-87.58569190549096,41.807958812450096],[-87.58566689123177,41.807901926045346],[-87.58562533441707,41.80784814193487],[-87.58561080094115,41.807847537721386],[-87.58558621663552,41.807846515166865],[-87.58558330815609,41.807842049961295],[-87.58558142382209,41.807839157305125],[-87.58554764834797,41.807788996863714],[-87.5855285285516,41.807760600609555],[-87.58549321448251,41.807696813596195],[-87.58548350668225,41.80767475613584],[-87.58548143261042,41.80767004416111],[-87.58547884038383,41.80766415453805],[-87.58545808724779,41.80761700040372],[-87.58540417376672,41.8075429491548],[-87.58538949158019,41.807522782484554],[-87.58536430593439,41.80749022123843],[-87.58533225306533,41.807448780902],[-87.58530980987041,41.80742149525656],[-87.58527438393236,41.8073784250682],[-87.5852333298837,41.807328427068306],[-87.5852177474288,41.80730944936948],[-87.58515769804364,41.80721528641826],[-87.58509467392673,41.80714885031765],[-87.58501276012845,41.80706250134135],[-87.5849505689924,41.80699486173398],[-87.584914582391,41.80695938173562],[-87.58489497831326,41.806940053142156],[-87.58485265621755,41.806908353796004],[-87.58481861814631,41.806882858882396],[-87.58474211932248,41.80682536207215],[-87.58472469777819,41.806812267844975],[-87.58467033842366,41.80675748802428],[-87.58467031739433,41.806757467030735],[-87.58460136219792,41.80669436581113],[-87.58457013241004,41.80666613579721],[-87.58452390446203,41.8066243481635],[-87.58449480401843,41.80660357667741],[-87.58445155042416,41.80657782179479],[-87.58439769174505,41.806545752332994],[-87.58437179705385,41.80652400883795],[-87.58435105195862,41.80650658986139],[-87.58433649886693,41.806496423483296],[-87.58432254786251,41.80648809914434],[-87.58425646158632,41.80644010993272],[-87.58417029408216,41.806387407054636],[-87.58405361824055,41.80632764387999],[-87.58390302316184,41.80623884551206],[-87.58380308237591,41.80615951508758],[-87.58371168083747,41.80608431719562],[-87.58368261132344,41.8060604010401],[-87.58364931084054,41.80603180791427],[-87.58360411711938,41.80600481088861],[-87.58353941688425,41.80596616139149],[-87.58345930603166,41.80591624151142],[-87.5834333395686,41.80589560602187],[-87.58341693205736,41.80588256678857],[-87.58336532840305,41.805850713815296],[-87.58331434751652,41.80581924524142],[-87.58325072995245,41.80578698473558],[-87.58319828678769,41.80576039137086],[-87.58311717540089,41.80568941612938],[-87.5830602694458,41.805643764478674],[-87.5830010379166,41.80560473573552],[-87.58297895609512,41.80559018597354],[-87.58297421105831,41.80558924058574],[-87.5829551701658,41.80558544710977],[-87.58290105371042,41.80558292478826],[-87.5828983497944,41.80558279872515],[-87.58288093072959,41.80555861544129],[-87.58286889681384,41.80554190871248],[-87.58284658907114,41.805526136246684],[-87.58281796866987,41.80550589985914],[-87.5827215202616,41.80544168509193],[-87.58267023622057,41.80540416065395],[-87.58266752211347,41.80540217472365],[-87.58261241810223,41.80536185467666],[-87.58259821494111,41.8053523918008],[-87.58251206799702,41.80529499564648],[-87.58250147634261,41.80528793839482],[-87.5824619612682,41.805261611139436],[-87.58240204378016,41.80521969775993],[-87.58238010467004,41.80520435132891],[-87.5823747923366,41.80520066698878],[-87.58225337918388,41.805116639884226],[-87.58201337524957,41.804939436496824],[-87.58174245438441,41.804740076120865],[-87.58162615377381,41.80464875403643],[-87.58159952478788,41.80462621475567],[-87.58156631857139,41.80459810847299],[-87.58156622777598,41.80459803158793],[-87.58156573941979,41.80459760742009],[-87.58153492473785,41.804570933923195],[-87.58150553635787,41.80454549397427],[-87.58144049474721,41.80446183411705],[-87.58136697689827,41.80437725236784],[-87.58136691899517,41.80437718557734],[-87.58126929083696,41.804310683837606],[-87.58123513999182,41.804291494559486],[-87.58116966959128,41.804254707255936],[-87.58112035645767,41.8042374518955],[-87.58110504792326,41.80423291305851],[-87.58103204997269,41.80421126951439],[-87.58103200895488,41.80421126430605],[-87.58089474527792,41.80419390867801],[-87.5808947335613,41.80419390695469]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15747612.7884","perimeter":"0.0","tract_cent":"1180627.63533949","census_t_1":"17031400300","tract_numa":"26","tract_comm":"40","objectid":"75","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1868018.30264984","census_tra":"400300","tract_ce_3":"41.79309895","tract_crea":"","tract_ce_2":"-87.61318962","shape_len":"19900.0408644"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60631308082122,41.79841951910426],[-87.60629918420679,41.79775089736164],[-87.60628844280393,41.79729950476208],[-87.60628185636894,41.796921850076046],[-87.60628070231468,41.796881189822074],[-87.60627733560206,41.796798850248145],[-87.60627199799134,41.796580536377064],[-87.60626636441708,41.796326243102],[-87.60626216559187,41.79616885945824],[-87.60625556007535,41.79590643694112],[-87.60625071777754,41.79565670415102],[-87.60624210838797,41.79528608935597],[-87.60621151874493,41.795062621001314],[-87.60621549757323,41.794965361680696],[-87.60622221130579,41.794801240977684],[-87.60618985656565,41.793154796299],[-87.6061604926302,41.791618498161895],[-87.60615523591095,41.79145092640072],[-87.6061530942261,41.79132525019434],[-87.6061491283377,41.791092594115725],[-87.60614503501141,41.79088367335193],[-87.60614056426903,41.79064335558753],[-87.60613616995096,41.79041574433027],[-87.60613106482481,41.790153660360055],[-87.60612635280452,41.78990867575513],[-87.60612312599673,41.789739991637],[-87.60611799628794,41.78951347340232],[-87.60611287667483,41.78928739430804],[-87.60611062025762,41.78913018742284],[-87.60610680105822,41.7888678919916],[-87.60610328602895,41.788676016814435],[-87.60609482749283,41.78841865914855],[-87.6060872875377,41.78816756425507],[-87.60608179630286,41.78789430849838],[-87.60607978329169,41.78769555464202],[-87.6060777066882,41.78749048852067],[-87.60606392588551,41.78733416912906],[-87.60605948794417,41.787129782624326],[-87.60605396638803,41.78687550857321],[-87.60605058593283,41.78672361841967],[-87.60604833430234,41.78662439824661],[-87.60604436330209,41.78641552584477],[-87.60604000970264,41.78618652222671],[-87.60603648432159,41.7860409704374],[-87.60603749216132,41.78587406578994],[-87.60626871775928,41.78587042862491],[-87.60640513720259,41.78586882536634],[-87.60679841839607,41.78586318688845],[-87.60746869049882,41.78585024470469],[-87.60808039300834,41.785838410780634],[-87.60853945669645,41.78582932122919],[-87.60856514656089,41.78582881260382],[-87.60884972835453,41.7858231769513],[-87.60939572933283,41.78581405014622],[-87.6097204071917,41.78580827449028],[-87.61005839788172,41.785802252419444],[-87.6106795827884,41.7857916169523],[-87.61091759966195,41.78578762208766],[-87.61114820178419,41.785783751361144],[-87.61187490556046,41.7857705893456],[-87.61208750470804,41.78576699034116],[-87.61243895058696,41.785761039976094],[-87.61300285558518,41.78575088321556],[-87.6132758574094,41.78574611817406],[-87.61359826043112,41.785740481954555],[-87.61417987245176,41.78573054012147],[-87.61446303518589,41.78572538744891],[-87.61470391303423,41.785721003621184],[-87.61526675237559,41.7857109937364],[-87.61557373358885,41.785703919382286],[-87.61575954154117,41.78569891455305],[-87.61576022532681,41.78572588281171],[-87.61576570661667,41.78594202439668],[-87.61577757679768,41.78647976185997],[-87.615782613203,41.786707923080414],[-87.61579357900807,41.78719768196201],[-87.61580221117987,41.7875227139259],[-87.61580566464839,41.78765276002561],[-87.61581820045637,41.78816612948644],[-87.61583632897616,41.788894932769466],[-87.61584764494745,41.78935425925678],[-87.61585223211766,41.78954046046141],[-87.61586932405224,41.790224058729734],[-87.61588508994967,41.79094112890027],[-87.61588944587574,41.791171758566676],[-87.6158930212143,41.791361108770325],[-87.6159024379469,41.79172355025722],[-87.61591360693927,41.79215241432565],[-87.61592824465153,41.792740550782824],[-87.61593549209931,41.79300154993106],[-87.61594321052222,41.793279511677326],[-87.61595494343264,41.793733544222626],[-87.61595792906319,41.79392225974819],[-87.61595958941983,41.794027211485925],[-87.61596811559996,41.79430838903663],[-87.61597293859153,41.794487135061786],[-87.6159783053952,41.794650856787044],[-87.61598107423958,41.79480081041145],[-87.61624306933963,41.794802923939265],[-87.61683308653095,41.794793103613436],[-87.61725848870225,41.79478601392189],[-87.6176058035885,41.79477996088749],[-87.61781406896411,41.79477633037274],[-87.61828675500603,41.79476757634892],[-87.61835139349624,41.794766400435996],[-87.61922512598892,41.794750500291194],[-87.61944069732364,41.794746576342575],[-87.61995761479903,41.79473774013709],[-87.62057870152503,41.79472710556335],[-87.62084610148699,41.79472287237178],[-87.62115286699947,41.79471801541952],[-87.62166075712966,41.79470968282602],[-87.622216843939,41.79470053902954],[-87.62246558565197,41.794693951896676],[-87.62269140938102,41.79468797081918],[-87.62327977461742,41.79467812938441],[-87.62386949667679,41.79466827630057],[-87.62408850027556,41.79466459177756],[-87.62429427452798,41.794661129250166],[-87.62455631683561,41.79465594050549],[-87.62464189139217,41.794654246140816],[-87.62495642260087,41.7946480350366],[-87.62537020693962,41.79464012987038],[-87.62570104497442,41.794643186420295],[-87.62570394254467,41.79473829120489],[-87.62571153405158,41.79506831054243],[-87.6257203080807,41.795417519680726],[-87.6257290533386,41.79572907706448],[-87.62573300778683,41.795869965441845],[-87.62574160732869,41.79623085147468],[-87.62574364617389,41.79631641593448],[-87.62574823047937,41.796474762360226],[-87.62575300051,41.79663953044785],[-87.62576903080618,41.797272652697586],[-87.62577583766868,41.7975448856564],[-87.62578535643154,41.797925590407885],[-87.62579152744405,41.79811440753594],[-87.62505790403789,41.79812772445937],[-87.6249930506204,41.7981289050107],[-87.62460353172335,41.79813599414778],[-87.62417900896867,41.79814406979672],[-87.623970991386,41.798148048989205],[-87.62344668005832,41.79815647331798],[-87.62336928663137,41.798157720082386],[-87.62294063493144,41.79816462401456],[-87.62255567560747,41.7981737758735],[-87.62226004246237,41.798180803181694],[-87.62174425362966,41.7981879094079],[-87.62168413534819,41.7981887345951],[-87.62092611437649,41.79819910307965],[-87.62092298741265,41.798373452281574],[-87.62016822615473,41.79838932673314],[-87.62013087757315,41.79839001858444],[-87.61954691091876,41.79840083577437],[-87.61931853937791,41.79840506069747],[-87.61846351631783,41.79842087481834],[-87.61838878011275,41.79842233317364],[-87.61791133494448,41.79843212737623],[-87.61769669883847,41.79843591869101],[-87.61741056037035,41.79844097259816],[-87.61689144254287,41.79845032528545],[-87.61663313131066,41.79845497807194],[-87.61607360019147,41.79846501483377],[-87.61607542290271,41.79852960764293],[-87.61404909317353,41.79843289932084],[-87.61393480256858,41.798434921878936],[-87.60804898328668,41.798533073675216],[-87.60789196175253,41.79853307560766],[-87.60644907125105,41.798532908880695],[-87.60631586723575,41.798533091472954],[-87.60631500072923,41.798493983568484],[-87.60631308082122,41.79841951910426]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"812675.063145","perimeter":"0.0","tract_cent":"1183105.17810376","census_t_1":"17031410400","tract_numa":"5","tract_comm":"41","objectid":"76","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871086.82509905","census_tra":"410400","tract_ce_3":"41.80146192","tract_crea":"","tract_ce_2":"-87.60400938","shape_len":"4067.45780736"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60624052035718,41.80043593811241],[-87.60635325148068,41.80043415649118],[-87.60635890164019,41.80072206737868],[-87.60636302644299,41.800878407876645],[-87.60636958267432,41.80112691608587],[-87.60637805088118,41.80137996471779],[-87.60638620378867,41.801623597919125],[-87.60638861095393,41.80169552504641],[-87.60640720551974,41.80225116311801],[-87.60621993191462,41.80225707238694],[-87.60585583763633,41.80226429559903],[-87.60555816153949,41.802268447471825],[-87.60521320841227,41.802272765444805],[-87.60492328502554,41.80227567500165],[-87.60479437631945,41.80227665035344],[-87.60452468867678,41.80227869024411],[-87.60420231914537,41.80228130567742],[-87.60395807821077,41.802283286484816],[-87.60378356992953,41.80228644320756],[-87.6034768353907,41.802292427354104],[-87.60332879090008,41.80229406626242],[-87.60320283241036,41.802295104131176],[-87.60288539770778,41.80229841711197],[-87.60246089118917,41.80230284525283],[-87.60223310174187,41.80230540237155],[-87.60211917031828,41.802306682448865],[-87.60198205645298,41.802308222621214],[-87.60178551737476,41.80231059360853],[-87.60155846513422,41.8023127907416],[-87.60136743417368,41.802314638739],[-87.60135691687427,41.801901353186416],[-87.60135145933317,41.80164936652327],[-87.60134448805604,41.80137892837958],[-87.60133951931192,41.801167751677234],[-87.6013367207062,41.80100439467351],[-87.60133670311554,41.80087124107684],[-87.60168156287317,41.80086742920648],[-87.60195556389603,41.800864426447774],[-87.60209245167209,41.80086243672181],[-87.60222997880062,41.80086043772926],[-87.60246499024281,41.80085773445766],[-87.60285526933302,41.800853722017756],[-87.6032400354138,41.800849764871955],[-87.60341244826151,41.80084644224814],[-87.60394748161534,41.8008388086785],[-87.60394222962117,41.8006392113874],[-87.60393986084522,41.800469709691875],[-87.60453830041804,41.800459265140915],[-87.60495657675585,41.800453343013494],[-87.60499208417728,41.80045284009225],[-87.60536988878431,41.80044857535306],[-87.60542956644508,41.80044790163803],[-87.60576699379176,41.80044339811886],[-87.60624052035718,41.80043593811241]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2830552.76563","perimeter":"0.0","tract_cent":"1183188.29616044","census_t_1":"17031410500","tract_numa":"13","tract_comm":"41","objectid":"77","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869762.89738295","census_tra":"410500","tract_ce_3":"41.79782702","tract_crea":"","tract_ce_2":"-87.60374577","shape_len":"6976.61421225"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60574012982728,41.79496567184403],[-87.60621549757323,41.794965361680696],[-87.60621151874493,41.795062621001314],[-87.60624210838797,41.79528608935597],[-87.60625071777754,41.79565670415102],[-87.60625556007535,41.79590643694112],[-87.60626216559187,41.79616885945824],[-87.60626636441708,41.796326243102],[-87.60627199799134,41.796580536377064],[-87.60627733560206,41.796798850248145],[-87.60628070231468,41.796881189822074],[-87.60628185636894,41.796921850076046],[-87.60628844280393,41.79729950476208],[-87.60629918420679,41.79775089736164],[-87.60631308082122,41.79841951910426],[-87.60631500072923,41.798493983568484],[-87.60631586723575,41.798533091472954],[-87.60631763629861,41.79861285528306],[-87.60632509874723,41.798949433261164],[-87.60633581833179,41.7993703089301],[-87.60634088952972,41.79980421159074],[-87.60635325148068,41.80043415649118],[-87.60624052035718,41.80043593811241],[-87.60576699379176,41.80044339811886],[-87.60542956644508,41.80044790163803],[-87.60536988878431,41.80044857535306],[-87.60499208417728,41.80045284009225],[-87.60495657675585,41.800453343013494],[-87.60453830041804,41.800459265140915],[-87.60393986084522,41.800469709691875],[-87.60394222962117,41.8006392113874],[-87.60394748161534,41.8008388086785],[-87.60341244826151,41.80084644224814],[-87.6032400354138,41.800849764871955],[-87.60285526933302,41.800853722017756],[-87.60246499024281,41.80085773445766],[-87.60222997880062,41.80086043772926],[-87.60209245167209,41.80086243672181],[-87.60195556389603,41.800864426447774],[-87.60168156287317,41.80086742920648],[-87.60133670311554,41.80087124107684],[-87.60133668493515,41.80073688218625],[-87.60138454785556,41.800567728793766],[-87.60130834213756,41.79949239069953],[-87.60130573863253,41.79940370617743],[-87.60129309212367,41.79897296612721],[-87.60128790718889,41.798726057714745],[-87.60128141509286,41.79846201665727],[-87.6012798326093,41.798397955087836],[-87.60127659531152,41.79826996869982],[-87.60127225877521,41.79805160617287],[-87.60127075600553,41.79793449406232],[-87.60126891572055,41.79779109783037],[-87.60126417571165,41.79757599840718],[-87.60125942979042,41.79736142035142],[-87.60125247350047,41.797099352154326],[-87.60124716141247,41.79689585736485],[-87.60124320865687,41.79669215168855],[-87.60123846944522,41.79648533803506],[-87.60123424046351,41.79630081502592],[-87.60122853216875,41.79610310811502],[-87.6012251690652,41.7959676287129],[-87.60122493636189,41.795958269232635],[-87.60122080289159,41.79575437054603],[-87.60121692120762,41.79552190521807],[-87.60122655549308,41.79534103150878],[-87.60123370992852,41.79520672176954],[-87.60124706821951,41.795112431073875],[-87.60130998605767,41.79501472452065],[-87.60177055677426,41.79500997423139],[-87.60241253844518,41.795002729352795],[-87.60271267933055,41.79499934083307],[-87.60281537198628,41.79499819669192],[-87.60316750691794,41.794994272889156],[-87.60364829559254,41.79498964385068],[-87.60383539549527,41.79498763286329],[-87.60400964828166,41.7949857595506],[-87.60417148820183,41.794984019592285],[-87.60479988216514,41.794976206124495],[-87.60525771863226,41.79497115035736],[-87.60574012982728,41.79496567184403]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4958730.82462","perimeter":"0.0","tract_cent":"1175451.33773986","census_t_1":"17031370400","tract_numa":"27","tract_comm":"37","objectid":"78","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869821.74300173","census_tra":"370400","tract_ce_3":"41.79816519","tract_crea":"","tract_ce_2":"-87.63211648","shape_len":"9119.82298231"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62879823732874,41.80189303448802],[-87.62879419576586,41.80175910009636],[-87.62879453696779,41.8016023351999],[-87.62879480447897,41.801494281091614],[-87.62882428630404,41.80127217522175],[-87.62884483521164,41.8010284030717],[-87.62884901378962,41.80089807538633],[-87.6288419756959,41.80057798080285],[-87.62883244275869,41.80031824452445],[-87.62881699906879,41.79959365970189],[-87.62880936759306,41.79936961096689],[-87.62868512522542,41.79937022106228],[-87.62868320666828,41.79928058025289],[-87.62867997036719,41.79912937878087],[-87.62866036868536,41.79844970562047],[-87.62865750574709,41.79833442823789],[-87.62865532278585,41.79824060597507],[-87.62865320835621,41.7981409303041],[-87.62864916948153,41.797965614541056],[-87.62861132771555,41.79652394829032],[-87.62858277120131,41.79561575861967],[-87.62855836658753,41.794705193025784],[-87.62855540675663,41.79459928532757],[-87.6286283185116,41.79459763791361],[-87.62888586125844,41.794591818099796],[-87.62934093485805,41.794584152364116],[-87.6295659299127,41.79458309898727],[-87.62972175654235,41.79458236908076],[-87.6298409403229,41.79458219147804],[-87.6302046614702,41.794581648764556],[-87.63038799770167,41.79457711727291],[-87.6305132561522,41.79456321438635],[-87.63067187635679,41.79454862216647],[-87.63076858703336,41.79454610110667],[-87.63087850044653,41.79454323560971],[-87.63096658157069,41.79454093906132],[-87.63116501553476,41.794535765364714],[-87.63139707535497,41.79453466952887],[-87.63156778711343,41.794533863138774],[-87.63166309774779,41.79453341293991],[-87.63178163541761,41.794532852586755],[-87.63204089698131,41.79453162683211],[-87.63214028391592,41.794531156939044],[-87.63234348311302,41.79452774907071],[-87.63268375199958,41.79452204131526],[-87.63299844017199,41.79451455912322],[-87.63319450482338,41.79450989712252],[-87.63356572229745,41.79450771324457],[-87.63363126306555,41.794506948340654],[-87.63381153039694,41.79450472094164],[-87.63402814164652,41.79450224139267],[-87.63421212419902,41.794498933327915],[-87.63513647528052,41.79448230853144],[-87.63536213441537,41.794477908591894],[-87.6354043138894,41.794477086081685],[-87.63541047461715,41.79447696571451],[-87.63545749911522,41.79447604857857],[-87.63545875745208,41.7945288065704],[-87.63546088588703,41.79458610642294],[-87.63546858521623,41.79480603892253],[-87.63547026310253,41.794862649964266],[-87.63547350008595,41.79497968999486],[-87.6354735556242,41.79498170326421],[-87.63547940590745,41.79520299693163],[-87.63548499952009,41.79540576457003],[-87.6354911925661,41.79559550077171],[-87.63549364547305,41.79566515185864],[-87.63550115427766,41.79607169413022],[-87.63550550945965,41.79621956937957],[-87.63550729531129,41.79626623276301],[-87.63551386090451,41.79646386101175],[-87.63551317055244,41.79661204808788],[-87.63550544601028,41.79669021322184],[-87.63550078849836,41.79695054874436],[-87.63549167588019,41.79715665761261],[-87.63549541101897,41.797657511833506],[-87.63551174847186,41.79830663379261],[-87.63552517095769,41.79867513489239],[-87.63553117755583,41.7988398282829],[-87.63553914706425,41.79916164426087],[-87.63556416370324,41.79972917612482],[-87.63556664320083,41.79979642607645],[-87.63557708324238,41.80010179077031],[-87.63559567274474,41.800501196568725],[-87.63560235386738,41.8006459979653],[-87.63563364202207,41.80088905685097],[-87.63568358486793,41.80118745738597],[-87.63569929553852,41.80147192914228],[-87.63570500137132,41.80166440645772],[-87.63570849117217,41.80176526101826],[-87.6356479493253,41.80176632941435],[-87.63529173478258,41.801772613929266],[-87.63511556655222,41.801776499457766],[-87.63503442467967,41.80177828920344],[-87.63487814918071,41.80178173573232],[-87.63475792521338,41.801783053286876],[-87.63468365456167,41.801783866991116],[-87.63459194857336,41.80178487152571],[-87.63455602113333,41.80178526523288],[-87.63449611233712,41.801786699666486],[-87.63435138846909,41.80179016470923],[-87.63413560333368,41.801795330742145],[-87.63378923385073,41.801802086004216],[-87.63373215597254,41.80180298842266],[-87.63367280047257,41.80180423095257],[-87.63318351702539,41.80180978892857],[-87.63270590441603,41.80180788789357],[-87.63258187844367,41.80180675458657],[-87.63240790382899,41.801805164350625],[-87.63224769887852,41.80180192844459],[-87.63206474001211,41.80180344097408],[-87.6320055365082,41.80180453181158],[-87.6318746758192,41.80180694223844],[-87.63178741089646,41.801808549872206],[-87.63157430540222,41.8018124749683],[-87.63139024662549,41.80181586474994],[-87.6311758292911,41.8018198131986],[-87.63096284589112,41.8018237351621],[-87.6308608007781,41.80182561396523],[-87.63074229172719,41.801827795939715],[-87.63070796548752,41.80182842793269],[-87.63044406640944,41.80183328614328],[-87.63014712076885,41.801848126581255],[-87.63001815309194,41.801853862668416],[-87.62974759786793,41.80186589570756],[-87.62967039181302,41.80186932956018],[-87.62919455408691,41.80188226366572],[-87.6290857742907,41.801885220099265],[-87.62891771547388,41.80188978744885],[-87.62879823732874,41.80189303448802]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3412715.09804","perimeter":"0.0","tract_cent":"1178405.34655133","census_t_1":"17031381800","tract_numa":"15","tract_comm":"38","objectid":"82","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871917.96689239","census_tra":"381800","tract_ce_3":"41.80385078","tract_crea":"","tract_ce_2":"-87.62121999","shape_len":"7799.12508036"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62559601579937,41.801951244048034],[-87.62588976266044,41.801945797855375],[-87.6258939507983,41.802136644106426],[-87.62590346191018,41.80249902988919],[-87.62591094402967,41.80279243941824],[-87.62593265085187,41.80365990246379],[-87.62593349431785,41.80369052173414],[-87.62593691867106,41.80381484465225],[-87.62595106609015,41.80432845298058],[-87.62595333100582,41.80441067233735],[-87.62596970761493,41.80507255588605],[-87.62598066878601,41.80550317315908],[-87.62598222436469,41.80556315508925],[-87.62436129916527,41.80562003028902],[-87.62361328699068,41.80563146552047],[-87.62355420844567,41.80563240155764],[-87.62328682961977,41.805636638086376],[-87.62300109660207,41.80564077174862],[-87.62280557581319,41.80564406507466],[-87.62274248030636,41.80564512760618],[-87.62219666440423,41.80565431842997],[-87.62192976708121,41.80565758550131],[-87.62177678750298,41.80565945718747],[-87.62148213671283,41.805664053243056],[-87.62119092654989,41.805668627610935],[-87.62111906817736,41.805669756222166],[-87.6204949878432,41.80567955661011],[-87.62030444610681,41.80568263315823],[-87.62008246612665,41.805686217000094],[-87.61985762347068,41.805689924786215],[-87.61949721024618,41.8056951254017],[-87.61912375537511,41.80570051274002],[-87.6187819184757,41.80570667458867],[-87.61870651759763,41.80570783893078],[-87.61865579631036,41.80570862218594],[-87.61858911646786,41.80570965190266],[-87.61832336005381,41.805713755519726],[-87.61806094761101,41.805718086536785],[-87.617740214287,41.805723379144204],[-87.61749086618043,41.80572745132418],[-87.61741059763152,41.805728652265216],[-87.61717233457412,41.80573221654116],[-87.61699706082126,41.80573471702695],[-87.61676017486243,41.80573809556383],[-87.61649640523767,41.80574185717721],[-87.61648900603774,41.80546340654962],[-87.61648789373162,41.805418612728516],[-87.61648406123814,41.80524235132103],[-87.61647204118594,41.80476762607396],[-87.61646410750542,41.80443958049417],[-87.6164544956247,41.80403841685818],[-87.61645151145613,41.80392247801207],[-87.61651798662878,41.8039214831083],[-87.616549175172,41.802933022396054],[-87.61654885971157,41.80209782994795],[-87.61663458270729,41.802096524222556],[-87.61685103299662,41.80209322675309],[-87.61691645148345,41.80209222996433],[-87.6173462223889,41.802085734796506],[-87.6174653677229,41.802083933953035],[-87.6177465406197,41.802079477171475],[-87.61796538987333,41.802076007855874],[-87.61847205223887,41.80206797435985],[-87.61848686927542,41.802067726275546],[-87.61855086844588,41.80206665413524],[-87.61863129320528,41.802065306816665],[-87.61905740439147,41.80205816858062],[-87.61940709713681,41.802052985011706],[-87.61985043900457,41.80204641168375],[-87.62022464072594,41.80204031800896],[-87.62030765444837,41.80203896610383],[-87.62043116533312,41.80203695437052],[-87.62102683413576,41.80202683484484],[-87.62145825731652,41.802019503567166],[-87.62183981706103,41.802013114876694],[-87.62191287022749,41.80201189166849],[-87.62244828825932,41.80200357057325],[-87.62264934339152,41.80200087904341],[-87.62288850525395,41.80199767694788],[-87.62329390353122,41.801989563099376],[-87.62345336631321,41.80198670225811],[-87.62395945246224,41.80197762094445],[-87.62427297976497,41.80197290889302],[-87.62456129894048,41.80196857668551],[-87.62461727727626,41.80196763060255],[-87.62508751141742,41.80196021228354],[-87.62514990853188,41.80195922483367],[-87.62559601579937,41.801951244048034]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9038990.51573","perimeter":"0.0","tract_cent":"1186708.01879427","census_t_1":"17031390100","tract_numa":"14","tract_comm":"39","objectid":"83","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875635.22259332","census_tra":"390100","tract_ce_3":"41.81385839","tract_crea":"","tract_ce_2":"-87.59065246","shape_len":"12802.5097158"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58342701212543,41.81711185144467],[-87.58214076869127,41.815109049090616],[-87.58349678446064,41.81246694260795],[-87.5871131829455,41.81145032259651],[-87.58712965075628,41.81145497052285],[-87.58713057942708,41.81145523259625],[-87.5871527790354,41.8114735718812],[-87.58716793064507,41.811477056736635],[-87.58717475099095,41.811478625483566],[-87.58717966823987,41.811479756505875],[-87.58719564739263,41.81148567486539],[-87.58720644114553,41.81148967285377],[-87.58720650331281,41.81148975256704],[-87.58720937146605,41.8114933859527],[-87.58722165997906,41.81150895417075],[-87.58722096102292,41.81151860946964],[-87.58722092469606,41.81151867372408],[-87.58722037409069,41.81151965479263],[-87.58721178463163,41.81153496061416],[-87.58719623988057,41.81155950266014],[-87.58719562513798,41.81156357638136],[-87.58719348612868,41.81157774516126],[-87.58884318215166,41.810928577487665],[-87.58907442822193,41.810837870642196],[-87.58921999281925,41.8107807723229],[-87.58931176174454,41.81074477544875],[-87.5894063063618,41.81070768943748],[-87.58955056041302,41.81065110471902],[-87.58973493002867,41.810577561394076],[-87.59001849548275,41.81046444924797],[-87.59023183998129,41.810380830404156],[-87.59048756884896,41.81028059865436],[-87.59072069880173,41.810189397634105],[-87.59103739212868,41.81006550520909],[-87.59120062850896,41.81000164552904],[-87.59130633743246,41.80996016157347],[-87.59133108813153,41.80995040392465],[-87.59139652900878,41.80992460426832],[-87.59152518091174,41.80987388425301],[-87.59169466783017,41.80980706501546],[-87.59176880053681,41.809777838505724],[-87.5919170207465,41.809740210793485],[-87.59207491806869,41.80969995594873],[-87.59220103973549,41.809686033001235],[-87.59243235061106,41.80968560802832],[-87.59255530839523,41.809685381810894],[-87.59293276727591,41.80968402800562],[-87.5932227645921,41.80968079276974],[-87.59355313885753,41.80967828337052],[-87.59392171308853,41.809674426417814],[-87.5943108676697,41.8096703447574],[-87.59471227893802,41.809665791461555],[-87.5950916052696,41.80966145076172],[-87.59518984950354,41.80966032660348],[-87.59534893817388,41.80965851724607],[-87.59561385898498,41.80965550372794],[-87.59602195368873,41.809650275265795],[-87.59648587710582,41.80964496440533],[-87.59683236966737,41.80964152315562],[-87.5968358842464,41.80990744854153],[-87.59684025181727,41.81008975120991],[-87.59684215882122,41.81017739879962],[-87.59684483376259,41.810300349257176],[-87.59685232194313,41.81064131261042],[-87.5968540336788,41.81071923817431],[-87.5968580285042,41.81090107244929],[-87.59686088674944,41.81104225619509],[-87.5968631876835,41.811156712357],[-87.59686548968565,41.81127126786616],[-87.59686958586362,41.811463311469375],[-87.59687213364957,41.81158276625233],[-87.596873961698,41.81166847338637],[-87.5968763097766,41.81178964013427],[-87.59687702789137,41.811826700381424],[-87.59688070418837,41.812014926185924],[-87.59688303242804,41.812131902020354],[-87.59688994262828,41.81241888747905],[-87.59689187720063,41.812498724461115],[-87.59689661778128,41.81269437291448],[-87.59690142455905,41.812947233553636],[-87.59690344571983,41.81304465144107],[-87.59690839671973,41.81328325951382],[-87.59691207132771,41.813460306467],[-87.59691262787511,41.81348710373627],[-87.59692272553593,41.81401782835432],[-87.59691534090514,41.8140892681964],[-87.59685443673655,41.81414651484044],[-87.59691377705099,41.814225785968766],[-87.59713173554584,41.814521616842505],[-87.5972236776417,41.814645368988565],[-87.59739770079288,41.81487958248725],[-87.59754319115244,41.81507796486326],[-87.5975710167014,41.81511598742519],[-87.5977014640817,41.81529423923375],[-87.59786672210585,41.81551890068869],[-87.59808452631471,41.81581294411545],[-87.59817058682499,41.81592938222299],[-87.59826421300346,41.816056056511464],[-87.59841894424338,41.816268081022976],[-87.5985682674022,41.81646870944491],[-87.59871644306776,41.81666710746928],[-87.59888196738271,41.81690493997765],[-87.59853718255918,41.8169095149109],[-87.59819531199669,41.81691340986659],[-87.598037838367,41.81691521097065],[-87.59751000017603,41.81692104890075],[-87.59688282029946,41.816927983007396],[-87.59680432830845,41.81692681974168],[-87.59646347089281,41.81690772920532],[-87.59639985268744,41.81681710318156],[-87.59624880537449,41.816832942683064],[-87.59619240327173,41.8168329237766],[-87.59607134488985,41.81683283290194],[-87.59595945270172,41.816833143775455],[-87.5952614717183,41.816942765594085],[-87.59489183436396,41.81694066871414],[-87.59230805082478,41.8169321097515],[-87.592152838785,41.81692934706862],[-87.5921557568727,41.816968909459],[-87.58342701212543,41.81711185144467]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11659694.0831","perimeter":"0.0","tract_cent":"1181770.59450781","census_t_1":"17031350100","tract_numa":"26","tract_comm":"35","objectid":"84","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885761.46210102","census_tra":"350100","tract_ce_3":"41.84176118","tract_crea":"","tract_ce_2":"-87.6084497","shape_len":"15269.0090548"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61720985189288,41.84565509793269],[-87.61692091129596,41.845644514377646],[-87.61666117917208,41.84564437588204],[-87.61661825063868,41.845643284729015],[-87.61659503182254,41.84564215190312],[-87.61657183469313,41.84563904334188],[-87.61655066437635,41.84563194080776],[-87.61652626795413,41.845617875162006],[-87.61650393113082,41.84559687939187],[-87.61647763859752,41.845571879753464],[-87.6164579862528,41.84555037932017],[-87.61643788912791,41.845526049521126],[-87.61625954806446,41.845231190793086],[-87.61623779940655,41.84520023698387],[-87.61621749507974,41.84517804637306],[-87.61619627182665,41.84515917057375],[-87.61616875932155,41.845141627629054],[-87.61613940344323,41.84512805234193],[-87.6161002121301,41.845114443070734],[-87.61607353455582,41.84510423276182],[-87.61603520096129,41.8450959798546],[-87.61600840419449,41.845093123124634],[-87.61596180511143,41.845092173457694],[-87.61511263998153,41.84510687214146],[-87.61499270628724,41.845109933870205],[-87.61500079131055,41.84516621703666],[-87.61400068995991,41.84516647536757],[-87.61350109943116,41.84516643236028],[-87.61240099156913,41.84516639324705],[-87.61192963328182,41.845225181326725],[-87.61158088907109,41.84526623543961],[-87.61141060497297,41.845266549713436],[-87.61112256410892,41.84526643974569],[-87.61091654921505,41.84526644902025],[-87.60940614539751,41.845266504793145],[-87.60940949181392,41.8452177340755],[-87.60937658091395,41.84515338344386],[-87.60914087617012,41.8446925034611],[-87.60914086464392,41.84469254921754],[-87.6091388220879,41.84470056988024],[-87.60913061620688,41.844732787323224],[-87.60913058317357,41.844732917741624],[-87.60911644215446,41.84477459646086],[-87.60910670589385,41.84480329407114],[-87.60909755503177,41.84482469948693],[-87.60907715175948,41.844872428221514],[-87.60905418064958,41.844916760107466],[-87.60904207266742,41.84494012740162],[-87.60901472257183,41.84498470197377],[-87.60900158215624,41.845006118171085],[-87.60888141575398,41.84515963532899],[-87.60880197676718,41.84526112074063],[-87.60880191421306,41.84526120020393],[-87.60879725334547,41.84526652155602],[-87.60780078377465,41.84526640576969],[-87.6076839440712,41.84526570056594],[-87.60169233640231,41.845229371742974],[-87.60145858293757,41.84456651635882],[-87.59752413800639,41.83881376625775],[-87.60468899669408,41.83847201719468],[-87.60480054929582,41.83846669293651],[-87.60611993602765,41.83855464624395],[-87.60613467092406,41.83855134762998],[-87.60618786759306,41.838559174060904],[-87.60618802600442,41.838559184668696],[-87.60769369320224,41.8385818391032],[-87.6078033560934,41.83857922257089],[-87.60788166165722,41.838577354376845],[-87.60806437952348,41.83857299453173],[-87.6082506480376,41.83856854951025],[-87.60834322195481,41.83856634022648],[-87.60866003109619,41.83855877934106],[-87.60876382667624,41.83855630215164],[-87.6091946130671,41.83854601937168],[-87.60951433804294,41.83853838642182],[-87.60986821900791,41.83854060255631],[-87.61005089081806,41.838541746169106],[-87.61024217336963,41.838542943426816],[-87.61035151103052,41.83854162483987],[-87.61048413724508,41.838540025709875],[-87.6104859305051,41.83854000433898],[-87.61071714948088,41.838537214722734],[-87.61088047622599,41.83853524461012],[-87.61097773448665,41.83853407118298],[-87.61110715598072,41.838529855381594],[-87.61122811091552,41.838525914967974],[-87.61132647471116,41.838521553601325],[-87.61133180798666,41.83852131709157],[-87.61134177510979,41.838520875075666],[-87.61157984930358,41.83851031829276],[-87.61165631748582,41.838506927458184],[-87.61171349945155,41.838504391811774],[-87.612731799505,41.83848530676204],[-87.6131196419312,41.83847803568111],[-87.61321713272928,41.83847620758346],[-87.61337079318633,41.838473326444856],[-87.61349953539107,41.83847206858903],[-87.61372675681706,41.83846984912691],[-87.61403296886716,41.83846551029155],[-87.61498460650486,41.83845150263536],[-87.61525290523103,41.83844762210922],[-87.61553657688154,41.838444084836745],[-87.6159111215511,41.83843941361805],[-87.61613798064256,41.838436105059294],[-87.61657118839918,41.83842978616056],[-87.61712315165299,41.83842333792295],[-87.61712560974698,41.8385743543317],[-87.6171279380285,41.83866174614183],[-87.61711573207707,41.8387624942019],[-87.61713677590272,41.839469438773165],[-87.61713677585682,41.839469442889275],[-87.61713922535927,41.83955172562726],[-87.61714122025214,41.83972605353773],[-87.61715575257203,41.84027504575574],[-87.61720331379182,41.842071736315916],[-87.61723667835135,41.843332088388294],[-87.61726388163397,41.8443596639121],[-87.61729852316135,41.84566818215143],[-87.61720985189288,41.84565509793269]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2163073.37752","perimeter":"0.0","tract_cent":"1176343.01290918","census_t_1":"17031350400","tract_numa":"10","tract_comm":"35","objectid":"85","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885777.08546905","census_tra":"350400","tract_ce_3":"41.84192803","tract_crea":"","tract_ce_2":"-87.62836651","shape_len":"6941.56264548"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62976016473034,41.83826567436017],[-87.62976040511526,41.83826567253956],[-87.62976266726227,41.83835303270967],[-87.62978240744164,41.83909986552524],[-87.62978731525807,41.8392855465754],[-87.62979312535919,41.83950889677161],[-87.62980089973749,41.83980429531887],[-87.62981523196025,41.840338485341405],[-87.62982944638786,41.84086397994832],[-87.62984200585437,41.84132829835444],[-87.62985750746304,41.84171396199255],[-87.62986099277367,41.8418350796206],[-87.62986309716192,41.841908213892495],[-87.62986619607898,41.84201589324834],[-87.6298755442388,41.84233715717935],[-87.62988457174262,41.84278617351454],[-87.62990488052863,41.84334448046779],[-87.62991425093101,41.84376221425837],[-87.62992853161468,41.84427566960919],[-87.6299306071058,41.84434629294908],[-87.62994472511093,41.84479973111627],[-87.62996222539653,41.84541345470652],[-87.62996524444752,41.845544833752456],[-87.62996524439643,41.845544838417375],[-87.62978701012575,41.84554552011293],[-87.62946563464422,41.84555305909635],[-87.62916818463978,41.84555660662327],[-87.62872700195979,41.84556186722147],[-87.6284606879554,41.84556618817687],[-87.62812269391209,41.84557079043302],[-87.62791754031569,41.845573583594046],[-87.62765212479316,41.84557628907969],[-87.62723696033015,41.84557971998496],[-87.62696086826935,41.84558510661109],[-87.62695809793763,41.84542026498175],[-87.62694886381922,41.84503859177839],[-87.62693974656435,41.84466298380716],[-87.62693126534904,41.844318609397796],[-87.62692571747134,41.84409332644045],[-87.62692018528392,41.84386892173382],[-87.62691495011356,41.843657554354344],[-87.62690858337464,41.8433989233001],[-87.62690709323569,41.84333771274412],[-87.62690357844942,41.84319332026561],[-87.62689578604828,41.842870794041524],[-87.62687315369415,41.84195083386284],[-87.62687106675092,41.841866014037954],[-87.62686819440685,41.84174923712864],[-87.62686016780216,41.84134460136667],[-87.62685356240466,41.841097687008734],[-87.62684828008011,41.84090064400539],[-87.62683554361051,41.84042709824987],[-87.62682764727455,41.83999729831595],[-87.62682092658652,41.839786003708056],[-87.62681100725081,41.83966179228745],[-87.62681047987505,41.839546364840764],[-87.6268094996695,41.83933178551926],[-87.62680514398315,41.83913392460149],[-87.62679579034479,41.83895005666088],[-87.62677293709535,41.838685643625624],[-87.62676803791923,41.838477186488525],[-87.62677259573911,41.838300572940305],[-87.6271009214662,41.83829654852077],[-87.62745770655314,41.83829160667458],[-87.62781541234341,41.83828639494909],[-87.62793535708951,41.838284689259574],[-87.62821077422277,41.83828075466735],[-87.62860786473917,41.838278032549105],[-87.62895241485595,41.83827483098376],[-87.6289547600305,41.838274809141616],[-87.62902016072637,41.83827419509855],[-87.62931494495379,41.838271062407955],[-87.6295910254789,41.83826692275194],[-87.62962133997623,41.83826669876919],[-87.62976016473034,41.83826567436017]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"419033.998835","perimeter":"0.0","tract_cent":"1179278.75974452","census_t_1":"17031350900","tract_numa":"4","tract_comm":"35","objectid":"86","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883855.72593773","census_tra":"350900","tract_ce_3":"41.83658905","tract_crea":"","tract_ce_2":"-87.6176521","shape_len":"3288.34360238"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6173896994458,41.83476354246459],[-87.61819359837838,41.834754946141466],[-87.61819437003699,41.83489645697445],[-87.61822412294401,41.836324372577074],[-87.61822850771095,41.836582836432534],[-87.61823347283242,41.83687553362571],[-87.61826869239094,41.838409177740516],[-87.61793414658095,41.83841385935757],[-87.61746697964885,41.83841932025923],[-87.61712315165299,41.83842333792295],[-87.61711977321463,41.8382157801351],[-87.61710213236536,41.838093083952174],[-87.61709837063239,41.83791704353211],[-87.61708965277512,41.83753718329432],[-87.6171002410122,41.837370837259925],[-87.61709873655415,41.83728526178031],[-87.61707387332035,41.83688554212927],[-87.61707069355694,41.83659676550495],[-87.61706842184988,41.83639044315887],[-87.61705193638389,41.83570674446803],[-87.61706410702554,41.83559265902216],[-87.61706255237375,41.835521463141895],[-87.61704574341721,41.83543612177891],[-87.6170477226621,41.83489990479848],[-87.61704729250454,41.83484962720971],[-87.61705290918111,41.83476714223389],[-87.6173896994458,41.83476354246459]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4975173.00358","perimeter":"0.0","tract_cent":"1175359.52430448","census_t_1":"17031370300","tract_numa":"17","tract_comm":"37","objectid":"87","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872482.35482234","census_tra":"370300","tract_ce_3":"41.80546822","tract_crea":"","tract_ce_2":"-87.63237361","shape_len":"9081.32506176"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62960689658854,41.80919864897799],[-87.62912907979945,41.80918179134631],[-87.62901591397106,41.809183601137526],[-87.62901287389712,41.80908491944936],[-87.62900916419451,41.80896311943626],[-87.62899232114667,41.808826488406154],[-87.62897917871581,41.80847754165596],[-87.62898263585996,41.80837122213107],[-87.62898121943003,41.8083331366059],[-87.6289662321867,41.80785965722031],[-87.62896630722388,41.8077690962646],[-87.62899001891151,41.8076135036598],[-87.6290171052901,41.80740098825989],[-87.62902477886473,41.80724461150605],[-87.62902059560895,41.80708233073485],[-87.62901097876838,41.80670459058631],[-87.62899716024265,41.806249984873354],[-87.62898823112907,41.80597687420675],[-87.6289777079112,41.805639949836994],[-87.6289676331017,41.80513665577946],[-87.62896479201908,41.80501932073553],[-87.628955998237,41.804650161366425],[-87.62893973403925,41.80416775466859],[-87.62893259385058,41.80381507105717],[-87.62892825380081,41.80362534616187],[-87.6289210116558,41.803365624347414],[-87.62891496210848,41.803290119574726],[-87.62891067454562,41.80322114326867],[-87.62889649652843,41.803134268495704],[-87.6288460502764,41.802884572752895],[-87.62883009615192,41.80275069129007],[-87.62882184782877,41.80266659714665],[-87.6288080799678,41.80224938221934],[-87.62879823732874,41.80189303448802],[-87.62891771547388,41.80188978744885],[-87.6290857742907,41.801885220099265],[-87.62919455408691,41.80188226366572],[-87.62967039181302,41.80186932956018],[-87.62974759786793,41.80186589570756],[-87.63001815309194,41.801853862668416],[-87.63014712076885,41.801848126581255],[-87.63044406640944,41.80183328614328],[-87.63070796548752,41.80182842793269],[-87.63074229172719,41.801827795939715],[-87.6308608007781,41.80182561396523],[-87.63096284589112,41.8018237351621],[-87.6311758292911,41.8018198131986],[-87.63139024662549,41.80181586474994],[-87.63157430540222,41.8018124749683],[-87.63178741089646,41.801808549872206],[-87.6318746758192,41.80180694223844],[-87.6320055365082,41.80180453181158],[-87.63206474001211,41.80180344097408],[-87.63224769887852,41.80180192844459],[-87.63240790382899,41.801805164350625],[-87.63258187844367,41.80180675458657],[-87.63270590441603,41.80180788789357],[-87.63318351702539,41.80180978892857],[-87.63367280047257,41.80180423095257],[-87.63373215597254,41.80180298842266],[-87.63378923385073,41.801802086004216],[-87.63413560333368,41.801795330742145],[-87.63435138846909,41.80179016470923],[-87.63449611233712,41.801786699666486],[-87.63455602113333,41.80178526523288],[-87.63459194857336,41.80178487152571],[-87.63468365456167,41.801783866991116],[-87.63475792521338,41.801783053286876],[-87.63487814918071,41.80178173573232],[-87.63503442467967,41.80177828920344],[-87.63511556655222,41.801776499457766],[-87.63529173478258,41.801772613929266],[-87.6356479493253,41.80176632941435],[-87.63570849117217,41.80176526101826],[-87.63570849170026,41.80176527995699],[-87.63571176587223,41.801886048173635],[-87.63571704682185,41.80207543585381],[-87.6357255655384,41.802389021313644],[-87.63573061450448,41.802726598408235],[-87.63575089441726,41.80339289546175],[-87.6357632333012,41.803903749399936],[-87.63578604803033,41.80471688063066],[-87.63579796525897,41.80518210825572],[-87.63580740526473,41.80553754965974],[-87.63581925239382,41.806009294452714],[-87.63583922371545,41.80661967430432],[-87.63585100672505,41.807055057210825],[-87.63585956243297,41.80732301927644],[-87.63587011741707,41.80766028647657],[-87.63587829003154,41.80796357875872],[-87.63589540269997,41.808372579978005],[-87.63590686293564,41.80883780425226],[-87.63591449409853,41.80889513764033],[-87.63591791651548,41.809044291757786],[-87.63582301152618,41.80904621335978],[-87.6357743484988,41.80904719861392],[-87.63569481187321,41.80904880920258],[-87.63554188280615,41.809051905900425],[-87.6351570156656,41.80906029718766],[-87.63499147512591,41.809063901305294],[-87.63475450960195,41.80906831838648],[-87.63458145368092,41.80907154360197],[-87.6343786799612,41.80907532265299],[-87.6339391722273,41.80907915146076],[-87.63365298007747,41.80908030738575],[-87.63337102376009,41.809074421072935],[-87.63257582594198,41.80910237017671],[-87.63246509192895,41.80910626162342],[-87.63208525832415,41.80911960945828],[-87.63184837046799,41.80912793325788],[-87.63169119670329,41.80913345558294],[-87.6316159992695,41.809136097823796],[-87.63149695864237,41.809140280353425],[-87.6312192088703,41.80915003844896],[-87.6311580070152,41.80915218853764],[-87.63093747107585,41.809159935869374],[-87.63086670737451,41.809162421687155],[-87.6307332436129,41.80916364717885],[-87.63037428286464,41.809166942615654],[-87.62960689658854,41.80919864897799]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8789730.50013","perimeter":"0.0","tract_cent":"1184159.29156203","census_t_1":"17031360300","tract_numa":"16","tract_comm":"0","objectid":"88","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880776.30141571","census_tra":"360300","tract_ce_3":"41.82802593","tract_crea":"","tract_ce_2":"-87.59984028","shape_len":"13215.5485988"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59589890759801,41.82626686364962],[-87.59699869199997,41.82606672681703],[-87.59754632804916,41.82592976953921],[-87.59756972599006,41.82601753094502],[-87.59757848698924,41.826050392572284],[-87.59759084342559,41.826075291414284],[-87.59865491969099,41.82577272309172],[-87.59962971602175,41.825497442650736],[-87.59985262342015,41.825438301698824],[-87.59999716235193,41.82539995303912],[-87.6002823145269,41.82532429599201],[-87.60037531369792,41.82529962136225],[-87.6004746241485,41.82527327175824],[-87.60075546326566,41.82519875781617],[-87.60092033331271,41.82519604380712],[-87.60151251888995,41.82503661674878],[-87.60161399468126,41.82499611541852],[-87.60180217664576,41.82492100723876],[-87.60193929956687,41.82486221075921],[-87.60224423687586,41.82473266433562],[-87.60254798158257,41.82460615729316],[-87.60283850669637,41.824507510245404],[-87.60346943742121,41.82429434218919],[-87.60498945181209,41.8237877913867],[-87.6050340127388,41.82377296509599],[-87.60643720434108,41.82330608474625],[-87.60687305832275,41.82396480097777],[-87.60715572766576,41.824447398105015],[-87.60728644112746,41.824704785997476],[-87.60737953594547,41.82488863659672],[-87.60761145020669,41.82534984921957],[-87.60784580950154,41.82580923812711],[-87.60797762466028,41.826071376703155],[-87.60802672211514,41.826168141963585],[-87.60808180609808,41.82627670500824],[-87.60827761942163,41.82666054717848],[-87.60836197653423,41.8268226069061],[-87.60848817219048,41.82706500857351],[-87.60875816385213,41.82759007111143],[-87.60882535705011,41.82772226749448],[-87.60855128506323,41.827799662746344],[-87.60799230104061,41.82796523585174],[-87.60763135924171,41.828086502825116],[-87.60753528512997,41.82811472210182],[-87.60748355401982,41.82812991622616],[-87.60712769250397,41.82828117396252],[-87.60647686228447,41.828557802800695],[-87.60631056938507,41.828633152910214],[-87.60639299361075,41.828740899361],[-87.60606598147785,41.828878023919884],[-87.60559276570788,41.82911171902605],[-87.60534045817103,41.82923772878278],[-87.60522606533533,41.829294976304276],[-87.60481341643835,41.82950150900081],[-87.60475004082954,41.8295331103609],[-87.60453943339814,41.82962880816701],[-87.602549993195,41.83053313926048],[-87.6024653396994,41.830598863643296],[-87.602372342059,41.83066952942286],[-87.6023946973893,41.83069336319722],[-87.6024116655669,41.83071741927448],[-87.60242748291905,41.83073984424471],[-87.6024502103436,41.830772065475685],[-87.60245698462853,41.83078166959897],[-87.60250238502482,41.83084603540719],[-87.60252578774116,41.830890895512475],[-87.60253141263851,41.83090167811474],[-87.60255795641343,41.830952560178616],[-87.60256550322066,41.830967026283666],[-87.60259417614975,41.83102198915894],[-87.6025982360838,41.831032968718965],[-87.60261659315209,41.83108261700438],[-87.60262628039327,41.83110881665141],[-87.60263792089715,41.8311402990829],[-87.60265196035243,41.83117826994438],[-87.60266318224573,41.83120862044525],[-87.60267000425867,41.83122706934804],[-87.60267379623743,41.83123944704966],[-87.6026768307467,41.831249351741455],[-87.60268533705495,41.83127711798053],[-87.60269695006579,41.83131502400383],[-87.60270768602224,41.83135006766783],[-87.60271020372588,41.83136624767305],[-87.60160025641324,41.8313664858082],[-87.60039993460562,41.83136673124463],[-87.59266385662218,41.83151057683526],[-87.59228488403657,41.830919903384874],[-87.59016245727705,41.8276116287278],[-87.59589890759801,41.82626686364962]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8470005.71849","perimeter":"0.0","tract_cent":"1175682.13584385","census_t_1":"17031330200","tract_numa":"55","tract_comm":"33","objectid":"89","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1892824.26048219","census_tra":"330200","tract_ce_3":"41.86128085","tract_crea":"","tract_ce_2":"-87.63058006","shape_len":"14763.5097051"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62719633526636,41.85781009803695],[-87.62717956301226,41.85720755225144],[-87.62717114797402,41.856550769584686],[-87.62716420326574,41.856036152639966],[-87.62715265909787,41.855727490274404],[-87.62714613454268,41.855446533738444],[-87.62713001790678,41.85475256441822],[-87.62712320856429,41.85465419590041],[-87.62711642238901,41.854303411233786],[-87.62711432259908,41.854250077174044],[-87.6271074999392,41.85407681784537],[-87.6271030386982,41.853661680658774],[-87.62710139843314,41.853509021372886],[-87.62709853161815,41.85338057232005],[-87.62709161668533,41.85310827249158],[-87.62708958310692,41.852942520673416],[-87.62708869836511,41.85287039701918],[-87.62738469270694,41.852899909602925],[-87.62772257511921,41.85290670881075],[-87.62779118181042,41.85290640278675],[-87.62816794359574,41.852904721291736],[-87.62826487384073,41.852903020266154],[-87.62861653478191,41.85289684810244],[-87.62917878082165,41.85288379458498],[-87.62934971662871,41.85288175627778],[-87.6297095682674,41.852878754483314],[-87.63006129854432,41.85287715244528],[-87.63010370299943,41.853299066709],[-87.63011375619028,41.85352750521122],[-87.63012090572356,41.85371904313252],[-87.63012466466809,41.85386176742745],[-87.63013103971717,41.85412086415916],[-87.63013254108301,41.85418006693647],[-87.63013254348759,41.85418014900442],[-87.63013632078938,41.85432907569114],[-87.63014241104044,41.85453707262941],[-87.63014865739132,41.85473085527516],[-87.63015739910213,41.854961563694104],[-87.63015777879518,41.85512243149024],[-87.6301584579219,41.85541041005068],[-87.63015867400155,41.855501969860605],[-87.63017765967106,41.85591339496037],[-87.63018285252299,41.85606932784204],[-87.630191495186,41.85632920674692],[-87.6301974428856,41.85658643465656],[-87.6302040982612,41.856874265318474],[-87.63020714327581,41.85699171058487],[-87.63021375488219,41.857212498839175],[-87.63021868849717,41.857445763166176],[-87.6302213611864,41.85756121106895],[-87.6302224601236,41.85760867225307],[-87.63022446247243,41.857695171857856],[-87.63022640691243,41.857779150235544],[-87.63067397327396,41.85776986953622],[-87.63084708142866,41.857766202620915],[-87.63092277866282,41.85776455829332],[-87.63106825693826,41.85776139824262],[-87.63136296266643,41.857757675985695],[-87.63143912787423,41.8577569073995],[-87.63189239653349,41.85775256325106],[-87.63193476577415,41.85775215708058],[-87.63220854315846,41.857750708805696],[-87.6325943381089,41.85774419061594],[-87.63303650478146,41.85773801487225],[-87.63341043230719,41.85773142185232],[-87.63375287199729,41.85772606996433],[-87.63410189087575,41.85772010644848],[-87.63441640782324,41.857719802697034],[-87.63467747162484,41.857723609288826],[-87.63493561718185,41.85772296118063],[-87.6351581593673,41.85772209606269],[-87.63512739329562,41.85787455759924],[-87.63509305352751,41.858199623575395],[-87.63479710986091,41.85887931128182],[-87.6345641078988,41.85921540820146],[-87.63450859376373,41.859384253352175],[-87.63451472004377,41.860132515832426],[-87.63451703348943,41.86041501696014],[-87.63455182867348,41.860916794864536],[-87.63455680335612,41.86098853326789],[-87.6345567958709,41.86100270755971],[-87.63455676429332,41.861061207141574],[-87.63455676296346,41.861063588321144],[-87.63455643758438,41.86166948976002],[-87.63456500493574,41.861933974430734],[-87.63457775888772,41.86232769106463],[-87.63457053617202,41.862903391084394],[-87.6346192777851,41.86371792781191],[-87.63463654077586,41.864259068753384],[-87.63465911202738,41.86507905064187],[-87.63467738880097,41.86564184234256],[-87.63468182227324,41.86577836885924],[-87.6346965185383,41.86631015667713],[-87.63468593415253,41.86674615355968],[-87.63472829616963,41.867262014012375],[-87.63473401864785,41.86731465855111],[-87.6344566546681,41.86731749162166],[-87.63362818178611,41.86731905795411],[-87.63361874179962,41.867319075906536],[-87.6334005217111,41.867324478620475],[-87.63302055703353,41.86733388432669],[-87.63175475819872,41.867350052276244],[-87.63158334665705,41.86735323142805],[-87.63152871310929,41.86735424500819],[-87.6305796773962,41.8673718429504],[-87.63043520026993,41.86737398596383],[-87.62994146063357,41.86738130883445],[-87.62945102272461,41.86738627247538],[-87.62886489441746,41.86739254089502],[-87.6285016555064,41.86739829657602],[-87.62847483044938,41.86739872168006],[-87.62835789379616,41.867400574187975],[-87.62791651412788,41.86740677917381],[-87.62776525665168,41.867408848365734],[-87.62741867651468,41.867413588800275],[-87.62742144291269,41.86694687767673],[-87.62739320573603,41.8665390360292],[-87.62738815894197,41.866006318774886],[-87.62738393824493,41.865742870949845],[-87.6273795365746,41.86546814368298],[-87.62736808504174,41.86485657100377],[-87.62734348871267,41.864052509559755],[-87.62732522355526,41.86346480028469],[-87.62730980578121,41.862552887273836],[-87.62730525995164,41.86241075926264],[-87.62729064752094,41.8619538761906],[-87.62727463977009,41.86145332483277],[-87.62726749820337,41.860740464008245],[-87.6272674930211,41.86073983389614],[-87.62726246568684,41.86017872803566],[-87.62725854371074,41.859942135660475],[-87.62724320479715,41.85935363960938],[-87.62722941118838,41.859001589584764],[-87.62721481941549,41.858629173920136],[-87.62720040785247,41.85795643184118],[-87.62719633526636,41.85781009803695]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3444878.05018","perimeter":"0.0","tract_cent":"1177346.7999431","census_t_1":"17031330400","tract_numa":"22","tract_comm":"33","objectid":"90","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888452.80076695","census_tra":"330400","tract_ce_3":"41.84924771","tract_crea":"","tract_ce_2":"-87.62460193","shape_len":"7924.3623454"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6222741085159,41.8528877129627],[-87.62226925025934,41.852808371710765],[-87.62226190564363,41.85268843109454],[-87.62226163007938,41.85197761231674],[-87.62225024436542,41.851322103753],[-87.62224324828907,41.85113485250309],[-87.6222373059624,41.85097580829648],[-87.62222253936056,41.85029750135624],[-87.62220715611294,41.84977887854537],[-87.62219838064757,41.84948302104241],[-87.62219406737,41.84930966542154],[-87.6221899485176,41.84914410798235],[-87.62217448404341,41.848389722394735],[-87.6221757737376,41.847904216889276],[-87.62217920532379,41.84748694219029],[-87.62213772958516,41.84566047096398],[-87.62339191456321,41.84564190208569],[-87.6236362047631,41.8456382844688],[-87.62407957620545,41.845631717198444],[-87.62417259010917,41.845630489390174],[-87.62446484493238,41.84562674079504],[-87.62479326358367,41.845622025744795],[-87.62532610033784,41.84561360404042],[-87.6255389038337,41.84561023997993],[-87.62579736038123,41.84560626159301],[-87.62610277230247,41.84560095265513],[-87.62613206504952,41.84560047659863],[-87.62614381812257,41.84560028551728],[-87.62618268754152,41.84559965381261],[-87.62619207700544,41.845599501137904],[-87.62626462169904,41.845598322337565],[-87.62637708858657,41.84559649432633],[-87.62675994850636,41.845589026385966],[-87.62696086826935,41.84558510661109],[-87.62697145262968,41.84621475546566],[-87.62697990894196,41.846440275766724],[-87.6269729383185,41.84661356027028],[-87.62697250529867,41.8466475864132],[-87.62695715141143,41.84666641117726],[-87.626882174318,41.84675833658766],[-87.62688605958037,41.84689888188593],[-87.62688858649929,41.846988087473065],[-87.62688746962827,41.847089604989996],[-87.62689541139231,41.84733138347466],[-87.6268980534916,41.847444849828925],[-87.62690012457439,41.847533790527095],[-87.62691039286625,41.84768146897315],[-87.62691527004189,41.847751611470514],[-87.62693081923615,41.84793270985537],[-87.62696083473284,41.84807454893756],[-87.62696655252839,41.84819262945184],[-87.6269762686948,41.84826613981629],[-87.62697839215404,41.84839206792847],[-87.6269803128953,41.848536357168],[-87.62699094321763,41.848776969620886],[-87.62699766795362,41.84902646398258],[-87.62700302711167,41.84924054901581],[-87.62700921864385,41.84948787238917],[-87.62701527945485,41.84978771947942],[-87.62702148991724,41.85010065785421],[-87.62702572951576,41.85029537742559],[-87.62702695189975,41.850351516520554],[-87.62703385674641,41.8506647335604],[-87.6270384912016,41.85084401717662],[-87.62704433653963,41.851066008589825],[-87.62704863940684,41.8512294278035],[-87.62705307710488,41.851426602468486],[-87.62705836958484,41.851629490436],[-87.62706600775708,41.85187940192763],[-87.6270740126966,41.852169381800394],[-87.62708060354639,41.8524244185861],[-87.62708542345393,41.8526035109146],[-87.62708779334399,41.85279668019894],[-87.62708869836511,41.85287039701918],[-87.62673155439138,41.8528392190487],[-87.62639588136173,41.85284038721961],[-87.6263130211741,41.85284067546872],[-87.62611878595034,41.85284135090638],[-87.62549959325794,41.852850346369316],[-87.62526270056107,41.85285378710885],[-87.6245109031708,41.85286095661534],[-87.62387917155256,41.85286414033929],[-87.62381024363044,41.85286551751541],[-87.62324733545019,41.852876765668874],[-87.62302426605493,41.85288004713216],[-87.62273873756145,41.85288424635775],[-87.6222741085159,41.8528877129627]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8673187.61603","perimeter":"0.0","tract_cent":"1174382.40114238","census_t_1":"17031340200","tract_numa":"99","tract_comm":"34","objectid":"91","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888466.03002634","census_tra":"340200","tract_ce_3":"41.84935064","tract_crea":"","tract_ce_2":"-87.63548111","shape_len":"13080.1910459"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62934971662871,41.85288175627778],[-87.62933728392557,41.852436160285386],[-87.62933000693123,41.85217593276605],[-87.62932576275729,41.85202741505176],[-87.6293164914143,41.851714759993435],[-87.62931193009032,41.85149475244387],[-87.6293074337832,41.85126881769031],[-87.62930265170705,41.85107031743047],[-87.62929889280366,41.85092304361464],[-87.62929202724364,41.850678872724394],[-87.62928730196025,41.850500604277045],[-87.62928417386236,41.850345950066654],[-87.62928273235875,41.8502746690348],[-87.629275417929,41.8499710270389],[-87.62927287238318,41.84973456623568],[-87.62926966263605,41.84949173467411],[-87.62925968367522,41.84920964616641],[-87.62925360826516,41.84903790100374],[-87.6292499251179,41.84888845332424],[-87.62923122226059,41.84870963260866],[-87.62922611429721,41.84852277222591],[-87.62922609023556,41.84833753467355],[-87.62922417983485,41.84811680229525],[-87.6292215659134,41.84796022634968],[-87.6292122901327,41.847781929919414],[-87.62919515044369,41.84750183174278],[-87.62920071904188,41.84712706138525],[-87.62919465291138,41.846940237337904],[-87.6291924277642,41.846782923068226],[-87.6291876943604,41.84660155041731],[-87.62919338031483,41.8465242575541],[-87.62919370124968,41.84642467037086],[-87.62918829845037,41.84613083689362],[-87.62918118559686,41.84591932068886],[-87.62916818463978,41.84555660662327],[-87.62946563464422,41.84555305909635],[-87.62978701012575,41.84554552011293],[-87.62996524439643,41.845544838417375],[-87.62996540585843,41.84554484050387],[-87.62996575814736,41.845544844307845],[-87.63034830294728,41.8455491345226],[-87.63066043289987,41.84554364492003],[-87.6309273339472,41.845538950057204],[-87.63108410396195,41.84553635158729],[-87.63149656105237,41.84553441823313],[-87.63165573723762,41.84553231640132],[-87.63179989205871,41.845530412667216],[-87.6318240723959,41.84553009328579],[-87.6318959677424,41.84552914351691],[-87.63231187023665,41.84552364948737],[-87.63236770147506,41.845522836556725],[-87.63246101012425,41.845521477323324],[-87.63264781204398,41.845518756462276],[-87.63306674944089,41.84551250241134],[-87.63325619498316,41.84550967208934],[-87.63363718178384,41.84550022686624],[-87.63381954012023,41.84549771523029],[-87.63427183170475,41.84549084322789],[-87.63428682180485,41.84549061530674],[-87.63460731227605,41.845485744625044],[-87.63460940303433,41.845570685591895],[-87.63461878417432,41.84594748749963],[-87.63462268823655,41.846086307654694],[-87.63463058088561,41.84639645723733],[-87.6348685660597,41.846391977148635],[-87.63531189019928,41.84638808606781],[-87.63569994416055,41.84638396816683],[-87.63608251349386,41.84637794791597],[-87.63621635355484,41.846375511968006],[-87.63642060151831,41.84637179453139],[-87.6365762718176,41.84637167752377],[-87.63667701811758,41.84637160176404],[-87.63684089510319,41.84637028087246],[-87.63701932211143,41.84636587504617],[-87.63735268197722,41.84635763288107],[-87.63758559426299,41.846351768166464],[-87.63786971995785,41.84634376110188],[-87.63803674250039,41.8463390546689],[-87.63824773113456,41.84633310803006],[-87.63836220923396,41.846329881431295],[-87.63836070080585,41.846279115578824],[-87.63835783199212,41.846182556817695],[-87.63952500061998,41.84637366177876],[-87.63956598113434,41.84636891614539],[-87.63961543930358,41.84636318876334],[-87.63998133068289,41.84632137035766],[-87.63998138390261,41.846321370130084],[-87.64028994489385,41.84632031693534],[-87.64045395607508,41.846317664024596],[-87.64055438869192,41.846316039324876],[-87.64077316818265,41.84631252913053],[-87.64102300306912,41.846308437049984],[-87.64128010140841,41.84630466261794],[-87.64160007235058,41.8463005525087],[-87.64160242876689,41.84644714035171],[-87.64160273121126,41.84646597904548],[-87.6417423082239,41.846829585997796],[-87.64185030822804,41.84711092954254],[-87.6417265450923,41.84728290281737],[-87.64216049208513,41.847795825414046],[-87.64229973369426,41.847960406063244],[-87.64242591053684,41.84810954311803],[-87.64231405819739,41.848110884495675],[-87.64162818183229,41.84811928174749],[-87.64162365814931,41.84819277923381],[-87.64175804298749,41.84835481369461],[-87.64185302173128,41.848464607053636],[-87.64195574300962,41.848584820237754],[-87.64224823353011,41.84892555411838],[-87.64239548417686,41.84885387334714],[-87.64276095522693,41.84869169605437],[-87.6431399533867,41.84855165092073],[-87.6432327203509,41.84852247046706],[-87.64332989762586,41.848613085214666],[-87.64346618850324,41.84874823374256],[-87.64351241685732,41.84880307549846],[-87.64352610003853,41.84881930846547],[-87.64367683200595,41.84901020938422],[-87.64372027810445,41.84907302809847],[-87.6437728569947,41.849149051840136],[-87.64399883445986,41.84950523931548],[-87.64331690842155,41.84969266842226],[-87.64331690078215,41.84969266206456],[-87.64331567594942,41.849693007068716],[-87.6426400399731,41.85002382777646],[-87.64238025447557,41.850269101594826],[-87.64218185451693,41.850454691638646],[-87.64191934556955,41.85078212067886],[-87.64189335368931,41.850817041853055],[-87.64159395155072,41.85121929741335],[-87.6411475337876,41.851793039049454],[-87.6407536599361,41.852371075191094],[-87.64052176867517,41.85271732534686],[-87.64049058093076,41.85276389220722],[-87.64049054026721,41.85276395288441],[-87.63906347655048,41.85278444878065],[-87.63897687468146,41.85278562421413],[-87.63853218539751,41.852791934412544],[-87.6383129809797,41.85279504447667],[-87.63819367791181,41.852796736851985],[-87.63808782052025,41.852797904290426],[-87.63805511986779,41.8527981358106],[-87.6379864673362,41.85279862112623],[-87.63785772112126,41.852799531496615],[-87.63771589900102,41.852800443756884],[-87.63736052785961,41.85280877280134],[-87.637082585316,41.852829622109155],[-87.6369661675392,41.852838354624154],[-87.63685268817598,41.85284686691319],[-87.63673358940582,41.85285580027928],[-87.63648347444634,41.85287131934511],[-87.63512154535672,41.85288639849204],[-87.6348690076362,41.85286882828165],[-87.63481585294898,41.85286446848462],[-87.6348146163495,41.85286436711016],[-87.63477577753912,41.85286118136182],[-87.63444783814316,41.852828577665925],[-87.63386986165571,41.852826239727165],[-87.63303273973482,41.85283766849166],[-87.63202819085896,41.85285161121816],[-87.63200883612576,41.85285191702015],[-87.63177785393279,41.85285556728169],[-87.63127851154324,41.8528634565468],[-87.6311120727487,41.852866085597874],[-87.63104241770282,41.8528666360995],[-87.63096392178832,41.8528672565335],[-87.63087178390847,41.85286798447689],[-87.63077393308843,41.85286875753199],[-87.63060667206439,41.85287007867143],[-87.63047531909815,41.8528720024184],[-87.6302954846454,41.85287463228157],[-87.63029545747929,41.852874632664125],[-87.63024735700624,41.852875338223875],[-87.63015177757808,41.852876740190176],[-87.63006129854432,41.85287715244528],[-87.6297095682674,41.852878754483314],[-87.62934971662871,41.85288175627778]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"18693806.3538","perimeter":"0.0","tract_cent":"1164500.127885","census_t_1":"17031311400","tract_numa":"61","tract_comm":"31","objectid":"92","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1886678.23601988","census_tra":"311400","tract_ce_3":"41.8446594","tract_crea":"","tract_ce_2":"-87.67180064","shape_len":"18602.7796684"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66585055165456,41.84381850093478],[-87.66584434459769,41.84319178452301],[-87.66540447414366,41.84326503788958],[-87.6643048161414,41.84366513159065],[-87.66394639604212,41.843915891072164],[-87.66430961138158,41.84280145831626],[-87.66447319138473,41.84252486342617],[-87.6645940552287,41.84232049529743],[-87.66495177757595,41.84171561458613],[-87.66496896860639,41.841618869570794],[-87.66493764694638,41.841521814804594],[-87.66484348231597,41.841242833813915],[-87.66464718562176,41.84088952969042],[-87.66457355748108,41.84075700971884],[-87.66454220020846,41.840659982067145],[-87.66452844904755,41.84042987780046],[-87.66455747536871,41.840011930752084],[-87.66456364272324,41.839923124679046],[-87.66456524182318,41.839900093422635],[-87.66456648247464,41.83988223438909],[-87.66453755697589,41.839555196651176],[-87.66441081584907,41.83930022993842],[-87.6643844292771,41.839250857330384],[-87.6642851178734,41.839065032247895],[-87.66461627785279,41.838874501116265],[-87.6650898051662,41.83860782516615],[-87.66539165396694,41.83842648357482],[-87.6657643285198,41.83822073179776],[-87.66614347257503,41.83802670530383],[-87.66650632319842,41.83786127507198],[-87.6668336674084,41.83772344639354],[-87.66698374184712,41.83766025666335],[-87.6675355702497,41.83749461446118],[-87.66762727431289,41.83746708726127],[-87.66808184952451,41.837359974279074],[-87.66824256149187,41.83732210464978],[-87.66877889423128,41.83722850112187],[-87.66893497377616,41.83721162205012],[-87.66897548124223,41.837207241326375],[-87.66901699421167,41.83720275141921],[-87.6692640123789,41.83717603740616],[-87.66956900432889,41.83716285288328],[-87.66963037666007,41.83716019982036],[-87.67004371764956,41.837142329918855],[-87.67056112835282,41.837136171723],[-87.67056172000484,41.837269638662306],[-87.67056206303441,41.83734707256972],[-87.67087735935368,41.83734408217359],[-87.67246950133409,41.83731266625213],[-87.6730333849211,41.83730200162894],[-87.67384122441057,41.83728671815762],[-87.67458465401457,41.83727264826703],[-87.67528024687431,41.83725622346797],[-87.67544191713402,41.837252405589396],[-87.6756296004096,41.83724797298705],[-87.67607932259651,41.83723735012979],[-87.67675801020253,41.83722131580457],[-87.67742937267815,41.83720781716922],[-87.67784071086668,41.8371995445316],[-87.6778814437654,41.837198725107584],[-87.67813361000898,41.837193316347296],[-87.67812698431722,41.83737065859024],[-87.67812441639482,41.83743939906074],[-87.67810726880873,41.83789836920085],[-87.67810427748151,41.83797842926704],[-87.67809094179962,41.838335364335485],[-87.6780883377117,41.83840505108454],[-87.67807892259822,41.838657050487534],[-87.6780667601597,41.83898258326327],[-87.67804457762001,41.83957627784538],[-87.67803779276402,41.839757869693685],[-87.6780247511122,41.8401069069549],[-87.67802685750712,41.840439119363054],[-87.67803875669264,41.84251451293477],[-87.67804418667578,41.84346154480037],[-87.6780501774724,41.84404336277051],[-87.67805270887075,41.84428443327211],[-87.67805738658488,41.844556141981634],[-87.67806301543139,41.84475730001363],[-87.67806580436455,41.84485696120008],[-87.678071659471,41.84506720511889],[-87.67807814235657,41.845287935693854],[-87.6780841954872,41.84547877879146],[-87.6780917647224,41.845729729874996],[-87.67809424975869,41.84581173821605],[-87.67809816148262,41.84594085528945],[-87.67810121290127,41.84604109314963],[-87.67811322293173,41.84626684949975],[-87.6781218563124,41.84639187216561],[-87.67817177411206,41.846704585643586],[-87.67815149004666,41.84682563485509],[-87.67815413189197,41.84695095291397],[-87.67815737656908,41.84710481445502],[-87.6781724163807,41.84760916597557],[-87.67818340948166,41.84797780300321],[-87.67818578774761,41.84809054423096],[-87.67819075603875,41.848326173969504],[-87.67819668680671,41.848522404345985],[-87.67820631424277,41.84884094884415],[-87.67820973261772,41.848987550834146],[-87.67821499487705,41.84921322987675],[-87.67822070974543,41.84942509249392],[-87.67822745780973,41.84967526977353],[-87.67823148713241,41.849805563068976],[-87.67823528082822,41.84993596451338],[-87.67823790015044,41.85002599091449],[-87.67824478246222,41.85032277223214],[-87.67825189371888,41.85062942347323],[-87.67825565776045,41.85077637206752],[-87.67826060140668,41.85097031048542],[-87.67826909732274,41.851229541921896],[-87.67827608011675,41.8514426035267],[-87.67827920983788,41.851553160150104],[-87.67828280472679,41.851680685808304],[-87.67828742960798,41.851844757151405],[-87.67829251647883,41.85213720043686],[-87.67783940563783,41.85214371279541],[-87.67714154171941,41.85215383326445],[-87.67677952358392,41.85216076552606],[-87.67639465527597,41.852166029163776],[-87.67584031180391,41.85217595129219],[-87.67538622263096,41.85218407681341],[-87.67454160458007,41.85219487747164],[-87.6738458719869,41.85220466082605],[-87.6733906878832,41.852211175010225],[-87.67290443500166,41.85221813168779],[-87.67239863219686,41.85222608934613],[-87.6718690057942,41.85223423688359],[-87.67160454066507,41.8522383666269],[-87.6715022922874,41.852239834841015],[-87.67093792708532,41.85224793679051],[-87.67064845412372,41.85225209134135],[-87.66994702825053,41.85226296806829],[-87.66988751223602,41.85226389076353],[-87.6698011682901,41.85226522924457],[-87.6693218734026,41.85227244832814],[-87.66893641121243,41.85227823238705],[-87.66849800403078,41.85228523888431],[-87.66761147165268,41.85229940238571],[-87.66679768075724,41.852314002072056],[-87.66602422922897,41.85233105651881],[-87.66602356067516,41.85224571964555],[-87.6660224684485,41.85210622181994],[-87.66601834986842,41.8515804369122],[-87.66602169105288,41.85099765779749],[-87.66601507416932,41.85051133691265],[-87.66601233550772,41.850326839268945],[-87.66600741046769,41.8499950423168],[-87.66599238207841,41.84923383458418],[-87.66596412609276,41.8484718989522],[-87.66596070252712,41.847800597852704],[-87.66592416560675,41.846968984324256],[-87.66592209969839,41.84688052479017],[-87.66591565606547,41.846604767601875],[-87.66588273006015,41.84519566038925],[-87.66587662039929,41.844934192510486],[-87.66587259701836,41.844762007310685],[-87.66586539718715,41.84445388089585],[-87.66585055165456,41.84381850093478]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5847482.40636","perimeter":"0.0","tract_cent":"1167800.86409746","census_t_1":"17031310600","tract_numa":"30","tract_comm":"31","objectid":"96","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890958.06114264","census_tra":"310600","tract_ce_3":"41.85633322","tract_crea":"","tract_ce_2":"-87.65956424","shape_len":"10958.8811917"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66273801474499,41.85239314280795],[-87.6636139168171,41.852379529044384],[-87.66362057639282,41.85259478138208],[-87.66362857864867,41.852925483691436],[-87.66363776904527,41.85328349827433],[-87.6636472136729,41.85365142108684],[-87.66364951704651,41.853727944418644],[-87.66366154143869,41.85412173314873],[-87.66366523049524,41.85420951628315],[-87.66367098097948,41.85434635076437],[-87.66368186428943,41.85462962156383],[-87.66368796210384,41.85489439779235],[-87.6636931377878,41.85511913898006],[-87.66369631489886,41.85525709785004],[-87.66370348111806,41.85556595084578],[-87.66371145812059,41.85590968777803],[-87.66371459220086,41.85602133883774],[-87.66371814855194,41.85614803829188],[-87.66372499029778,41.85646943087291],[-87.66373292945673,41.856842393857235],[-87.66373606571325,41.85693072285128],[-87.663741952057,41.857096509683515],[-87.66374951001892,41.85737487618076],[-87.66375940619801,41.85773876730318],[-87.66376326241563,41.85783479811734],[-87.66376942991657,41.85798838834582],[-87.6637764026772,41.85828891289613],[-87.6637832565272,41.85858430168687],[-87.66378364882806,41.858741368128804],[-87.6637838945747,41.85883985045126],[-87.66379414528411,41.85919522757425],[-87.6638046533383,41.85955951512375],[-87.66380766126575,41.859646791179415],[-87.66188575322312,41.859679136414556],[-87.6613739003121,41.85968774550611],[-87.6612068065039,41.859690555095014],[-87.66063334918009,41.85969971692417],[-87.66036440152875,41.85970473191299],[-87.65999332626943,41.85970998428273],[-87.65957142982448,41.85971682289863],[-87.65922876312483,41.85972237611715],[-87.65892701630604,41.85972557446332],[-87.65861895477215,41.85972883920067],[-87.65831464080938,41.859735249745846],[-87.65799453906165,41.85974199146012],[-87.65770470835419,41.859746543444174],[-87.65709211404283,41.85975615164373],[-87.65667543074503,41.85976268484597],[-87.65647915506476,41.85976530436828],[-87.65628743342971,41.85976786286009],[-87.65403190615217,41.85980257406089],[-87.65372030340335,41.85980736619118],[-87.65343395877099,41.859811918419304],[-87.65341078216463,41.85890149451496],[-87.65339925924752,41.85844882517248],[-87.65338776615731,41.857997336548834],[-87.65372879345739,41.85799334978097],[-87.65431765306768,41.85798756184466],[-87.65454680959391,41.8579853214669],[-87.6548471379258,41.85798008945164],[-87.65504202149238,41.85797669390145],[-87.65537730017914,41.857971099396174],[-87.65583204888092,41.85796350317105],[-87.65610821646052,41.85795889125129],[-87.65642944223428,41.85795320120327],[-87.6564209310204,41.8577085377392],[-87.65639568429714,41.85682018322339],[-87.65638709552663,41.856594033373725],[-87.6563697193365,41.85613646322953],[-87.65636508745973,41.85601448146608],[-87.65636272202964,41.8559099942448],[-87.65635159008407,41.855418267142355],[-87.65634568742878,41.85520088724654],[-87.65634048588325,41.85500933492868],[-87.6563264308018,41.854518277130445],[-87.65632103322946,41.85431695407959],[-87.65631080888541,41.85393557903837],[-87.65630247638558,41.85380059480184],[-87.65629754778207,41.85372076302699],[-87.65626276907257,41.8524938340652],[-87.6569109413441,41.85248378082207],[-87.65749020429836,41.852474956493026],[-87.65788543392794,41.8524689340495],[-87.65870613488923,41.85245630832532],[-87.65944719438203,41.85244490267901],[-87.66001657422325,41.85243688083951],[-87.66026593770535,41.85243286628993],[-87.66070957274516,41.85242572288008],[-87.66116442850316,41.85241839699148],[-87.6621309588644,41.85240282406204],[-87.66273801474499,41.85239314280795]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11531830.6789","perimeter":"0.0","tract_cent":"1175248.98020183","census_t_1":"17031320500","tract_numa":"85","tract_comm":"32","objectid":"93","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897638.70070522","census_tra":"320500","tract_ce_3":"41.87450171","tract_crea":"","tract_ce_2":"-87.63202569","shape_len":"14717.4551069"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6344566546681,41.86731749162166],[-87.63473401864785,41.86731465855111],[-87.63473937705216,41.867363953988075],[-87.63481347017085,41.86801812048188],[-87.63496253974051,41.86897847131623],[-87.63497353839027,41.86907665688269],[-87.63497942792402,41.869129231333126],[-87.63505743748442,41.86982561410797],[-87.63507012502086,41.869938871451204],[-87.63517960363016,41.87060743209904],[-87.63525901980934,41.871022325068274],[-87.6354395375024,41.871965383734235],[-87.63547253779859,41.872105012330465],[-87.63553803053665,41.87238211984935],[-87.63571549897466,41.87325641981145],[-87.63572611878168,41.87330874136178],[-87.63575747831729,41.87346323177388],[-87.6358688986233,41.87397131965645],[-87.63593101995892,41.87414485885123],[-87.63600830357406,41.874448294284015],[-87.63606556606163,41.87467311991626],[-87.63612127870333,41.87480037953584],[-87.63623472193109,41.87506533906943],[-87.63629353803138,41.87520106971274],[-87.63634907068958,41.87527742236293],[-87.63656577252058,41.875487793969505],[-87.63664308948084,41.87556199405792],[-87.63677666763637,41.87569018699787],[-87.63682712674873,41.875738611737454],[-87.6370663466328,41.876032955650906],[-87.63720085902085,41.87625174650359],[-87.63733008396783,41.87647061491689],[-87.63742891982797,41.876688256219666],[-87.63746982525034,41.87679851620476],[-87.63751611144328,41.87692328027663],[-87.63765932908754,41.87730798546386],[-87.63771808419834,41.877652991060145],[-87.63775277124685,41.87795635017106],[-87.6377654787857,41.87806748561337],[-87.6377703375863,41.8781099772845],[-87.63786257480088,41.878435344664176],[-87.63795371931093,41.87869985638861],[-87.63797564002643,41.878763472542694],[-87.63809665255341,41.879073316856356],[-87.63811419964888,41.879182204913526],[-87.63811370823406,41.879334899076746],[-87.63811347096224,41.87940865523012],[-87.63819881209928,41.87977432118047],[-87.63823374351848,41.87999363302493],[-87.63827805842135,41.88037041144452],[-87.63828613008181,41.880604047267845],[-87.63823637542424,41.88060462730176],[-87.63798205428185,41.880607121710995],[-87.63791866371197,41.88060843463031],[-87.63775855575597,41.88061175066411],[-87.63759459594978,41.88061514824333],[-87.63737113372974,41.88061977666222],[-87.63702329689438,41.88062253999376],[-87.63698657732314,41.8806228316161],[-87.63686032489622,41.88062383438623],[-87.63685011369216,41.88062391543244],[-87.63673391858879,41.88062483855394],[-87.63669719975351,41.880625129813794],[-87.636573701282,41.880626110280865],[-87.63638243420174,41.880628242748614],[-87.6362307200773,41.88062998382435],[-87.63602068366004,41.88063252315987],[-87.63577351783897,41.8806355226459],[-87.63557108344277,41.880638025007734],[-87.6352812712442,41.880640737962985],[-87.63498447615518,41.880643515297706],[-87.63474380553981,41.88064688137401],[-87.63453718007125,41.880649822939155],[-87.63436041418456,41.88065231470149],[-87.63421155972391,41.88065439982376],[-87.6340524958504,41.88065666956817],[-87.63379804048209,41.88066026119461],[-87.63363010033915,41.88066263133414],[-87.63341007724074,41.880665050161106],[-87.63306533266582,41.88066895838653],[-87.63281713756096,41.88067200011694],[-87.63267353844546,41.88067375855098],[-87.63232859641157,41.88067795205394],[-87.6319130881019,41.880683002231436],[-87.63166173330777,41.88068618681993],[-87.63143061443478,41.88068913779112],[-87.63117062889695,41.88069243320732],[-87.63085306118246,41.880696464456236],[-87.63026609628632,41.880703913363334],[-87.63002770610743,41.88070689932139],[-87.62983330799175,41.88070987986179],[-87.6293686665442,41.8807193242889],[-87.6288810242795,41.88072923441834],[-87.62861113615533,41.880734741014955],[-87.628273922596,41.88074164485041],[-87.62816854569807,41.880743796964786],[-87.62772748537574,41.88074289900984],[-87.62773268859937,41.88065149281929],[-87.62773326015773,41.88051609540285],[-87.62772915839321,41.88032150339708],[-87.62772440645792,41.88009392131709],[-87.62772241248385,41.87999842999718],[-87.62771814367645,41.87979399225032],[-87.62771560337684,41.87970780741289],[-87.62771033106327,41.879461644134146],[-87.62770519596484,41.87922190266818],[-87.62769660044478,41.87887454638071],[-87.62769479126919,41.87880481858418],[-87.62769085261957,41.878656527849586],[-87.62768548602799,41.87846343734252],[-87.62767706250699,41.878175926062525],[-87.62766917526572,41.87790669472702],[-87.627667209944,41.8777482300099],[-87.62766529530491,41.87762187325431],[-87.6276589421346,41.87721140507417],[-87.62765756033761,41.87711672015919],[-87.62765212001403,41.876929512257576],[-87.62764146240931,41.876570708715256],[-87.62763517382601,41.876301240145196],[-87.62763151269792,41.87614339613944],[-87.62762710421435,41.875953357545974],[-87.62761996173246,41.87569569630142],[-87.62761836568897,41.87563811360807],[-87.62762153323985,41.875003644408885],[-87.62761115198867,41.87455239842161],[-87.62760697485348,41.87437097785371],[-87.62759525663328,41.87386171244117],[-87.62756611032268,41.87309193343394],[-87.62755513014912,41.87280194101276],[-87.62754038267394,41.87230261598639],[-87.6275257358244,41.871806708944426],[-87.62751739973312,41.87152447340322],[-87.627493800246,41.870533289911236],[-87.62748640976552,41.87022285721286],[-87.62748151789778,41.8699662125625],[-87.62747968351995,41.8698699731487],[-87.62746758964475,41.86923545315861],[-87.62746178584435,41.8689309555223],[-87.62741867651468,41.867413588800275],[-87.62776525665168,41.867408848365734],[-87.62791651412788,41.86740677917381],[-87.62835789379616,41.867400574187975],[-87.62847483044938,41.86739872168006],[-87.6285016555064,41.86739829657602],[-87.62886489441746,41.86739254089502],[-87.62945102272461,41.86738627247538],[-87.62994146063357,41.86738130883445],[-87.63043520026993,41.86737398596383],[-87.6305796773962,41.8673718429504],[-87.63152871310929,41.86735424500819],[-87.63158334665705,41.86735323142805],[-87.63175475819872,41.867350052276244],[-87.63302055703353,41.86733388432669],[-87.6334005217111,41.867324478620475],[-87.63361874179962,41.867319075906536],[-87.63362818178611,41.86731905795411],[-87.6344566546681,41.86731749162166]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15143848.2683","perimeter":"0.0","tract_cent":"1148247.03411715","census_t_1":"17031301800","tract_numa":"72","tract_comm":"30","objectid":"94","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885603.04354215","census_tra":"301800","tract_ce_3":"41.84203699","tract_crea":"","tract_ce_2":"-87.73147514","shape_len":"15759.1830187"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72439610681604,41.838553386834604],[-87.72439127678567,41.83839707514168],[-87.72438338303256,41.83814200841924],[-87.72437697944228,41.83794265823969],[-87.7243712939915,41.837768202377966],[-87.72436601376963,41.83759358400306],[-87.72435930569488,41.83736829884811],[-87.72435832457977,41.83731146038532],[-87.72435684226318,41.837225583801],[-87.72435331630548,41.837016890888144],[-87.72435056187119,41.83688226768801],[-87.7245818643561,41.836879064565125],[-87.72468148934712,41.836877684714764],[-87.72485314149115,41.83687516385113],[-87.72509081036543,41.83687261857412],[-87.72531651341757,41.83687037280525],[-87.72556793392697,41.836866068907625],[-87.72579041181521,41.8368622601182],[-87.726039890092,41.83686042353796],[-87.72639377659804,41.836857793483865],[-87.72678454039134,41.83685288998808],[-87.72703710083161,41.83684972008156],[-87.72730214058572,41.83684763331411],[-87.72764021121407,41.83684497112896],[-87.72799428828355,41.83683966669933],[-87.7282120189172,41.83683640422145],[-87.72855674460935,41.83683624396737],[-87.72886986995856,41.83683270558685],[-87.72921161526298,41.83682668238845],[-87.72948621148664,41.83682184196342],[-87.7298482446917,41.836819161765504],[-87.73015306797743,41.83681653676037],[-87.73042740209918,41.8368133365259],[-87.73074034482562,41.836809685060324],[-87.73100604875073,41.83680718186339],[-87.73137524472955,41.83680373857518],[-87.73163786193497,41.836801643924595],[-87.73189853481995,41.83679956428867],[-87.73218776595787,41.8367965229251],[-87.73245306822662,41.83679379473661],[-87.73285517278224,41.83678588185243],[-87.73306123589602,41.8367818263427],[-87.73338274979434,41.8367798288453],[-87.73376808137671,41.83677750496768],[-87.73407192831824,41.83677305900942],[-87.73426582288589,41.83677022134525],[-87.73468140285482,41.83676673628668],[-87.73504747440704,41.83676381376247],[-87.73542155118938,41.83676030083593],[-87.73574862691652,41.83675602020648],[-87.73596317435013,41.83675373334435],[-87.73625695454791,41.83675078771968],[-87.73655051931439,41.836748237045605],[-87.73681426749653,41.836745944609845],[-87.73718850558376,41.83674080737191],[-87.7374658247964,41.83673620898408],[-87.737752682371,41.83673185148495],[-87.73794154147437,41.83672961982167],[-87.73816423432308,41.836727398512885],[-87.73827850274085,41.836726300364745],[-87.73839728041615,41.83672515849928],[-87.73852333851828,41.83672394663803],[-87.73869666913714,41.83672228014096],[-87.73874825283895,41.836721812814815],[-87.73881144152713,41.836695710933675],[-87.73881204896642,41.83672123222183],[-87.73881204894103,41.836721234965964],[-87.73881204947428,41.83672125664845],[-87.73881215667834,41.836725731461236],[-87.73893326620583,41.83672441065889],[-87.73893326679244,41.83672442657868],[-87.73893344244078,41.83672915943254],[-87.73893567121333,41.83680341444805],[-87.73895746678623,41.837529496932966],[-87.73897851067245,41.83823053232924],[-87.73898808413296,41.83854944125907],[-87.73900719197044,41.838549245672084],[-87.73910919634152,41.838548202069184],[-87.73916436053238,41.84038412882964],[-87.73921999302745,41.842236315820074],[-87.73927159871566,41.843954370978814],[-87.73927428312942,41.8440448910509],[-87.7392771164101,41.84413546622797],[-87.73930674823586,41.84507404962616],[-87.73931549235371,41.84535093613481],[-87.73931992865356,41.84549219739121],[-87.73932308973987,41.84559285475184],[-87.73837839904895,41.84574946544879],[-87.73750632862043,41.845942531931485],[-87.73634415756285,41.84620131878375],[-87.7357290475876,41.8463384208008],[-87.73489693263392,41.84652515740971],[-87.73438359065206,41.84663951542848],[-87.73417332098579,41.846686383807786],[-87.73385840786618,41.846756434510844],[-87.73329018306165,41.84688279080659],[-87.7331407712509,41.84691597041013],[-87.73275550633373,41.847002802083836],[-87.73220749093002,41.84712617166131],[-87.73168567783134,41.84724384376601],[-87.7315666032578,41.847270662875204],[-87.73114502382197,41.8473645025596],[-87.7300917566643,41.847599441323894],[-87.72951800624789,41.8477274645125],[-87.7289543454369,41.84785348109586],[-87.72791530342916,41.84808641651386],[-87.72765967950723,41.8481437274382],[-87.72627902534583,41.8484534008911],[-87.7261774182435,41.84847619005252],[-87.72497835536163,41.848745300374816],[-87.72468603365903,41.848810641426155],[-87.72468603309409,41.84881062358545],[-87.72468436102353,41.84875009218768],[-87.72468375119348,41.84872800367173],[-87.72468235070036,41.848677309976246],[-87.72466593984528,41.84808315604819],[-87.72465233410574,41.847909745258804],[-87.72464730721907,41.84784567847447],[-87.72464007535369,41.84720672057297],[-87.72464007240367,41.847153097633],[-87.72463628615388,41.84699498049812],[-87.72463313282067,41.84686301955333],[-87.72463061536322,41.84672979961377],[-87.72462629317303,41.846562404012424],[-87.7246212569673,41.84638128329861],[-87.72461762664928,41.84626092805138],[-87.72461520587599,41.846084564650994],[-87.7246141530636,41.846007888428225],[-87.7246046653786,41.84573884529758],[-87.72459971799157,41.8455986969052],[-87.72459497573075,41.84546014127018],[-87.72458977155652,41.84528513934187],[-87.72458694455237,41.84516739565506],[-87.72458324598041,41.84501336761013],[-87.72457977396031,41.844880197453136],[-87.7245772674405,41.844800737410395],[-87.72457455193356,41.84471463568529],[-87.72457446864448,41.844712000749],[-87.7245684925879,41.84453713191943],[-87.72456502727621,41.84443423103624],[-87.72455325057412,41.8442551615408],[-87.72454658310663,41.84415377909615],[-87.7245399126567,41.84395925762461],[-87.72453456793006,41.84378269094666],[-87.72453032923339,41.843591969164336],[-87.72452597166914,41.843405116435136],[-87.72452153329343,41.843242275600346],[-87.7245176852265,41.843079108303456],[-87.72451214974124,41.84289263378525],[-87.72450519571426,41.842681590282645],[-87.72450025218511,41.84250623289386],[-87.7244992280237,41.84240974838443],[-87.72449736381986,41.84223409611033],[-87.72449531523003,41.84216759167024],[-87.72449122534462,41.84203381443168],[-87.72448759292483,41.84191376094881],[-87.72448326869367,41.84177369809082],[-87.72447899531518,41.84162831134661],[-87.724473546662,41.84143656824776],[-87.72446522567914,41.84115682843765],[-87.72445911434419,41.840934345467744],[-87.72445291044579,41.840663563441595],[-87.7244496898141,41.840565700337685],[-87.72444234174328,41.84034500773452],[-87.72444001218727,41.84025116860308],[-87.7244366511955,41.84011407489324],[-87.72443038922029,41.83986491707535],[-87.72442462734278,41.83964430228345],[-87.72441907477433,41.83943258002073],[-87.7244128137267,41.83919494810354],[-87.72440850986631,41.839041191387395],[-87.72440346005882,41.8388654765666],[-87.72440009876908,41.83872281360344],[-87.72439610681604,41.838553386834604]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3429001.78052","perimeter":"0.0","tract_cent":"1170685.28573109","census_t_1":"17031310300","tract_numa":"34","tract_comm":"31","objectid":"95","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890911.95685171","census_tra":"310300","tract_ce_3":"41.8561441","tract_crea":"","tract_ce_2":"-87.64897832","shape_len":"7974.50697223"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65128186351802,41.85257709248587],[-87.65141066324286,41.852575476927164],[-87.6514221144876,41.85302481824422],[-87.65142950296656,41.85328298665597],[-87.65143679066097,41.85354719209701],[-87.65144056919637,41.8536648882643],[-87.65144745435903,41.853878634296095],[-87.65145481264122,41.8541070725854],[-87.65145650528811,41.854168883293184],[-87.65145951134014,41.854264278325644],[-87.65146211167095,41.8543529464216],[-87.65146798058178,41.85457795540796],[-87.6514740062076,41.85480894779446],[-87.65147743411438,41.85492856283286],[-87.65148036990716,41.85501848209535],[-87.65148839793316,41.85527117832371],[-87.65149592796244,41.855509768578415],[-87.651500469783,41.85565977955561],[-87.65151911541203,41.85627669904493],[-87.65152999264032,41.856665723139855],[-87.65154083004096,41.85705332242854],[-87.65154896398066,41.85734422526179],[-87.65155709896389,41.857635173366404],[-87.65156791397438,41.85802196646775],[-87.65147385716575,41.85802293170229],[-87.65127345914865,41.85802707056049],[-87.65088954642337,41.85803226119666],[-87.65090104397267,41.85844162713342],[-87.65090629502009,41.85862859804768],[-87.65091447288304,41.85889870871239],[-87.65091682362205,41.85898299708277],[-87.65092034678723,41.85910931024341],[-87.650928191392,41.85939344204312],[-87.65093010023564,41.85946249881709],[-87.6509408717961,41.85985113929855],[-87.65082217156701,41.85985296553372],[-87.65048064976051,41.859858219810164],[-87.65035982892572,41.859860035154334],[-87.65012025395303,41.85986311573253],[-87.6497970517011,41.85986793331731],[-87.64938646546874,41.85987409270983],[-87.64905327828113,41.85987883172394],[-87.64878856297754,41.85988268783875],[-87.64836200782541,41.859888898770706],[-87.64824217835825,41.859889858024644],[-87.64767323885322,41.85989845518195],[-87.64737768105495,41.859902919739994],[-87.647127014076,41.85990438610168],[-87.6467055607459,41.859911363134735],[-87.64670058203139,41.85973778594816],[-87.64669094949501,41.8594543567209],[-87.64668790250659,41.85935485930375],[-87.64668193053157,41.859146727102434],[-87.64667025466528,41.85873979392019],[-87.64666432605007,41.85851848953509],[-87.64665776965107,41.8583449583065],[-87.64665128118978,41.85817321151838],[-87.64664918415849,41.858092325528744],[-87.6466397960802,41.85773008296244],[-87.64663531713272,41.857613507688946],[-87.64663376222457,41.857541516317866],[-87.6466267257245,41.857215649153304],[-87.64661866796104,41.85693261340944],[-87.64661159707319,41.85673112524977],[-87.64660129027284,41.85646398283436],[-87.64659903852842,41.85636394154247],[-87.64659077379676,41.8559966827714],[-87.64658688471857,41.85582385402591],[-87.64657858444977,41.85556694207527],[-87.64657233367505,41.855348242407544],[-87.64656659198882,41.85514735599566],[-87.64656082580547,41.85497610739371],[-87.64655557686974,41.85480001826771],[-87.64655346866239,41.8547292853612],[-87.64655159289414,41.85466636728952],[-87.64654137744253,41.85432365399437],[-87.64653757409192,41.85420129230859],[-87.64653414104038,41.85409084318126],[-87.64652993827215,41.853950064592844],[-87.64652238632044,41.853697109034606],[-87.64652047232255,41.85362678973729],[-87.64651640085829,41.85345346558809],[-87.64651307175475,41.85331203413552],[-87.64650794293983,41.8531189724476],[-87.64650270814907,41.85292552592335],[-87.64649538700212,41.85264651854685],[-87.6468390614561,41.85264196950175],[-87.64705800084921,41.852635824267274],[-87.64749770994794,41.85262381351053],[-87.64813242553451,41.85261257440405],[-87.64856988650804,41.85260482634702],[-87.64886987588376,41.85259980329237],[-87.64890148804722,41.85259936983342],[-87.64932050263504,41.85259362343846],[-87.64932052833285,41.85259362304265],[-87.6495950727551,41.852590022851494],[-87.64971910576458,41.852589085537915],[-87.65015164063482,41.852585815613764],[-87.65058581218744,41.852585820828146],[-87.6507502672973,41.85258375906552],[-87.65084497956882,41.8525825713558],[-87.65128186351802,41.85257709248587]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4899996.77528","perimeter":"0.0","tract_cent":"1161686.19944758","census_t_1":"17031311000","tract_numa":"28","tract_comm":"31","objectid":"98","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890585.60076394","census_tra":"311000","tract_ce_3":"41.85544062","tract_crea":"","tract_ce_2":"-87.68201858","shape_len":"8872.37859457"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67857067790139,41.859042474487886],[-87.67855935789984,41.85871275619476],[-87.67844907416179,41.858728249902576],[-87.67844538924949,41.85849216797604],[-87.6784588262653,41.85815379546612],[-87.67845712844527,41.85808608772422],[-87.67844578739148,41.857633868376595],[-87.67844353564465,41.85754407169233],[-87.67843355519713,41.85717639552015],[-87.67842592704314,41.85689539362882],[-87.67841673505797,41.85672190910997],[-87.67841041332035,41.856602602708804],[-87.6784039193264,41.85626276379416],[-87.67839796936255,41.855951456712965],[-87.67839329224444,41.85580552171511],[-87.67838828024587,41.85564909405596],[-87.67838170356838,41.8553431335721],[-87.67837508756017,41.85503534791605],[-87.67836868216324,41.85489346481463],[-87.67836149482378,41.854734252749516],[-87.67835594948407,41.85449318470874],[-87.67835507715677,41.854455247775135],[-87.67834750959744,41.85412626493294],[-87.6783438771114,41.85397664536629],[-87.67834135918666,41.853872879928275],[-87.67833979985758,41.853812662006035],[-87.6783374250458,41.853718794823784],[-87.67833224749705,41.8535197953026],[-87.6783269838798,41.8533174697909],[-87.67831824033064,41.85305955345997],[-87.67830627523125,41.8527065894482],[-87.67830306604178,41.8525960074214],[-87.6783022012205,41.85256622480909],[-87.6782966595892,41.852375439756756],[-87.67829251647883,41.85213720043686],[-87.67868271498837,41.85213159061962],[-87.67906516401862,41.85212589965568],[-87.67911611852601,41.85212514133051],[-87.67986062466647,41.852112310449954],[-87.68034370853418,41.85210408098733],[-87.68074340808192,41.85209861835076],[-87.68113646050341,41.852093245008334],[-87.68196982650285,41.85208064019394],[-87.6831877638024,41.85206220795204],[-87.68366302454692,41.85205501190712],[-87.68435245829707,41.85204347485093],[-87.68436049875723,41.85204334026033],[-87.68503387118754,41.852033888397386],[-87.685640263929,41.85203190621063],[-87.68565484309416,41.852528833881514],[-87.68566559313392,41.85295326787033],[-87.68567652549416,41.853384890618734],[-87.68568802463768,41.85387637210893],[-87.68569022558395,41.85404984692315],[-87.68569785020098,41.85431748807148],[-87.68570040129755,41.85440702895428],[-87.68570187227522,41.85445864303144],[-87.68570681324971,41.85463209513343],[-87.68570844158052,41.85468925212576],[-87.68571212619038,41.85479920542534],[-87.68571794959526,41.85497295228625],[-87.6857333782862,41.85547389384817],[-87.68573437647836,41.85553202505793],[-87.68573742214483,41.85570943271587],[-87.68573742454466,41.85570955869084],[-87.68573959797973,41.85583614353176],[-87.68574758770569,41.856184242528435],[-87.68575209278062,41.856380510073],[-87.68575934072267,41.856635025672574],[-87.68576279935282,41.85675647884285],[-87.68577068711954,41.85710131181632],[-87.68577102710029,41.857116187333446],[-87.68578867511226,41.85723804761178],[-87.68580274323382,41.85733518362365],[-87.68581728702122,41.85743560554326],[-87.68582356893045,41.85749582224479],[-87.68583125565927,41.85756950387904],[-87.6858387399121,41.85764124335733],[-87.6858458941528,41.85770981904082],[-87.68584721057825,41.857722439342126],[-87.68583828781328,41.85778045724218],[-87.68582371786809,41.85787518945258],[-87.68580286003504,41.85811609993997],[-87.68581022661873,41.858382938116684],[-87.68581099434908,41.858415235211496],[-87.6848220094617,41.858606960523566],[-87.68151610905528,41.85886640279997],[-87.68131583600005,41.85888211682567],[-87.68120420699891,41.858888638959485],[-87.6811686734674,41.85889071492295],[-87.68106194907473,41.85889695027705],[-87.67857067790139,41.859042474487886]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6244902.69432","perimeter":"0.0","tract_cent":"1147827.79832686","census_t_1":"17031292600","tract_numa":"16","tract_comm":"29","objectid":"99","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888211.87269583","census_tra":"292600","tract_ce_3":"41.84920401","tract_crea":"","tract_ce_2":"-87.7329467","shape_len":"11276.3561486"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72471025754619,41.84971354762528],[-87.72470045165507,41.849332637486654],[-87.72468603365903,41.848810641426155],[-87.72497835536163,41.848745300374816],[-87.7261774182435,41.84847619005252],[-87.72627902534583,41.8484534008911],[-87.72765967950723,41.8481437274382],[-87.72791530342916,41.84808641651386],[-87.7289543454369,41.84785348109586],[-87.72951800624789,41.8477274645125],[-87.7300917566643,41.847599441323894],[-87.73114502382197,41.8473645025596],[-87.7315666032578,41.847270662875204],[-87.73168567783134,41.84724384376601],[-87.73220749093002,41.84712617166131],[-87.73275550633373,41.847002802083836],[-87.7331407712509,41.84691597041013],[-87.73329018306165,41.84688279080659],[-87.73385840786618,41.846756434510844],[-87.73417332098579,41.846686383807786],[-87.73438359065206,41.84663951542848],[-87.73489693263392,41.84652515740971],[-87.7357290475876,41.8463384208008],[-87.73634415756285,41.84620131878375],[-87.73750632862043,41.845942531931485],[-87.73837839904895,41.84574946544879],[-87.73932308973987,41.84559285475184],[-87.73932996405668,41.845809906845425],[-87.73933495283154,41.845968896433966],[-87.73933750335212,41.84605017968034],[-87.73936420307486,41.84689698238063],[-87.7393923461203,41.8477895379383],[-87.73943241758558,41.84906036844518],[-87.73944942560253,41.8495997512149],[-87.739469467807,41.849599525534884],[-87.73949770886604,41.85114150807642],[-87.73950453416734,41.85134801102636],[-87.73950453479733,41.851348022281094],[-87.73932135207137,41.851351559148995],[-87.73917538371325,41.85135290952002],[-87.73891086623564,41.85135697089259],[-87.73865580872243,41.85136070000786],[-87.73837368523083,41.8513660175139],[-87.73691754054991,41.85136633796217],[-87.73669963125884,41.8513663845741],[-87.7356128311405,41.85138466431326],[-87.73525652301961,41.851390654486174],[-87.73450128063219,41.85140014196573],[-87.7338262226742,41.851408618228284],[-87.73341936977218,41.85141470137544],[-87.73240864143214,41.85142980828599],[-87.73232888807141,41.85143136328227],[-87.73206312134197,41.85143654450658],[-87.73124234407155,41.8514525429277],[-87.73099525001896,41.85145735798101],[-87.72960561806751,41.851478436353226],[-87.72819839182581,41.85149349708786],[-87.7279877453563,41.8514971516369],[-87.72718317899304,41.851511106300954],[-87.7267935270934,41.85151786241059],[-87.72526969716797,41.851538403467764],[-87.72475861828482,41.85154656052897],[-87.72475664927032,41.851473394650355],[-87.72475409865233,41.85137860501844],[-87.72474834545572,41.85122659728472],[-87.72474518132015,41.851088383579665],[-87.72474138893008,41.85092274312685],[-87.72471025754619,41.84971354762528]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1798623.41098","perimeter":"0.0","tract_cent":"1156311.06119845","census_t_1":"17031300300","tract_numa":"12","tract_comm":"30","objectid":"100","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1889807.98150405","census_tra":"300300","tract_ce_3":"41.85341694","tract_crea":"","tract_ce_2":"-87.70176891","shape_len":"5961.48274382"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69915034057014,41.85370312881969],[-87.69913100251306,41.85315942175775],[-87.69911827807657,41.85276803564977],[-87.69911270418683,41.852596582735806],[-87.69909205125778,41.85198974015792],[-87.69908861861846,41.85185278863724],[-87.6991639597407,41.85185273320047],[-87.69922528357914,41.85185268786688],[-87.69935701979023,41.85185259046349],[-87.70012535549432,41.85184195514057],[-87.70036378593197,41.85183842167469],[-87.70053702284318,41.851835854018],[-87.70146442998511,41.851818429562606],[-87.70158060273815,41.85181827883626],[-87.70174698676473,41.85181806273383],[-87.70212206202001,41.851807940177316],[-87.70267864998091,41.85180078908964],[-87.70281265201679,41.85179929427884],[-87.70290276064638,41.85179828918454],[-87.70302488665506,41.85179692679882],[-87.70395493042035,41.851781652590596],[-87.70403546799217,41.85178112325246],[-87.70417023809567,41.85178023727309],[-87.70503232829941,41.85176835378196],[-87.70525465908878,41.85176516528519],[-87.70526110905679,41.85197844335431],[-87.70526886422655,41.852241028923366],[-87.70526902018155,41.85224632345523],[-87.70526917894246,41.85225170636764],[-87.70527558414649,41.85246859260174],[-87.70528928171498,41.85292942885291],[-87.70529146477108,41.85301495715962],[-87.70529284317323,41.853068975583724],[-87.70529349862188,41.853094651174885],[-87.70529386630874,41.8531090696085],[-87.70529530407498,41.85316538722319],[-87.7053024695843,41.85344613541707],[-87.70530651749978,41.853586651323546],[-87.70518735971415,41.85358502410639],[-87.70469862503693,41.85359225934098],[-87.70463107663257,41.853593259259966],[-87.70421631792276,41.85360281587588],[-87.70409125500211,41.85361091623375],[-87.70401357332567,41.85361594784706],[-87.70377052410394,41.85361052687996],[-87.70366552191793,41.85362416652837],[-87.7034802094009,41.85366382968072],[-87.7028772640418,41.85380167308037],[-87.7028831727095,41.853950009159625],[-87.70289149980914,41.854157603510394],[-87.70289219085456,41.85418318270659],[-87.7028986472836,41.85442207933115],[-87.70290277248317,41.854549820089886],[-87.70290762609638,41.85470012210804],[-87.70291633022882,41.854990704628456],[-87.7029201209517,41.85511726323227],[-87.70292888405345,41.85545096522625],[-87.70283817034039,41.85545206196301],[-87.70267014322522,41.85545409334777],[-87.70157108640674,41.85547080293264],[-87.70122508698834,41.855474607231116],[-87.70066958070065,41.85548425445941],[-87.70047151455363,41.85548764707596],[-87.70036166838094,41.85548952831383],[-87.69946722623258,41.85550136277461],[-87.69921275795315,41.85550509999491],[-87.69920788899886,41.855382751339036],[-87.69919103404492,41.85484461884569],[-87.69917949816588,41.85453369534112],[-87.69917730901928,41.85447468689183],[-87.69916760511182,41.85420743766894],[-87.69916652917871,41.85417601023127],[-87.69915034057014,41.85370312881969]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1072660.49338","perimeter":"0.0","tract_cent":"1154553.3044733","census_t_1":"17031300400","tract_numa":"10","tract_comm":"30","objectid":"101","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1889515.46678651","census_tra":"300400","tract_ce_3":"41.85264954","tract_crea":"","tract_ce_2":"-87.70822835","shape_len":"4523.40031625"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70530651749978,41.853586651323546],[-87.7053024695843,41.85344613541707],[-87.70529530407498,41.85316538722319],[-87.70529386630874,41.8531090696085],[-87.70529349862188,41.853094651174885],[-87.70529284317323,41.853068975583724],[-87.70529146477108,41.85301495715962],[-87.70528928171498,41.85292942885291],[-87.70527558414649,41.85246859260174],[-87.70526917894246,41.85225170636764],[-87.70526902018155,41.85224632345523],[-87.70526886422655,41.852241028923366],[-87.70526110905679,41.85197844335431],[-87.70525465908878,41.85176516528519],[-87.70542295807151,41.85176275123604],[-87.70630902124351,41.85175409023516],[-87.70647176844712,41.85175176426378],[-87.70659752444944,41.851749907732724],[-87.70670412914285,41.85174845289355],[-87.70751412703541,41.851737336809066],[-87.70768901234666,41.85173625967404],[-87.70791133252762,41.851734890086306],[-87.7083944976378,41.85172895800993],[-87.70872807330413,41.851724845250445],[-87.70890459508088,41.85172280204877],[-87.70913462363883,41.851720139662326],[-87.70996397903627,41.85170749238526],[-87.71012750912085,41.85170646845721],[-87.71038897180489,41.85170483115194],[-87.7105710178307,41.85169821679249],[-87.7107698900263,41.85166729686873],[-87.71088964648952,41.85164513564842],[-87.71098300412396,41.85174316080914],[-87.71101154555687,41.85177312911741],[-87.71104187578574,41.85180497567799],[-87.71105597157617,41.85181977583561],[-87.7111010774821,41.85186713698339],[-87.71113607539127,41.851929905072005],[-87.711142937823,41.85199113790176],[-87.71115236365027,41.8520752182423],[-87.71116071289796,41.85217570343064],[-87.71116246682662,41.8523128711027],[-87.71117542331932,41.85272140368113],[-87.71119786356215,41.85342893418255],[-87.71120290436538,41.85355074518387],[-87.71110055808919,41.85354237619364],[-87.71068725376449,41.85354557789252],[-87.71031059111202,41.853548494433745],[-87.71017814089612,41.85354948774274],[-87.71006214853062,41.8535503575322],[-87.7095669069619,41.8535547688754],[-87.70909167465331,41.853559000063186],[-87.70895739822627,41.85356022627759],[-87.70881665072984,41.853561511550836],[-87.70834300415098,41.85356542745885],[-87.70786365594316,41.8535693883001],[-87.70773968166809,41.853570766341164],[-87.70764824322822,41.85357178252718],[-87.70713384077888,41.853576399247565],[-87.70664373852654,41.85358079554364],[-87.70652519053723,41.85358174798128],[-87.70639044832994,41.85358292584173],[-87.70591524258268,41.85358627766639],[-87.70549579413567,41.85358923529263],[-87.70530651749978,41.853586651323546]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10744506.3828","perimeter":"0.0","tract_cent":"1147924.09077129","census_t_1":"17031290900","tract_numa":"51","tract_comm":"29","objectid":"106","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893026.56083087","census_tra":"290900","tract_ce_3":"41.86241427","tract_crea":"","tract_ce_2":"-87.73246964","shape_len":"13397.9649464"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73121749015921,41.858780874387534],[-87.73221165421181,41.858755483615],[-87.73228753809921,41.85875846887399],[-87.73243050454329,41.858764093245334],[-87.73289846371269,41.85875662594514],[-87.73335272912489,41.85874937554487],[-87.7335103359123,41.85874764497051],[-87.73364910917938,41.85874612100487],[-87.73406082335161,41.8587394381588],[-87.73411901547286,41.85873849780947],[-87.73451931114981,41.858732027896195],[-87.73473520139622,41.858730220800204],[-87.73492739724054,41.858728611472785],[-87.73579594724865,41.85871447263985],[-87.73595460190421,41.858710575099884],[-87.73609739475314,41.85870706687109],[-87.73703884965063,41.85869272115951],[-87.73717637016252,41.858692389510416],[-87.73736725311977,41.85869192873426],[-87.73806311061175,41.85867702113311],[-87.7382046717027,41.85867398771261],[-87.7383950863781,41.85867330957245],[-87.73851844122422,41.858672870004426],[-87.73857507470464,41.858672668233105],[-87.73879689903899,41.858669150956466],[-87.73907376217028,41.85866476079223],[-87.739317470256,41.85866089552657],[-87.73977122656981,41.858652978238474],[-87.73977390685249,41.85874410123755],[-87.73978379749767,41.859087733378075],[-87.73978447655858,41.85910969151227],[-87.73978508088523,41.8591315935517],[-87.73979489885657,41.85947511579688],[-87.73979813600843,41.85958879370861],[-87.73980005375586,41.85965615377862],[-87.73980994498966,41.859999786140555],[-87.73981122803906,41.860043646305286],[-87.73981884869806,41.860308576657744],[-87.73982128297455,41.86039320653969],[-87.73982375972949,41.86047884076419],[-87.7398253386256,41.86053433783695],[-87.73987359696766,41.862215225952056],[-87.73987617404015,41.862305744897355],[-87.73987875024385,41.86239631872186],[-87.7398886377324,41.862740389153956],[-87.73988992035868,41.86278430445455],[-87.73989986968954,41.86312963754079],[-87.73990502155846,41.86331089520359],[-87.73990927633234,41.86345958568989],[-87.73991490043514,41.86365611976954],[-87.73991618213209,41.86369997989856],[-87.73992607044893,41.864043995369556],[-87.73992868420622,41.86413456963435],[-87.73993129935657,41.86422503358576],[-87.73994107458817,41.86456537195917],[-87.73994235814952,41.86460923209068],[-87.7399522466778,41.864953248878926],[-87.73995743789432,41.865134286596536],[-87.73996644149553,41.86544684877784],[-87.73996768874113,41.86549070871481],[-87.73997712626084,41.86581995819645],[-87.73998200626032,41.865959187455246],[-87.73976647132838,41.86596219585274],[-87.7397664687586,41.86596219583946],[-87.73973028613592,41.86596269955992],[-87.73941684964066,41.86596706322048],[-87.73910702311422,41.86597174053454],[-87.73873176505737,41.86597740429566],[-87.73760783415013,41.8659935338904],[-87.73740384033613,41.86599675029835],[-87.73714948005896,41.86600076033837],[-87.73530220090291,41.866027983980615],[-87.73496474552525,41.86603289593056],[-87.73483011901241,41.86603485526089],[-87.7340003017432,41.8660461975373],[-87.73399259039657,41.86604629395912],[-87.73373259591054,41.866049541720706],[-87.73356490882092,41.86605163596161],[-87.73300059495936,41.8660594450318],[-87.73249594663743,41.866066723749775],[-87.73128766847505,41.866084141904054],[-87.73006397195468,41.866101769321574],[-87.72883502241609,41.86611945923338],[-87.72761878594183,41.86613695331581],[-87.72638868976404,41.86615463350127],[-87.72517048968574,41.866172129968675],[-87.72515939662661,41.86609220214391],[-87.72515119049764,41.865697562745325],[-87.72515047478363,41.865663145441715],[-87.72514270202957,41.86528933666063],[-87.725116907536,41.86446276738499],[-87.72511636046173,41.86434254027205],[-87.72511568114466,41.864193192604354],[-87.72508942817802,41.86335696095564],[-87.72506828509691,41.86268272229295],[-87.7250606071709,41.86252358854263],[-87.72505741152035,41.86245735187129],[-87.7250507649112,41.86231959173465],[-87.72504451845064,41.86206308064714],[-87.72502991521303,41.86146341022644],[-87.72501691334688,41.86093002232469],[-87.7250134767183,41.86078867484367],[-87.72500955100827,41.860694824305675],[-87.72500620408623,41.860614815026864],[-87.72498409855069,41.85986798530217],[-87.72496790660085,41.85932176493812],[-87.72496677983003,41.85928375043955],[-87.72495789641201,41.858984085498626],[-87.72495503309881,41.85886832655344],[-87.7251224537435,41.85886876514614],[-87.72606597396201,41.85885388942851],[-87.72617961683686,41.85885107831918],[-87.72627438182737,41.85884873428071],[-87.72727213037624,41.8588366874331],[-87.72739614340695,41.85883438127296],[-87.72757330539254,41.85883108637204],[-87.72852896203788,41.85882539281062],[-87.72862116529512,41.85882177098611],[-87.72877661766682,41.85881566478389],[-87.72972604178504,41.85880128403691],[-87.72984065895787,41.858799847377675],[-87.72999907704799,41.858797861338964],[-87.73045256744565,41.85879107471047],[-87.73094519480428,41.85878370012627],[-87.73106362841808,41.85878247106852],[-87.73121749015921,41.858780874387534]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"18386190.3614","perimeter":"0.0","tract_cent":"1157986.69566475","census_t_1":"17031301300","tract_numa":"35","tract_comm":"30","objectid":"102","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1884154.72195837","census_tra":"301300","tract_ce_3":"41.83786978","tract_crea":"","tract_ce_2":"-87.69577276","shape_len":"20182.4656899"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6874956865621,41.83770584965777],[-87.68748942474078,41.837018515855526],[-87.68751312145143,41.8368121034905],[-87.68750278532931,41.83642579005058],[-87.68748711462099,41.835885767063495],[-87.6874579050111,41.834913102952925],[-87.68739948177172,41.834800982818116],[-87.68795936125323,41.8346246175766],[-87.68834432728659,41.83450367375167],[-87.68841861545137,41.834480334855954],[-87.68873585093316,41.8343807313818],[-87.68891515339281,41.834324502208716],[-87.68912280328614,41.83425938279866],[-87.68940694011191,41.83417055242841],[-87.68990552936275,41.83401478269288],[-87.69031858331796,41.833885653851716],[-87.69036388424018,41.83387149153048],[-87.69092871687477,41.83369224044365],[-87.69135494218884,41.83355804123781],[-87.69181157176328,41.83341413089511],[-87.69214587623414,41.83330858688672],[-87.69225756508487,41.833273260390364],[-87.692448796218,41.83321264544485],[-87.6925379876707,41.833184374073355],[-87.69276400396181,41.833112746984646],[-87.69309860710209,41.83300692743189],[-87.69329767308972,41.83294420515312],[-87.69361673842687,41.832843566500394],[-87.6938687964295,41.8327653862489],[-87.69414234953264,41.832680519274604],[-87.69441789036857,41.832594949193236],[-87.69453059179189,41.832558910131105],[-87.69481301475697,41.83246859767923],[-87.69488877699408,41.83244437061601],[-87.69497275125742,41.832417517321886],[-87.69518936864478,41.83234824706626],[-87.69526153053225,41.83232576212336],[-87.6955607560301,41.8322325257622],[-87.69598157765239,41.8321047557974],[-87.69635786270999,41.83199450179383],[-87.69661466513139,41.83219452212632],[-87.69683497519249,41.83211042108431],[-87.69704999395603,41.832029421518115],[-87.69729074774803,41.83193964518044],[-87.69729176821761,41.831939234799954],[-87.69761877108492,41.831807716394565],[-87.69781084892472,41.83173099544852],[-87.69816609157806,41.831614408245436],[-87.69854186381569,41.831492142715085],[-87.69904473698642,41.83133295395194],[-87.69935406314718,41.83123592284879],[-87.69961273337827,41.831155598473345],[-87.69964450401669,41.831145771438635],[-87.69996628345693,41.831046240942875],[-87.70018995759882,41.83097681325241],[-87.70038325249884,41.83091681443721],[-87.70076308897151,41.83080949284156],[-87.70080715742081,41.83079826447666],[-87.7017899530072,41.83052400373644],[-87.70192506598497,41.83048555835791],[-87.70203190267821,41.830455228644595],[-87.70207110609468,41.8304440992907],[-87.70225299987808,41.83039463166161],[-87.70228793222769,41.8303857422418],[-87.70230610042977,41.830381118890664],[-87.70241102578234,41.830354418049744],[-87.70255577389774,41.83031742442945],[-87.70271486775998,41.83027677717989],[-87.70288753546973,41.83023260921812],[-87.7030097808558,41.83020034887059],[-87.7031906566765,41.8301497764578],[-87.70332303869802,41.830112768911356],[-87.70345818347279,41.83007467865368],[-87.70361007057696,41.830031630567255],[-87.70374676004353,41.829993136522546],[-87.70388837918483,41.829953270299896],[-87.70407819086351,41.82990055031079],[-87.7041738488757,41.8298741801853],[-87.70428507866269,41.82985009095194],[-87.70460744033225,41.82979817962559],[-87.70461424800672,41.83001440893683],[-87.7046179096121,41.83013071774752],[-87.7046208843235,41.83022520529136],[-87.70462479368159,41.830318709463015],[-87.70462650657079,41.83035968586674],[-87.7046273905587,41.83038082790462],[-87.70463106750262,41.83047138674745],[-87.7046310689827,41.83047142297993],[-87.70463677453019,41.830622443177475],[-87.70464660716107,41.830903785039254],[-87.70465281994308,41.83110508331601],[-87.70465806238506,41.83122416752992],[-87.70466221626144,41.83131852950954],[-87.70466730651752,41.83154084328859],[-87.7046691609101,41.831639812382136],[-87.70467236861168,41.831810962095744],[-87.70467394964744,41.83199812998879],[-87.70467590619872,41.83218963368262],[-87.70467608447788,41.832207076142296],[-87.70468138462655,41.83242707267618],[-87.7046856473395,41.832591395456916],[-87.7046913765135,41.83277827702295],[-87.70469356081558,41.83284818553333],[-87.70469356479516,41.832848303833146],[-87.70469421429718,41.83286798929181],[-87.70470233146227,41.83311383110817],[-87.70471078193404,41.83337804076264],[-87.70471384666524,41.833482852137685],[-87.70471713988361,41.83359547659904],[-87.70471809714219,41.8336321622939],[-87.70471858335068,41.83365079936842],[-87.70471928969936,41.83367787682536],[-87.70472092924656,41.83374072408191],[-87.70473262672547,41.834019057021294],[-87.7047413948592,41.83430426203081],[-87.7047481683595,41.83462831496034],[-87.70475473628345,41.83490587883041],[-87.70476101394964,41.835149357279505],[-87.7047641280679,41.835269535973616],[-87.70476772650336,41.835408398101656],[-87.70477704755707,41.83569341396755],[-87.7047845972811,41.835911871615124],[-87.70479541044108,41.836231885041606],[-87.70480298578028,41.836462774343076],[-87.70480866291835,41.83667389451727],[-87.70481366276606,41.83687172872011],[-87.70482285953652,41.837232938428464],[-87.70482771260134,41.837423540662925],[-87.70483465420968,41.837659174304896],[-87.704842178972,41.83792529939141],[-87.70485005067404,41.838197189599654],[-87.70485718252456,41.838439684643795],[-87.70486373704783,41.838677428936236],[-87.70487056540095,41.83894720031352],[-87.70487414855303,41.83905671644794],[-87.7036523778651,41.83907288766813],[-87.70325046669993,41.83907630604513],[-87.70304346646328,41.83907807292012],[-87.70302149201237,41.839078260513446],[-87.70280007766293,41.839080146532936],[-87.70258974723623,41.83908190034583],[-87.70256196066116,41.839082571307145],[-87.70250754058152,41.83907113043574],[-87.70248484253277,41.83905886815318],[-87.7024742856434,41.839053164938626],[-87.70244791210388,41.83902579695166],[-87.70243413852414,41.83898966162952],[-87.70243314528433,41.83896001809133],[-87.70243207079959,41.83892743774111],[-87.70243020630784,41.83887067605956],[-87.70242653886332,41.83875836051021],[-87.70242039651984,41.83856927393976],[-87.70241422297075,41.83837955655884],[-87.70240745469742,41.83817197045023],[-87.70240127753681,41.837982664401544],[-87.70239338440035,41.83774016501678],[-87.70237830407608,41.83727670902732],[-87.70213581197952,41.83728064925165],[-87.70205165390642,41.837282358825675],[-87.70183381335414,41.83728678296888],[-87.70171030436063,41.83728929707513],[-87.70138375142331,41.83729594332405],[-87.70100504206752,41.837303601206976],[-87.70062464387776,41.8373113311404],[-87.70029273172183,41.837318036698065],[-87.70007882448367,41.83732174811745],[-87.69992452945516,41.83732442509187],[-87.69992682471242,41.83739514325301],[-87.69993539398028,41.83765915500733],[-87.69994230799712,41.837877197730855],[-87.69995011606572,41.838119943506044],[-87.6999566036955,41.83836262765269],[-87.69996328365767,41.83861189881566],[-87.69997040089305,41.83887723018159],[-87.6999791426138,41.83917324371016],[-87.69998828521875,41.83946303379056],[-87.69999559367908,41.83969320800166],[-87.70000436048785,41.83996529573973],[-87.70001326484092,41.84024204920091],[-87.70002009853174,41.84045339509681],[-87.70002613312595,41.84064157552271],[-87.70003361940265,41.84087603199456],[-87.70003623169883,41.84097505978374],[-87.70004144662461,41.84117275772575],[-87.70004460965033,41.84131720586844],[-87.70004850337149,41.841491762629566],[-87.7000534545833,41.841715392682524],[-87.70005770198738,41.84188385883795],[-87.70006811436286,41.84219753116043],[-87.7000741537681,41.842396413913725],[-87.70008040632067,41.84260718050272],[-87.70008551652565,41.84276069514431],[-87.70009648816627,41.84309028723648],[-87.70009870517268,41.843159482374844],[-87.700103254602,41.84330105663238],[-87.70011013657908,41.84351127780434],[-87.70011831671334,41.84376478317638],[-87.70012619677532,41.844000339393524],[-87.70013727661632,41.84425091393823],[-87.70014374528921,41.844379419036386],[-87.70014826180036,41.84461301045218],[-87.69990304959603,41.84462639287106],[-87.69967591441832,41.844633317902534],[-87.69931446946912,41.84463876020502],[-87.69875820691948,41.8446452656996],[-87.69839607516805,41.844649631053954],[-87.6979690126207,41.84465473380337],[-87.69769361377315,41.844658153801696],[-87.69749155183234,41.844660662458246],[-87.6970774504149,41.84466516623919],[-87.69677583701457,41.84466961473233],[-87.69653214819358,41.84467295658506],[-87.69628864420797,41.84467616173266],[-87.69596384280851,41.84467987574111],[-87.69585017037409,41.844681004778536],[-87.69574405828438,41.84468205876716],[-87.69555698722031,41.84468280391439],[-87.69521534420977,41.844691944293295],[-87.69498959082894,41.844697983530466],[-87.69466051384656,41.84470115855899],[-87.69431570433028,41.84470422535653],[-87.69409560817418,41.844708132379964],[-87.6939161154555,41.84471078313108],[-87.69369750296721,41.8447130785357],[-87.69327622350364,41.84471602807109],[-87.69307299438184,41.844717776832155],[-87.69279112798466,41.844721934702775],[-87.69253161630348,41.844725762154845],[-87.6923375084015,41.844729234503745],[-87.69211059271164,41.844732441314626],[-87.69179719853717,41.844736848831396],[-87.69149187888128,41.844741142271545],[-87.69119111283094,41.84474519663488],[-87.6910129101621,41.844747273765336],[-87.6907372095193,41.84475143967059],[-87.69033863097265,41.84475595961991],[-87.69000968227046,41.844759688729646],[-87.68958148685468,41.84476780007404],[-87.68927835016625,41.84477400410856],[-87.6889379461404,41.84477818704741],[-87.68860467667929,41.84478087251344],[-87.68832762476048,41.84478431126556],[-87.6880084166019,41.84478916728979],[-87.68788384138279,41.84479093245873],[-87.68781050803587,41.84479197121886],[-87.68779556866762,41.84479215097789],[-87.68766767761721,41.844793688163016],[-87.68759066395374,41.84479461361198],[-87.6875602695139,41.84479497867857],[-87.68755924157624,41.84468205414909],[-87.68755163128287,41.843846769516304],[-87.68754591682747,41.8432195655223],[-87.68753540480581,41.84206566568678],[-87.68753220345191,41.84171428274687],[-87.68752972630455,41.84144237749336],[-87.6875227894861,41.84068094380769],[-87.68751940887428,41.84030987351373],[-87.68751789954513,41.84014416957481],[-87.6875153396772,41.839863195082344],[-87.68750249934727,41.83845368657041],[-87.68750178022948,41.838374764289725],[-87.68750175092414,41.83837158379475],[-87.6875016399435,41.83835937255787],[-87.68750010861544,41.838191260620064],[-87.6875001033459,41.83819068978303],[-87.6874993731225,41.83811057285715],[-87.68749666963151,41.83781377703615],[-87.6874956865621,41.83770584965777]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3101877.57417","perimeter":"0.0","tract_cent":"1156193.68134765","census_t_1":"17031301400","tract_numa":"15","tract_comm":"30","objectid":"103","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885394.92566807","census_tra":"301400","tract_ce_3":"41.84130938","tract_crea":"","tract_ce_2":"-87.70231876","shape_len":"7957.25215616"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6999791426138,41.83917324371016],[-87.69997040089305,41.83887723018159],[-87.69996328365767,41.83861189881566],[-87.6999566036955,41.83836262765269],[-87.69995011606572,41.838119943506044],[-87.69994230799712,41.837877197730855],[-87.69993539398028,41.83765915500733],[-87.69992682471242,41.83739514325301],[-87.69992452945516,41.83732442509187],[-87.70007882448367,41.83732174811745],[-87.70029273172183,41.837318036698065],[-87.70062464387776,41.8373113311404],[-87.70100504206752,41.837303601206976],[-87.70138375142331,41.83729594332405],[-87.70171030436063,41.83728929707513],[-87.70183381335414,41.83728678296888],[-87.70205165390642,41.837282358825675],[-87.70213581197952,41.83728064925165],[-87.70237830407608,41.83727670902732],[-87.70239338440035,41.83774016501678],[-87.70240127753681,41.837982664401544],[-87.70240745469742,41.83817197045023],[-87.70241422297075,41.83837955655884],[-87.70242039651984,41.83856927393976],[-87.70242653886332,41.83875836051021],[-87.70243020630784,41.83887067605956],[-87.70243207079959,41.83892743774111],[-87.70243314528433,41.83896001809133],[-87.70243413852414,41.83898966162952],[-87.70244791210388,41.83902579695166],[-87.7024742856434,41.839053164938626],[-87.70248484253277,41.83905886815318],[-87.70250754058152,41.83907113043574],[-87.70256196066116,41.839082571307145],[-87.70258974723623,41.83908190034583],[-87.70280007766293,41.839080146532936],[-87.70302149201237,41.839078260513446],[-87.70304346646328,41.83907807292012],[-87.70325046669993,41.83907630604513],[-87.7036523778651,41.83907288766813],[-87.70487414855303,41.83905671644794],[-87.70487680181274,41.83913780155183],[-87.70488096125273,41.83926493354068],[-87.7048875165117,41.83944260580182],[-87.70489208935813,41.83958138643928],[-87.70489413768868,41.839643549525285],[-87.70490062008868,41.83985121648425],[-87.70490602865095,41.84005229104603],[-87.7049111506621,41.84025643761122],[-87.70491563002041,41.84039499268704],[-87.7049237198663,41.8406483876142],[-87.70492995867359,41.84087665386013],[-87.70493815054367,41.84117638104106],[-87.70494287464669,41.841338730218624],[-87.70495008050838,41.84155496290752],[-87.70495743839668,41.84177816685462],[-87.7049634333192,41.841983141412385],[-87.70496990705936,41.84220669725976],[-87.70497634974684,41.842478442228696],[-87.70498445376295,41.842696558236405],[-87.70499624897931,41.843014012128926],[-87.70500199204031,41.843218491295744],[-87.70500926450042,41.84345420855667],[-87.70501766177736,41.84370250069371],[-87.70502392020636,41.84388807467071],[-87.70502915842552,41.84405789070711],[-87.70503354886057,41.84419057274994],[-87.70503705966402,41.844345642901715],[-87.70504048522427,41.8445175297098],[-87.70474747800291,41.84451963647962],[-87.70442581476277,41.844522961570185],[-87.70427340077143,41.84452499932973],[-87.70404762555366,41.844528016159025],[-87.70381055605894,41.84453103485713],[-87.70339519154855,41.84453632234227],[-87.70319378884274,41.844539030434746],[-87.70318644739027,41.84453912901653],[-87.70297657383729,41.844541160718975],[-87.70267483034286,41.844544004876006],[-87.70258406641517,41.844551782894264],[-87.70230285021408,41.84457588088699],[-87.7020216637157,41.84457823252994],[-87.70177226172595,41.84458040150871],[-87.7015188973541,41.84458243837855],[-87.70136266880337,41.84458503966141],[-87.7010939813962,41.8445895129853],[-87.70080474097357,41.84459349158997],[-87.70062036520086,41.84459642752297],[-87.70028942157282,41.844605306588846],[-87.70014826180036,41.84461301045218],[-87.70014374528921,41.844379419036386],[-87.70013727661632,41.84425091393823],[-87.70012619677532,41.844000339393524],[-87.70011831671334,41.84376478317638],[-87.70011013657908,41.84351127780434],[-87.700103254602,41.84330105663238],[-87.70009870517268,41.843159482374844],[-87.70009648816627,41.84309028723648],[-87.70008551652565,41.84276069514431],[-87.70008040632067,41.84260718050272],[-87.7000741537681,41.842396413913725],[-87.70006811436286,41.84219753116043],[-87.70005770198738,41.84188385883795],[-87.7000534545833,41.841715392682524],[-87.70004850337149,41.841491762629566],[-87.70004460965033,41.84131720586844],[-87.70004144662461,41.84117275772575],[-87.70003623169883,41.84097505978374],[-87.70003361940265,41.84087603199456],[-87.70002613312595,41.84064157552271],[-87.70002009853174,41.84045339509681],[-87.70001326484092,41.84024204920091],[-87.70000436048785,41.83996529573973],[-87.69999559367908,41.83969320800166],[-87.69998828521875,41.83946303379056],[-87.6999791426138,41.83917324371016]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2078046.10969","perimeter":"0.0","tract_cent":"1160170.67034506","census_t_1":"17031284300","tract_numa":"11","tract_comm":"28","objectid":"104","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893499.06648026","census_tra":"284300","tract_ce_3":"41.86346688","tract_crea":"","tract_ce_2":"-87.68750085","shape_len":"7403.44158329"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68807300498922,41.859338427058454],[-87.68816891319597,41.859337846204575],[-87.68818900651269,41.85941787566455],[-87.68821493192466,41.859506810060196],[-87.68819538354828,41.86035655603428],[-87.68820114616754,41.86060494328553],[-87.6882040276743,41.86072913677097],[-87.68821229892319,41.86104751716422],[-87.6882145486096,41.86114319427585],[-87.68811623724487,41.861144431261366],[-87.68818200589305,41.86305682781019],[-87.6887827750342,41.86377814273752],[-87.69075383700275,41.86656436062651],[-87.69073116079298,41.86656461218057],[-87.69052782404677,41.86656681951063],[-87.69047478462106,41.866567578894845],[-87.690055147483,41.866573585711635],[-87.68951683595017,41.86657948807727],[-87.68917758811948,41.86658117252677],[-87.68877188867704,41.8665831855701],[-87.68847395735695,41.86658725542825],[-87.6881454022716,41.86659174249246],[-87.6876716806538,41.86659651714908],[-87.68718683939073,41.86660084309532],[-87.68660264974994,41.86660533508095],[-87.68603841451899,41.86661254415211],[-87.68603133184043,41.866393045231945],[-87.68602398007346,41.865993577767156],[-87.68601603684019,41.86566880002693],[-87.68600830343134,41.86541574149497],[-87.68600568302155,41.86533191338396],[-87.68599217157089,41.864899648853616],[-87.68598880658031,41.864792028523745],[-87.68598398664075,41.86463783055351],[-87.68597673995225,41.864405980391204],[-87.68596155237509,41.8640081974982],[-87.68595968443336,41.8638015663143],[-87.68595468134063,41.863593478912605],[-87.68595231519552,41.86349508323584],[-87.68594977915816,41.863413020127126],[-87.68594601065355,41.863321102038626],[-87.68593615872531,41.8629951500955],[-87.68592783160821,41.8627109630336],[-87.68592114909347,41.86242354700744],[-87.68591389607056,41.862178169461785],[-87.68590808404063,41.86195349226038],[-87.68590206398133,41.861720800377896],[-87.68589214632924,41.86143386002983],[-87.68588441368526,41.86117385313014],[-87.68587597366984,41.86089004926074],[-87.68587113812247,41.86071600902905],[-87.68585867629575,41.8602669972002],[-87.68584649536412,41.859828108009744],[-87.68583720221129,41.85949327914924],[-87.68583387730081,41.85936589919852],[-87.68742052363582,41.859341765443794],[-87.68790351209387,41.85933929465927],[-87.68807300498922,41.859338427058454]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3542839.39117","perimeter":"0.0","tract_cent":"1153261.11771078","census_t_1":"17031291200","tract_numa":"20","tract_comm":"29","objectid":"108","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893154.59604715","census_tra":"291200","tract_ce_3":"41.86266145","tract_crea":"","tract_ce_2":"-87.71287458","shape_len":"7992.66551167"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7150331154365,41.85897916322407],[-87.71520645689787,41.8589744705562],[-87.71520966079073,41.859126492257424],[-87.71523366547827,41.85993497005644],[-87.71526100593896,41.86080293264855],[-87.71526496347416,41.86092386701953],[-87.7152688918756,41.86111823645525],[-87.71527196972926,41.86125988412873],[-87.715275219724,41.86141034179009],[-87.71527873980749,41.86157468684104],[-87.71528244789205,41.861746195409374],[-87.71528665818454,41.861930055830584],[-87.71529161511707,41.862075116474166],[-87.7152964066474,41.862187492127255],[-87.71529943868275,41.8622643347312],[-87.71530471633147,41.86239809212693],[-87.71531015773085,41.862536004656015],[-87.7153126887721,41.8626772648811],[-87.71531880115427,41.86285468540717],[-87.71532267329991,41.86296708463711],[-87.71533121381829,41.86325818613357],[-87.71533548888563,41.86341059767938],[-87.71533698026512,41.86346376221876],[-87.71533860257824,41.86352208666348],[-87.71534123454806,41.86361669505577],[-87.71534700104803,41.86382227085367],[-87.71535436018532,41.86408186216726],[-87.71536018209467,41.86428721870578],[-87.71536590525243,41.86446680614568],[-87.71537048684249,41.86461046485843],[-87.71537645110463,41.864816563366865],[-87.7153806868109,41.86496381545844],[-87.71538835134322,41.86513872092016],[-87.71539513398766,41.86529350569181],[-87.71539888928814,41.86545252804027],[-87.71540226411413,41.865593875334696],[-87.71540402879722,41.86566792455556],[-87.7154053495496,41.86572333844451],[-87.71540689572296,41.8657885502615],[-87.71540856094381,41.86585878470477],[-87.71541264055868,41.866029883503565],[-87.71542078841789,41.86628980936652],[-87.71497247030585,41.86629477734426],[-87.71460257804023,41.86629945370483],[-87.71428027157506,41.866303534664226],[-87.71398939511009,41.86630723536754],[-87.71361964958373,41.86631190935319],[-87.71326473770371,41.86631641525459],[-87.71298189319315,41.866320155673066],[-87.71255307429502,41.86632582546085],[-87.71229396211162,41.86632873307114],[-87.7119703750583,41.86633233409891],[-87.71170391954742,41.86633531041764],[-87.71127855268554,41.86634005998634],[-87.71095584662005,41.86634366292698],[-87.71054277813846,41.86634913394022],[-87.71053565858783,41.86611363939745],[-87.71053015865321,41.86594269739843],[-87.71052713813928,41.86584773008318],[-87.71052323845548,41.865725177690145],[-87.71051681396183,41.86552467504124],[-87.71050935545026,41.86519592774538],[-87.7105066319156,41.86507585182033],[-87.71050075706859,41.86486415556819],[-87.71049637332574,41.864699229503046],[-87.7104907806174,41.864519368127965],[-87.71048540562278,41.86434650577893],[-87.710475690708,41.86413240117108],[-87.71047028426004,41.86401324371976],[-87.71046416513072,41.86376995972029],[-87.71045837486481,41.86354575007122],[-87.7104524168422,41.86331613331942],[-87.71044863808183,41.86316836208923],[-87.71044154822536,41.86290762508313],[-87.71043998066374,41.86284998171593],[-87.71043966903656,41.862662711715245],[-87.71043274555642,41.86245409450308],[-87.71042674503217,41.862273313987764],[-87.71042226131246,41.86211497351962],[-87.71041909110674,41.86200285345009],[-87.71041511255764,41.86186342391614],[-87.71040779216415,41.86160490240971],[-87.71040161349518,41.86138670049012],[-87.71039543485921,41.861168498562215],[-87.71038695672573,41.86086289219231],[-87.71038450983798,41.860773650501194],[-87.71037696314548,41.86048842636926],[-87.71036161462217,41.85991012810181],[-87.71033304716586,41.85902520883278],[-87.71052297447784,41.85901881763537],[-87.7109404409877,41.85901844294264],[-87.71139599293332,41.85901803258266],[-87.71155166676077,41.85901481892315],[-87.71169508286707,41.85901185813854],[-87.71216032987238,41.85900705564016],[-87.71265093050823,41.85900198926296],[-87.71277067277151,41.85900045600975],[-87.71294030561728,41.85899828379069],[-87.71337895215277,41.858993969879],[-87.71384820206033,41.85898935339134],[-87.71398634201721,41.85898827705267],[-87.7141811764687,41.858986757840796],[-87.71459908327522,41.858983033282534],[-87.7150331154365,41.85897916322407]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2376805.60476","perimeter":"0.0","tract_cent":"1158919.32553005","census_t_1":"17031291600","tract_numa":"12","tract_comm":"29","objectid":"109","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1891375.94234082","census_tra":"291600","tract_ce_3":"41.85766655","tract_crea":"","tract_ce_2":"-87.69215266","shape_len":"6532.38048844"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69545440299906,41.855308563241294],[-87.69555891538518,41.85528478478721],[-87.69556073161323,41.855341130388545],[-87.6955687645371,41.85555168927467],[-87.69557300627501,41.85566287396354],[-87.69558195668098,41.85592211888181],[-87.69558813733042,41.85611285171938],[-87.69559414270627,41.856284318883986],[-87.6956018730766,41.85649638320042],[-87.69560929160097,41.85670292954389],[-87.69561637368055,41.85688422738667],[-87.6956211606184,41.85700834931229],[-87.69562809637826,41.85719702811167],[-87.69563389646491,41.85738825275852],[-87.69563821642079,41.85753067627875],[-87.69564424737213,41.85769585919119],[-87.69564966363146,41.857849018837605],[-87.69565581655237,41.85802040443955],[-87.69566168476622,41.858183500798056],[-87.6956669418386,41.85838594640838],[-87.69567230650627,41.8585923443392],[-87.69567741994393,41.85875752212573],[-87.69568365082287,41.85895802469954],[-87.69569178453469,41.85922132670341],[-87.69516830231265,41.8592268711881],[-87.69502372419004,41.85922888088196],[-87.69497929834594,41.85922949813033],[-87.69474207684115,41.859233997190735],[-87.69444986473827,41.859238546626614],[-87.69422223380212,41.85924208258794],[-87.69401060680633,41.85924573462944],[-87.69376367073015,41.85924884854733],[-87.69369509007895,41.85924971333334],[-87.69342579258029,41.859253427290724],[-87.69321352151432,41.85925808470997],[-87.69299789228411,41.85926281522067],[-87.69276819657831,41.85926356536274],[-87.6925236827699,41.85926675653511],[-87.69224825400784,41.8592705432913],[-87.69190990181941,41.85927474610013],[-87.6916498401044,41.85927625745715],[-87.69131892627674,41.85927814029754],[-87.69097987338412,41.859278988730445],[-87.69076371704627,41.859283986797706],[-87.68867177882436,41.85933234084981],[-87.6885488789111,41.85933518032229],[-87.6883363185445,41.85933667614601],[-87.68828972746297,41.85933700175076],[-87.6882372904218,41.85933736832116],[-87.68816891319597,41.859337846204575],[-87.68807300498922,41.859338427058454],[-87.68807036945641,41.85923551086817],[-87.68805826819961,41.85875039580621],[-87.68804918962729,41.85837541016953],[-87.6880439142979,41.85816990456907],[-87.68802973279986,41.857435393351274],[-87.68802266927064,41.85708820455656],[-87.68796221496133,41.8569856415488],[-87.68803384627775,41.856969765652835],[-87.68817789466569,41.85693779969753],[-87.68836598283922,41.856895977077],[-87.68884516468344,41.85678992581785],[-87.68979574479539,41.85657571520779],[-87.69071041657482,41.85637261641353],[-87.69160302292441,41.85617316011059],[-87.6917258079745,41.856145717462304],[-87.69278950005629,41.855905700646595],[-87.69301207193486,41.85585617297439],[-87.69312858279832,41.8558300667953],[-87.69323786542206,41.855805633727975],[-87.6938784500363,41.855662727572],[-87.69432595623134,41.85556230638493],[-87.69516238378723,41.855374860861694],[-87.69545440299906,41.855308563241294]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1169879.56535","perimeter":"0.0","tract_cent":"1153512.70457372","census_t_1":"17031292100","tract_numa":"7","tract_comm":"29","objectid":"110","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1889961.12843648","census_tra":"292100","tract_ce_3":"41.85389321","tract_crea":"","tract_ce_2":"-87.71203586","shape_len":"4823.11984834"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71031059111202,41.853548494433745],[-87.71068725376449,41.85354557789252],[-87.71110055808919,41.85354237619364],[-87.71120290436538,41.85355074518387],[-87.71119786356215,41.85342893418255],[-87.71117542331932,41.85272140368113],[-87.71116246682662,41.8523128711027],[-87.71116071289796,41.85217570343064],[-87.71115236365027,41.8520752182423],[-87.711142937823,41.85199113790176],[-87.71151692070877,41.851908063721254],[-87.71175024456292,41.8518558402286],[-87.71216576196512,41.85176283576399],[-87.71234621903407,41.85172320641123],[-87.71242151310969,41.85170667151403],[-87.71256225190267,41.851690143434624],[-87.71274116613118,41.851688530706056],[-87.7130184200637,41.85168610418006],[-87.71349411644705,41.85168192152155],[-87.71362701198102,41.851679412501795],[-87.7136368399924,41.85215209046436],[-87.71364302994259,41.852449801014025],[-87.7136685666282,41.85341679680912],[-87.71367083828335,41.85349225016398],[-87.71368489936931,41.853959216681716],[-87.71368880452852,41.85405881241718],[-87.71369618580825,41.854323676930925],[-87.7137082928072,41.85475810374999],[-87.71373317730898,41.85481772505017],[-87.71377050362182,41.85490715437986],[-87.71381339850225,41.855009926138784],[-87.71362369677541,41.8550762284663],[-87.71275662707798,41.855374732530855],[-87.71258530414246,41.85543700946488],[-87.71159244694206,41.855797912564114],[-87.71139126556241,41.85586838563131],[-87.71122799361041,41.85592557812685],[-87.71035925358812,41.85623500456297],[-87.71025628566302,41.85627088893753],[-87.71025161866748,41.856137321928934],[-87.71024805310189,41.856035273770686],[-87.71024415203883,41.85592362052934],[-87.71023883576115,41.855690328542494],[-87.71023568936073,41.85555224777874],[-87.71023503929965,41.855523732219],[-87.71023125763612,41.855377168242605],[-87.7102291712782,41.85529631103562],[-87.71021569950912,41.85486525195709],[-87.71019441035996,41.8541202345185],[-87.71019156250584,41.854019969321136],[-87.71018275631812,41.85370993181984],[-87.71017814089612,41.85354948774274],[-87.71031059111202,41.853548494433745]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1769622.31594","perimeter":"0.0","tract_cent":"1160856.61396584","census_t_1":"17031282800","tract_numa":"9","tract_comm":"28","objectid":"111","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895982.95608888","census_tra":"282800","tract_ce_3":"41.87026872","tract_crea":"","tract_ce_2":"-87.68491393","shape_len":"6642.13195082"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68553635977769,41.86661915251212],[-87.68603841451899,41.86661254415211],[-87.68604979166429,41.86696513388549],[-87.68605229631885,41.86706394082257],[-87.68606013928157,41.86737331744708],[-87.68606221382898,41.86752182557822],[-87.68606307663501,41.86757772592247],[-87.68606432744801,41.86769332088092],[-87.68606935573135,41.86787905277168],[-87.68607622491673,41.868086145313086],[-87.68608429296611,41.86833457303888],[-87.68608791070291,41.868432014099135],[-87.68609171256543,41.86853442384019],[-87.686094958814,41.86866756579452],[-87.6860994846023,41.8688521696778],[-87.68610241185951,41.86897639100887],[-87.68610794268,41.86921113802312],[-87.68611198454866,41.86933904265048],[-87.68611771118522,41.86952027812445],[-87.68612375974078,41.86969959415629],[-87.68613056974122,41.869901664042125],[-87.68613945947538,41.870152346877795],[-87.68614057576451,41.870249005693566],[-87.68614243878184,41.87041024094311],[-87.68614800035894,41.87057229286353],[-87.68615458199884,41.87081514127304],[-87.68616199423494,41.871063153544036],[-87.6861647100569,41.87116023327017],[-87.68616942055915,41.871328591874764],[-87.68617251842379,41.871439339842524],[-87.68617921753716,41.871681585141424],[-87.68618510514843,41.871905933070494],[-87.68618803159552,41.87207087927815],[-87.68619229290343,41.87231086052789],[-87.68619945542193,41.87254718082063],[-87.68620997500051,41.872865655419346],[-87.68621365324815,41.87300019460792],[-87.68622091811878,41.87326591102768],[-87.68622573498831,41.87342669603965],[-87.68622784022934,41.873496960966186],[-87.68623299941328,41.873669822872564],[-87.68623479294277,41.8738911141606],[-87.6856177926305,41.873899864859006],[-87.68546282313483,41.873902062364394],[-87.685005160754,41.87390734765502],[-87.68476206372986,41.873910154250204],[-87.68429842119819,41.87391862168112],[-87.68397415750908,41.87392348461771],[-87.683780665225,41.87392690550141],[-87.6837872729779,41.87376682882775],[-87.68378047157421,41.87354648202062],[-87.68377784142832,41.87346696596407],[-87.68377330309788,41.873329755537966],[-87.68377007469225,41.87320256875403],[-87.68376630488068,41.873058721584094],[-87.68376263277796,41.872918606593906],[-87.68375789422818,41.872752003832275],[-87.68375352725673,41.872589790125254],[-87.68375213107757,41.872537919473054],[-87.6837471471203,41.87235929577159],[-87.68374301098154,41.87220935399856],[-87.6837378630919,41.872025131089146],[-87.68373446361302,41.87190400782662],[-87.68373004178852,41.87174602377222],[-87.68372644794685,41.871618642787965],[-87.6837195106962,41.8713652227937],[-87.68371427997232,41.87117414260367],[-87.68370858935542,41.87096016863912],[-87.68370205424561,41.87073532265658],[-87.68369579496694,41.87052675163277],[-87.68368749460159,41.87024418404964],[-87.68368708130697,41.87022901533431],[-87.68368091048475,41.87000243317446],[-87.68367423171736,41.86974827773803],[-87.68367147138994,41.86956401309457],[-87.68366776298906,41.86939357410897],[-87.68365835359359,41.86920608823463],[-87.68365384052241,41.8690116747466],[-87.6836496874111,41.86883276666344],[-87.68364670054297,41.86868176076523],[-87.68364038966615,41.8684565592072],[-87.6836349641613,41.86829620932131],[-87.68362806052329,41.86806922035617],[-87.6836233681052,41.86791493967783],[-87.68362028559261,41.86781689755457],[-87.68361603348738,41.867678453420886],[-87.6836130329801,41.86755810098675],[-87.6836066967739,41.867269863763596],[-87.68360030792965,41.86707051256611],[-87.68359283741724,41.86677639592585],[-87.68358954951869,41.86664694190474],[-87.68375610491485,41.866644692507364],[-87.68427965405874,41.86663762010141],[-87.68462551260741,41.866632946556436],[-87.6848575361308,41.866629488491284],[-87.68519968353348,41.866624388033536],[-87.68553635977769,41.86661915251212]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2550523.53291","perimeter":"0.0","tract_cent":"1167860.90494098","census_t_1":"17031283200","tract_numa":"11","tract_comm":"28","objectid":"112","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895787.33641669","census_tra":"283200","tract_ce_3":"41.86958386","tract_crea":"","tract_ce_2":"-87.65920467","shape_len":"6504.0908421"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65681905468715,41.872254534460865],[-87.65683085078575,41.871776961188715],[-87.65683260568086,41.8717059064642],[-87.6568258978484,41.871669396709606],[-87.65682073492393,41.87144170342455],[-87.65681453381377,41.871311946529964],[-87.65681014674539,41.87122015273129],[-87.65680407032126,41.87104434779437],[-87.65679674742874,41.87072212982198],[-87.65679071415087,41.87045167596888],[-87.65678323592972,41.87027382679126],[-87.65678293472162,41.87026666774024],[-87.65676821775622,41.86986528945198],[-87.65676377278838,41.86974407720713],[-87.65675496487097,41.86941546948246],[-87.65675120506245,41.86927517555599],[-87.65673820095842,41.86884060186228],[-87.65673683526019,41.868797316719736],[-87.65672226830704,41.86833559342125],[-87.65672036974827,41.86826157996089],[-87.65670998751854,41.86785689636909],[-87.65670693161043,41.867747245284406],[-87.65670103800721,41.86753576633171],[-87.65669395628753,41.86740844626457],[-87.65668781109727,41.867223337791884],[-87.65668122584161,41.86699661537042],[-87.65691580533982,41.86699320330401],[-87.65774336021862,41.86697938610433],[-87.65789974816201,41.866976986243806],[-87.65807820366754,41.866974247753284],[-87.65892426100741,41.86696055827205],[-87.65912396262091,41.86695707052055],[-87.65945460959959,41.86695129484504],[-87.66055752117364,41.86693329609175],[-87.66139100738937,41.86691741543907],[-87.66157085628323,41.86691646069182],[-87.661576028241,41.867080079322314],[-87.66159523832516,41.8674372187432],[-87.66160507244855,41.867623336474075],[-87.66160057300718,41.867767630581916],[-87.66159656109049,41.86789628475956],[-87.66160519373268,41.86815814280271],[-87.66161247174902,41.86837892684838],[-87.66161754655113,41.86854963326667],[-87.66162167677955,41.86868855957803],[-87.66162924516725,41.868937342690785],[-87.66163735553697,41.869203939145606],[-87.66164133387547,41.8693394594869],[-87.66165263588084,41.869724393197714],[-87.661654665259,41.8697935052779],[-87.66166306660126,41.87007966961961],[-87.66167005024477,41.87028676409934],[-87.66167505793744,41.8704352850049],[-87.6616898595793,41.8709573552499],[-87.66169794626066,41.87122832168662],[-87.66171062650513,41.8716532261788],[-87.66171233274882,41.87170968919984],[-87.66171284627775,41.871726676908466],[-87.66172443121329,41.872110004803204],[-87.66172647708237,41.87217769323414],[-87.66122359511385,41.87217299193225],[-87.66109323449302,41.8721746304281],[-87.66102644771047,41.872169312994856],[-87.66090605359207,41.87217996932028],[-87.66050243991873,41.872186081273504],[-87.6603629711831,41.87218798473451],[-87.66019829483434,41.87219534540661],[-87.66005139679022,41.872201910506355],[-87.6586506499516,41.87222448040467],[-87.65837070631515,41.872229670274535],[-87.65822127816831,41.872232440155756],[-87.65807032074333,41.87223395688277],[-87.65790078359106,41.87223565969478],[-87.65745595648221,41.87224342277564],[-87.65681905468715,41.872254534460865]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9739823.61276","perimeter":"0.0","tract_cent":"1173020.5844436","census_t_1":"17031283600","tract_numa":"72","tract_comm":"28","objectid":"114","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893482.23494186","census_tra":"283600","tract_ce_3":"41.86314574","tract_crea":"","tract_ce_2":"-87.64033051","shape_len":"13470.6642347"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63451472004377,41.860132515832426],[-87.63450859376373,41.859384253352175],[-87.6345641078988,41.85921540820146],[-87.63479710986091,41.85887931128182],[-87.63509305352751,41.858199623575395],[-87.63512739329562,41.85787455759924],[-87.6351581593673,41.85772209606269],[-87.63601568613535,41.85772870565974],[-87.63651035361998,41.85771145212568],[-87.63663110536943,41.857707240374864],[-87.63673670112796,41.8577048844437],[-87.63687296140931,41.85770184417007],[-87.63690381503463,41.8577011553003],[-87.63699229333245,41.85769918134236],[-87.63776666277178,41.857681900009],[-87.63799691715602,41.85767906922398],[-87.63853190498597,41.85767185136644],[-87.63893572318938,41.857665475514935],[-87.63894923956805,41.85803648213748],[-87.63895624526764,41.85822878445261],[-87.63896081811869,41.85840329175753],[-87.63897440209111,41.8588436073332],[-87.63898544179496,41.859201441854815],[-87.63899894957164,41.85955448965477],[-87.63901366630267,41.86001802754482],[-87.63973669591995,41.860005931400785],[-87.64002246568784,41.860000860734566],[-87.64051154367472,41.85999364879374],[-87.6409474986814,41.85999412828786],[-87.64125181581329,41.859994461962394],[-87.64150478976907,41.85999019601659],[-87.64166780659632,41.85998763752756],[-87.64194022992014,41.859983945220115],[-87.64227572947989,41.859979398279705],[-87.64253443410861,41.85997471421555],[-87.64293777346181,41.85997024735142],[-87.64335562747779,41.859960605537935],[-87.64386011688252,41.85995783555841],[-87.64401002545404,41.85995701202036],[-87.6440538806757,41.85995677083842],[-87.64409797415216,41.85995652859974],[-87.6441064053201,41.85995648232492],[-87.64422226872479,41.85995584552384],[-87.64435282150944,41.85995512795744],[-87.64446845179371,41.85995449225374],[-87.64464548687327,41.85995351856703],[-87.64476399203373,41.85995286687383],[-87.64487231878843,41.85994109278189],[-87.645221818806,41.859933437275856],[-87.64536797873889,41.85993156864278],[-87.6455224729163,41.859929585081325],[-87.64580370900468,41.85992561585706],[-87.64618591366782,41.85991997236081],[-87.6463852807797,41.859916664440945],[-87.6467055607459,41.859911363134735],[-87.64670812271163,41.86000068167578],[-87.64671042128734,41.86008082158267],[-87.64671596308446,41.86030055964371],[-87.64671783513744,41.860375789996986],[-87.64672044325606,41.860480047423835],[-87.64672364834993,41.8606081814999],[-87.64672523359391,41.860665888077754],[-87.64672827204419,41.86077648674787],[-87.64673419394907,41.86092295549746],[-87.6467416215286,41.86109675722275],[-87.64674617401445,41.86123020315741],[-87.64675062275863,41.861439302580315],[-87.64675210948373,41.86149465728482],[-87.64675400947864,41.86156539380085],[-87.64675717805255,41.86166332082084],[-87.64675973250701,41.86174226766046],[-87.64676432774739,41.86188428276412],[-87.6467694128533,41.862030060418626],[-87.64677554445854,41.862211848917845],[-87.6467791152462,41.862346752192586],[-87.64678474766477,41.86255949094255],[-87.64678946866606,41.86276676509523],[-87.64679367387642,41.86293540065463],[-87.64679970033336,41.86316241020196],[-87.64680485600817,41.863363375151586],[-87.64680741522135,41.86346731526975],[-87.64681117022783,41.863559681516946],[-87.64681706429172,41.86370466840476],[-87.64682252414194,41.86385665026053],[-87.64682805641972,41.864012090302104],[-87.64683289001873,41.86417268508141],[-87.6468361548663,41.86428115769193],[-87.64683969373047,41.86448570790638],[-87.64684247679419,41.86465109312945],[-87.64684702375529,41.864783373462586],[-87.64685283623865,41.86495247384029],[-87.64685955706224,41.86519247133184],[-87.64686507356988,41.86538866117372],[-87.64686994546608,41.8655632268495],[-87.64687448803689,41.86572200891382],[-87.64687730406797,41.86582254765261],[-87.64688176224254,41.86599749256734],[-87.6468858113903,41.86615638198902],[-87.64689575994194,41.86638295161963],[-87.64690515460678,41.86659980355805],[-87.64691076162505,41.86675834497246],[-87.6469147512016,41.86689333104775],[-87.64691834905017,41.86715410132742],[-87.64515609449796,41.8671786411154],[-87.64476699540425,41.8671839422995],[-87.64447627159937,41.86718797167327],[-87.64432016498631,41.86719013485009],[-87.64408874336412,41.867193341726804],[-87.64366116497246,41.86719926497839],[-87.6421878542497,41.867219663312916],[-87.6417663088899,41.867225837550784],[-87.64133668362084,41.86723299174746],[-87.64104618992282,41.86723790954612],[-87.64072181946268,41.86724113135921],[-87.6402931515676,41.86724538757643],[-87.64010830291893,41.86724818277823],[-87.63982284358609,41.867252897353104],[-87.63921798418852,41.86725293012393],[-87.638381358126,41.86726106931841],[-87.63786504231133,41.86726728717105],[-87.63765169414337,41.86726985561024],[-87.63750796611808,41.86727158587889],[-87.63746387878702,41.86727211650693],[-87.63733905995842,41.86727361920364],[-87.63714970131772,41.86727589795061],[-87.63669969290032,41.867282045698076],[-87.63613274580851,41.867289788647646],[-87.63538513219635,41.867308005396154],[-87.63531041877978,41.86730876893957],[-87.63473401864785,41.86731465855111],[-87.63472829616963,41.867262014012375],[-87.63468593415253,41.86674615355968],[-87.6346965185383,41.86631015667713],[-87.63468182227324,41.86577836885924],[-87.63467738880097,41.86564184234256],[-87.63465911202738,41.86507905064187],[-87.63463654077586,41.864259068753384],[-87.6346192777851,41.86371792781191],[-87.63457053617202,41.862903391084394],[-87.63457775888772,41.86232769106463],[-87.63456500493574,41.861933974430734],[-87.63455643758438,41.86166948976002],[-87.63455676296346,41.861063588321144],[-87.63455676429332,41.861061207141574],[-87.6345567958709,41.86100270755971],[-87.63455680335612,41.86098853326789],[-87.63455182867348,41.860916794864536],[-87.63451703348943,41.86041501696014],[-87.63451472004377,41.860132515832426]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6410129.72578","perimeter":"0.0","tract_cent":"1172280.6497735","census_t_1":"17031280100","tract_numa":"73","tract_comm":"28","objectid":"115","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901549.78749232","census_tra":"280100","tract_ce_3":"41.88530002","tract_crea":"","tract_ce_2":"-87.64280847","shape_len":"10155.1161735"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63936098293495,41.88908028505862],[-87.63932006437793,41.88896124925806],[-87.63927826837406,41.8888528187392],[-87.63925901357446,41.888785962461206],[-87.63922613205784,41.88863782176932],[-87.63921893307302,41.88854625786787],[-87.63921102361402,41.88850075008494],[-87.63920199263781,41.88844878985212],[-87.63906376812264,41.88813574212035],[-87.63904233663413,41.888052846278484],[-87.6390128606478,41.887932799671084],[-87.63900873873142,41.88791620228489],[-87.63900091019882,41.88788467577652],[-87.63899015817694,41.88785876002696],[-87.63894935046437,41.8877372178785],[-87.63891793277041,41.88763711012427],[-87.63884785954822,41.887372772808526],[-87.63876516586564,41.887161542481905],[-87.63856385462731,41.88687204227687],[-87.63854658837455,41.8868573763259],[-87.63839249552377,41.88672649372164],[-87.63758838582008,41.886234137108836],[-87.63765315591841,41.88606965635188],[-87.63773287739009,41.88572214128731],[-87.63776121869054,41.88558029931534],[-87.6378040097767,41.885257945529396],[-87.63783733577331,41.88499557810753],[-87.63788146644754,41.88471220059832],[-87.6379055394592,41.88445720630548],[-87.63791748646797,41.88429620018771],[-87.63794313605145,41.88414561404859],[-87.63797083932738,41.88399534247611],[-87.63799708548095,41.88385406318284],[-87.63803204591935,41.88366102535737],[-87.63805000808435,41.883562368847414],[-87.63806574265976,41.883476102819635],[-87.63808141628502,41.883381905560235],[-87.6381389100207,41.883190419035245],[-87.63815397985913,41.88301944628736],[-87.63815967019397,41.88291119266552],[-87.63818248496123,41.88276797183519],[-87.63819005876576,41.88264521284105],[-87.6382223134966,41.882264562126345],[-87.63823173674415,41.88211684170623],[-87.63821663001697,41.8818984153088],[-87.63863208510548,41.8818934734608],[-87.63874526960161,41.88189507961434],[-87.63900657933374,41.881888844759175],[-87.63942311618018,41.88188203199712],[-87.63968471743144,41.88188400785983],[-87.63991316703944,41.88188573301012],[-87.63998571462157,41.881884767637786],[-87.64019688456028,41.881881957315315],[-87.64043285661785,41.88187882589167],[-87.64095210452221,41.88187196864293],[-87.64119315787332,41.88186041841533],[-87.64135551989467,41.881852638338394],[-87.64185882070204,41.88184669626637],[-87.64204017638846,41.881844560332276],[-87.64211131577825,41.88184371576595],[-87.64242283023839,41.88184001955118],[-87.64266103473791,41.881837569867585],[-87.64294643206856,41.88183463392654],[-87.64325872096815,41.881830693117784],[-87.64352245507673,41.8818275026253],[-87.6439160150285,41.88182300536339],[-87.64412723570496,41.881820121980596],[-87.64444103118583,41.881815837655715],[-87.64489963917944,41.88181002578072],[-87.6451560690808,41.88180656820918],[-87.6451663806037,41.88180642912225],[-87.64533597499862,41.88180413791993],[-87.64553353331584,41.88180141378733],[-87.64570462062285,41.88179869354953],[-87.64578532626021,41.88179741029745],[-87.64586147650459,41.88179619960884],[-87.64599778593612,41.881794031988086],[-87.64609494061855,41.881792486923366],[-87.64621864443028,41.88179156193762],[-87.64645634091421,41.88178978383392],[-87.64651014861987,41.881789381176226],[-87.64673501748939,41.881787698663615],[-87.64693308146327,41.88178547981246],[-87.64736007192916,41.8817778450827],[-87.6473672424069,41.88194702056384],[-87.6473718601183,41.882081817927954],[-87.64737987122672,41.88231471480431],[-87.647385026301,41.882461041189586],[-87.64738514198623,41.88246416455462],[-87.64739548651785,41.882743102067586],[-87.64739922772753,41.882853388089096],[-87.64740296902126,41.88296370155135],[-87.64740458961568,41.88314614820907],[-87.64740570122967,41.88327129258535],[-87.64740883580744,41.883407398295155],[-87.64741205111851,41.883552436993035],[-87.64741322036507,41.88360517459492],[-87.64741671414055,41.88373090920613],[-87.64742202373536,41.88392199506864],[-87.64742392649076,41.883992573524985],[-87.64742665103954,41.884093647614904],[-87.64743284254708,41.884293269483514],[-87.64743635397807,41.88440647479897],[-87.64743989270092,41.88452056282336],[-87.64744262558104,41.88460867260582],[-87.64744650026519,41.88474426129792],[-87.6474480736169,41.884812405006144],[-87.64745322637035,41.885035575569546],[-87.64745595547959,41.885099422657305],[-87.64745933618089,41.885178504451645],[-87.64746180999687,41.8852630967541],[-87.64746242947889,41.88528414878719],[-87.64746890792067,41.885505922197936],[-87.64747310740081,41.88563690330583],[-87.64747311557628,41.88563716899723],[-87.64747399425991,41.8856645458581],[-87.64748025352189,41.88585977756351],[-87.64748557276316,41.885932421957435],[-87.64748542199442,41.8860701270843],[-87.64748908065387,41.8862184751724],[-87.64749177460196,41.88632771205921],[-87.64750015239541,41.88659853635891],[-87.64750583991757,41.88679720809069],[-87.64751135501363,41.88698982224622],[-87.64751881275829,41.88719903281557],[-87.64752203359566,41.88730931701356],[-87.64752490064532,41.88739166355034],[-87.64752727233102,41.88745978976594],[-87.64754060322886,41.88784271589986],[-87.64754523852399,41.88797585872378],[-87.64754788934694,41.8880519866085],[-87.64755298692884,41.88819842858089],[-87.64755499992103,41.888256247199216],[-87.64755835973419,41.88835275612057],[-87.64756335604868,41.888496274041266],[-87.64756583721159,41.88856752795856],[-87.64577708230439,41.888574784669046],[-87.64432225746903,41.888582201971445],[-87.64432709723464,41.88875967657476],[-87.64433058438101,41.88889955904774],[-87.64433118185026,41.888923522589316],[-87.64433297239994,41.88899534706612],[-87.64433392525805,41.88903357345532],[-87.64402811077206,41.88903647750807],[-87.6436862181424,41.889040846029346],[-87.64311506059406,41.88904721173551],[-87.64287448568341,41.88904902731883],[-87.64267585527773,41.889050526065866],[-87.64236590050399,41.889052750405575],[-87.64196243880109,41.889055204896074],[-87.64191928163972,41.889055550713664],[-87.64158920448297,41.88905070887458],[-87.64154208166974,41.889052550422015],[-87.64139249009692,41.88905839642149],[-87.64128155314664,41.889062731492416],[-87.64114560586273,41.889068043862885],[-87.64110578980993,41.88906959996464],[-87.64110413644076,41.88906966464148],[-87.6409747019319,41.88907472243466],[-87.6408126763537,41.889077230634555],[-87.64067598852421,41.88904270699471],[-87.64063233979192,41.889040961820655],[-87.6405352431185,41.88904372405584],[-87.64046898008453,41.88904458662625],[-87.64035397414104,41.889046142955166],[-87.64025615862896,41.8890474187272],[-87.64023828808469,41.889047659937795],[-87.63997325240052,41.8890479889292],[-87.63982844587352,41.8890476082094],[-87.63970201845457,41.8890552785039],[-87.63949130697476,41.88907079126144],[-87.63936098293495,41.88908028505862]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2567796.65903","perimeter":"0.0","tract_cent":"1159686.56125987","census_t_1":"17031280600","tract_numa":"11","tract_comm":"28","objectid":"116","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901485.56446583","census_tra":"280600","tract_ce_3":"41.88539257","tract_crea":"","tract_ce_2":"-87.68905792","shape_len":"6644.45312771"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6866227776474,41.888186501504734],[-87.68659560592356,41.88798991476717],[-87.68659325051907,41.8877100438948],[-87.68658977045033,41.8873414173066],[-87.68658691459305,41.88705287122709],[-87.686578648426,41.8866292435869],[-87.68657408344117,41.88639527853338],[-87.68657007185567,41.886218484395116],[-87.68656871877063,41.8861588591802],[-87.68655538958508,41.88570661507294],[-87.68655243924418,41.88560651588332],[-87.6865433721237,41.885238406816676],[-87.68653725895555,41.8849888657124],[-87.68653263327538,41.88479934959709],[-87.68652910592365,41.88466143502241],[-87.68652842663522,41.88463488282805],[-87.68652159827636,41.88436789223255],[-87.68651755553711,41.8842259920224],[-87.68651232237548,41.88404231770094],[-87.68650604929292,41.88384392891341],[-87.68650129712336,41.88369365419871],[-87.68649658901438,41.88349779836996],[-87.6864930313687,41.88334083496542],[-87.68648456595453,41.88299620313855],[-87.68691697902719,41.88299999937333],[-87.68728425336911,41.88299882791934],[-87.68754794636142,41.88299635935592],[-87.68784197728914,41.882993347211354],[-87.687931002358,41.8829923994328],[-87.68807423566268,41.88299092028618],[-87.68852964639102,41.882985944194175],[-87.68883065694499,41.88298265421656],[-87.68952059938472,41.882975464939065],[-87.69045727133722,41.88296553661628],[-87.6909684693881,41.88295621273957],[-87.69116491224497,41.88295522960874],[-87.69142344247572,41.88295393485978],[-87.6915484945646,41.88295330859081],[-87.69157662829728,41.88295281021372],[-87.69168100937532,41.88295096070534],[-87.69223115529334,41.88294121187783],[-87.69223702422642,41.88313146887375],[-87.69224233692323,41.883315582509134],[-87.69224551561106,41.88346491463857],[-87.69224862795609,41.883602810575326],[-87.6922504889749,41.88368529129366],[-87.69225531401754,41.88389905403056],[-87.69225907144063,41.88403373510737],[-87.69226268130271,41.884164957608654],[-87.69227959522787,41.88440445006699],[-87.6919745337224,41.8844163406362],[-87.69172483088327,41.88442506630856],[-87.69161689024087,41.884428837789834],[-87.69159209657832,41.88442970418312],[-87.69159549128133,41.884548677379414],[-87.69159674344846,41.88460699957566],[-87.69161307587171,41.88513089824081],[-87.69161162540861,41.88518406041933],[-87.69160974186923,41.88532640729452],[-87.69161140481697,41.88543550002273],[-87.6915989792628,41.88549623261161],[-87.69158196258458,41.8855794088645],[-87.69158108379916,41.88566721921785],[-87.69162876625253,41.88571894052443],[-87.6915965539251,41.88581858239943],[-87.6916108753173,41.88594720007565],[-87.69161719299696,41.88600393392982],[-87.69168606945264,41.88609385002515],[-87.6916232630044,41.886177198796545],[-87.69161614969902,41.88624576459571],[-87.69160307963986,41.88631326883842],[-87.69156032542351,41.886457102713415],[-87.69149553015974,41.88658565555153],[-87.69143807997155,41.88669997110636],[-87.69137729611916,41.88681042989532],[-87.69132880865057,41.8868849400206],[-87.69127482872835,41.88695770344059],[-87.69121582333163,41.887028038069985],[-87.69115179319618,41.88709594280751],[-87.69106647202281,41.8871812235337],[-87.69098446623786,41.88725623127834],[-87.69089789847685,41.88732846947332],[-87.69080677304497,41.887397251522835],[-87.69071200370664,41.8874632694136],[-87.69061866863721,41.88752346373555],[-87.69052447450862,41.88757782138098],[-87.69042709826826,41.887629073311324],[-87.69032654605137,41.887676535138695],[-87.69022281898988,41.88772020494021],[-87.69011637699576,41.88775974335071],[-87.68989027937002,41.88782914126187],[-87.68969092926106,41.887886339002286],[-87.68948886206307,41.887939748376816],[-87.68939078857156,41.887979729573594],[-87.68929046328184,41.88802062863016],[-87.68903610447323,41.88804286186342],[-87.6889592847057,41.888058210234654],[-87.68867151040175,41.88817459398872],[-87.68846692624273,41.88817310614269],[-87.68836753479837,41.88819621733642],[-87.68820785363216,41.888234425309534],[-87.68805277578124,41.88827128790299],[-87.68798603487713,41.888288749888616],[-87.68785029225307,41.88832023237872],[-87.68771275822402,41.888347244693485],[-87.6875743474488,41.8883701352747],[-87.68745896520157,41.88838560854267],[-87.68738500641173,41.888390338558345],[-87.68723522299697,41.88840287384994],[-87.6867669207391,41.88840778451643],[-87.68662375196509,41.88841087544321],[-87.68662501567516,41.888332918628606],[-87.6866227776474,41.888186501504734]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4952984.31861","perimeter":"0.0","tract_cent":"1169749.1447966","census_t_1":"17031281800","tract_numa":"31","tract_comm":"28","objectid":"119","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899287.60356778","census_tra":"281800","tract_ce_3":"41.87914795","tract_crea":"","tract_ce_2":"-87.65217048","shape_len":"9053.37252032"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64736007192916,41.8817778450827],[-87.64735266926127,41.88160318960186],[-87.64734608676179,41.88137060309585],[-87.64734089616742,41.88118637846621],[-87.64733781787966,41.88107417540088],[-87.64733619671479,41.881014670515334],[-87.64733111375297,41.88083072094136],[-87.64732662348972,41.88066688993451],[-87.64732177157731,41.88049224114859],[-87.64731596520696,41.88028323613069],[-87.64731250849792,41.8801635390006],[-87.64730772305798,41.87999641339252],[-87.64728021996011,41.87921705138828],[-87.64727179566812,41.87889578421859],[-87.64726763819452,41.8787386239324],[-87.64726248898728,41.878580908868145],[-87.64725801307678,41.87844380710055],[-87.64724976646484,41.878246693608794],[-87.64724322272917,41.87808949160576],[-87.6472417430134,41.87794739563688],[-87.647239491409,41.877731153232865],[-87.6472342572598,41.8776163027433],[-87.64722831861484,41.87748492768572],[-87.64722460278965,41.87740320930312],[-87.64722186481515,41.87731180957523],[-87.6472172971307,41.87715933945359],[-87.64721075325532,41.87696440404279],[-87.64720657480646,41.876840119639446],[-87.64720241487497,41.87667171034357],[-87.64753442162763,41.87666658340441],[-87.64799098595077,41.87665959433518],[-87.64836817590442,41.87665491820748],[-87.6487277384061,41.87665045958025],[-87.64895069086468,41.87664688201648],[-87.64953765829317,41.876637461308924],[-87.64962108323846,41.876636122112046],[-87.65000342476806,41.876629983626735],[-87.65012153362963,41.8766280589969],[-87.6503105949841,41.8766249777693],[-87.65057808672418,41.876620867750766],[-87.6507032242699,41.87661894451772],[-87.65105486189694,41.87661354043976],[-87.65127630876394,41.876610537781666],[-87.65168225390256,41.87660541067475],[-87.65187391881356,41.87660133134636],[-87.65207318476102,41.876597090147236],[-87.6521500848833,41.87659545327037],[-87.65246503201895,41.876591122521944],[-87.65286570084612,41.87658561170398],[-87.65327092526515,41.87658003672818],[-87.65393716011282,41.87657086778829],[-87.65433921656462,41.87656533259508],[-87.6545317543077,41.87656299439143],[-87.65477086562768,41.87656009022598],[-87.65629323350986,41.876531918782426],[-87.65637344462172,41.87653043416234],[-87.65676773375114,41.87652313391561],[-87.6570032701811,41.87651943565142],[-87.65700311643745,41.876633165370045],[-87.65700815689134,41.87713621538056],[-87.65701331469486,41.877650983693734],[-87.65701995066654,41.87779237311184],[-87.65702608782497,41.877923123441136],[-87.6570321329427,41.87823781424432],[-87.65703999397967,41.8786468066232],[-87.65704429751588,41.8788707088705],[-87.65705659410055,41.87905705708082],[-87.65706494074341,41.879183537173354],[-87.65708025406875,41.8796932885274],[-87.65709494841519,41.88018242691296],[-87.65709971811042,41.88032974793739],[-87.65710464345885,41.88048188108392],[-87.6571138321247,41.880765459547646],[-87.6571262806302,41.881149517660226],[-87.6571282523842,41.88121006811996],[-87.65714035016381,41.881578434470626],[-87.65714158609048,41.881616062039654],[-87.65668853555867,41.88162457054717],[-87.65572659024079,41.881642630041064],[-87.6555263142434,41.881646643819956],[-87.65470230365085,41.881663154208894],[-87.6543591770249,41.88167002780351],[-87.65377413529781,41.881681744911155],[-87.6531944117927,41.88167981816426],[-87.65203150092115,41.88170006053464],[-87.65168212715642,41.881706823753625],[-87.65143391955354,41.88171070147512],[-87.65122203061749,41.881714536703456],[-87.65100844816831,41.88171704890697],[-87.65097030815365,41.88171749764762],[-87.65086751192537,41.881716886797065],[-87.65076704484177,41.88171587339643],[-87.64969747518644,41.881737863949766],[-87.64853076683934,41.881761840252025],[-87.64814315008036,41.881767349277276],[-87.64794509209729,41.881769497254716],[-87.64762560441014,41.881773096628635],[-87.64736007192916,41.8817778450827]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4693398.31558","perimeter":"0.0","tract_cent":"1172341.80141052","census_t_1":"17031281900","tract_numa":"50","tract_comm":"28","objectid":"120","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899347.3660986","census_tra":"281900","tract_ce_3":"41.87925508","tract_crea":"","tract_ce_2":"-87.642649","shape_len":"8885.55390294"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63821663001697,41.8818984153088],[-87.63822362245106,41.88176097409508],[-87.63826145294217,41.88155025340801],[-87.6382698440756,41.88139267461303],[-87.63827233152549,41.88130885304809],[-87.63828619761138,41.88101974864648],[-87.63828909967422,41.88069001795711],[-87.63828613008181,41.880604047267845],[-87.63827805842135,41.88037041144452],[-87.63823374351848,41.87999363302493],[-87.63819881209928,41.87977432118047],[-87.63811347096224,41.87940865523012],[-87.63811370823406,41.879334899076746],[-87.63811419964888,41.879182204913526],[-87.63809665255341,41.879073316856356],[-87.63797564002643,41.878763472542694],[-87.63795371931093,41.87869985638861],[-87.63786257480088,41.878435344664176],[-87.6377703375863,41.8781099772845],[-87.6377654787857,41.87806748561337],[-87.63775277124685,41.87795635017106],[-87.63771808419834,41.877652991060145],[-87.63765932908754,41.87730798546386],[-87.63751611144328,41.87692328027663],[-87.63746982525034,41.87679851620476],[-87.63776087678976,41.8767949328087],[-87.6378923390686,41.876793726776015],[-87.63793061434104,41.8767933756747],[-87.63842394112532,41.87678884813574],[-87.63870782945328,41.87678414407334],[-87.63899314835066,41.876779640055545],[-87.63927779763853,41.876775899670506],[-87.63962333927542,41.87677112219221],[-87.63982991293403,41.87676826526837],[-87.64102694799459,41.87675215913497],[-87.64138026697447,41.87674736836891],[-87.6416562832255,41.87674398170718],[-87.64176606004574,41.87674262169268],[-87.64193949768018,41.87674047306372],[-87.64214724498663,41.87673782677596],[-87.64249756599416,41.8767329755598],[-87.64281481257144,41.876728581656074],[-87.64294434918398,41.87672678718303],[-87.64322388564503,41.87672383257073],[-87.64346240236131,41.87672131062226],[-87.64396006851378,41.876715136621975],[-87.64438354656717,41.87670988123426],[-87.64451450469225,41.87670813660232],[-87.64451832474347,41.876708085694744],[-87.64479730193672,41.876704368681075],[-87.64507190562244,41.8767007093013],[-87.64524698673492,41.87669837562416],[-87.64545611850127,41.876695588120675],[-87.64570283415554,41.876692298880094],[-87.64574409083716,41.87669174897466],[-87.64585207499587,41.87669030900736],[-87.64594009478269,41.876689135282604],[-87.6461504608086,41.87668632975286],[-87.64642365784727,41.87668268589122],[-87.6467661085763,41.87667811733239],[-87.64692317088412,41.87667602161911],[-87.64720241487497,41.87667171034357],[-87.64720657480646,41.876840119639446],[-87.64721075325532,41.87696440404279],[-87.6472172971307,41.87715933945359],[-87.64722186481515,41.87731180957523],[-87.64722460278965,41.87740320930312],[-87.64722831861484,41.87748492768572],[-87.6472342572598,41.8776163027433],[-87.647239491409,41.877731153232865],[-87.6472417430134,41.87794739563688],[-87.64724322272917,41.87808949160576],[-87.64724976646484,41.878246693608794],[-87.64725801307678,41.87844380710055],[-87.64726248898728,41.878580908868145],[-87.64726763819452,41.8787386239324],[-87.64727179566812,41.87889578421859],[-87.64728021996011,41.87921705138828],[-87.64730772305798,41.87999641339252],[-87.64731250849792,41.8801635390006],[-87.64731596520696,41.88028323613069],[-87.64732177157731,41.88049224114859],[-87.64732662348972,41.88066688993451],[-87.64733111375297,41.88083072094136],[-87.64733619671479,41.881014670515334],[-87.64733781787966,41.88107417540088],[-87.64734089616742,41.88118637846621],[-87.64734608676179,41.88137060309585],[-87.64735266926127,41.88160318960186],[-87.64736007192916,41.8817778450827],[-87.64693308146327,41.88178547981246],[-87.64673501748939,41.881787698663615],[-87.64651014861987,41.881789381176226],[-87.64645634091421,41.88178978383392],[-87.64621864443028,41.88179156193762],[-87.64609494061855,41.881792486923366],[-87.64599778593612,41.881794031988086],[-87.64586147650459,41.88179619960884],[-87.64578532626021,41.88179741029745],[-87.64570462062285,41.88179869354953],[-87.64553353331584,41.88180141378733],[-87.64533597499862,41.88180413791993],[-87.6451663806037,41.88180642912225],[-87.6451560690808,41.88180656820918],[-87.64489963917944,41.88181002578072],[-87.64444103118583,41.881815837655715],[-87.64412723570496,41.881820121980596],[-87.6439160150285,41.88182300536339],[-87.64352245507673,41.8818275026253],[-87.64325872096815,41.881830693117784],[-87.64294643206856,41.88183463392654],[-87.64266103473791,41.881837569867585],[-87.64242283023839,41.88184001955118],[-87.64211131577825,41.88184371576595],[-87.64204017638846,41.881844560332276],[-87.64185882070204,41.88184669626637],[-87.64135551989467,41.881852638338394],[-87.64119315787332,41.88186041841533],[-87.64095210452221,41.88187196864293],[-87.64043285661785,41.88187882589167],[-87.64019688456028,41.881881957315315],[-87.63998571462157,41.881884767637786],[-87.63991316703944,41.88188573301012],[-87.63968471743144,41.88188400785983],[-87.63942311618018,41.88188203199712],[-87.63900657933374,41.881888844759175],[-87.63874526960161,41.88189507961434],[-87.63863208510548,41.8818934734608],[-87.63821663001697,41.8818984153088]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2473594.50038","perimeter":"0.0","tract_cent":"1150532.2482769","census_t_1":"17031260900","tract_numa":"13","tract_comm":"26","objectid":"121","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896178.22320041","census_tra":"260900","tract_ce_3":"41.87101231","tract_crea":"","tract_ce_2":"-87.72281308","shape_len":"6346.71773744"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7251466606988,41.86852702305349],[-87.725271389489,41.868525711761755],[-87.72527270753179,41.86856243933131],[-87.72527319514175,41.86858858559937],[-87.72527475222554,41.86867211055364],[-87.72528220040957,41.86893219550498],[-87.72528713642471,41.869088781328315],[-87.72529459664507,41.869327845614094],[-87.72529968727899,41.86951999749907],[-87.72530065427567,41.86955650119334],[-87.72530328382138,41.869655719886346],[-87.72530921644287,41.86980528540201],[-87.72531795134097,41.87002550338385],[-87.72532299107769,41.87015256155845],[-87.72532609350911,41.87026127840992],[-87.72532905479353,41.87036505375831],[-87.72533250593922,41.87048513311155],[-87.72533466109572,41.87055995286523],[-87.72534064399827,41.870722087576276],[-87.7253486751324,41.87093972219757],[-87.7253528027842,41.87105157208629],[-87.72535717608687,41.871172836060815],[-87.72535919949634,41.87122893957719],[-87.72536386696159,41.87139339991961],[-87.72536542022767,41.87144812854405],[-87.72537226635227,41.87162445558526],[-87.72538085251152,41.87184560986861],[-87.72538091457139,41.87184719747286],[-87.72539017029709,41.87208542042594],[-87.72539245559891,41.872144269022975],[-87.72539722837084,41.872304448861904],[-87.72539847264808,41.87234622297034],[-87.72540040834456,41.87253108550741],[-87.72540527320602,41.87299575185275],[-87.72540880353083,41.87333289119859],[-87.72541255190315,41.87344325109816],[-87.72474418991601,41.8734448651902],[-87.7246224037654,41.87345262237233],[-87.72437655770672,41.87345859762222],[-87.72375167445692,41.873456702644994],[-87.72363984937446,41.87345636287571],[-87.7234756424107,41.87345719243777],[-87.7232921914134,41.873458468394254],[-87.72317329346517,41.87345929121009],[-87.72297822866273,41.873461741795076],[-87.72270663615767,41.87346515345906],[-87.72246817517825,41.87346723329763],[-87.72222698278927,41.873470393063116],[-87.72196435144676,41.87347399253296],[-87.72137713603261,41.873500722459674],[-87.72119529933502,41.87350211343807],[-87.72112450511423,41.87350328986573],[-87.72088271319382,41.87350730750188],[-87.72063488046857,41.87351029404227],[-87.72036512606637,41.873515051638854],[-87.72036026796202,41.87331481005084],[-87.720349625587,41.87306829200022],[-87.72034131760289,41.87284261527013],[-87.72033641829529,41.872717478674666],[-87.72033274398164,41.872602475179235],[-87.7203274885051,41.87243776428789],[-87.72032097110444,41.872266790035326],[-87.72031557922259,41.87211632134937],[-87.72030897181709,41.87190873828036],[-87.72030145910901,41.87169203972751],[-87.72029883215535,41.87161610239354],[-87.72028681094899,41.87131147064971],[-87.72028028544011,41.87113371801443],[-87.7202759437583,41.871004001454345],[-87.72027250984128,41.87089843916172],[-87.72027113156055,41.87078450881321],[-87.7202702533025,41.87071192769241],[-87.72025698858481,41.87038641592273],[-87.72025093330444,41.87020169536487],[-87.72024682181639,41.8700786759896],[-87.72023936012896,41.86986908525315],[-87.7202328987836,41.86968760045478],[-87.72022606030647,41.86948879767213],[-87.7202182321732,41.86926293125874],[-87.72021151204868,41.869082488149616],[-87.72020983187639,41.868975072657996],[-87.72020804756075,41.86886103582174],[-87.7202025531982,41.868744430587824],[-87.7201998116922,41.86867846522018],[-87.7201960612297,41.868587108744514],[-87.72037886739602,41.86858512323692],[-87.7206305755558,41.86858238896293],[-87.72131575584406,41.86857286993551],[-87.72203763873752,41.8685646398857],[-87.72252893539373,41.868558472268795],[-87.72267835365477,41.86855684504347],[-87.72281112684081,41.86855539889972],[-87.72293538802164,41.86855404539806],[-87.72313845661736,41.86855183305503],[-87.72383685845925,41.868541820380834],[-87.7246740385242,41.86853199018686],[-87.72479080172698,41.868530763162234],[-87.7251466606988,41.86852702305349]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2645218.59357","perimeter":"0.0","tract_cent":"1154339.51846168","census_t_1":"17031270300","tract_numa":"6","tract_comm":"27","objectid":"122","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901483.00066167","census_tra":"270300","tract_ce_3":"41.88549401","tract_crea":"","tract_ce_2":"-87.70869339","shape_len":"6641.37809422"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71038791177102,41.8827485398883],[-87.71106078856236,41.88274250100472],[-87.71106623405427,41.88295441351816],[-87.71107329862791,41.88315736138515],[-87.71108016781618,41.883467498448226],[-87.71108387501133,41.88356260666968],[-87.71108766573549,41.88365985585412],[-87.71109203045738,41.88384585706784],[-87.71110172292305,41.8842245880975],[-87.71111777877917,41.884492513491494],[-87.71111843969393,41.88459187743174],[-87.71111873719605,41.884636648120434],[-87.7111190278784,41.884680418494256],[-87.71112040720695,41.88488775427902],[-87.71112309398066,41.88494092459987],[-87.71113066479376,41.88509074654343],[-87.7111379679105,41.88523527063852],[-87.71113965277175,41.885328724069346],[-87.7111416814458,41.88544124610399],[-87.71114369838781,41.88555308530462],[-87.71115050915249,41.88578753536221],[-87.71115338134977,41.88588639945887],[-87.71116386839911,41.88625997492625],[-87.71116697224322,41.88635408202324],[-87.71117351641972,41.88655250882171],[-87.7111791256478,41.88676925222359],[-87.71118354842193,41.886930950343796],[-87.71119148730482,41.887221186519085],[-87.71119904613613,41.88745945286381],[-87.71120428362681,41.88762455000809],[-87.71121564815638,41.88800932772704],[-87.71121790192726,41.88808564501746],[-87.7112206641228,41.88817830017415],[-87.71109071331304,41.88818060490304],[-87.71082717461218,41.8881839785038],[-87.70967477347365,41.88819796517992],[-87.70957376752939,41.88819913119648],[-87.709375882222,41.888201829787086],[-87.70883686934513,41.888208504978316],[-87.7086343928068,41.88821117704895],[-87.70841719447247,41.88821719895606],[-87.7082160452403,41.88822502296913],[-87.70805069890972,41.88823338433605],[-87.70788030564586,41.88824137522111],[-87.70770853259326,41.88824970136677],[-87.7075615810761,41.88825473221079],[-87.70748167662877,41.888257384042],[-87.70723417731965,41.88826358187473],[-87.70685860495007,41.888269080016684],[-87.70653354285555,41.888273137756116],[-87.7064564101307,41.88827408857544],[-87.70633798743152,41.88827549969957],[-87.706337986574,41.88827547472226],[-87.70633489002195,41.888175895004196],[-87.70633288078162,41.888110957145905],[-87.70633170204161,41.88807285895884],[-87.70632049041407,41.88771055726817],[-87.70631439880817,41.88752089536984],[-87.70631159390703,41.88743355957836],[-87.70630024011284,41.88699263831094],[-87.70628617405282,41.88654412094929],[-87.70628201059378,41.88641951115662],[-87.70627642958033,41.886252464304455],[-87.70626467577804,41.88588812385398],[-87.70626297411727,41.885833317205396],[-87.7062517493108,41.88550153157677],[-87.70624950091147,41.88539710928026],[-87.70624581461668,41.88522589463026],[-87.70623410333997,41.88485749807568],[-87.7062192817351,41.88435206625055],[-87.70621797336071,41.88430744508127],[-87.70620878864554,41.88399423944142],[-87.70620028489414,41.88370423626014],[-87.7061968806561,41.883590416808666],[-87.70619222585458,41.883491897381035],[-87.7061834812252,41.88323040530125],[-87.706177905388,41.88306366189494],[-87.70617353125667,41.88293265513314],[-87.70617046525061,41.882794320141684],[-87.70629424938126,41.882792555078304],[-87.7067790740138,41.88278727724727],[-87.70745091295045,41.88277966191815],[-87.70819799308958,41.882772315049394],[-87.70877619738143,41.882766448147414],[-87.70891099353467,41.882765079889246],[-87.709749455723,41.88275599692519],[-87.70986305118667,41.88275467049549],[-87.7101434960829,41.88275139493523],[-87.71038791177102,41.8827485398883]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3523972.34342","perimeter":"0.0","tract_cent":"1154426.70412675","census_t_1":"17031271300","tract_numa":"20","tract_comm":"27","objectid":"124","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898499.27405225","census_tra":"271300","tract_ce_3":"41.87730462","tract_crea":"","tract_ce_2":"-87.708453","shape_len":"7967.28484429"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7104386969702,41.87363220136032],[-87.71078177066471,41.873628347274625],[-87.71078273063182,41.87368587801577],[-87.71078707521455,41.873808259207934],[-87.71079047574722,41.87390404733128],[-87.71079576357546,41.87405299523489],[-87.71079794418073,41.8741144093915],[-87.71080322709291,41.87426322361777],[-87.71080669978136,41.87436103957666],[-87.71081000896488,41.874454251716024],[-87.71080671023873,41.87454396451614],[-87.71080394543773,41.87467041090401],[-87.71081211479645,41.87491389325088],[-87.71081288864256,41.87493695353937],[-87.71081461474294,41.87499477025474],[-87.71082131285891,41.875219108132384],[-87.71082706247537,41.875451894522136],[-87.71083264822133,41.87567803563595],[-87.7108370710106,41.87583456610564],[-87.71083940763826,41.875917256708966],[-87.71084008245595,41.87594113973149],[-87.7108477267609,41.876187822813954],[-87.71085023272107,41.87626869324577],[-87.71085518757037,41.87650351837812],[-87.71085804282107,41.876613819482095],[-87.71086436563081,41.87681397019024],[-87.71087308195264,41.87702440037567],[-87.71087712824108,41.8771220813594],[-87.71088607895342,41.87727726008919],[-87.71089356687474,41.87740707841432],[-87.71089945991545,41.87759443307478],[-87.7109086518568,41.877796244749035],[-87.71090888824202,41.87780143814931],[-87.71091271835904,41.87788553226834],[-87.71092255402549,41.8781585285701],[-87.71092635731948,41.87832860424283],[-87.71092967308823,41.878476872566],[-87.71093860065554,41.87872994067262],[-87.71094037927541,41.87879167202926],[-87.71094508822588,41.878955118096115],[-87.71094964795796,41.879113508992866],[-87.71095614657544,41.879339862645594],[-87.71096549897239,41.87959185507441],[-87.71097180757437,41.87976184823232],[-87.71097661064765,41.879940469923326],[-87.71097990785142,41.88006807473986],[-87.7109846269041,41.880250704214205],[-87.7109848329764,41.880258682310576],[-87.71099067368385,41.88044678165446],[-87.71099739510494,41.88066325277824],[-87.71100553628004,41.880916842321156],[-87.7107100772976,41.88091778859022],[-87.71054566022835,41.8809193668861],[-87.71028317976486,41.88092271812792],[-87.71007966970626,41.880925212365675],[-87.70995885398314,41.88092669356571],[-87.70954540043292,41.88093128169885],[-87.70911879455959,41.880936373146604],[-87.7088304246242,41.880939799882334],[-87.708506215233,41.88094349605311],[-87.70831545968049,41.88094567016832],[-87.70806472875167,41.88094913516989],[-87.70771330069019,41.8809533134509],[-87.70701175779499,41.88096255210742],[-87.70646050651887,41.880968957115314],[-87.70631206223271,41.88097061928191],[-87.7061227376917,41.88097274323147],[-87.70611795528316,41.88079762974604],[-87.70611487034299,41.88070754642578],[-87.70610857686377,41.88050998112589],[-87.70609986146634,41.88031705436503],[-87.70609819271606,41.88028012112569],[-87.7060913458102,41.88006405655864],[-87.70608639291936,41.87987961606199],[-87.70608243577263,41.879736042847874],[-87.70608003959035,41.87965814608607],[-87.70607976713804,41.879649283147266],[-87.70607618946477,41.87953295689308],[-87.70607457874794,41.879480592784965],[-87.70607010699526,41.879277000046024],[-87.70606525890754,41.87909747257454],[-87.70606476949216,41.879079330146936],[-87.70605652019518,41.878803927226755],[-87.70605131876846,41.87859610433543],[-87.70604517257314,41.87836958190672],[-87.70604071118085,41.878205155648295],[-87.70603677534655,41.87806317417196],[-87.70603146497085,41.87789447349066],[-87.70603089192124,41.877876286145494],[-87.70602875259443,41.877685741270966],[-87.70601898143492,41.877445867718045],[-87.70601488669556,41.877326374748975],[-87.70600846899146,41.87713908586319],[-87.70600385089938,41.87691669413397],[-87.70599704489554,41.87664769309221],[-87.70599261726058,41.876477168696894],[-87.70598783059553,41.87632083010463],[-87.70598495892978,41.87623146165612],[-87.70598046186784,41.876113132494815],[-87.70597638455524,41.8760044104974],[-87.70597123877378,41.875875862043706],[-87.7059665285295,41.87575819746507],[-87.70596449846853,41.87565415186896],[-87.70596980433237,41.87551211461141],[-87.70596463600327,41.875332224675915],[-87.70595659915524,41.87505724781652],[-87.70595128642816,41.87490729629716],[-87.70594686984177,41.87478728394988],[-87.70594525405699,41.874734968068466],[-87.70594185500443,41.874624898206264],[-87.70593950017756,41.874548658851936],[-87.70593596228899,41.874470769776345],[-87.70593312626941,41.8744083294492],[-87.70592621972601,41.874256275067374],[-87.70592497180105,41.874143672753],[-87.70592251054127,41.873921614589875],[-87.70592167215672,41.873812114411855],[-87.70591685148717,41.87368777763854],[-87.70609151086124,41.873686038227845],[-87.7063547982168,41.87368352420371],[-87.70647120128444,41.873682567972004],[-87.70704493607825,41.873675983566116],[-87.70743904024638,41.87367039331247],[-87.70781074053531,41.87366544807056],[-87.70809033794036,41.87366214074212],[-87.70834720424766,41.87365915085539],[-87.70867185826576,41.873655371053644],[-87.70891884467234,41.87365268015698],[-87.70950731220485,41.87364442753679],[-87.71022902114406,41.8736343021346],[-87.7104386969702,41.87363220136032]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5309254.49119","perimeter":"0.0","tract_cent":"1144593.84567272","census_t_1":"17031251700","tract_numa":"26","tract_comm":"25","objectid":"125","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903567.14875344","census_tra":"251700","tract_ce_3":"41.89140224","tract_crea":"","tract_ce_2":"-87.74442918","shape_len":"9299.98031925"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74065397798854,41.89199472213425],[-87.74058130990277,41.89146264923025],[-87.7407488685513,41.891463857575715],[-87.74073534183877,41.891337895570096],[-87.74070578981701,41.890909297643375],[-87.74069436023096,41.890705478504984],[-87.74069219240289,41.89064200693632],[-87.74069045474552,41.890581624313256],[-87.74068470772347,41.89040870724138],[-87.74066329226636,41.88979525799845],[-87.74065720044877,41.88960999029405],[-87.74062672561303,41.888735104553966],[-87.7406173871702,41.88845411421765],[-87.74060043105892,41.88795423122095],[-87.74059567509266,41.88782316893229],[-87.74113052956592,41.8878187244238],[-87.74285949402486,41.88780601675991],[-87.74297059566963,41.887805215296275],[-87.74308629503533,41.88780512396705],[-87.74372030253929,41.88779980540714],[-87.74452005717133,41.88779327457368],[-87.74536343119644,41.88778593296556],[-87.74554653598165,41.887784470745345],[-87.74602407947256,41.88778039477742],[-87.74688627618862,41.88777279494106],[-87.74782789226022,41.88776525082347],[-87.7479647031423,41.88776423284766],[-87.74800179240842,41.887885293050275],[-87.74801086724311,41.88812628330002],[-87.74801488469046,41.888233135083695],[-87.74802463465183,41.88849210658901],[-87.74803180526547,41.88866616373062],[-87.74803594483829,41.88876664371278],[-87.74803962769572,41.88888219523317],[-87.74804173298367,41.888933194050175],[-87.7480489584145,41.889108255576446],[-87.74805229017943,41.88918884690365],[-87.74805704510698,41.88930363549025],[-87.7480618000492,41.889418424074464],[-87.74806647226653,41.889545777311525],[-87.74807024045188,41.88964848974918],[-87.74807411558304,41.8897510345077],[-87.7480784257402,41.88986631477978],[-87.74808350294313,41.89000378508402],[-87.74808455073254,41.89003215329654],[-87.74808831998597,41.89013423098657],[-87.74809162187958,41.890223133916024],[-87.74809538714435,41.890325650661374],[-87.74810019400296,41.89045427953966],[-87.74810878788168,41.89068425456946],[-87.74811335231675,41.890811885219684],[-87.74811701422665,41.89091366048115],[-87.74812067464346,41.8910156003878],[-87.74812704671562,41.89119466738831],[-87.7481336596599,41.89135917821589],[-87.74813883958059,41.89148803235238],[-87.74814358423721,41.89161604809643],[-87.74814731680635,41.89171809812741],[-87.74815049432834,41.891805874708204],[-87.74815101289313,41.89182020285547],[-87.74815377083475,41.8918962873643],[-87.74815746657158,41.891998392087245],[-87.74816076086317,41.8920881456633],[-87.74816385089879,41.89224751885015],[-87.74816645442985,41.89238180880845],[-87.74816859008925,41.89244559592496],[-87.74817206501214,41.89254775439749],[-87.74817709835072,41.89269542037506],[-87.74818262772565,41.89285521843444],[-87.74818744346399,41.89299558360628],[-87.74819286312264,41.89313968155354],[-87.74819607378652,41.89322504636469],[-87.74819987076135,41.89335228885119],[-87.74820326627938,41.89346718019282],[-87.74820690869089,41.89358624925441],[-87.74820796212269,41.893620689664886],[-87.74820951807303,41.89367958905975],[-87.74821339350669,41.89378616778216],[-87.74821777115834,41.893914181602675],[-87.74822279045135,41.89403406969179],[-87.74822579276537,41.894105770663096],[-87.74823192196325,41.89424707553798],[-87.74823732351486,41.89438766319847],[-87.7482404039529,41.89447893705426],[-87.74824333687995,41.8945658501035],[-87.74825087613337,41.89481026336136],[-87.74825778636537,41.894984802509306],[-87.74790517626191,41.894987535918425],[-87.74764269193984,41.89498921614305],[-87.74719864411574,41.89499194503989],[-87.74692491555169,41.89499416996432],[-87.74668523702968,41.894996156553375],[-87.746480344713,41.8949978538975],[-87.74645140035015,41.894998059709515],[-87.7464010776593,41.894998417501576],[-87.74603566843619,41.895001014164],[-87.74580721008056,41.89500415345095],[-87.74553939035225,41.89500783285845],[-87.74514753405619,41.89501466289827],[-87.74505867116838,41.89501621100479],[-87.74483497322991,41.895021870553435],[-87.74463269662859,41.89502665155713],[-87.74441290135081,41.89503128747807],[-87.74425979018162,41.895033740366344],[-87.74415641826438,41.89503537800067],[-87.74381624906223,41.895041233763855],[-87.74352438745625,41.895046982636764],[-87.74320069757248,41.895053357549735],[-87.74291049646641,41.89505746437997],[-87.74290381081781,41.89505755925941],[-87.74274691854028,41.89505977883388],[-87.7423930529494,41.8950652031888],[-87.7420747939218,41.89507286797046],[-87.74184369164075,41.895080871058504],[-87.74163134468886,41.89509028755855],[-87.74144523098477,41.89509469617109],[-87.74140393903832,41.89509567433587],[-87.7413363979738,41.8950944224891],[-87.7412261429114,41.895093500042165],[-87.741164452319,41.89509298380482],[-87.74112342380772,41.8950926405023],[-87.74107090755072,41.89509220089025],[-87.74104225444071,41.89498932266397],[-87.74102804834607,41.894887025807314],[-87.74096118739787,41.89437179266456],[-87.74091670320446,41.89401858494259],[-87.74086994306542,41.89366330698356],[-87.74081902165759,41.89326169895625],[-87.7407620622255,41.892817866703425],[-87.74072931580255,41.892585809411955],[-87.74071510825739,41.892483855772795],[-87.74065397798854,41.89199472213425]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11038007.5912","perimeter":"0.0","tract_cent":"1143817.12331596","census_t_1":"17031252200","tract_numa":"46","tract_comm":"25","objectid":"126","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898217.71663988","census_tra":"252200","tract_ce_3":"41.87673735","tract_crea":"","tract_ce_2":"-87.74741588","shape_len":"13767.2867298"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7402165907235,41.87703886356255],[-87.74021207554497,41.8769073596086],[-87.74021186291328,41.87690736262681],[-87.73981621692674,41.876912827119554],[-87.7395145297237,41.876909120749],[-87.73950192796754,41.87662434584869],[-87.73949925432306,41.87650064862244],[-87.73949670236958,41.87636380705908],[-87.7394933007475,41.87617992463055],[-87.73948466878153,41.87600411096655],[-87.73947875031405,41.875883552562556],[-87.73947264909273,41.87574136878275],[-87.7394661271938,41.875581207975465],[-87.73945937918066,41.87542167717204],[-87.73945298114089,41.87529573781568],[-87.73944819145383,41.87509490900492],[-87.73944470209237,41.87494860202561],[-87.73943923030983,41.87472678328201],[-87.73943507282326,41.87463186554516],[-87.73942911349887,41.87447088433893],[-87.73941732172746,41.874180160667045],[-87.73941398704295,41.87409794455694],[-87.73940810729755,41.87378913086595],[-87.73940563982039,41.873720209649946],[-87.73940043475103,41.873574819947024],[-87.73939240658947,41.873414788498856],[-87.73938985879195,41.87326562985246],[-87.74008456621938,41.87325170073391],[-87.74008463893341,41.87325169918856],[-87.74256489242684,41.87320193512398],[-87.74277315200486,41.87319775401405],[-87.74300306169653,41.87319509408742],[-87.74316701887741,41.8731933845989],[-87.74350634990545,41.873190215652535],[-87.74382085013806,41.87318414655043],[-87.74405779884486,41.87317863917836],[-87.74442316279735,41.87316527584464],[-87.74454610949657,41.87316141252289],[-87.74476552231724,41.873150270394206],[-87.74499844274632,41.87314050330945],[-87.74539127339057,41.87312402977691],[-87.7456114405089,41.87311717230019],[-87.74569471558858,41.873114578383955],[-87.74588170754052,41.87310738460527],[-87.74613218843832,41.87310361616578],[-87.7463323950964,41.873100797971325],[-87.74671044152028,41.87309584129787],[-87.74703436110478,41.873091540386824],[-87.74721073525559,41.87308882374402],[-87.74735017135022,41.87308667577702],[-87.74768956276218,41.87308083285083],[-87.74799739904813,41.873072632693834],[-87.74839047015512,41.87305877363161],[-87.74869329058026,41.87304494778436],[-87.74893181575432,41.87303556898207],[-87.74914536307985,41.873027076631836],[-87.74947509241227,41.873013963264285],[-87.74969961342036,41.87301024715983],[-87.74996925440902,41.87300708912719],[-87.75017760596528,41.87300490906214],[-87.75038551792649,41.873002616617526],[-87.75064781308343,41.87299972157188],[-87.75080281216988,41.87299784595919],[-87.75111905489729,41.87299379645322],[-87.75138116344091,41.8729912280968],[-87.75167339312425,41.87298719259287],[-87.75192861011536,41.872983380611004],[-87.75215193864027,41.87298157465204],[-87.75228625823154,41.87298056028278],[-87.75240948896628,41.87297958461678],[-87.75270193040858,41.87297648061267],[-87.75304142437278,41.87297136333473],[-87.75328121636679,41.87296796793853],[-87.75355424137595,41.87296410150597],[-87.7539791008245,41.87295911078824],[-87.75430137793057,41.87295360078796],[-87.75458126731628,41.87294990757722],[-87.75480598002616,41.87294637619869],[-87.75480903578277,41.87313568829097],[-87.75481450563885,41.87332309348132],[-87.75481639601261,41.87338512615277],[-87.75482011536211,41.87350720626577],[-87.75482257471468,41.87367829541355],[-87.75482794049888,41.873945124514584],[-87.75483152310592,41.87412329399216],[-87.75483861214039,41.874346958614645],[-87.75484629643215,41.87454126326847],[-87.75485045164045,41.87465871050853],[-87.7548593580528,41.87484754954133],[-87.7548646514273,41.874961061486275],[-87.75486963276734,41.875109056685666],[-87.75487343593052,41.87528179910552],[-87.75487408080505,41.87529681314118],[-87.75488032475613,41.87544218048323],[-87.75488530611753,41.87556163544386],[-87.75489376767756,41.87575406031418],[-87.75489816457126,41.87585404542105],[-87.7549029848864,41.876011726995884],[-87.7549081140284,41.876135161853924],[-87.75491084567247,41.87620315073965],[-87.7549157310947,41.87632474571684],[-87.7549213196914,41.87644609725019],[-87.7549294065089,41.876659416582505],[-87.75493579539663,41.8768279504945],[-87.75493995583972,41.876961094832176],[-87.75494696282873,41.8771150831971],[-87.75495235828787,41.877295983727215],[-87.75495844295254,41.877427491467905],[-87.75496320190999,41.87756602083145],[-87.75496623782392,41.87765439800166],[-87.75497168165855,41.877804042008314],[-87.75497812106067,41.87798173699917],[-87.75497946213991,41.87801846238487],[-87.75498292143133,41.878113156202176],[-87.75498946356515,41.87827946333221],[-87.7549962155823,41.87847132570623],[-87.75500098055566,41.878606718394735],[-87.75500789847577,41.878796518190455],[-87.75501304421087,41.87893293666837],[-87.75502017414492,41.879117026185575],[-87.75502314285562,41.879195032743056],[-87.75502923444401,41.8793764273825],[-87.75503391169251,41.87951569778186],[-87.75503990895265,41.879661008608444],[-87.75504779452343,41.879831274176674],[-87.75505629066129,41.880027091785095],[-87.75505994444154,41.8801635271433],[-87.75506689176672,41.88037184687999],[-87.75480693423738,41.88037545338421],[-87.75467207870878,41.88037721633774],[-87.75433809719,41.880381597783085],[-87.75405277561656,41.88038548276932],[-87.7537036360864,41.88038899007598],[-87.7535529492458,41.88039120419446],[-87.7532977397776,41.880394953920565],[-87.75314686804653,41.88039734769279],[-87.75288449727098,41.880401208510285],[-87.75261882741647,41.88040438217452],[-87.75231151198626,41.88040805309769],[-87.7522189640994,41.88040922259718],[-87.75198689667398,41.88041214550634],[-87.75169125696506,41.88041594522388],[-87.75142036963724,41.8804194851364],[-87.75115007228908,41.880422752975726],[-87.75082222791104,41.88042660645659],[-87.75045192883123,41.880430929865696],[-87.7501732167131,41.88043480610163],[-87.74992579495316,41.880438247042854],[-87.7496878101205,41.88044173047196],[-87.74941156158476,41.8804452383986],[-87.7491861042968,41.880448098422264],[-87.74892168413903,41.880451143928035],[-87.7485765875427,41.88045418969679],[-87.74820794448516,41.88045812983213],[-87.74789522689612,41.88046216179716],[-87.7478780441645,41.88046246086647],[-87.74772294085255,41.88046516046358],[-87.74749277229023,41.88046916548159],[-87.74714851385579,41.88047289729659],[-87.74668063206579,41.88047879576552],[-87.74631062065555,41.88048376563438],[-87.74586722761765,41.88049011527303],[-87.74558818331204,41.880494121107034],[-87.74527756102748,41.88049799832333],[-87.74503003074541,41.88050108759817],[-87.74477552856723,41.88050373528317],[-87.7444637359403,41.880506966810756],[-87.74420258638251,41.8805096614675],[-87.74385755464081,41.880513626431274],[-87.7435689694096,41.880516892322206],[-87.74324079552039,41.8805205029247],[-87.74303762804216,41.88052330322115],[-87.74283005408752,41.880525735273885],[-87.7426596481255,41.88052821789603],[-87.74237422244651,41.88053130493758],[-87.74216044199814,41.880534156368505],[-87.74187519962727,41.88053727055572],[-87.74154126215666,41.88054068196204],[-87.7413880818288,41.880542351073636],[-87.74127967062903,41.880543532348575],[-87.74102575396088,41.8805463668385],[-87.74061478768927,41.880551773694066],[-87.74042143759858,41.880554317065496],[-87.74033786962558,41.880555153151654],[-87.74033782959627,41.880555153493816],[-87.74033051466266,41.88035534671542],[-87.74032905236095,41.88031325445271],[-87.74031111291136,41.87979676429918],[-87.74030540173614,41.87963738528103],[-87.74030360934235,41.87958734999817],[-87.74030360372062,41.879587203426205],[-87.74029857619831,41.87944690019449],[-87.74029313221975,41.879294967421615],[-87.74028790435537,41.87913725691887],[-87.74027318085732,41.87869310550775],[-87.74027205789754,41.87865923566074],[-87.74026670888406,41.87851110249665],[-87.74025413750098,41.87816292776594],[-87.74025187504036,41.87809646433068],[-87.74024182265397,41.877801158496986],[-87.74023555423331,41.87761701352212],[-87.7402326536363,41.87753180410071],[-87.74021730176321,41.87705957617613],[-87.7402165907235,41.87703886356255]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10573197.9629","perimeter":"0.0","tract_cent":"1143872.46814989","census_t_1":"17031252300","tract_numa":"25","tract_comm":"25","objectid":"127","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895570.07394432","census_tra":"252300","tract_ce_3":"41.86947085","tract_crea":"","tract_ce_2":"-87.74727904","shape_len":"13315.8228344"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73976647132838,41.86596219585274],[-87.73998200626032,41.865959187455246],[-87.73998200623748,41.86595918992497],[-87.73998200619688,41.86595919431557],[-87.73998200651324,41.865959199805715],[-87.73998353217976,41.86595917311034],[-87.73998368199155,41.86595917059121],[-87.73998567838842,41.865959136174055],[-87.74006910112001,41.86595797574513],[-87.74016676993102,41.865956614409406],[-87.74027576093582,41.86595509960101],[-87.74039140772663,41.86595349281654],[-87.74212686656367,41.865929124656354],[-87.74216082135263,41.86592862764843],[-87.74230586547202,41.86592650586932],[-87.7425782405133,41.86592249666683],[-87.74264157692551,41.86592156419943],[-87.74317204054381,41.86591361641232],[-87.74475411302981,41.86589692661529],[-87.7450761528373,41.86589352797054],[-87.74573407060981,41.86588287229091],[-87.74597780190715,41.86587942636737],[-87.74633117236328,41.86587445500012],[-87.74693957490496,41.86586664060765],[-87.74719601605247,41.86586235138757],[-87.74751113341051,41.865857098551565],[-87.74818049603265,41.86584744827193],[-87.74841652077171,41.86584371147235],[-87.7486422632858,41.86584014055831],[-87.74930223220663,41.8658299693923],[-87.74963981500719,41.86582490755761],[-87.7499710095237,41.86581994922007],[-87.75061603170103,41.86581032548559],[-87.75065403587912,41.86580973756512],[-87.75086317946581,41.86580650205678],[-87.75104592735835,41.86580366170916],[-87.75109083049053,41.8658029639999],[-87.751723341148,41.865792310674024],[-87.75208225438993,41.865787294244384],[-87.75231977947253,41.8657839678305],[-87.7523514341236,41.86578305798115],[-87.75246375422736,41.86578132122099],[-87.75305392101126,41.86577217472671],[-87.75330642450076,41.865768922225385],[-87.75366294735433,41.865764328138226],[-87.75407025486987,41.86575847948496],[-87.75432309177832,41.86575484223375],[-87.7543834847809,41.86575397187593],[-87.75453329928789,41.86575181369384],[-87.75453330516166,41.86575181372344],[-87.75455714255546,41.86607152920952],[-87.75456953880405,41.86689110908727],[-87.7545863403555,41.867356208293415],[-87.75459257549403,41.867528794710736],[-87.7545960677325,41.867625468582574],[-87.75460909781698,41.86794359353449],[-87.75461112742518,41.86801470167419],[-87.75462070173386,41.868262932200615],[-87.75462070535232,41.868263019486186],[-87.75462722743912,41.86841736268438],[-87.75463337812742,41.868617732585896],[-87.75464097483534,41.86884010662234],[-87.75464518141001,41.86895195184567],[-87.7546472694924,41.869007464388055],[-87.7546487811863,41.86904766739125],[-87.75465551180505,41.86923296407564],[-87.75466194906852,41.869410774319],[-87.75467126485356,41.869663770799455],[-87.75467583956365,41.869788014759344],[-87.75468350473628,41.869976199516245],[-87.75468927643536,41.87013744562592],[-87.75469018145063,41.87016272861688],[-87.75469914197144,41.87046511245162],[-87.75471094496022,41.87071967411389],[-87.75472603110038,41.87104434825272],[-87.75473444886707,41.871225527107974],[-87.75473866692016,41.87131630250271],[-87.75474505755557,41.87145384791861],[-87.75475571061195,41.8716831190037],[-87.75475988967285,41.871773053354595],[-87.75476841159903,41.87195646214164],[-87.75477865247409,41.87217685758276],[-87.75479191763382,41.87240777105872],[-87.75479801946193,41.872549515071725],[-87.7548022280209,41.87271391708048],[-87.75480566911811,41.87292710805023],[-87.75480598002616,41.87294637619869],[-87.75458126731628,41.87294990757722],[-87.75430137793057,41.87295360078796],[-87.7539791008245,41.87295911078824],[-87.75355424137595,41.87296410150597],[-87.75328121636679,41.87296796793853],[-87.75304142437278,41.87297136333473],[-87.75270193040858,41.87297648061267],[-87.75240948896628,41.87297958461678],[-87.75228625823154,41.87298056028278],[-87.75215193864027,41.87298157465204],[-87.75192861011536,41.872983380611004],[-87.75167339312425,41.87298719259287],[-87.75138116344091,41.8729912280968],[-87.75111905489729,41.87299379645322],[-87.75080281216988,41.87299784595919],[-87.75064781308343,41.87299972157188],[-87.75038551792649,41.873002616617526],[-87.75017760596528,41.87300490906214],[-87.74996925440902,41.87300708912719],[-87.74969961342036,41.87301024715983],[-87.74947509241227,41.873013963264285],[-87.74914536307985,41.873027076631836],[-87.74893181575432,41.87303556898207],[-87.74869329058026,41.87304494778436],[-87.74839047015512,41.87305877363161],[-87.74799739904813,41.873072632693834],[-87.74768956276218,41.87308083285083],[-87.74735017135022,41.87308667577702],[-87.74721073525559,41.87308882374402],[-87.74703436110478,41.873091540386824],[-87.74671044152028,41.87309584129787],[-87.7463323950964,41.873100797971325],[-87.74613218843832,41.87310361616578],[-87.74588170754052,41.87310738460527],[-87.74569471558858,41.873114578383955],[-87.7456114405089,41.87311717230019],[-87.74539127339057,41.87312402977691],[-87.74499844274632,41.87314050330945],[-87.74476552231724,41.873150270394206],[-87.74454610949657,41.87316141252289],[-87.74442316279735,41.87316527584464],[-87.74405779884486,41.87317863917836],[-87.74382085013806,41.87318414655043],[-87.74350634990545,41.873190215652535],[-87.74316701887741,41.8731933845989],[-87.74300306169653,41.87319509408742],[-87.74277315200486,41.87319775401405],[-87.74256489242684,41.87320193512398],[-87.74008463893341,41.87325169918856],[-87.74008463717456,41.873251651155044],[-87.74008349308332,41.873220480961336],[-87.74008116263063,41.87315699435505],[-87.7400704131614,41.8728641528364],[-87.74006375587861,41.872682798788226],[-87.74005160948498,41.87234485261694],[-87.74005155321431,41.872343274655066],[-87.74005084632606,41.872331810452984],[-87.74003920562976,41.87200244019448],[-87.74002970957464,41.8717389428059],[-87.74002753014297,41.87167684281064],[-87.74002016768807,41.8715894321323],[-87.7400092017925,41.87145923858257],[-87.7400179590665,41.871371838182],[-87.73999462650501,41.87061944904853],[-87.73999235131294,41.87051800390079],[-87.73999004499176,41.87042012392537],[-87.73997714081264,41.869830385618826],[-87.73997368306411,41.869757645011724],[-87.73996885174792,41.8696845542751],[-87.73996138432356,41.86959875774031],[-87.73995551148249,41.8695390401353],[-87.73994046461848,41.8694291919337],[-87.73992602264349,41.8693035676637],[-87.73991341636746,41.86917795314891],[-87.7399017279651,41.869052342824055],[-87.73989425043482,41.86896313017512],[-87.7398942421576,41.86896303271131],[-87.73988875915504,41.868866695578646],[-87.73987228541384,41.86846457710098],[-87.73986740848879,41.86834689937246],[-87.7398674081902,41.86834689196143],[-87.73985057375977,41.8679341375917],[-87.73984797095166,41.86786826201364],[-87.73984530078849,41.86780958975704],[-87.73984269444708,41.86774405746555],[-87.7398115187465,41.86699642974392],[-87.73977731736436,41.86617915050738],[-87.7397707219097,41.866048764252575],[-87.73976647132838,41.86596219585274]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3543453.11738","perimeter":"0.0","tract_cent":"1149104.98024978","census_t_1":"17031260700","tract_numa":"18","tract_comm":"26","objectid":"128","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898370.84282918","census_tra":"260700","tract_ce_3":"41.87705685","tract_crea":"","tract_ce_2":"-87.72799636","shape_len":"7980.03554478"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72787944089187,41.87341269600615],[-87.72798092338027,41.87340907425535],[-87.72826202679187,41.87341327244111],[-87.72834908009477,41.873412072160114],[-87.72844346969751,41.8734107704972],[-87.72860996584392,41.87340857375906],[-87.72885468030991,41.87340522428279],[-87.72909745165747,41.873401526518556],[-87.72927647365978,41.87339879921367],[-87.72954425535059,41.873394499336214],[-87.72967961014945,41.87339285082368],[-87.72990867374304,41.87339048709286],[-87.73011716540223,41.87338922259859],[-87.73031257058622,41.87338613516073],[-87.73031527685508,41.87346025213772],[-87.73032255978246,41.873659697341466],[-87.73032733641658,41.87379050963185],[-87.73033038057117,41.87387387842756],[-87.73033705586523,41.87405668669194],[-87.7303435282401,41.87423393759816],[-87.73034592739535,41.87429963962413],[-87.7303534189849,41.87450479393627],[-87.73036532671699,41.87464423699684],[-87.73036895828676,41.8746953540283],[-87.7303708180108,41.87474989234534],[-87.73037540595568,41.874884466810705],[-87.7303808118821,41.87505546205801],[-87.73038608431328,41.87520534754355],[-87.73039393793236,41.87542861193814],[-87.73040051938297,41.87559955845517],[-87.73040223303745,41.87566057901522],[-87.73040582913632,41.875788610347406],[-87.73041222982425,41.875967075151884],[-87.73041768893539,41.87611625467358],[-87.73042672042608,41.87636306430039],[-87.7304312901706,41.87649412626426],[-87.73043363136291,41.87656960517502],[-87.73043661619118,41.87666583454743],[-87.73044364900049,41.87686691526636],[-87.73044838319107,41.87702666537834],[-87.73045530201449,41.87726011803521],[-87.73045894785132,41.87740744825748],[-87.73046218634506,41.877473452128186],[-87.73046822363459,41.87759649346563],[-87.73047746063085,41.87776232210731],[-87.73047984724043,41.87784852714059],[-87.73048177525514,41.87791816355095],[-87.73048361963254,41.87798478304178],[-87.73048609591581,41.8780742240131],[-87.73048830560154,41.878175114240776],[-87.73049272181719,41.878310813137844],[-87.73049464290187,41.87836595190862],[-87.7304990837148,41.87849344891638],[-87.73050716518375,41.878665034388945],[-87.73051372939861,41.87881032637107],[-87.73052139101854,41.87897990193652],[-87.73052319790379,41.879174451268256],[-87.73052602097455,41.87925739950009],[-87.73052921174539,41.879351157612476],[-87.7305369419469,41.87956791155713],[-87.73054116415634,41.879702273226656],[-87.73054759877434,41.87990704692386],[-87.73055652416897,41.880148006182075],[-87.73055676640855,41.880154543980225],[-87.7305626195252,41.88030929545807],[-87.73056592919302,41.880453358453686],[-87.73057382275401,41.88066748339875],[-87.73032491120206,41.88066998624599],[-87.72995178410943,41.88067411892482],[-87.72973981042169,41.8806760785642],[-87.72930379267552,41.88068273231668],[-87.7289702534676,41.88068660322317],[-87.72851354290276,41.880691333870566],[-87.7281194806436,41.880695791611586],[-87.72789619207184,41.88069831692465],[-87.7275187196739,41.880703708311145],[-87.72719840087757,41.880707478881725],[-87.72690554639526,41.880711586236124],[-87.72652735194693,41.880715653311434],[-87.72622562090649,41.88071869638227],[-87.72587540637446,41.880722936665585],[-87.72567027835919,41.880726990598596],[-87.72566655819595,41.880550014361695],[-87.7256591001691,41.88036048453394],[-87.72565416438748,41.88022825478642],[-87.7256475022603,41.880034296648326],[-87.72563717407523,41.87976168923845],[-87.72563205110279,41.87962647438955],[-87.72562655462656,41.87943146641143],[-87.72562220147773,41.87931464786015],[-87.72561970392432,41.879247620354334],[-87.7256147377193,41.8790702878597],[-87.72560684428278,41.87886953800847],[-87.72560394152909,41.8787957111217],[-87.72560183653196,41.87874217202611],[-87.72559651762734,41.878571067644],[-87.72559240515842,41.878423741702754],[-87.72558644149291,41.87823934459555],[-87.72557857861308,41.877979851740164],[-87.72557480481849,41.877855307318875],[-87.72556803690628,41.877705380575755],[-87.72556247362735,41.877552331758636],[-87.72556192262327,41.87753755023332],[-87.72555609060245,41.87738116654876],[-87.72555039994583,41.87722218946823],[-87.7255460093603,41.87708737442799],[-87.7255419806387,41.87696366398717],[-87.72553436912253,41.87677490161267],[-87.7255304951435,41.876633933667584],[-87.72552465682466,41.876466835546815],[-87.72552067434438,41.87634848238826],[-87.72551563112302,41.87617819662909],[-87.72551207859712,41.87605825983751],[-87.72550450271707,41.87588121557103],[-87.72550011461209,41.87572778708124],[-87.72549369610927,41.87554915891074],[-87.72548813875511,41.875407141953715],[-87.72548491068441,41.875268433441484],[-87.72548213714431,41.87514926036202],[-87.72547690066487,41.875008260466004],[-87.72546459144213,41.87481205846655],[-87.72545465081207,41.874653612880365],[-87.72544836406229,41.87449748658677],[-87.72544364599264,41.874358595356114],[-87.72544168255098,41.87430079843674],[-87.72543429450812,41.874083315266574],[-87.72542928570803,41.873935858500424],[-87.72542672170876,41.87386038020273],[-87.72542202605915,41.87372215345805],[-87.72541529215547,41.8735239175194],[-87.72541255190315,41.87344325109816],[-87.7258290961054,41.87344224342718],[-87.72594912755295,41.87344195294807],[-87.72626551090104,41.87343890540635],[-87.72669816170708,41.87343367261822],[-87.727054545969,41.873428968099276],[-87.72736245588311,41.873425077243645],[-87.72763052396564,41.873421579447815],[-87.72785488869211,41.87341357233343],[-87.72787944089187,41.87341269600615]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6186020.03362","perimeter":"0.0","tract_cent":"1142639.08166556","census_t_1":"17031250800","tract_numa":"19","tract_comm":"25","objectid":"129","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1908941.29313954","census_tra":"250800","tract_ce_3":"41.9061861","tract_crea":"","tract_ce_2":"-87.75147433","shape_len":"10605.9994695"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75562883942173,41.90225182778993],[-87.75577438754358,41.90224940487752],[-87.75577860378989,41.90244530909973],[-87.75578430849102,41.902699015586826],[-87.75578704779701,41.90282084588743],[-87.75579462042461,41.903154900186195],[-87.75580021649402,41.9034017578459],[-87.75580522243331,41.90360795772037],[-87.75580905718162,41.903765907972705],[-87.75581567935546,41.90406212672864],[-87.75582102190974,41.90430109475905],[-87.7558296168474,41.90464361926511],[-87.75584073467653,41.905109756393955],[-87.75584894580767,41.9054745067026],[-87.7558599923629,41.905874589592216],[-87.75586309843568,41.90598709235699],[-87.75587327718615,41.90647594694211],[-87.7558833574375,41.906910519968896],[-87.75589711872502,41.90743397043033],[-87.7559024567821,41.90768628708922],[-87.75590701168254,41.907901583332055],[-87.75592261628825,41.90855072874734],[-87.75592901582719,41.908847522697464],[-87.75591816499683,41.90900068710388],[-87.7559170617604,41.90901626058793],[-87.75589480291877,41.909113761155496],[-87.75587245427629,41.909201081245385],[-87.75579562249426,41.90950127161691],[-87.75514997999527,41.90950908014136],[-87.7547124510453,41.90951516387082],[-87.75409231208258,41.90952378238765],[-87.75349144067464,41.90953055330301],[-87.75286947877161,41.90953755831545],[-87.75264718616968,41.9095406819339],[-87.75226047149286,41.90954611508548],[-87.75195473692949,41.909550409764584],[-87.75159848135425,41.90955541284417],[-87.75121995008428,41.90956021517832],[-87.75103537254165,41.90956255622605],[-87.75015789753598,41.90957368194989],[-87.74950271437424,41.90958176866059],[-87.74920146585144,41.90958558512844],[-87.74884730867,41.90959007003861],[-87.74867447505962,41.909592279087384],[-87.74806113678572,41.9096001161745],[-87.74712596845181,41.909612799241955],[-87.74611444687834,41.909625781842614],[-87.7461152845327,41.90920264085688],[-87.74611108912747,41.909127838694445],[-87.74610751581739,41.909064126975075],[-87.74608896161955,41.90873971825404],[-87.74606829819024,41.90818041952352],[-87.74606522349458,41.90780742828564],[-87.74606288275169,41.90765698356695],[-87.7460489840885,41.907185342814245],[-87.74604961927929,41.907078321092506],[-87.7460521583291,41.906650616997986],[-87.74604104436025,41.90623991247658],[-87.74603597082418,41.90598782831125],[-87.74663476641906,41.905983589603316],[-87.7471816460868,41.905976228772374],[-87.74786497332256,41.90596766757784],[-87.74831503118193,41.90596279887619],[-87.74850170402249,41.90596075222198],[-87.74849117955446,41.905509222373865],[-87.74848721123674,41.90533897762933],[-87.74848005274794,41.90505290182401],[-87.74847542131734,41.904867814220026],[-87.74847034609299,41.90459961591423],[-87.74846526037915,41.90433087967165],[-87.7484618315872,41.904144437576015],[-87.74845836147892,41.903955762002404],[-87.74845116121679,41.90369155365583],[-87.74844551042011,41.90348418143732],[-87.74844035607128,41.90323666544401],[-87.74843327697796,41.90289668731649],[-87.74843088776936,41.90278455678419],[-87.74842507254772,41.902511656198776],[-87.7484199517954,41.9023266000478],[-87.74871698937378,41.90232313132404],[-87.74943195425664,41.90231724678905],[-87.75008190742373,41.9023105882621],[-87.75044737748182,41.90230583034788],[-87.75087248562113,41.90230136774987],[-87.75119813879344,41.9022979482879],[-87.75173185746587,41.90229225533384],[-87.75202060980091,41.90228943560671],[-87.75209926195986,41.90228884636207],[-87.75240446658583,41.902286549119374],[-87.75296413692533,41.90227884121527],[-87.7533247656157,41.9022745145476],[-87.75355484184433,41.90227175379924],[-87.75417136107906,41.90226569886767],[-87.75455117484124,41.902263003802574],[-87.75491041644004,41.90226045056566],[-87.75541951977142,41.90225511043997],[-87.75562883942173,41.90225182778993]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5343993.99082","perimeter":"0.0","tract_cent":"1142511.51017874","census_t_1":"17031251100","tract_numa":"23","tract_comm":"25","objectid":"130","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906185.19242553","census_tra":"251100","tract_ce_3":"41.89862542","tract_crea":"","tract_ce_2":"-87.75201156","shape_len":"9342.63646528"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75172407415944,41.89495677635566],[-87.75193114282106,41.894954025511616],[-87.75208714408933,41.89495283388538],[-87.75230870935815,41.89495139338876],[-87.75251106390967,41.89495008444504],[-87.75294923202127,41.89494763459657],[-87.75315574787014,41.89495571466883],[-87.75323191107114,41.89495869439654],[-87.75330200394134,41.89496143677122],[-87.75353981301829,41.89495896041038],[-87.75368130837816,41.894957479327275],[-87.75376612305405,41.89495678227416],[-87.7541611782264,41.89495350647058],[-87.75437789902551,41.89495155757989],[-87.75465196065535,41.89494909263617],[-87.75478717428986,41.89494771574718],[-87.75499621948084,41.894945627677416],[-87.75502277838693,41.89494536241828],[-87.75532779901872,41.89494324825474],[-87.75559882441146,41.89493606817276],[-87.75560409052792,41.89505191106486],[-87.75560867516049,41.895166753542384],[-87.75561376228485,41.89531957832209],[-87.75561461728353,41.89539115248474],[-87.75561537419777,41.89542132101308],[-87.75562075546559,41.895635860077256],[-87.7556292287861,41.89603244580665],[-87.75563894776663,41.89645384572825],[-87.75564529914442,41.89675283985463],[-87.75564967604788,41.896958895204435],[-87.75566384815689,41.89751385228187],[-87.75567521804578,41.8980047994878],[-87.75568626488274,41.89837672726404],[-87.7556897061753,41.898582809407124],[-87.75569342173877,41.89880533147797],[-87.75570917603049,41.89940489025244],[-87.75572280943985,41.899999334006765],[-87.75572937775888,41.90026094808655],[-87.75573290487802,41.90041717350184],[-87.75574381701925,41.90090051111856],[-87.7557631391077,41.90179556022828],[-87.75576453618726,41.90186027643628],[-87.75576677759419,41.901964102036196],[-87.75577438754358,41.90224940487752],[-87.75562883942173,41.90225182778993],[-87.75541951977142,41.90225511043997],[-87.75491041644004,41.90226045056566],[-87.75455117484124,41.902263003802574],[-87.75417136107906,41.90226569886767],[-87.75355484184433,41.90227175379924],[-87.7533247656157,41.9022745145476],[-87.75296413692533,41.90227884121527],[-87.75240446658583,41.902286549119374],[-87.75209926195986,41.90228884636207],[-87.75202060980091,41.90228943560671],[-87.75173185746587,41.90229225533384],[-87.75119813879344,41.9022979482879],[-87.75087248562113,41.90230136774987],[-87.75044737748182,41.90230583034788],[-87.75008190742373,41.9023105882621],[-87.74943195425664,41.90231724678905],[-87.74871698937378,41.90232313132404],[-87.7484199517954,41.9023266000478],[-87.74841687235686,41.902215318898065],[-87.74841380111427,41.90210048427205],[-87.74840931697422,41.901865362697635],[-87.74840659631545,41.90172270298499],[-87.74839990904216,41.90140985302518],[-87.74839526984763,41.901192814899574],[-87.74839066569712,41.900950447333656],[-87.74838703215293,41.90075918300313],[-87.74838143355818,41.90049119259536],[-87.74837662752388,41.90026113271284],[-87.74837053572136,41.90003519553],[-87.74836438780105,41.89980720042057],[-87.74836051092845,41.899571251163216],[-87.74835787018094,41.89941051466253],[-87.74835289847833,41.8991228761495],[-87.74835034597987,41.89897521227798],[-87.74834106832078,41.89865533167172],[-87.74833349858767,41.89839430780778],[-87.74833017788053,41.898181267782846],[-87.74832752161791,41.89801085194978],[-87.7483204252932,41.89772388695628],[-87.74831378502638,41.89745537490663],[-87.74830957707331,41.89726619013741],[-87.7483025860348,41.89695188668043],[-87.74829940160609,41.89681218497021],[-87.74829521579038,41.896628549973215],[-87.74828925476467,41.89637566018693],[-87.74828332743976,41.896124152561505],[-87.74827941357952,41.89593193630938],[-87.74827805871165,41.895865401833525],[-87.74827242182896,41.89558855807291],[-87.74827059870897,41.89548748985285],[-87.74826818999667,41.89535395864658],[-87.74826448709422,41.895154048860746],[-87.74825778636537,41.894984802509306],[-87.74847973966499,41.89498308158617],[-87.74874365860013,41.89498115949493],[-87.74906054699237,41.894978628979615],[-87.74935084120865,41.894976318279106],[-87.74967522279545,41.8949737412969],[-87.74998164397815,41.89497112704736],[-87.7503420599877,41.89496823726339],[-87.75070584265184,41.894964290155734],[-87.75085213591808,41.89496270270806],[-87.75115803412415,41.89496104315149],[-87.75134896711083,41.89495959602445],[-87.75172407415944,41.89495677635566]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5175484.84225","perimeter":"0.0","tract_cent":"1142585.93012603","census_t_1":"17031251600","tract_numa":"24","tract_comm":"25","objectid":"131","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903555.12228809","census_tra":"251600","tract_ce_3":"41.89140682","tract_crea":"","tract_ce_2":"-87.75180369","shape_len":"9182.9607903"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74825778636537,41.894984802509306],[-87.74825087613337,41.89481026336136],[-87.74824333687995,41.8945658501035],[-87.7482404039529,41.89447893705426],[-87.74823732351486,41.89438766319847],[-87.74823192196325,41.89424707553798],[-87.74822579276537,41.894105770663096],[-87.74822279045135,41.89403406969179],[-87.74821777115834,41.893914181602675],[-87.74821339350669,41.89378616778216],[-87.74820951807303,41.89367958905975],[-87.74820796212269,41.893620689664886],[-87.74820690869089,41.89358624925441],[-87.74820326627938,41.89346718019282],[-87.74819987076135,41.89335228885119],[-87.74819607378652,41.89322504636469],[-87.74819286312264,41.89313968155354],[-87.74818744346399,41.89299558360628],[-87.74818262772565,41.89285521843444],[-87.74817709835072,41.89269542037506],[-87.74817206501214,41.89254775439749],[-87.74816859008925,41.89244559592496],[-87.74816645442985,41.89238180880845],[-87.74816385089879,41.89224751885015],[-87.74816076086317,41.8920881456633],[-87.74815746657158,41.891998392087245],[-87.74815377083475,41.8918962873643],[-87.74815101289313,41.89182020285547],[-87.74815049432834,41.891805874708204],[-87.74814731680635,41.89171809812741],[-87.74814358423721,41.89161604809643],[-87.74813883958059,41.89148803235238],[-87.7481336596599,41.89135917821589],[-87.74812704671562,41.89119466738831],[-87.74812067464346,41.8910156003878],[-87.74811701422665,41.89091366048115],[-87.74811335231675,41.890811885219684],[-87.74810878788168,41.89068425456946],[-87.74810019400296,41.89045427953966],[-87.74809538714435,41.890325650661374],[-87.74809162187958,41.890223133916024],[-87.74808831998597,41.89013423098657],[-87.74808455073254,41.89003215329654],[-87.74808350294313,41.89000378508402],[-87.7480784257402,41.88986631477978],[-87.74807411558304,41.8897510345077],[-87.74807024045188,41.88964848974918],[-87.74806647226653,41.889545777311525],[-87.7480618000492,41.889418424074464],[-87.74805704510698,41.88930363549025],[-87.74805229017943,41.88918884690365],[-87.7480489584145,41.889108255576446],[-87.74804173298367,41.888933194050175],[-87.74803962769572,41.88888219523317],[-87.74803594483829,41.88876664371278],[-87.74803180526547,41.88866616373062],[-87.74802463465183,41.88849210658901],[-87.74801488469046,41.888233135083695],[-87.74801086724311,41.88812628330002],[-87.74800179240842,41.887885293050275],[-87.74816358819254,41.88788307067526],[-87.7491034065486,41.88787339359565],[-87.7495909054397,41.88786873763281],[-87.7499581910756,41.8878652801851],[-87.75032579372544,41.88786330506503],[-87.75044308243025,41.88786566500413],[-87.75065049720885,41.887869837811635],[-87.75105308351291,41.88786550464935],[-87.75147818449298,41.88786102674345],[-87.75167098273623,41.88785814146224],[-87.75186315581352,41.88785526531539],[-87.75215151915798,41.88785171981765],[-87.75227933842696,41.887850162994155],[-87.75244219612813,41.88784817926153],[-87.75275094447424,41.887844361879026],[-87.75289507222304,41.88784249631272],[-87.75302538886048,41.88784080940384],[-87.75326714364758,41.887837694891154],[-87.75340436532558,41.88783597300098],[-87.75350919141515,41.88783462827535],[-87.75379968678114,41.88783088852424],[-87.75395362169918,41.88782881124076],[-87.75411956601835,41.88782671117312],[-87.75433193653525,41.88782402332328],[-87.75452058277776,41.88782129701109],[-87.754725568333,41.88781907752447],[-87.75479384640867,41.88781833809195],[-87.75508481159888,41.88781538532967],[-87.75533703851232,41.88780880024146],[-87.75534036467023,41.887886787342836],[-87.75534711565415,41.88806673413049],[-87.75535393677512,41.888247092902176],[-87.75536069239348,41.88842657345377],[-87.75536448951601,41.8885292819902],[-87.75536820253714,41.88862013523173],[-87.75537385805602,41.88875869324829],[-87.75538145592006,41.888944241982585],[-87.75538728276634,41.88908653357659],[-87.75538983332154,41.889162122950204],[-87.75539161196458,41.88921333953311],[-87.7553950048967,41.88930463023156],[-87.75539731663821,41.88936682647994],[-87.75540302340649,41.88954045619791],[-87.75540607449845,41.88964200865005],[-87.75540983287509,41.889754733740176],[-87.75541696898196,41.88994500076808],[-87.75542068604581,41.89005607854783],[-87.75542492562751,41.890182774810015],[-87.75543111773194,41.89035961771193],[-87.75543538365578,41.89047308628777],[-87.755439720075,41.89058688452544],[-87.75544544213533,41.89073850543438],[-87.75544927137034,41.89083926594916],[-87.7554578703603,41.89106691692005],[-87.75546257044728,41.891195343801776],[-87.75546681970204,41.89131144647713],[-87.7554707486549,41.891418793945526],[-87.75547668377087,41.89158342362437],[-87.755479855491,41.891671612173326],[-87.75548393496435,41.89178540909299],[-87.75548666537804,41.89186143841364],[-87.75549122267515,41.89198742218037],[-87.75549574697112,41.892112994141414],[-87.75550125249194,41.89226417483916],[-87.75550722446648,41.89242880467802],[-87.75551360478215,41.89260518193281],[-87.75551776127179,41.89271859502634],[-87.75552366777904,41.89288234636391],[-87.75552753523809,41.89299979478072],[-87.75553073249438,41.893096899484796],[-87.75553485651407,41.89320984588327],[-87.75554141663683,41.89338666309663],[-87.7555473390753,41.893548658178204],[-87.75555253428658,41.89367727958982],[-87.75555818199845,41.893816743038336],[-87.75556376480571,41.89395530055624],[-87.7555689477106,41.894081177652474],[-87.75557668302832,41.894282479403515],[-87.75558434111514,41.89452088293133],[-87.75558785528597,41.89467298658654],[-87.75559259581645,41.894799053537625],[-87.75559882441146,41.89493606817276],[-87.75532779901872,41.89494324825474],[-87.75502277838693,41.89494536241828],[-87.75499621948084,41.894945627677416],[-87.75478717428986,41.89494771574718],[-87.75465196065535,41.89494909263617],[-87.75437789902551,41.89495155757989],[-87.7541611782264,41.89495350647058],[-87.75376612305405,41.89495678227416],[-87.75368130837816,41.894957479327275],[-87.75353981301829,41.89495896041038],[-87.75330200394134,41.89496143677122],[-87.75323191107114,41.89495869439654],[-87.75315574787014,41.89495571466883],[-87.75294923202127,41.89494763459657],[-87.75251106390967,41.89495008444504],[-87.75230870935815,41.89495139338876],[-87.75208714408933,41.89495283388538],[-87.75193114282106,41.894954025511616],[-87.75172407415944,41.89495677635566],[-87.75134896711083,41.89495959602445],[-87.75115803412415,41.89496104315149],[-87.75085213591808,41.89496270270806],[-87.75070584265184,41.894964290155734],[-87.7503420599877,41.89496823726339],[-87.74998164397815,41.89497112704736],[-87.74967522279545,41.8949737412969],[-87.74935084120865,41.894976318279106],[-87.74906054699237,41.894978628979615],[-87.74874365860013,41.89498115949493],[-87.74847973966499,41.89498308158617],[-87.74825778636537,41.894984802509306]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3530263.83937","perimeter":"0.0","tract_cent":"1164880.00400529","census_t_1":"17031242100","tract_numa":"23","tract_comm":"24","objectid":"132","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906728.20197576","census_tra":"242100","tract_ce_3":"41.89967018","tract_crea":"","tract_ce_2":"-87.6698378","shape_len":"7962.24018479"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67179301304935,41.89599874358128],[-87.67217312868338,41.89599183477372],[-87.67218649773389,41.896248375333926],[-87.6721904537115,41.89637759683213],[-87.67219250649217,41.8964539198691],[-87.67219382531451,41.896502973029904],[-87.67219621366353,41.896595549922296],[-87.67219883864031,41.896697129000934],[-87.67220445101322,41.89690731531096],[-87.67220821830519,41.89704839081407],[-87.67221353729872,41.89725212618942],[-87.67221811759448,41.89742759165934],[-87.6722225635798,41.89756636589738],[-87.67223080386259,41.897812159786646],[-87.67223865886078,41.89804645309337],[-87.67224188479186,41.898157476055445],[-87.67224538830511,41.898277199844664],[-87.67225172673564,41.898490518156656],[-87.6722582855515,41.898711247717465],[-87.67226399608168,41.898937515469825],[-87.67226725198664,41.8990670072994],[-87.67227262602167,41.89927960680247],[-87.67227708693066,41.899459654396736],[-87.6722823477945,41.89963273019266],[-87.67229266501845,41.899972147882046],[-87.67229496795716,41.90004916413222],[-87.67230069464678,41.90024069016965],[-87.67230985273133,41.90054584704782],[-87.67231540488754,41.900730511199505],[-87.67232138832692,41.90095883861857],[-87.67232330758611,41.901032067522245],[-87.67232824174978,41.90122034884504],[-87.6723342839337,41.90145103635054],[-87.67234155143232,41.90172846577735],[-87.67234359996456,41.901802626808646],[-87.67235058399315,41.90205650877385],[-87.67235525889397,41.90219372027491],[-87.67236083803445,41.90235744601397],[-87.67236552910234,41.90249512357174],[-87.67237066692772,41.902689747121464],[-87.67237377076628,41.9028073002934],[-87.67237605927144,41.90289399424007],[-87.67238217044856,41.90312546061345],[-87.672380601107,41.90326672423345],[-87.67213704600775,41.90327122247536],[-87.67139005484255,41.90328203958744],[-87.67116703872784,41.9032858347388],[-87.67059506055946,41.90329556601738],[-87.6704254681551,41.90329821003632],[-87.66994431908589,41.903305710194005],[-87.6697832139762,41.90330822117653],[-87.66935926387073,41.90331537595838],[-87.66915197355154,41.90331884182393],[-87.66884488548567,41.90332461597087],[-87.6687205559775,41.90332695324941],[-87.66833499229645,41.90333420127749],[-87.66815157455314,41.903338105998216],[-87.6674952601614,41.90334633326628],[-87.66748452173152,41.90298064539823],[-87.66747928094944,41.90284013819273],[-87.66747281507634,41.9026648804972],[-87.66746855155984,41.90243173331154],[-87.66746575697745,41.90227891838812],[-87.66746278932996,41.9021166340234],[-87.66745692259978,41.901903482992],[-87.66745457409252,41.901818398087926],[-87.667443557531,41.901524344571996],[-87.66744105798244,41.90145761744543],[-87.66742950273989,41.90104162013843],[-87.66741771374174,41.90061719746505],[-87.66739245919963,41.89970797733968],[-87.66736718571632,41.89879805223748],[-87.66736091335675,41.898572302132976],[-87.66734189761763,41.897887642271],[-87.66733115040026,41.89750069741013],[-87.66732656242876,41.89733549489457],[-87.6673220486361,41.897172982431286],[-87.66731512624429,41.896923738094195],[-87.66730402357173,41.89652397579049],[-87.66729151669237,41.89607363944048],[-87.66773456582588,41.896066016201914],[-87.66797577458672,41.89606219999332],[-87.66825952449634,41.89605766918553],[-87.66851484405927,41.896053330110284],[-87.66893760789286,41.89604614433754],[-87.66913635062961,41.89604290325714],[-87.66943464877046,41.89603805413012],[-87.66961182760586,41.896035169443195],[-87.66972780311505,41.896033212647865],[-87.67007459666148,41.89602736026204],[-87.67021074352124,41.89602490834159],[-87.67054313927541,41.8960188690374],[-87.67095803672183,41.89601216637151],[-87.67130916161013,41.89600649303398],[-87.67163111622042,41.896001350868765],[-87.67179301304935,41.89599874358128]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3525985.99575","perimeter":"0.0","tract_cent":"1164470.53921193","census_t_1":"17031062600","tract_numa":"11","tract_comm":"6","objectid":"192","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919960.41717841","census_tra":"062600","tract_ce_3":"41.93598891","tract_crea":"","tract_ce_2":"-87.67096638","shape_len":"8000.91705081"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67327379285582,41.932343783396135],[-87.67336415408506,41.9323427454776],[-87.67338221197345,41.933395006816866],[-87.67339078277324,41.93363311747417],[-87.6734729207661,41.9359859276249],[-87.67335239722028,41.93598745525181],[-87.67335494868512,41.9361112849719],[-87.67336170074091,41.93640050959227],[-87.67336271338478,41.936441102412374],[-87.673367785888,41.93664445075251],[-87.67337367758485,41.93689942254987],[-87.67337858666588,41.93711185329811],[-87.67338309538324,41.937280593776926],[-87.67338495138091,41.93735000573342],[-87.67339110656886,41.937580143836385],[-87.67339897259497,41.9378101128404],[-87.6734070345843,41.93804581947503],[-87.67341247685582,41.93826604709871],[-87.67341305128282,41.93828929392803],[-87.67341943107935,41.93855099151633],[-87.67342151280835,41.9387187578008],[-87.67342430917154,41.938944156213765],[-87.67343198049345,41.9391768825304],[-87.67343231656183,41.93918706550971],[-87.6734403240011,41.939429974795274],[-87.67343994609232,41.939632610038444],[-87.67294050395813,41.9396391826648],[-87.67276100429171,41.93964154440329],[-87.67193084879926,41.93965270912987],[-87.67141760372505,41.939659603132995],[-87.67109438252268,41.93966380593224],[-87.66975671266198,41.939681190303766],[-87.66943619703,41.939685866471635],[-87.66912354740838,41.93969042671333],[-87.66898202139578,41.93969228844454],[-87.66866167476945,41.939696500752774],[-87.66864401854582,41.93912278220016],[-87.66862890972082,41.93873348235557],[-87.66862224292852,41.938561682899795],[-87.66860481713222,41.93811262825113],[-87.66859604444093,41.937863996315855],[-87.66857639281062,41.937307035664254],[-87.66856395775591,41.9369581510066],[-87.66855037985442,41.9365771973567],[-87.66853077650478,41.93608345377882],[-87.6685294534081,41.93604891396495],[-87.6685044896132,41.935397411461075],[-87.66849468083257,41.93513635169459],[-87.66848125341836,41.93477897684899],[-87.6684683090999,41.93439045760962],[-87.66846148844806,41.934226890059875],[-87.66844437889378,41.933816572099445],[-87.66844103377919,41.93373635207624],[-87.66843107875579,41.93330927045441],[-87.66842972035377,41.93325099867652],[-87.66841333264746,41.932868524116074],[-87.66839785068291,41.93249439692983],[-87.66839400828434,41.932403540975635],[-87.66899915529703,41.93239626490582],[-87.66905774721198,41.932395559451265],[-87.66924751572606,41.932393277958255],[-87.66961257677433,41.93238837349283],[-87.66996790148347,41.9323835987708],[-87.67035280554555,41.93237842514657],[-87.67082610106931,41.93237337966572],[-87.67131468219183,41.93236816844875],[-87.67206474911677,41.93235846446973],[-87.6723844961271,41.93235432614855],[-87.67299118191275,41.93234707164713],[-87.67308016563257,41.932346007369084],[-87.67327379285582,41.932343783396135]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4805619.92306","perimeter":"0.0","tract_cent":"1159325.27386777","census_t_1":"17031242800","tract_numa":"23","tract_comm":"24","objectid":"133","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904094.73072736","census_tra":"242800","tract_ce_3":"41.89255978","tract_crea":"","tract_ce_2":"-87.69031283","shape_len":"10253.407058"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68684259761734,41.89574324659069],[-87.6868347845064,41.89541772650908],[-87.68683103677715,41.89527370913782],[-87.68682925214242,41.895205126587136],[-87.6868245428301,41.89502447423791],[-87.68681848253918,41.894827187752966],[-87.68681102965324,41.894575550341095],[-87.6868024063564,41.894308898904384],[-87.68678808876629,41.89392843289615],[-87.68678360718089,41.89380934140315],[-87.68677659620487,41.89352851128587],[-87.68677101067374,41.89331028530049],[-87.68676334794311,41.89301983210299],[-87.68675493564919,41.89270097342732],[-87.68674746300623,41.89245137011404],[-87.68673830674508,41.89210993144583],[-87.68673240992665,41.89189003323334],[-87.68672626002576,41.89172789629264],[-87.68671935401207,41.89154583217393],[-87.68671150237611,41.89131197834488],[-87.68670323704917,41.89104631669431],[-87.6867002098143,41.89090817704218],[-87.68669450985736,41.89064805891574],[-87.68669131540248,41.89050228602771],[-87.68668407215486,41.890314349488015],[-87.68667862376161,41.8901729878913],[-87.68667294071597,41.89000089193132],[-87.68666940942268,41.88989220006992],[-87.6866644160026,41.889739125581194],[-87.68665662612254,41.88956024742415],[-87.6866439595221,41.889269388246106],[-87.68663081620876,41.88903588898921],[-87.68662081300575,41.88890616720806],[-87.68662242195055,41.888634936724756],[-87.68662254544674,41.88861413578808],[-87.68662275101445,41.888579517503885],[-87.68662316092531,41.88851051144433],[-87.68662375196509,41.88841087544321],[-87.6867669207391,41.88840778451643],[-87.68723522299697,41.88840287384994],[-87.68738500641173,41.888390338558345],[-87.68745896520157,41.88838560854267],[-87.6875743474488,41.8883701352747],[-87.68771275822402,41.888347244693485],[-87.68785029225307,41.88832023237872],[-87.68798603487713,41.888288749888616],[-87.68805277578124,41.88827128790299],[-87.68820785363216,41.888234425309534],[-87.68836753479837,41.88819621733642],[-87.68846692624273,41.88817310614269],[-87.68867151040175,41.88817459398872],[-87.6896792351128,41.888181917606886],[-87.69157000947973,41.888195634996485],[-87.69158412810118,41.88843617817983],[-87.69158683544408,41.888520985198085],[-87.6916064925942,41.88961084363535],[-87.69162081114453,41.89040469237933],[-87.6916235277291,41.890555296459844],[-87.69164529078715,41.89176185717986],[-87.69164800123534,41.89191212776509],[-87.69170143235283,41.892003795004754],[-87.6916677819235,41.89233237968465],[-87.69226437438702,41.89256901884776],[-87.69248594501504,41.892658181032196],[-87.69279608248664,41.8927817954464],[-87.69321243748904,41.89294774380174],[-87.6936779784899,41.89313447645971],[-87.69402806995575,41.89327479062518],[-87.694165474384,41.89332976303062],[-87.69507997067205,41.893695625978864],[-87.69559169165363,41.893900719515585],[-87.69595803444263,41.89404753928938],[-87.69646185829761,41.89424953955316],[-87.69667111676374,41.89433327437382],[-87.69666554980235,41.894627535286716],[-87.69666968390113,41.894722261660945],[-87.69668528309322,41.89507956614865],[-87.696688756352,41.895197752376994],[-87.69669618065878,41.89545240411217],[-87.69670263372144,41.8956535191163],[-87.6962229431797,41.8956531825713],[-87.6960438806747,41.89565378776976],[-87.69595249193038,41.89565409669424],[-87.69546751074766,41.895657865666685],[-87.69483203500229,41.895662800849415],[-87.69475004544934,41.895663621835745],[-87.6945871525492,41.895665215887504],[-87.6945869703492,41.8956652178927],[-87.69423711525569,41.89566842639944],[-87.6937952377297,41.89567253631201],[-87.69331428397832,41.895677568071335],[-87.6931341785032,41.89567947301908],[-87.69277411170054,41.895683557295044],[-87.6921831483682,41.8956889036569],[-87.69177259280457,41.89570221551961],[-87.69121228009072,41.8956987094525],[-87.69102214619517,41.8957007196649],[-87.69089185150706,41.89570210386623],[-87.69054163967633,41.89570499258531],[-87.69012079118937,41.89570846265192],[-87.68975110881333,41.895711715201145],[-87.68960042988942,41.8957130111349],[-87.68930746908606,41.89571619999723],[-87.68850054384532,41.895724979303075],[-87.68819962840105,41.89572743323839],[-87.68780276046789,41.895731207903665],[-87.68750734913664,41.89573418959374],[-87.6872502136412,41.89573680464935],[-87.68684259761734,41.89574324659069]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3487580.51351","perimeter":"0.0","tract_cent":"1163629.38142211","census_t_1":"17031243100","tract_numa":"19","tract_comm":"24","objectid":"134","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904052.77300099","census_tra":"243100","tract_ce_3":"41.89235505","tract_crea":"","tract_ce_2":"-87.67450679","shape_len":"7901.98968555"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67645602120706,41.888727013323404],[-87.67684594636304,41.88872043378143],[-87.67685069460308,41.88890111463563],[-87.67685857466533,41.88922547416114],[-87.67686503629302,41.889491126235264],[-87.67687398570074,41.889726406631766],[-87.67688448221125,41.890002352344425],[-87.67689038388653,41.89017922498124],[-87.67689674245723,41.8904112687992],[-87.67690062589593,41.89059220947481],[-87.67690874660296,41.890823903029705],[-87.6769185898316,41.8911047442461],[-87.67692058255687,41.89119055926081],[-87.67692418756005,41.891350742530804],[-87.67692885921683,41.89154768742713],[-87.67693519363064,41.89181471929182],[-87.67693776103475,41.8919032744115],[-87.67694491351389,41.892149599605865],[-87.67694842813269,41.89226965275991],[-87.67695525368813,41.89250278725196],[-87.67695874801353,41.89262070004968],[-87.67696167175404,41.89272026598625],[-87.67696542019371,41.8928479066412],[-87.67697414029615,41.89317312831587],[-87.67698043750595,41.89340798176085],[-87.67698677433977,41.89362565922754],[-87.6769966317518,41.89396433166051],[-87.67700048717137,41.894093551933864],[-87.67700674959596,41.89430344024899],[-87.67701004451816,41.894440808250046],[-87.67701154733268,41.894502095972705],[-87.67701602504955,41.89468178662015],[-87.67701821377273,41.894799884006815],[-87.67701943199754,41.89486561521727],[-87.67702388044134,41.89499349500545],[-87.67703094542922,41.895205581892675],[-87.6770377098861,41.89540863988112],[-87.67704109658608,41.89551911484155],[-87.677044719448,41.895638811791],[-87.67704621333081,41.89569215103714],[-87.67705236078739,41.89591164182322],[-87.67668975918147,41.8959187805467],[-87.676455240208,41.89592221425197],[-87.67643937038875,41.89592245524983],[-87.67583194567507,41.895931674602984],[-87.6754915159328,41.89593684016546],[-87.67524435837362,41.895940528303186],[-87.67522051731179,41.895940885635156],[-87.67500983843549,41.89594404137766],[-87.67461111340924,41.895950768855414],[-87.67410913635037,41.895959236505874],[-87.67368953512756,41.89596615734807],[-87.67325685561863,41.89597330334822],[-87.67292255606256,41.89597879071264],[-87.67256349568144,41.89598473836114],[-87.67217312868338,41.89599183477372],[-87.67216239784831,41.89578591478953],[-87.67215436125394,41.895523618682724],[-87.6721491631131,41.89535263313237],[-87.67214166001904,41.89507586943286],[-87.67213799978329,41.894940850756505],[-87.67213646679804,41.89488496923204],[-87.67213016589159,41.89468751242347],[-87.6721281530337,41.89462499119205],[-87.6721244912327,41.89451124473723],[-87.67211476235646,41.89417453098332],[-87.67210830537452,41.89395105237628],[-87.67210343619901,41.893717034596634],[-87.67210025896497,41.893566785122474],[-87.67208984266975,41.89326233933445],[-87.67208073008173,41.892995980653],[-87.67207405709128,41.892770530391076],[-87.6720697011546,41.89262311192258],[-87.67206316571578,41.892349970568816],[-87.67205887107039,41.89217044236584],[-87.67205319880141,41.8919638510366],[-87.67204995226668,41.89184582974641],[-87.67204390335941,41.89162754549891],[-87.67203967702596,41.89147469442557],[-87.67203706959192,41.8913856565315],[-87.67203435428178,41.89129233645106],[-87.6720302473336,41.89114977695749],[-87.67202202599127,41.890903482882244],[-87.67201498420616,41.890692526039985],[-87.67200987485762,41.890526271100946],[-87.67200221285329,41.890278566111895],[-87.67199649632714,41.89009217179649],[-87.67199346994978,41.889993910543794],[-87.6719888742641,41.88980581603034],[-87.67198045488473,41.88946117840392],[-87.67197733402321,41.88934790532217],[-87.67197238492295,41.88916826650359],[-87.67196912123465,41.88905032765751],[-87.67196076779244,41.88879978875921],[-87.67211292451134,41.88879541989812],[-87.67235154679287,41.88879048186372],[-87.67248239256016,41.888787749730525],[-87.67257282784202,41.88878618230446],[-87.67278550868988,41.88878249585885],[-87.67298260738536,41.88877981491875],[-87.67317122148,41.88877722207719],[-87.67336262684745,41.888774617524966],[-87.6736090926149,41.888771203843945],[-87.67383895529657,41.888768078479174],[-87.67402742244526,41.8887654833872],[-87.67424865361566,41.88876244485829],[-87.67440143440548,41.88875993741628],[-87.67465873039434,41.88875571424958],[-87.67489700385174,41.88875252523872],[-87.67529050264889,41.88874720665249],[-87.67538703560858,41.8887454762864],[-87.67573364495482,41.8887392621103],[-87.67616873849462,41.88873187353129],[-87.6762725309072,41.888730117278364],[-87.67645602120706,41.888727013323404]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7088006.73432","perimeter":"0.0","tract_cent":"1169610.95760565","census_t_1":"17031243500","tract_numa":"80","tract_comm":"24","objectid":"135","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904209.90965099","census_tra":"243500","tract_ce_3":"41.89265811","tract_crea":"","tract_ce_2":"-87.65253448","shape_len":"10556.2713577"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64950298396897,41.88901767317603],[-87.64963323769028,41.88901548496245],[-87.64990133499134,41.88901823230376],[-87.64996153371418,41.88901884906004],[-87.65002296813161,41.889019478626],[-87.65020320422383,41.8890174499534],[-87.65044672688411,41.889014699660244],[-87.65057697261688,41.88901322383096],[-87.65072315978264,41.889011595632624],[-87.65090302853326,41.889009536235505],[-87.65107191471645,41.88900765087997],[-87.65114445737773,41.88900685599341],[-87.65127848622852,41.88900534531069],[-87.65144399323205,41.88900352907425],[-87.65170804734674,41.88900065103678],[-87.65197169638074,41.88899777026298],[-87.65223573981832,41.888993991661096],[-87.65248417561455,41.88899043660262],[-87.65279689886327,41.88898680151807],[-87.65332975547312,41.88897651129192],[-87.65339980590656,41.88897716564691],[-87.65383505453612,41.88898123118376],[-87.6541477752461,41.88897789454574],[-87.65456722132768,41.88897805428951],[-87.65485717140908,41.888978163731814],[-87.65507134951864,41.888975394907064],[-87.65541739241107,41.888970906940635],[-87.65573627148723,41.8889642079799],[-87.65599459614398,41.888958780511324],[-87.65638973695472,41.88895468896765],[-87.65675226262552,41.8889508978734],[-87.65697434802493,41.888948374061975],[-87.6570617680592,41.88904690330237],[-87.65734784317982,41.88938932872067],[-87.65734625864583,41.889460406467855],[-87.65734724931977,41.88951623014616],[-87.65734938526806,41.88964804857647],[-87.65735112944886,41.889716006229904],[-87.65735288244026,41.88978344197991],[-87.65735435360568,41.889840022326204],[-87.65735797674684,41.889988584976685],[-87.65736217561728,41.890162696318555],[-87.65736628220873,41.89030964709562],[-87.65737321147905,41.890554638728645],[-87.65737666499986,41.8906764484158],[-87.65738029575454,41.890805833244954],[-87.65738639149181,41.891080461029716],[-87.65739170016691,41.89131959456713],[-87.65739371908641,41.89139633538355],[-87.65739614411375,41.89149956077308],[-87.65739780050193,41.891570069755595],[-87.6574005557403,41.891691930195464],[-87.65740341279907,41.89182325858269],[-87.65740594881336,41.89193982161976],[-87.65740851098396,41.89204516059628],[-87.6574122585308,41.89217619289936],[-87.65741475735693,41.892263539444905],[-87.65741634686933,41.89231910948536],[-87.65741840951743,41.892409159829725],[-87.65742140477396,41.89253766162456],[-87.65742276184088,41.89259587601478],[-87.65742833337764,41.89283486366999],[-87.65743030948211,41.892919643186524],[-87.65743379643325,41.89306919864347],[-87.65743632934637,41.893177841489965],[-87.6574391982664,41.89330091277361],[-87.65744115624312,41.89339741172104],[-87.65744375446708,41.89349770175854],[-87.65745031906411,41.89375106075907],[-87.65745392068187,41.89391806885161],[-87.65745683035675,41.89405312993536],[-87.65746085317865,41.89423937760658],[-87.65746509231217,41.89440803625416],[-87.65746674985617,41.894473986753795],[-87.65746988392844,41.89459870638708],[-87.65747231155743,41.894688951214505],[-87.65747421295401,41.894759434431464],[-87.65747244880377,41.89484663592395],[-87.65748742777875,41.89492972300308],[-87.65754786473961,41.89504074061711],[-87.65760394236693,41.89510075778322],[-87.65760645590574,41.895427788267426],[-87.65760673788188,41.895464454036684],[-87.65756041054996,41.89565017320569],[-87.65751274527486,41.895841254124605],[-87.65751044535473,41.89622794915963],[-87.65691049827232,41.89623821642058],[-87.65650543356294,41.89624555086528],[-87.6563112397023,41.896249178623265],[-87.65619500258627,41.89625134946709],[-87.65593775437186,41.896257379186196],[-87.65573469617475,41.89626213617003],[-87.65545334373004,41.896266462195705],[-87.65523592939086,41.89626980479018],[-87.65495184960268,41.89627417165956],[-87.65487373807979,41.89627521869307],[-87.65472036973465,41.89627727431155],[-87.65461182074404,41.89627872910646],[-87.65451719629154,41.896279997451266],[-87.65416321418853,41.89628474057061],[-87.65394626024592,41.8962871893735],[-87.65360557153684,41.89629251298792],[-87.65314122191646,41.896299767281185],[-87.65292329455879,41.896303909811984],[-87.65276006726052,41.89630673425227],[-87.65263457980096,41.8963089051199],[-87.65235622298634,41.89631372045681],[-87.65215424047469,41.896317517278526],[-87.651841678952,41.89632326732193],[-87.65142559145926,41.896330920458226],[-87.65117691568655,41.89633553624377],[-87.6510664465064,41.896337555588275],[-87.65095917286826,41.89633953838187],[-87.65082183140404,41.89634139396238],[-87.65081344359088,41.8963415073911],[-87.6507894285041,41.896341831996416],[-87.65075007452143,41.89634236344536],[-87.65064862067486,41.89634373400012],[-87.6505032958923,41.89634489931257],[-87.65037303930032,41.896345823378375],[-87.65005204011122,41.89635058230789],[-87.64980264264454,41.896353937255306],[-87.64963905995901,41.896356137415346],[-87.64946061531855,41.89636045355451],[-87.6492110422871,41.89636648619262],[-87.64892509854505,41.89637671974415],[-87.6487691563551,41.89638229405854],[-87.64852636020959,41.89639692762532],[-87.64824433314534,41.896404239370156],[-87.64784838733358,41.89621205134538],[-87.64773612472854,41.89617468192649],[-87.64773313966471,41.89609027169697],[-87.64773169540878,41.89604734787998],[-87.64772697672711,41.89590713065628],[-87.64772687278351,41.89590403975084],[-87.64771863612931,41.8956576407226],[-87.64771580864003,41.89555901655393],[-87.64771039662536,41.89537026966133],[-87.6477134357753,41.89515689621882],[-87.64771511765147,41.89503879402599],[-87.64771823019092,41.89485423522459],[-87.64771832411986,41.89479764961597],[-87.64771368778024,41.894533736085805],[-87.64770133259194,41.89414354153634],[-87.64769153079824,41.8938890373118],[-87.64769104225998,41.893876301132565],[-87.64767416752849,41.893521230767064],[-87.64767299344572,41.89349652808692],[-87.64767378598347,41.89337534755334],[-87.64772997056755,41.893375047170075],[-87.64767414810245,41.89331995892172],[-87.64767460633634,41.893212383417485],[-87.64765902848909,41.89312638423136],[-87.64763704164776,41.89303931548824],[-87.64762555389132,41.89296987255623],[-87.64761920344927,41.8928870958598],[-87.64761698956517,41.892740430557744],[-87.6476141303889,41.892574466111235],[-87.64761098500549,41.8924952486146],[-87.64760571814456,41.892362609260175],[-87.64760300345301,41.89229422145015],[-87.64760100642646,41.89224392959044],[-87.64759752743974,41.89215631272746],[-87.64759653805304,41.89199818407643],[-87.64764056985805,41.89175481350919],[-87.64762762370546,41.89159167354757],[-87.64762326444661,41.8914291885874],[-87.64761684607261,41.891185510979895],[-87.64762774351185,41.89093832588989],[-87.64761302760841,41.890669357478494],[-87.64760450430201,41.8902438397404],[-87.64760893647009,41.89008570883411],[-87.64761186793596,41.889981150236736],[-87.64761109940198,41.88995558744825],[-87.64761041535718,41.88993283883284],[-87.64760893239932,41.88988352203221],[-87.64760488047278,41.88974876500853],[-87.64760208018885,41.88965562745793],[-87.64759169813593,41.8893103398411],[-87.64759155018092,41.889305424573095],[-87.64758261746204,41.88904951670024],[-87.64762203545058,41.88904907425314],[-87.64768806977582,41.889048332698565],[-87.64779631286483,41.889047117235975],[-87.64796123062182,41.88904526545506],[-87.64825032804814,41.88904201821236],[-87.6482647748553,41.88904185604371],[-87.64841244840284,41.88904019684449],[-87.64857455001646,41.889038375684784],[-87.64872492087217,41.88903339901367],[-87.64888297383634,41.88902816716431],[-87.64916019499852,41.889023479938736],[-87.6493392300614,41.88902043009805],[-87.64950298396897,41.88901767317603]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4070711.94687","perimeter":"0.0","tract_cent":"1171728.75931812","census_t_1":"17031243600","tract_numa":"36","tract_comm":"24","objectid":"136","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903980.71479767","census_tra":"243600","tract_ce_3":"41.89198281","tract_crea":"","tract_ce_2":"-87.64476346","shape_len":"9366.59727817"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64422160387812,41.89645465928546],[-87.64419243978605,41.89593370451757],[-87.64417347717685,41.895477785935405],[-87.64414429936375,41.89477625526052],[-87.64413896535774,41.8946757295653],[-87.64413724697425,41.89464308725583],[-87.64413195020265,41.89454248219861],[-87.6441280696988,41.89446951681373],[-87.64412616437114,41.894433800109866],[-87.64412541022858,41.89441966550693],[-87.64412129712834,41.894347906463054],[-87.64411665253296,41.89427430586374],[-87.64407483890285,41.89413912047984],[-87.64405849746716,41.894118385729875],[-87.64404005474604,41.89409492156966],[-87.64397693365154,41.89402168316754],[-87.64381128744996,41.893919151882706],[-87.64378764455526,41.893894311780464],[-87.64377722154933,41.89388332712827],[-87.64373119746696,41.893818725830265],[-87.6436964989384,41.893759708446616],[-87.6436731997799,41.893719996617975],[-87.6436558137983,41.893690473976626],[-87.64364730191964,41.893675999692206],[-87.64362706733235,41.893641591111724],[-87.64355315304007,41.89353725032098],[-87.64349508118292,41.893506934409885],[-87.64342287664036,41.893472417206425],[-87.64336522317238,41.89344418936363],[-87.64327098089329,41.89340295375555],[-87.64321544010052,41.89337630247383],[-87.64294310922915,41.89321503322908],[-87.64289247136821,41.89317312613838],[-87.642804579243,41.893105034523636],[-87.64271570752909,41.89303583925478],[-87.64257330904354,41.89294403874097],[-87.64245012719753,41.89286862699489],[-87.64228411703206,41.89273565770813],[-87.64213097203645,41.892594944539226],[-87.64207460725277,41.892539295145696],[-87.64203770104434,41.892502856448736],[-87.6419967201942,41.89245487948489],[-87.6419266617645,41.89237285969915],[-87.64190571319165,41.892353625713966],[-87.64180208684192,41.89225652090566],[-87.64173954242604,41.89219154488595],[-87.64157415756709,41.892048506974334],[-87.64150556017096,41.89196933409399],[-87.64145693720815,41.891904222248584],[-87.64139702169768,41.89181692378001],[-87.64133359828237,41.8917246096269],[-87.64126742859817,41.89162810764478],[-87.64119165541362,41.89143456635965],[-87.641178097946,41.8914127530211],[-87.64116075393856,41.89138484660225],[-87.6410920109446,41.89126821373625],[-87.64103723856908,41.891184294046255],[-87.64093914766914,41.891044130685195],[-87.64086337058866,41.89093618194316],[-87.64068444441929,41.890666722362106],[-87.64066876156893,41.89064310360472],[-87.64041394816594,41.89033744980304],[-87.64029904578553,41.89020349618598],[-87.64020324745537,41.89009279169616],[-87.64012224895971,41.88999919074704],[-87.63999929572181,41.889862636082114],[-87.6399898635334,41.88985252424213],[-87.63987549426145,41.88972991809559],[-87.63978968497146,41.88963637018358],[-87.63971711756008,41.889554537762784],[-87.63964050079603,41.88946680816248],[-87.63959663491038,41.88941725663671],[-87.63954065418703,41.8893536911664],[-87.63943528455961,41.889228301402],[-87.63936098293495,41.88908028505862],[-87.63949130697476,41.88907079126144],[-87.63970201845457,41.8890552785039],[-87.63982844587352,41.8890476082094],[-87.63997325240052,41.8890479889292],[-87.64023828808469,41.889047659937795],[-87.64025615862896,41.8890474187272],[-87.64035397414104,41.889046142955166],[-87.64046898008453,41.88904458662625],[-87.6405352431185,41.88904372405584],[-87.64063233979192,41.889040961820655],[-87.64067598852421,41.88904270699471],[-87.6408126763537,41.889077230634555],[-87.6409747019319,41.88907472243466],[-87.64110413644076,41.88906966464148],[-87.64110578980993,41.88906959996464],[-87.64114560586273,41.889068043862885],[-87.64128155314664,41.889062731492416],[-87.64139249009692,41.88905839642149],[-87.64154208166974,41.889052550422015],[-87.64158920448297,41.88905070887458],[-87.64191928163972,41.889055550713664],[-87.64196243880109,41.889055204896074],[-87.64236590050399,41.889052750405575],[-87.64267585527773,41.889050526065866],[-87.64287448568341,41.88904902731883],[-87.64311506059406,41.88904721173551],[-87.6436862181424,41.889040846029346],[-87.64402811077206,41.88903647750807],[-87.64433392525805,41.88903357345532],[-87.64433297239994,41.88899534706612],[-87.64433118185026,41.888923522589316],[-87.64433058438101,41.88889955904774],[-87.64432709723464,41.88875967657476],[-87.64432225746903,41.888582201971445],[-87.64577708230439,41.888574784669046],[-87.64756583721159,41.88856752795856],[-87.64758261746204,41.88904951670024],[-87.64759155018092,41.889305424573095],[-87.64759169813593,41.8893103398411],[-87.64760208018885,41.88965562745793],[-87.64760488047278,41.88974876500853],[-87.64760893239932,41.88988352203221],[-87.64761041535718,41.88993283883284],[-87.64761109940198,41.88995558744825],[-87.64761186793596,41.889981150236736],[-87.64760893647009,41.89008570883411],[-87.64760450430201,41.8902438397404],[-87.64761302760841,41.890669357478494],[-87.64762774351185,41.89093832588989],[-87.64761684607261,41.891185510979895],[-87.64762326444661,41.8914291885874],[-87.64762762370546,41.89159167354757],[-87.64764056985805,41.89175481350919],[-87.64759653805304,41.89199818407643],[-87.64759752743974,41.89215631272746],[-87.64760100642646,41.89224392959044],[-87.64760300345301,41.89229422145015],[-87.64760571814456,41.892362609260175],[-87.64761098500549,41.8924952486146],[-87.6476141303889,41.892574466111235],[-87.64761698956517,41.892740430557744],[-87.64761920344927,41.8928870958598],[-87.64762555389132,41.89296987255623],[-87.64763704164776,41.89303931548824],[-87.64765902848909,41.89312638423136],[-87.64767460633634,41.893212383417485],[-87.64767414810245,41.89331995892172],[-87.64772997056755,41.893375047170075],[-87.64767378598347,41.89337534755334],[-87.64767299344572,41.89349652808692],[-87.64767416752849,41.893521230767064],[-87.64769104225998,41.893876301132565],[-87.64769153079824,41.8938890373118],[-87.64770133259194,41.89414354153634],[-87.64771368778024,41.894533736085805],[-87.64771832411986,41.89479764961597],[-87.64771823019092,41.89485423522459],[-87.64771511765147,41.89503879402599],[-87.6477134357753,41.89515689621882],[-87.64771039662536,41.89537026966133],[-87.64771580864003,41.89555901655393],[-87.64771863612931,41.8956576407226],[-87.64772687278351,41.89590403975084],[-87.64772697672711,41.89590713065628],[-87.64773169540878,41.89604734787998],[-87.64773313966471,41.89609027169697],[-87.64773612472854,41.89617468192649],[-87.64774503316107,41.896399010853905],[-87.64742822628858,41.89638760197067],[-87.64732538031613,41.89638934217357],[-87.64708179758088,41.89639346304939],[-87.64681201693891,41.89640691635816],[-87.64679342845174,41.89640791581907],[-87.64664850996616,41.89641570820741],[-87.64652196798697,41.896419726405796],[-87.64633983380038,41.89642212210415],[-87.64617437671022,41.89642437032905],[-87.64607714409574,41.896425771159855],[-87.64604249478087,41.89642627042506],[-87.6459111270361,41.896428173447646],[-87.64572842688531,41.89643196434852],[-87.64559399275088,41.896435522631144],[-87.64546291674247,41.89643761898461],[-87.6453147217043,41.89643996937219],[-87.64516467730134,41.896443515949585],[-87.64503230842679,41.896446290122626],[-87.64477195777485,41.89645032754457],[-87.64475546872242,41.896450064017536],[-87.64462423961984,41.89644927704753],[-87.64452050120508,41.896450274204504],[-87.64442734549995,41.896451169553046],[-87.64422160387812,41.89645465928546]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1302190.81937","perimeter":"0.0","tract_cent":"1162220.24254353","census_t_1":"17031240400","tract_numa":"7","tract_comm":"24","objectid":"137","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911626.94555975","census_tra":"240400","tract_ce_3":"41.91316873","tract_crea":"","tract_ce_2":"-87.67946994","shape_len":"5004.46616788"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67750553148015,41.910538849893115],[-87.67758604859891,41.910472744553736],[-87.67792161425531,41.91067352880497],[-87.67839359775903,41.910978498913835],[-87.67846403796246,41.91102402186236],[-87.67899682687529,41.91136887457735],[-87.67920605149664,41.91150489977686],[-87.67934639152774,41.911596139958824],[-87.67972472905612,41.91184104907891],[-87.67984606516463,41.911919237032755],[-87.68009818980185,41.91208170253821],[-87.68035816728275,41.91224780818373],[-87.68054022426605,41.91236412791608],[-87.6810944144777,41.91272465175325],[-87.6813858049451,41.91291421060183],[-87.68173130371967,41.91313831717763],[-87.68184929813303,41.91321462153151],[-87.68213732848096,41.91340088333651],[-87.68241950807375,41.91358223667296],[-87.68242660767844,41.91385043679271],[-87.68243036399255,41.91399489515477],[-87.68243122892305,41.91402815573666],[-87.68243327675863,41.914106882293716],[-87.68244142855444,41.91442033274716],[-87.68244686307015,41.91461915556913],[-87.68192433994925,41.914630050013216],[-87.68134793969898,41.91464206454694],[-87.68126846301108,41.91464371642554],[-87.68053215951801,41.914659016278605],[-87.6803585599558,41.91466262277521],[-87.68001388419562,41.91467004527602],[-87.67974261337599,41.91467588569089],[-87.67949085616972,41.914680473796636],[-87.67858947452731,41.914696895718755],[-87.6784264624791,41.91469984177344],[-87.67808085119864,41.91470612059128],[-87.67755510272004,41.91471571851387],[-87.67755172647401,41.91445700070643],[-87.6775465614986,41.91423028219122],[-87.67754520615992,41.914170810833],[-87.67754179563619,41.914016116681736],[-87.6775382004689,41.91382720504047],[-87.67753510980535,41.913664811299476],[-87.67752895005245,41.91335852003841],[-87.67752251571594,41.913075251285136],[-87.6775188197335,41.912912524757935],[-87.67751068867298,41.91253682060661],[-87.67750625947302,41.91230740644308],[-87.67750286162179,41.91213142558998],[-87.67749904340695,41.91197651939557],[-87.67749777012425,41.91192486569852],[-87.67749346462944,41.91175019825254],[-87.67748901883546,41.91157075503784],[-87.67748314739771,41.91133326318626],[-87.6774744301776,41.91096288048914],[-87.67747270145514,41.91088943388687],[-87.67746993756097,41.91064622431244],[-87.67746629345153,41.91058209468321],[-87.67750553148015,41.910538849893115]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2509349.84907","perimeter":"0.0","tract_cent":"1161087.72667346","census_t_1":"17031240500","tract_numa":"20","tract_comm":"24","objectid":"138","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911182.3354545","census_tra":"240500","tract_ce_3":"41.9119723","tract_crea":"","tract_ce_2":"-87.68364292","shape_len":"7096.42373083"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6869415458578,41.91032553733003],[-87.6872206970524,41.91032086664096],[-87.68722482228682,41.91046146177373],[-87.68723422395449,41.91082114628522],[-87.68724836928153,41.91138343665243],[-87.68726520208247,41.91199489126952],[-87.6872683811174,41.912132203052295],[-87.68727032049964,41.91221596790432],[-87.68727418316192,41.912401307574726],[-87.68727870681411,41.91256820972478],[-87.68728269754213,41.912715460177026],[-87.68729144540616,41.91301386191544],[-87.68730114126363,41.913356671174455],[-87.68730411405839,41.91347855891281],[-87.68730753555056,41.91361883606719],[-87.68731300836131,41.91387561569954],[-87.68731350970874,41.91389913053843],[-87.6873147364694,41.913956694382016],[-87.6873155488048,41.91399480259249],[-87.68713642473904,41.9139988273363],[-87.68662172306477,41.914006714468535],[-87.68603900933942,41.914015148956395],[-87.68551714655165,41.9140226889026],[-87.68494214347572,41.91403157295873],[-87.68468221479863,41.914035070879],[-87.68429575560185,41.914040270203664],[-87.6840383496464,41.91404440139592],[-87.68392274342501,41.91404625668134],[-87.68315485379654,41.91405856926343],[-87.68312066227693,41.91403603652461],[-87.68303391771376,41.913978870353326],[-87.68273210340189,41.91378350062508],[-87.68265346290805,41.913732595489144],[-87.68241950807375,41.91358223667296],[-87.68213732848096,41.91340088333651],[-87.68184929813303,41.91321462153151],[-87.68173130371967,41.91313831717763],[-87.6813858049451,41.91291421060183],[-87.6810944144777,41.91272465175325],[-87.68054022426605,41.91236412791608],[-87.68035816728275,41.91224780818373],[-87.68009818980185,41.91208170253821],[-87.67984606516463,41.911919237032755],[-87.67972472905612,41.91184104907891],[-87.67934639152774,41.911596139958824],[-87.67920605149664,41.91150489977686],[-87.67899682687529,41.91136887457735],[-87.67846403796246,41.91102402186236],[-87.67839359775903,41.910978498913835],[-87.67792161425531,41.91067352880497],[-87.67758604859891,41.910472744553736],[-87.67813372567585,41.910473943601325],[-87.67817539134008,41.910473117122734],[-87.67839842899282,41.91046869134321],[-87.67852206052446,41.91046623562035],[-87.67873631886607,41.91046198085339],[-87.67920508565199,41.910452673622395],[-87.67920758399706,41.91045262391386],[-87.67968153090804,41.91044319331365],[-87.67990665810129,41.91044005778037],[-87.67998606158439,41.910438951698325],[-87.68009555690404,41.91043742646923],[-87.68057832365339,41.910427713033435],[-87.6813963593023,41.910411229783044],[-87.68164068195101,41.91040629917561],[-87.68218066216373,41.910395400132145],[-87.68234657785219,41.9103934723242],[-87.68267429917955,41.91038966377554],[-87.68339077019374,41.91037868295842],[-87.68356448615508,41.91037616773969],[-87.68382684397986,41.91037236883404],[-87.68458972996646,41.9103599141988],[-87.68478216827903,41.91035748205583],[-87.68499338811195,41.91035481205817],[-87.68583550575461,41.910339942473755],[-87.68599733912748,41.910338241583794],[-87.68636400482521,41.91033438682973],[-87.6869415458578,41.91032553733003]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2230091.60142","perimeter":"0.0","tract_cent":"1158134.09363869","census_t_1":"17031241000","tract_numa":"10","tract_comm":"24","objectid":"139","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909699.895263","census_tra":"241000","tract_ce_3":"41.90796525","tract_crea":"","tract_ce_2":"-87.69453428","shape_len":"6000.5742098"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69616518236406,41.90567036284557],[-87.69694675144575,41.90566394751577],[-87.6969490679824,41.905769778328434],[-87.69695707283998,41.906099350412475],[-87.6969665319504,41.90647854629835],[-87.69696911667911,41.906578313274885],[-87.69696955619096,41.90659527727547],[-87.69697370209809,41.90675531464438],[-87.69698576260971,41.90724989251078],[-87.69699724945757,41.907739362879695],[-87.69700797306709,41.90817992673081],[-87.69701154396944,41.90832811154164],[-87.69701318510623,41.90839620534874],[-87.69701754692785,41.90857720761252],[-87.69702325791083,41.908802623161336],[-87.69703240111944,41.90919004981534],[-87.69703795478183,41.90941137556047],[-87.69704670092608,41.90974775723801],[-87.69704643840033,41.91006273884485],[-87.69703838131575,41.91017035539403],[-87.69703486320991,41.91021734158909],[-87.69689179988008,41.91021860444488],[-87.69575975224437,41.91023035182784],[-87.69526676662156,41.910235464203794],[-87.6945414100551,41.91024259594498],[-87.69364060501555,41.91025144615932],[-87.69332226729047,41.91025436026805],[-87.69211065638703,41.91026544294895],[-87.69211542576728,41.91012400274731],[-87.69210459417187,41.909770073458354],[-87.69209753063265,41.90942692230759],[-87.69209423128073,41.90928672873826],[-87.69208314711902,41.90877514178943],[-87.6920775304328,41.908525412636806],[-87.6920759143172,41.908442054658266],[-87.69207435630211,41.908361701389715],[-87.69206695836303,41.908051067728955],[-87.6920579344583,41.907638613899074],[-87.6920474068343,41.907189214252305],[-87.69203663506894,41.9067091601105],[-87.69203932646182,41.906621457889784],[-87.69204203210927,41.90653328483667],[-87.69203324319277,41.90616998172342],[-87.69203200160659,41.906118657330424],[-87.69202452229023,41.90580884636322],[-87.69202172946804,41.90571195955694],[-87.69335028562489,41.90569747244376],[-87.69423522792029,41.905688240848086],[-87.69448554420681,41.905685957287176],[-87.69465517334658,41.90568440966566],[-87.69545532765956,41.905677105113696],[-87.69616518236406,41.90567036284557]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3488423.15244","perimeter":"0.0","tract_cent":"1178728.67033301","census_t_1":"17031350200","tract_numa":"8","tract_comm":"35","objectid":"557","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885843.07045413","census_tra":"350200","tract_ce_3":"41.84205503","tract_crea":"","tract_ce_2":"-87.61960997","shape_len":"7930.66395516"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62178550865137,41.83836659719321],[-87.62192481649144,41.83836465960935],[-87.62190632650349,41.83880291487003],[-87.62192649174511,41.839694433876694],[-87.62192787995045,41.83975580114297],[-87.62194027674765,41.84030335806232],[-87.62197808081184,41.84199272040815],[-87.62204193791277,41.84246646538826],[-87.62207947408383,41.84274219384043],[-87.62208845316353,41.843266977191504],[-87.62210581935621,41.84428193771852],[-87.62210969231373,41.84450827088522],[-87.62211438568414,41.844782574930626],[-87.62212013987565,41.84499930576427],[-87.62212842221041,41.845311261013045],[-87.62213772958516,41.84566047096398],[-87.62048133129089,41.845684964133085],[-87.62033059867882,41.84568719208082],[-87.61886420373011,41.84571019884057],[-87.61783987811785,41.84572625879267],[-87.61767140559559,41.84572320337666],[-87.61729852316135,41.84566818215143],[-87.61726388163397,41.8443596639121],[-87.61723667835135,41.843332088388294],[-87.61720331379182,41.842071736315916],[-87.61715575257203,41.84027504575574],[-87.61714122025214,41.83972605353773],[-87.61713922535927,41.83955172562726],[-87.61713677585682,41.839469442889275],[-87.61713677590272,41.839469438773165],[-87.61711573207707,41.8387624942019],[-87.6171279380285,41.83866174614183],[-87.61712560974698,41.8385743543317],[-87.61712315165299,41.83842333792295],[-87.61746697964885,41.83841932025923],[-87.61793414658095,41.83841385935757],[-87.61826869239094,41.838409177740516],[-87.61854755939086,41.83840527435522],[-87.61888069794823,41.838401732866515],[-87.61948226904754,41.838395335422476],[-87.61981749919052,41.83839176524701],[-87.61999403817235,41.83838939031444],[-87.61999593275563,41.83838936475907],[-87.62016309937941,41.83838711577227],[-87.6204761991181,41.8383829024135],[-87.62063596329922,41.838380875183965],[-87.62101322532179,41.83837608069382],[-87.62128782928414,41.838372708984615],[-87.62178550865137,41.83836659719321]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3263725.13801","perimeter":"0.0","tract_cent":"1164554.05371859","census_t_1":"17031241500","tract_numa":"19","tract_comm":"24","objectid":"140","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909899.24943482","census_tra":"241500","tract_ce_3":"41.90837867","tract_crea":"","tract_ce_2":"-87.67094508","shape_len":"8717.35416863"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66752020172403,41.90427563713363],[-87.66751311917221,41.90401719268719],[-87.66783840548334,41.90422693292948],[-87.66799647682973,41.90432933041545],[-87.66814958872746,41.9044282963783],[-87.66837123044681,41.90457151185818],[-87.66862335340615,41.90473334460819],[-87.66864509340255,41.904747242662836],[-87.66885701883113,41.90488272094503],[-87.66896138361193,41.90495000969521],[-87.66913347677654,41.90506093924755],[-87.6692669257777,41.90514694696358],[-87.66933980511112,41.90519340072857],[-87.66945751001984,41.90526734079784],[-87.66985679815812,41.90551813889106],[-87.66999125960915,41.90560241368804],[-87.67041070383812,41.90586530019485],[-87.67059896283122,41.90598716086203],[-87.67080561466051,41.90612092699516],[-87.67112633554692,41.9063254386235],[-87.6713624462096,41.90647653441896],[-87.6715126322102,41.906572643391804],[-87.67189418957514,41.90681660880233],[-87.67226983798115,41.90705675187998],[-87.6724866274092,41.907194840067056],[-87.67266721000493,41.90730986501371],[-87.67288188833703,41.90744660688202],[-87.67313783596066,41.90761020797771],[-87.67340626746444,41.907781783636246],[-87.67367933820874,41.90795555764969],[-87.67382672111982,41.90804934698792],[-87.67428140391421,41.90833963512748],[-87.67466434918671,41.90858285858524],[-87.67481360702836,41.90867987254788],[-87.67492039392876,41.90874865163091],[-87.67511061922048,41.90887029632565],[-87.67526419804004,41.90896884379613],[-87.67536587866276,41.90903408058194],[-87.67569968755454,41.90924762800645],[-87.67584788626964,41.90934243669669],[-87.67663444584693,41.909845622002564],[-87.67701549291121,41.910089402739025],[-87.67758604859891,41.910472744553736],[-87.6771913635302,41.91049062656362],[-87.6768571718713,41.910496218909614],[-87.67645426659199,41.91050296002903],[-87.67634146288485,41.910504619826234],[-87.67624534094233,41.91050602947468],[-87.67589634725853,41.910511155615886],[-87.67563642322315,41.91051476263318],[-87.67532241261858,41.91051911950641],[-87.67501822696697,41.91052404282432],[-87.67484411005039,41.910526860594175],[-87.6744155699232,41.910532807046906],[-87.67396399113498,41.9105390713088],[-87.67379939445925,41.91054160873743],[-87.6734439139163,41.910547088078445],[-87.67319849523265,41.91055131601792],[-87.67267590910173,41.91056031707812],[-87.672575952913,41.910561306424746],[-87.67233744074137,41.91056366584844],[-87.67206317929292,41.91056811473242],[-87.6715682676895,41.910576139771145],[-87.67135676935169,41.910579262606674],[-87.67104290226533,41.91058389592328],[-87.67064819722691,41.9105897965114],[-87.67041355005847,41.91059329937839],[-87.67013431908586,41.9105972199051],[-87.66988866560595,41.910600668558594],[-87.66961709495952,41.91060426353634],[-87.66923907898516,41.910609262606336],[-87.66891155243927,41.910613171965544],[-87.66866765243334,41.910616082599375],[-87.66843447655354,41.910619397841664],[-87.66820418203459,41.91062267853221],[-87.66817014144917,41.91062316329084],[-87.6676916188863,41.910630287412374],[-87.66768568695602,41.91039189873062],[-87.66768137127522,41.91021322427205],[-87.66767735137034,41.9100449796009],[-87.66767083243394,41.90986621003208],[-87.66766774599182,41.90978156553596],[-87.66766111108132,41.90959960648937],[-87.66765741492911,41.9094709629364],[-87.66765142477216,41.90926255871391],[-87.6676483631335,41.909111635945486],[-87.66764459936513,41.908925856811436],[-87.66764140857069,41.908818448568226],[-87.66763640712368,41.90865006891185],[-87.66762543536582,41.90835777232504],[-87.66761747455229,41.908145679090964],[-87.6676161246612,41.908077559424925],[-87.66761353345586,41.90794862037741],[-87.66760545403572,41.907605242642134],[-87.66760084248764,41.907409250273524],[-87.66759846207964,41.90732367130581],[-87.66759020993682,41.907006687932586],[-87.66758021338859,41.906622688496604],[-87.66757511452134,41.90641689635726],[-87.66756765766254,41.906116304731555],[-87.66756238839174,41.90590216911714],[-87.66755238423312,41.9055037582208],[-87.66754680568341,41.90529818307264],[-87.66754040320963,41.90505629446071],[-87.66753995427247,41.905035437055105],[-87.66753447638106,41.90478068608121],[-87.66752450181201,41.904432522198725],[-87.66752020172403,41.90427563713363]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3106183.41477","perimeter":"0.0","tract_cent":"1166085.3199024","census_t_1":"17031241600","tract_numa":"15","tract_comm":"24","objectid":"141","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909281.43743775","census_tra":"241600","tract_ce_3":"41.90665077","tract_crea":"","tract_ce_2":"-87.66533766","shape_len":"7481.34880212"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6628820356485,41.90805938257525],[-87.66268115534433,41.90768623546837],[-87.66274800013971,41.90768741454617],[-87.66273407521324,41.90735842878113],[-87.66273022768198,41.9072662275535],[-87.66272688592336,41.9070563747113],[-87.66272375481962,41.906859741510154],[-87.66271822303852,41.90668627371591],[-87.66271584479173,41.90661227504495],[-87.66271414938316,41.906559521269386],[-87.66270152635022,41.906163949020325],[-87.66269342957908,41.9059102245827],[-87.6626867267503,41.9057012395457],[-87.66267924528151,41.90546837512603],[-87.66266965708016,41.90520865979212],[-87.66265791970822,41.90488427775735],[-87.66265227914597,41.904703399835874],[-87.66264757462486,41.90455274138605],[-87.66264323986171,41.90443260124293],[-87.66263191342661,41.9041186768185],[-87.66262850446503,41.903995303603146],[-87.66262709114874,41.9039441428315],[-87.66262468201445,41.90385724659366],[-87.66262095753451,41.903722921762224],[-87.66262770600666,41.90340868190614],[-87.66317682300388,41.903399713105195],[-87.66350741802388,41.90339398586329],[-87.66383001745649,41.903388078505934],[-87.66428831703368,41.90337968517065],[-87.66445995437932,41.90337821525604],[-87.66479132690374,41.903375370017336],[-87.66504489874666,41.90337228895711],[-87.6652081788717,41.90337030468754],[-87.6656250792825,41.903365237851496],[-87.66584262833426,41.90336441646916],[-87.66615287961669,41.903361504348645],[-87.66648289693197,41.9033584056844],[-87.66648515006023,41.90335838474039],[-87.66670074852279,41.90335635995571],[-87.66703436647768,41.903353225999055],[-87.66718298740062,41.90335024634229],[-87.6674952601614,41.90334633326628],[-87.66750384091729,41.90363855039047],[-87.66750543540708,41.903720802961665],[-87.6675064951508,41.9037755030648],[-87.66751311917221,41.90401719268719],[-87.66752020172403,41.90427563713363],[-87.66752450181201,41.904432522198725],[-87.66753447638106,41.90478068608121],[-87.66753995427247,41.905035437055105],[-87.66754040320963,41.90505629446071],[-87.66754680568341,41.90529818307264],[-87.66755238423312,41.9055037582208],[-87.66756238839174,41.90590216911714],[-87.66756765766254,41.906116304731555],[-87.66757511452134,41.90641689635726],[-87.66758021338859,41.906622688496604],[-87.66759020993682,41.907006687932586],[-87.66759846207964,41.90732367130581],[-87.66760084248764,41.907409250273524],[-87.66760545403572,41.907605242642134],[-87.66761353345586,41.90794862037741],[-87.6676161246612,41.908077559424925],[-87.66761747455229,41.908145679090964],[-87.66762543536582,41.90835777232504],[-87.66763640712368,41.90865006891185],[-87.66764140857069,41.908818448568226],[-87.66764459936513,41.908925856811436],[-87.6676483631335,41.909111635945486],[-87.66765142477216,41.90926255871391],[-87.66765741492911,41.9094709629364],[-87.66766111108132,41.90959960648937],[-87.66766774599182,41.90978156553596],[-87.66767083243394,41.90986621003208],[-87.66767735137034,41.9100449796009],[-87.66768137127522,41.91021322427205],[-87.66768568695602,41.91039189873062],[-87.6676916188863,41.910630287412374],[-87.66708012830328,41.910639378221205],[-87.6668452611708,41.910642731190975],[-87.66649779866641,41.91064726904479],[-87.66637726192604,41.910648843408005],[-87.6661296102695,41.91065207674843],[-87.66600512634217,41.910653438982656],[-87.66565567738219,41.91065828436719],[-87.6656098255033,41.91062128374803],[-87.66556520918326,41.91057695194816],[-87.66553305630843,41.91052473434561],[-87.6654657336596,41.910417208026686],[-87.66540167197239,41.910328196751344],[-87.66533890254843,41.91024207439922],[-87.6653283146724,41.91022755070807],[-87.66529347817676,41.91017976280363],[-87.66517366977544,41.91008205743298],[-87.6651465194986,41.91004691050218],[-87.66508117088522,41.909961568824414],[-87.66501284321043,41.909876593962075],[-87.66492722116513,41.909773077430984],[-87.66488314596218,41.90972279325492],[-87.66485958433056,41.90969935756991],[-87.6647848269566,41.909625020197254],[-87.66471538388895,41.90955543407156],[-87.66465084965907,41.909494245845664],[-87.6645927708328,41.90944110860828],[-87.66452556667303,41.90938231995973],[-87.66433853398702,41.90923127604294],[-87.66415217982679,41.90907940317324],[-87.66388321532287,41.90889463409434],[-87.6633384642785,41.908520404404506],[-87.6629094139184,41.908134862807394],[-87.6628820356485,41.90805938257525]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1750654.85263","perimeter":"0.0","tract_cent":"1155406.49296001","census_t_1":"17031222600","tract_numa":"11","tract_comm":"22","objectid":"142","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912466.82417232","census_tra":"222600","tract_ce_3":"41.91561324","tract_crea":"","tract_ce_2":"-87.70447958","shape_len":"5300.83839016"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70668041248622,41.913776140952656],[-87.70685659942917,41.91377311030369],[-87.70686706448451,41.91407123294248],[-87.70687269237781,41.91423684316828],[-87.70688760950502,41.91467581084993],[-87.70690477102862,41.9151808202334],[-87.70691573517232,41.915578569606986],[-87.70693428497867,41.916251960944514],[-87.70694128647312,41.91650057976924],[-87.70696396732265,41.91730603490549],[-87.70696743870506,41.91740170013739],[-87.70691118851441,41.91740199152332],[-87.70666188516141,41.917403281568504],[-87.70595550739483,41.91740772143391],[-87.70556080096401,41.91740980812122],[-87.70528386355117,41.91741466938172],[-87.70521003551887,41.91741596532258],[-87.70507446938731,41.91741834467259],[-87.70467078947712,41.91742119862889],[-87.70447501352263,41.917422582133064],[-87.70410315483142,41.917425265334586],[-87.70395120893645,41.91742693175502],[-87.70379349350073,41.91742866129276],[-87.7036126286326,41.917430644285254],[-87.70322985637064,41.917433394058975],[-87.7031903926892,41.91743367721902],[-87.7031274115186,41.917434129317805],[-87.70259265346215,41.91743519967974],[-87.70243823230211,41.91743916635647],[-87.70228022783873,41.917443225097045],[-87.70208884977572,41.91744483808677],[-87.70208678934267,41.917386482240495],[-87.70208285257434,41.91727498916225],[-87.70206954476222,41.916779856653704],[-87.70205720430607,41.916380448718975],[-87.7020444305656,41.915939270912325],[-87.70203744182984,41.915690879631775],[-87.70203502390119,41.9156236595834],[-87.70203067639996,41.91549320322449],[-87.70201625175892,41.91501079764944],[-87.7019966997903,41.91440745329361],[-87.70198050821631,41.913921220409144],[-87.70232820870457,41.91392244477091],[-87.70232710867016,41.9138818282176],[-87.70232540321015,41.91381886370702],[-87.702464991889,41.91381651819882],[-87.70333534029102,41.91380997700128],[-87.70383849939157,41.913804867681876],[-87.70502785966315,41.9137924943103],[-87.70516699773466,41.91378996385293],[-87.70583301145722,41.913784204754],[-87.70599100954492,41.91378266713962],[-87.70668041248622,41.913776140952656]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1198793.93703","perimeter":"0.0","tract_cent":"1152517.57830783","census_t_1":"17031222800","tract_numa":"6","tract_comm":"22","objectid":"143","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912380.83052097","census_tra":"222800","tract_ce_3":"41.9154349","tract_crea":"","tract_ce_2":"-87.71509554","shape_len":"4488.98472277"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7162516799429,41.91355360750212],[-87.71665595985763,41.91354916607335],[-87.7166584643409,41.91363840988533],[-87.71667815877187,41.91427121018348],[-87.71669628529409,41.91486142715501],[-87.71670000501376,41.91496588682747],[-87.71671363913732,41.91534873123319],[-87.71671621007575,41.91546337488213],[-87.71671847207676,41.91556423424186],[-87.71672501939909,41.91577069048513],[-87.71673083793993,41.91595362008032],[-87.71673784476688,41.916173914366716],[-87.71675396516889,41.91671689187626],[-87.7167552905498,41.9167597089948],[-87.71675694420124,41.91681312060675],[-87.71676848325555,41.917185876819886],[-87.71677224478051,41.91728273213539],[-87.71662240240704,41.9172844609237],[-87.71527191563493,41.9172984949282],[-87.71515199708188,41.91730080602264],[-87.71481535757978,41.91730597065294],[-87.71393748411847,41.91731638669223],[-87.71367261903043,41.91731915631073],[-87.71352102204092,41.91732293689018],[-87.7135362262906,41.91725444283677],[-87.71351907510576,41.916795818420965],[-87.71351769639924,41.91675896364478],[-87.71350727362845,41.91643497838474],[-87.71349681335472,41.91608829838745],[-87.71349436880463,41.915999955255685],[-87.71348628592128,41.91571815428073],[-87.713482829677,41.91558556181392],[-87.71348024541476,41.915504977508405],[-87.71347616209901,41.91537765441756],[-87.71347323312975,41.91528633391277],[-87.71346331800086,41.91500716515687],[-87.71345622629799,41.9148074834788],[-87.71343943369564,41.914285177876295],[-87.71342910588648,41.913965683920104],[-87.7134198220632,41.91367894415034],[-87.71341692303012,41.91358940313929],[-87.71354870282018,41.91358850089606],[-87.7137548461428,41.91358527749565],[-87.71408731691602,41.913580512234205],[-87.71423591108143,41.91357870646668],[-87.71433284329737,41.91357752761931],[-87.71489346184761,41.91356981844744],[-87.71503940611862,41.91356924654254],[-87.71514712525386,41.91356882432058],[-87.71584837604813,41.91355825116388],[-87.71592120479224,41.913557154857],[-87.7162516799429,41.91355360750212]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4739646.32093","perimeter":"0.0","tract_cent":"1153791.91982744","census_t_1":"17031221100","tract_numa":"25","tract_comm":"22","objectid":"148","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914425.23148734","census_tra":"221100","tract_ce_3":"41.92101961","tract_crea":"","tract_ce_2":"-87.71035914","shape_len":"8893.8690636"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7135049974461,41.91732333584462],[-87.71352102204092,41.91732293689018],[-87.7135073953015,41.917399232521554],[-87.71352021415346,41.91780496810713],[-87.71353091476085,41.91812684173229],[-87.7135347428003,41.918235800368265],[-87.71353765579337,41.91831872723733],[-87.71354977707894,41.91869330045684],[-87.71355247720852,41.91877673687122],[-87.7135592146149,41.91902976377004],[-87.71356332206855,41.91914987781738],[-87.71356769145676,41.919277668336946],[-87.71357406058561,41.91947007319824],[-87.71357840872064,41.91960519013916],[-87.713588213674,41.919909857448054],[-87.71359333848105,41.92006188713793],[-87.71359697813725,41.92016986557801],[-87.71360247295999,41.92031210118353],[-87.71361092080876,41.92056686610851],[-87.7136165324743,41.92079576507959],[-87.71362229427598,41.92098370806201],[-87.71362641944184,41.92111826531214],[-87.71363441392283,41.92135914195711],[-87.71363705555069,41.921441655680454],[-87.71364711145519,41.92175575149034],[-87.71365155353698,41.92190021078439],[-87.71365471377787,41.92200299260059],[-87.71366435859332,41.922293548641676],[-87.71366626925656,41.922356104026605],[-87.71367521934954,41.9226408069782],[-87.7136808016804,41.92281360326195],[-87.713687774095,41.92302942994659],[-87.71369663179614,41.92327607404468],[-87.7137009937035,41.92341767228373],[-87.71370788976633,41.92367341661371],[-87.71370952003755,41.923730588216856],[-87.71371595593719,41.92395630792862],[-87.71372232197146,41.92415385639015],[-87.71372833958564,41.92434366726274],[-87.71373814512948,41.924644330213006],[-87.7135304335245,41.92464641252227],[-87.71332649787925,41.92464949151528],[-87.71314751599273,41.92465219340694],[-87.71293050881012,41.92465417694733],[-87.7127096865677,41.92465548084239],[-87.71241110432686,41.92465724198976],[-87.71228127383708,41.92465777473552],[-87.71210529761403,41.92466098302487],[-87.71183086600583,41.924665985277336],[-87.7116657814885,41.92466797303674],[-87.71146512157088,41.924670453947144],[-87.71117924888247,41.92467269235812],[-87.71098704232291,41.92467499869831],[-87.71075681391966,41.92467623303569],[-87.71063583779274,41.92467688163295],[-87.71048889965802,41.924679859629435],[-87.7104785689201,41.924680068682896],[-87.7102160365748,41.92468538903084],[-87.7099922975204,41.9246880991425],[-87.70973181256497,41.92469074591856],[-87.7095897021234,41.92469194986835],[-87.70923608818218,41.92469679291837],[-87.70887242489594,41.92470177232203],[-87.70868631282067,41.92470465707483],[-87.7084682553739,41.92470458174375],[-87.70842780165195,41.92470456740319],[-87.70815722203271,41.92470611313545],[-87.70802035878489,41.92470808492774],[-87.70772664029127,41.924712220140016],[-87.70756770542556,41.92471439714767],[-87.70740557979401,41.92471661746338],[-87.70721876790098,41.92471635141296],[-87.7072128492538,41.92447182446465],[-87.70720483569693,41.92422403197807],[-87.70719993832796,41.924074774218106],[-87.70718487569869,41.92361218006735],[-87.70717871278718,41.92342696601391],[-87.70716862322737,41.923267498834846],[-87.70716765043301,41.92322726315849],[-87.70715954168702,41.92289201156988],[-87.7071541269433,41.922668135406724],[-87.70715096199497,41.92257945215507],[-87.70714260289556,41.922338853613205],[-87.70713067521154,41.9219812645351],[-87.70711858099162,41.92163981662359],[-87.70711287145257,41.92145174658862],[-87.70710710217654,41.92126170915876],[-87.70709477930815,41.921046294403794],[-87.70709298111439,41.92101487086649],[-87.7070782959794,41.92080532464734],[-87.70707450162352,41.920662845017546],[-87.70704068025184,41.91939294267205],[-87.70703442714317,41.9192250254102],[-87.7070018729999,41.9183506143078],[-87.70696743870506,41.91740170013739],[-87.70704462903026,41.91740130065666],[-87.70716006269366,41.91740070298715],[-87.70754120473461,41.91739550861935],[-87.70835207683078,41.91738359680805],[-87.70867085026946,41.91738011737965],[-87.70892105524624,41.91737738605657],[-87.70912385759817,41.917375171479584],[-87.71002022514908,41.91736360312798],[-87.71027635453011,41.917360398816804],[-87.71093822053663,41.917353379365665],[-87.71177611029148,41.91734389496671],[-87.71190508384645,41.91734226153977],[-87.7122800926427,41.917337511110354],[-87.7128193430036,41.917331590057984],[-87.71337493478634,41.91732657797286],[-87.7135049974461,41.91732333584462]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6970913.42259","perimeter":"0.0","tract_cent":"1150787.71261556","census_t_1":"17031230700","tract_numa":"36","tract_comm":"23","objectid":"144","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909047.77023386","census_tra":"230700","tract_ce_3":"41.90632271","tract_crea":"","tract_ce_2":"-87.72153829","shape_len":"10550.7559931"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71671462644704,41.909937996090484],[-87.71673108440518,41.90987172037925],[-87.71675862704713,41.90961325164359],[-87.71676828551135,41.90951096744092],[-87.71677687133919,41.90942004574141],[-87.716778585277,41.90926484104757],[-87.71677292204328,41.90906980561301],[-87.71677069358753,41.90899306457571],[-87.71676826922312,41.90891034032847],[-87.71676239539174,41.90871008943042],[-87.71675895295675,41.90861863277162],[-87.7167463039988,41.90828256101756],[-87.71674319444602,41.908178696434284],[-87.71674093845346,41.908103333666034],[-87.7167337043627,41.90784341603859],[-87.7167295657358,41.907722345604256],[-87.7167245883369,41.90757673720047],[-87.71671642600873,41.90735984362511],[-87.71671289106303,41.9072726677286],[-87.71670938934615,41.90718631527973],[-87.71669932479652,41.90685788601647],[-87.71669804533656,41.90682195710226],[-87.71668208694395,41.90637377668674],[-87.71667861800051,41.90627635360349],[-87.7166680650917,41.9059528887308],[-87.71666706889036,41.90592184634635],[-87.7166561385141,41.90558131000255],[-87.71665278259466,41.905467186913974],[-87.71665076910726,41.90539870685807],[-87.71664761615148,41.905362667159444],[-87.7166455401071,41.90533893702732],[-87.7166370048524,41.90509808774434],[-87.7166330480685,41.90498643809218],[-87.71663119241538,41.90493457907169],[-87.71662289519107,41.904561896001766],[-87.71660641806756,41.90409827710727],[-87.71658903978322,41.903560368207565],[-87.7165769736386,41.90323390382993],[-87.71656491816724,41.90286435496245],[-87.71656238916434,41.90275429965197],[-87.71673280369822,41.902752468406426],[-87.7171614333681,41.90275056885389],[-87.71726208860254,41.902750122635176],[-87.71778127802467,41.90274500927551],[-87.71836435738955,41.90273926373363],[-87.71877001035975,41.90273539813148],[-87.71899648432452,41.90273438082428],[-87.71916036173566,41.90273364464707],[-87.71964063667319,41.90272850875735],[-87.71970782657296,41.902727789883606],[-87.72002204134084,41.90272469355187],[-87.72021524161656,41.90272291489253],[-87.72035403491691,41.90272163638154],[-87.72081971080252,41.902717816640305],[-87.72114861487263,41.90271511775115],[-87.72143082984626,41.902712832968184],[-87.72159625209243,41.90271149342312],[-87.7224493168859,41.90270448151144],[-87.72264538740494,41.90270231995953],[-87.72266897231152,41.90270205981914],[-87.72285398328793,41.902700019667584],[-87.72355091689583,41.902694255319],[-87.72386489772872,41.902691466108784],[-87.72402273014924,41.902690063849256],[-87.72446657747066,41.902687070679946],[-87.7247880196129,41.90268490138307],[-87.72508194792418,41.902682977877525],[-87.72521673072897,41.90268209568102],[-87.72549364784703,41.90268029618187],[-87.72610618714872,41.9026762372397],[-87.72630293360285,41.90267145336649],[-87.72630786192026,41.902807490168136],[-87.72631572185968,41.90313826754783],[-87.72632429028934,41.903500826377],[-87.72632717116313,41.90357996428925],[-87.72633029509267,41.90366578680145],[-87.72633610011495,41.90392169019594],[-87.7263434702504,41.90437296410685],[-87.72634988832051,41.90444283887047],[-87.72635119205917,41.90445703182187],[-87.72635262198716,41.90447260112636],[-87.72636135248695,41.90456765249194],[-87.72637079217914,41.90488197214712],[-87.72638266013332,41.905277315315054],[-87.72638563361842,41.905376397981094],[-87.72638899866276,41.905488517565125],[-87.72639316735301,41.90562884858026],[-87.72639429100278,41.905666673942626],[-87.72640390004683,41.905986373408915],[-87.72640770140652,41.906156029027144],[-87.72641295538614,41.90638230536477],[-87.72642777936176,41.90681630152251],[-87.72644331897664,41.907312761335085],[-87.72646312293824,41.907979605512615],[-87.7264650576127,41.90807730119239],[-87.72646707435578,41.908179132318246],[-87.72647661407991,41.908618699472],[-87.726484102957,41.908962097756124],[-87.7264870364554,41.909096964970594],[-87.72649073674442,41.909354009574116],[-87.7264867338337,41.909383873412246],[-87.72646852065233,41.90951975372132],[-87.72640355654995,41.90968387236172],[-87.7263286117404,41.90982027796177],[-87.72633070704583,41.90988669018665],[-87.72567982329018,41.90989578661841],[-87.72530065914441,41.909899676878055],[-87.72510924567398,41.90990164037782],[-87.72409297534607,41.909912059136225],[-87.72389444424098,41.909914093439404],[-87.72287933724694,41.909925608341915],[-87.72266816661913,41.90992776789559],[-87.72167327217574,41.90993635218524],[-87.72155176284566,41.90993809235733],[-87.72144336829118,41.909939867434936],[-87.72130774731312,41.909942088407],[-87.72099816712033,41.90994474640158],[-87.72058535774251,41.90993922378421],[-87.7204512006804,41.90994586867577],[-87.7201992718388,41.909949694447036],[-87.7192334767943,41.909964355059984],[-87.71897287195361,41.9099669338825],[-87.71820141037969,41.90997456474272],[-87.71801666413221,41.909977020848935],[-87.7177623149608,41.909980402123644],[-87.71706426050642,41.9099896789922],[-87.71670068063654,41.90999415275349],[-87.71671462644704,41.909937996090484]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4850302.31693","perimeter":"0.0","tract_cent":"1153831.28216512","census_t_1":"17031230900","tract_numa":"22","tract_comm":"23","objectid":"145","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909201.32175655","census_tra":"230900","tract_ce_3":"41.90668396","tract_crea":"","tract_ce_2":"-87.71035393","shape_len":"9311.87744464"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70684833637637,41.90466551419159],[-87.7068437804618,41.90452182885203],[-87.70683303493419,41.90421189107779],[-87.70682227504697,41.90389591588769],[-87.70681841667586,41.90375953400292],[-87.70681403034311,41.90360448787703],[-87.70680658698764,41.90338139571611],[-87.70679354618687,41.90301694481167],[-87.70678981333656,41.90285029904825],[-87.7067894016374,41.902831916452065],[-87.70923292414146,41.90280785237116],[-87.70944780615098,41.90280530708733],[-87.70960394342777,41.90280345742561],[-87.71024450702683,41.902796205024075],[-87.71062001393702,41.90279109514103],[-87.71075348635524,41.90278927852475],[-87.71136556590577,41.902791140955024],[-87.71167499690328,41.90278776246683],[-87.71167805466307,41.902920604764546],[-87.7116847409162,41.903117457645344],[-87.71168925939978,41.90325055015912],[-87.71169954075948,41.90355337747542],[-87.71170431221167,41.903702469974036],[-87.71170740575485,41.903799139013195],[-87.71171917700042,41.904155159041366],[-87.71172976807675,41.904496899884656],[-87.71173407644758,41.90461054145282],[-87.71234317440233,41.904602394906085],[-87.71257588318868,41.904599281289435],[-87.71343950941069,41.90459307977989],[-87.71407515709295,41.90458695951712],[-87.71417839368526,41.90458574973995],[-87.7141915342421,41.90503815773978],[-87.71420274178661,41.905362180739715],[-87.71420769896064,41.905493270536375],[-87.71421154900612,41.90559507665557],[-87.71422258250962,41.90594264367906],[-87.71423406378985,41.906268551196135],[-87.71423798307454,41.90639616446617],[-87.71424121753866,41.90650146560131],[-87.71425461643925,41.90684511008691],[-87.71426311120747,41.90712136921025],[-87.71426994397162,41.907297292316805],[-87.7142762024962,41.90745843187146],[-87.71428584089972,41.90774820260767],[-87.7142882159654,41.90781961052657],[-87.71429545065318,41.90808984689668],[-87.7142992915047,41.908199512680945],[-87.71430362813183,41.90832334330785],[-87.71431101740644,41.90856237826511],[-87.71431304297235,41.908650497775696],[-87.71431943501857,41.908934541844005],[-87.71432572012809,41.90909953247816],[-87.71434232170986,41.909535338588285],[-87.71435753425652,41.909964240092805],[-87.7143595234548,41.91002084295653],[-87.7133051420556,41.910035168517744],[-87.71316947614952,41.910037011357566],[-87.71204368267308,41.91005213721333],[-87.71194566729572,41.91005315514614],[-87.71188059388648,41.910053830701465],[-87.7118115747714,41.910054547431905],[-87.7109156499983,41.9100638463731],[-87.7100695898393,41.910073689723816],[-87.70977169965246,41.91007715422265],[-87.70947023363122,41.91008111773007],[-87.70863000381907,41.910092160247906],[-87.7084393381375,41.910095094259724],[-87.70748941824024,41.91010970652204],[-87.70696046604213,41.91011532922255],[-87.70698624422334,41.91006326710636],[-87.70699232042793,41.9100105324816],[-87.70700030993069,41.909854676153174],[-87.7070047756331,41.909570727213406],[-87.70699507197178,41.909300641680716],[-87.70699097458282,41.909191096683074],[-87.70698356740938,41.90899306034973],[-87.70697856081595,41.90885735783603],[-87.70697068807902,41.908645734443134],[-87.7069638671663,41.908373908279756],[-87.70696128689832,41.908287835017184],[-87.70695683055766,41.908139182975795],[-87.7069453516832,41.907772600402666],[-87.70693670763761,41.90751445798294],[-87.7069320862257,41.90738131022119],[-87.70692710558312,41.907237787014544],[-87.70691857903128,41.90691499076081],[-87.70690871682795,41.90662360896874],[-87.70690351433973,41.90647738530251],[-87.70689744900628,41.90630691764414],[-87.70688874792471,41.90596817665122],[-87.70688129203556,41.90569747203062],[-87.70687733074402,41.90557129818493],[-87.70687512927299,41.905501170680246],[-87.70686337032133,41.90517462480557],[-87.7068546465617,41.90486453344381],[-87.70684833637637,41.90466551419159]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7068625.97379","perimeter":"0.0","tract_cent":"1150867.12842673","census_t_1":"17031231200","tract_numa":"33","tract_comm":"23","objectid":"146","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906402.26165639","census_tra":"231200","tract_ce_3":"41.89906162","tract_crea":"","tract_ce_2":"-87.7213159","shape_len":"10632.1269729"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72588061068794,41.895369768095144],[-87.72608049209401,41.89536765044182],[-87.72608734829412,41.895565098922795],[-87.7260952411798,41.89584066249389],[-87.726104350707,41.896158713338096],[-87.72611870902718,41.89657393804945],[-87.72613492459486,41.897045155061214],[-87.72614040535294,41.897200781665724],[-87.7261463868811,41.897370627726445],[-87.72615615244348,41.8977356359055],[-87.72617004776627,41.89820755377825],[-87.72618699483579,41.89877611298356],[-87.72619332748377,41.89902028392276],[-87.72619711111054,41.899166177834196],[-87.7262212742383,41.89986487921018],[-87.72623962854583,41.90054864884383],[-87.72624928023187,41.90084657548867],[-87.7262532713496,41.9009697692822],[-87.72627105041643,41.901590225881684],[-87.72628574826005,41.90210045751275],[-87.7262887757024,41.90220587943659],[-87.72628890581942,41.90221040839205],[-87.72629898061498,41.902562327874584],[-87.72630293360285,41.90267145336649],[-87.72610618714872,41.9026762372397],[-87.72549364784703,41.90268029618187],[-87.72521673072897,41.90268209568102],[-87.72508194792418,41.902682977877525],[-87.7247880196129,41.90268490138307],[-87.72446657747066,41.902687070679946],[-87.72402273014924,41.902690063849256],[-87.72386489772872,41.902691466108784],[-87.72355091689583,41.902694255319],[-87.72285398328793,41.902700019667584],[-87.72266897231152,41.90270205981914],[-87.72264538740494,41.90270231995953],[-87.7224493168859,41.90270448151144],[-87.72159625209243,41.90271149342312],[-87.72143082984626,41.902712832968184],[-87.72114861487263,41.90271511775115],[-87.72081971080252,41.902717816640305],[-87.72035403491691,41.90272163638154],[-87.72021524161656,41.90272291489253],[-87.72002204134084,41.90272469355187],[-87.71970782657296,41.902727789883606],[-87.71964063667319,41.90272850875735],[-87.71916036173566,41.90273364464707],[-87.71899648432452,41.90273438082428],[-87.71877001035975,41.90273539813148],[-87.71836435738955,41.90273926373363],[-87.71778127802467,41.90274500927551],[-87.71726208860254,41.902750122635176],[-87.7171614333681,41.90275056885389],[-87.71673280369822,41.902752468406426],[-87.71656238916434,41.90275429965197],[-87.71655911877828,41.90261196373289],[-87.71655305786967,41.90241346791517],[-87.71654534769671,41.90224099836408],[-87.7165368722407,41.90204850712846],[-87.71653449717448,41.90195513539966],[-87.71652494253115,41.90169012790588],[-87.71649747390157,41.900930868919694],[-87.7164866187002,41.90062224871497],[-87.71647305085654,41.90023054554231],[-87.71645865828924,41.899810050845595],[-87.71643846329606,41.89922152262673],[-87.71643431121362,41.89910705950982],[-87.71642923202896,41.89896702717457],[-87.71638007476182,41.89748361133249],[-87.71637278824024,41.89728515567259],[-87.71636613495228,41.89710395315249],[-87.71634259820438,41.89635903986746],[-87.71632872655732,41.895934409359405],[-87.71632662537974,41.89587009502105],[-87.71631408608235,41.89546088191935],[-87.7165499375606,41.89545845107081],[-87.71692634239254,41.89545479376573],[-87.71720477983588,41.89545208713723],[-87.71753324030772,41.89544937147353],[-87.71784091595966,41.895446826674814],[-87.71875485190364,41.895436921606034],[-87.71893395954278,41.89543497963758],[-87.71960785931604,41.895429115596556],[-87.71997255771971,41.89542664562149],[-87.72010616708518,41.89542574035804],[-87.72086590415854,41.89541601882187],[-87.72119186250374,41.89541304965397],[-87.72144172969783,41.895410773480066],[-87.72220225661394,41.89540288595167],[-87.72241176328916,41.895401419488145],[-87.72262992919748,41.895399892216915],[-87.72340633395831,41.89539090112838],[-87.72363749114587,41.89538998787056],[-87.72409375627791,41.89538818357363],[-87.72453596950774,41.895381759053166],[-87.72471013598341,41.895378499220115],[-87.72486292768414,41.89537739672683],[-87.725008364856,41.89537634727707],[-87.72533344880736,41.89537359580348],[-87.72588061068794,41.895369768095144]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1960235.43609","perimeter":"0.0","tract_cent":"1148849.78266265","census_t_1":"17031220800","tract_numa":"6","tract_comm":"22","objectid":"147","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917267.04410853","census_tra":"220800","tract_ce_3":"41.92891488","tract_crea":"","tract_ce_2":"-87.72844416","shape_len":"6973.60092134"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72766958698094,41.9244733749454],[-87.72770215878165,41.92447304620296],[-87.72786322616936,41.924781296623976],[-87.72830257189621,41.9256326078837],[-87.72863908697637,41.92628407609497],[-87.7287396851406,41.926478416868584],[-87.72900808992593,41.926998145955785],[-87.72938839340534,41.927732512113685],[-87.7295662684948,41.92808100987453],[-87.7297064461156,41.928346833099226],[-87.7300439271673,41.92899624438169],[-87.7303376234905,41.929564126718674],[-87.73051667528011,41.92991073722051],[-87.73051672797581,41.9299108390335],[-87.73091825180968,41.93068819027106],[-87.73098862045131,41.93082367603035],[-87.73098863958451,41.930823712628914],[-87.73135547252873,41.93152987287342],[-87.73138615056241,41.931589377566944],[-87.73146013483256,41.93173397304093],[-87.7306322620623,41.931742475037865],[-87.73039743591133,41.9317451260675],[-87.73004323452325,41.9317491236463],[-87.7297126477301,41.93175247726902],[-87.72942947882922,41.931755349110546],[-87.72898118849572,41.9317598940535],[-87.72835002006151,41.931769166151376],[-87.72780814348016,41.93177872349767],[-87.7276995733361,41.93178063824265],[-87.72767093913994,41.93178094686082],[-87.72757821053408,41.93178194642946],[-87.72725276275622,41.93178544521723],[-87.72720838852307,41.93178592227962],[-87.7269787052975,41.931790361843575],[-87.72697120119547,41.93152196533669],[-87.72696565149096,41.931335328764064],[-87.72696013572971,41.93114984493878],[-87.72695298597733,41.93087609821104],[-87.72694665081912,41.930633530166446],[-87.72693512257887,41.930255973699786],[-87.7269247503357,41.92997870498493],[-87.72692156830728,41.92976641467531],[-87.72691434492442,41.92954609755942],[-87.72690293258619,41.92913437602306],[-87.7268897813994,41.928665426244194],[-87.72688829056136,41.928612264637366],[-87.72687552888743,41.92813173404286],[-87.72687129572934,41.927962232672485],[-87.72686069165725,41.92766483920719],[-87.72685451320918,41.92749156384137],[-87.72684310308762,41.92702015523814],[-87.72682743364027,41.9265251234724],[-87.72682238220632,41.9263210637984],[-87.72681576580592,41.92605379602816],[-87.72680431565072,41.92562157465804],[-87.72679217447921,41.925188608663035],[-87.72678588653211,41.9249804529609],[-87.72677855069102,41.92473760522701],[-87.72676858401366,41.92448395547665],[-87.72713034983494,41.92447881633683],[-87.72766958698094,41.9244733749454]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"745051.219101","perimeter":"0.0","tract_cent":"1158280.45127662","census_t_1":"17031270900","tract_numa":"4","tract_comm":"27","objectid":"566","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900240.2357209","census_tra":"270900","tract_ce_3":"41.88200412","tract_crea":"","tract_ce_2":"-87.69425548","shape_len":"3574.46276926"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69601622858019,41.8810803789548],[-87.69628877644246,41.8810766587074],[-87.69629312954237,41.88122615290884],[-87.69629572453492,41.88135618970243],[-87.6962995461319,41.88154378014391],[-87.696303299632,41.88178828586907],[-87.69630954764439,41.88199319936296],[-87.69631944800894,41.8823179051782],[-87.6963229992279,41.88243841264286],[-87.69632849241356,41.882594108815994],[-87.6963350553292,41.88289772960711],[-87.69597818875764,41.88290171610322],[-87.69562341382954,41.88290526250007],[-87.69502213397509,41.8829111426505],[-87.69444244461289,41.88291724953939],[-87.69430101296184,41.882918569102735],[-87.69396019572216,41.882921748125774],[-87.69357461025008,41.88292534359831],[-87.69324043918748,41.88292861321814],[-87.6926836062098,41.88293319207492],[-87.69223115529334,41.88294121187783],[-87.692224210894,41.882716083231536],[-87.69222080855656,41.88257149737874],[-87.69221516043001,41.88229898969064],[-87.6922068182469,41.88202984099952],[-87.6921986120352,41.88176505914993],[-87.69219334048543,41.88153196090005],[-87.69218885464463,41.88133333475987],[-87.69216226986921,41.88110597866043],[-87.69247840173048,41.88110295233489],[-87.69289474389282,41.881099896216085],[-87.69293182138263,41.88109954919424],[-87.6932860847411,41.88109623272684],[-87.69365451344255,41.88109235795428],[-87.69393085544505,41.88109037876837],[-87.69433133890477,41.88108750905523],[-87.69482896664216,41.88108602333037],[-87.69535186474342,41.88108393489173],[-87.6957556761628,41.881081731829575],[-87.69601622858019,41.8810803789548]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6482065.01304","perimeter":"0.0","tract_cent":"1164105.96625003","census_t_1":"17031221800","tract_numa":"45","tract_comm":"22","objectid":"149","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914323.53867143","census_tra":"221800","tract_ce_3":"41.9205287","tract_crea":"","tract_ce_2":"-87.67246589","shape_len":"11950.7372784"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67111167939608,41.9224111756966],[-87.67088909414622,41.922376039535585],[-87.67062687553269,41.922383972044344],[-87.67043248843204,41.922378908977436],[-87.67015119924885,41.922372342049954],[-87.66975772522764,41.92240813393121],[-87.66950967342567,41.922413835121354],[-87.66928497829805,41.92238888064661],[-87.66921444755957,41.922366299385594],[-87.66916196318883,41.92234916931774],[-87.66892530414415,41.92228380921221],[-87.66850256048808,41.92219817519405],[-87.6683660814189,41.92217052852633],[-87.66826484353685,41.92212150660684],[-87.66814270244006,41.92205436138382],[-87.66809607152634,41.922029749951534],[-87.66782015989662,41.921577505068115],[-87.66767813935883,41.921343412210604],[-87.6675564087295,41.92117565663568],[-87.66755631164379,41.92117552297779],[-87.66753515741526,41.921146370798176],[-87.66733892889405,41.92087909777059],[-87.66717680924437,41.920720501546334],[-87.6669239017645,41.92047304157213],[-87.66682758978305,41.920380035065136],[-87.66673389658847,41.920289557390745],[-87.6664625890377,41.92002755493428],[-87.6663515984031,41.91986050038073],[-87.66631392520908,41.919803791638536],[-87.66607058072258,41.91943749169012],[-87.66606435528604,41.919428427007105],[-87.665769949576,41.918999988510386],[-87.66572184695096,41.91893000547957],[-87.66542629352682,41.91858824651065],[-87.66523896855327,41.91840751825478],[-87.6652070053961,41.91837843995504],[-87.66501569875193,41.91820440081593],[-87.66495784755443,41.91815177119165],[-87.66475210367665,41.91799190218434],[-87.6646744944564,41.917897680021774],[-87.6646019431085,41.917801236996084],[-87.66453455730321,41.917702710955226],[-87.6644724823453,41.917602294850504],[-87.66444513190815,41.91755438597201],[-87.6642973780434,41.91711941581472],[-87.66425682804037,41.916958377403986],[-87.66437296584225,41.91693206871066],[-87.66462067861082,41.9168759377034],[-87.66488596553673,41.91681162090121],[-87.665335327865,41.91670794186929],[-87.66558552462219,41.916650214285575],[-87.66576238957155,41.9166088992466],[-87.66587575601723,41.91658263932789],[-87.6660239244156,41.91654831758721],[-87.66641056610759,41.91645373493321],[-87.66651275280563,41.91659270500646],[-87.66665648343138,41.91678365971443],[-87.66683123761776,41.9170157930822],[-87.66701644296197,41.91726469862205],[-87.66711293281561,41.91739437496516],[-87.66725454435351,41.91758452078202],[-87.66738106762875,41.91775583583824],[-87.66751641005818,41.91792355563482],[-87.66769944919359,41.91792867501849],[-87.66783436183992,41.91793244795867],[-87.66796131730692,41.91793231597292],[-87.66828009100269,41.91793198436042],[-87.66834284088448,41.91793087248908],[-87.66841900353833,41.91792952321641],[-87.66849930462595,41.91792812705382],[-87.66865437530129,41.91792543069568],[-87.66865444475484,41.91792542972562],[-87.66904381847687,41.91791865835179],[-87.66917999414243,41.91791628994807],[-87.6692798592391,41.91791460189858],[-87.66931169598006,41.91791403189916],[-87.66937326629402,41.917912929383],[-87.66937569543028,41.91791288580043],[-87.66949690316618,41.91790889452541],[-87.66951710378156,41.917908229205096],[-87.66970346141511,41.917902092115156],[-87.67000896436656,41.91789203084754],[-87.6702005198213,41.917885721825755],[-87.6704570508904,41.91787727224537],[-87.67065664791257,41.91787069741597],[-87.6707512172444,41.91787255681947],[-87.67093919767119,41.91787625252025],[-87.67108159941569,41.917879052501824],[-87.6712474951107,41.91788231379138],[-87.67134803871097,41.91788429030135],[-87.67154504751583,41.91787771602],[-87.67182629814837,41.917868330934105],[-87.67205749414586,41.91786362532862],[-87.6720617571788,41.917863538463784],[-87.67211022897824,41.917862549494245],[-87.67240890005684,41.91785645510764],[-87.67276153435708,41.91784987484947],[-87.67289333392263,41.91784741484619],[-87.67329897750423,41.91783967624485],[-87.67366438030798,41.917832747565114],[-87.67397577333404,41.91782699825857],[-87.67414958421809,41.917823788753324],[-87.67446806107868,41.917817329055055],[-87.67495345818004,41.91780746235902],[-87.675186963032,41.91780411357529],[-87.67538954594879,41.917801207882505],[-87.67565962317038,41.91779567499885],[-87.6761696439087,41.917785175809584],[-87.67640352381387,41.91778096226609],[-87.67659159937207,41.91777757353912],[-87.67692579854989,41.91777144392634],[-87.67737884519751,41.91776313834157],[-87.67762149764636,41.91775780640855],[-87.6776284397949,41.91795309239046],[-87.67763726408113,41.91821720584222],[-87.6776423899197,41.91837062400358],[-87.67764768985604,41.918520784109965],[-87.67766104573839,41.918899186462404],[-87.67766928619777,41.919122256613505],[-87.67767241008227,41.91920682437357],[-87.67767515800716,41.91928063206531],[-87.67768197807752,41.919463821016514],[-87.67768648255094,41.91957522696446],[-87.67769232810073,41.9197198067487],[-87.67769994774106,41.91996254970403],[-87.67770353073443,41.92004168650304],[-87.6777127143111,41.92024450959777],[-87.67772642988606,41.92061324734615],[-87.67773144914703,41.920797139195116],[-87.6777351922676,41.920934262130416],[-87.6777365846363,41.92098525753622],[-87.67774886723666,41.921278630869914],[-87.6777523798271,41.921397752821804],[-87.67775830465064,41.921598688990784],[-87.67776218988645,41.92172527488903],[-87.67776598733644,41.92180379296598],[-87.67777227297809,41.92193380473506],[-87.67778101043578,41.922122204852705],[-87.67778998535665,41.92231839031632],[-87.67778838101457,41.922415569839515],[-87.67778931116236,41.92243993180143],[-87.67779741895157,41.922652199503716],[-87.67779976742008,41.9227136852157],[-87.67780431478687,41.92283780808407],[-87.67780761249423,41.92292782379266],[-87.67781022918733,41.92299925665543],[-87.6778138620888,41.923098420504495],[-87.67782478528612,41.92337439059257],[-87.67784528400134,41.92389223316971],[-87.677860465727,41.924275852741836],[-87.67786951414597,41.924529882417595],[-87.67787077302663,41.9245508173376],[-87.67788047348098,41.92471210662642],[-87.67789934469693,41.92502609850433],[-87.67744157917967,41.92503196171796],[-87.67631152870659,41.92504642845211],[-87.67626188183652,41.92504706367127],[-87.6758401777223,41.92505153465793],[-87.67482780105713,41.92506387461675],[-87.67463218928185,41.925066265764244],[-87.6744762117766,41.92506833159853],[-87.67446482018235,41.924836519764234],[-87.67442009748979,41.92462959557162],[-87.67425507051844,41.92439025763057],[-87.67411970929076,41.92428198928989],[-87.67376691632928,41.92399582625257],[-87.67345951038541,41.92378429119045],[-87.67334528403423,41.9236934871646],[-87.67297374320417,41.923398048195516],[-87.6728669230975,41.92332026015731],[-87.67249347892768,41.92304831049293],[-87.67216130359891,41.92280641051285],[-87.6718871262803,41.922658920946546],[-87.67165006085153,41.922550749806305],[-87.67111167939608,41.9224111756966]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1737364.34084","perimeter":"0.0","tract_cent":"1159399.08247735","census_t_1":"17031222300","tract_numa":"11","tract_comm":"22","objectid":"150","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912550.70325155","census_tra":"222300","tract_ce_3":"41.91576214","tract_crea":"","tract_ce_2":"-87.68980879","shape_len":"5316.48124267"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69087016208526,41.913962259840716],[-87.69090731328114,41.913954262174734],[-87.69092775144385,41.913942219577606],[-87.69094139686663,41.91392502921764],[-87.69094215186155,41.913924078449135],[-87.69095942202951,41.913867981177965],[-87.69099121862064,41.91386163354723],[-87.6909939043311,41.913868888949565],[-87.69101320156142,41.91392101818123],[-87.69101465955873,41.9139241553089],[-87.69101550328448,41.91392597067199],[-87.6910212225062,41.91393818704855],[-87.69103962303383,41.91394981574446],[-87.6910515325777,41.91395657828416],[-87.69116039509062,41.91396015119961],[-87.69129829719759,41.913958589472216],[-87.69158248294053,41.91395499150922],[-87.69199720934928,41.91395116154142],[-87.6922033918288,41.91394989472549],[-87.69220753209369,41.91416564511333],[-87.6922171304686,41.914572229023655],[-87.69222299846926,41.91481293079555],[-87.69222528333717,41.91490665929363],[-87.69223618716158,41.91526464957461],[-87.69223826840854,41.915335626986185],[-87.69224649792729,41.915617368423156],[-87.69225036550436,41.9157175371216],[-87.69225677716146,41.91588987296058],[-87.69226370107846,41.91613052568665],[-87.69226479476549,41.916170296504944],[-87.69227307564073,41.91647141162415],[-87.69227757328127,41.9166256355416],[-87.692282813959,41.91680532868014],[-87.69229110325405,41.91708009948544],[-87.69229213929016,41.91711443585232],[-87.69230593291526,41.91753141011939],[-87.69203139790497,41.91753471303688],[-87.6913177245817,41.91754123723722],[-87.69084649450424,41.91754554247683],[-87.6906265371985,41.917547275291284],[-87.69043281105012,41.91754940647506],[-87.69028927796566,41.917550985287285],[-87.69002288142406,41.91755240198125],[-87.68985653467837,41.91755386396146],[-87.68962832848992,41.91755586916247],[-87.68959957172382,41.91755612177878],[-87.68956981063562,41.91755642611156],[-87.68951386312247,41.91755699854038],[-87.68951319360627,41.91755700548891],[-87.68951254760938,41.91755701202047],[-87.68896878695953,41.91756257244103],[-87.68859598034022,41.917563002792335],[-87.68814964253325,41.91756351632409],[-87.68801640592271,41.917564379020426],[-87.68780475629266,41.91756574916728],[-87.68758274349851,41.917567225023426],[-87.687409990258,41.91756774018782],[-87.6874056933236,41.917394844693355],[-87.68739565908115,41.917100112943686],[-87.68738871412924,41.916805422431835],[-87.6873856661307,41.916676067020056],[-87.68737975689056,41.91642532730349],[-87.687378119634,41.91629591532987],[-87.68737756907846,41.916252428545775],[-87.6873771440501,41.91621908349294],[-87.68737672835455,41.91618645254092],[-87.68737494326257,41.916130470646024],[-87.68736774006162,41.91590454216396],[-87.68736367337956,41.9157608588664],[-87.68735938211576,41.91560924347787],[-87.68735602235856,41.91549259481296],[-87.68735243011864,41.91531225153767],[-87.68735046120354,41.91521336558423],[-87.6873474920393,41.91510028660748],[-87.6873458424063,41.915037434460764],[-87.68734017390835,41.9148551308126],[-87.68733583941226,41.914715753873985],[-87.68733227628317,41.91460113532556],[-87.68732593266387,41.91440228015633],[-87.68732383067794,41.91433637826351],[-87.68732359420721,41.91432896860899],[-87.68731885844969,41.914150073030925],[-87.6873155488048,41.91399480259249],[-87.68750953401462,41.91399044348269],[-87.68761821685435,41.91398995701037],[-87.68790054960404,41.91398797683709],[-87.68835550393993,41.9139844959057],[-87.6885370938368,41.91398248557154],[-87.68868216380041,41.913980879421345],[-87.68872882665703,41.913980362845734],[-87.6890454155252,41.91397700794546],[-87.68952487328175,41.9139737147505],[-87.68975740725023,41.913971961763814],[-87.68998001028137,41.913970283290496],[-87.69037859742139,41.91396749387727],[-87.69062202855787,41.91396482266121],[-87.69077598704406,41.913963214494515],[-87.69087016208526,41.913962259840716]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8485040.17616","perimeter":"0.0","tract_cent":"1147446.38045531","census_t_1":"17031200400","tract_numa":"36","tract_comm":"20","objectid":"151","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1913910.90287312","census_tra":"200400","tract_ce_3":"41.91973237","tract_crea":"","tract_ce_2":"-87.7336875","shape_len":"13266.6752563"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72662009357691,41.91918777247283],[-87.72661499883226,41.918993623091644],[-87.7263789268584,41.91899602091162],[-87.72560916310412,41.91900687775758],[-87.72495225921449,41.91901534723478],[-87.72487584299344,41.919016332282155],[-87.72469501500004,41.91866412534621],[-87.72440862494797,41.91811101689455],[-87.7243788583213,41.91805357267235],[-87.72432158853167,41.91794212786883],[-87.7240577834005,41.91742961539766],[-87.72390558944859,41.91719827339974],[-87.7239378165595,41.91719802594312],[-87.7239612932384,41.91719784592532],[-87.724018959573,41.91719740331666],[-87.72421669376592,41.91719588545781],[-87.72432868985814,41.91719527177506],[-87.72449882044293,41.91719378292971],[-87.72480971215546,41.91719002315667],[-87.72497527466027,41.917188020648844],[-87.72533525223531,41.91718261747808],[-87.7257036824093,41.91717708611923],[-87.7262340074389,41.917170588308366],[-87.72655895627874,41.91716615498199],[-87.72681681435566,41.91716263640732],[-87.72745616227738,41.917155144554464],[-87.72778108342314,41.91715012639471],[-87.72807072835073,41.91714565243768],[-87.72878937141522,41.91713758318656],[-87.72900021050701,41.91713497734907],[-87.7292844932757,41.9171314625015],[-87.729527243008,41.91712818355099],[-87.73006569404818,41.917120969828304],[-87.73022163644306,41.9171187278188],[-87.73049346755853,41.917114819109806],[-87.73128757844698,41.91710674621399],[-87.73144602320092,41.91710373026253],[-87.73170581580153,41.91709878467037],[-87.73244147459462,41.91709017798058],[-87.73266923840174,41.917087130647396],[-87.73283422135691,41.91708520735298],[-87.7335153792097,41.91707396297821],[-87.7338868758723,41.91707022076979],[-87.73509573389919,41.9170580351593],[-87.73555086525452,41.91705344390929],[-87.73632797632426,41.91704487141367],[-87.73664457063853,41.91704137735338],[-87.73705841382318,41.917035651188634],[-87.73755481607324,41.91703115516022],[-87.73795209437685,41.91702755524361],[-87.73845058743842,41.917022235504206],[-87.73878086800713,41.91701703615314],[-87.73904608049946,41.917012860245656],[-87.73959314491995,41.91700770459214],[-87.7400072806637,41.91700211749912],[-87.74053878456897,41.916994944995146],[-87.74135681287414,41.916985661383364],[-87.74142999502229,41.916984830360406],[-87.74144378167365,41.917432049335744],[-87.74145707501741,41.91788217214808],[-87.74145725947066,41.91788924937471],[-87.74147708160834,41.91864963100929],[-87.74148119783614,41.91880058522176],[-87.74148151119796,41.9188119638709],[-87.74150679699902,41.91972971538996],[-87.74150699348138,41.91973684371896],[-87.74153211867389,41.920596603456424],[-87.74153346416368,41.92064556416832],[-87.74153346728494,41.92064566379997],[-87.74155417296474,41.92134143260206],[-87.74155961317533,41.92154796394802],[-87.7415605242169,41.92158055774612],[-87.7415613394807,41.921609718018786],[-87.74158525884515,41.92250068686428],[-87.74017190710738,41.922504714334835],[-87.7389429642892,41.92250660562234],[-87.73833274858198,41.92251359553666],[-87.73825005630543,41.922514542687814],[-87.73772522448786,41.92252080665186],[-87.73728994269344,41.92252600045014],[-87.73711457743468,41.922528554042785],[-87.73702460580924,41.9225298642683],[-87.7368424712759,41.92253254035805],[-87.73658391151226,41.922534367293856],[-87.73649451097013,41.92253499867982],[-87.73634556886091,41.92253605040893],[-87.7360968444615,41.922539477049526],[-87.73588302555547,41.92254242369251],[-87.73573221102885,41.92254452278366],[-87.7355993229608,41.92254635577798],[-87.73528282206851,41.92255054032245],[-87.73502007217877,41.922554013971045],[-87.73477131796427,41.922556724085],[-87.73466888240428,41.92255786073997],[-87.73458959363515,41.92255874039844],[-87.73434117008645,41.92256145130463],[-87.73405837917676,41.92256496886186],[-87.73369459805528,41.92256949254127],[-87.73344850389735,41.9225723410128],[-87.73327051119466,41.92257441205534],[-87.73283416997015,41.922580362235536],[-87.73265516914546,41.92258280273678],[-87.73222134104333,41.92258739848082],[-87.7316112960865,41.92259385823024],[-87.73142407883233,41.922595839924476],[-87.730992732923,41.92260189765572],[-87.73079094691515,41.922604731087574],[-87.73054387565945,41.92260818181507],[-87.73048533140947,41.92260889888001],[-87.7303877565542,41.92261009400756],[-87.73020199451199,41.92261236894551],[-87.72977547080417,41.92261679321161],[-87.72925387113945,41.92262234087459],[-87.72916293517515,41.92262363657263],[-87.72887688688081,41.92262771149221],[-87.72855102572022,41.92263089132356],[-87.72812434662654,41.92263505369823],[-87.72793952059477,41.92263912902526],[-87.72772859035635,41.92264377960292],[-87.72737494002729,41.92264661056949],[-87.72729261063554,41.92264726936222],[-87.72707509390936,41.922645068683444],[-87.72686885430758,41.92224467644936],[-87.7267308915607,41.92197539744742],[-87.72669587988825,41.92188163427057],[-87.72668881871297,41.92171935814446],[-87.72667890512989,41.92127246293167],[-87.72667334602396,41.92102144634559],[-87.72666739847982,41.920824901475],[-87.7266631037241,41.92068297385189],[-87.72664784465505,41.92015262572842],[-87.72664080728381,41.919907995063184],[-87.72663626271903,41.919750013449054],[-87.72662754880636,41.91944700468181],[-87.72662009357691,41.91918777247283]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7093994.99147","perimeter":"0.0","tract_cent":"1150536.05707565","census_t_1":"17031210500","tract_numa":"31","tract_comm":"21","objectid":"152","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919679.9708987","census_tra":"210500","tract_ce_3":"41.93550335","tract_crea":"","tract_ce_2":"-87.72218439","shape_len":"10650.9306474"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72664971405293,41.93179672027227],[-87.7269787052975,41.931790361843575],[-87.7269874250023,41.93210223491443],[-87.7270001229276,41.93256588346425],[-87.727002456998,41.932649465366545],[-87.72701225279984,41.93300027609995],[-87.72702285817944,41.93340938607858],[-87.72702961049728,41.93363127573838],[-87.72704015180334,41.93397766885438],[-87.72704825578668,41.93429003168909],[-87.7270549424368,41.934524807563974],[-87.72706342509106,41.93482265570321],[-87.72707295334799,41.93517092044453],[-87.72707982018925,41.93543119655021],[-87.72708910891423,41.93578326896974],[-87.72708969385005,41.93580544564977],[-87.72710052971539,41.93619029771665],[-87.7271057997628,41.93635119184693],[-87.72710765008942,41.93640767770809],[-87.7271158858163,41.936633378572594],[-87.72712797549184,41.937064422455435],[-87.7271328564133,41.937245421418496],[-87.72713348179329,41.93726860790543],[-87.72713904660863,41.93747496159201],[-87.72714732518989,41.93781937766064],[-87.72715467108841,41.93807122592474],[-87.7271586731255,41.93820843095103],[-87.72718536266312,41.93909513610319],[-87.72684021843506,41.939098346644855],[-87.72631912857705,41.93910404511359],[-87.7259542136336,41.9391093325907],[-87.72584165502248,41.93911095991821],[-87.72556959463539,41.9391149811264],[-87.72498399509375,41.939121182752146],[-87.72473407084142,41.93912420785613],[-87.72462133053162,41.93912557259748],[-87.72435945295817,41.93912939766843],[-87.72412001139433,41.93913158269272],[-87.72391930157538,41.939132888560394],[-87.72351973683624,41.9391388663743],[-87.72324131475725,41.93914311034929],[-87.72265129797718,41.939149962384846],[-87.72229329059256,41.939155477762306],[-87.72203163097107,41.93915950806697],[-87.72187210326007,41.939160744484376],[-87.72153213278645,41.939163378808416],[-87.72107095582922,41.9391687508466],[-87.72081937743563,41.939171680671436],[-87.72069358127457,41.93917392991258],[-87.72040445472935,41.93917909863217],[-87.7201245736365,41.93918221447794],[-87.71984755375527,41.93918588032682],[-87.7196861064312,41.939188016726206],[-87.71934453757218,41.939192535304045],[-87.71890410599482,41.93919616134079],[-87.7186424468053,41.93919861642415],[-87.71859747321156,41.93919903836949],[-87.7182105430797,41.939203726719775],[-87.71774301753565,41.939211786266256],[-87.71739917233377,41.93921621440377],[-87.71739370578969,41.9390927346823],[-87.71738113575084,41.93876197524514],[-87.71735396651577,41.93804705578553],[-87.71733639050308,41.937528440946515],[-87.71733309196298,41.93739315620179],[-87.71732719311099,41.93715128073287],[-87.71731719522955,41.93670836492843],[-87.71730852148035,41.93635552099863],[-87.71729555095064,41.93582930177563],[-87.71729277788387,41.93571680124223],[-87.71728743955158,41.93538164821103],[-87.71728579025061,41.93527809986239],[-87.71727824833923,41.93509130739481],[-87.71726857667714,41.93485177490843],[-87.71726278582624,41.934647710904315],[-87.71725853382215,41.934497606563944],[-87.71724956428415,41.934166687247576],[-87.7172482274378,41.9341173666678],[-87.7172413026998,41.9338742951099],[-87.71723733437967,41.9337350102719],[-87.71723031602068,41.93348865143921],[-87.71722467101242,41.933293396849585],[-87.71721934206661,41.93310906650608],[-87.71721348286765,41.93282842424738],[-87.71720716681635,41.93252590861162],[-87.71720330715961,41.93237003768772],[-87.71719912142315,41.93220100426235],[-87.71719504598568,41.93191091658245],[-87.71733154840156,41.93190929033533],[-87.71803493882616,41.93189958771387],[-87.71841697553926,41.931894366278236],[-87.71888454143125,41.93188797398332],[-87.71930335926267,41.93188335394156],[-87.71963630763244,41.931880237481344],[-87.71987436835715,41.93187800883883],[-87.72064994878804,41.931870843808035],[-87.7208585674677,41.931867303716416],[-87.72132910035423,41.9318593176838],[-87.72186064207419,41.93185364255874],[-87.72208764876083,41.93185122367443],[-87.72233117137405,41.931848628236374],[-87.72288684172587,41.931844668406136],[-87.7232853858156,41.93183863132352],[-87.7233000245965,41.93183840943085],[-87.72331401941106,41.93183819756172],[-87.72393556155505,41.93182877939389],[-87.72418953418254,41.931826054357494],[-87.72453830661361,41.93182118601403],[-87.72534292115611,41.93180995031961],[-87.72576113718726,41.93180571818448],[-87.7263823645817,41.93179942806403],[-87.72664971405293,41.93179672027227]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5332271.3586","perimeter":"0.0","tract_cent":"1155522.85849595","census_t_1":"17031210700","tract_numa":"33","tract_comm":"21","objectid":"153","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919790.07612922","census_tra":"210700","tract_ce_3":"41.93570647","tract_crea":"","tract_ce_2":"-87.70385454","shape_len":"9342.76185318"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70681647700867,41.932030852557574],[-87.70706016836452,41.93202732474154],[-87.70742719622322,41.93202943009281],[-87.70743708789547,41.932361485877976],[-87.7074405125842,41.932484797267826],[-87.7074446173414,41.93263260125769],[-87.70745190895816,41.93294312236549],[-87.7074586792598,41.93322795469175],[-87.70746662270132,41.933550718551786],[-87.70747581479286,41.93387602513536],[-87.70748879416183,41.934335357645395],[-87.70749649482528,41.9346153102576],[-87.70750955639166,41.935110054865646],[-87.7075203313738,41.93539886058912],[-87.70752875568358,41.93569849782472],[-87.70754032081744,41.93610980519299],[-87.70754455490115,41.936304530758825],[-87.70755220040338,41.93660896142286],[-87.70755936874005,41.93686446001294],[-87.7075648532651,41.93705535045891],[-87.70757253084238,41.93729636231925],[-87.7075772089172,41.937513958951214],[-87.70758114630071,41.93769709291121],[-87.70758714653833,41.937816444040635],[-87.70759341773477,41.93790808056771],[-87.70760233753086,41.93804835883617],[-87.70760913779814,41.938176111905555],[-87.70764197866075,41.938604150738385],[-87.70765300427672,41.93874785399715],[-87.70766362076023,41.938886228216674],[-87.70768025682996,41.939103051862915],[-87.70769774548104,41.93933099203875],[-87.70760464141539,41.93933191688217],[-87.70749074821826,41.939333048858664],[-87.70715061357619,41.93933642811252],[-87.7068544626374,41.93933936963418],[-87.70669915756646,41.93934096173721],[-87.7065865083359,41.93934210975946],[-87.7064143344248,41.939342742769256],[-87.70618964100441,41.93934356835202],[-87.7059511327534,41.939344444242295],[-87.70574613281673,41.93934626020407],[-87.70574050825373,41.93934633099601],[-87.70559949950292,41.93934809305881],[-87.70546720225258,41.9393497571436],[-87.70517524594275,41.93935102161823],[-87.70480812227285,41.93935261044217],[-87.70469998435553,41.93935307823996],[-87.70438111650597,41.93935500920376],[-87.70394966743747,41.9393570313092],[-87.70356052522055,41.93935885356337],[-87.70326955390205,41.93936082468199],[-87.70272492543836,41.93936339749199],[-87.70239636345255,41.93936494835096],[-87.70199905641736,41.93936729233989],[-87.70150238188282,41.93936782995327],[-87.70123208332227,41.93936812180921],[-87.70083473843663,41.93937057132908],[-87.70072939236492,41.93937122584769],[-87.70027737879646,41.93937654810066],[-87.70027062846447,41.93909512604659],[-87.7002650181731,41.938926572600835],[-87.70026179157082,41.93883659929683],[-87.70025483860692,41.93864029438027],[-87.70025071637518,41.93846685535873],[-87.7002464814307,41.93828868632214],[-87.70024237409135,41.93815027267244],[-87.70023816394404,41.9380082083656],[-87.700229784248,41.937724958938624],[-87.70022349750292,41.93755796592671],[-87.70022009176324,41.93746749765303],[-87.7002145104496,41.93725887870274],[-87.70020885517647,41.9370614557557],[-87.7002027449488,41.936824568403594],[-87.7001978468723,41.93664226670417],[-87.70019291243216,41.936458627265196],[-87.70018891888407,41.93631991233337],[-87.70018725625273,41.936262384299894],[-87.70018623779107,41.936227088005694],[-87.70018395574114,41.93614902539376],[-87.70018085949661,41.93604292113611],[-87.70017921469247,41.93598533831367],[-87.70017723774046,41.93590311055588],[-87.70017532071812,41.935866546962714],[-87.70015668476425,41.93581103837403],[-87.70016531985817,41.93562354566019],[-87.7001614583308,41.93544737803226],[-87.70015642566683,41.93521776407536],[-87.70014354337609,41.93480531341532],[-87.70013691457416,41.93441381943108],[-87.70013284774006,41.9341744470925],[-87.70012650836173,41.93400182638235],[-87.70012313827104,41.933900869831625],[-87.70011760584404,41.93373517613724],[-87.70011285484149,41.933576424140504],[-87.70010735553909,41.93339297001415],[-87.70010292808894,41.93323498817429],[-87.7000936241973,41.932901184560286],[-87.70008780951672,41.93266792103653],[-87.70008484414743,41.932536090623906],[-87.70008275540754,41.93244322367201],[-87.70007925461393,41.9322769865319],[-87.70007314393372,41.93207930321533],[-87.70036619435929,41.93207736258969],[-87.70057774581825,41.93207592161295],[-87.70073394727295,41.93207486136211],[-87.70089051574851,41.932073775478145],[-87.70099081523409,41.93207309300176],[-87.70129869307088,41.932070778857195],[-87.70150922275045,41.93206919607258],[-87.70168736443976,41.932068090601604],[-87.70190417063738,41.93206666922753],[-87.70191041903396,41.932066628123366],[-87.70208856071685,41.932065522029816],[-87.70252169266048,41.93205918132172],[-87.70279181378874,41.93205522599233],[-87.70292566078687,41.93205513768423],[-87.70314035902818,41.93205504707115],[-87.70325990999135,41.932054996536976],[-87.70351661504748,41.93205486816503],[-87.70375219011925,41.9320521771597],[-87.7041512242761,41.93204761752564],[-87.70443048316183,41.932044839032926],[-87.70464240910233,41.93204270683599],[-87.70498089597827,41.93204084294646],[-87.70542222792406,41.93203841183577],[-87.70559298193362,41.93203737241628],[-87.70581217458373,41.932036210001],[-87.70620258625019,41.932034744833345],[-87.70654188718844,41.93203347024689],[-87.70681647700867,41.932030852557574]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7648431.56939","perimeter":"0.0","tract_cent":"1161182.11586268","census_t_1":"17031220100","tract_numa":"33","tract_comm":"22","objectid":"154","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917267.2432399","census_tra":"220100","tract_ce_3":"41.92866775","tract_crea":"","tract_ce_2":"-87.68312667","shape_len":"13667.5187407"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68487484101549,41.93367049055127],[-87.68481093718977,41.93366977314882],[-87.68473977424989,41.933670935385386],[-87.68468990096477,41.933671065279114],[-87.6846556462306,41.933671283391114],[-87.68462606920858,41.93366686274581],[-87.68458828885412,41.93365232445158],[-87.68455417388266,41.93363509007742],[-87.68447579247987,41.933626908453014],[-87.6844477519622,41.93362677742962],[-87.68440471544653,41.933619563882324],[-87.68436480236971,41.933612395415295],[-87.6843060979356,41.933613627799836],[-87.68426865133691,41.93361692872357],[-87.68420392310392,41.933596036024156],[-87.68408945945858,41.93356169008117],[-87.68398307279953,41.93354991920926],[-87.68389135754714,41.93352654139254],[-87.68353065326622,41.933442063909524],[-87.6834804060838,41.93342473791622],[-87.6834334374905,41.93339579496135],[-87.68341335632161,41.933375538712355],[-87.68340676382104,41.93335881653165],[-87.68340740033236,41.933346800446316],[-87.68341163184654,41.933339058253],[-87.68338047294868,41.933287757036446],[-87.68305815229893,41.9327569559364],[-87.68284108068198,41.93232839618213],[-87.68283853599296,41.93231125782308],[-87.68284013274,41.93223006535352],[-87.68284015971246,41.93222871287953],[-87.68284169128384,41.932152632249974],[-87.68252724845684,41.93181309157494],[-87.68214868660856,41.93140427898387],[-87.68208834887359,41.93137114331596],[-87.68131335617272,41.930945506916515],[-87.68129420644861,41.93093497012588],[-87.68080468425018,41.930640450907326],[-87.68074218773178,41.93050557394242],[-87.68070270440853,41.93042038840466],[-87.68054085888963,41.930070760025785],[-87.6804747688471,41.92992804143879],[-87.68039977943809,41.929800283101294],[-87.68032153846767,41.92963828576354],[-87.68027842386346,41.92954896308241],[-87.68016031158092,41.92928964824519],[-87.68001238770361,41.928986317007904],[-87.6799508148949,41.928860055657076],[-87.67985109324515,41.92863104722113],[-87.6798398977651,41.92860533681714],[-87.67970518413087,41.92846420300716],[-87.67949568036234,41.92841383370889],[-87.67828917663748,41.92812381901637],[-87.67809995767988,41.92808544126388],[-87.67778988372189,41.92802255066292],[-87.67720225966569,41.9278449360561],[-87.67652350994794,41.92759141339209],[-87.67585841688685,41.927240245583214],[-87.67583066903008,41.92722559472252],[-87.67493827585014,41.926657942698235],[-87.6747461013612,41.92643134771866],[-87.67466641420967,41.926315303913825],[-87.67455456906823,41.92614246221145],[-87.67451286991071,41.92595232265618],[-87.67450903057956,41.925736165536705],[-87.6744762117766,41.92506833159853],[-87.67463218928185,41.925066265764244],[-87.67482780105713,41.92506387461675],[-87.6758401777223,41.92505153465793],[-87.67626188183652,41.92504706367127],[-87.67631152870659,41.92504642845211],[-87.67744157917967,41.92503196171796],[-87.67789934469693,41.92502609850433],[-87.67832092861333,41.92501991400683],[-87.67842772642076,41.92501874054944],[-87.67853033280869,41.925017611970006],[-87.67872511386383,41.92501546932253],[-87.6791256980792,41.92501093409236],[-87.67938531459059,41.925007994241184],[-87.67942323417824,41.92500756475845],[-87.67946213895748,41.925006989941174],[-87.67981335878503,41.92500180016746],[-87.67991842911032,41.925000407478876],[-87.67998704696817,41.92499949772851],[-87.68020633949085,41.924996590834674],[-87.6803174073032,41.92499511801033],[-87.68035013979024,41.92499471772193],[-87.68048190030981,41.92499310665306],[-87.68084441995117,41.92498867390824],[-87.68110424293616,41.92499347938774],[-87.68117853104306,41.924994853045185],[-87.68121108075947,41.92499417732516],[-87.68131443087424,41.924992032648376],[-87.68143322482226,41.9249895672214],[-87.68158623601849,41.92498639140321],[-87.68181302003265,41.92498290047524],[-87.68194000545606,41.92498094587535],[-87.68273797932535,41.924968658961454],[-87.68278127731463,41.92496799210555],[-87.68278127160384,41.9249679031603],[-87.68276888023217,41.92477479208817],[-87.68276887705117,41.92477474349737],[-87.68309998996736,41.924963082845096],[-87.6833193042987,41.92495970415905],[-87.68364080271553,41.924954750715585],[-87.68441265309309,41.92494591464665],[-87.68468460965994,41.92494004491356],[-87.68497858832151,41.92493552857619],[-87.68520910218953,41.92493195979447],[-87.68556699425271,41.924926418237824],[-87.68573087976601,41.92492416404543],[-87.68607210998235,41.92491946985457],[-87.68648343578948,41.92491371978163],[-87.68685719968256,41.92490871723639],[-87.68685855947629,41.92490870046877],[-87.6871223589965,41.924905456025954],[-87.68723834567723,41.92490402943573],[-87.68750878655658,41.92490178716822],[-87.6876419126273,41.92490068324405],[-87.68765558367704,41.92527042537324],[-87.68766214381205,41.92546535712991],[-87.68767006237366,41.92566649874127],[-87.68767835081499,41.925877027125274],[-87.68768409242456,41.92602919923563],[-87.68769201423365,41.926234841098434],[-87.68769915689934,41.92642187300398],[-87.68770527097075,41.926581977727935],[-87.6877089919428,41.926715889364104],[-87.6877160031568,41.92696068671149],[-87.68772179568333,41.92721975127813],[-87.68773553910748,41.92759299940435],[-87.68773833027446,41.927668794924045],[-87.68774265761697,41.92778631320541],[-87.68774985596495,41.92798180800884],[-87.6877619068156,41.928309079172976],[-87.68777210104102,41.9285859238266],[-87.68777391220308,41.928635110770564],[-87.68777581545413,41.92868679135892],[-87.6877780604159,41.928747771846126],[-87.68778702816371,41.92900649276803],[-87.68779690483333,41.929309894742566],[-87.68780027108326,41.92938905981032],[-87.68780676817241,41.9295417272865],[-87.68782993072578,41.93007286438511],[-87.68784061596529,41.93035157531128],[-87.68784960086225,41.93058592536133],[-87.68785963640171,41.930902774831885],[-87.6878680784447,41.93114439619135],[-87.68788402235135,41.93152406664819],[-87.68789281450583,41.93179658988897],[-87.68788269111239,41.932179126647384],[-87.68791721148646,41.93257723862211],[-87.68791770925264,41.93262125901061],[-87.68791849381917,41.932690637070216],[-87.68792045813103,41.93286762296378],[-87.6879237997056,41.93307922122656],[-87.687926963206,41.933279539730734],[-87.68793277104884,41.933545542306895],[-87.68793725199568,41.933787613841126],[-87.68794135185574,41.933986668930444],[-87.68794819925492,41.93431911517933],[-87.68794949144943,41.93439873174119],[-87.68795271060448,41.934597075221966],[-87.68795711117406,41.93487508951288],[-87.68796408374185,41.93515317313155],[-87.68797074487384,41.935505897779336],[-87.68797718480114,41.93565680901272],[-87.68797966366411,41.93571489284136],[-87.68798425423519,41.93596678317046],[-87.68798678784357,41.936103941181365],[-87.68795530084827,41.93608264605413],[-87.68792136147366,41.93606239530414],[-87.68789436279215,41.93604270441405],[-87.68787000639244,41.936037984645445],[-87.68782492113813,41.93601141411165],[-87.68778851222827,41.93598094066517],[-87.6876730909634,41.93589881577012],[-87.68747039716382,41.935702259848895],[-87.68740070063103,41.935616156172436],[-87.68722685245598,41.935463981082535],[-87.68714399704712,41.93538168215377],[-87.68709989900672,41.935337526436854],[-87.6870644160537,41.93530277698605],[-87.68702797780655,41.93527164451768],[-87.68701415616289,41.935246429656225],[-87.68700385148959,41.93522233227895],[-87.68696522023254,41.93517908543338],[-87.68692443156125,41.93513475618261],[-87.6868842607217,41.93505472808737],[-87.68685318799956,41.93499453703432],[-87.68682714409599,41.93496044438331],[-87.6868179229236,41.93493824660138],[-87.68681555731871,41.934921383767026],[-87.68682507052986,41.934907386924785],[-87.68660220336936,41.93466738460837],[-87.68629348956019,41.934354176256136],[-87.68596769200943,41.93403348878648],[-87.68588382827332,41.93400765931419],[-87.68579964496104,41.933962563547425],[-87.68566981686197,41.933902857979525],[-87.68549344247606,41.93379780209395],[-87.6854816347735,41.933797522793306],[-87.6853032608531,41.93379329859352],[-87.68525762304935,41.93378530230235],[-87.68520797185013,41.93375985753497],[-87.68515840458302,41.93372972060199],[-87.68510354463868,41.93370696316338],[-87.68505850357924,41.93369081982569],[-87.68500147558744,41.93367889004463],[-87.68493402922401,41.93367233440991],[-87.68487484101549,41.93367049055127]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3523320.70488","perimeter":"0.0","tract_cent":"1159253.80815193","census_t_1":"17031220200","tract_numa":"30","tract_comm":"22","objectid":"155","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917196.3752291","census_tra":"220200","tract_ce_3":"41.92851319","tract_crea":"","tract_ce_2":"-87.69021452","shape_len":"7966.39200549"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69233227437573,41.924855960913476],[-87.69252814854275,41.92485450978294],[-87.69254359065212,41.92532733600969],[-87.69254587714856,41.92539713414744],[-87.69255265461824,41.9256040045081],[-87.69255914164978,41.92579300805983],[-87.69257217216689,41.926139676683526],[-87.69258182889652,41.92639752279184],[-87.6925906826808,41.92667098398587],[-87.69259850344373,41.92691254218097],[-87.69260678536273,41.927131522635975],[-87.69261958830155,41.9274679262313],[-87.69262758561445,41.92768594459737],[-87.69263808128649,41.92797387228546],[-87.69264867007158,41.928233661753566],[-87.69265271578394,41.92833292589672],[-87.69265392438176,41.92839209810956],[-87.69265793158281,41.92850836058116],[-87.69266206983512,41.92862842123853],[-87.69266579832309,41.928752965315105],[-87.69266862501989,41.92884739198999],[-87.69267254320205,41.92893693043045],[-87.69267696299241,41.92904612030967],[-87.69268174569297,41.92919249644133],[-87.69268593142453,41.92931145526852],[-87.69268763988856,41.929360009291884],[-87.6926900995316,41.929422701080284],[-87.69270189380833,41.929727692368395],[-87.69271215771937,41.93003887484997],[-87.69271713938309,41.93014892431401],[-87.69271783519524,41.93016429941323],[-87.6927260493897,41.93044539429907],[-87.69273955489739,41.93080185803722],[-87.69274830553105,41.9311130600066],[-87.69275849447347,41.93142222169535],[-87.69276398648394,41.93158405141934],[-87.69277761370569,41.93181250190749],[-87.69278038824785,41.931858428226],[-87.69277295922716,41.93213022202917],[-87.69237528764465,41.93213360867306],[-87.69200246839725,41.932135560592386],[-87.6915671827243,41.93213857928518],[-87.69118724274931,41.932141212682176],[-87.6909566415776,41.93214392933211],[-87.69074643913395,41.93214640293402],[-87.69034833002718,41.9321512532064],[-87.69013681634493,41.93215382921569],[-87.6899501492944,41.93215481410787],[-87.68973018764032,41.93215567656135],[-87.6895785108703,41.932156271086654],[-87.68912724518665,41.93215653150629],[-87.68886425553093,41.93215668243925],[-87.68878975660597,41.9321579571682],[-87.68849657386475,41.932162972587605],[-87.68788269111239,41.932179126647384],[-87.68789281450583,41.93179658988897],[-87.68788402235135,41.93152406664819],[-87.6878680784447,41.93114439619135],[-87.68785963640171,41.930902774831885],[-87.68784960086225,41.93058592536133],[-87.68784061596529,41.93035157531128],[-87.68782993072578,41.93007286438511],[-87.68780676817241,41.9295417272865],[-87.68780027108326,41.92938905981032],[-87.68779690483333,41.929309894742566],[-87.68778702816371,41.92900649276803],[-87.6877780604159,41.928747771846126],[-87.68777581545413,41.92868679135892],[-87.68777391220308,41.928635110770564],[-87.68777210104102,41.9285859238266],[-87.6877619068156,41.928309079172976],[-87.68774985596495,41.92798180800884],[-87.68774265761697,41.92778631320541],[-87.68773833027446,41.927668794924045],[-87.68773553910748,41.92759299940435],[-87.68772179568333,41.92721975127813],[-87.6877160031568,41.92696068671149],[-87.6877089919428,41.926715889364104],[-87.68770527097075,41.926581977727935],[-87.68769915689934,41.92642187300398],[-87.68769201423365,41.926234841098434],[-87.68768409242456,41.92602919923563],[-87.68767835081499,41.925877027125274],[-87.68767006237366,41.92566649874127],[-87.68766214381205,41.92546535712991],[-87.68765558367704,41.92527042537324],[-87.6876419126273,41.92490068324405],[-87.6880626045323,41.92489719367448],[-87.68818916629883,41.92489655140028],[-87.68842234438267,41.92489443981249],[-87.6887887497155,41.92489025764666],[-87.68886603669102,41.92488937533602],[-87.68939668284824,41.924883316317974],[-87.6896535335541,41.92488038246594],[-87.68987888470478,41.92487832502995],[-87.68995638989436,41.924877811757625],[-87.69008438605366,41.92487696412605],[-87.69033008937072,41.924875336776644],[-87.69052883571776,41.92487326628573],[-87.69078072345091,41.92487061469492],[-87.69104613590778,41.924867763783986],[-87.69130639777758,41.92486547895697],[-87.69149867320631,41.92486379047122],[-87.69174871898844,41.92486159297868],[-87.69193485796427,41.92485980635666],[-87.69215969570067,41.924857631806674],[-87.69233227437573,41.924855960913476]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7118165.56539","perimeter":"0.0","tract_cent":"1142615.97838178","census_t_1":"17031190800","tract_numa":"32","tract_comm":"19","objectid":"156","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1916824.5658872","census_tra":"190800","tract_ce_3":"41.92781907","tract_crea":"","tract_ce_2":"-87.75136269","shape_len":"10671.2562966"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75580179477379,41.924113051808256],[-87.75614607860857,41.924107116402254],[-87.75616230170233,41.92457487968138],[-87.75616374876897,41.924612675267056],[-87.75618083813828,41.925059080955045],[-87.7561934140625,41.92538757486557],[-87.75621439931585,41.92596405181266],[-87.75622781729241,41.926332640883494],[-87.75624726941021,41.92687121635015],[-87.75626381449648,41.927329278244386],[-87.75628224695197,41.9277779047767],[-87.75629874417218,41.92817942346561],[-87.75631392273979,41.928683367901336],[-87.75631653574943,41.92877012551009],[-87.75632698866325,41.92895590734141],[-87.75635151865083,41.92958824290017],[-87.75635565776317,41.92969781598185],[-87.75635800307734,41.92975540164683],[-87.75637734900438,41.9302838176635],[-87.75638611971013,41.930493883979196],[-87.75639367126415,41.930674732145015],[-87.75640373792899,41.93094902479231],[-87.7564202700555,41.931399471599875],[-87.75585477555335,41.93140747570567],[-87.75501271841358,41.931419181229266],[-87.7541850695091,41.931430624493935],[-87.7539605304413,41.93143371067832],[-87.75347525742244,41.93144037896469],[-87.75283260400194,41.931448382992386],[-87.75212440854814,41.93145813755874],[-87.75175579930286,41.93146246728334],[-87.75150507562913,41.93146685647785],[-87.75119386948163,41.93147230374525],[-87.75068959454826,41.931478801620905],[-87.7498946630792,41.93148903502711],[-87.7493703583847,41.93149559025615],[-87.74905584839378,41.93150003496173],[-87.74877922487578,41.93150394337671],[-87.74818680353674,41.93151245154394],[-87.74737671615118,41.931524209369364],[-87.74724454820738,41.93152570521192],[-87.74687329746736,41.93152990616114],[-87.74677491071866,41.9315310191185],[-87.74659461635315,41.93153305868506],[-87.74658587651447,41.93130439231856],[-87.74657707526704,41.93109213637276],[-87.74656504884591,41.93080209257713],[-87.74655725667941,41.93062867283962],[-87.74655246183376,41.93052198027341],[-87.74654349874743,41.93032251128859],[-87.74651939588598,41.92972453098675],[-87.74651631109772,41.92964795130562],[-87.74651087369975,41.92951274264871],[-87.74649388897006,41.929091335014796],[-87.74648302902278,41.928817954255024],[-87.74647180229117,41.92853532383649],[-87.74646486335502,41.92836063890691],[-87.74646486100382,41.928360574679985],[-87.74645782889998,41.92819625860496],[-87.74644536849735,41.92790912131556],[-87.74643449671512,41.92765859957456],[-87.74642844450536,41.92751913472147],[-87.74641545310566,41.9272186305677],[-87.74640834252759,41.92705415983082],[-87.74640646448526,41.92700443141259],[-87.74639790355644,41.92677773530106],[-87.74638861901528,41.92653188735687],[-87.7463769975371,41.926260286597],[-87.74637582827745,41.926230094386376],[-87.74637053127815,41.92609329443462],[-87.74635839691717,41.92577992415182],[-87.74635435630924,41.92568149492264],[-87.74634770291338,41.92551941477774],[-87.74633752893075,41.925354516968206],[-87.74633388735386,41.92524102478008],[-87.74633190663934,41.92517929668121],[-87.7463198281293,41.92480286398177],[-87.74630174256822,41.9242392153207],[-87.74677359884426,41.92423183119205],[-87.74696937930526,41.924229539171456],[-87.74763851481701,41.92422170157622],[-87.74842950958553,41.92421020154224],[-87.74875824309181,41.92420645138686],[-87.74905484891889,41.92420306699734],[-87.7503349151523,41.924185753598714],[-87.7509274835141,41.92417783845381],[-87.7512272879012,41.924174935310795],[-87.75152080369887,41.92417209254987],[-87.75182205477738,41.92416744464029],[-87.75243668478316,41.924157959178764],[-87.75340264064634,41.92414492213346],[-87.75368247037491,41.924141276951985],[-87.7542649555236,41.92413368692626],[-87.75580179477379,41.924113051808256]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3383150.0499","perimeter":"0.0","tract_cent":"1144590.04924981","census_t_1":"17031190900","tract_numa":"19","tract_comm":"19","objectid":"157","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1916875.09344665","census_tra":"190900","tract_ce_3":"41.92792073","tract_crea":"","tract_ce_2":"-87.74410738","shape_len":"7862.60441409"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74591302481818,41.92424529674747],[-87.74630174256822,41.9242392153207],[-87.7463198281293,41.92480286398177],[-87.74633190663934,41.92517929668121],[-87.74633388735386,41.92524102478008],[-87.74633752893075,41.925354516968206],[-87.74634770291338,41.92551941477774],[-87.74635435630924,41.92568149492264],[-87.74635839691717,41.92577992415182],[-87.74637053127815,41.92609329443462],[-87.74637582827745,41.926230094386376],[-87.7463769975371,41.926260286597],[-87.74638861901528,41.92653188735687],[-87.74639790355644,41.92677773530106],[-87.74640646448526,41.92700443141259],[-87.74640834252759,41.92705415983082],[-87.74641545310566,41.9272186305677],[-87.74642844450536,41.92751913472147],[-87.74643449671512,41.92765859957456],[-87.74644536849735,41.92790912131556],[-87.74645782889998,41.92819625860496],[-87.74646486100382,41.928360574679985],[-87.74646486335502,41.92836063890691],[-87.74647180229117,41.92853532383649],[-87.74648302902278,41.928817954255024],[-87.74649388897006,41.929091335014796],[-87.74651087369975,41.92951274264871],[-87.74651631109772,41.92964795130562],[-87.74651939588598,41.92972453098675],[-87.74654349874743,41.93032251128859],[-87.74655246183376,41.93052198027341],[-87.74655725667941,41.93062867283962],[-87.74656504884591,41.93080209257713],[-87.74657707526704,41.93109213637276],[-87.74658587651447,41.93130439231856],[-87.74659461635315,41.93153305868506],[-87.74591086814333,41.93154244540262],[-87.74579954100369,41.93154345482158],[-87.74533182496394,41.93155068894949],[-87.74498904143061,41.93155598951496],[-87.74474341638965,41.93155838705775],[-87.74465167862346,41.93155928228047],[-87.74414656090207,41.931565491607394],[-87.7437900766385,41.9315698725178],[-87.7430791361043,41.931578129919544],[-87.7425670522852,41.93158634422688],[-87.74253764791722,41.93158681559741],[-87.74214904271915,41.931591401816235],[-87.74193380509725,41.93159410238173],[-87.74191410124718,41.93159434940835],[-87.7419059332393,41.93159445195649],[-87.74189857097006,41.931396342440614],[-87.74188718277283,41.93108755814993],[-87.74186818663573,41.930585922339276],[-87.74186797981281,41.93058046383224],[-87.74185886666774,41.93032383177998],[-87.74183133902417,41.929623912348625],[-87.74182911532989,41.929566271869405],[-87.74181652395248,41.929238614995036],[-87.7417999320419,41.928797052090914],[-87.7417863761402,41.92842565436238],[-87.74177861755068,41.92822031165173],[-87.7417441584298,41.927276462769754],[-87.74173431442138,41.92699958839411],[-87.74170778422118,41.92629144099031],[-87.74168790554747,41.92575827202939],[-87.74167149896438,41.92529681441823],[-87.74164813415895,41.924643910977835],[-87.7416379641654,41.9243033247769],[-87.7416615045187,41.924303053107295],[-87.74171899398642,41.924302389949105],[-87.74183614169029,41.924300466323054],[-87.7422996184243,41.924292854891995],[-87.74237558526781,41.92429160704222],[-87.74264783520479,41.92428798789027],[-87.74292030562113,41.92428436538448],[-87.74351413075185,41.92427583662513],[-87.7438664572751,41.924270227709854],[-87.74417885820831,41.924265253694074],[-87.74507706361639,41.924255546065744],[-87.74543603651085,41.92425166451271],[-87.74591302481818,41.92424529674747]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3039070.5094","perimeter":"0.0","tract_cent":"1132730.67603307","census_t_1":"17031191400","tract_numa":"9","tract_comm":"19","objectid":"158","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1913938.24601324","census_tra":"191400","tract_ce_3":"41.92007703","tract_crea":"","tract_ce_2":"-87.7877555","shape_len":"7125.9905163"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78522633741674,41.91645153072542],[-87.78522633401991,41.916451412432686],[-87.78527112168621,41.916452086144794],[-87.78547130110007,41.91645955870107],[-87.78560856236443,41.916466731353715],[-87.7858109674099,41.91648244636377],[-87.78601287776173,41.91650227555999],[-87.7862138327435,41.91652655977934],[-87.78643676695665,41.916558494428486],[-87.78663671448729,41.916593062891856],[-87.78683570933667,41.916631743648196],[-87.78703283267163,41.91667453123328],[-87.78722808086928,41.91672176839437],[-87.78742191612947,41.91677311623],[-87.78761342109765,41.91682856764325],[-87.78783420128292,41.91689788008736],[-87.78805310733493,41.91697164149037],[-87.78816117401357,41.91700954508994],[-87.7886277406338,41.917178471827214],[-87.78872984383526,41.91721565971979],[-87.78887864881594,41.917269878229206],[-87.788956942902,41.91729837811557],[-87.78926582455266,41.917431565046236],[-87.7894151140512,41.91751009715077],[-87.78941717052624,41.91751117878998],[-87.78963585011022,41.917666234315526],[-87.78974472286505,41.917771717282655],[-87.78993518184316,41.91800519233586],[-87.79007672097373,41.9182123656802],[-87.7901916199277,41.91852815310511],[-87.79022716391076,41.91866964954717],[-87.7902552651533,41.91898468328409],[-87.7902663473125,41.91930272349506],[-87.79028394502457,41.919827298062025],[-87.79029853872115,41.92027296249464],[-87.79031238233841,41.9206987265579],[-87.7903196278841,41.92092756178454],[-87.7903293912625,41.92123873506494],[-87.79032969196284,41.92124842774451],[-87.79034815306335,41.9218428979655],[-87.79036050866094,41.9222274919378],[-87.79038128028087,41.92286562410348],[-87.790399876928,41.92343514012171],[-87.79039965770237,41.92350850227446],[-87.79027322496484,41.9234945163705],[-87.79018628987276,41.92348518642426],[-87.79009833946482,41.92347425995439],[-87.79002886638555,41.92346402485214],[-87.78968374448985,41.9234213096449],[-87.78951954732914,41.923417013458156],[-87.78932389908239,41.923411894323706],[-87.78920775399271,41.92339792470266],[-87.78904410984113,41.9233780767011],[-87.7889267200023,41.923363579491436],[-87.78878602138461,41.92334617250689],[-87.78866815492313,41.9233315630033],[-87.78857550042831,41.923320765906986],[-87.78850589922804,41.92331268130195],[-87.7883616301091,41.92329602524055],[-87.78823777125648,41.92328177104665],[-87.78809181451493,41.92326485965389],[-87.78792730075529,41.92324360637346],[-87.78788082687646,41.92323813782182],[-87.78760334457053,41.9232054865367],[-87.78751638686764,41.92319459024986],[-87.78741273210426,41.92318108982046],[-87.78733954979757,41.92317069797001],[-87.78722262577769,41.923153374400464],[-87.78715628603973,41.9231421096548],[-87.78708123348379,41.92312693378062],[-87.78701771759228,41.92311197740172],[-87.78695259294828,41.92309608029381],[-87.78689455503873,41.9230807931631],[-87.78684906454913,41.923067761106346],[-87.78678176405023,41.92304853302564],[-87.78672839296162,41.92303324058218],[-87.78664765262864,41.923008354601635],[-87.78657783844648,41.92298689325241],[-87.78657201559207,41.922985103180075],[-87.78640144689079,41.92293236998702],[-87.78633676309924,41.92291222107054],[-87.78626661878778,41.922890372120314],[-87.7861833546316,41.92286442658974],[-87.78606210982547,41.92282822865219],[-87.78600090074319,41.922809989627275],[-87.78594636267982,41.92279370333407],[-87.78587848315328,41.92277345659759],[-87.78582401803853,41.922757198036365],[-87.78573348822292,41.92273017472658],[-87.78564035563527,41.922702397988026],[-87.78541142884711,41.922630879222616],[-87.78540518045327,41.92244957505997],[-87.78540053273858,41.92233994826171],[-87.78539585956113,41.92213026664303],[-87.78539530945001,41.92210540402046],[-87.78539358097284,41.92202723730068],[-87.7853884550417,41.921862833339596],[-87.78538175978005,41.92164809266641],[-87.7853773103043,41.92149812658393],[-87.78537208056969,41.92131915023801],[-87.78536878121224,41.92120659352305],[-87.78536330382524,41.921022209847905],[-87.78535988170411,41.92090682598158],[-87.78535636239606,41.92078562387592],[-87.78535261888588,41.920664859774895],[-87.78534889076217,41.92055518244484],[-87.7853445721904,41.92042862526321],[-87.78533879979508,41.920261556263654],[-87.78533544746512,41.9201637906898],[-87.78533204697288,41.920039875911826],[-87.78532578355613,41.91981163203482],[-87.78532130039903,41.91966141876106],[-87.78531726776757,41.91952292550921],[-87.78531340582674,41.91939025084308],[-87.78530546270709,41.91912476324334],[-87.78530036815496,41.91896867437338],[-87.78529565839384,41.9188363249556],[-87.7852880740732,41.918623391116036],[-87.78528440518059,41.918519696457494],[-87.78528007919547,41.91839832579553],[-87.78527737919774,41.91822755982255],[-87.78527538258886,41.91810126751184],[-87.78527145654922,41.917997571616226],[-87.78526638328185,41.917830423553056],[-87.78526316979386,41.91772074862311],[-87.78525776920164,41.917536035890784],[-87.78525270691732,41.91736331707068],[-87.78524833060949,41.91721348843359],[-87.78524471234296,41.91708671497939],[-87.78524142757126,41.91695961380602],[-87.7852366502624,41.91677506867764],[-87.78523159772735,41.91663810698264],[-87.78522633741674,41.91645153072542]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"16497545.6733","perimeter":"0.0","tract_cent":"1121479.29831167","census_t_1":"17031170500","tract_numa":"46","tract_comm":"17","objectid":"159","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924798.72221536","census_tra":"170500","tract_ce_3":"41.95006861","tract_crea":"","tract_ce_2":"-87.82886118","shape_len":"20431.2510887"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.83179009653968,41.95230781707861],[-87.83179303152973,41.95216382174848],[-87.83179302932405,41.95216382173884],[-87.83179302675077,41.95216382172761],[-87.83157590308114,41.95216912136366],[-87.83141257396886,41.95217312751752],[-87.83121879821508,41.9521779335982],[-87.83113806645363,41.95217991720437],[-87.8310405766362,41.95218231261809],[-87.83081455474651,41.952187909972764],[-87.83057323234536,41.95219434574978],[-87.83034698600365,41.95220037917845],[-87.8302610282741,41.95220261451823],[-87.83005709209334,41.95220791774748],[-87.82982970692325,41.95221383676791],[-87.82963467885669,41.95221896316568],[-87.82935016068242,41.95222583116686],[-87.8293501570063,41.95222583115072],[-87.82916524448372,41.95223029479184],[-87.82908276868457,41.95223240595619],[-87.8289392568123,41.95223608015094],[-87.82869712743593,41.95224228862669],[-87.82858890956737,41.952244992925245],[-87.82847114113703,41.95224793613369],[-87.82830968554045,41.952251973278855],[-87.82811929268031,41.952256718755685],[-87.82790448400743,41.95226207267675],[-87.82776740627502,41.95226582559659],[-87.82772832047353,41.95226689551257],[-87.82772831753263,41.95226689549962],[-87.82738959371784,41.95227550179549],[-87.82722751717918,41.952279013829376],[-87.8269893204172,41.95228525716876],[-87.8266933957112,41.95229301393752],[-87.82640203683803,41.95229979532346],[-87.8260789811432,41.952307342075024],[-87.82572187383006,41.95231627413514],[-87.82560809835263,41.952319115430726],[-87.82544738777136,41.95232312824441],[-87.8252500742532,41.95232806886223],[-87.82512326232184,41.952331244134655],[-87.82509097817554,41.952332089144925],[-87.82471658573931,41.95234179226781],[-87.82442783072331,41.952349124905595],[-87.82442694236181,41.95234914758686],[-87.82442676549694,41.95234915229134],[-87.82410311734431,41.95235726714233],[-87.82369563164846,41.95236786295422],[-87.82351938807942,41.95237209006612],[-87.82330462475572,41.95237724046696],[-87.82298233863241,41.952385138670984],[-87.82275827986373,41.95239143634921],[-87.82271089709496,41.952392768151476],[-87.82264181216898,41.952394672169845],[-87.82250685715566,41.952398391751686],[-87.82236290255915,41.95240138863526],[-87.82228528955154,41.95240300393731],[-87.82213365653598,41.952406115915146],[-87.8219782969232,41.95241083375193],[-87.82170883592211,41.95241901523467],[-87.82152326760944,41.95242710686903],[-87.82133267153581,41.952434105262384],[-87.8211798621239,41.95243715612421],[-87.82101094830409,41.95244087558629],[-87.8210109453632,41.95244087557317],[-87.82086010542626,41.952445882644504],[-87.82080617955023,41.95244726486026],[-87.82075189075108,41.95244865640728],[-87.82065953904457,41.95245102340844],[-87.82055189870464,41.952453781984275],[-87.8202630355724,41.95246086134822],[-87.82001497512377,41.952468396841155],[-87.81978633445465,41.95247478376456],[-87.81966931595123,41.95247726328717],[-87.81952406304927,41.95248034136138],[-87.81931157581805,41.95248484382329],[-87.81900518536413,41.95248627051019],[-87.81892863693363,41.95248736828229],[-87.81880105584385,41.952489197787344],[-87.81866788931772,41.95249204464187],[-87.81856227920903,41.952494302223535],[-87.81830320832022,41.95250121110866],[-87.81830356197719,41.95230941619934],[-87.81829687722946,41.95220039735018],[-87.81829654315968,41.95219495077173],[-87.81829603654974,41.95218655146259],[-87.81828892141678,41.952068572724876],[-87.81828582748504,41.95200711083503],[-87.81828445256907,41.95197980462416],[-87.81827925716125,41.95187621447771],[-87.8182744582999,41.95178739000882],[-87.81826836401943,41.95168590887504],[-87.81826770250727,41.95167391970544],[-87.81826624666031,41.95164753518748],[-87.81826989013277,41.95158767266243],[-87.81829028076649,41.951507002028265],[-87.81829609340767,41.951488207970996],[-87.81830594466892,41.95145635884215],[-87.8183244442271,41.951395959225735],[-87.81833378849919,41.95136557323308],[-87.81833641099685,41.95135704498489],[-87.8183417300639,41.951339189429326],[-87.81836028974571,41.95127688366609],[-87.8183800304679,41.951209563744015],[-87.81839177660747,41.95116950636223],[-87.81842395486372,41.95105842745164],[-87.81847364339437,41.95088192252481],[-87.81848680354007,41.95083173487226],[-87.81849516628742,41.950792008076874],[-87.81850484581645,41.95074602322866],[-87.81850417152344,41.95071090242216],[-87.81849814023313,41.950596990247085],[-87.8184837191608,41.95033334324035],[-87.8184747647834,41.95014792524904],[-87.81846465530603,41.94993858399559],[-87.81846049777806,41.949848298613354],[-87.81845417234227,41.949710931345585],[-87.81844611739928,41.949543954685794],[-87.81844377563561,41.94949540852739],[-87.81843409494819,41.94929141463813],[-87.81842376227115,41.9491205271145],[-87.81842375935811,41.94912047797989],[-87.81841682158598,41.94899704776506],[-87.81840853649092,41.94882214803318],[-87.81840641775769,41.94877631607947],[-87.81840377748425,41.948719190963736],[-87.81839504268615,41.94865348258155],[-87.81838830061257,41.94841092357899],[-87.81838326957104,41.94822991414388],[-87.81837637323385,41.94816415911603],[-87.81836603029078,41.947954756637],[-87.81835765605447,41.94778520825083],[-87.81834549093915,41.94753891442349],[-87.81833169276156,41.9472710988364],[-87.81832331466114,41.94710629818842],[-87.8183175426001,41.9469922224429],[-87.81831109134228,41.946852924249846],[-87.81830650446993,41.94675144979349],[-87.81830251330591,41.94666273863921],[-87.81829595397993,41.946552995771924],[-87.81829114216724,41.94647248560783],[-87.81828271059324,41.94642395738197],[-87.81826282180363,41.9463694227955],[-87.8182473530727,41.94632747657167],[-87.81819458489103,41.94619285527327],[-87.81816868087171,41.94612756377121],[-87.81813885937164,41.94605119546886],[-87.8181155400561,41.945989044239084],[-87.81808786748724,41.94591515509046],[-87.81806897485973,41.94586476871197],[-87.81804614435396,41.94580127471657],[-87.81803508007566,41.94575561608502],[-87.8180271183044,41.945698994487294],[-87.8180232989157,41.94560726543395],[-87.81802052980814,41.94553118316072],[-87.81801675588453,41.94542924580099],[-87.8180090034844,41.94525707498418],[-87.81817654592464,41.94525562213504],[-87.81829529948229,41.945252642572015],[-87.81851149079387,41.945246175318644],[-87.81856708070096,41.94524477803276],[-87.81875370407076,41.945240071266795],[-87.81889014213552,41.94523662095244],[-87.81905915442479,41.945232383898755],[-87.8192397474887,41.945227954763766],[-87.81941681029487,41.945223612177045],[-87.81960435115626,41.94521907306269],[-87.81979189199849,41.945214533093015],[-87.81990954293029,41.94521151948605],[-87.81999380922001,41.94520950852477],[-87.82018208317102,41.94520521844986],[-87.82028340514671,41.94520322916738],[-87.82046532154641,41.94519868354629],[-87.82060668608338,41.945195150563805],[-87.82065764129861,41.94519408831739],[-87.82084418466108,41.94519020106248],[-87.82103142997212,41.945185822950855],[-87.82130357535316,41.945178310032226],[-87.8215236285068,41.94517149757937],[-87.82168664009534,41.9451683553136],[-87.82189825367665,41.94516427564944],[-87.82208561636475,41.94515899047321],[-87.82222073327007,41.9451552290018],[-87.8224751860159,41.94514917130817],[-87.82274864654397,41.94514259412548],[-87.82292439403298,41.94513737694685],[-87.82306209020025,41.9451332897839],[-87.82312253076559,41.94513149555105],[-87.82325634224985,41.94512547652254],[-87.82339119755785,41.945117623344785],[-87.82351016550393,41.945110741993915],[-87.82357084039168,41.94510827595648],[-87.82366537254438,41.94510443357433],[-87.82386953550952,41.94509889075544],[-87.82402233341335,41.94509506813164],[-87.82415266817564,41.945091816375424],[-87.82437906993873,41.94508616682796],[-87.82463134550598,41.94508027939011],[-87.82481881739436,41.945075903788464],[-87.8251486820984,41.94506716702308],[-87.82538337310069,41.94506090893788],[-87.82590370977994,41.94504703202105],[-87.82612128392564,41.94504172997735],[-87.82622400966444,41.9450392265622],[-87.82642273090813,41.94503381982101],[-87.82666056978543,41.94502740480165],[-87.82685377677821,41.94502219306673],[-87.82721647546376,41.94501226671572],[-87.82738534230748,41.945007687181075],[-87.8276199455446,41.94500150344464],[-87.82783719155742,41.944996196154584],[-87.82807679159217,41.94499034248329],[-87.8283207742336,41.94498337532235],[-87.82859858123328,41.94497554097928],[-87.82880841461755,41.9449686696346],[-87.82906214257221,41.94496205875757],[-87.82953303112173,41.94494978792904],[-87.82966833080417,41.94494604566133],[-87.82984510180253,41.94494127764369],[-87.83003723976785,41.944936247409665],[-87.83029533148341,41.94492864470793],[-87.83046866043564,41.94492353847762],[-87.83065300540798,41.9449185279656],[-87.83096478499303,41.94490960172842],[-87.83111637214957,41.944905380173275],[-87.8313263082451,41.94489941026903],[-87.83152279220303,41.944893262362974],[-87.83168953146141,41.94488804508245],[-87.83182078593029,41.9448845021415],[-87.83194766723527,41.94488077530003],[-87.83218359993545,41.94487373733331],[-87.83230978361775,41.94486995216211],[-87.83253640950721,41.94486375100891],[-87.83273702968881,41.94485886549194],[-87.83299134168647,41.94485267191041],[-87.83316869862364,41.94484812086607],[-87.83344716532325,41.94484038743199],[-87.8335897442323,41.94483639781234],[-87.833749898372,41.94483188076102],[-87.83395248049447,41.944826621032874],[-87.83415181986676,41.944821444543145],[-87.83430586935694,41.944817229481686],[-87.83434021192247,41.94481588780472],[-87.83443558255631,41.94481332010306],[-87.83461051683035,41.94480826234386],[-87.83481199264043,41.944803017698355],[-87.83517826886445,41.944792937653375],[-87.83543730887038,41.944785808018864],[-87.83578113179881,41.944777968130126],[-87.83616437273696,41.94476840439047],[-87.83643294850832,41.94476073065275],[-87.8364407395466,41.94494580736711],[-87.83645174133555,41.94526264813668],[-87.83648502045546,41.94622101999749],[-87.83649169248609,41.94644108066068],[-87.83649548090932,41.94657893936563],[-87.83649928775756,41.946717456760354],[-87.83650127215138,41.94694951681429],[-87.83651217665576,41.9471737120973],[-87.83652053855128,41.947340811603205],[-87.83655614199746,41.94839842147837],[-87.83657631684297,41.9489976997117],[-87.83662529575975,41.95022002341702],[-87.8366299611985,41.95033645400484],[-87.83666372085014,41.951879997201345],[-87.83666601343788,41.95205240150226],[-87.83669029094496,41.95387790687989],[-87.83669260364597,41.954051804611765],[-87.83668762711078,41.95566810849342],[-87.83668658999969,41.95600492607657],[-87.83667489762766,41.95751088336158],[-87.8366724333189,41.95782825737092],[-87.8366988644817,41.95936021260319],[-87.83651949314358,41.95936334788238],[-87.83647927897748,41.95936416150029],[-87.83641895772132,41.959365382586775],[-87.83615595812654,41.959370440968044],[-87.8359833937281,41.95937375993479],[-87.8359414390131,41.959374480204715],[-87.83578181206957,41.9593772221007],[-87.83559205508236,41.95938042041599],[-87.83556423977207,41.95938088955497],[-87.83556423682872,41.95938088981662],[-87.83541303182353,41.95938355465207],[-87.83511260762954,41.9593889195108],[-87.83487579608276,41.959393434928124],[-87.83477529691015,41.95939552350916],[-87.83460091526307,41.95939847960003],[-87.8344737715906,41.95940063493487],[-87.83437291138044,41.95940187088774],[-87.83422641378556,41.959404404509826],[-87.83385274174752,41.95941088751022],[-87.8329725227025,41.959433316322865],[-87.83272851927516,41.95943731984509],[-87.83267784222684,41.959438150723976],[-87.83263877238407,41.95927154470939],[-87.83262249676667,41.959166698990984],[-87.83260405235814,41.95907589502199],[-87.83257687632081,41.958968614832436],[-87.83257044930788,41.95894347831488],[-87.83257006259805,41.958941966485725],[-87.83256697053703,41.95892990012487],[-87.83255789698967,41.95889449335761],[-87.8325337023334,41.95879619974762],[-87.83250695737067,41.95868554603021],[-87.83248772168834,41.95860662076812],[-87.83246240127502,41.958501872768835],[-87.83243309287252,41.958380560832516],[-87.83242774999027,41.958358831314676],[-87.83240911316754,41.95828303623206],[-87.83237752560954,41.958157107615804],[-87.83237752525693,41.95815710569332],[-87.83237752490433,41.95815710377082],[-87.83234225963822,41.95801715974577],[-87.83230441478118,41.95787330683769],[-87.8322795369315,41.95778258421568],[-87.8322481984308,41.95766294062357],[-87.83224819808036,41.957662938426665],[-87.83224626861445,41.95765557166127],[-87.83223955491216,41.957629941281496],[-87.83221550633112,41.95753658753827],[-87.83221550597854,41.957536585615784],[-87.83220544205703,41.95749614873008],[-87.83219864703929,41.95746884127547],[-87.83218706374834,41.95742219445234],[-87.83217073505723,41.957357167549915],[-87.83215379587749,41.957294936806925],[-87.8321537955249,41.95729493488443],[-87.83213393739352,41.95722048182324],[-87.83211838155192,41.957160013686156],[-87.83209491996878,41.957066910001465],[-87.83208383208624,41.957017959636055],[-87.8320749492037,41.956978651099995],[-87.83206165863929,41.95692000402658],[-87.83205669707544,41.95689632693328],[-87.8320563593224,41.95689466987209],[-87.83204196934655,41.95682403482003],[-87.83203001975345,41.95676317132894],[-87.83202105296064,41.95671576670392],[-87.83201252857297,41.956668254240896],[-87.83200203631222,41.95660904336502],[-87.83200139302285,41.95660541901181],[-87.83199274063523,41.95655669798282],[-87.83197464252271,41.956450060974014],[-87.83196664974672,41.95637694727398],[-87.83195889814958,41.9563366694676],[-87.83194389942477,41.956258736783674],[-87.83193878982209,41.9562351965215],[-87.83192049508526,41.95614897589612],[-87.83190094931133,41.95606294107473],[-87.83188686556686,41.95600234238751],[-87.83188686521427,41.95600234046503],[-87.83187585212748,41.955953365150705],[-87.83187151763563,41.955924751466284],[-87.83186599149728,41.955888695471174],[-87.8318561851482,41.955849931720934],[-87.83184249267846,41.95579575593126],[-87.83184249196042,41.95579575373275],[-87.83182721418572,41.9557374571587],[-87.83182117690636,41.95570090524272],[-87.83181869541879,41.955665768409915],[-87.83181927028356,41.955629958598585],[-87.83182046300405,41.955557544437454],[-87.8318224890946,41.955472618908026],[-87.83182497066178,41.95539993595289],[-87.83182859636717,41.955326684727254],[-87.83182859638224,41.95532668280637],[-87.8318285963973,41.95532668088548],[-87.83183191381767,41.95525523620329],[-87.83183229668346,41.95523866307078],[-87.83183386226212,41.955170832280366],[-87.83183157143273,41.955073814424736],[-87.83182730089828,41.95495264208958],[-87.83182730091335,41.95495264016869],[-87.8318273009284,41.95495263824781],[-87.83182599883484,41.95485611839222],[-87.8318257618465,41.9548264633306],[-87.83182503396972,41.95473534111504],[-87.83182314365249,41.954638822253855],[-87.83182314367615,41.95463881923531],[-87.8318218954933,41.95455418152832],[-87.83182085710799,41.95443340419807],[-87.83182078510552,41.95434879961681],[-87.83182189813233,41.95421620382198],[-87.83182482404376,41.95409621190809],[-87.83182665556023,41.95404078668472],[-87.83182390903886,41.95397845347372],[-87.83181526639643,41.953781957351865],[-87.83180907099091,41.95347954450114],[-87.83180721503544,41.95332237495413],[-87.8318072067195,41.95332165373697],[-87.83180568293321,41.95318954776928],[-87.83180438413002,41.95300820407442],[-87.83180277160655,41.95283874202306],[-87.83180015716661,41.952693917035965],[-87.83179957158346,41.95266699395761],[-87.83179648236371,41.95252491248398],[-87.83179142062376,41.952368744542554],[-87.83179009653968,41.95230781707861]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3456239.7202","perimeter":"0.0","tract_cent":"1144343.26504587","census_t_1":"17031150900","tract_numa":"15","tract_comm":"15","objectid":"167","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924852.38092951","census_tra":"150900","tract_ce_3":"41.9498158","tract_crea":"","tract_ce_2":"-87.74481298","shape_len":"7905.58491452"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74249869441967,41.95347430795827],[-87.74248816186285,41.95297272212326],[-87.74243535479333,41.950425919992185],[-87.7424348184514,41.95040004723022],[-87.74242241178753,41.94984226227201],[-87.74238015392986,41.947999646073164],[-87.74237247338294,41.94708989865734],[-87.74235316540725,41.946185039623295],[-87.74243229955835,41.94618427980746],[-87.74254757447933,41.94618290212751],[-87.74282819943998,41.94617954887746],[-87.74328038330131,41.94617414345469],[-87.74336821093434,41.94617298118681],[-87.74370150742024,41.94616856823878],[-87.74397616130706,41.94616547789316],[-87.74426353515862,41.94616223261551],[-87.74453517173842,41.946159391640805],[-87.74457689815425,41.9461589552389],[-87.74495356523424,41.94615501351714],[-87.74540204071593,41.94614910762976],[-87.7462022301523,41.946138565843846],[-87.74630380748131,41.94613722713221],[-87.74646987282685,41.94613438922846],[-87.74676608557576,41.94612932640147],[-87.74706498045566,41.94612427623143],[-87.7470845263666,41.946386220038335],[-87.7470918295449,41.94658411547719],[-87.74711140940319,41.9469064964483],[-87.74711426613798,41.94703190479177],[-87.74711699327747,41.947151638525405],[-87.74712363560589,41.94732137488518],[-87.74713169608154,41.94754095347801],[-87.74714091751362,41.9477983258687],[-87.74714132790025,41.94794247870476],[-87.74714160585496,41.94804017729307],[-87.74714799771508,41.94827739265734],[-87.74715727730766,41.948616707643716],[-87.74716392837223,41.948857740141115],[-87.74716837161074,41.9490187646805],[-87.74717671106063,41.94934435373689],[-87.7471859751463,41.9496653646527],[-87.74719896004119,41.94977095596219],[-87.74721984501298,41.94994078251324],[-87.74722542545187,41.9501542561792],[-87.74722747768823,41.950233245211514],[-87.74723149414046,41.95038666742394],[-87.74723853003039,41.95066920314261],[-87.74724477041437,41.950919799243216],[-87.74725953786275,41.951330299331914],[-87.74726648188263,41.95157127557797],[-87.74727437777918,41.9518452726084],[-87.7472833566476,41.95219745621335],[-87.74729135154081,41.952473702054284],[-87.74729807265045,41.9527059247124],[-87.74730785072501,41.95304713548147],[-87.74730487275106,41.95341837610393],[-87.74690436127824,41.95343000631961],[-87.74655025659355,41.95343439900569],[-87.74616835819337,41.95343884028069],[-87.74580355451535,41.953443285989124],[-87.74557942785188,41.95344537343455],[-87.74531485837487,41.953447836736096],[-87.74497211839127,41.95344363848222],[-87.74461493177705,41.953447300025175],[-87.74431899813354,41.95345033372879],[-87.74392242316169,41.95346361093433],[-87.74358277724208,41.95347073058223],[-87.74323379458514,41.95347373979884],[-87.7430467974799,41.95347373872556],[-87.74291458173664,41.95347373779457],[-87.74281405868636,41.9534737369927],[-87.74273260389442,41.95347373650003],[-87.74267784349345,41.95347373579974],[-87.7426216702873,41.95347373521369],[-87.74249869441967,41.95347430795827]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7861719.83412","perimeter":"0.0","tract_cent":"1125983.68788329","census_t_1":"17031170800","tract_numa":"36","tract_comm":"17","objectid":"160","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921731.02967719","census_tra":"170800","tract_ce_3":"41.94157654","tract_crea":"","tract_ce_2":"-87.81237166","shape_len":"11315.5594778"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80699920417686,41.94506801807787],[-87.80699400925856,41.944948812695415],[-87.80698881074606,41.94483004636935],[-87.80698813469047,41.944813385841144],[-87.80698349305307,41.94469895793619],[-87.8069799053206,41.94458099481344],[-87.80697743136132,41.94447961189746],[-87.80697419014821,41.9443552288781],[-87.80696967776979,41.94422455575885],[-87.80696551213613,41.94410535507651],[-87.80696248856466,41.94399924956929],[-87.80695767934839,41.9438555125807],[-87.80695290136877,41.94369904253794],[-87.80694813111806,41.943537166407204],[-87.80694419946141,41.94344587992025],[-87.80693492172264,41.94323046637778],[-87.80692201708676,41.942895666882976],[-87.80691283029213,41.942613847923056],[-87.80690517762415,41.94240917610232],[-87.80689797113955,41.942217294401026],[-87.80688887709839,41.94197337328495],[-87.80688356550566,41.94183265286015],[-87.80687724217813,41.94168981446598],[-87.80687523693828,41.94162830749209],[-87.80687259323086,41.94154723099999],[-87.80686685191255,41.941371134724854],[-87.80686086167715,41.94120568571492],[-87.80685431869195,41.94102700673113],[-87.80684457597602,41.940759208111466],[-87.80683758694808,41.94056773898269],[-87.80683065141496,41.94037423936648],[-87.8068217232026,41.94011915020905],[-87.8068155346531,41.93991528083357],[-87.80681259536321,41.93983471942379],[-87.80681175800073,41.93981229965962],[-87.806805588077,41.939632086398426],[-87.80680133045023,41.93951966315477],[-87.8067882414802,41.93916274413312],[-87.80677306743348,41.93873314844506],[-87.8067642596667,41.93849916285556],[-87.80676271243898,41.93845759693828],[-87.80675601197774,41.93827761116537],[-87.80674680673566,41.937996346765935],[-87.80682772465182,41.93799551533001],[-87.80703150471577,41.937993721837735],[-87.80723689503947,41.93799276960655],[-87.80740817603743,41.937991990081635],[-87.80766491365239,41.93799083346883],[-87.807961332974,41.93798917948783],[-87.80822963109462,41.93798768181034],[-87.80843522886809,41.93798832003491],[-87.80860664629603,41.93798882913173],[-87.80879508051333,41.93798938827179],[-87.80896642422427,41.93798992366251],[-87.80917458729225,41.93799179400785],[-87.8092956809235,41.937992881327744],[-87.80942943346501,41.93799239429117],[-87.80973762573443,41.93799138521379],[-87.8099952062073,41.93799052882398],[-87.81025223538661,41.937989669344724],[-87.81039288601028,41.93798962424529],[-87.81061242753715,41.93798955369415],[-87.81081768003459,41.93798746902261],[-87.81104031907576,41.93798516148439],[-87.81129749772887,41.93798390682301],[-87.811485724223,41.93798298805106],[-87.81163234480383,41.937982042939176],[-87.81184530946241,41.93798067011914],[-87.81205118089906,41.937979299826594],[-87.81222275835533,41.9379782126],[-87.81247972069899,41.93797652456284],[-87.81263391249009,41.937975549948895],[-87.8128526599267,41.937973826349356],[-87.81311362225559,41.937971769461946],[-87.81323377822591,41.93797096913406],[-87.81347390639716,41.93796936726897],[-87.81386763872929,41.93796673108682],[-87.81407666972267,41.93796668950846],[-87.81422790392149,41.93796665903392],[-87.81445057447044,41.93796497619673],[-87.81472474442202,41.93796245530322],[-87.81503273564385,41.93795901618475],[-87.81529576461206,41.93795754077694],[-87.81549633728534,41.93795641537083],[-87.81575257423526,41.93795350927739],[-87.81597525160167,41.93795097307818],[-87.81630136477004,41.93794725546122],[-87.81651876080126,41.937938766623034],[-87.81663916904246,41.937934067065726],[-87.8169252305852,41.93792904229992],[-87.81710990924583,41.93792581131229],[-87.81729455172672,41.93792255242272],[-87.81753069457537,41.93791837175611],[-87.81773995548475,41.93791418021069],[-87.81774293919268,41.93802003813162],[-87.81774725503509,41.93812304831192],[-87.81775196847434,41.93824966089256],[-87.81775685144578,41.93838110050144],[-87.81776273028075,41.93853807219001],[-87.81777022489094,41.93873925758588],[-87.81777614859749,41.938902757703765],[-87.81778072249024,41.93902854609757],[-87.8177887959197,41.93925366344531],[-87.81779183594067,41.93934168467748],[-87.81779749274124,41.93950639103799],[-87.81780112168126,41.939593352620776],[-87.81780537971095,41.939695393799944],[-87.81780728984032,41.93974573146605],[-87.81781107777344,41.939845857806695],[-87.81781635899598,41.93998419046302],[-87.81781954499513,41.94007234900122],[-87.81782591958724,41.94024839248577],[-87.81783000261089,41.94036199428615],[-87.81783592009477,41.94052634503703],[-87.81785010918281,41.940904947371116],[-87.81786160204227,41.94120760433466],[-87.8178649009992,41.941327159482896],[-87.81786714970167,41.941408671121884],[-87.81787299784004,41.9415588338903],[-87.8178797310506,41.941722282673204],[-87.81788597367502,41.941873627220225],[-87.81789267409229,41.94203663677046],[-87.8179041780811,41.942315090214485],[-87.81791451058047,41.942565629080036],[-87.8179216625065,41.94280490261346],[-87.81792891492658,41.943068215986344],[-87.81793532487217,41.94322843222366],[-87.81794259226417,41.94341007042018],[-87.81794842908609,41.9435479389616],[-87.81795140369634,41.94363499907828],[-87.81795408068362,41.94371195911596],[-87.8179572175543,41.94380310885099],[-87.8179643552377,41.944007667844204],[-87.81797312791836,41.94422373246316],[-87.8179846046908,41.944592415446195],[-87.81799107787812,41.94478730517705],[-87.81799380597606,41.94486943115281],[-87.81800362844294,41.94513769556345],[-87.8180090034844,41.94525707498418],[-87.81783658065736,41.94525856961729],[-87.81757835585447,41.945249094953226],[-87.81746093231725,41.945242118497184],[-87.81729118269453,41.94522837550082],[-87.81722220197152,41.9452219458261],[-87.81708667029102,41.94520876797071],[-87.8169667034207,41.94519807487315],[-87.81677594877962,41.94517960302588],[-87.81661542161858,41.945164057777],[-87.81649634432152,41.945152517482526],[-87.81633902943597,41.94513753926806],[-87.81620422624552,41.94512518691817],[-87.81606833830254,41.94511516211216],[-87.81598375838503,41.94511050004394],[-87.81581838388924,41.945101275109295],[-87.81569222235532,41.945097605410204],[-87.81555515728384,41.94509765367027],[-87.81542127622505,41.94509770076165],[-87.81524748214419,41.94510235023309],[-87.81513938938,41.94510523782289],[-87.814990084951,41.94510881741543],[-87.81487824918258,41.94511091947882],[-87.81479578755044,41.94511249548576],[-87.81464770429899,41.94511506478587],[-87.8144407279413,41.9451184105541],[-87.81433666664338,41.94511977225703],[-87.81423809467405,41.94512106208719],[-87.81414121115539,41.94512419151077],[-87.81386849727382,41.94512921480411],[-87.81372901107599,41.9451323157751],[-87.81347989287632,41.94513771934928],[-87.81330654910327,41.94514116046329],[-87.81322051721733,41.945143350339144],[-87.8131152616331,41.94514524778312],[-87.81301857455972,41.945146990768166],[-87.81272772155346,41.94515406991555],[-87.81252853346096,41.945157941510324],[-87.81231331283308,41.94516253555638],[-87.81217331436713,41.945165330448],[-87.81194740278119,41.94516921694095],[-87.81182473577375,41.94517143341766],[-87.81169373258159,41.94517380014338],[-87.81156910041936,41.94517647201544],[-87.81139502751523,41.94517919343179],[-87.81117132037129,41.945183198187564],[-87.81103106668492,41.9451857709877],[-87.81088989131321,41.94518858640254],[-87.81077637547045,41.94518933215613],[-87.8106545495461,41.9451922529081],[-87.8105512600663,41.94519472884752],[-87.81033247579978,41.94519905624812],[-87.8102413023473,41.945200616741566],[-87.8100506461914,41.94520391917888],[-87.80996700917326,41.945205404033565],[-87.80956315494747,41.945213194633844],[-87.80942114332439,41.94521563587853],[-87.80931588345994,41.94521744502295],[-87.80909837768242,41.94522273638438],[-87.8088174963085,41.94522853365284],[-87.80863507102738,41.945232228089374],[-87.80839581897628,41.945235717320436],[-87.80821259338408,41.94523968514185],[-87.8079898609405,41.945244508129385],[-87.8077823975334,41.945248882468846],[-87.8076397838057,41.9452522910317],[-87.80746097728073,41.945253969447016],[-87.80727905744526,41.94525876173255],[-87.80718560041188,41.9452608581807],[-87.80700539329031,41.945265047566195],[-87.80699920417686,41.94506801807787]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7170076.47179","perimeter":"0.0","tract_cent":"1134439.65985828","census_t_1":"17031171100","tract_numa":"31","tract_comm":"17","objectid":"161","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921957.75336273","census_tra":"171100","tract_ce_3":"41.94205347","tract_crea":"","tract_ce_2":"-87.78128656","shape_len":"10688.6285927"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7855393061782,41.93832411984616],[-87.78603068234914,41.93831747224924],[-87.78606463704216,41.93844012611497],[-87.78606779692979,41.93858209989497],[-87.78607525131983,41.93884086087547],[-87.78609272758385,41.939238445013444],[-87.78610439006414,41.9395037572719],[-87.78610887369432,41.939606988895406],[-87.78611237313504,41.939687768076745],[-87.78611678468805,41.93979083469975],[-87.7861326776082,41.94015260816075],[-87.78614450624903,41.94042186379104],[-87.78615022703887,41.94054807044134],[-87.78615538120526,41.94069326441273],[-87.78615957649815,41.94080014445583],[-87.78617122622276,41.941069112978326],[-87.78618404194515,41.94136499469782],[-87.7861932459226,41.941582518216435],[-87.78619960134836,41.94173339842545],[-87.7862102500268,41.941993650047216],[-87.7862234988986,41.942317455419264],[-87.78623180163308,41.94248994219081],[-87.78625185472075,41.94291552940004],[-87.78625964717082,41.94308090563648],[-87.78627127051142,41.94336375309462],[-87.7862797229304,41.943565411348594],[-87.7862803995107,41.943581550596555],[-87.78629073573525,41.94382810889425],[-87.7863054355298,41.94417873019137],[-87.78632138571085,41.94456176228623],[-87.78632966106703,41.944748216940106],[-87.78634632078945,41.94512356828102],[-87.78635038456966,41.94521579346894],[-87.78634644202053,41.94550501557703],[-87.78630700214765,41.945663407966094],[-87.78562157260599,41.94567153450984],[-87.7851251212321,41.94568316315435],[-87.78477676354571,41.94568707035208],[-87.78432098954111,41.945691779583065],[-87.78381184461756,41.94569652246174],[-87.78343345572256,41.94570004584172],[-87.78317968558946,41.9457030013517],[-87.7826409724137,41.94570909048252],[-87.7819751139798,41.94571484100407],[-87.78137332504556,41.94572135150528],[-87.78090717626345,41.9457263924744],[-87.78065362935575,41.94572901416804],[-87.78038232638175,41.94573182421103],[-87.77985152059946,41.945737362047886],[-87.77927042485896,41.94574336825281],[-87.77919498943672,41.94574414167613],[-87.77893884474263,41.945746881511354],[-87.77798066671497,41.945756977692],[-87.77675790276993,41.94576823552924],[-87.7765031404691,41.94577147196296],[-87.77649202457334,41.945527787542126],[-87.77648258628133,41.945314911279745],[-87.77646673582507,41.94495741586332],[-87.7764625373191,41.944856924640646],[-87.77645493221304,41.94467489597298],[-87.7764444700376,41.94439917067905],[-87.77643738073236,41.9442123270177],[-87.77642906188285,41.943942531107],[-87.77642508263914,41.943813477702555],[-87.77641487837539,41.94355418134833],[-87.77641214626907,41.94348490367469],[-87.77640548389631,41.94331588247817],[-87.77639505116058,41.94302587770117],[-87.77638233903019,41.942672497223064],[-87.77637884182845,41.942618199552136],[-87.776376342881,41.94256758398024],[-87.7763703741144,41.94244664461242],[-87.77636598876495,41.94233808936374],[-87.77635697319604,41.94211195329782],[-87.77633857144959,41.94165033636062],[-87.77633711603313,41.941613831418664],[-87.77633294905027,41.94150557907699],[-87.77632804873274,41.94138445277268],[-87.77632074212922,41.94119219332791],[-87.77630328489475,41.94073296397726],[-87.77629593286022,41.94053880199378],[-87.77629411072687,41.94049054971723],[-87.77628536509062,41.94027753912954],[-87.77627227555679,41.93995872314931],[-87.77626699538695,41.939819016302486],[-87.7762654340886,41.93977770844396],[-87.77625915231624,41.939595735970016],[-87.77625129729356,41.9393632347057],[-87.77624243518328,41.93910092627867],[-87.77623637569339,41.938956770260916],[-87.77623351741492,41.938907854603656],[-87.77623007374149,41.93884891914068],[-87.77622496143316,41.93875218789604],[-87.77621462941525,41.93844814720843],[-87.77676645562643,41.93844073762011],[-87.77719943306023,41.938435343894355],[-87.77833388037998,41.93842014170115],[-87.77864434501987,41.93841582012293],[-87.77906119123564,41.938410016253],[-87.77925850846343,41.93840776693211],[-87.7794205745929,41.93840593283309],[-87.78013460719852,41.93839691654178],[-87.7807034821249,41.938389557272046],[-87.7810728474402,41.938385171500364],[-87.78142386891625,41.938381002621114],[-87.78197538774702,41.93837454181442],[-87.7823774612346,41.938368293823],[-87.78303719975277,41.93836009662287],[-87.78350563413835,41.93835415750126],[-87.78399229326929,41.93834798533559],[-87.78443468932069,41.938341347041714],[-87.78502053396541,41.9383308916466],[-87.78532129121328,41.93832696585974],[-87.78544630757102,41.938325333897836],[-87.7855393061782,41.93832411984616]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7080076.23865","perimeter":"0.0","tract_cent":"1153046.77074239","census_t_1":"17031160800","tract_numa":"35","tract_comm":"16","objectid":"162","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1925058.18966642","census_tra":"160800","tract_ce_3":"41.9502121","tract_crea":"","tract_ce_2":"-87.71281423","shape_len":"10638.0899501"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71720285636901,41.946509004113075],[-87.71758805291532,41.94650391283713],[-87.717624686747,41.94689844857647],[-87.71761020367964,41.947018773410086],[-87.71765243556455,41.947080107825016],[-87.71764445182343,41.94710547206647],[-87.71763564030381,41.94713346713931],[-87.71763175493582,41.947175670190695],[-87.71762968811343,41.94719811640264],[-87.71763271043223,41.94726226220492],[-87.71763939511044,41.9474041496176],[-87.71764166943099,41.947481929338174],[-87.71764417997258,41.9475677851809],[-87.71765162888656,41.947840408125295],[-87.71766455265863,41.9483259997763],[-87.71767333555913,41.94865602318979],[-87.71767675609195,41.948801045892424],[-87.71769006821428,41.94932775969101],[-87.71769485830517,41.949490874099695],[-87.71770073295673,41.94969027284559],[-87.71770936052097,41.950078762770474],[-87.71771253865275,41.95014828172437],[-87.71772765828374,41.95075451404784],[-87.71773844739197,41.951149985794586],[-87.71775119854246,41.951624281871176],[-87.71776046799674,41.95195821655861],[-87.71776875179982,41.9522566703884],[-87.71777567361706,41.95249460368905],[-87.71778329794267,41.952756690925675],[-87.71779880988456,41.95328989084567],[-87.71780206834798,41.95340189994576],[-87.71781165219596,41.95372994795405],[-87.71781330324485,41.95378645686614],[-87.71658824998853,41.95380403439133],[-87.71536206374957,41.953821615246994],[-87.71412472111301,41.953839342646525],[-87.71290495616718,41.95385680510504],[-87.71168050570493,41.95387469794377],[-87.71127393966577,41.95387908604809],[-87.71046528268704,41.9538919334969],[-87.70923966062975,41.953911120495995],[-87.70801487299269,41.953919715622874],[-87.70801302409521,41.953864136067445],[-87.7080049974688,41.953622883999294],[-87.70800308684797,41.95351370880281],[-87.70800167277788,41.953443998091565],[-87.70800119484537,41.95342369050773],[-87.70799782867024,41.953280641595086],[-87.70799470809617,41.953148573064425],[-87.70798701678042,41.95283722762711],[-87.70798043586788,41.95261161744725],[-87.70797131719446,41.95227710304346],[-87.70796639787945,41.95210791963073],[-87.7079600092529,41.95188818610483],[-87.70795275110103,41.95161528966782],[-87.70794879398713,41.951467272658654],[-87.70794530730004,41.95133506488058],[-87.70794010050395,41.951138139162325],[-87.70793407108403,41.95091258680239],[-87.70792680442268,41.9506405407037],[-87.7079176208024,41.95028101258827],[-87.70791250080734,41.950080560715826],[-87.70791095501201,41.95002580521438],[-87.70790594579583,41.949848583988036],[-87.70790042580202,41.949653632346255],[-87.70789088337067,41.94927600384118],[-87.7078858272998,41.94905616440188],[-87.70788289355737,41.948935101367205],[-87.70787767868804,41.948716468778706],[-87.70787500552579,41.94860635630082],[-87.70787050435469,41.948452389534026],[-87.7078569335729,41.947988205654404],[-87.70785149560096,41.94776984623534],[-87.70784104639515,41.94735716902766],[-87.70783572736104,41.94713793208306],[-87.70783454013026,41.94708888675005],[-87.70782747879194,41.94679722016551],[-87.70782191935378,41.94663093593199],[-87.70793270527878,41.94662951806111],[-87.70814124622882,41.946628842638624],[-87.70884299851221,41.94662306029108],[-87.7095285404039,41.94660938541971],[-87.70979295563424,41.94660518347683],[-87.70982898180554,41.94660461102049],[-87.71034185076098,41.94659645799283],[-87.71041909847646,41.94659555358853],[-87.71044627645544,41.94659523561957],[-87.71050942288346,41.94659449614187],[-87.71078073063771,41.94659131942658],[-87.71088432562419,41.94659050625273],[-87.71094136867075,41.94659005836351],[-87.71105780494783,41.9465891442282],[-87.7113547908999,41.946585569381305],[-87.71149576741041,41.94658387227086],[-87.7119664852488,41.94657820402445],[-87.71202301089781,41.9465775854004],[-87.71210699370803,41.94657666636233],[-87.71223343995779,41.94657528242256],[-87.71234234989589,41.94657409054093],[-87.71271319632868,41.94656673714437],[-87.71284909756007,41.94656404222904],[-87.71329395551261,41.946560271027664],[-87.71353358531664,41.94655673506024],[-87.71394298479132,41.94655150758167],[-87.71419374929995,41.94654830472653],[-87.71421082032529,41.946547684383695],[-87.71445214563866,41.94653891309031],[-87.71455289638818,41.946535711917775],[-87.71460262570592,41.94653413169141],[-87.71463158529038,41.94653321174448],[-87.71471243173289,41.94653225414069],[-87.7148598115748,41.946530508366955],[-87.71515449763665,41.9465282427947],[-87.71516618384031,41.94652815258794],[-87.71555806471112,41.94652513812599],[-87.71577615857437,41.946524920374586],[-87.71592808479166,41.94652476847299],[-87.71609883884615,41.94652268796758],[-87.71638788378101,41.94651916553062],[-87.71654032892576,41.94651730760672],[-87.71672504089656,41.94651505582008],[-87.71720285636901,41.946509004113075]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6190214.58001","perimeter":"0.0","tract_cent":"1146157.83376046","census_t_1":"17031161100","tract_numa":"25","tract_comm":"16","objectid":"163","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924887.00886216","census_tra":"161100","tract_ce_3":"41.94987643","tract_crea":"","tract_ce_2":"-87.73814189","shape_len":"9973.80521545"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74229321925611,41.94618557434491],[-87.74235316540725,41.946185039623295],[-87.74237247338294,41.94708989865734],[-87.74238015392986,41.947999646073164],[-87.74242241178753,41.94984226227201],[-87.7424348184514,41.95040004723022],[-87.74243535479333,41.950425919992185],[-87.74248816186285,41.95297272212326],[-87.74249869441967,41.95347430795827],[-87.74246453647399,41.95347473726992],[-87.74236495255532,41.95347598787923],[-87.74200881781137,41.953481158241075],[-87.74174983782174,41.95348335067891],[-87.74127327846023,41.95348738391856],[-87.74099922872276,41.95349086356862],[-87.74096623367336,41.95349128224321],[-87.74080449431027,41.95349333536895],[-87.74052844021642,41.95350133617022],[-87.74026922733913,41.95350884811628],[-87.73957767758826,41.953512765475644],[-87.73928212650392,41.95351433428803],[-87.73884715928493,41.9535166415502],[-87.73829276845169,41.95352493854086],[-87.73806394438084,41.95352940269933],[-87.73785601727337,41.95353345887568],[-87.73708499770201,41.95353999509026],[-87.7367997104625,41.95354296920077],[-87.73652279864933,41.95354585551533],[-87.73610587314008,41.95354936800903],[-87.73585814319844,41.95355145446951],[-87.73543591560416,41.953559455835666],[-87.7351708456745,41.95356447820204],[-87.73471883585266,41.9535691689333],[-87.73447904397364,41.9535716565911],[-87.73397006219298,41.95357792505838],[-87.73396382957597,41.953345808545656],[-87.73395036387109,41.95292315664634],[-87.7339371592359,41.95250012188768],[-87.73392760160793,41.95218223701531],[-87.73391688140077,41.95182757357177],[-87.73391511001961,41.95176603106064],[-87.73391277641944,41.951684962717444],[-87.73390682808493,41.951491985884104],[-87.73389552763719,41.95112472341793],[-87.73388070139518,41.95063941380078],[-87.73386859177013,41.950240835549636],[-87.73386625366527,41.95016425971669],[-87.73386389971199,41.950086394018435],[-87.7338600716159,41.94995254410298],[-87.73384997201636,41.94959938758832],[-87.73383768375952,41.94921598412126],[-87.73383009651855,41.94899390967507],[-87.73382360531903,41.94880394855193],[-87.73381083537832,41.94829935789966],[-87.73380606083347,41.948113177917406],[-87.73380254320571,41.94797599068705],[-87.73378390422678,41.94742301593042],[-87.73376704247121,41.946868705732584],[-87.73374766147889,41.94629301694139],[-87.73392504287949,41.946290884980336],[-87.73439721686415,41.94628242710947],[-87.73449306113936,41.94628091526506],[-87.73502915925714,41.946272439949404],[-87.7352769856703,41.946270390319306],[-87.7356268913648,41.94626749566258],[-87.73601540275827,41.94626428021421],[-87.73635644221562,41.946261456580295],[-87.73694111098291,41.94625159727486],[-87.73720430049602,41.94624806429559],[-87.73751156978165,41.94624393895115],[-87.73816188201086,41.94623493546602],[-87.73889586072416,41.94622548335405],[-87.73893577887259,41.94622502619372],[-87.73899012090122,41.94622440411678],[-87.73904483974817,41.94622377765289],[-87.73931906850116,41.94622063724813],[-87.73953296067191,41.9462181874374],[-87.7397058281708,41.946215252073316],[-87.73990269563268,41.94621190894373],[-87.73999009223736,41.94621042458686],[-87.74047763812497,41.94620506722753],[-87.74093783970527,41.94619923768252],[-87.74135804288461,41.94619391301689],[-87.7421200806533,41.94618711869521],[-87.74229321925611,41.94618557434491]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5355536.12029","perimeter":"0.0","tract_cent":"1148118.32722296","census_t_1":"17031161300","tract_numa":"30","tract_comm":"16","objectid":"164","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922285.3123304","census_tra":"161300","tract_ce_3":"41.94269958","tract_crea":"","tract_ce_2":"-87.73100248","shape_len":"9661.56262335"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73432053519043,41.93899809996577],[-87.73456674877593,41.938994851326534],[-87.73458617901106,41.93945102629999],[-87.73458739193073,41.939479511053875],[-87.73459024462109,41.93959889954569],[-87.73459298482673,41.939702810042164],[-87.73459895364688,41.93990604359242],[-87.73460742456527,41.94019448506519],[-87.73461076410777,41.940336488458975],[-87.73461930686585,41.94060991226284],[-87.73462551907406,41.940816532319566],[-87.73463057610793,41.940984721771585],[-87.73463266933344,41.94107529168353],[-87.73463658175724,41.94123071755379],[-87.73464026756011,41.941347503343465],[-87.73464521119006,41.94150271477124],[-87.73465139634902,41.941726700626965],[-87.73465623744352,41.94190356560017],[-87.73466080666171,41.94205951599955],[-87.7346645952446,41.94218889827661],[-87.73467870544773,41.942636444311745],[-87.73468494787328,41.9428344448575],[-87.73468851651471,41.942963771085395],[-87.73469140757527,41.9430672981153],[-87.73469576266868,41.94321078861001],[-87.73469861928169,41.9433080586358],[-87.73470325414044,41.943463021419205],[-87.73471560400094,41.94387175491715],[-87.73472441047146,41.94417597005782],[-87.73473247771935,41.944459682288496],[-87.73473688456875,41.9446146710189],[-87.73474631451931,41.94491905402278],[-87.73475148408649,41.94510415106738],[-87.7347555114743,41.94524835329791],[-87.73476388482004,41.94552989886314],[-87.73476679582718,41.94562777697641],[-87.73477038774341,41.945748551179726],[-87.73487645805086,41.945813085282396],[-87.7356268913648,41.94626749566258],[-87.7352769856703,41.946270390319306],[-87.73502915925714,41.946272439949404],[-87.73449306113936,41.94628091526506],[-87.73439721686415,41.94628242710947],[-87.73392504287949,41.946290884980336],[-87.73374766147889,41.94629301694139],[-87.73337113381261,41.946297541719076],[-87.73324150825489,41.94629899105079],[-87.7330031357887,41.94630189361708],[-87.73288560475609,41.94630329107721],[-87.73223241956595,41.946308379735555],[-87.73187418403705,41.94631490150327],[-87.7315078363492,41.946319677941865],[-87.73127968239002,41.946322654641214],[-87.73092572387363,41.94632727245451],[-87.73062955163545,41.94633175538176],[-87.73010183850543,41.94633974131205],[-87.72982173814049,41.946343380696945],[-87.72970332269117,41.946344918986675],[-87.72922793786834,41.946350769050156],[-87.72885813623155,41.94635531853143],[-87.72851299991754,41.946359894947115],[-87.7281936797824,41.94636326200373],[-87.72799401716675,41.946365758027575],[-87.72740107717131,41.94637316973224],[-87.72739496780717,41.94617834250633],[-87.72738241130178,41.94581186830462],[-87.72737718049594,41.94561417496955],[-87.727373266451,41.94546624069795],[-87.72736619629083,41.94519902660221],[-87.72735275647486,41.94480164750295],[-87.72734458010494,41.944559811281536],[-87.72733130627165,41.944167208226794],[-87.72732763328139,41.943984480419125],[-87.72732206133767,41.943707283283565],[-87.72730876951663,41.94326929069373],[-87.72730574754988,41.94316869884561],[-87.72730062118775,41.94299809141028],[-87.72729331123581,41.94273381197115],[-87.7272847398162,41.942423889494485],[-87.72726682609586,41.94179441122849],[-87.72725694023678,41.94144702041774],[-87.72724665245936,41.94116781254654],[-87.7272360609068,41.940880557827676],[-87.72723313835067,41.9408010423456],[-87.72722644660792,41.940587808560984],[-87.72721098320383,41.940136467076286],[-87.72720857121361,41.94000486897536],[-87.72720434306721,41.939774195197714],[-87.72719300564317,41.93934905556936],[-87.72718536266312,41.93909513610319],[-87.72746686918032,41.939092516831394],[-87.72779973197794,41.939087416374576],[-87.72871252205985,41.93907342471106],[-87.72933158225997,41.93906567867662],[-87.72964393048497,41.93906182443893],[-87.72990230317585,41.939058635738505],[-87.7307276490995,41.93904894750662],[-87.73141904828489,41.93904055449702],[-87.73203669244958,41.93903085205026],[-87.7327657204998,41.939019395810824],[-87.73299366660477,41.93901616421267],[-87.73330983716292,41.939011613623904],[-87.73342048504935,41.93900989352436],[-87.73383607804548,41.93900520368196],[-87.73401558120793,41.939002571931574],[-87.73432053519043,41.93899809996577]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10282044.4928","perimeter":"0.0","tract_cent":"1146066.70984714","census_t_1":"17031160200","tract_numa":"51","tract_comm":"16","objectid":"168","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1928137.52923235","census_tra":"160200","tract_ce_3":"41.95879786","tract_crea":"","tract_ce_2":"-87.73839391","shape_len":"16480.069124"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74267784349345,41.95347373579974],[-87.74273260389442,41.95347373650003],[-87.74304827586852,41.954074661025665],[-87.74326602583592,41.95448123805337],[-87.74361317649671,41.95515809842497],[-87.74426305358,41.95649752351394],[-87.74427303071441,41.95651665686789],[-87.74504792624195,41.95800263279919],[-87.74648361808514,41.96073581082121],[-87.746406818583,41.96073666409972],[-87.74618311803867,41.960738413488066],[-87.7458932819165,41.96074241953653],[-87.74557065446459,41.96074587279151],[-87.74532869505659,41.960749243815],[-87.74509776977946,41.96075214178023],[-87.74486283713033,41.96075508954102],[-87.74481630478955,41.9607550990969],[-87.74456794087638,41.96075514949314],[-87.74450248072519,41.960755162840094],[-87.74443938991708,41.96075600799904],[-87.74417798523001,41.960759509013066],[-87.74410991551649,41.96076042064619],[-87.7439914264887,41.960762013050385],[-87.74394933344259,41.960762578792135],[-87.74388659965177,41.96076342163818],[-87.74353443059202,41.96076815353932],[-87.74340407711934,41.96076990474578],[-87.74304333318771,41.96077475024294],[-87.74262599298075,41.96078035445427],[-87.74233799685247,41.96078422103835],[-87.74229742282837,41.96078476572845],[-87.74229538169865,41.96078478513248],[-87.74191496959416,41.96078836941797],[-87.7419107444051,41.96078843766242],[-87.74175252948564,41.960791009700614],[-87.74151028882834,41.96079493625947],[-87.74121984529121,41.96079698173099],[-87.74101362618322,41.96079610705779],[-87.74081490639018,41.960799252568776],[-87.7405989035983,41.96080269297141],[-87.74036569325855,41.960806181304385],[-87.74015878118037,41.960808625030694],[-87.74000945431227,41.96081024087172],[-87.73982171090958,41.960811605785786],[-87.7396983822241,41.96081250217041],[-87.73949473627083,41.96081556531436],[-87.73928333224117,41.96081872516511],[-87.7390964220691,41.960821105818304],[-87.73887630906307,41.96082369844182],[-87.73863983233159,41.96082653518697],[-87.73842512091103,41.96082863846446],[-87.73842961975717,41.96095848519071],[-87.73843617775724,41.96113491733326],[-87.73844529834287,41.96137974820996],[-87.73845293556519,41.96161804016784],[-87.73846073064094,41.96186308369164],[-87.73847035938878,41.96216398139005],[-87.7384779660885,41.96238975955656],[-87.7384879184535,41.96265030556527],[-87.73849304590892,41.96278453746036],[-87.73850066680072,41.96301670968444],[-87.73850973764377,41.96329523884359],[-87.73851004762817,41.963304763132726],[-87.73851777054058,41.96354969643943],[-87.73852618246194,41.96381938607695],[-87.73852900027137,41.963909575407264],[-87.73853238253217,41.9640185380545],[-87.73854149208903,41.964312023580064],[-87.7385469925269,41.96447666265855],[-87.73855141518142,41.96460905333493],[-87.73855875546296,41.96492788588195],[-87.73856008383687,41.96498557631572],[-87.7385739942925,41.96541920597427],[-87.73858787174832,41.96584865160721],[-87.73859025426864,41.96592208635289],[-87.73860255973668,41.96630134787088],[-87.73841233216535,41.96630290916813],[-87.73810412467733,41.966306580501886],[-87.73784681325569,41.9663096264391],[-87.73752031817624,41.96631102217142],[-87.73736504975858,41.9662028570579],[-87.73710608073921,41.966024895160906],[-87.7369075061066,41.96588763927799],[-87.73672549926248,41.96576183401423],[-87.73639298174584,41.96553395529858],[-87.73586459777147,41.96517182511322],[-87.73578121974614,41.96511480750096],[-87.73553127801573,41.964943884826816],[-87.73521246733436,41.964725651331676],[-87.73499468797414,41.964575234567796],[-87.73480508401842,41.96444427747691],[-87.73445661126253,41.96420579988832],[-87.73421675935124,41.96404159704185],[-87.73406708006378,41.96393878613506],[-87.73399026810225,41.96388597076476],[-87.7338251527996,41.9637726509601],[-87.73363168430832,41.96363927412276],[-87.73341426954,41.96348938779964],[-87.73308876078279,41.96326551518118],[-87.73279982486898,41.96306664060283],[-87.7319673221681,41.962493064616176],[-87.73134509868436,41.96206435561401],[-87.73096031464243,41.96179966155538],[-87.7301836665331,41.96126567695987],[-87.72969346425607,41.96092688540229],[-87.73045822427387,41.96091698521525],[-87.73059554487332,41.96091532974355],[-87.73067547030298,41.96091436624174],[-87.73105108618667,41.96091036484751],[-87.73141657309847,41.960906469930755],[-87.73213285240044,41.96089883346454],[-87.732720792672,41.96089221464965],[-87.73310464046119,41.96088802292883],[-87.7332487844943,41.96088629842102],[-87.73343672568237,41.960883795740514],[-87.7334769173699,41.96088326041729],[-87.7334974364565,41.960882987277934],[-87.73380830415628,41.96087901286277],[-87.73400348760441,41.96087660168305],[-87.73418775594583,41.9608752876988],[-87.73417688156343,41.96077462899878],[-87.73417654324082,41.960771496088434],[-87.7341701979647,41.96049119670221],[-87.73416130323959,41.960106274664206],[-87.73414994174118,41.95970995124842],[-87.73413697475505,41.95925739052849],[-87.73413248726727,41.95905097768864],[-87.73412808503745,41.95884845657868],[-87.7341134658661,41.958383867517135],[-87.73410261570665,41.958042897409435],[-87.73408988733087,41.957627713973544],[-87.73408488820132,41.957427470137496],[-87.73407838888404,41.95722763915177],[-87.73407361359001,41.95708081723535],[-87.73407218863713,41.95702587065916],[-87.73407042468125,41.95695813428151],[-87.73406515632766,41.95678275158466],[-87.73406232519415,41.956653237401675],[-87.73405453811235,41.9565700745457],[-87.73404768786128,41.956496795744876],[-87.73404546564045,41.956435752848364],[-87.73404517212485,41.9563705869595],[-87.73403894362806,41.95608614749478],[-87.73402861193411,41.95561923400543],[-87.73402723258543,41.95556201571865],[-87.73402186685121,41.95545626139814],[-87.73398832134725,41.95481839909641],[-87.73398166031303,41.95469556075609],[-87.73400471293341,41.95459334963725],[-87.73399443591455,41.954411052742664],[-87.73398402216532,41.954108097797686],[-87.73397571235584,41.95378832026045],[-87.73397006219298,41.95357792505838],[-87.73447904397364,41.9535716565911],[-87.73471883585266,41.9535691689333],[-87.7351708456745,41.95356447820204],[-87.73543591560416,41.953559455835666],[-87.73585814319844,41.95355145446951],[-87.73610587314008,41.95354936800903],[-87.73652279864933,41.95354585551533],[-87.7367997104625,41.95354296920077],[-87.73708499770201,41.95353999509026],[-87.73785601727337,41.95353345887568],[-87.73806394438084,41.95352940269933],[-87.73829276845169,41.95352493854086],[-87.73884715928493,41.9535166415502],[-87.73928212650392,41.95351433428803],[-87.73957767758826,41.953512765475644],[-87.74026922733913,41.95350884811628],[-87.74052844021642,41.95350133617022],[-87.74080449431027,41.95349333536895],[-87.74096623367336,41.95349128224321],[-87.74099922872276,41.95349086356862],[-87.74127327846023,41.95348738391856],[-87.74174983782174,41.95348335067891],[-87.74200881781137,41.953481158241075],[-87.74236495255532,41.95347598787923],[-87.74246453647399,41.95347473726992],[-87.74249869441967,41.95347430795827],[-87.7426216702873,41.95347373521369],[-87.74267784349345,41.95347373579974]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3499100.43764","perimeter":"0.0","tract_cent":"1165791.43210898","census_t_1":"17031062700","tract_numa":"16","tract_comm":"6","objectid":"193","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1920006.23838309","census_tra":"062700","tract_ce_3":"41.93608654","tract_crea":"","tract_ce_2":"-87.66611069","shape_len":"7944.98084315"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66779016085125,41.93241079806263],[-87.66839400828434,41.932403540975635],[-87.66839785068291,41.93249439692983],[-87.66841333264746,41.932868524116074],[-87.66842972035377,41.93325099867652],[-87.66843107875579,41.93330927045441],[-87.66844103377919,41.93373635207624],[-87.66844437889378,41.933816572099445],[-87.66846148844806,41.934226890059875],[-87.6684683090999,41.93439045760962],[-87.66848125341836,41.93477897684899],[-87.66849468083257,41.93513635169459],[-87.6685044896132,41.935397411461075],[-87.6685294534081,41.93604891396495],[-87.66853077650478,41.93608345377882],[-87.66855037985442,41.9365771973567],[-87.66856395775591,41.9369581510066],[-87.66857639281062,41.937307035664254],[-87.66859604444093,41.937863996315855],[-87.66860481713222,41.93811262825113],[-87.66862224292852,41.938561682899795],[-87.66862890972082,41.93873348235557],[-87.66864401854582,41.93912278220016],[-87.66866167476945,41.939696500752774],[-87.66776143849118,41.93970833470084],[-87.66703255785117,41.93971804776177],[-87.66624225686344,41.93973006865068],[-87.66564850902162,41.93973909613926],[-87.6651693091197,41.93974484296029],[-87.66466246628438,41.93975094819597],[-87.6644545797909,41.939754390667424],[-87.6638209258618,41.93976488119715],[-87.66381108780075,41.9394682445044],[-87.66380131375165,41.93922905643375],[-87.6637884447227,41.93885680379079],[-87.6637759470927,41.938495296899944],[-87.66375518492735,41.93794112350345],[-87.66374302061661,41.93761643410021],[-87.66373769658937,41.937278644430485],[-87.66372546428701,41.93702862970815],[-87.66371978601106,41.93691257077316],[-87.66371044514538,41.93672165619128],[-87.66370533115692,41.93658370222684],[-87.66368789372454,41.936113339998485],[-87.66368574224171,41.93605529820385],[-87.66367496781928,41.93577757531759],[-87.66366697681653,41.935515620467726],[-87.66365650958215,41.93524209772644],[-87.66365518828374,41.935207568293656],[-87.66363834557814,41.934767434246574],[-87.66363786764828,41.93475072657328],[-87.6636317523999,41.93453696369791],[-87.66362439655819,41.93429729830038],[-87.66361703355902,41.93405740782482],[-87.663609665947,41.93388340877007],[-87.66359954979337,41.933578686490804],[-87.6635928981163,41.93338544336427],[-87.6635825823604,41.93308572562501],[-87.66358251524682,41.93293068914978],[-87.66358246788059,41.932822664020954],[-87.66357408610978,41.932612133440266],[-87.66356800061544,41.9324804626355],[-87.66426867157254,41.93246881838063],[-87.66477158153441,41.93246079838183],[-87.66598487005798,41.932441433144824],[-87.66607575806373,41.93243998223825],[-87.66706947810944,41.9324211646558],[-87.667191142549,41.93241941423073],[-87.66779016085125,41.93241079806263]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15057898.6287","perimeter":"0.0","tract_cent":"1130195.30559279","census_t_1":"17031170300","tract_numa":"43","tract_comm":"17","objectid":"165","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924507.84855918","census_tra":"170300","tract_ce_3":"41.94912517","tract_crea":"","tract_ce_2":"-87.79682805","shape_len":"16646.3570529"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78655950676234,41.95291650502593],[-87.78654868181891,41.952672123170004],[-87.78653218602467,41.95231998975672],[-87.78653201751216,41.952316393205734],[-87.78652660529578,41.95221411787787],[-87.78652118455635,41.95208703477861],[-87.78651526995317,41.951948917294025],[-87.78650964104192,41.95181772126086],[-87.78650492357893,41.95170776103112],[-87.78648959163499,41.95135039164003],[-87.7864828065895,41.95119223692311],[-87.7864787769973,41.951095783980456],[-87.78646620492165,41.950794849922204],[-87.786452072795,41.9504655312754],[-87.78645032301682,41.95042677457464],[-87.78644012135544,41.95020082162927],[-87.78642604716235,41.94988909393876],[-87.78641409018863,41.949580586777174],[-87.78640124624681,41.94929337051308],[-87.78638582119282,41.948948431006514],[-87.78637432209216,41.948650902849835],[-87.78636266309718,41.94839036572007],[-87.78634700728995,41.948040513176686],[-87.78633711718062,41.947799907754536],[-87.78632380213907,41.94748316134285],[-87.78631011330307,41.9471575218583],[-87.78630312988173,41.94698542598205],[-87.78628598127402,41.94657656494653],[-87.78627610626687,41.946341118939586],[-87.78626815979412,41.94615699876222],[-87.78627899012399,41.945775905555315],[-87.78630700214765,41.945663407966094],[-87.78666874639656,41.94565923906355],[-87.78696342454796,41.945652401113],[-87.78701809577088,41.945651132459815],[-87.78711390865811,41.94564878921602],[-87.7875763875553,41.94564219765063],[-87.78781843586489,41.9456387469835],[-87.78817725532356,41.94563212448372],[-87.78829854168345,41.945629885558205],[-87.78838563625818,41.94562830008083],[-87.78878324114427,41.945621061200754],[-87.78891074036477,41.9456187396797],[-87.78908798247333,41.94561532644026],[-87.78938022717568,41.94560939088803],[-87.78979239822975,41.94560101802247],[-87.78998721440553,41.94559709795497],[-87.79018765705507,41.94559306394412],[-87.79040582085071,41.94558852529675],[-87.79058835904016,41.94558471409535],[-87.79069946342992,41.945582394314606],[-87.79084236914197,41.945579419809924],[-87.7911730961277,41.945571739735286],[-87.79123124084153,41.94557038942981],[-87.79144990586269,41.94556741509638],[-87.79166020047525,41.94556319339943],[-87.79191185536247,41.94555815100224],[-87.79219660271926,41.945551946801416],[-87.79232730061457,41.94554947108496],[-87.7923832659915,41.945548410967994],[-87.79270939285321,41.9455422330504],[-87.79293244304309,41.94553799224579],[-87.79318791878407,41.94553312419972],[-87.79342269350379,41.94552895955383],[-87.79354784486539,41.945526041987875],[-87.79370090031632,41.9455224738849],[-87.79414799256624,41.94551394297684],[-87.7943310058781,41.94551045022703],[-87.79458299376356,41.94550510167315],[-87.79476817533288,41.94550166203371],[-87.79481312921274,41.945500824873776],[-87.79494357766116,41.94549839577676],[-87.79520327382849,41.94549434434862],[-87.79537603105143,41.945490937701514],[-87.79546864070433,41.94548911144096],[-87.79569955396471,41.945485171028906],[-87.79598683076055,41.94547918277139],[-87.7961801084125,41.94547515361111],[-87.79630510380619,41.94547318620084],[-87.79651557545358,41.94546969710279],[-87.79659903329704,41.945467781586416],[-87.79703599203859,41.945457749695336],[-87.7972023589171,41.9454541307039],[-87.79732055456901,41.94545155936363],[-87.79748047161435,41.94544945183591],[-87.79757679332064,41.945447721604864],[-87.79757991825984,41.945447665660154],[-87.79781040929555,41.94544148111931],[-87.79809111217469,41.945435231083884],[-87.79824234899657,41.94543374064225],[-87.79841256099422,41.945430480295826],[-87.79868024924637,41.94542535259001],[-87.79888050393623,41.945421647199794],[-87.7990293605673,41.9454190159434],[-87.79943471919202,41.94541184925039],[-87.79963148613226,41.945407617827456],[-87.79977152384551,41.945404605977764],[-87.79996869275595,41.94540060992697],[-87.80010266281973,41.9453979391329],[-87.80024288017815,41.945395552401806],[-87.8003813314002,41.94539319572042],[-87.80053066358946,41.94539087015664],[-87.80070786171122,41.94538817943782],[-87.80084131719708,41.94538554134392],[-87.80092598545728,41.94538386759164],[-87.80145249797262,41.945372416077866],[-87.80182454845009,41.94536583005047],[-87.80207572526848,41.94536080542014],[-87.8021777086261,41.94535876520021],[-87.80229579677147,41.945356347679315],[-87.80250660477589,41.9453521087619],[-87.80268370054249,41.94534848505212],[-87.80291704522205,41.945343741967896],[-87.80312769521618,41.94534081813201],[-87.8033077910955,41.94533622351018],[-87.80340822124528,41.9453336613086],[-87.80352990976964,41.94533142351451],[-87.80375611919122,41.94532725309572],[-87.80392291977083,41.945324132948386],[-87.80419305843913,41.94531933354192],[-87.80441999757093,41.94531576890673],[-87.8045435986882,41.94531133688514],[-87.80463428906862,41.94530808413538],[-87.80476322535677,41.94530511030052],[-87.8051570264693,41.94529804280552],[-87.80531696242608,41.94529517198274],[-87.80577476670251,41.94528606135921],[-87.80597228834226,41.945282130162866],[-87.80632288912271,41.94527775758447],[-87.8063917124159,41.94527630536692],[-87.8065992188815,41.94527123204072],[-87.80676787981903,41.94526959515564],[-87.80683555693678,41.945268995533596],[-87.80700539329031,41.945265047566195],[-87.80701245866915,41.945489975531416],[-87.80701762276644,41.945608467262986],[-87.80702262921217,41.94573272113501],[-87.80702933262025,41.94591881009855],[-87.80703332902051,41.946049672907655],[-87.80703717569597,41.94618086433395],[-87.80704474273412,41.946387099826794],[-87.80704946756663,41.946518789504665],[-87.80705594402201,41.94670567295092],[-87.80705872968451,41.94678370365742],[-87.80706142816207,41.94687465979417],[-87.8070647308978,41.94698707823462],[-87.80706812833067,41.94707949173459],[-87.8070723307893,41.94719380780743],[-87.80707653510223,41.94731281650435],[-87.80708609052417,41.94758124511471],[-87.80708974542354,41.94768213942722],[-87.80709157702306,41.947732037757625],[-87.80709677517639,41.94788222534618],[-87.80710378290514,41.94807605433371],[-87.80711050438275,41.94825105664902],[-87.80711593523478,41.94839526288904],[-87.80712060488541,41.94852028353537],[-87.80712699516124,41.948695339202786],[-87.80713059041904,41.94879455924689],[-87.80713412410587,41.948898629965235],[-87.80713662734227,41.94897235750633],[-87.80713972086109,41.949070011040384],[-87.80714313408605,41.94918242994246],[-87.80714931625108,41.94936939455007],[-87.80715522924498,41.949544393118565],[-87.80715942251354,41.949669246902175],[-87.80716395445694,41.94980656099327],[-87.80716853425866,41.94993805755427],[-87.80717286964544,41.95006351570857],[-87.80717827678164,41.950219576821],[-87.80718224618148,41.95034484119628],[-87.80718928052936,41.9505236867798],[-87.80719803862475,41.95067745809078],[-87.80719930366124,41.95072537082447],[-87.80720557887761,41.95096305611411],[-87.80720740430147,41.95104506175192],[-87.80721393265708,41.9512927848952],[-87.8072169479003,41.95136904546928],[-87.80722397538177,41.95154678095109],[-87.80723314654492,41.95179501014152],[-87.80724205387845,41.95204850701181],[-87.80724836303924,41.95221650982679],[-87.80725207801419,41.95231542794262],[-87.80725393637806,41.95236491499492],[-87.80726132112645,41.95257554016846],[-87.80726416758772,41.95264520147766],[-87.80726923353244,41.95276460779923],[-87.80700774163775,41.95276219256588],[-87.80670618339467,41.952765918387975],[-87.80635839485076,41.95276755610995],[-87.80607408362972,41.95276616874344],[-87.8057874564711,41.952764769482556],[-87.80562417809692,41.95275770714502],[-87.80547339460007,41.95275564216458],[-87.80527768021713,41.952754412871876],[-87.80503156385652,41.95275322575551],[-87.80483668072512,41.95275372839357],[-87.80457257201478,41.95275440586513],[-87.80441948941204,41.952754743549775],[-87.804214646698,41.9527548699435],[-87.80402737996573,41.95275458304277],[-87.803815118067,41.95275387869605],[-87.80360748807972,41.95275319752341],[-87.80342360614837,41.95275259375322],[-87.8032617423897,41.95275231307875],[-87.80298117898711,41.95275118206123],[-87.8025731261536,41.95274962571375],[-87.80237820740433,41.95275007900863],[-87.80225721835829,41.95275036025021],[-87.80207019943887,41.952751223874934],[-87.80177357187566,41.9527499606877],[-87.80154381968504,41.95274821041217],[-87.80132303291875,41.95274702317121],[-87.80113748698945,41.95274749995321],[-87.80098021363293,41.95274790391078],[-87.80069938433714,41.952747808887],[-87.80032065882315,41.95274733529858],[-87.80023147382596,41.95274722884955],[-87.80013082829801,41.95274665335831],[-87.80002730365902,41.95274606111219],[-87.79992150735605,41.95274517227111],[-87.799720724445,41.95274348405421],[-87.7994398143494,41.952744263998],[-87.79917622164555,41.95274473908496],[-87.79900670857829,41.95274482845559],[-87.79877430871937,41.95274322524305],[-87.79870670228485,41.952743122852205],[-87.79848590884377,41.95274278769213],[-87.79813854202776,41.95274234870452],[-87.79789186333024,41.95274248860218],[-87.7977129716687,41.9527430262829],[-87.7976195921559,41.952743304106306],[-87.79748121637517,41.95274317015455],[-87.79736468285924,41.95274293767525],[-87.79714718661627,41.952743925422276],[-87.79713243888511,41.9527438398076],[-87.79688221382003,41.95274238579218],[-87.7966862924858,41.95273960412432],[-87.79643577339084,41.95274178083166],[-87.79627235690756,41.952742895216296],[-87.79608489037633,41.95274417317391],[-87.79581544370544,41.95275010213594],[-87.79554796849007,41.952757658514095],[-87.79531452666822,41.95276188860136],[-87.79505509231967,41.9527662707762],[-87.79463788152168,41.952773946186504],[-87.7944466565236,41.95277658884081],[-87.79407842985023,41.952782324190345],[-87.79394783357985,41.952784125633784],[-87.79384393643969,41.95278485343992],[-87.79370864173772,41.95278580076121],[-87.79354789068519,41.95278866747126],[-87.79331388079594,41.95279483921397],[-87.7930045829179,41.95280076595074],[-87.79268682920986,41.95280673436253],[-87.79207588428855,41.952818015964475],[-87.79170974148359,41.95282507076447],[-87.7915961027567,41.95282707109737],[-87.79151056853175,41.952828576624945],[-87.79135393391974,41.95283162269562],[-87.7912413813789,41.952833811941815],[-87.7911313353622,41.95283595199323],[-87.79100553684387,41.952839830910115],[-87.79089332116696,41.952841743142606],[-87.79063376463087,41.95284615646012],[-87.79031238629032,41.95285162037918],[-87.79012735846409,41.95285606889035],[-87.79000271170929,41.95285855260658],[-87.78979357265875,41.95286239251469],[-87.78958391892951,41.95286622960426],[-87.78946798969051,41.95286815029803],[-87.78916259700775,41.95287301493715],[-87.7889849327524,41.95287615184114],[-87.7888253952873,41.95287896280761],[-87.78857245967377,41.952884211860116],[-87.78832378855326,41.95288945452886],[-87.78807202877316,41.95289476157262],[-87.78760614605561,41.9529020156109],[-87.787130666924,41.95290941392575],[-87.78711754526944,41.95290957707481],[-87.78655950676234,41.95291650502593]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7115286.70444","perimeter":"0.0","tract_cent":"1142356.24833786","census_t_1":"17031150800","tract_numa":"32","tract_comm":"15","objectid":"166","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924799.93119258","census_tra":"150800","tract_ce_3":"41.94970908","tract_crea":"","tract_ce_2":"-87.75211841","shape_len":"10679.6151662"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74730487275106,41.95341837610393],[-87.74730785072501,41.95304713548147],[-87.74729807265045,41.9527059247124],[-87.74729135154081,41.952473702054284],[-87.7472833566476,41.95219745621335],[-87.74727437777918,41.9518452726084],[-87.74726648188263,41.95157127557797],[-87.74725953786275,41.951330299331914],[-87.74724477041437,41.950919799243216],[-87.74723853003039,41.95066920314261],[-87.74723149414046,41.95038666742394],[-87.74722747768823,41.950233245211514],[-87.74722542545187,41.9501542561792],[-87.74721984501298,41.94994078251324],[-87.74719896004119,41.94977095596219],[-87.7471859751463,41.9496653646527],[-87.74717671106063,41.94934435373689],[-87.74716837161074,41.9490187646805],[-87.74716392837223,41.948857740141115],[-87.74715727730766,41.948616707643716],[-87.74714799771508,41.94827739265734],[-87.74714160585496,41.94804017729307],[-87.74714132790025,41.94794247870476],[-87.74714091751362,41.9477983258687],[-87.74713169608154,41.94754095347801],[-87.74712363560589,41.94732137488518],[-87.74711699327747,41.947151638525405],[-87.74711426613798,41.94703190479177],[-87.74711140940319,41.9469064964483],[-87.7470918295449,41.94658411547719],[-87.7470845263666,41.946386220038335],[-87.74706498045566,41.94612427623143],[-87.74728865655409,41.94612049668032],[-87.74769458693618,41.94611342531927],[-87.74800473543412,41.946110620539315],[-87.74830757365903,41.946108541663136],[-87.74876850457026,41.94610320556981],[-87.74918944418708,41.946097609282475],[-87.74949128118985,41.94609244866474],[-87.74965292472116,41.94609076286157],[-87.7499122832085,41.94608805750045],[-87.75033131330339,41.94608222778542],[-87.75077754410134,41.946076479673934],[-87.75122126387218,41.94607197943755],[-87.75162308953766,41.946066270181134],[-87.75201301127798,41.946061438593446],[-87.75235526026967,41.9460571965058],[-87.75294633273319,41.946050087191026],[-87.75363387701034,41.9460411565453],[-87.7541855172017,41.946032881546],[-87.75448913591428,41.94602983887922],[-87.75483951528068,41.946026326857755],[-87.75528934495055,41.946020881205534],[-87.75595023674713,41.946012104637006],[-87.75662621950342,41.94600518353427],[-87.7569213613549,41.946000759536965],[-87.756928197806,41.94623315320286],[-87.75693398605694,41.946441578528],[-87.75693418893323,41.94644888685275],[-87.756934435688,41.94645777167714],[-87.75693963334373,41.946644925783964],[-87.75694826502897,41.946915823787215],[-87.75695986608089,41.947279902355966],[-87.75697429309336,41.94770236488644],[-87.75697719198463,41.9478310363526],[-87.75698077947409,41.947990265947254],[-87.75698962625383,41.948286534163145],[-87.75699439203692,41.948446121468486],[-87.75700442096172,41.94873840906885],[-87.75701046417882,41.94891453037405],[-87.7570187224724,41.9491909417207],[-87.7570235135583,41.949351283238045],[-87.75703258311859,41.94964783021439],[-87.75703651960904,41.94977653757945],[-87.75704777149355,41.95010352144681],[-87.75704916410534,41.95014399685935],[-87.75705452990886,41.95028299095009],[-87.75705753913498,41.95036511303074],[-87.75706384528343,41.950556149325465],[-87.7570674163744,41.95066433714841],[-87.75707570269863,41.95096061695281],[-87.75707697683208,41.95100249515687],[-87.7570865664831,41.95131766663506],[-87.75709043734703,41.95145225092065],[-87.75709608471914,41.951648612042256],[-87.75710419386506,41.95190193458868],[-87.75711223713034,41.952153189849184],[-87.75711833397688,41.95235092393786],[-87.75712583698902,41.95259425364044],[-87.75713280444037,41.95280268217594],[-87.75714159137033,41.95306551458358],[-87.75714771901497,41.95329972408642],[-87.75687468836756,41.953306763462784],[-87.75631239962543,41.953310744519975],[-87.75602739035024,41.95331326342497],[-87.75591484836134,41.95331443044426],[-87.75557828860393,41.95331791974027],[-87.75469058610732,41.953329323368074],[-87.7537920252629,41.953340859611565],[-87.7534661720061,41.953343387710945],[-87.75315138517044,41.953345829207194],[-87.75264766428562,41.953349265],[-87.75223939447693,41.95336010044677],[-87.75193815127824,41.953368094497215],[-87.75155665261666,41.95337312789109],[-87.75145164580734,41.95337441131821],[-87.75120049704898,41.95337264421666],[-87.75103343213436,41.95337412355971],[-87.75086155160932,41.95337564518744],[-87.7505475125515,41.95337668598278],[-87.75024831205626,41.95337519454999],[-87.75001448690007,41.95338059263441],[-87.74986033124571,41.95338558149435],[-87.74962093300242,41.95339332886567],[-87.7493014563947,41.953398015855406],[-87.74907330319189,41.95339822714067],[-87.74880866447468,41.95340025550015],[-87.7484143125441,41.95340373552627],[-87.74795590853415,41.95340438463876],[-87.74773138209115,41.953405989619],[-87.74730487275106,41.95341837610393]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3072583.58524","perimeter":"0.0","tract_cent":"1175453.97021121","census_t_1":"17031080200","tract_numa":"17","tract_comm":"8","objectid":"183","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909685.4477724","census_tra":"080200","tract_ce_3":"41.90755403","tract_crea":"","tract_ce_2":"-87.63091099","shape_len":"7626.08163559"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62888562429376,41.91122300767783],[-87.62886411882823,41.91046917973847],[-87.62884906078045,41.910037749500056],[-87.62884229153376,41.909834799693684],[-87.62883638255815,41.909657156948455],[-87.62883140152772,41.90948155912735],[-87.62881832687833,41.909020631735594],[-87.62880395318676,41.90864060527452],[-87.62879735968494,41.90840428666483],[-87.62878943350093,41.9081201828307],[-87.62878659127043,41.90800444122709],[-87.62878477912236,41.90779943038445],[-87.62877632537827,41.90684329454341],[-87.62877520624845,41.90676392508672],[-87.62877287828478,41.90659884480101],[-87.6287429348203,41.9058190015772],[-87.62873252587269,41.90554791363388],[-87.62871026449986,41.90485436474391],[-87.6287066144431,41.904740648573345],[-87.6286907444421,41.904296370181356],[-87.62867698238603,41.90403456837339],[-87.6286780013847,41.90394189780993],[-87.62910265870428,41.903934655274284],[-87.62932130784372,41.90393080254727],[-87.62944442412935,41.90392908309966],[-87.62998608505922,41.903923187272305],[-87.63041322964334,41.90391853607373],[-87.63071597937311,41.9039136134254],[-87.63144510787805,41.90390085847408],[-87.6319568120094,41.9038918879693],[-87.63219596715615,41.90388880677092],[-87.63261885556305,41.90388386396945],[-87.63284733755677,41.903879596088395],[-87.63292055347682,41.903878182658026],[-87.63294476489169,41.90457254220506],[-87.63298602926434,41.905755921184394],[-87.63299175679114,41.90592017556368],[-87.63304582481338,41.9077026827074],[-87.63307242161216,41.90857949847744],[-87.63308755260832,41.90916566597673],[-87.63309423885042,41.90942466595365],[-87.63309423883243,41.909424667600085],[-87.63310614957079,41.90988606574071],[-87.63315042754482,41.91114938213186],[-87.63315087950562,41.91116228385933],[-87.63291310718598,41.91116241578683],[-87.63253926703783,41.911161261878284],[-87.63247459923582,41.911161062028306],[-87.63237604225255,41.911160757630476],[-87.6319739780938,41.91116379098688],[-87.63168235200281,41.91118052934091],[-87.63138196617132,41.9111977691109],[-87.63126761507995,41.91119516002585],[-87.63100570871882,41.91118918436833],[-87.63093872277152,41.911190216451814],[-87.63083069387066,41.911191881046335],[-87.6305824445853,41.91119570556267],[-87.63020702111386,41.91120155904532],[-87.62997199982367,41.911205222572114],[-87.62913677711667,41.91121909377046],[-87.62888562429376,41.91122300767783]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4367300.66992","perimeter":"0.0","tract_cent":"1152935.6563231","census_t_1":"17031140200","tract_numa":"22","tract_comm":"14","objectid":"169","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1932544.39623489","census_tra":"140200","tract_ce_3":"41.97075695","tract_crea":"","tract_ce_2":"-87.71302347","shape_len":"9905.89631664"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70857942335773,41.97209032298525],[-87.70856883496161,41.971767285694675],[-87.70856142706457,41.97159586981733],[-87.70855569305286,41.97143379333935],[-87.70855040726676,41.97123714231836],[-87.70854450209701,41.97089315156902],[-87.70853739523746,41.970630739470224],[-87.70853414874071,41.97051516333369],[-87.7085281506685,41.97027205203173],[-87.7085221906221,41.97003047164391],[-87.70851689202148,41.96985396297069],[-87.7085115059588,41.96967888080262],[-87.7085088744576,41.969534246858714],[-87.70850192405734,41.969274662079705],[-87.70849191951102,41.968966378457935],[-87.70849017119856,41.96892229727391],[-87.70847151804843,41.968451992827674],[-87.70881670312657,41.968445429378114],[-87.70916039225015,41.9684432370587],[-87.7093536649649,41.968443135126876],[-87.70969396103239,41.96843944611078],[-87.7099320336291,41.968436864581115],[-87.7101953299989,41.968435687020005],[-87.71033436982601,41.968435042077765],[-87.71092100348388,41.96842937670626],[-87.71103853923827,41.96842824111216],[-87.71124580258,41.968426345769814],[-87.71157729260703,41.96842320196419],[-87.71168062557446,41.96842196244779],[-87.71192247097115,41.968419061053986],[-87.71214747285717,41.96841569315573],[-87.71246107007269,41.968410998296264],[-87.7126523441263,41.968408437657985],[-87.71291379433764,41.96840419781143],[-87.71336307639938,41.96840084014051],[-87.71364483063496,41.96839873349809],[-87.71399087569989,41.96839623756993],[-87.71422492292646,41.96839286225686],[-87.7145875276735,41.968388579812505],[-87.71464843777491,41.96838738751187],[-87.71547455399224,41.96837923238549],[-87.71580831706822,41.96837617668353],[-87.71637884765396,41.9683709508557],[-87.71674116117191,41.96836683265369],[-87.71703245053078,41.96836379773265],[-87.71749027381759,41.96835902603233],[-87.71766752937745,41.968357314867],[-87.7182549592642,41.96834840775841],[-87.71826703357088,41.96880294979654],[-87.71827118978383,41.96895941871222],[-87.71827697110339,41.9691764615077],[-87.7182855187314,41.96951113578274],[-87.71829375358517,41.9697483616142],[-87.71829471935318,41.96982759200979],[-87.71830397674229,41.97016785670227],[-87.71831745823344,41.97066359885017],[-87.71832431306171,41.97090649774448],[-87.71833362246967,41.97126905712138],[-87.71834491959711,41.97161230792023],[-87.71835457660771,41.971992384274934],[-87.71836335154643,41.97233778230508],[-87.71837666437881,41.97281737563609],[-87.71838527973449,41.973127733938036],[-87.71838799407394,41.973225522826944],[-87.71836621542342,41.973217507248656],[-87.71829104406834,41.97319504114734],[-87.71806861791188,41.973097225872415],[-87.71793502952278,41.973023321920536],[-87.71773709131502,41.9729145506818],[-87.71747864446408,41.97278070179566],[-87.71719481371082,41.972636535096164],[-87.71715274638134,41.97261501840517],[-87.7171525394994,41.97261488776832],[-87.71715023386254,41.97261373325533],[-87.71713179469613,41.972604302068596],[-87.71696068789136,41.9725167835682],[-87.71654753196978,41.97228048395225],[-87.71620347545624,41.972086238781756],[-87.71596261986116,41.97197833171569],[-87.71591792614154,41.971967565961734],[-87.71591365525379,41.97196653724154],[-87.71590458296755,41.971964351811756],[-87.71580786855702,41.97194105609692],[-87.71566578877685,41.97192061581119],[-87.71550105143105,41.971919729363094],[-87.71507612178533,41.97193223299734],[-87.71469659707897,41.9719303023629],[-87.71468600531841,41.97193024857958],[-87.71468079401312,41.97193022214333],[-87.71466854310955,41.97193015969197],[-87.71461923134329,41.97192990876151],[-87.71461415398734,41.97193017667402],[-87.71454675344454,41.97193720190067],[-87.71447874748803,41.9719421865267],[-87.71443507096775,41.97194872898652],[-87.7143845500595,41.971951859706145],[-87.71430450845213,41.97195414490261],[-87.71422689839238,41.97195976364364],[-87.71417750075236,41.97196465634615],[-87.71402580702959,41.97196869536932],[-87.7136517484187,41.972032867095244],[-87.71346623152732,41.97207794212584],[-87.71325431775084,41.97212943018658],[-87.71283410914768,41.97227666401003],[-87.7125289837922,41.97236507920638],[-87.71231578607342,41.97244279455115],[-87.71223747308474,41.972479807602106],[-87.71215230091671,41.97253241392339],[-87.71208412106358,41.97259683565003],[-87.71202065833717,41.97265642562335],[-87.7119402195019,41.972748662029396],[-87.71176444673685,41.97294831179597],[-87.71164488367417,41.97307417218763],[-87.7115750349087,41.97317395735423],[-87.71154470860068,41.97324072423628],[-87.7115158542574,41.97330360231295],[-87.71147500274446,41.973378709428715],[-87.71133048762118,41.97363483887513],[-87.71129568423147,41.9736892873963],[-87.7112230597521,41.973771823698556],[-87.71115343676871,41.97386337720782],[-87.71107766366744,41.9739167419334],[-87.71105857519747,41.973929602084254],[-87.71104753811596,41.973936992495865],[-87.71101389678523,41.97395951869486],[-87.71095777759406,41.973993599337625],[-87.71083403605363,41.974060984673066],[-87.71075799156647,41.97408680688884],[-87.71071574837418,41.97410076532514],[-87.71066066327053,41.97411926435486],[-87.7105972532765,41.97413917262809],[-87.71057251410242,41.974156985518476],[-87.71048349591426,41.974193302355516],[-87.71035480490234,41.97425149467882],[-87.71008558648158,41.974324578612745],[-87.70999068814443,41.9743503402214],[-87.70986695289955,41.974394582402574],[-87.70983668849811,41.97440540335756],[-87.70968026434079,41.97445647402073],[-87.70952159899448,41.974503498313204],[-87.7093608402129,41.97454644958686],[-87.70919820946584,41.97458524671101],[-87.70903389091596,41.974619863237265],[-87.70886806899532,41.97465024527765],[-87.70878876535356,41.974663205586126],[-87.70873701665397,41.97467510831118],[-87.70865169040066,41.974681319595305],[-87.70864322435112,41.97441326752648],[-87.70863503227373,41.97413013095283],[-87.70862930476747,41.973917078263845],[-87.70862510673038,41.97376092671446],[-87.70861396434411,41.973346985311935],[-87.70860753970345,41.97309374268077],[-87.70859538223552,41.97258797464212],[-87.70858806972183,41.97235410122579],[-87.70857942335773,41.97209032298525]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"12708655.9272","perimeter":"0.0","tract_cent":"1145886.72825116","census_t_1":"17031140400","tract_numa":"54","tract_comm":"14","objectid":"170","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1932779.55997969","census_tra":"140400","tract_ce_3":"41.97153938","tract_crea":"","tract_ce_2":"-87.7389372","shape_len":"16067.4216066"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73317138208606,41.975479863647415],[-87.73316378228338,41.975137730622706],[-87.73315332893529,41.97474701106708],[-87.73313942615282,41.97430067586792],[-87.73312645790851,41.97392712182671],[-87.7331169910331,41.97365090627114],[-87.73298482020269,41.97365104145014],[-87.73264844976589,41.9736541803396],[-87.73249246751777,41.97365644883999],[-87.73234178080054,41.97365864002216],[-87.73228944298262,41.9736594362603],[-87.73223846627495,41.97366018471718],[-87.73216200159878,41.97366126619898],[-87.73211165002715,41.97366201787311],[-87.73203581048597,41.9736631025447],[-87.73199065730566,41.97366245440675],[-87.73196056203072,41.973659991629276],[-87.7319470580183,41.973656902539034],[-87.73192135062199,41.97364537914489],[-87.73191626524866,41.973641957922865],[-87.73190753723337,41.97363608625218],[-87.73189879772374,41.973626902265494],[-87.73188849081387,41.9736123314253],[-87.73188097454467,41.97359039329369],[-87.73187939731038,41.97353132974404],[-87.73187880451233,41.97351225441513],[-87.73186947457516,41.973186687954176],[-87.73184679299037,41.97239077762478],[-87.73184425642269,41.97230176920703],[-87.73183856576837,41.97210207100653],[-87.73183126654799,41.971844734407675],[-87.73161686526474,41.971847207421085],[-87.73121140144694,41.97185085919562],[-87.7309775017959,41.97185296530366],[-87.73079939194163,41.97185458275642],[-87.7307494950769,41.97185511311766],[-87.73059506498397,41.97185675492807],[-87.72998179625955,41.9718632540269],[-87.72982884010086,41.971864770007656],[-87.72936416105506,41.971869427210336],[-87.72896148889873,41.97187346168036],[-87.72874587221307,41.97187653983024],[-87.72857950646298,41.97187891436077],[-87.72813177370718,41.971884068021986],[-87.72812453039606,41.97156949504865],[-87.72811488205232,41.97124464001262],[-87.72810695289363,41.97097626977625],[-87.72809922205599,41.970715584349044],[-87.72809769140909,41.97066382055598],[-87.72808079036038,41.97006366249792],[-87.72806772091351,41.96959956916083],[-87.72805996409228,41.969323515975624],[-87.72804837184461,41.96890888755758],[-87.72804180501562,41.968698564367095],[-87.72802755981601,41.968242304093955],[-87.72850761700393,41.96823631535184],[-87.72864673648877,41.96823492500082],[-87.72874135894966,41.9682339790726],[-87.72926066735629,41.9682281132029],[-87.72980196263005,41.968221996690026],[-87.73016528854725,41.96821957028918],[-87.73047772932685,41.96821526606608],[-87.73088922996634,41.968209595589016],[-87.73114706937649,41.968205953874055],[-87.73173309493274,41.96819929833494],[-87.73225963686696,41.968193315750526],[-87.73259627079987,41.96819038515563],[-87.7329677894458,41.96818573344837],[-87.73303614603194,41.968184929273654],[-87.733203517223,41.96818236472484],[-87.73363146363766,41.96817848139819],[-87.73397280579869,41.968175379266135],[-87.73420133801285,41.968173936603065],[-87.73442490136517,41.9681725246432],[-87.73485150350598,41.96816692834673],[-87.7352451538123,41.968161735086255],[-87.73543319837168,41.968158400954984],[-87.73555379135028,41.96815626250326],[-87.73582753552637,41.9681544219397],[-87.7361778427835,41.968152100845685],[-87.73644305497756,41.96815032420313],[-87.73666653969246,41.96814645030518],[-87.73685349115497,41.968143209427325],[-87.73719563843387,41.96814048608387],[-87.73751233799241,41.96813795895772],[-87.73775129666996,41.968136070479076],[-87.73790228852742,41.96813393083945],[-87.73802631008826,41.96813217310084],[-87.73821489308276,41.96813018708034],[-87.73857433290513,41.96812634181519],[-87.73897598851129,41.9681223023577],[-87.73917633332087,41.96812085451377],[-87.73943842083625,41.96811896010407],[-87.73974642405057,41.96811446088137],[-87.74016458796116,41.968107737554774],[-87.74049848277727,41.968105558867414],[-87.74080948238537,41.96810224788385],[-87.74116506771988,41.96809846132959],[-87.74145867460437,41.96809595842447],[-87.74157425642328,41.968094973035996],[-87.74184050489318,41.968092475770554],[-87.74222991144202,41.968088843974755],[-87.74257585062885,41.96808558680257],[-87.7428468790964,41.96808311317167],[-87.74320848363476,41.968079812273515],[-87.74351680075586,41.968077033398615],[-87.74378897992929,41.968073382073634],[-87.74407362540636,41.968069562753286],[-87.74430079145289,41.96806651422851],[-87.74462544320401,41.96806288315277],[-87.74506688662944,41.96805864221539],[-87.74531222857385,41.968054329732155],[-87.74534270378552,41.96805379400523],[-87.74548394217622,41.96805131096162],[-87.74569040060781,41.96804874502973],[-87.74590149238858,41.96804612120598],[-87.74622574844726,41.968045557092616],[-87.74651190608466,41.968043259476005],[-87.74654355023664,41.9680430051982],[-87.74665379948613,41.96804211970999],[-87.74675551604213,41.96804154177826],[-87.74702817595433,41.96803872303573],[-87.74705221461456,41.96803847450691],[-87.7471367659446,41.968037609896456],[-87.74721098831091,41.96803685110601],[-87.74749002742087,41.968033135468936],[-87.74763466694837,41.9680303820116],[-87.74772179585376,41.9680287235974],[-87.7476252316005,41.96813400731649],[-87.74760998171583,41.968189042269636],[-87.74757586435484,41.96829268159384],[-87.74754403642115,41.96839526234658],[-87.7475201693008,41.9684797993798],[-87.74750654668426,41.96853785219204],[-87.74750160315415,41.96860382489303],[-87.74750671852067,41.96863949853151],[-87.74754121025674,41.96872781848979],[-87.74757008440176,41.9687911374826],[-87.74758743021367,41.968829653950266],[-87.74758958136647,41.968834430791475],[-87.7476106097026,41.96888316544118],[-87.74764266927279,41.96896136631396],[-87.74762034106047,41.96899001718702],[-87.74770086158448,41.969110516962616],[-87.74771228798967,41.969145540846725],[-87.74773848940517,41.969225855856116],[-87.7477609790996,41.96931982247114],[-87.7477753689011,41.969394812734784],[-87.74779886315784,41.96952369050897],[-87.7478514616051,41.969724220598636],[-87.74785761937319,41.96985129179082],[-87.74786316382082,41.96993880567104],[-87.74787401217979,41.97021182729132],[-87.74787703484715,41.970302950384266],[-87.74788040962251,41.97040469507843],[-87.74788566768797,41.97059750271318],[-87.74788660302194,41.970638442270115],[-87.74788946673581,41.97076379386202],[-87.7478909018927,41.97081821852961],[-87.74789489204473,41.97099167275189],[-87.74789837544557,41.97121364195989],[-87.74789898058934,41.97125200905574],[-87.74789642766325,41.971562887207014],[-87.7478985740583,41.971678189129584],[-87.74790002657619,41.97175618029898],[-87.74790417240709,41.971978097697],[-87.74790880257073,41.972187284713534],[-87.74791622437044,41.9724530440467],[-87.74790976867979,41.972587696762645],[-87.74790113296899,41.972767809851604],[-87.74791173476942,41.97288067465438],[-87.74793216113888,41.97309812348807],[-87.74794450737994,41.973505788535896],[-87.74794695473774,41.97358658933108],[-87.74794825614066,41.97362956611034],[-87.74795935903268,41.973999376972934],[-87.74797008826475,41.97436984451497],[-87.74797955558833,41.97467732609174],[-87.7479867667495,41.97501031725377],[-87.74798413059501,41.9751696872328],[-87.74799293596732,41.97534079405728],[-87.74757968605851,41.97534588267289],[-87.74750054391711,41.975346992266466],[-87.74741353131398,41.97534803309706],[-87.7472598808392,41.97534935991555],[-87.74715921805227,41.97535021808019],[-87.74694864175135,41.97535243463728],[-87.74674846806506,41.97535454150437],[-87.74659045861533,41.97535686243097],[-87.74626853644725,41.97536358757931],[-87.74610500055233,41.97536700360295],[-87.74604612260954,41.975367458446094],[-87.74598198390483,41.9753679538513],[-87.74566612928433,41.97537039336555],[-87.74555972426471,41.97537121497012],[-87.74513048702872,41.97537452824614],[-87.74504712388041,41.9753754188593],[-87.7448527300063,41.97537749550762],[-87.74469902135844,41.97537602143228],[-87.74448065344554,41.975371388981145],[-87.74417532347792,41.975369410812014],[-87.74396877592356,41.975371094834706],[-87.74371302158639,41.975372882516936],[-87.74339503490515,41.975375529856535],[-87.74308364878922,41.97537796766443],[-87.74293479263206,41.97537913250026],[-87.7428406386878,41.97537986941984],[-87.74253462706785,41.975384002956524],[-87.74232777131198,41.975387191752766],[-87.74216241460422,41.97538863671674],[-87.74190802226138,41.97539027234334],[-87.74172564092996,41.975391444834614],[-87.74139871960357,41.97539387594834],[-87.74104664313464,41.975396368446994],[-87.74067744238252,41.975401443495684],[-87.74050670763073,41.97540378996794],[-87.74010530482441,41.97540736951107],[-87.74002236820697,41.97540821641839],[-87.73976090484858,41.9754108856471],[-87.73937813589926,41.97541564459807],[-87.73920287995337,41.97541782331509],[-87.73895903378593,41.97542034780935],[-87.73874210891354,41.97542266929442],[-87.73848200583483,41.9754254513258],[-87.73838824807237,41.975426164692514],[-87.73810341059234,41.975428331681584],[-87.73787700312654,41.975430053524555],[-87.73759048984829,41.975433314542094],[-87.73748607377645,41.97543445786044],[-87.73732016138237,41.97543627468353],[-87.73703125904031,41.975439384691676],[-87.7368647964218,41.97544108713276],[-87.73666291580314,41.975443151352465],[-87.73632741909351,41.97544620950369],[-87.7362436737608,41.97544700886096],[-87.73599148052973,41.975449401585436],[-87.73573751572576,41.975452470585],[-87.73563427373787,41.975453860918144],[-87.73534510648602,41.97545775426189],[-87.73501754987218,41.97546120669001],[-87.73501508604456,41.97546123062146],[-87.7346078316074,41.975465162743006],[-87.73439922124197,41.97546715083671],[-87.73420591091832,41.975468993375735],[-87.73387828865265,41.97547159150697],[-87.73378181553763,41.97547270679565],[-87.73351821557337,41.97547574800684],[-87.73317138208606,41.975479863647415]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"565172.73989","perimeter":"0.0","tract_cent":"1179437.86159193","census_t_1":"17031381300","tract_numa":"5","tract_comm":"38","objectid":"724","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1873936.70011198","census_tra":"381300","tract_ce_3":"41.80936683","tract_crea":"","tract_ce_2":"-87.61737159","shape_len":"3503.11538991"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61781911786122,41.8075422010268],[-87.61810662993513,41.80753762427235],[-87.61811692851823,41.80795344680538],[-87.61812367852608,41.808227065722434],[-87.61813069803243,41.8085127336757],[-87.61813664249463,41.808749958452815],[-87.61814215652429,41.80895992988202],[-87.61814733198673,41.80913438826854],[-87.61815339062188,41.80935852024294],[-87.61816110507733,41.809643921331514],[-87.61816835515683,41.809882498884775],[-87.61817537666833,41.81016141585013],[-87.61818043930175,41.81035925472074],[-87.61818564295163,41.81055094728637],[-87.61819043492235,41.810720326327484],[-87.61819564549658,41.81091802888584],[-87.61820355153245,41.8111727429621],[-87.61790891394135,41.81117788258537],[-87.61758616497777,41.81118243959312],[-87.61758254394918,41.81118249057705],[-87.61739617321564,41.81118511624578],[-87.6172324378911,41.81118744364097],[-87.61690106712173,41.811192766884425],[-87.61663943588232,41.81119696913332],[-87.6166303231113,41.8108672186857],[-87.61662626192064,41.810675395981775],[-87.61661729593548,41.81036098334923],[-87.61661517540314,41.8102879660916],[-87.6166134560678,41.810228744885926],[-87.61661104004622,41.81014554616891],[-87.61660287383634,41.809877791175666],[-87.61659540925434,41.80963926707971],[-87.61658873826748,41.809384112127624],[-87.61658321982954,41.80917304839799],[-87.61658005736898,41.80906188550487],[-87.61657548512217,41.80889950562917],[-87.61656953791767,41.80868936677123],[-87.61656523738164,41.80853223014708],[-87.61656013343949,41.8083287102423],[-87.61655403935319,41.80807910775707],[-87.61654571622985,41.80779252595167],[-87.61654025307253,41.807563030850304],[-87.61680211396425,41.80755878193448],[-87.61704968268873,41.80755476410857],[-87.61713583983156,41.80755336577705],[-87.61748538502468,41.807547099909236],[-87.61781911786122,41.8075422010268]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7055148.58106","perimeter":"0.0","tract_cent":"1152888.73066592","census_t_1":"17031140700","tract_numa":"32","tract_comm":"14","objectid":"171","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930360.218346","census_tra":"140700","tract_ce_3":"41.96476436","tract_crea":"","tract_ce_2":"-87.71325415","shape_len":"10625.9461122"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71760944170178,41.961073737636326],[-87.71803973415345,41.96106935964465],[-87.71805692963605,41.96152819422094],[-87.71805721576732,41.96153582959695],[-87.71805746211378,41.96154240275058],[-87.71805819675785,41.961562005833365],[-87.71806894118517,41.96224907627108],[-87.71808333299532,41.96280545949473],[-87.71808656505601,41.962888993251475],[-87.71810368064756,41.963331358977655],[-87.71811033982817,41.963548790884765],[-87.71811572916093,41.96372623285838],[-87.71811800966952,41.96380201267999],[-87.71812049363852,41.96388454461844],[-87.71812682137717,41.96410200189552],[-87.71814366774659,41.96471061158878],[-87.71815298902739,41.965047357213415],[-87.71815600039584,41.96516241054988],[-87.71816811800392,41.96554633528213],[-87.7181812557655,41.96600005065363],[-87.71818545785344,41.9661977384392],[-87.71819627169256,41.9665292788011],[-87.71821700551642,41.96716493867562],[-87.71823071693701,41.96763934830858],[-87.71823874271469,41.96783711140731],[-87.71824126355278,41.9678922521844],[-87.71824503121402,41.967974657297056],[-87.7182549592642,41.96834840775841],[-87.71766752937745,41.968357314867],[-87.71749027381759,41.96835902603233],[-87.71703245053078,41.96836379773265],[-87.71674116117191,41.96836683265369],[-87.71637884765396,41.9683709508557],[-87.71580831706822,41.96837617668353],[-87.71547455399224,41.96837923238549],[-87.71464843777491,41.96838738751187],[-87.7145875276735,41.968388579812505],[-87.71422492292646,41.96839286225686],[-87.71399087569989,41.96839623756993],[-87.71364483063496,41.96839873349809],[-87.71336307639938,41.96840084014051],[-87.71291379433764,41.96840419781143],[-87.7126523441263,41.968408437657985],[-87.71246107007269,41.968410998296264],[-87.71214747285717,41.96841569315573],[-87.71192247097115,41.968419061053986],[-87.71168062557446,41.96842196244779],[-87.71157729260703,41.96842320196419],[-87.71124580258,41.968426345769814],[-87.71103853923827,41.96842824111216],[-87.71092100348388,41.96842937670626],[-87.71033436982601,41.968435042077765],[-87.7101953299989,41.968435687020005],[-87.7099320336291,41.968436864581115],[-87.70969396103239,41.96843944611078],[-87.7093536649649,41.968443135126876],[-87.70916039225015,41.9684432370587],[-87.70881670312657,41.968445429378114],[-87.70847151804843,41.968451992827674],[-87.70846076517542,41.96818087206432],[-87.70845871610462,41.96795407972132],[-87.70845657794061,41.96783046931243],[-87.70845194094225,41.9676540187804],[-87.70844026722196,41.96738864537131],[-87.70843081952651,41.96715135729834],[-87.70842743028152,41.96700150517275],[-87.7084179935555,41.96662953669078],[-87.70841471585231,41.96650033174739],[-87.70841277750387,41.96642393455261],[-87.70840428518295,41.96618673396485],[-87.70840216106804,41.966106809722994],[-87.70839713405101,41.96591765298126],[-87.70838588655855,41.9655839581828],[-87.70837518527723,41.96526647033338],[-87.70836780223063,41.965081333350604],[-87.70835519047822,41.964698728745454],[-87.70835009211957,41.96454405500773],[-87.7083473825511,41.964461854527926],[-87.70834122690435,41.96423391455687],[-87.70833486699796,41.9639967803678],[-87.70833132652855,41.963862432110545],[-87.70832801348419,41.96374913316446],[-87.70832426250072,41.96362962992145],[-87.70831471295236,41.96336898791912],[-87.70831028570869,41.963253898887245],[-87.70830145868457,41.96301335334613],[-87.70828996102367,41.96270003468011],[-87.70828372779921,41.962491386001986],[-87.70828070229494,41.962387089598124],[-87.70827576341073,41.962188930833086],[-87.70827158450903,41.96201740984425],[-87.7082640066465,41.96175163228526],[-87.70825849040659,41.961522268421874],[-87.70825422587748,41.96134540836189],[-87.7082484167112,41.96118683635321],[-87.70845800789742,41.961185734473574],[-87.70872584608382,41.96118324030007],[-87.70885159080744,41.96118154511674],[-87.7091264426596,41.96117792735796],[-87.7094726488399,41.96117467392585],[-87.70958710760156,41.9611735979955],[-87.70984007291533,41.96116929156492],[-87.70998006487986,41.96116741730697],[-87.7102314398792,41.96116406185246],[-87.71068997299606,41.9611591163352],[-87.7110626185864,41.96115509590699],[-87.71120260649535,41.96115363204193],[-87.71152421153529,41.96114983076942],[-87.71190882176342,41.96114374179128],[-87.7122488254355,41.96113835806978],[-87.71263955671213,41.96113418694976],[-87.71313604709704,41.96112931200643],[-87.71341108449404,41.96112661033832],[-87.71398282918435,41.961117868616576],[-87.71436381966564,41.96111359846387],[-87.71458451985247,41.96111112406443],[-87.71471884981435,41.96110920500486],[-87.71516555856054,41.96110319491988],[-87.71558720004693,41.96109896257967],[-87.71606067460849,41.96109420772599],[-87.71644219987783,41.96108764158642],[-87.71680901660753,41.9610835577366],[-87.71720204318855,41.96107918088973],[-87.71760944170178,41.961073737636326]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14291051.5949","perimeter":"0.0","tract_cent":"1142250.07435058","census_t_1":"17031150200","tract_numa":"68","tract_comm":"15","objectid":"172","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1928795.66421995","census_tra":"150200","tract_ce_3":"41.9606757","tract_crea":"","tract_ce_2":"-87.75240914","shape_len":"17627.834833"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74724576124895,41.96351113324854],[-87.74718117143408,41.96339133265375],[-87.74790823760367,41.96348166481005],[-87.7476640586699,41.96339500615015],[-87.74731795017809,41.96329719263918],[-87.74709537249656,41.96323219303801],[-87.74706180938509,41.96316993937554],[-87.74702835608794,41.96309306785398],[-87.74698101727334,41.96299237096943],[-87.74696302333362,41.96290003572113],[-87.74697275278855,41.96285346154919],[-87.74701011404643,41.9627928129361],[-87.74713044535896,41.96267375265574],[-87.74714718880242,41.96265744011514],[-87.74717010450352,41.962635113863705],[-87.74701334951669,41.96248197871228],[-87.74678455599437,41.96222182568046],[-87.74662842993234,41.96205637499368],[-87.74650566921076,41.96191133347114],[-87.74739105709396,41.96241496149423],[-87.74743230313436,41.96237384170927],[-87.7475060249078,41.96230800202582],[-87.74758763271974,41.962235118622765],[-87.74757417913622,41.96186139820349],[-87.74756784401497,41.96157758699874],[-87.7475669627501,41.96122034408485],[-87.74756208713828,41.9609978155209],[-87.74753534774402,41.960722477746145],[-87.74751367183238,41.96049927452976],[-87.747501037475,41.96010442801307],[-87.7474996974565,41.95981062885179],[-87.7474981410983,41.95946931994557],[-87.7474848128455,41.959126170504625],[-87.74747672606051,41.95889830444272],[-87.74746698647093,41.958623861196905],[-87.74745259432558,41.95817211777017],[-87.74744619885581,41.95798223307263],[-87.74743964504918,41.95778764233276],[-87.74741578556538,41.957094743937645],[-87.7474149867612,41.95707141349818],[-87.74740860994353,41.95688513173576],[-87.7473999995772,41.95663709321306],[-87.74739505569423,41.95647941290697],[-87.74738950063052,41.95630224555935],[-87.74738463524761,41.95615622827883],[-87.7473758606529,41.95589290388772],[-87.74736832139604,41.95567645669114],[-87.74736210252604,41.95547412121153],[-87.74735727542857,41.955317072912074],[-87.74735413789429,41.95524211240687],[-87.74734481819623,41.95501945417284],[-87.74733416837208,41.954468115384756],[-87.74733089522,41.95429864397018],[-87.74733008021381,41.95425645985768],[-87.74731421473439,41.953957698536776],[-87.74730293275321,41.95366025037524],[-87.74730487275106,41.95341837610393],[-87.74773138209115,41.953405989619],[-87.74795590853415,41.95340438463876],[-87.7484143125441,41.95340373552627],[-87.74880866447468,41.95340025550015],[-87.74907330319189,41.95339822714067],[-87.7493014563947,41.953398015855406],[-87.74962093300242,41.95339332886567],[-87.74986033124571,41.95338558149435],[-87.75001448690007,41.95338059263441],[-87.75024831205626,41.95337519454999],[-87.7505475125515,41.95337668598278],[-87.75086155160932,41.95337564518744],[-87.75103343213436,41.95337412355971],[-87.75120049704898,41.95337264421666],[-87.75145164580734,41.95337441131821],[-87.75155665261666,41.95337312789109],[-87.75193815127824,41.953368094497215],[-87.75223939447693,41.95336010044677],[-87.75264766428562,41.953349265],[-87.75315138517044,41.953345829207194],[-87.7534661720061,41.953343387710945],[-87.7537920252629,41.953340859611565],[-87.75469058610732,41.953329323368074],[-87.75557828860393,41.95331791974027],[-87.75591484836134,41.95331443044426],[-87.75602739035024,41.95331326342497],[-87.75631239962543,41.953310744519975],[-87.75687468836756,41.953306763462784],[-87.75714771901497,41.95329972408642],[-87.75715231182488,41.953475279793714],[-87.75716157039793,41.95375498899197],[-87.75716305204017,41.95380000211042],[-87.75717286120545,41.95409993892236],[-87.75717652559716,41.95421082361019],[-87.7571896752909,41.954608718475505],[-87.7571913839275,41.95466657537822],[-87.75719564765332,41.95481096965309],[-87.75720611771746,41.9551221733565],[-87.75721287403312,41.95532298910866],[-87.75722096917542,41.955580931301995],[-87.75722838563583,41.95581724539291],[-87.75723627681249,41.956041185997606],[-87.7572416206214,41.956192830107824],[-87.75725233341751,41.956494472736736],[-87.75726065434226,41.95672876088281],[-87.75726831323132,41.956950102337345],[-87.75727513893881,41.95714463686537],[-87.7572817834268,41.95734639736427],[-87.75728371208675,41.957405393093396],[-87.75729311158275,41.95769291118478],[-87.7572976811259,41.95786196998576],[-87.75730201908247,41.95802245359909],[-87.75731234101517,41.95831333712465],[-87.75731246331775,41.95831800537074],[-87.75731948007814,41.95858614774288],[-87.7573258337411,41.95877638158387],[-87.7573336406048,41.95901011738785],[-87.75733802436183,41.95914389232217],[-87.75734092174366,41.95922927959709],[-87.75735651539651,41.959688840039675],[-87.75736266321618,41.95987002486652],[-87.75737201347354,41.960143479042586],[-87.75738088126826,41.960402822788964],[-87.7573865862388,41.9605999626906],[-87.75739201364827,41.960787507427106],[-87.7574011703341,41.96105283909107],[-87.7574099463077,41.96130713161203],[-87.75741338848559,41.96143076464866],[-87.75741565484344,41.961512179494704],[-87.75742308689354,41.961779147078516],[-87.75743054387445,41.961970346543595],[-87.75745003056304,41.96247000027887],[-87.7572941545608,41.96247171551597],[-87.75690521439216,41.96247622982629],[-87.75683465096319,41.96247704894136],[-87.75649568320183,41.96248123540557],[-87.75643886993157,41.9624819378543],[-87.75606841355727,41.96246672076896],[-87.75623159794135,41.96265411076003],[-87.75636623141966,41.96281032933602],[-87.75652153157097,41.96299077320144],[-87.75660504699951,41.96308718472318],[-87.75667898996976,41.963172544913995],[-87.756833436925,41.9633499379887],[-87.75709826243808,41.96365409117036],[-87.75730295353064,41.96389101072653],[-87.75739895146634,41.96400248771059],[-87.75740180651309,41.96400580304408],[-87.7575900488333,41.964224679798996],[-87.75766629083975,41.96431332855475],[-87.75790887420997,41.96459346622294],[-87.75791090054405,41.964595798804446],[-87.75798730557888,41.96468375359985],[-87.75805068988437,41.96475671953381],[-87.75777432198984,41.96488494038002],[-87.75769043070022,41.96492389919259],[-87.75765246893046,41.9649419578421],[-87.75763713856915,41.96494983917844],[-87.7576232662827,41.96496321624484],[-87.75761073102043,41.964983241003054],[-87.7576075443735,41.96501050247205],[-87.75760812461462,41.96504815594538],[-87.75761180466307,41.96516216888899],[-87.7576138255675,41.965219505572165],[-87.75761990275126,41.96538995121658],[-87.75762307315047,41.965478852350735],[-87.75762982397822,41.965668373898154],[-87.75763711215471,41.965884023010624],[-87.75764211490475,41.966035775178625],[-87.7576477696646,41.966207289470006],[-87.75765379405233,41.966428502969556],[-87.75766771810994,41.96685579103586],[-87.75767836999034,41.967182652598616],[-87.7576861440461,41.96746685470426],[-87.757692503134,41.96765091296886],[-87.75770091084091,41.96790150139553],[-87.7575441330313,41.96790339931339],[-87.75746209159259,41.96790439257581],[-87.75733560683906,41.96790685241683],[-87.75726003138575,41.967908322537575],[-87.7572207604133,41.967909085948016],[-87.75710374335573,41.96791136143266],[-87.75698896656912,41.96791121146172],[-87.75693768930805,41.9679121452885],[-87.75683428081153,41.96791402834338],[-87.75663718007894,41.967917366861315],[-87.75655882500065,41.96791827179483],[-87.75618709385844,41.96792265137045],[-87.75605700424241,41.967924183621484],[-87.75586899318039,41.96792639804184],[-87.75574901271101,41.967927810925566],[-87.75558693850658,41.9679297195894],[-87.75514811700467,41.9679348852],[-87.75504709345947,41.96793607202231],[-87.75462165008956,41.967941069474755],[-87.75444314064082,41.967943407665366],[-87.75421399085104,41.96794642317099],[-87.75399325981509,41.96794964535564],[-87.7536761024659,41.96795420052643],[-87.75349277249175,41.96795683314895],[-87.75309460204703,41.96796201125747],[-87.75278914306085,41.96796595543622],[-87.75263506822343,41.96796746734702],[-87.75239977283687,41.96796977608884],[-87.75200848506547,41.96797418971131],[-87.75169574908227,41.96797770966886],[-87.75142375958877,41.967980811005646],[-87.75126113953687,41.96798266935746],[-87.75095338392651,41.967988435626665],[-87.75065497877851,41.96799304107664],[-87.7505603215494,41.967993877835255],[-87.7503193023742,41.967996002051315],[-87.75024700109518,41.9679971161836],[-87.7501816255792,41.96799812357449],[-87.7499349936981,41.96800116275578],[-87.7498191887815,41.96800248967331],[-87.74936849084197,41.96800952834748],[-87.74890116136089,41.968013681495094],[-87.74854192551483,41.96801770777409],[-87.74810562574706,41.968022596412304],[-87.7479518213617,41.9680243440828],[-87.74785665135597,41.9680261562285],[-87.74772179585376,41.9680287235974],[-87.7477245382172,41.967083491141544],[-87.7477074417817,41.9665734201696],[-87.74769676753547,41.96622634923965],[-87.74769583380719,41.966198861496935],[-87.74767303999305,41.965527865639196],[-87.7476680195469,41.96538950442989],[-87.74766088505332,41.9651888937596],[-87.74765065130697,41.96490915170579],[-87.74764359586558,41.96471597822973],[-87.74763560000918,41.96451709199262],[-87.74762040084892,41.96436664684022],[-87.74761324832258,41.96429584952307],[-87.74759541405396,41.96423977665026],[-87.74752785605148,41.96409267159753],[-87.74746754574774,41.96395553752825],[-87.74741488923702,41.96383312401066],[-87.74733618269434,41.96367890931788],[-87.7472763949441,41.96356797348956],[-87.74724576124895,41.96351113324854]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3505012.07541","perimeter":"0.0","tract_cent":"1167109.61396541","census_t_1":"17031062800","tract_numa":"16","tract_comm":"6","objectid":"194","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1920042.96872457","census_tra":"062800","tract_ce_3":"41.93615907","tract_crea":"","tract_ce_2":"-87.66126522","shape_len":"7952.65432433"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66335918518782,41.93248393204519],[-87.66356800061544,41.9324804626355],[-87.66357408610978,41.932612133440266],[-87.66358246788059,41.932822664020954],[-87.66358251524682,41.93293068914978],[-87.6635825823604,41.93308572562501],[-87.6635928981163,41.93338544336427],[-87.66359954979337,41.933578686490804],[-87.663609665947,41.93388340877007],[-87.66361703355902,41.93405740782482],[-87.66362439655819,41.93429729830038],[-87.6636317523999,41.93453696369791],[-87.66363786764828,41.93475072657328],[-87.66363834557814,41.934767434246574],[-87.66365518828374,41.935207568293656],[-87.66365650958215,41.93524209772644],[-87.66366697681653,41.935515620467726],[-87.66367496781928,41.93577757531759],[-87.66368574224171,41.93605529820385],[-87.66368789372454,41.936113339998485],[-87.66370533115692,41.93658370222684],[-87.66371044514538,41.93672165619128],[-87.66371978601106,41.93691257077316],[-87.66372546428701,41.93702862970815],[-87.66373769658937,41.937278644430485],[-87.66374302061661,41.93761643410021],[-87.66375518492735,41.93794112350345],[-87.6637759470927,41.938495296899944],[-87.6637884447227,41.93885680379079],[-87.66380131375165,41.93922905643375],[-87.66381108780075,41.9394682445044],[-87.6638209258618,41.93976488119715],[-87.66329306435844,41.939773617678995],[-87.66318755946575,41.93977527221324],[-87.6626401125932,41.93978385570132],[-87.6617646884864,41.9397969601636],[-87.6613997637902,41.939798803654746],[-87.6610840185919,41.93980039827449],[-87.66071766292809,41.939802247135425],[-87.66003534884301,41.9398224244854],[-87.65979184647077,41.93982587138131],[-87.65918691355668,41.93983443265655],[-87.65896858486964,41.93983803823636],[-87.65896272867026,41.939609133157695],[-87.65895402962462,41.939384577695286],[-87.65894825178175,41.93923545046047],[-87.65893665710338,41.938931240524326],[-87.65892757737343,41.9386930168713],[-87.65891565036836,41.938356423464],[-87.65890211810414,41.93801654565775],[-87.65889327206713,41.93779435862367],[-87.65888392139615,41.93749578770945],[-87.65887119149244,41.9371051835803],[-87.65886198023432,41.93682255708],[-87.65885616374837,41.93666607504402],[-87.65885086958222,41.936523646468565],[-87.65883892491419,41.936196569773735],[-87.65883272860853,41.936026892658965],[-87.65882453110787,41.935796877629016],[-87.65881708237177,41.93556549625106],[-87.65880727833158,41.93527913460103],[-87.65879111533138,41.93480706118092],[-87.658781839165,41.934543342125444],[-87.6587755220166,41.93437563542232],[-87.65875389655903,41.93380155271965],[-87.65874903798903,41.93366971931612],[-87.65874200746417,41.9334672920969],[-87.65873006208345,41.93312331603657],[-87.65872620036782,41.93301149383575],[-87.65871047884781,41.93255620619024],[-87.65932424079425,41.932545480992346],[-87.65950924171874,41.93254224744063],[-87.65980571091646,41.93253806681927],[-87.6598685357224,41.932537180677826],[-87.65991734824473,41.93253649223025],[-87.66042723285474,41.93252929945415],[-87.66053576711562,41.932527564750416],[-87.66112899705637,41.93251808005382],[-87.66196985587352,41.93250463108598],[-87.66235043496233,41.932498962574456],[-87.66335918518782,41.93248393204519]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"22387527.9649","perimeter":"0.0","tract_cent":"1146638.99676273","census_t_1":"17031130200","tract_numa":"32","tract_comm":"13","objectid":"173","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1936175.46081781","census_tra":"130200","tract_ce_3":"41.98084362","tract_crea":"","tract_ce_2":"-87.73608393","shape_len":"26110.4831802"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72843257411627,41.98283153068447],[-87.72842061897092,41.98230407245676],[-87.72840099274258,41.9816303775623],[-87.72838290768169,41.98097069134732],[-87.72835924580802,41.98010756475463],[-87.72833308097002,41.97916210701421],[-87.72832545605998,41.978886573924136],[-87.7283141002035,41.978446645915085],[-87.72828954191428,41.97758703200289],[-87.72828927002934,41.977577096830736],[-87.7282831795762,41.97735492481486],[-87.72827909958417,41.977206081900455],[-87.72827228925945,41.97695813471705],[-87.72826422247151,41.9766719815935],[-87.72825892685732,41.97645284333139],[-87.72825774843517,41.976404058359556],[-87.72825326998415,41.97621281867189],[-87.72824593982246,41.97594598858514],[-87.72823939536046,41.9757360225244],[-87.7282333870483,41.97553200844074],[-87.728217517728,41.97499315554608],[-87.72821273747337,41.97483082468288],[-87.72821045205364,41.97475322548289],[-87.72820948283749,41.97471459048875],[-87.72820662205449,41.97460057266651],[-87.72820545145687,41.974553919692006],[-87.72819854342842,41.97427858005307],[-87.72819073474854,41.97403125864468],[-87.72817784475001,41.97362946112307],[-87.72816538642886,41.973193264497425],[-87.72815569950161,41.972829716062996],[-87.72814700696298,41.97250486586407],[-87.728139905651,41.97223724126191],[-87.72813177370718,41.971884068021986],[-87.72857950646298,41.97187891436077],[-87.72874587221307,41.97187653983024],[-87.72896148889873,41.97187346168036],[-87.72936416105506,41.971869427210336],[-87.72982884010086,41.971864770007656],[-87.72998179625955,41.9718632540269],[-87.73059506498397,41.97185675492807],[-87.7307494950769,41.97185511311766],[-87.73079939194163,41.97185458275642],[-87.7309775017959,41.97185296530366],[-87.73121140144694,41.97185085919562],[-87.73161686526474,41.971847207421085],[-87.73183126654799,41.971844734407675],[-87.73183856576837,41.97210207100653],[-87.73184425642269,41.97230176920703],[-87.73184679299037,41.97239077762478],[-87.73186947457516,41.973186687954176],[-87.73187880451233,41.97351225441513],[-87.73187939731038,41.97353132974404],[-87.73188097454467,41.97359039329369],[-87.73188849081387,41.9736123314253],[-87.73189879772374,41.973626902265494],[-87.73190753723337,41.97363608625218],[-87.73191626524866,41.973641957922865],[-87.73192135062199,41.97364537914489],[-87.7319470580183,41.973656902539034],[-87.73196056203072,41.973659991629276],[-87.73199065730566,41.97366245440675],[-87.73203581048597,41.9736631025447],[-87.73211165002715,41.97366201787311],[-87.73216200159878,41.97366126619898],[-87.73223846627495,41.97366018471718],[-87.73228944298262,41.9736594362603],[-87.73234178080054,41.97365864002216],[-87.73249246751777,41.97365644883999],[-87.73264844976589,41.9736541803396],[-87.73298482020269,41.97365104145014],[-87.7331169910331,41.97365090627114],[-87.73312645790851,41.97392712182671],[-87.73313942615282,41.97430067586792],[-87.73315332893529,41.97474701106708],[-87.73316378228338,41.975137730622706],[-87.73317138208606,41.975479863647415],[-87.73351821557337,41.97547574800684],[-87.73378181553763,41.97547270679565],[-87.73387828865265,41.97547159150697],[-87.73420591091832,41.975468993375735],[-87.73439922124197,41.97546715083671],[-87.7346078316074,41.975465162743006],[-87.73501508604456,41.97546123062146],[-87.73501754987218,41.97546120669001],[-87.73534510648602,41.97545775426189],[-87.73563427373787,41.975453860918144],[-87.73573751572576,41.975452470585],[-87.73599148052973,41.975449401585436],[-87.7362436737608,41.97544700886096],[-87.73632741909351,41.97544620950369],[-87.73666291580314,41.975443151352465],[-87.7368647964218,41.97544108713276],[-87.73703125904031,41.975439384691676],[-87.73732016138237,41.97543627468353],[-87.73748607377645,41.97543445786044],[-87.73759048984829,41.975433314542094],[-87.73787700312654,41.975430053524555],[-87.73810341059234,41.975428331681584],[-87.73838824807237,41.975426164692514],[-87.73848200583483,41.9754254513258],[-87.73874210891354,41.97542266929442],[-87.73895903378593,41.97542034780935],[-87.73920287995337,41.97541782331509],[-87.73937813589926,41.97541564459807],[-87.73976090484858,41.9754108856471],[-87.74002236820697,41.97540821641839],[-87.74010530482441,41.97540736951107],[-87.74050670763073,41.97540378996794],[-87.74067744238252,41.975401443495684],[-87.74104664313464,41.975396368446994],[-87.74139871960357,41.97539387594834],[-87.74172564092996,41.975391444834614],[-87.74190802226138,41.97539027234334],[-87.74216241460422,41.97538863671674],[-87.74232777131198,41.975387191752766],[-87.74253462706785,41.975384002956524],[-87.7428406386878,41.97537986941984],[-87.74293479263206,41.97537913250026],[-87.74308364878922,41.97537796766443],[-87.74339503490515,41.975375529856535],[-87.74371302158639,41.975372882516936],[-87.74396877592356,41.975371094834706],[-87.74417532347792,41.975369410812014],[-87.74448065344554,41.975371388981145],[-87.74469902135844,41.97537602143228],[-87.7448527300063,41.97537749550762],[-87.74504712388041,41.9753754188593],[-87.74513048702872,41.97537452824614],[-87.74555972426471,41.97537121497012],[-87.74566612928433,41.97537039336555],[-87.74598198390483,41.9753679538513],[-87.74604612260954,41.975367458446094],[-87.74610500055233,41.97536700360295],[-87.74626853644725,41.97536358757931],[-87.74659045861533,41.97535686243097],[-87.74674846806506,41.97535454150437],[-87.74694864175135,41.97535243463728],[-87.74715921805227,41.97535021808019],[-87.7472598808392,41.97534935991555],[-87.74741353131398,41.97534803309706],[-87.74750054391711,41.975346992266466],[-87.74757968605851,41.97534588267289],[-87.74799293596732,41.97534079405728],[-87.74800351849711,41.9755464281902],[-87.74801048722549,41.97574124736567],[-87.74801212137551,41.97578905946673],[-87.74802208925227,41.97608070973202],[-87.74803000062522,41.97632119752881],[-87.74804088740426,41.97669059520562],[-87.74805475885881,41.97717183465923],[-87.74806166150621,41.97737787723393],[-87.74806308185813,41.977420287912224],[-87.74806899795982,41.97759687465401],[-87.74807145211169,41.97767965234871],[-87.74807363747045,41.97775290628525],[-87.7480802217663,41.97794283846609],[-87.74808291804811,41.978020623214036],[-87.7480902517017,41.97825998258353],[-87.74809636454475,41.978451888444276],[-87.74810600872054,41.97875626974697],[-87.7481135170799,41.97898234775817],[-87.74811713695544,41.97909133878786],[-87.74812265095255,41.979268367987274],[-87.74813082416503,41.979540579690116],[-87.74814164465235,41.979901250525195],[-87.74814380006363,41.980029003868395],[-87.74814731905919,41.98023755402933],[-87.74817620948868,41.980591791763196],[-87.7481925593342,41.980792257571835],[-87.7481746099729,41.98119341645187],[-87.74817760945574,41.981420157431764],[-87.74818432218558,41.98163500804284],[-87.74818574140824,41.98168390460374],[-87.74819187134518,41.9818950870783],[-87.74820254348722,41.982159506606784],[-87.74820979517128,41.98233916747342],[-87.74821480410759,41.98246318590355],[-87.74822138404714,41.982625796083234],[-87.74822641424974,41.982750107147005],[-87.74823673111477,41.9830050707754],[-87.74825053526169,41.98337745155368],[-87.74826003316262,41.983676890906764],[-87.748118838687,41.98367105877062],[-87.7479829456062,41.98366544503771],[-87.74771551108199,41.98357562287408],[-87.74742876556094,41.98343700513587],[-87.74730640447946,41.98332915832542],[-87.74722174513332,41.983223737932306],[-87.74712965060824,41.9830803049801],[-87.74704371165619,41.98285335975219],[-87.74699567930185,41.98266482134417],[-87.74698711212687,41.982631193228514],[-87.74585216655123,41.982630426643],[-87.74583089414855,41.98262687188613],[-87.74579615295688,41.98262523965988],[-87.74574358066393,41.98262675431446],[-87.74569266012415,41.98262855182022],[-87.74563233104473,41.98262969741332],[-87.74540723313504,41.982634280204266],[-87.7452968305124,41.98263714498969],[-87.74513988995085,41.98264125310046],[-87.74499987234925,41.982644898886484],[-87.74492768949003,41.982647320608145],[-87.74479693209021,41.98265170706947],[-87.74463578637877,41.98265713759091],[-87.74450819491598,41.98266136789705],[-87.74444395758874,41.98266350817367],[-87.74432490064706,41.98266756251972],[-87.74420842503069,41.98267092445508],[-87.7441037213516,41.98267394659048],[-87.74392648292097,41.98267753722662],[-87.74371958080947,41.982683198040874],[-87.7435584397559,41.98268810567537],[-87.74310945193271,41.98270179682365],[-87.74310334041378,41.98266661218657],[-87.74309457798525,41.982651638681034],[-87.7430847213136,41.98263169254473],[-87.74307374311391,41.982621674648804],[-87.74305712877617,41.98261659477572],[-87.74302387678948,41.98260895956746],[-87.74300431567534,41.982608337581695],[-87.74279333109578,41.9826100240838],[-87.74276529911121,41.98261064825613],[-87.74261263108833,41.982614088840755],[-87.74243377427773,41.98261769628652],[-87.74227066100055,41.98262111009323],[-87.7421362551328,41.982626427799715],[-87.74209544204302,41.982629050997986],[-87.74206507455695,41.98263165937715],[-87.74193447961844,41.98263850441384],[-87.74183196128624,41.98264387763622],[-87.74172256601392,41.98264517997957],[-87.74155342637158,41.98264798542789],[-87.74108467259474,41.98265937140145],[-87.74093292118556,41.98266306145872],[-87.74085356949439,41.98266495707748],[-87.74084699838684,41.98266476098126],[-87.74076914633793,41.98266243766319],[-87.74061118386606,41.98265772350108],[-87.7404122310051,41.98266284311445],[-87.74021405096522,41.9826679114918],[-87.7400082303204,41.9826759037744],[-87.73970435907265,41.9826873675216],[-87.73962192485787,41.98268846480052],[-87.73946231769699,41.982690588979125],[-87.73934430604788,41.98269294216187],[-87.73915433961157,41.98269673399149],[-87.73898477963714,41.98270120744153],[-87.73856633208794,41.98270944076161],[-87.73840398490512,41.98270953255941],[-87.73830604832261,41.98271260203845],[-87.73830962477265,41.98288151652577],[-87.73831592761584,41.983121035583224],[-87.73831883621865,41.98322930882155],[-87.73832423086716,41.9834301304799],[-87.73833075242341,41.983669870183576],[-87.73833994545949,41.98399793208487],[-87.73834152678774,41.98405650178625],[-87.73834486802055,41.984180337137644],[-87.73835031371108,41.98440132834743],[-87.73835340853351,41.98451643393747],[-87.7383558274146,41.98460711703382],[-87.7383608163633,41.98478236004946],[-87.73836648208004,41.98499157975931],[-87.73837241124859,41.98525941692961],[-87.7383766871083,41.985451999569825],[-87.73838341618227,41.98566948480589],[-87.73838782540825,41.985800579124295],[-87.73839096362858,41.98589388965683],[-87.73839588770635,41.986028710241996],[-87.73840648823456,41.98632018430734],[-87.7383194693558,41.98635899017027],[-87.73827386603736,41.98637813908704],[-87.73806918177813,41.986464085205185],[-87.73784465823445,41.98656739240157],[-87.73759309089591,41.98668337422348],[-87.73737366649027,41.986783989923545],[-87.7372296834168,41.98684512568314],[-87.73702639050956,41.986931443781074],[-87.73676486735465,41.98704131424292],[-87.73673636472076,41.98705328861594],[-87.7366761417916,41.98707943326417],[-87.73663266347071,41.987098308270994],[-87.73650324915701,41.98715449037085],[-87.73634825806768,41.987228216896],[-87.73613271716792,41.98733400977279],[-87.73599478909499,41.98740414735637],[-87.73578259074085,41.98751031370957],[-87.73550510543474,41.98764363655631],[-87.7352388883063,41.98777556301102],[-87.7350957391741,41.98784377633791],[-87.73490558332462,41.98793438902473],[-87.73455458676581,41.98810077837284],[-87.73442268821034,41.988163014497225],[-87.73429036370663,41.98822749876306],[-87.73422972368355,41.98826118292011],[-87.73417838361435,41.98829159510503],[-87.7341375439033,41.9883240927819],[-87.73408867056341,41.98842092738953],[-87.73406548723524,41.988469049365904],[-87.73394994470988,41.98862267005704],[-87.73389966234697,41.98868928360512],[-87.73381846589491,41.98879703668519],[-87.73351936702683,41.989193958368084],[-87.73341626933409,41.98933035508046],[-87.7332811454519,41.989508460746144],[-87.73315995093351,41.98966811574166],[-87.73305626278044,41.98980459135645],[-87.73300416841681,41.98987989412591],[-87.73286560236184,41.9900826354216],[-87.73248549543621,41.9900853948249],[-87.73212562719539,41.99009029378762],[-87.73193233577133,41.99009292478634],[-87.73191642644336,41.99009314137859],[-87.7318621809523,41.990093879659376],[-87.73049344258838,41.99191650078421],[-87.73008733248017,41.99246217720872],[-87.7291528797933,41.9936883774823],[-87.72888736606588,41.994048728564614],[-87.72888726172158,41.99404887043891],[-87.72888672547722,41.99396119003943],[-87.72888491093097,41.99369194724058],[-87.72888325201173,41.993445757036916],[-87.72888215853729,41.99329306425821],[-87.72887944905617,41.99293015760178],[-87.72887794723135,41.99275841794258],[-87.72887600712025,41.992586346666975],[-87.7288744754655,41.99245275088552],[-87.72887208493694,41.992242752718546],[-87.728870819274,41.99214713827388],[-87.72886898575875,41.991917731959205],[-87.7288656313473,41.99149799884994],[-87.72886474623249,41.991301125558536],[-87.72886435165019,41.991213364086256],[-87.72883511435427,41.99086277653556],[-87.72882698465226,41.990815108471025],[-87.7288140294763,41.990739148947746],[-87.72876758060683,41.9906058931319],[-87.72866865854017,41.99030370258903],[-87.7286503104704,41.990225204243515],[-87.72864024214904,41.99013543902738],[-87.72862391935183,41.98998991500722],[-87.72862557066975,41.989865968335536],[-87.72860920127336,41.98948904925617],[-87.72859943534415,41.9891450947544],[-87.72859067459164,41.98883874130476],[-87.72858654049983,41.988693706807105],[-87.72858250087175,41.98855198450082],[-87.72857814678903,41.98840303094597],[-87.72857469296527,41.98828487806416],[-87.72856869677354,41.988055651087585],[-87.72856365484257,41.987826648664736],[-87.7285554794949,41.98748334677817],[-87.72855186301317,41.98733147807739],[-87.72854627207184,41.98712162751042],[-87.72854089871238,41.98689267818768],[-87.72853644645988,41.986682998255354],[-87.72853315587224,41.986572795042484],[-87.7285307489155,41.98649219129101],[-87.72852619783808,41.986339589878206],[-87.7285222441041,41.98620548723239],[-87.7285155864145,41.985895906822265],[-87.72850745608295,41.98551785059972],[-87.72849928479607,41.98521147261588],[-87.7284908306225,41.9849127217242],[-87.72847740566174,41.98443859083494],[-87.7284736182702,41.98430484631487],[-87.72846094156674,41.98385714541092],[-87.72843766481478,41.98305612802791],[-87.72843257411627,41.98283153068447]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3506266.59324","perimeter":"0.0","tract_cent":"1168430.01119006","census_t_1":"17031062900","tract_numa":"16","tract_comm":"6","objectid":"195","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1920081.82179143","census_tra":"062900","tract_ce_3":"41.93623718","tract_crea":"","tract_ce_2":"-87.65641153","shape_len":"7950.16929246"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65810818369096,41.93256672743115],[-87.65871047884781,41.93255620619024],[-87.65872620036782,41.93301149383575],[-87.65873006208345,41.93312331603657],[-87.65874200746417,41.9334672920969],[-87.65874903798903,41.93366971931612],[-87.65875389655903,41.93380155271965],[-87.6587755220166,41.93437563542232],[-87.658781839165,41.934543342125444],[-87.65879111533138,41.93480706118092],[-87.65880727833158,41.93527913460103],[-87.65881708237177,41.93556549625106],[-87.65882453110787,41.935796877629016],[-87.65883272860853,41.936026892658965],[-87.65883892491419,41.936196569773735],[-87.65885086958222,41.936523646468565],[-87.65885616374837,41.93666607504402],[-87.65886198023432,41.93682255708],[-87.65887119149244,41.9371051835803],[-87.65888392139615,41.93749578770945],[-87.65889327206713,41.93779435862367],[-87.65890211810414,41.93801654565775],[-87.65891565036836,41.938356423464],[-87.65892757737343,41.9386930168713],[-87.65893665710338,41.938931240524326],[-87.65894825178175,41.93923545046047],[-87.65895402962462,41.939384577695286],[-87.65896272867026,41.939609133157695],[-87.65896858486964,41.93983803823636],[-87.65841220055339,41.93984722469336],[-87.65835277634346,41.93984822935875],[-87.65809064580854,41.93985266109324],[-87.65775237565654,41.93985700291138],[-87.65720807144434,41.93986398734027],[-87.65714013794067,41.939864929193284],[-87.65683296673609,41.93986918718466],[-87.65653663509215,41.939873537064585],[-87.65618068167427,41.93987876122379],[-87.65593923258353,41.93988264344805],[-87.655806082666,41.9398847839601],[-87.655321943299,41.93989204832955],[-87.65481118224791,41.939899709586506],[-87.65471409235327,41.93990150869644],[-87.65466071369849,41.939902497787095],[-87.65423160295585,41.93990885176458],[-87.6541058165044,41.93991237413251],[-87.65409652235127,41.93963574413617],[-87.65408735730645,41.939368842862734],[-87.65407664353934,41.939056843837726],[-87.65407246091262,41.93894629055408],[-87.65406530587948,41.93875716318606],[-87.65405803175123,41.938524438008315],[-87.65405479723533,41.93842093445359],[-87.6540447782366,41.938090108942504],[-87.65403895711533,41.93789790274163],[-87.6540260902114,41.93752420143838],[-87.65401339201857,41.93717769575456],[-87.65400750800613,41.93701712476461],[-87.65399374352073,41.93662409879793],[-87.65398301607138,41.93627141760419],[-87.65397731643257,41.93608403255259],[-87.65397668726754,41.93606335416584],[-87.65397426638252,41.93599824699003],[-87.65396403831987,41.93573493335368],[-87.65395141674422,41.93535830253044],[-87.65394078670833,41.93504111253634],[-87.65393280522177,41.93481318539988],[-87.65392096301372,41.93445255929326],[-87.65390727964036,41.93403587132163],[-87.65390609829257,41.93399862555395],[-87.65390204728409,41.93387094051357],[-87.65389074960152,41.9335451186583],[-87.65387914274089,41.933210381180864],[-87.6538750405308,41.933091371669015],[-87.653863266645,41.93274980720387],[-87.65385860753153,41.932638085503555],[-87.65416951309928,41.93263205345488],[-87.65471934459207,41.93262169313885],[-87.65518479461119,41.93261489657657],[-87.65548866216473,41.932610458234336],[-87.65584682486136,41.93260470117149],[-87.65628430964999,41.932597667355815],[-87.65647765275965,41.93259455840744],[-87.65716832212141,41.93258336998737],[-87.65745661400946,41.93257826610712],[-87.65810818369096,41.93256672743115]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13799416.5578","perimeter":"0.0","tract_cent":"1129971.43454093","census_t_1":"17031100600","tract_numa":"84","tract_comm":"10","objectid":"174","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935467.90270621","census_tra":"100600","tract_ce_3":"41.97920455","tract_crea":"","tract_ce_2":"-87.79739898","shape_len":"15734.5194629"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7877349708332,41.98289868538826],[-87.78773700869523,41.982797759985864],[-87.78774065961187,41.98261697330808],[-87.78774317898237,41.98249217068002],[-87.7877457973317,41.98236249344215],[-87.78775003658825,41.98215254799307],[-87.78775160039652,41.98207509177217],[-87.78775172869602,41.98206114002757],[-87.78775417466248,41.98179508546501],[-87.78776004881652,41.98158951763477],[-87.78776351270866,41.981455177875795],[-87.7877658774766,41.98135480613496],[-87.78776833663939,41.981256300899624],[-87.78777035136387,41.98107607911209],[-87.78777160507741,41.98096389404855],[-87.78777397402264,41.98086302836208],[-87.78777750528685,41.98071216879635],[-87.78778158581858,41.98050988544774],[-87.78778478368494,41.980333448303],[-87.78778893701708,41.98014417281615],[-87.78779112153806,41.980043361122625],[-87.78779326763409,41.979942741339],[-87.78779650642744,41.979778735618254],[-87.78779810414281,41.979690654239604],[-87.78779970113733,41.97958972997781],[-87.78780118779547,41.97948880518991],[-87.78780545719744,41.97927225612236],[-87.78780890573258,41.979097326149855],[-87.78781217580945,41.978933951720386],[-87.78782131511478,41.97849226071359],[-87.78782414827423,41.97834128772429],[-87.78782647409126,41.97821528458966],[-87.78782934914263,41.978063708615664],[-87.78783175082444,41.97793743168919],[-87.7878330320586,41.97787547361531],[-87.7878346729651,41.977806190220775],[-87.7878382920394,41.97759759290204],[-87.78783999020821,41.97746928191004],[-87.78784139875268,41.97736284085952],[-87.78784402240865,41.97722778351328],[-87.78784941213443,41.97696872891248],[-87.78785300116755,41.97679621745615],[-87.78785368411474,41.97675928368687],[-87.78785405852074,41.97673027783496],[-87.78785541902027,41.97662493559689],[-87.78785648712152,41.976422198715255],[-87.7878603323745,41.976286109017664],[-87.78786507525405,41.97611826378309],[-87.78786857270607,41.9759842259152],[-87.78787090436312,41.97584889272791],[-87.78787377873171,41.97565280153916],[-87.78802681535338,41.97565281890945],[-87.78812976212943,41.97565150546297],[-87.7884505558042,41.975647421525885],[-87.78856964517752,41.975646340172034],[-87.78884269020602,41.97564384850794],[-87.78908446387642,41.97564240661807],[-87.78933742384581,41.975640897579034],[-87.78947342916932,41.97563992288557],[-87.7897291925467,41.97563707282119],[-87.79006891501463,41.975634235338696],[-87.79029909722931,41.975632666334185],[-87.79052992673138,41.97563109224482],[-87.79081943819308,41.975629661648085],[-87.79104150897746,41.97562750013957],[-87.79131447405764,41.97562574342857],[-87.79151072133541,41.975623044987174],[-87.79173943145484,41.975619900302284],[-87.79189242856992,41.97561875592393],[-87.79202916723489,41.975618028639666],[-87.79247219244685,41.97561523200877],[-87.79272192984801,41.975613169325015],[-87.79291651216411,41.9756115616156],[-87.79305306972623,41.97561050295432],[-87.79322209709066,41.97560987131711],[-87.79346107480303,41.97560882746744],[-87.79368281682662,41.97560638488235],[-87.79393617328972,41.97560218401302],[-87.7942795567069,41.97560018742984],[-87.79444995011758,41.97559887434717],[-87.79465469956102,41.97559667942472],[-87.79491035164088,41.97559389934569],[-87.79514568976096,41.97559261455929],[-87.795318618667,41.975591670192465],[-87.79557489449236,41.975589056209],[-87.79569391085725,41.97558788479584],[-87.79589777604404,41.97558587588389],[-87.79636216005584,41.9755822742809],[-87.79661502452298,41.97558031242885],[-87.79673290500496,41.97557864067074],[-87.7969543887533,41.97557627288484],[-87.79712489448134,41.97557470937764],[-87.79732437944361,41.97557315633732],[-87.7975683721589,41.97557109443214],[-87.79774502774714,41.975569590262545],[-87.79778451416469,41.97556925389629],[-87.79795284627218,41.975568145534595],[-87.79827366026834,41.975565909082604],[-87.79864145049015,41.97556205191691],[-87.79877926511959,41.975560918479225],[-87.79908459249302,41.975558407047785],[-87.79932876568309,41.975556167709094],[-87.79949673069667,41.97555497304964],[-87.79976182278396,41.97555351254628],[-87.79983442153068,41.97555311257549],[-87.79998745935428,41.9755515069981],[-87.80029305575532,41.97554830014098],[-87.80046091133671,41.97554699379432],[-87.80062965032359,41.97554563641722],[-87.80088822971344,41.97554453084879],[-87.80119870826096,41.97554244437632],[-87.80125792058749,41.975542046218614],[-87.80157795783579,41.97554031805684],[-87.80185314015442,41.97553720189402],[-87.80215859186292,41.97553373089624],[-87.80241207664403,41.97553412986514],[-87.80257216688182,41.97553438137319],[-87.80277121664523,41.97553206329588],[-87.80309196917315,41.97552833122175],[-87.80332172837612,41.97552585216176],[-87.80356373426206,41.975523240080534],[-87.80473056301825,41.975513458257],[-87.8048663932986,41.975512247727394],[-87.80538566163142,41.97550761830548],[-87.80573770433264,41.975504626455766],[-87.80599735932415,41.97550238919653],[-87.80624230695935,41.9754998368464],[-87.80651895974614,41.97549674286851],[-87.80684708893833,41.97549481843579],[-87.80705949711736,41.975493899119876],[-87.80705734287336,41.97565925492055],[-87.80705531027165,41.97578553403368],[-87.80705370819037,41.975886321430345],[-87.80704931907015,41.976129081612974],[-87.80704581804983,41.9761897323036],[-87.80703816662191,41.97632227729019],[-87.80703625179233,41.976355451465885],[-87.8070319041398,41.97643075453423],[-87.80702143637728,41.97658097932943],[-87.8070141588315,41.976768018562105],[-87.80701000827656,41.97699521987192],[-87.80700964310286,41.97709763199954],[-87.80700933923494,41.977181164537775],[-87.80700909561926,41.977249027381305],[-87.80700628890028,41.977424588862604],[-87.8070041850987,41.97755712412637],[-87.80700369046967,41.977588296320704],[-87.80700126725527,41.977739655647795],[-87.80700100868502,41.97786761708805],[-87.80700089044834,41.97792601298594],[-87.80700082944418,41.97796495299621],[-87.80700068242768,41.97802952350007],[-87.80699859018914,41.97821571736753],[-87.80699761295801,41.97829182811498],[-87.80699543085976,41.978461821689265],[-87.8069915847709,41.9786526910382],[-87.80698896286094,41.97878283671309],[-87.80698551840729,41.97895543148067],[-87.80698537859112,41.979117778338654],[-87.80698529528583,41.97921475791875],[-87.80698290278075,41.97947401951466],[-87.80697918556793,41.97999238291477],[-87.80697689212222,41.98049862340882],[-87.80697623337002,41.98063505925395],[-87.80697522372023,41.980844111191665],[-87.80695867549217,41.98111516881158],[-87.80694792954779,41.98129118169027],[-87.80694301617872,41.981342942307144],[-87.80694041768628,41.98141238539363],[-87.80694099293994,41.98190697028349],[-87.80694130175837,41.98217249708793],[-87.8069413361414,41.982202214784515],[-87.80694146106443,41.982309443498785],[-87.80694165304266,41.98247448412245],[-87.8069417792637,41.982583162326314],[-87.80694199785177,41.98277104911287],[-87.80638548094622,41.98273865191297],[-87.80578397048362,41.98276727010162],[-87.80549850472362,41.982773778897176],[-87.80533556453504,41.98277438633441],[-87.80511620179932,41.98277520374919],[-87.80468342785925,41.98277779473884],[-87.80454495244854,41.98277841738981],[-87.80426743077568,41.98277966504818],[-87.8039178572938,41.98278178558278],[-87.8037293889121,41.98278269561725],[-87.80343535820788,41.982784114824135],[-87.8030857403555,41.98278705588104],[-87.80291190376492,41.982788850476965],[-87.80276988381884,41.982790316563744],[-87.8025040867334,41.9827933413474],[-87.80230453645396,41.98279562917623],[-87.80212090444012,41.98279881248161],[-87.80185468949475,41.982803426563926],[-87.80157188601433,41.98280370857651],[-87.80142310926412,41.98280392491858],[-87.80112739019337,41.98280737921333],[-87.80087312173899,41.98281034883762],[-87.80053973242373,41.98281223228616],[-87.8002888085537,41.98281411653609],[-87.80019536466297,41.98281481816368],[-87.7999412848608,41.98281672541631],[-87.79970815908987,41.98281844109401],[-87.79935895381377,41.98282038480434],[-87.79905975963409,41.982823438359304],[-87.7986757762504,41.98282793489097],[-87.7985438344002,41.982829378471266],[-87.79824436376282,41.98283034301816],[-87.79794324360762,41.98283064048202],[-87.79758491012943,41.98283337841987],[-87.79741026761168,41.98283471224553],[-87.79726346928314,41.98283583719627],[-87.79704248148903,41.98283746775251],[-87.79660496231959,41.98284000584264],[-87.7962835832917,41.98284385402415],[-87.79602999792209,41.98284672885016],[-87.79574272141218,41.98284963744354],[-87.79557440541932,41.98285096215316],[-87.79540675822827,41.982851439046726],[-87.7951171270711,41.98285447225117],[-87.79493020331309,41.98285557979774],[-87.79472929988525,41.98285676963923],[-87.79434114001478,41.98285917419753],[-87.79413931259177,41.982861025235195],[-87.79395378221766,41.98286245880806],[-87.79378384639975,41.9828639104916],[-87.79357440525186,41.98286513639443],[-87.79351342652657,41.98286549318599],[-87.79322689208387,41.982867658037506],[-87.79302378433147,41.98286867810344],[-87.79288787303852,41.98286976746999],[-87.79258758744375,41.98287247492659],[-87.7922666295468,41.982874974673834],[-87.79206149154099,41.982875121788275],[-87.79172310001663,41.982876956044635],[-87.7913512237333,41.98288055216456],[-87.79108102329668,41.982882267374805],[-87.79086216391032,41.982884389219606],[-87.79071021074951,41.98288619574696],[-87.79038218777578,41.98288759839102],[-87.79025481898395,41.98288837817476],[-87.78998460941297,41.98289116100023],[-87.78969681735562,41.98289413434856],[-87.78952273568026,41.98289625958821],[-87.78946037090356,41.982897020937855],[-87.78917516382559,41.9828944070502],[-87.78869042010865,41.98288190864114],[-87.78834446705429,41.98289683274059],[-87.78806786846911,41.98290696921585],[-87.78793684492499,41.98290850842207],[-87.7878543483702,41.98291024212084],[-87.7877349708332,41.98289868538826]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6268534.2369","perimeter":"0.0","tract_cent":"1170658.04244148","census_t_1":"17031080700","tract_numa":"27","tract_comm":"8","objectid":"184","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1907272.68457946","census_tra":"080700","tract_ce_3":"41.90103969","tract_crea":"","tract_ce_2":"-87.64859921","shape_len":"11700.7579785"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64307959578537,41.9001184304144],[-87.64307330319463,41.8999455058243],[-87.643068736546,41.89981884210818],[-87.64306529925554,41.89972350402874],[-87.6430538698471,41.89945261751679],[-87.6430465710224,41.899279648712],[-87.64303994248056,41.89905952123707],[-87.64302399051869,41.89871605679287],[-87.6430111983167,41.89844063322659],[-87.64301006771255,41.89841601064085],[-87.64299862078192,41.898169262250995],[-87.64298144250441,41.89779986750572],[-87.64297097832427,41.89757774078802],[-87.64296745389733,41.89750316585491],[-87.64296047886943,41.897355586955406],[-87.64294637377864,41.897058905161074],[-87.64293719630422,41.89687427268438],[-87.64292820233327,41.89671697389429],[-87.64292899499145,41.89647628007558],[-87.64300378789078,41.896475310131756],[-87.6438595725613,41.89646079982993],[-87.64422160387812,41.89645465928546],[-87.64423178153238,41.89663645327958],[-87.64443161889739,41.8972420584715],[-87.64461370483289,41.89739875572134],[-87.64478012676062,41.89754197210084],[-87.64488578641719,41.89769401962756],[-87.64540826457933,41.8977633222983],[-87.6463150392892,41.89785749017261],[-87.64782898071522,41.89796338790526],[-87.64790035797597,41.897968380111244],[-87.64878990149195,41.898087779585985],[-87.64939841218181,41.89830691521854],[-87.6496737327955,41.89851069013521],[-87.64973511574857,41.89855612194984],[-87.65086286616122,41.89941219080989],[-87.65103258068567,41.89951904997286],[-87.65123298151288,41.89966030875719],[-87.6512882485271,41.899697148802986],[-87.65133971763105,41.899731456663105],[-87.65135543331007,41.89974193226299],[-87.65160100747136,41.899866570103576],[-87.65168366463924,41.89990852124387],[-87.65189956534469,41.90001320541837],[-87.65202654098191,41.90005545167964],[-87.65211561075354,41.900080184256865],[-87.65219490498323,41.9000950344195],[-87.65247720532393,41.900135374844716],[-87.65252594501044,41.90012542782431],[-87.65255325641559,41.90011669842245],[-87.65257643045229,41.900117082788846],[-87.65290715513771,41.90017713840496],[-87.65343196121364,41.90028353991109],[-87.65445494641351,41.90051371397522],[-87.65450732628031,41.90052766247817],[-87.65516171977063,41.900741359296205],[-87.65538096865174,41.900812955186844],[-87.6558877953218,41.90116855331612],[-87.65591657728713,41.90121183476312],[-87.65602297926667,41.90142131320057],[-87.65616058787442,41.90169222523228],[-87.65616612420435,41.901708366536546],[-87.65618471792537,41.901922032500615],[-87.6564743881478,41.9026220106779],[-87.65734027241238,41.903399064278986],[-87.65739154273518,41.90346576117724],[-87.65742450943165,41.90350864672302],[-87.65602094761306,41.90352607053679],[-87.65585955986347,41.90352686355419],[-87.65544597098636,41.903531217168734],[-87.65514125048286,41.90353442363547],[-87.65495071056489,41.90353779868235],[-87.65455397934996,41.903544784618646],[-87.65410233554675,41.90355210053003],[-87.65366037356397,41.90355925737221],[-87.65324858433202,41.90356593013026],[-87.65286743653988,41.90357212437605],[-87.65255076714438,41.90357840902755],[-87.65205822870594,41.90358818245129],[-87.65188231605302,41.90359087080152],[-87.65160378688459,41.903595199979605],[-87.65134160753092,41.903599241394346],[-87.65098908959543,41.903604106025696],[-87.6509535757929,41.90360442846858],[-87.65032275536682,41.90361015308561],[-87.6498449732799,41.903614486405814],[-87.6494780074113,41.903617813365805],[-87.64861260767685,41.90362718319831],[-87.64831279220444,41.90363307888652],[-87.64809420838512,41.903637096328566],[-87.64781182127045,41.90364221875041],[-87.6477349178333,41.90364321625885],[-87.64761648151716,41.9036447524777],[-87.64744611194068,41.903647389469675],[-87.64714631298136,41.90365169055516],[-87.64700179644163,41.90365421079302],[-87.64681582584265,41.90365745393049],[-87.64660964080124,41.90366092384766],[-87.64641156448467,41.903664256940566],[-87.64602093027719,41.90367114009303],[-87.64599054831326,41.903671624263595],[-87.64546511770206,41.90367999633464],[-87.64500082890248,41.90368709339353],[-87.64462570578185,41.90369313173763],[-87.64448576310072,41.90369508266305],[-87.64427748454797,41.90369798561447],[-87.64379519397251,41.90370527163918],[-87.64337155130693,41.903714088062266],[-87.64321993820056,41.90371649997725],[-87.64321286231176,41.90352954529434],[-87.64320456520731,41.903218683622654],[-87.64319441220135,41.90297101046573],[-87.64318449273796,41.90275964490489],[-87.64317987550757,41.90265149491882],[-87.6431733456917,41.90249854645202],[-87.64316329114631,41.90222469386779],[-87.64315519331649,41.90202497477593],[-87.64314771498405,41.90183936476047],[-87.64314139429696,41.90163081990374],[-87.64313837974112,41.90157377660988],[-87.6431344750991,41.90148331088313],[-87.64312970735563,41.901372846577836],[-87.64312102808397,41.90115550597855],[-87.6431114671971,41.9009211183786],[-87.64310352425764,41.90072406207677],[-87.6431016901275,41.90066359502705],[-87.64309823820054,41.90054982632358],[-87.64309182320565,41.90041309059989],[-87.64308497391906,41.90026709047154],[-87.64307959578537,41.9001184304144]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1719580.46462","perimeter":"0.0","tract_cent":"1171044.22745311","census_t_1":"17031063100","tract_numa":"7","tract_comm":"6","objectid":"185","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1920829.6817545","census_tra":"063100","tract_ce_3":"41.93823229","tract_crea":"","tract_ce_2":"-87.64678208","shape_len":"5249.00130377"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64877829430576,41.93639806281112],[-87.64914092824478,41.93637901866062],[-87.64914964594847,41.936597722451374],[-87.64916933393654,41.93715587663815],[-87.64920036576557,41.93782411923157],[-87.64920823573881,41.93799359434729],[-87.64921611711495,41.938163312663114],[-87.64922663436815,41.93847111452846],[-87.64923719512566,41.93908228234557],[-87.64925435233215,41.939569318015366],[-87.64926661399129,41.93998093510221],[-87.64878470805166,41.939987536474966],[-87.64866494197088,41.93998917523354],[-87.64819521480511,41.93999560087422],[-87.64764227440673,41.940005389869995],[-87.64714726381025,41.940011406108795],[-87.64683598144491,41.94001503704286],[-87.64622642962786,41.94002214483863],[-87.64547001778813,41.94002110076379],[-87.64501796498054,41.940031318767566],[-87.6446802494481,41.94003895137947],[-87.64439968803715,41.940044966864114],[-87.64438682613263,41.93963318763886],[-87.64438287192566,41.939519937295046],[-87.64437643133542,41.93933548761877],[-87.64436919189075,41.93914603757196],[-87.64435991359669,41.93890322937033],[-87.64435332710715,41.93868979932629],[-87.64434092006945,41.938287807233614],[-87.64433582769011,41.93811900736601],[-87.64432852074003,41.9379032406589],[-87.64432013729167,41.937655414758325],[-87.64430797204098,41.93729579475003],[-87.6443012114289,41.93708173242957],[-87.64429848756625,41.93699549306095],[-87.64429182951102,41.93680827006173],[-87.64427925701801,41.93651289681435],[-87.64488619916085,41.93649106394988],[-87.64514334067667,41.93648619391489],[-87.64559608510318,41.93647761808954],[-87.64598904745957,41.93647105388827],[-87.64656352963823,41.936461455171035],[-87.6468756123578,41.936455060543736],[-87.64705843555645,41.93645191583275],[-87.64734160138504,41.93644714400754],[-87.64782334354207,41.936426315611556],[-87.64823555849006,41.936408491842506],[-87.64877829430576,41.93639806281112]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13049253.5876","perimeter":"0.0","tract_cent":"1129923.40505924","census_t_1":"17031100700","tract_numa":"66","tract_comm":"10","objectid":"175","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1932890.2791385","census_tra":"100700","tract_ce_3":"41.97213212","tract_crea":"","tract_ce_2":"-87.7976349","shape_len":"15692.3318146"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.79660973253307,41.96881232805197],[-87.79706478131298,41.96880841728269],[-87.7971235236745,41.96880907804564],[-87.79712354696342,41.96880792339069],[-87.79742522299765,41.96880533012559],[-87.79757866887493,41.9688040109259],[-87.79769986223394,41.96880131603287],[-87.79769987032574,41.96880131579619],[-87.79770150550851,41.96880127951792],[-87.79782140866327,41.96879861277962],[-87.79827819759942,41.96879761363145],[-87.79833703356113,41.968797503909805],[-87.79878933650286,41.96879648209715],[-87.79891222295136,41.96879667001428],[-87.79903504321508,41.968796857491846],[-87.79949016097588,41.96879337650293],[-87.79954922067994,41.968792937620734],[-87.79958766928496,41.96879264053449],[-87.80000139713572,41.96878944092935],[-87.80012225850726,41.968788663707144],[-87.80012328339649,41.968788656941555],[-87.80024417786441,41.96878787919586],[-87.80069531729684,41.96878530798732],[-87.80070959759632,41.968785227699094],[-87.80075415471903,41.96878497722234],[-87.80120639761317,41.968782409124216],[-87.8013344235007,41.96878155488831],[-87.80144910522762,41.9687807896193],[-87.80188759419725,41.96877831976829],[-87.80194643124544,41.968777988390485],[-87.80228415747291,41.968776094212835],[-87.80239683437553,41.968775461971184],[-87.80252341706834,41.96877313048453],[-87.80252463697751,41.96877310813393],[-87.80252496741262,41.96875089006263],[-87.80252513878106,41.96873937230521],[-87.80252546875003,41.96871716603171],[-87.80252547696051,41.96871661997176],[-87.802526273589,41.96866251907186],[-87.80252732462131,41.9685911058479],[-87.8025289287907,41.96847755754983],[-87.80252913268468,41.968475144135894],[-87.80252817070247,41.968409415565354],[-87.80254225120214,41.96829705144608],[-87.80254226738558,41.96829705097206],[-87.80270116813134,41.968295863753966],[-87.80279081492999,41.968295311282986],[-87.80284362828937,41.96829498591037],[-87.80293963532252,41.96829436282296],[-87.80313020491771,41.968293125927154],[-87.8034675962274,41.968291664968596],[-87.80369041109844,41.968289819108],[-87.80373431941658,41.968289455535746],[-87.80377822773436,41.9682890919467],[-87.80387832097645,41.968288981978034],[-87.80396878548079,41.96828888295764],[-87.80407630114067,41.96828876477987],[-87.80441362416919,41.968286751883916],[-87.80471708017878,41.96828469183078],[-87.80485582753487,41.9682837159101],[-87.80513916963314,41.96828172241191],[-87.80535219967273,41.96828039032188],[-87.80540974910768,41.96828003066523],[-87.8056631497209,41.968279082861955],[-87.80591162417254,41.96827802926761],[-87.80594232579895,41.96827795132046],[-87.80602517727135,41.96827774161293],[-87.80618510033442,41.968277336642444],[-87.80633867201955,41.96827637403376],[-87.80644030847834,41.968275736812586],[-87.8065784668264,41.96827483623756],[-87.80666080282019,41.96827430620092],[-87.80684323862565,41.9682728652905],[-87.80696695967478,41.968271565165594],[-87.80715600156086,41.96826957885926],[-87.80715513016733,41.96838918624416],[-87.80715338347571,41.968628784080444],[-87.80714727916147,41.968860175404856],[-87.80714643525423,41.96889216711396],[-87.80714643523841,41.96889216903484],[-87.80714599950052,41.96909806489544],[-87.80714582449725,41.969180857478264],[-87.80713849043815,41.969379450101954],[-87.80713087558856,41.96951832466702],[-87.80713087557275,41.96951832658789],[-87.80712175300496,41.96970192733801],[-87.80711881034279,41.969831246015396],[-87.80711841117945,41.96984878243409],[-87.80711446292386,41.97007436558988],[-87.80711346762884,41.97013122463098],[-87.80711230294192,41.97019776282204],[-87.80710998594111,41.97037209187125],[-87.80710826310431,41.9704964792907],[-87.80710656117319,41.97059603142857],[-87.80710366399975,41.97076931500649],[-87.8071011096685,41.970913675904654],[-87.8070985756099,41.97105691231491],[-87.80709740895857,41.97110487520484],[-87.80709734869201,41.97110772945556],[-87.80709465730794,41.97123362118577],[-87.80709322754538,41.971384985510234],[-87.80709190204617,41.97152372639592],[-87.80709043557769,41.97167503538587],[-87.80708945898851,41.971775853438686],[-87.80708823901166,41.97188528664265],[-87.80708700072992,41.971996317439284],[-87.80708664848983,41.97202789618535],[-87.80708548206762,41.97211603429177],[-87.80708399518672,41.97222961084493],[-87.80708236949116,41.97235567208784],[-87.8070805063695,41.97251946538883],[-87.80707669824328,41.972675173562216],[-87.8070754616854,41.97272572473028],[-87.80707157922758,41.97288465151421],[-87.80706404740708,41.97300898425904],[-87.8070599668998,41.97319634040389],[-87.8070602547659,41.97336239379209],[-87.80706243794599,41.97352604068588],[-87.80706537222349,41.97367528502112],[-87.80706562096965,41.97368790897171],[-87.8070689443593,41.973856940005945],[-87.8070651683476,41.974145915278704],[-87.80706254406346,41.97433514357486],[-87.80706668503629,41.97453820624431],[-87.80706668533851,41.974538214203896],[-87.80707231599185,41.97481432737662],[-87.80706516949267,41.975155289614634],[-87.80706193889657,41.975306480653494],[-87.80705949711736,41.975493899119876],[-87.80684708893833,41.97549481843579],[-87.80651895974614,41.97549674286851],[-87.80624230695935,41.9754998368464],[-87.80599735932415,41.97550238919653],[-87.80573770433264,41.975504626455766],[-87.80538566163142,41.97550761830548],[-87.8048663932986,41.975512247727394],[-87.80473056301825,41.975513458257],[-87.80356373426206,41.975523240080534],[-87.80332172837612,41.97552585216176],[-87.80309196917315,41.97552833122175],[-87.80277121664523,41.97553206329588],[-87.80257216688182,41.97553438137319],[-87.80241207664403,41.97553412986514],[-87.80215859186292,41.97553373089624],[-87.80185314015442,41.97553720189402],[-87.80157795783579,41.97554031805684],[-87.80125792058749,41.975542046218614],[-87.80119870826096,41.97554244437632],[-87.80088822971344,41.97554453084879],[-87.80062965032359,41.97554563641722],[-87.80046091133671,41.97554699379432],[-87.80029305575532,41.97554830014098],[-87.79998745935428,41.9755515069981],[-87.79983442153068,41.97555311257549],[-87.79976182278396,41.97555351254628],[-87.79949673069667,41.97555497304964],[-87.79932876568309,41.975556167709094],[-87.79908459249302,41.975558407047785],[-87.79877926511959,41.975560918479225],[-87.79864145049015,41.97556205191691],[-87.79827366026834,41.975565909082604],[-87.79795284627218,41.975568145534595],[-87.79778451416469,41.97556925389629],[-87.79774502774714,41.975569590262545],[-87.7975683721589,41.97557109443214],[-87.79732437944361,41.97557315633732],[-87.79712489448134,41.97557470937764],[-87.7969543887533,41.97557627288484],[-87.79673290500496,41.97557864067074],[-87.79661502452298,41.97558031242885],[-87.79636216005584,41.9755822742809],[-87.79589777604404,41.97558587588389],[-87.79569391085725,41.97558788479584],[-87.79557489449236,41.975589056209],[-87.795318618667,41.975591670192465],[-87.79514568976096,41.97559261455929],[-87.79491035164088,41.97559389934569],[-87.79465469956102,41.97559667942472],[-87.79444995011758,41.97559887434717],[-87.7942795567069,41.97560018742984],[-87.79393617328972,41.97560218401302],[-87.79368281682662,41.97560638488235],[-87.79346107480303,41.97560882746744],[-87.79322209709066,41.97560987131711],[-87.79305306972623,41.97561050295432],[-87.79291651216411,41.9756115616156],[-87.79272192984801,41.975613169325015],[-87.79247219244685,41.97561523200877],[-87.79202916723489,41.975618028639666],[-87.79189242856992,41.97561875592393],[-87.79173943145484,41.975619900302284],[-87.79151072133541,41.975623044987174],[-87.79131447405764,41.97562574342857],[-87.79104150897746,41.97562750013957],[-87.79081943819308,41.975629661648085],[-87.79052992673138,41.97563109224482],[-87.79029909722931,41.975632666334185],[-87.79006891501463,41.975634235338696],[-87.7897291925467,41.97563707282119],[-87.78947342916932,41.97563992288557],[-87.78933742384581,41.975640897579034],[-87.78908446387642,41.97564240661807],[-87.78884269020602,41.97564384850794],[-87.78856964517752,41.975646340172034],[-87.7884505558042,41.975647421525885],[-87.78812976212943,41.97565150546297],[-87.78802681535338,41.97565281890945],[-87.78787377873171,41.97565280153916],[-87.7878754806216,41.9755367060827],[-87.78787947600776,41.97533137607441],[-87.78788294834109,41.97520889117928],[-87.78788824019955,41.97495074133458],[-87.78789235215919,41.974753287733094],[-87.78789563036038,41.974593206265006],[-87.78789936347818,41.97438411541233],[-87.78790419125009,41.974150167233965],[-87.78790657223209,41.97403920279907],[-87.78790526650704,41.97386466500108],[-87.78790633410637,41.97384168843305],[-87.78791486169831,41.97365812664299],[-87.78791719475925,41.97352260131214],[-87.78792195781925,41.973313460428784],[-87.787925671907,41.97314105949734],[-87.78792899199124,41.97290707666253],[-87.78793348689355,41.972673318935996],[-87.78793777597872,41.97246368181189],[-87.7879436833909,41.97218072712265],[-87.78794716737247,41.97202566846037],[-87.78794766723608,41.97200341256082],[-87.78795115297581,41.97184827431994],[-87.78795439215905,41.97168841212059],[-87.78795748206552,41.97151587096375],[-87.78796093639193,41.971343715722035],[-87.78796427018645,41.97114688946545],[-87.78796714132044,41.97101559271215],[-87.78796974253365,41.970897658970976],[-87.78797287362326,41.97073752181029],[-87.787974743074,41.97063906847137],[-87.7879783620748,41.97043030623535],[-87.78798139811501,41.97030721543418],[-87.78798238296552,41.97022451925143],[-87.7879836008171,41.97012226619477],[-87.78798635267728,41.969999637533896],[-87.7879907783196,41.96980243524639],[-87.78799284400229,41.969679285761146],[-87.78799470238525,41.96956849712931],[-87.78799697510925,41.96943301340027],[-87.78799945680721,41.96928505575785],[-87.78800345575426,41.96913735119982],[-87.78800438805821,41.96910293088897],[-87.78800745560187,41.96898962468845],[-87.78800940765207,41.96888824007198],[-87.7881241136052,41.96888842345682],[-87.78831230693537,41.9688867391242],[-87.78858085603453,41.968884334824985],[-87.78863962177445,41.96888384527658],[-87.78909651124395,41.968879755016246],[-87.78921970871379,41.968878667749],[-87.78933922429981,41.968877612573465],[-87.78972115228679,41.96887420959812],[-87.7897936863901,41.96887356319492],[-87.78985245258389,41.96887301814357],[-87.79030698817134,41.96886896708079],[-87.79054962836946,41.96886682145974],[-87.79100629594924,41.96886272254913],[-87.79106506202919,41.968862232035086],[-87.79109323478663,41.968861978992294],[-87.79152173029777,41.96885813135165],[-87.7916437283526,41.968857024845526],[-87.79164428879955,41.968857019806116],[-87.7917645172523,41.96885592897106],[-87.79221934720803,41.968851871724674],[-87.79227811337424,41.96885132543141],[-87.79273301682692,41.96884726649614],[-87.79285345413929,41.96884551963786],[-87.79285348172408,41.96884551894445],[-87.79285444563334,41.96884550509614],[-87.79297581485699,41.96884374438494],[-87.79342946730924,41.968839676801586],[-87.79348823346038,41.96883912988876],[-87.79394203295034,41.968835060971195],[-87.79406419931469,41.96883408824742],[-87.79406495539642,41.9688340821942],[-87.79418481820895,41.9688331278847],[-87.7946401602454,41.96882922810403],[-87.79469892628842,41.968828735455105],[-87.79490772089665,41.96882694733884],[-87.79515441610079,41.96882483432788],[-87.79527806441858,41.96882376462586],[-87.79527872489004,41.96882375893982],[-87.79531883052442,41.9688234120488],[-87.79533606971805,41.96882326287138],[-87.79536522792394,41.96882301065392],[-87.79539720232818,41.96882273402914],[-87.79541668254919,41.96882256734932],[-87.79548171101396,41.968822010064414],[-87.7955122390505,41.96882174858515],[-87.7955824468435,41.96882114690115],[-87.79561023223354,41.96882090877269],[-87.79567242427625,41.96882037541574],[-87.79570810810556,41.96882006969934],[-87.79577590275055,41.96881948842919],[-87.79577683903041,41.96881948046424],[-87.79580754321665,41.96881921726145],[-87.79585269171638,41.96881883012924],[-87.79588316454445,41.96881857433012],[-87.79589236442217,41.96881849720186],[-87.79591145774698,41.96881833685951],[-87.79599038184176,41.968817660196976],[-87.79599965197167,41.96881758091914],[-87.7960855856677,41.96881684369557],[-87.7961081681887,41.968816650252926],[-87.79616253239075,41.96881618400566],[-87.79619698610888,41.96881588857245],[-87.79625924875134,41.96881535440461],[-87.79631094091023,41.96881491126155],[-87.79636694672601,41.96881443091716],[-87.79640363709686,41.96881411322711],[-87.79648891221154,41.96881337454244],[-87.79660973253307,41.96881232805197]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3287720.40174","perimeter":"0.0","tract_cent":"1167231.62230161","census_t_1":"17031070500","tract_numa":"16","tract_comm":"7","objectid":"186","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917415.26951502","census_tra":"070500","tract_ce_3":"41.9289459","tract_crea":"","tract_ce_2":"-87.66089257","shape_len":"8605.39657345"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65857813702063,41.92892331671479],[-87.658567415214,41.92866917609474],[-87.65856162022872,41.928471503456414],[-87.65854898524356,41.92824206685831],[-87.65853543592166,41.92801204858965],[-87.65853198295163,41.92776661278307],[-87.65853085729962,41.92765806970801],[-87.65852986927096,41.9275627595309],[-87.6585293410353,41.92751179621782],[-87.65851571505206,41.92710799601114],[-87.65850265423956,41.92672094653903],[-87.65848615440267,41.92625861349536],[-87.65848037065408,41.926096555912636],[-87.6584706535812,41.92582427571407],[-87.65847031279223,41.92581292250649],[-87.65846086338479,41.92549795747403],[-87.6584533872407,41.92529161352405],[-87.65905482031397,41.9252835553737],[-87.65905566599625,41.92528354222803],[-87.6599449769127,41.925269377096875],[-87.66002300305568,41.925268134073185],[-87.66051486356089,41.92526072754779],[-87.66088580791458,41.92525514210721],[-87.6612928803801,41.925249011718904],[-87.66134547186725,41.92524821963667],[-87.66172567745893,41.92524248590362],[-87.66194465238414,41.92523900309224],[-87.66210474656565,41.925236456672984],[-87.66276644649272,41.925225928972374],[-87.66332744603542,41.92521779698108],[-87.66334315711399,41.925555419109216],[-87.66334622717982,41.92567217629233],[-87.66335827254298,41.9261302300198],[-87.66337634882615,41.926829453775966],[-87.66338271809657,41.92703220009967],[-87.66302605596397,41.92703789124034],[-87.66278031771132,41.927041939618945],[-87.66244754606964,41.92704741035962],[-87.66216865887338,41.92705168223155],[-87.66221288082649,41.928411018261556],[-87.66221549062864,41.92849124410974],[-87.66223002531028,41.92886816206296],[-87.66283953581213,41.928858181030904],[-87.66309075694323,41.9288540660248],[-87.66344337396845,41.92884826822358],[-87.66345777130448,41.92919341782087],[-87.6634646669651,41.929406409662406],[-87.66349061756769,41.93022082620316],[-87.6635053737857,41.93066509221561],[-87.66352337160228,41.93120693388204],[-87.6635312041007,41.93149097898741],[-87.66353648334454,41.93166787480965],[-87.66354310930743,41.93186354895118],[-87.66354814448624,41.93201080575633],[-87.66354939690737,41.932047447857194],[-87.66355340839793,41.932164760064154],[-87.66356800061544,41.9324804626355],[-87.66335918518782,41.93248393204519],[-87.66235043496233,41.932498962574456],[-87.66196985587352,41.93250463108598],[-87.66112899705637,41.93251808005382],[-87.66053576711562,41.932527564750416],[-87.66042723285474,41.93252929945415],[-87.65991734824473,41.93253649223025],[-87.6598685357224,41.932537180677826],[-87.65980571091646,41.93253806681927],[-87.65950924171874,41.93254224744063],[-87.65932424079425,41.932545480992346],[-87.65871047884781,41.93255620619024],[-87.65869475157308,41.9321007494294],[-87.65867974880261,41.93170036186533],[-87.65866449047672,41.93129316710333],[-87.65864386081392,41.93073833075897],[-87.65863562711705,41.93051687698997],[-87.65862448620157,41.93018613289256],[-87.6586093655466,41.929830338365576],[-87.65860272464522,41.92967407054865],[-87.65859410644201,41.92937533912202],[-87.65859131153964,41.92927847884705],[-87.65858807797906,41.92916490395775],[-87.65857813702063,41.92892331671479]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3693654.43477","perimeter":"0.0","tract_cent":"1165930.26118064","census_t_1":"17031070600","tract_numa":"12","tract_comm":"7","objectid":"711","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917338.44733194","census_tra":"070600","tract_ce_3":"41.92876301","tract_crea":"","tract_ce_2":"-87.66567684","shape_len":"8576.92798388"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66345777130448,41.92919341782087],[-87.66344337396845,41.92884826822358],[-87.66309075694323,41.9288540660248],[-87.66283953581213,41.928858181030904],[-87.66223002531028,41.92886816206296],[-87.66221549062864,41.92849124410974],[-87.66221288082649,41.928411018261556],[-87.66216865887338,41.92705168223155],[-87.66244754606964,41.92704741035962],[-87.66278031771132,41.927041939618945],[-87.66302605596397,41.92703789124034],[-87.66338271809657,41.92703220009967],[-87.66337634882615,41.926829453775966],[-87.66335827254298,41.9261302300198],[-87.66334622717982,41.92567217629233],[-87.66334315711399,41.925555419109216],[-87.66332744603542,41.92521779698108],[-87.66403914289933,41.92520747656399],[-87.66457389547793,41.92520056829899],[-87.6648135754608,41.925197471187516],[-87.66538214284093,41.92518832135617],[-87.66576854880898,41.92518349970585],[-87.66640971556285,41.92517549654072],[-87.66698915140863,41.925167202093604],[-87.6673944548065,41.925161398747534],[-87.668145814809,41.92515157982746],[-87.66815270040162,41.92534405869945],[-87.66816192740261,41.92561660644997],[-87.66816663030038,41.92575552599537],[-87.66817681734842,41.92605643452659],[-87.66818318162613,41.926244422992696],[-87.66820925763864,41.92696371067581],[-87.6682231989744,41.92734827163394],[-87.66826167451669,41.92852282973557],[-87.66827152030224,41.92877620922736],[-87.66827976889483,41.928988491863294],[-87.66828579001354,41.92916594070326],[-87.66828753809523,41.92922149388441],[-87.66829358142923,41.92941354210682],[-87.66831880322708,41.93012002345693],[-87.66833464203333,41.93056231906016],[-87.66833816436986,41.93065619951863],[-87.66836587065026,41.931394657589884],[-87.6683759765786,41.93197278242211],[-87.66837610611095,41.93198019641043],[-87.66839400828434,41.932403540975635],[-87.66779016085125,41.93241079806263],[-87.667191142549,41.93241941423073],[-87.66706947810944,41.9324211646558],[-87.66607575806373,41.93243998223825],[-87.66598487005798,41.932441433144824],[-87.66477158153441,41.93246079838183],[-87.66426867157254,41.93246881838063],[-87.66356800061544,41.9324804626355],[-87.66355340839793,41.932164760064154],[-87.66354939690737,41.932047447857194],[-87.66354814448624,41.93201080575633],[-87.66354310930743,41.93186354895118],[-87.66353648334454,41.93166787480965],[-87.6635312041007,41.93149097898741],[-87.66352337160228,41.93120693388204],[-87.6635053737857,41.93066509221561],[-87.66349061756769,41.93022082620316],[-87.6634646669651,41.929406409662406],[-87.66345777130448,41.92919341782087]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"16430257.3462","perimeter":"0.0","tract_cent":"1125644.34855462","census_t_1":"17031090200","tract_numa":"72","tract_comm":"9","objectid":"176","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1945063.14262958","census_tra":"090200","tract_ce_3":"42.00560802","tract_crea":"","tract_ce_2":"-87.81309813","shape_len":"17247.1735192"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80671952368317,42.00431893412136],[-87.80672200932425,42.00409331817029],[-87.80672390462395,42.003921485432485],[-87.8067260146188,42.00372816635946],[-87.8067290894225,42.003448986689115],[-87.80672908943835,42.003448984768255],[-87.8067308588957,42.00328785516412],[-87.80673318250633,42.00307299567158],[-87.80673511451009,42.00290116279709],[-87.80673780477439,42.002664186488296],[-87.80673965197117,42.00250258960788],[-87.80674095577594,42.00235339344207],[-87.80674095579178,42.00235339152122],[-87.80674246025114,42.00222447861668],[-87.80674446695089,42.00205259090105],[-87.8067461325004,42.00191297334935],[-87.80674914211808,42.00165514367886],[-87.80675104882198,42.00151300256405],[-87.80675514460356,42.00114328795544],[-87.80675519038856,42.00113916281648],[-87.80675519326694,42.001138902954374],[-87.80675519384162,42.001138833254444],[-87.80675519669286,42.00113857668525],[-87.80675835825305,42.000853202813836],[-87.80675853374647,42.00083736165223],[-87.80676435719201,42.00051917088844],[-87.80676595036955,42.00037952634858],[-87.80676800664203,42.00019696415726],[-87.80677010078732,42.000014402408254],[-87.80677070035841,41.99996050969827],[-87.80677237236755,41.99981027208628],[-87.80677409503265,41.99950493300922],[-87.80677476468242,41.99938622242593],[-87.8067762311445,41.99922017015018],[-87.80677718763732,41.99910124875039],[-87.80677811032558,41.998993790250516],[-87.80678183495242,41.99863851648353],[-87.80678202537065,41.99862037190559],[-87.80678281028558,41.998545464974576],[-87.80678965921877,41.998016826877304],[-87.80679190385395,41.99777064428523],[-87.80679465100529,41.99746930013604],[-87.80679637381996,41.997354024313495],[-87.80679845111744,41.99721805886692],[-87.80680098993179,41.9969784406124],[-87.80680425448875,41.996670233910116],[-87.80680494066046,41.99638615771863],[-87.80680531089348,41.99623413086227],[-87.80680802486918,41.99609232316794],[-87.80891234318742,41.99727872507129],[-87.8115370063246,41.99875069173312],[-87.8116921889791,41.9988378394916],[-87.8120643576988,41.999046374199516],[-87.8134309361129,41.99981266414417],[-87.81344089306714,41.999818247302144],[-87.81707688284658,42.00187238204456],[-87.8199553410409,42.00349220128807],[-87.82118251722012,42.004173317221],[-87.82118800886161,42.004168313534535],[-87.82121854254717,42.00414049327505],[-87.82134504495282,42.00412086002201],[-87.82134349509703,42.004253594744576],[-87.82134105106644,42.00446293295962],[-87.82134005937644,42.004546055402066],[-87.82133835708096,42.00468871326512],[-87.82133799530068,42.0047199773561],[-87.82133799285974,42.00472019002029],[-87.82133796276497,42.0047227963219],[-87.82133668325483,42.0048333256668],[-87.82133400191861,42.00505756871647],[-87.82133152431719,42.00526562219504],[-87.82133132135272,42.005281758248984],[-87.82133112580551,42.00529701509617],[-87.82133079970949,42.00532846210633],[-87.82132286457218,42.006001668597094],[-87.82132228633961,42.00605070146781],[-87.82132195369077,42.006078926212275],[-87.82132090409671,42.0061679763802],[-87.82132042688329,42.00620913660837],[-87.82131912834467,42.0063161549183],[-87.82131660109111,42.00653024562978],[-87.8213153742182,42.006637317765126],[-87.82131497231858,42.00666931381731],[-87.82131290553234,42.00684432953012],[-87.82131160204621,42.00695173089546],[-87.82131037441007,42.00705907881093],[-87.82130906951929,42.00716669970144],[-87.82130835064932,42.00722877042005],[-87.82131306238082,42.00735180099391],[-87.82131343741834,42.00736160712005],[-87.82131802561003,42.00748141682926],[-87.82131128734494,42.0077916112076],[-87.82129854607372,42.008378096222536],[-87.82129854605391,42.008378098692226],[-87.82129854603191,42.008378101436314],[-87.82129854597909,42.008378108022136],[-87.82129854591749,42.00837811570561],[-87.82129854547692,42.008378124759474],[-87.8212985453867,42.008378136010265],[-87.82129854491313,42.008378149180274],[-87.82129854438939,42.00837821448973],[-87.82129735910166,42.008443520987555],[-87.82129551194603,42.0085454320614],[-87.82129404816739,42.008626928051065],[-87.8212922699957,42.008724777750025],[-87.82129064532873,42.00881724978924],[-87.82128856212528,42.008953133179695],[-87.82128724616197,42.0090346847067],[-87.82128581251692,42.009121641766434],[-87.82128313762874,42.00927165510025],[-87.82128300550376,42.00927895378778],[-87.82128200690182,42.00931629751497],[-87.82128065214306,42.009365934183],[-87.82127671628915,42.0095125934221],[-87.82127401267229,42.00961438567443],[-87.8212739746902,42.00961581824768],[-87.82127069311534,42.00974058202105],[-87.82126874533361,42.009827454176175],[-87.82126801369478,42.00990950225174],[-87.82126718854725,42.01003995717936],[-87.82126599043829,42.01014346275105],[-87.82126580621575,42.01015721060465],[-87.82126489465527,42.01022498807562],[-87.8212631426944,42.01036084519367],[-87.82126163906283,42.01047491480893],[-87.82126008462376,42.01059990580343],[-87.8212586101883,42.01071946282958],[-87.82125713631117,42.010898680224905],[-87.82125635167179,42.01099650632607],[-87.821255872074,42.01105630066601],[-87.82125346131939,42.01135686118608],[-87.82107302057781,42.011360337018345],[-87.82102856379775,42.011361126248104],[-87.82094951418021,42.01136253024895],[-87.82088623656969,42.01136366432768],[-87.82081838928502,42.011364880601285],[-87.8207239535786,42.011366928963824],[-87.82057821292665,42.011370311996366],[-87.82040391190634,42.01137439048269],[-87.82022888467137,42.011377394949115],[-87.82005299176133,42.01137809098037],[-87.8200424468239,42.01137834266999],[-87.81998821758971,42.0113796393798],[-87.81998304857791,42.01137975786348],[-87.8199810398573,42.01137980403837],[-87.81972901245699,42.011385587619245],[-87.81972901276976,42.011385594481126],[-87.81968216264096,42.01138653027158],[-87.81955747592127,42.01138901830912],[-87.81943352494787,42.01139161927276],[-87.81932502909252,42.011394097216694],[-87.8191717068343,42.01139760916472],[-87.81910568180908,42.01139912457009],[-87.81901893670906,42.011401095939874],[-87.8188229010574,42.01140612017636],[-87.81876163298604,42.01140769045925],[-87.81871282676556,42.01140894117418],[-87.81863161089146,42.011411022658656],[-87.81854554179488,42.011411295303304],[-87.81847278508438,42.01141250546132],[-87.81835612499836,42.011414452189804],[-87.81819629323547,42.01141752200204],[-87.81807278488975,42.01141993138912],[-87.81794879775859,42.011422393102976],[-87.8178539576705,42.011424327520764],[-87.81757246797773,42.01143058024715],[-87.81735866202685,42.01143532921961],[-87.81719923514588,42.011438372021374],[-87.817082572402,42.01144059158808],[-87.81695107788487,42.011443155943816],[-87.81682753021875,42.01144586567495],[-87.81670357713087,42.011448655774124],[-87.81655783576461,42.01145203342375],[-87.81641574957219,42.011455841446946],[-87.81618349794248,42.01146206551017],[-87.81602288780633,42.01146575995282],[-87.81586956501609,42.01146929492898],[-87.8156982040157,42.01147380624401],[-87.8156719993236,42.01147449623516],[-87.81547594442898,42.011479429598054],[-87.81542125409547,42.011480754999994],[-87.81536774111099,42.01148209721415],[-87.81514847277197,42.0114882954419],[-87.8150037667896,42.01149238598868],[-87.81470893267328,42.0115007193118],[-87.81455862122682,42.01150492474799],[-87.8144068799484,42.01150857468525],[-87.81431527560886,42.01151076915606],[-87.81418042694371,42.011513999572585],[-87.81400352805154,42.01152074589612],[-87.81394399500036,42.01152219028451],[-87.81379704083011,42.01152575515022],[-87.81361953729565,42.01153006102934],[-87.81341054552243,42.01153513042063],[-87.81328401291117,42.01153834421329],[-87.81298228968524,42.01154636198166],[-87.81293068931038,42.01154779076231],[-87.81273157514448,42.01155330434987],[-87.8124509014117,42.01156107535756],[-87.81223349746398,42.01156681215921],[-87.81194469291597,42.01157441933333],[-87.8118186371617,42.011577798327814],[-87.8115320298474,42.01158443449567],[-87.81115044750162,42.01159594574751],[-87.81093425338992,42.011602198206496],[-87.81074625207673,42.01160763516074],[-87.81056870468278,42.011612616955354],[-87.8102939181172,42.01162035982918],[-87.8099634086154,42.011629671780845],[-87.80977434488953,42.01163451751192],[-87.80958572132981,42.011639529591356],[-87.80935834248727,42.01164557190347],[-87.80910029502184,42.01165306039699],[-87.80866220595958,42.01166577261508],[-87.8084405279564,42.01167211358511],[-87.8083022529185,42.01167578958588],[-87.80785526866167,42.011686674039034],[-87.80741432011943,42.0116974104235],[-87.80723779802456,42.011701733431366],[-87.80710943546978,42.011704876871185],[-87.80693997800537,42.011710438702316],[-87.80663826131972,42.01171305681822],[-87.8066409714641,42.01147817121563],[-87.80664128065246,42.01133369127648],[-87.8066418659494,42.01114673225479],[-87.80664736382099,42.01081482044253],[-87.80664976257322,42.01067128309925],[-87.80665235302875,42.010464272396895],[-87.80665235465531,42.01046411982733],[-87.80665406465431,42.010319277196345],[-87.80665603186196,42.01014316431168],[-87.80665686149223,42.010029256468165],[-87.80665769102816,42.00991540405461],[-87.80665774479402,42.00990888629822],[-87.80665782548579,42.00989910444987],[-87.8066592085489,42.00974567126006],[-87.80665933676315,42.009731466541865],[-87.80666084754365,42.00956388735238],[-87.80666288132898,42.00933522320795],[-87.80666289101937,42.00933453912547],[-87.80666499737706,42.0091902575507],[-87.80666882769346,42.00900238004833],[-87.80667069090933,42.008910320965015],[-87.80667100521926,42.00879638383958],[-87.8066715423433,42.008584150781516],[-87.80667167860022,42.00854523876556],[-87.80667207776425,42.00843448473606],[-87.80667395039026,42.008287929875166],[-87.80667643533698,42.00809345681629],[-87.80667927500618,42.00786962554008],[-87.80668147492482,42.00768325036846],[-87.8066820129752,42.007635860909915],[-87.80668278259371,42.007569317776245],[-87.80668446689306,42.00741694790858],[-87.80668698359852,42.00718934871984],[-87.8066882200486,42.00707958641497],[-87.8066908714445,42.00686513964875],[-87.80669249548524,42.006752992216995],[-87.80669326839914,42.006699429120076],[-87.80669591098399,42.00651294589905],[-87.80669601168057,42.00650073662364],[-87.8066975221536,42.006317593647815],[-87.80669962085344,42.00606749807247],[-87.8067011979357,42.00594319335956],[-87.80670130087252,42.005934950275595],[-87.8067023903015,42.005847645749284],[-87.80670407038232,42.00571535617617],[-87.80670414248523,42.00570982558545],[-87.80670809698678,42.005405609831726],[-87.80670849202896,42.005379926268176],[-87.80670867231704,42.005366274184176],[-87.80671044914386,42.00523188573574],[-87.80671182191358,42.005092240299795],[-87.80671285504903,42.00498480986089],[-87.80671405039091,42.00486667726003],[-87.80671601806522,42.0046703718832],[-87.80671798699115,42.00447400174242],[-87.80671952368317,42.00431893412136]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"22416872.8645","perimeter":"0.0","tract_cent":"1130784.79278268","census_t_1":"17031100200","tract_numa":"88","tract_comm":"10","objectid":"177","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1941448.96417334","census_tra":"100200","tract_ce_3":"41.99560313","tract_crea":"","tract_ce_2":"-87.7942693","shape_len":"26105.4436927"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78014503242454,42.00000825333758],[-87.78012629897593,41.99986469655822],[-87.78010868894282,41.99977833420644],[-87.78008473944232,41.99967212821058],[-87.7800658355982,41.99955247252972],[-87.7800482380321,41.999468936745075],[-87.78001166505997,41.99933352653323],[-87.77999521072799,41.999228454316885],[-87.77999382187647,41.999184381886565],[-87.77999137277139,41.999106675880576],[-87.7799958710697,41.999024838223114],[-87.78000321282396,41.998950258945875],[-87.78001942680064,41.99882402179449],[-87.78004355739714,41.998679985526124],[-87.7800517482435,41.99858806701909],[-87.78006107072281,41.99847592924398],[-87.78006729809675,41.99841981301972],[-87.78008003148457,41.99826168963225],[-87.78008963423328,41.99812444545611],[-87.780057746958,41.99792031708149],[-87.78004250631301,41.997797859081345],[-87.78003569212933,41.997673872561045],[-87.78003204034844,41.9975491164405],[-87.78002317067076,41.99741962859625],[-87.78002228629337,41.99741355389769],[-87.7804924863619,41.99741007628251],[-87.78166060736531,41.99739958783233],[-87.78241669459516,41.99738955285381],[-87.78285175403863,41.99740030257821],[-87.78330219124602,41.997397970307915],[-87.78363864985677,41.997394587520624],[-87.78409264669752,41.997391264818084],[-87.7845023475501,41.99738826476306],[-87.78469321534767,41.99738711900537],[-87.7849424317808,41.997385702849826],[-87.78531210878606,41.99738247631345],[-87.78596662245849,41.997376760035394],[-87.78636185921897,41.997374473055096],[-87.78681813175427,41.99736742571809],[-87.78682872921615,41.997367185834804],[-87.78722678214386,41.99735817420237],[-87.7874431162935,41.9973559375741],[-87.78744759855941,41.99704243445191],[-87.78745976660444,41.99691088202328],[-87.78747986286582,41.99669360840182],[-87.78749088190615,41.995920730323554],[-87.7874934080105,41.99573273739581],[-87.78749740879388,41.99554777009076],[-87.7875055329459,41.99517217558939],[-87.78751250225862,41.994849965032294],[-87.78751526892252,41.99471891888018],[-87.78751877589515,41.99450139971647],[-87.78752360822995,41.99419596576728],[-87.78752652331409,41.994044225486164],[-87.78753347786936,41.993668338280436],[-87.78754265386046,41.99317236067625],[-87.78754618407037,41.99297874682483],[-87.7875586726411,41.99243325953309],[-87.7875670171796,41.992068787286264],[-87.78757014988648,41.99189149949067],[-87.78757268287951,41.991604676055175],[-87.78757430870107,41.991396054126966],[-87.78757680162106,41.99131884421409],[-87.78758431292106,41.991086199269866],[-87.78758717865136,41.99093890207812],[-87.78759067320132,41.9907592855932],[-87.78759449188132,41.990544734787846],[-87.78760024581281,41.99016601593908],[-87.78760474415557,41.98986990248991],[-87.78760862140331,41.989668633857235],[-87.78761141059186,41.98952386312412],[-87.7876134011534,41.989420526012324],[-87.78762015224292,41.989103795080084],[-87.78762607136983,41.988774555677146],[-87.78762864231201,41.98863043343587],[-87.78763232131513,41.988407649284156],[-87.78763771602272,41.98808100528272],[-87.78764786094557,41.98755781398559],[-87.78766348367773,41.98675211120083],[-87.78766763225735,41.98651069992115],[-87.78767225781098,41.98624151189439],[-87.78767676746808,41.9859475544135],[-87.78768088520737,41.985679156197385],[-87.78768633246955,41.98538582690107],[-87.7876956986599,41.98522625463237],[-87.78770070887967,41.985140893146095],[-87.78770186283933,41.98497886693929],[-87.78786708777054,41.98507425849918],[-87.78793995373134,41.985112776827144],[-87.78804852409908,41.98517405745008],[-87.78809450001344,41.985200007932995],[-87.78819691467021,41.98525856162731],[-87.7883346168435,41.98533704101623],[-87.7884453454248,41.98539980514483],[-87.78856958100845,41.98547026214491],[-87.78875278374014,41.98557453290283],[-87.78893134030879,41.98567592736389],[-87.78912352171481,41.9857841917574],[-87.78928868891458,41.98587717981226],[-87.78950587633237,41.98600050671659],[-87.78968285031007,41.98610099817138],[-87.78989852945956,41.986223230757524],[-87.78999865054615,41.98627938452478],[-87.79019424264541,41.986389254898114],[-87.79034004232051,41.98647199597882],[-87.79056392075968,41.98659917848739],[-87.79070004806219,41.98667745603569],[-87.7907948887628,41.98673199196007],[-87.79094936977775,41.98681916428861],[-87.79109283337249,41.98689997270528],[-87.79128776710719,41.98700989298207],[-87.79153072393495,41.98714761881227],[-87.79171968513465,41.98725495805693],[-87.79196571972692,41.98739431656231],[-87.7921689319396,41.9875086102145],[-87.79236105033827,41.9876169240272],[-87.79250678207015,41.987699662024355],[-87.79283602494849,41.98788661061869],[-87.79302825503582,41.987995033604065],[-87.79320170708266,41.98809269269882],[-87.79336376858785,41.98818461745738],[-87.7935177035194,41.98827194839891],[-87.79367698605522,41.9883620210311],[-87.79383667317698,41.98845215022676],[-87.79391241669245,41.98849490406754],[-87.7941880400521,41.98865105412076],[-87.79437704812324,41.9887582517087],[-87.7946098999819,41.988890856111894],[-87.79471940283376,41.98895321516751],[-87.79493591280698,41.98907516772821],[-87.79516626047726,41.989205115490584],[-87.79534191100754,41.989304565375086],[-87.79550409054887,41.98939635044265],[-87.79565272371767,41.9894804978395],[-87.79575003211676,41.989535563157844],[-87.7959153613053,41.989629036628166],[-87.79605832307007,41.98970986363202],[-87.79625041723796,41.989818252846895],[-87.79662878167784,41.9900323137639],[-87.79681779932831,41.99013934298366],[-87.79707730083595,41.990289647901605],[-87.79720032558681,41.99036200449454],[-87.79740384602047,41.990476872874744],[-87.79755581425403,41.9905631738431],[-87.7978144707063,41.99070938401089],[-87.79811950870771,41.99088324059584],[-87.79816186041816,41.990907379268],[-87.7984335291492,41.991059494117074],[-87.79878733691964,41.99126020642014],[-87.79904204063449,41.99140469427502],[-87.79919657323224,41.99149278872724],[-87.79926379123592,41.99153097142399],[-87.7993923022545,41.99160327516711],[-87.79949664871677,41.99166201981723],[-87.79972776403565,41.991793360676766],[-87.79990464550565,41.9918938803334],[-87.80000955452306,41.991951447123654],[-87.80026433642182,41.99209604238641],[-87.80063192188017,41.992304606484716],[-87.80110988073075,41.9925742382449],[-87.80162553976776,41.99286513290069],[-87.80228667743903,41.993238385708246],[-87.80284940157446,41.993556241089905],[-87.80322338912065,41.993769957543044],[-87.80352369648485,41.99394156713492],[-87.80418393180702,41.99431540825442],[-87.80461554971545,41.9945597648887],[-87.80526411709917,41.994926987668954],[-87.80560665222367,41.99511707117647],[-87.80600236040797,41.99533665986561],[-87.80611687852803,41.99539464938081],[-87.80617573528868,41.99542445218944],[-87.80635388936687,41.99551616212834],[-87.80681282144394,41.99577492928393],[-87.80680876299623,41.996043477362],[-87.80680802486918,41.99609232316794],[-87.80680531089348,41.99623413086227],[-87.80680494066046,41.99638615771863],[-87.80680425448875,41.996670233910116],[-87.80680098993179,41.9969784406124],[-87.80679845111744,41.99721805886692],[-87.80679637381996,41.997354024313495],[-87.80679465100529,41.99746930013604],[-87.80679190385395,41.99777064428523],[-87.80678965921877,41.998016826877304],[-87.80678281028558,41.998545464974576],[-87.80678202537065,41.99862037190559],[-87.80678183495242,41.99863851648353],[-87.80677811032558,41.998993790250516],[-87.80677718763732,41.99910124875039],[-87.8067762311445,41.99922017015018],[-87.80677476468242,41.99938622242593],[-87.80677409503265,41.99950493300922],[-87.80677237236755,41.99981027208628],[-87.80677070035841,41.99996050969827],[-87.80677010078732,42.000014402408254],[-87.80676800664203,42.00019696415726],[-87.80676595036955,42.00037952634858],[-87.80676435719201,42.00051917088844],[-87.80675853374647,42.00083736165223],[-87.80663549308223,42.000838937645206],[-87.80583595476256,42.00084915170669],[-87.8053884679199,42.00085870246763],[-87.80530871293911,42.00090432615599],[-87.80529719775646,42.00138697138908],[-87.80529715100168,42.00138893299919],[-87.80529684577536,42.00140173189388],[-87.80529455281223,42.001497822514075],[-87.80503738185,42.001496720473654],[-87.80501098396716,42.001496607214406],[-87.8047014138457,42.00149527998453],[-87.8046827461839,42.001499819082284],[-87.8046553993602,42.001501229887786],[-87.80459615908589,42.0015020547168],[-87.80453625787916,42.001502766702785],[-87.80444239557579,42.001503871029186],[-87.80435706930123,42.001504905121],[-87.80420389441231,42.00150672355191],[-87.804150874442,42.00150735811093],[-87.80413250815641,42.00150757804763],[-87.80410131203261,42.001507952055746],[-87.80400722898177,42.00150905500854],[-87.80389610937121,42.00151040861355],[-87.80381931994073,42.001511317026875],[-87.80369116481855,42.001512838553445],[-87.80353467833521,42.0015147042026],[-87.80337705379382,42.00151658331931],[-87.80335766057507,42.001516815130586],[-87.80308538254404,42.0015200582204],[-87.80295741133963,42.00152158005167],[-87.80295618093805,42.001521594399414],[-87.80293829629834,42.001521806765716],[-87.80278806378509,42.001523589427805],[-87.8027776708437,42.0015237131797],[-87.80258990912431,42.00152594614985],[-87.80249586282294,42.0015270480337],[-87.80247920784683,42.00152724598224],[-87.8023274549189,42.00152905229409],[-87.80212036175162,42.00153151696463],[-87.80209737960385,42.00153179095486],[-87.80198648103615,42.00153314373407],[-87.80187536255573,42.00153444022966],[-87.80172267175269,42.00153625210211],[-87.8017120830638,42.00153637786961],[-87.8017105660318,42.00153639581612],[-87.80167910131068,42.00153676956848],[-87.80154274725408,42.00153767471625],[-87.80143185598327,42.00153814885098],[-87.80125238422912,42.001538881570674],[-87.80125209614351,42.00153888325396],[-87.80107851083471,42.00154019841152],[-87.80108609928178,42.00087244880333],[-87.80108609938011,42.00087243700376],[-87.79965934913207,42.00086917501107],[-87.79948987589228,42.00002976114853],[-87.79948107722393,41.999986187133565],[-87.799480908732,41.99998535019356],[-87.799329425143,41.99998692109103],[-87.79928943735443,41.99998733604292],[-87.79915193789809,41.99998922093619],[-87.79901450414938,41.999987648284105],[-87.7989338836121,41.999989185149836],[-87.79876915023546,41.999992326420866],[-87.79871578869633,41.99999334408625],[-87.79868021494923,41.9999940225189],[-87.7985785883185,41.99999557984491],[-87.7984340058107,41.999995427619005],[-87.79821280056362,41.999998320850835],[-87.79799163245723,42.00000121382957],[-87.7978756688991,42.00000144161544],[-87.797745283271,42.0000017660986],[-87.7977407819197,42.00000177939889],[-87.79769694021228,42.00000190660889],[-87.79761489644471,42.00000214558638],[-87.79742674939993,42.0000025845907],[-87.7971419747675,42.000005096641935],[-87.79714197145654,42.00000509662647],[-87.79714196667635,42.000005096329716],[-87.79712980497595,42.000040293652944],[-87.79712617614686,42.00005079575251],[-87.79712595781625,42.00007241926757],[-87.79712571512772,42.000091203524114],[-87.79712553789369,42.000104908306106],[-87.79712510960195,42.00014277620289],[-87.79712442596083,42.000202294608606],[-87.79712441490648,42.00024366330285],[-87.79712434669699,42.00049858446198],[-87.79712424674094,42.000874109819094],[-87.79712422986395,42.000939658956284],[-87.79712050757695,42.000939683006216],[-87.79683040794806,42.0009415593707],[-87.79674736822614,42.00094209685433],[-87.79656208330333,42.0009430143301],[-87.7963998680022,42.0009438201551],[-87.79612212332954,42.00094542952681],[-87.79593661447765,42.00094681118369],[-87.79580909032715,42.00094783318441],[-87.79555272405175,42.00094998007966],[-87.79555272074074,42.000949980064156],[-87.79555271742743,42.00094998032306],[-87.79528773364336,42.000952223464246],[-87.79507934120431,42.000953551632904],[-87.7948476979487,42.00095488039865],[-87.79468544476994,42.00095576594889],[-87.79446575612293,42.00095723181595],[-87.7943152372663,42.00095841890433],[-87.79415312823015,42.00095966030101],[-87.79394018452132,42.00096154103041],[-87.793940169063,42.00096154178103],[-87.79370119745805,42.0009636565073],[-87.79358541334652,42.00096420982936],[-87.79333051930354,42.00096539821543],[-87.79332401707228,42.00096542909743],[-87.79313353547228,42.00096633772236],[-87.79304122493295,42.000966781422115],[-87.79282128001745,42.000968133167696],[-87.79263602999598,42.000969346606034],[-87.7924625545717,42.00097044975012],[-87.79229617885811,42.00097147769898],[-87.79204543892226,42.00097303928127],[-87.79195287061962,42.00097350833223],[-87.79174440731745,42.00097450108292],[-87.79174264121293,42.00097452046676],[-87.79163411545757,42.00097546335957],[-87.79155845479825,42.00097612054809],[-87.79116628812714,42.00098014157085],[-87.7911662715698,42.00098014176707],[-87.79103686651098,42.000834417486224],[-87.7909354074991,42.00072071265124],[-87.79090702018716,42.00068890995812],[-87.79084276854549,42.00061692850922],[-87.79076273914555,42.00052719956018],[-87.79075282634102,42.00051612076809],[-87.79074916075238,42.00051202858697],[-87.79074907583903,42.00051193351089],[-87.79074884987767,42.00051168189784],[-87.7906753901596,42.00042968250384],[-87.79065603561153,42.00040807789027],[-87.79064803314606,42.00039914502468],[-87.79064802059362,42.00039915017932],[-87.7906421764171,42.00040171307058],[-87.79053948922648,42.00045012938908],[-87.79027035793654,42.00057701011464],[-87.7901939624937,42.00061311874959],[-87.79011530946757,42.00055273158065],[-87.79008257330419,42.00052590308716],[-87.79004798539674,42.00050060284392],[-87.79000372416853,42.00047064600874],[-87.7899749752502,42.00045525220757],[-87.78994567508198,42.0004440269661],[-87.78993257413865,42.00043961457743],[-87.78980733608111,42.00039743420666],[-87.78975600767467,42.00038519902915],[-87.78972256239847,42.00037691783272],[-87.78964571443356,42.00035454544039],[-87.78960616894847,42.000341131114816],[-87.78957221230436,42.00032809999505],[-87.78944033539308,42.00028740998056],[-87.78936614089432,42.00025588436185],[-87.78930403945846,42.00022995928193],[-87.78923998790242,42.000208388195254],[-87.7892136324448,42.00020137534249],[-87.78912496712378,42.00019291453859],[-87.78899401982473,42.00012091715244],[-87.78892646857783,42.00007833620278],[-87.78886269774475,42.000054077199906],[-87.78881945593695,42.00003842199844],[-87.7887693187558,42.00002029201055],[-87.78869186655021,41.999978267675544],[-87.78865550022881,41.99995880343462],[-87.78859591965958,41.999926386189664],[-87.78851430124811,41.99985956188154],[-87.78849239892685,41.99983945274517],[-87.78846635693462,41.99981292998067],[-87.78843267464808,41.99978513605523],[-87.78839917672141,41.99977010377717],[-87.78831168195795,41.99974095639566],[-87.7882641564371,41.99972722929885],[-87.78822549267741,41.99971403821925],[-87.78811282177885,41.9996647662217],[-87.78807009592899,41.99965336696505],[-87.78801983813278,41.999645115179156],[-87.78793358114966,41.99963477140112],[-87.7879250848274,41.99963452713943],[-87.78784430802162,41.999632975114864],[-87.78781951679204,41.99963239079178],[-87.78778763270742,41.9996352301666],[-87.7877618606057,41.99963749540698],[-87.7876091503813,41.99964137976908],[-87.78757038757374,41.99964841271682],[-87.78749254581805,41.99966502917128],[-87.78742419460795,41.99968853774824],[-87.78742384149196,41.999688659283315],[-87.7873639341456,41.999716090741636],[-87.78733141274388,41.999733224489745],[-87.78729073363594,41.99975783851907],[-87.78723171528306,41.99977594387317],[-87.7872034983752,41.99978445384782],[-87.78713399790502,41.99980220742032],[-87.78707700194165,41.99981612369895],[-87.78703431077851,41.99982648596394],[-87.78695861325454,41.99983754154377],[-87.78689736206451,41.999845701837195],[-87.78686315312804,41.99984935342106],[-87.78679593148779,41.99984154173861],[-87.78673129224045,41.99983719999918],[-87.78654846323491,41.99978375050378],[-87.78652039353302,41.99977080140579],[-87.78645097983355,41.99975257857994],[-87.78636960640338,41.99974335457067],[-87.78628685867194,41.99973566070371],[-87.78618477964005,41.9997428030589],[-87.78605331845789,41.99974415220346],[-87.78597242670774,41.99974741629686],[-87.78583246715144,41.999740217660715],[-87.78569106672812,41.99972077286981],[-87.78558963345868,41.99972124910794],[-87.78533998358208,41.99975068309476],[-87.78529394024784,41.99976327757756],[-87.78528042841111,41.99976697371357],[-87.78521723122948,41.99978752758123],[-87.78513463920208,41.99982171031794],[-87.78503666056591,41.99987401296684],[-87.78497631272852,41.99990547503943],[-87.78488821083054,41.99996432903181],[-87.78483455626804,42.00000891281747],[-87.78478999043583,42.000044731143646],[-87.78473107896475,42.00008026163269],[-87.78462920758578,42.00013594812836],[-87.78456324313838,42.00014880493531],[-87.78445291935711,42.000173414297],[-87.7843541463876,42.0001810373437],[-87.78428005810518,42.00018886070151],[-87.784167446468,42.00017569845063],[-87.78406232686626,42.000164109236344],[-87.7839626778906,42.00015808910633],[-87.78381656901679,42.00014284553349],[-87.78369260754472,42.00011911849214],[-87.78357490943743,42.00007289147391],[-87.78348293051148,42.00004778062248],[-87.78338336756103,42.00002320964461],[-87.78327180197407,42.00000829551638],[-87.78317523694884,42.000020181630994],[-87.78312019674898,42.00004178906192],[-87.78306062453665,42.00007704083167],[-87.78302269390717,42.00011549726178],[-87.78293913658628,42.00027431483778],[-87.78292284426678,42.00031207943884],[-87.78291306277634,42.00037984131343],[-87.78290625434197,42.000503901148036],[-87.7828708777518,42.000682189776235],[-87.78286729357762,42.00070025353768],[-87.78285161038136,42.00077399716172],[-87.78283348613809,42.000866389598364],[-87.78279949004092,42.00100744280302],[-87.78277741451983,42.0010716059592],[-87.78272575329434,42.001196219013195],[-87.78268518775295,42.00127988700553],[-87.7826443367826,42.001362510819135],[-87.78260538654865,42.00145082421781],[-87.78250993469646,42.00162344255502],[-87.78246940812652,42.001698219462725],[-87.78241775053533,42.00179242671177],[-87.7823422375108,42.001948044535155],[-87.78229708019913,42.00203503798004],[-87.78225689742743,42.00213391047865],[-87.78220264531998,42.00225579408229],[-87.78215208438927,42.00236781628391],[-87.78210602529418,42.002461227004154],[-87.78203461994147,42.00259255050109],[-87.781957352378,42.002686963831756],[-87.78188451523698,42.002762518615576],[-87.78180788542385,42.00283415782621],[-87.78169459671605,42.002907459706336],[-87.78164443207525,42.00293507218688],[-87.78159248427144,42.00295189139462],[-87.7815104437403,42.002955613328076],[-87.7811012469119,42.00289618209548],[-87.7809875368746,42.002869208149505],[-87.78092522487803,42.00282944707566],[-87.78091633461324,42.002823489183804],[-87.78082689946987,42.00276355229103],[-87.7807437393578,42.00267558478546],[-87.78068075218202,42.002607554860475],[-87.78062556746806,42.00253506199133],[-87.78058126950579,42.00246714943767],[-87.78053776820799,42.00238384577672],[-87.78050534291948,42.00226621096852],[-87.78047647860005,42.00215377927655],[-87.78042731136478,42.00197695360012],[-87.78039344438764,42.001868696676866],[-87.78034239195593,42.001756679734626],[-87.7802893102627,42.00160711241812],[-87.78027656864664,42.00151078470632],[-87.78026820601062,42.00140586159472],[-87.78026876123823,42.00122699715095],[-87.78026838181982,42.001166512186494],[-87.78026805025442,42.001113713939844],[-87.78026007672062,42.00100634981351],[-87.78023102071009,42.0008014652069],[-87.78022332147022,42.00068792850545],[-87.78020713140361,42.00045031302448],[-87.7802095319277,42.00038553415922],[-87.78019717471312,42.00020238195425],[-87.78017909009019,42.00013256482492],[-87.78014503242454,42.00000825333758]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3501076.03357","perimeter":"0.0","tract_cent":"1171247.43979942","census_t_1":"17031071200","tract_numa":"12","tract_comm":"7","objectid":"187","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914862.97240263","census_tra":"071200","tract_ce_3":"41.92185491","tract_crea":"","tract_ce_2":"-87.64621098","shape_len":"7939.41544241"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64392739069804,41.92553219174168],[-87.6439126568449,41.92543851705969],[-87.64389883786771,41.92535065958199],[-87.64389525671925,41.925273744965565],[-87.64388878743661,41.92504947514822],[-87.64388535607397,41.92493049304272],[-87.64387502443098,41.924617040770556],[-87.64386438884073,41.92429428373977],[-87.64386060035383,41.924173904036365],[-87.64384582673132,41.92370447688152],[-87.64384250100946,41.923598799376215],[-87.64383648931522,41.923407787012756],[-87.6438304990787,41.92322693416125],[-87.64382284651917,41.9229684372372],[-87.64381691170858,41.92279384125977],[-87.64381120985956,41.92262610778398],[-87.64380511823035,41.92243765279815],[-87.64380056106324,41.92229097410852],[-87.64379824786404,41.92221648198032],[-87.64379644074852,41.92215829358061],[-87.64378718590028,41.92188789104787],[-87.64378714212138,41.921886599078675],[-87.64376988664797,41.92138245171917],[-87.64375795928224,41.92098863877058],[-87.64374881215201,41.92068474329152],[-87.64374392656042,41.92053128572038],[-87.64372839312584,41.920071806175784],[-87.64369894810456,41.91920387954627],[-87.64367963447042,41.9186327999932],[-87.64366706334974,41.918253160202994],[-87.6439829387047,41.91824891653236],[-87.64400674005851,41.918248596746125],[-87.64426015639292,41.91824506843683],[-87.64427093465986,41.918244917970895],[-87.64434129656115,41.91824393624831],[-87.64488967630457,41.918234525999914],[-87.64550401431565,41.91822398082489],[-87.64565545942027,41.91822138080653],[-87.64611764941921,41.91821424126958],[-87.64656407418639,41.918207335161526],[-87.64671272516256,41.918204781800235],[-87.64728640343733,41.91819492713414],[-87.64731152244677,41.91819449543601],[-87.64749795220932,41.91819129217855],[-87.64791118058595,41.91818474374148],[-87.64850888668123,41.91817970914153],[-87.64852396566829,41.91853748039879],[-87.64853013551931,41.91871649561015],[-87.64855167591176,41.919341100081525],[-87.64857459457028,41.919993916751444],[-87.64858857322005,41.920392084004845],[-87.64859554387007,41.92060620256928],[-87.64861109909292,41.921089635657914],[-87.64862297859341,41.92146662575711],[-87.64863255795265,41.92181705092032],[-87.64863843090588,41.92203189092701],[-87.6486469693346,41.92224549737453],[-87.64867137699758,41.92289251141184],[-87.6486833854719,41.923236900779685],[-87.6486895066357,41.923417375475545],[-87.64869672274762,41.92363013452635],[-87.64871255405077,41.924096894822284],[-87.6487285580369,41.92457972655346],[-87.64873211930625,41.92467485240583],[-87.6487468469208,41.925068179959545],[-87.64876097205884,41.92544541863156],[-87.64876128768812,41.92545384253287],[-87.6479013979569,41.925465346951725],[-87.64753992049877,41.92547211492098],[-87.64729189901132,41.92547675784376],[-87.64718252906925,41.92547605080593],[-87.64684566828956,41.92548510994833],[-87.64633630189914,41.92549325244887],[-87.64571631557018,41.92550316001704],[-87.64473131680822,41.925520034060284],[-87.64392739069804,41.92553219174168]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1860324.71467","perimeter":"0.0","tract_cent":"1169600.77352009","census_t_1":"17031061000","tract_numa":"9","tract_comm":"6","objectid":"188","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924822.70584195","census_tra":"061000","tract_ce_3":"41.94922091","tract_crea":"","tract_ce_2":"-87.6519704","shape_len":"5461.49341997"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64961999005963,41.95119789607549],[-87.64962440481675,41.95095303751504],[-87.649624926758,41.95088355748225],[-87.64962085111084,41.95071454443719],[-87.64961875016007,41.95064282542221],[-87.64958931718927,41.950438673218656],[-87.64958529351051,41.95031296439327],[-87.64957776857787,41.950117888773775],[-87.64956629942428,41.949820566966245],[-87.64956138341108,41.949693124233676],[-87.64955904500852,41.949638884691495],[-87.6495545879344,41.94950214153694],[-87.6495491421898,41.94933408103806],[-87.64954587131355,41.94923425458568],[-87.64954158686754,41.94911500268176],[-87.64953555830466,41.948947203516376],[-87.64952970740192,41.948748268205556],[-87.6495188165135,41.94837427703628],[-87.64951024756746,41.948082241844205],[-87.64950352046193,41.947851797728376],[-87.6495028491964,41.947828824674396],[-87.64949802907883,41.94766395113753],[-87.64949351499882,41.947508519509036],[-87.64948621917233,41.947314822749384],[-87.64967387785897,41.947320819273294],[-87.64979873189444,41.94731901054559],[-87.65008253067151,41.94731415210778],[-87.65037383395081,41.9473086296024],[-87.65052325529591,41.947305760964966],[-87.65069674862583,41.947303332733114],[-87.65086862242129,41.9473011709544],[-87.65117543332545,41.947296161477404],[-87.65129205491228,41.947294257481104],[-87.6515648202433,41.94728980266141],[-87.65171313311733,41.947287390213596],[-87.6519032264867,41.94728451892243],[-87.65221134026024,41.94727986402209],[-87.65250226875887,41.947275089922464],[-87.65282381903702,41.947270131609955],[-87.65294845312232,41.94726831815269],[-87.65311648248606,41.9472654274329],[-87.6533304897356,41.94726174513563],[-87.65351307769279,41.9472513062106],[-87.65356144275292,41.947248541013714],[-87.65361578893648,41.94724878593307],[-87.65370428223942,41.94724918494213],[-87.65374016174951,41.94724934655757],[-87.65394947929217,41.94725028980606],[-87.653950007868,41.94725029211057],[-87.65410731742838,41.94724878051162],[-87.65433036397808,41.94724458781156],[-87.65433810603338,41.947479644405725],[-87.65434199779163,41.94762211922331],[-87.65434407805387,41.94769825625648],[-87.65434843135701,41.947857583262596],[-87.6543526587682,41.94800310640579],[-87.65436064534786,41.94826893060111],[-87.65436970249345,41.94857243914739],[-87.65437882914547,41.948876332277926],[-87.65438397797558,41.94904342815379],[-87.65438856312268,41.94919224863124],[-87.65439221523005,41.94931578720141],[-87.65439805434941,41.94951376172298],[-87.65440273622644,41.949721855534996],[-87.65441655530033,41.95016411204816],[-87.65443007139973,41.95065024667101],[-87.65443888372134,41.95094084651849],[-87.65444445190778,41.95112446523655],[-87.65381756038674,41.95113413328268],[-87.6537643572101,41.95113495366194],[-87.65367100447774,41.95113639308569],[-87.65359613649339,41.951137634797334],[-87.65323484040812,41.95114362543751],[-87.65263771973575,41.951153521566496],[-87.65202014204642,41.95116366695533],[-87.65142417906887,41.951173453873125],[-87.65048181987716,41.9511882734033],[-87.65005739648099,41.95118920243031],[-87.64975906870308,41.95118984149267],[-87.64967968518754,41.95118777717708],[-87.64961999005963,41.95119789607549]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10454152.1117","perimeter":"0.0","tract_cent":"1124337.19065351","census_t_1":"17031100400","tract_numa":"38","tract_comm":"10","objectid":"178","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1938991.08092673","census_tra":"100400","tract_ce_3":"41.98896738","tract_crea":"","tract_ce_2":"-87.81804183","shape_len":"14962.8984182"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.81266263952949,41.98261261722731],[-87.81277043955204,41.982612831681266],[-87.81293555996511,41.982619946862584],[-87.81303373771789,41.98262747191829],[-87.81313197118224,41.98263719250613],[-87.81330872513436,41.982656516692415],[-87.81343200814935,41.982675396487444],[-87.81350259869897,41.98268733401915],[-87.81359292373651,41.982706211486835],[-87.81365217997981,41.982719267740094],[-87.81380981685206,41.9827557382173],[-87.81401357320463,41.98280608325711],[-87.81423355216472,41.98286067248251],[-87.81446304225646,41.98291714289208],[-87.81463313837861,41.98295934905434],[-87.81490058027177,41.98302562221877],[-87.81515924994912,41.98308971468533],[-87.81547642308031,41.983169191057804],[-87.81565041721936,41.98321164737674],[-87.81574666571665,41.98323500836983],[-87.81588600370961,41.98326955487415],[-87.81606340016754,41.983318331535315],[-87.81627097200155,41.98337540455274],[-87.81643637188577,41.983421017145425],[-87.81661714913396,41.98347081502139],[-87.81683222117069,41.983533887779835],[-87.81708470849313,41.983556397270455],[-87.81720745214386,41.983587354963355],[-87.81740390037248,41.98363697507587],[-87.81752671745093,41.98366798764137],[-87.81769431864525,41.98370993107806],[-87.81788967200703,41.983758584969735],[-87.81805605632896,41.9837965946349],[-87.81806281003507,41.983798137828614],[-87.81819695724178,41.98382445305781],[-87.81831002084948,41.98384268791048],[-87.8184442928859,41.983862664298975],[-87.81865377923415,41.98389203363808],[-87.8188157378911,41.98391317651415],[-87.81898577993105,41.983935370734535],[-87.81945284761717,41.98399655888107],[-87.81997847419416,41.98406541635584],[-87.82047220643041,41.984131014269735],[-87.82061807006507,41.98415049105969],[-87.82066855305123,41.98415719283771],[-87.82082015029272,41.984177161490415],[-87.82095278989105,41.98419449322123],[-87.82108561734739,41.98421138656437],[-87.82122917319276,41.98422964483041],[-87.82147519627343,41.98426224605917],[-87.82160055939013,41.98427885772314],[-87.82169873398837,41.98429186403829],[-87.8218260441875,41.984308731935414],[-87.82202485271918,41.984335303341915],[-87.8221575621549,41.984353182832734],[-87.82230614420133,41.98437316353926],[-87.82242577430767,41.98438922820599],[-87.82260102787582,41.98441311423004],[-87.82283462848741,41.98444475114208],[-87.82304751286333,41.98447283779888],[-87.82332742073962,41.98450899507221],[-87.82332738756499,41.98450923449384],[-87.82328138555694,41.984843705555896],[-87.82328136759783,41.98484383582579],[-87.82328134615331,41.98484398803383],[-87.82327355183713,41.98489891953381],[-87.82325819324664,41.985007467158105],[-87.82324352177045,41.98512231577911],[-87.82324352019191,41.98512232921869],[-87.82321970887503,41.98530836275625],[-87.82320032660412,41.98544639240039],[-87.82319006236146,41.98552038540275],[-87.82317085748083,41.98566382190601],[-87.82315229515315,41.98579605530303],[-87.82315229360525,41.98579606490087],[-87.82314344185632,41.98585897758981],[-87.82312661231987,41.98599059739135],[-87.82310782986212,41.98614097803505],[-87.8231002966912,41.986197666961374],[-87.82309675432597,41.986224325147326],[-87.82309311570194,41.98625161407195],[-87.82307575406388,41.98637609656347],[-87.82305542842552,41.986521585921935],[-87.82303617145685,41.98666704489766],[-87.82303617028549,41.986667053399486],[-87.8230262288567,41.98674198028628],[-87.82299880334311,41.986952119202186],[-87.82297764333717,41.98710531658167],[-87.82297746718628,41.987106555354984],[-87.82297744847492,41.98710668754238],[-87.82294608423862,41.98733557899404],[-87.82293444266718,41.987420707562535],[-87.8229171151302,41.9875500951436],[-87.82291711433756,41.98755010227501],[-87.8228907882438,41.987746799156255],[-87.82286801912589,41.98791722293052],[-87.82282896951442,41.98821929491231],[-87.82277510683585,41.988616800591885],[-87.82275363091368,41.98877265808122],[-87.82274402493854,41.988842345530486],[-87.82272333195674,41.98899489204311],[-87.82269707449242,41.989188462116616],[-87.82269540120714,41.98920079644697],[-87.82267590854954,41.98934768918767],[-87.82265684504351,41.98948703727559],[-87.82263022654527,41.989681452296985],[-87.82262645250992,41.98970901775199],[-87.82259443386518,41.98993661658995],[-87.8225735824786,41.990083256270815],[-87.82255665030883,41.99021803071602],[-87.82253940178667,41.990355603382035],[-87.82251976368445,41.990493082534236],[-87.82249810384741,41.99065788574995],[-87.82247611306717,41.99082735207698],[-87.82244196192812,41.99107763560468],[-87.82241946444266,41.99124147431581],[-87.82240032620047,41.99138068449709],[-87.82238398340851,41.99150146608516],[-87.82236229405056,41.99166536325366],[-87.82235387577755,41.9917237281352],[-87.82234994896776,41.991750955079965],[-87.82234932516376,41.991755315307834],[-87.82233202782429,41.99187514862654],[-87.82233166564875,41.99187765823228],[-87.82230878533059,41.99203616842668],[-87.822271574236,41.99231012095161],[-87.82222392623876,41.99266758815343],[-87.82221901679893,41.99270442062869],[-87.82219354054368,41.99289549534333],[-87.82216370436804,41.993111934755866],[-87.82212783703594,41.99333300173192],[-87.82212783473882,41.99333301297292],[-87.82208252334938,41.99361227994141],[-87.82201839869433,41.99399453604127],[-87.82194896426563,41.99439663587991],[-87.8218501888185,41.994980628193936],[-87.82181538158717,41.99518650289688],[-87.8218096416739,41.995220455168194],[-87.82176957622535,41.99542765546579],[-87.82172257454931,41.99565576361402],[-87.82166614589583,41.99588959198378],[-87.82160914641442,41.99612583294037],[-87.82157431059505,41.996254051524474],[-87.82141432291598,41.996850530061735],[-87.82136021776776,41.996852713267806],[-87.82110958227692,41.99686283705683],[-87.8208609941763,41.9968688075878],[-87.82056762092606,41.99687652400044],[-87.82002528683898,41.99689078684167],[-87.81979328445091,41.99689735116955],[-87.81940806299649,41.99690824996163],[-87.81901063695564,41.996917641647926],[-87.81830490896704,41.996934315334435],[-87.81770976968771,41.99695022188414],[-87.81717004501868,41.99696464568535],[-87.81669395587613,41.996976929413826],[-87.81668679220665,41.99657403079867],[-87.81668811735106,41.99647173333218],[-87.81668963909519,41.9963543156679],[-87.81669217514542,41.99615861059018],[-87.81669417503967,41.996017594965785],[-87.81669599918678,41.99588898314696],[-87.81669868107828,41.99569989222799],[-87.81670103815271,41.99555992099519],[-87.81670236189109,41.99548130593804],[-87.81670415793631,41.99537162867686],[-87.81670701407066,41.99519719254606],[-87.81670731790747,41.99510544986095],[-87.81670814020825,41.99485703468836],[-87.81670883745973,41.99464655035847],[-87.81670925875859,41.994519357806766],[-87.81671111881624,41.994391705762254],[-87.81671399565937,41.99419427385435],[-87.81671802135521,41.99391800626348],[-87.81671980615482,41.99373201301061],[-87.81672106310364,41.99360101003649],[-87.81672229023717,41.99345404172105],[-87.81672371558057,41.993283380599806],[-87.81672571698005,41.99304371147981],[-87.81672816453879,41.99282292417825],[-87.81672936168081,41.99271582344428],[-87.81672818748595,41.99255624293335],[-87.81673674180416,41.99244453760499],[-87.81674862825709,41.992289324255],[-87.81675171982025,41.99207076262415],[-87.81675342602684,41.99195073898344],[-87.81675675087423,41.99173967005638],[-87.81675701325152,41.99173028607179],[-87.81675842294806,41.991679822179485],[-87.8167633779264,41.99150243630856],[-87.81676590032843,41.9913906489302],[-87.81676864830197,41.99127825884054],[-87.81677250324988,41.991129046556985],[-87.81677668248832,41.990967020311224],[-87.81677779868564,41.99092446278021],[-87.81677891395476,41.990827515184925],[-87.81678475632543,41.990787311490024],[-87.81681587163239,41.99065632068066],[-87.81668908133638,41.99059141261079],[-87.81653954750416,41.990514861277944],[-87.81632963830732,41.990407907626185],[-87.81609247193755,41.99028741163617],[-87.8158666629256,41.990172674288864],[-87.81571338477346,41.9900952828354],[-87.81559512953253,41.99003554835902],[-87.81545877731271,41.98996666637907],[-87.81521845826605,41.98984524876862],[-87.81480692197412,41.98963634064724],[-87.81454038257061,41.98950083519008],[-87.81418673518466,41.989320698689],[-87.81382917105343,41.989138457776924],[-87.81352509124105,41.98898346088392],[-87.81325778330832,41.988848141053275],[-87.81298651187547,41.98871184216211],[-87.81273425429019,41.98858509635224],[-87.81250125773279,41.988469139761634],[-87.81225947027679,41.9883486971875],[-87.81206032862939,41.98824930369123],[-87.8118362624567,41.98814159914497],[-87.81184668520253,41.98792564267666],[-87.81184759627232,41.98781401267856],[-87.81184931671993,41.98760321089147],[-87.81184965073636,41.98756386192247],[-87.81185121238705,41.98737995121455],[-87.81185352039867,41.9871692618487],[-87.81185405680696,41.987124988501726],[-87.81185622610047,41.98694589606642],[-87.81185844077838,41.986710535879844],[-87.81186027205766,41.98649970711363],[-87.81185710530696,41.9861981597347],[-87.81185705134163,41.98615523933462],[-87.81185691394087,41.986045471146184],[-87.81185684580656,41.985991081010255],[-87.81185946738013,41.98575547565473],[-87.81186092915358,41.98549522207715],[-87.81186361065403,41.98529427406476],[-87.8118665405133,41.98512310589558],[-87.81186752479252,41.985011503892],[-87.81186895874137,41.98484768146347],[-87.81186987306228,41.98471922945295],[-87.81187223875177,41.98428057925491],[-87.81187532066673,41.983929938895315],[-87.81188072697508,41.98360612762949],[-87.81188457244876,41.98330095447623],[-87.81188642839133,41.98307805119805],[-87.81188675641279,41.983037850095336],[-87.81188847669898,41.98284049473359],[-87.81188926584825,41.982752793545394],[-87.81188554398418,41.982631910624534],[-87.81205609575655,41.98262701593483],[-87.81223245756162,41.98262221843981],[-87.81238887935532,41.98261807112564],[-87.81252462557546,41.982614570736835],[-87.81266263952949,41.98261261722731]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3238174.83924","perimeter":"0.0","tract_cent":"1176777.47418686","census_t_1":"17031081500","tract_numa":"31","tract_comm":"8","objectid":"179","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904213.08929806","census_tra":"081500","tract_ce_3":"41.89250778","tract_crea":"","tract_ce_2":"-87.62621491","shape_len":"8477.52560837"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62434607567128,41.88896555128736],[-87.62437192112782,41.88885731123957],[-87.62444186154877,41.888872125014046],[-87.62451399603988,41.88888165371317],[-87.6246326954486,41.88888153560525],[-87.62473020921372,41.88889423945441],[-87.62496824493152,41.88890284331986],[-87.62509444358868,41.88890540518805],[-87.62519042921976,41.88887026714523],[-87.62529215783884,41.888837964926786],[-87.62566445653798,41.88867667436525],[-87.62598714710415,41.88850530891494],[-87.62606836170013,41.888440770679445],[-87.62635599012756,41.88824487427602],[-87.62659753472042,41.888091503666246],[-87.62681750424973,41.88794356210473],[-87.6268609282429,41.88791617007202],[-87.62691277530298,41.8878834643017],[-87.62703825648659,41.88781172318598],[-87.62726496352207,41.88765974178636],[-87.62743072777661,41.887584224032004],[-87.6275043023137,41.88755559063024],[-87.62761676633806,41.88751182185326],[-87.62800209575349,41.88747256459074],[-87.62801165188536,41.88767720083466],[-87.62801655568951,41.88781773600071],[-87.62801846147823,41.887870944233114],[-87.62802509265039,41.888084583359735],[-87.62803274723126,41.888363609707355],[-87.62804332352678,41.88864078790318],[-87.62804668616594,41.88872832754365],[-87.62805422960236,41.8889247189374],[-87.62805575055167,41.88899044785413],[-87.62805933299772,41.889145249851694],[-87.62802341747586,41.88925248733625],[-87.62799242318852,41.88934503109766],[-87.6279966848528,41.88966322399579],[-87.62799754510712,41.88972744472978],[-87.62800504184398,41.88997074005035],[-87.6280088012882,41.8900654423752],[-87.62801254753737,41.89015980927148],[-87.6280241804594,41.89046781166541],[-87.62803482644786,41.89076537987689],[-87.62803799181683,41.890865949561466],[-87.62804255541099,41.8910109542955],[-87.62805310650647,41.891237034507014],[-87.62806812149343,41.89155142424236],[-87.62806935727069,41.89167222657526],[-87.62807052791953,41.89178672993222],[-87.62807734001755,41.89205894521772],[-87.62808237939578,41.89236874565041],[-87.62809228037153,41.89246918652956],[-87.6281057392504,41.89260571676211],[-87.62811333428246,41.89288353505871],[-87.62812129823236,41.89316788689042],[-87.62811631112322,41.893271668539846],[-87.62811043799132,41.89339389040628],[-87.62811966598001,41.89365679032165],[-87.62813038464583,41.89396788789357],[-87.62813467276845,41.89407249020997],[-87.62813852170724,41.89416640075299],[-87.62814437100057,41.89444267148058],[-87.62814933329237,41.89467914532686],[-87.62815340345709,41.894876053329966],[-87.62815791691801,41.89509440092045],[-87.62816453785426,41.8953339584691],[-87.62817461642842,41.89567880419252],[-87.62818567270696,41.89605708452634],[-87.62819322666621,41.896418821112064],[-87.6281993917997,41.896677393628586],[-87.62768695121747,41.896684481545066],[-87.62724992007628,41.896689012493404],[-87.6268497362436,41.896695259422415],[-87.62637599077549,41.896702653090315],[-87.62616483368576,41.89670608288735],[-87.62593984878595,41.8967097366642],[-87.62561391745459,41.89671198579885],[-87.62550478133043,41.89671273849022],[-87.62511210394796,41.8967154468755],[-87.62484451659812,41.89672264612039],[-87.62467400050267,41.896727233627274],[-87.6242425546119,41.89673394401541],[-87.62427921338862,41.89652880337376],[-87.62428187114162,41.89621548304531],[-87.62428035875236,41.896145970193174],[-87.6242761247087,41.895951369826875],[-87.62427121475149,41.895739777641325],[-87.62426540386194,41.89548936651859],[-87.62425950787956,41.89523878142372],[-87.62425208681196,41.894941653447276],[-87.62424492968096,41.89465510227173],[-87.62424254049174,41.89455794157425],[-87.62424002733,41.894419890996254],[-87.62423708094174,41.89413622309423],[-87.62423577625614,41.89401061684603],[-87.62422717640106,41.89374596010998],[-87.62422716821818,41.893745703747804],[-87.62421792415414,41.89346292173142],[-87.62421303600048,41.893335314745634],[-87.62419699189368,41.89289218367202],[-87.62419187247917,41.89273259665584],[-87.62418585451636,41.89255712346296],[-87.62417310894703,41.89232140373095],[-87.62416578810924,41.89214020595898],[-87.62416351415865,41.89192420235792],[-87.62416126741867,41.89173080731398],[-87.62415434478673,41.89148868278202],[-87.6241426708515,41.891279588723506],[-87.62413149755449,41.8910252093242],[-87.62412897501565,41.89093361689607],[-87.62412837047708,41.890911671611995],[-87.62412151850722,41.890662842485014],[-87.6241070708104,41.890283029523836],[-87.6241006875598,41.890145093798495],[-87.6240998113598,41.890126160555496],[-87.62409578253535,41.890039100797715],[-87.62409709269333,41.889920662642375],[-87.62412991390981,41.889801844726726],[-87.62413338088335,41.88978929423505],[-87.62418451423697,41.88960418541654],[-87.62422804525029,41.889443790062636],[-87.62425220584524,41.88935476879885],[-87.62426765282652,41.88929785235581],[-87.62428079610325,41.88924942388483],[-87.62429821788548,41.88917184206892],[-87.62429823642314,41.889171759856225],[-87.62434607567128,41.88896555128736]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1740118.46491","perimeter":"0.0","tract_cent":"1164376.42127005","census_t_1":"17031061300","tract_numa":"14","tract_comm":"6","objectid":"189","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923293.04093592","census_tra":"061300","tract_ce_3":"41.9451358","tract_crea":"","tract_ce_2":"-87.67121767","shape_len":"5289.4368979"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66885813120058,41.94699011581803],[-87.66885046534992,41.946649384988184],[-87.66883490921349,41.94585709522885],[-87.66881407684595,41.945166486667524],[-87.66879752898706,41.944617920880425],[-87.66878019466422,41.94397227140648],[-87.66877501128714,41.94377888839066],[-87.66877335329333,41.94371703927466],[-87.66876827254302,41.94352747487097],[-87.6687632986905,41.94334336987307],[-87.66894413367862,41.94334202760909],[-87.66920570904163,41.94333736208692],[-87.66937099342468,41.94333493030417],[-87.6695243324734,41.94333267345585],[-87.66958329894493,41.94333183434978],[-87.66998248115333,41.94332622568094],[-87.67006038130646,41.94332513101379],[-87.6702669355759,41.94332222806568],[-87.67041200052563,41.94332018431974],[-87.67050383628634,41.943318888531344],[-87.67058217320876,41.94331778313379],[-87.67073220221786,41.94331566610169],[-87.67119330947996,41.94330876981469],[-87.6716484791009,41.94330196039717],[-87.67196911715732,41.94329791818841],[-87.67230284206798,41.94329371003796],[-87.67265182298335,41.9432893247136],[-87.67310329616046,41.943283606799106],[-87.67355971293233,41.94327665701997],[-87.67356702465094,41.943419092550094],[-87.67357413965553,41.94371295660584],[-87.67357504992279,41.94373864769438],[-87.673575819047,41.94376034513811],[-87.67357716744631,41.94379840966778],[-87.67357894335251,41.94384852348549],[-87.67357972044208,41.943870446823496],[-87.6735841336574,41.94399500989571],[-87.67359067978492,41.94418889833891],[-87.67359959317248,41.94445291590093],[-87.67360633505886,41.944641372181344],[-87.67360735469069,41.94466986326783],[-87.67361161941598,41.944876581779106],[-87.67362047625303,41.945094862799905],[-87.67363193187104,41.94537718868527],[-87.67363550713567,41.945489667149765],[-87.67364539361876,41.945800698362696],[-87.67365145105524,41.946115220152116],[-87.6736526632288,41.94646473025923],[-87.67372245248258,41.94692668225788],[-87.67332701846671,41.94693129608891],[-87.67305110377167,41.946934841322175],[-87.67294234415971,41.94693374077339],[-87.67279973355718,41.94693229801194],[-87.67248065256008,41.94693921396468],[-87.6723375296372,41.94694231594043],[-87.6719603552923,41.94694823928728],[-87.67153873167148,41.946954865666044],[-87.67129463047466,41.94695869295883],[-87.67086817043234,41.946965378173346],[-87.67070861181524,41.94696764069883],[-87.67035964229703,41.94697259671019],[-87.6700760886395,41.94697494222839],[-87.66986544439911,41.946976684526646],[-87.6695733614397,41.946979634009246],[-87.66946731059453,41.946981971704844],[-87.66941162079874,41.9469831993397],[-87.66890625566236,41.94699015530724],[-87.66885813120058,41.94699011581803]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7241185.57073","perimeter":"0.0","tract_cent":"1174527.4667333","census_t_1":"17031071400","tract_numa":"23","tract_comm":"7","objectid":"180","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914972.43935362","census_tra":"071400","tract_ce_3":"41.92208254","tract_crea":"","tract_ce_2":"-87.63415609","shape_len":"13531.0547082"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62965054337887,41.926174096451255],[-87.62966281429475,41.92615427632469],[-87.62969117358304,41.92612505374819],[-87.6296912479139,41.92612497763994],[-87.6296955791826,41.926117933422475],[-87.62969768645142,41.92611450590605],[-87.62969770365254,41.92611447884367],[-87.62969772011876,41.92611445177679],[-87.62969966735088,41.926101209395775],[-87.62970625142607,41.926092273944995],[-87.62970626075096,41.92609226137872],[-87.62970627007586,41.92609224881245],[-87.62970976613384,41.92609215525364],[-87.6297146075417,41.92609202520823],[-87.62971461084874,41.92609202522849],[-87.62971461378831,41.92609202524651],[-87.62971726277219,41.926092571663],[-87.62972824331648,41.926094836523376],[-87.62972832617271,41.92609485404528],[-87.62976855661455,41.926112251673786],[-87.62982117529029,41.926132661783605],[-87.62987644972502,41.92616012981161],[-87.62987646142005,41.926160135646136],[-87.62987647238621,41.926160140927344],[-87.62988023106972,41.926157348933124],[-87.6299062969634,41.926137985411714],[-87.6299401343521,41.92610850078139],[-87.62996059222775,41.92609268190567],[-87.63002739497877,41.92602945316905],[-87.63004611016957,41.92601126659174],[-87.63010246258499,41.925956504212216],[-87.63017717452821,41.925885777218426],[-87.63018745408357,41.92587490883841],[-87.63021885152357,41.9258417129905],[-87.63024229945499,41.92581156091904],[-87.63025869747722,41.92579047539171],[-87.63026518859947,41.925780557731066],[-87.63027010369254,41.92576996576936],[-87.63027129794271,41.92576739131845],[-87.63027496878834,41.925747627959275],[-87.6302749685384,41.92574761725528],[-87.63027496791798,41.92574760682344],[-87.6302733157253,41.92568729985073],[-87.63027257135828,41.92557105034651],[-87.63027011200944,41.92543020156502],[-87.63025924530017,41.925282029661666],[-87.63024864503883,41.92515641633848],[-87.63023672263097,41.92504178415153],[-87.63023102932668,41.92498704487493],[-87.63021752956739,41.92487447683228],[-87.63020527016194,41.9247828816876],[-87.63019161557715,41.924677694921286],[-87.63018792984649,41.92465949544788],[-87.6301696915373,41.92456943804221],[-87.63015634435497,41.92448204476498],[-87.63014637976343,41.924416798862836],[-87.63013256433892,41.92434926347129],[-87.63012266565285,41.92430087490225],[-87.63011139402364,41.924259691659984],[-87.63009199999107,41.924188832322024],[-87.63008366939053,41.924154423638434],[-87.6300853184998,41.924128061489554],[-87.63008315179681,41.92411114408501],[-87.63008118405328,41.92408621477023],[-87.63008375327844,41.92405637309439],[-87.63008178882357,41.9240460345545],[-87.6300800370055,41.924036811471126],[-87.63004463330485,41.92390789060376],[-87.63000791547304,41.923778489392596],[-87.62997946915934,41.92367823911847],[-87.62993780263673,41.92354746866004],[-87.62992119888958,41.92351018300482],[-87.62990313077758,41.9234824374467],[-87.62986447511861,41.92344894147107],[-87.62978816546597,41.92337426959953],[-87.6297416789271,41.92333098662845],[-87.62970559782751,41.92329739166633],[-87.62958141444193,41.92319885450085],[-87.62956239895219,41.92318712001082],[-87.62949513383322,41.92314560858169],[-87.62945009810545,41.92311281374743],[-87.62943261451419,41.92310008286913],[-87.6294138408711,41.923087445341224],[-87.6293506180619,41.92304488808732],[-87.62927316820777,41.92299718541101],[-87.62923567574195,41.92296513130826],[-87.62920757024978,41.92294110260821],[-87.62917918593209,41.92291152172653],[-87.62915017023884,41.92288128301732],[-87.62913010230612,41.92286058019281],[-87.62910558902587,41.92283529084887],[-87.62904217408617,41.922781142844165],[-87.62904214856836,41.92278112430135],[-87.62904212305358,41.922781105484134],[-87.629041612348,41.92278073297919],[-87.62901312119973,41.922759943615794],[-87.62900829147328,41.92275509184178],[-87.62900328184725,41.92275005921745],[-87.6290031997138,41.92274997638694],[-87.62850601413321,41.923045024104375],[-87.62838292881133,41.92311806693943],[-87.62834878806872,41.92308576501572],[-87.62833630664561,41.923073955732164],[-87.62886085011581,41.922762608800504],[-87.6292684856024,41.92252064986072],[-87.62926861847643,41.922520763188615],[-87.62930430626606,41.92255130210881],[-87.62948583343268,41.92244050613852],[-87.62948583334925,41.922440446862794],[-87.62948581167166,41.922437604812664],[-87.62948572846416,41.92242662000155],[-87.62947969672776,41.922397000029825],[-87.62946155194969,41.92235832204118],[-87.6294561081916,41.922346718477336],[-87.62944752068638,41.922325672528515],[-87.62943108338348,41.922293690477865],[-87.62942690661568,41.92228556282867],[-87.62937863431834,41.922217731561005],[-87.62932649426115,41.922147434474],[-87.62932222778069,41.92214115230961],[-87.62931369375018,41.92212858522954],[-87.62930036693622,41.92210897836964],[-87.62928921299523,41.92209256785572],[-87.6292716166591,41.92206374907534],[-87.62925831635711,41.92204196702731],[-87.62919233392408,41.9219535002922],[-87.62914265784364,41.92188689548838],[-87.62911392458606,41.92185159924772],[-87.62903987478197,41.92176063427373],[-87.62898827174732,41.921691657275424],[-87.62891496899151,41.92161608969862],[-87.62889987457787,41.9216005287321],[-87.62887079886869,41.921541404158454],[-87.62885208193958,41.92148250806061],[-87.62882101788162,41.92144427813947],[-87.62878664426036,41.92140197495888],[-87.62876282462759,41.92137879351429],[-87.6287350557386,41.92135176869475],[-87.62867969791641,41.92129352586856],[-87.62862961165952,41.92121163052523],[-87.62862804621984,41.92120907071073],[-87.62862530407038,41.92120321883885],[-87.62859375980345,41.92113589165043],[-87.628575370134,41.92109520598423],[-87.62856563725168,41.9210736718731],[-87.62854660212375,41.921047100721275],[-87.62853585985881,41.921033349341414],[-87.62853576782696,41.92103323132375],[-87.62818135055082,41.921201511100435],[-87.62817230417758,41.92120580651025],[-87.62816553938636,41.92120905638681],[-87.62780268333887,41.921383365182514],[-87.62777881071395,41.921394478041655],[-87.62775706916531,41.92140459933102],[-87.6277475105325,41.92139842070095],[-87.62773699181326,41.92140261015753],[-87.6277369735662,41.92140259879409],[-87.62773695568654,41.9214025874329],[-87.6277321430865,41.92139960095818],[-87.62772802206888,41.921397043538946],[-87.6277280180575,41.92139704077007],[-87.62772801477489,41.921397038554524],[-87.62772609328587,41.92139474794355],[-87.62771031593265,41.92137593675642],[-87.62771021280808,41.92137579177653],[-87.6277047792908,41.92136816402194],[-87.62770319429478,41.92136197950464],[-87.62779600715372,41.92131719661092],[-87.62790160287788,41.92126624577506],[-87.62826946484493,41.92109153024585],[-87.62876114772067,41.92085717274964],[-87.62879459635263,41.92088954029265],[-87.62893387887856,41.92082077387863],[-87.62892835755915,41.92078149788318],[-87.62891954677914,41.920740095515384],[-87.62891721183495,41.920729124329036],[-87.62887993419481,41.92066885558411],[-87.62886132608037,41.92063877147738],[-87.62884372676666,41.9206052657471],[-87.62877808731143,41.92048633997549],[-87.62873781546492,41.9203895510654],[-87.628733786853,41.92038043335854],[-87.62873082409409,41.92037372860197],[-87.6286805800948,41.92028829444748],[-87.62862876431592,41.92022543586061],[-87.62858788031818,41.92016377743623],[-87.62856059701205,41.92012263075503],[-87.62855156529325,41.920111753471566],[-87.62850253892888,41.92005270775821],[-87.62842682956048,41.919977518052136],[-87.62838402233731,41.919945440909245],[-87.6283401317059,41.91991255166857],[-87.62832784655843,41.91990549877508],[-87.62829693690507,41.919887752814105],[-87.62828562619563,41.91987759696792],[-87.62827299547868,41.9198662557431],[-87.62825853411945,41.9198563234117],[-87.62824446880735,41.919846662993244],[-87.62822639020479,41.91983424632759],[-87.6282021617693,41.91981018711816],[-87.62817466946643,41.9197828861402],[-87.6281158415221,41.91970626231005],[-87.6280813839658,41.91966603467223],[-87.62804270669923,41.91962088019479],[-87.62802783750483,41.9196036138597],[-87.62800051282306,41.919571883593434],[-87.62798619732256,41.91954381197827],[-87.62798195396476,41.919535490945194],[-87.62797377412235,41.91952578294837],[-87.62795613050233,41.91950484370491],[-87.62759548384763,41.91968248379899],[-87.6274336354402,41.919759862854654],[-87.62735021406296,41.91979974604769],[-87.62734233460402,41.919782926550205],[-87.6273345617628,41.91976633520387],[-87.62733141603303,41.91975987846127],[-87.6273250401273,41.919746792668136],[-87.62732512103196,41.91974675309992],[-87.6273713960058,41.91972421034142],[-87.62761865426609,41.91960375775732],[-87.62808268946263,41.91937672489635],[-87.62829692332859,41.91927273970921],[-87.62836506410554,41.9192396653777],[-87.62836524991762,41.91923957513585],[-87.62839652937487,41.9192719017677],[-87.62841927327436,41.9192585675307],[-87.62843576635119,41.919238927107166],[-87.62843578496923,41.91923890471882],[-87.62843580358125,41.91923888287928],[-87.62843620189412,41.91921948420715],[-87.62842460338699,41.91917155345599],[-87.62841534780425,41.919156592752145],[-87.62840630016811,41.91914196811954],[-87.62838065650672,41.91911541124524],[-87.62834722899343,41.91908079316469],[-87.62829408799735,41.9190249512193],[-87.62822634350317,41.91892398684888],[-87.62819661315223,41.91886768516007],[-87.62816785809117,41.91882689514457],[-87.62815204214377,41.91880445892737],[-87.62808227730112,41.918733421276634],[-87.62808224054488,41.91873335573833],[-87.62807809995937,41.91872601585037],[-87.62807225868086,41.918715660041606],[-87.62802783649035,41.9186715728958],[-87.62802776380707,41.918671500001814],[-87.62802774381132,41.91867148066942],[-87.6280273996106,41.918671139643415],[-87.6283065964375,41.918664683351],[-87.62896486705303,41.918664584198275],[-87.62904324957795,41.91866466598851],[-87.62915647398246,41.91866471579718],[-87.62935118686687,41.91866460706415],[-87.62938204564469,41.918664589889566],[-87.62940659125047,41.91866457214856],[-87.62960637867147,41.91866476769138],[-87.62997546882538,41.91872610190062],[-87.63002607119176,41.91873451088801],[-87.63020649125801,41.9187644919464],[-87.63078545543051,41.91863112478623],[-87.63150634554665,41.918464748107844],[-87.63210663361954,41.91846464205212],[-87.63307450427747,41.91846457183568],[-87.63310649925961,41.91846456909621],[-87.63336501160265,41.918490439638276],[-87.63336686912871,41.91849062549453],[-87.63401826787567,41.91855581001667],[-87.63410664937828,41.91856465392852],[-87.63447156477397,41.91851231320118],[-87.63480677430245,41.91846463443317],[-87.6361173161961,41.918473354546805],[-87.63638649503638,41.918396178944896],[-87.63648117682851,41.918369032531835],[-87.6365302537685,41.91835654227431],[-87.6365644369525,41.91835540476394],[-87.63671735042051,41.918349609489404],[-87.63712501839807,41.918352384160315],[-87.63722090061667,41.918350589256974],[-87.6376953088182,41.91834170836667],[-87.63784374352423,41.918338929450336],[-87.63798550643203,41.9183359839793],[-87.63820269174022,41.91833147081699],[-87.63826512743425,41.91833054417471],[-87.63881550730929,41.91832237537314],[-87.63882580728529,41.918657248810284],[-87.6388382824052,41.91910273945559],[-87.63886162974579,41.91976215326394],[-87.6388743756537,41.92014264877428],[-87.63888203233716,41.92037122010659],[-87.63888896373781,41.92057661206804],[-87.63889465803062,41.920745334252125],[-87.63892430295141,41.92156611887696],[-87.63893331891754,41.921815650794095],[-87.6389367704204,41.92196062266482],[-87.63894106987972,41.92214119004545],[-87.6389429066517,41.922187221783915],[-87.63894297689444,41.92218897851184],[-87.63894587550247,41.92226053795089],[-87.63894865511267,41.92232951709921],[-87.6389547034504,41.922483367405185],[-87.63895780795546,41.922563050986945],[-87.6389618743855,41.922669277025065],[-87.63896663835754,41.92277210444243],[-87.63897876604521,41.92282278126061],[-87.63899558495197,41.92284747120837],[-87.63899744845915,41.92284867758643],[-87.63900612705939,41.92285429672327],[-87.63904542891366,41.92287974281035],[-87.6390335177742,41.92319421392897],[-87.63903266196581,41.923216820878494],[-87.63912722335174,41.92337241983276],[-87.63913100284516,41.92337863859024],[-87.63916920324041,41.923442273168135],[-87.63936614966718,41.923770343699765],[-87.63956723888602,41.92410531099206],[-87.6396898334963,41.92430797156886],[-87.63981278643787,41.92451151232438],[-87.63999165707851,41.92480778858359],[-87.64017489544601,41.925111445434794],[-87.6404794669768,41.9255845465049],[-87.64005321462459,41.92559083909306],[-87.63973122670718,41.92559559122224],[-87.63911590478905,41.92561205604799],[-87.63862188099874,41.92562527296981],[-87.63810975645956,41.92562699019695],[-87.63761821135022,41.92562863609329],[-87.63737213884667,41.92563678693692],[-87.63725332944955,41.925640722034586],[-87.63656935639641,41.925657769896006],[-87.63606355843797,41.925670374448885],[-87.63555048941403,41.92568315761206],[-87.63476717820804,41.92569099060736],[-87.63417845854991,41.92570406476111],[-87.63396195303936,41.925716796644984],[-87.63363191293566,41.925751265657404],[-87.63323301548658,41.92579292471764],[-87.6330167574124,41.925823274229124],[-87.63250335759624,41.92590822081639],[-87.63237767045302,41.925929016584284],[-87.63231438748039,41.92593948692552],[-87.6320867391555,41.92597972666461],[-87.63182868763266,41.92602527687999],[-87.63144604758807,41.926092817869865],[-87.6313474495204,41.926110221587635],[-87.63126299891464,41.92612512804203],[-87.6311613742663,41.92614306577979],[-87.63106452088078,41.926160161045104],[-87.63065691070649,41.926228790904524],[-87.62959957293955,41.92639896798729],[-87.62959956605245,41.92639889247899],[-87.62960085912434,41.92638676134242],[-87.62960194317371,41.92637659653121],[-87.62960300251832,41.926350423154986],[-87.62960513899334,41.92634253371595],[-87.62961273033915,41.92631450686112],[-87.62962011840548,41.926264249471124],[-87.62962363656037,41.92624823600042],[-87.62962913101903,41.926223224540614],[-87.62963827101855,41.92619996592867],[-87.62963841770471,41.926199592241474],[-87.6296429728788,41.92619090012143],[-87.62965054337887,41.926174096451255]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9880960.22938","perimeter":"0.0","tract_cent":"1175213.41619085","census_t_1":"17031071500","tract_numa":"52","tract_comm":"7","objectid":"181","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912257.14495657","census_tra":"071500","tract_ce_3":"41.91461629","tract_crea":"","tract_ce_2":"-87.63171737","shape_len":"16632.3786708"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62997546882538,41.91872610190062],[-87.62960637867147,41.91866476769138],[-87.62940659125047,41.91866457214856],[-87.62938204564469,41.918664589889566],[-87.62935118686687,41.91866460706415],[-87.62915647398246,41.91866471579718],[-87.62904324957795,41.91866466598851],[-87.62896486705303,41.918664584198275],[-87.6283065964375,41.918664683351],[-87.6280273996106,41.918671139643415],[-87.62801148525526,41.91865534547199],[-87.62797899508061,41.918623100208045],[-87.62797215695218,41.918615550551834],[-87.62792748245062,41.91856622775705],[-87.62789328716623,41.91852847421362],[-87.62785658452471,41.91849613058681],[-87.62778757521873,41.91843531688901],[-87.62776818554208,41.91842135121069],[-87.62772364508288,41.918389271122905],[-87.62767693860046,41.91835563078683],[-87.62763608121172,41.91832316111683],[-87.62761993451628,41.91831032949966],[-87.62760975757841,41.918303119617654],[-87.62757257643872,41.91827677924299],[-87.62749436353029,41.9182189713521],[-87.62747885864046,41.91819451665423],[-87.62743506277381,41.91812544037343],[-87.62740574101555,41.91806886656311],[-87.62738691667805,41.91804152866915],[-87.62737351908888,41.91802207179678],[-87.62736599635751,41.918014809057034],[-87.62736090328863,41.91800989137652],[-87.62735447734255,41.91800282720072],[-87.62711257579373,41.91814176107859],[-87.62683165680268,41.91830088073866],[-87.626831575833,41.91830092634343],[-87.6268000823061,41.918251446834475],[-87.62680013444887,41.91825141642001],[-87.6269748953793,41.918148900162606],[-87.62698211840065,41.91814475553704],[-87.62709229658164,41.91808153041718],[-87.62724364161193,41.91799468139546],[-87.62759290042243,41.91779274029423],[-87.62785578720786,41.91764306637322],[-87.62789132248172,41.91767270278934],[-87.62790373026294,41.9176649412371],[-87.62790852585154,41.917661941349074],[-87.62791503762169,41.917654409214016],[-87.62791503911245,41.917654407302216],[-87.6279175737233,41.91763104262476],[-87.62791377257123,41.91761751137332],[-87.6279089467595,41.9176003360819],[-87.62789977834804,41.917586032012736],[-87.62788987522393,41.91757058183132],[-87.62787003960037,41.91754668674321],[-87.62785651453078,41.91753039350824],[-87.62774497307015,41.91741620726621],[-87.62769224068131,41.91734689257101],[-87.62765513677078,41.91730114937533],[-87.62761546352091,41.91725223918217],[-87.62758233027665,41.917214714348574],[-87.62753372242699,41.91717561909146],[-87.62748702191382,41.91713805803459],[-87.62735384788118,41.91705655908549],[-87.62721645415317,41.91694794907669],[-87.62713581004033,41.91688085049861],[-87.6271238224269,41.91687086956856],[-87.62708483994808,41.91683841314828],[-87.62706752300636,41.916821994410974],[-87.6270055705821,41.91676325491074],[-87.62696706442952,41.91672363263998],[-87.62693498248807,41.91669062037708],[-87.62690049753029,41.91663333354451],[-87.62689605093932,41.91662594644931],[-87.62689198689077,41.9166208193818],[-87.62684557226757,41.916562271709374],[-87.62677145557842,41.91650978487144],[-87.62674388813952,41.91647745318505],[-87.62672569471218,41.916454673924314],[-87.626705226062,41.91643500935049],[-87.62633867736119,41.91667495013382],[-87.62625356680782,41.9167306626479],[-87.62618411896563,41.91677604377675],[-87.62613435236534,41.916808564248704],[-87.62609276803046,41.91683573720527],[-87.62609272694975,41.91683576412006],[-87.62606822757978,41.91681508668629],[-87.626043728596,41.91679440897521],[-87.62604376116909,41.91679438722205],[-87.62649167315675,41.916499226778924],[-87.62681257607728,41.91628594498298],[-87.62681252405488,41.91628589801104],[-87.62678850879557,41.91626446520377],[-87.62677808494446,41.916255162078016],[-87.6267608611541,41.916241211748506],[-87.62672506327665,41.916212217979776],[-87.62665847574647,41.91615587236619],[-87.62663238447158,41.91613379338199],[-87.62654963936014,41.91603748344134],[-87.62651028962408,41.91599576142789],[-87.62650017691966,41.91598503895738],[-87.62641939725128,41.915900403430626],[-87.62641156853735,41.91588920434594],[-87.62640257804327,41.91587634251662],[-87.62628807821511,41.91575771841771],[-87.62625767837311,41.9157350587575],[-87.62620666837192,41.915697036773715],[-87.62618322026634,41.91568277634674],[-87.62617060972042,41.91567510733156],[-87.6261536473039,41.915666528146524],[-87.62612968873634,41.91565441109824],[-87.626086131559,41.915632819637466],[-87.62604791205793,41.915620289816445],[-87.62603523031017,41.91561680913421],[-87.62601743535504,41.9156119248405],[-87.6259952820239,41.9156065869687],[-87.62597921631571,41.915602716061656],[-87.62595212213533,41.915594740455234],[-87.62592113356474,41.915585618187066],[-87.6258710056635,41.91556346530936],[-87.6258421993998,41.915550996435364],[-87.62583659669878,41.915548571419],[-87.62583381307142,41.91554715141923],[-87.62580017062758,41.915529988100865],[-87.62578678233291,41.91551899401209],[-87.62577064174579,41.91550573955712],[-87.62574900312754,41.915484311021984],[-87.62573062745074,41.91546611360933],[-87.62571855953533,41.915451538476155],[-87.62570900642679,41.91544000160451],[-87.62570575522771,41.915436074888355],[-87.62569467324025,41.91542258348611],[-87.6256770058095,41.9154010743068],[-87.62564443047178,41.9153665152843],[-87.62561406908965,41.915341608991966],[-87.62560812935176,41.91533673650729],[-87.62559306559447,41.91532538958949],[-87.62556232668338,41.915302233967985],[-87.62554938120367,41.9152933682582],[-87.62550846847354,41.91526534833761],[-87.62547879151298,41.915244446761],[-87.62546947778783,41.915237885803414],[-87.6254566255226,41.91522883267825],[-87.6254513090062,41.91522451890998],[-87.62537824525387,41.915156688101696],[-87.62523735771047,41.91502588986776],[-87.62509279078596,41.914898846191825],[-87.62501037556075,41.91482954034802],[-87.62494204936054,41.91477865169865],[-87.62486714594428,41.91472454077137],[-87.62482453635823,41.914697027696825],[-87.62479949076557,41.91468369181223],[-87.62478636749248,41.914676704164876],[-87.62473489358014,41.91465015172148],[-87.62472606964288,41.91464552867964],[-87.62467977176533,41.9146212713171],[-87.62467065720365,41.91461651667548],[-87.6246677468747,41.91461499817089],[-87.62465368873502,41.91460766445455],[-87.62463006995357,41.91459534886073],[-87.62461171621905,41.914585780073274],[-87.62458569063679,41.91457013815715],[-87.6245467134168,41.91454671242199],[-87.62450606475377,41.91451808647472],[-87.62444507509956,41.91447166239357],[-87.62441110463206,41.91444411934934],[-87.62439664361,41.914432394821674],[-87.62433923150029,41.91438481248],[-87.62427175325504,41.91433700329636],[-87.62420818302897,41.914299066412966],[-87.62420725886564,41.91429851487897],[-87.62420715192815,41.91429845055251],[-87.62419134665011,41.914288949027544],[-87.62419134446014,41.9142891136676],[-87.62412754909208,41.91424055876015],[-87.62410193429113,41.914224606154754],[-87.62407610019989,41.91420851744756],[-87.624055730643,41.914195835692404],[-87.62402450457837,41.91417639342748],[-87.62390863847753,41.91411907521462],[-87.62388462939239,41.914107197778264],[-87.623776485654,41.91406218285974],[-87.62365014926658,41.914004541727124],[-87.62358873423912,41.91397605109863],[-87.62353599643406,41.91395158606969],[-87.62343751194484,41.91390042858812],[-87.6233501520098,41.91384991636932],[-87.62334217268693,41.9138457139191],[-87.62332494837662,41.913836643125386],[-87.62328206597566,41.91381406739702],[-87.6232737612696,41.91380968784828],[-87.62326942810577,41.91380740310303],[-87.62321513983684,41.91378511850577],[-87.62319408542402,41.913776476254206],[-87.62309650441908,41.91373997768825],[-87.62302232499493,41.91371687951648],[-87.62300110316183,41.913710550674544],[-87.62293220518973,41.91369000431656],[-87.62290691603886,41.91368117609875],[-87.62290563478473,41.91368075681203],[-87.62263087021606,41.91361319534195],[-87.62255701407621,41.913598505808764],[-87.62242722821405,41.91357269229415],[-87.62230978301962,41.91356164654139],[-87.62210098094008,41.913545891329235],[-87.6219397814698,41.91353778546821],[-87.62193442256797,41.91353758706489],[-87.62193177617169,41.91353748889119],[-87.6219022455723,41.91353574144667],[-87.62188878185424,41.91353494452891],[-87.62184482583419,41.913532916143474],[-87.62183135848444,41.91353238017243],[-87.62173208451792,41.913528430205695],[-87.62162372903532,41.91353256104526],[-87.62160480799837,41.91353410841533],[-87.62155260920423,41.913538377045484],[-87.62150831291457,41.91354389331952],[-87.62149766656438,41.913545464525775],[-87.62146496131558,41.913550292213536],[-87.62142011315801,41.9135559422435],[-87.62138273411479,41.91356051288511],[-87.6213522224289,41.913564859906224],[-87.62132440915676,41.91356882272007],[-87.62128962401025,41.913573850412746],[-87.62125905310022,41.913578268940554],[-87.62122744770328,41.913581553167575],[-87.62116360276721,41.913588187640194],[-87.62112404826924,41.91359758661819],[-87.6210943853364,41.9136046350377],[-87.62105340459742,41.913622721872905],[-87.62101197708367,41.913641006250344],[-87.6209876502935,41.91365498920018],[-87.62094778599126,41.9136779026085],[-87.62092984313836,41.913688680653294],[-87.62089556007263,41.91370927384975],[-87.62084308041916,41.9137369942202],[-87.62077322782461,41.913770919302245],[-87.62074473607467,41.913779848107886],[-87.62072102212792,41.91378727994471],[-87.62070203523257,41.91378948756678],[-87.62066613442161,41.91379366237546],[-87.62061724175618,41.91379286467564],[-87.62061602526708,41.91379260246072],[-87.62059011946614,41.913787016051074],[-87.62055810208624,41.91376342058266],[-87.62055323133855,41.913759830811394],[-87.6205532047399,41.91375981088785],[-87.62052019772113,41.91371487510035],[-87.62051533779133,41.91369928544117],[-87.62051093200895,41.91368488108822],[-87.62050565950263,41.91366763958722],[-87.62049504310544,41.913641091346484],[-87.62049033412872,41.9136241203563],[-87.62048642417571,41.91361002862914],[-87.62048589632361,41.913584860246296],[-87.6204936506185,41.913561555292276],[-87.62051894368538,41.913507294571986],[-87.62052717089577,41.913494250195576],[-87.62054766598656,41.91346175405661],[-87.62054796575225,41.91346126168222],[-87.62056467977594,41.91343178267179],[-87.62056671758783,41.91342373936974],[-87.62057501710899,41.913390985305405],[-87.62057238086867,41.913370360348374],[-87.62057231816881,41.91337041511813],[-87.62055964343477,41.91338142833051],[-87.62051929237711,41.91341649000499],[-87.62048964422907,41.91344439914749],[-87.62046939153197,41.91346346351756],[-87.62044507057506,41.91348636018571],[-87.62044228701329,41.91348898092903],[-87.62042359654232,41.91351117544987],[-87.62037442397828,41.91357519481402],[-87.62037439109956,41.913575244005955],[-87.62037438699126,41.913575250017736],[-87.62033040870911,41.91364127690798],[-87.62032256530527,41.913655053617354],[-87.62029173687772,41.91370920335541],[-87.62027511105582,41.91374404234633],[-87.62025855856753,41.9137787278389],[-87.62024840554749,41.913804791469126],[-87.62023094890388,41.91384960494706],[-87.62022098208355,41.913880161755],[-87.62022079263885,41.91388074372656],[-87.6202122729632,41.9139068158503],[-87.6202104149454,41.91391507266502],[-87.62019897587263,41.913965898238736],[-87.62019449887752,41.914001691368526],[-87.6201915157181,41.914025539102724],[-87.6201898925787,41.914085435755766],[-87.62019459894782,41.914291449074256],[-87.62019463569175,41.914293065926095],[-87.62019732980649,41.914411586849596],[-87.62019937125733,41.914501408991896],[-87.62020049364968,41.91451520734511],[-87.62020082560159,41.914519283210296],[-87.62020817013847,41.914555909082814],[-87.62021231427025,41.91456721523557],[-87.62022125577647,41.91459161067924],[-87.62022786563267,41.91460376995677],[-87.62023990550867,41.91462591928228],[-87.62026386765875,41.91465834073775],[-87.62027444028332,41.91467113576057],[-87.62027528677461,41.914672160222786],[-87.62030511433818,41.914702394721424],[-87.6203055860721,41.91470289133701],[-87.62033189190879,41.91472399642254],[-87.62034043644887,41.91473085159219],[-87.62035743064432,41.914741665907584],[-87.62037932661828,41.91475559900788],[-87.62042178246892,41.91477688338165],[-87.62046718243658,41.91479439926031],[-87.62049934261464,41.914803455081596],[-87.620515015975,41.91480786849954],[-87.6205645859013,41.91481717727396],[-87.6206152695537,41.914822184230765],[-87.62063884022537,41.91482370319344],[-87.62065956904235,41.914823732235796],[-87.62069049656479,41.91482377599879],[-87.62074187157648,41.91481951253012],[-87.62079226504092,41.914810906521666],[-87.62082604426938,41.91480200804652],[-87.62084101553859,41.914798063913985],[-87.62088749679234,41.914781201459114],[-87.62092106736407,41.914765426003086],[-87.62095504861767,41.9147494579706],[-87.62098925833149,41.91478540002639],[-87.62098914333723,41.91478546572326],[-87.62098412392048,41.914788330840054],[-87.6209757988963,41.91479308296059],[-87.62092910246778,41.914816146341295],[-87.62090244979647,41.91482650343779],[-87.62087947128134,41.914835432178485],[-87.62084252876372,41.914846270418366],[-87.62082735048384,41.9148507234181],[-87.62081600570095,41.914853065470375],[-87.62077340099589,41.91486185977909],[-87.62074585698984,41.91486527719772],[-87.62071821401462,41.91486870661897],[-87.62068334007125,41.91487025444499],[-87.62066233968521,41.91487118667026],[-87.62062599150876,41.91486994460477],[-87.62060640509118,41.914869275284424],[-87.62057281309266,41.91486546826772],[-87.62055106975158,41.91486300454647],[-87.62051383633498,41.91485573474653],[-87.62049692162263,41.91485243216859],[-87.62049461276246,41.914851811086734],[-87.62047666424324,41.9148469828844],[-87.62044409945035,41.91483615150038],[-87.6204259655583,41.9148301204427],[-87.6203898638941,41.914814522317414],[-87.62037795652459,41.91480937760366],[-87.62033311106619,41.914784922790226],[-87.62029201371554,41.91475708757093],[-87.6202636842919,41.91473336673705],[-87.6202550666233,41.91472615051628],[-87.62024617153801,41.914716890319085],[-87.62023374654608,41.9147039542625],[-87.62022339094717,41.91469318280394],[-87.62022270558242,41.914692470262814],[-87.62021660335212,41.91468444749092],[-87.6201952937004,41.91465643271227],[-87.62017315806355,41.91461842491454],[-87.62016171871801,41.914591310616295],[-87.62015647673215,41.91457888705474],[-87.62015075406528,41.91455762958803],[-87.62014553982503,41.91453825919003],[-87.62014476623817,41.91453207274164],[-87.62014037770618,41.91449698113562],[-87.62013892441266,41.914421031964146],[-87.62013649864409,41.914294323935536],[-87.6201350646656,41.91422020445694],[-87.62013363056629,41.91414606302283],[-87.62013305490177,41.91413655372205],[-87.6201324201334,41.914126050095405],[-87.62013214544974,41.91405832088553],[-87.62013465196229,41.91402808437797],[-87.6201377479506,41.91399073794811],[-87.62014834353617,41.91392852546319],[-87.6201491808057,41.913923611912246],[-87.62014918709615,41.91392357490426],[-87.62014931648048,41.91392307461214],[-87.62015993609637,41.913882066911675],[-87.62016642306664,41.91385710675081],[-87.62018941714526,41.913791608490605],[-87.62019115524427,41.913786962058765],[-87.62019278693033,41.913782600639976],[-87.6202058798827,41.91375191945155],[-87.62022100466497,41.91371647537714],[-87.62025471745473,41.9136518115038],[-87.62029388439758,41.91358888263492],[-87.62033828377982,41.91352793409424],[-87.62038772761132,41.91346918534433],[-87.62038861629519,41.913468266057784],[-87.62039163060453,41.913465148396895],[-87.62040983914058,41.91344627963569],[-87.62044206876334,41.91341288189683],[-87.62048246081788,41.91337618659151],[-87.6205010814854,41.91335926932378],[-87.62052694141101,41.91333858471298],[-87.62056447126282,41.91330856587683],[-87.62063205075108,41.91326093394194],[-87.62070352580845,41.91321659177325],[-87.62074688882987,41.91319300093112],[-87.62077863530673,41.91317572956455],[-87.62082547004576,41.91315347252558],[-87.6208570118132,41.913138483063555],[-87.62095206401152,41.91309826615801],[-87.62103416996675,41.91306761097967],[-87.62105256034579,41.91306074456984],[-87.62112402029265,41.91303747743085],[-87.6211426372497,41.91303141207958],[-87.62114852186009,41.91302949468848],[-87.62115551082178,41.91302721779227],[-87.62126065696228,41.91299773800273],[-87.62132112524472,41.9129834382183],[-87.62136774076245,41.912972414187855],[-87.62147646737569,41.91295129857572],[-87.62158650629117,41.91293444591854],[-87.62169759947987,41.9129219347449],[-87.62180937781204,41.91291379075557],[-87.62192313693254,41.91290933591915],[-87.62197468024429,41.912906280397536],[-87.62199963927414,41.912904135356875],[-87.6220917339255,41.91289622041337],[-87.6222079179388,41.91288179187745],[-87.62223643868158,41.912877147447496],[-87.62226644713083,41.912872260303175],[-87.62232301122607,41.912863048582466],[-87.62237269474144,41.912853072225765],[-87.62242257634404,41.912843055910514],[-87.62252937146036,41.912817262155706],[-87.62263422761103,41.912787340508636],[-87.62273681390951,41.91275334326257],[-87.62281946030326,41.91272200820777],[-87.62283687275784,41.91271540631536],[-87.62286494300102,41.91270333690489],[-87.62293414527514,41.912673582681954],[-87.62296960529314,41.912656441804],[-87.62302837246759,41.91262803514646],[-87.6231126808538,41.91258239846698],[-87.62311926061885,41.9125788442264],[-87.62320658599873,41.91252617374845],[-87.6232900910247,41.912470159339186],[-87.62334053023582,41.91243070709977],[-87.62368919598582,41.912158000636495],[-87.62375790508732,41.91210425447535],[-87.62424497661947,41.911734048390414],[-87.62442575979966,41.911596646731944],[-87.62446476693462,41.91156699961249],[-87.62470625161168,41.91156481836414],[-87.62563247929567,41.911459757980126],[-87.625733701703,41.911448355762786],[-87.62600255358274,41.911418105069416],[-87.62617635054076,41.9113982395391],[-87.62632294794103,41.91138165933719],[-87.62640461917296,41.91137318855012],[-87.62645810267597,41.911470526265965],[-87.62652436008189,41.91159217411744],[-87.62656614222855,41.911673458741305],[-87.62673798063294,41.911470631142336],[-87.62675883992614,41.91144194263724],[-87.62678948754032,41.911407689239184],[-87.62682719451564,41.911367435929094],[-87.62686468723022,41.91133811292023],[-87.62690299387286,41.9113136030682],[-87.62694076662223,41.911300393394],[-87.62698508991906,41.91128661313769],[-87.62700724837848,41.91128002827885],[-87.62707566625787,41.91126015993859],[-87.6271034930123,41.91125518428834],[-87.62712453544287,41.911251421841854],[-87.62717118433194,41.9112492647243],[-87.62766307940147,41.91124229727874],[-87.62783171789611,41.91123958903023],[-87.62794388560846,41.91123778693154],[-87.62850626957838,41.911228919021795],[-87.62888562429376,41.91122300767783],[-87.62913677711667,41.91121909377046],[-87.62997199982367,41.911205222572114],[-87.63020702111386,41.91120155904532],[-87.6305824445853,41.91119570556267],[-87.63083069387066,41.911191881046335],[-87.63093872277152,41.911190216451814],[-87.63100570871882,41.91118918436833],[-87.63126761507995,41.91119516002585],[-87.63138196617132,41.9111977691109],[-87.63168235200281,41.91118052934091],[-87.6319739780938,41.91116379098688],[-87.63237604225255,41.911160757630476],[-87.63247459923582,41.911161062028306],[-87.63253926703783,41.911161261878284],[-87.63291310718598,41.91116241578683],[-87.63315087950562,41.91116228385933],[-87.63471084637034,41.911161406863386],[-87.63505140500871,41.91116121246002],[-87.63570119384076,41.91115356115722],[-87.6366624205462,41.91114223605954],[-87.63684688405435,41.91114006173139],[-87.63762380321658,41.91112869859658],[-87.63859245748084,41.91111452391946],[-87.63859435873607,41.91117248914482],[-87.63860378802376,41.911459966285804],[-87.63861475708691,41.91183072304938],[-87.63862288552676,41.91208266523111],[-87.63862663553603,41.91219890571564],[-87.63863454113569,41.91252019290466],[-87.63863474235279,41.91253141801528],[-87.63863948647997,41.912795962865125],[-87.638637647523,41.91284957477862],[-87.63865552354875,41.91326181025428],[-87.63867627151942,41.91384212039406],[-87.63868650356162,41.914158454511856],[-87.6386950099062,41.91442143066823],[-87.63870346251038,41.91469143472726],[-87.63870418877022,41.91471075738222],[-87.63871074078756,41.91488508041212],[-87.63871997278665,41.91519248968344],[-87.63872402433375,41.915325334774145],[-87.63873456383153,41.91566979899119],[-87.63875489114541,41.916261906507316],[-87.6387619789366,41.91651021350323],[-87.63877323724667,41.91690460550575],[-87.63879611530159,41.91769187021518],[-87.63881550730929,41.91832237537314],[-87.63826512743425,41.91833054417471],[-87.63820269174022,41.91833147081699],[-87.63798550643203,41.9183359839793],[-87.63784374352423,41.918338929450336],[-87.6376953088182,41.91834170836667],[-87.63722090061667,41.918350589256974],[-87.63712501839807,41.918352384160315],[-87.63671735042051,41.918349609489404],[-87.6365644369525,41.91835540476394],[-87.6365302537685,41.91835654227431],[-87.63648117682851,41.918369032531835],[-87.63638649503638,41.918396178944896],[-87.6361173161961,41.918473354546805],[-87.63480677430245,41.91846463443317],[-87.63447156477397,41.91851231320118],[-87.63410664937828,41.91856465392852],[-87.63401826787567,41.91855581001667],[-87.63336686912871,41.91849062549453],[-87.63336501160265,41.918490439638276],[-87.63310649925961,41.91846456909621],[-87.63307450427747,41.91846457183568],[-87.63210663361954,41.91846464205212],[-87.63150634554665,41.918464748107844],[-87.63078545543051,41.91863112478623],[-87.63020649125801,41.9187644919464],[-87.63002607119176,41.91873451088801],[-87.62997546882538,41.91872610190062]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3509849.597","perimeter":"0.0","tract_cent":"1171414.54014963","census_t_1":"17031080500","tract_numa":"26","tract_comm":"8","objectid":"182","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909565.22456755","census_tra":"080500","tract_ce_3":"41.90731394","tract_crea":"","tract_ce_2":"-87.64575306","shape_len":"7961.36451396"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64781182127045,41.90364221875041],[-87.64809420838512,41.903637096328566],[-87.64810682510085,41.903828666386744],[-87.64811263803398,41.90412672475839],[-87.64811626602967,41.904313024923596],[-87.64811841155559,41.90442500241795],[-87.64812180582481,41.90459884236309],[-87.64812372223497,41.904697893149724],[-87.6481160512049,41.90489309951255],[-87.64811798942668,41.904970390308456],[-87.64812117711563,41.90509752052467],[-87.64812550271,41.9052700487756],[-87.64813262913889,41.90555521701969],[-87.64813701174188,41.905729392136045],[-87.64813701247711,41.90572942644333],[-87.6481441180719,41.90601294278681],[-87.64814414868347,41.906014168268996],[-87.64814855080586,41.90618933936941],[-87.6481564270144,41.90637894444782],[-87.64816245784098,41.90652410884981],[-87.6481705119544,41.90676029775915],[-87.64817521939256,41.90689723583027],[-87.64818327871457,41.907133013394464],[-87.64818623008705,41.907228046446065],[-87.64818830693966,41.90729492560044],[-87.64818872773503,41.90747280890404],[-87.64818901281687,41.90759309053046],[-87.6481960352217,41.90792921840569],[-87.64819727078687,41.907988267632156],[-87.64820097078918,41.90816511450024],[-87.64820593277265,41.9084019437811],[-87.6482099399824,41.90852175336057],[-87.64821145593352,41.90857694860975],[-87.64822284629693,41.908991505427196],[-87.64824037608464,41.90950634529995],[-87.64824822880628,41.90987483248807],[-87.64825097180245,41.910003180848804],[-87.64826066139489,41.910457506396924],[-87.64827157386192,41.91091961991864],[-87.6477669119213,41.91092664966091],[-87.64758900129024,41.91092937463026],[-87.6474941433222,41.91093082730477],[-87.64732442267263,41.91093342652247],[-87.64690187280455,41.91093989634497],[-87.64657447666889,41.910944908233425],[-87.64584458737768,41.91095561051156],[-87.64540637092897,41.910962033993655],[-87.64498484260493,41.910968210894396],[-87.64435615669537,41.91098675977597],[-87.64399618689582,41.91099737866812],[-87.64362431838394,41.911004283918935],[-87.64343057887629,41.91101775996966],[-87.64341718574023,41.91059124053756],[-87.64341598421024,41.91055297876047],[-87.64341287312374,41.91042675487683],[-87.64341140178769,41.91036704779381],[-87.64340984400397,41.910303871484636],[-87.6434061661732,41.910154677183876],[-87.64339189872788,41.90967144237473],[-87.64338495812808,41.90942892051905],[-87.64337780852935,41.909176709990554],[-87.64336397890538,41.9086888402531],[-87.6433581818616,41.90849270272007],[-87.64335282898327,41.908318741231284],[-87.6433447717697,41.908033237956516],[-87.64333612293959,41.90772083765098],[-87.64333074989874,41.90754909856962],[-87.64332918122273,41.90749895232038],[-87.6433216634721,41.907262299557],[-87.64331686447879,41.90710074528261],[-87.64331112826571,41.906889734601194],[-87.64330533678988,41.90670432670832],[-87.6432986188768,41.906446664217306],[-87.64329202574812,41.90619379224603],[-87.64328399149672,41.90589599484368],[-87.64327646156569,41.90562300831125],[-87.64327299227928,41.90549828957135],[-87.64326904311027,41.90537378748338],[-87.64326387426689,41.9052124504706],[-87.64325929923524,41.90505287333017],[-87.64325639692419,41.904951648611295],[-87.64325411153592,41.90484082580438],[-87.64325050891053,41.90466610331691],[-87.6432455106696,41.90449230849457],[-87.64324040734469,41.904318074232556],[-87.64323413773533,41.904119106872926],[-87.64322533083765,41.903858983030695],[-87.64321993820056,41.90371649997725],[-87.64337155130693,41.903714088062266],[-87.64379519397251,41.90370527163918],[-87.64427748454797,41.90369798561447],[-87.64448576310072,41.90369508266305],[-87.64462570578185,41.90369313173763],[-87.64500082890248,41.90368709339353],[-87.64546511770206,41.90367999633464],[-87.64599054831326,41.903671624263595],[-87.64602093027719,41.90367114009303],[-87.64641156448467,41.903664256940566],[-87.64660964080124,41.90366092384766],[-87.64681582584265,41.90365745393049],[-87.64700179644163,41.90365421079302],[-87.64714631298136,41.90365169055516],[-87.64744611194068,41.903647389469675],[-87.64761648151716,41.9036447524777],[-87.6477349178333,41.90364321625885],[-87.64781182127045,41.90364221875041]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10602484.3418","perimeter":"0.0","tract_cent":"1158726.61538222","census_t_1":"17031050400","tract_numa":"15","tract_comm":"5","objectid":"196","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923916.94884785","census_tra":"050400","tract_ce_3":"41.94696572","tract_crea":"","tract_ce_2":"-87.69196701","shape_len":"13953.2368706"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68846623699575,41.954012741527166],[-87.68846513649105,41.95397092892862],[-87.68845987019509,41.95377085482584],[-87.68845276159536,41.95352786983021],[-87.68845259387467,41.95352229813815],[-87.68844819036792,41.95337595202767],[-87.6884395410472,41.95308501697667],[-87.68843380454912,41.95289206664561],[-87.68842600450544,41.95261189365198],[-87.68842169761777,41.95245929125628],[-87.68841484026127,41.9521960737134],[-87.6884092664268,41.951982112653276],[-87.68840134225698,41.9517142329898],[-87.68839631842997,41.95154892083735],[-87.68839206350198,41.95140940859978],[-87.6883882708793,41.951282385124316],[-87.6883814308741,41.95105287561527],[-87.68837390714472,41.95081093097059],[-87.68837031875871,41.9506709831104],[-87.68836704553398,41.95054349629412],[-87.68836123870877,41.950379071852126],[-87.6883495146481,41.95004710682757],[-87.68834620260297,41.94991986648377],[-87.68834613982405,41.949917560991736],[-87.68833851784467,41.94963925491495],[-87.68832993008445,41.949331497984716],[-87.68831767200628,41.948891943262645],[-87.68830790491165,41.94854763469142],[-87.6883039486638,41.94840817098294],[-87.68829633078562,41.948069903770204],[-87.68828471769586,41.947588283763224],[-87.68827269274236,41.94727150638487],[-87.68826399137178,41.947026152133354],[-87.68825771760588,41.94673080999193],[-87.6882527737249,41.94649804725455],[-87.68824622979797,41.94626203514828],[-87.68824188255284,41.94610526142016],[-87.68823052107156,41.94578105086086],[-87.68822189433226,41.945462728269874],[-87.68821051805651,41.94505245898242],[-87.68820644735207,41.944918985167185],[-87.68819488166291,41.94453980646925],[-87.68819371586802,41.94450099588015],[-87.68818285472533,41.944139412636574],[-87.68817369757676,41.9438627990611],[-87.68816411616652,41.94357303801626],[-87.68815876773087,41.94341129155479],[-87.68815346945294,41.94309767712497],[-87.68800963051105,41.94241575521881],[-87.68799868873243,41.94234730535991],[-87.68798974335729,41.94179254998905],[-87.68797359205004,41.94137561586848],[-87.68796991104452,41.941275037990295],[-87.68795535426243,41.94087725563293],[-87.68794204522388,41.94046685082046],[-87.6879388461093,41.94036584122471],[-87.68792660557153,41.939979361261045],[-87.6879134504439,41.93955375976583],[-87.6879110220732,41.939460047795514],[-87.68796583086962,41.93946021373319],[-87.68805208736039,41.93946047433781],[-87.68813539029159,41.939460728159524],[-87.68816481909498,41.93946081696513],[-87.68835905766213,41.939461402227074],[-87.68848869621418,41.9394647099614],[-87.68858334190048,41.93946447310471],[-87.68870515736417,41.93946356545147],[-87.68892703506776,41.9394501568352],[-87.68916230506353,41.939446317924094],[-87.68951304835232,41.939443620056544],[-87.68975641548985,41.9394422951284],[-87.69012231147023,41.93944232658391],[-87.69031843573725,41.93944234308312],[-87.69059839307701,41.93943919522794],[-87.69082188841995,41.939436681612726],[-87.69138537984026,41.939432890945206],[-87.69164444474295,41.93943129303323],[-87.69188814850324,41.939429928694835],[-87.69211544907809,41.93942865554622],[-87.69239038874208,41.93942739158624],[-87.69256665973063,41.93942656948978],[-87.69266159944932,41.939457170716366],[-87.69272886456724,41.939486195679805],[-87.69279425360588,41.93952272929667],[-87.69283890782712,41.93957445994992],[-87.69286361867091,41.939602698595024],[-87.69292862892472,41.93965874141654],[-87.69300048078313,41.939721628019285],[-87.69305950738502,41.93977695133988],[-87.69313322386677,41.93982615460606],[-87.69319554627815,41.93985699036131],[-87.69323814137888,41.93988313325976],[-87.69331040153206,41.939931011067685],[-87.69337747608762,41.939986488579684],[-87.69342216948802,41.94004173209547],[-87.69346672500798,41.9400960689585],[-87.69352866055084,41.9401362327188],[-87.69360421163107,41.94022627987398],[-87.69363310773642,41.94025506307199],[-87.69364145570228,41.94028035639215],[-87.6936560553346,41.94032739130942],[-87.69366986139279,41.94036185328323],[-87.69368325977972,41.940382015880864],[-87.69369465200452,41.9404006025472],[-87.6937323049213,41.940450564984715],[-87.69379258612598,41.94051291983663],[-87.6938324234762,41.940568630098795],[-87.69385383864159,41.94061778855588],[-87.69386478233503,41.940662882129104],[-87.69387038217629,41.940694691364534],[-87.69394662806819,41.94078888592642],[-87.69397482119462,41.94084392728912],[-87.69402289693949,41.940924957332925],[-87.69405049657315,41.94096951245815],[-87.6940823792273,41.94102317478473],[-87.69412129219069,41.941057447178466],[-87.69414616516053,41.941084286893236],[-87.69417589441672,41.94112171887624],[-87.69420699834718,41.941176232204775],[-87.69421711154457,41.94119395659897],[-87.69423927951631,41.941237713060616],[-87.69427044813068,41.941281931248554],[-87.69431056597892,41.94133912422872],[-87.69435158809794,41.94138674545531],[-87.69445825513166,41.94151184420784],[-87.69450310284343,41.94157392097761],[-87.69453479878979,41.94162426163148],[-87.69459139091141,41.94169916432061],[-87.69461227438863,41.94173171687814],[-87.69463459239263,41.94176416819195],[-87.69467106391303,41.94181848704612],[-87.69469738695174,41.94185845206538],[-87.69472342815932,41.94190456283285],[-87.69477448233825,41.94197828178019],[-87.69480066889257,41.942017203213055],[-87.69484137409528,41.94207456419575],[-87.69487845334282,41.94213431991204],[-87.69490982292022,41.94218062464359],[-87.69494449362584,41.942242260455075],[-87.69499528702548,41.94234221311882],[-87.69502810154165,41.942383668310754],[-87.6950670844447,41.942444230369745],[-87.69510928101472,41.94251795508042],[-87.69527505747908,41.94276105831819],[-87.69527864252808,41.94276631503125],[-87.69529038283802,41.94280596780476],[-87.69529061468256,41.94280675119509],[-87.6952967422949,41.942827447007936],[-87.6953102802222,41.942876114368694],[-87.6953300936436,41.94293050069666],[-87.69535703655232,41.94299903877367],[-87.69538113601797,41.94306104791933],[-87.69539566057067,41.94309640855284],[-87.69539841401868,41.94311116029783],[-87.69542825181868,41.94320424499769],[-87.69545170046318,41.94331142745858],[-87.69548115913719,41.94357901506753],[-87.69552785277195,41.94378067254365],[-87.69558466957118,41.944010377235884],[-87.69577581135448,41.9448291604493],[-87.69577757067026,41.94483656862606],[-87.695905705734,41.94537620024687],[-87.69600010154568,41.945771068123555],[-87.69618841060178,41.9465726559013],[-87.69620081383057,41.94665236186651],[-87.69620447311345,41.94669597019454],[-87.69621566655394,41.94682936386028],[-87.69621295075403,41.94688799267343],[-87.69621248054987,41.946942599676206],[-87.69621809796564,41.946994963310004],[-87.69622117852398,41.94701783971846],[-87.69623304659198,41.94706266372778],[-87.69624187228749,41.947106620146805],[-87.6962551694251,41.94715559584814],[-87.69625446454089,41.94717839636584],[-87.69626670311439,41.94722662525332],[-87.69627704666516,41.94725843321715],[-87.69628909745992,41.94728860412352],[-87.69630204870357,41.947342791907666],[-87.69631060774181,41.94738400262467],[-87.69631706189773,41.947422485163635],[-87.69632005591299,41.94745405997526],[-87.69631992198525,41.94748597445431],[-87.69633162240822,41.947566115568314],[-87.69633893461798,41.947610722190724],[-87.69635346041414,41.947669227119654],[-87.69637168786963,41.94773623220694],[-87.69640741721197,41.94782264569972],[-87.69646617608976,41.94794885702485],[-87.69646815493579,41.94796055808271],[-87.69653198088415,41.94821801759918],[-87.69657484650546,41.94839127808478],[-87.6966009137692,41.9485129990482],[-87.69660196513635,41.94851790933939],[-87.69661614698242,41.94862210349254],[-87.69663987075093,41.948746355881774],[-87.6966822066849,41.94890641370329],[-87.69668886547967,41.94894283891122],[-87.69669809133126,41.948990968706546],[-87.69670858616638,41.9490445665239],[-87.69671269340648,41.94910098290431],[-87.69673301797575,41.94919744496706],[-87.69674994718724,41.949284173680205],[-87.69675308641493,41.94932335102396],[-87.69675479124052,41.949362602740685],[-87.69677558880575,41.9494595339307],[-87.69678556342022,41.94951743726886],[-87.69679079410561,41.94955701039566],[-87.69680070716372,41.94960259186872],[-87.69681463203551,41.94965137887069],[-87.69682815495447,41.94969253472696],[-87.69683694999658,41.94975073338253],[-87.69684572256709,41.949825973481616],[-87.69685041184191,41.94987193762092],[-87.69684968272279,41.949923058286146],[-87.6968591398961,41.94996506974593],[-87.69686355982498,41.95000625745813],[-87.6968399471355,41.95024023544526],[-87.6968277019381,41.95027386650547],[-87.6968090227864,41.95031917337523],[-87.69680826410246,41.950321014103956],[-87.69680093061872,41.950345880205134],[-87.69678764389731,41.950390932117806],[-87.69676809281339,41.9504346762555],[-87.69674111104167,41.950482605278026],[-87.69670355999126,41.950539806014],[-87.69666041095016,41.95063127836503],[-87.69662955087432,41.95068472916422],[-87.69660035754121,41.95074430852014],[-87.69657142425311,41.95079252881481],[-87.69653765253528,41.95085040933947],[-87.69649790464408,41.95090298726613],[-87.69646752224966,41.95094535404598],[-87.69643586883171,41.95099353204801],[-87.69640239885372,41.95102477310576],[-87.69629594146058,41.95120156238568],[-87.69627392042196,41.951227482782826],[-87.69624982992043,41.95126925324535],[-87.69623185061687,41.95131017946628],[-87.69621241641858,41.95134577383663],[-87.69619874114085,41.95137898525464],[-87.69617618653038,41.95143632391298],[-87.69615414296081,41.951486640216565],[-87.69611828419957,41.951558367029406],[-87.69609716337293,41.95159354038552],[-87.69607476808554,41.95163117645543],[-87.69604775930371,41.95168909408959],[-87.69601958770282,41.95173457397659],[-87.69599223251441,41.95178669938403],[-87.69597106331469,41.9518340567528],[-87.6959473816859,41.95186795352532],[-87.69591705669703,41.95190447529628],[-87.6958828020258,41.95197750071556],[-87.6958387873571,41.95205601524096],[-87.6958221552855,41.952091664066884],[-87.69580727069918,41.95212356741276],[-87.69579005074489,41.9521582958532],[-87.6957759180112,41.952182037140965],[-87.69575324738642,41.95221775066581],[-87.69565787003069,41.95235212646656],[-87.69552458428798,41.95256452910127],[-87.69549659144818,41.9526141261641],[-87.6954613586388,41.952652431723614],[-87.69539779218894,41.95271182004703],[-87.69507261735481,41.95310707287867],[-87.69488639042163,41.953363581767455],[-87.69479298823218,41.95347650806257],[-87.69464716160324,41.95368148566665],[-87.69462557072772,41.953719400059875],[-87.69460679860252,41.953754833171914],[-87.69458438267554,41.953809098745],[-87.69456973752567,41.95385830331313],[-87.69455468733555,41.953922296928],[-87.6945511577727,41.95394353230962],[-87.69454306450416,41.95399222338647],[-87.69340563430738,41.953995608369],[-87.69322382180046,41.95399614833375],[-87.6920680730256,41.95399957434864],[-87.69090759747247,41.95400300261868],[-87.69087438251593,41.95400216390905],[-87.69024601465834,41.95398629422999],[-87.68846623699575,41.954012741527166]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7014182.29504","perimeter":"0.0","tract_cent":"1161018.681952","census_t_1":"17031050500","tract_numa":"32","tract_comm":"5","objectid":"197","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1925201.27073217","census_tra":"050500","tract_ce_3":"41.9504426","tract_crea":"","tract_ce_2":"-87.68350623","shape_len":"10595.4568854"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6879308119028,41.94673391431087],[-87.68825771760588,41.94673080999193],[-87.68826399137178,41.947026152133354],[-87.68827269274236,41.94727150638487],[-87.68828471769586,41.947588283763224],[-87.68829633078562,41.948069903770204],[-87.6883039486638,41.94840817098294],[-87.68830790491165,41.94854763469142],[-87.68831767200628,41.948891943262645],[-87.68832993008445,41.949331497984716],[-87.68833851784467,41.94963925491495],[-87.68834613982405,41.949917560991736],[-87.68834620260297,41.94991986648377],[-87.6883495146481,41.95004710682757],[-87.68836123870877,41.950379071852126],[-87.68836704553398,41.95054349629412],[-87.68837031875871,41.9506709831104],[-87.68837390714472,41.95081093097059],[-87.6883814308741,41.95105287561527],[-87.6883882708793,41.951282385124316],[-87.68839206350198,41.95140940859978],[-87.68839631842997,41.95154892083735],[-87.68840134225698,41.9517142329898],[-87.6884092664268,41.951982112653276],[-87.68841484026127,41.9521960737134],[-87.68842169761777,41.95245929125628],[-87.68842600450544,41.95261189365198],[-87.68843380454912,41.95289206664561],[-87.6884395410472,41.95308501697667],[-87.68844819036792,41.95337595202767],[-87.68845259387467,41.95352229813815],[-87.68845276159536,41.95352786983021],[-87.68845987019509,41.95377085482584],[-87.68846513649105,41.95397092892862],[-87.68846623699575,41.954012741527166],[-87.68824192175909,41.95401607325369],[-87.68749566109508,41.95402715257088],[-87.68725001728012,41.954030798707116],[-87.68627742676321,41.95404522927635],[-87.6860417990498,41.95404872400946],[-87.68482839037304,41.95406671375175],[-87.68361150835372,41.95408474208641],[-87.68240003341639,41.954102677311326],[-87.6811830229958,41.9541208034863],[-87.67996687465016,41.95413890382692],[-87.67875431222792,41.9541569379086],[-87.67875270645142,41.9541055919756],[-87.6787369908978,41.95360307080126],[-87.67873170721562,41.95337936029005],[-87.67872642181683,41.95313778466941],[-87.67871966051888,41.95289318199066],[-87.67871367858746,41.952677252798615],[-87.67871243887579,41.952632495596106],[-87.67870327277403,41.952331693093505],[-87.67869719247999,41.952132138854715],[-87.67868978200495,41.95184680832399],[-87.67867806800228,41.95142440728233],[-87.67867369684924,41.951266782246655],[-87.678668112443,41.95102215875507],[-87.67866413039177,41.950850869748585],[-87.67865421879226,41.95050929075972],[-87.6786455951349,41.95021210344358],[-87.67864141177911,41.950054890802335],[-87.67863630256694,41.949862602384215],[-87.67862973733794,41.94959871105828],[-87.67862615288445,41.94945371164279],[-87.67862136554571,41.94926054661701],[-87.67861837176856,41.94913994881303],[-87.67861741052305,41.94910100294439],[-87.67860453880225,41.94868655578361],[-87.67860131772336,41.948582858556996],[-87.67859389660894,41.948316627513286],[-87.67858878524848,41.948133586749584],[-87.67858479569641,41.947991797911826],[-87.67857869423524,41.947784025849025],[-87.67857345498493,41.94760562233477],[-87.67856525623937,41.94734100562184],[-87.67855998582559,41.94716888616633],[-87.67855716791496,41.947077817066344],[-87.67855254520016,41.946864282594504],[-87.67904670940302,41.94685681720397],[-87.67925041964699,41.94685416345852],[-87.67959030374438,41.94684973268855],[-87.67976617585947,41.94684761654427],[-87.6801599943041,41.94684287639107],[-87.68043197793976,41.94683904473702],[-87.68073079943596,41.94683481614729],[-87.68098127819968,41.94683148389107],[-87.68132917355037,41.946826854744735],[-87.68164159264543,41.946822975423665],[-87.6819411437719,41.94681924178333],[-87.6821950125138,41.94681578505923],[-87.6824917263218,41.94681174410171],[-87.68270943875537,41.946809328244704],[-87.68314442250407,41.946804492793916],[-87.68340613713043,41.94680033633595],[-87.68381060620959,41.946793911251845],[-87.68401468503612,41.94679108648406],[-87.68435390915647,41.946786390897984],[-87.6846187281093,41.94678385019755],[-87.6846825618316,41.94678323775521],[-87.68487049958681,41.946781433875714],[-87.68511538952998,41.94677776740198],[-87.6855503892973,41.946771276395886],[-87.68583164203302,41.94676743100718],[-87.68614858105873,41.94676309674764],[-87.68640643994124,41.946760076908475],[-87.68678708883307,41.94675566214813],[-87.68704274483147,41.946750116420134],[-87.6872601356992,41.94674540007498],[-87.68739382757767,41.94674187133296],[-87.68765216587272,41.94673872131692],[-87.6879308119028,41.94673391431087]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1771408.38707","perimeter":"0.0","tract_cent":"1163098.30884792","census_t_1":"17031051200","tract_numa":"14","tract_comm":"5","objectid":"203","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921929.97916276","census_tra":"051200","tract_ce_3":"41.94142248","tract_crea":"","tract_ce_2":"-87.67595393","shape_len":"5325.35122162"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67817199262704,41.93957500168562],[-87.6783552217843,41.93957285967569],[-87.67836575347566,41.939935342280506],[-87.67836852009975,41.940027032494896],[-87.6783712428866,41.940117260338596],[-87.6783744251073,41.94028758463167],[-87.6783806573195,41.94048538495752],[-87.6783906278521,41.94080183362558],[-87.6783937845597,41.940945923036374],[-87.67839854956699,41.94114117382452],[-87.67840428470411,41.94139689896104],[-87.67841114442393,41.94170271245817],[-87.67841492686006,41.94185114100345],[-87.67841612722835,41.94189823888427],[-87.67841956550905,41.942032779999394],[-87.67842773413614,41.942302253505915],[-87.6784332504775,41.942484226525224],[-87.67843479784779,41.94254493769356],[-87.67844003040206,41.94275195170687],[-87.67844433002583,41.94292448974218],[-87.67844626653822,41.94300098209425],[-87.67844747930752,41.94304780534017],[-87.67845292310392,41.943215756074885],[-87.67829526646572,41.943216749129014],[-87.67813468913621,41.94321892369857],[-87.67802829908571,41.943220385112085],[-87.67767927886186,41.943225088146086],[-87.67738812151642,41.943229050741266],[-87.67720600205588,41.94323149528079],[-87.67698785475204,41.94323447451834],[-87.67656663329657,41.943240161225276],[-87.67627577025691,41.94324412268265],[-87.67603112709408,41.94324697206854],[-87.67540216933037,41.94325429542094],[-87.67508226440614,41.94325860882942],[-87.67483470762484,41.943261936761914],[-87.67459093743356,41.943265203559655],[-87.67441304512123,41.943267585594825],[-87.67394178252822,41.943271586898256],[-87.67381921277509,41.94327270505679],[-87.67372596033947,41.94327412543453],[-87.67355971293233,41.94327665701997],[-87.6735452000345,41.942993942988046],[-87.67354132784126,41.94282026674978],[-87.67354039986068,41.94277857677574],[-87.67353525127842,41.94244701844106],[-87.67353400800819,41.94236695949114],[-87.67353264434405,41.942279112311354],[-87.67352995167516,41.94210568980922],[-87.67352426665381,41.94190692126234],[-87.67352246762195,41.94184401293379],[-87.67351488186648,41.941455089155625],[-87.67350933880329,41.941170863747374],[-87.67350375808648,41.94099575064209],[-87.67349939650337,41.940858898921746],[-87.67347320114597,41.940544028945936],[-87.67344746446173,41.940234675264826],[-87.67343962713305,41.939804144848466],[-87.67343994609232,41.939632610038444],[-87.6735728678139,41.93963086049177],[-87.67362238358307,41.93963020868546],[-87.67371879228992,41.93962893961095],[-87.67389387518499,41.93962663470588],[-87.67430260960235,41.939621252448305],[-87.67467373919769,41.93961636431562],[-87.67496461946712,41.93961267070995],[-87.67538684297827,41.939607308153015],[-87.6759312777712,41.93960157553363],[-87.67629666562523,41.939597726932554],[-87.6767117618563,41.939592033591865],[-87.67757974454138,41.939580034982605],[-87.67817199262704,41.93957500168562]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3574615.01866","perimeter":"0.0","tract_cent":"1163010.63617767","census_t_1":"17031050600","tract_numa":"30","tract_comm":"5","objectid":"198","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1925254.03018974","census_tra":"050600","tract_ce_3":"41.9505457","tract_crea":"","tract_ce_2":"-87.6761825","shape_len":"7986.42806892"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6784070738812,41.94686647946579],[-87.67855254520016,41.946864282594504],[-87.67855716791496,41.947077817066344],[-87.67855998582559,41.94716888616633],[-87.67856525623937,41.94734100562184],[-87.67857345498493,41.94760562233477],[-87.67857869423524,41.947784025849025],[-87.67858479569641,41.947991797911826],[-87.67858878524848,41.948133586749584],[-87.67859389660894,41.948316627513286],[-87.67860131772336,41.948582858556996],[-87.67860453880225,41.94868655578361],[-87.67861741052305,41.94910100294439],[-87.67861837176856,41.94913994881303],[-87.67862136554571,41.94926054661701],[-87.67862615288445,41.94945371164279],[-87.67862973733794,41.94959871105828],[-87.67863630256694,41.949862602384215],[-87.67864141177911,41.950054890802335],[-87.6786455951349,41.95021210344358],[-87.67865421879226,41.95050929075972],[-87.67866413039177,41.950850869748585],[-87.678668112443,41.95102215875507],[-87.67867369684924,41.951266782246655],[-87.67867806800228,41.95142440728233],[-87.67868978200495,41.95184680832399],[-87.67869719247999,41.952132138854715],[-87.67870327277403,41.952331693093505],[-87.67871243887579,41.952632495596106],[-87.67871367858746,41.952677252798615],[-87.67871966051888,41.95289318199066],[-87.67872642181683,41.95313778466941],[-87.67873170721562,41.95337936029005],[-87.6787369908978,41.95360307080126],[-87.67875270645142,41.9541055919756],[-87.67875431222792,41.9541569379086],[-87.67632852662639,41.95418820951906],[-87.67495472223523,41.9542058997254],[-87.67421250155697,41.95421545017131],[-87.67402377036674,41.954218363451396],[-87.67379365827884,41.95422191493596],[-87.6737943571636,41.95416168764359],[-87.67379530947302,41.95407969664819],[-87.67378493105582,41.953721956320415],[-87.67377887290033,41.953513142226186],[-87.67376757573106,41.95312553984138],[-87.6737598361239,41.95285771497429],[-87.67375024541009,41.95252797059925],[-87.67375268034047,41.95240026871238],[-87.67375400756657,41.95233065624031],[-87.67374793422162,41.95211388324486],[-87.67373833234853,41.95176868857591],[-87.6737288446912,41.95142665038567],[-87.67371902783418,41.95107379808758],[-87.67371725174723,41.95099294339416],[-87.67371042130358,41.95068203979079],[-87.67371736610401,41.950577796878214],[-87.6737238164875,41.950480965984674],[-87.67371539509372,41.95015682610941],[-87.67370718089707,41.94984108469679],[-87.67370700621592,41.94983438781423],[-87.67370246168657,41.94966054326955],[-87.67369721619595,41.94945977396399],[-87.6736917274077,41.9492505510775],[-87.6736865178972,41.949046296813485],[-87.67368428630262,41.948959676626785],[-87.67368052949715,41.94882845421176],[-87.67367310949629,41.948748829397175],[-87.67364614052782,41.94845940691989],[-87.67364132127658,41.948274364362646],[-87.67363398446236,41.94799122914167],[-87.67362978341893,41.9478281987147],[-87.67362048778277,41.9475603923709],[-87.6736192959011,41.94742638556248],[-87.6736185696171,41.9474022045909],[-87.67361144175295,41.94716495405873],[-87.67372245248258,41.94692668225788],[-87.67382162367211,41.94692572837848],[-87.67393186896608,41.94692448730532],[-87.67401133438437,41.946923592420774],[-87.67434702156262,41.94691981141099],[-87.674541598168,41.94691530872756],[-87.6746499155722,41.94691280207113],[-87.67473525408226,41.9469108267774],[-87.67479370856516,41.94690947410912],[-87.674884827362,41.94690736501036],[-87.67513157576167,41.94690537702212],[-87.67548089046258,41.94690260412757],[-87.67591696422173,41.94689911953194],[-87.6761292037201,41.94689591643654],[-87.67645218796162,41.94689104147144],[-87.67675791678062,41.9468871920484],[-87.67710802024448,41.94688279962684],[-87.677718412242,41.946875117830146],[-87.67794568744422,41.946872249701634],[-87.67809730098116,41.946870366732284],[-87.6784070738812,41.94686647946579]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1766489.81015","perimeter":"0.0","tract_cent":"1163058.51660707","census_t_1":"17031050700","tract_numa":"17","tract_comm":"5","objectid":"199","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923258.62965035","census_tra":"050700","tract_ce_3":"41.94506921","tract_crea":"","tract_ce_2":"-87.67606274","shape_len":"5307.05353105"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67829526646572,41.943216749129014],[-87.67845292310392,41.943215756074885],[-87.67845848626193,41.94338738253943],[-87.67846266804722,41.94353907920951],[-87.67846661454092,41.94368047274699],[-87.67846691737459,41.9436913251039],[-87.67847417512576,41.9439555521575],[-87.67847874246445,41.944124319758444],[-87.67848463068407,41.944341887590184],[-87.67848865355627,41.94448397857385],[-87.6784932034857,41.94464640692199],[-87.67849948017657,41.94486998678074],[-87.67850365567708,41.94503768626622],[-87.67851036961581,41.9453073395846],[-87.67851638226327,41.9455100341604],[-87.67852366854216,41.94581457380806],[-87.67852755622658,41.945937811227644],[-87.6785358532476,41.946200809206246],[-87.67853968942535,41.94634320094172],[-87.67854097739853,41.94639198862314],[-87.67854262994413,41.94645457794082],[-87.67854810765984,41.94665927270092],[-87.67855254520016,41.946864282594504],[-87.6784070738812,41.94686647946579],[-87.67809730098116,41.946870366732284],[-87.67794568744422,41.946872249701634],[-87.677718412242,41.946875117830146],[-87.67710802024448,41.94688279962684],[-87.67675791678062,41.9468871920484],[-87.67645218796162,41.94689104147144],[-87.6761292037201,41.94689591643654],[-87.67591696422173,41.94689911953194],[-87.67548089046258,41.94690260412757],[-87.67513157576167,41.94690537702212],[-87.674884827362,41.94690736501036],[-87.67479370856516,41.94690947410912],[-87.67473525408226,41.9469108267774],[-87.6746499155722,41.94691280207113],[-87.674541598168,41.94691530872756],[-87.67434702156262,41.94691981141099],[-87.67401133438437,41.946923592420774],[-87.67393186896608,41.94692448730532],[-87.67382162367211,41.94692572837848],[-87.67372245248258,41.94692668225788],[-87.6736526632288,41.94646473025923],[-87.67365145105524,41.946115220152116],[-87.67364539361876,41.945800698362696],[-87.67363550713567,41.945489667149765],[-87.67363193187104,41.94537718868527],[-87.67362047625303,41.945094862799905],[-87.67361161941598,41.944876581779106],[-87.67360735469069,41.94466986326783],[-87.67360633505886,41.944641372181344],[-87.67359959317248,41.94445291590093],[-87.67359067978492,41.94418889833891],[-87.6735841336574,41.94399500989571],[-87.67357972044208,41.943870446823496],[-87.67357894335251,41.94384852348549],[-87.67357716744631,41.94379840966778],[-87.673575819047,41.94376034513811],[-87.67357504992279,41.94373864769438],[-87.67357413965553,41.94371295660584],[-87.67356702465094,41.943419092550094],[-87.67355971293233,41.94327665701997],[-87.67372596033947,41.94327412543453],[-87.67381921277509,41.94327270505679],[-87.67394178252822,41.943271586898256],[-87.67441304512123,41.943267585594825],[-87.67459093743356,41.943265203559655],[-87.67483470762484,41.943261936761914],[-87.67508226440614,41.94325860882942],[-87.67540216933037,41.94325429542094],[-87.67603112709408,41.94324697206854],[-87.67627577025691,41.94324412268265],[-87.67656663329657,41.943240161225276],[-87.67698785475204,41.94323447451834],[-87.67720600205588,41.94323149528079],[-87.67738812151642,41.943229050741266],[-87.67767927886186,41.943225088146086],[-87.67802829908571,41.943220385112085],[-87.67813468913621,41.94321892369857],[-87.67829526646572,41.943216749129014]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1752761.78376","perimeter":"0.0","tract_cent":"1161735.03334812","census_t_1":"17031050800","tract_numa":"8","tract_comm":"5","objectid":"200","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923226.99783767","census_tra":"050800","tract_ce_3":"41.94501015","tract_crea":"","tract_ce_2":"-87.68092822","shape_len":"5297.50091717"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68306620412221,41.94316137809308],[-87.68330078097503,41.94315720426302],[-87.68330771291838,41.943358957133796],[-87.68331490462975,41.943630747158856],[-87.68332141850766,41.943876923211135],[-87.68332757465747,41.94411040852159],[-87.68333298486763,41.944316008366066],[-87.68333702536728,41.94446828033575],[-87.68334400635615,41.944732752486495],[-87.68335223572565,41.94497681116089],[-87.683360786186,41.94523037376266],[-87.68337038311293,41.94555578226632],[-87.68337908879391,41.945849517462875],[-87.68339018906954,41.946225976839635],[-87.68339315994787,41.94632607600014],[-87.68340015723368,41.946561870287475],[-87.68340613713043,41.94680033633595],[-87.68314442250407,41.946804492793916],[-87.68270943875537,41.946809328244704],[-87.6824917263218,41.94681174410171],[-87.6821950125138,41.94681578505923],[-87.6819411437719,41.94681924178333],[-87.68164159264543,41.946822975423665],[-87.68132917355037,41.946826854744735],[-87.68098127819968,41.94683148389107],[-87.68073079943596,41.94683481614729],[-87.68043197793976,41.94683904473702],[-87.6801599943041,41.94684287639107],[-87.67976617585947,41.94684761654427],[-87.67959030374438,41.94684973268855],[-87.67925041964699,41.94685416345852],[-87.67904670940302,41.94685681720397],[-87.67855254520016,41.946864282594504],[-87.67854810765984,41.94665927270092],[-87.67854262994413,41.94645457794082],[-87.67854097739853,41.94639198862314],[-87.67853968942535,41.94634320094172],[-87.6785358532476,41.946200809206246],[-87.67852755622658,41.945937811227644],[-87.67852366854216,41.94581457380806],[-87.67851638226327,41.9455100341604],[-87.67851036961581,41.9453073395846],[-87.67850365567708,41.94503768626622],[-87.67849948017657,41.94486998678074],[-87.6784932034857,41.94464640692199],[-87.67848865355627,41.94448397857385],[-87.67848463068407,41.944341887590184],[-87.67847874246445,41.944124319758444],[-87.67847417512576,41.9439555521575],[-87.67846691737459,41.9436913251039],[-87.67846661454092,41.94368047274699],[-87.67846266804722,41.94353907920951],[-87.67845848626193,41.94338738253943],[-87.67845292310392,41.943215756074885],[-87.67875711258348,41.94321383981641],[-87.67912479750223,41.94320989819565],[-87.67954622684533,41.943205410740795],[-87.67965824375486,41.94320382792672],[-87.68007637720093,41.94319791801526],[-87.68034778542729,41.94319496141218],[-87.68060617977119,41.94319214972038],[-87.68087710997159,41.94318751215765],[-87.68098600496762,41.94318564795984],[-87.68106833391154,41.943184238386905],[-87.6814215020765,41.94318004228539],[-87.68176139943043,41.94317598932323],[-87.68208993820366,41.943171814671054],[-87.6824138486302,41.943167697909736],[-87.68282141429992,41.94316377844443],[-87.68306620412221,41.94316137809308]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1709145.95952","perimeter":"0.0","tract_cent":"1160469.96478981","census_t_1":"17031051000","tract_numa":"8","tract_comm":"5","objectid":"201","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921869.57046792","census_tra":"051000","tract_ce_3":"41.94131162","tract_crea":"","tract_ce_2":"-87.68561582","shape_len":"5259.56915707"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68760865448114,41.93945913279396],[-87.6879110220732,41.939460047795514],[-87.6879134504439,41.93955375976583],[-87.68792660557153,41.939979361261045],[-87.6879388461093,41.94036584122471],[-87.68794204522388,41.94046685082046],[-87.68795535426243,41.94087725563293],[-87.68796991104452,41.941275037990295],[-87.68797359205004,41.94137561586848],[-87.68798974335729,41.94179254998905],[-87.68799868873243,41.94234730535991],[-87.68800963051105,41.94241575521881],[-87.68815346945294,41.94309767712497],[-87.68788159441385,41.94310026838684],[-87.68756581081742,41.94310428327905],[-87.68732509508293,41.94310730862488],[-87.68716345345413,41.943109373755355],[-87.68694165879842,41.94311224847302],[-87.68675602164087,41.943114653781976],[-87.68640214897559,41.943119521212],[-87.68614411535005,41.94312306147963],[-87.68572725621499,41.94312526141075],[-87.68554578865735,41.9431262184787],[-87.68509727246759,41.94313411506984],[-87.68479897231391,41.94313937335706],[-87.68451349719066,41.94314207740397],[-87.68432351029901,41.94314387654104],[-87.68388818531243,41.94314857735573],[-87.6836301225473,41.94315134342703],[-87.68330078097503,41.94315720426302],[-87.68329636035635,41.94302854408866],[-87.68329157196166,41.942892595934126],[-87.68328597813662,41.942683850400115],[-87.68328234980918,41.94254844639721],[-87.68327649085347,41.94232915030547],[-87.68326928616897,41.942061411156985],[-87.68325932552115,41.94168866264562],[-87.68325346947319,41.94146909211512],[-87.68325005668005,41.94133411849895],[-87.68324565531967,41.94116004900362],[-87.68324138259334,41.940987248883],[-87.68323810626386,41.94085386136244],[-87.68323486287959,41.94073894260954],[-87.68322538491951,41.94042505253028],[-87.68321844333616,41.940195165228715],[-87.68321289971406,41.939984624885966],[-87.68321241984418,41.93996651746542],[-87.68320960536039,41.93986029315896],[-87.68320076779827,41.93951301226605],[-87.68341899005219,41.93951013633552],[-87.68369997647562,41.93950708878999],[-87.68426194835463,41.93950093674582],[-87.68460711609538,41.939497179270305],[-87.68514409218601,41.93949132102409],[-87.68534810455265,41.93948912437094],[-87.685623129037,41.93948481647016],[-87.68594311489532,41.93947980287968],[-87.68626197205381,41.9394753981132],[-87.68662156616394,41.939472267196656],[-87.6868111396064,41.939470616137335],[-87.68713124292128,41.93946654939598],[-87.68718590750659,41.939465854856316],[-87.68723174388585,41.93946527252088],[-87.687365216322,41.93946311493573],[-87.68736522294029,41.93946311469854],[-87.68747412197966,41.939461333546184],[-87.68760865448114,41.93945913279396]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1751454.67717","perimeter":"0.0","tract_cent":"1161772.7072535","census_t_1":"17031051100","tract_numa":"8","tract_comm":"5","objectid":"202","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921899.14506237","census_tra":"051100","tract_ce_3":"41.94136566","tract_crea":"","tract_ce_2":"-87.6808269","shape_len":"5293.73073433"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68266592614951,41.93952005874604],[-87.68320076779827,41.93951301226605],[-87.68320960536039,41.93986029315896],[-87.68321241984418,41.93996651746542],[-87.68321289971406,41.939984624885966],[-87.68321844333616,41.940195165228715],[-87.68322538491951,41.94042505253028],[-87.68323486287959,41.94073894260954],[-87.68323810626386,41.94085386136244],[-87.68324138259334,41.940987248883],[-87.68324565531967,41.94116004900362],[-87.68325005668005,41.94133411849895],[-87.68325346947319,41.94146909211512],[-87.68325932552115,41.94168866264562],[-87.68326928616897,41.942061411156985],[-87.68327649085347,41.94232915030547],[-87.68328234980918,41.94254844639721],[-87.68328597813662,41.942683850400115],[-87.68329157196166,41.942892595934126],[-87.68329636035635,41.94302854408866],[-87.68330078097503,41.94315720426302],[-87.68306620412221,41.94316137809308],[-87.68282141429992,41.94316377844443],[-87.6824138486302,41.943167697909736],[-87.68208993820366,41.943171814671054],[-87.68176139943043,41.94317598932323],[-87.6814215020765,41.94318004228539],[-87.68106833391154,41.943184238386905],[-87.68098600496762,41.94318564795984],[-87.68087710997159,41.94318751215765],[-87.68060617977119,41.94319214972038],[-87.68034778542729,41.94319496141218],[-87.68007637720093,41.94319791801526],[-87.67965824375486,41.94320382792672],[-87.67954622684533,41.943205410740795],[-87.67912479750223,41.94320989819565],[-87.67875711258348,41.94321383981641],[-87.67845292310392,41.943215756074885],[-87.67844747930752,41.94304780534017],[-87.67844626653822,41.94300098209425],[-87.67844433002583,41.94292448974218],[-87.67844003040206,41.94275195170687],[-87.67843479784779,41.94254493769356],[-87.6784332504775,41.942484226525224],[-87.67842773413614,41.942302253505915],[-87.67841956550905,41.942032779999394],[-87.67841612722835,41.94189823888427],[-87.67841492686006,41.94185114100345],[-87.67841114442393,41.94170271245817],[-87.67840428470411,41.94139689896104],[-87.67839854956699,41.94114117382452],[-87.6783937845597,41.940945923036374],[-87.6783906278521,41.94080183362558],[-87.6783806573195,41.94048538495752],[-87.6783744251073,41.94028758463167],[-87.6783712428866,41.940117260338596],[-87.67836852009975,41.940027032494896],[-87.67836575347566,41.939935342280506],[-87.6783552217843,41.93957285967569],[-87.67862692716477,41.93956968323835],[-87.67893372454978,41.939565806344014],[-87.67938167865107,41.93956018085175],[-87.67967601413385,41.93955645080576],[-87.67999556654529,41.93955242442573],[-87.68042977269786,41.939546936149824],[-87.68078018137723,41.939543398357905],[-87.6810398899341,41.93954077535317],[-87.68117053543881,41.93953945577573],[-87.6815156378555,41.939534966560075],[-87.68189970407617,41.93952998388761],[-87.68242331141612,41.93952318409225],[-87.68266592614951,41.93952005874604]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3857084.03139","perimeter":"0.0","tract_cent":"1161746.54704224","census_t_1":"17031051400","tract_numa":"12","tract_comm":"5","objectid":"204","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919852.26986955","census_tra":"051400","tract_ce_3":"41.93574946","tract_crea":"","tract_ce_2":"-87.6809803","shape_len":"9038.97984379"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67817167266858,41.933860948830656],[-87.6781635533234,41.93361282495992],[-87.67814601782908,41.93321116307797],[-87.67814582589314,41.933196664812904],[-87.67814310095504,41.9329911740782],[-87.67813972242195,41.9327364320901],[-87.67813935968063,41.93270906986178],[-87.67813534000805,41.93229027877404],[-87.6781352863089,41.9322846810795],[-87.67824661365857,41.932283830306474],[-87.6785642626881,41.93227914140101],[-87.6787511014429,41.932275788802926],[-87.67886000199698,41.9322749853448],[-87.67921695332895,41.93227235151802],[-87.67953804985642,41.932268307984984],[-87.68003513156948,41.932262081170094],[-87.68041892875796,41.93225762325624],[-87.68069231028811,41.93225478566121],[-87.68098774499637,41.93225171815986],[-87.6812846463944,41.932248904109734],[-87.68157916962365,41.93224511531487],[-87.6820762471591,41.9322392641037],[-87.68233481792811,41.932236394570914],[-87.68252219883344,41.93223394422778],[-87.68271179125409,41.93223082005502],[-87.68284015971246,41.93222871287953],[-87.68284013274,41.93223006535352],[-87.68283853599296,41.93231125782308],[-87.68284108068198,41.93232839618213],[-87.68305815229893,41.9327569559364],[-87.68338047294868,41.933287757036446],[-87.68341163184654,41.933339058253],[-87.68340740033236,41.933346800446316],[-87.68340676382104,41.93335881653165],[-87.68341335632161,41.933375538712355],[-87.6834334374905,41.93339579496135],[-87.6834804060838,41.93342473791622],[-87.68353065326622,41.933442063909524],[-87.68389135754714,41.93352654139254],[-87.68398307279953,41.93354991920926],[-87.68408945945858,41.93356169008117],[-87.68420392310392,41.933596036024156],[-87.68426865133691,41.93361692872357],[-87.6843060979356,41.933613627799836],[-87.68436480236971,41.933612395415295],[-87.68440471544653,41.933619563882324],[-87.6844477519622,41.93362677742962],[-87.68447579247987,41.933626908453014],[-87.68455417388266,41.93363509007742],[-87.68458828885412,41.93365232445158],[-87.68462606920858,41.93366686274581],[-87.6846556462306,41.933671283391114],[-87.68468990096477,41.933671065279114],[-87.68473977424989,41.933670935385386],[-87.68481093718977,41.93366977314882],[-87.68487484101549,41.93367049055127],[-87.68493402922401,41.93367233440991],[-87.68500147558744,41.93367889004463],[-87.68505850357924,41.93369081982569],[-87.68510354463868,41.93370696316338],[-87.68515840458302,41.93372972060199],[-87.68520797185013,41.93375985753497],[-87.68525762304935,41.93378530230235],[-87.6853032608531,41.93379329859352],[-87.6854816347735,41.933797522793306],[-87.68552109805015,41.9349318978509],[-87.68500415192744,41.93493874917142],[-87.68480191307302,41.934941448937714],[-87.68430393375844,41.934947197052566],[-87.68396687653484,41.9349509443649],[-87.68369572369458,41.9349539606919],[-87.68308544705577,41.93496074754992],[-87.68309214406851,41.935217671658826],[-87.68309475754268,41.935325781291255],[-87.68310069733647,41.93557320636845],[-87.68310859655416,41.93587160214564],[-87.68311638755934,41.93616697975018],[-87.68311986885048,41.93631351307985],[-87.68312698479775,41.936610697748876],[-87.68312707672865,41.936614528376666],[-87.68313292012289,41.936858616704086],[-87.68314155543331,41.93720248884348],[-87.68314677601364,41.937412231637204],[-87.68315326147093,41.93769164797652],[-87.68315853608804,41.937918908230635],[-87.683163543931,41.93808081833371],[-87.68316560931349,41.93814759632406],[-87.68316766617124,41.93821412838336],[-87.68317426330555,41.93842582732967],[-87.68317821641428,41.93858968587794],[-87.68317850538445,41.93860165477707],[-87.68318492815493,41.93886663666245],[-87.68318946018573,41.939056186281],[-87.68318972639004,41.93906732108226],[-87.68319405394261,41.939249177492435],[-87.68320076779827,41.93951301226605],[-87.68266592614951,41.93952005874604],[-87.68242331141612,41.93952318409225],[-87.68189970407617,41.93952998388761],[-87.6815156378555,41.939534966560075],[-87.68117053543881,41.93953945577573],[-87.6810398899341,41.93954077535317],[-87.68078018137723,41.939543398357905],[-87.68042977269786,41.939546936149824],[-87.67999556654529,41.93955242442573],[-87.67967601413385,41.93955645080576],[-87.67938167865107,41.93956018085175],[-87.67893372454978,41.939565806344014],[-87.67862692716477,41.93956968323835],[-87.6783552217843,41.93957285967569],[-87.67834917284118,41.939364669930704],[-87.67834332104901,41.93915352385891],[-87.6783422751274,41.93911526157182],[-87.67833807857163,41.93896178287731],[-87.67832766374683,41.93866027438768],[-87.67831698304948,41.938351101409296],[-87.67831131038257,41.93817996702681],[-87.67830570713927,41.93800916234132],[-87.67829716133576,41.93775109090024],[-87.67828911381046,41.93750808311155],[-87.6782813890586,41.93726446217423],[-87.67827597015568,41.93709368595442],[-87.67826696624336,41.936840425766235],[-87.67826033118199,41.936653780733295],[-87.67825215871915,41.93639646327518],[-87.6782479054843,41.9362626311469],[-87.67824393859297,41.93613928329302],[-87.67823722458128,41.935930305052864],[-87.67823126500525,41.93574464709711],[-87.67822497699117,41.9355510065214],[-87.67821890932376,41.935364639653095],[-87.67821603439936,41.9352720362909],[-87.67820340433838,41.935017573667785],[-87.67819942271302,41.934934426604464],[-87.67819105703967,41.93448059463085],[-87.67818821375529,41.934392159905066],[-87.67818537573197,41.934303175815],[-87.6781793549749,41.93410886794747],[-87.67817167266858,41.933860948830656]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3097063.63685","perimeter":"0.0","tract_cent":"1160187.00544352","census_t_1":"17031051500","tract_numa":"12","tract_comm":"5","objectid":"205","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1920458.93927724","census_tra":"051500","tract_ce_3":"41.93744662","tract_crea":"","tract_ce_2":"-87.68669491","shape_len":"8293.10718709"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68320076779827,41.93951301226605],[-87.68319405394261,41.939249177492435],[-87.68318972639004,41.93906732108226],[-87.68318946018573,41.939056186281],[-87.68318492815493,41.93886663666245],[-87.68317850538445,41.93860165477707],[-87.68317821641428,41.93858968587794],[-87.68317426330555,41.93842582732967],[-87.68316766617124,41.93821412838336],[-87.68316560931349,41.93814759632406],[-87.683163543931,41.93808081833371],[-87.68315853608804,41.937918908230635],[-87.68315326147093,41.93769164797652],[-87.68314677601364,41.937412231637204],[-87.68314155543331,41.93720248884348],[-87.68313292012289,41.936858616704086],[-87.68312707672865,41.936614528376666],[-87.68312698479775,41.936610697748876],[-87.68311986885048,41.93631351307985],[-87.68311638755934,41.93616697975018],[-87.68310859655416,41.93587160214564],[-87.68310069733647,41.93557320636845],[-87.68309475754268,41.935325781291255],[-87.68309214406851,41.935217671658826],[-87.68308544705577,41.93496074754992],[-87.68369572369458,41.9349539606919],[-87.68396687653484,41.9349509443649],[-87.68430393375844,41.934947197052566],[-87.68480191307302,41.934941448937714],[-87.68500415192744,41.93493874917142],[-87.68552109805015,41.9349318978509],[-87.6854816347735,41.933797522793306],[-87.68549344247606,41.93379780209395],[-87.68566981686197,41.933902857979525],[-87.68579964496104,41.933962563547425],[-87.68588382827332,41.93400765931419],[-87.68596769200943,41.93403348878648],[-87.68629348956019,41.934354176256136],[-87.68660220336936,41.93466738460837],[-87.68682507052986,41.934907386924785],[-87.68681555731871,41.934921383767026],[-87.6868179229236,41.93493824660138],[-87.68682714409599,41.93496044438331],[-87.68685318799956,41.93499453703432],[-87.6868842607217,41.93505472808737],[-87.68692443156125,41.93513475618261],[-87.68696522023254,41.93517908543338],[-87.68700385148959,41.93522233227895],[-87.68701415616289,41.935246429656225],[-87.68702797780655,41.93527164451768],[-87.6870644160537,41.93530277698605],[-87.68709989900672,41.935337526436854],[-87.68714399704712,41.93538168215377],[-87.68722685245598,41.935463981082535],[-87.68740070063103,41.935616156172436],[-87.68747039716382,41.935702259848895],[-87.6876730909634,41.93589881577012],[-87.68778851222827,41.93598094066517],[-87.68782492113813,41.93601141411165],[-87.68787000639244,41.936037984645445],[-87.68789436279215,41.93604270441405],[-87.68792136147366,41.93606239530414],[-87.68795530084827,41.93608264605413],[-87.68798678784357,41.936103941181365],[-87.68799728059169,41.93611103770931],[-87.68804301837692,41.936138517435104],[-87.68808023980114,41.93616143751019],[-87.68814979877506,41.9361953740195],[-87.68844238473567,41.93639676952883],[-87.68846644974543,41.93641218999708],[-87.6884874204835,41.93642830657911],[-87.68852681819654,41.93644672201983],[-87.68856318735234,41.93645562543886],[-87.68859986978086,41.93646269197816],[-87.68862602334981,41.93646050624898],[-87.68866064294419,41.93646070063607],[-87.68870661228691,41.93646888953077],[-87.68874853624965,41.936473680305774],[-87.68877811597505,41.93648528948597],[-87.68882512155544,41.93648182121581],[-87.68885870991679,41.9364822295665],[-87.68887407358383,41.93649310086147],[-87.68891239098973,41.9364983650184],[-87.68897701172831,41.936497520233885],[-87.68902688502067,41.936497608018485],[-87.68915417543555,41.93650718608165],[-87.6892483671422,41.93651517878334],[-87.6893153252193,41.93652315586606],[-87.68937164270747,41.93653293930096],[-87.6894114489968,41.93653634584678],[-87.689431013217,41.93654981991726],[-87.6894498527909,41.93655129767961],[-87.6894758919756,41.93654952274839],[-87.68952230719697,41.93655724729955],[-87.68958102604095,41.93656218682758],[-87.68968774326466,41.93657823507597],[-87.68974926519016,41.93658947449521],[-87.68981015565285,41.936601451281646],[-87.68985690110055,41.93660558262032],[-87.68991862748534,41.93660749274699],[-87.6899336877771,41.93660834552302],[-87.68998633454086,41.93661772389595],[-87.690024817466,41.936628477323396],[-87.69007236047057,41.9366483374231],[-87.69011465153405,41.93667513839968],[-87.69014925684209,41.93669871301149],[-87.69019647896064,41.93673588728955],[-87.690232232698,41.9367695395959],[-87.69028503497363,41.93680369900813],[-87.69032155047253,41.936831043847135],[-87.69036736925251,41.93686524643773],[-87.69041339021804,41.936904938581684],[-87.69071708152168,41.9373994456849],[-87.6907810712927,41.937542091595546],[-87.69080072417105,41.93760918248797],[-87.69086436817912,41.937826447226875],[-87.69087243021217,41.937854455934286],[-87.6908838888938,41.93787361981829],[-87.69089872964558,41.937911024515905],[-87.69092618386661,41.9379660622405],[-87.69096524455098,41.93804385986198],[-87.69099027985148,41.93809822569864],[-87.69102039912373,41.93816236194896],[-87.69105685595747,41.93823965101082],[-87.69111473947846,41.93832068228071],[-87.69119812221955,41.938420873572205],[-87.69122665621208,41.93846724580164],[-87.6912673416552,41.93851870789774],[-87.69132019067516,41.93858508421957],[-87.69137883162193,41.93864559282927],[-87.69138507487922,41.938653421318214],[-87.69138971475712,41.9386635734284],[-87.6913970296058,41.938681753613736],[-87.69141191984704,41.93869231978082],[-87.6914279121488,41.938699242295996],[-87.69144128915423,41.938717730792085],[-87.69145521072745,41.93874055819696],[-87.69147170113328,41.93876378415146],[-87.69147291415115,41.9387747678086],[-87.69148630576944,41.938791801944866],[-87.69150904448941,41.938804031062915],[-87.69152806956112,41.938816404070856],[-87.69155332087666,41.93883830687589],[-87.69158594461696,41.93886173276091],[-87.6916240193661,41.93889136359521],[-87.69166962942259,41.93892460401369],[-87.69171028066474,41.93893921089855],[-87.69175416983728,41.93894980186049],[-87.69178010487178,41.9389585087429],[-87.69178120690025,41.93895856978505],[-87.69181850335144,41.93897052343593],[-87.6918682945894,41.938993660969125],[-87.69190251550519,41.93900076731023],[-87.69191938357727,41.93901200334743],[-87.6919351949898,41.939029654677086],[-87.69195394837665,41.93903247621473],[-87.69198434062619,41.93904386984192],[-87.69201128821736,41.939057906112716],[-87.69204967965243,41.939070634185924],[-87.6920790880502,41.9390848488383],[-87.69212749168805,41.939118104676595],[-87.69218832541546,41.93915433877813],[-87.692233593045,41.93917778019831],[-87.69226739647262,41.93919355610542],[-87.69231549221834,41.9392025238084],[-87.69234275890746,41.939217741796824],[-87.69235642233788,41.93923702760762],[-87.69237183239377,41.939254402214175],[-87.6923947765078,41.939271846318604],[-87.69243161626824,41.939296365742734],[-87.69244347434147,41.93931245817166],[-87.69244896628838,41.93934031520544],[-87.69244422962682,41.93936183088329],[-87.69243859978691,41.939380816893944],[-87.69247171990476,41.93939510704822],[-87.69252670299586,41.939413690428665],[-87.69256665973063,41.93942656948978],[-87.69239038874208,41.93942739158624],[-87.69211544907809,41.93942865554622],[-87.69188814850324,41.939429928694835],[-87.69164444474295,41.93943129303323],[-87.69138537984026,41.939432890945206],[-87.69082188841995,41.939436681612726],[-87.69059839307701,41.93943919522794],[-87.69031843573725,41.93944234308312],[-87.69012231147023,41.93944232658391],[-87.68975641548985,41.9394422951284],[-87.68951304835232,41.939443620056544],[-87.68916230506353,41.939446317924094],[-87.68892703506776,41.9394501568352],[-87.68870515736417,41.93946356545147],[-87.68858334190048,41.93946447310471],[-87.68848869621418,41.9394647099614],[-87.68835905766213,41.939461402227074],[-87.68816481909498,41.93946081696513],[-87.68813539029159,41.939460728159524],[-87.68805208736039,41.93946047433781],[-87.68796583086962,41.93946021373319],[-87.6879110220732,41.939460047795514],[-87.68760865448114,41.93945913279396],[-87.68747412197966,41.939461333546184],[-87.68736522294029,41.93946311469854],[-87.687365216322,41.93946311493573],[-87.68723174388585,41.93946527252088],[-87.68718590750659,41.939465854856316],[-87.68713124292128,41.93946654939598],[-87.6868111396064,41.939470616137335],[-87.68662156616394,41.939472267196656],[-87.68626197205381,41.9394753981132],[-87.68594311489532,41.93947980287968],[-87.685623129037,41.93948481647016],[-87.68534810455265,41.93948912437094],[-87.68514409218601,41.93949132102409],[-87.68460711609538,41.939497179270305],[-87.68426194835463,41.93950093674582],[-87.68369997647562,41.93950708878999],[-87.68341899005219,41.93951013633552],[-87.68320076779827,41.93951301226605]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3504130.23063","perimeter":"0.0","tract_cent":"1165594.40029268","census_t_1":"17031060100","tract_numa":"14","tract_comm":"6","objectid":"206","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927819.57957101","census_tra":"060100","tract_ce_3":"41.95753092","tract_crea":"","tract_ce_2":"-87.66661144","shape_len":"8247.21507608"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66883040877501,41.95429312737537],[-87.6690488603737,41.9542903539856],[-87.66905564966672,41.95448162054181],[-87.66906852348937,41.95497664076227],[-87.66908308593335,41.955535610796055],[-87.66909582250382,41.95602267192244],[-87.66909918618863,41.95612820266993],[-87.66910824581822,41.95641242153318],[-87.6691157659368,41.95666844487938],[-87.66911805503408,41.95674589970558],[-87.66913209883386,41.95722391240044],[-87.66914687240961,41.95773079835184],[-87.66915236302141,41.957949885472665],[-87.66915578854177,41.95808658169438],[-87.66917031246575,41.9585856725721],[-87.66918631320854,41.95913375606205],[-87.66920116897441,41.95964341396605],[-87.66920478252752,41.9597686020272],[-87.66920949744465,41.95993190581721],[-87.6692232869196,41.960427397370275],[-87.66923777104638,41.96094813960386],[-87.6692513069845,41.96143624768409],[-87.66925813531226,41.961591566482575],[-87.66906251647245,41.9615944841455],[-87.66877590093087,41.961599137098894],[-87.66859975356245,41.96160243506597],[-87.66848334100676,41.961604614398],[-87.66799728456975,41.961608567991476],[-87.66783424067366,41.96161003788868],[-87.6677261114582,41.96161179438608],[-87.66750059150463,41.96161545780562],[-87.66714301504268,41.961620024417456],[-87.66694878240381,41.96162249619758],[-87.66683217658888,41.961623983388534],[-87.66631611461447,41.961630151630466],[-87.66615519748962,41.96163223522465],[-87.66595356280655,41.96163462717876],[-87.66590570187012,41.96147274618392],[-87.66583424320278,41.961291405183516],[-87.66577840201508,41.96114964408129],[-87.6656723446202,41.96088042437477],[-87.66561348095193,41.96073093383524],[-87.66558115322438,41.96064883177869],[-87.66546632109194,41.960350362733465],[-87.66544607481306,41.96029774524941],[-87.66539594739818,41.96016746326769],[-87.66531383396801,41.95995395269088],[-87.66526883383953,41.95983873434657],[-87.6651863545839,41.95962755576187],[-87.66512224037298,41.959472080002705],[-87.66508414332915,41.959379709962796],[-87.66505525722386,41.95930967210089],[-87.66500154235396,41.95917944862677],[-87.66495062286482,41.95905610191857],[-87.66489614100466,41.958925078927756],[-87.66484546746024,41.95880321464905],[-87.66478741492058,41.958665968077185],[-87.66471422061277,41.958492986028254],[-87.66468357977458,41.95842055257829],[-87.66464496847546,41.95832976882794],[-87.66456872388682,41.95816025405553],[-87.66450543073346,41.958027587893454],[-87.6644711903031,41.95795581864044],[-87.6643374815989,41.95775117234565],[-87.66425807260366,41.95762074388323],[-87.66422533813173,41.95756697600622],[-87.66404966497039,41.95727842401929],[-87.66394433926064,41.95710920578599],[-87.66380872663697,41.956893598356544],[-87.66375831759068,41.9568132283633],[-87.66370664015632,41.95673114953956],[-87.66364844288694,41.95663668372112],[-87.66350136540945,41.956397265867416],[-87.66337728796461,41.95619528736144],[-87.66329427467247,41.95606047936604],[-87.66307139149541,41.95569852890761],[-87.66287968532953,41.955384487358074],[-87.66224996120182,41.95437810528629],[-87.6626832495455,41.9543750353776],[-87.6630927010585,41.95436965620479],[-87.66355062047478,41.95436363875322],[-87.66421530892374,41.95435490078527],[-87.66493047089956,41.95434549510038],[-87.6658453255718,41.95433191000992],[-87.66621287003515,41.95432644482542],[-87.666791124677,41.95431921873794],[-87.66751934153308,41.954310114480094],[-87.66784549145711,41.9543060354336],[-87.66883040877501,41.95429312737537]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3426209.31815","perimeter":"0.0","tract_cent":"1164258.78613054","census_t_1":"17031060200","tract_numa":"12","tract_comm":"6","objectid":"207","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927945.14805122","census_tra":"060200","tract_ce_3":"41.9579039","tract_crea":"","tract_ce_2":"-87.67151801","shape_len":"7898.12941202"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67264102262239,41.954239700423074],[-87.67379365827884,41.95422191493596],[-87.67379298492114,41.954279880047125],[-87.67379204047283,41.95436117899491],[-87.6738003257025,41.954638007660996],[-87.67380949332984,41.95494332628515],[-87.67382162958333,41.955349429341226],[-87.67383112778398,41.955665562012626],[-87.67384050863035,41.95597878512963],[-87.67384267921453,41.95606732580542],[-87.67384677178622,41.956234252149066],[-87.67385577217979,41.95653446549572],[-87.67386083677026,41.95670293416624],[-87.67387446130236,41.957157261399814],[-87.67388717313862,41.95765027670113],[-87.67389497993543,41.95779527066045],[-87.67388599304974,41.95787756781088],[-87.6738766695827,41.95796294641915],[-87.67387828191796,41.9580205566241],[-87.6738939109939,41.95856583833965],[-87.67390851057593,41.95907541193868],[-87.67392289580664,41.95957730047756],[-87.67392550613712,41.95970497630408],[-87.67392827284094,41.959840308817284],[-87.67393797370087,41.96017963095669],[-87.6739473384217,41.960508770134545],[-87.67395902326311,41.96092310281867],[-87.67397265643254,41.96140531090727],[-87.67397665771156,41.961525435762496],[-87.67384475539555,41.96152877881208],[-87.67319586578722,41.961538156127425],[-87.67306351086673,41.961540067865805],[-87.6725786201102,41.96154710241384],[-87.6724189890399,41.96154844863162],[-87.67229625640876,41.961549483494466],[-87.67164338581723,41.96155897729878],[-87.67162332898909,41.96155926893898],[-87.67099772216798,41.961568371208806],[-87.6708383260223,41.961570244020315],[-87.67070479502125,41.96157181255672],[-87.67014694338398,41.96158017199225],[-87.67004655861571,41.961581009999676],[-87.66981276959368,41.961582961160914],[-87.66947481938594,41.96158833451645],[-87.66937471053839,41.961589827750736],[-87.66925813531226,41.961591566482575],[-87.6692513069845,41.96143624768409],[-87.66923777104638,41.96094813960386],[-87.6692232869196,41.960427397370275],[-87.66920949744465,41.95993190581721],[-87.66920478252752,41.9597686020272],[-87.66920116897441,41.95964341396605],[-87.66918631320854,41.95913375606205],[-87.66917031246575,41.9585856725721],[-87.66915578854177,41.95808658169438],[-87.66915236302141,41.957949885472665],[-87.66914687240961,41.95773079835184],[-87.66913209883386,41.95722391240044],[-87.66911805503408,41.95674589970558],[-87.6691157659368,41.95666844487938],[-87.66910824581822,41.95641242153318],[-87.66909918618863,41.95612820266993],[-87.66909582250382,41.95602267192244],[-87.66908308593335,41.955535610796055],[-87.66906852348937,41.95497664076227],[-87.66905564966672,41.95448162054181],[-87.6690488603737,41.9542903539856],[-87.66912823348929,41.954289322006424],[-87.66925865000353,41.95428762667441],[-87.66956908967434,41.95428321997314],[-87.6696816759909,41.95428162085307],[-87.66983559052485,41.95427943446416],[-87.67008539828099,41.954275885598285],[-87.67027770515477,41.954272607570964],[-87.67045214181658,41.954269633834095],[-87.67062293367525,41.95426719806345],[-87.6708260814079,41.95426430057062],[-87.67125275051137,41.95425792551814],[-87.67144350062391,41.95425586404554],[-87.67163358891206,41.95425380941841],[-87.67200694103552,41.95424838632154],[-87.67220571091491,41.95424583932183],[-87.67264102262239,41.954239700423074]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3498398.68384","perimeter":"0.0","tract_cent":"1165634.28644717","census_t_1":"17031060400","tract_numa":"14","tract_comm":"6","objectid":"208","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1925320.81770846","census_tra":"060400","tract_ce_3":"41.95067336","tract_crea":"","tract_ce_2":"-87.66653628","shape_len":"7949.71775927"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66866636417177,41.94699016605978],[-87.66885813120058,41.94699011581803],[-87.66887476788804,41.94769315009569],[-87.66889354441712,41.948214255888175],[-87.66889744780478,41.94838701846202],[-87.66890712179061,41.94881388052146],[-87.66891708577229,41.949253535002406],[-87.66891998404351,41.94936386912363],[-87.66892623644262,41.94960432576995],[-87.66893157811826,41.94980685212016],[-87.66893264458261,41.949847417476754],[-87.66894167003646,41.950192472353606],[-87.66895078093316,41.95053999722023],[-87.66895552385496,41.95064004159095],[-87.66896453195012,41.950830030234314],[-87.668970654609,41.95109702259539],[-87.66897505806088,41.951289060573906],[-87.66898586191759,41.951760331666904],[-87.6689900762926,41.95194449291657],[-87.6689995428352,41.95235810006512],[-87.66900074042982,41.95246573331139],[-87.66900300412559,41.952669094100585],[-87.66901205993803,41.95299315549282],[-87.66901565469416,41.95312179745748],[-87.66902955802628,41.95361679631247],[-87.66903352889983,41.95376508898671],[-87.66904370369126,41.95414508379794],[-87.6690488603737,41.9542903539856],[-87.66883040877501,41.95429312737537],[-87.66784549145711,41.9543060354336],[-87.66751934153308,41.954310114480094],[-87.666791124677,41.95431921873794],[-87.66621287003515,41.95432644482542],[-87.6658453255718,41.95433191000992],[-87.66493047089956,41.95434549510038],[-87.66421530892374,41.95435490078527],[-87.66421100385719,41.95408944060569],[-87.66420374062487,41.95383103088661],[-87.6641988935734,41.953658583905415],[-87.66418250297937,41.953056683022965],[-87.66418109758658,41.95300508367232],[-87.66417938666783,41.95294269724379],[-87.66416875517479,41.95253343201862],[-87.66416152835868,41.95225409865488],[-87.66415452672472,41.95200856100069],[-87.66414643427362,41.95172476239896],[-87.66413379865041,41.95128163555587],[-87.664125429035,41.95097637529289],[-87.66411816346428,41.95071135186686],[-87.66410732230577,41.95031593035535],[-87.66409167876317,41.949778741992716],[-87.66408373846627,41.949506058224884],[-87.66407044289491,41.948977747277965],[-87.66406721640152,41.94888904896713],[-87.66405179937648,41.94846523921418],[-87.66403277300869,41.947771473598834],[-87.6640272546765,41.94754318793354],[-87.66402079147532,41.94727577140389],[-87.66401530118848,41.947067933839634],[-87.66463339112525,41.9470573374343],[-87.66474464472131,41.94705542994331],[-87.66522994322408,41.947048501214056],[-87.66557207297576,41.947043615691825],[-87.66618715928277,41.94703371709975],[-87.66643904156136,41.94702928588182],[-87.66672306099758,41.947024288792655],[-87.66720461136266,41.94701687523681],[-87.66765237033619,41.94700956258811],[-87.66825316902712,41.94699974763568],[-87.66866636417177,41.94699016605978]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2455633.63743","perimeter":"0.0","tract_cent":"1167269.49821176","census_t_1":"17031060500","tract_numa":"7","tract_comm":"6","objectid":"209","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1926079.12278207","census_tra":"060500","tract_ce_3":"41.95271911","tract_crea":"","tract_ce_2":"-87.6605035","shape_len":"6450.01140285"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66350677055925,41.950985438157446],[-87.664125429035,41.95097637529289],[-87.66413379865041,41.95128163555587],[-87.66414643427362,41.95172476239896],[-87.66415452672472,41.95200856100069],[-87.66416152835868,41.95225409865488],[-87.66416875517479,41.95253343201862],[-87.66417938666783,41.95294269724379],[-87.66418109758658,41.95300508367232],[-87.66418250297937,41.953056683022965],[-87.6641988935734,41.953658583905415],[-87.66420374062487,41.95383103088661],[-87.66421100385719,41.95408944060569],[-87.66421530892374,41.95435490078527],[-87.66355062047478,41.95436363875322],[-87.6630927010585,41.95436965620479],[-87.6626832495455,41.9543750353776],[-87.66224996120182,41.95437810528629],[-87.66131592499143,41.954394097720424],[-87.65982136874229,41.95441239773231],[-87.65963825750458,41.95441513783881],[-87.65929492684714,41.954420274356664],[-87.65832614380845,41.95443476322588],[-87.65746945998576,41.954447039205725],[-87.65708834392599,41.954449554552575],[-87.65686300330515,41.95445104149549],[-87.65684797282792,41.95397192342935],[-87.65684108942402,41.95375251101557],[-87.65683293883096,41.95347820637876],[-87.65682204798549,41.95311170838752],[-87.65681631981963,41.952910441427925],[-87.65681065347081,41.95270579972111],[-87.65682431897514,41.95264355922849],[-87.65684000634148,41.95257211037455],[-87.6568362743191,41.95221586214927],[-87.65683150781278,41.951967839476225],[-87.65682137917307,41.95160461121757],[-87.65680645268283,41.951086731818066],[-87.65698451834862,41.95108393904805],[-87.65727895416913,41.9510793203474],[-87.6575694638731,41.95107406911674],[-87.65829472462481,41.95106095601346],[-87.65882839493172,41.95105374686517],[-87.65926948932457,41.95104756637818],[-87.6596076613731,41.95104282636113],[-87.65967377950841,41.95104189930807],[-87.66001519773532,41.95103710661137],[-87.6604688662495,41.95103074772943],[-87.66110023035007,41.95102189527956],[-87.66133182457553,41.95101864710417],[-87.6617005600538,41.951011827360766],[-87.6623080118957,41.95100059020138],[-87.66291193941557,41.95099301609571],[-87.6634166137012,41.95098675870901],[-87.66350677055925,41.950985438157446]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"779435.808441","perimeter":"0.0","tract_cent":"1168586.07612556","census_t_1":"17031060600","tract_numa":"6","tract_comm":"6","objectid":"210","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1926111.56261521","census_tra":"060600","tract_ce_3":"41.95277966","tract_crea":"","tract_ce_2":"-87.65566278","shape_len":"3726.51560442"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65670405459652,41.951088337749304],[-87.65680645268283,41.951086731818066],[-87.65682137917307,41.95160461121757],[-87.65683150781278,41.951967839476225],[-87.6568362743191,41.95221586214927],[-87.65684000634148,41.95257211037455],[-87.65682431897514,41.95264355922849],[-87.65681065347081,41.95270579972111],[-87.65681631981963,41.952910441427925],[-87.65682204798549,41.95311170838752],[-87.65683293883096,41.95347820637876],[-87.65684108942402,41.95375251101557],[-87.65684797282792,41.95397192342935],[-87.65686300330515,41.95445104149549],[-87.65677399696621,41.954451627329945],[-87.65668017316314,41.95445224480079],[-87.65659023553519,41.95445283680408],[-87.65613555630691,41.95446205220996],[-87.65567984810629,41.95447128663458],[-87.65542977922142,41.954475052605986],[-87.65454473815764,41.95448837667953],[-87.65453198739468,41.95402010842552],[-87.6545307838812,41.95397530016769],[-87.6545294049226,41.95392398654662],[-87.65452777093887,41.95386316959141],[-87.6545261660581,41.95381097401666],[-87.6545190975725,41.953581068711905],[-87.65451692081356,41.95351025495499],[-87.65450566088616,41.9531440010128],[-87.65450033377418,41.95298776908183],[-87.65449060223531,41.95267441550092],[-87.65447797466834,41.952267830538794],[-87.65447351376078,41.95212996247286],[-87.6544626936285,41.9517955713257],[-87.65445575160507,41.95149706992446],[-87.65444445190778,41.95112446523655],[-87.655059939801,41.951114969534345],[-87.65565257442778,41.95110521763902],[-87.65615588466808,41.951096933099514],[-87.65624453201556,41.95109554321289],[-87.65649370685566,41.95109163625737],[-87.65670405459652,41.951088337749304]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1985283.60573","perimeter":"0.0","tract_cent":"1171210.76966025","census_t_1":"17031060800","tract_numa":"12","tract_comm":"6","objectid":"211","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1926358.5484611","census_tra":"060800","tract_ce_3":"41.95340004","tract_crea":"","tract_ce_2":"-87.64600707","shape_len":"6593.19584955"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64097666789435,41.9546615883687],[-87.64095214347222,41.95459349771193],[-87.64095043423153,41.95458875172341],[-87.6409504001347,41.95458864120061],[-87.64089103843283,41.95439731399479],[-87.64084524792032,41.95424972842035],[-87.64081995091087,41.954227324144476],[-87.64081149187373,41.95421983247296],[-87.6408088600878,41.9542160531904],[-87.6407815177912,41.95417678712783],[-87.64076035281643,41.95411932552612],[-87.64074019679958,41.95406460186637],[-87.64071372532301,41.95400365794943],[-87.64066980930305,41.95389606919595],[-87.64066813503229,41.953891967753904],[-87.64064802108616,41.95380278200703],[-87.64188555919476,41.95344205245444],[-87.64431712588896,41.9525827638303],[-87.64458396892273,41.952451051244644],[-87.64467336935154,41.952436247396506],[-87.64480662461605,41.952403448164965],[-87.64488390683164,41.95238674246174],[-87.64503223798586,41.952352315493215],[-87.64534100415509,41.95227447240612],[-87.64558528894351,41.95221301128261],[-87.64606246570129,41.95209295557787],[-87.6462296359676,41.95205070741787],[-87.64671905528324,41.951926962676815],[-87.64698232396901,41.95186042582097],[-87.64749942043609,41.95172998239976],[-87.64784897414523,41.95164199072948],[-87.64815024407514,41.95156619710036],[-87.64834542259558,41.9515172250327],[-87.64872048188104,41.95142308545852],[-87.64890604360497,41.951376085805535],[-87.6490205729561,41.95134702153555],[-87.64908297902896,41.95133117190626],[-87.64924966980507,41.95128883744615],[-87.64937352523135,41.95125744037921],[-87.64961999005963,41.95119789607549],[-87.64961510782702,41.95146867420237],[-87.64962146451448,41.95169255730052],[-87.6496263059899,41.95186215088752],[-87.6496331516877,41.952102200279946],[-87.64964009148514,41.95233341386612],[-87.64964633064317,41.952527027594115],[-87.64965369218041,41.952747542902216],[-87.64966050534674,41.95295164126867],[-87.64966805544489,41.9531223211886],[-87.64966897154144,41.953193291631244],[-87.64967425816194,41.95360305527697],[-87.64967668155707,41.953790916878994],[-87.649682766072,41.95399901906083],[-87.64968696842598,41.95414591416257],[-87.64969219414438,41.95433117939767],[-87.64969983417441,41.954561232144975],[-87.6492862011736,41.95456970270417],[-87.6490482620597,41.95457360854644],[-87.64869641007718,41.95457930444501],[-87.6484068825047,41.95458405387719],[-87.64821030914055,41.954587326882724],[-87.64800026398557,41.954590953268415],[-87.64793629594789,41.95459205766648],[-87.64664819625304,41.95461381694081],[-87.64615829528476,41.95462300416055],[-87.64580641203142,41.954628141897075],[-87.64555785026944,41.954631785070056],[-87.64525641674277,41.9546369755329],[-87.64509528271029,41.95463974978479],[-87.64494056979214,41.95464395993716],[-87.64482037001414,41.95464753878194],[-87.6446499607063,41.95465261296153],[-87.6445732390348,41.95465489747564],[-87.64445782701334,41.95465833369917],[-87.64430883972365,41.95466276972387],[-87.64418574980049,41.95465939484591],[-87.64411408588342,41.954657429544845],[-87.64399618363737,41.95465419702111],[-87.64102430175656,41.95480280635886],[-87.6410125014911,41.95476107784392],[-87.64097666789435,41.9546615883687]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2531147.73204","perimeter":"0.0","tract_cent":"1164477.08636678","census_t_1":"17031031800","tract_numa":"8","tract_comm":"3","objectid":"226","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1931265.97598114","census_tra":"031800","tract_ce_3":"41.96701176","tract_crea":"","tract_ce_2":"-87.67062104","shape_len":"6484.05872985"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66749666128202,41.96890048871616],[-87.66748147261787,41.96878375935888],[-87.66738757410329,41.968340849117055],[-87.66731046526216,41.96797717928203],[-87.66730214170981,41.96793788887988],[-87.66727405041465,41.96780529035641],[-87.66720314514664,41.96747093679068],[-87.66714391521238,41.96719137034356],[-87.66711910360448,41.967077704401326],[-87.66708390172279,41.96691643701099],[-87.66697096932913,41.96638455849161],[-87.66685473922944,41.965837594712426],[-87.66684005872403,41.96576986538839],[-87.66675664779342,41.96538505495742],[-87.66673383383709,41.96527106460648],[-87.66695259293215,41.965268713070635],[-87.66702794662847,41.96526752092607],[-87.66760609991312,41.96525837182345],[-87.66779924365657,41.96525555976359],[-87.66799297652905,41.965252738718476],[-87.66850826527485,41.96524589962122],[-87.66856618601372,41.96524513102778],[-87.6687166318845,41.965243133556996],[-87.66917109443246,41.96523711276042],[-87.66934735364012,41.9652336732529],[-87.66955942574329,41.96522953440572],[-87.67013586655113,41.965222670810704],[-87.67022507731282,41.96522160848072],[-87.6707983148534,41.965214791936475],[-87.67092630346195,41.965212652911056],[-87.67108759577215,41.965209957514],[-87.67156390495856,41.96520699587434],[-87.67171526746044,41.96520452336301],[-87.67232262972888,41.96519459979676],[-87.67251055076437,41.965191353200744],[-87.6726848027729,41.9651883421248],[-87.6732941627385,41.965180812921126],[-87.67395602079141,41.96517265392551],[-87.67407748918937,41.96516926868252],[-87.6740765578724,41.96526481053059],[-87.67408361159839,41.965589957042276],[-87.67409225459302,41.96591788430862],[-87.67409628511163,41.96606905854273],[-87.67410345027218,41.966337043585845],[-87.67411983375507,41.96690214198342],[-87.67412303207661,41.96699555276656],[-87.67412593834631,41.9670804131251],[-87.67413378349937,41.967368023360514],[-87.67413979880074,41.96757639789608],[-87.6741444952618,41.96774146130841],[-87.67415196733205,41.96800110620228],[-87.67415840404156,41.96822564649561],[-87.67416555067597,41.9684740651557],[-87.67417209889321,41.968702063767104],[-87.67417408633298,41.96882177350465],[-87.67399816341954,41.96882375830666],[-87.67338907034456,41.96883121479359],[-87.67332842740366,41.96883195699351],[-87.6727410699406,41.96883917139114],[-87.6725970960567,41.96884201926602],[-87.67241866211207,41.96884554837269],[-87.67183980308228,41.968852128715966],[-87.67180659604392,41.968852505971796],[-87.67121593453449,41.96885919956969],[-87.67101927076848,41.96886255687173],[-87.67085065195758,41.96886543463049],[-87.67048575893706,41.96886955664363],[-87.67022774107994,41.96887247106258],[-87.66965469120707,41.968878943864716],[-87.66943908805214,41.96887698019632],[-87.66925034935946,41.968875260985705],[-87.6688043627764,41.96888045160187],[-87.66875427344854,41.968881034583724],[-87.66867034968928,41.96888203334407],[-87.66839813117106,41.968885228882286],[-87.66813934216285,41.968888451644716],[-87.66775329497311,41.968892798595355],[-87.66749666128202,41.96890048871616]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"21545692.8322","perimeter":"0.0","tract_cent":"1161339.06312155","census_t_1":"17031040100","tract_numa":"45","tract_comm":"4","objectid":"212","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1937188.99671015","census_tra":"040100","tract_ce_3":"41.98333081","tract_crea":"","tract_ce_2":"-87.68199354","shape_len":"18764.5022196"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68880708102759,41.97589464883272],[-87.68915069823998,41.97589154188474],[-87.68916143107036,41.97615234238711],[-87.68916893006048,41.97634564866966],[-87.68917488882414,41.97649925747315],[-87.68917830511924,41.976590878070326],[-87.68918400716073,41.97674763137828],[-87.68918535067206,41.97678316945734],[-87.68918581929323,41.976795568465256],[-87.68920779301905,41.97736446906678],[-87.6892132236563,41.977494190454756],[-87.68922129834415,41.977707508433724],[-87.68923009857164,41.97793999816541],[-87.68923340734366,41.978034966059425],[-87.68924352948117,41.97830055166141],[-87.68925350607024,41.97854412794976],[-87.6892714374375,41.97899098429744],[-87.68928033158586,41.9792032706053],[-87.68929467010253,41.97952453217187],[-87.68930349422703,41.97972224636664],[-87.6893094271832,41.9798707682817],[-87.68931852056168,41.980147215051446],[-87.68932391410569,41.98031642546516],[-87.68933173901489,41.98056185537301],[-87.68934015154407,41.9807635737514],[-87.68934771712745,41.98093254907846],[-87.68936125011523,41.9812612153596],[-87.6893646609906,41.98135688463699],[-87.68936540426152,41.98137772989775],[-87.68937791050818,41.98172848146484],[-87.68939676134248,41.982190051335884],[-87.68940012761755,41.98225752261206],[-87.68942161612442,41.98259608510735],[-87.68942852219578,41.98271450854906],[-87.68943532103405,41.982831092773864],[-87.68944833314643,41.983167686748345],[-87.68945878091358,41.98343763719913],[-87.68945959751899,41.98359751873566],[-87.68946112088557,41.98388437825147],[-87.68946231581923,41.98406511779799],[-87.68946689881807,41.984249087052554],[-87.68947181834096,41.98441426043748],[-87.68947893777298,41.984664049754166],[-87.68948967057021,41.98494972899896],[-87.68949119029719,41.98499018369295],[-87.68950173437578,41.98527083723783],[-87.68950857796645,41.98550786445419],[-87.68951755482539,41.985832553263975],[-87.689527267012,41.98613172515208],[-87.68954115882835,41.986581961026204],[-87.6895490598692,41.98681174943948],[-87.68956613533364,41.98730832513894],[-87.68957181932632,41.98753277734917],[-87.68958017576371,41.987776673716844],[-87.68958702890683,41.987976324662405],[-87.68959838414526,41.988338786794685],[-87.6896078218513,41.98863244117589],[-87.68961364796651,41.988813563288474],[-87.68962166154313,41.98905139273154],[-87.68963807038052,41.9894964833966],[-87.68964718160676,41.98972026868791],[-87.68965633168456,41.98999139154512],[-87.6896725537845,41.99050000314954],[-87.68904451431634,41.99050823692255],[-87.68897183873729,41.990510869297786],[-87.68843610450831,41.9905188532973],[-87.68806776478759,41.99052434176649],[-87.68752205726787,41.99053644841397],[-87.68720631648976,41.990542073598775],[-87.68685599362674,41.990548313802414],[-87.68684561818091,41.99054850097689],[-87.68477521142627,41.99058649587885],[-87.68247201598842,41.99062871878577],[-87.68051013196421,41.99066464803419],[-87.67982752414291,41.990675368409995],[-87.6791023133119,41.99068675355368],[-87.67842246476431,41.990697422572744],[-87.67802435686879,41.99070366807167],[-87.67775530411791,41.990708371876515],[-87.67764787395261,41.9907102500315],[-87.67741380669949,41.99071464299058],[-87.67707195343571,41.990719775506946],[-87.67676115024766,41.99072444081419],[-87.67646151761821,41.99073026029148],[-87.6759840338028,41.99073953180449],[-87.67543665302406,41.99074945865259],[-87.67526092882918,41.99075343323439],[-87.67513873625765,41.99075619695456],[-87.67503643288404,41.99075851067088],[-87.67497061103393,41.99075998579604],[-87.67484988170877,41.99076157320673],[-87.67470545483106,41.99076347183246],[-87.67468769828076,41.99010590426609],[-87.67467978643187,41.989760117622836],[-87.67466630940511,41.98930121106474],[-87.67465526863883,41.98888073716787],[-87.67465269539437,41.98878931301665],[-87.67464525305618,41.9885249223434],[-87.6746405589131,41.98832813638964],[-87.67463780472374,41.98821270031187],[-87.67462854142096,41.98780897584678],[-87.6746162973822,41.9873232928612],[-87.67460431870566,41.98693675912955],[-87.67459962171993,41.98679296378926],[-87.67465295983834,41.98668196528671],[-87.67469058606376,41.98660364230348],[-87.67469659616685,41.98652725094536],[-87.67468794894697,41.986209999778644],[-87.67467744576611,41.98583019772526],[-87.67466524575644,41.985375908433255],[-87.67465812551696,41.98511885880607],[-87.67465144079844,41.9848775106635],[-87.67464456619251,41.984629752899444],[-87.67463816594648,41.98439906619903],[-87.67463265392816,41.98421662783445],[-87.67463040645599,41.98414224721352],[-87.67462033706137,41.98380879699134],[-87.6746098949717,41.98346648085491],[-87.67460924399396,41.98335739913635],[-87.67460864097951,41.98325629562028],[-87.6746013607817,41.98303841948881],[-87.67459330419672,41.982749573955275],[-87.67458924134361,41.982569256884645],[-87.67458790885254,41.98248568815699],[-87.6745861140393,41.98237311115813],[-87.67457291269064,41.98195893600936],[-87.6745634204057,41.981677408915004],[-87.67455964275203,41.98157330009251],[-87.67455608787606,41.981475339275065],[-87.6745457739924,41.981130773489404],[-87.6745364709777,41.980780917181285],[-87.67453306471276,41.98066119571137],[-87.67452982967413,41.980547485015585],[-87.67451926452006,41.98019877399128],[-87.67450764592364,41.9798131199871],[-87.67446285651312,41.97974799886076],[-87.67441803676543,41.97968283253736],[-87.67440458062723,41.97926500593245],[-87.67439604477512,41.97894067495555],[-87.67439357976374,41.978838274468046],[-87.67439074052797,41.9787203402128],[-87.67438010616587,41.97834632715305],[-87.67437244975717,41.978075869805224],[-87.67437298331677,41.97800984743074],[-87.67443286544368,41.97792328234895],[-87.67445190621741,41.97789575754491],[-87.67445757627661,41.97781664737467],[-87.67445159880509,41.977604486442765],[-87.67444316193851,41.97730625328413],[-87.67444243964212,41.97728067319692],[-87.67443704649283,41.97708964593728],[-87.67443514810127,41.97701458090091],[-87.67443349279111,41.976949149949235],[-87.67442926167685,41.97678164714184],[-87.67442043664629,41.97643549797722],[-87.67441159439015,41.97620158648414],[-87.67440756779531,41.97610340524942],[-87.6745349764389,41.9761018019828],[-87.67462501919942,41.976099375516725],[-87.67479523937305,41.97609478822519],[-87.67491753185853,41.97609359919717],[-87.67543825569699,41.97608883106988],[-87.67564168189749,41.97608707218667],[-87.675663089307,41.97608674121163],[-87.67623743759135,41.976077860409546],[-87.67640736406908,41.97607535408956],[-87.6768004160248,41.976069555500224],[-87.67714642057659,41.976064418586716],[-87.67723944161571,41.976063037265966],[-87.67771741814795,41.97605597115451],[-87.6777982229386,41.976055197157265],[-87.67788460514996,41.97605428206277],[-87.67820725314387,41.97605086422382],[-87.67864059307635,41.97604644811163],[-87.67864964224788,41.97604626152104],[-87.67900607617892,41.9760388999681],[-87.6794035085425,41.97603298461238],[-87.6797713909007,41.97602750777002],[-87.68004020028259,41.97602259825476],[-87.6802043981406,41.97601959899942],[-87.68065977068422,41.97601121202661],[-87.68124153181809,41.976003760768506],[-87.68184546258762,41.97599702018362],[-87.68233342401496,41.97599157162412],[-87.68251615507117,41.97598884813899],[-87.68276781965291,41.975984539200425],[-87.68303912303038,41.975980220212136],[-87.68329795768322,41.97597609891315],[-87.68352603899683,41.97597275272868],[-87.68381095045638,41.97596832754971],[-87.68400450211783,41.97596475732955],[-87.6842901955319,41.975961221486294],[-87.6846650074882,41.97595658151796],[-87.6849384387142,41.97595274755445],[-87.68558645322938,41.97594323355869],[-87.68619136162683,41.975934241295185],[-87.6867317851117,41.975926922147565],[-87.68699355326342,41.97592346051076],[-87.68713542093377,41.97592122790985],[-87.68728177524976,41.97591892323803],[-87.68752299069908,41.97591506646748],[-87.68775296450774,41.97591007600915],[-87.68795389528577,41.97590770361782],[-87.68817652642488,41.975905074952216],[-87.68832079398919,41.975901824199966],[-87.68856623260696,41.975898592689276],[-87.68861298099662,41.97589797709368],[-87.68880708102759,41.97589464883272]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14102197.0533","perimeter":"0.0","tract_cent":"1158083.13804152","census_t_1":"17031040200","tract_numa":"66","tract_comm":"4","objectid":"213","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1934438.11126409","census_tra":"040200","tract_ce_3":"41.97584957","tract_crea":"","tract_ce_2":"-87.69404373","shape_len":"15923.8493387"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69843217935164,41.968533692698415],[-87.69868889962306,41.96853188853895],[-87.69870469531314,41.96898893349722],[-87.6987049835924,41.96899727033933],[-87.69871178196891,41.96919406742126],[-87.69871855205302,41.96939001363622],[-87.69872574691941,41.96962926574397],[-87.69873093764413,41.96980187747331],[-87.6987356008183,41.969939689766484],[-87.6987439429121,41.970162510406965],[-87.69874610069444,41.97022668183597],[-87.69874848591688,41.970297577822365],[-87.69875288076105,41.9704253448318],[-87.69875504509464,41.97048885768491],[-87.69875738523983,41.97055714642466],[-87.69875914715102,41.97060907650964],[-87.6987621615298,41.970723399159596],[-87.69876491786555,41.97082793125562],[-87.69877312176777,41.971046168275365],[-87.69877966961212,41.971216372562395],[-87.69878267188065,41.97134366533864],[-87.69879027872823,41.97155534039052],[-87.6987944158618,41.97168318827252],[-87.69879673908217,41.971767750032356],[-87.69880037059954,41.97189463464353],[-87.69880324295553,41.97197944641367],[-87.6988086482161,41.97217608475815],[-87.69881586051851,41.97243845675656],[-87.69881999545164,41.9725553826766],[-87.69882473428744,41.97268186175953],[-87.69883279542165,41.97287372612349],[-87.69883855537509,41.973085994633756],[-87.69884286589362,41.97324485293359],[-87.69885161837982,41.97353932629862],[-87.69885438958347,41.97363256273626],[-87.698859801577,41.97379493968776],[-87.69886811759726,41.97400264248969],[-87.69887500824863,41.974174739060885],[-87.69888046561503,41.97432517896594],[-87.6988829950458,41.97447420314235],[-87.69888533839995,41.97460121778304],[-87.69888842220409,41.97473421914858],[-87.69889623150415,41.97507103053727],[-87.69890059057103,41.975261776403514],[-87.6989090027023,41.97543684837507],[-87.69891627549232,41.97559336296481],[-87.69892275225088,41.97581771119339],[-87.69893182028508,41.97613180638526],[-87.69894005478025,41.97629518677348],[-87.69894418198272,41.97643516413674],[-87.69894635870969,41.97653451598695],[-87.6989522930831,41.97673271223393],[-87.69896157801627,41.977042798745835],[-87.69896468696054,41.97714827557981],[-87.69897137273028,41.97737512075175],[-87.69897323713661,41.97743550347855],[-87.69898014353399,41.97764445849074],[-87.69899088646171,41.97796948530279],[-87.69899785989209,41.97817843984192],[-87.69900785898223,41.97846792593797],[-87.69901061106182,41.978559382024514],[-87.69901676443445,41.9787638548471],[-87.69902140597664,41.978915031053525],[-87.69902528306292,41.97903947452068],[-87.69903032733508,41.979213073061],[-87.69903411729345,41.97934259281047],[-87.69903836064856,41.9794703425832],[-87.69904872915875,41.97978248649351],[-87.6990546611327,41.97997782425299],[-87.69906052310296,41.980165394984574],[-87.69906821015229,41.98038352971303],[-87.69907527330832,41.98058396693562],[-87.6990793992967,41.98071299455379],[-87.69908228401226,41.98080403558999],[-87.69908825698197,41.98099155229728],[-87.69909275195491,41.98114270019135],[-87.69909813477238,41.98129548057104],[-87.69910798966588,41.98157518785119],[-87.69911546355245,41.98183384246349],[-87.6991201121949,41.981965809232925],[-87.69912823657329,41.98220699208812],[-87.69914073795572,41.98257809905188],[-87.69914497376726,41.98272943756498],[-87.6991510612767,41.9829387983856],[-87.69915742133504,41.983120920144096],[-87.69892577276514,41.98312147004751],[-87.69851788233817,41.983121410552535],[-87.6981523251555,41.983125151305686],[-87.69794560620379,41.98312665274083],[-87.69761191288725,41.98312907528625],[-87.69727381409994,41.98313071477909],[-87.69683335427506,41.983131342863345],[-87.69680122016858,41.98313138861663],[-87.6967317743984,41.98313181499084],[-87.69627048794914,41.98313464646378],[-87.69611563435787,41.98313559488603],[-87.69580930408075,41.98313817834408],[-87.6955656987336,41.98313926756939],[-87.69513245891135,41.98314179748807],[-87.69458813747914,41.98314497392925],[-87.69446035438958,41.983145881937304],[-87.69430256275737,41.98314649927295],[-87.69399131640193,41.98314771628415],[-87.69370721979229,41.983148438840274],[-87.69329584865798,41.98315070140532],[-87.69308742217493,41.98315191152329],[-87.69275581200895,41.983153836241534],[-87.69252827725373,41.98315514590421],[-87.69223050086477,41.98315562379156],[-87.69187328653958,41.98315784450884],[-87.69143541283836,41.98316056591618],[-87.69123665584948,41.98316030508291],[-87.69091077085369,41.98316163767662],[-87.69065909163638,41.9831629221256],[-87.69012863884599,41.983165627899076],[-87.69005073696897,41.983165863995296],[-87.68944833314643,41.983167686748345],[-87.68943532103405,41.982831092773864],[-87.68942852219578,41.98271450854906],[-87.68942161612442,41.98259608510735],[-87.68940012761755,41.98225752261206],[-87.68939676134248,41.982190051335884],[-87.68937791050818,41.98172848146484],[-87.68936540426152,41.98137772989775],[-87.6893646609906,41.98135688463699],[-87.68936125011523,41.9812612153596],[-87.68934771712745,41.98093254907846],[-87.68934015154407,41.9807635737514],[-87.68933173901489,41.98056185537301],[-87.68932391410569,41.98031642546516],[-87.68931852056168,41.980147215051446],[-87.6893094271832,41.9798707682817],[-87.68930349422703,41.97972224636664],[-87.68929467010253,41.97952453217187],[-87.68928033158586,41.9792032706053],[-87.6892714374375,41.97899098429744],[-87.68925350607024,41.97854412794976],[-87.68924352948117,41.97830055166141],[-87.68923340734366,41.978034966059425],[-87.68923009857164,41.97793999816541],[-87.68922129834415,41.977707508433724],[-87.6892132236563,41.977494190454756],[-87.68920779301905,41.97736446906678],[-87.68918581929323,41.976795568465256],[-87.68918535067206,41.97678316945734],[-87.68918400716073,41.97674763137828],[-87.68917830511924,41.976590878070326],[-87.68917488882414,41.97649925747315],[-87.68916893006048,41.97634564866966],[-87.68916143107036,41.97615234238711],[-87.68915069823998,41.97589154188474],[-87.68913596656621,41.975533519316514],[-87.68913353326363,41.975464790857814],[-87.68912476398695,41.97516721531832],[-87.68911636455721,41.97491713244485],[-87.68910165317145,41.97447911424528],[-87.68909374455095,41.974271278890015],[-87.68908748275726,41.9741001155833],[-87.68907301397981,41.973704649458],[-87.6890708925593,41.973601373219296],[-87.68906274944739,41.9732854972635],[-87.68905296780741,41.973015882369424],[-87.68905026090913,41.97294125724775],[-87.68904772665873,41.97287139510891],[-87.68904336480738,41.97275682760798],[-87.68903860955574,41.972577632194955],[-87.68902991046487,41.972249842945764],[-87.68902446854942,41.97204479299542],[-87.68901956448244,41.971907445548204],[-87.68900601262351,41.971540826263485],[-87.68899645136858,41.971289046824765],[-87.6889863808234,41.97104161380414],[-87.68898466423488,41.97099943728639],[-87.68898436712313,41.97099213850707],[-87.68896869172036,41.97050262179658],[-87.68896461372852,41.97041223529408],[-87.68895973233545,41.97023292603659],[-87.68895154199663,41.970045862563786],[-87.68894770256563,41.96991601271943],[-87.68894114465351,41.969718145959625],[-87.68893033285615,41.96939193687098],[-87.68892362697677,41.969218136209044],[-87.68891427342359,41.9689713797236],[-87.68890658228806,41.96861492584193],[-87.68932002435002,41.96861262902282],[-87.68948169832649,41.96861013303778],[-87.68949970231361,41.968609858875205],[-87.68976613402967,41.96860580040178],[-87.69012748617644,41.968602529191024],[-87.69037446751699,41.96860029032917],[-87.69057279240445,41.968598793884844],[-87.69084481771381,41.96859631003542],[-87.69101821194319,41.968594755622576],[-87.69134891908497,41.968592811009984],[-87.69153959202303,41.96859168914519],[-87.69183652080498,41.96858829936459],[-87.69204706638546,41.968585551440604],[-87.69228272506992,41.968582998246134],[-87.69257177106705,41.96858096209118],[-87.69285346230082,41.96857896650316],[-87.6931256985057,41.96857743889675],[-87.69331115091848,41.968576167799085],[-87.69354613836073,41.968574541298366],[-87.69379762672408,41.96857173841668],[-87.69397457641861,41.968569765760016],[-87.69406173310986,41.96856898878158],[-87.69421063427156,41.9685677322295],[-87.69439594286831,41.96856612927399],[-87.69460655226895,41.968564337482256],[-87.69477972522459,41.9685628310404],[-87.69502187041373,41.96856133024307],[-87.69521380515553,41.96856014041121],[-87.69544864518633,41.96855853663849],[-87.69559754686608,41.96855722340612],[-87.69585743468171,41.96855498955772],[-87.69605546389279,41.96855361920916],[-87.69624384111592,41.96855285411484],[-87.69664771411054,41.96854938615538],[-87.69686998734684,41.968546859076746],[-87.69726252237847,41.96854343641373],[-87.69746699199102,41.96854152138335],[-87.69761784348887,41.96854010820807],[-87.6981038929851,41.96853626742841],[-87.69843217935164,41.968533692698415]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8156570.82902","perimeter":"0.0","tract_cent":"1155933.12928164","census_t_1":"17031040300","tract_numa":"30","tract_comm":"4","objectid":"214","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1934772.80935828","census_tra":"040300","tract_ce_3":"41.97681175","tract_crea":"","tract_ce_2":"-87.70194107","shape_len":"13692.3694432"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70072676919693,41.96851880776209],[-87.70107611838922,41.96851476361375],[-87.70108291805371,41.96852098924454],[-87.70117228608294,41.96862754491958],[-87.70124324300227,41.96871808276533],[-87.7013200828728,41.968804975717724],[-87.70139901065717,41.96888526657583],[-87.70143941554633,41.96894182751109],[-87.70144953325178,41.96898592769415],[-87.70144795075198,41.96902326761723],[-87.70145263666032,41.96906259070176],[-87.70146935353696,41.969097533567755],[-87.70149957890591,41.96913858885206],[-87.70154489604853,41.96919671326356],[-87.70169902156042,41.969362817653085],[-87.70178789353949,41.96945652722752],[-87.70188281326327,41.96954480902848],[-87.70194299127627,41.96958764774412],[-87.70197725922101,41.969599169771016],[-87.7020210997018,41.96962443801103],[-87.70207567755348,41.96968324457575],[-87.70214957137347,41.96976707469479],[-87.70223987760254,41.96985716944939],[-87.7022920201601,41.96991689555178],[-87.70235115208891,41.969987472212274],[-87.70244328373727,41.970090145294975],[-87.70251506741813,41.97017550033267],[-87.70256444262417,41.97023246689797],[-87.70263491917073,41.970323693038],[-87.70264788078951,41.97034047068874],[-87.70270400237368,41.970418110673535],[-87.70278175499564,41.97053217526668],[-87.70280048701353,41.97057942358481],[-87.70286871222268,41.970682404086304],[-87.70294249662328,41.97079619979535],[-87.70300842889263,41.97088961778842],[-87.70306262922695,41.970979458752645],[-87.70309078284075,41.971051813330526],[-87.70314405821011,41.971138520783335],[-87.70321880159638,41.97124093312361],[-87.70337369280934,41.97155418337412],[-87.70344284212302,41.97169446232398],[-87.70353186035005,41.971863499995216],[-87.70356940737392,41.97195297465162],[-87.70359196188859,41.972033860297216],[-87.7036044141691,41.97209501458175],[-87.7036132078913,41.97212846334666],[-87.70362890717873,41.972188177442725],[-87.7036493336758,41.972268584886855],[-87.70366301336948,41.972343274819615],[-87.70368741973623,41.972430317614794],[-87.70370808939177,41.972497252338755],[-87.70373665682837,41.97259120589358],[-87.7037608562829,41.97268060782445],[-87.70378160802551,41.97279523696648],[-87.70379208443083,41.97286288415012],[-87.70380326270467,41.972919009526066],[-87.70381255480403,41.97297622223891],[-87.70382496349549,41.9730530456528],[-87.70384608190251,41.973096849170986],[-87.70385786137037,41.973159152293626],[-87.70388590468768,41.97320554588301],[-87.70391140231614,41.97324531197795],[-87.70393093821939,41.973281779779924],[-87.70395527639414,41.97334220335899],[-87.7039749303299,41.973389099772575],[-87.70399821464267,41.97345198734705],[-87.70402601908985,41.973518933673],[-87.70403771340104,41.97355158381829],[-87.70408600471849,41.97368641189712],[-87.70409801414563,41.97372912263925],[-87.70411490255569,41.97378053180313],[-87.70414213173875,41.97383496137841],[-87.70415541486096,41.97387153207933],[-87.70416779616087,41.97390639615579],[-87.70418392878202,41.97394493112813],[-87.70419855918485,41.97398664086662],[-87.70420679202724,41.97401327731122],[-87.70421070192667,41.97404197565934],[-87.70421495061694,41.974069880044915],[-87.70422251422671,41.97409352163934],[-87.70423459064862,41.97411823076009],[-87.70425201780432,41.974163495838276],[-87.70426101973099,41.97419419791293],[-87.70427663923086,41.974228833016205],[-87.70428660392695,41.97425139008142],[-87.70429501012279,41.97427536559162],[-87.70430128889376,41.97430621739357],[-87.70430449756178,41.97433521375718],[-87.70430805891252,41.97435822969076],[-87.70431384711924,41.97437544011552],[-87.70432356469952,41.97439695302593],[-87.70433822450656,41.974439431281525],[-87.70437686243703,41.97460144116805],[-87.70439128750459,41.97469021282926],[-87.70440992319749,41.97472854166754],[-87.70441940683871,41.974758889619665],[-87.70442335920293,41.974779547675865],[-87.70443418235509,41.97480831132714],[-87.70445633533609,41.97485549575788],[-87.70446350285759,41.974893212923135],[-87.70446347358076,41.97492235619445],[-87.70446357130133,41.97494606664018],[-87.70446835598408,41.974968101080414],[-87.70447688621465,41.97499443754263],[-87.70448689972271,41.9750307433099],[-87.70449155043899,41.97507761232241],[-87.70449125017589,41.97511934999797],[-87.7044878497471,41.97515473158374],[-87.70448865892413,41.975180887991435],[-87.70449226006367,41.975199870430835],[-87.70449791257539,41.97521219542029],[-87.70451388196851,41.97524120706167],[-87.70452455733572,41.97527005194445],[-87.70453868527049,41.975303114640894],[-87.70456454798715,41.97534323932399],[-87.70458502710747,41.975373647481504],[-87.704591557968,41.97539014846425],[-87.70459987994448,41.975422712839936],[-87.70461439873812,41.975479569901296],[-87.70461628601282,41.975519508381105],[-87.70462121809041,41.97556769614258],[-87.70462856542699,41.97559092488979],[-87.70464004215769,41.975609346454625],[-87.70465250955789,41.97562426086455],[-87.7046661234284,41.97563852294279],[-87.7046760991276,41.97565251811836],[-87.70469595302541,41.9756717264857],[-87.7047141073913,41.97569921303417],[-87.70472284958518,41.975741411850166],[-87.70472499189425,41.975766642799115],[-87.70472526284838,41.975774429858866],[-87.70472659761518,41.97581278163051],[-87.70472916066004,41.975851324263445],[-87.70474084006078,41.97588654144445],[-87.70474697717397,41.97590943425206],[-87.70476035451523,41.975962717577765],[-87.70476759574836,41.975989266218214],[-87.70477842114009,41.97601783802403],[-87.70478852274655,41.97604895742501],[-87.7048159656006,41.9760855506776],[-87.70481995802238,41.976098415401154],[-87.70482658226238,41.97611291333795],[-87.70482728252672,41.97613520036681],[-87.70482134333224,41.976152017251515],[-87.70480942279613,41.976174975843236],[-87.70480591785733,41.97619855679131],[-87.70481190527445,41.976236679095784],[-87.70482078266785,41.97627262186029],[-87.70483197792343,41.97630846754547],[-87.70484415530257,41.97634541628691],[-87.7048586870876,41.97640847527634],[-87.70487055617932,41.976446821869615],[-87.70488925694731,41.976489871003004],[-87.70491671110453,41.976532858281274],[-87.70493251016485,41.976567988221774],[-87.70493802412273,41.97660190929695],[-87.704938730809,41.976631029146574],[-87.7049423389816,41.97666428118084],[-87.70494943101457,41.97669854019714],[-87.70495546433253,41.976728265484866],[-87.70496600993954,41.97676287270762],[-87.70497475612756,41.97678973170564],[-87.70499048443695,41.97684332945265],[-87.70500441747176,41.97689249948079],[-87.70501583879759,41.97693155709781],[-87.70504747412203,41.97700936370285],[-87.70506302333706,41.9770550025476],[-87.70508020856566,41.977113795068796],[-87.70508975471984,41.97714529586069],[-87.70509485007744,41.977165768046646],[-87.70511645803592,41.97722730152399],[-87.70512984889324,41.9772792676525],[-87.70514099344688,41.97732779123527],[-87.7051555738856,41.97737098242465],[-87.70516681778605,41.97740191621645],[-87.70517769301263,41.977421679089794],[-87.70519281706166,41.977439571710995],[-87.70519482862962,41.97745305674657],[-87.70519718639137,41.977458969680335],[-87.70520869088759,41.97751578271286],[-87.7052151892948,41.977558078970105],[-87.70522113901613,41.977588846578854],[-87.70522181651076,41.977593518172206],[-87.70522609888825,41.977623039023044],[-87.70522959409844,41.97764160894758],[-87.70523459988046,41.97766364510478],[-87.7052433458696,41.97769429052637],[-87.70525993765442,41.97773491315513],[-87.70527075557145,41.977768039965426],[-87.70528473139399,41.97782412557355],[-87.70529407390674,41.977872666720536],[-87.70530603964959,41.97793121110957],[-87.70532257610132,41.97798121859315],[-87.70533323421044,41.97801190218296],[-87.70533862377206,41.97802482913698],[-87.70534367809722,41.978049417660685],[-87.7053479425741,41.97808327698888],[-87.7053593883907,41.978176033225736],[-87.70537707694616,41.9782210854861],[-87.70538827457122,41.97826049858019],[-87.7054057325214,41.97832524744927],[-87.70541034499787,41.97835367488461],[-87.70542216591434,41.97840077542102],[-87.70543767625284,41.97844668841231],[-87.70545582516466,41.97848981674745],[-87.70547087267826,41.978537922563014],[-87.70548233134697,41.978576980327496],[-87.7054979156888,41.978622893714096],[-87.70550898515667,41.97865286604192],[-87.70564814500622,41.97899429209449],[-87.70566194175352,41.97903122214546],[-87.70568469758693,41.979110845781726],[-87.70570929051566,41.97921309221827],[-87.70572795396636,41.97926382475396],[-87.70575753561035,41.97932625238392],[-87.705774184844,41.97937982759418],[-87.70579123353008,41.97944003113175],[-87.70579124704693,41.97944007785705],[-87.70579732499073,41.97946153944579],[-87.70580002426641,41.97947073986342],[-87.70581042139085,41.97950617685123],[-87.7058260918023,41.97955453299543],[-87.70584579531166,41.979604200956125],[-87.70585818430236,41.97964219352337],[-87.70587470033144,41.97969436872047],[-87.70588702240859,41.979735434422786],[-87.70589559358983,41.97976896051389],[-87.70590365085032,41.97979864191484],[-87.70591147964888,41.97982911788457],[-87.70592499476282,41.97986105191518],[-87.70595528612331,41.979922413129025],[-87.70596825953076,41.97997956339435],[-87.70597218928377,41.9800101003771],[-87.70598047538734,41.980053943095434],[-87.70599280234462,41.980105766075596],[-87.70599461938922,41.98012298214057],[-87.70599834611362,41.98014048306123],[-87.70600362488948,41.98016847530781],[-87.70600897249768,41.98019320233194],[-87.70601418498057,41.98021296134058],[-87.70602525214036,41.980258246509784],[-87.70603403601412,41.9802851053436],[-87.70604160923354,41.98031165569928],[-87.70605615682679,41.980347080487896],[-87.70605913323737,41.980366086616165],[-87.70606797121185,41.980406172787],[-87.70607396142084,41.980425387476174],[-87.70608399843373,41.98045197873255],[-87.70609713330585,41.98047770877002],[-87.70610915762201,41.980504173397755],[-87.70612835597807,41.98054544156481],[-87.70613877497208,41.980570553034866],[-87.7061545107641,41.9806160829572],[-87.70616531411152,41.980647041670366],[-87.70618317374908,41.98067853288735],[-87.70619806272457,41.980712916724954],[-87.7062078307647,41.98074815072976],[-87.7062171592421,41.980794523783985],[-87.70623049995174,41.98084805367422],[-87.70623600999588,41.98088244115596],[-87.70623771356411,41.98089998589901],[-87.70623582743208,41.98091978871887],[-87.70624747447269,41.980954731121315],[-87.7062625248682,41.98098017001378],[-87.70628581938932,41.981008781774065],[-87.7062972314313,41.98103019398234],[-87.7062976353367,41.98105275351087],[-87.7063040101405,41.981089011767416],[-87.7063164811482,41.981122449352554],[-87.70633373467155,41.98114076507444],[-87.70634494251225,41.981160502200396],[-87.70635581727561,41.98118794870736],[-87.70636667181918,41.98122870447137],[-87.70637230606144,41.981254228857715],[-87.7063783875051,41.981270908934995],[-87.70638219110197,41.981281340652515],[-87.70638906510911,41.981304209934855],[-87.70639785731598,41.98134149674061],[-87.70640852920296,41.981378382180644],[-87.7064159157867,41.9813977416847],[-87.70642594726772,41.981421177047324],[-87.70643387690525,41.98144141765956],[-87.7064351174836,41.981468674336355],[-87.70643852155487,41.98149284188197],[-87.706449877626,41.981534972200244],[-87.70645789894492,41.98156465363203],[-87.7064729357965,41.98161020712883],[-87.70648943597853,41.981649099934415],[-87.70649386513327,41.98170000185266],[-87.70650226355653,41.981751199589205],[-87.70650381841513,41.98176141650121],[-87.7065119833956,41.981787668188794],[-87.70652006092712,41.981811586828684],[-87.70653748717521,41.98184606652148],[-87.70655312893206,41.98187499346],[-87.7065674171107,41.9819069318999],[-87.70657700299924,41.981934563439715],[-87.70659230697812,41.98199043656625],[-87.70660361748382,41.98201472959579],[-87.70661458767106,41.98203622168289],[-87.70662391543303,41.9820489233646],[-87.70663526318272,41.982065670045955],[-87.70664163538518,41.982075968137956],[-87.70666435927066,41.98212532312286],[-87.70666873958858,41.98214746528078],[-87.70667602741463,41.9821844148185],[-87.70668528511482,41.98223427229618],[-87.70669911191315,41.98231703049474],[-87.70670687568753,41.9823804638753],[-87.70671791062436,41.98244037509315],[-87.70673044849977,41.98248204558856],[-87.70673864532786,41.982508818828684],[-87.70675133211739,41.98254280637665],[-87.70675958806983,41.982567302252455],[-87.70681700540682,41.98273945737066],[-87.70685695099395,41.98288926165621],[-87.70688439437406,41.983038778164754],[-87.70690177438165,41.983080467376986],[-87.70678879090107,41.98308128545748],[-87.70641308999042,41.983084283664645],[-87.7060928611882,41.98308648606846],[-87.70565607237815,41.98308909339551],[-87.70564186340286,41.983089178709946],[-87.70560213012689,41.983089418084106],[-87.705311091828,41.98309116569041],[-87.70506364735135,41.98309277382165],[-87.70450074627045,41.983095640648905],[-87.70401180929285,41.983097630865416],[-87.7035640308502,41.983099451829105],[-87.70316781522068,41.98310155849485],[-87.7028013893091,41.98310391660465],[-87.702337195019,41.983106902478],[-87.70203750154835,41.983107861783125],[-87.70183443084565,41.983108665815806],[-87.7015844988254,41.983109750025804],[-87.7011595244206,41.98311159215187],[-87.70092692065607,41.98311225938307],[-87.70066379408786,41.98311245606883],[-87.70052851431956,41.983112725792914],[-87.7003698262769,41.98311458882646],[-87.70011498467296,41.983117580170614],[-87.69998808331984,41.983118636680395],[-87.69976489171097,41.983119695136516],[-87.69970993896135,41.98311995577193],[-87.69946773992424,41.98312018289712],[-87.69915742133504,41.983120920144096],[-87.6991510612767,41.9829387983856],[-87.69914497376726,41.98272943756498],[-87.69914073795572,41.98257809905188],[-87.69912823657329,41.98220699208812],[-87.6991201121949,41.981965809232925],[-87.69911546355245,41.98183384246349],[-87.69910798966588,41.98157518785119],[-87.69909813477238,41.98129548057104],[-87.69909275195491,41.98114270019135],[-87.69908825698197,41.98099155229728],[-87.69908228401226,41.98080403558999],[-87.6990793992967,41.98071299455379],[-87.69907527330832,41.98058396693562],[-87.69906821015229,41.98038352971303],[-87.69906052310296,41.980165394984574],[-87.6990546611327,41.97997782425299],[-87.69904872915875,41.97978248649351],[-87.69903836064856,41.9794703425832],[-87.69903411729345,41.97934259281047],[-87.69903032733508,41.979213073061],[-87.69902528306292,41.97903947452068],[-87.69902140597664,41.978915031053525],[-87.69901676443445,41.9787638548471],[-87.69901061106182,41.978559382024514],[-87.69900785898223,41.97846792593797],[-87.69899785989209,41.97817843984192],[-87.69899088646171,41.97796948530279],[-87.69898014353399,41.97764445849074],[-87.69897323713661,41.97743550347855],[-87.69897137273028,41.97737512075175],[-87.69896468696054,41.97714827557981],[-87.69896157801627,41.977042798745835],[-87.6989522930831,41.97673271223393],[-87.69894635870969,41.97653451598695],[-87.69894418198272,41.97643516413674],[-87.69894005478025,41.97629518677348],[-87.69893182028508,41.97613180638526],[-87.69892275225088,41.97581771119339],[-87.69891627549232,41.97559336296481],[-87.6989090027023,41.97543684837507],[-87.69890059057103,41.975261776403514],[-87.69889623150415,41.97507103053727],[-87.69888842220409,41.97473421914858],[-87.69888533839995,41.97460121778304],[-87.6988829950458,41.97447420314235],[-87.69888046561503,41.97432517896594],[-87.69887500824863,41.974174739060885],[-87.69886811759726,41.97400264248969],[-87.698859801577,41.97379493968776],[-87.69885438958347,41.97363256273626],[-87.69885161837982,41.97353932629862],[-87.69884286589362,41.97324485293359],[-87.69883855537509,41.973085994633756],[-87.69883279542165,41.97287372612349],[-87.69882473428744,41.97268186175953],[-87.69881999545164,41.9725553826766],[-87.69881586051851,41.97243845675656],[-87.6988086482161,41.97217608475815],[-87.69880324295553,41.97197944641367],[-87.69880037059954,41.97189463464353],[-87.69879673908217,41.971767750032356],[-87.6987944158618,41.97168318827252],[-87.69879027872823,41.97155534039052],[-87.69878267188065,41.97134366533864],[-87.69877966961212,41.971216372562395],[-87.69877312176777,41.971046168275365],[-87.69876491786555,41.97082793125562],[-87.6987621615298,41.970723399159596],[-87.69875914715102,41.97060907650964],[-87.69875738523983,41.97055714642466],[-87.69875504509464,41.97048885768491],[-87.69875288076105,41.9704253448318],[-87.69874848591688,41.970297577822365],[-87.69874610069444,41.97022668183597],[-87.6987439429121,41.970162510406965],[-87.6987356008183,41.969939689766484],[-87.69873093764413,41.96980187747331],[-87.69872574691941,41.96962926574397],[-87.69871855205302,41.96939001363622],[-87.69871178196891,41.96919406742126],[-87.6987049835924,41.96899727033933],[-87.69870469531314,41.96898893349722],[-87.69868889962306,41.96853188853895],[-87.69896981880689,41.96852991401319],[-87.69904895556012,41.96852950056327],[-87.69924580452467,41.96852847493671],[-87.69937554394457,41.96852757318659],[-87.69953621047225,41.968526456472546],[-87.69973055941351,41.96852538383117],[-87.7004014217784,41.96852167940348],[-87.70072676919693,41.96851880776209]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3806514.96574","perimeter":"0.0","tract_cent":"1158114.15564907","census_t_1":"17031040700","tract_numa":"19","tract_comm":"4","objectid":"215","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1931142.77016218","census_tra":"040700","tract_ce_3":"41.96680635","tract_crea":"","tract_ce_2":"-87.6940201","shape_len":"8681.09963489"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69685979868817,41.96479023144737],[-87.69713501263239,41.964788021473616],[-87.69716997433804,41.96480992518049],[-87.69719757888339,41.964844133749146],[-87.69724431541334,41.964877158537945],[-87.69729171298901,41.964910269296105],[-87.69733159977466,41.964951763141514],[-87.69738440150243,41.9650108639964],[-87.69743874375773,41.96505556627329],[-87.69750500925846,41.96511037835679],[-87.69757316429758,41.96517486047348],[-87.69764948256015,41.965250419461185],[-87.69781390264293,41.9654183970575],[-87.69785846300822,41.96546323707838],[-87.69792839423035,41.96553036325127],[-87.69799313270673,41.96558722475314],[-87.69806995481524,41.965652879659636],[-87.69807957493077,41.96566228350104],[-87.69808412115692,41.96566672710383],[-87.69816256181582,41.96574340203257],[-87.69824659539222,41.965819744239084],[-87.69831242491146,41.965885283286994],[-87.6983657204497,41.965946664106035],[-87.69842898938512,41.96602195857325],[-87.69847197517387,41.96607740944911],[-87.69853831367826,41.96614358234736],[-87.69853860029876,41.966143860548186],[-87.69858278604437,41.966186720737106],[-87.69858288073763,41.96618681236831],[-87.69860477951244,41.966208054502715],[-87.69867014406367,41.96627606055714],[-87.69879306310787,41.96639136551196],[-87.69888082936247,41.96647708562219],[-87.69895704122744,41.96655256081354],[-87.69902145732603,41.96661987537242],[-87.6990623350534,41.96667660442667],[-87.69908797215975,41.9667079024086],[-87.69910576866842,41.966731454083465],[-87.69920535775869,41.966822755109746],[-87.69927396160874,41.96689420896486],[-87.69932005394598,41.966936834063766],[-87.69941104765701,41.96701241802381],[-87.69948555599373,41.96708181875716],[-87.69951340168465,41.967121598828086],[-87.69955813296085,41.967175440118424],[-87.69960548513279,41.967220843704105],[-87.69964919311143,41.96726293410806],[-87.6996962949823,41.96730021342459],[-87.69976537902886,41.9673530364737],[-87.6997964901904,41.96738243395516],[-87.6998126137861,41.96740664450059],[-87.69982513927415,41.967430231463474],[-87.69986954373242,41.967468895368356],[-87.6999431852006,41.96752193555053],[-87.70000577029559,41.96756270297618],[-87.70003839700695,41.9675876082544],[-87.7000459972822,41.967594100435406],[-87.70006169847328,41.96760751208615],[-87.70011095776114,41.967649588477585],[-87.70020671121604,41.96774229445527],[-87.70029488096156,41.96782477753179],[-87.70038904697411,41.96791445597572],[-87.7004872017243,41.96800240003737],[-87.70056543168265,41.96808611788737],[-87.70065950831243,41.96818490637627],[-87.70073191888712,41.96825476124456],[-87.7007815038659,41.96829021517612],[-87.7008611287767,41.96834079023044],[-87.70090768604337,41.968370080681076],[-87.70097982452664,41.96842659705387],[-87.70107611838922,41.96851476361375],[-87.70072676919693,41.96851880776209],[-87.7004014217784,41.96852167940348],[-87.69973055941351,41.96852538383117],[-87.69953621047225,41.968526456472546],[-87.69937554394457,41.96852757318659],[-87.69924580452467,41.96852847493671],[-87.69904895556012,41.96852950056327],[-87.69896981880689,41.96852991401319],[-87.69868889962306,41.96853188853895],[-87.69843217935164,41.968533692698415],[-87.6981038929851,41.96853626742841],[-87.69761784348887,41.96854010820807],[-87.69746699199102,41.96854152138335],[-87.69726252237847,41.96854343641373],[-87.69686998734684,41.968546859076746],[-87.69664771411054,41.96854938615538],[-87.69624384111592,41.96855285411484],[-87.69605546389279,41.96855361920916],[-87.69585743468171,41.96855498955772],[-87.69559754686608,41.96855722340612],[-87.69544864518633,41.96855853663849],[-87.69521380515553,41.96856014041121],[-87.69502187041373,41.96856133024307],[-87.69477972522459,41.9685628310404],[-87.69460655226895,41.968564337482256],[-87.69439594286831,41.96856612927399],[-87.69421063427156,41.9685677322295],[-87.69406173310986,41.96856898878158],[-87.69397457641861,41.968569765760016],[-87.69379762672408,41.96857173841668],[-87.69354613836073,41.968574541298366],[-87.69331115091848,41.968576167799085],[-87.6931256985057,41.96857743889675],[-87.69285346230082,41.96857896650316],[-87.69257177106705,41.96858096209118],[-87.69228272506992,41.968582998246134],[-87.69204706638546,41.968585551440604],[-87.69183652080498,41.96858829936459],[-87.69153959202303,41.96859168914519],[-87.69134891908497,41.968592811009984],[-87.69101821194319,41.968594755622576],[-87.69084481771381,41.96859631003542],[-87.69057279240445,41.968598793884844],[-87.69037446751699,41.96860029032917],[-87.69012748617644,41.968602529191024],[-87.68976613402967,41.96860580040178],[-87.68949970231361,41.968609858875205],[-87.68948169832649,41.96861013303778],[-87.68932002435002,41.96861262902282],[-87.68890658228806,41.96861492584193],[-87.68890108949144,41.96836036343161],[-87.68888909728214,41.968068998765794],[-87.68888298151562,41.96790963589318],[-87.68887860193207,41.96779377841282],[-87.68886919185611,41.96754485362414],[-87.68886346447727,41.96728494523419],[-87.68885645987909,41.96700944257547],[-87.68884838185049,41.966758250831795],[-87.68884061434302,41.96651671411232],[-87.68883696124728,41.96636115174945],[-87.68883494807208,41.96629701686577],[-87.68883391608061,41.96626413191933],[-87.6888339161138,41.96626412862647],[-87.68883226215017,41.96621141631968],[-87.68882877850605,41.96610040625915],[-87.68882785471753,41.96607232757237],[-87.68882309323901,41.96592754425311],[-87.68881583190351,41.96573751250105],[-87.68880744004103,41.96551788389492],[-87.68880531028104,41.965287769972726],[-87.6888026207188,41.9651715651786],[-87.6887912693788,41.96486773948137],[-87.68928383388709,41.96485319361571],[-87.68939671017276,41.96485184272815],[-87.68958184754855,41.96484989805399],[-87.68979204084236,41.96484805786057],[-87.69001131325008,41.9648464747971],[-87.69008571338811,41.96484593752123],[-87.69026279885678,41.964844658481226],[-87.6904364394595,41.96484318863868],[-87.69070899864883,41.964840872730036],[-87.69089521564824,41.96483928049506],[-87.69123617418883,41.96483594597622],[-87.6914770769944,41.9648335889466],[-87.69174501206004,41.964830421463205],[-87.69188683993636,41.964829649782935],[-87.69217229894282,41.96482795131507],[-87.69245952442768,41.9648260611224],[-87.69281522004619,41.96482371909732],[-87.69295168562867,41.96482233990067],[-87.6932743313699,41.96481936424182],[-87.69342281496596,41.96481854544422],[-87.69368197502024,41.964816462002084],[-87.6939752113994,41.964814103982505],[-87.69430932360842,41.96481168322875],[-87.69459449553149,41.96480926364568],[-87.69500248730382,41.96480587978928],[-87.69531258883181,41.9648034323788],[-87.69569635114934,41.96479991140035],[-87.69605491213119,41.96479670533736],[-87.69629843127541,41.96479463152393],[-87.69653065020805,41.96479268715761],[-87.69685979868817,41.96479023144737]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2450107.6949","perimeter":"0.0","tract_cent":"1158603.12143832","census_t_1":"17031040800","tract_numa":"13","tract_comm":"4","objectid":"216","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1929815.16829632","census_tra":"040800","tract_ce_3":"41.96315331","tract_crea":"","tract_ce_2":"-87.69225876","shape_len":"6671.15968462"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69401360919292,41.9612785709354],[-87.69474577254063,41.96127342660608],[-87.6947590466507,41.96131408591142],[-87.69478150698394,41.96136610381994],[-87.69484531134795,41.96147532142998],[-87.69488791880548,41.96157906992122],[-87.69493480838563,41.96172532255122],[-87.69499235172287,41.96185407146289],[-87.69501327121347,41.96190210165247],[-87.69503483568916,41.96192971851474],[-87.69507228967514,41.96198991513612],[-87.69508184045628,41.962027646211276],[-87.69508458537653,41.96206207384171],[-87.69508842328001,41.962090140985225],[-87.6950941877989,41.962102000569],[-87.6951098544792,41.962116384987645],[-87.69512831811755,41.96213051053157],[-87.69515658776317,41.96216785169837],[-87.69515774211447,41.96217011577511],[-87.69516330869075,41.96218103244272],[-87.69516696287936,41.96218819922185],[-87.69518006432017,41.96221389279735],[-87.69521649024162,41.962299769442055],[-87.69523630588736,41.96234422598186],[-87.69525326096354,41.96240268952217],[-87.695278330985,41.962462240958985],[-87.69530268310962,41.962538473184416],[-87.69534016366106,41.962618180904386],[-87.69538960123526,41.96273033725515],[-87.69540637828936,41.96278827810615],[-87.69547679776804,41.96293120380272],[-87.69554505542801,41.9630439857682],[-87.69556615811466,41.963081468405974],[-87.6955661935219,41.9630815311706],[-87.69557350341913,41.96309451483377],[-87.69557373861777,41.96309493243664],[-87.69558750615235,41.963119385438546],[-87.69562386245137,41.96317916414043],[-87.69567258022694,41.96323453843129],[-87.69573702597717,41.96330926438793],[-87.69578400781702,41.96336912949008],[-87.69583220818295,41.96341742078293],[-87.69589207304195,41.96347590322138],[-87.69597174683959,41.963561168750395],[-87.69605055379492,41.96368163786742],[-87.69608249846209,41.96371205635291],[-87.69615676112872,41.96377953696762],[-87.69622509641113,41.96384410322238],[-87.69629175207382,41.96391115734462],[-87.69630705398617,41.96392904749255],[-87.69631921228138,41.96394009617525],[-87.696322230179,41.96394283819273],[-87.69635555458198,41.96397311881385],[-87.69642389027103,41.964037684950895],[-87.69649054634286,41.96410473895829],[-87.6965568092342,41.96417074794684],[-87.69667256957071,41.9642878266739],[-87.69685504016766,41.96448883624916],[-87.69693008053412,41.964574404993044],[-87.69697526226264,41.96463431450283],[-87.69700619579564,41.964681302133336],[-87.69703753181831,41.964721102163566],[-87.69707695882201,41.96475334529814],[-87.69712564917332,41.964782155159426],[-87.69713501263239,41.964788021473616],[-87.69685979868817,41.96479023144737],[-87.69653065020805,41.96479268715761],[-87.69629843127541,41.96479463152393],[-87.69605491213119,41.96479670533736],[-87.69569635114934,41.96479991140035],[-87.69531258883181,41.9648034323788],[-87.69500248730382,41.96480587978928],[-87.69459449553149,41.96480926364568],[-87.69430932360842,41.96481168322875],[-87.6939752113994,41.964814103982505],[-87.69368197502024,41.964816462002084],[-87.69342281496596,41.96481854544422],[-87.6932743313699,41.96481936424182],[-87.69295168562867,41.96482233990067],[-87.69281522004619,41.96482371909732],[-87.69245952442768,41.9648260611224],[-87.69217229894282,41.96482795131507],[-87.69188683993636,41.964829649782935],[-87.69174501206004,41.964830421463205],[-87.6914770769944,41.9648335889466],[-87.69123617418883,41.96483594597622],[-87.69089521564824,41.96483928049506],[-87.69070899864883,41.964840872730036],[-87.6904364394595,41.96484318863868],[-87.69026279885678,41.964844658481226],[-87.69008571338811,41.96484593752123],[-87.69001131325008,41.9648464747971],[-87.68979204084236,41.96484805786057],[-87.68958184754855,41.96484989805399],[-87.68939671017276,41.96485184272815],[-87.68928383388709,41.96485319361571],[-87.6887912693788,41.96486773948137],[-87.68878023671145,41.96457243412251],[-87.68877282354974,41.96435579227096],[-87.68876295215028,41.96400730491259],[-87.68875648106254,41.96381758899861],[-87.68875079108672,41.963640885005134],[-87.68874822886828,41.96356378584296],[-87.68874435924664,41.96337501755044],[-87.68873604196231,41.963139353219375],[-87.68872591161316,41.96285233457773],[-87.6887198836359,41.96256764408955],[-87.68871113530042,41.96229742772925],[-87.6887001310213,41.961966579137986],[-87.68869506462451,41.9617615583613],[-87.68869035770949,41.961571907160625],[-87.68868299355762,41.96131284796762],[-87.68893169956822,41.96130932411727],[-87.68929086908598,41.96130770457293],[-87.68964487555915,41.9613060253197],[-87.6899070459861,41.96130426966961],[-87.6902449250857,41.96130200614332],[-87.69055198724651,41.96130035036419],[-87.69085930813809,41.961298558001175],[-87.69113192791907,41.96129606165997],[-87.69139873715697,41.961293617252586],[-87.69148448189316,41.96129332827927],[-87.69180411532399,41.96129202345781],[-87.69204914368117,41.961291022769885],[-87.69235289992974,41.96128900589522],[-87.69274953781321,41.96128637095059],[-87.69306859040043,41.96128428138427],[-87.69331421494957,41.961282522547286],[-87.69357002168078,41.96128107760688],[-87.69401360919292,41.9612785709354]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3464112.9287","perimeter":"0.0","tract_cent":"1160888.73676664","census_t_1":"17031040900","tract_numa":"14","tract_comm":"4","objectid":"217","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1929843.91679185","census_tra":"040900","tract_ce_3":"41.96318497","tract_crea":"","tract_ce_2":"-87.68385456","shape_len":"7911.94761809"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68822147023374,41.96131938579371],[-87.68868299355762,41.96131284796762],[-87.68869035770949,41.961571907160625],[-87.68869506462451,41.9617615583613],[-87.6887001310213,41.961966579137986],[-87.68871113530042,41.96229742772925],[-87.6887198836359,41.96256764408955],[-87.68872591161316,41.96285233457773],[-87.68873604196231,41.963139353219375],[-87.68874435924664,41.96337501755044],[-87.68874822886828,41.96356378584296],[-87.68875079108672,41.963640885005134],[-87.68875648106254,41.96381758899861],[-87.68876295215028,41.96400730491259],[-87.68877282354974,41.96435579227096],[-87.68878023671145,41.96457243412251],[-87.6887912693788,41.96486773948137],[-87.68856543701769,41.96487440790354],[-87.68839178165456,41.96487732926226],[-87.68814410225445,41.964880932059266],[-87.68785856305291,41.96488690102078],[-87.68757552103908,41.9648900812091],[-87.68732791787134,41.96489286243048],[-87.68710502691835,41.964895884856844],[-87.68704633487368,41.9648966562678],[-87.6869359704238,41.964898421012926],[-87.68674426070723,41.96490148657527],[-87.6865468473183,41.96490487505902],[-87.68645377908999,41.964905311167215],[-87.68636088665437,41.96490657968513],[-87.68612094039894,41.96490985726517],[-87.6857739257735,41.964914595762224],[-87.68553838248165,41.96491795952729],[-87.68552441617268,41.964918152397],[-87.68513625037214,41.964923510752506],[-87.68472672701053,41.96492918346362],[-87.6845396898922,41.96493176735726],[-87.68428686383152,41.96493525947566],[-87.68407849083516,41.964946128320754],[-87.68393549711759,41.96497774016136],[-87.68378124777502,41.96500742647165],[-87.68369284736718,41.965022513369576],[-87.68357070717687,41.96503252455999],[-87.68330052214306,41.96503626394817],[-87.68314937834725,41.96503831692097],[-87.68272507156918,41.96504406341712],[-87.68258826951185,41.965045922505325],[-87.68231842027598,41.96505040077429],[-87.68220249057191,41.96505232452245],[-87.68171000265649,41.96505905265084],[-87.6815056084168,41.96506187693022],[-87.68149744403242,41.96506198973894],[-87.68114852476205,41.96506675887072],[-87.68090573758045,41.965070071977514],[-87.6806983968401,41.965072831972094],[-87.6804651034648,41.965075936867855],[-87.68008546916683,41.96508190019784],[-87.67980847305249,41.96508627152708],[-87.67943435732724,41.965092134042486],[-87.67908350563576,41.96509599210267],[-87.67907911547512,41.96491700562147],[-87.67907622261505,41.96480439436734],[-87.67906894010154,41.964553038480744],[-87.67906548691579,41.964452141786104],[-87.67905732727078,41.96421960586506],[-87.6790476374839,41.96394342860764],[-87.67904291257263,41.9637619550286],[-87.6790383060881,41.963585942815186],[-87.67903789069358,41.963569941723854],[-87.67903453984758,41.96344108212967],[-87.67902906679126,41.96327412304475],[-87.67901853918369,41.96295296122058],[-87.67901432816208,41.9628039267893],[-87.6790083831098,41.96259434526565],[-87.67900183380274,41.9623648373469],[-87.67899016580934,41.962146853356856],[-87.67897758628,41.96193890796077],[-87.67896477385001,41.961717761590975],[-87.6789591487396,41.96145824660338],[-87.6791330569593,41.96145568835764],[-87.67949841994425,41.96145175990817],[-87.67959638134882,41.96145020966743],[-87.67970021879414,41.96144856628966],[-87.67979475032314,41.96144707017125],[-87.67993326704239,41.96144487784026],[-87.68030625011642,41.96144000227292],[-87.68059553672343,41.96143647483569],[-87.68093244361856,41.961432366034124],[-87.68120971301828,41.961428228150275],[-87.6814026630656,41.96142530317099],[-87.68166511345359,41.96142132427051],[-87.68198559423686,41.96141628242924],[-87.68221178315324,41.96141310970706],[-87.6825065916087,41.96140897376081],[-87.68278636400956,41.96140457705099],[-87.6831486583801,41.961398610834635],[-87.68345043897943,41.96139211982356],[-87.68382577720797,41.961385433602494],[-87.68382991246887,41.961385359852365],[-87.68433309395058,41.96137639409338],[-87.6844295514148,41.96137480021653],[-87.68455954650373,41.96137265210511],[-87.6848658710187,41.96136760455004],[-87.68504245734421,41.96136478738753],[-87.68526681290143,41.961361196815055],[-87.68554742522267,41.96135729207418],[-87.68574659224521,41.96135396979371],[-87.68625932633145,41.96134564249687],[-87.68632720410915,41.96134453988528],[-87.6864326398452,41.96134282697747],[-87.68661976812031,41.96134105497804],[-87.68696491235067,41.96133668673015],[-87.68714101625845,41.96133425577051],[-87.6872687283057,41.961332469618185],[-87.68746967270563,41.96132971060097],[-87.68807390171247,41.961321412664915],[-87.68822147023374,41.96131938579371]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3604607.44711","perimeter":"0.0","tract_cent":"1162938.35204699","census_t_1":"17031050100","tract_numa":"24","tract_comm":"5","objectid":"218","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927912.93195898","census_tra":"050100","tract_ce_3":"41.95784338","tract_crea":"","tract_ce_2":"-87.67637328","shape_len":"8028.66151649"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67632852662639,41.95418820951906],[-87.67875431222792,41.9541569379086],[-87.67875620656106,41.954217521128164],[-87.67876710560692,41.95456601352278],[-87.67876820892681,41.95460129115395],[-87.67876907479896,41.95464281599893],[-87.67877195755419,41.954781058326816],[-87.67877506268258,41.95490511435038],[-87.67878180080635,41.95509535372511],[-87.67878918206137,41.95530376398163],[-87.67879058131739,41.955343069051956],[-87.67879573956795,41.955514392344334],[-87.67880090138895,41.95568544068195],[-87.67881102298043,41.955978628054254],[-87.67881118718651,41.95598338360879],[-87.67881751941776,41.95616681499154],[-87.67882406294787,41.95641119674912],[-87.67882948401616,41.956614408950394],[-87.67883243439064,41.9567242490448],[-87.67883406807366,41.9567844114353],[-87.6788375511676,41.956892636302854],[-87.67884374804228,41.95708517711091],[-87.67884842930361,41.95724568517082],[-87.67885446676469,41.95741374753323],[-87.67886195791068,41.95762306364352],[-87.67886550799545,41.95780613389074],[-87.67887240305596,41.95816167423974],[-87.6788772899055,41.958330882583304],[-87.67888311735187,41.95853022769722],[-87.67888912788837,41.95871024446419],[-87.67888928043656,41.95871481087395],[-87.67890174848424,41.95908812177272],[-87.67890531208702,41.959206966318376],[-87.6789112132813,41.95940633926343],[-87.67891893981859,41.95962904700514],[-87.67893040761916,41.95995957130706],[-87.67893351300785,41.96005849027102],[-87.6789388381019,41.96022797547581],[-87.67894482053899,41.960539120163425],[-87.67895011643424,41.96081455960067],[-87.67895013673852,41.96092397100634],[-87.67895109330766,41.961114397031885],[-87.67895408401432,41.96122456657325],[-87.6789591487396,41.96145824660338],[-87.67861271714195,41.96146334221102],[-87.67830418226852,41.96146509513478],[-87.6782325441106,41.96146564987096],[-87.67794776526804,41.96146785599202],[-87.67761873338344,41.96147130809934],[-87.67748786852208,41.96147304272729],[-87.67736264935266,41.96147470244],[-87.67681208046817,41.961482916068135],[-87.67673901938893,41.961484006460395],[-87.67618189735228,41.961492318444094],[-87.67600124242031,41.961495307514625],[-87.67585413112857,41.96149774143223],[-87.6752464645223,41.96150447127205],[-87.67515071662524,41.96150628048777],[-87.67507806716122,41.96150816937482],[-87.67491033874987,41.96151252995116],[-87.67464777916074,41.96151629272808],[-87.67452106538576,41.961517509650854],[-87.67432302696281,41.96151949787066],[-87.67423231617086,41.961520594847066],[-87.67417710416963,41.961521262209466],[-87.6741086692459,41.961522089620985],[-87.67397665771156,41.961525435762496],[-87.67397265643254,41.96140531090727],[-87.67395902326311,41.96092310281867],[-87.6739473384217,41.960508770134545],[-87.67393797370087,41.96017963095669],[-87.67392827284094,41.959840308817284],[-87.67392550613712,41.95970497630408],[-87.67392289580664,41.95957730047756],[-87.67390851057593,41.95907541193868],[-87.6738939109939,41.95856583833965],[-87.67387828191796,41.9580205566241],[-87.6738766695827,41.95796294641915],[-87.67388599304974,41.95787756781088],[-87.67389497993543,41.95779527066045],[-87.67388717313862,41.95765027670113],[-87.67387446130236,41.957157261399814],[-87.67386083677026,41.95670293416624],[-87.67385577217979,41.95653446549572],[-87.67384677178622,41.956234252149066],[-87.67384267921453,41.95606732580542],[-87.67384050863035,41.95597878512963],[-87.67383112778398,41.955665562012626],[-87.67382162958333,41.955349429341226],[-87.67380949332984,41.95494332628515],[-87.6738003257025,41.954638007660996],[-87.67379204047283,41.95436117899491],[-87.67379298492114,41.954279880047125],[-87.67379365827884,41.95422191493596],[-87.67402377036674,41.954218363451396],[-87.67421250155697,41.95421545017131],[-87.67495472223523,41.9542058997254],[-87.67632852662639,41.95418820951906]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7030904.82105","perimeter":"0.0","tract_cent":"1160940.90273582","census_t_1":"17031050200","tract_numa":"32","tract_comm":"5","objectid":"219","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927858.41560258","census_tra":"050200","tract_ce_3":"41.95773556","tract_crea":"","tract_ce_2":"-87.6837181","shape_len":"10609.8932164"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68824192175909,41.95401607325369],[-87.68846623699575,41.954012741527166],[-87.68846811213312,41.954083982187186],[-87.68847627158475,41.95439399274134],[-87.68848183786501,41.95457124517579],[-87.68848704207932,41.95473696988376],[-87.68849277893642,41.954935271090505],[-87.68850064669621,41.95520723915743],[-87.68850764632536,41.95539909909304],[-87.68851294342484,41.95557750255218],[-87.6885204983902,41.955846923575564],[-87.68852722183851,41.95608668872035],[-87.68852989498681,41.9561753142936],[-87.68853536760916,41.9563545145348],[-87.68854893150534,41.956755751462055],[-87.6885497253121,41.956779234285776],[-87.68855658350965,41.95707279352693],[-87.68856485327512,41.95737206863715],[-87.68857404184375,41.95766941312576],[-87.68858395413275,41.957990199409195],[-87.68859258573396,41.95829010767061],[-87.68860114821574,41.95857769402745],[-87.68860956018642,41.95886023017914],[-87.68861519877555,41.959048569482825],[-87.68862469620001,41.9592881373918],[-87.6886297169779,41.959491706590214],[-87.68863578869647,41.95973786576769],[-87.68864161067927,41.95991163432286],[-87.68865243164124,41.96019503463904],[-87.68865682946303,41.96040260410684],[-87.68866316967785,41.96070184048764],[-87.68866712120447,41.96082773951587],[-87.68867597188851,41.96106584928568],[-87.68868200223214,41.96127798382275],[-87.68868299355762,41.96131284796762],[-87.68822147023374,41.96131938579371],[-87.68807390171247,41.961321412664915],[-87.68746967270563,41.96132971060097],[-87.6872687283057,41.961332469618185],[-87.68714101625845,41.96133425577051],[-87.68696491235067,41.96133668673015],[-87.68661976812031,41.96134105497804],[-87.6864326398452,41.96134282697747],[-87.68632720410915,41.96134453988528],[-87.68625932633145,41.96134564249687],[-87.68574659224521,41.96135396979371],[-87.68554742522267,41.96135729207418],[-87.68526681290143,41.961361196815055],[-87.68504245734421,41.96136478738753],[-87.6848658710187,41.96136760455004],[-87.68455954650373,41.96137265210511],[-87.6844295514148,41.96137480021653],[-87.68433309395058,41.96137639409338],[-87.68382991246887,41.961385359852365],[-87.68382577720797,41.961385433602494],[-87.68345043897943,41.96139211982356],[-87.6831486583801,41.961398610834635],[-87.68278636400956,41.96140457705099],[-87.6825065916087,41.96140897376081],[-87.68221178315324,41.96141310970706],[-87.68198559423686,41.96141628242924],[-87.68166511345359,41.96142132427051],[-87.6814026630656,41.96142530317099],[-87.68120971301828,41.961428228150275],[-87.68093244361856,41.961432366034124],[-87.68059553672343,41.96143647483569],[-87.68030625011642,41.96144000227292],[-87.67993326704239,41.96144487784026],[-87.67979475032314,41.96144707017125],[-87.67970021879414,41.96144856628966],[-87.67959638134882,41.96145020966743],[-87.67949841994425,41.96145175990817],[-87.6791330569593,41.96145568835764],[-87.6789591487396,41.96145824660338],[-87.67895408401432,41.96122456657325],[-87.67895109330766,41.961114397031885],[-87.67895013673852,41.96092397100634],[-87.67895011643424,41.96081455960067],[-87.67894482053899,41.960539120163425],[-87.6789388381019,41.96022797547581],[-87.67893351300785,41.96005849027102],[-87.67893040761916,41.95995957130706],[-87.67891893981859,41.95962904700514],[-87.6789112132813,41.95940633926343],[-87.67890531208702,41.959206966318376],[-87.67890174848424,41.95908812177272],[-87.67888928043656,41.95871481087395],[-87.67888912788837,41.95871024446419],[-87.67888311735187,41.95853022769722],[-87.6788772899055,41.958330882583304],[-87.67887240305596,41.95816167423974],[-87.67886550799545,41.95780613389074],[-87.67886195791068,41.95762306364352],[-87.67885446676469,41.95741374753323],[-87.67884842930361,41.95724568517082],[-87.67884374804228,41.95708517711091],[-87.6788375511676,41.956892636302854],[-87.67883406807366,41.9567844114353],[-87.67883243439064,41.9567242490448],[-87.67882948401616,41.956614408950394],[-87.67882406294787,41.95641119674912],[-87.67881751941776,41.95616681499154],[-87.67881118718651,41.95598338360879],[-87.67881102298043,41.955978628054254],[-87.67880090138895,41.95568544068195],[-87.67879573956795,41.955514392344334],[-87.67879058131739,41.955343069051956],[-87.67878918206137,41.95530376398163],[-87.67878180080635,41.95509535372511],[-87.67877506268258,41.95490511435038],[-87.67877195755419,41.954781058326816],[-87.67876907479896,41.95464281599893],[-87.67876820892681,41.95460129115395],[-87.67876710560692,41.95456601352278],[-87.67875620656106,41.954217521128164],[-87.67875431222792,41.9541569379086],[-87.67996687465016,41.95413890382692],[-87.6811830229958,41.9541208034863],[-87.68240003341639,41.954102677311326],[-87.68361150835372,41.95408474208641],[-87.68482839037304,41.95406671375175],[-87.6860417990498,41.95404872400946],[-87.68627742676321,41.95404522927635],[-87.68725001728012,41.954030798707116],[-87.68749566109508,41.95402715257088],[-87.68824192175909,41.95401607325369]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4277151.75184","perimeter":"0.0","tract_cent":"1158816.27118126","census_t_1":"17031050300","tract_numa":"18","tract_comm":"5","objectid":"220","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927811.92264744","census_tra":"050300","tract_ce_3":"41.95765192","tract_crea":"","tract_ce_2":"-87.69153025","shape_len":"8667.91730728"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68846623699575,41.954012741527166],[-87.69024601465834,41.95398629422999],[-87.69087438251593,41.95400216390905],[-87.69090759747247,41.95400300261868],[-87.6920680730256,41.95399957434864],[-87.69322382180046,41.95399614833375],[-87.69340563430738,41.953995608369],[-87.69454306450416,41.95399222338647],[-87.6945331872902,41.95405164538196],[-87.69451201486822,41.954179027503095],[-87.69450294623897,41.95424409719031],[-87.69449707755048,41.95429060636767],[-87.69449016011576,41.954342735342884],[-87.6944919836051,41.95438838173121],[-87.69448922255278,41.954429255122776],[-87.69448370583358,41.95447733018267],[-87.69447551454832,41.954524485318274],[-87.69445959102225,41.95457650929042],[-87.6944487105139,41.95461316629573],[-87.69444273502661,41.95465931812543],[-87.69444263951874,41.95470937201385],[-87.69444364638868,41.95476684140761],[-87.69444599261598,41.95482640385482],[-87.69443969790863,41.954886110311165],[-87.69443761619863,41.9549399401566],[-87.69444473812737,41.95502194938563],[-87.69447313097115,41.95505396767718],[-87.69446079881416,41.95527277735436],[-87.69446548479897,41.9553704696365],[-87.694430129364,41.95551653962619],[-87.69441592800892,41.95563904450984],[-87.69441184042356,41.95568388961451],[-87.69441021402058,41.95573261775311],[-87.69440221930252,41.95582985664244],[-87.69439259939517,41.95588029549142],[-87.69439325165392,41.956255050490974],[-87.6943920376209,41.95637659032116],[-87.69437029921603,41.95654487908425],[-87.69436649324228,41.956811754892236],[-87.69427449557075,41.956849771558694],[-87.69427661054114,41.956939793437655],[-87.6942742719327,41.95699727163077],[-87.69426710457037,41.95703024458714],[-87.6943761128393,41.95705966552635],[-87.69437559884706,41.95742395659666],[-87.69435109779883,41.95755798467574],[-87.69434810210946,41.95760494943089],[-87.69434739767392,41.957615991230796],[-87.69434703887107,41.95762161925551],[-87.69434532629516,41.957635608488985],[-87.69433995756938,41.95767946374327],[-87.69433744232683,41.95771778636029],[-87.69434328639127,41.95775843319733],[-87.69434695039371,41.95779281110115],[-87.69434258012765,41.95785121101108],[-87.69434609351664,41.95788594482342],[-87.69436440110982,41.95794131510767],[-87.69438994933596,41.958007949504264],[-87.6944017943785,41.95807354716054],[-87.69440799109803,41.95814882788447],[-87.69441619484658,41.958279504244445],[-87.6944163014412,41.95828119993612],[-87.69443806306342,41.95850977651042],[-87.69444421806969,41.95854584525561],[-87.6944563672949,41.95861703976238],[-87.69447202713705,41.958705627668486],[-87.69448367427482,41.95876897395551],[-87.69450271449686,41.95882465014953],[-87.69451661588317,41.95889421088917],[-87.69453311796107,41.958990514972655],[-87.69454681348176,41.9590360410484],[-87.69454813474667,41.95904043309792],[-87.69456537824883,41.95911404641256],[-87.69458003393612,41.95920380871983],[-87.69459076741589,41.95931816476103],[-87.69459767613745,41.9593921321998],[-87.6945968030152,41.95944075747665],[-87.69458703395976,41.95955946976183],[-87.69458552480606,41.95964063507644],[-87.69459751699598,41.95974308824348],[-87.69462174202592,41.959850274619214],[-87.69463156410893,41.95989387986194],[-87.69464452116355,41.95995130591581],[-87.69466473510522,41.960055176913585],[-87.69466984146325,41.9601550122036],[-87.6946702187273,41.96024241735953],[-87.69468047863147,41.96036302890631],[-87.69468107155008,41.960370001123216],[-87.69468051864237,41.960455452713184],[-87.69467327208682,41.96056257375795],[-87.69468085737005,41.9606608586298],[-87.69468342377372,41.960702090922304],[-87.69469374330366,41.9607695735369],[-87.69469883493811,41.960841472686894],[-87.69470260866329,41.960938501456184],[-87.69469968082537,41.9610181495467],[-87.6947034808136,41.96110153974244],[-87.69471257957368,41.96115504753848],[-87.69472490475721,41.96120950631116],[-87.69474577254063,41.96127342660608],[-87.69401360919292,41.9612785709354],[-87.69357002168078,41.96128107760688],[-87.69331421494957,41.961282522547286],[-87.69306859040043,41.96128428138427],[-87.69274953781321,41.96128637095059],[-87.69235289992974,41.96128900589522],[-87.69204914368117,41.961291022769885],[-87.69180411532399,41.96129202345781],[-87.69148448189316,41.96129332827927],[-87.69139873715697,41.961293617252586],[-87.69113192791907,41.96129606165997],[-87.69085930813809,41.961298558001175],[-87.69055198724651,41.96130035036419],[-87.6902449250857,41.96130200614332],[-87.6899070459861,41.96130426966961],[-87.68964487555915,41.9613060253197],[-87.68929086908598,41.96130770457293],[-87.68893169956822,41.96130932411727],[-87.68868299355762,41.96131284796762],[-87.68868200223214,41.96127798382275],[-87.68867597188851,41.96106584928568],[-87.68866712120447,41.96082773951587],[-87.68866316967785,41.96070184048764],[-87.68865682946303,41.96040260410684],[-87.68865243164124,41.96019503463904],[-87.68864161067927,41.95991163432286],[-87.68863578869647,41.95973786576769],[-87.6886297169779,41.959491706590214],[-87.68862469620001,41.9592881373918],[-87.68861519877555,41.959048569482825],[-87.68860956018642,41.95886023017914],[-87.68860114821574,41.95857769402745],[-87.68859258573396,41.95829010767061],[-87.68858395413275,41.957990199409195],[-87.68857404184375,41.95766941312576],[-87.68856485327512,41.95737206863715],[-87.68855658350965,41.95707279352693],[-87.6885497253121,41.956779234285776],[-87.68854893150534,41.956755751462055],[-87.68853536760916,41.9563545145348],[-87.68852989498681,41.9561753142936],[-87.68852722183851,41.95608668872035],[-87.6885204983902,41.955846923575564],[-87.68851294342484,41.95557750255218],[-87.68850764632536,41.95539909909304],[-87.68850064669621,41.95520723915743],[-87.68849277893642,41.954935271090505],[-87.68848704207932,41.95473696988376],[-87.68848183786501,41.95457124517579],[-87.68847627158475,41.95439399274134],[-87.68846811213312,41.954083982187186],[-87.68846623699575,41.954012741527166]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2259492.80122","perimeter":"0.0","tract_cent":"1166490.54813418","census_t_1":"17031282400","tract_numa":"9","tract_comm":"28","objectid":"316","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897396.43914235","census_tra":"282400","tract_ce_3":"41.87402879","tract_crea":"","tract_ce_2":"-87.66418956","shape_len":"6062.48916878"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66643949972536,41.87163010534821],[-87.66653065356796,41.87162812776742],[-87.66656535110525,41.872631785010945],[-87.66656953970278,41.872852870091386],[-87.66657042636035,41.872899684437755],[-87.66657097741765,41.872928765147066],[-87.66657099420183,41.872929658497455],[-87.66658459119371,41.87364734963575],[-87.66659761089487,41.87414953071171],[-87.66659893093727,41.87420043429774],[-87.66660024382597,41.87425107247298],[-87.66661011425553,41.87463177425463],[-87.66662640161903,41.875177179921934],[-87.666633456144,41.87539443245995],[-87.66663654838824,41.875489661254136],[-87.66664323518884,41.87569354578846],[-87.66664694305231,41.87580659737234],[-87.66665465625822,41.876041777759994],[-87.66665779393247,41.87613744506308],[-87.66666479808576,41.87635101064961],[-87.66643742172624,41.87635021984639],[-87.66593791561239,41.87635928300301],[-87.66582429360622,41.876362195924024],[-87.66506443675465,41.87638167342808],[-87.6645112773865,41.87639137864157],[-87.66428823908548,41.87639574305818],[-87.66413086661443,41.876398822301965],[-87.66330201137353,41.87641308938691],[-87.66211839505728,41.87643285141191],[-87.66192589144838,41.87643644430854],[-87.66185300948032,41.87643780442034],[-87.66185119498267,41.87637198595141],[-87.66184509903506,41.87615085183319],[-87.66183422574375,41.87575643283702],[-87.66183344255897,41.87572801898909],[-87.66182921942035,41.87557482002895],[-87.66182683242772,41.875488210255874],[-87.66182246050198,41.87532961934555],[-87.66182055361243,41.87526046002564],[-87.6618171913033,41.87513846817835],[-87.66179425733714,41.87438995034169],[-87.66179120292162,41.87429898811266],[-87.66178970257867,41.874246731881456],[-87.66178845689774,41.87420336493412],[-87.66178684534981,41.87414724607184],[-87.66177607028222,41.87377197604835],[-87.66177574222772,41.873760557784074],[-87.66177543088986,41.87374971728172],[-87.66177293576679,41.87366281952542],[-87.66176311229684,41.87335200370249],[-87.66175695713508,41.873157263298786],[-87.66175241505951,41.87301354762327],[-87.66175029280512,41.87293642156014],[-87.66174326542013,41.872681028424786],[-87.66173776062489,41.87252742781237],[-87.66173320570796,41.87240034274094],[-87.66172647708237,41.87217769323414],[-87.66172443121329,41.872110004803204],[-87.66171284627775,41.871726676908466],[-87.6619471365538,41.8717139737714],[-87.66201950171981,41.8717100499113],[-87.66231558743195,41.87169399535699],[-87.66232552991217,41.87169345630069],[-87.66293453891869,41.871683022816704],[-87.66354813698956,41.87167250831082],[-87.66398249280213,41.87166506289965],[-87.66414972481724,41.87166240243411],[-87.66436377867977,41.87165899690615],[-87.66560625310422,41.87164114521097],[-87.66633100795167,41.87163245883691],[-87.66643949972536,41.87163010534821]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4573936.19537","perimeter":"0.0","tract_cent":"1164328.95939536","census_t_1":"17031031000","tract_numa":"15","tract_comm":"3","objectid":"221","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1933241.96003549","census_tra":"031000","tract_ce_3":"41.97243708","tract_crea":"","tract_ce_2":"-87.67110953","shape_len":"8770.33965406"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6688043627764,41.96888045160187],[-87.66925034935946,41.968875260985705],[-87.66943908805214,41.96887698019632],[-87.66965469120707,41.968878943864716],[-87.67022774107994,41.96887247106258],[-87.67048575893706,41.96886955664363],[-87.67085065195758,41.96886543463049],[-87.67101927076848,41.96886255687173],[-87.67121593453449,41.96885919956969],[-87.67180659604392,41.968852505971796],[-87.67183980308228,41.968852128715966],[-87.67241866211207,41.96884554837269],[-87.6725970960567,41.96884201926602],[-87.6727410699406,41.96883917139114],[-87.67332842740366,41.96883195699351],[-87.67338907034456,41.96883121479359],[-87.67399816341954,41.96882375830666],[-87.67417408633298,41.96882177350465],[-87.67417600084575,41.968937072336814],[-87.67418564080201,41.969175461770455],[-87.67419509948213,41.96953495185012],[-87.67420140714108,41.96977559981443],[-87.67420846519116,41.97004333736199],[-87.67420207345799,41.97016039581218],[-87.6741946846978,41.97025288791783],[-87.67419955199448,41.970418775493926],[-87.67420499162523,41.97060494601054],[-87.6742174726977,41.971031549109185],[-87.67422777642662,41.971383936438855],[-87.67422787510945,41.97138731237451],[-87.67422940680163,41.97143984520441],[-87.67423659003464,41.97168472418668],[-87.67424240708442,41.97178903699845],[-87.67424788704149,41.97188731145102],[-87.67425498757372,41.97214025761859],[-87.67426430282914,41.97247316195508],[-87.67426654373138,41.972553216606045],[-87.67427745230361,41.97294328520255],[-87.67428515118749,41.973273759003106],[-87.67431267853443,41.973368124646164],[-87.67433814548214,41.973455427228004],[-87.6743445549484,41.973679171326495],[-87.67434821658897,41.973820299181945],[-87.67434889710347,41.973846537653394],[-87.67435408238438,41.97404634527419],[-87.67435450986274,41.97421539052403],[-87.67435669302682,41.97427865689296],[-87.67435938017908,41.97435649786214],[-87.67437113704659,41.974721461760254],[-87.67438323431779,41.97509979184608],[-87.6743853521586,41.975185203804365],[-87.67438752041743,41.975272646210406],[-87.67439621657711,41.97565984794665],[-87.67440395328953,41.97601526630958],[-87.67440756779531,41.97610340524942],[-87.67429832885878,41.9761047795372],[-87.67273812600183,41.97612775474664],[-87.67221373049362,41.97613549328124],[-87.67207387804504,41.97613714633226],[-87.67193585395414,41.976138777365044],[-87.67135069808845,41.976147040026284],[-87.67079412237864,41.97615486092691],[-87.67022735392065,41.976163155921796],[-87.66961376894655,41.97617213298717],[-87.66902893495075,41.97618068643709],[-87.6686028548718,41.97618705668097],[-87.66841697209803,41.97619059403079],[-87.66840955543233,41.97608849565028],[-87.66836632079823,41.975712426756495],[-87.6683266144155,41.97536843079487],[-87.66831713389813,41.97527780793593],[-87.66830761528698,41.97518681932666],[-87.66826371340169,41.97482907800621],[-87.66822052294935,41.97447715847484],[-87.66820802308449,41.97436579005438],[-87.66819871444174,41.9742828524773],[-87.66815669609953,41.97394562115587],[-87.66810534354575,41.97353712369307],[-87.66808520393363,41.97341672920159],[-87.66805981696018,41.973264964419734],[-87.66801352796261,41.973044967965926],[-87.66792606328698,41.97262602520033],[-87.66791468284912,41.97253815795846],[-87.66789077428895,41.97235260794046],[-87.66784679474698,41.97197798927448],[-87.66783513641855,41.97187494085146],[-87.6678235990085,41.97177296199311],[-87.66776344958988,41.97124129130987],[-87.6677053151706,41.970711103672166],[-87.66766940228844,41.970381097181864],[-87.66757642812696,41.96951377414819],[-87.66751630266968,41.969051438861186],[-87.66749666128202,41.96890048871616],[-87.66775329497311,41.968892798595355],[-87.66813934216285,41.968888451644716],[-87.66839813117106,41.968885228882286],[-87.66867034968928,41.96888203334407],[-87.66875427344854,41.968881034583724],[-87.6688043627764,41.96888045160187]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5921329.28764","perimeter":"0.0","tract_cent":"1166298.18561025","census_t_1":"17031031100","tract_numa":"13","tract_comm":"3","objectid":"222","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1933341.40227386","census_tra":"031100","tract_ce_3":"41.97266796","tract_crea":"","tract_ce_2":"-87.6638655","shape_len":"9783.45075133"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66729291463818,41.96890659379947],[-87.66749666128202,41.96890048871616],[-87.66751630266968,41.969051438861186],[-87.66757642812696,41.96951377414819],[-87.66766940228844,41.970381097181864],[-87.6677053151706,41.970711103672166],[-87.66776344958988,41.97124129130987],[-87.6678235990085,41.97177296199311],[-87.66783513641855,41.97187494085146],[-87.66784679474698,41.97197798927448],[-87.66789077428895,41.97235260794046],[-87.66791468284912,41.97253815795846],[-87.66792606328698,41.97262602520033],[-87.66801352796261,41.973044967965926],[-87.66805981696018,41.973264964419734],[-87.66808520393363,41.97341672920159],[-87.66810534354575,41.97353712369307],[-87.66815669609953,41.97394562115587],[-87.66819871444174,41.9742828524773],[-87.66820802308449,41.97436579005438],[-87.66822052294935,41.97447715847484],[-87.66826371340169,41.97482907800621],[-87.66830761528698,41.97518681932666],[-87.66831713389813,41.97527780793593],[-87.6683266144155,41.97536843079487],[-87.66836632079823,41.975712426756495],[-87.66840955543233,41.97608849565028],[-87.66841697209803,41.97619059403079],[-87.66803329756755,41.97619827882462],[-87.66780473406114,41.97620183593592],[-87.66776769419168,41.97620241235207],[-87.66739089907587,41.9762082751382],[-87.66626253706247,41.97622576327793],[-87.66535870137336,41.97623891669778],[-87.66528436559992,41.97623999811894],[-87.66495895820863,41.97624471755442],[-87.66475212005659,41.976247833608305],[-87.66457138747012,41.9762505558223],[-87.66415093478868,41.97625853697619],[-87.6640791519752,41.976259898960066],[-87.66377052021363,41.97626405421468],[-87.66355236845232,41.97626714108777],[-87.66334756874757,41.97627003873494],[-87.66294534441481,41.97627709168131],[-87.66273124484403,41.97627994160448],[-87.66249480782427,41.97628342129268],[-87.6623462130661,41.976285607719255],[-87.66213059782147,41.97628878026012],[-87.6617454969839,41.97629404412612],[-87.66131931090615,41.97629986805829],[-87.6611424915858,41.97630327077899],[-87.6609934820996,41.9763061379781],[-87.66061142420246,41.976312249548194],[-87.66054304513796,41.976313343320726],[-87.66025264945799,41.9763179875853],[-87.66002739772259,41.976321249508615],[-87.65986612873996,41.976322763446454],[-87.65986381286126,41.976210028029975],[-87.65985566930507,41.97590784389584],[-87.65984603064521,41.97556613449893],[-87.65984315446775,41.97542898969109],[-87.65984064543879,41.97530935557753],[-87.65983770268926,41.97520826943359],[-87.65983392170844,41.97507836427112],[-87.65982618662979,41.97474797209606],[-87.65982221598749,41.97461872441832],[-87.65982022684703,41.97455397487153],[-87.65981485008204,41.97437892043319],[-87.65980007440474,41.97382670062971],[-87.6597947672191,41.97364470182842],[-87.65978916075561,41.97345243740595],[-87.65978351972532,41.97324527176385],[-87.65977929690905,41.97309019991629],[-87.65977160621736,41.97281496632552],[-87.65976790942712,41.97267625299068],[-87.6597638582972,41.972524227649174],[-87.65975237519608,41.9720574539709],[-87.65974680989473,41.971754955437476],[-87.65973647527241,41.97145841126387],[-87.65973139517685,41.971312334769756],[-87.65972073921458,41.970857832701626],[-87.65971057843451,41.97051688831095],[-87.65970624499917,41.9703346478635],[-87.6597035166148,41.970240889907764],[-87.65969743650608,41.970005182141605],[-87.65968792884567,41.9696860304991],[-87.65967816559726,41.969307383025715],[-87.65967639042887,41.969203641748486],[-87.65967036299939,41.969025314705114],[-87.65996291296776,41.96901904620799],[-87.66043008724199,41.96901326661539],[-87.66047760349205,41.969012678771485],[-87.66084030380291,41.969007394624676],[-87.6610462402477,41.96900473007745],[-87.66128541318041,41.9690011365273],[-87.6614867277791,41.968998326956246],[-87.66188106549195,41.96899282263823],[-87.66211427228951,41.96898938565834],[-87.66253294850222,41.96898321432817],[-87.66268964581174,41.96898117485518],[-87.66290549880009,41.96897836539759],[-87.66292889973695,41.96897794168608],[-87.66309304391118,41.968974970133594],[-87.6634533570679,41.96896844619023],[-87.66367999653028,41.968963682323626],[-87.66401959485567,41.968959125480495],[-87.66418454380263,41.96895654701026],[-87.66436729327098,41.96895368784099],[-87.66443220924822,41.9689526004143],[-87.66458420125147,41.968950053996785],[-87.66473676845744,41.96894749783015],[-87.66531649833088,41.96893823777209],[-87.6658014185209,41.96893047730776],[-87.66619933839445,41.96892318893908],[-87.66633079406303,41.968920063409136],[-87.6664220385311,41.968917893479286],[-87.66681768402802,41.96891278182419],[-87.66691190856127,41.968911554974945],[-87.66729291463818,41.96890659379947]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3513608.49666","perimeter":"0.0","tract_cent":"1168072.24974855","census_t_1":"17031031200","tract_numa":"16","tract_comm":"3","objectid":"223","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1933370.49042254","census_tra":"031200","tract_ce_3":"41.97270955","tract_crea":"","tract_ce_2":"-87.65734111","shape_len":"7966.8839642"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6594842921456,41.96902930138703],[-87.65967036299939,41.969025314705114],[-87.65967639042887,41.969203641748486],[-87.65967816559726,41.969307383025715],[-87.65968792884567,41.9696860304991],[-87.65969743650608,41.970005182141605],[-87.6597035166148,41.970240889907764],[-87.65970624499917,41.9703346478635],[-87.65971057843451,41.97051688831095],[-87.65972073921458,41.970857832701626],[-87.65973139517685,41.971312334769756],[-87.65973647527241,41.97145841126387],[-87.65974680989473,41.971754955437476],[-87.65975237519608,41.9720574539709],[-87.6597638582972,41.972524227649174],[-87.65976790942712,41.97267625299068],[-87.65977160621736,41.97281496632552],[-87.65977929690905,41.97309019991629],[-87.65978351972532,41.97324527176385],[-87.65978916075561,41.97345243740595],[-87.6597947672191,41.97364470182842],[-87.65980007440474,41.97382670062971],[-87.65981485008204,41.97437892043319],[-87.65982022684703,41.97455397487153],[-87.65982221598749,41.97461872441832],[-87.65982618662979,41.97474797209606],[-87.65983392170844,41.97507836427112],[-87.65983770268926,41.97520826943359],[-87.65984064543879,41.97530935557753],[-87.65984315446775,41.97542898969109],[-87.65984603064521,41.97556613449893],[-87.65985566930507,41.97590784389584],[-87.65986381286126,41.976210028029975],[-87.65986612873996,41.976322763446454],[-87.65971436585066,41.976324188043925],[-87.65946244232964,41.97632830770533],[-87.65940734360562,41.97632907371178],[-87.65921549029554,41.97633185804601],[-87.65910477664595,41.976333480615295],[-87.6589296951687,41.97633604629228],[-87.65876016673609,41.97633872967708],[-87.65871814445337,41.97633939436605],[-87.65854155343918,41.97634218932559],[-87.65851376331834,41.976342629147304],[-87.65833161522656,41.97634551131386],[-87.65795214309124,41.97635049670485],[-87.65781646897766,41.97635285618757],[-87.65762319355474,41.976356217299575],[-87.65711844972414,41.97636379836698],[-87.65702600111534,41.9763651870603],[-87.65641614207377,41.97637422611496],[-87.65612653585707,41.97637851745409],[-87.65571272027248,41.976385346053014],[-87.6555961308393,41.97638726973817],[-87.65519837505637,41.97639276924902],[-87.65499285690912,41.976395927927655],[-87.65500443796294,41.97622450175555],[-87.65499326539094,41.97584260786578],[-87.65498412517488,41.97536967342087],[-87.65498059878608,41.97528057476989],[-87.65497574438346,41.97515793634672],[-87.65496574765046,41.97469295496312],[-87.65495889084633,41.97437573982336],[-87.65495512578512,41.97429742554975],[-87.65495051599564,41.9742015434031],[-87.6549383196787,41.97368745492591],[-87.65493074788378,41.97341680486022],[-87.6549283927562,41.97331309666446],[-87.65492518395028,41.9731717694889],[-87.65491382191713,41.972676154868495],[-87.65489826302664,41.972104720296855],[-87.65488623851948,41.97167841991712],[-87.65488441967392,41.971580496067666],[-87.65488141764288,41.971418899753274],[-87.65487013050266,41.971002866993246],[-87.65486586009582,41.97083268835973],[-87.65486474915295,41.97078840657058],[-87.65486102208625,41.97063986780017],[-87.65485992220722,41.97059603392863],[-87.65485226693508,41.9703060634912],[-87.65484884214099,41.97017783413774],[-87.65484448695929,41.97003148727511],[-87.65484071065784,41.96990457332937],[-87.65482831593368,41.96938850773832],[-87.65482207286492,41.969090295689504],[-87.65500282606712,41.96908795115081],[-87.65550248778126,41.96908071646362],[-87.65555445351316,41.96908002603029],[-87.65606712606376,41.969073214212195],[-87.65622046452037,41.96907066705486],[-87.65631582178227,41.96906908292211],[-87.65677296594225,41.96906258481349],[-87.65692406747986,41.969060944213446],[-87.65745453875977,41.96905518357857],[-87.65762482574735,41.969052316931744],[-87.65777219457503,41.96904983602156],[-87.65816117450294,41.96904575777788],[-87.65831952156661,41.969044112124415],[-87.65842189448657,41.96904304800209],[-87.65842199377913,41.96904304721373],[-87.65865695144473,41.9690406044875],[-87.65888353506779,41.96903756461594],[-87.65901398396302,41.96903581420148],[-87.65921635923542,41.969033983820495],[-87.6594842921456,41.96902930138703]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"16395461.7401","perimeter":"0.0","tract_cent":"1171887.41496059","census_t_1":"17031031400","tract_numa":"33","tract_comm":"3","objectid":"224","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1929646.25393692","census_tra":"031400","tract_ce_3":"41.96240669","tract_crea":"","tract_ce_2":"-87.64342238","shape_len":"29131.6078664"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64424033642456,41.96982820795803],[-87.64397292027436,41.96954241326657],[-87.64387979662439,41.9694487257215],[-87.64381262379976,41.9693811464309],[-87.64371137282511,41.96927928243099],[-87.6436899997,41.96925778000201],[-87.64367819018099,41.96924589856388],[-87.6436718961849,41.96923956637827],[-87.64358177118847,41.969157320164726],[-87.64353552169645,41.96911511389749],[-87.64345137647342,41.969038325778236],[-87.64329584535302,41.96890335297473],[-87.64325564561665,41.96886846689112],[-87.64314572373051,41.96877307323252],[-87.64279234170681,41.96849090236905],[-87.6426275011705,41.96835423711015],[-87.64262760900166,41.96835416064683],[-87.6426818182488,41.968315768834444],[-87.64274414913028,41.96827162515717],[-87.6428733145698,41.96837881125005],[-87.64301256698569,41.96849436701988],[-87.64316897835857,41.96838065439492],[-87.64327192793417,41.96830580906892],[-87.64327192941974,41.96830580770575],[-87.64311858381491,41.968180587507206],[-87.64296523770712,41.96805536709897],[-87.64292919727646,41.96804134455723],[-87.64292905996173,41.96804129104276],[-87.64289970819992,41.96803524193017],[-87.6428863058847,41.9680344829601],[-87.64286935362918,41.968033522892746],[-87.64286003975555,41.968034345569144],[-87.64283909909618,41.96803619462368],[-87.64282221603251,41.96804023407867],[-87.64281012120367,41.96804312781328],[-87.64280244494907,41.96804577123405],[-87.64263848777075,41.96815050833467],[-87.64261553292445,41.968165171905454],[-87.6426155460279,41.9681651843332],[-87.64265730699856,41.96820449847659],[-87.642668897158,41.968215410272705],[-87.64255778266741,41.96829624427198],[-87.64210701273075,41.96793715170245],[-87.6419725674745,41.96783004902637],[-87.64167850255254,41.967623258670216],[-87.64152678185064,41.96752495275678],[-87.641117222394,41.96728415003376],[-87.64100590085772,41.96721868978357],[-87.64092989041427,41.96717399290844],[-87.64070272527567,41.96704109297574],[-87.64063048990782,41.96700232337794],[-87.64048626511837,41.9669249147818],[-87.64043882521709,41.96691274881575],[-87.64032817387437,41.966884371342175],[-87.6401154339944,41.966829812100066],[-87.63949583250712,41.966685538472134],[-87.63900033932742,41.966567917723125],[-87.63851064887476,41.966400384917485],[-87.63802035938708,41.96623062386387],[-87.63742632769915,41.96603534171279],[-87.636440011006,41.96578169495479],[-87.63628896960634,41.96575153658683],[-87.6358704699605,41.9656679739134],[-87.63509418152557,41.9655400675966],[-87.63480731916584,41.96551227264214],[-87.63452878104134,41.96548528339393],[-87.63409581105167,41.96548231781093],[-87.6338467898878,41.96545906975685],[-87.63355209925247,41.96543155766458],[-87.63311139028433,41.96537537748023],[-87.63297965626624,41.965358584000214],[-87.63257873739288,41.965256221095984],[-87.63243673863886,41.965205220965245],[-87.6323936684872,41.96518975237885],[-87.63212069613087,41.96510296984334],[-87.63212057594671,41.96510293151369],[-87.63211503233323,41.965101409198],[-87.6319947672895,41.96506838379978],[-87.6319947614218,41.96506838239185],[-87.63201696301091,41.96562216011097],[-87.63200942272238,41.965776668089525],[-87.6320055077712,41.96582179728278],[-87.63199603741286,41.96593097488085],[-87.63197677280166,41.96608491671894],[-87.631951629686,41.966238383563194],[-87.63194069049317,41.96629242334538],[-87.63193506811892,41.9663201965465],[-87.63193395310667,41.96632570640421],[-87.63192068386407,41.966391266379134],[-87.63188393570935,41.966543426856546],[-87.63184142277133,41.96669475682333],[-87.6318186681703,41.966765630872594],[-87.63179314799294,41.966845118532085],[-87.63173918533846,41.96699440293396],[-87.63171211179014,41.96706249511057],[-87.6316946785887,41.96710634162554],[-87.63162690041219,41.96726127691245],[-87.63155354925873,41.96741480516366],[-87.63153423025295,41.967452049923],[-87.6314747141237,41.96756678833043],[-87.63147469834654,41.967566818694614],[-87.63145932118148,41.9675942418921],[-87.63139038667063,41.96771717887586],[-87.63134725355228,41.96778863539589],[-87.63130068855625,41.96786577802843],[-87.63126656211152,41.96791847013283],[-87.63120564055244,41.96801253321402],[-87.63113261398883,41.968117918065765],[-87.6311053191524,41.9681573071284],[-87.63105674562475,41.96822416061067],[-87.63102114893462,41.968273111805],[-87.6310004815321,41.96830153219804],[-87.63096565541285,41.968378842548525],[-87.63096485537845,41.96838740148286],[-87.63096173852216,41.968420750529305],[-87.63096374079015,41.968462721616746],[-87.63097155754264,41.96850434381438],[-87.63098519304114,41.968545096297746],[-87.63099264641599,41.968560415845886],[-87.63100439480402,41.968584565615565],[-87.63102161539584,41.968610939830846],[-87.63102905852173,41.96862233977124],[-87.63105885701034,41.96865797658994],[-87.63106132837783,41.96866062668981],[-87.63107489015835,41.96867133903817],[-87.63109847645832,41.96868996990102],[-87.63113970378812,41.96871615422888],[-87.63116520326939,41.96872906743679],[-87.63118446346489,41.96873882095003],[-87.63123228027771,41.96875774624595],[-87.63126974765437,41.968768873426114],[-87.63128256677652,41.96877268036557],[-87.63128978707718,41.96877417236009],[-87.63133470115704,41.96878345457696],[-87.63138809556784,41.96878995578961],[-87.63141575371836,41.96879103734537],[-87.63144216437146,41.96879207010438],[-87.6314841359195,41.96879070790234],[-87.63150247917085,41.96878849515578],[-87.63153502188769,41.96878456956269],[-87.63156771865366,41.96877769763],[-87.63158462854548,41.968774143798775],[-87.63158463112535,41.96877414326572],[-87.6316323363826,41.96875958873351],[-87.63167539901289,41.96874193367318],[-87.63167751223163,41.968741067346826],[-87.63169912193769,41.968729635905135],[-87.63171956471236,41.968718821907856],[-87.63175127443024,41.96869761092756],[-87.63175794191126,41.968693150909324],[-87.63176173645783,41.968689960638685],[-87.63179216147208,41.968664381260226],[-87.6318025723746,41.968653312752544],[-87.63182177721434,41.968632894426],[-87.63183288119903,41.96861764140184],[-87.63184638054068,41.968599098720404],[-87.63185668601518,41.96858151647618],[-87.63187225330182,41.96855091468586],[-87.63187525085596,41.96854502199177],[-87.63187739847382,41.968538773669906],[-87.6318882417097,41.96850723166339],[-87.63189543169248,41.96846858235558],[-87.6318967793621,41.96842956777248],[-87.63189224142944,41.968390682429316],[-87.6318876943822,41.96837387879517],[-87.63188188750438,41.96835241988372],[-87.63186932792793,41.968323317450874],[-87.63186585741296,41.968315275219155],[-87.6318443313622,41.968279716048684],[-87.63181759936342,41.96824615577159],[-87.63181559923396,41.96824419022697],[-87.63178598618836,41.96821509032519],[-87.63175073204913,41.96818743287117],[-87.63175097670583,41.96818728727711],[-87.63181991685242,41.96814623407457],[-87.63182002086258,41.96814617186792],[-87.63185783642625,41.96817735588322],[-87.63185857582727,41.96817796577199],[-87.63189257791154,41.9682125306562],[-87.63191401126296,41.96823974715378],[-87.63192166362762,41.9682494809388],[-87.63194554170374,41.9682884847165],[-87.63196395956233,41.96832910165163],[-87.63197670220094,41.968370918528635],[-87.63198366330363,41.96841346928331],[-87.63198453988156,41.96844847198701],[-87.63198473672007,41.96845633971706],[-87.63198366343936,41.968465953232375],[-87.6319799661419,41.96849906550366],[-87.6319693549118,41.968541206767306],[-87.63195559213433,41.968575824208344],[-87.63195301881703,41.96858229715073],[-87.63193114626343,41.96862195471209],[-87.63190948831758,41.96865203604349],[-87.63190774375762,41.968654459491],[-87.63190396188419,41.96865971320883],[-87.63187176446641,41.96869521853995],[-87.63185777217865,41.968707678708675],[-87.63183485385113,41.96872808779642],[-87.63181846133358,41.96874069328061],[-87.63177498233055,41.96876888550365],[-87.63172786363518,41.968793624666155],[-87.63167762272865,41.968814667222766],[-87.6316247778271,41.96883176990767],[-87.63161070221182,41.968835096560795],[-87.63156988222195,41.96884474373098],[-87.63155736330808,41.96884668254612],[-87.63151345226596,41.96885348207836],[-87.63145615035398,41.96885790667128],[-87.63139856527357,41.96885791161487],[-87.63136977343946,41.96885572297278],[-87.63134124871564,41.968853554617354],[-87.63132034911906,41.968850336848554],[-87.63128482693705,41.968844867225314],[-87.63125421819116,41.96883765790421],[-87.63122992118791,41.968831935016674],[-87.63117704576057,41.96881487255367],[-87.63112675238713,41.96879390082899],[-87.63108632885638,41.96877270378518],[-87.63107962499461,41.96876918861884],[-87.63105548233851,41.968754305123056],[-87.6310554454969,41.96875427800452],[-87.63104760614725,41.968748618431945],[-87.6310146588878,41.96872482964572],[-87.63097813319878,41.96869238899363],[-87.630947030864,41.96865808664023],[-87.63094643647574,41.96865743153029],[-87.63094630677712,41.9686572880383],[-87.63094316749626,41.96865291049116],[-87.630919505586,41.96861991296615],[-87.63090457699887,41.96859260271703],[-87.63089805822918,41.968580677146996],[-87.63089098445815,41.968562637393454],[-87.63088210468234,41.96853999279606],[-87.63087467491036,41.96850964174849],[-87.63087189896714,41.96849830054209],[-87.63087157665959,41.96849517155262],[-87.63086754618575,41.96845604037631],[-87.63086786382794,41.96844704298633],[-87.6308685373675,41.968427942527256],[-87.63086904083087,41.968413679054315],[-87.63087641631019,41.96837165557804],[-87.63088046817602,41.968358936025346],[-87.63088190055828,41.968354439085644],[-87.63088955527255,41.96833040857495],[-87.6309083434478,41.968290431025714],[-87.63091063157903,41.96828632844928],[-87.63099375601784,41.96817101223596],[-87.63116947493488,41.967927241774724],[-87.6312611520885,41.96777931343796],[-87.63132486548255,41.96766879587331],[-87.63134747980429,41.96762956885683],[-87.63139432034451,41.96754187588214],[-87.63139434699546,41.96754182637504],[-87.63142834710519,41.96747817174248],[-87.63143871254223,41.96745713055815],[-87.63150371555554,41.9673251762066],[-87.63157354733082,41.967170748327355],[-87.63163780370652,41.96701496883208],[-87.63169637395444,41.96685794599816],[-87.63169802560095,41.96685326295804],[-87.6316996761261,41.96684858155757],[-87.63170270049349,41.96683876482108],[-87.63176090179292,41.9666498205067],[-87.63179751401913,41.966530961781984],[-87.63183358760728,41.96637997694288],[-87.63186385966519,41.96622829775707],[-87.63186722796853,41.96620733561771],[-87.63188832712392,41.96607600653648],[-87.63190691762122,41.9659232677693],[-87.63191962704731,41.96577019175021],[-87.63192257731731,41.96570433656384],[-87.63192649329244,41.96561691482518],[-87.63192673674433,41.965578965087275],[-87.63192731140353,41.96548926582577],[-87.63192747658282,41.965463547069255],[-87.63192745607881,41.96546213120979],[-87.63192739301601,41.965457756839754],[-87.63190782948271,41.9651026472354],[-87.63189119502786,41.96494974838174],[-87.63188203911056,41.96488766274956],[-87.63186871031077,41.96479728029077],[-87.63184041020344,41.96464535266592],[-87.6318062556637,41.964494075855804],[-87.63179835669821,41.96446379387797],[-87.63177567116402,41.96437682070304],[-87.63177562810579,41.96437665661097],[-87.63177562841285,41.964376628621984],[-87.63173443393615,41.96423373346755],[-87.63173443038292,41.96423372219461],[-87.63173385619915,41.96423186525071],[-87.63167404425836,41.964038469152115],[-87.6316572912823,41.964025759615616],[-87.63165712390274,41.964025632908104],[-87.63158886751863,41.96397384888734],[-87.63149537751936,41.96392138697303],[-87.63141415627926,41.963868999994624],[-87.6313412147512,41.96380750645389],[-87.63128050880135,41.96374914034198],[-87.63121986924823,41.96368466984843],[-87.63115936461251,41.963607990088164],[-87.63110700526096,41.963534412769874],[-87.63106691455218,41.96346091074997],[-87.63103895837038,41.96339969245731],[-87.63101931532579,41.96332631522741],[-87.63099581784097,41.963231548042955],[-87.63099259952945,41.96315216625624],[-87.63100175060207,41.96306370328083],[-87.63101489093084,41.9629844221159],[-87.6310362429583,41.962902138529714],[-87.63107378558139,41.96283521614155],[-87.63111947391027,41.962771395668014],[-87.6311858432938,41.96268633501589],[-87.63126025737434,41.962613533307355],[-87.631314157766,41.9625467103201],[-87.63139245997623,41.962492246568445],[-87.63145423715574,41.96245294362681],[-87.63152831608043,41.962410663474614],[-87.63162280788484,41.96237155987277],[-87.63172564697379,41.96231724558839],[-87.63179945771444,41.962299382373295],[-87.63187735784544,41.96228154437116],[-87.63196350375273,41.96225765138593],[-87.63206188405022,41.962236885721396],[-87.63220775681243,41.96218999019594],[-87.6323458993068,41.962136080298606],[-87.6325055122268,41.96207545698207],[-87.63262844729313,41.96201460986255],[-87.63278189668374,41.961958511603996],[-87.63288937338184,41.961913539223005],[-87.63300589503017,41.96188002930021],[-87.6331254724947,41.961846537622066],[-87.63321744176694,41.96182200331195],[-87.63331254254845,41.961790643701626],[-87.63338609751105,41.96177284102028],[-87.63346280932501,41.96174593195839],[-87.63355768086954,41.96168946593965],[-87.63368542196888,41.96163530331856],[-87.6337663214442,41.96158085486038],[-87.63385385741077,41.96153144178047],[-87.63396810511003,41.96148718580975],[-87.63404884069675,41.961447720333425],[-87.63414290407206,41.961413330696864],[-87.63422352990216,41.961383853608375],[-87.63431925786739,41.961321380166105],[-87.63434485079017,41.96130467779096],[-87.63447966297637,41.96121559506398],[-87.63457410812674,41.961146244304],[-87.63465527903209,41.961066823776164],[-87.6347632701989,41.960982571660985],[-87.6348510231294,41.960913180497265],[-87.63495254074199,41.960808910179004],[-87.63505394859511,41.96071462855672],[-87.63514197308817,41.96062026517845],[-87.63522325201457,41.960530855715106],[-87.63529098379223,41.960456347459534],[-87.63537868092494,41.96039194999875],[-87.63548683347616,41.96029271453522],[-87.63558823972221,41.96019843214602],[-87.63566913612614,41.96014398258407],[-87.63576368697441,41.960064642562536],[-87.6358783116191,41.95998542441303],[-87.63599304562827,41.95989621708011],[-87.63608732347056,41.959841848772875],[-87.63617491008058,41.95978743920647],[-87.63631640832745,41.959698394617035],[-87.63642406810565,41.95964410672587],[-87.63653172843414,41.95958981901071],[-87.63663933381211,41.959540525314964],[-87.63678708678223,41.95949147538003],[-87.63690116567832,41.959462199629584],[-87.63702857255673,41.9594379987812],[-87.63715603369778,41.95940880393985],[-87.63733702559657,41.95937993349093],[-87.63745763280275,41.95936568067637],[-87.63761827824996,41.95936165955358],[-87.63776559592415,41.959352562729634],[-87.63783759410732,41.95934886751375],[-87.63793967842903,41.959343628111135],[-87.63816712888661,41.959350000029126],[-87.63833424894933,41.95936599602615],[-87.63854157106337,41.95937724007995],[-87.63872871091837,41.95939835111289],[-87.63894925336744,41.959424658603986],[-87.63913623087848,41.95946075217909],[-87.63932990003046,41.959496885351946],[-87.63959021167794,41.959558394566166],[-87.63977033604841,41.9596094296105],[-87.63984477994858,41.95962168680833],[-87.6399907717626,41.95964572391523],[-87.6400182984074,41.95965611012366],[-87.64004890086534,41.95966765731247],[-87.64008649558944,41.959669639524684],[-87.6400865723878,41.959669643555884],[-87.64009875059908,41.959670285142764],[-87.64029321143833,41.95920906265488],[-87.64029362389412,41.95920808436541],[-87.64029366880274,41.95920797761246],[-87.64030032620266,41.959192187572185],[-87.64036875204997,41.959206561206464],[-87.64033662052229,41.95928118063121],[-87.64024364099396,41.95949710812478],[-87.64016089238497,41.959689274305354],[-87.64025719696718,41.95972010373843],[-87.64038462320637,41.95975577456355],[-87.64047162669617,41.95978189432669],[-87.64057388883754,41.95983835383359],[-87.6406669250537,41.9598831237997],[-87.64075661851288,41.95994881428571],[-87.64080307376803,41.95997701571803],[-87.64082184325811,41.96000641400462],[-87.64085825103923,41.960063438946385],[-87.6409009094285,41.960154440266734],[-87.64093753529173,41.960226790965805],[-87.6409585238199,41.960303700697274],[-87.64096714554593,41.960371229418826],[-87.64096023095703,41.96043401054513],[-87.64094715774355,41.9604897740924],[-87.64090575232701,41.96057096114423],[-87.64086125471385,41.96064980299127],[-87.64080753147776,41.96071695511059],[-87.64073507921705,41.96078632130368],[-87.64065666941282,41.960830056575546],[-87.64059506049283,41.960848789728345],[-87.6405673758858,41.96085720737422],[-87.64056678012768,41.960857389013135],[-87.64051979976796,41.9608760849865],[-87.6405087687423,41.960880474458406],[-87.64049893364395,41.96088334674034],[-87.64047092584454,41.96089152503868],[-87.64042623087657,41.96090044810624],[-87.6403776964318,41.96090399678121],[-87.6403039400897,41.96090075275738],[-87.64026367411105,41.96089447270601],[-87.64022565109583,41.96087976473149],[-87.64021589243558,41.960875989887406],[-87.64013546233178,41.960838671279085],[-87.64012169130564,41.96083228194475],[-87.63968273210884,41.96058443640845],[-87.63953485147977,41.960508230027926],[-87.63943648274649,41.9604575381282],[-87.63932353735217,41.9604030687181],[-87.63926743882844,41.96038198339113],[-87.63923880824917,41.96037183456381],[-87.63920718936679,41.960360625961435],[-87.63907496687081,41.960327582316985],[-87.63903766835745,41.96032083789804],[-87.63898326563839,41.96031100075844],[-87.63882159945952,41.96028749377914],[-87.63876153610437,41.960282876621235],[-87.63872943607004,41.96027999611017],[-87.63871136106911,41.96027837414464],[-87.63864363661699,41.9602738922386],[-87.63864107653811,41.96027372307207],[-87.63864103203821,41.9602737241749],[-87.63863988092295,41.96027375288417],[-87.6385793277733,41.960275269808626],[-87.63851970916944,41.960276014374784],[-87.63851861814713,41.960276028078965],[-87.63850306765531,41.96027598857495],[-87.63847163137098,41.960275908354475],[-87.63840103118764,41.96028335689674],[-87.63816531236061,41.96030761586519],[-87.63808414424608,41.96032158741256],[-87.63786222699059,41.96035978620342],[-87.63774374378328,41.960383308786554],[-87.63764332155903,41.960403245071156],[-87.63731905072221,41.96049323795479],[-87.63723356373765,41.96052556752049],[-87.6370313039338,41.96060205688297],[-87.6367686169276,41.96072573689852],[-87.63643860934395,41.96090909699131],[-87.63639086329576,41.96093562572145],[-87.63638474217898,41.96094005503064],[-87.63606577659664,41.96117086142001],[-87.63597750661602,41.96125076890771],[-87.6358297895268,41.96138449098891],[-87.63556513739736,41.96169451441076],[-87.63552378472615,41.96175365671515],[-87.63544184224371,41.96187084850701],[-87.6353980919049,41.961939810869296],[-87.63539567661842,41.96194361858866],[-87.63538931026886,41.961955949113374],[-87.63534703472939,41.96203783354992],[-87.63532877696267,41.962121271225755],[-87.63532594850277,41.96213419816731],[-87.63532594386028,41.96213421926947],[-87.63532619951305,41.962144887546806],[-87.63533008575762,41.962307238828146],[-87.63533011715595,41.96230732655917],[-87.63537390626875,41.962429128657895],[-87.6353875441642,41.96245221870397],[-87.63540747988802,41.96248597314253],[-87.63549575694101,41.96259676009463],[-87.63551009252689,41.96261475124412],[-87.63553420690384,41.962634672004086],[-87.63562527874211,41.96270990656336],[-87.63572601111397,41.962768339086594],[-87.63577633123504,41.962787846314846],[-87.63592262610534,41.96284456018358],[-87.63610649257005,41.96287153616253],[-87.63612867731578,41.96287479105162],[-87.63631013264663,41.96288793938424],[-87.63659170865994,41.96288756299436],[-87.63676039167161,41.96287966738007],[-87.6368460181358,41.96287565949355],[-87.63694974185013,41.96286386404766],[-87.637197444832,41.96283569486067],[-87.63730358902363,41.96282233201226],[-87.63743805528195,41.96280540341248],[-87.63765438614398,41.962782053439334],[-87.63778566713415,41.96276788336286],[-87.63782144765513,41.96276458837551],[-87.63787094472437,41.96276003016279],[-87.63788577077794,41.96275749733844],[-87.6379069342259,41.9627538816189],[-87.6378966552434,41.9627132773014],[-87.6378916689233,41.96269358130433],[-87.63836422090259,41.96264229942621],[-87.63836423415495,41.96264236564175],[-87.63836739682418,41.962657975710115],[-87.63837500357096,41.96269552021311],[-87.63899765641762,41.962615891299315],[-87.63919676432516,41.962590159581],[-87.63956887958923,41.96254206780461],[-87.640054952562,41.96248806212774],[-87.64031854444572,41.96245502693729],[-87.64033844575575,41.96245253266477],[-87.64064989720266,41.962413498348305],[-87.64100171443901,41.96237083454541],[-87.64117063575796,41.962349680472606],[-87.64117601856549,41.96234900464623],[-87.64117690661882,41.96234889309715],[-87.64118565717908,41.96234779438523],[-87.6412497400596,41.96233802798091],[-87.64127892176612,41.96233126736746],[-87.64134325397511,41.96231636334148],[-87.641458149826,41.96228621068286],[-87.64153545652923,41.96226156295545],[-87.6415713449265,41.96225012072737],[-87.64158932586119,41.96224319539893],[-87.6416394656865,41.962223884940784],[-87.641716216318,41.96218216945155],[-87.64176110989712,41.96215776866776],[-87.64185132727347,41.96209871893508],[-87.64185142688189,41.96209865394853],[-87.64192857270778,41.962034811427316],[-87.6420045745893,41.96197191585047],[-87.64202803054951,41.96194750277042],[-87.64206436853227,41.96190968167915],[-87.64206436965006,41.96190968031378],[-87.64212307759861,41.96183245538898],[-87.64213070605307,41.96182076435218],[-87.64217011010399,41.96176037440811],[-87.6421980942004,41.961708780582015],[-87.6422119770649,41.96168318470801],[-87.64221995908076,41.96166558367771],[-87.6422400380269,41.96162130715021],[-87.64225536014268,41.96157629809634],[-87.6422759217387,41.961515898145],[-87.64228081151309,41.96149210869983],[-87.64228254466343,41.96148367685914],[-87.64228919399592,41.961451324833064],[-87.64229598111368,41.96137106996459],[-87.64229258118176,41.96130519652978],[-87.64229126903888,41.96127976988072],[-87.64228814541303,41.961248247875595],[-87.64228192007768,41.96118542216085],[-87.6422670006661,41.96113202863484],[-87.64226092841238,41.9611102972182],[-87.64223334705768,41.961032579942945],[-87.64222071508716,41.961007249527015],[-87.64219566817681,41.96095702413055],[-87.64211993809542,41.9608676016121],[-87.64194921925645,41.960677936670194],[-87.64174482609714,41.9605057874089],[-87.64172419504476,41.96048841112823],[-87.6416730594568,41.96044353744207],[-87.64162644373495,41.96038526658509],[-87.64159571826909,41.960346859339076],[-87.64155677083293,41.96025673408711],[-87.64152509163412,41.96018342822313],[-87.64152269670687,41.960116291339695],[-87.64152179113725,41.9600909008808],[-87.6415456429395,41.959955810139576],[-87.64155129879134,41.959887007734245],[-87.64155665100418,41.95982190433443],[-87.64159334816975,41.95952577863604],[-87.64161309330544,41.9593964533984],[-87.64160833874863,41.959391177554956],[-87.64160525902429,41.95938776002534],[-87.64160513622215,41.95938762427049],[-87.64138908888341,41.95937410129892],[-87.64120296463078,41.959362450947395],[-87.6411136343212,41.959356863030685],[-87.6410218654956,41.9593511225805],[-87.64102564760731,41.95929722173543],[-87.64102578943883,41.95929722972564],[-87.64120356237915,41.95930721395428],[-87.641371366921,41.95931665429747],[-87.64162913033869,41.959331155587435],[-87.64163721895906,41.95930460198529],[-87.64163938492408,41.95929749107551],[-87.6416656307486,41.959087196292195],[-87.64167717290469,41.95898389514163],[-87.6416993758271,41.95878517985949],[-87.64173141173964,41.95850859217466],[-87.64173850973101,41.95843399415845],[-87.64174514103934,41.95836430244092],[-87.64174328381692,41.95835211246375],[-87.64172746186057,41.95824825320697],[-87.64170618297166,41.958156892767214],[-87.64170283255237,41.958142507209566],[-87.64170041169687,41.95813480802329],[-87.64165673280338,41.957995908647796],[-87.64164091061572,41.95793411230085],[-87.64161807072045,41.95784490898674],[-87.64158624577279,41.95768503073443],[-87.64158208394147,41.95766412279149],[-87.64154417741939,41.95739910666709],[-87.64153399267809,41.95725120744636],[-87.64152714557927,41.95715177539161],[-87.64152714523836,41.95715177291978],[-87.64149777174538,41.95699198266694],[-87.64149776690432,41.956991954372434],[-87.64149776656045,41.956991952174995],[-87.64149775717173,41.956991902448266],[-87.64149587731774,41.956981676631585],[-87.64142416131502,41.9565915315879],[-87.64141854479408,41.956566547678314],[-87.64140465853012,41.95650477941695],[-87.64139218502434,41.95644934506643],[-87.64138652303376,41.95642418250717],[-87.64137581347958,41.95638802229975],[-87.64134718776886,41.9562913727559],[-87.64132854762747,41.956145323438456],[-87.6413127232771,41.95605477512662],[-87.64130465862169,41.956008627392194],[-87.64128799967023,41.95585614111484],[-87.64124258304828,41.955701039131554],[-87.64123793503319,41.95568516248798],[-87.64122613166701,41.95564484862142],[-87.64120010927331,41.955501525865536],[-87.64119648692466,41.95548501078864],[-87.6411653194227,41.955342920985295],[-87.6411450522967,41.95525793470761],[-87.64112624682856,41.95517907572442],[-87.64109109903808,41.95504678478909],[-87.64105867467318,41.95492436196978],[-87.64103251478099,41.954831850091786],[-87.64102430175656,41.95480280635886],[-87.64399618363737,41.95465419702111],[-87.64411408588342,41.954657429544845],[-87.64418574980049,41.95465939484591],[-87.64430883972365,41.95466276972387],[-87.64445782701334,41.95465833369917],[-87.6445732390348,41.95465489747564],[-87.6446499607063,41.95465261296153],[-87.64482037001414,41.95464753878194],[-87.64494056979214,41.95464395993716],[-87.64509528271029,41.95463974978479],[-87.64525641674277,41.9546369755329],[-87.64555785026944,41.954631785070056],[-87.64580641203142,41.954628141897075],[-87.64615829528476,41.95462300416055],[-87.64664819625304,41.95461381694081],[-87.64793629594789,41.95459205766648],[-87.64800026398557,41.954590953268415],[-87.64821030914055,41.954587326882724],[-87.6484068825047,41.95458405387719],[-87.64869641007718,41.95457930444501],[-87.6490482620597,41.95457360854644],[-87.6492862011736,41.95456970270417],[-87.64969983417441,41.954561232144975],[-87.64970801987954,41.95480772319898],[-87.64971485651782,41.95502458384748],[-87.64972052085547,41.95521009864398],[-87.64972455457553,41.95534178979399],[-87.64973200432898,41.955653411317805],[-87.64973580968686,41.95581259834048],[-87.64974336693346,41.95601966669145],[-87.64975216122384,41.95626063282268],[-87.64975919887574,41.956554826395276],[-87.649762412111,41.9566912326662],[-87.64977221726517,41.95702597464408],[-87.64977696300393,41.95718741720296],[-87.64977908829177,41.957255063052095],[-87.64978186623225,41.957343482047776],[-87.64978552227011,41.957459857945906],[-87.6497890976365,41.95758973541144],[-87.64979384533014,41.957720003768415],[-87.64979671776129,41.957841039871525],[-87.64979825627123,41.957905867760076],[-87.64980239553569,41.95806555039008],[-87.64980593822155,41.958201931143925],[-87.64980913905882,41.95832557673767],[-87.6498159165886,41.95848753875957],[-87.64981880367314,41.95855653186892],[-87.6498229669994,41.95875869494859],[-87.64982668638784,41.9588819868704],[-87.64983145715782,41.95903075128896],[-87.64983630147324,41.959179516141376],[-87.6498402459316,41.959300019358814],[-87.64984561445603,41.959464036058186],[-87.64985189096274,41.95969897751263],[-87.64985550791351,41.95983530378482],[-87.64986178124929,41.96007054706763],[-87.64986505195702,41.96019454978309],[-87.6498709188518,41.96036936320962],[-87.64987336250276,41.96044215410682],[-87.64987660732747,41.960565141303704],[-87.64988318237437,41.96081344877294],[-87.64988677665856,41.96095087311445],[-87.64989062120299,41.96109787512342],[-87.64989606642482,41.96128336097217],[-87.64990519277458,41.96159230310148],[-87.64990975574825,41.961729540547246],[-87.64991214711398,41.96184280759893],[-87.64991412518474,41.96193653454245],[-87.64991809675043,41.96216355886131],[-87.64992309668156,41.96231155617925],[-87.64992499539721,41.96236096317795],[-87.64993481335627,41.96263269794256],[-87.6499378517456,41.962747149384775],[-87.64994105270156,41.962867721369705],[-87.64994664514249,41.963053180594194],[-87.64995384252786,41.96328801761221],[-87.6499579040466,41.963416525460005],[-87.64996214678001,41.96355002883619],[-87.64996568302976,41.963667995530805],[-87.64996846253345,41.96376071158442],[-87.64997122798813,41.96388003289107],[-87.64997588632541,41.96408100444962],[-87.64998514939087,41.964432262869806],[-87.64998800251722,41.96451279480748],[-87.64999280699685,41.964648140118015],[-87.6500045901523,41.96502161411365],[-87.65001678625443,41.965366742915776],[-87.65001916784688,41.96548793207866],[-87.65002531321622,41.965800679732475],[-87.65003020445477,41.965990854442154],[-87.65003869136217,41.96632081337921],[-87.65004323001898,41.96644633281549],[-87.65004757511039,41.966566499900324],[-87.6500556265853,41.966859107332056],[-87.65006381737248,41.967214420617545],[-87.6500677898718,41.96734967584049],[-87.65007190574103,41.96748982208304],[-87.65007885668363,41.96770646338372],[-87.65008120825304,41.96779950585363],[-87.65008960767402,41.96813190623003],[-87.65009388213,41.9682508182087],[-87.65009904683002,41.9683944728219],[-87.65010656976324,41.968643663731704],[-87.65010939777555,41.96876700501516],[-87.65011015117224,41.96879983921423],[-87.6501183087253,41.96915558219648],[-87.64998605393932,41.96915770389823],[-87.64984425282157,41.969158478837976],[-87.64963567588148,41.96917487247962],[-87.64946452008732,41.969188324597525],[-87.64907586379945,41.96923762718998],[-87.64886703394126,41.96926458557414],[-87.64882430974322,41.96927010079872],[-87.64863269920983,41.96929483598806],[-87.6484262283536,41.96932192454191],[-87.64827301061564,41.96934157292882],[-87.64815575532602,41.96935660952391],[-87.64804043317507,41.96937139821157],[-87.64791001401574,41.969388122418074],[-87.64779709333679,41.969402602755146],[-87.64769562817827,41.96941561382138],[-87.64741311658696,41.96945256458507],[-87.64720142169311,41.96947995176945],[-87.64699889084716,41.969506152970496],[-87.64663885561424,41.969550569076766],[-87.64628825508886,41.96959630284871],[-87.64602757642648,41.969630526888224],[-87.64577809302398,41.96966144832815],[-87.64550843235936,41.96969487042204],[-87.64516340351108,41.96974217061528],[-87.6450626124659,41.96974540827243],[-87.64497126535872,41.96973555774257],[-87.64491798438875,41.96972709483611],[-87.64426985862808,41.96986360231959],[-87.64426985391007,41.969863596528455],[-87.64426982668154,41.96986356398345],[-87.64424033642456,41.96982820795803]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5138944.74642","perimeter":"0.0","tract_cent":"1166500.86874657","census_t_1":"17031031700","tract_numa":"20","tract_comm":"3","objectid":"225","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930711.03407517","census_tra":"031700","tract_ce_3":"41.96544578","tract_crea":"","tract_ce_2":"-87.66319585","shape_len":"9207.7763187"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66578567326427,41.96163661840663],[-87.66595356280655,41.96163462717876],[-87.66598649661226,41.96174601744165],[-87.66602064338088,41.961909112027094],[-87.66605168172157,41.96206708430711],[-87.66608949805195,41.96225909668497],[-87.66613121007273,41.96245129633691],[-87.666177516833,41.96266479026648],[-87.66622087751396,41.96286465578873],[-87.66628325501915,41.963151952416446],[-87.66632749428905,41.963355774643844],[-87.66634787430095,41.963449843129695],[-87.66636144845316,41.9635129953657],[-87.66644608708225,41.96390448147804],[-87.66660871843105,41.96465898487851],[-87.66670541238334,41.96512905244355],[-87.66673383383709,41.96527106460648],[-87.66675664779342,41.96538505495742],[-87.66684005872403,41.96576986538839],[-87.66685473922944,41.965837594712426],[-87.66697096932913,41.96638455849161],[-87.66708390172279,41.96691643701099],[-87.66711910360448,41.967077704401326],[-87.66714391521238,41.96719137034356],[-87.66720314514664,41.96747093679068],[-87.66727405041465,41.96780529035641],[-87.66730214170981,41.96793788887988],[-87.66731046526216,41.96797717928203],[-87.66738757410329,41.968340849117055],[-87.66748147261787,41.96878375935888],[-87.66749666128202,41.96890048871616],[-87.66729291463818,41.96890659379947],[-87.66691190856127,41.968911554974945],[-87.66681768402802,41.96891278182419],[-87.6664220385311,41.968917893479286],[-87.66633079406303,41.968920063409136],[-87.66619933839445,41.96892318893908],[-87.6658014185209,41.96893047730776],[-87.66531649833088,41.96893823777209],[-87.66473676845744,41.96894749783015],[-87.66458420125147,41.968950053996785],[-87.66443220924822,41.9689526004143],[-87.66436729327098,41.96895368784099],[-87.66418454380263,41.96895654701026],[-87.66401959485567,41.968959125480495],[-87.66367999653028,41.968963682323626],[-87.6634533570679,41.96896844619023],[-87.66309304391118,41.968974970133594],[-87.66292889973695,41.96897794168608],[-87.66290549880009,41.96897836539759],[-87.66268964581174,41.96898117485518],[-87.66253294850222,41.96898321432817],[-87.66211427228951,41.96898938565834],[-87.66188106549195,41.96899282263823],[-87.6614867277791,41.968998326956246],[-87.66128541318041,41.9690011365273],[-87.6610462402477,41.96900473007745],[-87.66084030380291,41.969007394624676],[-87.66047760349205,41.969012678771485],[-87.66043008724199,41.96901326661539],[-87.65996291296776,41.96901904620799],[-87.65967036299939,41.969025314705114],[-87.6596654009899,41.96887852644517],[-87.65967014290378,41.968414509551884],[-87.65967396925836,41.96837246337176],[-87.65966676335852,41.96823510939652],[-87.65966515025262,41.96820435662288],[-87.65965626298402,41.967644871188895],[-87.65965004293432,41.96719848422216],[-87.65964851704557,41.96710270832323],[-87.6596460077953,41.96686622556269],[-87.65964316502709,41.96657065812501],[-87.65963987183949,41.96631784272834],[-87.65963592200546,41.96602265295471],[-87.65963206728512,41.965697497012776],[-87.65962741990657,41.965367307646254],[-87.65963681881016,41.9635171663207],[-87.65961111063757,41.96347764159897],[-87.6596082541428,41.9633997717284],[-87.65960435210536,41.963232681600644],[-87.65960089255547,41.9629752548161],[-87.65959695247562,41.96268212308315],[-87.65959485143865,41.96251509838778],[-87.65959255422904,41.9623352845367],[-87.6595894872455,41.962095916891705],[-87.65958780351559,41.96197653404648],[-87.65958466148675,41.96171630119748],[-87.65989328778166,41.961713071425756],[-87.6601814790401,41.96170902617444],[-87.66029517918876,41.96170759346874],[-87.66067790913223,41.96170277021568],[-87.66097197936482,41.96169904858509],[-87.66117448650546,41.96169648553019],[-87.66157501773814,41.96169103629176],[-87.6616456605243,41.96168989337929],[-87.66200850920451,41.961684022102524],[-87.66214267997555,41.96168259777258],[-87.6623304861048,41.961680603419275],[-87.66252650925131,41.96167852175576],[-87.66259023920192,41.96167784499964],[-87.66302379163274,41.96167197688038],[-87.66340108252672,41.96166680022561],[-87.66351264387045,41.96166549729515],[-87.66373735032403,41.96166287290407],[-87.66394574315075,41.961660438353526],[-87.66402628382158,41.96165949740345],[-87.66434583814922,41.96165535011523],[-87.66476174076851,41.9616496500221],[-87.6649350526269,41.96164729532277],[-87.66511380429085,41.96164486664632],[-87.6654586352162,41.96163920066308],[-87.66578567326427,41.96163661840663]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2773683.80618","perimeter":"0.0","tract_cent":"1164606.05161591","census_t_1":"17031031900","tract_numa":"10","tract_comm":"3","objectid":"227","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1929941.41836299","census_tra":"031900","tract_ce_3":"41.96337438","tract_crea":"","tract_ce_2":"-87.67018455","shape_len":"6850.49369029"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67384475539555,41.96152877881208],[-87.67397665771156,41.961525435762496],[-87.67398040540915,41.961637954411955],[-87.6739900617027,41.962010206670044],[-87.67400107929183,41.962435841543055],[-87.67401211735195,41.96286306786689],[-87.67402227549705,41.9632543954349],[-87.67402556748722,41.96334925246488],[-87.67402885215535,41.963443893207746],[-87.67403233453933,41.96355730380847],[-87.67403991755236,41.96380429846829],[-87.67404943218949,41.96411540886132],[-87.67405951071993,41.96444312492031],[-87.67406770887494,41.964710786942106],[-87.67407846747494,41.96506888522638],[-87.67407748918937,41.96516926868252],[-87.67395602079141,41.96517265392551],[-87.6732941627385,41.965180812921126],[-87.6726848027729,41.9651883421248],[-87.67251055076437,41.965191353200744],[-87.67232262972888,41.96519459979676],[-87.67171526746044,41.96520452336301],[-87.67156390495856,41.96520699587434],[-87.67108759577215,41.965209957514],[-87.67092630346195,41.965212652911056],[-87.6707983148534,41.965214791936475],[-87.67022507731282,41.96522160848072],[-87.67013586655113,41.965222670810704],[-87.66955942574329,41.96522953440572],[-87.66934735364012,41.9652336732529],[-87.66917109443246,41.96523711276042],[-87.6687166318845,41.965243133556996],[-87.66856618601372,41.96524513102778],[-87.66850826527485,41.96524589962122],[-87.66799297652905,41.965252738718476],[-87.66779924365657,41.96525555976359],[-87.66760609991312,41.96525837182345],[-87.66702794662847,41.96526752092607],[-87.66695259293215,41.965268713070635],[-87.66673383383709,41.96527106460648],[-87.66670541238334,41.96512905244355],[-87.66660871843105,41.96465898487851],[-87.66644608708225,41.96390448147804],[-87.66636144845316,41.9635129953657],[-87.66634787430095,41.963449843129695],[-87.66632749428905,41.963355774643844],[-87.66628325501915,41.963151952416446],[-87.66622087751396,41.96286465578873],[-87.666177516833,41.96266479026648],[-87.66613121007273,41.96245129633691],[-87.66608949805195,41.96225909668497],[-87.66605168172157,41.96206708430711],[-87.66602064338088,41.961909112027094],[-87.66598649661226,41.96174601744165],[-87.66595356280655,41.96163462717876],[-87.66615519748962,41.96163223522465],[-87.66631611461447,41.961630151630466],[-87.66683217658888,41.961623983388534],[-87.66694878240381,41.96162249619758],[-87.66714301504268,41.961620024417456],[-87.66750059150463,41.96161545780562],[-87.6677261114582,41.96161179438608],[-87.66783424067366,41.96161003788868],[-87.66799728456975,41.961608567991476],[-87.66848334100676,41.961604614398],[-87.66859975356245,41.96160243506597],[-87.66877590093087,41.961599137098894],[-87.66906251647245,41.9615944841455],[-87.66925813531226,41.961591566482575],[-87.66937471053839,41.961589827750736],[-87.66947481938594,41.96158833451645],[-87.66981276959368,41.961582961160914],[-87.67004655861571,41.961581009999676],[-87.67014694338398,41.96158017199225],[-87.67070479502125,41.96157181255672],[-87.6708383260223,41.961570244020315],[-87.67099772216798,41.961568371208806],[-87.67162332898909,41.96155926893898],[-87.67164338581723,41.96155897729878],[-87.67229625640876,41.961549483494466],[-87.6724189890399,41.96154844863162],[-87.6725786201102,41.96154710241384],[-87.67306351086673,41.961540067865805],[-87.67319586578722,41.961538156127425],[-87.67384475539555,41.96152877881208]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4645213.0235","perimeter":"0.0","tract_cent":"1169288.91828751","census_t_1":"17031032100","tract_numa":"18","tract_comm":"3","objectid":"228","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1928076.00226444","census_tra":"032100","tract_ce_3":"41.95815488","tract_crea":"","tract_ce_2":"-87.65302179","shape_len":"8814.48211331"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65567984810629,41.95447128663458],[-87.65613555630691,41.95446205220996],[-87.65615249933639,41.955153651448434],[-87.65615858097343,41.95538485949148],[-87.65617824040704,41.956094216222574],[-87.65619274046587,41.95659295188224],[-87.65619391450527,41.956633398285454],[-87.65619626978992,41.9567145136888],[-87.65620237892011,41.95691880114668],[-87.65621071484604,41.957183666404966],[-87.65621906916053,41.957453745754364],[-87.6562296962983,41.95787032431147],[-87.65623287239019,41.95809125176997],[-87.65623400722603,41.95814381004079],[-87.65623041161611,41.958160473617745],[-87.65621641419,41.95818728429919],[-87.65621600090479,41.95818777417256],[-87.65623208581681,41.95841832018573],[-87.65624613877954,41.95861972718586],[-87.65625751235208,41.958778272242284],[-87.65626162163488,41.95893435982454],[-87.6562640940725,41.95902828117999],[-87.65626825876548,41.95919556462428],[-87.6562706981501,41.95929354748149],[-87.65627911789538,41.95963042111391],[-87.65628501801227,41.959856819777706],[-87.65629543302796,41.960256470913855],[-87.6563014785699,41.9604842485507],[-87.65631689127818,41.96106355882623],[-87.65633424646711,41.9615462572751],[-87.65634342102855,41.961756262349034],[-87.65610388101666,41.96175612014076],[-87.65573318468275,41.96176342778967],[-87.65562708730546,41.961765577303204],[-87.65552444609949,41.96176765656501],[-87.65539359388825,41.96177072610691],[-87.65514433404921,41.9617732747425],[-87.6549121782064,41.961775648117936],[-87.65474851033177,41.96177872003632],[-87.65453968337016,41.9617826394218],[-87.65387804043941,41.96179022374789],[-87.65339506663827,41.96179639278376],[-87.6530707279938,41.961800837984036],[-87.65283008873212,41.9618037477085],[-87.65247446189494,41.961808005761064],[-87.65232734435739,41.9618094660311],[-87.6520556694197,41.961812162313606],[-87.65163733709409,41.96181802147804],[-87.65145957017951,41.96182097233226],[-87.65133005152656,41.96182308441578],[-87.65118675021185,41.96182470283002],[-87.65095876253493,41.96182727217237],[-87.65071465608322,41.96183126578739],[-87.65057244947646,41.96183359218592],[-87.65036813214502,41.96183691609908],[-87.65029862848334,41.96183805555509],[-87.65008342640446,41.96184154992958],[-87.64991214711398,41.96184280759893],[-87.64990975574825,41.961729540547246],[-87.64990519277458,41.96159230310148],[-87.64989606642482,41.96128336097217],[-87.64989062120299,41.96109787512342],[-87.64988677665856,41.96095087311445],[-87.64988318237437,41.96081344877294],[-87.64987660732747,41.960565141303704],[-87.64987336250276,41.96044215410682],[-87.6498709188518,41.96036936320962],[-87.64986505195702,41.96019454978309],[-87.64986178124929,41.96007054706763],[-87.64985550791351,41.95983530378482],[-87.64985189096274,41.95969897751263],[-87.64984561445603,41.959464036058186],[-87.6498402459316,41.959300019358814],[-87.64983630147324,41.959179516141376],[-87.64983145715782,41.95903075128896],[-87.64982668638784,41.9588819868704],[-87.6498229669994,41.95875869494859],[-87.64981880367314,41.95855653186892],[-87.6498159165886,41.95848753875957],[-87.64980913905882,41.95832557673767],[-87.64980593822155,41.958201931143925],[-87.64980239553569,41.95806555039008],[-87.64979825627123,41.957905867760076],[-87.64979671776129,41.957841039871525],[-87.64979384533014,41.957720003768415],[-87.6497890976365,41.95758973541144],[-87.64978552227011,41.957459857945906],[-87.64978186623225,41.957343482047776],[-87.64977908829177,41.957255063052095],[-87.64977696300393,41.95718741720296],[-87.64977221726517,41.95702597464408],[-87.649762412111,41.9566912326662],[-87.64975919887574,41.956554826395276],[-87.64975216122384,41.95626063282268],[-87.64974336693346,41.95601966669145],[-87.64973580968686,41.95581259834048],[-87.64973200432898,41.955653411317805],[-87.64972455457553,41.95534178979399],[-87.64972052085547,41.95521009864398],[-87.64971485651782,41.95502458384748],[-87.64970801987954,41.95480772319898],[-87.64969983417441,41.954561232144975],[-87.64989661069214,41.95455720204276],[-87.65010184587166,41.9545552951913],[-87.65025794572979,41.954551668655114],[-87.65044595159125,41.954548524770956],[-87.65053062114228,41.954547763552085],[-87.65130934156002,41.95453503260847],[-87.65212349484962,41.95452250360727],[-87.65227504632789,41.95452017059801],[-87.65253693199625,41.95451613881971],[-87.65333660508571,41.95450655318781],[-87.65382290575538,41.95449923826189],[-87.65454473815764,41.95448837667953],[-87.65542977922142,41.954475052605986],[-87.65567984810629,41.95447128663458]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11660867.3183","perimeter":"0.0","tract_cent":"1156913.40772765","census_t_1":"17031020600","tract_numa":"53","tract_comm":"2","objectid":"229","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1943622.28107251","census_tra":"020600","tract_ce_3":"42.00107521","tract_crea":"","tract_ce_2":"-87.69809477","shape_len":"15224.8301471"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70768517443588,41.99741740602349],[-87.70816179397195,41.99740954078512],[-87.7081927222997,41.99749091645176],[-87.70819715031212,41.99766621211356],[-87.70819847452636,41.9977226121965],[-87.70820275411111,41.9978754872692],[-87.7082072262683,41.9980124467992],[-87.70820827285047,41.99805098095228],[-87.70821401393988,41.998262397310754],[-87.70821731945568,41.998383242072904],[-87.70822283768379,41.998601270706985],[-87.70822707061544,41.99877019874758],[-87.70823114243835,41.998948071969856],[-87.70823672231657,41.99923216897001],[-87.70804585648007,41.9992352578111],[-87.70778542036281,41.999239409583694],[-87.70762574046697,41.999242422611545],[-87.70756537966957,41.99924356144702],[-87.70721126512666,41.999249039812035],[-87.7070183534976,41.99925293767098],[-87.70659315480007,41.999261528125324],[-87.7064065576575,41.99926467322098],[-87.70627939858628,41.999266949538466],[-87.70604591837619,41.999272205075854],[-87.70579851964185,41.99927652045302],[-87.70580323322875,41.999446726408245],[-87.70580515443777,41.99954325010942],[-87.70580864528091,41.99970468250549],[-87.70581172070682,41.99982601999752],[-87.70581611478488,41.99996292425741],[-87.70582015938771,42.000082977272314],[-87.70582440771823,42.000212251879006],[-87.70582722722094,42.00031470792947],[-87.70583055722153,42.00044384030119],[-87.70583267460975,42.0005241468917],[-87.7058361826104,42.000661375593566],[-87.70583861730142,42.00075806673238],[-87.70584217533829,42.00092764970641],[-87.70584034996504,42.00109849356579],[-87.70583760045527,42.00135582814479],[-87.70583275696706,42.00144438412531],[-87.70582613619554,42.001556557865044],[-87.70582189540455,42.00162121496721],[-87.7058182448672,42.001678219553945],[-87.7058155633511,42.00183879489131],[-87.70581482468705,42.00195141240645],[-87.70581333615482,42.002080436075154],[-87.70581268978685,42.00216119404703],[-87.70581239010043,42.00222164690895],[-87.7058120881051,42.0022860788327],[-87.70581168459925,42.0023907949051],[-87.705811164219,42.00250366057981],[-87.70581035575371,42.002608401876365],[-87.7058096205901,42.00271317128805],[-87.70580745578836,42.002903523601965],[-87.70540918310134,42.00291525869633],[-87.70520643572964,42.002921676208324],[-87.7051160947739,42.00292349271067],[-87.7050190932132,42.00292544556845],[-87.70460436544423,42.00293271465971],[-87.70460354522248,42.0030886723239],[-87.70460429753118,42.003195370521844],[-87.7046041604513,42.003433510505566],[-87.7046047156813,42.00357143648896],[-87.70460560711332,42.003854586788684],[-87.7046053072781,42.00403825370627],[-87.70460496407871,42.00423753481431],[-87.70460486245189,42.00427790127351],[-87.704604597643,42.004383084574805],[-87.7046042767281,42.00449792711071],[-87.70460394278821,42.0045483983189],[-87.70460258042785,42.00475429171206],[-87.70435296646319,42.00476125476863],[-87.70419170916159,42.00476454222011],[-87.70377746808416,42.00477138178199],[-87.70341281952557,42.00477860177303],[-87.703130528754,42.00478418720459],[-87.7028838468698,42.004790406590445],[-87.70250513763533,42.00479820507705],[-87.70221450770097,42.00480326603577],[-87.70197810385514,42.004807381954144],[-87.70181930806699,42.004811008913435],[-87.7015623649469,42.00481681226142],[-87.70128186930476,42.004823143956614],[-87.70101422829515,42.004828054036516],[-87.70072505967934,42.004833358566366],[-87.70060248038176,42.004835701565945],[-87.70042989208338,42.004838838947606],[-87.70033583335022,42.004840543096165],[-87.70001493520981,42.004847280053404],[-87.69982923913675,42.00485123223149],[-87.69940265079471,42.00486031054019],[-87.69923183729139,42.00486222103698],[-87.69904594953768,42.004863718682316],[-87.69859864589114,42.004872737711096],[-87.69832812925787,42.004878190928615],[-87.69797000636235,42.004883947864045],[-87.69738390622747,42.004893090353065],[-87.69708195238752,42.00489779923777],[-87.69686590675133,42.00490143130696],[-87.6965570519875,42.00490688071962],[-87.69617550210064,42.00491530116644],[-87.69589828227069,42.00492141204011],[-87.69577723714741,42.00492483495032],[-87.69543290243882,42.00493513357626],[-87.69510693244686,42.004944902115305],[-87.69494740318692,42.00494729981291],[-87.69473111273453,42.004950550548116],[-87.69434453034674,42.00495811365391],[-87.69402527248187,42.00496626997185],[-87.69383113227411,42.00497215879334],[-87.69372167446451,42.00497212521728],[-87.69348542965258,42.00497204348365],[-87.69317478346082,42.00497629380769],[-87.6931170101872,42.00497717190826],[-87.69302685443834,42.00497854222539],[-87.69273296957297,42.004984394152466],[-87.6925089841331,42.004988335668344],[-87.6922747832253,42.0049924562463],[-87.69190226037935,42.00499942170752],[-87.69189961154673,42.00499947111999],[-87.6915539898298,42.00500593622068],[-87.69141517649943,42.00500905705688],[-87.69128409129,42.00501201156977],[-87.69103082669014,42.0050177191607],[-87.6906794861062,42.0050228315943],[-87.69040693208092,42.005028798083266],[-87.69007080771667,42.00503336518457],[-87.69006682002859,42.004868141649546],[-87.69006536360126,42.00481121876246],[-87.69006249419007,42.00470588076064],[-87.69005821145225,42.00449551477163],[-87.69005190645726,42.00429597698413],[-87.69004249057745,42.00388662858263],[-87.6900387562381,42.003724096561534],[-87.69002955671911,42.003384589198205],[-87.69002442696038,42.003188708002426],[-87.69001714821583,42.002910762971354],[-87.69000827063103,42.00257948965479],[-87.69000124189934,42.00232034396253],[-87.68999393456046,42.00204503342412],[-87.68998185375662,42.00158254242235],[-87.68997697289626,42.0013677825369],[-87.6899681139365,42.000977975399294],[-87.68996194110437,42.00073615026653],[-87.68995445658771,42.000438281418575],[-87.68994694133819,42.000130686425074],[-87.6899409890884,41.99988706285261],[-87.68993120665432,41.99954356303601],[-87.68991843311714,41.99909501803784],[-87.68990833466478,41.99864760351156],[-87.68990396895597,41.998372501375606],[-87.68989786522972,41.99818571620393],[-87.68989015473846,41.99794976368233],[-87.68988296414578,41.99772980309359],[-87.69009188382681,41.997725005911185],[-87.69032290705952,41.99771970072633],[-87.69057155815067,41.99771626351164],[-87.69083407465767,41.99771320522615],[-87.69110412827557,41.99770993604308],[-87.69141540321927,41.997706166788],[-87.69165092736543,41.99770210498969],[-87.69198421462161,41.99769639360645],[-87.69232316372793,41.997688723058964],[-87.69276033263623,41.99767882856529],[-87.69303753038626,41.997675517861886],[-87.69327400291861,41.99767217151249],[-87.69354324552135,41.997667718377606],[-87.69388328373,41.9976620931663],[-87.69410577937698,41.99765850259218],[-87.69436948564099,41.997654153350005],[-87.69476465472992,41.997646296481555],[-87.69486160774859,41.9976443415801],[-87.69511835371297,41.99763916459534],[-87.69535397595038,41.99763624830358],[-87.69564425225697,41.99763100073089],[-87.6959865929255,41.9976251304362],[-87.69625508049575,41.99762061652876],[-87.69653577130664,41.997613721871645],[-87.69689440256302,41.99760824658808],[-87.69720527234064,41.9976021194118],[-87.69758553494358,41.9975946232901],[-87.69786619441443,41.99759085358385],[-87.69809623443969,41.997586940293026],[-87.69843005290274,41.997580450520175],[-87.69864235342015,41.99757632248722],[-87.69889821776798,41.997572550370364],[-87.69913734028675,41.99756901449288],[-87.69935048815947,41.99756571885172],[-87.69964220809574,41.99756081079229],[-87.69979871914708,41.997558177209605],[-87.70003759206641,41.997553869705285],[-87.70024202448417,41.997550222464646],[-87.70050628810752,41.997545230757474],[-87.70086008560764,41.9975385839065],[-87.70104386632927,41.99753513072061],[-87.70146964362979,41.99752880352644],[-87.70169968393843,41.99752485557273],[-87.70207521787813,41.997517363286654],[-87.70244148366436,41.99751005483525],[-87.70272233034682,41.99750589009603],[-87.70293577652932,41.99750215036453],[-87.70329423902741,41.99749714728761],[-87.70342402523931,41.99749533571711],[-87.70367673864062,41.99749016356087],[-87.70383889751778,41.99748685430697],[-87.7040519045934,41.997482863114506],[-87.70426545749704,41.99747947824011],[-87.7045142985509,41.997475676519464],[-87.7047348002025,41.99747230743145],[-87.70493099960767,41.9974678383808],[-87.70505069883143,41.99746511822869],[-87.70516980248341,41.9974631046151],[-87.70529589573412,41.997461109086295],[-87.70573185478207,41.99745272439922],[-87.70577804610815,41.99745183617101],[-87.70609578844686,41.99744572413149],[-87.70630566333706,41.997442233037965],[-87.70643481171643,41.99744005701056],[-87.70694150779475,41.99743122252372],[-87.70718755592404,41.99742693188199],[-87.70733186964604,41.99742387682359],[-87.70768517443588,41.99741740602349]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13913286.6807","perimeter":"0.0","tract_cent":"1155244.43457401","census_t_1":"17031020700","tract_numa":"57","tract_comm":"2","objectid":"230","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1939881.49288556","census_tra":"020700","tract_ce_3":"41.99084414","tract_crea":"","tract_ce_2":"-87.70433574","shape_len":"17082.5775367"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7081927222997,41.99749091645176],[-87.70816179397195,41.99740954078512],[-87.70768517443588,41.99741740602349],[-87.70733186964604,41.99742387682359],[-87.70718755592404,41.99742693188199],[-87.70694150779475,41.99743122252372],[-87.70643481171643,41.99744005701056],[-87.70630566333706,41.997442233037965],[-87.70609578844686,41.99744572413149],[-87.70577804610815,41.99745183617101],[-87.70573185478207,41.99745272439922],[-87.70529589573412,41.997461109086295],[-87.70516980248341,41.9974631046151],[-87.70505069883143,41.99746511822869],[-87.70493099960767,41.9974678383808],[-87.7047348002025,41.99747230743145],[-87.7045142985509,41.997475676519464],[-87.70426545749704,41.99747947824011],[-87.7040519045934,41.997482863114506],[-87.70383889751778,41.99748685430697],[-87.70367673864062,41.99749016356087],[-87.70342402523931,41.99749533571711],[-87.70329423902741,41.99749714728761],[-87.70293577652932,41.99750215036453],[-87.70272233034682,41.99750589009603],[-87.70244148366436,41.99751005483525],[-87.70207521787813,41.997517363286654],[-87.70169968393843,41.99752485557273],[-87.70146964362979,41.99752880352644],[-87.70104386632927,41.99753513072061],[-87.70086008560764,41.9975385839065],[-87.70050628810752,41.997545230757474],[-87.70024202448417,41.997550222464646],[-87.70003759206641,41.997553869705285],[-87.69979871914708,41.997558177209605],[-87.69964220809574,41.99756081079229],[-87.69963225209284,41.99728744943457],[-87.69962722808383,41.997185721953414],[-87.69962352201209,41.99710032941289],[-87.69961620905143,41.99693182337778],[-87.69961264748537,41.99683954370917],[-87.69960994636516,41.996769552176886],[-87.69960498845893,41.9966166733112],[-87.69960111344133,41.9964955507223],[-87.69959832413531,41.99638735926972],[-87.69959266403298,41.9962088183195],[-87.6995873733182,41.996056156861975],[-87.69958112560761,41.99587755804756],[-87.69957676772408,41.995769627402794],[-87.6995695494147,41.995590863234],[-87.69956510005774,41.99543123642959],[-87.69955886554465,41.99522165545776],[-87.69955605629897,41.99512923968571],[-87.69955132174681,41.99497348389846],[-87.69954497634737,41.99478991724604],[-87.69953838171364,41.994579565887726],[-87.69953499804465,41.99447567949956],[-87.6995280789337,41.994298037120146],[-87.69952514913389,41.99421514631047],[-87.69952131170977,41.994131043043225],[-87.69951602167907,41.993977933130665],[-87.69950607899385,41.993690159164004],[-87.69949810523758,41.993437155107024],[-87.69949168630953,41.99323874218421],[-87.6994836384378,41.992996961724295],[-87.6994788832598,41.99285335924887],[-87.69947721235721,41.992803021507775],[-87.69947267052238,41.99265645675032],[-87.69946789542946,41.99250374315764],[-87.69946260905955,41.99233211951493],[-87.69945826673232,41.99218832748279],[-87.69945026023646,41.99192319383798],[-87.69944150752492,41.99170053646329],[-87.69943386874996,41.99148425176187],[-87.69942388446536,41.991204069249804],[-87.69942199291182,41.99114231442557],[-87.69941980011367,41.99107073344584],[-87.69941375911486,41.99085028636686],[-87.69940258958428,41.990442670860226],[-87.69939525193686,41.990174892951984],[-87.69939035918867,41.9900526397564],[-87.6993862436005,41.98994114754621],[-87.69937867558633,41.989736114367396],[-87.69936913306255,41.98940774613442],[-87.69936118447637,41.98916341395367],[-87.69934987752089,41.98885347693774],[-87.69933790212359,41.98857643912078],[-87.69933165865723,41.988432005052154],[-87.6993206201623,41.98808395259391],[-87.69931233682,41.98782145192674],[-87.69930254098317,41.987511249035684],[-87.69929543059393,41.98728624026906],[-87.6992868146805,41.98702398470501],[-87.69927762973286,41.98675747357837],[-87.699273078002,41.98662539659333],[-87.69926451243973,41.98636171429366],[-87.69925678131615,41.986110358034985],[-87.69924972791941,41.985950057968225],[-87.69924647181449,41.98580006961063],[-87.69923759553384,41.98554499602316],[-87.69923293383599,41.98541104164513],[-87.69922798316557,41.9852687732193],[-87.69922424899528,41.985137278093774],[-87.6992182668989,41.98493931212089],[-87.69921784001085,41.98492517604774],[-87.69921519492227,41.98483764403626],[-87.69920696934913,41.98458425427103],[-87.69920185985272,41.98442456862085],[-87.69919705729572,41.98428058147343],[-87.69919213661214,41.98413308109637],[-87.69917336638046,41.98357834753649],[-87.69917134902244,41.98351848542925],[-87.69916469457854,41.983329181313934],[-87.69915742133504,41.983120920144096],[-87.69946773992424,41.98312018289712],[-87.69970993896135,41.98311995577193],[-87.69976489171097,41.983119695136516],[-87.69998808331984,41.983118636680395],[-87.70011498467296,41.983117580170614],[-87.7003698262769,41.98311458882646],[-87.70052851431956,41.983112725792914],[-87.70066379408786,41.98311245606883],[-87.70092692065607,41.98311225938307],[-87.7011595244206,41.98311159215187],[-87.7015844988254,41.983109750025804],[-87.70183443084565,41.983108665815806],[-87.70203750154835,41.983107861783125],[-87.702337195019,41.983106902478],[-87.7028013893091,41.98310391660465],[-87.70316781522068,41.98310155849485],[-87.7035640308502,41.983099451829105],[-87.70401180929285,41.983097630865416],[-87.70450074627045,41.983095640648905],[-87.70506364735135,41.98309277382165],[-87.705311091828,41.98309116569041],[-87.70560213012689,41.983089418084106],[-87.70564186340286,41.983089178709946],[-87.70565607237815,41.98308909339551],[-87.7060928611882,41.98308648606846],[-87.70641308999042,41.983084283664645],[-87.70678879090107,41.98308128545748],[-87.70690177438165,41.983080467376986],[-87.7069302835399,41.983148851410256],[-87.70694307408213,41.98320229586933],[-87.70695675713424,41.98326224894751],[-87.7069800175357,41.983354498614645],[-87.70701082548385,41.98342346376544],[-87.70700999868596,41.983466543174174],[-87.70702462720257,41.98353511818382],[-87.70707320008758,41.98363411944285],[-87.70709640834957,41.983731719983645],[-87.70713196900546,41.983822417634855],[-87.70716580141708,41.983931848722655],[-87.70718579027171,41.983978910986814],[-87.70720131005443,41.984050399679916],[-87.7072125194634,41.98408882471201],[-87.70722625687944,41.98415078131079],[-87.7072484653711,41.98422282787334],[-87.70726095909161,41.984284091634116],[-87.70726116292852,41.984284534836135],[-87.7072797359652,41.9843249453813],[-87.70728835368482,41.9843411282642],[-87.70730872533511,41.98441255091856],[-87.7073087267498,41.984412556689094],[-87.70730872745581,41.98441255971156],[-87.70731993047985,41.98445183704409],[-87.70735482096984,41.98452090613063],[-87.70739267875074,41.98459495920725],[-87.70740153016887,41.984660099850444],[-87.70741831549343,41.98472638143026],[-87.7074396290074,41.98479592584919],[-87.70747515786998,41.98487120081245],[-87.70747557715995,41.98487221625628],[-87.70750885906747,41.98495283233961],[-87.7075100325107,41.985058353149505],[-87.70750723133753,41.985167858544116],[-87.70753286476115,41.985235780246754],[-87.70756433376508,41.98530875536107],[-87.70759579229339,41.98539031974798],[-87.70763102437671,41.98547717355286],[-87.70766688792713,41.98557091872369],[-87.70769699613221,41.98564391382314],[-87.70771855403954,41.98568483780466],[-87.70773508640012,41.98575443815334],[-87.70775796387355,41.98583716317326],[-87.7077800168084,41.985898918024915],[-87.70782208109179,41.98602809707825],[-87.70782848446427,41.986140479414786],[-87.70786387326392,41.9862790343968],[-87.70787583743483,41.98634564664424],[-87.70784487663698,41.986367211996345],[-87.70779607436221,41.98637773077397],[-87.70776739063452,41.986403397367],[-87.70775725737309,41.98643907159617],[-87.70777010215599,41.986487110161384],[-87.7077952041525,41.986485408335426],[-87.70784809260668,41.98647079552673],[-87.70789510574994,41.986488998725555],[-87.7079437691337,41.98652274305205],[-87.70795541057461,41.98655845359466],[-87.70797963640061,41.986616213435695],[-87.7080182062316,41.98668535804762],[-87.70802451384512,41.98670649720364],[-87.70802737116183,41.98671607355083],[-87.70802995888,41.98672474641179],[-87.70803625226169,41.98674583719164],[-87.70803612090265,41.98674584196452],[-87.70805035187792,41.98679456010067],[-87.70807660222727,41.98685598072866],[-87.70809841705183,41.986908267006555],[-87.70811897048164,41.98695417959829],[-87.70813835653836,41.986995310925415],[-87.70815606058481,41.98703925961182],[-87.70816844884568,41.98709264682604],[-87.70818917152127,41.98717014603317],[-87.70820635043212,41.987248943152466],[-87.70820846492309,41.98729599020284],[-87.7082160280439,41.98735382417514],[-87.70822956465994,41.987398875274764],[-87.70824846885117,41.98744796212743],[-87.70828327946565,41.987480341101424],[-87.70827689281958,41.98750151896846],[-87.70826587075047,41.987537819561695],[-87.70829273814876,41.987577537170516],[-87.70830678041312,41.98763107058067],[-87.70829980421898,41.98766739320474],[-87.70831059741843,41.98770337350602],[-87.70831479692428,41.987732814159926],[-87.70832888213059,41.98775564023843],[-87.70833863768014,41.9877773725061],[-87.70834279615417,41.98781853065519],[-87.70835874686925,41.98789131126586],[-87.70838755991173,41.9879577679182],[-87.70842497450761,41.98805865617026],[-87.70844852674345,41.988144018849304],[-87.70847068144786,41.98818799198041],[-87.70847977893997,41.988239412858995],[-87.70848956354772,41.988307083119665],[-87.70849850965271,41.988358942243174],[-87.7085179693382,41.98842274096039],[-87.70850841505388,41.98847068495281],[-87.70848065822517,41.98849177395102],[-87.70849474368933,41.98852211910596],[-87.7084965186702,41.988524281040476],[-87.70849591901751,41.988524177064534],[-87.70850546992337,41.98853518250996],[-87.70853331133506,41.98856909013139],[-87.70856402546693,41.98862930031174],[-87.70859092564541,41.98867321664289],[-87.70861253139631,41.988728218150115],[-87.70864313472322,41.98879221469567],[-87.7086615005203,41.9888400087674],[-87.70868838869694,41.98889649342768],[-87.70869493509433,41.9889455129511],[-87.70871067207854,41.98899883598582],[-87.70872775975684,41.98907955344455],[-87.7087393686474,41.989129972607095],[-87.7087579374457,41.989224748402115],[-87.7087716628557,41.98928066746776],[-87.7087980035398,41.98932921839323],[-87.70882041473382,41.98939970150293],[-87.70882729472073,41.98943722464846],[-87.70886298679896,41.989454789574474],[-87.708863107373,41.98948385126552],[-87.70887583376317,41.9895253304113],[-87.70888685951266,41.9895827440827],[-87.70889610120614,41.98963828199482],[-87.70891369413664,41.989753908336766],[-87.70894367978356,41.9898284940278],[-87.70897611067468,41.9899577573887],[-87.70898175808625,41.99008374668671],[-87.70900085670652,41.99015824570356],[-87.70903185440353,41.99024222201988],[-87.70905941489826,41.990301481874624],[-87.7090790701979,41.990345413564846],[-87.70909330999955,41.99038472942875],[-87.70914708871611,41.99053321198246],[-87.70915661424488,41.9905860895387],[-87.70918061370313,41.990667283561834],[-87.70921534688479,41.99077559370295],[-87.70925261800564,41.99090652979845],[-87.70927972288597,41.991012520762375],[-87.70931326434565,41.99113742677022],[-87.70933051469257,41.991171493677676],[-87.70933921907465,41.9911966503786],[-87.7093542244407,41.991241567975464],[-87.70936857735323,41.99129721072887],[-87.70937666060752,41.99135930201395],[-87.70938481672768,41.991405195808106],[-87.70951601307799,41.991612972616025],[-87.70953885970276,41.99171866292831],[-87.70954888543841,41.991765042436654],[-87.70956812150115,41.99184818657409],[-87.70957827448606,41.99190090256739],[-87.70962751853277,41.99206030598986],[-87.70963290880827,41.99207803890014],[-87.70966415707834,41.99218083798985],[-87.70969890426889,41.99230295133369],[-87.70973528792462,41.992419475123015],[-87.70981679660237,41.99272556653702],[-87.70985220794662,41.99280984099017],[-87.70988804365474,41.9929486448782],[-87.70989397008066,41.99297775756644],[-87.70992230421533,41.99311694028636],[-87.7099775263786,41.99334245591455],[-87.70999699241646,41.99341344442755],[-87.71004674288835,41.9935928006722],[-87.71007254050566,41.99370106198596],[-87.71010740149092,41.9938041310879],[-87.71011439256498,41.99383065435656],[-87.7101191576995,41.99384873208324],[-87.71016497483498,41.99402255217785],[-87.71017548390451,41.99412181183442],[-87.71018563883887,41.99423852263835],[-87.71020097639875,41.99431042144664],[-87.71024077082417,41.99449233024569],[-87.7102677638056,41.99458748101704],[-87.71029140617956,41.994698035688515],[-87.71032174228772,41.994804976904575],[-87.71034398513417,41.99490443742413],[-87.71035514739111,41.994966900960804],[-87.71035715234851,41.99501781662951],[-87.71038204487542,41.99514355344826],[-87.71039769192816,41.99524034373242],[-87.71040533855678,41.995293677461085],[-87.71042659693092,41.99538849492776],[-87.71046262785718,41.99557164552441],[-87.71047247955464,41.99562902133246],[-87.71047944128787,41.99566956751298],[-87.71049568577617,41.995727750220524],[-87.71051198550305,41.99582931891688],[-87.71054282807269,41.99608815388209],[-87.71058348562694,41.99638546077343],[-87.71062465140523,41.996702446253664],[-87.71062894272806,41.996790558115016],[-87.71064185068785,41.99700612957439],[-87.71064107162881,41.99701057094017],[-87.71063173504909,41.99702111287628],[-87.71063126941476,41.99703491363852],[-87.71063494873464,41.99707637090338],[-87.71064652999831,41.99711482497839],[-87.71066053163167,41.99722576630203],[-87.71066884675636,41.99729359295718],[-87.71067089024773,41.997365493648005],[-87.71067089518402,41.9973656665589],[-87.70999169704342,41.99737855477066],[-87.70980275968927,41.99738213971695],[-87.70964156613879,41.99738463910994],[-87.70960087065463,41.99738526979192],[-87.70945364625209,41.99738755229185],[-87.70945423005683,41.99747983249524],[-87.70945596509365,41.99775420680218],[-87.70946516022768,41.99921194040439],[-87.70936236388846,41.99921264702684],[-87.70882086543153,41.99922206353542],[-87.70857872434786,41.99922663359344],[-87.70823672231657,41.99923216897001],[-87.70823114243835,41.998948071969856],[-87.70822707061544,41.99877019874758],[-87.70822283768379,41.998601270706985],[-87.70821731945568,41.998383242072904],[-87.70821401393988,41.998262397310754],[-87.70820827285047,41.99805098095228],[-87.7082072262683,41.9980124467992],[-87.70820275411111,41.9978754872692],[-87.70819847452636,41.9977226121965],[-87.70819715031212,41.99766621211356],[-87.7081927222997,41.99749091645176]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2437418.48442","perimeter":"0.0","tract_cent":"1173517.81381305","census_t_1":"17031600300","tract_numa":"20","tract_comm":"60","objectid":"261","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885289.52920905","census_tra":"600300","tract_ce_3":"41.8406533","tract_crea":"","tract_ce_2":"-87.63874851","shape_len":"6728.66682015"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64111898148346,41.83811242765842],[-87.641415512003,41.83810731584924],[-87.64142185244921,41.83831233351184],[-87.64142675748829,41.83851999430161],[-87.64143097360117,41.83874310058683],[-87.64143501476555,41.838957342114035],[-87.64144251216194,41.83928672628595],[-87.64144779177921,41.839501798531956],[-87.641452590669,41.83970358564219],[-87.64145741508688,41.839875103681635],[-87.64145812644007,41.83993048361996],[-87.64146457587202,41.840185330820184],[-87.64146787292803,41.84038345899045],[-87.64147339754612,41.84063371411396],[-87.64147846047602,41.84085528890523],[-87.64148346312867,41.84108246161952],[-87.64149035644826,41.84139644672017],[-87.64149253112264,41.84154887612741],[-87.64149722458548,41.841750351056355],[-87.64112613972854,41.841755644110094],[-87.64088777662941,41.841759331947245],[-87.64081212784205,41.841760502100065],[-87.64060390472525,41.84176328050232],[-87.64027882288187,41.84176694923654],[-87.639861394469,41.84177165778085],[-87.63986837779281,41.84210719854977],[-87.63987163497355,41.842240589324504],[-87.63987652878646,41.84239234908628],[-87.63988245956617,41.84268238937524],[-87.63988519890773,41.84281636263532],[-87.63988916326943,41.84301002136283],[-87.63989340570335,41.843167732217665],[-87.63989672509858,41.84330216588787],[-87.63990488811687,41.843590912241694],[-87.63943486414054,41.84359707418142],[-87.63913085866241,41.84360226243825],[-87.63888080723129,41.84360698029087],[-87.63860166989342,41.84361349753693],[-87.63829148955728,41.84361678149607],[-87.63794824310733,41.84362041437509],[-87.63771223963647,41.843623837390346],[-87.63752474787034,41.843626769511374],[-87.63728924047565,41.84363046936308],[-87.6369539680915,41.84363572609287],[-87.63674996883398,41.843638940234314],[-87.63661030358435,41.84364114059818],[-87.6365120389938,41.84364268856474],[-87.63650805416344,41.84345361254835],[-87.63650458880996,41.84331305793308],[-87.6365010200907,41.84316163541438],[-87.63649660421665,41.84298685409175],[-87.63648959397285,41.842724514823026],[-87.63648500373519,41.84255275166505],[-87.63648162219943,41.8424261929935],[-87.63647694631952,41.84226861658858],[-87.63647195210748,41.84209975905944],[-87.63646911546674,41.84198917583376],[-87.63646500572557,41.84181321629983],[-87.6364605467459,41.841622161203084],[-87.63645759645534,41.84153517765375],[-87.63645559762044,41.841476246229625],[-87.6364498872155,41.84129561172301],[-87.63644626490272,41.84110788224197],[-87.63644375663327,41.840977898783684],[-87.6364397066644,41.84084378957532],[-87.63643535264542,41.84069955246665],[-87.63643038895697,41.8405357445178],[-87.63642815654926,41.840375301685185],[-87.63642599711652,41.84022007284021],[-87.63642106611377,41.84005349337096],[-87.63642084144267,41.840045890950066],[-87.63641926922256,41.83999249480612],[-87.63641638992765,41.83989468225422],[-87.63641430302688,41.839823208725],[-87.63640993339435,41.839652077448946],[-87.63640704015467,41.83953877701215],[-87.63640269617817,41.839354089225914],[-87.63639994736786,41.83923708490496],[-87.63639565319649,41.839052781333486],[-87.63639334343947,41.8389135783099],[-87.63639099413734,41.83877193264901],[-87.6363877436696,41.83863859663318],[-87.6363864988897,41.838590674248756],[-87.63638458527834,41.83851703406121],[-87.63637566127491,41.83817264487242],[-87.63642776190288,41.83817208449018],[-87.63647559638976,41.83817156955197],[-87.63660359699996,41.83817021625587],[-87.63667791571203,41.83816962642657],[-87.63681828718313,41.83816851203142],[-87.63691255347686,41.83816776337342],[-87.63696929765526,41.838167141437836],[-87.63711404373716,41.83816555457105],[-87.63742315574254,41.838160868799505],[-87.63775445904727,41.83815601362201],[-87.63796107072848,41.838152985273645],[-87.63819346979145,41.838149809110895],[-87.6384558174725,41.83814626481517],[-87.63868821620348,41.83814311509178],[-87.6389741395985,41.83813955028096],[-87.6391343632587,41.83813755223434],[-87.63947059501322,41.83813280559318],[-87.6397257868028,41.838129215166745],[-87.63998163973534,41.838125600721646],[-87.64019632634086,41.83812352736869],[-87.6404293152061,41.83812127697821],[-87.64073944662657,41.838117302212666],[-87.64095657519853,41.83811449490057],[-87.64111898148346,41.83811242765842]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7170037.43888","perimeter":"0.0","tract_cent":"1165866.66141242","census_t_1":"17031030200","tract_numa":"30","tract_comm":"77","objectid":"231","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1941273.18713718","census_tra":"030200","tract_ce_3":"41.99444225","tract_crea":"","tract_ce_2":"-87.66522478","shape_len":"11362.361475"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66054387976942,41.99817709863686],[-87.6605305919837,41.99803656794613],[-87.66049506089894,41.99773077062515],[-87.6604875555484,41.997392101080216],[-87.66047342835672,41.99715663185529],[-87.66045947451607,41.99690464580915],[-87.66046869913504,41.996616497120634],[-87.66046312244242,41.99647887075558],[-87.66045898773967,41.99637443064412],[-87.66045466706294,41.996265295778066],[-87.6604432701461,41.99581062645013],[-87.66043143659192,41.9954253550999],[-87.66042118949106,41.995075520247795],[-87.66041956839494,41.995020160422435],[-87.66041872015562,41.99499120451442],[-87.66041006015078,41.9947027944752],[-87.66040639669419,41.99455255298195],[-87.66040325265406,41.994423615213044],[-87.66039499471889,41.99414593701378],[-87.66039130815835,41.99402851863874],[-87.6603829029898,41.993760773802975],[-87.66037891536533,41.99362598319918],[-87.66037615078845,41.993532407635264],[-87.66037438691005,41.993472693572606],[-87.66036901809309,41.993309190349144],[-87.66036469446055,41.99317752641723],[-87.66035549495194,41.99287056211243],[-87.66035133436863,41.992728662742515],[-87.6603448864129,41.99250876058024],[-87.66033908120797,41.99228633697227],[-87.66033466546331,41.99211715937319],[-87.66032726480896,41.99192579092374],[-87.66032349191946,41.991822696952596],[-87.66031772460131,41.99166509163171],[-87.66030872168025,41.99138831451091],[-87.66030032823105,41.991120102829775],[-87.66029423471495,41.99091633825944],[-87.66029047934241,41.990790988970915],[-87.66028253933521,41.99050066172693],[-87.66027046939269,41.99015194127252],[-87.66026648702412,41.99000181167189],[-87.66042023476487,41.98999313469864],[-87.66068328971635,41.98998844708241],[-87.66093979308681,41.98998532721332],[-87.6610137258748,41.98998442793614],[-87.6613770644151,41.989978706946474],[-87.6615507541972,41.98997690523394],[-87.66155425715198,41.99003081345051],[-87.66156883669959,41.99055086842586],[-87.66157590170467,41.990903944112546],[-87.6617059106357,41.99090276276736],[-87.6621258943109,41.99089789193859],[-87.66217986517611,41.99089713314561],[-87.66258499576325,41.99089143725466],[-87.66272406091508,41.99088959829812],[-87.6630714649599,41.99088500304899],[-87.6633699033978,41.990880955219005],[-87.66394986351818,41.990872456177684],[-87.66445841335343,41.990865047444665],[-87.66491806914053,41.99085833968087],[-87.66516464426542,41.990856074339895],[-87.66574083316623,41.9908507786035],[-87.66682254267732,41.990837882355166],[-87.66718626701518,41.99083442290364],[-87.66759947384233,41.99082852456856],[-87.66801599097197,41.99082257752212],[-87.66836280356581,41.9908181930668],[-87.66845065632602,41.990817131164086],[-87.6690463847729,41.99080969219365],[-87.66940158331427,41.990805418164086],[-87.66978257096034,41.99080083273048],[-87.66992636938629,41.99079897151874],[-87.67002431715926,41.99079770358306],[-87.67003742367572,41.99117990599482],[-87.67005243611766,41.99161770191836],[-87.67005529390087,41.99170196020647],[-87.67006741048581,41.99205914571669],[-87.67007787446985,41.99246408734124],[-87.67008453139873,41.99260494128573],[-87.67009391051697,41.99280340496175],[-87.67009632016833,41.99286099916972],[-87.67009750517354,41.992889331567234],[-87.67010566256437,41.99308433652923],[-87.67012666316813,41.99341638763275],[-87.67013030575218,41.99350702326387],[-87.67014220666496,41.993803120606],[-87.6701433476716,41.99416423756432],[-87.67014979710233,41.9944397337422],[-87.67015351048408,41.9945983582032],[-87.67017394338755,41.99498511961537],[-87.67018558247302,41.99527699287894],[-87.67018796500257,41.99541506524261],[-87.67019250081162,41.99565418812974],[-87.6702029869355,41.995955543011235],[-87.67021496779319,41.99621458972087],[-87.67022374580085,41.99638828841231],[-87.67022713731403,41.996455400166965],[-87.67024954037355,41.99665249878218],[-87.67028292836413,41.99687062096233],[-87.67031887048893,41.99703954247348],[-87.67036102166787,41.9972185172204],[-87.67037185605061,41.99726237102944],[-87.6704079491184,41.99740846198746],[-87.67047413250347,41.997627698816],[-87.67049734427556,41.9977032665125],[-87.67054035454684,41.997843288519256],[-87.67057372600647,41.9979976352338],[-87.67059060013003,41.99807567944458],[-87.67047237513425,41.99807679892499],[-87.67037226408121,41.998077746559865],[-87.67009101252397,41.99808150351415],[-87.66938700047444,41.99809090465316],[-87.66917042974235,41.99809407681964],[-87.66901497355339,41.998096353669204],[-87.66855321960122,41.99810174400719],[-87.6683748091713,41.99810387058922],[-87.66821152343678,41.99810555929247],[-87.66796195086694,41.9981089512297],[-87.66783247243379,41.998110710762084],[-87.66765946792462,41.99811306158701],[-87.66734261145555,41.998116163238755],[-87.66692034450818,41.998120271181335],[-87.66674800814592,41.99812208171058],[-87.66661080771797,41.99812352334851],[-87.66624568096977,41.99812691760659],[-87.66614560633913,41.99812785243616],[-87.6660148469434,41.99812907394191],[-87.66574950027477,41.998131552147385],[-87.66550444690776,41.99813547846058],[-87.6654048071682,41.99813707487743],[-87.66521420869236,41.99814012808015],[-87.66480390556524,41.99814363432354],[-87.66477491237524,41.99814388203487],[-87.66444157366071,41.99814704433298],[-87.66425127521806,41.99814870144139],[-87.66401110698065,41.99815079193073],[-87.6636163238691,41.99815467558004],[-87.66352426867114,41.998155581092206],[-87.66317392273588,41.99815976558729],[-87.6630519220909,41.99815823275983],[-87.66284170903269,41.99816438422704],[-87.66261488158293,41.99816673632207],[-87.66241141763396,41.998168867779896],[-87.66201887580735,41.99817296676925],[-87.66183393608132,41.99817432464955],[-87.66149845097216,41.99817757835568],[-87.6611922529823,41.99818163400915],[-87.66101998383314,41.99818391519203],[-87.66063444115817,41.99818819835094],[-87.66055651905194,41.99818906383487],[-87.66054502343871,41.998189191571626],[-87.66054387976942,41.99817709863686]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3395416.55074","perimeter":"0.0","tract_cent":"1163878.70997724","census_t_1":"17031030300","tract_numa":"15","tract_comm":"77","objectid":"232","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1941235.44851792","census_tra":"030300","tract_ce_3":"41.99438102","tract_crea":"","tract_ce_2":"-87.6725384","shape_len":"7812.65514399"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67038496083352,41.99079303454441],[-87.6707806132243,41.990786070867095],[-87.67125721185008,41.990777164134194],[-87.67137303102523,41.99077499923327],[-87.67177644369029,41.990764618640114],[-87.67214515095836,41.9907812393776],[-87.67254792433468,41.990800154337336],[-87.67288643303642,41.990794857713695],[-87.67318498695458,41.99079021889987],[-87.67345101778007,41.99078608499277],[-87.6740396459548,41.9907750875787],[-87.67451573094333,41.99076596595987],[-87.67468065396432,41.99076379796942],[-87.67470545483106,41.99076347183246],[-87.67484988170877,41.99076157320673],[-87.6748345208642,41.99207775568878],[-87.67484324251386,41.99239328606916],[-87.67484928460512,41.9926118676754],[-87.67485758587037,41.992919978336815],[-87.67486935079694,41.99336315054708],[-87.67488090543031,41.99383030575383],[-87.67489095233923,41.99423675075268],[-87.67489497640717,41.99435413358397],[-87.67490356645013,41.99460470943969],[-87.67491284431858,41.99489309485711],[-87.67491766435508,41.9950429004703],[-87.67492943322915,41.99542860917269],[-87.67493365936232,41.99556241108434],[-87.67494072169536,41.9957860224837],[-87.67495433156978,41.996232305984975],[-87.67496705834878,41.99665720714095],[-87.67497026078031,41.99678433668976],[-87.67497314080593,41.996898703352024],[-87.67498302191302,41.99720352981046],[-87.6749912724495,41.99744830401867],[-87.67499417858069,41.99753451570022],[-87.67500437929117,41.99783333418041],[-87.67500654833287,41.997897725318126],[-87.67501250028111,41.99799274794264],[-87.67486272772362,41.997995444280804],[-87.67449366063867,41.99800293129304],[-87.67416521393325,41.99800985456584],[-87.67373241558002,41.998018619660826],[-87.67356141528091,41.99802130181541],[-87.67337900349776,41.99802416234209],[-87.67283143852485,41.998035118126445],[-87.67244846682834,41.998042381345094],[-87.67227644642153,41.998045581773255],[-87.67215336542883,41.9980478717617],[-87.67199219322927,41.99805149867576],[-87.67175897246884,41.998056740849975],[-87.67131040506722,41.99806483815584],[-87.67128195549112,41.9980653516185],[-87.67085836365113,41.998073143622655],[-87.67069376678128,41.99807470233232],[-87.67059060013003,41.99807567944458],[-87.67057372600647,41.9979976352338],[-87.67054035454684,41.997843288519256],[-87.67049734427556,41.9977032665125],[-87.67047413250347,41.997627698816],[-87.6704079491184,41.99740846198746],[-87.67037185605061,41.99726237102944],[-87.67036102166787,41.9972185172204],[-87.67031887048893,41.99703954247348],[-87.67028292836413,41.99687062096233],[-87.67024954037355,41.99665249878218],[-87.67022713731403,41.996455400166965],[-87.67022374580085,41.99638828841231],[-87.67021496779319,41.99621458972087],[-87.6702029869355,41.995955543011235],[-87.67019250081162,41.99565418812974],[-87.67018796500257,41.99541506524261],[-87.67018558247302,41.99527699287894],[-87.67017394338755,41.99498511961537],[-87.67015351048408,41.9945983582032],[-87.67014979710233,41.9944397337422],[-87.6701433476716,41.99416423756432],[-87.67014220666496,41.993803120606],[-87.67013030575218,41.99350702326387],[-87.67012666316813,41.99341638763275],[-87.67010566256437,41.99308433652923],[-87.67009750517354,41.992889331567234],[-87.67009632016833,41.99286099916972],[-87.67009391051697,41.99280340496175],[-87.67008453139873,41.99260494128573],[-87.67007787446985,41.99246408734124],[-87.67006741048581,41.99205914571669],[-87.67005529390087,41.99170196020647],[-87.67005243611766,41.99161770191836],[-87.67003742367572,41.99117990599482],[-87.67002431715926,41.99079770358306],[-87.6700799534207,41.99079698362855],[-87.6701130569048,41.990796554974736],[-87.67038496083352,41.99079303454441]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3727429.82612","perimeter":"0.0","tract_cent":"1164023.95104862","census_t_1":"17031030400","tract_numa":"17","tract_comm":"77","objectid":"233","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1938529.61588661","census_tra":"030400","tract_ce_3":"41.98695306","tract_crea":"","tract_ce_2":"-87.67208099","shape_len":"8261.85209095"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67002431715926,41.99079770358306],[-87.67002241103886,41.99074210948657],[-87.6700072856992,41.990315255037615],[-87.66999252910934,41.989912526617076],[-87.66998367570152,41.989698421499384],[-87.66997639026548,41.98952355148751],[-87.66995016165103,41.98922429844099],[-87.66989971572863,41.988903019646706],[-87.6698640131962,41.988574530859346],[-87.66984668796562,41.988422852416136],[-87.66982568491225,41.9883741747006],[-87.66977807999604,41.988043072919375],[-87.66976024182273,41.98791899972732],[-87.66970724162515,41.987532607131904],[-87.66963607497122,41.98713812988854],[-87.66957193815799,41.98678260892627],[-87.66949956056422,41.98651614097544],[-87.66946046487736,41.986370609483004],[-87.66943490709237,41.98628138510244],[-87.66939128630118,41.98612910440689],[-87.669330407361,41.985941818251995],[-87.66931319429462,41.98588886493553],[-87.6692458747854,41.98567031198084],[-87.66919999484513,41.98551939022651],[-87.66917956447112,41.98543132083516],[-87.66914514684636,41.985282962311366],[-87.66911185322421,41.98512931397952],[-87.66908569187586,41.98500858291822],[-87.66901216043182,41.98467654879286],[-87.66896417479181,41.9844500019809],[-87.66894154995012,41.98434318685161],[-87.66889119469279,41.98410917222242],[-87.66884122660086,41.98387891880338],[-87.66875743264303,41.98348951854382],[-87.66893601315225,41.98348896883049],[-87.66925938887856,41.9834850771255],[-87.66962882893485,41.98347969455589],[-87.66981613122383,41.98347583994127],[-87.67006605532389,41.98347069594169],[-87.67044129613996,41.98346493072158],[-87.67094833503099,41.9834570198252],[-87.67151682689885,41.98344833394613],[-87.672074581447,41.9834393913085],[-87.67226675480622,41.98343616200657],[-87.67244767187704,41.98343311510766],[-87.67279908356316,41.98342819482445],[-87.67286022552932,41.98342698653862],[-87.67301602124572,41.98342390781781],[-87.67322284191096,41.98341982018087],[-87.6735963776658,41.98341310346082],[-87.67397273515313,41.98340741763399],[-87.67402342543899,41.98340665390334],[-87.67426021650333,41.98340308613159],[-87.67447399950106,41.98339443419386],[-87.67460924399396,41.98335739913635],[-87.6746098949717,41.98346648085491],[-87.67462033706137,41.98380879699134],[-87.67463040645599,41.98414224721352],[-87.67463265392816,41.98421662783445],[-87.67463816594648,41.98439906619903],[-87.67464456619251,41.984629752899444],[-87.67465144079844,41.9848775106635],[-87.67465812551696,41.98511885880607],[-87.67466524575644,41.985375908433255],[-87.67467744576611,41.98583019772526],[-87.67468794894697,41.986209999778644],[-87.67469659616685,41.98652725094536],[-87.67469058606376,41.98660364230348],[-87.67465295983834,41.98668196528671],[-87.67459962171993,41.98679296378926],[-87.67460431870566,41.98693675912955],[-87.6746162973822,41.9873232928612],[-87.67462854142096,41.98780897584678],[-87.67463780472374,41.98821270031187],[-87.6746405589131,41.98832813638964],[-87.67464525305618,41.9885249223434],[-87.67465269539437,41.98878931301665],[-87.67465526863883,41.98888073716787],[-87.67466630940511,41.98930121106474],[-87.67467978643187,41.989760117622836],[-87.67468769828076,41.99010590426609],[-87.67470545483106,41.99076347183246],[-87.67468065396432,41.99076379796942],[-87.67451573094333,41.99076596595987],[-87.6740396459548,41.9907750875787],[-87.67345101778007,41.99078608499277],[-87.67318498695458,41.99079021889987],[-87.67288643303642,41.990794857713695],[-87.67254792433468,41.990800154337336],[-87.67214515095836,41.9907812393776],[-87.67177644369029,41.990764618640114],[-87.67137303102523,41.99077499923327],[-87.67125721185008,41.990777164134194],[-87.6707806132243,41.990786070867095],[-87.67038496083352,41.99079303454441],[-87.6701130569048,41.990796554974736],[-87.6700799534207,41.99079698362855],[-87.67002431715926,41.99079770358306]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3101642.08754","perimeter":"0.0","tract_cent":"1146083.61674852","census_t_1":"17031561300","tract_numa":"11","tract_comm":"56","objectid":"262","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866414.06312271","census_tra":"561300","tract_ce_3":"41.78942089","tract_crea":"","tract_ce_2":"-87.73990063","shape_len":"8286.11989126"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73764571379984,41.786768009848714],[-87.73762325642599,41.785783192719286],[-87.73766767103646,41.78578270264144],[-87.73774463981188,41.7857818530467],[-87.73806533859532,41.78578886658841],[-87.73826594917988,41.785790632303986],[-87.73845196123465,41.785792268836815],[-87.7388134954094,41.78578818606755],[-87.73883867332631,41.7857878981313],[-87.73928926919535,41.785782748058246],[-87.73937955272234,41.785781715936956],[-87.73971934614902,41.78577783076176],[-87.74008756256303,41.78576931326923],[-87.74033225711865,41.78576365219744],[-87.74068059289661,41.7857518654614],[-87.74106121635701,41.785745787606544],[-87.74127056680324,41.78574345501125],[-87.74130224856162,41.78574310208207],[-87.74135765817917,41.785742484468386],[-87.74144515989882,41.78574150938733],[-87.74182974244474,41.78573951093922],[-87.74253048091795,41.785734390450166],[-87.74253338876191,41.7858344615556],[-87.7425413599172,41.78610879504137],[-87.74254196445199,41.78621867969173],[-87.74250814025694,41.78645215494714],[-87.74245498401542,41.786614618195536],[-87.74238764497399,41.78676424749279],[-87.7422907914867,41.786904205223124],[-87.74220204352584,41.787032449667635],[-87.74207519486234,41.787215750192225],[-87.7419863777627,41.78733626151001],[-87.74188404177342,41.78747541923925],[-87.74176799161368,41.78763849138017],[-87.7417594344096,41.78765611617492],[-87.74173388610446,41.787708737068385],[-87.74164681861231,41.78788806458452],[-87.74157322755578,41.78809117488554],[-87.74153342308334,41.78828065539084],[-87.74152202433606,41.78842760845437],[-87.74153984038104,41.78892252370263],[-87.74154548924687,41.7890977484566],[-87.7415527397398,41.78932210429477],[-87.74155679681574,41.78944147503047],[-87.74155832838223,41.78948653981391],[-87.74155832867824,41.78948654749945],[-87.74156164672642,41.789593615603195],[-87.74155678686303,41.78977515296189],[-87.74153980620153,41.79004655833706],[-87.74152820069814,41.790291701067616],[-87.74151644121383,41.79057350673571],[-87.74152441798236,41.79082654438567],[-87.74152472387937,41.79083199859524],[-87.7415522342024,41.79132244564954],[-87.74284494552685,41.79183886152198],[-87.74285920422997,41.792332907273114],[-87.74285476369025,41.79301646954185],[-87.74266238998825,41.79301617076717],[-87.74198473608486,41.79303097051948],[-87.7415170874042,41.79304118165392],[-87.74108723139965,41.79304623408508],[-87.74070346426778,41.79305051195497],[-87.7403178022217,41.79305408061334],[-87.74001615010673,41.7930568711144],[-87.73963227515232,41.79306089786231],[-87.7392107094325,41.79306810388451],[-87.7391527900704,41.793067833964706],[-87.73878680815177,41.79306613034084],[-87.73837292085436,41.793067829559774],[-87.73812851919973,41.793070123705206],[-87.73806452709951,41.793070724095514],[-87.73801120101847,41.79307122467142],[-87.7379465780103,41.79307180279092],[-87.73783891223644,41.793072765897165],[-87.73783467436704,41.79289596522705],[-87.73781990376115,41.79250686512025],[-87.73781845922053,41.79246880062801],[-87.73781700692595,41.79242281854133],[-87.73781597776807,41.79239023216011],[-87.73781253436503,41.792261081145575],[-87.73780747153043,41.79207116449894],[-87.73780011334401,41.791826198362],[-87.737782268985,41.791253484751415],[-87.73778208998736,41.79124774550983],[-87.73775617871387,41.79048161102112],[-87.7377323927123,41.78963452999823],[-87.73772643896314,41.789435880970274],[-87.73770542287296,41.788764633579184],[-87.73770521283562,41.78875793092733],[-87.73767567550964,41.78773998812134],[-87.7376714202718,41.78760549568856],[-87.73764571379984,41.786768009848714]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4893463.03827","perimeter":"0.0","tract_cent":"1168366.10014066","census_t_1":"17031030600","tract_numa":"17","tract_comm":"77","objectid":"234","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1938416.30397206","census_tra":"030600","tract_ce_3":"41.98654902","tract_crea":"","tract_ce_2":"-87.65611387","shape_len":"10280.9696091"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65004762458773,41.98546678605168],[-87.64989369882257,41.98542160562505],[-87.64965090697382,41.98590136973991],[-87.6493965115169,41.986404055020955],[-87.64939645477847,41.98640416692045],[-87.64938092084483,41.98640040483414],[-87.6493741491885,41.986398765172176],[-87.64937279223662,41.98639842778409],[-87.64936868113274,41.986397430198586],[-87.64935180711944,41.98639333548586],[-87.64935185709076,41.98639323726703],[-87.65001964007232,41.98506890391932],[-87.6501220588142,41.98486578422688],[-87.65022107627199,41.98466939518887],[-87.65029584445344,41.98450488653179],[-87.65034169800096,41.984394972790454],[-87.6503650371117,41.984339027161994],[-87.65038665836119,41.984282167370466],[-87.65042857733751,41.98417192749746],[-87.65048646578327,41.98400366795632],[-87.6504869962994,41.984001933762066],[-87.65048722839782,41.984001175275026],[-87.6505291732736,41.98386496664558],[-87.65053859030166,41.98383438701075],[-87.6505625074083,41.98374744140498],[-87.65056251276245,41.98374742222745],[-87.6507691828824,41.98374904338915],[-87.65208358092183,41.98375934610358],[-87.65212205210976,41.98381534605442],[-87.65212537696075,41.98382018596334],[-87.65216565232863,41.98385461762544],[-87.65219888409797,41.98386894851108],[-87.65221533505144,41.983876042720325],[-87.65228696184856,41.983881516997506],[-87.6522869986238,41.983881517490104],[-87.65239337559206,41.9838842338503],[-87.65248199912371,41.98388283060995],[-87.65256271830106,41.983881552213425],[-87.65269283499663,41.98387949147769],[-87.65282399606,41.98387741400862],[-87.65283588109762,41.983877225958764],[-87.65288473380755,41.98387645188983],[-87.65293243913435,41.98387569652058],[-87.65306227034597,41.98387363998562],[-87.65313254135093,41.98387252704148],[-87.65320806439132,41.983871330463316],[-87.65339691612385,41.98386833837585],[-87.65364707476125,41.983861875337965],[-87.65370473956989,41.983860385542734],[-87.65398563667128,41.98385312763283],[-87.65421418406366,41.98384722178828],[-87.65421436580893,41.98384721710065],[-87.65447621882059,41.98384253655911],[-87.65480263375926,41.983836700296045],[-87.65498509908319,41.98383347026479],[-87.65519200760718,41.983801746738955],[-87.65591466066856,41.9836921081624],[-87.6559932109502,41.98369499588511],[-87.65647899618993,41.98368551227522],[-87.65660871281334,41.98368339369884],[-87.65681478542992,41.98368002742165],[-87.6573161100705,41.983670481187744],[-87.65739481786714,41.98366898228209],[-87.65783987648733,41.98366051543134],[-87.65800569440633,41.9836581878376],[-87.65816635053413,41.98365593227873],[-87.65853306600438,41.9836509922803],[-87.65864000168561,41.983649551423156],[-87.65871442511443,41.98364799597147],[-87.65874585459896,41.983647339296276],[-87.65891459039321,41.983643812131554],[-87.6589649372382,41.98364275967924],[-87.65911961283012,41.983639526394356],[-87.65931216015348,41.98363586187528],[-87.6594147581833,41.983634151966676],[-87.65977285584242,41.98362673127201],[-87.66006871101082,41.98362222347471],[-87.6600688081518,41.983625640842725],[-87.66007706831283,41.98391627218223],[-87.66008168418156,41.984057844868246],[-87.66008883129541,41.98428002942033],[-87.66009297614985,41.98441021092336],[-87.66009955445529,41.98461677765359],[-87.66011207112653,41.98501371658629],[-87.66012213032381,41.98533317245239],[-87.66012554902085,41.98546243036698],[-87.66012931140276,41.98560469777819],[-87.66013318727389,41.985754278856305],[-87.66013569181226,41.98585094436113],[-87.66014410814856,41.98612738873996],[-87.66015516267606,41.986488589852634],[-87.66016434417266,41.986790175781984],[-87.66017035572378,41.98695058147786],[-87.66017789588221,41.98715177540793],[-87.66018141018986,41.98726987841757],[-87.66019870483328,41.987851008308056],[-87.66020547789068,41.988073986057124],[-87.66021078112325,41.98824794442809],[-87.66021879563746,41.98850671399967],[-87.66022765663972,41.98878988440252],[-87.66023837573438,41.98906403728982],[-87.66024321673503,41.98918785623437],[-87.6602509092253,41.98945277086659],[-87.66026135948998,41.9898085344441],[-87.66026648702412,41.99000181167189],[-87.65999648854314,41.99001704909181],[-87.65969970292845,41.99002867210242],[-87.65950156524065,41.99003343420994],[-87.65945009686284,41.99003467130146],[-87.65926276684768,41.9900371139329],[-87.65916228590042,41.99003873980152],[-87.65904801229544,41.99004006283607],[-87.65891629255611,41.990042694325915],[-87.65840010429808,41.99005490180149],[-87.65821524667362,41.99005770549764],[-87.65804806071527,41.99006024073976],[-87.65751332614009,41.99006923693179],[-87.65694977824177,41.990079679937544],[-87.65681444427186,41.990082036900304],[-87.65649416055099,41.99008761449483],[-87.65611203796612,41.99009378521844],[-87.65604480360007,41.99009487069205],[-87.65538641919412,41.990105638032524],[-87.65430599304399,41.99012172769309],[-87.65430518884341,41.99011689178525],[-87.65430208605514,41.99009824201128],[-87.65428880163341,41.99006756513534],[-87.65428682474214,41.990064703597476],[-87.65427340497904,41.99004527354084],[-87.65424757160582,41.990015264730495],[-87.65423351277961,41.990003150473264],[-87.65422730459017,41.98999780098994],[-87.6542104346896,41.98997915099614],[-87.65420150946679,41.989964059195806],[-87.65419926937992,41.98995668300026],[-87.65419457987629,41.989941241401496],[-87.6541929241848,41.98992394346754],[-87.65419345695548,41.9899136528788],[-87.65419431290164,41.98989711348017],[-87.65419573384393,41.989881474226216],[-87.65419610460283,41.98987739306111],[-87.65419942474848,41.989838390833754],[-87.65421509565694,41.98977410670562],[-87.65421704022975,41.98976613068814],[-87.65421886061445,41.98975713776139],[-87.65423268532926,41.989688836735475],[-87.6542316664685,41.989663742200996],[-87.65422988667716,41.989619913775314],[-87.65423033937779,41.989594591945455],[-87.65423042987535,41.98958953850111],[-87.65423003914479,41.989557154989924],[-87.65422751499999,41.98953352298598],[-87.65422732898405,41.98953178234177],[-87.65422437397253,41.98952581188301],[-87.65421893895358,41.989514828205586],[-87.6542133931689,41.989505475569615],[-87.65420842266121,41.98949709393907],[-87.65419792458214,41.98946390860192],[-87.65419769488473,41.989451674180465],[-87.65419668982163,41.98939818748438],[-87.65419628004693,41.98937638683897],[-87.6542116449649,41.98923207858536],[-87.65420825115763,41.989108378007565],[-87.65421391638019,41.98904883701482],[-87.65421678191052,41.989018720258485],[-87.65421999941142,41.988964383141344],[-87.65422987181995,41.98879767089631],[-87.65423529520272,41.9887066833084],[-87.65423810924351,41.98865946717761],[-87.65423653960391,41.98863781224523],[-87.65423470817115,41.988612548522106],[-87.6542340572276,41.98859506059326],[-87.65423344913036,41.98857873261389],[-87.65423311738114,41.98857059658828],[-87.65423245734874,41.988554413743834],[-87.65423141213421,41.98854640412108],[-87.65423065466891,41.988540599513314],[-87.65423209081837,41.98852664006582],[-87.65424154501501,41.98852153471582],[-87.65424400336605,41.98852020707377],[-87.65424403505006,41.98852020232165],[-87.6542574127302,41.98851822797917],[-87.65427165758783,41.98851363915802],[-87.65427656950264,41.98851205709822],[-87.65429418291882,41.98850560293983],[-87.65430073412257,41.988503272080756],[-87.65430389397166,41.988502147815325],[-87.65430389704463,41.98850206633096],[-87.65430657457443,41.988437854600406],[-87.65430789272884,41.988406234197925],[-87.654206549959,41.988285688204485],[-87.65420159721909,41.988279796483745],[-87.65417860828023,41.98825245180089],[-87.65416564870102,41.98823703673382],[-87.65393073138557,41.987976127720074],[-87.65367887276227,41.98770356595801],[-87.65355725312241,41.98758414217252],[-87.65354250908943,41.98756966486013],[-87.65354171906728,41.98756903615216],[-87.65346620628509,41.9875089502202],[-87.65343279742703,41.987486964553575],[-87.65338840427812,41.98745774955008],[-87.65331198538061,41.987421759304375],[-87.65323250916,41.98738273255606],[-87.6532174462141,41.98737338166138],[-87.65314985375727,41.987331420918316],[-87.65309280103382,41.98729754441803],[-87.65309242455606,41.9872973207307],[-87.65309224764162,41.98729721622627],[-87.6530717454855,41.9872813573328],[-87.65301724177485,41.987239198555635],[-87.65284134023791,41.987104223121335],[-87.65266418402778,41.9869682841732],[-87.65226168344529,41.98669150465326],[-87.65219563888823,41.98663982573325],[-87.65192572416665,41.98642862069472],[-87.65185246615006,41.986357314816416],[-87.65182590399098,41.986331460219866],[-87.65179215468292,41.98630119089717],[-87.65177529807552,41.986286072392744],[-87.65175443455627,41.98626935876999],[-87.65172967384183,41.986249523259715],[-87.6516790700044,41.986207400993095],[-87.65164071910624,41.98617523111425],[-87.65161784130977,41.98615791358235],[-87.65159029316919,41.98613706150419],[-87.65154672386956,41.98611063850365],[-87.65153627996156,41.98610430461962],[-87.65147560548806,41.9860718374468],[-87.65144737683065,41.98605351445773],[-87.65140528737993,41.9860261948839],[-87.6513552709047,41.985991074481184],[-87.65131241507035,41.98596057830606],[-87.65115558130672,41.98583624028129],[-87.65105608317583,41.98576429964088],[-87.65098409060732,41.98572648209014],[-87.65097693151604,41.9857227214272],[-87.65095279081285,41.98571471938093],[-87.6509153935358,41.98570232300501],[-87.65081193849296,41.98565983155155],[-87.65076669833101,41.98564106751954],[-87.65073595429118,41.985628315206085],[-87.65071304565791,41.98562170680245],[-87.6506651474724,41.98560788952584],[-87.6506385713506,41.98560093904998],[-87.65059868517297,41.98559050743104],[-87.65050856162753,41.98557413712092],[-87.65045361764558,41.985567756324826],[-87.65037656972108,41.98555880825438],[-87.65028006054344,41.98554451280429],[-87.65025067870225,41.985537262068874],[-87.65022103530765,41.98552994665306],[-87.65014383528217,41.98551084098348],[-87.65013811325743,41.98550942495333],[-87.6501379819287,41.98550939233909],[-87.65013442127463,41.98550779543177],[-87.65011528628673,41.985499213514764],[-87.65005785134586,41.98547348787315],[-87.65004932996185,41.9854679034848],[-87.65004762458773,41.98546678605168]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6209504.8035","perimeter":"0.0","tract_cent":"1166311.09372464","census_t_1":"17031010500","tract_numa":"30","tract_comm":"1","objectid":"237","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1945058.34076824","census_tra":"010500","tract_ce_3":"42.00481926","tract_crea":"","tract_ce_2":"-87.66348104","shape_len":"12857.313669"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66284170903269,41.99816438422704],[-87.6630519220909,41.99815823275983],[-87.66317392273588,41.99815976558729],[-87.66352426867114,41.998155581092206],[-87.6636163238691,41.99815467558004],[-87.66401110698065,41.99815079193073],[-87.66425127521806,41.99814870144139],[-87.66444157366071,41.99814704433298],[-87.66477491237524,41.99814388203487],[-87.66480390556524,41.99814363432354],[-87.66521420869236,41.99814012808015],[-87.6654048071682,41.99813707487743],[-87.66550444690776,41.99813547846058],[-87.66551899524981,41.99852597862974],[-87.66554992170846,41.99935608334071],[-87.66556659238678,41.9998657761525],[-87.66556974640756,41.99996623152527],[-87.66557288507174,42.00006622111811],[-87.66557915445759,42.000272345861994],[-87.66558291799933,42.000384495015204],[-87.66558566235453,42.00046628806431],[-87.66559565744802,42.00082967671944],[-87.66559835122811,42.00092760501904],[-87.66560946849415,42.00128589598254],[-87.6656123386094,42.001365906027836],[-87.66561750165374,42.00150984099403],[-87.66562260103419,42.00169776518904],[-87.66562512381768,42.00179956233219],[-87.66562694759901,42.00187317150344],[-87.6656312974111,42.0020131503705],[-87.66564000782053,42.00229201048187],[-87.66564398711208,42.002420736289615],[-87.66564677106862,42.002510788994],[-87.66566207111536,42.00298282329798],[-87.6656736248394,42.00338384365771],[-87.66567662326842,42.00347200465391],[-87.66567956289369,42.003558435920176],[-87.66568079545159,42.0036235351995],[-87.66568224514201,42.00369950272046],[-87.66568900942711,42.00391120118194],[-87.66570236589226,42.00432984963719],[-87.66570548147658,42.00445854238372],[-87.66570750520583,42.0045421423446],[-87.66571142855754,42.00467215726821],[-87.66572073844874,42.00497942305963],[-87.66573265529163,42.005372722700194],[-87.66573534779846,42.00546158220189],[-87.66561134216472,42.005465548546475],[-87.66561128732653,42.005465550148415],[-87.66553920391654,42.00546785606757],[-87.66553920060537,42.005467856048305],[-87.66549926361738,42.005469133553866],[-87.66560575764089,42.005729481216335],[-87.66564912136809,42.00585409995468],[-87.66565550522631,42.00595084191633],[-87.66566005822851,42.00608193097931],[-87.66566576523206,42.006225814381644],[-87.66567914232247,42.00641381401125],[-87.66569303140714,42.00660211847162],[-87.66569667820073,42.00669605613234],[-87.6657002201566,42.0067872827499],[-87.66570963640133,42.007149981862646],[-87.66572178099334,42.00746999702843],[-87.6657334375702,42.00777683725013],[-87.66573728300108,42.00791509462959],[-87.66574129957843,42.0080595065607],[-87.66574914505566,42.0082874567211],[-87.6657597622051,42.008595196432935],[-87.66577187671525,42.00894624806335],[-87.66577917843475,42.00912803647531],[-87.66578402198998,42.00924861802452],[-87.66579972020409,42.009731219463205],[-87.66580120245322,42.009776781260896],[-87.66581342734408,42.010152503669254],[-87.66581839696376,42.01034508013473],[-87.66582199021705,42.01048432526223],[-87.66583490163517,42.01081200096457],[-87.66584042230653,42.010951739716056],[-87.66584904235431,42.01116992469453],[-87.66586022259447,42.01145203685002],[-87.66586638517457,42.01153352003784],[-87.66587006281479,42.01156257131183],[-87.66587972882125,42.011691003965474],[-87.66589907960578,42.01217225433665],[-87.66592379662242,42.012786948688166],[-87.66572883672174,42.01279136697213],[-87.66422957430768,42.01281645109427],[-87.66399133868148,42.012820435235234],[-87.66366678566006,42.012827653181006],[-87.66345338494236,42.012829933982616],[-87.6633931969433,42.01271211798932],[-87.66319758832982,42.0122980315887],[-87.66294607625132,42.011762435237436],[-87.66288795568323,42.01161251202143],[-87.66286457210458,42.01155219386307],[-87.66284204327552,42.01148301862802],[-87.66273797232573,42.011165265453634],[-87.66260387270339,42.01076034609906],[-87.66253164554436,42.01053940146466],[-87.66248525604023,42.01040127932695],[-87.66243952148305,42.01026510332849],[-87.66232046000347,42.00989657702705],[-87.66215532043284,42.00938919988088],[-87.66208870876669,42.00918304981747],[-87.6620352997124,42.0090177587886],[-87.66191980974398,42.008670465429184],[-87.66177332475155,42.00822666973247],[-87.66169224993737,42.00797884447289],[-87.66168650595549,42.00796128677599],[-87.66161411990967,42.007740017546126],[-87.66148919209431,42.007359985213675],[-87.66136426306029,42.00698017225006],[-87.66129501638102,42.006766789015366],[-87.66122819778032,42.00656088742514],[-87.66111910187152,42.006222164979654],[-87.66102332399991,42.00594655435518],[-87.66094204501185,42.0056568136887],[-87.66091970708787,42.005540058245465],[-87.6608901881153,42.00538576856655],[-87.66085857328079,42.00478927178819],[-87.66085295834213,42.004643797037865],[-87.66085160781725,42.004617163112414],[-87.66085040105995,42.00459336779184],[-87.66084819748892,42.00453202561758],[-87.66084232604912,42.004368602654864],[-87.66082666456626,42.00383992574623],[-87.6608209642556,42.00368122376636],[-87.66081605172967,42.003544561666175],[-87.6608116428275,42.00342170604608],[-87.66080156082508,42.003093415087484],[-87.66079043528761,42.00270002533365],[-87.6607825209616,42.00255107718502],[-87.66077523624132,42.00241396455782],[-87.66076540781354,42.00212796240089],[-87.66075077801449,42.00170406467343],[-87.66074550488707,42.00153235768634],[-87.66074162795303,42.00140610207135],[-87.66072468477886,42.001065613764915],[-87.66072620535398,42.00097352773555],[-87.66072808231024,42.0008598635003],[-87.66072808471637,42.00085970490034],[-87.66072854434888,42.00083188646899],[-87.66072144359764,42.000663951334836],[-87.6607190463089,42.000607259380274],[-87.66071191177015,42.0004385191708],[-87.66070671904656,42.00031571404678],[-87.66070489551906,42.00026951922569],[-87.66069019438275,41.99989710108593],[-87.66067334879297,41.99944253761816],[-87.66065980221983,41.99904166922593],[-87.66064848337463,41.99891517785094],[-87.66064820113709,41.998914764843114],[-87.66061678410941,41.99878865677199],[-87.66060964876688,41.998610461396574],[-87.66060801825239,41.9985697374089],[-87.660581730677,41.998437436933436],[-87.66055051651789,41.99824729327565],[-87.66054502343871,41.998189191571626],[-87.66055651905194,41.99818906383487],[-87.66063444115817,41.99818819835094],[-87.66101998383314,41.99818391519203],[-87.6611922529823,41.99818163400915],[-87.66149845097216,41.99817757835568],[-87.66183393608132,41.99817432464955],[-87.66201887580735,41.99817296676925],[-87.66241141763396,41.998168867779896],[-87.66261488158293,41.99816673632207],[-87.66284170903269,41.99816438422704]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7245976.35662","perimeter":"0.0","tract_cent":"1168703.20954615","census_t_1":"17031030700","tract_numa":"25","tract_comm":"77","objectid":"235","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1936010.2166632","census_tra":"030700","tract_ce_3":"41.97993934","tract_crea":"","tract_ce_2":"-87.65494409","shape_len":"11605.3069516"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65057903860345,41.98368734607682],[-87.65061171177389,41.983555208163075],[-87.65061967102545,41.98352301861212],[-87.65065446288853,41.98335797007207],[-87.65068344968962,41.98319225583139],[-87.65069156815686,41.98313396333442],[-87.65070659448233,41.983026067768485],[-87.65071508826314,41.982944273189815],[-87.65072389562211,41.98285946076103],[-87.65073531388262,41.982692599230205],[-87.65073780241991,41.98261749688181],[-87.65074084909725,41.982525537511904],[-87.65074131979644,41.98248146907415],[-87.6507364879875,41.98231856682866],[-87.65073639880114,41.98231555344562],[-87.65073623756189,41.98230747494612],[-87.65072610502928,41.981798622634464],[-87.65071788192544,41.981535961292174],[-87.65070992563469,41.981281794537594],[-87.65070978423662,41.981277850286524],[-87.6507096426496,41.981273889294734],[-87.65070752054186,41.98118632116723],[-87.6507054306673,41.98110007428623],[-87.65069533227081,41.9809263614792],[-87.65068630627927,41.98082820442379],[-87.65067938399397,41.98075291601564],[-87.650668556368,41.98066136010997],[-87.6506619878453,41.98063135716494],[-87.65064106366599,41.98053578682547],[-87.65060778805052,41.98041100267336],[-87.65058927932421,41.98034988882666],[-87.65057012655724,41.980309370459864],[-87.65055485953306,41.980277072391246],[-87.65052670400954,41.98022658843193],[-87.6505175458428,41.98021016647169],[-87.65043181380904,41.98006923430359],[-87.65032623769632,41.97989568036336],[-87.65022121802878,41.97972304043182],[-87.65022109875702,41.97972284433526],[-87.65022119522855,41.97972279935565],[-87.65026745036755,41.97970111168202],[-87.65028269055465,41.97969212126501],[-87.65031042022055,41.97967576399105],[-87.65031946372883,41.97966914198898],[-87.65034949074412,41.97964715493247],[-87.6503795527891,41.979619822654676],[-87.65038421519442,41.9796155839886],[-87.65039807059954,41.979599783550654],[-87.65041418670596,41.97958140493975],[-87.65042570278098,41.97956459388956],[-87.65043910667669,41.979545027917325],[-87.65045863862805,41.97950686282707],[-87.65047255833571,41.97946734658625],[-87.65047315362,41.97946505433176],[-87.65047512813659,41.979457455320116],[-87.65047501453391,41.97945741704888],[-87.65031148776028,41.979402385456616],[-87.65028138005998,41.97939225339028],[-87.65027521912666,41.97938797694767],[-87.65023256976227,41.97935837315992],[-87.65018791260174,41.97932141832688],[-87.65018139842348,41.979314957591406],[-87.65014923348923,41.97928304078633],[-87.65014784514074,41.97928166316956],[-87.65014783242478,41.979281648549645],[-87.6501458478636,41.97927927727829],[-87.65011349200589,41.979240624792084],[-87.64999224401497,41.97911933791021],[-87.64998701098263,41.97911410266438],[-87.64987874940356,41.979005806057955],[-87.64979917384521,41.97893603854634],[-87.64976514191075,41.9789062018685],[-87.64971880693443,41.97886823769804],[-87.64964712711757,41.97880950733464],[-87.64962570760822,41.97879309789544],[-87.64952481447597,41.9787158051464],[-87.64939834961143,41.978625234190936],[-87.64939378491287,41.97862212992702],[-87.64932587375289,41.97857595511329],[-87.64893829820576,41.97828542208001],[-87.64881515358793,41.97818625074671],[-87.64877399668987,41.97815310569236],[-87.64875751101387,41.978137854199396],[-87.64873572314043,41.97811769656622],[-87.6487186715972,41.97809838275011],[-87.64870218472538,41.978079708952876],[-87.64867370925651,41.97803947384079],[-87.6486663942892,41.97802618698984],[-87.6486505490057,41.97799740436795],[-87.64863292108518,41.9779538311362],[-87.64862624561803,41.97793159048598],[-87.64860387279828,41.9778400203692],[-87.64860383420547,41.97784001821807],[-87.64836312588658,41.97782704124022],[-87.64802228072529,41.97780866477015],[-87.64754273519625,41.97778280850985],[-87.64748433203886,41.977777587006464],[-87.64745558349424,41.97777501627142],[-87.64742594808497,41.977770851065294],[-87.64736935391156,41.9777628969372],[-87.64734423769792,41.97775804330125],[-87.64729034405143,41.977747624516454],[-87.64886012839155,41.97704214990639],[-87.64895753506083,41.97696109073612],[-87.64904325393668,41.97681410791271],[-87.6490432809134,41.976814061422125],[-87.64906356911195,41.976821401241445],[-87.64911500253821,41.97684000858712],[-87.64921561212496,41.976847880313755],[-87.64932039769553,41.97685042564724],[-87.64939618438065,41.9768479134498],[-87.64959954349933,41.97682296848798],[-87.64977633117397,41.976787360161005],[-87.64995382545864,41.97674559778607],[-87.65000462113183,41.97673364593312],[-87.65014165252141,41.976701224053656],[-87.65016503654199,41.976694224729826],[-87.65020955106648,41.976680900079884],[-87.65026691341768,41.97666616093581],[-87.65042652833446,41.976625147907505],[-87.65043182948097,41.97662378566376],[-87.65049104150674,41.976608571138435],[-87.6506133324542,41.97657714771819],[-87.65073883308945,41.9765448999598],[-87.65081699738492,41.97652481531231],[-87.6508689646395,41.976513737756946],[-87.65093222212614,41.97650025367013],[-87.65107369307856,41.97647680836704],[-87.65117437242823,41.9764677745273],[-87.65126040169545,41.97645997077325],[-87.65144746390322,41.97645520835269],[-87.6514649145343,41.97645476426236],[-87.6516025165826,41.97645126101954],[-87.65178928997535,41.976446505382604],[-87.65183098968659,41.97644544368109],[-87.65186082585473,41.97644468392858],[-87.65215185024084,41.97644016149665],[-87.65233108735987,41.976437375874184],[-87.65253128425846,41.97643404331586],[-87.65293638361781,41.97642729884027],[-87.65355910382375,41.97641795322974],[-87.65428444808684,41.97640681261105],[-87.65499285690912,41.976395927927655],[-87.65519837505637,41.97639276924902],[-87.6555961308393,41.97638726973817],[-87.65571272027248,41.976385346053014],[-87.65612653585707,41.97637851745409],[-87.65641614207377,41.97637422611496],[-87.65702600111534,41.9763651870603],[-87.65711844972414,41.97636379836698],[-87.65762319355474,41.976356217299575],[-87.65781646897766,41.97635285618757],[-87.65795214309124,41.97635049670485],[-87.65833161522656,41.97634551131386],[-87.65851376331834,41.976342629147304],[-87.65854155343918,41.97634218932559],[-87.65871814445337,41.97633939436605],[-87.65876016673609,41.97633872967708],[-87.6589296951687,41.97633604629228],[-87.65910477664595,41.976333480615295],[-87.65921549029554,41.97633185804601],[-87.65940734360562,41.97632907371178],[-87.65946244232964,41.97632830770533],[-87.65971436585066,41.976324188043925],[-87.65986612873996,41.976322763446454],[-87.6598695981857,41.976491671703194],[-87.65987995254525,41.97682833591617],[-87.65988924323253,41.977196222852825],[-87.65989456031537,41.97735470408753],[-87.6599046955112,41.97769822745961],[-87.65991405242316,41.977993420909],[-87.65991774559686,41.978143797209576],[-87.65992205663973,41.97831934142986],[-87.65993688569644,41.97881777482243],[-87.6599486390639,41.97926256850168],[-87.65996383642378,41.97984127175315],[-87.6599681461436,41.97997115932535],[-87.65997310411986,41.98012057566244],[-87.65998835373424,41.98070482241066],[-87.66000326180901,41.981241180857474],[-87.66001626677006,41.98169295194616],[-87.66001698221257,41.9817276436131],[-87.66001842931473,41.981797791849104],[-87.66002123299765,41.981933729454425],[-87.66002695851529,41.98213801359138],[-87.66003286132286,41.98234858297071],[-87.66004619854789,41.982824669498086],[-87.66005801691757,41.98324594548196],[-87.66006871101082,41.98362222347471],[-87.65977285584242,41.98362673127201],[-87.6594147581833,41.983634151966676],[-87.65931216015348,41.98363586187528],[-87.65911961283012,41.983639526394356],[-87.6589649372382,41.98364275967924],[-87.65891459039321,41.983643812131554],[-87.65874585459896,41.983647339296276],[-87.65871442511443,41.98364799597147],[-87.65864000168561,41.983649551423156],[-87.65853306600438,41.9836509922803],[-87.65816635053413,41.98365593227873],[-87.65800569440633,41.9836581878376],[-87.65783987648733,41.98366051543134],[-87.65739481786714,41.98366898228209],[-87.6573161100705,41.983670481187744],[-87.65681478542992,41.98368002742165],[-87.65660871281334,41.98368339369884],[-87.65647899618993,41.98368551227522],[-87.6559932109502,41.98369499588511],[-87.65591466066856,41.9836921081624],[-87.65519200760718,41.983801746738955],[-87.65498509908319,41.98383347026479],[-87.65480263375926,41.983836700296045],[-87.65447621882059,41.98384253655911],[-87.65421436580893,41.98384721710065],[-87.65421418406366,41.98384722178828],[-87.65398563667128,41.98385312763283],[-87.65370473956989,41.983860385542734],[-87.65364707476125,41.983861875337965],[-87.65339691612385,41.98386833837585],[-87.65320806439132,41.983871330463316],[-87.65313254135093,41.98387252704148],[-87.65306227034597,41.98387363998562],[-87.65293243913435,41.98387569652058],[-87.65288473380755,41.98387645188983],[-87.65283588109762,41.983877225958764],[-87.65282399606,41.98387741400862],[-87.65269283499663,41.98387949147769],[-87.65256271830106,41.983881552213425],[-87.65248199912371,41.98388283060995],[-87.65239337559206,41.9838842338503],[-87.6522869986238,41.983881517490104],[-87.65228696184856,41.983881516997506],[-87.65221533505144,41.983876042720325],[-87.65219888409797,41.98386894851108],[-87.65216565232863,41.98385461762544],[-87.65212537696075,41.98382018596334],[-87.65212205210976,41.98381534605442],[-87.65208358092183,41.98375934610358],[-87.6507691828824,41.98374904338915],[-87.65056251276245,41.98374742222745],[-87.65057598799692,41.98369843506366],[-87.65057903860345,41.98368734607682]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6107591.9587","perimeter":"0.0","tract_cent":"1166189.79929782","census_t_1":"17031030800","tract_numa":"24","tract_comm":"77","objectid":"236","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935980.64475622","census_tra":"030800","tract_ce_3":"41.97991245","tract_crea":"","tract_ce_2":"-87.66418824","shape_len":"10017.3252114"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66803329756755,41.97619827882462],[-87.66841697209803,41.97619059403079],[-87.66842383870652,41.97628511770137],[-87.66840549450852,41.9766945009411],[-87.66839268041483,41.97699656309581],[-87.66838816552834,41.977105042592825],[-87.66838201992563,41.97724572954318],[-87.66837892992669,41.977317884088905],[-87.66836579637068,41.97760106426664],[-87.66835213776717,41.977895849349714],[-87.66834960048617,41.97801897454823],[-87.66834753301082,41.97811928280437],[-87.66833165968387,41.978457276161066],[-87.66831083656766,41.97884677687271],[-87.66831018591651,41.97893097801503],[-87.66830935132637,41.979038971938586],[-87.66829162730193,41.97939572483148],[-87.66827190543113,41.9797323511524],[-87.66827947152154,41.97984413599103],[-87.66829198787491,41.98002906015597],[-87.66831353615376,41.9802980889497],[-87.66833915072034,41.980603996133276],[-87.66835195123576,41.980757360895815],[-87.66836089754493,41.98086454647125],[-87.66838498566571,41.98116520308159],[-87.66839468456538,41.98128638813907],[-87.66841391710007,41.98152708332651],[-87.66842948136255,41.981670284189995],[-87.6684454689282,41.981817382613194],[-87.66848215303261,41.982056367672634],[-87.66853816077717,41.9824071023919],[-87.66856378790585,41.982551591987914],[-87.66858895345375,41.98269347520799],[-87.66864945810553,41.9829903357364],[-87.66872642419507,41.9833454141534],[-87.66875743264303,41.98348951854382],[-87.66857698952273,41.98349007365866],[-87.66852688323294,41.9834911860556],[-87.66820921430515,41.983498042033254],[-87.66818147788152,41.98349857753012],[-87.66749246557266,41.98351187110695],[-87.66721833819204,41.983517159400336],[-87.66668418216221,41.983527395212604],[-87.66612011091848,41.98353528703155],[-87.66567928756162,41.983539920175616],[-87.66509632950962,41.983546044287436],[-87.66495572976115,41.98354802265039],[-87.66481491885425,41.98355000400214],[-87.66441850838432,41.983556311603515],[-87.66435556677165,41.983557316927474],[-87.66395091622276,41.9835637395464],[-87.66375300609384,41.983566839137964],[-87.66355079158069,41.98357000575382],[-87.66332146514952,41.98357359637086],[-87.66315327906182,41.98357616095491],[-87.66311193101632,41.98357679139029],[-87.66271464049481,41.98358281354921],[-87.6625495822446,41.98358522977129],[-87.66227916824229,41.98358918742622],[-87.66194709603099,41.98359454754924],[-87.66186108869448,41.98359593580564],[-87.66152143880882,41.98360141282982],[-87.66134420343177,41.9836040557213],[-87.66120691736941,41.983606102949985],[-87.66074290393722,41.983612450154055],[-87.66063379741388,41.983613942268384],[-87.66039185821953,41.98361729917218],[-87.66006871101082,41.98362222347471],[-87.66005801691757,41.98324594548196],[-87.66004619854789,41.982824669498086],[-87.66003286132286,41.98234858297071],[-87.66002695851529,41.98213801359138],[-87.66002123299765,41.981933729454425],[-87.66001842931473,41.981797791849104],[-87.66001698221257,41.9817276436131],[-87.66001626677006,41.98169295194616],[-87.66000326180901,41.981241180857474],[-87.65998835373424,41.98070482241066],[-87.65997310411986,41.98012057566244],[-87.6599681461436,41.97997115932535],[-87.65996383642378,41.97984127175315],[-87.6599486390639,41.97926256850168],[-87.65993688569644,41.97881777482243],[-87.65992205663973,41.97831934142986],[-87.65991774559686,41.978143797209576],[-87.65991405242316,41.977993420909],[-87.6599046955112,41.97769822745961],[-87.65989456031537,41.97735470408753],[-87.65988924323253,41.977196222852825],[-87.65987995254525,41.97682833591617],[-87.6598695981857,41.976491671703194],[-87.65986612873996,41.976322763446454],[-87.66002739772259,41.976321249508615],[-87.66025264945799,41.9763179875853],[-87.66054304513796,41.976313343320726],[-87.66061142420246,41.976312249548194],[-87.6609934820996,41.9763061379781],[-87.6611424915858,41.97630327077899],[-87.66131931090615,41.97629986805829],[-87.6617454969839,41.97629404412612],[-87.66213059782147,41.97628878026012],[-87.6623462130661,41.976285607719255],[-87.66249480782427,41.97628342129268],[-87.66273124484403,41.97627994160448],[-87.66294534441481,41.97627709168131],[-87.66334756874757,41.97627003873494],[-87.66355236845232,41.97626714108777],[-87.66377052021363,41.97626405421468],[-87.6640791519752,41.976259898960066],[-87.66415093478868,41.97625853697619],[-87.66457138747012,41.9762505558223],[-87.66475212005659,41.976247833608305],[-87.66495895820863,41.97624471755442],[-87.66528436559992,41.97623999811894],[-87.66535870137336,41.97623891669778],[-87.66626253706247,41.97622576327793],[-87.66739089907587,41.9762082751382],[-87.66776769419168,41.97620241235207],[-87.66780473406114,41.97620183593592],[-87.66803329756755,41.97619827882462]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"176096.042159","perimeter":"0.0","tract_cent":"1179509.86549305","census_t_1":"17031821500","tract_numa":"2","tract_comm":"54","objectid":"258","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1816177.87035252","census_tra":"821500","tract_ce_3":"41.65086782","tract_crea":"","tract_ce_2":"-87.61886596","shape_len":"2103.50419765"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61723813436332,41.65038761795022],[-87.61722997968904,41.65027560450488],[-87.6172391301197,41.65027633168384],[-87.6173005458569,41.650281212284845],[-87.61734763092255,41.650284953871704],[-87.6178859211617,41.65035446569131],[-87.61800190955196,41.650369443404216],[-87.61803444800327,41.650373644969534],[-87.61865407497596,41.65050504661812],[-87.61903501769181,41.65058582976592],[-87.61908245371532,41.65059588894614],[-87.61943302290831,41.65067421299863],[-87.62018042558182,41.650841193942355],[-87.62019942842936,41.65084543907328],[-87.62020518417816,41.65084672510999],[-87.6202058930637,41.65084697869517],[-87.62031640120438,41.65088648365546],[-87.62031565005542,41.65088787257699],[-87.62031564557408,41.65088788078225],[-87.62028520962743,41.65094415917944],[-87.62023936511638,41.65102892849995],[-87.62019192665498,41.651116645497574],[-87.62016616103342,41.6511642872767],[-87.62013579990342,41.651220426682414],[-87.62012606558984,41.65123851659088],[-87.62008373294067,41.65131718718549],[-87.62007692696733,41.65132983537606],[-87.62005940284072,41.65136407821059],[-87.62003089933043,41.651419777393954],[-87.62000869903261,41.65146315870224],[-87.61999046465151,41.65149879042407],[-87.61996844948858,41.65154246651835],[-87.61995393791693,41.65157125662157],[-87.61934022729636,41.651364766660976],[-87.61761682669561,41.65078459528164],[-87.61755023124527,41.65064421871472],[-87.6172475095027,41.65061211400285],[-87.61724387534404,41.65046648161694],[-87.61723813436332,41.65038761795022]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5328195.74006","perimeter":"0.0","tract_cent":"1165164.72326792","census_t_1":"17031010600","tract_numa":"33","tract_comm":"1","objectid":"238","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1945581.32015811","census_tra":"010600","tract_ce_3":"42.00627886","tract_crea":"","tract_ce_2":"-87.66768361","shape_len":"13409.1097862"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66568079545159,42.0036235351995],[-87.66567956289369,42.003558435920176],[-87.66567662326842,42.00347200465391],[-87.6656736248394,42.00338384365771],[-87.66566207111536,42.00298282329798],[-87.66564677106862,42.002510788994],[-87.66564398711208,42.002420736289615],[-87.66564000782053,42.00229201048187],[-87.6656312974111,42.0020131503705],[-87.66562694759901,42.00187317150344],[-87.66562512381768,42.00179956233219],[-87.66562260103419,42.00169776518904],[-87.66561750165374,42.00150984099403],[-87.6656123386094,42.001365906027836],[-87.66560946849415,42.00128589598254],[-87.66559835122811,42.00092760501904],[-87.66559565744802,42.00082967671944],[-87.66558566235453,42.00046628806431],[-87.66558291799933,42.000384495015204],[-87.66557915445759,42.000272345861994],[-87.66557288507174,42.00006622111811],[-87.66556974640756,41.99996623152527],[-87.66556659238678,41.9998657761525],[-87.66554992170846,41.99935608334071],[-87.66551899524981,41.99852597862974],[-87.66550444690776,41.99813547846058],[-87.66574950027477,41.998131552147385],[-87.6660148469434,41.99812907394191],[-87.66614560633913,41.99812785243616],[-87.66624568096977,41.99812691760659],[-87.66661080771797,41.99812352334851],[-87.66674800814592,41.99812208171058],[-87.66692034450818,41.998120271181335],[-87.66734261145555,41.998116163238755],[-87.66765946792462,41.99811306158701],[-87.66783247243379,41.998110710762084],[-87.66796195086694,41.9981089512297],[-87.667971780662,41.99855987001783],[-87.66797907879526,41.99885557126668],[-87.66798333310047,41.99900474260415],[-87.6679858158451,41.99909177522979],[-87.66799260840065,41.99931552088692],[-87.66800828072174,41.999831135035535],[-87.6680100554126,41.99993747632091],[-87.6680115197934,42.00002522283033],[-87.66803209225637,42.000716767785235],[-87.66804465796743,42.00117748003886],[-87.66805588845756,42.00159685704728],[-87.6680581820017,42.00170312639047],[-87.66805947298852,42.001762954422276],[-87.66806149625421,42.00185670924869],[-87.66806669292079,42.00203944738301],[-87.66807722583951,42.00240926025897],[-87.66809423500446,42.00301565958333],[-87.66810763915569,42.00347011976137],[-87.6681090576467,42.00352467144191],[-87.66811068594522,42.003587267000846],[-87.66831775552839,42.003583312139995],[-87.66868249372868,42.003577783713816],[-87.66922893311538,42.00357002454414],[-87.6693339160007,42.003568292449174],[-87.66976839341362,42.00356112475382],[-87.66993396406349,42.00355877857774],[-87.67003248719638,42.003557382269],[-87.67054332867133,42.003548492106916],[-87.67054519518342,42.003609245190496],[-87.67055252877384,42.003920039268095],[-87.6705622952881,42.00426229575622],[-87.67056645222685,42.00442864491403],[-87.67056978190062,42.004561866958255],[-87.67057415206689,42.00470033640318],[-87.67058050219094,42.00490157435093],[-87.67058201968366,42.00494966372855],[-87.67059314521717,42.005373666606076],[-87.67013542346008,42.00538253183634],[-87.66994764034646,42.005385402494774],[-87.66996431070916,42.005852555188035],[-87.66996967129815,42.00600241844423],[-87.66997731224045,42.00621604285951],[-87.66998866575003,42.00653276006011],[-87.66999091583337,42.00661817074743],[-87.66999642328652,42.006827256001365],[-87.6700068021792,42.00713867125718],[-87.67001897728834,42.00746129315081],[-87.6700316782353,42.00773334273326],[-87.67003322919102,42.00779127979558],[-87.67003450570411,42.007838976991565],[-87.6700391534831,42.008012606753475],[-87.67005160373387,42.008372523656526],[-87.67006197282835,42.00869200667124],[-87.67007067596568,42.00895931309428],[-87.67007346417034,42.009048723758525],[-87.67007989442794,42.00925494246468],[-87.67009411351421,42.009618217411926],[-87.6701057819817,42.00992950302657],[-87.67011517442315,42.01019774612052],[-87.67011660412423,42.01027441480469],[-87.67011931045172,42.010419500073645],[-87.67013167539447,42.01073460380798],[-87.67013701637148,42.010877881326174],[-87.67014269653902,42.011030270940786],[-87.67015506849047,42.011383683479934],[-87.67015859453363,42.011489894965095],[-87.67016145464275,42.011576581578794],[-87.67017694099745,42.012096187178564],[-87.67017976386923,42.01219089042381],[-87.67019317851967,42.0126139562719],[-87.67019802501791,42.01271420978322],[-87.67002536419231,42.01271863768319],[-87.66897380506276,42.0127370892237],[-87.66822229017878,42.01274840556483],[-87.66816785843088,42.01274921609065],[-87.66802728153024,42.0127518777094],[-87.66790375056952,42.01275421646911],[-87.66679743546675,42.01277276969388],[-87.66637104869935,42.012779148154735],[-87.66622339883943,42.01278135648511],[-87.66622337638594,42.012781357177865],[-87.66613928180081,42.012782613979105],[-87.66606803840034,42.01278367978871],[-87.66592379662242,42.012786948688166],[-87.66589907960578,42.01217225433665],[-87.66587972882125,42.011691003965474],[-87.66587006281479,42.01156257131183],[-87.66586638517457,42.01153352003784],[-87.66586022259447,42.01145203685002],[-87.66584904235431,42.01116992469453],[-87.66584042230653,42.010951739716056],[-87.66583490163517,42.01081200096457],[-87.66582199021705,42.01048432526223],[-87.66581839696376,42.01034508013473],[-87.66581342734408,42.010152503669254],[-87.66580120245322,42.009776781260896],[-87.66579972020409,42.009731219463205],[-87.66578402198998,42.00924861802452],[-87.66577917843475,42.00912803647531],[-87.66577187671525,42.00894624806335],[-87.6657597622051,42.008595196432935],[-87.66574914505566,42.0082874567211],[-87.66574129957843,42.0080595065607],[-87.66573728300108,42.00791509462959],[-87.6657334375702,42.00777683725013],[-87.66572178099334,42.00746999702843],[-87.66570963640133,42.007149981862646],[-87.6657002201566,42.0067872827499],[-87.66569667820073,42.00669605613234],[-87.66569303140714,42.00660211847162],[-87.66567914232247,42.00641381401125],[-87.66566576523206,42.006225814381644],[-87.66566005822851,42.00608193097931],[-87.66565550522631,42.00595084191633],[-87.66564912136809,42.00585409995468],[-87.66560575764089,42.005729481216335],[-87.66549926361738,42.005469133553866],[-87.66553920060537,42.005467856048305],[-87.66553920391654,42.00546785606757],[-87.66561128732653,42.005465550148415],[-87.66561134216472,42.005465548546475],[-87.66573534779846,42.00546158220189],[-87.66573265529163,42.005372722700194],[-87.66572073844874,42.00497942305963],[-87.66571142855754,42.00467215726821],[-87.66570750520583,42.0045421423446],[-87.66570548147658,42.00445854238372],[-87.66570236589226,42.00432984963719],[-87.66568900942711,42.00391120118194],[-87.66568224514201,42.00369950272046],[-87.66568079545159,42.0036235351995]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8474323.99016","perimeter":"0.0","tract_cent":"1162911.96185652","census_t_1":"17031010700","tract_numa":"39","tract_comm":"1","objectid":"239","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1946588.46810072","census_tra":"010700","tract_ce_3":"42.00909026","tract_crea":"","tract_ce_2":"-87.67594334","shape_len":"11685.5633846"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67019317851967,42.0126139562719],[-87.67017976386923,42.01219089042381],[-87.67017694099745,42.012096187178564],[-87.67016145464275,42.011576581578794],[-87.67015859453363,42.011489894965095],[-87.67015506849047,42.011383683479934],[-87.67014269653902,42.011030270940786],[-87.67013701637148,42.010877881326174],[-87.67013167539447,42.01073460380798],[-87.67011931045172,42.010419500073645],[-87.67011660412423,42.01027441480469],[-87.67011517442315,42.01019774612052],[-87.6701057819817,42.00992950302657],[-87.67009411351421,42.009618217411926],[-87.67007989442794,42.00925494246468],[-87.67007346417034,42.009048723758525],[-87.67007067596568,42.00895931309428],[-87.67006197282835,42.00869200667124],[-87.67005160373387,42.008372523656526],[-87.6700391534831,42.008012606753475],[-87.67003450570411,42.007838976991565],[-87.67003322919102,42.00779127979558],[-87.6700316782353,42.00773334273326],[-87.67001897728834,42.00746129315081],[-87.6700068021792,42.00713867125718],[-87.66999642328652,42.006827256001365],[-87.66999091583337,42.00661817074743],[-87.66998866575003,42.00653276006011],[-87.66997731224045,42.00621604285951],[-87.66996967129815,42.00600241844423],[-87.66996431070916,42.005852555188035],[-87.66994764034646,42.005385402494774],[-87.67013542346008,42.00538253183634],[-87.67059314521717,42.005373666606076],[-87.67070295757054,42.00537153991414],[-87.67115433353798,42.0053678876372],[-87.67168524555215,42.00535810601758],[-87.67220167730831,42.00535026978936],[-87.67249222708443,42.005343772600035],[-87.67280672897631,42.005336739082104],[-87.67309905611158,42.00533248215627],[-87.67324573374287,42.005330345805135],[-87.67360385308241,42.00532181204584],[-87.67371574153155,42.0053213181383],[-87.67391844253031,42.005320422971415],[-87.67402519702009,42.005318955543714],[-87.67449915696939,42.00531238255953],[-87.67515375980213,42.005303157823946],[-87.6752271544112,42.00530245324388],[-87.6753882743829,42.00530090600128],[-87.67546186437819,42.00530019937242],[-87.67549020612358,42.005299927121236],[-87.6755351095903,42.005299495934544],[-87.67569275782041,42.00529762294154],[-87.6763359220282,42.00528086887632],[-87.67701868560935,42.005270203326084],[-87.67749847309399,42.00526210684667],[-87.67772214508327,42.00525773071497],[-87.67792968738317,42.00525465116054],[-87.67809874000947,42.005252142130715],[-87.678440913381,42.00524490206329],[-87.67852927201055,42.00524307357578],[-87.6787350610076,42.00523881381415],[-87.67926051946826,42.00522962493034],[-87.67938182506944,42.00522648601334],[-87.67975072928527,42.005216939923],[-87.6801705676594,42.00520582933158],[-87.68030282965066,42.00549159198925],[-87.68041938194004,42.005744198775425],[-87.68046998021634,42.00585499496112],[-87.68054229212035,42.00601204438374],[-87.68065152640347,42.00625009255079],[-87.68073801475911,42.006435711765896],[-87.68089962900302,42.00678255764391],[-87.68096653413849,42.00692881911061],[-87.68109537905357,42.007210446178206],[-87.68116118788602,42.0073501144231],[-87.6812243784585,42.00748422559518],[-87.68129806725334,42.007646167249696],[-87.68134421399475,42.007747579783505],[-87.6814414670124,42.00795959881113],[-87.68151750255817,42.0081235568959],[-87.68161082090931,42.008324714166655],[-87.6816821785578,42.00847846437131],[-87.68176064039407,42.00865003717506],[-87.68184246380275,42.008844873895356],[-87.68189143250737,42.00896147617896],[-87.68193069538194,42.00905494640996],[-87.68196886979595,42.00916141788701],[-87.68201705927316,42.00929601918986],[-87.68208282014193,42.00947920991178],[-87.68216203594382,42.0096997426758],[-87.68222695767173,42.00988591997896],[-87.68228845427652,42.010058657103755],[-87.68232332459876,42.0101566041056],[-87.6823986585194,42.01036819634129],[-87.68244207128832,42.01049151919564],[-87.68262206699104,42.010997908983626],[-87.68271216935703,42.011257325826094],[-87.68275343800434,42.01137614333959],[-87.6827839788306,42.01145924595094],[-87.68284223363335,42.011630977554645],[-87.68292070844723,42.011857103930595],[-87.68302633144059,42.01213722466436],[-87.68305304875297,42.01222003111395],[-87.68308621761864,42.012322826239924],[-87.68274553923695,42.01246537490108],[-87.68268279985426,42.01249734549391],[-87.6823398913271,42.012502291332844],[-87.68136616340537,42.012516328915],[-87.68041007096497,42.01253394558505],[-87.68027027007058,42.01253573283426],[-87.68015753690659,42.012537173952616],[-87.67837571872273,42.01257273894148],[-87.67818702629371,42.01257523641852],[-87.67802514265513,42.012577378965645],[-87.67742321809527,42.01258797311335],[-87.67711082859327,42.012593450651444],[-87.67575307610257,42.01261628793149],[-87.67566096155977,42.01261783643904],[-87.67562813033142,42.01261838843113],[-87.67560045284604,42.01261787391875],[-87.67546386262472,42.01261533405939],[-87.67479958475427,42.012631310517804],[-87.674637945991,42.012635302564306],[-87.6744677747426,42.012639505006824],[-87.67383527137842,42.012650032688995],[-87.67342340496353,42.01265688602828],[-87.6724930112161,42.01267271843774],[-87.67236649413155,42.01267530386033],[-87.67221222690705,42.012678455975696],[-87.67149400603616,42.01269056259952],[-87.67034499497474,42.01271044057685],[-87.67019802501791,42.01271420978322],[-87.67019317851967,42.0126139562719]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1357557.15878","perimeter":"0.0","tract_cent":"1164744.17807422","census_t_1":"17031010900","tract_numa":"9","tract_comm":"1","objectid":"240","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1943570.38938314","census_tra":"010900","tract_ce_3":"42.00076979","tract_crea":"","tract_ce_2":"-87.66928823","shape_len":"5418.83994707"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67047237513425,41.99807679892499],[-87.67059060013003,41.99807567944458],[-87.6707248450551,41.99844255538687],[-87.67089514875802,41.99889237051676],[-87.6705405325226,41.999244395020916],[-87.67046865234418,41.999311185158625],[-87.6704460897413,41.99937949494278],[-87.67043337664916,41.99945592951736],[-87.67043299822008,41.99957749490406],[-87.67043784854354,41.999755291471885],[-87.67044179902534,41.99992780521381],[-87.67044488620705,42.00006262637493],[-87.67045365585332,42.0003802894121],[-87.6704558716951,42.00045993883434],[-87.6704619614061,42.000678905083625],[-87.67047048393982,42.0009850136263],[-87.6704783025098,42.00127377481812],[-87.67048946176882,42.001727361062386],[-87.6704913179498,42.001802819660305],[-87.67050147408887,42.0021039431531],[-87.67050709686403,42.00231368617154],[-87.67051351879591,42.00255274226866],[-87.67051598014083,42.00264004936085],[-87.6705222587942,42.00286274871104],[-87.67054332867133,42.003548492106916],[-87.67003248719638,42.003557382269],[-87.66993396406349,42.00355877857774],[-87.66976839341362,42.00356112475382],[-87.6693339160007,42.003568292449174],[-87.66922893311538,42.00357002454414],[-87.66868249372868,42.003577783713816],[-87.66831775552839,42.003583312139995],[-87.66811068594522,42.003587267000846],[-87.6681090576467,42.00352467144191],[-87.66810763915569,42.00347011976137],[-87.66809423500446,42.00301565958333],[-87.66807722583951,42.00240926025897],[-87.66806669292079,42.00203944738301],[-87.66806149625421,42.00185670924869],[-87.66805947298852,42.001762954422276],[-87.6680581820017,42.00170312639047],[-87.66805588845756,42.00159685704728],[-87.66804465796743,42.00117748003886],[-87.66803209225637,42.000716767785235],[-87.6680115197934,42.00002522283033],[-87.6680100554126,41.99993747632091],[-87.66800828072174,41.999831135035535],[-87.66799260840065,41.99931552088692],[-87.6679858158451,41.99909177522979],[-87.66798333310047,41.99900474260415],[-87.66797907879526,41.99885557126668],[-87.667971780662,41.99855987001783],[-87.66796195086694,41.9981089512297],[-87.66821152343678,41.99810555929247],[-87.6683748091713,41.99810387058922],[-87.66855321960122,41.99810174400719],[-87.66901497355339,41.998096353669204],[-87.66917042974235,41.99809407681964],[-87.66938700047444,41.99809090465316],[-87.67009101252397,41.99808150351415],[-87.67037226408121,41.998077746559865],[-87.67047237513425,41.99807679892499]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7019097.80205","perimeter":"0.0","tract_cent":"1159026.67919349","census_t_1":"17031823304","tract_numa":"2","tract_comm":"75","objectid":"259","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1830871.76450624","census_tra":"823304","tract_ce_3":"41.69163214","tract_crea":"","tract_ce_2":"-87.69341115","shape_len":"13294.3404468"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69095615409728,41.69200190090453],[-87.69094322137934,41.69168793038255],[-87.69094320782261,41.691687600163156],[-87.69092062393325,41.689984985639796],[-87.69091730759769,41.689875909354676],[-87.69086245088393,41.68807148392733],[-87.69085993796884,41.68798882716968],[-87.690837498958,41.68440253764424],[-87.69099344163023,41.68440021217973],[-87.69139158768533,41.68439458769797],[-87.69184048334884,41.684388202545755],[-87.69232292247189,41.68438076778294],[-87.69313613378061,41.68436908160048],[-87.69357051924014,41.68436392614276],[-87.69406195507537,41.684357384356645],[-87.69440305068765,41.68435313385175],[-87.69469135353158,41.68434908296041],[-87.69519224238229,41.68434165689214],[-87.69562541555098,41.68433322117065],[-87.6956441041046,41.68481344680474],[-87.69565846924364,41.68525188889506],[-87.69567223542849,41.68567203221666],[-87.69570058370086,41.686360469699785],[-87.69576154318884,41.68799176846249],[-87.69576227178402,41.68801152954245],[-87.69576463330242,41.68807555954041],[-87.69576463356285,41.68807557024477],[-87.6957659365033,41.68807557664978],[-87.69591677453094,41.69162485165818],[-87.69590259884825,41.69162500245906],[-87.69589497291392,41.691625083656106],[-87.69575662111812,41.691626556935425],[-87.69576230113748,41.691715341378696],[-87.69576270210463,41.6917153364679],[-87.69576270237317,41.69171534634901],[-87.69576609907803,41.691810296172946],[-87.69576609932491,41.6918103082494],[-87.69577003121982,41.6919202116351],[-87.69577535968092,41.69206914749948],[-87.69578064334493,41.692216837731635],[-87.69578631824018,41.69237544847062],[-87.69579194938788,41.6925328558455],[-87.69580409768975,41.69287241513407],[-87.69581623868064,41.69321176140065],[-87.69582795360634,41.6935392025515],[-87.6958405239519,41.693890560643844],[-87.69585500503443,41.69429531019627],[-87.69586882252173,41.69468150982331],[-87.69587982852738,41.694989124076166],[-87.69588628078588,41.695169467041694],[-87.69588981935831,41.69526836120159],[-87.6958979542087,41.695495719548894],[-87.6959050072015,41.69569284578777],[-87.69591110803769,41.69586336425984],[-87.69592019229064,41.696117255131114],[-87.69593178756709,41.69644132677524],[-87.6959406211141,41.696688210493825],[-87.69595080868618,41.696972931802904],[-87.69595577105044,41.69711162062788],[-87.69596349728347,41.69732755581407],[-87.69596507223056,41.6973715699376],[-87.6959748733395,41.69764549587903],[-87.69598426272105,41.6979079103384],[-87.69599212176358,41.69812754421884],[-87.6959929669179,41.69815116526525],[-87.69600158139234,41.69839190477692],[-87.69600757930233,41.69855953912376],[-87.69600897177699,41.69859845215707],[-87.69601565045987,41.698785110146524],[-87.69601641221291,41.69880638734175],[-87.69602076977927,41.69892817508599],[-87.69135882094398,41.69898049535506],[-87.69128453110305,41.698981328449726],[-87.6912379690734,41.69898185071092],[-87.69123773645497,41.69897505032747],[-87.69123384120277,41.69886114370353],[-87.69117572030835,41.69716166657501],[-87.69111340944374,41.695339583510744],[-87.69105059540367,41.69350270781159],[-87.69101423866445,41.69243947288011],[-87.69101346181667,41.69241675531923],[-87.69100890321286,41.692283435538656],[-87.69096349491618,41.69218040608953],[-87.69096296340177,41.69216747729747],[-87.69095615409728,41.69200190090453]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15924977.4698","perimeter":"0.0","tract_cent":"1156159.40401984","census_t_1":"17031020300","tract_numa":"61","tract_comm":"2","objectid":"241","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1945987.12781733","census_tra":"020300","tract_ce_3":"42.00757976","tract_crea":"","tract_ce_2":"-87.70080435","shape_len":"19662.9956643"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69024696130661,42.01212280239595],[-87.69023561087175,42.0116726377003],[-87.6902304419125,42.01150159116764],[-87.69022711884662,42.01137465401705],[-87.69022308151939,42.01122043594146],[-87.69022135782045,42.011099325142354],[-87.69022061977141,42.011061948779684],[-87.69021801819994,42.010930237212705],[-87.69021681275504,42.01086919951578],[-87.69021582641136,42.01081925010117],[-87.69021025882198,42.010575645060925],[-87.69020710835754,42.01046284772077],[-87.69020412019049,42.010355856336616],[-87.69020050279552,42.01022183751376],[-87.69019681845923,42.01008715970822],[-87.69019348972013,42.00996466807406],[-87.69018949794167,42.009817118310934],[-87.69018587507298,42.009683209211985],[-87.69018242417046,42.00953632107648],[-87.69018188964019,42.009513079496344],[-87.69017904658942,42.009389460789876],[-87.69017566349135,42.009243149305654],[-87.69017485622015,42.009208155319214],[-87.69017284632474,42.00912101726365],[-87.6901699044856,42.00897473568677],[-87.69016755602692,42.00879146553286],[-87.69016225787668,42.00863013425304],[-87.69015460613952,42.00841140583499],[-87.69015119868183,42.00825291000318],[-87.6901478176103,42.008106406407926],[-87.69014653018904,42.00805143314702],[-87.6901429552534,42.00789875404141],[-87.69013746016324,42.007744966772314],[-87.69013509853177,42.007678872985494],[-87.6901332538477,42.007627244779556],[-87.69013044455917,42.00747146902208],[-87.6901291522169,42.00740982735449],[-87.69012606334027,42.00726354490961],[-87.69012325385533,42.00715702701479],[-87.69011991290158,42.00703036435932],[-87.69011290692006,42.00683828664723],[-87.69010742909802,42.00668809433014],[-87.6901038696592,42.00649356642551],[-87.6901013728376,42.00634695797219],[-87.6900990558333,42.0062525175167],[-87.69009607799102,42.00613112544025],[-87.6900949627448,42.00603364566782],[-87.69009164127814,42.00592803101136],[-87.69008565518534,42.00573768781442],[-87.69008033298586,42.005528194178524],[-87.69007823335853,42.00539333304803],[-87.69007595735174,42.00524672580384],[-87.69007080771667,42.00503336518457],[-87.69040693208092,42.005028798083266],[-87.6906794861062,42.0050228315943],[-87.69103082669014,42.0050177191607],[-87.69128409129,42.00501201156977],[-87.69141517649943,42.00500905705688],[-87.6915539898298,42.00500593622068],[-87.69189961154673,42.00499947111999],[-87.69190226037935,42.00499942170752],[-87.6922747832253,42.0049924562463],[-87.6925089841331,42.004988335668344],[-87.69273296957297,42.004984394152466],[-87.69302685443834,42.00497854222539],[-87.6931170101872,42.00497717190826],[-87.69317478346082,42.00497629380769],[-87.69348542965258,42.00497204348365],[-87.69372167446451,42.00497212521728],[-87.69383113227411,42.00497215879334],[-87.69402527248187,42.00496626997185],[-87.69434453034674,42.00495811365391],[-87.69473111273453,42.004950550548116],[-87.69494740318692,42.00494729981291],[-87.69510693244686,42.004944902115305],[-87.69543290243882,42.00493513357626],[-87.69577723714741,42.00492483495032],[-87.69589828227069,42.00492141204011],[-87.69617550210064,42.00491530116644],[-87.6965570519875,42.00490688071962],[-87.69686590675133,42.00490143130696],[-87.69708195238752,42.00489779923777],[-87.69738390622747,42.004893090353065],[-87.69797000636235,42.004883947864045],[-87.69832812925787,42.004878190928615],[-87.69859864589114,42.004872737711096],[-87.69904594953768,42.004863718682316],[-87.69923183729139,42.00486222103698],[-87.69940265079471,42.00486031054019],[-87.69982923913675,42.00485123223149],[-87.70001493520981,42.004847280053404],[-87.70033583335022,42.004840543096165],[-87.70042989208338,42.004838838947606],[-87.70060248038176,42.004835701565945],[-87.70072505967934,42.004833358566366],[-87.70101422829515,42.004828054036516],[-87.70128186930476,42.004823143956614],[-87.7015623649469,42.00481681226142],[-87.70181930806699,42.004811008913435],[-87.70197810385514,42.004807381954144],[-87.70221450770097,42.00480326603577],[-87.70250513763533,42.00479820507705],[-87.7028838468698,42.004790406590445],[-87.703130528754,42.00478418720459],[-87.70341281952557,42.00477860177303],[-87.70377746808416,42.00477138178199],[-87.70419170916159,42.00476454222011],[-87.70435296646319,42.00476125476863],[-87.70460258042785,42.00475429171206],[-87.70460394278821,42.0045483983189],[-87.7046042767281,42.00449792711071],[-87.704604597643,42.004383084574805],[-87.70460486245189,42.00427790127351],[-87.70460496407871,42.00423753481431],[-87.7046053072781,42.00403825370627],[-87.70460560711332,42.003854586788684],[-87.7046047156813,42.00357143648896],[-87.7046041604513,42.003433510505566],[-87.70460429753118,42.003195370521844],[-87.70460354522248,42.0030886723239],[-87.70460436544423,42.00293271465971],[-87.7050190932132,42.00292544556845],[-87.7051160947739,42.00292349271067],[-87.70520643572964,42.002921676208324],[-87.70540918310134,42.00291525869633],[-87.70580745578836,42.002903523601965],[-87.7058096205901,42.00271317128805],[-87.70581035575371,42.002608401876365],[-87.705811164219,42.00250366057981],[-87.70581168459925,42.0023907949051],[-87.7058120881051,42.0022860788327],[-87.70581239010043,42.00222164690895],[-87.70581268978685,42.00216119404703],[-87.70581333615482,42.002080436075154],[-87.70581482468705,42.00195141240645],[-87.7058155633511,42.00183879489131],[-87.7058182448672,42.001678219553945],[-87.70582189540455,42.00162121496721],[-87.70582613619554,42.001556557865044],[-87.70583275696706,42.00144438412531],[-87.70583760045527,42.00135582814479],[-87.70584034996504,42.00109849356579],[-87.70584217533829,42.00092764970641],[-87.70583861730142,42.00075806673238],[-87.7058361826104,42.000661375593566],[-87.70583267460975,42.0005241468917],[-87.70583055722153,42.00044384030119],[-87.70582722722094,42.00031470792947],[-87.70582440771823,42.000212251879006],[-87.70582015938771,42.000082977272314],[-87.70581611478488,41.99996292425741],[-87.70581172070682,41.99982601999752],[-87.70580864528091,41.99970468250549],[-87.70580515443777,41.99954325010942],[-87.70580323322875,41.999446726408245],[-87.70579851964185,41.99927652045302],[-87.70604591837619,41.999272205075854],[-87.70627939858628,41.999266949538466],[-87.7064065576575,41.99926467322098],[-87.70659315480007,41.999261528125324],[-87.7070183534976,41.99925293767098],[-87.70721126512666,41.999249039812035],[-87.70756537966957,41.99924356144702],[-87.70762574046697,41.999242422611545],[-87.70778542036281,41.999239409583694],[-87.70804585648007,41.9992352578111],[-87.70823672231657,41.99923216897001],[-87.70857872434786,41.99922663359344],[-87.70882086543153,41.99922206353542],[-87.70936236388846,41.99921264702684],[-87.70946516022768,41.99921194040439],[-87.70946523217046,41.999223331659316],[-87.70947647982415,42.00101400948151],[-87.70947747120934,42.00117182942183],[-87.70947714053852,42.001683959947314],[-87.70947675653099,42.00227897812011],[-87.70947531036684,42.00451890606268],[-87.70947188130016,42.004657270831174],[-87.70947151216798,42.00467215714682],[-87.70946850883684,42.00479334231095],[-87.70942382493965,42.006475123611445],[-87.7093784817635,42.00818160152186],[-87.70935693500417,42.0089924635289],[-87.70935157661968,42.00919410742394],[-87.70933104918937,42.009966586402996],[-87.70931580128928,42.01054037704414],[-87.70919009064507,42.011668070355505],[-87.70919007958176,42.011668486862696],[-87.70918742811901,42.01176814180888],[-87.70918513593762,42.011859538160095],[-87.70905670916993,42.011862461819305],[-87.70905674694735,42.01186153366686],[-87.70905676442767,42.01186110072948],[-87.70890414420545,42.01186308639505],[-87.70861473998448,42.01186840316189],[-87.70857917147632,42.01186905670624],[-87.70812727091241,42.011879118766956],[-87.7080265858454,42.01188136033397],[-87.70790122802832,42.01188422559987],[-87.707026255588,42.01190422054632],[-87.70700664887754,42.01190466843881],[-87.70682467328348,42.011908185144065],[-87.70667556332943,42.01191106624209],[-87.70606611144682,42.01192572609231],[-87.7060118176376,42.01192703198609],[-87.70561752570617,42.01193651453799],[-87.70502727147026,42.01195070690482],[-87.70472888359348,42.01195794490213],[-87.70464412645967,42.01196000097349],[-87.70445265036078,42.01196445719824],[-87.70429098124215,42.011968219719016],[-87.70350707915775,42.011985380681715],[-87.70236558691369,42.01201032623524],[-87.7023309496743,42.012011083124925],[-87.70218460118983,42.01201467772609],[-87.70208818287976,42.01201704593905],[-87.70192652910644,42.01202101596671],[-87.69994574527715,42.01205974541313],[-87.69971870992343,42.01206766073049],[-87.6994884242361,42.012075689371315],[-87.69856741861584,42.01209617570542],[-87.69755389738883,42.01211745946557],[-87.69735103130884,42.01212321559021],[-87.69714931284528,42.01212893874931],[-87.69610413761075,42.01215096728643],[-87.69582603896585,42.01215722042059],[-87.695163548397,42.01217208595556],[-87.69498569865334,42.01217614550979],[-87.69482133321327,42.01217989725823],[-87.69423142584525,42.01219269494512],[-87.69319322682027,42.012216039849775],[-87.6930988588434,42.012218161400504],[-87.69284919597314,42.0122237423925],[-87.69282996089844,42.01222417237382],[-87.69263959651231,42.01222842738998],[-87.69262031285234,42.01222885843707],[-87.6920181877049,42.01224231473474],[-87.6918547709135,42.012245920720666],[-87.69153195675644,42.01225304360325],[-87.69106950503836,42.0122629155605],[-87.6907381867193,42.012270171937864],[-87.6904536217994,42.01227895154455],[-87.69024681723292,42.01228000519522],[-87.69024696130661,42.01212280239595]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5978507.96059","perimeter":"0.0","tract_cent":"1160204.07395421","census_t_1":"17031020400","tract_numa":"24","tract_comm":"2","objectid":"242","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1946347.98904337","census_tra":"020400","tract_ce_3":"42.00848701","tract_crea":"","tract_ce_2":"-87.68591313","shape_len":"9963.44304335"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68875745060542,42.012266338341874],[-87.68834343579648,42.01226030805682],[-87.68816781123911,42.01225967068263],[-87.68804005726673,42.01225920666738],[-87.68773696767784,42.012255005173294],[-87.68755675970931,42.01225273271903],[-87.68740304210515,42.01225079401148],[-87.68662596948455,42.012243184009655],[-87.68634027488005,42.012239978843525],[-87.68621417895659,42.0122392680302],[-87.68608517698969,42.0122385406919],[-87.68596449026889,42.012237860105316],[-87.68510174115521,42.012228023875565],[-87.68499441644188,42.01222684172362],[-87.68482071806041,42.01222492747596],[-87.68409960548486,42.0122181617876],[-87.68379615304231,42.01221354087263],[-87.68352327296556,42.012209384762],[-87.68305304875297,42.01222003111395],[-87.68302633144059,42.01213722466436],[-87.68292070844723,42.011857103930595],[-87.68284223363335,42.011630977554645],[-87.6827839788306,42.01145924595094],[-87.68275343800434,42.01137614333959],[-87.68271216935703,42.011257325826094],[-87.68262206699104,42.010997908983626],[-87.68244207128832,42.01049151919564],[-87.6823986585194,42.01036819634129],[-87.68232332459876,42.0101566041056],[-87.68228845427652,42.010058657103755],[-87.68222695767173,42.00988591997896],[-87.68216203594382,42.0096997426758],[-87.68208282014193,42.00947920991178],[-87.68201705927316,42.00929601918986],[-87.68196886979595,42.00916141788701],[-87.68193069538194,42.00905494640996],[-87.68189143250737,42.00896147617896],[-87.68184246380275,42.008844873895356],[-87.68176064039407,42.00865003717506],[-87.6816821785578,42.00847846437131],[-87.68161082090931,42.008324714166655],[-87.68151750255817,42.0081235568959],[-87.6814414670124,42.00795959881113],[-87.68134421399475,42.007747579783505],[-87.68129806725334,42.007646167249696],[-87.6812243784585,42.00748422559518],[-87.68116118788602,42.0073501144231],[-87.68109537905357,42.007210446178206],[-87.68096653413849,42.00692881911061],[-87.68089962900302,42.00678255764391],[-87.68073801475911,42.006435711765896],[-87.68065152640347,42.00625009255079],[-87.68054229212035,42.00601204438374],[-87.68046998021634,42.00585499496112],[-87.68041938194004,42.005744198775425],[-87.68030282965066,42.00549159198925],[-87.6801705676594,42.00520582933158],[-87.68035697684282,42.00520089574858],[-87.68042491873965,42.00519909757037],[-87.68062120038174,42.005196262209935],[-87.68099745472306,42.00519154059139],[-87.6809996606608,42.00519151992293],[-87.68152069825717,42.00518660970356],[-87.68170384805414,42.00518316692296],[-87.68191313196239,42.00517923276766],[-87.68227462114085,42.005171953126656],[-87.6825210712199,42.0051671490932],[-87.68283077881387,42.005161248332826],[-87.6831399720281,42.00515534382308],[-87.68358278203907,42.00514720344665],[-87.68381561844903,42.005142524289745],[-87.68395994798799,42.00513962359582],[-87.68441906973307,42.005130227891854],[-87.68482895157992,42.00512192427155],[-87.68526900359714,42.005113597430714],[-87.68569536607072,42.00510552096931],[-87.68590740525676,42.005101588214934],[-87.68608904865299,42.00509821912589],[-87.68656340037509,42.005088983043535],[-87.6866984558499,42.0050863586977],[-87.68682652024543,42.00508385178581],[-87.68714762949658,42.00507827801001],[-87.68767349541167,42.00506861383096],[-87.68797584178385,42.00506281447371],[-87.68813040219466,42.00505984942599],[-87.68840956552755,42.00505447541229],[-87.68858951714267,42.00505101327919],[-87.68898042877464,42.00504843339787],[-87.68929184803963,42.00504784853358],[-87.6896733326777,42.005038764285075],[-87.69007080771667,42.00503336518457],[-87.69007595735174,42.00524672580384],[-87.69007823335853,42.00539333304803],[-87.69008033298586,42.005528194178524],[-87.69008565518534,42.00573768781442],[-87.69009164127814,42.00592803101136],[-87.6900949627448,42.00603364566782],[-87.69009607799102,42.00613112544025],[-87.6900990558333,42.0062525175167],[-87.6901013728376,42.00634695797219],[-87.6901038696592,42.00649356642551],[-87.69010742909802,42.00668809433014],[-87.69011290692006,42.00683828664723],[-87.69011991290158,42.00703036435932],[-87.69012325385533,42.00715702701479],[-87.69012606334027,42.00726354490961],[-87.6901291522169,42.00740982735449],[-87.69013044455917,42.00747146902208],[-87.6901332538477,42.007627244779556],[-87.69013509853177,42.007678872985494],[-87.69013746016324,42.007744966772314],[-87.6901429552534,42.00789875404141],[-87.69014653018904,42.00805143314702],[-87.6901478176103,42.008106406407926],[-87.69015119868183,42.00825291000318],[-87.69015460613952,42.00841140583499],[-87.69016225787668,42.00863013425304],[-87.69016755602692,42.00879146553286],[-87.6901699044856,42.00897473568677],[-87.69017284632474,42.00912101726365],[-87.69017485622015,42.009208155319214],[-87.69017566349135,42.009243149305654],[-87.69017904658942,42.009389460789876],[-87.69018188964019,42.009513079496344],[-87.69018242417046,42.00953632107648],[-87.69018587507298,42.009683209211985],[-87.69018949794167,42.009817118310934],[-87.69019348972013,42.00996466807406],[-87.69019681845923,42.01008715970822],[-87.69020050279552,42.01022183751376],[-87.69020412019049,42.010355856336616],[-87.69020710835754,42.01046284772077],[-87.69021025882198,42.010575645060925],[-87.69021582641136,42.01081925010117],[-87.69021681275504,42.01086919951578],[-87.69021801819994,42.010930237212705],[-87.69022061977141,42.011061948779684],[-87.69022135782045,42.011099325142354],[-87.69022308151939,42.01122043594146],[-87.69022711884662,42.01137465401705],[-87.6902304419125,42.01150159116764],[-87.69023561087175,42.0116726377003],[-87.69024696130661,42.01212280239595],[-87.69024681723292,42.01228000519522],[-87.69005085946215,42.012281003456884],[-87.68909940735031,42.01226963017418],[-87.68890848701531,42.012267792299575],[-87.68875745060542,42.012266338341874]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1817219.56038","perimeter":"0.0","tract_cent":"1156776.85314459","census_t_1":"17031240800","tract_numa":"16","tract_comm":"24","objectid":"271","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911186.95605424","census_tra":"240800","tract_ce_3":"41.91207349","tract_crea":"","tract_ce_2":"-87.69947972","shape_len":"5393.12004617"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70167256567535,41.91017330762182],[-87.70186599250692,41.91017304437499],[-87.70186767557236,41.910228873802055],[-87.70187196179923,41.910371044804265],[-87.70188094200631,41.91065643953242],[-87.70189365933255,41.911062161959926],[-87.70190984970202,41.911588924108756],[-87.70192237470418,41.91197318551427],[-87.70192731885786,41.91214222310439],[-87.70193567482255,41.91242792303523],[-87.70194877106111,41.91286608423771],[-87.70196207935952,41.913316293748764],[-87.7019778712776,41.913838730231504],[-87.70197787605191,41.91383887954395],[-87.70198050821631,41.913921220409144],[-87.7016335940246,41.913919507828304],[-87.70133346701225,41.91392246664283],[-87.7010873895941,41.91392525576871],[-87.70094585351342,41.91392654716647],[-87.70077415017697,41.91392811347982],[-87.70046984493118,41.91393033351936],[-87.70035202315262,41.91393141020804],[-87.70025254306297,41.913932318967184],[-87.69988230890456,41.91393623211332],[-87.69954295797882,41.91393798193479],[-87.6993006019039,41.91393969007857],[-87.69919335737808,41.91394101498023],[-87.69902582415247,41.913943084693365],[-87.69877100235284,41.91394587543425],[-87.69863813218032,41.913947569450265],[-87.69846620283194,41.91394976141263],[-87.69823925698486,41.913951661737435],[-87.69816922928193,41.91396287947836],[-87.69812301345353,41.91397645694561],[-87.69806410156244,41.913988408999025],[-87.69798633460701,41.91399668260994],[-87.69764970630898,41.91400322975968],[-87.69761311085605,41.914003473920665],[-87.69735289804592,41.91400520861771],[-87.69709689877445,41.9140037081206],[-87.69709389176086,41.913906545953836],[-87.69709129531978,41.913822646459565],[-87.69708881035243,41.91374235761781],[-87.6970797312616,41.91345424563275],[-87.69706406926666,41.912896750285555],[-87.6970493995905,41.91243541853851],[-87.69704794061654,41.91235755659778],[-87.69704440511079,41.91216887106595],[-87.69704011352347,41.912053095581946],[-87.69703316300141,41.911865571136005],[-87.69701566987979,41.911289020785574],[-87.69701051841965,41.91094212126253],[-87.6970116895799,41.910864411088006],[-87.69701374594099,41.91072797924065],[-87.69701805940666,41.91044177967754],[-87.69702990367706,41.910283581840666],[-87.69703486320991,41.91021734158909],[-87.69801373139471,41.91020869689725],[-87.69851567146729,41.91020426053908],[-87.69908027566807,41.91019835172152],[-87.7001338890835,41.91018731748618],[-87.7002368104062,41.9101863811425],[-87.7015172260608,41.91017472303422],[-87.70167256567535,41.91017330762182]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13576513.5267","perimeter":"0.0","tract_cent":"1156447.69729312","census_t_1":"17031020200","tract_numa":"55","tract_comm":"2","objectid":"243","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1948947.30866925","census_tra":"020200","tract_ce_3":"42.01569675","tract_crea":"","tract_ce_2":"-87.69966304","shape_len":"15563.6554586"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69017699418467,42.01929375497508],[-87.69017865188839,42.01912925062438],[-87.69017973084009,42.0190221787325],[-87.69018191469206,42.01880180607171],[-87.69018459364406,42.01853280873839],[-87.69018599041401,42.018400986101916],[-87.69019240355989,42.017812010955225],[-87.69019358212223,42.01771695911197],[-87.69019529244575,42.01758008891953],[-87.6901966973607,42.01743693283664],[-87.69019803655088,42.017300444743476],[-87.69020016531182,42.01694308187574],[-87.69020296879549,42.01681823730673],[-87.6902053618171,42.016712215523626],[-87.69021101226538,42.01605644253355],[-87.69021380847866,42.015906598402985],[-87.69021581140646,42.0157992572097],[-87.69021618923682,42.01566394341535],[-87.69021668556154,42.015486041117235],[-87.69021851599767,42.01512553355304],[-87.6902185810636,42.01511271995625],[-87.69021892848397,42.01504426771489],[-87.69022519881447,42.014568022463045],[-87.69023097556256,42.01419912685327],[-87.69023209798705,42.0141050625416],[-87.69023289685411,42.014038147364836],[-87.6902333366642,42.01400128447094],[-87.69023693941523,42.013636355710496],[-87.69024168833992,42.013311059359765],[-87.69024424549664,42.01288685032761],[-87.69024662335632,42.01249241465616],[-87.69024681723292,42.01228000519522],[-87.6904536217994,42.01227895154455],[-87.6907381867193,42.012270171937864],[-87.69106950503836,42.0122629155605],[-87.69153195675644,42.01225304360325],[-87.6918547709135,42.012245920720666],[-87.6920181877049,42.01224231473474],[-87.69262031285234,42.01222885843707],[-87.69263959651231,42.01222842738998],[-87.69282996089844,42.01222417237382],[-87.69284919597314,42.0122237423925],[-87.6930988588434,42.012218161400504],[-87.69319322682027,42.012216039849775],[-87.69423142584525,42.01219269494512],[-87.69482133321327,42.01217989725823],[-87.69498569865334,42.01217614550979],[-87.695163548397,42.01217208595556],[-87.69582603896585,42.01215722042059],[-87.69610413761075,42.01215096728643],[-87.69714931284528,42.01212893874931],[-87.69735103130884,42.01212321559021],[-87.69755389738883,42.01211745946557],[-87.69856741861584,42.01209617570542],[-87.6994884242361,42.012075689371315],[-87.69971870992343,42.01206766073049],[-87.69994574527715,42.01205974541313],[-87.70192652910644,42.01202101596671],[-87.70208818287976,42.01201704593905],[-87.70218460118983,42.01201467772609],[-87.7023309496743,42.012011083124925],[-87.70236558691369,42.01201032623524],[-87.70350707915775,42.011985380681715],[-87.70429098124215,42.011968219719016],[-87.70445265036078,42.01196445719824],[-87.70464412645967,42.01196000097349],[-87.70472888359348,42.01195794490213],[-87.70502727147026,42.01195070690482],[-87.70561752570617,42.01193651453799],[-87.7060118176376,42.01192703198609],[-87.70606611144682,42.01192572609231],[-87.70667556332943,42.01191106624209],[-87.70682467328348,42.011908185144065],[-87.70700664887754,42.01190466843881],[-87.707026255588,42.01190422054632],[-87.70790122802832,42.01188422559987],[-87.7080265858454,42.01188136033397],[-87.70812727091241,42.011879118766956],[-87.70857917147632,42.01186905670624],[-87.70861473998448,42.01186840316189],[-87.70890414420545,42.01186308639505],[-87.70905676442767,42.01186110072948],[-87.70905674694735,42.01186153366686],[-87.70905670916993,42.011862461819305],[-87.70918513593762,42.011859538160095],[-87.70918288194952,42.01194939824815],[-87.70916460488182,42.01272870232471],[-87.70916369278099,42.01276756956783],[-87.70915088140579,42.01331339097914],[-87.70914743234225,42.01346031809666],[-87.70914377978356,42.01361608751279],[-87.70913651471898,42.01392589414627],[-87.7091284909542,42.01426804782452],[-87.70912301853566,42.014504018451326],[-87.70911752523683,42.01473621103655],[-87.70911624517514,42.0147903092299],[-87.70909981616053,42.01549207288158],[-87.70909273571995,42.01579449773853],[-87.7090808396748,42.01630210723955],[-87.7090782981715,42.01641060336156],[-87.70907492705382,42.01655448422965],[-87.70907216205434,42.016672359572254],[-87.70906800648257,42.016849337051376],[-87.70905716430002,42.01731141494545],[-87.7090465817479,42.01776242912063],[-87.70903908693762,42.018081757411444],[-87.70903773836716,42.01813934360449],[-87.70903596513837,42.01821506241627],[-87.70903239018598,42.01836771857309],[-87.70901770411568,42.01899380644422],[-87.70901660881984,42.01904050618922],[-87.70901447061566,42.019131107720725],[-87.70877084621644,42.01913994324304],[-87.70866153617982,42.01914390731832],[-87.70851760048077,42.01914822094585],[-87.70849444780096,42.019148914874705],[-87.70812665490038,42.01915701073978],[-87.70785331830959,42.019162436654156],[-87.70759300803945,42.01916801580554],[-87.70729978499621,42.01917489672122],[-87.70705898397972,42.01917997679536],[-87.70689501372146,42.01918350181027],[-87.70666071467767,42.01918853832441],[-87.70659735340887,42.01918990035688],[-87.70655301262835,42.019190853605366],[-87.70632649675547,42.01919526949192],[-87.70590636027028,42.01920460904225],[-87.70546491989542,42.019213473779594],[-87.70501294341689,42.019223486584856],[-87.70495566928942,42.019224701562166],[-87.70479948826156,42.01922824564335],[-87.70450358192772,42.01923474742865],[-87.70448946115263,42.01923443928258],[-87.70430962190638,42.01923051376839],[-87.70416196254014,42.0192272909761],[-87.70414264292151,42.01922686949509],[-87.70345024571276,42.019244366835004],[-87.70301582187061,42.01925446809527],[-87.70251212366622,42.019266080501005],[-87.70213158917846,42.01927485549786],[-87.70211938593195,42.01927504826447],[-87.70194315117928,42.0192778385086],[-87.70173337596569,42.019281159336785],[-87.70170963786998,42.019281535015566],[-87.70107676496389,42.019293418410385],[-87.70050550884662,42.01930410102482],[-87.7004387487976,42.01930527517006],[-87.70020457236963,42.01930939524588],[-87.70017164083634,42.01930997455631],[-87.70016467283673,42.0193100972029],[-87.69979780290846,42.01932140960026],[-87.6995899909014,42.019326126450814],[-87.69941366143871,42.01933012823432],[-87.69909886931684,42.01933722554185],[-87.69878228732519,42.019346672086854],[-87.69819556438492,42.0193583553694],[-87.69795050698903,42.01936344354634],[-87.69736494195149,42.0193755996189],[-87.69723265871158,42.01937766567615],[-87.69709003314576,42.0193798937882],[-87.69660241706137,42.0193912952538],[-87.69653455954497,42.019392939350645],[-87.69644888273746,42.0193950149868],[-87.6963685912084,42.01939696018347],[-87.69632041628127,42.01939812804282],[-87.69583270144865,42.019408372584934],[-87.69579386546458,42.01940921119878],[-87.69575359871298,42.01941008109383],[-87.6956884266415,42.019411492356355],[-87.69562480421683,42.019412870754245],[-87.69504149326292,42.019425489614555],[-87.6948791221869,42.01942898165621],[-87.69481919765259,42.0194302704089],[-87.69475357362244,42.01943168191936],[-87.69345480649143,42.01945971176776],[-87.69330944671906,42.019462963002034],[-87.69316316705866,42.01946623581472],[-87.69271416587986,42.01947637209617],[-87.69267397006718,42.01947727917626],[-87.69266564710362,42.01947746707443],[-87.69262768635026,42.0194783240461],[-87.69214985777094,42.0194891089331],[-87.69209102056976,42.019490437186164],[-87.69144569427117,42.019503514827896],[-87.69097255924063,42.019512805174635],[-87.69088833227785,42.01951463999221],[-87.6907820724759,42.019516955404896],[-87.69056857962266,42.01952160682918],[-87.69044048389429,42.01952439787721],[-87.69035851693687,42.019525530379454],[-87.69034220450696,42.01952578614031],[-87.69017356946405,42.019528431566215],[-87.69017500922617,42.01942499801736],[-87.69017699418467,42.01929375497508]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"181412558.271","perimeter":"0.0","tract_cent":"1186421.76464363","census_t_1":"17031000000","tract_numa":"21","tract_comm":"0","objectid":"244","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1889994.21926986","census_tra":"000000","tract_ce_3":"41.85326709","tract_crea":"","tract_ce_2":"-87.59124744","shape_len":"296970.731278"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58349678446064,41.81246694260795],[-87.56699628094657,41.802768184002765],[-87.56695852166145,41.80218715399762],[-87.566794830352,41.799668209773],[-87.56669479711356,41.795368288162855],[-87.56436542537831,41.78633535666917],[-87.56290333972916,41.780667533340164],[-87.56181107711588,41.77643468857809],[-87.56177519211417,41.776293459279486],[-87.55125068658919,41.76775993836378],[-87.54989539074421,41.76666087792324],[-87.54436856527859,41.76225957497122],[-87.52373472516602,41.762208535883005],[-87.5238985799068,41.75997346145403],[-87.52370620460083,41.759942060616886],[-87.52403671690381,41.7351633803207],[-87.52418566407337,41.72402529050391],[-87.52455658829493,41.724478919986495],[-87.52459060272065,41.726185813162225],[-87.52462952263245,41.72813880947121],[-87.52462952260491,41.72813881166647],[-87.52463015310435,41.72817041432883],[-87.52465349837998,41.72934087724191],[-87.52466726671051,41.7300320258569],[-87.52468016991385,41.73067976628138],[-87.52468841216506,41.73109349955509],[-87.524733595396,41.73122109842221],[-87.52480188777545,41.73128126050333],[-87.52487933485405,41.731349487155654],[-87.52493986481056,41.73140078806103],[-87.52494871868636,41.73140829208502],[-87.52494885517139,41.73140836384833],[-87.5250126291482,41.73144200213594],[-87.52507969918146,41.73147205783052],[-87.52514960221286,41.73149823649854],[-87.52522193628563,41.73152042526123],[-87.52523554634439,41.73152392117467],[-87.52526345776529,41.73153109020081],[-87.52662165633866,41.73172403119095],[-87.52733038183985,41.731824703452375],[-87.52879877242587,41.73202789625365],[-87.52894985837627,41.73204880195807],[-87.52894998308635,41.73204881957138],[-87.52895558907669,41.73204994336598],[-87.52910700866514,41.732080323993145],[-87.52910701597465,41.732080325416455],[-87.52911356559862,41.732081253552735],[-87.529115574119,41.73208153792476],[-87.52912062272047,41.73208293855252],[-87.52913490433598,41.73208690057118],[-87.5291350259136,41.73208693435377],[-87.52913536180554,41.73208702754118],[-87.52914958235537,41.73209541542092],[-87.52916746900279,41.732112417809674],[-87.5291676138275,41.73211255576409],[-87.52916930387656,41.73211472818391],[-87.52918124345221,41.73213007776694],[-87.52918951300357,41.73214579300205],[-87.52919398400903,41.73215428965131],[-87.52920034528024,41.73217302206704],[-87.52920820153479,41.732194968372475],[-87.52921064753426,41.732201800149625],[-87.52921376169358,41.73220790469644],[-87.5292229132083,41.7322258437744],[-87.5292319532567,41.73223985442163],[-87.5292455568329,41.73226093724494],[-87.52926318870446,41.732278133778905],[-87.52926851931672,41.73228333257127],[-87.52926854139606,41.732283354131354],[-87.5293126937802,41.73230051340278],[-87.52933474450177,41.73230844807935],[-87.5293479268655,41.732313191641985],[-87.52937324873565,41.73231861016842],[-87.52937896392355,41.732319117786574],[-87.52940914936725,41.73232179776301],[-87.52943991510575,41.73231734028554],[-87.52946317585551,41.73231397027869],[-87.52948021181633,41.732342677715636],[-87.52949478805328,41.73236723913468],[-87.52930964044313,41.73285812388772],[-87.52925101031651,41.733013568732936],[-87.5292510080569,41.73301357365687],[-87.52925026124566,41.733015553935395],[-87.52899210412619,41.73369995033988],[-87.52899429333087,41.73370372810662],[-87.52900071176691,41.73371480239765],[-87.52899444225174,41.733718161721946],[-87.52898301956547,41.73372332338175],[-87.52896777467652,41.73373246524252],[-87.52896688542363,41.733733351465204],[-87.52896143082107,41.73373878734477],[-87.52895809677216,41.73374760094012],[-87.52895628896245,41.73376079525067],[-87.52895527562043,41.73376819119296],[-87.528960996698,41.733791228516786],[-87.52897177264853,41.73379464926111],[-87.52897845812062,41.733796771854216],[-87.52897858620992,41.733796812543304],[-87.528984983772,41.73379593524215],[-87.52900618470824,41.73379302622388],[-87.5290207924243,41.73379968791606],[-87.52902080865293,41.73379976734006],[-87.52902199618467,41.73380554308346],[-87.52902414292484,41.733815984547306],[-87.52900945133626,41.73384541042339],[-87.52901387788833,41.73386352665165],[-87.52901676792587,41.73387415032631],[-87.52902140948255,41.73389121424626],[-87.52902140946202,41.73389121589271],[-87.52902195800634,41.73390151663786],[-87.5290225078313,41.733911832211206],[-87.5290207171636,41.73392714771543],[-87.52901898107278,41.733941994325555],[-87.52902967517394,41.733971653062],[-87.529031440687,41.73398052513338],[-87.52903557020417,41.73400127793003],[-87.52904139476628,41.73404248354395],[-87.52904417181726,41.73407537947678],[-87.52904998920854,41.73411422411443],[-87.52905013276451,41.73411502206531],[-87.52905663612482,41.734151126925056],[-87.5290667958731,41.73418256598911],[-87.52907089811849,41.73420033800383],[-87.52907631983787,41.734223824388636],[-87.52908070403923,41.73424586741645],[-87.52908249088968,41.734254851054764],[-87.52908121987208,41.734257029094486],[-87.5290734309338,41.73427037446527],[-87.5290688017147,41.734283359670734],[-87.52906302816936,41.734299556484046],[-87.52906414290798,41.734316865205216],[-87.52906529918523,41.73433480897467],[-87.52907155141621,41.7343857595845],[-87.52907999149642,41.7344537563859],[-87.52908130551279,41.73446434295564],[-87.52909563867695,41.73449264320244],[-87.52909564476447,41.7344926544967],[-87.52909178687109,41.73451993277299],[-87.52909449239185,41.73454975540379],[-87.52910323271782,41.73459216119586],[-87.52910416025652,41.73462350764293],[-87.52910499278461,41.73465060524183],[-87.52910538502432,41.734663363239015],[-87.52911440645232,41.73470085896678],[-87.52912402607758,41.734737452985684],[-87.52911997952515,41.73477982443779],[-87.52911998137064,41.73477985271703],[-87.52912025234531,41.734783858553456],[-87.52912285716098,41.734822342873606],[-87.52912455870708,41.73484747614346],[-87.52912830398118,41.73485295638721],[-87.52913963480789,41.7348695352723],[-87.52914470308387,41.73488338557227],[-87.52914994497417,41.734897709930685],[-87.52914105098925,41.734920452026216],[-87.52912983190994,41.73493873344685],[-87.52912631312073,41.73495351241821],[-87.52912182774485,41.73497235031066],[-87.5291303256405,41.735024620722996],[-87.52913315939831,41.73504205206842],[-87.52915198062902,41.73517956859866],[-87.52917268025845,41.735330810458294],[-87.52921595576221,41.73553885658075],[-87.52921625319487,41.73553991961017],[-87.52921627143733,41.735539984503404],[-87.52922229956192,41.73557073517589],[-87.52922533206889,41.735586129988384],[-87.52923060356223,41.735612890635934],[-87.5292296467966,41.7356333742847],[-87.52922840390374,41.73565999521305],[-87.5292294065522,41.73568973154727],[-87.52922990128512,41.73570440852744],[-87.52923879809292,41.7357666567125],[-87.52924358291234,41.735795542983674],[-87.5292472682078,41.73581779159656],[-87.52924874662165,41.7358267168133],[-87.52925572174817,41.735842821723416],[-87.52926552062216,41.73586544627684],[-87.52927734709593,41.73589544222199],[-87.52927752828508,41.735897512146046],[-87.52928084305151,41.735935368861654],[-87.52927766135491,41.735942595400424],[-87.52927273573601,41.735953781566046],[-87.52925907423904,41.73597370346345],[-87.52925292023961,41.735982677356105],[-87.52924227141371,41.73601097893422],[-87.52925136088336,41.73602212678569],[-87.52925847425462,41.73603085130912],[-87.52927689582094,41.73605499232976],[-87.5292910677309,41.73609085032668],[-87.52929989640796,41.73615548502159],[-87.5293006551637,41.736161832416656],[-87.52930931894994,41.73623431301779],[-87.52931916984222,41.73631695804255],[-87.52932824660078,41.73645526803931],[-87.52933471787185,41.736553872508445],[-87.52934168831594,41.73659033626779],[-87.52936199340618,41.736696547866664],[-87.52937146800724,41.736754879836994],[-87.52938193249041,41.73681930257807],[-87.52939539492598,41.7369355082435],[-87.52940250817798,41.73700268449311],[-87.5294079581226,41.73707102805647],[-87.52942512792421,41.737160254887144],[-87.52942660349512,41.737177080105106],[-87.5294313835871,41.73723159619854],[-87.52943335835006,41.737260424373986],[-87.52943590834427,41.73729765551334],[-87.52944072620934,41.73734714622745],[-87.52944181910287,41.7373583736823],[-87.52944587939089,41.737435324628535],[-87.52944587973673,41.737435326277534],[-87.52945321903223,41.7374990160909],[-87.52944449011063,41.73751234996265],[-87.5294418269842,41.73751641814619],[-87.52943091814079,41.737550864878976],[-87.52943807852542,41.737568438448626],[-87.5294492629411,41.737595890297975],[-87.52945921316544,41.73761565934274],[-87.52946046060286,41.73761813821722],[-87.52946796170575,41.73763304176644],[-87.52947457911623,41.73766083927724],[-87.52947523852032,41.737663609598975],[-87.52948537203788,41.73770602481314],[-87.52949070754269,41.737754087166046],[-87.52949070752216,41.73775408881249],[-87.52949139365458,41.737775635017776],[-87.52949152365021,41.737779724938434],[-87.52949045581623,41.73778943312313],[-87.52948549033619,41.73783456823643],[-87.52949528723103,41.73785676436375],[-87.52950138294645,41.737870574901834],[-87.52950337105753,41.737877093905844],[-87.52951123943842,41.73790288914007],[-87.52951081752809,41.73792496959278],[-87.52951071095008,41.73793054856354],[-87.52951149233368,41.737945426778765],[-87.5295125166345,41.73796494758372],[-87.52952420092545,41.73799339745645],[-87.5295329646973,41.73801473506985],[-87.52953614610638,41.73803301215311],[-87.52953990539689,41.73805460373123],[-87.52954684124954,41.73809186472163],[-87.52954250059038,41.73811019511331],[-87.52953984118446,41.73812142650352],[-87.52954661248829,41.73817194242193],[-87.529546640367,41.738172027964765],[-87.52954774628469,41.73817539664873],[-87.52955755475543,41.73820527936778],[-87.52957201807374,41.73825598575922],[-87.52957060590332,41.73827035986827],[-87.52956874504906,41.738289305316556],[-87.52955761411418,41.738322457936576],[-87.52955759470747,41.7383225157056],[-87.5295880295789,41.73840879075918],[-87.5296358225577,41.73880142255703],[-87.52964329559009,41.73885441242138],[-87.5296504222815,41.73890453069417],[-87.52965754525441,41.73895462479024],[-87.52967493826773,41.73906421666354],[-87.52967973869067,41.739161178994024],[-87.52970436205266,41.73930803389359],[-87.52970930530314,41.73932524807334],[-87.52971127952162,41.739332122362214],[-87.52971143599855,41.73933464794015],[-87.52971286545544,41.73935773779313],[-87.52971876746768,41.739372522835524],[-87.52972469721121,41.73938737613022],[-87.52972469718726,41.73938737805105],[-87.52972478681839,41.73939567662416],[-87.52972505398856,41.73942047545748],[-87.52972605236029,41.739446196824915],[-87.52972061565191,41.739476730050725],[-87.52972379724662,41.739509519543766],[-87.5297261771627,41.73951859156241],[-87.52972633072723,41.739519176075056],[-87.52972890444963,41.739528984647606],[-87.5297301964237,41.739543529702615],[-87.52973041618459,41.73954600495347],[-87.52973099229416,41.739552490200836],[-87.52973099227364,41.73955249184727],[-87.52973096292136,41.73959305105341],[-87.52974926761215,41.73964978990819],[-87.52975121245686,41.7396558179223],[-87.52976681633946,41.73978850427837],[-87.52977242230342,41.73979838455119],[-87.52977549275886,41.739803795284864],[-87.52977677572854,41.73980398675353],[-87.52979805808837,41.73980716420342],[-87.52980790360468,41.739811443090304],[-87.52981391055394,41.73981405349085],[-87.52981046451292,41.739816138662114],[-87.52980346278545,41.73982037492409],[-87.52977869349154,41.73982917501897],[-87.52977400679447,41.73984651339853],[-87.52977400750328,41.739846515324516],[-87.52977403119858,41.73984658382334],[-87.52977595109428,41.739852086128536],[-87.52978133046987,41.739867504189476],[-87.52977937885484,41.73987709559725],[-87.52977898127513,41.73988979426903],[-87.5297785867792,41.73990239252092],[-87.52977916257373,41.73991472285397],[-87.52977916524164,41.73991477336777],[-87.52979017700018,41.739944567051324],[-87.52979018869375,41.73994459896701],[-87.52978377418349,41.73995657442347],[-87.52979664027161,41.740029607395506],[-87.52983432124344,41.740345931863345],[-87.5298163278168,41.74034755744518],[-87.52981627316142,41.740347562277144],[-87.5298366304703,41.74047856830856],[-87.5298566378488,41.740607317991724],[-87.53140650934249,41.7405937488316],[-87.53326754855776,41.74056989861972],[-87.53363391373281,41.74056520004879],[-87.53372372561445,41.74056404899628],[-87.53418068717234,41.740558192040496],[-87.53667853140716,41.74052723811546],[-87.53798581984962,41.740511402898825],[-87.5388692660241,41.74050069338508],[-87.53889595379187,41.740500588115495],[-87.5392557959859,41.740499170170715],[-87.53983004356462,41.74049690456308],[-87.53983862902925,41.740716870560846],[-87.5398389577226,41.7407252915268],[-87.5398504852503,41.740741288637594],[-87.539853393554,41.74090884535231],[-87.53985520153411,41.741013006848185],[-87.53985508902747,41.74101300826667],[-87.5395445669684,41.7410163621692],[-87.53954452959057,41.74101636245984],[-87.53684873824025,41.741045444618834],[-87.53380414853967,41.741079184436884],[-87.53378559303103,41.74107938380834],[-87.53362751278527,41.74108108367138],[-87.53331316843382,41.74108446630077],[-87.53176001509648,41.741101167044775],[-87.5313334635037,41.74110477651976],[-87.53068695841979,41.74111672839795],[-87.5306671403031,41.74111933425393],[-87.53064694722104,41.741124627176724],[-87.53062695963415,41.7411298660967],[-87.53053478800607,41.74116078159237],[-87.53036178311952,41.74121241419186],[-87.53018877759624,41.741264046250976],[-87.53017543129866,41.74124898965634],[-87.53016677224943,41.74123922116214],[-87.5301667306014,41.741239211265956],[-87.53014689742734,41.741234582125394],[-87.53013498364089,41.741234388795974],[-87.53013447259406,41.74123438055818],[-87.53012605260697,41.741234243759585],[-87.53010952702014,41.741237174683505],[-87.53005998122164,41.74125753543597],[-87.52988666810215,41.74132875755253],[-87.52848889669247,41.74134349685298],[-87.52446332497689,41.74138585127776],[-87.52446332493555,41.74138585457063],[-87.52446332291402,41.74138601564685],[-87.52446228734694,41.74146852920479],[-87.52447954817396,41.741468321950826],[-87.52448335775318,41.74145086675048],[-87.52949622781755,41.74139820178376],[-87.52957721021203,41.741418417510914],[-87.52958870927326,41.74141916701126],[-87.52962202316624,41.741421338071866],[-87.52964528763337,41.74142057789576],[-87.52966696377239,41.74141986944972],[-87.52971126378203,41.741414059510426],[-87.52972979492247,41.741410268885495],[-87.52972981439216,41.741410264905205],[-87.52973242350159,41.74141098157807],[-87.52977133338142,41.74142166942883],[-87.5297900678753,41.741429047326555],[-87.52981049497158,41.74143709157401],[-87.52984660425987,41.74145625205356],[-87.52987655965752,41.741477112669216],[-87.52987900768363,41.74147881780729],[-87.52990008195758,41.741497968085646],[-87.52990715937679,41.74150439917259],[-87.52990723200425,41.741504481186176],[-87.52991969808632,41.74151845589044],[-87.52992262790596,41.74152319245832],[-87.5299254093883,41.741527688960275],[-87.52997880505572,41.74160051130893],[-87.52998841600318,41.74162110368372],[-87.53000314400657,41.74165265909248],[-87.53001430138006,41.741684441736176],[-87.53002189861549,41.741706084543225],[-87.53003492460479,41.74176048533089],[-87.53003676668274,41.74177247241812],[-87.53003987264123,41.74179268285768],[-87.530036701257,41.74189134602224],[-87.53004236474764,41.74190732945735],[-87.53004236509008,41.74190733138075],[-87.53004236449627,41.7419074672195],[-87.53004226805433,41.74192387746477],[-87.53004018224169,41.74192950489038],[-87.53003635337622,41.74193983566183],[-87.53002510994031,41.74195408203028],[-87.5300207304082,41.741957263889354],[-87.53000924725823,41.74196560696114],[-87.52999072380084,41.74197335551499],[-87.52999053557797,41.74197343433256],[-87.52999116760948,41.741980316518486],[-87.52999163250897,41.74198537971095],[-87.52999834883111,41.74199623921533],[-87.53000688974988,41.742002468119196],[-87.53000982301923,41.742004607776714],[-87.53001668169024,41.74200681055484],[-87.5300244947243,41.742009320231524],[-87.53003283950004,41.74201011953498],[-87.53004093364913,41.74201135946691],[-87.53004541959238,41.74201204644314],[-87.53005560631017,41.74201793585359],[-87.5300562317141,41.74201888261885],[-87.53006128816952,41.74202653752094],[-87.5300613520575,41.74203616991479],[-87.5300557810805,41.742044777984546],[-87.5300557470791,41.74204483071184],[-87.53004567014871,41.74205077028014],[-87.53004543944517,41.742050847154225],[-87.53004438231798,41.74205120036463],[-87.5300445280883,41.74205138195876],[-87.5300571288996,41.742067022830746],[-87.53006007874183,41.742070684866505],[-87.53006163387454,41.74207388571403],[-87.53007047526668,41.742092080767755],[-87.53007521503042,41.74211456201027],[-87.53007472542215,41.74212476930749],[-87.53007412434677,41.74213730518795],[-87.53006977378152,41.74215133300255],[-87.53006725339888,41.74215945854605],[-87.5300634019515,41.74216589691829],[-87.53005482899827,41.74218022809643],[-87.53004977629415,41.7421855888903],[-87.53004427798844,41.74219142270478],[-87.53003730400279,41.74219882280274],[-87.53003725202088,41.74219887759976],[-87.53003722788067,41.742198903501844],[-87.53004559061173,41.74220684854032],[-87.53005352422197,41.74221438551929],[-87.53005356842252,41.742214455259116],[-87.53006484525001,41.742232165132535],[-87.53007061496464,41.74225138840622],[-87.53007062587801,41.74227109228757],[-87.5300706254911,41.74227109393144],[-87.53006734992552,41.742281864092014],[-87.53006477966515,41.74229031613279],[-87.53005841061827,41.742300304494684],[-87.53005345538277,41.742308075191644],[-87.53005137389765,41.74231050279265],[-87.5300599818829,41.74232934661395],[-87.53006639053476,41.74234337500231],[-87.53007017134492,41.74235712815223],[-87.53007574900352,41.74237741487125],[-87.53007716280409,41.742388869038024],[-87.53007901134396,41.742403838125654],[-87.5301756320795,41.743101126539344],[-87.53041308891542,41.74481504796615],[-87.53042710053222,41.74491617479995],[-87.5304329618738,41.74495848181415],[-87.53044611012899,41.74505338100872],[-87.53054844512414,41.74579198272251],[-87.53056515117142,41.74591255716369],[-87.53057362074148,41.74603866199516],[-87.53060986061239,41.74622221076274],[-87.53062049964562,41.74627609722656],[-87.53064835711729,41.746451926975844],[-87.53064945360858,41.746481573337974],[-87.53066484950014,41.74658091501464],[-87.53066980532235,41.7466128924506],[-87.5306992302344,41.74672177251419],[-87.53070563847366,41.74691336932776],[-87.53072273966262,41.746979139548365],[-87.53075739357952,41.74711241807958],[-87.53076094228356,41.74719565109695],[-87.53076476726169,41.74728535984294],[-87.53081030469188,41.74751290637901],[-87.53086410872909,41.74772404456195],[-87.5308746462648,41.74778205578386],[-87.53088537140202,41.74784110017062],[-87.53089217886185,41.74785891402698],[-87.53090240639617,41.74788567650094],[-87.53090592005273,41.747912681882326],[-87.530911770159,41.747957642509306],[-87.53093461852492,41.748000373003606],[-87.53094829812918,41.74802595565764],[-87.53110456790874,41.74813078162367],[-87.53125094151429,41.74820644873208],[-87.5312869273652,41.74822826710747],[-87.53137823911376,41.74828362881121],[-87.53145942802627,41.74831617066057],[-87.53158170727775,41.748365181769685],[-87.53174891961521,41.74843105325962],[-87.53183843392263,41.74846631653982],[-87.53208240262997,41.7485915121366],[-87.53241369548627,41.74870607066463],[-87.53244364307291,41.74871642618904],[-87.53248176471116,41.74872992080248],[-87.53273625540918,41.7488200048046],[-87.53287978041926,41.74888407261627],[-87.53292448822943,41.748904029410156],[-87.53302853505214,41.748950474201855],[-87.53307188937886,41.74896918163681],[-87.53319402011819,41.74902188107487],[-87.53321436087515,41.74902837001462],[-87.53321990032399,41.74903013722399],[-87.5332327123072,41.749034224611854],[-87.53335793264733,41.7490749629632],[-87.53339476555826,41.74908694607194],[-87.5335274410784,41.74914459491416],[-87.53356680696649,41.74916169121241],[-87.5337621231888,41.74925086787008],[-87.53389916560955,41.749311098594944],[-87.53421381650479,41.749410984221406],[-87.53423313069693,41.749415135931976],[-87.53432200048394,41.74943424040572],[-87.53438081454716,41.749446312117435],[-87.53442328623764,41.749477566145444],[-87.53443514195821,41.74948629065047],[-87.5344416231547,41.749488423303326],[-87.53446240510036,41.749495261969],[-87.53452406853631,41.749508039493676],[-87.53454861106323,41.74951251922014],[-87.53456220500728,41.74951500099341],[-87.53458051071667,41.74952891039448],[-87.53458946879545,41.749535717605994],[-87.53467830173003,41.74957395945679],[-87.53474273125259,41.74958538449173],[-87.53475877627238,41.74959007185566],[-87.53476726871735,41.74959255299919],[-87.53480286929533,41.749614864586064],[-87.53481347641664,41.749619785559254],[-87.53483307541374,41.74962887860976],[-87.53486761318166,41.74964525510719],[-87.5349036494228,41.749661129921535],[-87.53490989212601,41.749663880278604],[-87.53491832751135,41.7496672411107],[-87.5349568603708,41.74968259345424],[-87.53499931985844,41.7497014396655],[-87.5350241950758,41.74971226230178],[-87.5350471417422,41.74972224549955],[-87.53506110560741,41.74973066487652],[-87.53507191324474,41.74973718138147],[-87.53510614477719,41.74973986135981],[-87.53513351788716,41.74974577009801],[-87.53513465199299,41.7497460148098],[-87.53515722526714,41.74976090823315],[-87.53518214246161,41.749784764893974],[-87.53519973897598,41.74979863908219],[-87.53520365814772,41.749801728943424],[-87.53520380839262,41.74980184771749],[-87.53523049849512,41.74979509032206],[-87.53525785402627,41.749793634037],[-87.53528056480909,41.74980364244375],[-87.53528588213203,41.749805985685256],[-87.53530849019168,41.74981511629546],[-87.53532539240442,41.749824335978545],[-87.53533473459606,41.74982943198583],[-87.53534203524903,41.74983221738478],[-87.5353781755913,41.749846007107],[-87.53543873637089,41.749864978869816],[-87.53545867778254,41.74986981257169],[-87.53548652685721,41.74987656291401],[-87.53551886588076,41.74989586034544],[-87.53554127139319,41.74990954531176],[-87.53557218513077,41.749921365597636],[-87.53557716198019,41.749923268746144],[-87.53557730461979,41.74992335069332],[-87.53557730716784,41.74992335208316],[-87.53560470369612,41.74993910027629],[-87.53560470732988,41.74993910277138],[-87.53562240271975,41.74995725566673],[-87.53564729115526,41.74996862547269],[-87.5356772060115,41.7499736625757],[-87.53568843194647,41.74998452587522],[-87.53570021897991,41.75000035942425],[-87.53570223807806,41.75000306340192],[-87.53572132425376,41.75001834442472],[-87.53577103982194,41.75004613252137],[-87.53577806845992,41.750049284563495],[-87.53580628104609,41.75006193731694],[-87.53584357371211,41.75007487427963],[-87.53588063807857,41.75008855197813],[-87.5358995723188,41.75009260444661],[-87.53590435850994,41.75009362890572],[-87.53590450562567,41.750093704571675],[-87.53592373160505,41.75010358794895],[-87.53595251540655,41.75012202768909],[-87.53595274554957,41.75012217555736],[-87.5359529626096,41.75012231455308],[-87.53595674981017,41.75012437600767],[-87.53597869948645,41.75013632387775],[-87.53601372419115,41.750163681148386],[-87.53605242717808,41.750171874981426],[-87.53605634287273,41.75017270403708],[-87.53606530872153,41.750171795320234],[-87.53608345873916,41.75016995579842],[-87.53608390118599,41.75017027171846],[-87.53609210417085,41.750176135572026],[-87.53612220159643,41.750193084077225],[-87.53616034841772,41.75019916694325],[-87.53621159567756,41.75020086693266],[-87.53623272500514,41.75021402149334],[-87.5362327253512,41.75021402314232],[-87.53623500813768,41.750223319095966],[-87.53623876083572,41.75023859766191],[-87.5362583740189,41.75024894526022],[-87.53626348257475,41.75025164019921],[-87.53629252485611,41.75026395116101],[-87.53629527214436,41.75026511568914],[-87.53634809539727,41.75028161831404],[-87.53638893978227,41.75029739538592],[-87.53640532065502,41.75030372264616],[-87.53641619072918,41.75030826164231],[-87.53645337285427,41.75032378715934],[-87.53650570290917,41.7503417138746],[-87.53657195787247,41.750365609105664],[-87.53662020658615,41.75039050514974],[-87.53665928054015,41.75041352686887],[-87.53667738263763,41.75042389547714],[-87.53668973781669,41.75043097224275],[-87.5366976668899,41.75043395154372],[-87.53672716390449,41.75044503527996],[-87.53674820176708,41.750450752614285],[-87.53677181040065,41.75045261693639],[-87.5367782956862,41.75045312870367],[-87.53678183426359,41.75045218312722],[-87.53680020958912,41.750447271166834],[-87.5368141045821,41.75044415886393],[-87.53682409651198,41.75044192072854],[-87.536833999084,41.750444924678646],[-87.53683844525426,41.7504462735875],[-87.53684341281428,41.75045347009203],[-87.53684938950818,41.75046212889293],[-87.5368588154544,41.75047929148364],[-87.5368589887283,41.7504793857165],[-87.53689001151446,41.750496330006754],[-87.53690575920572,41.75050132511531],[-87.53691822850084,41.75050528046018],[-87.53695889428337,41.75052408552122],[-87.53698065682327,41.75053299506299],[-87.53702660520884,41.75055180625287],[-87.53705698285827,41.750563817268535],[-87.53709111244558,41.75056882832778],[-87.53711902882128,41.75057242471979],[-87.53712501480445,41.75058042466482],[-87.53712714111693,41.75058326657518],[-87.53712867771495,41.75058537249471],[-87.53713748393609,41.750597443938084],[-87.53714790585602,41.75060928343239],[-87.53715396320844,41.75061616447155],[-87.5371601731681,41.75061962250804],[-87.53718126053771,41.750631365211014],[-87.53721318308934,41.75063707500665],[-87.53724182565243,41.7506442162699],[-87.5372614132101,41.75065155933686],[-87.53727866837465,41.750658027824095],[-87.53729713478307,41.750665648249466],[-87.53731790042929,41.75067421738826],[-87.53732983872304,41.75068621501499],[-87.53733860540068,41.75069502484589],[-87.53734253711622,41.75069963341503],[-87.53735247730387,41.750711285136425],[-87.53737684552834,41.75072034547908],[-87.53738585567848,41.75072143234488],[-87.53741376727304,41.75072479948338],[-87.53746579515756,41.7507375095029],[-87.53747475501319,41.75073958286266],[-87.53748951123923,41.75074299771773],[-87.53751117241944,41.750747842152464],[-87.53751122431471,41.750747853763535],[-87.53753990854217,41.75075426909999],[-87.53758935066159,41.75076564416541],[-87.53760510755583,41.750774354746],[-87.53761810654206,41.750781540702654],[-87.53763639175283,41.75080532290658],[-87.5376542670112,41.7508210540677],[-87.53765783756889,41.75082419631668],[-87.53765789013318,41.750824242784894],[-87.53769471900942,41.75083028829712],[-87.53772478816555,41.75083771402324],[-87.53785562466874,41.75089054178463],[-87.53787152320437,41.75089704634537],[-87.5378904980732,41.750904219307536],[-87.53792839055694,41.750918543420596],[-87.53798086766119,41.75093611921162],[-87.53799189315514,41.750939811969886],[-87.53800873715491,41.75094403513583],[-87.53806123543112,41.750957197383364],[-87.5381052780547,41.75097369248484],[-87.53812700536248,41.75098182959463],[-87.5381624808019,41.75099382949639],[-87.5381918568853,41.751003766275325],[-87.53826231129948,41.751028980237],[-87.53832761781358,41.751055274091655],[-87.53834074921133,41.75106056100566],[-87.5383510589495,41.7510645868743],[-87.53840986255881,41.751087549116264],[-87.53850128352374,41.75111842375489],[-87.53859759909584,41.75115649451882],[-87.53866202218502,41.751183422591495],[-87.53866205047633,41.751183446388126],[-87.53869288345172,41.751209844079746],[-87.53890576246398,41.75130500652334],[-87.53891480481431,41.75130904855117],[-87.53893008800183,41.75131488980483],[-87.53904483791669,41.75135588710891],[-87.53905966675856,41.751360861573986],[-87.53912034931025,41.75138121755856],[-87.53920400432237,41.75140885457001],[-87.53921109632334,41.751411202760806],[-87.53924032058657,41.75142087888613],[-87.53930154048248,41.751428271684766],[-87.53930171497228,41.75142832722774],[-87.53933950469238,41.75144033507588],[-87.5393563770643,41.75145101666928],[-87.53939104810644,41.75146272797014],[-87.53945042503162,41.75147987847528],[-87.53946376987665,41.75148329320404],[-87.53949495779467,41.751491272586634],[-87.53951301656852,41.751501828158105],[-87.53951966417391,41.75150571363344],[-87.53958425675013,41.751527868105896],[-87.53963314364083,41.75154283266203],[-87.53966373152825,41.75155198543165],[-87.53969970616684,41.751562749805686],[-87.53974080417731,41.751573034177646],[-87.53974774981381,41.751574772090386],[-87.53977469471258,41.75159189051221],[-87.53980392261604,41.75159926130971],[-87.53984093080189,41.751608594217316],[-87.53986275542823,41.75161606562991],[-87.53990417421251,41.75163024439535],[-87.53991346337207,41.75163249574849],[-87.53991769305853,41.7516335208627],[-87.53997723222211,41.751655466228556],[-87.5399909122025,41.75166050865744],[-87.5400288005967,41.75167467342883],[-87.54005059276058,41.75168282050196],[-87.54010512588657,41.7517064689262],[-87.54014706055932,41.751723552985496],[-87.54016391586772,41.75173608399857],[-87.54017858247045,41.751746987625204],[-87.54020330335868,41.75176190777922],[-87.54021528712065,41.75176914049604],[-87.54024689709573,41.751779798277646],[-87.54027021298259,41.751787659442925],[-87.54032588654184,41.75180804964623],[-87.54034897296027,41.751814785422056],[-87.5403781050511,41.75182328469044],[-87.54042763176457,41.75184349712709],[-87.54043425990307,41.75184620236737],[-87.54048966675285,41.75186444982454],[-87.54054484447718,41.75186921486358],[-87.54054831864573,41.75186951463782],[-87.54054838746983,41.75186952060131],[-87.54057907254084,41.75186561615795],[-87.54060314326003,41.751862144126186],[-87.54064970787306,41.75185542792243],[-87.54070485327615,41.75186508437117],[-87.5407048729899,41.75186509054461],[-87.54079694953795,41.75189483695406],[-87.54079709390568,41.75189486868604],[-87.54080027183153,41.75189556652768],[-87.54082816263752,41.75190169263329],[-87.54086547803084,41.751906723448876],[-87.54090217730517,41.7519116712416],[-87.54094110434824,41.75191709954532],[-87.54096695437501,41.75191299644555],[-87.54099280476842,41.751908893068034],[-87.54100581361804,41.7519090684022],[-87.54103878991755,41.75190951260741],[-87.54106576365841,41.75191651681833],[-87.54107733009607,41.75191952035004],[-87.54110496607811,41.751925063389216],[-87.54113896598483,41.75193188331398],[-87.54120562049215,41.75192951625287],[-87.54127132190679,41.75192716947669],[-87.54130675949189,41.751927194778354],[-87.54134888165515,41.75192611299376],[-87.54139229795001,41.75192696057302],[-87.5414233665779,41.75192306595752],[-87.54143234222174,41.75192194063927],[-87.54145151950654,41.75192114002989],[-87.54150346971761,41.751928386260296],[-87.54155913526859,41.7519256136692],[-87.54158300068006,41.75192608220006],[-87.54162372910068,41.75192688153086],[-87.54167287011171,41.75192719352159],[-87.54171098424457,41.75192416270489],[-87.54183208695358,41.75192554535428],[-87.54209964366962,41.751924140087354],[-87.54210100851428,41.75192413302079],[-87.54210106165897,41.75192413256349],[-87.54214296680199,41.75192571096137],[-87.5421843098376,41.7519283285807],[-87.54225861681077,41.751920579894175],[-87.5423309582529,41.75191767503357],[-87.5423796612029,41.75191832509662],[-87.54242868147232,41.75191897924439],[-87.54250007375757,41.75191872943729],[-87.54251102517239,41.751921237087835],[-87.54252861569725,41.751925265493746],[-87.54258503336779,41.751927317391385],[-87.54260213468478,41.751927939216166],[-87.54265487674535,41.751921468889904],[-87.54265883401986,41.75192098595825],[-87.54266658487477,41.751920040099144],[-87.54273115868375,41.751920223477384],[-87.54279550639014,41.751920405812456],[-87.54286940867154,41.751924756022426],[-87.54290594705232,41.75191869578996],[-87.54293804411928,41.75192813771477],[-87.54296041000701,41.7519269861134],[-87.54297801602564,41.75192607948747],[-87.54297809468059,41.75192606081845],[-87.54301414462151,41.75191757397713],[-87.54302239740004,41.75191622154858],[-87.5430269971353,41.751915467221615],[-87.54304426676089,41.751920771909376],[-87.54305378722496,41.751925331456],[-87.54306856723575,41.751932410767274],[-87.54309413579861,41.75194386459458],[-87.5431040308999,41.751948297182956],[-87.54311829422349,41.75195510481626],[-87.5431280958005,41.75195978264836],[-87.54315209112245,41.751971234698615],[-87.54315216107616,41.75197126811129],[-87.54317984746518,41.75198523791171],[-87.5431877820553,41.751989241797745],[-87.54322607837994,41.75201318844718],[-87.54328438514914,41.75205497340113],[-87.5432932434364,41.752062401104794],[-87.54335562911251,41.752114712653196],[-87.54335584488285,41.75211498856648],[-87.54336043927256,41.75211927381675],[-87.54337588266537,41.752133677513385],[-87.54340942001654,41.752160198737414],[-87.5434309843178,41.75217565056859],[-87.54344422246496,41.752185136682314],[-87.54345397549109,41.75219252387173],[-87.543470439087,41.75220499352794],[-87.54347903661508,41.75221142406795],[-87.54349102958665,41.75222039364668],[-87.54351442717483,41.75224593951498],[-87.54351968933852,41.75225333122834],[-87.54353716082879,41.75227787420338],[-87.54355626382866,41.752305591467476],[-87.54356758673192,41.75232201927354],[-87.54358675205579,41.75234794301383],[-87.5436070255815,41.752375365344705],[-87.54365777918437,41.752446141908976],[-87.54367076585228,41.75246425241668],[-87.5437160854994,41.7525341861555],[-87.54378993516478,41.752683351962766],[-87.54379731193116,41.75269965987032],[-87.54386732863847,41.75285444265653],[-87.54389180191352,41.75290519644056],[-87.54392694293519,41.752978071195685],[-87.54395716757617,41.75304682590344],[-87.54399764618626,41.75313890567108],[-87.54406478131597,41.75326788256975],[-87.5440977971891,41.753339225622696],[-87.54414661294167,41.753444711137014],[-87.54417573200676,41.753521690803744],[-87.54420987212794,41.75361194398384],[-87.54424030796835,41.75368654294293],[-87.5442540989543,41.753720345304295],[-87.54434089738407,41.7539705626007],[-87.54441321238677,41.75413157279719],[-87.54434162012234,41.754321480728265],[-87.54434155844952,41.754321459173674],[-87.54433169148749,41.75431798409662],[-87.54433097625225,41.75431773219824],[-87.54433089122688,41.75431770225038],[-87.54432132068119,41.75431821310281],[-87.54431321620571,41.7543215875418],[-87.5443050340856,41.754331301320036],[-87.54430069381527,41.75433865641406],[-87.54429230929154,41.75435286642834],[-87.54427639816784,41.75437641079294],[-87.54427532617862,41.75437799704353],[-87.5442626383876,41.75440255368527],[-87.54426226985667,41.75440448560859],[-87.54425938734822,41.75441960060499],[-87.54425246657745,41.754441649048196],[-87.54425004410027,41.75444936638597],[-87.54424337055366,41.75446182274166],[-87.54423886639219,41.754470229419525],[-87.54422577112314,41.75449516745959],[-87.54421235702675,41.75451612380447],[-87.54420424994612,41.75454370318358],[-87.54420679711797,41.75455321264982],[-87.54420961171506,41.75456371876009],[-87.5442079320375,41.754578592285284],[-87.54420735080312,41.75458373659255],[-87.54419076429882,41.754603409043455],[-87.54419061265142,41.75460346233892],[-87.54417129347797,41.75461021837494],[-87.54415139267896,41.75461625634677],[-87.54415213982982,41.754619108685986],[-87.54415412330285,41.75462667598501],[-87.54416485662398,41.75465400029515],[-87.54416808000735,41.754666348990156],[-87.54416944245543,41.75467156839441],[-87.54416878554501,41.75468630047741],[-87.54415437320361,41.75470796347502],[-87.54415831356089,41.75472440143068],[-87.54416069852893,41.75472839374858],[-87.54417196005251,41.75474724592761],[-87.54418075285592,41.75476846429544],[-87.5441780952533,41.75479695927638],[-87.5441632824657,41.75481540869788],[-87.54414104158555,41.75484486770465],[-87.54412323862859,41.75486588417801],[-87.54411374661422,41.75487708952471],[-87.54409421370633,41.754900894938416],[-87.54408230889722,41.754915403757195],[-87.54406667780395,41.754933154609716],[-87.54404224343793,41.75496090337663],[-87.54404128519482,41.754961191256605],[-87.54404036741391,41.75496146706521],[-87.5440389368239,41.75496130108684],[-87.54403004694805,41.75496027100345],[-87.54401079674192,41.75496043102168],[-87.5440101806003,41.75496043639376],[-87.54400587897814,41.75496208854558],[-87.54399515733527,41.75496620570005],[-87.54399007585336,41.75497033717892],[-87.54398153464876,41.75497728194113],[-87.54396664572232,41.75499185751428],[-87.54396536151329,41.75499311490923],[-87.54396458884327,41.75499405034521],[-87.54395141101024,41.75501000652715],[-87.54394067493368,41.75502475168621],[-87.54393347809622,41.75504679354552],[-87.54393827161668,41.75505440842112],[-87.54393994938508,41.75505707368265],[-87.54395022041899,41.75506828664147],[-87.54395024827006,41.75506837657129],[-87.54395123660647,41.75507155494446],[-87.54395794196908,41.75509312068425],[-87.54395511728899,41.75510524259052],[-87.54395330032276,41.7551130395494],[-87.54395916863666,41.75513014719247],[-87.54395952815952,41.75513119469043],[-87.54395959372282,41.75513125771083],[-87.54396057464398,41.75513219998073],[-87.54397072108752,41.7551419471765],[-87.54397812084459,41.75515099107322],[-87.54397819522654,41.75515108214601],[-87.54397819520638,41.755151083792455],[-87.54397811710443,41.755152223510756],[-87.5439771684361,41.7551660863894],[-87.54397321359792,41.755180741474774],[-87.54397016723664,41.75520207144029],[-87.54396781442367,41.7552175874404],[-87.5439613021495,41.75523466737757],[-87.54395095679723,41.755248449229356],[-87.54394554212791,41.755255662730754],[-87.54392231155552,41.75527135609168],[-87.54391497995363,41.755276309391256],[-87.54389225439839,41.75529200264838],[-87.54385099775017,41.75532049227767],[-87.5438046354326,41.7553504155534],[-87.54376165364522,41.75538264008202],[-87.54367597215177,41.75543007639619],[-87.54363084039854,41.755460266296836],[-87.54356718346719,41.7555028483158],[-87.54348216358193,41.75555303305289],[-87.54347769384171,41.755554493025926],[-87.54347623962241,41.75555496794554],[-87.54347500815001,41.75555550943627],[-87.5434514774956,41.755565857768794],[-87.54343534254099,41.75557469845766],[-87.54342446845297,41.755580655932405],[-87.54339766775172,41.75560234315494],[-87.54336605296658,41.75562218740798],[-87.54333740983753,41.75563867522968],[-87.54333724437502,41.75563877892406],[-87.5433023965766,41.755660663541676],[-87.54327080521901,41.75567850322144],[-87.54324128734666,41.755691692946876],[-87.54320891157995,41.755709269525894],[-87.54320394914349,41.75571196322828],[-87.5431741880462,41.75572998040034],[-87.54314430993692,41.75575161950422],[-87.54311627733455,41.7557657126806],[-87.54310090579365,41.755773440272336],[-87.54306385278088,41.75579725370808],[-87.54303047204854,41.7558206793757],[-87.54298862161593,41.75584215457888],[-87.54297094367212,41.75585122581114],[-87.54291941808755,41.75588377517282],[-87.54283943294669,41.75593144653686],[-87.54280743996478,41.75595051441548],[-87.54270933574458,41.75601260139053],[-87.54264716075237,41.756050834327326],[-87.54260981288186,41.7560738006172],[-87.5426062754989,41.75607609355461],[-87.54260386453723,41.75607765630339],[-87.54249525043322,41.75614793081415],[-87.54244456790495,41.75617607430887],[-87.54237081810456,41.756217026047764],[-87.54235991776822,41.75622244782803],[-87.54232347096429,41.756240575448544],[-87.54231644773473,41.75624502032905],[-87.54228280316767,41.75626631191736],[-87.54225849619094,41.75628113581783],[-87.5422553496705,41.75628305464383],[-87.54223634868205,41.756294642227026],[-87.54221896310473,41.756304836949],[-87.54219101622505,41.75632122471842],[-87.54210203980216,41.756368142910304],[-87.54203090977288,41.75641129528282],[-87.54203007267657,41.75641180297502],[-87.5419389692729,41.756464771007614],[-87.5418494838636,41.75650831028768],[-87.54182770863795,41.75652064681912],[-87.54180021431569,41.756536100159096],[-87.54176816124742,41.756561648532625],[-87.54173931444211,41.75658205724364],[-87.54169628820271,41.75661249853799],[-87.5416249711862,41.7566521234979],[-87.54156510082417,41.75668538863296],[-87.54143511397966,41.756767864989264],[-87.54141983076298,41.756778120732655],[-87.54137908978309,41.75680545986494],[-87.54134777059261,41.756822506687556],[-87.54129544350867,41.75685098740801],[-87.5412610803193,41.75686762792307],[-87.54125876459885,41.756869189653315],[-87.54123380651349,41.756886018492835],[-87.54122497135187,41.75689262182536],[-87.5412160877316,41.756899261322225],[-87.54121178941674,41.75690247599273],[-87.54120321535994,41.75690888765097],[-87.5411405308084,41.756939685248874],[-87.54112988741207,41.756944788972646],[-87.5411227604732,41.75694820669803],[-87.54109839981346,41.756968127507605],[-87.54108372244023,41.756972444064324],[-87.54105582721986,41.7569847931324],[-87.54105280284126,41.75698747321144],[-87.5410437011479,41.756995540694106],[-87.54104359888052,41.75699563109945],[-87.5410531663713,41.7570024354175],[-87.5410532626533,41.757002503865515],[-87.54099638468023,41.75703504343698],[-87.54098918941786,41.75703254288581],[-87.540985910384,41.7570314033441],[-87.54098122919935,41.75703004721253],[-87.5409754290228,41.75702836749523],[-87.54096910038241,41.75702734029389],[-87.54095900608621,41.757025702037936],[-87.54094789715808,41.75702598245494],[-87.54094364772624,41.75702653246789],[-87.54093622406467,41.75702749363803],[-87.5409290730677,41.75703021386011],[-87.54092878585064,41.757030323023116],[-87.54092875995778,41.757030342329024],[-87.54091594965873,41.757039922400345],[-87.54089199217618,41.75705613922764],[-87.54088885922108,41.75705825981505],[-87.54084133510355,41.75708710304413],[-87.54078047535604,41.757121508880246],[-87.5407411960256,41.75714803183399],[-87.54073231879934,41.7571540256046],[-87.54070036389155,41.75717555807824],[-87.54067019436646,41.757195886863755],[-87.54062365902453,41.75722775637084],[-87.54062362302727,41.757227792621585],[-87.5406050310048,41.75724642598569],[-87.54060503025158,41.75724642762707],[-87.54059783132217,41.757266321841634],[-87.54059675875256,41.75726928404213],[-87.54059765587915,41.75727819519348],[-87.5405988818568,41.75729037459873],[-87.54060159757677,41.757295474946936],[-87.54060672737499,41.757305110432654],[-87.54061978636,41.75731949693845],[-87.54062495224277,41.7573251880234],[-87.54064631112927,41.75734544393346],[-87.54064643539539,41.75734556142335],[-87.54065473739648,41.75735259991305],[-87.54068223688768,41.75737591361335],[-87.54074121034488,41.75742629351783],[-87.54082615636399,41.7575046250847],[-87.54096983158578,41.7576413214093],[-87.541022019414,41.7576833130872],[-87.54105908459661,41.75771512780044],[-87.54108795429052,41.75774587032561],[-87.54109458808378,41.7577523986416],[-87.54110472074801,41.7577623699255],[-87.54112307643128,41.75777564852572],[-87.54114845935759,41.75779401135677],[-87.54118048435721,41.7578066086606],[-87.54119868501722,41.757811096754025],[-87.54121139661633,41.757814231110984],[-87.5412543522749,41.75782314517016],[-87.54128036612154,41.75782671591008],[-87.54128203239722,41.75782694447097],[-87.54130971179332,41.75783074348566],[-87.54136045008885,41.75783493635834],[-87.54137601937397,41.75783622290353],[-87.54144407363931,41.75783729930152],[-87.54144655589766,41.757837338364865],[-87.54144674204534,41.757837341568894],[-87.54145398161629,41.75783702181095],[-87.54154997062318,41.75783278425465],[-87.54163725186784,41.7578250746335],[-87.54164910960698,41.757824027339986],[-87.54257183602219,41.758686711187934],[-87.5425869114779,41.758700805358],[-87.54262731203352,41.75873857513284],[-87.54259481456259,41.75880599173259],[-87.54257863200381,41.75883956189731],[-87.54256973286606,41.758858022984555],[-87.54253283842232,41.758934554661195],[-87.54253074143035,41.75894232880789],[-87.54252661769544,41.75895761824891],[-87.54252661730874,41.758957619892826],[-87.54252283014154,41.75898248319843],[-87.54252197312233,41.75900747809086],[-87.54252404903927,41.75903243746189],[-87.54252442903503,41.759034324858476],[-87.54252902428864,41.75905714318317],[-87.54253686209066,41.759081456688726],[-87.5425475669727,41.75910515874007],[-87.54255988574769,41.75912622475274],[-87.5425609565901,41.7591280557064],[-87.54256343138626,41.75913052778521],[-87.54256635154033,41.759133444486146],[-87.54273907798496,41.75930609721885],[-87.54293505365469,41.75950198832209],[-87.54304101126108,41.75960085315805],[-87.54310414782532,41.75964986088401],[-87.54313721784926,41.75967591241588],[-87.54314926652732,41.75968427344561],[-87.54316422045285,41.75969464955665],[-87.54318496969435,41.75970327212684],[-87.54319853880116,41.75970517228933],[-87.54321299702798,41.759707196843905],[-87.54324615697992,41.759705037624855],[-87.5432801220889,41.75970073405337],[-87.54328026011791,41.75970071634134],[-87.54345466309584,41.75986016327308],[-87.54363259837564,41.760022838728126],[-87.54367008323915,41.76005710832501],[-87.54428858246106,41.760623197458116],[-87.54429072057737,41.76062518803344],[-87.54430661775858,41.76063797529706],[-87.54432455016001,41.7606491853942],[-87.54434419029214,41.76065862369997],[-87.54435054077058,41.76066089375585],[-87.54436524700844,41.76066615072505],[-87.54437609197277,41.760668828160846],[-87.5443874276992,41.76067162669584],[-87.54439861848162,41.76067327190568],[-87.54441033061964,41.760674994241526],[-87.54442105058993,41.76067554810397],[-87.54443362694374,41.760676197590065],[-87.54471152767863,41.76067192807546],[-87.54489040519002,41.760669179572375],[-87.54516476487535,41.760664968635716],[-87.54517073612678,41.7606654335929],[-87.54517483438994,41.760665752053775],[-87.54521159887915,41.760665565169774],[-87.54526436713734,41.7606635396022],[-87.54532113354901,41.760661267003854],[-87.54536968500616,41.76065635812597],[-87.54540021987262,41.76065624261864],[-87.54544698856813,41.76065606526698],[-87.54558559219403,41.76065810600021],[-87.5455865369284,41.76065811988742],[-87.54558736238732,41.76065814640382],[-87.54563772055766,41.76065976036184],[-87.54565775941052,41.760659179566716],[-87.54566298279532,41.760659027942445],[-87.54566575606052,41.76065868772756],[-87.54567410558565,41.76065766371876],[-87.545685228009,41.76065629949148],[-87.54571079292343,41.760655033450576],[-87.54573635269591,41.76065376819203],[-87.54578241332584,41.760655593849265],[-87.54581420175,41.76065685403174],[-87.54589881859279,41.76065194542465],[-87.54594183402521,41.76065018174208],[-87.54596558878671,41.76064905527251],[-87.54600150276366,41.76064735239673],[-87.54604741428584,41.760651481583444],[-87.5460824178954,41.76066074687313],[-87.54608274999326,41.7606608347707],[-87.54608296262276,41.76066089111354],[-87.54632679921114,41.760657563768326],[-87.54633601704484,41.76065743810359],[-87.54633612772645,41.760657438861756],[-87.54637889706927,41.76065778671012],[-87.54638723626387,41.760657607272194],[-87.54641082951994,41.76065709954018],[-87.54642277305908,41.760654766092564],[-87.54643471108655,41.76065243370368],[-87.54645706113497,41.76065006175607],[-87.54646968428895,41.760651202019474],[-87.54647679548074,41.760651844038954],[-87.54649243992546,41.760646352550424],[-87.54649307308702,41.76063046742804],[-87.54647039671143,41.760617579150924],[-87.5464617675742,41.76061692069734],[-87.54644351840588,41.76061552811975],[-87.54575507987033,41.76061798804029],[-87.54524056434614,41.7606198241194],[-87.54498364727492,41.760619797811835],[-87.54446499700842,41.76061974360996],[-87.54445982808761,41.76061981761578],[-87.54445375133001,41.760619528629704],[-87.54443825228314,41.76061879156748],[-87.54441710618394,41.760615599925266],[-87.54439668227869,41.76061027268968],[-87.54437741977856,41.76060295036626],[-87.54437400205254,41.76060117466525],[-87.54435964642914,41.76059371698625],[-87.54434431012665,41.76058319597697],[-87.54434372675983,41.76058279542042],[-87.54434369195282,41.7605827644453],[-87.54434257574107,41.760581758680416],[-87.5443299145808,41.760570350972436],[-87.5440907981395,41.76034562499675],[-87.543853006127,41.76011166017304],[-87.5438568046039,41.76011050760061],[-87.54386087826616,41.76010927129703],[-87.54387982184599,41.76010470899977],[-87.54388514113673,41.760103427740795],[-87.5438945472711,41.760102047502585],[-87.54391014595676,41.76009975809254],[-87.54393552842558,41.76009823075922],[-87.5439441843745,41.760098458183755],[-87.5439609935632,41.76009889997189],[-87.54398617453056,41.76010176183801],[-87.54401074470175,41.7601067611489],[-87.54403440791322,41.760113839337855],[-87.54404166212002,41.76012308255729],[-87.54406014570219,41.76013111255371],[-87.54408271050978,41.7601471298579],[-87.5440860782117,41.76015035311323],[-87.54409111527872,41.76015517376342],[-87.5441212406447,41.760164409157845],[-87.54414301987767,41.76018396777862],[-87.54415089630086,41.760191040687054],[-87.54415259491361,41.76019297336024],[-87.54415272969212,41.76019307143402],[-87.54415288626852,41.76019318530001],[-87.5441581535278,41.76019701821064],[-87.54417337843785,41.76019885169376],[-87.54419476809684,41.76020004144509],[-87.54420594010502,41.760198993844035],[-87.54421439965775,41.76019820039427],[-87.5442330211778,41.76019431696039],[-87.54424523047692,41.76019177096056],[-87.54427617550726,41.7601819122106],[-87.54431917310461,41.760166592477404],[-87.54433204336637,41.76016086433397],[-87.54434710823271,41.76015415974691],[-87.5443631773538,41.760146977686475],[-87.54438683694009,41.76013640283591],[-87.54443035315443,41.76011285044863],[-87.54443340083478,41.76011120119873],[-87.54443566874606,41.76010995521975],[-87.54450395471268,41.76007244251703],[-87.54456047658155,41.76003616599454],[-87.54457773319521,41.760023356100895],[-87.54464743720284,41.75997161400575],[-87.54475869190264,41.7598804710146],[-87.54493547238367,41.759751165095736],[-87.54501358853271,41.75970313809492],[-87.54515221418305,41.75961790793918],[-87.5452114627311,41.75957742385998],[-87.54524543388179,41.75955981952854],[-87.54526797294871,41.75954610529496],[-87.54528236114402,41.759537350071604],[-87.54528945120512,41.759531799520545],[-87.54531540787758,41.75951147850529],[-87.54532249355925,41.75950541666018],[-87.54533778017603,41.75949233929165],[-87.54536085376432,41.75947225892527],[-87.54536856607645,41.7594655468609],[-87.5453836647004,41.75945234552689],[-87.54540861481026,41.75943052963078],[-87.54543502028211,41.75941006759046],[-87.54544757861989,41.75940033517796],[-87.54546991042724,41.759386417502846],[-87.54550977451851,41.759361573165826],[-87.54558244405143,41.75932735997409],[-87.54574504115892,41.759250807625364],[-87.5460642707469,41.75909547278642],[-87.5460814481309,41.759088110367976],[-87.54636392916733,41.75896703429558],[-87.54652534760908,41.75890388906636],[-87.54659034496751,41.75887846288568],[-87.54668017852102,41.75885144323989],[-87.54669766430956,41.758847747570904],[-87.54669829414071,41.75884761466854],[-87.54680192704107,41.75883109028314],[-87.54682153832083,41.75882663772505],[-87.54685073563745,41.75882000842222],[-87.54688083563204,41.75880338672923],[-87.54688283895511,41.758802280221474],[-87.54689068357298,41.758796839842056],[-87.54690960055684,41.758783719876995],[-87.54691125485013,41.75878298228266],[-87.54691181205406,41.75878273389605],[-87.54691783369069,41.758780049480606],[-87.54693676057263,41.75877161161927],[-87.54694329314594,41.758770276776055],[-87.54697262230684,41.758764283099815],[-87.5470131627596,41.75875703159713],[-87.54701754558678,41.758756247910135],[-87.54706473579647,41.758747158216536],[-87.54708826568631,41.75874262595156],[-87.5470884496267,41.758742600041835],[-87.54719984025914,41.75872697856815],[-87.54721308343582,41.758725125948224],[-87.54724584388224,41.75872054237195],[-87.54728124353561,41.75872094950445],[-87.54729304366899,41.75872108484865],[-87.54732872172377,41.75871907148262],[-87.54733771669993,41.75871856385313],[-87.54738256596355,41.75871950185668],[-87.54744599574853,41.75872067698674],[-87.54754290395742,41.758720543707135],[-87.5475434903326,41.758720547717616],[-87.54758111242708,41.758719131006295],[-87.54760653059724,41.75871756989856],[-87.54764302581872,41.75871532848396],[-87.54773259017314,41.75870735075203],[-87.5477436236616,41.758706245326444],[-87.54781335918058,41.75869925820444],[-87.54784760279466,41.75869227538094],[-87.5478877103484,41.758682340806125],[-87.54793793112421,41.75867571334484],[-87.54797422875328,41.758674644757775],[-87.54799949422481,41.758675865782614],[-87.54802778166045,41.75867723314645],[-87.54804811590951,41.758677863911544],[-87.54806408991077,41.758678359764694],[-87.54808366345188,41.75867819441846],[-87.54809638246213,41.75867808677849],[-87.54813253892186,41.75867747410158],[-87.5481366630677,41.75867740404151],[-87.5481367811091,41.75867740210393],[-87.54818129390213,41.75867894096643],[-87.54840100170959,41.75869243505786],[-87.54849595302731,41.758701869308766],[-87.54850628393649,41.75870289599256],[-87.54851338854795,41.75870379141369],[-87.5485712043688,41.75871107836044],[-87.54857892776018,41.758711845180244],[-87.54861568476029,41.75871527962225],[-87.54862124812283,41.75871554786684],[-87.54865279056528,41.75871706930924],[-87.54869229869547,41.758723507485435],[-87.54870886637796,41.758726207129904],[-87.54880475872895,41.75875227440905],[-87.54887535932379,41.758772569464064],[-87.5488943025749,41.758777362458275],[-87.54892362690782,41.758784782361865],[-87.54896660134965,41.7587922652617],[-87.54899638447405,41.75879650297636],[-87.54906274334867,41.75881536497776],[-87.54916228100312,41.75884365776628],[-87.54954549479656,41.758956373517734],[-87.54978392670094,41.75904720122795],[-87.54980936458905,41.759056891100016],[-87.54981736267735,41.75905993802315],[-87.54998598600417,41.75912417259521],[-87.54999467624613,41.75912708646166],[-87.55000971324972,41.759132128165795],[-87.55010228509668,41.75916656542146],[-87.55017999671774,41.75919547474094],[-87.55018013029829,41.759195521206784],[-87.55024569152157,41.75921834341626],[-87.55033870652986,41.75925511944523],[-87.55043300343354,41.759285949015414],[-87.55050359871565,41.75930975710248],[-87.55062338322705,41.75935448192435],[-87.5506969708663,41.759382426445406],[-87.55077293232738,41.759414036450835],[-87.55082462475296,41.75943406485023],[-87.55084716476438,41.759440113933316],[-87.55086481121229,41.7594448494709],[-87.55099066623704,41.75949373169445],[-87.55106913380826,41.759521242402165],[-87.55116391553005,41.75956351865471],[-87.5512569258686,41.75960073326951],[-87.55135848763007,41.759637100121004],[-87.55140047818276,41.75965493045949],[-87.55145267359637,41.759677094316025],[-87.55152261974848,41.759703174848795],[-87.55153783578459,41.75970876697884],[-87.55156149162687,41.75971789794745],[-87.55161867769682,41.75973997109635],[-87.5516865480311,41.75976816395896],[-87.5517171420011,41.759780872083816],[-87.55172141003166,41.75978260258217],[-87.55179680070269,41.759812973368994],[-87.55188316526979,41.759845293649775],[-87.551952452409,41.759871222893],[-87.5521367654644,41.75993559476766],[-87.55221109138462,41.75996122166544],[-87.55225173843921,41.759975236222346],[-87.55238231828302,41.76003970918963],[-87.55246072058793,41.76007270709099],[-87.5524680175418,41.76007550070548],[-87.55256220025532,41.760115933329494],[-87.55268161470067,41.760179789726195],[-87.5526939175884,41.760186368790315],[-87.55278507534219,41.76022540825633],[-87.55282392740807,41.76024350984218],[-87.55285510172716,41.76025772547948],[-87.55286766856257,41.760263456135725],[-87.55296350484443,41.760305913975074],[-87.5531581194876,41.760392132898524],[-87.553199815068,41.76041000805195],[-87.55324807477147,41.760430697026806],[-87.55332707426079,41.76046279277405],[-87.5533878876049,41.760486532676474],[-87.55344263435423,41.76051108264591],[-87.55348631462095,41.760530669885554],[-87.55358596777107,41.760573416839655],[-87.55362347686248,41.76058976998104],[-87.55366800382691,41.76060918259758],[-87.55373244772167,41.76063569070008],[-87.55387278485289,41.76069976137525],[-87.55388787437131,41.76070636443106],[-87.55390680162286,41.760714647232064],[-87.55393115519584,41.760723302468826],[-87.55394088823664,41.760726761266916],[-87.55397336918023,41.760738657479784],[-87.5539956253744,41.76074680861876],[-87.55400780529284,41.760751544737765],[-87.55403269010006,41.76076122086623],[-87.55406972438885,41.76078114920041],[-87.55410598169726,41.76081385929017],[-87.55414919214378,41.76087773818921],[-87.55417542002479,41.760930524176594],[-87.55420961187338,41.76098243110546],[-87.55425114506495,41.76103348191518],[-87.55427903408486,41.7610519757445],[-87.55430930889264,41.7610523756007],[-87.55434745437863,41.76105287903518],[-87.55438252551932,41.76108055893649],[-87.55438255462825,41.761080606884555],[-87.55439547867203,41.761101800871884],[-87.5544340639647,41.761165076392636],[-87.55452780511592,41.76129378806276],[-87.55466960526267,41.76148866098724],[-87.55468974052225,41.761533752548516],[-87.55473680343144,41.76163914693169],[-87.55476748482067,41.76172991653843],[-87.55480242803151,41.76177131745861],[-87.5548280689243,41.761776948234726],[-87.55487554083467,41.76178737301656],[-87.554976120528,41.76175375107661],[-87.55508944494414,41.7616983691566],[-87.55516537876414,41.76166126005383],[-87.55519072597558,41.76165154678681],[-87.55526973738657,41.76162126924671],[-87.55532482865239,41.76161203757321],[-87.5553510200845,41.76161633109901],[-87.55538038306062,41.76160943236191],[-87.5554343489123,41.7615967524944],[-87.5554492600098,41.76159026961921],[-87.55545398780555,41.76158821377105],[-87.55548400084605,41.76158433099657],[-87.55552131524033,41.76157950311319],[-87.55552933367578,41.76157945668276],[-87.55559338072787,41.7615790853626],[-87.55559339023704,41.76157908707354],[-87.55563970012093,41.76158900421216],[-87.55573391000132,41.76162759519096],[-87.55576407515862,41.76164447779605],[-87.55580672436044,41.761668347328104],[-87.55584116229393,41.76168935304086],[-87.55589466687007,41.76172198964883],[-87.55591497798831,41.76173342891318],[-87.55594319570893,41.76174932159937],[-87.55596319245213,41.76175941704285],[-87.55598815222491,41.761772018671394],[-87.55601787703881,41.76178731422405],[-87.55607856965331,41.76182112206894],[-87.55614758659935,41.7618728254731],[-87.55617573282807,41.761900788393426],[-87.55619347658477,41.76191841618705],[-87.55620043440554,41.76192556136632],[-87.55621096310735,41.7619363729253],[-87.55623198823474,41.761964863965325],[-87.55626159523834,41.761992973685075],[-87.55628672862427,41.76201109656908],[-87.55631791800235,41.762033585686254],[-87.55633672821088,41.762045156879225],[-87.55637254003462,41.762063236427295],[-87.55641813863517,41.762081382968844],[-87.55645763208736,41.76209811606307],[-87.55653594539272,41.762138903547715],[-87.55659841581638,41.76217728003639],[-87.55662799239421,41.76219580720615],[-87.55664934594925,41.7622091834491],[-87.55671948595592,41.762268193645916],[-87.5567195358421,41.76226825133886],[-87.55675625199939,41.76231053907769],[-87.55676917695061,41.76232554140118],[-87.55678517011457,41.7623441056977],[-87.55683166046455,41.762393624002925],[-87.55683702835903,41.762399341518794],[-87.55683716679287,41.76239947280835],[-87.5568371744068,41.76239947972055],[-87.55686964510555,41.76243021626447],[-87.55690846378485,41.762454271906066],[-87.55694580202672,41.76247614048227],[-87.55699217613824,41.762503301276595],[-87.55702069206981,41.76251858730235],[-87.55703518498456,41.76252718869795],[-87.5570589054343,41.76254126665616],[-87.55707881433271,41.76255384983639],[-87.55710863186228,41.76257269547562],[-87.55713241499664,41.76258683641198],[-87.55716624223062,41.76260694927213],[-87.55721516557657,41.76263017431821],[-87.55723854994082,41.76264127542937],[-87.55731807839827,41.76268160433213],[-87.55737337972093,41.7627066762143],[-87.55739584724778,41.76271596700272],[-87.55741333056707,41.76272331327395],[-87.55742684568158,41.762728991930324],[-87.55749484300998,41.762765127217676],[-87.55751003815485,41.76277255654241],[-87.55753312768951,41.76278185150423],[-87.55760242889093,41.762810228633704],[-87.55762771633854,41.762833725040416],[-87.55764110569702,41.76284616585859],[-87.55764188185563,41.76289395829917],[-87.55764249479171,41.76293168713769],[-87.55764249513838,41.7629316887866],[-87.55764589377587,41.7629620224506],[-87.5576458970774,41.762962052660114],[-87.55764967626732,41.762995787974646],[-87.55766272892815,41.76300925398011],[-87.55770097749014,41.76304871416035],[-87.55770076651787,41.76304882305663],[-87.557572475576,41.76311508228284],[-87.55831805416902,41.76387663370944],[-87.55845597502818,41.76401752239186],[-87.55845607239912,41.76401747227918],[-87.55860316094704,41.763941988483396],[-87.5586662040114,41.763909635203625],[-87.55872407925347,41.76387937195219],[-87.55873614702529,41.763873061583276],[-87.55880268421524,41.76383827070407],[-87.55882274875442,41.76382681901576],[-87.55882482887841,41.763825631587295],[-87.55897902333889,41.76375259756359],[-87.55897906978693,41.763752575647885],[-87.55909438388218,41.76386540201285],[-87.55911192525683,41.76388198625467],[-87.55928041519914,41.764041384654625],[-87.55934333020333,41.764043180668416],[-87.55937353936494,41.7640507792253],[-87.55940117912226,41.76405773119948],[-87.5594156242958,41.76406630370583],[-87.55943939388227,41.764080409219005],[-87.55945465785031,41.76409597338185],[-87.55948769920495,41.76412966478559],[-87.55950719480246,41.764142497508736],[-87.5595228296882,41.76415278908127],[-87.5595652450833,41.76418279571867],[-87.55960877075731,41.764221042146744],[-87.55963029168711,41.76424652705407],[-87.5596569463939,41.76427809138244],[-87.55967681359637,41.764300212167655],[-87.55970158125184,41.764327788670194],[-87.55974234951995,41.764391182465836],[-87.55965955083244,41.76443557643153],[-87.55954434755343,41.76449734245875],[-87.55954386541612,41.76449768855994],[-87.55951661733806,41.76451727217634],[-87.55951705288881,41.764531510304145],[-87.5595170646769,41.76453190199409],[-87.55952084482783,41.76453697091554],[-87.55952907718695,41.76454800957049],[-87.55954536742506,41.764565023855894],[-87.55955657690436,41.76457844155392],[-87.55957025225129,41.76459481087907],[-87.55958995820211,41.764618399063124],[-87.55959643033444,41.76462801062682],[-87.55959953712056,41.764632624123465],[-87.55960115054937,41.76465093887133],[-87.55960102954454,41.764661010158626],[-87.55959899596546,41.764665461427036],[-87.55959790501639,41.76466784929833],[-87.55959460964945,41.76467502620749],[-87.55958785481812,41.76468973622723],[-87.55959001973633,41.764713983184194],[-87.5596020322678,41.764730062760925],[-87.55960216569311,41.76473018468279],[-87.55961414178077,41.76474112175762],[-87.55962985848869,41.76475404372128],[-87.55964194261476,41.76476419610427],[-87.55966977446957,41.76478771056309],[-87.55968229692463,41.7647979303844],[-87.55968672649956,41.764801545630824],[-87.5596982912532,41.76481178863966],[-87.55972419172089,41.764834729695096],[-87.55975668447434,41.76487611259433],[-87.55977029428493,41.764892820648285],[-87.55978738882757,41.76491380663992],[-87.55980352394441,41.76492919220368],[-87.55981880815162,41.764943766586384],[-87.55984246267613,41.764958086392596],[-87.55987124488715,41.764960321096844],[-87.55989431753461,41.76496211229913],[-87.55991881428842,41.764958161046955],[-87.55993601881673,41.76495094932953],[-87.55996886045554,41.76491137844107],[-87.55998056081924,41.764904596195464],[-87.5600013500814,41.76490108677326],[-87.56002213180746,41.76490122665658],[-87.56002889719596,41.76490339655085],[-87.56004101012212,41.76490728139621],[-87.56005564462089,41.76491433503207],[-87.56005740997482,41.76491518584429],[-87.56007847311392,41.76492354594393],[-87.56012183539279,41.764940756622245],[-87.56012382104403,41.76494261497365],[-87.56016812422556,41.76498407147802],[-87.56018764107294,41.765006005398654],[-87.56022020414943,41.76504260067264],[-87.56022012511096,41.76504265036132],[-87.56014486121245,41.76508984405749],[-87.56014493574402,41.7650899255157],[-87.56025568905373,41.76521113070985],[-87.56035832217917,41.76532344838365],[-87.56041590819846,41.76529802162701],[-87.56043423397936,41.76528992987465],[-87.56045749910344,41.765320682500295],[-87.56046887386343,41.76533571788254],[-87.56048795722491,41.765358756431425],[-87.56051367729064,41.765389807398456],[-87.56055078150241,41.765474580906655],[-87.56056729815543,41.765517366020376],[-87.56058562079927,41.765564828300896],[-87.56061181542363,41.765642393797165],[-87.5606177942661,41.7656974735317],[-87.56062105664604,41.76572752900604],[-87.5606218679848,41.76575919426246],[-87.56062305372228,41.76580547978264],[-87.56061392433999,41.76583690885638],[-87.56060698313738,41.76586080529494],[-87.56059552562361,41.7659002474086],[-87.56058950882998,41.765939297457244],[-87.56058200925538,41.76598797383857],[-87.56055497746257,41.76608178373881],[-87.56055217574799,41.766091506855105],[-87.5605457579414,41.76610568982079],[-87.56051602674086,41.76617139756755],[-87.56044323248955,41.76625049234051],[-87.56039187105378,41.76629077686553],[-87.56037373306812,41.76630500309038],[-87.56037369495334,41.76630503302116],[-87.56036552405078,41.766311441677736],[-87.56036534469007,41.7663115732947],[-87.56036534173148,41.76631157547023],[-87.5603653387762,41.76631157737136],[-87.56028268296056,41.76637235615084],[-87.56027755112815,41.76637574622153],[-87.56018070420129,41.76643972862411],[-87.56007694783078,41.76647196183392],[-87.56005019057407,41.76647848522106],[-87.55996959782907,41.766498133317654],[-87.55983589128196,41.76652138268848],[-87.55974115513172,41.766535015415194],[-87.55963982763502,41.76654805426823],[-87.55959634526991,41.76655796471047],[-87.55956263868441,41.766565647572286],[-87.5595595443167,41.76656844319804],[-87.55954644864984,41.7665802748277],[-87.5595324780275,41.76659289723061],[-87.55952706269022,41.766597790053105],[-87.55952708039021,41.766597842313864],[-87.55952708356368,41.76659785276353],[-87.55952921575036,41.766604205340286],[-87.55953003890629,41.76660665714598],[-87.55953980273942,41.766635746809825],[-87.5595388794498,41.766712581028216],[-87.55953529686765,41.766716348411755],[-87.55953455659048,41.766717126921016],[-87.55950620885716,41.766746939052176],[-87.55944459937335,41.76674926808067],[-87.55939214224581,41.766782943928575],[-87.55939359898515,41.76682725621088],[-87.55939370603349,41.76683051852239],[-87.55939428955631,41.766848272255835],[-87.55940237103835,41.76690214142779],[-87.55940300531319,41.76690637053715],[-87.55940582891434,41.76692519042402],[-87.55940739689257,41.766934354570466],[-87.55942021334567,41.76700926291283],[-87.55942226385217,41.76707044862609],[-87.55942240011134,41.76707451356499],[-87.55942345121967,41.76710588322996],[-87.55942536349428,41.76713352289203],[-87.55942561110662,41.767137106683435],[-87.55942907297774,41.7671871526704],[-87.55942938375506,41.767252610775564],[-87.55942938408953,41.767252674445366],[-87.55942969537803,41.76731833398423],[-87.5594290898324,41.76742974757826],[-87.55942410452865,41.76753948619012],[-87.55942567838865,41.76765256158439],[-87.55943133931464,41.76770007595263],[-87.55943700024517,41.76774759059468],[-87.55945738824092,41.76777971346437],[-87.55945775590297,41.767780293339754],[-87.55947513349811,41.76780767245451],[-87.55951856432132,41.76785406935128],[-87.55951999811657,41.76791774683293],[-87.55952000863694,41.76794777081865],[-87.55952001082593,41.76795384175377],[-87.55952001926671,41.76797702311037],[-87.55949511613703,41.76800688230756],[-87.55949385604839,41.76800839305946],[-87.55948952049694,41.76801359090742],[-87.55944721439424,41.76805666628305],[-87.55943649086407,41.76815593710199],[-87.55943142671353,41.7682722611927],[-87.55942947744526,41.76831095216659],[-87.55942923390944,41.76831578212435],[-87.55942564961906,41.768386933629394],[-87.5594130772407,41.76851802548313],[-87.55941474305598,41.76862341801325],[-87.55943410882983,41.76872014722025],[-87.55944043530945,41.76873510752549],[-87.55944974165084,41.76875711383555],[-87.55947973236357,41.76882803100353],[-87.55952021968346,41.768936428207134],[-87.5595221774957,41.76897962417614],[-87.55952427585201,41.769025919395304],[-87.55951945253032,41.76907853090523],[-87.55951915259074,41.76908180145128],[-87.559516682481,41.7691087458203],[-87.55953563203437,41.76917912728643],[-87.55953563497663,41.76917912648296],[-87.55955809516759,41.76917215851952],[-87.55955965121562,41.76917167557629],[-87.55959450310351,41.769160862887404],[-87.55966318938465,41.76910981540051],[-87.5596632082499,41.769109801257244],[-87.55966329997727,41.76910973326769],[-87.55969733673413,41.76907950167345],[-87.55970531939685,41.769072411491],[-87.55973444179466,41.76904654534154],[-87.55976577153919,41.76901577819987],[-87.55977339197365,41.7690082945122],[-87.5598115987241,41.76897077358487],[-87.55989554590218,41.76887913032915],[-87.55997506063447,41.7687902014639],[-87.56004346645014,41.76871052918076],[-87.56011038689594,41.768632492884045],[-87.56016999575435,41.76855276049297],[-87.56020946011394,41.7685221662498],[-87.5602106134534,41.768521271962776],[-87.56023807856481,41.768499979690695],[-87.56027980585442,41.7684701053845],[-87.56032238057662,41.768439623690305],[-87.56037274943088,41.768421343669075],[-87.56037433147645,41.768420769504736],[-87.56041295186776,41.7684067527127],[-87.56045569833196,41.76840312144169],[-87.56045926870252,41.7684028180667],[-87.5605267042837,41.76839708936587],[-87.56064175891194,41.76840115639299],[-87.56078090252441,41.76841394748031],[-87.56078897681898,41.76841469333664],[-87.56079628106859,41.7684153681514],[-87.56079628363108,41.76841536844305],[-87.56079628619028,41.76841536900912],[-87.56088180726735,41.76843032440783],[-87.56092358015371,41.76843762927631],[-87.56092358270962,41.76843763011678],[-87.56092358526882,41.76843763068284],[-87.56105069610713,41.768475258155306],[-87.56105069975939,41.76847525927757],[-87.56109725027676,41.76849001648648],[-87.561163902659,41.76851114600975],[-87.56116390521493,41.768511146850216],[-87.56128368040548,41.768549272795624],[-87.56128368332465,41.768549273912946],[-87.56138929732556,41.76858418487306],[-87.5614209674928,41.76859465335514],[-87.56142097077851,41.76859465447493],[-87.56154000004567,41.76863387230871],[-87.56154000296155,41.768633873700445],[-87.56168084695143,41.768688058476705],[-87.56168084950737,41.76868805931716],[-87.5617185657439,41.768702312636556],[-87.56179470146502,41.76873108521743],[-87.56179470475075,41.76873108633722],[-87.56191648858095,41.768785141723676],[-87.56197892717573,41.768814645223685],[-87.56201782251644,41.7688330241695],[-87.5620178243393,41.768833025005016],[-87.5620178265287,41.768833025843016],[-87.56205813914143,41.76885179602114],[-87.5621242688665,41.76888258687],[-87.56212427105262,41.76888258798239],[-87.5622342811238,41.76894040710078],[-87.56233766293465,41.76900092619705],[-87.56236218044657,41.76903390146849],[-87.56237662544706,41.769053329187],[-87.5624029740022,41.76911827070764],[-87.56240692032256,41.76916050904311],[-87.56240882344213,41.76918088033315],[-87.56241809817195,41.76921572041435],[-87.56242916898788,41.769257308133284],[-87.56244830290197,41.76929648613034],[-87.56247139055158,41.769343761885466],[-87.56249764860084,41.769390682665396],[-87.56251732878633,41.76942584996738],[-87.5625809347641,41.76950201939667],[-87.56264157420755,41.769574787375035],[-87.5626416479322,41.7695748756869],[-87.56269788346387,41.76965428875501],[-87.56273522903298,41.76971930395912],[-87.56279292443507,41.76979927535484],[-87.56286299690818,41.769886465430275],[-87.56292501971929,41.7699725026687],[-87.56298723237788,41.770042624811424],[-87.56305962286294,41.77011995086258],[-87.5631334279448,41.77020167666625],[-87.56316514822191,41.77024083710436],[-87.56319556227491,41.770278384465264],[-87.56320824170929,41.77030114470683],[-87.56324006286782,41.77035826717845],[-87.56327569993658,41.77044357904342],[-87.56330547334898,41.77052885159499],[-87.56333221559143,41.77062233669172],[-87.56334523370352,41.77067585499298],[-87.56335387902493,41.77071139687832],[-87.56337292017308,41.77077135001254],[-87.56337760105527,41.770786096814696],[-87.56338496682758,41.77080930194831],[-87.56340770655042,41.77087829430637],[-87.5634139749955,41.77089731307934],[-87.56344590108183,41.77098644256946],[-87.56345828301374,41.77102950276862],[-87.56346770645412,41.771062275655275],[-87.56346771032217,41.771062289402636],[-87.56346771455678,41.77106230315247],[-87.56346772265945,41.77106233064966],[-87.56345305180201,41.77107536870327],[-87.56341807217636,41.771106455966226],[-87.56342091775062,41.77117508227863],[-87.56346381555579,41.77126647989532],[-87.56348479728884,41.771351144890914],[-87.56348537342421,41.77139515069103],[-87.56348594739573,41.77143896959019],[-87.5635053587134,41.771532405782814],[-87.56351209528935,41.77159282172495],[-87.5635159537116,41.77162742919445],[-87.56352084746777,41.77170869295425],[-87.5635309871842,41.77172179627186],[-87.56356994500631,41.77177214031421],[-87.56359189091275,41.77183760144355],[-87.56358944238933,41.7718576600639],[-87.56358051173291,41.77193083131436],[-87.56358084280737,41.772025785943136],[-87.56358091528963,41.7720258558593],[-87.56358841647693,41.77203309176551],[-87.56364100347689,41.772083819090206],[-87.5636410075058,41.77208381939163],[-87.56364110640207,41.772083826366064],[-87.56374648767388,41.77209166035382],[-87.56386527306718,41.77209080998097],[-87.56398185326854,41.772090493026795],[-87.56398185765745,41.772090493879475],[-87.56401212911585,41.77209851672108],[-87.56407321143573,41.772114705402046],[-87.56414261100177,41.77215123854242],[-87.56416720056184,41.772164182780585],[-87.56423854998759,41.77219989986755],[-87.56427944039021,41.77222036937323],[-87.56437192461141,41.77227312993141],[-87.56446020707575,41.7723110047127],[-87.56448498933354,41.77232163728537],[-87.56448499262278,41.77232163813067],[-87.56462008080446,41.77236754817396],[-87.56462008372714,41.7723675490168],[-87.56463915460522,41.77237550278528],[-87.56471638076653,41.77240770943235],[-87.56480007426558,41.77245986169992],[-87.56490423948304,41.7725170911062],[-87.56494156173554,41.77252242947211],[-87.56500085312469,41.77253090987123],[-87.56502308409442,41.77254485738098],[-87.56508308767192,41.772582503317096],[-87.56516900800817,41.77263247532385],[-87.56525476369242,41.77269616733649],[-87.56532855481333,41.77274149629955],[-87.56535593568576,41.772758316040914],[-87.56539243390002,41.77277903021779],[-87.56544988202053,41.77281163436086],[-87.56550218186061,41.772841399677816],[-87.56554746653346,41.77286717207488],[-87.56557906794917,41.772883915137236],[-87.5656523840128,41.77292275925504],[-87.56575712390686,41.772993164038866],[-87.56584764302843,41.7730610757663],[-87.56585086700233,41.77306349498924],[-87.56585088189095,41.77306350688914],[-87.56585089714285,41.7730635190659],[-87.56593727275845,41.773134326258244],[-87.56601414866242,41.77320509326306],[-87.56609030283894,41.77327475822919],[-87.56614838598006,41.773322896742066],[-87.56616588079767,41.77333673967849],[-87.5661863373164,41.77335292542968],[-87.56623551748525,41.77340668540013],[-87.56625701131016,41.773431072785705],[-87.56626680530552,41.77344218531376],[-87.56628524469453,41.7734607228816],[-87.56629178778029,41.77346727464845],[-87.56629357706736,41.77346906626614],[-87.56629494943607,41.77347080433085],[-87.56628637789217,41.77349484195756],[-87.56628069664308,41.77351933851631],[-87.56627791121112,41.7735441077072],[-87.56627790962385,41.77354411785048],[-87.56627790876975,41.77354412799864],[-87.56627804898662,41.7735685432255],[-87.56627805133891,41.77356899193242],[-87.56628112961484,41.77359376569548],[-87.56628536953933,41.77361122572637],[-87.5662870703265,41.773618230078576],[-87.56629591284862,41.77364221904023],[-87.56630751315497,41.77366551344728],[-87.56632183693563,41.77368794704035],[-87.56633190327003,41.773700698348904],[-87.56633873840327,41.7737093561088],[-87.56634459860403,41.77371547191113],[-87.56635811067562,41.77372957308523],[-87.56637977240347,41.77374843429581],[-87.56640357824632,41.77376579990804],[-87.56642930911627,41.77378150434962],[-87.56644657431234,41.77379026493366],[-87.56644818641281,41.773791082790176],[-87.56645682119755,41.773795464330625],[-87.56646982887189,41.77380088633027],[-87.56648585883282,41.77380756809728],[-87.56651620223545,41.77381767779032],[-87.56654763436259,41.77382576369387],[-87.56654950749716,41.77382618042963],[-87.56655030274548,41.773826357529906],[-87.56655032597077,41.7738263774438],[-87.56655033721684,41.773826387398294],[-87.56655034883276,41.77382639708084],[-87.56655465249627,41.77383007955099],[-87.56658463411239,41.77385573101109],[-87.56662821316135,41.773876905889765],[-87.56664018199461,41.77388272160333],[-87.56669054235009,41.77390523098067],[-87.56673025225491,41.773920041243166],[-87.56677217167359,41.77394633653804],[-87.56678976010224,41.77395320511914],[-87.56681339256333,41.77395731430081],[-87.56682592222097,41.77397040555286],[-87.56683257745047,41.77398257312568],[-87.5668336358855,41.77398450832466],[-87.56683477131807,41.77400002113083],[-87.56684417372489,41.77402014488659],[-87.56684482608965,41.774024409747106],[-87.56684822095993,41.774046598839284],[-87.56685096526039,41.774052210008804],[-87.56685519192773,41.774060853353234],[-87.56686192739426,41.774074627417185],[-87.56688552525276,41.77410332490432],[-87.56691516301129,41.774132722681514],[-87.56693523951367,41.774161589041064],[-87.56693854730403,41.77416738426722],[-87.56694813165285,41.77418417793589],[-87.56698571388362,41.77422068041509],[-87.56699638571733,41.77423352214876],[-87.56700497827588,41.77424386121651],[-87.56702662961737,41.774269692453146],[-87.56703359991904,41.77427880333148],[-87.56704908339556,41.77429904117833],[-87.56707165415753,41.77432506213178],[-87.56707508504637,41.774329017855074],[-87.56710097777788,41.77435591964744],[-87.5671352238231,41.7743985744749],[-87.56715566333558,41.774423846002676],[-87.56716271785642,41.7744325677457],[-87.56720149159895,41.77447678982434],[-87.56722561063239,41.77451371809233],[-87.56722784686806,41.774517142234174],[-87.56727195919319,41.77458102127622],[-87.56729848186757,41.77461344351778],[-87.56729919562619,41.774614770200735],[-87.56731311595651,41.77464065466422],[-87.56732359940696,41.77465193196406],[-87.56734833554063,41.77467854140505],[-87.56736065946063,41.77469584974584],[-87.56736290335733,41.77469900087936],[-87.56736337174179,41.77469969034873],[-87.5673660037213,41.77470627443005],[-87.56736985150062,41.77471589768383],[-87.56741233191602,41.774767763919485],[-87.56742976452308,41.774789048207346],[-87.56745854960205,41.774828565483226],[-87.56746202080325,41.77483264989615],[-87.56748960641931,41.774865107170335],[-87.56750599278135,41.77488657629759],[-87.5675176903661,41.7749019026373],[-87.56756853192208,41.774968496611415],[-87.56761999339297,41.775035902338246],[-87.56766742587808,41.775100909301315],[-87.5676932565699,41.775136310427754],[-87.56771009942055,41.77516102247394],[-87.56773793712857,41.775201867088306],[-87.56781919410018,41.77531141168535],[-87.56790991561964,41.77542368124148],[-87.56800613907114,41.77553719376596],[-87.56800955563368,41.7755412237355],[-87.56807042129032,41.77562376655128],[-87.5681313889258,41.775697774180074],[-87.56821117487402,41.7757801130764],[-87.56821607977304,41.775786221047284],[-87.56822721541856,41.7758000880002],[-87.56826335965006,41.775837698225736],[-87.56831289675087,41.775889244477945],[-87.5683475400496,41.77592689545106],[-87.56838202666303,41.775964376596555],[-87.56841890036105,41.77599728956685],[-87.56844054080963,41.776016605793934],[-87.56849975959146,41.77608047543236],[-87.56855872812389,41.7761500512179],[-87.56863217945607,41.776225651860315],[-87.56865920263701,41.776252286665404],[-87.56869222492472,41.776284833894245],[-87.5687417988321,41.776334480882205],[-87.56875211404697,41.776344810973676],[-87.56875938533474,41.776351924260005],[-87.56881267156662,41.77640405178626],[-87.5688927990182,41.77646707214127],[-87.56894452820565,41.77650720878313],[-87.56895615602329,41.776515620002016],[-87.56895815960614,41.77651706914411],[-87.56918859642313,41.77668844635325],[-87.56922624034931,41.776710127699694],[-87.56928982445513,41.77674674938896],[-87.56932730383289,41.776767566254996],[-87.56941584397397,41.776816742922165],[-87.56949576270827,41.776845787187426],[-87.56950193816337,41.776848031360714],[-87.5695019520319,41.77684803666707],[-87.5695019659037,41.77684804169902],[-87.56950199364728,41.77684805176292],[-87.56961477003514,41.776921799851834],[-87.56969342647876,41.77696677989793],[-87.56977754623878,41.77696773035502],[-87.5698114620297,41.7769681138378],[-87.56982487473228,41.776972693456344],[-87.56984359438965,41.776979084994046],[-87.56989836554567,41.776997780544356],[-87.56996662105925,41.77705421784127],[-87.56999309853815,41.777083941516146],[-87.57002957448192,41.77712488988929],[-87.57014933316921,41.777228321048725],[-87.57020118640833,41.77728786033162],[-87.57022818278405,41.77731885827778],[-87.57032525241212,41.77741884621677],[-87.5704087947162,41.77748471507835],[-87.57052383738646,41.77757465379582],[-87.57054828497019,41.77759376624875],[-87.57059316747564,41.777628186986476],[-87.57065946167286,41.77767902814265],[-87.5706617513399,41.7776806901898],[-87.57080122385203,41.777782057203545],[-87.57088535703195,41.777846159847236],[-87.57092766748461,41.77787839731749],[-87.57113319645262,41.77804081535074],[-87.57114269700043,41.77804832335888],[-87.5712536669796,41.7781511470133],[-87.57129427789211,41.778188979377326],[-87.57137768540477,41.778266681097804],[-87.57145134642126,41.77834533597633],[-87.571471818964,41.77836719689219],[-87.57156598455182,41.77846496908257],[-87.57158072008436,41.778475499471426],[-87.57167141576966,41.77854031300793],[-87.57172345094979,41.77855344965502],[-87.57175402697067,41.77856116868089],[-87.57177680171245,41.77856725966583],[-87.57182346662346,41.77857974045915],[-87.5718847948566,41.778664122139105],[-87.5719360502575,41.77873996788356],[-87.57193951294919,41.77874509218756],[-87.57193956376022,41.77874516689449],[-87.57201991047422,41.77883351737032],[-87.57207772970071,41.77890470311451],[-87.57208239694349,41.77891883555851],[-87.57209825878017,41.77896685975072],[-87.5720868067307,41.779005204428266],[-87.57209514434685,41.779044227996884],[-87.57212585397748,41.77911358777916],[-87.57216900907481,41.77918467658386],[-87.57223815748894,41.779227945034506],[-87.57228848651746,41.779244722218486],[-87.57237254845951,41.77927274360692],[-87.57239673111923,41.779280655298074],[-87.5724770009834,41.77930691655474],[-87.57258972073444,41.779324128753316],[-87.5726652087198,41.77932737261801],[-87.57274091278543,41.77931971563658],[-87.5727466985637,41.779319130440044],[-87.57283514426948,41.779280747098824],[-87.57292348503796,41.7792511441627],[-87.57301535634228,41.77923309135132],[-87.57312539064928,41.779221207065135],[-87.57312548683225,41.779221196450024],[-87.57377461930584,41.779618764483615],[-87.57369617082189,41.7796388103688],[-87.5734033318295,41.77970756235144],[-87.5733755761613,41.779714078648674],[-87.57302488121857,41.779792440244684],[-87.57298534546895,41.779807151135344],[-87.57297995422853,41.77980915720223],[-87.5729600966072,41.77982041565756],[-87.572954176487,41.779823772253586],[-87.57295416135564,41.77982378066072],[-87.57295414695423,41.77982378934712],[-87.57295411669473,41.779823805886984],[-87.57295166846198,41.77982733036082],[-87.57293248392898,41.77985494729171],[-87.57292885993066,41.77988472296045],[-87.57292761096419,41.77989498134293],[-87.57307959792074,41.780250549299026],[-87.5726673938806,41.78038338844597],[-87.57239200209662,41.78047353419574],[-87.57205272750413,41.78058458950082],[-87.57168192681652,41.78070646434873],[-87.57165005691786,41.780716939299474],[-87.57147058053464,41.78077649863256],[-87.57128197047116,41.78083908826075],[-87.57117876272375,41.780865287719664],[-87.57104808344467,41.78089846052896],[-87.57087825288647,41.78093575268425],[-87.57077958167953,41.78095774087295],[-87.5707492771751,41.7809644937351],[-87.57068930043573,41.78097785900882],[-87.57064932233483,41.780987125881964],[-87.57054273887859,41.781011832517564],[-87.57053047436708,41.78101467539359],[-87.57044679521692,41.781032772649546],[-87.57037535439038,41.78104822302877],[-87.57026684266107,41.781074497858874],[-87.57022312701882,41.78108508308548],[-87.5700848441829,41.78112093842011],[-87.5699465872429,41.7811545975082],[-87.56989233663113,41.78116840629458],[-87.56982890613268,41.781184551453634],[-87.56979361089371,41.78119276927421],[-87.56949433655784,41.781262460266845],[-87.56945901758598,41.78127140396447],[-87.5691162894526,41.781358191171634],[-87.5691161596855,41.78135821994667],[-87.5683055624625,41.78153885715133],[-87.56753232043381,41.78459664446816],[-87.56764386869334,41.78462200999435],[-87.56839684263026,41.781608405811006],[-87.56901052001567,41.78145491129366],[-87.56913676094686,41.78142526650684],[-87.56913678153597,41.78142526170409],[-87.56913680212837,41.78142525662693],[-87.5693204228946,41.78138213687223],[-87.56934215141102,41.781377034301286],[-87.56949775003494,41.78134049448847],[-87.56968346015535,41.781296883095386],[-87.56976054700972,41.781290981544956],[-87.5697910593215,41.781288645606416],[-87.56979247475496,41.78128853700962],[-87.56981858762111,41.78128503376828],[-87.56986224811776,41.78127917618475],[-87.56997490137749,41.78128930393809],[-87.56998750671389,41.781290437386],[-87.57001153585372,41.78129531859176],[-87.57007967853576,41.781309161533386],[-87.5702187843783,41.781327649622774],[-87.57032633537531,41.78134812257525],[-87.57049691753504,41.78137120968776],[-87.57060592865847,41.781392240656785],[-87.57076606986558,41.78143007719017],[-87.57090209371513,41.78146116798175],[-87.57093163470886,41.78146750821302],[-87.57103667688126,41.781490052526614],[-87.5711917968132,41.78151852457748],[-87.57135045996507,41.78155744793047],[-87.57142397788138,41.781579806941586],[-87.57149805407471,41.78160233563714],[-87.57154910939104,41.78161823347428],[-87.57165294066402,41.78165056464714],[-87.57181155284535,41.781693877881985],[-87.57194708074326,41.7817322076901],[-87.57198841748108,41.781743898422],[-87.57201174547538,41.781750366522736],[-87.57213240362324,41.78178382086579],[-87.57223799961528,41.78181523426223],[-87.57230412421794,41.78183490537268],[-87.57240309320424,41.78186948415827],[-87.57247865979747,41.78189588659588],[-87.57253713691732,41.78192087062842],[-87.5726143680083,41.78195386589363],[-87.57264897351544,41.78196644295075],[-87.57284509841458,41.782037722893904],[-87.5731006166085,41.782133816951],[-87.57326664256226,41.782204343465864],[-87.57332899304618,41.78223082942143],[-87.57337722531693,41.78224486964756],[-87.57342377907032,41.78226583602901],[-87.57346256744248,41.78228330530383],[-87.57355451792189,41.78232396658312],[-87.57357344931556,41.78233233808919],[-87.57370397418048,41.78239467349809],[-87.5737081560607,41.782396641633994],[-87.57384471974622,41.782460918053715],[-87.57391028862733,41.78249161412175],[-87.57397671810843,41.78252271348775],[-87.57401188597838,41.78254103270022],[-87.57406636330754,41.78256941054202],[-87.57411437493734,41.782586307173176],[-87.57412040332363,41.782588428553396],[-87.57413348224526,41.78259438720861],[-87.57420719989828,41.78262797098173],[-87.57430409337404,41.782681850064066],[-87.57441482308982,41.78274405387347],[-87.57445287869233,41.78276136950679],[-87.57452131347529,41.78279250787464],[-87.57464371660934,41.78285972800637],[-87.57477125164837,41.78292698161921],[-87.57488055381131,41.78298588268477],[-87.57491712100611,41.7830061593003],[-87.57496870795387,41.783034764068304],[-87.57505904549146,41.783089073995356],[-87.57508594009657,41.78310524273393],[-87.57518928670167,41.78317178709622],[-87.57525994182602,41.78320981959831],[-87.57532554247933,41.78324513095378],[-87.57532554684977,41.78324513345247],[-87.57532555049664,41.78324513512311],[-87.57545238070585,41.78331018872252],[-87.57555584969921,41.78336630555334],[-87.57558542311484,41.78337972121466],[-87.57567985111264,41.78342255798136],[-87.57576600596755,41.78345901261674],[-87.57581557118606,41.783479984987885],[-87.57584413386816,41.783494394758435],[-87.57590596524196,41.78352558755291],[-87.57597229722329,41.7835595048725],[-87.57600334691763,41.78357591648926],[-87.57604590408341,41.78359841037111],[-87.57605523327405,41.78360763613296],[-87.57609953032545,41.783651439309025],[-87.57609953431317,41.78365144317731],[-87.57609953830088,41.78365144704559],[-87.57609954517964,41.78365145450051],[-87.57609960455802,41.78365158085456],[-87.57613030647806,41.78371697068708],[-87.57618608693885,41.783837538828095],[-87.57631658956932,41.78408922620297],[-87.57638250083902,41.784221386171396],[-87.57640831771386,41.78428751048931],[-87.57643019618958,41.7843435463844],[-87.5764569272518,41.78440106597222],[-87.57649313615399,41.784478979574324],[-87.57653183049004,41.78455756981241],[-87.5765430210415,41.78458029814859],[-87.5765488420359,41.78459212703838],[-87.5765611762521,41.784617191157515],[-87.57661817959163,41.784758623414405],[-87.57668461819749,41.784908349814465],[-87.57669620906121,41.78493383932564],[-87.576748954799,41.78504983002573],[-87.57681817871395,41.785212198117996],[-87.57688384342482,41.78538529153983],[-87.57692985212474,41.78550657212645],[-87.57699663882393,41.78568923230193],[-87.57704263798703,41.78583114018406],[-87.57709362844679,41.78598515575031],[-87.57714453567168,41.786146305879846],[-87.57714456890433,41.786146410930236],[-87.57718798482469,41.786284257214845],[-87.57719685058271,41.786312404958636],[-87.57721114482213,41.78636699337883],[-87.57724176947093,41.78648394389865],[-87.5772706976568,41.786643303004105],[-87.57728884950448,41.78672076213597],[-87.57730702479601,41.786798320486916],[-87.57731050251614,41.78681316140631],[-87.57732155678694,41.78693343376324],[-87.57733239794933,41.78707181698351],[-87.57733832529459,41.78719150646291],[-87.5773383243242,41.78719158905945],[-87.57733750465371,41.787323775783626],[-87.57733599557177,41.78739011383584],[-87.57733447120883,41.78745712797804],[-87.57733018429255,41.78757235965271],[-87.57732797237223,41.7876033285999],[-87.5773214065305,41.787695245488656],[-87.577310031178,41.787789574233415],[-87.57729216529377,41.78787452942394],[-87.57728717149514,41.78791050868434],[-87.5772769431375,41.787984200554824],[-87.57727681298263,41.78805769159066],[-87.57727681302363,41.788057719308185],[-87.5772768127012,41.78805774674889],[-87.57727671118288,41.788058522438355],[-87.57727376170868,41.78808110603712],[-87.57727358928791,41.7880824235302],[-87.57722134307826,41.788097447923306],[-87.57715232896369,41.7881041282485],[-87.5771493552882,41.78812046761808],[-87.57714684069349,41.7881342800552],[-87.57714649885924,41.78816336720165],[-87.57714994004355,41.78818259900869],[-87.57716513279225,41.78820026242263],[-87.57719022468072,41.78820895791143],[-87.57719580925672,41.78821089343882],[-87.5772610738388,41.78821132299641],[-87.57730002310052,41.78820444365067],[-87.57731561605878,41.78818808029888],[-87.57731954052687,41.78816615268758],[-87.57751035533568,41.78815423544854],[-87.57758370597222,41.788153071453614],[-87.57759948093559,41.788153017983774],[-87.57763871024659,41.78815288471454],[-87.57763891749524,41.78815634414854],[-87.57764054996989,41.788183631959825],[-87.57764768339015,41.788190004181885],[-87.57766159607613,41.7882024315258],[-87.57774763815233,41.78820406829883],[-87.57774765022411,41.78820416442812],[-87.57774840996348,41.78821041211944],[-87.57775900520693,41.7882975408818],[-87.5777590058887,41.78829754527714],[-87.57775900620378,41.78829754967007],[-87.57775900720387,41.78829755818392],[-87.57773673892294,41.78829842737849],[-87.57768666833319,41.788309598226],[-87.57766982751912,41.78831335551566],[-87.57766972538639,41.78831515180012],[-87.57766705359009,41.788362185225495],[-87.57756491789503,41.788368915762256],[-87.5773338467414,41.78838414260366],[-87.57732587703714,41.78837585703355],[-87.57731502566817,41.788363162195246],[-87.57729210882314,41.788357154802846],[-87.57728066283148,41.78835415434267],[-87.57725688905091,41.78835314001422],[-87.57721982413659,41.78835155850057],[-87.57720306431368,41.78835413072469],[-87.57718896664863,41.788356294556415],[-87.5771815367848,41.78836447904847],[-87.57717910336372,41.78836854432825],[-87.57717107899275,41.788381948922755],[-87.57717107151451,41.788381961222804],[-87.57717106403629,41.788381973522846],[-87.57715037080125,41.78839555817615],[-87.5768509791264,41.78841060214953],[-87.57668143560198,41.78842210871784],[-87.57668143258566,41.78842217812832],[-87.57667938168278,41.788472041405875],[-87.5763174323397,41.78850588190712],[-87.57632034346526,41.7885701164767],[-87.57632130629712,41.78857040411042],[-87.57638977013355,41.7885908816468],[-87.57646037795364,41.788635804791106],[-87.57654996926536,41.78868798698758],[-87.5766497485828,41.788746823596576],[-87.57675163879436,41.788813357462615],[-87.57679873834066,41.788845159386035],[-87.57687969563861,41.78889982210225],[-87.57696787435928,41.78895771979165],[-87.57701141977795,41.78898631156613],[-87.57707085582072,41.789023999028],[-87.5771242528519,41.78905785685223],[-87.57724722221779,41.7891404455955],[-87.57731088490335,41.78918510021728],[-87.57734832877173,41.789211364074745],[-87.57746255079013,41.78928950471904],[-87.57750997114184,41.789323804933716],[-87.57756363202068,41.78936261909014],[-87.57756364874528,41.78936263127501],[-87.57756366547312,41.78936264318547],[-87.57768433044272,41.78944974134476],[-87.57768871337113,41.78945290524282],[-87.57781664386103,41.7895503454043],[-87.57784299360621,41.789575698032564],[-87.57794645291666,41.78967524114423],[-87.57807435883952,41.789774876005986],[-87.57818613191967,41.7898744046763],[-87.57820865901293,41.789892115611394],[-87.57823042665092,41.78990736212457],[-87.57823042847134,41.78990736323425],[-87.57823051211828,41.789907422237285],[-87.57827194304048,41.78993644091297],[-87.57830958709988,41.78997840141691],[-87.57833494033191,41.79000467796757],[-87.57834817977137,41.790018399394825],[-87.57837407466026,41.79004523686018],[-87.57842327755687,41.79010209268531],[-87.57845036392719,41.79016315119917],[-87.57846186011564,41.79018906552793],[-87.57848701297637,41.79026162605904],[-87.57849732916317,41.79029138560185],[-87.57853140928194,41.790387109986646],[-87.57853463987038,41.79039433056189],[-87.578582149467,41.79050050831932],[-87.57863235576698,41.7905788128141],[-87.57863904658731,41.79058924826699],[-87.57867844067914,41.79066963953725],[-87.57870015795888,41.79069393215352],[-87.57876162923291,41.79076788296528],[-87.57878728286325,41.79080138680548],[-87.57881146945904,41.79083297482625],[-87.57882712074768,41.79085296680447],[-87.57884615297954,41.790877276335266],[-87.57884945879812,41.79088149515125],[-87.57885121070144,41.790883730897455],[-87.57888011994852,41.79092014527795],[-87.57894503880269,41.79100083526018],[-87.5789618027435,41.7910216712577],[-87.57896939340215,41.79103230634603],[-87.57902241296411,41.7911065933982],[-87.57910621408915,41.79121526749057],[-87.57911988992149,41.79123731180416],[-87.57917050353711,41.791299116268576],[-87.57924468925893,41.79139351395027],[-87.57927456117218,41.791431524584866],[-87.57929015318985,41.79145907001805],[-87.57931691184437,41.791506312275956],[-87.57932262170507,41.79151639245086],[-87.57933238195902,41.7915336239135],[-87.57934569683188,41.791557130452965],[-87.57936834670258,41.791592416065484],[-87.57938739352204,41.79162208792546],[-87.57940619762871,41.79165138194832],[-87.57944875215641,41.79171258426469],[-87.57950412015238,41.791806802296506],[-87.57954725354126,41.791881180648495],[-87.57958463556446,41.79194564265824],[-87.57961067285169,41.79199636836697],[-87.57961403400213,41.79200291604584],[-87.57962814391963,41.79203554591558],[-87.57962793813188,41.792036302810246],[-87.57961141142285,41.79209706198175],[-87.57960290565468,41.79212279418252],[-87.57959818154437,41.792137085040196],[-87.57958966207956,41.792162858588554],[-87.57957446571797,41.79219754456151],[-87.57957446496212,41.792197546477546],[-87.57955948448067,41.79223173961977],[-87.57952084217317,41.79230684483561],[-87.57946972425667,41.792372448424246],[-87.57940609319219,41.79243168985466],[-87.57935475391191,41.79251613197411],[-87.57932472345061,41.79257245388028],[-87.57931095924819,41.792672842082375],[-87.57930761961124,41.792707886580644],[-87.57930461191856,41.7927394515885],[-87.579301390566,41.79277325781986],[-87.5792898021141,41.792826514927945],[-87.57928365187453,41.792854780166095],[-87.57927996988877,41.792918467765084],[-87.57927838946209,41.79294580442164],[-87.57927800788937,41.79297835923849],[-87.57927750625105,41.79302115766635],[-87.5792765494406,41.79310278988965],[-87.5792852475829,41.79314589321976],[-87.57929241142597,41.79318139277935],[-87.57929477514189,41.79321553644098],[-87.57929958822173,41.793285058428594],[-87.57930097183855,41.79333737020212],[-87.57930249546521,41.793394976062146],[-87.57930175515732,41.793458138224985],[-87.57930142827249,41.79348602757261],[-87.57929945340193,41.79351222523122],[-87.57929945298699,41.79351222934491],[-87.57929945293874,41.79351223346101],[-87.579296460224,41.79355193398153],[-87.57928668692892,41.793583534159346],[-87.57927881637282,41.79360898207469],[-87.57927029325496,41.79363654072264],[-87.57923606618729,41.79369283532101],[-87.57921827647907,41.793728469101815],[-87.57921827384793,41.79372847457309],[-87.57920169183951,41.793761688688875],[-87.5791631589573,41.7938273747391],[-87.57914605519366,41.79385704255515],[-87.57912889488613,41.793886808791335],[-87.57910906766602,41.79391192626791],[-87.57908204418918,41.79394616046656],[-87.57906036728204,41.79400567714095],[-87.57904704122818,41.79404598818834],[-87.57904704047228,41.79404599010437],[-87.57904704008307,41.79404599202281],[-87.57903861633919,41.794071473334895],[-87.57902544701085,41.794127564469605],[-87.57901211747108,41.79418433787592],[-87.57901163177087,41.79419952043432],[-87.57901162656265,41.794199683135915],[-87.578989536921,41.7942233304426],[-87.57896426532034,41.79424791021241],[-87.57893908794,41.79427239674092],[-87.57889464452055,41.794308526130244],[-87.5788339371548,41.794357876551956],[-87.57881311199486,41.79437544476728],[-87.57880504727147,41.79438224810557],[-87.57876874989954,41.79441288256495],[-87.5785741125332,41.794561442144754],[-87.57843299317189,41.79464942898621],[-87.57842486980392,41.79465441080795],[-87.57830371062522,41.79472871285417],[-87.57811204492288,41.79481142763708],[-87.57799484099255,41.79485680128649],[-87.57791826879077,41.79488644478614],[-87.5778769112578,41.79490260336431],[-87.57782985031963,41.79492099009516],[-87.57770281449234,41.79496118564139],[-87.57760384281255,41.79499250132012],[-87.5774776245505,41.795019645810775],[-87.57738839927106,41.795038834244956],[-87.5770805811323,41.795081814397754],[-87.57691454427446,41.79510541973083],[-87.57685295329043,41.79510391617042],[-87.57678063754986,41.795078741691796],[-87.576714891552,41.79505635444394],[-87.57665120264228,41.79504605553788],[-87.57661890167722,41.79504858649796],[-87.57660228501008,41.795054207642615],[-87.57656956381734,41.795065276566916],[-87.57654443526297,41.79507375577943],[-87.57651212785278,41.795084656993524],[-87.576458454556,41.795095829069744],[-87.57645841866841,41.795095824716874],[-87.57645838314752,41.79509582036641],[-87.57644815679822,41.79509456718486],[-87.57639693425665,41.7950882888648],[-87.57637917815748,41.795084653424375],[-87.5763581547267,41.79508034962441],[-87.57634724677172,41.79507852469986],[-87.5763274101925,41.79507520677635],[-87.57626313277544,41.79507443987346],[-87.5762247430643,41.7950739815928],[-87.57616592954588,41.79508566905925],[-87.57615515831041,41.7950893961459],[-87.57609744020473,41.79510936726946],[-87.5760697347795,41.79512892259199],[-87.57604197128506,41.795148518414706],[-87.57604187843074,41.79514858695842],[-87.57597302264236,41.79519960088094],[-87.57594504442622,41.79522032892602],[-87.57586844398682,41.79527903800019],[-87.57582292321968,41.79531392635658],[-87.57578084813908,41.79533670111715],[-87.57576137581715,41.79534601329883],[-87.57575421296134,41.79534943894677],[-87.57574206318013,41.79535524914163],[-87.57573727392858,41.795357539491484],[-87.57573216714526,41.79535998115224],[-87.57565047553908,41.79538390651884],[-87.57563869606432,41.79538735632074],[-87.57557916813306,41.79540368319138],[-87.57551949301197,41.79542004994983],[-87.57544371441476,41.795439858239604],[-87.57540669528001,41.79546925166539],[-87.57540522496194,41.79550237913477],[-87.57540369938329,41.79553674171378],[-87.57539340558239,41.795570341984195],[-87.57538691883602,41.795591516029546],[-87.57537538130892,41.795634309933945],[-87.57536697761189,41.79566547998971],[-87.57535534906127,41.79571864200026],[-87.57532641263177,41.79580901227212],[-87.57531207140453,41.79584349610368],[-87.57529262376329,41.79588464749166],[-87.57527897376687,41.795913530964675],[-87.57520040786851,41.796045287000965],[-87.57518139336638,41.79610279109132],[-87.57517467781919,41.79613524616591],[-87.57516506161885,41.7961817190817],[-87.57516436913284,41.79624044180225],[-87.57519601996175,41.79635536181679],[-87.57520705932102,41.796369763649295],[-87.57521335679903,41.79637797904395],[-87.57521593608699,41.79639564699203],[-87.57522217955186,41.79643841167475],[-87.57522383851993,41.79645550520877],[-87.57522937382008,41.79651255440152],[-87.57527223377384,41.796608295876794],[-87.57527224342581,41.79660831707143],[-87.57527225271107,41.796608338263646],[-87.57528841329598,41.79662378707045],[-87.57531205201337,41.79664638466968],[-87.57531214340067,41.79664647199191],[-87.57535050159275,41.79666801521208],[-87.57539520882725,41.79669312423837],[-87.5754152019778,41.796704325746994],[-87.57548046129675,41.79674088856442],[-87.5755032131245,41.796761109765235],[-87.57553272349134,41.79678733749125],[-87.57557763876167,41.796834834819336],[-87.57559744937979,41.796850174836145],[-87.57562124852204,41.79686860294936],[-87.57564624706038,41.79688228450612],[-87.57566727309694,41.796893791909724],[-87.57570651506035,41.79691526893942],[-87.57573640698442,41.796927889154574],[-87.5757619819343,41.7969386866833],[-87.57586904197463,41.79697281770722],[-87.57588328231391,41.79697735733597],[-87.57589767444998,41.79698046709706],[-87.57594882499944,41.79699151938675],[-87.57599594954341,41.797001701520166],[-87.5761006643972,41.7970234467575],[-87.57613789512811,41.797031178012716],[-87.57631592615826,41.797048267907314],[-87.57632839486996,41.79704835007487],[-87.57644717471327,41.797051877307034],[-87.5764841308634,41.79704841519896],[-87.57650738541108,41.797046236321094],[-87.57655900178551,41.79702297557814],[-87.57658989577287,41.79701549511877],[-87.57668390138785,41.797005137234656],[-87.57676118014422,41.79698861578087],[-87.57683831693917,41.79697212517374],[-87.57695091582845,41.796939935285245],[-87.5770448950691,41.796913995741235],[-87.57706938869755,41.79690723510114],[-87.57723560397072,41.7968688116292],[-87.57731642653918,41.79685671988863],[-87.57735072527466,41.79685715088368],[-87.57740809615662,41.79685787145847],[-87.57755324765813,41.79686431535912],[-87.57763050558584,41.796874100660546],[-87.57768580691562,41.79688110450379],[-87.57783074469275,41.79690565861248],[-87.57798804098337,41.79693962462282],[-87.57805236193117,41.79695870836045],[-87.57810864154196,41.7969755443218],[-87.57813337146641,41.79698466559966],[-87.57821015350864,41.79701298471036],[-87.57827803294323,41.79704507132757],[-87.57829257795014,41.797051946394916],[-87.57831602625703,41.79706631148445],[-87.57836321638332,41.79709522113293],[-87.57839188799672,41.7971175643982],[-87.57842572296973,41.79714393122001],[-87.57844514279059,41.797161231434856],[-87.57846854988225,41.79718208369672],[-87.57856831901792,41.79724311365989],[-87.57863166557183,41.797282147064074],[-87.5786342266681,41.79728372538441],[-87.57866735492954,41.797304138719184],[-87.5787204825194,41.79734264088286],[-87.57875753819393,41.797369495564936],[-87.5787699090702,41.797377892263064],[-87.57881314863599,41.7974072521829],[-87.57885140839032,41.79743323053665],[-87.57889290482487,41.79745984814613],[-87.57895110177654,41.79750084593666],[-87.57901297196096,41.79754131841328],[-87.57906242597474,41.797577319309696],[-87.57914171887701,41.797633274347206],[-87.57914185661772,41.79763338118067],[-87.57914186715897,41.79763338920828],[-87.57914187806372,41.797633397512705],[-87.57921222303617,41.79768807364831],[-87.5793343304339,41.79778327808867],[-87.57939680512409,41.797838145320604],[-87.579467189375,41.79789995887558],[-87.57949911900619,41.79792925721132],[-87.57951974884769,41.79794846696831],[-87.57954482893531,41.79797181987107],[-87.57958874681046,41.79800911271681],[-87.57960801354844,41.79802547318584],[-87.57965657372111,41.798075188801995],[-87.57965658205259,41.79807519763835],[-87.57980191148177,41.798227398086965],[-87.57983187369747,41.79825877675891],[-87.57983188021792,41.79825878366237],[-87.57983188710189,41.79825879084265],[-87.57983336236964,41.798260335943084],[-87.57993572417136,41.798367536359464],[-87.57993573540448,41.798367547959096],[-87.57993573721876,41.798367549617566],[-87.5799362726864,41.79836811104116],[-87.5799372613999,41.798369146081015],[-87.57978774619096,41.79844117252122],[-87.57984880488364,41.798561778175355],[-87.5798772202508,41.79862300251106],[-87.57987722132201,41.798623004987924],[-87.57993111142143,41.79873911866924],[-87.57997937734113,41.79884311320733],[-87.58004259378814,41.7989760086056],[-87.58004260274072,41.79897602705096],[-87.58007393904512,41.799041901731606],[-87.58011002911466,41.79911777122267],[-87.58014086758438,41.7992108872596],[-87.58017876157527,41.799325304250615],[-87.58018760723935,41.79935201220041],[-87.58020825433663,41.79941168110264],[-87.58020826569249,41.799411713559564],[-87.58022901994916,41.79947169298901],[-87.58026125449345,41.799564849151444],[-87.58028256509213,41.799626435698336],[-87.58029374217269,41.799678148313134],[-87.58032299985395,41.7998135136075],[-87.58034182813802,41.79990062485877],[-87.58035009244864,41.79995388370844],[-87.58035895426309,41.80001099120613],[-87.58035895528938,41.8000109975247],[-87.58038251146628,41.80016280151601],[-87.58040337570317,41.80029725637189],[-87.58041651575867,41.80038193539007],[-87.58042803107107,41.800476457083654],[-87.58044094273878,41.80058243787375],[-87.58045566846263,41.80069891039497],[-87.580465448399,41.80077626238877],[-87.58047385246554,41.80086064909918],[-87.58047385343724,41.80086066008265],[-87.58048142069948,41.80093664025212],[-87.58049030820345,41.801030049467755],[-87.58049731526955,41.80110369634606],[-87.58049764663573,41.801150271914075],[-87.58049848983204,41.801268737989375],[-87.58049921307482,41.801370380585524],[-87.5804999926453,41.80147993200551],[-87.58050068966492,41.801577861694284],[-87.58049606236688,41.80164650112733],[-87.5804898896592,41.801738064350204],[-87.58047633998363,41.80185083172433],[-87.58047633916344,41.801850839128505],[-87.58046932025508,41.801909256918776],[-87.58046022448445,41.80198495854498],[-87.58045208441462,41.80209725861427],[-87.58044958027268,41.80213180581372],[-87.58043032455069,41.802251885222766],[-87.58042351323557,41.802296541546816],[-87.58042350963296,41.8022965673194],[-87.58041099058296,41.80237864176047],[-87.58039585120234,41.80244312138601],[-87.58037662084516,41.80252502285026],[-87.58036929932986,41.80255620554525],[-87.5803640233003,41.80257867594709],[-87.58034647887413,41.8026767105284],[-87.58034647417769,41.80267673574495],[-87.58033537397657,41.80273876155908],[-87.58028926626282,41.802865342831744],[-87.58044323144225,41.802929495917496],[-87.58044752295947,41.802931283948915],[-87.58040896551884,41.80299496709864],[-87.58040896439934,41.80299496873788],[-87.58040896327343,41.802994970925916],[-87.58019069626714,41.803355470285325],[-87.58011031115797,41.803472041192585],[-87.5800875334362,41.803484707602465],[-87.580059823944,41.80350189716532],[-87.5800299596594,41.803546515621754],[-87.58001727558921,41.80358669069089],[-87.58001469159747,41.80365069769537],[-87.58001880881154,41.803715681698684],[-87.58002479022197,41.80376999830354],[-87.58002489964369,41.803770989704574],[-87.58002490892893,41.80377107374029],[-87.58004552960236,41.80383613879872],[-87.58006759997124,41.803865148365034],[-87.58011477351228,41.80392715312337],[-87.58015350365235,41.80395636988122],[-87.58017716058126,41.80397421541343],[-87.58020246486971,41.80398756811085],[-87.58025615223005,41.80401589742751],[-87.58033219184142,41.804046582934376],[-87.58033232418282,41.804046651036636],[-87.58033248933855,41.80404673581967],[-87.58033619680582,41.804048636383754],[-87.58043792157493,41.804100789332],[-87.58054547975738,41.80415547414131],[-87.58066592788691,41.804205660094375],[-87.58066608778834,41.804205661142085],[-87.58066609255606,41.80420566117333],[-87.58066623888787,41.80420566213213],[-87.58070383259975,41.80420590817519],[-87.58070383516699,41.80420590819202],[-87.58070385020359,41.80420590829053],[-87.58070526180032,41.80420573037963],[-87.58079016877504,41.80419503100617],[-87.58084802190848,41.80419440751393],[-87.58084864110158,41.804194400867395],[-87.58089471268245,41.804193904622515],[-87.5808947335613,41.80419390695469],[-87.58089474527792,41.80419390867801],[-87.58103200895488,41.80421126430605],[-87.58103204997269,41.80421126951439],[-87.58110504792326,41.80423291305851],[-87.58112035645767,41.8042374518955],[-87.58116966959128,41.804254707255936],[-87.58123513999182,41.804291494559486],[-87.58126929083696,41.804310683837606],[-87.58136691899517,41.80437718557734],[-87.58136697689827,41.80437725236784],[-87.58144049474721,41.80446183411705],[-87.58150553635787,41.80454549397427],[-87.58153492473785,41.804570933923195],[-87.58156573941979,41.80459760742009],[-87.58156622777598,41.80459803158793],[-87.58156631857139,41.80459810847299],[-87.58159952478788,41.80462621475567],[-87.58162615377381,41.80464875403643],[-87.58174245438441,41.804740076120865],[-87.58201337524957,41.804939436496824],[-87.58225337918388,41.805116639884226],[-87.5823747923366,41.80520066698878],[-87.58238010467004,41.80520435132891],[-87.58240204378016,41.80521969775993],[-87.5824619612682,41.805261611139436],[-87.58250147634261,41.80528793839482],[-87.58251206799702,41.80529499564648],[-87.58259821494111,41.8053523918008],[-87.58261241810223,41.80536185467666],[-87.58266752211347,41.80540217472365],[-87.58267023622057,41.80540416065395],[-87.5827215202616,41.80544168509193],[-87.58281796866987,41.80550589985914],[-87.58284658907114,41.805526136246684],[-87.58286889681384,41.80554190871248],[-87.58288093072959,41.80555861544129],[-87.5828983497944,41.80558279872515],[-87.58290105371042,41.80558292478826],[-87.5829551701658,41.80558544710977],[-87.58297421105831,41.80558924058574],[-87.58297895609512,41.80559018597354],[-87.5830010379166,41.80560473573552],[-87.5830602694458,41.805643764478674],[-87.58311717540089,41.80568941612938],[-87.58319828678769,41.80576039137086],[-87.58325072995245,41.80578698473558],[-87.58331434751652,41.80581924524142],[-87.58336532840305,41.805850713815296],[-87.58341693205736,41.80588256678857],[-87.5834333395686,41.80589560602187],[-87.58345930603166,41.80591624151142],[-87.58353941688425,41.80596616139149],[-87.58360411711938,41.80600481088861],[-87.58364931084054,41.80603180791427],[-87.58368261132344,41.8060604010401],[-87.58371168083747,41.80608431719562],[-87.58380308237591,41.80615951508758],[-87.58390302316184,41.80623884551206],[-87.58405361824055,41.80632764387999],[-87.58417029408216,41.806387407054636],[-87.58425646158632,41.80644010993272],[-87.58432254786251,41.80648809914434],[-87.58433649886693,41.806496423483296],[-87.58435105195862,41.80650658986139],[-87.58437179705385,41.80652400883795],[-87.58439769174505,41.806545752332994],[-87.58445155042416,41.80657782179479],[-87.58449480401843,41.80660357667741],[-87.58452390446203,41.8066243481635],[-87.58457013241004,41.80666613579721],[-87.58460136219792,41.80669436581113],[-87.58467031739433,41.806757467030735],[-87.58467033842366,41.80675748802428],[-87.58472469777819,41.806812267844975],[-87.58474211932248,41.80682536207215],[-87.58481861814631,41.806882858882396],[-87.58485265621755,41.806908353796004],[-87.58489497831326,41.806940053142156],[-87.584914582391,41.80695938173562],[-87.5849505689924,41.80699486173398],[-87.58501276012845,41.80706250134135],[-87.58509467392673,41.80714885031765],[-87.58515769804364,41.80721528641826],[-87.5852177474288,41.80730944936948],[-87.5852333298837,41.807328427068306],[-87.58527438393236,41.8073784250682],[-87.58530980987041,41.80742149525656],[-87.58533225306533,41.807448780902],[-87.58536430593439,41.80749022123843],[-87.58538949158019,41.807522782484554],[-87.58540417376672,41.8075429491548],[-87.58545808724779,41.80761700040372],[-87.58547884038383,41.80766415453805],[-87.58548143261042,41.80767004416111],[-87.58548350668225,41.80767475613584],[-87.58549321448251,41.807696813596195],[-87.5855285285516,41.807760600609555],[-87.58554764834797,41.807788996863714],[-87.58558142382209,41.807839157305125],[-87.58558330815609,41.807842049961295],[-87.58558621663552,41.807846515166865],[-87.58561080094115,41.807847537721386],[-87.58562533441707,41.80784814193487],[-87.58566689123177,41.807901926045346],[-87.58569190549096,41.807958812450096],[-87.58569190583539,41.80795881437332],[-87.58569840448278,41.807977132162684],[-87.58568675115346,41.80798254513831],[-87.58568674022028,41.807982602148044],[-87.58568493019918,41.807992181879165],[-87.58568346764406,41.807999922463964],[-87.58570114713055,41.80805942663925],[-87.5857052470215,41.80807322628534],[-87.5857635007419,41.80816416645249],[-87.5858321868034,41.80825061898206],[-87.58590203659682,41.80834116800968],[-87.5859032306237,41.80834254791585],[-87.58591471327003,41.80836315089588],[-87.58592421436211,41.80838019812412],[-87.5859680982042,41.808460946305416],[-87.58603104412856,41.80853641143942],[-87.58610089001802,41.80864625283564],[-87.58610479540715,41.80865224374245],[-87.58610687261506,41.80865542990949],[-87.58613078112926,41.808690739303074],[-87.5861353268948,41.80869790343489],[-87.58614817895074,41.80871815854264],[-87.58614196663193,41.80873569301083],[-87.58613938059845,41.808742992148524],[-87.58612858621164,41.80876134643787],[-87.58612269153768,41.80877136832663],[-87.5861158967105,41.80878060306497],[-87.58610476530231,41.808795730912564],[-87.58610320008225,41.80880883643759],[-87.58610167600027,41.808821589865445],[-87.58610374783335,41.808832245910224],[-87.58610541503037,41.80884082355423],[-87.58610983496251,41.80885064140417],[-87.58611760784802,41.80886790624564],[-87.5861373269793,41.80891257819147],[-87.58614155315566,41.80892215163711],[-87.58614718544952,41.80893388875806],[-87.58616422238148,41.80896939109982],[-87.58620150798426,41.80904677542108],[-87.58620239385122,41.80904838191765],[-87.58622230741128,41.80908450670041],[-87.58624246145017,41.80909337060764],[-87.5862455535702,41.809094730198105],[-87.5862612726044,41.80909535466576],[-87.58629097906604,41.80909653470352],[-87.58628877553745,41.80912423451641],[-87.58628797267693,41.80913433096567],[-87.58628057252463,41.8091682292272],[-87.58627262390516,41.80919575802997],[-87.586295467719,41.80922580874608],[-87.5862961490992,41.809226704791776],[-87.58629625133766,41.80922683965164],[-87.58632936410196,41.8092461644647],[-87.58633943900449,41.80925204427418],[-87.58633957089421,41.809252121148226],[-87.58636540742984,41.80925568849146],[-87.58638838712469,41.8092588607378],[-87.58643223547176,41.80928280149278],[-87.5864672046308,41.80929120624913],[-87.5864672639533,41.80929127798595],[-87.58647584191547,41.809301581698605],[-87.58648362835184,41.80931093513659],[-87.58647666135018,41.809328802534445],[-87.58647421376304,41.80933507841629],[-87.58647419519156,41.80933509832874],[-87.58646112867582,41.809349106862236],[-87.58644141727902,41.809370239133],[-87.58643853427071,41.80938273729256],[-87.58643515956464,41.8093973664763],[-87.58645095993431,41.80943918216643],[-87.58646375084795,41.809461122097396],[-87.5864798029737,41.8094886563008],[-87.58651756238332,41.80955053872469],[-87.58652515741218,41.809562195006926],[-87.58652564572634,41.80956294462397],[-87.58654014854193,41.809585202759926],[-87.58654877138235,41.80959843681904],[-87.58656442314579,41.809616738867476],[-87.58658289730532,41.80963834113818],[-87.58660665778835,41.80967065820763],[-87.58664214344117,41.80971350799471],[-87.58665826571132,41.80972822303033],[-87.58667375752599,41.80974236288241],[-87.58671386938673,41.80976910611686],[-87.58673485881461,41.80978492908074],[-87.58674735873515,41.809794352104376],[-87.58676796338754,41.80982360193653],[-87.58677316522947,41.80983616143061],[-87.5867865175532,41.80986839929062],[-87.5868007823325,41.80989373354805],[-87.58681415474514,41.809917482675075],[-87.5868299841037,41.80994309054692],[-87.5868476392589,41.809971652416785],[-87.5868855373699,41.810034248579136],[-87.58689180220932,41.81004586463331],[-87.58692474913143,41.81010695246367],[-87.58694147478207,41.81015596628518],[-87.58694631699696,41.810170155727604],[-87.58694756027428,41.810173649032805],[-87.58695599441589,41.8101991706887],[-87.58696122626364,41.81021733499726],[-87.58696777049491,41.81024005481873],[-87.58697910423143,41.81027487068108],[-87.58698649073054,41.81030652775906],[-87.58699210321059,41.810330581004486],[-87.58699711292692,41.810352178050934],[-87.58700048710132,41.81036672321508],[-87.5870019343174,41.81037265091701],[-87.5870086461642,41.81040014631065],[-87.58701744860315,41.81044131298396],[-87.58702031019237,41.81046039082565],[-87.58702432563005,41.810487159579026],[-87.58702971215699,41.81054139396447],[-87.58703281353688,41.810566643586505],[-87.58703316344084,41.81056949057304],[-87.58703500887037,41.81060649508603],[-87.58703696446138,41.810637106158836],[-87.58703472234885,41.81065785036909],[-87.58703268986814,41.81067665107506],[-87.58703058860672,41.81068924241692],[-87.58702303162049,41.81073452019776],[-87.5870165175585,41.81076509627516],[-87.58701503944248,41.81077203654235],[-87.58700671283128,41.81083526564628],[-87.58700613341816,41.810837717456934],[-87.586996567558,41.81087817531466],[-87.5869887886757,41.81090685730758],[-87.58699257489337,41.81093770009004],[-87.587002873384,41.810963782707155],[-87.58699705619931,41.810990885767694],[-87.58699746312458,41.811008664986424],[-87.58699776256978,41.811021736255945],[-87.58701042047596,41.81104357975603],[-87.58701042008688,41.8110435816745],[-87.58700792023957,41.81106304812142],[-87.5870030164593,41.811067932899206],[-87.58699519172275,41.811075726288415],[-87.5869673485977,41.8110822145105],[-87.58695234576123,41.81108848374],[-87.58694563620746,41.81111039432379],[-87.58694102510236,41.811147384324336],[-87.58693432763725,41.81117450882919],[-87.5869404446789,41.8111973809242],[-87.5869594875058,41.81120505744603],[-87.58696879734272,41.81120881035629],[-87.5869688134049,41.81120881704691],[-87.58698610840378,41.81122619116945],[-87.586996243939,41.811250515569476],[-87.58699789352185,41.81127272827519],[-87.58698829753652,41.81130307219154],[-87.58698813412514,41.81131714897322],[-87.58699204195206,41.81132806967441],[-87.58701236147165,41.81135956104615],[-87.58704108289253,41.811404074511636],[-87.5870654419286,41.81142920592168],[-87.58709022478533,41.811442348707025],[-87.58709624824232,41.8114455429283],[-87.5871131829455,41.81145032259651],[-87.58349678446064,41.81246694260795]]],[[[-87.65891441713033,42.023461967711356],[-87.65751398965591,42.01986228802907],[-87.65541299191793,42.01346247651551],[-87.65081235036911,41.99836277785802],[-87.65038443987463,41.99679398681998],[-87.65021230834377,41.99616282842437],[-87.64987544071812,41.99498390864445],[-87.64922433941247,41.99270578242868],[-87.64901204435827,41.99196289941539],[-87.64891106569534,41.98426277819562],[-87.64571056283242,41.97816388515085],[-87.63541008118865,41.97076408051531],[-87.63427182836062,41.969851225780744],[-87.63145932118148,41.9675942418921],[-87.63147469834654,41.967566818694614],[-87.6314747141237,41.96756678833043],[-87.63153423025295,41.967452049923],[-87.63155354925873,41.96741480516366],[-87.63162690041219,41.96726127691245],[-87.6316946785887,41.96710634162554],[-87.63171211179014,41.96706249511057],[-87.63173918533846,41.96699440293396],[-87.63179314799294,41.966845118532085],[-87.6318186681703,41.966765630872594],[-87.63184142277133,41.96669475682333],[-87.63188393570935,41.966543426856546],[-87.63192068386407,41.966391266379134],[-87.63193395310667,41.96632570640421],[-87.63193506811892,41.9663201965465],[-87.63194069049317,41.96629242334538],[-87.631951629686,41.966238383563194],[-87.63197677280166,41.96608491671894],[-87.63199603741286,41.96593097488085],[-87.6320055077712,41.96582179728278],[-87.63200942272238,41.965776668089525],[-87.63201696301091,41.96562216011097],[-87.6319947614218,41.96506838239185],[-87.6319947672895,41.96506838379978],[-87.63211503233323,41.965101409198],[-87.63212057594671,41.96510293151369],[-87.63212069613087,41.96510296984334],[-87.6323936684872,41.96518975237885],[-87.63243673863886,41.965205220965245],[-87.63257873739288,41.965256221095984],[-87.63297965626624,41.965358584000214],[-87.63311139028433,41.96537537748023],[-87.63355209925247,41.96543155766458],[-87.6338467898878,41.96545906975685],[-87.63409581105167,41.96548231781093],[-87.63452878104134,41.96548528339393],[-87.63480731916584,41.96551227264214],[-87.63509418152557,41.9655400675966],[-87.6358704699605,41.9656679739134],[-87.63628896960634,41.96575153658683],[-87.636440011006,41.96578169495479],[-87.63742632769915,41.96603534171279],[-87.63802035938708,41.96623062386387],[-87.63851064887476,41.966400384917485],[-87.63900033932742,41.966567917723125],[-87.63949583250712,41.966685538472134],[-87.6401154339944,41.966829812100066],[-87.64032817387437,41.966884371342175],[-87.64043882521709,41.96691274881575],[-87.64048626511837,41.9669249147818],[-87.64063048990782,41.96700232337794],[-87.64070272527567,41.96704109297574],[-87.64092989041427,41.96717399290844],[-87.64100590085772,41.96721868978357],[-87.641117222394,41.96728415003376],[-87.64152678185064,41.96752495275678],[-87.64167850255254,41.967623258670216],[-87.6419725674745,41.96783004902637],[-87.64210701273075,41.96793715170245],[-87.64255778266741,41.96829624427198],[-87.642668897158,41.968215410272705],[-87.64265730699856,41.96820449847659],[-87.6426155460279,41.9681651843332],[-87.64261553292445,41.968165171905454],[-87.64263848777075,41.96815050833467],[-87.64280244494907,41.96804577123405],[-87.64281012120367,41.96804312781328],[-87.64282221603251,41.96804023407867],[-87.64283909909618,41.96803619462368],[-87.64286003975555,41.968034345569144],[-87.64286935362918,41.968033522892746],[-87.6428863058847,41.9680344829601],[-87.64289970819992,41.96803524193017],[-87.64292905996173,41.96804129104276],[-87.64292919727646,41.96804134455723],[-87.64296523770712,41.96805536709897],[-87.64311858381491,41.968180587507206],[-87.64327192941974,41.96830580770575],[-87.64327192793417,41.96830580906892],[-87.64316897835857,41.96838065439492],[-87.64301256698569,41.96849436701988],[-87.6428733145698,41.96837881125005],[-87.64274414913028,41.96827162515717],[-87.6426818182488,41.968315768834444],[-87.64262760900166,41.96835416064683],[-87.6426275011705,41.96835423711015],[-87.64279234170681,41.96849090236905],[-87.64314572373051,41.96877307323252],[-87.64325564561665,41.96886846689112],[-87.64329584535302,41.96890335297473],[-87.64345137647342,41.969038325778236],[-87.64353552169645,41.96911511389749],[-87.64358177118847,41.969157320164726],[-87.6436718961849,41.96923956637827],[-87.64367819018099,41.96924589856388],[-87.6436899997,41.96925778000201],[-87.64371137282511,41.96927928243099],[-87.64381262379976,41.9693811464309],[-87.64387979662439,41.9694487257215],[-87.64397292027436,41.96954241326657],[-87.64424033642456,41.96982820795803],[-87.64426982668154,41.96986356398345],[-87.64426985391007,41.969863596528455],[-87.64426985862808,41.96986360231959],[-87.64427089182428,41.969864840667455],[-87.64430574229641,41.96990662394324],[-87.64440341119128,41.97002372312539],[-87.64458709656516,41.97024493793976],[-87.64464663162913,41.97031664378406],[-87.6447795427817,41.9704870200396],[-87.6448413024618,41.970566189354905],[-87.64495194817196,41.970713420374125],[-87.64496726076537,41.970730736718124],[-87.64502747944869,41.97079883371855],[-87.64532292990648,41.97125172420796],[-87.64537251547256,41.97133112267947],[-87.64545043298455,41.97145588870483],[-87.64547441031517,41.97149631916056],[-87.6455725838164,41.971661859604055],[-87.64562981210736,41.971763698892865],[-87.6456893123587,41.97186958079564],[-87.6457400047778,41.97196493282931],[-87.64580061679169,41.97207894388906],[-87.64590642669741,41.97228989304532],[-87.64597719310936,41.97243976674528],[-87.64600505190353,41.97249876809936],[-87.6460567043052,41.972616392172554],[-87.64610160675717,41.972732364144726],[-87.6461027538879,41.97273532651536],[-87.6461305178537,41.972817882110704],[-87.64614312875297,41.9728553808054],[-87.64616881045967,41.97294507174364],[-87.64617779330196,41.972976442872096],[-87.64618151635817,41.97299217707436],[-87.64620663711044,41.97309834823082],[-87.64622970126173,41.973220932479784],[-87.64624519177619,41.97333174981786],[-87.64624691218289,41.973344057972035],[-87.64624763821509,41.97335195189209],[-87.64625827198066,41.973467559796326],[-87.64628736513106,41.97440112100343],[-87.6462873659688,41.974401145706246],[-87.64630848645265,41.97509467664435],[-87.64632098276236,41.97551449038398],[-87.64633150746619,41.97586807505308],[-87.64635006197456,41.97648992900544],[-87.64635556321649,41.976674308666205],[-87.64636059948326,41.9768430982179],[-87.64636075870865,41.97685038831014],[-87.6463608452817,41.976854378069206],[-87.64636346706595,41.97688870007819],[-87.64636574646218,41.976918539585604],[-87.64637148697778,41.97695258031582],[-87.64637649835724,41.97698229676564],[-87.646393068633,41.977045374720014],[-87.64641538691404,41.97710744509347],[-87.64641792127037,41.977112947007875],[-87.64641951944546,41.977116415906906],[-87.64644330915856,41.977168258396496],[-87.64646069913293,41.97719907907898],[-87.64647672710493,41.97722748659449],[-87.64649131386325,41.97724907877599],[-87.64651549891738,41.977284879935375],[-87.64655940432047,41.97734016404834],[-87.64658459868065,41.97736743457956],[-87.64660830035895,41.97739309027132],[-87.64666189542496,41.97744338243397],[-87.64611468822824,41.977809916389795],[-87.64613226772876,41.97782560729549],[-87.64614484393239,41.97783683225308],[-87.64614495940164,41.9778369358517],[-87.64656554743651,41.97755515849217],[-87.64669120396123,41.977470972826005],[-87.64669455906088,41.977473681658815],[-87.64673570373293,41.97750463998714],[-87.64675635871927,41.977520180972846],[-87.64682220209444,41.97756349454696],[-87.64689179736425,41.97760339944696],[-87.64696477676424,41.97763975790388],[-87.64699103347942,41.97765100446447],[-87.6470409224595,41.977672374594285],[-87.64705493477979,41.977677482439454],[-87.64706812284818,41.97768228980546],[-87.64708034049951,41.97768674313021],[-87.64711975745415,41.97770111164612],[-87.64715770676969,41.977712660768645],[-87.64720106339526,41.97772585578557],[-87.64728436255274,41.97774646858909],[-87.64729034405143,41.977747624516454],[-87.64734423769792,41.97775804330125],[-87.64736935391156,41.9777628969372],[-87.64742594808497,41.977770851065294],[-87.64745558349424,41.97777501627142],[-87.64748433203886,41.977777587006464],[-87.64754273519625,41.97778280850985],[-87.64802228072529,41.97780866477015],[-87.64836312588658,41.97782704124022],[-87.64860383420547,41.97784001821807],[-87.64860387279828,41.9778400203692],[-87.64862624561803,41.97793159048598],[-87.64863292108518,41.9779538311362],[-87.6486505490057,41.97799740436795],[-87.6486663942892,41.97802618698984],[-87.64867370925651,41.97803947384079],[-87.64870218472538,41.978079708952876],[-87.6487186715972,41.97809838275011],[-87.64873572314043,41.97811769656622],[-87.64875751101387,41.978137854199396],[-87.64877399668987,41.97815310569236],[-87.64881515358793,41.97818625074671],[-87.64893829820576,41.97828542208001],[-87.64932587375289,41.97857595511329],[-87.64939378491287,41.97862212992702],[-87.64939834961143,41.978625234190936],[-87.64952481447597,41.9787158051464],[-87.64962570760822,41.97879309789544],[-87.64964712711757,41.97880950733464],[-87.64971880693443,41.97886823769804],[-87.64976514191075,41.9789062018685],[-87.64979917384521,41.97893603854634],[-87.64987874940356,41.979005806057955],[-87.64998701098263,41.97911410266438],[-87.64999224401497,41.97911933791021],[-87.65011349200589,41.979240624792084],[-87.6501458478636,41.97927927727829],[-87.65014783242478,41.979281648549645],[-87.65014784514074,41.97928166316956],[-87.65014923348923,41.97928304078633],[-87.65018139842348,41.979314957591406],[-87.65018791260174,41.97932141832688],[-87.65023256976227,41.97935837315992],[-87.65027521912666,41.97938797694767],[-87.65028138005998,41.97939225339028],[-87.65031148776028,41.979402385456616],[-87.65047501453391,41.97945741704888],[-87.65047512813659,41.979457455320116],[-87.65047315362,41.97946505433176],[-87.65047255833571,41.97946734658625],[-87.65045863862805,41.97950686282707],[-87.65043910667669,41.979545027917325],[-87.65042570278098,41.97956459388956],[-87.65041418670596,41.97958140493975],[-87.65039807059954,41.979599783550654],[-87.65038421519442,41.9796155839886],[-87.6503795527891,41.979619822654676],[-87.65034949074412,41.97964715493247],[-87.65031946372883,41.97966914198898],[-87.65031042022055,41.97967576399105],[-87.65028269055465,41.97969212126501],[-87.65026745036755,41.97970111168202],[-87.65022119522855,41.97972279935565],[-87.65022109875702,41.97972284433526],[-87.65022121802878,41.97972304043182],[-87.65032623769632,41.97989568036336],[-87.65043181380904,41.98006923430359],[-87.6505175458428,41.98021016647169],[-87.65052670400954,41.98022658843193],[-87.65055485953306,41.980277072391246],[-87.65057012655724,41.980309370459864],[-87.65058927932421,41.98034988882666],[-87.65060778805052,41.98041100267336],[-87.65064106366599,41.98053578682547],[-87.6506619878453,41.98063135716494],[-87.650668556368,41.98066136010997],[-87.65067938399397,41.98075291601564],[-87.65068630627927,41.98082820442379],[-87.65069533227081,41.9809263614792],[-87.6507054306673,41.98110007428623],[-87.65070752054186,41.98118632116723],[-87.6507096426496,41.981273889294734],[-87.65070978423662,41.981277850286524],[-87.65070992563469,41.981281794537594],[-87.65071788192544,41.981535961292174],[-87.65072610502928,41.981798622634464],[-87.65073623756189,41.98230747494612],[-87.65073639880114,41.98231555344562],[-87.6507364879875,41.98231856682866],[-87.65074131979644,41.98248146907415],[-87.65074084909725,41.982525537511904],[-87.65073780241991,41.98261749688181],[-87.65073531388262,41.982692599230205],[-87.65072389562211,41.98285946076103],[-87.65071508826314,41.982944273189815],[-87.65070659448233,41.983026067768485],[-87.65069156815686,41.98313396333442],[-87.65068344968962,41.98319225583139],[-87.65065446288853,41.98335797007207],[-87.65061967102545,41.98352301861212],[-87.65061171177389,41.983555208163075],[-87.65057903860345,41.98368734607682],[-87.65057598799692,41.98369843506366],[-87.65056251276245,41.98374742222745],[-87.6505625074083,41.98374744140498],[-87.65053859030166,41.98383438701075],[-87.6505291732736,41.98386496664558],[-87.65048722839782,41.984001175275026],[-87.6504869962994,41.984001933762066],[-87.65048646578327,41.98400366795632],[-87.65042857733751,41.98417192749746],[-87.65038665836119,41.984282167370466],[-87.6503650371117,41.984339027161994],[-87.65034169800096,41.984394972790454],[-87.65029584445344,41.98450488653179],[-87.65022107627199,41.98466939518887],[-87.6501220588142,41.98486578422688],[-87.65001964007232,41.98506890391932],[-87.64935185709076,41.98639323726703],[-87.64935180711944,41.98639333548586],[-87.64936868113274,41.986397430198586],[-87.64937279223662,41.98639842778409],[-87.6493741491885,41.986398765172176],[-87.64938092084483,41.98640040483414],[-87.64939645477847,41.98640416692045],[-87.6493965115169,41.986404055020955],[-87.64965090697382,41.98590136973991],[-87.64989369882257,41.98542160562505],[-87.65004762458773,41.98546678605168],[-87.65004932996185,41.9854679034848],[-87.65005785134586,41.98547348787315],[-87.65011528628673,41.985499213514764],[-87.65013442127463,41.98550779543177],[-87.6501379819287,41.98550939233909],[-87.65013811325743,41.98550942495333],[-87.65014383528217,41.98551084098348],[-87.65022103530765,41.98552994665306],[-87.65025067870225,41.985537262068874],[-87.65028006054344,41.98554451280429],[-87.65037656972108,41.98555880825438],[-87.65045361764558,41.985567756324826],[-87.65050856162753,41.98557413712092],[-87.65059868517297,41.98559050743104],[-87.6506385713506,41.98560093904998],[-87.6506651474724,41.98560788952584],[-87.65071304565791,41.98562170680245],[-87.65073595429118,41.985628315206085],[-87.65076669833101,41.98564106751954],[-87.65081193849296,41.98565983155155],[-87.6509153935358,41.98570232300501],[-87.65095279081285,41.98571471938093],[-87.65097693151604,41.9857227214272],[-87.65098409060732,41.98572648209014],[-87.65105608317583,41.98576429964088],[-87.65115558130672,41.98583624028129],[-87.65131241507035,41.98596057830606],[-87.6513552709047,41.985991074481184],[-87.65140528737993,41.9860261948839],[-87.65144737683065,41.98605351445773],[-87.65147560548806,41.9860718374468],[-87.65153627996156,41.98610430461962],[-87.65154672386956,41.98611063850365],[-87.65159029316919,41.98613706150419],[-87.65161784130977,41.98615791358235],[-87.65164071910624,41.98617523111425],[-87.6516790700044,41.986207400993095],[-87.65172967384183,41.986249523259715],[-87.65175443455627,41.98626935876999],[-87.65177529807552,41.986286072392744],[-87.65179215468292,41.98630119089717],[-87.65182590399098,41.986331460219866],[-87.65185246615006,41.986357314816416],[-87.65192572416665,41.98642862069472],[-87.65219563888823,41.98663982573325],[-87.65226168344529,41.98669150465326],[-87.65266418402778,41.9869682841732],[-87.65284134023791,41.987104223121335],[-87.65301724177485,41.987239198555635],[-87.6530717454855,41.9872813573328],[-87.65309224764162,41.98729721622627],[-87.65309242455606,41.9872973207307],[-87.65309280103382,41.98729754441803],[-87.65314985375727,41.987331420918316],[-87.6532174462141,41.98737338166138],[-87.65323250916,41.98738273255606],[-87.65331198538061,41.987421759304375],[-87.65338840427812,41.98745774955008],[-87.65343279742703,41.987486964553575],[-87.65346620628509,41.9875089502202],[-87.65354171906728,41.98756903615216],[-87.65354250908943,41.98756966486013],[-87.65355725312241,41.98758414217252],[-87.65367887276227,41.98770356595801],[-87.65393073138557,41.987976127720074],[-87.65416564870102,41.98823703673382],[-87.65417860828023,41.98825245180089],[-87.65420159721909,41.988279796483745],[-87.654206549959,41.988285688204485],[-87.65430789272884,41.988406234197925],[-87.65430657457443,41.988437854600406],[-87.65430389704463,41.98850206633096],[-87.65430389397166,41.988502147815325],[-87.65430073412257,41.988503272080756],[-87.65429418291882,41.98850560293983],[-87.65427656950264,41.98851205709822],[-87.65427165758783,41.98851363915802],[-87.6542574127302,41.98851822797917],[-87.65424403505006,41.98852020232165],[-87.65424400336605,41.98852020707377],[-87.65424154501501,41.98852153471582],[-87.65423209081837,41.98852664006582],[-87.65423065466891,41.988540599513314],[-87.65423141213421,41.98854640412108],[-87.65423245734874,41.988554413743834],[-87.65423311738114,41.98857059658828],[-87.65423344913036,41.98857873261389],[-87.6542340572276,41.98859506059326],[-87.65423470817115,41.988612548522106],[-87.65423653960391,41.98863781224523],[-87.65423810924351,41.98865946717761],[-87.65423529520272,41.9887066833084],[-87.65422987181995,41.98879767089631],[-87.65421999941142,41.988964383141344],[-87.65421678191052,41.989018720258485],[-87.65421391638019,41.98904883701482],[-87.65420825115763,41.989108378007565],[-87.6542116449649,41.98923207858536],[-87.65419628004693,41.98937638683897],[-87.65419668982163,41.98939818748438],[-87.65419769488473,41.989451674180465],[-87.65419792458214,41.98946390860192],[-87.65420842266121,41.98949709393907],[-87.6542133931689,41.989505475569615],[-87.65421893895358,41.989514828205586],[-87.65422437397253,41.98952581188301],[-87.65422732898405,41.98953178234177],[-87.65422751499999,41.98953352298598],[-87.65423003914479,41.989557154989924],[-87.65423042987535,41.98958953850111],[-87.65423033937779,41.989594591945455],[-87.65422988667716,41.989619913775314],[-87.6542316664685,41.989663742200996],[-87.65423268532926,41.989688836735475],[-87.65421886061445,41.98975713776139],[-87.65421704022975,41.98976613068814],[-87.65421509565694,41.98977410670562],[-87.65419942474848,41.989838390833754],[-87.65419610460283,41.98987739306111],[-87.65419573384393,41.989881474226216],[-87.65419431290164,41.98989711348017],[-87.65419345695548,41.9899136528788],[-87.6541929241848,41.98992394346754],[-87.65419457987629,41.989941241401496],[-87.65419926937992,41.98995668300026],[-87.65420150946679,41.989964059195806],[-87.6542104346896,41.98997915099614],[-87.65422730459017,41.98999780098994],[-87.65423351277961,41.990003150473264],[-87.65424757160582,41.990015264730495],[-87.65427340497904,41.99004527354084],[-87.65428682474214,41.990064703597476],[-87.65428880163341,41.99006756513534],[-87.65430208605514,41.99009824201128],[-87.65430518884341,41.99011689178525],[-87.65430599304399,41.99012172769309],[-87.65429940046508,41.99013288500188],[-87.65429564602138,41.99013308260322],[-87.65429284812483,41.99013323043002],[-87.65428419376897,41.99013424974615],[-87.65427613099665,41.990135744562195],[-87.65426698168969,41.99013744068565],[-87.65425561019619,41.990140561345214],[-87.65424945851136,41.990142249130166],[-87.65422655165655,41.990151690575765],[-87.65421681781967,41.99016037955584],[-87.6542093574736,41.99016703920825],[-87.6541979393016,41.99018579681767],[-87.65419790141432,41.99018590059841],[-87.6541869544272,41.990215801866626],[-87.65418695252393,41.99021580789259],[-87.65418854255395,41.990278039666855],[-87.65418890047343,41.99029205335626],[-87.65418997934798,41.99031112062491],[-87.65419825337156,41.99045730906837],[-87.65421174458851,41.99057231510687],[-87.65422231422507,41.99071301803626],[-87.65423709634169,41.990853697858206],[-87.65423844857018,41.99086656843497],[-87.65426780256655,41.990878787988656],[-87.65428071125206,41.990884161738],[-87.65433157905413,41.9909053456582],[-87.6543533830021,41.99091369430439],[-87.65437172856929,41.99092071872581],[-87.65438202606016,41.99092466183963],[-87.654413139473,41.99099334226296],[-87.65441315133995,41.990993367854124],[-87.65432458451552,41.99099591750783],[-87.65431227366655,41.991405017704196],[-87.65430331438249,41.99170275589429],[-87.65430331470073,41.991702760561296],[-87.65429995859525,41.991814254780365],[-87.65423813703319,41.99215960452349],[-87.65421216296876,41.9923046987217],[-87.65421156758013,41.99232233101996],[-87.6542099077104,41.99237147899845],[-87.65420723055881,41.99237759560474],[-87.65420337147228,41.992386413186566],[-87.65420018045204,41.992393704010674],[-87.65419533504316,41.99240727198947],[-87.65417674992808,41.992459316489516],[-87.6541627126822,41.99252176505297],[-87.65414864029587,41.99258436762964],[-87.65409310212048,41.993005711437235],[-87.65410034239761,41.993051335292215],[-87.65413466372783,41.9930540479301],[-87.65425684466072,41.993063704490666],[-87.6542864656311,41.99308018020954],[-87.65430255051469,41.99310070860371],[-87.65432072737556,41.993123905746785],[-87.65438719542772,41.993209832309205],[-87.65439722088404,41.993222792321006],[-87.65440782563108,41.99323769919411],[-87.65445640767994,41.993305989763215],[-87.65449651215562,41.993364101644225],[-87.65452700927392,41.99339161385477],[-87.65452698812736,41.99339169989732],[-87.6545178587971,41.99342882613189],[-87.6545111280746,41.99345987801322],[-87.65445491572493,41.993463689867156],[-87.65445119607321,41.99347793738749],[-87.65445120158202,41.99347793824331],[-87.6544649155038,41.99348010959656],[-87.65446577594889,41.99348024613187],[-87.65446755678597,41.99349370923601],[-87.65447108751434,41.993520397614205],[-87.6544718120876,41.993555751193746],[-87.65447215341143,41.99357240633443],[-87.65447118024596,41.99362593919361],[-87.65446814961388,41.99363204987234],[-87.6544651276281,41.99363814303929],[-87.65445265125723,41.99365063902107],[-87.6544491394248,41.99365415688619],[-87.65447936773327,41.99365567399435],[-87.65450616389157,41.99365701877039],[-87.65450615065363,41.993657122148115],[-87.65450499980393,41.9936660358836],[-87.65450480098353,41.993667575570996],[-87.6544971785112,41.993685405605135],[-87.65449450313915,41.993691663553044],[-87.6544757409578,41.993725601969686],[-87.65447241106918,41.99373162580876],[-87.65447240079344,41.99373165812945],[-87.65446937003496,41.993741518744024],[-87.65443270703051,41.993860806486374],[-87.65441294360758,41.993865135464176],[-87.65434628316702,41.99387591059846],[-87.65427989809896,41.9938814728118],[-87.65425944558565,41.99396474228946],[-87.65425913489473,41.99396600826759],[-87.65425914030821,41.993966121909104],[-87.65426461707806,41.99407779045186],[-87.65426608823493,41.994107786571696],[-87.65427799535306,41.99420931000814],[-87.65430035666307,41.99426506675182],[-87.65431260083197,41.994270484587936],[-87.65432587715885,41.994276359124115],[-87.65436054757964,41.99429547167007],[-87.65439068713668,41.99453321450167],[-87.65439076108478,41.994533213841365],[-87.65439723391435,41.99453315799919],[-87.65460042678049,41.99453140904458],[-87.65460055251168,41.99456115681184],[-87.65459616016278,41.99459294204479],[-87.6545961406515,41.994593081883124],[-87.65459614023702,41.99459308627139],[-87.65459007140764,41.994636999145236],[-87.65458501942054,41.99466608787745],[-87.65458137295543,41.994687084070165],[-87.654568707101,41.99472629253663],[-87.65455683775048,41.9947630348423],[-87.65455131414319,41.99487787453366],[-87.65455630885165,41.994931138614014],[-87.65455864922774,41.99495609961155],[-87.65453828011744,41.99500372176319],[-87.6545323181941,41.99501766102267],[-87.65449299337449,41.995090286175724],[-87.65448861948353,41.9951098025111],[-87.654487303368,41.99511567580183],[-87.65448453598904,41.99512802393374],[-87.65449631866407,41.99519277389874],[-87.65449664111962,41.99521272853724],[-87.65449760571207,41.99527247278921],[-87.65448602639026,41.995320126052015],[-87.65448535505449,41.99534511589014],[-87.65448468623636,41.99537000722661],[-87.65450268223903,41.995417835386924],[-87.65451087312253,41.995428925621205],[-87.65454467749188,41.99547469663458],[-87.65456277290906,41.99550348261538],[-87.654579514645,41.995530115455765],[-87.65460678363674,41.99560083585131],[-87.65463897959263,41.995684333503824],[-87.6546483075548,41.99575020530314],[-87.65465324923086,41.99578510274441],[-87.6546573615649,41.99586547666018],[-87.65466135854118,41.99591367097496],[-87.65466246760528,41.995927043108125],[-87.6546637530738,41.99594254385447],[-87.65466363992194,41.99594256404134],[-87.65465674223562,41.99594378009966],[-87.65464433007809,41.99594596902532],[-87.65464433353534,41.99596337077609],[-87.65464434299898,41.99601742725305],[-87.65464189166535,41.99602682752589],[-87.65463828333122,41.99604066270343],[-87.65461946651457,41.99605035890876],[-87.65459463511857,41.996063153961664],[-87.65453653461452,41.996074802519985],[-87.65445132974298,41.99608565959225],[-87.6543897633646,41.99608419806861],[-87.65437399113078,41.99608035265101],[-87.65435365766838,41.99607539492521],[-87.6543266675856,41.99601543966038],[-87.65432454486584,41.99600624202694],[-87.65431544949581,41.995966828862294],[-87.65429860873442,41.99595376761309],[-87.65429514579233,41.99595108169702],[-87.65429512609174,41.99595106621302],[-87.6542852056621,41.995953865877354],[-87.6542712083501,41.99595781676014],[-87.65427103197756,41.9959578664843],[-87.65426466868739,41.995981689845266],[-87.65426176000253,41.99599258079246],[-87.65426997162919,41.996100379153354],[-87.65427412410584,41.996154890151544],[-87.6542787315422,41.99618660703424],[-87.65429057837993,41.996268158139834],[-87.65428540408136,41.99636381714615],[-87.65430201660823,41.99643981530686],[-87.65431006608705,41.99647663972601],[-87.65432132002321,41.99654984800007],[-87.65432778707792,41.996591917356454],[-87.6543444440774,41.9967206365884],[-87.65435690680708,41.996797629931415],[-87.65437848268043,41.99696896751663],[-87.65440816142491,41.99711754907957],[-87.6544245541747,41.997199614961964],[-87.65443646876847,41.997268594760456],[-87.65443789659028,41.99727686019542],[-87.65443464192352,41.99729738641596],[-87.65442338582058,41.99736837540631],[-87.65442779340852,41.99745483547021],[-87.6544285002026,41.997468706037395],[-87.65442895052168,41.99748908924352],[-87.65443113210316,41.99758790145568],[-87.65444417510771,41.99768300985675],[-87.65446054108824,41.99774570159458],[-87.65448708820466,41.997847448461975],[-87.65449857389467,41.997992107692326],[-87.65452753046239,41.998112858306364],[-87.65455589555344,41.998166141730366],[-87.65455590024236,41.9981661505395],[-87.65456399658044,41.998181358958966],[-87.65456509667153,41.99818342580076],[-87.65459595309191,41.99824138906642],[-87.65463297594295,41.99827925247519],[-87.65469465205034,41.9983423278656],[-87.65475551420846,41.99841370753931],[-87.65482567666399,41.99850317092272],[-87.65488166268699,41.99859218467516],[-87.65489246181144,41.99860935412567],[-87.65493357476134,41.998669776884725],[-87.65509069708943,41.998902287961656],[-87.65513545206403,41.9989594986877],[-87.65521399596443,41.99905990138215],[-87.65523284519516,41.99906871153401],[-87.65526037737932,41.99908158031187],[-87.65530797566215,41.99910996195539],[-87.6553242786463,41.99913250433797],[-87.65541841558701,41.99926266942684],[-87.65562193758507,41.99955011772207],[-87.65565083009791,41.99961129104923],[-87.65566918930361,41.999677054407606],[-87.65567620692234,41.99970219198421],[-87.6557111163864,41.99981521520062],[-87.65571899466423,41.99984072310606],[-87.65572678390228,41.999860857639675],[-87.65575516076413,41.99993421181367],[-87.65576182524781,41.99995779024732],[-87.65577629424958,42.00000897874272],[-87.65589981778547,42.000353911533665],[-87.65600701864601,42.00065969752295],[-87.65601322261719,42.0006867857821],[-87.65603799531189,42.000794949210395],[-87.65600613627497,42.00083815479046],[-87.65600354315968,42.00084167153325],[-87.65599384864039,42.00086476703912],[-87.65596512017878,42.000933210436884],[-87.65599275092916,42.001096131236785],[-87.65604213422769,42.00122002082097],[-87.6561186937859,42.001362402159664],[-87.65618671900732,42.001504677942116],[-87.6562209136683,42.00158358788014],[-87.65624525771085,42.0016397672293],[-87.65630393600318,42.001775177553746],[-87.65644542813335,42.00206373999751],[-87.6564511441659,42.002066151816],[-87.6565042176375,42.00208854723636],[-87.65650432494846,42.00208859314819],[-87.65653338836906,42.00211299540661],[-87.65656307306911,42.00212401023718],[-87.6565894998914,42.00215075693727],[-87.65668423075456,42.00229014380174],[-87.65686508288248,42.00252062402201],[-87.6568802709568,42.00255769144288],[-87.65689739679564,42.002599487263076],[-87.6568974319449,42.00259957281441],[-87.65689747283407,42.00260825154585],[-87.65689748884533,42.00261156798987],[-87.65689765268844,42.00264604746597],[-87.65689779660329,42.00267632986535],[-87.6568811655707,42.00273290013781],[-87.65688090145684,42.002733798674605],[-87.65687512608989,42.00275344457476],[-87.65691908386661,42.00294870523759],[-87.6569429410911,42.00300756701941],[-87.65698053784723,42.00310032745975],[-87.65699507053873,42.00311741606704],[-87.65699633913242,42.00311890787208],[-87.65700521276086,42.00312934168709],[-87.65697509174379,42.00320122654853],[-87.65703898969579,42.003379261383245],[-87.65705057371629,42.003407596123104],[-87.65705491382127,42.003418212605716],[-87.65711415740749,42.00356312590805],[-87.65719728805718,42.00367961207849],[-87.65722413754271,42.003700474013456],[-87.65723747161653,42.003710833918944],[-87.65723753876323,42.003710885905136],[-87.65724325575955,42.00374356112375],[-87.65724325679061,42.00374356799029],[-87.65724929918258,42.003778105683196],[-87.6572688162528,42.003864564804694],[-87.65727200167892,42.00387867660804],[-87.65727427615528,42.00388475877147],[-87.65728924752415,42.00392479763081],[-87.657286867038,42.00421221020655],[-87.65682484317652,42.0042145100471],[-87.65671075227337,42.00421636608561],[-87.65671249848464,42.00429608619841],[-87.65674423348501,42.004296273256195],[-87.65674350622426,42.00424264620457],[-87.65682123477455,42.00424213782633],[-87.65682273342127,42.00425035918393],[-87.65682273411055,42.004250363578684],[-87.65683292227314,42.004261126771034],[-87.65684514705067,42.004272152509124],[-87.65687723746653,42.004301096302456],[-87.65693904029138,42.00438060885281],[-87.65696772778352,42.004417516777316],[-87.65702583049776,42.00453146813979],[-87.65702206880401,42.00459483639419],[-87.6570220713764,42.00459483668376],[-87.65703202163687,42.00459538102932],[-87.65704556921146,42.004596122470346],[-87.65704567584757,42.00459612831255],[-87.65705340673101,42.00460411278912],[-87.65707031445983,42.00462157431507],[-87.65707169737065,42.00462300971335],[-87.65709832609404,42.00467479213379],[-87.65712205894204,42.004720944256334],[-87.65731198417393,42.00507172734973],[-87.6573429081842,42.005206565827784],[-87.65736416846973,42.00529926502828],[-87.65738242954535,42.00537888753242],[-87.65741125244813,42.00555416455131],[-87.65741442164082,42.00557343531962],[-87.65741442233598,42.00557343916557],[-87.65742145581662,42.00561621468197],[-87.65742047155237,42.00564559087846],[-87.65741510924356,42.00580566330445],[-87.65741206116583,42.00620132968593],[-87.65739408847317,42.00627948773577],[-87.65669254547481,42.00629208851881],[-87.65584442368592,42.00630731579973],[-87.65583999515472,42.006310617535],[-87.65534211315351,42.006681775852726],[-87.65506225830967,42.006899444097066],[-87.6550958877781,42.006921821306335],[-87.65537071662874,42.00670889762867],[-87.65537108773515,42.00670922281105],[-87.65538708062634,42.00672324126093],[-87.65544194952264,42.006760529751254],[-87.65551446648041,42.00680385755086],[-87.65554775928572,42.00682374942756],[-87.6556024169036,42.00686151325811],[-87.65573984817566,42.00695646714806],[-87.65602232885705,42.00713546322632],[-87.65613972080757,42.0072099472427],[-87.6563650193026,42.00735922724237],[-87.65645955096107,42.00742186228118],[-87.65645956813684,42.007421873359206],[-87.65649173474962,42.00745007731494],[-87.65664257399179,42.00758233458688],[-87.65666409570872,42.00760291386527],[-87.6567448555479,42.00768013651894],[-87.65683959752128,42.00784364485365],[-87.65684650115959,42.00785136129758],[-87.65698032509296,42.008000947250636],[-87.65704351776724,42.00805310645171],[-87.65718462391253,42.008169573523155],[-87.65726292800603,42.00824404593841],[-87.65733838507857,42.00831581140947],[-87.65741545518392,42.00837466725904],[-87.65751869308762,42.00845350577445],[-87.65764616038825,42.00857766212921],[-87.65773294687911,42.00866213264092],[-87.65780855529052,42.008735722474455],[-87.65787276362072,42.00880174065481],[-87.65787896235305,42.00880811427479],[-87.6579369709708,42.00886775961619],[-87.65811555081012,42.0090508047722],[-87.65827217900892,42.0091989081104],[-87.65829391037983,42.009219456204974],[-87.65831187116649,42.009236439106324],[-87.6583119123304,42.0092364783158],[-87.65833073337147,42.00924946113699],[-87.65841463182952,42.00930733398019],[-87.65850090120561,42.00938883906551],[-87.65866119889473,42.00954028280401],[-87.65871115734762,42.00959696885358],[-87.6587439044525,42.009639939289386],[-87.65875165936079,42.00965011501747],[-87.65878976976781,42.00971018934773],[-87.65884142615485,42.00974852508342],[-87.65884143017601,42.009748527576804],[-87.65884256989298,42.00974851204598],[-87.65890012733507,42.00974772018789],[-87.6589339286957,42.009755520996286],[-87.65895283737648,42.009759884749364],[-87.65895416065122,42.00976875705955],[-87.65895417679621,42.009768865824064],[-87.6589306555995,42.009769329157514],[-87.65893058677611,42.00976933067409],[-87.65892328238974,42.009771711970075],[-87.65889015657105,42.009782512733445],[-87.65888310136158,42.00981644427021],[-87.65889695754693,42.009849208634385],[-87.65901596015794,42.00998108002354],[-87.6590312918186,42.01000183708287],[-87.6590517287359,42.010029505169456],[-87.65908592489532,42.01007578883716],[-87.65911165802379,42.010110617959384],[-87.65921663401097,42.010239800046726],[-87.65942565286365,42.010409844597014],[-87.65942569226462,42.010409876660866],[-87.65951422584325,42.01048190186208],[-87.65954264102238,42.010505018540115],[-87.65961181853203,42.01056409522502],[-87.6597622760629,42.01068629882738],[-87.65984964218319,42.01076529509979],[-87.65992808016476,42.0108282255217],[-87.66003222470242,42.01091178048027],[-87.66008371791544,42.01095249252869],[-87.66012016924584,42.01098131223188],[-87.66023850018115,42.01111157551757],[-87.6602780325684,42.01115509379223],[-87.66027803071714,42.011155094879065],[-87.66027801518847,42.01115510192289],[-87.66025981268686,42.01116345879834],[-87.66013904282285,42.01121890451056],[-87.66013907893051,42.01122151718439],[-87.66013912670726,42.01122494247918],[-87.66014735817183,42.01123986395126],[-87.66016747848002,42.01125653293945],[-87.66016960986924,42.01125829842305],[-87.66017626123491,42.01126432852993],[-87.66028620670845,42.011364001751026],[-87.66038424482173,42.01144657273831],[-87.66042449048113,42.01147317341375],[-87.66046810825388,42.011502002909246],[-87.66052116728297,42.01153708272062],[-87.66064315745707,42.01161990364429],[-87.66078783994023,42.011752746912265],[-87.66079872847985,42.01176559366087],[-87.66091203074558,42.01189927291954],[-87.66096973789095,42.01196816063792],[-87.66099896785806,42.01200598395608],[-87.66101438965973,42.012025940245934],[-87.66101660187695,42.01202960900322],[-87.66102639574719,42.01204585073228],[-87.66107364906382,42.01216758500535],[-87.66093868574335,42.01220888997391],[-87.66093867239418,42.01220893462589],[-87.6609357627057,42.01221904690745],[-87.66093352909459,42.0122268069943],[-87.66093785854476,42.012236245724594],[-87.66094144231427,42.012244059372506],[-87.66097643310134,42.01228976288119],[-87.66100258925457,42.01232150217643],[-87.66105178720869,42.01238120133202],[-87.66110755976209,42.01246309055802],[-87.6611317249398,42.012498571655684],[-87.6611434253484,42.01252225825398],[-87.66117611269733,42.01258842941513],[-87.66119690867572,42.01269277495668],[-87.66119690700458,42.012692793881754],[-87.6611968478692,42.01269337777187],[-87.6611909945521,42.01275121912257],[-87.66119071974353,42.012770295067824],[-87.66119071922638,42.01277034418566],[-87.66120691163876,42.01277109348933],[-87.66124899441293,42.012773040193615],[-87.661249124241,42.012773046442135],[-87.66126642624926,42.01279688437368],[-87.66128682662789,42.01286993402405],[-87.66128683018316,42.01286994584487],[-87.6612872319587,42.012871383678856],[-87.66128723230354,42.012871385876224],[-87.66128766633476,42.012872940526805],[-87.66132025183676,42.012938540531614],[-87.6613261501791,42.01295041456276],[-87.66133090065229,42.01295611706839],[-87.66138411015758,42.01301998958798],[-87.66139752947049,42.013032077507596],[-87.661410965564,42.0130441797936],[-87.66142931025007,42.01306070342323],[-87.66150043344015,42.01312420792347],[-87.6615005431936,42.013124373491195],[-87.6615707412431,42.01323024352556],[-87.66159166845931,42.01326442733272],[-87.66160876144882,42.01329234733052],[-87.66161200790309,42.0132996735365],[-87.6616211980676,42.013320410765125],[-87.66160893402332,42.01335022396058],[-87.6616048461373,42.01336016086957],[-87.66160482130837,42.01336017746377],[-87.66159313701404,42.01336797528331],[-87.66157301355528,42.01338140581607],[-87.66154416412668,42.01339390878429],[-87.66151534684883,42.01340639766364],[-87.66151160481373,42.01342867992347],[-87.66150407959658,42.013473482122244],[-87.66151778051679,42.01352791440099],[-87.6615303589607,42.0135778873987],[-87.66157206272821,42.01373059821085],[-87.66165172816312,42.01390210871064],[-87.66169918311549,42.0139734058126],[-87.66170544695566,42.01397871101809],[-87.66173472549727,42.014003510535936],[-87.66175235973999,42.01401844738538],[-87.66178391852281,42.014043017097265],[-87.66178396779273,42.01404305580406],[-87.66179217807527,42.014069365656056],[-87.6618046860839,42.01410944872587],[-87.66183303329579,42.014220204805106],[-87.66183735176631,42.01423809359249],[-87.66186191289555,42.01433982824472],[-87.66189533813544,42.0144260541352],[-87.66192177344836,42.01445618263751],[-87.66193984547162,42.014476779422324],[-87.66197237747235,42.014529027098476],[-87.6619987669851,42.01458447697383],[-87.66201413521141,42.0146355787178],[-87.66201437556015,42.01463637813142],[-87.66201317590186,42.01464729871964],[-87.66201124178167,42.01466489956356],[-87.6620164520678,42.01469152499486],[-87.66202088079093,42.01471415883386],[-87.66203287330563,42.01474082557619],[-87.66203643524713,42.01474874608233],[-87.66205183941861,42.014782999031596],[-87.66206456508688,42.01482508769148],[-87.66206792172116,42.01483619079496],[-87.66207111407793,42.01484674904091],[-87.66207620501433,42.0148810185108],[-87.66208379501168,42.0149321126254],[-87.66208582003398,42.01496297674783],[-87.66208582476855,42.01496305141725],[-87.6621334572058,42.01496505879182],[-87.6621573570079,42.0149753846695],[-87.66217118814276,42.014981360867736],[-87.66220131744062,42.0150602983272],[-87.662218531907,42.015105399980456],[-87.66229053670605,42.01521484754209],[-87.66236349157676,42.01530745079012],[-87.66239948366658,42.01534503966602],[-87.66241845376999,42.015364851023776],[-87.66246515900347,42.01542716993979],[-87.66248947573246,42.015487238659965],[-87.66250977821299,42.015537390318805],[-87.66252101703054,42.015581604657626],[-87.66252727039495,42.01560620683603],[-87.66253114670806,42.01566738795123],[-87.66253689724566,42.01575815350672],[-87.66254689860041,42.015804396242984],[-87.66258329627831,42.01585658372642],[-87.66255873267808,42.01590742678838],[-87.66254318364348,42.01594002926795],[-87.66253942949265,42.01594790069032],[-87.66253943566335,42.01594794381001],[-87.66254302626844,42.01597219837905],[-87.66255382623403,42.01604515626298],[-87.66262474336294,42.016121721684584],[-87.6626403583775,42.01613148616265],[-87.66266502390987,42.01614691015562],[-87.66266514016546,42.016146983006834],[-87.66268773428006,42.016161111987365],[-87.66272473301511,42.016191075346256],[-87.66272594700237,42.01620161981804],[-87.66273718690093,42.01622750685264],[-87.66273963623381,42.01623314783021],[-87.66274865129382,42.01625994308693],[-87.66275041340995,42.016265180771114],[-87.66275040777799,42.016265191440525],[-87.6627460571267,42.016273552513624],[-87.6627440852213,42.016282889593406],[-87.66274311515798,42.016287481800674],[-87.66274230310741,42.0162913246721],[-87.66274229962848,42.01629134056804],[-87.66274234399563,42.01629307213078],[-87.66274404506116,42.01635995500519],[-87.66276011246075,42.01648720020356],[-87.66276633150318,42.01653645368694],[-87.66276860361678,42.016542922096384],[-87.6628054561713,42.016647848722926],[-87.66282603710309,42.01664870987696],[-87.66282668338316,42.01664873697773],[-87.66284124326911,42.01664934671557],[-87.66284128299269,42.016649348594115],[-87.66284394918179,42.01665214402304],[-87.66286104699776,42.016670072012914],[-87.66287547507403,42.01669472219226],[-87.66287785776731,42.016698792557186],[-87.66290275777929,42.01670901599917],[-87.66290775675999,42.016711068755896],[-87.66294224885297,42.016724030924976],[-87.66297710395082,42.016740973442],[-87.66298564152557,42.01674117313493],[-87.66300524858303,42.01674163230968],[-87.6630412980263,42.016787748577705],[-87.66309366782095,42.01685474208478],[-87.66305900954171,42.01688209154894],[-87.66305807215662,42.01688578083951],[-87.66304495988878,42.0169373867899],[-87.6630335799595,42.01697660327604],[-87.6630209442189,42.01702014850632],[-87.66299479097484,42.01709266139189],[-87.66299617131355,42.0171074147567],[-87.66299912527326,42.01713898102452],[-87.6630077821243,42.01714408718339],[-87.66302172782292,42.017152311979125],[-87.66308419860229,42.017157177509134],[-87.66313617952036,42.01716846899936],[-87.66315300422369,42.01717212369185],[-87.66318424018577,42.0172114109059],[-87.66319391786297,42.01728535830034],[-87.66319456203613,42.01729028347388],[-87.66319455466223,42.01729028480293],[-87.66318913159141,42.01729101080942],[-87.66318376453043,42.01729172973338],[-87.6631665129153,42.01729256148276],[-87.663130451898,42.01729430012439],[-87.66313860052207,42.01756903162135],[-87.66314317081279,42.01772312507695],[-87.6631505631217,42.01772355242379],[-87.66316077107369,42.01772404258626],[-87.66317461854449,42.01772470794564],[-87.6631748191321,42.017724845502514],[-87.6631799998501,42.01772838390956],[-87.66320359351438,42.01774449854724],[-87.66322703077964,42.01775893173118],[-87.66325078113798,42.01776208596328],[-87.66327263562918,42.01776498845853],[-87.66329124050229,42.0177991773102],[-87.66330231310917,42.017819524179345],[-87.66329984849973,42.01782118237013],[-87.66329430775012,42.017824911199426],[-87.66326896635984,42.01785160134706],[-87.66327656015157,42.01786627956486],[-87.66328047210476,42.01787384121216],[-87.6632813273359,42.017879765675026],[-87.66328373074104,42.01789641739313],[-87.66328547576677,42.01790672676121],[-87.66328799345709,42.01792160640611],[-87.66330839760113,42.01793401971363],[-87.6633152453801,42.01795249289095],[-87.66331526864485,42.01795255531963],[-87.66332870449509,42.01795962454557],[-87.66334396146993,42.01796765141633],[-87.66341186982866,42.018148779185054],[-87.66341184921603,42.01814877961358],[-87.66337074038833,42.018149834381646],[-87.66333272729437,42.01815080951237],[-87.66333258078947,42.018150813322315],[-87.66332743861456,42.01830065366304],[-87.66332743806798,42.01830067067376],[-87.66332036477004,42.018302765455005],[-87.66332035037271,42.018302769761654],[-87.66328228237244,42.018321866294286],[-87.66328227552334,42.01832192278441],[-87.66327889483374,42.018350056411734],[-87.66327892398226,42.018378898733175],[-87.6632789263766,42.01838336791811],[-87.66327892750037,42.01838553939401],[-87.66327893101847,42.01839218005484],[-87.66328224844334,42.01843380173242],[-87.66331255422196,42.01849578799261],[-87.66335509446499,42.018582796834686],[-87.66337794166509,42.018596821226716],[-87.66341787639483,42.018621333985244],[-87.66349451291177,42.01862219012239],[-87.66352079495208,42.01862248399585],[-87.66353518304368,42.0186243585336],[-87.66356555750058,42.01862831560835],[-87.66358371063949,42.018640431982774],[-87.6636223839474,42.0186662429904],[-87.66369608688264,42.01872584162045],[-87.66371532675593,42.01874139920336],[-87.66375516941575,42.018784390886104],[-87.66379341683925,42.01882566197929],[-87.66389008267369,42.01894935713248],[-87.6638974039123,42.018958223466164],[-87.66392867479537,42.01899609632096],[-87.66398035092013,42.01907597888294],[-87.66398447896539,42.01910253258373],[-87.66399341734356,42.01916002724079],[-87.6639858314104,42.01918506425406],[-87.66397633488704,42.01918980817038],[-87.66397388954245,42.0191910296142],[-87.66396725973702,42.019194341046045],[-87.66395251172014,42.01919350697718],[-87.66394508235878,42.01919308687506],[-87.66392799707036,42.01919316999814],[-87.66392200669243,42.01919319927621],[-87.66388487466621,42.01919674196737],[-87.66388482214742,42.01919676690751],[-87.66388257318648,42.01919782539283],[-87.6638692676595,42.01920408821587],[-87.66386926679068,42.01920413595952],[-87.6638678099409,42.01929173264116],[-87.66386780992075,42.01929173456197],[-87.66386767416569,42.01929990538711],[-87.66386841078145,42.019313811969795],[-87.66386914864782,42.01932773968993],[-87.66386664073899,42.01933169726204],[-87.66385627531571,42.01934805385753],[-87.66385612849635,42.019348157554425],[-87.66383399396877,42.01936375781172],[-87.66369531985073,42.01936759339676],[-87.66365538366972,42.01936869791587],[-87.66363796726661,42.01937315163899],[-87.66364158555727,42.01948162847299],[-87.6636423344584,42.01950407473933],[-87.66364482969922,42.01950441283637],[-87.66365798905687,42.01950619649227],[-87.66370196524566,42.019509800953024],[-87.66385520703093,42.01951308283648],[-87.66387682233477,42.0195152011817],[-87.66387918621278,42.01951543258216],[-87.66387932370776,42.01951544600731],[-87.66389938205177,42.01954986989762],[-87.66390574920878,42.019560796757986],[-87.66392772266158,42.01960266359814],[-87.66392717877348,42.019636554879774],[-87.66392708512561,42.01964239586763],[-87.66387784495615,42.019642355666164],[-87.66386219573455,42.01965027766997],[-87.66385470698582,42.01965898737374],[-87.66400752242517,42.020176690078976],[-87.66400744404586,42.020176689347515],[-87.66389164767516,42.02017546548703],[-87.66389016053652,42.02017679816821],[-87.66388492379106,42.020181490631984],[-87.66392681891921,42.02031688605093],[-87.66383818967822,42.02033174915673],[-87.66375365735563,42.02034592507672],[-87.66374065429018,42.02035392204769],[-87.66372850722871,42.02036139246344],[-87.66373182082415,42.02037075901551],[-87.66373858636031,42.02038988095326],[-87.66380886985165,42.020450224076434],[-87.66386900334402,42.02068179903751],[-87.66387985447724,42.02070739553571],[-87.66388483381623,42.020719142219576],[-87.66388484028182,42.020719157350264],[-87.66386292470523,42.020726469820055],[-87.66385784374141,42.02072816517562],[-87.66385784479935,42.02072816957248],[-87.66394783283415,42.021086752338746],[-87.66400949654128,42.0213324672723],[-87.66400959564251,42.02133242229683],[-87.66417611922998,42.02125659437348],[-87.66418573994281,42.021252213672675],[-87.66418592113916,42.02125213103157],[-87.66420151059611,42.02126026262997],[-87.66420656457701,42.021262899062],[-87.66426056132345,42.021295502377775],[-87.66426814971051,42.02130008438421],[-87.66434242935728,42.021354934942934],[-87.66444860875393,42.021428192147006],[-87.66452549166333,42.02149112509203],[-87.66455697248861,42.02152277738374],[-87.6645960702621,42.02156208913915],[-87.66464506283474,42.02161045257012],[-87.66469387270668,42.021693437662584],[-87.66471799311306,42.0217344474888],[-87.66471797519604,42.0217344715332],[-87.66471265378864,42.0217415125567],[-87.66470676063969,42.021749310386774],[-87.66467616513083,42.021764581605645],[-87.66467003513874,42.021769342444244],[-87.66464930127857,42.021785445511895],[-87.66463382455028,42.02181644743447],[-87.66463020524613,42.0218236981464],[-87.66463174930855,42.02185943359629],[-87.6646323082745,42.021872364675616],[-87.66466159677145,42.021935406617224],[-87.66466563528489,42.02194409982564],[-87.66468586359319,42.021994518174125],[-87.66469587820133,42.022017497534016],[-87.66469934052208,42.02202544124262],[-87.66472473663035,42.0220497653875],[-87.66474913069881,42.02208901229253],[-87.66477469929761,42.022162006524425],[-87.66478632922787,42.02219520884027],[-87.66479293960994,42.02222469264588],[-87.66482301941322,42.02224799000959],[-87.66484616593134,42.022265918066964],[-87.66489657952472,42.02228402110534],[-87.66489664344527,42.02228403217989],[-87.66490006034395,42.02228461573253],[-87.66493882731078,42.02229123789131],[-87.66496297066077,42.0223042654142],[-87.6649814983916,42.02231426276782],[-87.66505140148578,42.02236200684886],[-87.66512801410343,42.02243330782557],[-87.66513916776083,42.0224448848571],[-87.66516507610785,42.02247177686823],[-87.66518403366375,42.022506601621146],[-87.66519910308057,42.02252388051652],[-87.66523029147095,42.02255964142071],[-87.66524865058274,42.02258828773037],[-87.6652671100614,42.02261789480894],[-87.66528227473725,42.02266334432968],[-87.6652830285255,42.02267740055334],[-87.66528325789015,42.02268168170785],[-87.66528403041873,42.02269609231387],[-87.66527633063207,42.02271960159976],[-87.66526726409286,42.02274728368477],[-87.66523662868576,42.02278738990006],[-87.66521564008772,42.02282014297979],[-87.66518963004161,42.02284168594821],[-87.6651870164474,42.0228438509835],[-87.66516951399525,42.02287486121328],[-87.66516695171032,42.02287940163251],[-87.6651669172101,42.02287946290125],[-87.66516385265425,42.022898019576736],[-87.6651638522489,42.022898023141806],[-87.66514263791588,42.022917108888976],[-87.66514252013775,42.02291732060269],[-87.66513842859969,42.02292468109145],[-87.6651381367792,42.022925205725876],[-87.66513800947621,42.022925448393345],[-87.66512638951285,42.0229475715394],[-87.6650780915545,42.02301848694779],[-87.66508199773682,42.0230390910211],[-87.66507495413059,42.02305447229093],[-87.6650756198604,42.02307700394337],[-87.66219022338805,42.02325717521973],[-87.65891441713033,42.023461967711356]]],[[[-87.61600490454916,41.91896479263868],[-87.61380469884288,41.91166476494798],[-87.61985161970148,41.90620786569479],[-87.6220047842853,41.90426493075743],[-87.62055986624492,41.90305571303738],[-87.61710428052292,41.900164773927656],[-87.5998027860278,41.89776618078487],[-87.59590220124034,41.888166220763274],[-87.60252360028952,41.88827475086923],[-87.60252360323048,41.88827475061352],[-87.60252401604738,41.88827471646789],[-87.60291972020238,41.88826625708107],[-87.60384058793225,41.88825226974125],[-87.60477590439869,41.888236939680596],[-87.60478785661795,41.88823668976798],[-87.6051361567479,41.888229400310266],[-87.60517009760812,41.88820331338724],[-87.6051842832451,41.888192410744146],[-87.60524625025347,41.88819143207711],[-87.60541301433013,41.888188756844],[-87.60541182508518,41.88821014639978],[-87.60541107603129,41.88822362326715],[-87.60584023289285,41.88821871410405],[-87.6058941290254,41.88821809998392],[-87.60598726371829,41.8882170384355],[-87.60750592896372,41.888189655805455],[-87.60750595247256,41.8881896554052],[-87.60750889806793,41.88818772259562],[-87.60755830828941,41.88815529914782],[-87.60767126479745,41.88815237961918],[-87.60780651430055,41.88814888348382],[-87.60780657160682,41.88814888219934],[-87.60781038038202,41.88818478113313],[-87.60781038835097,41.88818485582674],[-87.60802278004901,41.88816257153766],[-87.60837335973335,41.88812578747331],[-87.60841054801547,41.888121881457025],[-87.60846627527643,41.88811602823633],[-87.60930224433497,41.88802783737514],[-87.60984629637093,41.88797043888563],[-87.60984644418217,41.88797042335144],[-87.60984626273117,41.88794728416639],[-87.60984617371246,41.887935872515456],[-87.60985023848151,41.88790104520485],[-87.60985750093066,41.88786286427343],[-87.60985925209278,41.88785934017854],[-87.60985956736994,41.88785870632487],[-87.60986892885475,41.8878362617279],[-87.60987539468167,41.88781325168662],[-87.60987771867744,41.88779821198689],[-87.60987899991622,41.88778992120848],[-87.60987966920098,41.88776640703089],[-87.6098805773769,41.88772497475839],[-87.60988095003046,41.88770825371956],[-87.6098810244041,41.88770491692025],[-87.60988188891163,41.88766549946617],[-87.60988359559785,41.88758769926875],[-87.60988134292,41.88732361801758],[-87.60988125544696,41.887313370755464],[-87.60987994305562,41.88715949277464],[-87.60987909930233,41.88715290128722],[-87.60987958404273,41.88714870483318],[-87.6098802393492,41.88714302921153],[-87.60988271741599,41.88713721413989],[-87.60988427501927,41.88713355957114],[-87.6098877130488,41.887129178923004],[-87.60989098229878,41.88712501235978],[-87.60989971572627,41.88711799163401],[-87.60989999961627,41.887117763180825],[-87.60990002555715,41.887117742488044],[-87.60990079532583,41.88711735052048],[-87.60991099548032,41.887112158189325],[-87.60991520576778,41.887110908092694],[-87.60992330245145,41.88710850355351],[-87.60993640218598,41.88710694337335],[-87.6099364312399,41.887106939714435],[-87.60993848504386,41.88708768782469],[-87.60993861779805,41.887060848637994],[-87.60993940190771,41.88690218308687],[-87.60994032529557,41.886709653408076],[-87.60994518478765,41.886490529128785],[-87.60995332733349,41.88612364799097],[-87.60995346788522,41.88610148777605],[-87.60995361058774,41.886078974116636],[-87.60995630641209,41.88566746448452],[-87.60995630696733,41.8856673827097],[-87.60995694230857,41.88557199668923],[-87.60995708824703,41.8854936901982],[-87.60995751604987,41.88526398717999],[-87.60995809153485,41.88525734398332],[-87.60995823342888,41.88525570382209],[-87.60995998955325,41.88523594373847],[-87.6099649211188,41.88518044375039],[-87.60996565071655,41.88516922138909],[-87.60996582853977,41.8851664796421],[-87.60996803211113,41.88513257664653],[-87.60996790489166,41.88513021387845],[-87.60996763701635,41.88512524703902],[-87.60996643360664,41.88507244002085],[-87.60996771581964,41.885032543016465],[-87.60996813073436,41.885019624104885],[-87.60997280206203,41.884966909799],[-87.60997288125982,41.88496467456608],[-87.60997496558056,41.884906019151224],[-87.609977160451,41.88484426947891],[-87.60997775886992,41.88482738849223],[-87.6099787755354,41.88479872527833],[-87.60997877590364,41.88479540447655],[-87.6099775134835,41.884786081478374],[-87.60997694599115,41.884781891840966],[-87.60997505328316,41.884776648300814],[-87.60997220903032,41.884768771157624],[-87.60997170494346,41.88475700726991],[-87.6099710756603,41.88474231064816],[-87.60997203042913,41.884686937087025],[-87.60997533300527,41.884647508898745],[-87.60997665713093,41.88463169752207],[-87.60996751394777,41.884631612761126],[-87.60996751426349,41.884631584771874],[-87.60996751457611,41.88463155705702],[-87.60996885269101,41.88449336585831],[-87.60997525588789,41.88449091442256],[-87.6099760082972,41.88449062607719],[-87.60997604517581,41.884490612313854],[-87.60997631200148,41.88447659422356],[-87.60997685543222,41.88444808170447],[-87.60997703031569,41.884432577852465],[-87.60997709710234,41.884426396599075],[-87.60997732871267,41.88440488706157],[-87.60997783044223,41.884358323769],[-87.60996957943115,41.88435728386973],[-87.60997440308738,41.8842192087473],[-87.60997451582017,41.88421598634789],[-87.60997792660352,41.88421553664633],[-87.60998245911713,41.884214938686384],[-87.60998588515999,41.88408043489174],[-87.60998588782974,41.88408032843205],[-87.61159598346939,41.884069932293094],[-87.61273603449354,41.88405851372928],[-87.61273610831415,41.8840585130948],[-87.61273630812067,41.88404073167375],[-87.61273698186487,41.88397420399897],[-87.61273866477082,41.883808062351854],[-87.61274176817832,41.883773751382165],[-87.61274875053869,41.883724316546605],[-87.61275859393335,41.88367514636959],[-87.61277060247575,41.883629311405045],[-87.61277083353085,41.88362842289774],[-87.61277137055082,41.88362635217063],[-87.61278700646378,41.88357804160796],[-87.6128055003586,41.8835302983715],[-87.6128128386671,41.8835140551531],[-87.6128267775062,41.88348320349494],[-87.6128489317495,41.88344053728325],[-87.61285083777261,41.88343686647109],[-87.61287756962282,41.883391343129816],[-87.61289265076287,41.883368507694584],[-87.6129070078854,41.883346768978825],[-87.61291135805172,41.883341670028294],[-87.6129365174982,41.883312184851036],[-87.61298340405246,41.88326058538385],[-87.61299439040657,41.88324936860961],[-87.61300495140208,41.88323858632368],[-87.61302363643475,41.88321950948491],[-87.61303273758051,41.883210208710956],[-87.61305390048206,41.88319013231458],[-87.61308440638159,41.88316119106619],[-87.61313619251132,41.8831154526775],[-87.61313833559467,41.883113560242684],[-87.61314287457122,41.88310982662913],[-87.61319448972733,41.8830673700762],[-87.61323763616858,41.88303427259255],[-87.61325275543219,41.88302267473762],[-87.61331309762902,41.882979556879846],[-87.61337544140959,41.88293801603004],[-87.61343971180095,41.88289818837815],[-87.61350580006096,41.88286004524814],[-87.61357363033463,41.88282367068404],[-87.61359730176892,41.882811909314974],[-87.61361352782825,41.88280383646506],[-87.61364316671703,41.88278909025369],[-87.61370480938635,41.882760709500296],[-87.61371426134907,41.88275635791227],[-87.61378687726938,41.88272552803574],[-87.61386003887525,41.88269695126028],[-87.61386083114066,41.88269664200834],[-87.61386086581425,41.882696628229944],[-87.61386258759164,41.88269605092626],[-87.61391816882742,41.88267741283024],[-87.61397686810618,41.882657728650265],[-87.61403601600054,41.88264031207194],[-87.61409513733263,41.882622903529416],[-87.61420641239064,41.88259448949154],[-87.6142154532293,41.88259218111901],[-87.61433752225916,41.882565639981124],[-87.61446112239688,41.88254333470294],[-87.61449098885444,41.88253902110415],[-87.61458595898857,41.88252534548822],[-87.61466846986615,41.88251587283921],[-87.61487691157141,41.882505513792324],[-87.61492720178857,41.88250385557434],[-87.61499582537134,41.8825015930237],[-87.6150768758633,41.882500533844386],[-87.61517762630514,41.88249921745385],[-87.61538269855028,41.88249266902395],[-87.61546151794178,41.88249015215392],[-87.6155452127578,41.882483156366746],[-87.61554830399884,41.88248273304222],[-87.61562803772102,41.88247181890722],[-87.6157095886459,41.88245619268505],[-87.61578953479956,41.88243632997238],[-87.61584405133428,41.88241956958302],[-87.61586739733774,41.88241239243531],[-87.61592576502863,41.88239118761998],[-87.6159841113293,41.88236621205415],[-87.61690256357122,41.8823427570107],[-87.6167615697268,41.88250227820546],[-87.61660679710717,41.88264253098302],[-87.61646124873421,41.8827492516225],[-87.61631447571571,41.88284065156505],[-87.61620299275788,41.882897094375345],[-87.61608044046456,41.882959140834885],[-87.61578656481653,41.883069434651084],[-87.61539751519192,41.883208139371845],[-87.61524576412494,41.88326562120873],[-87.61512269260108,41.88331223911498],[-87.61484375204662,41.8834166411929],[-87.61457506160667,41.88355667237353],[-87.61447886244147,41.88362088452285],[-87.6144095692691,41.88366321094775],[-87.61422975432457,41.883802507600635],[-87.61404249510461,41.883983360293975],[-87.61385197783879,41.88422538881318],[-87.61375661781967,41.88438952447622],[-87.61375657288339,41.88438960185663],[-87.61368921469023,41.884533613499606],[-87.6136615701409,41.8846214987954],[-87.61361620998095,41.88476570669829],[-87.6135886607839,41.88492988654756],[-87.61358386084008,41.88501411998604],[-87.61357759369783,41.885124109343046],[-87.61358155169111,41.885218216558414],[-87.6135815523393,41.885218224246344],[-87.61359429467912,41.88533971804277],[-87.6136074424591,41.88546507606996],[-87.61362285685576,41.88557931244991],[-87.61363988848822,41.885705537565215],[-87.61364989811796,41.88577548564044],[-87.6136546019465,41.88580835268529],[-87.6136650574029,41.8858814125005],[-87.61366832312471,41.885904234026015],[-87.61372816584357,41.886102945896745],[-87.61374547522499,41.886245193318736],[-87.61375949459165,41.88636040391054],[-87.61378213532286,41.88661821745639],[-87.61378316858254,41.88662998162178],[-87.6138089376425,41.88683393025361],[-87.6138395082541,41.88705182224613],[-87.61384899616993,41.88710637787868],[-87.61388035133308,41.88728667513128],[-87.61390800522878,41.88744568901854],[-87.61391144964064,41.88746549490944],[-87.61392541120509,41.88754577450872],[-87.61393683691738,41.88767653000904],[-87.61394154674142,41.88773042561855],[-87.61394486744403,41.88778306060377],[-87.6139545622524,41.887936707293726],[-87.6139674964175,41.88814170250068],[-87.61397271543152,41.88834619904025],[-87.61397431379372,41.888408814451545],[-87.61321579396642,41.88905999332095],[-87.61254944570744,41.88963202885117],[-87.61255426072894,41.889734624941376],[-87.61255579669819,41.88980221114946],[-87.61256048375553,41.88991612641156],[-87.61256818347518,41.89000707759453],[-87.61257778147095,41.89009255276472],[-87.61259126434848,41.89015918458836],[-87.6126439589788,41.89020891184601],[-87.6126682310962,41.89021663689411],[-87.61270662917963,41.89022885755314],[-87.61362622023105,41.89022467646642],[-87.61371744247016,41.890224200673174],[-87.6138805648719,41.890223526828265],[-87.61407211024535,41.89022267018763],[-87.61422719069927,41.89022192242823],[-87.61422737434428,41.89022192138284],[-87.61441450655616,41.89022103900518],[-87.61538974956376,41.89020758735657],[-87.61732369043429,41.890182272019416],[-87.61764165553225,41.89017705599195],[-87.61771581646045,41.890176140282584],[-87.61857947976851,41.89016265303728],[-87.61867501117544,41.89016084611935],[-87.61960427610659,41.890179310729486],[-87.6198721430977,41.890174807877514],[-87.61987212804821,41.890465010620346],[-87.61961384322011,41.890464773079806],[-87.61867520334556,41.89043184075719],[-87.61858865179852,41.89043198265523],[-87.6179521422315,41.89043214103672],[-87.6178518645369,41.89053202426223],[-87.6176527577407,41.89053215210217],[-87.6173324718815,41.89050623047007],[-87.61733246184676,41.89050683304198],[-87.61714894503511,41.89051027235982],[-87.61703032010554,41.89051249488165],[-87.61702635001738,41.89045689986325],[-87.6167825549538,41.89045880890457],[-87.61651311276718,41.890496232694694],[-87.61651282526162,41.89047231267784],[-87.61651239905274,41.89043688438534],[-87.61606469986826,41.89044506584154],[-87.61606313672497,41.89050268450889],[-87.61585762542495,41.8905074884973],[-87.61579679760804,41.89050891030202],[-87.61555612530698,41.89047790595501],[-87.61555178817873,41.890537222972526],[-87.61441120752646,41.89055615802837],[-87.61440557424724,41.890403474577084],[-87.61423158513963,41.89040787283217],[-87.61423153147616,41.89040787661248],[-87.61363989733711,41.890449997085405],[-87.61362028535112,41.8904513933811],[-87.61356976236154,41.890561557507944],[-87.61355929345658,41.89058438458912],[-87.61143663655476,41.89063033779515],[-87.6113673213378,41.88974074346256],[-87.6112333412321,41.889310140876944],[-87.60954751584698,41.88931434724046],[-87.60956634327088,41.889403381934954],[-87.60948580285746,41.88939911084168],[-87.60949195445059,41.88960536175044],[-87.6094919577081,41.88960546358217],[-87.6094971728282,41.88978035265397],[-87.60950941839756,41.89019214743173],[-87.60951590318604,41.89040968965256],[-87.60952761184903,41.8908024982926],[-87.60953205618,41.89092189098871],[-87.60953544572408,41.89101294800679],[-87.60746207429547,41.891046815072386],[-87.60613515036611,41.891068458582055],[-87.60521340777204,41.89108348450316],[-87.60491287037257,41.891088391637226],[-87.60487573748398,41.89108899774642],[-87.6045221844847,41.89109476951428],[-87.60434189162922,41.891096644605284],[-87.60389620674454,41.89110127794628],[-87.60326047862905,41.89111207004186],[-87.60275997946437,41.89112056424558],[-87.60170350816357,41.89113795998134],[-87.60088992614227,41.89115093992183],[-87.60088992653147,41.89115093800335],[-87.60088847216731,41.891128720998815],[-87.60088705162302,41.891107015735436],[-87.6008870493846,41.89110698663226],[-87.60084642145821,41.89110766025454],[-87.60084602506691,41.89110702655187],[-87.60082112279177,41.891094729402724],[-87.6008175378798,41.891092959280094],[-87.60078629035286,41.89108274403957],[-87.60075312113716,41.89107668694642],[-87.60074848449607,41.891076447981945],[-87.60071905914097,41.89107493232381],[-87.60068659336216,41.89107747958542],[-87.60068509244756,41.891077597342075],[-87.60068038443684,41.891078590081385],[-87.60065225233066,41.8910845228293],[-87.60062149518195,41.89109557822583],[-87.60060577592324,41.891103969140985],[-87.60059370720485,41.8911104116141],[-87.60056133694687,41.891111604620534],[-87.60056686476631,41.89141523469191],[-87.59933441775314,41.891436391989416],[-87.59852438721039,41.89145029031952],[-87.59852439073599,41.89145039928824],[-87.59852848910795,41.891585853807634],[-87.59854044528716,41.89198148411992],[-87.59854559930756,41.89215154332621],[-87.59854931958766,41.89227429618701],[-87.59966713439157,41.892255654046195],[-87.60058211452446,41.892240386390654],[-87.60058212096651,41.89224049757329],[-87.60059047287781,41.892383139956564],[-87.60059131400823,41.8923975306046],[-87.60059234367351,41.892415156262345],[-87.60059234679404,41.89241520458079],[-87.60062113306168,41.892412726625125],[-87.60063637989153,41.89242018422162],[-87.60064984034743,41.89242676817967],[-87.60068131021413,41.89243693026424],[-87.6007146640645,41.892442961113396],[-87.60074883537644,41.89244463026644],[-87.60074891209456,41.89244463404895],[-87.60075097659718,41.892444471039546],[-87.60078302709559,41.89244194224288],[-87.60081601431948,41.89243496304906],[-87.60084695523271,41.89242385389139],[-87.6008748920419,41.892408993952934],[-87.600875187671,41.89240880374212],[-87.6009021714728,41.89240820911349],[-87.60091093328154,41.8924080160954],[-87.60091123267024,41.89237862779466],[-87.60091134669781,41.89236539993606],[-87.60091134699876,41.89236537359332],[-87.60303660794929,41.89233294310504],[-87.60359286740892,41.892322529017775],[-87.60445691873066,41.89230634700981],[-87.60460086854309,41.89230403749575],[-87.60477520148153,41.89230124054774],[-87.60477905273295,41.892301178538325],[-87.6051996547173,41.89229442857266],[-87.60979598526778,41.89222059962669],[-87.60979598842366,41.892220710513705],[-87.60979800921382,41.892291879910175],[-87.60980974294914,41.89270356148745],[-87.60981494946572,41.89288626570769],[-87.60982147696139,41.89311532618671],[-87.6098223267972,41.89314510869125],[-87.60982234309465,41.893145682339146],[-87.60982234546779,41.8931457649556],[-87.60783442155339,41.893178177231846],[-87.60695974791992,41.89319242749195],[-87.60518912790269,41.89322125474853],[-87.60429304682462,41.893235821505826],[-87.60399530252502,41.89324026371171],[-87.60371117093197,41.893244502944235],[-87.60235195550487,41.89326459094514],[-87.60229307119276,41.89331366666142],[-87.60229307174266,41.89331368285591],[-87.60230012269888,41.89354875526366],[-87.60231338072194,41.89399016803025],[-87.60231900147032,41.89417683892593],[-87.60231646547261,41.89440248145214],[-87.60231515278896,41.8945175937259],[-87.60231487304398,41.89454212512527],[-87.60231426832286,41.8945854917031],[-87.60231305102968,41.89467284857225],[-87.60231968065881,41.894820942759644],[-87.6023205740667,41.89484089875487],[-87.60232289068166,41.89489223068056],[-87.60232418768602,41.89498781786677],[-87.60232496604844,41.89504520777475],[-87.6023287821815,41.89527102764137],[-87.60233014578513,41.8953511127935],[-87.6023314471665,41.895604139164604],[-87.60233256363443,41.89563973980726],[-87.60233400633805,41.89568576951703],[-87.60233567239882,41.895739525940634],[-87.60233779125885,41.89580791228617],[-87.6023417097237,41.896037711089754],[-87.6023417956426,41.89605558949523],[-87.60234188393261,41.8960739363564],[-87.60234211613142,41.89611789551655],[-87.60234267408391,41.89622366676803],[-87.60234777348238,41.89624874337857],[-87.60235074298446,41.89626334513819],[-87.6023512195085,41.8962775375052],[-87.60235227876284,41.89630907384405],[-87.60236955504949,41.89634332153272],[-87.6024259846733,41.89637131515192],[-87.60242607904108,41.896371317673534],[-87.602486874862,41.896372956816535],[-87.60249395095525,41.89637314784512],[-87.60249398146411,41.89637314584391],[-87.6025136824406,41.89637188813362],[-87.60267883789446,41.89636134416805],[-87.60286007681911,41.896362586124866],[-87.6031272051195,41.896364415975874],[-87.60337993932015,41.89635407990332],[-87.6035383704055,41.896347600348136],[-87.60376676833845,41.89634212329465],[-87.60378897557179,41.896341590947316],[-87.60379362379213,41.896341524704205],[-87.60390079957759,41.8963399958946],[-87.60399500132586,41.89633373996792],[-87.60402978314295,41.89633143014142],[-87.60414336135979,41.89633064209564],[-87.60421682254976,41.89632743128082],[-87.60430452884896,41.89633106139711],[-87.60444038953358,41.89632971309257],[-87.60448665747977,41.89632925374927],[-87.60462471004031,41.896327468260964],[-87.60468379468188,41.896325483147145],[-87.6047268609333,41.8963272144202],[-87.60475674414822,41.89632841582305],[-87.60478879466899,41.89632966197831],[-87.60481517436303,41.89633194761309],[-87.6048291217593,41.89633315601893],[-87.60491019525772,41.896332271041544],[-87.6049613057224,41.89633064656214],[-87.60499909240293,41.896328142274555],[-87.60501796783366,41.896326122587574],[-87.60502814417131,41.89632503372839],[-87.60504338111309,41.89632314326562],[-87.60506139545944,41.89632090845087],[-87.60507043341251,41.89631940951474],[-87.60508211320091,41.89631747233815],[-87.60510401444216,41.89631011919853],[-87.60513804838371,41.89629529662528],[-87.60513805755623,41.89629529750672],[-87.60514071264014,41.89629560056715],[-87.60515231828235,41.896296924160495],[-87.60515419351054,41.89629671651309],[-87.60515643693569,41.896296462353114],[-87.60516978790429,41.89629494849764],[-87.60518546642257,41.896288846496425],[-87.60518744581547,41.89628981596196],[-87.6051891560044,41.89629065364377],[-87.60519679697337,41.89629294934733],[-87.6052063238403,41.896295811892514],[-87.60521524352062,41.89629625264265],[-87.6052247890961,41.89629672452857],[-87.60523642327614,41.89629450109793],[-87.60524271558205,41.89629329867968],[-87.60525833633946,41.89628587852127],[-87.60526225724007,41.89628814569434],[-87.605264430252,41.89628940178644],[-87.60527841259155,41.896294130662206],[-87.60528063980338,41.89629488353076],[-87.60528748576839,41.89629538302655],[-87.6052983657737,41.89629617620936],[-87.60530830457269,41.896294398114385],[-87.60531570088554,41.89629307508455],[-87.6053307673499,41.89628598071018],[-87.60533107716901,41.896286126197765],[-87.60533248450685,41.896286787149776],[-87.60535049079105,41.89629247264573],[-87.60536997812648,41.896293913416756],[-87.60538914773566,41.8962909888388],[-87.60540241500794,41.89628558886524],[-87.60540634345358,41.89628399000483],[-87.6054065989291,41.896284101668066],[-87.60542452564978,41.89629038983063],[-87.6054441167429,41.89629246187168],[-87.60546364608324,41.89629017128411],[-87.60546372058434,41.896290144313994],[-87.60548136661848,41.89628375891511],[-87.6054814595612,41.8962837252013],[-87.60549277314418,41.896286897894676],[-87.60551430636816,41.89628933980717],[-87.60553592549803,41.896287418379686],[-87.60555608604396,41.896281261584136],[-87.60555650382919,41.89628147361698],[-87.60555663457208,41.896281539758355],[-87.60557478156053,41.89628777440881],[-87.60558062278976,41.896288385796],[-87.60559459264636,41.896289848641686],[-87.6056143430339,41.89628753116372],[-87.6056228838634,41.89628445988085],[-87.6056323408125,41.89628105878309],[-87.6056472502072,41.89628452922034],[-87.60566360847358,41.896285099400316],[-87.60566744415067,41.896285233201105],[-87.6056870260981,41.89628154307527],[-87.6057044132061,41.89627385935091],[-87.60570576632738,41.89627276062659],[-87.60571809236099,41.89626274955379],[-87.6057268992807,41.89624927601034],[-87.60572695199461,41.89624919456619],[-87.6057944184876,41.8962495265315],[-87.60586310288322,41.89624986452613],[-87.6058635203153,41.89625962292148],[-87.6058650764857,41.89629600814659],[-87.60655409233536,41.89628349371488],[-87.6065528162014,41.89623724475036],[-87.60658882460916,41.896236559362926],[-87.60668907864488,41.89623465017079],[-87.6066891791639,41.896234790488364],[-87.60669818952395,41.896247385908545],[-87.60669829149923,41.89624746256909],[-87.60671213831422,41.89625790198665],[-87.60671753508029,41.89626007197261],[-87.60672961529603,41.896264928042974],[-87.60674908586442,41.8962678500857],[-87.60675909332461,41.89626710715005],[-87.60676882655811,41.89626638360905],[-87.60678714537087,41.89626070945507],[-87.60678993228545,41.8962621499731],[-87.60679284225644,41.89626365438702],[-87.60680088492227,41.89626609604888],[-87.60680982658329,41.89626881096076],[-87.60681115474911,41.89626887534618],[-87.60682807143041,41.89626969505101],[-87.60683932446771,41.89626752091252],[-87.60684581383128,41.896266266963764],[-87.60686117797927,41.89625881807002],[-87.60686453743047,41.89626062280064],[-87.60688140478848,41.89626641034643],[-87.6068997026303,41.896267998382115],[-87.6068998244567,41.8962680087576],[-87.60690292540595,41.89626753797969],[-87.60691803757892,41.89626524252751],[-87.60692891074679,41.89626061180894],[-87.60693416647459,41.89625837392751],[-87.60694197596314,41.896261102523454],[-87.60695176398151,41.896264522557665],[-87.60697146326137,41.896266677898396],[-87.60698364393934,41.89626532794396],[-87.60699113858259,41.8962644971948],[-87.60700910578268,41.89625811743421],[-87.60700913528903,41.896258106643906],[-87.60700982545849,41.896258462271206],[-87.6070128424895,41.8962600164785],[-87.60701388212928,41.896260551868124],[-87.60702153719436,41.896262970481196],[-87.60703090107786,41.8962659284413],[-87.60704001151326,41.89626648853267],[-87.6070493271311,41.896267060897976],[-87.60706166838939,41.89626486178726],[-87.60706732449853,41.89626385337892],[-87.60707214147813,41.89626163192592],[-87.6070830537191,41.896256598860745],[-87.60708352832187,41.896256821401046],[-87.60709564308597,41.8962609646995],[-87.60710167650694,41.896263027826805],[-87.60711133086669,41.89626401369002],[-87.60712145116526,41.89626504668124],[-87.60714112834647,41.89626270130968],[-87.60714120174191,41.896262674605914],[-87.60715908948491,41.896256174396335],[-87.60716636991293,41.89625836560346],[-87.60717603810153,41.896261275805436],[-87.60719083349751,41.89626252798059],[-87.60719636709338,41.89626299628666],[-87.60721656187533,41.89626035230946],[-87.60723489376527,41.896253552481944],[-87.60725231014645,41.89625948065653],[-87.60727157280597,41.89626130360256],[-87.60729005830677,41.896258874106564],[-87.60729070056938,41.89625878980302],[-87.60730796579413,41.89625212098024],[-87.60730825842413,41.8962522603165],[-87.60732659425138,41.89625808370039],[-87.60734637389145,41.89625966319576],[-87.60736424991327,41.89625711485121],[-87.60736584253094,41.896256887817906],[-87.60736590875538,41.89625687808291],[-87.6073689391686,41.8962556947178],[-87.60738354373598,41.896249991773196],[-87.60739505762395,41.896253842273644],[-87.60740110802897,41.89625586597563],[-87.60742143175226,41.896258052080185],[-87.60743172464142,41.896256948376944],[-87.60744173142376,41.89625587524617],[-87.60746038849108,41.896249517064426],[-87.60747426159215,41.89625372138273],[-87.60749487204845,41.896255983929905],[-87.60749495201803,41.8962559929425],[-87.60751565470325,41.896253873253045],[-87.60752589446753,41.89625048682628],[-87.60753478965006,41.8962475449732],[-87.60753763818012,41.89624896253657],[-87.60754802511254,41.89625230150862],[-87.60755461914384,41.89625442111912],[-87.6075730438576,41.8962556075447],[-87.60758643570476,41.89625326737766],[-87.60759107765774,41.89625245615614],[-87.60760687897911,41.89624528379993],[-87.60761122283104,41.89624767129355],[-87.60762665566888,41.89625296393465],[-87.60762801711033,41.89625343082559],[-87.60764636470535,41.89625497295359],[-87.60765757558927,41.89625324275992],[-87.60766446791533,41.896252179016955],[-87.60768048685428,41.8962452824492],[-87.60768369960942,41.89624700445072],[-87.60770129620133,41.89625320757059],[-87.60770564400681,41.89625365628442],[-87.60772055737634,41.89625519508596],[-87.60773162993833,41.896253840794316],[-87.60773975671263,41.896252846317886],[-87.60775710954826,41.896246350867806],[-87.607757130573,41.89624634304237],[-87.60775772417736,41.89624666347769],[-87.6077610368101,41.89624845306743],[-87.60777797784014,41.8962541314522],[-87.6077964369115,41.89625559275685],[-87.60780299214643,41.89625455322039],[-87.6078145774167,41.89625271588188],[-87.60782601206472,41.896247765629376],[-87.60783059493215,41.89624578141373],[-87.60783063405583,41.896245764646665],[-87.60783267112154,41.89624683432114],[-87.60783581818372,41.896248487023094],[-87.60783739241927,41.89624897528888],[-87.60785261833412,41.89625369716378],[-87.60786677758182,41.896254429591295],[-87.60787075276048,41.896254635001014],[-87.60787332615821,41.896254140556714],[-87.60788831084207,41.89625126074722],[-87.60789780034096,41.896246660163655],[-87.60790356480449,41.89624386535352],[-87.6079196295451,41.896250413043404],[-87.60792155268138,41.89625119659627],[-87.60792137703248,41.89625701326245],[-87.60792152730848,41.896257787811294],[-87.60792207048414,41.89626058459825],[-87.60792220189342,41.89626068943484],[-87.60792448841607,41.896262500528984],[-87.60792461873596,41.896262604261],[-87.60792600023822,41.896263246082846],[-87.60793371741094,41.89626683324785],[-87.60794383901593,41.89626869328693],[-87.60794856186656,41.89626956148425],[-87.6079764751007,41.89627292111725],[-87.60799277311511,41.896273688992935],[-87.6080107634819,41.89627453698493],[-87.60804151477312,41.89627465794595],[-87.60805707809787,41.89627471947154],[-87.60811624919123,41.896274819303756],[-87.60819403325777,41.89627566726842],[-87.6082585398855,41.89627513990829],[-87.6082792917522,41.89627497016983],[-87.60842556813304,41.89627151442024],[-87.60850568359855,41.89626962168045],[-87.60881824036949,41.8962678342536],[-87.60910800315928,41.896261429668535],[-87.60942746202979,41.89625666518136],[-87.60968132740813,41.89625132263559],[-87.6100273341039,41.89624400780709],[-87.6100972317155,41.89623747715333],[-87.61010965613052,41.89623662263879],[-87.61015449490931,41.896227656959525],[-87.61017819324753,41.89621397553673],[-87.61023315705732,41.89614548611346],[-87.61027136405566,41.89609787740791],[-87.61032156597128,41.896017210604114],[-87.61033038070114,41.89600425843352],[-87.6103656740949,41.89595228832566],[-87.61038315661627,41.89592654496137],[-87.61041530046748,41.895870654903206],[-87.6104380190112,41.89583587013359],[-87.61045271307553,41.89581337182424],[-87.61047761174412,41.89577143173286],[-87.61048810655348,41.89574954392164],[-87.61049441385899,41.89573888742259],[-87.61051495292742,41.895704186063526],[-87.61052925645392,41.895685991263576],[-87.61054062801345,41.895671526631155],[-87.61058292101666,41.89560470069014],[-87.61060674410449,41.89556705785653],[-87.61065625880195,41.895488825099264],[-87.61067775949564,41.895454854239006],[-87.6106942647285,41.89542826521323],[-87.61078968622517,41.89527454884619],[-87.61082778274483,41.89520214838572],[-87.61084371998085,41.895177908395674],[-87.61085681932312,41.89515798451825],[-87.61095465433397,41.8950091489929],[-87.61096280841392,41.89499789047312],[-87.61098274905527,41.89497035786688],[-87.61104439828857,41.89487428580182],[-87.61107545326922,41.89482640021703],[-87.61112065003084,41.894756708139276],[-87.61113228707752,41.8947387667976],[-87.61113683528895,41.894731754793064],[-87.61118711087472,41.89464663690294],[-87.61119947764057,41.894625700419894],[-87.61123407132638,41.89457402447754],[-87.61127583663114,41.89451169027933],[-87.61135186175423,41.894394688142235],[-87.61135945673288,41.89437820599392],[-87.61137335946478,41.89434803409459],[-87.61137770352956,41.894338630567795],[-87.61138013512527,41.89433336786802],[-87.61151785085328,41.89411971647113],[-87.61154654154709,41.89407242318945],[-87.61159254836545,41.89399658562705],[-87.61161286172245,41.89396545206749],[-87.61163074427614,41.89393804416854],[-87.61168972259871,41.89384770110497],[-87.61171875780518,41.89380322443036],[-87.6117842154391,41.89370473295899],[-87.61185126695214,41.89358202096175],[-87.61185236597217,41.89358041288419],[-87.61185656938332,41.893574260373065],[-87.61188402500842,41.89354323091159],[-87.61190086998424,41.89351828214509],[-87.61203007858079,41.89332698031722],[-87.61203014095959,41.89332688767946],[-87.6121087544578,41.893334563385096],[-87.61214398460935,41.893338003360036],[-87.61240226915854,41.893386057637386],[-87.61246687401432,41.89339916902185],[-87.61252036179944,41.89340801190813],[-87.61253463392751,41.893410021635226],[-87.61255483126348,41.89341286575197],[-87.61258571507351,41.89341336201151],[-87.6126231870771,41.89340923358758],[-87.61267118475804,41.8934033051278],[-87.61276385620882,41.89338353679035],[-87.61286701300389,41.89336153174983],[-87.61318215312384,41.89328214192021],[-87.61321310635954,41.89327409838506],[-87.61336961145902,41.89323342743592],[-87.61352427113614,41.893189451896916],[-87.6135242906655,41.893189446256436],[-87.61352622259089,41.893188725380895],[-87.61367883065988,41.89313177108253],[-87.61368620723053,41.893129017915825],[-87.61368631878716,41.89312915747327],[-87.6136863249412,41.89312916547011],[-87.6136884160219,41.893131803436056],[-87.61377287652176,41.89323834307915],[-87.61397053060243,41.893487664447306],[-87.61401200328692,41.893539977724224],[-87.61433776849078,41.89395088123329],[-87.61436268528033,41.893982322071686],[-87.61444947646234,41.89409179017521],[-87.61446637369599,41.89411310230736],[-87.61462536295636,41.89431469284909],[-87.61462539663508,41.89431473559552],[-87.61466667361032,41.89436707292668],[-87.61484774484664,41.89459669128412],[-87.61488386057833,41.894642478684034],[-87.61490652152527,41.89467120825365],[-87.61497860015717,41.89477791568081],[-87.6151308529179,41.895003264112844],[-87.61514306461248,41.8950218281243],[-87.61525801177248,41.895196567686604],[-87.61550399063253,41.89557046393806],[-87.61553042609991,41.89561064643865],[-87.6155431386714,41.89562996298737],[-87.6157067926073,41.895877103333966],[-87.61581309365147,41.896037632427706],[-87.6158446687556,41.8960852975643],[-87.61587236572721,41.896127108335754],[-87.61598959695193,41.896306416563746],[-87.61607220950464,41.896432774409504],[-87.6161876834925,41.89660942902841],[-87.61621203580009,41.896646683156526],[-87.61631638371294,41.89680817514501],[-87.61632168795535,41.89681638416158],[-87.61632172369286,41.89681644009268],[-87.61633842335324,41.89684387693607],[-87.61634662211705,41.89685732602749],[-87.6163615794072,41.89688186395638],[-87.61647466779202,41.897033761366366],[-87.61653849700885,41.89711949424026],[-87.61659573968369,41.89719900101265],[-87.61664215747734,41.89726347259496],[-87.61684857368186,41.89755024334949],[-87.61689546081583,41.897618612096885],[-87.6169399402771,41.8976834696501],[-87.61710817628435,41.897928802268325],[-87.61720092230361,41.89806404875561],[-87.61721392110206,41.89808413528314],[-87.6174784423862,41.898493467658],[-87.6174865993487,41.89850609505525],[-87.61749483465836,41.89851884450984],[-87.61764842191101,41.8987512230421],[-87.61765646998055,41.8987635094632],[-87.61765650465821,41.89876356181976],[-87.61773015239976,41.89887599128048],[-87.61773026075181,41.898876156335284],[-87.61795057097278,41.89921240782468],[-87.61797376577319,41.89924718262369],[-87.61799663293051,41.8992814655312],[-87.61799875503394,41.899284648614376],[-87.61819041967753,41.89957210653877],[-87.61826487468814,41.89968415099014],[-87.61848679424799,41.900018188605486],[-87.6185325846016,41.90008555120678],[-87.61854029024462,41.90009688675084],[-87.61854030867383,41.90009691403346],[-87.61854031590043,41.90009692478096],[-87.61861368472114,41.900204895558204],[-87.61880337464176,41.90048404404188],[-87.61881023005452,41.90049514595652],[-87.61886894746988,41.900590236175454],[-87.61893211244751,41.90069252828],[-87.6189790885478,41.90077210167556],[-87.61903537151565,41.900857001596094],[-87.61904988817267,41.90087655783353],[-87.61906786961032,41.900900782154935],[-87.61909685757351,41.900939848234295],[-87.61916340091467,41.901020476021145],[-87.6192289843447,41.90109229073433],[-87.61923485499544,41.901098719382745],[-87.61931111440455,41.90117441327503],[-87.6193673947533,41.90122519452097],[-87.61939199550167,41.90124739134402],[-87.61940512736123,41.901257662871885],[-87.61941406377792,41.901264652283],[-87.61944306995613,41.901285661063724],[-87.61946947224216,41.901304781808726],[-87.61948603125688,41.90131677358691],[-87.6195027026952,41.90132751084974],[-87.61956192791641,41.90136565390687],[-87.61964144419397,41.90141105338625],[-87.61964157304604,41.90141112663482],[-87.61963820282715,41.901417192395265],[-87.61963812410097,41.90141733488047],[-87.61973327531392,41.901470609446655],[-87.61976421412608,41.90148793147981],[-87.61979717904697,41.901506384917944],[-87.61983367868162,41.90152735810973],[-87.61986159142253,41.9015399000712],[-87.61987604013144,41.901546392137604],[-87.61990344613243,41.90155558681913],[-87.61992112735996,41.90156151855802],[-87.62037284166541,41.90169300165139],[-87.62038319957607,41.90169601793178],[-87.62040952952626,41.901703684958136],[-87.62045384465496,41.901716980363695],[-87.6205208634362,41.90173708736739],[-87.62056719550885,41.901749205075944],[-87.62056998023922,41.90174993339162],[-87.62063772766581,41.90176209892583],[-87.6209981410967,41.90182954069538],[-87.62114480500989,41.90185698494196],[-87.62114646036999,41.90185723532897],[-87.62115085583694,41.90185790034946],[-87.62127485659927,41.90187875711984],[-87.62139741344734,41.90190391324858],[-87.62151830760536,41.90193325761488],[-87.62161859400018,41.901961484010435],[-87.62163724548978,41.90196673351973],[-87.62166490419959,41.9019756379096],[-87.62175397067617,41.90200431193785],[-87.62186821236972,41.90204583532576],[-87.62186826541935,41.902045854589645],[-87.62186791632769,41.902047784914956],[-87.62186713009865,41.90205213157238],[-87.62186678618572,41.90205491895344],[-87.6218664030857,41.90205802661799],[-87.62186526653606,41.90206778931662],[-87.62186437565595,41.90207527582476],[-87.6218637331406,41.90208361842556],[-87.6218629159341,41.9020942296983],[-87.62186190637634,41.902107310685736],[-87.62186115681654,41.90211702336713],[-87.62185918726843,41.90213243347354],[-87.6218589841114,41.90213402359495],[-87.6218580667141,41.902140093366086],[-87.62185596672867,41.90215398428063],[-87.62185561467585,41.902156313598844],[-87.621854870704,41.90216747499481],[-87.62185438057968,41.90217482951843],[-87.62185766000384,41.90219707784207],[-87.62186191326589,41.90221343374712],[-87.62186505821748,41.90222552675573],[-87.62187480905746,41.9022538250423],[-87.62189332854764,41.9022977113801],[-87.62189342088291,41.90229793094187],[-87.62190948873895,41.90233623019894],[-87.62191628345553,41.902347372713145],[-87.62192951176642,41.90236906549318],[-87.62195072970725,41.90240015160355],[-87.6219704246695,41.902425911600304],[-87.62198393205385,41.90244357921683],[-87.62200696128038,41.90247318532145],[-87.6220093928841,41.90247631124547],[-87.62203438608083,41.902508417979845],[-87.62210757777589,41.90260244030742],[-87.62220687752269,41.90273198205342],[-87.62229604942725,41.90284831064087],[-87.62230339802372,41.90285695382175],[-87.62233118571801,41.90288963651902],[-87.6224112490385,41.902983754708146],[-87.62251198331285,41.90310217144292],[-87.62256090348127,41.90315529934492],[-87.62259114714912,41.90318814399632],[-87.6226646480145,41.9032632074294],[-87.62267657823489,41.903275391008506],[-87.62267767300516,41.90327650892315],[-87.62270767058429,41.90330714181631],[-87.62270861867461,41.90330780602471],[-87.6227141894881,41.90331293379331],[-87.62271793632782,41.90331638315345],[-87.62272254496926,41.90332062598994],[-87.62275059745839,41.90335156214693],[-87.62276664134336,41.903368603489646],[-87.6227902802193,41.90339371211754],[-87.62281062253093,41.90341408767395],[-87.62283187966268,41.90343537969751],[-87.62287360528616,41.903475511547704],[-87.62287831956401,41.903479870014735],[-87.6229084767641,41.90350775220138],[-87.6229353953825,41.90353160172927],[-87.62295837564373,41.9035528747516],[-87.62298773099694,41.90357893472666],[-87.62301432128359,41.90360261727644],[-87.62305551709777,41.903637640963176],[-87.62307213273489,41.90365033921111],[-87.62309678756512,41.903669181020604],[-87.6231183631755,41.90368565060158],[-87.62312570961814,41.90369125832127],[-87.62313343236089,41.90369715184693],[-87.62316861934212,41.903724015953074],[-87.62321290292734,41.90375187181176],[-87.62321527814603,41.90375336618993],[-87.62322921339751,41.903761914752344],[-87.62324578078464,41.903772077830126],[-87.62327949255358,41.90378962983543],[-87.62329698666578,41.9037987410095],[-87.62331356842722,41.90380737645278],[-87.62334439945322,41.90382304427487],[-87.62337159625922,41.903835040066035],[-87.62339595022026,41.90384577349148],[-87.62341239273835,41.90385302030181],[-87.62341490863261,41.903854185414524],[-87.62343545351173,41.90386370071847],[-87.62344369294362,41.90386752442511],[-87.62344660059652,41.90386887335272],[-87.62346490263212,41.903877213976045],[-87.62348658664965,41.90388709525834],[-87.62350325359408,41.90389454486958],[-87.62351721850781,41.903900786505055],[-87.62355584271538,41.903919219781216],[-87.62360684782246,41.90394741615521],[-87.62367193282643,41.903991314747685],[-87.62369492528286,41.90401752758757],[-87.62372268414077,41.904049174641166],[-87.6236552336307,41.90406180606827],[-87.62357245906358,41.90407730705717],[-87.62357397539719,41.90408165835223],[-87.6235749509176,41.90408445800926],[-87.62363149768923,41.90424691583093],[-87.62363770311043,41.90426474366158],[-87.62363770417896,41.904264746686835],[-87.62364539526868,41.904286843294614],[-87.6238602544693,41.90490197122508],[-87.62397698945222,41.905234579957224],[-87.62399108034003,41.90527447179439],[-87.62400381130536,41.905310513854936],[-87.6241058903378,41.90559967058819],[-87.62414742618057,41.90571732694935],[-87.62417190045235,41.905786640666264],[-87.62420122326243,41.9058696865366],[-87.62420427369872,41.90587832555125],[-87.62421521500578,41.90590936697318],[-87.6242917510196,41.90612650535803],[-87.62439753607767,41.90642660808732],[-87.62440518293735,41.90644869777756],[-87.62443401118324,41.906531972139575],[-87.62443519873872,41.906535403172484],[-87.62452302081893,41.90678907281721],[-87.624539235534,41.90683582344346],[-87.62459578818638,41.90699887899912],[-87.62469490558996,41.90725445739291],[-87.62480053015595,41.90752618447106],[-87.62480675762812,41.90752702530956],[-87.62480922815158,41.9075273586097],[-87.62480926042598,41.90752736347404],[-87.6248248776092,41.907623370661426],[-87.62483685021209,41.907665021533255],[-87.62484231790792,41.90768404286813],[-87.62486343985124,41.90778519596298],[-87.62488041668378,41.907866494773664],[-87.62489507890017,41.90794977545311],[-87.62490042420717,41.907980135734185],[-87.62490188221,41.90798841666017],[-87.6249019022566,41.90798849746419],[-87.62492847382697,41.908095276354175],[-87.6249546624936,41.90821333714507],[-87.62497151508971,41.90828931191422],[-87.62498898176365,41.908380857108575],[-87.62501943607894,41.90854040236111],[-87.62504575902348,41.90873474665982],[-87.62507269126492,41.90896707401047],[-87.62508766024227,41.90909413495228],[-87.62508968613358,41.909111333730294],[-87.62511225255791,41.90938293203434],[-87.62512251651144,41.909519515505956],[-87.62512251845166,41.90951953939272],[-87.62513550436034,41.90969234974514],[-87.62514472650534,41.909818531095524],[-87.62514417176122,41.90985097049333],[-87.62514306387314,41.90991580401849],[-87.62513502617237,41.9100048598206],[-87.62512392865851,41.91009480179556],[-87.62512112727399,41.91012459068053],[-87.62511589347679,41.910180234953124],[-87.62509515204759,41.91026523298919],[-87.6250607035959,41.91035055810781],[-87.62504149646308,41.910389874194045],[-87.6250168698167,41.91042748314143],[-87.62498712393203,41.91046297434133],[-87.62495259249503,41.91049593931177],[-87.6249260023807,41.91051700873691],[-87.62492427635453,41.910518376514275],[-87.62491765373059,41.910523010998276],[-87.62487906905575,41.910550013527704],[-87.62486183894602,41.91056458390196],[-87.62483808999588,41.910584667546296],[-87.62480170963899,41.91062209333105],[-87.62479451290599,41.91063120065034],[-87.62477022507062,41.91066193734198],[-87.6247530350949,41.910688120971905],[-87.62473748940711,41.91071806802688],[-87.62472544488854,41.910741271065724],[-87.62472248360042,41.91074859415031],[-87.62470338622173,41.910795827403355],[-87.6246879284627,41.91084851092326],[-87.62468704655684,41.91085151672209],[-87.624687045889,41.91085154388583],[-87.62468476715641,41.91090141824235],[-87.62467838988327,41.9110410030111],[-87.62466938848964,41.911238033517996],[-87.6246690918648,41.9112445231584],[-87.62466179642738,41.91140420042701],[-87.62466179639095,41.911404203719854],[-87.62466179673099,41.91140420619176],[-87.62466294355293,41.91141637705934],[-87.62458571026929,41.91147507772598],[-87.62446476693462,41.91156699961249],[-87.62442575979966,41.911596646731944],[-87.62424497661947,41.911734048390414],[-87.62375790508732,41.91210425447535],[-87.62368919598582,41.912158000636495],[-87.62334053023582,41.91243070709977],[-87.6232900910247,41.912470159339186],[-87.62320658599873,41.91252617374845],[-87.62311926061885,41.9125788442264],[-87.6231126808538,41.91258239846698],[-87.62302837246759,41.91262803514646],[-87.62296960529314,41.912656441804],[-87.62293414527514,41.912673582681954],[-87.62286494300102,41.91270333690489],[-87.62283687275784,41.91271540631536],[-87.62281946030326,41.91272200820777],[-87.62273681390951,41.91275334326257],[-87.62263422761103,41.912787340508636],[-87.62252937146036,41.912817262155706],[-87.62242257634404,41.912843055910514],[-87.62237269474144,41.912853072225765],[-87.62232301122607,41.912863048582466],[-87.62226644713083,41.912872260303175],[-87.62223643868158,41.912877147447496],[-87.6222079179388,41.91288179187745],[-87.6220917339255,41.91289622041337],[-87.62199963927414,41.912904135356875],[-87.62197468024429,41.912906280397536],[-87.62192313693254,41.91290933591915],[-87.62180937781204,41.91291379075557],[-87.62169759947987,41.9129219347449],[-87.62158650629117,41.91293444591854],[-87.62147646737569,41.91295129857572],[-87.62136774076245,41.912972414187855],[-87.62132112524472,41.9129834382183],[-87.62126065696228,41.91299773800273],[-87.62115551082178,41.91302721779227],[-87.62114852186009,41.91302949468848],[-87.6211426372497,41.91303141207958],[-87.62112402029265,41.91303747743085],[-87.62105256034579,41.91306074456984],[-87.62103416996675,41.91306761097967],[-87.62095206401152,41.91309826615801],[-87.6208570118132,41.913138483063555],[-87.62082547004576,41.91315347252558],[-87.62077863530673,41.91317572956455],[-87.62074688882987,41.91319300093112],[-87.62070352580845,41.91321659177325],[-87.62063205075108,41.91326093394194],[-87.62056447126282,41.91330856587683],[-87.62052694141101,41.91333858471298],[-87.6205010814854,41.91335926932378],[-87.62048246081788,41.91337618659151],[-87.62044206876334,41.91341288189683],[-87.62040983914058,41.91344627963569],[-87.62039163060453,41.913465148396895],[-87.62038861629519,41.913468266057784],[-87.62038772761132,41.91346918534433],[-87.62033828377982,41.91352793409424],[-87.62029388439758,41.91358888263492],[-87.62025471745473,41.9136518115038],[-87.62022100466497,41.91371647537714],[-87.6202058798827,41.91375191945155],[-87.62019278693033,41.913782600639976],[-87.62019115524427,41.913786962058765],[-87.62018941714526,41.913791608490605],[-87.62016642306664,41.91385710675081],[-87.62015993609637,41.913882066911675],[-87.62014931648048,41.91392307461214],[-87.62014918709615,41.91392357490426],[-87.6201491808057,41.913923611912246],[-87.62014834353617,41.91392852546319],[-87.6201377479506,41.91399073794811],[-87.62013465196229,41.91402808437797],[-87.62013214544974,41.91405832088553],[-87.6201324201334,41.914126050095405],[-87.62013305490177,41.91413655372205],[-87.62013363056629,41.91414606302283],[-87.6201350646656,41.91422020445694],[-87.62013649864409,41.914294323935536],[-87.62013892441266,41.914421031964146],[-87.62014037770618,41.91449698113562],[-87.62014476623817,41.91453207274164],[-87.62014553982503,41.91453825919003],[-87.62015075406528,41.91455762958803],[-87.62015647673215,41.91457888705474],[-87.62016171871801,41.914591310616295],[-87.62017315806355,41.91461842491454],[-87.6201952937004,41.91465643271227],[-87.62021660335212,41.91468444749092],[-87.62022270558242,41.914692470262814],[-87.62022339094717,41.91469318280394],[-87.62023374654608,41.9147039542625],[-87.62024617153801,41.914716890319085],[-87.6202550666233,41.91472615051628],[-87.6202636842919,41.91473336673705],[-87.62029201371554,41.91475708757093],[-87.62033311106619,41.914784922790226],[-87.62037795652459,41.91480937760366],[-87.6203898638941,41.914814522317414],[-87.6204259655583,41.9148301204427],[-87.62044409945035,41.91483615150038],[-87.62047666424324,41.9148469828844],[-87.62049461276246,41.914851811086734],[-87.62049692162263,41.91485243216859],[-87.62051383633498,41.91485573474653],[-87.62055106975158,41.91486300454647],[-87.62057281309266,41.91486546826772],[-87.62060640509118,41.914869275284424],[-87.62062599150876,41.91486994460477],[-87.62066233968521,41.91487118667026],[-87.62068334007125,41.91487025444499],[-87.62071821401462,41.91486870661897],[-87.62074585698984,41.91486527719772],[-87.62077340099589,41.91486185977909],[-87.62081600570095,41.914853065470375],[-87.62082735048384,41.9148507234181],[-87.62084252876372,41.914846270418366],[-87.62087947128134,41.914835432178485],[-87.62090244979647,41.91482650343779],[-87.62092910246778,41.914816146341295],[-87.6209757988963,41.91479308296059],[-87.62098412392048,41.914788330840054],[-87.62098914333723,41.91478546572326],[-87.62098925833149,41.91478540002639],[-87.62095504861767,41.9147494579706],[-87.62092106736407,41.914765426003086],[-87.62088749679234,41.914781201459114],[-87.62084101553859,41.914798063913985],[-87.62082604426938,41.91480200804652],[-87.62079226504092,41.914810906521666],[-87.62074187157648,41.91481951253012],[-87.62069049656479,41.91482377599879],[-87.62065956904235,41.914823732235796],[-87.62063884022537,41.91482370319344],[-87.6206152695537,41.914822184230765],[-87.6205645859013,41.91481717727396],[-87.620515015975,41.91480786849954],[-87.62049934261464,41.914803455081596],[-87.62046718243658,41.91479439926031],[-87.62042178246892,41.91477688338165],[-87.62037932661828,41.91475559900788],[-87.62035743064432,41.914741665907584],[-87.62034043644887,41.91473085159219],[-87.62033189190879,41.91472399642254],[-87.6203055860721,41.91470289133701],[-87.62030511433818,41.914702394721424],[-87.62027528677461,41.914672160222786],[-87.62027444028332,41.91467113576057],[-87.62026386765875,41.91465834073775],[-87.62023990550867,41.91462591928228],[-87.62022786563267,41.91460376995677],[-87.62022125577647,41.91459161067924],[-87.62021231427025,41.91456721523557],[-87.62020817013847,41.914555909082814],[-87.62020082560159,41.914519283210296],[-87.62020049364968,41.91451520734511],[-87.62019937125733,41.914501408991896],[-87.62019732980649,41.914411586849596],[-87.62019463569175,41.914293065926095],[-87.62019459894782,41.914291449074256],[-87.6201898925787,41.914085435755766],[-87.6201915157181,41.914025539102724],[-87.62019449887752,41.914001691368526],[-87.62019897587263,41.913965898238736],[-87.6202104149454,41.91391507266502],[-87.6202122729632,41.9139068158503],[-87.62022079263885,41.91388074372656],[-87.62022098208355,41.913880161755],[-87.62023094890388,41.91384960494706],[-87.62024840554749,41.913804791469126],[-87.62025855856753,41.9137787278389],[-87.62027511105582,41.91374404234633],[-87.62029173687772,41.91370920335541],[-87.62032256530527,41.913655053617354],[-87.62033040870911,41.91364127690798],[-87.62037438699126,41.913575250017736],[-87.62037439109956,41.913575244005955],[-87.62037442397828,41.91357519481402],[-87.62042359654232,41.91351117544987],[-87.62044228701329,41.91348898092903],[-87.62044507057506,41.91348636018571],[-87.62046939153197,41.91346346351756],[-87.62048964422907,41.91344439914749],[-87.62051929237711,41.91341649000499],[-87.62055964343477,41.91338142833051],[-87.62057231816881,41.91337041511813],[-87.62057238086867,41.913370360348374],[-87.62057501710899,41.913390985305405],[-87.62056671758783,41.91342373936974],[-87.62056467977594,41.91343178267179],[-87.62054796575225,41.91346126168222],[-87.62054766598656,41.91346175405661],[-87.62052717089577,41.913494250195576],[-87.62051894368538,41.913507294571986],[-87.6204936506185,41.913561555292276],[-87.62048589632361,41.913584860246296],[-87.62048642417571,41.91361002862914],[-87.62049033412872,41.9136241203563],[-87.62049504310544,41.913641091346484],[-87.62050565950263,41.91366763958722],[-87.62051093200895,41.91368488108822],[-87.62051533779133,41.91369928544117],[-87.62052019772113,41.91371487510035],[-87.6205532047399,41.91375981088785],[-87.62055323133855,41.913759830811394],[-87.62055810208624,41.91376342058266],[-87.62059011946614,41.913787016051074],[-87.62061602526708,41.91379260246072],[-87.62061724175618,41.91379286467564],[-87.62066613442161,41.91379366237546],[-87.62070203523257,41.91378948756678],[-87.62072102212792,41.91378727994471],[-87.62074473607467,41.913779848107886],[-87.62077322782461,41.913770919302245],[-87.62084308041916,41.9137369942202],[-87.62089556007263,41.91370927384975],[-87.62092984313836,41.913688680653294],[-87.62094778599126,41.9136779026085],[-87.6209876502935,41.91365498920018],[-87.62101197708367,41.913641006250344],[-87.62105340459742,41.913622721872905],[-87.6210943853364,41.9136046350377],[-87.62112404826924,41.91359758661819],[-87.62116360276721,41.913588187640194],[-87.62122744770328,41.913581553167575],[-87.62125905310022,41.913578268940554],[-87.62128962401025,41.913573850412746],[-87.62132440915676,41.91356882272007],[-87.6213522224289,41.913564859906224],[-87.62138273411479,41.91356051288511],[-87.62142011315801,41.9135559422435],[-87.62146496131558,41.913550292213536],[-87.62149766656438,41.913545464525775],[-87.62150831291457,41.91354389331952],[-87.62155260920423,41.913538377045484],[-87.62160480799837,41.91353410841533],[-87.62162372903532,41.91353256104526],[-87.62173208451792,41.913528430205695],[-87.62183135848444,41.91353238017243],[-87.62184482583419,41.913532916143474],[-87.62188878185424,41.91353494452891],[-87.6219022455723,41.91353574144667],[-87.62193177617169,41.91353748889119],[-87.62193442256797,41.91353758706489],[-87.6219397814698,41.91353778546821],[-87.62210098094008,41.913545891329235],[-87.62230978301962,41.91356164654139],[-87.62242722821405,41.91357269229415],[-87.62255701407621,41.913598505808764],[-87.62263087021606,41.91361319534195],[-87.62290563478473,41.91368075681203],[-87.62290691603886,41.91368117609875],[-87.62293220518973,41.91369000431656],[-87.62300110316183,41.913710550674544],[-87.62302232499493,41.91371687951648],[-87.62309650441908,41.91373997768825],[-87.62319408542402,41.913776476254206],[-87.62321513983684,41.91378511850577],[-87.62326942810577,41.91380740310303],[-87.6232737612696,41.91380968784828],[-87.62328206597566,41.91381406739702],[-87.62332494837662,41.913836643125386],[-87.62334217268693,41.9138457139191],[-87.6233501520098,41.91384991636932],[-87.62343751194484,41.91390042858812],[-87.62353599643406,41.91395158606969],[-87.62358873423912,41.91397605109863],[-87.62365014926658,41.914004541727124],[-87.623776485654,41.91406218285974],[-87.62388462939239,41.914107197778264],[-87.62390863847753,41.91411907521462],[-87.62402450457837,41.91417639342748],[-87.624055730643,41.914195835692404],[-87.62407610019989,41.91420851744756],[-87.62410193429113,41.914224606154754],[-87.62412754909208,41.91424055876015],[-87.62419134446014,41.9142891136676],[-87.62419134665011,41.914288949027544],[-87.62420715192815,41.91429845055251],[-87.62420725886564,41.91429851487897],[-87.62420818302897,41.914299066412966],[-87.62427175325504,41.91433700329636],[-87.62433923150029,41.91438481248],[-87.62439664361,41.914432394821674],[-87.62441110463206,41.91444411934934],[-87.62444507509956,41.91447166239357],[-87.62450606475377,41.91451808647472],[-87.6245467134168,41.91454671242199],[-87.62458569063679,41.91457013815715],[-87.62461171621905,41.914585780073274],[-87.62463006995357,41.91459534886073],[-87.62465368873502,41.91460766445455],[-87.6246677468747,41.91461499817089],[-87.62467065720365,41.91461651667548],[-87.62467977176533,41.9146212713171],[-87.62472606964288,41.91464552867964],[-87.62473489358014,41.91465015172148],[-87.62478636749248,41.914676704164876],[-87.62479949076557,41.91468369181223],[-87.62482453635823,41.914697027696825],[-87.62486714594428,41.91472454077137],[-87.62494204936054,41.91477865169865],[-87.62501037556075,41.91482954034802],[-87.62509279078596,41.914898846191825],[-87.62523735771047,41.91502588986776],[-87.62537824525387,41.915156688101696],[-87.6254513090062,41.91522451890998],[-87.6254566255226,41.91522883267825],[-87.62546947778783,41.915237885803414],[-87.62547879151298,41.915244446761],[-87.62550846847354,41.91526534833761],[-87.62554938120367,41.9152933682582],[-87.62556232668338,41.915302233967985],[-87.62559306559447,41.91532538958949],[-87.62560812935176,41.91533673650729],[-87.62561406908965,41.915341608991966],[-87.62564443047178,41.9153665152843],[-87.6256770058095,41.9154010743068],[-87.62569467324025,41.91542258348611],[-87.62570575522771,41.915436074888355],[-87.62570900642679,41.91544000160451],[-87.62571855953533,41.915451538476155],[-87.62573062745074,41.91546611360933],[-87.62574900312754,41.915484311021984],[-87.62577064174579,41.91550573955712],[-87.62578678233291,41.91551899401209],[-87.62580017062758,41.915529988100865],[-87.62583381307142,41.91554715141923],[-87.62583659669878,41.915548571419],[-87.6258421993998,41.915550996435364],[-87.6258710056635,41.91556346530936],[-87.62592113356474,41.915585618187066],[-87.62595212213533,41.915594740455234],[-87.62597921631571,41.915602716061656],[-87.6259952820239,41.9156065869687],[-87.62601743535504,41.9156119248405],[-87.62603523031017,41.91561680913421],[-87.62604791205793,41.915620289816445],[-87.626086131559,41.915632819637466],[-87.62612968873634,41.91565441109824],[-87.6261536473039,41.915666528146524],[-87.62617060972042,41.91567510733156],[-87.62618322026634,41.91568277634674],[-87.62620666837192,41.915697036773715],[-87.62625767837311,41.9157350587575],[-87.62628807821511,41.91575771841771],[-87.62640257804327,41.91587634251662],[-87.62641156853735,41.91588920434594],[-87.62641939725128,41.915900403430626],[-87.62650017691966,41.91598503895738],[-87.62651028962408,41.91599576142789],[-87.62654963936014,41.91603748344134],[-87.62663238447158,41.91613379338199],[-87.62665847574647,41.91615587236619],[-87.62672506327665,41.916212217979776],[-87.6267608611541,41.916241211748506],[-87.62677808494446,41.916255162078016],[-87.62678850879557,41.91626446520377],[-87.62681252405488,41.91628589801104],[-87.62681257607728,41.91628594498298],[-87.62649167315675,41.916499226778924],[-87.62604376116909,41.91679438722205],[-87.626043728596,41.91679440897521],[-87.62606822757978,41.91681508668629],[-87.62609272694975,41.91683576412006],[-87.62609276803046,41.91683573720527],[-87.62613435236534,41.916808564248704],[-87.62618411896563,41.91677604377675],[-87.62625356680782,41.9167306626479],[-87.62633867736119,41.91667495013382],[-87.626705226062,41.91643500935049],[-87.62672569471218,41.916454673924314],[-87.62674388813952,41.91647745318505],[-87.62677145557842,41.91650978487144],[-87.62684557226757,41.916562271709374],[-87.62689198689077,41.9166208193818],[-87.62689605093932,41.91662594644931],[-87.62690049753029,41.91663333354451],[-87.62693498248807,41.91669062037708],[-87.62696706442952,41.91672363263998],[-87.6270055705821,41.91676325491074],[-87.62706752300636,41.916821994410974],[-87.62708483994808,41.91683841314828],[-87.6271238224269,41.91687086956856],[-87.62713581004033,41.91688085049861],[-87.62721645415317,41.91694794907669],[-87.62735384788118,41.91705655908549],[-87.62748702191382,41.91713805803459],[-87.62753372242699,41.91717561909146],[-87.62758233027665,41.917214714348574],[-87.62761546352091,41.91725223918217],[-87.62765513677078,41.91730114937533],[-87.62769224068131,41.91734689257101],[-87.62774497307015,41.91741620726621],[-87.62785651453078,41.91753039350824],[-87.62787003960037,41.91754668674321],[-87.62788987522393,41.91757058183132],[-87.62789977834804,41.917586032012736],[-87.6279089467595,41.9176003360819],[-87.62791377257123,41.91761751137332],[-87.6279175737233,41.91763104262476],[-87.62791503911245,41.917654407302216],[-87.62791503762169,41.917654409214016],[-87.62790852585154,41.917661941349074],[-87.62790373026294,41.9176649412371],[-87.62789132248172,41.91767270278934],[-87.62785578720786,41.91764306637322],[-87.62759290042243,41.91779274029423],[-87.62724364161193,41.91799468139546],[-87.62709229658164,41.91808153041718],[-87.62698211840065,41.91814475553704],[-87.6269748953793,41.918148900162606],[-87.62680013444887,41.91825141642001],[-87.6268000823061,41.918251446834475],[-87.626831575833,41.91830092634343],[-87.62683165680268,41.91830088073866],[-87.62711257579373,41.91814176107859],[-87.62735447734255,41.91800282720072],[-87.62736090328863,41.91800989137652],[-87.62736599635751,41.918014809057034],[-87.62737351908888,41.91802207179678],[-87.62738691667805,41.91804152866915],[-87.62740574101555,41.91806886656311],[-87.62743506277381,41.91812544037343],[-87.62747885864046,41.91819451665423],[-87.62749436353029,41.9182189713521],[-87.62757257643872,41.91827677924299],[-87.62760975757841,41.918303119617654],[-87.62761993451628,41.91831032949966],[-87.62763608121172,41.91832316111683],[-87.62767693860046,41.91835563078683],[-87.62772364508288,41.918389271122905],[-87.62776818554208,41.91842135121069],[-87.62778757521873,41.91843531688901],[-87.62785658452471,41.91849613058681],[-87.62789328716623,41.91852847421362],[-87.62792748245062,41.91856622775705],[-87.62797215695218,41.918615550551834],[-87.62797899508061,41.918623100208045],[-87.62801148525526,41.91865534547199],[-87.6280273996106,41.918671139643415],[-87.61600490454916,41.91896479263868]]],[[[-87.60530617597296,41.869851142736096],[-87.60505178311892,41.86036129133546],[-87.6048887331761,41.85426939016858],[-87.60435083658092,41.852747356890305],[-87.6034377853501,41.850165388562736],[-87.60169233640231,41.845229371742974],[-87.6076839440712,41.84526570056594],[-87.60780078377465,41.84526640576969],[-87.60879725334547,41.84526652155602],[-87.60877834179543,41.8452881134514],[-87.60876094234084,41.84530797886525],[-87.60873050787286,41.845345173259496],[-87.60868487657189,41.845400939853945],[-87.60864492721579,41.84545446509561],[-87.60863749742569,41.84546441938943],[-87.60861385048266,41.84549610220075],[-87.60854801245844,41.8455933271686],[-87.60854648625676,41.84559587847888],[-87.60854071811255,41.84560552080168],[-87.6085264870517,41.84563184392731],[-87.60850492153163,41.845671733655124],[-87.60847896092547,41.8457298391919],[-87.60847464896787,41.845739489877964],[-87.6084500139242,41.84580848969468],[-87.60843394975605,41.84586782645857],[-87.60843105669503,41.84587851382258],[-87.60842066457907,41.8459343482116],[-87.60841788898217,41.84594925972903],[-87.60841728638857,41.845955140437326],[-87.60841058881539,41.84602048174863],[-87.6084094950509,41.846043147078056],[-87.60840838556291,41.84606613228856],[-87.60840867238802,41.84608438643046],[-87.60840956009143,41.84614086583515],[-87.60841657325811,41.846215389523614],[-87.6084217526748,41.84624525750727],[-87.60842942615686,41.84628951071297],[-87.60844808587707,41.846362927874104],[-87.60845685670435,41.846388979854886],[-87.60847248183414,41.846435393026766],[-87.60848516127017,41.846465488363464],[-87.6085025063671,41.8465066587792],[-87.60850835440414,41.846518136494474],[-87.60851572020046,41.84653259279975],[-87.60852483112582,41.8465504665642],[-87.60853809072374,41.846576477161165],[-87.60857908728904,41.84664462851878],[-87.60866726648607,41.8467602398254],[-87.60871811142817,41.84682690166633],[-87.60904954612046,41.847264670763515],[-87.60930379125074,41.84760230806227],[-87.60932587680428,41.84763570768027],[-87.60936085720893,41.8476948698815],[-87.60936711419048,41.84770545193361],[-87.6094029019609,41.84777683609319],[-87.60941221932373,41.84779925694672],[-87.60943316776806,41.847849667335645],[-87.60944747436938,41.847892770713514],[-87.6094577308224,41.84792367010012],[-87.60947659358443,41.847998591934086],[-87.60947659535756,41.84799859743379],[-87.60948965299839,41.84807422884139],[-87.6095025709071,41.848218127689776],[-87.60951218502474,41.848325223892544],[-87.60954333666456,41.848696088857224],[-87.60954334835478,41.848696223948316],[-87.60952146553929,41.848700147542424],[-87.60952161119319,41.84870633867951],[-87.60952225878671,41.84873393461224],[-87.60952000616959,41.84881654942656],[-87.6095150999501,41.848866570723914],[-87.60951192008656,41.84889899108672],[-87.60950371857126,41.848947294292756],[-87.60949800356968,41.84898095609582],[-87.60946698516638,41.84913106406725],[-87.60945710859667,41.84918023350062],[-87.60945011843226,41.84921500637062],[-87.60944295481151,41.84925064423396],[-87.60938259920508,41.84954056164493],[-87.60937481333782,41.84957796150841],[-87.60937181956581,41.849592761345335],[-87.60932708129471,41.84981339083677],[-87.60928818334193,41.85000521746202],[-87.6092561786901,41.850163112817235],[-87.60921775742996,41.85035266303299],[-87.60921607423042,41.850359721623235],[-87.6092136740453,41.85036978833678],[-87.60920991264737,41.85038931332655],[-87.60920757189315,41.85040146522559],[-87.6092044615873,41.850417608457576],[-87.60920444600309,41.85041768849158],[-87.60920443350972,41.850417754823795],[-87.60920107273122,41.85043527820913],[-87.60919854571901,41.85044845363856],[-87.60919182081018,41.85050573050382],[-87.60918924730937,41.85052764828902],[-87.609188643094,41.85054164759207],[-87.60918581854561,41.850607073416214],[-87.6091871941323,41.85065179342054],[-87.60918826237162,41.850686535020415],[-87.60919658116089,41.85076575951397],[-87.60920544190888,41.85082950954811],[-87.60920557695411,41.850830553216596],[-87.60920671567293,41.85083603902753],[-87.60922178096892,41.85090863559156],[-87.60922180009634,41.85090872956568],[-87.60924383031707,41.85098611869727],[-87.60927156176643,41.85106247460434],[-87.60930488679821,41.851137547700304],[-87.60934373418046,41.851211146531156],[-87.60936125193936,41.851239605112724],[-87.60936981441017,41.85125349671871],[-87.60938799692785,41.85128299516822],[-87.60942057896956,41.85132899666869],[-87.60943753008573,41.851352929682946],[-87.60949215327335,41.85142067258527],[-87.60961630613032,41.851571749324556],[-87.60967894907077,41.8516479765899],[-87.60973548355594,41.851716765726216],[-87.60991944395403,41.85194060193849],[-87.61001108791822,41.85204554342756],[-87.61001696499471,41.85205258899316],[-87.61001992453784,41.85205613701806],[-87.61010034650945,41.85215262241456],[-87.61013682811681,41.85219639083844],[-87.61021973879001,41.85230153347865],[-87.6102574934505,41.85234941171617],[-87.61025755098827,41.85234948480116],[-87.61025893006038,41.85235133652494],[-87.61034317321506,41.85246445924829],[-87.61037251554663,41.85250387005715],[-87.61037318446532,41.852504769169286],[-87.61037574395577,41.852508415655144],[-87.61048365640507,41.85266216172514],[-87.61049669583257,41.85268244589667],[-87.61051908078346,41.85271726921677],[-87.61055970305281,41.85278470010112],[-87.61059042384292,41.85283569424416],[-87.61060429982041,41.852860969703315],[-87.61060432931731,41.85286102312747],[-87.61061110564471,41.85287336551779],[-87.610611137649,41.85287342444623],[-87.61064051277951,41.852927005623286],[-87.61065635148798,41.852955895260166],[-87.61068710855773,41.853017832319004],[-87.6107168287641,41.8530776818772],[-87.61071687746295,41.85307779030723],[-87.61073545964179,41.85311945989783],[-87.6107717845294,41.853200915345745],[-87.61080429902245,41.85328306333475],[-87.6108119975299,41.8533024779688],[-87.61082110945068,41.85332545832192],[-87.61083967995442,41.85337890780661],[-87.6108497662399,41.85340793878112],[-87.61086480620754,41.85345120051067],[-87.61086611950552,41.85345521483433],[-87.61089433512146,41.853548075116954],[-87.61090441590542,41.85358125261937],[-87.61091178042373,41.853609966245706],[-87.61093317955157,41.85369339911403],[-87.6109351197552,41.85370093963012],[-87.6109369776743,41.85370815964858],[-87.61095093711576,41.853774682275805],[-87.61096376747604,41.853835825921735],[-87.61098471487313,41.853964114610335],[-87.6109998205887,41.85409286051794],[-87.61099988906143,41.85409329948037],[-87.61100039163907,41.85409916491657],[-87.61100082958772,41.854104282411505],[-87.61100827299579,41.85418986762059],[-87.61100827351372,41.85418988683362],[-87.61101081794669,41.85428664656764],[-87.6110108173697,41.85428666522493],[-87.61100749003985,41.85438341492195],[-87.61101081198365,41.854422851532135],[-87.61101131098285,41.854428774300345],[-87.61102238407649,41.85450488748816],[-87.61102246408923,41.854505246939766],[-87.61102479529096,41.854515687021106],[-87.61103195961041,41.85454772266758],[-87.611039263055,41.85458037801764],[-87.61106195296838,41.85465502720099],[-87.61106567133145,41.85466468264108],[-87.61109027010441,41.85472855917977],[-87.6111242177463,41.854800781598335],[-87.61116160816925,41.854863997608675],[-87.61117530278905,41.85488372132336],[-87.61120430304514,41.85492549036186],[-87.61120466459192,41.85492601349444],[-87.61123348678763,41.854961817319484],[-87.61125284761877,41.85498586729029],[-87.61130593916268,41.85504333588311],[-87.61136375925359,41.85509820106439],[-87.61142608906522,41.85515023971594],[-87.61144093655842,41.855161170098256],[-87.61149267492723,41.85519925868726],[-87.6117060615472,41.85533204938096],[-87.61193106730013,41.85547207378915],[-87.61214574391296,41.85560566869642],[-87.61214785882476,41.855606889722665],[-87.61223589825465,41.85566101062128],[-87.61232011963699,41.85571842720615],[-87.61233641863144,41.855730745571684],[-87.61234479743429,41.85573707839497],[-87.61236571995073,41.855752901926785],[-87.61240026762509,41.85577902975912],[-87.61247612453222,41.855842623452446],[-87.61250294293795,41.85586672193842],[-87.61256797691776,41.855929863721],[-87.61262828254173,41.855995610278015],[-87.61262829376608,41.855995624069706],[-87.61268364277089,41.85606374098909],[-87.61273387654006,41.85613403491058],[-87.61273811863124,41.85614084998554],[-87.61274054633094,41.85614475107993],[-87.61277887551879,41.856206298722896],[-87.6128184957028,41.85628031226283],[-87.61284146077968,41.85633117232489],[-87.61285259338759,41.85635582847489],[-87.61285413306268,41.856367521242035],[-87.61286165883851,41.856424684316146],[-87.61287707341418,41.85650130587982],[-87.61287751216203,41.85650348866665],[-87.61289180209874,41.856554923279745],[-87.6128991752245,41.85658150618191],[-87.61293364765528,41.85665639381339],[-87.61295702642632,41.856713946109515],[-87.61297461846482,41.85675725510801],[-87.61298306746244,41.856781653740576],[-87.6130099604171,41.856859315996694],[-87.61303956515735,41.85696238398174],[-87.61304003519174,41.85696449451574],[-87.61304015928077,41.85696504908418],[-87.61304879470136,41.8570035233293],[-87.61305452643724,41.85703245598285],[-87.61305848877521,41.857060022976114],[-87.61306542222367,41.85710826596432],[-87.61307047730452,41.85718445012928],[-87.61307047708898,41.857184469337696],[-87.61306965832237,41.857260708048],[-87.61306965700875,41.857260726975106],[-87.61306353451873,41.85737270375465],[-87.61306353357216,41.857372722684055],[-87.61306333128995,41.85737642121674],[-87.61306333034337,41.857376440146155],[-87.61305639885879,41.857503490968085],[-87.61305574203942,41.85750971657642],[-87.61304175707203,41.85761105643962],[-87.61303702677812,41.85762810837209],[-87.61300820650449,41.857732004486934],[-87.61298972796796,41.85778885954273],[-87.61296801714263,41.85785576545273],[-87.61292211319709,41.857978419748655],[-87.6128926755136,41.858047746177256],[-87.61288880925133,41.858056851502596],[-87.61287057062195,41.8580998040125],[-87.61286094410681,41.858126829392674],[-87.61283501010811,41.85818725978767],[-87.612827022983,41.85820224873112],[-87.61281332963394,41.858227890188516],[-87.61280355091299,41.85824620133342],[-87.61278602123504,41.8582734378279],[-87.61276675055475,41.85830338020599],[-87.61273686394736,41.858342594388866],[-87.61272472405275,41.85835852297117],[-87.61272455133384,41.858358670625925],[-87.61272220525464,41.858360669088924],[-87.61263859039633,41.858431912649955],[-87.61254399916525,41.85849112479291],[-87.61253910861862,41.85849418632288],[-87.61240293184093,41.858489873559044],[-87.612344147275,41.85849745134477],[-87.612265295568,41.85850761580511],[-87.61219719011736,41.85857418580795],[-87.61218679536319,41.85858434671898],[-87.61217732036764,41.85862059367685],[-87.61217095460259,41.85864501130099],[-87.61216500695816,41.85866782671168],[-87.6121650075073,41.85866784318063],[-87.61216500747338,41.858667846199104],[-87.61216755420324,41.858737250599205],[-87.61216755472464,41.858737269537805],[-87.61217464591164,41.85893053985341],[-87.61218264376731,41.85903223715776],[-87.61219920132733,41.85924342868759],[-87.61220091170121,41.85926524470147],[-87.61220091303382,41.859265256784546],[-87.61221884210784,41.85933249320489],[-87.61224285160296,41.85940421458386],[-87.61225845744279,41.85944308884045],[-87.61227631305266,41.85948746572257],[-87.61231533299662,41.85956935190425],[-87.61233237885222,41.859597587769024],[-87.61234264215402,41.85961936993178],[-87.6123518832483,41.859638983206295],[-87.61236575810788,41.859681606479214],[-87.61239772480087,41.85977050162783],[-87.61240213449769,41.85978339435919],[-87.61240334043981,41.85978692005947],[-87.61242223785851,41.85985298249305],[-87.61242227234575,41.85985314763904],[-87.6124329790367,41.85990782023276],[-87.61243539611273,41.8599201623072],[-87.61243652240613,41.8599305508796],[-87.61244271365115,41.85998766166137],[-87.61244271212124,41.859987667140274],[-87.61240859544982,41.860083825877645],[-87.61231561665295,41.860151903631696],[-87.61218956229624,41.86017399046309],[-87.61218331232604,41.860175085143155],[-87.61218316519336,41.86017511138737],[-87.61218316571475,41.86017513032598],[-87.61218472602705,41.8602155632175],[-87.61218472654845,41.860215582156115],[-87.61218663294957,41.860265007112766],[-87.61215252956715,41.86026509483498],[-87.61215252898734,41.86026511376666],[-87.61215246560613,41.860267454763736],[-87.6121524650263,41.860267473695416],[-87.6121522142525,41.86027675619668],[-87.61215221367267,41.86027677512836],[-87.6121513887682,41.86030768448608],[-87.61215138782131,41.860307703415465],[-87.61215037748758,41.86034554276358],[-87.61219610038067,41.86034540807864],[-87.6122038643408,41.860345385203885],[-87.61220386412808,41.86034540413789],[-87.61220373242635,41.86035389127956],[-87.61220380621353,41.860353891194016],[-87.61239330262472,41.86035370903553],[-87.6123933020388,41.86035372851604],[-87.61239330194941,41.8603537364738],[-87.61239330136966,41.8603537554055],[-87.61239191989088,41.86040389627558],[-87.61239191931112,41.860403915207264],[-87.6123908878698,41.86044135842916],[-87.61239088729005,41.86044137736086],[-87.61239051471092,41.86045487234644],[-87.6123903318267,41.86045487860789],[-87.61234199640556,41.860456501093125],[-87.61220535463511,41.860461087521166],[-87.61220524409762,41.86046109121791],[-87.61220524388489,41.8604611101519],[-87.61220285628258,41.860634403117814],[-87.61220293081963,41.86063440166485],[-87.61220579775384,41.86063434474831],[-87.61220810694032,41.86063429914856],[-87.61224762577724,41.860635891962495],[-87.61225929074882,41.86063768090765],[-87.61228643523809,41.8606418436682],[-87.61232358065709,41.860652010511615],[-87.61235833223947,41.86066619746194],[-87.61237700879882,41.86067674285926],[-87.61238612688163,41.860681895897294],[-87.61238992207036,41.860684040752794],[-87.6124176214658,41.86070518070663],[-87.61245307329682,41.86075831321884],[-87.61245348173782,41.860758750471895],[-87.61245503243477,41.86076041059788],[-87.61246307204678,41.86077346908459],[-87.61246499460829,41.86078486951887],[-87.61246548091943,41.86078775403476],[-87.61247141645741,41.86082799429157],[-87.61251636513659,41.860826125467675],[-87.6125481813488,41.8608248026408],[-87.61254824966124,41.86082479977642],[-87.61254825018275,41.86082481871503],[-87.61255441144985,41.86108672202991],[-87.61255441197135,41.86108674096851],[-87.61255446761598,41.861089108234026],[-87.61255446813749,41.861089127172626],[-87.612561110188,41.86137287964876],[-87.61256129266151,41.86137287750085],[-87.61257951796406,41.86137266476519],[-87.61264810590427,41.86137186384072],[-87.61264823404137,41.86137186217497],[-87.61267741353522,41.86140853722445],[-87.6126922527127,41.86142718778389],[-87.6127040582395,41.861442824231126],[-87.61274448581457,41.861496369319546],[-87.6127672267029,41.86152648196158],[-87.61278452835208,41.861549392491],[-87.61287160484113,41.861673676756254],[-87.61292191643093,41.861751273473594],[-87.61295348306953,41.86179995936709],[-87.61301167097697,41.861897386004784],[-87.6130163614323,41.861905239281185],[-87.61301864738779,41.86190906648012],[-87.61303001735828,41.861928101933835],[-87.61310113653668,41.86205796708259],[-87.6131172897547,41.86209030042552],[-87.61316680578213,41.86218941684354],[-87.61320364499944,41.86225968056204],[-87.61323012012167,41.86231473184644],[-87.613245784996,41.86234731375584],[-87.61325964436429,41.86237614091099],[-87.61331008351135,41.862493993655896],[-87.61332403664059,41.86253109146269],[-87.61335489280054,41.86261312832297],[-87.61339116039508,41.8627246347462],[-87.61339399910884,41.862733352088355],[-87.61342740510563,41.86285455520449],[-87.61342908819377,41.86286147028774],[-87.61342982655873,41.86286450429366],[-87.61343405974615,41.862885805352406],[-87.6134447337746,41.86293951576108],[-87.61345222281787,41.863002188957516],[-87.6134537619314,41.863015066941685],[-87.61345548803985,41.86305565286825],[-87.6134569867757,41.86309088333778],[-87.61345698589686,41.86309089623025],[-87.61345698582915,41.863090902267174],[-87.61345538249621,41.863135687156706],[-87.61345538191674,41.86313570608841],[-87.61345430019118,41.86316671783847],[-87.61345429998187,41.86316673649806],[-87.61345425835032,41.86317375328397],[-87.61345425813793,41.86317377221795],[-87.61345417607596,41.86318760052736],[-87.61345417512939,41.863187619456745],[-87.61344995341184,41.863279314055696],[-87.61344642615013,41.86331139033801],[-87.61343989613943,41.863370772018285],[-87.61342723514741,41.863443292604444],[-87.61342400749916,41.863461781513145],[-87.61340329060158,41.86354787597342],[-87.61340228876885,41.863552095563335],[-87.61338723847734,41.86361431160102],[-87.61330346707045,41.86396061648376],[-87.61329795600336,41.86398338197967],[-87.6132940744628,41.86399941616852],[-87.61328603796628,41.86402856432221],[-87.61325506345531,41.86412911837433],[-87.6132510241357,41.86414223169071],[-87.61321025933675,41.86425484679024],[-87.61318815620022,41.86430794827711],[-87.61316389001733,41.86436624642696],[-87.61316090554475,41.86437371978697],[-87.613160904789,41.8643737217032],[-87.61313084089424,41.86444877884318],[-87.61304174770608,41.864660789917316],[-87.61301156356225,41.86472792526721],[-87.61298489343254,41.8647872445252],[-87.612957406859,41.86484838769711],[-87.61294705282245,41.86487142081996],[-87.61289880646791,41.864972138373645],[-87.61284682882084,41.86508064455016],[-87.61283037063914,41.86511295636624],[-87.61278556383705,41.865200924809734],[-87.61276267838744,41.86524588706881],[-87.61274107792288,41.86528832444386],[-87.61267864395482,41.86528186597777],[-87.6126501379733,41.86527891705488],[-87.61265013795482,41.86527891870132],[-87.61265013848254,41.86527893709109],[-87.61266354791536,41.865680018541745],[-87.61266354843691,41.86568003748033],[-87.61266898964242,41.865842731744266],[-87.6119815029544,41.86585298212153],[-87.61157844041105,41.86585899012583],[-87.61117451221575,41.86586107413176],[-87.61048037230623,41.865864652362355],[-87.61048036507228,41.865864512360154],[-87.61047915870166,41.865840590014585],[-87.61047463171116,41.86575083118428],[-87.61047263003066,41.86571114553452],[-87.6104662894396,41.865585049943824],[-87.61045628366061,41.86538606873614],[-87.61045177565471,41.86535104240982],[-87.61044764100836,41.865318917457444],[-87.61044100419315,41.86531884769105],[-87.6104215790264,41.865318643639625],[-87.61037098102204,41.8653220219095],[-87.61037087814805,41.8653220289458],[-87.61033917293388,41.865274489693455],[-87.61030712009189,41.865226429854935],[-87.61029337418151,41.865205811669625],[-87.61026080135356,41.86515695573057],[-87.61019059533623,41.865050260495586],[-87.6101806369708,41.86503512692561],[-87.61010018116173,41.86490325337447],[-87.61005195476774,41.864817411426316],[-87.61002510567724,41.8647696024461],[-87.60995549068335,41.86463435522741],[-87.6099554824196,41.86463433925871],[-87.60996754596182,41.8646300096253],[-87.60996907385464,41.864629461343036],[-87.60996907680376,41.86462946026392],[-87.60996908454368,41.86462945756841],[-87.60989447088883,41.86446466168329],[-87.60989433234835,41.864464706365126],[-87.60989241642712,41.86446531861296],[-87.6098850825027,41.86446766210668],[-87.60988503976525,41.86446767555869],[-87.60987588147535,41.86444593473299],[-87.6098597606368,41.8644076645189],[-87.60985358834508,41.86439300427751],[-87.60981764049205,41.864307623768205],[-87.60981131340796,41.86429259536864],[-87.60981014412015,41.8642898942473],[-87.60979356663894,41.86425159370371],[-87.60978078576947,41.8642173428904],[-87.60976388230985,41.86417204327638],[-87.60974965809194,41.86412430196726],[-87.60973986399567,41.86409143083989],[-87.60972245784471,41.863997439856924],[-87.6096991352871,41.86387141446834],[-87.60969608820389,41.86385598466277],[-87.60967545008543,41.863751479020856],[-87.60966064883976,41.86365188421437],[-87.6096573659341,41.86362979427458],[-87.6096563691097,41.86361987466688],[-87.60965300897399,41.86358643539685],[-87.6096490761914,41.86354735994619],[-87.60964508530726,41.8635077075622],[-87.60961140307018,41.86350845031213],[-87.60961119303114,41.86350845475147],[-87.60960748160511,41.86344288496536],[-87.60960535465615,41.86340530964742],[-87.60960534667775,41.863405170738105],[-87.60960534579,41.863405151797195],[-87.60963702111715,41.863403809682026],[-87.60965044881824,41.863403240614716],[-87.60965239552745,41.86337700934927],[-87.60965239721241,41.86337699015014],[-87.60962823997987,41.86337387441075],[-87.60962783118613,41.86328964231007],[-87.60962783066859,41.86328962309707],[-87.60963939220382,41.86328883590377],[-87.60965473422182,41.863287791794484],[-87.60965476104387,41.8632877897681],[-87.60965502787542,41.86328356283536],[-87.60965726322274,41.863248142621906],[-87.60965726417042,41.863248123692564],[-87.60967391983243,41.86324589630513],[-87.6096757598404,41.86321502932869],[-87.60967576115516,41.86321501040166],[-87.60967817389147,41.86317453612293],[-87.60967817483915,41.863174517193585],[-87.60968017032705,41.86314086550862],[-87.60968017127473,41.863140846579256],[-87.60968080368761,41.86313017872626],[-87.60968080500857,41.8631301592504],[-87.60969414731858,41.862998464726715],[-87.60970041358081,41.862955647262474],[-87.609713359314,41.86286719137694],[-87.60972391898599,41.8628120263166],[-87.60973344808613,41.86276224035175],[-87.6097351621534,41.86275331614845],[-87.60973840191826,41.862736448173074],[-87.60979179450035,41.862520022852486],[-87.60979863924646,41.86249227824884],[-87.60979864385563,41.86249226016584],[-87.60977623474454,41.86248764695657],[-87.6097762292476,41.86248764609867],[-87.6097775520764,41.8624834658841],[-87.6098198534375,41.86234980255665],[-87.60988266472549,41.86215121266851],[-87.60988908882621,41.86213296517839],[-87.60989760711152,41.86210877119145],[-87.60993823713224,41.862005376516066],[-87.60994799486495,41.861983841003024],[-87.6099694084539,41.861936582129054],[-87.60998446767806,41.86190330717057],[-87.61003622492558,41.86180272706392],[-87.61008381116007,41.86172043853587],[-87.61009343248058,41.861703800362605],[-87.61020696562605,41.86152243453474],[-87.61028465657806,41.86139838411006],[-87.61028472199722,41.86139827969156],[-87.61036117108578,41.86139640475635],[-87.61036128345107,41.86139640189617],[-87.6103560128384,41.861180485663475],[-87.61035601231752,41.861180466724875],[-87.61035427555375,41.86110932810949],[-87.6103542750329,41.86110930917087],[-87.61034789286737,41.860848227088844],[-87.61034789271358,41.860848208152554],[-87.61042467654111,41.86084937591091],[-87.61042486005874,41.860849378712615],[-87.61042480607854,41.86083794061019],[-87.61042480592472,41.86083792167389],[-87.61042479481557,41.860835648815495],[-87.61042479483721,41.860835646894664],[-87.61042479466177,41.8608356298792],[-87.61042563021573,41.86082992298066],[-87.61042900979064,41.86080684205284],[-87.61043121684969,41.86080067644123],[-87.61043901569543,41.86077888595956],[-87.61044659142,41.86076592095551],[-87.61045451300406,41.860752364271974],[-87.61047217576697,41.86073151760114],[-87.61047523471571,41.86072790648503],[-87.61048307110184,41.86072116378678],[-87.61050062808528,41.86070605714392],[-87.61051667488047,41.8606958671983],[-87.61053016997167,41.86068730746713],[-87.6105631225028,41.86067214704741],[-87.61058598946833,41.86066490096075],[-87.61059878515636,41.860660845898586],[-87.61061057176522,41.86065860996062],[-87.61063630886754,41.86065372771093],[-87.61067470124935,41.860650934427795],[-87.6106748482107,41.86065092355225],[-87.61066926683341,41.860282711494364],[-87.61066926631246,41.86028269255575],[-87.61066903521191,41.860267452001224],[-87.61066903505804,41.86026743306493],[-87.61066863532645,41.86024079347701],[-87.61066863517257,41.86024077454071],[-87.61066811404523,41.86020603947148],[-87.61066811389135,41.86020602053518],[-87.61066811244962,41.86020592036094],[-87.61066811266898,41.86020590087814],[-87.61060359706478,41.86019770150508],[-87.61058139807385,41.860193500040104],[-87.61054660195875,41.86018329253337],[-87.61053400432152,41.86017775575823],[-87.61051442058192,41.86016914865331],[-87.61049718949316,41.86015855881199],[-87.61048554654906,41.86015140371801],[-87.61046078210657,41.86013050131073],[-87.61045514335673,41.86012390102187],[-87.61044067418634,41.860106966284405],[-87.61043180676758,41.86009176878959],[-87.61042572829382,41.86008135094797],[-87.61039220213284,41.859982619651504],[-87.61039005501586,41.85997629600479],[-87.61038885013747,41.85997222912403],[-87.61037368034623,41.85992103293139],[-87.61036466501966,41.85987415952944],[-87.61036385022066,41.85986990986695],[-87.61036265337013,41.859863664100935],[-87.61035746834169,41.85980583725601],[-87.61035812094329,41.85974790171338],[-87.61035812115657,41.859747882779395],[-87.61035983983504,41.85973563338166],[-87.61036374936097,41.85970776981321],[-87.61037745804614,41.85964438157649],[-87.61039692003789,41.859581880819796],[-87.61041322859414,41.85954207163378],[-87.61042206023926,41.859520512952386],[-87.61045220062834,41.85946164610306],[-87.61045274370623,41.85946058969143],[-87.61045276322008,41.85946055194359],[-87.61046458029213,41.85943153753196],[-87.61047620595527,41.85939011734893],[-87.61048203910008,41.859348029803165],[-87.61048200239061,41.859305786760586],[-87.6104820022368,41.85930576782428],[-87.6104820022684,41.85930573242363],[-87.61048200248163,41.85930571348964],[-87.61048163669406,41.85930416370397],[-87.61047611605746,41.859280758637105],[-87.61046337107155,41.859248817110526],[-87.6104592701909,41.85924198363428],[-87.61044510210228,41.85921837841706],[-87.61042605144229,41.85919532122763],[-87.61042167120631,41.85919002030261],[-87.61039343910483,41.859164210734185],[-87.61037028752422,41.85914795075363],[-87.61036095143025,41.859141393869855],[-87.6103465246609,41.85913365427419],[-87.61032471922634,41.85912195574632],[-87.6102782410927,41.85909630680582],[-87.61024648578568,41.85907610100988],[-87.61022109059333,41.85905994213183],[-87.61021111662069,41.85905249729614],[-87.6101745263145,41.859025265116834],[-87.6101679420045,41.85902036496015],[-87.61014645342341,41.859003813263534],[-87.61007357516101,41.858947678957676],[-87.61005856612003,41.85893402371758],[-87.61004803079895,41.85892443865814],[-87.61000783168072,41.85888236336697],[-87.61000772274153,41.85888222546827],[-87.6100065420717,41.858880737508535],[-87.60997257808042,41.85883790399457],[-87.60996788828977,41.8588306631118],[-87.60994245091186,41.85879139099517],[-87.60992789530324,41.85876294735161],[-87.60991773924772,41.85874310116758],[-87.60990737565346,41.85871623250734],[-87.60989858673689,41.858693446508994],[-87.60988552366466,41.85864413317069],[-87.60988513567575,41.858642730883886],[-87.60988275382778,41.85862672457647],[-87.6098774911814,41.858591364947564],[-87.60987669744347,41.85856815263368],[-87.60987669692277,41.85856813369507],[-87.60987572570572,41.85853972621776],[-87.60987572543455,41.85853971770887],[-87.60987572481795,41.85853970727683],[-87.60987979396398,41.85848808581594],[-87.60988973108752,41.85843694067236],[-87.60990542234914,41.85838660016327],[-87.60994038752118,41.85829041510825],[-87.60994158298072,41.85828804913457],[-87.60994237819439,41.85828647592407],[-87.6099638234604,41.858236912595906],[-87.60996546124078,41.85823168139019],[-87.60997959303006,41.85818616093021],[-87.6099868124334,41.85814899653879],[-87.60998960807399,41.85813460462809],[-87.609993790434,41.85808260050043],[-87.60999379020609,41.85808258814986],[-87.60999378968228,41.85808256948565],[-87.6099936504313,41.85807828098928],[-87.60999364991056,41.858078262050654],[-87.6099921028773,41.85803052208049],[-87.60999210235656,41.858030503141876],[-87.60998839179108,41.857990446348616],[-87.60997357918673,41.85783052287278],[-87.60997142349215,41.857819888765235],[-87.60997070570961,41.85781631808871],[-87.60996822527093,41.85780397940167],[-87.6099492762953,41.85772973807526],[-87.60993751554574,41.857694808702846],[-87.60992459050112,41.8576564205494],[-87.60989423821587,41.85758430251193],[-87.60985836386799,41.85751363130211],[-87.60985055835802,41.85750059852575],[-87.60981703766618,41.857444627720604],[-87.60980267518332,41.8574239622084],[-87.60979301579182,41.857410064011894],[-87.60977043969399,41.85737756704697],[-87.60971867933392,41.85731261379588],[-87.60969844069591,41.85729025783492],[-87.60966201110946,41.85725001709581],[-87.60961483483234,41.85720393142525],[-87.60960054188361,41.85718996916178],[-87.60957264659696,41.85716577787174],[-87.60953452689935,41.857132719949625],[-87.60946418338779,41.85707840693567],[-87.60943937519005,41.85704853059257],[-87.60943886776657,41.85704792310989],[-87.60940723466518,41.857004886215286],[-87.60940579395279,41.85700240703241],[-87.6093808709299,41.85695993383362],[-87.60935995960257,41.856913369538944],[-87.6093555706461,41.85689965271739],[-87.60934467662793,41.85686560525791],[-87.60933968672289,41.85684001410852],[-87.60933520411602,41.85681702688493],[-87.60933338045758,41.85679265328655],[-87.60933153545791,41.85676799140699],[-87.60933372246183,41.85671930678476],[-87.60933372377653,41.85671928785771],[-87.60933373992815,41.85671892983456],[-87.60933374087581,41.85671891090519],[-87.60933394846708,41.856717656992686],[-87.6093418157199,41.8566701964389],[-87.60935568143975,41.85662220453898],[-87.60936430723496,41.856601479706505],[-87.60936862276321,41.856591111680856],[-87.60937518833917,41.85657531845509],[-87.60939050306982,41.85654758442699],[-87.60940025683263,41.856529921603666],[-87.6094028628525,41.856525968743135],[-87.60940585951926,41.85652142284204],[-87.6094260585624,41.85648466740394],[-87.60944068823811,41.856446522020995],[-87.60944069467287,41.85644650477276],[-87.60944694050369,41.85641909036093],[-87.60944961640523,41.856407345085124],[-87.60947183200004,41.85629273417496],[-87.60949404714255,41.85617812352968],[-87.60950794805879,41.85610638416185],[-87.60955032764004,41.855887669464465],[-87.60957420539319,41.855765564015286],[-87.60961071415927,41.85557900155177],[-87.60965491196463,41.85535314453288],[-87.60967778052729,41.85523632114192],[-87.60970130026797,41.8551161684022],[-87.60971630838436,41.85504059758415],[-87.60971793894426,41.855032386623115],[-87.60973616919667,41.85494059149398],[-87.60980433467068,41.85459751695981],[-87.60981812178856,41.85452812507481],[-87.60983771236634,41.854429529722786],[-87.6098400689575,41.8544176696333],[-87.60986485651357,41.85428886396377],[-87.6098982020399,41.85411559161298],[-87.60991075482531,41.85405044004085],[-87.60991410398462,41.85403668470751],[-87.60991536766385,41.85402926753934],[-87.60992294790076,41.85398476424378],[-87.60992313164452,41.85398158563409],[-87.60992313259196,41.8539815667047],[-87.60992595837405,41.85393249693528],[-87.60992595884002,41.85393248815661],[-87.60992595931837,41.853932478280306],[-87.60992469537653,41.85390965843355],[-87.60992306194183,41.85388018171787],[-87.60991919422935,41.85385708888268],[-87.60991436076189,41.853828233068114],[-87.60991418527942,41.85382751900559],[-87.60991400981551,41.853826803296634],[-87.60989728299732,41.853770386118455],[-87.60987489302111,41.853715030966136],[-87.60987130246554,41.8537081257595],[-87.60986932396337,41.85370432046303],[-87.60984694244415,41.853661149297295],[-87.60981357821912,41.85360899121196],[-87.60977505097067,41.853558857408125],[-87.60973479054086,41.85351468307073],[-87.60973150671947,41.85351108030653],[-87.6097165208988,41.853497045901456],[-87.60968327009145,41.85346590783211],[-87.60963059779061,41.85342358912831],[-87.60959768161153,41.853400055549905],[-87.60958810514185,41.85339321689517],[-87.60954228179011,41.85336425176598],[-87.60952530897714,41.85335352289141],[-87.60948415816608,41.85333108009145],[-87.6094588770665,41.85331729196421],[-87.60941619315568,41.8532973191852],[-87.6094134513897,41.853296037625576],[-87.60938917275206,41.853284690229536],[-87.6093165278057,41.85325588387938],[-87.60924130481494,41.8532310403983],[-87.60916394400253,41.85321024543347],[-87.60908473713067,41.85319366465244],[-87.60905306403087,41.8531888134066],[-87.60900419734841,41.8531813287302],[-87.60892265476508,41.853173322622595],[-87.6088405858278,41.85316967650106],[-87.60875835655567,41.85317044810755],[-87.60874913696884,41.85317102578599],[-87.608676409475,41.85317558342777],[-87.60854444631345,41.85318466324403],[-87.6083936312321,41.85319503967724],[-87.6078382000768,41.853240846965285],[-87.60767313665995,41.85325392939005],[-87.60750340299226,41.853267381626],[-87.60689621327737,41.85332317536225],[-87.60651073508585,41.85335857980598],[-87.60651073597256,41.853358598746944],[-87.60651117730964,41.85336831290597],[-87.6065117341335,41.85338056787734],[-87.6065124914943,41.853397350764695],[-87.60651328913174,41.853415017831104],[-87.60659655851056,41.85341072063838],[-87.60659665987595,41.85341071551686],[-87.60660684850845,41.85356795274092],[-87.60661670435098,41.85372005911818],[-87.60661784520566,41.85373766249254],[-87.6066248119968,41.853844857885626],[-87.60662584730538,41.85386079318311],[-87.60664048685548,41.85405270887432],[-87.60664739871433,41.854148938698486],[-87.6066492071303,41.854174174222486],[-87.60667687937986,41.85456032445203],[-87.60669698152451,41.854840311145594],[-87.60670046240526,41.85489459474027],[-87.6067054049285,41.85497167668418],[-87.60673187524199,41.85538312509951],[-87.6067476020448,41.85562814917569],[-87.6067543495302,41.85570659462029],[-87.60675877660299,41.855760928099244],[-87.60676150423274,41.855794401639635],[-87.60679494991373,41.85620578406685],[-87.60680933545682,41.8563828634477],[-87.60681370132323,41.85643661227981],[-87.60681826572313,41.85649892855148],[-87.60682692747181,41.856617185709176],[-87.60685541473981,41.8570059602813],[-87.60685707010121,41.85702854771598],[-87.60685707135512,41.857028566659245],[-87.60686721476856,41.85716686704022],[-87.60687837649111,41.857302086574514],[-87.60688487291957,41.85738078397027],[-87.60688912341895,41.85743983944435],[-87.60691093031487,41.85774147407676],[-87.60691886336866,41.857851198556524],[-87.60691938032292,41.857858357737534],[-87.60694206209119,41.85817239585694],[-87.60694612844206,41.85822580440725],[-87.60694893307613,41.85826264259453],[-87.60697619806437,41.85862067560209],[-87.6069802533711,41.85867392930152],[-87.60698374870863,41.858719866851864],[-87.60701083493205,41.85907585422583],[-87.60701120020633,41.85908104262207],[-87.6070114993131,41.859085298377686],[-87.60703555615628,41.85943035899036],[-87.60704017611457,41.85949662345287],[-87.60706889001273,41.85990797589505],[-87.60707239399748,41.8599583827749],[-87.6068376611506,41.86005692610434],[-87.60641760914699,41.86006870323548],[-87.60596459466065,41.860080241806465],[-87.6059645951802,41.86008026074509],[-87.60596459592689,41.86008029203428],[-87.60596459681041,41.86008031124963],[-87.60596794816442,41.860237755870855],[-87.60596794905106,41.86023777481179],[-87.60596990260994,41.860330880400824],[-87.60596990349657,41.86033089934177],[-87.60597101408756,41.860383071836395],[-87.60597101460712,41.86038309077502],[-87.6059734249861,41.86049629896956],[-87.60597342550567,41.86049631790818],[-87.60597521025528,41.860562404453795],[-87.60597521077484,41.86056242339242],[-87.60598007045823,41.86074239028627],[-87.60598007097781,41.86074240922489],[-87.60598952538756,41.861091262230005],[-87.60598952590713,41.86109128116862],[-87.60599122689864,41.86115407105781],[-87.6059912274151,41.86115409027083],[-87.60599438633437,41.86127047499505],[-87.60599438685394,41.861270493933674],[-87.60600051927771,41.86143990789301],[-87.60600051979728,41.86143992683163],[-87.60600506552892,41.86156552207764],[-87.60600506641556,41.86156554101859],[-87.60601367781078,41.86180334777329],[-87.60601367833036,41.861803366711904],[-87.60601996827027,41.86197706131013],[-87.60601996878364,41.86197708079755],[-87.6060210049643,41.862005471136285],[-87.60602217160891,41.86201269617614],[-87.60602932090167,41.86203288424566],[-87.60604199552263,41.86205151536571],[-87.60608018219742,41.86205627559165],[-87.60608026761486,41.86205628601185],[-87.60608174560986,41.862061110431874],[-87.60608571907885,41.86207407582906],[-87.60608593864185,41.8620740728286],[-87.60641300798413,41.86206958855563],[-87.60641303444213,41.86206961863541],[-87.6064725114034,41.86213697151474],[-87.60653150932211,41.86220378153714],[-87.60653156767926,41.86220384749401],[-87.60657795278695,41.86218428610815],[-87.60662433786655,41.86216472470326],[-87.60664104569146,41.862169578798586],[-87.6066500234669,41.86217218720852],[-87.60667960191783,41.86217915869423],[-87.60668890708487,41.86218135177219],[-87.60671406781908,41.86218329500008],[-87.60671924084657,41.86218357471142],[-87.60673103299956,41.86218600882354],[-87.60673748120017,41.8621873396911],[-87.60675326548578,41.86219503975163],[-87.60675332536066,41.86219506894506],[-87.60675472127869,41.86219635001058],[-87.60676527931975,41.862206039243205],[-87.60676935734257,41.86221383566024],[-87.6067721777133,41.86221922784182],[-87.60678355697976,41.862245260159504],[-87.6067901145106,41.86227341511123],[-87.60679034872678,41.86227442016509],[-87.60680670405168,41.862311680498856],[-87.60683462068654,41.86232316011357],[-87.6068445239133,41.862327232656845],[-87.60687838468714,41.862332523982225],[-87.60691879266288,41.862346391326206],[-87.60695489207689,41.86237441890238],[-87.60695777567688,41.8623791567012],[-87.60697702435633,41.86241050855368],[-87.60699031275264,41.86244947806653],[-87.60699390975586,41.862462899340514],[-87.60700285226272,41.862496265050815],[-87.60708686887064,41.862737658615465],[-87.60710658694376,41.8627891836474],[-87.60714374659287,41.862886244250795],[-87.60719359033871,41.86301643568244],[-87.60726641118833,41.86319927890248],[-87.6073342379803,41.86336952183956],[-87.60743387748973,41.86360917605305],[-87.60745079078428,41.86364984542763],[-87.6074805173898,41.863721326708784],[-87.60749097867182,41.863747943985494],[-87.60749679027,41.86376272995695],[-87.60751338636186,41.86381181447761],[-87.6075250309206,41.863846251283064],[-87.60754749721549,41.86393075175605],[-87.60755057649367,41.863946438133965],[-87.60756422827401,41.864015984095175],[-87.60756466477717,41.86401955465185],[-87.60757511605904,41.86410172835465],[-87.60758012674168,41.86418779249927],[-87.60758012653064,41.86418781115884],[-87.60757981712827,41.86422000610455],[-87.60757981691414,41.86422002503852],[-87.60757929950256,41.8642739561398],[-87.60757281633983,41.86435671958782],[-87.60757256325341,41.864359945774],[-87.60756879650087,41.864374823241654],[-87.60756068479142,41.86440285662268],[-87.60755244506795,41.864431334036745],[-87.6075503619757,41.86443851299978],[-87.60754220761599,41.86446661553915],[-87.60750986536603,41.8645573829895],[-87.60749247562117,41.864598411295525],[-87.60747192014703,41.86464690727294],[-87.6074620020888,41.8646635845046],[-87.6074510758265,41.864681957071646],[-87.60743005467083,41.86471342450404],[-87.6074069716988,41.864747979077656],[-87.60735767875049,41.864811910079304],[-87.60732822454557,41.8648453409323],[-87.60730338158432,41.864873559688434],[-87.60724430356642,41.864932653787626],[-87.60718086080769,41.86498882068508],[-87.60718059343638,41.86498905719531],[-87.60713521474638,41.865024695495585],[-87.60711254871913,41.86504249626267],[-87.60709217153968,41.8650589152254],[-87.60705496719068,41.865085430887405],[-87.60704202118222,41.86509465750767],[-87.6069880176014,41.86512711029108],[-87.60695345050385,41.86514448668852],[-87.60693049289983,41.86515602704193],[-87.60686996243656,41.86518122083848],[-87.60683222204938,41.86519391135508],[-87.60680675984115,41.86520247287464],[-87.60674136462413,41.86521965006505],[-87.60667429082379,41.86523261789719],[-87.60666489470552,41.865231868815385],[-87.60664326056911,41.865230143555536],[-87.60661337966306,41.865223368008344],[-87.6066133072917,41.86522333983347],[-87.60661317753473,41.8652232893415],[-87.60658571142034,41.865212572410044],[-87.60656124100905,41.865198065687245],[-87.60654084620015,41.86518040087442],[-87.60653899290054,41.86517800768714],[-87.60652521511982,41.86516021405458],[-87.60652484552809,41.86515177754243],[-87.6065245442243,41.86514489662804],[-87.6065059624912,41.86513039093605],[-87.60650147263321,41.865126885558055],[-87.6064720623166,41.86510449872744],[-87.60638692465459,41.865043092700425],[-87.60636284087576,41.865023729964854],[-87.60634803168558,41.86500871244987],[-87.60633569130673,41.86499619822234],[-87.60631345259436,41.864966282348036],[-87.60630767495836,41.86495541559632],[-87.60629655750628,41.86493450649163],[-87.60629481711875,41.86487001112169],[-87.60629481659907,41.86486999218309],[-87.60629443792487,41.86485594417286],[-87.6062944374052,41.86485592523426],[-87.60629255884484,41.864785350203626],[-87.60629255795807,41.8647853312627],[-87.60629244777996,41.86478533495601],[-87.60628025767217,41.86478574379125],[-87.60604539170008,41.864793617867534],[-87.60604539147927,41.8647936373503],[-87.60604520823678,41.86485813536158],[-87.6060452080222,41.86485815429553],[-87.6060452067728,41.86485849128134],[-87.60604520655822,41.8648585102153],[-87.60604520688811,41.86485854589262],[-87.60604520667351,41.86485856482658],[-87.6060450868728,41.86490794160626],[-87.60604508665821,41.86490796054022],[-87.6060450863069,41.86490802393013],[-87.60604508645942,41.86490804286642],[-87.6060452135123,41.86492443095105],[-87.60604521403191,41.864924449889656],[-87.60605108553663,41.865680869697556],[-87.60601104301362,41.8657057537004],[-87.60597382978526,41.86573174919106],[-87.60595046515847,41.86574807054226],[-87.60589399957104,41.86579351439956],[-87.6058420182457,41.86584178549304],[-87.60579565583252,41.86589169836644],[-87.6057948359373,41.86589258148555],[-87.60579470548889,41.86589272143909],[-87.60575235916191,41.86594602061663],[-87.60571512811067,41.86600141064704],[-87.60569918792382,41.86603005181025],[-87.60568327358783,41.8660586459338],[-87.60565690732297,41.86611742532198],[-87.60564602952506,41.86614887353661],[-87.60563614544955,41.8661774479584],[-87.60562113532187,41.86623841181477],[-87.60561191927304,41.86630001694092],[-87.60561191832412,41.86630003587022],[-87.60560991773616,41.86633707849741],[-87.60560991642014,41.866337097424385],[-87.60560857381179,41.86636196058364],[-87.60560857432814,41.86636197979666],[-87.60561110162845,41.866423942265406],[-87.60561950753228,41.866485604166385],[-87.60563321514954,41.86654467972655],[-87.60563368348151,41.86654669806961],[-87.60563876196558,41.86656201406188],[-87.60565363388923,41.86660686862086],[-87.60566099195715,41.866623798403424],[-87.60567925206844,41.86666581272514],[-87.60571035728105,41.8667232822513],[-87.6057468428244,41.86677897520057],[-87.60578849151986,41.866832586678264],[-87.60583508656897,41.866883842801734],[-87.60588644803393,41.86693252123889],[-87.60594228348724,41.866978347627516],[-87.605988695119,41.86701140816493],[-87.60600233815207,41.86702112660372],[-87.60603283545416,41.8670399564779],[-87.60606628626007,41.867060609664556],[-87.60613379817953,41.86709662978708],[-87.606139255988,41.86709912483823],[-87.60614000729116,41.86709946823561],[-87.60614665652606,41.86710250733085],[-87.60620454562282,41.867128965895596],[-87.60627816303243,41.86715747818311],[-87.60635432266064,41.86718202708267],[-87.60643262044282,41.867202501085124],[-87.60651265489776,41.86721878732651],[-87.60652638412515,41.867220809731954],[-87.60659402344426,41.86723077266251],[-87.60667632076644,41.86723845562342],[-87.60675914616037,41.867241751619154],[-87.60679579280598,41.8672412677615],[-87.60684205761967,41.867240657029214],[-87.6069088371875,41.86723622048327],[-87.60692465203589,41.8672351698525],[-87.60698875089902,41.86722747891544],[-87.6070065609343,41.867225342095374],[-87.60708730710785,41.867211198732875],[-87.60716652251028,41.86719281894436],[-87.60724380205666,41.867170310765026],[-87.60731874062274,41.867143753416244],[-87.60739096958117,41.867113310324896],[-87.60740007582582,41.86710881298366],[-87.60740282117166,41.86710745738989],[-87.6074156430794,41.86710111909214],[-87.60746015736234,41.86707911469179],[-87.60752593465679,41.867041358206656],[-87.60755945512774,41.86701911908347],[-87.60758796811179,41.867000202325855],[-87.6076459248836,41.86695589358103],[-87.60764592673776,41.8669558919462],[-87.6076995854592,41.866908591404226],[-87.60771857781205,41.86688922450069],[-87.60772980125577,41.86687777945122],[-87.60774861159193,41.86685859855029],[-87.60787861998489,41.866856805419005],[-87.60813206808885,41.86685330978349],[-87.60958430616188,41.866829924145854],[-87.61058381976457,41.86681725594567],[-87.61060239498687,41.866817372842945],[-87.61062069295265,41.86681325855752],[-87.61062079895437,41.86681323480079],[-87.61062080302035,41.86681323235654],[-87.61062362403851,41.86681180059726],[-87.61063671260824,41.86680515708453],[-87.61064866144349,41.86679389825714],[-87.61064986722613,41.86679154057745],[-87.61065553086198,41.8667804675011],[-87.61268784235308,41.86675309004355],[-87.61268784251064,41.86675310870544],[-87.61268856610582,41.866860791503115],[-87.61268856626029,41.86686081043939],[-87.61268892800754,41.866914705350005],[-87.612688928162,41.8669147242863],[-87.61268930576091,41.86696926721283],[-87.61268930591537,41.86696928614911],[-87.61268930591883,41.866969318531254],[-87.61264580308485,41.867005022087966],[-87.61258778645141,41.867058198827486],[-87.61256813548812,41.867078767952705],[-87.61253443875587,41.86711403876987],[-87.61253083174554,41.867118378113254],[-87.61251315101656,41.867139645931005],[-87.61250120420686,41.86715401584428],[-87.61248598346297,41.86717232433321],[-87.61245946154787,41.867209588852084],[-87.61245349366968,41.86721930362557],[-87.61242453158563,41.86726645022333],[-87.61239501670968,41.867325019567836],[-87.6123940856801,41.86732733727791],[-87.61239275091073,41.867330658220304],[-87.61237106680379,41.867384995688944],[-87.61236192479322,41.867415543246544],[-87.61235279535089,41.86744604971842],[-87.61234727536535,41.86747334091144],[-87.61234027818077,41.867507936524845],[-87.61234027576228,41.8675079557194],[-87.61233362952233,41.867570326419816],[-87.61233362930649,41.867570345628195],[-87.61233362827356,41.867570437554],[-87.61233362806081,41.867570456487975],[-87.61233322219502,41.867601642863725],[-87.61233322198227,41.86760166179769],[-87.61233281564719,41.86763288988289],[-87.61233372312735,41.8676440062156],[-87.61233775639961,41.867693417291655],[-87.61233791453424,41.8676953540767],[-87.61233833512556,41.86769775244536],[-87.61234626460917,41.867742936318216],[-87.61234881978561,41.86775738737627],[-87.61236553302355,41.8678187161887],[-87.61237171635626,41.86783534864789],[-87.61238794819423,41.86787901081044],[-87.612415958993,41.86793799642058],[-87.6124180824344,41.86794163160799],[-87.6124494590177,41.86799534139094],[-87.61246436060755,41.86801859637677],[-87.61250398457912,41.868073264062616],[-87.61253010756931,41.86810392896086],[-87.61254866410809,41.868125711809064],[-87.6125568898791,41.86813401346631],[-87.61257422104165,41.86815150402617],[-87.61259817983833,41.86817569427008],[-87.61261770900745,41.8681927348396],[-87.61265231645832,41.86822293264492],[-87.6126756622595,41.86824061131744],[-87.61270100630641,41.86825980390167],[-87.61271074632008,41.86826717980989],[-87.61271492401207,41.86826992612191],[-87.61277324953588,41.868308269724075],[-87.61280652167531,41.868327201652924],[-87.61283942574441,41.868345923797854],[-87.6129090199027,41.868380032850546],[-87.61298163066049,41.868410373172225],[-87.61298195467127,41.86841048689542],[-87.61305696475237,41.86843680597996],[-87.61309741691568,41.8684484727295],[-87.61313458426402,41.86845919185873],[-87.61320732707595,41.868475886272634],[-87.61321412225975,41.86847744590125],[-87.61321563928449,41.868477708158764],[-87.61329517759515,41.868491456093025],[-87.61330442172527,41.868492090342436],[-87.61347107365896,41.86850139524876],[-87.6135346936898,41.86850327892388],[-87.6136380312035,41.86850633792633],[-87.61377714860092,41.86850677550996],[-87.61380514881262,41.86850686394907],[-87.61384684899933,41.86850589907391],[-87.61397220515549,41.868502998000224],[-87.61413894363682,41.86849476646442],[-87.61419801800268,41.86848696210353],[-87.6142220396976,41.86848378868832],[-87.61431334751349,41.86846751070782],[-87.61435377680762,41.86845827256733],[-87.61440312329941,41.86844699692302],[-87.61445409182151,41.86843267239812],[-87.6144910000423,41.86842229992515],[-87.61453492334321,41.86840755832282],[-87.6145766454157,41.86839355512542],[-87.6145963036669,41.86838581808192],[-87.61464980883932,41.868364759594],[-87.6146596921717,41.868360869177195],[-87.61473987993661,41.8683243784925],[-87.61535246000204,41.868304279998725],[-87.61535263541235,41.86830451710064],[-87.61539003870254,41.868355009629575],[-87.61543271387069,41.868406221162886],[-87.61544369197082,41.868419394941235],[-87.6155021815145,41.86848136917382],[-87.61552786917794,41.86850547274129],[-87.61554425492434,41.86852084798994],[-87.61554898511012,41.868525285364264],[-87.61556540034218,41.86854068412025],[-87.6156313949779,41.868595723826644],[-87.61563313115037,41.868597172113375],[-87.61570508055195,41.868650640038],[-87.6157810678618,41.868700895483265],[-87.61586080092418,41.86874779885485],[-87.6159059263036,41.86877129791627],[-87.61594406161477,41.86879115641072],[-87.61603052073842,41.86883085714058],[-87.6161198864411,41.86886673373644],[-87.61612009673378,41.868866806674596],[-87.61621190264572,41.86889870253958],[-87.61621190314993,41.86889872312459],[-87.6162120471218,41.868906996557136],[-87.61621232751519,41.8689231021001],[-87.6162194008373,41.869328275093764],[-87.61621951289516,41.86933467373121],[-87.61622666130528,41.869746273093355],[-87.61622780241301,41.86981167562251],[-87.61623582951663,41.87015780271055],[-87.61624055395578,41.87036170696179],[-87.61624536536476,41.870569362036086],[-87.61624969190358,41.87075555544019],[-87.61625047250016,41.87078912574133],[-87.61625245576347,41.87087648337182],[-87.61625482750509,41.870980920871645],[-87.61626414165298,41.871392588248845],[-87.61626785064347,41.87155674476733],[-87.61626680769747,41.871568129895174],[-87.61626647072039,41.871571802336604],[-87.61626136971368,41.871583830350126],[-87.6162594947807,41.8715882514238],[-87.6162563023254,41.8715924233261],[-87.61624954592739,41.87160125273775],[-87.61624452558029,41.87161010424044],[-87.61623437739486,41.87162799620134],[-87.61623374481873,41.87171402271752],[-87.6162337431413,41.87171427133574],[-87.61623374258829,41.87171435365966],[-87.61623990287559,41.87173146188434],[-87.6162484667048,41.87174695119244],[-87.61625404672178,41.87175704424457],[-87.61627346227584,41.87178065567034],[-87.61627385844143,41.87179041229179],[-87.61627441287716,41.87180404313017],[-87.61628092134701,41.87196739329352],[-87.61620000751128,41.87196993417047],[-87.61620499474388,41.87221683794103],[-87.61620599368207,41.87226542857996],[-87.61620601727483,41.87226656978465],[-87.61621016801503,41.872440498553175],[-87.61621221920217,41.87253606489672],[-87.6162141996047,41.87262833989739],[-87.616223001542,41.87303989446741],[-87.61622849386062,41.87329674072757],[-87.61622882182604,41.873312072952686],[-87.61622882178922,41.873312076245554],[-87.6162289109109,41.87331625683641],[-87.61623180245701,41.873451448726996],[-87.61623855270258,41.87376732632017],[-87.61624207331842,41.87386293035704],[-87.61624519685552,41.87394810433089],[-87.61624504835605,41.873948118771416],[-87.61623882459563,41.87394872535569],[-87.61622390991973,41.87395017888121],[-87.6162237676679,41.873950192811854],[-87.61622195452888,41.87398212285451],[-87.61621960730842,41.87402346561508],[-87.61621077709044,41.87417843725917],[-87.61620553807037,41.87427038723958],[-87.61620547042914,41.8742719710697],[-87.616205339363,41.87427502432129],[-87.61619744800937,41.87446618468668],[-87.60540250966983,41.874466182792425],[-87.6053784294241,41.873312075451516],[-87.60530617597296,41.869851142736096]]],[[[-87.62780840149726,41.96466425029392],[-87.634108755787,41.95626436520173],[-87.63380868298545,41.95546431564719],[-87.63080814192502,41.94886435145582],[-87.62750791029302,41.943164278161085],[-87.63319048338802,41.94276546955247],[-87.63326988261485,41.94283434307799],[-87.63340187858105,41.94296320326499],[-87.63351141201493,41.94305493274083],[-87.63361713431189,41.94314663888469],[-87.63372270100736,41.94325257217943],[-87.63390774715556,41.94341021141999],[-87.63401718842593,41.94351047681996],[-87.63410779101099,41.94359070823995],[-87.63422851192917,41.94370527005221],[-87.63434554610399,41.9438084271181],[-87.63447763982724,41.94392874967545],[-87.63460595361123,41.944046203326266],[-87.63471164767881,41.9441407537539],[-87.63480597036398,41.94422954367631],[-87.63489654390384,41.94431261921565],[-87.63499461615015,41.944407123288265],[-87.63506247660753,41.94447583234733],[-87.63515280245959,41.944581671890674],[-87.63524703291503,41.94467899758206],[-87.63534879363762,41.94478490649441],[-87.63542784090025,41.94487644850731],[-87.63549951424395,41.94494518048106],[-87.635586060573,41.94504815068196],[-87.63567657459846,41.94513691673258],[-87.63575193526056,41.945217053671634],[-87.63584238735606,41.94531151043568],[-87.63595158680614,41.94543453793666],[-87.63604197748587,41.94553468566429],[-87.6361022174254,41.945603347816714],[-87.63625294146476,41.94576362081806],[-87.63630549662899,41.94583792742534],[-87.63638076628894,41.94592660036171],[-87.63648965830303,41.94607808240626],[-87.63658380002913,41.94618394341258],[-87.63666272721461,41.94628686682136],[-87.63677561763737,41.94642129863627],[-87.63688469724647,41.946555706946974],[-87.6369673437633,41.94666718967147],[-87.6370800493502,41.94681869399651],[-87.63718534954428,41.94695023362145],[-87.63727549664593,41.9470731443128],[-87.63738457803369,41.94720755242184],[-87.63745963416291,41.9473161430238],[-87.63754603247706,41.947433339280096],[-87.63763968291113,41.94758472755888],[-87.63771833509034,41.94771325945837],[-87.63781945515393,41.9478789210283],[-87.63790566931381,41.94801319009777],[-87.63798788617099,41.9481645090989],[-87.6380363250606,41.948267246606406],[-87.63808110619571,41.948355734030116],[-87.6381370139634,41.9484727451811],[-87.63821926359837,41.94862121818336],[-87.63832763830548,41.948821071344845],[-87.63838742016418,41.94893241459834],[-87.63844720222875,41.949043757820135],[-87.63850317268677,41.94915507794131],[-87.63857026944109,41.949294922006125],[-87.63863742827549,41.949429075185755],[-87.63869687177011,41.949571718608695],[-87.6387527500736,41.94969157500665],[-87.63884231714039,41.94986854844467],[-87.63889432307015,41.94999407283679],[-87.63894285667928,41.95008827354221],[-87.63901373634528,41.95023098595393],[-87.63906223942719,41.95032803216707],[-87.63911443103996,41.95043648337156],[-87.63915159209878,41.95052492399831],[-87.63920387700263,41.95062483875946],[-87.63924844564224,41.95073324408468],[-87.63929682561495,41.95084167188186],[-87.63933782957291,41.950927289927606],[-87.63939374183114,41.95104430044852],[-87.63943831107908,41.951152705422366],[-87.6394905352139,41.95125831089324],[-87.63952391580129,41.95134388307019],[-87.63958373290536,41.9514523801262],[-87.63963211434029,41.95156080805351],[-87.63968055801,41.95166354484365],[-87.63973262833474,41.951783377719885],[-87.63979235401882,41.95190041134401],[-87.63984445521868,41.95201739860638],[-87.63988533763887,41.95211439841407],[-87.63992615812894,41.95221708932223],[-87.63995960146868,41.95229696997408],[-87.63999679558509,41.95238256475664],[-87.64003020862661,41.95246529094806],[-87.64006011809018,41.95251953989355],[-87.64008603058754,41.9525908377946],[-87.6401419760949,41.952705002651854],[-87.6402238653917,41.95288762033937],[-87.64025721732882,41.95297603730483],[-87.64029053815896,41.95306730009091],[-87.64032779480466,41.95314720364399],[-87.64034602208145,41.953224146854],[-87.64039440647988,41.9533325744487],[-87.64042760440262,41.953435219152475],[-87.64045720646052,41.95351792220577],[-87.64048680859362,41.95360062525082],[-87.64059164161232,41.9536124506518],[-87.64059618432076,41.95364461000354],[-87.64061060156635,41.95368417353594],[-87.64061328316232,41.953691531846644],[-87.64063859854913,41.953761000834106],[-87.64064802108616,41.95380278200703],[-87.64066813503229,41.953891967753904],[-87.64066980930305,41.95389606919595],[-87.64071372532301,41.95400365794943],[-87.64074019679958,41.95406460186637],[-87.64076035281643,41.95411932552612],[-87.6407815177912,41.95417678712783],[-87.6408088600878,41.9542160531904],[-87.64081149187373,41.95421983247296],[-87.64081995091087,41.954227324144476],[-87.64084524792032,41.95424972842035],[-87.64089103843283,41.95439731399479],[-87.6409504001347,41.95458864120061],[-87.64095043423153,41.95458875172341],[-87.64095214347222,41.95459349771193],[-87.64097666789435,41.9546615883687],[-87.6410125014911,41.95476107784392],[-87.64102430175656,41.95480280635886],[-87.64103251478099,41.954831850091786],[-87.64105867467318,41.95492436196978],[-87.64109109903808,41.95504678478909],[-87.64112624682856,41.95517907572442],[-87.6411450522967,41.95525793470761],[-87.6411653194227,41.955342920985295],[-87.64119648692466,41.95548501078864],[-87.64120010927331,41.955501525865536],[-87.64122613166701,41.95564484862142],[-87.64123793503319,41.95568516248798],[-87.64124258304828,41.955701039131554],[-87.64128799967023,41.95585614111484],[-87.64130465862169,41.956008627392194],[-87.6413127232771,41.95605477512662],[-87.64132854762747,41.956145323438456],[-87.64134718776886,41.9562913727559],[-87.64137581347958,41.95638802229975],[-87.64138652303376,41.95642418250717],[-87.64139218502434,41.95644934506643],[-87.64140465853012,41.95650477941695],[-87.64141854479408,41.956566547678314],[-87.64142416131502,41.9565915315879],[-87.64149587731774,41.956981676631585],[-87.64149775717173,41.956991902448266],[-87.64149776656045,41.956991952174995],[-87.64149776690432,41.956991954372434],[-87.64149777174538,41.95699198266694],[-87.64152714523836,41.95715177291978],[-87.64152714557927,41.95715177539161],[-87.64153399267809,41.95725120744636],[-87.64154417741939,41.95739910666709],[-87.64158208394147,41.95766412279149],[-87.64158624577279,41.95768503073443],[-87.64161807072045,41.95784490898674],[-87.64164091061572,41.95793411230085],[-87.64165673280338,41.957995908647796],[-87.64170041169687,41.95813480802329],[-87.64170283255237,41.958142507209566],[-87.64170618297166,41.958156892767214],[-87.64172746186057,41.95824825320697],[-87.64174328381692,41.95835211246375],[-87.64174514103934,41.95836430244092],[-87.64173850973101,41.95843399415845],[-87.64173141173964,41.95850859217466],[-87.6416993758271,41.95878517985949],[-87.64167717290469,41.95898389514163],[-87.6416656307486,41.959087196292195],[-87.64163938492408,41.95929749107551],[-87.64163721895906,41.95930460198529],[-87.64162913033869,41.959331155587435],[-87.641371366921,41.95931665429747],[-87.64120356237915,41.95930721395428],[-87.64102578943883,41.95929722972564],[-87.64102564760731,41.95929722173543],[-87.6410218654956,41.9593511225805],[-87.6411136343212,41.959356863030685],[-87.64120296463078,41.959362450947395],[-87.64138908888341,41.95937410129892],[-87.64160513622215,41.95938762427049],[-87.64160525902429,41.95938776002534],[-87.64160833874863,41.959391177554956],[-87.64161309330544,41.9593964533984],[-87.64159334816975,41.95952577863604],[-87.64155665100418,41.95982190433443],[-87.64155129879134,41.959887007734245],[-87.6415456429395,41.959955810139576],[-87.64152179113725,41.9600909008808],[-87.64152269670687,41.960116291339695],[-87.64152509163412,41.96018342822313],[-87.64155677083293,41.96025673408711],[-87.64159571826909,41.960346859339076],[-87.64162644373495,41.96038526658509],[-87.6416730594568,41.96044353744207],[-87.64172419504476,41.96048841112823],[-87.64174482609714,41.9605057874089],[-87.64194921925645,41.960677936670194],[-87.64211993809542,41.9608676016121],[-87.64219566817681,41.96095702413055],[-87.64222071508716,41.961007249527015],[-87.64223334705768,41.961032579942945],[-87.64226092841238,41.9611102972182],[-87.6422670006661,41.96113202863484],[-87.64228192007768,41.96118542216085],[-87.64228814541303,41.961248247875595],[-87.64229126903888,41.96127976988072],[-87.64229258118176,41.96130519652978],[-87.64229598111368,41.96137106996459],[-87.64228919399592,41.961451324833064],[-87.64228254466343,41.96148367685914],[-87.64228081151309,41.96149210869983],[-87.6422759217387,41.961515898145],[-87.64225536014268,41.96157629809634],[-87.6422400380269,41.96162130715021],[-87.64221995908076,41.96166558367771],[-87.6422119770649,41.96168318470801],[-87.6421980942004,41.961708780582015],[-87.64217011010399,41.96176037440811],[-87.64213070605307,41.96182076435218],[-87.64212307759861,41.96183245538898],[-87.64206436965006,41.96190968031378],[-87.64206436853227,41.96190968167915],[-87.64202803054951,41.96194750277042],[-87.6420045745893,41.96197191585047],[-87.64192857270778,41.962034811427316],[-87.64185142688189,41.96209865394853],[-87.64185132727347,41.96209871893508],[-87.64176110989712,41.96215776866776],[-87.641716216318,41.96218216945155],[-87.6416394656865,41.962223884940784],[-87.64158932586119,41.96224319539893],[-87.6415713449265,41.96225012072737],[-87.64153545652923,41.96226156295545],[-87.641458149826,41.96228621068286],[-87.64134325397511,41.96231636334148],[-87.64127892176612,41.96233126736746],[-87.6412497400596,41.96233802798091],[-87.64118565717908,41.96234779438523],[-87.64117690661882,41.96234889309715],[-87.64117601856549,41.96234900464623],[-87.64117063575796,41.962349680472606],[-87.64100171443901,41.96237083454541],[-87.64064989720266,41.962413498348305],[-87.64033844575575,41.96245253266477],[-87.64031854444572,41.96245502693729],[-87.640054952562,41.96248806212774],[-87.63956887958923,41.96254206780461],[-87.63919676432516,41.962590159581],[-87.63899765641762,41.962615891299315],[-87.63837500357096,41.96269552021311],[-87.63836739682418,41.962657975710115],[-87.63836423415495,41.96264236564175],[-87.63836422090259,41.96264229942621],[-87.6378916689233,41.96269358130433],[-87.6378966552434,41.9627132773014],[-87.6379069342259,41.9627538816189],[-87.63788577077794,41.96275749733844],[-87.63787094472437,41.96276003016279],[-87.63782144765513,41.96276458837551],[-87.63778566713415,41.96276788336286],[-87.63765438614398,41.962782053439334],[-87.63743805528195,41.96280540341248],[-87.63730358902363,41.96282233201226],[-87.637197444832,41.96283569486067],[-87.63694974185013,41.96286386404766],[-87.6368460181358,41.96287565949355],[-87.63676039167161,41.96287966738007],[-87.63659170865994,41.96288756299436],[-87.63631013264663,41.96288793938424],[-87.63612867731578,41.96287479105162],[-87.63610649257005,41.96287153616253],[-87.63592262610534,41.96284456018358],[-87.63577633123504,41.962787846314846],[-87.63572601111397,41.962768339086594],[-87.63562527874211,41.96270990656336],[-87.63553420690384,41.962634672004086],[-87.63551009252689,41.96261475124412],[-87.63549575694101,41.96259676009463],[-87.63540747988802,41.96248597314253],[-87.6353875441642,41.96245221870397],[-87.63537390626875,41.962429128657895],[-87.63533011715595,41.96230732655917],[-87.63533008575762,41.962307238828146],[-87.63532619951305,41.962144887546806],[-87.63532594386028,41.96213421926947],[-87.63532594850277,41.96213419816731],[-87.63532877696267,41.962121271225755],[-87.63534703472939,41.96203783354992],[-87.63538931026886,41.961955949113374],[-87.63539567661842,41.96194361858866],[-87.6353980919049,41.961939810869296],[-87.63544184224371,41.96187084850701],[-87.63552378472615,41.96175365671515],[-87.63556513739736,41.96169451441076],[-87.6358297895268,41.96138449098891],[-87.63597750661602,41.96125076890771],[-87.63606577659664,41.96117086142001],[-87.63638474217898,41.96094005503064],[-87.63639086329576,41.96093562572145],[-87.63643860934395,41.96090909699131],[-87.6367686169276,41.96072573689852],[-87.6370313039338,41.96060205688297],[-87.63723356373765,41.96052556752049],[-87.63731905072221,41.96049323795479],[-87.63764332155903,41.960403245071156],[-87.63774374378328,41.960383308786554],[-87.63786222699059,41.96035978620342],[-87.63808414424608,41.96032158741256],[-87.63816531236061,41.96030761586519],[-87.63840103118764,41.96028335689674],[-87.63847163137098,41.960275908354475],[-87.63850306765531,41.96027598857495],[-87.63851861814713,41.960276028078965],[-87.63851970916944,41.960276014374784],[-87.6385793277733,41.960275269808626],[-87.63863988092295,41.96027375288417],[-87.63864103203821,41.9602737241749],[-87.63864107653811,41.96027372307207],[-87.63864363661699,41.9602738922386],[-87.63871136106911,41.96027837414464],[-87.63872943607004,41.96027999611017],[-87.63876153610437,41.960282876621235],[-87.63882159945952,41.96028749377914],[-87.63898326563839,41.96031100075844],[-87.63903766835745,41.96032083789804],[-87.63907496687081,41.960327582316985],[-87.63920718936679,41.960360625961435],[-87.63923880824917,41.96037183456381],[-87.63926743882844,41.96038198339113],[-87.63932353735217,41.9604030687181],[-87.63943648274649,41.9604575381282],[-87.63953485147977,41.960508230027926],[-87.63968273210884,41.96058443640845],[-87.64012169130564,41.96083228194475],[-87.64013546233178,41.960838671279085],[-87.64021589243558,41.960875989887406],[-87.64022565109583,41.96087976473149],[-87.64026367411105,41.96089447270601],[-87.6403039400897,41.96090075275738],[-87.6403776964318,41.96090399678121],[-87.64042623087657,41.96090044810624],[-87.64047092584454,41.96089152503868],[-87.64049893364395,41.96088334674034],[-87.6405087687423,41.960880474458406],[-87.64051979976796,41.9608760849865],[-87.64056678012768,41.960857389013135],[-87.6405673758858,41.96085720737422],[-87.64059506049283,41.960848789728345],[-87.64065666941282,41.960830056575546],[-87.64073507921705,41.96078632130368],[-87.64080753147776,41.96071695511059],[-87.64086125471385,41.96064980299127],[-87.64090575232701,41.96057096114423],[-87.64094715774355,41.9604897740924],[-87.64096023095703,41.96043401054513],[-87.64096714554593,41.960371229418826],[-87.6409585238199,41.960303700697274],[-87.64093753529173,41.960226790965805],[-87.6409009094285,41.960154440266734],[-87.64085825103923,41.960063438946385],[-87.64082184325811,41.96000641400462],[-87.64080307376803,41.95997701571803],[-87.64075661851288,41.95994881428571],[-87.6406669250537,41.9598831237997],[-87.64057388883754,41.95983835383359],[-87.64047162669617,41.95978189432669],[-87.64038462320637,41.95975577456355],[-87.64025719696718,41.95972010373843],[-87.64016089238497,41.959689274305354],[-87.64024364099396,41.95949710812478],[-87.64033662052229,41.95928118063121],[-87.64036875204997,41.959206561206464],[-87.64030032620266,41.959192187572185],[-87.64029366880274,41.95920797761246],[-87.64029362389412,41.95920808436541],[-87.64029321143833,41.95920906265488],[-87.64009875059908,41.959670285142764],[-87.6400865723878,41.959669643555884],[-87.64008649558944,41.959669639524684],[-87.64004890086534,41.95966765731247],[-87.6400182984074,41.95965611012366],[-87.6399907717626,41.95964572391523],[-87.63984477994858,41.95962168680833],[-87.63977033604841,41.9596094296105],[-87.63959021167794,41.959558394566166],[-87.63932990003046,41.959496885351946],[-87.63913623087848,41.95946075217909],[-87.63894925336744,41.959424658603986],[-87.63872871091837,41.95939835111289],[-87.63854157106337,41.95937724007995],[-87.63833424894933,41.95936599602615],[-87.63816712888661,41.959350000029126],[-87.63793967842903,41.959343628111135],[-87.63783759410732,41.95934886751375],[-87.63776559592415,41.959352562729634],[-87.63761827824996,41.95936165955358],[-87.63745763280275,41.95936568067637],[-87.63733702559657,41.95937993349093],[-87.63715603369778,41.95940880393985],[-87.63702857255673,41.9594379987812],[-87.63690116567832,41.959462199629584],[-87.63678708678223,41.95949147538003],[-87.63663933381211,41.959540525314964],[-87.63653172843414,41.95958981901071],[-87.63642406810565,41.95964410672587],[-87.63631640832745,41.959698394617035],[-87.63617491008058,41.95978743920647],[-87.63608732347056,41.959841848772875],[-87.63599304562827,41.95989621708011],[-87.6358783116191,41.95998542441303],[-87.63576368697441,41.960064642562536],[-87.63566913612614,41.96014398258407],[-87.63558823972221,41.96019843214602],[-87.63548683347616,41.96029271453522],[-87.63537868092494,41.96039194999875],[-87.63529098379223,41.960456347459534],[-87.63522325201457,41.960530855715106],[-87.63514197308817,41.96062026517845],[-87.63505394859511,41.96071462855672],[-87.63495254074199,41.960808910179004],[-87.6348510231294,41.960913180497265],[-87.6347632701989,41.960982571660985],[-87.63465527903209,41.961066823776164],[-87.63457410812674,41.961146244304],[-87.63447966297637,41.96121559506398],[-87.63434485079017,41.96130467779096],[-87.63431925786739,41.961321380166105],[-87.63422352990216,41.961383853608375],[-87.63414290407206,41.961413330696864],[-87.63404884069675,41.961447720333425],[-87.63396810511003,41.96148718580975],[-87.63385385741077,41.96153144178047],[-87.6337663214442,41.96158085486038],[-87.63368542196888,41.96163530331856],[-87.63355768086954,41.96168946593965],[-87.63346280932501,41.96174593195839],[-87.63338609751105,41.96177284102028],[-87.63331254254845,41.961790643701626],[-87.63321744176694,41.96182200331195],[-87.6331254724947,41.961846537622066],[-87.63300589503017,41.96188002930021],[-87.63288937338184,41.961913539223005],[-87.63278189668374,41.961958511603996],[-87.63262844729313,41.96201460986255],[-87.6325055122268,41.96207545698207],[-87.6323458993068,41.962136080298606],[-87.63220775681243,41.96218999019594],[-87.63206188405022,41.962236885721396],[-87.63196350375273,41.96225765138593],[-87.63187735784544,41.96228154437116],[-87.63179945771444,41.962299382373295],[-87.63172564697379,41.96231724558839],[-87.63162280788484,41.96237155987277],[-87.63152831608043,41.962410663474614],[-87.63145423715574,41.96245294362681],[-87.63139245997623,41.962492246568445],[-87.631314157766,41.9625467103201],[-87.63126025737434,41.962613533307355],[-87.6311858432938,41.96268633501589],[-87.63111947391027,41.962771395668014],[-87.63107378558139,41.96283521614155],[-87.6310362429583,41.962902138529714],[-87.63101489093084,41.9629844221159],[-87.63100175060207,41.96306370328083],[-87.63099259952945,41.96315216625624],[-87.63099581784097,41.963231548042955],[-87.63101931532579,41.96332631522741],[-87.63103895837038,41.96339969245731],[-87.63106691455218,41.96346091074997],[-87.63110700526096,41.963534412769874],[-87.63115936461251,41.963607990088164],[-87.63121986924823,41.96368466984843],[-87.63128050880135,41.96374914034198],[-87.6313412147512,41.96380750645389],[-87.63141415627926,41.963868999994624],[-87.63149537751936,41.96392138697303],[-87.63158886751863,41.96397384888734],[-87.63165712390274,41.964025632908104],[-87.6316572912823,41.964025759615616],[-87.63167404425836,41.964038469152115],[-87.63173385619915,41.96423186525071],[-87.63173443038292,41.96423372219461],[-87.63173443393615,41.96423373346755],[-87.63177562841285,41.964376628621984],[-87.63177562810579,41.96437665661097],[-87.63177567116402,41.96437682070304],[-87.63179835669821,41.96446379387797],[-87.6318062556637,41.964494075855804],[-87.63184041020344,41.96464535266592],[-87.63186871031077,41.96479728029077],[-87.63188203911056,41.96488766274956],[-87.63189119502786,41.96494974838174],[-87.63190782948271,41.9651026472354],[-87.63192739301601,41.965457756839754],[-87.63192745607881,41.96546213120979],[-87.63192747658282,41.965463547069255],[-87.63192731140353,41.96548926582577],[-87.63192673674433,41.965578965087275],[-87.63192649329244,41.96561691482518],[-87.63192257731731,41.96570433656384],[-87.63191962704731,41.96577019175021],[-87.63190691762122,41.9659232677693],[-87.63188832712392,41.96607600653648],[-87.63186722796853,41.96620733561771],[-87.63186385966519,41.96622829775707],[-87.63183358760728,41.96637997694288],[-87.63179751401913,41.966530961781984],[-87.63176090179292,41.9666498205067],[-87.63170270049349,41.96683876482108],[-87.6316996761261,41.96684858155757],[-87.63169802560095,41.96685326295804],[-87.63169637395444,41.96685794599816],[-87.63163780370652,41.96701496883208],[-87.63157354733082,41.967170748327355],[-87.63150371555554,41.9673251762066],[-87.63143871254223,41.96745713055815],[-87.63142834710519,41.96747817174248],[-87.63139434699546,41.96754182637504],[-87.63139432034451,41.96754187588214],[-87.62780840149726,41.96466425029392]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3968181.93284","perimeter":"0.0","tract_cent":"1164540.56829628","census_t_1":"17031010100","tract_numa":"17","tract_comm":"1","objectid":"245","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1951022.77196025","census_tra":"010100","tract_ce_3":"42.02122359","tract_crea":"","tract_ce_2":"-87.66982477","shape_len":"9315.79512423"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66420151059611,42.02126026262997],[-87.66418592113916,42.02125213103157],[-87.66418573994281,42.021252213672675],[-87.66417611922998,42.02125659437348],[-87.66400959564251,42.02133242229683],[-87.66400949654128,42.0213324672723],[-87.66394783283415,42.021086752338746],[-87.66385784479935,42.02072816957248],[-87.66385784374141,42.02072816517562],[-87.66386292470523,42.020726469820055],[-87.66388484028182,42.020719157350264],[-87.66388483381623,42.020719142219576],[-87.66387985447724,42.02070739553571],[-87.66386900334402,42.02068179903751],[-87.66380886985165,42.020450224076434],[-87.66373858636031,42.02038988095326],[-87.66373182082415,42.02037075901551],[-87.66372850722871,42.02036139246344],[-87.66374065429018,42.02035392204769],[-87.66375365735563,42.02034592507672],[-87.66383818967822,42.02033174915673],[-87.66392681891921,42.02031688605093],[-87.66388492379106,42.020181490631984],[-87.66389016053652,42.02017679816821],[-87.66389164767516,42.02017546548703],[-87.66400744404586,42.020176689347515],[-87.66400752242517,42.020176690078976],[-87.66385470698582,42.01965898737374],[-87.66386219573455,42.01965027766997],[-87.66387784495615,42.019642355666164],[-87.66392708512561,42.01964239586763],[-87.66392717877348,42.019636554879774],[-87.66392772266158,42.01960266359814],[-87.66390574920878,42.019560796757986],[-87.66389938205177,42.01954986989762],[-87.66387932370776,42.01951544600731],[-87.66387918621278,42.01951543258216],[-87.66387682233477,42.0195152011817],[-87.66385520703093,42.01951308283648],[-87.66370196524566,42.019509800953024],[-87.66365798905687,42.01950619649227],[-87.66364482969922,42.01950441283637],[-87.6636423344584,42.01950407473933],[-87.66364158555727,42.01948162847299],[-87.66363796726661,42.01937315163899],[-87.66365538366972,42.01936869791587],[-87.66369531985073,42.01936759339676],[-87.66383399396877,42.01936375781172],[-87.66385612849635,42.019348157554425],[-87.66385627531571,42.01934805385753],[-87.66386664073899,42.01933169726204],[-87.66386914864782,42.01932773968993],[-87.66386841078145,42.019313811969795],[-87.66386767416569,42.01929990538711],[-87.66386780992075,42.01929173456197],[-87.6638678099409,42.01929173264116],[-87.66444345944869,42.01927546311228],[-87.66456201488027,42.01927301074508],[-87.664700164386,42.019270153472604],[-87.6652691814615,42.019261387110326],[-87.66536460089533,42.01925991668385],[-87.66585454625987,42.01925140593992],[-87.66603838456506,42.01924926278068],[-87.66627861748456,42.01924646191597],[-87.66680557390309,42.019237219568865],[-87.66706490146025,42.019232670127366],[-87.66798507772023,42.0192178105494],[-87.6681549062791,42.019214984284375],[-87.66824333044843,42.019213516753524],[-87.66824546514344,42.01936517248172],[-87.66824868514288,42.01936514503722],[-87.6686981088099,42.01936129092714],[-87.6688674597871,42.01936195363456],[-87.66929779235103,42.01936363664898],[-87.66949809122225,42.01936446319068],[-87.66962685215935,42.019364994299956],[-87.66982755583811,42.01936582205857],[-87.67011925769793,42.01936766348012],[-87.67065117999205,42.01937101917287],[-87.67074111473167,42.0193716692619],[-87.67079833589374,42.019372082985036],[-87.67115518882242,42.019372638133355],[-87.67133031478252,42.01937360905662],[-87.67176818399778,42.019376035646],[-87.67191727981101,42.019378119611424],[-87.67210891099768,42.01938079803192],[-87.67250608569682,42.019382560651216],[-87.6729396913347,42.019384483207325],[-87.6731177051625,42.019385593427465],[-87.67311983931104,42.01938733069421],[-87.67327054821376,42.019510006376244],[-87.67330588591112,42.01953877072989],[-87.67349425550799,42.01969210055969],[-87.67355185368669,42.01973898419193],[-87.67365021160822,42.019819072553055],[-87.67370228172645,42.01986147053438],[-87.6737508624506,42.01990101672169],[-87.67375576326128,42.019905006106654],[-87.67409160250068,42.02017839024344],[-87.67433165449532,42.02037379810936],[-87.67452056318328,42.02052757279378],[-87.67455574286954,42.02055620907106],[-87.6747985567737,42.02075385870458],[-87.67507253418117,42.020976873442045],[-87.67531753153479,42.02117629680116],[-87.67550437348095,42.021328382133156],[-87.67559528113644,42.021402377943005],[-87.67572000993273,42.02150389865354],[-87.67589621448508,42.021647316377575],[-87.67607402457621,42.02179203992109],[-87.67624075402034,42.02192774385184],[-87.67639908298989,42.02213551427905],[-87.67653167487204,42.02230950949925],[-87.67664628738609,42.02245991043435],[-87.67665666305692,42.02247451448999],[-87.67671065027193,42.022550754762335],[-87.67676592504036,42.022628813256816],[-87.67690325546204,42.02282277351733],[-87.67696684506228,42.02291258448211],[-87.67704971597178,42.023029626919275],[-87.67704971778925,42.023029629125006],[-87.67705606068053,42.023038586989436],[-87.67696530446297,42.02303796705615],[-87.67557756531083,42.0230284769021],[-87.67230906007322,42.023006024284555],[-87.6706973880122,42.02299491881504],[-87.66728810957777,42.02296597186051],[-87.66562049306839,42.02295177676994],[-87.66543361082265,42.0229501883847],[-87.6653634609832,42.022949592191644],[-87.66525212784434,42.02294864566581],[-87.66516590282565,42.02294790913445],[-87.66512638951285,42.0229475715394],[-87.66513800947621,42.022925448393345],[-87.6651381367792,42.022925205725876],[-87.66513842859969,42.02292468109145],[-87.66514252013775,42.02291732060269],[-87.66514263791588,42.022917108888976],[-87.6651638522489,42.022898023141806],[-87.66516385265425,42.022898019576736],[-87.6651669172101,42.02287946290125],[-87.66516695171032,42.02287940163251],[-87.66516951399525,42.02287486121328],[-87.6651870164474,42.0228438509835],[-87.66518963004161,42.02284168594821],[-87.66521564008772,42.02282014297979],[-87.66523662868576,42.02278738990006],[-87.66526726409286,42.02274728368477],[-87.66527633063207,42.02271960159976],[-87.66528403041873,42.02269609231387],[-87.66528325789015,42.02268168170785],[-87.6652830285255,42.02267740055334],[-87.66528227473725,42.02266334432968],[-87.6652671100614,42.02261789480894],[-87.66524865058274,42.02258828773037],[-87.66523029147095,42.02255964142071],[-87.66519910308057,42.02252388051652],[-87.66518403366375,42.022506601621146],[-87.66516507610785,42.02247177686823],[-87.66513916776083,42.0224448848571],[-87.66512801410343,42.02243330782557],[-87.66505140148578,42.02236200684886],[-87.6649814983916,42.02231426276782],[-87.66496297066077,42.0223042654142],[-87.66493882731078,42.02229123789131],[-87.66490006034395,42.02228461573253],[-87.66489664344527,42.02228403217989],[-87.66489657952472,42.02228402110534],[-87.66484616593134,42.022265918066964],[-87.66482301941322,42.02224799000959],[-87.66479293960994,42.02222469264588],[-87.66478632922787,42.02219520884027],[-87.66477469929761,42.022162006524425],[-87.66474913069881,42.02208901229253],[-87.66472473663035,42.0220497653875],[-87.66469934052208,42.02202544124262],[-87.66469587820133,42.022017497534016],[-87.66468586359319,42.021994518174125],[-87.66466563528489,42.02194409982564],[-87.66466159677145,42.021935406617224],[-87.6646323082745,42.021872364675616],[-87.66463174930855,42.02185943359629],[-87.66463020524613,42.0218236981464],[-87.66463382455028,42.02181644743447],[-87.66464930127857,42.021785445511895],[-87.66467003513874,42.021769342444244],[-87.66467616513083,42.021764581605645],[-87.66470676063969,42.021749310386774],[-87.66471265378864,42.0217415125567],[-87.66471797519604,42.0217344715332],[-87.66471799311306,42.0217344474888],[-87.66469387270668,42.021693437662584],[-87.66464506283474,42.02161045257012],[-87.6645960702621,42.02156208913915],[-87.66455697248861,42.02152277738374],[-87.66452549166333,42.02149112509203],[-87.66444860875393,42.021428192147006],[-87.66434242935728,42.021354934942934],[-87.66426814971051,42.02130008438421],[-87.66426056132345,42.021295502377775],[-87.66420656457701,42.021262899062],[-87.66420151059611,42.02126026262997]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1247241.69965","perimeter":"0.0","tract_cent":"1182428.46570222","census_t_1":"17031360100","tract_numa":"9","tract_comm":"36","objectid":"725","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1881543.6779651","census_tra":"360100","tract_ce_3":"41.83017204","tract_crea":"","tract_ce_2":"-87.60616658","shape_len":"5062.98721534"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60267000425867,41.83122706934804],[-87.60266318224573,41.83120862044525],[-87.60265196035243,41.83117826994438],[-87.60263792089715,41.8311402990829],[-87.60262628039327,41.83110881665141],[-87.60261659315209,41.83108261700438],[-87.6025982360838,41.831032968718965],[-87.60259417614975,41.83102198915894],[-87.60256550322066,41.830967026283666],[-87.60255795641343,41.830952560178616],[-87.60253141263851,41.83090167811474],[-87.60252578774116,41.830890895512475],[-87.60250238502482,41.83084603540719],[-87.60245698462853,41.83078166959897],[-87.6024502103436,41.830772065475685],[-87.60242748291905,41.83073984424471],[-87.6024116655669,41.83071741927448],[-87.6023946973893,41.83069336319722],[-87.602372342059,41.83066952942286],[-87.6024653396994,41.830598863643296],[-87.602549993195,41.83053313926048],[-87.60453943339814,41.82962880816701],[-87.60475004082954,41.8295331103609],[-87.60481341643835,41.82950150900081],[-87.60522606533533,41.829294976304276],[-87.60534045817103,41.82923772878278],[-87.60559276570788,41.82911171902605],[-87.60606598147785,41.828878023919884],[-87.60639299361075,41.828740899361],[-87.60631056938507,41.828633152910214],[-87.60647686228447,41.828557802800695],[-87.60712769250397,41.82828117396252],[-87.60748355401982,41.82812991622616],[-87.60753528512997,41.82811472210182],[-87.60768819943387,41.82835566278011],[-87.60779200202234,41.82851877575864],[-87.60792693377181,41.828730802543035],[-87.60819141162965,41.82914644502065],[-87.60846845333607,41.829567544913765],[-87.6093957391884,41.831198401402325],[-87.6090330635438,41.83120196683823],[-87.60828613363422,41.831209306309496],[-87.60749035996226,41.83121712014999],[-87.6072139566684,41.83123300502444],[-87.60686720985719,41.83123287064628],[-87.60670209232117,41.831232855293386],[-87.60620267768667,41.83123820229213],[-87.6060498753159,41.83123284431511],[-87.60583494109139,41.83123394861817],[-87.60295002258202,41.83133289248667],[-87.60279792683366,41.8313662062978],[-87.60271020372588,41.83136624767305],[-87.60270768602224,41.83135006766783],[-87.60269695006579,41.83131502400383],[-87.60268533705495,41.83127711798053],[-87.6026768307467,41.831249351741455],[-87.60267379623743,41.83123944704966],[-87.60267000425867,41.83122706934804]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9216541.89392","perimeter":"0.0","tract_cent":"1162511.76317176","census_t_1":"17031010200","tract_numa":"46","tract_comm":"1","objectid":"246","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1949112.77440093","census_tra":"010200","tract_ce_3":"42.01602544","tract_crea":"","tract_ce_2":"-87.67734461","shape_len":"12591.7376509"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68289521234658,42.01946739327716],[-87.68281067624036,42.01946657831803],[-87.68281067256048,42.01946657829718],[-87.6826758837464,42.01946527837322],[-87.68188412674542,42.01946001938772],[-87.68163041199257,42.01945726578345],[-87.68147052975914,42.01945553081043],[-87.68065772863376,42.0194497045078],[-87.68061300621338,42.019449130501926],[-87.68044759496873,42.019447007840185],[-87.68044758613699,42.01944700778995],[-87.68028631925696,42.0194449381061],[-87.68024292591824,42.01944438139678],[-87.67974151011798,42.01944098289869],[-87.67938327779761,42.019438553927145],[-87.6792264037283,42.019437686955264],[-87.67918694464392,42.01943746839617],[-87.67903700018795,42.0194366390106],[-87.67889870994152,42.01943587450429],[-87.678337715037,42.01943236314767],[-87.67815659189645,42.0194312292805],[-87.67800501667415,42.019430485833446],[-87.67763305115409,42.019428660957225],[-87.67750863222832,42.0194280503039],[-87.67747474097466,42.01942788409871],[-87.67735293647863,42.01942726516412],[-87.67728044248587,42.019426883220575],[-87.67715477819364,42.0194114563729],[-87.67707864078936,42.01940750854186],[-87.67702926984892,42.01940864143277],[-87.67697605413795,42.0194098626331],[-87.67694011135326,42.0194106875366],[-87.67690633518298,42.019411462801],[-87.67688203031437,42.01941132352752],[-87.67687800010982,42.01941130047836],[-87.6768549210066,42.019411168483856],[-87.67682977160308,42.01941102464355],[-87.67682975651276,42.01941102483166],[-87.67675715248247,42.019410609546924],[-87.67657842532601,42.01940917543032],[-87.67646995030064,42.0194077586275],[-87.67630675846787,42.01940269929175],[-87.67607045619553,42.01939537372351],[-87.67568144193017,42.019401679632516],[-87.67536619504072,42.01939946135087],[-87.67536619136085,42.019399461329776],[-87.6750041221339,42.01939811275376],[-87.67488838610525,42.01939768160389],[-87.67440804886591,42.01939519958319],[-87.67414971742728,42.01939478708327],[-87.67397781601677,42.0193945129556],[-87.67395279126076,42.01939416722928],[-87.67373382369196,42.0193911465509],[-87.67364153933525,42.01938987307641],[-87.67363826893059,42.0193898282106],[-87.67363682138635,42.01938980836549],[-87.67352618627928,42.019388281965945],[-87.67350741973794,42.01938802288394],[-87.67347276946421,42.0193878066781],[-87.67331536171326,42.01938682565225],[-87.67318422851756,42.019386008424114],[-87.67318420239044,42.019386008273855],[-87.67312468143683,42.01938563684699],[-87.6731177051625,42.019385593427465],[-87.6729396913347,42.019384483207325],[-87.67250608569682,42.019382560651216],[-87.67210891099768,42.01938079803192],[-87.67191727981101,42.019378119611424],[-87.67176818399778,42.019376035646],[-87.67133031478252,42.01937360905662],[-87.67134070832218,42.01848862791548],[-87.67134060500342,42.01842567582871],[-87.67134035798273,42.01833080809763],[-87.67129071062648,42.01826375585034],[-87.67110668383746,42.01807466304983],[-87.67105440966353,42.01802595602973],[-87.67097512113685,42.01806397137898],[-87.67084623093112,42.01812581817692],[-87.67074896287785,42.01817260427468],[-87.67036376528314,42.01835788386561],[-87.67035650443971,42.01813352797999],[-87.67033949446841,42.01760793676733],[-87.67032515218202,42.01716476399354],[-87.67032865451787,42.017055600135905],[-87.67033091014675,42.016985293534404],[-87.67033309609815,42.01691715964627],[-87.67033309839945,42.0169170798039],[-87.67033625329037,42.016818759485766],[-87.67033625847772,42.016750060321336],[-87.67033626356495,42.01668314212888],[-87.67033064682704,42.01651815724705],[-87.67031573668072,42.01608018188128],[-87.67031221483109,42.015993684980614],[-87.67030899324786,42.01591455903723],[-87.67029395177919,42.01546746148023],[-87.6702811570863,42.01508713731612],[-87.67027517830752,42.014929148232916],[-87.6702717444519,42.014838405201075],[-87.67025611642808,42.01438390777498],[-87.67024014895408,42.01391952545285],[-87.67023766046506,42.013840442407364],[-87.67023561168193,42.01377531990935],[-87.67022276117082,42.01341476988458],[-87.67021894588667,42.013296959301556],[-87.67020423408083,42.012842665445966],[-87.67019802501791,42.01271420978322],[-87.67034499497474,42.01271044057685],[-87.67149400603616,42.01269056259952],[-87.67221222690705,42.012678455975696],[-87.67236649413155,42.01267530386033],[-87.6724930112161,42.01267271843774],[-87.67342340496353,42.01265688602828],[-87.67383527137842,42.012650032688995],[-87.6744677747426,42.012639505006824],[-87.674637945991,42.012635302564306],[-87.67479958475427,42.012631310517804],[-87.67546386262472,42.01261533405939],[-87.67560045284604,42.01261787391875],[-87.67562813033142,42.01261838843113],[-87.67566096155977,42.01261783643904],[-87.67575307610257,42.01261628793149],[-87.67711082859327,42.012593450651444],[-87.67742321809527,42.01258797311335],[-87.67802514265513,42.012577378965645],[-87.67818702629371,42.01257523641852],[-87.67837571872273,42.01257273894148],[-87.68015753690659,42.012537173952616],[-87.68027027007058,42.01253573283426],[-87.68041007096497,42.01253394558505],[-87.68136616340537,42.012516328915],[-87.6823398913271,42.012502291332844],[-87.68268279985426,42.01249734549391],[-87.68274553923695,42.01246537490108],[-87.68308621761864,42.012322826239924],[-87.68312877763809,42.01245473106509],[-87.68318478524088,42.012606225654785],[-87.6832525141748,42.012799195776786],[-87.6833216744333,42.01299615329861],[-87.68343131964059,42.01330804686095],[-87.68353877275156,42.01361122910788],[-87.68363372223217,42.013877677634966],[-87.6836879982657,42.01403496334684],[-87.68373044440077,42.014157967060406],[-87.68389740053388,42.01462421541911],[-87.68404322827993,42.015033374760684],[-87.68408266317289,42.0151510474564],[-87.68410780022448,42.01522605230235],[-87.68413548741908,42.015315065522735],[-87.68415497866926,42.01539223239842],[-87.6841689695334,42.015460257477415],[-87.68418077850413,42.015532962766024],[-87.68419516065293,42.015660182062284],[-87.68421830425844,42.0158450512829],[-87.68424067483527,42.0160262663597],[-87.68424239160022,42.01604098598086],[-87.68425888510276,42.016182430962346],[-87.68428400559321,42.01637916619775],[-87.684297212995,42.01649644488258],[-87.68431995134628,42.016698353133464],[-87.68435896707138,42.017037754848445],[-87.68443310988947,42.017693758670134],[-87.68444490770186,42.017799953553784],[-87.6844622732095,42.01795626725068],[-87.68447987194118,42.01811473342272],[-87.68452614723553,42.01850096404605],[-87.68453525322754,42.01857842885737],[-87.68457122805872,42.01886968000201],[-87.68460027718227,42.01907831958633],[-87.6846387908508,42.0193479060092],[-87.68465309464753,42.01948477353644],[-87.6843976295285,42.01948229743563],[-87.68390097633538,42.019477342256636],[-87.68325621941258,42.019470906562844],[-87.68315929064322,42.019469938799084],[-87.68311938792485,42.01946955387939],[-87.68297589282874,42.01946817068633],[-87.68290250338511,42.0194674631325],[-87.68289721339117,42.01946741230016],[-87.68289521234658,42.01946739327716]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13840846.3339","perimeter":"0.0","tract_cent":"1170316.39228563","census_t_1":"17031750100","tract_numa":"68","tract_comm":"75","objectid":"247","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1832489.67909341","census_tra":"750100","tract_ce_3":"41.69583437","tract_crea":"","tract_ce_2":"-87.6520312","shape_len":"15656.5829459"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65859618753164,41.69216187858796],[-87.65881487306791,41.69215955490816],[-87.65896701978676,41.69216149065427],[-87.65916514904433,41.69215683512077],[-87.65973395679605,41.692148132482586],[-87.6601460426637,41.69214182617393],[-87.6603399428731,41.6921388582271],[-87.66054532368985,41.692135714016295],[-87.66082824397799,41.69213138237388],[-87.66111872582202,41.69212693427012],[-87.66126961878919,41.69212462320581],[-87.6613796094643,41.69212293890607],[-87.66138385917144,41.69212287373993],[-87.66159214849992,41.692119974913524],[-87.66184408092214,41.69211747699623],[-87.66184406745344,41.69227331857827],[-87.66184694155147,41.692356022147514],[-87.661852556462,41.69250375938568],[-87.66186191912406,41.69275011364074],[-87.66186895540366,41.69299593698534],[-87.661874347967,41.69322026313436],[-87.6618789506301,41.69341140539618],[-87.6618846740661,41.69362149009856],[-87.66189571776724,41.693936230554634],[-87.66191708688194,41.69414166389037],[-87.66192250943459,41.6945991879215],[-87.66192732562136,41.69500559655368],[-87.66193134058597,41.69527791267328],[-87.66193744557732,41.695630924357495],[-87.66194082251768,41.69575803383435],[-87.66194787270732,41.69592106118034],[-87.6619605508431,41.696184427007694],[-87.66196116993375,41.69619728617293],[-87.66196733477489,41.69632535734608],[-87.66197023960052,41.696385697474454],[-87.66197997124426,41.69667872134753],[-87.66178870079882,41.69668091484267],[-87.6616168062716,41.69668243831654],[-87.66143724849054,41.69701948700886],[-87.66124549813341,41.69738775303764],[-87.66116191872338,41.69755301001773],[-87.66108185659165,41.69771131278924],[-87.66095337360409,41.698024459360454],[-87.6609329639199,41.698074203066234],[-87.6607959917657,41.69844904529082],[-87.66064435423992,41.69886765615889],[-87.66050675791017,41.69922827897161],[-87.66045744765572,41.69936748457292],[-87.6604445544347,41.69942270870773],[-87.66012643205124,41.69942616818763],[-87.65961851409837,41.6994323028132],[-87.65905064158834,41.69943948303712],[-87.65874167226187,41.69944359037731],[-87.65845057310979,41.699447459341336],[-87.65840766764492,41.69944797220836],[-87.65837943352251,41.69944830969473],[-87.65837940678733,41.699448310086574],[-87.65837929032938,41.699448311323614],[-87.65830062554718,41.69944925162804],[-87.65805237620329,41.69945221838097],[-87.65777778134371,41.69945549900815],[-87.65732186976004,41.69947123246932],[-87.65713662384132,41.6994743219518],[-87.65687666460964,41.69947865693712],[-87.656251377169,41.69948205493336],[-87.65560703613563,41.69949362503788],[-87.65528028815416,41.69949768024233],[-87.65513588506583,41.699499370208045],[-87.65475258596285,41.699503855005034],[-87.65458981334277,41.699505764035386],[-87.65428051039969,41.699509715526794],[-87.65402747519954,41.69951294745462],[-87.65382133961599,41.699515580160316],[-87.65365516032548,41.69951770236321],[-87.65345156891505,41.699520301701405],[-87.65315084722367,41.69952172015198],[-87.65271630856495,41.699528024467966],[-87.65261985214103,41.699529267707604],[-87.65261981002429,41.699529268281424],[-87.65233447731069,41.69953294624006],[-87.65206573880552,41.6995364092866],[-87.65122824122774,41.69955098097507],[-87.65071329496766,41.699556765847355],[-87.65046591071984,41.69955954406386],[-87.64989729754673,41.69956386006253],[-87.64973598234526,41.699565083978364],[-87.64933716256567,41.69956982557483],[-87.64883297876514,41.69957581811341],[-87.64748141110832,41.69959288323405],[-87.64716469503422,41.699596880002424],[-87.64657926549926,41.699602000442326],[-87.64625484033107,41.69960536024879],[-87.64597108282253,41.699608298537875],[-87.64566235658738,41.699611681687415],[-87.64531667953068,41.69961546959447],[-87.64503739630136,41.699618613490735],[-87.64442093194712,41.69962555056356],[-87.64399518280429,41.69963160674072],[-87.64382445811643,41.69963305763616],[-87.64355711788859,41.69963532883524],[-87.64322235529278,41.699638846633164],[-87.643218042302,41.699638892085254],[-87.64321217397068,41.69963895371917],[-87.64291392362642,41.69964208695029],[-87.6426080343334,41.699640946128795],[-87.64259576449186,41.69920270154187],[-87.64258149009738,41.69874357177681],[-87.64255651363383,41.69798423030355],[-87.64255078400463,41.69781647861534],[-87.64254442741951,41.69763036166498],[-87.64253850282728,41.69745688137731],[-87.64251963610562,41.696858915637115],[-87.64250073013915,41.69624418173695],[-87.64249252277797,41.695997989539585],[-87.64248572819463,41.69580571216581],[-87.64247837778008,41.695564852944656],[-87.64246598763589,41.69515216829044],[-87.64245589947151,41.69481521354527],[-87.6424492877099,41.69456395770618],[-87.64244159908776,41.69429364944681],[-87.64243704678067,41.694177455896465],[-87.64243003782641,41.69399856456967],[-87.64242036845211,41.69369435215133],[-87.64241176286434,41.693424175828085],[-87.64240353216506,41.69314634505917],[-87.64239556465658,41.692977356072646],[-87.64239183572707,41.69289813250165],[-87.64238367505602,41.69257271485612],[-87.64237845382664,41.692356090049664],[-87.64267625734043,41.692353692318896],[-87.64302182118021,41.692350087794935],[-87.64330627740372,41.692346389772695],[-87.64359586891135,41.692342431516835],[-87.64383919711905,41.692339105271294],[-87.64407307955352,41.69233633713796],[-87.64419377550612,41.69233478261903],[-87.64443362618896,41.69233199437963],[-87.64460401481469,41.692329722447056],[-87.64481496877882,41.69232716639097],[-87.64511473457401,41.69232353365816],[-87.64542217332136,41.69232084621407],[-87.64572882639976,41.69231625965702],[-87.64602454182595,41.69231314726181],[-87.64610436571488,41.69231230707825],[-87.64628245393638,41.69231043216967],[-87.64661546403423,41.692306302692685],[-87.64687014378241,41.69230348820401],[-87.64724322073107,41.692298393939204],[-87.64752313662576,41.692294570827166],[-87.64794023832437,41.69228803031236],[-87.64837501452422,41.692282389484674],[-87.64886007228174,41.69227572921835],[-87.64890767734722,41.69227516721375],[-87.64898457606215,41.69227425930794],[-87.64915056632422,41.69227229967842],[-87.64967621580173,41.692267997891555],[-87.6498495117237,41.692266579083345],[-87.65019137526295,41.69226315053668],[-87.65078876246513,41.6922531705197],[-87.65114333295007,41.69224951273223],[-87.65150935644743,41.6922465255542],[-87.6517997526389,41.69224193611615],[-87.65210875932866,41.69223865663434],[-87.65253302643727,41.69223415241975],[-87.65289953859435,41.69222998364484],[-87.65322771379469,41.69222599216875],[-87.65337623646421,41.69222437999239],[-87.6537762353272,41.69222158660906],[-87.6542022583944,41.692216091519036],[-87.65453875337757,41.69221152716541],[-87.65492383666786,41.69220630241683],[-87.6552407015468,41.69220197030238],[-87.65555797265682,41.69219733783325],[-87.65591266460964,41.69219248598139],[-87.65635874881009,41.6921872658061],[-87.65669413764459,41.6921866613214],[-87.65697492750506,41.69218173165201],[-87.65732862479447,41.69217552100975],[-87.65756327670367,41.692172592452195],[-87.6578909613442,41.69216647794773],[-87.65826252921376,41.69216542287717],[-87.65859618753164,41.69216187858796]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1341796.14341","perimeter":"0.0","tract_cent":"1174957.52469627","census_t_1":"17031320300","tract_numa":"11","tract_comm":"32","objectid":"280","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900118.4210984","census_tra":"320300","tract_ce_3":"41.88131274","tract_crea":"","tract_ce_2":"-87.63302149","shape_len":"6659.04073032"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63823637542424,41.88060462730176],[-87.63828613008181,41.880604047267845],[-87.63828909967422,41.88069001795711],[-87.63828619761138,41.88101974864648],[-87.63827233152549,41.88130885304809],[-87.6382698440756,41.88139267461303],[-87.63826145294217,41.88155025340801],[-87.63822362245106,41.88176097409508],[-87.63821663001697,41.8818984153088],[-87.6380516489463,41.88190032848096],[-87.63784879850353,41.881902841114574],[-87.63770046685165,41.881904678157845],[-87.63729829572141,41.881910775911024],[-87.63701942280404,41.881913792806806],[-87.63689001094588,41.8819151927502],[-87.63676618404372,41.88191653202203],[-87.6365228576811,41.881919163426005],[-87.63615581739192,41.881922973075454],[-87.63588631361439,41.8819264958003],[-87.63551331313847,41.8819313648949],[-87.6353540189639,41.88193325111811],[-87.63531162391072,41.881933753043754],[-87.63508140760652,41.881936478367386],[-87.63471217531598,41.88193919981943],[-87.6344103697115,41.881941507197894],[-87.63404179781337,41.88194431284068],[-87.63387170134462,41.88194540016204],[-87.63382427570129,41.88194570322482],[-87.63362188958432,41.88194699661737],[-87.63328658468365,41.88195011229608],[-87.63300100597877,41.88195276186832],[-87.63285850610316,41.88195447948272],[-87.6325675559137,41.88195804856242],[-87.63236016500282,41.88196067692115],[-87.6321597757209,41.88196321620625],[-87.63188476406215,41.881966668192014],[-87.6318116247802,41.88196759162591],[-87.63158154580586,41.88197049628186],[-87.63127799704888,41.88197432155044],[-87.63088320809793,41.88197708026679],[-87.63069157609834,41.88197841890716],[-87.63043858761546,41.8819827705636],[-87.63016304791792,41.881987478093734],[-87.62979650254746,41.881992971874894],[-87.62940235619978,41.88199799343598],[-87.62894711501562,41.88200379150475],[-87.62850392386473,41.882009908708696],[-87.62807192823948,41.8820164771516],[-87.62780610569516,41.882042039505784],[-87.62776530325893,41.881852573617],[-87.62775758075146,41.881563173014925],[-87.62774355441861,41.88126264747665],[-87.62772835402528,41.880955363596854],[-87.62772231033532,41.88083381140821],[-87.62772748537574,41.88074289900984],[-87.62816854569807,41.880743796964786],[-87.628273922596,41.88074164485041],[-87.62861113615533,41.880734741014955],[-87.6288810242795,41.88072923441834],[-87.6293686665442,41.8807193242889],[-87.62983330799175,41.88070987986179],[-87.63002770610743,41.88070689932139],[-87.63026609628632,41.880703913363334],[-87.63085306118246,41.880696464456236],[-87.63117062889695,41.88069243320732],[-87.63143061443478,41.88068913779112],[-87.63166173330777,41.88068618681993],[-87.6319130881019,41.880683002231436],[-87.63232859641157,41.88067795205394],[-87.63267353844546,41.88067375855098],[-87.63281713756096,41.88067200011694],[-87.63306533266582,41.88066895838653],[-87.63341007724074,41.880665050161106],[-87.63363010033915,41.88066263133414],[-87.63379804048209,41.88066026119461],[-87.6340524958504,41.88065666956817],[-87.63421155972391,41.88065439982376],[-87.63436041418456,41.88065231470149],[-87.63453718007125,41.880649822939155],[-87.63474380553981,41.88064688137401],[-87.63498447615518,41.880643515297706],[-87.6352812712442,41.880640737962985],[-87.63557108344277,41.880638025007734],[-87.63577351783897,41.8806355226459],[-87.63602068366004,41.88063252315987],[-87.6362307200773,41.88062998382435],[-87.63638243420174,41.880628242748614],[-87.636573701282,41.880626110280865],[-87.63669719975351,41.880625129813794],[-87.63673391858879,41.88062483855394],[-87.63685011369216,41.88062391543244],[-87.63686032489622,41.88062383438623],[-87.63698657732314,41.8806228316161],[-87.63702329689438,41.88062253999376],[-87.63737113372974,41.88061977666222],[-87.63759459594978,41.88061514824333],[-87.63775855575597,41.88061175066411],[-87.63791866371197,41.88060843463031],[-87.63798205428185,41.880607121710995],[-87.63823637542424,41.88060462730176]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14161656.8409","perimeter":"0.0","tract_cent":"1165025.40197075","census_t_1":"17031750200","tract_numa":"45","tract_comm":"75","objectid":"248","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1832382.05378619","census_tra":"750200","tract_ce_3":"41.69565225","tract_crea":"","tract_ce_2":"-87.6714065","shape_len":"17257.2143988"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66050675791017,41.69922827897161],[-87.66064435423992,41.69886765615889],[-87.6607959917657,41.69844904529082],[-87.6609329639199,41.698074203066234],[-87.66095337360409,41.698024459360454],[-87.66108185659165,41.69771131278924],[-87.66116191872338,41.69755301001773],[-87.66124549813341,41.69738775303764],[-87.66143724849054,41.69701948700886],[-87.6616168062716,41.69668243831654],[-87.66178870079882,41.69668091484267],[-87.66197997124426,41.69667872134753],[-87.66197023960052,41.696385697474454],[-87.66196733477489,41.69632535734608],[-87.66196116993375,41.69619728617293],[-87.6619605508431,41.696184427007694],[-87.66194787270732,41.69592106118034],[-87.66194082251768,41.69575803383435],[-87.66193744557732,41.695630924357495],[-87.66193134058597,41.69527791267328],[-87.66192732562136,41.69500559655368],[-87.66192250943459,41.6945991879215],[-87.66191708688194,41.69414166389037],[-87.66189571776724,41.693936230554634],[-87.6618846740661,41.69362149009856],[-87.6618789506301,41.69341140539618],[-87.661874347967,41.69322026313436],[-87.66186895540366,41.69299593698534],[-87.66186191912406,41.69275011364074],[-87.661852556462,41.69250375938568],[-87.66184694155147,41.692356022147514],[-87.66184406745344,41.69227331857827],[-87.66184408092214,41.69211747699623],[-87.66203273088213,41.6921156061811],[-87.66219687035219,41.692112091592634],[-87.66238237844155,41.69210990546711],[-87.66245642321252,41.6921087770353],[-87.66272865888467,41.69210759415046],[-87.66306047536537,41.692101900663374],[-87.66318008234273,41.69211346575771],[-87.66331090351557,41.692156493759306],[-87.66336544630548,41.6920769329629],[-87.66343465615665,41.69197597691082],[-87.66351204203781,41.69186456892111],[-87.66361033038943,41.691725235594824],[-87.66372987215904,41.69155592067005],[-87.66383762317481,41.6914043202137],[-87.66394255643348,41.69124543075289],[-87.66525942994807,41.69177161031788],[-87.66633183515493,41.6922263245982],[-87.66657589973896,41.69231449722967],[-87.66704399818973,41.69248382774531],[-87.66705833266876,41.692485095031984],[-87.66731193862779,41.692582781409655],[-87.66741313658916,41.692622145286975],[-87.66765389637017,41.692717638668604],[-87.66787452813087,41.692805148087984],[-87.66813039721548,41.69290375139258],[-87.66832098291086,41.69297752436008],[-87.66849145769098,41.69304879309794],[-87.66857443160703,41.69308733699458],[-87.6686171198349,41.69312326025321],[-87.66871375499534,41.693193470347566],[-87.66885002599544,41.6932689316734],[-87.66897962987362,41.693081474561055],[-87.669050319264,41.69296881663132],[-87.66913769976252,41.69282818058668],[-87.6693030797606,41.69255467543464],[-87.66941655673261,41.692364984038036],[-87.66948925870912,41.69224520217971],[-87.669555777935,41.6921355934857],[-87.66968600208733,41.69192651376063],[-87.66976092252358,41.69179027852373],[-87.6697596204374,41.69171109558181],[-87.6700035667366,41.691789703391514],[-87.67013337921873,41.69183079430817],[-87.67029223091848,41.69187858413824],[-87.67049431578629,41.691923604618864],[-87.67061476829574,41.69194210617753],[-87.67067353491971,41.69194900757578],[-87.67093974009939,41.69194670017343],[-87.67114461196309,41.69194491695319],[-87.67147979431559,41.6919393283194],[-87.67153758059806,41.69193836330695],[-87.67189524207376,41.69193236007823],[-87.67224537131534,41.69192650039452],[-87.67260052336522,41.69191940420695],[-87.67290883799386,41.691913135505374],[-87.67326966181767,41.69190631683332],[-87.67358738670856,41.69190001802872],[-87.67402371478634,41.691892295846756],[-87.67438010585926,41.691885986969744],[-87.67492293127495,41.69187606231618],[-87.67535746248247,41.691868836318775],[-87.67598469897708,41.69185724987036],[-87.6763555184359,41.69185039607682],[-87.6764195079987,41.69184925330621],[-87.67680715644336,41.691842329041506],[-87.67719662077675,41.69183461880269],[-87.6775102591995,41.691829117627],[-87.67795919875904,41.691821241703586],[-87.6784473381092,41.69181337637258],[-87.67890026285602,41.69180513829352],[-87.67893680558406,41.6918044736831],[-87.67941836171106,41.691795907825444],[-87.6797095332722,41.69179026457415],[-87.6800572433979,41.69178398092445],[-87.68040014034105,41.691779316026555],[-87.68069264971922,41.69177532805347],[-87.68069843585005,41.69177524729693],[-87.68115514950513,41.69177915866871],[-87.68116254280513,41.69203329724877],[-87.68116946901502,41.69225219755152],[-87.68117086851748,41.69229644389958],[-87.68117997539187,41.69258382744788],[-87.68118471953781,41.692733996928844],[-87.68119135624072,41.69293865246405],[-87.68119839938285,41.693155851358405],[-87.68120359041117,41.69331612251086],[-87.6812080216918,41.693453776031525],[-87.68121091175585,41.69363530271018],[-87.6812116961988,41.69368451307679],[-87.68122257524276,41.6939660888955],[-87.68123088264096,41.694181099456294],[-87.68123959306148,41.69440623916243],[-87.68124980454598,41.694693025115974],[-87.68125848778296,41.69499333194854],[-87.68126499694291,41.69521895311142],[-87.68126980525781,41.695377445900185],[-87.68127114381548,41.69542157414569],[-87.68127719352486,41.69562098484892],[-87.68128666747926,41.695908315421626],[-87.68129077252642,41.6960324374642],[-87.68129351856544,41.696114563495165],[-87.68129974785572,41.69630258566116],[-87.68130955985508,41.696601416597304],[-87.68131582137045,41.6967921286503],[-87.68132177213036,41.69698602208527],[-87.6813292416079,41.697273972136955],[-87.68133307856321,41.69742185882282],[-87.68133834431198,41.69758569790858],[-87.6813475483974,41.69780535161161],[-87.6813558409255,41.698003237578824],[-87.68136334882706,41.69826412922959],[-87.68136893726204,41.69845766352017],[-87.68137571134795,41.69869333030128],[-87.68138191829284,41.698905392600736],[-87.68138771505961,41.699078961390505],[-87.68124139521113,41.699070599947184],[-87.68094074367347,41.699068948445415],[-87.68073848225336,41.699063848203025],[-87.68061899219975,41.69906085941385],[-87.68055836860528,41.69905933994854],[-87.68042255070436,41.69905961123191],[-87.68015891155366,41.69905877144133],[-87.6799609625044,41.699058140158236],[-87.67986129144987,41.69905790303252],[-87.67967191317989,41.699060668072214],[-87.67944513561618,41.699064674501244],[-87.67932713033825,41.69906693943041],[-87.6791732697419,41.69906985061225],[-87.67895549765386,41.699074096421036],[-87.67869388544537,41.69907919613493],[-87.67853108724375,41.69908238541208],[-87.67837744628207,41.69908529677966],[-87.6781696008122,41.69908921648505],[-87.6779867333083,41.699092674504826],[-87.67775006787984,41.6990968742281],[-87.67757243868331,41.699100026114074],[-87.67741890638155,41.6991030468676],[-87.67722728377339,41.69910683791417],[-87.67707338473089,41.69910991099879],[-87.67691018335304,41.69911312284574],[-87.67673797312119,41.69911642020553],[-87.67656063777332,41.699119617213206],[-87.67617703239682,41.699126551341905],[-87.67595025559133,41.69913044110393],[-87.67578731546746,41.699133158870715],[-87.67557002542983,41.6991367728434],[-87.67535793674845,41.69914022435703],[-87.67517082551358,41.699143269116504],[-87.6749716367008,41.69914569578894],[-87.67479069198208,41.699147293592],[-87.67460971064246,41.6991488909002],[-87.67436018555301,41.699153647161836],[-87.67415629397061,41.699157533156026],[-87.67392346942096,41.69916197014249],[-87.67376062788557,41.699165810776684],[-87.67359844504912,41.69916965496156],[-87.67341714322212,41.69917393799608],[-87.67319925112531,41.69917910829674],[-87.67299645132567,41.69918374743219],[-87.6728799424931,41.69918641226637],[-87.67279691934506,41.69918744886756],[-87.67256535543609,41.699190339526254],[-87.67243804735335,41.699192708549795],[-87.67229348953147,41.69919541730261],[-87.67208567410692,41.69919987504126],[-87.67185005968038,41.69920499569405],[-87.67165934801554,41.69920916690417],[-87.67146299834509,41.69921322491728],[-87.6711986937707,41.69921820259317],[-87.67099665330858,41.69922200719946],[-87.67080930520808,41.699226718081725],[-87.67065561937873,41.6992303326653],[-87.67045473528454,41.699233812020445],[-87.67027166461833,41.699235582547075],[-87.66999921958725,41.69924353117979],[-87.66976851072096,41.69924870524382],[-87.66972939280852,41.69924940008659],[-87.66952102128273,41.69925310077279],[-87.66934524116705,41.69925622235373],[-87.6692170045901,41.69925987200462],[-87.66899272793607,41.69926265843805],[-87.66879939729779,41.6992650599754],[-87.66859069250827,41.69927060398196],[-87.66848974668788,41.699273230891315],[-87.66826966128428,41.699277967504486],[-87.66805096328923,41.69928309593427],[-87.66790636477606,41.69928612825144],[-87.66776132734644,41.69928907551464],[-87.66755157414678,41.699293294282754],[-87.66738781985828,41.69929673639019],[-87.66724307758042,41.69929946516309],[-87.6668906627138,41.699305589375186],[-87.6666806000047,41.699309239151745],[-87.66627082117193,41.699318744226595],[-87.66603502369601,41.69932374211857],[-87.66575147055882,41.69932931286001],[-87.66543391988073,41.69933290150152],[-87.66512323957556,41.69933781877507],[-87.6648511983775,41.699345567640485],[-87.66445559199403,41.69935302511788],[-87.6641336773175,41.699359092534735],[-87.66388857578929,41.69936436116134],[-87.66352443028173,41.69937307941611],[-87.66328208509462,41.69937741053152],[-87.66309710112708,41.69937997381146],[-87.66283385418146,41.69938711000176],[-87.6626338466266,41.699390690570105],[-87.66244230355149,41.699393716452974],[-87.66230664497954,41.69939620388202],[-87.66216126298752,41.69939797654683],[-87.66170182210723,41.69940720188983],[-87.66128300040033,41.69941293147864],[-87.6610482461487,41.699416141147815],[-87.6604445544347,41.69942270870773],[-87.66045744765572,41.69936748457292],[-87.66050675791017,41.69922827897161]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7148618.03553","perimeter":"0.0","tract_cent":"1160988.45354301","census_t_1":"17031750300","tract_numa":"38","tract_comm":"75","objectid":"249","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1832256.61422093","census_tra":"750300","tract_ce_3":"41.6953922","tract_crea":"","tract_ce_2":"-87.68619071","shape_len":"10685.9319651"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68116254280513,41.69203329724877],[-87.68115514950513,41.69177915866871],[-87.68152531908773,41.69178232767197],[-87.6818273441965,41.69178230420246],[-87.68209419120133,41.69178530574209],[-87.68243248012665,41.691782972362944],[-87.68263156982147,41.69178159860733],[-87.68303202438823,41.69177681236816],[-87.6832819790713,41.69177380810536],[-87.6836482484525,41.69176928437774],[-87.6839922243066,41.69176503474316],[-87.68444277274898,41.69175962098743],[-87.68465947801866,41.69175702974078],[-87.68486424214238,41.691754982693304],[-87.68516124442333,41.6917520120255],[-87.6855120463579,41.69174765061621],[-87.68589318428998,41.691744909973515],[-87.68607098608554,41.691743631246425],[-87.68614539721162,41.691743095835946],[-87.68654626873074,41.691736845199394],[-87.68668490681291,41.69173486841122],[-87.68682226469731,41.691732909501766],[-87.68705683982952,41.69173005749739],[-87.68730058446062,41.6917272406431],[-87.6875025518172,41.69172490642276],[-87.68791262980602,41.69172061171619],[-87.68818638191037,41.691717742506185],[-87.68853341112047,41.6917147804925],[-87.68889634294072,41.69171168157094],[-87.68915516573507,41.69170786351593],[-87.68949718711684,41.69170278208148],[-87.68976149239401,41.69169991547202],[-87.68984681122285,41.69169898949961],[-87.690016094017,41.691697153107356],[-87.69026212727255,41.69169446847261],[-87.69061753697339,41.691690638683504],[-87.69094304194786,41.691687601705866],[-87.69094320782261,41.691687600163156],[-87.69094322137934,41.69168793038255],[-87.69095615409728,41.69200190090453],[-87.69096296340177,41.69216747729747],[-87.69096349491618,41.69218040608953],[-87.69100890321286,41.692283435538656],[-87.69101346181667,41.69241675531923],[-87.69101423866445,41.69243947288011],[-87.69105059540367,41.69350270781159],[-87.69111340944374,41.695339583510744],[-87.69117572030835,41.69716166657501],[-87.69123384120277,41.69886114370353],[-87.69123773645497,41.69897505032747],[-87.6912379690734,41.69898185071092],[-87.69072949293762,41.69898949218636],[-87.69045037531964,41.69899125173222],[-87.69014633498503,41.69899528612709],[-87.69002120151306,41.69899750759887],[-87.69000342706606,41.69899782304063],[-87.68984191478746,41.69900068975659],[-87.68974010875348,41.69900157414684],[-87.6895999243348,41.699002762152325],[-87.68944765504854,41.699004052425586],[-87.68919635331505,41.699007199721336],[-87.68906003878989,41.6990095095109],[-87.68877408263089,41.69901402559031],[-87.68863033510631,41.69901629290539],[-87.68842903470303,41.69901757844148],[-87.68827575342225,41.69901756890213],[-87.68807410921966,41.69902031461574],[-87.68793040138375,41.699022271168474],[-87.68780888977504,41.699023674373585],[-87.68754184714813,41.69902622494764],[-87.68734032133099,41.69902814920898],[-87.68711399509232,41.69903102069132],[-87.68681540965679,41.69903513183277],[-87.68663800905024,41.699037564087455],[-87.68646065176671,41.6990392163729],[-87.68639107196104,41.699039864795566],[-87.68630666206103,41.69904065087314],[-87.68621155109206,41.699041536899685],[-87.68615417125281,41.699042071379054],[-87.68594389154437,41.69904402951587],[-87.68575851648397,41.699045674519404],[-87.68556508423066,41.699047411024786],[-87.68538783829429,41.699049018921485],[-87.6852576423504,41.699051003306835],[-87.68509509371178,41.69905348070902],[-87.68482925919626,41.69905753157092],[-87.68463563941147,41.69905970454648],[-87.68433599936279,41.69906306232209],[-87.68414259952527,41.69906520826564],[-87.68387954165995,41.69906823717927],[-87.68354624720811,41.69907207423502],[-87.68327180749546,41.699074693535906],[-87.68302212465082,41.699076985742444],[-87.68266688303667,41.69908000996708],[-87.68236961373113,41.69908253983975],[-87.6821262597485,41.699081792297605],[-87.68205693723334,41.699082264190864],[-87.68181161849027,41.699083933306866],[-87.68155616615904,41.699087160014166],[-87.68153570521923,41.69908741801876],[-87.68138771505961,41.699078961390505],[-87.68138191829284,41.698905392600736],[-87.68137571134795,41.69869333030128],[-87.68136893726204,41.69845766352017],[-87.68136334882706,41.69826412922959],[-87.6813558409255,41.698003237578824],[-87.6813475483974,41.69780535161161],[-87.68133834431198,41.69758569790858],[-87.68133307856321,41.69742185882282],[-87.6813292416079,41.697273972136955],[-87.68132177213036,41.69698602208527],[-87.68131582137045,41.6967921286503],[-87.68130955985508,41.696601416597304],[-87.68129974785572,41.69630258566116],[-87.68129351856544,41.696114563495165],[-87.68129077252642,41.6960324374642],[-87.68128666747926,41.695908315421626],[-87.68127719352486,41.69562098484892],[-87.68127114381548,41.69542157414569],[-87.68126980525781,41.695377445900185],[-87.68126499694291,41.69521895311142],[-87.68125848778296,41.69499333194854],[-87.68124980454598,41.694693025115974],[-87.68123959306148,41.69440623916243],[-87.68123088264096,41.694181099456294],[-87.68122257524276,41.6939660888955],[-87.6812116961988,41.69368451307679],[-87.68121091175585,41.69363530271018],[-87.6812080216918,41.693453776031525],[-87.68120359041117,41.69331612251086],[-87.68119839938285,41.693155851358405],[-87.68119135624072,41.69293865246405],[-87.68118471953781,41.692733996928844],[-87.68117997539187,41.69258382744788],[-87.68117086851748,41.69229644389958],[-87.68116946901502,41.69225219755152],[-87.68116254280513,41.69203329724877]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1322025.58678","perimeter":"0.0","tract_cent":"1157520.03770592","census_t_1":"17031300200","tract_numa":"7","tract_comm":"30","objectid":"281","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1889921.97600493","census_tra":"300200","tract_ce_3":"41.85370527","tract_crea":"","tract_ce_2":"-87.69732843","shape_len":"4647.65430717"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69898027967164,41.85185286814462],[-87.69908861861846,41.85185278863724],[-87.69909205125778,41.85198974015792],[-87.69911270418683,41.852596582735806],[-87.69911827807657,41.85276803564977],[-87.69913100251306,41.85315942175775],[-87.69915034057014,41.85370312881969],[-87.69916652917871,41.85417601023127],[-87.69916760511182,41.85420743766894],[-87.69917730901928,41.85447468689183],[-87.69917949816588,41.85453369534112],[-87.69919103404492,41.85484461884569],[-87.69920788899886,41.855382751339036],[-87.69921275795315,41.85550509999491],[-87.69888724095331,41.855509914020146],[-87.69806988064616,41.85552251189734],[-87.69746052753644,41.85553181830933],[-87.69737278552843,41.85553308881824],[-87.69693023830281,41.855537717929025],[-87.6965985435202,41.855542575208766],[-87.69643347247144,41.8555462977333],[-87.69614229461149,41.85555190005565],[-87.69595336699847,41.855555324601994],[-87.69594004349372,41.85555547322022],[-87.69574437161661,41.85555765004999],[-87.6955687645371,41.85555168927467],[-87.69556073161323,41.855341130388545],[-87.69555891538518,41.85528478478721],[-87.69555891416508,41.855284759807674],[-87.69555598790498,41.85519095302548],[-87.69555099160276,41.85501905838627],[-87.6955451755064,41.85480642834872],[-87.69554051866838,41.85467470549809],[-87.6955332555165,41.85446925764501],[-87.69553060923451,41.85432182107178],[-87.69552958342163,41.854267240017414],[-87.69552866963315,41.85421863713017],[-87.69552842403257,41.85420556211512],[-87.69551516103625,41.854058999899294],[-87.69551218589805,41.853909311470716],[-87.69551217502284,41.85390881744363],[-87.69550649824001,41.85373664016899],[-87.69549945444277,41.85352298624183],[-87.69549288107686,41.853338535488625],[-87.69548845057403,41.853171193368226],[-87.69548155684951,41.852956224654555],[-87.69547662990671,41.85281206903655],[-87.69546893035849,41.85258677714143],[-87.69546227227337,41.85240721094388],[-87.6954605189272,41.85236797200753],[-87.69545404455388,41.85222308000205],[-87.69544871121693,41.852039486812984],[-87.6954456288556,41.85190201298709],[-87.6955980478407,41.851900632997136],[-87.69594035811018,41.85189679798195],[-87.69622695282891,41.85189276239275],[-87.69655374339442,41.85188823544605],[-87.69696777186059,41.851888389680916],[-87.6971339288664,41.85187783917976],[-87.69742009298653,41.85187646153238],[-87.69773873334822,41.85187213169867],[-87.69853334376855,41.85185909724781],[-87.69861135406171,41.85185781734378],[-87.69898027967164,41.85185286814462]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14168841.2208","perimeter":"0.0","tract_cent":"1170332.22021459","census_t_1":"17031750600","tract_numa":"64","tract_comm":"75","objectid":"250","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1829865.06442408","census_tra":"750600","tract_ce_3":"41.68863166","tract_crea":"","tract_ce_2":"-87.65204925","shape_len":"16651.0937171"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64237406526117,41.6921740156247],[-87.64236801503489,41.691928526142384],[-87.64236285142654,41.69173362003263],[-87.64235982623963,41.691619437601105],[-87.64235154589427,41.69133598056195],[-87.64234307819537,41.69104615552932],[-87.64233745391569,41.69088404140015],[-87.64232385845861,41.69053659156173],[-87.64231468343075,41.690302133277584],[-87.64230281711627,41.689953613904116],[-87.64229217278391,41.68961059052404],[-87.64228389931613,41.68931972372283],[-87.64227871216535,41.68911340095172],[-87.64227511656291,41.688970399529715],[-87.64227154156654,41.68888362963332],[-87.64226569059043,41.68872014685045],[-87.64225792885726,41.6885032653923],[-87.6422494326263,41.688199059729016],[-87.64223942812993,41.68787151813582],[-87.64222697789761,41.687492066446524],[-87.64221848901553,41.687228175051665],[-87.64220849362034,41.68690302102773],[-87.64220333602053,41.68673525625376],[-87.64219629968434,41.68651015101472],[-87.64218841306135,41.686241350835125],[-87.64217965960019,41.685944086671014],[-87.64217280737962,41.68571198445175],[-87.64216288579415,41.68544868811023],[-87.64215722466845,41.68533797500452],[-87.6421520465059,41.68508212044722],[-87.64249254215979,41.68507716611851],[-87.64271570931287,41.68507433601588],[-87.64314578585612,41.68506885130867],[-87.64359933363399,41.68506298443472],[-87.64415079104133,41.6850557256606],[-87.64421808950644,41.68505481330581],[-87.64456904093443,41.685050413066215],[-87.64464565011109,41.68504945417173],[-87.64487004987211,41.685046645658346],[-87.6451874708951,41.685041850556885],[-87.64524740802968,41.68504116136834],[-87.6454023598321,41.68503937923943],[-87.64543542248465,41.685038998912376],[-87.64597507907268,41.68503284218403],[-87.64643009399819,41.685026671034386],[-87.64676437002909,41.685020490375386],[-87.64701549258608,41.68501729667765],[-87.64777749828599,41.68500760245254],[-87.64808429121226,41.68500383368368],[-87.64823035010609,41.68500172988793],[-87.64854784119076,41.68499715617088],[-87.64872011339942,41.68499494421127],[-87.64896016096833,41.68499168111234],[-87.64916571809194,41.68498887083149],[-87.64944560158911,41.68498555405835],[-87.6496744370268,41.68498284159449],[-87.64986352047907,41.68497995978483],[-87.65006066233664,41.68497660387596],[-87.650258390629,41.68497325111439],[-87.65043041628802,41.6849700746074],[-87.65066119712685,41.68496714944692],[-87.6509625734934,41.68496332846837],[-87.65116878528656,41.68496087525497],[-87.65139967510133,41.68495812901218],[-87.65161467439177,41.684955562205936],[-87.65187548196157,41.68495219386812],[-87.65204280963758,41.684950032956756],[-87.65220596881706,41.684947569644024],[-87.65250698482839,41.684943014132074],[-87.65281660631169,41.68493831613557],[-87.65309271576318,41.684934784809535],[-87.65330453284166,41.68493207525512],[-87.65345545845526,41.68493013192892],[-87.65368602175687,41.684927049839914],[-87.65391585304913,41.68492401784752],[-87.65414433439186,41.68492051088024],[-87.65430820876685,41.68491898874439],[-87.65448564322206,41.684917340647615],[-87.65461482186343,41.6849154690494],[-87.65485362615843,41.684912049079045],[-87.65505640124753,41.684909129505776],[-87.65526803704557,41.684906097193256],[-87.65552350674301,41.68490326923426],[-87.65581146067242,41.684900080879],[-87.6560323281867,41.684896498102496],[-87.65627106318853,41.684892690570756],[-87.65651983118514,41.68488869491324],[-87.65674177014475,41.6848855707218],[-87.65689923654303,41.68488335401326],[-87.65711043091471,41.68488050781274],[-87.65723960829627,41.68487874302971],[-87.65745131543711,41.684875871775816],[-87.65771842106196,41.68487222808195],[-87.65795703166928,41.68486979616861],[-87.65815049774027,41.68486782414958],[-87.65836260664994,41.684865070760246],[-87.6585740550171,41.6848623257251],[-87.65882252410371,41.68485895425032],[-87.65896136749703,41.684857079601805],[-87.65917062441379,41.68485394381214],[-87.65942953148182,41.684850055943436],[-87.6596495134772,41.68484706450116],[-87.65979729169833,41.68484502167034],[-87.6599831446798,41.68484290836613],[-87.66021139591858,41.68484031255373],[-87.66038926751916,41.68483813730032],[-87.66065146333185,41.684834930339406],[-87.66088122477495,41.68483144518653],[-87.66124917358223,41.68482585850261],[-87.66159876515245,41.684820342824615],[-87.66160896420158,41.68498510273874],[-87.66161052430051,41.685123728327696],[-87.66160322242861,41.685277752459506],[-87.66158952000356,41.68541491693852],[-87.66156328129362,41.68556874831617],[-87.66153300132004,41.68572941717684],[-87.66149039427052,41.68595549328857],[-87.66144098393902,41.68621105893755],[-87.66138816355685,41.68648820254369],[-87.66134528672715,41.6867138930605],[-87.66133371806107,41.686772931834376],[-87.66129529403368,41.6869690161127],[-87.66128714559501,41.68701224692017],[-87.66125445150149,41.687185689331415],[-87.66122376365226,41.68734824927012],[-87.66120007849798,41.68747061791105],[-87.66116023159258,41.68767648449047],[-87.66112191471602,41.687875499158274],[-87.66111171884812,41.68792846036246],[-87.66108750653649,41.68805422858567],[-87.66104198448527,41.68833833447333],[-87.6609979570036,41.68861311009852],[-87.66096261548084,41.688736398704286],[-87.66092736804706,41.68885935797775],[-87.6608696956868,41.6890539232208],[-87.66078613453813,41.6892928121705],[-87.66094568326601,41.6892903666573],[-87.6612019141577,41.68928643886004],[-87.66141132670401,41.68928322829762],[-87.66159953557853,41.68928034239251],[-87.66175359229076,41.68927798001612],[-87.66187795827113,41.68928745592069],[-87.66216548236943,41.68931225894696],[-87.66241086787394,41.68936824640302],[-87.66243598114723,41.68937474395147],[-87.66246151287575,41.68938134986853],[-87.66265142270382,41.68943048390845],[-87.66295789874823,41.689533208980635],[-87.66315348031547,41.689596838195754],[-87.66337082839287,41.689665295565554],[-87.66318384179698,41.689973345908946],[-87.66307489152925,41.69014977557601],[-87.66304233561587,41.69020249592517],[-87.66289607692966,41.690437875389144],[-87.66275960495882,41.6906615105738],[-87.66269681781357,41.69076151137134],[-87.66259170255844,41.690928926661435],[-87.66249443893196,41.691068210228956],[-87.66239171276818,41.69121166559027],[-87.66227281398507,41.691378727589225],[-87.66208284371514,41.691648319273426],[-87.66196256676302,41.691821003436644],[-87.66188300351685,41.69193736545142],[-87.66184408918221,41.692021279086084],[-87.66184408092214,41.69211747699623],[-87.66159214849992,41.692119974913524],[-87.66138385917144,41.69212287373993],[-87.6613796094643,41.69212293890607],[-87.66126961878919,41.69212462320581],[-87.66111872582202,41.69212693427012],[-87.66082824397799,41.69213138237388],[-87.66054532368985,41.692135714016295],[-87.6603399428731,41.6921388582271],[-87.6601460426637,41.69214182617393],[-87.65973395679605,41.692148132482586],[-87.65916514904433,41.69215683512077],[-87.65896701978676,41.69216149065427],[-87.65881487306791,41.69215955490816],[-87.65859618753164,41.69216187858796],[-87.65826252921376,41.69216542287717],[-87.6578909613442,41.69216647794773],[-87.65756327670367,41.692172592452195],[-87.65732862479447,41.69217552100975],[-87.65697492750506,41.69218173165201],[-87.65669413764459,41.6921866613214],[-87.65635874881009,41.6921872658061],[-87.65591266460964,41.69219248598139],[-87.65555797265682,41.69219733783325],[-87.6552407015468,41.69220197030238],[-87.65492383666786,41.69220630241683],[-87.65453875337757,41.69221152716541],[-87.6542022583944,41.692216091519036],[-87.6537762353272,41.69222158660906],[-87.65337623646421,41.69222437999239],[-87.65322771379469,41.69222599216875],[-87.65289953859435,41.69222998364484],[-87.65253302643727,41.69223415241975],[-87.65210875932866,41.69223865663434],[-87.6517997526389,41.69224193611615],[-87.65150935644743,41.6922465255542],[-87.65114333295007,41.69224951273223],[-87.65078876246513,41.6922531705197],[-87.65019137526295,41.69226315053668],[-87.6498495117237,41.692266579083345],[-87.64967621580173,41.692267997891555],[-87.64915056632422,41.69227229967842],[-87.64898457606215,41.69227425930794],[-87.64890767734722,41.69227516721375],[-87.64886007228174,41.69227572921835],[-87.64837501452422,41.692282389484674],[-87.64794023832437,41.69228803031236],[-87.64752313662576,41.692294570827166],[-87.64724322073107,41.692298393939204],[-87.64687014378241,41.69230348820401],[-87.64661546403423,41.692306302692685],[-87.64628245393638,41.69231043216967],[-87.64610436571488,41.69231230707825],[-87.64602454182595,41.69231314726181],[-87.64572882639976,41.69231625965702],[-87.64542217332136,41.69232084621407],[-87.64511473457401,41.69232353365816],[-87.64481496877882,41.69232716639097],[-87.64460401481469,41.692329722447056],[-87.64443362618896,41.69233199437963],[-87.64419377550612,41.69233478261903],[-87.64407307955352,41.69233633713796],[-87.64383919711905,41.692339105271294],[-87.64359586891135,41.692342431516835],[-87.64330627740372,41.692346389772695],[-87.64302182118021,41.692350087794935],[-87.64267625734043,41.692353692318896],[-87.64237845382664,41.692356090049664],[-87.64237406526117,41.6921740156247]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"88551701.2358","perimeter":"0.0","tract_cent":"1116648.41823452","census_t_1":"17031760800","tract_numa":"90","tract_comm":"76","objectid":"251","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1929659.67726478","census_tra":"760800","tract_ce_3":"41.96348435","tract_crea":"","tract_ce_2":"-87.84651796","shape_len":"64596.7571781"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8415582336858,41.97394084342707],[-87.84155036519255,41.97378788834434],[-87.84135186713092,41.973795750734],[-87.8411553738481,41.97379641809829],[-87.84102661923944,41.973797199723386],[-87.84066006761184,41.973799425256296],[-87.84036263326348,41.97380415799101],[-87.83993305081546,41.97381098479379],[-87.83959909469145,41.97381627180167],[-87.83938794505515,41.973819562432915],[-87.83899021516291,41.97382564405355],[-87.83865907005212,41.97382882766362],[-87.83841830293923,41.973833882394],[-87.83814697098337,41.973839572891066],[-87.83794434766692,41.973843546649164],[-87.83794433957462,41.97384354688866],[-87.83793390091792,41.97384370491576],[-87.83793286820648,41.97373513732131],[-87.83793394252133,41.973596504471274],[-87.83793501725393,41.973457816735475],[-87.83793609155369,41.973319183878665],[-87.83793716627116,41.9731804961361],[-87.83793761963211,41.97312199153138],[-87.83793824055155,41.973041863821344],[-87.8379393152582,41.972903175523186],[-87.83794038952776,41.97276454265285],[-87.83794041589532,41.97276113994577],[-87.83794146421504,41.97262585489675],[-87.83794253846948,41.97248722201963],[-87.83794321210736,41.972400288337255],[-87.83794361271637,41.972348589139145],[-87.83794461383567,41.972209901055535],[-87.83794568806763,41.972071268168285],[-87.83794676271731,41.97193258039527],[-87.83794783693416,41.97179394750125],[-87.83794802404957,41.97176979925333],[-87.83794891156874,41.971655259721466],[-87.83794915481698,41.971623866998385],[-87.83794998577049,41.97151662682067],[-87.83795105996471,41.97137799391651],[-87.8379511738178,41.97136330025541],[-87.83795117385182,41.97136329586482],[-87.83795130235903,41.97134671095667],[-87.83683830685554,41.971367149714986],[-87.83664960240904,41.97136623550029],[-87.83664890925581,41.97136623222703],[-87.83664890934323,41.97136622097615],[-87.83665028724734,41.97023249310929],[-87.83670155586003,41.97023139877875],[-87.83670313955695,41.97023136501529],[-87.83674075218501,41.97023056175386],[-87.8369275129587,41.970226575030864],[-87.83707708549974,41.97022428509108],[-87.83725291565578,41.97022175222192],[-87.8373029704179,41.970220842825896],[-87.83741113474449,41.97021886831469],[-87.83756019314917,41.970216438588345],[-87.83772892977768,41.97021343473445],[-87.83789454361684,41.97021010294397],[-87.83806810048875,41.970206610890706],[-87.83813684013903,41.97020523344222],[-87.83826957167221,41.970202814970385],[-87.83844187476296,41.97019981858727],[-87.83863124304874,41.970196525562166],[-87.83873737914506,41.97019528144977],[-87.8388787566729,41.9701922406362],[-87.8389671053238,41.97018962992154],[-87.83912657067081,41.970187150494596],[-87.8392739738368,41.97018485878161],[-87.83936193509055,41.97018474305409],[-87.83957538699052,41.970181764770025],[-87.83971471049702,41.97017808264972],[-87.83974314052641,41.97017756713006],[-87.83991765043024,41.97017439992034],[-87.84018156759598,41.970169716168236],[-87.84035985711435,41.97016772093257],[-87.8405324831345,41.97016578919874],[-87.84068265753493,41.97016171368118],[-87.84082473077218,41.97015908536248],[-87.84104916223181,41.97015332243143],[-87.84122953123773,41.97014869153712],[-87.84134394445722,41.97014695909351],[-87.84158247493968,41.97014362297086],[-87.84158247788142,41.97014362298346],[-87.84158907473484,41.97014335815816],[-87.84159072535259,41.97023311439922],[-87.8415895651933,41.97036483159155],[-87.84158841416401,41.97048584639468],[-87.84158824573885,41.970507744481885],[-87.8415874082134,41.97060702646937],[-87.84158626186904,41.9707273826767],[-87.84158625596355,41.970728150481776],[-87.84158517808461,41.97084916641382],[-87.84158435152023,41.970947021452425],[-87.84158409936362,41.970970291010474],[-87.84158302063634,41.971091415604555],[-87.84158236829215,41.97116671424294],[-87.8415819423207,41.971212485862445],[-87.84158086357874,41.97133361072574],[-87.84157988825473,41.97144128939482],[-87.84157959525197,41.97146977305151],[-87.84157840077499,41.97160599057458],[-87.84157726544504,41.97173446967272],[-87.84157613010804,41.97186294876793],[-87.84157514820845,41.971972004992764],[-87.84157514813036,41.971972015146015],[-87.84156470907453,41.972054542089275],[-87.84156138286433,41.97230768128786],[-87.84530392558047,41.97226396462169],[-87.8465272817454,41.97225766086671],[-87.84653208274344,41.97197554861165],[-87.84653354077653,41.97188987887578],[-87.84653779640098,41.97163982875225],[-87.84653878299719,41.97158187848618],[-87.84653878301391,41.97158187629087],[-87.84653878303062,41.97158187409557],[-87.84653991646977,41.97119467122192],[-87.8465407681982,41.97090367507199],[-87.84654591373419,41.97022786091688],[-87.84656061044448,41.969549715631175],[-87.84655587710593,41.96912684948139],[-87.84655304497012,41.96887384714709],[-87.8465497950455,41.968716053764076],[-87.84654445865996,41.968456933273366],[-87.84653912529119,41.9681979521896],[-87.84654207930899,41.96796517504937],[-87.84654581035488,41.967671142398466],[-87.84654706891777,41.96757194826981],[-87.84654972102857,41.96736292702751],[-87.84655501160181,41.966945943454036],[-87.84656050710178,41.96675291325165],[-87.84656171526937,41.96671047060355],[-87.84657035446159,41.96640703671417],[-87.84657035225543,41.96640703670482],[-87.8464903940211,41.96640939303235],[-87.84609104741527,41.96642116200026],[-87.84598027344194,41.96642343905099],[-87.84582331573705,41.96642666642373],[-87.84568195811532,41.96642958032097],[-87.84557386175139,41.96643180852903],[-87.84526074948339,41.96643804856996],[-87.84492009180973,41.96644483632182],[-87.84458479886727,41.966452108575766],[-87.84447706958662,41.96645416799575],[-87.8442831256771,41.96645787571657],[-87.8440479488626,41.96646170376462],[-87.84381387454725,41.96646551298038],[-87.8436550793573,41.96646809673793],[-87.84351203089811,41.966470714804124],[-87.84343133571069,41.966472191824565],[-87.84336388801974,41.9664736001904],[-87.84334530569126,41.96647397642292],[-87.84330773023972,41.96647473755357],[-87.8431430077425,41.966478260443125],[-87.8430371648119,41.966480497804866],[-87.8428929268095,41.96648272747608],[-87.84280027928907,41.966484159304905],[-87.8427122039946,41.96648552058811],[-87.84254474847059,41.96648810833504],[-87.84245174292377,41.96648971425614],[-87.84220457514651,41.96649395349873],[-87.84196994886908,41.966497834254525],[-87.8417285604218,41.96650334472661],[-87.8417197916648,41.96650354510149],[-87.8416225159564,41.966505765978674],[-87.8414314590806,41.96651012750878],[-87.84137411294193,41.966511152084415],[-87.8413150273113,41.966512207870004],[-87.84124308917478,41.96651351177228],[-87.841185245708,41.96651456019192],[-87.8409858050948,41.966518919343514],[-87.84085221339744,41.96652206998064],[-87.84069085151566,41.96652587516997],[-87.84064963592687,41.96652684703126],[-87.84051814491706,41.9665299481172],[-87.84039686177759,41.96653171501226],[-87.84012973030576,41.96653560693598],[-87.84010559615332,41.9665359560493],[-87.84007118457218,41.96653645309628],[-87.83995990420789,41.966538066020185],[-87.83979368236909,41.96654047558407],[-87.8395425844036,41.9665441150913],[-87.83947477440516,41.96654475644794],[-87.83939587206935,41.96654617330593],[-87.83915798858484,41.966550445109306],[-87.83893595542102,41.96655443149772],[-87.8388768744555,41.9665554920857],[-87.83869068395828,41.966558175461095],[-87.83863961625826,41.96655887555948],[-87.8385140558362,41.96656059733672],[-87.83841802258306,41.96656236888143],[-87.83836487700556,41.96656334914022],[-87.83825599976429,41.96656535743266],[-87.83813055209362,41.966568090793665],[-87.83793449579191,41.966572362919706],[-87.83771278797745,41.9665771932894],[-87.83759787757204,41.966579696587154],[-87.83752380674088,41.9665815501412],[-87.83741086251156,41.96658437705308],[-87.83717502183063,41.96658835253109],[-87.83678007744639,41.9665952138269],[-87.83668207260322,41.96659715541229],[-87.83668699593824,41.96516779845465],[-87.83668730767751,41.96507728547364],[-87.83668794626811,41.9648920403436],[-87.83668797739628,41.96488296646006],[-87.83669376003431,41.96320424709269],[-87.83669329075059,41.96320298354706],[-87.83669410165854,41.96312697202835],[-87.83669340530693,41.96304903358684],[-87.83669256783803,41.9629551772637],[-87.8366931540148,41.96279925350217],[-87.83669315403185,41.962799251306876],[-87.83669315404889,41.962799249111576],[-87.83669360050341,41.9626612219636],[-87.83669386611221,41.96254179459493],[-87.83669396258217,41.9623494526929],[-87.8366939625971,41.962349450772024],[-87.8366938265583,41.96225807000976],[-87.83669339681396,41.962157163078466],[-87.83669318442834,41.96202826608843],[-87.83669383714435,41.96188266138875],[-87.83669477185705,41.96180964185748],[-87.83669466849258,41.961598618093156],[-87.8366946234281,41.961506789582124],[-87.83669529552245,41.96136398981597],[-87.83669533441117,41.96135571480164],[-87.83669552872261,41.96131445141879],[-87.83669557886438,41.961222767111984],[-87.83669570191232,41.96118002730622],[-87.83669581668646,41.96114005747581],[-87.83669649137738,41.96112679897129],[-87.83669679769041,41.96112078058446],[-87.83669985177102,41.961060767366654],[-87.8366989402851,41.96100494552364],[-87.83669735991323,41.96090817818244],[-87.83669816481277,41.96075428575706],[-87.83669887455908,41.96061842296455],[-87.83670009259683,41.96048997147677],[-87.8367011345251,41.960388933944216],[-87.8367012789962,41.960370328508866],[-87.83670198681153,41.96026023361526],[-87.8367017154465,41.96018627608707],[-87.83670158967894,41.96017572018946],[-87.83670051401896,41.96008531089712],[-87.83670056796791,41.960021590426585],[-87.836700779168,41.95998487372495],[-87.8366998586,41.959884624065914],[-87.83669874755212,41.959763544154725],[-87.83669874789945,41.959761936868624],[-87.8366988644668,41.959360214524075],[-87.8366988644817,41.95936021260319],[-87.8366724333189,41.95782825737092],[-87.83667489762766,41.95751088336158],[-87.83668658999969,41.95600492607657],[-87.83668762711078,41.95566810849342],[-87.83669260364597,41.954051804611765],[-87.83669029094496,41.95387790687989],[-87.83666601343788,41.95205240150226],[-87.83666372085014,41.951879997201345],[-87.8366299611985,41.95033645400484],[-87.83662529575975,41.95022002341702],[-87.83657631684297,41.9489976997117],[-87.83655614199746,41.94839842147837],[-87.83652053855128,41.947340811603205],[-87.83651217665576,41.9471737120973],[-87.83650127215138,41.94694951681429],[-87.83649928775756,41.946717456760354],[-87.83649548090932,41.94657893936563],[-87.83649169248609,41.94644108066068],[-87.83648502045546,41.94622101999749],[-87.83645174133555,41.94526264813668],[-87.8364407395466,41.94494580736711],[-87.83643294850832,41.94476073065275],[-87.83616437273696,41.94476840439047],[-87.83578113179881,41.944777968130126],[-87.83543730887038,41.944785808018864],[-87.83517826886445,41.944792937653375],[-87.83515653920432,41.944754184122246],[-87.8351402483535,41.944722033462405],[-87.83512729277638,41.94469113217315],[-87.83512085899737,41.94466766858592],[-87.83511636562994,41.94464048154858],[-87.83511050768419,41.94459503895348],[-87.83509392247291,41.944444857947936],[-87.83508173638718,41.94431645744682],[-87.83508050391448,41.94430347219432],[-87.83507461772948,41.94416719593793],[-87.8350698855741,41.94404793887442],[-87.83506637456298,41.94396068475902],[-87.83505991439988,41.9437989944885],[-87.83505946933322,41.943787466816104],[-87.83505856633349,41.943764411689806],[-87.83505150803518,41.94358040800103],[-87.83504726148898,41.9434696052425],[-87.8350424092614,41.943346944804375],[-87.83503790166438,41.943236579983974],[-87.83503389066658,41.94313801748121],[-87.83502754456283,41.94299002136082],[-87.83502308057736,41.942884541167444],[-87.83501826186608,41.94277066265429],[-87.83501205572647,41.94260946741087],[-87.83500488760426,41.94242543576375],[-87.83500003835316,41.94230236395543],[-87.83499197128592,41.942129936741516],[-87.83498702848946,41.94201888367646],[-87.83497991668055,41.94182291542376],[-87.8349744614776,41.94168798564497],[-87.83496714310003,41.94150439266455],[-87.83496224162802,41.94140692395483],[-87.83495729272782,41.941296666947906],[-87.83495283747001,41.94119854155708],[-87.83494659641197,41.94107485967515],[-87.83493979849959,41.94095188887168],[-87.83492570860568,41.940731264433055],[-87.83490636269937,41.94043588422089],[-87.83490238387712,41.94033795297762],[-87.83489985080061,41.9402789414036],[-87.83489501047082,41.940166187324095],[-87.83488861571742,41.94000567723944],[-87.834883711127,41.93987083213127],[-87.83487878212419,41.93974861035313],[-87.83487363582007,41.93962597599492],[-87.83486903611744,41.93952754808071],[-87.83486467275098,41.93944125067002],[-87.83485970254311,41.93934320533547],[-87.83485607087262,41.9392482393436],[-87.8348517020068,41.939134005681375],[-87.8348444408143,41.93896202093809],[-87.83483773480484,41.9387895446389],[-87.83483142114541,41.93861860680449],[-87.83482542161042,41.93845925096462],[-87.83482108598169,41.93833637311619],[-87.83481312257197,41.93816490670152],[-87.83480821252822,41.93805448514181],[-87.83480390795424,41.9379558938262],[-87.83479964414586,41.93785683616717],[-87.83479499061872,41.93774647059937],[-87.83479485589307,41.93768826496167],[-87.8348101712996,41.937576422433644],[-87.83481021430457,41.93757642207153],[-87.8348102172448,41.93757642208429],[-87.83481030582745,41.93757642137122],[-87.83542307483154,41.93757150896019],[-87.8354231556961,41.937571508213175],[-87.83582269462353,41.937563799430556],[-87.83606005198324,41.93755909222596],[-87.8364091210152,41.93755217927009],[-87.8366558188179,41.93754682520123],[-87.83688618928454,41.93754252431774],[-87.83720121854195,41.93753631220447],[-87.83746234672076,41.937532692734],[-87.83779042793834,41.937525958809104],[-87.83813541152405,41.93751979135548],[-87.83853014170433,41.9375111745324],[-87.83891143502038,41.93750068730216],[-87.83933471862767,41.93749265773107],[-87.83936724168655,41.937492008140616],[-87.83947363868018,41.93748988268615],[-87.83967948655246,41.937485770661674],[-87.84005840666565,41.937477959035604],[-87.84037027559616,41.93747169693219],[-87.84052501870646,41.93746870314923],[-87.8407150787592,41.93746502616781],[-87.84095748220508,41.93746044766578],[-87.84107620138069,41.937458205071074],[-87.84118332566322,41.93745607456403],[-87.84143718003422,41.93745102547207],[-87.8417034221847,41.93744570065188],[-87.8418157671118,41.93744345359929],[-87.8421779593542,41.93743611248696],[-87.84260554841032,41.93742729289855],[-87.84298176339924,41.93741742960809],[-87.8433907347983,41.93741121747558],[-87.84342959572017,41.937410554535965],[-87.84358643842033,41.93740788089668],[-87.84365985500928,41.937406781570544],[-87.84367348123253,41.93740657815745],[-87.84384797590208,41.93740339793704],[-87.84411024935142,41.93739889007515],[-87.84444642923054,41.93739516284352],[-87.8449052738455,41.937384382155884],[-87.8451600972511,41.93737841347961],[-87.84533595436037,41.93737488004064],[-87.84558036968888,41.93736988128476],[-87.84575501323044,41.937366287712884],[-87.84598218894045,41.93736159880941],[-87.84617400201391,41.93735747292219],[-87.84618968596013,41.93735713880872],[-87.84624256936179,41.93735601410407],[-87.84641015513829,41.93735244886974],[-87.84646223570027,41.937351340966494],[-87.84661919742601,41.93734830172498],[-87.84694895655423,41.937343003180146],[-87.8485494547026,41.93731203878507],[-87.8496205526006,41.9372853542795],[-87.84968380521468,41.93734377201945],[-87.84970162008996,41.93736022543402],[-87.84977768116629,41.937430472553075],[-87.84997998762339,41.937588646840645],[-87.84998296403225,41.93759097385203],[-87.85018742141894,41.93775082970659],[-87.85066017932411,41.93807866708445],[-87.85069564325977,41.938106974405606],[-87.8506964904934,41.938107650577095],[-87.85070264946465,41.93811256667935],[-87.85099761262177,41.93834800428574],[-87.85134328741653,41.93864548776937],[-87.85134463894539,41.93864665095792],[-87.85134605000013,41.93864786516455],[-87.8513740563597,41.938671967272924],[-87.85141194452143,41.938704572675846],[-87.85164285109695,41.93895175367715],[-87.85180609362324,41.93916967141648],[-87.85208367860305,41.93973303180979],[-87.85209589342986,41.939757821387246],[-87.85211178719779,41.9397900775068],[-87.85217757733548,41.94005408987118],[-87.8521850560206,41.94008410216084],[-87.8522354593142,41.94028636692326],[-87.85226713439633,41.94041347637021],[-87.8522893692549,41.94048430004269],[-87.85230760459041,41.940542383897586],[-87.85253233904366,41.94125821697662],[-87.85274177217615,41.94182149572329],[-87.85295495516229,41.942267693622604],[-87.85303704519919,41.94248164701206],[-87.85305403007922,41.94253406471045],[-87.85307559182252,41.94260060631993],[-87.85309239556219,41.942712586116485],[-87.85309612634323,41.94279816639227],[-87.85309550899366,41.94288043568408],[-87.85308191882666,41.942933040248334],[-87.85305499801109,41.94299876160436],[-87.85302429943292,41.943107359938],[-87.85302521445855,41.943146962660194],[-87.85301018559515,41.94321973152385],[-87.853011346038,41.94327942876248],[-87.85301181647003,41.94330363013036],[-87.85301273186914,41.9433507243128],[-87.85303230346078,41.943401148171546],[-87.85304727741797,41.943439726556704],[-87.85314754002474,41.94357837253202],[-87.85318959484086,41.94364413401025],[-87.85321718771345,41.94368728021475],[-87.85324215826759,41.94373082817884],[-87.85324241623542,41.943731278487114],[-87.85326069045875,41.94376314784008],[-87.85329116893672,41.94386514062492],[-87.85339713483788,41.94428136027883],[-87.85341606761457,41.94435572667474],[-87.85341755867938,41.94436188051912],[-87.85355850808884,41.94494382749426],[-87.8535827878162,41.945044070906356],[-87.85377309249452,41.94567881737186],[-87.85382223787734,41.94584273452405],[-87.85396878861754,41.946245952103354],[-87.85408173714671,41.94655668526902],[-87.85464329016294,41.94743860663822],[-87.85487051622728,41.94779542407626],[-87.85497588779667,41.948033980188676],[-87.85499295792273,41.94813273383647],[-87.85500439348151,41.948198889257995],[-87.85500600198021,41.94823273716596],[-87.85500726074763,41.94825922827638],[-87.8550169716988,41.948463594227256],[-87.85502174283005,41.94862695078464],[-87.85501321104041,41.94894211664145],[-87.85493571069681,41.949484161571284],[-87.85480436912438,41.9497791052084],[-87.85475115967107,41.94989859297605],[-87.85468411366173,41.950042971303894],[-87.85466436540035,41.950085497134495],[-87.85453280421223,41.950300644403455],[-87.85443481984926,41.950504076532624],[-87.8543270715193,41.95073002506198],[-87.85428654210104,41.95082573933942],[-87.85424601366311,41.95092145360494],[-87.85420269327824,41.95107555268631],[-87.85411219415398,41.951314882719615],[-87.85408226082804,41.95141582634749],[-87.85407255608733,41.95144855321122],[-87.85262468586198,41.951485587829225],[-87.85174052014096,41.95150819465807],[-87.85139334836413,41.95151706960619],[-87.85047063203065,41.95154065191128],[-87.8502009126047,41.951547543819295],[-87.84939599790675,41.95156810739364],[-87.84922136069243,41.951572568167634],[-87.84820178375506,41.95159860603365],[-87.84721179092925,41.951623880036585],[-87.84687151997308,41.95163256498536],[-87.84661266625446,41.951639171230795],[-87.84661243460872,41.95163917710934],[-87.84661265847035,41.9516431420853],[-87.84661276636452,41.95164505114827],[-87.84661301294007,41.95164941303484],[-87.84662079437928,41.95178718065798],[-87.8466204522553,41.95186936065992],[-87.84661969201979,41.95205187472964],[-87.84661969196968,41.952051881315555],[-87.84661768181773,41.95253447388046],[-87.84661729465495,41.95262861189535],[-87.84661531633529,41.953110054444174],[-87.84661348796465,41.95355496406345],[-87.84661157760239,41.95401972718126],[-87.84660962670134,41.95449435253996],[-87.84660800173751,41.95488979616718],[-87.84660617312115,41.95533475751352],[-87.84660472599407,41.955686813266766],[-87.84758747117657,41.95566611295434],[-87.8476940277259,41.9556638678071],[-87.84792408527298,41.95565902048399],[-87.84803743584105,41.95565663195412],[-87.84826273637428,41.95565188431596],[-87.84834866182877,41.955650073618735],[-87.84907105293169,41.955634847196485],[-87.84950572667803,41.95562568315352],[-87.84989336974009,41.95561750905898],[-87.85079419457787,41.955598508478914],[-87.85152207702158,41.955583150854565],[-87.85196839342849,41.95557373161605],[-87.85235717875668,41.95556552490205],[-87.85259061743595,41.95556059677169],[-87.85285757796105,41.95555496049424],[-87.85315990654716,41.95554857663109],[-87.85353547200634,41.955540645156674],[-87.85384552918678,41.95553409639712],[-87.85417026494514,41.955527236769115],[-87.8547014273398,41.95551601444904],[-87.85536538037883,41.95550198309299],[-87.85580991795999,41.95549258624419],[-87.85596136733417,41.955489384849244],[-87.85667735910138,41.955474245587986],[-87.85747230727894,41.955457431623714],[-87.85788256654244,41.95544875211704],[-87.85807535960527,41.95544467276538],[-87.85807878252936,41.9554446002171],[-87.85823967879973,41.955570227177994],[-87.85825043250131,41.95557862453194],[-87.85825772380659,41.955588349481204],[-87.85830859224444,41.955656200026986],[-87.85834588323897,41.95570594015951],[-87.85842000774588,41.95581843569914],[-87.85844618616964,41.9558581647468],[-87.85848011437008,41.955922735504615],[-87.85851290721347,41.95598514514877],[-87.85852336786424,41.9560050527156],[-87.85858712224992,41.9561431862072],[-87.8585876557998,41.95614495678828],[-87.85861026495198,41.95622001054289],[-87.85862745081332,41.95633273893209],[-87.85863554154302,41.95638581072985],[-87.85864366783805,41.95641011310435],[-87.85867744270044,41.95651112008103],[-87.85870843769105,41.95659505694027],[-87.85874476245556,41.95675854273695],[-87.85876148974972,41.95685463594109],[-87.85877505161744,41.956932541919365],[-87.8587795873947,41.956992297920024],[-87.85878657336102,41.95708434484131],[-87.85878197269862,41.95724360027893],[-87.85875826618259,41.95741603131419],[-87.85871814552904,41.957541248811864],[-87.85871512225665,41.957546755211766],[-87.85868113683208,41.957608658749365],[-87.85842254516291,41.95792825075182],[-87.85840249821047,41.957956734864354],[-87.85813159859899,41.95834164364841],[-87.85792614168354,41.958659423953726],[-87.85777560898372,41.95889991382147],[-87.85777556954547,41.9588999765007],[-87.8577753686206,41.95890029756519],[-87.85774025036281,41.958956401699844],[-87.85757725573889,41.95918997281421],[-87.85741634108268,41.95955900688623],[-87.85732409738691,41.9597154013428],[-87.85732408993984,41.95971541393532],[-87.85729526359975,41.95976428720323],[-87.85724803148456,41.95984436629787],[-87.8571696330003,41.9599709315863],[-87.85703032810758,41.960195821102346],[-87.85689528238136,41.9604550700701],[-87.85684364004386,41.96055420985476],[-87.8566935182956,41.9608178833402],[-87.8566460397226,41.96090127341751],[-87.85647451643962,41.9612272881184],[-87.85643920161688,41.961300304443945],[-87.85629870293563,41.961590797333116],[-87.85582008480266,41.9624146521019],[-87.85581022365415,41.96244413500975],[-87.85568620085364,41.96281494279804],[-87.85567732197342,41.962841529417176],[-87.85567689999294,41.962842793019476],[-87.85567658669889,41.96284373188438],[-87.85567657353313,41.962843771620726],[-87.85562412454497,41.963288967055405],[-87.85559467900596,41.96365722802755],[-87.85550645823496,41.96445603153744],[-87.85544980265743,41.96468159659729],[-87.85544282957916,41.96470935988332],[-87.85536127949439,41.96494543231741],[-87.85530144320859,41.965118646926825],[-87.8549677250975,41.96594864360479],[-87.85495309119538,41.966008370003365],[-87.85492187186374,41.96613578989625],[-87.85492186957751,41.96613580058916],[-87.85486729051689,41.96635851365084],[-87.85477187632092,41.96691294060654],[-87.85477734387808,41.96719951420466],[-87.85485695577904,41.96751842207014],[-87.85497959602333,41.96793029018765],[-87.85503691570983,41.96832940068371],[-87.8550285332214,41.96870771070018],[-87.85489427246243,41.96911151049102],[-87.85477705235442,41.96942959813824],[-87.85464398182788,41.96967410100666],[-87.85432295406491,41.97029803080432],[-87.85423604511364,41.9705600974402],[-87.85417261874194,41.970784775524415],[-87.85413624886323,41.97100092278323],[-87.8541349952551,41.97116817726437],[-87.85415514313605,41.971310932932084],[-87.85418821163296,41.97143241944489],[-87.85427078960782,41.97162093547792],[-87.85446683319013,41.971895323549205],[-87.85459762817908,41.97203900711119],[-87.85497932559156,41.972340814886614],[-87.85515841980455,41.97245805247303],[-87.85536192710413,41.97251715953365],[-87.85559564473166,41.972553971472266],[-87.85584134835503,41.97258636054669],[-87.85606341379791,41.97257831009933],[-87.85621357483942,41.972552068430865],[-87.85659222862273,41.97245954274071],[-87.8566705625549,41.972434181914764],[-87.85696538234278,41.972338758609474],[-87.85696539082097,41.97233875590044],[-87.85704324666477,41.97231355639057],[-87.85726764872165,41.97222614741809],[-87.85746442718889,41.972149498268685],[-87.8577232401391,41.97202602527619],[-87.85783321627991,41.971973558162055],[-87.85824331251517,41.97170752464912],[-87.8583869766259,41.97161432740762],[-87.85853733165355,41.97153177226763],[-87.85867604860906,41.97146640246301],[-87.85879533610392,41.9714324837246],[-87.85892210225563,41.97142153655492],[-87.85902956043456,41.97143056994142],[-87.85920596562792,41.971459975621165],[-87.85940534760444,41.971495211011735],[-87.85960456018012,41.97155338751725],[-87.85974632890098,41.971597001665714],[-87.8599095763942,41.97166526490989],[-87.86010604617626,41.97175619484852],[-87.86017643038082,41.971794230213945],[-87.86042602276818,41.97192910864381],[-87.86061613204879,41.97206099383806],[-87.8608517752554,41.97222446539038],[-87.86099595516386,41.972332714373515],[-87.8611113573003,41.97241935653255],[-87.86133777507425,41.972608568254934],[-87.86144846953424,41.972717639189675],[-87.86170113718833,41.97298782971379],[-87.86174020940338,41.97304059510548],[-87.86180341756116,41.973125954647195],[-87.86189024143881,41.973280618218496],[-87.86190049267735,41.97331498106605],[-87.86190219194364,41.9733206776169],[-87.8619351365202,41.97343112990842],[-87.86199502622044,41.97371268487933],[-87.86200864643811,41.9738635269553],[-87.86201070083841,41.97388610103566],[-87.8620195732851,41.973984545410914],[-87.86201630439301,41.97407612057531],[-87.86201083581174,41.97422931866171],[-87.86200794046975,41.97431042701512],[-87.8619768580371,41.974420516506264],[-87.86192713226475,41.97459663691819],[-87.86192712999353,41.97459664569035],[-87.86192576302608,41.97460148717634],[-87.8618640685041,41.97481992984055],[-87.86186406737457,41.97481993340339],[-87.86175798190214,41.975167624917084],[-87.86168371421623,41.97534931611988],[-87.86155074724007,41.97555675317921],[-87.86143495760548,41.975724812666904],[-87.86124454253924,41.97600118183345],[-87.86102050826268,41.9762293741462],[-87.8609648121226,41.97627834894597],[-87.8609272267453,41.97631139895317],[-87.8606748784279,41.97653867879073],[-87.8599644110575,41.976993430467346],[-87.85964321304836,41.977307555752155],[-87.85937924407976,41.977565708412975],[-87.85908057472129,41.97792618531891],[-87.85886115938756,41.97819100454275],[-87.85883009766854,41.97822849926244],[-87.85845581482636,41.978664158683706],[-87.85824840037124,41.97883571913874],[-87.85701213310314,41.97986510852099],[-87.85678138604936,41.98005155696064],[-87.85627391651045,41.98046159714923],[-87.8562292063192,41.98052745042415],[-87.85617066929593,41.98061366860289],[-87.85605722801827,41.98078075476979],[-87.85605222066886,41.98078813041399],[-87.85603970880733,41.98080655871095],[-87.85587717147912,41.98109857970373],[-87.85582144623908,41.98140435446272],[-87.8557836214586,41.98169692168082],[-87.85578356712728,41.9817041927798],[-87.85578014197442,41.982162571654946],[-87.85597136459145,41.98280202641487],[-87.85620751902437,41.983414225206566],[-87.8562335337243,41.98348167586758],[-87.85631544969864,41.98364248509531],[-87.85657206740899,41.984146247368685],[-87.85663945107318,41.98431869865987],[-87.85663951656606,41.98431958311488],[-87.85663951792057,41.98431959876248],[-87.85663951824333,41.98431960480107],[-87.85664838766087,41.984432263281256],[-87.85664471903272,41.984662789306455],[-87.85661302589938,41.98481888504365],[-87.85657097616816,41.985022300820425],[-87.85657097578398,41.9850223030142],[-87.85656523836678,41.9850420100228],[-87.85655134846937,41.98508960628484],[-87.85651884762038,41.98520098098176],[-87.85647147577575,41.98536324116262],[-87.85646413238075,41.985410850060305],[-87.85643789171036,41.98558044269857],[-87.8563603584429,41.98599405673607],[-87.85630604827756,41.98615447682213],[-87.85618450083717,41.98641324414836],[-87.85608785796919,41.98661745059047],[-87.85600773589606,41.9868058633122],[-87.8559047989206,41.9870729125871],[-87.8558741265939,41.98715248439832],[-87.85587386515908,41.98715316167828],[-87.85587060599327,41.98715974025051],[-87.85570095282733,41.987502191484324],[-87.85558218839743,41.98773745240692],[-87.85555885904942,41.987841964096596],[-87.85555715863546,41.98784997448593],[-87.85555715825329,41.987849976405286],[-87.85555715750124,41.98784997859752],[-87.85553747001583,41.987942725119225],[-87.85556800058019,41.988188595090996],[-87.85563585461242,41.988495075442536],[-87.85568054413282,41.988662657816654],[-87.8557656713251,41.988927004636764],[-87.85583517466169,41.989052004080406],[-87.85583522729077,41.98905209869991],[-87.85583520967621,41.989052093138234],[-87.85550173309134,41.98894396318422],[-87.85506337915662,41.988821776983286],[-87.85482978690716,41.98876018409668],[-87.85460664093819,41.98871836484667],[-87.85445585251506,41.988695645093586],[-87.85412232407317,41.98864839792909],[-87.85385768937554,41.98861606417019],[-87.85360687853289,41.98859940153971],[-87.85316789282953,41.98857676516286],[-87.85268134124995,41.9885596356299],[-87.85263030852052,41.988557524878864],[-87.85263023056507,41.98855752153381],[-87.85242813059087,41.98854916255063],[-87.85239047582614,41.98854760772854],[-87.85229277333555,41.98854357381938],[-87.85222456148277,41.98854076302654],[-87.85212347513274,41.98853660721892],[-87.85198789745002,41.98853098948775],[-87.8518363315624,41.98852371289997],[-87.85176801685054,41.98851991376562],[-87.85163583646438,41.9885123055038],[-87.85161425625033,41.98851106348203],[-87.85147899801545,41.98850207112011],[-87.85142866690254,41.988498731455806],[-87.8513269041282,41.9884916632516],[-87.85114325480204,41.988477484376965],[-87.85107280625665,41.98847204526037],[-87.85100612601184,41.98846613950234],[-87.8509228302679,41.98845879205659],[-87.85083983036897,41.98845133547687],[-87.85070158936387,41.98843799409541],[-87.85058319912396,41.9884262722314],[-87.85051093232539,41.98841846949959],[-87.85041420773979,41.988408026273284],[-87.85024973816839,41.98838915365826],[-87.85021163476524,41.988384781504124],[-87.85009373995025,41.98837075608945],[-87.84990374609228,41.98834759062129],[-87.84970175000001,41.98832102662118],[-87.84953106526588,41.988298216577],[-87.84928135711976,41.98826250492091],[-87.84905017150325,41.98822901079191],[-87.84890155105018,41.98820695149855],[-87.84875020884002,41.988184880523754],[-87.84856800054612,41.98815864503366],[-87.84838175931061,41.98813069081148],[-87.84822947509693,41.98810677655445],[-87.84805558369608,41.988080081439094],[-87.84748058005248,41.987994499950524],[-87.8473604375754,41.98797637362749],[-87.84696821142163,41.98791966409781],[-87.84652906200301,41.987853300476395],[-87.84652831506715,41.987853187540836],[-87.84607776599498,41.987785099338744],[-87.84602740552899,41.98777771387253],[-87.84573977837972,41.9877355309318],[-87.84536545023194,41.98768119680174],[-87.84505253498564,41.98763368132783],[-87.8447334854844,41.98757049693209],[-87.84461120829117,41.98755279771876],[-87.84440362601406,41.98752137081649],[-87.84434709133825,41.98751651975639],[-87.84425006042608,41.987506666347485],[-87.84412773599733,41.987490365961825],[-87.84398685180679,41.987476757978634],[-87.84394606724149,41.98747098594438],[-87.84383612638526,41.98745624735096],[-87.84372705678611,41.98743821932377],[-87.84352714324547,41.98740940309461],[-87.84344116914878,41.98739671476367],[-87.84330486362052,41.987376155479836],[-87.84320375455066,41.98736094136281],[-87.84174216776897,41.98713545957763],[-87.84148530498149,41.98709814655825],[-87.84021799648212,41.98691404404868],[-87.84004978963235,41.98688960763],[-87.83966014608954,41.986833542564234],[-87.83947717650508,41.986806850299416],[-87.83908918992609,41.98675073553994],[-87.83892480957073,41.98672697639806],[-87.83865600258615,41.98668451812758],[-87.83844158376584,41.986648495332744],[-87.83821505064786,41.98660942953085],[-87.83801599463769,41.98657503639524],[-87.83786728120472,41.98655172752439],[-87.83765717602921,41.98651920729521],[-87.83747224726747,41.98649404012976],[-87.8365808952737,41.9863961144183],[-87.83658087873512,41.9863961127002],[-87.83658090671379,41.98613342033774],[-87.83658103335853,41.9849669011107],[-87.83658108342775,41.98450689113286],[-87.83658109917536,41.984360409393425],[-87.83658111073802,41.98425340686072],[-87.8365811144576,41.98421985430746],[-87.83658120694685,41.983365293612025],[-87.8365812990733,41.982514266501944],[-87.8365814330011,41.981274895582146],[-87.83658144799485,41.981136782214485],[-87.83658156681551,41.98003039794257],[-87.83658161930163,41.979544478424536],[-87.83658362117873,41.97931231618662],[-87.83659471416082,41.97802584760574],[-87.83660324077805,41.977682013298235],[-87.83660569718336,41.97758361662827],[-87.83660796327617,41.97747094925122],[-87.83661085141887,41.977327357337806],[-87.83661101672641,41.97727054361411],[-87.83661117112429,41.97721745263548],[-87.83661182001742,41.976994434188384],[-87.83661212267435,41.97696627717656],[-87.83661447507033,41.97674746692459],[-87.83661616126572,41.97658726733113],[-87.83661723071631,41.97646076367134],[-87.83661887897851,41.97626587738307],[-87.83662090600815,41.97608078927772],[-87.8366209076553,41.97608062463232],[-87.83662295676318,41.975883132792646],[-87.83662328395266,41.975833926702016],[-87.83662378362706,41.97575887859342],[-87.83662417956258,41.97569935786673],[-87.83662451010275,41.975650524727],[-87.83662494254204,41.975586684497806],[-87.83662670547398,41.975326294954264],[-87.83662676873242,41.9753262944047],[-87.83662673905836,41.97530980926346],[-87.83662678836168,41.97530980618373],[-87.83662685974033,41.9753098018274],[-87.8366268746879,41.97530305058885],[-87.83662699049408,41.97522245421698],[-87.83662700872915,41.97521021567196],[-87.83662718319127,41.975093294181114],[-87.83662718391862,41.975093011256305],[-87.83662730071559,41.9750779798069],[-87.83662828073462,41.974951853604495],[-87.83662837582698,41.974939615391435],[-87.83662837631313,41.97493955282556],[-87.83663073290909,41.97477190802351],[-87.83663074713934,41.97477088120194],[-87.83669292320093,41.97477107610035],[-87.83669297321374,41.974771076316706],[-87.8368131176029,41.97477145302815],[-87.83699378274197,41.974768337481514],[-87.83717113697519,41.97476531710967],[-87.83734329966636,41.97476238490065],[-87.83734472195812,41.97476236058473],[-87.83734849119426,41.974762296463744],[-87.83752584539921,41.97475927554373],[-87.83770319964782,41.9747561994657],[-87.83788062774035,41.97475317831653],[-87.83805798190275,41.97475015657416],[-87.83823533684382,41.97474707967694],[-87.83841269061004,41.97474405738481],[-87.83859004472988,41.97474103482019],[-87.83876739926018,41.97473795709913],[-87.83894475335157,41.97473493398634],[-87.83912218024156,41.974731910912915],[-87.83929953546428,41.97472883237265],[-87.83947688951307,41.974725808437505],[-87.8396043585013,41.97472364625372],[-87.83960713172527,41.97472359917989],[-87.83962143552692,41.974723356636076],[-87.8396542435477,41.97472278422828],[-87.83983159835958,41.97471970486417],[-87.840008951998,41.9747166801052],[-87.84018630598999,41.97471365507373],[-87.84024596376116,41.97471259410318],[-87.8403636600233,41.974710574884206],[-87.84054108753503,41.97470754962027],[-87.8407184418521,41.974704523768004],[-87.84085636760189,41.974702151498],[-87.84089579621003,41.97470144275772],[-87.84107314976312,41.97469841635414],[-87.84125057721798,41.97469538999331],[-87.84143160973355,41.97469226903666],[-87.84155493604015,41.97469032156634],[-87.84155500009345,41.974681995359916],[-87.84155500017579,41.974681984657856],[-87.84155562285768,41.97460094724733],[-87.84155597021923,41.97455574611377],[-87.84155664089698,41.97441822703368],[-87.84155680002988,41.97438539900858],[-87.84155775499495,41.97408916592324],[-87.8415582336858,41.97394084342707]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"204595613.397","perimeter":"0.0","tract_cent":"1101098.86689225","census_t_1":"17031760900","tract_numa":"36","tract_comm":"76","objectid":"252","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935289.7646066","census_tra":"760900","tract_ce_3":"41.97916232","tract_crea":"","tract_ce_2":"-87.90358657","shape_len":"85801.7645271"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.90805703225485,42.00366408638233],[-87.90787042240332,42.00364761574453],[-87.90770440248437,42.003647000290755],[-87.90751760943377,42.003657970659745],[-87.90732036349418,42.00371932630532],[-87.90717483241463,42.00374965807957],[-87.90708098484806,42.00382271721955],[-87.90692494609671,42.0039113241478],[-87.90674282673977,42.00397993795742],[-87.90657164172781,42.00399508135901],[-87.90656533941099,42.003993731383225],[-87.90636957352521,42.00395179487752],[-87.90616273397943,42.003865612185756],[-87.90584230578479,42.003709715156674],[-87.90569729085892,42.00366286639882],[-87.90559884934832,42.00366627317805],[-87.90538075853927,42.003680896168134],[-87.90524041419268,42.003692035985786],[-87.90512999654759,42.00366491761354],[-87.90504895172239,42.00364501318305],[-87.90483170936051,42.003601667378355],[-87.90459315621193,42.00358156753117],[-87.90427166894605,42.00358413934543],[-87.90414174760657,42.00361829943957],[-87.90406192601299,42.003648710744734],[-87.9040623751225,42.0035604428129],[-87.90398959251381,42.00354966033505],[-87.90376387135402,42.00351622000926],[-87.90367543218969,42.00350311779676],[-87.9031150589693,42.003420096970885],[-87.90268478188445,42.003186029099815],[-87.90246623046136,42.00306713764542],[-87.90223350385943,42.002940533480995],[-87.90165886161647,42.0026279225102],[-87.90127543329456,42.00241933003001],[-87.9011123924404,42.002330632138694],[-87.90096986558316,42.0022530942785],[-87.90025128802161,42.00186216313948],[-87.90014909844516,42.00180656784128],[-87.89987589390408,42.00165793238457],[-87.89975430838177,42.001591783944846],[-87.89954277309074,42.00147669792643],[-87.89921185541554,42.00148759688532],[-87.89882314940797,42.00150047207397],[-87.89882214111437,42.00150050530409],[-87.89867347761357,42.00150542924122],[-87.89843899088719,42.00151319522953],[-87.89829000313256,42.00151812924157],[-87.89799458325389,42.0015279125258],[-87.89744096188622,42.00154624385044],[-87.89744673181045,42.00120760578221],[-87.89744854293838,42.00110131390355],[-87.89745306002085,42.00083620928603],[-87.89745732902267,42.000585669651095],[-87.89745824030224,42.00053219524718],[-87.89733788726595,42.00051560559676],[-87.89733788322475,42.000515604758164],[-87.89733788028349,42.00051560447257],[-87.89707852093659,42.000479853939716],[-87.89672703743575,42.00043140329825],[-87.89626572215882,42.00036781109883],[-87.89593713815816,42.00032251488672],[-87.89540399355131,42.000249016662885],[-87.89540326138415,42.000248915901786],[-87.8950699438161,42.000202964141245],[-87.89447605358276,42.00012105854493],[-87.89435469128846,42.00010385434267],[-87.89430131697937,42.0000965965316],[-87.89411493997461,42.000071253008244],[-87.89411173635796,42.0000708173206],[-87.89358120585362,41.99999763786277],[-87.89346389271526,41.99998145590042],[-87.89320476741564,41.9999457400475],[-87.89297034687186,41.999913428985785],[-87.89292536081715,41.999906780092815],[-87.89273082842938,41.99987698240225],[-87.89226587867513,41.99980576094124],[-87.89226586360687,41.999805758687984],[-87.89186656589021,41.99974459232095],[-87.89172834649312,41.99972195862068],[-87.891595420028,41.99970019143311],[-87.89081079367337,41.99957170295873],[-87.89075343180988,41.99960979112096],[-87.89044968836853,41.99955785250457],[-87.89019387663538,41.99951229974341],[-87.88982811523057,41.99944717895864],[-87.88939787950683,41.99938760014488],[-87.88857068598973,41.99923149083204],[-87.88834950456489,41.999189746180015],[-87.88774883311714,41.99906985492527],[-87.88730481507649,41.998981248365745],[-87.88675135148213,41.998866145836516],[-87.88673239598197,41.998862175877164],[-87.88577005386713,41.998643117400846],[-87.88500701433513,41.998469396309844],[-87.88496048420375,41.99846312162979],[-87.8849553940174,41.99829694756405],[-87.88495423161945,41.998296666682826],[-87.88495421839697,41.99829666361257],[-87.88453326950595,41.99819503671946],[-87.88453362242245,41.99808119495213],[-87.8845337201305,41.99804969685449],[-87.8845337202115,41.99804968532917],[-87.88454245454065,41.99523411880108],[-87.88454283719506,41.995110849112066],[-87.88454287392213,41.99509891911322],[-87.88445977525892,41.99510152776132],[-87.88454198757796,41.99487681971699],[-87.88454407931845,41.99457908144288],[-87.88454555411839,41.99436915575623],[-87.88448854319084,41.99410617578351],[-87.8844554435769,41.99384328872338],[-87.88433994600231,41.993527596796675],[-87.88422509468006,41.99318549431591],[-87.88399265501644,41.99282578022367],[-87.88379550094369,41.99248335481705],[-87.88351625645349,41.99217593958347],[-87.88328296308859,41.99193833796897],[-87.88308470388968,41.99175369865018],[-87.88286305684076,41.991560391849895],[-87.88257100174464,41.99137538408265],[-87.88229025887895,41.99121648912457],[-87.88196338570309,41.99101384869835],[-87.88156595358214,41.99077594081207],[-87.88121523882913,41.99056428548006],[-87.88077110066054,41.99029977818395],[-87.88044408844323,41.990053225322804],[-87.88017549608519,41.989868303437625],[-87.87998874658179,41.98968370470212],[-87.87979093840865,41.98943800287578],[-87.87958163887058,41.98919191252789],[-87.87937213010906,41.98891083263001],[-87.87923367672556,41.988595043998444],[-87.87911836509073,41.98832291182312],[-87.8790376816113,41.988095166863694],[-87.87896970164374,41.98776216270606],[-87.87890104041107,41.98752520297125],[-87.878845239458,41.9870962002834],[-87.8787899398041,41.986596879256176],[-87.87876071793492,41.98618033007271],[-87.87874864247412,41.986142940751535],[-87.8787372812372,41.98579090306879],[-87.87873541717683,41.9857298371057],[-87.87871875531924,41.985098946752814],[-87.87875849204296,41.98442505841279],[-87.87883502261171,41.98271469114009],[-87.87887048892247,41.98192964543476],[-87.87888578549392,41.98158873816639],[-87.87891612031282,41.980943283573346],[-87.87893544517301,41.98048850726137],[-87.87895396299703,41.98008243741906],[-87.8789715275407,41.97974565531873],[-87.87898481544335,41.9794932409693],[-87.87900062198968,41.9791451320097],[-87.87899003835297,41.97875849938314],[-87.87896800593059,41.978236326898546],[-87.8789069703753,41.977704051672376],[-87.87881705466778,41.977135619026015],[-87.87881130519801,41.97709943772837],[-87.87875826061678,41.976765628898185],[-87.87867040253009,41.976320719185026],[-87.87850642281123,41.975720459366954],[-87.87835510896166,41.97514940696784],[-87.87822905866349,41.974646030394304],[-87.8780262874659,41.97400719752843],[-87.87784871222772,41.97344564461209],[-87.8777569932869,41.9731571387149],[-87.87769085702786,41.972931243849736],[-87.87769685598704,41.97293109422446],[-87.87807002050907,41.97292180223484],[-87.87819004115515,41.97291881712155],[-87.8807727473669,41.972854551810286],[-87.88077550851384,41.97239722627576],[-87.88077849650873,41.97190233771937],[-87.88078178454143,41.97135767357504],[-87.88078178490076,41.97135762280852],[-87.88078383277741,41.97101833337439],[-87.88078538659597,41.97076094274015],[-87.8807853890635,41.97076049022913],[-87.88079135268428,41.96977268610674],[-87.88079492254515,41.969181291378526],[-87.88079632419165,41.96905292614337],[-87.88080155573358,41.96857379299195],[-87.88080433188308,41.96831953519598],[-87.88081313416629,41.96751326698184],[-87.88081418824535,41.96741669728111],[-87.88082277452783,41.96663019878599],[-87.88082277463268,41.966630183967645],[-87.88082471085514,41.966452807177966],[-87.88082471311755,41.96645264335723],[-87.88082926882471,41.96603531172022],[-87.8808340835662,41.965594248822704],[-87.88083506872704,41.96550387251263],[-87.88083502640583,41.9654967066499],[-87.88083453375688,41.965413036316434],[-87.88082866672369,41.96438926450059],[-87.88082781348018,41.9642403646307],[-87.8808209426185,41.963041383580155],[-87.88081767384827,41.96247098190776],[-87.88081723921508,41.962395118782275],[-87.88081465233782,41.96194373918536],[-87.8808138085651,41.961796516829615],[-87.8808138053416,41.96179593312186],[-87.88080959122478,41.96106055538349],[-87.88080923559296,41.96099633983442],[-87.88080910419293,41.96097328733808],[-87.88080768130064,41.960728013141235],[-87.88080665461666,41.96055098919799],[-87.88080665135965,41.960550514161014],[-87.88080598970014,41.960436482158514],[-87.88091350560855,41.96033144229354],[-87.88114197754625,41.96014924815005],[-87.88132749975043,41.95999893692936],[-87.88151978806555,41.95984533893633],[-87.88168807517663,41.95971221302099],[-87.88175928598744,41.95964077847115],[-87.88226381021785,41.95926797122073],[-87.88250611726816,41.95906665125249],[-87.88261076219412,41.95897970704586],[-87.88296837654845,41.95870757408439],[-87.88328281769584,41.95844331599161],[-87.88355391657308,41.9582110678699],[-87.88383584832661,41.95797081655591],[-87.88410716956076,41.95770638706226],[-87.88431325446217,41.95752215408133],[-87.88436453538434,41.95745750652281],[-87.88445074427588,41.957490745432985],[-87.88465132976839,41.95756808307363],[-87.88492276872591,41.95766158806665],[-87.88499709025302,41.95768719017491],[-87.88528503997549,41.957782720352064],[-87.88562663552293,41.957893091739315],[-87.88586535543104,41.95796599228621],[-87.88615515402846,41.95805117025171],[-87.88638031504759,41.958097463573864],[-87.88683789059945,41.95815706469179],[-87.88703902770948,41.95817017925634],[-87.88727248577683,41.958185400647224],[-87.88753346243956,41.95818358747609],[-87.88776501962454,41.958172192258594],[-87.88797078860038,41.95815005390956],[-87.88819535517047,41.958125892588306],[-87.8885059630522,41.958071553441506],[-87.88869171653079,41.958026302367536],[-87.8888261290228,41.95799829064656],[-87.8890104295118,41.95793085409886],[-87.88911343713805,41.95794440080285],[-87.88928340758618,41.95796675384538],[-87.88934415933626,41.957974743138855],[-87.88949323227443,41.95799434410613],[-87.8896039803424,41.95800890601685],[-87.8896156880114,41.95801044549263],[-87.88970745804819,41.958022511358905],[-87.8897074852294,41.958022515031416],[-87.88985338582584,41.958041698500786],[-87.88996518129869,41.958056397752394],[-87.8902662141037,41.958095977296104],[-87.89047705325717,41.95809234621806],[-87.89091518510551,41.95808479202587],[-87.8916924812589,41.95807138577192],[-87.89228808070537,41.958061109809755],[-87.89240364710571,41.958059115736106],[-87.89263080577244,41.95805519540935],[-87.8928991054304,41.95805056474269],[-87.89289884515351,41.957960004493664],[-87.89288950342828,41.95484296531041],[-87.89288823085562,41.95441832812815],[-87.89288061182556,41.95189394421722],[-87.89287765874185,41.95091135291595],[-87.89287734792659,41.950807998243576],[-87.89287734800403,41.95080798699256],[-87.89287730506153,41.95079377284959],[-87.89494358820755,41.95076052569626],[-87.8949436223987,41.950760525277964],[-87.89521435062599,41.95075616654982],[-87.89531876541588,41.95075448481947],[-87.8969991755713,41.95072740432633],[-87.89730344835174,41.95072252188393],[-87.89999307098766,41.95067912220866],[-87.9000882923302,41.95067758502972],[-87.90097853429818,41.950663204958595],[-87.90153825993873,41.95065416487187],[-87.90162347620983,41.95065278829677],[-87.90184855495228,41.950649133866534],[-87.90348813940079,41.950622652097344],[-87.90349200860156,41.95062258974473],[-87.90362856598138,41.95062038330477],[-87.90362857333349,41.950620383332286],[-87.90362869355906,41.95062038103802],[-87.90377631734951,41.95061799520364],[-87.9038029363478,41.950623472920846],[-87.90455598353184,41.95077843101008],[-87.90499174314536,41.950868146853836],[-87.90532502721071,41.95093673603785],[-87.90647421731755,41.95117322857854],[-87.90849578170365,41.95158917605314],[-87.91008622351092,41.95191639834675],[-87.91225957205856,41.95236352789571],[-87.91225958931486,41.95236353125207],[-87.91229803534313,41.952371440317954],[-87.91228176291321,41.95143259746745],[-87.91450989306705,41.95198492652994],[-87.91472266643333,41.95202457195712],[-87.9147228801318,41.95202461142983],[-87.914731200331,41.952026161790435],[-87.91473120982556,41.95202667719021],[-87.91473121010878,41.95202669008909],[-87.91473861953597,41.95243292170368],[-87.91474473078182,41.95276798920619],[-87.91474976601009,41.9530440626758],[-87.91475516604726,41.95334012583194],[-87.91475749381149,41.953467739578876],[-87.91475767417394,41.95347765072237],[-87.9147594900384,41.9535771955138],[-87.91476321182347,41.953781233801884],[-87.9147689942664,41.95409826005672],[-87.91477342811716,41.954341363828995],[-87.91479107475088,41.95460640532093],[-87.91479819876737,41.95471340601035],[-87.91481886804215,41.9549081926948],[-87.91483767680135,41.955085446888276],[-87.9148534317236,41.955193454596184],[-87.91485343171283,41.95519345624268],[-87.91489179282905,41.955456443390645],[-87.91493048078364,41.955664673780326],[-87.91496047647499,41.95582612054416],[-87.91497138932314,41.955874402353594],[-87.9150199106199,41.95608907765905],[-87.9150436591816,41.956194149590054],[-87.91506923587752,41.95628998316687],[-87.91512636771573,41.95650404955394],[-87.91514133893631,41.956560144652514],[-87.91517840288434,41.956682169449635],[-87.91522778870208,41.95684476137237],[-87.91536587053213,41.95691905569624],[-87.91536587969271,41.95691906039477],[-87.91542826188282,41.95695262482555],[-87.91547412387659,41.95697592004637],[-87.91570315183691,41.95709225050288],[-87.91578099413843,41.9571317888897],[-87.91589541145005,41.95717790748414],[-87.91600166643728,41.957220735337216],[-87.91613942688596,41.95727145524996],[-87.9163978442037,41.957357081463606],[-87.91655746339062,41.957404587461205],[-87.91679171236758,41.95746432827701],[-87.91703021933183,41.95751354569711],[-87.9172722528934,41.95755212919676],[-87.91738492438634,41.957571363353615],[-87.91760027903072,41.95760814753779],[-87.91822819969764,41.9577153577192],[-87.9185326985996,41.957767352567984],[-87.91853896020538,41.95776842183623],[-87.91970785119362,41.9579680079523],[-87.91999980324843,41.958012321205665],[-87.91999980318815,41.958012330535794],[-87.91999980968997,41.95801576220725],[-87.9200000259013,41.958133530943655],[-87.92000005879612,41.9581512554347],[-87.92000124102121,41.95815139470651],[-87.92014895283583,41.96032367013144],[-87.92034126303702,41.96292588172154],[-87.92034101226342,41.96310699923254],[-87.92033242280021,41.96778174209559],[-87.92032188084238,41.970338970260784],[-87.92033088447438,41.971933734030465],[-87.92034539037924,41.97459807475901],[-87.92039058926703,41.97735033915382],[-87.92045161915749,41.98106827777314],[-87.92047255674956,41.98235822784219],[-87.92040995331007,41.985026649416874],[-87.9204108353988,41.9864553556391],[-87.92041100241477,41.98699870951361],[-87.92041180546178,41.98723041594275],[-87.92043681251403,41.99424624830514],[-87.9239046463243,41.994137923759396],[-87.92830887745758,41.9939264644382],[-87.93019724239602,41.99385101721749],[-87.93024068311063,41.99384833088348],[-87.93043796996028,41.99384133941718],[-87.93148204557397,41.99379971992715],[-87.93435347427896,41.99368556039518],[-87.93845729986651,41.993584489660066],[-87.93879204709616,41.99358149194654],[-87.93878084518946,41.99364286160689],[-87.93877544398121,41.9936697636883],[-87.93873296311752,41.99388142936077],[-87.93872034930476,41.99394427657778],[-87.93867121184024,41.994161192871815],[-87.938651230315,41.99424940028288],[-87.93859121170979,41.994481179873034],[-87.93859120869908,41.9944811908395],[-87.93857101799067,41.99455916245462],[-87.9385434221014,41.99465813633559],[-87.93854342134702,41.99465813935163],[-87.93854342059096,41.994658142642066],[-87.93848465342572,41.9948689135456],[-87.93846184812767,41.99494269973919],[-87.93844462315046,41.99499843124845],[-87.93838719720556,41.99518423252842],[-87.93834699543697,41.99530191604494],[-87.93828361545155,41.99548744924896],[-87.93817264844706,41.99579064949304],[-87.93813244998842,41.99588846490065],[-87.93813244438721,41.99588847832797],[-87.93804690435779,41.99609662388771],[-87.93796589581993,41.99628453468458],[-87.93794299511634,41.9963376563036],[-87.93791500303689,41.99640258762098],[-87.93776953878725,41.99671783638711],[-87.9376956685496,41.996868079119515],[-87.93764016224819,41.996980972012686],[-87.93761546042607,41.99703121252428],[-87.93757397693183,41.99711118980827],[-87.9375739758129,41.997111192274204],[-87.93757397469568,41.99711119446571],[-87.93753009179338,41.997195797595666],[-87.93751547220408,41.99722279514687],[-87.93745154330756,41.997340851205294],[-87.9373921804166,41.99744685012956],[-87.93735862524751,41.99750418234813],[-87.93735862376238,41.99750418453837],[-87.93730538082309,41.9975951531228],[-87.93730537636262,41.99759516051677],[-87.93727409289068,41.99764861063909],[-87.9372202440446,41.99773710758331],[-87.93718450194935,41.9977958471123],[-87.93708061255724,41.99796658078428],[-87.9369151786815,41.9982237714315],[-87.93687728799198,41.998282677696494],[-87.93684238039062,41.998334422553924],[-87.93684237890376,41.99833442501856],[-87.93684237741861,41.9983344272088],[-87.93678287028752,41.998422636284346],[-87.93673805788531,41.99848906349937],[-87.93666781888132,41.99859318034657],[-87.93655668881563,41.998752258021945],[-87.93652819454302,41.99879304594322],[-87.93649721848108,41.99883388482692],[-87.93645346007551,41.998891575835195],[-87.93639647473856,41.99896761547532],[-87.93636080931044,41.999015206130615],[-87.93630064303564,41.99909543225218],[-87.93630011514784,41.99909613596066],[-87.93624160249627,41.99917415813813],[-87.93619238228679,41.99923716405443],[-87.93612179262394,41.99932752512649],[-87.93607135746973,41.99939087228003],[-87.93607134931474,41.99939088213093],[-87.93603225032378,41.999439990415766],[-87.93594285897892,41.99955013895156],[-87.93590627997908,41.99959521178586],[-87.93583886565207,41.999673796228045],[-87.93578588848249,41.999735550771014],[-87.93578214767821,41.999739986715326],[-87.93569629881924,41.99984178546492],[-87.93569627917411,41.999841808997],[-87.93565499599882,41.99989076221954],[-87.93559490067425,41.99995979158764],[-87.93552473217049,42.00004039151751],[-87.93547463230506,42.00009455417162],[-87.93540868722702,42.000165846340266],[-87.93537305522291,42.00020099705511],[-87.93536719526537,42.0002066122315],[-87.9353488414975,42.000224197382195],[-87.93534498679811,42.00022789061057],[-87.93526355869896,42.00030590993436],[-87.93518626678117,42.00037996500235],[-87.93510867066074,42.000456225025125],[-87.93499789145551,42.00056509554769],[-87.9348899211082,42.000671205988446],[-87.93479833319518,42.00076121507322],[-87.93479796376114,42.000761578220505],[-87.9347375265306,42.00082097352142],[-87.93465521663623,42.00090186416732],[-87.93449378356698,42.0010480632527],[-87.93428563431235,42.0012365684204],[-87.93427312682948,42.00124712935532],[-87.93418736076283,42.00131954562694],[-87.93412915050614,42.00136869518762],[-87.9340530345483,42.00143124905432],[-87.93405303233061,42.001431250693116],[-87.93405303011292,42.001431252331926],[-87.93389470662255,42.00156136581598],[-87.93389425951918,42.00156173390401],[-87.93389425175552,42.001561739914244],[-87.93389424435631,42.001561746474586],[-87.93376891213164,42.00166474552071],[-87.93357080443238,42.00181864208399],[-87.93347901973141,42.001887809404025],[-87.93347894173293,42.00188786840706],[-87.93337062400798,42.001969493797816],[-87.93332228674836,42.00200591955506],[-87.93311898576427,42.00215281516237],[-87.93311896432783,42.00215283072957],[-87.9330916390357,42.00217257437982],[-87.93305904712817,42.002196123702184],[-87.93291071585504,42.00230330032347],[-87.93288382319527,42.00232267661225],[-87.93288374779857,42.00232273123324],[-87.93268826372415,42.00246358124531],[-87.9326091530778,42.00252057903236],[-87.93243214049257,42.00264811318675],[-87.93233959637512,42.00271496604081],[-87.93205567534035,42.00292006467317],[-87.93200918071224,42.00295372165111],[-87.93180830314071,42.00309913739615],[-87.93176703143288,42.003129013747966],[-87.93156266631394,42.003276951949175],[-87.9315575211936,42.00328066028983],[-87.93151322864485,42.00331258247936],[-87.93151307637167,42.003312692263165],[-87.93145068730215,42.00335765682974],[-87.93144410112122,42.00336240319041],[-87.9313189607497,42.00345249449902],[-87.9310711955374,42.003630863643004],[-87.93102675377597,42.00366285784086],[-87.93087880400915,42.00376936328145],[-87.9308408940457,42.00379710923457],[-87.93066360612572,42.003926866030966],[-87.9305440872129,42.00401433628346],[-87.93054408203614,42.0040143403816],[-87.93054407870933,42.00401434283971],[-87.93053551330502,42.0040206109961],[-87.93053549445311,42.004020624925374],[-87.93047897251341,42.00406562491188],[-87.930402720113,42.00412633284008],[-87.93040067523373,42.004030637907796],[-87.9304005908109,42.004024541921844],[-87.93039873319901,42.003890654703554],[-87.93039885472523,42.00386422190533],[-87.93039885474082,42.003864219435606],[-87.93039885475639,42.00386421696587],[-87.93039938038363,42.003749539271894],[-87.9303943148487,42.003659856973485],[-87.93039216703124,42.003621822240525],[-87.93039199623118,42.00361880357052],[-87.93039129594969,42.00360640391733],[-87.93039081185366,42.00357641854678],[-87.93038944189884,42.003491548548006],[-87.9303889171921,42.003459078161704],[-87.93038875330107,42.00343216522241],[-87.93038856254317,42.00340088040449],[-87.93038833435273,42.00336351622988],[-87.93038804229057,42.0033156330397],[-87.93038562983202,42.00321335978032],[-87.93038461279664,42.00317022782098],[-87.93038330138393,42.00312150516779],[-87.93038067680025,42.0030240477795],[-87.93037828134166,42.00287826666017],[-87.93037809258648,42.002817918575616],[-87.93037785323868,42.0027413902365],[-87.93037389681484,42.00265676224023],[-87.93037389649194,42.00265675510418],[-87.93037128859831,42.00260097173436],[-87.93036883601162,42.002460983958464],[-87.93036743563913,42.002404264662616],[-87.93036743214195,42.00240411920774],[-87.93036536044092,42.00232021076547],[-87.93036256114299,42.002206486504186],[-87.93028576264591,42.002209951739616],[-87.93026916660885,42.00220993435681],[-87.93013368752453,42.00220979721217],[-87.92996069559454,42.00221207389088],[-87.92985854952202,42.00221342262769],[-87.92985848218868,42.0022134234887],[-87.92978805682992,42.002214353471345],[-87.92973234805676,42.002215092566644],[-87.92973143850108,42.00221510473624],[-87.92961577415133,42.002216639532854],[-87.92952657194706,42.0022169994816],[-87.92948411784977,42.002217170929754],[-87.92945600423005,42.00221728442157],[-87.92944385987688,42.00221733334949],[-87.92939436315163,42.002217920429366],[-87.92927263911491,42.00221936440305],[-87.92910142239971,42.00222139384335],[-87.92898190600356,42.002222809333695],[-87.92897919060651,42.00222284175507],[-87.92893020016226,42.002223422185544],[-87.9288762774798,42.0022240617803],[-87.928866070094,42.00222418278369],[-87.92875897973458,42.00222545357175],[-87.92870975080552,42.00222558109789],[-87.92870475374092,42.002225593944644],[-87.92867992478054,42.0022256581775],[-87.92863157443914,42.00222578355322],[-87.92858848679941,42.0022258953572],[-87.92853781361184,42.002226577259684],[-87.9285378047804,42.00222657750296],[-87.92841761749048,42.0022281936596],[-87.92835016886487,42.002229008947744],[-87.92831181622982,42.002229472419465],[-87.9282481699028,42.00223024096524],[-87.92813561622432,42.00223107449958],[-87.92812430791062,42.002231158346106],[-87.92807908054557,42.002231493193],[-87.92804659067,42.002231943794094],[-87.9280465520366,42.002231944206535],[-87.92803945328166,42.00223204263246],[-87.92794303707987,42.00223337943411],[-87.92791104834015,42.002233823534006],[-87.92774301100162,42.00223614922017],[-87.92758019637512,42.002237167946824],[-87.9275781760749,42.00223718275932],[-87.9275156719929,42.00223750488762],[-87.92747663559177,42.00223770633611],[-87.92741865145894,42.00223800515],[-87.92725452117581,42.002239312117425],[-87.92721298141112,42.00223964292825],[-87.92709039089654,42.00224061747807],[-87.92707187051711,42.00224091361982],[-87.92707186131777,42.00224091386169],[-87.92700969033793,42.00224190675254],[-87.92692589053532,42.00224324564468],[-87.92684689435409,42.002244790286554],[-87.92678086905379,42.00224608224385],[-87.92661638409332,42.002247385670564],[-87.9265082970581,42.00224823974637],[-87.92645189768086,42.00224868501455],[-87.92630232159155,42.00225010806751],[-87.92628741287992,42.00225025004151],[-87.92612292121963,42.00225208181907],[-87.92611559283584,42.002252187544045],[-87.92604576545624,42.00225319912905],[-87.92604571946124,42.002253200063535],[-87.9259591339665,42.00225445399831],[-87.92589720670388,42.00225495593971],[-87.92585081019206,42.002255331861505],[-87.9257964207379,42.00225577269105],[-87.92563370714524,42.00225708977975],[-87.92558535656491,42.002257939712344],[-87.92558534442233,42.00225793994363],[-87.92555072439896,42.002258548570374],[-87.92546315694673,42.00226008788143],[-87.92546132807539,42.00213565277513],[-87.92545949384925,42.0020108471801],[-87.9254581987207,42.001922721103035],[-87.92545478499572,42.00169043219713],[-87.92545205888185,42.00150492418501],[-87.92545158466932,42.001472661133576],[-87.92544867268093,42.001274552183794],[-87.92544530168955,42.001045200246594],[-87.92445054701795,42.00106250023848],[-87.92436359095487,42.001064015369046],[-87.92350253288365,42.00107903396941],[-87.92182942991141,42.00110819650613],[-87.92067858700689,42.00112824138755],[-87.92062075085786,42.001129248048244],[-87.9206207365081,42.00112924827107],[-87.92062052824987,42.00112925191305],[-87.92051589583238,42.00113107351273],[-87.92051861738136,42.00119667764242],[-87.92043714294329,42.0011993733263],[-87.92043871017825,42.001279221740994],[-87.92043871296664,42.001279359509866],[-87.92044118705934,42.00140542269126],[-87.92044244824605,42.00146967169486],[-87.9204425277449,42.00147382121126],[-87.92044358278254,42.00152750430259],[-87.92044381103234,42.001539261550796],[-87.92044933697049,42.00182079490212],[-87.92045017576486,42.001863539380665],[-87.92045697614638,42.00221001329705],[-87.92046341521204,42.00253806133713],[-87.92046945577016,42.00284580908215],[-87.92047552407534,42.003154963037915],[-87.92048081549294,42.00342454667368],[-87.92048267869966,42.00351946451847],[-87.92048570415866,42.003673572053565],[-87.92048630558969,42.003704208807434],[-87.92049424716508,42.00410879704561],[-87.92050077531238,42.00444138145627],[-87.92050672861265,42.00474468647547],[-87.92050998458392,42.00491056000796],[-87.92050998489508,42.00491056879051],[-87.92051082593639,42.00495343097989],[-87.91949669615458,42.00497170280402],[-87.91859619790459,42.004987920761884],[-87.915267984016,42.00504779710958],[-87.91494143486831,42.00505366901203],[-87.91476392162372,42.00505685798863],[-87.9138194854304,42.0050738269188],[-87.91377083923119,42.00507469164807],[-87.9135873224074,42.00499548234715],[-87.91325570557166,42.004928751548945],[-87.91286231220897,42.0048151421587],[-87.91222037020499,42.00466185808733],[-87.91170239960641,42.00453989807036],[-87.91079093938507,42.00432009773379],[-87.91003508131219,42.0041471732213],[-87.90920618209587,42.003962310492106],[-87.90888762844858,42.003876410337384],[-87.90874021646897,42.00383675596432],[-87.90855925201303,42.003801097938066],[-87.90829525353917,42.0037342597002],[-87.90805703225485,42.00366408638233]]],[[[-87.92216869394316,41.95387270564526],[-87.92216869398904,41.953872698510445],[-87.92332029300272,41.95414446114626],[-87.92355286522606,41.954202235730634],[-87.924340552274,41.95439790643733],[-87.92434056218595,41.95439790866801],[-87.92475222991827,41.95450197869196],[-87.92516399252047,41.95459265769112],[-87.92559307947828,41.95468921119825],[-87.92613074702831,41.95481019505243],[-87.92635293591151,41.95486408357719],[-87.92634752126456,41.9557151028744],[-87.92635314902623,41.956798487540254],[-87.92635368482082,41.95690167134636],[-87.92635325069838,41.957724797347126],[-87.92635318926182,41.95784065979072],[-87.92635359011196,41.95863851544204],[-87.92635359028405,41.95863854617793],[-87.92635569672137,41.95887624898027],[-87.9221719998491,41.958244389269936],[-87.9221719999126,41.958244379390955],[-87.92217865399442,41.957506680901616],[-87.92218742444572,41.95653428843244],[-87.92218745076367,41.95653139501949],[-87.92216869394316,41.95387270564526]]],[[[-87.94001271998371,41.99810813815427],[-87.9400202079853,41.9981069434634],[-87.94005007906124,41.9989606913501],[-87.94007743935873,41.99974259334237],[-87.94008198569584,41.99987251777089],[-87.94009181180532,42.00015343334643],[-87.94011408251843,42.00078931910363],[-87.94009324098323,42.000789641228465],[-87.9400863778162,42.000789747518276],[-87.93992994892174,42.000792165392134],[-87.93897153744989,42.000806332722995],[-87.93802044050368,42.00082533056911],[-87.93763492012373,42.000833029082784],[-87.93763490062354,42.000833029289986],[-87.93763458345097,42.000833035606014],[-87.937634209246,42.00083304309755],[-87.93706081655142,42.000844490602326],[-87.93639423702149,42.00085779688861],[-87.93598900759552,42.00086792388366],[-87.93556510694035,42.000878515755076],[-87.9353994752236,42.00088265377525],[-87.93526832666204,42.00088592953709],[-87.93525665417839,42.000886221108495],[-87.93525663651594,42.0008862215961],[-87.93521503107122,42.00088726170751],[-87.93514385941461,42.00088911718496],[-87.93517570422037,42.00085475554007],[-87.93519477922794,42.000834173783524],[-87.93520289496446,42.000825416920875],[-87.93521102699738,42.00081664227684],[-87.93526014576477,42.00076182349766],[-87.93529133949677,42.00072700978753],[-87.93530302703985,42.0007139662375],[-87.93531494686981,42.00070066334139],[-87.93532284661799,42.00069184672081],[-87.9353644711335,42.000645391757025],[-87.93540928911649,42.00059537270265],[-87.93546804738205,42.00052979595033],[-87.93551196383082,42.000480782772804],[-87.93552537175569,42.00046783132945],[-87.93558546989456,42.00040978211145],[-87.93564493908141,42.00035233962061],[-87.93570224402539,42.000296988092245],[-87.93574247938416,42.000258124124684],[-87.93575605969035,42.00024500667785],[-87.9358022943464,42.0002003487789],[-87.93580229619953,42.00020034658995],[-87.93580229805094,42.00020034467541],[-87.93584505939734,42.00015903994464],[-87.9358687730168,42.000137128104285],[-87.93586886293376,42.00013704499191],[-87.9359035682103,42.000104976219525],[-87.93598608253097,42.000013750710686],[-87.93632784065706,41.99960327029946],[-87.93633411044475,41.999595207016405],[-87.93633416088191,41.99959514215326],[-87.93633416866899,41.99959513230107],[-87.93661435606309,41.999234786744566],[-87.93661440946325,41.99923471859848],[-87.93661544972132,41.99923338027891],[-87.93662609748358,41.999219022640624],[-87.93662640763463,41.999218605496104],[-87.93677128866763,41.99902324911561],[-87.93687597494481,41.99888184798994],[-87.93693408809672,41.99880335594391],[-87.93706164890155,41.99861236329902],[-87.93707476781327,41.99859280976873],[-87.93707950925949,41.99858574280142],[-87.93709957906376,41.998582443569894],[-87.93709958201023,41.998582443031225],[-87.93742188812782,41.998529454781966],[-87.93772225686861,41.99848007247176],[-87.93787809835969,41.99845445087885],[-87.93809981828437,41.99841799814817],[-87.93828199665484,41.99838804631968],[-87.93844288366083,41.99836159418747],[-87.93868811144004,41.998321275295226],[-87.93868827752773,41.998321247875346],[-87.93882354815538,41.9982990070315],[-87.9390544588638,41.9982610409754],[-87.93917682788971,41.99824151634344],[-87.93919852271142,41.99823805465343],[-87.93940709307373,41.99820477539131],[-87.93960571786464,41.99817308263877],[-87.93977317040391,41.99814636329196],[-87.9398289651783,41.9981374602782],[-87.93989441399256,41.998127017074125],[-87.94001270635692,41.99810814057736],[-87.94001271998371,41.99810813815427]]],[[[-87.93348486778805,42.005423714314176],[-87.93361122685613,42.004887785098845],[-87.93361122875241,42.0048877760496],[-87.93361269599392,42.00488155402265],[-87.93397746742909,42.00493026561328],[-87.93427208663697,42.00496960635588],[-87.93427327772893,42.00496976554383],[-87.93437324830666,42.00498311450209],[-87.93437181099546,42.004921661954356],[-87.9343602953676,42.00442926460591],[-87.93435816065775,42.004337928592406],[-87.93435760726757,42.00431426014652],[-87.93435589726238,42.00424110263404],[-87.93434668652912,42.00384733811788],[-87.93433943086173,42.003536982906034],[-87.93433221398323,42.003228319610976],[-87.93432483225986,42.00291283776143],[-87.93431729422095,42.002590527232385],[-87.93431528643056,42.00250462679273],[-87.93430990196522,42.0022743364835],[-87.93430262703309,42.00196322591379],[-87.93428022794093,42.001963689480974],[-87.93428021947746,42.001963689725976],[-87.93388915192044,42.001971779523814],[-87.93426992190761,42.00166677974635],[-87.9342699341135,42.00166676936082],[-87.93429522123282,42.00164651368442],[-87.93429713978502,42.00172855328585],[-87.93442686742279,42.00160010879458],[-87.93451153677834,42.00151627650511],[-87.93456272017892,42.001465599068744],[-87.93462902192262,42.00139995264021],[-87.9346928499896,42.001336621096904],[-87.93475573207097,42.00127422804238],[-87.93477080509507,42.00125927206926],[-87.93480329780797,42.001227032125925],[-87.93483943620119,42.00119117452579],[-87.93490727678724,42.00112386150779],[-87.93497336323892,42.00105828877091],[-87.93503887353174,42.00099328725958],[-87.93509473455796,42.00093785940802],[-87.93509637686066,42.000992322672694],[-87.93510163565298,42.00116674310636],[-87.93510648933166,42.00132772240656],[-87.93511139669107,42.001490480679095],[-87.93512013004622,42.00178014487098],[-87.93513174423143,42.00216533806566],[-87.93513401975794,42.002240808995225],[-87.93513987298662,42.002434925477914],[-87.9351502675306,42.002779672298736],[-87.93515603879757,42.002971074738944],[-87.93516694540361,42.00333279480533],[-87.93516858650126,42.003396851215335],[-87.93516858699925,42.00339688936144],[-87.93516993952859,42.00344969437462],[-87.935169941002,42.0034497531056],[-87.93517426886459,42.00361869747557],[-87.93518480824402,42.0040301419415],[-87.93518710118238,42.00411965662037],[-87.93519183061817,42.004304283814875],[-87.93519331006668,42.00436205351601],[-87.93519535893607,42.00444203289755],[-87.9351988948653,42.00458009758611],[-87.9352072528618,42.00490641732382],[-87.93520883780664,42.00496827871074],[-87.93521225299897,42.00510158013607],[-87.93521264068274,42.005116706132476],[-87.93521891180495,42.00536148077446],[-87.93522096313158,42.005441546866884],[-87.93522265194564,42.0055074659058],[-87.93522834616958,42.00572970344604],[-87.93523091803581,42.00583014728666],[-87.93523094370688,42.005831223101495],[-87.9352315441965,42.005857422949205],[-87.9352334401447,42.00594010783308],[-87.93524369822919,42.00638780612738],[-87.93524534345566,42.006459601978825],[-87.93525160232298,42.006732758662416],[-87.93525494066269,42.006878471512266],[-87.93525731480433,42.00698207788356],[-87.9352613627373,42.00715874691626],[-87.93526355527291,42.007254422195395],[-87.93526840706829,42.00746616869578],[-87.9352708367413,42.00757220523583],[-87.93527524377414,42.00776452702605],[-87.93528082400508,42.008008053016425],[-87.93528753192405,42.00815143452185],[-87.93527832822762,42.00815153432831],[-87.93510113645546,42.00815345648491],[-87.93503070671166,42.00815422748045],[-87.9348729942675,42.00815593092775],[-87.93425976151406,42.00816400822588],[-87.9335941981078,42.00817332810668],[-87.93358958732189,42.00817339465059],[-87.9335803620741,42.00817352717622],[-87.93358036172505,42.00817352415638],[-87.93358036068996,42.00817351317598],[-87.93358035407194,42.00817345360386],[-87.93356294656444,42.00801853463239],[-87.93354628810813,42.00732875247513],[-87.93354312249382,42.007197796840885],[-87.93354299834424,42.007192649939995],[-87.93350953768136,42.00580712004686],[-87.93350595411749,42.005658728753794],[-87.93350562257692,42.00557993370121],[-87.933505559521,42.00556497156227],[-87.93349995735566,42.00552672426573],[-87.93348486778805,42.005423714314176]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9458119.14878","perimeter":"0.0","tract_cent":"1166731.04568608","census_t_1":"17031590700","tract_numa":"31","tract_comm":"59","objectid":"260","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880198.86377479","census_tra":"590700","tract_ce_3":"41.82683191","tract_crea":"","tract_ce_2":"-87.66379887","shape_len":"12826.9044598"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66339867716397,41.82317842389702],[-87.66418003504388,41.82316728118501],[-87.66491464489594,41.82315679418333],[-87.6653082590457,41.82315192943168],[-87.66536958671989,41.823151171359044],[-87.66546190791684,41.82315003006822],[-87.66559712255808,41.82314835841359],[-87.66597723946612,41.82314365796902],[-87.66601374868078,41.823143206788835],[-87.66635600244174,41.82314080353255],[-87.66652824746747,41.82314498692366],[-87.66671660957205,41.82315162366715],[-87.66694796235005,41.823159113259415],[-87.6672478148863,41.82316628611683],[-87.66760237676881,41.82317643723231],[-87.667777460641,41.82318273786492],[-87.66798687354218,41.82319027332183],[-87.66826059449072,41.82319487720724],[-87.66830856172564,41.82319426221844],[-87.6684025973207,41.82319305631521],[-87.66887156988476,41.823187041174144],[-87.66899156115434,41.82318550194054],[-87.66918064063118,41.82318307638193],[-87.66998678659641,41.82317313519647],[-87.67021336599346,41.82317034572745],[-87.67021615594605,41.82329075992436],[-87.67022151434178,41.823522052606684],[-87.6702230298111,41.82358660142436],[-87.6702248792978,41.82366532304229],[-87.67023169043426,41.82402922540009],[-87.67023915476184,41.82432630848585],[-87.67024408202798,41.82451544497623],[-87.6702451731124,41.82455730087056],[-87.67025137399051,41.82477764707431],[-87.6702551076978,41.82496818062881],[-87.6702575503914,41.82509288976334],[-87.67026331260244,41.825295450260775],[-87.67027054245922,41.825547717976455],[-87.67028341471324,41.825889646147665],[-87.67029139313634,41.826197352431784],[-87.67029462716745,41.826323854548576],[-87.67030561177891,41.826796050540494],[-87.67031808711987,41.82733333272792],[-87.67032898416274,41.82773872435981],[-87.67034028319037,41.82814428293902],[-87.67035299561549,41.828618692675335],[-87.67036311840936,41.828996455652984],[-87.67037495381045,41.82951008656851],[-87.67038645524053,41.82996872447167],[-87.67038888739513,41.83006571686606],[-87.67039577489032,41.83033182503384],[-87.67039874328988,41.83044651281919],[-87.67011282911457,41.83044824322103],[-87.66973956955458,41.830450500988945],[-87.66917658585443,41.83045932211999],[-87.66882475033835,41.83046483364892],[-87.66844586112055,41.830468596098484],[-87.66795294332228,41.830474050832954],[-87.66735673883784,41.83048064559732],[-87.66673589202395,41.83048758218859],[-87.66640126465751,41.83049132033047],[-87.66630420129404,41.83049240326153],[-87.66611785342549,41.830494670321684],[-87.66556825195282,41.83050135443695],[-87.66516515802633,41.83050625514862],[-87.66489953124244,41.83051065729929],[-87.66453643331312,41.83051667412856],[-87.66429966607741,41.83051925936958],[-87.66365295935432,41.8305263181853],[-87.66336697632501,41.83052960769911],[-87.66320157397328,41.83053150975436],[-87.66236698969118,41.83054110394732],[-87.66213469643174,41.830543773703404],[-87.6613059881987,41.830553469990015],[-87.66115727007445,41.83055520957737],[-87.66093855544398,41.830557783212875],[-87.6606597408803,41.8305610632172],[-87.6601220355925,41.83056791744721],[-87.65932603425134,41.83057809657633],[-87.65930267519079,41.83057839529255],[-87.65927931686679,41.830578693733905],[-87.65886786630657,41.83058395277949],[-87.65853894618867,41.83058815625007],[-87.65738534546037,41.83059979273721],[-87.6574055502356,41.83030552850388],[-87.65751649445782,41.82932658725182],[-87.65757093719982,41.82875519403729],[-87.65756978491798,41.82865755988834],[-87.65756946180193,41.82863019515526],[-87.65756468942011,41.82822584265492],[-87.657545158377,41.82800088729429],[-87.65752790458781,41.82780215803308],[-87.65740661923616,41.82692991209084],[-87.65737421716683,41.82669688383326],[-87.65734507380888,41.82648729049419],[-87.65734547233154,41.826454883010335],[-87.65734890512341,41.82607425675273],[-87.65713749345076,41.82403664276522],[-87.65611232130217,41.82331366632464],[-87.65629966894643,41.823310320631194],[-87.65653272552566,41.823303600671196],[-87.65698323500347,41.82329060972298],[-87.65705619898478,41.82328807441881],[-87.65761015283245,41.8232688232885],[-87.65764957388218,41.82326745335612],[-87.65997584916542,41.82320759851233],[-87.66018970581817,41.82320527290222],[-87.6605639536393,41.82320274535981],[-87.66086856200458,41.82320068708756],[-87.66101554626015,41.82319966822325],[-87.66129689260427,41.82319776025647],[-87.66195425093653,41.82319301480242],[-87.66269623892583,41.82318574102842],[-87.66339867716397,41.82317842389702]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2414095.98456","perimeter":"0.0","tract_cent":"1158405.19930309","census_t_1":"17031271000","tract_numa":"12","tract_comm":"27","objectid":"287","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898982.19307647","census_tra":"271000","tract_ce_3":"41.87854938","tract_crea":"","tract_ce_2":"-87.69383183","shape_len":"6323.78126598"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69458257415783,41.87599665326382],[-87.69545519484822,41.87597782057698],[-87.69559448774147,41.87598325940122],[-87.69561882344506,41.87598339673423],[-87.69589695837068,41.87598496611487],[-87.6961530262009,41.87598095188243],[-87.69615757030307,41.87617145706071],[-87.69616081934218,41.876295350481534],[-87.69616403560387,41.876358482207316],[-87.69616745653317,41.87642562935498],[-87.69616833471684,41.876514657657275],[-87.69617266140007,41.876705469241514],[-87.69617535644173,41.87682433019252],[-87.69617792136827,41.87695850908892],[-87.69617910169518,41.87702026287577],[-87.6961870044662,41.877215367626974],[-87.69619308362769,41.877434850388575],[-87.6961966261865,41.87756273335157],[-87.69620226676322,41.877793363821006],[-87.69620498571435,41.87789163725819],[-87.69620915673967,41.87804238767432],[-87.6962126229561,41.87819248982684],[-87.69621611844383,41.87834530235696],[-87.69622127651662,41.87857080496053],[-87.69622537546275,41.878757024908936],[-87.69622660386617,41.878800598851036],[-87.69623210904142,41.878995894136075],[-87.69624045288657,41.87925512938822],[-87.69624383853196,41.87936034038833],[-87.69624640414384,41.87958263865653],[-87.69624938489363,41.87971194189515],[-87.69625089522063,41.87977745024083],[-87.69625586081983,41.87999103510105],[-87.69626128585189,41.88016454249989],[-87.69626695229769,41.88034576311528],[-87.69627328335778,41.88057346095742],[-87.69627448846425,41.88060286017257],[-87.69628138250134,41.88077103676932],[-87.69628450442617,41.88092994597132],[-87.69628877644246,41.8810766587074],[-87.69601622858019,41.8810803789548],[-87.6957556761628,41.881081731829575],[-87.69535186474342,41.88108393489173],[-87.69482896664216,41.88108602333037],[-87.69433133890477,41.88108750905523],[-87.69393085544505,41.88109037876837],[-87.69365451344255,41.88109235795428],[-87.6932860847411,41.88109623272684],[-87.69293182138263,41.88109954919424],[-87.69289474389282,41.881099896216085],[-87.69247840173048,41.88110295233489],[-87.69216226986921,41.88110597866043],[-87.69172873398094,41.88111012761615],[-87.69163261029965,41.881111559535775],[-87.69153011007411,41.88111308663929],[-87.69150455508145,41.88111346659706],[-87.69150160304422,41.88099538384019],[-87.69148275842824,41.88030990295238],[-87.6914796712797,41.88020569406054],[-87.69147700495841,41.880105081384386],[-87.691467229696,41.87975170469261],[-87.69145968149385,41.879405201867236],[-87.6914575125323,41.879301018398046],[-87.6914562131674,41.879243246379374],[-87.69145528792323,41.87920210247284],[-87.69145406571594,41.879140693659146],[-87.69143631328006,41.87852965581564],[-87.69143260061654,41.87839671002476],[-87.691454120472,41.87839640357658],[-87.69141681534458,41.8774914988942],[-87.6913866736814,41.87676034420214],[-87.69135677454804,41.87603506263558],[-87.69135691042122,41.87603506119972],[-87.69137040359105,41.87603493245457],[-87.69137041828043,41.876034932262264],[-87.69155400793568,41.876032916373056],[-87.69161344987185,41.87603221533053],[-87.6918882457002,41.87602897415055],[-87.69251799041716,41.87602321426546],[-87.69311106838082,41.8760159292835],[-87.69338366649669,41.87601231689266],[-87.6937139829478,41.876008146625395],[-87.69400201186369,41.876004509486926],[-87.69425077676898,41.87600117399208],[-87.69458257415783,41.87599665326382]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7326046.27016","perimeter":"0.0","tract_cent":"1101606.99923663","census_t_1":"17031770600","tract_numa":"3","tract_comm":"76","objectid":"253","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1944740.47318531","census_tra":"770600","tract_ce_3":"42.00508932","tract_crea":"","tract_ce_2":"-87.90154257","shape_len":"19960.3468072"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.89598347934923,42.005784525411414],[-87.89598339378038,42.00564660119124],[-87.89592024255462,42.00564866569523],[-87.89576265879947,42.00565388335788],[-87.89576275116706,42.00587660164483],[-87.89554714988266,42.00577778267128],[-87.89530933861197,42.00566878346626],[-87.89529734243017,42.005669178133736],[-87.89529731740582,42.00566917886151],[-87.89485849446704,42.00568361989294],[-87.89429464735518,42.005702173276276],[-87.8942991836385,42.00543871312897],[-87.89429918372716,42.005438700231586],[-87.89430398431655,42.005159908429405],[-87.89431827819244,42.00432976213091],[-87.89431939363848,42.00426496573581],[-87.89432880676056,42.003718235683415],[-87.8943462066007,42.00270764914976],[-87.8942462848012,42.00271131577653],[-87.89404061781349,42.002718862759465],[-87.89354676381701,42.002736983033536],[-87.89355043811834,42.00280730182656],[-87.89355043878236,42.00280731225705],[-87.8935732242224,42.003243389262906],[-87.89357787890125,42.00333248760826],[-87.89339598498916,42.003338447249256],[-87.8933959824119,42.00333844751381],[-87.89339597983654,42.00333844750394],[-87.89322946872804,42.003343902450396],[-87.89322945989633,42.00334390269096],[-87.89323263594456,42.00339769154557],[-87.8932326366123,42.003397701427254],[-87.89323480220384,42.003434375509165],[-87.89324238779128,42.00356285199405],[-87.89325659727137,42.00380352597812],[-87.893264746274,42.00394155277522],[-87.89326471057707,42.00394155401047],[-87.89315148428223,42.00394526225349],[-87.89303032047523,42.00394923027549],[-87.89289724764349,42.00395358798147],[-87.89252974667558,42.00396567551387],[-87.89234129542356,42.00397187339009],[-87.89216206378627,42.00397776748201],[-87.89188956233583,42.00398670271351],[-87.89164509250188,42.00388854691629],[-87.8914203366789,42.003798305567564],[-87.89126918435348,42.00373761658928],[-87.89118498687169,42.00370381008054],[-87.89090957455157,42.00359322854394],[-87.89090950924228,42.00359320249678],[-87.89068882073752,42.00350459227036],[-87.89059720887478,42.00346780700074],[-87.8903147424749,42.00335438649428],[-87.89015350924772,42.003289644846305],[-87.89010295947025,42.003269347053816],[-87.88999682254705,42.00322672813386],[-87.89003404721488,42.00317486000955],[-87.8900811458234,42.00310923272069],[-87.8901703166012,42.00298498272724],[-87.89025063995736,42.00287306030164],[-87.89025064738972,42.00287304962795],[-87.89025224152381,42.002870828864246],[-87.8902522496958,42.002870817644585],[-87.89026472973795,42.00285342753311],[-87.89031971768792,42.002851621401916],[-87.89038168143381,42.0028495858542],[-87.89038180096281,42.002832352750524],[-87.89038364717776,42.00256617263936],[-87.89038494941238,42.002378419334725],[-87.89038549264833,42.00230009624367],[-87.89041298969792,42.002299192752375],[-87.89104768622205,42.00227834553979],[-87.89104801925741,42.002278334748475],[-87.89266962809735,42.00222505723772],[-87.89344483374794,42.002199579993174],[-87.89375466870207,42.00218939573812],[-87.89429707008995,42.002171564803135],[-87.89435546903283,42.00216964492242],[-87.89435634694418,42.00211867808142],[-87.89435736226513,42.00205970968185],[-87.89488123942665,42.00204248515769],[-87.89568018285162,42.00201621246903],[-87.89641609464142,42.001992007413534],[-87.89641745106651,42.00199196263187],[-87.89691160584678,42.001975706802256],[-87.8970187721728,42.00197217296222],[-87.897433936789,42.00195848285958],[-87.89758749900815,42.00195345892868],[-87.89759257951401,42.00195329270603],[-87.89760829206257,42.00195277853623],[-87.897832276559,42.001945404968815],[-87.89796694543571,42.00194097157494],[-87.8979670182988,42.00194096910708],[-87.89796755483295,42.001940951383716],[-87.89847474176034,42.001924252800634],[-87.89893340934863,42.00190914991273],[-87.89903523952931,42.00190579651848],[-87.8992362186668,42.00189917783646],[-87.8998215386847,42.002215980358635],[-87.9000277554477,42.00232759302453],[-87.90028160330509,42.002464984548666],[-87.90049129712337,42.00257847747158],[-87.90093133050792,42.002816634729434],[-87.90106118479906,42.00288691452877],[-87.90122808386529,42.00297724334173],[-87.90175277967882,42.00326121490884],[-87.90198189640638,42.0033852140321],[-87.9021447426121,42.00347334656054],[-87.90240647376368,42.0036149948061],[-87.90240538926344,42.00382614499258],[-87.90240435766236,42.00402700051058],[-87.90285290298587,42.00401225588396],[-87.9033098198314,42.00399723461286],[-87.90330983050274,42.00399723437841],[-87.9035660784615,42.003988809419084],[-87.9038605979944,42.00397912479501],[-87.9039853408824,42.00397502288933],[-87.90406027816726,42.00397255867528],[-87.9040611975304,42.00379189425292],[-87.90406192601299,42.003648710744734],[-87.90414174760657,42.00361829943957],[-87.90427166894605,42.00358413934543],[-87.90459315621193,42.00358156753117],[-87.90483170936051,42.003601667378355],[-87.90504895172239,42.00364501318305],[-87.90512999654759,42.00366491761354],[-87.90524041419268,42.003692035985786],[-87.90538075853927,42.003680896168134],[-87.90559884934832,42.00366627317805],[-87.90569729085892,42.00366286639882],[-87.90584230578479,42.003709715156674],[-87.90616273397943,42.003865612185756],[-87.90636957352521,42.00395179487752],[-87.90656533941099,42.003993731383225],[-87.90657164172781,42.00399508135901],[-87.90674282673977,42.00397993795742],[-87.90692494609671,42.0039113241478],[-87.90708098484806,42.00382271721955],[-87.90717483241463,42.00374965807957],[-87.90732036349418,42.00371932630532],[-87.90751760943377,42.003657970659745],[-87.90770440248437,42.003647000290755],[-87.90787042240332,42.00364761574453],[-87.90805703225485,42.00366408638233],[-87.90829525353917,42.0037342597002],[-87.90855925201303,42.003801097938066],[-87.90874021646897,42.00383675596432],[-87.90888762844858,42.003876410337384],[-87.90920618209587,42.003962310492106],[-87.91003508131219,42.0041471732213],[-87.91079093938507,42.00432009773379],[-87.91170239960641,42.00453989807036],[-87.91222037020499,42.00466185808733],[-87.91286231220897,42.0048151421587],[-87.91325570557166,42.004928751548945],[-87.9135873224074,42.00499548234715],[-87.91377083923119,42.00507469164807],[-87.91377082220939,42.00521184770119],[-87.91377046397925,42.008155765819446],[-87.91377042727937,42.0084301847894],[-87.91377040395687,42.008600599576454],[-87.91377038952339,42.00870453897935],[-87.91375116495126,42.008705539221936],[-87.91348151450207,42.00871485416349],[-87.91338335224502,42.00871904304291],[-87.91330990301014,42.00872098366345],[-87.9133105929919,42.00861609641822],[-87.91331089084127,42.00857081881682],[-87.91331072453272,42.008499446599565],[-87.9133101805165,42.008266007066545],[-87.91330970912378,42.00806358956058],[-87.91330926231457,42.00787175375998],[-87.91330873016004,42.007643501600135],[-87.91330822247437,42.00742562478052],[-87.91330767773844,42.0071920128657],[-87.91330709764476,42.006943079684895],[-87.91330654174064,42.00670445241468],[-87.91330608234117,42.006507256830815],[-87.91330550110104,42.00625782526992],[-87.91317327990754,42.00626273867478],[-87.91302985085142,42.0062680680739],[-87.91302944733282,42.00609051674309],[-87.91302935496255,42.00604993685785],[-87.91302876485419,42.005790388210556],[-87.91302805735454,42.005479135141535],[-87.9130276094377,42.00528211106968],[-87.9130271681181,42.005088053218905],[-87.91270953129961,42.00509375327241],[-87.9123348109088,42.00510047634903],[-87.91197973427829,42.00510684605546],[-87.91182154374017,42.005109683190106],[-87.91171461025945,42.005111600822666],[-87.91133545305621,42.00511839819213],[-87.91133391439261,42.00509506795069],[-87.91108309920394,42.00510442868073],[-87.91077020713682,42.00511610506037],[-87.91061852305378,42.00512176521644],[-87.91046234431943,42.00512759302471],[-87.91007544176787,42.0051420291044],[-87.90974791393144,42.00515424916164],[-87.90946276607549,42.00516488715539],[-87.90917030078558,42.00517579706881],[-87.90908222285823,42.005179082669905],[-87.90891135470955,42.00518523277611],[-87.90871442501798,42.005192321064875],[-87.90854182303175,42.00519848396558],[-87.90827427748846,42.005208036519974],[-87.90827428375286,42.00521394946616],[-87.90827429679831,42.00522724542718],[-87.90796648532405,42.005238225521595],[-87.90767354642139,42.005248674328925],[-87.90767401523426,42.00549561297125],[-87.9076741417301,42.00556224585154],[-87.9076745866093,42.0057966568557],[-87.90767520671972,42.00612350623924],[-87.90767576814174,42.006419196948464],[-87.9076763984001,42.00675120048513],[-87.90767695929466,42.00704685795535],[-87.9076776384263,42.00740469989575],[-87.90767831799062,42.007762641155416],[-87.90767895808231,42.00810006416447],[-87.90767976529213,42.008525509787816],[-87.90768021626849,42.00876302794705],[-87.90768034758551,42.008820656276875],[-87.90768048201281,42.008921807291976],[-87.9063868970629,42.008967913846554],[-87.90638687166943,42.00896791457536],[-87.90638603033251,42.00896794465086],[-87.90638579662527,42.00896795338631],[-87.90575035197253,42.00899059684225],[-87.9054255779842,42.00890409399677],[-87.90403713942557,42.008534205925734],[-87.9039400258543,42.00850819406664],[-87.90245515359325,42.00811045969592],[-87.90238346823514,42.00809125810996],[-87.90238436836829,42.00791624076956],[-87.9018773988691,42.007779949507565],[-87.90175123639835,42.00774603199147],[-87.90137426150014,42.00764468522945],[-87.90103410814423,42.00755323646201],[-87.90049947670482,42.00740950079332],[-87.90020298564983,42.00732978756252],[-87.89987673649736,42.007242073007724],[-87.89961180502857,42.00717084309898],[-87.899611796215,42.00717084059591],[-87.89916205353481,42.0070499204443],[-87.89891715516012,42.00697574937742],[-87.89891715259022,42.00697574854444],[-87.89891715001843,42.00697574798587],[-87.89875888773518,42.006927815395045],[-87.89835425972038,42.0067934639962],[-87.89806686234674,42.00668880257334],[-87.89806686051271,42.00668880174313],[-87.89793027092392,42.006639059708704],[-87.89773708958127,42.006563038944726],[-87.8975639790906,42.00649491610845],[-87.89717927998565,42.0063311638154],[-87.89699903124931,42.00625001813324],[-87.89688099983817,42.006195918998955],[-87.89670538191226,42.00611542437091],[-87.89651022183511,42.006025969399985],[-87.89618044214794,42.005874808111635],[-87.89598347934923,42.005784525411414]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"620510.876243","perimeter":"0.0","tract_cent":"1106997.04899021","census_t_1":"17031770800","tract_numa":"2","tract_comm":"0","objectid":"254","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927721.1450281","census_tra":"770800","tract_ce_3":"41.95830973","tract_crea":"","tract_ce_2":"-87.88204149","shape_len":"3649.94916661"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8807899538521,41.95751839564248],[-87.88078844362049,41.957200454568124],[-87.88119442383231,41.95715765700417],[-87.88127928796504,41.957148710776366],[-87.88163261398316,41.95711146252609],[-87.88220889083213,41.9571772210669],[-87.88233738759185,41.957191883325244],[-87.8825120505903,41.95721181313885],[-87.88309011685175,41.957277771043756],[-87.88321180981154,41.95729165592061],[-87.88382845797761,41.957362012160566],[-87.88384646561097,41.95730028201209],[-87.88403814011798,41.957326053509234],[-87.88403815407688,41.9573260552104],[-87.88403944846512,41.957326229319726],[-87.88411041657184,41.95733576601779],[-87.88423803964032,41.95740873465426],[-87.88436453538434,41.95745750652281],[-87.88431325446217,41.95752215408133],[-87.88410716956076,41.95770638706226],[-87.88383584832661,41.95797081655591],[-87.88355391657308,41.9582110678699],[-87.88328281769584,41.95844331599161],[-87.88296837654845,41.95870757408439],[-87.88261076219412,41.95897970704586],[-87.88250611726816,41.95906665125249],[-87.88226381021785,41.95926797122073],[-87.88175928598744,41.95964077847115],[-87.88168807517663,41.95971221302099],[-87.88151978806555,41.95984533893633],[-87.88132749975043,41.95999893692936],[-87.88114197754625,41.96014924815005],[-87.88091350560855,41.96033144229354],[-87.88080598970014,41.960436482158514],[-87.88080368088563,41.960038512851995],[-87.88080337278105,41.95998545629366],[-87.88080320623548,41.95995614683704],[-87.88080280332412,41.95988515506539],[-87.88080280336294,41.959885149577104],[-87.88080183216856,41.95971400257037],[-87.88080079627565,41.959531525797466],[-87.88080077220964,41.95952728835482],[-87.88080015462647,41.959418511684305],[-87.88079957876252,41.95931708968201],[-87.8807995731683,41.959316113541405],[-87.88079816802716,41.959068592652],[-87.88079792982725,41.95902940426967],[-87.88079757762937,41.958968289678666],[-87.88079633290013,41.95875219263369],[-87.88079512637977,41.95854269941972],[-87.8807946789404,41.95846501046306],[-87.88079467895787,41.958465007993325],[-87.88079467897533,41.95846500552361],[-87.88079337575847,41.95823883200544],[-87.88079309096975,41.958178790935854],[-87.88079258646917,41.9580726354149],[-87.88079068850801,41.95767298288802],[-87.88079040058042,41.95761239817029],[-87.8807899538521,41.95751839564248]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"171540.011897","perimeter":"0.0","tract_cent":"1117290.84166553","census_t_1":"17031770900","tract_numa":"2","tract_comm":"76","objectid":"255","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1932804.74255946","census_tra":"770900","tract_ce_3":"41.97210476","tract_crea":"","tract_ce_2":"-87.84408989","shape_len":"2957.06183347"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.84156470907453,41.972054542089275],[-87.84157514813036,41.971972015146015],[-87.84157511893103,41.97197523754781],[-87.84173915270597,41.97197231770327],[-87.84177913721533,41.97197159539589],[-87.84177969257779,41.9719715851504],[-87.8417797083921,41.97197158494369],[-87.84190370060247,41.97196934494086],[-87.84203463394819,41.97196699647475],[-87.84206810244491,41.97196642620181],[-87.84223257745195,41.97196350754028],[-87.84239705249992,41.97196053375903],[-87.84256152674581,41.9719576146229],[-87.8426754674532,41.971955576972945],[-87.84272592743595,41.97195469466237],[-87.84289047635573,41.971951720764224],[-87.84305487738368,41.971948800882856],[-87.84321935273239,41.97194582619909],[-87.843316374729,41.971944099324226],[-87.84338375337323,41.97194290502179],[-87.84354830145493,41.97193998478688],[-87.84371270285403,41.971937008806314],[-87.84387717736703,41.971934087511805],[-87.84395823789453,41.97193262217178],[-87.84404165186096,41.971931166804815],[-87.84420612640055,41.971928190154856],[-87.84433757368232,41.97192584125156],[-87.8443705276956,41.97192526811593],[-87.84453507611985,41.971922291583745],[-87.84455868749342,41.97192189815274],[-87.84469947738916,41.97191936907359],[-87.84477980164691,41.97191795490387],[-87.84486395145528,41.9719164466377],[-87.84500091583283,41.97191395579617],[-87.84502842666532,41.97191346881238],[-87.84519290107131,41.971910546181036],[-87.845222029574,41.97191001141929],[-87.84530616886086,41.97190852995189],[-87.84539525671728,41.97190696078446],[-87.8454431428689,41.97190612204764],[-87.84566433053163,41.97190212169986],[-87.84587477844633,41.9718984051796],[-87.84588537065797,41.97189817573252],[-87.84631472545979,41.97189050268483],[-87.84637724919706,41.97188939607271],[-87.84651078911926,41.97188699839837],[-87.8465334529717,41.97188986780104],[-87.84653353342831,41.97188987802136],[-87.84653354077653,41.97188987887578],[-87.84653208274344,41.97197554861165],[-87.8465272817454,41.97225766086671],[-87.84530392558047,41.97226396462169],[-87.84156138286433,41.97230768128786],[-87.84156470907453,41.972054542089275]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"60231.2037933","perimeter":"0.0","tract_cent":"1137406.94098462","census_t_1":"17031808100","tract_numa":"1","tract_comm":"0","objectid":"256","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1945160.93737574","census_tra":"808100","tract_ce_3":"42.00567209","tract_crea":"","tract_ce_2":"-87.76981935","shape_len":"1307.16702674"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.769185277224,42.00488913594643],[-87.7694949752504,42.00505103747605],[-87.76949497818158,42.00505103886255],[-87.76986890310147,42.00524653667176],[-87.76992746918812,42.005361930355676],[-87.77001078774435,42.005522435404814],[-87.77005702341593,42.00561151921664],[-87.77011834484837,42.005729710573895],[-87.77017159931984,42.005832330196164],[-87.77024229281453,42.0059684595903],[-87.77030140971014,42.006082249322894],[-87.77035947702404,42.00619408604851],[-87.77028833543956,42.006217667289825],[-87.77026541641871,42.00622526439989],[-87.77021524091266,42.00624908015844],[-87.77012757187774,42.006290691607944],[-87.76994862177146,42.00637562898485],[-87.76986903998217,42.006220644084856],[-87.76973885019585,42.005967098634926],[-87.76959063550633,42.005678446977036],[-87.76945886832459,42.00542182516094],[-87.76934560095059,42.0052012300922],[-87.7692538933749,42.00502262352976],[-87.76925381163282,42.005022463964956],[-87.76919792654927,42.00491362361495],[-87.76918528120557,42.004889143375316],[-87.769185277224,42.00488913594643]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"86025050.7925","perimeter":"0.0","tract_cent":"1124733.8649635","census_t_1":"17031810501","tract_numa":"1","tract_comm":"0","objectid":"257","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1929851.8420939","census_tra":"810501","tract_ce_3":"41.96388177","tract_crea":"","tract_ce_2":"-87.81678548","shape_len":"55356.4756596"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8336295038882,41.97500292656868],[-87.83362972327483,41.97497486139932],[-87.83362996580873,41.974943835054496],[-87.83362996585807,41.97494382874304],[-87.83362999457856,41.97494015464644],[-87.83363009085625,41.974927838231615],[-87.83363013393893,41.97491296480558],[-87.83358188960625,41.9749138244947],[-87.83353459973009,41.974914666913975],[-87.83350883126464,41.97491512607138],[-87.83349281071072,41.974915416909624],[-87.83349203905087,41.974915431112834],[-87.83345654129684,41.97491607539258],[-87.83341643308825,41.97491680304157],[-87.83341422808702,41.9749168431099],[-87.8334142225709,41.974916843085886],[-87.83341371683562,41.9749168524093],[-87.83341464520697,41.974694685001474],[-87.83341493272972,41.97462970365269],[-87.83341572182266,41.974472463620856],[-87.83341657587823,41.97425029642111],[-87.83341755672265,41.97403081881584],[-87.83341847538655,41.973920303617014],[-87.83341847548098,41.9739202915429],[-87.83306953073372,41.97392590097668],[-87.83287743145652,41.973929403696275],[-87.8328774281469,41.97392940368185],[-87.83271603695104,41.97393234598083],[-87.83265565999022,41.97393314002579],[-87.83262291042895,41.97393357045974],[-87.83248569252886,41.97393537528523],[-87.83235666910613,41.97393751647129],[-87.8321950592533,41.973940199127895],[-87.83208101215519,41.973942181724624],[-87.83190994149359,41.973945155818804],[-87.83190010243786,41.973945335125535],[-87.83174461480283,41.973948161889204],[-87.83172260263069,41.973948561866415],[-87.83172218844093,41.97383956169995],[-87.83172413340792,41.973619759006986],[-87.83172420532141,41.973610593935284],[-87.83172629603519,41.973381680819415],[-87.83172770442994,41.97322093116117],[-87.83172794902177,41.97318975828008],[-87.83172914474243,41.97305606532294],[-87.83146484866184,41.97306067336149],[-87.83119643243032,41.97306531710587],[-87.83117561496782,41.97306572000872],[-87.83092801573245,41.97307001537919],[-87.8308065709344,41.97307211828768],[-87.83065967371448,41.973074658467645],[-87.83051145258855,41.973077247545355],[-87.83039125731574,41.97307935576157],[-87.83021633457045,41.97308237604571],[-87.83012284095228,41.973083996994944],[-87.82992114259845,41.973087503463034],[-87.82985442485703,41.97308869276047],[-87.82962595131983,41.97309263039871],[-87.82958608233947,41.97309333333698],[-87.82933083355181,41.97309775634915],[-87.82931766581014,41.973098027845474],[-87.82904924968042,41.97310266684386],[-87.82903571500628,41.97310288181185],[-87.82878090706417,41.973107305537674],[-87.82874052324233,41.973108006193996],[-87.82851249043546,41.97311199816293],[-87.82844533100504,41.97311318469914],[-87.82828899139182,41.973115866376155],[-87.82828858718577,41.973115873379435],[-87.82828849928282,41.97311587491368],[-87.82824414738563,41.97311663560005],[-87.82815021307503,41.97311830788794],[-87.82797565751211,41.97312132664775],[-87.82785502082345,41.973123429990764],[-87.8277073147664,41.973125962556814],[-87.827559828532,41.973128551334284],[-87.8274388976396,41.973130652395],[-87.8272647101147,41.97313367224434],[-87.82696951847903,41.97313879207269],[-87.82679005310676,41.97314189714217],[-87.8267425772171,41.97314270054399],[-87.8267425617702,41.973142700750245],[-87.8267427918446,41.97321460252847],[-87.82674269195805,41.97335255350499],[-87.8267412349967,41.97351780282561],[-87.82673969487942,41.973693590636394],[-87.82673779357019,41.9737432524367],[-87.82673530652775,41.97384362436638],[-87.82673538218297,41.974033623049856],[-87.82644421490916,41.97404080069789],[-87.82614067973884,41.97404942185451],[-87.82604418912203,41.974050878601055],[-87.8258833714186,41.97405330642317],[-87.82580669659636,41.974055829142685],[-87.82575455191645,41.974057544800495],[-87.82562623230301,41.97406176630892],[-87.82541867209812,41.974068594831714],[-87.82536890053746,41.97406984112575],[-87.82516535258544,41.97407493805873],[-87.82501601879497,41.97407839325956],[-87.82491810264112,41.97408101507376],[-87.82479576749475,41.974084197128754],[-87.82479576455286,41.97408419711572],[-87.82468559877465,41.97408717198442],[-87.82425891820446,41.974098693881274],[-87.82405075885278,41.97410508451187],[-87.82404023753465,41.97410540748229],[-87.82384069806267,41.974109830503394],[-87.82349973377832,41.974117388339344],[-87.8233005594467,41.97412212927361],[-87.82305338397987,41.97412813811389],[-87.82293909497828,41.97413146372188],[-87.82275558413595,41.97413680297892],[-87.82243854492192,41.974144558191426],[-87.82225913502927,41.974148946473306],[-87.82204568582453,41.97415439005958],[-87.82202305318172,41.97415501345718],[-87.82185041497976,41.97415976962076],[-87.82185041166792,41.97415976988044],[-87.8218504083583,41.97415976986569],[-87.82151409665907,41.974169035434464],[-87.82140022685147,41.97417179634644],[-87.82116805017458,41.97417742591686],[-87.82080452641752,41.97418694533221],[-87.82039149106689,41.9741979986819],[-87.82027409405202,41.97420094496521],[-87.82009450969282,41.97420545229899],[-87.81968070187953,41.97421649936317],[-87.81966951114299,41.97421673990463],[-87.81966947252397,41.9742167405551],[-87.81939807334184,41.9742225716668],[-87.8193980589979,41.974222571877],[-87.81939806055047,41.97422256173038],[-87.8194260919695,41.974030976782316],[-87.81942659962662,41.973958723759],[-87.81942723718174,41.973897667963335],[-87.8194306349513,41.97374952360247],[-87.81943240929844,41.9736385008456],[-87.81943317888901,41.97355200654436],[-87.81943368211722,41.973464702605455],[-87.81943365946607,41.97346001786454],[-87.81943251413749,41.97321959256511],[-87.81943177490481,41.97321960078171],[-87.8193428767856,41.97322059576767],[-87.8189677881625,41.97321924541111],[-87.81896870728171,41.97309586960382],[-87.81896900944152,41.973049219398526],[-87.8189695532884,41.97297243885653],[-87.818970363326,41.972862619224365],[-87.81897049491153,41.972846264599944],[-87.81897171719714,41.97267601904409],[-87.81897184745898,41.97265982879136],[-87.81897307179041,41.97248941886097],[-87.81897313493371,41.97248157070431],[-87.81897400949198,41.972363683375335],[-87.81897442637033,41.97230281867172],[-87.81897484143396,41.97225122938831],[-87.81897559828127,41.972138829946836],[-87.81897578020146,41.972116218473076],[-87.81897642947813,41.97202637595207],[-87.81897713438696,41.97192961826995],[-87.81897726067008,41.97191392195508],[-87.81897809185713,41.97180146795586],[-87.8189784881914,41.97174301805905],[-87.81897892223003,41.971689068835005],[-87.81897968023063,41.971576614503505],[-87.81897984271797,41.97155641784533],[-87.8189805113987,41.97146416104643],[-87.81898119686345,41.97136981762383],[-87.81898134212697,41.97135176164614],[-87.81898217366181,41.97123930708864],[-87.81898255099561,41.97118321739622],[-87.81898300444747,41.97112685362326],[-87.81898376205886,41.97101439900459],[-87.81898459276547,41.9709019998698],[-87.81898487887486,41.97086643618487],[-87.81898542390871,41.970789545850586],[-87.81898666181577,41.97061853027827],[-87.81898666186655,41.970618523966806],[-87.81898666762146,41.9706177171947],[-87.81898673951322,41.97060777524205],[-87.8188518298138,41.970611067794],[-87.81870463492088,41.97061468875839],[-87.81865571679393,41.97061589645433],[-87.81855744037647,41.97061831008444],[-87.81841024582168,41.970621930672834],[-87.8182658467764,41.97062545439493],[-87.81826216836289,41.970625547385744],[-87.81811593064889,41.970629117279806],[-87.81800242683228,41.97063190089569],[-87.81797373831562,41.970632595653434],[-87.81796873604766,41.97063273757625],[-87.81782161460721,41.97063635801245],[-87.8177560727889,41.97063798463552],[-87.81767934943761,41.97063983569435],[-87.81767434680086,41.97063997760267],[-87.81752722569856,41.97064359766306],[-87.81752089964759,41.97064373389313],[-87.81738496013499,41.9706470747039],[-87.81737995712722,41.970647216872145],[-87.81728940488921,41.9706493891604],[-87.8172328364384,41.97065078167287],[-87.81718936470587,41.97065185241717],[-87.81718931321447,41.970651853557776],[-87.81718909510545,41.9706518591633],[-87.81707644699101,41.970654633636116],[-87.81695335963519,41.97066019992975],[-87.81695334565974,41.97066020014131],[-87.81695200073136,41.97077385928608],[-87.81695068755553,41.970881810613974],[-87.81694937527544,41.971003263458286],[-87.81694835602525,41.97109763226343],[-87.81694980021167,41.97114961382591],[-87.81694744645074,41.97121930645133],[-87.81694726702351,41.97126883836277],[-87.81694660759553,41.971441583695686],[-87.81694489628391,41.97156772705796],[-87.81694342514716,41.971676199060255],[-87.81694199273406,41.97184907811453],[-87.816940821518,41.97198488351562],[-87.81693947854605,41.972132983023684],[-87.81693810365692,41.9723305596607],[-87.81693617663774,41.97247497819428],[-87.81693484026921,41.972575136379625],[-87.81693260035573,41.97277504196284],[-87.81693126224624,41.9728860666553],[-87.81693022608805,41.97309624098494],[-87.81692935433227,41.97326794223396],[-87.81692842178867,41.97338338691787],[-87.81692727466393,41.97352539485227],[-87.81692595330374,41.97368897093312],[-87.81692470909144,41.97382483112088],[-87.8169245700333,41.97383608175186],[-87.81692370555491,41.97390617703264],[-87.81692364324634,41.97391115886355],[-87.81692230962854,41.97398524650348],[-87.81692048253294,41.974084002359646],[-87.81691746330694,41.97428894906344],[-87.81685287289372,41.974290287187195],[-87.81668655331497,41.974293732520366],[-87.81619283889925,41.97430807748391],[-87.81595875053743,41.9743148783436],[-87.81586924729159,41.974316654949625],[-87.81572243225656,41.97431956880342],[-87.81570204302245,41.974319798494065],[-87.81568330035778,41.974320009809965],[-87.8154835776195,41.97432420699595],[-87.8153830872806,41.97432677256666],[-87.81516231430231,41.97433280120371],[-87.81487480832666,41.97434165646192],[-87.81467257145447,41.97434749399393],[-87.81458103402738,41.97434964185035],[-87.81445468011236,41.974352607294975],[-87.81431318483105,41.97435592757923],[-87.81423133357973,41.97435784864273],[-87.81399556035765,41.97436331325076],[-87.81383632731477,41.97436744484703],[-87.81382523286696,41.97436773245482],[-87.81381002756405,41.97436812686887],[-87.81369931729306,41.97437100832383],[-87.81359087504356,41.97437383106033],[-87.81355192699439,41.974374857512274],[-87.81340607722677,41.974378701962664],[-87.81326319227544,41.974382453183445],[-87.8132161667056,41.97438368771246],[-87.81306127687274,41.974387753663294],[-87.81298351432778,41.9743897949998],[-87.81271414804505,41.97439741011799],[-87.81258437577594,41.97440081820558],[-87.81254487303059,41.974401856344],[-87.81245214162412,41.97440428879568],[-87.81232634487102,41.9744075881211],[-87.81225851598074,41.97440949402763],[-87.81222460153312,41.97441044710307],[-87.81200479180151,41.9744163922618],[-87.81200478885961,41.97441639224844],[-87.81200478481449,41.97441639223007],[-87.8117335448006,41.9744238041692],[-87.81142968713192,41.974430930253256],[-87.81117577322044,41.974437624093014],[-87.81098891484315,41.97444259177444],[-87.81087210934288,41.9744456815156],[-87.81075368647836,41.9744488139947],[-87.81066044826551,41.974451280561986],[-87.81056848384587,41.974453713337276],[-87.81044868255282,41.97445671902857],[-87.81026487931582,41.974461330899125],[-87.81004565425285,41.97446683589663],[-87.80977500747414,41.97447356013397],[-87.80951892516228,41.974480094976514],[-87.8093583009923,41.974484192608415],[-87.80935563018731,41.97448426082377],[-87.80933707065357,41.974484734285596],[-87.80896511536639,41.97449505531798],[-87.80876350430819,41.974500692928075],[-87.80861015045177,41.97450407905273],[-87.80857919042556,41.97450476272447],[-87.80829129282198,41.97451184615297],[-87.80823782301738,41.974513161682495],[-87.80805529545975,41.97451765208584],[-87.80782592210755,41.974523892900095],[-87.80771685114317,41.97452686033589],[-87.8076001935526,41.97452968041319],[-87.80753073160477,41.974531359529344],[-87.80729193003052,41.9745382783699],[-87.80716628598019,41.97453824264326],[-87.80706668533851,41.974538214203896],[-87.80706668503629,41.97453820624431],[-87.80706254406346,41.97433514357486],[-87.8070651683476,41.974145915278704],[-87.8070689443593,41.973856940005945],[-87.80706562096965,41.97368790897171],[-87.80706537222349,41.97367528502112],[-87.80706243794599,41.97352604068588],[-87.8070602547659,41.97336239379209],[-87.8070599668998,41.97319634040389],[-87.80706404740708,41.97300898425904],[-87.80707157922758,41.97288465151421],[-87.8070754616854,41.97272572473028],[-87.80707669824328,41.972675173562216],[-87.8070805063695,41.97251946538883],[-87.80708236949116,41.97235567208784],[-87.80708399518672,41.97222961084493],[-87.80708548206762,41.97211603429177],[-87.80708664848983,41.97202789618535],[-87.80708700072992,41.971996317439284],[-87.80708823901166,41.97188528664265],[-87.80708945898851,41.971775853438686],[-87.80709043557769,41.97167503538587],[-87.80709190204617,41.97152372639592],[-87.80709322754538,41.971384985510234],[-87.80709465730794,41.97123362118577],[-87.80709734869201,41.97110772945556],[-87.80709740895857,41.97110487520484],[-87.8070985756099,41.97105691231491],[-87.8071011096685,41.970913675904654],[-87.80710366399975,41.97076931500649],[-87.80710656117319,41.97059603142857],[-87.80710826310431,41.9704964792907],[-87.80710998594111,41.97037209187125],[-87.80711230294192,41.97019776282204],[-87.80711346762884,41.97013122463098],[-87.80711446292386,41.97007436558988],[-87.80711841117945,41.96984878243409],[-87.80711881034279,41.969831246015396],[-87.80712175300496,41.96970192733801],[-87.80713087557275,41.96951832658789],[-87.80713087558856,41.96951832466702],[-87.80713849043815,41.969379450101954],[-87.80714582449725,41.969180857478264],[-87.80714599950052,41.96909806489544],[-87.80714643523841,41.96889216903484],[-87.80714643525423,41.96889216711396],[-87.80714727916147,41.968860175404856],[-87.80715338347571,41.968628784080444],[-87.80715513016733,41.96838918624416],[-87.80715600156086,41.96826957885926],[-87.80696695967478,41.968271565165594],[-87.80684323862565,41.9682728652905],[-87.80666080282019,41.96827430620092],[-87.8065784668264,41.96827483623756],[-87.80644030847834,41.968275736812586],[-87.80633867201955,41.96827637403376],[-87.80618510033442,41.968277336642444],[-87.80602517727135,41.96827774161293],[-87.80594232579895,41.96827795132046],[-87.80591162417254,41.96827802926761],[-87.8056631497209,41.968279082861955],[-87.80540974910768,41.96828003066523],[-87.80535219967273,41.96828039032188],[-87.80513916963314,41.96828172241191],[-87.80485582753487,41.9682837159101],[-87.80471708017878,41.96828469183078],[-87.80441362416919,41.968286751883916],[-87.80407630114067,41.96828876477987],[-87.80396878548079,41.96828888295764],[-87.80387832097645,41.968288981978034],[-87.80377822773436,41.9682890919467],[-87.80373431941658,41.968289455535746],[-87.80369041109844,41.968289819108],[-87.8034675962274,41.968291664968596],[-87.80313020491771,41.968293125927154],[-87.80293963532252,41.96829436282296],[-87.80284362828937,41.96829498591037],[-87.80279081492999,41.968295311282986],[-87.80270116813134,41.968295863753966],[-87.80254226738558,41.96829705097206],[-87.80254225120214,41.96829705144608],[-87.80252817070247,41.968409415565354],[-87.80252913268468,41.968475144135894],[-87.8025289287907,41.96847755754983],[-87.80252732462131,41.9685911058479],[-87.802526273589,41.96866251907186],[-87.80252547696051,41.96871661997176],[-87.80252546875003,41.96871716603171],[-87.80252513878106,41.96873937230521],[-87.80252496741262,41.96875089006263],[-87.80252463697751,41.96877310813393],[-87.80252341706834,41.96877313048453],[-87.80239683437553,41.968775461971184],[-87.80228415747291,41.968776094212835],[-87.80194643124544,41.968777988390485],[-87.80188759419725,41.96877831976829],[-87.80144910522762,41.9687807896193],[-87.8013344235007,41.96878155488831],[-87.80120639761317,41.968782409124216],[-87.80075415471903,41.96878497722234],[-87.80070959759632,41.968785227699094],[-87.80069531729684,41.96878530798732],[-87.80024417786441,41.96878787919586],[-87.80012328339649,41.968788656941555],[-87.80012225850726,41.968788663707144],[-87.80000139713572,41.96878944092935],[-87.79958766928496,41.96879264053449],[-87.79954922067994,41.968792937620734],[-87.79949016097588,41.96879337650293],[-87.79903504321508,41.968796857491846],[-87.79891222295136,41.96879667001428],[-87.79878933650286,41.96879648209715],[-87.79833703356113,41.968797503909805],[-87.79827819759942,41.96879761363145],[-87.79782140866327,41.96879861277962],[-87.79770150550851,41.96880127951792],[-87.79769987032574,41.96880131579619],[-87.79769986223394,41.96880131603287],[-87.79757866887493,41.9688040109259],[-87.79742522299765,41.96880533012559],[-87.79712354696342,41.96880792339069],[-87.7971235236745,41.96880907804564],[-87.79706478131298,41.96880841728269],[-87.79660973253307,41.96881232805197],[-87.79648891221154,41.96881337454244],[-87.79640363709686,41.96881411322711],[-87.79636694672601,41.96881443091716],[-87.79631094091023,41.96881491126155],[-87.79625924875134,41.96881535440461],[-87.79619698610888,41.96881588857245],[-87.79616253239075,41.96881618400566],[-87.7961081681887,41.968816650252926],[-87.7960855856677,41.96881684369557],[-87.79599965197167,41.96881758091914],[-87.79599038184176,41.968817660196976],[-87.79591145774698,41.96881833685951],[-87.79589236442217,41.96881849720186],[-87.79588316454445,41.96881857433012],[-87.79585269171638,41.96881883012924],[-87.79580754321665,41.96881921726145],[-87.79577683903041,41.96881948046424],[-87.79577590275055,41.96881948842919],[-87.79570810810556,41.96882006969934],[-87.79567242427625,41.96882037541574],[-87.79561023223354,41.96882090877269],[-87.7955824468435,41.96882114690115],[-87.7955122390505,41.96882174858515],[-87.79548171101396,41.968822010064414],[-87.79541668254919,41.96882256734932],[-87.79539720232818,41.96882273402914],[-87.79536522792394,41.96882301065392],[-87.79533606971805,41.96882326287138],[-87.79531883052442,41.9688234120488],[-87.79527872489004,41.96882375893982],[-87.79527806441858,41.96882376462586],[-87.79515441610079,41.96882483432788],[-87.79490772089665,41.96882694733884],[-87.79469892628842,41.968828735455105],[-87.7946401602454,41.96882922810403],[-87.79418481820895,41.9688331278847],[-87.79406495539642,41.9688340821942],[-87.79406419931469,41.96883408824742],[-87.79394203295034,41.968835060971195],[-87.79348823346038,41.96883912988876],[-87.79342946730924,41.968839676801586],[-87.79297581485699,41.96884374438494],[-87.79285444563334,41.96884550509614],[-87.79285348172408,41.96884551894445],[-87.79285345413929,41.96884551963786],[-87.79273301682692,41.96884726649614],[-87.79227811337424,41.96885132543141],[-87.79221934720803,41.968851871724674],[-87.7917645172523,41.96885592897106],[-87.79164428879955,41.968857019806116],[-87.7916437283526,41.968857024845526],[-87.79152173029777,41.96885813135165],[-87.79109323478663,41.968861978992294],[-87.79106506202919,41.968862232035086],[-87.79100629594924,41.96886272254913],[-87.79054962836946,41.96886682145974],[-87.79030698817134,41.96886896708079],[-87.78985245258389,41.96887301814357],[-87.7897936863901,41.96887356319492],[-87.78972115228679,41.96887420959812],[-87.78933922429981,41.968877612573465],[-87.78921970871379,41.968878667749],[-87.78909651124395,41.968879755016246],[-87.78863962177445,41.96888384527658],[-87.78858085603453,41.968884334824985],[-87.78831230693537,41.9688867391242],[-87.7881241136052,41.96888842345682],[-87.78800940765207,41.96888824007198],[-87.78800940864699,41.968888166531876],[-87.78800941001431,41.96888809244472],[-87.78800992879185,41.96885473053075],[-87.78801039959399,41.968829925384036],[-87.78801218273362,41.96870691064837],[-87.7880144936474,41.96857875247433],[-87.78801462634279,41.968571385723976],[-87.78801351616764,41.968411260184325],[-87.78801351162018,41.96841062926882],[-87.78801351163656,41.96841062734795],[-87.7880134969285,41.96841062727808],[-87.78776385340444,41.96841070189811],[-87.78754937645009,41.96841357897666],[-87.78744548418975,41.968415448064036],[-87.787320180162,41.96841770259657],[-87.78713850006244,41.96842098241256],[-87.78695752589418,41.96842457128005],[-87.78692533565683,41.96842520978144],[-87.78677238900595,41.96842701574165],[-87.78677237466322,41.96842701594778],[-87.78677237180605,41.96842700605503],[-87.78676050515608,41.968387911251156],[-87.78675922477494,41.96838369471392],[-87.78675177375776,41.96832622292352],[-87.78675177342994,41.968326218256806],[-87.78675224743452,41.96821914966792],[-87.786752247465,41.96821914610059],[-87.78675284943486,41.96811001227751],[-87.78675381628716,41.96794958980239],[-87.78675381630357,41.96794958788151],[-87.78675451643933,41.96786342520746],[-87.78675517673985,41.96777753456813],[-87.78675666028452,41.967629793070174],[-87.7867465001692,41.96748696342907],[-87.78673624224902,41.96734276148707],[-87.78673637126366,41.9672932568173],[-87.7867371090186,41.96711236141745],[-87.7867376030108,41.96706313290446],[-87.78673793695096,41.96702987466085],[-87.78673859220325,41.96696462017545],[-87.78673859221968,41.966964618254586],[-87.78673979537643,41.96685397932633],[-87.78673979539283,41.966853977405464],[-87.78674016968448,41.96678007978614],[-87.7867401704826,41.966779943402656],[-87.78674085379906,41.96665703235466],[-87.7867417483934,41.96653856930374],[-87.78674280555954,41.9663985918614],[-87.78674400923788,41.96631800038907],[-87.78674648181587,41.96612767724808],[-87.7867464818487,41.96612767340634],[-87.78674776514583,41.96602916233593],[-87.78674946377292,41.965869155741885],[-87.78675087869054,41.96573373565162],[-87.78675233036769,41.965598315733175],[-87.78675285694064,41.96553671069444],[-87.7867536669733,41.96545054631219],[-87.78675496633161,41.96530283159429],[-87.78675605529001,41.96517973144879],[-87.78675658138255,41.96511818128752],[-87.786757885947,41.96498276065414],[-87.7867588745706,41.96488430304535],[-87.78675934407431,41.96483367457422],[-87.78676021066191,41.96473658821334],[-87.78676160735841,41.96464661215763],[-87.78676249738719,41.9645892856932],[-87.78676364743653,41.96451517412199],[-87.78676491741065,41.9643579406665],[-87.78676491744349,41.96435793682476],[-87.78676509306125,41.96433313053346],[-87.78676596506483,41.964157971082884],[-87.78676601995535,41.96414935479275],[-87.78676724869425,41.96396906590703],[-87.78676801138216,41.96386262127329],[-87.78676801142204,41.963862616608324],[-87.78676873182668,41.96374391035654],[-87.78676873184311,41.96374390843567],[-87.78676873536874,41.96361869196675],[-87.78676906703579,41.96354981381617],[-87.78677852588943,41.96347129177225],[-87.78679511190421,41.96345602290004],[-87.78680435698436,41.96344751265196],[-87.78680800585477,41.963445412313334],[-87.78680993652239,41.9634443010421],[-87.78683167764568,41.96343013490568],[-87.78685345542534,41.96341602382382],[-87.78704783364194,41.9633036431091],[-87.78702292848114,41.963265018359586],[-87.78700518078209,41.963237493427144],[-87.7869968244451,41.96322052598696],[-87.7869778576378,41.963182012635706],[-87.78696275044396,41.96314272621828],[-87.78695495865529,41.96310366643404],[-87.78693911258334,41.963008805642566],[-87.78692901150521,41.96293444456507],[-87.7869160092969,41.96288131290283],[-87.78691600822437,41.96288130933026],[-87.78689042637394,41.96269095874666],[-87.78689042602268,41.962690956824034],[-87.78688154890003,41.96250348703227],[-87.78687642768432,41.962358403288974],[-87.78686912246563,41.96212898002942],[-87.78686646139062,41.96204405866715],[-87.78686646140936,41.96204405647187],[-87.78686296840787,41.96193265690123],[-87.7868566623923,41.96177993886505],[-87.7868479472763,41.961530503555274],[-87.78684311319105,41.96137334688848],[-87.78683540463359,41.961148120040214],[-87.78682785250282,41.96096057170552],[-87.7868278525169,41.960960570059065],[-87.78682034883767,41.960711334220164],[-87.78682034590682,41.96071103179388],[-87.78682034209487,41.9607105743153],[-87.78682033653801,41.96070993378937],[-87.78682000385044,41.96067318169569],[-87.78681944136291,41.96061100089775],[-87.78680971958556,41.96033741193532],[-87.78680971923431,41.960337410012706],[-87.786805404176,41.960217030444994],[-87.78680540388572,41.96021702138772],[-87.78680541712363,41.960217021176305],[-87.78698085157505,41.96021476399153],[-87.78717356002632,41.96020895757094],[-87.78729021511444,41.96020545129448],[-87.78735803499026,41.96020291957748],[-87.78756153181246,41.9601952705763],[-87.7876629340802,41.96019103252592],[-87.78786799911292,41.96018487203604],[-87.78801702943032,41.9601812584082],[-87.7881471914489,41.96017810245994],[-87.78826170295854,41.96017584241586],[-87.7883027422792,41.96017497194558],[-87.78849435789857,41.960172259355794],[-87.78865501840363,41.96016923439021],[-87.78883513389205,41.960165587974295],[-87.78895457365917,41.960163190898776],[-87.78909813792322,41.96016002963783],[-87.78924673763217,41.96015718733826],[-87.78947300170566,41.96015285988413],[-87.78958920116034,41.96015111117273],[-87.78964222437395,41.960150313719566],[-87.78987392868129,41.96014608670392],[-87.79007286819468,41.960142500008025],[-87.79028735956483,41.96013893219356],[-87.79046560707663,41.96013542092477],[-87.7907052861707,41.960130699757094],[-87.79097761849293,41.960130724241274],[-87.79127139866421,41.96012920254339],[-87.7915114388088,41.96012616469822],[-87.79168950021466,41.9601218680008],[-87.79180063325194,41.960119186734424],[-87.79191731400458,41.9601151196244],[-87.79197955704318,41.960112950476685],[-87.7922586568749,41.960103947650914],[-87.79252278186658,41.96009624626376],[-87.79277226813302,41.9600891885665],[-87.79305273949302,41.96008323634542],[-87.79327591905437,41.96007838660954],[-87.79350983567316,41.960073312229476],[-87.7940330882305,41.960061334580594],[-87.7941971413335,41.960057579052055],[-87.79432793029505,41.96003031193926],[-87.79444277497869,41.95998845321893],[-87.79459614006393,41.959926083494665],[-87.79463338366257,41.95990911048068],[-87.79472690669166,41.95986648842598],[-87.79484784611057,41.95980811055179],[-87.79491595386968,41.9597756640551],[-87.79514587143599,41.959665526460626],[-87.79527517874523,41.959603584205304],[-87.79568678095686,41.959406721828145],[-87.7958984416014,41.95930661568717],[-87.79610619721515,41.95920731469394],[-87.79627397821554,41.95912659621507],[-87.79650927149011,41.95901400436499],[-87.79666925888306,41.9589374472375],[-87.79691367082914,41.95882031406373],[-87.79725345913428,41.958658510576235],[-87.79744950675558,41.958565052255594],[-87.7974670055321,41.958556495965325],[-87.79770937946162,41.9584382772138],[-87.79770938167668,41.958438276126444],[-87.79800251980795,41.95829529624112],[-87.79822461329321,41.958195261871566],[-87.79839339079871,41.9581134475078],[-87.7986069082369,41.9580101073671],[-87.7987452451874,41.957945603637796],[-87.79890825573172,41.95786722760353],[-87.79900312552337,41.95782161300115],[-87.79930736192023,41.95767615838175],[-87.7996211539869,41.957526575889965],[-87.79972292072758,41.95747809183976],[-87.7999260783236,41.95738205530288],[-87.79999222938055,41.95735102367659],[-87.80012833147464,41.957284051266065],[-87.80023589847684,41.95723223340344],[-87.8004164345172,41.95714610734047],[-87.80064314734507,41.9570379670998],[-87.80095505475794,41.956888701500034],[-87.80130102855354,41.956723485190516],[-87.80145657337063,41.956649205628366],[-87.80170617586688,41.95652906731875],[-87.80230641059072,41.95623983305375],[-87.80286885710896,41.955971331698294],[-87.80310006062273,41.955861533625026],[-87.80335965589971,41.955737074541936],[-87.80361386056558,41.95561536193014],[-87.80373847303375,41.95555583873018],[-87.80504389859526,41.9549322740876],[-87.80527975829243,41.954818623400364],[-87.80561903032165,41.954656408428],[-87.80591182423404,41.95451730506736],[-87.80616269452385,41.95439743670238],[-87.80653215360684,41.954220731212594],[-87.8066948407274,41.95414377971298],[-87.80680877198654,41.954090030412466],[-87.80700565709725,41.9539986179461],[-87.80729059984685,41.95386575382491],[-87.80729060981093,41.953865749205384],[-87.80730024858194,41.95358205082994],[-87.80729154397267,41.95344249489855],[-87.80729154398621,41.95344249325209],[-87.80728712532469,41.95325106570853],[-87.8072817338964,41.953061744554134],[-87.8072784285228,41.95295404655547],[-87.80727540751032,41.95291012494478],[-87.80726923353244,41.95276460779923],[-87.8072692522807,41.952764607885136],[-87.8075738073204,41.952767420607714],[-87.80783262904525,41.95276045439158],[-87.80793978729304,41.95275757024652],[-87.80803603819169,41.952754936589535],[-87.80827146121308,41.95274849486796],[-87.808349768921,41.95274667185662],[-87.80847417297065,41.95274377468643],[-87.80860758374337,41.95274066827262],[-87.80867931076378,41.952738997999845],[-87.80883151881706,41.95273515258434],[-87.8089166262283,41.95273300212911],[-87.80917277422819,41.9527257745223],[-87.8095819298253,41.952712712925646],[-87.80971949342059,41.95270832093453],[-87.81003674051263,41.952699416699126],[-87.81030412813286,41.95269191150829],[-87.81044893994492,41.9526903754633],[-87.81044894876763,41.95269037550347],[-87.81072833787842,41.952682235183104],[-87.81083349070218,41.95268193304384],[-87.81097616105107,41.95268152324349],[-87.81105737127437,41.95268128951634],[-87.81117973344732,41.95267801185143],[-87.8112990649698,41.952674815226125],[-87.8113752009646,41.95267303378867],[-87.81146897756365,41.95267083989827],[-87.81158971168327,41.95266798798274],[-87.81166871068875,41.95266612221574],[-87.81185609200243,41.952661347809766],[-87.81200699672067,41.95265755977172],[-87.81222540021007,41.952651511799736],[-87.81235437163967,41.952647940434936],[-87.81244464286505,41.95264678362117],[-87.81255052071121,41.95264542722311],[-87.81282673298472,41.95263910573758],[-87.81303845515865,41.95263386401273],[-87.81303845846716,41.952633864027725],[-87.8130500988527,41.95263356359713],[-87.81343280214467,41.95262369960692],[-87.81352901792522,41.95262121925212],[-87.8137013133071,41.95261677775577],[-87.81380600485019,41.95261382455578],[-87.81388741186714,41.952611527985496],[-87.81416855888793,41.95260407302563],[-87.81448514940494,41.95259611894347],[-87.81454982966365,41.95259510387707],[-87.81463410835033,41.95259378105289],[-87.81464981422553,41.952593534776426],[-87.81474855016671,41.95259198519572],[-87.8147781489411,41.95259124649716],[-87.81498612167483,41.95258605998581],[-87.81519752805379,41.95258104858144],[-87.8152574445614,41.95257962852491],[-87.81539535297989,41.95257570082373],[-87.81558849445939,41.95257019960822],[-87.81561797456361,41.952569267788206],[-87.81563865144774,41.95256861487045],[-87.81584930448771,41.952563008587376],[-87.81589850838472,41.95256172048108],[-87.81599822666645,41.95255906476499],[-87.81611538077479,41.95255594442962],[-87.81638806851382,41.95254968329342],[-87.81654102367379,41.9525461710281],[-87.8166224785003,41.95254439605593],[-87.81672685403218,41.952542122354814],[-87.81689286978485,41.952538064659066],[-87.81706654871167,41.9525338199979],[-87.81715902001847,41.95253155960768],[-87.81720478850538,41.95253044128004],[-87.81742342462624,41.952524700598026],[-87.81750749753763,41.95252298286514],[-87.8176271227524,41.95252053865988],[-87.81771151363009,41.9525188233035],[-87.81774654709702,41.952518111539746],[-87.81795246788445,41.952511845682466],[-87.81815442151056,41.95250517828716],[-87.81830320832022,41.95250121110866],[-87.81856227920903,41.952494302223535],[-87.81866788931772,41.95249204464187],[-87.81880105584385,41.952489197787344],[-87.81892863693363,41.95248736828229],[-87.81900518536413,41.95248627051019],[-87.81931157581805,41.95248484382329],[-87.81952406304927,41.95248034136138],[-87.81966931595123,41.95247726328717],[-87.81978633445465,41.95247478376456],[-87.82001497512377,41.952468396841155],[-87.8202630355724,41.95246086134822],[-87.82055189870464,41.952453781984275],[-87.82065953904457,41.95245102340844],[-87.82075189075108,41.95244865640728],[-87.82080617955023,41.95244726486026],[-87.82086010542626,41.952445882644504],[-87.8210109453632,41.95244087557317],[-87.82101094830409,41.95244087558629],[-87.8211798621239,41.95243715612421],[-87.82133267153581,41.952434105262384],[-87.82152326760944,41.95242710686903],[-87.82170883592211,41.95241901523467],[-87.8219782969232,41.95241083375193],[-87.82213365653598,41.952406115915146],[-87.82228528955154,41.95240300393731],[-87.82236290255915,41.95240138863526],[-87.82250685715566,41.952398391751686],[-87.82264181216898,41.952394672169845],[-87.82271089709496,41.952392768151476],[-87.82275827986373,41.95239143634921],[-87.82298233863241,41.952385138670984],[-87.82330462475572,41.95237724046696],[-87.82351938807942,41.95237209006612],[-87.82369563164846,41.95236786295422],[-87.82410311734431,41.95235726714233],[-87.82442676549694,41.95234915229134],[-87.82442694236181,41.95234914758686],[-87.82442783072331,41.952349124905595],[-87.82471658573931,41.95234179226781],[-87.82509097817554,41.952332089144925],[-87.82512326232184,41.952331244134655],[-87.8252500742532,41.95232806886223],[-87.82544738777136,41.95232312824441],[-87.82560809835263,41.952319115430726],[-87.82572187383006,41.95231627413514],[-87.8260789811432,41.952307342075024],[-87.82640203683803,41.95229979532346],[-87.8266933957112,41.95229301393752],[-87.8269893204172,41.95228525716876],[-87.82722751717918,41.952279013829376],[-87.82738959371784,41.95227550179549],[-87.82772831753263,41.95226689549962],[-87.82772832047353,41.95226689551257],[-87.82776740627502,41.95226582559659],[-87.82790448400743,41.95226207267675],[-87.82811929268031,41.952256718755685],[-87.82830968554045,41.952251973278855],[-87.82847114113703,41.95224793613369],[-87.82858890956737,41.952244992925245],[-87.82869712743593,41.95224228862669],[-87.8289392568123,41.95223608015094],[-87.82908276868457,41.95223240595619],[-87.82916524448372,41.95223029479184],[-87.8293501570063,41.95222583115072],[-87.82935016068242,41.95222583116686],[-87.82963467885669,41.95221896316568],[-87.82982970692325,41.95221383676791],[-87.83005709209334,41.95220791774748],[-87.8302610282741,41.95220261451823],[-87.83034698600365,41.95220037917845],[-87.83057323234536,41.95219434574978],[-87.83081455474651,41.952187909972764],[-87.8310405766362,41.95218231261809],[-87.83113806645363,41.95217991720437],[-87.83121879821508,41.9521779335982],[-87.83141257396886,41.95217312751752],[-87.83157590308114,41.95216912136366],[-87.83179302675077,41.95216382172761],[-87.83179302932405,41.95216382173884],[-87.83179303152973,41.95216382174848],[-87.83179009653968,41.95230781707861],[-87.83179142062376,41.952368744542554],[-87.83179648236371,41.95252491248398],[-87.83179957158346,41.95266699395761],[-87.83180015716661,41.952693917035965],[-87.83180277160655,41.95283874202306],[-87.83180438413002,41.95300820407442],[-87.83180568293321,41.95318954776928],[-87.8318072067195,41.95332165373697],[-87.83180721503544,41.95332237495413],[-87.83180907099091,41.95347954450114],[-87.83181526639643,41.953781957351865],[-87.83182390903886,41.95397845347372],[-87.83182665556023,41.95404078668472],[-87.83182482404376,41.95409621190809],[-87.83182189813233,41.95421620382198],[-87.83182078510552,41.95434879961681],[-87.83182085710799,41.95443340419807],[-87.8318218954933,41.95455418152832],[-87.83182314367615,41.95463881923531],[-87.83182314365249,41.954638822253855],[-87.83182503396972,41.95473534111504],[-87.8318257618465,41.9548264633306],[-87.83182599883484,41.95485611839222],[-87.8318273009284,41.95495263824781],[-87.83182730091335,41.95495264016869],[-87.83182730089828,41.95495264208958],[-87.83183157143273,41.955073814424736],[-87.83183386226212,41.955170832280366],[-87.83183229668346,41.95523866307078],[-87.83183191381767,41.95525523620329],[-87.8318285963973,41.95532668088548],[-87.83182859638224,41.95532668280637],[-87.83182859636717,41.955326684727254],[-87.83182497066178,41.95539993595289],[-87.8318224890946,41.955472618908026],[-87.83182046300405,41.955557544437454],[-87.83181927028356,41.955629958598585],[-87.83181869541879,41.955665768409915],[-87.83182117690636,41.95570090524272],[-87.83182721418572,41.9557374571587],[-87.83184249196042,41.95579575373275],[-87.83184249267846,41.95579575593126],[-87.8318561851482,41.955849931720934],[-87.83186599149728,41.955888695471174],[-87.83187151763563,41.955924751466284],[-87.83187585212748,41.955953365150705],[-87.83188686521427,41.95600234046503],[-87.83188686556686,41.95600234238751],[-87.83190094931133,41.95606294107473],[-87.83192049508526,41.95614897589612],[-87.83193878982209,41.9562351965215],[-87.83194389942477,41.956258736783674],[-87.83195889814958,41.9563366694676],[-87.83196664974672,41.95637694727398],[-87.83197464252271,41.956450060974014],[-87.83199274063523,41.95655669798282],[-87.83200139302285,41.95660541901181],[-87.83200203631222,41.95660904336502],[-87.83201252857297,41.956668254240896],[-87.83202105296064,41.95671576670392],[-87.83203001975345,41.95676317132894],[-87.83204196934655,41.95682403482003],[-87.8320563593224,41.95689466987209],[-87.83205669707544,41.95689632693328],[-87.83206165863929,41.95692000402658],[-87.8320749492037,41.956978651099995],[-87.83208383208624,41.957017959636055],[-87.83209491996878,41.957066910001465],[-87.83211838155192,41.957160013686156],[-87.83213393739352,41.95722048182324],[-87.8321537955249,41.95729493488443],[-87.83215379587749,41.957294936806925],[-87.83217073505723,41.957357167549915],[-87.83218706374834,41.95742219445234],[-87.83219864703929,41.95746884127547],[-87.83220544205703,41.95749614873008],[-87.83221550597854,41.957536585615784],[-87.83221550633112,41.95753658753827],[-87.83223955491216,41.957629941281496],[-87.83224626861445,41.95765557166127],[-87.83224819808036,41.957662938426665],[-87.8322481984308,41.95766294062357],[-87.8322795369315,41.95778258421568],[-87.83230441478118,41.95787330683769],[-87.83234225963822,41.95801715974577],[-87.83237752490433,41.95815710377082],[-87.83237752525693,41.95815710569332],[-87.83237752560954,41.958157107615804],[-87.83240911316754,41.95828303623206],[-87.83242774999027,41.958358831314676],[-87.83243309287252,41.958380560832516],[-87.83246240127502,41.958501872768835],[-87.83248772168834,41.95860662076812],[-87.83250695737067,41.95868554603021],[-87.8325337023334,41.95879619974762],[-87.83255789698967,41.95889449335761],[-87.83256697053703,41.95892990012487],[-87.83257006259805,41.958941966485725],[-87.83257044930788,41.95894347831488],[-87.83257687632081,41.958968614832436],[-87.83260405235814,41.95907589502199],[-87.83262249676667,41.959166698990984],[-87.83263877238407,41.95927154470939],[-87.83267784222684,41.959438150723976],[-87.83272851927516,41.95943731984509],[-87.8329725227025,41.959433316322865],[-87.83385274174752,41.95941088751022],[-87.83422641378556,41.959404404509826],[-87.83437291138044,41.95940187088774],[-87.8344737715906,41.95940063493487],[-87.83460091526307,41.95939847960003],[-87.83477529691015,41.95939552350916],[-87.83487579608276,41.959393434928124],[-87.83511260762954,41.9593889195108],[-87.83541303182353,41.95938355465207],[-87.83556423682872,41.95938088981662],[-87.83556423977207,41.95938088955497],[-87.83559205508236,41.95938042041599],[-87.83578181206957,41.9593772221007],[-87.8359414390131,41.959374480204715],[-87.8359833937281,41.95937375993479],[-87.83615595812654,41.959370440968044],[-87.83641895772132,41.959365382586775],[-87.83647927897748,41.95936416150029],[-87.83651949314358,41.95936334788238],[-87.8366988644817,41.95936021260319],[-87.8366988644668,41.959360214524075],[-87.83669874789945,41.959761936868624],[-87.83669874755212,41.959763544154725],[-87.8366998586,41.959884624065914],[-87.836700779168,41.95998487372495],[-87.83670056796791,41.960021590426585],[-87.83670051401896,41.96008531089712],[-87.83670158967894,41.96017572018946],[-87.8367017154465,41.96018627608707],[-87.83670198681153,41.96026023361526],[-87.8367012789962,41.960370328508866],[-87.8367011345251,41.960388933944216],[-87.83670009259683,41.96048997147677],[-87.83669887455908,41.96061842296455],[-87.83669816481277,41.96075428575706],[-87.83669735991323,41.96090817818244],[-87.8366989402851,41.96100494552364],[-87.83669985177102,41.961060767366654],[-87.83669679769041,41.96112078058446],[-87.83669649137738,41.96112679897129],[-87.83669581668646,41.96114005747581],[-87.83669570191232,41.96118002730622],[-87.83669557886438,41.961222767111984],[-87.83669552872261,41.96131445141879],[-87.83669533441117,41.96135571480164],[-87.83669529552245,41.96136398981597],[-87.8366946234281,41.961506789582124],[-87.83669466849258,41.961598618093156],[-87.83669477185705,41.96180964185748],[-87.83669383714435,41.96188266138875],[-87.83669318442834,41.96202826608843],[-87.83669339681396,41.962157163078466],[-87.8366938265583,41.96225807000976],[-87.8366939625971,41.962349450772024],[-87.83669396258217,41.9623494526929],[-87.83669386611221,41.96254179459493],[-87.83669360050341,41.9626612219636],[-87.83669315404889,41.962799249111576],[-87.83669315403185,41.962799251306876],[-87.8366931540148,41.96279925350217],[-87.83669256783803,41.9629551772637],[-87.83669340530693,41.96304903358684],[-87.83669410165854,41.96312697202835],[-87.83669329075059,41.96320298354706],[-87.83669376003431,41.96320424709269],[-87.83668797739628,41.96488296646006],[-87.83668794626811,41.9648920403436],[-87.83668730767751,41.96507728547364],[-87.83668699593824,41.96516779845465],[-87.83668207260322,41.96659715541229],[-87.83678007744639,41.9665952138269],[-87.83717502183063,41.96658835253109],[-87.83741086251156,41.96658437705308],[-87.83752380674088,41.9665815501412],[-87.83759787757204,41.966579696587154],[-87.83771278797745,41.9665771932894],[-87.83793449579191,41.966572362919706],[-87.83813055209362,41.966568090793665],[-87.83825599976429,41.96656535743266],[-87.83836487700556,41.96656334914022],[-87.83841802258306,41.96656236888143],[-87.8385140558362,41.96656059733672],[-87.83863961625826,41.96655887555948],[-87.83869068395828,41.966558175461095],[-87.8388768744555,41.9665554920857],[-87.83893595542102,41.96655443149772],[-87.83915798858484,41.966550445109306],[-87.83939587206935,41.96654617330593],[-87.83947477440516,41.96654475644794],[-87.8395425844036,41.9665441150913],[-87.83979368236909,41.96654047558407],[-87.83995990420789,41.966538066020185],[-87.84007118457218,41.96653645309628],[-87.84010559615332,41.9665359560493],[-87.84012973030576,41.96653560693598],[-87.84039686177759,41.96653171501226],[-87.84051814491706,41.9665299481172],[-87.84064963592687,41.96652684703126],[-87.84069085151566,41.96652587516997],[-87.84085221339744,41.96652206998064],[-87.8409858050948,41.966518919343514],[-87.841185245708,41.96651456019192],[-87.84124308917478,41.96651351177228],[-87.8413150273113,41.966512207870004],[-87.84137411294193,41.966511152084415],[-87.8414314590806,41.96651012750878],[-87.8416225159564,41.966505765978674],[-87.8417197916648,41.96650354510149],[-87.8417285604218,41.96650334472661],[-87.84196994886908,41.966497834254525],[-87.84220457514651,41.96649395349873],[-87.84245174292377,41.96648971425614],[-87.84254474847059,41.96648810833504],[-87.8427122039946,41.96648552058811],[-87.84280027928907,41.966484159304905],[-87.8428929268095,41.96648272747608],[-87.8430371648119,41.966480497804866],[-87.8431430077425,41.966478260443125],[-87.84330773023972,41.96647473755357],[-87.84334530569126,41.96647397642292],[-87.84336388801974,41.9664736001904],[-87.84343133571069,41.966472191824565],[-87.84351203089811,41.966470714804124],[-87.8436550793573,41.96646809673793],[-87.84381387454725,41.96646551298038],[-87.8440479488626,41.96646170376462],[-87.8442831256771,41.96645787571657],[-87.84447706958662,41.96645416799575],[-87.84458479886727,41.966452108575766],[-87.84492009180973,41.96644483632182],[-87.84526074948339,41.96643804856996],[-87.84557386175139,41.96643180852903],[-87.84568195811532,41.96642958032097],[-87.84582331573705,41.96642666642373],[-87.84598027344194,41.96642343905099],[-87.84609104741527,41.96642116200026],[-87.8464903940211,41.96640939303235],[-87.84657035225543,41.96640703670482],[-87.84657035446159,41.96640703671417],[-87.84656171526937,41.96671047060355],[-87.84656050710178,41.96675291325165],[-87.84655501160181,41.966945943454036],[-87.84654972102857,41.96736292702751],[-87.84654706891777,41.96757194826981],[-87.84654581035488,41.967671142398466],[-87.84654207930899,41.96796517504937],[-87.84653912529119,41.9681979521896],[-87.84654445865996,41.968456933273366],[-87.8465497950455,41.968716053764076],[-87.84655304497012,41.96887384714709],[-87.84655587710593,41.96912684948139],[-87.84656061044448,41.969549715631175],[-87.84654591373419,41.97022786091688],[-87.8465407681982,41.97090367507199],[-87.84653991646977,41.97119467122192],[-87.84653878303062,41.97158187409557],[-87.84653878301391,41.97158187629087],[-87.84653878299719,41.97158187848618],[-87.84653779640098,41.97163982875225],[-87.84653354077653,41.97188987887578],[-87.84653353342831,41.97188987802136],[-87.8465334529717,41.97188986780104],[-87.84651078911926,41.97188699839837],[-87.84637724919706,41.97188939607271],[-87.84631472545979,41.97189050268483],[-87.84588537065797,41.97189817573252],[-87.84587477844633,41.9718984051796],[-87.84566433053163,41.97190212169986],[-87.8454431428689,41.97190612204764],[-87.84539525671728,41.97190696078446],[-87.84530616886086,41.97190852995189],[-87.845222029574,41.97191001141929],[-87.84519290107131,41.971910546181036],[-87.84502842666532,41.97191346881238],[-87.84500091583283,41.97191395579617],[-87.84486395145528,41.9719164466377],[-87.84477980164691,41.97191795490387],[-87.84469947738916,41.97191936907359],[-87.84455868749342,41.97192189815274],[-87.84453507611985,41.971922291583745],[-87.8443705276956,41.97192526811593],[-87.84433757368232,41.97192584125156],[-87.84420612640055,41.971928190154856],[-87.84404165186096,41.971931166804815],[-87.84395823789453,41.97193262217178],[-87.84387717736703,41.971934087511805],[-87.84371270285403,41.971937008806314],[-87.84354830145493,41.97193998478688],[-87.84338375337323,41.97194290502179],[-87.843316374729,41.971944099324226],[-87.84321935273239,41.97194582619909],[-87.84305487738368,41.971948800882856],[-87.84289047635573,41.971951720764224],[-87.84272592743595,41.97195469466237],[-87.8426754674532,41.971955576972945],[-87.84256152674581,41.9719576146229],[-87.84239705249992,41.97196053375903],[-87.84223257745195,41.97196350754028],[-87.84206810244491,41.97196642620181],[-87.84203463394819,41.97196699647475],[-87.84190370060247,41.97196934494086],[-87.8417797083921,41.97197158494369],[-87.84177969257779,41.9719715851504],[-87.84177913721533,41.97197159539589],[-87.84173915270597,41.97197231770327],[-87.84157511893103,41.97197523754781],[-87.84157514813036,41.971972015146015],[-87.84157514820845,41.971972004992764],[-87.84157613010804,41.97186294876793],[-87.84157726544504,41.97173446967272],[-87.84157840077499,41.97160599057458],[-87.84157959525197,41.97146977305151],[-87.84157988825473,41.97144128939482],[-87.84158086357874,41.97133361072574],[-87.8415819423207,41.971212485862445],[-87.84158236829215,41.97116671424294],[-87.84158302063634,41.971091415604555],[-87.84158409936362,41.970970291010474],[-87.84158435152023,41.970947021452425],[-87.84158517808461,41.97084916641382],[-87.84158625596355,41.970728150481776],[-87.84158626186904,41.9707273826767],[-87.8415874082134,41.97060702646937],[-87.84158824573885,41.970507744481885],[-87.84158841416401,41.97048584639468],[-87.8415895651933,41.97036483159155],[-87.84159072535259,41.97023311439922],[-87.84158907473484,41.97014335815816],[-87.84158247788142,41.97014362298346],[-87.84158247493968,41.97014362297086],[-87.84134394445722,41.97014695909351],[-87.84122953123773,41.97014869153712],[-87.84104916223181,41.97015332243143],[-87.84082473077218,41.97015908536248],[-87.84068265753493,41.97016171368118],[-87.8405324831345,41.97016578919874],[-87.84035985711435,41.97016772093257],[-87.84018156759598,41.970169716168236],[-87.83991765043024,41.97017439992034],[-87.83974314052641,41.97017756713006],[-87.83971471049702,41.97017808264972],[-87.83957538699052,41.970181764770025],[-87.83936193509055,41.97018474305409],[-87.8392739738368,41.97018485878161],[-87.83912657067081,41.970187150494596],[-87.8389671053238,41.97018962992154],[-87.8388787566729,41.9701922406362],[-87.83873737914506,41.97019528144977],[-87.83863124304874,41.970196525562166],[-87.83844187476296,41.97019981858727],[-87.83826957167221,41.970202814970385],[-87.83813684013903,41.97020523344222],[-87.83806810048875,41.970206610890706],[-87.83789454361684,41.97021010294397],[-87.83772892977768,41.97021343473445],[-87.83756019314917,41.970216438588345],[-87.83741113474449,41.97021886831469],[-87.8373029704179,41.970220842825896],[-87.83725291565578,41.97022175222192],[-87.83707708549974,41.97022428509108],[-87.8369275129587,41.970226575030864],[-87.83674075218501,41.97023056175386],[-87.83670313955695,41.97023136501529],[-87.83670155586003,41.97023139877875],[-87.83665028724734,41.97023249310929],[-87.83664890934323,41.97136622097615],[-87.83664890925581,41.97136623222703],[-87.83664960240904,41.97136623550029],[-87.83683830685554,41.971367149714986],[-87.83795130235903,41.97134671095667],[-87.83795117385182,41.97136329586482],[-87.8379511738178,41.97136330025541],[-87.83795105996471,41.97137799391651],[-87.83794998577049,41.97151662682067],[-87.83794915481698,41.971623866998385],[-87.83794891156874,41.971655259721466],[-87.83794802404957,41.97176979925333],[-87.83794783693416,41.97179394750125],[-87.83794676271731,41.97193258039527],[-87.83794568806763,41.972071268168285],[-87.83794461383567,41.972209901055535],[-87.83794361271637,41.972348589139145],[-87.83794321210736,41.972400288337255],[-87.83794253846948,41.97248722201963],[-87.83794146421504,41.97262585489675],[-87.83794041589532,41.97276113994577],[-87.83794038952776,41.97276454265285],[-87.8379393152582,41.972903175523186],[-87.83793824055155,41.973041863821344],[-87.83793761963211,41.97312199153138],[-87.83793716627116,41.9731804961361],[-87.83793609155369,41.973319183878665],[-87.83793501725393,41.973457816735475],[-87.83793394252133,41.973596504471274],[-87.83793286820648,41.97373513732131],[-87.83793390091792,41.97384370491576],[-87.83794433957462,41.97384354688866],[-87.83794434766692,41.973843546649164],[-87.83814697098337,41.973839572891066],[-87.83841830293923,41.973833882394],[-87.83865907005212,41.97382882766362],[-87.83899021516291,41.97382564405355],[-87.83938794505515,41.973819562432915],[-87.83959909469145,41.97381627180167],[-87.83993305081546,41.97381098479379],[-87.84036263326348,41.97380415799101],[-87.84066006761184,41.973799425256296],[-87.84102661923944,41.973797199723386],[-87.8411553738481,41.97379641809829],[-87.84135186713092,41.973795750734],[-87.84155036519255,41.97378788834434],[-87.8415582336858,41.97394084342707],[-87.84155775499495,41.97408916592324],[-87.84155680002988,41.97438539900858],[-87.84155664089698,41.97441822703368],[-87.84155597021923,41.97455574611377],[-87.84155562285768,41.97460094724733],[-87.84155500017579,41.974681984657856],[-87.84155500009345,41.974681995359916],[-87.84155493604015,41.97469032156634],[-87.84143160973355,41.97469226903666],[-87.84125057721798,41.97469538999331],[-87.84107314976312,41.97469841635414],[-87.84089579621003,41.97470144275772],[-87.84085636760189,41.974702151498],[-87.8407184418521,41.974704523768004],[-87.84054108753503,41.97470754962027],[-87.8403636600233,41.974710574884206],[-87.84024596376116,41.97471259410318],[-87.84018630598999,41.97471365507373],[-87.840008951998,41.9747166801052],[-87.83983159835958,41.97471970486417],[-87.8396542435477,41.97472278422828],[-87.83962143552692,41.974723356636076],[-87.83960713172527,41.97472359917989],[-87.8396043585013,41.97472364625372],[-87.83947688951307,41.974725808437505],[-87.83929953546428,41.97472883237265],[-87.83912218024156,41.974731910912915],[-87.83894475335157,41.97473493398634],[-87.83876739926018,41.97473795709913],[-87.83859004472988,41.97474103482019],[-87.83841269061004,41.97474405738481],[-87.83823533684382,41.97474707967694],[-87.83805798190275,41.97475015657416],[-87.83788062774035,41.97475317831653],[-87.83770319964782,41.9747561994657],[-87.83752584539921,41.97475927554373],[-87.83734849119426,41.974762296463744],[-87.83734472195812,41.97476236058473],[-87.83734329966636,41.97476238490065],[-87.83717113697519,41.97476531710967],[-87.83699378274197,41.974768337481514],[-87.8368131176029,41.97477145302815],[-87.83669297321374,41.974771076316706],[-87.83669292320093,41.97477107610035],[-87.83663074713934,41.97477088120194],[-87.83663073290909,41.97477190802351],[-87.83662837631313,41.97493955282556],[-87.83662837582698,41.974939615391435],[-87.83662828073462,41.974951853604495],[-87.83662730071559,41.9750779798069],[-87.83662718391862,41.975093011256305],[-87.83662718319127,41.975093294181114],[-87.83662700872915,41.97521021567196],[-87.83662699049408,41.97522245421698],[-87.8366268746879,41.97530305058885],[-87.83662685974033,41.9753098018274],[-87.83662678836168,41.97530980618373],[-87.83662673905836,41.97530980926346],[-87.83657934038662,41.97531269333427],[-87.836512201123,41.975316778442874],[-87.83645853768569,41.975320043416055],[-87.8364411654648,41.97532110048712],[-87.83641616173414,41.97532151942515],[-87.83634205019267,41.97532276089174],[-87.8362510843673,41.9753242844353],[-87.83622880460427,41.97532465667528],[-87.83613929825316,41.97532615187285],[-87.83607630288473,41.97532720448463],[-87.83605108870631,41.9753276345061],[-87.8360509169419,41.975327637329556],[-87.83600185976603,41.97532847365841],[-87.83596572228807,41.97532906929092],[-87.83594647914978,41.97532938657546],[-87.8359464011773,41.97532938760975],[-87.83590166958761,41.97533012518432],[-87.83582968067552,41.97533132502384],[-87.83581803083527,41.97533151904705],[-87.83576711414405,41.97533237218938],[-87.83576093833258,41.97533247577256],[-87.83572696236048,41.97533304529789],[-87.83572012120948,41.97533315752067],[-87.83570002992872,41.9753334867296],[-87.83570002220394,41.97533348697054],[-87.83563427544301,41.975334563911275],[-87.83562681376584,41.975334691550145],[-87.8356265813129,41.97533469548196],[-87.8356265787387,41.9753346954708],[-87.83560591798145,41.975335048813214],[-87.83555232830109,41.97533596546281],[-87.83549237649758,41.975336967285244],[-87.83549176042304,41.97533697778585],[-87.83537762141492,41.97533888504617],[-87.83529964682094,41.97534013872118],[-87.83520298812418,41.975341749798766],[-87.83502828084362,41.97534466884872],[-87.83496509164723,41.97534576666091],[-87.83485364673083,41.97534758795046],[-87.8346790137079,41.97535050679126],[-87.83463046293343,41.97535133869634],[-87.83450430602159,41.975353424767526],[-87.83432967260201,41.97535634334955],[-87.83429583417073,41.97535690975607],[-87.83415496488466,41.97535926134284],[-87.83398033070713,41.975362178841245],[-87.83396127854245,41.97536247988399],[-87.83380562412957,41.975365041149196],[-87.83365494126927,41.975367573623096],[-87.83362664967986,41.9753680492669],[-87.83362690596455,41.975335264494966],[-87.83362718713866,41.97529929572552],[-87.83362758077641,41.975248940106496],[-87.83362798565994,41.97519714574721],[-87.8336283568021,41.97514966760699],[-87.83362862672465,41.975115137850636],[-87.83362901788328,41.975065098900934],[-87.83362934651154,41.97502305904816],[-87.8336295038882,41.97500292656868]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5344767.82166","perimeter":"0.0","tract_cent":"1174994.6525129","census_t_1":"17031320200","tract_numa":"54","tract_comm":"32","objectid":"263","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901324.01302465","census_tra":"320200","tract_ce_3":"41.88462012","tract_crea":"","tract_ce_2":"-87.63284903","shape_len":"9196.20762669"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63377407676364,41.88753412820332],[-87.63337190654457,41.88747635369334],[-87.63279821946183,41.88747335080918],[-87.6327287876298,41.887481325431054],[-87.63249901075592,41.887480655521756],[-87.63223001053066,41.887479870829104],[-87.63170929954651,41.88746648750551],[-87.63125527051334,41.88745481577287],[-87.6310210428405,41.8874431667282],[-87.63078467461881,41.88743141080622],[-87.63006787670656,41.887421178101086],[-87.62965674584616,41.887420607985725],[-87.62953702557662,41.887420227229946],[-87.62928432996648,41.88741942304758],[-87.62898509031368,41.88742642450556],[-87.62879231002516,41.88744077432309],[-87.62823789595471,41.887448540615644],[-87.62800209575349,41.88747256459074],[-87.62799744413638,41.88737294208554],[-87.62799197425439,41.88706419389986],[-87.62798998849823,41.88695909873346],[-87.62797500424247,41.886813654204374],[-87.62796219047705,41.88669835612582],[-87.62795425063082,41.8863718525929],[-87.62795252880422,41.88630079337215],[-87.62794725419496,41.8860831155784],[-87.62794179092302,41.88583097829227],[-87.62794001090506,41.88574881907923],[-87.62792988710406,41.88528158100008],[-87.62792580614769,41.88512412654446],[-87.62792168862566,41.88496525692943],[-87.62791068087708,41.884490792161095],[-87.62790768831574,41.88436179473696],[-87.62789806874821,41.884054490438125],[-87.62789113011897,41.883853604226495],[-87.62788678877641,41.88372791162457],[-87.62787239053239,41.883364265830174],[-87.62786972953204,41.88321808927094],[-87.62786694260494,41.883065000288],[-87.62785697922932,41.88273222724405],[-87.6278530045836,41.88261453770594],[-87.62784902938718,41.88249683251977],[-87.62783252252493,41.88216470502892],[-87.62780610569516,41.882042039505784],[-87.62807192823948,41.8820164771516],[-87.62850392386473,41.882009908708696],[-87.62894711501562,41.88200379150475],[-87.62940235619978,41.88199799343598],[-87.62979650254746,41.881992971874894],[-87.63016304791792,41.881987478093734],[-87.63043858761546,41.8819827705636],[-87.63069157609834,41.88197841890716],[-87.63088320809793,41.88197708026679],[-87.63127799704888,41.88197432155044],[-87.63158154580586,41.88197049628186],[-87.6318116247802,41.88196759162591],[-87.63188476406215,41.881966668192014],[-87.6321597757209,41.88196321620625],[-87.63236016500282,41.88196067692115],[-87.6325675559137,41.88195804856242],[-87.63285850610316,41.88195447948272],[-87.63300100597877,41.88195276186832],[-87.63328658468365,41.88195011229608],[-87.63362188958432,41.88194699661737],[-87.63382427570129,41.88194570322482],[-87.63387170134462,41.88194540016204],[-87.63404179781337,41.88194431284068],[-87.6344103697115,41.881941507197894],[-87.63471217531598,41.88193919981943],[-87.63508140760652,41.881936478367386],[-87.63531162391072,41.881933753043754],[-87.6353540189639,41.88193325111811],[-87.63551331313847,41.8819313648949],[-87.63588631361439,41.8819264958003],[-87.63615581739192,41.881922973075454],[-87.6365228576811,41.881919163426005],[-87.63676618404372,41.88191653202203],[-87.63689001094588,41.8819151927502],[-87.63701942280404,41.881913792806806],[-87.63729829572141,41.881910775911024],[-87.63770046685165,41.881904678157845],[-87.63784879850353,41.881902841114574],[-87.6380516489463,41.88190032848096],[-87.63821663001697,41.8818984153088],[-87.63823173674415,41.88211684170623],[-87.6382223134966,41.882264562126345],[-87.63819005876576,41.88264521284105],[-87.63818248496123,41.88276797183519],[-87.63815967019397,41.88291119266552],[-87.63815397985913,41.88301944628736],[-87.6381389100207,41.883190419035245],[-87.63808141628502,41.883381905560235],[-87.63806574265976,41.883476102819635],[-87.63805000808435,41.883562368847414],[-87.63803204591935,41.88366102535737],[-87.63799708548095,41.88385406318284],[-87.63797083932738,41.88399534247611],[-87.63794313605145,41.88414561404859],[-87.63791748646797,41.88429620018771],[-87.6379055394592,41.88445720630548],[-87.63788146644754,41.88471220059832],[-87.63783733577331,41.88499557810753],[-87.6378040097767,41.885257945529396],[-87.63776121869054,41.88558029931534],[-87.63773287739009,41.88572214128731],[-87.63765315591841,41.88606965635188],[-87.63758838582008,41.886234137108836],[-87.63743969853283,41.886419625822086],[-87.63727049078629,41.886556608175816],[-87.63708682119955,41.886675939458016],[-87.63684403469969,41.886807754956465],[-87.63597547453074,41.887343181440855],[-87.6358372179717,41.88740861599622],[-87.63579691662326,41.887427689831625],[-87.63561908583131,41.88745204862369],[-87.63520350307333,41.8874656590397],[-87.6348399767125,41.88746761971069],[-87.63426569727096,41.88751898257231],[-87.63414132140244,41.88752127147267],[-87.6339706484456,41.88752779503914],[-87.63377407676364,41.88753412820332]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1426802.09896","perimeter":"0.0","tract_cent":"1152351.88194147","census_t_1":"17031292300","tract_numa":"7","tract_comm":"29","objectid":"264","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1889582.82846387","census_tra":"292300","tract_ce_3":"41.85287808","tract_crea":"","tract_ce_2":"-87.71630652","shape_len":"5270.68506506"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71971603777449,41.85160893642991],[-87.71987214453895,41.85160739216622],[-87.71987389098747,41.85172174555725],[-87.71988353539723,41.852116425206844],[-87.71988936388537,41.85235392909671],[-87.71989432703529,41.85255619258635],[-87.71989304372762,41.852626270053364],[-87.71989094334148,41.85274090941168],[-87.71988850987394,41.85287373458061],[-87.71960251130056,41.8529757405071],[-87.71920621347753,41.853116598159204],[-87.7189467174929,41.85320736260562],[-87.71872261204412,41.8532862323241],[-87.7185282589825,41.85335463070242],[-87.7181903041526,41.85347400769694],[-87.71797515164715,41.85354892606255],[-87.71762557473312,41.8536820883054],[-87.71751253555747,41.853684756988045],[-87.71714867791175,41.85380580350205],[-87.71694455863494,41.8539166282229],[-87.71681991408207,41.85391986813738],[-87.71628392004669,41.853927617154106],[-87.7162864868895,41.854017628422035],[-87.71628818478071,41.85411410653525],[-87.71598859144723,41.854255889671236],[-87.71574880813093,41.854337960207786],[-87.71529984400674,41.85449156705227],[-87.71508264886334,41.85456783178449],[-87.71480089586514,41.85466676373402],[-87.71406614520505,41.85492158839574],[-87.71381339850225,41.855009926138784],[-87.71377050362182,41.85490715437986],[-87.71373317730898,41.85481772505017],[-87.7137082928072,41.85475810374999],[-87.71369618580825,41.854323676930925],[-87.71368880452852,41.85405881241718],[-87.71368489936931,41.853959216681716],[-87.71367083828335,41.85349225016398],[-87.7136685666282,41.85341679680912],[-87.71364302994259,41.852449801014025],[-87.7136368399924,41.85215209046436],[-87.71362701198102,41.851679412501795],[-87.71377804177824,41.85167656536315],[-87.71389654648358,41.85167432308092],[-87.71477231231648,41.85166370258603],[-87.71499858333924,41.85166332876419],[-87.71513110583405,41.8516631096493],[-87.71577461438413,41.85165528441413],[-87.71621899177926,41.851649878146276],[-87.71634830202399,41.85164830446047],[-87.71682468722489,41.85164118193196],[-87.71743235787895,41.85163291490801],[-87.71753004661643,41.85163291209944],[-87.7186537843326,41.851623592374295],[-87.71877648855909,41.851622573908884],[-87.71971603777449,41.85160893642991]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1334419.83852","perimeter":"0.0","tract_cent":"1158533.29786322","census_t_1":"17031290100","tract_numa":"13","tract_comm":"29","objectid":"265","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895092.72809863","census_tra":"290100","tract_ce_3":"41.86787369","tract_crea":"","tract_ce_2":"-87.69346793","shape_len":"4811.9457102"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69119277233959,41.86929465784451],[-87.69119005092656,41.86919954524402],[-87.69118539984683,41.86903824833237],[-87.69117608302669,41.86871510720928],[-87.69117550962002,41.86863483407852],[-87.69117310095935,41.86855455150807],[-87.69116977413094,41.868474263802504],[-87.69116175641555,41.86835827431188],[-87.69115060918371,41.86823403401317],[-87.69113998424832,41.86814924635756],[-87.69112794562162,41.868068223043956],[-87.69111166367217,41.867952530634845],[-87.6910903216404,41.86783818150163],[-87.69107272448096,41.86776227366471],[-87.69105237325105,41.86768634987306],[-87.69103018071648,41.86761110184214],[-87.69100523142342,41.8675361814192],[-87.69097798354517,41.86746159089071],[-87.69094843475395,41.86738767354807],[-87.69095013127557,41.86729408645446],[-87.6908716324648,41.867220530575736],[-87.6908621318443,41.867167607750225],[-87.69084220916004,41.86705662683417],[-87.69071411752607,41.86695620130895],[-87.69064909831181,41.86684984098044],[-87.69058454201281,41.86674313934933],[-87.69047478462106,41.866567578894845],[-87.69052782404677,41.86656681951063],[-87.69073116079298,41.86656461218057],[-87.69075383700275,41.86656436062651],[-87.69101039442708,41.86656151258022],[-87.69117184423791,41.866559719757866],[-87.69135003119492,41.86655818519886],[-87.69150030859228,41.86655689066088],[-87.69184022487903,41.86655431668928],[-87.69218716966105,41.86654989043321],[-87.69244467413881,41.866546604565634],[-87.69280911449364,41.86654405480729],[-87.69306212973234,41.86654156853771],[-87.69342762132419,41.8665370119627],[-87.6937177247852,41.866533393892],[-87.6940339666368,41.866530242767624],[-87.69437422564957,41.86652637340366],[-87.69470106529376,41.86652375196386],[-87.6949055816108,41.866522111038286],[-87.69521812502482,41.8665179478875],[-87.69557856943057,41.86651479084387],[-87.69590748902417,41.86651066598562],[-87.69591238161796,41.866753390795836],[-87.69591302909926,41.866893626008554],[-87.69591319702569,41.86693001546462],[-87.69591602875668,41.867013539356506],[-87.69591856345865,41.867088306333194],[-87.69592384767942,41.86725117964364],[-87.69592827848282,41.867437099938265],[-87.69593300364592,41.867626726601976],[-87.69593317809768,41.86763292958183],[-87.69593903965487,41.86783219487346],[-87.69594578230488,41.868033056714594],[-87.69595205151283,41.86820027138323],[-87.6959562245335,41.86833232026301],[-87.69596149287054,41.86849906311937],[-87.69596594368377,41.86872367744313],[-87.69596925464786,41.86881440955117],[-87.69597126867446,41.86886960462493],[-87.6959713688302,41.86887234723772],[-87.69597348214876,41.8689302613183],[-87.69597764067309,41.86906891441783],[-87.6959790123305,41.86923250278863],[-87.69573721899047,41.86922553905828],[-87.69552938459653,41.86922847395435],[-87.69535922229512,41.86923108811106],[-87.69528273424523,41.86923226308771],[-87.69492724319652,41.869235674762464],[-87.69480406553997,41.869237869241196],[-87.69462115058782,41.86924178544687],[-87.69438297723248,41.8692459765448],[-87.69416735440804,41.86924931844538],[-87.69393014625204,41.8692525123238],[-87.69361861177157,41.86925717153391],[-87.69350962364233,41.86926185915274],[-87.69335198560927,41.86926863892396],[-87.69304377225932,41.869275318385505],[-87.6925655492405,41.86928403982756],[-87.69228794978325,41.86928764984616],[-87.6918646176176,41.8692924485988],[-87.69154144894418,41.869293003139504],[-87.69145519899165,41.869293412447604],[-87.69130625931442,41.86929411944155],[-87.69119277233959,41.86929465784451]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2082218.19709","perimeter":"0.0","tract_cent":"1167811.96016052","census_t_1":"17031282300","tract_numa":"10","tract_comm":"28","objectid":"266","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897519.09317029","census_tra":"282300","tract_ce_3":"41.87433699","tract_crea":"","tract_ce_2":"-87.65933444","shape_len":"5768.86518077"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66090605359207,41.87217996932028],[-87.66102644771047,41.872169312994856],[-87.66109323449302,41.8721746304281],[-87.66122359511385,41.87217299193225],[-87.66172647708237,41.87217769323414],[-87.66173320570796,41.87240034274094],[-87.66173776062489,41.87252742781237],[-87.66174326542013,41.872681028424786],[-87.66175029280512,41.87293642156014],[-87.66175241505951,41.87301354762327],[-87.66175695713508,41.873157263298786],[-87.66176311229684,41.87335200370249],[-87.66177293576679,41.87366281952542],[-87.66177543088986,41.87374971728172],[-87.66177574222772,41.873760557784074],[-87.66177607028222,41.87377197604835],[-87.66178684534981,41.87414724607184],[-87.66178845689774,41.87420336493412],[-87.66178970257867,41.874246731881456],[-87.66179120292162,41.87429898811266],[-87.66179425733714,41.87438995034169],[-87.6618171913033,41.87513846817835],[-87.66182055361243,41.87526046002564],[-87.66182246050198,41.87532961934555],[-87.66182683242772,41.875488210255874],[-87.66182921942035,41.87557482002895],[-87.66183344255897,41.87572801898909],[-87.66183422574375,41.87575643283702],[-87.66184509903506,41.87615085183319],[-87.66185119498267,41.87637198595141],[-87.66185300948032,41.87643780442034],[-87.66166042174935,41.87644139802658],[-87.66052869483185,41.876460486650736],[-87.66045758826914,41.876462291789984],[-87.65960790680454,41.876477042730556],[-87.65941602820097,41.87647920780316],[-87.65924948858398,41.87648108660106],[-87.6586672445762,41.87649094969056],[-87.65782012313205,41.87650660666982],[-87.65757087111925,41.876510522008076],[-87.65709874176886,41.87651793638937],[-87.65706693100223,41.876518436229325],[-87.6570032701811,41.87651943565142],[-87.65700342734962,41.8764032564364],[-87.6570036082184,41.87626961022981],[-87.65700039000271,41.87617869853978],[-87.65698709556061,41.875803118669324],[-87.65697866535321,41.87556495374829],[-87.65697326545589,41.87541239670614],[-87.65697074864268,41.875341298753675],[-87.6569677071798,41.87526904704763],[-87.65693592187849,41.875158020530876],[-87.65685219939812,41.87476343292798],[-87.65681725953536,41.87443070968716],[-87.65681883140823,41.874281622066114],[-87.65681942800039,41.87422508475323],[-87.65682379612967,41.873810869887556],[-87.65680361367133,41.87323517192108],[-87.6567984614887,41.87308821371221],[-87.65680150548799,41.872964978410586],[-87.65681905468715,41.872254534460865],[-87.65745595648221,41.87224342277564],[-87.65790078359106,41.87223565969478],[-87.65807032074333,41.87223395688277],[-87.65822127816831,41.872232440155756],[-87.65837070631515,41.872229670274535],[-87.6586506499516,41.87222448040467],[-87.66005139679022,41.872201910506355],[-87.66019829483434,41.87219534540661],[-87.6603629711831,41.87218798473451],[-87.66050243991873,41.872186081273504],[-87.66090605359207,41.87217996932028]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2393672.57916","perimeter":"0.0","tract_cent":"1151155.39511994","census_t_1":"17031222900","tract_numa":"12","tract_comm":"22","objectid":"291","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912409.50007744","census_tra":"222900","tract_ce_3":"41.91554041","tract_crea":"","tract_ce_2":"-87.72009936","shape_len":"6497.53701585"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71671621007575,41.91546337488213],[-87.71671363913732,41.91534873123319],[-87.71670000501376,41.91496588682747],[-87.71669628529409,41.91486142715501],[-87.71667815877187,41.91427121018348],[-87.7166584643409,41.91363840988533],[-87.71693549434262,41.91363680842711],[-87.71715134559547,41.91363659453749],[-87.71742043325881,41.913640096371076],[-87.71751419205177,41.91364207399073],[-87.71755129356941,41.91364285638497],[-87.71788239409422,41.91364232387645],[-87.71824914994646,41.91366443417173],[-87.7185627727576,41.913669200964954],[-87.71887689872666,41.91366951021634],[-87.71910860627756,41.91366662887251],[-87.7191906078612,41.91366535700113],[-87.71968435799512,41.913659764028246],[-87.72023962137176,41.91365689858891],[-87.72034801576959,41.913655762141524],[-87.7207962981241,41.91365026495844],[-87.72100205920745,41.91364861816193],[-87.72111480641937,41.913654185311195],[-87.72122790471835,41.913659770137855],[-87.72133984441723,41.91367202951235],[-87.72144920674198,41.91366733517023],[-87.72153508464878,41.91366364924366],[-87.72155260514175,41.91366289709358],[-87.72215029781361,41.91363724081678],[-87.72223159439332,41.913636301659224],[-87.72234744378754,41.913635114634666],[-87.72234754851002,41.913635113270914],[-87.72261432103744,41.91422410747636],[-87.72270319819555,41.91442033227672],[-87.72278003255714,41.91458996776937],[-87.72284139757024,41.914725448849985],[-87.72288682020636,41.91482573241795],[-87.72291684655774,41.914892023919336],[-87.7229472457615,41.91495913874284],[-87.72297793470176,41.9150268928572],[-87.72300885976061,41.915095168249636],[-87.7231271766572,41.91535638384389],[-87.7231401375234,41.91538499767064],[-87.72341151033032,41.915379948235646],[-87.72394669803892,41.91537441983645],[-87.72405917597504,41.9153731448653],[-87.72406129970058,41.91546267874165],[-87.72406964644864,41.915809895795334],[-87.72407539694457,41.91605487642568],[-87.72408221819339,41.91626094952404],[-87.72409096810593,41.91652307005301],[-87.72409752118672,41.916721266041684],[-87.72410027018536,41.91680440311801],[-87.72410513029534,41.91687287003139],[-87.72415385411959,41.916972908780814],[-87.72420035212606,41.91706747468045],[-87.72421161901681,41.91709588235674],[-87.72421786548848,41.917126760650355],[-87.72421973960516,41.91715764319186],[-87.72421669376592,41.91719588545781],[-87.724018959573,41.91719740331666],[-87.7239612932384,41.91719784592532],[-87.7239378165595,41.91719802594312],[-87.72390558944859,41.91719827339974],[-87.72390312680446,41.91719829243691],[-87.72366103747275,41.91720014999768],[-87.72288985835209,41.917207528062335],[-87.7227647397017,41.91720872451509],[-87.72183233366867,41.91722014584319],[-87.72166617912069,41.917223259487855],[-87.72148226459642,41.91722670580992],[-87.72108797292715,41.917231684250964],[-87.72060966545997,41.917239067048904],[-87.72044145576831,41.91723945912425],[-87.72035121525691,41.91723966347857],[-87.71989588843319,41.91724524501852],[-87.71921927248533,41.91725279155955],[-87.71909250702488,41.91725420489487],[-87.71884560409651,41.917257521608946],[-87.7182122784514,41.91726513498431],[-87.717993782578,41.91726789155874],[-87.71788861351824,41.917269218418454],[-87.71752831762613,41.91727318709639],[-87.71700867988652,41.91728000364925],[-87.71677224478051,41.91728273213539],[-87.71676848325555,41.917185876819886],[-87.71675694420124,41.91681312060675],[-87.7167552905498,41.9167597089948],[-87.71675396516889,41.91671689187626],[-87.71673784476688,41.916173914366716],[-87.71673083793993,41.91595362008032],[-87.71672501939909,41.91577069048513],[-87.71671847207676,41.91556423424186],[-87.71671621007575,41.91546337488213]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7416174.76595","perimeter":"0.0","tract_cent":"1167089.51390784","census_t_1":"17031280300","tract_numa":"44","tract_comm":"28","objectid":"267","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901478.66777285","census_tra":"280300","tract_ce_3":"41.88521791","tract_crea":"","tract_ce_2":"-87.66187319","shape_len":"10889.3871574"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65697434802493,41.888948374061975],[-87.6569051211683,41.88887034931062],[-87.65690042110175,41.8888113322543],[-87.65688452818331,41.88861177543133],[-87.65688448738118,41.88847096765348],[-87.65688431331255,41.888396366090745],[-87.65688330110879,41.88829642722893],[-87.65688084120093,41.888045754054595],[-87.65688029647109,41.887991387433296],[-87.65687889777044,41.88785048986325],[-87.65686191734571,41.88770265883586],[-87.65684630461202,41.88756673543758],[-87.6568463815,41.8874550178332],[-87.656846536136,41.88723150029581],[-87.65684501319033,41.88699990479775],[-87.65684271969664,41.88687963835355],[-87.6568404747507,41.88676173278936],[-87.65683726430828,41.88667637564938],[-87.65682951899389,41.88647044933384],[-87.65682713990707,41.88637570409639],[-87.65682435386762,41.88626679617261],[-87.65682404580139,41.88625474713654],[-87.65682036670219,41.88610914343646],[-87.65681989492958,41.8860905075297],[-87.65681529041218,41.885908317354726],[-87.65681298739572,41.88581656377973],[-87.65680924481087,41.8856700540945],[-87.65680252402228,41.885537876227794],[-87.65680075361988,41.885503061398836],[-87.65679956079038,41.88547960345073],[-87.6567887157,41.88526631002268],[-87.65678522792054,41.88512002136342],[-87.65678014989284,41.88490517215741],[-87.6567795019478,41.88487215235995],[-87.65677761868862,41.88477612324137],[-87.65677418275797,41.88460403872089],[-87.65677161072065,41.88447534603462],[-87.65675402429413,41.88435678828941],[-87.65673713386678,41.88424292647156],[-87.65672043345046,41.88413034348801],[-87.656710275605,41.88406186637376],[-87.65670348764267,41.88384138162731],[-87.65669958176171,41.88371451943208],[-87.65669453270874,41.88355960460923],[-87.65669146745114,41.88340461914351],[-87.6566910859567,41.88338011135375],[-87.65668919142328,41.88325836501707],[-87.65668750445327,41.88314677442395],[-87.6567016287032,41.88298322445772],[-87.6567238995143,41.88272533560423],[-87.65671919989398,41.882579067181815],[-87.65671284108335,41.882381224643346],[-87.65671031767505,41.88230286189562],[-87.65670813889754,41.88223520317869],[-87.65670205093123,41.88204650055542],[-87.65669897762164,41.88195144928641],[-87.65668853555867,41.88162457054717],[-87.65714158609048,41.881616062039654],[-87.65764286137356,41.881606645868885],[-87.6587567600882,41.88158797398078],[-87.65961651118542,41.88157355471691],[-87.65973082701434,41.881571637208225],[-87.66055924697375,41.88155946811006],[-87.66197152262298,41.88153870858229],[-87.662274039141,41.88153291660305],[-87.66369349308697,41.88150418111234],[-87.66423218030577,41.88149327127433],[-87.66441825529128,41.8814884938389],[-87.66516312397408,41.88146936572969],[-87.66608424275428,41.8814615613477],[-87.66680275076872,41.88145546842904],[-87.66680899633099,41.88163126311625],[-87.66683770457182,41.882378905370885],[-87.66686970371141,41.88321223916967],[-87.66687140155761,41.88329897535946],[-87.6668904468668,41.88427193394169],[-87.6669070876088,41.885122016455284],[-87.66695976168653,41.88532853715253],[-87.66696619296206,41.885353752075765],[-87.66697889496541,41.88540355338093],[-87.66698950307028,41.88575745758765],[-87.66699322153653,41.88588149121175],[-87.66700136331299,41.8861530538055],[-87.66701196209338,41.88650660170802],[-87.66702489494347,41.88693799697115],[-87.66703818515937,41.88738131279123],[-87.66705152132899,41.88782615765979],[-87.6670562116032,41.8879824370496],[-87.66705739978828,41.88805088532754],[-87.66706076163796,41.888244565954274],[-87.66706144939194,41.888284196790785],[-87.66706457524747,41.888464045064126],[-87.66706449242695,41.88852499473219],[-87.66706513733008,41.888640142721535],[-87.66706710211577,41.888786396930826],[-87.66706868914602,41.88885187769547],[-87.66685862190567,41.88884517765089],[-87.66634690668404,41.888850000322044],[-87.66594412952612,41.88885391709899],[-87.6655748860525,41.888857478613524],[-87.66545387306061,41.88885765358165],[-87.66535192000592,41.88885780098203],[-87.66511796430898,41.888855424499646],[-87.66482377876765,41.88885999634075],[-87.66479198095318,41.888860468199674],[-87.66463112151312,41.888862854067035],[-87.66423651264611,41.888868788271616],[-87.66365280991135,41.88887754281976],[-87.66365218296053,41.888877546573084],[-87.66274799636126,41.888882753973895],[-87.66194133799335,41.88888739331946],[-87.66148778558428,41.88889450720419],[-87.66116885227402,41.88889851353034],[-87.66098445226875,41.88890185666387],[-87.66084490976517,41.888904386181316],[-87.66067605043301,41.88886122810624],[-87.66048033470646,41.888910994604196],[-87.66038849759929,41.88891265900007],[-87.6603884494855,41.88891265926698],[-87.6603269412864,41.88891303948099],[-87.66008369063664,41.88891443992967],[-87.65988671643582,41.888915672452],[-87.65949254731541,41.88891813518777],[-87.65930560011313,41.88891928833749],[-87.65901838340321,41.88892116968307],[-87.65892071785635,41.888950206509044],[-87.65889907139126,41.888934162785795],[-87.65887758241858,41.88892758761352],[-87.65885265765314,41.888922940668294],[-87.65883110085173,41.888922814054375],[-87.65866459883289,41.88892499184476],[-87.65854926431498,41.8889264546989],[-87.65826726509472,41.888931277286204],[-87.65825308962896,41.88893151969612],[-87.65805491276583,41.88893534930889],[-87.65772558058083,41.888939833494554],[-87.65734659706287,41.888944142749274],[-87.65697434802493,41.888948374061975]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"884883.332942","perimeter":"0.0","tract_cent":"1154376.73728115","census_t_1":"17031270600","tract_numa":"2","tract_comm":"27","objectid":"268","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900157.43819919","census_tra":"270600","tract_ce_3":"41.88185579","tract_crea":"","tract_ce_2":"-87.70859215","shape_len":"3991.13851308"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7107100772976,41.88091778859022],[-87.71100553628004,41.880916842321156],[-87.7110133554414,41.88116040482285],[-87.71102116400509,41.88143693005712],[-87.71102783648303,41.88166622062784],[-87.71103317072647,41.88181476160214],[-87.71103940068483,41.88198823836149],[-87.71104954802728,41.882357888524105],[-87.71105711693657,41.88259964279457],[-87.71106078856236,41.88274250100472],[-87.71038791177102,41.8827485398883],[-87.7101434960829,41.88275139493523],[-87.70986305118667,41.88275467049549],[-87.709749455723,41.88275599692519],[-87.70891099353467,41.882765079889246],[-87.70877619738143,41.882766448147414],[-87.70819799308958,41.882772315049394],[-87.70745091295045,41.88277966191815],[-87.7067790740138,41.88278727724727],[-87.70629424938126,41.882792555078304],[-87.70617046525061,41.882794320141684],[-87.70616598929526,41.88259235483743],[-87.7061599862742,41.882300998331296],[-87.70615931535121,41.882268442414066],[-87.70615287913748,41.882017857543524],[-87.70614805661458,41.88188164274671],[-87.70614401676318,41.881767533836275],[-87.70613524255972,41.881439220197784],[-87.70613447102373,41.88141034540788],[-87.70613113157526,41.881275200445174],[-87.70612660787985,41.88111444518557],[-87.7061227376917,41.88097274323147],[-87.70631206223271,41.88097061928191],[-87.70646050651887,41.880968957115314],[-87.70701175779499,41.88096255210742],[-87.70771330069019,41.8809533134509],[-87.70806472875167,41.88094913516989],[-87.70831545968049,41.88094567016832],[-87.708506215233,41.88094349605311],[-87.7088304246242,41.880939799882334],[-87.70911879455959,41.880936373146604],[-87.70954540043292,41.88093128169885],[-87.70995885398314,41.88092669356571],[-87.71007966970626,41.880925212365675],[-87.71028317976486,41.88092271812792],[-87.71054566022835,41.8809193668861],[-87.7107100772976,41.88091778859022]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3515572.31618","perimeter":"0.0","tract_cent":"1146354.4160488","census_t_1":"17031260400","tract_numa":"23","tract_comm":"26","objectid":"269","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900961.04905791","census_tra":"260400","tract_ce_3":"41.88421747","tract_crea":"","tract_ce_2":"-87.73802976","shape_len":"7952.0263678"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73570985197044,41.88786919687485],[-87.73570314056761,41.88766132650229],[-87.73568846122056,41.88731122183081],[-87.73568600826347,41.88725271848236],[-87.73567537800062,41.886999187587],[-87.73567239389119,41.88687773395439],[-87.73566853543998,41.88672069332425],[-87.73566061385898,41.88648799407927],[-87.7356575220345,41.88639717170132],[-87.7356509609731,41.886198810869516],[-87.73564756420006,41.88607207184854],[-87.73564629522228,41.88602472808995],[-87.73564510834429,41.88598043581153],[-87.73564068839677,41.88581552338124],[-87.7356313582843,41.88548479282307],[-87.7356275699899,41.88537508583696],[-87.73562248330117,41.88522623830733],[-87.73561489012552,41.884997933150515],[-87.735611964504,41.88490993681548],[-87.73560726947683,41.884633539803424],[-87.73560386100513,41.88456539612675],[-87.73559587806147,41.88440579004688],[-87.73558537519672,41.884059987382464],[-87.73558059901714,41.883903650735675],[-87.73556421237821,41.883374666596566],[-87.73556000718035,41.883246238335346],[-87.73555620850018,41.88313022195045],[-87.73554152119725,41.88268091210553],[-87.73553808311064,41.88258877803299],[-87.7355178384352,41.882046264024765],[-87.73551598066906,41.881928195415625],[-87.73551570418815,41.881910621181525],[-87.7355134569441,41.88176783693783],[-87.7355063997011,41.881567003533526],[-87.73550425293888,41.88150247507317],[-87.73549881632272,41.881352967546725],[-87.73549711244677,41.88128493176972],[-87.73549482891355,41.88119375264541],[-87.73549119537773,41.881063546840934],[-87.73548566378449,41.88088483999972],[-87.73547568846308,41.880610654060774],[-87.73582792996969,41.880606488347155],[-87.73607329005557,41.88060375833787],[-87.73631861801013,41.88060053312356],[-87.73666779421839,41.88059724352341],[-87.73698524222998,41.880594062532104],[-87.73730357582274,41.88059041873705],[-87.73774020369876,41.880585137338485],[-87.73792763776828,41.88058271819468],[-87.73817705514922,41.88057949868588],[-87.73837236009243,41.88057719013336],[-87.73865874152271,41.88057403566103],[-87.73892522454119,41.88057039328871],[-87.73917825626319,41.88056797050269],[-87.73940816055133,41.88056479637561],[-87.73959909555629,41.8805624908533],[-87.73983681319129,41.880560206705965],[-87.7400868355042,41.880557628878286],[-87.74021092798725,41.88055634914849],[-87.74033782959627,41.880555153493816],[-87.74034170120045,41.8806609110581],[-87.7403607408949,41.88118097296298],[-87.74037510395273,41.881592245387814],[-87.7403752809865,41.8815973256321],[-87.74037969181785,41.88172361294142],[-87.74038486097021,41.88187162681288],[-87.74039006994087,41.88202077755374],[-87.74039093749833,41.882045622148574],[-87.74040612435405,41.88245250796445],[-87.74042416890465,41.88296356534796],[-87.74043201984304,41.88318592373621],[-87.74044021110795,41.88341790987116],[-87.74044160018303,41.88345725062342],[-87.74046469389458,41.88416088521678],[-87.74047238690328,41.884363370272716],[-87.7404779385787,41.884509490870464],[-87.74048328650626,41.884650243762216],[-87.7404861964668,41.88472683261733],[-87.74049529782609,41.8849956300528],[-87.7404951128924,41.884995732556234],[-87.7405059321561,41.885315150173014],[-87.74050917371953,41.88541105199716],[-87.74051429787933,41.885552227971154],[-87.74052550081774,41.88585419357746],[-87.74052569012609,41.8858592988538],[-87.74053712368016,41.88616191135478],[-87.74054157895668,41.88627582058957],[-87.74054263280078,41.88630817383666],[-87.74054372433856,41.886341693582956],[-87.74054816378086,41.88645731788633],[-87.74057544476452,41.88723065039525],[-87.74058372640616,41.88747698895814],[-87.74059206480368,41.887717153798405],[-87.74059384598445,41.88777273369806],[-87.74059567509266,41.88782316893229],[-87.74029588318837,41.8878253942255],[-87.73931983240067,41.88783338480013],[-87.73851549233584,41.88783916932722],[-87.7381694968366,41.88787450934237],[-87.73796272569595,41.88784453788377],[-87.73678511463832,41.887855577852314],[-87.73570985197044,41.88786919687485]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3531250.95905","perimeter":"0.0","tract_cent":"1160891.72012058","census_t_1":"17031242400","tract_numa":"15","tract_comm":"24","objectid":"270","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906607.34820578","census_tra":"242400","tract_ce_3":"41.89942225","tract_crea":"","tract_ce_2":"-87.68449012","shape_len":"7967.4738363"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68605813854587,41.895755640151066],[-87.68684259761734,41.89574324659069],[-87.68684859502507,41.895993106270936],[-87.68685427749395,41.8961945107881],[-87.68685460202863,41.89620723710192],[-87.68686149170307,41.89647712567166],[-87.68686491258478,41.89665676687852],[-87.68686907966847,41.896875576955594],[-87.68687642906107,41.89712655149718],[-87.6868817721711,41.8973288045029],[-87.68688836994227,41.89756213345756],[-87.6868937932477,41.89775392723542],[-87.68689846139465,41.897935704403146],[-87.68690446824142,41.89818870207576],[-87.68691263224399,41.89847008345721],[-87.6869194050228,41.89870352284473],[-87.68692246536239,41.898855268971765],[-87.68692864084389,41.899128053504825],[-87.68693647012378,41.89937944969209],[-87.68694029416727,41.89950224098699],[-87.68694734357494,41.89976479440341],[-87.68695169836374,41.89992667402342],[-87.68695794886929,41.900159255855144],[-87.68695980176624,41.900292733896485],[-87.68696397041293,41.900592906622116],[-87.68696673557547,41.90070480471989],[-87.68697165467113,41.900901758833925],[-87.68697521689838,41.901043930341665],[-87.68697938461852,41.90120095047583],[-87.68698378764657,41.901366838009146],[-87.68699178047902,41.90159786564831],[-87.68700274846522,41.90188607191477],[-87.68700585500875,41.9020869507456],[-87.68701006963484,41.90235949384499],[-87.68701969667929,41.90276720426828],[-87.68702474034785,41.902944909295925],[-87.68702676175086,41.90301612617931],[-87.68673536636051,41.90302304034372],[-87.68593612348847,41.90303593557866],[-87.6851722772179,41.90305028739923],[-87.68480398487254,41.90305720907887],[-87.68458031048664,41.90306108062932],[-87.68424457382848,41.90306689135412],[-87.68363400614624,41.90307880617313],[-87.68345103308938,41.903082377808865],[-87.68334792802102,41.9030843900137],[-87.68299529397473,41.90309127185474],[-87.68242609736033,41.90310234429355],[-87.68214005889183,41.90310657216671],[-87.6821355336908,41.90298639949036],[-87.68213180143681,41.90265956732476],[-87.68212363309992,41.90230661230219],[-87.68211907866906,41.90217178988921],[-87.6821116876367,41.9019530321053],[-87.68210912698122,41.901858423772474],[-87.68210765249448,41.90180427163571],[-87.68210413485268,41.90167326930394],[-87.68210002300432,41.90152121530866],[-87.68209256861034,41.90128339924286],[-87.68208576472027,41.901066304742386],[-87.68208329355456,41.90095523148417],[-87.68208055825761,41.900834003051145],[-87.68208026298288,41.900820911368925],[-87.68207691297704,41.90067215475506],[-87.68206931868119,41.90037365373264],[-87.68206457624014,41.90018726051082],[-87.68205932952749,41.899995079297284],[-87.68205735115536,41.8999227788421],[-87.68205407912566,41.899803227364686],[-87.68205215042553,41.89973279930717],[-87.68204592882341,41.899466015405125],[-87.68204058618205,41.899236904972604],[-87.6820370665881,41.89914226371298],[-87.68203404590427,41.89901302044976],[-87.68203266442868,41.89895373708946],[-87.68202867939938,41.89878203500058],[-87.68202350606346,41.898557960353145],[-87.68201878329991,41.89835338386497],[-87.6820142234425,41.89819122844458],[-87.68201170295328,41.898101834602436],[-87.6820087960231,41.8979987442719],[-87.68200592589693,41.89789806935189],[-87.68199924507663,41.89764744192918],[-87.68199406537494,41.89745310623345],[-87.68198802191073,41.89723092561073],[-87.68198707189607,41.897196782449015],[-87.68198465885074,41.89711005056265],[-87.68198077287445,41.89696834350346],[-87.68197343071895,41.896747714496925],[-87.68196597212999,41.89652358317291],[-87.681961860509,41.896371556207775],[-87.68195974763731,41.89629302579605],[-87.68195695490022,41.896189228889725],[-87.68195317055486,41.89604837309772],[-87.68194919798756,41.89582703841495],[-87.68242657062848,41.89581820877013],[-87.68265569377817,41.89581440298501],[-87.68300788261995,41.89580857695638],[-87.68339974662247,41.895802068807924],[-87.68364279257848,41.895798037985756],[-87.68395409433802,41.89579285587858],[-87.68439662772127,41.895785230189695],[-87.68491342639788,41.8957763229322],[-87.68522432814846,41.89577072348638],[-87.68553478939904,41.89576509327133],[-87.6859663342522,41.89575729087144],[-87.68605813854587,41.895755640151066]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10690725.0196","perimeter":"0.0","tract_cent":"1147434.79345447","census_t_1":"17031230600","tract_numa":"39","tract_comm":"23","objectid":"272","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1908967.67058315","census_tra":"230600","tract_ce_3":"41.90616787","tract_crea":"","tract_ce_2":"-87.73385702","shape_len":"13439.5410324"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72640355654995,41.90968387236172],[-87.72646852065233,41.90951975372132],[-87.7264867338337,41.909383873412246],[-87.72649073674442,41.909354009574116],[-87.7264870364554,41.909096964970594],[-87.726484102957,41.908962097756124],[-87.72647661407991,41.908618699472],[-87.72646707435578,41.908179132318246],[-87.7264650576127,41.90807730119239],[-87.72646312293824,41.907979605512615],[-87.72644331897664,41.907312761335085],[-87.72642777936176,41.90681630152251],[-87.72641295538614,41.90638230536477],[-87.72640770140652,41.906156029027144],[-87.72640390004683,41.905986373408915],[-87.72639429100278,41.905666673942626],[-87.72639316735301,41.90562884858026],[-87.72638899866276,41.905488517565125],[-87.72638563361842,41.905376397981094],[-87.72638266013332,41.905277315315054],[-87.72637079217914,41.90488197214712],[-87.72636135248695,41.90456765249194],[-87.72635262198716,41.90447260112636],[-87.72635119205917,41.90445703182187],[-87.72634988832051,41.90444283887047],[-87.7263434702504,41.90437296410685],[-87.72633610011495,41.90392169019594],[-87.72633029509267,41.90366578680145],[-87.72632717116313,41.90357996428925],[-87.72632429028934,41.903500826377],[-87.72631572185968,41.90313826754783],[-87.72630786192026,41.902807490168136],[-87.72630293360285,41.90267145336649],[-87.72660029819419,41.90266422223813],[-87.72691073589085,41.902660373595424],[-87.72741632685921,41.902654096279434],[-87.72752955602343,41.90265247085254],[-87.72757550275244,41.9026518101105],[-87.72765101471907,41.90265072379247],[-87.7280380637644,41.902644614528214],[-87.72814890635722,41.90264286614097],[-87.72864738587279,41.90263498170921],[-87.72876380014026,41.90263300877461],[-87.72890184529624,41.90263066824172],[-87.7292199803048,41.90262471336493],[-87.7293741060156,41.90262182980224],[-87.72983593160744,41.90261318814646],[-87.72998967585661,41.90261176004088],[-87.7301132964453,41.902610611471715],[-87.73050056229906,41.90260479663674],[-87.73060144842479,41.90260328203221],[-87.73109503732711,41.902595868713085],[-87.7312250793334,41.902592254543826],[-87.73133842547838,41.9025891042938],[-87.73192610748241,41.902579779703984],[-87.7326141977899,41.90256886435249],[-87.73356363730471,41.902555276179484],[-87.73368327811802,41.90255427065294],[-87.73387351405434,41.90255239370659],[-87.73474883102858,41.90253807945579],[-87.73532123098181,41.90252874015294],[-87.73581258384472,41.9025207051712],[-87.73614586238018,41.90251265457579],[-87.73640989968924,41.90250627603303],[-87.73667964058619,41.90250183266665],[-87.73696800816008,41.902497101210095],[-87.73732860589861,41.90249112484317],[-87.73768824804056,41.90248519727171],[-87.73859992620447,41.90247122557949],[-87.73898888237524,41.90246526243734],[-87.73938122543171,41.90245845600016],[-87.73971680577563,41.90245261715458],[-87.73988683588009,41.90244978468086],[-87.739986102522,41.902448130793125],[-87.74008893949768,41.90244641732829],[-87.74064971333664,41.902438884921686],[-87.74112826390815,41.902432679336606],[-87.74120720061966,41.902431655551716],[-87.74123055315367,41.903432263404284],[-87.74127187806435,41.90512224111515],[-87.74129396483683,41.906027925658385],[-87.74134015012605,41.90792171492382],[-87.7413543772737,41.908568742243176],[-87.74141068667781,41.90865726602316],[-87.74136701599333,41.90903978662767],[-87.74137265222936,41.90922505160285],[-87.74137991259573,41.90943330819288],[-87.74138036111837,41.90968350987793],[-87.74138035744728,41.90968350958458],[-87.74112111820897,41.90968724396279],[-87.74056862941336,41.90969520032971],[-87.73976390887006,41.909705144666454],[-87.73880849855034,41.90971692099298],[-87.73854713596639,41.90972089158413],[-87.7362631109657,41.90975556171808],[-87.73552081001716,41.90976670261418],[-87.73487399646014,41.909774522469895],[-87.73387635507264,41.90978657743851],[-87.73365534569913,41.90978924700067],[-87.73264536854204,41.90980144007723],[-87.73243329551995,41.90980399898492],[-87.7322999663906,41.90980560799798],[-87.73142119428482,41.909817267322495],[-87.73120946673532,41.90982007523146],[-87.7301965350652,41.90983350404974],[-87.7299990749426,41.90983612094434],[-87.72897287650117,41.909849726394334],[-87.72877153668182,41.90985254523663],[-87.7277440949279,41.90986692459496],[-87.7275554401332,41.90986956396604],[-87.72633070704583,41.90988669018665],[-87.7263286117404,41.90982027796177],[-87.72640355654995,41.90968387236172]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3553517.1306","perimeter":"0.0","tract_cent":"1160670.37738664","census_t_1":"17031221600","tract_numa":"23","tract_comm":"22","objectid":"273","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914568.59458592","census_tra":"221600","tract_ce_3":"41.92127311","tract_crea":"","tract_ce_2":"-87.68508211","shape_len":"8144.30184624"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68250180476227,41.9248091277466],[-87.68275032274397,41.9244731487365],[-87.68275034248605,41.9244731225038],[-87.68273311328511,41.924196568331084],[-87.68273315911901,41.92414547111417],[-87.68273323918868,41.92405617310071],[-87.68273327261242,41.92401920967102],[-87.6827298878491,41.92391649745859],[-87.68272636323809,41.92380953913492],[-87.68271897143451,41.92358587058088],[-87.68271716637427,41.92353307462326],[-87.68271389244661,41.923437324307244],[-87.6827115737611,41.92336951122986],[-87.68270704518305,41.9232370665212],[-87.682703180233,41.92311135029529],[-87.68269950546265,41.92299179977332],[-87.68269661258725,41.92289768112855],[-87.68269456210237,41.92283096011973],[-87.68268818428459,41.92267879479003],[-87.68268344142729,41.92256564048594],[-87.68268173596857,41.92250669856518],[-87.68267990435496,41.92244339233485],[-87.68267315844258,41.92221064372208],[-87.6826720991436,41.922174036600914],[-87.68266777383738,41.922024527220415],[-87.68266339779714,41.921918602999526],[-87.68265588853892,41.92173683749391],[-87.68265546436591,41.9217249523149],[-87.68264710712121,41.92149085014427],[-87.68264003856545,41.921313093692746],[-87.68263595643496,41.92121043675337],[-87.68263075149305,41.9210818405055],[-87.68262315051668,41.92089403715277],[-87.68261901119224,41.92079151681825],[-87.68261613978699,41.92071060018503],[-87.68261158439418,41.920582199976714],[-87.68260400577026,41.92036613146792],[-87.68259249881328,41.920037637137234],[-87.68258939308129,41.919943805654164],[-87.68257810955859,41.91960287984174],[-87.68257445006365,41.91949231173634],[-87.68256664757546,41.91927659866567],[-87.68256366013084,41.91918501783242],[-87.68256096047126,41.91910225308828],[-87.68255078966291,41.91881583526907],[-87.68254115175809,41.918545721169835],[-87.68253693145309,41.9184259166349],[-87.68253399387322,41.91834252539575],[-87.68252747230649,41.91809117201515],[-87.68252024255662,41.91781550074605],[-87.68251853354988,41.917658895232506],[-87.68279065047655,41.917654355209244],[-87.6830354100868,41.917649847588415],[-87.68346301620039,41.91764197160346],[-87.68406379367451,41.91763090815426],[-87.68443868015775,41.9176240001774],[-87.68467236150663,41.917619693474215],[-87.68495894636784,41.91761462768379],[-87.68524182431932,41.91760962697316],[-87.6854832815073,41.91760461580272],[-87.68613246582946,41.91759113928445],[-87.68663586666358,41.91758068663528],[-87.68691900395761,41.917573808121105],[-87.68712006649481,41.917568923120335],[-87.687409990258,41.91756774018782],[-87.68741562546444,41.91779451515857],[-87.68742266601339,41.91799266062823],[-87.68743066440098,41.918219708204674],[-87.68743458769787,41.91832993848834],[-87.68744108606113,41.91851252111421],[-87.68744323814092,41.918584953130775],[-87.68744769731494,41.91873503288998],[-87.68745260701806,41.91889669554778],[-87.68745991721185,41.91908721326608],[-87.68746363484769,41.91918410570182],[-87.68746614766559,41.919267626694236],[-87.68747012947662,41.91939997576315],[-87.68747932015906,41.919705542345234],[-87.68748322520577,41.91984711157712],[-87.68748689693837,41.91998022754638],[-87.68748922239264,41.920064515582354],[-87.68750122517956,41.92041191997142],[-87.68750850843955,41.92060921572733],[-87.68751245194426,41.920716043509515],[-87.68752057629132,41.920984255364544],[-87.68752334114339,41.9210755161936],[-87.68753624534992,41.921482996716875],[-87.68753812411724,41.921643295381536],[-87.68753922773082,41.92173740332233],[-87.68754706799989,41.92185772632919],[-87.68755285896528,41.92205822520899],[-87.68756347570293,41.92235729584873],[-87.68756663865173,41.92246739169726],[-87.6875716598872,41.922619388062],[-87.68757889166157,41.922847336731614],[-87.68758293264445,41.92295668943238],[-87.68758893485092,41.9231194558021],[-87.6875945853765,41.92329742347614],[-87.68759713726304,41.923377788492196],[-87.68760511009687,41.92362890256501],[-87.6876086465312,41.923748323721775],[-87.68761344589504,41.92391009538246],[-87.68761790767323,41.924072331658365],[-87.68761960743436,41.92413411373776],[-87.68762527662267,41.92434023696454],[-87.68762991494488,41.92452895599699],[-87.68763335186556,41.92466915036156],[-87.6876419126273,41.92490068324405],[-87.68750878655658,41.92490178716822],[-87.68723834567723,41.92490402943573],[-87.6871223589965,41.924905456025954],[-87.68685855947629,41.92490870046877],[-87.68685719968256,41.92490871723639],[-87.68648343578948,41.92491371978163],[-87.68607210998235,41.92491946985457],[-87.68573087976601,41.92492416404543],[-87.68556699425271,41.924926418237824],[-87.68520910218953,41.92493195979447],[-87.68497858832151,41.92493552857619],[-87.68468460965994,41.92494004491356],[-87.68441265309309,41.92494591464665],[-87.68364080271553,41.924954750715585],[-87.6833193042987,41.92495970415905],[-87.68309998996736,41.924963082845096],[-87.68276887705117,41.92477474349737],[-87.68276888023217,41.92477479208817],[-87.68278127160384,41.9249679031603],[-87.68278127731463,41.92496799210555],[-87.68278112459508,41.92496790534604],[-87.68250180476227,41.9248091277466]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7107346.51082","perimeter":"0.0","tract_cent":"1139849.94660763","census_t_1":"17031190300","tract_numa":"32","tract_comm":"19","objectid":"274","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919418.02165336","census_tra":"190300","tract_ce_3":"41.93498685","tract_crea":"","tract_ce_2":"-87.76146338","shape_len":"10665.3540693"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76589424534689,41.93128335351758],[-87.76624637601793,41.931277286426095],[-87.76625094850927,41.93140731619632],[-87.76626282596533,41.93172512884483],[-87.76626289162486,41.93172688547402],[-87.76628164196667,41.93227788150716],[-87.76630075389849,41.93282127803943],[-87.76630972113875,41.93310024571353],[-87.7663210378055,41.93345230288121],[-87.76633689376084,41.93394428360306],[-87.76635429140681,41.93444895021427],[-87.76637227298653,41.93492788047931],[-87.76638703208224,41.93532097959044],[-87.76640338931392,41.935827040492036],[-87.76640966327379,41.936048201075984],[-87.76641495691362,41.9361767117982],[-87.76641795072042,41.936261962187245],[-87.76642050359492,41.93633475161977],[-87.76642614069021,41.93649084348404],[-87.76643005100813,41.936608562564885],[-87.76643483208541,41.93675250288709],[-87.76645143577198,41.93725350589758],[-87.76645507123308,41.93737421480902],[-87.76645948353143,41.93750681004186],[-87.76646458822295,41.93765916737453],[-87.76646730465916,41.937735909003614],[-87.76647244718913,41.93786905667765],[-87.7664766676694,41.937977666163974],[-87.76648200156009,41.938103154277144],[-87.7664877698201,41.93823886154981],[-87.76649970926107,41.93857468554154],[-87.76599848480787,41.93858018634049],[-87.76548154499602,41.93858707099718],[-87.76526764453203,41.938589992031645],[-87.76467240652501,41.93859810472369],[-87.76420560721735,41.93860413426857],[-87.76404862861538,41.93860665707179],[-87.76368622822866,41.93861248063096],[-87.76334712645841,41.938617109441026],[-87.76282140224995,41.93862393851058],[-87.76255372474836,41.93862741053096],[-87.76200360505399,41.93863315382528],[-87.76189105490458,41.93863402099037],[-87.76159587243887,41.93863753198235],[-87.76135757953541,41.938640365703144],[-87.76108233450428,41.93864338496042],[-87.76087916886354,41.938645985515414],[-87.76074286739319,41.938647729834855],[-87.76027514698853,41.9386539309],[-87.75943484538922,41.93866425076765],[-87.75913673537765,41.938668024556215],[-87.75859255572705,41.93867491128192],[-87.75801087557939,41.938683359439175],[-87.75754201123966,41.93869000988043],[-87.75709024125304,41.93869622307333],[-87.75668960426394,41.938700139177556],[-87.75667778528813,41.93839802322633],[-87.75667586181487,41.93830147180807],[-87.75667484559476,41.938244026827334],[-87.75667308600595,41.93814454320414],[-87.75666960966639,41.938048972177064],[-87.75665952566192,41.93778871211037],[-87.75664897419593,41.93751637921762],[-87.75664502595441,41.93740796257016],[-87.75664255568802,41.93734763213577],[-87.75663399351579,41.937131261731956],[-87.75662446183192,41.93687601534746],[-87.75661462840728,41.9366126985947],[-87.75661259702771,41.9365596699908],[-87.75660724673575,41.93642004857475],[-87.75660354606697,41.93632120637359],[-87.75660078384963,41.93624841568461],[-87.75659211048641,41.93612191828441],[-87.7565876891444,41.9359644563839],[-87.75658611906822,41.93590852972053],[-87.75658100846896,41.93572652961683],[-87.75657540020613,41.935549471275934],[-87.75657392757304,41.93550904173159],[-87.75656712058668,41.93532218075615],[-87.75655673945555,41.935052025588504],[-87.75654339251514,41.9347046934043],[-87.75653916356916,41.934599074399834],[-87.75652875214007,41.93433903425615],[-87.75652082566724,41.93413910675315],[-87.75651575545515,41.93401122620137],[-87.75650531294161,41.93368425450029],[-87.75649389390426,41.93339061966061],[-87.75648738214115,41.933226467187254],[-87.75648086622608,41.93306220766327],[-87.75647150050929,41.93277527929037],[-87.75646974917267,41.93272162088414],[-87.75645733226122,41.9324314938621],[-87.75645309030533,41.93231588576657],[-87.75644437946733,41.93207849392009],[-87.75643814554196,41.9318576347479],[-87.75643262371052,41.931661998581404],[-87.75642435724178,41.93151083252181],[-87.7564202700555,41.931399471599875],[-87.75667169386043,41.931395911901596],[-87.75741434397959,41.93138792147637],[-87.75820835732064,41.931377356980406],[-87.75887215241534,41.93136884603776],[-87.75940593242,41.93136199922394],[-87.7601668250888,41.93135232587254],[-87.7608262803284,41.9313433492026],[-87.76094448326663,41.931341806252775],[-87.76133489402136,41.93133670849339],[-87.76159599603326,41.9313332987375],[-87.76209239180194,41.93132819536404],[-87.76256065902837,41.93132467202224],[-87.76275114922095,41.931323237904046],[-87.76315589650318,41.931317345428425],[-87.76352945566263,41.93131412303529],[-87.76378968127003,41.931310102406606],[-87.7640363125017,41.9313062915014],[-87.7643236620218,41.93130230974265],[-87.76466106423977,41.931298465403806],[-87.76501820408427,41.93129427128308],[-87.76518378194886,41.931292326450986],[-87.7653699845409,41.931289460629955],[-87.76568923839048,41.93128489259843],[-87.76589424534689,41.93128335351758]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3402122.04328","perimeter":"0.0","tract_cent":"1144494.98904021","census_t_1":"17031190100","tract_numa":"12","tract_comm":"19","objectid":"275","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919532.53798524","census_tra":"190100","tract_ce_3":"41.9352148","tract_crea":"","tract_ce_2":"-87.74438961","shape_len":"7873.02860717"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74591086814333,41.93154244540262],[-87.74659461635315,41.93153305868506],[-87.74659473822311,41.93153624206055],[-87.74660093503014,41.93169837539863],[-87.7466158471979,41.93215245623451],[-87.74663024019621,41.932446655830276],[-87.74664002297854,41.932646403072255],[-87.74665316017678,41.93298947086749],[-87.74666701181275,41.93335477051105],[-87.7466671346533,41.93335800904935],[-87.74667183646734,41.933481989972854],[-87.74668212318109,41.933795213431736],[-87.7467025731113,41.93426672076885],[-87.74670742920705,41.93437849038796],[-87.74673133208782,41.93495045390936],[-87.74674078609684,41.935181012345275],[-87.74675647543464,41.93556364221986],[-87.74676721617325,41.93585546266149],[-87.74677785898109,41.93609300239866],[-87.74678524922962,41.93625794025579],[-87.74679531127671,41.9365099387897],[-87.74679923963429,41.93660831181399],[-87.74681532173202,41.93700257415888],[-87.74683936554064,41.93759199137649],[-87.7468485516209,41.93781993445861],[-87.74685237839493,41.93791488846216],[-87.7468644001371,41.938213191685094],[-87.7468692414434,41.93833064168638],[-87.74687318535219,41.93882554881911],[-87.74663728210176,41.938828136694774],[-87.74625799122452,41.938834293403374],[-87.74621163695153,41.93883497980816],[-87.74600846714932,41.93883798816077],[-87.7458777862508,41.93883992277971],[-87.74561561575172,41.93884388046088],[-87.74532117016457,41.93884832483296],[-87.74520265858838,41.938849910744466],[-87.74494152139961,41.93885340511259],[-87.7447160432668,41.93885609131175],[-87.74442740653086,41.93886046767195],[-87.74438766846501,41.93886107009697],[-87.74418045316192,41.93886421143262],[-87.74389685062992,41.93886862903025],[-87.74365305871444,41.93887242603107],[-87.74347323962614,41.93887408193587],[-87.74323232096097,41.93887718150193],[-87.74249967667367,41.93888660493174],[-87.74237181036155,41.93888824900207],[-87.74220152558017,41.93889043853817],[-87.742174977833,41.93889077989776],[-87.7421344400388,41.93784065131478],[-87.7421057605388,41.93706594712849],[-87.74209887906241,41.936880132483886],[-87.74209362647707,41.93673829278623],[-87.74208401405286,41.93648577478624],[-87.74206263113568,41.93591589536574],[-87.74203937414147,41.93525064446905],[-87.74203126340322,41.93503449509631],[-87.74199449207254,41.93404192578232],[-87.74197266612322,41.93342061102315],[-87.7419723038425,41.93341029691099],[-87.74195726521458,41.93299927156918],[-87.74192582701689,41.9321257606627],[-87.7419059332393,41.93159445195649],[-87.74191410124718,41.93159434940835],[-87.74193380509725,41.93159410238173],[-87.74214904271915,41.931591401816235],[-87.74253764791722,41.93158681559741],[-87.7425670522852,41.93158634422688],[-87.7430791361043,41.931578129919544],[-87.7437900766385,41.9315698725178],[-87.74414656090207,41.931565491607394],[-87.74465167862346,41.93155928228047],[-87.74474341638965,41.93155838705775],[-87.74498904143061,41.93155598951496],[-87.74533182496394,41.93155068894949],[-87.74579954100369,41.93154345482158],[-87.74591086814333,41.93154244540262]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6374388.26695","perimeter":"0.0","tract_cent":"1144856.93305857","census_t_1":"17031160100","tract_numa":"36","tract_comm":"16","objectid":"276","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930256.77258832","census_tra":"160100","tract_ce_3":"41.9646362","tract_crea":"","tract_ce_2":"-87.74278788","shape_len":"10713.0744499"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73851777054058,41.96354969643943],[-87.73851004762817,41.963304763132726],[-87.73850973764377,41.96329523884359],[-87.73850066680072,41.96301670968444],[-87.73849304590892,41.96278453746036],[-87.7384879184535,41.96265030556527],[-87.7384779660885,41.96238975955656],[-87.73847035938878,41.96216398139005],[-87.73846073064094,41.96186308369164],[-87.73845293556519,41.96161804016784],[-87.73844529834287,41.96137974820996],[-87.73843617775724,41.96113491733326],[-87.73842961975717,41.96095848519071],[-87.73842512091103,41.96082863846446],[-87.73863983233159,41.96082653518697],[-87.73887630906307,41.96082369844182],[-87.7390964220691,41.960821105818304],[-87.73928333224117,41.96081872516511],[-87.73949473627083,41.96081556531436],[-87.7396983822241,41.96081250217041],[-87.73982171090958,41.960811605785786],[-87.74000945431227,41.96081024087172],[-87.74015878118037,41.960808625030694],[-87.74036569325855,41.960806181304385],[-87.7405989035983,41.96080269297141],[-87.74081490639018,41.960799252568776],[-87.74101362618322,41.96079610705779],[-87.74121984529121,41.96079698173099],[-87.74151028882834,41.96079493625947],[-87.74175252948564,41.960791009700614],[-87.7419107444051,41.96078843766242],[-87.74191496959416,41.96078836941797],[-87.74229538169865,41.96078478513248],[-87.74229742282837,41.96078476572845],[-87.74233799685247,41.96078422103835],[-87.74262599298075,41.96078035445427],[-87.74304333318771,41.96077475024294],[-87.74340407711934,41.96076990474578],[-87.74353443059202,41.96076815353932],[-87.74388659965177,41.96076342163818],[-87.74394933344259,41.960762578792135],[-87.7439914264887,41.960762013050385],[-87.74410991551649,41.96076042064619],[-87.74417798523001,41.960759509013066],[-87.74443938991708,41.96075600799904],[-87.7444797147371,41.96077793362169],[-87.74459851364121,41.96084333289585],[-87.74502149545006,41.9610760149357],[-87.7456580064388,41.961428819061254],[-87.74610244801327,41.9616777291911],[-87.74650566921076,41.96191133347114],[-87.74662842993234,41.96205637499368],[-87.74678455599437,41.96222182568046],[-87.74701334951669,41.96248197871228],[-87.74717010450352,41.962635113863705],[-87.74714718880242,41.96265744011514],[-87.74713044535896,41.96267375265574],[-87.74701011404643,41.9627928129361],[-87.74697275278855,41.96285346154919],[-87.74696302333362,41.96290003572113],[-87.74698101727334,41.96299237096943],[-87.74702835608794,41.96309306785398],[-87.74706180938509,41.96316993937554],[-87.74709537249656,41.96323219303801],[-87.74731795017809,41.96329719263918],[-87.7476640586699,41.96339500615015],[-87.74790823760367,41.96348166481005],[-87.74718117143408,41.96339133265375],[-87.74724576124895,41.96351113324854],[-87.7472763949441,41.96356797348956],[-87.74733618269434,41.96367890931788],[-87.74741488923702,41.96383312401066],[-87.74746754574774,41.96395553752825],[-87.74752785605148,41.96409267159753],[-87.74759541405396,41.96423977665026],[-87.74761324832258,41.96429584952307],[-87.74762040084892,41.96436664684022],[-87.74763560000918,41.96451709199262],[-87.74764359586558,41.96471597822973],[-87.74765065130697,41.96490915170579],[-87.74766088505332,41.9651888937596],[-87.7476680195469,41.96538950442989],[-87.74767303999305,41.965527865639196],[-87.74769583380719,41.966198861496935],[-87.74769676753547,41.96622634923965],[-87.7477074417817,41.9665734201696],[-87.7477245382172,41.967083491141544],[-87.74772179585376,41.9680287235974],[-87.74763466694837,41.9680303820116],[-87.74749002742087,41.968033135468936],[-87.74721098831091,41.96803685110601],[-87.7471367659446,41.968037609896456],[-87.74705221461456,41.96803847450691],[-87.74702817595433,41.96803872303573],[-87.74675551604213,41.96804154177826],[-87.74665379948613,41.96804211970999],[-87.74654355023664,41.9680430051982],[-87.74651190608466,41.968043259476005],[-87.74622574844726,41.968045557092616],[-87.74590149238858,41.96804612120598],[-87.74569040060781,41.96804874502973],[-87.74548394217622,41.96805131096162],[-87.74534270378552,41.96805379400523],[-87.74531222857385,41.968054329732155],[-87.74506688662944,41.96805864221539],[-87.74462544320401,41.96806288315277],[-87.74430079145289,41.96806651422851],[-87.74407362540636,41.968069562753286],[-87.74378897992929,41.968073382073634],[-87.74351680075586,41.968077033398615],[-87.74320848363476,41.968079812273515],[-87.7428468790964,41.96808311317167],[-87.74257585062885,41.96808558680257],[-87.74222991144202,41.968088843974755],[-87.74184050489318,41.968092475770554],[-87.74157425642328,41.968094973035996],[-87.74145867460437,41.96809595842447],[-87.74116506771988,41.96809846132959],[-87.74080948238537,41.96810224788385],[-87.74049848277727,41.968105558867414],[-87.74016458796116,41.968107737554774],[-87.73974642405057,41.96811446088137],[-87.73943842083625,41.96811896010407],[-87.73917633332087,41.96812085451377],[-87.73897598851129,41.9681223023577],[-87.73857433290513,41.96812634181519],[-87.73821489308276,41.96813018708034],[-87.73802631008826,41.96813217310084],[-87.73790228852742,41.96813393083945],[-87.737899478051,41.96795920655408],[-87.73788783771738,41.96763368313353],[-87.73787807478304,41.967339535729046],[-87.7378676708931,41.96702735581107],[-87.73785135750923,41.966540238163496],[-87.73776304381538,41.966480111634105],[-87.73752031817624,41.96631102217142],[-87.73784681325569,41.9663096264391],[-87.73810412467733,41.966306580501886],[-87.73841233216535,41.96630290916813],[-87.73860255973668,41.96630134787088],[-87.73859025426864,41.96592208635289],[-87.73858787174832,41.96584865160721],[-87.7385739942925,41.96541920597427],[-87.73856008383687,41.96498557631572],[-87.73855875546296,41.96492788588195],[-87.73855141518142,41.96460905333493],[-87.7385469925269,41.96447666265855],[-87.73854149208903,41.964312023580064],[-87.73853238253217,41.9640185380545],[-87.73852900027137,41.963909575407264],[-87.73852618246194,41.96381938607695],[-87.73851777054058,41.96354969643943]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1878841.80824","perimeter":"0.0","tract_cent":"1180396.24408731","census_t_1":"17031381900","tract_numa":"14","tract_comm":"38","objectid":"277","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871969.20738785","census_tra":"381900","tract_ce_3":"41.8039459","tract_crea":"","tract_ce_2":"-87.61391685","shape_len":"5510.38486384"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61634772581864,41.80210089340799],[-87.61654885971157,41.80209782994795],[-87.616549175172,41.802933022396054],[-87.61651798662878,41.8039214831083],[-87.61645151145613,41.80392247801207],[-87.6164544956247,41.80403841685818],[-87.61646410750542,41.80443958049417],[-87.61647204118594,41.80476762607396],[-87.61648406123814,41.80524235132103],[-87.61648789373162,41.805418612728516],[-87.61648900603774,41.80546340654962],[-87.61649640523767,41.80574185717721],[-87.61623335643856,41.80574560759113],[-87.61574260510068,41.805752603207],[-87.61555449591907,41.805755506496965],[-87.61548566553432,41.80575656872446],[-87.61534993049061,41.80575881403993],[-87.61506003728077,41.80576421645139],[-87.6147104164034,41.805771013732034],[-87.61454938733608,41.805773144867956],[-87.61443726914962,41.80577462852432],[-87.61426463312654,41.805777060665875],[-87.61386690533193,41.805783148625935],[-87.61355210685079,41.8057879661522],[-87.61329379722622,41.80579309822023],[-87.61319716306814,41.80579481658274],[-87.61309752838882,41.80579658767651],[-87.61290992737783,41.80579906143945],[-87.61258736321429,41.805803354504704],[-87.61229892125361,41.80580719289339],[-87.61207183578753,41.80581131071755],[-87.61198030513366,41.80581275603439],[-87.61182065428687,41.80581527674669],[-87.61161732235902,41.805817374888264],[-87.61137057922745,41.80582235685581],[-87.61136538714428,41.80557484424202],[-87.61136268397208,41.8054399185995],[-87.61136126230599,41.80538650603469],[-87.6113571554838,41.80520058289819],[-87.61134529649217,41.80472138501193],[-87.61133155607007,41.80414192680176],[-87.6113284009002,41.804001565163645],[-87.61132451139285,41.80382854090425],[-87.61131811042866,41.803564584028216],[-87.61131322979594,41.80336331490619],[-87.61130751439437,41.80309295442841],[-87.61130307282644,41.80288286519522],[-87.61129818603482,41.802684176180826],[-87.61129410815309,41.802518368698266],[-87.61128640348198,41.80216905403687],[-87.61158573011966,41.802164789837136],[-87.6122321864596,41.80215501827305],[-87.61250323297327,41.80215098305087],[-87.61284548006418,41.80214588635204],[-87.61379192231995,41.80213184023216],[-87.61407132605328,41.80212783993551],[-87.6141925555012,41.802126104110414],[-87.61433056850623,41.80212412770408],[-87.61464269231554,41.80211965763989],[-87.61496762550036,41.80211480661693],[-87.61539069001685,41.80210789235424],[-87.61549720978175,41.8021068335363],[-87.61571009627147,41.802105315645015],[-87.61585820654912,41.80210425889163],[-87.61607575029291,41.80210276364787],[-87.6161107439858,41.80210252329695],[-87.61627190863278,41.802101416613695],[-87.61634772581864,41.80210089340799]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"663428.995631","perimeter":"0.0","tract_cent":"1178615.57771328","census_t_1":"17031350800","tract_numa":"3","tract_comm":"35","objectid":"278","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1884172.73411541","census_tra":"350800","tract_ce_3":"41.83747408","tract_crea":"","tract_ce_2":"-87.62007588","shape_len":"3333.53598332"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62177415187476,41.83652835282623],[-87.62187849785357,41.83651079651767],[-87.62187897221965,41.836540261040106],[-87.62188132701071,41.83668660439149],[-87.62189368663307,41.83720737736962],[-87.62192802159343,41.838288719657385],[-87.62192481649144,41.83836465960935],[-87.62178550865137,41.83836659719321],[-87.62128782928414,41.838372708984615],[-87.62101322532179,41.83837608069382],[-87.62063596329922,41.838380875183965],[-87.6204761991181,41.8383829024135],[-87.62016309937941,41.83838711577227],[-87.61999593275563,41.83838936475907],[-87.61999403817235,41.83838939031444],[-87.61981749919052,41.83839176524701],[-87.61948226904754,41.838395335422476],[-87.61888069794823,41.838401732866515],[-87.61854755939086,41.83840527435522],[-87.61826869239094,41.838409177740516],[-87.61823347283242,41.83687553362571],[-87.61822850771095,41.836582836432534],[-87.61858685545779,41.836578828135444],[-87.61883998894932,41.83657510774336],[-87.61922965336383,41.83656937949543],[-87.61944408747199,41.83656765071614],[-87.61995271609798,41.83656231605638],[-87.62062348963117,41.83655421669295],[-87.62086854699987,41.83655151060596],[-87.62123848746882,41.83654739826903],[-87.62136906498587,41.83654616436833],[-87.62147507992928,41.83654275694018],[-87.62157294451791,41.83653929890779],[-87.62169256842358,41.83653394403308],[-87.62177415187476,41.83652835282623]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5117130.83997","perimeter":"0.0","tract_cent":"1175281.96727874","census_t_1":"17031370200","tract_numa":"37","tract_comm":"37","objectid":"279","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875146.86262942","census_tra":"370200","tract_ce_3":"41.81278162","tract_crea":"","tract_ce_2":"-87.63257838","shape_len":"9224.59948084"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62900048607669,41.81088543157702],[-87.62900331960405,41.81083605199067],[-87.62900431955383,41.81078666116114],[-87.62900440555654,41.81073692169281],[-87.62900270683774,41.81068271183295],[-87.62900622465813,41.81061275437291],[-87.6290106590693,41.810542802532],[-87.62901692364281,41.810473204946085],[-87.62902410480223,41.81040361270449],[-87.6290321243635,41.810341229874986],[-87.62903785599607,41.81027848970746],[-87.62904083150731,41.81021607567505],[-87.62904151910104,41.81015330457967],[-87.62903528068507,41.809927549632185],[-87.62901812378023,41.80927533553744],[-87.62901591767215,41.809183732062195],[-87.62901591397106,41.809183601137526],[-87.62912907979945,41.80918179134631],[-87.62960689658854,41.80919864897799],[-87.63037428286464,41.809166942615654],[-87.6307332436129,41.80916364717885],[-87.63086670737451,41.809162421687155],[-87.63093747107585,41.809159935869374],[-87.6311580070152,41.80915218853764],[-87.6312192088703,41.80915003844896],[-87.63149695864237,41.809140280353425],[-87.6316159992695,41.809136097823796],[-87.63169119670329,41.80913345558294],[-87.63184837046799,41.80912793325788],[-87.63208525832415,41.80911960945828],[-87.63246509192895,41.80910626162342],[-87.63257582594198,41.80910237017671],[-87.63337102376009,41.809074421072935],[-87.63365298007747,41.80908030738575],[-87.6339391722273,41.80907915146076],[-87.6343786799612,41.80907532265299],[-87.63458145368092,41.80907154360197],[-87.63475450960195,41.80906831838648],[-87.63499147512591,41.809063901305294],[-87.6351570156656,41.80906029718766],[-87.63554188280615,41.809051905900425],[-87.63569481187321,41.80904880920258],[-87.6357743484988,41.80904719861392],[-87.63582147511188,41.80942243422537],[-87.63582518727779,41.8094842342766],[-87.63582989364022,41.80960532826522],[-87.63583112362133,41.809682650512975],[-87.63583295042822,41.809797502169914],[-87.6358330271611,41.80980233091598],[-87.63583404372467,41.809802317878706],[-87.6358341651536,41.8098023164206],[-87.6358342454969,41.8098023152619],[-87.63585220356568,41.81051209883586],[-87.63586154692628,41.81091840640116],[-87.63624799715181,41.81091093951687],[-87.63637959631437,41.81090839058312],[-87.63629616043855,41.81124586879583],[-87.6362701376069,41.81136234260759],[-87.63624594418759,41.81147917054731],[-87.63622495749816,41.81159636097467],[-87.63620580433131,41.81171356252318],[-87.63620031831138,41.81175435060361],[-87.6361893983275,41.81183112404755],[-87.63617574359374,41.811948701990595],[-87.6361600379526,41.812213085943974],[-87.63615800702466,41.81240037041147],[-87.63615529774961,41.812607889785575],[-87.63615646317938,41.812669687782886],[-87.63620538821475,41.81475421662303],[-87.63622289500829,41.815423239945666],[-87.63622193160319,41.81551207969131],[-87.63621959598396,41.81560056834804],[-87.63621588553166,41.815689048385224],[-87.63621125356273,41.8157778666858],[-87.63616198200044,41.816346696787114],[-87.63608860131997,41.816348022817394],[-87.6359973220962,41.8163496720922],[-87.6359957817832,41.81634969978894],[-87.63597446908724,41.81635008467824],[-87.63583314484896,41.816351574336835],[-87.63571574555003,41.81635268387243],[-87.63556753917567,41.81635408365662],[-87.63520487432739,41.81635765894932],[-87.63510255083982,41.81635866765876],[-87.63471780420629,41.81636537341912],[-87.63437297921791,41.81637138227718],[-87.63385844844777,41.816377608202295],[-87.6335628967875,41.816383851820106],[-87.63305194731592,41.816393852584746],[-87.63295416634298,41.816395403270974],[-87.63267197740215,41.81639987835255],[-87.63236300861192,41.81640117171835],[-87.63205047795938,41.8164024795549],[-87.63175743307478,41.81640865260003],[-87.63154246477276,41.816413180617154],[-87.63119454343905,41.81641848564862],[-87.63104552599765,41.816420768174794],[-87.6307282934555,41.81642562713802],[-87.63046074144306,41.81642972445363],[-87.630272733577,41.81643260274417],[-87.63012919839593,41.81643480045576],[-87.6298647103626,41.81643884927755],[-87.62955863714635,41.81644353377624],[-87.62943991617323,41.81644535054252],[-87.62928895969624,41.81644767955561],[-87.62923143237197,41.816448567080705],[-87.62916703553849,41.816449552423094],[-87.6291188142177,41.81645024940638],[-87.62911569210625,41.816358220830445],[-87.62909359948273,41.8156541793209],[-87.62906843976107,41.81472783274805],[-87.62906576360398,41.814637265733886],[-87.62906576334841,41.81463725557849],[-87.62906356085723,41.81454530862739],[-87.62906217059817,41.81450482206423],[-87.6290452613247,41.81391367037743],[-87.62902608974092,41.813236060112615],[-87.62902279365615,41.81311837913436],[-87.62901979050535,41.81301042373783],[-87.62901720123666,41.81291732618427],[-87.6289982627149,41.812218449646714],[-87.62899603853917,41.812128561004016],[-87.62899603685246,41.81212851406657],[-87.62899375689994,41.81204381752322],[-87.62897295129595,41.81126431579121],[-87.62897175242004,41.81120633562211],[-87.62897330071245,41.81114871533209],[-87.62897714519436,41.81109076608685],[-87.62898327834398,41.81103317390891],[-87.62899069299766,41.81098416544883],[-87.62899627708669,41.81093480272905],[-87.62900048607669,41.81088543157702]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3537721.34772","perimeter":"0.0","tract_cent":"1154818.20249666","census_t_1":"17031301500","tract_numa":"18","tract_comm":"30","objectid":"282","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885211.24754168","census_tra":"301500","tract_ce_3":"41.84083296","tract_crea":"","tract_ce_2":"-87.70737123","shape_len":"7978.22611894"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70913328281921,41.837154850050204],[-87.70971387654575,41.83714523061088],[-87.70971468453007,41.837421280928474],[-87.70972119169329,41.83768086912574],[-87.70972839584589,41.83792536762226],[-87.70973680069157,41.83820873145754],[-87.70974426958907,41.838463769355776],[-87.70975051794767,41.83869333381395],[-87.7097561077154,41.83887733984899],[-87.70975905052137,41.83897092820726],[-87.70976395894459,41.83912702847128],[-87.70976814688603,41.83929667436419],[-87.70977380319401,41.83949651516166],[-87.7097799721325,41.83971537650521],[-87.7097854651292,41.83992070493493],[-87.70979178038066,41.84015474257706],[-87.70979637249371,41.84030166810498],[-87.70980216826644,41.840487157383805],[-87.70980800772331,41.840679452400146],[-87.7098111957615,41.840798296446096],[-87.70981590327636,41.84097379039662],[-87.70981932518247,41.84110517700302],[-87.70982564611398,41.841350027309886],[-87.70983111139228,41.841535514485386],[-87.70983959029822,41.84182266562688],[-87.7098453282073,41.842014136766295],[-87.70985229495017,41.842252925711854],[-87.70985796385744,41.84245529119672],[-87.70986220281928,41.84262259146807],[-87.70987016884487,41.842937003498264],[-87.70987635424757,41.84314669895062],[-87.70988253396642,41.84337966573358],[-87.70988952731592,41.843630858843795],[-87.70989612804132,41.843869535963165],[-87.70990001791725,41.84399667170579],[-87.70990342751014,41.84410810682007],[-87.70990995585557,41.84431270003188],[-87.709910510052,41.84445011990311],[-87.70960271637118,41.844454557014025],[-87.7093471399519,41.844457696848366],[-87.70929578951645,41.844458389880565],[-87.70904413716816,41.84446178609315],[-87.70868872306399,41.8444668897441],[-87.70839540098547,41.84447110100171],[-87.70815520706998,41.84447371814113],[-87.70808161431263,41.84447451651074],[-87.70788403470164,41.84447666005663],[-87.70767630708276,41.8444800388857],[-87.70747562596904,41.84448330288052],[-87.70716613133446,41.844488335888705],[-87.70698274936747,41.844490958417595],[-87.7068674201905,41.84449259838682],[-87.70668704894295,41.844495163318726],[-87.7064105830183,41.844498978480786],[-87.70625585585114,41.8445009464204],[-87.70597276422558,41.844504546251265],[-87.70577958080571,41.84450744263316],[-87.70564307244413,41.844509491452435],[-87.70549004419169,41.844511787900466],[-87.70517661138008,41.84451655060292],[-87.70504048522427,41.8445175297098],[-87.70503705966402,41.844345642901715],[-87.70503354886057,41.84419057274994],[-87.70502915842552,41.84405789070711],[-87.70502392020636,41.84388807467071],[-87.70501766177736,41.84370250069371],[-87.70500926450042,41.84345420855667],[-87.70500199204031,41.843218491295744],[-87.70499624897931,41.843014012128926],[-87.70498445376295,41.842696558236405],[-87.70497634974684,41.842478442228696],[-87.70496990705936,41.84220669725976],[-87.7049634333192,41.841983141412385],[-87.70495743839668,41.84177816685462],[-87.70495008050838,41.84155496290752],[-87.70494287464669,41.841338730218624],[-87.70493815054367,41.84117638104106],[-87.70492995867359,41.84087665386013],[-87.7049237198663,41.8406483876142],[-87.70491563002041,41.84039499268704],[-87.7049111506621,41.84025643761122],[-87.70490602865095,41.84005229104603],[-87.70490062008868,41.83985121648425],[-87.70489413768868,41.839643549525285],[-87.70489208935813,41.83958138643928],[-87.7048875165117,41.83944260580182],[-87.70488096125273,41.83926493354068],[-87.70487680181274,41.83913780155183],[-87.70487414855303,41.83905671644794],[-87.70487056540095,41.83894720031352],[-87.70486373704783,41.838677428936236],[-87.70485718252456,41.838439684643795],[-87.70485005067404,41.838197189599654],[-87.704842178972,41.83792529939141],[-87.70483465420968,41.837659174304896],[-87.70482771260134,41.837423540662925],[-87.70482285953652,41.837232938428464],[-87.70516147135721,41.83722426654976],[-87.70556719749032,41.83721567235936],[-87.70593071071485,41.837208300622954],[-87.70618851788406,41.83720301255665],[-87.70656149789087,41.83719571768111],[-87.70673958097679,41.83719242006201],[-87.70706314753264,41.83718717535655],[-87.70727689910278,41.83718391468354],[-87.70748991661485,41.837180665255275],[-87.7077904201517,41.83717722507199],[-87.7081633801242,41.83717195591741],[-87.7084929342302,41.83716648373286],[-87.7085629581993,41.83716532099493],[-87.70881216654678,41.83716121518611],[-87.70903493006146,41.837156799623614],[-87.70913328281921,41.837154850050204]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1762936.67008","perimeter":"0.0","tract_cent":"1150622.61028529","census_t_1":"17031291000","tract_numa":"8","tract_comm":"29","objectid":"283","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1892426.53150168","census_tra":"291000","tract_ce_3":"41.86071547","tract_crea":"","tract_ce_2":"-87.72257931","shape_len":"5310.38725281"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72027048432511,41.86214532554784],[-87.72022534529209,41.86211684618245],[-87.72017214585037,41.86211740465718],[-87.72015986610825,41.861632189846816],[-87.72014483514616,41.861045222998435],[-87.72014119864694,41.86090409386217],[-87.72013948237499,41.86083701504428],[-87.72013580583452,41.86074933751565],[-87.7201320079384,41.86065876304811],[-87.72011545643632,41.86004736380937],[-87.7200946323727,41.859279958051204],[-87.72008767886882,41.85902415604364],[-87.72006603849474,41.85892074111566],[-87.7203199354989,41.85891658610347],[-87.72062744375147,41.858912905080054],[-87.72104773436283,41.858907872285386],[-87.72125543012957,41.8589065040386],[-87.72153129331036,41.858904686261155],[-87.72231138814435,41.85889742303223],[-87.72248890768151,41.85889417108331],[-87.72269102345643,41.85889046840346],[-87.72360206956762,41.85887815708149],[-87.72371829345141,41.85887899303909],[-87.72386429936422,41.85888004290854],[-87.72481355845468,41.8588677875386],[-87.72488242085839,41.8588681361861],[-87.72495503309881,41.85886832655344],[-87.72495789641201,41.858984085498626],[-87.72496677983003,41.85928375043955],[-87.72496790660085,41.85932176493812],[-87.72498409855069,41.85986798530217],[-87.72500620408623,41.860614815026864],[-87.72500955100827,41.860694824305675],[-87.7250134767183,41.86078867484367],[-87.72501691334688,41.86093002232469],[-87.72502991521303,41.86146341022644],[-87.72504451845064,41.86206308064714],[-87.7250507649112,41.86231959173465],[-87.72505741152035,41.86245735187129],[-87.7250606071709,41.86252358854263],[-87.72492565226179,41.86252507761416],[-87.72484774560066,41.86252572608314],[-87.72445795527844,41.862528970389036],[-87.72385037870248,41.86253402436313],[-87.72377739204349,41.86253463125565],[-87.72324344046807,41.86254143116499],[-87.72262850722396,41.86254925986725],[-87.72201468782016,41.86255707034889],[-87.72141137917743,41.86256474419836],[-87.72095853331517,41.86257050235449],[-87.72033586336745,41.86257841666063],[-87.72033358241679,41.86246127933243],[-87.72032472372213,41.86223186706074],[-87.72032001150026,41.86219866384281],[-87.72030703495086,41.86217364928321],[-87.72028387650661,41.86215376701831],[-87.72027048432511,41.86214532554784]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2287246.42376","perimeter":"0.0","tract_cent":"1166542.81732385","census_t_1":"17031283100","tract_numa":"15","tract_comm":"28","objectid":"284","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895664.26827718","census_tra":"283100","tract_ce_3":"41.86927445","tract_crea":"","tract_ce_2":"-87.66404724","shape_len":"6114.98764557"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66634444032474,41.86686153407108],[-87.66638355148599,41.86686149035225],[-87.66639868010269,41.86745556730162],[-87.66640440672472,41.867620981208894],[-87.66643395913863,41.86847458001609],[-87.66646123488206,41.86926239429717],[-87.66646283791968,41.869308697737175],[-87.66648743250623,41.870382192506334],[-87.66648951772451,41.87044230121583],[-87.66652869941989,41.87157158159304],[-87.66653065356796,41.87162812776742],[-87.66643949972536,41.87163010534821],[-87.66633100795167,41.87163245883691],[-87.66560625310422,41.87164114521097],[-87.66436377867977,41.87165899690615],[-87.66414972481724,41.87166240243411],[-87.66398249280213,41.87166506289965],[-87.66354813698956,41.87167250831082],[-87.66293453891869,41.871683022816704],[-87.66232552991217,41.87169345630069],[-87.66231558743195,41.87169399535699],[-87.66201950171981,41.8717100499113],[-87.6619471365538,41.8717139737714],[-87.66171284627775,41.871726676908466],[-87.66171233274882,41.87170968919984],[-87.66171062650513,41.8716532261788],[-87.66169794626066,41.87122832168662],[-87.6616898595793,41.8709573552499],[-87.66167505793744,41.8704352850049],[-87.66167005024477,41.87028676409934],[-87.66166306660126,41.87007966961961],[-87.661654665259,41.8697935052779],[-87.66165263588084,41.869724393197714],[-87.66164133387547,41.8693394594869],[-87.66163735553697,41.869203939145606],[-87.66162924516725,41.868937342690785],[-87.66162167677955,41.86868855957803],[-87.66161754655113,41.86854963326667],[-87.66161247174902,41.86837892684838],[-87.66160519373268,41.86815814280271],[-87.66159656109049,41.86789628475956],[-87.66160057300718,41.867767630581916],[-87.66160507244855,41.867623336474075],[-87.66159523832516,41.8674372187432],[-87.661576028241,41.867080079322314],[-87.66157085628323,41.86691646069182],[-87.66176484316986,41.86691543081664],[-87.66206667483786,41.866910150085616],[-87.66377056633438,41.86688032497962],[-87.66401089242451,41.866876748056484],[-87.66428992072282,41.86687259422944],[-87.66481575319673,41.866863229236785],[-87.66483030836153,41.86686321324747],[-87.66497395200304,41.8668630547725],[-87.66634444032474,41.86686153407108]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1051680.12264","perimeter":"0.0","tract_cent":"1159621.72035713","census_t_1":"17031280700","tract_numa":"6","tract_comm":"28","objectid":"285","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900268.4901809","census_tra":"280700","tract_ce_3":"41.88205414","tract_crea":"","tract_ce_2":"-87.68932957","shape_len":"4463.93587519"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68848881640213,41.88113492869843],[-87.6887917228442,41.88112727073629],[-87.68886327603347,41.88112779662157],[-87.68948791136792,41.88113238346154],[-87.6900700407363,41.88112669942296],[-87.69039210159728,41.881123623961564],[-87.69054463825772,41.88112216691862],[-87.6908653234503,41.88111891201227],[-87.69107673541313,41.88111751852844],[-87.69135628568824,41.88111567517205],[-87.69147276934842,41.881113940155394],[-87.69150455508145,41.88111346659706],[-87.69153011007411,41.88111308663929],[-87.69163261029965,41.881111559535775],[-87.69172873398094,41.88111012761615],[-87.69216226986921,41.88110597866043],[-87.69218885464463,41.88133333475987],[-87.69219334048543,41.88153196090005],[-87.6921986120352,41.88176505914993],[-87.6922068182469,41.88202984099952],[-87.69221516043001,41.88229898969064],[-87.69222080855656,41.88257149737874],[-87.692224210894,41.882716083231536],[-87.69223115529334,41.88294121187783],[-87.69168100937532,41.88295096070534],[-87.69157662829728,41.88295281021372],[-87.6915484945646,41.88295330859081],[-87.69142344247572,41.88295393485978],[-87.69116491224497,41.88295522960874],[-87.6909684693881,41.88295621273957],[-87.69045727133722,41.88296553661628],[-87.68952059938472,41.882975464939065],[-87.68883065694499,41.88298265421656],[-87.68852964639102,41.882985944194175],[-87.68807423566268,41.88299092028618],[-87.687931002358,41.8829923994328],[-87.68784197728914,41.882993347211354],[-87.68754794636142,41.88299635935592],[-87.68728425336911,41.88299882791934],[-87.68691697902719,41.88299999937333],[-87.68648456595453,41.88299620313855],[-87.68647944152353,41.882787600940425],[-87.68647220665156,41.88254073728156],[-87.68647067211525,41.88248837392554],[-87.68646522125155,41.88228971474094],[-87.6864573650759,41.88208534384914],[-87.68644800037185,41.88184172942352],[-87.68644214889424,41.88162319989446],[-87.68643594806514,41.881301072558344],[-87.68643116151189,41.88116173395066],[-87.68684883696685,41.88115772537317],[-87.68705377392618,41.88115575811272],[-87.68755045115739,41.88115026454057],[-87.68793886173486,41.88114591701075],[-87.68814511292427,41.881143617920515],[-87.68848881640213,41.88113492869843]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5135644.0375","perimeter":"0.0","tract_cent":"1172627.67160449","census_t_1":"17031282000","tract_numa":"48","tract_comm":"28","objectid":"286","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897545.83455477","census_tra":"282000","tract_ce_3":"41.87430524","tract_crea":"","tract_ce_2":"-87.64165265","shape_len":"9349.76655212"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64533837801675,41.871950732099535],[-87.64566493184633,41.87192766752488],[-87.64594130162077,41.87194573650587],[-87.64616273069517,41.871940167825755],[-87.6462971838402,41.871940972253796],[-87.64631394215877,41.87194070395466],[-87.64644468309388,41.87193861250071],[-87.64660085708813,41.87193630470552],[-87.64702301124024,41.871929549721635],[-87.64704292630348,41.872381942998246],[-87.64705695759052,41.87287969202731],[-87.64707696516467,41.873180725446986],[-87.6470906584997,41.8734910765303],[-87.64709254462578,41.87353381353364],[-87.64711242763545,41.87384641975675],[-87.6471266381175,41.87433932503053],[-87.64714146678872,41.874619127839644],[-87.64714381820085,41.8746813951241],[-87.64714504742575,41.87485461382352],[-87.64715017843088,41.87502950265332],[-87.64715102867756,41.87505580996352],[-87.64715513220031,41.875182757250165],[-87.64716105295409,41.87536592825848],[-87.64716200298298,41.87539529983982],[-87.64716603911148,41.875520175084574],[-87.64717385913731,41.87576210021301],[-87.64717441722743,41.87577936952066],[-87.64718154517034,41.87599987330945],[-87.64718495855202,41.87610546210143],[-87.64719150455718,41.876307978534165],[-87.64719165435726,41.87631261391155],[-87.64719469287219,41.876399356270866],[-87.64719587646434,41.876433155436224],[-87.64719806762638,41.87649572086565],[-87.64720241487497,41.87667171034357],[-87.64692317088412,41.87667602161911],[-87.6467661085763,41.87667811733239],[-87.64642365784727,41.87668268589122],[-87.6461504608086,41.87668632975286],[-87.64594009478269,41.876689135282604],[-87.64585207499587,41.87669030900736],[-87.64574409083716,41.87669174897466],[-87.64570283415554,41.876692298880094],[-87.64545611850127,41.876695588120675],[-87.64524698673492,41.87669837562416],[-87.64507190562244,41.8767007093013],[-87.64479730193672,41.876704368681075],[-87.64451832474347,41.876708085694744],[-87.64451450469225,41.87670813660232],[-87.64438354656717,41.87670988123426],[-87.64396006851378,41.876715136621975],[-87.64346240236131,41.87672131062226],[-87.64322388564503,41.87672383257073],[-87.64294434918398,41.87672678718303],[-87.64281481257144,41.876728581656074],[-87.64249756599416,41.8767329755598],[-87.64214724498663,41.87673782677596],[-87.64193949768018,41.87674047306372],[-87.64176606004574,41.87674262169268],[-87.6416562832255,41.87674398170718],[-87.64138026697447,41.87674736836891],[-87.64102694799459,41.87675215913497],[-87.63982991293403,41.87676826526837],[-87.63962333927542,41.87677112219221],[-87.63927779763853,41.876775899670506],[-87.63899314835066,41.876779640055545],[-87.63870782945328,41.87678414407334],[-87.63842394112532,41.87678884813574],[-87.63793061434104,41.8767933756747],[-87.6378923390686,41.876793726776015],[-87.63776087678976,41.8767949328087],[-87.63746982525034,41.87679851620476],[-87.63742891982797,41.876688256219666],[-87.63733008396783,41.87647061491689],[-87.63720085902085,41.87625174650359],[-87.6370663466328,41.876032955650906],[-87.63682712674873,41.875738611737454],[-87.63677666763637,41.87569018699787],[-87.63664308948084,41.87556199405792],[-87.63656577252058,41.875487793969505],[-87.63634907068958,41.87527742236293],[-87.63629353803138,41.87520106971274],[-87.63623472193109,41.87506533906943],[-87.63612127870333,41.87480037953584],[-87.63606556606163,41.87467311991626],[-87.63600830357406,41.874448294284015],[-87.63593101995892,41.87414485885123],[-87.6358688986233,41.87397131965645],[-87.63575747831729,41.87346323177388],[-87.63572611878168,41.87330874136178],[-87.63571549897466,41.87325641981145],[-87.63553803053665,41.87238211984935],[-87.63547253779859,41.872105012330465],[-87.63641662165163,41.87207173885785],[-87.63684333218339,41.87206131018854],[-87.6371642162217,41.872056038437684],[-87.6373605672083,41.8720533591437],[-87.63769450455948,41.872049338181526],[-87.63801412801473,41.87204548836793],[-87.63837638202166,41.87204112423727],[-87.63935235002565,41.87202856135137],[-87.6401953019528,41.87201770417565],[-87.64054912062407,41.87201237475562],[-87.64087654461292,41.87200820645458],[-87.64123367903511,41.87200365891615],[-87.6420379381046,41.8719943975127],[-87.6421463433372,41.87199264494488],[-87.64234704092442,41.87198933866004],[-87.64269747215369,41.87198415046077],[-87.6432585295487,41.871977643843564],[-87.64351752140642,41.871974644340774],[-87.64381337711832,41.87197071822061],[-87.64446713855145,41.87196204023678],[-87.6445570967886,41.87195904850128],[-87.64473756151887,41.871953978647554],[-87.64533837801675,41.871950732099535]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7129488.86406","perimeter":"0.0","tract_cent":"1140097.86452791","census_t_1":"17031250700","tract_numa":"33","tract_comm":"25","objectid":"288","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1908791.13574857","census_tra":"250700","tract_ce_3":"41.90582098","tract_crea":"","tract_ce_2":"-87.76081299","shape_len":"10681.496641"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76533084171079,41.90214844340522],[-87.76565382332494,41.90214451884983],[-87.76565755528362,41.90234695823408],[-87.76567431147902,41.90268639382017],[-87.76568101528655,41.90289169612254],[-87.76568650280973,41.903047486314996],[-87.76569246289212,41.90321669844678],[-87.76570714195047,41.90361649671023],[-87.76571425445229,41.90381710834828],[-87.76571891545196,41.90395205165474],[-87.76572676826108,41.904179409828124],[-87.76574597447727,41.90464876969592],[-87.76575173502324,41.904853106778916],[-87.7657574352117,41.90505530304963],[-87.7657739518687,41.90547997333972],[-87.7657795960753,41.90562450297457],[-87.7657848454052,41.9057589109991],[-87.76578868427116,41.90585721433346],[-87.76581093976012,41.90653408099348],[-87.76583204476414,41.907096122963274],[-87.76584298142019,41.907433334097206],[-87.76584776993055,41.90756595988706],[-87.76585631549838,41.90780266491487],[-87.76587590909048,41.90835292623159],[-87.765885488376,41.90861529522769],[-87.76588744431977,41.90877790095646],[-87.76588838719414,41.90885628103298],[-87.7658865582915,41.908864258274534],[-87.76583507916236,41.90908878379296],[-87.76580508091799,41.909163169015585],[-87.76572416664557,41.90937873065775],[-87.76515016417429,41.90938473821039],[-87.76465551843944,41.90938983927344],[-87.76421657256806,41.90939436411408],[-87.76394549614866,41.90939715749641],[-87.76341953589767,41.90940380514512],[-87.76299509271051,41.909409168150056],[-87.76261859913203,41.909413923783916],[-87.76217729473986,41.90941919392487],[-87.76177034344988,41.9094240477474],[-87.7614775492886,41.9094275389459],[-87.7611402598909,41.90943163287885],[-87.76093553476441,41.909434117217025],[-87.76054629245178,41.909438839552315],[-87.76025603243876,41.90944236030941],[-87.75968391733807,41.90945028848222],[-87.75933027185751,41.909455183147614],[-87.75905022200557,41.90945905869961],[-87.75843585596704,41.909467229823164],[-87.7581029349979,41.90947165640754],[-87.75762594784737,41.9094779967634],[-87.75719224375425,41.9094837101071],[-87.75688114711042,41.909487807411594],[-87.756572843948,41.90949186658698],[-87.75579562249426,41.90950127161691],[-87.75587245427629,41.909201081245385],[-87.75589480291877,41.909113761155496],[-87.7559170617604,41.90901626058793],[-87.75591816499683,41.90900068710388],[-87.75592901582719,41.908847522697464],[-87.75592261628825,41.90855072874734],[-87.75590701168254,41.907901583332055],[-87.7559024567821,41.90768628708922],[-87.75589711872502,41.90743397043033],[-87.7558833574375,41.906910519968896],[-87.75587327718615,41.90647594694211],[-87.75586309843568,41.90598709235699],[-87.7558599923629,41.905874589592216],[-87.75584894580767,41.9054745067026],[-87.75584073467653,41.905109756393955],[-87.7558296168474,41.90464361926511],[-87.75582102190974,41.90430109475905],[-87.75581567935546,41.90406212672864],[-87.75580905718162,41.903765907972705],[-87.75580522243331,41.90360795772037],[-87.75580021649402,41.9034017578459],[-87.75579462042461,41.903154900186195],[-87.75578704779701,41.90282084588743],[-87.75578430849102,41.902699015586826],[-87.75577860378989,41.90244530909973],[-87.75577438754358,41.90224940487752],[-87.75620360539683,41.90224225907021],[-87.75639354712571,41.902241109798496],[-87.75671404737874,41.9022391702091],[-87.75701199201195,41.902235314656856],[-87.75722995823375,41.90223248411903],[-87.75763142423034,41.90222800247158],[-87.75824645935947,41.90222113363988],[-87.75859710173398,41.90221721625097],[-87.75888592549944,41.90221455661937],[-87.75921111819133,41.902211561084535],[-87.7595320881746,41.90220837695307],[-87.75981815844396,41.90220553848411],[-87.76020971129317,41.90220046812392],[-87.7604250688604,41.902197673385615],[-87.7609369544711,41.902191730195],[-87.76119386504101,41.90218967873029],[-87.76120492257532,41.90218959908055],[-87.7619053447339,41.90218301282507],[-87.76281212095736,41.90217401988086],[-87.76345045871074,41.90216791402847],[-87.76382531973448,41.90216428445109],[-87.76443430641586,41.902158385133745],[-87.76503095611284,41.902151769774484],[-87.7650416025627,41.90215165149685],[-87.76505255686808,41.90215153007653],[-87.76533084171079,41.90214844340522]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3335255.19421","perimeter":"0.0","tract_cent":"1159576.97940071","census_t_1":"17031242500","tract_numa":"15","tract_comm":"24","objectid":"289","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906606.01106467","census_tra":"242500","tract_ce_3":"41.89944577","tract_crea":"","tract_ce_2":"-87.68931919","shape_len":"9325.53349947"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68691263224399,41.89847008345721],[-87.68690446824142,41.89818870207576],[-87.68689846139465,41.897935704403146],[-87.6868937932477,41.89775392723542],[-87.68688836994227,41.89756213345756],[-87.6868817721711,41.8973288045029],[-87.68687642906107,41.89712655149718],[-87.68686907966847,41.896875576955594],[-87.68686491258478,41.89665676687852],[-87.68686149170307,41.89647712567166],[-87.68685460202863,41.89620723710192],[-87.68685427749395,41.8961945107881],[-87.68684859502507,41.895993106270936],[-87.68684259761734,41.89574324659069],[-87.6872502136412,41.89573680464935],[-87.68750734913664,41.89573418959374],[-87.68780276046789,41.895731207903665],[-87.68819962840105,41.89572743323839],[-87.68850054384532,41.895724979303075],[-87.68930746908606,41.89571619999723],[-87.68960042988942,41.8957130111349],[-87.68975110881333,41.895711715201145],[-87.69012079118937,41.89570846265192],[-87.69054163967633,41.89570499258531],[-87.69089185150706,41.89570210386623],[-87.69102214619517,41.8957007196649],[-87.69121228009072,41.8956987094525],[-87.69177259280457,41.89570221551961],[-87.69177975867979,41.895962721188845],[-87.69178458825502,41.8961604277969],[-87.69178712314343,41.896254474960045],[-87.69179105608436,41.896419343374966],[-87.69179628864961,41.89660482828037],[-87.69180119749204,41.89677862091347],[-87.69180466229062,41.896913162858816],[-87.69180827507415,41.89705846304362],[-87.69180969075441,41.897115413906356],[-87.69181234986874,41.897220395892155],[-87.69181773238068,41.89751253397098],[-87.69158496998243,41.897515558053676],[-87.69131494298831,41.89751736921187],[-87.69120723532293,41.89751863306314],[-87.69076420872948,41.8975238113107],[-87.69058194113965,41.897524692738806],[-87.69025391824394,41.897526278580045],[-87.6899567022233,41.89752889476241],[-87.6896033547818,41.89753212856953],[-87.68935135806099,41.89753475215398],[-87.68935913631381,41.89780949128585],[-87.68936298581923,41.89799210131195],[-87.68936582221812,41.89812382665325],[-87.68937028495792,41.89833406031497],[-87.68937265870684,41.89844350587905],[-87.68972298551667,41.89843955031588],[-87.68992333555973,41.89843787393248],[-87.69017356957903,41.89843592775475],[-87.69047435035084,41.89843355051258],[-87.69090597816249,41.898430203147754],[-87.69130697365782,41.898426682900165],[-87.69165595594785,41.898423309696014],[-87.69183926965046,41.898421544649565],[-87.69184202491947,41.89852731309809],[-87.69184581621343,41.89871369548135],[-87.6918504527755,41.898874417918755],[-87.69185745028821,41.899118398347554],[-87.69186322417863,41.899330240200285],[-87.69186806263808,41.89950775518889],[-87.69187140595514,41.899680221753286],[-87.69187405798847,41.89978504585827],[-87.69187582766088,41.89985497205348],[-87.69188155904979,41.90006406007338],[-87.69188526791652,41.900241406544595],[-87.6918881425665,41.90037886086298],[-87.69189208192996,41.9005431254615],[-87.69189620903386,41.9006965239253],[-87.69189915004038,41.90080584331368],[-87.69190272626584,41.9009403309008],[-87.69190819892776,41.90115084032205],[-87.69191187655132,41.90129230294506],[-87.69191562671534,41.901464469861864],[-87.6919181354205,41.9015925082773],[-87.69191915224812,41.9016444017083],[-87.69192685801816,41.901869115395705],[-87.69192994522794,41.9019497034224],[-87.69193150447859,41.90204099421689],[-87.69193295636408,41.90212598254586],[-87.69193632988095,41.90233212097866],[-87.69194005022939,41.90248224407136],[-87.69195209632201,41.902968358649396],[-87.69176743191389,41.90297025516856],[-87.69100269354925,41.90297852114928],[-87.69072226221664,41.90298153118744],[-87.69054052930855,41.90298348165535],[-87.69015854650266,41.90298691330595],[-87.69014975488851,41.902986992219056],[-87.68974641516563,41.902990614344255],[-87.68948850066421,41.90299266661125],[-87.68918393533535,41.90299508943898],[-87.68846060922422,41.90300200656989],[-87.68825778107616,41.90300397985057],[-87.6880314033585,41.903006181577894],[-87.68781913554889,41.903007944889275],[-87.68772946060395,41.90300868992835],[-87.68750433658707,41.90301049069489],[-87.68722331170017,41.90301146195617],[-87.68702676175086,41.90301612617931],[-87.68702474034785,41.902944909295925],[-87.68701969667929,41.90276720426828],[-87.68701006963484,41.90235949384499],[-87.68700585500875,41.9020869507456],[-87.68700274846522,41.90188607191477],[-87.68699178047902,41.90159786564831],[-87.68698378764657,41.901366838009146],[-87.68697938461852,41.90120095047583],[-87.68697521689838,41.901043930341665],[-87.68697165467113,41.900901758833925],[-87.68696673557547,41.90070480471989],[-87.68696397041293,41.900592906622116],[-87.68695980176624,41.900292733896485],[-87.68695794886929,41.900159255855144],[-87.68695169836374,41.89992667402342],[-87.68694734357494,41.89976479440341],[-87.68694029416727,41.89950224098699],[-87.68693647012378,41.89937944969209],[-87.68692864084389,41.899128053504825],[-87.68692246536239,41.898855268971765],[-87.6869194050228,41.89870352284473],[-87.68691263224399,41.89847008345721]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4527167.59185","perimeter":"0.0","tract_cent":"1166833.93722782","census_t_1":"17031240100","tract_numa":"16","tract_comm":"24","objectid":"290","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911580.11174017","census_tra":"240100","tract_ce_3":"41.91294244","tract_crea":"","tract_ce_2":"-87.66252166","shape_len":"8701.88897948"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6599058807401,41.91547390905349],[-87.65986984529766,41.91545130480543],[-87.6595469819935,41.91530728714368],[-87.65937015569499,41.91520866464884],[-87.65923478593139,41.915147359788364],[-87.6591490066673,41.915080934600255],[-87.65865084323801,41.914707735368964],[-87.65830802491777,41.91436256411294],[-87.6580772270633,41.91410805886253],[-87.65786196920335,41.91380864030179],[-87.65771538144755,41.91342524254539],[-87.65759512578254,41.91281453011222],[-87.65753056937376,41.91264893057144],[-87.65746243578715,41.91248084122606],[-87.6574120103435,41.91235643882995],[-87.65729010232286,41.912029843904314],[-87.6571174455624,41.911572214878134],[-87.6570573851183,41.91143574736684],[-87.65701224668065,41.91127436777712],[-87.65693010338141,41.911075585872865],[-87.65686079758393,41.9107845103937],[-87.6572789865873,41.9107836373929],[-87.65739080261534,41.91078340379015],[-87.65809452849082,41.910765947103094],[-87.65861515440898,41.910765467397475],[-87.65901851002359,41.910765092555465],[-87.65937051096232,41.9107606827351],[-87.65952825042173,41.910758770374926],[-87.65986466961219,41.910754690765096],[-87.6600976278166,41.91074773688626],[-87.66022260962482,41.910747584302406],[-87.66039813425576,41.91074247588763],[-87.66064990539732,41.91073135727378],[-87.66094012619497,41.91072559277923],[-87.66116353726994,41.910721691142605],[-87.661333189027,41.91071872803399],[-87.66162644970575,41.910713885190646],[-87.66216105577864,41.91070613503325],[-87.66233325773051,41.91070363787642],[-87.66250591614352,41.910701298725854],[-87.66283122457597,41.91069878464164],[-87.66305346092935,41.910697375754864],[-87.66320531720007,41.91069641274674],[-87.66333633808695,41.91069558181011],[-87.66357497466402,41.91069362600405],[-87.66390759291065,41.910683583466856],[-87.66405767148197,41.910680921265744],[-87.66419422797527,41.91067862244127],[-87.66427311767971,41.910677444101225],[-87.66445939777945,41.910674863599134],[-87.6646206465656,41.91067262961353],[-87.66476521442358,41.91067062648992],[-87.66497652358976,41.9106676982854],[-87.66519185177017,41.910664714043484],[-87.66533976989413,41.91066266382887],[-87.6656106372923,41.910658908853584],[-87.66565567738219,41.91065828436719],[-87.66600512634217,41.910653438982656],[-87.6661296102695,41.91065207674843],[-87.66637726192604,41.910648843408005],[-87.66649779866641,41.91064726904479],[-87.6668452611708,41.910642731190975],[-87.66708012830328,41.910639378221205],[-87.6676916188863,41.910630287412374],[-87.66769667592283,41.910833509183455],[-87.66770230069557,41.91107006703632],[-87.66771203357011,41.91142042449116],[-87.66772039829021,41.91168323304468],[-87.66772900797444,41.911987782473496],[-87.66773787728611,41.91229938661093],[-87.66774190215835,41.91245012991682],[-87.66774962033374,41.91273919009377],[-87.66775265795114,41.91284892228554],[-87.66775427218224,41.91290724625166],[-87.66775758092368,41.9130267766375],[-87.66776578399866,41.913333464410194],[-87.66780009946605,41.91428389087868],[-87.66780074681203,41.91430182267981],[-87.66768550847237,41.914286856989825],[-87.66768481978154,41.91428676765193],[-87.66759832410223,41.91427553461873],[-87.66743699455907,41.91428124540018],[-87.66736536371204,41.91428687523939],[-87.66723257902382,41.91429805258662],[-87.66708818099784,41.914310994719315],[-87.66700689443108,41.91431866188205],[-87.66681142199396,41.914338546001076],[-87.66658166739934,41.91439484093889],[-87.66648773789635,41.91441796473535],[-87.66639887487622,41.914439745218864],[-87.66621424124138,41.914484981539175],[-87.66611936480663,41.91451084348654],[-87.66602674157011,41.91454083479311],[-87.66593637188429,41.91457495546631],[-87.66582841872533,41.91462166591163],[-87.66541873349405,41.914800402972354],[-87.66536014241098,41.91482578901632],[-87.66525480582993,41.91489166364291],[-87.66512300936562,41.91492868999134],[-87.66485404526492,41.91504512631033],[-87.66417628109895,41.91534270095143],[-87.66389764164727,41.91546182286042],[-87.66381368020235,41.91549769408237],[-87.66362055999939,41.91561500657832],[-87.66362045478506,41.91561498428526],[-87.66302887729515,41.91548825810884],[-87.66298260796893,41.915503465444935],[-87.66287399043868,41.915543089112035],[-87.66278863987205,41.91556772785277],[-87.66273297508054,41.915574921958886],[-87.66269079980651,41.91558159109481],[-87.66264862736095,41.91559149842107],[-87.66261038807987,41.91561171956233],[-87.66256082116736,41.915640107203416],[-87.66251544501097,41.91566473227083],[-87.66244891656117,41.91569184102757],[-87.66238185080529,41.91573516444545],[-87.66235807623545,41.915759997998336],[-87.66227636052344,41.91580938309197],[-87.66221580777476,41.915830708597476],[-87.6621511579989,41.915867844318775],[-87.66206618405339,41.91591951536775],[-87.66197621311935,41.91594678839218],[-87.66186408550918,41.91598811943976],[-87.66178104121988,41.91601353929853],[-87.66173397730014,41.91603431226469],[-87.66162234098742,41.91608135394277],[-87.66151276161632,41.91612146437549],[-87.66143738667877,41.91614413001843],[-87.66132892672108,41.91617911566789],[-87.66125963002919,41.916179313548746],[-87.6611722259148,41.916182424317164],[-87.66113153902211,41.91617675256613],[-87.66105709973249,41.916159329992944],[-87.661015312252,41.91615000193395],[-87.6609297828908,41.9161180248204],[-87.66086959243323,41.916073270727956],[-87.66073539839373,41.91596963108988],[-87.66065153182298,41.91592976013206],[-87.6605998500673,41.91590399091661],[-87.66047768506233,41.915823555292135],[-87.66026814792862,41.91571176230174],[-87.66020818751903,41.915669671110294],[-87.66008389799451,41.91558867376497],[-87.66004700724383,41.915564446835425],[-87.66004171464058,41.915561093913595],[-87.65993751096639,41.91549525255309],[-87.6599058807401,41.91547390905349]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1108624.35353","perimeter":"0.0","tract_cent":"1175967.46008797","census_t_1":"17031081100","tract_numa":"8","tract_comm":"8","objectid":"301","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1907017.42421663","census_tra":"081100","tract_ce_3":"41.9002213","tract_crea":"","tract_ce_2":"-87.62910519","shape_len":"6096.67970634"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62931898453412,41.896661705187775],[-87.62977463923221,41.89665552470661],[-87.62978046359953,41.89702995582629],[-87.62980104410899,41.897510816972385],[-87.62981546740436,41.89798888843515],[-87.62982442183818,41.8982856850449],[-87.62982714092792,41.89844429072919],[-87.62983242398356,41.89875244571054],[-87.62983868907348,41.899117879128895],[-87.62984341237012,41.899393374262566],[-87.6298602726425,41.89980692407928],[-87.62986454551367,41.899911724271035],[-87.62987918329011,41.90027076023239],[-87.62988880302744,41.90057254569684],[-87.62990000181341,41.90092387806754],[-87.6299027914623,41.90101138130699],[-87.62991396492224,41.90149267844231],[-87.62991563128313,41.90155056452011],[-87.62992464340215,41.90186365874383],[-87.62993624980471,41.90226690809725],[-87.6299494112713,41.90271443553002],[-87.62996289955477,41.903154388927526],[-87.62997889621342,41.90367614070272],[-87.62998608505922,41.903923187272305],[-87.62944442412935,41.90392908309966],[-87.62932130784372,41.90393080254727],[-87.62910265870428,41.903934655274284],[-87.6286780013847,41.90394189780993],[-87.62867974866592,41.90378299419463],[-87.62866054775995,41.903264134230646],[-87.628628360035,41.903180167648756],[-87.62853370744112,41.90293325211763],[-87.62841666691915,41.902633248008925],[-87.62832098932637,41.90237276536545],[-87.62834985544956,41.90232306753812],[-87.62835639119203,41.902180301926826],[-87.62834528013968,41.90188396335545],[-87.62834449478544,41.901680665783275],[-87.6283373078409,41.90161939782904],[-87.62833618242874,41.90155841406936],[-87.62833585924719,41.901540876438226],[-87.62832766555519,41.90109675437942],[-87.62831712575512,41.90074046050939],[-87.62831276113334,41.90059290373976],[-87.62830734306883,41.90040974806786],[-87.62829388912299,41.90007338711322],[-87.62828973902035,41.89993698997071],[-87.62826548898872,41.89913986403389],[-87.62825965492736,41.89894809600058],[-87.62825157723238,41.89858717935568],[-87.62824844941504,41.89847022394361],[-87.62824433517879,41.89831638929485],[-87.62823965729787,41.898141470247516],[-87.62823596515184,41.89800873667869],[-87.62823201733977,41.8978668234448],[-87.6282267069662,41.897675913687195],[-87.62822237770025,41.897520096633464],[-87.62821093680424,41.89711020209783],[-87.62820388378316,41.896865757782024],[-87.6281993917997,41.896677393628586],[-87.62888222907164,41.89666794546539],[-87.62918890190944,41.89666356402449],[-87.62931898453412,41.896661705187775]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7091319.98856","perimeter":"0.0","tract_cent":"1150609.66300234","census_t_1":"17031220700","tract_numa":"31","tract_comm":"22","objectid":"292","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917018.07318997","census_tra":"220700","tract_ce_3":"41.92819743","tract_crea":"","tract_ce_2":"-87.72198363","shape_len":"10649.7795383"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72638679675285,41.92448937760044],[-87.72676858401366,41.92448395547665],[-87.72677855069102,41.92473760522701],[-87.72678588653211,41.9249804529609],[-87.72679217447921,41.925188608663035],[-87.72680431565072,41.92562157465804],[-87.72681576580592,41.92605379602816],[-87.72682238220632,41.9263210637984],[-87.72682743364027,41.9265251234724],[-87.72684310308762,41.92702015523814],[-87.72685451320918,41.92749156384137],[-87.72686069165725,41.92766483920719],[-87.72687129572934,41.927962232672485],[-87.72687552888743,41.92813173404286],[-87.72688829056136,41.928612264637366],[-87.7268897813994,41.928665426244194],[-87.72690293258619,41.92913437602306],[-87.72691434492442,41.92954609755942],[-87.72692156830728,41.92976641467531],[-87.7269247503357,41.92997870498493],[-87.72693512257887,41.930255973699786],[-87.72694665081912,41.930633530166446],[-87.72695298597733,41.93087609821104],[-87.72696013572971,41.93114984493878],[-87.72696565149096,41.931335328764064],[-87.72697120119547,41.93152196533669],[-87.7269787052975,41.931790361843575],[-87.72664971405293,41.93179672027227],[-87.7263823645817,41.93179942806403],[-87.72576113718726,41.93180571818448],[-87.72534292115611,41.93180995031961],[-87.72453830661361,41.93182118601403],[-87.72418953418254,41.931826054357494],[-87.72393556155505,41.93182877939389],[-87.72331401941106,41.93183819756172],[-87.7233000245965,41.93183840943085],[-87.7232853858156,41.93183863132352],[-87.72288684172587,41.931844668406136],[-87.72233117137405,41.931848628236374],[-87.72208764876083,41.93185122367443],[-87.72186064207419,41.93185364255874],[-87.72132910035423,41.9318593176838],[-87.7208585674677,41.931867303716416],[-87.72064994878804,41.931870843808035],[-87.71987436835715,41.93187800883883],[-87.71963630763244,41.931880237481344],[-87.71930335926267,41.93188335394156],[-87.71888454143125,41.93188797398332],[-87.71841697553926,41.931894366278236],[-87.71803493882616,41.93189958771387],[-87.71733154840156,41.93190929033533],[-87.71719504598568,41.93191091658245],[-87.71719035383579,41.9315769207411],[-87.7171864000973,41.93144828406232],[-87.71717263799376,41.931000538633235],[-87.71716368716028,41.93072014065523],[-87.71715007919586,41.93027824750458],[-87.71714494003672,41.93009126523881],[-87.71713946393184,41.92989202325585],[-87.71712839780355,41.929537382588734],[-87.71712698238133,41.92949398879791],[-87.71711579971313,41.92915101043625],[-87.71710712358237,41.92886880265058],[-87.7171026286674,41.92871131351396],[-87.71709437205487,41.92842202922825],[-87.71708765672986,41.92825492968479],[-87.71708073395534,41.928082659999575],[-87.71707430534768,41.92780414313125],[-87.71707051622381,41.92763996156749],[-87.71705672164084,41.927087749287196],[-87.71704608512435,41.926596915076324],[-87.71704051697957,41.926414769005056],[-87.71703294954135,41.92616720822554],[-87.71701979497394,41.92560967543666],[-87.71700837912564,41.925131130776684],[-87.71700755513437,41.925104990885494],[-87.71699911710814,41.924837338730825],[-87.71699394670084,41.9246033919614],[-87.71745483626772,41.92459788065767],[-87.71821499089519,41.92458913384835],[-87.7184505546798,41.924586422461985],[-87.71906172753353,41.92457814052124],[-87.71943824747676,41.92457341602022],[-87.71960323090865,41.92457134546855],[-87.72004157859953,41.92456584242299],[-87.72032746583925,41.92456204552918],[-87.72066059631936,41.92455757246649],[-87.72101629270249,41.92455279561754],[-87.72157610959195,41.924546668774276],[-87.72188154692482,41.92454232672671],[-87.7221995973089,41.924537804567706],[-87.72283172887796,41.92453189181525],[-87.72310382518647,41.92452852620558],[-87.72360911745102,41.924522273920296],[-87.7240628354731,41.92451735524878],[-87.72425907722031,41.924515682338395],[-87.7243268398533,41.92451509775049],[-87.72460793950715,41.924512672318826],[-87.72525059351628,41.924505347591065],[-87.72555139711822,41.9244991422125],[-87.72584761897045,41.92449303035602],[-87.72638679675285,41.92448937760044]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1736623.03523","perimeter":"0.0","tract_cent":"1163389.06336771","census_t_1":"17031222000","tract_numa":"8","tract_comm":"22","objectid":"293","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912669.14747815","census_tra":"222000","tract_ce_3":"41.91600407","tract_crea":"","tract_ce_2":"-87.67514658","shape_len":"5270.58820381"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67632589084299,41.91417880879524],[-87.67754520615992,41.914170810833],[-87.6775465614986,41.91423028219122],[-87.67755172647401,41.91445700070643],[-87.67755510272004,41.91471571851387],[-87.6775569351253,41.91485617864551],[-87.6775621576534,41.91510527528299],[-87.67756752591033,41.91536131454414],[-87.67757003614139,41.91547378766778],[-87.67757174558264,41.915553763994],[-87.67757444476528,41.91567606225867],[-87.6775783239903,41.91584265911632],[-87.67758052914411,41.915942369823476],[-87.67758575786293,41.91617881473053],[-87.6775862925446,41.916237846146466],[-87.67758800550546,41.916402040118875],[-87.67759310403274,41.91669230187992],[-87.67759763845564,41.916991119653446],[-87.67760062959988,41.917188199504125],[-87.67760513329362,41.917302384848576],[-87.67760690174252,41.91734720847048],[-87.67762149764636,41.91775780640855],[-87.67737884519751,41.91776313834157],[-87.67692579854989,41.91777144392634],[-87.67659159937207,41.91777757353912],[-87.67640352381387,41.91778096226609],[-87.6761696439087,41.917785175809584],[-87.67565962317038,41.91779567499885],[-87.67538954594879,41.917801207882505],[-87.675186963032,41.91780411357529],[-87.67495345818004,41.91780746235902],[-87.67446806107868,41.917817329055055],[-87.67414958421809,41.917823788753324],[-87.67397577333404,41.91782699825857],[-87.67366438030798,41.917832747565114],[-87.67329897750423,41.91783967624485],[-87.67289333392263,41.91784741484619],[-87.67276153435708,41.91784987484947],[-87.67275808067444,41.91773022695572],[-87.67275147652748,41.91747047496],[-87.67274950713391,41.91739302206552],[-87.67274281525013,41.91712981182213],[-87.67273298989736,41.916742956330125],[-87.67272650614635,41.91648779058738],[-87.67271872048153,41.91618137765623],[-87.672713823602,41.916029820314954],[-87.67271039304688,41.91592361923611],[-87.67270153192734,41.915578673583674],[-87.67270130952167,41.91557002825765],[-87.67270017288119,41.915525839359006],[-87.67269583062479,41.915358416412595],[-87.67267801518491,41.91466416115681],[-87.6726759386737,41.91458324932974],[-87.67266873833432,41.91430173229391],[-87.67266732683025,41.91425042601686],[-87.67305570333131,41.91424331062074],[-87.67320537214002,41.91424097083599],[-87.67361270553481,41.914234602216084],[-87.67389122634962,41.91422966616014],[-87.6743658020968,41.914221253474096],[-87.67448269318866,41.91421934081615],[-87.67496050982393,41.914211520281086],[-87.67511159286691,41.914204938601294],[-87.67522604174812,41.9141999524685],[-87.67570177198795,41.91419850682912],[-87.67571867807344,41.91419797330293],[-87.67632589084299,41.91417880879524]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6151330.83464","perimeter":"0.0","tract_cent":"1158388.3126447","census_t_1":"17031210900","tract_numa":"32","tract_comm":"21","objectid":"294","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919713.78827405","census_tra":"210900","tract_ce_3":"41.93543891","tract_crea":"","tract_ce_2":"-87.69332587","shape_len":"10075.3422383"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68952230719697,41.93655724729955],[-87.6894758919756,41.93654952274839],[-87.6894498527909,41.93655129767961],[-87.689431013217,41.93654981991726],[-87.6894114489968,41.93653634584678],[-87.68937164270747,41.93653293930096],[-87.6893153252193,41.93652315586606],[-87.6892483671422,41.93651517878334],[-87.68915417543555,41.93650718608165],[-87.68902688502067,41.936497608018485],[-87.68897701172831,41.936497520233885],[-87.68891239098973,41.9364983650184],[-87.68887407358383,41.93649310086147],[-87.68885870991679,41.9364822295665],[-87.68882512155544,41.93648182121581],[-87.68877811597505,41.93648528948597],[-87.68874853624965,41.936473680305774],[-87.68870661228691,41.93646888953077],[-87.68866064294419,41.93646070063607],[-87.68862602334981,41.93646050624898],[-87.68859986978086,41.93646269197816],[-87.68856318735234,41.93645562543886],[-87.68852681819654,41.93644672201983],[-87.6884874204835,41.93642830657911],[-87.68846644974543,41.93641218999708],[-87.68844238473567,41.93639676952883],[-87.68814979877506,41.9361953740195],[-87.68808023980114,41.93616143751019],[-87.68804301837692,41.936138517435104],[-87.68799728059169,41.93611103770931],[-87.68798678784357,41.936103941181365],[-87.68798425423519,41.93596678317046],[-87.68797966366411,41.93571489284136],[-87.68797718480114,41.93565680901272],[-87.68797074487384,41.935505897779336],[-87.68796408374185,41.93515317313155],[-87.68795711117406,41.93487508951288],[-87.68795271060448,41.934597075221966],[-87.68794949144943,41.93439873174119],[-87.68794819925492,41.93431911517933],[-87.68794135185574,41.933986668930444],[-87.68793725199568,41.933787613841126],[-87.68793277104884,41.933545542306895],[-87.687926963206,41.933279539730734],[-87.6879237997056,41.93307922122656],[-87.68792045813103,41.93286762296378],[-87.68791849381917,41.932690637070216],[-87.68791770925264,41.93262125901061],[-87.68791721148646,41.93257723862211],[-87.68788269111239,41.932179126647384],[-87.68849657386475,41.932162972587605],[-87.68878975660597,41.9321579571682],[-87.68886425553093,41.93215668243925],[-87.68912724518665,41.93215653150629],[-87.6895785108703,41.932156271086654],[-87.68973018764032,41.93215567656135],[-87.6899501492944,41.93215481410787],[-87.69013681634493,41.93215382921569],[-87.69034833002718,41.9321512532064],[-87.69074643913395,41.93214640293402],[-87.6909566415776,41.93214392933211],[-87.69118724274931,41.932141212682176],[-87.6915671827243,41.93213857928518],[-87.69200246839725,41.932135560592386],[-87.69237528764465,41.93213360867306],[-87.69277295922716,41.93213022202917],[-87.69318905550428,41.93212667740273],[-87.6935978462209,41.93212914788578],[-87.69376164016394,41.932129566419846],[-87.69391008617092,41.93212554142392],[-87.69399784832234,41.93212316160063],[-87.6941326671103,41.93211950582402],[-87.69428326615508,41.9321154215306],[-87.69474550362428,41.93211172356469],[-87.69495708965617,41.93211052255451],[-87.6951752140137,41.93210928394915],[-87.6951769623468,41.93210927390791],[-87.69519967963629,41.93210914495446],[-87.69534294693567,41.93210833107345],[-87.69551625195126,41.93210734633749],[-87.69568898582418,41.93210636475421],[-87.69578056725344,41.932105843956116],[-87.69588624338759,41.93210524326917],[-87.69613265307201,41.93210384209386],[-87.69636185618398,41.9321025381286],[-87.69644376447285,41.93210120134195],[-87.69662389840698,41.93209641776226],[-87.69704840935412,41.93209610173119],[-87.69761766565956,41.93209567537293],[-87.69762392126282,41.93235194738782],[-87.69762469560631,41.93241830697187],[-87.6976249058913,41.93246004775793],[-87.69762735182275,41.93255270651967],[-87.69762956610327,41.932636569313885],[-87.69763534278529,41.93285536218319],[-87.6976388033404,41.932986448409395],[-87.69764219350151,41.93311485396118],[-87.6976438314085,41.933176894521345],[-87.69764650579022,41.93327819554216],[-87.69764810372398,41.93333871064067],[-87.69765158089396,41.933470422355775],[-87.69765427997596,41.93357264282237],[-87.69765823486264,41.93370369581938],[-87.69766503891358,41.93383562133321],[-87.69767094865068,41.93395020499801],[-87.6976801473858,41.93412855568442],[-87.69768282595143,41.934217451183336],[-87.69768101079966,41.93428048056705],[-87.69767818054889,41.93437874589631],[-87.69768297666917,41.934457029410346],[-87.69769114729024,41.93459039715012],[-87.69769505228642,41.93471530800521],[-87.69770164245385,41.93490661698213],[-87.69770651917133,41.93504841044379],[-87.69771289417808,41.93525769259125],[-87.69771712969658,41.93541594781993],[-87.69772094751448,41.93555704935143],[-87.69772473557127,41.93574334528685],[-87.69772941747281,41.93597361406809],[-87.69773198997518,41.9360735728249],[-87.69773651271883,41.936248843788114],[-87.69774349922808,41.9365208895971],[-87.69774730829738,41.93665766259379],[-87.6977553662288,41.93694699549195],[-87.69775820722425,41.937045830587486],[-87.69776361653838,41.93723394937803],[-87.69777329535476,41.93756852254935],[-87.69778528755806,41.93798304927368],[-87.69779059642788,41.938151683791745],[-87.69779271441395,41.93825812101738],[-87.69779713916719,41.93848044979494],[-87.69780197377199,41.93872339485958],[-87.69781211713071,41.93903975575844],[-87.69782343511656,41.93939274062797],[-87.69736674264715,41.93939499261166],[-87.6969172065733,41.939397331567754],[-87.6965512521577,41.93939957335077],[-87.69625226924282,41.93940141007709],[-87.69568873410834,41.93940226090861],[-87.6952715469268,41.93940645664843],[-87.6948046157325,41.93941115085364],[-87.6943780929171,41.93941300412119],[-87.69386044705661,41.939415610665506],[-87.69355621098278,41.939417153979115],[-87.69310807499907,41.939421699033566],[-87.69300733087358,41.93942272036835],[-87.69267966367994,41.93942604230422],[-87.69256665973063,41.93942656948978],[-87.69252670299586,41.939413690428665],[-87.69247171990476,41.93939510704822],[-87.69243859978691,41.939380816893944],[-87.69244422962682,41.93936183088329],[-87.69244896628838,41.93934031520544],[-87.69244347434147,41.93931245817166],[-87.69243161626824,41.939296365742734],[-87.6923947765078,41.939271846318604],[-87.69237183239377,41.939254402214175],[-87.69235642233788,41.93923702760762],[-87.69234275890746,41.939217741796824],[-87.69231549221834,41.9392025238084],[-87.69226739647262,41.93919355610542],[-87.692233593045,41.93917778019831],[-87.69218832541546,41.93915433877813],[-87.69212749168805,41.939118104676595],[-87.6920790880502,41.9390848488383],[-87.69204967965243,41.939070634185924],[-87.69201128821736,41.939057906112716],[-87.69198434062619,41.93904386984192],[-87.69195394837665,41.93903247621473],[-87.6919351949898,41.939029654677086],[-87.69191938357727,41.93901200334743],[-87.69190251550519,41.93900076731023],[-87.6918682945894,41.938993660969125],[-87.69181850335144,41.93897052343593],[-87.69178120690025,41.93895856978505],[-87.69178010487178,41.9389585087429],[-87.69175416983728,41.93894980186049],[-87.69171028066474,41.93893921089855],[-87.69166962942259,41.93892460401369],[-87.6916240193661,41.93889136359521],[-87.69158594461696,41.93886173276091],[-87.69155332087666,41.93883830687589],[-87.69152806956112,41.938816404070856],[-87.69150904448941,41.938804031062915],[-87.69148630576944,41.938791801944866],[-87.69147291415115,41.9387747678086],[-87.69147170113328,41.93876378415146],[-87.69145521072745,41.93874055819696],[-87.69144128915423,41.938717730792085],[-87.6914279121488,41.938699242295996],[-87.69141191984704,41.93869231978082],[-87.6913970296058,41.938681753613736],[-87.69138971475712,41.9386635734284],[-87.69138507487922,41.938653421318214],[-87.69137883162193,41.93864559282927],[-87.69132019067516,41.93858508421957],[-87.6912673416552,41.93851870789774],[-87.69122665621208,41.93846724580164],[-87.69119812221955,41.938420873572205],[-87.69111473947846,41.93832068228071],[-87.69105685595747,41.93823965101082],[-87.69102039912373,41.93816236194896],[-87.69099027985148,41.93809822569864],[-87.69096524455098,41.93804385986198],[-87.69092618386661,41.9379660622405],[-87.69089872964558,41.937911024515905],[-87.6908838888938,41.93787361981829],[-87.69087243021217,41.937854455934286],[-87.69086436817912,41.937826447226875],[-87.69080072417105,41.93760918248797],[-87.6907810712927,41.937542091595546],[-87.69071708152168,41.9373994456849],[-87.69041339021804,41.936904938581684],[-87.69036736925251,41.93686524643773],[-87.69032155047253,41.936831043847135],[-87.69028503497363,41.93680369900813],[-87.690232232698,41.9367695395959],[-87.69019647896064,41.93673588728955],[-87.69014925684209,41.93669871301149],[-87.69011465153405,41.93667513839968],[-87.69007236047057,41.9366483374231],[-87.690024817466,41.936628477323396],[-87.68998633454086,41.93661772389595],[-87.6899336877771,41.93660834552302],[-87.68991862748534,41.93660749274699],[-87.68985690110055,41.93660558262032],[-87.68981015565285,41.936601451281646],[-87.68974926519016,41.93658947449521],[-87.68968774326466,41.93657823507597],[-87.68958102604095,41.93656218682758],[-87.68952230719697,41.93655724729955]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4676487.05448","perimeter":"0.0","tract_cent":"1144693.93540034","census_t_1":"17031191000","tract_numa":"21","tract_comm":"19","objectid":"295","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1913707.3575423","census_tra":"191000","tract_ce_3":"41.91922619","tract_crea":"","tract_ce_2":"-87.74380566","shape_len":"9912.62808639"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74134621730076,41.91422319564044],[-87.74133544805062,41.91389760542004],[-87.7416657345073,41.91393841281163],[-87.74217585283384,41.914000384758566],[-87.7427258696817,41.91406873309076],[-87.74348141860057,41.91416043221239],[-87.74356444916727,41.914170806821325],[-87.74399612173941,41.914223791468075],[-87.74453881295281,41.91429003616764],[-87.74502417050726,41.91434843765457],[-87.74563061944096,41.91442357929186],[-87.74585494697052,41.91445079743671],[-87.74600890561744,41.9144690836237],[-87.74603233643545,41.91510517516927],[-87.74606272253304,41.915924484151134],[-87.74607502767337,41.91633598990442],[-87.74608325474223,41.91647367088942],[-87.7461106848646,41.91693271874491],[-87.74613659022525,41.91738434549173],[-87.74614693996017,41.917843133033294],[-87.74615850709394,41.9183558698519],[-87.746164492711,41.91859517331227],[-87.74616852946326,41.918756563278144],[-87.74618555686347,41.919437290255146],[-87.74619039776346,41.919670614997244],[-87.7462023255689,41.920245552035446],[-87.74621029838005,41.920584160899196],[-87.74622327190365,41.92113511916695],[-87.74624621130033,41.92203984449846],[-87.74625468569272,41.9224157685631],[-87.74626323395485,41.922786087617055],[-87.74627530639007,41.92332566513471],[-87.7462770112652,41.923401880825985],[-87.74628577833701,41.923736526503774],[-87.7462865116194,41.92376452440898],[-87.74630174256822,41.9242392153207],[-87.74591302481818,41.92424529674747],[-87.74543603651085,41.92425166451271],[-87.74507706361639,41.924255546065744],[-87.74417885820831,41.924265253694074],[-87.7438664572751,41.924270227709854],[-87.74351413075185,41.92427583662513],[-87.74292030562113,41.92428436538448],[-87.74264783520479,41.92428798789027],[-87.74237558526781,41.92429160704222],[-87.7422996184243,41.924292854891995],[-87.74183614169029,41.924300466323054],[-87.74171899398642,41.924302389949105],[-87.7416615045187,41.924303053107295],[-87.7416379641654,41.9243033247769],[-87.74163796099064,41.92430323090793],[-87.74162381704484,41.92384555787467],[-87.74161911092898,41.92365892633074],[-87.7415924889532,41.92276211197987],[-87.74158828953883,41.92262007674001],[-87.74158525884515,41.92250068686428],[-87.7415613394807,41.921609718018786],[-87.7415605242169,41.92158055774612],[-87.74155961317533,41.92154796394802],[-87.74155417296474,41.92134143260206],[-87.74153346728494,41.92064566379997],[-87.74153346416368,41.92064556416832],[-87.74153211867389,41.920596603456424],[-87.74150699348138,41.91973684371896],[-87.74150679699902,41.91972971538996],[-87.74148151119796,41.9188119638709],[-87.74148119783614,41.91880058522176],[-87.74147708160834,41.91864963100929],[-87.74145725947066,41.91788924937471],[-87.74145707501741,41.91788217214808],[-87.74144378167365,41.917432049335744],[-87.74142999502229,41.916984830360406],[-87.74141374751143,41.916358214230556],[-87.74141235146051,41.91631052599556],[-87.74140426890767,41.91608374294377],[-87.74140426479866,41.91608363095789],[-87.74140371916694,41.916068245624025],[-87.74139776928298,41.915900531089356],[-87.74138827272827,41.915636006433225],[-87.7413690223222,41.91518448088699],[-87.74136991936003,41.9150874082693],[-87.7413655661722,41.91491244096981],[-87.74134621730076,41.91422319564044]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11494660.3219","perimeter":"0.0","tract_cent":"1129736.77296012","census_t_1":"17031180100","tract_numa":"54","tract_comm":"18","objectid":"296","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919170.55404148","census_tra":"180100","tract_ce_3":"41.93448687","tract_crea":"","tract_ce_2":"-87.79863595","shape_len":"13971.5046103"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8055034116657,41.93076390138517],[-87.80576204953127,41.93076053462927],[-87.80590088926186,41.930765233935965],[-87.80628327766067,41.930791523216705],[-87.80649498303814,41.930815239508625],[-87.8064949830178,41.93081524197835],[-87.80649498336497,41.93081524444974],[-87.80650175789661,41.93099683426169],[-87.80650911311058,41.93120611490173],[-87.80652647752493,41.9316996071439],[-87.80655575355622,41.93256340497599],[-87.80656054598364,41.93270453489272],[-87.80656774243252,41.93285730971472],[-87.80656774241672,41.9328573116356],[-87.80657413107201,41.933036621351256],[-87.80657413105394,41.93303662354655],[-87.80657413103813,41.93303662546743],[-87.80658693591351,41.933436706170845],[-87.80659052593872,41.9335485798273],[-87.80659407356488,41.93365913111816],[-87.80660400174835,41.933944412214416],[-87.80660736710185,41.934050231338816],[-87.80661430828717,41.93426849730701],[-87.80661838758287,41.93437567836718],[-87.80662355765317,41.93451118430405],[-87.80663689108873,41.934860530685135],[-87.80664036037642,41.9349570336183],[-87.80664339264908,41.93503964875716],[-87.80665210935146,41.9352890291896],[-87.80665700543648,41.935426537406784],[-87.80666434440505,41.93563343087453],[-87.80667277934621,41.93586793627999],[-87.80667964009812,41.936061490597304],[-87.80669105306124,41.9363637870928],[-87.80670052273862,41.93661460285563],[-87.80670132503302,41.93665110474282],[-87.80670576891063,41.93680035613903],[-87.80670676759179,41.93683389516166],[-87.80671045367968,41.93695767666044],[-87.80671612439708,41.93710380498342],[-87.80672119179623,41.937224986071406],[-87.80672647621248,41.937351107483956],[-87.80673014911734,41.93749879111656],[-87.80673903539243,41.93775890213662],[-87.80674680673566,41.937996346765935],[-87.80648871194215,41.937998998659324],[-87.80632392329885,41.93800137082084],[-87.80610939971716,41.938004529745555],[-87.80592781184654,41.93800720838961],[-87.80577956420085,41.93800938132566],[-87.80561488532092,41.93801180785826],[-87.80543541798562,41.938014325602175],[-87.80523623633613,41.93801711956985],[-87.80498972321635,41.93802188556824],[-87.80482503839487,41.93802502443909],[-87.80461102106806,41.93802917081531],[-87.80443009532028,41.938031767812596],[-87.80426929286324,41.93803209721802],[-87.80413326317196,41.93803237592615],[-87.80398508257765,41.93803531578591],[-87.80370449150941,41.93804088183874],[-87.80358921511402,41.93804271007012],[-87.80327668895755,41.93804774408863],[-87.80302982470363,41.938050498777685],[-87.80281398387896,41.938052906715164],[-87.8026025454044,41.93805629672162],[-87.80231972068661,41.93806083040866],[-87.80210607634787,41.93806428778378],[-87.80186126012062,41.93806825909012],[-87.80149558322799,41.93807375572026],[-87.80132287945922,41.93807560956345],[-87.80121886925622,41.9380767258194],[-87.80104912666276,41.938078547419956],[-87.80077062921755,41.93808422632566],[-87.80050714470467,41.93808783373058],[-87.80022638596822,41.93809136032658],[-87.79996216177821,41.93809551189135],[-87.7997652742479,41.93809931717324],[-87.79960015281974,41.938101870232686],[-87.79938654837271,41.93810518305122],[-87.79915500109371,41.93810877368524],[-87.798972671279,41.938112206259255],[-87.79877429603802,41.93811369804317],[-87.7986434729731,41.93811544865194],[-87.79846225052107,41.93811830928488],[-87.79813173008986,41.93812243318003],[-87.79795142311286,41.93812468256751],[-87.79778722016546,41.93812726474442],[-87.79763805335911,41.93812941025643],[-87.7975018629811,41.93813133951594],[-87.79711026219243,41.93813815563219],[-87.79691474678704,41.93814024921384],[-87.79676944590528,41.93814180491032],[-87.79658281743602,41.9381450215045],[-87.79620828331213,41.93815035011797],[-87.79588877644396,41.93815494717639],[-87.79569720792786,41.93815827394858],[-87.79549544851719,41.938161777142106],[-87.79529143834452,41.93816452602335],[-87.79493443344188,41.93817017960282],[-87.79476405166638,41.938173222442394],[-87.79457118175263,41.93817561066453],[-87.79451658101243,41.93817666097218],[-87.79447374943584,41.938177484657395],[-87.79427184299026,41.938181368104196],[-87.79381303839088,41.93819016258457],[-87.79372815916322,41.938191767269664],[-87.7935918183049,41.93819403503482],[-87.79338729140039,41.93819710741017],[-87.79325359126805,41.938198945371816],[-87.79309873656803,41.9382010738729],[-87.79281215848286,41.9382059819526],[-87.79264093470556,41.93820860604358],[-87.792538744048,41.938210265262754],[-87.79216621599932,41.93821729155718],[-87.79203584907525,41.938219038707125],[-87.79184354996825,41.938221615486995],[-87.79156859236745,41.938225779439904],[-87.79138288346176,41.93822885498286],[-87.79117758922224,41.938231370680235],[-87.79101551307818,41.93823447461664],[-87.79101473596691,41.938234489332416],[-87.79087372868717,41.93823718023475],[-87.79076918756726,41.93823861491974],[-87.79076619560547,41.93811024571257],[-87.79076186643775,41.937996586911716],[-87.7907588061844,41.93791967927403],[-87.79075781106714,41.93788098100276],[-87.79075484386492,41.93776708165295],[-87.79075114976153,41.937639210761255],[-87.7907480064917,41.93755042023243],[-87.79074097864857,41.937347561355104],[-87.79073772281905,41.93724603735982],[-87.7907336158902,41.93711917959407],[-87.79072954479436,41.93699243203818],[-87.79072510107694,41.936853278820394],[-87.79072081314483,41.9367259265041],[-87.79071916776864,41.93667740082489],[-87.79071604946631,41.93658567407736],[-87.79070513634976,41.936420435775744],[-87.79069676652337,41.936293707130126],[-87.79069297488286,41.93618603324327],[-87.79068915813805,41.93607265097199],[-87.79068364226876,41.935899574034124],[-87.79068017700426,41.93579675923603],[-87.79067625958277,41.935677915746],[-87.7906721670464,41.93553204080112],[-87.79066600441595,41.9353268807882],[-87.79066265550928,41.93521901687911],[-87.79065754260462,41.93506778585874],[-87.7906528256016,41.93492188050413],[-87.79064822541154,41.93474919204982],[-87.79064317885906,41.93459482330742],[-87.79063757318383,41.934423347154954],[-87.79063407317187,41.93431164059705],[-87.79063121232487,41.934219915026766],[-87.79062782583405,41.93411216068753],[-87.79062479056094,41.93401500072088],[-87.79061941082152,41.933843241316445],[-87.79061480514522,41.9336972269611],[-87.79061142288786,41.933588978670876],[-87.79060580191602,41.93341104387695],[-87.79060255304928,41.93330869629952],[-87.79059763206048,41.93315219694368],[-87.79059382375378,41.93303351884059],[-87.79058551264299,41.9327696682214],[-87.7906928361649,41.93276822433907],[-87.7906847847874,41.932580259412504],[-87.79066683179117,41.93198845080428],[-87.79065886280615,41.93168208845863],[-87.79065043451811,41.931375724199846],[-87.79064311360499,41.931101266808376],[-87.79063595803066,41.93094214515101],[-87.79076933947351,41.930940008767976],[-87.79096434932272,41.9309384053968],[-87.79114216961729,41.930935677718665],[-87.79128623928523,41.93093460162997],[-87.79141642120359,41.9309330756236],[-87.79156792013397,41.93093132074567],[-87.79180049656175,41.930928730471514],[-87.79197639966128,41.93092677099661],[-87.79204895221349,41.93092585070012],[-87.79215767056084,41.93092449709097],[-87.79225190807253,41.930923294678415],[-87.79243957415329,41.930920940695074],[-87.79255494538823,41.930919453396086],[-87.79267050152106,41.9309178296404],[-87.79276477669318,41.93091651721507],[-87.79282997903006,41.93091561670495],[-87.79291682980731,41.93091440641653],[-87.79302758793321,41.93091320538158],[-87.7932927077864,41.930910329708915],[-87.79337084633922,41.9309094074075],[-87.79352385604719,41.930907163092115],[-87.79363202400016,41.93090565703646],[-87.79376893226961,41.930904033744284],[-87.79386989497037,41.93090283443854],[-87.79397140867177,41.93090166452574],[-87.79408725642729,41.93090031541116],[-87.79424452439301,41.930898936179354],[-87.79441942857159,41.9308974018594],[-87.79455684963398,41.9308959337112],[-87.79472954595285,41.930895042508354],[-87.7948534360431,41.93089435301098],[-87.79500967515654,41.93089273382331],[-87.79511946544815,41.93089058660892],[-87.79522768236598,41.93088766353202],[-87.79546429174081,41.930883814981584],[-87.79559181552689,41.93088174050617],[-87.79572485907384,41.930880771861894],[-87.79587186895553,41.930879648900756],[-87.79598004700644,41.93087697191327],[-87.79607534371569,41.93087657839682],[-87.79620967663398,41.930875192338235],[-87.79629653330383,41.93087326602127],[-87.79640404433118,41.930871244129264],[-87.79655572978143,41.930869126791954],[-87.7966916221672,41.93086789400163],[-87.79693105040953,41.930865721623924],[-87.79705388376568,41.93086399024123],[-87.79720589946463,41.93086192847191],[-87.7973023423064,41.930860622167444],[-87.79745862372975,41.930858278386914],[-87.79758859057557,41.93085611320548],[-87.79769892894312,41.93085432831971],[-87.79791481702233,41.93085230861755],[-87.79851745440808,41.930846668254574],[-87.79914284335409,41.930838820213694],[-87.79944324856358,41.93083511398073],[-87.79970302418079,41.93083204086219],[-87.79988892453873,41.93082983114942],[-87.80053398772375,41.930822288392456],[-87.80097800290463,41.93081840635573],[-87.80134611369367,41.93081518686024],[-87.80182655240978,41.93081016705931],[-87.80212322999174,41.93080643573533],[-87.80230751829824,41.93080361091792],[-87.80282569641382,41.9307966190484],[-87.80313764823472,41.93079240874894],[-87.80344656009443,41.93078912566649],[-87.8036760917704,41.93078575551843],[-87.80405168579819,41.93078114227768],[-87.8043502298712,41.930777474724515],[-87.80454348198631,41.930775016921565],[-87.80466065144506,41.93077377299379],[-87.80485706098492,41.930771685676106],[-87.8049501566695,41.930770741733426],[-87.80527233316651,41.93076675874388],[-87.8055034116657,41.93076390138517]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3522225.6528","perimeter":"0.0","tract_cent":"1172102.10244071","census_t_1":"17031600400","tract_numa":"16","tract_comm":"60","objectid":"312","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885666.34413581","census_tra":"600400","tract_ce_3":"41.84171861","tract_crea":"","tract_ce_2":"-87.64393249","shape_len":"7961.63063562"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64594162772886,41.83804910149883],[-87.64627815787844,41.83804556861145],[-87.64628399786021,41.83825600927033],[-87.64628976168754,41.838540541565685],[-87.64629387117921,41.83871556783659],[-87.64629864650588,41.83890725576411],[-87.64630635291222,41.83919201918776],[-87.6463112489449,41.83938271988639],[-87.64631920411432,41.83968540481204],[-87.64632232125723,41.83986432196542],[-87.64632284231119,41.839894210106166],[-87.64632448498735,41.84000138340069],[-87.64632985405636,41.84020276208406],[-87.64633644205108,41.84045140425548],[-87.64634142929549,41.84064048634235],[-87.64634623036633,41.840829786850335],[-87.64635114948459,41.84102520776335],[-87.64635704482272,41.84125974024723],[-87.6463611005315,41.841422663916],[-87.64636903825091,41.84165746765742],[-87.64637615429154,41.841867983048296],[-87.6463784596426,41.84207107222596],[-87.64638211300306,41.842299032471445],[-87.64638937434313,41.84255344152763],[-87.64639619785846,41.84280754581052],[-87.64640288391196,41.843081435934096],[-87.64640739845002,41.84328382504811],[-87.64641162976186,41.84350912649403],[-87.64641410936292,41.84364114029054],[-87.64641899686032,41.84386699477351],[-87.64642519857884,41.84414154029768],[-87.64642770261526,41.84427381191184],[-87.64642829386419,41.84430503443459],[-87.64643151492909,41.84451331510697],[-87.64643443377277,41.8447020559257],[-87.64643923256861,41.84487102131327],[-87.64644084627461,41.84493055370287],[-87.64644491694752,41.845080716818714],[-87.64644895698291,41.84532744999846],[-87.64582640028878,41.84533755620704],[-87.64543362256455,41.845341320821476],[-87.64523703254804,41.84534320471289],[-87.64492526127698,41.84534621054418],[-87.64466083776034,41.84534895991588],[-87.64432963935906,41.84535317559031],[-87.64402268164736,41.84535912746567],[-87.64378051468258,41.84536382096668],[-87.64352801340898,41.84536707976054],[-87.64342365756642,41.84536849688775],[-87.6432173640854,41.84537129818642],[-87.64281414748605,41.84537677269143],[-87.64247721999506,41.84538134594794],[-87.64239422900194,41.84538227373854],[-87.64220655338389,41.84538436962646],[-87.64211475382574,41.84538539459549],[-87.64194297048344,41.84538748909653],[-87.64157952589169,41.845392687693774],[-87.64157872960625,41.84517810425773],[-87.64157412560442,41.84500927708149],[-87.64157209617933,41.84493223347211],[-87.64157029606962,41.84486391799072],[-87.64156569718631,41.84467080413115],[-87.64156056811188,41.8444806780412],[-87.64155761914927,41.84437135665642],[-87.64155469069516,41.84416283009621],[-87.64155149588309,41.84399947245626],[-87.64154656621905,41.84378934215782],[-87.64154088401368,41.84357085076993],[-87.64153758747007,41.843444060052775],[-87.64153354034482,41.84325421513905],[-87.64152904477837,41.843115438218426],[-87.64152475304026,41.84289798455209],[-87.64151860378558,41.84265867509411],[-87.641515598765,41.84254172428973],[-87.64151054476237,41.84233296531918],[-87.64150712776026,41.84220476000519],[-87.64150332183664,41.842012090187886],[-87.64149722458548,41.841750351056355],[-87.64149253112264,41.84154887612741],[-87.64149035644826,41.84139644672017],[-87.64148346312867,41.84108246161952],[-87.64147846047602,41.84085528890523],[-87.64147339754612,41.84063371411396],[-87.64146787292803,41.84038345899045],[-87.64146457587202,41.840185330820184],[-87.64145812644007,41.83993048361996],[-87.64145741508688,41.839875103681635],[-87.641452590669,41.83970358564219],[-87.64144779177921,41.839501798531956],[-87.64144251216194,41.83928672628595],[-87.64143501476555,41.838957342114035],[-87.64143097360117,41.83874310058683],[-87.64142675748829,41.83851999430161],[-87.64142185244921,41.83831233351184],[-87.641415512003,41.83810731584924],[-87.6416556994077,41.83810317464818],[-87.6418187692621,41.838100753658125],[-87.64203502195939,41.838097554836715],[-87.6420388023416,41.83809749855497],[-87.64226727727277,41.83809409513802],[-87.64251127610113,41.8380905165228],[-87.6426397461944,41.838089467228734],[-87.64286561498699,41.838087622156706],[-87.64314524215787,41.83808447289115],[-87.64325086873009,41.83808329415016],[-87.64343297997027,41.838081261891496],[-87.64370805558744,41.838078248572046],[-87.64384849052048,41.83807635647305],[-87.64397998186857,41.83807458451142],[-87.64420977969415,41.8380709963641],[-87.64449760281049,41.838066630617945],[-87.64483882909127,41.83806143168761],[-87.64506609703014,41.83805968507716],[-87.64522803113648,41.838058440157425],[-87.64549863386995,41.83805495666989],[-87.64565611712945,41.838052876855365],[-87.64574740057333,41.838051671139056],[-87.64594162772886,41.83804910149883]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8277949.50218","perimeter":"0.0","tract_cent":"1125875.18478782","census_t_1":"17031170400","tract_numa":"36","tract_comm":"17","objectid":"297","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924402.34903511","census_tra":"170400","tract_ce_3":"41.94890877","tract_crea":"","tract_ce_2":"-87.81271083","shape_len":"11392.1374266"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8075738073204,41.952767420607714],[-87.8072692522807,41.952764607885136],[-87.80726923353244,41.95276460779923],[-87.80726416758772,41.95264520147766],[-87.80726132112645,41.95257554016846],[-87.80725393637806,41.95236491499492],[-87.80725207801419,41.95231542794262],[-87.80724836303924,41.95221650982679],[-87.80724205387845,41.95204850701181],[-87.80723314654492,41.95179501014152],[-87.80722397538177,41.95154678095109],[-87.8072169479003,41.95136904546928],[-87.80721393265708,41.9512927848952],[-87.80720740430147,41.95104506175192],[-87.80720557887761,41.95096305611411],[-87.80719930366124,41.95072537082447],[-87.80719803862475,41.95067745809078],[-87.80718928052936,41.9505236867798],[-87.80718224618148,41.95034484119628],[-87.80717827678164,41.950219576821],[-87.80717286964544,41.95006351570857],[-87.80716853425866,41.94993805755427],[-87.80716395445694,41.94980656099327],[-87.80715942251354,41.949669246902175],[-87.80715522924498,41.949544393118565],[-87.80714931625108,41.94936939455007],[-87.80714313408605,41.94918242994246],[-87.80713972086109,41.949070011040384],[-87.80713662734227,41.94897235750633],[-87.80713412410587,41.948898629965235],[-87.80713059041904,41.94879455924689],[-87.80712699516124,41.948695339202786],[-87.80712060488541,41.94852028353537],[-87.80711593523478,41.94839526288904],[-87.80711050438275,41.94825105664902],[-87.80710378290514,41.94807605433371],[-87.80709677517639,41.94788222534618],[-87.80709157702306,41.947732037757625],[-87.80708974542354,41.94768213942722],[-87.80708609052417,41.94758124511471],[-87.80707653510223,41.94731281650435],[-87.8070723307893,41.94719380780743],[-87.80706812833067,41.94707949173459],[-87.8070647308978,41.94698707823462],[-87.80706142816207,41.94687465979417],[-87.80705872968451,41.94678370365742],[-87.80705594402201,41.94670567295092],[-87.80704946756663,41.946518789504665],[-87.80704474273412,41.946387099826794],[-87.80703717569597,41.94618086433395],[-87.80703332902051,41.946049672907655],[-87.80702933262025,41.94591881009855],[-87.80702262921217,41.94573272113501],[-87.80701762276644,41.945608467262986],[-87.80701245866915,41.945489975531416],[-87.80700539329031,41.945265047566195],[-87.80718560041188,41.9452608581807],[-87.80727905744526,41.94525876173255],[-87.80746097728073,41.945253969447016],[-87.8076397838057,41.9452522910317],[-87.8077823975334,41.945248882468846],[-87.8079898609405,41.945244508129385],[-87.80821259338408,41.94523968514185],[-87.80839581897628,41.945235717320436],[-87.80863507102738,41.945232228089374],[-87.8088174963085,41.94522853365284],[-87.80909837768242,41.94522273638438],[-87.80931588345994,41.94521744502295],[-87.80942114332439,41.94521563587853],[-87.80956315494747,41.945213194633844],[-87.80996700917326,41.945205404033565],[-87.8100506461914,41.94520391917888],[-87.8102413023473,41.945200616741566],[-87.81033247579978,41.94519905624812],[-87.8105512600663,41.94519472884752],[-87.8106545495461,41.9451922529081],[-87.81077637547045,41.94518933215613],[-87.81088989131321,41.94518858640254],[-87.81103106668492,41.9451857709877],[-87.81117132037129,41.945183198187564],[-87.81139502751523,41.94517919343179],[-87.81156910041936,41.94517647201544],[-87.81169373258159,41.94517380014338],[-87.81182473577375,41.94517143341766],[-87.81194740278119,41.94516921694095],[-87.81217331436713,41.945165330448],[-87.81231331283308,41.94516253555638],[-87.81252853346096,41.945157941510324],[-87.81272772155346,41.94515406991555],[-87.81301857455972,41.945146990768166],[-87.8131152616331,41.94514524778312],[-87.81322051721733,41.945143350339144],[-87.81330654910327,41.94514116046329],[-87.81347989287632,41.94513771934928],[-87.81372901107599,41.9451323157751],[-87.81386849727382,41.94512921480411],[-87.81414121115539,41.94512419151077],[-87.81423809467405,41.94512106208719],[-87.81433666664338,41.94511977225703],[-87.8144407279413,41.9451184105541],[-87.81464770429899,41.94511506478587],[-87.81479578755044,41.94511249548576],[-87.81487824918258,41.94511091947882],[-87.814990084951,41.94510881741543],[-87.81513938938,41.94510523782289],[-87.81524748214419,41.94510235023309],[-87.81542127622505,41.94509770076165],[-87.81555515728384,41.94509765367027],[-87.81569222235532,41.945097605410204],[-87.81581838388924,41.945101275109295],[-87.81598375838503,41.94511050004394],[-87.81606833830254,41.94511516211216],[-87.81620422624552,41.94512518691817],[-87.81633902943597,41.94513753926806],[-87.81649634432152,41.945152517482526],[-87.81661542161858,41.945164057777],[-87.81677594877962,41.94517960302588],[-87.8169667034207,41.94519807487315],[-87.81708667029102,41.94520876797071],[-87.81722220197152,41.9452219458261],[-87.81729118269453,41.94522837550082],[-87.81746093231725,41.945242118497184],[-87.81757835585447,41.945249094953226],[-87.81783658065736,41.94525856961729],[-87.8180090034844,41.94525707498418],[-87.81801675588453,41.94542924580099],[-87.81802052980814,41.94553118316072],[-87.8180232989157,41.94560726543395],[-87.8180271183044,41.945698994487294],[-87.81803508007566,41.94575561608502],[-87.81804614435396,41.94580127471657],[-87.81806897485973,41.94586476871197],[-87.81808786748724,41.94591515509046],[-87.8181155400561,41.945989044239084],[-87.81813885937164,41.94605119546886],[-87.81816868087171,41.94612756377121],[-87.81819458489103,41.94619285527327],[-87.8182473530727,41.94632747657167],[-87.81826282180363,41.9463694227955],[-87.81828271059324,41.94642395738197],[-87.81829114216724,41.94647248560783],[-87.81829595397993,41.946552995771924],[-87.81830251330591,41.94666273863921],[-87.81830650446993,41.94675144979349],[-87.81831109134228,41.946852924249846],[-87.8183175426001,41.9469922224429],[-87.81832331466114,41.94710629818842],[-87.81833169276156,41.9472710988364],[-87.81834549093915,41.94753891442349],[-87.81835765605447,41.94778520825083],[-87.81836603029078,41.947954756637],[-87.81837637323385,41.94816415911603],[-87.81838326957104,41.94822991414388],[-87.81838830061257,41.94841092357899],[-87.81839504268615,41.94865348258155],[-87.81840377748425,41.948719190963736],[-87.81840641775769,41.94877631607947],[-87.81840853649092,41.94882214803318],[-87.81841682158598,41.94899704776506],[-87.81842375935811,41.94912047797989],[-87.81842376227115,41.9491205271145],[-87.81843409494819,41.94929141463813],[-87.81844377563561,41.94949540852739],[-87.81844611739928,41.949543954685794],[-87.81845417234227,41.949710931345585],[-87.81846049777806,41.949848298613354],[-87.81846465530603,41.94993858399559],[-87.8184747647834,41.95014792524904],[-87.8184837191608,41.95033334324035],[-87.81849814023313,41.950596990247085],[-87.81850417152344,41.95071090242216],[-87.81850484581645,41.95074602322866],[-87.81849516628742,41.950792008076874],[-87.81848680354007,41.95083173487226],[-87.81847364339437,41.95088192252481],[-87.81842395486372,41.95105842745164],[-87.81839177660747,41.95116950636223],[-87.8183800304679,41.951209563744015],[-87.81836028974571,41.95127688366609],[-87.8183417300639,41.951339189429326],[-87.81833641099685,41.95135704498489],[-87.81833378849919,41.95136557323308],[-87.8183244442271,41.951395959225735],[-87.81830594466892,41.95145635884215],[-87.81829609340767,41.951488207970996],[-87.81829028076649,41.951507002028265],[-87.81826989013277,41.95158767266243],[-87.81826624666031,41.95164753518748],[-87.81826770250727,41.95167391970544],[-87.81826836401943,41.95168590887504],[-87.8182744582999,41.95178739000882],[-87.81827925716125,41.95187621447771],[-87.81828445256907,41.95197980462416],[-87.81828582748504,41.95200711083503],[-87.81828892141678,41.952068572724876],[-87.81829603654974,41.95218655146259],[-87.81829654315968,41.95219495077173],[-87.81829687722946,41.95220039735018],[-87.81830356197719,41.95230941619934],[-87.81830320832022,41.95250121110866],[-87.81815442151056,41.95250517828716],[-87.81795246788445,41.952511845682466],[-87.81774654709702,41.952518111539746],[-87.81771151363009,41.9525188233035],[-87.8176271227524,41.95252053865988],[-87.81750749753763,41.95252298286514],[-87.81742342462624,41.952524700598026],[-87.81720478850538,41.95253044128004],[-87.81715902001847,41.95253155960768],[-87.81706654871167,41.9525338199979],[-87.81689286978485,41.952538064659066],[-87.81672685403218,41.952542122354814],[-87.8166224785003,41.95254439605593],[-87.81654102367379,41.9525461710281],[-87.81638806851382,41.95254968329342],[-87.81611538077479,41.95255594442962],[-87.81599822666645,41.95255906476499],[-87.81589850838472,41.95256172048108],[-87.81584930448771,41.952563008587376],[-87.81563865144774,41.95256861487045],[-87.81561797456361,41.952569267788206],[-87.81558849445939,41.95257019960822],[-87.81539535297989,41.95257570082373],[-87.8152574445614,41.95257962852491],[-87.81519752805379,41.95258104858144],[-87.81498612167483,41.95258605998581],[-87.8147781489411,41.95259124649716],[-87.81474855016671,41.95259198519572],[-87.81464981422553,41.952593534776426],[-87.81463410835033,41.95259378105289],[-87.81454982966365,41.95259510387707],[-87.81448514940494,41.95259611894347],[-87.81416855888793,41.95260407302563],[-87.81388741186714,41.952611527985496],[-87.81380600485019,41.95261382455578],[-87.8137013133071,41.95261677775577],[-87.81352901792522,41.95262121925212],[-87.81343280214467,41.95262369960692],[-87.8130500988527,41.95263356359713],[-87.81303845846716,41.952633864027725],[-87.81303845515865,41.95263386401273],[-87.81282673298472,41.95263910573758],[-87.81255052071121,41.95264542722311],[-87.81244464286505,41.95264678362117],[-87.81235437163967,41.952647940434936],[-87.81222540021007,41.952651511799736],[-87.81200699672067,41.95265755977172],[-87.81185609200243,41.952661347809766],[-87.81166871068875,41.95266612221574],[-87.81158971168327,41.95266798798274],[-87.81146897756365,41.95267083989827],[-87.8113752009646,41.95267303378867],[-87.8112990649698,41.952674815226125],[-87.81117973344732,41.95267801185143],[-87.81105737127437,41.95268128951634],[-87.81097616105107,41.95268152324349],[-87.81083349070218,41.95268193304384],[-87.81072833787842,41.952682235183104],[-87.81044894876763,41.95269037550347],[-87.81044893994492,41.9526903754633],[-87.81030412813286,41.95269191150829],[-87.81003674051263,41.952699416699126],[-87.80971949342059,41.95270832093453],[-87.8095819298253,41.952712712925646],[-87.80917277422819,41.9527257745223],[-87.8089166262283,41.95273300212911],[-87.80883151881706,41.95273515258434],[-87.80867931076378,41.952738997999845],[-87.80860758374337,41.95274066827262],[-87.80847417297065,41.95274377468643],[-87.808349768921,41.95274667185662],[-87.80827146121308,41.95274849486796],[-87.80803603819169,41.952754936589535],[-87.80793978729304,41.95275757024652],[-87.80783262904525,41.95276045439158],[-87.8075738073204,41.952767420607714]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4595878.61617","perimeter":"0.0","tract_cent":"1148109.23413306","census_t_1":"17031160300","tract_numa":"22","tract_comm":"16","objectid":"298","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927592.86657517","census_tra":"160300","tract_ce_3":"41.95726411","tract_crea":"","tract_ce_2":"-87.73089878","shape_len":"8779.54079729"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73359633346335,41.95358252632244],[-87.73397006219298,41.95357792505838],[-87.73397571235584,41.95378832026045],[-87.73398402216532,41.954108097797686],[-87.73399443591455,41.954411052742664],[-87.73400471293341,41.95459334963725],[-87.73398166031303,41.95469556075609],[-87.73398832134725,41.95481839909641],[-87.73402186685121,41.95545626139814],[-87.73402723258543,41.95556201571865],[-87.73402861193411,41.95561923400543],[-87.73403894362806,41.95608614749478],[-87.73404517212485,41.9563705869595],[-87.73404546564045,41.956435752848364],[-87.73404768786128,41.956496795744876],[-87.73405453811235,41.9565700745457],[-87.73406232519415,41.956653237401675],[-87.73406515632766,41.95678275158466],[-87.73407042468125,41.95695813428151],[-87.73407218863713,41.95702587065916],[-87.73407361359001,41.95708081723535],[-87.73407838888404,41.95722763915177],[-87.73408488820132,41.957427470137496],[-87.73408988733087,41.957627713973544],[-87.73410261570665,41.958042897409435],[-87.7341134658661,41.958383867517135],[-87.73412808503745,41.95884845657868],[-87.73413248726727,41.95905097768864],[-87.73413697475505,41.95925739052849],[-87.73414994174118,41.95970995124842],[-87.73416130323959,41.960106274664206],[-87.7341701979647,41.96049119670221],[-87.73417654324082,41.960771496088434],[-87.73417688156343,41.96077462899878],[-87.73418775594583,41.9608752876988],[-87.73400348760441,41.96087660168305],[-87.73380830415628,41.96087901286277],[-87.7334974364565,41.960882987277934],[-87.7334769173699,41.96088326041729],[-87.73343672568237,41.960883795740514],[-87.7332487844943,41.96088629842102],[-87.73310464046119,41.96088802292883],[-87.732720792672,41.96089221464965],[-87.73213285240044,41.96089883346454],[-87.73141657309847,41.960906469930755],[-87.73105108618667,41.96091036484751],[-87.73067547030298,41.96091436624174],[-87.73059554487332,41.96091532974355],[-87.73045822427387,41.96091698521525],[-87.72969346425607,41.96092688540229],[-87.72937110223268,41.96093105713941],[-87.72903796476322,41.960933750576686],[-87.72861032801491,41.96093720602132],[-87.72842775825102,41.960939315274345],[-87.72835002287421,41.96094021328599],[-87.72825794813826,41.960941276888406],[-87.72782817027088,41.96094683693973],[-87.72781831387327,41.96060029598495],[-87.7278150995558,41.960495340414354],[-87.72780199679889,41.960067476279306],[-87.72778908157035,41.95961380077597],[-87.7277751436482,41.959124204700785],[-87.7277699691695,41.95894242746153],[-87.72775313440675,41.958351043662674],[-87.7277353897311,41.957740033611145],[-87.7277231563798,41.9573005062835],[-87.72771458117123,41.95699251020793],[-87.72770735296552,41.95673267748567],[-87.72768949312727,41.95619987671421],[-87.72767742662755,41.95582404799363],[-87.72766871949747,41.955476513890375],[-87.72766355247445,41.955270274929745],[-87.72764357600721,41.95457665194036],[-87.72762766971736,41.95404344963618],[-87.72761716362436,41.953647788060984],[-87.72921090986713,41.95363431993985],[-87.73000121239622,41.95361975634578],[-87.73049142978908,41.953619775996586],[-87.73060000046422,41.95361977989298],[-87.73085126217904,41.95361879739863],[-87.73093906826355,41.95361845408421],[-87.73135090010017,41.95361444408072],[-87.73169525250064,41.95360855103006],[-87.7317828318159,41.95360593202601],[-87.7318519375403,41.9536050457427],[-87.73199867206876,41.95360316401637],[-87.73224193947557,41.95360003892924],[-87.73247349103684,41.95359677352777],[-87.73317314517112,41.95358731184912],[-87.73322711951305,41.95358670156369],[-87.73359633346335,41.95358252632244]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2311626.84412","perimeter":"0.0","tract_cent":"1144033.4750687","census_t_1":"17031150100","tract_numa":"12","tract_comm":"15","objectid":"299","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927440.89550784","census_tra":"150100","tract_ce_3":"41.95692473","tract_crea":"","tract_ce_2":"-87.74588652","shape_len":"8940.34688934"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74461493177705,41.953447300025175],[-87.74497211839127,41.95344363848222],[-87.74531485837487,41.953447836736096],[-87.74557942785188,41.95344537343455],[-87.74580355451535,41.953443285989124],[-87.74616835819337,41.95343884028069],[-87.74655025659355,41.95343439900569],[-87.74690436127824,41.95343000631961],[-87.74730487275106,41.95341837610393],[-87.74730293275321,41.95366025037524],[-87.74731421473439,41.953957698536776],[-87.74733008021381,41.95425645985768],[-87.74733089522,41.95429864397018],[-87.74733416837208,41.954468115384756],[-87.74734481819623,41.95501945417284],[-87.74735413789429,41.95524211240687],[-87.74735727542857,41.955317072912074],[-87.74736210252604,41.95547412121153],[-87.74736832139604,41.95567645669114],[-87.7473758606529,41.95589290388772],[-87.74738463524761,41.95615622827883],[-87.74738950063052,41.95630224555935],[-87.74739505569423,41.95647941290697],[-87.7473999995772,41.95663709321306],[-87.74740860994353,41.95688513173576],[-87.7474149867612,41.95707141349818],[-87.74741578556538,41.957094743937645],[-87.74743964504918,41.95778764233276],[-87.74744619885581,41.95798223307263],[-87.74745259432558,41.95817211777017],[-87.74746698647093,41.958623861196905],[-87.74747672606051,41.95889830444272],[-87.7474848128455,41.959126170504625],[-87.7474981410983,41.95946931994557],[-87.7474996974565,41.95981062885179],[-87.747501037475,41.96010442801307],[-87.74751367183238,41.96049927452976],[-87.74753534774402,41.960722477746145],[-87.74756208713828,41.9609978155209],[-87.7475669627501,41.96122034408485],[-87.74756784401497,41.96157758699874],[-87.74757417913622,41.96186139820349],[-87.74758763271974,41.962235118622765],[-87.7475060249078,41.96230800202582],[-87.74743230313436,41.96237384170927],[-87.74739105709396,41.96241496149423],[-87.74650566921076,41.96191133347114],[-87.74610244801327,41.9616777291911],[-87.7456580064388,41.961428819061254],[-87.74502149545006,41.9610760149357],[-87.74459851364121,41.96084333289585],[-87.7444797147371,41.96077793362169],[-87.74443938991708,41.96075600799904],[-87.74450248072519,41.960755162840094],[-87.74456794087638,41.96075514949314],[-87.74481630478955,41.9607550990969],[-87.74486283713033,41.96075508954102],[-87.74509776977946,41.96075214178023],[-87.74532869505659,41.960749243815],[-87.74557065446459,41.96074587279151],[-87.7458932819165,41.96074241953653],[-87.74618311803867,41.960738413488066],[-87.746406818583,41.96073666409972],[-87.74648361808514,41.96073581082121],[-87.74504792624195,41.95800263279919],[-87.74427303071441,41.95651665686789],[-87.74426305358,41.95649752351394],[-87.74361317649671,41.95515809842497],[-87.74326602583592,41.95448123805337],[-87.74304827586852,41.954074661025665],[-87.74273260389442,41.95347373650003],[-87.74281405868636,41.9534737369927],[-87.74291458173664,41.95347373779457],[-87.7430467974799,41.95347373872556],[-87.74323379458514,41.95347373979884],[-87.74358277724208,41.95347073058223],[-87.74392242316169,41.95346361093433],[-87.74431899813354,41.95345033372879],[-87.74461493177705,41.953447300025175]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"19855898.4224","perimeter":"0.0","tract_cent":"1137475.58802432","census_t_1":"17031110100","tract_numa":"64","tract_comm":"11","objectid":"300","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1938544.95692099","census_tra":"110100","tract_ce_3":"41.98751609","tract_crea":"","tract_ce_2":"-87.769727","shape_len":"29445.5274887"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78002228629337,41.99741355389769],[-87.78000282104225,41.99727988660846],[-87.77997094397358,41.99713538192662],[-87.77990311786257,41.99695226240126],[-87.77980922284873,41.99686472810835],[-87.77971263739863,41.99678424185356],[-87.77962368832517,41.9967328190869],[-87.77948870007651,41.9967149085387],[-87.77922947336212,41.99671287298533],[-87.77910472876398,41.99672639213798],[-87.7788798522401,41.996765316580664],[-87.77875207347309,41.99682448000222],[-87.7787269498449,41.99684536654293],[-87.77869617559902,41.9968687902278],[-87.7786807836251,41.99688317804649],[-87.77865993383979,41.99690755553273],[-87.77863442662294,41.99693871611597],[-87.77861404215825,41.99696457770799],[-87.77858944470391,41.99699264173561],[-87.77857428706686,41.99700969226784],[-87.77855454825762,41.9970247448368],[-87.77851856931031,41.99705017429892],[-87.77848972797295,41.99706704891544],[-87.77844721804328,41.99708624490481],[-87.77838504883766,41.99711132818772],[-87.77833167455452,41.99712764536419],[-87.77825578150454,41.99714023074179],[-87.77820031175823,41.99713944110924],[-87.77814860760651,41.99713713318654],[-87.77806552893088,41.997129925474646],[-87.77800687183297,41.99712338496143],[-87.7779631673021,41.99711494093881],[-87.77793627475238,41.99710652335738],[-87.77790253059062,41.99709914285449],[-87.77781739210823,41.997083445979854],[-87.77776223025741,41.99707264103593],[-87.77775427713564,41.997071063324924],[-87.77771628754003,41.997063527479995],[-87.77767447878087,41.9970528422826],[-87.77762530028083,41.99703932231373],[-87.77759660263912,41.997031197775875],[-87.77757142696665,41.997024187960626],[-87.7775388354529,41.99701541339129],[-87.7775038619083,41.99700981054626],[-87.7774644797124,41.99700352773537],[-87.77742427675655,41.99699855815034],[-87.77738543419356,41.99699367746557],[-87.77733551553702,41.9969891273088],[-87.77730607577533,41.99698596609861],[-87.77726859839171,41.99698907732278],[-87.77723346506721,41.99699338044331],[-87.7772077390675,41.996998881416005],[-87.77716787529762,41.99701411039237],[-87.77713832404412,41.99702793544644],[-87.77709974233524,41.997064959801094],[-87.77707925140632,41.99708607314438],[-87.77705963306694,41.99710837071663],[-87.77702957491913,41.997138191673756],[-87.77700263430823,41.99716487190638],[-87.77697289430202,41.99719195019428],[-87.77691562849884,41.99721996556704],[-87.7768607565035,41.99723501192013],[-87.77681087414882,41.99724316733798],[-87.77677687745891,41.99724788718379],[-87.77676310598876,41.99724811568955],[-87.77671031786778,41.9972489914422],[-87.77666029707328,41.997243480028025],[-87.77660718151292,41.997230050299],[-87.77655270039197,41.99720020363087],[-87.77652422793803,41.997174736599604],[-87.77649709237612,41.997147794180414],[-87.77646302753479,41.99710547808541],[-87.7764256581648,41.99706243245753],[-87.77641017560417,41.99704073335492],[-87.77636565954377,41.9970072574458],[-87.77628400725378,41.996929337710256],[-87.77622441058816,41.99687871993959],[-87.77615830528171,41.99682357006519],[-87.77612257180894,41.99679546070353],[-87.776046301582,41.99673320883881],[-87.77598547442764,41.99669712920827],[-87.77595616588863,41.99668321104048],[-87.77592097443687,41.9966731061736],[-87.77586738981299,41.99666291197533],[-87.77583212102805,41.99666167045898],[-87.7757645044733,41.996665924862],[-87.77569968380575,41.996674391701234],[-87.77560846668888,41.99668508971901],[-87.77551026252335,41.99669547956658],[-87.7754066325117,41.996707928548076],[-87.77532145628668,41.99672194900748],[-87.77513143858661,41.99676915836825],[-87.77495970667367,41.996833470924166],[-87.77486798333227,41.99686782058492],[-87.7748095633474,41.996884715024876],[-87.77464780403568,41.996931237811154],[-87.774547166683,41.996963184371126],[-87.7744659615464,41.99698578541581],[-87.77437953986566,41.997007537743706],[-87.77428074094696,41.99702275342664],[-87.77416612391674,41.99704211803561],[-87.77407121835277,41.99705378504825],[-87.77397199102903,41.9970590918312],[-87.77385626982715,41.9970616562719],[-87.77377331536063,41.997061334265176],[-87.7736766104076,41.99706006701816],[-87.77357726211594,41.99705818307713],[-87.77349481028752,41.99705503679847],[-87.77332969743,41.99703916579968],[-87.77328829118059,41.99703300861769],[-87.77319652082701,41.99701859317551],[-87.7730904383856,41.99700435451448],[-87.77295717295723,41.99698553719003],[-87.77291585554703,41.99697785810199],[-87.77278355874219,41.996953268772685],[-87.77263765467946,41.996928407288124],[-87.77253015365343,41.99690398021406],[-87.7724516209316,41.99688191738138],[-87.77235970756381,41.99685032163133],[-87.77227365649597,41.996821443772085],[-87.77218819119638,41.99679289801521],[-87.77209173104173,41.996759633306674],[-87.77200923221463,41.99673258378569],[-87.77188514459229,41.99668260886223],[-87.77169144908714,41.99658717867866],[-87.77159963128587,41.9965322571216],[-87.77155210874561,41.99650214026942],[-87.77150338644508,41.99646622727206],[-87.77149028274461,41.99645446133779],[-87.77146276247471,41.996429750169355],[-87.77142885786996,41.99639473292502],[-87.77139642658726,41.99635533216912],[-87.77136112922435,41.99630719082962],[-87.77132144363411,41.99624352328723],[-87.7712539751827,41.99611808505251],[-87.7712289971251,41.996051114128754],[-87.77121452163084,41.996002992371814],[-87.77119890321892,41.995946797079135],[-87.77118130411903,41.99587322104782],[-87.77116763293459,41.99578805684746],[-87.77116362809595,41.99576002694929],[-87.77115709847244,41.995714323587855],[-87.77114914735415,41.99560621819789],[-87.77116285225671,41.99545346101861],[-87.77117502454097,41.995395425990054],[-87.77118103356827,41.995339638460955],[-87.77119514031406,41.9952875129247],[-87.77121177211906,41.99524525141644],[-87.77123312378424,41.99518918254072],[-87.77124314447236,41.99516661942812],[-87.77127784677309,41.995098348806586],[-87.77130686955944,41.99503169715949],[-87.77133374820093,41.99497041363252],[-87.77136593169436,41.99491244910431],[-87.7713914589063,41.99487514322577],[-87.77141527368885,41.99484013408416],[-87.77145451293765,41.99478302732648],[-87.77148922965262,41.99473393891641],[-87.77151496801937,41.9946977042793],[-87.77156917011493,41.99463323393679],[-87.77161264006915,41.99458857903803],[-87.77167551878671,41.994528843677436],[-87.7717971247059,41.99441709117821],[-87.77190649724048,41.99432852206648],[-87.771980806122,41.99426154287253],[-87.77204429411972,41.99421193609789],[-87.77210409556801,41.99416321739797],[-87.77213985638667,41.99413759677463],[-87.7721836486679,41.99410641723848],[-87.77221931223215,41.994083485427836],[-87.77226105298271,41.99405970516614],[-87.77230005812659,41.99403744854426],[-87.77233606889283,41.99402104930865],[-87.77238846582918,41.993998610849005],[-87.77240113193248,41.99399310202127],[-87.77243843894978,41.993979892630534],[-87.77251348004843,41.99394672517379],[-87.77253522801985,41.993933329969785],[-87.77257908503842,41.99390730968832],[-87.7726186766105,41.99388527508332],[-87.77266309194964,41.99386688636491],[-87.77272425039355,41.9938436947259],[-87.77278738957432,41.993825342513404],[-87.77284018903578,41.99381149514946],[-87.7729805297284,41.993782021560854],[-87.77298493255172,41.99378119701651],[-87.77309048054728,41.9937614278987],[-87.77313569936179,41.99374787270534],[-87.77318376296103,41.99373287695095],[-87.77324017549088,41.99371394282579],[-87.77328439458235,41.99369692500725],[-87.77331982667339,41.99368354152985],[-87.77336929593511,41.993667646969755],[-87.7734270758513,41.99365637573314],[-87.77346372634118,41.99364667537837],[-87.77349368274257,41.993636860039814],[-87.77353393836137,41.99361455393628],[-87.7735898319808,41.99357080956346],[-87.77362982882929,41.99352764626358],[-87.77366378598762,41.99348105069875],[-87.77368386213412,41.99344849235186],[-87.77369421825256,41.99341270389492],[-87.77370705307607,41.9933543150585],[-87.7737113248108,41.993303403576725],[-87.7737113252454,41.993269759716654],[-87.77370345968822,41.99312202865643],[-87.77368356840259,41.99301172470513],[-87.77366141112037,41.992929098655914],[-87.77364220650873,41.9928748345603],[-87.77362079956177,41.992819983441386],[-87.77360725411202,41.9927663506551],[-87.77358422321413,41.992686931039536],[-87.77355739255059,41.992617152466075],[-87.77352278347043,41.99253668846556],[-87.77349388869077,41.99247579101101],[-87.77345349049483,41.99240111645464],[-87.77343162685057,41.99236898832138],[-87.77341935182433,41.9923509506605],[-87.77337276779636,41.99229375361167],[-87.77329175056974,41.99219484195225],[-87.77302306972238,41.99189293138247],[-87.77297405617236,41.99184439425047],[-87.77293250380445,41.99181334634739],[-87.77289891419571,41.99178873183468],[-87.77283120321327,41.99175404388505],[-87.77276016962604,41.99172902669019],[-87.77269952710753,41.9917104267394],[-87.77263270981601,41.99169124775729],[-87.772584076472,41.99167907294192],[-87.77251357078492,41.991661028436646],[-87.77245886616234,41.99164901600137],[-87.77238739988488,41.991635686746314],[-87.77234301294598,41.991630063770685],[-87.77226493840617,41.99162359008313],[-87.77213929793197,41.991613261477255],[-87.77207701785053,41.99160104717409],[-87.77201615099345,41.99158708346051],[-87.77191588441818,41.99156927724948],[-87.77182168305347,41.99154359732741],[-87.77174238228093,41.991538544269616],[-87.77167046906528,41.991538384533634],[-87.77159703566768,41.99153958941294],[-87.77139626005726,41.99152741043782],[-87.77119471215946,41.99151939851118],[-87.77117212905995,41.99151610465221],[-87.7711252931643,41.991503334297505],[-87.77106410024433,41.99148047727986],[-87.771040215866,41.99147336286003],[-87.77098019065457,41.99145158148021],[-87.77093480082995,41.99142619481944],[-87.7708821524438,41.99135620679587],[-87.7708405028462,41.99125279342133],[-87.77084691629078,41.99119283666963],[-87.77085486193606,41.99115939638142],[-87.77086713336503,41.99111928144348],[-87.7708957254851,41.991072138993886],[-87.7709449510081,41.99102948861464],[-87.77098906083395,41.99100802525966],[-87.77102998264942,41.990989345628726],[-87.77107298948359,41.990971993410696],[-87.77112719089833,41.990953269018796],[-87.77118151450057,41.99094151546387],[-87.77121385625298,41.990936459859135],[-87.77124316886946,41.990932816396565],[-87.77129399488233,41.99092562847413],[-87.77140350632435,41.99090012214593],[-87.77144112293105,41.990876623841096],[-87.77145303680454,41.99086875142162],[-87.7714848199799,41.99083932452269],[-87.77150336570439,41.99081351005525],[-87.77151468034135,41.990794301156114],[-87.77156964320162,41.99068894620318],[-87.77160181952159,41.99060642067492],[-87.77163467894688,41.99052568248245],[-87.77166677054834,41.990448590307004],[-87.77169289277363,41.99037684754609],[-87.77170480931788,41.99033936548142],[-87.77172625306427,41.99026839536554],[-87.77173202662377,41.99024158205259],[-87.77173296428242,41.99023722665653],[-87.77173859733335,41.990197815684915],[-87.77174084241273,41.99018210679887],[-87.77173758072091,41.990101219298815],[-87.77172434915597,41.99004141335539],[-87.77170325470864,41.990001519268546],[-87.77167536348888,41.98996068633776],[-87.77164041357807,41.989915236049775],[-87.77159596099348,41.98985028287971],[-87.77156652239299,41.989809744211584],[-87.77153352117004,41.989756043386734],[-87.77149544600417,41.98969372837567],[-87.77146430689967,41.98962074492328],[-87.77144006031055,41.989583744208495],[-87.77140043073877,41.989539258850954],[-87.77137002631336,41.9895165526979],[-87.77133597120488,41.9894907002773],[-87.77129637978427,41.98945861885075],[-87.77126034018886,41.989432564597585],[-87.77122836814647,41.98940408791271],[-87.77120387723666,41.989378199957756],[-87.77111755503554,41.989310269922825],[-87.77105235521938,41.989274824835825],[-87.77101076929448,41.98925206381843],[-87.77094005670583,41.989220268890435],[-87.77061392268824,41.98911702553272],[-87.77058878694847,41.989106131060076],[-87.7704794404369,41.98905873804819],[-87.77038674249896,41.989038250850676],[-87.77034184840257,41.989031966006095],[-87.77021721104036,41.9890169476366],[-87.77009674247151,41.98901306359329],[-87.76999392053166,41.98901025393399],[-87.76989337569317,41.98900783954693],[-87.76976349789581,41.98899891452851],[-87.76966520247646,41.9889959072608],[-87.76962419213557,41.988991367581264],[-87.76957560940092,41.988986219357436],[-87.7694685006704,41.98897737837859],[-87.76936020641651,41.98896112213718],[-87.76924588798505,41.9889439306063],[-87.76914111327542,41.988929008668265],[-87.7690180716598,41.988908288904895],[-87.76887736254214,41.9888847104981],[-87.76882396611198,41.98887489812027],[-87.7687624005685,41.98886128598878],[-87.76868369067908,41.98884388482829],[-87.76862712727993,41.98883032467022],[-87.76852905722943,41.988810138850084],[-87.7684473453383,41.98879530230496],[-87.76838623375541,41.988788607588134],[-87.76832622990472,41.98878559551811],[-87.76828470321183,41.98877986595246],[-87.76819691020992,41.98876775282629],[-87.76814814461916,41.98876671692762],[-87.76805177832092,41.98876602290399],[-87.76796396311022,41.988771682846796],[-87.76793207148759,41.9887758887795],[-87.76788643681108,41.98878683289961],[-87.76782996520083,41.98880033060718],[-87.76775720838774,41.98885842334602],[-87.76774066315015,41.98887837475989],[-87.76771430678572,41.98891380972466],[-87.7676791275084,41.98896528221693],[-87.76766108116001,41.9889927450539],[-87.76761777965338,41.989064155273724],[-87.76760554070007,41.98914200277623],[-87.7676049711005,41.98923541251026],[-87.76761109009799,41.98927965171396],[-87.76761829269775,41.98931783157686],[-87.76764663563218,41.989382103181086],[-87.76764936590867,41.98939778628655],[-87.76765529026024,41.98941831437292],[-87.76766601815801,41.98947794379826],[-87.76766662766326,41.989500504118006],[-87.76765463405592,41.989550554092595],[-87.76764190173675,41.989584409651044],[-87.76758083380734,41.98964332879337],[-87.76723402874948,41.989868262214],[-87.76712657284396,41.9899233297291],[-87.76707404472158,41.98994828982021],[-87.76706946886273,41.98994994120984],[-87.76706229561378,41.98995413189164],[-87.76689605006757,41.99001014406343],[-87.76685713575282,41.990018074870214],[-87.76682628311957,41.990025331956076],[-87.76678851658761,41.990032417702125],[-87.76675167131319,41.99003931588876],[-87.76671374498015,41.99004782780483],[-87.76666355083584,41.99005844706806],[-87.76658020957308,41.990073732454704],[-87.76647490622256,41.99009752611865],[-87.76635867180528,41.990122006631594],[-87.76617605453478,41.990149205136724],[-87.7661379863316,41.99015018827549],[-87.76596468100921,41.99015466438567],[-87.76584607824812,41.99014757438903],[-87.76576036279543,41.99013609150617],[-87.76572119943978,41.99012648526666],[-87.7656799806627,41.99011637489419],[-87.76564645749053,41.99010539725226],[-87.76558690765835,41.990067726491105],[-87.76549963773512,41.99001180714863],[-87.76539735750048,41.989981005223385],[-87.76532048787344,41.98995515873191],[-87.76523826320303,41.98992758428507],[-87.76514774366147,41.98989382171868],[-87.76503507341211,41.9898608275692],[-87.76493150821716,41.98982979933148],[-87.76489384096783,41.989813312278464],[-87.76482712510312,41.98978317990059],[-87.76474070988753,41.989738845005796],[-87.76469105126955,41.98970994932225],[-87.76466076733259,41.989686363574236],[-87.76458549005118,41.98961865184566],[-87.76455815269273,41.989594062022256],[-87.76447731773447,41.98952203789322],[-87.76442714394446,41.98948493466158],[-87.7643585855946,41.989426362978485],[-87.76432911539823,41.989406431234364],[-87.76430679854745,41.989392819156485],[-87.7642849332316,41.989382200763785],[-87.7642618460533,41.98937248134669],[-87.7642119740678,41.98935933637338],[-87.76419734958417,41.98935756246567],[-87.7641546145456,41.989356746862114],[-87.76411845322204,41.989361205258525],[-87.76409450208075,41.98936588884273],[-87.7640787260957,41.98936954272386],[-87.76402740816421,41.989386576688545],[-87.76401227615402,41.98939226446139],[-87.76394064845964,41.989434636110346],[-87.76389820446546,41.989491916819816],[-87.7638918856582,41.98950752740934],[-87.76388341352275,41.989529493858186],[-87.76386802059524,41.9895685772175],[-87.76385817141394,41.98958408796589],[-87.76383408552677,41.98962038399741],[-87.76379965147429,41.98965388475966],[-87.76377300240046,41.98967235793666],[-87.76373310263801,41.98969178098817],[-87.76369235383903,41.989707412818326],[-87.76364787512392,41.98972052890309],[-87.7636152718576,41.98973024621718],[-87.76355336698684,41.98974234275242],[-87.76350018383442,41.989749872294276],[-87.76339190125638,41.9897570733817],[-87.76331263812848,41.98976049426298],[-87.7632658302154,41.9897625943969],[-87.76317228177295,41.989763364693786],[-87.7630373514753,41.98978473036651],[-87.76298009635885,41.98981161348069],[-87.76291285808728,41.9898524972574],[-87.7628836790831,41.98987825749845],[-87.76285516121796,41.9899123633813],[-87.76278720034465,41.98995176162526],[-87.76276638159136,41.98996812334373],[-87.76274745203362,41.98999536147492],[-87.76273871701854,41.99000964249982],[-87.76272749430927,41.990030634994],[-87.76268922744609,41.990114280043045],[-87.76267374857828,41.99015876888107],[-87.76260343928998,41.99024689230461],[-87.76253493444774,41.99026065687846],[-87.76248419506655,41.9902622157468],[-87.76240312769447,41.99024518274852],[-87.76234735194775,41.990221744302325],[-87.76229297226268,41.990198422541496],[-87.76224775918786,41.99017843939545],[-87.76222995253205,41.99017055728586],[-87.76216568859938,41.99015020490885],[-87.76211277082436,41.99014445320653],[-87.7620999408377,41.990143593546556],[-87.76203657544374,41.99008035374601],[-87.76203542149212,41.990073652158856],[-87.7620343739622,41.99006739017306],[-87.76203276637598,41.99005794212977],[-87.76203115854484,41.9900485215272],[-87.76203236436233,41.99003296792255],[-87.76203445516639,41.990017171744256],[-87.76205010575097,41.989945296744764],[-87.76205399672065,41.98992152390655],[-87.76204374902242,41.98985402050713],[-87.76199866684667,41.98977418694142],[-87.7619623983985,41.98971654318348],[-87.76188273475661,41.98954265813094],[-87.76186270896811,41.9894950289189],[-87.76182830396158,41.989434704803365],[-87.761782227434,41.98936329088762],[-87.7617516435275,41.98929936343],[-87.76169990199315,41.989207449549184],[-87.7616761228087,41.98915178882538],[-87.76166392969657,41.98912088303551],[-87.76163768711866,41.989048662241395],[-87.76158930780652,41.98889757267828],[-87.76158973050147,41.98879274637918],[-87.76159698475055,41.98873024221115],[-87.76162175366585,41.9886588242971],[-87.76164111298864,41.988624673103686],[-87.76165526487294,41.988601088583074],[-87.76166642818224,41.988582675714525],[-87.76168699735676,41.988557147323256],[-87.76171390510319,41.98853033300071],[-87.76176222206895,41.98848691364568],[-87.76183738879782,41.98843959369306],[-87.76188080292437,41.98842202767841],[-87.76192557058634,41.98840529109556],[-87.7619577272624,41.98839614831772],[-87.76198047801938,41.9883899773363],[-87.76207287589993,41.9883612937756],[-87.76210511468257,41.98835119089517],[-87.76216790323713,41.98832241507594],[-87.76222016588503,41.98828606720109],[-87.76223002137446,41.98827810289522],[-87.76226782639499,41.98823784201596],[-87.76230171294532,41.98818329097215],[-87.76230977888251,41.988161542150785],[-87.76231835109665,41.988083183012385],[-87.76231752364444,41.98807694956372],[-87.76231676007905,41.98805949265699],[-87.76231618103004,41.98804612552522],[-87.76230953578651,41.9880076462356],[-87.76228563414617,41.98795332940063],[-87.76225846756401,41.987918617345024],[-87.76222834697637,41.98788929666001],[-87.76218494080695,41.987856644270416],[-87.76213920938412,41.98782076985545],[-87.76209324017546,41.98778269833033],[-87.7620428533142,41.987753276747256],[-87.76198816509448,41.987719497898716],[-87.76194057953047,41.98769766420359],[-87.76189004801346,41.98768443261102],[-87.76182504755494,41.98767269315817],[-87.7617259734654,41.98767472454484],[-87.76167800055306,41.98767975452651],[-87.76161654222567,41.98768323546032],[-87.76156314081528,41.9876947695536],[-87.76151904900561,41.98771005466394],[-87.7614682571027,41.98770944490696],[-87.76143872008403,41.98771360615648],[-87.76133435576108,41.9877190136575],[-87.76125835040791,41.98772448006453],[-87.76119454581199,41.98773118723543],[-87.76113727931916,41.987743031170936],[-87.76105341486621,41.9877676404981],[-87.76096169562808,41.98780269289379],[-87.76092511323247,41.987817274282975],[-87.76089703169961,41.98783140409462],[-87.76083411196474,41.98787181424709],[-87.76082096848361,41.98788025571723],[-87.76079625876737,41.98790395213402],[-87.7607640176271,41.987930739368615],[-87.76074383045302,41.987946417826414],[-87.76068377019743,41.98797034951949],[-87.76067487541626,41.987973707955845],[-87.75918763036027,41.985222998548224],[-87.75909265882675,41.985047237426905],[-87.75885145515029,41.98444398341464],[-87.75884368338615,41.984424545765236],[-87.75879498773874,41.984302756186146],[-87.75815664225759,41.9829456392845],[-87.75801036146186,41.982954510710414],[-87.75746351632662,41.981905541871285],[-87.75641506292273,41.97989495193663],[-87.75640571771066,41.97987696803812],[-87.75505980657766,41.97728680517926],[-87.75513947726286,41.97733627393679],[-87.75515648668154,41.97734670580205],[-87.75533002754115,41.97745313824074],[-87.75558553424956,41.977609839098804],[-87.75576285082713,41.977718605989935],[-87.75580216307851,41.977742760667255],[-87.75597841309279,41.97785108278557],[-87.75625467346227,41.978019099885806],[-87.75650474659331,41.97817117812592],[-87.7566085108588,41.97823462404925],[-87.75677672232473,41.97833747102869],[-87.75695535937925,41.97844654456314],[-87.75716501325297,41.978574598729395],[-87.7575084097661,41.97878717942934],[-87.7576710087802,41.97888783588011],[-87.75774744982297,41.97893495295301],[-87.75791331636967,41.9790371825027],[-87.75803536641484,41.979112436807],[-87.75813042458479,41.97917103536266],[-87.75826660040366,41.97925418090135],[-87.75843342788082,41.97935603059537],[-87.75853068483995,41.97941562801677],[-87.75864787774533,41.9794874287392],[-87.75869041443886,41.979513489869],[-87.75880438682326,41.979583351446905],[-87.75892677217423,41.97965835922418],[-87.759059472572,41.97973967552856],[-87.759200513014,41.97982608217411],[-87.75934294567895,41.979913127047695],[-87.75946207888359,41.97998592262843],[-87.7596635143851,41.98010877202454],[-87.75974032859212,41.98015561520835],[-87.75985437239466,41.980225970052146],[-87.76003871165189,41.980340144025966],[-87.76028203628262,41.9804914445757],[-87.76040339747333,41.9805669069592],[-87.76050328806264,41.98062848343832],[-87.76055113020041,41.98065798331356],[-87.76067687955528,41.980735640435036],[-87.7608771357651,41.980859277627296],[-87.76105317914528,41.980967947632],[-87.7612126130626,41.981064738909694],[-87.7613558946236,41.98095694271781],[-87.7614856587944,41.980861432040626],[-87.7615930617773,41.98078233050094],[-87.76163608202592,41.98075082258587],[-87.76172826458827,41.98068330798219],[-87.76185300189253,41.980775474513266],[-87.76191610066017,41.980818131656974],[-87.76206783259333,41.98091059806621],[-87.7621278776773,41.98094517194068],[-87.76220613833631,41.980990978145456],[-87.76230093638777,41.98104649816073],[-87.76237436769702,41.981089480866906],[-87.76243775249957,41.981124894449614],[-87.76248900373587,41.981143453142266],[-87.76257718727646,41.981153084683704],[-87.76264588149375,41.98115408480367],[-87.76269714471938,41.981154833312594],[-87.76278319699419,41.981156057115776],[-87.76283457459466,41.9811563124497],[-87.76297195027232,41.98115562295837],[-87.7630406564994,41.9811552782424],[-87.76329848683835,41.98115419877063],[-87.76349958094988,41.98114905998942],[-87.76365995951575,41.981144961393866],[-87.76376298157291,41.9811444572228],[-87.76393449016096,41.98114357917645],[-87.7641018103106,41.98114274733857],[-87.76420931477364,41.981142225476276],[-87.7644673674455,41.9811409521126],[-87.76471629859722,41.98114078994498],[-87.76487855884491,41.98114068382399],[-87.76511939507027,41.98113984541515],[-87.76522223238345,41.98113947623015],[-87.76532692615922,41.98113912272455],[-87.76556597947506,41.98113826797114],[-87.76575506604578,41.98113761134943],[-87.76593688311655,41.98113692809167],[-87.7660641301294,41.98113644965388],[-87.76628709790617,41.98113491677403],[-87.7664070047832,41.98113408200002],[-87.76655159198096,41.981133063524],[-87.76661312705627,41.98113262994787],[-87.76678541025302,41.98113144960349],[-87.76699204739961,41.98112999941187],[-87.76715710729422,41.981130094603635],[-87.76736998624153,41.981130216757364],[-87.76750739695053,41.98112971410503],[-87.76761045492131,41.98112934386804],[-87.76776615582628,41.98112875650586],[-87.76793654788119,41.98112815127869],[-87.76819415590337,41.981127196925776],[-87.76837656045714,41.981119837421836],[-87.76837559982683,41.98123807765971],[-87.76837291499776,41.981392014234586],[-87.76837071464742,41.98152026745056],[-87.76836851501314,41.98164843834108],[-87.7683655707125,41.981815079286626],[-87.76836020584813,41.98209743134021],[-87.76835800765954,41.98221295145098],[-87.76835528914164,41.98235404496594],[-87.76835160206365,41.98254645029575],[-87.76834720899286,41.982777106324534],[-87.76834456898683,41.982939640389326],[-87.76855675371175,41.98293834366845],[-87.76876283822952,41.98293765622876],[-87.76894899896372,41.98293705707538],[-87.76895174577494,41.98293704807703],[-87.76915768317835,41.9829363592052],[-87.76938057664766,41.982935615777876],[-87.76955493685817,41.98293576858249],[-87.76967297553013,41.982935871818015],[-87.7697812628306,41.98293508623908],[-87.77007125417963,41.982933079200095],[-87.77015668689509,41.98293248436265],[-87.77025854951385,41.982931775211235],[-87.77051308305897,41.98292997732241],[-87.77076839147897,41.98292918978866],[-87.77092197759188,41.98292871566765],[-87.77124583315269,41.98292785947351],[-87.77137216148742,41.98292752268668],[-87.77146721724901,41.9829272692562],[-87.7717903742628,41.982926380664786],[-87.77197774022136,41.982925865918624],[-87.772113788729,41.98292549214779],[-87.77233491706447,41.982924706912506],[-87.77258240389978,41.982923825530335],[-87.77298233949959,41.982922353336576],[-87.77319133647497,41.98292066668655],[-87.77334045502776,41.98291946309405],[-87.77349335357829,41.982919001388005],[-87.7737320982957,41.982918354253805],[-87.77378969678665,41.98291819868225],[-87.7739530778253,41.98291775727011],[-87.77435203534773,41.9829175087829],[-87.77470232751237,41.98291728939064],[-87.77497476729008,41.9829161175823],[-87.77512825055166,41.98291545402036],[-87.77514502839007,41.982915381102146],[-87.77545130720823,41.98291404366406],[-87.77561396700368,41.98291229233787],[-87.77579199566146,41.98291037503175],[-87.7759111683696,41.98290974630456],[-87.77609871891507,41.98290868100393],[-87.77621984832312,41.98290800903983],[-87.77666059723022,41.98290558928158],[-87.7768261315589,41.98290499450909],[-87.7770019631377,41.98290436268347],[-87.77718935389808,41.98290474925393],[-87.77735824868167,41.982904634312874],[-87.77743176167908,41.98290395026267],[-87.77761425823567,41.982902251817904],[-87.77781822006718,41.98290032957272],[-87.77803847345739,41.98290485643697],[-87.77803607648218,41.98303480726315],[-87.77803276381697,41.98317477274067],[-87.77803007506643,41.98328949484384],[-87.77802705761508,41.98341664659187],[-87.77802135398312,41.983658218582775],[-87.77801627996965,41.98387388833967],[-87.77800882186466,41.984190368541746],[-87.77800233310403,41.98450957017501],[-87.77799846066048,41.984688830153004],[-87.77799752933592,41.984731284487715],[-87.77799303583296,41.984936083935374],[-87.77799031251983,41.9850886209345],[-87.77798773495454,41.98522861763323],[-87.77798383283368,41.9854448418392],[-87.77798103542685,41.9855974333502],[-87.77797458136384,41.985950690609464],[-87.77797177218187,41.98610399554217],[-87.77796660660186,41.98638580000807],[-87.77796338004183,41.98655885127772],[-87.77795779632507,41.98685832525379],[-87.77795131047908,41.98720618718204],[-87.7779458457562,41.98747942824008],[-87.77794330496033,41.98761939761551],[-87.77793977212163,41.987810020127206],[-87.77793693933349,41.9879624193092],[-87.77793222753839,41.988216728992114],[-87.77792840677068,41.988390363491995],[-87.77792523522959,41.98853450097727],[-87.77792217999318,41.98868709143186],[-87.77791857305759,41.98886506251316],[-87.77791679717896,41.98895375057673],[-87.7779155180219,41.98901762524338],[-87.77791168785883,41.98920857557328],[-87.77790885357543,41.9893484337179],[-87.77790770127933,41.989389292568355],[-87.7779042640396,41.989511173283965],[-87.77790204716479,41.989589780581994],[-87.77790046469987,41.98969141807521],[-87.7778986307009,41.98981352607737],[-87.7778951808467,41.98996147771432],[-87.77789159228793,41.99011535395132],[-87.77789112102509,41.99020239520196],[-87.77789037448333,41.99034009797594],[-87.77788809194978,41.99049263696207],[-87.7778870522887,41.990561703697075],[-87.7778861760155,41.99061993108676],[-87.77788330364534,41.99081069390295],[-87.7778800635681,41.99102686621495],[-87.7778771917348,41.99121751925215],[-87.77787487233252,41.99137005803636],[-87.7778722051362,41.991548719904365],[-87.77787152154343,41.99159468192306],[-87.77786955062022,41.99170294748446],[-87.77786743719774,41.99181905527353],[-87.7778661521348,41.991865316241494],[-87.77786345403435,41.991964094603794],[-87.77786106777265,41.992052391086695],[-87.77785911142036,41.99212513031838],[-87.77785650451153,41.99223452889023],[-87.77785546972369,41.992328155927424],[-87.7778545170486,41.99241656938387],[-87.77785361777538,41.99249461002836],[-87.77785228369245,41.992614195727086],[-87.77785120379085,41.99271300907407],[-87.77785031957696,41.99279354700759],[-87.777846430237,41.99291221337789],[-87.77784329439066,41.99306420069832],[-87.77784371590452,41.99313417978355],[-87.77784182169793,41.99325894929226],[-87.77783894346541,41.99344611709251],[-87.77783536314028,41.99368017982609],[-87.77783284504729,41.99377097313829],[-87.77781885277415,41.99385704606224],[-87.77796433691039,41.993925449076514],[-87.77802383570257,41.993953316097695],[-87.77808575280565,41.99398229246409],[-87.77813829072359,41.9940068876036],[-87.77821020966232,41.994040577411106],[-87.7782871849645,41.994076596747604],[-87.77838838006535,41.994123682741694],[-87.77845569058722,41.994154331225104],[-87.77856480932658,41.99420400746685],[-87.77869609906195,41.994263477195474],[-87.77876690832971,41.99429611163641],[-87.77879204775226,41.99430769751446],[-87.7789959697839,41.994400653652654],[-87.77926951049723,41.994528426856895],[-87.77952319369454,41.99464699287449],[-87.77968257073867,41.99472141591198],[-87.78004765466305,41.99489145084687],[-87.78132334332713,41.995465557979706],[-87.78286947833581,41.99616109148136],[-87.78286950173344,41.99620738344676],[-87.78286953545413,41.9962738219807],[-87.78285175403863,41.99740030257821],[-87.78241669459516,41.99738955285381],[-87.78166060736531,41.99739958783233],[-87.7804924863619,41.99741007628251],[-87.78002228629337,41.99741355389769]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3062233.78717","perimeter":"0.0","tract_cent":"1176611.52483389","census_t_1":"17031080100","tract_numa":"25","tract_comm":"8","objectid":"302","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909682.58075782","census_tra":"080100","tract_ce_3":"41.90752007","tract_crea":"","tract_ce_2":"-87.6266589","shape_len":"8162.09876905"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62645810267597,41.911470526265965],[-87.62640461917296,41.91137318855012],[-87.62632294794103,41.91138165933719],[-87.62617635054076,41.9113982395391],[-87.62600255358274,41.911418105069416],[-87.625733701703,41.911448355762786],[-87.62563247929567,41.911459757980126],[-87.62470625161168,41.91156481836414],[-87.62446476693462,41.91156699961249],[-87.62458571026929,41.91147507772598],[-87.62466294355293,41.91141637705934],[-87.62466179673099,41.91140420619176],[-87.62466179639095,41.911404203719854],[-87.62466179642738,41.91140420042701],[-87.6246690918648,41.9112445231584],[-87.62466938848964,41.911238033517996],[-87.62467838988327,41.9110410030111],[-87.62468476715641,41.91090141824235],[-87.624687045889,41.91085154388583],[-87.62468704655684,41.91085151672209],[-87.6246879284627,41.91084851092326],[-87.62470338622173,41.910795827403355],[-87.62472248360042,41.91074859415031],[-87.62472544488854,41.910741271065724],[-87.62473748940711,41.91071806802688],[-87.6247530350949,41.910688120971905],[-87.62477022507062,41.91066193734198],[-87.62479451290599,41.91063120065034],[-87.62480170963899,41.91062209333105],[-87.62483808999588,41.910584667546296],[-87.62486183894602,41.91056458390196],[-87.62487906905575,41.910550013527704],[-87.62491765373059,41.910523010998276],[-87.62492427635453,41.910518376514275],[-87.6249260023807,41.91051700873691],[-87.62495259249503,41.91049593931177],[-87.62498712393203,41.91046297434133],[-87.6250168698167,41.91042748314143],[-87.62504149646308,41.910389874194045],[-87.6250607035959,41.91035055810781],[-87.62509515204759,41.91026523298919],[-87.62511589347679,41.910180234953124],[-87.62512112727399,41.91012459068053],[-87.62512392865851,41.91009480179556],[-87.62513502617237,41.9100048598206],[-87.62514306387314,41.90991580401849],[-87.62514417176122,41.90985097049333],[-87.62514472650534,41.909818531095524],[-87.62513550436034,41.90969234974514],[-87.62512251845166,41.90951953939272],[-87.62512251651144,41.909519515505956],[-87.62511225255791,41.90938293203434],[-87.62508968613358,41.909111333730294],[-87.62508766024227,41.90909413495228],[-87.62507269126492,41.90896707401047],[-87.62504575902348,41.90873474665982],[-87.62501943607894,41.90854040236111],[-87.62498898176365,41.908380857108575],[-87.62497151508971,41.90828931191422],[-87.6249546624936,41.90821333714507],[-87.62492847382697,41.908095276354175],[-87.6249019022566,41.90798849746419],[-87.62490188221,41.90798841666017],[-87.62490042420717,41.907980135734185],[-87.62489507890017,41.90794977545311],[-87.62488041668378,41.907866494773664],[-87.62486343985124,41.90778519596298],[-87.62484231790792,41.90768404286813],[-87.62483685021209,41.907665021533255],[-87.6248248776092,41.907623370661426],[-87.62480926042598,41.90752736347404],[-87.62480922815158,41.9075273586097],[-87.62480675762812,41.90752702530956],[-87.62480053015595,41.90752618447106],[-87.62469490558996,41.90725445739291],[-87.62459578818638,41.90699887899912],[-87.624539235534,41.90683582344346],[-87.62452302081893,41.90678907281721],[-87.62443519873872,41.906535403172484],[-87.62443401118324,41.906531972139575],[-87.62440518293735,41.90644869777756],[-87.62439753607767,41.90642660808732],[-87.6242917510196,41.90612650535803],[-87.62421521500578,41.90590936697318],[-87.62420427369872,41.90587832555125],[-87.62420122326243,41.9058696865366],[-87.62417190045235,41.905786640666264],[-87.62414742618057,41.90571732694935],[-87.6241058903378,41.90559967058819],[-87.62400381130536,41.905310513854936],[-87.62399108034003,41.90527447179439],[-87.62397698945222,41.905234579957224],[-87.6238602544693,41.90490197122508],[-87.62364539526868,41.904286843294614],[-87.62363770417896,41.904264746686835],[-87.62405219131278,41.90423197265741],[-87.62427723999198,41.90418876300483],[-87.62442844439171,41.90415953280653],[-87.62466438088865,41.90411394834167],[-87.62500379568628,41.90400104662208],[-87.62564737618835,41.90399078922223],[-87.62584779884286,41.903987594225754],[-87.62603176150746,41.903984661104545],[-87.62633976254384,41.90397955210131],[-87.62685744522612,41.90397096413043],[-87.62707903474863,41.90396728689236],[-87.62797690276383,41.903953800509775],[-87.62800210609052,41.90395342184341],[-87.6286780013847,41.90394189780993],[-87.62867698238603,41.90403456837339],[-87.6286907444421,41.904296370181356],[-87.6287066144431,41.904740648573345],[-87.62871026449986,41.90485436474391],[-87.62873252587269,41.90554791363388],[-87.6287429348203,41.9058190015772],[-87.62877287828478,41.90659884480101],[-87.62877520624845,41.90676392508672],[-87.62877632537827,41.90684329454341],[-87.62878477912236,41.90779943038445],[-87.62878659127043,41.90800444122709],[-87.62878943350093,41.9081201828307],[-87.62879735968494,41.90840428666483],[-87.62880395318676,41.90864060527452],[-87.62881832687833,41.909020631735594],[-87.62883140152772,41.90948155912735],[-87.62883638255815,41.909657156948455],[-87.62884229153376,41.909834799693684],[-87.62884906078045,41.910037749500056],[-87.62886411882823,41.91046917973847],[-87.62888562429376,41.91122300767783],[-87.62850626957838,41.911228919021795],[-87.62794388560846,41.91123778693154],[-87.62783171789611,41.91123958903023],[-87.62766307940147,41.91124229727874],[-87.62717118433194,41.9112492647243],[-87.62712453544287,41.911251421841854],[-87.6271034930123,41.91125518428834],[-87.62707566625787,41.91126015993859],[-87.62700724837848,41.91128002827885],[-87.62698508991906,41.91128661313769],[-87.62694076662223,41.911300393394],[-87.62690299387286,41.9113136030682],[-87.62686468723022,41.91133811292023],[-87.62682719451564,41.911367435929094],[-87.62678948754032,41.911407689239184],[-87.62675883992614,41.91144194263724],[-87.62673798063294,41.911470631142336],[-87.62656614222855,41.911673458741305],[-87.62652436008189,41.91159217411744],[-87.62645810267597,41.911470526265965]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1879698.94133","perimeter":"0.0","tract_cent":"1166970.01137336","census_t_1":"17031061200","tract_numa":"9","tract_comm":"6","objectid":"303","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924743.49061025","census_tra":"061200","tract_ce_3":"41.94906053","tract_crea":"","tract_ce_2":"-87.6616429","shape_len":"5485.94696364"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66340346093057,41.947078419587186],[-87.66401530118848,41.947067933839634],[-87.66402079147532,41.94727577140389],[-87.6640272546765,41.94754318793354],[-87.66403277300869,41.947771473598834],[-87.66405179937648,41.94846523921418],[-87.66406721640152,41.94888904896713],[-87.66407044289491,41.948977747277965],[-87.66408373846627,41.949506058224884],[-87.66409167876317,41.949778741992716],[-87.66410732230577,41.95031593035535],[-87.66411816346428,41.95071135186686],[-87.664125429035,41.95097637529289],[-87.66350677055925,41.950985438157446],[-87.6634166137012,41.95098675870901],[-87.66291193941557,41.95099301609571],[-87.6623080118957,41.95100059020138],[-87.6617005600538,41.951011827360766],[-87.66133182457553,41.95101864710417],[-87.66110023035007,41.95102189527956],[-87.6604688662495,41.95103074772943],[-87.66001519773532,41.95103710661137],[-87.65967377950841,41.95104189930807],[-87.6596076613731,41.95104282636113],[-87.65926948932457,41.95104756637818],[-87.65925383750063,41.9505948763695],[-87.65923302695556,41.949750317719975],[-87.65923077429282,41.94965244589781],[-87.65922907674707,41.949597661460835],[-87.65922315689251,41.94938105349276],[-87.65921882802212,41.94922669358883],[-87.65921434684964,41.949065856445635],[-87.65921040367925,41.94896749005782],[-87.65920701133135,41.948882856745286],[-87.65920345413939,41.94875295229054],[-87.65919939796962,41.94860408239528],[-87.65919622157062,41.948487407274065],[-87.65919332899493,41.948381161550074],[-87.65918760482403,41.94817083920536],[-87.65918567794678,41.948059221037795],[-87.65918246867959,41.947873308950676],[-87.65917555061984,41.94762275902108],[-87.6591706817904,41.94744643231558],[-87.6591654629956,41.94725444397233],[-87.65916841268226,41.94714851051929],[-87.65942430653757,41.94714430156279],[-87.65958236134959,41.94714179891847],[-87.6597148901653,41.947137228912894],[-87.66038687005147,41.94712843448085],[-87.66105836107033,41.94711713629296],[-87.66159575407666,41.94710826425109],[-87.66250148887892,41.94709330542789],[-87.66280726903048,41.94708829890389],[-87.66325011066354,41.94708104715585],[-87.66340346093057,41.947078419587186]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1754200.4518","perimeter":"0.0","tract_cent":"1165727.44007233","census_t_1":"17031062400","tract_numa":"8","tract_comm":"6","objectid":"304","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921998.88600538","census_tra":"062400","tract_ce_3":"41.94155583","tract_crea":"","tract_ce_2":"-87.66628889","shape_len":"5296.83471094"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66776143849118,41.93970833470084],[-87.66866167476945,41.939696500752774],[-87.66867510026067,41.94013272430432],[-87.66867982433969,41.940608485521444],[-87.66869645557657,41.94099274825642],[-87.66871209351503,41.941523325184],[-87.6687268152086,41.942022800947385],[-87.66873791876061,41.94242228585913],[-87.66875245497906,41.94294528031796],[-87.66875435010348,41.943013457604145],[-87.66875600625738,41.943073428301645],[-87.6687632986905,41.94334336987307],[-87.66815725699666,41.94335125762845],[-87.66783190710082,41.94335885268448],[-87.66755279973908,41.94336331681667],[-87.66719093887183,41.943369103667024],[-87.66695003097455,41.94337272018432],[-87.66689562219445,41.94337353664368],[-87.66634216693372,41.94338080182882],[-87.66593322391216,41.94338616821498],[-87.66573687398187,41.94338919404948],[-87.66566687481149,41.943390272728244],[-87.66513215151713,41.94339887288674],[-87.66472962961554,41.94340534506884],[-87.66466183910634,41.94340632266052],[-87.66453953939696,41.94340825876677],[-87.66391735367066,41.94341810664464],[-87.66390720453431,41.943045259551965],[-87.66390408107405,41.94294675145182],[-87.66390338583817,41.94291710987216],[-87.66389970930948,41.94276036629339],[-87.6638916117256,41.942504599631086],[-87.66387959590833,41.94212504543282],[-87.66387365429813,41.94186378888516],[-87.66386628901812,41.94158750657661],[-87.66385918829805,41.94132114558963],[-87.6638469320281,41.94089753179041],[-87.66384223775701,41.940670178746565],[-87.66383290373916,41.94021926188958],[-87.66382723818312,41.93995521764197],[-87.6638209258618,41.93976488119715],[-87.6644545797909,41.939754390667424],[-87.66466246628438,41.93975094819597],[-87.6651693091197,41.93974484296029],[-87.66564850902162,41.93973909613926],[-87.66624225686344,41.93973006865068],[-87.66703255785117,41.93971804776177],[-87.66776143849118,41.93970833470084]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3493213.65632","perimeter":"0.0","tract_cent":"1163149.42378028","census_t_1":"17031051300","tract_numa":"24","tract_comm":"5","objectid":"305","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919948.30409548","census_tra":"051300","tract_ce_3":"41.93598357","tract_crea":"","tract_ce_2":"-87.67582193","shape_len":"7981.98148923"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67746364424721,41.932293935578414],[-87.6781352863089,41.9322846810795],[-87.67813534000805,41.93229027877404],[-87.67813935968063,41.93270906986178],[-87.67813972242195,41.9327364320901],[-87.67814310095504,41.9329911740782],[-87.67814582589314,41.933196664812904],[-87.67814601782908,41.93321116307797],[-87.6781635533234,41.93361282495992],[-87.67817167266858,41.933860948830656],[-87.6781793549749,41.93410886794747],[-87.67818537573197,41.934303175815],[-87.67818821375529,41.934392159905066],[-87.67819105703967,41.93448059463085],[-87.67819942271302,41.934934426604464],[-87.67820340433838,41.935017573667785],[-87.67821603439936,41.9352720362909],[-87.67821890932376,41.935364639653095],[-87.67822497699117,41.9355510065214],[-87.67823126500525,41.93574464709711],[-87.67823722458128,41.935930305052864],[-87.67824393859297,41.93613928329302],[-87.6782479054843,41.9362626311469],[-87.67825215871915,41.93639646327518],[-87.67826033118199,41.936653780733295],[-87.67826696624336,41.936840425766235],[-87.67827597015568,41.93709368595442],[-87.6782813890586,41.93726446217423],[-87.67828911381046,41.93750808311155],[-87.67829716133576,41.93775109090024],[-87.67830570713927,41.93800916234132],[-87.67831131038257,41.93817996702681],[-87.67831698304948,41.938351101409296],[-87.67832766374683,41.93866027438768],[-87.67833807857163,41.93896178287731],[-87.6783422751274,41.93911526157182],[-87.67834332104901,41.93915352385891],[-87.67834917284118,41.939364669930704],[-87.6783552217843,41.93957285967569],[-87.67817199262704,41.93957500168562],[-87.67757974454138,41.939580034982605],[-87.6767117618563,41.939592033591865],[-87.67629666562523,41.939597726932554],[-87.6759312777712,41.93960157553363],[-87.67538684297827,41.939607308153015],[-87.67496461946712,41.93961267070995],[-87.67467373919769,41.93961636431562],[-87.67430260960235,41.939621252448305],[-87.67389387518499,41.93962663470588],[-87.67371879228992,41.93962893961095],[-87.67362238358307,41.93963020868546],[-87.6735728678139,41.93963086049177],[-87.67343994609232,41.939632610038444],[-87.6734403240011,41.939429974795274],[-87.67343231656183,41.93918706550971],[-87.67343198049345,41.9391768825304],[-87.67342430917154,41.938944156213765],[-87.67342151280835,41.9387187578008],[-87.67341943107935,41.93855099151633],[-87.67341305128282,41.93828929392803],[-87.67341247685582,41.93826604709871],[-87.6734070345843,41.93804581947503],[-87.67339897259497,41.9378101128404],[-87.67339110656886,41.937580143836385],[-87.67338495138091,41.93735000573342],[-87.67338309538324,41.937280593776926],[-87.67337858666588,41.93711185329811],[-87.67337367758485,41.93689942254987],[-87.673367785888,41.93664445075251],[-87.67336271338478,41.936441102412374],[-87.67336170074091,41.93640050959227],[-87.67335494868512,41.9361112849719],[-87.67335239722028,41.93598745525181],[-87.6734729207661,41.9359859276249],[-87.67339078277324,41.93363311747417],[-87.67338221197345,41.933395006816866],[-87.67336415408506,41.9323427454776],[-87.67341879144998,41.93234211770048],[-87.6735400825551,41.93234072448008],[-87.67356046001407,41.93234049031526],[-87.67380806555413,41.932337645035204],[-87.67412305844697,41.93233402477983],[-87.67449663567719,41.93232970691191],[-87.67478333233663,41.93232639256038],[-87.67478364144955,41.93232638884488],[-87.67515834411951,41.932321907332366],[-87.6754041274397,41.93231895266539],[-87.67566482900902,41.93231606975122],[-87.67593703856036,41.93231305894175],[-87.67637428574247,41.93230730120229],[-87.67689504557706,41.93230009887942],[-87.6771715763996,41.932297101889844],[-87.67746364424721,41.932293935578414]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1816401.27322","perimeter":"0.0","tract_cent":"1162843.16813421","census_t_1":"17031040500","tract_numa":"13","tract_comm":"4","objectid":"306","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1931234.87654862","census_tra":"040500","tract_ce_3":"41.96696095","tract_crea":"","tract_ce_2":"-87.67662961","shape_len":"5390.31142227"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67878665996045,41.96509925526641],[-87.67908350563576,41.96509599210267],[-87.6790873401997,41.965252339556756],[-87.67909400056024,41.96544595378052],[-87.67909776775858,41.96562401930694],[-87.6791038661197,41.9658401876839],[-87.67910786460081,41.96600826588286],[-87.67911304554715,41.96622602038175],[-87.67911622028659,41.96634591551114],[-87.67911770853965,41.966402289417736],[-87.67911902545464,41.966452372903596],[-87.67912022696139,41.96649806692409],[-87.67912647246062,41.96673580555742],[-87.67913289616493,41.966919075747214],[-87.67913939439691,41.96710448079812],[-87.67914538797727,41.9673309118467],[-87.67914867292149,41.96745546257489],[-87.67915408616336,41.96765955220278],[-87.6791594949154,41.96783529471414],[-87.67916418714978,41.967987734567174],[-87.6791678033524,41.96811225972632],[-87.67917142199403,41.96823302533667],[-87.67917323423939,41.96828591647985],[-87.67917802004132,41.96842551397798],[-87.67918558430992,41.968756178794344],[-87.67852092994187,41.96876484836382],[-87.6784386972667,41.968765916051666],[-87.67827846126349,41.96876799305679],[-87.67803558801518,41.96877110748625],[-87.67787288476026,41.96877356336093],[-87.67781632610159,41.96877391715034],[-87.677696502701,41.96877591646326],[-87.67753695968327,41.96877857843651],[-87.67702245992297,41.96878463954404],[-87.67639939607831,41.96879202500074],[-87.67620511037677,41.96879495858834],[-87.6760185280772,41.96879777596669],[-87.67554509894686,41.96880418469641],[-87.6754501769297,41.96880546951967],[-87.67488844636395,41.968813061294696],[-87.67481714361841,41.96881384440327],[-87.67474729977245,41.96881461168777],[-87.67461718678575,41.968816033122],[-87.67457518964622,41.96881660799551],[-87.67452369189952,41.96881731301875],[-87.67443429213117,41.968818536760935],[-87.67437792289859,41.9688193084344],[-87.67430925249167,41.96882024821206],[-87.67417408633298,41.96882177350465],[-87.67417209889321,41.968702063767104],[-87.67416555067597,41.9684740651557],[-87.67415840404156,41.96822564649561],[-87.67415196733205,41.96800110620228],[-87.6741444952618,41.96774146130841],[-87.67413979880074,41.96757639789608],[-87.67413378349937,41.967368023360514],[-87.67412593834631,41.9670804131251],[-87.67412303207661,41.96699555276656],[-87.67411983375507,41.96690214198342],[-87.67410345027218,41.966337043585845],[-87.67409628511163,41.96606905854273],[-87.67409225459302,41.96591788430862],[-87.67408361159839,41.965589957042276],[-87.6740765578724,41.96526481053059],[-87.67407748918937,41.96516926868252],[-87.67417155331854,41.96516664692546],[-87.67427953793519,41.96516568127644],[-87.67432927026132,41.96516523652858],[-87.67442370729242,41.965164391931935],[-87.67449861338683,41.96516372194569],[-87.67462232904109,41.96516177079538],[-87.67474228915648,41.96515987864734],[-87.67495285885367,41.96515732685118],[-87.67511312657787,41.96515487046769],[-87.67531504079422,41.96515101867033],[-87.67610711551696,41.96513958344383],[-87.67622484117445,41.96513868160835],[-87.67671628873833,41.96513315134688],[-87.67685228662454,41.96513075405003],[-87.67740400662012,41.96512102875971],[-87.6775949911589,41.96511721451059],[-87.67772988966856,41.96511452038084],[-87.67791041736305,41.965112056962184],[-87.67816416703724,41.96510827296706],[-87.67833822349229,41.96510574834507],[-87.67839228333618,41.96510496456581],[-87.6786654120868,41.965101033706354],[-87.67878665996045,41.96509925526641]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6788224.64966","perimeter":"0.0","tract_cent":"1169989.00504189","census_t_1":"17031031300","tract_numa":"21","tract_comm":"3","objectid":"307","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1933465.78457417","census_tra":"031300","tract_ce_3":"41.97292932","tract_crea":"","tract_ce_2":"-87.65029007","shape_len":"11304.8661425"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64611468822824,41.977809916389795],[-87.64666189542496,41.97744338243397],[-87.64660830035895,41.97739309027132],[-87.64658459868065,41.97736743457956],[-87.64655940432047,41.97734016404834],[-87.64651549891738,41.977284879935375],[-87.64649131386325,41.97724907877599],[-87.64647672710493,41.97722748659449],[-87.64646069913293,41.97719907907898],[-87.64644330915856,41.977168258396496],[-87.64641951944546,41.977116415906906],[-87.64641792127037,41.977112947007875],[-87.64641538691404,41.97710744509347],[-87.646393068633,41.977045374720014],[-87.64637649835724,41.97698229676564],[-87.64637148697778,41.97695258031582],[-87.64636574646218,41.976918539585604],[-87.64636346706595,41.97688870007819],[-87.6463608452817,41.976854378069206],[-87.64636075870865,41.97685038831014],[-87.64636059948326,41.9768430982179],[-87.64635556321649,41.976674308666205],[-87.64635006197456,41.97648992900544],[-87.64633150746619,41.97586807505308],[-87.64632098276236,41.97551449038398],[-87.64630848645265,41.97509467664435],[-87.6462873659688,41.974401145706246],[-87.64628736513106,41.97440112100343],[-87.64625827198066,41.973467559796326],[-87.64624763821509,41.97335195189209],[-87.64624691218289,41.973344057972035],[-87.64624519177619,41.97333174981786],[-87.64622970126173,41.973220932479784],[-87.64620663711044,41.97309834823082],[-87.64618151635817,41.97299217707436],[-87.64617779330196,41.972976442872096],[-87.64616881045967,41.97294507174364],[-87.64614312875297,41.9728553808054],[-87.6461305178537,41.972817882110704],[-87.6461027538879,41.97273532651536],[-87.64610160675717,41.972732364144726],[-87.6460567043052,41.972616392172554],[-87.64600505190353,41.97249876809936],[-87.64597719310936,41.97243976674528],[-87.64590642669741,41.97228989304532],[-87.64580061679169,41.97207894388906],[-87.6457400047778,41.97196493282931],[-87.6456893123587,41.97186958079564],[-87.64562981210736,41.971763698892865],[-87.6455725838164,41.971661859604055],[-87.64547441031517,41.97149631916056],[-87.64545043298455,41.97145588870483],[-87.64537251547256,41.97133112267947],[-87.64532292990648,41.97125172420796],[-87.64502747944869,41.97079883371855],[-87.64496726076537,41.970730736718124],[-87.64495194817196,41.970713420374125],[-87.6448413024618,41.970566189354905],[-87.6447795427817,41.9704870200396],[-87.64464663162913,41.97031664378406],[-87.64458709656516,41.97024493793976],[-87.64440341119128,41.97002372312539],[-87.64430574229641,41.96990662394324],[-87.64427089182428,41.969864840667455],[-87.64426985862808,41.96986360231959],[-87.64491798438875,41.96972709483611],[-87.64497126535872,41.96973555774257],[-87.6450626124659,41.96974540827243],[-87.64516340351108,41.96974217061528],[-87.64550843235936,41.96969487042204],[-87.64577809302398,41.96966144832815],[-87.64602757642648,41.969630526888224],[-87.64628825508886,41.96959630284871],[-87.64663885561424,41.969550569076766],[-87.64699889084716,41.969506152970496],[-87.64720142169311,41.96947995176945],[-87.64741311658696,41.96945256458507],[-87.64769562817827,41.96941561382138],[-87.64779709333679,41.969402602755146],[-87.64791001401574,41.969388122418074],[-87.64804043317507,41.96937139821157],[-87.64815575532602,41.96935660952391],[-87.64827301061564,41.96934157292882],[-87.6484262283536,41.96932192454191],[-87.64863269920983,41.96929483598806],[-87.64882430974322,41.96927010079872],[-87.64886703394126,41.96926458557414],[-87.64907586379945,41.96923762718998],[-87.64946452008732,41.969188324597525],[-87.64963567588148,41.96917487247962],[-87.64984425282157,41.969158478837976],[-87.64998605393932,41.96915770389823],[-87.6501183087253,41.96915558219648],[-87.65028998038937,41.96915367840314],[-87.65030972673297,41.969153320316366],[-87.65073692066684,41.9691455684518],[-87.65158039746173,41.969131700405406],[-87.65249843834555,41.969119829836536],[-87.65301602631698,41.969113134067015],[-87.65346944563997,41.96910726644124],[-87.65385549894411,41.969102269168026],[-87.65413018396649,41.96909888972889],[-87.65470195283928,41.96909185349806],[-87.65482207286492,41.969090295689504],[-87.65482831593368,41.96938850773832],[-87.65484071065784,41.96990457332937],[-87.65484448695929,41.97003148727511],[-87.65484884214099,41.97017783413774],[-87.65485226693508,41.9703060634912],[-87.65485992220722,41.97059603392863],[-87.65486102208625,41.97063986780017],[-87.65486474915295,41.97078840657058],[-87.65486586009582,41.97083268835973],[-87.65487013050266,41.971002866993246],[-87.65488141764288,41.971418899753274],[-87.65488441967392,41.971580496067666],[-87.65488623851948,41.97167841991712],[-87.65489826302664,41.972104720296855],[-87.65491382191713,41.972676154868495],[-87.65492518395028,41.9731717694889],[-87.6549283927562,41.97331309666446],[-87.65493074788378,41.97341680486022],[-87.6549383196787,41.97368745492591],[-87.65495051599564,41.9742015434031],[-87.65495512578512,41.97429742554975],[-87.65495889084633,41.97437573982336],[-87.65496574765046,41.97469295496312],[-87.65497574438346,41.97515793634672],[-87.65498059878608,41.97528057476989],[-87.65498412517488,41.97536967342087],[-87.65499326539094,41.97584260786578],[-87.65500443796294,41.97622450175555],[-87.65499285690912,41.976395927927655],[-87.65428444808684,41.97640681261105],[-87.65355910382375,41.97641795322974],[-87.65293638361781,41.97642729884027],[-87.65253128425846,41.97643404331586],[-87.65233108735987,41.976437375874184],[-87.65215185024084,41.97644016149665],[-87.65186082585473,41.97644468392858],[-87.65183098968659,41.97644544368109],[-87.65178928997535,41.976446505382604],[-87.6516025165826,41.97645126101954],[-87.6514649145343,41.97645476426236],[-87.65144746390322,41.97645520835269],[-87.65126040169545,41.97645997077325],[-87.65117437242823,41.9764677745273],[-87.65107369307856,41.97647680836704],[-87.65093222212614,41.97650025367013],[-87.6508689646395,41.976513737756946],[-87.65081699738492,41.97652481531231],[-87.65073883308945,41.9765448999598],[-87.6506133324542,41.97657714771819],[-87.65049104150674,41.976608571138435],[-87.65043182948097,41.97662378566376],[-87.65042652833446,41.976625147907505],[-87.65026691341768,41.97666616093581],[-87.65020955106648,41.976680900079884],[-87.65016503654199,41.976694224729826],[-87.65014165252141,41.976701224053656],[-87.65000462113183,41.97673364593312],[-87.64995382545864,41.97674559778607],[-87.64977633117397,41.976787360161005],[-87.64959954349933,41.97682296848798],[-87.64939618438065,41.9768479134498],[-87.64932039769553,41.97685042564724],[-87.64921561212496,41.976847880313755],[-87.64911500253821,41.97684000858712],[-87.64906356911195,41.976821401241445],[-87.6490432809134,41.976814061422125],[-87.64904325393668,41.97681410791271],[-87.64895753506083,41.97696109073612],[-87.64886012839155,41.97704214990639],[-87.64729034405143,41.977747624516454],[-87.64728436255274,41.97774646858909],[-87.64720106339526,41.97772585578557],[-87.64715770676969,41.977712660768645],[-87.64711975745415,41.97770111164612],[-87.64708034049951,41.97768674313021],[-87.64706812284818,41.97768228980546],[-87.64705493477979,41.977677482439454],[-87.6470409224595,41.977672374594285],[-87.64699103347942,41.97765100446447],[-87.64696477676424,41.97763975790388],[-87.64689179736425,41.97760339944696],[-87.64682220209444,41.97756349454696],[-87.64675635871927,41.977520180972846],[-87.64673570373293,41.97750463998714],[-87.64669455906088,41.977473681658815],[-87.64669120396123,41.977470972826005],[-87.64656554743651,41.97755515849217],[-87.64614495940164,41.9778369358517],[-87.64614484393239,41.97783683225308],[-87.64613226772876,41.97782560729549],[-87.64611468822824,41.977809916389795]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10636033.9715","perimeter":"0.0","tract_cent":"1161321.63695592","census_t_1":"17031750400","tract_numa":"50","tract_comm":"75","objectid":"310","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1828726.07365123","census_tra":"750400","tract_ce_3":"41.68569689","tract_crea":"","tract_ce_2":"-87.68506809","shape_len":"16197.3191112"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68115514950513,41.69177915866871],[-87.68114688831022,41.69149520892521],[-87.6811410753229,41.691244261346114],[-87.68113395055748,41.69099273000101],[-87.68112645538011,41.69079161026441],[-87.68111853965684,41.690579208364646],[-87.68110808639193,41.6902910486578],[-87.6810990075066,41.690040850904026],[-87.68109206117732,41.68981778202791],[-87.6810822548521,41.689502893372776],[-87.68107559467896,41.68926335733625],[-87.68107278863286,41.689170363290906],[-87.68106927409632,41.68905541053061],[-87.68105992018053,41.6887563894106],[-87.6810556902961,41.68861791334136],[-87.6810500708746,41.688433928826335],[-87.68104683802135,41.68833709027307],[-87.68104128355866,41.68816715657387],[-87.68103179127255,41.68787677955713],[-87.6810268786622,41.68769985170158],[-87.68102106511965,41.68749251146983],[-87.68101496219698,41.68727391780465],[-87.68100910402907,41.68709528334828],[-87.6810041586131,41.68694448110089],[-87.68099756281573,41.68673848112643],[-87.68099149240616,41.68654933436021],[-87.6809857764336,41.68635409716949],[-87.68097821861372,41.68609561942249],[-87.68097415789266,41.685956733420085],[-87.68096849037376,41.68576761635771],[-87.68096204609529,41.68556109577562],[-87.68095655836399,41.68539763928325],[-87.68094785707771,41.68513553302329],[-87.68093843522122,41.68484328982358],[-87.68092751502148,41.684504151076574],[-87.6809198479925,41.684266049888514],[-87.6809127254846,41.68402522116423],[-87.68090495720388,41.68375779611836],[-87.68089633232113,41.6834410506963],[-87.68088700144894,41.68312534354857],[-87.68088069548436,41.68291245651196],[-87.68087452332226,41.68272981339733],[-87.68086204124553,41.68236005254537],[-87.68086025176969,41.68230831185699],[-87.68085671370342,41.682206147170696],[-87.680847588497,41.681938961324704],[-87.68084092214637,41.68173274121733],[-87.68083419984387,41.681511915406645],[-87.68083009303474,41.681376985818325],[-87.68082437845133,41.68118172101145],[-87.68081581505709,41.68092043863773],[-87.68081005802671,41.68074478216092],[-87.68080716923869,41.680656630990455],[-87.68080551179831,41.68060686586326],[-87.68080165634386,41.680484858858925],[-87.68079228300543,41.680202412986844],[-87.68078300864374,41.6799210107863],[-87.68077466580057,41.67966705672144],[-87.68076486730301,41.67928902299246],[-87.68075906940327,41.679111129594],[-87.68075317645939,41.678930326922796],[-87.68074522239804,41.67868628154404],[-87.68074149272242,41.678528290857344],[-87.68073858311652,41.6784050037287],[-87.68073459107056,41.67825316573046],[-87.68073223652169,41.67816360257157],[-87.68072304423733,41.677892272468625],[-87.68071085788804,41.6775549785394],[-87.68069656332486,41.677259698924],[-87.68069641165395,41.67725655908421],[-87.68083929863516,41.677262199609615],[-87.68112840685204,41.677269549117256],[-87.68132114958411,41.677282526286824],[-87.68137448357369,41.677286122056515],[-87.68168785565798,41.67730129167915],[-87.68192842836392,41.67729593210005],[-87.6819284444749,41.6772959316425],[-87.68240665410731,41.677285276401676],[-87.68243591674863,41.6772842296824],[-87.68254375444006,41.67728037202675],[-87.68285362075925,41.67726925471538],[-87.68293152394168,41.67726761978577],[-87.68315121248949,41.677263008042694],[-87.6831512168819,41.67726300806754],[-87.68375844060469,41.67725027721154],[-87.68437748772679,41.67723728141083],[-87.68437749431813,41.67723728117362],[-87.68472264614876,41.6772300357509],[-87.68496974495325,41.677225090842256],[-87.68498131498806,41.67722485396073],[-87.68498625817669,41.677224744355044],[-87.68522218955071,41.6772200380568],[-87.685232550404,41.677219884620015],[-87.68560213663191,41.67721441353684],[-87.6859223343722,41.67720968615581],[-87.68592247421046,41.67720968557136],[-87.68620516228387,41.67720825968188],[-87.68616405381015,41.67729952595675],[-87.6861428656484,41.67734649846226],[-87.68600509233916,41.677652320750774],[-87.68592980531545,41.67783033435878],[-87.68590278638491,41.67789332645047],[-87.68586886028304,41.67797242184329],[-87.68581165258182,41.678124829314854],[-87.68578243014504,41.6782026789025],[-87.68571025199037,41.67843570592661],[-87.6856553731757,41.67865900564284],[-87.68565239809134,41.67867095393242],[-87.68560902233224,41.678907986086315],[-87.68559453141799,41.67902746028624],[-87.68558012984924,41.67914619620861],[-87.68556587214488,41.67938520342636],[-87.68556625489865,41.6796244575367],[-87.68557618817796,41.679934108693104],[-87.68557632677374,41.67993843043938],[-87.68560541722022,41.68084526590888],[-87.68560541856614,41.68084531421685],[-87.68560545118736,41.68084633227669],[-87.68563462378428,41.681755700538304],[-87.68566374487477,41.68266344398618],[-87.68567072420198,41.68288099200682],[-87.68567811403057,41.68311134577448],[-87.68568670552584,41.68337914321206],[-87.68569282172487,41.68356978687457],[-87.68570330899507,41.68389668389125],[-87.68570821393256,41.684049572873626],[-87.68571240206441,41.6841798650406],[-87.68571252399398,41.68418365977654],[-87.68571837107227,41.68436555788187],[-87.68572195737309,41.6844752964908],[-87.68581230711006,41.68447404041824],[-87.68581231040473,41.684474040436804],[-87.68584271184643,41.68447361757196],[-87.68590566820349,41.684473162942766],[-87.68595336793163,41.684472818010924],[-87.68600239887492,41.68447246354255],[-87.68621403190009,41.68447093355025],[-87.68631532126176,41.68446949470798],[-87.68647414251629,41.68446723851093],[-87.6867292455228,41.684463594020265],[-87.68682278691506,41.68446225713727],[-87.6868227905758,41.684462257157854],[-87.68706268662751,41.68445880383291],[-87.68724590979761,41.68445615165956],[-87.68749693798428,41.684452517684385],[-87.68761158822805,41.68445071752884],[-87.6877312023901,41.68444883921245],[-87.68792863457534,41.684445726506446],[-87.68807260230471,41.68444345686064],[-87.68829197448268,41.684438952934066],[-87.68857346956256,41.68443320184278],[-87.68861760868526,41.684432299859786],[-87.68868055125294,41.68443160734531],[-87.68890004529597,41.68442919110909],[-87.68898835646795,41.684428231767434],[-87.68927125989174,41.68442232549553],[-87.68951763170416,41.68441969837108],[-87.68989602932515,41.684415698470815],[-87.68990088474159,41.68441563426818],[-87.68991938958051,41.68441539016092],[-87.69005213293552,41.684413540668494],[-87.69009645626618,41.684412923187594],[-87.69052762740677,41.68440715776237],[-87.690837498958,41.68440253764424],[-87.69085993796884,41.68798882716968],[-87.69086245088393,41.68807148392733],[-87.69091730759769,41.689875909354676],[-87.69092062393325,41.689984985639796],[-87.69094320782261,41.691687600163156],[-87.69094304194786,41.691687601705866],[-87.69061753697339,41.691690638683504],[-87.69026212727255,41.69169446847261],[-87.690016094017,41.691697153107356],[-87.68984681122285,41.69169898949961],[-87.68976149239401,41.69169991547202],[-87.68949718711684,41.69170278208148],[-87.68915516573507,41.69170786351593],[-87.68889634294072,41.69171168157094],[-87.68853341112047,41.6917147804925],[-87.68818638191037,41.691717742506185],[-87.68791262980602,41.69172061171619],[-87.6875025518172,41.69172490642276],[-87.68730058446062,41.6917272406431],[-87.68705683982952,41.69173005749739],[-87.68682226469731,41.691732909501766],[-87.68668490681291,41.69173486841122],[-87.68654626873074,41.691736845199394],[-87.68614539721162,41.691743095835946],[-87.68607098608554,41.691743631246425],[-87.68589318428998,41.691744909973515],[-87.6855120463579,41.69174765061621],[-87.68516124442333,41.6917520120255],[-87.68486424214238,41.691754982693304],[-87.68465947801866,41.69175702974078],[-87.68444277274898,41.69175962098743],[-87.6839922243066,41.69176503474316],[-87.6836482484525,41.69176928437774],[-87.6832819790713,41.69177380810536],[-87.68303202438823,41.69177681236816],[-87.68263156982147,41.69178159860733],[-87.68243248012665,41.691782972362944],[-87.68209419120133,41.69178530574209],[-87.6818273441965,41.69178230420246],[-87.68152531908773,41.69178232767197],[-87.68115514950513,41.69177915866871]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"159665.863556","perimeter":"0.0","tract_cent":"1105740.96851252","census_t_1":"17031811600","tract_numa":"1","tract_comm":"0","objectid":"311","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927540.84735578","census_tra":"811600","tract_ce_3":"41.95783303","tract_crea":"","tract_ce_2":"-87.88666291","shape_len":"2783.46696114"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.88436453538434,41.95745750652281],[-87.88423803964032,41.95740873465426],[-87.88411041657184,41.95733576601779],[-87.88435047569149,41.95736802400892],[-87.88435171057903,41.9573681899238],[-87.88442732485446,41.95737835051903],[-87.88457681992246,41.95739841917683],[-87.88467607499149,41.95741174882889],[-87.88467610474369,41.95741175278705],[-87.88484326487263,41.95743420158438],[-87.88494317324732,41.95744765430322],[-87.88505546893319,41.957462748870405],[-87.88505577233046,41.957462789571785],[-87.88521709127753,41.95748447325524],[-87.88530998290847,41.957496959195744],[-87.88550794625056,41.95752356781306],[-87.88562937968162,41.957539848661014],[-87.88562916640294,41.957486170892835],[-87.8857901616159,41.95750734126068],[-87.8859962638261,41.957534442888566],[-87.88626345366158,41.95756957671812],[-87.88635701970665,41.957581880026154],[-87.8865684261086,41.957609678001496],[-87.88680730002025,41.95764108706158],[-87.88711327802523,41.957681336252236],[-87.88735863850404,41.957713611027785],[-87.88768155504867,41.95775608667017],[-87.88780789680708,41.95777270506558],[-87.88790556417969,41.95778555156362],[-87.88802577034339,41.957801362714704],[-87.88830856909935,41.95783855286133],[-87.88859918477769,41.95787677038985],[-87.8886948821782,41.9578893550196],[-87.88881316949386,41.9579049117585],[-87.8889620113995,41.957924486450906],[-87.8890104295118,41.95793085409886],[-87.8888261290228,41.95799829064656],[-87.88869171653079,41.958026302367536],[-87.8885059630522,41.958071553441506],[-87.88819535517047,41.958125892588306],[-87.88797078860038,41.95815005390956],[-87.88776501962454,41.958172192258594],[-87.88753346243956,41.95818358747609],[-87.88727248577683,41.958185400647224],[-87.88703902770948,41.95817017925634],[-87.88683789059945,41.95815706469179],[-87.88638031504759,41.958097463573864],[-87.88615515402846,41.95805117025171],[-87.88586535543104,41.95796599228621],[-87.88562663552293,41.957893091739315],[-87.88528503997549,41.957782720352064],[-87.88499709025302,41.95768719017491],[-87.88492276872591,41.95766158806665],[-87.88465132976839,41.95756808307363],[-87.88445074427588,41.957490745432985],[-87.88436453538434,41.95745750652281]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4854439.31965","perimeter":"0.0","tract_cent":"1167998.31608828","census_t_1":"17031030100","tract_numa":"22","tract_comm":"77","objectid":"308","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1941177.68404104","census_tra":"030100","tract_ce_3":"41.99413428","tract_crea":"","tract_ce_2":"-87.65738641","shape_len":"9633.4876407"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65577334679004,41.99819571120495],[-87.65573692712832,41.99817521036349],[-87.65455590024236,41.9981661505395],[-87.65455589555344,41.998166141730366],[-87.65452753046239,41.998112858306364],[-87.65449857389467,41.997992107692326],[-87.65448708820466,41.997847448461975],[-87.65446054108824,41.99774570159458],[-87.65444417510771,41.99768300985675],[-87.65443113210316,41.99758790145568],[-87.65442895052168,41.99748908924352],[-87.6544285002026,41.997468706037395],[-87.65442779340852,41.99745483547021],[-87.65442338582058,41.99736837540631],[-87.65443464192352,41.99729738641596],[-87.65443789659028,41.99727686019542],[-87.65443646876847,41.997268594760456],[-87.6544245541747,41.997199614961964],[-87.65440816142491,41.99711754907957],[-87.65437848268043,41.99696896751663],[-87.65435690680708,41.996797629931415],[-87.6543444440774,41.9967206365884],[-87.65432778707792,41.996591917356454],[-87.65432132002321,41.99654984800007],[-87.65431006608705,41.99647663972601],[-87.65430201660823,41.99643981530686],[-87.65428540408136,41.99636381714615],[-87.65429057837993,41.996268158139834],[-87.6542787315422,41.99618660703424],[-87.65427412410584,41.996154890151544],[-87.65426997162919,41.996100379153354],[-87.65426176000253,41.99599258079246],[-87.65426466868739,41.995981689845266],[-87.65427103197756,41.9959578664843],[-87.6542712083501,41.99595781676014],[-87.6542852056621,41.995953865877354],[-87.65429512609174,41.99595106621302],[-87.65429514579233,41.99595108169702],[-87.65429860873442,41.99595376761309],[-87.65431544949581,41.995966828862294],[-87.65432454486584,41.99600624202694],[-87.6543266675856,41.99601543966038],[-87.65435365766838,41.99607539492521],[-87.65437399113078,41.99608035265101],[-87.6543897633646,41.99608419806861],[-87.65445132974298,41.99608565959225],[-87.65453653461452,41.996074802519985],[-87.65459463511857,41.996063153961664],[-87.65461946651457,41.99605035890876],[-87.65463828333122,41.99604066270343],[-87.65464189166535,41.99602682752589],[-87.65464434299898,41.99601742725305],[-87.65464433353534,41.99596337077609],[-87.65464433007809,41.99594596902532],[-87.65465674223562,41.99594378009966],[-87.65466363992194,41.99594256404134],[-87.6546637530738,41.99594254385447],[-87.65466246760528,41.995927043108125],[-87.65466135854118,41.99591367097496],[-87.6546573615649,41.99586547666018],[-87.65465324923086,41.99578510274441],[-87.6546483075548,41.99575020530314],[-87.65463897959263,41.995684333503824],[-87.65460678363674,41.99560083585131],[-87.654579514645,41.995530115455765],[-87.65456277290906,41.99550348261538],[-87.65454467749188,41.99547469663458],[-87.65451087312253,41.995428925621205],[-87.65450268223903,41.995417835386924],[-87.65448468623636,41.99537000722661],[-87.65448535505449,41.99534511589014],[-87.65448602639026,41.995320126052015],[-87.65449760571207,41.99527247278921],[-87.65449664111962,41.99521272853724],[-87.65449631866407,41.99519277389874],[-87.65448453598904,41.99512802393374],[-87.654487303368,41.99511567580183],[-87.65448861948353,41.9951098025111],[-87.65449299337449,41.995090286175724],[-87.6545323181941,41.99501766102267],[-87.65453828011744,41.99500372176319],[-87.65455864922774,41.99495609961155],[-87.65455630885165,41.994931138614014],[-87.65455131414319,41.99487787453366],[-87.65455683775048,41.9947630348423],[-87.654568707101,41.99472629253663],[-87.65458137295543,41.994687084070165],[-87.65458501942054,41.99466608787745],[-87.65459007140764,41.994636999145236],[-87.65459614023702,41.99459308627139],[-87.6545961406515,41.994593081883124],[-87.65459616016278,41.99459294204479],[-87.65460055251168,41.99456115681184],[-87.65460042678049,41.99453140904458],[-87.65439723391435,41.99453315799919],[-87.65439076108478,41.994533213841365],[-87.65439068713668,41.99453321450167],[-87.65436054757964,41.99429547167007],[-87.65432587715885,41.994276359124115],[-87.65431260083197,41.994270484587936],[-87.65430035666307,41.99426506675182],[-87.65427799535306,41.99420931000814],[-87.65426608823493,41.994107786571696],[-87.65426461707806,41.99407779045186],[-87.65425914030821,41.993966121909104],[-87.65425913489473,41.99396600826759],[-87.65425944558565,41.99396474228946],[-87.65427989809896,41.9938814728118],[-87.65434628316702,41.99387591059846],[-87.65441294360758,41.993865135464176],[-87.65443270703051,41.993860806486374],[-87.65446937003496,41.993741518744024],[-87.65447240079344,41.99373165812945],[-87.65447241106918,41.99373162580876],[-87.6544757409578,41.993725601969686],[-87.65449450313915,41.993691663553044],[-87.6544971785112,41.993685405605135],[-87.65450480098353,41.993667575570996],[-87.65450499980393,41.9936660358836],[-87.65450615065363,41.993657122148115],[-87.65450616389157,41.99365701877039],[-87.65447936773327,41.99365567399435],[-87.6544491394248,41.99365415688619],[-87.65445265125723,41.99365063902107],[-87.6544651276281,41.99363814303929],[-87.65446814961388,41.99363204987234],[-87.65447118024596,41.99362593919361],[-87.65447215341143,41.99357240633443],[-87.6544718120876,41.993555751193746],[-87.65447108751434,41.993520397614205],[-87.65446755678597,41.99349370923601],[-87.65446577594889,41.99348024613187],[-87.6544649155038,41.99348010959656],[-87.65445120158202,41.99347793824331],[-87.65445119607321,41.99347793738749],[-87.65445491572493,41.993463689867156],[-87.6545111280746,41.99345987801322],[-87.6545178587971,41.99342882613189],[-87.65452698812736,41.99339169989732],[-87.65452700927392,41.99339161385477],[-87.65449651215562,41.993364101644225],[-87.65445640767994,41.993305989763215],[-87.65440782563108,41.99323769919411],[-87.65439722088404,41.993222792321006],[-87.65438719542772,41.993209832309205],[-87.65432072737556,41.993123905746785],[-87.65430255051469,41.99310070860371],[-87.6542864656311,41.99308018020954],[-87.65425684466072,41.993063704490666],[-87.65413466372783,41.9930540479301],[-87.65410034239761,41.993051335292215],[-87.65409310212048,41.993005711437235],[-87.65414864029587,41.99258436762964],[-87.6541627126822,41.99252176505297],[-87.65417674992808,41.992459316489516],[-87.65419533504316,41.99240727198947],[-87.65420018045204,41.992393704010674],[-87.65420337147228,41.992386413186566],[-87.65420723055881,41.99237759560474],[-87.6542099077104,41.99237147899845],[-87.65421156758013,41.99232233101996],[-87.65421216296876,41.9923046987217],[-87.65423813703319,41.99215960452349],[-87.65429995859525,41.991814254780365],[-87.65430331470073,41.991702760561296],[-87.65430331438249,41.99170275589429],[-87.65431227366655,41.991405017704196],[-87.65432458451552,41.99099591750783],[-87.65441315133995,41.990993367854124],[-87.654413139473,41.99099334226296],[-87.65438202606016,41.99092466183963],[-87.65437172856929,41.99092071872581],[-87.6543533830021,41.99091369430439],[-87.65433157905413,41.9909053456582],[-87.65428071125206,41.990884161738],[-87.65426780256655,41.990878787988656],[-87.65423844857018,41.99086656843497],[-87.65423709634169,41.990853697858206],[-87.65422231422507,41.99071301803626],[-87.65421174458851,41.99057231510687],[-87.65419825337156,41.99045730906837],[-87.65418997934798,41.99031112062491],[-87.65418890047343,41.99029205335626],[-87.65418854255395,41.990278039666855],[-87.65418695252393,41.99021580789259],[-87.6541869544272,41.990215801866626],[-87.65419790141432,41.99018590059841],[-87.6541979393016,41.99018579681767],[-87.6542093574736,41.99016703920825],[-87.65421681781967,41.99016037955584],[-87.65422655165655,41.990151690575765],[-87.65424945851136,41.990142249130166],[-87.65425561019619,41.990140561345214],[-87.65426698168969,41.99013744068565],[-87.65427613099665,41.990135744562195],[-87.65428419376897,41.99013424974615],[-87.65429284812483,41.99013323043002],[-87.65429564602138,41.99013308260322],[-87.65429940046508,41.99013288500188],[-87.65430599304399,41.99012172769309],[-87.65538641919412,41.990105638032524],[-87.65604480360007,41.99009487069205],[-87.65611203796612,41.99009378521844],[-87.65649416055099,41.99008761449483],[-87.65681444427186,41.990082036900304],[-87.65694977824177,41.990079679937544],[-87.65751332614009,41.99006923693179],[-87.65804806071527,41.99006024073976],[-87.65821524667362,41.99005770549764],[-87.65840010429808,41.99005490180149],[-87.65891629255611,41.990042694325915],[-87.65904801229544,41.99004006283607],[-87.65916228590042,41.99003873980152],[-87.65926276684768,41.9900371139329],[-87.65945009686284,41.99003467130146],[-87.65950156524065,41.99003343420994],[-87.65969970292845,41.99002867210242],[-87.65999648854314,41.99001704909181],[-87.66026648702412,41.99000181167189],[-87.66027046939269,41.99015194127252],[-87.66028253933521,41.99050066172693],[-87.66029047934241,41.990790988970915],[-87.66029423471495,41.99091633825944],[-87.66030032823105,41.991120102829775],[-87.66030872168025,41.99138831451091],[-87.66031772460131,41.99166509163171],[-87.66032349191946,41.991822696952596],[-87.66032726480896,41.99192579092374],[-87.66033466546331,41.99211715937319],[-87.66033908120797,41.99228633697227],[-87.6603448864129,41.99250876058024],[-87.66035133436863,41.992728662742515],[-87.66035549495194,41.99287056211243],[-87.66036469446055,41.99317752641723],[-87.66036901809309,41.993309190349144],[-87.66037438691005,41.993472693572606],[-87.66037615078845,41.993532407635264],[-87.66037891536533,41.99362598319918],[-87.6603829029898,41.993760773802975],[-87.66039130815835,41.99402851863874],[-87.66039499471889,41.99414593701378],[-87.66040325265406,41.994423615213044],[-87.66040639669419,41.99455255298195],[-87.66041006015078,41.9947027944752],[-87.66041872015562,41.99499120451442],[-87.66041956839494,41.995020160422435],[-87.66042118949106,41.995075520247795],[-87.66043143659192,41.9954253550999],[-87.6604432701461,41.99581062645013],[-87.66045466706294,41.996265295778066],[-87.66045898773967,41.99637443064412],[-87.66046312244242,41.99647887075558],[-87.66046869913504,41.996616497120634],[-87.66045947451607,41.99690464580915],[-87.66047342835672,41.99715663185529],[-87.6604875555484,41.997392101080216],[-87.66049506089894,41.99773077062515],[-87.6605305919837,41.99803656794613],[-87.66054387976942,41.99817709863686],[-87.66054502343871,41.998189191571626],[-87.66052828702716,41.99818937750205],[-87.66046824669824,41.99819004422487],[-87.66027926704575,41.99819214292013],[-87.66005286300002,41.99819273615337],[-87.65975967220373,41.9981982259415],[-87.65972813840732,41.99819881640998],[-87.65954846357697,41.998202180337074],[-87.65943154831636,41.99820269872233],[-87.6593269666849,41.99820316235136],[-87.65928561238408,41.99820334542608],[-87.65921450454178,41.99820366056],[-87.65917658573,41.998203828644954],[-87.65916099053558,41.998203488156754],[-87.65882397101221,41.99820681668949],[-87.65865677859993,41.99820864172756],[-87.65853312293228,41.99820999195874],[-87.6580757761943,41.9982158643961],[-87.65776516965244,41.99821934272135],[-87.65739786382197,41.998223455050095],[-87.65720871014723,41.99822560666483],[-87.65706259349979,41.99822754034398],[-87.6569001933415,41.9982296890747],[-87.65651856917403,41.998231306463005],[-87.65646687609598,41.99823152553103],[-87.65636459402238,41.998232444578704],[-87.6560741552885,41.99823505429525],[-87.65600350939368,41.998236174212565],[-87.65591636008372,41.99823236692356],[-87.65584690993654,41.998221337044924],[-87.65580429072173,41.998209148280814],[-87.65577334679004,41.99819571120495]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4426977.84112","perimeter":"0.0","tract_cent":"1159857.2665014","census_t_1":"17031020100","tract_numa":"13","tract_comm":"2","objectid":"309","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1948981.23848707","census_tra":"020100","tract_ce_3":"42.01571991","tract_crea":"","tract_ce_2":"-87.68711599","shape_len":"8789.04658253"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68838321198969,42.01951911348304],[-87.6878854116095,42.01951472369824],[-87.68784806027547,42.01951480893131],[-87.68773507665479,42.019515067012684],[-87.68762140778281,42.0195153266163],[-87.68758356293097,42.01951541337769],[-87.68668322761444,42.01950795726057],[-87.68655236514489,42.01950776137399],[-87.68653277792733,42.01950800280558],[-87.68652861410563,42.01950805425849],[-87.68650871367345,42.019508299409345],[-87.68633007792266,42.01950774321445],[-87.68629446484829,42.01950763274981],[-87.6858821932987,42.019502947732626],[-87.68542364308932,42.01949662820055],[-87.68485281321765,42.01948670883709],[-87.68465309464753,42.01948477353644],[-87.6846387908508,42.0193479060092],[-87.68460027718227,42.01907831958633],[-87.68457122805872,42.01886968000201],[-87.68453525322754,42.01857842885737],[-87.68452614723553,42.01850096404605],[-87.68447987194118,42.01811473342272],[-87.6844622732095,42.01795626725068],[-87.68444490770186,42.017799953553784],[-87.68443310988947,42.017693758670134],[-87.68435896707138,42.017037754848445],[-87.68431995134628,42.016698353133464],[-87.684297212995,42.01649644488258],[-87.68428400559321,42.01637916619775],[-87.68425888510276,42.016182430962346],[-87.68424239160022,42.01604098598086],[-87.68424067483527,42.0160262663597],[-87.68421830425844,42.0158450512829],[-87.68419516065293,42.015660182062284],[-87.68418077850413,42.015532962766024],[-87.6841689695334,42.015460257477415],[-87.68415497866926,42.01539223239842],[-87.68413548741908,42.015315065522735],[-87.68410780022448,42.01522605230235],[-87.68408266317289,42.0151510474564],[-87.68404322827993,42.015033374760684],[-87.68389740053388,42.01462421541911],[-87.68373044440077,42.014157967060406],[-87.6836879982657,42.01403496334684],[-87.68363372223217,42.013877677634966],[-87.68353877275156,42.01361122910788],[-87.68343131964059,42.01330804686095],[-87.6833216744333,42.01299615329861],[-87.6832525141748,42.012799195776786],[-87.68318478524088,42.012606225654785],[-87.68312877763809,42.01245473106509],[-87.68308621761864,42.012322826239924],[-87.68305304875297,42.01222003111395],[-87.68352327296556,42.012209384762],[-87.68379615304231,42.01221354087263],[-87.68409960548486,42.0122181617876],[-87.68482071806041,42.01222492747596],[-87.68499441644188,42.01222684172362],[-87.68510174115521,42.012228023875565],[-87.68596449026889,42.012237860105316],[-87.68608517698969,42.0122385406919],[-87.68621417895659,42.0122392680302],[-87.68634027488005,42.012239978843525],[-87.68662596948455,42.012243184009655],[-87.68740304210515,42.01225079401148],[-87.68755675970931,42.01225273271903],[-87.68773696767784,42.012255005173294],[-87.68804005726673,42.01225920666738],[-87.68816781123911,42.01225967068263],[-87.68834343579648,42.01226030805682],[-87.68875745060542,42.012266338341874],[-87.68890848701531,42.012267792299575],[-87.68909940735031,42.01226963017418],[-87.69005085946215,42.012281003456884],[-87.69024681723292,42.01228000519522],[-87.69024662335632,42.01249241465616],[-87.69024424549664,42.01288685032761],[-87.69024168833992,42.013311059359765],[-87.69023693941523,42.013636355710496],[-87.6902333366642,42.01400128447094],[-87.69023289685411,42.014038147364836],[-87.69023209798705,42.0141050625416],[-87.69023097556256,42.01419912685327],[-87.69022519881447,42.014568022463045],[-87.69021892848397,42.01504426771489],[-87.6902185810636,42.01511271995625],[-87.69021851599767,42.01512553355304],[-87.69021668556154,42.015486041117235],[-87.69021618923682,42.01566394341535],[-87.69021581140646,42.0157992572097],[-87.69021380847866,42.015906598402985],[-87.69021101226538,42.01605644253355],[-87.6902053618171,42.016712215523626],[-87.69020296879549,42.01681823730673],[-87.69020016531182,42.01694308187574],[-87.69019803655088,42.017300444743476],[-87.6901966973607,42.01743693283664],[-87.69019529244575,42.01758008891953],[-87.69019358212223,42.01771695911197],[-87.69019240355989,42.017812010955225],[-87.69018599041401,42.018400986101916],[-87.69018459364406,42.01853280873839],[-87.69018191469206,42.01880180607171],[-87.69017973084009,42.0190221787325],[-87.69017865188839,42.01912925062438],[-87.69017699418467,42.01929375497508],[-87.69017500922617,42.01942499801736],[-87.69017356946405,42.019528431566215],[-87.69000726943167,42.01953104071064],[-87.68999118409621,42.019531293029296],[-87.68912439119764,42.01952942265141],[-87.68906756421796,42.01952879443118],[-87.68895391063101,42.0195275379084],[-87.68885237574952,42.01952641545248],[-87.68880160849315,42.01952585432909],[-87.68860769857277,42.01952273023127],[-87.68838321198969,42.01951911348304]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3301603.8709","perimeter":"0.0","tract_cent":"1184710.04752863","census_t_1":"17031420900","tract_numa":"15","tract_comm":"42","objectid":"313","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1862089.13553615","census_tra":"420900","tract_ce_3":"41.77673399","tract_crea":"","tract_ce_2":"-87.59840587","shape_len":"7962.52297865"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59717440534867,41.77322533978891],[-87.59725880814818,41.77322433006743],[-87.59738295545274,41.773226001943556],[-87.5975860000763,41.77322078641451],[-87.59780495757144,41.77321862087279],[-87.59786273991111,41.77321805362178],[-87.59804693944236,41.77321624551824],[-87.59826538303948,41.77321410325272],[-87.59847458056475,41.77321261110377],[-87.59863454032258,41.7732114700197],[-87.59896338424502,41.77320780951474],[-87.599076457671,41.77320653028651],[-87.59912767802697,41.77320595064714],[-87.59952462150959,41.77320155053926],[-87.59968838597666,41.77319984528551],[-87.60000036123624,41.77319659550448],[-87.60021073549814,41.77319480967482],[-87.60028442794423,41.77319419618712],[-87.60038987188524,41.77319331814574],[-87.60066330676936,41.77319105560962],[-87.60090214351052,41.773187962071965],[-87.60090960969094,41.77354998773725],[-87.60091451461481,41.77378910165726],[-87.60091882530527,41.77399989069534],[-87.60092431891425,41.77426782340433],[-87.60092780367316,41.77443843074158],[-87.60093278694958,41.774683554846305],[-87.60094016184954,41.775011926051135],[-87.60094636548548,41.77528812657217],[-87.60094969389178,41.77543381472572],[-87.60095483272582,41.77562660643841],[-87.60095998740714,41.77583089682145],[-87.6009648248965,41.77602440038945],[-87.60096960928828,41.77622901771247],[-87.60097394238946,41.77641530002022],[-87.60098285972182,41.77683024463811],[-87.60083392510025,41.776831484521175],[-87.60059127697443,41.77683323028697],[-87.60037362172918,41.77683586635097],[-87.60038198134423,41.77722224293502],[-87.60038689123745,41.777422085974436],[-87.6003912254918,41.777608121559105],[-87.60039540062618,41.77779525383823],[-87.60039716837215,41.77787424575953],[-87.60040388842064,41.77816710428111],[-87.60041010591151,41.77842280190951],[-87.60041297629887,41.77854167290426],[-87.60041755528117,41.77873130750186],[-87.60042228853551,41.778946709478284],[-87.6004281546219,41.779213958284686],[-87.60043288761162,41.77942938768411],[-87.60043690642637,41.779604471480354],[-87.60044192644767,41.77980760828471],[-87.60044717506716,41.780012662876565],[-87.60045272987499,41.780217618973374],[-87.60045914515366,41.78047522560042],[-87.60024510784156,41.78047787981377],[-87.5999808757455,41.78048069401908],[-87.59968569702758,41.780483639307356],[-87.5994443461407,41.780486227095416],[-87.59932480631316,41.780487508707765],[-87.59917472291173,41.78048910572185],[-87.59910083607852,41.78048989205188],[-87.59881580971974,41.780493174418545],[-87.59853584447814,41.78049632379215],[-87.59820289395685,41.78049998417205],[-87.59782360089258,41.780503548053574],[-87.5975965903156,41.78050568040012],[-87.59746447427571,41.780507029646635],[-87.59729968006248,41.78050936808617],[-87.59724577653618,41.78051002411167],[-87.59699004121632,41.78051359472751],[-87.59675642037038,41.78051659771551],[-87.59653798214681,41.780519368288466],[-87.59620394422505,41.780522268904754],[-87.59619651953417,41.78019697432144],[-87.59619110725268,41.780010081034504],[-87.59618956129388,41.77994645852132],[-87.59618388075171,41.779712691065505],[-87.59618033211947,41.77958297324195],[-87.59617757480268,41.77948218528997],[-87.59617424272255,41.77933452120585],[-87.59616637658513,41.778985876963276],[-87.5961601446968,41.77870966578316],[-87.59615661199379,41.7785530817283],[-87.59614961030965,41.778274464060566],[-87.59614250893001,41.777946997398026],[-87.59614045012492,41.7778470097431],[-87.5961371196541,41.77768128847999],[-87.59613295339842,41.77749443027427],[-87.59612850304663,41.77730680211287],[-87.59612370441644,41.777108002453154],[-87.59611775340525,41.77688149096735],[-87.5961134407465,41.776717314171435],[-87.59610957607075,41.77652977234589],[-87.59610473040132,41.77629664129401],[-87.59610080326239,41.776120926668106],[-87.59609519785951,41.77588691255146],[-87.59609013378122,41.77567609114891],[-87.5960853308665,41.7754776481625],[-87.59608098412313,41.77529696365357],[-87.59607590875203,41.775055411046125],[-87.59607210998414,41.77487464277197],[-87.59606724108231,41.77464038634449],[-87.5960631801016,41.77442515302552],[-87.5960583476859,41.77416847595943],[-87.59605352409342,41.7739110305371],[-87.596049166285,41.773676969450634],[-87.59604086853815,41.77323625798912],[-87.59622172443997,41.77323512072022],[-87.59648830933409,41.773232412528856],[-87.5966471016821,41.77323077961333],[-87.59680061438824,41.77322920099665],[-87.59717440534867,41.77322533978891]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14023253.6294","perimeter":"0.0","tract_cent":"1174046.4058107","census_t_1":"17031730500","tract_numa":"79","tract_comm":"73","objectid":"314","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1839231.13665484","census_tra":"730500","tract_ce_3":"41.71425215","tract_crea":"","tract_ce_2":"-87.63817507","shape_len":"15895.60695"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64244244050462,41.70692052994727],[-87.64283396928684,41.7069170882967],[-87.64284279763551,41.70719056288665],[-87.64284761409363,41.707384357118464],[-87.64285447619827,41.70765985780715],[-87.64287177393159,41.70841168726202],[-87.64288026107565,41.70873713147678],[-87.64289610628173,41.709344739186456],[-87.64290058929402,41.70952984335923],[-87.64290690949029,41.709793144362116],[-87.64291806884583,41.710232303270175],[-87.64292916036476,41.71055811978955],[-87.64293361776373,41.71068905218911],[-87.64293726394375,41.71093016293727],[-87.64294312549524,41.71127225064897],[-87.64295131201474,41.71160249683139],[-87.6429661971067,41.71214870658554],[-87.64297221692665,41.71237278791441],[-87.6429760452512,41.71251532497861],[-87.64298446652532,41.71273459208383],[-87.64297488484988,41.7132603741983],[-87.64299035210313,41.7139131218843],[-87.64300277444356,41.71421431177898],[-87.6430118618204,41.71443463993303],[-87.64301549499302,41.71452272650388],[-87.64302189470436,41.71467788994397],[-87.6430272305712,41.714807266280324],[-87.64303083237004,41.714894591381764],[-87.64303983598803,41.7151128698199],[-87.64305215071188,41.715411453816834],[-87.643058775631,41.71570280334255],[-87.64306482211215,41.71591256043096],[-87.6430677308904,41.7160134865992],[-87.64307349357125,41.716213417850184],[-87.64307698360135,41.716391709643254],[-87.64307986365927,41.716538932601324],[-87.64308636076053,41.71686966230663],[-87.64309713500664,41.7172488242091],[-87.643107354636,41.717620025322795],[-87.64311305891707,41.717827212972736],[-87.6431348218494,41.71861768515115],[-87.6431569700978,41.71933596636057],[-87.64316529942914,41.71964722580658],[-87.64317265043884,41.71992192502431],[-87.64319157633662,41.72057296736012],[-87.64320783368777,41.721204595101334],[-87.64321224691707,41.721397536516605],[-87.64321361749532,41.72145745816634],[-87.6425165925486,41.721469005789224],[-87.64199971168102,41.72147690385109],[-87.64193589323303,41.721477878865414],[-87.64147950082709,41.72148386074017],[-87.64108525871806,41.72148876019402],[-87.64078883877407,41.721491722029846],[-87.64049488137574,41.72149465843054],[-87.6399239052294,41.72150212519876],[-87.63957246035703,41.721507917959556],[-87.63927133821709,41.72151273338624],[-87.63881495329177,41.721517977476786],[-87.63836081887356,41.72152441122698],[-87.6382031860968,41.72152664363052],[-87.63774287851474,41.7215354967776],[-87.63746322712147,41.721538167883],[-87.63722894362614,41.721540804688544],[-87.63715470189646,41.72154164008132],[-87.63700101700687,41.721543369491165],[-87.63643583451815,41.721553763558816],[-87.63599107555558,41.72156124894734],[-87.63593511686845,41.72156163630968],[-87.63565511462161,41.72156357391461],[-87.63504530382677,41.72157078119126],[-87.63474384737549,41.72157590188371],[-87.63438301954815,41.72158202980544],[-87.63408005231389,41.72158600561427],[-87.63396509625349,41.72158682581945],[-87.63374991658492,41.7215883604582],[-87.63353297476291,41.72159190707361],[-87.63347568083884,41.71976986609845],[-87.63341664213127,41.717952631005794],[-87.63338001489483,41.716138548667736],[-87.63335743269214,41.715223866202386],[-87.63334558580264,41.71492427938202],[-87.63334667641925,41.71478059281871],[-87.633335744318,41.71464531598643],[-87.63333617298102,41.7143561881505],[-87.6333110864786,41.71341919252726],[-87.6332907030254,41.71251309902543],[-87.63329070113174,41.71251300351148],[-87.63327263343159,41.71168900639119],[-87.63326951832454,41.71159636624782],[-87.63324412880597,41.71077188557132],[-87.63324175065762,41.71069517603308],[-87.63324174564676,41.71069503027899],[-87.6332110323181,41.70977172111133],[-87.63318540918208,41.708884462330815],[-87.63316689891316,41.70797460607206],[-87.63313251342751,41.707042660742985],[-87.63357725557604,41.70703758522788],[-87.63373086778884,41.7070358319036],[-87.63476069469867,41.70702138872749],[-87.63517019413932,41.70701555052118],[-87.63555669695718,41.70701096616049],[-87.63607605061678,41.70700480403513],[-87.63676285603403,41.70699526872805],[-87.63701705215306,41.70699173859055],[-87.63751001132776,41.70698610737904],[-87.6379770599831,41.70698005683372],[-87.63833441824772,41.706975426182375],[-87.6388616268134,41.70696906323337],[-87.63919098953191,41.70696473631973],[-87.63962285313103,41.70695906124015],[-87.63991030637014,41.70695511539642],[-87.64040611499048,41.706948392320655],[-87.64072274107292,41.70694409782988],[-87.64120694985446,41.70693812358381],[-87.64161651048519,41.706932389832446],[-87.64193206764921,41.7069279711364],[-87.64244244050462,41.70692052994727]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7218717.84179","perimeter":"0.0","tract_cent":"1184261.43063022","census_t_1":"17031691500","tract_numa":"39","tract_comm":"69","objectid":"315","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854187.88517662","census_tra":"691500","tract_ce_3":"41.75506272","tract_crea":"","tract_ce_2":"-87.60029731","shape_len":"11863.403813"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59611045315647,41.75549076783894],[-87.59621609691847,41.7550262868893],[-87.59567774946282,41.7550314077061],[-87.59559556884265,41.755032183041514],[-87.59553005328999,41.75314641173715],[-87.59553089009714,41.75314384076147],[-87.59553156563116,41.75308805346995],[-87.59552886617792,41.75297178756356],[-87.5955255526828,41.75283227348518],[-87.59552112287359,41.752646263780505],[-87.5955167328701,41.7524599798953],[-87.5955128468856,41.75229688858333],[-87.59550899001775,41.75213445608592],[-87.59550460037713,41.75194814474331],[-87.59549990117004,41.75175049744284],[-87.59549521161749,41.75155194485256],[-87.59549062393536,41.75138664341341],[-87.59571625040286,41.75138393068214],[-87.59612654491757,41.75137845514907],[-87.59647716019104,41.75137429579403],[-87.59660046318659,41.751373464899814],[-87.59688824933735,41.75137152495016],[-87.59694705311274,41.75137112850705],[-87.59695709452683,41.75137106141215],[-87.59703213941897,41.751370559899954],[-87.5970862537625,41.751370198373344],[-87.59714526053281,41.751369804501714],[-87.59720801185514,41.751369385193556],[-87.59720802064987,41.75136938524991],[-87.59726748481431,41.75136898820853],[-87.59734901639182,41.751368445442125],[-87.5975783881133,41.7513669180003],[-87.59763270482448,41.75136645322873],[-87.59791517210833,41.75136350159795],[-87.5981332943153,41.75136122182719],[-87.59850215939382,41.75135715989581],[-87.59852458374166,41.751356982503665],[-87.59880907249288,41.751354731520486],[-87.59912834499886,41.75135126492335],[-87.59936431175352,41.751348702213875],[-87.59968696314459,41.75134478033594],[-87.59972786137683,41.75134428487479],[-87.59997922949687,41.75134123991689],[-87.6003379583213,41.75133812223505],[-87.60050179956868,41.75133669805306],[-87.60084134002652,41.75133323741376],[-87.60094059408917,41.751332220547056],[-87.60110387596954,41.75133054742341],[-87.60131891059376,41.751328350051956],[-87.60154710524816,41.751326573920764],[-87.60184242765317,41.75132427465421],[-87.60213406437246,41.75132130104745],[-87.60214988463805,41.751321142116566],[-87.60233473148762,41.751319284768016],[-87.60275688862478,41.75131461296486],[-87.60324179384665,41.75130924502518],[-87.6033615835922,41.75130802998525],[-87.60362773435094,41.751305330024394],[-87.603966789818,41.751301434444244],[-87.6042738380765,41.751297905582916],[-87.6045719047292,41.75129428353081],[-87.60482706999743,41.75129109617299],[-87.60521454792466,41.751286153182726],[-87.60520815583283,41.75136327201942],[-87.60521166537947,41.75148401610531],[-87.60521908804652,41.75182926887912],[-87.60522602776247,41.752152372057246],[-87.60523347719776,41.75249847569383],[-87.6052419410783,41.75289101931639],[-87.60524648282673,41.75301535588932],[-87.6052498368102,41.75310716715883],[-87.60526047019016,41.75339822870858],[-87.60526706154042,41.75371002307038],[-87.60527640065068,41.75414837453462],[-87.60528885313222,41.754736035639695],[-87.60529701150217,41.754932796593316],[-87.60530656520189,41.75516321589331],[-87.60531539897146,41.755578210050246],[-87.60532206643612,41.75588978523119],[-87.60532846169176,41.75618977772539],[-87.60533607414652,41.756547463094094],[-87.60534447368447,41.756758097122486],[-87.60535540705096,41.75703228376557],[-87.60536093042045,41.757323598689524],[-87.60536893570425,41.75774539330154],[-87.60537702773854,41.75812552997586],[-87.6053835935428,41.75842667603857],[-87.60539129340302,41.758580064159105],[-87.60515286496111,41.75858624936708],[-87.60479523304066,41.7585915564168],[-87.60475397294178,41.758591917457316],[-87.60440782475133,41.75859494453418],[-87.6041468081332,41.75859696065155],[-87.60392995748641,41.75859863499316],[-87.60355680348732,41.75860235799575],[-87.60325806083881,41.758605235116285],[-87.60293674556087,41.758609312393986],[-87.60266150892005,41.75861280419948],[-87.60227361663867,41.758616868115695],[-87.60205049550706,41.75861893343229],[-87.60190951788078,41.75862024134575],[-87.60172587707214,41.758621944837124],[-87.60143648149547,41.758624628655554],[-87.60106376268483,41.758628702816175],[-87.60079536675822,41.758631657172636],[-87.60051553024464,41.758634368058644],[-87.60015305157847,41.75863787860441],[-87.5997658460618,41.758642761724445],[-87.59934778196484,41.75864582452325],[-87.59930927670187,41.75864610652905],[-87.59913744005982,41.75864736481963],[-87.598793727524,41.75865013998931],[-87.59870491235587,41.75865085701165],[-87.59833089633487,41.758651542365776],[-87.59822267094478,41.758651740209615],[-87.59811156248526,41.75865194337743],[-87.5980859348414,41.7586519904132],[-87.59800071865311,41.75865214621044],[-87.59777682212528,41.75865732319549],[-87.59774903379534,41.75866751873315],[-87.59770569946738,41.758675007644186],[-87.5974877975767,41.758679734237376],[-87.59738244192508,41.75868201969329],[-87.59733648967074,41.75868301652434],[-87.59728661376924,41.758683572988176],[-87.59659112267512,41.758691329583],[-87.59650212838484,41.758692030855336],[-87.5965004774507,41.7586920438684],[-87.59626280525424,41.75869391625561],[-87.59563037137991,41.758695855166756],[-87.5954075063207,41.75853380295323],[-87.59510321388473,41.758312540588236],[-87.59492934309155,41.758186111476654],[-87.59487144657616,41.75816584320315],[-87.59454951789668,41.75795356006142],[-87.59444436925581,41.75787568540168],[-87.59428734455162,41.757759389121986],[-87.59394904603174,41.75752076377126],[-87.5936899148713,41.75733461203969],[-87.5935802653748,41.75725584288043],[-87.59352305257461,41.75721444723046],[-87.59328446117878,41.75704177647569],[-87.59319699723774,41.75697889361477],[-87.593061934711,41.7568817894205],[-87.59325552332346,41.75687972338994],[-87.59347795904405,41.75687734909977],[-87.59393242896006,41.75687064229343],[-87.5940956293472,41.75687076023032],[-87.59416303198935,41.75687080886558],[-87.59432195305288,41.756869554243124],[-87.5943977604814,41.756868955633315],[-87.5946313292418,41.756867110930706],[-87.59475560128455,41.75686604731604],[-87.59503004464703,41.75686367748994],[-87.59522389714877,41.756862305243175],[-87.59540535271098,41.75686102044949],[-87.59548748360179,41.756860438956835],[-87.5956303305987,41.75685942699728],[-87.59568339052485,41.7568590511364],[-87.59568811625783,41.756859017535],[-87.59579791904581,41.75685823998011],[-87.5957979366399,41.75685823981862],[-87.59588333807828,41.756481374465174],[-87.59611045315647,41.75549076783894]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2118987.16267","perimeter":"0.0","tract_cent":"1161805.65064069","census_t_1":"17031282600","tract_numa":"18","tract_comm":"28","objectid":"317","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897735.46982321","census_tra":"282600","tract_ce_3":"41.87505806","tract_crea":"","tract_ce_2":"-87.68138084","shape_len":"6905.84482367"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67652777193261,41.876207135533406],[-87.6765187031801,41.875942409201755],[-87.67651533011744,41.87584394550669],[-87.6765057556282,41.87556446510877],[-87.67649923771563,41.87537419600569],[-87.67649580441432,41.8752739819489],[-87.67648715308808,41.87502143858039],[-87.6764803922241,41.87482406622866],[-87.67647299057245,41.874614582855024],[-87.67646694144062,41.87440927846725],[-87.67646447127531,41.874327787598276],[-87.67646016299214,41.8741855559919],[-87.67645645463404,41.87404250481313],[-87.6766957225742,41.87404044253971],[-87.67683328691258,41.874038374716],[-87.67705744881576,41.87403463421868],[-87.67733613166118,41.87402766437171],[-87.67756542636066,41.87402466543198],[-87.67784003903787,41.87402074467937],[-87.67814433034154,41.87401578539786],[-87.67836445652736,41.874011716908484],[-87.6786390638909,41.87400834306437],[-87.67890149365964,41.87400438023275],[-87.6792463955292,41.87399868621108],[-87.67971780573806,41.873991875053534],[-87.67993524356045,41.87398850203138],[-87.6803582265434,41.87398152247809],[-87.68072766610706,41.87397538969844],[-87.68109108263421,41.87396938617783],[-87.68134463423415,41.87396538435345],[-87.68180972077373,41.87395804269986],[-87.68205076488599,41.87395450979879],[-87.68214180563693,41.87395317533924],[-87.68251960377532,41.87394829165872],[-87.68279672262987,41.87394338532428],[-87.68301746883694,41.873939641010956],[-87.68338025726491,41.87393398344068],[-87.683780665225,41.87392690550141],[-87.68397415750908,41.87392348461771],[-87.68429842119819,41.87391862168112],[-87.68476206372986,41.873910154250204],[-87.685005160754,41.87390734765502],[-87.68546282313483,41.873902062364394],[-87.6856177926305,41.873899864859006],[-87.68623479294277,41.8738911141606],[-87.68623708905902,41.874174403607476],[-87.68624672435064,41.87441488157115],[-87.68625151388993,41.874469766098116],[-87.68626288781242,41.87477639024539],[-87.68625810833464,41.874994898834814],[-87.68625674681306,41.875057146644174],[-87.6862533617679,41.87521188783623],[-87.68625124240806,41.87530878547173],[-87.68624799674384,41.87545716792038],[-87.6862461249258,41.875542737041634],[-87.68625627568493,41.87577763248354],[-87.686260636601,41.875878548801495],[-87.68626949838719,41.876083619061205],[-87.68590608973463,41.87609806768077],[-87.68572578604122,41.87609957577878],[-87.68539661076854,41.87610249404411],[-87.68508036247232,41.876105209910946],[-87.68478401507844,41.876107982410105],[-87.68463728911703,41.87610984773797],[-87.6844551941506,41.876112162331914],[-87.68408126473147,41.87611811704694],[-87.68382782868936,41.876120179882264],[-87.68355206880229,41.876122423755874],[-87.68344029724092,41.876120178499086],[-87.68327060428341,41.87611676938671],[-87.68271671196142,41.87613404995557],[-87.68258309361045,41.876135816498646],[-87.68244646318455,41.876137622895186],[-87.68218444055852,41.876141077460424],[-87.68183057202148,41.87614576618978],[-87.68163104145472,41.87614951883509],[-87.68140224426207,41.87615294610582],[-87.681144775694,41.87615680230813],[-87.6808830177908,41.876159486743035],[-87.68067487439515,41.87616165201565],[-87.68037094968005,41.87616568730132],[-87.67994589159267,41.87617317620499],[-87.67961815574485,41.87617891294405],[-87.67950445735389,41.87618061887532],[-87.67923097157625,41.87618472152783],[-87.67905067259916,41.876187026528775],[-87.67895159783666,41.87618829299559],[-87.67885231595083,41.87618956203848],[-87.6786404965809,41.87619211431117],[-87.67834215902076,41.87619554490096],[-87.67804360254097,41.87619883625406],[-87.67773256917005,41.87620143073928],[-87.67757282892194,41.876202762687555],[-87.67722904126803,41.87620543688664],[-87.6768850332994,41.87620810879709],[-87.67676168619266,41.87620777276791],[-87.67652777193261,41.876207135533406]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8413822.73434","perimeter":"0.0","tract_cent":"1163519.38701215","census_t_1":"17031282900","tract_numa":"34","tract_comm":"28","objectid":"318","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896487.40269682","census_tra":"282900","tract_ce_3":"41.87159736","tract_crea":"","tract_ce_2":"-87.67512385","shape_len":"12956.8450176"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66659761089487,41.87414953071171],[-87.66658459119371,41.87364734963575],[-87.66657099420183,41.872929658497455],[-87.66657097741765,41.872928765147066],[-87.66657042636035,41.872899684437755],[-87.66656953970278,41.872852870091386],[-87.66656535110525,41.872631785010945],[-87.66653065356796,41.87162812776742],[-87.66652869941989,41.87157158159304],[-87.66648951772451,41.87044230121583],[-87.66648743250623,41.870382192506334],[-87.66646283791968,41.869308697737175],[-87.66646123488206,41.86926239429717],[-87.66654890946643,41.869260957417836],[-87.66671061054943,41.86925830720339],[-87.66745434875563,41.869246869864575],[-87.66774278605756,41.869242580822636],[-87.66874771293504,41.8692276323294],[-87.6689673516919,41.8692242499763],[-87.66927230251345,41.86921955289205],[-87.66946825858119,41.86921672226946],[-87.66949881416761,41.86921628061343],[-87.66953832176037,41.86921570984544],[-87.66956220639011,41.86921536490627],[-87.66971228353233,41.869213196796316],[-87.66976449427428,41.86921295758783],[-87.66996455324329,41.86920933834968],[-87.67019683867457,41.86920655413895],[-87.67038326252245,41.86920431922194],[-87.6706346864552,41.86920058367489],[-87.67106805696511,41.86919438429467],[-87.67122903449834,41.86919240356998],[-87.67141710508827,41.86919278652512],[-87.67161919341552,41.86919319779983],[-87.67188833834304,41.869187036900634],[-87.67216287976322,41.869180961323686],[-87.67246724184815,41.869174068764515],[-87.67284833013183,41.86916789110943],[-87.67314466054971,41.869163694814176],[-87.67337338266317,41.86916111256411],[-87.67370022896507,41.86915636104402],[-87.67392135723773,41.869153145992605],[-87.67416598510829,41.86914974788684],[-87.67447762253052,41.86914582810463],[-87.67480557772724,41.869140299609256],[-87.67513407652915,41.86913545935544],[-87.67546620125174,41.86912789468125],[-87.67574252098127,41.86912020162381],[-87.67596572280878,41.86911507463022],[-87.67613270569947,41.86911123857445],[-87.67631592990318,41.86910626631633],[-87.67667472735332,41.86909652882452],[-87.67687464638777,41.869095750767656],[-87.67707982062895,41.869094481808006],[-87.67729894730493,41.86909312588208],[-87.6775268701257,41.869089680074865],[-87.67773397911492,41.86908586801761],[-87.67796083751628,41.86908238783016],[-87.67816536631301,41.869079603086156],[-87.67847146194664,41.86907542130946],[-87.67874682062492,41.8690719416888],[-87.6788924126269,41.86907008151725],[-87.67918687061463,41.86906580462245],[-87.67944182045913,41.869061877776446],[-87.67971905801333,41.869057720459175],[-87.67990735643164,41.86905516954986],[-87.68015954849723,41.86905160961466],[-87.68034299051088,41.869050045743364],[-87.680548977324,41.86904828041664],[-87.68086733345459,41.869042406718485],[-87.68118787520224,41.8690364915846],[-87.6812346770819,41.86903562807901],[-87.68147995268906,41.86903796096395],[-87.68161397587886,41.869039235590755],[-87.68181592467388,41.86903747855627],[-87.6819289777665,41.86903649470601],[-87.68219137251633,41.86903334493043],[-87.6824334667782,41.86902985666816],[-87.68269436200072,41.869026096802166],[-87.68295619237962,41.869020664352746],[-87.6832351742288,41.86901820986008],[-87.6834253916109,41.86901470328177],[-87.68365384052241,41.8690116747466],[-87.68365835359359,41.86920608823463],[-87.68366776298906,41.86939357410897],[-87.68367147138994,41.86956401309457],[-87.68367423171736,41.86974827773803],[-87.68368091048475,41.87000243317446],[-87.68368708130697,41.87022901533431],[-87.68368749460159,41.87024418404964],[-87.68369579496694,41.87052675163277],[-87.68370205424561,41.87073532265658],[-87.68370858935542,41.87096016863912],[-87.68371427997232,41.87117414260367],[-87.6837195106962,41.8713652227937],[-87.68372644794685,41.871618642787965],[-87.68373004178852,41.87174602377222],[-87.68373446361302,41.87190400782662],[-87.6837378630919,41.872025131089146],[-87.68374301098154,41.87220935399856],[-87.6837471471203,41.87235929577159],[-87.68375213107757,41.872537919473054],[-87.68375352725673,41.872589790125254],[-87.68375789422818,41.872752003832275],[-87.68376263277796,41.872918606593906],[-87.68376630488068,41.873058721584094],[-87.68377007469225,41.87320256875403],[-87.68377330309788,41.873329755537966],[-87.68377784142832,41.87346696596407],[-87.68378047157421,41.87354648202062],[-87.6837872729779,41.87376682882775],[-87.683780665225,41.87392690550141],[-87.68338025726491,41.87393398344068],[-87.68301746883694,41.873939641010956],[-87.68279672262987,41.87394338532428],[-87.68251960377532,41.87394829165872],[-87.68214180563693,41.87395317533924],[-87.68205076488599,41.87395450979879],[-87.68180972077373,41.87395804269986],[-87.68134463423415,41.87396538435345],[-87.68109108263421,41.87396938617783],[-87.68072766610706,41.87397538969844],[-87.6803582265434,41.87398152247809],[-87.67993524356045,41.87398850203138],[-87.67971780573806,41.873991875053534],[-87.6792463955292,41.87399868621108],[-87.67890149365964,41.87400438023275],[-87.6786390638909,41.87400834306437],[-87.67836445652736,41.874011716908484],[-87.67814433034154,41.87401578539786],[-87.67784003903787,41.87402074467937],[-87.67756542636066,41.87402466543198],[-87.67733613166118,41.87402766437171],[-87.67705744881576,41.87403463421868],[-87.67683328691258,41.874038374716],[-87.6766957225742,41.87404044253971],[-87.67645645463404,41.87404250481313],[-87.67624020247527,41.87404436842027],[-87.6760411246454,41.87404751021838],[-87.6757526905337,41.87405293919336],[-87.6755000676943,41.87405714557112],[-87.67527888821262,41.87406013200226],[-87.67485850115072,41.87406694060361],[-87.6745442697317,41.87407202899848],[-87.67436872785629,41.87407522057962],[-87.67417031084116,41.874078390368304],[-87.67401717196066,41.874080987435484],[-87.67384080118336,41.87408397833469],[-87.67382615166444,41.874084226810886],[-87.67376653193121,41.87408523788106],[-87.67348482134415,41.87409015064932],[-87.67311071711768,41.87409634335263],[-87.67277863498246,41.87410042143394],[-87.67274389953464,41.87410084759993],[-87.67237158973423,41.8741074870221],[-87.67203615892413,41.87411266361097],[-87.6717770755157,41.87411665994073],[-87.6715608971813,41.8741198387114],[-87.67136272928946,41.87412275206428],[-87.67119485954503,41.87412609278604],[-87.67102124154815,41.87412780844761],[-87.67086902011361,41.8741126878187],[-87.67059367896223,41.87411592907573],[-87.67030562336872,41.87412370660545],[-87.67002804525197,41.87414087437263],[-87.66976335662568,41.87415073391785],[-87.66969006176821,41.87415230683204],[-87.6696611887059,41.87415268635914],[-87.6696510471573,41.87415291617156],[-87.66959075205455,41.874154283136825],[-87.66949011808195,41.87415656454521],[-87.66911115937638,41.874159889854845],[-87.66887181255748,41.87416198965452],[-87.66801232870834,41.874175947270174],[-87.66788769104306,41.87417797103108],[-87.66781982109809,41.87418351053495],[-87.66738211439596,41.87418956899931],[-87.6666773583077,41.87419931960702],[-87.66659893093727,41.87420043429774],[-87.66659761089487,41.87414953071171]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3512786.6014","perimeter":"0.0","tract_cent":"1171208.0303779","census_t_1":"17031612100","tract_numa":"16","tract_comm":"61","objectid":"319","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869695.44761371","census_tra":"612100","tract_ce_3":"41.79791256","tract_crea":"","tract_ce_2":"-87.64768111","shape_len":"7956.34981615"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64929886350289,41.79424730847329],[-87.64986050869821,41.79423544807759],[-87.65001637321343,41.79423975791009],[-87.65001863661773,41.794401265397035],[-87.65002930291375,41.79462614064326],[-87.65003073994762,41.794690475496694],[-87.65003273292875,41.79477970376836],[-87.65003706240404,41.794972844821515],[-87.65004088294265,41.79511515841968],[-87.6500458911258,41.7953017174905],[-87.65005852072846,41.79567325892331],[-87.65006241568588,41.7958865678492],[-87.65006388650704,41.795976451898916],[-87.65006518204306,41.7960556319228],[-87.6500673080015,41.796185586685944],[-87.65007392945854,41.79645294675715],[-87.65007900635331,41.7966966144612],[-87.65008294784069,41.79685931931125],[-87.65008963755531,41.79713548863216],[-87.65009562981191,41.797372328485785],[-87.65010223537894,41.797634364497156],[-87.65010590970242,41.79777182005201],[-87.65010870581797,41.797876394143394],[-87.65011268091965,41.798025102767255],[-87.65011805814926,41.79823419422545],[-87.6501237896585,41.798457064082776],[-87.65013175875227,41.79876293434785],[-87.65013907692037,41.79904805394912],[-87.6501473220179,41.79937670336758],[-87.6501515493411,41.79960022286197],[-87.65015578410527,41.79967961214116],[-87.65015656712855,41.79969428553538],[-87.65015734978833,41.79970895865296],[-87.65016311045365,41.79981695270002],[-87.65016560394565,41.79996891843156],[-87.65016940870493,41.800194246615746],[-87.6501743873514,41.80047479672379],[-87.65017797157394,41.80060632402507],[-87.65018024600266,41.800689763717514],[-87.65018623556224,41.80090618595083],[-87.65019159267092,41.801060611368186],[-87.65019364825963,41.80111987208305],[-87.65020160892846,41.801406312915816],[-87.65020351913208,41.801517003888904],[-87.6499657204525,41.80151918176908],[-87.64963061521485,41.801525777387766],[-87.64919331996344,41.80152992480467],[-87.64860063054945,41.801537288262004],[-87.64799053381927,41.80154682256254],[-87.6477740409547,41.80154946659861],[-87.64739579208391,41.80155408495522],[-87.6468429975284,41.80156225413035],[-87.64629945313627,41.801569679852385],[-87.64597260997228,41.80157507955911],[-87.64554335327361,41.80158216984192],[-87.64534450329056,41.80158435976325],[-87.64533977954382,41.80132367443952],[-87.64532820541883,41.80090394963034],[-87.64532204292948,41.80067004505989],[-87.64531586742075,41.80043564643111],[-87.64530746597646,41.8000999155799],[-87.64529740058622,41.79976912789708],[-87.64529151027683,41.79957555240812],[-87.64528234629317,41.799228839809935],[-87.64527487627295,41.798881451266126],[-87.64527158768026,41.798733926392714],[-87.64526331490652,41.79841263113741],[-87.64525371407443,41.79805878071641],[-87.64525052957525,41.797942157068974],[-87.64524780271105,41.797842304002636],[-87.64524356893513,41.797687253831214],[-87.6452299759404,41.79712722890641],[-87.64522615718367,41.796928108561744],[-87.64522192413212,41.796707415112714],[-87.64520974921388,41.79629943189513],[-87.64520472763932,41.796126951310356],[-87.64520225520997,41.79604202836469],[-87.64519781454617,41.79588950164558],[-87.64518660336921,41.79536741681558],[-87.64518269445773,41.7951946349589],[-87.64518126523136,41.79510544292821],[-87.64517310010852,41.79487448994834],[-87.64517085792292,41.794763524556785],[-87.64516595492368,41.794520873559115],[-87.64516036058433,41.79430185191307],[-87.64530077461701,41.79430013503391],[-87.64570577513949,41.79430050177852],[-87.6462826476835,41.79429824525022],[-87.64654203138859,41.79429447235641],[-87.64741958310577,41.79428127385415],[-87.64759874201631,41.794278553590026],[-87.64779450348384,41.79427558085653],[-87.64812749242883,41.79427133799093],[-87.64860723202567,41.79426459349362],[-87.64929886350289,41.79424730847329]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1449156.50327","perimeter":"0.0","tract_cent":"1157563.21981363","census_t_1":"17031301000","tract_numa":"6","tract_comm":"30","objectid":"623","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888526.16228344","census_tra":"301000","tract_ce_3":"41.84987412","tract_crea":"","tract_ce_2":"-87.69720789","shape_len":"4860.99711742"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69841523127245,41.84784205601824],[-87.69856094705665,41.84784135210161],[-87.69869722102924,41.84786386717484],[-87.69879867392955,41.84790770473389],[-87.69882979580574,41.84793236921058],[-87.69885146339698,41.847949540932795],[-87.69891196832363,41.84799749168038],[-87.69895890809742,41.848072038135186],[-87.69898046247411,41.848156515809315],[-87.6989810289307,41.84817128828342],[-87.69898302904201,41.84822342988615],[-87.69898466514384,41.84826608997272],[-87.69899313219813,41.84849385561702],[-87.69901518183849,41.84923040010558],[-87.69903359305562,41.84988937157303],[-87.69903822387151,41.85003137892521],[-87.69904331162562,41.850187397153924],[-87.699062905176,41.850942186521934],[-87.69906305595013,41.85094799064338],[-87.69906697352368,41.851098896961204],[-87.69908594321019,41.85174604352994],[-87.69908861861846,41.85185278863724],[-87.69898027967164,41.85185286814462],[-87.69861135406171,41.85185781734378],[-87.69853334376855,41.85185909724781],[-87.69773873334822,41.85187213169867],[-87.69742009298653,41.85187646153238],[-87.6971339288664,41.85187783917976],[-87.69696777186059,41.851888389680916],[-87.69655374339442,41.85188823544605],[-87.69622695282891,41.85189276239275],[-87.69594035811018,41.85189679798195],[-87.6955980478407,41.851900632997136],[-87.6954456288556,41.85190201298709],[-87.69544059788146,41.85167761102078],[-87.69543809362374,41.851563929842555],[-87.69543558841248,41.85144650328994],[-87.69543441247858,41.851391377736],[-87.69543174498398,41.85125349126642],[-87.69542822896067,41.851097570287656],[-87.69542435662645,41.85098467898157],[-87.69541741373796,41.85078230442143],[-87.6954118956571,41.8506099341866],[-87.6954088989955,41.85047193609928],[-87.69540457136249,41.85026472007629],[-87.69540003497772,41.85013189596577],[-87.6953982591666,41.85007989140852],[-87.6953904690427,41.849851795362305],[-87.69538415266088,41.84969698393758],[-87.69538242013256,41.84962518416125],[-87.69538113694468,41.84957199352144],[-87.69537636703937,41.84935758531796],[-87.69537130362063,41.84917242464004],[-87.69536847914861,41.849069119607286],[-87.69536098087455,41.848837489708224],[-87.69535765678954,41.8487148024657],[-87.69535450884774,41.848598620648524],[-87.69534787550431,41.84838337877865],[-87.69534461022252,41.8482641227293],[-87.69533844990897,41.84803914106894],[-87.69533340070309,41.84788259786777],[-87.69571400064854,41.8478829100821],[-87.6959677975734,41.84787929676653],[-87.69627937816976,41.84787427479787],[-87.69652719749651,41.8478701602913],[-87.69683822534316,41.84786535300816],[-87.69724472738861,41.84785942712151],[-87.6974599089205,41.84785623907318],[-87.69792367584125,41.847849354743424],[-87.69841523127245,41.84784205601824]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4415483.50957","perimeter":"0.0","tract_cent":"1172405.99064255","census_t_1":"17031601500","tract_numa":"20","tract_comm":"60","objectid":"320","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880357.54223263","census_tra":"601500","tract_ce_3":"41.82714409","tract_crea":"","tract_ce_2":"-87.6429739","shape_len":"8635.17814537"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64562980060673,41.823464143724806],[-87.64592818941182,41.823459057893274],[-87.645943207754,41.82369258668538],[-87.64594637565618,41.82382520879847],[-87.64594966534867,41.82398074629594],[-87.64595184704464,41.824136935783486],[-87.64595466748796,41.824257453574674],[-87.64595788458193,41.8243957017231],[-87.64596102465583,41.824517072145326],[-87.64596670956416,41.82473681243625],[-87.64597070669699,41.82492915480372],[-87.64597414929833,41.82509438073355],[-87.64597764817856,41.825277636848526],[-87.64598038056094,41.82542076632305],[-87.64598399271475,41.825557589512606],[-87.64598837103853,41.82572342476298],[-87.64599275868638,41.82591689458458],[-87.6459982989801,41.82616385710908],[-87.64599868463287,41.82618103854362],[-87.64600155612167,41.8263086642547],[-87.64600564078924,41.826489371391155],[-87.64600896525772,41.826598146401686],[-87.64601265308265,41.82671877937619],[-87.64601738194516,41.82695585736727],[-87.64602135991704,41.82710088889638],[-87.64602593423695,41.82726765777694],[-87.6460278875704,41.827366353375524],[-87.64603121377125,41.82753558489627],[-87.64603383477095,41.82763247354237],[-87.64603889166743,41.82781944311239],[-87.64604334651095,41.82806156914669],[-87.64604806993665,41.82831632041273],[-87.64605166161084,41.82851222778231],[-87.64605506684964,41.82867051011164],[-87.64605754357432,41.82878559209907],[-87.64606183466367,41.828923763961264],[-87.64607004381891,41.82918805893001],[-87.64607509251476,41.82938493548134],[-87.6460798700961,41.82956946119832],[-87.64608335474706,41.82970979646199],[-87.64608984527665,41.82997125424065],[-87.64609347680167,41.83016691480778],[-87.64609782585879,41.83039833746659],[-87.64610268515627,41.83065756259719],[-87.64610614504136,41.830750410884654],[-87.64579761728332,41.83075411890882],[-87.64549080585972,41.83075776914779],[-87.64542014842799,41.830758609730694],[-87.6451802943805,41.83076148174614],[-87.64488964513029,41.83076620746064],[-87.64467219544453,41.830769742615956],[-87.64428240629725,41.830773430794515],[-87.64425503078323,41.83077368973156],[-87.64396965847769,41.830774968886374],[-87.64367331037944,41.8307814347812],[-87.6432732880789,41.830790161604774],[-87.64306129397441,41.8307920319007],[-87.64258969563906,41.83079773915454],[-87.64245421486714,41.830800297307356],[-87.64220816058102,41.83080494334914],[-87.64194452751235,41.83080802200436],[-87.64184104088498,41.830809251140685],[-87.64165010438406,41.830811518381964],[-87.64123527964011,41.830815423612925],[-87.6410457143773,41.83081720771127],[-87.64074949951495,41.830823490133085],[-87.64062826031179,41.8308241284148],[-87.64047494949853,41.830824935355416],[-87.6402875642781,41.830827893824065],[-87.6400158323365,41.83083140382206],[-87.64000816662637,41.83062571151816],[-87.6400054699071,41.83044034744634],[-87.64000280099755,41.830300044402705],[-87.63999833388011,41.83006796220575],[-87.63999344654856,41.82988845762481],[-87.63998721058442,41.82966728691808],[-87.63998084473198,41.82944112085168],[-87.63997509655634,41.82921558968635],[-87.63997046047398,41.829007846982385],[-87.63996421442106,41.82872794994602],[-87.6399614687734,41.828621323504116],[-87.63995705242138,41.828449802600524],[-87.63995183254069,41.8282466952552],[-87.63994588766667,41.82801553710515],[-87.63994051048364,41.82780661094589],[-87.63993443335855,41.82757067942231],[-87.63993407216435,41.82755665156046],[-87.63992872602927,41.827348219540006],[-87.63992536887986,41.82718266581789],[-87.63992254804519,41.82704354098927],[-87.63991728164353,41.826800559087665],[-87.63991716594205,41.82679509674547],[-87.63991261804756,41.8265799194379],[-87.63990682354411,41.82630768014653],[-87.63990340778088,41.82614440296048],[-87.63990217835918,41.82608533886761],[-87.63989957991572,41.82596229759547],[-87.63989572539259,41.825772123912124],[-87.63989284524207,41.82563102364046],[-87.63988109124361,41.825455456654275],[-87.63988167932224,41.82536067066892],[-87.63988248269679,41.825231313125805],[-87.63987984569513,41.82506768385546],[-87.63987736769738,41.82492332031339],[-87.63987373480614,41.82478734753508],[-87.6398613010464,41.82446742755022],[-87.6398520150665,41.82399099668041],[-87.6398407583215,41.823539006144216],[-87.64009953390082,41.82353452395703],[-87.64031319879304,41.823531971301975],[-87.64058442454144,41.823529737972535],[-87.64087144802136,41.82352545870991],[-87.6410625511091,41.82352291848101],[-87.64123790888397,41.82352058712942],[-87.64149400158756,41.82351658646411],[-87.6416715858068,41.82351212156652],[-87.64180307564651,41.823508815247095],[-87.64213801537952,41.82350449197253],[-87.64227433006064,41.8235028941893],[-87.64235122018526,41.82350199285665],[-87.64260680702616,41.82349899683267],[-87.64270206314652,41.82349781327548],[-87.64289523044239,41.82349763946208],[-87.64299983006246,41.82349754503835],[-87.64331485804087,41.823495650831745],[-87.64348999457874,41.823491597347825],[-87.64376388992973,41.82348525723421],[-87.64400825726526,41.82347983587751],[-87.64409675811396,41.82347904092504],[-87.64434340241401,41.82347682465355],[-87.6447204175355,41.82347388426967],[-87.64498788958007,41.8234717972379],[-87.64518905339528,41.82346833731433],[-87.64532628167409,41.82346709813706],[-87.64541375553081,41.82346630781865],[-87.64562980060673,41.823464143724806]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"28817314.8126","perimeter":"0.0","tract_cent":"1185851.34974381","census_t_1":"17031500100","tract_numa":"78","tract_comm":"50","objectid":"321","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1839483.48421368","census_tra":"500100","tract_ce_3":"41.71467495","tract_crea":"","tract_ce_2":"-87.59493309","shape_len":"21093.7230073"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6051898435275,41.707466452492206],[-87.6065175045448,41.70743344610845],[-87.6064056808259,41.70794027328074],[-87.60619937955944,41.70887025386277],[-87.60612545381991,41.7091969915823],[-87.60611596816285,41.70923857005342],[-87.60610130295285,41.709302851903075],[-87.60607132279983,41.709434334734155],[-87.60597399263794,41.70986183290681],[-87.60589677533218,41.71020098136167],[-87.60582169837451,41.710528781803724],[-87.60574039554642,41.71088393190542],[-87.60572528258193,41.71094994965449],[-87.60571307494523,41.711003274376246],[-87.6056193808849,41.711412544317206],[-87.60557237988402,41.71161812561192],[-87.605409228098,41.71232836579603],[-87.60533480868523,41.71265232735988],[-87.60528372954836,41.712878959307055],[-87.60527427329295,41.71292091658303],[-87.60526945610223,41.71294228983841],[-87.60520816252053,41.71321424011717],[-87.6051887933384,41.71330017541826],[-87.6051564081013,41.7134438647773],[-87.60515640386522,41.713443883137394],[-87.60512413957845,41.713587032618975],[-87.60510462554579,41.71367361217165],[-87.60507688454472,41.71379669172481],[-87.60503788471203,41.71396972282195],[-87.605002172882,41.714122355081756],[-87.60495710087275,41.714315681140725],[-87.60485716480545,41.71475531880076],[-87.6047700608768,41.715138504725104],[-87.60473758656288,41.71527998801809],[-87.60464930973582,41.7156687925052],[-87.60453919900975,41.716153755739086],[-87.60453283688382,41.71618176259892],[-87.60448058322575,41.71641069154612],[-87.60444094561298,41.71658506138173],[-87.60435215637187,41.716975645555024],[-87.60425080941384,41.71741294085215],[-87.60423490633586,41.717482799474496],[-87.60415437748262,41.71783654562508],[-87.6040554431842,41.71827078235494],[-87.60401824057264,41.718435489877855],[-87.60395916164167,41.718697049839605],[-87.60389802781832,41.71895986239327],[-87.60389802204197,41.71895988732988],[-87.60384466066725,41.71918928470399],[-87.60378967734728,41.719432411443556],[-87.60363774795258,41.7200500706628],[-87.60361831714557,41.72013220377256],[-87.6034919107133,41.720666505919645],[-87.60336860217834,41.72120805443684],[-87.60318224047145,41.72204834956649],[-87.60284446392464,41.72205507733248],[-87.60203082260752,41.72207991274364],[-87.60185043845694,41.722085417912844],[-87.60118320452517,41.72210523613862],[-87.60044387760438,41.72211567167315],[-87.59960626121523,41.72213011277291],[-87.59905452185791,41.722137126574154],[-87.59897506223525,41.72213775411141],[-87.59842452643154,41.72214210043892],[-87.59803074698746,41.7221452071434],[-87.59796611946872,41.72214615941582],[-87.5977508470648,41.722148794565115],[-87.59721129807798,41.72215648349492],[-87.59699217382132,41.722159605733765],[-87.59656036226252,41.722173138790296],[-87.596226193091,41.72217837786805],[-87.59600438392579,41.722182375920845],[-87.59584105098317,41.72218531962809],[-87.59538864707287,41.722192925883775],[-87.59510372313433,41.722196941124956],[-87.5949160007604,41.72219577610776],[-87.59479334066349,41.7221950152512],[-87.5944832420878,41.72219309063883],[-87.59398088173775,41.72219998564495],[-87.59357708242113,41.722207955123984],[-87.59357704358277,41.722207955971676],[-87.59327836393446,41.72221385019291],[-87.59282282351542,41.722220218645454],[-87.59235337278002,41.72223851596567],[-87.5918036479308,41.72224820943769],[-87.59173405361685,41.7222489883875],[-87.59166794150909,41.72224972829825],[-87.59153878588165,41.722251173752106],[-87.59143733404068,41.722252308895186],[-87.59095090725928,41.72225921174408],[-87.59065444763998,41.72226294931951],[-87.5902802457421,41.72226766563886],[-87.58998674024342,41.72227121971024],[-87.58971004402224,41.722274569785334],[-87.589155727458,41.72228258992518],[-87.58880678538405,41.72228865826061],[-87.58870811852557,41.72229039275409],[-87.58817396763506,41.72229991071548],[-87.58796337806866,41.722302729411616],[-87.58775992161628,41.722305452398196],[-87.58761877799569,41.722307341197116],[-87.586933369837,41.72231760059722],[-87.58670378966859,41.72232155546236],[-87.58665234924567,41.7222565113732],[-87.58651187286694,41.722129703033865],[-87.58628169253909,41.72192032524036],[-87.58610446617148,41.72176446189145],[-87.58590879094892,41.72158069235478],[-87.58564801432279,41.721325146987205],[-87.58546710803873,41.72113152437077],[-87.5853610516185,41.721037870399826],[-87.58527675595671,41.72096288212109],[-87.5851659163575,41.72085993119889],[-87.58513043734445,41.72082711556589],[-87.58507331018956,41.72077837447894],[-87.58496308087375,41.72068469433596],[-87.58496118741922,41.720629862938985],[-87.5849548241034,41.7204480534314],[-87.58495200930588,41.720361347122584],[-87.58495047088698,41.72031395924543],[-87.58494835014764,41.72024863237747],[-87.58494834871748,41.720248597789784],[-87.58494596865467,41.72017528300022],[-87.58494447373126,41.720129229690876],[-87.58493726492074,41.719907183819814],[-87.5849329350921,41.71955426409119],[-87.5849268964092,41.71932340037396],[-87.5849257280398,41.71928519353654],[-87.58491723047656,41.71900735690323],[-87.58490979330885,41.718731514596314],[-87.58490775522809,41.71865591298046],[-87.58489890386316,41.71844333549528],[-87.58488921419386,41.71831876276121],[-87.5848906171855,41.718266476210566],[-87.58490024997266,41.717907461634965],[-87.5848914293237,41.71762591964955],[-87.58488064441208,41.71738105636893],[-87.58486329152052,41.71708675259568],[-87.5848476996339,41.716811121630464],[-87.58484410553191,41.71673809225558],[-87.58483613983299,41.716576242578334],[-87.58482960277239,41.71642625051638],[-87.58482728407479,41.716222030778546],[-87.58481874357446,41.716026991136964],[-87.58477698884177,41.715316627293724],[-87.58476596340681,41.71503513557838],[-87.58476531599574,41.715018614410475],[-87.58475868077626,41.71484920177522],[-87.5847538038317,41.71472469021915],[-87.58475053269186,41.71464117331328],[-87.58473697887598,41.71429512367187],[-87.58470239815327,41.71369533978761],[-87.58468365079342,41.7136067136581],[-87.58468060137334,41.71331728510548],[-87.5846793842618,41.71329617336673],[-87.5846829762904,41.71249109599474],[-87.58466227976463,41.71179066582186],[-87.58462963873066,41.711273019430934],[-87.5846281926436,41.71125008725751],[-87.58468646789649,41.710700395511616],[-87.58473733859127,41.71029006689983],[-87.58482928056125,41.70981515748173],[-87.58493105469611,41.70944228461639],[-87.5849376403939,41.70941815635693],[-87.58502964387566,41.70916756786295],[-87.58508645492059,41.70901277391407],[-87.58518862185153,41.708770566742615],[-87.58525556706148,41.70861597589223],[-87.5854098657984,41.70832163645089],[-87.58542548849067,41.708291358498506],[-87.5855227858403,41.70811838596494],[-87.58557681395546,41.70803223654493],[-87.58564108572295,41.7079340710522],[-87.58571042359961,41.70782816711271],[-87.58574571692942,41.707774261420376],[-87.58588930986421,41.70777231889353],[-87.58604664097946,41.70777019027196],[-87.58660431048537,41.707762643583855],[-87.58729978537455,41.70774655558627],[-87.58746268659674,41.70774278660213],[-87.58902392785656,41.70773474428679],[-87.5906340241625,41.707694298752564],[-87.59083388282971,41.707687273338195],[-87.59150706778118,41.70766360700091],[-87.59197920890055,41.70766665392395],[-87.59248715680398,41.7076633082573],[-87.59253490985972,41.70766297146732],[-87.59336903198057,41.70764716220901],[-87.59339324253574,41.70764670310213],[-87.5941773875945,41.70762940091978],[-87.5942855509632,41.70762701390373],[-87.59479458291922,41.70763028650738],[-87.59524075771719,41.707618620860835],[-87.59600204737654,41.70760897552594],[-87.59625413968834,41.70761059276161],[-87.59629501639546,41.70760993998692],[-87.59631610968046,41.70760960297525],[-87.59658926597284,41.70760523939721],[-87.59741648359064,41.70759108925133],[-87.59807515569962,41.70757996476408],[-87.5981321497064,41.7075791707622],[-87.59889870636052,41.70756849077606],[-87.59972852560429,41.70755326346376],[-87.60081029800214,41.70753557546119],[-87.60159914127335,41.707523037571555],[-87.60246456671898,41.70751013062161],[-87.60281197722139,41.70750482433557],[-87.60284801298526,41.707504274024515],[-87.60315978070547,41.70749951126307],[-87.60401496112475,41.70748573278074],[-87.60454036907775,41.70747726445303],[-87.6046574729951,41.707475317634376],[-87.6051898435275,41.707466452492206]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"32980582.3213","perimeter":"0.0","tract_cent":"1200766.61480979","census_t_1":"17031460100","tract_numa":"55","tract_comm":"46","objectid":"322","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1849961.96090684","census_tra":"460100","tract_ce_3":"41.74306468","tract_crea":"","tract_ce_2":"-87.53995447","shape_len":"41688.7230623"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.54400587897814,41.75496208854558],[-87.5440101806003,41.75496043639376],[-87.54401079674192,41.75496043102168],[-87.54403004694805,41.75496027100345],[-87.5440389368239,41.75496130108684],[-87.54404036741391,41.75496146706521],[-87.54404128519482,41.754961191256605],[-87.54404224343793,41.75496090337663],[-87.54406667780395,41.754933154609716],[-87.54408230889722,41.754915403757195],[-87.54409421370633,41.754900894938416],[-87.54411374661422,41.75487708952471],[-87.54412323862859,41.75486588417801],[-87.54414104158555,41.75484486770465],[-87.5441632824657,41.75481540869788],[-87.5441780952533,41.75479695927638],[-87.54418075285592,41.75476846429544],[-87.54417196005251,41.75474724592761],[-87.54416069852893,41.75472839374858],[-87.54415831356089,41.75472440143068],[-87.54415437320361,41.75470796347502],[-87.54416878554501,41.75468630047741],[-87.54416944245543,41.75467156839441],[-87.54416808000735,41.754666348990156],[-87.54416485662398,41.75465400029515],[-87.54415412330285,41.75462667598501],[-87.54415213982982,41.754619108685986],[-87.54415139267896,41.75461625634677],[-87.54417129347797,41.75461021837494],[-87.54419061265142,41.75460346233892],[-87.54419076429882,41.754603409043455],[-87.54420735080312,41.75458373659255],[-87.5442079320375,41.754578592285284],[-87.54420961171506,41.75456371876009],[-87.54420679711797,41.75455321264982],[-87.54420424994612,41.75454370318358],[-87.54421235702675,41.75451612380447],[-87.54422577112314,41.75449516745959],[-87.54423886639219,41.754470229419525],[-87.54424337055366,41.75446182274166],[-87.54425004410027,41.75444936638597],[-87.54425246657745,41.754441649048196],[-87.54425938734822,41.75441960060499],[-87.54426226985667,41.75440448560859],[-87.5442626383876,41.75440255368527],[-87.54427532617862,41.75437799704353],[-87.54427639816784,41.75437641079294],[-87.54429230929154,41.75435286642834],[-87.54430069381527,41.75433865641406],[-87.5443050340856,41.754331301320036],[-87.54431321620571,41.7543215875418],[-87.54432132068119,41.75431821310281],[-87.54433089122688,41.75431770225038],[-87.54433097625225,41.75431773219824],[-87.54433169148749,41.75431798409662],[-87.54434155844952,41.754321459173674],[-87.54434162012234,41.754321480728265],[-87.54441321238677,41.75413157279719],[-87.54434089738407,41.7539705626007],[-87.5442540989543,41.753720345304295],[-87.54424030796835,41.75368654294293],[-87.54420987212794,41.75361194398384],[-87.54417573200676,41.753521690803744],[-87.54414661294167,41.753444711137014],[-87.5440977971891,41.753339225622696],[-87.54406478131597,41.75326788256975],[-87.54399764618626,41.75313890567108],[-87.54395716757617,41.75304682590344],[-87.54392694293519,41.752978071195685],[-87.54389180191352,41.75290519644056],[-87.54386732863847,41.75285444265653],[-87.54379731193116,41.75269965987032],[-87.54378993516478,41.752683351962766],[-87.5437160854994,41.7525341861555],[-87.54367076585228,41.75246425241668],[-87.54365777918437,41.752446141908976],[-87.5436070255815,41.752375365344705],[-87.54358675205579,41.75234794301383],[-87.54356758673192,41.75232201927354],[-87.54355626382866,41.752305591467476],[-87.54353716082879,41.75227787420338],[-87.54351968933852,41.75225333122834],[-87.54351442717483,41.75224593951498],[-87.54349102958665,41.75222039364668],[-87.54347903661508,41.75221142406795],[-87.543470439087,41.75220499352794],[-87.54345397549109,41.75219252387173],[-87.54344422246496,41.752185136682314],[-87.5434309843178,41.75217565056859],[-87.54340942001654,41.752160198737414],[-87.54337588266537,41.752133677513385],[-87.54336043927256,41.75211927381675],[-87.54335584488285,41.75211498856648],[-87.54335562911251,41.752114712653196],[-87.5432932434364,41.752062401104794],[-87.54328438514914,41.75205497340113],[-87.54322607837994,41.75201318844718],[-87.5431877820553,41.751989241797745],[-87.54317984746518,41.75198523791171],[-87.54315216107616,41.75197126811129],[-87.54315209112245,41.751971234698615],[-87.5431280958005,41.75195978264836],[-87.54311829422349,41.75195510481626],[-87.5431040308999,41.751948297182956],[-87.54309413579861,41.75194386459458],[-87.54306856723575,41.751932410767274],[-87.54305378722496,41.751925331456],[-87.54304426676089,41.751920771909376],[-87.5430269971353,41.751915467221615],[-87.54302239740004,41.75191622154858],[-87.54301414462151,41.75191757397713],[-87.54297809468059,41.75192606081845],[-87.54297801602564,41.75192607948747],[-87.54296041000701,41.7519269861134],[-87.54293804411928,41.75192813771477],[-87.54290594705232,41.75191869578996],[-87.54286940867154,41.751924756022426],[-87.54279550639014,41.751920405812456],[-87.54273115868375,41.751920223477384],[-87.54266658487477,41.751920040099144],[-87.54265883401986,41.75192098595825],[-87.54265487674535,41.751921468889904],[-87.54260213468478,41.751927939216166],[-87.54258503336779,41.751927317391385],[-87.54252861569725,41.751925265493746],[-87.54251102517239,41.751921237087835],[-87.54250007375757,41.75191872943729],[-87.54242868147232,41.75191897924439],[-87.5423796612029,41.75191832509662],[-87.5423309582529,41.75191767503357],[-87.54225861681077,41.751920579894175],[-87.5421843098376,41.7519283285807],[-87.54214296680199,41.75192571096137],[-87.54210106165897,41.75192413256349],[-87.54210100851428,41.75192413302079],[-87.54209964366962,41.751924140087354],[-87.54183208695358,41.75192554535428],[-87.54171098424457,41.75192416270489],[-87.54167287011171,41.75192719352159],[-87.54162372910068,41.75192688153086],[-87.54158300068006,41.75192608220006],[-87.54155913526859,41.7519256136692],[-87.54150346971761,41.751928386260296],[-87.54145151950654,41.75192114002989],[-87.54143234222174,41.75192194063927],[-87.5414233665779,41.75192306595752],[-87.54139229795001,41.75192696057302],[-87.54134888165515,41.75192611299376],[-87.54130675949189,41.751927194778354],[-87.54127132190679,41.75192716947669],[-87.54120562049215,41.75192951625287],[-87.54113896598483,41.75193188331398],[-87.54110496607811,41.751925063389216],[-87.54107733009607,41.75191952035004],[-87.54106576365841,41.75191651681833],[-87.54103878991755,41.75190951260741],[-87.54100581361804,41.7519090684022],[-87.54099280476842,41.751908893068034],[-87.54096695437501,41.75191299644555],[-87.54094110434824,41.75191709954532],[-87.54090217730517,41.7519116712416],[-87.54086547803084,41.751906723448876],[-87.54082816263752,41.75190169263329],[-87.54080027183153,41.75189556652768],[-87.54079709390568,41.75189486868604],[-87.54079694953795,41.75189483695406],[-87.5407048729899,41.75186509054461],[-87.54070485327615,41.75186508437117],[-87.54064970787306,41.75185542792243],[-87.54060314326003,41.751862144126186],[-87.54057907254084,41.75186561615795],[-87.54054838746983,41.75186952060131],[-87.54054831864573,41.75186951463782],[-87.54054484447718,41.75186921486358],[-87.54048966675285,41.75186444982454],[-87.54043425990307,41.75184620236737],[-87.54042763176457,41.75184349712709],[-87.5403781050511,41.75182328469044],[-87.54034897296027,41.751814785422056],[-87.54032588654184,41.75180804964623],[-87.54027021298259,41.751787659442925],[-87.54024689709573,41.751779798277646],[-87.54021528712065,41.75176914049604],[-87.54020330335868,41.75176190777922],[-87.54017858247045,41.751746987625204],[-87.54016391586772,41.75173608399857],[-87.54014706055932,41.751723552985496],[-87.54010512588657,41.7517064689262],[-87.54005059276058,41.75168282050196],[-87.5400288005967,41.75167467342883],[-87.5399909122025,41.75166050865744],[-87.53997723222211,41.751655466228556],[-87.53991769305853,41.7516335208627],[-87.53991346337207,41.75163249574849],[-87.53990417421251,41.75163024439535],[-87.53986275542823,41.75161606562991],[-87.53984093080189,41.751608594217316],[-87.53980392261604,41.75159926130971],[-87.53977469471258,41.75159189051221],[-87.53974774981381,41.751574772090386],[-87.53974080417731,41.751573034177646],[-87.53969970616684,41.751562749805686],[-87.53966373152825,41.75155198543165],[-87.53963314364083,41.75154283266203],[-87.53958425675013,41.751527868105896],[-87.53951966417391,41.75150571363344],[-87.53951301656852,41.751501828158105],[-87.53949495779467,41.751491272586634],[-87.53946376987665,41.75148329320404],[-87.53945042503162,41.75147987847528],[-87.53939104810644,41.75146272797014],[-87.5393563770643,41.75145101666928],[-87.53933950469238,41.75144033507588],[-87.53930171497228,41.75142832722774],[-87.53930154048248,41.751428271684766],[-87.53924032058657,41.75142087888613],[-87.53921109632334,41.751411202760806],[-87.53920400432237,41.75140885457001],[-87.53912034931025,41.75138121755856],[-87.53905966675856,41.751360861573986],[-87.53904483791669,41.75135588710891],[-87.53893008800183,41.75131488980483],[-87.53891480481431,41.75130904855117],[-87.53890576246398,41.75130500652334],[-87.53869288345172,41.751209844079746],[-87.53866205047633,41.751183446388126],[-87.53866202218502,41.751183422591495],[-87.53859759909584,41.75115649451882],[-87.53850128352374,41.75111842375489],[-87.53840986255881,41.751087549116264],[-87.5383510589495,41.7510645868743],[-87.53834074921133,41.75106056100566],[-87.53832761781358,41.751055274091655],[-87.53826231129948,41.751028980237],[-87.5381918568853,41.751003766275325],[-87.5381624808019,41.75099382949639],[-87.53812700536248,41.75098182959463],[-87.5381052780547,41.75097369248484],[-87.53806123543112,41.750957197383364],[-87.53800873715491,41.75094403513583],[-87.53799189315514,41.750939811969886],[-87.53798086766119,41.75093611921162],[-87.53792839055694,41.750918543420596],[-87.5378904980732,41.750904219307536],[-87.53787152320437,41.75089704634537],[-87.53785562466874,41.75089054178463],[-87.53772478816555,41.75083771402324],[-87.53769471900942,41.75083028829712],[-87.53765789013318,41.750824242784894],[-87.53765783756889,41.75082419631668],[-87.5376542670112,41.7508210540677],[-87.53763639175283,41.75080532290658],[-87.53761810654206,41.750781540702654],[-87.53760510755583,41.750774354746],[-87.53758935066159,41.75076564416541],[-87.53753990854217,41.75075426909999],[-87.53751122431471,41.750747853763535],[-87.53751117241944,41.750747842152464],[-87.53748951123923,41.75074299771773],[-87.53747475501319,41.75073958286266],[-87.53746579515756,41.7507375095029],[-87.53741376727304,41.75072479948338],[-87.53738585567848,41.75072143234488],[-87.53737684552834,41.75072034547908],[-87.53735247730387,41.750711285136425],[-87.53734253711622,41.75069963341503],[-87.53733860540068,41.75069502484589],[-87.53732983872304,41.75068621501499],[-87.53731790042929,41.75067421738826],[-87.53729713478307,41.750665648249466],[-87.53727866837465,41.750658027824095],[-87.5372614132101,41.75065155933686],[-87.53724182565243,41.7506442162699],[-87.53721318308934,41.75063707500665],[-87.53718126053771,41.750631365211014],[-87.5371601731681,41.75061962250804],[-87.53715396320844,41.75061616447155],[-87.53714790585602,41.75060928343239],[-87.53713748393609,41.750597443938084],[-87.53712867771495,41.75058537249471],[-87.53712714111693,41.75058326657518],[-87.53712501480445,41.75058042466482],[-87.53711902882128,41.75057242471979],[-87.53709111244558,41.75056882832778],[-87.53705698285827,41.750563817268535],[-87.53702660520884,41.75055180625287],[-87.53698065682327,41.75053299506299],[-87.53695889428337,41.75052408552122],[-87.53691822850084,41.75050528046018],[-87.53690575920572,41.75050132511531],[-87.53689001151446,41.750496330006754],[-87.5368589887283,41.7504793857165],[-87.5368588154544,41.75047929148364],[-87.53684938950818,41.75046212889293],[-87.53684341281428,41.75045347009203],[-87.53683844525426,41.7504462735875],[-87.536833999084,41.750444924678646],[-87.53682409651198,41.75044192072854],[-87.5368141045821,41.75044415886393],[-87.53680020958912,41.750447271166834],[-87.53678183426359,41.75045218312722],[-87.5367782956862,41.75045312870367],[-87.53677181040065,41.75045261693639],[-87.53674820176708,41.750450752614285],[-87.53672716390449,41.75044503527996],[-87.5366976668899,41.75043395154372],[-87.53668973781669,41.75043097224275],[-87.53667738263763,41.75042389547714],[-87.53665928054015,41.75041352686887],[-87.53662020658615,41.75039050514974],[-87.53657195787247,41.750365609105664],[-87.53650570290917,41.7503417138746],[-87.53645337285427,41.75032378715934],[-87.53641619072918,41.75030826164231],[-87.53640532065502,41.75030372264616],[-87.53638893978227,41.75029739538592],[-87.53634809539727,41.75028161831404],[-87.53629527214436,41.75026511568914],[-87.53629252485611,41.75026395116101],[-87.53626348257475,41.75025164019921],[-87.5362583740189,41.75024894526022],[-87.53623876083572,41.75023859766191],[-87.53623500813768,41.750223319095966],[-87.5362327253512,41.75021402314232],[-87.53623272500514,41.75021402149334],[-87.53621159567756,41.75020086693266],[-87.53616034841772,41.75019916694325],[-87.53612220159643,41.750193084077225],[-87.53609210417085,41.750176135572026],[-87.53608390118599,41.75017027171846],[-87.53608345873916,41.75016995579842],[-87.53606530872153,41.750171795320234],[-87.53605634287273,41.75017270403708],[-87.53605242717808,41.750171874981426],[-87.53601372419115,41.750163681148386],[-87.53597869948645,41.75013632387775],[-87.53595674981017,41.75012437600767],[-87.5359529626096,41.75012231455308],[-87.53595274554957,41.75012217555736],[-87.53595251540655,41.75012202768909],[-87.53592373160505,41.75010358794895],[-87.53590450562567,41.750093704571675],[-87.53590435850994,41.75009362890572],[-87.5358995723188,41.75009260444661],[-87.53588063807857,41.75008855197813],[-87.53584357371211,41.75007487427963],[-87.53580628104609,41.75006193731694],[-87.53577806845992,41.750049284563495],[-87.53577103982194,41.75004613252137],[-87.53572132425376,41.75001834442472],[-87.53570223807806,41.75000306340192],[-87.53570021897991,41.75000035942425],[-87.53568843194647,41.74998452587522],[-87.5356772060115,41.7499736625757],[-87.53564729115526,41.74996862547269],[-87.53562240271975,41.74995725566673],[-87.53560470732988,41.74993910277138],[-87.53560470369612,41.74993910027629],[-87.53557730716784,41.74992335208316],[-87.53557730461979,41.74992335069332],[-87.53557716198019,41.749923268746144],[-87.53557218513077,41.749921365597636],[-87.53554127139319,41.74990954531176],[-87.53551886588076,41.74989586034544],[-87.53548652685721,41.74987656291401],[-87.53545867778254,41.74986981257169],[-87.53543873637089,41.749864978869816],[-87.5353781755913,41.749846007107],[-87.53534203524903,41.74983221738478],[-87.53533473459606,41.74982943198583],[-87.53532539240442,41.749824335978545],[-87.53530849019168,41.74981511629546],[-87.53528588213203,41.749805985685256],[-87.53528056480909,41.74980364244375],[-87.53525785402627,41.749793634037],[-87.53523049849512,41.74979509032206],[-87.53520380839262,41.74980184771749],[-87.53520365814772,41.749801728943424],[-87.53519973897598,41.74979863908219],[-87.53518214246161,41.749784764893974],[-87.53515722526714,41.74976090823315],[-87.53513465199299,41.7497460148098],[-87.53513351788716,41.74974577009801],[-87.53510614477719,41.74973986135981],[-87.53507191324474,41.74973718138147],[-87.53506110560741,41.74973066487652],[-87.5350471417422,41.74972224549955],[-87.5350241950758,41.74971226230178],[-87.53499931985844,41.7497014396655],[-87.5349568603708,41.74968259345424],[-87.53491832751135,41.7496672411107],[-87.53490989212601,41.749663880278604],[-87.5349036494228,41.749661129921535],[-87.53486761318166,41.74964525510719],[-87.53483307541374,41.74962887860976],[-87.53481347641664,41.749619785559254],[-87.53480286929533,41.749614864586064],[-87.53476726871735,41.74959255299919],[-87.53475877627238,41.74959007185566],[-87.53474273125259,41.74958538449173],[-87.53467830173003,41.74957395945679],[-87.53458946879545,41.749535717605994],[-87.53458051071667,41.74952891039448],[-87.53456220500728,41.74951500099341],[-87.53454861106323,41.74951251922014],[-87.53452406853631,41.749508039493676],[-87.53446240510036,41.749495261969],[-87.5344416231547,41.749488423303326],[-87.53443514195821,41.74948629065047],[-87.53442328623764,41.749477566145444],[-87.53438081454716,41.749446312117435],[-87.53432200048394,41.74943424040572],[-87.53423313069693,41.749415135931976],[-87.53421381650479,41.749410984221406],[-87.53389916560955,41.749311098594944],[-87.5337621231888,41.74925086787008],[-87.53356680696649,41.74916169121241],[-87.5335274410784,41.74914459491416],[-87.53339476555826,41.74908694607194],[-87.53335793264733,41.7490749629632],[-87.5332327123072,41.749034224611854],[-87.53321990032399,41.74903013722399],[-87.53321436087515,41.74902837001462],[-87.53319402011819,41.74902188107487],[-87.53307188937886,41.74896918163681],[-87.53302853505214,41.748950474201855],[-87.53292448822943,41.748904029410156],[-87.53287978041926,41.74888407261627],[-87.53273625540918,41.7488200048046],[-87.53248176471116,41.74872992080248],[-87.53244364307291,41.74871642618904],[-87.53241369548627,41.74870607066463],[-87.53208240262997,41.7485915121366],[-87.53183843392263,41.74846631653982],[-87.53174891961521,41.74843105325962],[-87.53158170727775,41.748365181769685],[-87.53145942802627,41.74831617066057],[-87.53137823911376,41.74828362881121],[-87.5312869273652,41.74822826710747],[-87.53125094151429,41.74820644873208],[-87.53110456790874,41.74813078162367],[-87.53094829812918,41.74802595565764],[-87.53093461852492,41.748000373003606],[-87.530911770159,41.747957642509306],[-87.53090592005273,41.747912681882326],[-87.53090240639617,41.74788567650094],[-87.53089217886185,41.74785891402698],[-87.53088537140202,41.74784110017062],[-87.5308746462648,41.74778205578386],[-87.53086410872909,41.74772404456195],[-87.53081030469188,41.74751290637901],[-87.53076476726169,41.74728535984294],[-87.53076094228356,41.74719565109695],[-87.53075739357952,41.74711241807958],[-87.53072273966262,41.746979139548365],[-87.53070563847366,41.74691336932776],[-87.5306992302344,41.74672177251419],[-87.53066980532235,41.7466128924506],[-87.53066484950014,41.74658091501464],[-87.53064945360858,41.746481573337974],[-87.53064835711729,41.746451926975844],[-87.53062049964562,41.74627609722656],[-87.53060986061239,41.74622221076274],[-87.53057362074148,41.74603866199516],[-87.53056515117142,41.74591255716369],[-87.53054844512414,41.74579198272251],[-87.53044611012899,41.74505338100872],[-87.5304329618738,41.74495848181415],[-87.53042710053222,41.74491617479995],[-87.53041308891542,41.74481504796615],[-87.5301756320795,41.743101126539344],[-87.53007901134396,41.742403838125654],[-87.53007716280409,41.742388869038024],[-87.53007574900352,41.74237741487125],[-87.53007017134492,41.74235712815223],[-87.53006639053476,41.74234337500231],[-87.5300599818829,41.74232934661395],[-87.53005137389765,41.74231050279265],[-87.53005345538277,41.742308075191644],[-87.53005841061827,41.742300304494684],[-87.53006477966515,41.74229031613279],[-87.53006734992552,41.742281864092014],[-87.5300706254911,41.74227109393144],[-87.53007062587801,41.74227109228757],[-87.53007061496464,41.74225138840622],[-87.53006484525001,41.742232165132535],[-87.53005356842252,41.742214455259116],[-87.53005352422197,41.74221438551929],[-87.53004559061173,41.74220684854032],[-87.53003722788067,41.742198903501844],[-87.53003725202088,41.74219887759976],[-87.53003730400279,41.74219882280274],[-87.53004427798844,41.74219142270478],[-87.53004977629415,41.7421855888903],[-87.53005482899827,41.74218022809643],[-87.5300634019515,41.74216589691829],[-87.53006725339888,41.74215945854605],[-87.53006977378152,41.74215133300255],[-87.53007412434677,41.74213730518795],[-87.53007472542215,41.74212476930749],[-87.53007521503042,41.74211456201027],[-87.53007047526668,41.742092080767755],[-87.53006163387454,41.74207388571403],[-87.53006007874183,41.742070684866505],[-87.5300571288996,41.742067022830746],[-87.5300445280883,41.74205138195876],[-87.53004438231798,41.74205120036463],[-87.53004543944517,41.742050847154225],[-87.53004567014871,41.74205077028014],[-87.5300557470791,41.74204483071184],[-87.5300557810805,41.742044777984546],[-87.5300613520575,41.74203616991479],[-87.53006128816952,41.74202653752094],[-87.5300562317141,41.74201888261885],[-87.53005560631017,41.74201793585359],[-87.53004541959238,41.74201204644314],[-87.53004093364913,41.74201135946691],[-87.53003283950004,41.74201011953498],[-87.5300244947243,41.742009320231524],[-87.53001668169024,41.74200681055484],[-87.53000982301923,41.742004607776714],[-87.53000688974988,41.742002468119196],[-87.52999834883111,41.74199623921533],[-87.52999163250897,41.74198537971095],[-87.52999116760948,41.741980316518486],[-87.52999053557797,41.74197343433256],[-87.52999072380084,41.74197335551499],[-87.53000924725823,41.74196560696114],[-87.5300207304082,41.741957263889354],[-87.53002510994031,41.74195408203028],[-87.53003635337622,41.74193983566183],[-87.53004018224169,41.74192950489038],[-87.53004226805433,41.74192387746477],[-87.53004236449627,41.7419074672195],[-87.53004236509008,41.74190733138075],[-87.53004236474764,41.74190732945735],[-87.530036701257,41.74189134602224],[-87.53003987264123,41.74179268285768],[-87.53003676668274,41.74177247241812],[-87.53003492460479,41.74176048533089],[-87.53002189861549,41.741706084543225],[-87.53001430138006,41.741684441736176],[-87.53000314400657,41.74165265909248],[-87.52998841600318,41.74162110368372],[-87.52997880505572,41.74160051130893],[-87.5299254093883,41.741527688960275],[-87.52992262790596,41.74152319245832],[-87.52991969808632,41.74151845589044],[-87.52990723200425,41.741504481186176],[-87.52990715937679,41.74150439917259],[-87.52990008195758,41.741497968085646],[-87.52987900768363,41.74147881780729],[-87.52987655965752,41.741477112669216],[-87.52984660425987,41.74145625205356],[-87.52981049497158,41.74143709157401],[-87.5297900678753,41.741429047326555],[-87.52977133338142,41.74142166942883],[-87.52973242350159,41.74141098157807],[-87.52972981439216,41.741410264905205],[-87.52972979492247,41.741410268885495],[-87.52971126378203,41.741414059510426],[-87.52966696377239,41.74141986944972],[-87.52964528763337,41.74142057789576],[-87.52962202316624,41.741421338071866],[-87.52958870927326,41.74141916701126],[-87.52957721021203,41.741418417510914],[-87.52949622781755,41.74139820178376],[-87.52448335775318,41.74145086675048],[-87.52447954817396,41.741468321950826],[-87.52446228734694,41.74146852920479],[-87.52446332291402,41.74138601564685],[-87.52446332493555,41.74138585457063],[-87.52446332497689,41.74138585127776],[-87.52848889669247,41.74134349685298],[-87.52988666810215,41.74132875755253],[-87.53005998122164,41.74125753543597],[-87.53010952702014,41.741237174683505],[-87.53012605260697,41.741234243759585],[-87.53013447259406,41.74123438055818],[-87.53013498364089,41.741234388795974],[-87.53014689742734,41.741234582125394],[-87.5301667306014,41.741239211265956],[-87.53016677224943,41.74123922116214],[-87.53017543129866,41.74124898965634],[-87.53018877759624,41.741264046250976],[-87.53036178311952,41.74121241419186],[-87.53053478800607,41.74116078159237],[-87.53062695963415,41.7411298660967],[-87.53064694722104,41.741124627176724],[-87.5306671403031,41.74111933425393],[-87.53068695841979,41.74111672839795],[-87.5313334635037,41.74110477651976],[-87.53176001509648,41.741101167044775],[-87.53331316843382,41.74108446630077],[-87.53362751278527,41.74108108367138],[-87.53378559303103,41.74107938380834],[-87.53380414853967,41.741079184436884],[-87.53684873824025,41.741045444618834],[-87.53954452959057,41.74101636245984],[-87.5395445669684,41.7410163621692],[-87.53985508902747,41.74101300826667],[-87.53985520153411,41.741013006848185],[-87.539853393554,41.74090884535231],[-87.5398504852503,41.740741288637594],[-87.5398389577226,41.7407252915268],[-87.53983862902925,41.740716870560846],[-87.53983004356462,41.74049690456308],[-87.5392557959859,41.740499170170715],[-87.53889595379187,41.740500588115495],[-87.5388692660241,41.74050069338508],[-87.53798581984962,41.740511402898825],[-87.53667853140716,41.74052723811546],[-87.53418068717234,41.740558192040496],[-87.53372372561445,41.74056404899628],[-87.53363391373281,41.74056520004879],[-87.53326754855776,41.74056989861972],[-87.53140650934249,41.7405937488316],[-87.5298566378488,41.740607317991724],[-87.5298366304703,41.74047856830856],[-87.52981627316142,41.740347562277144],[-87.5298163278168,41.74034755744518],[-87.52983432124344,41.740345931863345],[-87.52979664027161,41.740029607395506],[-87.52978377418349,41.73995657442347],[-87.52979018869375,41.73994459896701],[-87.52979017700018,41.739944567051324],[-87.52977916524164,41.73991477336777],[-87.52977916257373,41.73991472285397],[-87.5297785867792,41.73990239252092],[-87.52977898127513,41.73988979426903],[-87.52977937885484,41.73987709559725],[-87.52978133046987,41.739867504189476],[-87.52977595109428,41.739852086128536],[-87.52977403119858,41.73984658382334],[-87.52977400750328,41.739846515324516],[-87.52977400679447,41.73984651339853],[-87.52977869349154,41.73982917501897],[-87.52980346278545,41.73982037492409],[-87.52981046451292,41.739816138662114],[-87.52981391055394,41.73981405349085],[-87.52980790360468,41.739811443090304],[-87.52979805808837,41.73980716420342],[-87.52977677572854,41.73980398675353],[-87.52977549275886,41.739803795284864],[-87.52977242230342,41.73979838455119],[-87.52976681633946,41.73978850427837],[-87.52975121245686,41.7396558179223],[-87.52974926761215,41.73964978990819],[-87.52973096292136,41.73959305105341],[-87.52973099227364,41.73955249184727],[-87.52973099229416,41.739552490200836],[-87.52973041618459,41.73954600495347],[-87.5297301964237,41.739543529702615],[-87.52972890444963,41.739528984647606],[-87.52972633072723,41.739519176075056],[-87.5297261771627,41.73951859156241],[-87.52972379724662,41.739509519543766],[-87.52972061565191,41.739476730050725],[-87.52972605236029,41.739446196824915],[-87.52972505398856,41.73942047545748],[-87.52972478681839,41.73939567662416],[-87.52972469718726,41.73938737805105],[-87.52972469721121,41.73938737613022],[-87.52971876746768,41.739372522835524],[-87.52971286545544,41.73935773779313],[-87.52971143599855,41.73933464794015],[-87.52971127952162,41.739332122362214],[-87.52970930530314,41.73932524807334],[-87.52970436205266,41.73930803389359],[-87.52967973869067,41.739161178994024],[-87.52967493826773,41.73906421666354],[-87.52965754525441,41.73895462479024],[-87.5296504222815,41.73890453069417],[-87.52964329559009,41.73885441242138],[-87.5296358225577,41.73880142255703],[-87.5295880295789,41.73840879075918],[-87.52955759470747,41.7383225157056],[-87.52955761411418,41.738322457936576],[-87.52956874504906,41.738289305316556],[-87.52957060590332,41.73827035986827],[-87.52957201807374,41.73825598575922],[-87.52955755475543,41.73820527936778],[-87.52954774628469,41.73817539664873],[-87.529546640367,41.738172027964765],[-87.52954661248829,41.73817194242193],[-87.52953984118446,41.73812142650352],[-87.52954250059038,41.73811019511331],[-87.52954684124954,41.73809186472163],[-87.52953990539689,41.73805460373123],[-87.52953614610638,41.73803301215311],[-87.5295329646973,41.73801473506985],[-87.52952420092545,41.73799339745645],[-87.5295125166345,41.73796494758372],[-87.52951149233368,41.737945426778765],[-87.52951071095008,41.73793054856354],[-87.52951081752809,41.73792496959278],[-87.52951123943842,41.73790288914007],[-87.52950337105753,41.737877093905844],[-87.52950138294645,41.737870574901834],[-87.52949528723103,41.73785676436375],[-87.52948549033619,41.73783456823643],[-87.52949045581623,41.73778943312313],[-87.52949152365021,41.737779724938434],[-87.52949139365458,41.737775635017776],[-87.52949070752216,41.73775408881249],[-87.52949070754269,41.737754087166046],[-87.52948537203788,41.73770602481314],[-87.52947523852032,41.737663609598975],[-87.52947457911623,41.73766083927724],[-87.52946796170575,41.73763304176644],[-87.52946046060286,41.73761813821722],[-87.52945921316544,41.73761565934274],[-87.5294492629411,41.737595890297975],[-87.52943807852542,41.737568438448626],[-87.52943091814079,41.737550864878976],[-87.5294418269842,41.73751641814619],[-87.52944449011063,41.73751234996265],[-87.52945321903223,41.7374990160909],[-87.52944587973673,41.737435326277534],[-87.52944587939089,41.737435324628535],[-87.52944181910287,41.7373583736823],[-87.52944072620934,41.73734714622745],[-87.52943590834427,41.73729765551334],[-87.52943335835006,41.737260424373986],[-87.5294313835871,41.73723159619854],[-87.52942660349512,41.737177080105106],[-87.52942512792421,41.737160254887144],[-87.5294079581226,41.73707102805647],[-87.52940250817798,41.73700268449311],[-87.52939539492598,41.7369355082435],[-87.52938193249041,41.73681930257807],[-87.52937146800724,41.736754879836994],[-87.52936199340618,41.736696547866664],[-87.52934168831594,41.73659033626779],[-87.52933471787185,41.736553872508445],[-87.52932824660078,41.73645526803931],[-87.52931916984222,41.73631695804255],[-87.52930931894994,41.73623431301779],[-87.5293006551637,41.736161832416656],[-87.52929989640796,41.73615548502159],[-87.5292910677309,41.73609085032668],[-87.52927689582094,41.73605499232976],[-87.52925847425462,41.73603085130912],[-87.52925136088336,41.73602212678569],[-87.52924227141371,41.73601097893422],[-87.52925292023961,41.735982677356105],[-87.52925907423904,41.73597370346345],[-87.52927273573601,41.735953781566046],[-87.52927766135491,41.735942595400424],[-87.52928084305151,41.735935368861654],[-87.52927752828508,41.735897512146046],[-87.52927734709593,41.73589544222199],[-87.52926552062216,41.73586544627684],[-87.52925572174817,41.735842821723416],[-87.52924874662165,41.7358267168133],[-87.5292472682078,41.73581779159656],[-87.52924358291234,41.735795542983674],[-87.52923879809292,41.7357666567125],[-87.52922990128512,41.73570440852744],[-87.5292294065522,41.73568973154727],[-87.52922840390374,41.73565999521305],[-87.5292296467966,41.7356333742847],[-87.52923060356223,41.735612890635934],[-87.52922533206889,41.735586129988384],[-87.52922229956192,41.73557073517589],[-87.52921627143733,41.735539984503404],[-87.52921625319487,41.73553991961017],[-87.52921595576221,41.73553885658075],[-87.52917268025845,41.735330810458294],[-87.52915198062902,41.73517956859866],[-87.52913315939831,41.73504205206842],[-87.5291303256405,41.735024620722996],[-87.52912182774485,41.73497235031066],[-87.52912631312073,41.73495351241821],[-87.52912983190994,41.73493873344685],[-87.52914105098925,41.734920452026216],[-87.52914994497417,41.734897709930685],[-87.52914470308387,41.73488338557227],[-87.52913963480789,41.7348695352723],[-87.52912830398118,41.73485295638721],[-87.52912455870708,41.73484747614346],[-87.52912285716098,41.734822342873606],[-87.52912025234531,41.734783858553456],[-87.52911998137064,41.73477985271703],[-87.52911997952515,41.73477982443779],[-87.52912402607758,41.734737452985684],[-87.52911440645232,41.73470085896678],[-87.52910538502432,41.734663363239015],[-87.52910499278461,41.73465060524183],[-87.52910416025652,41.73462350764293],[-87.52910323271782,41.73459216119586],[-87.52909449239185,41.73454975540379],[-87.52909178687109,41.73451993277299],[-87.52909564476447,41.7344926544967],[-87.52909563867695,41.73449264320244],[-87.52908130551279,41.73446434295564],[-87.52907999149642,41.7344537563859],[-87.52907155141621,41.7343857595845],[-87.52906529918523,41.73433480897467],[-87.52906414290798,41.734316865205216],[-87.52906302816936,41.734299556484046],[-87.5290688017147,41.734283359670734],[-87.5290734309338,41.73427037446527],[-87.52908121987208,41.734257029094486],[-87.52908249088968,41.734254851054764],[-87.52908070403923,41.73424586741645],[-87.52907631983787,41.734223824388636],[-87.52907089811849,41.73420033800383],[-87.5290667958731,41.73418256598911],[-87.52905663612482,41.734151126925056],[-87.52905013276451,41.73411502206531],[-87.52904998920854,41.73411422411443],[-87.52904417181726,41.73407537947678],[-87.52904139476628,41.73404248354395],[-87.52903557020417,41.73400127793003],[-87.529031440687,41.73398052513338],[-87.52902967517394,41.733971653062],[-87.52901898107278,41.733941994325555],[-87.5290207171636,41.73392714771543],[-87.5290225078313,41.733911832211206],[-87.52902195800634,41.73390151663786],[-87.52902140946202,41.73389121589271],[-87.52902140948255,41.73389121424626],[-87.52901676792587,41.73387415032631],[-87.52901387788833,41.73386352665165],[-87.52900945133626,41.73384541042339],[-87.52902414292484,41.733815984547306],[-87.52902199618467,41.73380554308346],[-87.52902080865293,41.73379976734006],[-87.5290207924243,41.73379968791606],[-87.52900618470824,41.73379302622388],[-87.528984983772,41.73379593524215],[-87.52897858620992,41.733796812543304],[-87.52897845812062,41.733796771854216],[-87.52897177264853,41.73379464926111],[-87.528960996698,41.733791228516786],[-87.52895527562043,41.73376819119296],[-87.52895628896245,41.73376079525067],[-87.52895809677216,41.73374760094012],[-87.52896143082107,41.73373878734477],[-87.52896688542363,41.733733351465204],[-87.52896777467652,41.73373246524252],[-87.52898301956547,41.73372332338175],[-87.52899444225174,41.733718161721946],[-87.52900071176691,41.73371480239765],[-87.52899429333087,41.73370372810662],[-87.52899210412619,41.73369995033988],[-87.52925026124566,41.733015553935395],[-87.5292510080569,41.73301357365687],[-87.52925101031651,41.733013568732936],[-87.53072993367441,41.73240288943148],[-87.53073001874151,41.7324028543497],[-87.53135312991294,41.73214554961558],[-87.53286496938865,41.7315212336925],[-87.53375082601805,41.73114034931327],[-87.53592860129301,41.7302039405381],[-87.5367291300953,41.729859708544545],[-87.53725609509723,41.72962211577588],[-87.53941395633704,41.728793547030875],[-87.53951029684906,41.72874463562856],[-87.53963054268858,41.728935209930796],[-87.53972170036108,41.72908163064371],[-87.53977155143303,41.72916121682614],[-87.53987174762351,41.72935469692893],[-87.53987960142396,41.72938631042541],[-87.53990577976086,41.72949180399604],[-87.53994466622872,41.729718134834826],[-87.53994359659309,41.729842307358695],[-87.53994249075849,41.72993217578854],[-87.53999564512213,41.73000389478905],[-87.54012359372213,41.73015836629926],[-87.54010315638216,41.73021637406392],[-87.54009861454168,41.73026096514433],[-87.54009840966157,41.730325263121216],[-87.54009699697731,41.7304371110526],[-87.54010024644755,41.73061965734742],[-87.54011240283285,41.73093882183575],[-87.54012296499711,41.73138459761048],[-87.54013593231443,41.73192076023868],[-87.54014320766062,41.73204221802684],[-87.5401478334089,41.73211943083015],[-87.5399689846876,41.73213329278028],[-87.53996369301717,41.731893472476045],[-87.53995971311979,41.73169585465731],[-87.53995434346236,41.731425160621356],[-87.53994849699161,41.73111878701811],[-87.53994055396245,41.73087105848195],[-87.53993300630373,41.730628478240476],[-87.53992873999088,41.73037974568077],[-87.53992346031026,41.730213335878126],[-87.539805841795,41.73009589060335],[-87.53978005804234,41.730069984656446],[-87.53975472376773,41.73004476788479],[-87.53962040160094,41.730205411198995],[-87.53950000553374,41.7303507138354],[-87.53940603118548,41.73047012826352],[-87.53922708932318,41.730683976503556],[-87.53913445776055,41.730805800700665],[-87.53905874609926,41.73089240938001],[-87.53899250587925,41.730990746514905],[-87.53892248568332,41.73113571041507],[-87.53889109296333,41.73123051526138],[-87.53887562276819,41.731371054011916],[-87.53888105202364,41.73163660320454],[-87.53888941932745,41.731923784111],[-87.53889698463391,41.73216464929104],[-87.53889856836481,41.732221947632425],[-87.5389100208136,41.7325561460801],[-87.53891121841338,41.73294207265428],[-87.53891819769656,41.733156176758804],[-87.53892951642372,41.73342691188591],[-87.53893900351764,41.733697634610635],[-87.53894484970355,41.73389217767642],[-87.53959026064776,41.73388120128279],[-87.54024979620132,41.73386566715792],[-87.54028750434203,41.733870949502865],[-87.5403393075425,41.73387111493292],[-87.54088786684936,41.73386311792684],[-87.5411826309726,41.73385881961708],[-87.5415944296683,41.73385324933218],[-87.54184118698635,41.733849910821604],[-87.54228244584058,41.733844058002866],[-87.54264715682895,41.73383921356856],[-87.5428767332226,41.73383567446957],[-87.54298321452183,41.733834032850076],[-87.54298765094907,41.73393094833423],[-87.54303498995648,41.73565455083458],[-87.54303525021055,41.735662430700614],[-87.54303756183097,41.73586208764037],[-87.54304039824821,41.7360189680404],[-87.54305209743939,41.73622938463944],[-87.54305405949157,41.73645755906536],[-87.5430560656118,41.73668216893407],[-87.54306304889587,41.73688898794689],[-87.54307033849517,41.73707085400302],[-87.5430777596006,41.737242025855544],[-87.54308648098345,41.73738660583194],[-87.5430922069793,41.73740561411741],[-87.54310238782973,41.73742576887511],[-87.543118568613,41.737442617668336],[-87.54313920426242,41.73746061265605],[-87.54316143933704,41.73746969224162],[-87.5432033323856,41.737481745713986],[-87.54327472157898,41.73748223661148],[-87.54338418508554,41.73748298923534],[-87.54354128507453,41.73748050407947],[-87.54373645899685,41.73747828063454],[-87.54393163328054,41.73747605658607],[-87.54411728870285,41.73747376682407],[-87.54440288914158,41.73747216332488],[-87.5444755399681,41.73747159515338],[-87.5446456562039,41.73747026483615],[-87.5447836755559,41.7374712121335],[-87.54493597246375,41.73747225723259],[-87.5453117825699,41.73747852416454],[-87.54533479237939,41.73808692512787],[-87.545344449522,41.738558737453225],[-87.54535404260442,41.73898790255026],[-87.54535748387951,41.73915070670438],[-87.54536022889285,41.739280520650624],[-87.54522455215127,41.73928208714917],[-87.54489707163,41.73927492266239],[-87.54475697475411,41.73927533750432],[-87.54445945821571,41.739279273670995],[-87.54415474766986,41.73928296947557],[-87.54390324693699,41.73928601906741],[-87.54355227134967,41.73929173354124],[-87.54316838602456,41.73929798244509],[-87.5429482026626,41.73930188720434],[-87.54280967124522,41.739304343694315],[-87.54266439687447,41.73930691964676],[-87.54236469460689,41.73931156176412],[-87.54225467830118,41.73931326544855],[-87.54205640315142,41.7393173887646],[-87.54196806305052,41.73931738410565],[-87.54184957055416,41.7393231268156],[-87.54173535892023,41.73933535898571],[-87.54174254276886,41.739666332995384],[-87.54174484401774,41.73978621999838],[-87.54174978850973,41.74003400971695],[-87.54175598300242,41.740326210577905],[-87.5417611176669,41.74060923870125],[-87.54176610612562,41.74088331910352],[-87.5417720508537,41.7411440416035],[-87.54177391859665,41.7412259573458],[-87.54177544109976,41.74129272353295],[-87.54178102236257,41.74155133012337],[-87.5417866161237,41.74180892139655],[-87.54179533503232,41.742211844963784],[-87.5417971807193,41.74229726034677],[-87.5418054847265,41.74263253399008],[-87.54180762084859,41.74271817091171],[-87.541812685961,41.74296028035668],[-87.5418169912548,41.74318191261884],[-87.54181844304969,41.74325118878286],[-87.5418219811078,41.7434046742029],[-87.54182573949228,41.74356408937575],[-87.54183134272142,41.743806010665416],[-87.54183701993271,41.74404787756848],[-87.54184096725717,41.74421876492768],[-87.54184716447216,41.74448393450778],[-87.54185088664057,41.744643321683654],[-87.54185899192292,41.74473822054395],[-87.5418966720145,41.74477316805775],[-87.54195159151243,41.74477988567715],[-87.54217097191095,41.74477728005573],[-87.54245503729696,41.74477390246165],[-87.54267526098907,41.74477128356946],[-87.54274261915185,41.74477068941858],[-87.54293639371016,41.74476897943798],[-87.54304461350328,41.74476802430553],[-87.54339706268985,41.74476491329025],[-87.54350184603611,41.74476398816356],[-87.54365201714619,41.74476136250266],[-87.54388602615306,41.74475727041075],[-87.54426839302423,41.74475235207986],[-87.54478309177043,41.74474572983275],[-87.54486687549888,41.74474434593717],[-87.54547632591544,41.74473427709329],[-87.54595449287369,41.74472637519181],[-87.54607527734126,41.74472505379162],[-87.5466854034873,41.74471837649079],[-87.54729054793195,41.74471175078359],[-87.54735647882828,41.74471102862785],[-87.54790651644686,41.74470557185071],[-87.54850671151303,41.744699614481625],[-87.54859114878518,41.74469877597981],[-87.54911975646591,41.74469071965807],[-87.54958972354073,41.74468355512784],[-87.55032449574166,41.74467415068844],[-87.5507704148269,41.744668440969754],[-87.5509369885257,41.744666058833175],[-87.55141757027191,41.74465918496118],[-87.55149675891123,41.74465805256132],[-87.55159205076943,41.744656689652764],[-87.55190494826823,41.74465221424375],[-87.55211960652727,41.74464914256811],[-87.55276094205554,41.74463996346243],[-87.55293984466098,41.74463740201948],[-87.5532600397589,41.744632817432084],[-87.55337911404726,41.74463101926607],[-87.55397501171767,41.74462201835349],[-87.55399676470876,41.74586545262196],[-87.55400820907428,41.74644072937563],[-87.55402301898182,41.74718514530876],[-87.55403097918892,41.747720776918236],[-87.55404283975508,41.748259702296146],[-87.55405895599746,41.74899201653538],[-87.55406760748485,41.74955841625963],[-87.55407748341995,41.75007827378845],[-87.5540783989138,41.75012647674724],[-87.55408377553921,41.75040928603927],[-87.5540922468665,41.7508481568502],[-87.55410395991463,41.75145560441604],[-87.55410901864526,41.75180973552066],[-87.55407169199194,41.75189493623571],[-87.55394586244579,41.75189644365467],[-87.55354936592917,41.751901193113035],[-87.55350725038669,41.751901775289],[-87.55295163384284,41.751909456928686],[-87.55289931131233,41.75191018031556],[-87.55258488093037,41.75191452610186],[-87.55248063648598,41.751915966733044],[-87.5524357033497,41.75191658782046],[-87.55237662186002,41.751917403892],[-87.55228777089626,41.751918631738846],[-87.55228728193393,41.75191863856878],[-87.55181366150633,41.752179082108405],[-87.55132428458596,41.75247351433109],[-87.55097181498508,41.75268472071489],[-87.5505003027742,41.752967255404606],[-87.55016012940622,41.75316960679617],[-87.54964641102137,41.75347875312978],[-87.54874882993543,41.75401888800174],[-87.54870689655728,41.75409316417789],[-87.54773999381128,41.754530103850655],[-87.54656290319483,41.75387096526129],[-87.54526075778337,41.754362541628524],[-87.54494620222908,41.75443515578864],[-87.54399539346076,41.7551637557309],[-87.54397811710443,41.755152223510756],[-87.54397819520638,41.755151083792455],[-87.54397819522654,41.75515108214601],[-87.54397812084459,41.75515099107322],[-87.54397072108752,41.7551419471765],[-87.54396057464398,41.75513219998073],[-87.54395959372282,41.75513125771083],[-87.54395952815952,41.75513119469043],[-87.54395916863666,41.75513014719247],[-87.54395330032276,41.7551130395494],[-87.54395511728899,41.75510524259052],[-87.54395794196908,41.75509312068425],[-87.54395123660647,41.75507155494446],[-87.54395024827006,41.75506837657129],[-87.54395022041899,41.75506828664147],[-87.54393994938508,41.75505707368265],[-87.54393827161668,41.75505440842112],[-87.54393347809622,41.75504679354552],[-87.54394067493368,41.75502475168621],[-87.54395141101024,41.75501000652715],[-87.54396458884327,41.75499405034521],[-87.54396536151329,41.75499311490923],[-87.54396664572232,41.75499185751428],[-87.54398153464876,41.75497728194113],[-87.54399007585336,41.75497033717892],[-87.54399515733527,41.75496620570005],[-87.54400587897814,41.75496208854558]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7067133.42819","perimeter":"0.0","tract_cent":"1150228.33631138","census_t_1":"17031140600","tract_numa":"31","tract_comm":"14","objectid":"333","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930299.61077796","census_tra":"140600","tract_ce_3":"41.96465046","tract_crea":"","tract_ce_2":"-87.72303738","shape_len":"10633.108686"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72728139829887,41.96095390845037],[-87.72782817027088,41.96094683693973],[-87.72783795442186,41.96129084293931],[-87.72784864751966,41.96178471996809],[-87.7278657494388,41.962417240793066],[-87.72786930359845,41.96253117168583],[-87.72787819817265,41.96281565592971],[-87.72789349036938,41.96330475471264],[-87.72790843154463,41.963854059550414],[-87.72791481684813,41.96408891519508],[-87.72792586755692,41.96449492429837],[-87.7279282485846,41.96459405740254],[-87.72793757755306,41.96498246728741],[-87.72794815537824,41.96539541667992],[-87.72795586515171,41.965647540314464],[-87.72795837558313,41.96572963282186],[-87.7279672841241,41.96604704747372],[-87.72797718364139,41.96641748543051],[-87.72799677122502,41.967150429121524],[-87.72800970510659,41.967625300370386],[-87.72801404999636,41.967784706566604],[-87.72801939385819,41.96798075374051],[-87.72802755981601,41.968242304093955],[-87.7277065648686,41.96824630734842],[-87.72732006775342,41.96824928970809],[-87.72681402114445,41.96825382664701],[-87.72646671162013,41.96825693878974],[-87.72613057221193,41.96825807028993],[-87.72559668924083,41.9682672665984],[-87.72530182654354,41.96827234464494],[-87.72491340824561,41.968276214314535],[-87.72473298984004,41.96827805711242],[-87.7243854993741,41.96828122621338],[-87.72380258906293,41.96828654026846],[-87.72354346807815,41.96828950006919],[-87.7231425804645,41.968294359248034],[-87.72253294222303,41.96830174595299],[-87.72206758585298,41.968306870594255],[-87.72191776378521,41.96830836968128],[-87.72136955752954,41.96831385427933],[-87.72113544314195,41.9683166675186],[-87.72069654276395,41.96832212141727],[-87.72030883004821,41.968326938097015],[-87.72010355013872,41.96832916226105],[-87.7194758116577,41.96833492837797],[-87.71899111137122,41.96833937811857],[-87.71870647834665,41.96834155930934],[-87.7182549592642,41.96834840775841],[-87.71824503121402,41.967974657297056],[-87.71824126355278,41.9678922521844],[-87.71823874271469,41.96783711140731],[-87.71823071693701,41.96763934830858],[-87.71821700551642,41.96716493867562],[-87.71819627169256,41.9665292788011],[-87.71818545785344,41.9661977384392],[-87.7181812557655,41.96600005065363],[-87.71816811800392,41.96554633528213],[-87.71815600039584,41.96516241054988],[-87.71815298902739,41.965047357213415],[-87.71814366774659,41.96471061158878],[-87.71812682137717,41.96410200189552],[-87.71812049363852,41.96388454461844],[-87.71811800966952,41.96380201267999],[-87.71811572916093,41.96372623285838],[-87.71811033982817,41.963548790884765],[-87.71810368064756,41.963331358977655],[-87.71808656505601,41.962888993251475],[-87.71808333299532,41.96280545949473],[-87.71806894118517,41.96224907627108],[-87.71805819675785,41.961562005833365],[-87.71805746211378,41.96154240275058],[-87.71805721576732,41.96153582959695],[-87.71805692963605,41.96152819422094],[-87.71803973415345,41.96106935964465],[-87.71839726043353,41.961065720923244],[-87.71886007286575,41.96105969188191],[-87.71925693206721,41.96105387133685],[-87.71959078067869,41.96104897410456],[-87.71991712535535,41.96104542163397],[-87.72048980535197,41.96103878886693],[-87.7207879473035,41.96103533473984],[-87.72111741694994,41.96103179580432],[-87.72170327237598,41.96102369460006],[-87.72195530932879,41.96102020722981],[-87.7223899725875,41.96101642895628],[-87.72292928637896,41.96100864708064],[-87.7234516295911,41.96100110786331],[-87.7238856893886,41.9609950430259],[-87.72391179681205,41.960994732111146],[-87.72415824625021,41.96099179805398],[-87.72459192343523,41.960986633007586],[-87.72538054845575,41.96097765141132],[-87.7254914239657,41.96097638806963],[-87.72600445188753,41.96097114491835],[-87.72660448548207,41.96096273805145],[-87.72669907801259,41.96096141246278],[-87.72684627873682,41.96095934936135],[-87.72728139829887,41.96095390845037]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4378190.37946","perimeter":"0.0","tract_cent":"1184543.2060074","census_t_1":"17031411300","tract_numa":"13","tract_comm":"41","objectid":"323","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867102.04404464","census_tra":"411300","tract_ce_3":"41.79049376","tract_crea":"","tract_ce_2":"-87.59886052","shape_len":"9240.13354534"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.600814979128,41.78593125662235],[-87.60119051225412,41.78592840704843],[-87.60119625764088,41.78613624287558],[-87.60119746556694,41.78625889268468],[-87.60120282478184,41.78646796206471],[-87.60120754781875,41.786652185565124],[-87.60121102892496,41.7868103060129],[-87.60121552072441,41.78701492108437],[-87.60122015301711,41.787180214460705],[-87.60122710042086,41.7874281195199],[-87.60122894097854,41.78755637167397],[-87.60122931984965,41.78774838043281],[-87.6012298727175,41.78802880620033],[-87.6012345384431,41.78822142981417],[-87.60123841210094,41.788396622168655],[-87.60124251435913,41.78864840894617],[-87.60124751057822,41.788905388106485],[-87.60125165716215,41.789092080729134],[-87.60125848118585,41.789401158024475],[-87.6012623377348,41.78956687202667],[-87.6012639112667,41.78963448254383],[-87.60126687973982,41.78976200252661],[-87.60127433954791,41.790066775312134],[-87.6012815770442,41.790374977018864],[-87.60128721824435,41.79065589036155],[-87.60129235151638,41.790923435795094],[-87.60129696858013,41.79116863946332],[-87.60130076076109,41.791393201131925],[-87.60130264299606,41.79150468589542],[-87.60130525726989,41.79160146569141],[-87.60131155828383,41.79182659191208],[-87.60131691170125,41.79203612456052],[-87.6013221806702,41.792256304479096],[-87.60132719235997,41.792476537909835],[-87.60132849624921,41.79253275735379],[-87.60133299860112,41.79272685317967],[-87.60133724683533,41.79289494009208],[-87.60134072156093,41.79303428943715],[-87.60134310290628,41.79321223754815],[-87.60134563689013,41.793401588020004],[-87.60134949797197,41.79356506205215],[-87.6013548086437,41.7937686667157],[-87.60135964431255,41.79394317895959],[-87.60136536990841,41.79415221993088],[-87.60137077585014,41.794344299198116],[-87.60137614101255,41.794530231008615],[-87.60137929594062,41.794697762045246],[-87.6013625732459,41.794933059939225],[-87.60130998605767,41.79501472452065],[-87.60083959625618,41.795019574186604],[-87.6005057952202,41.795023702488756],[-87.60024971199473,41.795027008002094],[-87.59977728491356,41.79503156643705],[-87.5994550835339,41.795034667769364],[-87.5991208812721,41.795038624552],[-87.59877181146086,41.79504388487735],[-87.59846991936323,41.79504763472323],[-87.59809822759794,41.7950507317882],[-87.59784210365082,41.79505286507892],[-87.59765242938157,41.795055356410714],[-87.59746850397067,41.79505777228849],[-87.59730071375091,41.795059085691804],[-87.59715038071934,41.79506026209416],[-87.59654415960411,41.79506623050287],[-87.59654162899292,41.794889891208484],[-87.59653507927972,41.79470290878213],[-87.59652975753771,41.794504737558775],[-87.59652524306853,41.79431299312423],[-87.59652149724926,41.79411494176642],[-87.59651723389678,41.79393005963283],[-87.5965107031325,41.79367419583167],[-87.59650443204045,41.79345329555743],[-87.59650023000626,41.793267419816814],[-87.59649669187385,41.79311092449238],[-87.59649206905952,41.79292861964545],[-87.59648707223013,41.792702129454845],[-87.59648288337952,41.792475534666586],[-87.59647838826871,41.79225964060528],[-87.59647139420309,41.79201546439962],[-87.59646634886882,41.791818831653615],[-87.59646141816748,41.79161539381566],[-87.59646031750027,41.791570490294724],[-87.59645722977258,41.79144678375613],[-87.59645084191862,41.79119089523809],[-87.59644866333623,41.791080149458246],[-87.59644577246517,41.79092914047938],[-87.59644231829014,41.790772886302996],[-87.5964393610201,41.79064048312816],[-87.59643372664266,41.79040564613687],[-87.59643017581142,41.790254632906816],[-87.59642621484763,41.79009140498189],[-87.596420947937,41.78988211960225],[-87.59641499722758,41.78962349173015],[-87.59640997985338,41.78940542211049],[-87.59640739918491,41.78923053981051],[-87.59640402632431,41.78907360003839],[-87.59640086807323,41.78894591570284],[-87.59639655972923,41.788771406505745],[-87.59639235323307,41.78858474050475],[-87.59638800301529,41.78841075271635],[-87.59638392492808,41.78824178843367],[-87.59637894138396,41.78802698879281],[-87.59637240288623,41.787804623056495],[-87.59636725129462,41.78762937678861],[-87.59636632148676,41.78755368346211],[-87.59636483239085,41.78743717903786],[-87.59635844597138,41.787234517942245],[-87.5963514664459,41.787013019009215],[-87.59635016195698,41.78689640598693],[-87.59634876696468,41.78676848592871],[-87.59634371831739,41.786519781547874],[-87.5963395546845,41.78631463189157],[-87.59633224554851,41.78601361514884],[-87.59658165203024,41.785986184505276],[-87.59692910541106,41.78596979862135],[-87.59711019663156,41.78596730913978],[-87.59726042104961,41.785968032474834],[-87.59746302436444,41.78596644894448],[-87.59768044735468,41.78596435621542],[-87.59794605337164,41.785962043796154],[-87.59802979205858,41.785961314417875],[-87.59824532309825,41.78595943738321],[-87.59868897974603,41.785954316952775],[-87.59903985540377,41.78595035814695],[-87.5994134984218,41.78594668093715],[-87.59958637798898,41.78594502012227],[-87.59984244002119,41.785942559756016],[-87.60020827841785,41.78593836360055],[-87.60055072115121,41.785934346362716],[-87.600814979128,41.78593125662235]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2147855.78973","perimeter":"0.0","tract_cent":"1176696.85742059","census_t_1":"17031381700","tract_numa":"12","tract_comm":"38","objectid":"324","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872527.9080992","census_tra":"381700","tract_ce_3":"41.80556319","tract_crea":"","tract_ce_2":"-87.62746747","shape_len":"6909.70628614"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62870375116418,41.80189560209128],[-87.62879823732874,41.80189303448802],[-87.6288080799678,41.80224938221934],[-87.62882184782877,41.80266659714665],[-87.62883009615192,41.80275069129007],[-87.6288460502764,41.802884572752895],[-87.62889649652843,41.803134268495704],[-87.62891067454562,41.80322114326867],[-87.62891496210848,41.803290119574726],[-87.6289210116558,41.803365624347414],[-87.62892825380081,41.80362534616187],[-87.62893259385058,41.80381507105717],[-87.62893973403925,41.80416775466859],[-87.628955998237,41.804650161366425],[-87.62896479201908,41.80501932073553],[-87.6289676331017,41.80513665577946],[-87.6289777079112,41.805639949836994],[-87.62898823112907,41.80597687420675],[-87.62899716024265,41.806249984873354],[-87.62901097876838,41.80670459058631],[-87.62902059560895,41.80708233073485],[-87.62902477886473,41.80724461150605],[-87.6290171052901,41.80740098825989],[-87.62899001891151,41.8076135036598],[-87.62896630722388,41.8077690962646],[-87.6289662321867,41.80785965722031],[-87.62898121943003,41.8083331366059],[-87.62898263585996,41.80837122213107],[-87.62897917871581,41.80847754165596],[-87.62899232114667,41.808826488406154],[-87.62900916419451,41.80896311943626],[-87.62901287389712,41.80908491944936],[-87.62901591397106,41.809183601137526],[-87.62896432357367,41.80918442614779],[-87.62883261404436,41.809186532318556],[-87.62873678994869,41.809188139733976],[-87.6285760979435,41.809190835132235],[-87.62818673785992,41.809197364821294],[-87.6276082923987,41.809207063505696],[-87.62724804444714,41.80921474198462],[-87.62717255988007,41.809216350996174],[-87.62676382299136,41.80922506138418],[-87.62608506661246,41.8092364224165],[-87.62607743243154,41.80897080631557],[-87.62606764185082,41.80860035105419],[-87.62606031381486,41.80833302300752],[-87.62605779987923,41.80824131136841],[-87.6260449079302,41.807829398658065],[-87.62603220772131,41.80741553866127],[-87.62602327978345,41.80712461748702],[-87.6260157900011,41.806778518011185],[-87.62600812486288,41.80648167721495],[-87.62599853750775,41.80615952232749],[-87.62599335152365,41.805978026407374],[-87.62598934756303,41.80583789100702],[-87.62598391627674,41.80562841565345],[-87.62598222436469,41.80556315508925],[-87.62598066878601,41.80550317315908],[-87.62596970761493,41.80507255588605],[-87.62595333100582,41.80441067233735],[-87.62595106609015,41.80432845298058],[-87.62593691867106,41.80381484465225],[-87.62593349431785,41.80369052173414],[-87.62593265085187,41.80365990246379],[-87.62591094402967,41.80279243941824],[-87.62590346191018,41.80249902988919],[-87.6258939507983,41.802136644106426],[-87.62588976266044,41.801945797855375],[-87.62611153132815,41.801941685266975],[-87.62658307537616,41.80193852279686],[-87.62672373321601,41.80193556723882],[-87.62687152767947,41.80193246165231],[-87.62721247458916,41.801925296549676],[-87.62776020290592,41.80191472116572],[-87.62798418284311,41.80191155297052],[-87.62801220780071,41.80191115643228],[-87.62804023238833,41.801910760159366],[-87.62826072716216,41.801907640554745],[-87.62852804120327,41.80190037688203],[-87.62870375116418,41.80189560209128]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9617561.40451","perimeter":"0.0","tract_cent":"1178222.02723326","census_t_1":"17031320100","tract_numa":"67","tract_comm":"32","objectid":"325","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901484.34857464","census_tra":"320100","tract_ce_3":"41.88498719","tract_crea":"","tract_ce_2":"-87.62099291","shape_len":"13449.0433617"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6227136852292,41.88883592240832],[-87.62231739229748,41.88878871582174],[-87.62120026804494,41.888655636040326],[-87.62063763648828,41.888596443057885],[-87.62058173992428,41.888590562381765],[-87.62054535093003,41.888586733884395],[-87.62046451667754,41.88857822909424],[-87.61940299469937,41.88846654010993],[-87.61908447877045,41.88843302816882],[-87.61819990569197,41.88833089832216],[-87.61809829990791,41.888316516899835],[-87.61801183558367,41.8883110387108],[-87.61762653875854,41.88831907600653],[-87.61725531646002,41.88832830515323],[-87.61707532257311,41.88834158796056],[-87.61692168332763,41.88835292568239],[-87.61584971764792,41.88839074468882],[-87.61531893364753,41.88841981576887],[-87.61526597329521,41.888422716235254],[-87.61455102961222,41.88841426652387],[-87.61442515410702,41.88841163773798],[-87.61417136337442,41.88841004864815],[-87.61417130645373,41.88841004829168],[-87.61397431379372,41.888408814451545],[-87.61397271543152,41.88834619904025],[-87.6139674964175,41.88814170250068],[-87.6139545622524,41.887936707293726],[-87.61394486744403,41.88778306060377],[-87.61394154674142,41.88773042561855],[-87.61393683691738,41.88767653000904],[-87.61392541120509,41.88754577450872],[-87.61391144964064,41.88746549490944],[-87.61390800522878,41.88744568901854],[-87.61388035133308,41.88728667513128],[-87.61384899616993,41.88710637787868],[-87.6138395082541,41.88705182224613],[-87.6138089376425,41.88683393025361],[-87.61378316858254,41.88662998162178],[-87.61378213532286,41.88661821745639],[-87.61375949459165,41.88636040391054],[-87.61374547522499,41.886245193318736],[-87.61372816584357,41.886102945896745],[-87.61366832312471,41.885904234026015],[-87.6136650574029,41.8858814125005],[-87.6136546019465,41.88580835268529],[-87.61364989811796,41.88577548564044],[-87.61363988848822,41.885705537565215],[-87.61362285685576,41.88557931244991],[-87.6136074424591,41.88546507606996],[-87.61359429467912,41.88533971804277],[-87.6135815523393,41.885218224246344],[-87.61358155169111,41.885218216558414],[-87.61357759369783,41.885124109343046],[-87.61358386084008,41.88501411998604],[-87.6135886607839,41.88492988654756],[-87.61361620998095,41.88476570669829],[-87.6136615701409,41.8846214987954],[-87.61368921469023,41.884533613499606],[-87.61375657288339,41.88438960185663],[-87.61375661781967,41.88438952447622],[-87.61385197783879,41.88422538881318],[-87.61404249510461,41.883983360293975],[-87.61422975432457,41.883802507600635],[-87.6144095692691,41.88366321094775],[-87.61447886244147,41.88362088452285],[-87.61457506160667,41.88355667237353],[-87.61484375204662,41.8834166411929],[-87.61512269260108,41.88331223911498],[-87.61524576412494,41.88326562120873],[-87.61539751519192,41.883208139371845],[-87.61578656481653,41.883069434651084],[-87.61608044046456,41.882959140834885],[-87.61620299275788,41.882897094375345],[-87.61631447571571,41.88284065156505],[-87.61646124873421,41.8827492516225],[-87.61660679710717,41.88264253098302],[-87.6167615697268,41.88250227820546],[-87.61690256357122,41.8823427570107],[-87.6159841113293,41.88236621205415],[-87.61599520901737,41.88236146194042],[-87.6160244337079,41.882346711701544],[-87.61606153643025,41.882327984585054],[-87.6161244143263,41.88229097329356],[-87.61618347409211,41.88225061786645],[-87.61620876534738,41.88223061660936],[-87.61623845661076,41.88220713540754],[-87.6162867824613,41.88216279796508],[-87.61628899044219,41.882160771957196],[-87.61631839079557,41.88212934296784],[-87.61633485245704,41.88211174511854],[-87.61633485357396,41.8821117437534],[-87.61634832996039,41.88209530756148],[-87.61636132333679,41.88207947235983],[-87.6163849384622,41.8820441320909],[-87.6163993800792,41.88202252024267],[-87.61643209530286,41.881963750461324],[-87.61645931937245,41.881903409891216],[-87.61647489525147,41.88185896698917],[-87.61648090248102,41.881841826635615],[-87.61649676777064,41.88177927464204],[-87.61650554406398,41.881726694602264],[-87.61650554309207,41.88172665013949],[-87.61650553036665,41.88172614594294],[-87.61650439843734,41.881681380027366],[-87.61649765787487,41.881413774967264],[-87.61649758626658,41.881413775069134],[-87.61634103221897,41.88141435673955],[-87.61575364780822,41.88141653754756],[-87.61574859732617,41.8812804470485],[-87.61573466557631,41.880904725742056],[-87.6165859161754,41.880862005521905],[-87.6174888170825,41.88086386365933],[-87.61748845649497,41.88088998494658],[-87.61748807413792,41.88091766180866],[-87.61759881635228,41.88091629223514],[-87.618245772015,41.88090828906407],[-87.6186026099544,41.88090348523275],[-87.61884461394845,41.88090043571074],[-87.61905704549875,41.88089807935631],[-87.61914119533442,41.88089692598893],[-87.6197238003422,41.880888942921075],[-87.62031875583088,41.8808793288563],[-87.62079144294141,41.88087336971859],[-87.6213966772128,41.88086573646042],[-87.62201138755962,41.88085950173983],[-87.62247106746375,41.880852603306266],[-87.6225632418688,41.88085121993474],[-87.62296832581606,41.88084512566302],[-87.62309129617874,41.880843275113165],[-87.62326335162349,41.8808406854058],[-87.62369040190137,41.88083570602136],[-87.62424580936667,41.880829247638935],[-87.62433535379384,41.880827293366394],[-87.62434047291094,41.88114228466169],[-87.62434589424201,41.881425290098235],[-87.62435401115944,41.88168549187085],[-87.62436280454523,41.88199498987687],[-87.62436591106253,41.882110339103825],[-87.62479615494081,41.88210413439072],[-87.62492809429881,41.88210223128705],[-87.62524593709192,41.882097660228474],[-87.62533705882363,41.882096354311734],[-87.62554850090022,41.88209332343115],[-87.62578062121301,41.8820899513997],[-87.62614296924508,41.88208310512747],[-87.62621475895172,41.88207990586017],[-87.62632702700247,41.88207490279339],[-87.62666128198927,41.88207720713465],[-87.62699022374008,41.88207200552671],[-87.6271385308017,41.8820696599396],[-87.62759392628614,41.88206244298473],[-87.62780610569516,41.882042039505784],[-87.62783252252493,41.88216470502892],[-87.62784902938718,41.88249683251977],[-87.6278530045836,41.88261453770594],[-87.62785697922932,41.88273222724405],[-87.62786694260494,41.883065000288],[-87.62786972953204,41.88321808927094],[-87.62787239053239,41.883364265830174],[-87.62788678877641,41.88372791162457],[-87.62789113011897,41.883853604226495],[-87.62789806874821,41.884054490438125],[-87.62790768831574,41.88436179473696],[-87.62791068087708,41.884490792161095],[-87.62792168862566,41.88496525692943],[-87.62792580614769,41.88512412654446],[-87.62792988710406,41.88528158100008],[-87.62794001090506,41.88574881907923],[-87.62794179092302,41.88583097829227],[-87.62794725419496,41.8860831155784],[-87.62795252880422,41.88630079337215],[-87.62795425063082,41.8863718525929],[-87.62796219047705,41.88669835612582],[-87.62797500424247,41.886813654204374],[-87.62798998849823,41.88695909873346],[-87.62799197425439,41.88706419389986],[-87.62799744413638,41.88737294208554],[-87.62800209575349,41.88747256459074],[-87.62761676633806,41.88751182185326],[-87.6275043023137,41.88755559063024],[-87.62743072777661,41.887584224032004],[-87.62726496352207,41.88765974178636],[-87.62703825648659,41.88781172318598],[-87.62691277530298,41.8878834643017],[-87.6268609282429,41.88791617007202],[-87.62681750424973,41.88794356210473],[-87.62659753472042,41.888091503666246],[-87.62635599012756,41.88824487427602],[-87.62606836170013,41.888440770679445],[-87.62598714710415,41.88850530891494],[-87.62566445653798,41.88867667436525],[-87.62529215783884,41.888837964926786],[-87.62519042921976,41.88887026714523],[-87.62509444358868,41.88890540518805],[-87.62496824493152,41.88890284331986],[-87.62473020921372,41.88889423945441],[-87.6246326954486,41.88888153560525],[-87.62451399603988,41.88888165371317],[-87.62444186154877,41.888872125014046],[-87.62437192112782,41.88885731123957],[-87.62418745710612,41.88882269475295],[-87.62403204478557,41.88881833207407],[-87.62385808886269,41.88889332776509],[-87.62360708350971,41.88890516861963],[-87.62331815746,41.88888225195417],[-87.6227136852292,41.88883592240832]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5257049.32797","perimeter":"0.0","tract_cent":"1159141.27232631","census_t_1":"17031301200","tract_numa":"20","tract_comm":"30","objectid":"326","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888004.93575944","census_tra":"301200","tract_ce_3":"41.8484116","tract_crea":"","tract_ce_2":"-87.69143048","shape_len":"9361.9332667"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68776013628064,41.847887652576524],[-87.68769524114609,41.846883515229976],[-87.68768022862865,41.84665121492812],[-87.68767403975902,41.846555456422884],[-87.6876683832575,41.846467929579504],[-87.68762852988908,41.84585125029838],[-87.6875602695139,41.84479497867857],[-87.68759066395374,41.84479461361198],[-87.68766767761721,41.844793688163016],[-87.68779556866762,41.84479215097789],[-87.68781050803587,41.84479197121886],[-87.68788384138279,41.84479093245873],[-87.6880084166019,41.84478916728979],[-87.68832762476048,41.84478431126556],[-87.68860467667929,41.84478087251344],[-87.6889379461404,41.84477818704741],[-87.68927835016625,41.84477400410856],[-87.68958148685468,41.84476780007404],[-87.69000968227046,41.844759688729646],[-87.69033863097265,41.84475595961991],[-87.6907372095193,41.84475143967059],[-87.6910129101621,41.844747273765336],[-87.69119111283094,41.84474519663488],[-87.69149187888128,41.844741142271545],[-87.69179719853717,41.844736848831396],[-87.69211059271164,41.844732441314626],[-87.6923375084015,41.844729234503745],[-87.69253161630348,41.844725762154845],[-87.69279112798466,41.844721934702775],[-87.69307299438184,41.844717776832155],[-87.69327622350364,41.84471602807109],[-87.69369750296721,41.8447130785357],[-87.6939161154555,41.84471078313108],[-87.69409560817418,41.844708132379964],[-87.69431570433028,41.84470422535653],[-87.69466051384656,41.84470115855899],[-87.69466421627266,41.844829351080236],[-87.69466465175017,41.84484442335121],[-87.6946698300657,41.84502518824948],[-87.69467484355319,41.84518902121737],[-87.69467987151037,41.84535878186988],[-87.69468649478634,41.84557479222485],[-87.6946905149339,41.84570566105171],[-87.69469530322613,41.845888455605916],[-87.69469870701161,41.84602225735976],[-87.6947037978387,41.84618570653163],[-87.69470700485873,41.84627655946888],[-87.69471104968154,41.846458390750776],[-87.69471430965076,41.846604923698806],[-87.6947185554736,41.846805333374355],[-87.69472323858321,41.84697657396237],[-87.69472518312858,41.847044285733446],[-87.69472895854462,41.84717641552604],[-87.69473513275523,41.847349036799024],[-87.69474260607018,41.847546033790714],[-87.69475578367953,41.84763076755121],[-87.69479046052197,41.84769789290328],[-87.694822896578,41.84773934693463],[-87.69486507702635,41.84777904391234],[-87.6949083413815,41.84780936152239],[-87.69501664063975,41.84785464004862],[-87.69513414265352,41.84788243349877],[-87.69533340070309,41.84788259786777],[-87.69533844990897,41.84803914106894],[-87.69534461022252,41.8482641227293],[-87.69534787550431,41.84838337877865],[-87.69535450884774,41.848598620648524],[-87.69535765678954,41.8487148024657],[-87.69536098087455,41.848837489708224],[-87.69536847914861,41.849069119607286],[-87.69537130362063,41.84917242464004],[-87.69537636703937,41.84935758531796],[-87.69538113694468,41.84957199352144],[-87.69538242013256,41.84962518416125],[-87.69538415266088,41.84969698393758],[-87.6953904690427,41.849851795362305],[-87.6953982591666,41.85007989140852],[-87.69540003497772,41.85013189596577],[-87.69540457136249,41.85026472007629],[-87.6954088989955,41.85047193609928],[-87.6954118956571,41.8506099341866],[-87.69541741373796,41.85078230442143],[-87.69542435662645,41.85098467898157],[-87.69542822896067,41.851097570287656],[-87.69543174498398,41.85125349126642],[-87.69543441247858,41.851391377736],[-87.69543558841248,41.85144650328994],[-87.69543809362374,41.851563929842555],[-87.69544059788146,41.85167761102078],[-87.6954456288556,41.85190201298709],[-87.69515087018668,41.851904680725276],[-87.69498992205374,41.8519080947879],[-87.69474286166236,41.85191182570132],[-87.69446570770891,41.851915114265736],[-87.6942095958113,41.85191730135377],[-87.69397147225271,41.851919334439884],[-87.69366793531545,41.851925520335904],[-87.69340605701701,41.85192815046847],[-87.69321502352955,41.85193032415065],[-87.692993869855,41.85193568362431],[-87.69283848798787,41.85193944897884],[-87.69265376404987,41.85194198622462],[-87.69245502128594,41.85194428029334],[-87.69210210340016,41.851948100856006],[-87.6918629800665,41.85195088195271],[-87.69158456866346,41.851955089588806],[-87.69128905236884,41.8519593381451],[-87.69103407640479,41.8519617267529],[-87.69082649038344,41.85196374928157],[-87.6905425539266,41.85196936257295],[-87.69018164280844,41.851976495862885],[-87.6899178430642,41.85198036964045],[-87.68960672929359,41.85198438927468],[-87.68931904480165,41.85198724964157],[-87.68888256512034,41.851993143883774],[-87.68864786014959,41.852001870678734],[-87.68836561064826,41.85200810716142],[-87.68824257398286,41.85200830750441],[-87.68787474362856,41.85200933535459],[-87.68783284062083,41.85018353805788],[-87.68783068094291,41.85008942357273],[-87.6878178690451,41.84953116258898],[-87.6878003981831,41.84876988948897],[-87.6877911719409,41.848367862327905],[-87.68776013628064,41.847887652576524]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"449213.113137","perimeter":"0.0","tract_cent":"1160740.68886972","census_t_1":"17031281000","tract_numa":"2","tract_comm":"28","objectid":"327","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900291.74369153","census_tra":"281000","tract_ce_3":"41.88209483","tract_crea":"","tract_ce_2":"-87.68522007","shape_len":"2681.4680035"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68401259568905,41.88302846643661],[-87.68400270904942,41.88278986950923],[-87.68399640750138,41.882575662288374],[-87.68398950119811,41.882342592637556],[-87.68398207574522,41.88211604530819],[-87.68397275221021,41.88183157432665],[-87.68396811768348,41.8816473543597],[-87.68395920202339,41.88139634268106],[-87.68395308685575,41.88128705967945],[-87.68395997484052,41.881200549232936],[-87.6847673988077,41.88118754009244],[-87.68643116151189,41.88116173395066],[-87.68643594806514,41.881301072558344],[-87.68644214889424,41.88162319989446],[-87.68644800037185,41.88184172942352],[-87.6864573650759,41.88208534384914],[-87.68646522125155,41.88228971474094],[-87.68647067211525,41.88248837392554],[-87.68647220665156,41.88254073728156],[-87.68647944152353,41.882787600940425],[-87.68648456595453,41.88299620313855],[-87.68624578642309,41.88299410628146],[-87.68607151585242,41.882996280064596],[-87.68549360201048,41.88300460206264],[-87.6852295312218,41.883008106589244],[-87.68466784351132,41.883016927640014],[-87.68422896400858,41.883024958263746],[-87.68401259568905,41.88302846643661]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5164163.96674","perimeter":"0.0","tract_cent":"1148077.3641119","census_t_1":"17031261000","tract_numa":"27","tract_comm":"26","objectid":"328","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896260.15218941","census_tra":"261000","tract_ce_3":"41.87128469","tract_crea":"","tract_ce_2":"-87.73182381","shape_len":"11665.4921432"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73277271238979,41.87350413271081],[-87.73276859272036,41.87334877523543],[-87.73249696601845,41.873355978284266],[-87.73234772986407,41.873357886787],[-87.73207144180472,41.87336094119685],[-87.73175497020969,41.87336559566525],[-87.73154132816968,41.87336789652402],[-87.73128185927715,41.873370690567555],[-87.73099057713033,41.873375173110375],[-87.73077707290204,41.873378471354556],[-87.73045611468156,41.87338386709357],[-87.73031257058622,41.87338613516073],[-87.73011716540223,41.87338922259859],[-87.72990867374304,41.87339048709286],[-87.72967961014945,41.87339285082368],[-87.72954425535059,41.873394499336214],[-87.72927647365978,41.87339879921367],[-87.72909745165747,41.873401526518556],[-87.72885468030991,41.87340522428279],[-87.72860996584392,41.87340857375906],[-87.72844346969751,41.8734107704972],[-87.72834908009477,41.873412072160114],[-87.72826202679187,41.87341327244111],[-87.72798092338027,41.87340907425535],[-87.72787944089187,41.87341269600615],[-87.72785488869211,41.87341357233343],[-87.72763052396564,41.873421579447815],[-87.72736245588311,41.873425077243645],[-87.727054545969,41.873428968099276],[-87.72669816170708,41.87343367261822],[-87.72626551090104,41.87343890540635],[-87.72594912755295,41.87344195294807],[-87.7258290961054,41.87344224342718],[-87.72541255190315,41.87344325109816],[-87.72540880353083,41.87333289119859],[-87.72540527320602,41.87299575185275],[-87.72540040834456,41.87253108550741],[-87.72539847264808,41.87234622297034],[-87.72539722837084,41.872304448861904],[-87.72539245559891,41.872144269022975],[-87.72539017029709,41.87208542042594],[-87.72538091457139,41.87184719747286],[-87.72538085251152,41.87184560986861],[-87.72537226635227,41.87162445558526],[-87.72536542022767,41.87144812854405],[-87.72536386696159,41.87139339991961],[-87.72535919949634,41.87122893957719],[-87.72535717608687,41.871172836060815],[-87.7253528027842,41.87105157208629],[-87.7253486751324,41.87093972219757],[-87.72534064399827,41.870722087576276],[-87.72533466109572,41.87055995286523],[-87.72533250593922,41.87048513311155],[-87.72532905479353,41.87036505375831],[-87.72532609350911,41.87026127840992],[-87.72532299107769,41.87015256155845],[-87.72531795134097,41.87002550338385],[-87.72530921644287,41.86980528540201],[-87.72530328382138,41.869655719886346],[-87.72530065427567,41.86955650119334],[-87.72529968727899,41.86951999749907],[-87.72529459664507,41.869327845614094],[-87.72528713642471,41.869088781328315],[-87.72566885038765,41.86908507605138],[-87.72583412995739,41.86908347074106],[-87.72607896742598,41.86908095108271],[-87.72636794253576,41.86907764990405],[-87.72660103644986,41.869074544560746],[-87.72683639122687,41.86907307089143],[-87.72707308373549,41.869069902364004],[-87.7273261167949,41.86906646282106],[-87.72745349632699,41.8690647199508],[-87.72771797989209,41.86906128204823],[-87.72794457810129,41.86905833593788],[-87.72823670904422,41.86905526513432],[-87.72849674810178,41.86905246366051],[-87.72882020836798,41.8690481019097],[-87.72908036228536,41.86904483319562],[-87.72936463985494,41.86904133400676],[-87.72959321824526,41.86903819994023],[-87.72982179330323,41.869035339826596],[-87.73007500868216,41.86903200495451],[-87.73016173510051,41.86903131474913],[-87.73039077802109,41.86902949191611],[-87.73061911945973,41.86902808344362],[-87.7307731855042,41.86902689681016],[-87.7312116418895,41.869021833581556],[-87.73138451719977,41.869019391823464],[-87.73169330159581,41.86901392968287],[-87.7319619090233,41.86900965590864],[-87.73213519095458,41.86900691328161],[-87.73257763294319,41.868998937856006],[-87.73258420049832,41.86917660752053],[-87.73259193935658,41.86937744481185],[-87.7325955434211,41.86946530778986],[-87.7326009068625,41.869596071838075],[-87.73260448800131,41.86975473562399],[-87.73260909770092,41.86993859731137],[-87.7326128280058,41.87008741054536],[-87.7326211723878,41.87027068802082],[-87.7326285128438,41.87045527748061],[-87.73263215460916,41.87053531978991],[-87.73263862202562,41.870677477690386],[-87.73265223024272,41.87092203441554],[-87.73267288937839,41.870976827207436],[-87.73283028827605,41.87093520495562],[-87.73306379056585,41.870869520756315],[-87.73334120747403,41.87079171637376],[-87.73358262169086,41.870723986818184],[-87.73394983917106,41.87062307208336],[-87.7341520756827,41.870567243674046],[-87.73452195368041,41.87046431490273],[-87.73478559075592,41.87039134738545],[-87.73511155366718,41.870301575119505],[-87.73534281845502,41.87023788258848],[-87.73570223461604,41.870138270962855],[-87.73580796263417,41.87010876081568],[-87.73594894139758,41.87006941137309],[-87.73609952245445,41.87002754032628],[-87.73622078675312,41.8699938213214],[-87.7364345928537,41.86993288050562],[-87.73652563333603,41.869906931141145],[-87.73670593875428,41.869858088851814],[-87.73683794769548,41.86982232922479],[-87.73693720409504,41.869794942777894],[-87.7370548658585,41.86976247833891],[-87.73716401185067,41.86973210487785],[-87.73725496615623,41.86970679334857],[-87.73735885216564,41.86967808039186],[-87.7375264891903,41.86963173831913],[-87.73754582749531,41.86962634327311],[-87.73771696628265,41.869578599484875],[-87.73775532257326,41.86956789904776],[-87.7378508451464,41.86954125013432],[-87.73820688922024,41.8694401861506],[-87.73827795446833,41.869420435158446],[-87.73847655712697,41.869365238081436],[-87.73868238654254,41.86930736949977],[-87.73869057471592,41.86930506720523],[-87.7389005752265,41.86924653019699],[-87.73902932224189,41.869210642213474],[-87.73907593664916,41.86919764843264],[-87.7392549034889,41.86914806001791],[-87.73936026330473,41.869118866587336],[-87.7393627534393,41.86911817666243],[-87.73939732288369,41.86910857739258],[-87.73976655071402,41.86900604846408],[-87.7398942421576,41.86896303271131],[-87.73989425043482,41.86896313017512],[-87.7399017279651,41.869052342824055],[-87.73991341636746,41.86917795314891],[-87.73992602264349,41.8693035676637],[-87.73994046461848,41.8694291919337],[-87.73995551148249,41.8695390401353],[-87.73996138432356,41.86959875774031],[-87.73996885174792,41.8696845542751],[-87.73997368306411,41.869757645011724],[-87.73997714081264,41.869830385618826],[-87.73999004499176,41.87042012392537],[-87.73999235131294,41.87051800390079],[-87.73999462650501,41.87061944904853],[-87.7400179590665,41.871371838182],[-87.7400092017925,41.87145923858257],[-87.74002016768807,41.8715894321323],[-87.74002753014297,41.87167684281064],[-87.7399591273951,41.871678890358844],[-87.73913899065815,41.871776873983],[-87.73900606460924,41.871808088107535],[-87.73812616012745,41.87201586751584],[-87.73784051745602,41.872133418465936],[-87.73719413616368,41.87239900183276],[-87.73654290810457,41.8726916561275],[-87.7355768822435,41.87312605583762],[-87.7352165328915,41.8732421808911],[-87.73447711954425,41.87347982290293],[-87.73277885448523,41.87373577505178],[-87.7327754591356,41.87360772558248],[-87.73277271238979,41.87350413271081]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4301254.17988","perimeter":"0.0","tract_cent":"1144565.5293841","census_t_1":"17031250900","tract_numa":"9","tract_comm":"25","objectid":"329","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1908753.5335046","census_tra":"250900","tract_ce_3":"41.9056348","tract_crea":"","tract_ce_2":"-87.74440242","shape_len":"9221.63293907"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7478349191728,41.90233342899056],[-87.7484199517954,41.9023266000478],[-87.74842507254772,41.902511656198776],[-87.74843088776936,41.90278455678419],[-87.74843327697796,41.90289668731649],[-87.74844035607128,41.90323666544401],[-87.74844551042011,41.90348418143732],[-87.74845116121679,41.90369155365583],[-87.74845836147892,41.903955762002404],[-87.7484618315872,41.904144437576015],[-87.74846526037915,41.90433087967165],[-87.74847034609299,41.90459961591423],[-87.74847542131734,41.904867814220026],[-87.74848005274794,41.90505290182401],[-87.74848721123674,41.90533897762933],[-87.74849117955446,41.905509222373865],[-87.74850170402249,41.90596075222198],[-87.74831503118193,41.90596279887619],[-87.74786497332256,41.90596766757784],[-87.7471816460868,41.905976228772374],[-87.74663476641906,41.905983589603316],[-87.74603597082418,41.90598782831125],[-87.74604104436025,41.90623991247658],[-87.7460521583291,41.906650616997986],[-87.74604961927929,41.907078321092506],[-87.7460489840885,41.907185342814245],[-87.74606288275169,41.90765698356695],[-87.74606522349458,41.90780742828564],[-87.74606829819024,41.90818041952352],[-87.74608896161955,41.90873971825404],[-87.74610751581739,41.909064126975075],[-87.74611108912747,41.909127838694445],[-87.7461152845327,41.90920264085688],[-87.74611444687834,41.909625781842614],[-87.74577547209411,41.909630130471314],[-87.74564863798763,41.90963175720968],[-87.74519020911593,41.90963723116556],[-87.74484398153497,41.90964232721694],[-87.74465618840462,41.90964509076093],[-87.74439219092586,41.90964897525548],[-87.7436010567846,41.90965149778615],[-87.74200499276871,41.90967451005212],[-87.74197535749954,41.909674937019545],[-87.7415901353362,41.90968048763615],[-87.74140239651389,41.9096831923509],[-87.74139932738937,41.909683236354155],[-87.74138036111837,41.90968350987793],[-87.74137991259573,41.90943330819288],[-87.74137265222936,41.90922505160285],[-87.74136701599333,41.90903978662767],[-87.74141068667781,41.90865726602316],[-87.7413543772737,41.908568742243176],[-87.74134015012605,41.90792171492382],[-87.74129396483683,41.906027925658385],[-87.74127187806435,41.90512224111515],[-87.74123055315367,41.903432263404284],[-87.74120720061966,41.902431655551716],[-87.741337696763,41.902429962842014],[-87.74141878999814,41.90242891106102],[-87.74163980473362,41.90242498807193],[-87.74171340184931,41.90242368148578],[-87.74173989563373,41.902423211228886],[-87.74223549653269,41.90241558969002],[-87.74234145940964,41.90241395945303],[-87.74240614272266,41.902413047546055],[-87.74244731191314,41.90241246685994],[-87.74283610749153,41.90240691494078],[-87.74294059114703,41.90240551584191],[-87.74361995833611,41.90239608134108],[-87.74383694603068,41.90239256318962],[-87.74452109772375,41.90238146844373],[-87.74540206766417,41.90236309537098],[-87.74570099995424,41.90235581648561],[-87.74597835712346,41.902352331796095],[-87.74632032822542,41.90234803460431],[-87.74653443218237,41.9023458632445],[-87.74703567356158,41.902340767099226],[-87.7478349191728,41.90233342899056]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3728507.48501","perimeter":"0.0","tract_cent":"1167581.38068477","census_t_1":"17031241900","tract_numa":"35","tract_comm":"24","objectid":"330","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906825.51405489","census_tra":"241900","tract_ce_3":"41.89987945","tract_crea":"","tract_ce_2":"-87.65991287","shape_len":"8167.81462366"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66221772025838,41.89615297933927],[-87.66240460650737,41.89614976569016],[-87.66240815384123,41.89638573319953],[-87.66241080416093,41.89648344353135],[-87.66241497812209,41.896639121053],[-87.66241849353422,41.89676998681925],[-87.66242116366061,41.89686931635999],[-87.66242631834962,41.897061141202016],[-87.66242869404269,41.89714905326619],[-87.66243073991943,41.897224750999],[-87.6624381870441,41.897502868027004],[-87.66244347576625,41.89769944115998],[-87.66245250648515,41.89796941346627],[-87.66246126919164,41.89823137815826],[-87.66246520062893,41.898403190324395],[-87.66247220304318,41.89870630496237],[-87.66247874389478,41.898880227033935],[-87.6624880357583,41.89912730811738],[-87.66249135031678,41.899317392989325],[-87.66249588716543,41.89957038342918],[-87.66250359751123,41.89978594538007],[-87.6625164041551,41.900143993655036],[-87.66251887023594,41.900242800265026],[-87.66252088130331,41.90032338304075],[-87.6625275370121,41.90069226087457],[-87.6625275537763,41.90069318605421],[-87.6625299014655,41.900823311370736],[-87.66258113663636,41.90148484836339],[-87.66259133936268,41.90174607678872],[-87.66259343735042,41.90180857279902],[-87.66259531267079,41.90186444155327],[-87.6626021840347,41.902081630508924],[-87.66260742478485,41.90225017688184],[-87.66261209246181,41.90240086261988],[-87.66261960322801,41.90264492381349],[-87.662626138737,41.902876877227094],[-87.66263080993814,41.903062332415665],[-87.66263313908453,41.90315567742263],[-87.66262770600666,41.90340868190614],[-87.66226338022128,41.90341463101102],[-87.66200092600897,41.90342396409075],[-87.66181923448721,41.90342783750257],[-87.6616622805551,41.903431183263],[-87.66143365709645,41.90343605623493],[-87.66129153239767,41.903439085403456],[-87.6611096262265,41.90344296247331],[-87.66089763896422,41.90344747979066],[-87.66077576521486,41.90345007696219],[-87.66067360123742,41.90345225378875],[-87.66042952104002,41.903456978234146],[-87.66031181444285,41.90345925575448],[-87.66023204185393,41.90346079970189],[-87.65835817896684,41.903497047020636],[-87.65833444907702,41.903477123254824],[-87.65808697705968,41.903269346918236],[-87.65801852222363,41.903194465851826],[-87.65786831641903,41.90303414241007],[-87.65777717870662,41.90292616951881],[-87.65749330368065,41.9025285884703],[-87.65733416145434,41.90229288249144],[-87.65711310476064,41.90196852967848],[-87.65700288395875,41.90180687632274],[-87.65693793378696,41.90171291536732],[-87.65691548963487,41.90167864488443],[-87.65686844376886,41.90161162796621],[-87.65683196498237,41.90155968424497],[-87.65679928564262,41.90151319648086],[-87.65674706630297,41.9014386847134],[-87.65672458437497,41.90140397489175],[-87.65670367600374,41.90135073099556],[-87.65669704077276,41.90133383461367],[-87.65668382441359,41.90108957473583],[-87.65667833982471,41.90090625497753],[-87.65667285526033,41.90072293521337],[-87.65667054510804,41.90064542193671],[-87.65666542318978,41.90047357767316],[-87.65666163826505,41.90034498795794],[-87.65664689940786,41.89988389676249],[-87.65667139449782,41.89988342529952],[-87.6570213055316,41.899876690020655],[-87.65715176830396,41.899874165237016],[-87.65737702876051,41.89986893273045],[-87.65759521649653,41.899865606569115],[-87.65758912113155,41.899686706102116],[-87.65758713764247,41.89962848453078],[-87.65758539887997,41.89957760577777],[-87.65758304638807,41.8995087788566],[-87.65758398741231,41.89939123424108],[-87.65760494793736,41.899249171328584],[-87.65759996076932,41.89908811023141],[-87.65759327673514,41.89887198977382],[-87.65758525212465,41.8986123103947],[-87.65757893137277,41.89840703178888],[-87.65756920276793,41.898092979041756],[-87.65756184610844,41.897825702022566],[-87.65755555668453,41.8976256853711],[-87.65754305804583,41.897228226063774],[-87.6575411241445,41.897161790709895],[-87.65753957942563,41.897108749246044],[-87.65753629122199,41.896999536442834],[-87.6575330504409,41.896891888405946],[-87.6575290550954,41.896762199704675],[-87.65752535997193,41.89665308905534],[-87.65752171641347,41.89654549874015],[-87.65751044535473,41.89622794915963],[-87.65757941569132,41.89622676860353],[-87.6576999166821,41.89622470596762],[-87.65776001765815,41.89622367701569],[-87.65788945522375,41.89622146121174],[-87.65814364309377,41.89621710918036],[-87.65829253568627,41.896214560000196],[-87.6584846736735,41.89621126971797],[-87.65857469670877,41.8962097282005],[-87.65865011358376,41.89620843614315],[-87.6587414503156,41.89620687230113],[-87.65899563882921,41.89620251838723],[-87.6591879292149,41.89619922452992],[-87.65934279591838,41.896197091057275],[-87.65947100399623,41.896195192269424],[-87.65995808185708,41.89618797759759],[-87.66025061183909,41.89618364375494],[-87.66042404631007,41.89618066760031],[-87.66081854768211,41.89617522728064],[-87.66116856260443,41.89617041599668],[-87.66140147444318,41.89616628182937],[-87.66160573218428,41.89616265575855],[-87.66188944806773,41.89615794839841],[-87.66221772025838,41.89615297933927]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2486945.89215","perimeter":"0.0","tract_cent":"1161027.04530597","census_t_1":"17031222200","tract_numa":"18","tract_comm":"22","objectid":"331","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912616.78229171","census_tra":"222200","tract_ce_3":"41.91590979","tract_crea":"","tract_ce_2":"-87.68382594","shape_len":"6838.51788123"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68243327675863,41.914106882293716],[-87.68243122892305,41.91402815573666],[-87.68243036399255,41.91399489515477],[-87.68242660767844,41.91385043679271],[-87.68241950807375,41.91358223667296],[-87.68265346290805,41.913732595489144],[-87.68273210340189,41.91378350062508],[-87.68303391771376,41.913978870353326],[-87.68312066227693,41.91403603652461],[-87.68315485379654,41.91405856926343],[-87.68392274342501,41.91404625668134],[-87.6840383496464,41.91404440139592],[-87.68429575560185,41.914040270203664],[-87.68468221479863,41.914035070879],[-87.68494214347572,41.91403157295873],[-87.68551714655165,41.9140226889026],[-87.68603900933942,41.914015148956395],[-87.68662172306477,41.914006714468535],[-87.68713642473904,41.9139988273363],[-87.6873155488048,41.91399480259249],[-87.68731885844969,41.914150073030925],[-87.68732359420721,41.91432896860899],[-87.68732383067794,41.91433637826351],[-87.68732593266387,41.91440228015633],[-87.68733227628317,41.91460113532556],[-87.68733583941226,41.914715753873985],[-87.68734017390835,41.9148551308126],[-87.6873458424063,41.915037434460764],[-87.6873474920393,41.91510028660748],[-87.68735046120354,41.91521336558423],[-87.68735243011864,41.91531225153767],[-87.68735602235856,41.91549259481296],[-87.68735938211576,41.91560924347787],[-87.68736367337956,41.9157608588664],[-87.68736774006162,41.91590454216396],[-87.68737494326257,41.916130470646024],[-87.68737672835455,41.91618645254092],[-87.6873771440501,41.91621908349294],[-87.68737756907846,41.916252428545775],[-87.687378119634,41.91629591532987],[-87.68737975689056,41.91642532730349],[-87.6873856661307,41.916676067020056],[-87.68738871412924,41.916805422431835],[-87.68739565908115,41.917100112943686],[-87.6874056933236,41.917394844693355],[-87.687409990258,41.91756774018782],[-87.68712006649481,41.917568923120335],[-87.68691900395761,41.917573808121105],[-87.68663586666358,41.91758068663528],[-87.68613246582946,41.91759113928445],[-87.6854832815073,41.91760461580272],[-87.68524182431932,41.91760962697316],[-87.68495894636784,41.91761462768379],[-87.68467236150663,41.917619693474215],[-87.68443868015775,41.9176240001774],[-87.68406379367451,41.91763090815426],[-87.68346301620039,41.91764197160346],[-87.6830354100868,41.917649847588415],[-87.68279065047655,41.917654355209244],[-87.68251853354988,41.917658895232506],[-87.68236337403305,41.91766148357983],[-87.68199602642329,41.91766859686281],[-87.68173197771762,41.917673709052],[-87.68061490808228,41.91769529802101],[-87.6802658120053,41.917702042449],[-87.68009601503611,41.91770662872146],[-87.68007929691173,41.917249116840615],[-87.68007309109814,41.917039806665414],[-87.68007051241302,41.916942762931214],[-87.68006690471336,41.91680697855293],[-87.6800570103735,41.91645854241607],[-87.68005190094689,41.91627871146818],[-87.68004975101417,41.91618783507063],[-87.68004710011816,41.91607572097706],[-87.68003811511083,41.91574625259237],[-87.68003194441673,41.91552991760826],[-87.68003130035726,41.91542691890052],[-87.68003026845011,41.91526190635753],[-87.68001705138295,41.91484306173045],[-87.68001388419562,41.91467004527602],[-87.6803585599558,41.91466262277521],[-87.68053215951801,41.914659016278605],[-87.68126846301108,41.91464371642554],[-87.68134793969898,41.91464206454694],[-87.68192433994925,41.914630050013216],[-87.68244686307015,41.91461915556913],[-87.68244142855444,41.91442033274716],[-87.68243327675863,41.914106882293716]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4726249.59748","perimeter":"0.0","tract_cent":"1130563.73362916","census_t_1":"17031180300","tract_numa":"18","tract_comm":"18","objectid":"332","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914490.51706056","census_tra":"180300","tract_ce_3":"41.92163009","tract_crea":"","tract_ce_2":"-87.79570465","shape_len":"11939.8578099"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80326968399983,41.92354405129637],[-87.80320891841373,41.9235381450908],[-87.80313972261389,41.923538539103575],[-87.80306262583733,41.9235390063565],[-87.80295502839854,41.92353966198511],[-87.80289362288549,41.92354003694849],[-87.80280950722573,41.92354055393379],[-87.80257397575532,41.9235421224246],[-87.80239837134211,41.92354329136645],[-87.8022757444859,41.92354398663206],[-87.80211445968568,41.92354483223458],[-87.80194527390594,41.923545750815485],[-87.80161998451935,41.92354751059802],[-87.80150981426712,41.92354823528526],[-87.8012543772938,41.92355018033102],[-87.80096289113528,41.923552341867705],[-87.80073695168814,41.923553960392546],[-87.80050247381308,41.92355563956448],[-87.8003412941926,41.92355708716967],[-87.800056859372,41.92355966332948],[-87.79983408865424,41.92356170203811],[-87.7996269738252,41.92356348377705],[-87.79936532970369,41.92356506646088],[-87.798906242143,41.92356897014115],[-87.79862896274692,41.923571326890674],[-87.79850629473913,41.92357253934273],[-87.7983606221548,41.92357394635141],[-87.79813020667868,41.92357616567475],[-87.7979611613769,41.923577847150035],[-87.7977597813962,41.923579320207516],[-87.79767636435824,41.92357981720664],[-87.79735393917329,41.923581737978395],[-87.79723693254368,41.92358264619272],[-87.7970743585356,41.92358380031992],[-87.79677989628536,41.92358589013676],[-87.79669739571055,41.923586602287386],[-87.79646536786161,41.92358832335844],[-87.79632520943865,41.92358936278779],[-87.79606760263482,41.923591533126846],[-87.79591502271312,41.92359282238563],[-87.79564558066649,41.923595265691574],[-87.79548149731058,41.923596829814024],[-87.79523766673242,41.92359897280927],[-87.79489495214044,41.92360198423504],[-87.79476603817456,41.92360308107482],[-87.79453136387806,41.92360483412297],[-87.7943788227381,41.92360587454132],[-87.79424987340309,41.923606805981635],[-87.79401858057624,41.923608499488516],[-87.79381249590865,41.92361000801441],[-87.79356940689264,41.923611787065944],[-87.79340514054174,41.92361321014915],[-87.79325285335068,41.92361463445809],[-87.7929600388103,41.92361734571755],[-87.79279463613656,41.923618433820664],[-87.79257341326995,41.923619888890386],[-87.79240830300927,41.92362120311546],[-87.79203409351682,41.923624180843206],[-87.79182330512855,41.923625793975255],[-87.7916354476091,41.92362724075373],[-87.79145920250609,41.92362860426617],[-87.79131231855908,41.92362983196143],[-87.79039250458779,41.923636337566066],[-87.79039965770237,41.92350850227446],[-87.790399876928,41.92343514012171],[-87.79038128028087,41.92286562410348],[-87.79036050866094,41.9222274919378],[-87.79034815306335,41.9218428979655],[-87.79032969196284,41.92124842774451],[-87.7903293912625,41.92123873506494],[-87.7903196278841,41.92092756178454],[-87.79031238233841,41.9206987265579],[-87.79029853872115,41.92027296249464],[-87.79028394502457,41.919827298062025],[-87.7902663473125,41.91930272349506],[-87.7902552651533,41.91898468328409],[-87.79022716391076,41.91866964954717],[-87.7901916199277,41.91852815310511],[-87.79007672097373,41.9182123656802],[-87.78993518184316,41.91800519233586],[-87.78974472286505,41.917771717282655],[-87.78963585011022,41.917666234315526],[-87.78941717052624,41.91751117878998],[-87.7894151140512,41.91751009715077],[-87.79152185605011,41.9181317212509],[-87.79258230325226,41.91851748260977],[-87.79387491197242,41.91898768148762],[-87.7951124723038,41.91943634244036],[-87.79511435002787,41.919498199409155],[-87.79511469220124,41.919509469934276],[-87.79511559537008,41.9195382403229],[-87.79538512842818,41.919635887728404],[-87.79612921391177,41.919906591051685],[-87.796292682061,41.91996635700867],[-87.79633230686676,41.91998074702976],[-87.79725245366886,41.92031490015055],[-87.79809318030952,41.920620001765585],[-87.79868572224849,41.92083509761169],[-87.798814323279,41.920885395493414],[-87.79901633986937,41.92095498106668],[-87.79930803612069,41.92106061918858],[-87.79951501684165,41.921135676194304],[-87.79974351929063,41.921218721961196],[-87.80011122953762,41.921352496063015],[-87.80050870891334,41.92149669882552],[-87.80067630343767,41.92155784897518],[-87.80073171671299,41.92157800198072],[-87.80106875430205,41.92169996802074],[-87.80137831928037,41.921811857955134],[-87.80166223852385,41.921914709278234],[-87.80197956485787,41.92203246557049],[-87.80225980067975,41.922136670210946],[-87.80253089019611,41.9222360275577],[-87.80253089678952,41.922236030058],[-87.80271956346547,41.92230413548705],[-87.80276449154798,41.92232026842651],[-87.80277085452626,41.92232255331264],[-87.80300120798648,41.922404915357866],[-87.80326545041126,41.922499439680834],[-87.8035173666847,41.92258498749046],[-87.8037871456551,41.9226767913764],[-87.80402348962781,41.92275712136981],[-87.80428919795058,41.92284135867074],[-87.8043861391203,41.922871310719174],[-87.80446420953173,41.922895677700396],[-87.80473270105023,41.92297683925736],[-87.80500721438506,41.92305185446831],[-87.80527669337515,41.92312478687306],[-87.80558697434887,41.92320716824266],[-87.80579830455292,41.92325787828882],[-87.8060563870547,41.92332046645529],[-87.80622980135827,41.923368243910026],[-87.80623239116477,41.92346441370113],[-87.80623951557504,41.9235586007426],[-87.80624203252637,41.9235921470897],[-87.80624729926289,41.923764755483845],[-87.80625508084675,41.92400688818821],[-87.80625508079707,41.92400689422529],[-87.80625508078126,41.92400689614618],[-87.80590691745175,41.92395254478615],[-87.80581986581433,41.92393916467576],[-87.80571222610553,41.92392261635791],[-87.80533172444979,41.9238640891389],[-87.8052638669977,41.92385365086876],[-87.8051576949644,41.92383735576178],[-87.80502788884597,41.923817384316564],[-87.80489661483507,41.92379718643057],[-87.8047978200604,41.923781967750145],[-87.80439934642895,41.9237198014832],[-87.8042990569241,41.92370415507184],[-87.80419317165531,41.92368763536728],[-87.80411504052574,41.92367544764988],[-87.80394552902504,41.92364900768208],[-87.8038850497514,41.92363956309481],[-87.8037980738275,41.92362601714693],[-87.80371997922803,41.92361382932919],[-87.80365216019261,41.923603253072244],[-87.80358290995915,41.9235924506337],[-87.80352833917155,41.923583938714394],[-87.8034199309415,41.923567110278626],[-87.80335086487767,41.923556308550104],[-87.80326968399983,41.92354405129637]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1781524.03151","perimeter":"0.0","tract_cent":"1159435.55117857","census_t_1":"17031240600","tract_numa":"12","tract_comm":"24","objectid":"660","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911228.10604783","census_tra":"240600","tract_ce_3":"41.91213208","tract_crea":"","tract_ce_2":"-87.68971127","shape_len":"5389.38892458"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68731300836131,41.91387561569954],[-87.68730753555056,41.91361883606719],[-87.68730411405839,41.91347855891281],[-87.68730114126363,41.913356671174455],[-87.68729144540616,41.91301386191544],[-87.68728269754213,41.912715460177026],[-87.68727870681411,41.91256820972478],[-87.68727418316192,41.912401307574726],[-87.68727032049964,41.91221596790432],[-87.6872683811174,41.912132203052295],[-87.68726520208247,41.91199489126952],[-87.68724836928153,41.91138343665243],[-87.68723422395449,41.91082114628522],[-87.68722482228682,41.91046146177373],[-87.6872206970524,41.91032086664096],[-87.68844251944797,41.910305752142186],[-87.68863144823925,41.91030361134477],[-87.68966709305224,41.910294142251786],[-87.69032803144286,41.91028809442768],[-87.69090160805328,41.91027886060141],[-87.69199855049969,41.91026646780177],[-87.69211065638703,41.91026544294895],[-87.69210829171091,41.91033557561997],[-87.69210455880095,41.91044627961468],[-87.69211420653996,41.91073771608252],[-87.69212427209226,41.911126904416875],[-87.69213665197752,41.91158954129364],[-87.6921487169244,41.911929481774195],[-87.69215276824538,41.9120933059398],[-87.69216046025987,41.91240435430288],[-87.69217177723526,41.912841079595985],[-87.69218317540658,41.91326603255721],[-87.69220007062815,41.913776828279005],[-87.69220162068184,41.91385759361017],[-87.6922033918288,41.91394989472549],[-87.69199720934928,41.91395116154142],[-87.69158248294053,41.91395499150922],[-87.69129829719759,41.913958589472216],[-87.69116039509062,41.91396015119961],[-87.6910515325777,41.91395657828416],[-87.69103962303383,41.91394981574446],[-87.6910212225062,41.91393818704855],[-87.69101550328448,41.91392597067199],[-87.69101465955873,41.9139241553089],[-87.69101320156142,41.91392101818123],[-87.6909939043311,41.913868888949565],[-87.69099121862064,41.91386163354723],[-87.69095942202951,41.913867981177965],[-87.69094215186155,41.913924078449135],[-87.69094139686663,41.91392502921764],[-87.69092775144385,41.913942219577606],[-87.69090731328114,41.913954262174734],[-87.69087016208526,41.913962259840716],[-87.69077598704406,41.913963214494515],[-87.69062202855787,41.91396482266121],[-87.69037859742139,41.91396749387727],[-87.68998001028137,41.913970283290496],[-87.68975740725023,41.913971961763814],[-87.68952487328175,41.9139737147505],[-87.6890454155252,41.91397700794546],[-87.68872882665703,41.913980362845734],[-87.68868216380041,41.913980879421345],[-87.6885370938368,41.91398248557154],[-87.68835550393993,41.9139844959057],[-87.68790054960404,41.91398797683709],[-87.68761821685435,41.91398995701037],[-87.68750953401462,41.91399044348269],[-87.6873155488048,41.91399480259249],[-87.6873147364694,41.913956694382016],[-87.68731350970874,41.91389913053843],[-87.68731300836131,41.91387561569954]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2608614.10441","perimeter":"0.0","tract_cent":"1168348.47440988","census_t_1":"17031062200","tract_numa":"17","tract_comm":"6","objectid":"334","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922394.55094319","census_tra":"062200","tract_ce_3":"41.94258518","tract_crea":"","tract_ce_2":"-87.65664409","shape_len":"6557.67883289"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65841220055339,41.93984722469336],[-87.65896858486964,41.93983803823636],[-87.65897663096646,41.9401525147983],[-87.65898029537806,41.94028417610509],[-87.65898441632409,41.94043219616795],[-87.65899333212235,41.94073370068123],[-87.65899769538093,41.94088122792209],[-87.65900859555299,41.941256042072055],[-87.65902221483722,41.94166038895039],[-87.65902556203683,41.941759760192184],[-87.65903977755936,41.942322325530164],[-87.65905129502588,41.942715337355665],[-87.65905608345632,41.942888744989695],[-87.65906093662745,41.94305946366786],[-87.6590620820598,41.943100935483464],[-87.65906423527427,41.943189966620665],[-87.65906581986216,41.943255484179055],[-87.65906838954679,41.94336049293213],[-87.65907261489046,41.943493470564675],[-87.65907567661428,41.943589842317145],[-87.65908033093761,41.94377609233577],[-87.65908255130424,41.94386503302321],[-87.65908381390494,41.943915620704225],[-87.6590846733812,41.94395004588651],[-87.65908498434095,41.943962396678316],[-87.65909020352017,41.94417175601348],[-87.65909315158497,41.944289664779454],[-87.65909893030056,41.944404370927984],[-87.65910385196717,41.9445020749263],[-87.65910561957398,41.94458902201597],[-87.65910919717851,41.94476231271314],[-87.65911123145733,41.94486204775635],[-87.65911297838747,41.944947679142864],[-87.65911636291172,41.94511487654015],[-87.6591181319087,41.94520165897581],[-87.65912157564446,41.94531572104766],[-87.65897170264503,41.945315287612196],[-87.65877277239908,41.94531823532767],[-87.65851430090821,41.94532203142886],[-87.65838307401931,41.94532395817024],[-87.65794112413249,41.94533137533086],[-87.6577907354432,41.94533389640583],[-87.65765391737817,41.94533618952214],[-87.65713229587264,41.94534513821925],[-87.6568505506745,41.945347924131994],[-87.65669871641853,41.945351363352],[-87.65653523578507,41.94535506686619],[-87.65639429073453,41.94535632153842],[-87.65609626292493,41.945359009595855],[-87.65608997666504,41.94535906499537],[-87.65591359374719,41.94536062128215],[-87.6558249974834,41.94536144290074],[-87.65577390355008,41.94536490123168],[-87.65575464879589,41.94537090747035],[-87.65570733487655,41.94538566624924],[-87.65556815248893,41.9454495807088],[-87.6554858915002,41.94548734941205],[-87.65522972507215,41.9456050179296],[-87.65510854950331,41.945454276022666],[-87.65498141487956,41.945297049874554],[-87.65481531480985,41.94509151468606],[-87.65468027188074,41.94492452694301],[-87.65453692204844,41.944747171681115],[-87.65424496895822,41.944466428639615],[-87.65424214575857,41.94438110008831],[-87.65423151649668,41.944059806093435],[-87.65422898649742,41.94391720175479],[-87.65422629233942,41.943762357245475],[-87.6542246296458,41.943669647848054],[-87.65422424583919,41.943661790812904],[-87.65422022156338,41.94357939666857],[-87.65421979158353,41.94357059123407],[-87.65421469954678,41.94346633859228],[-87.65420769223326,41.94323596176748],[-87.65420330392274,41.94308143652433],[-87.65420033437964,41.94296986690469],[-87.65419778344354,41.94287427054029],[-87.65418600864359,41.94245982443994],[-87.65417768424096,41.94219819661927],[-87.65416282079958,41.94174154949251],[-87.65415997739377,41.94165419362801],[-87.65415276538457,41.94143260523983],[-87.65413934754848,41.940965213392474],[-87.6541302439707,41.94066620467254],[-87.65412110232667,41.94036736036438],[-87.6541058165044,41.93991237413251],[-87.65423160295585,41.93990885176458],[-87.65466071369849,41.939902497787095],[-87.65471409235327,41.93990150869644],[-87.65481118224791,41.939899709586506],[-87.655321943299,41.93989204832955],[-87.655806082666,41.9398847839601],[-87.65593923258353,41.93988264344805],[-87.65618068167427,41.93987876122379],[-87.65653663509215,41.939873537064585],[-87.65683296673609,41.93986918718466],[-87.65714013794067,41.939864929193284],[-87.65720807144434,41.93986398734027],[-87.65775237565654,41.93985700291138],[-87.65809064580854,41.93985266109324],[-87.65835277634346,41.93984822935875],[-87.65841220055339,41.93984722469336]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13847083.1117","perimeter":"0.0","tract_cent":"1176844.45575233","census_t_1":"17031491000","tract_numa":"55","tract_comm":"49","objectid":"335","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1833971.55974748","census_tra":"491000","tract_ce_3":"41.69975669","tract_crea":"","tract_ce_2":"-87.62808528","shape_len":"15878.2642528"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63231496140135,41.69247560100279],[-87.63271440484789,41.69247082122407],[-87.63273713661553,41.69265795033312],[-87.632765615939,41.69328108719567],[-87.63276787777835,41.693367890462],[-87.63276808593459,41.693376275114176],[-87.63279079049363,41.69429125577087],[-87.63279080501722,41.69429184067632],[-87.63281667138888,41.69519660026424],[-87.63281701454123,41.695208606880605],[-87.63284058835427,41.69611463532123],[-87.63286741117552,41.69701777058903],[-87.63286752487936,41.69702190341913],[-87.63289269360669,41.697933098982325],[-87.63289271444187,41.697933844743545],[-87.63291775783001,41.698831735987554],[-87.63291816235555,41.69884257745384],[-87.6329522455255,41.69975402766342],[-87.63296563572298,41.70066249476501],[-87.63298820973911,41.70157717953153],[-87.63299269670942,41.70175421599372],[-87.6330112754312,41.70248877977918],[-87.63303486223498,41.70339455081308],[-87.63305892249706,41.70429895352186],[-87.63308377255109,41.70521502373415],[-87.63298103952162,41.705217588230525],[-87.632418545921,41.70522361872246],[-87.63241387603003,41.70556941752709],[-87.632451865666,41.70613696221631],[-87.63245523619344,41.706254214035056],[-87.63246280914238,41.70651793498167],[-87.6324714876475,41.70681912790829],[-87.63247815512237,41.70705053738876],[-87.63190168226362,41.70705750342275],[-87.63177183979829,41.707059071197655],[-87.63070193855603,41.70707381640064],[-87.63048188428905,41.70707684790072],[-87.62951265630552,41.70708883949822],[-87.6291833779325,41.70709291140496],[-87.6283210558739,41.70710093174447],[-87.6282961685131,41.70710116463384],[-87.6282712811552,41.70710139724339],[-87.62801325160919,41.70710379308479],[-87.62732117931644,41.70711581708322],[-87.62711866825495,41.70711821608938],[-87.6262732074253,41.707128227319025],[-87.6260557825492,41.707131132871496],[-87.62591887177761,41.70713296228303],[-87.62560387585192,41.70713701717333],[-87.62510721769148,41.70714250781666],[-87.62473171486403,41.70714715065157],[-87.6244214824796,41.70715098578204],[-87.6239352364935,41.70715871540813],[-87.62352262903596,41.70716471144916],[-87.62350808348852,41.706708489114476],[-87.62350179354884,41.70651120496333],[-87.62349498153043,41.70625448237101],[-87.6234867519113,41.70594432669233],[-87.62348358917706,41.705828277379624],[-87.62347495883971,41.705511611035696],[-87.62346994893568,41.70534063169517],[-87.62346260451393,41.70508997895241],[-87.62344802467352,41.704601014788956],[-87.62344295780431,41.70442883195655],[-87.62343434994038,41.70413631601236],[-87.62342171208253,41.70369055945071],[-87.62341727106639,41.70351945046938],[-87.62341579422261,41.70346255174492],[-87.62340800348437,41.70316238412887],[-87.62339456803309,41.70273256709834],[-87.62338906362079,41.70255014516846],[-87.62337947357135,41.70223053655647],[-87.62336352123057,41.701646719733226],[-87.62336225368975,41.70160299093499],[-87.62334897458133,41.701144857138466],[-87.62333890354343,41.700783449098104],[-87.62333582093794,41.700672833942114],[-87.62332752141691,41.70033750847545],[-87.62332233409126,41.70012791931076],[-87.62331351985085,41.699870652755834],[-87.62330223824411,41.69954135978491],[-87.62329630517745,41.69927847141068],[-87.62327932661485,41.698694840044176],[-87.62326813089581,41.69827461421616],[-87.62326127315177,41.69805256144018],[-87.62325571071895,41.697872438472764],[-87.62324758049287,41.69759101195226],[-87.62323826096743,41.697268413685904],[-87.62323493635364,41.69714127583137],[-87.6232263069416,41.696810640645126],[-87.62321768774315,41.69650904050527],[-87.62320881344094,41.696228372791204],[-87.62320519175906,41.69611383476351],[-87.6231923945014,41.69568811018764],[-87.62318967261442,41.69558737647276],[-87.62318210488007,41.695317699045084],[-87.623176888776,41.69513182107498],[-87.62316767234235,41.694784688720404],[-87.62316216916977,41.6946192539432],[-87.62315686201669,41.694400986528635],[-87.62315279117867,41.69423356271915],[-87.62314840196746,41.69406006647862],[-87.62314484345453,41.693943163733174],[-87.62313904245393,41.693752588749284],[-87.6231320837169,41.693496444821626],[-87.6231267448564,41.69329947866257],[-87.62311985483915,41.693133651064564],[-87.62311442458395,41.69294829284737],[-87.62311152509832,41.6928457464532],[-87.62310413089754,41.69258470198552],[-87.62336466518506,41.69258363555019],[-87.62356721538316,41.6925801664464],[-87.6239576203399,41.69257442629378],[-87.62428052430272,41.69257062848641],[-87.6247858356904,41.69256381060544],[-87.6251622413528,41.69255921499553],[-87.62553014859381,41.69255497746074],[-87.6257637715231,41.69255263524202],[-87.62583443256742,41.6925519269897],[-87.62609538474334,41.69254926385103],[-87.62648157481084,41.692543845946666],[-87.62679781263687,41.6925402744963],[-87.62712211271284,41.69253601075011],[-87.62744666273869,41.69253232393344],[-87.62756801611876,41.69253098356909],[-87.62790703295943,41.692526497327805],[-87.62818281707789,41.6925228471825],[-87.62849912433316,41.69251957335211],[-87.62899757740125,41.692513737731005],[-87.62931196823448,41.69251160253674],[-87.62971491862415,41.692506989964905],[-87.63002288552886,41.69250300223545],[-87.63031294540686,41.69249953725518],[-87.63219536433164,41.69247703174175],[-87.63231496140135,41.69247560100279]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14279049.598","perimeter":"0.0","tract_cent":"1139564.13748432","census_t_1":"17031150300","tract_numa":"53","tract_comm":"15","objectid":"336","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1928720.22151126","census_tra":"150300","tract_ce_3":"41.96051822","tract_crea":"","tract_ce_2":"-87.76228598","shape_len":"16616.1092104"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75770091084091,41.96790150139553],[-87.757692503134,41.96765091296886],[-87.7576861440461,41.96746685470426],[-87.75767836999034,41.967182652598616],[-87.75766771810994,41.96685579103586],[-87.75765379405233,41.966428502969556],[-87.7576477696646,41.966207289470006],[-87.75764211490475,41.966035775178625],[-87.75763711215471,41.965884023010624],[-87.75762982397822,41.965668373898154],[-87.75762307315047,41.965478852350735],[-87.75761990275126,41.96538995121658],[-87.7576138255675,41.965219505572165],[-87.75761180466307,41.96516216888899],[-87.75760812461462,41.96504815594538],[-87.7576075443735,41.96501050247205],[-87.75761073102043,41.964983241003054],[-87.7576232662827,41.96496321624484],[-87.75763713856915,41.96494983917844],[-87.75765246893046,41.9649419578421],[-87.75769043070022,41.96492389919259],[-87.75777432198984,41.96488494038002],[-87.75805068988437,41.96475671953381],[-87.75798730557888,41.96468375359985],[-87.75791090054405,41.964595798804446],[-87.75790887420997,41.96459346622294],[-87.75766629083975,41.96431332855475],[-87.7575900488333,41.964224679798996],[-87.75740180651309,41.96400580304408],[-87.75739895146634,41.96400248771059],[-87.75730295353064,41.96389101072653],[-87.75709826243808,41.96365409117036],[-87.756833436925,41.9633499379887],[-87.75667898996976,41.963172544913995],[-87.75660504699951,41.96308718472318],[-87.75652153157097,41.96299077320144],[-87.75636623141966,41.96281032933602],[-87.75623159794135,41.96265411076003],[-87.75606841355727,41.96246672076896],[-87.75643886993157,41.9624819378543],[-87.75649568320183,41.96248123540557],[-87.75683465096319,41.96247704894136],[-87.75690521439216,41.96247622982629],[-87.7572941545608,41.96247171551597],[-87.75745003056304,41.96247000027887],[-87.75743054387445,41.961970346543595],[-87.75742308689354,41.961779147078516],[-87.75741565484344,41.961512179494704],[-87.75741338848559,41.96143076464866],[-87.7574099463077,41.96130713161203],[-87.7574011703341,41.96105283909107],[-87.75739201364827,41.960787507427106],[-87.7573865862388,41.9605999626906],[-87.75738088126826,41.960402822788964],[-87.75737201347354,41.960143479042586],[-87.75736266321618,41.95987002486652],[-87.75735651539651,41.959688840039675],[-87.75734092174366,41.95922927959709],[-87.75733802436183,41.95914389232217],[-87.7573336406048,41.95901011738785],[-87.7573258337411,41.95877638158387],[-87.75731948007814,41.95858614774288],[-87.75731246331775,41.95831800537074],[-87.75731234101517,41.95831333712465],[-87.75730201908247,41.95802245359909],[-87.7572976811259,41.95786196998576],[-87.75729311158275,41.95769291118478],[-87.75728371208675,41.957405393093396],[-87.7572817834268,41.95734639736427],[-87.75727513893881,41.95714463686537],[-87.75726831323132,41.956950102337345],[-87.75726065434226,41.95672876088281],[-87.75725233341751,41.956494472736736],[-87.7572416206214,41.956192830107824],[-87.75723627681249,41.956041185997606],[-87.75722838563583,41.95581724539291],[-87.75722096917542,41.955580931301995],[-87.75721287403312,41.95532298910866],[-87.75720611771746,41.9551221733565],[-87.75719564765332,41.95481096965309],[-87.7571913839275,41.95466657537822],[-87.7571896752909,41.954608718475505],[-87.75717652559716,41.95421082361019],[-87.75717286120545,41.95409993892236],[-87.75716305204017,41.95380000211042],[-87.75716157039793,41.95375498899197],[-87.75715231182488,41.953475279793714],[-87.75714771901497,41.95329972408642],[-87.75722205812313,41.95329780736451],[-87.7575170497404,41.95329020113117],[-87.75814904438181,41.953285822471976],[-87.7587568645795,41.9532797002665],[-87.75919021667862,41.95328077049427],[-87.75961053840126,41.95327156631299],[-87.75977071330563,41.9532680584689],[-87.76011153007606,41.953260593808736],[-87.76072884854186,41.953257033262744],[-87.76093668301533,41.953255517776036],[-87.76170839108828,41.95324948312848],[-87.76207574098638,41.95324261811505],[-87.76233456839554,41.95323778001615],[-87.76297224207022,41.95323134516003],[-87.76414240984157,41.953222662930195],[-87.76453853938226,41.953213337231425],[-87.76504181910224,41.953201487372965],[-87.7658624623047,41.95319907011145],[-87.76656253864276,41.95319489929102],[-87.76699971340177,41.95318458358456],[-87.76700834327339,41.95341301382318],[-87.76701668590121,41.95368739453318],[-87.76702206895357,41.953864203480386],[-87.76704725811592,41.954644261290454],[-87.76706093141173,41.955009968005065],[-87.76706509362386,41.95512129391031],[-87.76708641268405,41.95576135004637],[-87.76711109472207,41.95650331538689],[-87.76712317645044,41.95683159099975],[-87.76713189977998,41.95706861642654],[-87.7671355041333,41.957193688052804],[-87.76713814602827,41.957285028535615],[-87.76714534509591,41.957535061959504],[-87.76715186081739,41.95774587718257],[-87.76715566236655,41.9578688641634],[-87.76716712025085,41.95819015835659],[-87.76717918924616,41.95852964968168],[-87.76718043340303,41.9585642916363],[-87.76718374233798,41.95865642077985],[-87.76719381967916,41.95893699057615],[-87.76720674909346,41.95941191275284],[-87.76721214963742,41.9595708888824],[-87.76722354940516,41.95990644793241],[-87.7672359589492,41.96024075454258],[-87.76724278355992,41.96048439306871],[-87.76724920190102,41.96071353794252],[-87.76725763476358,41.96093940105679],[-87.76726863978,41.96123415602847],[-87.76727247038896,41.96139515041677],[-87.76727646505925,41.96156303358228],[-87.76728809510234,41.96193561773341],[-87.76729708860209,41.96222391411051],[-87.76730181741381,41.962353519114295],[-87.76731090720949,41.96260265604179],[-87.76731858322425,41.96285288367244],[-87.76733306952399,41.96327477636403],[-87.76733819883795,41.96342416057483],[-87.76734788359018,41.9637382558682],[-87.76735818318173,41.964062864229064],[-87.7673608139016,41.96413150991803],[-87.76736656934588,41.96428170179494],[-87.76737240583485,41.96445730518621],[-87.76737585943387,41.96455562012104],[-87.7673814518247,41.96471481164513],[-87.76738871951369,41.964915668816545],[-87.76739153673189,41.96504492926523],[-87.76739491731506,41.96520002703552],[-87.76740025883515,41.96535682984124],[-87.76740415611584,41.965500371809995],[-87.76740827285688,41.96565198201213],[-87.76741379552927,41.96582151910824],[-87.76741948075512,41.96595781720519],[-87.76741955326445,41.965959554098845],[-87.76742426078826,41.96607241895297],[-87.76742778255155,41.96618552521314],[-87.76743150803694,41.96630469717946],[-87.76743470897554,41.96641363037984],[-87.76743908186685,41.96656244327438],[-87.7674443466789,41.96673200651354],[-87.76744907803567,41.966868114926235],[-87.76745111709931,41.96692676901457],[-87.7674543541248,41.96706374847837],[-87.76746136527271,41.96725209070374],[-87.76746782464126,41.96746954626598],[-87.76747354493781,41.967654177432216],[-87.76747668860295,41.96778264223408],[-87.76721276640299,41.967786699440346],[-87.76684082460848,41.96779090199705],[-87.76648043028432,41.96779491338633],[-87.76625735023,41.96779776858031],[-87.766078180086,41.96780006150297],[-87.76566574317098,41.967805322493504],[-87.76548437249389,41.967807626385415],[-87.7652459145203,41.96781065519437],[-87.76502398008783,41.96780470584634],[-87.7647763464743,41.96779806760939],[-87.76442882862013,41.96777653257961],[-87.7642122546192,41.967763137664704],[-87.76394246538015,41.96774643235307],[-87.76379997513845,41.967738308790366],[-87.76356339902895,41.967724821105556],[-87.76319280684856,41.96770135663784],[-87.7627850237025,41.967675510784],[-87.76260876172698,41.967668073546385],[-87.76238051070999,41.967654098470824],[-87.76205290671454,41.967634549063334],[-87.7613550810564,41.967594927223146],[-87.76128618958681,41.967630511708016],[-87.76128146853581,41.96763268958855],[-87.761103860668,41.96771461865708],[-87.7607502093888,41.967877233780136],[-87.76061758917169,41.96787156161587],[-87.76055554291356,41.96786890797162],[-87.7603820320009,41.967871554757046],[-87.76011856738452,41.9678754261485],[-87.75986272744794,41.96787919643958],[-87.75981398683341,41.96787991480636],[-87.75953146069003,41.96788394209207],[-87.75927290719324,41.967887645640445],[-87.75909148452543,41.9678902437786],[-87.75870197559223,41.96789317952572],[-87.75837954184696,41.96789568178591],[-87.75822262343189,41.967896903753214],[-87.75804931192752,41.967898253293775],[-87.75782888915755,41.967899947641875],[-87.75770091084091,41.96790150139553]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7129083.55744","perimeter":"0.0","tract_cent":"1140172.35648556","census_t_1":"17031251200","tract_numa":"32","tract_comm":"25","objectid":"337","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906141.74196862","census_tra":"251200","tract_ce_3":"41.89854936","tract_crea":"","tract_ce_2":"-87.76060432","shape_len":"10680.4403626"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76516221036924,41.89485810617137],[-87.7653949154041,41.89485373038337],[-87.76540746828437,41.89524192184416],[-87.76541534764759,41.89544004032004],[-87.76541998630421,41.89555773642587],[-87.76542662775468,41.895763669587645],[-87.7654317428488,41.89592228498625],[-87.76544293177166,41.89620576577015],[-87.76545599819916,41.89656340527262],[-87.76545937783797,41.8966740978572],[-87.76546448223051,41.8968412743914],[-87.7654828239241,41.89732490068124],[-87.76549166004833,41.89756163558044],[-87.7654921727822,41.89757536317087],[-87.76549267651275,41.897588863219035],[-87.76550063493958,41.89780207560847],[-87.76551839465581,41.898285149812246],[-87.76552489302158,41.89849680116507],[-87.76553316108237,41.898766096380854],[-87.76554781322402,41.89913971504404],[-87.76555763570394,41.899413638942704],[-87.76556969872965,41.899750032844274],[-87.76558417189489,41.90018951234828],[-87.76558908623777,41.900319482510405],[-87.76559777241279,41.90054921241153],[-87.76561386814782,41.90102533549071],[-87.7656212965181,41.901233028652435],[-87.76563253414704,41.90154721772863],[-87.7656469182055,41.90190974814363],[-87.76565382332494,41.90214451884983],[-87.76533084171079,41.90214844340522],[-87.76505255686808,41.90215153007653],[-87.7650416025627,41.90215165149685],[-87.76503095611284,41.902151769774484],[-87.76443430641586,41.902158385133745],[-87.76382531973448,41.90216428445109],[-87.76345045871074,41.90216791402847],[-87.76281212095736,41.90217401988086],[-87.7619053447339,41.90218301282507],[-87.76120492257532,41.90218959908055],[-87.76119386504101,41.90218967873029],[-87.7609369544711,41.902191730195],[-87.7604250688604,41.902197673385615],[-87.76020971129317,41.90220046812392],[-87.75981815844396,41.90220553848411],[-87.7595320881746,41.90220837695307],[-87.75921111819133,41.902211561084535],[-87.75888592549944,41.90221455661937],[-87.75859710173398,41.90221721625097],[-87.75824645935947,41.90222113363988],[-87.75763142423034,41.90222800247158],[-87.75722995823375,41.90223248411903],[-87.75701199201195,41.902235314656856],[-87.75671404737874,41.9022391702091],[-87.75639354712571,41.902241109798496],[-87.75620360539683,41.90224225907021],[-87.75577438754358,41.90224940487752],[-87.75576677759419,41.901964102036196],[-87.75576453618726,41.90186027643628],[-87.7557631391077,41.90179556022828],[-87.75574381701925,41.90090051111856],[-87.75573290487802,41.90041717350184],[-87.75572937775888,41.90026094808655],[-87.75572280943985,41.899999334006765],[-87.75570917603049,41.89940489025244],[-87.75569342173877,41.89880533147797],[-87.7556897061753,41.898582809407124],[-87.75568626488274,41.89837672726404],[-87.75567521804578,41.8980047994878],[-87.75566384815689,41.89751385228187],[-87.75564967604788,41.896958895204435],[-87.75564529914442,41.89675283985463],[-87.75563894776663,41.89645384572825],[-87.7556292287861,41.89603244580665],[-87.75562075546559,41.895635860077256],[-87.75561537419777,41.89542132101308],[-87.75561461728353,41.89539115248474],[-87.75561376228485,41.89531957832209],[-87.75560867516049,41.895166753542384],[-87.75560409052792,41.89505191106486],[-87.75559882441146,41.89493606817276],[-87.7558326926996,41.894929871838826],[-87.75596835023045,41.89492813903956],[-87.7562109002214,41.894925326426396],[-87.75668519088694,41.89492090114998],[-87.75682532360855,41.89492034019727],[-87.7570136008412,41.89491958601669],[-87.75720703092561,41.89491816912302],[-87.75727593882218,41.89491782875114],[-87.75743564909597,41.894916692646305],[-87.75752027844968,41.89491609040907],[-87.75782375882976,41.894913687467486],[-87.75805075261299,41.894910389601286],[-87.75819595023351,41.89490827989747],[-87.75838139853218,41.89490813828632],[-87.75856710429531,41.89490799766432],[-87.75875776684292,41.89490796387054],[-87.75912041065867,41.89490231343531],[-87.75933621195692,41.89490071804237],[-87.7594924311954,41.894899562724596],[-87.7598598945193,41.8948971173597],[-87.75997736398152,41.894896147392856],[-87.76013325528642,41.89489485976317],[-87.76034020578096,41.894892983671355],[-87.76064286343612,41.894890351280644],[-87.76082543951023,41.894888762744976],[-87.7611807865092,41.89488581366768],[-87.76127011973504,41.89488500542847],[-87.76142527744166,41.89488360124827],[-87.76155633831308,41.89488241524553],[-87.76186224265948,41.89488004114163],[-87.76213380257896,41.89487797508992],[-87.76233329297048,41.894876456762674],[-87.76259694331438,41.8948757366782],[-87.76283658517708,41.8948736445194],[-87.76288139820886,41.89487325325244],[-87.76309386119813,41.89487101538696],[-87.76332432178566,41.89486875642038],[-87.76356799181556,41.89486727329091],[-87.76381850637691,41.894865747573796],[-87.76409047887205,41.89486262295557],[-87.76431300376942,41.894860597365636],[-87.76450048403586,41.89485914721047],[-87.76459848452166,41.894858389193644],[-87.76478576940343,41.89485821971573],[-87.76487961385916,41.89485813462733],[-87.76516221036924,41.89485810617137]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4289817.36118","perimeter":"0.0","tract_cent":"1168943.9800314","census_t_1":"17031600600","tract_numa":"24","tract_comm":"60","objectid":"338","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885854.51386742","census_tra":"600600","tract_ce_3":"41.84230394","tract_crea":"","tract_ce_2":"-87.65551629","shape_len":"9829.41330866"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65860463387311,41.8472648461594],[-87.65750460979156,41.84716610259946],[-87.6572911446003,41.847204046707176],[-87.65669255489578,41.8465080546146],[-87.65640328690965,41.846145317908075],[-87.6563585648866,41.84608914659117],[-87.65604311510717,41.84572386438237],[-87.6558854493653,41.84554106604915],[-87.65557408784997,41.845180066555706],[-87.65540517463252,41.844983348970985],[-87.6552161750112,41.844763488190175],[-87.65507423798114,41.844597990845706],[-87.65500846983531,41.844521305391915],[-87.65495589574626,41.844460003947304],[-87.65489857032281,41.84439316228925],[-87.65485597421824,41.84434349503079],[-87.65469378086853,41.8441543762396],[-87.65463163499517,41.84408191288371],[-87.65457392849534,41.84401462588459],[-87.65448949939542,41.84391617981713],[-87.65443127368218,41.843848287036224],[-87.65421695206625,41.84359838083242],[-87.65412643559618,41.84349361304194],[-87.65388593450398,41.84321524515342],[-87.65383501901334,41.843155866021746],[-87.6536582694148,41.84294973575739],[-87.6535013594115,41.84276782275735],[-87.65327548343163,41.842500045164414],[-87.65289759549694,41.84205960328211],[-87.65237202197137,41.84144742683669],[-87.65206849380135,41.841093867283014],[-87.6516931805814,41.840661340104724],[-87.65162658668305,41.84058399573674],[-87.6515165896029,41.840456452489676],[-87.65133983345619,41.84025149994988],[-87.65119165578943,41.84007789608609],[-87.6510674759963,41.83993259072136],[-87.65103890912911,41.839899160555966],[-87.65091819075796,41.83975795301493],[-87.65083222672676,41.83965739791751],[-87.65064649267485,41.83944051267037],[-87.65047727845237,41.83924389566959],[-87.65031052937917,41.839050256878636],[-87.65012529380256,41.83883510262159],[-87.64993947679827,41.83861956040329],[-87.64976630512213,41.83841935124395],[-87.64940813714908,41.838005154940795],[-87.64979055206787,41.837999568265744],[-87.65006203585064,41.83799607926823],[-87.65007158175985,41.83799594423083],[-87.65031062034934,41.837992563501636],[-87.65048176320884,41.83799015050007],[-87.65064648951406,41.837987229561655],[-87.65083760541134,41.83798384060462],[-87.65114023705003,41.837981068170905],[-87.65129930378423,41.837979231792126],[-87.65160034063899,41.83797423734786],[-87.6516867356259,41.83797322649233],[-87.65196394074654,41.83797000076408],[-87.65215790893866,41.83796758372967],[-87.65246833186929,41.83796291161245],[-87.65299505957991,41.83795498218196],[-87.6531813148424,41.83795266153214],[-87.65358448770847,41.83794763739766],[-87.65398339763571,41.837942665119776],[-87.65419612464345,41.83793955975706],[-87.65435934080651,41.83793717396521],[-87.65491852405302,41.83858711191512],[-87.6556279441447,41.83941471692472],[-87.65590709931054,41.83973969533977],[-87.65609837387056,41.839962364699325],[-87.65621430666394,41.84009732503394],[-87.65662884802954,41.84057790115734],[-87.65678473765979,41.84075947436179],[-87.65696869251352,41.84097343027282],[-87.65719478095477,41.841235932952905],[-87.65733893697067,41.841402946606564],[-87.65736796180437,41.84143577827589],[-87.65767477505439,41.841782832684075],[-87.65773067151028,41.8418460594438],[-87.65797909466833,41.842128273884484],[-87.65812524035849,41.84230161881637],[-87.65818266297435,41.84236972840842],[-87.65830578097764,41.84251575911355],[-87.65836020159232,41.84258030703103],[-87.65839846819016,41.84262569478194],[-87.6584967679541,41.84274228745123],[-87.65854861535149,41.8428037830833],[-87.65861194545589,41.84287889841248],[-87.65867879104515,41.842958182582656],[-87.65868268262909,41.842962798513305],[-87.65882948602088,41.84313691780508],[-87.65893346066214,41.84325879730884],[-87.65914671610984,41.84350542199735],[-87.65915159885382,41.84351106816278],[-87.6594245189111,41.843828973197304],[-87.659761731412,41.8442217618892],[-87.65994714056421,41.84443890480345],[-87.66013310631274,41.84465863165252],[-87.66029827311286,41.844853781928016],[-87.6605548021933,41.84534508092199],[-87.66058836585539,41.845420310290216],[-87.66072032808557,41.84571608657964],[-87.65860463387311,41.8472648461594]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4072592.60129","perimeter":"0.0","tract_cent":"1197336.60353285","census_t_1":"17031460900","tract_numa":"15","tract_comm":"46","objectid":"339","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1845901.72802369","census_tra":"460900","tract_ce_3":"41.73200917","tract_crea":"","tract_ce_2":"-87.55265683","shape_len":"9099.20514699"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.55548399550528,41.729998877144375],[-87.55565256465783,41.72996063129793],[-87.55663926661694,41.73067213659705],[-87.55986131715291,41.73299537056665],[-87.5601864031533,41.73322975703061],[-87.55981424852564,41.73351878691558],[-87.55973056388936,41.73358334593004],[-87.55963649819074,41.73362590193084],[-87.55957648898884,41.733630416188745],[-87.55925973682471,41.73363234430184],[-87.5589604017722,41.73363609039435],[-87.55878821572884,41.733638387659475],[-87.55853083620342,41.733641701923645],[-87.5582577375891,41.73364506463201],[-87.55773019326202,41.73365155862411],[-87.55728680916101,41.733657675971436],[-87.55689137412887,41.733662991835864],[-87.55680040739377,41.73366421441269],[-87.55645703546143,41.73366787590761],[-87.55611406611646,41.73367153909934],[-87.5554940690258,41.733679767126375],[-87.55514305998331,41.73368442406292],[-87.5548150439837,41.73368766323075],[-87.55480363046576,41.73368777690168],[-87.55438509051774,41.7336919393621],[-87.55411123483603,41.73369506863372],[-87.55373996547235,41.733699309727214],[-87.55353996979163,41.73370174002937],[-87.55341664745931,41.73370323541076],[-87.55296980998264,41.733708653747414],[-87.55272831947973,41.733712515182866],[-87.55229643241896,41.733719419439794],[-87.55204023107363,41.733722205752095],[-87.55203974080062,41.73372221120018],[-87.55203744627018,41.733722236213886],[-87.55163951213716,41.73372658778465],[-87.5513460999674,41.733730500053106],[-87.55096765936632,41.733735544819076],[-87.55065095451366,41.733738769254444],[-87.5503813897233,41.733741513254294],[-87.55023815769621,41.733742897272855],[-87.5499581382876,41.73374513954341],[-87.54969389422963,41.73374725490661],[-87.54926065037718,41.73375355313616],[-87.54859021999145,41.733763296057965],[-87.54839103316593,41.733763267040594],[-87.54837752021568,41.73376338823427],[-87.54795596261518,41.733767168282796],[-87.54733908271135,41.733767066314066],[-87.54717102050688,41.73376390222936],[-87.54696330388225,41.73375999092895],[-87.54698234648528,41.7337459642002],[-87.5469968203012,41.73372476743824],[-87.54700543296708,41.733703503120836],[-87.5470100222838,41.733669669790366],[-87.5470130621269,41.73362770270974],[-87.54700754280321,41.73351550542071],[-87.54700343555454,41.73332658644129],[-87.54700351971182,41.73319052403656],[-87.54699744632414,41.73289546980995],[-87.54699263771735,41.732640902471665],[-87.54698136531462,41.73217132933817],[-87.54697567835912,41.73195390893261],[-87.54695513056119,41.731168380001264],[-87.54695281249516,41.730913884517484],[-87.54694366387251,41.73063799128801],[-87.54693162029625,41.730124183252656],[-87.54740874918855,41.73011820985216],[-87.54779668728234,41.730113351745594],[-87.5478616895416,41.7301125405936],[-87.54795881954792,41.730111329340254],[-87.5484986147734,41.73010459445874],[-87.54930746106763,41.73009449820745],[-87.54986785238809,41.73009092631707],[-87.55063229316038,41.73008604937917],[-87.55125692888363,41.73007578052397],[-87.55182687623179,41.73006640776525],[-87.55208178133499,41.73006360924577],[-87.55263870698775,41.7300574928008],[-87.55335498724425,41.730049622258754],[-87.55402081746682,41.73004180411626],[-87.55462989454062,41.7300346488565],[-87.55483324472598,41.730032259121856],[-87.55525374518747,41.73002605112623],[-87.55540457566958,41.73001362527649],[-87.55548399550528,41.729998877144375]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2496098.04274","perimeter":"0.0","tract_cent":"1178973.4785552","census_t_1":"17031380800","tract_numa":"15","tract_comm":"38","objectid":"340","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875577.31166592","census_tra":"380800","tract_ce_3":"41.81387941","tract_crea":"","tract_ce_2":"-87.61902483","shape_len":"6482.95928812"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6209487568627,41.81113036357945],[-87.62126038121971,41.81112498940216],[-87.6212676435271,41.811393979944455],[-87.62127308233711,41.81158517983907],[-87.62128471862104,41.812005071101694],[-87.62129047226023,41.81221422048186],[-87.62129304721722,41.812309188337565],[-87.62129643289528,41.81243445800564],[-87.62130184407582,41.81264475784228],[-87.62131020105736,41.81294056006919],[-87.621315626175,41.81313258310866],[-87.62131913208201,41.813256508809495],[-87.62132658883432,41.81350403392246],[-87.6213337334294,41.813769778518086],[-87.62133817912512,41.81396124660374],[-87.62134250282705,41.814147170494294],[-87.62134727887216,41.81433199947317],[-87.62135284805888,41.81451142714365],[-87.62135885047944,41.814751635736435],[-87.621363548769,41.81493968242273],[-87.62136891465242,41.81514416402666],[-87.6213753900715,41.815390859417974],[-87.62138190075198,41.81563771967347],[-87.62138711239224,41.81583616289619],[-87.62139760890283,41.816229921578376],[-87.62140742832896,41.8165639908571],[-87.62109406690833,41.81656904286669],[-87.62073431661656,41.81657430351001],[-87.62059538631193,41.816575664404375],[-87.62040499996635,41.81657752905839],[-87.6201156616521,41.81658152331018],[-87.61979153393668,41.81658680074883],[-87.61945558721659,41.81659226946565],[-87.61930699118,41.81659439201173],[-87.61912057956758,41.81659730889479],[-87.61907891406938,41.81659796091984],[-87.61897805644992,41.816599580466885],[-87.61867883265131,41.816605085107135],[-87.61834858881784,41.81661150265349],[-87.61799426070438,41.81661838727647],[-87.6177361440755,41.81662263363097],[-87.61773169782295,41.816622706920796],[-87.61740268939441,41.81662790165607],[-87.61705259789852,41.81663197906254],[-87.61679234059298,41.81663500960243],[-87.61678285593585,41.8163129460548],[-87.61677633989824,41.8160418536372],[-87.61677123495109,41.81583169285713],[-87.61676336886678,41.815559988254705],[-87.61675630642642,41.815324760036134],[-87.6167479587389,41.81504690523376],[-87.6167411582762,41.8148222432553],[-87.61673289127968,41.81454913734701],[-87.61672624736094,41.814289542551606],[-87.6167190250536,41.81404234825109],[-87.61671090130838,41.81376413802682],[-87.6167030731997,41.813485737534016],[-87.61669560190151,41.813201658607085],[-87.61669016996315,41.813010070298304],[-87.61668043573799,41.81266673247261],[-87.61667093732298,41.81232100446233],[-87.61666975205253,41.812280436696724],[-87.61666477874633,41.812110041130985],[-87.61665867887635,41.811900395409644],[-87.61665226705432,41.8116792492246],[-87.6166477833231,41.81149903219268],[-87.61663943588232,41.81119696913332],[-87.61690106712173,41.811192766884425],[-87.6172324378911,41.81118744364097],[-87.61739617321564,41.81118511624578],[-87.61758254394918,41.81118249057705],[-87.61758616497777,41.81118243959312],[-87.61790891394135,41.81117788258537],[-87.61820355153245,41.8111727429621],[-87.61850018714591,41.81116756781516],[-87.61868699710229,41.8111650528584],[-87.61886090327395,41.81116266700102],[-87.61893610219207,41.81116163523335],[-87.6191535827152,41.81115867907769],[-87.61936387263137,41.81115581503089],[-87.61964248174267,41.81115086874584],[-87.62005545392954,41.81114353605688],[-87.62022546399342,41.81114102404871],[-87.62045208771845,41.8111376943623],[-87.62048282627596,41.811137242687906],[-87.62077016251469,41.8111329880646],[-87.6209487568627,41.81113036357945]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5384733.18906","perimeter":"0.0","tract_cent":"1163587.49793475","census_t_1":"17031284100","tract_numa":"33","tract_comm":"28","objectid":"341","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893384.53054415","census_tra":"284100","tract_ce_3":"41.86308136","tract_crea":"","tract_ce_2":"-87.67496115","shape_len":"9492.3384534"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67134343089305,41.859534280402066],[-87.67204554211294,41.85952600351854],[-87.67237360620902,41.859521969079324],[-87.67307914518251,41.8595132892992],[-87.6735107727312,41.85951670291221],[-87.67359923586312,41.859517238552606],[-87.67418101194285,41.85954198804278],[-87.67427259102358,41.859545880806714],[-87.67445899615126,41.85953260282362],[-87.6745537768642,41.8595258514748],[-87.67464769462991,41.85951916150951],[-87.67501897094604,41.85949269813934],[-87.6760460863921,41.859419481364505],[-87.67785221371622,41.859121389976906],[-87.67857067790139,41.859042474487886],[-87.67857950382748,41.859301856712776],[-87.67857497243722,41.85943115420868],[-87.67858841910625,41.860811934666096],[-87.67858985693223,41.86096351273683],[-87.67859239843104,41.86123148533895],[-87.67860242370797,41.86227298686856],[-87.67856559151419,41.862959526518814],[-87.67856619859728,41.86307993412761],[-87.67857298288047,41.86319730283771],[-87.67861927660473,41.86399816410916],[-87.67863533140867,41.86458719767625],[-87.67864010336443,41.8647311612396],[-87.67864467191578,41.86490611147236],[-87.67864971248622,41.86509913804139],[-87.67865504454203,41.86526744603425],[-87.67865704262267,41.865353828396564],[-87.67865891698894,41.86543481265565],[-87.67866453812249,41.865697140388576],[-87.67866784667603,41.86580999084858],[-87.67867347135703,41.86600180336583],[-87.67867799770401,41.86614617740501],[-87.6786818669996,41.86630882304486],[-87.6786867810591,41.866463094237254],[-87.67869065474513,41.866584683956276],[-87.67869096637122,41.86661589090096],[-87.67869199398983,41.86671873843901],[-87.67869198223947,41.866718738646455],[-87.67858908789637,41.86671981208413],[-87.67851017977561,41.866720634981434],[-87.67831656339004,41.86672331793501],[-87.67809440144907,41.86672649248141],[-87.67795697761309,41.86672845644009],[-87.67768183839317,41.866733033136235],[-87.67731087675058,41.86673772047776],[-87.67703966078342,41.866742784568316],[-87.67693868358585,41.86674432055872],[-87.67669494406023,41.86674792176265],[-87.67624969343437,41.86675457059541],[-87.67600396805861,41.86675823910286],[-87.67568098925672,41.866763003704285],[-87.6754566376842,41.86676630166306],[-87.67515459589744,41.86677000468782],[-87.67497684131587,41.8667724984872],[-87.67456221594429,41.86677824387848],[-87.67439217348262,41.866780506584995],[-87.67425198335677,41.866782336625555],[-87.67410532642903,41.86678467822543],[-87.67393887712127,41.86678739996602],[-87.67372744348849,41.86679046739565],[-87.67350115269257,41.8667937498471],[-87.67321908505406,41.866797260669976],[-87.67294484166415,41.86680034926848],[-87.67266200333269,41.86680382684873],[-87.67236435626634,41.8668085903566],[-87.67213948757683,41.866812126115086],[-87.67182664034442,41.86681696564685],[-87.67154794291356,41.866821177839725],[-87.67135019597096,41.86682323111434],[-87.67134630910664,41.86669227359277],[-87.67133934405288,41.86645759715879],[-87.67133559160682,41.86635389768713],[-87.67133199078874,41.86625439806766],[-87.67133117348284,41.86623180788721],[-87.67132499828982,41.866040360703494],[-87.67132243226588,41.86591536196276],[-87.67131788817608,41.865693995079795],[-87.67131368279468,41.865542927186056],[-87.67131112289714,41.86546178436875],[-87.67130729195513,41.86534036451298],[-87.6713025798442,41.865195715239786],[-87.67129831077703,41.865010863019556],[-87.67129298754021,41.864780372183425],[-87.67128832682378,41.86461291845067],[-87.67128695431995,41.86455945386454],[-87.67128371772333,41.86443341746554],[-87.67127965422675,41.86430059963853],[-87.67127527493899,41.864104199485446],[-87.67127144689958,41.86393254825782],[-87.6712664758882,41.863780981937566],[-87.67125904225452,41.86360835299345],[-87.67125379912504,41.86342267402538],[-87.67124796047443,41.86320159733365],[-87.67124036205992,41.86291389427943],[-87.67123610678377,41.86274786956594],[-87.67123397538191,41.86266470666335],[-87.67122951042904,41.86251388417461],[-87.67122331028769,41.86229252435161],[-87.67121861811285,41.86212501547828],[-87.67121436204461,41.86193975378994],[-87.67121171175866,41.86184547338011],[-87.67120885678428,41.86174391951491],[-87.67119379631795,41.86152064248618],[-87.67119409286961,41.861387712788755],[-87.67119466781344,41.86113019499056],[-87.67119041154108,41.86098940528646],[-87.67118889249411,41.86093916157603],[-87.67118646968515,41.86085902525173],[-87.67118216520473,41.86071664853477],[-87.6711762903185,41.86059380432391],[-87.67117338652845,41.860511792542034],[-87.6711676868233,41.86035083575256],[-87.67116377379537,41.86017806563709],[-87.67116095880068,41.860053789540665],[-87.67115971571938,41.85999889672387],[-87.67115711237638,41.859883959720676],[-87.67115461045339,41.859773496710254],[-87.67115242677227,41.85967709160775],[-87.67114344424452,41.85954172004254],[-87.67134343089305,41.859534280402066]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3544841.89843","perimeter":"0.0","tract_cent":"1149023.42610188","census_t_1":"17031260200","tract_numa":"14","tract_comm":"26","objectid":"342","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901022.25917292","census_tra":"260200","tract_ce_3":"41.88433421","tract_crea":"","tract_ce_2":"-87.72822717","shape_len":"7971.60830478"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72722004960644,41.887994501761455],[-87.72697457666825,41.88798085706531],[-87.72680653324578,41.88798339968247],[-87.72632125446397,41.88798803925308],[-87.72587356201102,41.88799356221024],[-87.72587356205781,41.887993557270846],[-87.72587189697468,41.88789725866755],[-87.72587007905597,41.88783403344496],[-87.72586821091541,41.887769054383334],[-87.72586402425293,41.88762344975689],[-87.72585553070478,41.88729442470478],[-87.72584760936496,41.8869875764384],[-87.72584320649393,41.88682975848076],[-87.72583639672055,41.88658564952586],[-87.72582323685752,41.88612152794616],[-87.72582268825896,41.88610217811037],[-87.72580826398138,41.88566326942338],[-87.72580581862985,41.88552305212781],[-87.72580510530983,41.88548213301556],[-87.72580483829384,41.88546682502091],[-87.72580458705235,41.88545241036183],[-87.72580420814418,41.88543069423464],[-87.72580231493701,41.88532212814908],[-87.72579457982845,41.8850670644157],[-87.72578860351018,41.88487002334645],[-87.72578280425952,41.88467844453214],[-87.72577892601255,41.884550322308144],[-87.72576854811635,41.8842114901458],[-87.72576355543647,41.88402200092929],[-87.72575779800131,41.883803500969684],[-87.7257485939089,41.883464867344024],[-87.72574563961918,41.8833616403028],[-87.72573995850458,41.88316311856726],[-87.72573370512602,41.882993683368035],[-87.7257318781103,41.88293000716206],[-87.72572520005203,41.882697259644374],[-87.72571280689293,41.882265331824705],[-87.72570680601757,41.88193743847751],[-87.7256933317092,41.881515500253734],[-87.72568684359373,41.88137784188122],[-87.72568161141109,41.88114716013561],[-87.72567526566068,41.880964249852155],[-87.72567027835919,41.880726990598596],[-87.72587540637446,41.880722936665585],[-87.72622562090649,41.88071869638227],[-87.72652735194693,41.880715653311434],[-87.72690554639526,41.880711586236124],[-87.72719840087757,41.880707478881725],[-87.7275187196739,41.880703708311145],[-87.72789619207184,41.88069831692465],[-87.7281194806436,41.880695791611586],[-87.72851354290276,41.880691333870566],[-87.7289702534676,41.88068660322317],[-87.72930379267552,41.88068273231668],[-87.72973981042169,41.8806760785642],[-87.72995178410943,41.88067411892482],[-87.73032491120206,41.88066998624599],[-87.73057382275401,41.88066748339875],[-87.73058328125465,41.880924060745166],[-87.73058704665837,41.881089970335445],[-87.73059117975001,41.88124410902472],[-87.7305946553096,41.881342552206874],[-87.7305974442403,41.881421530122786],[-87.73060147634807,41.88154136516877],[-87.73061232262089,41.88184680204126],[-87.73061527829492,41.88198560516013],[-87.73061987999341,41.88218754010803],[-87.7306208180777,41.88224402165561],[-87.73062261432985,41.882303437191226],[-87.73062583262762,41.88240988287789],[-87.73063290668556,41.88264466351586],[-87.73063509066863,41.88271713848748],[-87.73063834493115,41.88282515324141],[-87.73065035446753,41.88317916905569],[-87.73065045128534,41.88318199641321],[-87.73065045176187,41.88318202385818],[-87.73065309368515,41.88330448028512],[-87.73065523504488,41.88340372927485],[-87.73067235340173,41.88396542932593],[-87.73068885921583,41.88449940921182],[-87.73069251525268,41.884621153860216],[-87.73069624343235,41.88474530504014],[-87.73070994621094,41.885181767883864],[-87.73071306029921,41.88528096047383],[-87.73072313645153,41.88561166760828],[-87.7307249374659,41.88569622866255],[-87.73072591176967,41.885741989418044],[-87.73072677337774,41.885782430409144],[-87.73072892052045,41.885883268578624],[-87.73074178101042,41.88632178509804],[-87.73074417435265,41.886403383817544],[-87.73075028064386,41.886611593810876],[-87.73075454452058,41.88676790098865],[-87.73075689086099,41.88685391796522],[-87.73075986544472,41.886939361945345],[-87.73076461208183,41.8870757209807],[-87.73076922229325,41.88723156289213],[-87.73077168625024,41.88731483705636],[-87.73077709213541,41.887497547927644],[-87.73078384382673,41.88772577120642],[-87.7307894411509,41.88793130119416],[-87.72993041565837,41.88794291319167],[-87.72861871261058,41.887958310489886],[-87.72845982735943,41.8879671394999],[-87.72839602309003,41.88797068487272],[-87.72832114432043,41.88797484557784],[-87.72815608073088,41.887984017578844],[-87.72782690033108,41.88800230823173],[-87.72766013458902,41.888011574277094],[-87.72749260273437,41.88800863238051],[-87.72732511231028,41.88800123078545],[-87.72722004960644,41.887994501761455]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3553343.78361","perimeter":"0.0","tract_cent":"1156677.71720509","census_t_1":"17031221300","tract_numa":"25","tract_comm":"22","objectid":"343","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914485.1145442","census_tra":"221300","tract_ce_3":"41.92112591","tract_crea":"","tract_ce_2":"-87.69975441","shape_len":"8000.54408961"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7018644170225,41.91744672946288],[-87.70208884977572,41.91744483808677],[-87.70209304995265,41.91756379307237],[-87.70210933476028,41.91804022595801],[-87.70212222589207,41.91847131371308],[-87.7021230859509,41.91850006945599],[-87.70212862440195,41.918685280759824],[-87.70215561757641,41.919541040200414],[-87.70215964465075,41.919668708487436],[-87.7021614150547,41.919726827260526],[-87.70217208221938,41.920077008294555],[-87.70217941952933,41.92030934756034],[-87.70218474421712,41.920507290573745],[-87.70219027802541,41.92070441118677],[-87.70219477993628,41.920864781455826],[-87.70219968038542,41.92102002193006],[-87.70220911796953,41.921300259477405],[-87.70221212743174,41.92150343093093],[-87.7022165319906,41.92180076504546],[-87.70222270841747,41.92201315775294],[-87.70222816864802,41.92220090993956],[-87.70223325560708,41.922384929839986],[-87.7022367286941,41.922510560721484],[-87.70223769467316,41.922552552708446],[-87.70224236670965,41.9227177531509],[-87.70224386993094,41.922761607577456],[-87.70225050088374,41.9229550365699],[-87.70225462890077,41.923106650361085],[-87.70226107740731,41.92325889956687],[-87.70226974264408,41.923463482929876],[-87.70227326484357,41.923568441522015],[-87.7022867087591,41.92380034192207],[-87.70229581539753,41.92395742238311],[-87.70230219934318,41.92410012980833],[-87.70230832770004,41.924347088988625],[-87.7023133724762,41.92458468439138],[-87.70231833542036,41.92476271672737],[-87.70205443841076,41.9247655051586],[-87.70170825040735,41.92476911722569],[-87.7016467313512,41.92476962237346],[-87.70153813248824,41.92477051416276],[-87.70150180596217,41.9247708120768],[-87.7014223642476,41.924771455855335],[-87.7010588185017,41.92477388536915],[-87.70074418052297,41.92477490317491],[-87.70040468912605,41.92477888382355],[-87.6998644071019,41.92478521635683],[-87.69952177931346,41.92478923115242],[-87.6992698212538,41.9247916271106],[-87.69914429429605,41.92479170224656],[-87.6989005348305,41.92479368082359],[-87.69863590163803,41.92479582807809],[-87.69843212562047,41.924797481116855],[-87.698048720875,41.92480030006741],[-87.69780741377019,41.92480324570577],[-87.6974126969069,41.92480728586468],[-87.69740526526127,41.924521437408515],[-87.69740271497024,41.92437861375715],[-87.69740128838285,41.924308465081936],[-87.69739538233753,41.924018009261395],[-87.69739043343749,41.923858075782384],[-87.69738208051083,41.923588123596225],[-87.69737693222874,41.92340042867869],[-87.69736870528455,41.92309659721921],[-87.69736157231361,41.922906583946684],[-87.697354466739,41.922717293648645],[-87.6973523156291,41.922593489655966],[-87.69735004447,41.92252558490035],[-87.69734429778384,41.922422397850134],[-87.69734077415407,41.92233915854899],[-87.69733624505263,41.92223217803341],[-87.69733481134146,41.92218232943831],[-87.69732529220168,41.92185135583504],[-87.69732044429237,41.92168930979795],[-87.69731582984949,41.92153505892982],[-87.69730963613546,41.9212966333009],[-87.69730690441813,41.92118690394898],[-87.6973019135159,41.920986465354524],[-87.69729461011364,41.92075988889431],[-87.6972911589946,41.92064335041059],[-87.69728767590361,41.92052574040074],[-87.6972725964787,41.919994402028536],[-87.69726386542575,41.91968960683734],[-87.69726112304886,41.91959206176917],[-87.697256460187,41.919425653368414],[-87.69725341854272,41.919317102281425],[-87.69724036436176,41.91891504602574],[-87.6972391812087,41.91887860544422],[-87.69723261163406,41.91865217017489],[-87.69722959639758,41.91854263102234],[-87.6972258882936,41.9184079239986],[-87.69722202779623,41.91822318883201],[-87.69721942359439,41.91814241119471],[-87.69721508968094,41.918007974842965],[-87.69720692058142,41.91775762871466],[-87.69720413258678,41.91760179592913],[-87.6972005824373,41.91748948404194],[-87.6973539563223,41.91748827381613],[-87.69761760774148,41.917485754664106],[-87.69771557161296,41.91748483596108],[-87.6980813026731,41.91748140546702],[-87.69823276890975,41.91748000513848],[-87.69842300114463,41.917478245973406],[-87.69859897374938,41.91747692303527],[-87.69874147083769,41.91747585170771],[-87.6990149000798,41.91747284551564],[-87.69930957773327,41.91746876610284],[-87.69944425689093,41.91746690156014],[-87.69978008160285,41.91746318419774],[-87.69988594690426,41.91746211184995],[-87.69999390709573,41.91746101802858],[-87.70034130400522,41.917457497868774],[-87.70046347484114,41.917457202852695],[-87.70058020841341,41.917456921103025],[-87.70080491339318,41.91745440750372],[-87.70106091852077,41.9174522559952],[-87.70119481797713,41.91745116803429],[-87.70152237210446,41.91744775679358],[-87.70165810672717,41.91744734935427],[-87.7018644170225,41.91744672946288]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1752277.21791","perimeter":"0.0","tract_cent":"1154486.30179502","census_t_1":"17031271600","tract_numa":"8","tract_comm":"27","objectid":"383","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896510.53856917","census_tra":"271600","tract_ce_3":"41.87184613","tract_crea":"","tract_ce_2":"-87.70828735","shape_len":"5298.06879583"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70579788261433,41.87021388907377],[-87.70578982010883,41.87005290916364],[-87.70583961521346,41.870054396950124],[-87.70603428945581,41.87006021267354],[-87.70614966146637,41.87005889437365],[-87.70634956153884,41.8700565830066],[-87.70641874034906,41.87005582591132],[-87.70689573487988,41.87004924509049],[-87.70721336001695,41.870045269134074],[-87.70760831603012,41.87004039641547],[-87.70782536538132,41.87003773683413],[-87.70802750540481,41.8700353798609],[-87.70821411201862,41.8700331674017],[-87.70849545801701,41.8700298312593],[-87.70876779483416,41.870027662783464],[-87.70913165067678,41.870023054768495],[-87.70948754467967,41.87001785350113],[-87.70972005659017,41.870014615710296],[-87.70994496351237,41.87001188501897],[-87.71022340150577,41.87000911503028],[-87.71065978966098,41.87000410369398],[-87.71066515771544,41.87019833971534],[-87.71067102096953,41.870373482533836],[-87.71067467010444,41.870477975735895],[-87.71067633130166,41.87053481793603],[-87.71068302149844,41.87076375257294],[-87.71068902014395,41.87090051280032],[-87.7106994964873,41.8711393653687],[-87.71070495552165,41.87129568012218],[-87.71070748538583,41.8713633122083],[-87.71071107748963,41.87145935306061],[-87.71071570906079,41.871655537299176],[-87.7107218715248,41.871816820751995],[-87.71072973393373,41.87202260212736],[-87.71073109782722,41.872150683747925],[-87.71073421180999,41.872270347531085],[-87.71073561742034,41.872324364492435],[-87.71074526708144,41.87254450577778],[-87.7107521299061,41.87272394594979],[-87.71075944121208,41.87291513888234],[-87.71076697962648,41.8731069205835],[-87.7107698129098,41.87317523129887],[-87.71077310919371,41.873254704294986],[-87.71077785539475,41.87339369862548],[-87.71078177066471,41.873628347274625],[-87.7104386969702,41.87363220136032],[-87.71022902114406,41.8736343021346],[-87.70950731220485,41.87364442753679],[-87.70891884467234,41.87365268015698],[-87.70867185826576,41.873655371053644],[-87.70834720424766,41.87365915085539],[-87.70809033794036,41.87366214074212],[-87.70781074053531,41.87366544807056],[-87.70743904024638,41.87367039331247],[-87.70704493607825,41.873675983566116],[-87.70647120128444,41.873682567972004],[-87.7063547982168,41.87368352420371],[-87.70609151086124,41.873686038227845],[-87.70591685148717,41.87368777763854],[-87.7059085949464,41.87347482944476],[-87.7059020616513,41.873331928055144],[-87.70589769167093,41.873185580450176],[-87.70589501123062,41.87303166848822],[-87.70589133730057,41.87288172998383],[-87.70588727750358,41.87277871743317],[-87.70587957056806,41.87258317350366],[-87.70587481832969,41.87246841039674],[-87.70587023336107,41.872351562570294],[-87.7058635308385,41.87217342403898],[-87.7058581237542,41.87203552330592],[-87.70585098214899,41.871871463668604],[-87.70584265400271,41.871680140538636],[-87.70583926164824,41.87154647694876],[-87.70583815008733,41.87139734823791],[-87.70583354774583,41.871267273000015],[-87.70582621065199,41.871063938733904],[-87.70582379950399,41.87095935666339],[-87.70581896625822,41.870749737185335],[-87.70581515747962,41.87066244915844],[-87.70581068236845,41.87054189715339],[-87.70580496408719,41.870387034925834],[-87.70579788261433,41.87021388907377]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"21265072.5791","perimeter":"0.0","tract_cent":"1164033.10396977","census_t_1":"17031720100","tract_numa":"65","tract_comm":"72","objectid":"344","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1844018.00823103","census_tra":"720100","tract_ce_3":"41.72760409","tract_crea":"","tract_ce_2":"-87.67471379","shape_len":"18924.6413285"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68174286760959,41.720940182780744],[-87.68206472657727,41.72093741726222],[-87.68206472686042,41.72093742549679],[-87.68206715819387,41.72100865441981],[-87.6820771453431,41.72130018594994],[-87.68208720798457,41.72163137278512],[-87.68209293746487,41.72182570319414],[-87.68210115791547,41.72210575340718],[-87.68210493039336,41.72223426334481],[-87.68211329880786,41.72251552132825],[-87.68212201947448,41.72277655537618],[-87.68213122166989,41.723052522890974],[-87.68213123714438,41.72305298567111],[-87.68213163525637,41.72306492846586],[-87.68214066880547,41.72334577797983],[-87.68214491227583,41.723480548706114],[-87.68215020912623,41.723650671694614],[-87.68215550600165,41.72382079440363],[-87.68216997432707,41.72431073779708],[-87.68217150051431,41.72436297195153],[-87.68217544655468,41.724498040921915],[-87.68218341193213,41.72477213410745],[-87.68219940488206,41.725270675228195],[-87.68219940517356,41.725270682639504],[-87.68220089612856,41.72531701300532],[-87.68220091124866,41.72531747468553],[-87.68221646995416,41.72579370198141],[-87.6822334627867,41.72633849100001],[-87.68223501115857,41.726388281719615],[-87.68224384197556,41.72668924632301],[-87.68226143974296,41.72730731665213],[-87.68226509801025,41.727435793988974],[-87.6822770152585,41.72785920006274],[-87.68227914679939,41.72792384083466],[-87.6822862635852,41.728137420946375],[-87.68228954983304,41.72823602562626],[-87.68228954970282,41.72823603852382],[-87.68229904514615,41.728521940488],[-87.68230432286263,41.728710895272414],[-87.68230534161785,41.728747366442306],[-87.68230534157352,41.72874737083297],[-87.68231501200732,41.72907767298063],[-87.68232562881077,41.72942310495331],[-87.68233794349112,41.7298072424963],[-87.6823457059209,41.730058034744275],[-87.68235455650748,41.73034253335974],[-87.6823616273069,41.730596560233835],[-87.68237622222587,41.7310705038353],[-87.6823891248245,41.73147991865311],[-87.6823905772113,41.73152588183367],[-87.68240167505324,41.731877037730605],[-87.68240167503662,41.73187703937711],[-87.68240852522183,41.73209074763282],[-87.68241515927815,41.73229770720582],[-87.68242465399852,41.73259676356154],[-87.68243139347696,41.73280903862955],[-87.68243139346033,41.73280904027605],[-87.68244552886344,41.73325240776276],[-87.68245103435625,41.733418683006796],[-87.68245518671385,41.73354407400048],[-87.68246755938661,41.7339298847966],[-87.68247878836273,41.734327270646745],[-87.68248531885578,41.734656625454065],[-87.68249978405984,41.73505649891816],[-87.68251198245498,41.73545954346768],[-87.6825119824162,41.735459547309496],[-87.68251236279573,41.735472024295234],[-87.68251237412645,41.735472389902135],[-87.68251404718212,41.73552728429953],[-87.68198758307753,41.73553396993985],[-87.68188937364008,41.73553608175551],[-87.68162706118893,41.73554172318314],[-87.68125202760883,41.7355472158767],[-87.68091771020435,41.73555076119851],[-87.68081435835,41.73555267082811],[-87.68069238993462,41.73555492496782],[-87.68049469495243,41.735558156036845],[-87.6803567705303,41.73555917423492],[-87.68029951939288,41.73555959697207],[-87.68024469097283,41.73556000161693],[-87.67994379902143,41.73556373408367],[-87.67944810694264,41.73557180071768],[-87.67890155954557,41.735578486908125],[-87.67866172903585,41.735580386711604],[-87.67845094258183,41.73558462861703],[-87.67817765222384,41.735589602437365],[-87.67800177855244,41.73559077684502],[-87.67780410478595,41.73559182661483],[-87.67758054184101,41.73559425111794],[-87.6775594936482,41.73559447924749],[-87.67720376272666,41.735600374878736],[-87.67691304332479,41.73560415776965],[-87.67664993708003,41.735608097740126],[-87.67639991145549,41.73561211161983],[-87.67623711690146,41.73561335810219],[-87.67613476859438,41.73561448877787],[-87.676042339437,41.735615510073146],[-87.6758330172245,41.735618666881706],[-87.67565421417096,41.73562199827185],[-87.6754318123846,41.73562507948424],[-87.67513382674079,41.73562881599373],[-87.67478062582623,41.73563114688949],[-87.67427097923047,41.7356465249704],[-87.67380662753285,41.73565427060761],[-87.67348556842596,41.73565777078269],[-87.67347314731714,41.735657906373326],[-87.6733722676897,41.73565900569949],[-87.67308255593431,41.735656724964834],[-87.66974811949271,41.73190706355063],[-87.66914919019527,41.73123296125266],[-87.66820094034361,41.73028480336649],[-87.66816830658372,41.730252025705624],[-87.66815062835565,41.730234428352546],[-87.66811663188152,41.73020061394394],[-87.66805725338607,41.730141267097636],[-87.6678930900866,41.72987874721692],[-87.66726347237011,41.72887188167153],[-87.66724702338679,41.72885064136027],[-87.66724812937566,41.728847308761154],[-87.66724822389635,41.72884702472342],[-87.66727541922808,41.72876510094599],[-87.66730931845184,41.72868184468326],[-87.66731972191053,41.728436548226696],[-87.66731972340914,41.72843650954051],[-87.66716132932197,41.728164970954886],[-87.66708438610303,41.72803314093893],[-87.66537700101595,41.724831223501766],[-87.66536214972447,41.72480337097818],[-87.66441444244973,41.723022626607396],[-87.66344522717199,41.72120162660872],[-87.66380761131296,41.721197144301996],[-87.66431945761312,41.72119096272283],[-87.66474320098078,41.72118510576609],[-87.66488934788899,41.72118307502769],[-87.66536711047205,41.72117566961932],[-87.66555561537184,41.72117287159733],[-87.66589536532817,41.721167827994115],[-87.66626013907208,41.721163398759145],[-87.66650322935283,41.72116044622093],[-87.66655019845932,41.721159848553135],[-87.66705283505658,41.72115345069187],[-87.66744538684141,41.72114753106589],[-87.66764517994694,41.721144517852345],[-87.66826278230697,41.72113427365615],[-87.66834136955245,41.72113299708254],[-87.66865897841626,41.72112783720562],[-87.66913968124499,41.7211234905638],[-87.66939499401354,41.7211211810568],[-87.66975941635725,41.721116325386554],[-87.67027087134538,41.72110950826398],[-87.67076065798982,41.72110115718742],[-87.67098990888921,41.72109724787702],[-87.67117211794746,41.721094140620764],[-87.67194694374305,41.72108134277266],[-87.67229843583229,41.72107900102717],[-87.67236230128607,41.7210782215532],[-87.67278766577358,41.721073028684444],[-87.67314905523327,41.721068615753616],[-87.67358127154546,41.72106164257139],[-87.67398028728091,41.72105520341],[-87.6743993046356,41.721049073505604],[-87.67479155114053,41.721043333950306],[-87.67496075015671,41.72104138875329],[-87.67561356680095,41.72103401269599],[-87.67600806424885,41.721028899892374],[-87.67643117654498,41.72102341445144],[-87.67721960888939,41.72101062973716],[-87.67818491277029,41.72099560163423],[-87.67842316361799,41.720992092425895],[-87.67914625212006,41.72098143887139],[-87.67962731783447,41.72097516726176],[-87.679746639525,41.720973611577826],[-87.68003960271969,41.72096979107957],[-87.68083373452089,41.72095740365939],[-87.68089413326922,41.72095646116922],[-87.68174286760959,41.720940182780744]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1742185.46905","perimeter":"0.0","tract_cent":"1169118.36697718","census_t_1":"17031310500","tract_numa":"12","tract_comm":"31","objectid":"345","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890573.72256057","census_tra":"310500","tract_ce_3":"41.85525009","tract_crea":"","tract_ce_2":"-87.65473949","shape_len":"5730.06574177"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6556912520169,41.852502695434715],[-87.65626276907257,41.8524938340652],[-87.65629754778207,41.85372076302699],[-87.65630247638558,41.85380059480184],[-87.65631080888541,41.85393557903837],[-87.65632103322946,41.85431695407959],[-87.6563264308018,41.854518277130445],[-87.65634048588325,41.85500933492868],[-87.65634568742878,41.85520088724654],[-87.65635159008407,41.855418267142355],[-87.65636272202964,41.8559099942448],[-87.65636508745973,41.85601448146608],[-87.6563697193365,41.85613646322953],[-87.65638709552663,41.856594033373725],[-87.65639568429714,41.85682018322339],[-87.6564209310204,41.8577085377392],[-87.65642944223428,41.85795320120327],[-87.65610821646052,41.85795889125129],[-87.65583204888092,41.85796350317105],[-87.65537730017914,41.857971099396174],[-87.65504202149238,41.85797669390145],[-87.6548471379258,41.85798008945164],[-87.65454680959391,41.8579853214669],[-87.65431765306768,41.85798756184466],[-87.65372879345739,41.85799334978097],[-87.65338776615731,41.857997336548834],[-87.65321191262412,41.857999391647375],[-87.65319537400929,41.857422657396796],[-87.65319237413196,41.857321162289324],[-87.65318080920784,41.85692994988079],[-87.65317183357905,41.8566421264156],[-87.65315976308369,41.856255065219756],[-87.65315112083886,41.85594192436649],[-87.6531428499511,41.855638223191505],[-87.6531404710159,41.85555088715066],[-87.65313203242162,41.855246288412864],[-87.6531214520184,41.85486440886891],[-87.65311245129531,41.85455013820018],[-87.65310352724761,41.85424045032774],[-87.65309852918861,41.85406698397727],[-87.65309220862328,41.85385292003471],[-87.65308988536269,41.853774230351604],[-87.65308668468575,41.853665868132396],[-87.6530813170971,41.85340853480654],[-87.65306866830112,41.85305036177639],[-87.65305086066594,41.85254511317055],[-87.65352814828829,41.85253718941262],[-87.65373201740083,41.8525339249844],[-87.65437155425924,41.852523682122296],[-87.65468752688032,41.85251875729049],[-87.65523837817213,41.852510169688316],[-87.65566078142827,41.85250316768546],[-87.6556912520169,41.852502695434715]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5574876.23915","perimeter":"0.0","tract_cent":"1163372.037787","census_t_1":"17031241400","tract_numa":"33","tract_comm":"24","objectid":"346","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909032.7757174","census_tra":"241400","tract_ce_3":"41.90602597","tract_crea":"","tract_ce_2":"-87.67531162","shape_len":"10471.0029701"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67937996772977,41.9031519141949],[-87.67969985673018,41.90314674593034],[-87.67971105168387,41.90349413925367],[-87.67971454214533,41.90363630006423],[-87.6797222118211,41.90394864807407],[-87.67972625496634,41.90407771927525],[-87.67973252061326,41.904277740491395],[-87.67974686784189,41.90475114772163],[-87.67975371609958,41.90496029241793],[-87.67975667153172,41.90505054460208],[-87.67976705050013,41.905439165553915],[-87.67976786275084,41.905469597969834],[-87.67977873175185,41.905877068805594],[-87.67978191966256,41.90597233930636],[-87.67978593949829,41.90609247729832],[-87.67979863103827,41.906555391979566],[-87.67981061300326,41.9069906407123],[-87.67981485804918,41.90709684666837],[-87.67981977393005,41.90721983632876],[-87.67982542035894,41.907429829744466],[-87.67983902720437,41.90793267811316],[-87.67984513893654,41.908211819486034],[-87.67984860109868,41.90836994376699],[-87.6798580430565,41.908706220880084],[-87.67986275131992,41.90887364585627],[-87.67986403432393,41.90891923540736],[-87.67987286366132,41.90923292342076],[-87.67987583861415,41.90932568442404],[-87.67988019403873,41.90946150479618],[-87.67989121329111,41.909868756659144],[-87.67990665810129,41.91044005778037],[-87.67968153090804,41.91044319331365],[-87.67920758399706,41.91045262391386],[-87.67920508565199,41.910452673622395],[-87.67873631886607,41.91046198085339],[-87.67852206052446,41.91046623562035],[-87.67839842899282,41.91046869134321],[-87.67817539134008,41.910473117122734],[-87.67813372567585,41.910473943601325],[-87.67758604859891,41.910472744553736],[-87.67701549291121,41.910089402739025],[-87.67663444584693,41.909845622002564],[-87.67584788626964,41.90934243669669],[-87.67569968755454,41.90924762800645],[-87.67536587866276,41.90903408058194],[-87.67526419804004,41.90896884379613],[-87.67511061922048,41.90887029632565],[-87.67492039392876,41.90874865163091],[-87.67481360702836,41.90867987254788],[-87.67466434918671,41.90858285858524],[-87.67428140391421,41.90833963512748],[-87.67382672111982,41.90804934698792],[-87.67367933820874,41.90795555764969],[-87.67340626746444,41.907781783636246],[-87.67313783596066,41.90761020797771],[-87.67288188833703,41.90744660688202],[-87.67266721000493,41.90730986501371],[-87.6724866274092,41.907194840067056],[-87.67226983798115,41.90705675187998],[-87.67189418957514,41.90681660880233],[-87.6715126322102,41.906572643391804],[-87.6713624462096,41.90647653441896],[-87.67112633554692,41.9063254386235],[-87.67080561466051,41.90612092699516],[-87.67059896283122,41.90598716086203],[-87.67041070383812,41.90586530019485],[-87.66999125960915,41.90560241368804],[-87.66985679815812,41.90551813889106],[-87.66945751001984,41.90526734079784],[-87.66933980511112,41.90519340072857],[-87.6692669257777,41.90514694696358],[-87.66913347677654,41.90506093924755],[-87.66896138361193,41.90495000969521],[-87.66885701883113,41.90488272094503],[-87.66864509340255,41.904747242662836],[-87.66862335340615,41.90473334460819],[-87.66837123044681,41.90457151185818],[-87.66814958872746,41.9044282963783],[-87.66799647682973,41.90432933041545],[-87.66783840548334,41.90422693292948],[-87.66751311917221,41.90401719268719],[-87.6675064951508,41.9037755030648],[-87.66750543540708,41.903720802961665],[-87.66750384091729,41.90363855039047],[-87.6674952601614,41.90334633326628],[-87.66815157455314,41.903338105998216],[-87.66833499229645,41.90333420127749],[-87.6687205559775,41.90332695324941],[-87.66884488548567,41.90332461597087],[-87.66915197355154,41.90331884182393],[-87.66935926387073,41.90331537595838],[-87.6697832139762,41.90330822117653],[-87.66994431908589,41.903305710194005],[-87.6704254681551,41.90329821003632],[-87.67059506055946,41.90329556601738],[-87.67116703872784,41.9032858347388],[-87.67139005484255,41.90328203958744],[-87.67213704600775,41.90327122247536],[-87.672380601107,41.90326672423345],[-87.6725380392681,41.90326381611199],[-87.67286726970364,41.903258400936764],[-87.67299538386594,41.90325629333523],[-87.67328765366761,41.90325149453574],[-87.67338905713142,41.90324982982978],[-87.67359424347677,41.90324734120651],[-87.6738202599522,41.90324459946071],[-87.67393099056659,41.90324325595664],[-87.67458165613803,41.90323315954924],[-87.6748220534164,41.90323018383987],[-87.67506337613834,41.90322719536918],[-87.67542416549924,41.90322139723915],[-87.67559456626867,41.90321865853466],[-87.67603942258792,41.903210942330126],[-87.67626038115445,41.903207102614644],[-87.67699885623159,41.90319551908085],[-87.67725780382375,41.903191126461074],[-87.67753008746423,41.90318650673174],[-87.67824514371144,41.903173162883235],[-87.67854432651873,41.90316757180815],[-87.67855343832052,41.903167401756626],[-87.67937996772977,41.9031519141949]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1440447.9027","perimeter":"0.0","tract_cent":"1176054.73653167","census_t_1":"17031081600","tract_numa":"11","tract_comm":"8","objectid":"374","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904048.56620653","census_tra":"081600","tract_ce_3":"41.89207263","tract_crea":"","tract_ce_2":"-87.62887416","shape_len":"7571.7499143"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62928432996648,41.88741942304758],[-87.62953702557662,41.887420227229946],[-87.62953755488567,41.887546057693505],[-87.62953977073339,41.88780327098905],[-87.62954407384156,41.88803624622381],[-87.62955438199624,41.88832168282206],[-87.62955919202668,41.88845253566209],[-87.62956405410242,41.88858480484523],[-87.62957530804422,41.888891158310564],[-87.62957829418504,41.888985385777865],[-87.62958250950436,41.88911839796641],[-87.62958605202193,41.88920975150534],[-87.62958692819406,41.88923234744699],[-87.62959086794122,41.88933395424703],[-87.62959745445838,41.889637672041296],[-87.62960408554228,41.88995332752897],[-87.6296070309301,41.89003973035668],[-87.62961108652867,41.89015869433514],[-87.62961844415578,41.890444167902345],[-87.62962603999623,41.890740400053026],[-87.6296281667907,41.89083279236542],[-87.62963113825353,41.8909618635719],[-87.62963800550392,41.89124357421364],[-87.62963946999992,41.89130365454989],[-87.62964616012798,41.891537394817675],[-87.62965216204219,41.89164645438886],[-87.62965831625303,41.89175827065415],[-87.62966768199001,41.8921397221478],[-87.62967252216083,41.89234787475474],[-87.62967614372174,41.892448378560225],[-87.629679898374,41.892552585155165],[-87.62968794744701,41.892843197854134],[-87.62969425237392,41.89315217910226],[-87.62969606032446,41.8932491045472],[-87.62969790612544,41.89334800277976],[-87.62970519047066,41.8936212636098],[-87.62971428233662,41.8939641567791],[-87.6297170779655,41.89405214726563],[-87.6297196055605,41.89413169758187],[-87.62972544577504,41.89445291877352],[-87.62972653643672,41.8946888199905],[-87.62972431909824,41.89485409420822],[-87.62974340981916,41.895292545502755],[-87.62975407930124,41.89565701189146],[-87.6297585296874,41.89580902096048],[-87.62976788679438,41.89622145454568],[-87.62977463923221,41.89665552470661],[-87.62931898453412,41.896661705187775],[-87.62918890190944,41.89666356402449],[-87.62888222907164,41.89666794546539],[-87.6281993917997,41.896677393628586],[-87.62819322666621,41.896418821112064],[-87.62818567270696,41.89605708452634],[-87.62817461642842,41.89567880419252],[-87.62816453785426,41.8953339584691],[-87.62815791691801,41.89509440092045],[-87.62815340345709,41.894876053329966],[-87.62814933329237,41.89467914532686],[-87.62814437100057,41.89444267148058],[-87.62813852170724,41.89416640075299],[-87.62813467276845,41.89407249020997],[-87.62813038464583,41.89396788789357],[-87.62811966598001,41.89365679032165],[-87.62811043799132,41.89339389040628],[-87.62811631112322,41.893271668539846],[-87.62812129823236,41.89316788689042],[-87.62811333428246,41.89288353505871],[-87.6281057392504,41.89260571676211],[-87.62809228037153,41.89246918652956],[-87.62808237939578,41.89236874565041],[-87.62807734001755,41.89205894521772],[-87.62807052791953,41.89178672993222],[-87.62806935727069,41.89167222657526],[-87.62806812149343,41.89155142424236],[-87.62805310650647,41.891237034507014],[-87.62804255541099,41.8910109542955],[-87.62803799181683,41.890865949561466],[-87.62803482644786,41.89076537987689],[-87.6280241804594,41.89046781166541],[-87.62801254753737,41.89015980927148],[-87.6280088012882,41.8900654423752],[-87.62800504184398,41.88997074005035],[-87.62799754510712,41.88972744472978],[-87.6279966848528,41.88966322399579],[-87.62799242318852,41.88934503109766],[-87.62802341747586,41.88925248733625],[-87.62805933299772,41.889145249851694],[-87.62805575055167,41.88899044785413],[-87.62805422960236,41.8889247189374],[-87.62804668616594,41.88872832754365],[-87.62804332352678,41.88864078790318],[-87.62803274723126,41.888363609707355],[-87.62802509265039,41.888084583359735],[-87.62801846147823,41.887870944233114],[-87.62801655568951,41.88781773600071],[-87.62801165188536,41.88767720083466],[-87.62800209575349,41.88747256459074],[-87.62823789595471,41.887448540615644],[-87.62879231002516,41.88744077432309],[-87.62898509031368,41.88742642450556],[-87.62928432996648,41.88741942304758]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9324701.88834","perimeter":"0.0","tract_cent":"1173641.92800204","census_t_1":"17031070100","tract_numa":"25","tract_comm":"7","objectid":"347","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917579.465528","census_tra":"070100","tract_ce_3":"41.92925609","tract_crea":"","tract_ce_2":"-87.63733203","shape_len":"13642.0043681"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63393002779252,41.93301293438861],[-87.63392613990764,41.93290622894786],[-87.63282239265911,41.9329331168695],[-87.63256157289919,41.93262897523037],[-87.63250583516066,41.93260084981957],[-87.63244210852795,41.932589140924456],[-87.63224597497378,41.93258691412468],[-87.63199679713773,41.93260425912462],[-87.63181810268736,41.932581803457936],[-87.63181810271742,41.9325818007139],[-87.6318198375896,41.93251044407525],[-87.63182026732923,41.932492758292945],[-87.63182144842118,41.93244420217522],[-87.63182144254144,41.932444202139294],[-87.63182122572272,41.932444201089005],[-87.63177566515971,41.93244397732415],[-87.6316848078891,41.932443531352625],[-87.63159272284385,41.932443078903006],[-87.63157220239255,41.93244363597164],[-87.6315390866053,41.93244453481914],[-87.63143022048793,41.93243538999003],[-87.63142057068049,41.93243456371497],[-87.63140224110211,41.932432995302904],[-87.63139706629019,41.93243255230852],[-87.63139696252685,41.93243253026926],[-87.63129891315526,41.93241167216058],[-87.6312741702341,41.932402492667315],[-87.63125452668936,41.932394167341215],[-87.63125443675315,41.93239425844817],[-87.63125344444565,41.93239526691799],[-87.6312477619118,41.93240104140639],[-87.63128073819878,41.932418491828955],[-87.6312808657195,41.93241855929319],[-87.63122930087675,41.932482569288304],[-87.63115470508271,41.932572324349714],[-87.63115182996229,41.9325757839655],[-87.63115176292712,41.93257586450997],[-87.63107246146762,41.93259189997227],[-87.63107198554312,41.93259173240828],[-87.63106821387737,41.93258958037498],[-87.63106508281629,41.93258779367329],[-87.63105676211514,41.93257793631657],[-87.63105539582435,41.93257631820129],[-87.6310551160643,41.93257568943628],[-87.63105152247594,41.932567622780425],[-87.63105374385863,41.93255765866445],[-87.63105376472626,41.932557565488665],[-87.63105743268245,41.93255422954932],[-87.63106248784791,41.93254963316811],[-87.63106554490496,41.93254831625525],[-87.6310685809129,41.932547008543914],[-87.63107749258674,41.93254453507668],[-87.63107779707434,41.932544450770564],[-87.6310778335697,41.93254444056575],[-87.63107787006209,41.93254443063534],[-87.63108356409838,41.9325434396727],[-87.63111001535816,41.93253883721418],[-87.63112548643016,41.93252208205964],[-87.6311925165768,41.93244208639148],[-87.63122744712197,41.932399869990206],[-87.63123842754845,41.93238659941032],[-87.63123851358078,41.93238649565611],[-87.63123850479728,41.932386492309334],[-87.63123747110983,41.93238614680308],[-87.63119018214232,41.93237034675619],[-87.63116797148555,41.93236068904065],[-87.63115890639493,41.93235674696645],[-87.63111677580005,41.93233877043746],[-87.63108680886668,41.93232278402773],[-87.63107185785721,41.932314010151124],[-87.63105877097973,41.93230633026854],[-87.63104121656313,41.93229711977565],[-87.63103198935669,41.93229227879157],[-87.63102098301341,41.93228596672561],[-87.63100076059477,41.93227436917671],[-87.6309644648323,41.93225068161521],[-87.6309339456731,41.932226550240266],[-87.63085012174939,41.932166920090516],[-87.63081868373733,41.93211899206137],[-87.63079322178612,41.932080174347696],[-87.63073643975733,41.931982629425455],[-87.63072092080668,41.93194689035518],[-87.63068706734296,41.931868930147495],[-87.63067418445137,41.93177537416797],[-87.63067367185282,41.93177165096829],[-87.63068185131277,41.9316853034182],[-87.63069726127543,41.9315989998396],[-87.63071707569424,41.931555795918],[-87.63071707719727,41.93155579290856],[-87.63074171359742,41.931502074378315],[-87.63078634353992,41.931388950312645],[-87.6308030521177,41.931336063055134],[-87.63080305517194,41.9313360526458],[-87.63082380208307,41.93127038255013],[-87.63084346733285,41.9312081341846],[-87.63084346923648,41.931208128158964],[-87.63086126011414,41.93115181504404],[-87.63087780953487,41.93109255499768],[-87.63089136869009,41.93104400243401],[-87.63089710402477,41.93101696113682],[-87.6309142459845,41.930936145026756],[-87.63093650615566,41.930862589868575],[-87.63093650691772,41.93086258740344],[-87.6309517628836,41.93081217776968],[-87.63097481805758,41.930688122034134],[-87.6309834704557,41.930558578389494],[-87.63099192539816,41.93047932491814],[-87.63099192579274,41.93047932245076],[-87.63099529652075,41.93044772801746],[-87.6309995904995,41.93040748121964],[-87.63100847972571,41.93025633953962],[-87.6310091548199,41.930194797690035],[-87.63101016930395,41.93010231656785],[-87.63101037510432,41.9300835555987],[-87.63100120781216,41.92994829018604],[-87.63100120752596,41.929948282774895],[-87.63099792752581,41.92989988431758],[-87.63099377787714,41.929860512315386],[-87.63098482846357,41.92977560740207],[-87.63097592237999,41.92971606702459],[-87.63096461687842,41.9296404870978],[-87.63093741202289,41.929483725076565],[-87.63093173342877,41.929449801694744],[-87.63092420793801,41.929404847599756],[-87.63092420724522,41.9294048437536],[-87.63091026617052,41.92932156305577],[-87.6308855095294,41.92922166744428],[-87.63086871809124,41.929153913110675],[-87.6308430613034,41.92904968983394],[-87.63083410496984,41.92901330513283],[-87.63074947004507,41.92881839250114],[-87.63070768568426,41.92867234052013],[-87.63069399486356,41.92860205876715],[-87.63065577375214,41.92853491254714],[-87.63062305194964,41.928477427792345],[-87.63058484708117,41.92840272132035],[-87.63058484096685,41.92840270920836],[-87.63055933873382,41.92835284074803],[-87.63053688078183,41.928311643990554],[-87.6305368779054,41.92831163821009],[-87.63048845561946,41.92822281052377],[-87.63045907200161,41.92817801155342],[-87.63039599913265,41.92808184802725],[-87.6306113766699,41.92799642707449],[-87.63061142575874,41.92799640761654],[-87.63061144236967,41.92799640085765],[-87.63059552969091,41.927969472950316],[-87.63057297969483,41.92793473031478],[-87.63055995710094,41.92791568859433],[-87.6305448046002,41.92789353176887],[-87.63052054021716,41.927857763542086],[-87.63051475157637,41.927850369756904],[-87.6304712532615,41.9277948112925],[-87.63042167794853,41.927737547945924],[-87.63038481513244,41.92769496824582],[-87.63032679690062,41.92762737990406],[-87.63030974215467,41.92760956894756],[-87.63027713173487,41.9275755119045],[-87.63023101286383,41.92752702150635],[-87.63022819667088,41.92752406026143],[-87.63022417104447,41.92751996620554],[-87.63014311932012,41.92743753538076],[-87.63012253479914,41.92741894235504],[-87.63010567740575,41.92740371653456],[-87.63008665905976,41.927388808154795],[-87.63006015358813,41.92736628068764],[-87.63003116035557,41.927342777773326],[-87.62998053551013,41.92729137028281],[-87.62995291770702,41.92726208985916],[-87.62992695560752,41.9272345654451],[-87.62991179476974,41.92721835328826],[-87.62987843083842,41.927182677363405],[-87.62986510124904,41.92716769567685],[-87.62984793914673,41.92714840705339],[-87.62982191831654,41.92711603513828],[-87.62981045425632,41.92710177261004],[-87.62980409403137,41.927094139008666],[-87.62979119513558,41.927078658034354],[-87.6297799704848,41.92705805919213],[-87.62976360232481,41.92702802274043],[-87.62973120632579,41.926969756514666],[-87.62969514204053,41.926904250773035],[-87.62966273322401,41.92684044084781],[-87.62964201941735,41.92680485170803],[-87.62963921811779,41.92680003901386],[-87.62963920414046,41.92679997334132],[-87.62963569268186,41.92678314072366],[-87.6296265355822,41.926753611395505],[-87.62962200668899,41.926734428977014],[-87.62962098919209,41.92673007809044],[-87.62961828630836,41.92671851768527],[-87.62961475636462,41.92669922174077],[-87.62961083334666,41.926677774662004],[-87.62960697089065,41.926649947914974],[-87.62960691062277,41.92664951340985],[-87.6296027964918,41.926619877227296],[-87.62959803083615,41.9265838207882],[-87.62959750395663,41.92657983459664],[-87.6295984013956,41.926550605362245],[-87.62959931156176,41.926520953595684],[-87.62960019488773,41.92649217240577],[-87.62959865881636,41.92645475953319],[-87.62960055759343,41.926443120306054],[-87.62960255843926,41.92643085382665],[-87.62959992646901,41.92640274455569],[-87.62959957293955,41.92639896798729],[-87.63065691070649,41.926228790904524],[-87.63106452088078,41.926160161045104],[-87.6311613742663,41.92614306577979],[-87.63126299891464,41.92612512804203],[-87.6313474495204,41.926110221587635],[-87.63144604758807,41.926092817869865],[-87.63182868763266,41.92602527687999],[-87.6320867391555,41.92597972666461],[-87.63231438748039,41.92593948692552],[-87.63237767045302,41.925929016584284],[-87.63250335759624,41.92590822081639],[-87.6330167574124,41.925823274229124],[-87.63323301548658,41.92579292471764],[-87.63363191293566,41.925751265657404],[-87.63396195303936,41.925716796644984],[-87.63417845854991,41.92570406476111],[-87.63476717820804,41.92569099060736],[-87.63555048941403,41.92568315761206],[-87.63606355843797,41.925670374448885],[-87.63656935639641,41.925657769896006],[-87.63725332944955,41.925640722034586],[-87.63737213884667,41.92563678693692],[-87.63761821135022,41.92562863609329],[-87.63810975645956,41.92562699019695],[-87.63862188099874,41.92562527296981],[-87.63911590478905,41.92561205604799],[-87.63973122670718,41.92559559122224],[-87.64005321462459,41.92559083909306],[-87.6404794669768,41.9255845465049],[-87.64098732817328,41.925577047147115],[-87.64150198234721,41.925569169076454],[-87.64156835679712,41.925568157356864],[-87.64271642364118,41.925550583652],[-87.6427456669087,41.925550135777335],[-87.64315417583538,41.925543879666385],[-87.64392739069804,41.92553219174168],[-87.64396150197908,41.92574905783902],[-87.64396514273626,41.92589553883824],[-87.64396834793895,41.92602110624602],[-87.64397132478744,41.92612900744804],[-87.64397297360931,41.92618877854577],[-87.64397746144382,41.92631457318543],[-87.64398023596692,41.926398261171194],[-87.64398519554514,41.92654516170468],[-87.64399223867287,41.926726850619715],[-87.64399900059426,41.92690127992283],[-87.64400323330075,41.927040574585085],[-87.64402619714829,41.927326277793256],[-87.64404119826345,41.92737131655149],[-87.64405756800457,41.92742778113134],[-87.64408055790565,41.927517874719236],[-87.6441117619823,41.92764031681956],[-87.64413359760327,41.927724997623415],[-87.64421737000556,41.92805035201613],[-87.64373707904784,41.9281349360951],[-87.64353766658253,41.928177343941684],[-87.64333563299124,41.92822418132794],[-87.64306379834429,41.92829217985346],[-87.64302913295803,41.92830085119792],[-87.64274881358013,41.92837940657392],[-87.6422320602252,41.92853277066443],[-87.64232046318475,41.9286817727601],[-87.642342567503,41.92871902960612],[-87.64254485712252,41.92906950378831],[-87.64260053625433,41.92916596880528],[-87.64271723849295,41.92936815147811],[-87.64286603320821,41.9296205541574],[-87.6429244555853,41.92966204325146],[-87.64292449971175,41.92966207480092],[-87.6430915275945,41.92978069054243],[-87.64322715422684,41.929867345002094],[-87.64344587455822,41.930013629683764],[-87.64346182161354,41.93003184448874],[-87.64357806898394,41.930164621927936],[-87.6436961892513,41.93036184505832],[-87.64380330268737,41.93054301935017],[-87.64389760820596,41.93070252950045],[-87.64389766306343,41.93070262258446],[-87.64409377306768,41.93103432424024],[-87.64410511743115,41.93105351131754],[-87.64411145224531,41.931064143678626],[-87.64427439189697,41.9313376171718],[-87.64437693628983,41.93150972265111],[-87.64457143297135,41.93184461023824],[-87.64468572683961,41.93204140155787],[-87.64480433901875,41.93231653455438],[-87.64487090211578,41.93258240973],[-87.64488630958121,41.93280061730884],[-87.64427356689289,41.932813182777785],[-87.64412458304083,41.93281611841026],[-87.64361146573117,41.93282622784309],[-87.64361139147802,41.93282622931799],[-87.64346272112924,41.93282915801648],[-87.64307261630674,41.93283684164555],[-87.64273777732386,41.93284354161541],[-87.64249406510555,41.93284841793495],[-87.64228067871898,41.93285268730025],[-87.64171126109987,41.932862485594434],[-87.64148949097614,41.93286719447749],[-87.64143917116684,41.932868262545945],[-87.64134293055976,41.932870305481075],[-87.64134291659228,41.93287030567132],[-87.64103668651063,41.932876806470134],[-87.64031925474437,41.932891559274665],[-87.64005646225468,41.93289696206529],[-87.63970512101109,41.93290373137141],[-87.63932436891005,41.93291096919462],[-87.6393243038469,41.932910970447885],[-87.63874336575338,41.932922011763075],[-87.63808930350304,41.93293232280398],[-87.63795470675272,41.93293211885096],[-87.63795450278819,41.932932118438934],[-87.63734572930663,41.93293119328689],[-87.6370267370261,41.93291141109018],[-87.6367507981703,41.9328942980898],[-87.63623951655434,41.93285406607262],[-87.63472384396798,41.93280337479925],[-87.63457831125298,41.93287898457024],[-87.63446987143284,41.932923260877],[-87.63436062134848,41.932957584631396],[-87.63423994334298,41.932986693565624],[-87.63411477278774,41.933006513003015],[-87.63401158402415,41.933013796410016],[-87.63399845702506,41.933014723035484],[-87.63393002779252,41.93301293438861]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"970149.893017","perimeter":"0.0","tract_cent":"1176619.71096676","census_t_1":"17031380600","tract_numa":"6","tract_comm":"38","objectid":"348","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875875.87003586","census_tra":"380600","tract_ce_3":"41.81475204","tract_crea":"","tract_ce_2":"-87.62764958","shape_len":"4054.35029688"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62884364780527,41.81301188121786],[-87.62901979050535,41.81301042373783],[-87.62902279365615,41.81311837913436],[-87.62902608974092,41.813236060112615],[-87.6290452613247,41.81391367037743],[-87.62906217059817,41.81450482206423],[-87.62906356085723,41.81454530862739],[-87.62906576334841,41.81463725557849],[-87.62906576360398,41.814637265733886],[-87.62906843976107,41.81472783274805],[-87.62909359948273,41.8156541793209],[-87.62911569210625,41.816358220830445],[-87.6291188142177,41.81645024940638],[-87.62876722650837,41.8164553305866],[-87.6285893476297,41.816457791295],[-87.62833842948127,41.81646126177971],[-87.6282217190162,41.816462486160525],[-87.6280458010424,41.81646433072327],[-87.62778714523539,41.81646704282475],[-87.62741803673518,41.81647273345026],[-87.62736412689367,41.81647374820012],[-87.62696301781659,41.81648129751639],[-87.62627050845802,41.81648982544944],[-87.62626324521793,41.81633601886249],[-87.62625781339918,41.81593600765096],[-87.62625218483433,41.81562732461154],[-87.62625120240409,41.81558560588657],[-87.62623988272827,41.815104903635934],[-87.62623347049362,41.81484413101776],[-87.62622752234148,41.81468671058855],[-87.62622553889472,41.81463421496951],[-87.62622148027256,41.81452679173879],[-87.62621192363319,41.81415496614438],[-87.62620544473268,41.81384690895706],[-87.62619933663595,41.8135151160646],[-87.62619282714506,41.813253135019536],[-87.62618711950331,41.813136629863166],[-87.62618331769087,41.81305902911636],[-87.62832805898763,41.813016146423685],[-87.62884364780527,41.81301188121786]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4874471.69511","perimeter":"0.0","tract_cent":"1147834.48641656","census_t_1":"17031140500","tract_numa":"30","tract_comm":"14","objectid":"349","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930542.19617923","census_tra":"140500","tract_ce_3":"41.96536259","tract_crea":"","tract_ce_2":"-87.73183274","shape_len":"9451.07452611"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72937110223268,41.96093105713941],[-87.72969346425607,41.96092688540229],[-87.7301836665331,41.96126567695987],[-87.73096031464243,41.96179966155538],[-87.73134509868436,41.96206435561401],[-87.7319673221681,41.962493064616176],[-87.73279982486898,41.96306664060283],[-87.73308876078279,41.96326551518118],[-87.73341426954,41.96348938779964],[-87.73363168430832,41.96363927412276],[-87.7338251527996,41.9637726509601],[-87.73399026810225,41.96388597076476],[-87.73406708006378,41.96393878613506],[-87.73421675935124,41.96404159704185],[-87.73445661126253,41.96420579988832],[-87.73480508401842,41.96444427747691],[-87.73499468797414,41.964575234567796],[-87.73521246733436,41.964725651331676],[-87.73553127801573,41.964943884826816],[-87.73578121974614,41.96511480750096],[-87.73586459777147,41.96517182511322],[-87.73639298174584,41.96553395529858],[-87.73672549926248,41.96576183401423],[-87.7369075061066,41.96588763927799],[-87.73710608073921,41.966024895160906],[-87.73736504975858,41.9662028570579],[-87.73752031817624,41.96631102217142],[-87.73776304381538,41.966480111634105],[-87.73785135750923,41.966540238163496],[-87.7378676708931,41.96702735581107],[-87.73787807478304,41.967339535729046],[-87.73788783771738,41.96763368313353],[-87.737899478051,41.96795920655408],[-87.73790228852742,41.96813393083945],[-87.73775129666996,41.968136070479076],[-87.73751233799241,41.96813795895772],[-87.73719563843387,41.96814048608387],[-87.73685349115497,41.968143209427325],[-87.73666653969246,41.96814645030518],[-87.73644305497756,41.96815032420313],[-87.7361778427835,41.968152100845685],[-87.73582753552637,41.9681544219397],[-87.73555379135028,41.96815626250326],[-87.73543319837168,41.968158400954984],[-87.7352451538123,41.968161735086255],[-87.73485150350598,41.96816692834673],[-87.73442490136517,41.9681725246432],[-87.73420133801285,41.968173936603065],[-87.73397280579869,41.968175379266135],[-87.73363146363766,41.96817848139819],[-87.733203517223,41.96818236472484],[-87.73303614603194,41.968184929273654],[-87.7329677894458,41.96818573344837],[-87.73259627079987,41.96819038515563],[-87.73225963686696,41.968193315750526],[-87.73173309493274,41.96819929833494],[-87.73114706937649,41.968205953874055],[-87.73088922996634,41.968209595589016],[-87.73047772932685,41.96821526606608],[-87.73016528854725,41.96821957028918],[-87.72980196263005,41.968221996690026],[-87.72926066735629,41.9682281132029],[-87.72874135894966,41.9682339790726],[-87.72864673648877,41.96823492500082],[-87.72850761700393,41.96823631535184],[-87.72802755981601,41.968242304093955],[-87.72801939385819,41.96798075374051],[-87.72801404999636,41.967784706566604],[-87.72800970510659,41.967625300370386],[-87.72799677122502,41.967150429121524],[-87.72797718364139,41.96641748543051],[-87.7279672841241,41.96604704747372],[-87.72795837558313,41.96572963282186],[-87.72795586515171,41.965647540314464],[-87.72794815537824,41.96539541667992],[-87.72793757755306,41.96498246728741],[-87.7279282485846,41.96459405740254],[-87.72792586755692,41.96449492429837],[-87.72791481684813,41.96408891519508],[-87.72790843154463,41.963854059550414],[-87.72789349036938,41.96330475471264],[-87.72787819817265,41.96281565592971],[-87.72786930359845,41.96253117168583],[-87.7278657494388,41.962417240793066],[-87.72784864751966,41.96178471996809],[-87.72783795442186,41.96129084293931],[-87.72782817027088,41.96094683693973],[-87.72825794813826,41.960941276888406],[-87.72835002287421,41.96094021328599],[-87.72842775825102,41.960939315274345],[-87.72861032801491,41.96093720602132],[-87.72903796476322,41.960933750576686],[-87.72937110223268,41.96093105713941]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11627763.4438","perimeter":"0.0","tract_cent":"1142259.45501281","census_t_1":"17031120400","tract_numa":"51","tract_comm":"12","objectid":"350","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1934862.19621106","census_tra":"120400","tract_ce_3":"41.97732258","tract_crea":"","tract_ce_2":"-87.75222337","shape_len":"20987.9778943"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75735977780622,41.985709101804666],[-87.75726740564005,41.98570652527411],[-87.75726289869672,41.98570869801795],[-87.7572115373224,41.98571027888177],[-87.75718728243874,41.985703872935034],[-87.75717064224357,41.98569736799114],[-87.7571665123379,41.98569443841092],[-87.75713430485217,41.985676658991295],[-87.7570602476612,41.985641710330256],[-87.75704960772191,41.98563874806584],[-87.75700968830351,41.985623701539325],[-87.75696833844876,41.98560820874506],[-87.75694839603254,41.985600809045245],[-87.7569243460106,41.98558801008462],[-87.75687107623195,41.985556513599384],[-87.7568538462156,41.98553793116594],[-87.75677002503458,41.98548043084151],[-87.75675369297656,41.98544793980662],[-87.75674428039463,41.985427173543094],[-87.75672930437341,41.9853911495712],[-87.75671874233839,41.985367331743824],[-87.75671260690469,41.98535432085787],[-87.75669718012297,41.98530303658807],[-87.7566953033058,41.98527053582669],[-87.7567109403951,41.98522514296934],[-87.75672452483022,41.98516673228871],[-87.7567313425985,41.98513265611986],[-87.75674693555482,41.98509214771186],[-87.75677011465062,41.98506284629904],[-87.75676975898433,41.98506150012885],[-87.75682102858455,41.98502926600561],[-87.7569017157285,41.98500604361925],[-87.75694673915655,41.98499748824361],[-87.75701603539085,41.98498112396931],[-87.75703116448977,41.98497571151935],[-87.7570811277726,41.98495779572329],[-87.75713517949023,41.98493924181816],[-87.75718922396574,41.98491736736829],[-87.75722888692032,41.98489970167422],[-87.75727379081,41.98487583265563],[-87.75731398783056,41.98484779680755],[-87.75734253580545,41.98482266595984],[-87.75736650816849,41.98479100839228],[-87.75738276644792,41.9847460027437],[-87.75738309468439,41.98469326085091],[-87.75737338657358,41.98465630264294],[-87.75735676735188,41.984623014430106],[-87.75733862369873,41.98458746832121],[-87.75733840109571,41.98458702813216],[-87.75731975437397,41.98455082088774],[-87.75730439890584,41.98452423485802],[-87.75726569057801,41.98446059469715],[-87.75724384848762,41.98443139655939],[-87.7572123637546,41.984394713240945],[-87.75714954485665,41.98432093570316],[-87.75709117807693,41.98425930984674],[-87.75705243096121,41.984224483527655],[-87.75701241434369,41.98419176385686],[-87.7569804433719,41.984164161338015],[-87.75695298055756,41.984142399151146],[-87.75692478861677,41.9841199198044],[-87.75689293294603,41.98410400813646],[-87.75687888604439,41.98409548546199],[-87.75685377877775,41.984077631845025],[-87.75680045738603,41.98403976824018],[-87.75676766654858,41.98401336926697],[-87.75671943103848,41.983978467737195],[-87.75653727849857,41.983800826112976],[-87.75640060692534,41.98361696390159],[-87.75636629776386,41.98355101296653],[-87.75633658352695,41.983485359535656],[-87.75632838926765,41.98346413311518],[-87.75631268345383,41.98342346743467],[-87.75630060805429,41.98339215028476],[-87.75628643235657,41.98335311137012],[-87.7562719269436,41.9833057833078],[-87.75625200545431,41.98323098600277],[-87.75624055161227,41.98317972162535],[-87.75623393504733,41.98308561713606],[-87.75623619469421,41.983047182231914],[-87.75623884283289,41.983002382732785],[-87.75624222977935,41.98295311389863],[-87.75624852672661,41.9829156597593],[-87.75626321817106,41.98284869276558],[-87.75628095597877,41.98275391487717],[-87.75627956016396,41.98268854097634],[-87.75626838405121,41.98263096632901],[-87.75624601731376,41.982586672246484],[-87.75622853199982,41.98255573951946],[-87.75620143304073,41.98251822725872],[-87.7561515386949,41.982471681727795],[-87.75612487673574,41.98244687730014],[-87.75609935302943,41.98242635954447],[-87.75605260599815,41.98239785920148],[-87.75600607270557,41.98237416226749],[-87.7559687618803,41.982355643355554],[-87.75596216613505,41.98235292086517],[-87.75591942686899,41.98234085095153],[-87.75586946227297,41.98233061073444],[-87.75575586600644,41.98231662011632],[-87.75574755343902,41.982316660619766],[-87.75568194779389,41.98231970588848],[-87.75565644589031,41.98232125152681],[-87.75558796051914,41.98232546225754],[-87.75554464504636,41.982328317762644],[-87.75546315090519,41.982339460659006],[-87.75541578324336,41.98235115948954],[-87.75535414425828,41.98236701252014],[-87.7552738489044,41.98238793067592],[-87.75518734971436,41.98241158945023],[-87.75503399838743,41.98246627708801],[-87.75495566954295,41.982505591078535],[-87.75489050540679,41.982541102025344],[-87.75482180233,41.982585623524486],[-87.75477232218516,41.982623436243024],[-87.75471437531537,41.98267017980484],[-87.75466996720266,41.9827083747892],[-87.75461164991813,41.9827756979431],[-87.75459875268545,41.98279056138159],[-87.75454082937334,41.98285903904916],[-87.75450027030743,41.98290674830971],[-87.75446508430655,41.98295003904267],[-87.75442721516649,41.982997185558034],[-87.75439256508038,41.9830422078174],[-87.75436784940257,41.98307056798199],[-87.75435480543679,41.983085375768134],[-87.75430803041876,41.98315742211703],[-87.75429019766281,41.9831933360922],[-87.7542812435042,41.98321140265612],[-87.75425799080647,41.98325689399187],[-87.754235161988,41.983308369819646],[-87.75422383798298,41.983340364966665],[-87.75421053190203,41.98337191104121],[-87.75419991818275,41.98339046318242],[-87.7541541995724,41.98345551708056],[-87.75414837472303,41.98346103097945],[-87.75406901112257,41.98352503694636],[-87.7540607863131,41.983531608969145],[-87.75400592342753,41.98356258884374],[-87.75398230098627,41.98357174475667],[-87.75392066635746,41.98359506126148],[-87.75387814306809,41.983607799532905],[-87.75381545632014,41.98362139592385],[-87.7537781577231,41.983621756469404],[-87.75372658450334,41.98362253888856],[-87.75363582956358,41.98362043411792],[-87.75353162190541,41.983613294327775],[-87.75337714548535,41.983592892984895],[-87.75326988270207,41.983577916549535],[-87.75322829539637,41.983568568215965],[-87.75312122798387,41.983544234903086],[-87.7530507018431,41.98352598623753],[-87.75300226889277,41.983513090641004],[-87.75291878847818,41.98348758687429],[-87.75286147008643,41.98346490410506],[-87.75279889026342,41.98343838053505],[-87.75272234558801,41.98340248346019],[-87.75263980921045,41.98335406991051],[-87.75245633118973,41.983234674495364],[-87.75243687537633,41.983225309428974],[-87.7522595724608,41.983139964259024],[-87.75213144306386,41.98310218659302],[-87.75204130042334,41.98308946360337],[-87.7519901675461,41.98308231673088],[-87.75193736425518,41.983080896756576],[-87.7518020580075,41.983092176136914],[-87.75177375501102,41.98309831698068],[-87.75162337572041,41.98313712645525],[-87.75160545569442,41.983142057537265],[-87.75146468627096,41.98319183742082],[-87.7514609569057,41.98319343759677],[-87.7513828371238,41.98322964925292],[-87.75132898073188,41.98325904103959],[-87.75128442476833,41.983284934173696],[-87.75099252017871,41.983461393006785],[-87.750742084201,41.9836084461304],[-87.75056762098318,41.98369780585576],[-87.75031798194215,41.98375729738551],[-87.74994259492243,41.98375136952326],[-87.74966904189444,41.98372532485778],[-87.74966499845685,41.98372493986992],[-87.74955438740636,41.983721566003005],[-87.74946206071799,41.98371875016852],[-87.74935598308666,41.98371551469848],[-87.74927828838868,41.98371314443847],[-87.7492310633327,41.98371242667234],[-87.74910330727019,41.983710484872745],[-87.74883644336514,41.98370642806777],[-87.74855939282632,41.983685806621985],[-87.74840368438021,41.98368214401184],[-87.7483654269912,41.983681244087855],[-87.74826003316262,41.983676890906764],[-87.74825053526169,41.98337745155368],[-87.74823673111477,41.9830050707754],[-87.74822641424974,41.982750107147005],[-87.74822138404714,41.982625796083234],[-87.74821480410759,41.98246318590355],[-87.74820979517128,41.98233916747342],[-87.74820254348722,41.982159506606784],[-87.74819187134518,41.9818950870783],[-87.74818574140824,41.98168390460374],[-87.74818432218558,41.98163500804284],[-87.74817760945574,41.981420157431764],[-87.7481746099729,41.98119341645187],[-87.7481925593342,41.980792257571835],[-87.74817620948868,41.980591791763196],[-87.74814731905919,41.98023755402933],[-87.74814380006363,41.980029003868395],[-87.74814164465235,41.979901250525195],[-87.74813082416503,41.979540579690116],[-87.74812265095255,41.979268367987274],[-87.74811713695544,41.97909133878786],[-87.7481135170799,41.97898234775817],[-87.74810600872054,41.97875626974697],[-87.74809636454475,41.978451888444276],[-87.7480902517017,41.97825998258353],[-87.74808291804811,41.978020623214036],[-87.7480802217663,41.97794283846609],[-87.74807363747045,41.97775290628525],[-87.74807145211169,41.97767965234871],[-87.74806899795982,41.97759687465401],[-87.74806308185813,41.977420287912224],[-87.74806166150621,41.97737787723393],[-87.74805475885881,41.97717183465923],[-87.74804088740426,41.97669059520562],[-87.74803000062522,41.97632119752881],[-87.74802208925227,41.97608070973202],[-87.74801212137551,41.97578905946673],[-87.74801048722549,41.97574124736567],[-87.74800351849711,41.9755464281902],[-87.74799293596732,41.97534079405728],[-87.74798413059501,41.9751696872328],[-87.7479867667495,41.97501031725377],[-87.74797955558833,41.97467732609174],[-87.74797008826475,41.97436984451497],[-87.74795935903268,41.973999376972934],[-87.74794825614066,41.97362956611034],[-87.74794695473774,41.97358658933108],[-87.74794450737994,41.973505788535896],[-87.74793216113888,41.97309812348807],[-87.74791173476942,41.97288067465438],[-87.74790113296899,41.972767809851604],[-87.74790976867979,41.972587696762645],[-87.74791622437044,41.9724530440467],[-87.74790880257073,41.972187284713534],[-87.74790417240709,41.971978097697],[-87.74790002657619,41.97175618029898],[-87.7478985740583,41.971678189129584],[-87.74789642766325,41.971562887207014],[-87.74789898058934,41.97125200905574],[-87.74789837544557,41.97121364195989],[-87.74789489204473,41.97099167275189],[-87.7478909018927,41.97081821852961],[-87.74788946673581,41.97076379386202],[-87.74788660302194,41.970638442270115],[-87.74788566768797,41.97059750271318],[-87.74788040962251,41.97040469507843],[-87.74787703484715,41.970302950384266],[-87.74787401217979,41.97021182729132],[-87.74786316382082,41.96993880567104],[-87.74785761937319,41.96985129179082],[-87.7478514616051,41.969724220598636],[-87.74779886315784,41.96952369050897],[-87.7477753689011,41.969394812734784],[-87.7477609790996,41.96931982247114],[-87.74773848940517,41.969225855856116],[-87.74771228798967,41.969145540846725],[-87.74770086158448,41.969110516962616],[-87.74762034106047,41.96899001718702],[-87.74764266927279,41.96896136631396],[-87.7476106097026,41.96888316544118],[-87.74758958136647,41.968834430791475],[-87.74758743021367,41.968829653950266],[-87.74757008440176,41.9687911374826],[-87.74754121025674,41.96872781848979],[-87.74750671852067,41.96863949853151],[-87.74750160315415,41.96860382489303],[-87.74750654668426,41.96853785219204],[-87.7475201693008,41.9684797993798],[-87.74754403642115,41.96839526234658],[-87.74757586435484,41.96829268159384],[-87.74760998171583,41.968189042269636],[-87.7476252316005,41.96813400731649],[-87.74772179585376,41.9680287235974],[-87.74785665135597,41.9680261562285],[-87.7479518213617,41.9680243440828],[-87.74810562574706,41.968022596412304],[-87.74854192551483,41.96801770777409],[-87.74890116136089,41.968013681495094],[-87.74936849084197,41.96800952834748],[-87.7498191887815,41.96800248967331],[-87.7499349936981,41.96800116275578],[-87.7501816255792,41.96799812357449],[-87.75024700109518,41.9679971161836],[-87.7503193023742,41.967996002051315],[-87.7505603215494,41.967993877835255],[-87.75065497877851,41.96799304107664],[-87.75095338392651,41.967988435626665],[-87.75126113953687,41.96798266935746],[-87.75142375958877,41.967980811005646],[-87.75169574908227,41.96797770966886],[-87.75200848506547,41.96797418971131],[-87.75239977283687,41.96796977608884],[-87.75263506822343,41.96796746734702],[-87.75263003939132,41.968200109899286],[-87.75263756193175,41.96842050870369],[-87.75263889760599,41.96845964704669],[-87.75264882678717,41.968751077297604],[-87.75265236695975,41.96888123378535],[-87.75265726234773,41.969061215476984],[-87.75266209306065,41.96922572773566],[-87.75266532261696,41.96933591551046],[-87.75266933592798,41.969472852845406],[-87.75268176687925,41.9697938118451],[-87.7526951916462,41.97014042980151],[-87.75269879073069,41.97024824212011],[-87.75270250553942,41.97035950943013],[-87.75270799573363,41.97053645624467],[-87.75271283024851,41.97070368963465],[-87.75271676102805,41.970842726660074],[-87.75272021667618,41.97095621710175],[-87.75272469354434,41.971094932243],[-87.75272694650555,41.97116090915997],[-87.75272986402744,41.97124635601807],[-87.75273783686163,41.97149008191291],[-87.7527687459616,41.971619146792264],[-87.75279851405979,41.97178964450997],[-87.75279871633072,41.971892910030455],[-87.75279888660009,41.972032097051745],[-87.75279892504437,41.97207326034495],[-87.7527989929333,41.972145927277964],[-87.75279916700663,41.97227254584671],[-87.75279924492935,41.972361156667404],[-87.75280224800932,41.97243946406253],[-87.75280902685435,41.972474542131465],[-87.75281355675767,41.972485953219845],[-87.75282058343963,41.972497788838666],[-87.75284742645867,41.97251825913936],[-87.7528939011111,41.97253486276532],[-87.75289394179882,41.97253487724091],[-87.75297732111825,41.9725334878721],[-87.75306202399463,41.972532132025904],[-87.75312933006569,41.972531072659784],[-87.75316316708673,41.97253053017067],[-87.7532648252364,41.97252890338673],[-87.75334905030914,41.97252751774684],[-87.753467109409,41.972525918756126],[-87.75355144193574,41.972524807931116],[-87.75370396204903,41.97252283361235],[-87.75387376776307,41.97252061758421],[-87.75395890963811,41.972519510544984],[-87.75411175906994,41.97251767483107],[-87.75431558190587,41.9725153276358],[-87.75458710930086,41.97251258047637],[-87.75490968760086,41.9725088824505],[-87.75519415444064,41.97250477206124],[-87.75519931900622,41.97265128381049],[-87.75520467954468,41.97280268123003],[-87.7552104072298,41.97296512647339],[-87.75521633422245,41.973132373978764],[-87.75522265282807,41.9733201643827],[-87.75522586410777,41.97342608413171],[-87.75523115058019,41.97360044549584],[-87.7552367891961,41.973765839739606],[-87.75524036216939,41.973876459107444],[-87.75524333989844,41.97396864209649],[-87.75525306125348,41.974227496817505],[-87.75525650765964,41.97433243448423],[-87.75526078917045,41.97446279675357],[-87.75526615283275,41.974626076548674],[-87.75527156456556,41.974789858496166],[-87.75527328451784,41.97484191677494],[-87.75528165408933,41.975095743026884],[-87.75528335437701,41.9752459548385],[-87.75528467972413,41.975363044123256],[-87.75528712451377,41.9754505688602],[-87.7552924624381,41.975653310164894],[-87.75529540724071,41.97576688019441],[-87.75530001736358,41.97594437113841],[-87.75530347047759,41.97607086892609],[-87.7553072870298,41.97621004676675],[-87.75531462597941,41.976488400682236],[-87.75531905608416,41.976689875318996],[-87.75532680086586,41.97690709065446],[-87.75532975227208,41.97705154149786],[-87.75533025448688,41.97707612331585],[-87.75533373518714,41.97724647387542],[-87.75533275273332,41.97730123226877],[-87.75533002754115,41.97745313824074],[-87.75515648668154,41.97734670580205],[-87.75513947726286,41.97733627393679],[-87.75505980657766,41.97728680517926],[-87.75640571771066,41.97987696803812],[-87.75641506292273,41.97989495193663],[-87.75746351632662,41.981905541871285],[-87.75801036146186,41.982954510710414],[-87.75815664225759,41.9829456392845],[-87.75879498773874,41.984302756186146],[-87.75884368338615,41.984424545765236],[-87.75885145515029,41.98444398341464],[-87.75909265882675,41.985047237426905],[-87.75918763036027,41.985222998548224],[-87.76067487541626,41.987973707955845],[-87.76063715425157,41.98798892434248],[-87.76057291929745,41.98801820417665],[-87.76050490627516,41.988038830498965],[-87.76044436805486,41.98805861621452],[-87.76043665931525,41.98806096958819],[-87.76038834049983,41.988075816872446],[-87.76031421672316,41.988101105163615],[-87.76025793840591,41.98811344754755],[-87.76023497440252,41.988118821305385],[-87.7601852536151,41.98812592752784],[-87.76015703380367,41.98813083623162],[-87.76009528446487,41.98814619700568],[-87.76004194719503,41.988162807478595],[-87.75998710121486,41.988183581574376],[-87.75994677834298,41.98820094305185],[-87.75989617234494,41.98822470201703],[-87.75983181112598,41.988252371331],[-87.75978326735599,41.98826766097291],[-87.75967264966651,41.988301657715894],[-87.75959545366786,41.98830854432841],[-87.75954063741314,41.98830549843502],[-87.75950680328381,41.988296602761686],[-87.75943945222689,41.98827626086556],[-87.75941312055285,41.98826751243884],[-87.7593507100991,41.98824587797523],[-87.759279680324,41.98820921704814],[-87.75923403241289,41.98817644256793],[-87.75915744868259,41.988115248089755],[-87.75908738212256,41.98806144061517],[-87.75900771043365,41.98798779936628],[-87.75895355513448,41.98791944482923],[-87.7589101144958,41.98787035327663],[-87.7588483997717,41.98780412877999],[-87.75880599585963,41.98776247915584],[-87.75876451204101,41.987724867819736],[-87.7587466703991,41.98771322818361],[-87.758704320758,41.98768559918256],[-87.7586655438158,41.98766194216768],[-87.75861979972697,41.98763589024824],[-87.75859044102255,41.98762021109511],[-87.758554664903,41.98759827047022],[-87.75849425343704,41.9875507951889],[-87.758395418122,41.9874608942122],[-87.75830000054313,41.987359100443044],[-87.75826498935201,41.98732171398939],[-87.75819263497198,41.98724846529455],[-87.7581483435826,41.98718367236473],[-87.75812977296962,41.98714639541016],[-87.75811771449489,41.98711710926226],[-87.75808822925076,41.98699703998753],[-87.75805974541935,41.986933259259224],[-87.75803336335909,41.98686482391646],[-87.75799705702653,41.98679562506277],[-87.757976887468,41.98676437758178],[-87.75793828281994,41.98669717072973],[-87.7579166467849,41.986640888509605],[-87.75790286854763,41.986602455530736],[-87.75788017113223,41.98654559170064],[-87.75785289204418,41.98643793719749],[-87.75784591220251,41.98638795776665],[-87.75782326011608,41.9863056554159],[-87.7577725614894,41.986196813240426],[-87.75771796135511,41.9861087799572],[-87.75767705414958,41.98605226384575],[-87.75763370542944,41.98598909451074],[-87.7575958090214,41.98593322463429],[-87.75757744617518,41.98590558076802],[-87.75753733768651,41.9858462146427],[-87.75748971366956,41.98578815546204],[-87.75744672268222,41.98575067356351],[-87.75743156867503,41.9857384681763],[-87.75738998802099,41.985719955755805],[-87.75735977780622,41.985709101804666]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3775600.07901","perimeter":"0.0","tract_cent":"1169225.1513825","census_t_1":"17031282200","tract_numa":"21","tract_comm":"28","objectid":"351","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897014.37104886","census_tra":"282200","tract_ce_3":"41.87292143","tract_crea":"","tract_ce_2":"-87.65416053","shape_len":"8285.18325636"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65166558058182,41.873124000549474],[-87.65166807824076,41.87306727887794],[-87.65117344635321,41.87307593630716],[-87.65116807087023,41.87284780909649],[-87.6512324707527,41.872847618613456],[-87.65127016108467,41.87282494171853],[-87.65127781468586,41.87276595483685],[-87.65123999695696,41.87268182128657],[-87.65122131865897,41.87261805532441],[-87.65121053613791,41.87253986967953],[-87.65120033849944,41.872406712536794],[-87.6511885154477,41.87206232727483],[-87.65118268690799,41.87187846589939],[-87.65118266855062,41.87187787879566],[-87.65117919801378,41.87176839149209],[-87.65117915344096,41.871766989465335],[-87.65117402114831,41.87160508345811],[-87.65116668465123,41.8712028571028],[-87.65116141538685,41.87101374817607],[-87.65115547717056,41.870800607451116],[-87.65114350072842,41.87047068803558],[-87.65113938779263,41.870354811844614],[-87.651136272207,41.8702670289637],[-87.6511345644216,41.87021890884179],[-87.6511213883844,41.87000182523939],[-87.65112983504906,41.86978704900751],[-87.65112655084174,41.8696721722413],[-87.65112403565512,41.869507725726336],[-87.65131447363075,41.86949798575578],[-87.65138896692062,41.8694959116431],[-87.65166614856749,41.869499524834865],[-87.65203059599627,41.86949455241065],[-87.65221395774677,41.86949034665581],[-87.65233562356717,41.86948755552744],[-87.65294158526474,41.86947871265399],[-87.6532046151875,41.86947474264708],[-87.65338032403267,41.869472090428225],[-87.65422345150354,41.86945743996547],[-87.65430614808062,41.8694560027564],[-87.6544170838974,41.869454074634035],[-87.65497522002833,41.86944387105349],[-87.65525373739943,41.869440046010055],[-87.6554433281622,41.86943744186116],[-87.65622817247164,41.869424299275096],[-87.6565897664737,41.869418242588026],[-87.65675496487097,41.86941546948246],[-87.65676377278838,41.86974407720713],[-87.65676821775622,41.86986528945198],[-87.65678293472162,41.87026666774024],[-87.65678323592972,41.87027382679126],[-87.65679071415087,41.87045167596888],[-87.65679674742874,41.87072212982198],[-87.65680407032126,41.87104434779437],[-87.65681014674539,41.87122015273129],[-87.65681453381377,41.871311946529964],[-87.65682073492393,41.87144170342455],[-87.6568258978484,41.871669396709606],[-87.65683260568086,41.8717059064642],[-87.65683085078575,41.871776961188715],[-87.65681905468715,41.872254534460865],[-87.65680150548799,41.872964978410586],[-87.6567984614887,41.87308821371221],[-87.65680361367133,41.87323517192108],[-87.65682379612967,41.873810869887556],[-87.65681942800039,41.87422508475323],[-87.65681883140823,41.874281622066114],[-87.65681725953536,41.87443070968716],[-87.65685219939812,41.87476343292798],[-87.65693592187849,41.875158020530876],[-87.6569677071798,41.87526904704763],[-87.65697074864268,41.875341298753675],[-87.65697326545589,41.87541239670614],[-87.65697866535321,41.87556495374829],[-87.65698709556061,41.875803118669324],[-87.65700039000271,41.87617869853978],[-87.6570036082184,41.87626961022981],[-87.65700342734962,41.8764032564364],[-87.6570032701811,41.87651943565142],[-87.65676773375114,41.87652313391561],[-87.65637344462172,41.87653043416234],[-87.65629323350986,41.876531918782426],[-87.65477086562768,41.87656009022598],[-87.6545317543077,41.87656299439143],[-87.65433921656462,41.87656533259508],[-87.65393716011282,41.87657086778829],[-87.65327092526515,41.87658003672818],[-87.65286570084612,41.87658561170398],[-87.65246503201895,41.876591122521944],[-87.6521500848833,41.87659545327037],[-87.65207318476102,41.876597090147236],[-87.65187391881356,41.87660133134636],[-87.65186935577363,41.87646881481551],[-87.65186033974342,41.87610086767595],[-87.65185991035128,41.876006490499165],[-87.65185957120687,41.87593126869569],[-87.65185713204588,41.87586607837129],[-87.65185534551836,41.87581832886033],[-87.65185185737569,41.87572510285148],[-87.65184547010871,41.875473255362394],[-87.65184178617224,41.875323564763505],[-87.65183865302112,41.87519627048192],[-87.65183820208465,41.87517795599683],[-87.651836530912,41.87511005341677],[-87.65183455835147,41.875029909706946],[-87.6518100208067,41.874368614094074],[-87.65179582557434,41.87351213892465],[-87.65176566487614,41.87318915546655],[-87.65166558058182,41.873124000549474]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2310151.22113","perimeter":"0.0","tract_cent":"1153890.16125448","census_t_1":"17031230200","tract_numa":"8","tract_comm":"23","objectid":"352","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911086.75851352","census_tra":"230200","tract_ce_3":"41.91185659","tract_crea":"","tract_ce_2":"-87.71008732","shape_len":"6134.12224105"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71316947614952,41.910037011357566],[-87.7133051420556,41.910035168517744],[-87.71330705626168,41.91009950067626],[-87.71332109103423,41.91057119552404],[-87.71332114800842,41.910572786938324],[-87.71333610891254,41.91098960756725],[-87.71335985961892,41.91166358227718],[-87.71336479239515,41.91185528837389],[-87.71336845651966,41.911997684177074],[-87.71337562025367,41.912214133059344],[-87.71338181897107,41.91239484653841],[-87.71339183921431,41.91268696959499],[-87.71340488394748,41.91309299433653],[-87.71341692303012,41.91358940313929],[-87.71333577964262,41.91358995845301],[-87.71275205444579,41.913597370487096],[-87.71260746420693,41.9135991693594],[-87.71242759954276,41.913601406841515],[-87.71212114776678,41.91360542990799],[-87.71195910323267,41.91360754434629],[-87.71179831118961,41.91360954211937],[-87.7116160195195,41.91361180690541],[-87.71111684765158,41.91361763766791],[-87.71098247952041,41.913618644111935],[-87.71080648103506,41.91361996203012],[-87.71028178136085,41.9136289163975],[-87.71017982704791,41.91362974925801],[-87.70999724298649,41.91363124150205],[-87.70954615184404,41.913634554757074],[-87.70935962512426,41.913638050909725],[-87.709169312724,41.91364161783888],[-87.70869611562061,41.91364749666329],[-87.70854809519292,41.91364917352005],[-87.70837533854893,41.9136511302122],[-87.70806036341398,41.913655068607426],[-87.70772726958508,41.91365963382267],[-87.70753880366104,41.91366221634367],[-87.70702498261927,41.91366471732164],[-87.70685459549391,41.913716017155146],[-87.70682908816738,41.91298937853805],[-87.70680038011942,41.911941773118045],[-87.70677016981148,41.9108364291484],[-87.70681133684698,41.91040246448576],[-87.70688627052114,41.91020876737544],[-87.70696046604213,41.91011532922255],[-87.70748941824024,41.91010970652204],[-87.7084393381375,41.910095094259724],[-87.70863000381907,41.910092160247906],[-87.70947023363122,41.91008111773007],[-87.70977169965246,41.91007715422265],[-87.7100695898393,41.910073689723816],[-87.7109156499983,41.9100638463731],[-87.7118115747714,41.910054547431905],[-87.71188059388648,41.910053830701465],[-87.71194566729572,41.91005315514614],[-87.71204368267308,41.91005213721333],[-87.71316947614952,41.910037011357566]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4020280.8167","perimeter":"0.0","tract_cent":"1175240.78513092","census_t_1":"17031081700","tract_numa":"33","tract_comm":"8","objectid":"353","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904030.78337962","census_tra":"081700","tract_ce_3":"41.89204214","tract_crea":"","tract_ce_2":"-87.63186395","shape_len":"9087.48589535"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62953755488567,41.887546057693505],[-87.62953702557662,41.887420227229946],[-87.62965674584616,41.887420607985725],[-87.63006787670656,41.887421178101086],[-87.63078467461881,41.88743141080622],[-87.6310210428405,41.8874431667282],[-87.63125527051334,41.88745481577287],[-87.63170929954651,41.88746648750551],[-87.63223001053066,41.887479870829104],[-87.63249901075592,41.887480655521756],[-87.6327287876298,41.887481325431054],[-87.63279821946183,41.88747335080918],[-87.63337190654457,41.88747635369334],[-87.63377407676364,41.88753412820332],[-87.6339706484456,41.88752779503914],[-87.63397117519177,41.887659203693396],[-87.63397201325819,41.887854159577294],[-87.63397212168024,41.88788283973608],[-87.6339722143161,41.88790734416374],[-87.63397952387207,41.88809660042301],[-87.63398492963563,41.888236593120475],[-87.63398660559238,41.888511234995185],[-87.63398686823761,41.88855375666039],[-87.6339877708317,41.88870000238828],[-87.6339887569119,41.88885876289991],[-87.63398965800563,41.88900514609735],[-87.63400656419078,41.88916588500212],[-87.63402176873146,41.88931044585448],[-87.6340211447651,41.88940802746193],[-87.63402168526936,41.88955380471701],[-87.63402184600126,41.88957624231727],[-87.63402264609675,41.88968794895609],[-87.63402384664998,41.889786611646564],[-87.63402835923127,41.889982651855746],[-87.63403197013326,41.89013957019242],[-87.63403429877606,41.890249326467945],[-87.63404095637271,41.89049418051315],[-87.63404465043682,41.890616843016296],[-87.63404926877433,41.89078548317175],[-87.63405266154005,41.890909372703604],[-87.63405500475025,41.89103463399791],[-87.63405669037735,41.891119166793416],[-87.63405867917204,41.89121964545631],[-87.63406224996311,41.891397356604955],[-87.63406855846637,41.891587119548106],[-87.63407320129373,41.89172678671087],[-87.63407484927454,41.89182487580096],[-87.63407738815248,41.89198271236699],[-87.63407939971376,41.89210467880768],[-87.63408156724606,41.892239351740606],[-87.63408740588642,41.89236562633193],[-87.63408846738702,41.892388585871686],[-87.63409455352837,41.8925202209132],[-87.63409799952626,41.892679078351335],[-87.6341004755853,41.892788835475464],[-87.63410654457432,41.89302037627658],[-87.63411054862681,41.89318865230156],[-87.63411465362903,41.89336117756388],[-87.63411717604116,41.89344648380632],[-87.63412583944779,41.893739868032284],[-87.63412980870338,41.893874332358116],[-87.634131787754,41.89395046130115],[-87.63413279103617,41.89398906619625],[-87.63413552670528,41.8940942902992],[-87.63413845392924,41.894216536419286],[-87.63414216074777,41.89437506608971],[-87.63414563319822,41.894521409919086],[-87.63414886835317,41.89465586975659],[-87.63415051019062,41.894715841316824],[-87.63415257578545,41.894792592345006],[-87.63415509701201,41.89488623143185],[-87.63416054097978,41.895087581744185],[-87.63416473575155,41.89524172358352],[-87.63417080682021,41.89546640370693],[-87.634175070671,41.89559471720832],[-87.63417827319347,41.89569109231665],[-87.63418386141956,41.89593980898742],[-87.63418863807178,41.89614170404641],[-87.63419573129782,41.896414085170555],[-87.63420286755138,41.89659580880609],[-87.63383502305997,41.896600773951036],[-87.6336283913119,41.89660297391105],[-87.63350220759457,41.89660431720995],[-87.63296312432391,41.896610360979636],[-87.63278624217048,41.89661334157755],[-87.63270950976829,41.896613255436456],[-87.63201453302503,41.89662462423115],[-87.6319826299542,41.89662514590453],[-87.631812431761,41.896627569228066],[-87.63124523381798,41.8966356431062],[-87.63070487588227,41.89664333258341],[-87.63051734121606,41.896645724472904],[-87.63019410541155,41.89664983323784],[-87.62977463923221,41.89665552470661],[-87.62976788679438,41.89622145454568],[-87.6297585296874,41.89580902096048],[-87.62975407930124,41.89565701189146],[-87.62974340981916,41.895292545502755],[-87.62972431909824,41.89485409420822],[-87.62972653643672,41.8946888199905],[-87.62972544577504,41.89445291877352],[-87.6297196055605,41.89413169758187],[-87.6297170779655,41.89405214726563],[-87.62971428233662,41.8939641567791],[-87.62970519047066,41.8936212636098],[-87.62969790612544,41.89334800277976],[-87.62969606032446,41.8932491045472],[-87.62969425237392,41.89315217910226],[-87.62968794744701,41.892843197854134],[-87.629679898374,41.892552585155165],[-87.62967614372174,41.892448378560225],[-87.62967252216083,41.89234787475474],[-87.62966768199001,41.8921397221478],[-87.62965831625303,41.89175827065415],[-87.62965216204219,41.89164645438886],[-87.62964616012798,41.891537394817675],[-87.62963946999992,41.89130365454989],[-87.62963800550392,41.89124357421364],[-87.62963113825353,41.8909618635719],[-87.6296281667907,41.89083279236542],[-87.62962603999623,41.890740400053026],[-87.62961844415578,41.890444167902345],[-87.62961108652867,41.89015869433514],[-87.6296070309301,41.89003973035668],[-87.62960408554228,41.88995332752897],[-87.62959745445838,41.889637672041296],[-87.62959086794122,41.88933395424703],[-87.62958692819406,41.88923234744699],[-87.62958605202193,41.88920975150534],[-87.62958250950436,41.88911839796641],[-87.62957829418504,41.888985385777865],[-87.62957530804422,41.888891158310564],[-87.62956405410242,41.88858480484523],[-87.62955919202668,41.88845253566209],[-87.62955438199624,41.88832168282206],[-87.62954407384156,41.88803624622381],[-87.62953977073339,41.88780327098905],[-87.62953755488567,41.887546057693505]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2636286.26565","perimeter":"0.0","tract_cent":"1166114.08433714","census_t_1":"17031671200","tract_numa":"12","tract_comm":"67","objectid":"354","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861924.98041577","census_tra":"671200","tract_ce_3":"41.77669941","tract_crea":"","tract_ce_2":"-87.66658245","shape_len":"6622.76884289"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66865896031021,41.77395484954035],[-87.66894631495393,41.77395166113023],[-87.66894977298017,41.77405916832556],[-87.66896206371949,41.77450584604536],[-87.66898252870894,41.775240392392654],[-87.6689949723088,41.77566873901335],[-87.6689981252507,41.77576958675239],[-87.66900114666322,41.7758661995567],[-87.66900687977913,41.77604957903574],[-87.66902054254773,41.776636909618254],[-87.66904467487522,41.777481578241705],[-87.66904755906306,41.7775888350647],[-87.66905092712678,41.777714110972624],[-87.6690657775724,41.77829181577934],[-87.66906746090633,41.77835727718821],[-87.6690814801259,41.778877598890304],[-87.6690915314803,41.77925065612488],[-87.66907886090783,41.77938321537298],[-87.6688721805781,41.779385065509565],[-87.66816948816404,41.77939590066054],[-87.66787727237717,41.77940006251836],[-87.6674790881418,41.77940573248446],[-87.66691959108863,41.779414096693685],[-87.66666724248833,41.77941826581091],[-87.66649055624428,41.77942118474318],[-87.66571567846148,41.77943147608787],[-87.66545966931571,41.77943479058226],[-87.66522413941844,41.779437839404515],[-87.66439691431411,41.7794543762731],[-87.66422076561432,41.77946457161035],[-87.66421774131375,41.77933082762947],[-87.66421502007195,41.77923617594086],[-87.66420780893593,41.77898536869066],[-87.66420525477429,41.77889651309285],[-87.66419358795004,41.77849071375883],[-87.66418763441233,41.778263506489594],[-87.66417967221469,41.777907250835355],[-87.66417479113154,41.777766659693135],[-87.66417058505837,41.777654842829534],[-87.66416623156904,41.77753908045734],[-87.66414349158211,41.77662655263187],[-87.66412703577618,41.77598423704979],[-87.66412110424159,41.775833166415],[-87.66411573085085,41.77569629471379],[-87.66409268041552,41.774930172914],[-87.66407503654533,41.77416586629677],[-87.66407020304622,41.77401262605724],[-87.66431149676175,41.774010626601594],[-87.66472927213057,41.774004180350474],[-87.66510953646119,41.77399831134998],[-87.66533582975266,41.7739957861501],[-87.66555090441105,41.77399338575007],[-87.66593872514233,41.77398814273566],[-87.66638427336734,41.77398211772166],[-87.66653959223468,41.77398008563854],[-87.66671844029835,41.773977745572154],[-87.66714148064501,41.77397269159809],[-87.66751945693373,41.77396817487163],[-87.66774590537169,41.77396580169889],[-87.66779275497512,41.77396531074505],[-87.66794776930652,41.77396368581468],[-87.66834661375842,41.773958730957865],[-87.66865896031021,41.77395484954035]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1778208.13184","perimeter":"0.0","tract_cent":"1164748.40122364","census_t_1":"17031240200","tract_numa":"8","tract_comm":"24","objectid":"387","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911377.82854437","census_tra":"240200","tract_ce_3":"41.91243187","tract_crea":"","tract_ce_2":"-87.67018915","shape_len":"5339.65930134"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66780009946605,41.91428389087868],[-87.66776578399866,41.913333464410194],[-87.66775758092368,41.9130267766375],[-87.66775427218224,41.91290724625166],[-87.66775265795114,41.91284892228554],[-87.66774962033374,41.91273919009377],[-87.66774190215835,41.91245012991682],[-87.66773787728611,41.91229938661093],[-87.66772900797444,41.911987782473496],[-87.66772039829021,41.91168323304468],[-87.66771203357011,41.91142042449116],[-87.66770230069557,41.91107006703632],[-87.66769667592283,41.910833509183455],[-87.6676916188863,41.910630287412374],[-87.66817014144917,41.91062316329084],[-87.66820418203459,41.91062267853221],[-87.66843447655354,41.910619397841664],[-87.66866765243334,41.910616082599375],[-87.66891155243927,41.910613171965544],[-87.66923907898516,41.910609262606336],[-87.66961709495952,41.91060426353634],[-87.66988866560595,41.910600668558594],[-87.67013431908586,41.9105972199051],[-87.67041355005847,41.91059329937839],[-87.67064819722691,41.9105897965114],[-87.67104290226533,41.91058389592328],[-87.67135676935169,41.910579262606674],[-87.6715682676895,41.910576139771145],[-87.67206317929292,41.91056811473242],[-87.67233744074137,41.91056366584844],[-87.672575952913,41.910561306424746],[-87.67258148603092,41.910731837347065],[-87.67258537391396,41.91089129982028],[-87.67258834874235,41.911013298007575],[-87.67259607326666,41.91133010875779],[-87.672608830632,41.911852903234895],[-87.67261193208024,41.91197997895657],[-87.67261358935374,41.91204788048152],[-87.67261885119753,41.912263470335695],[-87.67261954158276,41.9123828757722],[-87.67262035582172,41.91252368691522],[-87.67262554069555,41.9127147538676],[-87.67263406610878,41.91302892369335],[-87.67264315038547,41.91336286642381],[-87.6726544720088,41.913779121456784],[-87.67265710951678,41.91387606309881],[-87.67266481066133,41.91415899466903],[-87.67266732683025,41.91425042601686],[-87.67243555383799,41.914254671538885],[-87.6719565624559,41.91426234170355],[-87.6714472022393,41.914271589754556],[-87.6712337418158,41.91427546475325],[-87.67092782430815,41.91428061584648],[-87.6708440656284,41.91428202724606],[-87.67023144657789,41.914292348083094],[-87.66901169251209,41.914253648510915],[-87.66889042612927,41.91425489032662],[-87.66792950303731,41.914270250094475],[-87.66788223393031,41.91428184111429],[-87.66780074681203,41.91430182267981],[-87.66780009946605,41.91428389087868]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2300850.52524","perimeter":"0.0","tract_cent":"1174317.27641803","census_t_1":"17031340300","tract_numa":"24","tract_comm":"34","objectid":"355","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1886081.02337074","census_tra":"340300","tract_ce_3":"41.84280744","tract_crea":"","tract_ce_2":"-87.63579122","shape_len":"8178.53027219"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63460940303433,41.845570685591895],[-87.63460731227605,41.845485744625044],[-87.63428682180485,41.84549061530674],[-87.63428475690766,41.845405158570095],[-87.63428351379143,41.84535368186593],[-87.63428174277863,41.84528037108826],[-87.63428123981376,41.84525955062197],[-87.63427961325031,41.84519222156189],[-87.63427718645005,41.845091766336196],[-87.63427706119687,41.84508658386258],[-87.63427240927648,41.84489401828088],[-87.63426976937278,41.84478475350186],[-87.63426491183232,41.84460393209117],[-87.63426215442941,41.84444255281859],[-87.63426095644867,41.84426603471704],[-87.63425238170332,41.844041677948745],[-87.63424456019133,41.84383703448495],[-87.6342389093014,41.84362121889436],[-87.63423460019406,41.843440565440254],[-87.6342299563972,41.84318951965786],[-87.63422663992796,41.84303230821875],[-87.63421964684935,41.84281165452879],[-87.63421390002084,41.84258564969761],[-87.63420831407758,41.84236597245613],[-87.63420512469654,41.84218856345715],[-87.63420046551443,41.84199797414985],[-87.63419449021103,41.841812014077576],[-87.63419044254198,41.841654523997796],[-87.63418782970304,41.84152374376266],[-87.63417634256469,41.841138389673546],[-87.63417033502307,41.8409462995191],[-87.63416505433614,41.840733559645024],[-87.63415928055637,41.84047509735775],[-87.63415457697403,41.84023631793237],[-87.63415168924412,41.8400730167597],[-87.63414971609649,41.839961423049424],[-87.63414700182382,41.83983083453078],[-87.63414242901831,41.839687990345844],[-87.63413721712226,41.83952517391604],[-87.63413316369343,41.83935141026125],[-87.63412926549773,41.83918354716178],[-87.6341253669207,41.83901582154259],[-87.63411981884619,41.838824293393664],[-87.63411404652076,41.838633174963604],[-87.634113749946,41.83861956161465],[-87.6341102786726,41.838460153696616],[-87.63410385969854,41.83820523049626],[-87.6343426228476,41.83820248204787],[-87.63464486937993,41.838198119002],[-87.63486912280233,41.83819487257339],[-87.6353179638123,41.83818842077384],[-87.63557219857294,41.83818476597828],[-87.63579745459732,41.83818042612235],[-87.63598350986982,41.838176863204104],[-87.63614437152445,41.838175133084476],[-87.63637566127491,41.83817264487242],[-87.63638458527834,41.83851703406121],[-87.6363864988897,41.838590674248756],[-87.6363877436696,41.83863859663318],[-87.63639099413734,41.83877193264901],[-87.63639334343947,41.8389135783099],[-87.63639565319649,41.839052781333486],[-87.63639994736786,41.83923708490496],[-87.63640269617817,41.839354089225914],[-87.63640704015467,41.83953877701215],[-87.63640993339435,41.839652077448946],[-87.63641430302688,41.839823208725],[-87.63641638992765,41.83989468225422],[-87.63641926922256,41.83999249480612],[-87.63642084144267,41.840045890950066],[-87.63642106611377,41.84005349337096],[-87.63642599711652,41.84022007284021],[-87.63642815654926,41.840375301685185],[-87.63643038895697,41.8405357445178],[-87.63643535264542,41.84069955246665],[-87.6364397066644,41.84084378957532],[-87.63644375663327,41.840977898783684],[-87.63644626490272,41.84110788224197],[-87.6364498872155,41.84129561172301],[-87.63645559762044,41.841476246229625],[-87.63645759645534,41.84153517765375],[-87.6364605467459,41.841622161203084],[-87.63646500572557,41.84181321629983],[-87.63646911546674,41.84198917583376],[-87.63647195210748,41.84209975905944],[-87.63647694631952,41.84226861658858],[-87.63648162219943,41.8424261929935],[-87.63648500373519,41.84255275166505],[-87.63648959397285,41.842724514823026],[-87.63649660421665,41.84298685409175],[-87.6365010200907,41.84316163541438],[-87.63650458880996,41.84331305793308],[-87.63650805416344,41.84345361254835],[-87.6365120389938,41.84364268856474],[-87.63661030358435,41.84364114059818],[-87.63674996883398,41.843638940234314],[-87.6369539680915,41.84363572609287],[-87.63728924047565,41.84363046936308],[-87.63752474787034,41.843626769511374],[-87.63771223963647,41.843623837390346],[-87.63794824310733,41.84362041437509],[-87.63829148955728,41.84361678149607],[-87.63829854268457,41.843835897134305],[-87.63829931923969,41.8439947670783],[-87.63830021978188,41.84407002070016],[-87.63830147759217,41.84417513293912],[-87.63830694954376,41.84436808755854],[-87.63831313138563,41.844523971236285],[-87.63832032749829,41.84470543810115],[-87.63832232338467,41.84483978171414],[-87.6383252253216,41.84497857650802],[-87.63832633907438,41.84503165723716],[-87.6383297577623,41.845217656424865],[-87.63833606235177,41.84543643925787],[-87.6383419769168,41.84564171851313],[-87.63834746159885,41.84583354801284],[-87.63834916211844,41.845890776116605],[-87.63835160694566,41.8459730643627],[-87.6383543238488,41.84606449812678],[-87.63835584065518,41.84611554037882],[-87.63835783199212,41.846182556817695],[-87.63836070080585,41.846279115578824],[-87.63836220923396,41.846329881431295],[-87.63824773113456,41.84633310803006],[-87.63803674250039,41.8463390546689],[-87.63786971995785,41.84634376110188],[-87.63758559426299,41.846351768166464],[-87.63735268197722,41.84635763288107],[-87.63701932211143,41.84636587504617],[-87.63684089510319,41.84637028087246],[-87.63667701811758,41.84637160176404],[-87.6365762718176,41.84637167752377],[-87.63642060151831,41.84637179453139],[-87.63621635355484,41.846375511968006],[-87.63608251349386,41.84637794791597],[-87.63569994416055,41.84638396816683],[-87.63531189019928,41.84638808606781],[-87.6348685660597,41.846391977148635],[-87.63463058088561,41.84639645723733],[-87.63462268823655,41.846086307654694],[-87.63461878417432,41.84594748749963],[-87.63460940303433,41.845570685591895]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3450673.25112","perimeter":"0.0","tract_cent":"1126203.98963513","census_t_1":"17031170900","tract_numa":"16","tract_comm":"17","objectid":"356","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919771.64828488","census_tra":"170900","tract_ce_3":"41.93619608","tract_crea":"","tract_ce_2":"-87.81160577","shape_len":"7909.89651137"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80674680673566,41.937996346765935],[-87.80673903539243,41.93775890213662],[-87.80673014911734,41.93749879111656],[-87.80672647621248,41.937351107483956],[-87.80672119179623,41.937224986071406],[-87.80671612439708,41.93710380498342],[-87.80671045367968,41.93695767666044],[-87.80670676759179,41.93683389516166],[-87.80670576891063,41.93680035613903],[-87.80670132503302,41.93665110474282],[-87.80670052273862,41.93661460285563],[-87.80669105306124,41.9363637870928],[-87.80667964009812,41.936061490597304],[-87.80667277934621,41.93586793627999],[-87.80666434440505,41.93563343087453],[-87.80665700543648,41.935426537406784],[-87.80665210935146,41.9352890291896],[-87.80664339264908,41.93503964875716],[-87.80664036037642,41.9349570336183],[-87.80663689108873,41.934860530685135],[-87.80662355765317,41.93451118430405],[-87.80662356059098,41.93451118459195],[-87.80662356536858,41.93451118461387],[-87.80685639205653,41.93451011219974],[-87.80713707890695,41.93450881875842],[-87.80723232102464,41.93450673105648],[-87.80772115139767,41.93449608019799],[-87.80784531040005,41.93449337463481],[-87.8078453276797,41.934493373890625],[-87.8082060617595,41.934485502359166],[-87.80845322307596,41.934480540303745],[-87.80853765715194,41.93447884091285],[-87.80906548118405,41.934466707505344],[-87.8090654951516,41.934466707294696],[-87.8094089582155,41.93445880800677],[-87.80967626327154,41.93445352359891],[-87.80976021908153,41.93445187573773],[-87.81002659868969,41.93444654293533],[-87.81028725758043,41.9344413245082],[-87.81066443327445,41.93443376685463],[-87.81089648876426,41.934428977755246],[-87.81101488748394,41.93442652520967],[-87.81150730316597,41.93441625022388],[-87.81150730610604,41.93441625023724],[-87.81201401803641,41.934405681849384],[-87.8121339640924,41.93440271377189],[-87.81227291513008,41.93439928297143],[-87.81272896940118,41.93439012724099],[-87.81272897307626,41.93439012725766],[-87.81323439796891,41.93437995955623],[-87.81333963967276,41.93437750017376],[-87.81364242433561,41.93437039081285],[-87.81395206670821,41.93436416320797],[-87.81395207479561,41.93436416297013],[-87.81417911305446,41.93435961045565],[-87.81436992066,41.93435578506687],[-87.81439875922568,41.93435520657447],[-87.81442077102203,41.9343547264754],[-87.81456351133946,41.93435161436244],[-87.81512186518256,41.934339464808595],[-87.81517237258355,41.93433836564272],[-87.81517238103845,41.93433836540645],[-87.81541770918237,41.9343328584064],[-87.81561252827481,41.93432874251662],[-87.81575772353393,41.93432571957073],[-87.8157681631132,41.93432551992304],[-87.81590357895972,41.934322864618714],[-87.8160459795071,41.93432007596886],[-87.81604950787587,41.93432000981249],[-87.81639039097986,41.934312543984],[-87.81639040715241,41.93431254378239],[-87.81639724335102,41.93454007075601],[-87.81640018655781,41.93462617069946],[-87.8164109465797,41.93494125645406],[-87.81641561942608,41.93507714446185],[-87.81642334400503,41.935303907019815],[-87.81642860324105,41.9354582114226],[-87.81643205895593,41.935558226341406],[-87.81643864817867,41.93572993457481],[-87.81644431365912,41.935874854989436],[-87.81645310573626,41.93613784638836],[-87.8164531057163,41.936137848858074],[-87.81645310569638,41.9361378513278],[-87.8164621359438,41.93640749469411],[-87.81646344071237,41.9364464540421],[-87.81647054022191,41.93664601926759],[-87.81647668210817,41.93681843895184],[-87.81647760930585,41.936844759983195],[-87.81650087215986,41.93750501578285],[-87.81650377210785,41.937587170934364],[-87.81650467096611,41.937612634263786],[-87.81650950797655,41.937750992198794],[-87.81651876080126,41.937938766623034],[-87.81630136477004,41.93794725546122],[-87.81597525160167,41.93795097307818],[-87.81575257423526,41.93795350927739],[-87.81549633728534,41.93795641537083],[-87.81529576461206,41.93795754077694],[-87.81503273564385,41.93795901618475],[-87.81472474442202,41.93796245530322],[-87.81445057447044,41.93796497619673],[-87.81422790392149,41.93796665903392],[-87.81407666972267,41.93796668950846],[-87.81386763872929,41.93796673108682],[-87.81347390639716,41.93796936726897],[-87.81323377822591,41.93797096913406],[-87.81311362225559,41.937971769461946],[-87.8128526599267,41.937973826349356],[-87.81263391249009,41.937975549948895],[-87.81247972069899,41.93797652456284],[-87.81222275835533,41.9379782126],[-87.81205118089906,41.937979299826594],[-87.81184530946241,41.93798067011914],[-87.81163234480383,41.937982042939176],[-87.811485724223,41.93798298805106],[-87.81129749772887,41.93798390682301],[-87.81104031907576,41.93798516148439],[-87.81081768003459,41.93798746902261],[-87.81061242753715,41.93798955369415],[-87.81039288601028,41.93798962424529],[-87.81025223538661,41.937989669344724],[-87.8099952062073,41.93799052882398],[-87.80973762573443,41.93799138521379],[-87.80942943346501,41.93799239429117],[-87.8092956809235,41.937992881327744],[-87.80917458729225,41.93799179400785],[-87.80896642422427,41.93798992366251],[-87.80879508051333,41.93798938827179],[-87.80860664629603,41.93798882913173],[-87.80843522886809,41.93798832003491],[-87.80822963109462,41.93798768181034],[-87.807961332974,41.93798917948783],[-87.80766491365239,41.93799083346883],[-87.80740817603743,41.937991990081635],[-87.80723689503947,41.93799276960655],[-87.80703150471577,41.937993721837735],[-87.80682772465182,41.93799551533001],[-87.80674680673566,41.937996346765935]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7041965.11327","perimeter":"0.0","tract_cent":"1171131.32808524","census_t_1":"17031711000","tract_numa":"34","tract_comm":"71","objectid":"357","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1848461.1904169","census_tra":"711000","tract_ce_3":"41.73964483","tract_crea":"","tract_ce_2":"-87.64858234","shape_len":"10613.2303056"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64362704031949,41.736278066891884],[-87.64362180882279,41.73607036024119],[-87.64368013852607,41.736073635242654],[-87.64377314121833,41.73607225839956],[-87.64404490282263,41.73606823488504],[-87.64458250897118,41.73606027313011],[-87.64460342382573,41.73605996324851],[-87.64463673844577,41.736059469993926],[-87.64465597388015,41.73605918516394],[-87.64480893648532,41.73605691900241],[-87.64486741928211,41.73605605287738],[-87.64492665549426,41.736055175045],[-87.64500823165564,41.73605396667441],[-87.64503338920584,41.73605359403797],[-87.64517231804338,41.7360515355946],[-87.64572572582051,41.73604333463173],[-87.64608934948636,41.73603794455786],[-87.64624383568976,41.736035654313376],[-87.646354618569,41.736034012041394],[-87.64690692467197,41.73602581389539],[-87.6472813774546,41.73602028550384],[-87.6476401067918,41.736014988085834],[-87.64810870362331,41.73600922127628],[-87.6484924260795,41.73600339102387],[-87.64886885877463,41.7359976702959],[-87.64930624802996,41.735991108947964],[-87.64970346190478,41.73598629955774],[-87.6500067961444,41.73598262596611],[-87.65032900975388,41.73597792792695],[-87.65091649202287,41.735969111393],[-87.6512669620704,41.73596385019649],[-87.65167367494797,41.73595814057351],[-87.65212816876084,41.73595265790545],[-87.65276667209598,41.7359449521841],[-87.65278396737719,41.735944743417384],[-87.65334015449258,41.7359353726428],[-87.65335277209292,41.73635909917988],[-87.65335493985981,41.73643309812089],[-87.6533591295755,41.73657612957844],[-87.65336118810495,41.73664631382499],[-87.65336446474498,41.73675805416593],[-87.6533682171444,41.73688516546805],[-87.65337261597301,41.73703547002965],[-87.65339063373109,41.73764997320461],[-87.65339162592521,41.73775435348471],[-87.65339266563254,41.73786371222547],[-87.65341560696514,41.73869348078288],[-87.65343803270493,41.73950266383547],[-87.65344115472266,41.7395773602224],[-87.65344742379301,41.7397273686902],[-87.65346630798845,41.74045554631202],[-87.65348793898322,41.74128802332678],[-87.65349103610755,41.741394513746016],[-87.6534945539559,41.74151548343645],[-87.65352112004766,41.74234219927524],[-87.6535372467766,41.74308172141093],[-87.65353877655501,41.74319122428196],[-87.65353912690468,41.74321630165641],[-87.65329362712573,41.743222489893164],[-87.65293383462654,41.74322598406291],[-87.65268976494696,41.743228353636425],[-87.65260636246254,41.7432286839355],[-87.65232748963149,41.74323256091116],[-87.65207210533067,41.743236110496625],[-87.65177290613654,41.74324059312158],[-87.65171946549641,41.7432413946904],[-87.65132454697279,41.743247318207374],[-87.65111477098537,41.74325063910403],[-87.65083282807744,41.74325510126373],[-87.65050407103831,41.74326160155199],[-87.65014530164812,41.74326868866195],[-87.64989931174597,41.7432713589547],[-87.64959651233049,41.743274645146585],[-87.64928595032413,41.743278463101205],[-87.6492686262703,41.74327867610645],[-87.6486862996498,41.74328827060278],[-87.64813301502168,41.74329716155433],[-87.64808181909305,41.74329771630331],[-87.64775430475862,41.74330126490388],[-87.64752492734969,41.74330407835731],[-87.64750020889846,41.74330438170572],[-87.64747549008358,41.74330468477219],[-87.64720495738224,41.74330800248344],[-87.64692001584038,41.74331201944951],[-87.64686761046406,41.74331266303175],[-87.64654774958338,41.74331659009556],[-87.64631762854573,41.743320438981925],[-87.6462885282116,41.74332092553418],[-87.64625942824061,41.74332141235567],[-87.645950621333,41.74332657595095],[-87.64570815066213,41.74333047734467],[-87.64564474729241,41.743331497207045],[-87.6456223913166,41.743331857102326],[-87.64524950124729,41.74333645795348],[-87.64510440808539,41.74333871747147],[-87.6450758955864,41.7433391603099],[-87.64504738198498,41.74333960340908],[-87.644686244141,41.74334521330567],[-87.64448922316741,41.74334789243907],[-87.64443963854669,41.743348566643924],[-87.64434167759275,41.74334989863386],[-87.64399438706256,41.74335577408174],[-87.64383083223669,41.743358118544585],[-87.64382658950171,41.743195762023284],[-87.6438164740035,41.742904804609815],[-87.64380650751356,41.742552046240895],[-87.64380268401128,41.74241305149511],[-87.6437998856539,41.74231133061345],[-87.64379151827903,41.74202142648209],[-87.64378278926841,41.741696832097],[-87.64377670833085,41.74152862433155],[-87.6437722430262,41.7414051036136],[-87.64376125522504,41.74102451172246],[-87.64375284982567,41.740745035673186],[-87.64374519768296,41.7404876283815],[-87.64373474900458,41.74013201288451],[-87.64372941167126,41.739889939568585],[-87.64372507614213,41.73969331034746],[-87.64371433851163,41.73920629356484],[-87.64371433819223,41.739206289172024],[-87.64371019746243,41.7390916986904],[-87.64370625563538,41.73898978564482],[-87.6436966743645,41.73874206563688],[-87.64368559815127,41.73839377357277],[-87.64367800708004,41.73813754659353],[-87.6436731755016,41.73800538149222],[-87.64367041473194,41.73792986645665],[-87.64366613073341,41.73781268610554],[-87.64365180600994,41.73752828949249],[-87.64364754771556,41.73731330560114],[-87.64362704031949,41.736278066891884]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3480715.49551","perimeter":"0.0","tract_cent":"1181000.2498423","census_t_1":"17031690500","tract_numa":"25","tract_comm":"69","objectid":"358","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1858940.84398576","census_tra":"690500","tract_ce_3":"41.76818096","tract_crea":"","tract_ce_2":"-87.61210248","shape_len":"9018.71309909"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61496790383796,41.76571808929142],[-87.61526208391622,41.765711464650344],[-87.61526634805148,41.76598151355178],[-87.61526966933248,41.766096904780056],[-87.61527194881073,41.76617600935623],[-87.61527454146272,41.76626581891628],[-87.61528274512834,41.76659960370486],[-87.61528785508689,41.76680751629967],[-87.615292432349,41.7669887781753],[-87.61529814105975,41.767226332612275],[-87.61530594143109,41.767505240996826],[-87.61530651589594,41.76752578179399],[-87.61531863550411,41.76795910515338],[-87.6153267204476,41.7682728285802],[-87.61533480618152,41.7685865519946],[-87.61534442016566,41.76896043987663],[-87.61535486367525,41.769339631052546],[-87.61536944433506,41.76986903997686],[-87.61537077442466,41.76991732042028],[-87.61537583948768,41.77011068758088],[-87.61538615018466,41.77048452181154],[-87.6153924037295,41.77071126177592],[-87.6153968186903,41.770871347818],[-87.61539954639007,41.770970242307556],[-87.61540220199731,41.77106652899166],[-87.61540277806907,41.77108742297647],[-87.61540335316442,41.77110827304641],[-87.61540548089091,41.77118545944067],[-87.61540826215293,41.77128629173052],[-87.61541522695734,41.77153880968597],[-87.61541602313744,41.77156767913725],[-87.6154174240675,41.77161845484575],[-87.61541919929516,41.771682807538824],[-87.61542095803524,41.77175077600876],[-87.6154228391067,41.7718234558214],[-87.61542401300777,41.77186881753971],[-87.61542593349489,41.77194302589392],[-87.6154273541723,41.771997916515375],[-87.61542862355391,41.77204697868474],[-87.61543226378585,41.772187986463265],[-87.61543521171804,41.77230484672145],[-87.61543728808051,41.7725460281475],[-87.61544979997485,41.77296977132702],[-87.61455851425073,41.77232038636359],[-87.61427123403998,41.772111915966825],[-87.61362478958843,41.77164262812599],[-87.61349831613977,41.77155083500175],[-87.61334984308121,41.77144306929842],[-87.61298645114174,41.77118036810886],[-87.61286474102366,41.771092381119836],[-87.61281993787722,41.77105999191347],[-87.61261541423319,41.770913069411975],[-87.61248522386532,41.770819577829116],[-87.61218345648312,41.770603444987955],[-87.61183277077562,41.770352272917776],[-87.61159153204585,41.7701781964825],[-87.6113503315842,41.77000409233506],[-87.61113665747698,41.76984994707382],[-87.61090494945675,41.769682734947345],[-87.61051682902524,41.769406058367714],[-87.61006411778074,41.76908333240671],[-87.60974830229053,41.768856009783605],[-87.60956248670023,41.7687222624794],[-87.60930176451191,41.768534583978116],[-87.60893878401797,41.76827400289474],[-87.6087432232168,41.76813357906171],[-87.60862171512103,41.76804521066017],[-87.60836014264018,41.76785497656777],[-87.60807860476318,41.76765443039274],[-87.60802318409526,41.76761497432718],[-87.60768640773676,41.76737535644436],[-87.60755563959978,41.76728232212182],[-87.60744360005243,41.76720257859727],[-87.60726584977196,41.76707609600908],[-87.6071724657348,41.767009642730486],[-87.60706940877927,41.76693632237765],[-87.60691035130706,41.76682313001597],[-87.60682598594182,41.76676312768457],[-87.60664823808892,41.766636644150466],[-87.60662249241312,41.76661831763771],[-87.60652656444816,41.766550032937445],[-87.60629339928154,41.766384119496536],[-87.60608794410123,41.76623794781128],[-87.60558716421771,41.76586856404107],[-87.60647081411784,41.76586451207518],[-87.60663103574157,41.76586127581666],[-87.60675691811561,41.76585867839244],[-87.60709284175512,41.76585103045489],[-87.60712302916505,41.76585034447079],[-87.60719000846521,41.76584882129803],[-87.6072501288319,41.76584745452345],[-87.60744550938202,41.765843012015694],[-87.60750314160383,41.76584203115294],[-87.60780496357164,41.765836892964884],[-87.60787980303337,41.76583561881165],[-87.60797424600854,41.7658340109056],[-87.60811420565157,41.76583162793178],[-87.60822046645649,41.765829818344976],[-87.60832912755941,41.765827967823306],[-87.60835588468512,41.76582751234355],[-87.60846032370985,41.76582573384992],[-87.6086102240341,41.76582318082311],[-87.60869686810965,41.765821704799215],[-87.60884001002613,41.76581926691651],[-87.60903036552571,41.76581574696039],[-87.60922499737653,41.76581332391665],[-87.60951164769514,41.765809751408135],[-87.60972730142821,41.76580570360417],[-87.60983168208072,41.76580376377799],[-87.610069222918,41.76579934930939],[-87.61042831416036,41.76579394453257],[-87.61076605353749,41.765788859900454],[-87.6110321297365,41.765784198910026],[-87.611387304266,41.76577800112685],[-87.6116362088681,41.765773096635705],[-87.61190792850998,41.76576774210285],[-87.6122397405699,41.76576222019035],[-87.61232580630833,41.765760787745315],[-87.61251579130992,41.765757589003314],[-87.61284498738058,41.76575221139184],[-87.61320038593689,41.76574640431136],[-87.61344715308569,41.765742237728354],[-87.61378372247587,41.76573661245721],[-87.61405609446263,41.765732061006915],[-87.61436672802893,41.76572686990631],[-87.61465727531561,41.765721193914615],[-87.6147231710786,41.765719906557656],[-87.61496790383796,41.76571808929142]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7793332.86711","perimeter":"0.0","tract_cent":"1173444.38232583","census_t_1":"17031681300","tract_numa":"38","tract_comm":"68","objectid":"359","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856322.44847074","census_tra":"681300","tract_ce_3":"41.7611663","tract_crea":"","tract_ce_2":"-87.63987554","shape_len":"12121.8736021"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63570799533845,41.75825266977342],[-87.63570170906125,41.7580575631267],[-87.63583481526271,41.75805563465766],[-87.6359284386172,41.75805427759339],[-87.63622917519534,41.75804965385514],[-87.63642902461946,41.75804718916667],[-87.63648180829942,41.75804653839081],[-87.63659156056941,41.75804455191976],[-87.6366513486439,41.758043326349124],[-87.63675374512734,41.75804122706046],[-87.63687084753593,41.75803980547921],[-87.63694973055023,41.758038847536675],[-87.63719698965818,41.7580358452956],[-87.63752974748591,41.758028914576705],[-87.63767170211409,41.75802516869686],[-87.6378934676538,41.75801931623837],[-87.63817907975222,41.75801687306741],[-87.63843944293114,41.758013298958545],[-87.63859256679348,41.75801119636933],[-87.63884221354479,41.75799956047585],[-87.63927352550564,41.75797907351967],[-87.6392739343347,41.75743090179207],[-87.63927510279323,41.75719489891747],[-87.63928210108475,41.75692805785609],[-87.6392950546092,41.756661252756],[-87.63931396292912,41.756394483337985],[-87.63932360966392,41.75626453057556],[-87.63933485385132,41.75615703831966],[-87.63943871284465,41.756154909515985],[-87.63950026127564,41.75615364781002],[-87.63961207436114,41.75615135584663],[-87.63970569946244,41.7561494366953],[-87.6399000577843,41.75614578321942],[-87.6402825425932,41.756138592468744],[-87.64052104126436,41.75613479309673],[-87.64058028314176,41.756133849512864],[-87.64072989734947,41.75613146548987],[-87.6410177238143,41.75612680598576],[-87.64113016372477,41.756124938395395],[-87.64153300682976,41.756118246492775],[-87.64173984595027,41.75611546584039],[-87.6420264985296,41.75611161152584],[-87.64235149197378,41.75610637947595],[-87.6424285463759,41.756105138651385],[-87.64277902196324,41.75609917742871],[-87.64295901402667,41.75609612454252],[-87.64326168159964,41.75609099040117],[-87.6433913662539,41.75608944069661],[-87.64355411607143,41.75608725783788],[-87.64364159234601,41.75608559741761],[-87.64408352433679,41.75607720745333],[-87.64418368640354,41.756088416934375],[-87.64418761889512,41.75626485608152],[-87.6441926299302,41.75647820048313],[-87.6442022148982,41.75682242118612],[-87.6442093108006,41.75706014774791],[-87.64421632985055,41.757404380193805],[-87.64422104088133,41.75756324863797],[-87.64422235560164,41.75761199532251],[-87.64422548156716,41.75774118835283],[-87.64422996175914,41.75792629723811],[-87.64423152206834,41.75799073346681],[-87.64423260107061,41.75803534060161],[-87.64423324321783,41.758061856052414],[-87.6442352251395,41.75814375377996],[-87.64432680904798,41.758107254421915],[-87.64443082633815,41.758105477446755],[-87.64444902132387,41.75837492683286],[-87.64444906292655,41.7597419707463],[-87.64443692635344,41.76156208809058],[-87.64432126245016,41.761563519414295],[-87.64432484353217,41.7617567511244],[-87.64433311723715,41.76207631955718],[-87.64434325283348,41.76246854074442],[-87.64435558916104,41.76294628746634],[-87.6443625885237,41.763217109438266],[-87.64436645733431,41.763382979686824],[-87.64436947385235,41.7635123000882],[-87.6443766586079,41.763806916215636],[-87.64438525287065,41.764151377243834],[-87.6443921210228,41.76442502499885],[-87.64439386481439,41.76449419177805],[-87.64440080549792,41.76476366861792],[-87.64440443911448,41.76490370450783],[-87.64441296182687,41.76520275843198],[-87.64396157975551,41.76521115377373],[-87.64377370165143,41.76521244896204],[-87.64374023839883,41.76521267951665],[-87.64343696631205,41.76521826841425],[-87.64329354402392,41.76522076693753],[-87.64316702427347,41.76522281549066],[-87.64302770859152,41.76522523324459],[-87.64271215771119,41.765230708854745],[-87.64256034312345,41.76523300370612],[-87.64247576598969,41.765234282242254],[-87.64228926947997,41.765237100907285],[-87.64223937424852,41.76523785514317],[-87.64195312358356,41.76524214346743],[-87.6418132977505,41.76524423779106],[-87.6415437575422,41.765248961576226],[-87.64115128778259,41.765255838858934],[-87.64103312887605,41.76525762423007],[-87.64079402497373,41.765261083409676],[-87.64074449629989,41.76526179996232],[-87.64047742111232,41.76526566314396],[-87.64013581896009,41.76527014551569],[-87.64008753671168,41.76527077929253],[-87.63961454363165,41.76527698456763],[-87.63940698517891,41.76528003417229],[-87.63938248996568,41.76528040132462],[-87.63928921348376,41.765281799231595],[-87.63908211224715,41.76528490260405],[-87.63893128233829,41.765287673921605],[-87.63869323210012,41.76529204730125],[-87.6383385110817,41.765298197517],[-87.63778730919685,41.76530775235327],[-87.63773370266621,41.76530842425887],[-87.63744772478502,41.76531200787648],[-87.6371223413067,41.765317690962355],[-87.63651696933695,41.765328170511886],[-87.63619417704304,41.765333058763055],[-87.63591057364546,41.76533720538892],[-87.63531128788705,41.765346066206824],[-87.6349633053261,41.7653519834868],[-87.63466550384764,41.76535581103516],[-87.63466297927337,41.76521425991249],[-87.63466019374037,41.765072335347064],[-87.6346581212904,41.7649660086549],[-87.63465410665329,41.764788784940336],[-87.63465171784023,41.76469134784373],[-87.63464701747382,41.76449614479959],[-87.63464515663522,41.76440754754798],[-87.63464436161075,41.764366158700824],[-87.63464276969675,41.764279566420136],[-87.63467755386836,41.764134357600895],[-87.63473182982688,41.763989980808404],[-87.6347853420668,41.76384837108393],[-87.63484275022056,41.763695560836744],[-87.63484295051477,41.76360277733029],[-87.63471006459713,41.763571614946585],[-87.63468789416757,41.76356641580262],[-87.6346637461391,41.76356075291672],[-87.63461695240093,41.76354977930351],[-87.63448127817323,41.76351796302058],[-87.63445494712919,41.76347939420134],[-87.63443820301592,41.76345511507731],[-87.63443179586015,41.763420662600325],[-87.63443888050007,41.763392686411336],[-87.63445983456084,41.76334314207565],[-87.63448813652045,41.76330212231315],[-87.63455824308745,41.76316483983464],[-87.63459373653616,41.76306911502864],[-87.63460978210146,41.762995610526616],[-87.63460350516132,41.76274644464991],[-87.6345952693027,41.76246161895612],[-87.63458825763007,41.76221261351977],[-87.634578725942,41.7618918296001],[-87.63457485123219,41.76171703973632],[-87.63457388750922,41.76167356993929],[-87.6345705556309,41.761523275143404],[-87.63456539603497,41.76130965494866],[-87.63455900301108,41.761047562915714],[-87.63455319953107,41.76079870198035],[-87.63454556866606,41.76045476737719],[-87.63453641374272,41.760109423890675],[-87.63453047967863,41.75990021094341],[-87.63478275712514,41.759896262797625],[-87.63505153922584,41.75989185923796],[-87.63543275252815,41.75988572307409],[-87.63574692102351,41.75988030457637],[-87.63574079517291,41.75967770976482],[-87.63573275695182,41.759333580590024],[-87.63572120662535,41.75887038231164],[-87.63571397769277,41.75857340508843],[-87.63570799533845,41.75825266977342]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3519757.00372","perimeter":"0.0","tract_cent":"1165837.49248676","census_t_1":"17031611300","tract_numa":"20","tract_comm":"61","objectid":"362","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872212.70988612","census_tra":"611300","tract_ce_3":"41.80493608","tract_crea":"","tract_ce_2":"-87.66730426","shape_len":"7961.12018695"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66497251832394,41.80860444112622],[-87.66496885712871,41.80843105246686],[-87.66495894609159,41.80805066515293],[-87.66495092972686,41.807742079186745],[-87.66494147180492,41.80743452764207],[-87.66493133187365,41.80711503449547],[-87.66492421211247,41.80688955048757],[-87.66492102976432,41.80678242794337],[-87.66491606035098,41.80661518484047],[-87.66490865187144,41.80628346805177],[-87.66489700351914,41.80591500810261],[-87.66489180783728,41.805710474101616],[-87.66488424534695,41.80542044198439],[-87.66487714462416,41.80514731730791],[-87.66486706275477,41.80496360561585],[-87.66486169525227,41.80486580142225],[-87.66486138734207,41.804776972201964],[-87.66486131122493,41.804754937928585],[-87.66486109292575,41.804691925775536],[-87.66486092462567,41.80464351019371],[-87.66485830623714,41.80439785437314],[-87.66485113220804,41.8041248115491],[-87.66484368556272,41.803839115988985],[-87.66483390142025,41.803496023887995],[-87.66482796169444,41.803248811892324],[-87.66482471040489,41.803140407846925],[-87.66482071675229,41.803007272953046],[-87.66481218001547,41.80272763585507],[-87.6648046328884,41.80247989305766],[-87.66479922263923,41.802301757675934],[-87.66479491068009,41.80213087358487],[-87.66479019467984,41.80192123787372],[-87.66478425291007,41.80166016717193],[-87.66477913942185,41.80142879441388],[-87.66477647751485,41.80131821562656],[-87.66505675903927,41.80131394244858],[-87.66532788440759,41.801312281138905],[-87.6654000921594,41.801311830525776],[-87.66563290079628,41.801310377099014],[-87.66588018578751,41.801308850340305],[-87.66600221318072,41.801307316663696],[-87.66620869742272,41.801304721200424],[-87.66637836156251,41.80130460867654],[-87.66660528414198,41.8013043134162],[-87.66679908079131,41.80130362023338],[-87.6670654510524,41.801297179622644],[-87.66721274441144,41.80129550387287],[-87.66737224419433,41.801293689584945],[-87.6675757708237,41.80129250922869],[-87.66782021624525,41.801290700854985],[-87.66793148064906,41.80128987748469],[-87.66826207041241,41.801286961993476],[-87.66842644270683,41.80128580536179],[-87.66871996525693,41.80128373932724],[-87.6689744078783,41.801281561246874],[-87.66902553931682,41.80128112093048],[-87.66923747058699,41.80127929522236],[-87.669644634473,41.801275831288216],[-87.66965507966322,41.80167877894674],[-87.66969186950753,41.80309797886916],[-87.66969359412154,41.803164508578334],[-87.66969807798657,41.803383940086206],[-87.66970406196543,41.803657113011795],[-87.66970958028021,41.803911402577455],[-87.66971592230233,41.80420312888817],[-87.66972152008645,41.80443195195861],[-87.66972638108436,41.80462910175901],[-87.66972710286768,41.804658286419],[-87.6697283725375,41.80470962251358],[-87.66972896307632,41.80473350528717],[-87.66973109122682,41.804819582078096],[-87.6697346366553,41.80491834426129],[-87.66973792813633,41.80501004723389],[-87.66974179508166,41.80517557715581],[-87.66974667346489,41.80538526839397],[-87.66975232858131,41.805626358408055],[-87.66975495373887,41.8057386698118],[-87.66975947748341,41.80593233238222],[-87.66976662593734,41.80618155434396],[-87.66977215089952,41.80637121603349],[-87.66977878010337,41.80659612065352],[-87.6697823443412,41.80673739785121],[-87.66978716259507,41.80692833674409],[-87.66979105224013,41.80709523860668],[-87.66979333971382,41.80719286613301],[-87.66979744343186,41.8073680297812],[-87.66980508913393,41.807665059904636],[-87.66981188338775,41.80791301737509],[-87.66981660140173,41.80809939355903],[-87.6698182156279,41.80816316786398],[-87.6698230949959,41.80837631651492],[-87.66982753385358,41.808557332042554],[-87.66956150211084,41.808560318505656],[-87.66921205526543,41.80856351285746],[-87.66888003320351,41.80856653251038],[-87.66861081266818,41.80856914047229],[-87.66834085624278,41.808571755068996],[-87.66797691155989,41.80857579478828],[-87.66769180186658,41.80857897295159],[-87.66739542836278,41.8085815214334],[-87.66708935174653,41.808584152557245],[-87.66668260126704,41.808588268935424],[-87.6663290991846,41.80859340686205],[-87.66618354284589,41.80858588256285],[-87.66611558882624,41.80858236982817],[-87.66588213425962,41.80858460832184],[-87.66559951395324,41.8085917030602],[-87.66547201759758,41.8085949034732],[-87.66525052261052,41.80860044901362],[-87.66497251832394,41.80860444112622]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6950872.2896","perimeter":"0.0","tract_cent":"1154789.34215886","census_t_1":"17031660400","tract_numa":"32","tract_comm":"66","objectid":"360","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1863965.50732759","census_tra":"660400","tract_ce_3":"41.78253236","tract_crea":"","tract_ce_2":"-87.70804442","shape_len":"10520.9073001"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71189423415527,41.77882993867013],[-87.71216396949042,41.778825634121716],[-87.71272560684902,41.77883209187497],[-87.71274502615431,41.77901371246933],[-87.71275171570475,41.77917928453198],[-87.71275600251236,41.77928510056611],[-87.7127584087239,41.77934449984984],[-87.71276615939948,41.77953691684585],[-87.71277246012062,41.77974233396392],[-87.71277717807344,41.77989614976991],[-87.71277947582561,41.779969654414245],[-87.71278646808767,41.780194504862855],[-87.71278936912684,41.78028590556734],[-87.71279535304846,41.78047905394698],[-87.71279983248616,41.78064609539805],[-87.71280374025842,41.78079181168143],[-87.71280686120214,41.780920645747976],[-87.71280994760932,41.78104926008143],[-87.71281128540922,41.781100912468155],[-87.71281518440286,41.78125146057233],[-87.71281863772555,41.781380049437125],[-87.71282379764527,41.781556343358936],[-87.71283046953499,41.781784293066224],[-87.71283438421924,41.7819220777974],[-87.7128370110385,41.78200911356428],[-87.71283966386069,41.78209702764447],[-87.71284369619495,41.78222641546253],[-87.71284738598546,41.78235330411966],[-87.71285046204974,41.782461401746126],[-87.71285568425237,41.78264490276121],[-87.71286064457479,41.782837771101555],[-87.71286264122224,41.78291495170942],[-87.71286419722236,41.78297508732152],[-87.71286912330113,41.78316770847917],[-87.71287526328891,41.7833710663753],[-87.71288107376857,41.783563500195285],[-87.71288604343837,41.78372878840316],[-87.71288899460136,41.78382699489429],[-87.71289073485028,41.78388490916272],[-87.7128968145032,41.7840871964324],[-87.71289929493513,41.78427633445937],[-87.71290171706882,41.78446102339135],[-87.71290577039534,41.78461107552211],[-87.71290926577655,41.78473719439892],[-87.71291434377491,41.78492358704592],[-87.71291811245594,41.78506137091158],[-87.71292273194011,41.785190432516856],[-87.71292588290856,41.785278459009035],[-87.71292987780777,41.785397802164944],[-87.71293146814028,41.785444573778506],[-87.71293447773687,41.785531748772385],[-87.71293707561824,41.785608383457166],[-87.71293677799412,41.785639255143785],[-87.71293638142578,41.78568038995087],[-87.71289672804393,41.78609662248924],[-87.71279990930405,41.786098407512696],[-87.7126147067736,41.786101822282376],[-87.71251290298719,41.78610346761299],[-87.71238014656362,41.78610560418366],[-87.71217741873232,41.78610884420973],[-87.71196651239472,41.78611225918606],[-87.71174753833958,41.78611576733826],[-87.71151316164114,41.78611952101906],[-87.71133280384215,41.78612244154796],[-87.71112901210199,41.78612572884915],[-87.71090266664869,41.78612936012407],[-87.71066794573667,41.786133170315225],[-87.71048694125207,41.786136108239624],[-87.710303980406,41.78613898559728],[-87.7101084401455,41.78614212373671],[-87.70990464857275,41.78614538142355],[-87.70971688319592,41.78614836898774],[-87.70946816828311,41.78615223440899],[-87.70923269222692,41.78615589376544],[-87.7090684346144,41.78615845884174],[-87.70888067024241,41.78616133527272],[-87.7086940786157,41.78616427265913],[-87.70850675420162,41.78616715087103],[-87.70838155313267,41.78616910409477],[-87.70823016792302,41.78617192817658],[-87.70806718420826,41.78617496802667],[-87.70781737382725,41.786178383177706],[-87.70765374200215,41.786180648040556],[-87.70748182256521,41.786183032178805],[-87.70729406075195,41.78618563160087],[-87.70723648534096,41.78618642954535],[-87.70701846702917,41.78618964162355],[-87.7064214014367,41.7861984444825],[-87.70578133932946,41.78620787766665],[-87.70551148125537,41.786211853932876],[-87.70516392740602,41.78621777527143],[-87.70479429613927,41.786224068742946],[-87.70456832534553,41.78622767696149],[-87.70428996856569,41.78623212086728],[-87.70396610842631,41.78623850558953],[-87.70372349595434,41.78624328801438],[-87.70334872788678,41.78624839992083],[-87.70334022775161,41.78590089465486],[-87.70333692620189,41.78578879965969],[-87.7033211897511,41.785345509889964],[-87.70331844987105,41.785256497737294],[-87.7033141332854,41.785090636473385],[-87.70331025287486,41.78493644083995],[-87.70330560687555,41.78475183424147],[-87.70330262329927,41.784633374208035],[-87.70329962402191,41.784512773537664],[-87.70329516202652,41.78442690237545],[-87.70329110853889,41.784348892557944],[-87.70328649704227,41.78420945719038],[-87.70328095102008,41.78404188769125],[-87.7032785796873,41.78396950768015],[-87.70327169734537,41.78376990494456],[-87.70326666020577,41.783621520832284],[-87.70326288725896,41.78346760017715],[-87.70326003783627,41.78334293874946],[-87.70325493463079,41.78315262146075],[-87.70325051331778,41.783005009111776],[-87.70324587125198,41.78284998595565],[-87.70325062579651,41.78267893277143],[-87.70324605884782,41.78260746854641],[-87.70323565068084,41.78244459773143],[-87.70323283159857,41.78235429500559],[-87.70322744013504,41.78218219821354],[-87.70322526364785,41.78210490696092],[-87.70322147022445,41.781979307265594],[-87.703216871422,41.78180864184246],[-87.70321408124211,41.781700336695785],[-87.70321139834977,41.78159620346257],[-87.70320881959412,41.781500084137555],[-87.70320498489012,41.78136372656889],[-87.7032013940467,41.781250696835905],[-87.70319483874286,41.78103690779465],[-87.70319112963236,41.78090645113663],[-87.70318770579529,41.78079527910006],[-87.7031841746583,41.780680612436896],[-87.70317951978767,41.780538158015496],[-87.70317645222617,41.78041333066893],[-87.70317469136833,41.780344713917444],[-87.70317374519226,41.780307852575014],[-87.70317019188543,41.78019144754394],[-87.703163952688,41.78000485615826],[-87.70316183272747,41.77989734994984],[-87.70315826873177,41.77971661912589],[-87.7031551140597,41.77959695055806],[-87.70314964524566,41.779443911563234],[-87.70314231471906,41.77927903608607],[-87.70313835163313,41.77912585550343],[-87.70313675400799,41.77897328038571],[-87.70321668777845,41.77897227176618],[-87.7032771300962,41.77897150883845],[-87.70345076084274,41.778968344500235],[-87.70363330034732,41.77896525617318],[-87.7037746210989,41.77896312173462],[-87.70395730480939,41.77896028066948],[-87.70410024346336,41.778957660994955],[-87.7043112050082,41.778953776907734],[-87.70445069132484,41.77895173093686],[-87.70456990558985,41.77894944733732],[-87.70475197136376,41.77894605249282],[-87.70489355162856,41.778943616225],[-87.70505936145923,41.77894166904894],[-87.70520925764184,41.77893990905728],[-87.705420532708,41.7789376610702],[-87.70555931863325,41.77893486923964],[-87.70578741958765,41.77893028025063],[-87.70589034952344,41.7789285921273],[-87.70602485170473,41.77892636279441],[-87.7061517634053,41.778924256523794],[-87.70631028310522,41.77892166399822],[-87.70644489614826,41.77891937989262],[-87.70661097160983,41.77891649886576],[-87.70674580316778,41.77891432537139],[-87.70690432319596,41.778911732027794],[-87.70704769893408,41.778909385223784],[-87.70722525037701,41.77890645609694],[-87.70730731603446,41.778905063815],[-87.70744951938326,41.778902628615306],[-87.70783653184095,41.778895460663506],[-87.70798777993787,41.7788928753548],[-87.70836009504188,41.77888650957426],[-87.7085453874929,41.77888304421559],[-87.70876595608652,41.77887897449559],[-87.70930638152828,41.778870247977764],[-87.70958858459392,41.778865743043156],[-87.71000649249802,41.7788597234635],[-87.71041021117502,41.77885360676675],[-87.71099885190502,41.77884468583796],[-87.71155072322918,41.77883521491713],[-87.71189423415527,41.77882993867013]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8927330.81278","perimeter":"0.0","tract_cent":"1152017.60443549","census_t_1":"17031620100","tract_numa":"43","tract_comm":"62","objectid":"361","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869569.83390249","census_tra":"620100","tract_ce_3":"41.79796634","tract_crea":"","tract_ce_2":"-87.71805948","shape_len":"13468.7548849"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7202868846618,41.79324538287402],[-87.72062809402702,41.793235649764505],[-87.72071120320426,41.793237204435236],[-87.72086406861975,41.79324006402769],[-87.72108266771379,41.79323607000618],[-87.72134669319888,41.79323305853368],[-87.72156656785289,41.79322989367335],[-87.7217695787123,41.7932261995314],[-87.72190914795621,41.79322264434683],[-87.72218307451313,41.793215666557046],[-87.72242373337129,41.79321337902644],[-87.72261076375804,41.793212672018925],[-87.7228853293956,41.79320801158354],[-87.7231589507109,41.793204394892484],[-87.72316519298215,41.793363919582475],[-87.72316925226994,41.793562298400666],[-87.72317206203996,41.793672688652194],[-87.72317550362585,41.79380794552038],[-87.72317996959741,41.79394798288978],[-87.7231837637158,41.79406606237219],[-87.72318841793104,41.79421718766374],[-87.72319381159919,41.79439861383178],[-87.72319805189186,41.79453925345687],[-87.72320512186522,41.79478367022596],[-87.72320990733228,41.79495963201035],[-87.72321288651143,41.79505247999281],[-87.7232187386642,41.79523487620497],[-87.7232246155669,41.795434966069855],[-87.72322873994189,41.795580105961044],[-87.72323346955169,41.79576196764423],[-87.7232378151353,41.79593018816818],[-87.7232427738704,41.79611882944931],[-87.72324844213381,41.79630612979098],[-87.72325588852281,41.79654569081737],[-87.72326167315627,41.796724594241],[-87.72326503441279,41.79684654081193],[-87.72326822157262,41.796962174593205],[-87.7232717570344,41.7971462253204],[-87.72327596786458,41.797287603482175],[-87.72327841492746,41.7973697552081],[-87.72328293937115,41.797521648396085],[-87.72328913736021,41.79772662471634],[-87.72329419195029,41.79789350424568],[-87.72329973256788,41.79808659429658],[-87.72330541326578,41.79828421315889],[-87.72331292834107,41.79853590421486],[-87.72331391530676,41.7985673760026],[-87.72331861647882,41.798717276920655],[-87.72332183923339,41.79881780382607],[-87.72332940776013,41.79905663788261],[-87.7233331299552,41.79917496386059],[-87.72333785110693,41.79933421245839],[-87.7233418410735,41.79949356721496],[-87.72334579334624,41.79965303098948],[-87.72334999386423,41.799794054471185],[-87.72335382309798,41.79991235410789],[-87.72335823012261,41.800031643929955],[-87.72336306549323,41.800167566674546],[-87.72336502623254,41.80022274437943],[-87.72336644672203,41.800262726296445],[-87.72336726306928,41.800285702778616],[-87.7233678648895,41.800313201528915],[-87.72336893931246,41.800362333528504],[-87.72336952655884,41.800389164790595],[-87.7233700023837,41.80041092237312],[-87.72337294939526,41.80054564433583],[-87.72296659804687,41.800553077543775],[-87.72296659031414,41.80055308079584],[-87.72281377968879,41.80061775786462],[-87.72270696647281,41.80066555818731],[-87.72237180243398,41.80081471212779],[-87.722035683411,41.80096763284694],[-87.72172950427459,41.80110561868419],[-87.7215085436661,41.80120083482884],[-87.72130875485112,41.80128724496571],[-87.72091326590393,41.80146385883256],[-87.7206163090284,41.801595716481174],[-87.72035112020293,41.8017133348308],[-87.72015083348961,41.80180351340307],[-87.71989575786561,41.80191809790474],[-87.71968719632085,41.80201063272499],[-87.71942942086126,41.80211971264295],[-87.71902440198629,41.80228494886066],[-87.71863230607259,41.80244099083271],[-87.71830097423447,41.802570943060076],[-87.71806075256657,41.80266570692315],[-87.71773076710743,41.80279840871929],[-87.71736354979946,41.802941201269334],[-87.71704323106353,41.803069494000006],[-87.71662767286385,41.80323294972756],[-87.7163092252127,41.80335713374453],[-87.7160812827116,41.803448531241294],[-87.7158103692764,41.80355307074137],[-87.71568106628301,41.8036024590452],[-87.71555869866914,41.80364570958612],[-87.71530710060132,41.80373080093643],[-87.71522755230289,41.803755071494514],[-87.7151438854092,41.803826315702054],[-87.7150435494651,41.80391462190678],[-87.71496451534311,41.803980745383335],[-87.7148868435622,41.8040482485555],[-87.71481054036084,41.804116444565274],[-87.714735605733,41.8041853342386],[-87.71466249152701,41.80425560608267],[-87.71459074590314,41.80432657104729],[-87.71453191219032,41.80438971570425],[-87.71447536143314,41.804453901461265],[-87.71442109253006,41.80451912886461],[-87.71436910585467,41.804585397645084],[-87.7143189462642,41.80465236231764],[-87.71427152735964,41.80472037084363],[-87.71422877541345,41.804779828340294],[-87.71418876747963,41.80483998722984],[-87.71415103851623,41.804901530256146],[-87.71411651570256,41.80496343358734],[-87.71408427443485,41.805026378587414],[-87.71405477758175,41.8050900238948],[-87.71402847993018,41.805154715273375],[-87.71400447447968,41.80521942010107],[-87.71396605499855,41.80535265402055],[-87.71390471686352,41.80558044157109],[-87.71378946167857,41.8060227542058],[-87.71377065740516,41.80558448460208],[-87.71378305855303,41.80429728210433],[-87.7137763123435,41.80392803879571],[-87.71376803937743,41.80347518452674],[-87.71374972306589,41.80247257167259],[-87.71370624388945,41.80081332451705],[-87.7134980221403,41.800689968792305],[-87.71361429855338,41.80068770200617],[-87.71361442951006,41.8006876994195],[-87.71361443207722,41.80068769943335],[-87.71361130630163,41.80053555007253],[-87.71359842333024,41.80011350326021],[-87.7135921412797,41.79990769127813],[-87.71358425505616,41.799631847976826],[-87.71357229456571,41.79919752511691],[-87.71357202942313,41.79918789371105],[-87.71356440013187,41.79893297694528],[-87.7135599545186,41.79879019874157],[-87.71355984918667,41.79878681913321],[-87.71355078260278,41.7984907302938],[-87.71354482739399,41.798299970507514],[-87.71352416276162,41.7975424355283],[-87.7135157711759,41.79726153962074],[-87.71350891144976,41.797031915802364],[-87.71349751936575,41.796644223724336],[-87.7134733405342,41.79587089017818],[-87.71345428383415,41.79523205429032],[-87.7134467180898,41.7949706200019],[-87.71343516837045,41.79457746497257],[-87.71342152023786,41.79411289384455],[-87.71341768476519,41.794007473246495],[-87.71341028512626,41.793804100993036],[-87.71340303103993,41.79353828596436],[-87.71340283204364,41.793531003742736],[-87.71340248413209,41.793517407206046],[-87.71339850340432,41.793361876190794],[-87.71339855806035,41.79336187456474],[-87.71358412140805,41.79335735511129],[-87.7137443399677,41.79335345224711],[-87.7140130481966,41.79334787553911],[-87.71425090890583,41.79334301041545],[-87.71458057283786,41.79333664365533],[-87.71471309075505,41.79333408395303],[-87.71500417012265,41.793328323795365],[-87.71519530087677,41.79332451256324],[-87.71557275838961,41.79331700272125],[-87.71581045398797,41.79331319332449],[-87.71595485941279,41.793310878859224],[-87.71624167730803,41.79330588878163],[-87.71633505609537,41.793304479771884],[-87.71639289563039,41.79330359965954],[-87.71669727699621,41.79329878454522],[-87.71684571330067,41.793295931584794],[-87.71703155928516,41.793292527199505],[-87.71722807922416,41.79328892673609],[-87.71739041269458,41.79328620221423],[-87.71759240990708,41.79328500732387],[-87.71782639916786,41.79328228203345],[-87.71815898480122,41.793277065574244],[-87.71825977768158,41.793275622252736],[-87.71841285857734,41.793273430181955],[-87.71862340681697,41.79327153829188],[-87.71891371928069,41.79326537992213],[-87.71909307959336,41.79326145424345],[-87.71928024131542,41.7932585304867],[-87.71948254413645,41.79325604107106],[-87.71960676451741,41.793254512360264],[-87.71978757584664,41.7932522399227],[-87.71992019512221,41.79325058805356],[-87.7201388582121,41.79324758411427],[-87.7202868846618,41.79324538287402]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1035890.73801","perimeter":"0.0","tract_cent":"1179337.24697013","census_t_1":"17031351200","tract_numa":"8","tract_comm":"35","objectid":"371","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880550.13106927","census_tra":"351200","tract_ce_3":"41.82751692","tract_crea":"","tract_ce_2":"-87.61753856","shape_len":"6242.37212354"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61681190631107,41.827480389657794],[-87.61680975049826,41.827287036290485],[-87.6167858429369,41.826275597228324],[-87.61677990051838,41.82600247809416],[-87.61677477255098,41.825791027723554],[-87.61676726100428,41.82542492298222],[-87.61676197149883,41.825155677298476],[-87.61675716911866,41.82494145721686],[-87.61675143005645,41.82469279071753],[-87.61674656029022,41.8244648765736],[-87.6167422100404,41.82422985745755],[-87.61673229763211,41.823838139374836],[-87.6169968247497,41.82383410764626],[-87.61725854541706,41.823830117912095],[-87.6177099688686,41.823823235209524],[-87.61794972729027,41.82382029561154],[-87.61821435997896,41.82381705071321],[-87.61822100126209,41.82418171535218],[-87.61823214611466,41.824793732170946],[-87.61825113912982,41.82563557863116],[-87.6180074165605,41.82563819146676],[-87.6180145145997,41.82601017341752],[-87.6180171516863,41.8261611794465],[-87.61803344488489,41.82699811782002],[-87.6180380088291,41.82720609555674],[-87.61804354657006,41.82745847033894],[-87.61833685192788,41.82745529122123],[-87.61834340236541,41.827819979759525],[-87.61836113885012,41.82880742241017],[-87.61836411754564,41.828970670188596],[-87.6183665370065,41.82910329066548],[-87.61837915187995,41.82979467423953],[-87.61838636941091,41.83019025047405],[-87.61839778632182,41.83070876792395],[-87.61840620977199,41.83109138028261],[-87.6181192594101,41.831095822239924],[-87.61795147047187,41.83109841924178],[-87.61761053536014,41.83110364992997],[-87.61731338157617,41.83110204626474],[-87.6169665446697,41.83110017341376],[-87.61696523981195,41.83100961522537],[-87.61695664954469,41.83087506520693],[-87.61693893651912,41.83077295285768],[-87.61687256163725,41.83039031509069],[-87.61683086153423,41.828513114252246],[-87.61681389645531,41.82765885543537],[-87.61681190631107,41.827480389657794]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5298215.02912","perimeter":"0.0","tract_cent":"1157805.26016792","census_t_1":"17031580900","tract_numa":"24","tract_comm":"58","objectid":"363","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1874018.27365439","census_tra":"580900","tract_ce_3":"41.81005781","tract_crea":"","tract_ce_2":"-87.69671414","shape_len":"10653.9762439"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70098937908563,41.80817010477761],[-87.70118799659832,41.808166752217],[-87.70146731639655,41.80817018254439],[-87.70153638700765,41.808166231704654],[-87.70166733382105,41.80815874122499],[-87.70184409209743,41.80815518499782],[-87.70205040999402,41.80815206565133],[-87.70233427801486,41.80814802670242],[-87.70257181544342,41.808144391561534],[-87.70276899485293,41.80814183464007],[-87.70291081664982,41.80813999555811],[-87.7031371014669,41.80813552909372],[-87.70335672648632,41.80812943397689],[-87.70365872503359,41.80812428397454],[-87.70386240626223,41.80811321567169],[-87.70397493427136,41.80811536080931],[-87.70398035059695,41.80824245895383],[-87.7039862618074,41.80837303681129],[-87.70399285192639,41.808505457053606],[-87.70399531191113,41.80858203570765],[-87.70399670374783,41.808625375810315],[-87.70400282934656,41.80881646623535],[-87.70400968937759,41.80899252201649],[-87.70401516435157,41.80913020515395],[-87.7040200973077,41.80925581048181],[-87.7040264481448,41.8094164406],[-87.70403198616332,41.80955522151],[-87.7040365092396,41.80967020476449],[-87.70404316006146,41.80983766949853],[-87.70404641176503,41.809939315438484],[-87.70405200775383,41.81011423169399],[-87.7040541266861,41.81017132433931],[-87.70405799408714,41.810274640247606],[-87.70406461711227,41.81045245102277],[-87.70407144106015,41.81063597099605],[-87.70407765860126,41.810802747531284],[-87.70408510965356,41.810985914171596],[-87.70409100131295,41.811129774171484],[-87.70409784463928,41.81129633457711],[-87.70410468369606,41.81146333431341],[-87.70410885299711,41.81156580084969],[-87.70411454862025,41.81169165755849],[-87.70411757689929,41.811758579141475],[-87.703792368008,41.81176385038192],[-87.70360093668816,41.811766396097696],[-87.70347847570551,41.81176800710359],[-87.70344780680469,41.81176841056954],[-87.70329508308221,41.81177015263695],[-87.70299315904319,41.811773435954585],[-87.70287286509475,41.811777264607095],[-87.7026828068246,41.811783313364224],[-87.70255813672742,41.8117858670931],[-87.70236664175395,41.81178744962967],[-87.70225979094805,41.8117883980868],[-87.70219092020788,41.81178900929125],[-87.70206112271313,41.81179073846741],[-87.70175229437486,41.81179483130673],[-87.70165098475331,41.81179659727225],[-87.7014315663436,41.81180042209532],[-87.70116410532329,41.811805509306],[-87.70104396216881,41.8118073412325],[-87.7009882259386,41.81180819113908],[-87.70081972433421,41.81181039191449],[-87.70056556054534,41.81181360251101],[-87.70043306479702,41.81181621016774],[-87.70025616212766,41.81181969151111],[-87.69994097688631,41.81182486959986],[-87.69982265954685,41.81182667875706],[-87.69974180080804,41.81182791503441],[-87.69957355507978,41.81183019772123],[-87.69932577186582,41.81183360543355],[-87.69921531034485,41.81183540929889],[-87.69896909286545,41.811839429998656],[-87.69868550891981,41.81184274838742],[-87.698602049402,41.81184398376345],[-87.69839391843404,41.81184706464664],[-87.69813475187907,41.81185166923644],[-87.69798969321383,41.81185471449142],[-87.69781606868868,41.81185814763799],[-87.69758214661208,41.81186200424058],[-87.69737484211426,41.811865480008635],[-87.69723390364929,41.8118678426632],[-87.69687703995899,41.81187379692239],[-87.69676469851615,41.81187473262281],[-87.69633883495067,41.81187827808686],[-87.69614966839283,41.8118807608234],[-87.69608162445566,41.8118816539649],[-87.69568793198822,41.811887564869124],[-87.6955382698558,41.8118904684095],[-87.69521721209135,41.811896696444656],[-87.69492841471742,41.81190246647983],[-87.69462739634501,41.81190845708463],[-87.69431482907501,41.81191318258148],[-87.69399042859285,41.81191808615671],[-87.69370704562964,41.81192212472189],[-87.69324612594635,41.81192804670117],[-87.69309383439271,41.81193038382281],[-87.69279222735597,41.811935011760426],[-87.69264173185039,41.8119376302558],[-87.69247801316648,41.81194047473275],[-87.6922471860227,41.81194448510347],[-87.69187115855252,41.8119505031905],[-87.69176664850079,41.81195217560445],[-87.69133749764386,41.81196037084342],[-87.69125889883551,41.811961616797646],[-87.6909740317398,41.81196613264726],[-87.69064916659877,41.81197086611595],[-87.69038336581929,41.81197473825913],[-87.69020094562855,41.81197843723103],[-87.69003795806125,41.811981036984456],[-87.68970177083078,41.81198639894366],[-87.68942675879852,41.81199249748196],[-87.68941865418756,41.81167558689886],[-87.68941516541305,41.811543622404336],[-87.68940995502145,41.811346553953754],[-87.68940134527318,41.81108906485295],[-87.68939714007838,41.81096329839996],[-87.68938907684145,41.810637150471514],[-87.68938753362437,41.81057470946081],[-87.68937964640986,41.810325704199],[-87.68937626367828,41.81016532764133],[-87.68937220998953,41.80997313233277],[-87.68936481388357,41.809700775974896],[-87.68935799498715,41.80945136502133],[-87.68935176575461,41.80927492777271],[-87.68934479371775,41.80907743772454],[-87.68933780725514,41.80885209314267],[-87.68933636707247,41.80880910963785],[-87.68932942812357,41.80860099939302],[-87.68932356856651,41.80835986914697],[-87.68963142599992,41.808354417026244],[-87.69002462251011,41.80834830452786],[-87.6903295894125,41.808343590397286],[-87.69054607940693,41.808340836531045],[-87.69081500008144,41.80833741503461],[-87.69128377966676,41.808329031569514],[-87.6915421259517,41.808324382947426],[-87.69176319808405,41.80832043310351],[-87.69214825929171,41.808313552463865],[-87.69245168693503,41.80830871433536],[-87.69267925025181,41.808304906793296],[-87.6929817009066,41.80830059695049],[-87.69325370216978,41.80829672038887],[-87.69359982953003,41.80829143135198],[-87.69382820703035,41.80828688483739],[-87.69420501107831,41.808280827581875],[-87.69454214825149,41.8082754069238],[-87.6948116412492,41.80827107748125],[-87.69495203789144,41.80826882152788],[-87.69526024203911,41.80826312435403],[-87.69542812182983,41.80825986458396],[-87.6956481696929,41.80825559119575],[-87.6960735149294,41.80824763312587],[-87.69633087010129,41.80824299567632],[-87.69665029008925,41.808238065266316],[-87.69689072661046,41.80823435338643],[-87.69722434533963,41.80822912106149],[-87.69752714748896,41.80822440327426],[-87.69786898034342,41.808219936287045],[-87.69803999512806,41.80821799247755],[-87.69827093093642,41.808214329721636],[-87.69851544050564,41.80821043964425],[-87.6987752490443,41.808206194474806],[-87.69898131694036,41.80820242035867],[-87.69909243847596,41.808200527321475],[-87.69923191902058,41.80819815075808],[-87.6994418361536,41.808194589163406],[-87.69975608829516,41.808189242612755],[-87.69996306655977,41.8081861303838],[-87.70017723231405,41.80818319461255],[-87.70031306052103,41.80818141955681],[-87.70043717901761,41.808179797172365],[-87.70065935076872,41.80817586178468],[-87.70098937908563,41.80817010477761]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14191818.9435","perimeter":"0.0","tract_cent":"1154389.37303403","census_t_1":"17031580400","tract_numa":"35","tract_comm":"58","objectid":"364","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875894.05431736","census_tra":"580400","tract_ce_3":"41.81527396","tract_crea":"","tract_ce_2":"-87.70919329","shape_len":"15921.5579665"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70398035059695,41.80824245895383],[-87.70397493427136,41.80811536080931],[-87.70412909196092,41.808118299190774],[-87.70438747904548,41.80811680526418],[-87.70456489113667,41.80811387961414],[-87.70489308932312,41.808107662287],[-87.70506253612027,41.80810532347622],[-87.70518457777044,41.80810454246483],[-87.70531920063885,41.80810368081817],[-87.7054702779886,41.80810060979218],[-87.70568551154298,41.808097203058026],[-87.70579378895535,41.80809654789677],[-87.70593814013043,41.80809567417894],[-87.70608325609247,41.80809457311281],[-87.70638787509324,41.80809156255],[-87.7065197141947,41.80809025948816],[-87.70676588607789,41.80808507110441],[-87.70693419817442,41.80808247635773],[-87.70698639978255,41.80808183096562],[-87.70728504531746,41.80807818692451],[-87.70755767902962,41.80807514218717],[-87.70765888915422,41.80807401179898],[-87.70797869851796,41.8080704392382],[-87.70842071860471,41.80806373370041],[-87.70860590392573,41.80806107214482],[-87.70890103184941,41.80805684548663],[-87.70943005956958,41.80804990042297],[-87.70970618077764,41.80804660882042],[-87.7100469010151,41.80804254631716],[-87.7107418608065,41.80803237406416],[-87.7109860880556,41.80803473427615],[-87.71106140215052,41.80803546199339],[-87.71112971253598,41.80803612208761],[-87.711324777806,41.80803216386663],[-87.71206911887171,41.808017056859164],[-87.71238269337593,41.80801328463543],[-87.71265300311336,41.808010031922564],[-87.71276318020399,41.808008706185355],[-87.71351721609149,41.807996201758584],[-87.71378095889943,41.807990630459045],[-87.71382267114153,41.80798974920288],[-87.71387381565924,41.80798866879242],[-87.71387540873536,41.80818002273433],[-87.71388040041643,41.808295092154715],[-87.71388139912516,41.80833420356016],[-87.71388318591195,41.808386697315704],[-87.71388497269852,41.80843919134518],[-87.71388702299453,41.80851192614935],[-87.71388985476575,41.80859872933732],[-87.71389081052664,41.80864229969277],[-87.71389589580059,41.80887593438476],[-87.71390206329359,41.80909242259328],[-87.71390946993347,41.809370664360415],[-87.7139150881678,41.80950139106519],[-87.71393249117132,41.80964624575496],[-87.71394299951524,41.80969775769416],[-87.71396363259076,41.80984057158006],[-87.71399427532096,41.81003901112365],[-87.71400091395584,41.81011142733478],[-87.71400207854927,41.810276090486425],[-87.71401470927353,41.81063085691555],[-87.71402634812095,41.81113621038323],[-87.7140333274388,41.811363680275015],[-87.71403924365329,41.81165391984334],[-87.71403978398693,41.81169302875371],[-87.71405479567099,41.81213390944911],[-87.7140689121489,41.81262006645333],[-87.71407406429329,41.81284684036446],[-87.71407561672993,41.812923688571914],[-87.71408452469936,41.81323658449677],[-87.71409375248143,41.81356388959622],[-87.71410171713127,41.81387952440517],[-87.71411246780904,41.81428676508555],[-87.71412065396153,41.814579417984746],[-87.71412961184177,41.81488716856321],[-87.71413370516741,41.815128687174855],[-87.71414045787999,41.8153321432436],[-87.7141426176239,41.81539355812304],[-87.71414870773474,41.81557059665379],[-87.71415680456943,41.81587251121901],[-87.71416468226533,41.81610204396949],[-87.71417167749627,41.816423162241726],[-87.71417980790383,41.816721646594495],[-87.71419115404073,41.81706714347583],[-87.71419645545832,41.81727848145004],[-87.71419868728385,41.8173800317597],[-87.71420420419233,41.81752139152703],[-87.71420977067126,41.8176576068605],[-87.71421585972188,41.81793000895924],[-87.71425066784091,41.818981940843436],[-87.71426797413123,41.81970858142212],[-87.71428268852236,41.82032337867569],[-87.71431775989466,41.8215385959425],[-87.71433016760874,41.822059731887364],[-87.71433053633379,41.82211667786742],[-87.7143301663155,41.82215509573142],[-87.71432842387782,41.82219316316485],[-87.71432667813406,41.82223157361462],[-87.71426040608861,41.822421840968055],[-87.71382568232627,41.82245856853149],[-87.71351308657603,41.822463797749826],[-87.7130069579433,41.822469408138396],[-87.71202644016962,41.82248405959467],[-87.7117576987619,41.82248807856888],[-87.71087294921017,41.82250130557746],[-87.71019482872892,41.8225105269116],[-87.71013238612345,41.822511356659774],[-87.70963031085478,41.82251802850946],[-87.70930939203635,41.822522744719606],[-87.70899628811416,41.822527344988735],[-87.7082459497927,41.82253813814003],[-87.70714919645854,41.82255335055245],[-87.70688229352135,41.82255685633321],[-87.70685205766206,41.822557360758196],[-87.70669728235558,41.822559941906825],[-87.7064848270945,41.82256317352393],[-87.70624112024258,41.82256568693012],[-87.70595148048481,41.82256822008254],[-87.70575290162736,41.82257059308265],[-87.70551348069102,41.822573812783446],[-87.70530620532982,41.82257632957765],[-87.70505221971653,41.82257949612628],[-87.7050034178299,41.82258015235766],[-87.70480417588927,41.82258283183982],[-87.7046041649556,41.822586710954944],[-87.70443962230226,41.82258990218221],[-87.7045158567632,41.822394094289116],[-87.70452442593594,41.82232446433466],[-87.70452810617165,41.822225800080446],[-87.70452424712255,41.82213365336956],[-87.70452055218948,41.82204543241771],[-87.70451588500006,41.8219337423155],[-87.70451113058901,41.82181971909963],[-87.70450589691171,41.82168609940709],[-87.7044947799407,41.82140228020947],[-87.70448922447588,41.82126514579806],[-87.70448349627286,41.8211232079554],[-87.70447599637937,41.82093729684083],[-87.7044705238765,41.8207891031666],[-87.704462887196,41.82058230817672],[-87.70445709912856,41.820442899387444],[-87.70445209027574,41.82032096656732],[-87.70444623094915,41.82017740885925],[-87.70443839402512,41.81998850488053],[-87.7044342056236,41.81989119736365],[-87.70442422546158,41.81965933371864],[-87.70442405807705,41.8196551066169],[-87.70442399994654,41.819653623840644],[-87.704416288465,41.81945813481616],[-87.70441014049814,41.81930288488757],[-87.70440724403355,41.819229445640595],[-87.70440473244385,41.81916575122998],[-87.70439946791436,41.81898860652942],[-87.7043949345753,41.818836055093584],[-87.70438852739919,41.818681023270166],[-87.70438337527109,41.81855519741825],[-87.70437768207319,41.818417184012006],[-87.7043717842025,41.818273845584514],[-87.70436696537112,41.81809195624568],[-87.70436366679051,41.81796742979076],[-87.70435822677065,41.81783185632055],[-87.70434113407696,41.81740588247506],[-87.7043311303594,41.81719973219864],[-87.70432684656706,41.81711145305611],[-87.7043218307043,41.81692673572006],[-87.70431090963493,41.816640694756096],[-87.70430455861126,41.81647246320178],[-87.70429883199988,41.816297182267846],[-87.70429521474722,41.81618645829381],[-87.70428703273183,41.815995411749405],[-87.70427798756658,41.81578386071475],[-87.70427060700878,41.815612138262715],[-87.70426241005651,41.81542094397387],[-87.70425863038403,41.81533278748772],[-87.70424841269445,41.81505363843055],[-87.70424159947424,41.814868938625374],[-87.70423946501869,41.81481126799929],[-87.70423365002443,41.814654155298676],[-87.70422202673429,41.81442494438003],[-87.70421115467796,41.814113090592166],[-87.70420240628349,41.81386215000422],[-87.70420074860522,41.81382432503635],[-87.70419490959442,41.81369108575629],[-87.70419022969499,41.81357843436531],[-87.70418514194661,41.81345595704231],[-87.70418366205743,41.813419120985806],[-87.70417676476531,41.813247428273634],[-87.70416884315179,41.8130448296354],[-87.70416340778989,41.81290679005803],[-87.70415893980385,41.812792960320095],[-87.70415350722234,41.81265527750787],[-87.70414580908151,41.812459842641225],[-87.7041392589857,41.812293283877736],[-87.70413247348628,41.81212079617552],[-87.70412636192827,41.81196565600767],[-87.70412248510513,41.811867032798446],[-87.70411757689929,41.811758579141475],[-87.70411454862025,41.81169165755849],[-87.70410885299711,41.81156580084969],[-87.70410468369606,41.81146333431341],[-87.70409784463928,41.81129633457711],[-87.70409100131295,41.811129774171484],[-87.70408510965356,41.810985914171596],[-87.70407765860126,41.810802747531284],[-87.70407144106015,41.81063597099605],[-87.70406461711227,41.81045245102277],[-87.70405799408714,41.810274640247606],[-87.7040541266861,41.81017132433931],[-87.70405200775383,41.81011423169399],[-87.70404641176503,41.809939315438484],[-87.70404316006146,41.80983766949853],[-87.7040365092396,41.80967020476449],[-87.70403198616332,41.80955522151],[-87.7040264481448,41.8094164406],[-87.7040200973077,41.80925581048181],[-87.70401516435157,41.80913020515395],[-87.70400968937759,41.80899252201649],[-87.70400282934656,41.80881646623535],[-87.70399670374783,41.808625375810315],[-87.70399531191113,41.80858203570765],[-87.70399285192639,41.808505457053606],[-87.7039862618074,41.80837303681129],[-87.70398035059695,41.80824245895383]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3519116.81122","perimeter":"0.0","tract_cent":"1179234.14982822","census_t_1":"17031400400","tract_numa":"21","tract_comm":"40","objectid":"860","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867287.7214057","census_tra":"400400","tract_ce_3":"41.79112609","tract_crea":"","tract_ce_2":"-87.61832162","shape_len":"7957.08847976"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62021569514152,41.78745090729389],[-87.62065847869295,41.78744476189969],[-87.62067479210947,41.78806534807013],[-87.62069636529036,41.78896154574749],[-87.62070497270967,41.789269108383216],[-87.62071882786661,41.78976416923256],[-87.62074436937094,41.79065962313203],[-87.6207538904696,41.791091819450294],[-87.62075932788562,41.79133865187902],[-87.62076937702957,41.79174245329556],[-87.62078283726746,41.792268670900256],[-87.62079760429913,41.792782931485306],[-87.6208008245575,41.79292423019386],[-87.6208086455935,41.79323624609896],[-87.62081778679318,41.79361611132529],[-87.62082352117338,41.79383036563242],[-87.62082798053082,41.793996971270786],[-87.62083262760817,41.7941932163239],[-87.62083729553648,41.79439926874302],[-87.62084174893808,41.79454843770416],[-87.62084610148699,41.79472287237178],[-87.62057870152503,41.79472710556335],[-87.61995761479903,41.79473774013709],[-87.61944069732364,41.794746576342575],[-87.61922512598892,41.794750500291194],[-87.61835139349624,41.794766400435996],[-87.61828675500603,41.79476757634892],[-87.61781406896411,41.79477633037274],[-87.6176058035885,41.79477996088749],[-87.61725848870225,41.79478601392189],[-87.61683308653095,41.794793103613436],[-87.61624306933963,41.794802923939265],[-87.61598107423958,41.79480081041145],[-87.6159783053952,41.794650856787044],[-87.61597293859153,41.794487135061786],[-87.61596811559996,41.79430838903663],[-87.61595958941983,41.794027211485925],[-87.61595792906319,41.79392225974819],[-87.61595494343264,41.793733544222626],[-87.61594321052222,41.793279511677326],[-87.61593549209931,41.79300154993106],[-87.61592824465153,41.792740550782824],[-87.61591360693927,41.79215241432565],[-87.6159024379469,41.79172355025722],[-87.6158930212143,41.791361108770325],[-87.61588944587574,41.791171758566676],[-87.61588508994967,41.79094112890027],[-87.61586932405224,41.790224058729734],[-87.61585223211766,41.78954046046141],[-87.61584764494745,41.78935425925678],[-87.61583632897616,41.788894932769466],[-87.61581820045637,41.78816612948644],[-87.61580566464839,41.78765276002561],[-87.61580221117987,41.7875227139259],[-87.61661381109076,41.78751062245198],[-87.61702630801062,41.78750447471701],[-87.617420128387,41.78749819593975],[-87.61780839142115,41.787492004691266],[-87.61810228178852,41.7874871908922],[-87.6181033534205,41.787487173414384],[-87.6181320612244,41.78748670311971],[-87.61819644134195,41.78748564861632],[-87.6181999540372,41.78748559117333],[-87.61822746954839,41.78748514032667],[-87.61854525778742,41.78747993407661],[-87.61904513304026,41.78747156692039],[-87.61943935225696,41.78746496618545],[-87.61984947353284,41.787457540232786],[-87.62021569514152,41.78745090729389]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11662624.8543","perimeter":"0.0","tract_cent":"1200825.42885686","census_t_1":"17031520600","tract_numa":"46","tract_comm":"52","objectid":"365","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1830456.30214399","census_tra":"520600","tract_ce_3":"41.68953808","tract_crea":"","tract_ce_2":"-87.54039719","shape_len":"14659.5423076"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.53528203074508,41.69547407304109],[-87.53528371821538,41.69516213918482],[-87.53528330406631,41.69511125628011],[-87.53528346366234,41.69503463588064],[-87.53528322460998,41.69466892567785],[-87.53528361145331,41.69441252621084],[-87.53528344029276,41.69407093904695],[-87.53528278818322,41.693800838162296],[-87.5352821286781,41.693661602226584],[-87.53528141890088,41.69351174156222],[-87.535282282473,41.69327601011619],[-87.53528235116306,41.69302753947588],[-87.53528189092496,41.6926619373844],[-87.53528073038208,41.692335244930234],[-87.53528101806917,41.69224668757154],[-87.53528146091006,41.692110270265765],[-87.53528060244223,41.69184325988825],[-87.53528060160959,41.6918430902832],[-87.53527958699287,41.69152730776299],[-87.53527972457175,41.69125548331981],[-87.53528024707079,41.69105325762531],[-87.53528047011284,41.69096927596066],[-87.53528076883525,41.69085701454794],[-87.5352808998902,41.69077955632635],[-87.53528096662761,41.69074029976424],[-87.53528110053618,41.690633848037244],[-87.53528129869026,41.69047646262219],[-87.53528132468696,41.69035062998835],[-87.53528135977496,41.690181228501196],[-87.53528162664261,41.69009562468298],[-87.53528184172856,41.69002650319864],[-87.53528204171386,41.689962365304154],[-87.53528228523562,41.689884189112774],[-87.53528194520658,41.68968515095312],[-87.53528176938704,41.689582309686685],[-87.5352814441757,41.68935683360602],[-87.53528146169309,41.6889762505814],[-87.53528161576308,41.68887000012137],[-87.53528192484336,41.68865736308346],[-87.53528234034911,41.688496751796585],[-87.53528246791477,41.688447535657524],[-87.53528133472874,41.688250430258854],[-87.53528119889792,41.68822948708524],[-87.53528108362838,41.68821167917299],[-87.53527935072398,41.68794436917647],[-87.53527885516695,41.687798463055806],[-87.53527813550842,41.68758650052583],[-87.53527568902688,41.687199425309906],[-87.53527543469308,41.687159217505815],[-87.53527302642566,41.686681660410414],[-87.53526971416025,41.686399417095956],[-87.53526742718459,41.68620454765246],[-87.53526491989946,41.68588901489859],[-87.53526292657601,41.68539266193484],[-87.53526166016869,41.68500103973266],[-87.53526160549843,41.68498410465329],[-87.53525860307577,41.68457615753208],[-87.53525818007077,41.68451867052208],[-87.53646597928964,41.6845191600079],[-87.53766923616587,41.68449388056354],[-87.53766926655578,41.68449388022508],[-87.53887464433903,41.68450976310378],[-87.54012967171103,41.68450677204197],[-87.54012846178938,41.684377113918316],[-87.54012461608143,41.68405934294649],[-87.5401202875621,41.68360699276444],[-87.54011856030569,41.68307995985671],[-87.54011709215256,41.68277579569279],[-87.54132749691775,41.68278796205688],[-87.54252311796043,41.68277850663241],[-87.54373936084772,41.6827573189094],[-87.54380531166971,41.68275616959345],[-87.54493956443852,41.68275388951194],[-87.544939813619,41.682772522751335],[-87.54507849423688,41.682770386657225],[-87.54510676883618,41.68480498408799],[-87.54513143300952,41.685519195486066],[-87.54514000070353,41.68676689450418],[-87.54514300814118,41.687195373326105],[-87.54514751707673,41.68810068931762],[-87.54515203310783,41.68881801881747],[-87.54515480270683,41.689303440639506],[-87.54515778237874,41.68977171182069],[-87.54515817247665,41.68988972053888],[-87.54515914929739,41.69022213378194],[-87.54516159400038,41.69065918451014],[-87.54516526221867,41.69125850214276],[-87.54516904517001,41.691923340725744],[-87.54517138378516,41.69270651862825],[-87.54517230331204,41.69323103406967],[-87.54517980029713,41.693704138485344],[-87.5451768725662,41.694056421085996],[-87.54518397743288,41.69512401170708],[-87.54518614920815,41.69543344940901],[-87.5451867436139,41.69549725901696],[-87.54500182113229,41.69550696434622],[-87.54481775595613,41.695516624215735],[-87.54439297473435,41.6955180094282],[-87.54418150680605,41.69551909349633],[-87.54395791789157,41.69552024732487],[-87.54378889857409,41.69552038976515],[-87.54347396462676,41.695520654323886],[-87.54334609022675,41.69551870423871],[-87.54324999144428,41.69551730344272],[-87.54316219946767,41.69551627610395],[-87.54304523014547,41.69551490754226],[-87.54256574457024,41.69551225133137],[-87.54238948910617,41.69551127437844],[-87.54228408336681,41.69550957819482],[-87.54196036587147,41.69550436825756],[-87.54178550865834,41.695502834676375],[-87.541575695387,41.69550206963415],[-87.54134505611768,41.69550122819427],[-87.54115337738916,41.69550052835456],[-87.54106604472575,41.69550020951828],[-87.54094915313202,41.69549883908437],[-87.5408235354834,41.69549736581779],[-87.54079240903923,41.695497000494434],[-87.5407282648563,41.695496248270636],[-87.54037764494285,41.695493458175044],[-87.54009952573362,41.695493528139444],[-87.53993512679668,41.695493569192244],[-87.53973306240603,41.695493619400686],[-87.53962936733988,41.69549312363176],[-87.53949883208045,41.69549249917377],[-87.53944975325734,41.69549226442187],[-87.53941024188688,41.69549207543865],[-87.53936424691871,41.69549204170834],[-87.53926363445696,41.695491968126994],[-87.53890409791596,41.69549010893506],[-87.53863289817112,41.6954887055724],[-87.53852171843037,41.695487445167274],[-87.53838456943028,41.69548589057747],[-87.53833563410423,41.69548601639758],[-87.5383028159958,41.695486100841116],[-87.53815029561439,41.69548649265686],[-87.53769962843397,41.69548371751255],[-87.53739563285377,41.69548184458567],[-87.5372828216523,41.69548188346873],[-87.53716912801826,41.69548192216501],[-87.53709839675808,41.69548030913611],[-87.53704048466784,41.695478988245],[-87.53693924695646,41.69547667935651],[-87.53672217199426,41.6954767368788],[-87.53668751415758,41.69547674581192],[-87.53649063892041,41.695476772227586],[-87.53644058719455,41.69547677917775],[-87.53617888657112,41.69547681381809],[-87.53590715105938,41.69547771047694],[-87.53589399455184,41.69547775392896],[-87.53589104907914,41.69547776340296],[-87.53584113088003,41.69547792826827],[-87.53560672564787,41.69547734419062],[-87.53528203074508,41.69547407304109]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6955384.27827","perimeter":"0.0","tract_cent":"1176953.40690962","census_t_1":"17031491300","tract_numa":"39","tract_comm":"49","objectid":"366","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1830015.40883114","census_tra":"491300","tract_ce_3":"41.68889798","tract_crea":"","tract_ce_2":"-87.627805","shape_len":"10541.981559"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63233475370971,41.68520605855262],[-87.63248130814877,41.68520395172776],[-87.63248747256065,41.68539656864422],[-87.6324972980551,41.6856579990263],[-87.63250008532208,41.685732167952715],[-87.63250922492374,41.6860099503713],[-87.63251821357157,41.68628147477256],[-87.63252836173845,41.68655745205314],[-87.6325344624416,41.68670711036979],[-87.63254116945014,41.68685487878878],[-87.63254540762159,41.68702196186773],[-87.63254888744444,41.6871591353076],[-87.63256645489228,41.687483540394396],[-87.63257163045036,41.68767460504416],[-87.63257973289628,41.68792658402847],[-87.63259091237748,41.68822227210533],[-87.63259674729149,41.688403159272504],[-87.63260372595815,41.688623791357315],[-87.6326107699383,41.68880963007464],[-87.63261189734399,41.68883937509473],[-87.63261363103835,41.68888511229781],[-87.63261584157955,41.688941192507286],[-87.63262081769939,41.68910676103499],[-87.6326258703606,41.689267774705776],[-87.63262767357494,41.68932522459443],[-87.6326347998554,41.68951199219778],[-87.6326465645708,41.68975082062932],[-87.63265340091446,41.689889616059624],[-87.63266200656491,41.69010883095161],[-87.63266788801826,41.69028211653912],[-87.6326715729016,41.690391281117655],[-87.63267533743061,41.690513317099736],[-87.63268468192008,41.690654268106755],[-87.63269295774244,41.69077902103257],[-87.63269379918107,41.690937593693235],[-87.63269723037428,41.69104659205218],[-87.63270191444778,41.691175027920195],[-87.6327071050625,41.69127031533942],[-87.63272403693885,41.69146776349509],[-87.63272235134016,41.691616385974385],[-87.63271440484789,41.69247082122407],[-87.63231496140135,41.69247560100279],[-87.63219536433164,41.69247703174175],[-87.63031294540686,41.69249953725518],[-87.63002288552886,41.69250300223545],[-87.62971491862415,41.692506989964905],[-87.62931196823448,41.69251160253674],[-87.62899757740125,41.692513737731005],[-87.62849912433316,41.69251957335211],[-87.62818281707789,41.6925228471825],[-87.62790703295943,41.692526497327805],[-87.62756801611876,41.69253098356909],[-87.62744666273869,41.69253232393344],[-87.62712211271284,41.69253601075011],[-87.62679781263687,41.6925402744963],[-87.62648157481084,41.692543845946666],[-87.62609538474334,41.69254926385103],[-87.62583443256742,41.6925519269897],[-87.6257637715231,41.69255263524202],[-87.62553014859381,41.69255497746074],[-87.6251622413528,41.69255921499553],[-87.6247858356904,41.69256381060544],[-87.62428052430272,41.69257062848641],[-87.6239576203399,41.69257442629378],[-87.62356721538316,41.6925801664464],[-87.62336466518506,41.69258363555019],[-87.62310413089754,41.69258470198552],[-87.62309680973007,41.69232620881288],[-87.62309298373475,41.69216144296779],[-87.62309061130514,41.692111072572246],[-87.62308550404842,41.69200263717942],[-87.6230809700526,41.691848981491184],[-87.62307663385825,41.69167814531106],[-87.62307289850415,41.69153097336768],[-87.62306605145135,41.69129469899013],[-87.62306420236082,41.6912268468609],[-87.62305973918996,41.69106306582851],[-87.62305682541113,41.69092854812094],[-87.62305248030557,41.69077220933988],[-87.62304809060167,41.690614268137885],[-87.62303720289242,41.69032050216051],[-87.62303173190132,41.69010772799492],[-87.62302784347537,41.68997861057518],[-87.6230245409248,41.689867525938986],[-87.6230187301975,41.68967209438599],[-87.62301253540157,41.68947976099915],[-87.62301068229841,41.68941224774832],[-87.62300814432473,41.689319794160504],[-87.62300481521683,41.689146496424726],[-87.62299712831017,41.688955849245986],[-87.62299170914805,41.68882604201817],[-87.62299095761176,41.6888086931898],[-87.62298436378094,41.68860269025459],[-87.62298178162203,41.6885037413676],[-87.6229803460011,41.68844873578749],[-87.62297641564194,41.68829349202005],[-87.62296887213797,41.688048921747786],[-87.62296467664491,41.68791289023056],[-87.62295896370571,41.68767338439781],[-87.6229567028444,41.687599247626245],[-87.62295191446009,41.68744226795512],[-87.62294883738028,41.687339226657244],[-87.62294182599074,41.68709721954697],[-87.6229359414127,41.68689412581028],[-87.62292958007271,41.6867069503715],[-87.62292888493386,41.68668318014405],[-87.62292745477521,41.68663423983212],[-87.622925058418,41.68655222432452],[-87.62292038300367,41.68637150848063],[-87.62291642933802,41.68622925042609],[-87.62291340634529,41.68612046856792],[-87.62290314698146,41.68589830619],[-87.6229005553071,41.68577627762057],[-87.62289993908325,41.6857472656498],[-87.62289517155234,41.68553839234067],[-87.62288959931666,41.68532193529544],[-87.62313931396665,41.685319531260596],[-87.62328671526552,41.68531863079101],[-87.62348525343458,41.685315082115544],[-87.6236737109179,41.68531267835658],[-87.62387763691179,41.68530853107576],[-87.62412020784284,41.685305755880094],[-87.62441206184917,41.685302415880834],[-87.62458305875501,41.68529979342358],[-87.62473948311111,41.6852978361036],[-87.62507806148072,41.6852938304822],[-87.62508030924829,41.685293804267346],[-87.62533851346504,41.68529217611815],[-87.62536053938565,41.6852920464294],[-87.62543136246111,41.68529162921099],[-87.62560276081673,41.68528914904226],[-87.62573999563942,41.68528716302325],[-87.62584340050584,41.68528549906463],[-87.62618814337823,41.68527993201631],[-87.62625759701086,41.68527946771604],[-87.62651817102704,41.68527749390936],[-87.62669991791205,41.6852761092658],[-87.62686201130188,41.68527414192471],[-87.62708854991756,41.68527108846513],[-87.62734021319518,41.68526709117039],[-87.62768960198049,41.68526256548217],[-87.62888939352722,41.68524701627027],[-87.62914679899409,41.68524367866845],[-87.62941444421241,41.685241146923914],[-87.62970632860225,41.68523829642546],[-87.63008881018612,41.68523350198014],[-87.6303418161689,41.685230329902254],[-87.63060917516844,41.685227244757066],[-87.63085170882269,41.68522444634078],[-87.63102203959832,41.68522244115193],[-87.63127812800096,41.685220552908596],[-87.63148405653537,41.685219033982776],[-87.63172791076104,41.685216022509415],[-87.63198623921072,41.68521178074629],[-87.63218045256585,41.68520857513479],[-87.63233475370971,41.68520605855262]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1324216.24944","perimeter":"0.0","tract_cent":"1155864.29415667","census_t_1":"17031290300","tract_numa":"8","tract_comm":"29","objectid":"372","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895044.94735506","census_tra":"290300","tract_ce_3":"41.86779675","tract_crea":"","tract_ce_2":"-87.70326765","shape_len":"4651.62566521"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70527911092195,41.86641270498387],[-87.70566919977607,41.86640530705485],[-87.70567756959679,41.866711811602265],[-87.70568642396769,41.86692884814811],[-87.70569103173545,41.86718968720944],[-87.70569728710316,41.86736090793986],[-87.70570496342424,41.86758954621454],[-87.70570856866048,41.867686767376235],[-87.70571276552464,41.86779782280671],[-87.70571862685006,41.86794928274057],[-87.70572233062327,41.868058579148915],[-87.70572715874042,41.86822483949878],[-87.70573177820228,41.868383907113646],[-87.70573520063975,41.868544492066334],[-87.70574051417731,41.86868815558209],[-87.70574265402342,41.86875713364655],[-87.70574265733116,41.86875724590457],[-87.70574556643278,41.868851026887995],[-87.7057480616406,41.868921248117935],[-87.70574985616902,41.86897174257264],[-87.70575619374618,41.8691330846612],[-87.70539061126415,41.86913608033196],[-87.70517463549473,41.86913813772668],[-87.70495902415864,41.86914047086001],[-87.70476654180935,41.86914293017933],[-87.70455125118492,41.86914625223328],[-87.70431219397835,41.869150815840186],[-87.70411254238483,41.86915427761227],[-87.7038657305728,41.869155888895236],[-87.70374330836799,41.86915746812125],[-87.7035977550059,41.86915913992349],[-87.70331707542312,41.869162762734774],[-87.70304270566427,41.86916630368204],[-87.70287350660246,41.86916811921755],[-87.70273482063871,41.86916960808506],[-87.7025574335549,41.86917148796547],[-87.70228807009853,41.869173987366224],[-87.70208803315522,41.869175549966556],[-87.70186489311948,41.8691780828912],[-87.70171856305168,41.86918032433379],[-87.70145712597852,41.8691832221306],[-87.70125708819302,41.86918486560634],[-87.70118783886107,41.86918541750271],[-87.7008690101115,41.869188535917615],[-87.70086129485684,41.86908894292448],[-87.7008614931213,41.868910644712095],[-87.70085792659998,41.86881444532721],[-87.70085744632505,41.86880148871194],[-87.70085599219296,41.868757897854735],[-87.70085234500853,41.86864857829942],[-87.70085318449927,41.86855596439174],[-87.70085090138161,41.86844491934913],[-87.70084220253322,41.86827971215001],[-87.70082993434725,41.86804672254586],[-87.70082649296155,41.86794889841386],[-87.70082139270673,41.8677363004772],[-87.7008186900947,41.86761567566422],[-87.7008129539049,41.86736330998167],[-87.7008080542819,41.86716388554462],[-87.70080203286379,41.866981727802724],[-87.70080005101343,41.86692177086406],[-87.70079696208934,41.866739782394795],[-87.70078783815805,41.86645568239918],[-87.70100857525468,41.8664531303648],[-87.70142926490222,41.866450012214614],[-87.7017347576998,41.866445984630566],[-87.70201524203624,41.8664426475282],[-87.7022663524282,41.8664396587697],[-87.7025409310454,41.866435761035206],[-87.7027922309314,41.86643220136266],[-87.70319930117341,41.866430327427146],[-87.703395754264,41.8664288173159],[-87.70377595001743,41.86642560566357],[-87.70404974063958,41.86642342888166],[-87.70444598023596,41.86642165007378],[-87.70453158501469,41.86642126561565],[-87.70497395416432,41.86641619498513],[-87.70527911092195,41.86641270498387]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13310418.5511","perimeter":"0.0","tract_cent":"1179976.28640706","census_t_1":"17031081400","tract_numa":"60","tract_comm":"8","objectid":"373","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904337.05344843","census_tra":"081400","tract_ce_3":"41.892775","tract_crea":"","tract_ce_2":"-87.61446332","shape_len":"30321.1615324"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61633842335324,41.89684387693607],[-87.61632172369286,41.89681644009268],[-87.61632168795535,41.89681638416158],[-87.61631638371294,41.89680817514501],[-87.61621203580009,41.896646683156526],[-87.6161876834925,41.89660942902841],[-87.61607220950464,41.896432774409504],[-87.61598959695193,41.896306416563746],[-87.61587236572721,41.896127108335754],[-87.6158446687556,41.8960852975643],[-87.61581309365147,41.896037632427706],[-87.6157067926073,41.895877103333966],[-87.6155431386714,41.89562996298737],[-87.61553042609991,41.89561064643865],[-87.61550399063253,41.89557046393806],[-87.61525801177248,41.895196567686604],[-87.61514306461248,41.8950218281243],[-87.6151308529179,41.895003264112844],[-87.61497860015717,41.89477791568081],[-87.61490652152527,41.89467120825365],[-87.61488386057833,41.894642478684034],[-87.61484774484664,41.89459669128412],[-87.61466667361032,41.89436707292668],[-87.61462539663508,41.89431473559552],[-87.61462536295636,41.89431469284909],[-87.61446637369599,41.89411310230736],[-87.61444947646234,41.89409179017521],[-87.61436268528033,41.893982322071686],[-87.61433776849078,41.89395088123329],[-87.61401200328692,41.893539977724224],[-87.61397053060243,41.893487664447306],[-87.61377287652176,41.89323834307915],[-87.6136884160219,41.893131803436056],[-87.6136863249412,41.89312916547011],[-87.61368631878716,41.89312915747327],[-87.61368620723053,41.893129017915825],[-87.61367883065988,41.89313177108253],[-87.61352622259089,41.893188725380895],[-87.6135242906655,41.893189446256436],[-87.61352427113614,41.893189451896916],[-87.61336961145902,41.89323342743592],[-87.61321310635954,41.89327409838506],[-87.61318215312384,41.89328214192021],[-87.61286701300389,41.89336153174983],[-87.61276385620882,41.89338353679035],[-87.61267118475804,41.8934033051278],[-87.6126231870771,41.89340923358758],[-87.61258571507351,41.89341336201151],[-87.61255483126348,41.89341286575197],[-87.61253463392751,41.893410021635226],[-87.61252036179944,41.89340801190813],[-87.61246687401432,41.89339916902185],[-87.61240226915854,41.893386057637386],[-87.61214398460935,41.893338003360036],[-87.6121087544578,41.893334563385096],[-87.61203014095959,41.89332688767946],[-87.61203007858079,41.89332698031722],[-87.61190086998424,41.89351828214509],[-87.61188402500842,41.89354323091159],[-87.61185656938332,41.893574260373065],[-87.61185236597217,41.89358041288419],[-87.61185126695214,41.89358202096175],[-87.6117842154391,41.89370473295899],[-87.61171875780518,41.89380322443036],[-87.61168972259871,41.89384770110497],[-87.61163074427614,41.89393804416854],[-87.61161286172245,41.89396545206749],[-87.61159254836545,41.89399658562705],[-87.61154654154709,41.89407242318945],[-87.61151785085328,41.89411971647113],[-87.61138013512527,41.89433336786802],[-87.61137770352956,41.894338630567795],[-87.61137335946478,41.89434803409459],[-87.61135945673288,41.89437820599392],[-87.61135186175423,41.894394688142235],[-87.61127583663114,41.89451169027933],[-87.61123407132638,41.89457402447754],[-87.61119947764057,41.894625700419894],[-87.61118711087472,41.89464663690294],[-87.61113683528895,41.894731754793064],[-87.61113228707752,41.8947387667976],[-87.61112065003084,41.894756708139276],[-87.61107545326922,41.89482640021703],[-87.61104439828857,41.89487428580182],[-87.61098274905527,41.89497035786688],[-87.61096280841392,41.89499789047312],[-87.61095465433397,41.8950091489929],[-87.61085681932312,41.89515798451825],[-87.61084371998085,41.895177908395674],[-87.61082778274483,41.89520214838572],[-87.61078968622517,41.89527454884619],[-87.6106942647285,41.89542826521323],[-87.61067775949564,41.895454854239006],[-87.61065625880195,41.895488825099264],[-87.61060674410449,41.89556705785653],[-87.61058292101666,41.89560470069014],[-87.61054062801345,41.895671526631155],[-87.61052925645392,41.895685991263576],[-87.61051495292742,41.895704186063526],[-87.61049441385899,41.89573888742259],[-87.61048810655348,41.89574954392164],[-87.61047761174412,41.89577143173286],[-87.61045271307553,41.89581337182424],[-87.6104380190112,41.89583587013359],[-87.61041530046748,41.895870654903206],[-87.61038315661627,41.89592654496137],[-87.6103656740949,41.89595228832566],[-87.61033038070114,41.89600425843352],[-87.61032156597128,41.896017210604114],[-87.61027136405566,41.89609787740791],[-87.61023315705732,41.89614548611346],[-87.61017819324753,41.89621397553673],[-87.61015449490931,41.896227656959525],[-87.61010965613052,41.89623662263879],[-87.6100972317155,41.89623747715333],[-87.6100273341039,41.89624400780709],[-87.60968132740813,41.89625132263559],[-87.60942746202979,41.89625666518136],[-87.60910800315928,41.896261429668535],[-87.60881824036949,41.8962678342536],[-87.60850568359855,41.89626962168045],[-87.60842556813304,41.89627151442024],[-87.6082792917522,41.89627497016983],[-87.6082585398855,41.89627513990829],[-87.60819403325777,41.89627566726842],[-87.60811624919123,41.896274819303756],[-87.60805707809787,41.89627471947154],[-87.60804151477312,41.89627465794595],[-87.6080107634819,41.89627453698493],[-87.60799277311511,41.896273688992935],[-87.6079764751007,41.89627292111725],[-87.60794856186656,41.89626956148425],[-87.60794383901593,41.89626869328693],[-87.60793371741094,41.89626683324785],[-87.60792600023822,41.896263246082846],[-87.60792461873596,41.896262604261],[-87.60792448841607,41.896262500528984],[-87.60792220189342,41.89626068943484],[-87.60792207048414,41.89626058459825],[-87.60792152730848,41.896257787811294],[-87.60792137703248,41.89625701326245],[-87.60792155268138,41.89625119659627],[-87.6079196295451,41.896250413043404],[-87.60790356480449,41.89624386535352],[-87.60789780034096,41.896246660163655],[-87.60788831084207,41.89625126074722],[-87.60787332615821,41.896254140556714],[-87.60787075276048,41.896254635001014],[-87.60786677758182,41.896254429591295],[-87.60785261833412,41.89625369716378],[-87.60783739241927,41.89624897528888],[-87.60783581818372,41.896248487023094],[-87.60783267112154,41.89624683432114],[-87.60783063405583,41.896245764646665],[-87.60783059493215,41.89624578141373],[-87.60782601206472,41.896247765629376],[-87.6078145774167,41.89625271588188],[-87.60780299214643,41.89625455322039],[-87.6077964369115,41.89625559275685],[-87.60777797784014,41.8962541314522],[-87.6077610368101,41.89624845306743],[-87.60775772417736,41.89624666347769],[-87.607757130573,41.89624634304237],[-87.60775710954826,41.896246350867806],[-87.60773975671263,41.896252846317886],[-87.60773162993833,41.896253840794316],[-87.60772055737634,41.89625519508596],[-87.60770564400681,41.89625365628442],[-87.60770129620133,41.89625320757059],[-87.60768369960942,41.89624700445072],[-87.60768048685428,41.8962452824492],[-87.60766446791533,41.896252179016955],[-87.60765757558927,41.89625324275992],[-87.60764636470535,41.89625497295359],[-87.60762801711033,41.89625343082559],[-87.60762665566888,41.89625296393465],[-87.60761122283104,41.89624767129355],[-87.60760687897911,41.89624528379993],[-87.60759107765774,41.89625245615614],[-87.60758643570476,41.89625326737766],[-87.6075730438576,41.8962556075447],[-87.60755461914384,41.89625442111912],[-87.60754802511254,41.89625230150862],[-87.60753763818012,41.89624896253657],[-87.60753478965006,41.8962475449732],[-87.60752589446753,41.89625048682628],[-87.60751565470325,41.896253873253045],[-87.60749495201803,41.8962559929425],[-87.60749487204845,41.896255983929905],[-87.60747426159215,41.89625372138273],[-87.60746038849108,41.896249517064426],[-87.60744173142376,41.89625587524617],[-87.60743172464142,41.896256948376944],[-87.60742143175226,41.896258052080185],[-87.60740110802897,41.89625586597563],[-87.60739505762395,41.896253842273644],[-87.60738354373598,41.896249991773196],[-87.6073689391686,41.8962556947178],[-87.60736590875538,41.89625687808291],[-87.60736584253094,41.896256887817906],[-87.60736424991327,41.89625711485121],[-87.60734637389145,41.89625966319576],[-87.60732659425138,41.89625808370039],[-87.60730825842413,41.8962522603165],[-87.60730796579413,41.89625212098024],[-87.60729070056938,41.89625878980302],[-87.60729005830677,41.896258874106564],[-87.60727157280597,41.89626130360256],[-87.60725231014645,41.89625948065653],[-87.60723489376527,41.896253552481944],[-87.60721656187533,41.89626035230946],[-87.60719636709338,41.89626299628666],[-87.60719083349751,41.89626252798059],[-87.60717603810153,41.896261275805436],[-87.60716636991293,41.89625836560346],[-87.60715908948491,41.896256174396335],[-87.60714120174191,41.896262674605914],[-87.60714112834647,41.89626270130968],[-87.60712145116526,41.89626504668124],[-87.60711133086669,41.89626401369002],[-87.60710167650694,41.896263027826805],[-87.60709564308597,41.8962609646995],[-87.60708352832187,41.896256821401046],[-87.6070830537191,41.896256598860745],[-87.60707214147813,41.89626163192592],[-87.60706732449853,41.89626385337892],[-87.60706166838939,41.89626486178726],[-87.6070493271311,41.896267060897976],[-87.60704001151326,41.89626648853267],[-87.60703090107786,41.8962659284413],[-87.60702153719436,41.896262970481196],[-87.60701388212928,41.896260551868124],[-87.6070128424895,41.8962600164785],[-87.60700982545849,41.896258462271206],[-87.60700913528903,41.896258106643906],[-87.60700910578268,41.89625811743421],[-87.60699113858259,41.8962644971948],[-87.60698364393934,41.89626532794396],[-87.60697146326137,41.896266677898396],[-87.60695176398151,41.896264522557665],[-87.60694197596314,41.896261102523454],[-87.60693416647459,41.89625837392751],[-87.60692891074679,41.89626061180894],[-87.60691803757892,41.89626524252751],[-87.60690292540595,41.89626753797969],[-87.6068998244567,41.8962680087576],[-87.6068997026303,41.896267998382115],[-87.60688140478848,41.89626641034643],[-87.60686453743047,41.89626062280064],[-87.60686117797927,41.89625881807002],[-87.60684581383128,41.896266266963764],[-87.60683932446771,41.89626752091252],[-87.60682807143041,41.89626969505101],[-87.60681115474911,41.89626887534618],[-87.60680982658329,41.89626881096076],[-87.60680088492227,41.89626609604888],[-87.60679284225644,41.89626365438702],[-87.60678993228545,41.8962621499731],[-87.60678714537087,41.89626070945507],[-87.60676882655811,41.89626638360905],[-87.60675909332461,41.89626710715005],[-87.60674908586442,41.8962678500857],[-87.60672961529603,41.896264928042974],[-87.60671753508029,41.89626007197261],[-87.60671213831422,41.89625790198665],[-87.60669829149923,41.89624746256909],[-87.60669818952395,41.896247385908545],[-87.6066891791639,41.896234790488364],[-87.60668907864488,41.89623465017079],[-87.60658882460916,41.896236559362926],[-87.6065528162014,41.89623724475036],[-87.60655409233536,41.89628349371488],[-87.6058650764857,41.89629600814659],[-87.6058635203153,41.89625962292148],[-87.60586310288322,41.89624986452613],[-87.6057944184876,41.8962495265315],[-87.60572695199461,41.89624919456619],[-87.6057268992807,41.89624927601034],[-87.60571809236099,41.89626274955379],[-87.60570576632738,41.89627276062659],[-87.6057044132061,41.89627385935091],[-87.6056870260981,41.89628154307527],[-87.60566744415067,41.896285233201105],[-87.60566360847358,41.896285099400316],[-87.6056472502072,41.89628452922034],[-87.6056323408125,41.89628105878309],[-87.6056228838634,41.89628445988085],[-87.6056143430339,41.89628753116372],[-87.60559459264636,41.896289848641686],[-87.60558062278976,41.896288385796],[-87.60557478156053,41.89628777440881],[-87.60555663457208,41.896281539758355],[-87.60555650382919,41.89628147361698],[-87.60555608604396,41.896281261584136],[-87.60553592549803,41.896287418379686],[-87.60551430636816,41.89628933980717],[-87.60549277314418,41.896286897894676],[-87.6054814595612,41.8962837252013],[-87.60548136661848,41.89628375891511],[-87.60546372058434,41.896290144313994],[-87.60546364608324,41.89629017128411],[-87.6054441167429,41.89629246187168],[-87.60542452564978,41.89629038983063],[-87.6054065989291,41.896284101668066],[-87.60540634345358,41.89628399000483],[-87.60540241500794,41.89628558886524],[-87.60538914773566,41.8962909888388],[-87.60536997812648,41.896293913416756],[-87.60535049079105,41.89629247264573],[-87.60533248450685,41.896286787149776],[-87.60533107716901,41.896286126197765],[-87.6053307673499,41.89628598071018],[-87.60531570088554,41.89629307508455],[-87.60530830457269,41.896294398114385],[-87.6052983657737,41.89629617620936],[-87.60528748576839,41.89629538302655],[-87.60528063980338,41.89629488353076],[-87.60527841259155,41.896294130662206],[-87.605264430252,41.89628940178644],[-87.60526225724007,41.89628814569434],[-87.60525833633946,41.89628587852127],[-87.60524271558205,41.89629329867968],[-87.60523642327614,41.89629450109793],[-87.6052247890961,41.89629672452857],[-87.60521524352062,41.89629625264265],[-87.6052063238403,41.896295811892514],[-87.60519679697337,41.89629294934733],[-87.6051891560044,41.89629065364377],[-87.60518744581547,41.89628981596196],[-87.60518546642257,41.896288846496425],[-87.60516978790429,41.89629494849764],[-87.60515643693569,41.896296462353114],[-87.60515419351054,41.89629671651309],[-87.60515231828235,41.896296924160495],[-87.60514071264014,41.89629560056715],[-87.60513805755623,41.89629529750672],[-87.60513804838371,41.89629529662528],[-87.60510401444216,41.89631011919853],[-87.60508211320091,41.89631747233815],[-87.60507043341251,41.89631940951474],[-87.60506139545944,41.89632090845087],[-87.60504338111309,41.89632314326562],[-87.60502814417131,41.89632503372839],[-87.60501796783366,41.896326122587574],[-87.60499909240293,41.896328142274555],[-87.6049613057224,41.89633064656214],[-87.60491019525772,41.896332271041544],[-87.6048291217593,41.89633315601893],[-87.60481517436303,41.89633194761309],[-87.60478879466899,41.89632966197831],[-87.60475674414822,41.89632841582305],[-87.6047268609333,41.8963272144202],[-87.60468379468188,41.896325483147145],[-87.60462471004031,41.896327468260964],[-87.60448665747977,41.89632925374927],[-87.60444038953358,41.89632971309257],[-87.60430452884896,41.89633106139711],[-87.60421682254976,41.89632743128082],[-87.60414336135979,41.89633064209564],[-87.60402978314295,41.89633143014142],[-87.60399500132586,41.89633373996792],[-87.60390079957759,41.8963399958946],[-87.60379362379213,41.896341524704205],[-87.60378897557179,41.896341590947316],[-87.60376676833845,41.89634212329465],[-87.6035383704055,41.896347600348136],[-87.60337993932015,41.89635407990332],[-87.6031272051195,41.896364415975874],[-87.60286007681911,41.896362586124866],[-87.60267883789446,41.89636134416805],[-87.6025136824406,41.89637188813362],[-87.60249398146411,41.89637314584391],[-87.60249395095525,41.89637314784512],[-87.602486874862,41.896372956816535],[-87.60242607904108,41.896371317673534],[-87.6024259846733,41.89637131515192],[-87.60236955504949,41.89634332153272],[-87.60235227876284,41.89630907384405],[-87.6023512195085,41.8962775375052],[-87.60235074298446,41.89626334513819],[-87.60234777348238,41.89624874337857],[-87.60234267408391,41.89622366676803],[-87.60234211613142,41.89611789551655],[-87.60234188393261,41.8960739363564],[-87.6023417956426,41.89605558949523],[-87.6023417097237,41.896037711089754],[-87.60233779125885,41.89580791228617],[-87.60233567239882,41.895739525940634],[-87.60233400633805,41.89568576951703],[-87.60233256363443,41.89563973980726],[-87.6023314471665,41.895604139164604],[-87.60233014578513,41.8953511127935],[-87.6023287821815,41.89527102764137],[-87.60232496604844,41.89504520777475],[-87.60232418768602,41.89498781786677],[-87.60232289068166,41.89489223068056],[-87.6023205740667,41.89484089875487],[-87.60231968065881,41.894820942759644],[-87.60231305102968,41.89467284857225],[-87.60231426832286,41.8945854917031],[-87.60231487304398,41.89454212512527],[-87.60231515278896,41.8945175937259],[-87.60231646547261,41.89440248145214],[-87.60231900147032,41.89417683892593],[-87.60231338072194,41.89399016803025],[-87.60230012269888,41.89354875526366],[-87.60229307174266,41.89331368285591],[-87.60229307119276,41.89331366666142],[-87.60235195550487,41.89326459094514],[-87.60371117093197,41.893244502944235],[-87.60399530252502,41.89324026371171],[-87.60429304682462,41.893235821505826],[-87.60518912790269,41.89322125474853],[-87.60695974791992,41.89319242749195],[-87.60783442155339,41.893178177231846],[-87.60982234546779,41.8931457649556],[-87.60982234309465,41.893145682339146],[-87.6098223267972,41.89314510869125],[-87.60982147696139,41.89311532618671],[-87.60981494946572,41.89288626570769],[-87.60980974294914,41.89270356148745],[-87.60979800921382,41.892291879910175],[-87.60979598842366,41.892220710513705],[-87.60979598526778,41.89222059962669],[-87.6051996547173,41.89229442857266],[-87.60477905273295,41.892301178538325],[-87.60477520148153,41.89230124054774],[-87.60460086854309,41.89230403749575],[-87.60445691873066,41.89230634700981],[-87.60359286740892,41.892322529017775],[-87.60303660794929,41.89233294310504],[-87.60091134699876,41.89236537359332],[-87.60091134669781,41.89236539993606],[-87.60091123267024,41.89237862779466],[-87.60091093328154,41.8924080160954],[-87.6009021714728,41.89240820911349],[-87.600875187671,41.89240880374212],[-87.6008748920419,41.892408993952934],[-87.60084695523271,41.89242385389139],[-87.60081601431948,41.89243496304906],[-87.60078302709559,41.89244194224288],[-87.60075097659718,41.892444471039546],[-87.60074891209456,41.89244463404895],[-87.60074883537644,41.89244463026644],[-87.6007146640645,41.892442961113396],[-87.60068131021413,41.89243693026424],[-87.60064984034743,41.89242676817967],[-87.60063637989153,41.89242018422162],[-87.60062113306168,41.892412726625125],[-87.60059234679404,41.89241520458079],[-87.60059234367351,41.892415156262345],[-87.60059131400823,41.8923975306046],[-87.60059047287781,41.892383139956564],[-87.60058212096651,41.89224049757329],[-87.60058211452446,41.892240386390654],[-87.59966713439157,41.892255654046195],[-87.59854931958766,41.89227429618701],[-87.59854559930756,41.89215154332621],[-87.59854044528716,41.89198148411992],[-87.59852848910795,41.891585853807634],[-87.59852439073599,41.89145039928824],[-87.59852438721039,41.89145029031952],[-87.59933441775314,41.891436391989416],[-87.60056686476631,41.89141523469191],[-87.60056133694687,41.891111604620534],[-87.60059370720485,41.8911104116141],[-87.60060577592324,41.891103969140985],[-87.60062149518195,41.89109557822583],[-87.60065225233066,41.8910845228293],[-87.60068038443684,41.891078590081385],[-87.60068509244756,41.891077597342075],[-87.60068659336216,41.89107747958542],[-87.60071905914097,41.89107493232381],[-87.60074848449607,41.891076447981945],[-87.60075312113716,41.89107668694642],[-87.60078629035286,41.89108274403957],[-87.6008175378798,41.891092959280094],[-87.60082112279177,41.891094729402724],[-87.60084602506691,41.89110702655187],[-87.60084642145821,41.89110766025454],[-87.6008870493846,41.89110698663226],[-87.60088705162302,41.891107015735436],[-87.60088847216731,41.891128720998815],[-87.60088992653147,41.89115093800335],[-87.60088992614227,41.89115093992183],[-87.60170350816357,41.89113795998134],[-87.60275997946437,41.89112056424558],[-87.60326047862905,41.89111207004186],[-87.60389620674454,41.89110127794628],[-87.60434189162922,41.891096644605284],[-87.6045221844847,41.89109476951428],[-87.60487573748398,41.89108899774642],[-87.60491287037257,41.891088391637226],[-87.60521340777204,41.89108348450316],[-87.60613515036611,41.891068458582055],[-87.60746207429547,41.891046815072386],[-87.60953544572408,41.89101294800679],[-87.60953205618,41.89092189098871],[-87.60952761184903,41.8908024982926],[-87.60951590318604,41.89040968965256],[-87.60950941839756,41.89019214743173],[-87.6094971728282,41.88978035265397],[-87.6094919577081,41.88960546358217],[-87.60949195445059,41.88960536175044],[-87.60948580285746,41.88939911084168],[-87.60956634327088,41.889403381934954],[-87.60954751584698,41.88931434724046],[-87.6112333412321,41.889310140876944],[-87.6113673213378,41.88974074346256],[-87.61143663655476,41.89063033779515],[-87.61355929345658,41.89058438458912],[-87.61356976236154,41.890561557507944],[-87.61362028535112,41.8904513933811],[-87.61363989733711,41.890449997085405],[-87.61423153147616,41.89040787661248],[-87.61423158513963,41.89040787283217],[-87.61440557424724,41.890403474577084],[-87.61441120752646,41.89055615802837],[-87.61555178817873,41.890537222972526],[-87.61555612530698,41.89047790595501],[-87.61579679760804,41.89050891030202],[-87.61585762542495,41.8905074884973],[-87.61606313672497,41.89050268450889],[-87.61606469986826,41.89044506584154],[-87.61651239905274,41.89043688438534],[-87.61651282526162,41.89047231267784],[-87.61651311276718,41.890496232694694],[-87.6167825549538,41.89045880890457],[-87.61702635001738,41.89045689986325],[-87.61703032010554,41.89051249488165],[-87.61714894503511,41.89051027235982],[-87.61733246184676,41.89050683304198],[-87.6173324718815,41.89050623047007],[-87.6176527577407,41.89053215210217],[-87.6178518645369,41.89053202426223],[-87.6179521422315,41.89043214103672],[-87.61858865179852,41.89043198265523],[-87.61867520334556,41.89043184075719],[-87.61961384322011,41.890464773079806],[-87.61987212804821,41.890465010620346],[-87.6198721430977,41.890174807877514],[-87.61960427610659,41.890179310729486],[-87.61867501117544,41.89016084611935],[-87.61857947976851,41.89016265303728],[-87.61771581646045,41.890176140282584],[-87.61764165553225,41.89017705599195],[-87.61732369043429,41.890182272019416],[-87.61538974956376,41.89020758735657],[-87.61441450655616,41.89022103900518],[-87.61422737434428,41.89022192138284],[-87.61422719069927,41.89022192242823],[-87.61407211024535,41.89022267018763],[-87.6138805648719,41.890223526828265],[-87.61371744247016,41.890224200673174],[-87.61362622023105,41.89022467646642],[-87.61270662917963,41.89022885755314],[-87.6126682310962,41.89021663689411],[-87.6126439589788,41.89020891184601],[-87.61259126434848,41.89015918458836],[-87.61257778147095,41.89009255276472],[-87.61256818347518,41.89000707759453],[-87.61256048375553,41.88991612641156],[-87.61255579669819,41.88980221114946],[-87.61255426072894,41.889734624941376],[-87.61254944570744,41.88963202885117],[-87.61321579396642,41.88905999332095],[-87.61397431379372,41.888408814451545],[-87.61417130645373,41.88841004829168],[-87.61417136337442,41.88841004864815],[-87.61442515410702,41.88841163773798],[-87.61455102961222,41.88841426652387],[-87.61526597329521,41.888422716235254],[-87.61531893364753,41.88841981576887],[-87.61584971764792,41.88839074468882],[-87.61692168332763,41.88835292568239],[-87.61707532257311,41.88834158796056],[-87.61725531646002,41.88832830515323],[-87.61762653875854,41.88831907600653],[-87.61801183558367,41.8883110387108],[-87.61809829990791,41.888316516899835],[-87.61819990569197,41.88833089832216],[-87.61908447877045,41.88843302816882],[-87.61940299469937,41.88846654010993],[-87.62046451667754,41.88857822909424],[-87.62054535093003,41.888586733884395],[-87.62058173992428,41.888590562381765],[-87.62063763648828,41.888596443057885],[-87.62120026804494,41.888655636040326],[-87.62231739229748,41.88878871582174],[-87.6227136852292,41.88883592240832],[-87.62331815746,41.88888225195417],[-87.62360708350971,41.88890516861963],[-87.62385808886269,41.88889332776509],[-87.62403204478557,41.88881833207407],[-87.62418745710612,41.88882269475295],[-87.62437192112782,41.88885731123957],[-87.62434607567128,41.88896555128736],[-87.62429823642314,41.889171759856225],[-87.62429821788548,41.88917184206892],[-87.62428079610325,41.88924942388483],[-87.62426765282652,41.88929785235581],[-87.62425220584524,41.88935476879885],[-87.62422804525029,41.889443790062636],[-87.62418451423697,41.88960418541654],[-87.62413338088335,41.88978929423505],[-87.62412991390981,41.889801844726726],[-87.62409709269333,41.889920662642375],[-87.62409578253535,41.890039100797715],[-87.6240998113598,41.890126160555496],[-87.6241006875598,41.890145093798495],[-87.6241070708104,41.890283029523836],[-87.62412151850722,41.890662842485014],[-87.62412837047708,41.890911671611995],[-87.62412897501565,41.89093361689607],[-87.62413149755449,41.8910252093242],[-87.6241426708515,41.891279588723506],[-87.62415434478673,41.89148868278202],[-87.62416126741867,41.89173080731398],[-87.62416351415865,41.89192420235792],[-87.62416578810924,41.89214020595898],[-87.62417310894703,41.89232140373095],[-87.62418585451636,41.89255712346296],[-87.62419187247917,41.89273259665584],[-87.62419699189368,41.89289218367202],[-87.62421303600048,41.893335314745634],[-87.62421792415414,41.89346292173142],[-87.62422716821818,41.893745703747804],[-87.62422717640106,41.89374596010998],[-87.62423577625614,41.89401061684603],[-87.62423708094174,41.89413622309423],[-87.62424002733,41.894419890996254],[-87.62424254049174,41.89455794157425],[-87.62424492968096,41.89465510227173],[-87.62425208681196,41.894941653447276],[-87.62425950787956,41.89523878142372],[-87.62426540386194,41.89548936651859],[-87.62427121475149,41.895739777641325],[-87.6242761247087,41.895951369826875],[-87.62428035875236,41.896145970193174],[-87.62428187114162,41.89621548304531],[-87.62427921338862,41.89652880337376],[-87.6242425546119,41.89673394401541],[-87.62366227128452,41.896742966861034],[-87.6235142992786,41.896744948830005],[-87.62313136216882,41.89675007727627],[-87.62294871406013,41.896752522974076],[-87.62269201416304,41.89675632407427],[-87.62235137955227,41.896761367299035],[-87.62200825972877,41.89676614411886],[-87.62183104960923,41.89676861074695],[-87.62169133748014,41.896770555100964],[-87.62143091971805,41.896774179408084],[-87.62115496834447,41.89677429241121],[-87.62088987858097,41.89677440024031],[-87.62036950838015,41.896785207338084],[-87.62025401631122,41.89678760547529],[-87.62025032772324,41.89678768218575],[-87.61952359518088,41.89680277048006],[-87.61860445697513,41.89681557692541],[-87.6178225272554,41.89682656912195],[-87.6175081232061,41.8968306708557],[-87.61737016044675,41.896832470197744],[-87.61704809804702,41.896836670288124],[-87.61690972555057,41.89683023601391],[-87.6168784643533,41.89682878246936],[-87.61687083432795,41.89682861905763],[-87.61666732297364,41.89682425692479],[-87.61645190694736,41.89683194770674],[-87.61634662211705,41.89685732602749],[-87.61633842335324,41.89684387693607]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14140693.795","perimeter":"0.0","tract_cent":"1190161.65328237","census_t_1":"17031450300","tract_numa":"77","tract_comm":"45","objectid":"367","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1849434.21316933","census_tra":"450300","tract_ce_3":"41.74187822","tract_crea":"","tract_ce_2":"-87.57882771","shape_len":"18185.03732"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56626839616125,41.7371895892358],[-87.56668628172756,41.73718380282855],[-87.5667454104012,41.73718298407738],[-87.56682617153442,41.7371818655801],[-87.5668587327216,41.73718141482836],[-87.56686306823079,41.73718135455947],[-87.56690152894868,41.73718082185124],[-87.56726702374179,41.737175759071974],[-87.56738685095426,41.73717409902352],[-87.56745327093398,41.73717317867366],[-87.56756110120918,41.737194383618686],[-87.56765340595027,41.73717040566149],[-87.56777585951619,41.737168708920414],[-87.56786278729818,41.73716750399422],[-87.56798010465181,41.73716587819915],[-87.56802488227517,41.73716525738585],[-87.56804540950134,41.737164973131215],[-87.56815037628645,41.737163518200965],[-87.56824299250653,41.737162234236145],[-87.56829035654985,41.73716157757643],[-87.5684096956119,41.73715992309028],[-87.56843110745584,41.737159626269005],[-87.56853298539714,41.73715821381994],[-87.56865182460672,41.7371565661835],[-87.56876007662397,41.737155065049876],[-87.56887152153912,41.73715351974291],[-87.56918824820559,41.73714912722316],[-87.56933355554895,41.737147111531556],[-87.56966709432805,41.73714297629803],[-87.57014332875386,41.73713707003185],[-87.57031571172055,41.73713437314433],[-87.57055830847986,41.737130577334106],[-87.57087426680404,41.73712595140411],[-87.57119286357644,41.73712128612216],[-87.57175386114,41.73711389142498],[-87.57208477245536,41.73710886702558],[-87.57243081918108,41.73710361203882],[-87.57312821785295,41.73709362856248],[-87.5733018811031,41.73709108961997],[-87.57348291229947,41.73708844244022],[-87.57361670334797,41.73708648595475],[-87.57404208662486,41.73708007690205],[-87.57451495716379,41.737073451616126],[-87.57495788882056,41.737067244252266],[-87.57512122714327,41.73706478699516],[-87.5755208767,41.73705877401565],[-87.57571801855387,41.73705598505023],[-87.57633249618846,41.73704728527656],[-87.57693326089203,41.73703860144156],[-87.57728516794008,41.73703351311423],[-87.57774205449095,41.73702762696443],[-87.5781486046143,41.737021862355995],[-87.57869677402593,41.737014087357934],[-87.57874957812565,41.73701326809186],[-87.5790509561142,41.73700859170286],[-87.57936119152302,41.737004296473486],[-87.57947706559146,41.737002692002974],[-87.57978920833604,41.736998369436826],[-87.58002703938969,41.7369947421945],[-87.58057263977058,41.73698701522394],[-87.58184456973929,41.7369689918924],[-87.58248034208337,41.73695874066935],[-87.58275040019353,41.73695487050986],[-87.5832182313483,41.73694816467777],[-87.5837898526655,41.73694064334208],[-87.58413212450137,41.73693532875574],[-87.5845678566764,41.736928644683935],[-87.58468202958404,41.73692689297394],[-87.58520650786748,41.73691951598732],[-87.58520516397326,41.73711625459052],[-87.58521557867655,41.73739956235221],[-87.58522284816316,41.737828703776],[-87.58522758106663,41.73810808335564],[-87.5852509293184,41.73840409908554],[-87.58524969293366,41.73873673804811],[-87.5852487018695,41.73900324903717],[-87.5852633978859,41.73927766558255],[-87.58526879543564,41.73965054326392],[-87.58527562022704,41.74012194860077],[-87.58529868038605,41.74028500072862],[-87.58529672171696,41.74056073005732],[-87.58529370785946,41.74098495840184],[-87.58531963801403,41.74123225191959],[-87.58531575829042,41.74147274142294],[-87.58531101930208,41.74176645715791],[-87.58532409358274,41.742383985923524],[-87.58533184717086,41.742750206514344],[-87.58535198977134,41.74295950854141],[-87.58536223074222,41.743295492349695],[-87.58536810836395,41.74347367658167],[-87.58537127734876,41.74363399202503],[-87.58537242295819,41.74379351436096],[-87.58537537928763,41.74420512570499],[-87.58538057793966,41.74492900727614],[-87.58539491481777,41.7455501913734],[-87.58540555202674,41.74602758414137],[-87.58541231083859,41.74633092165161],[-87.58543168885424,41.747155573566566],[-87.58544907049587,41.74784780005853],[-87.58546181244128,41.74835524930673],[-87.5855338105789,41.74908240906443],[-87.58554591788663,41.74915344013779],[-87.58557896262317,41.74934730849231],[-87.58558760659761,41.74942986476485],[-87.58560055780086,41.749553553214646],[-87.58561739596034,41.749714361952734],[-87.58562299390303,41.74976269232447],[-87.58563644657687,41.74987883143512],[-87.5856397465307,41.749907322017506],[-87.58564318427266,41.749969887839],[-87.5856449203851,41.750001485221375],[-87.58565057634188,41.75011524367613],[-87.58565142279147,41.750130915027924],[-87.58565208648997,41.75014319735058],[-87.58565774233831,41.75024793500922],[-87.58565852904637,41.75026250193949],[-87.5856601531873,41.75029399128925],[-87.58566148361099,41.75031977991175],[-87.58566148865908,41.750319881758166],[-87.58566233798085,41.750336348152075],[-87.58566311017643,41.75035131318576],[-87.58566700076885,41.75042674476233],[-87.58567617981134,41.75060469392877],[-87.58566758328922,41.750679877390446],[-87.58563833007724,41.75093571218632],[-87.58561784803902,41.75110907359099],[-87.58562040883875,41.75122314339442],[-87.58565200717342,41.7514308455983],[-87.58565529833413,41.75150194330311],[-87.5847526817763,41.75090080081696],[-87.58445675605395,41.75068959199591],[-87.5839506709089,41.75032519686946],[-87.58329835186954,41.74985550061354],[-87.58263198369423,41.74937567759413],[-87.58198337291579,41.74891113840748],[-87.58161762915789,41.74864918592048],[-87.58103063210227,41.74822876087029],[-87.58078759057693,41.748053710719624],[-87.58023449733105,41.74765534169207],[-87.58004454982277,41.747518529633055],[-87.5798657465016,41.747389742229764],[-87.57961543009054,41.74720944554129],[-87.57935981941951,41.747025681263565],[-87.57913767807293,41.74686597724158],[-87.57891568390755,41.746706378037445],[-87.57830905896019,41.746269222734256],[-87.57824702593788,41.74622451901733],[-87.578246957624,41.7462244697198],[-87.57811184197404,41.746127099137205],[-87.57754859178614,41.74572119022837],[-87.57708289773673,41.74538572094007],[-87.57675350580621,41.74514843564377],[-87.57646139222895,41.74493853063795],[-87.57635754040112,41.74486390507808],[-87.57585720628236,41.744504163846514],[-87.57562837282951,41.744339629951064],[-87.574323304029,41.74340124615063],[-87.57381555214201,41.74303666337868],[-87.57322530262317,41.742612464770794],[-87.57311733985902,41.7425349025768],[-87.57260865108329,41.742169449273966],[-87.57228196014763,41.741934743945734],[-87.57176139736389,41.74155938031766],[-87.57136776769646,41.741275540598444],[-87.5709330964565,41.74096196489939],[-87.57065813407179,41.74076360205658],[-87.57027601248475,41.740487929563045],[-87.56997650191218,41.74027185222167],[-87.56928899585266,41.7397781651404],[-87.56890242397309,41.73950056461384],[-87.56839125384143,41.739133482402856],[-87.56766779314619,41.73861416877888],[-87.56726650635014,41.738326111766845],[-87.56694127498108,41.738092647358954],[-87.56650220468183,41.73777365622263],[-87.56602788951356,41.73743286163748],[-87.5657006250207,41.73719771954062],[-87.56585507713335,41.73719550808545],[-87.56602075925609,41.737193135956296],[-87.56626839616125,41.7371895892358]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2805419.5039","perimeter":"0.0","tract_cent":"1185791.42481685","census_t_1":"17031410700","tract_numa":"9","tract_comm":"41","objectid":"368","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869863.37651577","census_tra":"410700","tract_ce_3":"41.79804172","tract_crea":"","tract_ce_2":"-87.59419663","shape_len":"6859.00142609"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59182080979689,41.8009758945585],[-87.59181704131312,41.80071199612595],[-87.59181151086521,41.80053638152883],[-87.59180485189324,41.80035049631613],[-87.59179809578163,41.800141228672],[-87.59179320621833,41.799929119294234],[-87.59178946867367,41.79971888345447],[-87.59178594399087,41.799511944310595],[-87.59178251388823,41.79931054482152],[-87.59177572084097,41.799104460538146],[-87.59176913672708,41.79891209898923],[-87.59176152623245,41.79863699080281],[-87.5917581914146,41.79844912366281],[-87.59175792710101,41.79843817173492],[-87.59175702853717,41.79840092634402],[-87.59175618909647,41.79836192472161],[-87.59175082955964,41.7981587857617],[-87.59174849698302,41.79804631591126],[-87.5917446777291,41.79786217208125],[-87.59173987215459,41.79753779469551],[-87.59173488710688,41.79732766021138],[-87.59172681995338,41.79699039134285],[-87.59172373757379,41.79686331129833],[-87.59171691279266,41.796570974008375],[-87.59171227290126,41.79637223075275],[-87.59170913329336,41.79621512790261],[-87.59170474295273,41.79602966856099],[-87.59170126532912,41.79584637951954],[-87.59169486523398,41.79550913861498],[-87.59182367121056,41.79550811745364],[-87.59182441692897,41.79550803938991],[-87.59191494929574,41.795498552771484],[-87.59201801515917,41.795474876157215],[-87.59208514207602,41.79544800373257],[-87.59223468703034,41.795359340396466],[-87.59224716865776,41.79534888452871],[-87.59228814066064,41.79525875059748],[-87.59230616438703,41.79520946981663],[-87.59230869328907,41.795158662055684],[-87.59230753073717,41.7951235189846],[-87.5933474977653,41.79510811868978],[-87.59492333125904,41.79508476486515],[-87.5958835616476,41.79507420069407],[-87.59654415960411,41.79506623050287],[-87.59654815511422,41.79534466039221],[-87.59655350592115,41.79561714689058],[-87.5965568488001,41.79574469504674],[-87.59656248023065,41.795954229534004],[-87.59656594101429,41.796093963043454],[-87.59657027078309,41.796285870890365],[-87.5965770545574,41.79653654923298],[-87.59658348956218,41.79677432776049],[-87.59658821484761,41.79694768678882],[-87.596593136314,41.797145608374585],[-87.5965980071695,41.79736713043462],[-87.59659992274075,41.797455014830646],[-87.59660255124201,41.797575560176455],[-87.59660723264957,41.797791180803856],[-87.5966096137176,41.79798744444007],[-87.5966117790477,41.79816591387645],[-87.59661736759269,41.79833442102444],[-87.5966192489534,41.79843221175983],[-87.59662191973248,41.798558163860626],[-87.59662458447994,41.79871608677152],[-87.59662818963183,41.79889769883699],[-87.59662859706962,41.79891230128869],[-87.59663258336863,41.79905519374219],[-87.59663690266201,41.7992416677503],[-87.5966418835916,41.7994575037407],[-87.59664682919856,41.79967181477519],[-87.5966512450346,41.7998882571785],[-87.59665568351237,41.80009311831494],[-87.59665810802154,41.80019587937299],[-87.59666037446169,41.8002919164824],[-87.59666525765817,41.800461187441584],[-87.59667071819925,41.80066007285977],[-87.59667691954387,41.80092297385652],[-87.5964109614832,41.800921198861744],[-87.59614604784701,41.800924905337155],[-87.5959693912538,41.80092718897399],[-87.59586697816786,41.800928512913394],[-87.59548340244156,41.800933686282875],[-87.59514918899005,41.800937589944176],[-87.59505746347914,41.80093866103438],[-87.59462254189943,41.80094420762625],[-87.59451228042785,41.800945478240436],[-87.59449854286004,41.800945636595266],[-87.59424810772495,41.800948521811456],[-87.59404115690276,41.80095090559604],[-87.59374565321605,41.80095478425517],[-87.59343799092967,41.800958491908005],[-87.59315201278322,41.80096193752087],[-87.59288512898877,41.80096471816821],[-87.59263618391446,41.800967119894985],[-87.59237095827714,41.800969223969815],[-87.59209057371268,41.80097232705363],[-87.59182080979689,41.8009758945585]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3510729.28344","perimeter":"0.0","tract_cent":"1177909.6288942","census_t_1":"17031400500","tract_numa":"15","tract_comm":"40","objectid":"369","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867245.97693586","census_tra":"400500","tract_ce_3":"41.79104166","tract_crea":"","tract_ce_2":"-87.62317958","shape_len":"7955.07865592"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62084610148699,41.79472287237178],[-87.62084174893808,41.79454843770416],[-87.62083729553648,41.79439926874302],[-87.62083262760817,41.7941932163239],[-87.62082798053082,41.793996971270786],[-87.62082352117338,41.79383036563242],[-87.62081778679318,41.79361611132529],[-87.6208086455935,41.79323624609896],[-87.6208008245575,41.79292423019386],[-87.62079760429913,41.792782931485306],[-87.62078283726746,41.792268670900256],[-87.62076937702957,41.79174245329556],[-87.62075932788562,41.79133865187902],[-87.6207538904696,41.791091819450294],[-87.62074436937094,41.79065962313203],[-87.62071882786661,41.78976416923256],[-87.62070497270967,41.789269108383216],[-87.62069636529036,41.78896154574749],[-87.62067479210947,41.78806534807013],[-87.62065847869295,41.78744476189969],[-87.62116392704466,41.78743774448796],[-87.62145651571414,41.7874330191426],[-87.62194615741217,41.787425109983424],[-87.62227842931337,41.787419303333095],[-87.62269638093736,41.78741199773504],[-87.62310092349621,41.787404914253266],[-87.6236855057383,41.78739467593229],[-87.62389933738196,41.78739093617636],[-87.62453200086897,41.78737986859644],[-87.62471420061328,41.78737678342935],[-87.62472204937201,41.78737665072021],[-87.62488664550153,41.7873738719044],[-87.62504786728677,41.78737114010666],[-87.62551327612259,41.787362299028466],[-87.62551927382938,41.787577479528046],[-87.62553513455858,41.78817234639796],[-87.62555771437226,41.78898978873147],[-87.62556199709995,41.78918748601113],[-87.62556734529264,41.789434367443924],[-87.62557776880107,41.78982016841443],[-87.62558139426062,41.78999275168084],[-87.62558532586105,41.79017990843321],[-87.62560310052498,41.790787547470906],[-87.62560648128333,41.79099605216207],[-87.62560661927479,41.79100454273143],[-87.62560673703997,41.79101180510874],[-87.62561068176089,41.7912550830778],[-87.62562265062365,41.791667183963824],[-87.6256249421218,41.79175386258179],[-87.62562899385222,41.79189727639921],[-87.62563833576613,41.792274810243576],[-87.62564763249429,41.792649791600404],[-87.62565335396688,41.79284480876685],[-87.6256553667246,41.79291342771325],[-87.62566571341623,41.793282981814194],[-87.62567297110323,41.79360001871897],[-87.62568072494882,41.7938984249785],[-87.62568709037443,41.794143364032166],[-87.62569132895354,41.794300282185255],[-87.62569704515262,41.794511900253745],[-87.62570104497442,41.794643186420295],[-87.62537020693962,41.79464012987038],[-87.62495642260087,41.7946480350366],[-87.62464189139217,41.794654246140816],[-87.62455631683561,41.79465594050549],[-87.62429427452798,41.794661129250166],[-87.62408850027556,41.79466459177756],[-87.62386949667679,41.79466827630057],[-87.62327977461742,41.79467812938441],[-87.62269140938102,41.79468797081918],[-87.62246558565197,41.794693951896676],[-87.622216843939,41.79470053902954],[-87.62166075712966,41.79470968282602],[-87.62115286699947,41.79471801541952],[-87.62084610148699,41.79472287237178]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"885045.307638","perimeter":"0.0","tract_cent":"1181708.69726083","census_t_1":"17031381100","tract_numa":"4","tract_comm":"38","objectid":"370","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1874335.1371297","census_tra":"381100","tract_ce_3":"41.81040795","tract_crea":"","tract_ce_2":"-87.60903034","shape_len":"3993.77949506"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61104938822795,41.809468576990994],[-87.61145344679595,41.80946172383786],[-87.61146220980109,41.80976085767885],[-87.61146669777692,41.80993616271845],[-87.61146821550084,41.80999429599679],[-87.61147300725922,41.810177863205105],[-87.61147785004272,41.81037018468975],[-87.61148244478619,41.81055268065518],[-87.611487263199,41.81072793286131],[-87.6114902276632,41.81084288170335],[-87.6114921208413,41.81091602851258],[-87.6114957589847,41.811068989783365],[-87.61149869290207,41.81127964526443],[-87.61099491049536,41.81128779825373],[-87.61088165428873,41.811289576154884],[-87.61072906927498,41.811291971541],[-87.6105012362913,41.81129556011033],[-87.61025758917185,41.81129957009412],[-87.60986663886843,41.811305994985574],[-87.6097215362081,41.81130837907724],[-87.6096436471924,41.81130963347589],[-87.60946310499081,41.81131254122735],[-87.60925112065564,41.81131595276174],[-87.60902592446793,41.811319939223786],[-87.60883213172342,41.81132336919],[-87.60875956299422,41.81132465352634],[-87.60849917793223,41.81132641366441],[-87.60844165170812,41.811327196936794],[-87.60823609457644,41.81132999401976],[-87.60785190641238,41.81133522530303],[-87.60765478550084,41.81133790310908],[-87.60743290142058,41.81134092107937],[-87.60724826956431,41.81134475753079],[-87.60714429697813,41.81134691809389],[-87.60694845522876,41.81135007067299],[-87.60660495088327,41.81135402319239],[-87.606598238989,41.81099140177077],[-87.60659114670048,41.81069722560556],[-87.60658567762151,41.810480118915926],[-87.60658000377458,41.81025192405412],[-87.60657645010201,41.81006844737664],[-87.60657534794964,41.810011551045406],[-87.60657181350413,41.80981800244545],[-87.60656518017987,41.8095327576212],[-87.6068653319898,41.80952805902294],[-87.60694891672638,41.809526750314376],[-87.607224357011,41.80951995622911],[-87.60744012565893,41.80951846671213],[-87.60780108120515,41.809514641387686],[-87.60794717770042,41.80951309284104],[-87.60809718883542,41.80951150268692],[-87.60837134494626,41.809507717268545],[-87.60862242568945,41.8095042246998],[-87.60898527180882,41.809498590871165],[-87.609255898716,41.80949438838086],[-87.60951567050287,41.80949108585642],[-87.60975046091916,41.80948795469832],[-87.60993051616842,41.80948552119765],[-87.6102103703229,41.80948092615278],[-87.61049832499297,41.80947619753356],[-87.61074823649626,41.80947228131838],[-87.61104938822795,41.809468576990994]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1482398.41963","perimeter":"0.0","tract_cent":"1172601.98600249","census_t_1":"17031081900","tract_numa":"13","tract_comm":"8","objectid":"375","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906174.67821462","census_tra":"081900","tract_ce_3":"41.8979839","tract_crea":"","tract_ce_2":"-87.64149153","shape_len":"5267.20958163"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64252414236847,41.895488967985976],[-87.6428205101123,41.89548594834037],[-87.64288083684495,41.89548782013543],[-87.64292450874431,41.895494613993854],[-87.64293854358299,41.89550037263206],[-87.64295281245657,41.89550622762615],[-87.64296793388846,41.89552432072696],[-87.64296811478924,41.89552484870793],[-87.64297701477213,41.89555080231723],[-87.6429833254238,41.895653721680176],[-87.6429873474785,41.89576458556807],[-87.64299279862358,41.895913246179056],[-87.64299723797284,41.89603648907584],[-87.64300080940087,41.896134562106326],[-87.64300549324568,41.89626238934232],[-87.64300500061309,41.89632395825798],[-87.64300459340973,41.896332711020925],[-87.64299973496094,41.896348447450244],[-87.64298534751882,41.89637813976086],[-87.64295912517576,41.89641827161739],[-87.64292899499145,41.89647628007558],[-87.64292820233327,41.89671697389429],[-87.64293719630422,41.89687427268438],[-87.64294637377864,41.897058905161074],[-87.64296047886943,41.897355586955406],[-87.64296745389733,41.89750316585491],[-87.64297097832427,41.89757774078802],[-87.64298144250441,41.89779986750572],[-87.64299862078192,41.898169262250995],[-87.64301006771255,41.89841601064085],[-87.6430111983167,41.89844063322659],[-87.64302399051869,41.89871605679287],[-87.64303994248056,41.89905952123707],[-87.6430465710224,41.899279648712],[-87.6430538698471,41.89945261751679],[-87.64306529925554,41.89972350402874],[-87.643068736546,41.89981884210818],[-87.64307330319463,41.8999455058243],[-87.64307959578537,41.9001184304144],[-87.64308497391906,41.90026709047154],[-87.64309182320565,41.90041309059989],[-87.64293210737615,41.90041584202616],[-87.64253657601873,41.90042224483591],[-87.64246849849943,41.900423405803046],[-87.64213883102384,41.90042902785392],[-87.64205841423428,41.90043039915592],[-87.64190234325937,41.90043328964222],[-87.64183970172128,41.900434454702335],[-87.64170677704266,41.90043689868389],[-87.64151293531252,41.90044044752952],[-87.64143835609467,41.90044181295186],[-87.64133164017908,41.90044370091149],[-87.64116876086362,41.90044658230236],[-87.64109363002241,41.90044780120116],[-87.64096526403233,41.90044988349622],[-87.64069710067852,41.90045460878096],[-87.64066849417206,41.90045511268295],[-87.64064618114729,41.90045550580419],[-87.64047361810849,41.90045830666346],[-87.64031401315715,41.90046192641083],[-87.64020588094021,41.90046451196557],[-87.64004387377851,41.90046839153529],[-87.64004217124696,41.90036536243784],[-87.64003284719396,41.90014069058521],[-87.64002374706627,41.899915663324755],[-87.64001011845232,41.89957282617446],[-87.64000059725825,41.89932904444494],[-87.63999574497706,41.89919474825902],[-87.63998886574865,41.89900436688486],[-87.6399840271446,41.89890538029275],[-87.63997442941756,41.89870902750465],[-87.63996928358605,41.89859050037423],[-87.63996166464823,41.89840178822131],[-87.63995430833008,41.898219361945785],[-87.63995017261757,41.8981141498952],[-87.63994474531302,41.89797608264677],[-87.63993419880245,41.897715069912856],[-87.639924763128,41.89749058909809],[-87.63991647798305,41.89728878288083],[-87.63991070318367,41.897146925919174],[-87.639903017904,41.896957582141155],[-87.63989648312555,41.89679091269092],[-87.63988951022569,41.896515285372665],[-87.64003983492825,41.89651306571267],[-87.6400435283885,41.89636518165641],[-87.64004498005438,41.89629548682822],[-87.64004066440779,41.89606963759322],[-87.64003909665617,41.895998908890334],[-87.64003488813319,41.89580903777551],[-87.64003052942968,41.89563132189099],[-87.6400284003574,41.895517439696604],[-87.64017631897754,41.89551499566765],[-87.64036704428334,41.89551271647089],[-87.64061962727568,41.895509986849916],[-87.64093686011208,41.895506740904956],[-87.64134858047109,41.895501758345155],[-87.64150252553361,41.895499866760126],[-87.64169623650288,41.895497486164],[-87.6418929826427,41.89549546078326],[-87.64206368438371,41.895493716267254],[-87.64227835669996,41.8954914957213],[-87.64252414236847,41.895488967985976]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1744860.05529","perimeter":"0.0","tract_cent":"1172631.4386934","census_t_1":"17031071600","tract_numa":"8","tract_comm":"7","objectid":"376","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912912.91372393","census_tra":"071600","tract_ce_3":"41.91647332","tract_crea":"","tract_ce_2":"-87.64118366","shape_len":"5284.64246353"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63870418877022,41.91471075738222],[-87.63876676172993,41.91469023696093],[-87.63882495724192,41.91468145315872],[-87.6389137296497,41.914672853974274],[-87.63900396882669,41.91466997377841],[-87.63908019493724,41.91466917617762],[-87.63917331294796,41.914667598650546],[-87.6392726811505,41.91466559230877],[-87.63933802775567,41.914663627242305],[-87.63995189057535,41.914707371276734],[-87.63999417640298,41.91468430342819],[-87.64009567686338,41.914675421238734],[-87.64035183386613,41.9146719455219],[-87.64039916761682,41.914671302255165],[-87.64052674565305,41.91466956851942],[-87.6407023482589,41.91466718169637],[-87.64074044918188,41.91466666371469],[-87.64113537228161,41.91466129512702],[-87.64168623138292,41.914653804201414],[-87.64192640376945,41.91465053741278],[-87.64233746769409,41.91464362714264],[-87.64290965245449,41.91463400621651],[-87.64293746459532,41.91463361416904],[-87.64354980563685,41.914624982583206],[-87.64355895755968,41.91488428500117],[-87.64356743559335,41.91515810004655],[-87.64357371905403,41.91535456957488],[-87.64358351303215,41.91566450625515],[-87.64360841057058,41.91646244645622],[-87.64361197519598,41.91657669383079],[-87.64362793422134,41.917025937238634],[-87.64364652886391,41.91763304432705],[-87.64366706334974,41.918253160202994],[-87.64306056104752,41.918261306055086],[-87.64295787700526,41.918262684590474],[-87.64245547492938,41.918269563699965],[-87.64185064380668,41.91827784164503],[-87.64164706930517,41.91828060753835],[-87.6412456534649,41.91828598125126],[-87.6406378573598,41.9182941152874],[-87.6405664550826,41.918295070625774],[-87.64002962718897,41.91830326653208],[-87.6396325198146,41.918309327740104],[-87.63942165235541,41.918312811814666],[-87.63908403521256,41.91831838952119],[-87.63881550730929,41.91832237537314],[-87.63879611530159,41.91769187021518],[-87.63877323724667,41.91690460550575],[-87.6387619789366,41.91651021350323],[-87.63875489114541,41.916261906507316],[-87.63873456383153,41.91566979899119],[-87.63872402433375,41.915325334774145],[-87.63871997278665,41.91519248968344],[-87.63871074078756,41.91488508041212],[-87.63870418877022,41.91471075738222]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3480213.55293","perimeter":"0.0","tract_cent":"1171335.28453018","census_t_1":"17031071800","tract_numa":"12","tract_comm":"7","objectid":"377","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912214.59825536","census_tra":"071800","tract_ce_3":"41.91458571","tract_crea":"","tract_ce_2":"-87.64596621","shape_len":"7920.54929075"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6477669119213,41.91092664966091],[-87.64827157386192,41.91091961991864],[-87.64828084110829,41.911312070107016],[-87.6482838430862,41.91137878980403],[-87.64828415123327,41.91138563575037],[-87.64828598691625,41.91142643418229],[-87.64828790605773,41.911469082447915],[-87.64828834173036,41.91148564811737],[-87.64829161358503,41.91161000345026],[-87.64829890349982,41.91188709416285],[-87.64831948172258,41.912402089166626],[-87.64833169117709,41.91278497971998],[-87.6483328259423,41.91282055388832],[-87.6483400346249,41.91304661155929],[-87.6483516802626,41.91341775560288],[-87.64836123565443,41.91382716227543],[-87.64837090562553,41.914241495491204],[-87.6483672299908,41.91441688461509],[-87.64837625134015,41.91475176166614],[-87.64839173912769,41.91520347159516],[-87.64839855025586,41.91538345122029],[-87.64841217476985,41.91574911845896],[-87.64842759691565,41.91600065685448],[-87.6484284012069,41.9160137815275],[-87.64843964340552,41.91619714017786],[-87.64844721947043,41.91660881941141],[-87.64845492853449,41.91705617435535],[-87.64847358573999,41.917342124277916],[-87.64850888668123,41.91817970914153],[-87.64791118058595,41.91818474374148],[-87.64749795220932,41.91819129217855],[-87.64731152244677,41.91819449543601],[-87.64728640343733,41.91819492713414],[-87.64671272516256,41.918204781800235],[-87.64656407418639,41.918207335161526],[-87.64611764941921,41.91821424126958],[-87.64565545942027,41.91822138080653],[-87.64550401431565,41.91822398082489],[-87.64488967630457,41.918234525999914],[-87.64434129656115,41.91824393624831],[-87.64427093465986,41.918244917970895],[-87.64426015639292,41.91824506843683],[-87.64400674005851,41.918248596746125],[-87.6439829387047,41.91824891653236],[-87.64366706334974,41.918253160202994],[-87.64364652886391,41.91763304432705],[-87.64362793422134,41.917025937238634],[-87.64361197519598,41.91657669383079],[-87.64360841057058,41.91646244645622],[-87.64358351303215,41.91566450625515],[-87.64357371905403,41.91535456957488],[-87.64356743559335,41.91515810004655],[-87.64355895755968,41.91488428500117],[-87.64354980563685,41.914624982583206],[-87.64354133430467,41.914384949268275],[-87.6435358272097,41.91422421421416],[-87.64352544971841,41.91389824738318],[-87.64351282237932,41.91350141132426],[-87.64350491034025,41.91326036540733],[-87.64349952542706,41.91309853336335],[-87.64349013407968,41.912809948781195],[-87.64347860057201,41.912455544714845],[-87.64346989039598,41.912165811615665],[-87.64345982338648,41.91187585081138],[-87.64344998924554,41.9116359186841],[-87.64343057887629,41.91101775996966],[-87.64362431838394,41.911004283918935],[-87.64399618689582,41.91099737866812],[-87.64435615669537,41.91098675977597],[-87.64498484260493,41.910968210894396],[-87.64540637092897,41.910962033993655],[-87.64584458737768,41.91095561051156],[-87.64657447666889,41.910944908233425],[-87.64690187280455,41.91093989634497],[-87.64732442267263,41.91093342652247],[-87.6474941433222,41.91093082730477],[-87.64758900129024,41.91092937463026],[-87.6477669119213,41.91092664966091]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7091989.24225","perimeter":"0.0","tract_cent":"1156580.72700599","census_t_1":"17031291400","tract_numa":"22","tract_comm":"29","objectid":"378","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893228.94893207","census_tra":"291400","tract_ce_3":"41.862799","tract_crea":"","tract_ce_2":"-87.70068662","shape_len":"10645.770076"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69643463090718,41.85921650201153],[-87.7016171003958,41.85910464238426],[-87.70212599721856,41.8591083756225],[-87.70294815103776,41.85911440190362],[-87.70372562788691,41.859105064762225],[-87.70486586292273,41.85909136132893],[-87.70520377592374,41.85908729796625],[-87.70545649432086,41.85908385159423],[-87.70546187028043,41.8592042424724],[-87.70546290017715,41.859339128356844],[-87.70548459699096,41.859789277727074],[-87.70548895158792,41.86009841465678],[-87.70549221626916,41.86022186918535],[-87.70549833060251,41.86045307854169],[-87.70551125432328,41.86082505114769],[-87.70551138646522,41.86091102943263],[-87.70551997101445,41.86112296041457],[-87.7055222930803,41.86130480782088],[-87.70552352545339,41.861401329783384],[-87.70553410621781,41.86167441368983],[-87.70553989698125,41.86184812932405],[-87.70554225678225,41.86192854920512],[-87.70554286323251,41.86212276325408],[-87.7055481463398,41.86226461611022],[-87.70555155645447,41.86235618230825],[-87.70555695743997,41.86250963138169],[-87.70556342071752,41.86269326922982],[-87.70556455741493,41.8627984902112],[-87.70557112922482,41.862962292339496],[-87.70558250266976,41.86324576476446],[-87.70558565601559,41.86338269263539],[-87.705590052518,41.86357357990878],[-87.70559422467349,41.86375505287925],[-87.70559859046723,41.863943003344716],[-87.70560336755375,41.86414895836583],[-87.7056090413795,41.86439459993439],[-87.70561154147532,41.86447746814679],[-87.70561444153012,41.86457360619345],[-87.70562157208865,41.86480998424054],[-87.70562804259532,41.86502673368115],[-87.70563589396815,41.86528997778504],[-87.70564377324243,41.865554127907416],[-87.70564817314475,41.865701079338464],[-87.70565270186059,41.86585362974853],[-87.70565473399714,41.86592181856075],[-87.70565706911083,41.86600016935508],[-87.7056646758728,41.86623964710959],[-87.70566919977607,41.86640530705485],[-87.70527911092195,41.86641270498387],[-87.70497395416432,41.86641619498513],[-87.70453158501469,41.86642126561565],[-87.70444598023596,41.86642165007378],[-87.70404974063958,41.86642342888166],[-87.70377595001743,41.86642560566357],[-87.703395754264,41.8664288173159],[-87.70319930117341,41.866430327427146],[-87.7027922309314,41.86643220136266],[-87.7025409310454,41.866435761035206],[-87.7022663524282,41.8664396587697],[-87.70201524203624,41.8664426475282],[-87.7017347576998,41.866445984630566],[-87.70142926490222,41.866450012214614],[-87.70100857525468,41.8664531303648],[-87.70078783815805,41.86645568239918],[-87.700363856052,41.86646058330246],[-87.70005061357499,41.86646492125957],[-87.69957376920436,41.86647012159867],[-87.69943398689713,41.86647164571858],[-87.6991067021467,41.86647406466869],[-87.69886429811613,41.86647648566631],[-87.69851871300742,41.866480640763214],[-87.6983470703064,41.866481529705574],[-87.69811117632676,41.86648275074198],[-87.697877441515,41.86648466848082],[-87.6976356180146,41.866487775885815],[-87.69727524784484,41.86649457895224],[-87.69712871455651,41.866495702556044],[-87.69695860963407,41.86649700683547],[-87.69668453518516,41.86650179961993],[-87.69624899836197,41.866506381977125],[-87.69590748902417,41.86651066598562],[-87.69590254433375,41.86626535304479],[-87.69589821227474,41.86614707911245],[-87.6958912157619,41.86598658376688],[-87.69588583084031,41.86585603717029],[-87.69587886992255,41.86563634296916],[-87.69587655145465,41.865563173780146],[-87.69587100263544,41.865353042897844],[-87.69586728556654,41.865209827089856],[-87.69586216741418,41.865015478320785],[-87.69585814433161,41.86484393982741],[-87.69585371572096,41.86465409517586],[-87.69585298578444,41.864625094235045],[-87.69584897754496,41.86446581302467],[-87.69584380032914,41.86427006433233],[-87.69583710722608,41.8640568806531],[-87.69583038126272,41.86384331286207],[-87.69582411810762,41.8636422891508],[-87.69581934244194,41.86348369932127],[-87.69581395600325,41.86330529285034],[-87.69580810127454,41.86310377714651],[-87.69580333003624,41.86293739391605],[-87.6957984172527,41.86276678374186],[-87.69579291796659,41.86257295418112],[-87.6957872962262,41.86237478746148],[-87.69578248889768,41.86222679052085],[-87.69577521669856,41.86200172119643],[-87.69577077786278,41.86185358907867],[-87.69576365529682,41.8616171593509],[-87.69575906735962,41.86146068577842],[-87.69575486173568,41.86131724240451],[-87.69575068079759,41.86117464137613],[-87.69574514691863,41.86098590518189],[-87.69574029087933,41.86082435130849],[-87.6957386881197,41.860771213611315],[-87.69573636179442,41.86069512991479],[-87.69573294143126,41.86058860634165],[-87.69572815820587,41.86044189928776],[-87.69572353626589,41.860301093276654],[-87.6957183026353,41.860122387056244],[-87.69571076270805,41.8598649600029],[-87.69570577924621,41.859694075191314],[-87.69570126444704,41.85953883441673],[-87.69569534457976,41.85933657754058],[-87.69569178453469,41.85922132670341],[-87.69643463090718,41.85921650201153]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1226463.22434","perimeter":"0.0","tract_cent":"1161440.64789829","census_t_1":"17031281200","tract_numa":"6","tract_comm":"28","objectid":"637","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899051.66150893","census_tra":"281200","tract_ce_3":"41.8786774","tract_crea":"","tract_ce_2":"-87.68268435","shape_len":"5029.65990835"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68271671196142,41.87613404995557],[-87.68327060428341,41.87611676938671],[-87.68344029724092,41.876120178499086],[-87.68355206880229,41.876122423755874],[-87.68382782868936,41.876120179882264],[-87.68383579670825,41.8763469714677],[-87.68384357280806,41.87665245025007],[-87.68384423780896,41.87667645547789],[-87.68385166740283,41.87694453888788],[-87.68385404292466,41.87702880292497],[-87.68385988072004,41.87723585979257],[-87.6838702324899,41.877575029400845],[-87.6838738596475,41.87769387143863],[-87.6838814013847,41.87797171425209],[-87.68388529114172,41.878096320685756],[-87.68388830523013,41.87819288473967],[-87.68389444376676,41.87837362840485],[-87.68389945239025,41.87856797851187],[-87.68390089477646,41.8786239355538],[-87.68390628029208,41.87883288992136],[-87.68390961901169,41.878985488928386],[-87.6839112852047,41.87905923653735],[-87.68391216078018,41.87909798970468],[-87.6839149441173,41.87922119495593],[-87.68391747100156,41.87932682569623],[-87.68391783032331,41.879341820919905],[-87.68392258074793,41.879540394026755],[-87.68392951752415,41.8798232544759],[-87.68393114720405,41.879889695036994],[-87.68393285428445,41.879959299053375],[-87.68393721348285,41.880137075948824],[-87.68394379492409,41.88035385373401],[-87.68395174228782,41.88073831211984],[-87.68395961843365,41.88094176071659],[-87.68395991783964,41.8811591755631],[-87.68395997484052,41.881200549232936],[-87.68341503212835,41.88120932576921],[-87.68152786393249,41.881241253762944],[-87.6815341531005,41.881098794502385],[-87.68153009136567,41.88094923749886],[-87.68152376485672,41.88071901425114],[-87.68151756152442,41.8804928254603],[-87.68151436619094,41.88038473946491],[-87.68151171571219,41.880296716175565],[-87.68150617117527,41.880134088122745],[-87.68150364513416,41.879993751695814],[-87.68150250954004,41.87993064707091],[-87.68150131352002,41.879864202354604],[-87.68149990486602,41.879785944645626],[-87.6814945948301,41.879593021703165],[-87.68149102233909,41.879456365395114],[-87.68148742930681,41.87931891313564],[-87.68148222202595,41.879112488792565],[-87.68148080707006,41.87905638835953],[-87.68147675166732,41.87889538782885],[-87.68147036345357,41.87866096819349],[-87.68146468936646,41.878452754671876],[-87.68145861028364,41.87826325735276],[-87.68145723625537,41.87820389148957],[-87.68145353859079,41.87804415531889],[-87.6814480048674,41.87784349199535],[-87.68144200245558,41.87760801604995],[-87.68143863266522,41.87747581942317],[-87.68142913596273,41.87714565998468],[-87.6814269952704,41.87706898837435],[-87.68142202912261,41.87689114555979],[-87.68141167583609,41.8765116396479],[-87.68140763917971,41.87635604531945],[-87.68140224426207,41.87615294610582],[-87.68163104145472,41.87614951883509],[-87.68183057202148,41.87614576618978],[-87.68218444055852,41.876141077460424],[-87.68244646318455,41.876137622895186],[-87.68258309361045,41.876135816498646],[-87.68271671196142,41.87613404995557]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4037625.79673","perimeter":"0.0","tract_cent":"1163561.68353906","census_t_1":"17031283000","tract_numa":"18","tract_comm":"28","objectid":"379","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895158.97368544","census_tra":"283000","tract_ce_3":"41.86795114","tract_crea":"","tract_ce_2":"-87.67500596","shape_len":"11108.5329558"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66646123488206,41.86926239429717],[-87.66643395913863,41.86847458001609],[-87.66640440672472,41.867620981208894],[-87.66639868010269,41.86745556730162],[-87.66638355148599,41.86686149035225],[-87.668903008766,41.86685865106854],[-87.66940222848692,41.86685106034613],[-87.66945723590244,41.866850223827505],[-87.66949650587694,41.86684962672532],[-87.66973676591327,41.866845972397755],[-87.669809544489,41.86684473701858],[-87.66997117665908,41.86684278927265],[-87.67012643443788,41.8668411820979],[-87.67027747193144,41.866839618405166],[-87.67045944998478,41.86683701904537],[-87.67068365404127,41.86683386721182],[-87.67098618557563,41.86682897130128],[-87.67123522216878,41.86682442482292],[-87.67135019597096,41.86682323111434],[-87.67154794291356,41.866821177839725],[-87.67182664034442,41.86681696564685],[-87.67213948757683,41.866812126115086],[-87.67236435626634,41.8668085903566],[-87.67266200333269,41.86680382684873],[-87.67294484166415,41.86680034926848],[-87.67321908505406,41.866797260669976],[-87.67350115269257,41.8667937498471],[-87.67372744348849,41.86679046739565],[-87.67393887712127,41.86678739996602],[-87.67410532642903,41.86678467822543],[-87.67425198335677,41.866782336625555],[-87.67439217348262,41.866780506584995],[-87.67456221594429,41.86677824387848],[-87.67497684131587,41.8667724984872],[-87.67515459589744,41.86677000468782],[-87.6754566376842,41.86676630166306],[-87.67568098925672,41.866763003704285],[-87.67600396805861,41.86675823910286],[-87.67624969343437,41.86675457059541],[-87.67669494406023,41.86674792176265],[-87.67693868358585,41.86674432055872],[-87.67703966078342,41.866742784568316],[-87.67731087675058,41.86673772047776],[-87.67768183839317,41.866733033136235],[-87.67795697761309,41.86672845644009],[-87.67809440144907,41.86672649248141],[-87.67831656339004,41.86672331793501],[-87.67851017977561,41.866720634981434],[-87.67858908789637,41.86671981208413],[-87.67869198223947,41.866718738646455],[-87.67869199398983,41.86671873843901],[-87.6788929194809,41.86671664206029],[-87.67891641937523,41.866716307526104],[-87.67899592272481,41.86671493312757],[-87.6791061869155,41.86671302726394],[-87.679411095913,41.86670889109006],[-87.67969133677386,41.86670447649885],[-87.68002732809691,41.866698045761055],[-87.68028238517823,41.866694124230044],[-87.68065272589178,41.86668842924276],[-87.68094944981966,41.86668407781199],[-87.6811423324227,41.86668186786819],[-87.68141062176971,41.866678793127655],[-87.68153630748631,41.8666770062238],[-87.6817306238185,41.86667424250356],[-87.6821210148803,41.86666869056733],[-87.68261833165974,41.866661547789484],[-87.68296215825943,41.866657211047595],[-87.68331658097698,41.86665062807731],[-87.68358954951869,41.86664694190474],[-87.68359283741724,41.86677639592585],[-87.68360030792965,41.86707051256611],[-87.6836066967739,41.867269863763596],[-87.6836130329801,41.86755810098675],[-87.68361603348738,41.867678453420886],[-87.68362028559261,41.86781689755457],[-87.6836233681052,41.86791493967783],[-87.68362806052329,41.86806922035617],[-87.6836349641613,41.86829620932131],[-87.68364038966615,41.8684565592072],[-87.68364670054297,41.86868176076523],[-87.6836496874111,41.86883276666344],[-87.68365384052241,41.8690116747466],[-87.6834253916109,41.86901470328177],[-87.6832351742288,41.86901820986008],[-87.68295619237962,41.869020664352746],[-87.68269436200072,41.869026096802166],[-87.6824334667782,41.86902985666816],[-87.68219137251633,41.86903334493043],[-87.6819289777665,41.86903649470601],[-87.68181592467388,41.86903747855627],[-87.68161397587886,41.869039235590755],[-87.68147995268906,41.86903796096395],[-87.6812346770819,41.86903562807901],[-87.68118787520224,41.8690364915846],[-87.68086733345459,41.869042406718485],[-87.680548977324,41.86904828041664],[-87.68034299051088,41.869050045743364],[-87.68015954849723,41.86905160961466],[-87.67990735643164,41.86905516954986],[-87.67971905801333,41.869057720459175],[-87.67944182045913,41.869061877776446],[-87.67918687061463,41.86906580462245],[-87.6788924126269,41.86907008151725],[-87.67874682062492,41.8690719416888],[-87.67847146194664,41.86907542130946],[-87.67816536631301,41.869079603086156],[-87.67796083751628,41.86908238783016],[-87.67773397911492,41.86908586801761],[-87.6775268701257,41.869089680074865],[-87.67729894730493,41.86909312588208],[-87.67707982062895,41.869094481808006],[-87.67687464638777,41.869095750767656],[-87.67667472735332,41.86909652882452],[-87.67631592990318,41.86910626631633],[-87.67613270569947,41.86911123857445],[-87.67596572280878,41.86911507463022],[-87.67574252098127,41.86912020162381],[-87.67546620125174,41.86912789468125],[-87.67513407652915,41.86913545935544],[-87.67480557772724,41.869140299609256],[-87.67447762253052,41.86914582810463],[-87.67416598510829,41.86914974788684],[-87.67392135723773,41.869153145992605],[-87.67370022896507,41.86915636104402],[-87.67337338266317,41.86916111256411],[-87.67314466054971,41.869163694814176],[-87.67284833013183,41.86916789110943],[-87.67246724184815,41.869174068764515],[-87.67216287976322,41.869180961323686],[-87.67188833834304,41.869187036900634],[-87.67161919341552,41.86919319779983],[-87.67141710508827,41.86919278652512],[-87.67122903449834,41.86919240356998],[-87.67106805696511,41.86919438429467],[-87.6706346864552,41.86920058367489],[-87.67038326252245,41.86920431922194],[-87.67019683867457,41.86920655413895],[-87.66996455324329,41.86920933834968],[-87.66976449427428,41.86921295758783],[-87.66971228353233,41.869213196796316],[-87.66956220639011,41.86921536490627],[-87.66953832176037,41.86921570984544],[-87.66949881416761,41.86921628061343],[-87.66946825858119,41.86921672226946],[-87.66927230251345,41.86921955289205],[-87.6689673516919,41.8692242499763],[-87.66874771293504,41.8692276323294],[-87.66774278605756,41.869242580822636],[-87.66745434875563,41.869246869864575],[-87.66671061054943,41.86925830720339],[-87.66654890946643,41.869260957417836],[-87.66646123488206,41.86926239429717]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2217242.98659","perimeter":"0.0","tract_cent":"1157155.74176349","census_t_1":"17031271800","tract_numa":"10","tract_comm":"27","objectid":"380","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896402.7228234","census_tra":"271800","tract_ce_3":"41.87149651","tract_crea":"","tract_ce_2":"-87.69848964","shape_len":"5994.35979813"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69597989266745,41.86933747943563],[-87.6959790123305,41.86923250278863],[-87.69630613422407,41.86924192343892],[-87.69665283782739,41.86923756168384],[-87.69697618559324,41.86923372809027],[-87.69713774619882,41.869232125913555],[-87.69724812004958,41.86923117388564],[-87.69739822275923,41.86922986381036],[-87.69755992884312,41.8692283990578],[-87.69775989879045,41.86922621279685],[-87.69799108701676,41.86922293654024],[-87.69826003190053,41.869218249228396],[-87.6984258978343,41.8692176256932],[-87.69870018411375,41.869216593683426],[-87.69889163395159,41.869214632794524],[-87.69910721586085,41.86921156994325],[-87.69926874655438,41.86920930625692],[-87.69946894320579,41.86920645937634],[-87.69966942829733,41.869204107978064],[-87.69986139568414,41.869201819017604],[-87.70005431586992,41.86919967220276],[-87.7002391622325,41.869197178688715],[-87.7004771861579,41.869193194160644],[-87.70060798464509,41.86919108827207],[-87.7008690101115,41.869188535917615],[-87.70087943653863,41.86932312756909],[-87.70088209619172,41.86946674894361],[-87.70088771718481,41.86964375343717],[-87.70089557225096,41.86988002521865],[-87.70089743837583,41.870099237846844],[-87.70089892368713,41.870273761519435],[-87.70090388094673,41.87042271937127],[-87.70090865283848,41.87055051774218],[-87.70091691666202,41.870768951081416],[-87.70092400489756,41.87100839231968],[-87.70092730091494,41.87111972362662],[-87.70093376998304,41.87129407410698],[-87.70093908381237,41.87143290760697],[-87.70094469051485,41.87161652889828],[-87.70094813921058,41.871743442069295],[-87.70095366339814,41.871916665202654],[-87.70095750706987,41.8720371834179],[-87.70096175973333,41.87216448520146],[-87.70096875649376,41.87237102861853],[-87.70097403127272,41.87252125051764],[-87.7009780077122,41.872654231368365],[-87.70098525853236,41.87282763247739],[-87.7009887638097,41.87291145433538],[-87.70099388802791,41.8730956217713],[-87.70099845247873,41.873269046220074],[-87.70100402407763,41.873486541187575],[-87.70101301980348,41.8737472637704],[-87.70066839994988,41.87375014408783],[-87.70038396993048,41.87375195225698],[-87.70013029991601,41.8737546428298],[-87.69989850941828,41.873757810276366],[-87.69962250518196,41.873761556565306],[-87.69930707122501,41.873764864974355],[-87.6990834388717,41.87376725253963],[-87.69883704013128,41.873769843200016],[-87.69855461185813,41.87377264857151],[-87.69820154794108,41.873776154837046],[-87.69800878286914,41.873779781271715],[-87.69760892391011,41.873784237045165],[-87.6972927605744,41.87378698703321],[-87.69720294588473,41.873787404233134],[-87.69708702380373,41.87378796048304],[-87.69674828266058,41.87378951884245],[-87.69664863576651,41.873789976607654],[-87.69637195632228,41.87379143361244],[-87.69610096237321,41.87379364707757],[-87.69609341087599,41.87360001370124],[-87.69609132809299,41.87346962281964],[-87.69608648451985,41.87333831183664],[-87.69608464592156,41.87328846522662],[-87.69608036397248,41.87315029590656],[-87.69607635681994,41.87299555283546],[-87.696071967152,41.87288216596196],[-87.69606799995414,41.87277969860775],[-87.69606508642102,41.87264793097219],[-87.69606227825791,41.87248707486152],[-87.69606132644873,41.872428536908735],[-87.69605983945058,41.87233708802875],[-87.69605496085276,41.87212962304172],[-87.69604916117247,41.871972527777565],[-87.69604243285194,41.87179030922659],[-87.69604057429649,41.8716632675341],[-87.69603710372014,41.87150257237482],[-87.69603354219875,41.871347337766196],[-87.69602855969897,41.87115773724207],[-87.6960256190457,41.87106164441119],[-87.69601930144431,41.87085524192426],[-87.69601670341189,41.870739776848566],[-87.69601099737321,41.870567543401094],[-87.69600567718501,41.8703713273302],[-87.69600224179443,41.87015413614465],[-87.69600044515343,41.870040533634906],[-87.69599553304573,41.86984755802767],[-87.69598989235548,41.86966879359577],[-87.69598513947047,41.86951893105925],[-87.69597989266745,41.86933747943563]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2473060.7605","perimeter":"0.0","tract_cent":"1162437.16480862","census_t_1":"17031281300","tract_numa":"13","tract_comm":"28","objectid":"381","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899079.94538458","census_tra":"281300","tract_ce_3":"41.87873423","tract_crea":"","tract_ce_2":"-87.67902455","shape_len":"6374.64437593"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67664187104467,41.88131386344491],[-87.67664090922734,41.88124547903544],[-87.67663916468724,41.88112170359363],[-87.67663391572232,41.880895547753234],[-87.67662782107264,41.88063722450925],[-87.67662175711625,41.88039742508778],[-87.67661638433061,41.8801833706346],[-87.67661183662756,41.88001314677352],[-87.67660618969559,41.87980180726718],[-87.67660067049084,41.87960213180377],[-87.67659553285866,41.87941532903004],[-87.67658733972021,41.87910372789645],[-87.67657996949994,41.87874572514565],[-87.67657935625517,41.878715961382795],[-87.67657740795207,41.87862131489847],[-87.67656965803627,41.8783489589839],[-87.6765615139105,41.87806131534678],[-87.67655419451329,41.87780430220767],[-87.67654570674439,41.87747854365025],[-87.67654146254571,41.87731564364363],[-87.6765365579317,41.87711328224467],[-87.67654049201143,41.87690833691086],[-87.67654279960766,41.87676186218112],[-87.67653930309993,41.876583356327224],[-87.67653461209089,41.87640679205204],[-87.67652777193261,41.876207135533406],[-87.67676168619266,41.87620777276791],[-87.6768850332994,41.87620810879709],[-87.67722904126803,41.87620543688664],[-87.67757282892194,41.876202762687555],[-87.67773256917005,41.87620143073928],[-87.67804360254097,41.87619883625406],[-87.67834215902076,41.87619554490096],[-87.6786404965809,41.87619211431117],[-87.67885231595083,41.87618956203848],[-87.67895159783666,41.87618829299559],[-87.67905067259916,41.876187026528775],[-87.67923097157625,41.87618472152783],[-87.67950445735389,41.87618061887532],[-87.67961815574485,41.87617891294405],[-87.67994589159267,41.87617317620499],[-87.68037094968005,41.87616568730132],[-87.68067487439515,41.87616165201565],[-87.6808830177908,41.876159486743035],[-87.681144775694,41.87615680230813],[-87.68140224426207,41.87615294610582],[-87.68140763917971,41.87635604531945],[-87.68141167583609,41.8765116396479],[-87.68142202912261,41.87689114555979],[-87.6814269952704,41.87706898837435],[-87.68142913596273,41.87714565998468],[-87.68143863266522,41.87747581942317],[-87.68144200245558,41.87760801604995],[-87.6814480048674,41.87784349199535],[-87.68145353859079,41.87804415531889],[-87.68145723625537,41.87820389148957],[-87.68145861028364,41.87826325735276],[-87.68146468936646,41.878452754671876],[-87.68147036345357,41.87866096819349],[-87.68147675166732,41.87889538782885],[-87.68148080707006,41.87905638835953],[-87.68148222202595,41.879112488792565],[-87.68148742930681,41.87931891313564],[-87.68149102233909,41.879456365395114],[-87.6814945948301,41.879593021703165],[-87.68149990486602,41.879785944645626],[-87.68150131352002,41.879864202354604],[-87.68150250954004,41.87993064707091],[-87.68150364513416,41.879993751695814],[-87.68150617117527,41.880134088122745],[-87.68151171571219,41.880296716175565],[-87.68151436619094,41.88038473946491],[-87.68151756152442,41.8804928254603],[-87.68152376485672,41.88071901425114],[-87.68153009136567,41.88094923749886],[-87.6815341531005,41.881098794502385],[-87.68152786393249,41.881241253762944],[-87.67908547325928,41.881279608907136],[-87.67786902887522,41.88130895097711],[-87.67775215081494,41.88131176928607],[-87.677448855981,41.881302977908646],[-87.67730900330824,41.881304621461766],[-87.67700965303817,41.881307795785524],[-87.67664187104467,41.88131386344491]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2583269.21934","perimeter":"0.0","tract_cent":"1158371.69066858","census_t_1":"17031270100","tract_numa":"12","tract_comm":"27","objectid":"382","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901616.00123293","census_tra":"270100","tract_ce_3":"41.88577748","tract_crea":"","tract_ce_2":"-87.6938828","shape_len":"7758.10884995"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69540013130903,41.88818507351828],[-87.6952021216212,41.88815412973773],[-87.69500630480877,41.8881563704909],[-87.69157000947973,41.888195634996485],[-87.6896792351128,41.888181917606886],[-87.68867151040175,41.88817459398872],[-87.6889592847057,41.888058210234654],[-87.68903610447323,41.88804286186342],[-87.68929046328184,41.88802062863016],[-87.68939078857156,41.887979729573594],[-87.68948886206307,41.887939748376816],[-87.68969092926106,41.887886339002286],[-87.68989027937002,41.88782914126187],[-87.69011637699576,41.88775974335071],[-87.69022281898988,41.88772020494021],[-87.69032654605137,41.887676535138695],[-87.69042709826826,41.887629073311324],[-87.69052447450862,41.88757782138098],[-87.69061866863721,41.88752346373555],[-87.69071200370664,41.8874632694136],[-87.69080677304497,41.887397251522835],[-87.69089789847685,41.88732846947332],[-87.69098446623786,41.88725623127834],[-87.69106647202281,41.8871812235337],[-87.69115179319618,41.88709594280751],[-87.69121582333163,41.887028038069985],[-87.69127482872835,41.88695770344059],[-87.69132880865057,41.8868849400206],[-87.69137729611916,41.88681042989532],[-87.69143807997155,41.88669997110636],[-87.69149553015974,41.88658565555153],[-87.69156032542351,41.886457102713415],[-87.69160307963986,41.88631326883842],[-87.69161614969902,41.88624576459571],[-87.6916232630044,41.886177198796545],[-87.69168606945264,41.88609385002515],[-87.69161719299696,41.88600393392982],[-87.6916108753173,41.88594720007565],[-87.6915965539251,41.88581858239943],[-87.69162876625253,41.88571894052443],[-87.69158108379916,41.88566721921785],[-87.69158196258458,41.8855794088645],[-87.6915989792628,41.88549623261161],[-87.69161140481697,41.88543550002273],[-87.69160974186923,41.88532640729452],[-87.69161162540861,41.88518406041933],[-87.69161307587171,41.88513089824081],[-87.69159674344846,41.88460699957566],[-87.69159549128133,41.884548677379414],[-87.69159209657832,41.88442970418312],[-87.69161689024087,41.884428837789834],[-87.69172483088327,41.88442506630856],[-87.6919745337224,41.8844163406362],[-87.69227959522787,41.88440445006699],[-87.69226268130271,41.884164957608654],[-87.69225907144063,41.88403373510737],[-87.69225531401754,41.88389905403056],[-87.6922504889749,41.88368529129366],[-87.69224862795609,41.883602810575326],[-87.69224551561106,41.88346491463857],[-87.69224233692323,41.883315582509134],[-87.69223702422642,41.88313146887375],[-87.69223115529334,41.88294121187783],[-87.6926836062098,41.88293319207492],[-87.69324043918748,41.88292861321814],[-87.69357461025008,41.88292534359831],[-87.69396019572216,41.882921748125774],[-87.69430101296184,41.882918569102735],[-87.69444244461289,41.88291724953939],[-87.69502213397509,41.8829111426505],[-87.69562341382954,41.88290526250007],[-87.69597818875764,41.88290171610322],[-87.6963350553292,41.88289772960711],[-87.69633991533188,41.88312257669659],[-87.6963469660097,41.883322232228615],[-87.69634729477465,41.88333527360924],[-87.69635031090014,41.88345501737918],[-87.69635532509984,41.88365029797891],[-87.69635851959883,41.88377471261379],[-87.69636061528469,41.88383642914235],[-87.69637447796977,41.88424467436046],[-87.69637628047438,41.884297754764944],[-87.6963866199183,41.884602230935855],[-87.69638828280017,41.88473307505304],[-87.69639045409045,41.884903872153956],[-87.69640003201522,41.88527061125333],[-87.69640637762922,41.88551104227113],[-87.69641412029122,41.88580441750095],[-87.69642160584583,41.88607125444785],[-87.69642830810162,41.88632082574233],[-87.69643255877375,41.886537959088464],[-87.69643939354003,41.886887079641376],[-87.69645100714462,41.88717092629969],[-87.69645793155067,41.88742033412281],[-87.69646286815713,41.887659083246135],[-87.69652530139545,41.88827844789567],[-87.69638854046086,41.888274259677054],[-87.6961669202946,41.88826308236476],[-87.69594580431398,41.8882474483025],[-87.6957990294131,41.88823462749157],[-87.69560781292624,41.88821298366987],[-87.69540013130903,41.88818507351828]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3497008.64267","perimeter":"0.0","tract_cent":"1147772.62268297","census_t_1":"17031260600","tract_numa":"18","tract_comm":"26","objectid":"384","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898356.87910904","census_tra":"260600","tract_ce_3":"41.87704421","tract_crea":"","tract_ce_2":"-87.73288879","shape_len":"8176.80182842"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73032733641658,41.87379050963185],[-87.73032255978246,41.873659697341466],[-87.73031527685508,41.87346025213772],[-87.73031257058622,41.87338613516073],[-87.73045611468156,41.87338386709357],[-87.73077707290204,41.873378471354556],[-87.73099057713033,41.873375173110375],[-87.73128185927715,41.873370690567555],[-87.73154132816968,41.87336789652402],[-87.73175497020969,41.87336559566525],[-87.73207144180472,41.87336094119685],[-87.73234772986407,41.873357886787],[-87.73249696601845,41.873355978284266],[-87.73276859272036,41.87334877523543],[-87.73277271238979,41.87350413271081],[-87.7327754591356,41.87360772558248],[-87.73277885448523,41.87373577505178],[-87.73447711954425,41.87347982290293],[-87.7352165328915,41.8732421808911],[-87.73522169634771,41.873520426409435],[-87.7352290888472,41.873918760749625],[-87.73523136389333,41.874041001590214],[-87.73524113362973,41.874230874858405],[-87.7352644008039,41.87468305445836],[-87.73526715190596,41.874739353115956],[-87.73527489902499,41.874861485222475],[-87.73528108123865,41.8750096521253],[-87.73528409828322,41.8751437681641],[-87.73528835044054,41.87533279816559],[-87.73529519050123,41.875449793784576],[-87.73530037511473,41.87559485447237],[-87.73530066545518,41.87560297896848],[-87.73530611202258,41.87575133411792],[-87.73531316936452,41.87594747506563],[-87.73531679774001,41.87605659358811],[-87.7353237231177,41.8762648477854],[-87.73532909977536,41.87640101807829],[-87.73533310201263,41.8765076530704],[-87.73533401178553,41.876531889543884],[-87.73533933260691,41.87668586972771],[-87.73534422785899,41.8767988485837],[-87.73534932100888,41.87696622637894],[-87.73535611752558,41.87718958203111],[-87.73536030932028,41.87730318811702],[-87.73536435322954,41.87741198001506],[-87.73536603388314,41.87745719809841],[-87.73537047007231,41.87757610240356],[-87.73537491462092,41.87770592831748],[-87.73538033762618,41.87786062387769],[-87.73538843154572,41.878091510983076],[-87.73539268012576,41.87821085310321],[-87.7353959449777,41.87830565650268],[-87.73539799734324,41.87836524485876],[-87.73540234345559,41.87848988388336],[-87.73540838687225,41.878637281574576],[-87.73541236677396,41.878751024562945],[-87.73541807128899,41.87891406215791],[-87.73542216908352,41.879025994000635],[-87.73542819672892,41.87919660026394],[-87.73543328295578,41.87934636069113],[-87.73543844448206,41.87949383609525],[-87.73544334951829,41.87964452367622],[-87.73545003413706,41.87984988047792],[-87.73545574474944,41.88000542682021],[-87.73545829977039,41.88009008484557],[-87.73546003723986,41.880147656166265],[-87.73546458678062,41.88028988684691],[-87.73546876795515,41.880420425104845],[-87.73547568846308,41.880610654060774],[-87.73520275520819,41.880613881614764],[-87.73494145625591,41.880616801413055],[-87.73472738467069,41.880619308178225],[-87.73449712030008,41.880621675223466],[-87.73423687950535,41.88062531216645],[-87.73396687540705,41.8806284590334],[-87.73385633317115,41.88062966196916],[-87.73353014232346,41.88063314924188],[-87.73335076645012,41.88063627372747],[-87.73302542683213,41.88063924150863],[-87.73287452443162,41.88064061781005],[-87.73253455937287,41.88064449291408],[-87.73222503138089,41.880648883083715],[-87.73183894274865,41.88065292633312],[-87.73150691441056,41.88065626367165],[-87.73120467120555,41.88065915248726],[-87.7308879016258,41.88066432435808],[-87.73057382275401,41.88066748339875],[-87.73056592919302,41.880453358453686],[-87.7305626195252,41.88030929545807],[-87.73055676640855,41.880154543980225],[-87.73055652416897,41.880148006182075],[-87.73054759877434,41.87990704692386],[-87.73054116415634,41.879702273226656],[-87.7305369419469,41.87956791155713],[-87.73052921174539,41.879351157612476],[-87.73052602097455,41.87925739950009],[-87.73052319790379,41.879174451268256],[-87.73052139101854,41.87897990193652],[-87.73051372939861,41.87881032637107],[-87.73050716518375,41.878665034388945],[-87.7304990837148,41.87849344891638],[-87.73049464290187,41.87836595190862],[-87.73049272181719,41.878310813137844],[-87.73048830560154,41.878175114240776],[-87.73048609591581,41.8780742240131],[-87.73048361963254,41.87798478304178],[-87.73048177525514,41.87791816355095],[-87.73047984724043,41.87784852714059],[-87.73047746063085,41.87776232210731],[-87.73046822363459,41.87759649346563],[-87.73046218634506,41.877473452128186],[-87.73045894785132,41.87740744825748],[-87.73045530201449,41.87726011803521],[-87.73044838319107,41.87702666537834],[-87.73044364900049,41.87686691526636],[-87.73043661619118,41.87666583454743],[-87.73043363136291,41.87656960517502],[-87.7304312901706,41.87649412626426],[-87.73042672042608,41.87636306430039],[-87.73041768893539,41.87611625467358],[-87.73041222982425,41.875967075151884],[-87.73040582913632,41.875788610347406],[-87.73040223303745,41.87566057901522],[-87.73040051938297,41.87559955845517],[-87.73039393793236,41.87542861193814],[-87.73038608431328,41.87520534754355],[-87.7303808118821,41.87505546205801],[-87.73037540595568,41.874884466810705],[-87.7303708180108,41.87474989234534],[-87.73036895828676,41.8746953540283],[-87.73036532671699,41.87464423699684],[-87.7303534189849,41.87450479393627],[-87.73034592739535,41.87429963962413],[-87.7303435282401,41.87423393759816],[-87.73033705586523,41.87405668669194],[-87.73033038057117,41.87387387842756],[-87.73032733641658,41.87379050963185]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5223417.12981","perimeter":"0.0","tract_cent":"1144486.20165266","census_t_1":"17031251000","tract_numa":"19","tract_comm":"25","objectid":"385","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906226.01440055","census_tra":"251000","tract_ce_3":"41.8987005","tract_crea":"","tract_ce_2":"-87.74475752","shape_len":"9357.28270559"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74122124801829,41.89887300432329],[-87.74121249648921,41.898776087500075],[-87.74111928179539,41.89877744161428],[-87.74111698722317,41.89867796861615],[-87.74110809255104,41.898348614114745],[-87.74110478027049,41.89801139814204],[-87.74109770419531,41.897932464716284],[-87.74109610621566,41.897856990117475],[-87.74109153542497,41.89765595032563],[-87.74108373306878,41.89735747411395],[-87.74107438360764,41.89692829540168],[-87.7410364632636,41.89665473218568],[-87.74102746608307,41.896589825625306],[-87.74102097048888,41.89650955049133],[-87.7410977643982,41.89643513853406],[-87.74114046325637,41.8962364009247],[-87.74115527188557,41.89617404578605],[-87.7411650338684,41.89611132159056],[-87.74116838104523,41.89604719219358],[-87.74116317634474,41.895914755674525],[-87.74115200406536,41.89578228837867],[-87.74113485680456,41.89565047632669],[-87.74111219723306,41.895518979146225],[-87.74108330092128,41.89531712830813],[-87.74106517233581,41.8951921717805],[-87.74107090755072,41.89509220089025],[-87.74112342380772,41.8950926405023],[-87.741164452319,41.89509298380482],[-87.7412261429114,41.895093500042165],[-87.7413363979738,41.8950944224891],[-87.74140393903832,41.89509567433587],[-87.74144523098477,41.89509469617109],[-87.74163134468886,41.89509028755855],[-87.74184369164075,41.895080871058504],[-87.7420747939218,41.89507286797046],[-87.7423930529494,41.8950652031888],[-87.74274691854028,41.89505977883388],[-87.74290381081781,41.89505755925941],[-87.74291049646641,41.89505746437997],[-87.74320069757248,41.895053357549735],[-87.74352438745625,41.895046982636764],[-87.74381624906223,41.895041233763855],[-87.74415641826438,41.89503537800067],[-87.74425979018162,41.895033740366344],[-87.74441290135081,41.89503128747807],[-87.74463269662859,41.89502665155713],[-87.74483497322991,41.895021870553435],[-87.74505867116838,41.89501621100479],[-87.74514753405619,41.89501466289827],[-87.74553939035225,41.89500783285845],[-87.74580721008056,41.89500415345095],[-87.74603566843619,41.895001014164],[-87.7464010776593,41.894998417501576],[-87.74645140035015,41.894998059709515],[-87.746480344713,41.8949978538975],[-87.74668523702968,41.894996156553375],[-87.74692491555169,41.89499416996432],[-87.74719864411574,41.89499194503989],[-87.74764269193984,41.89498921614305],[-87.74790517626191,41.894987535918425],[-87.74825778636537,41.894984802509306],[-87.74826448709422,41.895154048860746],[-87.74826818999667,41.89535395864658],[-87.74827059870897,41.89548748985285],[-87.74827242182896,41.89558855807291],[-87.74827805871165,41.895865401833525],[-87.74827941357952,41.89593193630938],[-87.74828332743976,41.896124152561505],[-87.74828925476467,41.89637566018693],[-87.74829521579038,41.896628549973215],[-87.74829940160609,41.89681218497021],[-87.7483025860348,41.89695188668043],[-87.74830957707331,41.89726619013741],[-87.74831378502638,41.89745537490663],[-87.7483204252932,41.89772388695628],[-87.74832752161791,41.89801085194978],[-87.74833017788053,41.898181267782846],[-87.74833349858767,41.89839430780778],[-87.74834106832078,41.89865533167172],[-87.74835034597987,41.89897521227798],[-87.74835289847833,41.8991228761495],[-87.74835787018094,41.89941051466253],[-87.74836051092845,41.899571251163216],[-87.74836438780105,41.89980720042057],[-87.74837053572136,41.90003519553],[-87.74837662752388,41.90026113271284],[-87.74838143355818,41.90049119259536],[-87.74838703215293,41.90075918300313],[-87.74839066569712,41.900950447333656],[-87.74839526984763,41.901192814899574],[-87.74839990904216,41.90140985302518],[-87.74840659631545,41.90172270298499],[-87.74840931697422,41.901865362697635],[-87.74841380111427,41.90210048427205],[-87.74841687235686,41.902215318898065],[-87.7484199517954,41.9023266000478],[-87.7478349191728,41.90233342899056],[-87.74703567356158,41.902340767099226],[-87.74653443218237,41.9023458632445],[-87.74632032822542,41.90234803460431],[-87.74597835712346,41.902352331796095],[-87.74570099995424,41.90235581648561],[-87.74540206766417,41.90236309537098],[-87.74452109772375,41.90238146844373],[-87.74383694603068,41.90239256318962],[-87.74361995833611,41.90239608134108],[-87.74294059114703,41.90240551584191],[-87.74283610749153,41.90240691494078],[-87.74244731191314,41.90241246685994],[-87.74240614272266,41.902413047546055],[-87.74234145940964,41.90241395945303],[-87.74223549653269,41.90241558969002],[-87.74173989563373,41.902423211228886],[-87.74171340184931,41.90242368148578],[-87.74163980473362,41.90242498807193],[-87.74141878999814,41.90242891106102],[-87.741337696763,41.902429962842014],[-87.74120720061966,41.902431655551716],[-87.74120719741866,41.90243152490943],[-87.7412012719734,41.90217833830042],[-87.74117695781236,41.90118205403087],[-87.74116367849331,41.90063142245581],[-87.74133957276128,41.900627526954196],[-87.7413447972047,41.90006189714077],[-87.7413416793477,41.89985263302704],[-87.74133073770538,41.89949616840703],[-87.74132534601235,41.89943370941563],[-87.74131244380709,41.89933930935879],[-87.7412940282056,41.89924522417853],[-87.74126963730416,41.89915179452076],[-87.74124887342234,41.89906352873424],[-87.74123230437094,41.89896842314714],[-87.74122124801829,41.89887300432329]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5120926.00061","perimeter":"0.0","tract_cent":"1158245.90734785","census_t_1":"17031242600","tract_numa":"23","tract_comm":"24","objectid":"386","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1907002.24487903","census_tra":"242600","tract_ce_3":"41.90056038","tract_crea":"","tract_ce_2":"-87.69419737","shape_len":"11323.1457469"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69184202491947,41.89852731309809],[-87.69183926965046,41.898421544649565],[-87.69165595594785,41.898423309696014],[-87.69130697365782,41.898426682900165],[-87.69090597816249,41.898430203147754],[-87.69047435035084,41.89843355051258],[-87.69017356957903,41.89843592775475],[-87.68992333555973,41.89843787393248],[-87.68972298551667,41.89843955031588],[-87.68937265870684,41.89844350587905],[-87.68937028495792,41.89833406031497],[-87.68936582221812,41.89812382665325],[-87.68936298581923,41.89799210131195],[-87.68935913631381,41.89780949128585],[-87.68935135806099,41.89753475215398],[-87.6896033547818,41.89753212856953],[-87.6899567022233,41.89752889476241],[-87.69025391824394,41.897526278580045],[-87.69058194113965,41.897524692738806],[-87.69076420872948,41.8975238113107],[-87.69120723532293,41.89751863306314],[-87.69131494298831,41.89751736921187],[-87.69158496998243,41.897515558053676],[-87.69181773238068,41.89751253397098],[-87.69181234986874,41.897220395892155],[-87.69180969075441,41.897115413906356],[-87.69180827507415,41.89705846304362],[-87.69180466229062,41.896913162858816],[-87.69180119749204,41.89677862091347],[-87.69179628864961,41.89660482828037],[-87.69179105608436,41.896419343374966],[-87.69178712314343,41.896254474960045],[-87.69178458825502,41.8961604277969],[-87.69177975867979,41.895962721188845],[-87.69177259280457,41.89570221551961],[-87.6921831483682,41.8956889036569],[-87.69277411170054,41.895683557295044],[-87.6931341785032,41.89567947301908],[-87.69331428397832,41.895677568071335],[-87.6937952377297,41.89567253631201],[-87.69423711525569,41.89566842639944],[-87.6945869703492,41.8956652178927],[-87.6945871525492,41.895665215887504],[-87.69475004544934,41.895663621835745],[-87.69483203500229,41.895662800849415],[-87.69546751074766,41.895657865666685],[-87.69595249193038,41.89565409669424],[-87.6960438806747,41.89565378776976],[-87.6962229431797,41.8956531825713],[-87.69670263372144,41.8956535191163],[-87.69671023286644,41.89589035290342],[-87.69671289900786,41.89601026351099],[-87.69671673683885,41.89618221139207],[-87.69672192594983,41.89640682871262],[-87.69672656618059,41.89658682165105],[-87.6967312055161,41.89676686973799],[-87.69673704875485,41.89700699533797],[-87.69674113814415,41.897201776651734],[-87.69674820250425,41.8974591979819],[-87.6967565113757,41.89776196102299],[-87.69675797315962,41.89782928530168],[-87.69676322990217,41.89807300310669],[-87.69676728215536,41.89826040190211],[-87.69677020615299,41.89838761356317],[-87.69677379134457,41.898544411776065],[-87.69677977592019,41.89881315939111],[-87.69678182047124,41.898904692440695],[-87.69678719934063,41.89913608897328],[-87.6967907260668,41.899283135191695],[-87.6967996936838,41.8996570420361],[-87.6968026193796,41.89976929757944],[-87.69680587405136,41.899896511039614],[-87.69680839569887,41.89999397289754],[-87.69681481386411,41.90019944210155],[-87.69681937701496,41.90034551571653],[-87.69682225097996,41.90049786399387],[-87.69682601875382,41.900697583306815],[-87.69682843470203,41.90077240460739],[-87.6968330502276,41.900943835524124],[-87.69683606872856,41.90110719254504],[-87.69684150788041,41.90140156599368],[-87.69684480888219,41.90155023960674],[-87.69684896348282,41.901708687430414],[-87.69685276567968,41.90187325294437],[-87.69685461141286,41.90194110070743],[-87.69685619368848,41.90199360672617],[-87.69686266289257,41.90220824161586],[-87.69686828078933,41.90243055536663],[-87.69687046851584,41.902517121534515],[-87.6968752541999,41.90279719738458],[-87.69687939800441,41.90292541488111],[-87.69688829236001,41.90320061749165],[-87.69689306942449,41.90341129153109],[-87.69690157604008,41.90376427486546],[-87.69690373305544,41.90386925384189],[-87.6969073762283,41.904045783279535],[-87.69691989561962,41.90455326183294],[-87.69692497082617,41.90475205493517],[-87.69693317221588,41.90507328569246],[-87.69694358434518,41.905519254167935],[-87.69694675144575,41.90566394751577],[-87.69616518236406,41.90567036284557],[-87.69545532765956,41.905677105113696],[-87.69465517334658,41.90568440966566],[-87.69448554420681,41.905685957287176],[-87.69423522792029,41.905688240848086],[-87.69335028562489,41.90569747244376],[-87.69202172946804,41.90571195955694],[-87.69201751441996,41.905565722916656],[-87.69201004713445,41.90525563756284],[-87.69200026380376,41.904885166085734],[-87.69199781623827,41.90479563162554],[-87.69199461672554,41.904678603411824],[-87.6919873205613,41.904355840323525],[-87.69198583236378,41.90428999808059],[-87.69197861380376,41.903994540546755],[-87.6919760700391,41.90391187024029],[-87.69197327032548,41.903820896092796],[-87.69197293134307,41.903809876916945],[-87.69196550812646,41.90351285427498],[-87.691964458317,41.90347016100153],[-87.69195480330104,41.90307758612683],[-87.69195209632201,41.902968358649396],[-87.69194005022939,41.90248224407136],[-87.69193632988095,41.90233212097866],[-87.69193295636408,41.90212598254586],[-87.69193150447859,41.90204099421689],[-87.69192994522794,41.9019497034224],[-87.69192685801816,41.901869115395705],[-87.69191915224812,41.9016444017083],[-87.6919181354205,41.9015925082773],[-87.69191562671534,41.901464469861864],[-87.69191187655132,41.90129230294506],[-87.69190819892776,41.90115084032205],[-87.69190272626584,41.9009403309008],[-87.69189915004038,41.90080584331368],[-87.69189620903386,41.9006965239253],[-87.69189208192996,41.9005431254615],[-87.6918881425665,41.90037886086298],[-87.69188526791652,41.900241406544595],[-87.69188155904979,41.90006406007338],[-87.69187582766088,41.89985497205348],[-87.69187405798847,41.89978504585827],[-87.69187140595514,41.899680221753286],[-87.69186806263808,41.89950775518889],[-87.69186322417863,41.899330240200285],[-87.69185745028821,41.899118398347554],[-87.6918504527755,41.898874417918755],[-87.69184581621343,41.89871369548135],[-87.69184202491947,41.89852731309809]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4013180.53345","perimeter":"0.0","tract_cent":"1169533.16657448","census_t_1":"17031241800","tract_numa":"34","tract_comm":"24","objectid":"388","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906253.95046498","census_tra":"241800","tract_ce_3":"41.89826878","tract_crea":"","tract_ce_2":"-87.65276063","shape_len":"11849.0830559"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65257643045229,41.900117082788846],[-87.65255325641559,41.90011669842245],[-87.65252594501044,41.90012542782431],[-87.65247720532393,41.900135374844716],[-87.65219490498323,41.9000950344195],[-87.65211561075354,41.900080184256865],[-87.65202654098191,41.90005545167964],[-87.65189956534469,41.90001320541837],[-87.65168366463924,41.89990852124387],[-87.65160100747136,41.899866570103576],[-87.65135543331007,41.89974193226299],[-87.65133971763105,41.899731456663105],[-87.6512882485271,41.899697148802986],[-87.65123298151288,41.89966030875719],[-87.65103258068567,41.89951904997286],[-87.65086286616122,41.89941219080989],[-87.64973511574857,41.89855612194984],[-87.6496737327955,41.89851069013521],[-87.64939841218181,41.89830691521854],[-87.64878990149195,41.898087779585985],[-87.64790035797597,41.897968380111244],[-87.64782898071522,41.89796338790526],[-87.6463150392892,41.89785749017261],[-87.64540826457933,41.8977633222983],[-87.64488578641719,41.89769401962756],[-87.64478012676062,41.89754197210084],[-87.64461370483289,41.89739875572134],[-87.64443161889739,41.8972420584715],[-87.64423178153238,41.89663645327958],[-87.64422160387812,41.89645465928546],[-87.64442734549995,41.896451169553046],[-87.64452050120508,41.896450274204504],[-87.64462423961984,41.89644927704753],[-87.64475546872242,41.896450064017536],[-87.64477195777485,41.89645032754457],[-87.64503230842679,41.896446290122626],[-87.64516467730134,41.896443515949585],[-87.6453147217043,41.89643996937219],[-87.64546291674247,41.89643761898461],[-87.64559399275088,41.896435522631144],[-87.64572842688531,41.89643196434852],[-87.6459111270361,41.896428173447646],[-87.64604249478087,41.89642627042506],[-87.64607714409574,41.896425771159855],[-87.64617437671022,41.89642437032905],[-87.64633983380038,41.89642212210415],[-87.64652196798697,41.896419726405796],[-87.64664850996616,41.89641570820741],[-87.64679342845174,41.89640791581907],[-87.64681201693891,41.89640691635816],[-87.64708179758088,41.89639346304939],[-87.64732538031613,41.89638934217357],[-87.64742822628858,41.89638760197067],[-87.64774503316107,41.896399010853905],[-87.64773612472854,41.89617468192649],[-87.64784838733358,41.89621205134538],[-87.64824433314534,41.896404239370156],[-87.64852636020959,41.89639692762532],[-87.6487691563551,41.89638229405854],[-87.64892509854505,41.89637671974415],[-87.6492110422871,41.89636648619262],[-87.64946061531855,41.89636045355451],[-87.64963905995901,41.896356137415346],[-87.64980264264454,41.896353937255306],[-87.65005204011122,41.89635058230789],[-87.65037303930032,41.896345823378375],[-87.6505032958923,41.89634489931257],[-87.65064862067486,41.89634373400012],[-87.65075007452143,41.89634236344536],[-87.6507894285041,41.896341831996416],[-87.65081344359088,41.8963415073911],[-87.65082183140404,41.89634139396238],[-87.65095917286826,41.89633953838187],[-87.6510664465064,41.896337555588275],[-87.65117691568655,41.89633553624377],[-87.65142559145926,41.896330920458226],[-87.651841678952,41.89632326732193],[-87.65215424047469,41.896317517278526],[-87.65235622298634,41.89631372045681],[-87.65263457980096,41.8963089051199],[-87.65276006726052,41.89630673425227],[-87.65292329455879,41.896303909811984],[-87.65314122191646,41.896299767281185],[-87.65360557153684,41.89629251298792],[-87.65394626024592,41.8962871893735],[-87.65416321418853,41.89628474057061],[-87.65451719629154,41.896279997451266],[-87.65461182074404,41.89627872910646],[-87.65472036973465,41.89627727431155],[-87.65487373807979,41.89627521869307],[-87.65495184960268,41.89627417165956],[-87.65523592939086,41.89626980479018],[-87.65545334373004,41.896266462195705],[-87.65573469617475,41.89626213617003],[-87.65593775437186,41.896257379186196],[-87.65619500258627,41.89625134946709],[-87.6563112397023,41.896249178623265],[-87.65650543356294,41.89624555086528],[-87.65691049827232,41.89623821642058],[-87.65751044535473,41.89622794915963],[-87.65752171641347,41.89654549874015],[-87.65752535997193,41.89665308905534],[-87.6575290550954,41.896762199704675],[-87.6575330504409,41.896891888405946],[-87.65753629122199,41.896999536442834],[-87.65753957942563,41.897108749246044],[-87.6575411241445,41.897161790709895],[-87.65754305804583,41.897228226063774],[-87.65755555668453,41.8976256853711],[-87.65756184610844,41.897825702022566],[-87.65756920276793,41.898092979041756],[-87.65757893137277,41.89840703178888],[-87.65758525212465,41.8986123103947],[-87.65759327673514,41.89887198977382],[-87.65759996076932,41.89908811023141],[-87.65760494793736,41.899249171328584],[-87.65758398741231,41.89939123424108],[-87.65758304638807,41.8995087788566],[-87.65758539887997,41.89957760577777],[-87.65758713764247,41.89962848453078],[-87.65758912113155,41.899686706102116],[-87.65759521649653,41.899865606569115],[-87.65737702876051,41.89986893273045],[-87.65715176830396,41.899874165237016],[-87.6570213055316,41.899876690020655],[-87.65667139449782,41.89988342529952],[-87.65664689940786,41.89988389676249],[-87.65666163826505,41.90034498795794],[-87.65666542318978,41.90047357767316],[-87.65667054510804,41.90064542193671],[-87.65667285526033,41.90072293521337],[-87.65667833982471,41.90090625497753],[-87.65668382441359,41.90108957473583],[-87.65669704077276,41.90133383461367],[-87.65670367600374,41.90135073099556],[-87.65672458437497,41.90140397489175],[-87.65674706630297,41.9014386847134],[-87.65679928564262,41.90151319648086],[-87.65683196498237,41.90155968424497],[-87.65686844376886,41.90161162796621],[-87.65691548963487,41.90167864488443],[-87.65693793378696,41.90171291536732],[-87.65700288395875,41.90180687632274],[-87.65711310476064,41.90196852967848],[-87.65733416145434,41.90229288249144],[-87.65749330368065,41.9025285884703],[-87.65777717870662,41.90292616951881],[-87.65786831641903,41.90303414241007],[-87.65801852222363,41.903194465851826],[-87.65808697705968,41.903269346918236],[-87.65833444907702,41.903477123254824],[-87.65835817896684,41.903497047020636],[-87.65742450943165,41.90350864672302],[-87.65739154273518,41.90346576117724],[-87.65734027241238,41.903399064278986],[-87.6564743881478,41.9026220106779],[-87.65618471792537,41.901922032500615],[-87.65616612420435,41.901708366536546],[-87.65616058787442,41.90169222523228],[-87.65602297926667,41.90142131320057],[-87.65591657728713,41.90121183476312],[-87.6558877953218,41.90116855331612],[-87.65538096865174,41.900812955186844],[-87.65516171977063,41.900741359296205],[-87.65450732628031,41.90052766247817],[-87.65445494641351,41.90051371397522],[-87.65343196121364,41.90028353991109],[-87.65290715513771,41.90017713840496],[-87.65257643045229,41.900117082788846]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10737324.3206","perimeter":"0.0","tract_cent":"1147611.69027952","census_t_1":"17031231400","tract_numa":"13","tract_comm":"23","objectid":"389","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903651.51800926","census_tra":"231400","tract_ce_3":"41.89157639","tract_crea":"","tract_ce_2":"-87.73334378","shape_len":"13485.3522964"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7259677431911,41.8915773017556],[-87.72595751997524,41.89106692817451],[-87.72594050471255,41.8903353322943],[-87.7259293410833,41.89000179299242],[-87.72592643869774,41.88986020181337],[-87.7259247696542,41.88977877153573],[-87.7259191390613,41.88959002007893],[-87.72591023756448,41.889292963431515],[-87.72590039129045,41.88897158776418],[-87.7258943275107,41.88875879440557],[-87.72588584549305,41.88860743188701],[-87.72587845028133,41.88842284148495],[-87.72587808256387,41.88833423336269],[-87.72587705740078,41.88825698952142],[-87.72587677559127,41.88823575910108],[-87.72587656288043,41.88821975628387],[-87.72587603173596,41.8881797212527],[-87.72587545921324,41.888136533413764],[-87.72587538096914,41.88813064302694],[-87.72587527524506,41.88812269129237],[-87.72587433678443,41.88805195725601],[-87.72587387720138,41.88801731641577],[-87.72587356201102,41.88799356221024],[-87.72632125446397,41.88798803925308],[-87.72680653324578,41.88798339968247],[-87.72697457666825,41.88798085706531],[-87.72722004960644,41.887994501761455],[-87.72732511231028,41.88800123078545],[-87.72749260273437,41.88800863238051],[-87.72766013458902,41.888011574277094],[-87.72782690033108,41.88800230823173],[-87.72815608073088,41.887984017578844],[-87.72832114432043,41.88797484557784],[-87.72839602309003,41.88797068487272],[-87.72845982735943,41.8879671394999],[-87.72861871261058,41.887958310489886],[-87.72993041565837,41.88794291319167],[-87.7307894411509,41.88793130119416],[-87.73122882452464,41.88792537329741],[-87.73246063629215,41.88791124306863],[-87.73345830675726,41.887898964612134],[-87.73378841380652,41.887894856985724],[-87.73490958877825,41.8878808088806],[-87.73570985197044,41.88786919687485],[-87.73678511463832,41.887855577852314],[-87.73796272569595,41.88784453788377],[-87.7381694968366,41.88787450934237],[-87.73851549233584,41.88783916932722],[-87.73931983240067,41.88783338480013],[-87.74029588318837,41.8878253942255],[-87.74059567509266,41.88782316893229],[-87.74060043105892,41.88795423122095],[-87.7406173871702,41.88845411421765],[-87.74062672561303,41.888735104553966],[-87.74065720044877,41.88960999029405],[-87.74066329226636,41.88979525799845],[-87.74068470772347,41.89040870724138],[-87.74069045474552,41.890581624313256],[-87.74069219240289,41.89064200693632],[-87.74069436023096,41.890705478504984],[-87.74070578981701,41.890909297643375],[-87.74073534183877,41.891337895570096],[-87.7407488685513,41.891463857575715],[-87.74058130990277,41.89146264923025],[-87.74065397798854,41.89199472213425],[-87.74071510825739,41.892483855772795],[-87.74072931580255,41.892585809411955],[-87.7407620622255,41.892817866703425],[-87.74081902165759,41.89326169895625],[-87.74086994306542,41.89366330698356],[-87.74091670320446,41.89401858494259],[-87.74096118739787,41.89437179266456],[-87.74102804834607,41.894887025807314],[-87.74104225444071,41.89498932266397],[-87.74107090755072,41.89509220089025],[-87.74102711346238,41.89509299340182],[-87.74079638134103,41.89509716834715],[-87.74064450641546,41.89509991615271],[-87.74062008709451,41.8951003579003],[-87.74041479069476,41.89510363893512],[-87.74027948618438,41.895105801395],[-87.74007867470394,41.895110322885465],[-87.739954618242,41.89511256337847],[-87.73983211120033,41.89511407079985],[-87.73967605757915,41.89511688656197],[-87.73951868730994,41.89511917389751],[-87.73933581601011,41.895122536854096],[-87.7390886529493,41.89512759703257],[-87.73864568725072,41.89513628090009],[-87.73841296849915,41.89514029696938],[-87.73822128249823,41.89514360480061],[-87.7377976043203,41.89515178161548],[-87.73749754422576,41.895157469905946],[-87.73714251783873,41.8951651772191],[-87.73687815262885,41.89517148828199],[-87.736472978762,41.895176518113395],[-87.73618865280675,41.89518069310067],[-87.73594358802562,41.89518512185329],[-87.73569459322007,41.895189621287436],[-87.73523556930228,41.89519900425515],[-87.73498778021431,41.895204134946695],[-87.73471472741737,41.89520855135613],[-87.73436927031676,41.89521413778854],[-87.73405096292724,41.89521898094918],[-87.73382118199143,41.895222995633304],[-87.73371986462692,41.89522478168875],[-87.73348128879249,41.895230557401675],[-87.73322092156243,41.895237396021564],[-87.73292515641471,41.89524325946168],[-87.73252819626903,41.895249635553306],[-87.73221678013267,41.8952551864132],[-87.73210687366763,41.895257145074766],[-87.73160069860944,41.89526538847969],[-87.73147871245564,41.8952671915842],[-87.73112131144558,41.89527234313053],[-87.73101826410019,41.89527454500812],[-87.73085629056106,41.89527800571356],[-87.73047161454919,41.895286497323845],[-87.72989929569687,41.895297926037706],[-87.72978203324942,41.89530019617996],[-87.72957373809625,41.895304228294634],[-87.72914738372218,41.89531164534135],[-87.72866091636497,41.895321516248735],[-87.72854855112041,41.8953224500483],[-87.72841227371893,41.89532358214635],[-87.72778741687377,41.8953364798783],[-87.7274618625738,41.89534239169611],[-87.72731594167746,41.895345589069926],[-87.72718328366798,41.89534849567332],[-87.72668242342584,41.89535776246525],[-87.72623824691426,41.89536597878414],[-87.72608049209401,41.89536765044182],[-87.72607601604236,41.89523874868128],[-87.72607211345743,41.895091225056575],[-87.72606217465083,41.89467478869641],[-87.72604678896312,41.89410055702295],[-87.72604216096508,41.89394575729033],[-87.72603454481005,41.893690996446296],[-87.72602923653633,41.89353333909261],[-87.72602267798396,41.89333854552154],[-87.72601469655874,41.89306059386781],[-87.72600879809258,41.892902631782576],[-87.7260029488784,41.89274598664093],[-87.72599983514822,41.8926067544616],[-87.72599809852244,41.89252911092119],[-87.72599073056358,41.89232075674819],[-87.72598358564908,41.892118714957135],[-87.7259813624217,41.892025096792686],[-87.72597578796456,41.891790379909004],[-87.7259721557845,41.89169417469861],[-87.7259677431911,41.8915773017556]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3821881.63912","perimeter":"0.0","tract_cent":"1158099.78205533","census_t_1":"17031221400","tract_numa":"26","tract_comm":"22","objectid":"390","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914377.51538152","census_tra":"221400","tract_ce_3":"41.9208017","tract_crea":"","tract_ce_2":"-87.69453234","shape_len":"9442.49749117"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69695549096538,41.9174914173961],[-87.6972005824373,41.91748948404194],[-87.69720413258678,41.91760179592913],[-87.69720692058142,41.91775762871466],[-87.69721508968094,41.918007974842965],[-87.69721942359439,41.91814241119471],[-87.69722202779623,41.91822318883201],[-87.6972258882936,41.9184079239986],[-87.69722959639758,41.91854263102234],[-87.69723261163406,41.91865217017489],[-87.6972391812087,41.91887860544422],[-87.69724036436176,41.91891504602574],[-87.69725341854272,41.919317102281425],[-87.697256460187,41.919425653368414],[-87.69726112304886,41.91959206176917],[-87.69726386542575,41.91968960683734],[-87.6972725964787,41.919994402028536],[-87.69728767590361,41.92052574040074],[-87.6972911589946,41.92064335041059],[-87.69729461011364,41.92075988889431],[-87.6973019135159,41.920986465354524],[-87.69730690441813,41.92118690394898],[-87.69730963613546,41.9212966333009],[-87.69731582984949,41.92153505892982],[-87.69732044429237,41.92168930979795],[-87.69732529220168,41.92185135583504],[-87.69733481134146,41.92218232943831],[-87.69733624505263,41.92223217803341],[-87.69734077415407,41.92233915854899],[-87.69734429778384,41.922422397850134],[-87.69735004447,41.92252558490035],[-87.6973523156291,41.922593489655966],[-87.697354466739,41.922717293648645],[-87.69736157231361,41.922906583946684],[-87.69736870528455,41.92309659721921],[-87.69737693222874,41.92340042867869],[-87.69738208051083,41.923588123596225],[-87.69739043343749,41.923858075782384],[-87.69739538233753,41.924018009261395],[-87.69740128838285,41.924308465081936],[-87.69740271497024,41.92437861375715],[-87.69740526526127,41.924521437408515],[-87.6974126969069,41.92480728586468],[-87.69690960412606,41.92481243312551],[-87.69666474419131,41.92481420409485],[-87.69642429031846,41.92481632828929],[-87.69619088536899,41.92481909592195],[-87.69589140228251,41.92482264664075],[-87.6956060345295,41.92482576400175],[-87.6951835496587,41.92483037772044],[-87.69497003791821,41.92483179981423],[-87.69474561171721,41.924833294179436],[-87.69457303366586,41.92483491409382],[-87.69433441638192,41.92483709873825],[-87.69409579881392,41.92483931032741],[-87.69395023171455,41.924840668044354],[-87.69375232696869,41.92484318931997],[-87.6933401980503,41.924848438459485],[-87.6932076048586,41.92484959285101],[-87.69311455454003,41.924850391290526],[-87.69284305247629,41.92485222509366],[-87.69283649774901,41.9245229912114],[-87.69283273528845,41.92437864233052],[-87.69282380366312,41.924035984952546],[-87.69281330783784,41.923700307823374],[-87.69280411916576,41.923373556152626],[-87.69279711890701,41.923125116038804],[-87.69279321734746,41.9229866417351],[-87.69278671245658,41.92271854939298],[-87.6927802805322,41.92250018283445],[-87.69277824750152,41.92243118135718],[-87.69276000615693,41.92181204922875],[-87.69275892400786,41.92177531363289],[-87.69274367488866,41.92125366045823],[-87.69273662972134,41.92095809530231],[-87.69273212619501,41.92077148987245],[-87.69272999312277,41.920695600078865],[-87.69271227902078,41.92006534175831],[-87.69260709275291,41.920001475706414],[-87.6922745378649,41.9197982480922],[-87.69193536242575,41.91959142436262],[-87.69162532595445,41.9194033806931],[-87.69157793327439,41.91937465460988],[-87.69133204701146,41.91922787248344],[-87.69126966341769,41.91919063218554],[-87.69084575648047,41.91893044078853],[-87.6905140742104,41.91872685975328],[-87.69045121416343,41.91868827715797],[-87.68990774370894,41.91835584332588],[-87.68951363411699,41.91811516076741],[-87.68921341298791,41.91793917104234],[-87.68904031265335,41.9178376990971],[-87.68885780119645,41.91772199326619],[-87.68859598034022,41.917563002792335],[-87.68896878695953,41.91756257244103],[-87.68951254760938,41.91755701202047],[-87.68951319360627,41.91755700548891],[-87.68951386312247,41.91755699854038],[-87.68956981063562,41.91755642611156],[-87.68959957172382,41.91755612177878],[-87.68962832848992,41.91755586916247],[-87.68985653467837,41.91755386396146],[-87.69002288142406,41.91755240198125],[-87.69028927796566,41.917550985287285],[-87.69043281105012,41.91754940647506],[-87.6906265371985,41.917547275291284],[-87.69084649450424,41.91754554247683],[-87.6913177245817,41.91754123723722],[-87.69203139790497,41.91753471303688],[-87.69230593291526,41.91753141011939],[-87.6926109975345,41.91752850851761],[-87.69321468996735,41.91752331353927],[-87.69383362875644,41.91751828262676],[-87.69407151245865,41.917518541379515],[-87.69407965301066,41.9175185502017],[-87.69425627168023,41.91751874217748],[-87.69448527247188,41.9175165038785],[-87.69475220487087,41.9175129118693],[-87.69491661230253,41.91751069765758],[-87.6952136273436,41.91750804021284],[-87.69574727844036,41.9175038147679],[-87.6959752741858,41.91750294716585],[-87.69608748925066,41.91750252004077],[-87.69638216459467,41.917498666569685],[-87.69665806097224,41.9174951739148],[-87.69676907370182,41.91749375949258],[-87.69695549096538,41.9174914173961]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6847167.22672","perimeter":"0.0","tract_cent":"1150421.84141043","census_t_1":"17031210300","tract_numa":"32","tract_comm":"21","objectid":"391","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922303.71473303","census_tra":"210300","tract_ce_3":"41.94270535","tract_crea":"","tract_ce_2":"-87.72253544","shape_len":"10264.9041004"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72684021843506,41.939098346644855],[-87.72718536266312,41.93909513610319],[-87.72719300564317,41.93934905556936],[-87.72720434306721,41.939774195197714],[-87.72720857121361,41.94000486897536],[-87.72721098320383,41.940136467076286],[-87.72722644660792,41.940587808560984],[-87.72723313835067,41.9408010423456],[-87.7272360609068,41.940880557827676],[-87.72724665245936,41.94116781254654],[-87.72725694023678,41.94144702041774],[-87.72726682609586,41.94179441122849],[-87.7272847398162,41.942423889494485],[-87.72729331123581,41.94273381197115],[-87.72730062118775,41.94299809141028],[-87.72730574754988,41.94316869884561],[-87.72730876951663,41.94326929069373],[-87.72732206133767,41.943707283283565],[-87.72732763328139,41.943984480419125],[-87.72733130627165,41.944167208226794],[-87.72734458010494,41.944559811281536],[-87.72735275647486,41.94480164750295],[-87.72736619629083,41.94519902660221],[-87.727373266451,41.94546624069795],[-87.72737718049594,41.94561417496955],[-87.72738241130178,41.94581186830462],[-87.72739496780717,41.94617834250633],[-87.72740107717131,41.94637316973224],[-87.72689218500814,41.946379528391965],[-87.72679185156655,41.946381605944374],[-87.72671056006389,41.9463832889631],[-87.72616811208837,41.94639056425201],[-87.72598352253235,41.9463930393434],[-87.72562448831829,41.94639785270792],[-87.72548174189507,41.94639908304937],[-87.72495409488435,41.94640509782019],[-87.72458983529822,41.94640924854129],[-87.7243616748661,41.94641287994829],[-87.72405065273807,41.946417160661255],[-87.72382543767192,41.9464202597102],[-87.72363812607627,41.946422836776435],[-87.7232124011475,41.94642869319305],[-87.72310145403817,41.94642992846733],[-87.72308060616648,41.94643016068616],[-87.72250636133653,41.94643942994218],[-87.72215347497252,41.946445124647084],[-87.72164864265942,41.94645116279561],[-87.7208816195527,41.94645986185112],[-87.72006134544851,41.94647096233405],[-87.71976774914657,41.946474934019385],[-87.7194339788361,41.94627951927567],[-87.71920086338325,41.946148306465545],[-87.71902749358712,41.94605037091115],[-87.71888824221963,41.94597089417638],[-87.7188035168629,41.94592077039111],[-87.7187466672454,41.94586934132794],[-87.71871293229927,41.94582242672389],[-87.71866192580819,41.94574438254822],[-87.71855219777576,41.94558023970089],[-87.71840340634405,41.94535765523882],[-87.71834498983817,41.94527046042763],[-87.71829914940275,41.945201911306135],[-87.71825747733129,41.94513953154353],[-87.71814337121772,41.944964457120825],[-87.71814882097253,41.94481820525309],[-87.71814807494663,41.94473521611381],[-87.7181826222506,41.944650335956666],[-87.71814033788755,41.944606692030945],[-87.71811343405933,41.94457235327268],[-87.71800585841376,41.94444466462032],[-87.71791877996526,41.944341372061835],[-87.71781400177102,41.944217183376935],[-87.7177326309764,41.94412053483788],[-87.71767398249915,41.944050135509364],[-87.71760535920012,41.94396568220595],[-87.71754008612417,41.94389784934831],[-87.71753987686265,41.94389763170715],[-87.71755291899598,41.9438352314534],[-87.7175455957575,41.943805134755976],[-87.71753777785264,41.94377300495788],[-87.71752997135992,41.94357581845653],[-87.71752607471974,41.943446325341135],[-87.71751967794215,41.943217203687404],[-87.71751461257237,41.94302134909322],[-87.71750999161618,41.9428611714425],[-87.71749997649744,41.9425140292289],[-87.71749106070853,41.94218840701729],[-87.71748490876838,41.941963732534525],[-87.71747246861752,41.941583481700484],[-87.71746407330573,41.94129855927291],[-87.7174561731897,41.94103792582873],[-87.7174523583743,41.940912062872435],[-87.71744948235586,41.940817172094114],[-87.7174400211231,41.94049407208882],[-87.71742780952191,41.94004428384919],[-87.71741778877914,41.93968931985453],[-87.71741759382586,41.93968238416472],[-87.717417341227,41.939673456136326],[-87.71741369287015,41.93954421124211],[-87.71739917233377,41.93921621440377],[-87.71774301753565,41.939211786266256],[-87.7182105430797,41.939203726719775],[-87.71859747321156,41.93919903836949],[-87.7186424468053,41.93919861642415],[-87.71890410599482,41.93919616134079],[-87.71934453757218,41.939192535304045],[-87.7196861064312,41.939188016726206],[-87.71984755375527,41.93918588032682],[-87.7201245736365,41.93918221447794],[-87.72040445472935,41.93917909863217],[-87.72069358127457,41.93917392991258],[-87.72081937743563,41.939171680671436],[-87.72107095582922,41.9391687508466],[-87.72153213278645,41.939163378808416],[-87.72187210326007,41.939160744484376],[-87.72203163097107,41.93915950806697],[-87.72229329059256,41.939155477762306],[-87.72265129797718,41.939149962384846],[-87.72324131475725,41.93914311034929],[-87.72351973683624,41.9391388663743],[-87.72391930157538,41.939132888560394],[-87.72412001139433,41.93913158269272],[-87.72435945295817,41.93912939766843],[-87.72462133053162,41.93912557259748],[-87.72473407084142,41.93912420785613],[-87.72498399509375,41.939121182752146],[-87.72556959463539,41.9391149811264],[-87.72584165502248,41.93911095991821],[-87.7259542136336,41.9391093325907],[-87.72631912857705,41.93910404511359],[-87.72684021843506,41.939098346644855]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3547318.57015","perimeter":"0.0","tract_cent":"1156599.76316818","census_t_1":"17031220400","tract_numa":"24","tract_comm":"22","objectid":"392","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917146.87321131","census_tra":"220400","tract_ce_3":"41.92843156","tract_crea":"","tract_ce_2":"-87.69996859","shape_len":"7985.78560904"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70205443841076,41.9247655051586],[-87.70231833542036,41.92476271672737],[-87.70232664899103,41.92506093548716],[-87.70233503222073,41.92526348540748],[-87.70233684536572,41.92532467596918],[-87.70233885260815,41.92539242272939],[-87.70234212549289,41.925582368590185],[-87.70234190278344,41.92566885136924],[-87.70234178030358,41.925716559336266],[-87.70234155395141,41.925804455643984],[-87.7023466316372,41.925968134625215],[-87.70235627920437,41.926279122947264],[-87.70236017795445,41.926450274273606],[-87.70236473198256,41.926584052846046],[-87.70237180545728,41.92679185701658],[-87.70237926220787,41.92700100795576],[-87.70238315854735,41.92713429827062],[-87.70239561492731,41.92756042576615],[-87.70239871459812,41.92767313192445],[-87.70240162135087,41.92777878930224],[-87.70240513949592,41.92792145343872],[-87.70241336395938,41.92815001351511],[-87.70241748692851,41.92826460425494],[-87.7024205148565,41.928423868518216],[-87.702423489537,41.928580332826684],[-87.70242605658693,41.9286681470203],[-87.70243596698114,41.929007238041066],[-87.70244127608146,41.92917574144822],[-87.70244341338667,41.92924358410109],[-87.70244839778529,41.9294142747845],[-87.70245583674144,41.92966854056859],[-87.70246261669996,41.92990167219691],[-87.7024672616054,41.93006289040436],[-87.70247221075752,41.93023466950263],[-87.70247606206742,41.93036834642855],[-87.70248314087158,41.93063460244708],[-87.70249269294655,41.930992913292094],[-87.70250314665468,41.93136050454216],[-87.70250807524049,41.93153539351565],[-87.70251022802987,41.93164706805246],[-87.70251255007764,41.93176752448158],[-87.70251481609291,41.93183981015815],[-87.70252169266048,41.93205918132172],[-87.70208856071685,41.932065522029816],[-87.70191041903396,41.932066628123366],[-87.70190417063738,41.93206666922753],[-87.70168736443976,41.932068090601604],[-87.70150922275045,41.93206919607258],[-87.70129869307088,41.932070778857195],[-87.70099081523409,41.93207309300176],[-87.70089051574851,41.932073775478145],[-87.70073394727295,41.93207486136211],[-87.70057774581825,41.93207592161295],[-87.70036619435929,41.93207736258969],[-87.70007314393372,41.93207930321533],[-87.69973080606586,41.93208156936206],[-87.69961958938305,41.93208243746345],[-87.69945875565105,41.93208373873555],[-87.69931850369892,41.93208486419308],[-87.6991626684439,41.932086089194044],[-87.69884620967153,41.93208768554174],[-87.69852651813903,41.93208929717234],[-87.69843738860736,41.93209020391445],[-87.69823097569173,41.932092260475834],[-87.69809127280303,41.932093640762886],[-87.6979129769732,41.932095453298636],[-87.69761766565956,41.93209567537293],[-87.69761279251146,41.931896042973854],[-87.6976113113298,41.93175649105225],[-87.69760817056088,41.93157318702808],[-87.69760545850774,41.93146510479362],[-87.69760187056137,41.93132309856405],[-87.69760003824508,41.931248555325304],[-87.69759808237269,41.93117165136973],[-87.69759415513593,41.931071218232574],[-87.69758929665646,41.9309461373633],[-87.69758331892707,41.93078943656924],[-87.6975810473654,41.93068141136872],[-87.69757765466562,41.93055672252341],[-87.69756908219537,41.930276105667616],[-87.69756173528211,41.93003561613111],[-87.69755686455204,41.929852604336936],[-87.69754867782159,41.92955195674866],[-87.69754376200322,41.929387221219514],[-87.69754240143534,41.92934023257435],[-87.69753722939343,41.92921965814048],[-87.69753309092323,41.929123195238844],[-87.69752652559245,41.92882955436099],[-87.69752259778186,41.92871284298946],[-87.69752077060204,41.92865855650936],[-87.69752036796385,41.92864659028583],[-87.69751722114798,41.928589712536144],[-87.69751513713152,41.928465812995],[-87.69751324688237,41.92835341282388],[-87.69751010109852,41.92827792951053],[-87.6975088495733,41.92819202369359],[-87.69750500909414,41.92792845150533],[-87.6974970808089,41.92770917150451],[-87.69749539673502,41.92766253368666],[-87.69749091285635,41.92753836425069],[-87.69748474847349,41.927367200262104],[-87.69747735670019,41.92708280247973],[-87.69746574333682,41.92669805271177],[-87.69746423202604,41.92662980287428],[-87.69745848771896,41.92637035232484],[-87.69745427454475,41.92624694862584],[-87.69744453863665,41.925961797138456],[-87.69743736874041,41.92574389337243],[-87.69743336244282,41.92557746134822],[-87.69742764004387,41.925339615062946],[-87.697426856185,41.92531279195287],[-87.69741765622169,41.924998040872715],[-87.6974126969069,41.92480728586468],[-87.69780741377019,41.92480324570577],[-87.698048720875,41.92480030006741],[-87.69843212562047,41.924797481116855],[-87.69863590163803,41.92479582807809],[-87.6989005348305,41.92479368082359],[-87.69914429429605,41.92479170224656],[-87.6992698212538,41.9247916271106],[-87.69952177931346,41.92478923115242],[-87.6998644071019,41.92478521635683],[-87.70040468912605,41.92477888382355],[-87.70074418052297,41.92477490317491],[-87.7010588185017,41.92477388536915],[-87.7014223642476,41.924771455855335],[-87.70150180596217,41.9247708120768],[-87.70153813248824,41.92477051416276],[-87.7016467313512,41.92476962237346],[-87.70170825040735,41.92476911722569],[-87.70205443841076,41.9247655051586]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8822565.91731","perimeter":"0.0","tract_cent":"1146898.19435386","census_t_1":"17031200200","tract_numa":"32","tract_comm":"20","objectid":"393","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1916866.45621766","census_tra":"200200","tract_ce_3":"41.92785319","tract_crea":"","tract_ce_2":"-87.73562595","shape_len":"12130.6174746"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7416134150219,41.92430360770843],[-87.7416379641654,41.9243033247769],[-87.74164813415895,41.924643910977835],[-87.74167149896438,41.92529681441823],[-87.74168790554747,41.92575827202939],[-87.74170778422118,41.92629144099031],[-87.74173431442138,41.92699958839411],[-87.7417441584298,41.927276462769754],[-87.74177861755068,41.92822031165173],[-87.7417863761402,41.92842565436238],[-87.7417999320419,41.928797052090914],[-87.74181652395248,41.929238614995036],[-87.74182911532989,41.929566271869405],[-87.74183133902417,41.929623912348625],[-87.74185886666774,41.93032383177998],[-87.74186797981281,41.93058046383224],[-87.74186818663573,41.930585922339276],[-87.74188718277283,41.93108755814993],[-87.74189857097006,41.931396342440614],[-87.7419059332393,41.93159445195649],[-87.74183007953017,41.93159540341513],[-87.7416515297489,41.93159764261361],[-87.74130802066578,41.93160194217469],[-87.74108417770378,41.93160545297492],[-87.74067645486217,41.93161081484681],[-87.74045360910988,41.93161374504482],[-87.74015798923045,41.931617631192466],[-87.7398865922898,41.93162100374573],[-87.73924940728521,41.931629802477104],[-87.7388398038503,41.93163545682112],[-87.73841808150401,41.93164051727713],[-87.73820380024007,41.9316430544442],[-87.73802392490543,41.93164518398463],[-87.73776484348468,41.931648250666626],[-87.73757335148065,41.931650517103506],[-87.73734990454638,41.931653649462845],[-87.73693588274679,41.93165945217998],[-87.73681489415927,41.9316611477594],[-87.73640611285974,41.93166687507861],[-87.73557381193103,41.931676052693646],[-87.73535517596395,41.93167846253178],[-87.73527488873897,41.931679347327005],[-87.73485387888806,41.93168675843462],[-87.73434464076867,41.931693821923844],[-87.73420471478046,41.931695762554085],[-87.73405319138409,41.93169786366823],[-87.73385358368589,41.9317008158963],[-87.7336621581434,41.93170364695503],[-87.7334538724403,41.931706449158796],[-87.73337829791011,41.93170746619496],[-87.7333509360423,41.93170785669765],[-87.73326206426898,41.93170912579569],[-87.73312670675463,41.93171105825242],[-87.7328728699666,41.93171447006821],[-87.73276367583226,41.93171593765847],[-87.7327196311234,41.93171651572023],[-87.73257060435965,41.93171847151647],[-87.73227637481332,41.93172233201983],[-87.73209238108146,41.931724746018936],[-87.73146013483256,41.93173397304093],[-87.73138615056241,41.931589377566944],[-87.73135547252873,41.93152987287342],[-87.73098863958451,41.930823712628914],[-87.73098862045131,41.93082367603035],[-87.73091825180968,41.93068819027106],[-87.73051672797581,41.9299108390335],[-87.73051667528011,41.92991073722051],[-87.7303376234905,41.929564126718674],[-87.7300439271673,41.92899624438169],[-87.7297064461156,41.928346833099226],[-87.7295662684948,41.92808100987453],[-87.72938839340534,41.927732512113685],[-87.72900808992593,41.926998145955785],[-87.7287396851406,41.926478416868584],[-87.72863908697637,41.92628407609497],[-87.72830257189621,41.9256326078837],[-87.72786322616936,41.924781296623976],[-87.72770215878165,41.92447304620296],[-87.72772642179628,41.924472801509616],[-87.72778362558337,41.92447222395427],[-87.72799511130818,41.924470088828244],[-87.72842317442363,41.92446576629554],[-87.72895890523209,41.92446131519156],[-87.72922104730903,41.924458043500344],[-87.7297337571407,41.92445164247265],[-87.7301525342791,41.924446104417356],[-87.73044429784711,41.92444244355065],[-87.73085866249683,41.924437243087006],[-87.73121329278608,41.924430376643144],[-87.73166684698676,41.9244256787069],[-87.73202248975186,41.924421993708144],[-87.73255985672324,41.924415421313526],[-87.7328909721388,41.9244114002961],[-87.73328009383705,41.92440667379398],[-87.73344672273707,41.92440443964265],[-87.733509677431,41.92440356518616],[-87.73411821842326,41.924396253005334],[-87.73417897541879,41.92439552313388],[-87.73450157296479,41.92439164566877],[-87.73476121583066,41.924388444066835],[-87.73533982817658,41.924380378830286],[-87.73565831083936,41.92437593826691],[-87.73611078223253,41.92437052641596],[-87.73657005139016,41.92436533691465],[-87.73701560899616,41.924360300491955],[-87.73734916565898,41.92435525405111],[-87.7377865426981,41.92435286234224],[-87.73820925719238,41.92435054939333],[-87.73865074545743,41.92434070728278],[-87.73899596547597,41.92433610422238],[-87.73951799237986,41.924329141865506],[-87.74015740621842,41.92432215601304],[-87.74025384183287,41.92432079988552],[-87.7408509728663,41.924312399945705],[-87.74139414079436,41.92430613693389],[-87.7415604039334,41.92430421925149],[-87.74161340252623,41.92430360791846],[-87.7416134150219,41.92430360770843]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1629989.70948","perimeter":"0.0","tract_cent":"1160366.48837927","census_t_1":"17031311100","tract_numa":"12","tract_comm":"31","objectid":"792","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890664.26023129","census_tra":"311100","tract_ce_3":"41.85568384","tract_crea":"","tract_ce_2":"-87.68686037","shape_len":"6581.23557807"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68770864405113,41.8520108178194],[-87.68786668815609,41.85200935786665],[-87.68788229371957,41.85233829323596],[-87.68788835806568,41.85246611870756],[-87.68789996366537,41.85290903881029],[-87.6879111826441,41.853344753025105],[-87.68793237439765,41.853857500810676],[-87.68792986798414,41.85395065294562],[-87.68795125006606,41.854333940515396],[-87.6879535957597,41.85442005481437],[-87.68796641562888,41.854787857508335],[-87.68797283342025,41.854971073100074],[-87.68797582471713,41.85508429029429],[-87.68797895317017,41.8556922269402],[-87.6879930065681,41.85579412062576],[-87.68799468373533,41.85585553309805],[-87.68800248101631,41.85617528296309],[-87.6880182285915,41.85689093637185],[-87.68803384627775,41.856969765652835],[-87.68796221496133,41.8569856415488],[-87.68802266927064,41.85708820455656],[-87.68802973279986,41.857435393351274],[-87.6880439142979,41.85816990456907],[-87.68804918962729,41.85837541016953],[-87.68805826819961,41.85875039580621],[-87.68807036945641,41.85923551086817],[-87.68807300498922,41.859338427058454],[-87.68790351209387,41.85933929465927],[-87.68742052363582,41.859341765443794],[-87.68583387730081,41.85936589919852],[-87.68583053050972,41.859237668950975],[-87.68581099434908,41.858415235211496],[-87.68581022661873,41.858382938116684],[-87.68580286003504,41.85811609993997],[-87.68582371786809,41.85787518945258],[-87.68583828781328,41.85778045724218],[-87.68584721057825,41.857722439342126],[-87.6858458941528,41.85770981904082],[-87.6858387399121,41.85764124335733],[-87.68583125565927,41.85756950387904],[-87.68582356893045,41.85749582224479],[-87.68581728702122,41.85743560554326],[-87.68580274323382,41.85733518362365],[-87.68578867511226,41.85723804761178],[-87.68577102710029,41.857116187333446],[-87.68577068711954,41.85710131181632],[-87.68576279935282,41.85675647884285],[-87.68575934072267,41.856635025672574],[-87.68575209278062,41.856380510073],[-87.68574758770569,41.856184242528435],[-87.68573959797973,41.85583614353176],[-87.68573742454466,41.85570955869084],[-87.68573742214483,41.85570943271587],[-87.68573437647836,41.85553202505793],[-87.6857333782862,41.85547389384817],[-87.68571794959526,41.85497295228625],[-87.68571212619038,41.85479920542534],[-87.68570844158052,41.85468925212576],[-87.68570681324971,41.85463209513343],[-87.68570187227522,41.85445864303144],[-87.68570040129755,41.85440702895428],[-87.68569785020098,41.85431748807148],[-87.68569022558395,41.85404984692315],[-87.68568802463768,41.85387637210893],[-87.68567652549416,41.853384890618734],[-87.68566559313392,41.85295326787033],[-87.68565484309416,41.852528833881514],[-87.685640263929,41.85203190621063],[-87.68611791196369,41.85203034249391],[-87.68647850803222,41.85202595238684],[-87.68708298441354,41.85201659442836],[-87.68770864405113,41.8520108178194]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9834396.87384","perimeter":"0.0","tract_cent":"1156157.41013942","census_t_1":"17031160600","tract_numa":"36","tract_comm":"16","objectid":"394","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927770.63778987","census_tra":"160600","tract_ce_3":"41.95759286","tract_crea":"","tract_ce_2":"-87.70130625","shape_len":"12691.083442"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70679444193173,41.95392826739586],[-87.70801487299269,41.953919715622874],[-87.70801697886402,41.95398300561976],[-87.70802301246708,41.95416436041394],[-87.70802598763092,41.95428122519113],[-87.70803040627517,41.95442718648049],[-87.70803541148575,41.95459208602652],[-87.70804497738366,41.954926108769875],[-87.7080512704676,41.95515111356218],[-87.70805464239888,41.955285955617946],[-87.70806099735334,41.955540103715364],[-87.70806806467945,41.955737023495644],[-87.70807697606541,41.95598532934723],[-87.70808046551188,41.95610225177154],[-87.70808730727641,41.95632756136791],[-87.7080990854007,41.95665473525196],[-87.70810757589057,41.956887408565386],[-87.70811020770056,41.956978640482376],[-87.70811618343528,41.9571872876905],[-87.70812125408924,41.95736437208299],[-87.7081291182476,41.95755337497215],[-87.70813625901714,41.95772498824129],[-87.70814021091186,41.9578811279209],[-87.70814362248484,41.95800603553475],[-87.70814788183539,41.95814200693175],[-87.7081525577254,41.95828802467925],[-87.70815915506725,41.95849700480291],[-87.70816611633244,41.95870637081543],[-87.70817067453434,41.958841904474525],[-87.7081807820337,41.959124311591275],[-87.7081891379203,41.959364451886465],[-87.70819857821796,41.959635764618426],[-87.70820590999571,41.959938902533075],[-87.70821712098389,41.96025141930884],[-87.70822607597891,41.96056529588806],[-87.70822983609796,41.96068466203632],[-87.70823303347272,41.96075627587242],[-87.70823878512304,41.96092392350432],[-87.7082484167112,41.96118683635321],[-87.70763522083455,41.96119005857096],[-87.70762974109971,41.961190087157895],[-87.70743669105897,41.96119221814496],[-87.70715812015068,41.96119432146789],[-87.70702405658983,41.961194678538405],[-87.70665446626471,41.96119566222414],[-87.70651415970627,41.961195856741135],[-87.70641046623452,41.961196834443584],[-87.70620822609978,41.96119874139269],[-87.70590720774578,41.961202804658996],[-87.7057997114357,41.96120359088596],[-87.70548347017005,41.96120578444919],[-87.70513723882308,41.961208720281924],[-87.70496309343896,41.961210209612865],[-87.70458515129856,41.96121242521389],[-87.70434345225742,41.961213841643236],[-87.70411283262771,41.96121526724476],[-87.70392524320292,41.961215446423736],[-87.70335715040805,41.961218693820385],[-87.70317554892603,41.961219731187335],[-87.70281472320701,41.961222415255094],[-87.70275772966852,41.96122285277363],[-87.70259799928046,41.9612240787802],[-87.70242377543894,41.961226057785446],[-87.70213537699368,41.961227308422465],[-87.70196331656871,41.961228054398774],[-87.70161705616448,41.96123018363365],[-87.70152156646729,41.961230680935],[-87.70134290370957,41.96123161110449],[-87.70114096815165,41.96123247513827],[-87.70091068033395,41.96123372242535],[-87.70069381483341,41.96123489667383],[-87.7003191652002,41.961237496720145],[-87.70016053746409,41.96123878990368],[-87.69968752869087,41.96124181710822],[-87.69943977548947,41.96124340192555],[-87.69920907951325,41.961245091674705],[-87.69907225721948,41.96124614704553],[-87.69896385844609,41.96124697512299],[-87.69848305326236,41.96124916312935],[-87.69814151638398,41.961250715800084],[-87.69775138566706,41.961253496233375],[-87.69744832538635,41.96125576971978],[-87.697242082179,41.961257210878074],[-87.6967275956302,41.96126080396412],[-87.69641008812332,41.96126282994582],[-87.69633360704213,41.961263300505706],[-87.6962501754342,41.96126391850245],[-87.69616842505016,41.96126440416802],[-87.6957581604241,41.96126683996149],[-87.69558251444867,41.96126778971918],[-87.69520477972752,41.96126983041988],[-87.69474577254063,41.96127342660608],[-87.69472490475721,41.96120950631116],[-87.69471257957368,41.96115504753848],[-87.6947034808136,41.96110153974244],[-87.69469968082537,41.9610181495467],[-87.69470260866329,41.960938501456184],[-87.69469883493811,41.960841472686894],[-87.69469374330366,41.9607695735369],[-87.69468342377372,41.960702090922304],[-87.69468085737005,41.9606608586298],[-87.69467327208682,41.96056257375795],[-87.69468051864237,41.960455452713184],[-87.69468107155008,41.960370001123216],[-87.69468047863147,41.96036302890631],[-87.6946702187273,41.96024241735953],[-87.69466984146325,41.9601550122036],[-87.69466473510522,41.960055176913585],[-87.69464452116355,41.95995130591581],[-87.69463156410893,41.95989387986194],[-87.69462174202592,41.959850274619214],[-87.69459751699598,41.95974308824348],[-87.69458552480606,41.95964063507644],[-87.69458703395976,41.95955946976183],[-87.6945968030152,41.95944075747665],[-87.69459767613745,41.9593921321998],[-87.69459076741589,41.95931816476103],[-87.69458003393612,41.95920380871983],[-87.69456537824883,41.95911404641256],[-87.69454813474667,41.95904043309792],[-87.69454681348176,41.9590360410484],[-87.69453311796107,41.958990514972655],[-87.69451661588317,41.95889421088917],[-87.69450271449686,41.95882465014953],[-87.69448367427482,41.95876897395551],[-87.69447202713705,41.958705627668486],[-87.6944563672949,41.95861703976238],[-87.69444421806969,41.95854584525561],[-87.69443806306342,41.95850977651042],[-87.6944163014412,41.95828119993612],[-87.69441619484658,41.958279504244445],[-87.69440799109803,41.95814882788447],[-87.6944017943785,41.95807354716054],[-87.69438994933596,41.958007949504264],[-87.69436440110982,41.95794131510767],[-87.69434609351664,41.95788594482342],[-87.69434258012765,41.95785121101108],[-87.69434695039371,41.95779281110115],[-87.69434328639127,41.95775843319733],[-87.69433744232683,41.95771778636029],[-87.69433995756938,41.95767946374327],[-87.69434532629516,41.957635608488985],[-87.69434703887107,41.95762161925551],[-87.69434739767392,41.957615991230796],[-87.69434810210946,41.95760494943089],[-87.69435109779883,41.95755798467574],[-87.69437559884706,41.95742395659666],[-87.6943761128393,41.95705966552635],[-87.69426710457037,41.95703024458714],[-87.6942742719327,41.95699727163077],[-87.69427661054114,41.956939793437655],[-87.69427449557075,41.956849771558694],[-87.69436649324228,41.956811754892236],[-87.69437029921603,41.95654487908425],[-87.6943920376209,41.95637659032116],[-87.69439325165392,41.956255050490974],[-87.69439259939517,41.95588029549142],[-87.69440221930252,41.95582985664244],[-87.69441021402058,41.95573261775311],[-87.69441184042356,41.95568388961451],[-87.69441592800892,41.95563904450984],[-87.694430129364,41.95551653962619],[-87.69446548479897,41.9553704696365],[-87.69446079881416,41.95527277735436],[-87.69447313097115,41.95505396767718],[-87.69444473812737,41.95502194938563],[-87.69443761619863,41.9549399401566],[-87.69443969790863,41.954886110311165],[-87.69444599261598,41.95482640385482],[-87.69444364638868,41.95476684140761],[-87.69444263951874,41.95470937201385],[-87.69444273502661,41.95465931812543],[-87.6944487105139,41.95461316629573],[-87.69445959102225,41.95457650929042],[-87.69447551454832,41.954524485318274],[-87.69448370583358,41.95447733018267],[-87.69448922255278,41.954429255122776],[-87.6944919836051,41.95438838173121],[-87.69449016011576,41.954342735342884],[-87.69449707755048,41.95429060636767],[-87.69450294623897,41.95424409719031],[-87.69451201486822,41.954179027503095],[-87.6945331872902,41.95405164538196],[-87.69454306450416,41.95399222338647],[-87.69530155804914,41.953989960064305],[-87.69596125207296,41.95398635926071],[-87.69824054624935,41.95397389032487],[-87.69913129576494,41.953969005042175],[-87.69946343074908,41.95396750092169],[-87.70068329050203,41.95396196820448],[-87.70190427888603,41.95395641748063],[-87.70245730539455,41.953953898999515],[-87.70312845475343,41.953949867433835],[-87.7043527953894,41.95394250282743],[-87.70447002723883,41.953941797334494],[-87.70557424637595,41.95393553032513],[-87.70654613557352,41.95393000562363],[-87.70679444193173,41.95392826739586]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7062461.32466","perimeter":"0.0","tract_cent":"1137014.23120142","census_t_1":"17031150600","tract_numa":"32","tract_comm":"15","objectid":"395","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924678.36628685","census_tra":"150600","tract_ce_3":"41.94947322","tract_crea":"","tract_ce_2":"-87.77175822","shape_len":"10631.2009729"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77578699938366,41.94578056646193],[-87.7765031404691,41.94577147196296],[-87.77651088643603,41.94594126836594],[-87.77652257728386,41.94622995198382],[-87.77653215678761,41.94646650547532],[-87.77653930843896,41.94668117273162],[-87.77654757542506,41.94692933831594],[-87.77655576175658,41.94713735199724],[-87.77656750401216,41.94743571576043],[-87.77657426157451,41.94759160071122],[-87.77658186234119,41.94776693007057],[-87.77659153404444,41.948046755064865],[-87.77659654587713,41.94819175180155],[-87.7766061339228,41.948446687125326],[-87.77660818691595,41.94850127932189],[-87.77661747322585,41.948748188797644],[-87.77662521780981,41.948957417876926],[-87.77663601620517,41.949249153517115],[-87.77664221494928,41.94941374173921],[-87.776651245803,41.94965353307879],[-87.77665914042302,41.94986239759524],[-87.77666750191945,41.95008360347023],[-87.7766777592361,41.95031216205567],[-87.77668025373926,41.95037982132206],[-87.7766917530769,41.95061727937808],[-87.77669520602764,41.95076191777747],[-87.77670193706291,41.95104391742385],[-87.77670742744853,41.95120908393157],[-87.77671533939113,41.951447135421965],[-87.77672438346494,41.95166032072425],[-87.77672534530694,41.95168299454472],[-87.77673735277543,41.95196768298735],[-87.77674158736075,41.95210920304502],[-87.77674589717994,41.95225323277602],[-87.77675566675775,41.95247402496582],[-87.77675868091522,41.95255891821241],[-87.77675912032188,41.95257128852888],[-87.77675945573353,41.952580738219794],[-87.77676319636367,41.95268607967767],[-87.77676892089009,41.95290279079967],[-87.77677480327607,41.95305614502376],[-87.77657062605353,41.95306291489472],[-87.77555502280694,41.95307058625296],[-87.77514622944447,41.95307367137655],[-87.77468197917747,41.95307470641272],[-87.77452553651028,41.95307935997122],[-87.77433176835329,41.95308512384088],[-87.77407071142476,41.95309288837148],[-87.77335209169037,41.95309893548879],[-87.77311232953454,41.953102537737486],[-87.77284330026728,41.95310657893437],[-87.77215629457561,41.953112827780984],[-87.77188933237532,41.95312013752377],[-87.77152360055727,41.953130150507796],[-87.7709528208164,41.95313007284307],[-87.77067240041616,41.9531334354313],[-87.77031432933349,41.953137728307006],[-87.76990231919106,41.95313869831739],[-87.76944585088017,41.95314997833694],[-87.76932328796559,41.953153006635],[-87.76885380208604,41.95316403621364],[-87.76848535467435,41.95316513298416],[-87.76822703763553,41.953167545110794],[-87.76776555131487,41.953171852803216],[-87.7676042909762,41.95317387689373],[-87.76728199197791,41.9531779219206],[-87.76699971340177,41.95318458358456],[-87.76698746491076,41.95286036315675],[-87.76698372201207,41.952692645899205],[-87.76698020022805,41.952534835800485],[-87.76696935568908,41.952236549070975],[-87.76695915091888,41.951955866888184],[-87.76694697054099,41.951579355119314],[-87.76694052746699,41.951334128908584],[-87.76693212204033,41.95101424755176],[-87.76692016441464,41.95066243477532],[-87.76691113072626,41.95043180595816],[-87.766907222295,41.95033202201694],[-87.76690200907679,41.95020098734617],[-87.76689501396181,41.94998517526841],[-87.7668802363686,41.94952926800857],[-87.76687189323084,41.949271866116476],[-87.76686448201298,41.94907463003242],[-87.76685835659373,41.948911620687575],[-87.76684834100917,41.94861660072669],[-87.76684302022556,41.94845987411024],[-87.76683394837544,41.94815974877203],[-87.76682650125282,41.94791336378705],[-87.76681944531892,41.94770280759657],[-87.76681175895935,41.94747344764312],[-87.76679591659259,41.94700833410359],[-87.7667882023071,41.946790322976774],[-87.76677595250254,41.94644413358932],[-87.76675600751626,41.94587668807133],[-87.76706401183417,41.94587330310997],[-87.76736447298562,41.94586953079973],[-87.76762118860178,41.94586630753113],[-87.76840222812613,41.94585903912533],[-87.7688641148013,41.94585332490965],[-87.7691916113256,41.9458504381349],[-87.7693277882374,41.94584923725137],[-87.76989058004771,41.94584321871791],[-87.77000446927056,41.945841991352836],[-87.77077856997305,41.945833687559556],[-87.77162909252938,41.94582433533484],[-87.77191481701455,41.94582119224086],[-87.77359084604943,41.94580242722],[-87.7740645224111,41.94579686152161],[-87.77436675414137,41.945793309749185],[-87.77481311300573,41.945789279743934],[-87.77501118396862,41.945787526597385],[-87.77578699938366,41.94578056646193]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7086478.14445","perimeter":"0.0","tract_cent":"1150305.76973239","census_t_1":"17031160400","tract_numa":"36","tract_comm":"16","objectid":"396","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927643.60843438","census_tra":"160400","tract_ce_3":"41.95736069","tract_crea":"","tract_ce_2":"-87.72282225","shape_len":"10645.8395835"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71781330324485,41.95378645686614],[-87.71908588333463,41.95372990217345],[-87.7192641435852,41.953733504188726],[-87.71949424718004,41.95373815369766],[-87.72025846769648,41.95375359238625],[-87.72148651317988,41.95373869331719],[-87.72271054545189,41.95372571666501],[-87.72394161202176,41.953704583248154],[-87.72514466166355,41.95368391828845],[-87.72639470560547,41.95366565818966],[-87.72761716362436,41.953647788060984],[-87.72762766971736,41.95404344963618],[-87.72764357600721,41.95457665194036],[-87.72766355247445,41.955270274929745],[-87.72766871949747,41.955476513890375],[-87.72767742662755,41.95582404799363],[-87.72768949312727,41.95619987671421],[-87.72770735296552,41.95673267748567],[-87.72771458117123,41.95699251020793],[-87.7277231563798,41.9573005062835],[-87.7277353897311,41.957740033611145],[-87.72775313440675,41.958351043662674],[-87.7277699691695,41.95894242746153],[-87.7277751436482,41.959124204700785],[-87.72778908157035,41.95961380077597],[-87.72780199679889,41.960067476279306],[-87.7278150995558,41.960495340414354],[-87.72781831387327,41.96060029598495],[-87.72782817027088,41.96094683693973],[-87.72728139829887,41.96095390845037],[-87.72684627873682,41.96095934936135],[-87.72669907801259,41.96096141246278],[-87.72660448548207,41.96096273805145],[-87.72600445188753,41.96097114491835],[-87.7254914239657,41.96097638806963],[-87.72538054845575,41.96097765141132],[-87.72459192343523,41.960986633007586],[-87.72415824625021,41.96099179805398],[-87.72391179681205,41.960994732111146],[-87.7238856893886,41.9609950430259],[-87.7234516295911,41.96100110786331],[-87.72292928637896,41.96100864708064],[-87.7223899725875,41.96101642895628],[-87.72195530932879,41.96102020722981],[-87.72170327237598,41.96102369460006],[-87.72111741694994,41.96103179580432],[-87.7207879473035,41.96103533473984],[-87.72048980535197,41.96103878886693],[-87.71991712535535,41.96104542163397],[-87.71959078067869,41.96104897410456],[-87.71925693206721,41.96105387133685],[-87.71886007286575,41.96105969188191],[-87.71839726043353,41.961065720923244],[-87.71803973415345,41.96106935964465],[-87.71802402487889,41.96065016871974],[-87.71802316814069,41.96062307987173],[-87.71801714584907,41.96043270807908],[-87.71800276978996,41.95997799770268],[-87.71797994452457,41.959249982280525],[-87.71796996608175,41.95893170132407],[-87.71796184514919,41.95867521127838],[-87.71794916063753,41.95827399450234],[-87.71794428178995,41.9581161762022],[-87.7179388630564,41.957938047839335],[-87.71793032044255,41.957603125921416],[-87.71792419839583,41.95743042978108],[-87.71791077245899,41.957051709008084],[-87.71790771361914,41.956953120521796],[-87.717907312512,41.956940357786465],[-87.71789715719677,41.95661736448626],[-87.71788849078477,41.95634119540835],[-87.71788313895883,41.95616378084246],[-87.71787368013085,41.95584770664602],[-87.71786681166952,41.955607988938404],[-87.71785504776618,41.95519739331515],[-87.717846306599,41.95494048786566],[-87.71783543036261,41.95458453258648],[-87.71783085758588,41.95438730892275],[-87.71782787823142,41.95428533280985],[-87.7178150098576,41.95384487110845],[-87.71781330324485,41.95378645686614]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7871760.52608","perimeter":"0.0","tract_cent":"1155750.67071933","census_t_1":"17031140800","tract_numa":"42","tract_comm":"14","objectid":"397","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930287.30141651","census_tra":"140800","tract_ce_3":"41.96450695","tract_crea":"","tract_ce_2":"-87.70273347","shape_len":"11524.9973083"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70763522083455,41.96119005857096],[-87.7082484167112,41.96118683635321],[-87.70825422587748,41.96134540836189],[-87.70825849040659,41.961522268421874],[-87.7082640066465,41.96175163228526],[-87.70827158450903,41.96201740984425],[-87.70827576341073,41.962188930833086],[-87.70828070229494,41.962387089598124],[-87.70828372779921,41.962491386001986],[-87.70828996102367,41.96270003468011],[-87.70830145868457,41.96301335334613],[-87.70831028570869,41.963253898887245],[-87.70831471295236,41.96336898791912],[-87.70832426250072,41.96362962992145],[-87.70832801348419,41.96374913316446],[-87.70833132652855,41.963862432110545],[-87.70833486699796,41.9639967803678],[-87.70834122690435,41.96423391455687],[-87.7083473825511,41.964461854527926],[-87.70835009211957,41.96454405500773],[-87.70835519047822,41.964698728745454],[-87.70836780223063,41.965081333350604],[-87.70837518527723,41.96526647033338],[-87.70838588655855,41.9655839581828],[-87.70839713405101,41.96591765298126],[-87.70840216106804,41.966106809722994],[-87.70840428518295,41.96618673396485],[-87.70841277750387,41.96642393455261],[-87.70841471585231,41.96650033174739],[-87.7084179935555,41.96662953669078],[-87.70842743028152,41.96700150517275],[-87.70843081952651,41.96715135729834],[-87.70844026722196,41.96738864537131],[-87.70845194094225,41.9676540187804],[-87.70845657794061,41.96783046931243],[-87.70845871610462,41.96795407972132],[-87.70846076517542,41.96818087206432],[-87.70847151804843,41.968451992827674],[-87.70796837080584,41.96846155763297],[-87.70786407826945,41.968462390669806],[-87.70770690397423,41.96846364564404],[-87.70745839725295,41.96846404742307],[-87.70725678111201,41.96846537644498],[-87.70690700758345,41.96846768107115],[-87.70665730056501,41.96847048946758],[-87.70625627337277,41.96847378810392],[-87.70603224270454,41.96847544917691],[-87.70573205533746,41.968477674289],[-87.70559401010627,41.968478127000616],[-87.70545463430066,41.968479271492754],[-87.70520206981952,41.968480977683186],[-87.7048086119723,41.968484871945336],[-87.70437543610625,41.96848915730557],[-87.70414074313696,41.9684908078636],[-87.70360511528774,41.96849432652573],[-87.70336429607369,41.968495907589514],[-87.7031548254548,41.96849785891092],[-87.70288464295675,41.968499997863844],[-87.70251119767333,41.96850294092301],[-87.70203835121407,41.96850662626351],[-87.70196374261667,41.96850707189127],[-87.70178968652276,41.96850811230961],[-87.70126483713224,41.96851257834582],[-87.70107611838922,41.96851476361375],[-87.70097982452664,41.96842659705387],[-87.70090768604337,41.968370080681076],[-87.7008611287767,41.96834079023044],[-87.7007815038659,41.96829021517612],[-87.70073191888712,41.96825476124456],[-87.70065950831243,41.96818490637627],[-87.70056543168265,41.96808611788737],[-87.7004872017243,41.96800240003737],[-87.70038904697411,41.96791445597572],[-87.70029488096156,41.96782477753179],[-87.70020671121604,41.96774229445527],[-87.70011095776114,41.967649588477585],[-87.70006169847328,41.96760751208615],[-87.7000459972822,41.967594100435406],[-87.70003839700695,41.9675876082544],[-87.70000577029559,41.96756270297618],[-87.6999431852006,41.96752193555053],[-87.69986954373242,41.967468895368356],[-87.69982513927415,41.967430231463474],[-87.6998126137861,41.96740664450059],[-87.6997964901904,41.96738243395516],[-87.69976537902886,41.9673530364737],[-87.6996962949823,41.96730021342459],[-87.69964919311143,41.96726293410806],[-87.69960548513279,41.967220843704105],[-87.69955813296085,41.967175440118424],[-87.69951340168465,41.967121598828086],[-87.69948555599373,41.96708181875716],[-87.69941104765701,41.96701241802381],[-87.69932005394598,41.966936834063766],[-87.69927396160874,41.96689420896486],[-87.69920535775869,41.966822755109746],[-87.69910576866842,41.966731454083465],[-87.69908797215975,41.9667079024086],[-87.6990623350534,41.96667660442667],[-87.69902145732603,41.96661987537242],[-87.69895704122744,41.96655256081354],[-87.69888082936247,41.96647708562219],[-87.69879306310787,41.96639136551196],[-87.69867014406367,41.96627606055714],[-87.69860477951244,41.966208054502715],[-87.69858288073763,41.96618681236831],[-87.69858278604437,41.966186720737106],[-87.69853860029876,41.966143860548186],[-87.69853831367826,41.96614358234736],[-87.69847197517387,41.96607740944911],[-87.69842898938512,41.96602195857325],[-87.6983657204497,41.965946664106035],[-87.69831242491146,41.965885283286994],[-87.69824659539222,41.965819744239084],[-87.69816256181582,41.96574340203257],[-87.69808412115692,41.96566672710383],[-87.69807957493077,41.96566228350104],[-87.69806995481524,41.965652879659636],[-87.69799313270673,41.96558722475314],[-87.69792839423035,41.96553036325127],[-87.69785846300822,41.96546323707838],[-87.69781390264293,41.9654183970575],[-87.69764948256015,41.965250419461185],[-87.69757316429758,41.96517486047348],[-87.69750500925846,41.96511037835679],[-87.69743874375773,41.96505556627329],[-87.69738440150243,41.9650108639964],[-87.69733159977466,41.964951763141514],[-87.69729171298901,41.964910269296105],[-87.69724431541334,41.964877158537945],[-87.69719757888339,41.964844133749146],[-87.69716997433804,41.96480992518049],[-87.69713501263239,41.964788021473616],[-87.69712564917332,41.964782155159426],[-87.69707695882201,41.96475334529814],[-87.69703753181831,41.964721102163566],[-87.69700619579564,41.964681302133336],[-87.69697526226264,41.96463431450283],[-87.69693008053412,41.964574404993044],[-87.69685504016766,41.96448883624916],[-87.69667256957071,41.9642878266739],[-87.6965568092342,41.96417074794684],[-87.69649054634286,41.96410473895829],[-87.69642389027103,41.964037684950895],[-87.69635555458198,41.96397311881385],[-87.696322230179,41.96394283819273],[-87.69631921228138,41.96394009617525],[-87.69630705398617,41.96392904749255],[-87.69629175207382,41.96391115734462],[-87.69622509641113,41.96384410322238],[-87.69615676112872,41.96377953696762],[-87.69608249846209,41.96371205635291],[-87.69605055379492,41.96368163786742],[-87.69597174683959,41.963561168750395],[-87.69589207304195,41.96347590322138],[-87.69583220818295,41.96341742078293],[-87.69578400781702,41.96336912949008],[-87.69573702597717,41.96330926438793],[-87.69567258022694,41.96323453843129],[-87.69562386245137,41.96317916414043],[-87.69558750615235,41.963119385438546],[-87.69557373861777,41.96309493243664],[-87.69557350341913,41.96309451483377],[-87.6955661935219,41.9630815311706],[-87.69556615811466,41.963081468405974],[-87.69554505542801,41.9630439857682],[-87.69547679776804,41.96293120380272],[-87.69540637828936,41.96278827810615],[-87.69538960123526,41.96273033725515],[-87.69534016366106,41.962618180904386],[-87.69530268310962,41.962538473184416],[-87.695278330985,41.962462240958985],[-87.69525326096354,41.96240268952217],[-87.69523630588736,41.96234422598186],[-87.69521649024162,41.962299769442055],[-87.69518006432017,41.96221389279735],[-87.69516696287936,41.96218819922185],[-87.69516330869075,41.96218103244272],[-87.69515774211447,41.96217011577511],[-87.69515658776317,41.96216785169837],[-87.69512831811755,41.96213051053157],[-87.6951098544792,41.962116384987645],[-87.6950941877989,41.962102000569],[-87.69508842328001,41.962090140985225],[-87.69508458537653,41.96206207384171],[-87.69508184045628,41.962027646211276],[-87.69507228967514,41.96198991513612],[-87.69503483568916,41.96192971851474],[-87.69501327121347,41.96190210165247],[-87.69499235172287,41.96185407146289],[-87.69493480838563,41.96172532255122],[-87.69488791880548,41.96157906992122],[-87.69484531134795,41.96147532142998],[-87.69478150698394,41.96136610381994],[-87.6947590466507,41.96131408591142],[-87.69474577254063,41.96127342660608],[-87.69520477972752,41.96126983041988],[-87.69558251444867,41.96126778971918],[-87.6957581604241,41.96126683996149],[-87.69616842505016,41.96126440416802],[-87.6962501754342,41.96126391850245],[-87.69633360704213,41.961263300505706],[-87.69641008812332,41.96126282994582],[-87.6967275956302,41.96126080396412],[-87.697242082179,41.961257210878074],[-87.69744832538635,41.96125576971978],[-87.69775138566706,41.961253496233375],[-87.69814151638398,41.961250715800084],[-87.69848305326236,41.96124916312935],[-87.69896385844609,41.96124697512299],[-87.69907225721948,41.96124614704553],[-87.69920907951325,41.961245091674705],[-87.69943977548947,41.96124340192555],[-87.69968752869087,41.96124181710822],[-87.70016053746409,41.96123878990368],[-87.7003191652002,41.961237496720145],[-87.70069381483341,41.96123489667383],[-87.70091068033395,41.96123372242535],[-87.70114096815165,41.96123247513827],[-87.70134290370957,41.96123161110449],[-87.70152156646729,41.961230680935],[-87.70161705616448,41.96123018363365],[-87.70196331656871,41.961228054398774],[-87.70213537699368,41.961227308422465],[-87.70242377543894,41.961226057785446],[-87.70259799928046,41.9612240787802],[-87.70275772966852,41.96122285277363],[-87.70281472320701,41.961222415255094],[-87.70317554892603,41.961219731187335],[-87.70335715040805,41.961218693820385],[-87.70392524320292,41.961215446423736],[-87.70411283262771,41.96121526724476],[-87.70434345225742,41.961213841643236],[-87.70458515129856,41.96121242521389],[-87.70496309343896,41.961210209612865],[-87.70513723882308,41.961208720281924],[-87.70548347017005,41.96120578444919],[-87.7057997114357,41.96120359088596],[-87.70590720774578,41.961202804658996],[-87.70620822609978,41.96119874139269],[-87.70641046623452,41.961196834443584],[-87.70651415970627,41.961195856741135],[-87.70665446626471,41.96119566222414],[-87.70702405658983,41.961194678538405],[-87.70715812015068,41.96119432146789],[-87.70743669105897,41.96119221814496],[-87.70762974109971,41.961190087157895],[-87.70763522083455,41.96119005857096]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6434181.50742","perimeter":"0.0","tract_cent":"1136475.45453613","census_t_1":"17031110200","tract_numa":"30","tract_comm":"11","objectid":"398","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935827.7518696","census_tra":"110200","tract_ce_3":"41.98007785","tract_crea":"","tract_ce_2":"-87.77347093","shape_len":"12425.4035154"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76834456898683,41.982939640389326],[-87.76834720899286,41.982777106324534],[-87.76835160206365,41.98254645029575],[-87.76835528914164,41.98235404496594],[-87.76835800765954,41.98221295145098],[-87.76836020584813,41.98209743134021],[-87.7683655707125,41.981815079286626],[-87.76836851501314,41.98164843834108],[-87.76837071464742,41.98152026745056],[-87.76837291499776,41.981392014234586],[-87.76837559982683,41.98123807765971],[-87.76837656045714,41.981119837421836],[-87.76837768495044,41.98098139516442],[-87.76838066274472,41.98082759723035],[-87.76838464577179,41.980622487637184],[-87.76838810872661,41.98044292401097],[-87.76839254253993,41.98021177413092],[-87.76839789721399,41.979967978268704],[-87.76840127797566,41.97981434666782],[-87.76840410336975,41.979686096489075],[-87.76840666958795,41.979570523253656],[-87.76841027631644,41.97940380317571],[-87.76841120685006,41.97930767801701],[-87.76841238973549,41.97918553959345],[-87.76841599898461,41.97900600408349],[-87.76842016632853,41.97880081300501],[-87.76842373838646,41.978621359625926],[-87.76842686397124,41.97846745258662],[-87.76843010451476,41.97828805244971],[-87.76843170074919,41.97814318798786],[-87.76843363494,41.977967656503836],[-87.76843742362277,41.97781361549945],[-87.76843889124702,41.97774913144157],[-87.76844259037948,41.97757854517998],[-87.76844641252646,41.97737568465079],[-87.76844813187063,41.97728442085643],[-87.76845041048438,41.97714310551401],[-87.76845242059,41.97699887998952],[-87.76845359567342,41.97687007278537],[-87.76847506717309,41.97657789204308],[-87.76845670064226,41.97651872003107],[-87.76846937225449,41.97607109271523],[-87.7684808381909,41.975682766106445],[-87.76848648165941,41.975491628387104],[-87.76849064699782,41.97521830128318],[-87.76849453367169,41.97496327088635],[-87.76849789845056,41.974690678009694],[-87.76850092892064,41.97456413013115],[-87.76850228521488,41.97451268403534],[-87.76850592163697,41.97437474107322],[-87.77079386462397,41.97568107613309],[-87.77081899088358,41.975695421921166],[-87.77322035978206,41.97709278395651],[-87.7732242796786,41.977095064855504],[-87.77810347193024,41.97981151720584],[-87.77810941378728,41.97981486560723],[-87.78360919664773,41.98291378432557],[-87.78331371393318,41.98290354776158],[-87.78313990300985,41.982902138592124],[-87.78298799545585,41.982902892318435],[-87.78285367143235,41.982903291088476],[-87.78265210603384,41.98290451973482],[-87.78223335938998,41.98290477506778],[-87.78192150448129,41.98290496415078],[-87.78166937975853,41.98290470536005],[-87.78143468861472,41.98290446369397],[-87.78121503733917,41.98290458751207],[-87.7810292970101,41.98290473685221],[-87.78069214539,41.982903498489996],[-87.7805739780483,41.98290271003612],[-87.78043459527761,41.98290408846536],[-87.78016810286287,41.982907862505584],[-87.77991490820561,41.98290798685239],[-87.77979864644193,41.98290804733603],[-87.77967855880671,41.98290810955758],[-87.77944224619061,41.9829082319536],[-87.77922964500875,41.98290919141181],[-87.77903673072723,41.982910061672875],[-87.7788728407177,41.98290986434685],[-87.77877243255814,41.98290971853082],[-87.77862744724813,41.982909547412945],[-87.77851703479185,41.98290941724685],[-87.77845811199795,41.982909345960266],[-87.77824435067707,41.98290908696946],[-87.77803847345739,41.98290485643697],[-87.77781822006718,41.98290032957272],[-87.77761425823567,41.982902251817904],[-87.77743176167908,41.98290395026267],[-87.77735824868167,41.982904634312874],[-87.77718935389808,41.98290474925393],[-87.7770019631377,41.98290436268347],[-87.7768261315589,41.98290499450909],[-87.77666059723022,41.98290558928158],[-87.77621984832312,41.98290800903983],[-87.77609871891507,41.98290868100393],[-87.7759111683696,41.98290974630456],[-87.77579199566146,41.98291037503175],[-87.77561396700368,41.98291229233787],[-87.77545130720823,41.98291404366406],[-87.77514502839007,41.982915381102146],[-87.77512825055166,41.98291545402036],[-87.77497476729008,41.9829161175823],[-87.77470232751237,41.98291728939064],[-87.77435203534773,41.9829175087829],[-87.7739530778253,41.98291775727011],[-87.77378969678665,41.98291819868225],[-87.7737320982957,41.982918354253805],[-87.77349335357829,41.982919001388005],[-87.77334045502776,41.98291946309405],[-87.77319133647497,41.98292066668655],[-87.77298233949959,41.982922353336576],[-87.77258240389978,41.982923825530335],[-87.77233491706447,41.982924706912506],[-87.772113788729,41.98292549214779],[-87.77197774022136,41.982925865918624],[-87.7717903742628,41.982926380664786],[-87.77146721724901,41.9829272692562],[-87.77137216148742,41.98292752268668],[-87.77124583315269,41.98292785947351],[-87.77092197759188,41.98292871566765],[-87.77076839147897,41.98292918978866],[-87.77051308305897,41.98292997732241],[-87.77025854951385,41.982931775211235],[-87.77015668689509,41.98293248436265],[-87.77007125417963,41.982933079200095],[-87.7697812628306,41.98293508623908],[-87.76967297553013,41.982935871818015],[-87.76955493685817,41.98293576858249],[-87.76938057664766,41.982935615777876],[-87.76915768317835,41.9829363592052],[-87.76895174577494,41.98293704807703],[-87.76894899896372,41.98293705707538],[-87.76876283822952,41.98293765622876],[-87.76855675371175,41.98293834366845],[-87.76834456898683,41.982939640389326]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2141750.43155","perimeter":"0.0","tract_cent":"1176415.41319869","census_t_1":"17031350500","tract_numa":"3","tract_comm":"35","objectid":"540","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883123.86551106","census_tra":"350500","tract_ce_3":"41.83464575","tract_crea":"","tract_ce_2":"-87.62818076","shape_len":"6924.53421007"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6295304775206,41.830970910870285],[-87.62956105279402,41.830970851505135],[-87.62956551123929,41.83105962866274],[-87.62958360078488,41.831753009126004],[-87.62961050449105,41.83277232556586],[-87.62961560755063,41.83297646210587],[-87.6296211040218,41.83320907005469],[-87.62962751661625,41.83348045073996],[-87.62964438185726,41.8341601020829],[-87.62964450668944,41.83416451754618],[-87.62965495204898,41.83453510198225],[-87.62965689610574,41.83461359464076],[-87.62965717449237,41.83462482862046],[-87.629662398187,41.83481301369885],[-87.62966276948394,41.83482638520598],[-87.62968729954054,41.83581138352726],[-87.62969845480355,41.836203993822316],[-87.62972206128597,41.83703485168352],[-87.62973867442307,41.83756813002658],[-87.62976040511526,41.83826567253956],[-87.62976016473034,41.83826567436017],[-87.62962133997623,41.83826669876919],[-87.6295910254789,41.83826692275194],[-87.62931494495379,41.838271062407955],[-87.62902016072637,41.83827419509855],[-87.6289547600305,41.838274809141616],[-87.62895241485595,41.83827483098376],[-87.62860786473917,41.838278032549105],[-87.62821077422277,41.83828075466735],[-87.62793535708951,41.838284689259574],[-87.62781541234341,41.83828639494909],[-87.62745770655314,41.83829160667458],[-87.6271009214662,41.83829654852077],[-87.62677259573911,41.838300572940305],[-87.62677878319789,41.83806081075715],[-87.62677490347687,41.837893085276164],[-87.62677113900013,41.83770154002408],[-87.62676657316315,41.83745941307145],[-87.62676380757627,41.83731384035412],[-87.62675621006758,41.837017056457505],[-87.62674692442084,41.83669693592287],[-87.62674133625639,41.83646632634908],[-87.62673321554722,41.83609168662945],[-87.62673086617895,41.83601930567261],[-87.62672381465758,41.835802108713445],[-87.62671543647512,41.83545622532987],[-87.6266879634877,41.83510155230137],[-87.62668253332677,41.83487465058597],[-87.62668715391635,41.83466779772201],[-87.62669279934202,41.83441507693593],[-87.62668504908856,41.834152238498945],[-87.62667806800374,41.83387952542947],[-87.62667364500562,41.833671153648986],[-87.62666740821658,41.833445069919605],[-87.62666514540871,41.833363030198065],[-87.62665802734111,41.83308943808305],[-87.62665614624952,41.832938739469505],[-87.62665703345121,41.832833465316924],[-87.62665797059626,41.83265760018938],[-87.6266614484486,41.832521560920156],[-87.6266647715263,41.83235955994598],[-87.62666919248484,41.832177807011234],[-87.62667201647744,41.83204115996919],[-87.62667283760733,41.83188644333462],[-87.6266710437243,41.83178599218008],[-87.62665928069488,41.83165781749221],[-87.62664481923275,41.83150476315112],[-87.62664009368751,41.831300560707156],[-87.62664431564382,41.83101370085828],[-87.62693935324008,41.831004291948716],[-87.62743433325772,41.830998204567614],[-87.6275210489397,41.83099713783094],[-87.62776963165817,41.83099485906692],[-87.62790314332426,41.83099287064056],[-87.62818774739235,41.83098797791731],[-87.62864315737474,41.830979878104394],[-87.6289956829872,41.83097495028413],[-87.6291449478649,41.830972863542534],[-87.62924490109566,41.830971466118044],[-87.62938395426835,41.8309711960161],[-87.62947678530243,41.83097101545542],[-87.6295304775206,41.830970910870285]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4285235.09359","perimeter":"0.0","tract_cent":"1177068.1501195","census_t_1":"17031081200","tract_numa":"28","tract_comm":"8","objectid":"399","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1907206.95019658","census_tra":"081200","tract_ce_3":"41.9007165","tract_crea":"","tract_ce_2":"-87.62505662","shape_len":"10132.1875726"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61861368472114,41.900204895558204],[-87.61854031590043,41.90009692478096],[-87.61854030867383,41.90009691403346],[-87.61891448980803,41.90011391684059],[-87.61905496673668,41.90009054735385],[-87.61928050223334,41.9001262383871],[-87.61925546933986,41.90008800978552],[-87.61980376778989,41.90007986430831],[-87.62023387066662,41.9000729128477],[-87.62080093538302,41.90006374550239],[-87.62167107186522,41.90004855970052],[-87.6218886058442,41.90004477045141],[-87.62234038980169,41.90003689904782],[-87.6230511488215,41.90002461267779],[-87.62347805989336,41.90001724650001],[-87.62385669508703,41.90001071219716],[-87.62416145094392,41.900005672928444],[-87.6241418703057,41.899726469793634],[-87.62412936493541,41.89932960385532],[-87.62412741810589,41.899210134523784],[-87.62412483659871,41.89905172224169],[-87.62412051601287,41.8988977440498],[-87.62410269890105,41.89838557809243],[-87.62409248524379,41.898091946187805],[-87.6240954095294,41.89785047164678],[-87.62412869417773,41.89757901037742],[-87.62416977909045,41.89724393376223],[-87.62420137482503,41.89696438161361],[-87.6242425546119,41.89673394401541],[-87.62467400050267,41.896727233627274],[-87.62484451659812,41.89672264612039],[-87.62511210394796,41.8967154468755],[-87.62550478133043,41.89671273849022],[-87.62561391745459,41.89671198579885],[-87.62593984878595,41.8967097366642],[-87.62616483368576,41.89670608288735],[-87.62637599077549,41.896702653090315],[-87.6268497362436,41.896695259422415],[-87.62724992007628,41.896689012493404],[-87.62768695121747,41.896684481545066],[-87.6281993917997,41.896677393628586],[-87.62820388378316,41.896865757782024],[-87.62821093680424,41.89711020209783],[-87.62822237770025,41.897520096633464],[-87.6282267069662,41.897675913687195],[-87.62823201733977,41.8978668234448],[-87.62823596515184,41.89800873667869],[-87.62823965729787,41.898141470247516],[-87.62824433517879,41.89831638929485],[-87.62824844941504,41.89847022394361],[-87.62825157723238,41.89858717935568],[-87.62825965492736,41.89894809600058],[-87.62826548898872,41.89913986403389],[-87.62828973902035,41.89993698997071],[-87.62829388912299,41.90007338711322],[-87.62830734306883,41.90040974806786],[-87.62831276113334,41.90059290373976],[-87.62831712575512,41.90074046050939],[-87.62832766555519,41.90109675437942],[-87.62833585924719,41.901540876438226],[-87.62833618242874,41.90155841406936],[-87.6283373078409,41.90161939782904],[-87.62834449478544,41.901680665783275],[-87.62834528013968,41.90188396335545],[-87.62835639119203,41.902180301926826],[-87.62834985544956,41.90232306753812],[-87.62832098932637,41.90237276536545],[-87.62841666691915,41.902633248008925],[-87.62853370744112,41.90293325211763],[-87.628628360035,41.903180167648756],[-87.62866054775995,41.903264134230646],[-87.62867974866592,41.90378299419463],[-87.6286780013847,41.90394189780993],[-87.62800210609052,41.90395342184341],[-87.62797690276383,41.903953800509775],[-87.62707903474863,41.90396728689236],[-87.62685744522612,41.90397096413043],[-87.62633976254384,41.90397955210131],[-87.62603176150746,41.903984661104545],[-87.62584779884286,41.903987594225754],[-87.62564737618835,41.90399078922223],[-87.62500379568628,41.90400104662208],[-87.62466438088865,41.90411394834167],[-87.62442844439171,41.90415953280653],[-87.62427723999198,41.90418876300483],[-87.62405219131278,41.90423197265741],[-87.62363770417896,41.904264746686835],[-87.62363770311043,41.90426474366158],[-87.62363149768923,41.90424691583093],[-87.6235749509176,41.90408445800926],[-87.62357397539719,41.90408165835223],[-87.62357245906358,41.90407730705717],[-87.6236552336307,41.90406180606827],[-87.62372268414077,41.904049174641166],[-87.62369492528286,41.90401752758757],[-87.62367193282643,41.903991314747685],[-87.62360684782246,41.90394741615521],[-87.62355584271538,41.903919219781216],[-87.62351721850781,41.903900786505055],[-87.62350325359408,41.90389454486958],[-87.62348658664965,41.90388709525834],[-87.62346490263212,41.903877213976045],[-87.62344660059652,41.90386887335272],[-87.62344369294362,41.90386752442511],[-87.62343545351173,41.90386370071847],[-87.62341490863261,41.903854185414524],[-87.62341239273835,41.90385302030181],[-87.62339595022026,41.90384577349148],[-87.62337159625922,41.903835040066035],[-87.62334439945322,41.90382304427487],[-87.62331356842722,41.90380737645278],[-87.62329698666578,41.9037987410095],[-87.62327949255358,41.90378962983543],[-87.62324578078464,41.903772077830126],[-87.62322921339751,41.903761914752344],[-87.62321527814603,41.90375336618993],[-87.62321290292734,41.90375187181176],[-87.62316861934212,41.903724015953074],[-87.62313343236089,41.90369715184693],[-87.62312570961814,41.90369125832127],[-87.6231183631755,41.90368565060158],[-87.62309678756512,41.903669181020604],[-87.62307213273489,41.90365033921111],[-87.62305551709777,41.903637640963176],[-87.62301432128359,41.90360261727644],[-87.62298773099694,41.90357893472666],[-87.62295837564373,41.9035528747516],[-87.6229353953825,41.90353160172927],[-87.6229084767641,41.90350775220138],[-87.62287831956401,41.903479870014735],[-87.62287360528616,41.903475511547704],[-87.62283187966268,41.90343537969751],[-87.62281062253093,41.90341408767395],[-87.6227902802193,41.90339371211754],[-87.62276664134336,41.903368603489646],[-87.62275059745839,41.90335156214693],[-87.62272254496926,41.90332062598994],[-87.62271793632782,41.90331638315345],[-87.6227141894881,41.90331293379331],[-87.62270861867461,41.90330780602471],[-87.62270767058429,41.90330714181631],[-87.62267767300516,41.90327650892315],[-87.62267657823489,41.903275391008506],[-87.6226646480145,41.9032632074294],[-87.62259114714912,41.90318814399632],[-87.62256090348127,41.90315529934492],[-87.62251198331285,41.90310217144292],[-87.6224112490385,41.902983754708146],[-87.62233118571801,41.90288963651902],[-87.62230339802372,41.90285695382175],[-87.62229604942725,41.90284831064087],[-87.62220687752269,41.90273198205342],[-87.62210757777589,41.90260244030742],[-87.62203438608083,41.902508417979845],[-87.6220093928841,41.90247631124547],[-87.62200696128038,41.90247318532145],[-87.62198393205385,41.90244357921683],[-87.6219704246695,41.902425911600304],[-87.62195072970725,41.90240015160355],[-87.62192951176642,41.90236906549318],[-87.62191628345553,41.902347372713145],[-87.62190948873895,41.90233623019894],[-87.62189342088291,41.90229793094187],[-87.62189332854764,41.9022977113801],[-87.62187480905746,41.9022538250423],[-87.62186505821748,41.90222552675573],[-87.62186191326589,41.90221343374712],[-87.62185766000384,41.90219707784207],[-87.62185438057968,41.90217482951843],[-87.621854870704,41.90216747499481],[-87.62185561467585,41.902156313598844],[-87.62185596672867,41.90215398428063],[-87.6218580667141,41.902140093366086],[-87.6218589841114,41.90213402359495],[-87.62185918726843,41.90213243347354],[-87.62186115681654,41.90211702336713],[-87.62186190637634,41.902107310685736],[-87.6218629159341,41.9020942296983],[-87.6218637331406,41.90208361842556],[-87.62186437565595,41.90207527582476],[-87.62186526653606,41.90206778931662],[-87.6218664030857,41.90205802661799],[-87.62186678618572,41.90205491895344],[-87.62186713009865,41.90205213157238],[-87.62186791632769,41.902047784914956],[-87.62186826541935,41.902045854589645],[-87.62186821236972,41.90204583532576],[-87.62175397067617,41.90200431193785],[-87.62166490419959,41.9019756379096],[-87.62163724548978,41.90196673351973],[-87.62161859400018,41.901961484010435],[-87.62151830760536,41.90193325761488],[-87.62139741344734,41.90190391324858],[-87.62127485659927,41.90187875711984],[-87.62115085583694,41.90185790034946],[-87.62114646036999,41.90185723532897],[-87.62114480500989,41.90185698494196],[-87.6209981410967,41.90182954069538],[-87.62063772766581,41.90176209892583],[-87.62056998023922,41.90174993339162],[-87.62056719550885,41.901749205075944],[-87.6205208634362,41.90173708736739],[-87.62045384465496,41.901716980363695],[-87.62040952952626,41.901703684958136],[-87.62038319957607,41.90169601793178],[-87.62037284166541,41.90169300165139],[-87.61992112735996,41.90156151855802],[-87.61990344613243,41.90155558681913],[-87.61987604013144,41.901546392137604],[-87.61986159142253,41.9015399000712],[-87.61983367868162,41.90152735810973],[-87.61979717904697,41.901506384917944],[-87.61976421412608,41.90148793147981],[-87.61973327531392,41.901470609446655],[-87.61963812410097,41.90141733488047],[-87.61963820282715,41.901417192395265],[-87.61964157304604,41.90141112663482],[-87.61964144419397,41.90141105338625],[-87.61956192791641,41.90136565390687],[-87.6195027026952,41.90132751084974],[-87.61948603125688,41.90131677358691],[-87.61946947224216,41.901304781808726],[-87.61944306995613,41.901285661063724],[-87.61941406377792,41.901264652283],[-87.61940512736123,41.901257662871885],[-87.61939199550167,41.90124739134402],[-87.6193673947533,41.90122519452097],[-87.61931111440455,41.90117441327503],[-87.61923485499544,41.901098719382745],[-87.6192289843447,41.90109229073433],[-87.61916340091467,41.901020476021145],[-87.61909685757351,41.900939848234295],[-87.61906786961032,41.900900782154935],[-87.61904988817267,41.90087655783353],[-87.61903537151565,41.900857001596094],[-87.6189790885478,41.90077210167556],[-87.61893211244751,41.90069252828],[-87.61886894746988,41.900590236175454],[-87.61881023005452,41.90049514595652],[-87.61880337464176,41.90048404404188],[-87.61861368472114,41.900204895558204]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1721825.24092","perimeter":"0.0","tract_cent":"1172672.7712193","census_t_1":"17031071700","tract_numa":"12","tract_comm":"7","objectid":"400","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911599.71595265","census_tra":"071700","tract_ce_3":"41.91286892","tract_crea":"","tract_ce_2":"-87.64107075","shape_len":"5268.42199963"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63870346251038,41.91469143472726],[-87.6386950099062,41.91442143066823],[-87.63868650356162,41.914158454511856],[-87.63867627151942,41.91384212039406],[-87.63865552354875,41.91326181025428],[-87.638637647523,41.91284957477862],[-87.63863948647997,41.912795962865125],[-87.63863474235279,41.91253141801528],[-87.63863454113569,41.91252019290466],[-87.63862663553603,41.91219890571564],[-87.63862288552676,41.91208266523111],[-87.63861475708691,41.91183072304938],[-87.63860378802376,41.911459966285804],[-87.63859435873607,41.91117248914482],[-87.63859245748084,41.91111452391946],[-87.63942930568916,41.911102271299384],[-87.63980635959402,41.9110968052988],[-87.64043198568076,41.9110877329303],[-87.64101649428704,41.91107925392665],[-87.6414911469754,41.911072366137645],[-87.64222471043328,41.911061717493986],[-87.6430635982381,41.91104328547277],[-87.64343057887629,41.91101775996966],[-87.64344998924554,41.9116359186841],[-87.64345982338648,41.91187585081138],[-87.64346989039598,41.912165811615665],[-87.64347860057201,41.912455544714845],[-87.64349013407968,41.912809948781195],[-87.64349952542706,41.91309853336335],[-87.64350491034025,41.91326036540733],[-87.64351282237932,41.91350141132426],[-87.64352544971841,41.91389824738318],[-87.6435358272097,41.91422421421416],[-87.64354133430467,41.914384949268275],[-87.64354980563685,41.914624982583206],[-87.64293746459532,41.91463361416904],[-87.64290965245449,41.91463400621651],[-87.64233746769409,41.91464362714264],[-87.64192640376945,41.91465053741278],[-87.64168623138292,41.914653804201414],[-87.64113537228161,41.91466129512702],[-87.64074044918188,41.91466666371469],[-87.6407023482589,41.91466718169637],[-87.64052674565305,41.91466956851942],[-87.64039916761682,41.914671302255165],[-87.64035183386613,41.9146719455219],[-87.64009567686338,41.914675421238734],[-87.63999417640298,41.91468430342819],[-87.63995189057535,41.914707371276734],[-87.63933802775567,41.914663627242305],[-87.6392726811505,41.91466559230877],[-87.63917331294796,41.914667598650546],[-87.63908019493724,41.91466917617762],[-87.63900396882669,41.91466997377841],[-87.6389137296497,41.914672853974274],[-87.63882495724192,41.91468145315872],[-87.63876676172993,41.91469023696093],[-87.63870418877022,41.91471075738222],[-87.63870346251038,41.91469143472726]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3442848.74107","perimeter":"0.0","tract_cent":"1164329.79226365","census_t_1":"17031060300","tract_numa":"16","tract_comm":"6","objectid":"404","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1925285.87857035","census_tra":"060300","tract_ce_3":"41.95060523","tract_crea":"","tract_ce_2":"-87.67133249","shape_len":"7939.82373443"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67248065256008,41.94693921396468],[-87.67279973355718,41.94693229801194],[-87.67294234415971,41.94693374077339],[-87.67305110377167,41.946934841322175],[-87.67332701846671,41.94693129608891],[-87.67372245248258,41.94692668225788],[-87.67361144175295,41.94716495405873],[-87.6736185696171,41.9474022045909],[-87.6736192959011,41.94742638556248],[-87.67362048778277,41.9475603923709],[-87.67362978341893,41.9478281987147],[-87.67363398446236,41.94799122914167],[-87.67364132127658,41.948274364362646],[-87.67364614052782,41.94845940691989],[-87.67367310949629,41.948748829397175],[-87.67368052949715,41.94882845421176],[-87.67368428630262,41.948959676626785],[-87.6736865178972,41.949046296813485],[-87.6736917274077,41.9492505510775],[-87.67369721619595,41.94945977396399],[-87.67370246168657,41.94966054326955],[-87.67370700621592,41.94983438781423],[-87.67370718089707,41.94984108469679],[-87.67371539509372,41.95015682610941],[-87.6737238164875,41.950480965984674],[-87.67371736610401,41.950577796878214],[-87.67371042130358,41.95068203979079],[-87.67371725174723,41.95099294339416],[-87.67371902783418,41.95107379808758],[-87.6737288446912,41.95142665038567],[-87.67373833234853,41.95176868857591],[-87.67374793422162,41.95211388324486],[-87.67375400756657,41.95233065624031],[-87.67375268034047,41.95240026871238],[-87.67375024541009,41.95252797059925],[-87.6737598361239,41.95285771497429],[-87.67376757573106,41.95312553984138],[-87.67377887290033,41.953513142226186],[-87.67378493105582,41.953721956320415],[-87.67379530947302,41.95407969664819],[-87.6737943571636,41.95416168764359],[-87.67379365827884,41.95422191493596],[-87.67264102262239,41.954239700423074],[-87.67220571091491,41.95424583932183],[-87.67200694103552,41.95424838632154],[-87.67163358891206,41.95425380941841],[-87.67144350062391,41.95425586404554],[-87.67125275051137,41.95425792551814],[-87.6708260814079,41.95426430057062],[-87.67062293367525,41.95426719806345],[-87.67045214181658,41.954269633834095],[-87.67027770515477,41.954272607570964],[-87.67008539828099,41.954275885598285],[-87.66983559052485,41.95427943446416],[-87.6696816759909,41.95428162085307],[-87.66956908967434,41.95428321997314],[-87.66925865000353,41.95428762667441],[-87.66912823348929,41.954289322006424],[-87.6690488603737,41.9542903539856],[-87.66904370369126,41.95414508379794],[-87.66903352889983,41.95376508898671],[-87.66902955802628,41.95361679631247],[-87.66901565469416,41.95312179745748],[-87.66901205993803,41.95299315549282],[-87.66900300412559,41.952669094100585],[-87.66900074042982,41.95246573331139],[-87.6689995428352,41.95235810006512],[-87.6689900762926,41.95194449291657],[-87.66898586191759,41.951760331666904],[-87.66897505806088,41.951289060573906],[-87.668970654609,41.95109702259539],[-87.66896453195012,41.950830030234314],[-87.66895552385496,41.95064004159095],[-87.66895078093316,41.95053999722023],[-87.66894167003646,41.950192472353606],[-87.66893264458261,41.949847417476754],[-87.66893157811826,41.94980685212016],[-87.66892623644262,41.94960432576995],[-87.66891998404351,41.94936386912363],[-87.66891708577229,41.949253535002406],[-87.66890712179061,41.94881388052146],[-87.66889744780478,41.94838701846202],[-87.66889354441712,41.948214255888175],[-87.66887476788804,41.94769315009569],[-87.66885813120058,41.94699011581803],[-87.66890625566236,41.94699015530724],[-87.66941162079874,41.9469831993397],[-87.66946731059453,41.946981971704844],[-87.6695733614397,41.946979634009246],[-87.66986544439911,41.946976684526646],[-87.6700760886395,41.94697494222839],[-87.67035964229703,41.94697259671019],[-87.67070861181524,41.94696764069883],[-87.67086817043234,41.946965378173346],[-87.67129463047466,41.94695869295883],[-87.67153873167148,41.946954865666044],[-87.6719603552923,41.94694823928728],[-87.6723375296372,41.94694231594043],[-87.67248065256008,41.94693921396468]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"697941.31742","perimeter":"0.0","tract_cent":"1185761.21990765","census_t_1":"17031410200","tract_numa":"3","tract_comm":"41","objectid":"555","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871185.71911787","census_tra":"410200","tract_ce_3":"41.80167104","tract_crea":"","tract_ce_2":"-87.5942657","shape_len":"3700.77920393"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59614604784701,41.800924905337155],[-87.5964109614832,41.800921198861744],[-87.59667691954387,41.80092297385652],[-87.59668224743163,41.80114884783272],[-87.59668747820176,41.80137100322954],[-87.59669380146899,41.80160985083218],[-87.59669940680187,41.80184413832005],[-87.59670326410478,41.80205489613055],[-87.59670681831106,41.80236586284671],[-87.59638982061252,41.80236932835207],[-87.59613195305936,41.802372146932626],[-87.5958967061888,41.80237571993082],[-87.59585888620744,41.80237629438084],[-87.59559413119979,41.802378436352825],[-87.59532016604042,41.80238095762741],[-87.5950939020369,41.802384773303295],[-87.59474984681876,41.802390574423484],[-87.59452279018508,41.80239317584706],[-87.59427848967579,41.802396229830094],[-87.59427350132817,41.80239629241402],[-87.59403271279024,41.80239696585465],[-87.59369638139019,41.802400893082755],[-87.59347482733298,41.80240329597278],[-87.5930724373192,41.80240765896638],[-87.59274464955793,41.802411748235045],[-87.59251789090611,41.80241390853174],[-87.5921741285385,41.80241657589734],[-87.59185231662885,41.80242134306179],[-87.59184954465485,41.80217775987628],[-87.59184467380592,41.802002149582215],[-87.59184084700735,41.8018642795602],[-87.59183931002632,41.8018089178406],[-87.59183442233979,41.80161571660832],[-87.59182981445687,41.80141730304837],[-87.59182369742713,41.801178072332156],[-87.59182080979689,41.8009758945585],[-87.59209057371268,41.80097232705363],[-87.59237095827714,41.800969223969815],[-87.59263618391446,41.800967119894985],[-87.59288512898877,41.80096471816821],[-87.59315201278322,41.80096193752087],[-87.59343799092967,41.800958491908005],[-87.59374565321605,41.80095478425517],[-87.59404115690276,41.80095090559604],[-87.59424810772495,41.800948521811456],[-87.59449854286004,41.800945636595266],[-87.59451228042785,41.800945478240436],[-87.59462254189943,41.80094420762625],[-87.59505746347914,41.80093866103438],[-87.59514918899005,41.800937589944176],[-87.59548340244156,41.800933686282875],[-87.59586697816786,41.800928512913394],[-87.5959693912538,41.80092718897399],[-87.59614604784701,41.800924905337155]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4065574.41878","perimeter":"0.0","tract_cent":"1173276.74258314","census_t_1":"17031063200","tract_numa":"15","tract_comm":"6","objectid":"401","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1920905.59909016","census_tra":"063200","tract_ce_3":"41.93839126","tract_crea":"","tract_ce_2":"-87.63857492","shape_len":"10893.1707626"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63434069869062,41.941860472752644],[-87.63433462920261,41.941732147086164],[-87.63428233629338,41.94173182870934],[-87.63420028368587,41.94172017359269],[-87.6341183529836,41.94169736338066],[-87.63405895517917,41.94166353539321],[-87.63399961839117,41.94162412930808],[-87.63395546658293,41.94156250495554],[-87.6339039052692,41.94149525755834],[-87.63387481626435,41.941422569153445],[-87.63385325844146,41.9413443490073],[-87.63386158237456,41.94126631090625],[-87.63385594059126,41.94109894340095],[-87.63386662251055,41.94094455036943],[-87.63387368519352,41.9408424737664],[-87.63387759465785,41.9407901651381],[-87.63388243570988,41.940725393845646],[-87.63387636721782,41.94059706813744],[-87.63386981147544,41.94051336148581],[-87.63385627260485,41.94038499053561],[-87.63381297521475,41.94024528194682],[-87.63378587257701,41.94017220604923],[-87.63378587151041,41.94017220274967],[-87.63376943378503,41.94012788341597],[-87.63373330228394,41.94001610790884],[-87.63370917060215,41.93990626114823],[-87.63370917025561,41.93990625922516],[-87.63369771926067,41.93985413553228],[-87.63365448316081,41.93970884990287],[-87.63363505043053,41.93964873278422],[-87.63361112566967,41.93957471902275],[-87.63359453410106,41.939503279290925],[-87.63358258627231,41.93945183421826],[-87.63355374245081,41.93935683618446],[-87.63352197686072,41.939280581435185],[-87.63349550582811,41.939217036674194],[-87.63345487757447,41.939105702640354],[-87.63343022649106,41.93903815005314],[-87.63340944409731,41.93899518067359],[-87.63339912695784,41.93897384846329],[-87.63338192189696,41.93893827623961],[-87.63335717266506,41.9388871046304],[-87.6333249936478,41.93879851918731],[-87.63330640673918,41.93874735083389],[-87.63326050925784,41.938654733076866],[-87.63322600533743,41.93858510501217],[-87.63320613306696,41.9385334845146],[-87.63316789250295,41.93843415056329],[-87.63311676123952,41.93832786125272],[-87.63309891718099,41.93829143081182],[-87.63305099603477,41.938193593473486],[-87.6329850472858,41.93807605793868],[-87.6328744011719,41.937947093899396],[-87.63278674875433,41.937857019749586],[-87.63274881600614,41.937818038871015],[-87.63266027546274,41.937717098695146],[-87.6326298073679,41.93768314051454],[-87.63254956955298,41.93759371186514],[-87.63244627306707,41.937475948050604],[-87.63236514245354,41.93738063049508],[-87.63229203153449,41.93723516190306],[-87.63242555885664,41.937182208318184],[-87.63240097996638,41.93713051338409],[-87.63239395999548,41.937115749180414],[-87.63239048763691,41.93710989844352],[-87.63238832165963,41.937106248310656],[-87.63238002692552,41.937092270225435],[-87.63232961691574,41.937007324520664],[-87.63232698109259,41.93700288200695],[-87.63229763610668,41.936921257793],[-87.63229373949933,41.936910419045],[-87.63229373636305,41.93691040338381],[-87.63229373359428,41.936910387724886],[-87.6322777027329,41.93682428939793],[-87.63227766681662,41.93682417940998],[-87.63227748405674,41.936823617650674],[-87.6322754196281,41.936817274412846],[-87.63225899986959,41.93676682162634],[-87.63225630498233,41.93675854507998],[-87.63223642140923,41.936697474347895],[-87.63222573162098,41.93664822311068],[-87.63357855452185,41.93661988129661],[-87.63372012490888,41.936624417704216],[-87.63387478052145,41.93662983496444],[-87.63685094729871,41.936617869521555],[-87.63790977240724,41.936603053628275],[-87.63840322363342,41.93659616214964],[-87.63870159231345,41.936592295358956],[-87.63943375400254,41.93658686534419],[-87.64007800068235,41.93658224727599],[-87.64071555446141,41.93657253860318],[-87.64125819510892,41.93656431248474],[-87.6414495678167,41.93656105315915],[-87.64185831202698,41.93655409545867],[-87.64264992968621,41.936540613092404],[-87.64314419454938,41.93653650523032],[-87.64373412727663,41.9365325033558],[-87.64427925701801,41.93651289681435],[-87.64429182951102,41.93680827006173],[-87.64429848756625,41.93699549306095],[-87.6443012114289,41.93708173242957],[-87.64430797204098,41.93729579475003],[-87.64432013729167,41.937655414758325],[-87.64432852074003,41.9379032406589],[-87.64433582769011,41.93811900736601],[-87.64434092006945,41.938287807233614],[-87.64435332710715,41.93868979932629],[-87.64435991359669,41.93890322937033],[-87.64436919189075,41.93914603757196],[-87.64437643133542,41.93933548761877],[-87.64438287192566,41.939519937295046],[-87.64438682613263,41.93963318763886],[-87.64439968803715,41.940044966864114],[-87.64394717993328,41.94005466722046],[-87.64337727374662,41.94006301657911],[-87.64319210943387,41.94006561390015],[-87.6423692544659,41.94007715208326],[-87.64212104736573,41.94008063910856],[-87.64198036172283,41.94008261503421],[-87.64196052519395,41.940082893773],[-87.64165815203471,41.94008714032505],[-87.64141141787258,41.94009019835911],[-87.64126334736991,41.94009203340274],[-87.64117477543488,41.940093202541796],[-87.6411747680843,41.940093202497486],[-87.64092783396528,41.94009646108422],[-87.64052824690738,41.940101732778466],[-87.64036763253233,41.94010451621359],[-87.64023227450734,41.940106861885525],[-87.6398376688576,41.940113754538416],[-87.63955405785809,41.94013797671617],[-87.63927891188783,41.94016147577009],[-87.63904947928626,41.94018912214098],[-87.63893846659212,41.94021051428248],[-87.63879096737635,41.940250919534975],[-87.63852994270655,41.94036868532137],[-87.63843440381021,41.94041178899013],[-87.63834373116062,41.94045269730006],[-87.63826042353256,41.94049028269901],[-87.63815761013328,41.94053519993023],[-87.63806590074952,41.9405753185432],[-87.63784918784889,41.94065469389094],[-87.6375412570957,41.94028408063018],[-87.63752919576123,41.9402880409833],[-87.63711549993161,41.9398263441783],[-87.63711547755126,41.939826340475115],[-87.63711545554143,41.93982633649975],[-87.63711530109013,41.93982631004198],[-87.6371143075969,41.93982614128562],[-87.63703756637756,41.93981308325779],[-87.63703727254129,41.939814584756895],[-87.63703727214094,41.9398145877731],[-87.63703727137303,41.93981459078708],[-87.63701572661569,41.93992492905622],[-87.63695053949222,41.94025877744241],[-87.63673420567929,41.94022957620342],[-87.63681187915587,41.93978077140369],[-87.63681188306107,41.939780750296926],[-87.63681188660175,41.939780728913526],[-87.636815766782,41.939758308065336],[-87.63681554577582,41.939758284222044],[-87.63680309268595,41.93975694221995],[-87.63667651804577,41.93974330308457],[-87.63655085533647,41.9397396588361],[-87.63655064440015,41.93973965536062],[-87.63651800152743,41.93973914441361],[-87.63648500145545,41.93973862799631],[-87.63647283549733,41.939738664199425],[-87.63641827602899,41.93973966398543],[-87.63631424279785,41.939741570590016],[-87.63615593162545,41.93974889748064],[-87.6359980884632,41.93976056203204],[-87.63595263105998,41.939765199451266],[-87.63584093311665,41.93977659412124],[-87.63580017917366,41.93961062310806],[-87.63568289573739,41.93965098977129],[-87.63550174802974,41.939713337092336],[-87.63547891795001,41.939726386205805],[-87.6354784190124,41.939726671590215],[-87.6354686833008,41.93973223613522],[-87.63538719831533,41.93978270035102],[-87.63530957366466,41.93983642697465],[-87.63523606782474,41.93989330671915],[-87.63523327861574,41.939895720036944],[-87.6351669030368,41.93995314912311],[-87.63510234014147,41.94001576341112],[-87.63507739674803,41.94004293449428],[-87.63504248965421,41.94008095871678],[-87.63501231563451,41.94011809459919],[-87.63498757455966,41.940148544583046],[-87.63487820284867,41.940432503488275],[-87.6347851610536,41.94067406472135],[-87.63478326830649,41.940688058304914],[-87.63517029342117,41.94071055162463],[-87.6351532639941,41.940858614528885],[-87.63513001954048,41.94086998104175],[-87.63510696301904,41.940864087034335],[-87.6350974398338,41.94085395949907],[-87.63511208733534,41.94074759884547],[-87.63477533681571,41.94072829923493],[-87.63477515168438,41.94072828850379],[-87.63477513698908,41.94072828786554],[-87.63477512192925,41.940728286950645],[-87.63476380901459,41.94074191531784],[-87.63472782016804,41.94098997229338],[-87.63472735237715,41.9409931947223],[-87.63469970889071,41.941414400360685],[-87.6346069152287,41.941530456553764],[-87.63460183751042,41.941536806773335],[-87.63460177713661,41.94153688269506],[-87.63454542421786,41.941561415757256],[-87.63448322644678,41.94158849305101],[-87.63444752581135,41.941593789417546],[-87.63444752646149,41.94159383085914],[-87.63445017158303,41.94172905713544],[-87.63445275530987,41.94186115490524],[-87.63434069869062,41.941860472752644]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3330019.59873","perimeter":"0.0","tract_cent":"1172540.69561933","census_t_1":"17031071300","tract_numa":"15","tract_comm":"7","objectid":"402","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914845.47225853","census_tra":"071300","tract_ce_3":"41.92177836","tract_crea":"","tract_ce_2":"-87.64145976","shape_len":"7653.25421152"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64306056104752,41.918261306055086],[-87.64366706334974,41.918253160202994],[-87.64367963447042,41.9186327999932],[-87.64369894810456,41.91920387954627],[-87.64372839312584,41.920071806175784],[-87.64374392656042,41.92053128572038],[-87.64374881215201,41.92068474329152],[-87.64375795928224,41.92098863877058],[-87.64376988664797,41.92138245171917],[-87.64378714212138,41.921886599078675],[-87.64378718590028,41.92188789104787],[-87.64379644074852,41.92215829358061],[-87.64379824786404,41.92221648198032],[-87.64380056106324,41.92229097410852],[-87.64380511823035,41.92243765279815],[-87.64381120985956,41.92262610778398],[-87.64381691170858,41.92279384125977],[-87.64382284651917,41.9229684372372],[-87.6438304990787,41.92322693416125],[-87.64383648931522,41.923407787012756],[-87.64384250100946,41.923598799376215],[-87.64384582673132,41.92370447688152],[-87.64386060035383,41.924173904036365],[-87.64386438884073,41.92429428373977],[-87.64387502443098,41.924617040770556],[-87.64388535607397,41.92493049304272],[-87.64388878743661,41.92504947514822],[-87.64389525671925,41.925273744965565],[-87.64389883786771,41.92535065958199],[-87.6439126568449,41.92543851705969],[-87.64392739069804,41.92553219174168],[-87.64315417583538,41.925543879666385],[-87.6427456669087,41.925550135777335],[-87.64271642364118,41.925550583652],[-87.64156835679712,41.925568157356864],[-87.64150198234721,41.925569169076454],[-87.64098732817328,41.925577047147115],[-87.6404794669768,41.9255845465049],[-87.64017489544601,41.925111445434794],[-87.63999165707851,41.92480778858359],[-87.63981278643787,41.92451151232438],[-87.6396898334963,41.92430797156886],[-87.63956723888602,41.92410531099206],[-87.63936614966718,41.923770343699765],[-87.63916920324041,41.923442273168135],[-87.63913100284516,41.92337863859024],[-87.63912722335174,41.92337241983276],[-87.63903266196581,41.923216820878494],[-87.6390335177742,41.92319421392897],[-87.63904542891366,41.92287974281035],[-87.63900612705939,41.92285429672327],[-87.63899744845915,41.92284867758643],[-87.63899558495197,41.92284747120837],[-87.63897876604521,41.92282278126061],[-87.63896663835754,41.92277210444243],[-87.6389618743855,41.922669277025065],[-87.63895780795546,41.922563050986945],[-87.6389547034504,41.922483367405185],[-87.63894865511267,41.92232951709921],[-87.63894587550247,41.92226053795089],[-87.63894297689444,41.92218897851184],[-87.6389429066517,41.922187221783915],[-87.63894106987972,41.92214119004545],[-87.6389367704204,41.92196062266482],[-87.63893331891754,41.921815650794095],[-87.63892430295141,41.92156611887696],[-87.63889465803062,41.920745334252125],[-87.63888896373781,41.92057661206804],[-87.63888203233716,41.92037122010659],[-87.6388743756537,41.92014264877428],[-87.63886162974579,41.91976215326394],[-87.6388382824052,41.91910273945559],[-87.63882580728529,41.918657248810284],[-87.63881550730929,41.91832237537314],[-87.63908403521256,41.91831838952119],[-87.63942165235541,41.918312811814666],[-87.6396325198146,41.918309327740104],[-87.64002962718897,41.91830326653208],[-87.6405664550826,41.918295070625774],[-87.6406378573598,41.9182941152874],[-87.6412456534649,41.91828598125126],[-87.64164706930517,41.91828060753835],[-87.64185064380668,41.91827784164503],[-87.64245547492938,41.918269563699965],[-87.64295787700526,41.918262684590474],[-87.64306056104752,41.918261306055086]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2635141.2917","perimeter":"0.0","tract_cent":"1169674.06811902","census_t_1":"17031062100","tract_numa":"17","tract_comm":"6","objectid":"403","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922443.92467055","census_tra":"062100","tract_ce_3":"41.94269184","tract_crea":"","tract_ce_2":"-87.65177051","shape_len":"6631.37033618"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65396137196848,41.939916418778445],[-87.6541058165044,41.93991237413251],[-87.65412110232667,41.94036736036438],[-87.6541302439707,41.94066620467254],[-87.65413934754848,41.940965213392474],[-87.65415276538457,41.94143260523983],[-87.65415997739377,41.94165419362801],[-87.65416282079958,41.94174154949251],[-87.65417768424096,41.94219819661927],[-87.65418600864359,41.94245982443994],[-87.65419778344354,41.94287427054029],[-87.65420033437964,41.94296986690469],[-87.65420330392274,41.94308143652433],[-87.65420769223326,41.94323596176748],[-87.65421469954678,41.94346633859228],[-87.65421979158353,41.94357059123407],[-87.65422022156338,41.94357939666857],[-87.65422424583919,41.943661790812904],[-87.6542246296458,41.943669647848054],[-87.65422629233942,41.943762357245475],[-87.65422898649742,41.94391720175479],[-87.65423151649668,41.944059806093435],[-87.65424214575857,41.94438110008831],[-87.65424496895822,41.944466428639615],[-87.65425322435055,41.94471596631128],[-87.65425598685182,41.94480895661804],[-87.65426159716256,41.94500075546477],[-87.65426816024566,41.94522400862921],[-87.65427161693708,41.94539606382822],[-87.65404418280528,41.945401496645815],[-87.65397274418783,41.945403077232534],[-87.6538301337893,41.94540544402989],[-87.65370619974637,41.94540748213115],[-87.6536693319732,41.94540809401291],[-87.65362501564488,41.9454088294579],[-87.65355352936942,41.945410015706926],[-87.65350752259398,41.94541077896792],[-87.65346588858114,41.945411473977536],[-87.65330730108874,41.94541412119802],[-87.65305936497528,41.945417708911236],[-87.65286863328117,41.94542046829966],[-87.6526868757348,41.94542271142333],[-87.65244942268927,41.94542567583332],[-87.65226409834682,41.94542799784766],[-87.6520066087918,41.94543119044936],[-87.65184332000635,41.94543544055553],[-87.65170870994056,41.94543894440137],[-87.65160224105513,41.945440507632945],[-87.65138555327884,41.94544369385254],[-87.65123140187433,41.945445938651936],[-87.65108842600374,41.94544802078531],[-87.65081357754391,41.94545204031671],[-87.65064497134952,41.94545503263991],[-87.65052636790112,41.945457028477975],[-87.65035139668834,41.94546059804313],[-87.6501598070397,41.94546450753152],[-87.65002700669949,41.945467229840254],[-87.64976890656997,41.945472499116356],[-87.64957801581433,41.945476356910454],[-87.64942984967314,41.94546126461382],[-87.64942277215198,41.945271180467614],[-87.64941769980075,41.94504763406882],[-87.64941220586743,41.944805067749755],[-87.64940965203112,41.94469314350534],[-87.64940355240394,41.94452892059113],[-87.6493964363362,41.944337332079805],[-87.64938967827405,41.94411328191824],[-87.64938870689463,41.94408111367001],[-87.64938405858406,41.943927135850245],[-87.64937818061706,41.943730834645294],[-87.64937492120761,41.9436161850136],[-87.64936925839568,41.943416952886544],[-87.64936644561973,41.94323647687275],[-87.64936341196037,41.94305599926301],[-87.64936084000186,41.94292524956472],[-87.6493616162318,41.94283140205283],[-87.64935757647805,41.94270905352545],[-87.64933152031479,41.94191989621245],[-87.64932713357204,41.941795493748195],[-87.64930348275732,41.94112475776542],[-87.64930154993151,41.94106662349477],[-87.64928437706428,41.940550252198555],[-87.64927666846366,41.94031845725939],[-87.64926661399129,41.93998093510221],[-87.64973394023507,41.939974531396935],[-87.65003915635259,41.93997071188266],[-87.65060160131316,41.93996261768206],[-87.65068653335149,41.93996138532533],[-87.65119010631376,41.939954075946666],[-87.65150937511851,41.93994944030089],[-87.65160421419716,41.93994806302542],[-87.65183125354314,41.93994476601922],[-87.65220429897084,41.93993973495517],[-87.65248382661918,41.93993587701451],[-87.65288807834499,41.93992727331712],[-87.65324321392745,41.939919713706985],[-87.65326823808476,41.93991959903556],[-87.6533950011766,41.939919017759486],[-87.65349988761317,41.939918536501914],[-87.6535195970759,41.93991844628859],[-87.65396137196848,41.939916418778445]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10639171.4536","perimeter":"0.0","tract_cent":"1161461.85441717","census_t_1":"17031040400","tract_numa":"45","tract_comm":"4","objectid":"406","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1933191.39352766","census_tra":"040400","tract_ce_3":"41.97235866","tract_crea":"","tract_ce_2":"-87.68165379","shape_len":"13325.5031132"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68857501963164,41.968617785331276],[-87.68890658228806,41.96861492584193],[-87.68891427342359,41.9689713797236],[-87.68892362697677,41.969218136209044],[-87.68893033285615,41.96939193687098],[-87.68894114465351,41.969718145959625],[-87.68894770256563,41.96991601271943],[-87.68895154199663,41.970045862563786],[-87.68895973233545,41.97023292603659],[-87.68896461372852,41.97041223529408],[-87.68896869172036,41.97050262179658],[-87.68898436712313,41.97099213850707],[-87.68898466423488,41.97099943728639],[-87.6889863808234,41.97104161380414],[-87.68899645136858,41.971289046824765],[-87.68900601262351,41.971540826263485],[-87.68901956448244,41.971907445548204],[-87.68902446854942,41.97204479299542],[-87.68902991046487,41.972249842945764],[-87.68903860955574,41.972577632194955],[-87.68904336480738,41.97275682760798],[-87.68904772665873,41.97287139510891],[-87.68905026090913,41.97294125724775],[-87.68905296780741,41.973015882369424],[-87.68906274944739,41.9732854972635],[-87.6890708925593,41.973601373219296],[-87.68907301397981,41.973704649458],[-87.68908748275726,41.9741001155833],[-87.68909374455095,41.974271278890015],[-87.68910165317145,41.97447911424528],[-87.68911636455721,41.97491713244485],[-87.68912476398695,41.97516721531832],[-87.68913353326363,41.975464790857814],[-87.68913596656621,41.975533519316514],[-87.68915069823998,41.97589154188474],[-87.68880708102759,41.97589464883272],[-87.68861298099662,41.97589797709368],[-87.68856623260696,41.975898592689276],[-87.68832079398919,41.975901824199966],[-87.68817652642488,41.975905074952216],[-87.68795389528577,41.97590770361782],[-87.68775296450774,41.97591007600915],[-87.68752299069908,41.97591506646748],[-87.68728177524976,41.97591892323803],[-87.68713542093377,41.97592122790985],[-87.68699355326342,41.97592346051076],[-87.6867317851117,41.975926922147565],[-87.68619136162683,41.975934241295185],[-87.68558645322938,41.97594323355869],[-87.6849384387142,41.97595274755445],[-87.6846650074882,41.97595658151796],[-87.6842901955319,41.975961221486294],[-87.68400450211783,41.97596475732955],[-87.68381095045638,41.97596832754971],[-87.68352603899683,41.97597275272868],[-87.68329795768322,41.97597609891315],[-87.68303912303038,41.975980220212136],[-87.68276781965291,41.975984539200425],[-87.68251615507117,41.97598884813899],[-87.68233342401496,41.97599157162412],[-87.68184546258762,41.97599702018362],[-87.68124153181809,41.976003760768506],[-87.68065977068422,41.97601121202661],[-87.6802043981406,41.97601959899942],[-87.68004020028259,41.97602259825476],[-87.6797713909007,41.97602750777002],[-87.6794035085425,41.97603298461238],[-87.67900607617892,41.9760388999681],[-87.67864964224788,41.97604626152104],[-87.67864059307635,41.97604644811163],[-87.67820725314387,41.97605086422382],[-87.67788460514996,41.97605428206277],[-87.6777982229386,41.976055197157265],[-87.67771741814795,41.97605597115451],[-87.67723944161571,41.976063037265966],[-87.67714642057659,41.976064418586716],[-87.6768004160248,41.976069555500224],[-87.67640736406908,41.97607535408956],[-87.67623743759135,41.976077860409546],[-87.675663089307,41.97608674121163],[-87.67564168189749,41.97608707218667],[-87.67543825569699,41.97608883106988],[-87.67491753185853,41.97609359919717],[-87.67479523937305,41.97609478822519],[-87.67462501919942,41.976099375516725],[-87.6745349764389,41.9761018019828],[-87.67440756779531,41.97610340524942],[-87.67440395328953,41.97601526630958],[-87.67439621657711,41.97565984794665],[-87.67438752041743,41.975272646210406],[-87.6743853521586,41.975185203804365],[-87.67438323431779,41.97509979184608],[-87.67437113704659,41.974721461760254],[-87.67435938017908,41.97435649786214],[-87.67435669302682,41.97427865689296],[-87.67435450986274,41.97421539052403],[-87.67435408238438,41.97404634527419],[-87.67434889710347,41.973846537653394],[-87.67434821658897,41.973820299181945],[-87.6743445549484,41.973679171326495],[-87.67433814548214,41.973455427228004],[-87.67431267853443,41.973368124646164],[-87.67428515118749,41.973273759003106],[-87.67427745230361,41.97294328520255],[-87.67426654373138,41.972553216606045],[-87.67426430282914,41.97247316195508],[-87.67425498757372,41.97214025761859],[-87.67424788704149,41.97188731145102],[-87.67424240708442,41.97178903699845],[-87.67423659003464,41.97168472418668],[-87.67422940680163,41.97143984520441],[-87.67422787510945,41.97138731237451],[-87.67422777642662,41.971383936438855],[-87.6742174726977,41.971031549109185],[-87.67420499162523,41.97060494601054],[-87.67419955199448,41.970418775493926],[-87.6741946846978,41.97025288791783],[-87.67420207345799,41.97016039581218],[-87.67420846519116,41.97004333736199],[-87.67420140714108,41.96977559981443],[-87.67419509948213,41.96953495185012],[-87.67418564080201,41.969175461770455],[-87.67417600084575,41.968937072336814],[-87.67417408633298,41.96882177350465],[-87.67430925249167,41.96882024821206],[-87.67437792289859,41.9688193084344],[-87.67443429213117,41.968818536760935],[-87.67452369189952,41.96881731301875],[-87.67457518964622,41.96881660799551],[-87.67461718678575,41.968816033122],[-87.67474729977245,41.96881461168777],[-87.67481714361841,41.96881384440327],[-87.67488844636395,41.968813061294696],[-87.6754501769297,41.96880546951967],[-87.67554509894686,41.96880418469641],[-87.6760185280772,41.96879777596669],[-87.67620511037677,41.96879495858834],[-87.67639939607831,41.96879202500074],[-87.67702245992297,41.96878463954404],[-87.67753695968327,41.96877857843651],[-87.677696502701,41.96877591646326],[-87.67781632610159,41.96877391715034],[-87.67787288476026,41.96877356336093],[-87.67803558801518,41.96877110748625],[-87.67827846126349,41.96876799305679],[-87.6784386972667,41.968765916051666],[-87.67852092994187,41.96876484836382],[-87.67918558430992,41.968756178794344],[-87.67976387178601,41.968748632806694],[-87.6798155809027,41.96874788794238],[-87.67987037856743,41.96874709861588],[-87.68021851333108,41.96874194474813],[-87.68040831891285,41.96873925193575],[-87.680800915668,41.96873368122397],[-87.68100962574792,41.96873071918575],[-87.68112425998443,41.96872909197871],[-87.68127578228089,41.96872687918319],[-87.68161358942785,41.96872108092827],[-87.68183801079024,41.96871722826428],[-87.68197437994971,41.96871528529985],[-87.68241906425641,41.96870777627656],[-87.68247680585712,41.968706801247116],[-87.68286531526793,41.96870168081204],[-87.68308104699517,41.96869883684301],[-87.68341395557019,41.96869386146102],[-87.6837174418891,41.968689322356134],[-87.68404138807571,41.968684736806026],[-87.68433934205656,41.96868051822106],[-87.6845725122605,41.96867687980894],[-87.68462723692416,41.968676025779956],[-87.68499177583519,41.968670373843864],[-87.68525572388566,41.96866673881176],[-87.6855711955835,41.96866239336224],[-87.68585593730535,41.96865697418622],[-87.68623470978433,41.96865101466318],[-87.6864735184642,41.96864722058364],[-87.68682631464696,41.96864161465704],[-87.68703851938791,41.9686385010748],[-87.68720158481116,41.96863656497547],[-87.68768815396601,41.968635972613434],[-87.68785921853207,41.96863576386123],[-87.68804532555188,41.96863159609469],[-87.68816905351912,41.96862883378101],[-87.68830477133461,41.96862580939554],[-87.68857501963164,41.968617785331276]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1806077.65109","perimeter":"0.0","tract_cent":"1162881.47320933","census_t_1":"17031041000","tract_numa":"11","tract_comm":"4","objectid":"407","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1929905.42778418","census_tra":"041000","tract_ce_3":"41.96331207","tract_crea":"","tract_ce_2":"-87.67652624","shape_len":"5371.481242"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67861271714195,41.96146334221102],[-87.6789591487396,41.96145824660338],[-87.67896477385001,41.961717761590975],[-87.67897758628,41.96193890796077],[-87.67899016580934,41.962146853356856],[-87.67900183380274,41.9623648373469],[-87.6790083831098,41.96259434526565],[-87.67901432816208,41.9628039267893],[-87.67901853918369,41.96295296122058],[-87.67902906679126,41.96327412304475],[-87.67903453984758,41.96344108212967],[-87.67903789069358,41.963569941723854],[-87.6790383060881,41.963585942815186],[-87.67904291257263,41.9637619550286],[-87.6790476374839,41.96394342860764],[-87.67905732727078,41.96421960586506],[-87.67906548691579,41.964452141786104],[-87.67906894010154,41.964553038480744],[-87.67907622261505,41.96480439436734],[-87.67907911547512,41.96491700562147],[-87.67908350563576,41.96509599210267],[-87.67878665996045,41.96509925526641],[-87.6786654120868,41.965101033706354],[-87.67839228333618,41.96510496456581],[-87.67833822349229,41.96510574834507],[-87.67816416703724,41.96510827296706],[-87.67791041736305,41.965112056962184],[-87.67772988966856,41.96511452038084],[-87.6775949911589,41.96511721451059],[-87.67740400662012,41.96512102875971],[-87.67685228662454,41.96513075405003],[-87.67671628873833,41.96513315134688],[-87.67622484117445,41.96513868160835],[-87.67610711551696,41.96513958344383],[-87.67531504079422,41.96515101867033],[-87.67511312657787,41.96515487046769],[-87.67495285885367,41.96515732685118],[-87.67474228915648,41.96515987864734],[-87.67462232904109,41.96516177079538],[-87.67449861338683,41.96516372194569],[-87.67442370729242,41.965164391931935],[-87.67432927026132,41.96516523652858],[-87.67427953793519,41.96516568127644],[-87.67417155331854,41.96516664692546],[-87.67407748918937,41.96516926868252],[-87.67407846747494,41.96506888522638],[-87.67406770887494,41.964710786942106],[-87.67405951071993,41.96444312492031],[-87.67404943218949,41.96411540886132],[-87.67403991755236,41.96380429846829],[-87.67403233453933,41.96355730380847],[-87.67402885215535,41.963443893207746],[-87.67402556748722,41.96334925246488],[-87.67402227549705,41.9632543954349],[-87.67401211735195,41.96286306786689],[-87.67400107929183,41.962435841543055],[-87.6739900617027,41.962010206670044],[-87.67398040540915,41.961637954411955],[-87.67397665771156,41.961525435762496],[-87.6741086692459,41.961522089620985],[-87.67417710416963,41.961521262209466],[-87.67423231617086,41.961520594847066],[-87.67432302696281,41.96151949787066],[-87.67452106538576,41.961517509650854],[-87.67464777916074,41.96151629272808],[-87.67491033874987,41.96151252995116],[-87.67507806716122,41.96150816937482],[-87.67515071662524,41.96150628048777],[-87.6752464645223,41.96150447127205],[-87.67585413112857,41.96149774143223],[-87.67600124242031,41.961495307514625],[-87.67618189735228,41.961492318444094],[-87.67673901938893,41.961484006460395],[-87.67681208046817,41.961482916068135],[-87.67736264935266,41.96147470244],[-87.67748786852208,41.96147304272729],[-87.67761873338344,41.96147130809934],[-87.67794776526804,41.96146785599202],[-87.6782325441106,41.96146564987096],[-87.67830418226852,41.96146509513478],[-87.67861271714195,41.96146334221102]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4399704.54738","perimeter":"0.0","tract_cent":"1164216.86585779","census_t_1":"17031030900","tract_numa":"21","tract_comm":"77","objectid":"408","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935922.71630253","census_tra":"030900","tract_ce_3":"41.97979555","tract_crea":"","tract_ce_2":"-87.67144555","shape_len":"8546.49878859"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67429832885878,41.9761047795372],[-87.67440756779531,41.97610340524942],[-87.67441159439015,41.97620158648414],[-87.67442043664629,41.97643549797722],[-87.67442926167685,41.97678164714184],[-87.67443349279111,41.976949149949235],[-87.67443514810127,41.97701458090091],[-87.67443704649283,41.97708964593728],[-87.67444243964212,41.97728067319692],[-87.67444316193851,41.97730625328413],[-87.67445159880509,41.977604486442765],[-87.67445757627661,41.97781664737467],[-87.67445190621741,41.97789575754491],[-87.67443286544368,41.97792328234895],[-87.67437298331677,41.97800984743074],[-87.67437244975717,41.978075869805224],[-87.67438010616587,41.97834632715305],[-87.67439074052797,41.9787203402128],[-87.67439357976374,41.978838274468046],[-87.67439604477512,41.97894067495555],[-87.67440458062723,41.97926500593245],[-87.67441803676543,41.97968283253736],[-87.67446285651312,41.97974799886076],[-87.67450764592364,41.9798131199871],[-87.67451926452006,41.98019877399128],[-87.67452982967413,41.980547485015585],[-87.67453306471276,41.98066119571137],[-87.6745364709777,41.980780917181285],[-87.6745457739924,41.981130773489404],[-87.67455608787606,41.981475339275065],[-87.67455964275203,41.98157330009251],[-87.6745634204057,41.981677408915004],[-87.67457291269064,41.98195893600936],[-87.6745861140393,41.98237311115813],[-87.67458790885254,41.98248568815699],[-87.67458924134361,41.982569256884645],[-87.67459330419672,41.982749573955275],[-87.6746013607817,41.98303841948881],[-87.67460864097951,41.98325629562028],[-87.67460924399396,41.98335739913635],[-87.67447399950106,41.98339443419386],[-87.67426021650333,41.98340308613159],[-87.67402342543899,41.98340665390334],[-87.67397273515313,41.98340741763399],[-87.6735963776658,41.98341310346082],[-87.67322284191096,41.98341982018087],[-87.67301602124572,41.98342390781781],[-87.67286022552932,41.98342698653862],[-87.67279908356316,41.98342819482445],[-87.67244767187704,41.98343311510766],[-87.67226675480622,41.98343616200657],[-87.672074581447,41.9834393913085],[-87.67151682689885,41.98344833394613],[-87.67094833503099,41.9834570198252],[-87.67044129613996,41.98346493072158],[-87.67006605532389,41.98347069594169],[-87.66981613122383,41.98347583994127],[-87.66962882893485,41.98347969455589],[-87.66925938887856,41.9834850771255],[-87.66893601315225,41.98348896883049],[-87.66875743264303,41.98348951854382],[-87.66872642419507,41.9833454141534],[-87.66864945810553,41.9829903357364],[-87.66858895345375,41.98269347520799],[-87.66856378790585,41.982551591987914],[-87.66853816077717,41.9824071023919],[-87.66848215303261,41.982056367672634],[-87.6684454689282,41.981817382613194],[-87.66842948136255,41.981670284189995],[-87.66841391710007,41.98152708332651],[-87.66839468456538,41.98128638813907],[-87.66838498566571,41.98116520308159],[-87.66836089754493,41.98086454647125],[-87.66835195123576,41.980757360895815],[-87.66833915072034,41.980603996133276],[-87.66831353615376,41.9802980889497],[-87.66829198787491,41.98002906015597],[-87.66827947152154,41.97984413599103],[-87.66827190543113,41.9797323511524],[-87.66829162730193,41.97939572483148],[-87.66830935132637,41.979038971938586],[-87.66831018591651,41.97893097801503],[-87.66831083656766,41.97884677687271],[-87.66833165968387,41.978457276161066],[-87.66834753301082,41.97811928280437],[-87.66834960048617,41.97801897454823],[-87.66835213776717,41.977895849349714],[-87.66836579637068,41.97760106426664],[-87.66837892992669,41.977317884088905],[-87.66838201992563,41.97724572954318],[-87.66838816552834,41.977105042592825],[-87.66839268041483,41.97699656309581],[-87.66840549450852,41.9766945009411],[-87.66842383870652,41.97628511770137],[-87.66841697209803,41.97619059403079],[-87.6686028548718,41.97618705668097],[-87.66902893495075,41.97618068643709],[-87.66961376894655,41.97617213298717],[-87.67022735392065,41.976163155921796],[-87.67079412237864,41.97615486092691],[-87.67135069808845,41.976147040026284],[-87.67193585395414,41.976138777365044],[-87.67207387804504,41.97613714633226],[-87.67221373049362,41.97613549328124],[-87.67273812600183,41.97612775474664],[-87.67429832885878,41.9761047795372]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1752954.70995","perimeter":"0.0","tract_cent":"1153160.34624111","census_t_1":"17031271500","tract_numa":"8","tract_comm":"27","objectid":"644","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896479.18030913","census_tra":"271500","tract_ce_3":"41.87178647","tract_crea":"","tract_ce_2":"-87.71315634","shape_len":"5299.02444992"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71529536619371,41.86994969358082],[-87.71553452253389,41.86994284693097],[-87.7155401779764,41.87015608879244],[-87.7155453684368,41.87033388941283],[-87.71554810870781,41.870487801848626],[-87.71555429513447,41.87069181542879],[-87.71555896631996,41.870839396822895],[-87.71556614707345,41.87106625011468],[-87.7155708813067,41.87122280773866],[-87.7155725874809,41.871296326655575],[-87.7155755002536,41.87142184576368],[-87.71558363854983,41.871606193520584],[-87.71558852718448,41.87174977301944],[-87.71559460080692,41.87192815326033],[-87.7156019702671,41.872127535365195],[-87.7156047828539,41.87219986180663],[-87.715615537486,41.87247640275349],[-87.71562302317487,41.872657737617736],[-87.71562765488147,41.872769938208265],[-87.71563093879561,41.8728941058146],[-87.71563883220148,41.87310578714435],[-87.71565732202806,41.87343349313007],[-87.7156583806038,41.873568108192046],[-87.71556370129638,41.87356993401364],[-87.7153025329588,41.87357362683023],[-87.71506225713223,41.87357727318804],[-87.71476643033806,41.87358072961997],[-87.71435607965071,41.87358444625362],[-87.71395350293766,41.87358916383595],[-87.71355833773866,41.873594468854925],[-87.71322222422725,41.8735986918172],[-87.71273624988505,41.873604793435106],[-87.71238001238653,41.87360923449359],[-87.71187666972804,41.87361543066025],[-87.71151191545901,41.87361976805316],[-87.71106971473942,41.873625111691624],[-87.71078177066471,41.873628347274625],[-87.71077785539475,41.87339369862548],[-87.71077310919371,41.873254704294986],[-87.7107698129098,41.87317523129887],[-87.71076697962648,41.8731069205835],[-87.71075944121208,41.87291513888234],[-87.7107521299061,41.87272394594979],[-87.71074526708144,41.87254450577778],[-87.71073561742034,41.872324364492435],[-87.71073421180999,41.872270347531085],[-87.71073109782722,41.872150683747925],[-87.71072973393373,41.87202260212736],[-87.7107218715248,41.871816820751995],[-87.71071570906079,41.871655537299176],[-87.71071107748963,41.87145935306061],[-87.71070748538583,41.8713633122083],[-87.71070495552165,41.87129568012218],[-87.7106994964873,41.8711393653687],[-87.71068902014395,41.87090051280032],[-87.71068302149844,41.87076375257294],[-87.71067633130166,41.87053481793603],[-87.71067467010444,41.870477975735895],[-87.71067102096953,41.870373482533836],[-87.71066515771544,41.87019833971534],[-87.71065978966098,41.87000410369398],[-87.71084017482632,41.870002031611634],[-87.71129371252506,41.869994939018675],[-87.71137438450053,41.86999399557743],[-87.71161926599575,41.869991131029884],[-87.71211464309737,41.86998566125322],[-87.71239661285877,41.86998217402986],[-87.71264212051004,41.869979018149074],[-87.71293675256925,41.869975945181174],[-87.71309743462379,41.86997419259005],[-87.71327163037134,41.86997229237326],[-87.71344384721517,41.869969892733884],[-87.71360662735677,41.869967624132734],[-87.71405559180381,41.869962609027496],[-87.71437226414574,41.86995836114827],[-87.71473751440696,41.8699537154426],[-87.71508607857886,41.86995087228453],[-87.71529536619371,41.86994969358082]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3513218.1869","perimeter":"0.0","tract_cent":"1168129.29918626","census_t_1":"17031031600","tract_numa":"19","tract_comm":"3","objectid":"409","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930708.59190941","census_tra":"031600","tract_ce_3":"41.96540398","tract_crea":"","tract_ce_2":"-87.65720857","shape_len":"7964.24893036"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65933012538008,41.961719206933054],[-87.65958466148675,41.96171630119748],[-87.65958780351559,41.96197653404648],[-87.6595894872455,41.962095916891705],[-87.65959255422904,41.9623352845367],[-87.65959485143865,41.96251509838778],[-87.65959695247562,41.96268212308315],[-87.65960089255547,41.9629752548161],[-87.65960435210536,41.963232681600644],[-87.6596082541428,41.9633997717284],[-87.65961111063757,41.96347764159897],[-87.65963681881016,41.9635171663207],[-87.65962741990657,41.965367307646254],[-87.65963206728512,41.965697497012776],[-87.65963592200546,41.96602265295471],[-87.65963987183949,41.96631784272834],[-87.65964316502709,41.96657065812501],[-87.6596460077953,41.96686622556269],[-87.65964851704557,41.96710270832323],[-87.65965004293432,41.96719848422216],[-87.65965626298402,41.967644871188895],[-87.65966515025262,41.96820435662288],[-87.65966676335852,41.96823510939652],[-87.65967396925836,41.96837246337176],[-87.65967014290378,41.968414509551884],[-87.6596654009899,41.96887852644517],[-87.65967036299939,41.969025314705114],[-87.6594842921456,41.96902930138703],[-87.65921635923542,41.969033983820495],[-87.65901398396302,41.96903581420148],[-87.65888353506779,41.96903756461594],[-87.65865695144473,41.9690406044875],[-87.65842199377913,41.96904304721373],[-87.65842189448657,41.96904304800209],[-87.65831952156661,41.969044112124415],[-87.65816117450294,41.96904575777788],[-87.65777219457503,41.96904983602156],[-87.65762482574735,41.969052316931744],[-87.65745453875977,41.96905518357857],[-87.65692406747986,41.969060944213446],[-87.65677296594225,41.96906258481349],[-87.65631582178227,41.96906908292211],[-87.65622046452037,41.96907066705486],[-87.65606712606376,41.969073214212195],[-87.65555445351316,41.96908002603029],[-87.65550248778126,41.96908071646362],[-87.65500282606712,41.96908795115081],[-87.65482207286492,41.969090295689504],[-87.65481753047821,41.968873274872315],[-87.65481085684127,41.968278978337004],[-87.65481019075293,41.968183530750636],[-87.65480912160879,41.968030151205426],[-87.65480410149462,41.967729219948396],[-87.65479783988137,41.96735380311288],[-87.65479823191924,41.96727202213484],[-87.65479893020792,41.967126315101964],[-87.65479590571638,41.9667980081672],[-87.6547924230479,41.96637365137608],[-87.65479152746423,41.966264591425585],[-87.6547905037919,41.96592490617485],[-87.65479035679805,41.965876005238144],[-87.65479052441363,41.965551778521416],[-87.65478731157948,41.96543027965184],[-87.65478257335927,41.96525110395817],[-87.65478104675555,41.96475395487032],[-87.65477967027368,41.96454755511095],[-87.65477670356778,41.96444624898381],[-87.65477432642797,41.964365061359835],[-87.6547716152042,41.96398991254344],[-87.6547706008479,41.963732061054124],[-87.65476856846549,41.96360698464262],[-87.65476593780151,41.96344504452924],[-87.65476220591552,41.96319952587696],[-87.65475987184865,41.96298288451637],[-87.65475822837104,41.962825906255325],[-87.65475812175256,41.96268424946601],[-87.65475802941344,41.9625605129686],[-87.65475580342681,41.962319860423634],[-87.65475463099082,41.96222885563389],[-87.65475362591583,41.96215080448295],[-87.65475066211688,41.96196925775338],[-87.65474851033177,41.96177872003632],[-87.6549121782064,41.961775648117936],[-87.65514433404921,41.9617732747425],[-87.65539359388825,41.96177072610691],[-87.65552444609949,41.96176765656501],[-87.65562708730546,41.961765577303204],[-87.65573318468275,41.96176342778967],[-87.65610388101666,41.96175612014076],[-87.65634342102855,41.961756262349034],[-87.65647637237747,41.96175634100205],[-87.65691161356868,41.96175432339029],[-87.6569374247933,41.96175391592031],[-87.65702078200933,41.96175259939316],[-87.657101427517,41.96175132555897],[-87.65715332871115,41.961750505857914],[-87.6572553603861,41.961748272814106],[-87.65727620075276,41.96174781678561],[-87.65733164720663,41.96174660323131],[-87.65750803566452,41.96174274275261],[-87.65791149755573,41.96173836634778],[-87.65806259551704,41.96173671102919],[-87.65823420856519,41.961734830928364],[-87.65862246715042,41.961728688656976],[-87.65891216648032,41.961724600571266],[-87.65895938230686,41.96172399127547],[-87.65933012538008,41.961719206933054]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5845018.45959","perimeter":"0.0","tract_cent":"1167296.15178733","census_t_1":"17031032000","tract_numa":"3","tract_comm":"3","objectid":"410","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1928121.36099053","census_tra":"032000","tract_ce_3":"41.95832252","tract_crea":"","tract_ce_2":"-87.66034657","shape_len":"9774.81806941"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66131592499143,41.954394097720424],[-87.66224996120182,41.95437810528629],[-87.66287968532953,41.955384487358074],[-87.66307139149541,41.95569852890761],[-87.66329427467247,41.95606047936604],[-87.66337728796461,41.95619528736144],[-87.66350136540945,41.956397265867416],[-87.66364844288694,41.95663668372112],[-87.66370664015632,41.95673114953956],[-87.66375831759068,41.9568132283633],[-87.66380872663697,41.956893598356544],[-87.66394433926064,41.95710920578599],[-87.66404966497039,41.95727842401929],[-87.66422533813173,41.95756697600622],[-87.66425807260366,41.95762074388323],[-87.6643374815989,41.95775117234565],[-87.6644711903031,41.95795581864044],[-87.66450543073346,41.958027587893454],[-87.66456872388682,41.95816025405553],[-87.66464496847546,41.95832976882794],[-87.66468357977458,41.95842055257829],[-87.66471422061277,41.958492986028254],[-87.66478741492058,41.958665968077185],[-87.66484546746024,41.95880321464905],[-87.66489614100466,41.958925078927756],[-87.66495062286482,41.95905610191857],[-87.66500154235396,41.95917944862677],[-87.66505525722386,41.95930967210089],[-87.66508414332915,41.959379709962796],[-87.66512224037298,41.959472080002705],[-87.6651863545839,41.95962755576187],[-87.66526883383953,41.95983873434657],[-87.66531383396801,41.95995395269088],[-87.66539594739818,41.96016746326769],[-87.66544607481306,41.96029774524941],[-87.66546632109194,41.960350362733465],[-87.66558115322438,41.96064883177869],[-87.66561348095193,41.96073093383524],[-87.6656723446202,41.96088042437477],[-87.66577840201508,41.96114964408129],[-87.66583424320278,41.961291405183516],[-87.66590570187012,41.96147274618392],[-87.66595356280655,41.96163462717876],[-87.66578567326427,41.96163661840663],[-87.6654586352162,41.96163920066308],[-87.66511380429085,41.96164486664632],[-87.6649350526269,41.96164729532277],[-87.66476174076851,41.9616496500221],[-87.66434583814922,41.96165535011523],[-87.66402628382158,41.96165949740345],[-87.66394574315075,41.961660438353526],[-87.66373735032403,41.96166287290407],[-87.66351264387045,41.96166549729515],[-87.66340108252672,41.96166680022561],[-87.66302379163274,41.96167197688038],[-87.66259023920192,41.96167784499964],[-87.66252650925131,41.96167852175576],[-87.6623304861048,41.961680603419275],[-87.66214267997555,41.96168259777258],[-87.66200850920451,41.961684022102524],[-87.6616456605243,41.96168989337929],[-87.66157501773814,41.96169103629176],[-87.66117448650546,41.96169648553019],[-87.66097197936482,41.96169904858509],[-87.66067790913223,41.96170277021568],[-87.66029517918876,41.96170759346874],[-87.6601814790401,41.96170902617444],[-87.65989328778166,41.961713071425756],[-87.65958466148675,41.96171630119748],[-87.65933012538008,41.961719206933054],[-87.65895938230686,41.96172399127547],[-87.65891216648032,41.961724600571266],[-87.65862246715042,41.961728688656976],[-87.65823420856519,41.961734830928364],[-87.65806259551704,41.96173671102919],[-87.65791149755573,41.96173836634778],[-87.65750803566452,41.96174274275261],[-87.65733164720663,41.96174660323131],[-87.65727620075276,41.96174781678561],[-87.6572553603861,41.961748272814106],[-87.65715332871115,41.961750505857914],[-87.657101427517,41.96175132555897],[-87.65702078200933,41.96175259939316],[-87.6569374247933,41.96175391592031],[-87.65691161356868,41.96175432339029],[-87.65647637237747,41.96175634100205],[-87.65634342102855,41.961756262349034],[-87.65633424646711,41.9615462572751],[-87.65631689127818,41.96106355882623],[-87.6563014785699,41.9604842485507],[-87.65629543302796,41.960256470913855],[-87.65628501801227,41.959856819777706],[-87.65627911789538,41.95963042111391],[-87.6562706981501,41.95929354748149],[-87.65626825876548,41.95919556462428],[-87.6562640940725,41.95902828117999],[-87.65626162163488,41.95893435982454],[-87.65625751235208,41.958778272242284],[-87.65624613877954,41.95861972718586],[-87.65623208581681,41.95841832018573],[-87.65621600090479,41.95818777417256],[-87.65621641419,41.95818728429919],[-87.65623041161611,41.958160473617745],[-87.65623400722603,41.95814381004079],[-87.65623287239019,41.95809125176997],[-87.6562296962983,41.95787032431147],[-87.65621906916053,41.957453745754364],[-87.65621071484604,41.957183666404966],[-87.65620237892011,41.95691880114668],[-87.65619626978992,41.9567145136888],[-87.65619391450527,41.956633398285454],[-87.65619274046587,41.95659295188224],[-87.65617824040704,41.956094216222574],[-87.65615858097343,41.95538485949148],[-87.65615249933639,41.955153651448434],[-87.65613555630691,41.95446205220996],[-87.65659023553519,41.95445283680408],[-87.65668017316314,41.95445224480079],[-87.65677399696621,41.954451627329945],[-87.65686300330515,41.95445104149549],[-87.65708834392599,41.954449554552575],[-87.65746945998576,41.954447039205725],[-87.65832614380845,41.95443476322588],[-87.65929492684714,41.954420274356664],[-87.65963825750458,41.95441513783881],[-87.65982136874229,41.95441239773231],[-87.66131592499143,41.954394097720424]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13993375.9278","perimeter":"0.0","tract_cent":"1157913.55005994","census_t_1":"17031020800","tract_numa":"65","tract_comm":"2","objectid":"411","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1939739.75691682","census_tra":"020800","tract_ce_3":"41.99040099","tract_crea":"","tract_ce_2":"-87.69452196","shape_len":"15865.4133735"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69892577276514,41.98312147004751],[-87.69915742133504,41.983120920144096],[-87.69916469457854,41.983329181313934],[-87.69917134902244,41.98351848542925],[-87.69917336638046,41.98357834753649],[-87.69919213661214,41.98413308109637],[-87.69919705729572,41.98428058147343],[-87.69920185985272,41.98442456862085],[-87.69920696934913,41.98458425427103],[-87.69921519492227,41.98483764403626],[-87.69921784001085,41.98492517604774],[-87.6992182668989,41.98493931212089],[-87.69922424899528,41.985137278093774],[-87.69922798316557,41.9852687732193],[-87.69923293383599,41.98541104164513],[-87.69923759553384,41.98554499602316],[-87.69924647181449,41.98580006961063],[-87.69924972791941,41.985950057968225],[-87.69925678131615,41.986110358034985],[-87.69926451243973,41.98636171429366],[-87.699273078002,41.98662539659333],[-87.69927762973286,41.98675747357837],[-87.6992868146805,41.98702398470501],[-87.69929543059393,41.98728624026906],[-87.69930254098317,41.987511249035684],[-87.69931233682,41.98782145192674],[-87.6993206201623,41.98808395259391],[-87.69933165865723,41.988432005052154],[-87.69933790212359,41.98857643912078],[-87.69934987752089,41.98885347693774],[-87.69936118447637,41.98916341395367],[-87.69936913306255,41.98940774613442],[-87.69937867558633,41.989736114367396],[-87.6993862436005,41.98994114754621],[-87.69939035918867,41.9900526397564],[-87.69939525193686,41.990174892951984],[-87.69940258958428,41.990442670860226],[-87.69941375911486,41.99085028636686],[-87.69941980011367,41.99107073344584],[-87.69942199291182,41.99114231442557],[-87.69942388446536,41.991204069249804],[-87.69943386874996,41.99148425176187],[-87.69944150752492,41.99170053646329],[-87.69945026023646,41.99192319383798],[-87.69945826673232,41.99218832748279],[-87.69946260905955,41.99233211951493],[-87.69946789542946,41.99250374315764],[-87.69947267052238,41.99265645675032],[-87.69947721235721,41.992803021507775],[-87.6994788832598,41.99285335924887],[-87.6994836384378,41.992996961724295],[-87.69949168630953,41.99323874218421],[-87.69949810523758,41.993437155107024],[-87.69950607899385,41.993690159164004],[-87.69951602167907,41.993977933130665],[-87.69952131170977,41.994131043043225],[-87.69952514913389,41.99421514631047],[-87.6995280789337,41.994298037120146],[-87.69953499804465,41.99447567949956],[-87.69953838171364,41.994579565887726],[-87.69954497634737,41.99478991724604],[-87.69955132174681,41.99497348389846],[-87.69955605629897,41.99512923968571],[-87.69955886554465,41.99522165545776],[-87.69956510005774,41.99543123642959],[-87.6995695494147,41.995590863234],[-87.69957676772408,41.995769627402794],[-87.69958112560761,41.99587755804756],[-87.6995873733182,41.996056156861975],[-87.69959266403298,41.9962088183195],[-87.69959832413531,41.99638735926972],[-87.69960111344133,41.9964955507223],[-87.69960498845893,41.9966166733112],[-87.69960994636516,41.996769552176886],[-87.69961264748537,41.99683954370917],[-87.69961620905143,41.99693182337778],[-87.69962352201209,41.99710032941289],[-87.69962722808383,41.997185721953414],[-87.69963225209284,41.99728744943457],[-87.69964220809574,41.99756081079229],[-87.69935048815947,41.99756571885172],[-87.69913734028675,41.99756901449288],[-87.69889821776798,41.997572550370364],[-87.69864235342015,41.99757632248722],[-87.69843005290274,41.997580450520175],[-87.69809623443969,41.997586940293026],[-87.69786619441443,41.99759085358385],[-87.69758553494358,41.9975946232901],[-87.69720527234064,41.9976021194118],[-87.69689440256302,41.99760824658808],[-87.69653577130664,41.997613721871645],[-87.69625508049575,41.99762061652876],[-87.6959865929255,41.9976251304362],[-87.69564425225697,41.99763100073089],[-87.69535397595038,41.99763624830358],[-87.69511835371297,41.99763916459534],[-87.69486160774859,41.9976443415801],[-87.69476465472992,41.997646296481555],[-87.69436948564099,41.997654153350005],[-87.69410577937698,41.99765850259218],[-87.69388328373,41.9976620931663],[-87.69354324552135,41.997667718377606],[-87.69327400291861,41.99767217151249],[-87.69303753038626,41.997675517861886],[-87.69276033263623,41.99767882856529],[-87.69232316372793,41.997688723058964],[-87.69198421462161,41.99769639360645],[-87.69165092736543,41.99770210498969],[-87.69141540321927,41.997706166788],[-87.69110412827557,41.99770993604308],[-87.69083407465767,41.99771320522615],[-87.69057155815067,41.99771626351164],[-87.69032290705952,41.99771970072633],[-87.69009188382681,41.997725005911185],[-87.68988296414578,41.99772980309359],[-87.68986868554745,41.997292747400536],[-87.68982355820535,41.995911422432776],[-87.68976415100754,41.99409292646066],[-87.68970470942412,41.99227329497465],[-87.68969203303466,41.99108817178996],[-87.6896853203487,41.99090026662129],[-87.6896725537845,41.99050000314954],[-87.68965633168456,41.98999139154512],[-87.68964718160676,41.98972026868791],[-87.68963807038052,41.9894964833966],[-87.68962166154313,41.98905139273154],[-87.68961364796651,41.988813563288474],[-87.6896078218513,41.98863244117589],[-87.68959838414526,41.988338786794685],[-87.68958702890683,41.987976324662405],[-87.68958017576371,41.987776673716844],[-87.68957181932632,41.98753277734917],[-87.68956613533364,41.98730832513894],[-87.6895490598692,41.98681174943948],[-87.68954115882835,41.986581961026204],[-87.689527267012,41.98613172515208],[-87.68951755482539,41.985832553263975],[-87.68950857796645,41.98550786445419],[-87.68950173437578,41.98527083723783],[-87.68949119029719,41.98499018369295],[-87.68948967057021,41.98494972899896],[-87.68947893777298,41.984664049754166],[-87.68947181834096,41.98441426043748],[-87.68946689881807,41.984249087052554],[-87.68946231581923,41.98406511779799],[-87.68946112088557,41.98388437825147],[-87.68945959751899,41.98359751873566],[-87.68945878091358,41.98343763719913],[-87.68944833314643,41.983167686748345],[-87.69005073696897,41.983165863995296],[-87.69012863884599,41.983165627899076],[-87.69065909163638,41.9831629221256],[-87.69091077085369,41.98316163767662],[-87.69123665584948,41.98316030508291],[-87.69143541283836,41.98316056591618],[-87.69187328653958,41.98315784450884],[-87.69223050086477,41.98315562379156],[-87.69252827725373,41.98315514590421],[-87.69275581200895,41.983153836241534],[-87.69308742217493,41.98315191152329],[-87.69329584865798,41.98315070140532],[-87.69370721979229,41.983148438840274],[-87.69399131640193,41.98314771628415],[-87.69430256275737,41.98314649927295],[-87.69446035438958,41.983145881937304],[-87.69458813747914,41.98314497392925],[-87.69513245891135,41.98314179748807],[-87.6955656987336,41.98313926756939],[-87.69580930408075,41.98313817834408],[-87.69611563435787,41.98313559488603],[-87.69627048794914,41.98313464646378],[-87.6967317743984,41.98313181499084],[-87.69680122016858,41.98313138861663],[-87.69683335427506,41.983131342863345],[-87.69727381409994,41.98313071477909],[-87.69761191288725,41.98312907528625],[-87.69794560620379,41.98312665274083],[-87.6981523251555,41.983125151305686],[-87.69851788233817,41.983121410552535],[-87.69892577276514,41.98312147004751]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6655931.86017","perimeter":"0.0","tract_cent":"1165965.21843249","census_t_1":"17031030500","tract_numa":"29","tract_comm":"77","objectid":"412","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1938643.99161128","census_tra":"030500","tract_ce_3":"41.98722556","tract_crea":"","tract_ce_2":"-87.66493772","shape_len":"10363.5852841"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66155425715198,41.99003081345051],[-87.6615507541972,41.98997690523394],[-87.6613770644151,41.989978706946474],[-87.6610137258748,41.98998442793614],[-87.66093979308681,41.98998532721332],[-87.66068328971635,41.98998844708241],[-87.66042023476487,41.98999313469864],[-87.66026648702412,41.99000181167189],[-87.66026135948998,41.9898085344441],[-87.6602509092253,41.98945277086659],[-87.66024321673503,41.98918785623437],[-87.66023837573438,41.98906403728982],[-87.66022765663972,41.98878988440252],[-87.66021879563746,41.98850671399967],[-87.66021078112325,41.98824794442809],[-87.66020547789068,41.988073986057124],[-87.66019870483328,41.987851008308056],[-87.66018141018986,41.98726987841757],[-87.66017789588221,41.98715177540793],[-87.66017035572378,41.98695058147786],[-87.66016434417266,41.986790175781984],[-87.66015516267606,41.986488589852634],[-87.66014410814856,41.98612738873996],[-87.66013569181226,41.98585094436113],[-87.66013318727389,41.985754278856305],[-87.66012931140276,41.98560469777819],[-87.66012554902085,41.98546243036698],[-87.66012213032381,41.98533317245239],[-87.66011207112653,41.98501371658629],[-87.66009955445529,41.98461677765359],[-87.66009297614985,41.98441021092336],[-87.66008883129541,41.98428002942033],[-87.66008168418156,41.984057844868246],[-87.66007706831283,41.98391627218223],[-87.6600688081518,41.983625640842725],[-87.66006871101082,41.98362222347471],[-87.66039185821953,41.98361729917218],[-87.66063379741388,41.983613942268384],[-87.66074290393722,41.983612450154055],[-87.66120691736941,41.983606102949985],[-87.66134420343177,41.9836040557213],[-87.66152143880882,41.98360141282982],[-87.66186108869448,41.98359593580564],[-87.66194709603099,41.98359454754924],[-87.66227916824229,41.98358918742622],[-87.6625495822446,41.98358522977129],[-87.66271464049481,41.98358281354921],[-87.66311193101632,41.98357679139029],[-87.66315327906182,41.98357616095491],[-87.66332146514952,41.98357359637086],[-87.66355079158069,41.98357000575382],[-87.66375300609384,41.983566839137964],[-87.66395091622276,41.9835637395464],[-87.66435556677165,41.983557316927474],[-87.66441850838432,41.983556311603515],[-87.66481491885425,41.98355000400214],[-87.66495572976115,41.98354802265039],[-87.66509632950962,41.983546044287436],[-87.66567928756162,41.983539920175616],[-87.66612011091848,41.98353528703155],[-87.66668418216221,41.983527395212604],[-87.66721833819204,41.983517159400336],[-87.66749246557266,41.98351187110695],[-87.66818147788152,41.98349857753012],[-87.66820921430515,41.983498042033254],[-87.66852688323294,41.9834911860556],[-87.66857698952273,41.98349007365866],[-87.66875743264303,41.98348951854382],[-87.66884122660086,41.98387891880338],[-87.66889119469279,41.98410917222242],[-87.66894154995012,41.98434318685161],[-87.66896417479181,41.9844500019809],[-87.66901216043182,41.98467654879286],[-87.66908569187586,41.98500858291822],[-87.66911185322421,41.98512931397952],[-87.66914514684636,41.985282962311366],[-87.66917956447112,41.98543132083516],[-87.66919999484513,41.98551939022651],[-87.6692458747854,41.98567031198084],[-87.66931319429462,41.98588886493553],[-87.669330407361,41.985941818251995],[-87.66939128630118,41.98612910440689],[-87.66943490709237,41.98628138510244],[-87.66946046487736,41.986370609483004],[-87.66949956056422,41.98651614097544],[-87.66957193815799,41.98678260892627],[-87.66963607497122,41.98713812988854],[-87.66970724162515,41.987532607131904],[-87.66976024182273,41.98791899972732],[-87.66977807999604,41.988043072919375],[-87.66982568491225,41.9883741747006],[-87.66984668796562,41.988422852416136],[-87.6698640131962,41.988574530859346],[-87.66989971572863,41.988903019646706],[-87.66995016165103,41.98922429844099],[-87.66997639026548,41.98952355148751],[-87.66998367570152,41.989698421499384],[-87.66999252910934,41.989912526617076],[-87.6700072856992,41.990315255037615],[-87.67002241103886,41.99074210948657],[-87.67002431715926,41.99079770358306],[-87.66992636938629,41.99079897151874],[-87.66978257096034,41.99080083273048],[-87.66940158331427,41.990805418164086],[-87.6690463847729,41.99080969219365],[-87.66845065632602,41.990817131164086],[-87.66836280356581,41.9908181930668],[-87.66801599097197,41.99082257752212],[-87.66759947384233,41.99082852456856],[-87.66718626701518,41.99083442290364],[-87.66682254267732,41.990837882355166],[-87.66574083316623,41.9908507786035],[-87.66516464426542,41.990856074339895],[-87.66491806914053,41.99085833968087],[-87.66445841335343,41.990865047444665],[-87.66394986351818,41.990872456177684],[-87.6633699033978,41.990880955219005],[-87.6630714649599,41.99088500304899],[-87.66272406091508,41.99088959829812],[-87.66258499576325,41.99089143725466],[-87.66217986517611,41.99089713314561],[-87.6621258943109,41.99089789193859],[-87.6617059106357,41.99090276276736],[-87.66157590170467,41.990903944112546],[-87.66156883669959,41.99055086842586],[-87.66155425715198,41.99003081345051]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5075522.3074","perimeter":"0.0","tract_cent":"1165449.1476185","census_t_1":"17031010300","tract_numa":"26","tract_comm":"1","objectid":"413","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1949102.28516238","census_tra":"010300","tract_ce_3":"42.01593438","tract_crea":"","tract_ce_2":"-87.66653628","shape_len":"10056.0222544"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66824546514344,42.01936517248172],[-87.66824333044843,42.019213516753524],[-87.6681549062791,42.019214984284375],[-87.66798507772023,42.0192178105494],[-87.66706490146025,42.019232670127366],[-87.66680557390309,42.019237219568865],[-87.66627861748456,42.01924646191597],[-87.66603838456506,42.01924926278068],[-87.66585454625987,42.01925140593992],[-87.66536460089533,42.01925991668385],[-87.6652691814615,42.019261387110326],[-87.664700164386,42.019270153472604],[-87.66456201488027,42.01927301074508],[-87.66444345944869,42.01927546311228],[-87.6638678099409,42.01929173264116],[-87.66386926679068,42.01920413595952],[-87.6638692676595,42.01920408821587],[-87.66388257318648,42.01919782539283],[-87.66388482214742,42.01919676690751],[-87.66388487466621,42.01919674196737],[-87.66392200669243,42.01919319927621],[-87.66392799707036,42.01919316999814],[-87.66394508235878,42.01919308687506],[-87.66395251172014,42.01919350697718],[-87.66396725973702,42.019194341046045],[-87.66397388954245,42.0191910296142],[-87.66397633488704,42.01918980817038],[-87.6639858314104,42.01918506425406],[-87.66399341734356,42.01916002724079],[-87.66398447896539,42.01910253258373],[-87.66398035092013,42.01907597888294],[-87.66392867479537,42.01899609632096],[-87.6638974039123,42.018958223466164],[-87.66389008267369,42.01894935713248],[-87.66379341683925,42.01882566197929],[-87.66375516941575,42.018784390886104],[-87.66371532675593,42.01874139920336],[-87.66369608688264,42.01872584162045],[-87.6636223839474,42.0186662429904],[-87.66358371063949,42.018640431982774],[-87.66356555750058,42.01862831560835],[-87.66353518304368,42.0186243585336],[-87.66352079495208,42.01862248399585],[-87.66349451291177,42.01862219012239],[-87.66341787639483,42.018621333985244],[-87.66337794166509,42.018596821226716],[-87.66335509446499,42.018582796834686],[-87.66331255422196,42.01849578799261],[-87.66328224844334,42.01843380173242],[-87.66327893101847,42.01839218005484],[-87.66327892750037,42.01838553939401],[-87.6632789263766,42.01838336791811],[-87.66327892398226,42.018378898733175],[-87.66327889483374,42.018350056411734],[-87.66328227552334,42.01832192278441],[-87.66328228237244,42.018321866294286],[-87.66332035037271,42.018302769761654],[-87.66332036477004,42.018302765455005],[-87.66332743806798,42.01830067067376],[-87.66332743861456,42.01830065366304],[-87.66333258078947,42.018150813322315],[-87.66333272729437,42.01815080951237],[-87.66337074038833,42.018149834381646],[-87.66341184921603,42.01814877961358],[-87.66341186982866,42.018148779185054],[-87.66334396146993,42.01796765141633],[-87.66332870449509,42.01795962454557],[-87.66331526864485,42.01795255531963],[-87.6633152453801,42.01795249289095],[-87.66330839760113,42.01793401971363],[-87.66328799345709,42.01792160640611],[-87.66328547576677,42.01790672676121],[-87.66328373074104,42.01789641739313],[-87.6632813273359,42.017879765675026],[-87.66328047210476,42.01787384121216],[-87.66327656015157,42.01786627956486],[-87.66326896635984,42.01785160134706],[-87.66329430775012,42.017824911199426],[-87.66329984849973,42.01782118237013],[-87.66330231310917,42.017819524179345],[-87.66329124050229,42.0177991773102],[-87.66327263562918,42.01776498845853],[-87.66325078113798,42.01776208596328],[-87.66322703077964,42.01775893173118],[-87.66320359351438,42.01774449854724],[-87.6631799998501,42.01772838390956],[-87.6631748191321,42.017724845502514],[-87.66317461854449,42.01772470794564],[-87.66316077107369,42.01772404258626],[-87.6631505631217,42.01772355242379],[-87.66314317081279,42.01772312507695],[-87.66313860052207,42.01756903162135],[-87.663130451898,42.01729430012439],[-87.6631665129153,42.01729256148276],[-87.66318376453043,42.01729172973338],[-87.66318913159141,42.01729101080942],[-87.66319455466223,42.01729028480293],[-87.66319456203613,42.01729028347388],[-87.66319391786297,42.01728535830034],[-87.66318424018577,42.0172114109059],[-87.66315300422369,42.01717212369185],[-87.66313617952036,42.01716846899936],[-87.66308419860229,42.017157177509134],[-87.66302172782292,42.017152311979125],[-87.6630077821243,42.01714408718339],[-87.66299912527326,42.01713898102452],[-87.66299617131355,42.0171074147567],[-87.66299479097484,42.01709266139189],[-87.6630209442189,42.01702014850632],[-87.6630335799595,42.01697660327604],[-87.66304495988878,42.0169373867899],[-87.66305807215662,42.01688578083951],[-87.66305900954171,42.01688209154894],[-87.66309366782095,42.01685474208478],[-87.6630412980263,42.016787748577705],[-87.66300524858303,42.01674163230968],[-87.66298564152557,42.01674117313493],[-87.66297710395082,42.016740973442],[-87.66294224885297,42.016724030924976],[-87.66290775675999,42.016711068755896],[-87.66290275777929,42.01670901599917],[-87.66287785776731,42.016698792557186],[-87.66287547507403,42.01669472219226],[-87.66286104699776,42.016670072012914],[-87.66284394918179,42.01665214402304],[-87.66284128299269,42.016649348594115],[-87.66284124326911,42.01664934671557],[-87.66282668338316,42.01664873697773],[-87.66282603710309,42.01664870987696],[-87.6628054561713,42.016647848722926],[-87.66276860361678,42.016542922096384],[-87.66276633150318,42.01653645368694],[-87.66276011246075,42.01648720020356],[-87.66274404506116,42.01635995500519],[-87.66274234399563,42.01629307213078],[-87.66274229962848,42.01629134056804],[-87.66274230310741,42.0162913246721],[-87.66274311515798,42.016287481800674],[-87.6627440852213,42.016282889593406],[-87.6627460571267,42.016273552513624],[-87.66275040777799,42.016265191440525],[-87.66275041340995,42.016265180771114],[-87.66274865129382,42.01625994308693],[-87.66273963623381,42.01623314783021],[-87.66273718690093,42.01622750685264],[-87.66272594700237,42.01620161981804],[-87.66272473301511,42.016191075346256],[-87.66268773428006,42.016161111987365],[-87.66266514016546,42.016146983006834],[-87.66266502390987,42.01614691015562],[-87.6626403583775,42.01613148616265],[-87.66262474336294,42.016121721684584],[-87.66255382623403,42.01604515626298],[-87.66254302626844,42.01597219837905],[-87.66253943566335,42.01594794381001],[-87.66253942949265,42.01594790069032],[-87.66254318364348,42.01594002926795],[-87.66255873267808,42.01590742678838],[-87.66258329627831,42.01585658372642],[-87.66254689860041,42.015804396242984],[-87.66253689724566,42.01575815350672],[-87.66253114670806,42.01566738795123],[-87.66252727039495,42.01560620683603],[-87.66252101703054,42.015581604657626],[-87.66250977821299,42.015537390318805],[-87.66248947573246,42.015487238659965],[-87.66246515900347,42.01542716993979],[-87.66241845376999,42.015364851023776],[-87.66239948366658,42.01534503966602],[-87.66236349157676,42.01530745079012],[-87.66229053670605,42.01521484754209],[-87.662218531907,42.015105399980456],[-87.66220131744062,42.0150602983272],[-87.66217118814276,42.014981360867736],[-87.6621573570079,42.0149753846695],[-87.6621334572058,42.01496505879182],[-87.66208582476855,42.01496305141725],[-87.66208582003398,42.01496297674783],[-87.66208379501168,42.0149321126254],[-87.66207620501433,42.0148810185108],[-87.66207111407793,42.01484674904091],[-87.66206792172116,42.01483619079496],[-87.66206456508688,42.01482508769148],[-87.66205183941861,42.014782999031596],[-87.66203643524713,42.01474874608233],[-87.66203287330563,42.01474082557619],[-87.66202088079093,42.01471415883386],[-87.6620164520678,42.01469152499486],[-87.66201124178167,42.01466489956356],[-87.66201317590186,42.01464729871964],[-87.66201437556015,42.01463637813142],[-87.66201413521141,42.0146355787178],[-87.6619987669851,42.01458447697383],[-87.66197237747235,42.014529027098476],[-87.66193984547162,42.014476779422324],[-87.66192177344836,42.01445618263751],[-87.66189533813544,42.0144260541352],[-87.66186191289555,42.01433982824472],[-87.66183735176631,42.01423809359249],[-87.66183303329579,42.014220204805106],[-87.6618046860839,42.01410944872587],[-87.66179217807527,42.014069365656056],[-87.66178396779273,42.01404305580406],[-87.66178391852281,42.014043017097265],[-87.66175235973999,42.01401844738538],[-87.66173472549727,42.014003510535936],[-87.66170544695566,42.01397871101809],[-87.66169918311549,42.0139734058126],[-87.66165172816312,42.01390210871064],[-87.66157206272821,42.01373059821085],[-87.6615303589607,42.0135778873987],[-87.66151778051679,42.01352791440099],[-87.66150407959658,42.013473482122244],[-87.66151160481373,42.01342867992347],[-87.66151534684883,42.01340639766364],[-87.66154416412668,42.01339390878429],[-87.66157301355528,42.01338140581607],[-87.66159313701404,42.01336797528331],[-87.66160482130837,42.01336017746377],[-87.6616048461373,42.01336016086957],[-87.66160893402332,42.01335022396058],[-87.6616211980676,42.013320410765125],[-87.66161200790309,42.0132996735365],[-87.66160876144882,42.01329234733052],[-87.66159166845931,42.01326442733272],[-87.6615707412431,42.01323024352556],[-87.6615005431936,42.013124373491195],[-87.66150043344015,42.01312420792347],[-87.66142931025007,42.01306070342323],[-87.661410965564,42.0130441797936],[-87.66139752947049,42.013032077507596],[-87.66138411015758,42.01301998958798],[-87.66133090065229,42.01295611706839],[-87.6613261501791,42.01295041456276],[-87.66132025183676,42.012938540531614],[-87.66128766633476,42.012872940526805],[-87.66128723230354,42.012871385876224],[-87.6612872319587,42.012871383678856],[-87.66128683018316,42.01286994584487],[-87.6613492179846,42.012863476712326],[-87.66225546805663,42.01285206623851],[-87.66326156669645,42.01283198391055],[-87.66345338494236,42.012829933982616],[-87.66366678566006,42.012827653181006],[-87.66399133868148,42.012820435235234],[-87.66422957430768,42.01281645109427],[-87.66572883672174,42.01279136697213],[-87.66592379662242,42.012786948688166],[-87.66606803840034,42.01278367978871],[-87.66613928180081,42.012782613979105],[-87.66622337638594,42.012781357177865],[-87.66622339883943,42.01278135648511],[-87.66637104869935,42.012779148154735],[-87.66679743546675,42.01277276969388],[-87.66790375056952,42.01275421646911],[-87.66802728153024,42.0127518777094],[-87.66816785843088,42.01274921609065],[-87.66822229017878,42.01274840556483],[-87.66897380506276,42.0127370892237],[-87.67002536419231,42.01271863768319],[-87.67019802501791,42.01271420978322],[-87.67020423408083,42.012842665445966],[-87.67021894588667,42.013296959301556],[-87.67022276117082,42.01341476988458],[-87.67023561168193,42.01377531990935],[-87.67023766046506,42.013840442407364],[-87.67024014895408,42.01391952545285],[-87.67025611642808,42.01438390777498],[-87.6702717444519,42.014838405201075],[-87.67027517830752,42.014929148232916],[-87.6702811570863,42.01508713731612],[-87.67029395177919,42.01546746148023],[-87.67030899324786,42.01591455903723],[-87.67031221483109,42.015993684980614],[-87.67031573668072,42.01608018188128],[-87.67033064682704,42.01651815724705],[-87.67033626356495,42.01668314212888],[-87.67033625847772,42.016750060321336],[-87.67033625329037,42.016818759485766],[-87.67033309839945,42.0169170798039],[-87.67033309609815,42.01691715964627],[-87.67033091014675,42.016985293534404],[-87.67032865451787,42.017055600135905],[-87.67032515218202,42.01716476399354],[-87.67033949446841,42.01760793676733],[-87.67035650443971,42.01813352797999],[-87.67036376528314,42.01835788386561],[-87.67074896287785,42.01817260427468],[-87.67084623093112,42.01812581817692],[-87.67097512113685,42.01806397137898],[-87.67105440966353,42.01802595602973],[-87.67110668383746,42.01807466304983],[-87.67129071062648,42.01826375585034],[-87.67134035798273,42.01833080809763],[-87.67134060500342,42.01842567582871],[-87.67134070832218,42.01848862791548],[-87.67133031478252,42.01937360905662],[-87.67115518882242,42.019372638133355],[-87.67079833589374,42.019372082985036],[-87.67074111473167,42.0193716692619],[-87.67065117999205,42.01937101917287],[-87.67011925769793,42.01936766348012],[-87.66982755583811,42.01936582205857],[-87.66962685215935,42.019364994299956],[-87.66949809122225,42.01936446319068],[-87.66929779235103,42.01936363664898],[-87.6688674597871,42.01936195363456],[-87.6686981088099,42.01936129092714],[-87.66824868514288,42.01936514503722],[-87.66824546514344,42.01936517248172]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5761123.35283","perimeter":"0.0","tract_cent":"1163301.52059892","census_t_1":"17031010800","tract_numa":"22","tract_comm":"1","objectid":"414","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1943977.30152063","census_tra":"010800","tract_ce_3":"42.00191694","tract_crea":"","tract_ce_2":"-87.67458396","shape_len":"9805.69997518"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67668974141623,41.997961563826905],[-87.67683740450633,41.997959319003876],[-87.67690314060101,41.99810586641179],[-87.67709644284614,41.998534132248885],[-87.67725300284313,41.99887212343512],[-87.67741295032846,41.99921715887188],[-87.6775573448681,41.99952923394514],[-87.6777056523733,41.99985011614394],[-87.67770630811567,41.99985153506762],[-87.67793807451663,42.00035726962325],[-87.6780684520159,42.000641761432355],[-87.67828852416714,42.00111946353419],[-87.67851719408479,42.00161691585197],[-87.6785292101179,42.00164305583345],[-87.6786776604018,42.00196609771206],[-87.67885692465535,42.002355559775694],[-87.67906233018358,42.0028007952277],[-87.67920676768429,42.0031138246492],[-87.67934173492336,42.003406698744485],[-87.67941523237899,42.003566184296524],[-87.67956739406932,42.00389413072568],[-87.67966668816547,42.00410657573269],[-87.67976715593214,42.00432152920489],[-87.67987101379049,42.00454373473517],[-87.67996182395726,42.004748062435354],[-87.67999267867323,42.00481777575483],[-87.6800863415856,42.00502384842258],[-87.6801705676594,42.00520582933158],[-87.67975072928527,42.005216939923],[-87.67938182506944,42.00522648601334],[-87.67926051946826,42.00522962493034],[-87.6787350610076,42.00523881381415],[-87.67852927201055,42.00524307357578],[-87.678440913381,42.00524490206329],[-87.67809874000947,42.005252142130715],[-87.67792968738317,42.00525465116054],[-87.67772214508327,42.00525773071497],[-87.67749847309399,42.00526210684667],[-87.67701868560935,42.005270203326084],[-87.6763359220282,42.00528086887632],[-87.67569275782041,42.00529762294154],[-87.6755351095903,42.005299495934544],[-87.67549020612358,42.005299927121236],[-87.67546186437819,42.00530019937242],[-87.6753882743829,42.00530090600128],[-87.6752271544112,42.00530245324388],[-87.67515375980213,42.005303157823946],[-87.67449915696939,42.00531238255953],[-87.67402519702009,42.005318955543714],[-87.67391844253031,42.005320422971415],[-87.67371574153155,42.0053213181383],[-87.67360385308241,42.00532181204584],[-87.67324573374287,42.005330345805135],[-87.67309905611158,42.00533248215627],[-87.67280672897631,42.005336739082104],[-87.67249222708443,42.005343772600035],[-87.67220167730831,42.00535026978936],[-87.67168524555215,42.00535810601758],[-87.67115433353798,42.0053678876372],[-87.67070295757054,42.00537153991414],[-87.67059314521717,42.005373666606076],[-87.67058201968366,42.00494966372855],[-87.67058050219094,42.00490157435093],[-87.67057415206689,42.00470033640318],[-87.67056978190062,42.004561866958255],[-87.67056645222685,42.00442864491403],[-87.6705622952881,42.00426229575622],[-87.67055252877384,42.003920039268095],[-87.67054519518342,42.003609245190496],[-87.67054332867133,42.003548492106916],[-87.6705222587942,42.00286274871104],[-87.67051598014083,42.00264004936085],[-87.67051351879591,42.00255274226866],[-87.67050709686403,42.00231368617154],[-87.67050147408887,42.0021039431531],[-87.6704913179498,42.001802819660305],[-87.67048946176882,42.001727361062386],[-87.6704783025098,42.00127377481812],[-87.67047048393982,42.0009850136263],[-87.6704619614061,42.000678905083625],[-87.6704558716951,42.00045993883434],[-87.67045365585332,42.0003802894121],[-87.67044488620705,42.00006262637493],[-87.67044179902534,41.99992780521381],[-87.67043784854354,41.999755291471885],[-87.67043299822008,41.99957749490406],[-87.67043337664916,41.99945592951736],[-87.6704460897413,41.99937949494278],[-87.67046865234418,41.999311185158625],[-87.6705405325226,41.999244395020916],[-87.67089514875802,41.99889237051676],[-87.6707248450551,41.99844255538687],[-87.67059060013003,41.99807567944458],[-87.67069376678128,41.99807470233232],[-87.67085836365113,41.998073143622655],[-87.67128195549112,41.9980653516185],[-87.67131040506722,41.99806483815584],[-87.67175897246884,41.998056740849975],[-87.67199219322927,41.99805149867576],[-87.67215336542883,41.9980478717617],[-87.67227644642153,41.998045581773255],[-87.67244846682834,41.998042381345094],[-87.67283143852485,41.998035118126445],[-87.67337900349776,41.99802416234209],[-87.67356141528091,41.99802130181541],[-87.67373241558002,41.998018619660826],[-87.67416521393325,41.99800985456584],[-87.67449366063867,41.99800293129304],[-87.67486272772362,41.997995444280804],[-87.67501250028111,41.99799274794264],[-87.67516790878788,41.9979899498069],[-87.67517807480752,41.9979897855404],[-87.6752350297534,41.9979888656662],[-87.67529825672862,41.997987844508536],[-87.67529834981812,41.99798784312123],[-87.67547579520776,41.99798477957029],[-87.67553818041945,41.99798344006987],[-87.67571616592706,41.997979618004045],[-87.67601842859952,41.9979752845513],[-87.67640777921586,41.99796653662079],[-87.67668974141623,41.997961563826905]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8306114.03653","perimeter":"0.0","tract_cent":"1160689.97783822","census_t_1":"17031020500","tract_numa":"14","tract_comm":"2","objectid":"415","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1943737.35316069","census_tra":"020500","tract_ce_3":"42.00131325","tract_crea":"","tract_ce_2":"-87.6841982","shape_len":"11692.7910016"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68959876293574,41.99773632837481],[-87.68988296414578,41.99772980309359],[-87.68989015473846,41.99794976368233],[-87.68989786522972,41.99818571620393],[-87.68990396895597,41.998372501375606],[-87.68990833466478,41.99864760351156],[-87.68991843311714,41.99909501803784],[-87.68993120665432,41.99954356303601],[-87.6899409890884,41.99988706285261],[-87.68994694133819,42.000130686425074],[-87.68995445658771,42.000438281418575],[-87.68996194110437,42.00073615026653],[-87.6899681139365,42.000977975399294],[-87.68997697289626,42.0013677825369],[-87.68998185375662,42.00158254242235],[-87.68999393456046,42.00204503342412],[-87.69000124189934,42.00232034396253],[-87.69000827063103,42.00257948965479],[-87.69001714821583,42.002910762971354],[-87.69002442696038,42.003188708002426],[-87.69002955671911,42.003384589198205],[-87.6900387562381,42.003724096561534],[-87.69004249057745,42.00388662858263],[-87.69005190645726,42.00429597698413],[-87.69005821145225,42.00449551477163],[-87.69006249419007,42.00470588076064],[-87.69006536360126,42.00481121876246],[-87.69006682002859,42.004868141649546],[-87.69007080771667,42.00503336518457],[-87.6896733326777,42.005038764285075],[-87.68929184803963,42.00504784853358],[-87.68898042877464,42.00504843339787],[-87.68858951714267,42.00505101327919],[-87.68840956552755,42.00505447541229],[-87.68813040219466,42.00505984942599],[-87.68797584178385,42.00506281447371],[-87.68767349541167,42.00506861383096],[-87.68714762949658,42.00507827801001],[-87.68682652024543,42.00508385178581],[-87.6866984558499,42.0050863586977],[-87.68656340037509,42.005088983043535],[-87.68608904865299,42.00509821912589],[-87.68590740525676,42.005101588214934],[-87.68569536607072,42.00510552096931],[-87.68526900359714,42.005113597430714],[-87.68482895157992,42.00512192427155],[-87.68441906973307,42.005130227891854],[-87.68395994798799,42.00513962359582],[-87.68381561844903,42.005142524289745],[-87.68358278203907,42.00514720344665],[-87.6831399720281,42.00515534382308],[-87.68283077881387,42.005161248332826],[-87.6825210712199,42.0051671490932],[-87.68227462114085,42.005171953126656],[-87.68191313196239,42.00517923276766],[-87.68170384805414,42.00518316692296],[-87.68152069825717,42.00518660970356],[-87.6809996606608,42.00519151992293],[-87.68099745472306,42.00519154059139],[-87.68062120038174,42.005196262209935],[-87.68042491873965,42.00519909757037],[-87.68035697684282,42.00520089574858],[-87.6801705676594,42.00520582933158],[-87.6800863415856,42.00502384842258],[-87.67999267867323,42.00481777575483],[-87.67996182395726,42.004748062435354],[-87.67987101379049,42.00454373473517],[-87.67976715593214,42.00432152920489],[-87.67966668816547,42.00410657573269],[-87.67956739406932,42.00389413072568],[-87.67941523237899,42.003566184296524],[-87.67934173492336,42.003406698744485],[-87.67920676768429,42.0031138246492],[-87.67906233018358,42.0028007952277],[-87.67885692465535,42.002355559775694],[-87.6786776604018,42.00196609771206],[-87.6785292101179,42.00164305583345],[-87.67851719408479,42.00161691585197],[-87.67828852416714,42.00111946353419],[-87.6780684520159,42.000641761432355],[-87.67793807451663,42.00035726962325],[-87.67770630811567,41.99985153506762],[-87.6777056523733,41.99985011614394],[-87.6775573448681,41.99952923394514],[-87.67741295032846,41.99921715887188],[-87.67725300284313,41.99887212343512],[-87.67709644284614,41.998534132248885],[-87.67690314060101,41.99810586641179],[-87.67683740450633,41.997959319003876],[-87.67705176102096,41.99795606016182],[-87.67745128286435,41.997949123123085],[-87.67757358984379,41.99794697478505],[-87.6777587432045,41.997943744550575],[-87.67831230509233,41.99793263482599],[-87.67865678668805,41.997924318329076],[-87.67902102439186,41.997915930646926],[-87.67934174651906,41.99790881225964],[-87.67975281408371,41.99790239949931],[-87.68013563638647,41.997895197772934],[-87.68052349930852,41.997887822560635],[-87.680761075516,41.99788464547873],[-87.68135641327851,41.99787499783],[-87.68150204610444,41.99787263723217],[-87.68180899131823,41.99786727232603],[-87.68204654070533,41.99786310452242],[-87.6825731246778,41.99785403821151],[-87.68291457157996,41.997848158209024],[-87.68322284417907,41.99784244029793],[-87.68346076323691,41.99783807956743],[-87.683795417422,41.99783190245536],[-87.68403878281393,41.99782740998571],[-87.68423394063082,41.99782431507893],[-87.68455683582789,41.99782043255067],[-87.6850105711364,41.997812860948656],[-87.6853123797347,41.997807823462665],[-87.68548604630966,41.99780534603385],[-87.68586045032552,41.99780103703666],[-87.68622934626829,41.997794009479755],[-87.68661406094134,41.99778667963483],[-87.68677238912335,41.99778398980677],[-87.6871377583696,41.99777815816102],[-87.68744648682534,41.99777244025273],[-87.68780254075331,41.99776584223354],[-87.68801076518905,41.99776204875481],[-87.68812682470667,41.99775979998841],[-87.68836253229155,41.99775513456364],[-87.68866271280831,41.99775028356197],[-87.68902534898265,41.99774442259996],[-87.68907774278019,41.99774372930675],[-87.68922841996603,41.99774172200697],[-87.68959876293574,41.99773632837481]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"62536846.2481","perimeter":"0.0","tract_cent":"1094039.05354134","census_t_1":"17031840000","tract_numa":"12","tract_comm":"76","objectid":"420","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1934631.00066407","census_tra":"840000","tract_ce_3":"41.97744882","tract_crea":"","tract_ce_2":"-87.92956193","shape_len":"37503.5702409"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.92033242280021,41.96778174209559],[-87.92034101226342,41.96310699923254],[-87.92034126303702,41.96292588172154],[-87.92014895283583,41.96032367013144],[-87.92000124102121,41.95815139470651],[-87.92005525457785,41.95815775074773],[-87.92032252419605,41.958189201079584],[-87.92038081081103,41.95819605971274],[-87.92065562609162,41.95822348319535],[-87.9206556485059,41.95822348519686],[-87.9208733933659,41.95824521346998],[-87.92094957441493,41.9582528152938],[-87.9209499480838,41.958252852585254],[-87.92126524772051,41.95828333135933],[-87.92132586603516,41.95828919102687],[-87.92157080085289,41.9583149192015],[-87.92188075776025,41.958347476727035],[-87.92195123645703,41.95835487989923],[-87.92207512613994,41.9583710415443],[-87.92214427091542,41.95838006165424],[-87.92217074485706,41.958383515118086],[-87.92217140094193,41.95831079177784],[-87.92217182010899,41.95826434350163],[-87.9221719998491,41.958244389269936],[-87.92635569672137,41.95887624898027],[-87.92635569665852,41.95887625885924],[-87.92635616750985,41.958929380954636],[-87.92635694306381,41.95901684036562],[-87.92645655038937,41.95903291943752],[-87.92681691896071,41.95909109163233],[-87.92688346111534,41.95910183292246],[-87.927199105026,41.95915279484961],[-87.9272417118802,41.95915967384049],[-87.92731634625507,41.95917172340654],[-87.92731734900526,41.959171876787124],[-87.92759837743964,41.95921480909771],[-87.92759842959812,41.959214816965854],[-87.92781801493757,41.9592483625956],[-87.92808724092598,41.959289490781444],[-87.92838988036232,41.959335722440784],[-87.92849237219498,41.95935350228089],[-87.92849238357846,41.95935350451641],[-87.92902404302616,41.95944573311304],[-87.92944075326032,41.959518019367295],[-87.92988595539774,41.959595245862076],[-87.93001171689431,41.9596170608098],[-87.93027195205747,41.95966062647671],[-87.93027201155772,41.95966063629037],[-87.93061766951011,41.95971850177138],[-87.93073503804962,41.95973814983676],[-87.93097427855909,41.9597723000606],[-87.93097428811134,41.95977230119177],[-87.9314123435391,41.95983482996092],[-87.93153245599619,41.959851974483115],[-87.9317955690925,41.95989506625518],[-87.93179561206571,41.959895073266026],[-87.93208232767255,41.95994202955929],[-87.93208233538824,41.959942030409536],[-87.93215467599389,41.96173709712109],[-87.93216761547349,41.962153608078275],[-87.93222837234485,41.9641092375861],[-87.93225426782787,41.96479938969403],[-87.93477092530138,41.964799893619436],[-87.93477092897827,41.964799893632204],[-87.93476968743977,41.96515378120199],[-87.934763824441,41.96682454830279],[-87.9347638242682,41.96682463501944],[-87.93476384273534,41.966824621911314],[-87.9358196671121,41.966090757908475],[-87.9365326970402,41.96559514215513],[-87.93659042138225,41.9655550183873],[-87.93680465114193,41.965406108074795],[-87.93680465483588,41.965406105343334],[-87.93680465779443,41.965406102609336],[-87.93680485444818,41.96540593534242],[-87.93680485592746,41.965405933975426],[-87.93812642149679,41.96427948493904],[-87.93812643739037,41.96427947154708],[-87.93898316679878,41.964282417486615],[-87.93914325032445,41.964282967238994],[-87.9397180764119,41.964284939443715],[-87.93971807632914,41.964284952890104],[-87.93971646790708,41.96902161937142],[-87.93971542533875,41.97208795772398],[-87.93971542487567,41.97208839130831],[-87.93971488327006,41.97368012270035],[-87.93971319478693,41.97863637188515],[-87.93971958314724,41.97927239031911],[-87.93971958339841,41.97927240925504],[-87.93972628181984,41.97993931312984],[-87.93972933484538,41.980207872354455],[-87.93973639979757,41.98070306196615],[-87.93974168008388,41.98104599634652],[-87.93974593806085,41.98142391011989],[-87.93974705510003,41.98152304086191],[-87.9397515507046,41.98189187839478],[-87.93975832118542,41.98231536037285],[-87.93976484396912,41.98276718970488],[-87.93977068220137,41.98312121330343],[-87.9397726617743,41.983217240253424],[-87.93977651649189,41.98340421535669],[-87.93977984248926,41.98377195107468],[-87.93978498704705,41.98412503865282],[-87.9397923181169,41.98454122279106],[-87.93980288307847,41.98514303680085],[-87.93980358241639,41.98529830623988],[-87.9398043207813,41.98535752906342],[-87.93980447369087,41.985386453269854],[-87.93980815922531,41.98565402649156],[-87.9398135218872,41.98605541276324],[-87.93981540807096,41.986203057896525],[-87.93982168771657,41.98667069244941],[-87.93982212063732,41.986694704105005],[-87.9398222905523,41.98670414421338],[-87.93982796443353,41.98701911775253],[-87.93982630237547,41.987527915843614],[-87.93982603922626,41.987606482147335],[-87.93982453300539,41.98779736404424],[-87.93982815163737,41.9880518736747],[-87.93983501335016,41.98846671153063],[-87.93984096212623,41.98881477940223],[-87.93984096211102,41.98881478187196],[-87.93984096209918,41.98881478379287],[-87.9398470542329,41.9892829902054],[-87.93985232285205,41.98971165331105],[-87.9398584701233,41.990152887585865],[-87.93987810901235,41.99048802245663],[-87.93988366997996,41.99086333938723],[-87.93988646218537,41.99114452000148],[-87.93989061230805,41.99165934718409],[-87.93989533644499,41.99196144577355],[-87.9398993455963,41.99221837145674],[-87.93990136738918,41.992350073063825],[-87.93991024138491,41.99286829197389],[-87.9399229889108,41.99328331430137],[-87.9399290820462,41.99345381944218],[-87.93992911191256,41.99345464445241],[-87.93993042504023,41.99349140482822],[-87.93989263646637,41.993493130129764],[-87.93983235269151,41.99349588257952],[-87.93977299287083,41.99349859316028],[-87.93970025014322,41.99350191423527],[-87.93964348115811,41.993504506301825],[-87.93956656274256,41.99350801823814],[-87.93950235127699,41.99351094968515],[-87.93942827170189,41.993514331862336],[-87.93935110562335,41.99351785487894],[-87.93927702566512,41.9935212369572],[-87.93919759878976,41.99352486297588],[-87.93916328708518,41.99352642955945],[-87.93914750854898,41.99352669947098],[-87.9390907053756,41.993527671242816],[-87.93901516353323,41.99352896335938],[-87.93897608361759,41.99352963206989],[-87.93894124228986,41.993530228063484],[-87.93890022132769,41.9935309298705],[-87.93885491836573,41.993531704763086],[-87.9388009667863,41.99353262746455],[-87.93879820107672,41.99354777667044],[-87.93879555033206,41.99356229894619],[-87.93879204709616,41.99358149194654],[-87.93845729986651,41.993584489660066],[-87.93435347427896,41.99368556039518],[-87.93148204557397,41.99379971992715],[-87.93043796996028,41.99384133941718],[-87.93024068311063,41.99384833088348],[-87.93019724239602,41.99385101721749],[-87.92830887745758,41.9939264644382],[-87.9239046463243,41.994137923759396],[-87.92043681251403,41.99424624830514],[-87.92041180546178,41.98723041594275],[-87.92041100241477,41.98699870951361],[-87.9204108353988,41.9864553556391],[-87.92040995331007,41.985026649416874],[-87.92047255674956,41.98235822784219],[-87.92045161915749,41.98106827777314],[-87.92039058926703,41.97735033915382],[-87.92034539037924,41.97459807475901],[-87.92033088447438,41.971933734030465],[-87.92032188084238,41.970338970260784],[-87.92033242280021,41.96778174209559]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14205041.0219","perimeter":"0.0","tract_cent":"1154291.28100454","census_t_1":"17031740300","tract_numa":"57","tract_comm":"74","objectid":"416","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1832089.96495201","census_tra":"740300","tract_ce_3":"41.69507035","tract_crea":"","tract_ce_2":"-87.71071596","shape_len":"15984.6861052"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72002466146989,41.691276014416495],[-87.72016950709627,41.6912641084752],[-87.72031696758803,41.69128486623645],[-87.72031696788902,41.6912848730989],[-87.72033163238326,41.69163425118914],[-87.72033491372005,41.6916789437659],[-87.72033795352132,41.691720346788436],[-87.72034119969206,41.6917645792258],[-87.72035098666565,41.691897920889836],[-87.72037284030941,41.69221462368337],[-87.72038527398867,41.6925055354278],[-87.72038711696464,41.692558235985345],[-87.72039572467644,41.692804668494134],[-87.72040546452652,41.69305526964052],[-87.72040546480407,41.69305527897275],[-87.72041102397492,41.69319867251509],[-87.72041102395929,41.6931986741616],[-87.72042670489962,41.69360255595988],[-87.72042670487879,41.69360255815524],[-87.720442700488,41.69401577563943],[-87.72046613983747,41.694601432276116],[-87.72046613981922,41.694601434197054],[-87.72047618337822,41.69485484323838],[-87.72048039346534,41.694960676042534],[-87.72048103171163,41.69497671734683],[-87.72049156593899,41.69526712455823],[-87.72050327611399,41.69557252182468],[-87.72050971125043,41.69573734939246],[-87.72051108167913,41.695772460871886],[-87.72051596634705,41.695896883818115],[-87.72051806986342,41.69595046831069],[-87.72052596545039,41.696152465526865],[-87.72052908283601,41.69624836923603],[-87.72053088988544,41.696304912733474],[-87.72053709067868,41.696496445530144],[-87.72055117209165,41.69679131712403],[-87.72055793061199,41.69692634234937],[-87.72056711491535,41.69710982707802],[-87.72058978967567,41.69744837965769],[-87.72060339050296,41.697759165777214],[-87.72061226110883,41.69800897525856],[-87.72062982420296,41.698349805216814],[-87.72063757016396,41.69856762427978],[-87.72032642059578,41.69857261888594],[-87.72006577996966,41.69857619553111],[-87.71977997019958,41.698577277083714],[-87.71960024430768,41.69858185354366],[-87.71926859333078,41.698590298216075],[-87.71897824259342,41.6985952230217],[-87.71864642996042,41.69860132494012],[-87.71845056641415,41.698604805289406],[-87.71817196211592,41.69860922722008],[-87.71788290923217,41.698613814261066],[-87.7176773069071,41.698617131637356],[-87.71739618715182,41.69862171741608],[-87.71724090792605,41.69862391535761],[-87.71715001073238,41.69862522775308],[-87.7170603733438,41.69862656110301],[-87.71691390372773,41.698628739157414],[-87.71679469751399,41.69863051223196],[-87.71653071053021,41.69863548995899],[-87.71626841082204,41.69864020170592],[-87.71601366781448,41.698643498949636],[-87.7157294360372,41.69864743849972],[-87.71542866190107,41.69865160674561],[-87.7152248893764,41.69865501190202],[-87.71511325832459,41.698657148081324],[-87.71506370608995,41.69865809641859],[-87.71489424712684,41.69866119133526],[-87.71449268034748,41.698666717871276],[-87.71419043851269,41.698670876344536],[-87.71397869026319,41.69867354996276],[-87.71390240633555,41.69867451180129],[-87.71379268727662,41.69867589545069],[-87.7136061721881,41.69867818298924],[-87.71329377448501,41.6986834353099],[-87.71299075161353,41.69868852936662],[-87.712804629751,41.69869180568691],[-87.7126179984208,41.69869474963388],[-87.71239800415108,41.69869814421335],[-87.71207788489006,41.698702846000636],[-87.71085125281455,41.69872085381172],[-87.71052537372279,41.69872563561098],[-87.71038041826442,41.69872803308946],[-87.71025077531608,41.698729807840266],[-87.71013482804746,41.69873139463172],[-87.70989678428583,41.698734494437275],[-87.70961216295682,41.698739185429574],[-87.70936314467413,41.698743289092704],[-87.70916017801441,41.69874660526455],[-87.70904400848414,41.69874852647781],[-87.70893992476839,41.69875023880643],[-87.70874563651516,41.69875354651116],[-87.70842972365827,41.69875780214345],[-87.70814759343942,41.69876160126568],[-87.70808519260937,41.69876206257412],[-87.70799961034376,41.698762744593964],[-87.7077958835297,41.69876517603273],[-87.70757657606651,41.6987694430316],[-87.70723473501961,41.698774816860656],[-87.7070071956007,41.69877839300542],[-87.70687253217741,41.69878050926286],[-87.70666651716908,41.698784737485724],[-87.70648331609146,41.69878884279356],[-87.70633091755967,41.69879221024145],[-87.7062290252396,41.69879445349391],[-87.70601177006792,41.69879746987929],[-87.70582463949037,41.69880006745333],[-87.70559597022473,41.698803044602265],[-87.70536766762879,41.69880596896194],[-87.70516437271485,41.6988091116216],[-87.7049355891707,41.69881287582749],[-87.70479575780774,41.69881517627318],[-87.70452836941963,41.698819574596676],[-87.7042402444867,41.69882513297829],[-87.70396924177082,41.6988284517257],[-87.703521666873,41.6988367036927],[-87.70321302511529,41.698842392947824],[-87.70296840273423,41.69884409760474],[-87.7027838088581,41.69884829914727],[-87.70258045647797,41.69885355005643],[-87.70229301097945,41.69885460163787],[-87.70204647909054,41.698855502929874],[-87.70191138039311,41.69886090802362],[-87.70174773461056,41.6988648113478],[-87.70168893709004,41.698865170156196],[-87.70152534242041,41.69886616856789],[-87.70134631472803,41.698866583779456],[-87.70108253142959,41.69887141598803],[-87.70107642400593,41.69870400687749],[-87.70107104707441,41.698512752152105],[-87.70106391233102,41.69833647180952],[-87.70105683735225,41.69815783166318],[-87.70104682508858,41.69790897529692],[-87.70103960702438,41.697700091791866],[-87.70103202286313,41.69745756073204],[-87.70102573637583,41.69724703573524],[-87.70101819356887,41.69704350488852],[-87.70100974957576,41.69681564823786],[-87.70100417405033,41.69668207825978],[-87.70099614818004,41.696484661580705],[-87.70098803825762,41.69628087757618],[-87.70098296303634,41.69614248030915],[-87.70098037259473,41.69607361070375],[-87.70097632968273,41.695966118946444],[-87.70097464392266,41.695921296059716],[-87.70096442975974,41.695629599416016],[-87.7009595899382,41.695432117625984],[-87.70095112925992,41.6952188955311],[-87.70094191164236,41.694986587626985],[-87.70093237301515,41.69472683871192],[-87.70091772640463,41.69433815997379],[-87.70090843938858,41.694060217743186],[-87.70090174651796,41.69377910607087],[-87.70089629469457,41.693550719902646],[-87.70089133951319,41.69339352480224],[-87.70088523262537,41.69319979570064],[-87.70087173471028,41.692843451729296],[-87.70085713777875,41.69245724330871],[-87.70084589475279,41.69216971221063],[-87.70084276253802,41.692023938877824],[-87.70083985911127,41.69188882333332],[-87.7008277065439,41.691567788180734],[-87.70113045024343,41.69156469723856],[-87.70136755928516,41.691560951770626],[-87.70143376634631,41.69155990633406],[-87.70163828466352,41.69155667706841],[-87.70207160295483,41.691550890909554],[-87.70250899387013,41.69154504890465],[-87.70284721186219,41.69153933027024],[-87.703323394828,41.69153020224119],[-87.70358635659676,41.69152516054917],[-87.70403403567305,41.69151701968794],[-87.70450804806238,41.691511330807025],[-87.70501711236116,41.691505219077875],[-87.7053896812206,41.691498693072674],[-87.70573855813734,41.69149281093254],[-87.70611994648357,41.691486379845784],[-87.70660700431381,41.691476193238145],[-87.70694168186628,41.69146975331762],[-87.70740715746851,41.691460794798076],[-87.7075175477639,41.69146071538558],[-87.70815607048331,41.69144343059859],[-87.70855733755862,41.69144509875272],[-87.70881886313879,41.6914417450789],[-87.70905307253481,41.69143865407848],[-87.70936822981395,41.691433137587815],[-87.7096118879765,41.691428872225764],[-87.70975601683838,41.691426964911386],[-87.71002721199228,41.69142322186025],[-87.71027925877588,41.691419429245165],[-87.71057895119377,41.69141492689303],[-87.71093301285767,41.69140960676707],[-87.71114012180522,41.69140713315392],[-87.71140137156058,41.691402015733054],[-87.7115642883829,41.69139954890833],[-87.71185039718637,41.691394500191905],[-87.71232249774926,41.691386167377985],[-87.71250288901363,41.691382668743564],[-87.71274578162972,41.69137893103932],[-87.71308983919522,41.69137500666465],[-87.71338596381345,41.691371628162],[-87.71368305296363,41.69136697358895],[-87.71401639904805,41.691361305857036],[-87.71430521689729,41.69135656256425],[-87.71444923746283,41.691354197061685],[-87.71480117997777,41.69134884674357],[-87.71519786694968,41.69134318715389],[-87.71545833463787,41.6913393129345],[-87.71584154853953,41.69133361189179],[-87.71618349987509,41.69132779200546],[-87.7166342670723,41.69132186899186],[-87.71700396588486,41.69131660720853],[-87.71731070147773,41.691310106061266],[-87.71757420231785,41.69130684788164],[-87.71790125647757,41.69130056846143],[-87.71804469688604,41.69129781415696],[-87.7182679396265,41.691296649025695],[-87.7186070357557,41.691294566388805],[-87.71887001240387,41.69129251488221],[-87.71913592469112,41.691289732552],[-87.71938733736253,41.6912871015741],[-87.71966710551482,41.69128266804157],[-87.72002466146989,41.691276014416495]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8786158.63353","perimeter":"0.0","tract_cent":"1171044.59667697","census_t_1":"17031710800","tract_numa":"40","tract_comm":"71","objectid":"421","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1851445.83223066","census_tra":"710800","tract_ce_3":"41.74783698","tract_crea":"","tract_ce_2":"-87.64881312","shape_len":"11929.5725608"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65329362712573,41.743222489893164],[-87.65353912690468,41.74321630165641],[-87.65354096284031,41.743347776726],[-87.65355913268452,41.74389734976502],[-87.65357094612324,41.74429880197733],[-87.65358944699497,41.74488630349696],[-87.65359236430795,41.745036789809426],[-87.65359727833129,41.745290284561484],[-87.65361762108196,41.74600197653028],[-87.65363860741023,41.74673606576531],[-87.65364015916164,41.746857642002624],[-87.65364219903714,41.74701743313519],[-87.65366475115951,41.74780114884576],[-87.65368777717887,41.74860251286734],[-87.65369030102683,41.74867678900751],[-87.65369697787538,41.7488732656898],[-87.65371648717596,41.74965023931842],[-87.65372568752058,41.75002513849967],[-87.65372731596177,41.750091477731736],[-87.65373727515117,41.7504972839014],[-87.65374466398546,41.750759215047935],[-87.65374666831627,41.75084693518392],[-87.6537479298636,41.750902789812436],[-87.65374900767863,41.75095049194301],[-87.6537526136985,41.751110149521125],[-87.6537605424921,41.75140411124797],[-87.65376905333268,41.751719646915035],[-87.65377928580028,41.75205593969285],[-87.65378626842276,41.752317562923245],[-87.65354560508264,41.752321194007486],[-87.6531805758454,41.75232707177315],[-87.65311939082292,41.75232805701027],[-87.65276824371662,41.7523336616357],[-87.65257571140027,41.75233723410849],[-87.65235814726138,41.75234116614511],[-87.65208902592474,41.75234607477349],[-87.65197207257413,41.75234771529886],[-87.6517713870495,41.752350530316306],[-87.6513628472853,41.75235445946356],[-87.65116963961096,41.75235631724137],[-87.65080522158242,41.752362303604286],[-87.65075786986868,41.75236299077008],[-87.65042424380191,41.75236783362574],[-87.65015112376581,41.752371789390466],[-87.64994870011063,41.75237472096855],[-87.64961668085056,41.752380539500976],[-87.64954699207301,41.75238175269896],[-87.64925247905927,41.75238687898435],[-87.64894040354245,41.752389728608335],[-87.64876134823272,41.75239136339],[-87.64833492408306,41.75239819860849],[-87.64792068609971,41.75240454620134],[-87.64772731428835,41.75240785855244],[-87.64757253985229,41.752410509605575],[-87.6471902488378,41.752415417316314],[-87.64712231757164,41.75241649738404],[-87.64685900426645,41.75242068364358],[-87.6465153280464,41.75242514581552],[-87.64632057074341,41.752427674171436],[-87.64591077683201,41.75243428396043],[-87.64559071092188,41.75243933441648],[-87.64544928700876,41.752441248835666],[-87.64537592024777,41.75244224208842],[-87.64530399066133,41.75244321590867],[-87.64503548635304,41.75244684960144],[-87.64470147132913,41.75245128436395],[-87.64463955815565,41.75245210621585],[-87.64436941609394,41.75245641433649],[-87.64408928842055,41.75245500975084],[-87.6440875657608,41.75230820548751],[-87.64407766156579,41.751987062468785],[-87.64407011981723,41.75173970078389],[-87.64406028207205,41.751395231267125],[-87.64405494535924,41.75115754246287],[-87.64405194615779,41.75102332796515],[-87.64404805585092,41.75084926081106],[-87.64404527923757,41.75070143561429],[-87.64404375434192,41.75064248318551],[-87.64403922750054,41.75043097576294],[-87.64403351404972,41.75025091534225],[-87.64403138730118,41.75018234929],[-87.64402155666015,41.74985961516845],[-87.64400881461263,41.749601683783226],[-87.64400444032383,41.74930834615966],[-87.6439958602487,41.74901421488248],[-87.64398874255232,41.74881947493191],[-87.6439833308918,41.74867137590812],[-87.64397648722478,41.74835189762723],[-87.64396243371263,41.74791519419259],[-87.64395175506283,41.74752609724745],[-87.64394256220703,41.747207071339034],[-87.6439342456632,41.74699833255851],[-87.64392889824887,41.74686411539872],[-87.64392332437073,41.746580183684166],[-87.64391461669348,41.74630830782857],[-87.64390425809947,41.745930436634836],[-87.64389220262078,41.745553626062474],[-87.64388617490667,41.74533953391143],[-87.6438822778127,41.745188932567245],[-87.64387580491483,41.744938775332486],[-87.64386569318246,41.7445960878295],[-87.64385559484306,41.74424184684919],[-87.643847501703,41.743888633273386],[-87.64384596317171,41.74383947348101],[-87.64383771694678,41.74362158080638],[-87.64383083223669,41.743358118544585],[-87.64399438706256,41.74335577408174],[-87.64434167759275,41.74334989863386],[-87.64443963854669,41.743348566643924],[-87.64448922316741,41.74334789243907],[-87.644686244141,41.74334521330567],[-87.64504738198498,41.74333960340908],[-87.6450758955864,41.7433391603099],[-87.64510440808539,41.74333871747147],[-87.64524950124729,41.74333645795348],[-87.6456223913166,41.743331857102326],[-87.64564474729241,41.743331497207045],[-87.64570815066213,41.74333047734467],[-87.645950621333,41.74332657595095],[-87.64625942824061,41.74332141235567],[-87.6462885282116,41.74332092553418],[-87.64631762854573,41.743320438981925],[-87.64654774958338,41.74331659009556],[-87.64686761046406,41.74331266303175],[-87.64692001584038,41.74331201944951],[-87.64720495738224,41.74330800248344],[-87.64747549008358,41.74330468477219],[-87.64750020889846,41.74330438170572],[-87.64752492734969,41.74330407835731],[-87.64775430475862,41.74330126490388],[-87.64808181909305,41.74329771630331],[-87.64813301502168,41.74329716155433],[-87.6486862996498,41.74328827060278],[-87.6492686262703,41.74327867610645],[-87.64928595032413,41.743278463101205],[-87.64959651233049,41.743274645146585],[-87.64989931174597,41.7432713589547],[-87.65014530164812,41.74326868866195],[-87.65050407103831,41.74326160155199],[-87.65083282807744,41.74325510126373],[-87.65111477098537,41.74325063910403],[-87.65132454697279,41.743247318207374],[-87.65171946549641,41.7432413946904],[-87.65177290613654,41.74324059312158],[-87.65207210533067,41.743236110496625],[-87.65232748963149,41.74323256091116],[-87.65260636246254,41.7432286839355],[-87.65268976494696,41.743228353636425],[-87.65293383462654,41.74322598406291],[-87.65329362712573,41.743222489893164]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2069207.04739","perimeter":"0.0","tract_cent":"1176562.49974661","census_t_1":"17031380500","tract_numa":"9","tract_comm":"38","objectid":"481","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1877826.01171235","census_tra":"380500","tract_ce_3":"41.82010469","tract_crea":"","tract_ce_2":"-87.6278007","shape_len":"6844.70951681"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62876722650837,41.8164553305866],[-87.6291188142177,41.81645024940638],[-87.62911882307901,41.81645051208763],[-87.62912189831886,41.81654521247318],[-87.62912361188937,41.8165980502316],[-87.6291255852767,41.81671092055065],[-87.62913750757296,41.81717134538918],[-87.6291472507021,41.81757961592976],[-87.62915850114348,41.81801773936735],[-87.62917071277181,41.818451751980966],[-87.62918253847663,41.81887924482425],[-87.629187853509,41.819063829682115],[-87.62919071245913,41.81916080863861],[-87.62919218044406,41.819254926121864],[-87.62919496568276,41.81946110659789],[-87.62925513787667,41.819787014645335],[-87.62925897953271,41.81989680904713],[-87.62925942695001,41.81993969102893],[-87.62926152459428,41.820041241923974],[-87.62926610640655,41.82016716345092],[-87.62927104186167,41.82038639263505],[-87.62927309480946,41.82049205938032],[-87.62927511769588,41.82060047075923],[-87.62927751589457,41.82075828076447],[-87.62929101128259,41.82115902702329],[-87.62930179639928,41.821555983269334],[-87.6293100440901,41.821849671036446],[-87.62931153658049,41.821922745834435],[-87.6293144422827,41.82207609974897],[-87.62932396092653,41.82237940022439],[-87.62933289707853,41.82269401695262],[-87.62933936685741,41.82302439837318],[-87.62935088391205,41.823145216832216],[-87.629356635493,41.82320631181083],[-87.62936279268524,41.82327221202089],[-87.62935040025334,41.823356865397884],[-87.62935303589468,41.823534916319694],[-87.62935396448754,41.82357574302126],[-87.62935652492091,41.82367646050887],[-87.6291297425374,41.823679623674046],[-87.62896819970506,41.82368149243282],[-87.62876532190091,41.823683839047675],[-87.62861793054292,41.82368504218738],[-87.62830656308215,41.823687582934824],[-87.62806959945627,41.82369021718382],[-87.6277344869874,41.82369677610998],[-87.6275934143608,41.82369902444583],[-87.627224939577,41.82370489637565],[-87.62698708870555,41.82370809923335],[-87.62661202559408,41.823711006309516],[-87.62642224680934,41.82371376417949],[-87.62643074648655,41.82353428501425],[-87.62642753676424,41.82338914829194],[-87.6264213767726,41.823115314882465],[-87.62641501805105,41.82289957587819],[-87.62641004459078,41.82264125459776],[-87.62640650124833,41.822336371845836],[-87.62640516844357,41.822232836605906],[-87.62640373173112,41.822121204030175],[-87.62640028414548,41.821953206312095],[-87.62639738733988,41.82181205011851],[-87.62639166709546,41.821533309565915],[-87.62638022012531,41.820975492755785],[-87.6263624349111,41.820108795803705],[-87.62635811205604,41.81989814639176],[-87.62635525248037,41.81974787994511],[-87.62635280996123,41.81955299421036],[-87.62634978574951,41.819351024668606],[-87.62634352895235,41.81919780065319],[-87.62633797689136,41.81900045363348],[-87.62633328285551,41.81878683808268],[-87.62632569351908,41.818502923903054],[-87.62631940907492,41.818303596200984],[-87.62631666371036,41.81821653099814],[-87.62631063003073,41.81790792791656],[-87.62630452440749,41.81765923183769],[-87.62629508740862,41.8173032141943],[-87.62628738220454,41.817006510917196],[-87.62627770569316,41.816642231497696],[-87.62627050845802,41.81648982544944],[-87.62696301781659,41.81648129751639],[-87.62736412689367,41.81647374820012],[-87.62741803673518,41.81647273345026],[-87.62778714523539,41.81646704282475],[-87.6280458010424,41.81646433072327],[-87.6282217190162,41.816462486160525],[-87.62833842948127,41.81646126177971],[-87.6285893476297,41.816457791295],[-87.62876722650837,41.8164553305866]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"28278716.151","perimeter":"0.0","tract_cent":"1165098.95777341","census_t_1":"17031750500","tract_numa":"87","tract_comm":"75","objectid":"417","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1828360.54105724","census_tra":"750500","tract_ce_3":"41.68461497","tract_crea":"","tract_ce_2":"-87.67125035","shape_len":"23669.7167335"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66525942994807,41.69177161031788],[-87.66394255643348,41.69124543075289],[-87.66383762317481,41.6914043202137],[-87.66372987215904,41.69155592067005],[-87.66361033038943,41.691725235594824],[-87.66351204203781,41.69186456892111],[-87.66343465615665,41.69197597691082],[-87.66336544630548,41.6920769329629],[-87.66331090351557,41.692156493759306],[-87.66318008234273,41.69211346575771],[-87.66306047536537,41.692101900663374],[-87.66272865888467,41.69210759415046],[-87.66245642321252,41.6921087770353],[-87.66238237844155,41.69210990546711],[-87.66219687035219,41.692112091592634],[-87.66203273088213,41.6921156061811],[-87.66184408092214,41.69211747699623],[-87.66184408918221,41.692021279086084],[-87.66188300351685,41.69193736545142],[-87.66196256676302,41.691821003436644],[-87.66208284371514,41.691648319273426],[-87.66227281398507,41.691378727589225],[-87.66239171276818,41.69121166559027],[-87.66249443893196,41.691068210228956],[-87.66259170255844,41.690928926661435],[-87.66269681781357,41.69076151137134],[-87.66275960495882,41.6906615105738],[-87.66289607692966,41.690437875389144],[-87.66304233561587,41.69020249592517],[-87.66307489152925,41.69014977557601],[-87.66318384179698,41.689973345908946],[-87.66337082839287,41.689665295565554],[-87.66315348031547,41.689596838195754],[-87.66295789874823,41.689533208980635],[-87.66265142270382,41.68943048390845],[-87.66246151287575,41.68938134986853],[-87.66243598114723,41.68937474395147],[-87.66241086787394,41.68936824640302],[-87.66216548236943,41.68931225894696],[-87.66187795827113,41.68928745592069],[-87.66175359229076,41.68927798001612],[-87.66159953557853,41.68928034239251],[-87.66141132670401,41.68928322829762],[-87.6612019141577,41.68928643886004],[-87.66094568326601,41.6892903666573],[-87.66078613453813,41.6892928121705],[-87.6608696956868,41.6890539232208],[-87.66092736804706,41.68885935797775],[-87.66096261548084,41.688736398704286],[-87.6609979570036,41.68861311009852],[-87.66104198448527,41.68833833447333],[-87.66108750653649,41.68805422858567],[-87.66111171884812,41.68792846036246],[-87.66112191471602,41.687875499158274],[-87.66116023159258,41.68767648449047],[-87.66120007849798,41.68747061791105],[-87.66122376365226,41.68734824927012],[-87.66125445150149,41.687185689331415],[-87.66128714559501,41.68701224692017],[-87.66129529403368,41.6869690161127],[-87.66133371806107,41.686772931834376],[-87.66134528672715,41.6867138930605],[-87.66138816355685,41.68648820254369],[-87.66144098393902,41.68621105893755],[-87.66149039427052,41.68595549328857],[-87.66153300132004,41.68572941717684],[-87.66156328129362,41.68556874831617],[-87.66158952000356,41.68541491693852],[-87.66160322242861,41.685277752459506],[-87.66161052430051,41.685123728327696],[-87.66160896420158,41.68498510273874],[-87.66159876515245,41.684820342824615],[-87.66158956126307,41.68467166120783],[-87.66158464201517,41.68459219102314],[-87.66158110210102,41.684474932237784],[-87.66157800794902,41.68437183656253],[-87.66157550180692,41.68428833944124],[-87.66156240302026,41.684087020601964],[-87.66155235508724,41.68388097188335],[-87.66154381532489,41.683632037972274],[-87.6615367030445,41.683425402641994],[-87.66152793662276,41.6831489965615],[-87.66152286946526,41.68300313281468],[-87.66151906228163,41.68289352913684],[-87.66151457188336,41.68274100001284],[-87.66151036721449,41.68258915863955],[-87.66150565251995,41.682415963327934],[-87.6614995940135,41.682196765316554],[-87.66149246239537,41.681945451712714],[-87.66148504465289,41.681701271980174],[-87.661477747045,41.68146669812528],[-87.66147022201604,41.68118346580095],[-87.66147019520893,41.68118245325757],[-87.66146459372749,41.68097159736755],[-87.66145530461127,41.68065750833245],[-87.66144939646966,41.680458262204155],[-87.66144255887745,41.68023230821239],[-87.66143415630414,41.67995617853514],[-87.66142420699987,41.679666866971],[-87.66141673245141,41.67936181734945],[-87.66140997105413,41.67908583444134],[-87.66140229147322,41.67886687353877],[-87.66138715482728,41.67839135060668],[-87.66137917138605,41.67814055849109],[-87.66137178744924,41.67788971004273],[-87.66135020298385,41.67762807562587],[-87.66136505811427,41.67754426798726],[-87.66136506799715,41.67754426804504],[-87.66146620176234,41.67754208066503],[-87.66152651082903,41.67754077617858],[-87.6615307668107,41.67754068414751],[-87.66155687680266,41.6775401196707],[-87.66175810617193,41.67753577985719],[-87.66175811239734,41.677535779619134],[-87.66194447911514,41.67753176236013],[-87.66213570335698,41.6775276397924],[-87.66224199085367,41.677525337749856],[-87.66225103994057,41.67752514167699],[-87.66233631041457,41.677523294508596],[-87.66239881031693,41.67752195185929],[-87.66241168588078,41.677521675199166],[-87.66246284726464,41.677520575610835],[-87.66246285532021,41.67752057538342],[-87.66253395070356,41.67751904215559],[-87.66282135090427,41.677513135808894],[-87.66298740688876,41.67750972286697],[-87.6633401728571,41.677502778186735],[-87.66373647098433,41.67749496142652],[-87.66403655049345,41.677489079806485],[-87.66433801520147,41.677483754059686],[-87.66463948058801,41.67747842889807],[-87.66478512032143,41.67747615751393],[-87.6650278541606,41.67747237229232],[-87.66517789972713,41.677470027782476],[-87.66529793639226,41.677468152199424],[-87.66558106354816,41.67746263482003],[-87.66604589967488,41.677453588852444],[-87.66623610901947,41.67744936821915],[-87.6664520211035,41.67744455708949],[-87.66656962586254,41.67744201977437],[-87.66676885260605,41.67743772076605],[-87.66677140860497,41.67743766533512],[-87.66680352325606,41.677350681433886],[-87.66718582004941,41.676315208089996],[-87.6673157816023,41.67596305622934],[-87.66743299987431,41.67598730797223],[-87.6684031092061,41.67618801553129],[-87.66840417725362,41.67618823659247],[-87.66840088959925,41.67619714491551],[-87.66801871650969,41.6772323417749],[-87.66798441543072,41.67732553094201],[-87.66795069271345,41.67741714709605],[-87.66803352673172,41.67741576871442],[-87.66828807688617,41.67741154608585],[-87.66849959362449,41.677408037503426],[-87.66859401518603,41.67740647024966],[-87.66870086166729,41.67740469539794],[-87.6687302703767,41.67740420709632],[-87.66892978142087,41.67740089230154],[-87.66946416647876,41.677391932118866],[-87.66983387190483,41.67738572453976],[-87.67002915744703,41.67738244820824],[-87.67016974761017,41.67738008898795],[-87.67054386540484,41.677371982722306],[-87.67055501972364,41.6773717413283],[-87.67076724944508,41.677367147296245],[-87.67084819724303,41.67736539485614],[-87.67085701788025,41.67736519733755],[-87.67105871294201,41.67736066938016],[-87.6710972442552,41.67735980410037],[-87.6711578468248,41.67735779397295],[-87.67126378259874,41.67735428722122],[-87.67136488430272,41.67735091828693],[-87.67160655036531,41.677347588886704],[-87.6716870987607,41.67734605008452],[-87.67181317075286,41.67734358029818],[-87.67187765276788,41.67734231690128],[-87.67187766778083,41.67734231643881],[-87.67187846557358,41.67734230072224],[-87.67217031441888,41.67733656317645],[-87.67226596242816,41.67733528345127],[-87.67238576415653,41.67733368040754],[-87.67238600724983,41.67733367714016],[-87.67239836033838,41.67733351161863],[-87.67240934927182,41.67733344088929],[-87.67260296107355,41.67733219125068],[-87.67267280841182,41.67733174176224],[-87.67298305682672,41.67732647181855],[-87.6732291658498,41.677321820629516],[-87.67323796383972,41.677321652985825],[-87.67338535520985,41.6773188478105],[-87.67359902053977,41.67731529909257],[-87.67386917754037,41.67731081256614],[-87.67393291875415,41.67730964091486],[-87.67408808269128,41.67730674441088],[-87.67439079225048,41.67730123476969],[-87.67462774554122,41.677296995177755],[-87.67488505525417,41.6772923769192],[-87.67516205073314,41.67728770698422],[-87.67516205915469,41.67728770675801],[-87.67544514028275,41.677282960668855],[-87.6757009082888,41.67727871624045],[-87.67601188392321,41.67727377160109],[-87.67633118630077,41.677267227115706],[-87.67661555639478,41.67726177143383],[-87.67668686326145,41.677260549001126],[-87.67689288962347,41.67725701692613],[-87.67689289474514,41.67725701722981],[-87.67717028923627,41.67725224593645],[-87.67723429464428,41.67725114476617],[-87.67749013873471,41.67724659436302],[-87.67783722087255,41.67724042403574],[-87.6781676801847,41.67723456927829],[-87.67835910728444,41.677231161291246],[-87.67849927396811,41.677228665696376],[-87.67875683638756,41.677227992608884],[-87.67879805525445,41.67722786977409],[-87.67891076607246,41.67722757854195],[-87.67935575254965,41.67722640689929],[-87.67955501892135,41.67722770553642],[-87.67988487747384,41.67723775905826],[-87.68038323202698,41.677244159363035],[-87.68069641165395,41.67725655908421],[-87.68069656332486,41.677259698924],[-87.68071085788804,41.6775549785394],[-87.68072304423733,41.677892272468625],[-87.68073223652169,41.67816360257157],[-87.68073459107056,41.67825316573046],[-87.68073858311652,41.6784050037287],[-87.68074149272242,41.678528290857344],[-87.68074522239804,41.67868628154404],[-87.68075317645939,41.678930326922796],[-87.68075906940327,41.679111129594],[-87.68076486730301,41.67928902299246],[-87.68077466580057,41.67966705672144],[-87.68078300864374,41.6799210107863],[-87.68079228300543,41.680202412986844],[-87.68080165634386,41.680484858858925],[-87.68080551179831,41.68060686586326],[-87.68080716923869,41.680656630990455],[-87.68081005802671,41.68074478216092],[-87.68081581505709,41.68092043863773],[-87.68082437845133,41.68118172101145],[-87.68083009303474,41.681376985818325],[-87.68083419984387,41.681511915406645],[-87.68084092214637,41.68173274121733],[-87.680847588497,41.681938961324704],[-87.68085671370342,41.682206147170696],[-87.68086025176969,41.68230831185699],[-87.68086204124553,41.68236005254537],[-87.68087452332226,41.68272981339733],[-87.68088069548436,41.68291245651196],[-87.68088700144894,41.68312534354857],[-87.68089633232113,41.6834410506963],[-87.68090495720388,41.68375779611836],[-87.6809127254846,41.68402522116423],[-87.6809198479925,41.684266049888514],[-87.68092751502148,41.684504151076574],[-87.68093843522122,41.68484328982358],[-87.68094785707771,41.68513553302329],[-87.68095655836399,41.68539763928325],[-87.68096204609529,41.68556109577562],[-87.68096849037376,41.68576761635771],[-87.68097415789266,41.685956733420085],[-87.68097821861372,41.68609561942249],[-87.6809857764336,41.68635409716949],[-87.68099149240616,41.68654933436021],[-87.68099756281573,41.68673848112643],[-87.6810041586131,41.68694448110089],[-87.68100910402907,41.68709528334828],[-87.68101496219698,41.68727391780465],[-87.68102106511965,41.68749251146983],[-87.6810268786622,41.68769985170158],[-87.68103179127255,41.68787677955713],[-87.68104128355866,41.68816715657387],[-87.68104683802135,41.68833709027307],[-87.6810500708746,41.688433928826335],[-87.6810556902961,41.68861791334136],[-87.68105992018053,41.6887563894106],[-87.68106927409632,41.68905541053061],[-87.68107278863286,41.689170363290906],[-87.68107559467896,41.68926335733625],[-87.6810822548521,41.689502893372776],[-87.68109206117732,41.68981778202791],[-87.6810990075066,41.690040850904026],[-87.68110808639193,41.6902910486578],[-87.68111853965684,41.690579208364646],[-87.68112645538011,41.69079161026441],[-87.68113395055748,41.69099273000101],[-87.6811410753229,41.691244261346114],[-87.68114688831022,41.69149520892521],[-87.68115514950513,41.69177915866871],[-87.68069843585005,41.69177524729693],[-87.68069264971922,41.69177532805347],[-87.68040014034105,41.691779316026555],[-87.6800572433979,41.69178398092445],[-87.6797095332722,41.69179026457415],[-87.67941836171106,41.691795907825444],[-87.67893680558406,41.6918044736831],[-87.67890026285602,41.69180513829352],[-87.6784473381092,41.69181337637258],[-87.67795919875904,41.691821241703586],[-87.6775102591995,41.691829117627],[-87.67719662077675,41.69183461880269],[-87.67680715644336,41.691842329041506],[-87.6764195079987,41.69184925330621],[-87.6763555184359,41.69185039607682],[-87.67598469897708,41.69185724987036],[-87.67535746248247,41.691868836318775],[-87.67492293127495,41.69187606231618],[-87.67438010585926,41.691885986969744],[-87.67402371478634,41.691892295846756],[-87.67358738670856,41.69190001802872],[-87.67326966181767,41.69190631683332],[-87.67290883799386,41.691913135505374],[-87.67260052336522,41.69191940420695],[-87.67224537131534,41.69192650039452],[-87.67189524207376,41.69193236007823],[-87.67153758059806,41.69193836330695],[-87.67147979431559,41.6919393283194],[-87.67114461196309,41.69194491695319],[-87.67093974009939,41.69194670017343],[-87.67067353491971,41.69194900757578],[-87.67061476829574,41.69194210617753],[-87.67049431578629,41.691923604618864],[-87.67029223091848,41.69187858413824],[-87.67013337921873,41.69183079430817],[-87.6700035667366,41.691789703391514],[-87.6697596204374,41.69171109558181],[-87.66976092252358,41.69179027852373],[-87.66968600208733,41.69192651376063],[-87.669555777935,41.6921355934857],[-87.66948925870912,41.69224520217971],[-87.66941655673261,41.692364984038036],[-87.6693030797606,41.69255467543464],[-87.66913769976252,41.69282818058668],[-87.669050319264,41.69296881663132],[-87.66897962987362,41.693081474561055],[-87.66885002599544,41.6932689316734],[-87.66871375499534,41.693193470347566],[-87.6686171198349,41.69312326025321],[-87.66857443160703,41.69308733699458],[-87.66849145769098,41.69304879309794],[-87.66832098291086,41.69297752436008],[-87.66813039721548,41.69290375139258],[-87.66787452813087,41.692805148087984],[-87.66765389637017,41.692717638668604],[-87.66741313658916,41.692622145286975],[-87.66731193862779,41.692582781409655],[-87.66705833266876,41.692485095031984],[-87.66704399818973,41.69248382774531],[-87.66657589973896,41.69231449722967],[-87.66633183515493,41.6922263245982],[-87.66525942994807,41.69177161031788]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6916092.42088","perimeter":"0.0","tract_cent":"1173838.94979966","census_t_1":"17031711500","tract_numa":"39","tract_comm":"71","objectid":"422","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1845857.90433823","census_tra":"711500","tract_ce_3":"41.73244152","tract_crea":"","tract_ce_2":"-87.63873903","shape_len":"10504.2689544"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6351025768652,41.73602336955136],[-87.63472467645491,41.735964466445424],[-87.63441308574329,41.73593718666657],[-87.63412816477789,41.73594231372031],[-87.63411548990761,41.73584412800968],[-87.63410873193256,41.73579160138161],[-87.63409453082963,41.735623083398195],[-87.63408391898415,41.735461447206546],[-87.63406893101381,41.73519652992756],[-87.63403239468576,41.734469407981244],[-87.63402753955693,41.734368206077484],[-87.63402521152643,41.73432940435145],[-87.63402222183798,41.73426729609553],[-87.6340046349997,41.73390425377556],[-87.63395747309382,41.732890286577856],[-87.6339457771873,41.73261749903101],[-87.63390665153318,41.73170717805762],[-87.63385500033435,41.730883272667526],[-87.6338154374412,41.73040616120013],[-87.633797644518,41.72997793989701],[-87.63374588916759,41.729978649802995],[-87.63374238946705,41.72992134505507],[-87.63373383514158,41.728852725292924],[-87.63497248618106,41.72885625368433],[-87.63503783679009,41.72888044405504],[-87.63513101843712,41.72888199824695],[-87.63535424940397,41.72888050036399],[-87.63551756332882,41.72887829268057],[-87.63561061934558,41.728877035267864],[-87.63592517992033,41.728872193878345],[-87.6361259758406,41.728869438645965],[-87.63642161561754,41.72886538122599],[-87.63666047920078,41.72886147829045],[-87.63674027611881,41.72886038024843],[-87.63687090342054,41.72885858254138],[-87.6371117015165,41.72885526669916],[-87.6373444045868,41.728850783286674],[-87.63750289393897,41.72884772931998],[-87.63777249029631,41.7288441199483],[-87.63794853043174,41.728841753400744],[-87.6380117855796,41.72884090289504],[-87.63837243808123,41.72883551041415],[-87.63855605998448,41.728833219801466],[-87.63861857763666,41.72883243969661],[-87.63877840399132,41.72883044559619],[-87.63901752195373,41.72882667623879],[-87.63915902807764,41.728824509983866],[-87.63928741685329,41.72882254397053],[-87.63957328160198,41.72881867187411],[-87.63976989443957,41.72881644677799],[-87.63996546598597,41.72881423317449],[-87.64020586561047,41.72881046935192],[-87.64037299076423,41.7288078441542],[-87.64081908181875,41.72880121355509],[-87.64098831469113,41.72879860592808],[-87.64119549113235,41.728795413471595],[-87.64139048640955,41.72879301998146],[-87.64159229736683,41.72879047152177],[-87.64165832108236,41.728789637870676],[-87.64205105472564,41.72878519535765],[-87.64219738002762,41.72878308975439],[-87.64236575761036,41.728780666232645],[-87.64266599426078,41.728775720524894],[-87.64280303326848,41.728773592361954],[-87.6429526707912,41.7287712685927],[-87.64313264991999,41.728768452880644],[-87.6434149994753,41.7287688976545],[-87.64342364768824,41.728999783815304],[-87.6434407154338,41.72955597673291],[-87.64344426105696,41.72973473497545],[-87.64344668363862,41.72985687784213],[-87.64345379862924,41.73021560441372],[-87.64346681819414,41.730789911178306],[-87.64346787273763,41.7308369416103],[-87.64346787808987,41.73083719466821],[-87.64351831096963,41.732551482861965],[-87.64354139083738,41.733361434802475],[-87.64356558207541,41.73421034799419],[-87.64356852199565,41.73431351118511],[-87.64358104777777,41.73477619981528],[-87.64359762557885,41.73538856172329],[-87.64361496456706,41.73586566264526],[-87.64362180882279,41.73607036024119],[-87.6435415594616,41.73606953382443],[-87.64239945716429,41.736079475760235],[-87.64118193771527,41.736086214616726],[-87.63996973513773,41.73609332090758],[-87.63875219399904,41.736100025376196],[-87.63753787590502,41.73610708910281],[-87.63631647055966,41.7361134065333],[-87.63631642989334,41.73611340628661],[-87.63590656855006,41.73610646031166],[-87.63551506242904,41.73609996711448],[-87.63531382640663,41.736074389040766],[-87.6351025768652,41.73602336955136]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7873683.65407","perimeter":"0.0","tract_cent":"1108237.7679361","census_t_1":"17031770700","tract_numa":"17","tract_comm":"76","objectid":"418","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1936643.19047872","census_tra":"770700","tract_ce_3":"41.98277501","tract_crea":"","tract_ce_2":"-87.8773054","shape_len":"27266.8188704"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.87714944412517,41.98633087198105],[-87.87691093087156,41.985668605207664],[-87.8768821685895,41.985669498796575],[-87.87688215902459,41.98566949903296],[-87.87680236226333,41.98567197862049],[-87.8764846647871,41.98568184938049],[-87.87625587024719,41.98568895749567],[-87.87605640857335,41.98569515429467],[-87.8758570480381,41.9857013473082],[-87.87585730880288,41.985579636780614],[-87.87585760610116,41.985441262754314],[-87.87585789358995,41.98530718693546],[-87.87585909437641,41.98474779929382],[-87.87585928308536,41.98466250791876],[-87.8758593610212,41.98462716504723],[-87.87586100217987,41.98388530307355],[-87.87586251672394,41.983180431587186],[-87.87586299763892,41.982938504207326],[-87.87577682360552,41.98269918478696],[-87.87563598590623,41.98230804994103],[-87.87547460394738,41.981859854979646],[-87.87527315247546,41.98130046758941],[-87.87492618553897,41.98033699072882],[-87.87489387458629,41.98024724052492],[-87.87493704431583,41.98024613739999],[-87.87493706234073,41.98024613692312],[-87.8750221812631,41.98024396142663],[-87.87502089534935,41.98024039019417],[-87.87498349029698,41.98013651252469],[-87.87498335579359,41.98013613877532],[-87.87493380616998,41.97999853210527],[-87.87479680799306,41.97961806715031],[-87.87468522857496,41.9793081902131],[-87.87455703314747,41.978952164896434],[-87.87445295694538,41.978663119887145],[-87.87434356559486,41.9783593105297],[-87.87424534784313,41.97808653060449],[-87.87413728716355,41.97778641209103],[-87.87402732835459,41.9774810178078],[-87.87391854171528,41.977178876141544],[-87.87382678458336,41.97692402982473],[-87.87373163201754,41.97665975115303],[-87.87373064191115,41.97665700078381],[-87.87373110353725,41.97665698945969],[-87.87397973555328,41.97665080845802],[-87.87415070313816,41.97664655228746],[-87.87454914793844,41.9766366431969],[-87.87463963932252,41.976634392577246],[-87.874640122282,41.97663438078586],[-87.87516825169931,41.97662124370143],[-87.87556036659892,41.97661148832854],[-87.87588274121156,41.97660346717229],[-87.87588275479378,41.97659966786744],[-87.87588275481144,41.97659966539772],[-87.87588275482716,41.976599663202414],[-87.87588275670839,41.976599194773236],[-87.87588430289406,41.97616863736247],[-87.87588484160025,41.97601874168094],[-87.87588538799147,41.97586648655395],[-87.87588599949703,41.97569618959543],[-87.87588659109295,41.975531346122416],[-87.87588831563025,41.97505082137839],[-87.87588832230503,41.97504896357422],[-87.87588853923172,41.97498848257885],[-87.8758885459968,41.97498661215164],[-87.87588925618167,41.97478874694197],[-87.87588981109988,41.97463760624049],[-87.87589031311398,41.974500795869375],[-87.87589060599458,41.974421014035876],[-87.87589060607313,41.97442100305934],[-87.87589186580031,41.97407767514018],[-87.87589258615725,41.97388141420576],[-87.87543548682548,41.97389278393579],[-87.87506226632286,41.97390206603305],[-87.87481794962538,41.97390814121721],[-87.87442887652317,41.97391781512577],[-87.87420088847789,41.97392348335919],[-87.87358430338374,41.97393881036939],[-87.8733271530005,41.97394520200266],[-87.8732243048053,41.97394773027721],[-87.87300847878788,41.973953035722566],[-87.87300727280955,41.9739496829492],[-87.8729761759471,41.97386322536822],[-87.87283726986269,41.973866708031245],[-87.87272709196095,41.97386947045276],[-87.87265996552058,41.973871128099],[-87.87257606601462,41.973873200273125],[-87.8726427463215,41.97395830269362],[-87.8726459949248,41.973962449060785],[-87.87209019881655,41.97397517225508],[-87.87176757571919,41.97398255664668],[-87.87153602823109,41.97398785566395],[-87.87121586309516,41.97399518225653],[-87.87096830290629,41.97400084651294],[-87.87096829996437,41.97400084650109],[-87.87086179381826,41.97400339360136],[-87.87040267958832,41.974014371565175],[-87.87013286875725,41.97402082244241],[-87.86987318855955,41.97402703038049],[-87.86965031797205,41.97403235787789],[-87.86923114671984,41.97404091922884],[-87.86892372679603,41.97404719710842],[-87.86860487031444,41.97405370750483],[-87.86860528051434,41.97401255834803],[-87.86860568461111,41.973972096865545],[-87.86860721182703,41.973809262381295],[-87.8686073214444,41.97379757275977],[-87.8686073185025,41.97379757274786],[-87.8686073155606,41.973797572735954],[-87.86856579925063,41.97379814450952],[-87.8681932070157,41.973806844254625],[-87.86783745952692,41.97381517201836],[-87.86783760763183,41.97382897298233],[-87.86783822552502,41.973886486469304],[-87.86783925649458,41.973982521572744],[-87.86767554041415,41.973986306826],[-87.86751365601778,41.973990049333246],[-87.86749189630274,41.973990552417845],[-87.86749221410535,41.97390641592136],[-87.86749277713469,41.973749010255304],[-87.86749285197494,41.97372799045021],[-87.8668863260736,41.973743036356105],[-87.86684280277504,41.973744291991075],[-87.86680685484062,41.973745328670496],[-87.86678484012698,41.97374596367918],[-87.86674219409183,41.97374719347803],[-87.86672455723433,41.973747702196704],[-87.86661726812815,41.9737503889924],[-87.8662466862087,41.97375966797449],[-87.8661173671384,41.97376290571813],[-87.86605446426135,41.973764056113566],[-87.8660543995276,41.97376405749661],[-87.86597806396091,41.97376545339178],[-87.86588490424374,41.97376715696552],[-87.86566943392366,41.97377109689106],[-87.86550123399053,41.97377417198154],[-87.86542544992372,41.97377598330922],[-87.86535410939096,41.973777688936394],[-87.86521343251867,41.97378105307135],[-87.86473846438963,41.97379241052697],[-87.86426575550311,41.973803773052765],[-87.86415489222277,41.973806437455],[-87.86413724378896,41.97380721575918],[-87.86411638570962,41.97380813599039],[-87.86408255405485,41.97380962804693],[-87.86404400891357,41.97381132804667],[-87.86400796637118,41.97381291779344],[-87.86399693147091,41.97381320171235],[-87.86381776169951,41.97381749045392],[-87.86369759904304,41.97382036637981],[-87.86321505334035,41.973831915126155],[-87.86286947817823,41.97384018435266],[-87.86270973138762,41.97384400623233],[-87.86251052520203,41.97384877226038],[-87.86250206033004,41.973848977114265],[-87.86240710141261,41.97385127503629],[-87.86238833737909,41.973851729069196],[-87.86224266679682,41.97385625567492],[-87.86200864643811,41.9738635269553],[-87.86199502622044,41.97371268487933],[-87.8619351365202,41.97343112990842],[-87.86190219194364,41.9733206776169],[-87.86227798925935,41.97331083170204],[-87.86227800581145,41.973310831221106],[-87.8627917896711,41.97329736671718],[-87.86316354444475,41.97328762317701],[-87.86406751346033,41.97326571825834],[-87.8642741486257,41.97326071753265],[-87.86454063073342,41.9732531900008],[-87.86485129730126,41.973244413526615],[-87.86542945005519,41.97323156869162],[-87.86605979370768,41.97321756127761],[-87.86645890723815,41.97320738439334],[-87.86681082250858,41.9731995672739],[-87.86701138621393,41.9731951132327],[-87.86712673353111,41.97319206883887],[-87.86734400034217,41.97318652975046],[-87.86770000608932,41.973177463622015],[-87.86796365436282,41.973170793974035],[-87.86802532613626,41.973169241277866],[-87.8680838185376,41.973167768967215],[-87.86848169846944,41.97315535723914],[-87.86858851569151,41.97316199162005],[-87.86858853370249,41.97316199279065],[-87.8686349041582,41.973164866256106],[-87.86867475009035,41.973167335417685],[-87.86875887195949,41.973169926115915],[-87.86882639064486,41.97316986974254],[-87.86943146617514,41.97314367362908],[-87.86988726226893,41.97312393842392],[-87.87060680712686,41.973106396210206],[-87.87089392009055,41.973099183237025],[-87.87100786462706,41.973096321936225],[-87.8710078672012,41.97309632194659],[-87.87138888373363,41.97308674164296],[-87.8717070797193,41.97307830731314],[-87.872084381446,41.97306862716286],[-87.87243724364409,41.97306183885003],[-87.87255113047073,41.97305900652077],[-87.87257745757029,41.97305835148979],[-87.87257765250654,41.973058347058156],[-87.87268617739426,41.97305564729982],[-87.87285345803267,41.9730514893962],[-87.87293100698618,41.97304957019855],[-87.87305384063835,41.97304652983834],[-87.87589582868665,41.97297589160896],[-87.87732285386716,41.972940405823],[-87.87769085702786,41.972931243849736],[-87.8777569932869,41.9731571387149],[-87.87784871222772,41.97344564461209],[-87.8780262874659,41.97400719752843],[-87.87822905866349,41.974646030394304],[-87.87835510896166,41.97514940696784],[-87.87850642281123,41.975720459366954],[-87.87867040253009,41.976320719185026],[-87.87875826061678,41.976765628898185],[-87.87881130519801,41.97709943772837],[-87.87881705466778,41.977135619026015],[-87.8789069703753,41.977704051672376],[-87.87896800593059,41.978236326898546],[-87.87899003835297,41.97875849938314],[-87.87900062198968,41.9791451320097],[-87.87898481544335,41.9794932409693],[-87.8789715275407,41.97974565531873],[-87.87895396299703,41.98008243741906],[-87.87893544517301,41.98048850726137],[-87.87891612031282,41.980943283573346],[-87.87888578549392,41.98158873816639],[-87.87887048892247,41.98192964543476],[-87.87883502261171,41.98271469114009],[-87.87875849204296,41.98442505841279],[-87.87871875531924,41.985098946752814],[-87.87873541717683,41.9857298371057],[-87.8787372812372,41.98579090306879],[-87.87874864247412,41.986142940751535],[-87.87876071793492,41.98618033007271],[-87.8787899398041,41.986596879256176],[-87.878845239458,41.9870962002834],[-87.87890104041107,41.98752520297125],[-87.87896970164374,41.98776216270606],[-87.8790376816113,41.988095166863694],[-87.87911836509073,41.98832291182312],[-87.87923367672556,41.988595043998444],[-87.87937213010906,41.98891083263001],[-87.87958163887058,41.98919191252789],[-87.87979093840865,41.98943800287578],[-87.87998874658179,41.98968370470212],[-87.88017549608519,41.989868303437625],[-87.88044408844323,41.990053225322804],[-87.88077110066054,41.99029977818395],[-87.88121523882913,41.99056428548006],[-87.88156595358214,41.99077594081207],[-87.88196338570309,41.99101384869835],[-87.88229025887895,41.99121648912457],[-87.88257100174464,41.99137538408265],[-87.88286305684076,41.991560391849895],[-87.88308470388968,41.99175369865018],[-87.88328296308859,41.99193833796897],[-87.88351625645349,41.99217593958347],[-87.88379550094369,41.99248335481705],[-87.88399265501644,41.99282578022367],[-87.88422509468006,41.99318549431591],[-87.88433994600231,41.993527596796675],[-87.8844554435769,41.99384328872338],[-87.88448854319084,41.99410617578351],[-87.88454555411839,41.99436915575623],[-87.88454407931845,41.99457908144288],[-87.88454198757796,41.99487681971699],[-87.88445977525892,41.99510152776132],[-87.88445976422118,41.99510152799259],[-87.88443116367382,41.995102425746545],[-87.88442152333118,41.995102728054526],[-87.88420045783927,41.99510964618492],[-87.8828215205879,41.995152757587526],[-87.88184417918274,41.99518330435557],[-87.88083877093526,41.99521471953566],[-87.88063956884643,41.99522095053026],[-87.88060350134118,41.99522207885782],[-87.88047812572661,41.99522599810539],[-87.88035483859645,41.99522985246138],[-87.88035483571387,41.99522984394299],[-87.88031474373258,41.99511855600171],[-87.88018085876321,41.99474691135087],[-87.87991207936885,41.994000804993334],[-87.8797437093514,41.99353341636809],[-87.87967033421016,41.993329725596446],[-87.87962105270664,41.99319292471005],[-87.87931501667299,41.99234338402819],[-87.87904258413243,41.99158710569593],[-87.87880139360539,41.990917540102416],[-87.8784444191556,41.98992652182332],[-87.87827171977378,41.98944706953562],[-87.87816032739495,41.98913776992973],[-87.87782688812187,41.988211903734744],[-87.87781440965246,41.98817725446446],[-87.87755812650069,41.987465608651334],[-87.87755076496367,41.987445167203646],[-87.87750794073628,41.987326265021515],[-87.87734121626909,41.9868633461895],[-87.87714944412517,41.98633087198105]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2421522.57693","perimeter":"0.0","tract_cent":"1170950.90088238","census_t_1":"17031062000","tract_numa":"7","tract_comm":"6","objectid":"426","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922412.32707034","census_tra":"062000","tract_ce_3":"41.94257719","tract_crea":"","tract_ce_2":"-87.64707851","shape_len":"6303.51623785"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64614785126656,41.945501782824195],[-87.64607449082769,41.945381399651524],[-87.6459888869435,41.94524735378945],[-87.64590533070343,41.94511096009764],[-87.6458105035283,41.94495614006312],[-87.64573955920703,41.944841139914146],[-87.64563130513847,41.94466566210347],[-87.64555988760618,41.94454912663541],[-87.64553549354231,41.94450932661795],[-87.64546354409289,41.94439193719462],[-87.64537584190441,41.94424816349431],[-87.64530834684955,41.94413560440588],[-87.64520839924862,41.94396892478313],[-87.64512855689709,41.94383609252102],[-87.64503600709156,41.943683782978084],[-87.64497025178693,41.94357556832278],[-87.64492682590691,41.943505220731005],[-87.64487389869144,41.94341950343529],[-87.64481407636589,41.94332145068654],[-87.64471879880979,41.943165282618864],[-87.64467179169755,41.94308624145627],[-87.64460384622201,41.94297183923743],[-87.64454502099107,41.942870663919166],[-87.64451729812322,41.94280244108819],[-87.64450646101268,41.94277748632235],[-87.64448488075918,41.942727796065],[-87.64447610053247,41.94259080709198],[-87.64446991679488,41.942328670073465],[-87.64446722641674,41.942228462111935],[-87.6444575266681,41.94186715632867],[-87.64445220187241,41.94167384055565],[-87.64445220162894,41.94167382902849],[-87.6444424725664,41.94139185005451],[-87.64443353419804,41.941134900032836],[-87.64442234644294,41.94081327620713],[-87.64441682915583,41.940595105982645],[-87.64439968803715,41.940044966864114],[-87.6446802494481,41.94003895137947],[-87.64501796498054,41.940031318767566],[-87.64547001778813,41.94002110076379],[-87.64622642962786,41.94002214483863],[-87.64683598144491,41.94001503704286],[-87.64714726381025,41.940011406108795],[-87.64764227440673,41.940005389869995],[-87.64819521480511,41.93999560087422],[-87.64866494197088,41.93998917523354],[-87.64878470805166,41.939987536474966],[-87.64926661399129,41.93998093510221],[-87.64927666846366,41.94031845725939],[-87.64928437706428,41.940550252198555],[-87.64930154993151,41.94106662349477],[-87.64930348275732,41.94112475776542],[-87.64932713357204,41.941795493748195],[-87.64933152031479,41.94191989621245],[-87.64935757647805,41.94270905352545],[-87.6493616162318,41.94283140205283],[-87.64936084000186,41.94292524956472],[-87.64936341196037,41.94305599926301],[-87.64936644561973,41.94323647687275],[-87.64936925839568,41.943416952886544],[-87.64937492120761,41.9436161850136],[-87.64937818061706,41.943730834645294],[-87.64938405858406,41.943927135850245],[-87.64938870689463,41.94408111367001],[-87.64938967827405,41.94411328191824],[-87.6493964363362,41.944337332079805],[-87.64940355240394,41.94452892059113],[-87.64940965203112,41.94469314350534],[-87.64941220586743,41.944805067749755],[-87.64941769980075,41.94504763406882],[-87.64942277215198,41.945271180467614],[-87.64942984967314,41.94546126461382],[-87.6492189098571,41.945439777848755],[-87.64898628641792,41.945441355267846],[-87.64890969459108,41.94544192916387],[-87.64859463102728,41.94544428872768],[-87.64820281889313,41.94544812605513],[-87.6479680235614,41.94544999278348],[-87.6477532992669,41.945451699522735],[-87.64752062844445,41.94545426160558],[-87.64730442688054,41.94545664720405],[-87.64713881496276,41.94545839596813],[-87.6469625349205,41.94546025689616],[-87.64659601500412,41.94546388291614],[-87.64631324795477,41.94546589591681],[-87.64622529433832,41.945478733899705],[-87.64614785126656,41.945501782824195]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1170045.55529","perimeter":"0.0","tract_cent":"1173126.15542016","census_t_1":"17031600200","tract_numa":"9","tract_comm":"60","objectid":"764","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1886641.69473636","census_tra":"600200","tract_ce_3":"41.84437243","tract_crea":"","tract_ce_2":"-87.64014568","shape_len":"5034.71052094"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64112613972854,41.841755644110094],[-87.64149722458548,41.841750351056355],[-87.64150332183664,41.842012090187886],[-87.64150712776026,41.84220476000519],[-87.64151054476237,41.84233296531918],[-87.641515598765,41.84254172428973],[-87.64151860378558,41.84265867509411],[-87.64152475304026,41.84289798455209],[-87.64152904477837,41.843115438218426],[-87.64153354034482,41.84325421513905],[-87.64153758747007,41.843444060052775],[-87.64154088401368,41.84357085076993],[-87.64154656621905,41.84378934215782],[-87.64155149588309,41.84399947245626],[-87.64155469069516,41.84416283009621],[-87.64155761914927,41.84437135665642],[-87.64156056811188,41.8444806780412],[-87.64156569718631,41.84467080413115],[-87.64157029606962,41.84486391799072],[-87.64157209617933,41.84493223347211],[-87.64157412560442,41.84500927708149],[-87.64157872960625,41.84517810425773],[-87.64157952589169,41.845392687693774],[-87.64158045959825,41.84564439190777],[-87.64158607938225,41.84584859732104],[-87.6415894368359,41.84593533752589],[-87.64160007235058,41.8463005525087],[-87.64128010140841,41.84630466261794],[-87.64102300306912,41.846308437049984],[-87.64077316818265,41.84631252913053],[-87.64055438869192,41.846316039324876],[-87.64045395607508,41.846317664024596],[-87.64028994489385,41.84632031693534],[-87.63998138390261,41.846321370130084],[-87.63998133068289,41.84632137035766],[-87.63961543930358,41.84636318876334],[-87.63956598113434,41.84636891614539],[-87.63952500061998,41.84637366177876],[-87.63835783199212,41.846182556817695],[-87.63835584065518,41.84611554037882],[-87.6383543238488,41.84606449812678],[-87.63835160694566,41.8459730643627],[-87.63834916211844,41.845890776116605],[-87.63834746159885,41.84583354801284],[-87.6383419769168,41.84564171851313],[-87.63833606235177,41.84543643925787],[-87.6383297577623,41.845217656424865],[-87.63832633907438,41.84503165723716],[-87.6383252253216,41.84497857650802],[-87.63832232338467,41.84483978171414],[-87.63832032749829,41.84470543810115],[-87.63831313138563,41.844523971236285],[-87.63830694954376,41.84436808755854],[-87.63830147759217,41.84417513293912],[-87.63830021978188,41.84407002070016],[-87.63829931923969,41.8439947670783],[-87.63829854268457,41.843835897134305],[-87.63829148955728,41.84361678149607],[-87.63860166989342,41.84361349753693],[-87.63888080723129,41.84360698029087],[-87.63913085866241,41.84360226243825],[-87.63943486414054,41.84359707418142],[-87.63990488811687,41.843590912241694],[-87.63989672509858,41.84330216588787],[-87.63989340570335,41.843167732217665],[-87.63988916326943,41.84301002136283],[-87.63988519890773,41.84281636263532],[-87.63988245956617,41.84268238937524],[-87.63987652878646,41.84239234908628],[-87.63987163497355,41.842240589324504],[-87.63986837779281,41.84210719854977],[-87.639861394469,41.84177165778085],[-87.64027882288187,41.84176694923654],[-87.64060390472525,41.84176328050232],[-87.64081212784205,41.841760502100065],[-87.64088777662941,41.841759331947245],[-87.64112613972854,41.841755644110094]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9175008.60979","perimeter":"0.0","tract_cent":"1121188.9115968","census_t_1":"17031810400","tract_numa":"19","tract_comm":"0","objectid":"419","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1936257.0021553","census_tra":"810400","tract_ce_3":"41.98151617","tract_crea":"","tract_ce_2":"-87.82968104","shape_len":"17168.4825273"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.8238390513729,41.9805867720986],[-87.82385639097066,41.98045542902482],[-87.82387459202118,41.98031755855771],[-87.82389044550091,41.98019735008017],[-87.823908647053,41.98005939755178],[-87.82392441787643,41.97994031409626],[-87.82393854711997,41.97983338018626],[-87.82396171829818,41.979657908673104],[-87.82397455070982,41.97955063996889],[-87.82398788191635,41.979439201457005],[-87.82400954967305,41.979276978044055],[-87.82402558628374,41.97915679805458],[-87.82404181567931,41.979035493790775],[-87.82405856219889,41.97890466941847],[-87.82407809249253,41.97875217815508],[-87.82409327229189,41.978637674852514],[-87.82411080446477,41.97850542750955],[-87.82412317057486,41.978411986678715],[-87.82413707732363,41.97830057867074],[-87.8241531061533,41.97817844994657],[-87.82416934008086,41.97805475847787],[-87.82417092073659,41.97804238911373],[-87.8241787131641,41.97798152971531],[-87.82419098643933,41.977885866197646],[-87.82421188397234,41.97773016995049],[-87.82422101315909,41.97766215436714],[-87.82422785718913,41.97761092292352],[-87.82424894786472,41.977446144740476],[-87.8242689176723,41.977290115051886],[-87.82428252554806,41.97717922707825],[-87.82429776163772,41.97705783600489],[-87.82431009004301,41.97695986756872],[-87.82432823068538,41.9768178260291],[-87.8243450760896,41.97668593121194],[-87.8243610313857,41.97656618955857],[-87.824361211945,41.976564851734445],[-87.82436122641269,41.976564743676796],[-87.82440324129465,41.97625359240633],[-87.82441210616311,41.9761854175518],[-87.82442371129176,41.97609616724992],[-87.82442557441898,41.97608184113761],[-87.82442649188366,41.97607478600353],[-87.82454838995115,41.97607432521353],[-87.8248668391381,41.976069040218874],[-87.82501234551849,41.97606655618629],[-87.8251137135338,41.976064864496],[-87.82524641928103,41.976062652803684],[-87.82536066101595,41.97606074344972],[-87.8254711509114,41.97605887226891],[-87.82559692145679,41.97605674584565],[-87.82559733634632,41.976056738899125],[-87.82560753535782,41.97605656666453],[-87.82569595680461,41.976055091622534],[-87.82585440960467,41.97605244423214],[-87.82592076230564,41.97605131080857],[-87.8261012835249,41.97604826638318],[-87.82614556742101,41.97604752900379],[-87.82634815698282,41.97604414288539],[-87.82637029969783,41.97604374671151],[-87.82655962141045,41.97604060733356],[-87.82659510433142,41.976040019182804],[-87.82676163834276,41.976037126301065],[-87.8267617446415,41.97603712430033],[-87.82676720480416,41.97603702929483],[-87.82696291618312,41.97603362902969],[-87.8271958877358,41.97602960731619],[-87.82720692228298,41.97602943615341],[-87.82741628012047,41.97602580301913],[-87.82742731392462,41.97602563265514],[-87.82763674565625,41.97602199971882],[-87.82764777982925,41.976021829060855],[-87.82785721190758,41.976018195723796],[-87.82786824651353,41.976017970162374],[-87.82807767813466,41.97601439157965],[-87.82808871200606,41.97601416571938],[-87.82829807005673,41.97601058641077],[-87.8283091046624,41.97601036053254],[-87.82851853587403,41.976006781143674],[-87.82852957047847,41.97600655524424],[-87.82873907565205,41.97600292089405],[-87.82875003627244,41.97600274953241],[-87.82895946787536,41.9759991144566],[-87.82897050204429,41.97599894339704],[-87.82917986007656,41.97599530759591],[-87.82919089424662,41.97599513624075],[-87.82940032617297,41.97599150063642],[-87.82941135997208,41.97599132953285],[-87.8296207918795,41.97598769325179],[-87.82963182567758,41.97598752212703],[-87.82984125756391,41.975983885443625],[-87.82985229136094,41.97598371429767],[-87.83006164967446,41.97598007716391],[-87.83007268347262,41.975979905722355],[-87.83028211531675,41.975976268234405],[-87.83029314954359,41.975976042163786],[-87.83050258093475,41.975972459155784],[-87.83051361516036,41.975972233063956],[-87.8307230457951,41.975968649650405],[-87.83073408075497,41.97596842354061],[-87.83086477577555,41.97596618612202],[-87.83086477945304,41.97596618613812],[-87.83086478313051,41.97596618615422],[-87.83086548969486,41.97596617387915],[-87.83086550220044,41.97596617365946],[-87.83094343781923,41.97596483940285],[-87.83095447277786,41.97596461327187],[-87.83116390380191,41.97596097417149],[-87.83117493832816,41.975960802901575],[-87.83138436933109,41.975957163398874],[-87.83139540385632,41.97595699210776],[-87.8316160164614,41.97595318153328],[-87.83171029105458,41.975951547418],[-87.83171045031736,41.97595154454642],[-87.83173990641512,41.97595103384887],[-87.83185877133504,41.97594897330024],[-87.83207923679437,41.97594516119273],[-87.83229955513242,41.975941348019695],[-87.83252002128289,41.9759375350686],[-87.83265935953506,41.97593512475174],[-87.83266249033251,41.97593507089814],[-87.83274048594018,41.97593372168758],[-87.83296087775906,41.97592990784007],[-87.83318134384508,41.97592609334411],[-87.83340180806802,41.97592227869102],[-87.8336039549639,41.97591878069411],[-87.83361093121643,41.97591865985529],[-87.83362227373972,41.975918463620815],[-87.83362227066996,41.975918856303714],[-87.83362224232926,41.97592234050211],[-87.83362054194822,41.9761305836834],[-87.8336191110853,41.97631361616377],[-87.8336176943699,41.97649483724793],[-87.83361686029389,41.976601528438756],[-87.83361886639321,41.9768906123452],[-87.8336186957278,41.9768906151698],[-87.83361723770707,41.976890640381654],[-87.83361723255852,41.976890640359244],[-87.83353257688307,41.976892102770215],[-87.83339817714719,41.97689437127253],[-87.83336728145487,41.97689489533504],[-87.83322015492591,41.97689738317232],[-87.83320176462489,41.976897686971725],[-87.83317741506202,41.97689812973264],[-87.83301072134562,41.97690097085068],[-87.83295679932084,41.976901888406026],[-87.83290780641626,41.97690271765399],[-87.83284527804,41.97690376229376],[-87.83273603762181,41.97690559113478],[-87.83267998255906,41.97690655414306],[-87.83259538510761,41.976907996358456],[-87.83251534865424,41.97690934864041],[-87.83245936713443,41.976910312136205],[-87.83229466046494,41.976913050566566],[-87.83228296338785,41.97691327421081],[-87.83226825104074,41.97691353930318],[-87.83207706027476,41.97691676610034],[-87.83207389753119,41.97691680744949],[-87.83185328168342,41.97692056372708],[-87.83173338938741,41.97692256077844],[-87.8316105247791,41.97692460728258],[-87.8313907179411,41.976928366481204],[-87.83133098444867,41.97692942251597],[-87.83129965281726,41.97692995975769],[-87.83129645208638,41.976930014640345],[-87.83117032298028,41.976932177570525],[-87.83116568805755,41.976932267064846],[-87.83113354154175,41.97693283993891],[-87.83111058984953,41.97693323349219],[-87.83094985370897,41.97693598818593],[-87.83089012057427,41.97693704371842],[-87.83087636444016,41.9769372579332],[-87.83085341274526,41.97693765143504],[-87.83072953268821,41.9769397435939],[-87.83066972605847,41.97694074408021],[-87.83061926129311,41.97694162051654],[-87.8305411374526,41.976942980071634],[-87.83050906374268,41.97694355308969],[-87.83044925667528,41.976944608343366],[-87.83036208443336,41.97694609251824],[-87.83028866832568,41.97694736248421],[-87.83022878813348,41.97694836241843],[-87.83010498116042,41.976950509107716],[-87.83006827331866,41.9769511165732],[-87.82991651232076,41.976953744237626],[-87.82984780467464,41.97695492480023],[-87.82962740882367,41.976958732923215],[-87.8296042368315,41.9769591252087],[-87.82960419302651,41.97696991057716],[-87.82960320498137,41.97721405567719],[-87.82960320496623,41.97721405759806],[-87.82960320494892,41.977214059793354],[-87.82960320462239,41.97721410122946],[-87.8296029952013,41.9772659222062],[-87.82960704513648,41.977332133836924],[-87.82960729510009,41.97733620898463],[-87.82964161741819,41.97733551271605],[-87.82964687477207,41.977335405981485],[-87.82976501675147,41.97733348191706],[-87.83001704482521,41.97732926337689],[-87.83001709263992,41.977329262763256],[-87.83001732436485,41.97732925883961],[-87.83001844473424,41.977329240151356],[-87.83003984506685,41.97732887980644],[-87.830037407495,41.97739609205812],[-87.83004478483473,41.97769227902483],[-87.83005208874191,41.97798841076985],[-87.83005429685072,41.978058145548786],[-87.83002737605369,41.97805864030891],[-87.83002562042067,41.978058672677385],[-87.83002561600324,41.97805867320686],[-87.83002561306115,41.978058673193964],[-87.83002163520169,41.97805881738816],[-87.83002216723257,41.978082841140896],[-87.83002216752902,41.97808285019807],[-87.83002217819397,41.97808331730894],[-87.83002312662668,41.97812615278278],[-87.83002203088324,41.97812617157902],[-87.83002201911276,41.97812617180184],[-87.82991854887275,41.97812793516737],[-87.82979424039219,41.978130053523955],[-87.82971062518882,41.97813147843582],[-87.82971230307685,41.97820908759171],[-87.82971484187013,41.97832651897197],[-87.82971687350748,41.9784204722548],[-87.82971687348154,41.978420475547736],[-87.82971692542623,41.978422891501296],[-87.82971693243672,41.97842321534851],[-87.82971024507468,41.97842332349664],[-87.82940457843148,41.97842826611819],[-87.82931000145597,41.978429205741946],[-87.82930969434017,41.978429208784306],[-87.8293093364689,41.97842921215268],[-87.82922067671129,41.97843009316006],[-87.82911539956125,41.978431795726635],[-87.82892973022197,41.978434797566585],[-87.82887131973474,41.97843574836427],[-87.82874229529475,41.97843783141128],[-87.82873704464208,41.9784379161801],[-87.82863885614613,41.97843950155399],[-87.8286387734493,41.97845765988417],[-87.82863875321345,41.978462132304166],[-87.82863875315928,41.978462139164435],[-87.82863847326635,41.978523715748615],[-87.82863773185477,41.978686544686575],[-87.8286375366374,41.97872947914407],[-87.82863735488975,41.97876940353971],[-87.82863757525946,41.97877475077276],[-87.8286381323669,41.978788267344136],[-87.82864025339704,41.97883972670933],[-87.82864026203251,41.978839937227974],[-87.82868107423181,41.97883924014108],[-87.82869526461246,41.978838997912426],[-87.82869688905711,41.97890561326968],[-87.82869622930983,41.97911960362953],[-87.82869565319173,41.979285735381865],[-87.82869561009286,41.9792989265947],[-87.82869508475505,41.97946020955174],[-87.82869460708812,41.97961410311403],[-87.82869456007641,41.97962914061117],[-87.82869399082344,41.9798036696512],[-87.82869396343337,41.9798128681113],[-87.82869396334613,41.97981292573926],[-87.82869396333314,41.97981292738572],[-87.82869396332013,41.97981292903219],[-87.82869348859785,41.979969801708606],[-87.82869277462649,41.9801906523066],[-87.82869239724496,41.9802281071442],[-87.82869208113358,41.980259478894176],[-87.82869171126484,41.9802961684052],[-87.82869139119505,41.98032794820089],[-87.82875418221056,41.98032691164747],[-87.82880456215383,41.980326080117756],[-87.82883233909881,41.98032562151524],[-87.82883645478641,41.980325553708255],[-87.82883647280943,41.98032555351302],[-87.8288611882787,41.98032514511528],[-87.82885947488774,41.98059752640503],[-87.82885945687005,41.980600368225815],[-87.82885945676826,41.98060038112313],[-87.82919087725834,41.98059481213032],[-87.82929961389665,41.98059299104508],[-87.82941157865397,41.980591115970526],[-87.82946550633159,41.98059020889066],[-87.82946574579162,41.980590205002095],[-87.82967347481983,41.980586710728836],[-87.82976352396464,41.98058519606969],[-87.82977470566601,41.98058502558093],[-87.83007257902182,41.98058002010617],[-87.83008986743737,41.98057971197912],[-87.83030490452747,41.98057609876514],[-87.83030905297935,41.98057602885358],[-87.83030977430354,41.98057601692109],[-87.83041613841374,41.980574226368745],[-87.83051376132377,41.98057262300596],[-87.8305199404277,41.980572540301665],[-87.83074248142906,41.98056873987191],[-87.83075726891254,41.98056847530508],[-87.83079302218314,41.98056791832732],[-87.8309723791242,41.980564861435205],[-87.83106882549639,41.98056325300072],[-87.83107220945315,41.98056321264729],[-87.83118741576061,41.980561246840374],[-87.83135146987573,41.9805585066081],[-87.83139509523063,41.980557764327855],[-87.83140245200886,41.98055763184102],[-87.83140789376635,41.98055754037669],[-87.83161756179153,41.980554016760195],[-87.83163065707673,41.98055379956949],[-87.83172143920609,41.98055227532641],[-87.83173777096698,41.98055201738084],[-87.8318141330245,41.98055075908855],[-87.83190999092231,41.98054914737648],[-87.83202924393213,41.980547088631425],[-87.83204785595166,41.98054678598931],[-87.83224435359274,41.98054352725957],[-87.83236301734581,41.98054152075428],[-87.83236360578456,41.980541523322124],[-87.83252721928586,41.98053872432812],[-87.83266008126026,41.98053650475816],[-87.83268936044853,41.98053602872274],[-87.83281023125318,41.980533976495906],[-87.83302556230441,41.98053035946676],[-87.8331438468884,41.98052834446457],[-87.8331496201089,41.98049703654357],[-87.83314990787824,41.98042266980157],[-87.83315029314471,41.9803358447857],[-87.83315043687489,41.98029863397105],[-87.83314977840418,41.980241880910086],[-87.83314892426571,41.98022878732318],[-87.83314281199446,41.98021558850027],[-87.8331366937103,41.98020315830309],[-87.83318001235429,41.98007943238725],[-87.8363149835988,41.98003718913456],[-87.83658156681551,41.98003039794257],[-87.83658144799485,41.981136782214485],[-87.8365814330011,41.981274895582146],[-87.8365812990733,41.982514266501944],[-87.83658120694685,41.983365293612025],[-87.8365811144576,41.98421985430746],[-87.83658111073802,41.98425340686072],[-87.83658109917536,41.984360409393425],[-87.83658108342775,41.98450689113286],[-87.83658103335853,41.9849669011107],[-87.83658090671379,41.98613342033774],[-87.83658087873512,41.9863961127002],[-87.83539404150622,41.98622655906913],[-87.834855041409,41.986149552015824],[-87.83401212640494,41.98602911991326],[-87.83355924153291,41.98596441063543],[-87.833559219856,41.98596440752244],[-87.82679957419273,41.98499834774084],[-87.8237347301197,41.98456019267899],[-87.8235165749187,41.98453342854904],[-87.82349261437278,41.98453033342602],[-87.82332742073962,41.98450899507221],[-87.823338840429,41.98442166732651],[-87.82333897714462,41.98442062101998],[-87.82336367142064,41.98423161416349],[-87.82337695200344,41.98412996581357],[-87.82338190155251,41.98409208292937],[-87.82339632633273,41.98398167549186],[-87.82342097442678,41.98379301911248],[-87.82343070631856,41.983713763611],[-87.82343712570378,41.98366143297612],[-87.82344834640206,41.983569964415516],[-87.82346703813663,41.98343997213605],[-87.82348711031828,41.98330290593326],[-87.82350501968725,41.98318912814247],[-87.82352010647872,41.983093285734476],[-87.82352011080899,41.98309325007904],[-87.82352034439103,41.98309131014031],[-87.82352161242233,41.98308077061571],[-87.8235282613399,41.98302551429472],[-87.82353868663616,41.98292352913379],[-87.823567319048,41.982690783048504],[-87.82358389695676,41.98255833927515],[-87.82360146685198,41.98242131680392],[-87.82362004708061,41.982273955354366],[-87.82363707867577,41.98213887639665],[-87.82365261019308,41.982022261470384],[-87.82368059777669,41.981814924073326],[-87.82370122386067,41.981663617826015],[-87.82372065815558,41.98151872799586],[-87.82373925661547,41.9813658735079],[-87.82373929440999,41.981365561659494],[-87.82373929519805,41.9813655550769],[-87.82373932038128,41.98136534882442],[-87.82376233909218,41.981176161456744],[-87.82379284747114,41.9809431765914],[-87.82381013158191,41.980809637921936],[-87.8238390513729,41.9805867720986]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3563777.29348","perimeter":"0.0","tract_cent":"1146086.11285839","census_t_1":"17031640100","tract_numa":"14","tract_comm":"64","objectid":"442","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1863751.33851404","census_tra":"640100","tract_ce_3":"41.78211389","tract_crea":"","tract_ce_2":"-87.73995886","shape_len":"7997.4026156"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73806533859532,41.78578886658841],[-87.73774463981188,41.7857818530467],[-87.73766767103646,41.78578270264144],[-87.73762325642599,41.785783192719286],[-87.73761498364524,41.78573050739856],[-87.737609062603,41.78552842775881],[-87.73759251050038,41.7849894313895],[-87.73756262248136,41.78396016586079],[-87.73754236549405,41.78337586897967],[-87.7375066248784,41.782137320243436],[-87.73749968199729,41.78189715834169],[-87.73745747655676,41.780515529286404],[-87.73747309815238,41.78031321843034],[-87.73744910062376,41.78023213720798],[-87.7374202140862,41.779293094768136],[-87.73740218305345,41.778666615092426],[-87.73739696510809,41.778486994882314],[-87.7373969772088,41.778486994670665],[-87.73741994590043,41.77848666704071],[-87.73756872354708,41.77848454424856],[-87.73792227273083,41.77847969338177],[-87.73808551642053,41.77847745333998],[-87.73841023794854,41.77847370163221],[-87.73861530676135,41.778471014944266],[-87.73886813992812,41.77846770181786],[-87.73921533442899,41.77846409155974],[-87.73958680213967,41.77846022150121],[-87.73984664087261,41.778457970715166],[-87.74011266365588,41.77845566565138],[-87.74043599720586,41.77845132474754],[-87.74078998350076,41.7784467019476],[-87.74106930699438,41.778443656170644],[-87.74148202862867,41.77843915481674],[-87.74185397576495,41.77843495058068],[-87.74229269392967,41.77842912375372],[-87.74230099527145,41.77869192200113],[-87.74230913428464,41.77890903754772],[-87.74232561382567,41.779348649023525],[-87.74233624756499,41.77972384945215],[-87.74234199296954,41.77998058057025],[-87.7423504822928,41.78025700240165],[-87.74235074319445,41.7802654836216],[-87.74236102251099,41.780599407666436],[-87.74237375805797,41.780961363869814],[-87.74238916499968,41.78139177599675],[-87.74239794111875,41.78164989477618],[-87.7424069990404,41.7819412209776],[-87.74241108427287,41.78208334164813],[-87.74242050443968,41.78241105905538],[-87.74243423216284,41.78280877814329],[-87.74245045576649,41.78326213691198],[-87.74246410341283,41.78366062392918],[-87.74246866989807,41.783797911856944],[-87.74247246966871,41.78391216132093],[-87.7424731296761,41.783932007617054],[-87.74248858504548,41.78439668749887],[-87.74250083772104,41.784747471414434],[-87.74251164969647,41.78507546997745],[-87.74252488712725,41.78555381372525],[-87.74253048091795,41.785734390450166],[-87.74182974244474,41.78573951093922],[-87.74144515989882,41.78574150938733],[-87.74135765817917,41.785742484468386],[-87.74130224856162,41.78574310208207],[-87.74127056680324,41.78574345501125],[-87.74106121635701,41.785745787606544],[-87.74068059289661,41.7857518654614],[-87.74033225711865,41.78576365219744],[-87.74008756256303,41.78576931326923],[-87.73971934614902,41.78577783076176],[-87.73937955272234,41.785781715936956],[-87.73928926919535,41.785782748058246],[-87.73883867332631,41.7857878981313],[-87.7388134954094,41.78578818606755],[-87.73845196123465,41.785792268836815],[-87.73826594917988,41.785790632303986],[-87.73806533859532,41.78578886658841]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13012577.5293","perimeter":"0.0","tract_cent":"1133831.01461","census_t_1":"17031110300","tract_numa":"64","tract_comm":"11","objectid":"423","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1934062.52598215","census_tra":"110300","tract_ce_3":"41.97528093","tract_crea":"","tract_ce_2":"-87.78323803","shape_len":"15049.9505509"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78360919664773,41.98291378432557],[-87.77810941378728,41.97981486560723],[-87.77810347193024,41.97981151720584],[-87.77811405769626,41.97929383062644],[-87.77811706426274,41.97914645641487],[-87.77812039426072,41.97897835898179],[-87.77812487666273,41.97877636960324],[-87.77812895069472,41.978572910367284],[-87.77812270983623,41.97853676260787],[-87.77812248414244,41.978520406055715],[-87.7781235143764,41.978469588365],[-87.7781255746883,41.978367843213256],[-87.77812611445589,41.978340760521505],[-87.77812785580966,41.97825342090078],[-87.77812884841255,41.97820265790977],[-87.77813090883217,41.97810094019577],[-87.77813322694328,41.97798649061473],[-87.77813641843294,41.97782898867675],[-87.77813786742435,41.97775709750931],[-87.77814071209616,41.97761589474122],[-87.77814318845964,41.977480510647865],[-87.7781454045974,41.9773593339649],[-87.77815083403308,41.97707720102005],[-87.7781550075607,41.97685916663067],[-87.77815722322941,41.97674383838319],[-87.77815944042683,41.97662829060431],[-87.77816165642233,41.976512880027535],[-87.77816387240757,41.97639746944835],[-87.7781664588157,41.976243641775795],[-87.77817005439206,41.97611822151091],[-87.77817519820849,41.97594876422354],[-87.77817822971998,41.97575638259526],[-87.7781800303596,41.975669098105314],[-87.77818299298308,41.975525508121436],[-87.7781885756572,41.975344252851016],[-87.77819024571389,41.97523240707622],[-87.77819086536071,41.975190698135606],[-87.77819425462667,41.97499949794589],[-87.77819901714962,41.97475594547738],[-87.77820126974606,41.974640535039256],[-87.77820337427374,41.97453793932809],[-87.77820584868334,41.97442239274773],[-87.7782097233789,41.97424299524316],[-87.77821275175968,41.97410176555882],[-87.77821421973432,41.97400471005788],[-87.77821578463173,41.97392859332336],[-87.77821829460501,41.9738064882476],[-87.77822016340625,41.973714895651874],[-87.7782216875798,41.97364020570421],[-87.77822379488386,41.97353728068338],[-87.77822612115321,41.97342184313447],[-87.77822944639796,41.9733014708404],[-87.77823189373616,41.973172172331864],[-87.77823542564582,41.97298555915745],[-87.77823820052235,41.97279303897722],[-87.778239563552,41.97270128310897],[-87.77824060046737,41.972631499356055],[-87.77824191677068,41.972547368589076],[-87.77824326513314,41.97245958735637],[-87.77824603864876,41.97227996492836],[-87.77825024319166,41.97209642519657],[-87.77825308255179,41.97197270259109],[-87.77825684932631,41.9717930300659],[-87.77826382679503,41.97145947786654],[-87.77826818550588,41.971253930303035],[-87.77827165859621,41.97108685225128],[-87.77827412723313,41.970969137647565],[-87.77827723274292,41.97082173378496],[-87.77828384139507,41.97050530388112],[-87.77828844070437,41.970305020289445],[-87.77829270986471,41.9701191265487],[-87.77829992413471,41.969745619712214],[-87.77830735673523,41.969359572870644],[-87.77831396650326,41.969017511700486],[-87.77831306168007,41.96895992722798],[-87.77823441653935,41.96853291984186],[-87.77855497903133,41.968529137089995],[-87.77899761393097,41.968523335661736],[-87.77912735931356,41.96852163826816],[-87.77932506678218,41.968519025033764],[-87.77953229160968,41.96851716263143],[-87.7796389747022,41.96851620328999],[-87.77983664632016,41.968513479507614],[-87.78009985285661,41.968509863483426],[-87.78028145326175,41.968507363076945],[-87.78056197994218,41.96850366477596],[-87.78074302458329,41.968501687577174],[-87.7808915959877,41.96850006480782],[-87.7810728250903,41.96849797299413],[-87.78140236921115,41.96849417911867],[-87.78173183976025,41.96849038421807],[-87.78195229737554,41.96848661397617],[-87.78207761840622,41.96848447076254],[-87.7822763128128,41.96848251579439],[-87.78240811396121,41.968481199968075],[-87.78277080042123,41.968476106771455],[-87.7829994339939,41.96847333365171],[-87.78316981349847,41.96847145188277],[-87.78336332459307,41.968469314597016],[-87.7836279639282,41.96846580711524],[-87.78380956389394,41.9684633285672],[-87.783974247912,41.968460960882396],[-87.78418777191834,41.96845775662031],[-87.78437793770979,41.96845550365424],[-87.78451783146943,41.96845384622352],[-87.78478169523571,41.96845071656375],[-87.78491349888665,41.96844909600965],[-87.78509509642383,41.96844688983728],[-87.78542459963299,41.96844352329289],[-87.78559023376921,41.96844183729055],[-87.78575498530196,41.96844016001172],[-87.78587075970164,41.968438160040485],[-87.78613311931498,41.968434608470005],[-87.7863153814699,41.96843207422975],[-87.7866272339458,41.968428730173216],[-87.78677237466322,41.96842701594778],[-87.78677238900595,41.96842701574165],[-87.78692533565683,41.96842520978144],[-87.78695752589418,41.96842457128005],[-87.78713850006244,41.96842098241256],[-87.787320180162,41.96841770259657],[-87.78744548418975,41.968415448064036],[-87.78754937645009,41.96841357897666],[-87.78776385340444,41.96841070189811],[-87.7880134969285,41.96841062727808],[-87.78801351163656,41.96841062734795],[-87.78801351162018,41.96841062926882],[-87.78801351616764,41.968411260184325],[-87.78801462634279,41.968571385723976],[-87.7880144936474,41.96857875247433],[-87.78801218273362,41.96870691064837],[-87.78801039959399,41.968829925384036],[-87.78800992879185,41.96885473053075],[-87.78800941001431,41.96888809244472],[-87.78800940864699,41.968888166531876],[-87.78800940765207,41.96888824007198],[-87.78800745560187,41.96898962468845],[-87.78800438805821,41.96910293088897],[-87.78800345575426,41.96913735119982],[-87.78799945680721,41.96928505575785],[-87.78799697510925,41.96943301340027],[-87.78799470238525,41.96956849712931],[-87.78799284400229,41.969679285761146],[-87.7879907783196,41.96980243524639],[-87.78798635267728,41.969999637533896],[-87.7879836008171,41.97012226619477],[-87.78798238296552,41.97022451925143],[-87.78798139811501,41.97030721543418],[-87.7879783620748,41.97043030623535],[-87.787974743074,41.97063906847137],[-87.78797287362326,41.97073752181029],[-87.78796974253365,41.970897658970976],[-87.78796714132044,41.97101559271215],[-87.78796427018645,41.97114688946545],[-87.78796093639193,41.971343715722035],[-87.78795748206552,41.97151587096375],[-87.78795439215905,41.97168841212059],[-87.78795115297581,41.97184827431994],[-87.78794766723608,41.97200341256082],[-87.78794716737247,41.97202566846037],[-87.7879436833909,41.97218072712265],[-87.78793777597872,41.97246368181189],[-87.78793348689355,41.972673318935996],[-87.78792899199124,41.97290707666253],[-87.787925671907,41.97314105949734],[-87.78792195781925,41.973313460428784],[-87.78791719475925,41.97352260131214],[-87.78791486169831,41.97365812664299],[-87.78790633410637,41.97384168843305],[-87.78790526650704,41.97386466500108],[-87.78790657223209,41.97403920279907],[-87.78790419125009,41.974150167233965],[-87.78789936347818,41.97438411541233],[-87.78789563036038,41.974593206265006],[-87.78789235215919,41.974753287733094],[-87.78788824019955,41.97495074133458],[-87.78788294834109,41.97520889117928],[-87.78787947600776,41.97533137607441],[-87.7878754806216,41.9755367060827],[-87.78787377873171,41.97565280153916],[-87.78787090436312,41.97584889272791],[-87.78786857270607,41.9759842259152],[-87.78786507525405,41.97611826378309],[-87.7878603323745,41.976286109017664],[-87.78785648712152,41.976422198715255],[-87.78785541902027,41.97662493559689],[-87.78785405852074,41.97673027783496],[-87.78785368411474,41.97675928368687],[-87.78785300116755,41.97679621745615],[-87.78784941213443,41.97696872891248],[-87.78784402240865,41.97722778351328],[-87.78784139875268,41.97736284085952],[-87.78783999020821,41.97746928191004],[-87.7878382920394,41.97759759290204],[-87.7878346729651,41.977806190220775],[-87.7878330320586,41.97787547361531],[-87.78783175082444,41.97793743168919],[-87.78782934914263,41.978063708615664],[-87.78782647409126,41.97821528458966],[-87.78782414827423,41.97834128772429],[-87.78782131511478,41.97849226071359],[-87.78781217580945,41.978933951720386],[-87.78780890573258,41.979097326149855],[-87.78780545719744,41.97927225612236],[-87.78780118779547,41.97948880518991],[-87.78779970113733,41.97958972997781],[-87.78779810414281,41.979690654239604],[-87.78779650642744,41.979778735618254],[-87.78779326763409,41.979942741339],[-87.78779112153806,41.980043361122625],[-87.78778893701708,41.98014417281615],[-87.78778478368494,41.980333448303],[-87.78778158581858,41.98050988544774],[-87.78777750528685,41.98071216879635],[-87.78777397402264,41.98086302836208],[-87.78777160507741,41.98096389404855],[-87.78777035136387,41.98107607911209],[-87.78776833663939,41.981256300899624],[-87.7877658774766,41.98135480613496],[-87.78776351270866,41.981455177875795],[-87.78776004881652,41.98158951763477],[-87.78775417466248,41.98179508546501],[-87.78775172869602,41.98206114002757],[-87.78775160039652,41.98207509177217],[-87.78775003658825,41.98215254799307],[-87.7877457973317,41.98236249344215],[-87.78774317898237,41.98249217068002],[-87.78774065961187,41.98261697330808],[-87.78773700869523,41.982797759985864],[-87.7877349708332,41.98289868538826],[-87.78755097103536,41.982897316799324],[-87.78744634249207,41.98289607838723],[-87.78722680404998,41.982895912383036],[-87.78711870734561,41.982895943382005],[-87.78705816730638,41.98289596074582],[-87.78690637441865,41.98289617136256],[-87.78680515409188,41.98289637584869],[-87.78651503191979,41.982896548876795],[-87.78624701464848,41.98289670824178],[-87.7859773108218,41.98289624588462],[-87.78565674257277,41.98289551280184],[-87.78542002696717,41.98289545348725],[-87.78506575326483,41.9828964239376],[-87.78467819128313,41.98289775560431],[-87.78449222294567,41.98289876016099],[-87.78435760068857,41.98289962550518],[-87.7840499502606,41.98290638841946],[-87.78377763482564,41.98291463331718],[-87.78360919664773,41.98291378432557]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2174040.39758","perimeter":"0.0","tract_cent":"1178244.28632069","census_t_1":"17031081300","tract_numa":"20","tract_comm":"8","objectid":"424","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906347.64190648","census_tra":"081300","tract_ce_3":"41.89833179","tract_crea":"","tract_ce_2":"-87.62076287","shape_len":"6225.13131963"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61928050223334,41.9001262383871],[-87.61905496673668,41.90009054735385],[-87.61891448980803,41.90011391684059],[-87.61854030867383,41.90009691403346],[-87.61854029024462,41.90009688675084],[-87.6185325846016,41.90008555120678],[-87.61848679424799,41.900018188605486],[-87.61826487468814,41.89968415099014],[-87.61819041967753,41.89957210653877],[-87.61799875503394,41.899284648614376],[-87.61799663293051,41.8992814655312],[-87.61797376577319,41.89924718262369],[-87.61795057097278,41.89921240782468],[-87.61773026075181,41.898876156335284],[-87.61773015239976,41.89887599128048],[-87.61765650465821,41.89876356181976],[-87.61765646998055,41.8987635094632],[-87.61764842191101,41.8987512230421],[-87.61749483465836,41.89851884450984],[-87.6174865993487,41.89850609505525],[-87.6174784423862,41.898493467658],[-87.61721392110206,41.89808413528314],[-87.61720092230361,41.89806404875561],[-87.61710817628435,41.897928802268325],[-87.6169399402771,41.8976834696501],[-87.61689546081583,41.897618612096885],[-87.61684857368186,41.89755024334949],[-87.61664215747734,41.89726347259496],[-87.61659573968369,41.89719900101265],[-87.61653849700885,41.89711949424026],[-87.61647466779202,41.897033761366366],[-87.6163615794072,41.89688186395638],[-87.61634662211705,41.89685732602749],[-87.61645190694736,41.89683194770674],[-87.61666732297364,41.89682425692479],[-87.61687083432795,41.89682861905763],[-87.6168784643533,41.89682878246936],[-87.61690972555057,41.89683023601391],[-87.61704809804702,41.896836670288124],[-87.61737016044675,41.896832470197744],[-87.6175081232061,41.8968306708557],[-87.6178225272554,41.89682656912195],[-87.61860445697513,41.89681557692541],[-87.61952359518088,41.89680277048006],[-87.62025032772324,41.89678768218575],[-87.62025401631122,41.89678760547529],[-87.62036950838015,41.896785207338084],[-87.62088987858097,41.89677440024031],[-87.62115496834447,41.89677429241121],[-87.62143091971805,41.896774179408084],[-87.62169133748014,41.896770555100964],[-87.62183104960923,41.89676861074695],[-87.62200825972877,41.89676614411886],[-87.62235137955227,41.896761367299035],[-87.62269201416304,41.89675632407427],[-87.62294871406013,41.896752522974076],[-87.62313136216882,41.89675007727627],[-87.6235142992786,41.896744948830005],[-87.62366227128452,41.896742966861034],[-87.6242425546119,41.89673394401541],[-87.62420137482503,41.89696438161361],[-87.62416977909045,41.89724393376223],[-87.62412869417773,41.89757901037742],[-87.6240954095294,41.89785047164678],[-87.62409248524379,41.898091946187805],[-87.62410269890105,41.89838557809243],[-87.62412051601287,41.8988977440498],[-87.62412483659871,41.89905172224169],[-87.62412741810589,41.899210134523784],[-87.62412936493541,41.89932960385532],[-87.6241418703057,41.899726469793634],[-87.62416145094392,41.900005672928444],[-87.62385669508703,41.90001071219716],[-87.62347805989336,41.90001724650001],[-87.6230511488215,41.90002461267779],[-87.62234038980169,41.90003689904782],[-87.6218886058442,41.90004477045141],[-87.62167107186522,41.90004855970052],[-87.62080093538302,41.90006374550239],[-87.62023387066662,41.9000729128477],[-87.61980376778989,41.90007986430831],[-87.61925546933986,41.90008800978552],[-87.61928050223334,41.9001262383871]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3674641.11506","perimeter":"0.0","tract_cent":"1171203.89935546","census_t_1":"17031070200","tract_numa":"12","tract_comm":"7","objectid":"425","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917494.77434192","census_tra":"070200","tract_ce_3":"41.92907766","tract_crea":"","tract_ce_2":"-87.64629348","shape_len":"8322.41821552"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64684566828956,41.92548510994833],[-87.64718252906925,41.92547605080593],[-87.64729189901132,41.92547675784376],[-87.64753992049877,41.92547211492098],[-87.6479013979569,41.925465346951725],[-87.64876128768812,41.92545384253287],[-87.64877054132143,41.925664136992054],[-87.64879271416794,41.926351171114646],[-87.64879560567427,41.92644076415874],[-87.64881511736459,41.9269908774781],[-87.64882520796351,41.92725573611461],[-87.64882562949093,41.92726680223242],[-87.64884104273244,41.92767136578679],[-87.64884791691868,41.92785179817492],[-87.64885300027149,41.9280126815731],[-87.64885832356174,41.92818116679263],[-87.6488651079967,41.92839561325239],[-87.64887348493154,41.92865872369029],[-87.64887660761696,41.9287568213188],[-87.6488886556477,41.92908354792665],[-87.64888953918613,41.92910750008912],[-87.64890099506823,41.92941815930079],[-87.64892224933746,41.93006323274121],[-87.64895377733944,41.93100548406114],[-87.64896520200507,41.93136518136666],[-87.64897103020908,41.93154866775312],[-87.64897835941642,41.931779418269535],[-87.64898939518272,41.932093176892465],[-87.64899169045587,41.93215844701644],[-87.64901192377404,41.932719973981456],[-87.64864612894111,41.93272833707669],[-87.64836209292437,41.93273396095639],[-87.64807416152989,41.93273966132325],[-87.64766681051992,41.932746758460986],[-87.64713918672436,41.93275594879398],[-87.64666885134581,41.932765768020005],[-87.64658118037897,41.932767597938025],[-87.64604375872122,41.932778814904005],[-87.64538762794223,41.932790335435435],[-87.64488647205489,41.93280061416671],[-87.64488630958121,41.93280061730884],[-87.64487090211578,41.93258240973],[-87.64480433901875,41.93231653455438],[-87.64468572683961,41.93204140155787],[-87.64457143297135,41.93184461023824],[-87.64437693628983,41.93150972265111],[-87.64427439189697,41.9313376171718],[-87.64411145224531,41.931064143678626],[-87.64410511743115,41.93105351131754],[-87.64409377306768,41.93103432424024],[-87.64389766306343,41.93070262258446],[-87.64389760820596,41.93070252950045],[-87.64380330268737,41.93054301935017],[-87.6436961892513,41.93036184505832],[-87.64357806898394,41.930164621927936],[-87.64346182161354,41.93003184448874],[-87.64344587455822,41.930013629683764],[-87.64322715422684,41.929867345002094],[-87.6430915275945,41.92978069054243],[-87.64292449971175,41.92966207480092],[-87.6429244555853,41.92966204325146],[-87.64286603320821,41.9296205541574],[-87.64271723849295,41.92936815147811],[-87.64260053625433,41.92916596880528],[-87.64254485712252,41.92906950378831],[-87.642342567503,41.92871902960612],[-87.64232046318475,41.9286817727601],[-87.6422320602252,41.92853277066443],[-87.64274881358013,41.92837940657392],[-87.64302913295803,41.92830085119792],[-87.64306379834429,41.92829217985346],[-87.64333563299124,41.92822418132794],[-87.64353766658253,41.928177343941684],[-87.64373707904784,41.9281349360951],[-87.64421737000556,41.92805035201613],[-87.64413359760327,41.927724997623415],[-87.6441117619823,41.92764031681956],[-87.64408055790565,41.927517874719236],[-87.64405756800457,41.92742778113134],[-87.64404119826345,41.92737131655149],[-87.64402619714829,41.927326277793256],[-87.64400323330075,41.927040574585085],[-87.64399900059426,41.92690127992283],[-87.64399223867287,41.926726850619715],[-87.64398519554514,41.92654516170468],[-87.64398023596692,41.926398261171194],[-87.64397746144382,41.92631457318543],[-87.64397297360931,41.92618877854577],[-87.64397132478744,41.92612900744804],[-87.64396834793895,41.92602110624602],[-87.64396514273626,41.92589553883824],[-87.64396150197908,41.92574905783902],[-87.64392739069804,41.92553219174168],[-87.64473131680822,41.925520034060284],[-87.64571631557018,41.92550316001704],[-87.64633630189914,41.92549325244887],[-87.64684566828956,41.92548510994833]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"25326918.2201","perimeter":"0.0","tract_cent":"1158315.81076917","census_t_1":"17031700100","tract_numa":"61","tract_comm":"70","objectid":"427","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1853461.43755259","census_tra":"700100","tract_ce_3":"41.75363653","tract_crea":"","tract_ce_2":"-87.69540088","shape_len":"24182.364842"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67858798381371,41.757653435211104],[-87.67853456428372,41.757455197851456],[-87.67853355258794,41.75741951613318],[-87.67853174708112,41.75737182356032],[-87.6785126060978,41.75682113844145],[-87.67848611672038,41.75636234558796],[-87.67845241353932,41.75589219131808],[-87.67841241002152,41.75532080484095],[-87.67838988335674,41.75483287619342],[-87.67838801486623,41.75479135792512],[-87.67836843433518,41.75410379751998],[-87.67836675070241,41.75404409927521],[-87.67834674258894,41.75330851126108],[-87.67834476095672,41.75323303182394],[-87.6783286098353,41.75261375567288],[-87.67832295022549,41.75240447004872],[-87.67832092715624,41.75233310654848],[-87.67830629528119,41.75178965043281],[-87.67829252539316,41.75125168779297],[-87.67828325673052,41.750901735530135],[-87.67826630894936,41.75027079154925],[-87.6782637104385,41.75016624853396],[-87.6783268005573,41.75016547619016],[-87.67838392347117,41.75016477709927],[-87.67845287430022,41.75016398869652],[-87.67861051472565,41.75016218614838],[-87.67877544209728,41.75016030030574],[-87.67897979532312,41.75015796339477],[-87.6793636096484,41.75015312320298],[-87.67974572836813,41.750141987619095],[-87.68010190388264,41.75013053806285],[-87.68034276233038,41.750125409483374],[-87.68047102319801,41.750121988686196],[-87.68067930635465,41.750116420998836],[-87.68096192153722,41.75010965586516],[-87.68131044221693,41.75010139792985],[-87.68152234798826,41.75009631552948],[-87.68284715737305,41.75010282269686],[-87.68345681916138,41.75009444414999],[-87.68394338423985,41.7500865610217],[-87.68407029738982,41.750084190910144],[-87.68453211994847,41.75007685154672],[-87.68486565860405,41.75007153068381],[-87.68518132605867,41.750066794116556],[-87.68528945150243,41.75006500274908],[-87.6854296451746,41.75006304907848],[-87.68651225303074,41.750047537375295],[-87.68651236775322,41.75004753555125],[-87.68678576865831,41.75004358793572],[-87.68707531664916,41.75003972829725],[-87.68737357729479,41.750034888071426],[-87.68764663821861,41.75003059126168],[-87.6878596797931,41.75002732879317],[-87.68895924518345,41.750010860177255],[-87.68895937016633,41.750010858408324],[-87.68915579277973,41.75000784583965],[-87.68926208656282,41.75000604046364],[-87.68934913811844,41.75000447017901],[-87.68957042766132,41.75000090772791],[-87.69018203422175,41.749989240305744],[-87.69018208627081,41.74998923922494],[-87.69040476017707,41.749984653800155],[-87.69061782547287,41.749978985353934],[-87.69077911274658,41.749974741877345],[-87.69103616899146,41.749967603196026],[-87.69140138794334,41.74995489387779],[-87.69154756641986,41.74994987855656],[-87.69171803558888,41.74994362681765],[-87.69206032411498,41.74993353111205],[-87.69242689641302,41.74992288431783],[-87.69262666065471,41.749918852868575],[-87.69271692185534,41.74991695489129],[-87.69297258271591,41.74991186232787],[-87.69336111768685,41.74990373595119],[-87.69369283606272,41.74989700716531],[-87.69384632312446,41.74989408783729],[-87.69401676473458,41.74989057711651],[-87.69436772857844,41.749883267389585],[-87.69466554070047,41.74987737634625],[-87.69506735898479,41.74986931803445],[-87.69628513276052,41.74984999672732],[-87.69628520020014,41.74984999572909],[-87.69658522537851,41.74984515124896],[-87.6968665335767,41.74984053518976],[-87.69712263806389,41.749836808001895],[-87.69750840358004,41.749830710494436],[-87.6977613057242,41.74982662112277],[-87.69804307522963,41.749821661970074],[-87.6983252993851,41.7498170468543],[-87.69842563420812,41.74981554337839],[-87.698585529996,41.74981299617043],[-87.69872801621398,41.74981069617144],[-87.69890715376307,41.749807912026895],[-87.69914539455867,41.749804081690506],[-87.69943357296415,41.74979949726578],[-87.69969792260756,41.74979580982566],[-87.69995356239677,41.749792759841085],[-87.70021057597411,41.7497897168577],[-87.70063619612857,41.74978348513933],[-87.70108563745782,41.749777040437976],[-87.70117268179595,41.749776147231024],[-87.70147276312198,41.749772309256905],[-87.70162274358765,41.749799890693154],[-87.70166973446871,41.74977270595064],[-87.70177051042687,41.74977291717169],[-87.70191938613215,41.749773049331665],[-87.70200275555344,41.74977316441627],[-87.70205772578967,41.749773123411444],[-87.70239430139927,41.749773602192555],[-87.70254603505026,41.749773747038944],[-87.70272423279037,41.749773353053115],[-87.7029271656298,41.749773094507404],[-87.70355553506535,41.7497690745643],[-87.70361906621059,41.7497686678155],[-87.70482511494973,41.74976119477771],[-87.70506104130502,41.74975974078344],[-87.70522185365074,41.74975718962489],[-87.70543397735105,41.74975388954658],[-87.70574872631803,41.74974909144301],[-87.70605247518587,41.74974491904891],[-87.7061963319421,41.749742959484635],[-87.70727836924222,41.74972695614779],[-87.70751033745616,41.749719593677746],[-87.70758686302338,41.749716923123295],[-87.7077449327918,41.74971366714448],[-87.70812926291674,41.74971370112717],[-87.70849074637151,41.749707777648034],[-87.70875967964048,41.74970375124397],[-87.70906709598458,41.7496992472274],[-87.70933602883194,41.749695219471775],[-87.70970942197648,41.74968935683762],[-87.70993345850144,41.749685770070286],[-87.71027478091436,41.74968041739067],[-87.71051439465323,41.749676571196126],[-87.71189114224137,41.74965553987617],[-87.71207393310584,41.749652768680804],[-87.71212203904595,41.749651999666895],[-87.71224115709573,41.74965024236423],[-87.71233891031376,41.75148499878278],[-87.71240111867402,41.752255113319336],[-87.7124261878027,41.754217086051824],[-87.71246272068129,41.75512549637306],[-87.71247866468755,41.75552194472809],[-87.71252344046147,41.75662779926029],[-87.71253416729444,41.75689336914258],[-87.71254680202152,41.757306179702326],[-87.71254680479782,41.75730627192602],[-87.71254775561138,41.75733733382749],[-87.71251712491957,41.75733065059528],[-87.71234156156561,41.75730261552454],[-87.71234147117501,41.75730260131446],[-87.7122527529427,41.75728599896792],[-87.71205053265122,41.75725746286533],[-87.71184372077536,41.75722993013599],[-87.71172839923446,41.757216613860734],[-87.71150824318092,41.757195183295025],[-87.71134846810206,41.757183341231844],[-87.71118819926448,41.75717526969382],[-87.71100546942553,41.75716844842683],[-87.71082450577352,41.75716849720401],[-87.7104213054024,41.75717282964139],[-87.71003182507975,41.75717963636359],[-87.70964418009089,41.757186108415446],[-87.70954929840047,41.75719108220896],[-87.70949658245377,41.75719422609929],[-87.70944386280819,41.75719771353244],[-87.70939159868105,41.75720154617895],[-87.70933887274792,41.75720571933183],[-87.70928659863938,41.75721058099109],[-87.70923385238596,41.75721681221491],[-87.70918111646006,41.75722201435582],[-87.70912792906287,41.757226527943224],[-87.7090747516338,41.757230012170965],[-87.70902158084294,41.75723281088252],[-87.70891710125645,41.757235330458066],[-87.70880300871697,41.75723711160934],[-87.70851342640643,41.75724136881123],[-87.70813356514425,41.75724822140715],[-87.70790769016136,41.75724973638553],[-87.70763640851196,41.75725649226238],[-87.70743205101844,41.75725949563766],[-87.70744747265748,41.7571340276519],[-87.70695444911958,41.75714128895747],[-87.70690128833188,41.7571430573531],[-87.70684857897959,41.757145514262135],[-87.70679540484073,41.757148654688926],[-87.70674267546072,41.75715316966958],[-87.70669040084691,41.757158030144595],[-87.70663765513302,41.757164260179124],[-87.70658490867625,41.757170490185366],[-87.70653125303356,41.75717602885641],[-87.70647760405265,41.75718088201114],[-87.70642716851594,41.757185066323714],[-87.70637674001392,41.75718856485048],[-87.70632631077905,41.757192062802254],[-87.7062758852419,41.75719521798825],[-87.70611869955874,41.757199848620296],[-87.706001396925,41.757201952503294],[-87.70588363580812,41.757204053762685],[-87.7057663327955,41.75720615740359],[-87.70423176568045,41.75723412719382],[-87.70278114698819,41.757250873934645],[-87.70261828951496,41.75723956539813],[-87.70261651280885,41.75719886390431],[-87.70249850125872,41.757201640083345],[-87.7023422382925,41.75720558453779],[-87.70212920099782,41.75720612954345],[-87.70142609294764,41.757239655824755],[-87.70129721585998,41.757254040619976],[-87.70117854169933,41.75725578899516],[-87.6993377957022,41.75729813117737],[-87.6960524254265,41.75735267931118],[-87.69301092180457,41.75739271309766],[-87.69288309224449,41.75739371580172],[-87.69190575105492,41.75740747380614],[-87.69017507359901,41.75743724814847],[-87.69008109924367,41.7574428967412],[-87.6899756374771,41.75745191131377],[-87.68977385318799,41.75747239262737],[-87.68954416820294,41.75748825748289],[-87.68910800915006,41.75748958639883],[-87.68876905127513,41.75748322581909],[-87.68863449368502,41.757469778725344],[-87.68851820908176,41.75746157905086],[-87.68840191763822,41.75745406557091],[-87.68828515780783,41.75744757845784],[-87.68816884924193,41.757441779836284],[-87.68797913304692,41.75744654573634],[-87.68780782030899,41.757443525396695],[-87.68736294645927,41.75744582728908],[-87.6869597679016,41.75744767650999],[-87.68674584504208,41.75745146662614],[-87.68668185366558,41.75747756926368],[-87.68669743252612,41.75752988682241],[-87.68656227949118,41.75753201062323],[-87.68639996745469,41.75753474480916],[-87.68563426042205,41.75755067002524],[-87.68480712819076,41.757570016852654],[-87.68454143407494,41.75756748769969],[-87.68410303519568,41.75756363911979],[-87.68382751366794,41.75758163506579],[-87.6834802858042,41.75757761339661],[-87.68335235894918,41.75758821000966],[-87.6832487323544,41.75759688574895],[-87.68305308076937,41.75759955197561],[-87.68305285203314,41.75759955534632],[-87.68281939901134,41.757602688629014],[-87.68273279939797,41.75760391346968],[-87.68266544591825,41.757604561165756],[-87.68199602753121,41.757612431442844],[-87.68175195843779,41.75762132743268],[-87.68171096090212,41.75762282163737],[-87.6815995423224,41.75763179445943],[-87.68153947804092,41.75763659929925],[-87.68145613264853,41.757633039106445],[-87.6813146286968,41.757627090591086],[-87.68120060450157,41.757621983955154],[-87.68023105657704,41.7576346577499],[-87.67931603094489,41.75764694765998],[-87.67906082466727,41.757649268338206],[-87.67858798381371,41.757653435211104]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13858021.3947","perimeter":"0.0","tract_cent":"1156304.75587507","census_t_1":"17031661100","tract_numa":"53","tract_comm":"66","objectid":"428","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856063.80800542","census_tra":"661100","tract_ce_3":"41.76081853","tract_crea":"","tract_ce_2":"-87.70270084","shape_len":"15926.7357091"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69285122677218,41.75843294357552],[-87.69285085892298,41.75805525661208],[-87.69291767556028,41.75806248982852],[-87.69288309224449,41.75739371580172],[-87.69301092180457,41.75739271309766],[-87.6960524254265,41.75735267931118],[-87.6993377957022,41.75729813117737],[-87.70117854169933,41.75725578899516],[-87.70129721585998,41.757254040619976],[-87.70142609294764,41.757239655824755],[-87.70212920099782,41.75720612954345],[-87.7023422382925,41.75720558453779],[-87.70249850125872,41.757201640083345],[-87.70261651280885,41.75719886390431],[-87.70261828951496,41.75723956539813],[-87.70278114698819,41.757250873934645],[-87.70423176568045,41.75723412719382],[-87.7057663327955,41.75720615740359],[-87.70588363580812,41.757204053762685],[-87.706001396925,41.757201952503294],[-87.70611869955874,41.757199848620296],[-87.7062758852419,41.75719521798825],[-87.70632631077905,41.757192062802254],[-87.70637674001392,41.75718856485048],[-87.70642716851594,41.757185066323714],[-87.70647760405265,41.75718088201114],[-87.70653125303356,41.75717602885641],[-87.70658490867625,41.757170490185366],[-87.70663765513302,41.757164260179124],[-87.70669040084691,41.757158030144595],[-87.70674267546072,41.75715316966958],[-87.70679540484073,41.757148654688926],[-87.70684857897959,41.757145514262135],[-87.70690128833188,41.7571430573531],[-87.70695444911958,41.75714128895747],[-87.70744747265748,41.7571340276519],[-87.70743205101844,41.75725949563766],[-87.70763640851196,41.75725649226238],[-87.70790769016136,41.75724973638553],[-87.70813356514425,41.75724822140715],[-87.70851342640643,41.75724136881123],[-87.70880300871697,41.75723711160934],[-87.70891710125645,41.757235330458066],[-87.70902158084294,41.75723281088252],[-87.7090747516338,41.757230012170965],[-87.70912792906287,41.757226527943224],[-87.70918111646006,41.75722201435582],[-87.70923385238596,41.75721681221491],[-87.70928659863938,41.75721058099109],[-87.70933887274792,41.75720571933183],[-87.70939159868105,41.75720154617895],[-87.70944386280819,41.75719771353244],[-87.70949658245377,41.75719422609929],[-87.70954929840047,41.75719108220896],[-87.70964418009089,41.757186108415446],[-87.71003182507975,41.75717963636359],[-87.7104213054024,41.75717282964139],[-87.71082450577352,41.75716849720401],[-87.71100546942553,41.75716844842683],[-87.71118819926448,41.75717526969382],[-87.71134846810206,41.757183341231844],[-87.71150824318092,41.757195183295025],[-87.71172839923446,41.757216613860734],[-87.71184372077536,41.75722993013599],[-87.71205053265122,41.75725746286533],[-87.7122527529427,41.75728599896792],[-87.71234147117501,41.75730260131446],[-87.71234156156561,41.75730261552454],[-87.71251712491957,41.75733065059528],[-87.71254775561138,41.75733733382749],[-87.71253999807008,41.75842746743442],[-87.7125247372072,41.76058132147187],[-87.71243158698715,41.76059625482183],[-87.71243786955414,41.76089507493126],[-87.71243822887435,41.7609040353806],[-87.71244784155105,41.761143831408646],[-87.71246080855474,41.761557262311605],[-87.71246539066001,41.761715656473186],[-87.71247455456276,41.762032444232396],[-87.712475851279,41.762073061723605],[-87.71249531587871,41.7626829564186],[-87.71250332350161,41.76297811578209],[-87.71251221867153,41.763306004645656],[-87.71251362804409,41.7633499211145],[-87.71252052641425,41.763574225322444],[-87.71252548837025,41.76373555980477],[-87.71253670068883,41.764093408899484],[-87.71253978153501,41.76421664721806],[-87.71254042459778,41.76424237606256],[-87.71254040480257,41.76424237623004],[-87.71247111304133,41.76424343021346],[-87.7123488695652,41.76424488403984],[-87.71209999157955,41.76424784412551],[-87.71184263958088,41.76425150181352],[-87.71146313814306,41.76425677532929],[-87.7110700395929,41.764261892168335],[-87.71077521860295,41.764266305028436],[-87.71038079850798,41.76427157673157],[-87.71015240612535,41.76427497655508],[-87.70995649457151,41.764277892433505],[-87.70970684092616,41.76428147733404],[-87.7093811541762,41.764286157887284],[-87.70898830774676,41.764291625731104],[-87.7087532112391,41.76429462903247],[-87.7083739694482,41.764299537269174],[-87.70797350505713,41.76430438362574],[-87.70770141868147,41.76430786950574],[-87.70744920247213,41.76431109387971],[-87.70709961580984,41.76431584248879],[-87.70678324128899,41.76432029227815],[-87.70647926019639,41.764324279714835],[-87.70616116589031,41.764328451661406],[-87.70582788814052,41.76433343773575],[-87.7056523935649,41.764336293674894],[-87.70526133655916,41.76434242184696],[-87.7049564315697,41.76434719879518],[-87.70471690003988,41.76435014213613],[-87.70439260395301,41.764354981087195],[-87.70403508174321,41.76436153674232],[-87.70380598447339,41.76436573679105],[-87.70353912690972,41.764374236092735],[-87.70320607460394,41.764382399186744],[-87.70281277581367,41.76438866150643],[-87.70246263453954,41.764394236284126],[-87.70228333238144,41.76439659963706],[-87.70200970991591,41.76439970683912],[-87.70159198355837,41.7644004568548],[-87.7012635501384,41.76440103799707],[-87.7009059278156,41.76440653448995],[-87.70063225811461,41.764410708428834],[-87.70036430233282,41.76441538521556],[-87.70009322885542,41.76442011554542],[-87.69988000473771,41.764424071971796],[-87.69954818137214,41.76443020045227],[-87.69914522321719,41.76443502971815],[-87.6990102439803,41.7644366446639],[-87.69863445977563,41.7644438999355],[-87.69831062349527,41.76445034339453],[-87.69809280875879,41.764455204192785],[-87.69791955432234,41.76445753297458],[-87.69755904248493,41.76446237818935],[-87.69726414162567,41.764467277348075],[-87.69696000140549,41.76447248133304],[-87.69669846636141,41.764476450482775],[-87.6962724719053,41.76448291401545],[-87.69599611193215,41.76448848902856],[-87.69575252831821,41.764493367095774],[-87.69547453004114,41.764497842823374],[-87.69510861844962,41.764503732995806],[-87.69485346247923,41.76450752947917],[-87.69449601899242,41.76451336376923],[-87.69425145160655,41.76451758909557],[-87.69385554737156,41.76452442783844],[-87.69358029021508,41.764529646418346],[-87.6933029082438,41.764534742729744],[-87.69302892355975,41.764539713503616],[-87.69302529790177,41.76435635309241],[-87.69302030390381,41.76422822125685],[-87.69301666563838,41.76408262921884],[-87.69301529553852,41.764027804428814],[-87.69300866721062,41.76383179689118],[-87.69300322743187,41.76359367093496],[-87.69299906232972,41.76341167305141],[-87.69299368772312,41.76324072795874],[-87.6929853878848,41.76303216961587],[-87.69297869437149,41.762716140437355],[-87.69297551028284,41.76256580297394],[-87.69297256824407,41.762474620571815],[-87.6929662814712,41.762277462276224],[-87.69295946824163,41.76207058620765],[-87.69295410790592,41.7618945367502],[-87.69294734822346,41.76167122259129],[-87.69294160425393,41.761463721270346],[-87.69293635059753,41.76126220525549],[-87.69292865004498,41.76096764371483],[-87.69292643065842,41.76089174806526],[-87.69292093661288,41.76070387317103],[-87.69291766959314,41.76058272140794],[-87.6929130721945,41.76041109448505],[-87.69290816751611,41.76022975100936],[-87.69290310553366,41.76004214963857],[-87.69289664136002,41.75980020323024],[-87.69289206962067,41.75960385024843],[-87.69288616072845,41.759350298510604],[-87.69288922079976,41.75918294512888],[-87.69285122677218,41.75843294357552]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3429731.85835","perimeter":"0.0","tract_cent":"1167603.6078944","census_t_1":"17031671900","tract_numa":"19","tract_comm":"67","objectid":"429","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856348.36873132","census_tra":"671900","tract_ce_3":"41.76136464","tract_crea":"","tract_ce_2":"-87.66128166","shape_len":"7850.25767036"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66199390402048,41.75777469350044],[-87.6636082793726,41.757766311548835],[-87.66360906332635,41.75781280927533],[-87.66360907334621,41.75781339661456],[-87.6636099422171,41.75786417073399],[-87.66361075843305,41.757911866261516],[-87.663615521657,41.758190243444965],[-87.66362029541034,41.758429080489925],[-87.6636254012614,41.75868180563135],[-87.66362978553742,41.75890170469905],[-87.66363475176237,41.75915020278021],[-87.66363896935803,41.75935797104274],[-87.66364021998686,41.759453849979444],[-87.66364162043615,41.7595612295113],[-87.66365186899431,41.759745925889455],[-87.66365941903838,41.759950420391824],[-87.66366289600826,41.76022234608389],[-87.66366635566598,41.760360075035926],[-87.66366880659128,41.76045762207778],[-87.66367450762219,41.760677803181956],[-87.66368070760929,41.76091697775176],[-87.66368637461804,41.76113691165263],[-87.66368721775912,41.76127100257995],[-87.66369624014693,41.761478305344234],[-87.66370230835314,41.76171253937013],[-87.66370810737054,41.761937413751134],[-87.66371268863998,41.762113652014406],[-87.66371440638278,41.76218076018204],[-87.66371680723721,41.762274601820145],[-87.66372173121141,41.762467307874566],[-87.66372669528289,41.76265968484003],[-87.66373119565209,41.762833205751754],[-87.66373319981834,41.76308958175033],[-87.66373361831799,41.763143106280246],[-87.66373859341938,41.76319341085875],[-87.66374275094132,41.763357571417586],[-87.66374774512515,41.76355414758208],[-87.66375273411771,41.76375118996609],[-87.66375666204357,41.76390574439498],[-87.66375552456346,41.76399981264468],[-87.66375456509678,41.7640792268197],[-87.66375801716416,41.764219617879164],[-87.66376430998007,41.764379400247485],[-87.6637773422061,41.764543200847356],[-87.66379598336687,41.76490902747779],[-87.66356817801591,41.76491081583752],[-87.66317793530534,41.76491669983436],[-87.66260304369276,41.764925365350344],[-87.66245911262935,41.76492753438653],[-87.66219845111205,41.76493163097018],[-87.66206573846749,41.76493371657919],[-87.66162413903162,41.764938654430104],[-87.66156969913958,41.764939324628756],[-87.66139078534783,41.76494287206049],[-87.66122767244775,41.764946106042295],[-87.66077021267907,41.764953418244744],[-87.66057972169322,41.764956329118874],[-87.66042743257198,41.76495865605736],[-87.6601786662279,41.7649610265224],[-87.66002792481302,41.76496246269254],[-87.65920303776176,41.76497639653945],[-87.65896728480699,41.76498085038825],[-87.65896417074462,41.7648489764892],[-87.65895512987336,41.76451142948638],[-87.65895154634549,41.764377870839596],[-87.65894109762658,41.76407354572036],[-87.65893552493054,41.76383564040418],[-87.6589313851828,41.76363591368173],[-87.65892724057318,41.763436652905895],[-87.65892348068164,41.76325665964209],[-87.65892008484902,41.763163536036004],[-87.65891713033226,41.76308252396873],[-87.65891193037433,41.76288954170041],[-87.65890703238942,41.76270878266502],[-87.65890688117443,41.762703201517155],[-87.65890115333066,41.7624905943893],[-87.65889660190754,41.76232319278821],[-87.65889627450339,41.76225438741105],[-87.6588959612435,41.762188361543686],[-87.65888872245544,41.761962572883824],[-87.65888431166452,41.7617976024454],[-87.658878468855,41.76157666400903],[-87.6588746744895,41.761434980924484],[-87.65887167632705,41.761345686550136],[-87.65886796914697,41.761235266225185],[-87.6588634208909,41.76105353935389],[-87.65885937431618,41.76089110895669],[-87.6588539126957,41.760673507597474],[-87.65885002954732,41.760519309955036],[-87.65884927628485,41.76043576817686],[-87.65884857134391,41.76035755227244],[-87.6588414785473,41.76014581521971],[-87.65883672839215,41.759978863820045],[-87.65883507527754,41.75992077234414],[-87.65882964000537,41.75970833148725],[-87.65882543337693,41.759523781862754],[-87.65882079937747,41.75932050974241],[-87.65881414209677,41.759109269181664],[-87.65880709083416,41.758851620151454],[-87.65879950462445,41.75857505972642],[-87.65879078525172,41.75825971564238],[-87.65878262224078,41.7579525327953],[-87.65877900393271,41.75781636231079],[-87.66199390402048,41.75777469350044]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14283051.248","perimeter":"0.0","tract_cent":"1174629.82835646","census_t_1":"17031680200","tract_numa":"99","tract_comm":"68","objectid":"430","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1865816.00091255","census_tra":"680200","tract_ce_3":"41.78719137","tract_crea":"","tract_ce_2":"-87.63524838","shape_len":"16006.9667322"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63995345138723,41.7798258892987],[-87.64002033812845,41.77982450781457],[-87.64002528697354,41.78001521924649],[-87.64002850616559,41.78013845733296],[-87.64003104196519,41.78023660874942],[-87.6400351451378,41.78039344200955],[-87.64003820291423,41.78051124541822],[-87.64004011979029,41.78058513328978],[-87.640027716982,41.78074511534619],[-87.6400165301692,41.7808894150779],[-87.64001913817997,41.78098770385783],[-87.64002182004074,41.78108591075303],[-87.64002459947956,41.78118966142741],[-87.64002589932608,41.78123818859899],[-87.64002802139863,41.78131685276494],[-87.64003118916945,41.78143465681891],[-87.64003291835299,41.78149877387317],[-87.64003550677755,41.78166910178631],[-87.64003750945633,41.78180092047735],[-87.64003976682358,41.78188411353048],[-87.64004211816014,41.78197216426827],[-87.6400457468093,41.78210498235566],[-87.64004835340788,41.78220340859491],[-87.64005129643616,41.78231141415966],[-87.64005302919865,41.78237520191083],[-87.64005407122849,41.78241461592562],[-87.6400554092408,41.78246399404684],[-87.64005971331187,41.78257380231106],[-87.64006377901772,41.782677522849106],[-87.64006512825725,41.782746248002944],[-87.64006745074265,41.782864211583544],[-87.64006930482958,41.78295758350136],[-87.64007036311978,41.78301135079297],[-87.64007210068436,41.78309964479536],[-87.64007476207627,41.78323720463987],[-87.64007642669783,41.783320970395664],[-87.64008057045213,41.78346636287441],[-87.64008409004182,41.78358984694105],[-87.64008571023716,41.78366749293318],[-87.64008906235316,41.78382939877632],[-87.64009272985511,41.784006344947315],[-87.64009607881138,41.78416858035089],[-87.64009716319637,41.78422108514125],[-87.64009842146096,41.784281274989205],[-87.64010148861924,41.784428826465046],[-87.64011361678291,41.7846679057937],[-87.64011918145597,41.784777595109496],[-87.64012081204282,41.78485087745478],[-87.6401237054142,41.78498155021812],[-87.64012588391918,41.78508123619676],[-87.6401304051814,41.785284423151936],[-87.64013589348355,41.78553399440711],[-87.64014021340081,41.78572864566942],[-87.64014377629411,41.785891458066395],[-87.6401529473503,41.78630633997986],[-87.64015877437507,41.78656872905814],[-87.64016398987081,41.78680619630241],[-87.64017068902166,41.7871068020797],[-87.64019554304168,41.787944447613924],[-87.64019977795732,41.78808716950896],[-87.6402250293753,41.78893818773348],[-87.64027873334679,41.790745707384595],[-87.64027890838902,41.79075192534571],[-87.6403028621395,41.79160311838106],[-87.64030311589767,41.79161213982923],[-87.64031648951624,41.79208735810736],[-87.64031651759561,41.79208835994085],[-87.64034244948945,41.79300613529278],[-87.64037129302253,41.794031484518925],[-87.64031938661738,41.79403241949711],[-87.64032044918473,41.79438759775332],[-87.64015747426136,41.79439064417126],[-87.6400834202199,41.79439202855981],[-87.63998598899042,41.7943938497544],[-87.63993453746481,41.7943948114533],[-87.63990484850305,41.79439536634213],[-87.63980622042226,41.79439720952352],[-87.6394402973681,41.79440404798992],[-87.63893991661543,41.79441353837101],[-87.63859087750708,41.794419935289625],[-87.63809010000878,41.79442878865796],[-87.63785817248757,41.79443370019966],[-87.6375932649115,41.79443930974114],[-87.63663890025911,41.79445416276806],[-87.63599166317626,41.794465631066146],[-87.63545749911522,41.79447604857857],[-87.63541047461715,41.79447696571451],[-87.6354043138894,41.794477086081685],[-87.63536213441537,41.794477908591894],[-87.63513647528052,41.79448230853144],[-87.63421212419902,41.794498933327915],[-87.63402814164652,41.79450224139267],[-87.63381153039694,41.79450472094164],[-87.63363126306555,41.794506948340654],[-87.63356572229745,41.79450771324457],[-87.63319450482338,41.79450989712252],[-87.63299844017199,41.79451455912322],[-87.63268375199958,41.79452204131526],[-87.63234348311302,41.79452774907071],[-87.63214028391592,41.794531156939044],[-87.63204089698131,41.79453162683211],[-87.63178163541761,41.794532852586755],[-87.63166309774779,41.79453341293991],[-87.63156778711343,41.794533863138774],[-87.63139707535497,41.79453466952887],[-87.63116501553476,41.794535765364714],[-87.63096658157069,41.79454093906132],[-87.63087850044653,41.79454323560971],[-87.63076858703336,41.79454610110667],[-87.63067187635679,41.79454862216647],[-87.6305132561522,41.79456321438635],[-87.63053422160917,41.79448496097875],[-87.63052946362254,41.79429488228222],[-87.6305186795069,41.794200392644704],[-87.63050647816665,41.794119789739476],[-87.63049759742219,41.793896903691255],[-87.63049288688597,41.79372387522517],[-87.63049466491353,41.793551526968066],[-87.6304689061931,41.793247018951284],[-87.63046344873703,41.793004747607334],[-87.63045956800427,41.7928363345881],[-87.63045523478232,41.79265147312301],[-87.63045258942404,41.792538619376565],[-87.63044743847932,41.79234550028642],[-87.63044025111321,41.79211389358625],[-87.63043206028581,41.79191707799123],[-87.6304277053755,41.79178334979674],[-87.6304206713619,41.79152630449144],[-87.63040944989146,41.791056441695304],[-87.63040512341259,41.79090796833609],[-87.63039574145844,41.7905859873428],[-87.63038065302356,41.79011431702093],[-87.63037632077216,41.78990885357233],[-87.63037164362707,41.78968703151449],[-87.63036276449932,41.789328381362374],[-87.63035365344608,41.788903702246756],[-87.63035197542142,41.78885074564442],[-87.63033748316043,41.788393495658894],[-87.63032613283418,41.787962353422536],[-87.63033127069093,41.787575989314846],[-87.63032356846652,41.78740832114949],[-87.6303181662321,41.787256380016856],[-87.63031192806511,41.78708093882668],[-87.63030502504448,41.78682609886967],[-87.63030346908083,41.78676865526222],[-87.63030165995342,41.786701862514285],[-87.63029483834066,41.78634956406885],[-87.63030242017877,41.78614170051857],[-87.63030373679828,41.78610559649871],[-87.63028645254337,41.78602972094912],[-87.63026825703103,41.785815719831554],[-87.63026312264577,41.78556071637876],[-87.63026242192548,41.785462686685065],[-87.6302620584497,41.78541181826543],[-87.63026115054109,41.78528479390136],[-87.6302566010314,41.785036737327246],[-87.63025069155319,41.784921550566835],[-87.63024290421755,41.78466606485765],[-87.63023611509736,41.784401473935034],[-87.63022545523646,41.78406495895669],[-87.63022148522693,41.78369000997793],[-87.63021331624304,41.7834705818294],[-87.63020756693116,41.78331615268862],[-87.630201630354,41.783127419062474],[-87.63019396039162,41.782883569500505],[-87.63019123210579,41.782748193221835],[-87.63018849191117,41.78261219610889],[-87.63018392332977,41.782409541918426],[-87.63017404793187,41.7820952329223],[-87.6301647813465,41.7818359506368],[-87.63016441362363,41.78168235050862],[-87.63016399037596,41.78150564284442],[-87.63017031430128,41.78129596321755],[-87.63018246183711,41.78088442923878],[-87.63020831665686,41.780817881207035],[-87.63018581379126,41.78077085097469],[-87.63018711075554,41.78072690636623],[-87.63018818530351,41.78069050033264],[-87.63017950494594,41.78052855138634],[-87.63017365445533,41.78044549202341],[-87.63015611174754,41.780196458878],[-87.6301503475858,41.780008147726896],[-87.63014970093067,41.77998703057196],[-87.63029152403246,41.77998502886149],[-87.63054436576888,41.77998145970326],[-87.63074656895455,41.77997860530292],[-87.63092545263487,41.77997607916535],[-87.63104875035187,41.77997433812203],[-87.63120016207763,41.77997219988362],[-87.63140573990323,41.77996929634045],[-87.63168634316659,41.77996533253003],[-87.63183381950964,41.77996324900533],[-87.6324756434343,41.77995417952043],[-87.63254164967884,41.7799532465347],[-87.63262462281602,41.77995207368821],[-87.632689704991,41.77995115364236],[-87.63306175144197,41.77994411397825],[-87.63327902839802,41.779940004494314],[-87.6334331230932,41.77993691586652],[-87.63378091673584,41.77992994401183],[-87.63400816398271,41.779926031074375],[-87.63415898981393,41.77992343640309],[-87.63440130836945,41.77991928509548],[-87.63455213417605,41.779916689907786],[-87.63468352475192,41.77991441541668],[-87.63489658133503,41.7799106614076],[-87.63504833988505,41.779908973287284],[-87.63526986238412,41.77990650854159],[-87.63536168444071,41.77990500822525],[-87.63553198087895,41.77990220072818],[-87.63580744701063,41.779897698930064],[-87.63601071019458,41.779894322478626],[-87.63631235856495,41.77988937491936],[-87.63644887923219,41.77988711334278],[-87.6365221492631,41.779885899677566],[-87.63673190261598,41.779882451543486],[-87.63701419466302,41.77987730216776],[-87.63725013514488,41.779873023862805],[-87.63750339720671,41.77986828219502],[-87.63757595419084,41.77986692357992],[-87.63768424674757,41.779864895730796],[-87.63786763500958,41.779861834729765],[-87.63804442245788,41.77985889814447],[-87.63830661450385,41.779854502115484],[-87.63849674979737,41.77985131627093],[-87.63867361015707,41.77984837915819],[-87.63871728433554,41.77984762208249],[-87.63876006448146,41.779846880990405],[-87.63884346818811,41.779845435393156],[-87.63904104835515,41.779842010716614],[-87.63918534669766,41.77983950721066],[-87.63929649469965,41.77983759910325],[-87.63936459030379,41.77983662212851],[-87.63951453029776,41.77983447007699],[-87.6396068948481,41.77983265761732],[-87.63969238708677,41.77983102258434],[-87.63973385379731,41.77983025892898],[-87.63978405588162,41.77982933421416],[-87.63995345138723,41.7798258892987]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3520425.84311","perimeter":"0.0","tract_cent":"1171280.15086246","census_t_1":"17031680400","tract_numa":"24","tract_comm":"68","objectid":"431","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867043.07495152","census_tra":"680400","tract_ce_3":"41.79063257","tract_crea":"","tract_ce_2":"-87.64749423","shape_len":"7956.87543354"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64516036058433,41.79430185191307],[-87.64515602946541,41.794132278033224],[-87.64515107515231,41.79396604432582],[-87.64515043257101,41.79394449015805],[-87.64514440735361,41.79373856986804],[-87.64513940456986,41.793533540452984],[-87.64513779225328,41.793467914943534],[-87.64513651646278,41.793416150088014],[-87.64513056526837,41.79317376663309],[-87.6451183999124,41.79269981060056],[-87.64511264267513,41.79248380085898],[-87.64511102068391,41.792422785678795],[-87.64510832819654,41.79232153286092],[-87.64510063921408,41.7920907472758],[-87.64509412092546,41.791872153322885],[-87.6450890484725,41.79174478807989],[-87.64507826918167,41.791247568687005],[-87.64506843248162,41.79079250713299],[-87.6450645621009,41.790667033843086],[-87.64506018258054,41.79052505446024],[-87.64504896551054,41.79008249852432],[-87.64503792677132,41.7896472434248],[-87.64502314564608,41.78906487209144],[-87.64501640860705,41.78884654318071],[-87.64501143711715,41.788685431700586],[-87.64499486746107,41.78803133555879],[-87.6449944330505,41.78801418664809],[-87.64499399322703,41.78799682392489],[-87.64499310781262,41.78796188356609],[-87.64499228442074,41.787929371998686],[-87.64498359299837,41.78758628754523],[-87.64498103216626,41.787482456073555],[-87.6449746927624,41.78722547015308],[-87.64496859241584,41.78702514888674],[-87.64520967398634,41.787021879613235],[-87.64557575095525,41.78701631644863],[-87.6458495928731,41.78701215411942],[-87.64618359810736,41.78700798492915],[-87.64641435088524,41.78700510415293],[-87.64680013581334,41.78699792657433],[-87.64717568688901,41.78699093795222],[-87.6474028740721,41.786988635166836],[-87.64756752359801,41.7869869657902],[-87.64796003194415,41.78698189858322],[-87.64845617760062,41.78697547204555],[-87.6486184397073,41.7869740372085],[-87.64873055109076,41.786973045620904],[-87.64903487326836,41.78696799831294],[-87.64949740829643,41.78696026935123],[-87.6498276736979,41.78695623689929],[-87.64983071986751,41.787084291436116],[-87.64983957890568,41.78736873472155],[-87.64984100612813,41.78741463758836],[-87.64984999200371,41.78770368213579],[-87.64985486311957,41.78790751949508],[-87.64985557920726,41.787937488084914],[-87.6498564630917,41.78797447810986],[-87.6498569246072,41.78799378856657],[-87.64985870370212,41.78806825606834],[-87.64985880053499,41.78807229239397],[-87.64986327742719,41.788265297337944],[-87.64987913427743,41.788588257106376],[-87.64988128692094,41.78877417507862],[-87.6498833799029,41.78895497404528],[-87.64989139013336,41.78927099893121],[-87.64990550298214,41.7898272947095],[-87.64991976102475,41.790390617219515],[-87.64992359894262,41.79059681665498],[-87.64992648484919,41.79075186021345],[-87.6499379177045,41.79119452672869],[-87.64995615622608,41.79183885666043],[-87.64995789385672,41.79190118945604],[-87.6499617225142,41.79203639575396],[-87.64996755297658,41.792243486800885],[-87.6499716552986,41.79241642151141],[-87.64997738093253,41.79265779518263],[-87.64999597662472,41.793351139731534],[-87.65000627586686,41.79373515392887],[-87.65000959165685,41.793870359327535],[-87.65001193448465,41.7939659020973],[-87.65001333847417,41.79402312631945],[-87.65001381530867,41.794057158563035],[-87.65001637321343,41.79423975791009],[-87.64986050869821,41.79423544807759],[-87.64929886350289,41.79424730847329],[-87.64860723202567,41.79426459349362],[-87.64812749242883,41.79427133799093],[-87.64779450348384,41.79427558085653],[-87.64759874201631,41.794278553590026],[-87.64741958310577,41.79428127385415],[-87.64654203138859,41.79429447235641],[-87.6462826476835,41.79429824525022],[-87.64570577513949,41.79430050177852],[-87.64530077461701,41.79430013503391],[-87.64516036058433,41.79430185191307]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3519017.85806","perimeter":"0.0","tract_cent":"1171351.72164399","census_t_1":"17031680700","tract_numa":"18","tract_comm":"68","objectid":"432","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864389.21795302","census_tra":"680700","tract_ce_3":"41.78334852","tract_crea":"","tract_ce_2":"-87.64730944","shape_len":"7957.78509771"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64935964656665,41.77965118504065],[-87.6494780671187,41.779650189100636],[-87.64964308069172,41.779674017471145],[-87.64965429158435,41.78006592786133],[-87.64965582638024,41.78011821574755],[-87.64965622963057,41.78013361499455],[-87.64965765210351,41.78018798650103],[-87.64966585468213,41.78051339849725],[-87.64967280304639,41.78078775919597],[-87.64967861752231,41.78101699698928],[-87.64968632799345,41.781319683280856],[-87.64968791025449,41.781383177475234],[-87.64969061781228,41.781491849392275],[-87.6496952995464,41.78167975990556],[-87.6496986971101,41.781822401185224],[-87.64970423964712,41.78205657704144],[-87.64970576688003,41.782119869469184],[-87.64970988354523,41.78229843750437],[-87.64971562411786,41.78253810310005],[-87.64972317411751,41.78283524488935],[-87.64972391651713,41.78286469581503],[-87.64972735298765,41.783001024880356],[-87.64973666822212,41.78331465962923],[-87.64974247686501,41.78351023555177],[-87.64974825220688,41.78376735498582],[-87.6497523985417,41.78396727371921],[-87.64975638553929,41.78416148337525],[-87.64975929747929,41.78430156923932],[-87.64976221432042,41.78444464640459],[-87.64977020735769,41.78463797426563],[-87.64977957445417,41.78481585994711],[-87.64978358588513,41.78503943333886],[-87.6497892441774,41.785134579401564],[-87.6497890850235,41.785349570998264],[-87.64979940198475,41.785779827111234],[-87.6498162942871,41.78648161477781],[-87.649816780388,41.786501819475085],[-87.6498246871409,41.78683068330976],[-87.6498276736979,41.78695623689929],[-87.64949740829643,41.78696026935123],[-87.64903487326836,41.78696799831294],[-87.64873055109076,41.786973045620904],[-87.6486184397073,41.7869740372085],[-87.64845617760062,41.78697547204555],[-87.64796003194415,41.78698189858322],[-87.64756752359801,41.7869869657902],[-87.6474028740721,41.786988635166836],[-87.64717568688901,41.78699093795222],[-87.64680013581334,41.78699792657433],[-87.64641435088524,41.78700510415293],[-87.64618359810736,41.78700798492915],[-87.6458495928731,41.78701215411942],[-87.64557575095525,41.78701631644863],[-87.64520967398634,41.787021879613235],[-87.64496859241584,41.78702514888674],[-87.64496031127126,41.786753174358566],[-87.64495239953362,41.786299935209605],[-87.64493884255786,41.78582599770525],[-87.64492747790344,41.785428199865535],[-87.6449202575376,41.7852051282562],[-87.64491711698676,41.78510796161427],[-87.64491582494743,41.7850394018118],[-87.6449087167344,41.78468674525991],[-87.64490598412114,41.78455826871564],[-87.64490349461146,41.784444804886725],[-87.64489643231921,41.7841824636814],[-87.64489066357731,41.78396818244758],[-87.64488733393945,41.78373788889766],[-87.64488342940153,41.78360932298036],[-87.64487751253485,41.78338565646451],[-87.64487144575065,41.783156333334716],[-87.64486643927299,41.78294223638116],[-87.64486631372579,41.78293686944448],[-87.64486599591291,41.78292328961715],[-87.6448610058155,41.78270985742002],[-87.64485515042361,41.78253745347678],[-87.64485340566215,41.78248585832672],[-87.64484918652758,41.78236110807735],[-87.64484590241754,41.78226401187748],[-87.64484706148093,41.78215751456935],[-87.64484782920417,41.78208694782685],[-87.64484859864751,41.782016254307585],[-87.64485026607571,41.78186298745515],[-87.64484692823982,41.781775678985476],[-87.64483855512822,41.78155666681304],[-87.64483323830025,41.78141759217778],[-87.64482952461643,41.781320454143945],[-87.64482284830214,41.7811014194654],[-87.64481638928207,41.78088949434255],[-87.64481015050157,41.78066503872731],[-87.64480718826539,41.78055688603253],[-87.64480341002766,41.78041736119906],[-87.64480206330201,41.78036763645401],[-87.64480002369095,41.78029254399461],[-87.64479693425152,41.7801787710454],[-87.64479402991635,41.78007326308728],[-87.64478649487674,41.77975061167237],[-87.64491518596489,41.77974922973296],[-87.64539551994139,41.7797419806133],[-87.64587739294825,41.77973476613735],[-87.64607001746538,41.77973129669637],[-87.6461838441519,41.77972924646386],[-87.64628913061598,41.779727349769324],[-87.64660207880371,41.77972156431549],[-87.64693437807256,41.779716524815555],[-87.64721430967101,41.77971089772971],[-87.64744211026022,41.77970631798162],[-87.64755111784439,41.77970412647857],[-87.6478435058387,41.77970104125464],[-87.64822671620344,41.77969731771954],[-87.64838551672506,41.779685527810734],[-87.64841927736367,41.77968151989626],[-87.64860581762,41.779659373719255],[-87.64891823845709,41.77965489607134],[-87.64935964656665,41.77965118504065]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7022808.09944","perimeter":"0.0","tract_cent":"1170834.77731091","census_t_1":"17031681100","tract_numa":"32","tract_comm":"68","objectid":"433","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859071.30551751","census_tra":"681100","tract_ce_3":"41.76876684","tract_crea":"","tract_ce_2":"-87.6493598","shape_len":"10599.1058646"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65390654482262,41.76506018277236],[-87.65411569749986,41.76505710349442],[-87.65414350615573,41.76611811137691],[-87.65416110819716,41.76676386647477],[-87.65416344745805,41.76687207123485],[-87.65416559165917,41.76697127957991],[-87.65418399007035,41.76768756773734],[-87.65420682820883,41.76857375404812],[-87.65421109930605,41.768692777784224],[-87.65421657396986,41.7688453324166],[-87.65422529315428,41.76917640106125],[-87.65425735485158,41.77039379590771],[-87.65426142068745,41.77051436260724],[-87.65426539700884,41.77063229534837],[-87.65427402202732,41.77096572342625],[-87.65428473797408,41.77134466426938],[-87.65428689580868,41.77142664914158],[-87.65429900358758,41.771860182221076],[-87.65429943651309,41.771878710147725],[-87.6543061772837,41.77216714663978],[-87.65430967308932,41.772332947172636],[-87.65327171845969,41.772348353514474],[-87.65309648272242,41.7723507771929],[-87.6529049245697,41.772353426663],[-87.65248671680554,41.772360178360245],[-87.65238185273734,41.77236187112595],[-87.6520394320261,41.77236739772387],[-87.65188153587007,41.7723691139043],[-87.65169640782179,41.772371126049],[-87.65127630039542,41.77237716144971],[-87.65106646683554,41.77238017521598],[-87.65091907435846,41.77238226365327],[-87.65066787197156,41.77238560259407],[-87.65014427906145,41.772392560359116],[-87.65005964777423,41.772394544485124],[-87.65000702882568,41.77239577821302],[-87.64973873881071,41.77240079563142],[-87.64945499005232,41.7724045521574],[-87.64907947356446,41.77240952247279],[-87.64897765491821,41.77241094678321],[-87.64883949700405,41.77241336198957],[-87.64823487431379,41.77242138837857],[-87.6478407184223,41.77242650721778],[-87.64763458551798,41.772429640529666],[-87.64742687707745,41.77243276406521],[-87.64702376233852,41.772439730056675],[-87.6467447027505,41.77244455128048],[-87.6464138901169,41.77244784283585],[-87.64626188411287,41.772449348853215],[-87.6458128928741,41.77245493713425],[-87.645390740577,41.772460189853646],[-87.6452181865724,41.77246217409325],[-87.64504551266855,41.77246415955076],[-87.64479811967558,41.77246904390978],[-87.64459718011128,41.77247247924577],[-87.6445928713578,41.772290120548604],[-87.64458798625213,41.77213679495145],[-87.64457828529943,41.771830528361036],[-87.64457558486151,41.77174027974997],[-87.6445657783102,41.771341090667484],[-87.64456453238616,41.77128680103719],[-87.64455982737458,41.77108180141023],[-87.64455547770123,41.770892144518015],[-87.64455194960486,41.77065409826457],[-87.64454953752765,41.77049135942165],[-87.64453695684206,41.77003968268256],[-87.6445344746759,41.769949600009284],[-87.64452839326164,41.76972993754123],[-87.64452512051464,41.769590397907635],[-87.64451954551761,41.76935081487141],[-87.6445135268181,41.76909103114386],[-87.64450709315634,41.768837555700635],[-87.64449655775464,41.768422501107324],[-87.64448854730647,41.76811251220714],[-87.64447975821979,41.767803287024535],[-87.64447313615896,41.767582825659666],[-87.64446559456066,41.76733178675346],[-87.644458017594,41.76701501429415],[-87.64445320948347,41.76681397336719],[-87.6444494211758,41.76664380421068],[-87.64444624604926,41.766502014488125],[-87.64444089888401,41.76627201056095],[-87.64443740941637,41.76613219511309],[-87.64443302913472,41.765962543803205],[-87.6444251598076,41.76565307703108],[-87.64442037649903,41.76546292310942],[-87.64441296182687,41.76520275843198],[-87.6446242926453,41.765198827205275],[-87.64503148291116,41.76519300705948],[-87.6452222316831,41.76519028021334],[-87.64563054931234,41.76518381265079],[-87.64595524131967,41.765178668847206],[-87.64623526583539,41.76517383988934],[-87.6468413589102,41.76516528081789],[-87.64714188680139,41.765161036221194],[-87.64767523154157,41.765153188364685],[-87.64805543845725,41.76514751973869],[-87.64847451632386,41.7651412700819],[-87.64889927521905,41.765134580720634],[-87.64926709454024,41.76512788750363],[-87.64946739480585,41.76512424228968],[-87.64970737084832,41.765121307030014],[-87.64987174752088,41.765118934485336],[-87.65002646734548,41.76511670131236],[-87.65047464519117,41.765111235168426],[-87.65075860387489,41.765107770956824],[-87.6510789495905,41.76510284042135],[-87.65108627238536,41.7651027197973],[-87.65141304709462,41.76509733170999],[-87.65168929986933,41.765091768370674],[-87.65198561389096,41.76508580000309],[-87.65229844357827,41.765080180699215],[-87.6524519569605,41.76507742282618],[-87.65273362832455,41.76507272500115],[-87.6528974268739,41.76507148276259],[-87.6530546438143,41.76507029023533],[-87.65390654482262,41.76506018277236]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3515370.01568","perimeter":"0.0","tract_cent":"1167307.77814844","census_t_1":"17031670200","tract_numa":"24","tract_comm":"67","objectid":"434","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866936.12716492","census_tra":"670200","tract_ce_3":"41.79042513","tract_crea":"","tract_ce_2":"-87.662063","shape_len":"7955.03436054"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66414315286801,41.78675139516662],[-87.66439449268405,41.78674683854954],[-87.66439776288328,41.78689687086981],[-87.66440378254485,41.78707267764248],[-87.66440950489569,41.78724181405599],[-87.66441635635339,41.7874433945343],[-87.6644213073815,41.787711637534684],[-87.66442176589996,41.78773648919088],[-87.66442284820977,41.787795126399686],[-87.66442526990156,41.787926331498646],[-87.66443219617541,41.788194763258595],[-87.66443805510544,41.78843190390249],[-87.66444137514561,41.788567419182726],[-87.66444387361096,41.788669373615704],[-87.66445102047986,41.788927213672174],[-87.6644588546599,41.78921068936969],[-87.6644677985665,41.78953550049101],[-87.66447664330823,41.78985578294132],[-87.6644823471252,41.79006193960424],[-87.66448733125586,41.79024215855142],[-87.66449003359642,41.79038751203041],[-87.66449194131084,41.79049007688825],[-87.66449845898777,41.790727303599866],[-87.66450383060845,41.7909231672195],[-87.66451066692754,41.791172113874325],[-87.66451773916357,41.79143011803898],[-87.66452553077309,41.791714169663],[-87.66453303090557,41.791986967999875],[-87.66453621990324,41.79210400295392],[-87.66453876063403,41.792206921362684],[-87.66454171590787,41.79232665148754],[-87.66454634071309,41.79252026038884],[-87.6645516187127,41.79274282530837],[-87.66455592357333,41.79293190426039],[-87.66455914941254,41.7931461521834],[-87.66455926419519,41.79315377181356],[-87.66456882106002,41.79337743188962],[-87.6645741920737,41.79357335029935],[-87.66457483864082,41.79366354968929],[-87.66457644803495,41.79383790162545],[-87.66457884130335,41.7939409744709],[-87.66458181581164,41.79402436374037],[-87.66429970331558,41.79402851098633],[-87.66411250391437,41.79403109794634],[-87.66397063743607,41.79403304286569],[-87.663789106081,41.79403717168203],[-87.66358796090456,41.79404428718],[-87.66344444035299,41.79405011896618],[-87.66337056484673,41.794051872325866],[-87.6632337458031,41.794055119668904],[-87.66308623015038,41.79405722291747],[-87.66292518115264,41.794059466541434],[-87.6627766395968,41.79406148107675],[-87.66258892698379,41.794064035114936],[-87.66242765794371,41.79406627675649],[-87.66235147538494,41.79406732579916],[-87.6622793360958,41.79406831937466],[-87.66215860166233,41.79407029164189],[-87.66201452094396,41.79407264492597],[-87.66189876847695,41.79407421874826],[-87.66169202061181,41.794077016544435],[-87.66149818326518,41.794079615319504],[-87.66129264546295,41.79408242002244],[-87.66108204783113,41.79408513958784],[-87.66094578929449,41.79408737182527],[-87.66066736593011,41.79409193295662],[-87.66048691203154,41.79409469071988],[-87.660268316866,41.79409766382206],[-87.66021237095366,41.79409841946542],[-87.65989135157355,41.79410275436447],[-87.65972895801578,41.79410026600234],[-87.65972671725942,41.79401660649165],[-87.65972241348967,41.79383732177692],[-87.65972054859314,41.793732827105195],[-87.65972019536677,41.79371304669264],[-87.65971891314383,41.79364119734189],[-87.65971185986176,41.79343220606454],[-87.65970813436279,41.7932765006079],[-87.65970675838726,41.79321900002413],[-87.65970303165675,41.79304257546959],[-87.6596967772098,41.79278188650388],[-87.65969139038707,41.792557344863674],[-87.65968727001892,41.792383497609485],[-87.65968335517101,41.79227540767548],[-87.65967976002972,41.792176150178946],[-87.6596746262885,41.79195858048652],[-87.65967028696873,41.7917745506267],[-87.65966513134974,41.79155599284738],[-87.65965967222265,41.79132439791749],[-87.65965309164775,41.79104581448386],[-87.65964641389147,41.79078001829555],[-87.65964084929979,41.79056200693702],[-87.65963763023422,41.79045661264505],[-87.65963481429033,41.790364410308634],[-87.65963003008483,41.79017343474108],[-87.65962275841277,41.7898873275758],[-87.65961660097548,41.78964189727296],[-87.65960880954364,41.78933539697469],[-87.65960212831669,41.78906995771751],[-87.65959730212809,41.788879503274806],[-87.6595930006861,41.78870897543441],[-87.65959117828031,41.78863721725613],[-87.65958933950594,41.78856485139556],[-87.65958343288592,41.78839585120742],[-87.65957668554655,41.78821847545529],[-87.65957356308054,41.787982915423974],[-87.65957085182866,41.787863289712256],[-87.65956946457989,41.78780208476687],[-87.65956455919758,41.78753806778957],[-87.65956265521015,41.78749571224956],[-87.65955373366018,41.78729724785426],[-87.65954875474002,41.78707937701084],[-87.65954763601208,41.78703287176845],[-87.65954497381706,41.786922189413026],[-87.65954069452745,41.78681641533668],[-87.6596347474442,41.78681601795929],[-87.65980417345253,41.78681402013279],[-87.66005069449544,41.78681003149816],[-87.66015360194503,41.78680836750758],[-87.66034342485324,41.78680529765928],[-87.6606349082687,41.78680058321559],[-87.66075863839919,41.78679924341418],[-87.66091948106937,41.78679750187414],[-87.66119681016778,41.78679284009606],[-87.66139609702931,41.78678947617744],[-87.66146629112625,41.7867882966813],[-87.66177024485687,41.7867832132009],[-87.66196327246905,41.78678101233444],[-87.66211393479827,41.7867792941507],[-87.66233411911047,41.78677621700549],[-87.66254986512146,41.78677321368971],[-87.6626646516975,41.78677161571291],[-87.66296093239244,41.7867674996733],[-87.66316688612001,41.786764299469695],[-87.66337952394551,41.786760995173935],[-87.66362134158362,41.78675795939053],[-87.66377928913609,41.786755975229674],[-87.6638675599049,41.786754866414405],[-87.66414315286801,41.78675139516662]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1756503.01608","perimeter":"0.0","tract_cent":"1165782.57311222","census_t_1":"17031610400","tract_numa":"8","tract_comm":"61","objectid":"450","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1874202.96952705","census_tra":"610400","tract_ce_3":"41.81039875","tract_crea":"","tract_ce_2":"-87.66744912","shape_len":"5295.41665343"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66559951395324,41.8085917030602],[-87.66588213425962,41.80858460832184],[-87.66611558882624,41.80858236982817],[-87.66618354284589,41.80858588256285],[-87.6663290991846,41.80859340686205],[-87.66668260126704,41.808588268935424],[-87.66708935174653,41.808584152557245],[-87.66739542836278,41.8085815214334],[-87.66769180186658,41.80857897295159],[-87.66797691155989,41.80857579478828],[-87.66834085624278,41.808571755068996],[-87.66861081266818,41.80856914047229],[-87.66888003320351,41.80856653251038],[-87.66921205526543,41.80856351285746],[-87.66956150211084,41.808560318505656],[-87.66982753385358,41.808557332042554],[-87.66983096935351,41.80869741523509],[-87.66983600175489,41.80886374762202],[-87.66983980403033,41.809000068048945],[-87.66984194588454,41.80907687522831],[-87.66985314195006,41.80931421025882],[-87.6698561643996,41.809444279094066],[-87.66985809482576,41.80952735956527],[-87.66986272441284,41.809729255453604],[-87.66986798928951,41.80995486557161],[-87.66987265203463,41.81015703606413],[-87.66987761020307,41.810378355086485],[-87.66988016140739,41.81049221072317],[-87.66988950961536,41.81078167603286],[-87.66989551804822,41.81098753187514],[-87.6699021678311,41.81126024175279],[-87.66991001221675,41.81158070895201],[-87.66991664389629,41.81181170594901],[-87.66991818845385,41.81186550243908],[-87.66992475712833,41.81207857865306],[-87.66992629953943,41.81219717657855],[-87.66957120133758,41.81220074221343],[-87.66931791010241,41.81220300559245],[-87.66912734332767,41.81220470821924],[-87.66889002509221,41.81220684813678],[-87.66871405405479,41.81220759744107],[-87.66839816986833,41.8122089417272],[-87.66808164826037,41.81221169201165],[-87.66787576543479,41.81221390238668],[-87.66765065956952,41.81221587805068],[-87.66751037849757,41.81221710895627],[-87.66717830127293,41.8122200135693],[-87.6668948275029,41.812223089444394],[-87.66678260434482,41.81222430441227],[-87.66656843009963,41.8122266289876],[-87.66629867308643,41.812227416070826],[-87.66595816771786,41.81222840896646],[-87.66570152427026,41.81223194266283],[-87.66564140947037,41.812232770274605],[-87.66534009583029,41.81223691865379],[-87.66521820320082,41.81223675860922],[-87.6650636423047,41.81222247404512],[-87.66505385026643,41.81180080715922],[-87.66504738838903,41.811540227856696],[-87.66504156668721,41.81130275908494],[-87.66503399015936,41.8109941484124],[-87.66502700743655,41.81070958105298],[-87.66502054019294,41.81042158440968],[-87.66501504688077,41.810176956856466],[-87.66500684358441,41.80986867178951],[-87.66500102831283,41.80964119215886],[-87.66499179074685,41.80935831306514],[-87.66498291675451,41.80909692377499],[-87.6649798027717,41.80894943826911],[-87.66497251832394,41.80860444112622],[-87.66525052261052,41.80860044901362],[-87.66547201759758,41.8085949034732],[-87.66559951395324,41.8085917030602]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7488288.17423","perimeter":"0.0","tract_cent":"1163330.46490608","census_t_1":"17031670500","tract_numa":"32","tract_comm":"67","objectid":"435","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1865546.46808715","census_tra":"670500","tract_ce_3":"41.78669602","tract_crea":"","tract_ce_2":"-87.67668574","shape_len":"13457.5466019"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67409987728286,41.78662752741925],[-87.67409492985328,41.78649254500143],[-87.67409021136376,41.78631603263122],[-87.67408677780769,41.786187937182056],[-87.67408517098609,41.78612799238955],[-87.67407869068253,41.78588719861925],[-87.6740719323758,41.78563424603676],[-87.67406644954478,41.785428557445286],[-87.67406006328096,41.785181314827355],[-87.67405349503333,41.78492496065782],[-87.67405047340877,41.78480595059478],[-87.67404790444509,41.78470478156641],[-87.67402669632884,41.783893776737024],[-87.67400583737012,41.783134695792185],[-87.67400093685842,41.7829822499846],[-87.67399719017338,41.78286570558187],[-87.67397830447993,41.78216333317198],[-87.673976455069,41.78209455059828],[-87.67395261666664,41.781268463856605],[-87.67395054896326,41.7811628016674],[-87.6739487901745,41.78107293849503],[-87.67393280651336,41.78051446551898],[-87.67391196064891,41.77978773145148],[-87.67390330628137,41.77948600957831],[-87.67390512861013,41.77931565046503],[-87.67414647329444,41.77931270337751],[-87.67492244746374,41.77930249865594],[-87.67511895030997,41.77929979418022],[-87.67533071420716,41.77929687929628],[-87.67600456915443,41.77928560838701],[-87.67609102213436,41.77928416197178],[-87.67633838804231,41.77928184078612],[-87.67657253150806,41.7792796432639],[-87.67727954727198,41.779268808837614],[-87.67745573862777,41.77926644623667],[-87.67756350686047,41.77926500129856],[-87.67765189257923,41.77926381584365],[-87.67775818637385,41.77926239029956],[-87.6777718929965,41.779262206434325],[-87.67795812317901,41.77925580339079],[-87.67804274995083,41.779253305550164],[-87.67814927789426,41.779250161405294],[-87.6783104709036,41.779248811320635],[-87.67833460145532,41.779248609157385],[-87.67837576576913,41.77924826424915],[-87.67848523599672,41.77924734682086],[-87.67875100560185,41.780332904545695],[-87.67894585646074,41.78104684472239],[-87.67897519320923,41.78104632575082],[-87.67898836342023,41.78155409465436],[-87.67902331860677,41.782849256971815],[-87.67906119956342,41.78426243991027],[-87.67907257410012,41.784721487129964],[-87.6790854820741,41.785210044447346],[-87.67908951323972,41.78535448598753],[-87.67912332519052,41.78656407367616],[-87.6791342061897,41.78656393695291],[-87.6791510141409,41.786563726128875],[-87.679480599261,41.786559595209226],[-87.6796718667745,41.78655724616565],[-87.6796429366745,41.78835659888577],[-87.67966347808276,41.789707193086784],[-87.67948305409513,41.7920541640003],[-87.679482216998,41.79206505186261],[-87.67937232191885,41.793494484348116],[-87.6793006357395,41.79349529031259],[-87.67926425781428,41.79349567349275],[-87.67895067939905,41.793498978049314],[-87.6788496093055,41.7934999821612],[-87.67880652518328,41.79350040986698],[-87.67880636527717,41.793500411700194],[-87.67880790043529,41.7935294906789],[-87.67881162415942,41.793704117151314],[-87.67881500193621,41.79386776450008],[-87.67881500395127,41.793867854798606],[-87.67873036292528,41.79386885718183],[-87.67830929305562,41.79387384219189],[-87.67788462959878,41.793878006292815],[-87.67737256828651,41.79388304195088],[-87.67696013162313,41.793887796607876],[-87.67689820168187,41.79388851027096],[-87.67673536041751,41.793890418335316],[-87.67623542886797,41.79389627457788],[-87.67585526304075,41.79390053365951],[-87.67577331302799,41.79390145156847],[-87.67551987812995,41.793904783642006],[-87.6753981485089,41.7939063837696],[-87.6749972549701,41.79390982287519],[-87.67463549376919,41.79391293583804],[-87.67430056576606,41.79391631549006],[-87.67429615025452,41.793836152601386],[-87.67429288550653,41.79375888934017],[-87.67428318635325,41.79355530065986],[-87.67427915663268,41.79347249201662],[-87.6742723404107,41.79322146044285],[-87.67426897538499,41.79309743202803],[-87.6742660045516,41.79298794016455],[-87.6742594375513,41.79274484098864],[-87.67425295643622,41.79248258717044],[-87.67424781421347,41.79225788287195],[-87.67424556677979,41.79209575147817],[-87.67424494635745,41.79205100203848],[-87.67423719257435,41.79182707858301],[-87.67423172905966,41.79161584686733],[-87.67422643048124,41.79140999489393],[-87.67422177762936,41.7912306015521],[-87.67421796813603,41.79108343098276],[-87.67421342713207,41.79090744118933],[-87.67420878959133,41.79072788298768],[-87.67420319670428,41.79051368693188],[-87.67419926148133,41.790360862388795],[-87.6741960829093,41.790272275268066],[-87.67419210133288,41.79016131155162],[-87.6741888577848,41.7900376901956],[-87.67418460385262,41.78987306337072],[-87.67418308177609,41.78981517731998],[-87.67418027604035,41.78970849100292],[-87.67417497461278,41.78950294081533],[-87.67417020735415,41.78932041826732],[-87.67416454906748,41.789103175073386],[-87.6741590145393,41.7888917510225],[-87.67415364297266,41.78868589853096],[-87.67414938158515,41.78852201258194],[-87.67414262408552,41.78845198620285],[-87.67413562463024,41.788379450153904],[-87.67413416422661,41.7882463986358],[-87.6741321775388,41.788046602979854],[-87.67412975101963,41.78786826513605],[-87.67412362177966,41.78764185600115],[-87.67412206260084,41.78757768501722],[-87.67411738989206,41.78737471607098],[-87.67411245847603,41.78715097328095],[-87.6741110488815,41.787084443609515],[-87.6741083556032,41.7869573126528],[-87.67410421492367,41.786745868802676],[-87.67409987728286,41.78662752741925]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3516833.1381","perimeter":"0.0","tract_cent":"1166055.35129832","census_t_1":"17031670700","tract_numa":"16","tract_comm":"67","objectid":"436","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864245.61982227","census_tra":"670700","tract_ce_3":"41.78306879","tract_crea":"","tract_ce_2":"-87.66673182","shape_len":"7965.18093093"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6688721805781,41.779385065509565],[-87.66907886090783,41.77938321537298],[-87.66906350061748,41.77954391386384],[-87.66907188836412,41.7798572288862],[-87.66907890166777,41.78011920669356],[-87.66909007562322,41.780535690261445],[-87.66910609496581,41.78113637126799],[-87.66910787064576,41.78118663940451],[-87.66910937104223,41.781229120940885],[-87.6691127911968,41.781325958245084],[-87.66913210166872,41.782073175935594],[-87.6691548711473,41.78295422517408],[-87.66915571332765,41.783046174231615],[-87.6691568880884,41.78317446621327],[-87.66916499567718,41.783499931409985],[-87.66919644999957,41.78476262396956],[-87.66919953888664,41.78486920125435],[-87.6692031828017,41.784994939637144],[-87.66920706288971,41.78515336223383],[-87.66921026011435,41.7852826645076],[-87.66921440361399,41.785453191213215],[-87.66921884877443,41.78563357165906],[-87.66922316217072,41.785808956729625],[-87.6692268245989,41.785958596591875],[-87.66923091055897,41.786124046008254],[-87.66923381199652,41.786242613632524],[-87.66923583662982,41.78632534070097],[-87.66924076952002,41.78652597679642],[-87.66924101965789,41.78658701124476],[-87.66924494782619,41.78668799033061],[-87.66909178728517,41.78668960819656],[-87.66885781886342,41.78669242674305],[-87.66856843988799,41.78669588414149],[-87.66836831980167,41.78669829353369],[-87.66820985957702,41.78670020282458],[-87.6680340104318,41.786703004353356],[-87.66788643515085,41.78670535522111],[-87.66764539003844,41.786708184917224],[-87.66738369964008,41.78671122374566],[-87.667190987962,41.78671350937473],[-87.66682049320194,41.78671817039289],[-87.66664005905277,41.78672043988352],[-87.66637836358731,41.78672388803547],[-87.6661438792033,41.78672697221274],[-87.6658274684533,41.78673111671457],[-87.66560663584707,41.786733164112285],[-87.66542716676581,41.7867348275258],[-87.66519255324383,41.786736180107894],[-87.66501514330692,41.786737746179675],[-87.66486273524048,41.78673909137375],[-87.66463580089892,41.786742463390574],[-87.66439449268405,41.78674683854954],[-87.66439016603115,41.78654838422306],[-87.66438489751039,41.786321455695095],[-87.66437988873219,41.78610495697095],[-87.66437430353145,41.78586271344476],[-87.66436929227818,41.78564635190323],[-87.6643646406802,41.78544481133879],[-87.66435924369341,41.78521272302791],[-87.66435704140767,41.78512522196329],[-87.6643555282396,41.78505163900976],[-87.66435283781823,41.78492947663685],[-87.66435039728513,41.78481861889892],[-87.66432532858985,41.78382643937136],[-87.66431220776163,41.78325099495542],[-87.66430926769192,41.783110145761526],[-87.6643070925493,41.78300589998191],[-87.66429814146987,41.78266698306112],[-87.6642822036961,41.782063530075085],[-87.66426410157834,41.78137831224164],[-87.66426208875973,41.78129387128335],[-87.66425955744542,41.78118764009634],[-87.66424546735357,41.780483317531825],[-87.6642317554953,41.779924970119374],[-87.66422444755668,41.77962738751484],[-87.66422076561432,41.77946457161035],[-87.66439691431411,41.7794543762731],[-87.66522413941844,41.779437839404515],[-87.66545966931571,41.77943479058226],[-87.66571567846148,41.77943147608787],[-87.66649055624428,41.77942118474318],[-87.66666724248833,41.77941826581091],[-87.66691959108863,41.779414096693685],[-87.6674790881418,41.77940573248446],[-87.66787727237717,41.77940006251836],[-87.66816948816404,41.77939590066054],[-87.6688721805781,41.779385065509565]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7914678.61568","perimeter":"0.0","tract_cent":"1165325.53217763","census_t_1":"17031671500","tract_numa":"38","tract_comm":"67","objectid":"437","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1858815.87846593","census_tra":"671500","tract_ce_3":"41.76818436","tract_crea":"","tract_ce_2":"-87.66956123","shape_len":"14607.5307522"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66389848924149,41.768551690094704],[-87.66388675420629,41.76838681757185],[-87.66387804012072,41.76808909279167],[-87.6638382902084,41.76673095460444],[-87.66383203535491,41.766517247328665],[-87.66382043436872,41.76580676304982],[-87.66381729608065,41.76551277543017],[-87.66380556342854,41.765097028031285],[-87.66379598336687,41.76490902747779],[-87.66406771834667,41.76490689357503],[-87.664418668561,41.76490205800849],[-87.66484752130232,41.76489614774223],[-87.66503006933956,41.764894276916586],[-87.66527115303603,41.76489180599149],[-87.66609702103979,41.764882033043804],[-87.66624685756449,41.76488052026196],[-87.66626076120798,41.764880379799294],[-87.66733077814106,41.76486956984903],[-87.66746090678912,41.76486761548962],[-87.66762347767819,41.76486517387024],[-87.6685299951364,41.76485812847969],[-87.6686768388435,41.76485631446858],[-87.66881594146378,41.76485459600422],[-87.66974695527699,41.76484644775779],[-87.66988671294416,41.76484557675018],[-87.67001664421097,41.7648447668453],[-87.67049156168865,41.76483988851784],[-87.67078897557083,41.76483683716862],[-87.67088956739715,41.764835807407245],[-87.67110250201523,41.764833739885525],[-87.67136308897675,41.76483120942154],[-87.67171380871724,41.76482724103884],[-87.67215544399558,41.764822242651924],[-87.6723179414282,41.76482032416473],[-87.67292320425022,41.76481317761838],[-87.67333859409942,41.764808271077605],[-87.6735340679865,41.764806446445725],[-87.67383913015712,41.764803598524495],[-87.67452515336136,41.76480135971778],[-87.67474499918521,41.76479888790735],[-87.67495648672563,41.76479650499448],[-87.67575739368513,41.764786382336816],[-87.67596050843505,41.76478367275348],[-87.6761526398136,41.76478110965039],[-87.67620655284304,41.764780390009165],[-87.67706129353827,41.76477146326713],[-87.67754984728326,41.764766357847954],[-87.67784721118836,41.764763293427634],[-87.6785510534453,41.76475603717204],[-87.67835077127235,41.76593301460577],[-87.67845122969594,41.76673286431989],[-87.67845088009763,41.76753316837759],[-87.67835603344726,41.76838836216399],[-87.67828975430963,41.76838913003424],[-87.67822589413959,41.768389973406215],[-87.67816814223416,41.76839073604089],[-87.67775111092644,41.76839624341031],[-87.67759759293533,41.768398270217105],[-87.67732612866666,41.76840185397968],[-87.67715306755242,41.76840313302115],[-87.67715290991352,41.768403134316245],[-87.67708126180622,41.768403663904394],[-87.67703288613535,41.76840402150214],[-87.67657802818904,41.768408159484366],[-87.67625472950142,41.76841109943619],[-87.67619577649835,41.768411986485035],[-87.67615086569805,41.76841266265812],[-87.67612774285327,41.76841301064155],[-87.6760602639172,41.76841402613075],[-87.67595450977687,41.76841561732964],[-87.67588476544212,41.76841666695533],[-87.67548622201257,41.768420971922886],[-87.6741953199613,41.76843423430176],[-87.67382646806348,41.768438021071404],[-87.67362490536182,41.76844095861179],[-87.67339689202333,41.76844428119903],[-87.6730172920694,41.76844925530607],[-87.67262816103116,41.7684543528245],[-87.67241183315163,41.768457212928304],[-87.67222172491994,41.76845972623838],[-87.6718069375371,41.768464418939395],[-87.67136751335549,41.76846937983758],[-87.67119823129408,41.76847112476543],[-87.67100720884991,41.768473093737434],[-87.670751531676,41.76847601448251],[-87.67013411556349,41.76848306839878],[-87.66998612431476,41.76848491797472],[-87.66981570697327,41.76848704784262],[-87.66959513224276,41.76849142699679],[-87.66942464092095,41.768487752489634],[-87.66910612402269,41.76849156468282],[-87.66900564602919,41.768492765599035],[-87.66877375708474,41.76849553710348],[-87.66877765732924,41.76862117195358],[-87.66878680189754,41.76895070609578],[-87.66879235342591,41.7691507692597],[-87.66882075318162,41.77021020496888],[-87.6688250202327,41.77031384635911],[-87.6688290187657,41.77041097068365],[-87.66884655347236,41.77115927726566],[-87.66885476808322,41.77142985756234],[-87.66886309202819,41.771705762413816],[-87.6688715833389,41.77203035204015],[-87.66888593679913,41.77213230608438],[-87.66890003448869,41.77223244192164],[-87.66890733628587,41.77248045877028],[-87.6689277822179,41.77317768312081],[-87.6689436667853,41.77386933752897],[-87.66894631495393,41.77395166113023],[-87.66865896031021,41.77395484954035],[-87.66834661375842,41.773958730957865],[-87.66794776930652,41.77396368581468],[-87.66779275497512,41.77396531074505],[-87.66774590537169,41.77396580169889],[-87.66751945693373,41.77396817487163],[-87.66714148064501,41.77397269159809],[-87.66671844029835,41.773977745572154],[-87.66653959223468,41.77398008563854],[-87.66638427336734,41.77398211772166],[-87.66593872514233,41.77398814273566],[-87.66555090441105,41.77399338575007],[-87.66533582975266,41.7739957861501],[-87.66510953646119,41.77399831134998],[-87.66472927213057,41.774004180350474],[-87.66431149676175,41.774010626601594],[-87.66407020304622,41.77401262605724],[-87.66406480729289,41.77384156821923],[-87.66403559220619,41.77264768512977],[-87.66403292886028,41.772538830013325],[-87.664021128556,41.772192017814305],[-87.66401512622343,41.772015608576865],[-87.66399766359164,41.771401662629984],[-87.66399459565773,41.77129640070966],[-87.66397377333728,41.77057002898448],[-87.66396833556819,41.77037205857369],[-87.66396332239265,41.77018952620311],[-87.6639515740429,41.76976189625275],[-87.66393089167728,41.76900901797388],[-87.66389848924149,41.768551690094704]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3513424.26879","perimeter":"0.0","tract_cent":"1168849.40932252","census_t_1":"17031671700","tract_numa":"16","tract_comm":"67","objectid":"438","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859015.93369764","census_tra":"671700","tract_ce_3":"41.76865798","tract_crea":"","tract_ce_2":"-87.65663877","shape_len":"7954.94264667"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6587619154503,41.76498472966637],[-87.65896728480699,41.76498085038825],[-87.65897067167396,41.76512426785887],[-87.65897820969201,41.76543620196875],[-87.6589918214474,41.76599941171741],[-87.65900938793132,41.7667232137978],[-87.65901355075778,41.76680098008743],[-87.65901889231367,41.766900743356594],[-87.65903877987638,41.767640969845864],[-87.65905349830834,41.76818464674481],[-87.65906230486728,41.76850995258562],[-87.65906569607333,41.76862228313915],[-87.65907006190741,41.76876686408206],[-87.65907805966569,41.76907910228747],[-87.65908892642001,41.769503352352686],[-87.65911042972597,41.77034144960341],[-87.65911355632439,41.77044181453186],[-87.65911748081889,41.770567785683866],[-87.65913856850405,41.77132659762013],[-87.65913991063576,41.77137325853191],[-87.65915254410525,41.77181519864488],[-87.65916105486535,41.77211291550631],[-87.65916633251315,41.77226256164254],[-87.65817888409181,41.772276855038186],[-87.65800340464698,41.77227941045908],[-87.65794837168497,41.772280212111006],[-87.65775731109848,41.77228299389626],[-87.65694033870945,41.77229525641247],[-87.6568577348481,41.77229634857309],[-87.6567375184139,41.772297937627414],[-87.6565726681607,41.772300116568125],[-87.65573977876278,41.7723129902991],[-87.65552280070342,41.77231568960117],[-87.65521115550185,41.772319558662694],[-87.65430967308932,41.772332947172636],[-87.6543061772837,41.77216714663978],[-87.65429943651309,41.771878710147725],[-87.65429900358758,41.771860182221076],[-87.65428689580868,41.77142664914158],[-87.65428473797408,41.77134466426938],[-87.65427402202732,41.77096572342625],[-87.65426539700884,41.77063229534837],[-87.65426142068745,41.77051436260724],[-87.65425735485158,41.77039379590771],[-87.65422529315428,41.76917640106125],[-87.65421657396986,41.7688453324166],[-87.65421109930605,41.768692777784224],[-87.65420682820883,41.76857375404812],[-87.65418399007035,41.76768756773734],[-87.65416559165917,41.76697127957991],[-87.65416344745805,41.76687207123485],[-87.65416110819716,41.76676386647477],[-87.65414350615573,41.76611811137691],[-87.65411569749986,41.76505710349442],[-87.65430552546397,41.76505430864444],[-87.65472186283169,41.7650466774869],[-87.6551796277669,41.76503828522092],[-87.65532796733126,41.765035118093685],[-87.65550989206632,41.765031233151895],[-87.65593383602352,41.76502518751866],[-87.65635939372389,41.76501911744683],[-87.65653976726121,41.76501626429287],[-87.65671082881616,41.765013558544155],[-87.65716165901769,41.76500574378736],[-87.65719300563964,41.765005200482],[-87.65735045750435,41.76500350097665],[-87.65753525722953,41.76500150602003],[-87.65776151648146,41.76499930532074],[-87.65796779587859,41.76499729848093],[-87.6587619154503,41.76498472966637]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3475765.13627","perimeter":"0.0","tract_cent":"1162069.22791965","census_t_1":"17031660100","tract_numa":"9","tract_comm":"66","objectid":"439","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864130.54392834","census_tra":"660100","tract_ce_3":"41.78283687","tract_crea":"","tract_ce_2":"-87.68134948","shape_len":"8043.70014852"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67912332519052,41.78656407367616],[-87.67908951323972,41.78535448598753],[-87.6790854820741,41.785210044447346],[-87.67907257410012,41.784721487129964],[-87.67906119956342,41.78426243991027],[-87.67902331860677,41.782849256971815],[-87.67898836342023,41.78155409465436],[-87.67897519320923,41.78104632575082],[-87.67894585646074,41.78104684472239],[-87.67875100560185,41.780332904545695],[-87.67848523599672,41.77924734682086],[-87.6785411501137,41.77924687873333],[-87.67890738535785,41.779242165182495],[-87.67897803811204,41.77924122896117],[-87.67902471826275,41.779240610346264],[-87.67911959442866,41.779239352876644],[-87.67917505441972,41.779238618167845],[-87.67929880683265,41.779237265908826],[-87.67943446374959,41.77923693080103],[-87.67959824396343,41.779236526146114],[-87.67985399840323,41.779233782435256],[-87.67998990321824,41.779230768278666],[-87.68020301648852,41.77922819292723],[-87.68047782392958,41.779223003951266],[-87.68059597633827,41.77922071148211],[-87.68082472642666,41.77921633025715],[-87.68095915527014,41.779214239630534],[-87.6810914276713,41.77921300736808],[-87.68123364263516,41.77921168155084],[-87.68146912831797,41.77920832522044],[-87.68213635028938,41.77919877190252],[-87.68231703527081,41.779196466284844],[-87.68246694917475,41.77919455302712],[-87.68274277945406,41.77918966629938],[-87.68295458558433,41.77918584350812],[-87.68321045142115,41.77918292829685],[-87.6833910336238,41.77918502033475],[-87.68363935062678,41.77921601523951],[-87.68364376326704,41.77935478483859],[-87.68364801869147,41.77951436215374],[-87.68365190271643,41.77965821283478],[-87.68365247500158,41.77967942891362],[-87.68365387028217,41.77973116674255],[-87.68365580996343,41.77980310592628],[-87.68365994527741,41.77995642555986],[-87.6836639538025,41.78010414611327],[-87.68366632647272,41.780192361127355],[-87.68366987473503,41.78032756509334],[-87.6836730981113,41.78045129607219],[-87.68367542877846,41.78054011458787],[-87.68367759931476,41.78062289475119],[-87.68367986433309,41.780710917047855],[-87.68368267850278,41.78081710967017],[-87.68368526132842,41.780917236094204],[-87.6836908822722,41.78105538376629],[-87.68369748173576,41.78121758575753],[-87.68370034891647,41.781347626576576],[-87.68370424599905,41.78152460062626],[-87.68370773533452,41.78168381678983],[-87.6837114189466,41.7818274190214],[-87.6837141441546,41.78192790299064],[-87.6837179079248,41.78206360210626],[-87.68372126717658,41.782181186325346],[-87.68372478343552,41.782305084126016],[-87.683728099486,41.78242335416889],[-87.683731973755,41.782558971568605],[-87.68373509716277,41.78267090147577],[-87.68373971911974,41.78283313998874],[-87.68374158204996,41.78291095395423],[-87.68374346584521,41.782989643465854],[-87.68374864843577,41.78316637774672],[-87.68375439342537,41.783360047484216],[-87.68375895566153,41.78351106422952],[-87.68376278568401,41.7836401773808],[-87.68376715353625,41.783817757490475],[-87.68376981460914,41.7839536701434],[-87.68377349190854,41.784141510264256],[-87.68377943223568,41.784359468053566],[-87.68378532396606,41.78456041095222],[-87.68379383221207,41.784734474581306],[-87.68379476818717,41.78499063203134],[-87.6837992957211,41.78515600117992],[-87.68380175189405,41.785236806726324],[-87.6838306050637,41.78652872103305],[-87.68368560195643,41.78650977564587],[-87.68310222855656,41.78651645564183],[-87.68243755389763,41.78652406287065],[-87.68224832824615,41.78652622775867],[-87.68141227285787,41.78653710140026],[-87.68110803631909,41.78654136394185],[-87.68078080634278,41.78654594787917],[-87.68047302442154,41.786548829627435],[-87.6803035129084,41.78655041644816],[-87.68021372478937,41.78655125730892],[-87.68021358104164,41.78655125841269],[-87.68011614923155,41.786552170177956],[-87.68006368408402,41.78655266137918],[-87.67996283674286,41.78655382116023],[-87.67991150364105,41.78655444469325],[-87.67977375222405,41.78655611834222],[-87.6796718667745,41.78655724616565],[-87.679480599261,41.786559595209226],[-87.6791510141409,41.786563726128875],[-87.6791342061897,41.78656393695291],[-87.67912332519052,41.78656407367616]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7057488.42571","perimeter":"0.0","tract_cent":"1157428.54390456","census_t_1":"17031660300","tract_numa":"32","tract_comm":"66","objectid":"440","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864040.99751232","census_tra":"660300","tract_ce_3":"41.78268645","tract_crea":"","tract_ce_2":"-87.69836621","shape_len":"10628.5667995"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70290275241058,41.778976233453534],[-87.70313675400799,41.77897328038571],[-87.70313835163313,41.77912585550343],[-87.70314231471906,41.77927903608607],[-87.70314964524566,41.779443911563234],[-87.7031551140597,41.77959695055806],[-87.70315826873177,41.77971661912589],[-87.70316183272747,41.77989734994984],[-87.703163952688,41.78000485615826],[-87.70317019188543,41.78019144754394],[-87.70317374519226,41.780307852575014],[-87.70317469136833,41.780344713917444],[-87.70317645222617,41.78041333066893],[-87.70317951978767,41.780538158015496],[-87.7031841746583,41.780680612436896],[-87.70318770579529,41.78079527910006],[-87.70319112963236,41.78090645113663],[-87.70319483874286,41.78103690779465],[-87.7032013940467,41.781250696835905],[-87.70320498489012,41.78136372656889],[-87.70320881959412,41.781500084137555],[-87.70321139834977,41.78159620346257],[-87.70321408124211,41.781700336695785],[-87.703216871422,41.78180864184246],[-87.70322147022445,41.781979307265594],[-87.70322526364785,41.78210490696092],[-87.70322744013504,41.78218219821354],[-87.70323283159857,41.78235429500559],[-87.70323565068084,41.78244459773143],[-87.70324605884782,41.78260746854641],[-87.70325062579651,41.78267893277143],[-87.70324587125198,41.78284998595565],[-87.70325051331778,41.783005009111776],[-87.70325493463079,41.78315262146075],[-87.70326003783627,41.78334293874946],[-87.70326288725896,41.78346760017715],[-87.70326666020577,41.783621520832284],[-87.70327169734537,41.78376990494456],[-87.7032785796873,41.78396950768015],[-87.70328095102008,41.78404188769125],[-87.70328649704227,41.78420945719038],[-87.70329110853889,41.784348892557944],[-87.70329516202652,41.78442690237545],[-87.70329962402191,41.784512773537664],[-87.70330262329927,41.784633374208035],[-87.70330560687555,41.78475183424147],[-87.70331025287486,41.78493644083995],[-87.7033141332854,41.785090636473385],[-87.70331844987105,41.785256497737294],[-87.7033211897511,41.785345509889964],[-87.70333692620189,41.78578879965969],[-87.70334022775161,41.78590089465486],[-87.70334872788678,41.78624839992083],[-87.7023316383525,41.7862622675338],[-87.70212779510402,41.78626612009712],[-87.7018657301786,41.78627107245741],[-87.70116440175812,41.78628148564244],[-87.70091147612027,41.78628624297259],[-87.7006993738871,41.78629023222563],[-87.69997441915982,41.786301880181554],[-87.69969082538458,41.78630732141135],[-87.69941447620866,41.78631262298931],[-87.69868161057967,41.78632328607341],[-87.69847143882477,41.78632747891717],[-87.69816130825495,41.78633366545526],[-87.69806819598475,41.7863350655712],[-87.69743093362199,41.78634452670683],[-87.69725407133467,41.786347249083974],[-87.69679110053335,41.78635437512022],[-87.69636526297303,41.78636002814825],[-87.6960337417923,41.786366545890026],[-87.69565429061653,41.78637400412456],[-87.69507096903958,41.7863830866254],[-87.69481526595186,41.78638579255752],[-87.69439423785765,41.78639024709293],[-87.69378088557754,41.786402998022865],[-87.69359512574917,41.78640707442582],[-87.69359238589489,41.78631004215972],[-87.69358547233799,41.786098144367365],[-87.69358151491942,41.78595470071908],[-87.69357442106258,41.78569758092358],[-87.69356401386463,41.78532075916196],[-87.69356216455779,41.78524860143216],[-87.69355909481624,41.78510741796473],[-87.69355611281497,41.78497216265301],[-87.69355316153522,41.784848570750135],[-87.69354916905246,41.78469324902986],[-87.69354469317456,41.7845841914575],[-87.69354037321028,41.78447892571645],[-87.69353682971936,41.784359584432],[-87.69353411536721,41.78427117566211],[-87.69352980486022,41.784129408684365],[-87.69352617333995,41.784011548820075],[-87.6935222523568,41.78387486094615],[-87.6935207151867,41.78374180908561],[-87.6935172001586,41.78358273031301],[-87.6935131548022,41.783458555984964],[-87.69351064049435,41.783331591002565],[-87.6935070787581,41.78315508569912],[-87.69350409531387,41.783031054490515],[-87.69350041429095,41.78284442207248],[-87.69349700651894,41.78276001306582],[-87.69349247038737,41.7826476669079],[-87.69348795284722,41.78251940093256],[-87.6934842899808,41.78240101916973],[-87.69348106026098,41.782283325890155],[-87.6934774867835,41.78214861607528],[-87.69347360003644,41.782001088662525],[-87.69347065634625,41.781876755777674],[-87.69346737245888,41.781738699528],[-87.69346390518368,41.78162646605556],[-87.69345962072377,41.781496856651046],[-87.69345541014852,41.78136719276913],[-87.69345246478952,41.781220905511425],[-87.69345014872526,41.781055576356216],[-87.6934447350582,41.78093935362618],[-87.69343975467066,41.780832435091064],[-87.693436078596,41.78066745510761],[-87.69343403931013,41.78052592023292],[-87.69343132111787,41.78038998020762],[-87.6934271961687,41.78023696283371],[-87.69342366192527,41.78011303826481],[-87.69341919890115,41.77997190179456],[-87.69341511502955,41.779847946715336],[-87.69340987848679,41.77967398416838],[-87.69340811344433,41.779591532712686],[-87.69340647354072,41.779514933337595],[-87.69340368503406,41.77938607317641],[-87.69339635752232,41.77922329569011],[-87.69339234976708,41.779115772482704],[-87.69360769365788,41.779112296907215],[-87.69360820152488,41.779112288758064],[-87.69378303931401,41.779109529956465],[-87.69392329329358,41.77910781334387],[-87.69421795237388,41.77910443088727],[-87.69445889938868,41.779101160911814],[-87.69461101640003,41.779098711388585],[-87.69490230216768,41.77909402052424],[-87.69515283040081,41.77908948480121],[-87.6953889765288,41.77908596638779],[-87.69566882698257,41.779082305876464],[-87.69582922319242,41.7790804492778],[-87.69603099089828,41.779078113387435],[-87.69624063252758,41.77907428153289],[-87.69645055982379,41.77907121928193],[-87.6967028750726,41.779067623145025],[-87.69704678555571,41.77906244318645],[-87.69740086348985,41.779057108815564],[-87.69761298820596,41.77905427614735],[-87.69784187196106,41.77905104181941],[-87.69814014193403,41.77904583828161],[-87.69826640080953,41.779043727783375],[-87.69840203380873,41.77904146038828],[-87.69863919129736,41.779039450244575],[-87.69879881084682,41.77903695649045],[-87.69901248632564,41.77903300464198],[-87.6991627957952,41.77903026687648],[-87.69938539333064,41.77902872367819],[-87.6994852734438,41.7790269734212],[-87.69975700237639,41.779022211466575],[-87.6998903947785,41.77902102602879],[-87.70008891693277,41.77901822355817],[-87.70030306791014,41.77901440941902],[-87.70056040882466,41.77901044802481],[-87.70070036674485,41.77900781698682],[-87.70083814719523,41.779005226480734],[-87.70100735432715,41.779004566233375],[-87.70124156430104,41.77900031161436],[-87.70147808586674,41.77899579480186],[-87.7016676614953,41.778993050168935],[-87.70191831483166,41.77899025261007],[-87.70203998027077,41.77898889484202],[-87.70229336762986,41.778984331538325],[-87.70248371551243,41.77898134281385],[-87.70272194910456,41.77897798544507],[-87.70290275241058,41.778976233453534]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"12072142.1882","perimeter":"0.0","tract_cent":"1161140.65135843","census_t_1":"17031661000","tract_numa":"56","tract_comm":"66","objectid":"441","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856486.30451221","census_tra":"661000","tract_ce_3":"41.76187927","tract_crea":"","tract_ce_2":"-87.68496524","shape_len":"15947.5494235"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67836861990367,41.76111446631193],[-87.67815131699474,41.75765952189084],[-87.67853989599014,41.75765410575161],[-87.67858798381371,41.757653435211104],[-87.67906082466727,41.757649268338206],[-87.67931603094489,41.75764694765998],[-87.68023105657704,41.7576346577499],[-87.68120060450157,41.757621983955154],[-87.6813146286968,41.757627090591086],[-87.68145613264853,41.757633039106445],[-87.68153947804092,41.75763659929925],[-87.6815995423224,41.75763179445943],[-87.68171096090212,41.75762282163737],[-87.68175195843779,41.75762132743268],[-87.68199602753121,41.757612431442844],[-87.68266544591825,41.757604561165756],[-87.68273279939797,41.75760391346968],[-87.68281939901134,41.757602688629014],[-87.68305285203314,41.75759955534632],[-87.68305308076937,41.75759955197561],[-87.6832487323544,41.75759688574895],[-87.68335235894918,41.75758821000966],[-87.6834802858042,41.75757761339661],[-87.68382751366794,41.75758163506579],[-87.68410303519568,41.75756363911979],[-87.68454143407494,41.75756748769969],[-87.68480712819076,41.757570016852654],[-87.68563426042205,41.75755067002524],[-87.68639996745469,41.75753474480916],[-87.68656227949118,41.75753201062323],[-87.68669743252612,41.75752988682241],[-87.68668185366558,41.75747756926368],[-87.68674584504208,41.75745146662614],[-87.6869597679016,41.75744767650999],[-87.68736294645927,41.75744582728908],[-87.68780782030899,41.757443525396695],[-87.68797913304692,41.75744654573634],[-87.68816884924193,41.757441779836284],[-87.68828515780783,41.75744757845784],[-87.68840191763822,41.75745406557091],[-87.68851820908176,41.75746157905086],[-87.68863449368502,41.757469778725344],[-87.68876905127513,41.75748322581909],[-87.68910800915006,41.75748958639883],[-87.68954416820294,41.75748825748289],[-87.68977385318799,41.75747239262737],[-87.6899756374771,41.75745191131377],[-87.69008109924367,41.7574428967412],[-87.69017507359901,41.75743724814847],[-87.69190575105492,41.75740747380614],[-87.69288309224449,41.75739371580172],[-87.69291767556028,41.75806248982852],[-87.69285085892298,41.75805525661208],[-87.69285122677218,41.75843294357552],[-87.69288922079976,41.75918294512888],[-87.69288616072845,41.759350298510604],[-87.69289206962067,41.75960385024843],[-87.69289664136002,41.75980020323024],[-87.69290310553366,41.76004214963857],[-87.69290816751611,41.76022975100936],[-87.6929130721945,41.76041109448505],[-87.69291766959314,41.76058272140794],[-87.69292093661288,41.76070387317103],[-87.69292643065842,41.76089174806526],[-87.69292865004498,41.76096764371483],[-87.69293635059753,41.76126220525549],[-87.69294160425393,41.761463721270346],[-87.69294734822346,41.76167122259129],[-87.69295410790592,41.7618945367502],[-87.69295946824163,41.76207058620765],[-87.6929662814712,41.762277462276224],[-87.69297256824407,41.762474620571815],[-87.69297551028284,41.76256580297394],[-87.69297869437149,41.762716140437355],[-87.6929853878848,41.76303216961587],[-87.69299368772312,41.76324072795874],[-87.69299906232972,41.76341167305141],[-87.69300322743187,41.76359367093496],[-87.69300866721062,41.76383179689118],[-87.69301529553852,41.764027804428814],[-87.69301666563838,41.76408262921884],[-87.69302030390381,41.76422822125685],[-87.69302529790177,41.76435635309241],[-87.69302892355975,41.764539713503616],[-87.69275437792088,41.764544693668974],[-87.69255215781762,41.764547847112524],[-87.69241860276111,41.76454996254199],[-87.69230869387493,41.76455170315276],[-87.69203333558195,41.76455601184194],[-87.69180384379874,41.76455923430186],[-87.69159282795353,41.764562196708525],[-87.69141069958378,41.764564856620204],[-87.69120371499902,41.76456793112317],[-87.69109388045075,41.76456956258718],[-87.6907335821526,41.76457490267979],[-87.69058369432527,41.764577269033],[-87.69016372746383,41.764583898685295],[-87.68994101023208,41.76458772863259],[-87.68962440316467,41.76459320041301],[-87.68935966863341,41.76459761682693],[-87.68911888330432,41.7646016331546],[-87.68884092164714,41.76460598710331],[-87.6885246145299,41.76461077118528],[-87.68813641463096,41.764618502576255],[-87.68782913058487,41.76462462111921],[-87.68755344111105,41.764628999812174],[-87.68751311341303,41.76462964472014],[-87.68726777953557,41.76463356848032],[-87.68691291509087,41.764638102482685],[-87.6866339699281,41.764641665901415],[-87.68630658702146,41.76464701272076],[-87.68629588163286,41.764647187891946],[-87.68604079451674,41.764651360916005],[-87.68568845424257,41.76465805387013],[-87.68547814294512,41.764662048282474],[-87.68538661983676,41.7646635354968],[-87.68523973579916,41.764665945297764],[-87.68505214092708,41.76466900337946],[-87.68486495050907,41.76467200855159],[-87.68446657894683,41.7646795068426],[-87.68428957711951,41.764682837834656],[-87.68398684265432,41.764686533489225],[-87.68386522172565,41.764688015134084],[-87.68375603460679,41.76468934521064],[-87.68324268187567,41.76470221449643],[-87.68324801480479,41.76492349706639],[-87.68325390229319,41.765128227771655],[-87.68325975288323,41.76533298542925],[-87.68327059591377,41.765711321437124],[-87.68327648019005,41.76591638141151],[-87.6832866944666,41.766273500107985],[-87.68329351823265,41.76651651520501],[-87.68330217123558,41.76682467056198],[-87.6833054796896,41.76695446722119],[-87.68330904555535,41.76709507787491],[-87.68331371490659,41.76727889004551],[-87.6833180051865,41.76744941765539],[-87.68332426720691,41.76769333898431],[-87.68332900249557,41.76787857826975],[-87.68333144117842,41.76797398418759],[-87.68334341459824,41.768331989235044],[-87.68306953596944,41.768336149214115],[-87.68276741306592,41.7683393236722],[-87.68202663333432,41.76834872072767],[-87.6816877227103,41.768353018616985],[-87.6814541941958,41.76835526140224],[-87.68120739461277,41.76835762048589],[-87.68080781511266,41.768361933370585],[-87.68036268558883,41.768366736282054],[-87.68018942146333,41.76836870920982],[-87.6800636752144,41.76837014086291],[-87.6799168829485,41.76837183112236],[-87.67978871513507,41.76837329727617],[-87.67959085878633,41.76837487555797],[-87.67936301777299,41.76837669282232],[-87.67904572985113,41.76838037079786],[-87.6788708866568,41.76838239696064],[-87.67883859782098,41.768382771213524],[-87.67873094808394,41.768384018542],[-87.6786708654723,41.76838471463591],[-87.67862000357837,41.768385304075245],[-87.67835603344726,41.76838836216399],[-87.67845088009763,41.76753316837759],[-87.67845122969594,41.76673286431989],[-87.67835077127235,41.76593301460577],[-87.6785510534453,41.76475603717204],[-87.6785401603642,41.76384499511255],[-87.67848255095976,41.76293184357473],[-87.67848247834593,41.762930693847395],[-87.67842617444269,41.762032763441425],[-87.67836861990367,41.76111446631193]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14256507.8222","perimeter":"0.0","tract_cent":"1137448.64781222","census_t_1":"17031640300","tract_numa":"74","tract_comm":"64","objectid":"443","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1863481.2066064","census_tra":"640300","tract_ce_3":"41.7815318","tract_crea":"","tract_ce_2":"-87.77163321","shape_len":"16008.6816782"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76622577322557,41.777962768089054],[-87.76651597422195,41.777948447954785],[-87.76660906868999,41.77795036910985],[-87.7668200722865,41.777954722976],[-87.76705083439656,41.77794971342417],[-87.767260472228,41.77794545005862],[-87.76747586992214,41.777940748149256],[-87.76771942086528,41.777936458875416],[-87.76782469281183,41.77793479539125],[-87.76791940664266,41.77793329939299],[-87.76813927811443,41.77792848104236],[-87.7683645030344,41.77792357882541],[-87.76863926422166,41.77791809637137],[-87.76879375007216,41.77791515080155],[-87.76905229460806,41.77790899572569],[-87.7693212149541,41.777902592975636],[-87.76953877635967,41.77789778804822],[-87.76970974986415,41.77789599243416],[-87.76997485747299,41.77789177668891],[-87.77014562526944,41.777888305394555],[-87.7702730138266,41.777885842464485],[-87.77040153690808,41.77788335750924],[-87.77058812000622,41.77787919272476],[-87.7706878547921,41.77787696627638],[-87.77098200141968,41.77787247877459],[-87.77123451330023,41.77786638722916],[-87.7714956439894,41.777862371627755],[-87.77165691667436,41.77786063187863],[-87.77188009461187,41.77785497152533],[-87.77209541077988,41.77785113900527],[-87.77225161045317,41.77784918510515],[-87.77247287021945,41.77784485921344],[-87.77271826167082,41.777839603429925],[-87.77288818815046,41.77783596368577],[-87.77306731273107,41.77783272091522],[-87.77329858099081,41.77782846968413],[-87.77347686365464,41.777825112398844],[-87.77363850124382,41.77782178351951],[-87.77393717643722,41.777816358788996],[-87.77404371379062,41.777814423806646],[-87.77418181636273,41.77781191511867],[-87.77435423795234,41.777807979085544],[-87.77456142274535,41.77780322392898],[-87.77477479369892,41.77779959619506],[-87.77494845599043,41.77779632393406],[-87.77516238565782,41.77779172149934],[-87.77536051005764,41.77778745848975],[-87.77556871339158,41.77778361208212],[-87.77571861475967,41.77778074471344],[-87.77591460803946,41.777777057959064],[-87.77607635278905,41.77777402804217],[-87.77638052187157,41.77776766502258],[-87.77650021192184,41.777765160883554],[-87.77670239988747,41.77776161230699],[-87.7768869139009,41.77775836279804],[-87.77701965284089,41.7777559866332],[-87.7771990331061,41.777752848429714],[-87.77741816313002,41.777748832018666],[-87.77760131486953,41.77774619909862],[-87.77782238109475,41.777743020884266],[-87.77805867564051,41.777738290398986],[-87.77824928011285,41.77773446384338],[-87.77845081227655,41.77773041532112],[-87.7786236691316,41.7777269689556],[-87.77882421775068,41.777722136196886],[-87.77899367080897,41.77771805208502],[-87.77911885768528,41.77771560961146],[-87.77929714077315,41.777712133797095],[-87.77948231753095,41.77770852600726],[-87.77971340398275,41.77770395938578],[-87.77985186515993,41.777701223320555],[-87.78004396655385,41.77769814113636],[-87.78024387812478,41.77769493321981],[-87.78047709413215,41.777689990563225],[-87.78064411689199,41.77768707374274],[-87.78076577959509,41.77768515012873],[-87.78090292419988,41.77768202253662],[-87.781265474077,41.77767583645475],[-87.78127056390976,41.77783302479836],[-87.78127758385045,41.77803619163634],[-87.78128116091543,41.778126277031646],[-87.78128367428438,41.77818957239603],[-87.78129079889347,41.77837199281535],[-87.78129773340996,41.77856226128744],[-87.78130276343033,41.77869971972308],[-87.78130954686154,41.77888598050565],[-87.78131541125839,41.77904611113253],[-87.7813243140893,41.7792905337959],[-87.7813308699894,41.77950748516206],[-87.78133750839312,41.7797271329159],[-87.78134409911175,41.779907712038],[-87.7813539652816,41.78017659099741],[-87.78136653150257,41.78051977109143],[-87.78137654715684,41.780792657140815],[-87.78138409453273,41.78099851609033],[-87.78139169080403,41.78120722906322],[-87.78139792199974,41.78134194369028],[-87.78140341333643,41.78146066647588],[-87.78141227033143,41.78169339809942],[-87.78142067838331,41.78191435451619],[-87.78142887313892,41.782130260390474],[-87.78143689455284,41.782340731713056],[-87.78144423064282,41.78253278549515],[-87.78145443656373,41.782800650566664],[-87.78146266111807,41.783017379838206],[-87.78146869099432,41.78317667412781],[-87.78147769775741,41.78341460684128],[-87.78148531279969,41.78362974146793],[-87.78148699961228,41.7836750033117],[-87.7814941768365,41.783867569467134],[-87.78150736092815,41.78418425034286],[-87.78150957000591,41.78424018945819],[-87.78151886890572,41.78447564021374],[-87.78152688818747,41.78467782365795],[-87.78153568671503,41.78490040068947],[-87.78153919598994,41.78501099624578],[-87.78126297359917,41.78501426890573],[-87.78092870490572,41.785020957275556],[-87.78071856304463,41.78502518083141],[-87.78058107594599,41.7850279396197],[-87.78047311072761,41.78503009222246],[-87.7803173470076,41.785033330809014],[-87.7800990436575,41.78503786905591],[-87.7799192713297,41.78504161388989],[-87.7797474942523,41.78504517687688],[-87.77954410395607,41.785049410784254],[-87.77936455143615,41.7850531280922],[-87.77915541003117,41.78505679542254],[-87.77910351257543,41.78505770562823],[-87.77894355449168,41.785060510197894],[-87.77873209837283,41.785064676300976],[-87.77856817024258,41.78506791893096],[-87.778373033402,41.78507177897554],[-87.77816308036317,41.78507592384899],[-87.77795116806621,41.78508021117544],[-87.77787898987188,41.78508167098506],[-87.77769117105198,41.785085470300736],[-87.77741813901152,41.78509106505721],[-87.77722248779178,41.785095030429964],[-87.77702738652937,41.785098998132575],[-87.77685612260385,41.7851025046689],[-87.7766599460349,41.785106028548995],[-87.776450635583,41.78510978810681],[-87.77623187806839,41.785114462799015],[-87.77604454996083,41.785118439357795],[-87.77585696494175,41.78512244153292],[-87.77565405028324,41.78512678063203],[-87.77544121677025,41.7851300747512],[-87.77519514111138,41.78513388262539],[-87.77501324244861,41.78513752684715],[-87.77480358225768,41.78514172188907],[-87.7746084809876,41.78514565804004],[-87.77437439648335,41.78515033725512],[-87.7742198380139,41.785154013896644],[-87.77404304387285,41.785158219855624],[-87.77384820013108,41.785162046197065],[-87.77366058084748,41.78516574274575],[-87.77345066456319,41.78516985174169],[-87.77316248798036,41.785175499789055],[-87.7730005876781,41.785179083007115],[-87.77281093296511,41.78518328032599],[-87.77261579540873,41.78518710314334],[-87.77239076875367,41.78519153272723],[-87.7721943850252,41.785195418997915],[-87.77197581487323,41.78519956508325],[-87.77177997406905,41.78520341652476],[-87.77154435616025,41.78520804954544],[-87.77141281358094,41.78521020594346],[-87.7713418155874,41.78521147696372],[-87.77116568855236,41.785214663348945],[-87.77114957791866,41.78521495499193],[-87.7706541444223,41.785223922991165],[-87.77055947681309,41.785225663502196],[-87.7704763787008,41.78522719112957],[-87.77028805573211,41.78523164712482],[-87.76991058180295,41.78523879777869],[-87.76971834256196,41.78524243778719],[-87.76951869548441,41.78524620577619],[-87.76944211057136,41.78524776105267],[-87.76933909261992,41.78524985282831],[-87.76908987421277,41.78525491295732],[-87.76892818256438,41.78525807048502],[-87.76875134479197,41.78526153755309],[-87.7686208986354,41.785264079794686],[-87.76846709141837,41.78526711077168],[-87.76829722168495,41.7852704193008],[-87.76811817375881,41.785273781492016],[-87.76795095611895,41.78527692115919],[-87.76771235603908,41.78528216831951],[-87.76745871943368,41.78528772512154],[-87.76723552218094,41.78529260807231],[-87.76702053960334,41.78529733898311],[-87.76695381923639,41.78529862316339],[-87.76689889842041,41.785299680077024],[-87.76666638800444,41.78530415485311],[-87.76647418365962,41.78530795426193],[-87.76621226391642,41.78531308323877],[-87.76594293545634,41.78531839457153],[-87.76577423771602,41.785321785016755],[-87.76567712743471,41.785323736389465],[-87.76534340104386,41.7853303197878],[-87.76497529486493,41.7853374182086],[-87.76360180205334,41.78536444714806],[-87.76324844311709,41.785371398565175],[-87.7620244099136,41.785392871539095],[-87.76202164873845,41.78532536103168],[-87.76201668577481,41.785229553568605],[-87.76201219546253,41.785142873237845],[-87.7620067113568,41.785018665755],[-87.76200126639009,41.78489533828516],[-87.76199254092325,41.784688704290886],[-87.76198514322233,41.78450597971117],[-87.7619768441824,41.78429262429697],[-87.76196957324387,41.7841038903254],[-87.7619621590926,41.78391477170792],[-87.76195551857089,41.78375002573532],[-87.76194772207036,41.78355607469302],[-87.76193767918288,41.78330623913978],[-87.7619315515589,41.78315807152639],[-87.76192138031995,41.78291196728561],[-87.76191177892593,41.78269254043444],[-87.76190091745086,41.782420911050586],[-87.76189067603266,41.78216212749939],[-87.76188174537133,41.781937380017034],[-87.76187279717911,41.78172196332377],[-87.76186265400591,41.7814777798907],[-87.76185658209124,41.78133575973064],[-87.76184708267671,41.78111732126929],[-87.76183781935464,41.78090525101879],[-87.7618288782489,41.78069823132202],[-87.76182066312778,41.78049203906701],[-87.76181245561051,41.780284995560685],[-87.76180201881682,41.78002346691116],[-87.76179666043909,41.779885099904575],[-87.76178722559713,41.77964146932039],[-87.76177558815294,41.77942433741645],[-87.76176202370448,41.77919300789233],[-87.76175238084122,41.7789866161007],[-87.76174481346163,41.778790306203774],[-87.7617429914905,41.778743424515135],[-87.76173721212983,41.77859328261308],[-87.76173401722518,41.7785103068354],[-87.76173125376378,41.778438529393995],[-87.7617233767784,41.77823560417605],[-87.76171488694926,41.77805330891449],[-87.76198732645301,41.778048136535325],[-87.76217709185264,41.77804408576394],[-87.76230972612478,41.77804123320127],[-87.76250917245694,41.77803695447096],[-87.76294712046014,41.77802726603062],[-87.76307649213895,41.77802440379395],[-87.76340914505599,41.778018864433456],[-87.76368917860607,41.77801427070787],[-87.76394787125494,41.778010037064796],[-87.76416840868637,41.7780054686441],[-87.76429425033098,41.77800286170291],[-87.76449090559464,41.77799908794734],[-87.7647656666042,41.77799369708715],[-87.76506085069491,41.77798807727661],[-87.76538768232032,41.77798162549026],[-87.765487751784,41.77797965000302],[-87.76583619666006,41.77797099828029],[-87.76622577322557,41.777962768089054]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7123579.50062","perimeter":"0.0","tract_cent":"1132185.80215533","census_t_1":"17031640500","tract_numa":"33","tract_comm":"64","objectid":"444","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861315.24364637","census_tra":"640500","tract_ce_3":"41.77568071","tract_crea":"","tract_ce_2":"-87.79097858","shape_len":"13378.1284366"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78125322637428,41.77724886049502],[-87.78125102760934,41.77718697747651],[-87.78124622849349,41.77708396081151],[-87.7812379445719,41.77690422419267],[-87.78123501848908,41.77677565281235],[-87.78123240611535,41.776660860424734],[-87.78122870028511,41.776584221735305],[-87.78122120918731,41.77642751359508],[-87.78121481774949,41.776292161396974],[-87.78120834553201,41.77613630887791],[-87.78120304612047,41.77600614864971],[-87.7811959223047,41.77585843780246],[-87.78118754538804,41.77568474392126],[-87.78118494357803,41.77559057443778],[-87.7811804016874,41.77547468820441],[-87.78117434287596,41.77534331681773],[-87.78116809814023,41.77519943051914],[-87.78116185660781,41.775029528252624],[-87.7811580288903,41.77494788444515],[-87.78115131966925,41.77480477418743],[-87.78114674404073,41.774705655458895],[-87.78114100604647,41.7745796369837],[-87.78113483576118,41.77443136013924],[-87.78113000922124,41.774314484563995],[-87.78112511852203,41.77414952850611],[-87.78111998321809,41.77401223685173],[-87.78189752195915,41.773997728474676],[-87.78223462445905,41.773995522910354],[-87.78227231309936,41.77399527612847],[-87.78250870931824,41.7739937288549],[-87.7828277738199,41.773988987148556],[-87.78288249642063,41.77398817385676],[-87.78355913312976,41.773978115429664],[-87.78391947868127,41.7739727570107],[-87.78514814389938,41.773950899352386],[-87.78523486647569,41.77394901860374],[-87.78528561271034,41.77394791790187],[-87.78575940940603,41.7739376402741],[-87.78595378157763,41.773934797493965],[-87.78600230211497,41.77393408763706],[-87.78600231861147,41.77393408771565],[-87.78606506697311,41.77393316981099],[-87.78623323910028,41.77393070972144],[-87.78695099602052,41.77392020773443],[-87.78820122606976,41.77390304083233],[-87.7882734018148,41.77390157587913],[-87.78829036490961,41.77390123153748],[-87.78843071678918,41.77389838294546],[-87.78986211595189,41.773869319411816],[-87.79050046007427,41.77385840172294],[-87.79054881285593,41.77385757499001],[-87.7908859814271,41.7738518066694],[-87.79088599022754,41.77385180643651],[-87.7913439099541,41.77384397121082],[-87.79215469152757,41.77383624906744],[-87.79223189627879,41.7738355133461],[-87.79247987882952,41.77383315048588],[-87.79275658545664,41.77382912829719],[-87.79285593347089,41.77382768430474],[-87.79335333969325,41.77382045273754],[-87.79351998479363,41.7738180294147],[-87.79354287791581,41.77381769651758],[-87.79368072208872,41.77381569171422],[-87.794108893565,41.77380869285452],[-87.79416868701384,41.77380771494101],[-87.7941774203261,41.7738075723319],[-87.79444939672081,41.77380312566864],[-87.79581683377191,41.77378085629383],[-87.79582479307221,41.773780726404],[-87.79583384536322,41.7737805788494],[-87.79588178447695,41.773779798157086],[-87.79648210638099,41.77377002366553],[-87.79656588614039,41.773768659317746],[-87.79742530507129,41.77375466025196],[-87.79827932590786,41.7737407786323],[-87.79897191098289,41.77372951623141],[-87.79975078598078,41.773715912457995],[-87.79994283470269,41.773712557158674],[-87.80080566869614,41.77369747947697],[-87.8008057054253,41.773698268908845],[-87.80080575027843,41.773699228525174],[-87.80081842380628,41.77396993237322],[-87.8008211173762,41.77405199952188],[-87.80079318521774,41.77408707946021],[-87.80077689897062,41.77413700516964],[-87.80077529439117,41.774202367030554],[-87.80077529436167,41.77420237059801],[-87.80078173531189,41.774349985502795],[-87.80078694302142,41.77446941426368],[-87.80079443691329,41.774640473955614],[-87.80079995564549,41.77476662741901],[-87.80080448013956,41.77486667850087],[-87.80080900365293,41.774966893960034],[-87.80081370936959,41.77507172041582],[-87.80081964830434,41.775204654792844],[-87.80082779901849,41.775380492866226],[-87.80083133865494,41.77543119626474],[-87.80083101383062,41.77547046517842],[-87.80082742859345,41.77551072421775],[-87.80082310254058,41.775559301645565],[-87.80081933421205,41.77560161641558],[-87.80082545767759,41.775747350238206],[-87.80082545797381,41.775747358746926],[-87.80082545922002,41.775747385372426],[-87.80083322634012,41.7759322427213],[-87.80083722380836,41.77602736778654],[-87.80084332181649,41.7761720215967],[-87.8008468415957,41.77625606789164],[-87.80085030478718,41.77633835784411],[-87.80088639144898,41.77656745504004],[-87.80088639143536,41.77656745668656],[-87.80086716511296,41.77679980830163],[-87.80086722662844,41.77680123589811],[-87.80087188180316,41.776947610538365],[-87.80087188178727,41.7769476124593],[-87.80089887863522,41.777291532438255],[-87.80048084909699,41.77731015904408],[-87.8002605679184,41.777315044260966],[-87.8000776363316,41.777319101027224],[-87.79969522670834,41.77731287936046],[-87.79959099754208,41.77731403709311],[-87.7995607241544,41.77731437340394],[-87.7993694521192,41.777316497546956],[-87.7990027678947,41.777323821456555],[-87.79897838038998,41.77732471710872],[-87.79890173309391,41.777327495400215],[-87.79866753515391,41.77733625775639],[-87.79843269043556,41.77734334259981],[-87.79800370706735,41.77735627349231],[-87.79749262651238,41.77737041159815],[-87.79722459900421,41.777377915502534],[-87.79684191125251,41.77738746304682],[-87.7964961468991,41.77739646833805],[-87.79622063569126,41.77740453867622],[-87.79596840153198,41.777411137611175],[-87.79582195511637,41.777414968557665],[-87.79560880205126,41.77741913038128],[-87.7955624942319,41.77741995893308],[-87.7954676675211,41.77742165530092],[-87.7953493631195,41.777423771302935],[-87.7952574140905,41.777425416207116],[-87.79498247559137,41.77743068707052],[-87.79476266390245,41.777434880887434],[-87.79473074824674,41.777435489791905],[-87.79469528374244,41.77743626564275],[-87.79450556338683,41.77744041645142],[-87.79428012141094,41.7774453963491],[-87.79409567275138,41.77744980201145],[-87.7938871815668,41.777454781662065],[-87.79384800546939,41.777455717379844],[-87.7936787385469,41.77745969749271],[-87.79359244735686,41.77746197550319],[-87.7934993834846,41.77746443238755],[-87.79332750845033,41.77746896944458],[-87.7931085921862,41.777473950272864],[-87.79291402429281,41.77747838631326],[-87.79268190680261,41.777483688706305],[-87.79249973440677,41.77748768867735],[-87.79225214524679,41.777492999421774],[-87.79189684036749,41.77750285127967],[-87.79168270085805,41.77751089835076],[-87.7914114614751,41.77752089803009],[-87.79124326057394,41.777524550540726],[-87.79101800038877,41.77752990882143],[-87.79079753914323,41.77753515265667],[-87.79061567067819,41.777537861253464],[-87.79042479100937,41.77753964880286],[-87.79024315568492,41.77754079366008],[-87.7900238291789,41.77754219907881],[-87.78981457541501,41.77754471981455],[-87.78962222369763,41.77754715989386],[-87.78949649238224,41.77754903465948],[-87.78930494372653,41.777551887458635],[-87.78908926796474,41.777555119619116],[-87.78893970305045,41.777557347398464],[-87.78875933780532,41.7775600330107],[-87.78859201031725,41.77756295003216],[-87.78832372374836,41.77756762698885],[-87.78808391708287,41.777571675846715],[-87.78784414682096,41.77757575181981],[-87.78757973594035,41.77758023165983],[-87.78737347726744,41.77758405172347],[-87.78710568930946,41.77758901086779],[-87.78688450489241,41.77759331041789],[-87.78671626962226,41.777596598828225],[-87.78653087349909,41.77760021751012],[-87.7863379233336,41.77760401919639],[-87.78615213508614,41.7776060179092],[-87.78598072496571,41.77760786143809],[-87.78585433450425,41.77760961930476],[-87.78561486336835,41.77761297853188],[-87.78537440213276,41.77761635998039],[-87.78514626083604,41.77761958016758],[-87.78493036585789,41.777622631131365],[-87.78467883137948,41.777626185493865],[-87.78451126496542,41.7776284038662],[-87.78421459556647,41.77763231020862],[-87.78409659781873,41.77763440812849],[-87.78389877130593,41.77763820984814],[-87.78376619468314,41.77763945118876],[-87.7837100958709,41.77763997647362],[-87.78351466446058,41.77764180595853],[-87.78331053150887,41.77764565881281],[-87.78308839424027,41.777649864162484],[-87.78289784223614,41.7776518603179],[-87.78265181699021,41.77765419401792],[-87.78248663146361,41.77765665054702],[-87.78230014231012,41.777659423441335],[-87.78214540194017,41.77766230362596],[-87.78188076507548,41.77766740045274],[-87.78168892634145,41.77766980007154],[-87.78142745803014,41.777673072387],[-87.781265474077,41.77767583645475],[-87.78125940452449,41.777488396816736],[-87.7812581970341,41.77739835051511],[-87.78125601873158,41.777327454764766],[-87.78125322637428,41.77724886049502]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"17692356.3136","perimeter":"0.0","tract_cent":"1150165.07281311","census_t_1":"17031650300","tract_numa":"84","tract_comm":"65","objectid":"445","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861186.18517888","census_tra":"650300","tract_ce_3":"41.77499649","tract_crea":"","tract_ce_2":"-87.72507062","shape_len":"18646.941407"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73706407510574,41.77120376998936],[-87.73717602842368,41.77120211052383],[-87.73717821008465,41.77122977451936],[-87.73718125290453,41.77129702568311],[-87.73719020403253,41.77166652363876],[-87.73719488088122,41.77180479178379],[-87.7372028209879,41.77203604059156],[-87.7372038371448,41.772072351040514],[-87.73720523132512,41.772122155530205],[-87.73722183704238,41.77275377355899],[-87.73722990770285,41.77303080643898],[-87.73723018279803,41.77304025347308],[-87.73725306031308,41.77383587585413],[-87.73725616172204,41.773946350285314],[-87.73728314064805,41.7748435331662],[-87.73728318009084,41.774844856123096],[-87.73728327552958,41.7748480899517],[-87.7373100280788,41.77575066351147],[-87.7373246570901,41.77610098053953],[-87.73734050443697,41.77666553121583],[-87.73734050908888,41.77666570193533],[-87.73734052186204,41.776666143833644],[-87.73735633589635,41.77723316799058],[-87.7373931549352,41.77835474772335],[-87.73739696510809,41.778486994882314],[-87.73732891632274,41.77848796572627],[-87.73687234435471,41.77849284114793],[-87.736445281525,41.77849819738965],[-87.73618567616315,41.7785015844202],[-87.73593985844626,41.778504791181845],[-87.73556039316516,41.778509156693374],[-87.73521282790857,41.778513165618705],[-87.73496620519492,41.77851591604095],[-87.73480300302705,41.77851780965217],[-87.73442900346929,41.7785218431428],[-87.73403509482094,41.77852599110546],[-87.73374492250434,41.778529388249396],[-87.73328276235952,41.778534797638635],[-87.73305044291611,41.77853726134604],[-87.73281852673325,41.778539726691456],[-87.73252624596311,41.778543382518926],[-87.73217487004149,41.77854777671256],[-87.73196073857626,41.778549894299196],[-87.73172842111099,41.778552135799416],[-87.73130381187865,41.7785571619473],[-87.73114020875241,41.778559098199594],[-87.73072689370557,41.778564450630654],[-87.73049500891462,41.77856746003462],[-87.73039929397041,41.77856832440796],[-87.73007523372237,41.77857125066748],[-87.72989731526384,41.77857285695508],[-87.72952966305449,41.778576331531035],[-87.72927949250955,41.77857836447433],[-87.72886348633749,41.778584359347434],[-87.72867678162059,41.778587049263244],[-87.72827828669418,41.77859148266192],[-87.72802807260385,41.77859419872469],[-87.72764467522518,41.778598846685],[-87.72725813579419,41.778603531675735],[-87.72681138661643,41.778608556142345],[-87.72665748314512,41.778610378048626],[-87.72642313145344,41.77861356900915],[-87.72598075579867,41.778619590868],[-87.7257812502789,41.77862193891383],[-87.7256415485136,41.778623607059465],[-87.72555054091386,41.77862467039716],[-87.72520352972948,41.77862870026752],[-87.72472098618694,41.77863430211467],[-87.72445515458195,41.77863692765851],[-87.72398310114893,41.778640880812375],[-87.72382508756519,41.7786422037324],[-87.72339867819247,41.77865190581033],[-87.72276009549746,41.77865823678329],[-87.72240377043873,41.778661767961275],[-87.72185455629918,41.778669713477086],[-87.72132520416739,41.778678667519834],[-87.72065595329526,41.77869060592465],[-87.72030760236548,41.778695502188484],[-87.71954209114344,41.77870625794453],[-87.71885220514591,41.77871752645776],[-87.71830604807181,41.77872774912404],[-87.71785438433731,41.77873456155154],[-87.71647453740214,41.77875536323923],[-87.71604520983163,41.77876329207094],[-87.71568421526923,41.778764370566776],[-87.71540203421002,41.77877075644274],[-87.71500616772475,41.77877971374169],[-87.71462903863532,41.77878866054063],[-87.71428677453248,41.77879395195907],[-87.71396870992984,41.77879900618624],[-87.71378382673404,41.77880194352085],[-87.71325216155155,41.77881954263828],[-87.71317685939427,41.77882203525034],[-87.71303216007804,41.77882682443301],[-87.71294550559068,41.778829692215254],[-87.71294545497707,41.77882969413737],[-87.71293728051096,41.77853710583687],[-87.71293250343781,41.7783599864903],[-87.71292546327388,41.77809898400678],[-87.71292203250485,41.77793190643676],[-87.712920979695,41.77788217574629],[-87.71291129192305,41.77742450840945],[-87.71290188313807,41.776980013520955],[-87.71289197416394,41.776533524908935],[-87.7128593219329,41.7751667095837],[-87.71285078279203,41.77481640132487],[-87.71283644458856,41.77425957442172],[-87.71282076722571,41.7733477015501],[-87.71282076446128,41.773347531937524],[-87.71280858568124,41.77317416507158],[-87.71280843356386,41.77317199488186],[-87.71278088231695,41.77184669269311],[-87.71277565851372,41.771675488531],[-87.71277564207968,41.771672553414035],[-87.71277479028592,41.77152218754991],[-87.71277484601254,41.77152218702763],[-87.71286559740963,41.771521275665094],[-87.71298413346875,41.77152008560083],[-87.71350166077208,41.771514887203594],[-87.71392330352218,41.771508098185414],[-87.71413874516371,41.77150462851635],[-87.71451103956609,41.77149842895819],[-87.71488332494914,41.771493161206706],[-87.71522344295042,41.771487305074245],[-87.71577340411298,41.77147783340272],[-87.71614385015813,41.77147321031078],[-87.71654436715582,41.77146747109362],[-87.71692348647626,41.77146060083469],[-87.71729987045627,41.77145600587338],[-87.7176729833392,41.77144998953813],[-87.71818502622732,41.77144173070279],[-87.71844013708544,41.771437690096754],[-87.71895185412235,41.771430520800365],[-87.71928300110426,41.77142592440729],[-87.71965965197234,41.771420252863365],[-87.72012411372873,41.771411916460295],[-87.72057763744128,41.77140377451267],[-87.72104395197175,41.77139849428705],[-87.7213751621143,41.771394935033264],[-87.72182132518917,41.77138463201512],[-87.72197918038653,41.77138263533579],[-87.72211147834149,41.771380961869845],[-87.72257606181493,41.77137395486959],[-87.72313653357789,41.7713654991777],[-87.72318755586373,41.7713646746327],[-87.72342409305618,41.771360851710625],[-87.72363347428467,41.77135847753132],[-87.72379248067128,41.77135727126025],[-87.72439555853549,41.771352497125136],[-87.7246248927601,41.77134899772115],[-87.72495470452743,41.77134599704043],[-87.72501319324664,41.77134531056571],[-87.72555725917914,41.77133892254506],[-87.72561574038879,41.77133786524328],[-87.72571033765749,41.771335978323535],[-87.72581989037226,41.77133427414385],[-87.7262336087307,41.77133060008498],[-87.72667997889029,41.771326634540074],[-87.72683620285058,41.77132444419315],[-87.72693310496247,41.771323085734345],[-87.72719785283552,41.77131943330297],[-87.72745288809608,41.771316697230056],[-87.72785979496426,41.77131233071912],[-87.72803628842739,41.77131043409426],[-87.72835481283549,41.771306979980494],[-87.72867070226474,41.77130304787758],[-87.7290163987774,41.77129874369296],[-87.72931370358225,41.77129465415965],[-87.72989010290982,41.771286699592984],[-87.73033625043385,41.771280540794194],[-87.73077584025941,41.77127513567918],[-87.73110326543252,41.77127219731104],[-87.73131627322883,41.77127028478955],[-87.7316789031987,41.77126625671696],[-87.73190946482497,41.77126471960523],[-87.73232733591719,41.77125982467343],[-87.7328130566336,41.77125413302906],[-87.73293664763834,41.77125261344418],[-87.73307618704636,41.77125089768329],[-87.73354459915946,41.771246074389495],[-87.73414911016826,41.7712398470575],[-87.73422203114475,41.77123909559404],[-87.73445235598327,41.771235411589025],[-87.73476294629444,41.771231533904654],[-87.73487603420624,41.77123012162057],[-87.73513102630578,41.771226872380865],[-87.73552618447042,41.77122151932988],[-87.7358573597867,41.7712175890965],[-87.73597830756337,41.77121646413811],[-87.73634562363367,41.77121304697487],[-87.73668526462343,41.77120937761368],[-87.73706407510574,41.77120376998936]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6181557.61191","perimeter":"0.0","tract_cent":"1148976.981248","census_t_1":"17031620200","tract_numa":"24","tract_comm":"62","objectid":"446","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1868654.12836265","census_tra":"620200","tract_ce_3":"41.79551269","tract_crea":"","tract_ce_2":"-87.72923371","shape_len":"12570.2168068"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72326167315627,41.796724594241],[-87.72325588852281,41.79654569081737],[-87.72324844213381,41.79630612979098],[-87.7232427738704,41.79611882944931],[-87.7232378151353,41.79593018816818],[-87.72323346955169,41.79576196764423],[-87.72322873994189,41.795580105961044],[-87.7232246155669,41.795434966069855],[-87.7232187386642,41.79523487620497],[-87.72321288651143,41.79505247999281],[-87.72320990733228,41.79495963201035],[-87.72320512186522,41.79478367022596],[-87.72319805189186,41.79453925345687],[-87.72319381159919,41.79439861383178],[-87.72318841793104,41.79421718766374],[-87.7231837637158,41.79406606237219],[-87.72317996959741,41.79394798288978],[-87.72317550362585,41.79380794552038],[-87.72317206203996,41.793672688652194],[-87.72316925226994,41.793562298400666],[-87.72316519298215,41.793363919582475],[-87.7231589507109,41.793204394892484],[-87.72342142106521,41.79320092471817],[-87.72364150683595,41.79319871750808],[-87.72377944970184,41.79319793303132],[-87.72383620489992,41.793197610113054],[-87.72407047435145,41.793196218291065],[-87.72424257867333,41.79319559412195],[-87.724388984723,41.79319420805363],[-87.72459190410505,41.793192286463785],[-87.72481807270304,41.79319052087556],[-87.72499014709287,41.793189181912425],[-87.725232049319,41.79318727928275],[-87.72550402127392,41.79318537525621],[-87.72561206143457,41.79318534448072],[-87.72575081976423,41.793185304006414],[-87.72597258903349,41.79318340310559],[-87.72613927609737,41.79318170462337],[-87.72637033152866,41.79317891897793],[-87.72650544358008,41.793177327561835],[-87.72670217041872,41.79317499109508],[-87.72683696289059,41.79317407763651],[-87.72707774508993,41.79317244567312],[-87.72729035934765,41.793169176654175],[-87.72743482337444,41.79316749626639],[-87.72760998438883,41.79316548358562],[-87.72775569749031,41.79316356239419],[-87.72795242245921,41.79316141587654],[-87.72806199928431,41.79316058709195],[-87.72831380699887,41.79315868186212],[-87.72842508744615,41.793156578473365],[-87.7286496865927,41.79315400150674],[-87.72883231239925,41.79315369999651],[-87.72896697041944,41.79315358493803],[-87.72917623475107,41.793151667224016],[-87.72928781716037,41.79315059753829],[-87.72954591451561,41.7931481219538],[-87.72965766543909,41.79314667874773],[-87.72988068748813,41.793144118255015],[-87.73002393876357,41.793142702669364],[-87.73013576430034,41.793141121901044],[-87.73034588278436,41.79313805366469],[-87.73051336791994,41.793136868675994],[-87.73074005174124,41.79313526455131],[-87.73088337658656,41.793133820836815],[-87.73101114869121,41.79313281681485],[-87.73113052040259,41.79313209793038],[-87.73124167712416,41.793131445638096],[-87.7313785481303,41.793129967480276],[-87.73159258658528,41.79312730170422],[-87.7317400254353,41.793126418820876],[-87.7318958015882,41.79312548664081],[-87.73204689263646,41.79312490542063],[-87.73227651738173,41.79312212784893],[-87.73250038218639,41.793119621564905],[-87.73262914971517,41.79311804464835],[-87.73282092871206,41.79311536995743],[-87.7329635342371,41.79311598167256],[-87.73311381035414,41.79311662615316],[-87.73332225679965,41.79311587638285],[-87.73348122614283,41.79311593816794],[-87.73364929986187,41.793114976986296],[-87.73383223293375,41.79311313260243],[-87.7340513955535,41.79311150437269],[-87.73419129384199,41.79311020495944],[-87.73432762737323,41.793108938381],[-87.73448379666654,41.79310645943115],[-87.73467260712223,41.793103576817856],[-87.73476546652078,41.793102740689314],[-87.73499650924757,41.793101254884874],[-87.73516751918481,41.79309997745989],[-87.73541477067913,41.793097021942515],[-87.73558011625703,41.79309504481447],[-87.73585704329086,41.793092670862514],[-87.73614867568033,41.7930902354735],[-87.73637125419052,41.793088044273475],[-87.73663949436826,41.793085129321604],[-87.7367336752847,41.793084102523665],[-87.7368679426583,41.793082638332415],[-87.73725141418949,41.79307864617253],[-87.73766547261094,41.793074317088475],[-87.7377912657492,41.79307319207781],[-87.73783891223644,41.793072765897165],[-87.73784867241034,41.793364625146054],[-87.73785142460805,41.79346343387172],[-87.7378408038531,41.79352135195459],[-87.73783402785926,41.793560080207314],[-87.73782292012527,41.79362108281546],[-87.73785908826831,41.79367547030954],[-87.73786484744988,41.793845646165465],[-87.73787946813987,41.7943956088259],[-87.73790026548045,41.795120209158696],[-87.73790510808726,41.79529038021965],[-87.73783679294797,41.79529174129316],[-87.73664938047736,41.795306848164266],[-87.73658198525335,41.79530787023336],[-87.73651503886501,41.79530992370331],[-87.73644807974203,41.79531334921284],[-87.7363811046971,41.79531848978156],[-87.73631412009168,41.79532465937012],[-87.73624803950773,41.79533220576307],[-87.73615992779337,41.79534272492056],[-87.73607226169675,41.79535461847197],[-87.735985038394,41.795368229439816],[-87.7358982603281,41.79538321507603],[-87.73581192394857,41.79539991757605],[-87.73572649264634,41.79541799713853],[-87.7356447343854,41.795435409675264],[-87.73556028951808,41.795445947450176],[-87.73541205291673,41.795464386022516],[-87.7354798150642,41.79562116318992],[-87.73549089506325,41.79596000336402],[-87.7354995938716,41.79629463236321],[-87.73550306213355,41.79642654094211],[-87.73550704476874,41.79658202536204],[-87.7355124865985,41.79675531243782],[-87.73538374218944,41.796756387198336],[-87.73507087761116,41.796760795709055],[-87.73490080192276,41.79676230836345],[-87.73478678240211,41.79676332249508],[-87.73463853455497,41.79676484804813],[-87.73441326479173,41.796767220802195],[-87.73428946630744,41.796768471332314],[-87.73412472845145,41.79677013471423],[-87.73398949252957,41.79677242050745],[-87.73381359550773,41.79677367066021],[-87.73367705346331,41.79677447942815],[-87.73344022706068,41.79677729215268],[-87.73306690671146,41.79678157158652],[-87.73238845267612,41.79678730043198],[-87.73205356769448,41.79675999876674],[-87.73196716655869,41.79679085581518],[-87.73183849820674,41.79679194154484],[-87.73138592472155,41.79679774896434],[-87.73123477039917,41.796800249973536],[-87.73102064020452,41.796803573213005],[-87.73075349268186,41.796805575137036],[-87.73062263569253,41.796806691932936],[-87.73037910104632,41.7968087699431],[-87.730204037846,41.796811034331476],[-87.73003675261046,41.79681295510024],[-87.72987016515721,41.79681476951936],[-87.72971120666692,41.796816486843575],[-87.72957579492353,41.79681794295528],[-87.72942729024099,41.79681910504713],[-87.72939287048769,41.7968193744358],[-87.72925275251508,41.796820470895845],[-87.729057636256,41.79682191457123],[-87.72884296797127,41.79682394110492],[-87.72877923081332,41.796824558789496],[-87.72872369529885,41.79682509720984],[-87.72851731388722,41.79682722190946],[-87.7281681867003,41.796830844118375],[-87.7281715218787,41.796983059918674],[-87.7281763496431,41.79714428484302],[-87.72817967401956,41.797256213055704],[-87.728181785271,41.797331065306096],[-87.7281858689219,41.79748122380097],[-87.728188679081,41.797587936523065],[-87.72819193325157,41.79771372438336],[-87.72819554491385,41.79785608962284],[-87.72820017269156,41.798034684810354],[-87.72820266491524,41.79812451847751],[-87.72820788599994,41.79831029858265],[-87.72746487717532,41.79860303428472],[-87.72675671365627,41.79888298788566],[-87.72604901213919,41.79916191015906],[-87.72598044943173,41.79918899055755],[-87.72554329974326,41.799362312872525],[-87.72548715912613,41.79938465674432],[-87.72528055442326,41.7994658922281],[-87.72480934455227,41.799653095641865],[-87.72420378806083,41.79989104019227],[-87.72359223768287,41.800132037591176],[-87.72336502623254,41.80022274437943],[-87.72336306549323,41.800167566674546],[-87.72335823012261,41.800031643929955],[-87.72335382309798,41.79991235410789],[-87.72334999386423,41.799794054471185],[-87.72334579334624,41.79965303098948],[-87.7233418410735,41.79949356721496],[-87.72333785110693,41.79933421245839],[-87.7233331299552,41.79917496386059],[-87.72332940776013,41.79905663788261],[-87.72332183923339,41.79881780382607],[-87.72331861647882,41.798717276920655],[-87.72331391530676,41.7985673760026],[-87.72331292834107,41.79853590421486],[-87.72330541326578,41.79828421315889],[-87.72329973256788,41.79808659429658],[-87.72329419195029,41.79789350424568],[-87.72328913736021,41.79772662471634],[-87.72328293937115,41.797521648396085],[-87.72327841492746,41.7973697552081],[-87.72327596786458,41.797287603482175],[-87.7232717570344,41.7971462253204],[-87.72326822157262,41.796962174593205],[-87.72326503441279,41.79684654081193],[-87.72326167315627,41.796724594241]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"442478.528309","perimeter":"0.0","tract_cent":"1171864.94954587","census_t_1":"17031601300","tract_numa":"2","tract_comm":"60","objectid":"457","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1882006.05471776","census_tra":"601300","tract_ce_3":"41.83167967","tract_crea":"","tract_ce_2":"-87.64491042","shape_len":"2659.35970378"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64579761728332,41.83075411890882],[-87.64610614504136,41.830750410884654],[-87.64611756695602,41.83105696996417],[-87.64612132619976,41.83126467831619],[-87.64612523720824,41.83147878225956],[-87.64612820394011,41.831640519659075],[-87.64613049805655,41.831777115271386],[-87.64613483892107,41.832035596560104],[-87.64613920972515,41.83223762817817],[-87.64614418457386,41.83246891728386],[-87.64614714561701,41.8325792545112],[-87.64568577769526,41.832584835880766],[-87.645545112113,41.83258650301218],[-87.64549032585465,41.832587151895325],[-87.64524576424392,41.832590049358025],[-87.64493080347567,41.83259435454277],[-87.64469025009006,41.8325976423025],[-87.64439662330257,41.83260137002355],[-87.64432697142851,41.832602245874426],[-87.64414986180732,41.83260447259639],[-87.64371396530616,41.832609979059086],[-87.64371151740495,41.83250203264296],[-87.64370576010599,41.83225899328826],[-87.64369971359744,41.83200533187517],[-87.6436943634615,41.83176877141322],[-87.64368928977544,41.83154409527644],[-87.64368383230828,41.831300481385014],[-87.64367832814499,41.83108173026176],[-87.64367331037944,41.8307814347812],[-87.64396965847769,41.830774968886374],[-87.64425503078323,41.83077368973156],[-87.64428240629725,41.830773430794515],[-87.64467219544453,41.830769742615956],[-87.64488964513029,41.83076620746064],[-87.6451802943805,41.83076148174614],[-87.64542014842799,41.830758609730694],[-87.64549080585972,41.83075776914779],[-87.64579761728332,41.83075411890882]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6989956.67209","perimeter":"0.0","tract_cent":"1151995.48199226","census_t_1":"17031620400","tract_numa":"32","tract_comm":"62","objectid":"447","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866543.2851664","census_tra":"620400","tract_ce_3":"41.78966147","tract_crea":"","tract_ce_2":"-87.71822002","shape_len":"10628.2717538"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71339583737539,41.79325790922743],[-87.7133676289313,41.79242726641972],[-87.71336189828918,41.79226086265972],[-87.71333761521329,41.79154618741536],[-87.71330649487294,41.790637316357014],[-87.71327580715426,41.78973119177477],[-87.71347282384782,41.789722306937534],[-87.71346880025737,41.78959961542366],[-87.71346719866361,41.78954129032469],[-87.71346445200358,41.789441959887874],[-87.71346248820979,41.78937175032711],[-87.71346001623601,41.789281971228],[-87.71345645113294,41.78915340939529],[-87.71345481605928,41.789094755070536],[-87.7134531799305,41.7890362105111],[-87.71344997572649,41.788919670615876],[-87.71344709547711,41.78881517990512],[-87.71344467915787,41.788727239772626],[-87.71344220246421,41.7886379546102],[-87.71343949226944,41.78853865152264],[-87.7134358892421,41.78841022668285],[-87.71343440485316,41.78835618329875],[-87.71343282162667,41.788298544907725],[-87.71342942188353,41.78817566462843],[-87.71342696856875,41.7880877242863],[-87.7134219873903,41.78790873583408],[-87.71341784358661,41.78775986939971],[-87.71341275278876,41.78766027902124],[-87.7134110080219,41.78759018039175],[-87.7134076845618,41.78745558238192],[-87.7134044894532,41.787326693188895],[-87.71340171339838,41.78721520506597],[-87.71339897428113,41.787103689697254],[-87.71339690300782,41.786998023547],[-87.71339415575015,41.786857857444815],[-87.71339150541922,41.786752352548305],[-87.71338901692707,41.7866528859663],[-87.71338629195326,41.78654751815221],[-87.71338393207863,41.78645373267156],[-87.71338153712733,41.786359782616934],[-87.71337930110403,41.78627217273411],[-87.71337487273374,41.78608857679578],[-87.71344291264417,41.78608749249695],[-87.71359197649043,41.78608511664938],[-87.71374086892776,41.7860826815049],[-87.71385829626267,41.78608076257573],[-87.7139726045372,41.786078896141355],[-87.71401496331926,41.786078204341166],[-87.71412366171032,41.786076430183705],[-87.71429184404045,41.786073686651726],[-87.71452735815919,41.78606982365594],[-87.71471461039145,41.786066770578934],[-87.7149489509183,41.78606292756759],[-87.71515967367273,41.78605950640153],[-87.7153786115515,41.7860559094954],[-87.71560338580159,41.78605241957178],[-87.71574621858329,41.78605020171918],[-87.71587185980216,41.78604818822207],[-87.71605870809165,41.78604518539419],[-87.71626205855344,41.7860419418621],[-87.71640200222743,41.786039729629856],[-87.71662167278116,41.78603618890032],[-87.71686246675021,41.78603232201703],[-87.71712651071765,41.78602814025379],[-87.71735072849702,41.78602454019168],[-87.71763828040136,41.78601990699512],[-87.7178967867751,41.78601580355464],[-87.71805732411563,41.78601351383824],[-87.71831220948694,41.78600987773047],[-87.71851405397588,41.786006924021414],[-87.71877875460831,41.786003071289485],[-87.71901158692359,41.78599965100829],[-87.71925952867939,41.78599603713979],[-87.71940724487592,41.78599386279207],[-87.7195627723488,41.785991565329866],[-87.71975335814057,41.785988796277735],[-87.71993943356203,41.78598605771284],[-87.72015638692446,41.78598287991619],[-87.72039835072408,41.785979341179434],[-87.72050679902472,41.78597714964964],[-87.72059974731802,41.78597527134902],[-87.72070777128759,41.78597308806899],[-87.72085508539219,41.78597077250043],[-87.72104050258797,41.78596783654204],[-87.72120314564816,41.78596530035363],[-87.72142842610891,41.785961725436856],[-87.72158399169517,41.785959260783265],[-87.72178554444677,41.78595610767126],[-87.72193329873474,41.78595376562015],[-87.7221271504371,41.78595070841259],[-87.72231319122115,41.785947773443],[-87.72246805948593,41.78594533132615],[-87.72271134797404,41.785941273345045],[-87.72296146329894,41.78593657849386],[-87.7229668983551,41.78610185525935],[-87.72297591914096,41.78638283674403],[-87.72298071122553,41.78653209658197],[-87.72298693708338,41.78671459769439],[-87.72298948757236,41.78684543195841],[-87.72299164823599,41.786956285148335],[-87.72299511581556,41.787116460218996],[-87.72299751583496,41.78722682125147],[-87.72299900715936,41.7872952441147],[-87.72300042846837,41.7873604563317],[-87.72300343285642,41.7874998823534],[-87.72300548381037,41.78759292448979],[-87.72300899324878,41.787756268873736],[-87.72301245388547,41.78791733715211],[-87.72301487376482,41.78802174288595],[-87.7230184816176,41.78817873556732],[-87.7230191833209,41.788208130938685],[-87.72302729905337,41.788548081796094],[-87.72303499207362,41.78866727927359],[-87.72304392365506,41.78880566702585],[-87.72304778924709,41.7889702901856],[-87.72305151098513,41.78911776102755],[-87.72305160098065,41.78912130136753],[-87.72305541355618,41.78927214789238],[-87.72305834365487,41.78938849397996],[-87.72306119801931,41.78957739077233],[-87.72306411087976,41.789770173237045],[-87.72306884264346,41.78992080508427],[-87.72307180677198,41.790014236506984],[-87.72307224404656,41.79002809777534],[-87.72307803636848,41.79021185856997],[-87.72308275074671,41.79036432898794],[-87.72308529651158,41.790486602052276],[-87.72308945220888,41.79068618759931],[-87.72309421059126,41.790837889836695],[-87.72309746628216,41.79094068055026],[-87.72309954411134,41.791006280413335],[-87.7231039378669,41.79114620769773],[-87.72310971700223,41.79139683192986],[-87.72311370729737,41.79156986829932],[-87.72311780903793,41.791732818615785],[-87.72312052736306,41.791841314857095],[-87.72312174595913,41.79188995015639],[-87.72312602141578,41.79205778622316],[-87.72313170500577,41.79228180538584],[-87.72313483652468,41.792404272248326],[-87.72314051907394,41.79260938323313],[-87.72314374315151,41.79272696546946],[-87.72314645855877,41.79282599415016],[-87.72315214652549,41.79303050140453],[-87.7231589507109,41.793204394892484],[-87.7228853293956,41.79320801158354],[-87.72261076375804,41.793212672018925],[-87.72242373337129,41.79321337902644],[-87.72218307451313,41.793215666557046],[-87.72190914795621,41.79322264434683],[-87.7217695787123,41.7932261995314],[-87.72156656785289,41.79322989367335],[-87.72134669319888,41.79323305853368],[-87.72108266771379,41.79323607000618],[-87.72086406861975,41.79324006402769],[-87.72071120320426,41.793237204435236],[-87.72062809402702,41.793235649764505],[-87.7202868846618,41.79324538287402],[-87.7201388582121,41.79324758411427],[-87.71992019512221,41.79325058805356],[-87.71978757584664,41.7932522399227],[-87.71960676451741,41.793254512360264],[-87.71948254413645,41.79325604107106],[-87.71928024131542,41.7932585304867],[-87.71909307959336,41.79326145424345],[-87.71891371928069,41.79326537992213],[-87.71862340681697,41.79327153829188],[-87.71841285857734,41.793273430181955],[-87.71825977768158,41.793275622252736],[-87.71815898480122,41.793277065574244],[-87.71782639916786,41.79328228203345],[-87.71759240990708,41.79328500732387],[-87.71739041269458,41.79328620221423],[-87.71722807922416,41.79328892673609],[-87.71703155928516,41.793292527199505],[-87.71684571330067,41.793295931584794],[-87.71669727699621,41.79329878454522],[-87.71639289563039,41.79330359965954],[-87.71633505609537,41.793304479771884],[-87.71624167730803,41.79330588878163],[-87.71595485941279,41.793310878859224],[-87.71581045398797,41.79331319332449],[-87.71557275838961,41.79331700272125],[-87.71519530087677,41.79332451256324],[-87.71500417012265,41.793328323795365],[-87.71471309075505,41.79333408395303],[-87.71458057283786,41.79333664365533],[-87.71425090890583,41.79334301041545],[-87.7140130481966,41.79334787553911],[-87.7137443399677,41.79335345224711],[-87.71358412140805,41.79335735511129],[-87.71339855806035,41.79336187456474],[-87.71339850340432,41.793361876190794],[-87.71339850279256,41.79336186356376],[-87.71339583737539,41.79325790922743]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7175417.36093","perimeter":"0.0","tract_cent":"1154668.58329057","census_t_1":"17031630900","tract_numa":"34","tract_comm":"63","objectid":"448","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866608.50043745","census_tra":"630900","tract_ce_3":"41.78978754","tract_crea":"","tract_ce_2":"-87.70841673","shape_len":"10770.0908778"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71325553636119,41.786090203087774],[-87.71337487273374,41.78608857679578],[-87.71337930110403,41.78627217273411],[-87.71338153712733,41.786359782616934],[-87.71338393207863,41.78645373267156],[-87.71338629195326,41.78654751815221],[-87.71338901692707,41.7866528859663],[-87.71339150541922,41.786752352548305],[-87.71339415575015,41.786857857444815],[-87.71339690300782,41.786998023547],[-87.71339897428113,41.787103689697254],[-87.71340171339838,41.78721520506597],[-87.7134044894532,41.787326693188895],[-87.7134076845618,41.78745558238192],[-87.7134110080219,41.78759018039175],[-87.71341275278876,41.78766027902124],[-87.71341784358661,41.78775986939971],[-87.7134219873903,41.78790873583408],[-87.71342696856875,41.7880877242863],[-87.71342942188353,41.78817566462843],[-87.71343282162667,41.788298544907725],[-87.71343440485316,41.78835618329875],[-87.7134358892421,41.78841022668285],[-87.71343949226944,41.78853865152264],[-87.71344220246421,41.7886379546102],[-87.71344467915787,41.788727239772626],[-87.71344709547711,41.78881517990512],[-87.71344997572649,41.788919670615876],[-87.7134531799305,41.7890362105111],[-87.71345481605928,41.789094755070536],[-87.71345645113294,41.78915340939529],[-87.71346001623601,41.789281971228],[-87.71346248820979,41.78937175032711],[-87.71346445200358,41.789441959887874],[-87.71346719866361,41.78954129032469],[-87.71346880025737,41.78959961542366],[-87.71347282384782,41.789722306937534],[-87.71327580715426,41.78973119177477],[-87.71330649487294,41.790637316357014],[-87.71333761521329,41.79154618741536],[-87.71336189828918,41.79226086265972],[-87.7133676289313,41.79242726641972],[-87.71339583737539,41.79325790922743],[-87.71339850279256,41.79336186356376],[-87.71339850340432,41.793361876190794],[-87.71326287838258,41.79336517942006],[-87.71299352004448,41.79336970775813],[-87.7124326203593,41.79337842310223],[-87.71225418889308,41.79338102614284],[-87.71202749030627,41.79338441069911],[-87.71184428382912,41.793387810564454],[-87.71155408704277,41.79339345003543],[-87.71141239696281,41.79339620342364],[-87.71128948943715,41.79339844252408],[-87.7110303602941,41.793403163252236],[-87.7109012242133,41.79340497411664],[-87.71063656593297,41.79340868593372],[-87.71036497152681,41.79341308621527],[-87.71014473377993,41.79341576113351],[-87.709869957057,41.79341931969447],[-87.70968348554919,41.79342286771589],[-87.7095321876703,41.793425746376414],[-87.70934719190561,41.793428336698874],[-87.70904773813956,41.793431594594125],[-87.7088424994582,41.793434211309766],[-87.70857938085511,41.79343810458644],[-87.70845740833211,41.79344139543171],[-87.70836098194428,41.79344399690265],[-87.70808219581146,41.79344879174714],[-87.70779740838904,41.793452263421074],[-87.7076208539686,41.79345412852677],[-87.70736139364934,41.79345891711135],[-87.70723097225633,41.79346074236747],[-87.70716568820404,41.79346165604952],[-87.70622279755837,41.793476116033034],[-87.70600466417272,41.79347869982242],[-87.70591354857352,41.79347977881438],[-87.70501521010733,41.79349084068555],[-87.70478068718703,41.7934952502167],[-87.70467828423796,41.793497175378135],[-87.7041691724713,41.79350487303299],[-87.70377482259575,41.793510834028936],[-87.70355407943639,41.79351390765323],[-87.7035477546782,41.793334586139835],[-87.70353564186375,41.792848753192715],[-87.70352831979338,41.79244294249339],[-87.70352064300651,41.79220733063376],[-87.7035113836082,41.791917922018484],[-87.70350491172793,41.79169817434411],[-87.70349886113233,41.79149270805773],[-87.70348172361608,41.79089090143746],[-87.70346051093112,41.79015476630512],[-87.70345422765324,41.78988371728585],[-87.70344705278,41.789574220248156],[-87.70342630501266,41.78889179353573],[-87.70340934452588,41.78827950414125],[-87.70340125955454,41.78806405135068],[-87.70339631604529,41.78793230732699],[-87.70338354962958,41.787543371256994],[-87.70336547204418,41.78693288682146],[-87.70335980618063,41.786701265253406],[-87.70334872788678,41.78624839992083],[-87.70372349595434,41.78624328801438],[-87.70396610842631,41.78623850558953],[-87.70428996856569,41.78623212086728],[-87.70456832534553,41.78622767696149],[-87.70479429613927,41.786224068742946],[-87.70516392740602,41.78621777527143],[-87.70551148125537,41.786211853932876],[-87.70578133932946,41.78620787766665],[-87.7064214014367,41.7861984444825],[-87.70701846702917,41.78618964162355],[-87.70723648534096,41.78618642954535],[-87.70729406075195,41.78618563160087],[-87.70748182256521,41.786183032178805],[-87.70765374200215,41.786180648040556],[-87.70781737382725,41.786178383177706],[-87.70806718420826,41.78617496802667],[-87.70823016792302,41.78617192817658],[-87.70838155313267,41.78616910409477],[-87.70850675420162,41.78616715087103],[-87.7086940786157,41.78616427265913],[-87.70888067024241,41.78616133527272],[-87.7090684346144,41.78615845884174],[-87.70923269222692,41.78615589376544],[-87.70946816828311,41.78615223440899],[-87.70971688319592,41.78614836898774],[-87.70990464857275,41.78614538142355],[-87.7101084401455,41.78614212373671],[-87.710303980406,41.78613898559728],[-87.71048694125207,41.786136108239624],[-87.71066794573667,41.786133170315225],[-87.71090266664869,41.78612936012407],[-87.71112901210199,41.78612572884915],[-87.71133280384215,41.78612244154796],[-87.71151316164114,41.78611952101906],[-87.71174753833958,41.78611576733826],[-87.71196651239472,41.78611225918606],[-87.71217741873232,41.78610884420973],[-87.71238014656362,41.78610560418366],[-87.71251290298719,41.78610346761299],[-87.7126147067736,41.786101822282376],[-87.71279990930405,41.786098407512696],[-87.71289672804393,41.78609662248924],[-87.71292331652401,41.786096132150114],[-87.71302240426373,41.78609430521171],[-87.71315618354375,41.78609183834239],[-87.71321791685118,41.78609069982328],[-87.71325553636119,41.786090203087774]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7078845.15383","perimeter":"0.0","tract_cent":"1160013.37280981","census_t_1":"17031630700","tract_numa":"29","tract_comm":"63","objectid":"449","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866773.81408242","census_tra":"630700","tract_ce_3":"41.7901329","tract_crea":"","tract_ce_2":"-87.68881428","shape_len":"10658.8497727"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68384496895457,41.787020456152085],[-87.6838306050637,41.78652872103305],[-87.68400854722877,41.78655196995237],[-87.68421908879952,41.78655587662153],[-87.68484123064421,41.78654813864938],[-87.68505689768521,41.786544688378356],[-87.68534083221584,41.786540145263494],[-87.68628005921663,41.78652484246513],[-87.68650715898052,41.7865211412892],[-87.68724019274848,41.786508745597864],[-87.6874981151583,41.78650408570686],[-87.68771746995174,41.786500122072574],[-87.68844372592652,41.786490699604144],[-87.68871826135087,41.786486930190776],[-87.68889985839544,41.786484436324436],[-87.68955410975106,41.78647406748598],[-87.68993704259033,41.786467091557675],[-87.69026382729507,41.78646113763332],[-87.69062703773974,41.78645551363094],[-87.69115603797938,41.786446885803386],[-87.6914778239129,41.78644163650106],[-87.69198240494325,41.7864342183484],[-87.69237602336105,41.78642734553565],[-87.6926612735969,41.78642236383024],[-87.69317742837968,41.786416239903176],[-87.69359512574917,41.78640707442582],[-87.69360046732523,41.78659626185279],[-87.69360379449104,41.7867570406806],[-87.69360388540147,41.78676143232701],[-87.69360643242327,41.78686797934072],[-87.69360896141306,41.786973758948236],[-87.69361795213483,41.78725704727979],[-87.69362618160685,41.787528393693265],[-87.69363480197036,41.787812064134975],[-87.69364229079193,41.788036204601056],[-87.69364655061135,41.78820800773055],[-87.69364707428444,41.7882291378406],[-87.69364982885013,41.788340231624744],[-87.693654816557,41.788520888585275],[-87.69366192428204,41.788779687285434],[-87.69367238044532,41.789181180254296],[-87.69368292246698,41.78955929232386],[-87.69369142784586,41.78985457036759],[-87.69369694243892,41.79004830867379],[-87.69370822369142,41.790444631239716],[-87.69371797994629,41.79079853421866],[-87.69372623087837,41.791104678165084],[-87.69373526688217,41.79143514086539],[-87.69374355713177,41.79175209749371],[-87.69374721724681,41.79187076197959],[-87.69375501619251,41.79215337629118],[-87.69378529695538,41.7932380039055],[-87.69379793880665,41.79369080797132],[-87.69292355560773,41.793705963039336],[-87.69258080808586,41.79371377180542],[-87.69233810785157,41.79371930079137],[-87.69155679557407,41.79373277643863],[-87.69136140634036,41.79373620619907],[-87.69107176560588,41.793741289882085],[-87.69034131959052,41.793754437890755],[-87.6901427399978,41.793758875182235],[-87.6899190251855,41.79376387389191],[-87.68893115354572,41.79378258962883],[-87.68882673737012,41.79378456730194],[-87.68875036988413,41.79378624726284],[-87.68800021922617,41.79380053218982],[-87.68785200489017,41.793802445973384],[-87.68770398456273,41.793804357362916],[-87.68756336735478,41.79380617296322],[-87.68659156848578,41.79382407169897],[-87.68651249348302,41.7938255277353],[-87.68602137012569,41.79383456980075],[-87.68583816503819,41.79383757802052],[-87.6849376536957,41.7938523609128],[-87.68431505411951,41.7938621549246],[-87.68425203442891,41.793865481976034],[-87.68404176962778,41.79387658348722],[-87.68403651550867,41.793643549537855],[-87.68403485979758,41.79357011622506],[-87.6840305250518,41.79343068165469],[-87.68402835377911,41.793360842637],[-87.68402223590788,41.793164054998684],[-87.68400228157665,41.79247059794042],[-87.68399730461472,41.792279156006124],[-87.68399261044782,41.792098609938215],[-87.68399094903666,41.79203468607994],[-87.68398764733753,41.79190768920991],[-87.68398599792876,41.791850461205826],[-87.68398093942682,41.791674880775254],[-87.68397065214357,41.79132275815975],[-87.68393823919332,41.79021325060796],[-87.6838840389309,41.78835791606111],[-87.68384496895457,41.787020456152085]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3468835.71999","perimeter":"0.0","tract_cent":"1172374.83413602","census_t_1":"17031610700","tract_numa":"19","tract_comm":"61","objectid":"451","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875023.90608622","census_tra":"610700","tract_ce_3":"41.81250877","tract_crea":"","tract_ce_2":"-87.64324537","shape_len":"7981.02887765"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64120165395154,41.8148268974641],[-87.64119069393249,41.81443092782586],[-87.64099640409707,41.8144356445258],[-87.64081824321906,41.81443807500815],[-87.64080770524528,41.8140508574265],[-87.64080089907881,41.813797300276775],[-87.64079665124385,41.813639972823516],[-87.64079362164958,41.813524530897624],[-87.6407884070621,41.81332581338963],[-87.64078269514081,41.81314435491657],[-87.64077658296408,41.8129149240909],[-87.64077046281773,41.81261026630432],[-87.64076803462393,41.81248940008069],[-87.64076632848655,41.81242824733374],[-87.64076343366386,41.81232400229156],[-87.64075332227608,41.811961861585345],[-87.64074764439758,41.81176023284549],[-87.64074597954242,41.81169787258368],[-87.64073896744426,41.81143520336454],[-87.64073334298664,41.81124905264552],[-87.64072771861458,41.81102884545242],[-87.64072176322547,41.81078229970887],[-87.64071990488631,41.810705385371776],[-87.64071427751668,41.81051270323297],[-87.64070862761028,41.810319663921284],[-87.64070719896816,41.81027086206882],[-87.64070657698646,41.80993361442833],[-87.64070252761505,41.80986672214006],[-87.64069514900144,41.80974484904599],[-87.64068476321975,41.809411878184555],[-87.64067587201362,41.809120162801435],[-87.64067873816393,41.80895206346676],[-87.64100225380605,41.80894635943344],[-87.64136906430376,41.808938800284984],[-87.64188097503197,41.808928408151445],[-87.64234998800902,41.80891973185416],[-87.64282487408816,41.808910646568464],[-87.64311772132,41.80890563395439],[-87.6432863223578,41.808902747550476],[-87.64364153834762,41.8088954405318],[-87.64405198894265,41.80888862852013],[-87.64432821136434,41.80888331382632],[-87.64460758852766,41.808877937798925],[-87.64486215441906,41.80887400269817],[-87.64495411700203,41.808871718447456],[-87.64541576836987,41.808860250018164],[-87.64553794123329,41.80886374536395],[-87.64555339546256,41.80929206291695],[-87.64556159027482,41.80966442808657],[-87.64557161393262,41.81007843486453],[-87.64557943438112,41.81039665315861],[-87.64558522186934,41.81068947470326],[-87.64558743121468,41.81080126232193],[-87.6455950572689,41.811110231199756],[-87.64560513663339,41.81146076309347],[-87.64561840892577,41.81190717164882],[-87.64562622366886,41.81218850673614],[-87.64563014118524,41.81232953081674],[-87.64563400016556,41.81249341491048],[-87.6456415355808,41.81282120888484],[-87.64565114948653,41.81312955864407],[-87.64565587735248,41.81331853004576],[-87.64566075558213,41.81348086064105],[-87.6456644263159,41.81360302537485],[-87.64567242191309,41.81395637124218],[-87.64568048858575,41.81430993705507],[-87.64568732120823,41.81461769351062],[-87.64569205022661,41.814816654304366],[-87.64569491065144,41.81493700787684],[-87.64570211950362,41.81524386094011],[-87.64571229764618,41.81568130433896],[-87.6457268432914,41.81618375826103],[-87.64511712994805,41.816192568041714],[-87.64468592268996,41.816200986039945],[-87.64451592440699,41.81620362568846],[-87.6440509578743,41.81621084405614],[-87.64391633901064,41.816213144611034],[-87.64364210870708,41.81621783025599],[-87.64330058071128,41.816222737786056],[-87.64309795929925,41.81622564862757],[-87.64274624477466,41.816231062186006],[-87.64237958959846,41.816237411155164],[-87.64208227242636,41.81624333264889],[-87.6417997051188,41.81624896016932],[-87.6415260323957,41.816253075230165],[-87.64125040476324,41.81625814110052],[-87.64123916619546,41.81591522822791],[-87.64123537086518,41.81580186711766],[-87.64123269865983,41.81572204752719],[-87.64122705639394,41.815564656852956],[-87.64121925800103,41.81534674193569],[-87.6412079934065,41.81503196068138],[-87.64120347881601,41.81488592298501],[-87.64120165395154,41.8148268974641]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6969145.13136","perimeter":"0.0","tract_cent":"1173111.01003963","census_t_1":"17031610900","tract_numa":"19","tract_comm":"61","objectid":"452","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872407.11812106","census_tra":"610900","tract_ce_3":"41.80531179","tract_crea":"","tract_ce_2":"-87.64062245","shape_len":"10558.4050884"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63590686293564,41.80883780425226],[-87.63589540269997,41.808372579978005],[-87.63587829003154,41.80796357875872],[-87.63587011741707,41.80766028647657],[-87.63585956243297,41.80732301927644],[-87.63585100672505,41.807055057210825],[-87.63583922371545,41.80661967430432],[-87.63581925239382,41.806009294452714],[-87.63580740526473,41.80553754965974],[-87.63579796525897,41.80518210825572],[-87.63578604803033,41.80471688063066],[-87.6357632333012,41.803903749399936],[-87.63575089441726,41.80339289546175],[-87.63573061450448,41.802726598408235],[-87.6357255655384,41.802389021313644],[-87.63571704682185,41.80207543585381],[-87.63571176587223,41.801886048173635],[-87.63570849170026,41.80176527995699],[-87.63570849117217,41.80176526101826],[-87.63574534487904,41.80176461104556],[-87.63578926779792,41.801763835763154],[-87.63596207335056,41.8017599630907],[-87.63606525768353,41.80175765060383],[-87.63614672704813,41.801755824520804],[-87.63622023830159,41.80175421298826],[-87.63646144944505,41.80174892450495],[-87.63657325560241,41.80174647286312],[-87.63680679626863,41.80174135200641],[-87.63701401417784,41.80173730769201],[-87.63710432587945,41.80173661989113],[-87.63712603588499,41.80173645453867],[-87.63723918767643,41.80173559248161],[-87.63752676152565,41.80173340106974],[-87.63778612318922,41.801729089954684],[-87.63803621034393,41.80172493233017],[-87.63824695846924,41.80172099909196],[-87.63843151162756,41.80171755465956],[-87.63866790904264,41.80171261058423],[-87.63875044080994,41.80171088430531],[-87.63883436290948,41.8017091290505],[-87.63902878565611,41.80170506219672],[-87.63907884440653,41.80170401510766],[-87.63912354978666,41.801703013857114],[-87.63916957289027,41.80170198295536],[-87.63924021525342,41.80170040127609],[-87.63925898474191,41.80169998064727],[-87.6393483976921,41.80169797800178],[-87.63948000602221,41.80169503036138],[-87.63956897764037,41.80169303750214],[-87.63966344429231,41.80169092133217],[-87.63990293455021,41.801685556501454],[-87.64035584722092,41.801675391482206],[-87.64042315581918,41.80167406860644],[-87.64050948608413,41.801672371659635],[-87.64068702885378,41.801668881595965],[-87.6409779255988,41.801663719643194],[-87.64107539618259,41.8016615803503],[-87.64145467988355,41.80165325489914],[-87.64166699579445,41.80165004300602],[-87.64189463890305,41.801646598878214],[-87.64199706059559,41.80164504926091],[-87.64228620209597,41.80163938385125],[-87.64230351683594,41.80163904453475],[-87.64277940307483,41.80162744391453],[-87.64290308154249,41.80162680503738],[-87.64321180099391,41.80162178241681],[-87.64351325854064,41.80161669175782],[-87.64387832527152,41.801610526257335],[-87.64411254598839,41.80160639683734],[-87.64426852193192,41.80160364671479],[-87.64471250185859,41.80159517687626],[-87.64475446853784,41.801594376010016],[-87.64513818261597,41.80158663137024],[-87.64534450329056,41.80158435976325],[-87.64534674423342,41.80170802527243],[-87.64535539631459,41.80203063986716],[-87.64536404934144,41.80235317212072],[-87.64536841961295,41.80249516102913],[-87.64537474608343,41.80270066237968],[-87.64538042916293,41.80292026601968],[-87.64538794566643,41.80325991572473],[-87.64539286904103,41.803404345941125],[-87.64539855391104,41.803571125740426],[-87.64540302272377,41.803791106548424],[-87.64541024738425,41.80414433863885],[-87.64541554205321,41.80431341907905],[-87.6454190503759,41.80442546048932],[-87.64542401542447,41.80470535158485],[-87.64543007242094,41.804892972534674],[-87.64543181353443,41.80494690613167],[-87.645437576724,41.80512544559121],[-87.64543765754816,41.80512793623432],[-87.64544055113069,41.80521756059458],[-87.64544055270893,41.80521761878275],[-87.64544442916406,41.80533770119672],[-87.64544841430182,41.80552065871402],[-87.64545001661197,41.805595696901435],[-87.6454547214025,41.80581565160153],[-87.64546273375302,41.80612980975184],[-87.64546529013994,41.80623004612426],[-87.6454735856839,41.80651753155834],[-87.64548123521408,41.8067830863235],[-87.64548612409827,41.80703954098371],[-87.64548873018366,41.80717624909769],[-87.64549662526741,41.80747372125855],[-87.64550256624705,41.80768638350829],[-87.64550736045086,41.807948921625425],[-87.64551519589266,41.80837796230238],[-87.64551796288157,41.808489588923365],[-87.64553144045347,41.80868358001332],[-87.64553794123329,41.80886374536395],[-87.64541576836987,41.808860250018164],[-87.64495411700203,41.808871718447456],[-87.64486215441906,41.80887400269817],[-87.64460758852766,41.808877937798925],[-87.64432821136434,41.80888331382632],[-87.64405198894265,41.80888862852013],[-87.64364153834762,41.8088954405318],[-87.6432863223578,41.808902747550476],[-87.64311772132,41.80890563395439],[-87.64282487408816,41.808910646568464],[-87.64234998800902,41.80891973185416],[-87.64188097503197,41.808928408151445],[-87.64136906430376,41.808938800284984],[-87.64100225380605,41.80894635943344],[-87.64067873816393,41.80895206346676],[-87.64037127128881,41.808957483597005],[-87.63984534651075,41.808968003665],[-87.63936127529539,41.80897844487095],[-87.63886318427909,41.80898954023284],[-87.63835811092008,41.80899843830549],[-87.63823465913302,41.809000612902715],[-87.63784969964038,41.8090073935315],[-87.63737993376361,41.809017775783055],[-87.63707616456607,41.80902423283507],[-87.63700036240762,41.80902584418588],[-87.63696486865749,41.809026598573645],[-87.63681538122123,41.80902903532948],[-87.63668322520931,41.80903106464487],[-87.6365554792612,41.80903302588119],[-87.63640437672122,41.80903556811365],[-87.63601835410313,41.809042257667365],[-87.63597327259313,41.80904317061849],[-87.63591791651548,41.809044291757786],[-87.63591449409853,41.80889513764033],[-87.63590686293564,41.80883780425226]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3528748.32782","perimeter":"0.0","tract_cent":"1165909.99092567","census_t_1":"17031611800","tract_numa":"16","tract_comm":"61","objectid":"453","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869557.46468985","census_tra":"611800","tract_ce_3":"41.79764823","tract_crea":"","tract_ce_2":"-87.66711384","shape_len":"7975.0116429"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66930168983885,41.79397171931716],[-87.66944272014679,41.79396882882579],[-87.66944579712703,41.79406176896065],[-87.6694503096531,41.7941966218153],[-87.66945407166791,41.79433668419842],[-87.66945738150076,41.7944605803951],[-87.6694584354894,41.794500022149506],[-87.66946301519957,41.79467115484086],[-87.6694680745506,41.79485963418488],[-87.66947416477315,41.79508681390773],[-87.66947989031475,41.79529958401486],[-87.6694851744308,41.79549827337866],[-87.66949076636361,41.795731103424124],[-87.66949463034258,41.79581662780449],[-87.66949870753098,41.79590686590222],[-87.66950205655382,41.796044319059725],[-87.66950630153649,41.79620867138561],[-87.66951180692755,41.796421467620995],[-87.66951724438425,41.79663374204168],[-87.66951868347277,41.796689569112615],[-87.6695236081868,41.79688059979596],[-87.66952924075419,41.797098885035915],[-87.66953295290057,41.79724380499141],[-87.66953723184133,41.79740843190709],[-87.66954084567104,41.79754863084278],[-87.66954425613142,41.79763433369713],[-87.6695487380895,41.79774695099903],[-87.66955291443297,41.79789664840038],[-87.6695576861818,41.7980703891682],[-87.66956262417871,41.79824934503118],[-87.66956863263417,41.79846672705073],[-87.66957367007623,41.798650266429945],[-87.6695799441818,41.798876953091245],[-87.66958283103507,41.798981526986026],[-87.66958878409012,41.79919717975843],[-87.6695933156995,41.79936221971945],[-87.66959691616903,41.79945791914771],[-87.66960120169475,41.79957181905337],[-87.669606900403,41.799794358210484],[-87.6696143341399,41.80008688688241],[-87.66962099847657,41.80034735786642],[-87.66962840101588,41.80063936491571],[-87.66963297687066,41.8008186136151],[-87.66963472148996,41.80088696320069],[-87.66964081232497,41.80112838551175],[-87.669644634473,41.801275831288216],[-87.66923747058699,41.80127929522236],[-87.66902553931682,41.80128112093048],[-87.6689744078783,41.801281561246874],[-87.66871996525693,41.80128373932724],[-87.66842644270683,41.80128580536179],[-87.66826207041241,41.801286961993476],[-87.66793148064906,41.80128987748469],[-87.66782021624525,41.801290700854985],[-87.6675757708237,41.80129250922869],[-87.66737224419433,41.801293689584945],[-87.66721274441144,41.80129550387287],[-87.6670654510524,41.801297179622644],[-87.66679908079131,41.80130362023338],[-87.66660528414198,41.8013043134162],[-87.66637836156251,41.80130460867654],[-87.66620869742272,41.801304721200424],[-87.66600221318072,41.801307316663696],[-87.66588018578751,41.801308850340305],[-87.66563290079628,41.801310377099014],[-87.6654000921594,41.801311830525776],[-87.66532788440759,41.801312281138905],[-87.66505675903927,41.80131394244858],[-87.66477647751485,41.80131821562656],[-87.66477393956802,41.801212789125564],[-87.66476795108443,41.80103031437205],[-87.66476392014758,41.80080767470761],[-87.66475966832895,41.80059573645174],[-87.66474799147632,41.80032192628057],[-87.6647413553126,41.80006417204605],[-87.66473700777792,41.799868506804046],[-87.66473074288365,41.79962090855768],[-87.66473133388348,41.799494726012064],[-87.66473170493798,41.79941542222665],[-87.66472428822244,41.799201050528964],[-87.66471803260698,41.79902312966588],[-87.66471254656382,41.79884872595927],[-87.66470395765039,41.7985601419858],[-87.6646988785777,41.7983713605864],[-87.66469371951081,41.798172671850224],[-87.66468898882256,41.797989188659315],[-87.66468372601929,41.797828672571654],[-87.66468024711895,41.79767312441215],[-87.66467869352512,41.79760366686805],[-87.66467455015106,41.79743777821367],[-87.66466966937946,41.797229897712036],[-87.66466582608493,41.797070459861786],[-87.66466070653279,41.79687144199576],[-87.6646553425133,41.79665367923588],[-87.6646510209267,41.79645551672832],[-87.66464601643744,41.796249035055816],[-87.66464047976808,41.79606549249967],[-87.66463652885321,41.79585161012062],[-87.66463491806508,41.79576441206523],[-87.66462679774511,41.79554715463241],[-87.66461974221156,41.795329848503556],[-87.66461397858728,41.79509759353153],[-87.66460763492283,41.79488586242859],[-87.6646008154384,41.794674046219185],[-87.6645960093804,41.794499121079454],[-87.66459395131896,41.79442419394277],[-87.66459145518563,41.79427626241298],[-87.66458545789624,41.79412647155185],[-87.66458181581164,41.79402436374037],[-87.66483189136925,41.79402068690536],[-87.66505780830772,41.794018845425185],[-87.66519218617368,41.794017659958705],[-87.66530338465358,41.79401667873921],[-87.66551019590905,41.794014807593605],[-87.66566478180546,41.794013400952984],[-87.66579325560959,41.79401213463906],[-87.66590999399415,41.79401098386782],[-87.66612271812586,41.79400826780077],[-87.6663226755659,41.79400602607056],[-87.66652937990153,41.79400385059757],[-87.66672897176515,41.79400149626661],[-87.66684545971101,41.79399970230057],[-87.66701557897335,41.79399620444942],[-87.6671296526487,41.793993858860546],[-87.66727877587044,41.793992308322196],[-87.66748518679313,41.793990129702294],[-87.66765939656985,41.79398831270441],[-87.66785289688755,41.793986305596306],[-87.66797576017795,41.79398504111295],[-87.6681046386805,41.79398367439118],[-87.6682302485256,41.79398274332856],[-87.66838527205914,41.79398159434644],[-87.66856637729101,41.793979623785845],[-87.66876604012208,41.793977485868574],[-87.66896020195112,41.79397537067598],[-87.66917673557242,41.79397305518419],[-87.66930168983885,41.79397171931716]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3515936.33609","perimeter":"0.0","tract_cent":"1164512.06245187","census_t_1":"17031611400","tract_numa":"19","tract_comm":"61","objectid":"454","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872186.74183418","census_tra":"611400","tract_ce_3":"41.8048929","tract_crea":"","tract_ce_2":"-87.67216611","shape_len":"7956.87068385"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67436752449287,41.80123471478935],[-87.67450695863394,41.80123336221474],[-87.67451098940603,41.80135752105398],[-87.67451900468129,41.801634849370835],[-87.67452055140258,41.80168861846824],[-87.67452625314806,41.80188678866085],[-87.67453566202896,41.80221426298715],[-87.67454048904854,41.80246632557848],[-87.6745449390209,41.802697803878615],[-87.67454891888269,41.8029036753198],[-87.67455033215546,41.80296313610448],[-87.67455250704423,41.80305462263887],[-87.67455409641016,41.803121491249435],[-87.6745590778699,41.80330832310165],[-87.67456365548124,41.80348090980813],[-87.67456934350174,41.80369540806201],[-87.67457423524188,41.8038802634978],[-87.6745796103516,41.80408238323151],[-87.67458526973354,41.804296140342245],[-87.67458904538798,41.804486121164565],[-87.67459026372103,41.80460973333421],[-87.67459081856701,41.80466606481392],[-87.67459072420931,41.80482351275328],[-87.67459320955952,41.804870556304124],[-87.6746001864942,41.80500260392865],[-87.67460429393189,41.80517090680855],[-87.67460840529664,41.805338935277874],[-87.67461387361546,41.80556416234024],[-87.67461883347941,41.805766663831996],[-87.67462271322495,41.8059257992111],[-87.67462880726664,41.80617592073893],[-87.67463418677914,41.80639557636913],[-87.67463841926445,41.80656958802825],[-87.67464081237792,41.80668623037969],[-87.6746434099263,41.80681281478243],[-87.67464763634005,41.80699462015016],[-87.67465236224858,41.80719931567352],[-87.6746598865413,41.807524638346976],[-87.67466624236584,41.807842325203616],[-87.67467458510767,41.808067705587845],[-87.67468102220478,41.80829016664851],[-87.6746867661243,41.808510081425155],[-87.67462641903604,41.80851069616421],[-87.67445987594726,41.80851239255623],[-87.67426292394401,41.80851406188256],[-87.6740795810954,41.808515644867974],[-87.6740299853483,41.80851607318744],[-87.67380588337359,41.808518436626066],[-87.67360452204011,41.808520820462775],[-87.67347173102007,41.80852138130531],[-87.67325208570148,41.808522308483944],[-87.6730329080221,41.80852373821278],[-87.6728538603145,41.80852493173999],[-87.67263387543281,41.80852638350892],[-87.67237779541271,41.80852806625944],[-87.6722554172055,41.808530435362044],[-87.67213738350311,41.8085327201189],[-87.67200242083415,41.80853433071983],[-87.67177864605233,41.80853696624011],[-87.67164614171446,41.808538535968985],[-87.67153667529087,41.808539826357304],[-87.67130798406892,41.80854251523861],[-87.67115618387083,41.8085443296765],[-87.67104316941492,41.80854604316607],[-87.67091750644582,41.80854794815469],[-87.67077048161669,41.80854904866493],[-87.67055104476057,41.80855066426222],[-87.67033872528052,41.808552209101705],[-87.67017966831392,41.80855337827035],[-87.66982753385358,41.808557332042554],[-87.6698230949959,41.80837631651492],[-87.6698182156279,41.80816316786398],[-87.66981660140173,41.80809939355903],[-87.66981188338775,41.80791301737509],[-87.66980508913393,41.807665059904636],[-87.66979744343186,41.8073680297812],[-87.66979333971382,41.80719286613301],[-87.66979105224013,41.80709523860668],[-87.66978716259507,41.80692833674409],[-87.6697823443412,41.80673739785121],[-87.66977878010337,41.80659612065352],[-87.66977215089952,41.80637121603349],[-87.66976662593734,41.80618155434396],[-87.66975947748341,41.80593233238222],[-87.66975495373887,41.8057386698118],[-87.66975232858131,41.805626358408055],[-87.66974667346489,41.80538526839397],[-87.66974179508166,41.80517557715581],[-87.66973792813633,41.80501004723389],[-87.6697346366553,41.80491834426129],[-87.66973109122682,41.804819582078096],[-87.66972896307632,41.80473350528717],[-87.6697283725375,41.80470962251358],[-87.66972710286768,41.804658286419],[-87.66972638108436,41.80462910175901],[-87.66972152008645,41.80443195195861],[-87.66971592230233,41.80420312888817],[-87.66970958028021,41.803911402577455],[-87.66970406196543,41.803657113011795],[-87.66969807798657,41.803383940086206],[-87.66969359412154,41.803164508578334],[-87.66969186950753,41.80309797886916],[-87.66965507966322,41.80167877894674],[-87.669644634473,41.801275831288216],[-87.67044508666147,41.80126963956132],[-87.67076210610394,41.80126669372529],[-87.67086015218223,41.80126564775053],[-87.67106933721792,41.801263415880996],[-87.67131801839103,41.80126158359281],[-87.67161782746933,41.80125957876401],[-87.67192351674507,41.801256399524654],[-87.67207505533258,41.801254811137916],[-87.67233755802695,41.80125205920522],[-87.67260575302306,41.801250034540274],[-87.67268259485215,41.801249458085934],[-87.67285421438325,41.80124817021888],[-87.67314104204476,41.801245977004285],[-87.6732936825452,41.80124493890595],[-87.67346472900336,41.80124377526639],[-87.67367516000611,41.8012416632634],[-87.67392340776152,41.8012391642174],[-87.674152838809,41.80123685853203],[-87.67436752449287,41.80123471478935]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7364378.7675","perimeter":"0.0","tract_cent":"1170380.74959933","census_t_1":"17031600500","tract_numa":"24","tract_comm":"60","objectid":"455","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1886501.63185012","census_tra":"600500","tract_ce_3":"41.84404845","tract_crea":"","tract_ce_2":"-87.65022489","shape_len":"11981.6590179"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64927003693835,41.83800717202579],[-87.64940813714908,41.838005154940795],[-87.64976630512213,41.83841935124395],[-87.64993947679827,41.83861956040329],[-87.65012529380256,41.83883510262159],[-87.65031052937917,41.839050256878636],[-87.65047727845237,41.83924389566959],[-87.65064649267485,41.83944051267037],[-87.65083222672676,41.83965739791751],[-87.65091819075796,41.83975795301493],[-87.65103890912911,41.839899160555966],[-87.6510674759963,41.83993259072136],[-87.65119165578943,41.84007789608609],[-87.65133983345619,41.84025149994988],[-87.6515165896029,41.840456452489676],[-87.65162658668305,41.84058399573674],[-87.6516931805814,41.840661340104724],[-87.65206849380135,41.841093867283014],[-87.65237202197137,41.84144742683669],[-87.65289759549694,41.84205960328211],[-87.65327548343163,41.842500045164414],[-87.6535013594115,41.84276782275735],[-87.6536582694148,41.84294973575739],[-87.65383501901334,41.843155866021746],[-87.65388593450398,41.84321524515342],[-87.65412643559618,41.84349361304194],[-87.65421695206625,41.84359838083242],[-87.65443127368218,41.843848287036224],[-87.65448949939542,41.84391617981713],[-87.65457392849534,41.84401462588459],[-87.65463163499517,41.84408191288371],[-87.65469378086853,41.8441543762396],[-87.65485597421824,41.84434349503079],[-87.65489857032281,41.84439316228925],[-87.65495589574626,41.844460003947304],[-87.65500846983531,41.844521305391915],[-87.65507423798114,41.844597990845706],[-87.6552161750112,41.844763488190175],[-87.65540517463252,41.844983348970985],[-87.65557408784997,41.845180066555706],[-87.6558854493653,41.84554106604915],[-87.65604311510717,41.84572386438237],[-87.6563585648866,41.84608914659117],[-87.65640328690965,41.846145317908075],[-87.65669255489578,41.8465080546146],[-87.6572911446003,41.847204046707176],[-87.65311725753986,41.84794971614282],[-87.65258344149498,41.84800488455861],[-87.65189015992608,41.84812296585798],[-87.65157843342952,41.84817605818577],[-87.65143621341478,41.84820815571503],[-87.65140675794294,41.84821480333446],[-87.65100295040408,41.84830593656894],[-87.64975088557067,41.84838880715073],[-87.64963716161438,41.84839633337421],[-87.6492634410844,41.84847855745541],[-87.64920449915977,41.84849152536794],[-87.64914161231874,41.848505361359784],[-87.64914152954674,41.84850537925324],[-87.64895526089515,41.84854636038063],[-87.64864374659668,41.848614895900184],[-87.64813685570499,41.84877337784361],[-87.64759270029629,41.84894350726918],[-87.64679998386076,41.849211633195075],[-87.64647378082603,41.849270946507794],[-87.64647089345632,41.84900064610944],[-87.64648298036735,41.84874480556061],[-87.64650695048027,41.84850433256089],[-87.64651132106957,41.84843893144721],[-87.64651804938546,41.84833826121916],[-87.64652171718762,41.848088006724524],[-87.6465211429306,41.84807234701771],[-87.6465186381967,41.84800404389472],[-87.6465127099283,41.84784236910655],[-87.64651076923064,41.84772809560094],[-87.64651016146534,41.84769230490409],[-87.64650920493362,41.8476360039969],[-87.64650802625576,41.8475665704796],[-87.64648892227945,41.84719816975514],[-87.64647340120543,41.84689884972691],[-87.64647114193416,41.84676584938949],[-87.64646960037483,41.846694901055336],[-87.64646901446544,41.846624507836204],[-87.64646781740821,41.846480728354614],[-87.64646699918036,41.84643033857509],[-87.6464658403595,41.846358950425426],[-87.6464650739228,41.84631174786366],[-87.64646251160723,41.84615527020229],[-87.64646159593542,41.84609933972493],[-87.64645936980713,41.8459633809804],[-87.64645798253015,41.845878662861445],[-87.6464566037385,41.845794455498826],[-87.6464546181638,41.845673202481116],[-87.64645367546504,41.845615613480945],[-87.6464517298313,41.845496803090036],[-87.64644895698291,41.84532744999846],[-87.64644491694752,41.845080716818714],[-87.64644084627461,41.84493055370287],[-87.64643923256861,41.84487102131327],[-87.64643443377277,41.8447020559257],[-87.64643151492909,41.84451331510697],[-87.64642829386419,41.84430503443459],[-87.64642770261526,41.84427381191184],[-87.64642519857884,41.84414154029768],[-87.64641899686032,41.84386699477351],[-87.64641410936292,41.84364114029054],[-87.64641162976186,41.84350912649403],[-87.64640739845002,41.84328382504811],[-87.64640288391196,41.843081435934096],[-87.64639619785846,41.84280754581052],[-87.64638937434313,41.84255344152763],[-87.64638211300306,41.842299032471445],[-87.6463784596426,41.84207107222596],[-87.64637615429154,41.841867983048296],[-87.64636903825091,41.84165746765742],[-87.6463611005315,41.841422663916],[-87.64635704482272,41.84125974024723],[-87.64635114948459,41.84102520776335],[-87.64634623036633,41.840829786850335],[-87.64634142929549,41.84064048634235],[-87.64633644205108,41.84045140425548],[-87.64632985405636,41.84020276208406],[-87.64632448498735,41.84000138340069],[-87.64632284231119,41.839894210106166],[-87.64632232125723,41.83986432196542],[-87.64631920411432,41.83968540481204],[-87.6463112489449,41.83938271988639],[-87.64630635291222,41.83919201918776],[-87.64629864650588,41.83890725576411],[-87.64629387117921,41.83871556783659],[-87.64628976168754,41.838540541565685],[-87.64628399786021,41.83825600927033],[-87.64627815787844,41.83804556861145],[-87.64644780730531,41.83804378716218],[-87.64677733579437,41.83804120189334],[-87.64693041423837,41.83803970816796],[-87.6473396687063,41.83803173266789],[-87.64771049885593,41.83802410840729],[-87.64809952804168,41.83802067444066],[-87.64832681180506,41.83801818079473],[-87.64870458376478,41.8380132363529],[-87.64878749453905,41.83801215120173],[-87.64903699392539,41.838008884865616],[-87.64927003693835,41.83800717202579]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6606805.19149","perimeter":"0.0","tract_cent":"1169642.37663911","census_t_1":"17031600800","tract_numa":"18","tract_comm":"60","objectid":"456","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1882588.88235388","census_tra":"600800","tract_ce_3":"41.83332759","tract_crea":"","tract_ce_2":"-87.6530483","shape_len":"14747.5697788"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66084991962252,41.837847709608326],[-87.66084109389357,41.83746391638518],[-87.66083823053629,41.83735185127643],[-87.66083456968335,41.837238848445935],[-87.66080501519214,41.83693927578736],[-87.66078185379978,41.83670450575411],[-87.66076973553854,41.83649016282154],[-87.6607672087125,41.83644547110816],[-87.66076347006906,41.836367951156596],[-87.66074497116507,41.836193115165884],[-87.66072789409291,41.83613132434705],[-87.66071654658708,41.83610063189113],[-87.66068220090281,41.83605527990187],[-87.66067329289024,41.836043517677034],[-87.66058081359958,41.83593548260581],[-87.66042498480827,41.83573794725019],[-87.6604171102984,41.83572796522769],[-87.66029408229019,41.83561596221006],[-87.66020800469357,41.83553691964315],[-87.6600056433903,41.83535109657972],[-87.65996833561324,41.83532200818955],[-87.65983209262713,41.83522337629681],[-87.65972340057036,41.83514296309222],[-87.65967213621015,41.8351150825589],[-87.65963134045236,41.83510370156019],[-87.65962021236159,41.83510211898364],[-87.65959048628557,41.835097891064585],[-87.65952913575263,41.8350975311778],[-87.65944914549593,41.835104032335686],[-87.6592816284926,41.83511836238962],[-87.65901776259483,41.83514546372794],[-87.65897720379779,41.835146509924904],[-87.65872654411,41.83515297440855],[-87.65836251299578,41.83515724883167],[-87.65770155794992,41.83516500702194],[-87.6569165408843,41.83517515081847],[-87.65654864595189,41.835180430502284],[-87.6562603677603,41.835184566927346],[-87.65594553503058,41.835188426375204],[-87.6553378474265,41.835195996891095],[-87.655003227106,41.8352019027255],[-87.65472916156398,41.83520530556746],[-87.65427832808662,41.83521090161058],[-87.6541193367094,41.8352134851706],[-87.65385112230489,41.835217842865035],[-87.65351367367677,41.83522554872205],[-87.65302171977952,41.83523678097303],[-87.6528370821783,41.83523903521915],[-87.65229178785222,41.83525317611443],[-87.6520066963997,41.835260568320464],[-87.65171548390776,41.83526403761431],[-87.65155132477801,41.835266043037905],[-87.65107409246718,41.83527135948064],[-87.65106802240001,41.83500935638426],[-87.65106542222439,41.83485335660545],[-87.65106269580903,41.83476604504399],[-87.65062478616922,41.83477074302413],[-87.65042694113498,41.834772822686276],[-87.65006493538537,41.83477723845295],[-87.64978630897484,41.83478079474355],[-87.649528969101,41.834784092890345],[-87.64925764628556,41.83478759121361],[-87.64918681489313,41.83478850442152],[-87.64892356416894,41.83479204043076],[-87.64862786083471,41.83479718618863],[-87.64836441173121,41.8348017699639],[-87.64810803950876,41.83480378089236],[-87.6480067069004,41.83480492990529],[-87.64782259177079,41.83480701702276],[-87.64747858510403,41.834813031799435],[-87.6471773221916,41.83481626162578],[-87.64695910843186,41.83481860057274],[-87.64683728068603,41.83482011263569],[-87.64620216248701,41.83483032078392],[-87.64620127495724,41.834737065336],[-87.64619649481595,41.834587035189244],[-87.64619375431921,41.83439911893292],[-87.64567750554875,41.834406649653744],[-87.64557909501646,41.834408086799904],[-87.64532033635025,41.8344118653816],[-87.64497772175578,41.83441711069378],[-87.64469935918184,41.83442137138195],[-87.64442066080791,41.834424914225714],[-87.64436731214056,41.83442549462803],[-87.64414101444278,41.834427956737095],[-87.64375687319678,41.83443205020513],[-87.64375392348197,41.83425000042879],[-87.64374817853981,41.834081028951445],[-87.64374265284445,41.83387789267774],[-87.64373793723163,41.83361641816978],[-87.64373425415555,41.83342967620957],[-87.64372872213639,41.833203241056395],[-87.64372460067855,41.83303683146228],[-87.64372040812422,41.832894104453224],[-87.64371396530616,41.832609979059086],[-87.64414986180732,41.83260447259639],[-87.64432697142851,41.832602245874426],[-87.64439662330257,41.83260137002355],[-87.64469025009006,41.8325976423025],[-87.64493080347567,41.83259435454277],[-87.64524576424392,41.832590049358025],[-87.64549032585465,41.832587151895325],[-87.645545112113,41.83258650301218],[-87.64568577769526,41.832584835880766],[-87.64614714561701,41.8325792545112],[-87.64614418457386,41.83246891728386],[-87.64613920972515,41.83223762817817],[-87.64613483892107,41.832035596560104],[-87.64613049805655,41.831777115271386],[-87.64612820394011,41.831640519659075],[-87.64612523720824,41.83147878225956],[-87.64612132619976,41.83126467831619],[-87.64611756695602,41.83105696996417],[-87.64610614504136,41.830750410884654],[-87.64620338503221,41.83074924207384],[-87.64633875690396,41.830747614641716],[-87.64660169876623,41.83074397291279],[-87.64676771828887,41.83074168132632],[-87.64693326549589,41.830739396282276],[-87.64727117039303,41.83073578905439],[-87.64771448108493,41.83072984954429],[-87.64790809958093,41.83072725479632],[-87.64854055077289,41.83071877675272],[-87.64916246991311,41.83071043694022],[-87.64935190476376,41.83070789606834],[-87.64949131965689,41.8307060258203],[-87.64976002982111,41.83070164280725],[-87.65000646747549,41.83069726387829],[-87.65029754123186,41.83069555109741],[-87.65066213785482,41.83068941722805],[-87.65096790671484,41.83068541300213],[-87.65125025578988,41.83068171455916],[-87.65145911085108,41.83067823447873],[-87.6516519362325,41.830677705023284],[-87.65176415717623,41.830676301802896],[-87.65289189048936,41.83066035883838],[-87.65339161152535,41.83065302326933],[-87.65402682227436,41.83064369544311],[-87.65506830741833,41.830629597524805],[-87.65572758603237,41.83062025339763],[-87.65634507052954,41.830611498357285],[-87.65729288060135,41.830600724969024],[-87.65738534546037,41.83059979273721],[-87.65736590123237,41.83088299105074],[-87.65739735919026,41.831084111475924],[-87.65742970530492,41.8311973382147],[-87.6576784611287,41.83147509463641],[-87.65846278935184,41.83234056977656],[-87.65865855104472,41.83255658085666],[-87.65918505537346,41.83311985979353],[-87.66026986751343,41.834280406035845],[-87.66027169351904,41.834282359951125],[-87.66035395483605,41.83437036128594],[-87.66089565655655,41.834656494134364],[-87.66128690111876,41.83486315059784],[-87.66167098705928,41.835252805322185],[-87.66185809798635,41.83550960264486],[-87.6619899180006,41.83569051422976],[-87.66248658025755,41.83614133519198],[-87.66307794094101,41.836822758413405],[-87.66314322142904,41.83693081882717],[-87.6631733548485,41.83698069878505],[-87.6633606109525,41.83763553008669],[-87.66343971827025,41.83780547730856],[-87.66346551323149,41.83784343494187],[-87.66183197201391,41.83784801417571],[-87.6618088577638,41.83784222996997],[-87.66180051750082,41.83784014276788],[-87.66175104045297,41.837837575743606],[-87.66165606196483,41.83783477006261],[-87.66143853325981,41.83784087984704],[-87.66125321942566,41.83784285578287],[-87.66120753827617,41.83784334287399],[-87.66086225130158,41.83784755897412],[-87.66084991962252,41.837847709608326]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6269300.14907","perimeter":"0.0","tract_cent":"1163421.46582778","census_t_1":"17031720600","tract_numa":"28","tract_comm":"72","objectid":"458","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1834965.98957735","census_tra":"720600","tract_ce_3":"41.70277669","tract_crea":"","tract_ce_2":"-87.67720702","shape_len":"10025.7450862"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67944513561618,41.699064674501244],[-87.67967191317989,41.699060668072214],[-87.67986129144987,41.69905790303252],[-87.6799609625044,41.699058140158236],[-87.68015891155366,41.69905877144133],[-87.68042255070436,41.69905961123191],[-87.68055836860528,41.69905933994854],[-87.68061899219975,41.69906085941385],[-87.68073848225336,41.699063848203025],[-87.68094074367347,41.699068948445415],[-87.68124139521113,41.699070599947184],[-87.68138771505961,41.699078961390505],[-87.68139611647388,41.699330515257245],[-87.68140308450523,41.69955526066208],[-87.68140531397623,41.69962717479709],[-87.68141334691718,41.69988683412707],[-87.68142245332433,41.70017805934458],[-87.68143030278868,41.700401547597465],[-87.68143821056674,41.70062651783644],[-87.68144326317272,41.700771583845544],[-87.68144721498079,41.70090628595259],[-87.68145402348124,41.70113837010173],[-87.68146499902208,41.701469316047145],[-87.68147560061757,41.70179016126414],[-87.68148380697333,41.702036319645636],[-87.68149143755309,41.70239032638167],[-87.68149498303053,41.702536015540815],[-87.68150316760378,41.70273329175844],[-87.68151077923353,41.70290455889901],[-87.68152269866769,41.703268963748265],[-87.68154111408145,41.70384598119066],[-87.68155945066697,41.70437277689964],[-87.6815643740696,41.70455417836924],[-87.68157231521297,41.7048467406316],[-87.68158664914753,41.70526950348013],[-87.68160386174927,41.705882272495465],[-87.6816089019039,41.70605039120507],[-87.68162036664012,41.70637632437215],[-87.68112333452511,41.70637657159437],[-87.68086981208914,41.706379084276655],[-87.68062167237044,41.706381736746],[-87.6805449435964,41.706382322623384],[-87.68041697494337,41.706383415383826],[-87.68013049453128,41.70638586157097],[-87.68000808009853,41.70638824097713],[-87.67984757139446,41.706391360853225],[-87.67970203792784,41.70639478687637],[-87.67941276421236,41.706401758346885],[-87.67920684581597,41.706404908994884],[-87.67895913166764,41.706408699192295],[-87.67878642346852,41.70641224346831],[-87.67858474167419,41.70641630876455],[-87.67839423164523,41.706420310590254],[-87.67815723665487,41.706425288342906],[-87.67799573713792,41.706428626115596],[-87.67767222415594,41.706435310945906],[-87.67759306984435,41.70643672407052],[-87.6774811696011,41.7064387214134],[-87.67719040526988,41.70644458104988],[-87.67695296935878,41.70644975688112],[-87.67678750489566,41.70645264027213],[-87.67648808149664,41.706457858080036],[-87.67615925619982,41.70646475994042],[-87.67589571220446,41.706469591901524],[-87.6757101457076,41.70647349735686],[-87.67557165720032,41.70647559178812],[-87.67536654238619,41.70647869322485],[-87.67521888739924,41.70648186376329],[-87.67502449183563,41.7064860378107],[-87.6749057388169,41.70648845800294],[-87.67470553158576,41.70649156469793],[-87.67453239309836,41.706494167315945],[-87.67437254759525,41.70649688102679],[-87.67409373264319,41.706501613601546],[-87.67390216566326,41.706504960291326],[-87.67358397287421,41.706510625959744],[-87.67328372093726,41.706516668228794],[-87.67303252135986,41.706521184709814],[-87.67301916864295,41.70612251741602],[-87.67300912582726,41.7058012361134],[-87.67300302366289,41.70560306055696],[-87.67299612461102,41.705404029672614],[-87.6729894347865,41.705184554736874],[-87.67298281167744,41.70498003676617],[-87.6729790091382,41.70482913173305],[-87.67297464495115,41.70468730692182],[-87.67297120461647,41.70457548347725],[-87.67296444785748,41.70438400027788],[-87.67295561914548,41.70413020889979],[-87.6729482644559,41.70391846910098],[-87.67293949616706,41.703665940440104],[-87.67293231107595,41.70341970537985],[-87.67292638298154,41.703200975712406],[-87.67292236089584,41.703064422212584],[-87.6729152994466,41.70285625168666],[-87.67291508821361,41.70284543781451],[-87.67291096594982,41.70272504783137],[-87.67291095084158,41.702724627587685],[-87.67290345484278,41.70251426759535],[-87.67289497436586,41.70219431234172],[-87.67289396907229,41.70216730235893],[-87.67288603968893,41.70191796241127],[-87.67287925769624,41.70170468844571],[-87.67287387290467,41.70155459753019],[-87.67286825155585,41.70139896170406],[-87.67286386047883,41.70127697843303],[-87.67285995730658,41.70116811586222],[-87.6728552454424,41.701023626959085],[-87.67285075950473,41.70088608305552],[-87.67284110444864,41.700612884350825],[-87.6728321704172,41.70033367969252],[-87.67282455721934,41.70009004913902],[-87.6728140471679,41.69975732094277],[-87.67280487629503,41.69945111066235],[-87.67279691934506,41.69918744886756],[-87.6728799424931,41.69918641226637],[-87.67299645132567,41.69918374743219],[-87.67319925112531,41.69917910829674],[-87.67341714322212,41.69917393799608],[-87.67359844504912,41.69916965496156],[-87.67376062788557,41.699165810776684],[-87.67392346942096,41.69916197014249],[-87.67415629397061,41.699157533156026],[-87.67436018555301,41.699153647161836],[-87.67460971064246,41.6991488909002],[-87.67479069198208,41.699147293592],[-87.6749716367008,41.69914569578894],[-87.67517082551358,41.699143269116504],[-87.67535793674845,41.69914022435703],[-87.67557002542983,41.6991367728434],[-87.67578731546746,41.699133158870715],[-87.67595025559133,41.69913044110393],[-87.67617703239682,41.699126551341905],[-87.67656063777332,41.699119617213206],[-87.67673797312119,41.69911642020553],[-87.67691018335304,41.69911312284574],[-87.67707338473089,41.69910991099879],[-87.67722728377339,41.69910683791417],[-87.67741890638155,41.6991030468676],[-87.67757243868331,41.699100026114074],[-87.67775006787984,41.6990968742281],[-87.6779867333083,41.699092674504826],[-87.6781696008122,41.69908921648505],[-87.67837744628207,41.69908529677966],[-87.67853108724375,41.69908238541208],[-87.67869388544537,41.69907919613493],[-87.67895549765386,41.699074096421036],[-87.6791732697419,41.69906985061225],[-87.67932713033825,41.69906693943041],[-87.67944513561618,41.699064674501244]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5275122.17641","perimeter":"0.0","tract_cent":"1168844.168142","census_t_1":"17031710700","tract_numa":"24","tract_comm":"71","objectid":"459","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1851163.68561786","census_tra":"710700","tract_ce_3":"41.74711049","tract_crea":"","tract_ce_2":"-87.65688431","shape_len":"11934.1294328"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66302811549461,41.74308498288686],[-87.66325155885002,41.74307676371909],[-87.66325400596213,41.743220085574535],[-87.66327670887325,41.743944084519306],[-87.66327941758269,41.74403951995413],[-87.6632926698463,41.744509477872214],[-87.66330237910246,41.74489404567535],[-87.6630592364131,41.74489838454716],[-87.66269515839173,41.74490405392266],[-87.66226569762738,41.74491073989212],[-87.66208696325361,41.74491352389041],[-87.6618851263614,41.74491666713046],[-87.66183286555038,41.74491735570455],[-87.66148172587425,41.74492197031001],[-87.6610574504939,41.744927552251085],[-87.66087172137576,41.7449292912104],[-87.66070754125673,41.744930828350306],[-87.6602614740234,41.74493813438244],[-87.65984604578281,41.74494493714166],[-87.65965857247711,41.74494820566858],[-87.65951857396078,41.74495064635496],[-87.65904883970117,41.744956202638726],[-87.65869039533779,41.744960441192525],[-87.65844485603391,41.74496568435082],[-87.65844708453982,41.745075535648716],[-87.65847043437074,41.74593908710342],[-87.65849108744473,41.746703278644304],[-87.65849302841099,41.74678614920443],[-87.6584958227768,41.74690545216777],[-87.65851558768068,41.74767051653978],[-87.65853677977952,41.748491792597605],[-87.65854065641967,41.748606930534756],[-87.65854522125228,41.74874250716908],[-87.65856028400664,41.74930578225943],[-87.65857946969027,41.75002121185173],[-87.65858637527403,41.75027870976701],[-87.6585895857531,41.75042580449272],[-87.65859306194528,41.75058504103597],[-87.6585981431931,41.75078781992528],[-87.65860229228545,41.75095331770174],[-87.65860309080499,41.75098516484591],[-87.65861177688261,41.75133154751227],[-87.65862218949539,41.75174753533413],[-87.6586310641059,41.75207942885463],[-87.6586344646863,41.75224803341669],[-87.65833737356746,41.752253833348874],[-87.65781910712218,41.752259969879454],[-87.6577999015844,41.75226019752953],[-87.65728350454026,41.75226632589466],[-87.65701173896812,41.75227071182349],[-87.65674644795808,41.75227499253254],[-87.65641887373181,41.752279901334056],[-87.65626529466601,41.752282202307484],[-87.65620323998243,41.752283126431934],[-87.65598240153552,41.75228641512009],[-87.65587713214998,41.75228798250484],[-87.65539321220497,41.752294104504955],[-87.65515514474002,41.75229711540396],[-87.65459951099064,41.752305415362535],[-87.65417539133036,41.75231169090998],[-87.65378626842276,41.752317562923245],[-87.65377928580028,41.75205593969285],[-87.65376905333268,41.751719646915035],[-87.6537605424921,41.75140411124797],[-87.6537526136985,41.751110149521125],[-87.65374900767863,41.75095049194301],[-87.6537479298636,41.750902789812436],[-87.65374666831627,41.75084693518392],[-87.65374466398546,41.750759215047935],[-87.65373727515117,41.7504972839014],[-87.65372731596177,41.750091477731736],[-87.65372568752058,41.75002513849967],[-87.65371648717596,41.74965023931842],[-87.65369697787538,41.7488732656898],[-87.65369030102683,41.74867678900751],[-87.65368777717887,41.74860251286734],[-87.65366475115951,41.74780114884576],[-87.65364219903714,41.74701743313519],[-87.65364015916164,41.746857642002624],[-87.65363860741023,41.74673606576531],[-87.65361762108196,41.74600197653028],[-87.65359727833129,41.745290284561484],[-87.65359236430795,41.745036789809426],[-87.65358944699497,41.74488630349696],[-87.65357094612324,41.74429880197733],[-87.65355913268452,41.74389734976502],[-87.65354096284031,41.743347776726],[-87.65353912690468,41.74321630165641],[-87.65374683495672,41.74321106558853],[-87.65414936956282,41.74320542630079],[-87.65462844422089,41.74319871300753],[-87.65475588919105,41.74319558803799],[-87.65492789300508,41.74319137033731],[-87.6553608324472,41.743185489185855],[-87.65582639221876,41.74317916317166],[-87.65597024066835,41.74317735616687],[-87.65612822188967,41.74317537184484],[-87.65657584132597,41.74316896641777],[-87.6570424496285,41.7431622873608],[-87.65718452298727,41.74315992611189],[-87.65735220822313,41.74315713934024],[-87.65767771125692,41.743153126181134],[-87.65778218586986,41.74315201788314],[-87.65820198077449,41.743147563324754],[-87.65839827576269,41.74314419146248],[-87.65899961701088,41.74313385936476],[-87.65947217347482,41.743125737965414],[-87.65961399514927,41.74312440793823],[-87.65979627363404,41.743122698527344],[-87.66021813524102,41.74311627967419],[-87.66069474972463,41.74310902583362],[-87.6608269755451,41.74310725502748],[-87.66094710683996,41.74310564573636],[-87.66143251466899,41.74309846444261],[-87.66150276961206,41.743097424884475],[-87.66163646236488,41.743095462212594],[-87.66166116297836,41.743095099185425],[-87.6617473605971,41.74309383268661],[-87.66185188391086,41.74309207962697],[-87.66195017654132,41.74309046240784],[-87.66203985001748,41.74308962380411],[-87.66224276053121,41.74308772588349],[-87.66244723471057,41.743087012122444],[-87.66263419229891,41.74308635931082],[-87.66302811549461,41.74308498288686]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3513376.60348","perimeter":"0.0","tract_cent":"1164660.98295917","census_t_1":"17031670400","tract_numa":"23","tract_comm":"67","objectid":"463","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866869.99474729","census_tra":"670400","tract_ce_3":"41.79029996","tract_crea":"","tract_ce_2":"-87.67177","shape_len":"7959.63926058"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67394107985884,41.78662791575892],[-87.67409987728286,41.78662752741925],[-87.67410421492367,41.786745868802676],[-87.6741083556032,41.7869573126528],[-87.6741110488815,41.787084443609515],[-87.67411245847603,41.78715097328095],[-87.67411738989206,41.78737471607098],[-87.67412206260084,41.78757768501722],[-87.67412362177966,41.78764185600115],[-87.67412975101963,41.78786826513605],[-87.6741321775388,41.788046602979854],[-87.67413416422661,41.7882463986358],[-87.67413562463024,41.788379450153904],[-87.67414262408552,41.78845198620285],[-87.67414938158515,41.78852201258194],[-87.67415364297266,41.78868589853096],[-87.6741590145393,41.7888917510225],[-87.67416454906748,41.789103175073386],[-87.67417020735415,41.78932041826732],[-87.67417497461278,41.78950294081533],[-87.67418027604035,41.78970849100292],[-87.67418308177609,41.78981517731998],[-87.67418460385262,41.78987306337072],[-87.6741888577848,41.7900376901956],[-87.67419210133288,41.79016131155162],[-87.6741960829093,41.790272275268066],[-87.67419926148133,41.790360862388795],[-87.67420319670428,41.79051368693188],[-87.67420878959133,41.79072788298768],[-87.67421342713207,41.79090744118933],[-87.67421796813603,41.79108343098276],[-87.67422177762936,41.7912306015521],[-87.67422643048124,41.79140999489393],[-87.67423172905966,41.79161584686733],[-87.67423719257435,41.79182707858301],[-87.67424494635745,41.79205100203848],[-87.67424556677979,41.79209575147817],[-87.67424781421347,41.79225788287195],[-87.67425295643622,41.79248258717044],[-87.6742594375513,41.79274484098864],[-87.6742660045516,41.79298794016455],[-87.67426897538499,41.79309743202803],[-87.6742723404107,41.79322146044285],[-87.67427915663268,41.79347249201662],[-87.67428318635325,41.79355530065986],[-87.67429288550653,41.79375888934017],[-87.67429615025452,41.793836152601386],[-87.67430056576606,41.79391631549006],[-87.67404941990074,41.793918849258425],[-87.67362397335089,41.79392422804136],[-87.67333635697237,41.79392784501024],[-87.67307758503625,41.79392946125451],[-87.67281232179067,41.793931117530036],[-87.67238647203261,41.79393646196792],[-87.67199968202588,41.79394137106649],[-87.67187388374093,41.79394273711697],[-87.67149920434967,41.793946803982166],[-87.67121163042002,41.793949839574935],[-87.67094936267371,41.7939526087232],[-87.6708508692044,41.79395388245742],[-87.67065899423473,41.79395636393443],[-87.67052523476136,41.79395809340279],[-87.67039863266379,41.7939592015487],[-87.67019890109376,41.79396090282138],[-87.6699726902537,41.79396286248792],[-87.66975990197716,41.79396467970043],[-87.66955965644823,41.79396643177842],[-87.66944272014679,41.79396882882579],[-87.66943936731727,41.79386754611163],[-87.66943791764234,41.79380674904915],[-87.66943660282445,41.79375161148371],[-87.66943362889714,41.79360348626192],[-87.66943204922723,41.79352479734468],[-87.66942312970504,41.79335503912372],[-87.66941899448379,41.79317652683025],[-87.6694169430908,41.79308946647886],[-87.66941557719186,41.79303149897725],[-87.66941140873011,41.7928526571671],[-87.66940861268186,41.792732715677325],[-87.66940204398524,41.79250929276719],[-87.66939707466031,41.792340545287985],[-87.66939255960189,41.79215414725394],[-87.66939108298179,41.79209319551395],[-87.66938880638654,41.792015134831615],[-87.66938735032542,41.79196452176184],[-87.6693815362042,41.79174261254027],[-87.66937493527625,41.79149034694449],[-87.66936908313559,41.791268574698925],[-87.66936288305793,41.791030773794276],[-87.66935676908304,41.79079884615291],[-87.66935137811831,41.790592801314645],[-87.66934664013334,41.790412282120144],[-87.6693447364128,41.79033228088826],[-87.66934331516804,41.790272578648576],[-87.66933992843524,41.79014945031597],[-87.66933556579859,41.78998948799439],[-87.66933196144363,41.78985905886578],[-87.66932994047615,41.78978580213425],[-87.66932713117117,41.7896839725306],[-87.66932106041003,41.78946208917886],[-87.66931580776188,41.7892710837917],[-87.66930986573779,41.78905449764462],[-87.66930336840582,41.78881710657178],[-87.66929798376358,41.78862113323722],[-87.66929523935953,41.7885098954681],[-87.66929314914167,41.78842516307514],[-87.66928966789,41.78832190280706],[-87.66928410713527,41.788157213331026],[-87.66928358530895,41.78809546326479],[-87.6692825059695,41.787967710922665],[-87.66927256564738,41.78771827579927],[-87.66927151751459,41.78767071505181],[-87.6692687458427,41.787544928805985],[-87.66926303150352,41.78727521419292],[-87.66925892513738,41.787129496133154],[-87.66925539972111,41.78700565341493],[-87.66925029265562,41.78682540612667],[-87.66924494782619,41.78668799033061],[-87.66937386480468,41.786686628421215],[-87.66952580166206,41.786684377959226],[-87.66968408303357,41.78668202673333],[-87.66991842447705,41.7866785503028],[-87.67013175212597,41.78667539117052],[-87.67033114409566,41.78667242564585],[-87.67045863935273,41.78667156886815],[-87.67056421870387,41.78667089808838],[-87.67063253483997,41.78667045985447],[-87.6708905259368,41.78666706297791],[-87.67112691659902,41.78666398009886],[-87.67133866332433,41.78666122125553],[-87.67151920152249,41.786658858538146],[-87.67167140565687,41.7866572042096],[-87.67182449284022,41.78665553994497],[-87.67205981394086,41.78665305273093],[-87.67236621682375,41.786648641380324],[-87.67260187717899,41.78664524939198],[-87.6727425545196,41.78664323151308],[-87.67288860922407,41.786642063272396],[-87.6730319583752,41.786640916343174],[-87.6732835932413,41.78663873993085],[-87.67350868651118,41.78663597144053],[-87.67375353535076,41.78663046187459],[-87.67394107985884,41.78662791575892]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"17262625.4116","perimeter":"0.0","tract_cent":"1150537.44565509","census_t_1":"17031700200","tract_numa":"69","tract_comm":"70","objectid":"460","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1853163.3017688","census_tra":"700200","tract_ce_3":"41.75297313","tract_crea":"","tract_ce_2":"-87.7239139","shape_len":"25870.659578"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71633186881424,41.75882935132028],[-87.71622608710021,41.75877629835608],[-87.71622182861566,41.75888604771028],[-87.71587856174274,41.7587068529761],[-87.71581291444704,41.758672882139756],[-87.71553846086724,41.75853213318534],[-87.71530627792498,41.7584266011338],[-87.71507317951134,41.75832106341143],[-87.71484053632348,41.75821587070404],[-87.71460743321957,41.758111018086204],[-87.71445786307578,41.75803817449343],[-87.71419433670314,41.75790502802073],[-87.71392076367505,41.757768739434944],[-87.71372003731308,41.75767983931654],[-87.7136324126224,41.757644719866605],[-87.71342423252254,41.757568814481324],[-87.71327673065701,41.7575193073835],[-87.71308211935163,41.757461655632795],[-87.71297201145357,41.75743018744838],[-87.71278459500843,41.75738663861045],[-87.71254775561138,41.75733733382749],[-87.71254680479782,41.75730627192602],[-87.71254680202152,41.757306179702326],[-87.71253416729444,41.75689336914258],[-87.71252344046147,41.75662779926029],[-87.71247866468755,41.75552194472809],[-87.71246272068129,41.75512549637306],[-87.7124261878027,41.754217086051824],[-87.71240111867402,41.752255113319336],[-87.71233891031376,41.75148499878278],[-87.71224115709573,41.74965024236423],[-87.71253162493119,41.749645637732485],[-87.7128010188027,41.74964126076856],[-87.71300672983115,41.749637912348014],[-87.71332285465905,41.7496327578818],[-87.71351940450164,41.749629358832806],[-87.71385248141341,41.74962395131701],[-87.71411123344987,41.74962124089786],[-87.71459288382394,41.74961629786964],[-87.71480401136714,41.74961398393324],[-87.71500788965486,41.749610621788584],[-87.7153075216366,41.74960571614162],[-87.71554621552333,41.74960219726812],[-87.71583622824222,41.74959723824598],[-87.7161646414644,41.749591801157486],[-87.71675120830311,41.74957711017302],[-87.71703020450877,41.749574490837695],[-87.71703021770345,41.74957449063404],[-87.71729133319496,41.749572117516564],[-87.71752956264852,41.749569278383866],[-87.71790523473165,41.749564430166394],[-87.71823302006958,41.749557245006706],[-87.71835379061129,41.74955448277604],[-87.71871664061644,41.7495492202366],[-87.71902313646036,41.74954502796659],[-87.719364454426,41.74953999156932],[-87.71946662077909,41.74953847922871],[-87.71960406079589,41.74953681217913],[-87.71997057547033,41.749531565253946],[-87.72029311661197,41.749526082820154],[-87.7204264398689,41.749523707018376],[-87.7219117309776,41.74950177640799],[-87.72190928684712,41.749438459843674],[-87.7219041822379,41.74930620384143],[-87.72189397527343,41.74900315019147],[-87.72188642529277,41.748779256587746],[-87.72187930757399,41.74856774211737],[-87.72186827275472,41.74823995777891],[-87.72185877852253,41.747958368376835],[-87.72184997058105,41.7476971454026],[-87.72184375996235,41.74751251515059],[-87.72183962378666,41.7473895628063],[-87.72182621248609,41.74699173091788],[-87.72182360555186,41.74691504097626],[-87.72181489654693,41.74657939246888],[-87.72228625669551,41.74657018224912],[-87.72249964162589,41.7465660477791],[-87.7227563122006,41.74656104521731],[-87.72303515169422,41.7465561214163],[-87.72304632376543,41.74689327528066],[-87.72305267387354,41.74708563064698],[-87.72305863575568,41.74726481097465],[-87.72306327773143,41.7474053718234],[-87.72307011385175,41.74759594595086],[-87.72307435232571,41.747714110793055],[-87.72308113294005,41.74790358661604],[-87.72308795776819,41.74809613629583],[-87.72309524756722,41.7483015043711],[-87.72310139467771,41.74847275458427],[-87.72310729907963,41.748638679539894],[-87.72311505288515,41.74885697576311],[-87.72312095708575,41.74902292814917],[-87.72312611204154,41.7491673885986],[-87.723137304459,41.749481191347726],[-87.72325230239696,41.74947905770764],[-87.72352582126486,41.74947433500627],[-87.72372603401756,41.74947093793463],[-87.72400322372194,41.74946520418179],[-87.72400322665351,41.749465204197335],[-87.72428551542369,41.749459417494194],[-87.7245067545047,41.749454838220004],[-87.72483983645047,41.74944871279641],[-87.72512160301736,41.74944368666139],[-87.72548812949933,41.749437050039795],[-87.72576989597833,41.749432022863054],[-87.72593299981418,41.74942911206445],[-87.72619873424757,41.74942399880788],[-87.7265139484847,41.74941811687804],[-87.7269501187397,41.74940978570185],[-87.72774869285047,41.74939478729349],[-87.72805886785953,41.74938887483887],[-87.72825449999957,41.74938544574435],[-87.7285367277628,41.74938007089714],[-87.72877634260057,41.74937584330395],[-87.72944754694316,41.74936325018492],[-87.72974626779995,41.74935761601124],[-87.7300875967902,41.74935117565648],[-87.73043854564774,41.74934478476549],[-87.73162904274865,41.7493246306141],[-87.73190188283719,41.74931986520471],[-87.7321323333485,41.749315925405064],[-87.73232017496697,41.749312791936184],[-87.73255887045393,41.74930889468318],[-87.73274396973542,41.749305059281184],[-87.73286447095428,41.74930225925621],[-87.73319893252726,41.749295430727926],[-87.73339548315325,41.74929165463701],[-87.73370244491268,41.74928639624419],[-87.73389945072354,41.749282964705436],[-87.73410095759408,41.7492791984453],[-87.73449724024161,41.74927208177115],[-87.73507736909225,41.74926166086639],[-87.73529453563495,41.74925764582934],[-87.73566289579561,41.74925064352385],[-87.73588509808455,41.749246996603866],[-87.73619297561862,41.749241736318005],[-87.73637577791602,41.74923856975307],[-87.73649215920521,41.74923540092963],[-87.73702273779122,41.74922203297976],[-87.73715176781909,41.74923122447176],[-87.73741406393168,41.74922309863488],[-87.73770820701367,41.74921398578322],[-87.73802244386673,41.74920662095602],[-87.7383378807647,41.749200214034126],[-87.73875557325337,41.7491924418715],[-87.73892570717298,41.74919001691006],[-87.73926128474534,41.74918523309188],[-87.73957646871453,41.749182389066355],[-87.74015562356806,41.74917867806154],[-87.74047996199822,41.74917659865104],[-87.74135816721548,41.7491470941882],[-87.74135816755418,41.74914709720869],[-87.74139193591547,41.74952414750199],[-87.7413957109103,41.749651832596754],[-87.74140071526693,41.7498210995168],[-87.74140963615211,41.75027011507943],[-87.74141213164403,41.75055778717729],[-87.74141308909927,41.750668140033376],[-87.74142469943739,41.75098801223752],[-87.7414246997131,41.750988022118456],[-87.7414346574147,41.75124441893942],[-87.74144411315508,41.75149167570581],[-87.74145644815151,41.75167684244827],[-87.74146648421652,41.75178123338179],[-87.74146741311797,41.75227847948819],[-87.74147391320169,41.752363791314494],[-87.74148327461245,41.75248666251126],[-87.74149570342651,41.75264951763716],[-87.74149737330829,41.75267139948778],[-87.74149737329317,41.752671401134286],[-87.74149898953141,41.7527366241459],[-87.74150149064495,41.75283753350777],[-87.74150149060462,41.75283753789846],[-87.74150149160666,41.75283758839892],[-87.74150162497357,41.75284285816107],[-87.74149433244317,41.75307419391613],[-87.74149466212396,41.7531293051984],[-87.74149563409964,41.753291549959094],[-87.74130773416239,41.75329582355364],[-87.7412149191713,41.75327910142508],[-87.74121169064668,41.75327851973344],[-87.74027641242206,41.75320954770322],[-87.74018119074772,41.75320253842543],[-87.73939561355004,41.75314462312162],[-87.73911916149605,41.7531181521644],[-87.73868115699061,41.753124118738945],[-87.73828807952937,41.75312654317688],[-87.73818722531381,41.75313425374029],[-87.73777028264976,41.75314135532769],[-87.73730617663352,41.75314615251841],[-87.73718108824413,41.753148934213165],[-87.73658220015916,41.75316434907103],[-87.73658196972679,41.753040853943055],[-87.73232911070717,41.75332075276168],[-87.73232947906531,41.753304837694934],[-87.73232378086247,41.75328225707604],[-87.73232325886092,41.7532801884295],[-87.73232292639193,41.753279095553026],[-87.73231504510217,41.7532531689039],[-87.73229832955622,41.753226077735455],[-87.73228366377285,41.75321120397497],[-87.73227317017138,41.753200561260314],[-87.73223523524837,41.7531813172975],[-87.73218456117841,41.75316837346793],[-87.73212954714032,41.75316490221702],[-87.73206704743426,41.7531664412957],[-87.73201306937646,41.75316588437827],[-87.73176743069489,41.75317179439618],[-87.73141350425762,41.753180308513336],[-87.73107919288768,41.753193277381705],[-87.73042053692343,41.753204543476706],[-87.73000766495073,41.753209736444816],[-87.72953582174199,41.753214618041156],[-87.72933897423808,41.75321791831883],[-87.72920157962842,41.75322022157191],[-87.72879846710376,41.75323282147208],[-87.72827747968756,41.753237439313544],[-87.727844880946,41.75324988058591],[-87.72724519562736,41.753261439227444],[-87.72697387027996,41.75326271654743],[-87.72697386405002,41.753262716514556],[-87.72689041561055,41.75326310926092],[-87.72650797862332,41.753264908483374],[-87.72494487779716,41.75329344349576],[-87.72428235354975,41.753328806300686],[-87.72371612036184,41.75333844090972],[-87.7234513241731,41.75334724447356],[-87.723173027093,41.75335367051141],[-87.72281582947348,41.753359676652195],[-87.72233626432269,41.75336849708011],[-87.72203628516748,41.75337409318685],[-87.72203842150911,41.75346040894168],[-87.72208095345238,41.75388560757924],[-87.72210187865326,41.754134164150614],[-87.72212922550705,41.754257076806574],[-87.72214654090372,41.75433490144614],[-87.72215421736759,41.7544460889556],[-87.72216162545749,41.75458560644786],[-87.72216599861632,41.75473818387117],[-87.72217066159762,41.75486025189113],[-87.72216988905308,41.754941684569545],[-87.72216852976132,41.755084964512015],[-87.72214691450948,41.75552264646886],[-87.7221515883283,41.75566277152544],[-87.7221605103082,41.75593025613886],[-87.72216420123279,41.75615474831303],[-87.72217158943623,41.756384882956475],[-87.72217742507308,41.75660158418162],[-87.72217568835241,41.75678463943338],[-87.72217526106843,41.75685586756926],[-87.72217498594735,41.75690174735048],[-87.72217731532136,41.75700884589021],[-87.72217598530328,41.75715161988713],[-87.7221753171933,41.757223275398204],[-87.72217820790127,41.75750194795402],[-87.72219178340266,41.75780172561332],[-87.72219532365052,41.75793846716572],[-87.72224785860007,41.759967630389255],[-87.7222591657025,41.760404356718034],[-87.72226308924002,41.760555889581134],[-87.72228674742385,41.76146963460926],[-87.7220740638792,41.76141053394931],[-87.72183435689523,41.76132315528057],[-87.7215699859083,41.76122775573339],[-87.72129847127205,41.761112764076415],[-87.72101977450339,41.76098229678501],[-87.72062116549805,41.76079047164979],[-87.72016110603882,41.76055680930072],[-87.71967966142955,41.76030793775677],[-87.71941251921888,41.76016758016434],[-87.71925112549157,41.76008438850015],[-87.71905007065963,41.75998040227502],[-87.71900630270882,41.75995787050345],[-87.71896253805538,41.759934996243494],[-87.71891877016363,41.759912464713246],[-87.71887500557493,41.75988959014577],[-87.71883169877886,41.759866718284485],[-87.7187879342576,41.75984384313525],[-87.71874462752339,41.75982097124139],[-87.7187013248289,41.75979775604015],[-87.71865801852837,41.759774883567005],[-87.71861471552715,41.75975166860583],[-87.71857048975295,41.759729134492666],[-87.71852625746148,41.75970728640393],[-87.71848156379653,41.75968577886725],[-87.71843640511408,41.75966495517521],[-87.71839078579542,41.75964447148923],[-87.71834470145778,41.75962467164678],[-87.71829815538077,41.759605212077844],[-87.71825114210445,41.75958677965225],[-87.7181288157963,41.75953878544294],[-87.71800601515663,41.75949250402822],[-87.71788182392966,41.75944792967521],[-87.71775670022777,41.759405065657184],[-87.71762332713169,41.75936250033301],[-87.71749088649814,41.759318224661094],[-87.71735937943518,41.759272238650574],[-87.71722880485167,41.75922454229878],[-87.71710263122755,41.75919573622939],[-87.71700290564588,41.7591320825543],[-87.7168380539651,41.759075625922996],[-87.71678789372928,41.759051001050004],[-87.7166638552702,41.75899064671616],[-87.71658127273759,41.75895487050497],[-87.71642898614678,41.75887824148094],[-87.71633186881424,41.75882935132028]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5221660.24973","perimeter":"0.0","tract_cent":"1163504.93004625","census_t_1":"17031671400","tract_numa":"29","tract_comm":"67","objectid":"464","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1860845.22777907","census_tra":"671400","tract_ce_3":"41.77379153","tract_crea":"","tract_ce_2":"-87.67617778","shape_len":"10706.7539212"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67380840874921,41.77570666145346],[-87.67380489630727,41.77558624165283],[-87.67375992489868,41.774032108467466],[-87.67375666315247,41.77389145555285],[-87.67375382294642,41.77376895034012],[-87.67371941099107,41.7724920509681],[-87.67371342242201,41.772269838601744],[-87.67371300373615,41.77207648045776],[-87.67371269338237,41.771933054313436],[-87.67370528246298,41.771620318611035],[-87.6737014308485,41.771457787183444],[-87.6736971757682,41.77127935599554],[-87.67369324803555,41.77116887575587],[-87.67368892302173,41.77104722339411],[-87.67368128715596,41.770713308058944],[-87.67367611312656,41.77048703873942],[-87.67366792391131,41.770258987789305],[-87.67366270802151,41.77011373729042],[-87.67365520377328,41.769803918140155],[-87.67364848816914,41.76952665032694],[-87.67364514821735,41.76935670393944],[-87.67364294583287,41.769244641875744],[-87.67363609618732,41.7688991384841],[-87.67363057228634,41.768620489952404],[-87.67362490536182,41.76844095861179],[-87.67382646806348,41.768438021071404],[-87.6741953199613,41.76843423430176],[-87.67548622201257,41.768420971922886],[-87.67588476544212,41.76841666695533],[-87.67595450977687,41.76841561732964],[-87.6760602639172,41.76841402613075],[-87.67612774285327,41.76841301064155],[-87.67615086569805,41.76841266265812],[-87.67619577649835,41.768411986485035],[-87.67625472950142,41.76841109943619],[-87.67657802818904,41.768408159484366],[-87.67703288613535,41.76840402150214],[-87.67708126180622,41.768403663904394],[-87.67715290991352,41.768403134316245],[-87.67715306755242,41.76840313302115],[-87.67732612866666,41.76840185397968],[-87.67759759293533,41.768398270217105],[-87.67775111092644,41.76839624341031],[-87.67816814223416,41.76839073604089],[-87.67822589413959,41.768389973406215],[-87.67828975430963,41.76838913003424],[-87.67835603344726,41.76838836216399],[-87.67862000357837,41.768385304075245],[-87.6786441699968,41.769343106511386],[-87.67866660482701,41.770201187595404],[-87.67866856562054,41.77027870762319],[-87.67869592508725,41.77123833889479],[-87.6787021094619,41.77148638974192],[-87.67871506409507,41.77201461975883],[-87.67835026379667,41.772019220468856],[-87.67844794017034,41.773723944667665],[-87.67845417265588,41.773832036861215],[-87.67855717060962,41.77564401780954],[-87.67855717648352,41.775644125144964],[-87.67880834364558,41.77564090423728],[-87.67880901104836,41.775665190388885],[-87.67881062877152,41.775731405457755],[-87.67881603718396,41.7759657304851],[-87.6787992808213,41.77617145743787],[-87.67877850478203,41.776366870097824],[-87.67873449014711,41.77677449016114],[-87.67853602174044,41.77862507182412],[-87.67848283692642,41.77912285801922],[-87.67848331061856,41.77916642638279],[-87.67848523599672,41.77924734682086],[-87.67837576576913,41.77924826424915],[-87.67833460145532,41.779248609157385],[-87.6783104709036,41.779248811320635],[-87.67814927789426,41.779250161405294],[-87.67804274995083,41.779253305550164],[-87.67795812317901,41.77925580339079],[-87.6777718929965,41.779262206434325],[-87.67775818637385,41.77926239029956],[-87.67765189257923,41.77926381584365],[-87.67756350686047,41.77926500129856],[-87.67745573862777,41.77926644623667],[-87.67727954727198,41.779268808837614],[-87.67657253150806,41.7792796432639],[-87.67633838804231,41.77928184078612],[-87.67609102213436,41.77928416197178],[-87.67600456915443,41.77928560838701],[-87.67533071420716,41.77929687929628],[-87.67511895030997,41.77929979418022],[-87.67492244746374,41.77930249865594],[-87.67414647329444,41.77931270337751],[-87.67390512861013,41.77931565046503],[-87.67390677398882,41.779161846104664],[-87.67389596221837,41.77880693097239],[-87.67388290458564,41.77837829558496],[-87.67388108771506,41.77831955726751],[-87.67386286471702,41.77772199241595],[-87.67385745524733,41.77752384253337],[-87.6738538546321,41.777391939314896],[-87.67381222183086,41.77583738643308],[-87.67380840874921,41.77570666145346]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6989630.31173","perimeter":"0.0","tract_cent":"1178715.73789745","census_t_1":"17031690100","tract_numa":"40","tract_comm":"69","objectid":"461","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861953.59219806","census_tra":"690100","tract_ce_3":"41.77650052","tract_crea":"","tract_ce_2":"-87.62038469","shape_len":"10631.539185"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61561774229999,41.779979162187],[-87.61561456070483,41.77982422718016],[-87.61561455820205,41.77982408995006],[-87.61561453249652,41.77982287708802],[-87.61561252469942,41.779725102529696],[-87.61560904551538,41.77955569145101],[-87.61560435126908,41.77935192607168],[-87.61560244588736,41.779261309801264],[-87.61560092551372,41.779189003639694],[-87.61559874981363,41.779083273423545],[-87.61559745398552,41.77902029046584],[-87.6155954374235,41.77892425846304],[-87.61559319151564,41.778817296166096],[-87.61559150099148,41.778739240471985],[-87.61558905288663,41.77862621285099],[-87.61558223872656,41.7784227906773],[-87.61558060922364,41.77837414865934],[-87.6155792432762,41.77833336930634],[-87.6155727966084,41.7781409210898],[-87.61556872392909,41.777970035865366],[-87.61556738293943,41.777913670743494],[-87.61556265951131,41.77771513574036],[-87.61555765039357,41.777503492214365],[-87.61555764914809,41.77750343951621],[-87.6155485388222,41.7771205518754],[-87.61553990507048,41.776757236175065],[-87.61553754179108,41.77667047629863],[-87.61553572430213,41.77660374876324],[-87.61553474927852,41.776567961509535],[-87.61553427843285,41.77655067749372],[-87.61552258052377,41.776121220840025],[-87.6155163358224,41.77585926667734],[-87.61551186821855,41.77564974368648],[-87.61550901805748,41.77551607477456],[-87.61550289314127,41.775243418321345],[-87.61549533521622,41.77497105532215],[-87.61549440408824,41.77492101118855],[-87.61549370934966,41.77488369710509],[-87.61549368878046,41.774882582794156],[-87.61549188761676,41.77478579436862],[-87.61548930632583,41.774647054018736],[-87.61548222400344,41.77433204739223],[-87.6154752201851,41.774019867859664],[-87.61546956638247,41.77376741254357],[-87.61546344450731,41.77349453675686],[-87.615461849701,41.77342353194942],[-87.61545756525497,41.77323274941456],[-87.61545169758287,41.77303403557996],[-87.61544979997485,41.77296977132702],[-87.61571576260765,41.77296616032401],[-87.61573644056591,41.7729659900818],[-87.61590320123128,41.7729630797966],[-87.61613978362209,41.77295891166145],[-87.61625797525848,41.77295682912237],[-87.61628387673721,41.77295637277245],[-87.61682767723462,41.772946786437466],[-87.61686222329105,41.77294617722504],[-87.61693938790819,41.77294465811203],[-87.61707309338257,41.772942026015265],[-87.61708981935462,41.7729416966946],[-87.61732121856251,41.77293714117022],[-87.61735536022132,41.77293646891467],[-87.61737887118176,41.772936005927185],[-87.61764185880955,41.77293083045513],[-87.61774764214584,41.77292874866834],[-87.61785541543213,41.77292662758431],[-87.6179432128969,41.77292489931124],[-87.6180661082909,41.7729224803084],[-87.61829504952664,41.77291797365643],[-87.6184171185724,41.7729153578577],[-87.6186725436894,41.77291053033873],[-87.61885174140079,41.77290714345623],[-87.61910096492116,41.772902432017666],[-87.6193599814341,41.77289767524335],[-87.61979995007248,41.77288959640571],[-87.62010406692302,41.772884020062364],[-87.6202919864947,41.772880803907086],[-87.6205606392686,41.772876205771276],[-87.6208810400481,41.77287004726451],[-87.62100211480609,41.77286771975945],[-87.62108076683417,41.77286620544003],[-87.6211541383837,41.77286479252903],[-87.62149082056109,41.77285814871434],[-87.62154218934246,41.7728571346339],[-87.6216345943234,41.77285531106225],[-87.62189247416806,41.77285057474141],[-87.62209799306004,41.77284679912429],[-87.62234989109007,41.77284256070454],[-87.6224107209972,41.77284151010835],[-87.62270801932517,41.77283587946252],[-87.62300051419815,41.77283033909668],[-87.62318334158361,41.77281983355934],[-87.62331723965922,41.77281498348404],[-87.62349675938346,41.7728084804139],[-87.62372568037561,41.77280018748805],[-87.62380073009714,41.77279617781985],[-87.62392455681054,41.772806977560734],[-87.6240481819773,41.77277960719614],[-87.62491700879188,41.772727618198886],[-87.62512772322307,41.77272427864572],[-87.62515971610327,41.774009224868806],[-87.62517422455639,41.77459193475033],[-87.62517714909308,41.7747094013575],[-87.62517814061637,41.77477496888847],[-87.62517974809079,41.77488129076088],[-87.62518040166402,41.77492449049911],[-87.62518106618906,41.77496842769587],[-87.62518217660768,41.77504185039555],[-87.62518277701807,41.77508155138118],[-87.62518345645778,41.77512649911705],[-87.62518376403395,41.77514682935731],[-87.62518674130877,41.77534372158033],[-87.62518891824703,41.77545913248006],[-87.62519838340333,41.77569182472797],[-87.62520827320279,41.77591258136507],[-87.62521407248262,41.7760452759012],[-87.62522135199107,41.77621338146936],[-87.62522210964438,41.77633294175397],[-87.62522271323819,41.77642821328284],[-87.6252236970739,41.776583436202074],[-87.62522615589586,41.77668652694547],[-87.6252291006538,41.7768187650568],[-87.62523116441862,41.776944438878694],[-87.62523231441568,41.77703986497579],[-87.62523868064535,41.777194352926394],[-87.62524672864309,41.77730260993217],[-87.62525855691716,41.77742716388113],[-87.62527816460236,41.77756441695452],[-87.62529692482188,41.77765319924737],[-87.62529865538784,41.77766138927229],[-87.62530027137555,41.77767676287041],[-87.62530848413446,41.7777548891128],[-87.62531206395651,41.77778894422486],[-87.62532414182225,41.777950822051096],[-87.62532631868737,41.7779877011724],[-87.62532885059356,41.77803060016243],[-87.62533095081648,41.77806508139837],[-87.62533134730833,41.77807899876841],[-87.62533262108458,41.778123719622776],[-87.62533267962618,41.7781257636569],[-87.62533731867283,41.778288613211586],[-87.62534062785446,41.778404775554314],[-87.62534069267161,41.778407049049726],[-87.62534235474259,41.77846540044168],[-87.62534243776246,41.77846831895752],[-87.62534467448666,41.77854682329506],[-87.62534916729804,41.77870453928982],[-87.62535073551878,41.77875959118874],[-87.62535765140386,41.779025439192736],[-87.62536392886861,41.779266735024905],[-87.62537627377846,41.77974469711903],[-87.62537899681169,41.779850126743625],[-87.62537789743696,41.77990531093309],[-87.62537786498565,41.779906927943166],[-87.62537484909602,41.78005828631048],[-87.62510255174963,41.78006017225451],[-87.62480273424538,41.78004850090758],[-87.62473182781275,41.780048390969476],[-87.62445283485621,41.780033442313844],[-87.6242214795466,41.780020790364745],[-87.62396624464913,41.78001251858107],[-87.62369798465166,41.780011764164094],[-87.62354198543916,41.780011325153026],[-87.62326946452293,41.780014580808675],[-87.62292954006767,41.780019285149265],[-87.62248026495925,41.780025781774064],[-87.62219888442449,41.78003120266934],[-87.62215441581036,41.78003205914104],[-87.62208703152508,41.78003335743583],[-87.62197559117652,41.78003550394519],[-87.62175790938309,41.78003969656653],[-87.62167678697169,41.7800402517206],[-87.62150322393353,41.78004143937087],[-87.62106315536236,41.78004752096802],[-87.62083422514372,41.780057599950894],[-87.62065027580964,41.78007572002578],[-87.62055250137976,41.780087699842895],[-87.62041213860667,41.7801082914264],[-87.62010157093829,41.780153851467404],[-87.61999181287709,41.780159234878056],[-87.61970345981553,41.78016850352985],[-87.61947852546123,41.780171990893614],[-87.61924588856998,41.780175759254426],[-87.61895708014114,41.780179726997744],[-87.61885546964002,41.780181122862075],[-87.6184331482932,41.78018692329739],[-87.61809693372466,41.78019324430018],[-87.61807075009548,41.78019375500609],[-87.61787475019136,41.78019758018758],[-87.61783540606314,41.780198356854825],[-87.61780379052888,41.78019898076331],[-87.61758727917851,41.78020325400055],[-87.61734905983546,41.78020776311743],[-87.6171768517927,41.780211022417504],[-87.61695682258724,41.7802151863659],[-87.61673991461416,41.78021888307383],[-87.61643536363451,41.78022409070651],[-87.61627322583898,41.7802259125616],[-87.61562233042915,41.78023913842987],[-87.61561953857023,41.78013075943781],[-87.61561929604788,41.78012133869893],[-87.61561897305698,41.78010881009868],[-87.61561774229999,41.779979162187]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10406284.3364","perimeter":"0.0","tract_cent":"1164951.87050594","census_t_1":"17031672000","tract_numa":"40","tract_comm":"67","objectid":"462","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856296.25795715","census_tra":"672000","tract_ce_3":"41.76127808","tract_crea":"","tract_ce_2":"-87.67100199","shape_len":"13252.5507446"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6636082793726,41.757766311548835],[-87.66360806004782,41.757743765272906],[-87.66360805974696,41.75774375895925],[-87.66374161174939,41.75773801745608],[-87.6639895817557,41.75772676994353],[-87.66450480736226,41.75769992608877],[-87.66459280370269,41.757696664891846],[-87.66483432035798,41.75768915140992],[-87.66503367303736,41.75768310708768],[-87.66547495763581,41.75767366700868],[-87.6659161920063,41.75766902719867],[-87.66606096584523,41.75766883898758],[-87.66620436462219,41.75766864260974],[-87.66635738444762,41.7576685019052],[-87.66707583612762,41.757659634957946],[-87.66727239696618,41.75765768701549],[-87.66736586954416,41.75765651394277],[-87.66799359358943,41.75764917355363],[-87.66835877472568,41.75764476999298],[-87.66848111176334,41.75764341975725],[-87.66861490118644,41.757642135649895],[-87.6694840919239,41.75763206714468],[-87.66969650218333,41.75763073929987],[-87.6696964976456,41.757630895150086],[-87.66969349218856,41.757741895289314],[-87.66969235550569,41.75778388616955],[-87.67024925541799,41.75777845453212],[-87.67024934522192,41.757778453678256],[-87.67086164830381,41.757771844533934],[-87.6709119458244,41.75777122480045],[-87.67158864123834,41.75776288554817],[-87.6721302216614,41.757757680109584],[-87.6723403926927,41.75775565939163],[-87.6731122631949,41.757745003777465],[-87.6733448411487,41.757741982069575],[-87.6737581589082,41.75773661114596],[-87.6739089126961,41.75773465177649],[-87.6741953665111,41.757731167225536],[-87.67456744930035,41.75772663999623],[-87.67476591528627,41.75772422472206],[-87.67516773597926,41.757718652745154],[-87.67546330043044,41.75771455337518],[-87.67593646745522,41.757702871684266],[-87.67636477608775,41.75769229601747],[-87.67712566334384,41.75767323566603],[-87.67783202646865,41.757663628383916],[-87.67805372185894,41.75766068050142],[-87.67815131699474,41.75765952189084],[-87.67836861990367,41.76111446631193],[-87.67842617444269,41.762032763441425],[-87.67848247834593,41.762930693847395],[-87.67848255095976,41.76293184357473],[-87.6785401603642,41.76384499511255],[-87.6785510534453,41.76475603717204],[-87.67784721118836,41.764763293427634],[-87.67754984728326,41.764766357847954],[-87.67706129353827,41.76477146326713],[-87.67620655284304,41.764780390009165],[-87.6761526398136,41.76478110965039],[-87.67596050843505,41.76478367275348],[-87.67575739368513,41.764786382336816],[-87.67495648672563,41.76479650499448],[-87.67474499918521,41.76479888790735],[-87.67452515336136,41.76480135971778],[-87.67383913015712,41.764803598524495],[-87.6735340679865,41.764806446445725],[-87.67333859409942,41.764808271077605],[-87.67292320425022,41.76481317761838],[-87.6723179414282,41.76482032416473],[-87.67215544399558,41.764822242651924],[-87.67171380871724,41.76482724103884],[-87.67136308897675,41.76483120942154],[-87.67110250201523,41.764833739885525],[-87.67088956739715,41.764835807407245],[-87.67078897557083,41.76483683716862],[-87.67049156168865,41.76483988851784],[-87.67001664421097,41.7648447668453],[-87.66988671294416,41.76484557675018],[-87.66974695527699,41.76484644775779],[-87.66881594146378,41.76485459600422],[-87.6686768388435,41.76485631446858],[-87.6685299951364,41.76485812847969],[-87.66762347767819,41.76486517387024],[-87.66746090678912,41.76486761548962],[-87.66733077814106,41.76486956984903],[-87.66626076120798,41.764880379799294],[-87.66624685756449,41.76488052026196],[-87.66609702103979,41.764882033043804],[-87.66527115303603,41.76489180599149],[-87.66503006933956,41.764894276916586],[-87.66484752130232,41.76489614774223],[-87.664418668561,41.76490205800849],[-87.66406771834667,41.76490689357503],[-87.66379598336687,41.76490902747779],[-87.6637773422061,41.764543200847356],[-87.66376430998007,41.764379400247485],[-87.66375801716416,41.764219617879164],[-87.66375456509678,41.7640792268197],[-87.66375552456346,41.76399981264468],[-87.66375666204357,41.76390574439498],[-87.66375273411771,41.76375118996609],[-87.66374774512515,41.76355414758208],[-87.66374275094132,41.763357571417586],[-87.66373859341938,41.76319341085875],[-87.66373361831799,41.763143106280246],[-87.66373319981834,41.76308958175033],[-87.66373119565209,41.762833205751754],[-87.66372669528289,41.76265968484003],[-87.66372173121141,41.762467307874566],[-87.66371680723721,41.762274601820145],[-87.66371440638278,41.76218076018204],[-87.66371268863998,41.762113652014406],[-87.66370810737054,41.761937413751134],[-87.66370230835314,41.76171253937013],[-87.66369624014693,41.761478305344234],[-87.66368721775912,41.76127100257995],[-87.66368637461804,41.76113691165263],[-87.66368070760929,41.76091697775176],[-87.66367450762219,41.760677803181956],[-87.66366880659128,41.76045762207778],[-87.66366635566598,41.760360075035926],[-87.66366289600826,41.76022234608389],[-87.66365941903838,41.759950420391824],[-87.66365186899431,41.759745925889455],[-87.66364162043615,41.7595612295113],[-87.66364021998686,41.759453849979444],[-87.66363896935803,41.75935797104274],[-87.66363475176237,41.75915020278021],[-87.66362978553742,41.75890170469905],[-87.6636254012614,41.75868180563135],[-87.66362029541034,41.758429080489925],[-87.663615521657,41.758190243444965],[-87.66361075843305,41.757911866261516],[-87.6636099422171,41.75786417073399],[-87.66360907334621,41.75781339661456],[-87.66360906332635,41.75781280927533],[-87.6636082793726,41.757766311548835]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7059126.48416","perimeter":"0.0","tract_cent":"1157352.63992906","census_t_1":"17031630800","tract_numa":"32","tract_comm":"63","objectid":"467","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866693.10648836","census_tra":"630800","tract_ce_3":"41.78996575","tract_crea":"","tract_ce_2":"-87.69857271","shape_len":"10624.9901934"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7023316383525,41.7862622675338],[-87.70334872788678,41.78624839992083],[-87.70335980618063,41.786701265253406],[-87.70336547204418,41.78693288682146],[-87.70338354962958,41.787543371256994],[-87.70339631604529,41.78793230732699],[-87.70340125955454,41.78806405135068],[-87.70340934452588,41.78827950414125],[-87.70342630501266,41.78889179353573],[-87.70344705278,41.789574220248156],[-87.70345422765324,41.78988371728585],[-87.70346051093112,41.79015476630512],[-87.70348172361608,41.79089090143746],[-87.70349886113233,41.79149270805773],[-87.70350491172793,41.79169817434411],[-87.7035113836082,41.791917922018484],[-87.70352064300651,41.79220733063376],[-87.70352831979338,41.79244294249339],[-87.70353564186375,41.792848753192715],[-87.7035477546782,41.793334586139835],[-87.70355407943639,41.79351390765323],[-87.7034184374003,41.79351579600987],[-87.70294449817415,41.7935256523161],[-87.7024995561102,41.79353490354006],[-87.7023371457071,41.79353790846511],[-87.70218614183256,41.79354070140041],[-87.70127733849121,41.79355672575767],[-87.70111767748762,41.79355974298771],[-87.70087692147857,41.79356429191657],[-87.70013251059335,41.793577123438645],[-87.69989688385645,41.79358214041572],[-87.69964621788232,41.793587477361704],[-87.69915679661636,41.79359526004124],[-87.69867981613984,41.793605300954724],[-87.69850412823544,41.79360899880006],[-87.69799628483116,41.7936180721216],[-87.69763615318347,41.793623573388025],[-87.69746053562498,41.79362656199998],[-87.6972783619201,41.79362966141187],[-87.69648999287176,41.7936449427755],[-87.69624023155049,41.79364912086015],[-87.69609941298992,41.793651476265175],[-87.69516431620289,41.79366719690158],[-87.69501793603374,41.79366969270045],[-87.69487903664964,41.793672060840635],[-87.6940219973594,41.793686923288604],[-87.69379793880665,41.79369080797132],[-87.69378529695538,41.7932380039055],[-87.69375501619251,41.79215337629118],[-87.69374721724681,41.79187076197959],[-87.69374355713177,41.79175209749371],[-87.69373526688217,41.79143514086539],[-87.69372623087837,41.791104678165084],[-87.69371797994629,41.79079853421866],[-87.69370822369142,41.790444631239716],[-87.69369694243892,41.79004830867379],[-87.69369142784586,41.78985457036759],[-87.69368292246698,41.78955929232386],[-87.69367238044532,41.789181180254296],[-87.69366192428204,41.788779687285434],[-87.693654816557,41.788520888585275],[-87.69364982885013,41.788340231624744],[-87.69364707428444,41.7882291378406],[-87.69364655061135,41.78820800773055],[-87.69364229079193,41.788036204601056],[-87.69363480197036,41.787812064134975],[-87.69362618160685,41.787528393693265],[-87.69361795213483,41.78725704727979],[-87.69360896141306,41.786973758948236],[-87.69360643242327,41.78686797934072],[-87.69360388540147,41.78676143232701],[-87.69360379449104,41.7867570406806],[-87.69360046732523,41.78659626185279],[-87.69359512574917,41.78640707442582],[-87.69378088557754,41.786402998022865],[-87.69439423785765,41.78639024709293],[-87.69481526595186,41.78638579255752],[-87.69507096903958,41.7863830866254],[-87.69565429061653,41.78637400412456],[-87.6960337417923,41.786366545890026],[-87.69636526297303,41.78636002814825],[-87.69679110053335,41.78635437512022],[-87.69725407133467,41.786347249083974],[-87.69743093362199,41.78634452670683],[-87.69806819598475,41.7863350655712],[-87.69816130825495,41.78633366545526],[-87.69847143882477,41.78632747891717],[-87.69868161057967,41.78632328607341],[-87.69941447620866,41.78631262298931],[-87.69969082538458,41.78630732141135],[-87.69997441915982,41.786301880181554],[-87.7006993738871,41.78629023222563],[-87.70091147612027,41.78628624297259],[-87.70116440175812,41.78628148564244],[-87.7018657301786,41.78627107245741],[-87.70212779510402,41.78626612009712],[-87.7023316383525,41.7862622675338]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7053371.70714","perimeter":"0.0","tract_cent":"1158844.33936126","census_t_1":"17031660800","tract_numa":"32","tract_comm":"66","objectid":"465","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1860755.32458505","census_tra":"660800","tract_ce_3":"41.77364128","tract_crea":"","tract_ce_2":"-87.6932651","shape_len":"13306.4383886"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68354188064528,41.77542097539465],[-87.68353707362178,41.77526523685814],[-87.68353340621859,41.77514550992626],[-87.68352846717711,41.77498469368768],[-87.68352465187101,41.77486142577125],[-87.68352267426751,41.77479588079437],[-87.68351806658096,41.774634929205114],[-87.68351526658374,41.774527336955416],[-87.6835099735607,41.774328921836926],[-87.68350553637364,41.774162016075415],[-87.68350050194556,41.77397071013476],[-87.68349407723828,41.773783268526216],[-87.68348860757487,41.77362368143627],[-87.68348593083125,41.77352204498831],[-87.68348245766725,41.773390353983785],[-87.6834789811901,41.77325899227306],[-87.68347499049018,41.773109570176814],[-87.68347136112335,41.77297156639601],[-87.68346808108583,41.772846133468335],[-87.6834644052908,41.772701872421024],[-87.68346029626687,41.77254965045757],[-87.68345700074329,41.77243439850128],[-87.68345688200793,41.77243025421523],[-87.68345292121192,41.77229244064381],[-87.68344808055727,41.77212191006705],[-87.68344423434095,41.77197761483119],[-87.68373109682533,41.77197227243154],[-87.68392626511603,41.77196914957965],[-87.6840571161227,41.771967683830795],[-87.6841265564392,41.771966906077786],[-87.68426147977603,41.77196519855778],[-87.6844448074264,41.77196200792884],[-87.6846638525393,41.77195804472743],[-87.68483782907087,41.7719548964491],[-87.68497788694877,41.771952887754324],[-87.68526031290449,41.77194891032715],[-87.68550768803723,41.77194539319802],[-87.68570717860717,41.77194256612229],[-87.68588131347325,41.77193970393514],[-87.68605901805512,41.771936782560026],[-87.68627490294169,41.77193322357334],[-87.68645111630204,41.77193029154631],[-87.68660195679546,41.77192779272362],[-87.6871092254358,41.77191937440268],[-87.6872564687003,41.77191693050361],[-87.68741650814393,41.77191467444266],[-87.68761626040423,41.77191143387801],[-87.68776750763242,41.77190857905205],[-87.68791140949607,41.77190710979672],[-87.68810432269355,41.77190583329955],[-87.6883326791215,41.77190165798036],[-87.68858200545884,41.77189709878409],[-87.68874233817844,41.771894869964775],[-87.68893857083073,41.77189154039246],[-87.6890459680386,41.77188928152036],[-87.68910602742119,41.771888073277466],[-87.68955173665655,41.77188006352237],[-87.68968453987961,41.77187767665077],[-87.68992824744593,41.77187423922611],[-87.69015794903689,41.771871091983506],[-87.69034636612813,41.77186842949499],[-87.69061138217742,41.77186406704234],[-87.69076935153969,41.77186181805572],[-87.69107360898306,41.771857486022206],[-87.69137397323588,41.771852230201304],[-87.69156389570311,41.77184935842545],[-87.69183880092012,41.771845789342585],[-87.69198651280698,41.77184090807889],[-87.6921627544807,41.77183508373939],[-87.69250229792618,41.77183439854148],[-87.69259612352914,41.77183285896443],[-87.6927993584882,41.77182952370298],[-87.69303760525,41.7718259120206],[-87.69320594286549,41.77182376055291],[-87.69341590190308,41.77182107666269],[-87.69356651231959,41.77181958280305],[-87.69377483649563,41.77181684579289],[-87.69404402419873,41.77181315727492],[-87.69430360990604,41.771809195174214],[-87.69442981373018,41.77180681715274],[-87.6946971821614,41.771801778592646],[-87.69499108561666,41.77179731962401],[-87.69522141263502,41.77179382406581],[-87.6955123011839,41.77179025263647],[-87.69564832964502,41.77178786634695],[-87.69579396517234,41.771785312018295],[-87.6961484341294,41.77178036287599],[-87.69646548215789,41.77177460118655],[-87.6966862469826,41.77177050109838],[-87.69686505574133,41.771768228304936],[-87.69705163718753,41.77176585667509],[-87.69737575068889,41.77176106493957],[-87.69762118428123,41.771757236545795],[-87.69797236904273,41.77175072679524],[-87.69808324986988,41.771749055041404],[-87.69821223281711,41.77173921962247],[-87.6992843105246,41.771726028060584],[-87.69950579394376,41.7717233014128],[-87.70032452746162,41.77171313312387],[-87.70051216898017,41.77171104300442],[-87.70068881157499,41.77170907505662],[-87.70087678896701,41.77170637778009],[-87.70104137159981,41.77170431984728],[-87.70119172967348,41.77170234779582],[-87.70141817886783,41.771697968017065],[-87.70160627597325,41.77169430970066],[-87.70171986513687,41.77169221161294],[-87.7020207443763,41.77168665360875],[-87.70236504321592,41.771683193647206],[-87.70281465924903,41.7716764140668],[-87.70296712312485,41.771674943575526],[-87.70297280270096,41.771867735929305],[-87.70297431491424,41.77195665950399],[-87.70297572521865,41.77204475922856],[-87.70297779371005,41.77213995767261],[-87.70297799965095,41.77214943925643],[-87.70298391594785,41.77224908975486],[-87.70298564143957,41.772331208633496],[-87.70298732686938,41.77242490823061],[-87.70298859066175,41.772513034587064],[-87.70299074529385,41.772607450273114],[-87.70299462153902,41.77277693196187],[-87.70299554739435,41.77283588456843],[-87.70299698466431,41.77290625626092],[-87.70299825626176,41.77297108356122],[-87.70300017968144,41.77305781421073],[-87.70300137923883,41.77310891934903],[-87.7030031282873,41.77318489111681],[-87.70300628657125,41.77329665626187],[-87.70300835027008,41.77336670179535],[-87.70301115843154,41.77349973826465],[-87.70301325878548,41.773599253365276],[-87.70301548623146,41.7736900192422],[-87.70301808368977,41.77379541480385],[-87.70301984876552,41.77386600810119],[-87.70302216472062,41.77396143976554],[-87.70302298339513,41.773995171676],[-87.70302547170526,41.77410048402978],[-87.70302762848294,41.774205959220566],[-87.70302906514311,41.7743063532337],[-87.70303148602937,41.774418553673],[-87.70303451483576,41.774558529461025],[-87.70303604309429,41.77462335815064],[-87.70303737815053,41.77468170923773],[-87.70303961023534,41.77477571366807],[-87.70304202835261,41.774873259260964],[-87.70304355999558,41.77493399896263],[-87.70304520860356,41.77502772575799],[-87.70304685927425,41.7751100088439],[-87.70304808033774,41.775168770945186],[-87.70304984099077,41.77525105463245],[-87.70305229212084,41.77532246453626],[-87.70283332971694,41.77532500546707],[-87.70265418212415,41.77532723298466],[-87.70243420985601,41.7753315138071],[-87.70242804359638,41.77533161194548],[-87.70223041563752,41.775334757918436],[-87.70192641628903,41.7753390152397],[-87.70182255247734,41.77534054347612],[-87.70162633882413,41.77534343053602],[-87.70145803893513,41.77534601770693],[-87.70123055547097,41.77534984326779],[-87.70121368034089,41.77535014395179],[-87.70106580862473,41.77535277872842],[-87.700886027111,41.77535604283247],[-87.70065556865416,41.775356722378746],[-87.70060473686479,41.77535855527082],[-87.70043240664975,41.775364768931404],[-87.70015736818354,41.77536918111108],[-87.69999628463927,41.77537064123214],[-87.69977296198077,41.77537436170377],[-87.69943854420333,41.775381298757274],[-87.69938676019015,41.77538176248965],[-87.69897393338512,41.77538545780873],[-87.6989036804134,41.775386497184144],[-87.69877850626789,41.77538841514978],[-87.69862148758396,41.77539144220571],[-87.69846432430637,41.77539485464493],[-87.69817109540958,41.775399863536485],[-87.69802791951548,41.77540133400415],[-87.69784250553732,41.77540321749222],[-87.69771623629103,41.77540405577153],[-87.69756506763167,41.7754055516953],[-87.69746225561882,41.77540698630809],[-87.69731206888237,41.77540928345413],[-87.69709899110255,41.77541331779806],[-87.6969553256717,41.775415424736615],[-87.69679066281566,41.775417839426304],[-87.69659208082159,41.77542038862152],[-87.69642525349956,41.775422318223185],[-87.69634549939141,41.775422982552634],[-87.69621164802199,41.7754240979468],[-87.69603047555779,41.775427099476225],[-87.69587100936468,41.77542980979249],[-87.69573607952832,41.7754320600014],[-87.6954919437202,41.77543613085292],[-87.69534190106646,41.77543867320958],[-87.6951829081321,41.77544171451428],[-87.69512596110086,41.77544232136095],[-87.69502378188159,41.77544341015289],[-87.6948578288601,41.7754458909206],[-87.6946515108461,41.77544847637128],[-87.69451862222452,41.77545113304854],[-87.69439589515225,41.77545358647549],[-87.69419305481992,41.77545668441713],[-87.69403466170634,41.77545838276413],[-87.6939074503135,41.77546027201007],[-87.69390024203145,41.77546037898465],[-87.69375833679635,41.77546304689272],[-87.69359157010673,41.77546623481833],[-87.69337978691144,41.77547272836147],[-87.69329826490798,41.77544883519133],[-87.69322192254903,41.77542887732892],[-87.69312236639124,41.77542709451452],[-87.69297888022672,41.775430219180315],[-87.69287650721668,41.77543173419007],[-87.69274934990722,41.77543338534787],[-87.69268600763232,41.775434292874436],[-87.69256733798251,41.775435993081864],[-87.69242474280288,41.77543799658889],[-87.6922826679464,41.77543928957961],[-87.69207842160051,41.77544264625503],[-87.69191617967496,41.775445312261226],[-87.69166482615795,41.77544945213738],[-87.6914719632299,41.775451760422186],[-87.69131723694821,41.775453602569485],[-87.6911193137858,41.7754562285886],[-87.69086254460892,41.77545996266225],[-87.69075675518474,41.77546150113488],[-87.69045400145463,41.77546578994691],[-87.69024900747385,41.77546848028022],[-87.6901221391621,41.77546999732344],[-87.68998757212181,41.77547201558327],[-87.68977390318487,41.775476444673124],[-87.68964329323238,41.775478545893904],[-87.68949681046358,41.77548090214845],[-87.68924277694119,41.775485351020905],[-87.68903074137184,41.775488953893934],[-87.68901448597093,41.77548923019049],[-87.6890099386204,41.7754893298272],[-87.6890019449796,41.77548951661412],[-87.68877804804367,41.775493886487766],[-87.6884919874659,41.77549578458542],[-87.68843242311019,41.775521347615154],[-87.68837977070774,41.775547689553484],[-87.6879546539215,41.77555079108332],[-87.68781772566555,41.775553358038344],[-87.68773163847315,41.775554971768095],[-87.68755556452055,41.7755576046543],[-87.6873114482305,41.775560183992695],[-87.68720854153216,41.77556180264261],[-87.68659010024244,41.77557152892477],[-87.6865095042984,41.77557279613373],[-87.68628631056947,41.775576424149364],[-87.68614433487397,41.775578752938564],[-87.68598096117026,41.77558180457839],[-87.68570299736618,41.775586996088116],[-87.68549554239654,41.775589586126884],[-87.68537157930574,41.7755911241849],[-87.68531155332846,41.77559186906731],[-87.68511986380369,41.775594272923165],[-87.68494504144044,41.77559641489626],[-87.68476308659962,41.77559943238411],[-87.68459688478129,41.77560218836683],[-87.68441266805321,41.77560526442768],[-87.68416057374499,41.7756091037798],[-87.6841498028481,41.775609267949534],[-87.68398979109703,41.775611492158035],[-87.6837783728635,41.77561441345315],[-87.68354796735586,41.775599358860354],[-87.68354188064528,41.77542097539465]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10613182.0351","perimeter":"0.0","tract_cent":"1148750.93174202","census_t_1":"17031650200","tract_numa":"48","tract_comm":"65","objectid":"466","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1863807.44102676","census_tra":"650200","tract_ce_3":"41.78221697","tract_crea":"","tract_ce_2":"-87.73018734","shape_len":"13305.1864158"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73732891632274,41.77848796572627],[-87.73739696510809,41.778486994882314],[-87.73740218305345,41.778666615092426],[-87.7374202140862,41.779293094768136],[-87.73744910062376,41.78023213720798],[-87.73747309815238,41.78031321843034],[-87.73745747655676,41.780515529286404],[-87.73749968199729,41.78189715834169],[-87.7375066248784,41.782137320243436],[-87.73754236549405,41.78337586897967],[-87.73756262248136,41.78396016586079],[-87.73759251050038,41.7849894313895],[-87.737609062603,41.78552842775881],[-87.73761498364524,41.78573050739856],[-87.73762325642599,41.785783192719286],[-87.73735383874885,41.785786165650684],[-87.73729953406962,41.78578683756068],[-87.73641685236325,41.78579775329079],[-87.73600972575254,41.78580278578682],[-87.73580453566787,41.78580475144601],[-87.73573491809373,41.78580541816286],[-87.73546788463213,41.78580792568234],[-87.73519305768772,41.785810537726036],[-87.73477015845587,41.785814556134945],[-87.73468203968393,41.7858153867987],[-87.73457705256348,41.78581637646597],[-87.73437679615957,41.78581824152096],[-87.73421629032427,41.78581973723396],[-87.73408922760339,41.7858209406427],[-87.733967921759,41.785821419814035],[-87.73383174172491,41.78582195735547],[-87.73360562499258,41.78582489360248],[-87.73338456857103,41.78582780094511],[-87.73322446064958,41.785829873651934],[-87.73304891354778,41.78583219477859],[-87.73291876629985,41.78583387474808],[-87.73274612271425,41.78583554207681],[-87.73262378946716,41.78583672358306],[-87.7324410982351,41.78583840267977],[-87.73231106506351,41.78583964347038],[-87.73208150912986,41.78584176287912],[-87.73195976282493,41.78584299175646],[-87.73179107490387,41.78584504471967],[-87.73166877629927,41.78584651765752],[-87.73151428113948,41.78584829217703],[-87.73135534877657,41.78585011733392],[-87.73117463074819,41.785852518272236],[-87.73101301945206,41.78585458001656],[-87.73089849515664,41.785855955405246],[-87.73071528591716,41.785858123013554],[-87.73055481251006,41.78586005286735],[-87.73040941074777,41.78586178716772],[-87.73029984660066,41.78586196623178],[-87.73014624713109,41.78586221696231],[-87.72999714344803,41.78586379408915],[-87.72985222111181,41.785865310658565],[-87.729686653651,41.78586702894677],[-87.72950069561192,41.78586897956637],[-87.72924539508075,41.785871534563746],[-87.72907457635189,41.785873072322744],[-87.72892214700359,41.78587444449858],[-87.72871008038003,41.78587667662526],[-87.72857278443031,41.78587814938909],[-87.72846453246778,41.78587931469512],[-87.72837417514323,41.785880287079294],[-87.72817549214973,41.78588242403782],[-87.72801127992632,41.7858842483145],[-87.7278509378215,41.78588627689597],[-87.7276958316667,41.78588823900195],[-87.72736557420706,41.78589176650875],[-87.72719842861689,41.78589354670774],[-87.72699193596277,41.78589566785671],[-87.7268230311992,41.78589735589577],[-87.72663524322452,41.78589900406459],[-87.72646773385058,41.785900474192715],[-87.72627319457688,41.78590260230713],[-87.72612064329705,41.78590429339877],[-87.7259168266434,41.78590648191941],[-87.72576156186066,41.785908185355474],[-87.72557274396632,41.785910170749176],[-87.72540667054234,41.78591162881423],[-87.72526486198196,41.78591277461647],[-87.72504879414636,41.78591541816652],[-87.72489440722235,41.78591734489648],[-87.72467654224747,41.785920032839684],[-87.72442779986989,41.78592310557352],[-87.724187428329,41.78592504293149],[-87.72402523712181,41.785926349986845],[-87.72391721174843,41.7859267649381],[-87.72372293655827,41.78592809428917],[-87.72359118300506,41.78592898676423],[-87.72357754192734,41.785929081215535],[-87.72342077952804,41.78593016787314],[-87.72323435148485,41.78593145572969],[-87.72296146329894,41.78593657849386],[-87.72295562878656,41.785759142930594],[-87.72295196404805,41.785619767968875],[-87.72294908878418,41.78550926771415],[-87.72294755913728,41.785451464492525],[-87.72294550881236,41.78537255543577],[-87.72293602840975,41.785028837454156],[-87.72293203049243,41.78488389006226],[-87.72292396588725,41.78457330127948],[-87.72291351533792,41.78411486605348],[-87.72290629803277,41.78379687542923],[-87.7229015903771,41.783654092501386],[-87.72289886620251,41.78357147449272],[-87.72288795736051,41.78320332404081],[-87.72288042376546,41.782949080277255],[-87.7228746405015,41.78275055086988],[-87.72287118554988,41.782631955376445],[-87.72286269809668,41.782296182572054],[-87.72285473584863,41.78198119563426],[-87.72284391666244,41.78163749749944],[-87.72283701360936,41.781380896372575],[-87.72282572810981,41.78096137111074],[-87.72282178603929,41.780828087167144],[-87.72281310634446,41.78053194799997],[-87.72281136435694,41.78047250827287],[-87.72279990351412,41.780081467529385],[-87.7227893850257,41.779698390225526],[-87.72278728257712,41.77961932520946],[-87.72278534292948,41.77954636601891],[-87.72277808938337,41.77927356801761],[-87.72277377853324,41.77912614894723],[-87.72276009549746,41.77865823678329],[-87.72339867819247,41.77865190581033],[-87.72382508756519,41.7786422037324],[-87.72398310114893,41.778640880812375],[-87.72445515458195,41.77863692765851],[-87.72472098618694,41.77863430211467],[-87.72520352972948,41.77862870026752],[-87.72555054091386,41.77862467039716],[-87.7256415485136,41.778623607059465],[-87.7257812502789,41.77862193891383],[-87.72598075579867,41.778619590868],[-87.72642313145344,41.77861356900915],[-87.72665748314512,41.778610378048626],[-87.72681138661643,41.778608556142345],[-87.72725813579419,41.778603531675735],[-87.72764467522518,41.778598846685],[-87.72802807260385,41.77859419872469],[-87.72827828669418,41.77859148266192],[-87.72867678162059,41.778587049263244],[-87.72886348633749,41.778584359347434],[-87.72927949250955,41.77857836447433],[-87.72952966305449,41.778576331531035],[-87.72989731526384,41.77857285695508],[-87.73007523372237,41.77857125066748],[-87.73039929397041,41.77856832440796],[-87.73049500891462,41.77856746003462],[-87.73072689370557,41.778564450630654],[-87.73114020875241,41.778559098199594],[-87.73130381187865,41.7785571619473],[-87.73172842111099,41.778552135799416],[-87.73196073857626,41.778549894299196],[-87.73217487004149,41.77854777671256],[-87.73252624596311,41.778543382518926],[-87.73281852673325,41.778539726691456],[-87.73305044291611,41.77853726134604],[-87.73328276235952,41.778534797638635],[-87.73374492250434,41.778529388249396],[-87.73403509482094,41.77852599110546],[-87.73442900346929,41.7785218431428],[-87.73480300302705,41.77851780965217],[-87.73496620519492,41.77851591604095],[-87.73521282790857,41.778513165618705],[-87.73556039316516,41.778509156693374],[-87.73593985844626,41.778504791181845],[-87.73618567616315,41.7785015844202],[-87.736445281525,41.77849819738965],[-87.73687234435471,41.77849284114793],[-87.73732891632274,41.77848796572627]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3533876.62052","perimeter":"0.0","tract_cent":"1164584.20079506","census_t_1":"17031611700","tract_numa":"16","tract_comm":"61","objectid":"468","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869529.42449108","census_tra":"611700","tract_ce_3":"41.79759938","tract_crea":"","tract_ce_2":"-87.67197652","shape_len":"7981.03374541"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67404941990074,41.793918849258425],[-87.67430056576606,41.79391631549006],[-87.6743066326456,41.79402647412041],[-87.67431188217365,41.79422283048572],[-87.67431602849241,41.79437749563005],[-87.6743181705446,41.794457393268566],[-87.67432544065439,41.79472854300773],[-87.67433228898942,41.79498366368404],[-87.6743377725295,41.79518940681628],[-87.67434383755051,41.79541356743444],[-87.67435083172165,41.795675906387686],[-87.67435516408139,41.79576738867598],[-87.67435969563871,41.79586309007232],[-87.67436380808675,41.79601295165426],[-87.67436897290607,41.79619970246531],[-87.67437385629943,41.79637816391405],[-87.67437955500033,41.79658440220077],[-87.6743809615431,41.796629605628226],[-87.6743820016243,41.796663040281516],[-87.67438537594941,41.796771513513576],[-87.67439154323918,41.79701439067927],[-87.67439844436888,41.79728584005001],[-87.67440351108571,41.7974857628233],[-87.67440534436221,41.79755350228818],[-87.67440594358573,41.797575665550596],[-87.67440654390408,41.79759782936807],[-87.6744087250137,41.7976784415222],[-87.67441310530823,41.79780936902795],[-87.67441852333903,41.7979714226704],[-87.67441993671548,41.79802237183448],[-87.67442024876713,41.798033617781556],[-87.67442417469037,41.7981751084425],[-87.67442917929544,41.79835250025289],[-87.67443448575278,41.79853977321267],[-87.67443843705315,41.79868033067533],[-87.67444287567736,41.79885566101035],[-87.67444486747642,41.79890495977843],[-87.67444599621805,41.79894374326203],[-87.67444999266017,41.799081007558186],[-87.67445557058021,41.79927039514933],[-87.67446038708074,41.799415430738904],[-87.67446437187937,41.79953543368566],[-87.67446948474836,41.79971655829992],[-87.67447565085976,41.799874526920306],[-87.67447718338734,41.79991377924128],[-87.67447932113383,41.80005237782661],[-87.67448526542879,41.800266877680414],[-87.67448754484344,41.80035015204061],[-87.67449113714113,41.80048137710975],[-87.67449562823256,41.80071247152671],[-87.67449681511387,41.80077354659553],[-87.67449973552031,41.80092375000838],[-87.6745035734802,41.801129099286086],[-87.67450695863394,41.80123336221474],[-87.67436752449287,41.80123471478935],[-87.674152838809,41.80123685853203],[-87.67392340776152,41.8012391642174],[-87.67367516000611,41.8012416632634],[-87.67346472900336,41.80124377526639],[-87.6732936825452,41.80124493890595],[-87.67314104204476,41.801245977004285],[-87.67285421438325,41.80124817021888],[-87.67268259485215,41.801249458085934],[-87.67260575302306,41.801250034540274],[-87.67233755802695,41.80125205920522],[-87.67207505533258,41.801254811137916],[-87.67192351674507,41.801256399524654],[-87.67161782746933,41.80125957876401],[-87.67131801839103,41.80126158359281],[-87.67106933721792,41.801263415880996],[-87.67086015218223,41.80126564775053],[-87.67076210610394,41.80126669372529],[-87.67044508666147,41.80126963956132],[-87.669644634473,41.801275831288216],[-87.66964081232497,41.80112838551175],[-87.66963472148996,41.80088696320069],[-87.66963297687066,41.8008186136151],[-87.66962840101588,41.80063936491571],[-87.66962099847657,41.80034735786642],[-87.6696143341399,41.80008688688241],[-87.669606900403,41.799794358210484],[-87.66960120169475,41.79957181905337],[-87.66959691616903,41.79945791914771],[-87.6695933156995,41.79936221971945],[-87.66958878409012,41.79919717975843],[-87.66958283103507,41.798981526986026],[-87.6695799441818,41.798876953091245],[-87.66957367007623,41.798650266429945],[-87.66956863263417,41.79846672705073],[-87.66956262417871,41.79824934503118],[-87.6695576861818,41.7980703891682],[-87.66955291443297,41.79789664840038],[-87.6695487380895,41.79774695099903],[-87.66954425613142,41.79763433369713],[-87.66954084567104,41.79754863084278],[-87.66953723184133,41.79740843190709],[-87.66953295290057,41.79724380499141],[-87.66952924075419,41.797098885035915],[-87.6695236081868,41.79688059979596],[-87.66951868347277,41.796689569112615],[-87.66951724438425,41.79663374204168],[-87.66951180692755,41.796421467620995],[-87.66950630153649,41.79620867138561],[-87.66950205655382,41.796044319059725],[-87.66949870753098,41.79590686590222],[-87.66949463034258,41.79581662780449],[-87.66949076636361,41.795731103424124],[-87.6694851744308,41.79549827337866],[-87.66947989031475,41.79529958401486],[-87.66947416477315,41.79508681390773],[-87.6694680745506,41.79485963418488],[-87.66946301519957,41.79467115484086],[-87.6694584354894,41.794500022149506],[-87.66945738150076,41.7944605803951],[-87.66945407166791,41.79433668419842],[-87.6694503096531,41.7941966218153],[-87.66944579712703,41.79406176896065],[-87.66944272014679,41.79396882882579],[-87.66955965644823,41.79396643177842],[-87.66975990197716,41.79396467970043],[-87.6699726902537,41.79396286248792],[-87.67019890109376,41.79396090282138],[-87.67039863266379,41.7939592015487],[-87.67052523476136,41.79395809340279],[-87.67065899423473,41.79395636393443],[-87.6708508692044,41.79395388245742],[-87.67094936267371,41.7939526087232],[-87.67121163042002,41.793949839574935],[-87.67149920434967,41.793946803982166],[-87.67187388374093,41.79394273711697],[-87.67199968202588,41.79394137106649],[-87.67238647203261,41.79393646196792],[-87.67281232179067,41.793931117530036],[-87.67307758503625,41.79392946125451],[-87.67333635697237,41.79392784501024],[-87.67362397335089,41.79392422804136],[-87.67404941990074,41.793918849258425]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4125320.6796","perimeter":"0.0","tract_cent":"1169603.10604519","census_t_1":"17031600900","tract_numa":"22","tract_comm":"60","objectid":"469","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883748.41779233","census_tra":"600900","tract_ce_3":"41.83651032","tract_crea":"","tract_ce_2":"-87.6531587","shape_len":"10097.7528662"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64621275830996,41.83536507681389],[-87.64620813483523,41.83517981125569],[-87.64620383215764,41.83500568932769],[-87.64620216248701,41.83483032078392],[-87.64683728068603,41.83482011263569],[-87.64695910843186,41.83481860057274],[-87.6471773221916,41.83481626162578],[-87.64747858510403,41.834813031799435],[-87.64782259177079,41.83480701702276],[-87.6480067069004,41.83480492990529],[-87.64810803950876,41.83480378089236],[-87.64836441173121,41.8348017699639],[-87.64862786083471,41.83479718618863],[-87.64892356416894,41.83479204043076],[-87.64918681489313,41.83478850442152],[-87.64925764628556,41.83478759121361],[-87.649528969101,41.834784092890345],[-87.64978630897484,41.83478079474355],[-87.65006493538537,41.83477723845295],[-87.65042694113498,41.834772822686276],[-87.65062478616922,41.83477074302413],[-87.65106269580903,41.83476604504399],[-87.65106542222439,41.83485335660545],[-87.65106802240001,41.83500935638426],[-87.65107409246718,41.83527135948064],[-87.65155132477801,41.835266043037905],[-87.65171548390776,41.83526403761431],[-87.6520066963997,41.835260568320464],[-87.65229178785222,41.83525317611443],[-87.6528370821783,41.83523903521915],[-87.65302171977952,41.83523678097303],[-87.65351367367677,41.83522554872205],[-87.65385112230489,41.835217842865035],[-87.6541193367094,41.8352134851706],[-87.65427832808662,41.83521090161058],[-87.65472916156398,41.83520530556746],[-87.655003227106,41.8352019027255],[-87.6553378474265,41.835195996891095],[-87.65594553503058,41.835188426375204],[-87.6562603677603,41.835184566927346],[-87.65654864595189,41.835180430502284],[-87.6569165408843,41.83517515081847],[-87.65770155794992,41.83516500702194],[-87.65836251299578,41.83515724883167],[-87.65872654411,41.83515297440855],[-87.65897720379779,41.835146509924904],[-87.65901776259483,41.83514546372794],[-87.6592816284926,41.83511836238962],[-87.65944914549593,41.835104032335686],[-87.65952913575263,41.8350975311778],[-87.65959048628557,41.835097891064585],[-87.65962021236159,41.83510211898364],[-87.65963134045236,41.83510370156019],[-87.65967213621015,41.8351150825589],[-87.65972340057036,41.83514296309222],[-87.65983209262713,41.83522337629681],[-87.65996833561324,41.83532200818955],[-87.6600056433903,41.83535109657972],[-87.66020800469357,41.83553691964315],[-87.66029408229019,41.83561596221006],[-87.6604171102984,41.83572796522769],[-87.66042498480827,41.83573794725019],[-87.66058081359958,41.83593548260581],[-87.66067329289024,41.836043517677034],[-87.66068220090281,41.83605527990187],[-87.66071654658708,41.83610063189113],[-87.66072789409291,41.83613132434705],[-87.66074497116507,41.836193115165884],[-87.66076347006906,41.836367951156596],[-87.6607672087125,41.83644547110816],[-87.66076973553854,41.83649016282154],[-87.66078185379978,41.83670450575411],[-87.66080501519214,41.83693927578736],[-87.66083456968335,41.837238848445935],[-87.66083823053629,41.83735185127643],[-87.66084109389357,41.83746391638518],[-87.66084991962252,41.837847709608326],[-87.66064112521765,41.837850258665455],[-87.66025480599306,41.83785497384339],[-87.6599859589877,41.8378583802756],[-87.65975012211064,41.837861369620256],[-87.65932712797616,41.83786675518533],[-87.6590315406251,41.83787051783629],[-87.65893850196292,41.837871700480065],[-87.65856610463233,41.83787713771924],[-87.65844122112543,41.837878960818664],[-87.65796251238557,41.83788594401306],[-87.65740162721649,41.8378940607551],[-87.6568864327673,41.83790189061455],[-87.6565894713797,41.837906402616255],[-87.65601960062858,41.83791393194271],[-87.655675144673,41.837918481752205],[-87.6554064226589,41.83792203023288],[-87.6552882062515,41.83792359122734],[-87.65480421116459,41.83793066945745],[-87.65435934080651,41.83793717396521],[-87.65419612464345,41.83793955975706],[-87.65398339763571,41.837942665119776],[-87.65358448770847,41.83794763739766],[-87.6531813148424,41.83795266153214],[-87.65299505957991,41.83795498218196],[-87.65246833186929,41.83796291161245],[-87.65215790893866,41.83796758372967],[-87.65196394074654,41.83797000076408],[-87.6516867356259,41.83797322649233],[-87.65160034063899,41.83797423734786],[-87.65129930378423,41.837979231792126],[-87.65114023705003,41.837981068170905],[-87.65083760541134,41.83798384060462],[-87.65064648951406,41.837987229561655],[-87.65048176320884,41.83799015050007],[-87.65031062034934,41.837992563501636],[-87.65007158175985,41.83799594423083],[-87.65006203585064,41.83799607926823],[-87.64979055206787,41.837999568265744],[-87.64940813714908,41.838005154940795],[-87.64927003693835,41.83800717202579],[-87.64903699392539,41.838008884865616],[-87.64878749453905,41.83801215120173],[-87.64870458376478,41.8380132363529],[-87.64832681180506,41.83801818079473],[-87.64809952804168,41.83802067444066],[-87.64771049885593,41.83802410840729],[-87.6473396687063,41.83803173266789],[-87.64693041423837,41.83803970816796],[-87.64677733579437,41.83804120189334],[-87.64644780730531,41.83804378716218],[-87.64627815787844,41.83804556861145],[-87.64627340259956,41.83787424623195],[-87.64626759306593,41.837641991860416],[-87.64626191018921,41.83743224092869],[-87.6462562958062,41.83722298491532],[-87.64625118951784,41.83701422562677],[-87.6462481563315,41.83682778960182],[-87.6462456124639,41.83667104944008],[-87.64623999560573,41.83646275332761],[-87.64623599635625,41.83631445705928],[-87.6462338155565,41.83621880666296],[-87.6462302014575,41.83606030347836],[-87.64622570406611,41.835880362571025],[-87.64622117044036,41.83570044888387],[-87.64621688334461,41.83552833037856],[-87.64621275830996,41.83536507681389]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5923102.96124","perimeter":"0.0","tract_cent":"1160475.34807118","census_t_1":"17031580700","tract_numa":"24","tract_comm":"58","objectid":"470","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1876747.51534937","census_tra":"580700","tract_ce_3":"41.81749249","tract_crea":"","tract_ce_2":"-87.68684526","shape_len":"10935.5855547"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68456740500386,41.82300278331737],[-87.68443177635747,41.823000329468464],[-87.68423972710931,41.822999793227325],[-87.68423445695757,41.822893385804406],[-87.68423502063308,41.8227155603441],[-87.68423564386521,41.822519304947896],[-87.68423580096047,41.82246967756849],[-87.68423464314571,41.82237609788093],[-87.68423441189924,41.822357401484254],[-87.68423356080393,41.822288594989175],[-87.68423284999622,41.822231144541895],[-87.68423284866708,41.82223102186535],[-87.68423192735105,41.82216390105375],[-87.68423111185922,41.82210602712107],[-87.68422901274917,41.8219570409824],[-87.68422696426704,41.8218116879958],[-87.68422515187517,41.821747394783415],[-87.68421416083237,41.82135757550386],[-87.68420849607232,41.82113750758673],[-87.68420768172199,41.82110930913433],[-87.6841950063809,41.820670468373635],[-87.68419354584488,41.82061990783961],[-87.68418496930892,41.82026675356173],[-87.68417510147303,41.81985980417738],[-87.68416665002343,41.81954240846237],[-87.68416110252356,41.819339849612284],[-87.68415710170005,41.81919377695359],[-87.68415051562393,41.81893415873844],[-87.68414470234045,41.818717931598535],[-87.68413624373144,41.81841488833977],[-87.68412806170531,41.818091731087144],[-87.68412125291296,41.81782149121519],[-87.68411350910083,41.81752171736211],[-87.6841085406906,41.817329370968075],[-87.68410314619173,41.81710798689443],[-87.68409681287446,41.81684883653898],[-87.68409357675071,41.81661374353839],[-87.68409160760812,41.816470700722036],[-87.68408925690274,41.816245793976506],[-87.68407223295809,41.81570339602545],[-87.68405964435053,41.81530228173307],[-87.68404996841451,41.81499997209033],[-87.68403934184394,41.81466467111909],[-87.68403079368574,41.81429793245628],[-87.68402324017566,41.81396347209714],[-87.68401924008198,41.813785923261264],[-87.68401569226532,41.813628462894435],[-87.68400796301586,41.81336952403106],[-87.68399659686665,41.813067534317284],[-87.68399618311423,41.81305529222386],[-87.68399148542066,41.81291624081488],[-87.68398435405378,41.812721603737046],[-87.68398285882914,41.812680678096314],[-87.68397901740086,41.81257445281228],[-87.68397383904106,41.81243342251911],[-87.6839667122785,41.81220198440171],[-87.6839645159235,41.81211124641339],[-87.68396393612284,41.812087299031326],[-87.68403157115112,41.812061080518106],[-87.6841115048092,41.81205949688441],[-87.68442184373866,41.812058643377284],[-87.68453138019187,41.81206414335662],[-87.68465524327972,41.81207036245521],[-87.68480374417818,41.81206917018901],[-87.68507832680213,41.81206374962729],[-87.6852031769792,41.812061680221234],[-87.68525615468069,41.81206080210433],[-87.68536735648743,41.81205895875978],[-87.68580661519815,41.81205252560011],[-87.68604379909983,41.81204905110387],[-87.68636236077164,41.81204030772287],[-87.68668036542503,41.81203584139726],[-87.68701367053968,41.81203096685953],[-87.68730096961008,41.812026764580914],[-87.68768989301866,41.812021047720904],[-87.68803222817546,41.81201553408862],[-87.68822091249486,41.8120126671122],[-87.68864410234994,41.812006353495754],[-87.68883751985335,41.81200339763405],[-87.6891248554131,41.8119991915465],[-87.68942675879852,41.81199249748196],[-87.68943739741786,41.81240852391908],[-87.68944514798633,41.81271142622766],[-87.68944824472361,41.81284152238798],[-87.68945604844993,41.81316113735199],[-87.68946405758653,41.81343827229724],[-87.68947118147429,41.81368655935527],[-87.68947496455905,41.81380464845855],[-87.6894810187449,41.81399364431948],[-87.68948617384525,41.81418582755298],[-87.6894939328508,41.81447330669812],[-87.68950206488414,41.81477116128863],[-87.68951266545663,41.81515585863678],[-87.68951411358766,41.81520279417111],[-87.68952318900449,41.815496976404496],[-87.68952546091589,41.815562608099555],[-87.68952749012408,41.81562122954964],[-87.68953650443075,41.815881634033204],[-87.68954104268403,41.816073237446716],[-87.68954691145335,41.81631869102283],[-87.68955481386921,41.81661753216817],[-87.68956033240019,41.81682107865403],[-87.68956438029876,41.817054255076776],[-87.68957286976854,41.81726885018836],[-87.68958004372458,41.81743597538564],[-87.68959208526114,41.81771649473068],[-87.68959746789636,41.817914579305445],[-87.68959758010469,41.817918723516755],[-87.68960570442923,41.8182174557749],[-87.68961241460299,41.81846321611758],[-87.68961522194138,41.818571191660574],[-87.68962046926863,41.81877254113506],[-87.68962539831502,41.81894339991673],[-87.6896320963562,41.81917620663051],[-87.68963374608718,41.81923354049728],[-87.68963489582289,41.81927350715862],[-87.6896407156236,41.81947631428198],[-87.68964291257004,41.81957322695549],[-87.68964375926484,41.8196226835412],[-87.68964628421143,41.81977014760012],[-87.68965093378846,41.81992130088985],[-87.68965567493197,41.820074265910165],[-87.68965989381852,41.820213479181916],[-87.68966397773238,41.82037719806908],[-87.6896681518803,41.82054648833511],[-87.689672009126,41.82070353735478],[-87.68967707663693,41.82090817887513],[-87.68968280661616,41.82106696754605],[-87.68968931038853,41.82124722022628],[-87.68969389884352,41.82141182007839],[-87.68969868599048,41.82158588878559],[-87.68970246723067,41.82172112036971],[-87.68970652007637,41.821858686105564],[-87.68971049304659,41.82197671654916],[-87.68971658612703,41.82215773117891],[-87.6897198721414,41.82229853085064],[-87.68972110992304,41.82235114551911],[-87.689722996837,41.82243137094605],[-87.6897244010744,41.822491067321586],[-87.68972819824243,41.822654098193006],[-87.68972705468512,41.822883029809304],[-87.68947463562321,41.82288769540324],[-87.68925584236987,41.82289173916048],[-87.68902906776047,41.822895873573465],[-87.68878016446385,41.82290046295863],[-87.68849566985124,41.822905641257904],[-87.68802516612014,41.82291430535455],[-87.68761388936767,41.82292181857839],[-87.68729403616811,41.82292894334282],[-87.68684858487805,41.8229388642809],[-87.68630279360995,41.82295148839977],[-87.68608030540267,41.82295560957585],[-87.6858926888902,41.82295908438975],[-87.6855081681335,41.822965492236],[-87.68546079600854,41.822966281598276],[-87.68507777956701,41.82298296501057],[-87.68502105770548,41.822986417432006],[-87.68494955485417,41.82299118048231],[-87.68487677144577,41.82299602874088],[-87.68485091451839,41.822997751067106],[-87.68473517510544,41.82300546048841],[-87.68473019095555,41.823005792393396],[-87.68468242952991,41.82300490962039],[-87.68456740500386,41.82300278331737]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14734900.1448","perimeter":"0.0","tract_cent":"1142754.94574915","census_t_1":"17031561200","tract_numa":"2","tract_comm":"56","objectid":"471","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866315.42203266","census_tra":"561200","tract_ce_3":"41.78921261","tract_crea":"","tract_ce_2":"-87.75210847","shape_len":"16246.0003399"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74285476369025,41.79301646954185],[-87.74285920422997,41.792332907273114],[-87.74284494552685,41.79183886152198],[-87.7415522342024,41.79132244564954],[-87.74152472387937,41.79083199859524],[-87.74152441798236,41.79082654438567],[-87.74151644121383,41.79057350673571],[-87.74152820069814,41.790291701067616],[-87.74153980620153,41.79004655833706],[-87.74155678686303,41.78977515296189],[-87.74156164672642,41.789593615603195],[-87.74155832867824,41.78948654749945],[-87.74155832838223,41.78948653981391],[-87.74155679681574,41.78944147503047],[-87.7415527397398,41.78932210429477],[-87.74154548924687,41.7890977484566],[-87.74153984038104,41.78892252370263],[-87.74152202433606,41.78842760845437],[-87.74153342308334,41.78828065539084],[-87.74157322755578,41.78809117488554],[-87.74164681861231,41.78788806458452],[-87.74173388610446,41.787708737068385],[-87.7417594344096,41.78765611617492],[-87.74176799161368,41.78763849138017],[-87.74188404177342,41.78747541923925],[-87.7419863777627,41.78733626151001],[-87.74207519486234,41.787215750192225],[-87.74220204352584,41.787032449667635],[-87.7422907914867,41.786904205223124],[-87.74238764497399,41.78676424749279],[-87.74245498401542,41.786614618195536],[-87.74250814025694,41.78645215494714],[-87.74254196445199,41.78621867969173],[-87.7425413599172,41.78610879504137],[-87.74253338876191,41.7858344615556],[-87.74253048091795,41.785734390450166],[-87.76202121745554,41.785325370138516],[-87.76202164873845,41.78532536103168],[-87.7620244099136,41.785392871539095],[-87.76202963264903,41.78552054760076],[-87.76203392118329,41.78563190280438],[-87.76203753133746,41.785725338498885],[-87.76204413823552,41.78590630302989],[-87.76204995073152,41.78616849447214],[-87.76205624771164,41.78642154980847],[-87.76206470507223,41.78661303389435],[-87.76207015375286,41.7867427014882],[-87.76207853299519,41.786959432687645],[-87.7620902555291,41.78725313080416],[-87.76210026932304,41.78748079212927],[-87.7621136273079,41.78777285149805],[-87.76212474493508,41.78805293458759],[-87.76213658295708,41.788338619604815],[-87.76214815473693,41.78859647614025],[-87.76215897838125,41.78884774263777],[-87.7621678390533,41.78906436802096],[-87.76216801740765,41.789068730688506],[-87.76218200109271,41.78941016292627],[-87.76219174042474,41.78966798285669],[-87.762198827181,41.789861024259466],[-87.7622036581976,41.78999427330027],[-87.76220589582765,41.79005615122842],[-87.76221359553102,41.79024628671369],[-87.76222271417456,41.790458383592714],[-87.76223032790998,41.79062925369807],[-87.76224018872887,41.790899532990636],[-87.76225005964464,41.79117008729817],[-87.76225563832973,41.79133480004844],[-87.76226395216248,41.791571454304155],[-87.76227192325054,41.79181367776],[-87.7622801827835,41.792068855699796],[-87.76228793250833,41.79227405752863],[-87.76229761602202,41.79251453311854],[-87.76230157887223,41.7927356357463],[-87.76217930019274,41.792738209052615],[-87.76190308798793,41.79274298212074],[-87.7617014855913,41.792745404562424],[-87.76156391771181,41.79274705753909],[-87.76133317701877,41.792751891436865],[-87.76108660138453,41.792755897350865],[-87.76079792197558,41.79276058644787],[-87.7605366443337,41.79276427860616],[-87.76029143131129,41.792767666104076],[-87.76001775250178,41.792772063623495],[-87.7598676764616,41.79277411949771],[-87.759655067841,41.79277703144022],[-87.75938693045954,41.7927809611564],[-87.75925551922897,41.79278309960081],[-87.75909403259676,41.79278572698288],[-87.75881019426043,41.7927902903842],[-87.75863799446267,41.7927935787094],[-87.75851182399828,41.79279598786003],[-87.7583124608654,41.792798118625626],[-87.75815127296174,41.792800138316835],[-87.75803193105831,41.792801802025174],[-87.75796734482951,41.79280270252098],[-87.75769158101676,41.792806480311],[-87.75742032766647,41.79281034591393],[-87.75715307048331,41.79281415407908],[-87.75703064422859,41.79281617450107],[-87.75683068151486,41.792819726718726],[-87.75660834549123,41.79282371512864],[-87.7563523057786,41.7928280278087],[-87.75619595750581,41.7928301804812],[-87.75587621921183,41.79283458206642],[-87.75567654975548,41.79283813374892],[-87.75545281549894,41.79284263430663],[-87.75529914172103,41.79284501710874],[-87.75497497057911,41.792848960282335],[-87.75486190113047,41.79285033585863],[-87.7545847698795,41.792855251632105],[-87.7542846502902,41.7928596672144],[-87.75394044235765,41.792865148929586],[-87.75375207255745,41.792868211435035],[-87.75364028145985,41.79287002887505],[-87.7534330592568,41.79287342904802],[-87.75319678851494,41.79287734023757],[-87.75302704805011,41.79288027004938],[-87.75287751641062,41.792882862910155],[-87.75250742305312,41.792887830823084],[-87.75218247693951,41.79289219195335],[-87.75182686909986,41.7928971434091],[-87.75149532234893,41.79290155700077],[-87.75111689783256,41.79290721398202],[-87.75074706074854,41.792912199750525],[-87.75049946287106,41.79291560913551],[-87.75010560372449,41.792920855162],[-87.7496700413796,41.79292698540712],[-87.74934486829021,41.79293211152118],[-87.74874359511283,41.792941539895494],[-87.7483412926378,41.79294777973665],[-87.74786328969357,41.79295519663929],[-87.74753130185192,41.79295962398379],[-87.74716839585271,41.79296452380134],[-87.74688257344815,41.79296929459034],[-87.74656319966674,41.79297383841595],[-87.74630749447321,41.79297752666937],[-87.74591454799966,41.792983147189254],[-87.74561343991134,41.79298726035654],[-87.7452578302895,41.79299221890854],[-87.74494872303423,41.79299689312861],[-87.74464020208868,41.793001569521344],[-87.74446239502043,41.79300430812447],[-87.74414616789795,41.79300954743203],[-87.7439719615593,41.79301156278462],[-87.74384123186107,41.793015179435635],[-87.74361779059394,41.79301956980283],[-87.74312891450764,41.79301689452436],[-87.74285476369025,41.79301646954185]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7094219.87889","perimeter":"0.0","tract_cent":"1143853.11055312","census_t_1":"17031560300","tract_numa":"30","tract_comm":"56","objectid":"472","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871677.69700589","census_tra":"560300","tract_ce_3":"41.80390712","tract_crea":"","tract_ce_2":"-87.7479479","shape_len":"10656.7272887"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74315183339885,41.80762308434993],[-87.7431319852069,41.8069003788458],[-87.74313043299372,41.806843866328265],[-87.74311424903529,41.80618513812648],[-87.74311424734596,41.80618508240882],[-87.74310686828134,41.80579985447523],[-87.74309909422941,41.80533778258062],[-87.74309909229171,41.80533771396354],[-87.74308543671806,41.804752511948635],[-87.74305287352215,41.804347024902555],[-87.74306057055837,41.80397085526171],[-87.74303859429762,41.80328602130255],[-87.74301869737607,41.80267038222884],[-87.74300335312198,41.80214891472656],[-87.7429906339969,41.80161713610981],[-87.74299053168436,41.801612859161686],[-87.74297477406873,41.80095662160779],[-87.74296464017476,41.80056029690545],[-87.74295868696494,41.80032747663542],[-87.74325550576656,41.80032481883436],[-87.74344698034531,41.80032168605847],[-87.74360451330554,41.80032035406303],[-87.74377430783292,41.80031771318542],[-87.74386909518385,41.80031572947571],[-87.74403768399036,41.8003125877756],[-87.74418704448772,41.80030978053922],[-87.74432101333915,41.800307262474114],[-87.74454093340894,41.800305673034345],[-87.7447951871548,41.800301954975055],[-87.7448841874403,41.800300653470345],[-87.74510252094998,41.80029609099749],[-87.74529912582247,41.80029336532978],[-87.74540848011914,41.80029190991799],[-87.74560745641399,41.80028926254541],[-87.7458503551762,41.800285482957854],[-87.74601759095043,41.800283174751705],[-87.74609988908958,41.8002820386467],[-87.74629565190533,41.80027914231144],[-87.74652645906835,41.800274119459246],[-87.74662766466218,41.80027275710353],[-87.74676883955574,41.800270856696514],[-87.74709462139243,41.80026741532645],[-87.74720327023252,41.800265609648775],[-87.74723785277673,41.8002650983754],[-87.74738267352541,41.800262957303076],[-87.74748424134054,41.80026144455551],[-87.74769581239701,41.800258406909364],[-87.74784924124678,41.80025694416079],[-87.74805408824461,41.800254991528064],[-87.74826572512619,41.800252776179434],[-87.74846086811353,41.80024945860952],[-87.74865711623288,41.800245602963784],[-87.74880570684408,41.80024353252357],[-87.74906976968524,41.800239772584916],[-87.74927429487082,41.80023685975491],[-87.74956347469467,41.800233389939436],[-87.74968092879162,41.800231544060715],[-87.74975876201019,41.80023032062803],[-87.74994627201028,41.80022748591723],[-87.75019041306287,41.80022416998925],[-87.7502920131655,41.8002230874225],[-87.75046777867244,41.80022121422452],[-87.75067076067752,41.80021892336192],[-87.75076532122824,41.800217646599926],[-87.7509039612075,41.800215751855944],[-87.75097623043814,41.800214764212065],[-87.7511639609004,41.80021187374522],[-87.75140562195651,41.800207005864706],[-87.75151191229753,41.80020545035975],[-87.75164103531026,41.80020356031235],[-87.751875265909,41.80020112367743],[-87.7521229017819,41.80019774284455],[-87.75232026907975,41.800194675859544],[-87.75257372752394,41.80019112756145],[-87.75273612068429,41.80018714345771],[-87.75273612066198,41.80018714592747],[-87.75273614272267,41.800187789848955],[-87.75274001587854,41.80030302891031],[-87.75274008496285,41.80030508610341],[-87.75274008494551,41.800305088024324],[-87.75274290899061,41.80043924254929],[-87.75274326305116,41.80046210123934],[-87.75274499413196,41.800573832971565],[-87.75274651879661,41.80064464358103],[-87.75274865634985,41.800745150482264],[-87.75275067675882,41.800818330543386],[-87.75275382427398,41.80093233730674],[-87.75275799056296,41.80108198653724],[-87.75275856061543,41.801102451925296],[-87.75276449663701,41.80128991677405],[-87.75276594385858,41.80133530225618],[-87.75276894106281,41.801429316663295],[-87.75276992784607,41.801460255259755],[-87.75277488576145,41.80161793853645],[-87.75277662617974,41.80167826045885],[-87.75277843418156,41.801740928264614],[-87.75278168203127,41.801853742025635],[-87.75278376677532,41.80192613972662],[-87.7527842326849,41.8019446136048],[-87.75278600882163,41.802015038523436],[-87.75278600912891,41.802015045111276],[-87.75278847491148,41.80211182580707],[-87.75278879821717,41.8021245227882],[-87.7527908772843,41.802231396937074],[-87.75279295637615,41.80233826888865],[-87.75279768190985,41.8024892831719],[-87.75280151930461,41.802633048045074],[-87.75280761072511,41.80283582674862],[-87.75281152695534,41.80294644157508],[-87.7528170794841,41.80312770233569],[-87.75282184183396,41.80329090141646],[-87.75282585694582,41.80345557917999],[-87.75282902802716,41.80358369850234],[-87.75283399357387,41.80373251853551],[-87.75283555914285,41.8038434683432],[-87.75283555942043,41.80384347822404],[-87.75283717001973,41.803957566348615],[-87.7528433121747,41.8041304871513],[-87.75284672308997,41.804264589665365],[-87.75284905199362,41.804356273765755],[-87.75285132320495,41.80444565429376],[-87.75285490434584,41.804569027776346],[-87.75285490433099,41.804569029422844],[-87.75285915091482,41.80470401377188],[-87.75286298881348,41.80482738854618],[-87.7528667247355,41.804949912622675],[-87.75287115046561,41.80510166627743],[-87.75287523679907,41.80524213892418],[-87.7528806632676,41.80542927229348],[-87.75288430731734,41.80555385383229],[-87.75288640507837,41.80564498541669],[-87.75288699454082,41.805670581328],[-87.7528869948283,41.805670590111156],[-87.75288700141901,41.805670875824596],[-87.75289018537183,41.805796166900876],[-87.7528916133871,41.8058523526592],[-87.75289161491894,41.805852426762655],[-87.75289164959462,41.805853786456886],[-87.75290030977882,41.806192974767846],[-87.75293309192188,41.80747690815305],[-87.75293309407834,41.80747699433448],[-87.75293313335834,41.80747853489995],[-87.75293320307671,41.807481254563925],[-87.75293351786938,41.807493599123745],[-87.7525473421385,41.80749919353711],[-87.75236638376239,41.8075012423127],[-87.75211389671713,41.80750369731271],[-87.75190238471995,41.80750570053293],[-87.75172189274991,41.807509465831735],[-87.75149164371891,41.807514268646884],[-87.75132711545204,41.80751656366116],[-87.75115466626082,41.80751865363941],[-87.75091894237944,41.80752102631059],[-87.75065960618564,41.80752237311669],[-87.75049294533154,41.80752499119595],[-87.75032419783999,41.807527641802835],[-87.75007052054623,41.80753189749791],[-87.74984227115469,41.80753515663888],[-87.7496537158502,41.807537656523266],[-87.74944241431425,41.80754069911086],[-87.74927249967608,41.80754261445579],[-87.74901630123,41.807545502894826],[-87.74875672603717,41.807548957287786],[-87.7485127098331,41.807551612135505],[-87.74822132661389,41.80755174745117],[-87.74804891330629,41.80755624188199],[-87.74778187519563,41.80756320221171],[-87.74748353008617,41.80756656586631],[-87.7472552498241,41.80756916108048],[-87.7470036841448,41.8075710881336],[-87.74683288168688,41.80757352965001],[-87.74646046302698,41.80757885220563],[-87.746280011318,41.807581607494456],[-87.74608372116455,41.807583622903614],[-87.7457913470175,41.807587781086774],[-87.74560401570952,41.80759008793455],[-87.74532847266806,41.807593480872946],[-87.74521739368869,41.80759494300306],[-87.74494160321856,41.80759863506898],[-87.74476589189628,41.807600424317386],[-87.74450273075361,41.80760280789505],[-87.74437966118472,41.807601949205335],[-87.74405783685845,41.80759970324531],[-87.7439247316434,41.80759517836444],[-87.74379532791005,41.80759099917005],[-87.74378330058873,41.80759061059968],[-87.7437076152968,41.807592293801974],[-87.74356673769194,41.80759537171711],[-87.74345080714983,41.80759790494395],[-87.74324127332707,41.80761555192726],[-87.74315183339885,41.80762308434993]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2622599.08759","perimeter":"0.0","tract_cent":"1180634.2638331","census_t_1":"17031420600","tract_numa":"12","tract_comm":"42","objectid":"479","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864343.28075616","census_tra":"420600","tract_ce_3":"41.7830142","tract_crea":"","tract_ce_2":"-87.61327818","shape_len":"6617.00981185"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61533008988793,41.78024441153144],[-87.61562233042915,41.78023913842987],[-87.61562764608635,41.78044478914427],[-87.61563161968567,41.78057920536831],[-87.61563483330492,41.78069467795475],[-87.61563677655968,41.7807644768125],[-87.61564406665673,41.78103134983133],[-87.6156516969339,41.78131046421554],[-87.61566039467263,41.78162866392243],[-87.61566768308239,41.78189570127276],[-87.61566872174045,41.781939240132715],[-87.61566872237272,41.78193924919282],[-87.61567192978747,41.78207366745559],[-87.61567592921904,41.7822412584044],[-87.6156797740562,41.78240939778901],[-87.61568592537435,41.782676455442164],[-87.61569086053302,41.78289152867349],[-87.6156964358597,41.783134652516715],[-87.61570137631593,41.78337881521301],[-87.61570511932327,41.78357582355877],[-87.61571349624123,41.78388422814491],[-87.6157205602292,41.78414426193817],[-87.6157244310112,41.78428375079572],[-87.61573043677146,41.784508051458616],[-87.61573724696898,41.78476869149745],[-87.61573856006905,41.78483181802582],[-87.61574347787159,41.78503196242117],[-87.61574709259709,41.785184457576854],[-87.61575564668946,41.78554532982618],[-87.61575954154117,41.78569891455305],[-87.61557373358885,41.785703919382286],[-87.61526675237559,41.7857109937364],[-87.61470391303423,41.785721003621184],[-87.61446303518589,41.78572538744891],[-87.61417987245176,41.78573054012147],[-87.61359826043112,41.785740481954555],[-87.6132758574094,41.78574611817406],[-87.61300285558518,41.78575088321556],[-87.61243895058696,41.785761039976094],[-87.61208750470804,41.78576699034116],[-87.61187490556046,41.7857705893456],[-87.61114820178419,41.785783751361144],[-87.61091759966195,41.78578762208766],[-87.61092681011475,41.78558419447551],[-87.61091959780425,41.78530607058616],[-87.61091957897173,41.78530533115698],[-87.61091805877568,41.78524670199269],[-87.6109068355145,41.784848517768076],[-87.61090545271774,41.78480152661064],[-87.61090159105514,41.78466898099705],[-87.61089674963358,41.784505802978536],[-87.61089310374899,41.78438265021336],[-87.61088750647126,41.78419251167484],[-87.61088425756428,41.78396906813706],[-87.61088154763584,41.78378269726192],[-87.6108763763102,41.78360318835989],[-87.61086970913908,41.78337076018573],[-87.6108665439156,41.783237916772336],[-87.61086116801603,41.78301131459325],[-87.61085704244294,41.782836642189444],[-87.61085042030135,41.78255775347632],[-87.61084604982518,41.78237223958165],[-87.6108426803042,41.78214648891507],[-87.61084010692777,41.78197406092031],[-87.61083452627358,41.78173631559373],[-87.6108304642721,41.78156252172297],[-87.61082582645295,41.78136490352898],[-87.61082161659414,41.78118468735667],[-87.61081670824245,41.7809752123965],[-87.61081216229313,41.78078283909532],[-87.61080773072122,41.78059265699821],[-87.61080295432488,41.78035239220099],[-87.61080240474855,41.78032472768609],[-87.61102856440203,41.78032093405621],[-87.61123039821864,41.78031770224316],[-87.61144022700782,41.780314300771074],[-87.61174935883086,41.78030935469922],[-87.61202335731348,41.780303113643946],[-87.61219134449213,41.78029928671777],[-87.61244694158863,41.78029485343635],[-87.61264826516138,41.78029136894394],[-87.61285714272378,41.78028773937293],[-87.61320587562712,41.78028181459954],[-87.61338454244687,41.7802787787362],[-87.61356368102022,41.78027562013659],[-87.6138271992006,41.780270986425045],[-87.61419897019432,41.7802644227197],[-87.61441126717881,41.780260600416725],[-87.61457899432598,41.78025758013178],[-87.61481137288045,41.780254011708045],[-87.61498933873753,41.78025076122155],[-87.61533008988793,41.78024441153144]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"57541045.7965","perimeter":"0.0","tract_cent":"1194515.53886931","census_t_1":"17031550200","tract_numa":"133","tract_comm":"55","objectid":"473","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1817233.85418096","census_tra":"550200","tract_ce_3":"41.65341119","tract_crea":"","tract_ce_2":"-87.56392943","shape_len":"40266.3180282"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.55659704817802,41.6699686262158],[-87.55584754753674,41.66887371359453],[-87.55582056955853,41.66883442428508],[-87.55573064854403,41.66870311714302],[-87.55438056541144,41.66665253033316],[-87.55428937306593,41.66651332316167],[-87.55411797046024,41.66627271770263],[-87.55387943785131,41.66590850454634],[-87.55364937515297,41.66556287289608],[-87.55347111889103,41.66528414169872],[-87.55319611978913,41.664871653974764],[-87.55234404434623,41.66375681136145],[-87.55202003929924,41.66346370926557],[-87.55197659461207,41.66342464985256],[-87.55190674346899,41.663375120165874],[-87.55126992906978,41.66292311834668],[-87.55076896350529,41.66262434861542],[-87.55041106908148,41.66241094009775],[-87.54954234895547,41.66193264827959],[-87.54954198806509,41.66184945252203],[-87.5495519611327,41.66173340530757],[-87.54954926159003,41.661316057275954],[-87.54954896989906,41.66098295026777],[-87.54954890206236,41.660905281950335],[-87.54954859643266,41.660556089968544],[-87.5495461220572,41.660014724427334],[-87.54954500798597,41.65963610754257],[-87.54954439993953,41.659429427063294],[-87.54954418405319,41.659169702231054],[-87.54954381218174,41.658723413793105],[-87.5495495478345,41.65749890013898],[-87.54955022107877,41.65734607258998],[-87.54955470697895,41.65632792442167],[-87.54955904460195,41.6555134497805],[-87.54956152968293,41.65504685648745],[-87.54956703411187,41.65417932499433],[-87.54956812674065,41.65404455772536],[-87.5495682623269,41.653908988067485],[-87.54957073119648,41.653686112038876],[-87.54957252757272,41.65352395826004],[-87.54957344938012,41.65301930710812],[-87.54958119732264,41.65185573921161],[-87.54958473691673,41.65132488492099],[-87.54943851439043,41.65121337655704],[-87.54905786572598,41.650914555261224],[-87.548720705549,41.65065060832047],[-87.54844550598726,41.650437030047506],[-87.54822910232802,41.650269080646424],[-87.54785067216362,41.64997580609718],[-87.54747205186627,41.649682380249864],[-87.5471892602007,41.64946497493661],[-87.54668791576185,41.649079544813354],[-87.54660444649564,41.64901458540594],[-87.5463375261058,41.6488068556008],[-87.54598843183848,41.64853887387872],[-87.54581722676859,41.64840744746623],[-87.54560691701703,41.648238985428335],[-87.54549227027422,41.64815040445624],[-87.54523683035838,41.647953039870444],[-87.5448740228695,41.64767049114853],[-87.54419959122966,41.647146962018546],[-87.5441298017194,41.6470928580471],[-87.54393976406134,41.6469458943947],[-87.54373400208009,41.64678332178823],[-87.54350782937733,41.64660392210743],[-87.54323124191437,41.64638648183643],[-87.54311917615033,41.64629839675756],[-87.54271517614433,41.64598106152994],[-87.54241572423712,41.64575231831329],[-87.54215162743866,41.645549696871434],[-87.54188096485355,41.64533903669768],[-87.5416084758358,41.64512642853674],[-87.54130065396211,41.644885686831586],[-87.54085138104136,41.644560160601465],[-87.54108568074234,41.64455921940988],[-87.54165362312573,41.64456159603439],[-87.54180702334243,41.64456224139388],[-87.54208688521294,41.644563393811886],[-87.5421446289553,41.64456363157665],[-87.5423097407301,41.644564325593905],[-87.54248234325827,41.64456505088003],[-87.54268881612518,41.644565283013534],[-87.54319602664417,41.6445658521943],[-87.54947210932194,41.64457270891509],[-87.54980303096721,41.64457306116592],[-87.55199850474838,41.64459020162483],[-87.5529861876807,41.64459721288441],[-87.55875351826188,41.644638829906626],[-87.55888091863238,41.64463989282222],[-87.55928348927047,41.64464325055454],[-87.55928394107427,41.644643254145954],[-87.55928407716286,41.644643255336845],[-87.55931633726907,41.644643524173226],[-87.5593163412933,41.644643524200326],[-87.55931836251081,41.644643541104315],[-87.56057974635152,41.64464685488958],[-87.56092377322169,41.64464775638437],[-87.56141292733128,41.644649036324466],[-87.56174197421623,41.64465410168177],[-87.56200997010878,41.6446582264957],[-87.56225417326092,41.644661984426676],[-87.56237421484074,41.64466383167944],[-87.5624332226158,41.644663936000136],[-87.56270903481033,41.64466442320116],[-87.56271529175444,41.64466443413913],[-87.56282992932377,41.64466463649664],[-87.56289573849472,41.64466474857443],[-87.5630128980268,41.644664948168774],[-87.56307139730924,41.64466504738181],[-87.56319433917919,41.64466526440862],[-87.56337769374666,41.644665587141716],[-87.5633850347341,41.64466560009054],[-87.5635270405029,41.64466584978036],[-87.56355082172655,41.64466589707887],[-87.56355132990284,41.64466589828671],[-87.56358550518648,41.64466596661269],[-87.56375437998919,41.644666242820584],[-87.56391730187347,41.64466650911996],[-87.56403906184495,41.644666708275246],[-87.56404122078757,41.644666712021774],[-87.56418551330829,41.64466695589465],[-87.56418717102231,41.64466695875433],[-87.56428268883018,41.64466712008791],[-87.56439602250778,41.64466731847127],[-87.5646404944665,41.644667746155505],[-87.5647382589614,41.64466791692117],[-87.56476337117783,41.64466796738011],[-87.56479672327619,41.644668034507056],[-87.56483726798679,41.64466810058991],[-87.56502055519063,41.644668398296794],[-87.56518010570083,41.644668657560004],[-87.56524124582812,41.64466875685102],[-87.56525243897822,41.64466877511402],[-87.56539134422879,41.64466900864251],[-87.56549390707124,41.64466918091009],[-87.56567990908432,41.644669504482806],[-87.56594955047203,41.64466997343128],[-87.56600801335634,41.64467008874481],[-87.56623590893604,41.64467045698721],[-87.56637987636199,41.64467068934902],[-87.56643395831449,41.64467077631178],[-87.56646373098822,41.644670824561594],[-87.5665726732955,41.64467098162055],[-87.56670519978539,41.644671172930394],[-87.56684116601032,41.6446714084312],[-87.56716084327425,41.644671961747584],[-87.56721930616855,41.64467207671945],[-87.56745271678689,41.6446724515897],[-87.56757984438583,41.644672655589886],[-87.56767502316546,41.644672808003335],[-87.56780576210194,41.64467302455766],[-87.56791641856647,41.644673207950945],[-87.56820855835389,41.644673674868564],[-87.56820962739799,41.644673676770466],[-87.56837213452647,41.64467393618927],[-87.56843059890055,41.64467405028037],[-87.56854658954214,41.64467424935342],[-87.56868489659254,41.64467448644727],[-87.56874162805072,41.64467458363776],[-87.56888631608332,41.644674831374964],[-87.5691277836813,41.64467528496867],[-87.5695834255435,41.64467606417045],[-87.56964189094157,41.6446761230396],[-87.57002930256701,41.64467673637849],[-87.57009753533629,41.644676844235235],[-87.57033900364884,41.64467723930412],[-87.57079464598682,41.64467801288376],[-87.57085311103438,41.64467807085999],[-87.57126399362166,41.64467876739649],[-87.57130875486851,41.64467884323462],[-87.57155029648064,41.64467929168035],[-87.57200806144188,41.64468001908109],[-87.5720593536482,41.644680139256835],[-87.57251719401442,41.64468086512908],[-87.57258103606206,41.64468096879444],[-87.57275866096286,41.644681255654014],[-87.57321650102055,41.64468197873837],[-87.57326779350824,41.644682044312965],[-87.57368224589379,41.64468274565525],[-87.57372555907605,41.64468281866607],[-87.57486801820362,41.644679999806236],[-87.57486865410736,41.644679997690325],[-87.5748686837404,41.644679997885866],[-87.57486903973802,41.64467999721618],[-87.57486923581855,41.64467999933335],[-87.57486956176258,41.64468000313074],[-87.57725061653855,41.64470875052036],[-87.57837383250407,41.64469468003508],[-87.57837707018278,41.644694639278235],[-87.57842169123148,41.645173829419456],[-87.57844636502331,41.64551837364211],[-87.57851866952235,41.64594600461625],[-87.57857536128255,41.64625352450967],[-87.57861564688852,41.64644767733272],[-87.57867652675458,41.64669869105298],[-87.57876425168287,41.64701022920754],[-87.5788335167634,41.647248234767304],[-87.57887779488219,41.64737981534689],[-87.57918195308552,41.64816068341428],[-87.57963828279829,41.64914368482386],[-87.57979209446566,41.64940510451187],[-87.58048736491357,41.65042360575974],[-87.58055931398528,41.650519918677126],[-87.58081134912258,41.65083725136411],[-87.58104739689676,41.651116826400774],[-87.58177593973922,41.65196562525014],[-87.58185896081412,41.65206234865793],[-87.5821222277637,41.65238403302237],[-87.5827408775793,41.653083547066906],[-87.58301959896508,41.653408019716004],[-87.58338557981206,41.6538347390919],[-87.58374984350057,41.65427256068314],[-87.58468362521579,41.65536581933323],[-87.58487371518397,41.65558723563977],[-87.58627312155929,41.65721720570035],[-87.5869438446371,41.65799048424351],[-87.58697811684509,41.658029996210175],[-87.5869885955871,41.658042077074676],[-87.58702889848583,41.65808854119047],[-87.58726905147941,41.65836540800843],[-87.58765092968329,41.65880566044596],[-87.58818712482245,41.65944458396755],[-87.58832529818324,41.65960922673418],[-87.58867885640183,41.66003051174667],[-87.58888073352189,41.6602577470628],[-87.58899968212809,41.66039163650524],[-87.58864994113168,41.660393766086905],[-87.5885322634209,41.660419088015566],[-87.58811390108978,41.66038329862769],[-87.58800967066223,41.66036263434476],[-87.587703435585,41.66037979455668],[-87.58770343192572,41.66037979453294],[-87.58744767827108,41.660379388697315],[-87.58696093347999,41.66036260350088],[-87.58663413056173,41.660341405726314],[-87.58604990926504,41.66026948151828],[-87.58536421675113,41.66012471286473],[-87.58516218132807,41.66005298078627],[-87.58482901784382,41.65994815392441],[-87.58435099651612,41.65980606137915],[-87.58397471629942,41.659664630221606],[-87.5836486768756,41.659578026838766],[-87.58344483298804,41.659519627609406],[-87.58335147490656,41.6594928813364],[-87.5830001692192,41.65941029060481],[-87.58271014998736,41.65935117048844],[-87.58243450749214,41.65930576895962],[-87.58210793290799,41.659265483605694],[-87.58181753573496,41.65923905981888],[-87.58158858714187,41.65922159326252],[-87.58066233679872,41.659199010400826],[-87.58049148565105,41.65919805609826],[-87.5803851849684,41.65919737623625],[-87.5797872665595,41.65919355101685],[-87.57938550625867,41.659192123798306],[-87.57899352837677,41.65919284507999],[-87.57868910175694,41.65919430181593],[-87.57820714922381,41.65919498124011],[-87.57782722504463,41.659194446179974],[-87.57745235238905,41.659193916739746],[-87.57694669759013,41.659183153000896],[-87.57676651213993,41.65918561704792],[-87.57655538843991,41.65919252492861],[-87.57634755805331,41.65919932457865],[-87.57550441024128,41.65920540440575],[-87.57438930225467,41.659204029217385],[-87.57334040663865,41.659201458314804],[-87.5732933486069,41.659201342814356],[-87.57317395514569,41.65920090314013],[-87.57306431018327,41.65920049928469],[-87.57255742136549,41.659198631577254],[-87.57233855229634,41.65919782454849],[-87.57210553826089,41.65919725713293],[-87.57197856591407,41.659196947971104],[-87.57123645167277,41.65919513765705],[-87.56996682182978,41.659185993465634],[-87.56792807630416,41.659182104949764],[-87.56684244604288,41.6591800193762],[-87.56578700985953,41.659176872670216],[-87.56563420740724,41.65917653027487],[-87.56412929997764,41.65917314557463],[-87.56331607941166,41.659170501123825],[-87.56280662455308,41.65916884161377],[-87.56208803773772,41.65916637937044],[-87.56177772478351,41.6591653148324],[-87.5610252993585,41.65916310096379],[-87.56085424569073,41.65916259718964],[-87.56061327062793,41.659165006321544],[-87.560351992411,41.65916761815402],[-87.55963596446001,41.659174573625094],[-87.55928617360094,41.65918933573834],[-87.55928432347227,41.659791796072184],[-87.55928156948268,41.660971240619766],[-87.55928145900744,41.661018785038564],[-87.55928053846215,41.66141513222601],[-87.55927929368931,41.66195057082344],[-87.55927745890195,41.66235024369422],[-87.55927567717893,41.662738391762986],[-87.55927540430073,41.66286204304156],[-87.55927288445709,41.66400436448801],[-87.5592714861436,41.6645855238824],[-87.55927106955866,41.664693789661264],[-87.55926753080162,41.665612429006316],[-87.55926903421044,41.66644275037829],[-87.55926927434186,41.66657544351257],[-87.55926983784649,41.66688658531567],[-87.55927050068824,41.66725274022776],[-87.55926813076387,41.667703015548085],[-87.55926745204006,41.66783199459014],[-87.55926925132655,41.66788255741417],[-87.55926564981819,41.6683115280555],[-87.55926074285709,41.66852560823648],[-87.55925947987524,41.66865172098109],[-87.55925012832473,41.66865943298005],[-87.55903821189455,41.66883419196186],[-87.55882565460408,41.66900976952812],[-87.5587375482448,41.668993738858454],[-87.55864306478493,41.668937186159766],[-87.55836464636926,41.66892021502295],[-87.55817461579518,41.66893402764145],[-87.55811932056646,41.6690050074592],[-87.55806408731482,41.66907084203483],[-87.557845137598,41.66920692480594],[-87.55785843397764,41.66924269090551],[-87.55781735258152,41.66927294446129],[-87.55774961707668,41.66923681100142],[-87.55769481220965,41.669266971628694],[-87.55772146550014,41.66933335891062],[-87.55739909370986,41.669585720200075],[-87.5572427279665,41.66961519489557],[-87.55705186676899,41.669659873833794],[-87.55692206305189,41.66972520415231],[-87.55684008423108,41.66977027491962],[-87.5568391031561,41.66985191231373],[-87.55674958622143,41.669953190990924],[-87.55664076824173,41.66994731002826],[-87.55659704817802,41.6699686262158]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6971497.18957","perimeter":"0.0","tract_cent":"1176720.69217839","census_t_1":"17031490700","tract_numa":"33","tract_comm":"49","objectid":"474","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1837972.28134546","census_tra":"490700","tract_ce_3":"41.71073801","tract_crea":"","tract_ce_2":"-87.62841854","shape_len":"10612.8778928"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62360510615419,41.714164003709186],[-87.62362190522225,41.714089286299355],[-87.62363507109542,41.7140086944575],[-87.62365247673662,41.71384480133244],[-87.6236582397276,41.713693816936605],[-87.62365506844051,41.71353904508354],[-87.62365254398064,41.71341583691501],[-87.62364458291394,41.71307077167556],[-87.62363609703446,41.71281670487542],[-87.62363146804107,41.712626414670034],[-87.6236274459321,41.712461097142686],[-87.6236211789038,41.71211856708388],[-87.62361785117369,41.71191500017844],[-87.62361322847418,41.71171485594486],[-87.62360847332656,41.71150897470415],[-87.62360473309649,41.71131953848877],[-87.62360251277893,41.71114185707941],[-87.62359876128173,41.710963535562385],[-87.62359460340373,41.7108057777567],[-87.62359108699866,41.71067234299688],[-87.62358475861383,41.710378661395566],[-87.62358105862874,41.71020228836756],[-87.6235805871513,41.71004871315394],[-87.62357658679585,41.70989478709616],[-87.62357302195993,41.70975760354522],[-87.6235698772039,41.70955406512956],[-87.62356685184226,41.70941205516826],[-87.62356209809158,41.70915592556984],[-87.62355869463927,41.708984764708],[-87.623551864304,41.70864124684812],[-87.62354304585931,41.7082577006072],[-87.62353974250895,41.70806972120004],[-87.6235342391533,41.70775653269297],[-87.62353238870688,41.707617356597936],[-87.623529048994,41.70736606566403],[-87.62352262903596,41.70716471144916],[-87.6239352364935,41.70715871540813],[-87.6244214824796,41.70715098578204],[-87.62473171486403,41.70714715065157],[-87.62510721769148,41.70714250781666],[-87.62560387585192,41.70713701717333],[-87.62591887177761,41.70713296228303],[-87.6260557825492,41.707131132871496],[-87.6262732074253,41.707128227319025],[-87.62711866825495,41.70711821608938],[-87.62732117931644,41.70711581708322],[-87.62801325160919,41.70710379308479],[-87.6282712811552,41.70710139724339],[-87.6282961685131,41.70710116463384],[-87.6283210558739,41.70710093174447],[-87.6291833779325,41.70709291140496],[-87.62951265630552,41.70708883949822],[-87.63048188428905,41.70707684790072],[-87.63070193855603,41.70707381640064],[-87.63177183979829,41.707059071197655],[-87.63190168226362,41.70705750342275],[-87.63247815512237,41.70705053738876],[-87.63307861899372,41.70704327556588],[-87.63313251342751,41.707042660742985],[-87.63316689891316,41.70797460607206],[-87.63318540918208,41.708884462330815],[-87.6332110323181,41.70977172111133],[-87.63324174564676,41.71069503027899],[-87.63324175065762,41.71069517603308],[-87.63324412880597,41.71077188557132],[-87.63326951832454,41.71159636624782],[-87.63327263343159,41.71168900639119],[-87.63329070113174,41.71251300351148],[-87.6332907030254,41.71251309902543],[-87.6333110864786,41.71341919252726],[-87.63333617298102,41.7143561881505],[-87.63330684776767,41.71435841079082],[-87.6330252937179,41.71435738134255],[-87.63289344378971,41.714356920500215],[-87.6308808730064,41.71434970412545],[-87.63078841260946,41.71435559654403],[-87.63054004498665,41.71435934691148],[-87.63038728822369,41.71436162341684],[-87.6302923749793,41.71436293744853],[-87.63023467974288,41.7143637359671],[-87.63006591770916,41.7143659690009],[-87.62987979293278,41.714368369931236],[-87.62968923425692,41.714370962955584],[-87.62952329223894,41.71437321246017],[-87.62939124012885,41.71437114120717],[-87.62924469539371,41.7143546007613],[-87.62917559352668,41.71434007125448],[-87.62909111600462,41.7143148000597],[-87.62900807782131,41.71428182580797],[-87.62890576518406,41.714239622196246],[-87.62879691848275,41.71420547418009],[-87.62872663286684,41.7141886870767],[-87.62866112121309,41.71416740135011],[-87.62857448053245,41.71415578268105],[-87.62849762234626,41.71414902870749],[-87.62841366758249,41.71415795226772],[-87.62834152819359,41.71417339933092],[-87.6282492795656,41.71419229058057],[-87.62816584122815,41.71421280008449],[-87.6280759557201,41.71424334161772],[-87.62799477134735,41.71428203223614],[-87.62789862112497,41.71431957134135],[-87.62784339290097,41.71433917307256],[-87.62776275946248,41.71436433713122],[-87.62769074330461,41.71437849471042],[-87.62757411360401,41.71439295455573],[-87.62745825501176,41.71439715525869],[-87.62728570830758,41.71439891006835],[-87.62717396597205,41.714400046493694],[-87.62703633316903,41.71440252125555],[-87.62681551763698,41.714405444959134],[-87.6266784474258,41.71440674626086],[-87.62647690842384,41.71440865911452],[-87.62625736885222,41.714412056128715],[-87.62607854768959,41.71441467257553],[-87.62588503844111,41.71441750348711],[-87.6256128912789,41.714422029872324],[-87.62547720568259,41.71442398126284],[-87.6253382608882,41.71442588167622],[-87.62508409343667,41.71442741650142],[-87.6248765312985,41.714430446979016],[-87.624643993257,41.71443384172854],[-87.6244576433352,41.71443669902081],[-87.62441414528655,41.71443691367952],[-87.62433900396964,41.7144372843635],[-87.62428609076326,41.71443619688218],[-87.62416873892563,41.71443294053482],[-87.62408308118987,41.71442856982759],[-87.62393036365039,41.714417253602186],[-87.62380399061455,41.714398360857864],[-87.6235584946843,41.71433306867501],[-87.62360510615419,41.714164003709186]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"16995983.2737","perimeter":"0.0","tract_cent":"1185388.07806217","census_t_1":"17031470100","tract_numa":"64","tract_comm":"47","objectid":"475","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1844401.72816825","census_tra":"470100","tract_ce_3":"41.72818206","tract_crea":"","tract_ce_2":"-87.5964756","shape_len":"18137.9442529"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58962560927795,41.72775721627149],[-87.58932646481507,41.727251698435325],[-87.58901922527168,41.72673377794173],[-87.58878252315995,41.72633363276124],[-87.58858499229257,41.7259535913983],[-87.58849533489199,41.72574551797966],[-87.58835366928524,41.725403618708036],[-87.58820591599574,41.72503389359659],[-87.58805918750414,41.7246549128636],[-87.58793629697666,41.724352927339346],[-87.58780749500812,41.72404747292411],[-87.58765986206775,41.72374704173947],[-87.58749677483188,41.72346397650307],[-87.58742371669109,41.723340036689656],[-87.58741204210855,41.723320064628325],[-87.58737431599786,41.72325635746184],[-87.58733434071719,41.72318920528786],[-87.58727096530039,41.72308656812734],[-87.58725344184964,41.72305763877871],[-87.58721436628484,41.722991864834356],[-87.58718158966184,41.72293573660354],[-87.58715510004073,41.722890283406585],[-87.58711377906515,41.72282072086449],[-87.5869847939061,41.72265042202213],[-87.58684519508287,41.722487257631514],[-87.58670378966859,41.72232155546236],[-87.586933369837,41.72231760059722],[-87.58761877799569,41.722307341197116],[-87.58775992161628,41.722305452398196],[-87.58796337806866,41.722302729411616],[-87.58817396763506,41.72229991071548],[-87.58870811852557,41.72229039275409],[-87.58880678538405,41.72228865826061],[-87.589155727458,41.72228258992518],[-87.58971004402224,41.722274569785334],[-87.58998674024342,41.72227121971024],[-87.5902802457421,41.72226766563886],[-87.59065444763998,41.72226294931951],[-87.59095090725928,41.72225921174408],[-87.59143733404068,41.722252308895186],[-87.59153878588165,41.722251173752106],[-87.59166794150909,41.72224972829825],[-87.59173405361685,41.7222489883875],[-87.5918036479308,41.72224820943769],[-87.59235337278002,41.72223851596567],[-87.59282282351542,41.722220218645454],[-87.59327836393446,41.72221385019291],[-87.59357704358277,41.722207955971676],[-87.59357708242113,41.722207955123984],[-87.59398088173775,41.72219998564495],[-87.5944832420878,41.72219309063883],[-87.59479334066349,41.7221950152512],[-87.5949160007604,41.72219577610776],[-87.59510372313433,41.722196941124956],[-87.59538864707287,41.722192925883775],[-87.59584105098317,41.72218531962809],[-87.59600438392579,41.722182375920845],[-87.596226193091,41.72217837786805],[-87.59656036226252,41.722173138790296],[-87.59699217382132,41.722159605733765],[-87.59721129807798,41.72215648349492],[-87.5977508470648,41.722148794565115],[-87.59796611946872,41.72214615941582],[-87.59803074698746,41.7221452071434],[-87.59842452643154,41.72214210043892],[-87.59897506223525,41.72213775411141],[-87.59905452185791,41.722137126574154],[-87.59960626121523,41.72213011277291],[-87.60044387760438,41.72211567167315],[-87.60118320452517,41.72210523613862],[-87.60185043845694,41.722085417912844],[-87.60203082260752,41.72207991274364],[-87.60284446392464,41.72205507733248],[-87.60318224047145,41.72204834956649],[-87.60366023061805,41.72203882728778],[-87.60382219092844,41.72204007160846],[-87.60391015228848,41.72204074774157],[-87.60391156867449,41.722040758653634],[-87.60391165841327,41.72204075922329],[-87.60421554015102,41.7220430931582],[-87.60448161243008,41.72204432475854],[-87.60448680945139,41.72245311339282],[-87.6044916933742,41.7225480943969],[-87.60450374687574,41.7227825112441],[-87.6045136107895,41.723014386129655],[-87.60451453232115,41.72303786437814],[-87.60451813827862,41.723129730975536],[-87.60451609228642,41.723254767114355],[-87.60451401291358,41.72338178361098],[-87.60451307920525,41.723419155261304],[-87.60450831345693,41.723572507001016],[-87.60450702502796,41.72361397338812],[-87.60450663557715,41.72361388117884],[-87.60437491967835,41.72358260874118],[-87.60407209030026,41.72351585278717],[-87.6037700608714,41.7234593922958],[-87.60358543434434,41.723427346383914],[-87.603571477139,41.723487289636594],[-87.60354206873656,41.72361780059256],[-87.6034186984258,41.724161077680584],[-87.60333868605784,41.72451458598554],[-87.6032683307707,41.724823903499264],[-87.60320374888256,41.72510855853455],[-87.6031194458277,41.72547679032441],[-87.60306164118609,41.72572934992762],[-87.60309507077153,41.72572877146845],[-87.60317457879636,41.72572739549254],[-87.60335385600386,41.72572429348443],[-87.60327855388738,41.72605976054],[-87.60322861627549,41.726277149662735],[-87.60316453369893,41.726546673159795],[-87.60311593839451,41.72674897701964],[-87.6030552138653,41.72700655656614],[-87.60300166140301,41.727238933971826],[-87.60295534163114,41.72742783250975],[-87.60293014967186,41.72755613395035],[-87.60311347736022,41.72755355753878],[-87.60311437393392,41.72755354484957],[-87.60327306000772,41.727551472964066],[-87.60318607849747,41.72791806107155],[-87.60312718224624,41.728169395187244],[-87.60304072136427,41.72854498121061],[-87.60294454993067,41.72897566609868],[-87.6028755234831,41.729270543040556],[-87.60285004223238,41.72938390858424],[-87.60280943692482,41.7295645601615],[-87.60275144217698,41.72982012570605],[-87.60274142012555,41.729863916089585],[-87.60264249869921,41.73029535126829],[-87.60260321603283,41.730466676102616],[-87.60248606522744,41.730982959325516],[-87.6024339506775,41.73120958266538],[-87.60242878766961,41.73123203506403],[-87.60233685498089,41.73163180820233],[-87.6022240383446,41.732127344187404],[-87.6021582979076,41.73241614879156],[-87.6020841607157,41.73274104247637],[-87.6020187639914,41.733030535507595],[-87.6018467935487,41.73303314237908],[-87.60116059580865,41.733131933563264],[-87.60112397812563,41.73329155630117],[-87.60101747255726,41.733757753592],[-87.60090412171814,41.734261983585384],[-87.60087759451983,41.73437982008271],[-87.60075217736333,41.73493817361103],[-87.60060479851147,41.73557494302227],[-87.60049055244396,41.73607676573479],[-87.60039359191394,41.73671025494312],[-87.60023097737448,41.7367125944057],[-87.60013615504621,41.73671395841616],[-87.59992178157337,41.73671704209651],[-87.5995158083811,41.73672288058493],[-87.59915410693051,41.736726939552014],[-87.59878423338819,41.736732805778665],[-87.59864699335908,41.73673486667142],[-87.59794753288031,41.736745314330456],[-87.59779957590344,41.73674737285587],[-87.59755245883964,41.73675021314017],[-87.59688543236204,41.7367600870288],[-87.59595786866126,41.736773732529436],[-87.59538719997428,41.73678181011564],[-87.59534740898857,41.73678237318107],[-87.59530799434376,41.736718351356174],[-87.59528281981201,41.73667702503087],[-87.59522305522934,41.73657681691412],[-87.59506493949085,41.736306515836795],[-87.59503076768956,41.73625106706337],[-87.59499704567324,41.73619630724671],[-87.59496241247497,41.7361411985258],[-87.59493541873998,41.73609883131492],[-87.59489313766638,41.73603166680005],[-87.59485804239586,41.73597689838982],[-87.59482248887265,41.73592212674868],[-87.59478708363443,41.73589445609657],[-87.59475137524501,41.735813269467016],[-87.59471489851542,41.73575917765977],[-87.5946784254043,41.73570474337407],[-87.59464194879321,41.73565065181804],[-87.59460501466295,41.735596557308554],[-87.59456807629687,41.73554280579814],[-87.5945302221041,41.7354890481124],[-87.59416357961777,41.734992371712394],[-87.59412840722895,41.73494446307341],[-87.59376546342054,41.73448519982532],[-87.59345730968664,41.73408083191543],[-87.59337654720358,41.73397499897278],[-87.5931710216798,41.73368689489692],[-87.59296037703758,41.733366168780556],[-87.59293295110048,41.73332174006602],[-87.59283943556483,41.73317020040845],[-87.59277963820344,41.73307342114809],[-87.59261215720554,41.73278281691896],[-87.5924427435186,41.7325011189794],[-87.59230886056858,41.73227590828352],[-87.59216152483472,41.732025911857704],[-87.59200194832289,41.731765202057595],[-87.59179397967152,41.73141190229518],[-87.59175894116416,41.73135267349077],[-87.59170547861314,41.731262795306954],[-87.59155460688437,41.731002141040854],[-87.59122980451396,41.73046008992832],[-87.5912279537023,41.73045700132798],[-87.59092428396444,41.72994459783986],[-87.59068027672872,41.729534898590906],[-87.59066461631704,41.7295086325605],[-87.59060306506656,41.729405666081156],[-87.59034340530536,41.72896935705484],[-87.59001144416709,41.72840977176885],[-87.58966602856232,41.72782608567304],[-87.58963191463303,41.72776795907547],[-87.58962560927795,41.72775721627149]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7994026.91931","perimeter":"0.0","tract_cent":"1181966.11161455","census_t_1":"17031440900","tract_numa":"42","tract_comm":"44","objectid":"476","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1844550.25243309","census_tra":"440900","tract_ce_3":"41.72866933","tract_crea":"","tract_ce_2":"-87.60900622","shape_len":"11851.9718092"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6045656285573,41.72570343067265],[-87.60455958294163,41.725472156695005],[-87.60454890107246,41.72504617136908],[-87.60453826279222,41.72466826667909],[-87.60453244591939,41.7245087576639],[-87.60451870282364,41.72408758284342],[-87.60450715766419,41.72373377373458],[-87.60450518300709,41.72367324275174],[-87.60450612360145,41.72364297727621],[-87.60450702391394,41.72361400713613],[-87.60450702502796,41.72361397338812],[-87.60450831345693,41.723572507001016],[-87.60451307920525,41.723419155261304],[-87.60451401291358,41.72338178361098],[-87.60451609228642,41.723254767114355],[-87.60451813827862,41.723129730975536],[-87.60451453232115,41.72303786437814],[-87.6045136107895,41.723014386129655],[-87.60450374687574,41.7227825112441],[-87.6044916933742,41.7225480943969],[-87.60509423175306,41.722695613017905],[-87.6051789432383,41.7227163526812],[-87.60523483725564,41.722730036549315],[-87.60551564844008,41.72280819010516],[-87.60589304545306,41.72292306938336],[-87.60620027343006,41.72302507166642],[-87.60630719907967,41.72306269386065],[-87.60642377374158,41.72310371079007],[-87.60673637242708,41.72322190963216],[-87.60686979577095,41.723276726232044],[-87.60701852019348,41.72333782947158],[-87.60710995442349,41.72337670869],[-87.60723366743949,41.72343126096612],[-87.60731421415653,41.72346758322691],[-87.60740590146564,41.72351001330599],[-87.60752720579708,41.723567065762595],[-87.60757359206765,41.72358890134987],[-87.60768976622519,41.72364616794603],[-87.60776105707113,41.72368144348814],[-87.60784833868928,41.7237248059045],[-87.60796439783729,41.723782538029894],[-87.60814677939312,41.72387440335671],[-87.60824716835104,41.7239249688645],[-87.6083308514843,41.72396589320908],[-87.60842144800992,41.724010977579816],[-87.60851823796497,41.72405906453213],[-87.60857240381684,41.724086300750784],[-87.6087543599045,41.72417706305497],[-87.60893329331863,41.724266353174485],[-87.60907834902638,41.72433872950975],[-87.6093716688009,41.724484928887584],[-87.6093769749356,41.72468447401495],[-87.60938045946523,41.72477870802405],[-87.60938391274826,41.72486270608927],[-87.60939105631905,41.72494422980212],[-87.60942866520067,41.7249877720284],[-87.60949502336418,41.72503198932407],[-87.60960860156443,41.725098925051014],[-87.60978041488428,41.72518059880602],[-87.60995542018186,41.7252637644487],[-87.60997749503778,41.72527378294822],[-87.61000717494348,41.725287252266924],[-87.61006706075928,41.72531445901852],[-87.61011363622282,41.725335618568955],[-87.6102065784039,41.72538088067459],[-87.61025940420933,41.72540726845019],[-87.61026449984162,41.72540981375871],[-87.61035498396082,41.72545538986848],[-87.61040397270934,41.72547739052377],[-87.61040958515395,41.7254799108109],[-87.61045733955274,41.72550082104551],[-87.61060680807121,41.725564212521476],[-87.61065641824378,41.72558432038176],[-87.61074128485684,41.725598383294326],[-87.6108274963094,41.7256003798906],[-87.61091826007991,41.72559881547914],[-87.61099545320185,41.72559748430248],[-87.61110779014598,41.72559561077575],[-87.61121067369248,41.72559386352046],[-87.61126112729232,41.72559300656362],[-87.61141442779287,41.72559040246545],[-87.6115842674856,41.725587938823296],[-87.61202543697513,41.7258153215851],[-87.61222447312973,41.72591599734664],[-87.61237572693221,41.72599167414147],[-87.61255284546193,41.72608032893142],[-87.6127138627316,41.72616092396025],[-87.61288774354058,41.72624763663339],[-87.61303911216653,41.72632301167288],[-87.61316494650532,41.726385382815195],[-87.61333621195466,41.72647021255731],[-87.61343632712507,41.72651974351168],[-87.61351396442997,41.72655810142689],[-87.61359797729183,41.72659962774241],[-87.61369517894103,41.726647658291675],[-87.6137595906177,41.726679566400854],[-87.61388550022942,41.72674188233754],[-87.6142727657199,41.72693377003424],[-87.61427645327464,41.727089948427135],[-87.61427988956382,41.72721543997033],[-87.6142839227318,41.7273400021791],[-87.61428543102507,41.72749709614831],[-87.61428567248551,41.727501790161675],[-87.61428637507545,41.727515493898885],[-87.61429076450067,41.72760101333052],[-87.61429184157828,41.72762200254546],[-87.61429706459295,41.72773398759098],[-87.61429731080727,41.727739273856784],[-87.61429966858358,41.72783336368726],[-87.6143010554578,41.727888893400454],[-87.61430144596015,41.72790453294369],[-87.61430280919139,41.727959127794996],[-87.61430598206866,41.72808590832121],[-87.61430739478801,41.728129396419945],[-87.61430739502887,41.72812940767314],[-87.61430839071916,41.7281600621237],[-87.61431241348401,41.72828392252535],[-87.61432089359471,41.72854504213134],[-87.61432537902013,41.7286914793179],[-87.61432678706839,41.72874327304699],[-87.61433106885214,41.72890071392473],[-87.61433488543484,41.72905782229517],[-87.61433916471168,41.72919788094364],[-87.61434798300981,41.72948651106765],[-87.61435120307145,41.729611699330064],[-87.61435713424925,41.72984201173538],[-87.61435953265796,41.729937199510246],[-87.61436375221989,41.730111105841544],[-87.61436803059777,41.73028742698178],[-87.61438057341283,41.730756041934896],[-87.61438683705404,41.731023642521464],[-87.61439454418039,41.7313528800467],[-87.61439775306074,41.731488085211375],[-87.61440094988346,41.731622795497955],[-87.61440828862683,41.73193572974587],[-87.6144108071508,41.7320431213684],[-87.61441978184811,41.732394392336154],[-87.61442131542634,41.732454422221416],[-87.61443127090362,41.73284926634143],[-87.61396341248353,41.73285664418507],[-87.61261761774371,41.7328774651167],[-87.61244781419178,41.73287999496991],[-87.6120047241914,41.732887460400896],[-87.61147942889384,41.732896308975384],[-87.61072937962754,41.73290781339584],[-87.61028782241135,41.73291518963511],[-87.60958063017146,41.73292611015999],[-87.60887386941371,41.732937019446744],[-87.60822649871479,41.73294649315547],[-87.60814148551704,41.73294787765892],[-87.60777005829007,41.73295458908776],[-87.60715942333087,41.73296397781674],[-87.60700194231764,41.73296639856741],[-87.60640755188729,41.732975533614734],[-87.60588056810235,41.73298512419197],[-87.60543769432994,41.73299219902244],[-87.6047344026235,41.73300063109625],[-87.60471199670262,41.732088872858164],[-87.60468961099247,41.73117792691828],[-87.60467644873854,41.73064230530657],[-87.60466866161802,41.73026547672741],[-87.6046606159121,41.729876102781816],[-87.60465983998105,41.729751945179586],[-87.60465183009875,41.7295076505953],[-87.6046473703878,41.729354720482185],[-87.60464155964955,41.72915546274278],[-87.60463405293586,41.72885362308845],[-87.60462918074903,41.728571613789256],[-87.60462550243203,41.728444885267436],[-87.60461971483316,41.72824550222765],[-87.60461420920133,41.72798058622584],[-87.60460908448727,41.727704722818125],[-87.60460579320906,41.72753350867005],[-87.60460340912134,41.72740948105322],[-87.60459289913936,41.72712060286207],[-87.604589435813,41.726837093314785],[-87.60458078095857,41.7266187280034],[-87.604574014924,41.726448016498],[-87.60457161992278,41.72617046885422],[-87.60457173144113,41.7259369010041],[-87.6045656285573,41.72570343067265]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1765821.14777","perimeter":"0.0","tract_cent":"1178615.09092768","census_t_1":"17031400700","tract_numa":"11","tract_comm":"40","objectid":"480","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1865607.69169989","census_tra":"400700","tract_ce_3":"41.78653003","tract_crea":"","tract_ce_2":"-87.62064262","shape_len":"6627.04817593"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62474227213802,41.785540187580686],[-87.62509940998488,41.78553327966956],[-87.62546552281138,41.78553702850411],[-87.62547417888203,41.78584355340943],[-87.62548749182818,41.78636664166112],[-87.62550045639458,41.786885080817385],[-87.62550165706669,41.786933099510264],[-87.6255046556546,41.787053011202765],[-87.62551327612259,41.787362299028466],[-87.62504786728677,41.78737114010666],[-87.62488664550153,41.7873738719044],[-87.62472204937201,41.78737665072021],[-87.62471420061328,41.78737678342935],[-87.62453200086897,41.78737986859644],[-87.62389933738196,41.78739093617636],[-87.6236855057383,41.78739467593229],[-87.62310092349621,41.787404914253266],[-87.62269638093736,41.78741199773504],[-87.62227842931337,41.787419303333095],[-87.62194615741217,41.787425109983424],[-87.62145651571414,41.7874330191426],[-87.62116392704466,41.78743774448796],[-87.62065847869295,41.78744476189969],[-87.62021569514152,41.78745090729389],[-87.61984947353284,41.787457540232786],[-87.61943935225696,41.78746496618545],[-87.61904513304026,41.78747156692039],[-87.61854525778742,41.78747993407661],[-87.61822746954839,41.78748514032667],[-87.6181999540372,41.78748559117333],[-87.61819644134195,41.78748564861632],[-87.6181320612244,41.78748670311971],[-87.6181033534205,41.787487173414384],[-87.61810228178852,41.7874871908922],[-87.61780839142115,41.787492004691266],[-87.617420128387,41.78749819593975],[-87.61702630801062,41.78750447471701],[-87.61661381109076,41.78751062245198],[-87.61580221117987,41.7875227139259],[-87.61579357900807,41.78719768196201],[-87.615782613203,41.786707923080414],[-87.61577757679768,41.78647976185997],[-87.61576570661667,41.78594202439668],[-87.61576022532681,41.78572588281171],[-87.61575954154117,41.78569891455305],[-87.61591637902468,41.78569468983226],[-87.616359951815,41.78569024157763],[-87.61657424532683,41.78568686301344],[-87.61693484354869,41.78568117690912],[-87.61737874253794,41.78567465097576],[-87.61752733131628,41.785672465989215],[-87.61803721045686,41.78566356699827],[-87.61807144901016,41.78566306446795],[-87.61818049880937,41.78566146397266],[-87.61845209094683,41.78565747753707],[-87.61899446312721,41.78564952211372],[-87.61920227147507,41.785646473464524],[-87.61971335655447,41.7856379038435],[-87.61980452708106,41.78563637351082],[-87.62022532177856,41.785629309968776],[-87.62061309574226,41.785615484201195],[-87.620647114052,41.78561427123622],[-87.62086255072738,41.78560658926976],[-87.62134165918381,41.78559825316993],[-87.62142765961671,41.78559675344795],[-87.62191751363176,41.785588209027296],[-87.62223031495726,41.78558278055967],[-87.6226704289655,41.78557514102259],[-87.6230450044009,41.78556794368464],[-87.62327548730501,41.785563514382595],[-87.62385025448256,41.78555595360054],[-87.62409026986772,41.785552795332414],[-87.62465839938102,41.7855418096626],[-87.62474227213802,41.785540187580686]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3578294.50955","perimeter":"0.0","tract_cent":"1177056.14571737","census_t_1":"17031440500","tract_numa":"18","tract_comm":"44","objectid":"477","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1846240.22591947","census_tra":"440500","tract_ce_3":"41.73341881","tract_crea":"","tract_ce_2":"-87.62694159","shape_len":"8679.84722233"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62416057014825,41.73629942645487],[-87.62414750444228,41.73557139574146],[-87.62413334008478,41.73509714627977],[-87.62411916006306,41.73452991969033],[-87.62413052978167,41.734362741655666],[-87.62410815269742,41.73408960904273],[-87.62405873439887,41.73366615860075],[-87.62405743692888,41.73353766191733],[-87.62403527683269,41.73268956813678],[-87.62403340113676,41.73261779526507],[-87.62402374032978,41.732248066338435],[-87.62401812634101,41.73199909510424],[-87.62401401684274,41.731877381979984],[-87.6240101733236,41.73176352883406],[-87.62400690748652,41.73166679937183],[-87.6240106520271,41.73143303449052],[-87.62403243019037,41.73108944127851],[-87.62404229045487,41.730933878470566],[-87.62405188569693,41.73078248702402],[-87.62405702121286,41.73070146735907],[-87.62405491152508,41.73055455290196],[-87.62405443344143,41.73052124880841],[-87.62405413790026,41.73050069098073],[-87.6240533055401,41.7304427103056],[-87.62405280277731,41.73040771995302],[-87.62405162772424,41.730325874809004],[-87.6240511619251,41.73030793921872],[-87.62404942616433,41.730241097615014],[-87.62404781933755,41.73017922044591],[-87.62404569322652,41.73009734308253],[-87.62404528888551,41.7300817803298],[-87.62404528862484,41.73008177072309],[-87.62404444352535,41.73004922673154],[-87.62404367689035,41.730019707457515],[-87.62403869529118,41.729997355559256],[-87.6239960532391,41.729643075886244],[-87.62397059153335,41.729499885076734],[-87.62394718870054,41.729296167408314],[-87.62393809541032,41.72904227980644],[-87.62401906934289,41.72904139134124],[-87.62437094881325,41.72903620683211],[-87.62458053174444,41.72903302158968],[-87.62479390881556,41.72902977840345],[-87.62509148646097,41.729025254666375],[-87.62515437748515,41.72902453194098],[-87.62523729116236,41.72902357910341],[-87.62536371659064,41.72902212617092],[-87.62547791061395,41.72902179042927],[-87.62567140574147,41.72901930158699],[-87.62578287865306,41.72917680144819],[-87.62591211733356,41.72931451100662],[-87.62600836789902,41.72941705479822],[-87.6261637528501,41.72958258769856],[-87.6263411918789,41.72977163763517],[-87.62645482459999,41.72989610528857],[-87.62661937451273,41.73006930831632],[-87.62681435429741,41.73027453993424],[-87.62886871352045,41.73243681708265],[-87.62904079532555,41.73261793043417],[-87.62903654268987,41.732622846051484],[-87.62903404577754,41.7326299667826],[-87.62903098351313,41.73263870154612],[-87.62903274933942,41.7326480979185],[-87.62903762974405,41.7326608065565],[-87.62904593662303,41.732675073011414],[-87.6290725265856,41.73270605461717],[-87.62915052115136,41.73278367525334],[-87.62924299983418,41.732866873215244],[-87.62938991797216,41.733004055938366],[-87.62953585179402,41.733140848238634],[-87.62965204053276,41.733250454160554],[-87.62970204637989,41.733297797902715],[-87.62982319894526,41.73341253846692],[-87.62992487904971,41.733508827693],[-87.63011319502307,41.73368679638968],[-87.63021756273615,41.73378532469473],[-87.63032958115915,41.73389119958276],[-87.63055131813216,41.73409892826502],[-87.6306835561619,41.73422537214368],[-87.63081898378647,41.734326655210616],[-87.63093166243316,41.73441115041276],[-87.63088353046678,41.73441658300212],[-87.63096961179393,41.734498889986085],[-87.63116107031023,41.734706775154756],[-87.63125382952184,41.73475625905035],[-87.63134938652134,41.73484326153095],[-87.63144443118132,41.73493023308398],[-87.63151618602917,41.73499593110852],[-87.63173394466611,41.73517602540801],[-87.63183947238959,41.735229003734986],[-87.63192650606369,41.735281237880415],[-87.63197524646033,41.73531048788463],[-87.6321029458783,41.73541352032615],[-87.6322297301841,41.7355266186635],[-87.63272034384312,41.73597216186151],[-87.6327205187178,41.735972320451275],[-87.63242354699418,41.735977989188505],[-87.63229287193603,41.73598048296829],[-87.63223809896647,41.73598152861495],[-87.6321739636123,41.73598275256645],[-87.63210571031543,41.73598405508616],[-87.63203745664998,41.73598535756307],[-87.63200773396393,41.73598592479766],[-87.63198780169502,41.73598630507054],[-87.63175437559919,41.735990759450296],[-87.6317070991966,41.73599197822707],[-87.63167556900963,41.735992791206115],[-87.63123259636552,41.736006135966846],[-87.63101863155252,41.736012402652854],[-87.6307776363204,41.73601851931202],[-87.63065265653947,41.73602169123638],[-87.63059693617832,41.736023093379124],[-87.6304842193364,41.73602593011898],[-87.63025664272199,41.73603115819996],[-87.63025498660375,41.73603119636618],[-87.63025210739559,41.736031276445964],[-87.62996578289075,41.73603925102047],[-87.6297689667061,41.73604859545926],[-87.6297328233284,41.73605031135125],[-87.62969106913745,41.73605454123947],[-87.62951414159575,41.73607246335419],[-87.62936964690813,41.73609598882522],[-87.62920971882048,41.7361220266344],[-87.62901877717998,41.736157136170625],[-87.62895554867079,41.736169367472485],[-87.62885451658153,41.73618891162691],[-87.62876446630897,41.73620633142564],[-87.62872313684687,41.736214326290636],[-87.62857716169802,41.73623165326402],[-87.62839753260033,41.73624536460371],[-87.6283378938339,41.736249917052504],[-87.62771678856284,41.73627039166155],[-87.62757911946882,41.73627071248245],[-87.6275353851657,41.73627081433043],[-87.62747220861547,41.7362693976772],[-87.62739725521085,41.73626771735673],[-87.62724940225154,41.73626440239639],[-87.6271761752278,41.73626276025797],[-87.62717458146308,41.73626272466661],[-87.62705375087543,41.736258963268064],[-87.62695415058208,41.73625604468403],[-87.62690086995248,41.736254483552976],[-87.62663992949923,41.73625104000051],[-87.6264755554004,41.73625046965398],[-87.62594787086219,41.736258254623216],[-87.62588702253403,41.73625919534752],[-87.62544393770061,41.736270875446294],[-87.62531832950256,41.736274186162106],[-87.62499194365652,41.73628015115574],[-87.62498334306716,41.736280350611615],[-87.6248223268233,41.73628408411544],[-87.62475224674532,41.73628570910049],[-87.62473573491675,41.736286091919],[-87.62461199276433,41.73628896083347],[-87.62457035348584,41.736289926308885],[-87.62452395214474,41.73629100207846],[-87.62426937820548,41.73629690413532],[-87.62416057014825,41.73629942645487]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4108766.36343","perimeter":"0.0","tract_cent":"1189020.22812728","census_t_1":"17031410900","tract_numa":"12","tract_comm":"41","objectid":"478","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869567.64897152","census_tra":"410900","tract_ce_3":"41.79715342","tract_crea":"","tract_ce_2":"-87.5823657","shape_len":"9378.09962259"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.57735072527466,41.79685715088368],[-87.57731642653918,41.79685671988863],[-87.57723560397072,41.7968688116292],[-87.57706938869755,41.79690723510114],[-87.5770448950691,41.796913995741235],[-87.57695091582845,41.796939935285245],[-87.57683831693917,41.79697212517374],[-87.57676118014422,41.79698861578087],[-87.57668390138785,41.797005137234656],[-87.57658989577287,41.79701549511877],[-87.57655900178551,41.79702297557814],[-87.57650738541108,41.797046236321094],[-87.5764841308634,41.79704841519896],[-87.57644717471327,41.797051877307034],[-87.57632839486996,41.79704835007487],[-87.57631592615826,41.797048267907314],[-87.57613789512811,41.797031178012716],[-87.5761006643972,41.7970234467575],[-87.57599594954341,41.797001701520166],[-87.57594882499944,41.79699151938675],[-87.57589767444998,41.79698046709706],[-87.57588328231391,41.79697735733597],[-87.57586904197463,41.79697281770722],[-87.5757619819343,41.7969386866833],[-87.57573640698442,41.796927889154574],[-87.57570651506035,41.79691526893942],[-87.57566727309694,41.796893791909724],[-87.57564624706038,41.79688228450612],[-87.57562124852204,41.79686860294936],[-87.57559744937979,41.796850174836145],[-87.57557763876167,41.796834834819336],[-87.57553272349134,41.79678733749125],[-87.5755032131245,41.796761109765235],[-87.57548046129675,41.79674088856442],[-87.5754152019778,41.796704325746994],[-87.57539520882725,41.79669312423837],[-87.57535050159275,41.79666801521208],[-87.57531214340067,41.79664647199191],[-87.57531205201337,41.79664638466968],[-87.57528841329598,41.79662378707045],[-87.57527225271107,41.796608338263646],[-87.57527224342581,41.79660831707143],[-87.57527223377384,41.796608295876794],[-87.57522937382008,41.79651255440152],[-87.57522383851993,41.79645550520877],[-87.57522217955186,41.79643841167475],[-87.57521593608699,41.79639564699203],[-87.57521335679903,41.79637797904395],[-87.57520705932102,41.796369763649295],[-87.57519601996175,41.79635536181679],[-87.57516436913284,41.79624044180225],[-87.57516506161885,41.7961817190817],[-87.57517467781919,41.79613524616591],[-87.57518139336638,41.79610279109132],[-87.57520040786851,41.796045287000965],[-87.57527897376687,41.795913530964675],[-87.57529262376329,41.79588464749166],[-87.57531207140453,41.79584349610368],[-87.57532641263177,41.79580901227212],[-87.57535534906127,41.79571864200026],[-87.57536697761189,41.79566547998971],[-87.57537538130892,41.795634309933945],[-87.57538691883602,41.795591516029546],[-87.57539340558239,41.795570341984195],[-87.57540369938329,41.79553674171378],[-87.57540522496194,41.79550237913477],[-87.57540669528001,41.79546925166539],[-87.57544371441476,41.795439858239604],[-87.57551949301197,41.79542004994983],[-87.57557916813306,41.79540368319138],[-87.57563869606432,41.79538735632074],[-87.57565047553908,41.79538390651884],[-87.57573216714526,41.79535998115224],[-87.57573727392858,41.795357539491484],[-87.57574206318013,41.79535524914163],[-87.57575421296134,41.79534943894677],[-87.57576137581715,41.79534601329883],[-87.57578084813908,41.79533670111715],[-87.57582292321968,41.79531392635658],[-87.57586844398682,41.79527903800019],[-87.57594504442622,41.79522032892602],[-87.57597302264236,41.79519960088094],[-87.57604187843074,41.79514858695842],[-87.57864790876985,41.79523406939167],[-87.57921359386211,41.79523675961244],[-87.5793292928338,41.79523773423244],[-87.5796885228262,41.795279472224564],[-87.5799256893018,41.795288327704995],[-87.58016802640313,41.79528467523893],[-87.58045346695543,41.795276708919765],[-87.58087515380156,41.79526493895207],[-87.58125256217065,41.79525440365035],[-87.5816396762425,41.79525120186196],[-87.5818313072609,41.795249661425395],[-87.58192574742645,41.79524890212425],[-87.5822499093418,41.795245981339086],[-87.58234755639685,41.79524513618044],[-87.58253849301882,41.79524348354636],[-87.58293690751289,41.79524003400293],[-87.5832478097745,41.79523736078253],[-87.58358746217789,41.79523168551168],[-87.58395113353033,41.79522795409764],[-87.58432316018074,41.79522413577786],[-87.5845248307632,41.79522020868345],[-87.58468418737827,41.795217631466215],[-87.58484896444047,41.795214966401794],[-87.58512015343283,41.795215278577096],[-87.58541060416816,41.79521158812465],[-87.5857755847953,41.795206949454716],[-87.58617030224431,41.79520265672013],[-87.58662421025291,41.79519548801105],[-87.58674127619811,41.795193733491885],[-87.58688087796028,41.79519220460138],[-87.58690959236601,41.79519189035079],[-87.5869474290732,41.79519147592148],[-87.58702356901891,41.79519064182353],[-87.5871128616939,41.795189663692966],[-87.58719498182064,41.79518876377087],[-87.58724223900418,41.79518824632389],[-87.58726736530261,41.79518797097499],[-87.5873953272409,41.795186569214195],[-87.58754916332073,41.79518488330855],[-87.5874986344781,41.795391292853516],[-87.58745041111904,41.79568880410417],[-87.5874014959019,41.79604587596629],[-87.58736408429554,41.79626900120344],[-87.58733692362819,41.79646613358568],[-87.58733131641105,41.79652342544531],[-87.58732431548077,41.796594957924206],[-87.58731434821061,41.796696800913764],[-87.58728623736295,41.79697582874127],[-87.58726335969688,41.79723255347592],[-87.58724874782803,41.7976345215263],[-87.58724722673733,41.798095689626855],[-87.58724754048875,41.79832291025499],[-87.58724754066131,41.79832292699621],[-87.58724794117694,41.79836924396432],[-87.5872486415868,41.798450222569315],[-87.58724966221075,41.798568252933855],[-87.58725067679697,41.798685602401314],[-87.58725494924643,41.79883282391365],[-87.58726122051272,41.79900441908803],[-87.58726779871041,41.79915859804213],[-87.58727882681083,41.79929018947248],[-87.58728964423456,41.79941926906501],[-87.58730177518319,41.799564017955774],[-87.58724154325907,41.79956434659567],[-87.58715732889111,41.799564805928064],[-87.58703321199958,41.79956548292607],[-87.58694152062884,41.799565982987545],[-87.58688329567536,41.79956630060463],[-87.58679907642617,41.79956781207324],[-87.58664851553917,41.799571993857725],[-87.58655316033939,41.79957464216443],[-87.58652545762328,41.799575244462474],[-87.58644608720498,41.79957697078719],[-87.58633555072132,41.79957937448506],[-87.58611479547335,41.79958331753417],[-87.58581111517178,41.79959072721235],[-87.58550998691946,41.79959205628793],[-87.58519303926673,41.79959345443712],[-87.58491589572992,41.79959587532948],[-87.58473396784363,41.799597656737895],[-87.58445690056676,41.79960303782099],[-87.58405510846084,41.799616533001796],[-87.58373984696571,41.79962712104112],[-87.58335436079281,41.79963317450532],[-87.5831294432967,41.79963548555105],[-87.58252501242166,41.799641141577204],[-87.58231988071982,41.799645106173365],[-87.58214515858421,41.799648482753476],[-87.58175235205563,41.79965665259641],[-87.58151879777263,41.79966317599669],[-87.5815177687076,41.79966320466292],[-87.5814225076516,41.7996658652425],[-87.58071657894962,41.79968127614968],[-87.58070145403306,41.79968160653411],[-87.58029374217269,41.799678148313134],[-87.58028256509213,41.799626435698336],[-87.58026125449345,41.799564849151444],[-87.58022901994916,41.79947169298901],[-87.58020826569249,41.799411713559564],[-87.58020825433663,41.79941168110264],[-87.58018760723935,41.79935201220041],[-87.58017876157527,41.799325304250615],[-87.58014086758438,41.7992108872596],[-87.58011002911466,41.79911777122267],[-87.58007393904512,41.799041901731606],[-87.58004260274072,41.79897602705096],[-87.58004259378814,41.7989760086056],[-87.57997937734113,41.79884311320733],[-87.57993111142143,41.79873911866924],[-87.57987722132201,41.798623004987924],[-87.5798772202508,41.79862300251106],[-87.57984880488364,41.798561778175355],[-87.57978774619096,41.79844117252122],[-87.5799372613999,41.798369146081015],[-87.5799362726864,41.79836811104116],[-87.57993573721876,41.798367549617566],[-87.57993573540448,41.798367547959096],[-87.57993572417136,41.798367536359464],[-87.57983336236964,41.798260335943084],[-87.57983188710189,41.79825879084265],[-87.57983188021792,41.79825878366237],[-87.57983187369747,41.79825877675891],[-87.57980191148177,41.798227398086965],[-87.57965658205259,41.79807519763835],[-87.57965657372111,41.798075188801995],[-87.57960801354844,41.79802547318584],[-87.57958874681046,41.79800911271681],[-87.57954482893531,41.79797181987107],[-87.57951974884769,41.79794846696831],[-87.57949911900619,41.79792925721132],[-87.579467189375,41.79789995887558],[-87.57939680512409,41.797838145320604],[-87.5793343304339,41.79778327808867],[-87.57921222303617,41.79768807364831],[-87.57914187806372,41.797633397512705],[-87.57914186715897,41.79763338920828],[-87.57914185661772,41.79763338118067],[-87.57914171887701,41.797633274347206],[-87.57906242597474,41.797577319309696],[-87.57901297196096,41.79754131841328],[-87.57895110177654,41.79750084593666],[-87.57889290482487,41.79745984814613],[-87.57885140839032,41.79743323053665],[-87.57881314863599,41.7974072521829],[-87.5787699090702,41.797377892263064],[-87.57875753819393,41.797369495564936],[-87.5787204825194,41.79734264088286],[-87.57866735492954,41.797304138719184],[-87.5786342266681,41.79728372538441],[-87.57863166557183,41.797282147064074],[-87.57856831901792,41.79724311365989],[-87.57846854988225,41.79718208369672],[-87.57844514279059,41.797161231434856],[-87.57842572296973,41.79714393122001],[-87.57839188799672,41.7971175643982],[-87.57836321638332,41.79709522113293],[-87.57831602625703,41.79706631148445],[-87.57829257795014,41.797051946394916],[-87.57827803294323,41.79704507132757],[-87.57821015350864,41.79701298471036],[-87.57813337146641,41.79698466559966],[-87.57810864154196,41.7969755443218],[-87.57805236193117,41.79695870836045],[-87.57798804098337,41.79693962462282],[-87.57783074469275,41.79690565861248],[-87.57768580691562,41.79688110450379],[-87.57763050558584,41.796874100660546],[-87.57755324765813,41.79686431535912],[-87.57740809615662,41.79685787145847],[-87.57735072527466,41.79685715088368]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3537751.69991","perimeter":"0.0","tract_cent":"1181750.3118007","census_t_1":"17031382000","tract_numa":"16","tract_comm":"38","objectid":"482","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872675.92291189","census_tra":"382000","tract_ce_3":"41.80585397","tract_crea":"","tract_ce_2":"-87.608929","shape_len":"7975.44703555"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61110853154797,41.80217158767533],[-87.61128640348198,41.80216905403687],[-87.61129410815309,41.802518368698266],[-87.61129818603482,41.802684176180826],[-87.61130307282644,41.80288286519522],[-87.61130751439437,41.80309295442841],[-87.61131322979594,41.80336331490619],[-87.61131811042866,41.803564584028216],[-87.61132451139285,41.80382854090425],[-87.6113284009002,41.804001565163645],[-87.61133155607007,41.80414192680176],[-87.61134529649217,41.80472138501193],[-87.6113571554838,41.80520058289819],[-87.61136126230599,41.80538650603469],[-87.61136268397208,41.8054399185995],[-87.61136538714428,41.80557484424202],[-87.61137057922745,41.80582235685581],[-87.61137487210333,41.80602699601062],[-87.61137929034666,41.80620844790666],[-87.61138436410776,41.80644912540328],[-87.61138852230958,41.80665370990143],[-87.6113938947258,41.806871090076385],[-87.61139848872467,41.8070532293936],[-87.61140237471027,41.80721675778888],[-87.61140580522982,41.807404487831555],[-87.61141109222666,41.807642519214966],[-87.6114169150485,41.8079047019363],[-87.61142264643918,41.80813912654589],[-87.61142781806083,41.80836783953475],[-87.61143234318473,41.80857893020304],[-87.61143693446564,41.80879076223367],[-87.61144158188488,41.80900739709095],[-87.61144222067823,41.80903962603206],[-87.61144460250442,41.80915980567736],[-87.61144614521653,41.80921247636657],[-87.61145344679595,41.80946172383786],[-87.61104938822795,41.809468576990994],[-87.61074823649626,41.80947228131838],[-87.61049832499297,41.80947619753356],[-87.6102103703229,41.80948092615278],[-87.60993051616842,41.80948552119765],[-87.60975046091916,41.80948795469832],[-87.60951567050287,41.80949108585642],[-87.609255898716,41.80949438838086],[-87.60898527180882,41.809498590871165],[-87.60862242568945,41.8095042246998],[-87.60837134494626,41.809507717268545],[-87.60809718883542,41.80951150268692],[-87.60794717770042,41.80951309284104],[-87.60780108120515,41.809514641387686],[-87.60744012565893,41.80951846671213],[-87.607224357011,41.80951995622911],[-87.60694891672638,41.809526750314376],[-87.6068653319898,41.80952805902294],[-87.60656518017987,41.8095327576212],[-87.60655739855574,41.809198144246054],[-87.60655238528399,41.8090056290866],[-87.60654825710203,41.808806203947526],[-87.60654443694484,41.808624343836726],[-87.60653828883383,41.80833165570629],[-87.6065341011534,41.80813749945039],[-87.60653021280278,41.807955803543386],[-87.6065263591911,41.80771528567668],[-87.60652315852589,41.807515522229146],[-87.60651973924614,41.80738643731011],[-87.6065140670783,41.807122429535816],[-87.6065095382511,41.80691627832021],[-87.6065024388025,41.806622787694124],[-87.60649637320913,41.80637087992753],[-87.60649364854622,41.80614144119496],[-87.60648745840501,41.80589351538746],[-87.60647784312069,41.80550837382791],[-87.60647580565964,41.80535569682775],[-87.60647161141623,41.805125151045225],[-87.60645806763634,41.80453866825781],[-87.60645400527414,41.80434643338573],[-87.60644862866428,41.804081456964894],[-87.60642931863634,41.80316439949868],[-87.6064246860505,41.80294260482601],[-87.60641591599196,41.80251145071613],[-87.60640720551974,41.80225116311801],[-87.60676961320164,41.80223972709814],[-87.60738430279127,41.80223055825083],[-87.60765600991321,41.80222650433962],[-87.60788582781375,41.80222290837065],[-87.6091216718651,41.80220356352347],[-87.60976864658288,41.802193452612514],[-87.61004036329733,41.80218851989142],[-87.61024003332636,41.802184894862464],[-87.61070817886699,41.80217757715644],[-87.61110853154797,41.80217158767533]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2406434.29171","perimeter":"0.0","tract_cent":"1178763.70907285","census_t_1":"17031350700","tract_numa":"8","tract_comm":"35","objectid":"483","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1882785.31130109","census_tra":"350700","tract_ce_3":"41.83366351","tract_crea":"","tract_ce_2":"-87.61957463","shape_len":"6603.96528341"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61819437003699,41.83489645697445],[-87.61819359837838,41.834754946141466],[-87.6173896994458,41.83476354246459],[-87.61705290918111,41.83476714223389],[-87.6170482962906,41.83464705193802],[-87.61704335355239,41.834518370037415],[-87.6170407206059,41.83438920857085],[-87.61702408663518,41.83425200142111],[-87.61702757502556,41.83381409355325],[-87.6170186717687,41.83361595705437],[-87.61699614392778,41.83311461156373],[-87.6169912226961,41.832864461211535],[-87.61699008913324,41.83278325163258],[-87.61696826544217,41.83121954294159],[-87.6169665446697,41.83110017341376],[-87.61731338157617,41.83110204626474],[-87.61761053536014,41.83110364992997],[-87.61795147047187,41.83109841924178],[-87.6181192594101,41.831095822239924],[-87.61840620977199,41.83109138028261],[-87.61861902781358,41.83108808530961],[-87.61922025620136,41.83108331763253],[-87.61933361948853,41.83108219058443],[-87.61960069280984,41.83107953510769],[-87.61994413990963,41.8310760314741],[-87.62038982515023,41.831071483062416],[-87.62055072271053,41.83107060045341],[-87.62072077752104,41.83106966740602],[-87.62115251563556,41.83106545843207],[-87.62147775927292,41.831062286578046],[-87.62176362278132,41.83105903916783],[-87.62176732435147,41.8312193239125],[-87.62179191606529,41.832315288803535],[-87.62179859950284,41.832762350095706],[-87.62180067482073,41.83290157318946],[-87.62180494955597,41.83320585601428],[-87.62183556786076,41.83453635521369],[-87.62183979393417,41.83471818667865],[-87.62187660027196,41.83630163734227],[-87.62187820483757,41.83647850927177],[-87.62187849785357,41.83651079651767],[-87.62177415187476,41.83652835282623],[-87.62169256842358,41.83653394403308],[-87.62157294451791,41.83653929890779],[-87.62147507992928,41.83654275694018],[-87.62136906498587,41.83654616436833],[-87.62123848746882,41.83654739826903],[-87.62086854699987,41.83655151060596],[-87.62062348963117,41.83655421669295],[-87.61995271609798,41.83656231605638],[-87.61944408747199,41.83656765071614],[-87.61922965336383,41.83656937949543],[-87.61883998894932,41.83657510774336],[-87.61858685545779,41.836578828135444],[-87.61822850771095,41.836582836432534],[-87.61822412294401,41.836324372577074],[-87.61819437003699,41.83489645697445]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"29637984.262","perimeter":"0.0","tract_cent":"1179289.75304753","census_t_1":"17031330100","tract_numa":"83","tract_comm":"33","objectid":"484","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1892150.31906364","census_tra":"330100","tract_ce_3":"41.85934971","tract_crea":"","tract_ce_2":"-87.61735801","shape_len":"39516.3887044"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61234727536535,41.86747334091144],[-87.61235279535089,41.86744604971842],[-87.61236192479322,41.867415543246544],[-87.61237106680379,41.867384995688944],[-87.61239275091073,41.867330658220304],[-87.6123940856801,41.86732733727791],[-87.61239501670968,41.867325019567836],[-87.61242453158563,41.86726645022333],[-87.61245349366968,41.86721930362557],[-87.61245946154787,41.867209588852084],[-87.61248598346297,41.86717232433321],[-87.61250120420686,41.86715401584428],[-87.61251315101656,41.867139645931005],[-87.61253083174554,41.867118378113254],[-87.61253443875587,41.86711403876987],[-87.61256813548812,41.867078767952705],[-87.61258778645141,41.867058198827486],[-87.61264580308485,41.867005022087966],[-87.61268930591883,41.866969318531254],[-87.61268930591537,41.86696928614911],[-87.61268930576091,41.86696926721283],[-87.612688928162,41.8669147242863],[-87.61268892800754,41.866914705350005],[-87.61268856626029,41.86686081043939],[-87.61268856610582,41.866860791503115],[-87.61268784251064,41.86675310870544],[-87.61268784235308,41.86675309004355],[-87.61065553086198,41.8667804675011],[-87.61064986722613,41.86679154057745],[-87.61064866144349,41.86679389825714],[-87.61063671260824,41.86680515708453],[-87.61062362403851,41.86681180059726],[-87.61062080302035,41.86681323235654],[-87.61062079895437,41.86681323480079],[-87.61062069295265,41.86681325855752],[-87.61060239498687,41.866817372842945],[-87.61058381976457,41.86681725594567],[-87.60958430616188,41.866829924145854],[-87.60813206808885,41.86685330978349],[-87.60787861998489,41.866856805419005],[-87.60774861159193,41.86685859855029],[-87.60772980125577,41.86687777945122],[-87.60771857781205,41.86688922450069],[-87.6076995854592,41.866908591404226],[-87.60764592673776,41.8669558919462],[-87.6076459248836,41.86695589358103],[-87.60758796811179,41.867000202325855],[-87.60755945512774,41.86701911908347],[-87.60752593465679,41.867041358206656],[-87.60746015736234,41.86707911469179],[-87.6074156430794,41.86710111909214],[-87.60740282117166,41.86710745738989],[-87.60740007582582,41.86710881298366],[-87.60739096958117,41.867113310324896],[-87.60731874062274,41.867143753416244],[-87.60724380205666,41.867170310765026],[-87.60716652251028,41.86719281894436],[-87.60708730710785,41.867211198732875],[-87.6070065609343,41.867225342095374],[-87.60698875089902,41.86722747891544],[-87.60692465203589,41.8672351698525],[-87.6069088371875,41.86723622048327],[-87.60684205761967,41.867240657029214],[-87.60679579280598,41.8672412677615],[-87.60675914616037,41.867241751619154],[-87.60667632076644,41.86723845562342],[-87.60659402344426,41.86723077266251],[-87.60652638412515,41.867220809731954],[-87.60651265489776,41.86721878732651],[-87.60643262044282,41.867202501085124],[-87.60635432266064,41.86718202708267],[-87.60627816303243,41.86715747818311],[-87.60620454562282,41.867128965895596],[-87.60614665652606,41.86710250733085],[-87.60614000729116,41.86709946823561],[-87.606139255988,41.86709912483823],[-87.60613379817953,41.86709662978708],[-87.60606628626007,41.867060609664556],[-87.60603283545416,41.8670399564779],[-87.60600233815207,41.86702112660372],[-87.605988695119,41.86701140816493],[-87.60594228348724,41.866978347627516],[-87.60588644803393,41.86693252123889],[-87.60583508656897,41.866883842801734],[-87.60578849151986,41.866832586678264],[-87.6057468428244,41.86677897520057],[-87.60571035728105,41.8667232822513],[-87.60567925206844,41.86666581272514],[-87.60566099195715,41.866623798403424],[-87.60565363388923,41.86660686862086],[-87.60563876196558,41.86656201406188],[-87.60563368348151,41.86654669806961],[-87.60563321514954,41.86654467972655],[-87.60561950753228,41.866485604166385],[-87.60561110162845,41.866423942265406],[-87.60560857432814,41.86636197979666],[-87.60560857381179,41.86636196058364],[-87.60560991642014,41.866337097424385],[-87.60560991773616,41.86633707849741],[-87.60561191832412,41.86630003587022],[-87.60561191927304,41.86630001694092],[-87.60562113532187,41.86623841181477],[-87.60563614544955,41.8661774479584],[-87.60564602952506,41.86614887353661],[-87.60565690732297,41.86611742532198],[-87.60568327358783,41.8660586459338],[-87.60569918792382,41.86603005181025],[-87.60571512811067,41.86600141064704],[-87.60575235916191,41.86594602061663],[-87.60579470548889,41.86589272143909],[-87.6057948359373,41.86589258148555],[-87.60579565583252,41.86589169836644],[-87.6058420182457,41.86584178549304],[-87.60589399957104,41.86579351439956],[-87.60595046515847,41.86574807054226],[-87.60597382978526,41.86573174919106],[-87.60601104301362,41.8657057537004],[-87.60605108553663,41.865680869697556],[-87.60604521403191,41.864924449889656],[-87.6060452135123,41.86492443095105],[-87.60604508645942,41.86490804286642],[-87.6060450863069,41.86490802393013],[-87.60604508665821,41.86490796054022],[-87.6060450868728,41.86490794160626],[-87.60604520667351,41.86485856482658],[-87.60604520688811,41.86485854589262],[-87.60604520655822,41.8648585102153],[-87.6060452067728,41.86485849128134],[-87.6060452080222,41.86485815429553],[-87.60604520823678,41.86485813536158],[-87.60604539147927,41.8647936373503],[-87.60604539170008,41.864793617867534],[-87.60628025767217,41.86478574379125],[-87.60629244777996,41.86478533495601],[-87.60629255795807,41.8647853312627],[-87.60629255884484,41.864785350203626],[-87.6062944374052,41.86485592523426],[-87.60629443792487,41.86485594417286],[-87.60629481659907,41.86486999218309],[-87.60629481711875,41.86487001112169],[-87.60629655750628,41.86493450649163],[-87.60630767495836,41.86495541559632],[-87.60631345259436,41.864966282348036],[-87.60633569130673,41.86499619822234],[-87.60634803168558,41.86500871244987],[-87.60636284087576,41.865023729964854],[-87.60638692465459,41.865043092700425],[-87.6064720623166,41.86510449872744],[-87.60650147263321,41.865126885558055],[-87.6065059624912,41.86513039093605],[-87.6065245442243,41.86514489662804],[-87.60652484552809,41.86515177754243],[-87.60652521511982,41.86516021405458],[-87.60653899290054,41.86517800768714],[-87.60654084620015,41.86518040087442],[-87.60656124100905,41.865198065687245],[-87.60658571142034,41.865212572410044],[-87.60661317753473,41.8652232893415],[-87.6066133072917,41.86522333983347],[-87.60661337966306,41.865223368008344],[-87.60664326056911,41.865230143555536],[-87.60666489470552,41.865231868815385],[-87.60667429082379,41.86523261789719],[-87.60674136462413,41.86521965006505],[-87.60680675984115,41.86520247287464],[-87.60683222204938,41.86519391135508],[-87.60686996243656,41.86518122083848],[-87.60693049289983,41.86515602704193],[-87.60695345050385,41.86514448668852],[-87.6069880176014,41.86512711029108],[-87.60704202118222,41.86509465750767],[-87.60705496719068,41.865085430887405],[-87.60709217153968,41.8650589152254],[-87.60711254871913,41.86504249626267],[-87.60713521474638,41.865024695495585],[-87.60718059343638,41.86498905719531],[-87.60718086080769,41.86498882068508],[-87.60724430356642,41.864932653787626],[-87.60730338158432,41.864873559688434],[-87.60732822454557,41.8648453409323],[-87.60735767875049,41.864811910079304],[-87.6074069716988,41.864747979077656],[-87.60743005467083,41.86471342450404],[-87.6074510758265,41.864681957071646],[-87.6074620020888,41.8646635845046],[-87.60747192014703,41.86464690727294],[-87.60749247562117,41.864598411295525],[-87.60750986536603,41.8645573829895],[-87.60754220761599,41.86446661553915],[-87.6075503619757,41.86443851299978],[-87.60755244506795,41.864431334036745],[-87.60756068479142,41.86440285662268],[-87.60756879650087,41.864374823241654],[-87.60757256325341,41.864359945774],[-87.60757281633983,41.86435671958782],[-87.60757929950256,41.8642739561398],[-87.60757981691414,41.86422002503852],[-87.60757981712827,41.86422000610455],[-87.60758012653064,41.86418781115884],[-87.60758012674168,41.86418779249927],[-87.60757511605904,41.86410172835465],[-87.60756466477717,41.86401955465185],[-87.60756422827401,41.864015984095175],[-87.60755057649367,41.863946438133965],[-87.60754749721549,41.86393075175605],[-87.6075250309206,41.863846251283064],[-87.60751338636186,41.86381181447761],[-87.60749679027,41.86376272995695],[-87.60749097867182,41.863747943985494],[-87.6074805173898,41.863721326708784],[-87.60745079078428,41.86364984542763],[-87.60743387748973,41.86360917605305],[-87.6073342379803,41.86336952183956],[-87.60726641118833,41.86319927890248],[-87.60719359033871,41.86301643568244],[-87.60714374659287,41.862886244250795],[-87.60710658694376,41.8627891836474],[-87.60708686887064,41.862737658615465],[-87.60700285226272,41.862496265050815],[-87.60699390975586,41.862462899340514],[-87.60699031275264,41.86244947806653],[-87.60697702435633,41.86241050855368],[-87.60695777567688,41.8623791567012],[-87.60695489207689,41.86237441890238],[-87.60691879266288,41.862346391326206],[-87.60687838468714,41.862332523982225],[-87.6068445239133,41.862327232656845],[-87.60683462068654,41.86232316011357],[-87.60680670405168,41.862311680498856],[-87.60679034872678,41.86227442016509],[-87.6067901145106,41.86227341511123],[-87.60678355697976,41.862245260159504],[-87.6067721777133,41.86221922784182],[-87.60676935734257,41.86221383566024],[-87.60676527931975,41.862206039243205],[-87.60675472127869,41.86219635001058],[-87.60675332536066,41.86219506894506],[-87.60675326548578,41.86219503975163],[-87.60673748120017,41.8621873396911],[-87.60673103299956,41.86218600882354],[-87.60671924084657,41.86218357471142],[-87.60671406781908,41.86218329500008],[-87.60668890708487,41.86218135177219],[-87.60667960191783,41.86217915869423],[-87.6066500234669,41.86217218720852],[-87.60664104569146,41.862169578798586],[-87.60662433786655,41.86216472470326],[-87.60657795278695,41.86218428610815],[-87.60653156767926,41.86220384749401],[-87.60653150932211,41.86220378153714],[-87.6064725114034,41.86213697151474],[-87.60641303444213,41.86206961863541],[-87.60641300798413,41.86206958855563],[-87.60608593864185,41.8620740728286],[-87.60608571907885,41.86207407582906],[-87.60608174560986,41.862061110431874],[-87.60608026761486,41.86205628601185],[-87.60608018219742,41.86205627559165],[-87.60604199552263,41.86205151536571],[-87.60602932090167,41.86203288424566],[-87.60602217160891,41.86201269617614],[-87.6060210049643,41.862005471136285],[-87.60601996878364,41.86197708079755],[-87.60601996827027,41.86197706131013],[-87.60601367833036,41.861803366711904],[-87.60601367781078,41.86180334777329],[-87.60600506641556,41.86156554101859],[-87.60600506552892,41.86156552207764],[-87.60600051979728,41.86143992683163],[-87.60600051927771,41.86143990789301],[-87.60599438685394,41.861270493933674],[-87.60599438633437,41.86127047499505],[-87.6059912274151,41.86115409027083],[-87.60599122689864,41.86115407105781],[-87.60598952590713,41.86109128116862],[-87.60598952538756,41.861091262230005],[-87.60598007097781,41.86074240922489],[-87.60598007045823,41.86074239028627],[-87.60597521077484,41.86056242339242],[-87.60597521025528,41.860562404453795],[-87.60597342550567,41.86049631790818],[-87.6059734249861,41.86049629896956],[-87.60597101460712,41.86038309077502],[-87.60597101408756,41.860383071836395],[-87.60596990349657,41.86033089934177],[-87.60596990260994,41.860330880400824],[-87.60596794905106,41.86023777481179],[-87.60596794816442,41.860237755870855],[-87.60596459681041,41.86008031124963],[-87.60596459592689,41.86008029203428],[-87.6059645951802,41.86008026074509],[-87.60596459466065,41.860080241806465],[-87.60641760914699,41.86006870323548],[-87.6068376611506,41.86005692610434],[-87.60707239399748,41.8599583827749],[-87.60706889001273,41.85990797589505],[-87.60704017611457,41.85949662345287],[-87.60703555615628,41.85943035899036],[-87.6070114993131,41.859085298377686],[-87.60701120020633,41.85908104262207],[-87.60701083493205,41.85907585422583],[-87.60698374870863,41.858719866851864],[-87.6069802533711,41.85867392930152],[-87.60697619806437,41.85862067560209],[-87.60694893307613,41.85826264259453],[-87.60694612844206,41.85822580440725],[-87.60694206209119,41.85817239585694],[-87.60691938032292,41.857858357737534],[-87.60691886336866,41.857851198556524],[-87.60691093031487,41.85774147407676],[-87.60688912341895,41.85743983944435],[-87.60688487291957,41.85738078397027],[-87.60687837649111,41.857302086574514],[-87.60686721476856,41.85716686704022],[-87.60685707135512,41.857028566659245],[-87.60685707010121,41.85702854771598],[-87.60685541473981,41.8570059602813],[-87.60682692747181,41.856617185709176],[-87.60681826572313,41.85649892855148],[-87.60681370132323,41.85643661227981],[-87.60680933545682,41.8563828634477],[-87.60679494991373,41.85620578406685],[-87.60676150423274,41.855794401639635],[-87.60675877660299,41.855760928099244],[-87.6067543495302,41.85570659462029],[-87.6067476020448,41.85562814917569],[-87.60673187524199,41.85538312509951],[-87.6067054049285,41.85497167668418],[-87.60670046240526,41.85489459474027],[-87.60669698152451,41.854840311145594],[-87.60667687937986,41.85456032445203],[-87.6066492071303,41.854174174222486],[-87.60664739871433,41.854148938698486],[-87.60664048685548,41.85405270887432],[-87.60662584730538,41.85386079318311],[-87.6066248119968,41.853844857885626],[-87.60661784520566,41.85373766249254],[-87.60661670435098,41.85372005911818],[-87.60660684850845,41.85356795274092],[-87.60659665987595,41.85341071551686],[-87.60659655851056,41.85341072063838],[-87.60651328913174,41.853415017831104],[-87.6065124914943,41.853397350764695],[-87.6065117341335,41.85338056787734],[-87.60651117730964,41.85336831290597],[-87.60651073597256,41.853358598746944],[-87.60651073508585,41.85335857980598],[-87.60689621327737,41.85332317536225],[-87.60750340299226,41.853267381626],[-87.60767313665995,41.85325392939005],[-87.6078382000768,41.853240846965285],[-87.6083936312321,41.85319503967724],[-87.60854444631345,41.85318466324403],[-87.608676409475,41.85317558342777],[-87.60874913696884,41.85317102578599],[-87.60875835655567,41.85317044810755],[-87.6088405858278,41.85316967650106],[-87.60892265476508,41.853173322622595],[-87.60900419734841,41.8531813287302],[-87.60905306403087,41.8531888134066],[-87.60908473713067,41.85319366465244],[-87.60916394400253,41.85321024543347],[-87.60924130481494,41.8532310403983],[-87.6093165278057,41.85325588387938],[-87.60938917275206,41.853284690229536],[-87.6094134513897,41.853296037625576],[-87.60941619315568,41.8532973191852],[-87.6094588770665,41.85331729196421],[-87.60948415816608,41.85333108009145],[-87.60952530897714,41.85335352289141],[-87.60954228179011,41.85336425176598],[-87.60958810514185,41.85339321689517],[-87.60959768161153,41.853400055549905],[-87.60963059779061,41.85342358912831],[-87.60968327009145,41.85346590783211],[-87.6097165208988,41.853497045901456],[-87.60973150671947,41.85351108030653],[-87.60973479054086,41.85351468307073],[-87.60977505097067,41.853558857408125],[-87.60981357821912,41.85360899121196],[-87.60984694244415,41.853661149297295],[-87.60986932396337,41.85370432046303],[-87.60987130246554,41.8537081257595],[-87.60987489302111,41.853715030966136],[-87.60989728299732,41.853770386118455],[-87.60991400981551,41.853826803296634],[-87.60991418527942,41.85382751900559],[-87.60991436076189,41.853828233068114],[-87.60991919422935,41.85385708888268],[-87.60992306194183,41.85388018171787],[-87.60992469537653,41.85390965843355],[-87.60992595931837,41.853932478280306],[-87.60992595884002,41.85393248815661],[-87.60992595837405,41.85393249693528],[-87.60992313259196,41.8539815667047],[-87.60992313164452,41.85398158563409],[-87.60992294790076,41.85398476424378],[-87.60991536766385,41.85402926753934],[-87.60991410398462,41.85403668470751],[-87.60991075482531,41.85405044004085],[-87.6098982020399,41.85411559161298],[-87.60986485651357,41.85428886396377],[-87.6098400689575,41.8544176696333],[-87.60983771236634,41.854429529722786],[-87.60981812178856,41.85452812507481],[-87.60980433467068,41.85459751695981],[-87.60973616919667,41.85494059149398],[-87.60971793894426,41.855032386623115],[-87.60971630838436,41.85504059758415],[-87.60970130026797,41.8551161684022],[-87.60967778052729,41.85523632114192],[-87.60965491196463,41.85535314453288],[-87.60961071415927,41.85557900155177],[-87.60957420539319,41.855765564015286],[-87.60955032764004,41.855887669464465],[-87.60950794805879,41.85610638416185],[-87.60949404714255,41.85617812352968],[-87.60947183200004,41.85629273417496],[-87.60944961640523,41.856407345085124],[-87.60944694050369,41.85641909036093],[-87.60944069467287,41.85644650477276],[-87.60944068823811,41.856446522020995],[-87.6094260585624,41.85648466740394],[-87.60940585951926,41.85652142284204],[-87.6094028628525,41.856525968743135],[-87.60940025683263,41.856529921603666],[-87.60939050306982,41.85654758442699],[-87.60937518833917,41.85657531845509],[-87.60936862276321,41.856591111680856],[-87.60936430723496,41.856601479706505],[-87.60935568143975,41.85662220453898],[-87.6093418157199,41.8566701964389],[-87.60933394846708,41.856717656992686],[-87.60933374087581,41.85671891090519],[-87.60933373992815,41.85671892983456],[-87.60933372377653,41.85671928785771],[-87.60933372246183,41.85671930678476],[-87.60933153545791,41.85676799140699],[-87.60933338045758,41.85679265328655],[-87.60933520411602,41.85681702688493],[-87.60933968672289,41.85684001410852],[-87.60934467662793,41.85686560525791],[-87.6093555706461,41.85689965271739],[-87.60935995960257,41.856913369538944],[-87.6093808709299,41.85695993383362],[-87.60940579395279,41.85700240703241],[-87.60940723466518,41.857004886215286],[-87.60943886776657,41.85704792310989],[-87.60943937519005,41.85704853059257],[-87.60946418338779,41.85707840693567],[-87.60953452689935,41.857132719949625],[-87.60957264659696,41.85716577787174],[-87.60960054188361,41.85718996916178],[-87.60961483483234,41.85720393142525],[-87.60966201110946,41.85725001709581],[-87.60969844069591,41.85729025783492],[-87.60971867933392,41.85731261379588],[-87.60977043969399,41.85737756704697],[-87.60979301579182,41.857410064011894],[-87.60980267518332,41.8574239622084],[-87.60981703766618,41.857444627720604],[-87.60985055835802,41.85750059852575],[-87.60985836386799,41.85751363130211],[-87.60989423821587,41.85758430251193],[-87.60992459050112,41.8576564205494],[-87.60993751554574,41.857694808702846],[-87.6099492762953,41.85772973807526],[-87.60996822527093,41.85780397940167],[-87.60997070570961,41.85781631808871],[-87.60997142349215,41.857819888765235],[-87.60997357918673,41.85783052287278],[-87.60998839179108,41.857990446348616],[-87.60999210235656,41.858030503141876],[-87.6099921028773,41.85803052208049],[-87.60999364991056,41.858078262050654],[-87.6099936504313,41.85807828098928],[-87.60999378968228,41.85808256948565],[-87.60999379020609,41.85808258814986],[-87.609993790434,41.85808260050043],[-87.60998960807399,41.85813460462809],[-87.6099868124334,41.85814899653879],[-87.60997959303006,41.85818616093021],[-87.60996546124078,41.85823168139019],[-87.6099638234604,41.858236912595906],[-87.60994237819439,41.85828647592407],[-87.60994158298072,41.85828804913457],[-87.60994038752118,41.85829041510825],[-87.60990542234914,41.85838660016327],[-87.60988973108752,41.85843694067236],[-87.60987979396398,41.85848808581594],[-87.60987572481795,41.85853970727683],[-87.60987572543455,41.85853971770887],[-87.60987572570572,41.85853972621776],[-87.60987669692277,41.85856813369507],[-87.60987669744347,41.85856815263368],[-87.6098774911814,41.858591364947564],[-87.60988275382778,41.85862672457647],[-87.60988513567575,41.858642730883886],[-87.60988552366466,41.85864413317069],[-87.60989858673689,41.858693446508994],[-87.60990737565346,41.85871623250734],[-87.60991773924772,41.85874310116758],[-87.60992789530324,41.85876294735161],[-87.60994245091186,41.85879139099517],[-87.60996788828977,41.8588306631118],[-87.60997257808042,41.85883790399457],[-87.6100065420717,41.858880737508535],[-87.61000772274153,41.85888222546827],[-87.61000783168072,41.85888236336697],[-87.61004803079895,41.85892443865814],[-87.61005856612003,41.85893402371758],[-87.61007357516101,41.858947678957676],[-87.61014645342341,41.859003813263534],[-87.6101679420045,41.85902036496015],[-87.6101745263145,41.859025265116834],[-87.61021111662069,41.85905249729614],[-87.61022109059333,41.85905994213183],[-87.61024648578568,41.85907610100988],[-87.6102782410927,41.85909630680582],[-87.61032471922634,41.85912195574632],[-87.6103465246609,41.85913365427419],[-87.61036095143025,41.859141393869855],[-87.61037028752422,41.85914795075363],[-87.61039343910483,41.859164210734185],[-87.61042167120631,41.85919002030261],[-87.61042605144229,41.85919532122763],[-87.61044510210228,41.85921837841706],[-87.6104592701909,41.85924198363428],[-87.61046337107155,41.859248817110526],[-87.61047611605746,41.859280758637105],[-87.61048163669406,41.85930416370397],[-87.61048200248163,41.85930571348964],[-87.6104820022684,41.85930573242363],[-87.6104820022368,41.85930576782428],[-87.61048200239061,41.859305786760586],[-87.61048203910008,41.859348029803165],[-87.61047620595527,41.85939011734893],[-87.61046458029213,41.85943153753196],[-87.61045276322008,41.85946055194359],[-87.61045274370623,41.85946058969143],[-87.61045220062834,41.85946164610306],[-87.61042206023926,41.859520512952386],[-87.61041322859414,41.85954207163378],[-87.61039692003789,41.859581880819796],[-87.61037745804614,41.85964438157649],[-87.61036374936097,41.85970776981321],[-87.61035983983504,41.85973563338166],[-87.61035812115657,41.859747882779395],[-87.61035812094329,41.85974790171338],[-87.61035746834169,41.85980583725601],[-87.61036265337013,41.859863664100935],[-87.61036385022066,41.85986990986695],[-87.61036466501966,41.85987415952944],[-87.61037368034623,41.85992103293139],[-87.61038885013747,41.85997222912403],[-87.61039005501586,41.85997629600479],[-87.61039220213284,41.859982619651504],[-87.61042572829382,41.86008135094797],[-87.61043180676758,41.86009176878959],[-87.61044067418634,41.860106966284405],[-87.61045514335673,41.86012390102187],[-87.61046078210657,41.86013050131073],[-87.61048554654906,41.86015140371801],[-87.61049718949316,41.86015855881199],[-87.61051442058192,41.86016914865331],[-87.61053400432152,41.86017775575823],[-87.61054660195875,41.86018329253337],[-87.61058139807385,41.860193500040104],[-87.61060359706478,41.86019770150508],[-87.61066811266898,41.86020590087814],[-87.61066811244962,41.86020592036094],[-87.61066811389135,41.86020602053518],[-87.61066811404523,41.86020603947148],[-87.61066863517257,41.86024077454071],[-87.61066863532645,41.86024079347701],[-87.61066903505804,41.86026743306493],[-87.61066903521191,41.860267452001224],[-87.61066926631246,41.86028269255575],[-87.61066926683341,41.860282711494364],[-87.6106748482107,41.86065092355225],[-87.61067470124935,41.860650934427795],[-87.61063630886754,41.86065372771093],[-87.61061057176522,41.86065860996062],[-87.61059878515636,41.860660845898586],[-87.61058598946833,41.86066490096075],[-87.6105631225028,41.86067214704741],[-87.61053016997167,41.86068730746713],[-87.61051667488047,41.8606958671983],[-87.61050062808528,41.86070605714392],[-87.61048307110184,41.86072116378678],[-87.61047523471571,41.86072790648503],[-87.61047217576697,41.86073151760114],[-87.61045451300406,41.860752364271974],[-87.61044659142,41.86076592095551],[-87.61043901569543,41.86077888595956],[-87.61043121684969,41.86080067644123],[-87.61042900979064,41.86080684205284],[-87.61042563021573,41.86082992298066],[-87.61042479466177,41.8608356298792],[-87.61042479483721,41.860835646894664],[-87.61042479481557,41.860835648815495],[-87.61042480592472,41.86083792167389],[-87.61042480607854,41.86083794061019],[-87.61042486005874,41.860849378712615],[-87.61042467654111,41.86084937591091],[-87.61034789271358,41.860848208152554],[-87.61034789286737,41.860848227088844],[-87.6103542750329,41.86110930917087],[-87.61035427555375,41.86110932810949],[-87.61035601231752,41.861180466724875],[-87.6103560128384,41.861180485663475],[-87.61036128345107,41.86139640189617],[-87.61036117108578,41.86139640475635],[-87.61028472199722,41.86139827969156],[-87.61028465657806,41.86139838411006],[-87.61020696562605,41.86152243453474],[-87.61009343248058,41.861703800362605],[-87.61008381116007,41.86172043853587],[-87.61003622492558,41.86180272706392],[-87.60998446767806,41.86190330717057],[-87.6099694084539,41.861936582129054],[-87.60994799486495,41.861983841003024],[-87.60993823713224,41.862005376516066],[-87.60989760711152,41.86210877119145],[-87.60988908882621,41.86213296517839],[-87.60988266472549,41.86215121266851],[-87.6098198534375,41.86234980255665],[-87.6097775520764,41.8624834658841],[-87.6097762292476,41.86248764609867],[-87.60977623474454,41.86248764695657],[-87.60979864385563,41.86249226016584],[-87.60979863924646,41.86249227824884],[-87.60979179450035,41.862520022852486],[-87.60973840191826,41.862736448173074],[-87.6097351621534,41.86275331614845],[-87.60973344808613,41.86276224035175],[-87.60972391898599,41.8628120263166],[-87.609713359314,41.86286719137694],[-87.60970041358081,41.862955647262474],[-87.60969414731858,41.862998464726715],[-87.60968080500857,41.8631301592504],[-87.60968080368761,41.86313017872626],[-87.60968017127473,41.863140846579256],[-87.60968017032705,41.86314086550862],[-87.60967817483915,41.863174517193585],[-87.60967817389147,41.86317453612293],[-87.60967576115516,41.86321501040166],[-87.6096757598404,41.86321502932869],[-87.60967391983243,41.86324589630513],[-87.60965726417042,41.863248123692564],[-87.60965726322274,41.863248142621906],[-87.60965502787542,41.86328356283536],[-87.60965476104387,41.8632877897681],[-87.60965473422182,41.863287791794484],[-87.60963939220382,41.86328883590377],[-87.60962783066859,41.86328962309707],[-87.60962783118613,41.86328964231007],[-87.60962823997987,41.86337387441075],[-87.60965239721241,41.86337699015014],[-87.60965239552745,41.86337700934927],[-87.60965044881824,41.863403240614716],[-87.60963702111715,41.863403809682026],[-87.60960534579,41.863405151797195],[-87.60960534667775,41.863405170738105],[-87.60960535465615,41.86340530964742],[-87.60960748160511,41.86344288496536],[-87.60961119303114,41.86350845475147],[-87.60961140307018,41.86350845031213],[-87.60964508530726,41.8635077075622],[-87.6096490761914,41.86354735994619],[-87.60965300897399,41.86358643539685],[-87.6096563691097,41.86361987466688],[-87.6096573659341,41.86362979427458],[-87.60966064883976,41.86365188421437],[-87.60967545008543,41.863751479020856],[-87.60969608820389,41.86385598466277],[-87.6096991352871,41.86387141446834],[-87.60972245784471,41.863997439856924],[-87.60973986399567,41.86409143083989],[-87.60974965809194,41.86412430196726],[-87.60976388230985,41.86417204327638],[-87.60978078576947,41.8642173428904],[-87.60979356663894,41.86425159370371],[-87.60981014412015,41.8642898942473],[-87.60981131340796,41.86429259536864],[-87.60981764049205,41.864307623768205],[-87.60985358834508,41.86439300427751],[-87.6098597606368,41.8644076645189],[-87.60987588147535,41.86444593473299],[-87.60988503976525,41.86446767555869],[-87.6098850825027,41.86446766210668],[-87.60989241642712,41.86446531861296],[-87.60989433234835,41.864464706365126],[-87.60989447088883,41.86446466168329],[-87.60996908454368,41.86462945756841],[-87.60996907680376,41.86462946026392],[-87.60996907385464,41.864629461343036],[-87.60996754596182,41.8646300096253],[-87.6099554824196,41.86463433925871],[-87.60995549068335,41.86463435522741],[-87.61002510567724,41.8647696024461],[-87.61005195476774,41.864817411426316],[-87.61010018116173,41.86490325337447],[-87.6101806369708,41.86503512692561],[-87.61019059533623,41.865050260495586],[-87.61026080135356,41.86515695573057],[-87.61029337418151,41.865205811669625],[-87.61030712009189,41.865226429854935],[-87.61033917293388,41.865274489693455],[-87.61037087814805,41.8653220289458],[-87.61037098102204,41.8653220219095],[-87.6104215790264,41.865318643639625],[-87.61044100419315,41.86531884769105],[-87.61044764100836,41.865318917457444],[-87.61045177565471,41.86535104240982],[-87.61045628366061,41.86538606873614],[-87.6104662894396,41.865585049943824],[-87.61047263003066,41.86571114553452],[-87.61047463171116,41.86575083118428],[-87.61047915870166,41.865840590014585],[-87.61048036507228,41.865864512360154],[-87.61048037230623,41.865864652362355],[-87.61117451221575,41.86586107413176],[-87.61157844041105,41.86585899012583],[-87.6119815029544,41.86585298212153],[-87.61266898964242,41.865842731744266],[-87.61266354843691,41.86568003748033],[-87.61266354791536,41.865680018541745],[-87.61265013848254,41.86527893709109],[-87.61265013795482,41.86527891870132],[-87.6126501379733,41.86527891705488],[-87.61267864395482,41.86528186597777],[-87.61274107792288,41.86528832444386],[-87.61276267838744,41.86524588706881],[-87.61278556383705,41.865200924809734],[-87.61283037063914,41.86511295636624],[-87.61284682882084,41.86508064455016],[-87.61289880646791,41.864972138373645],[-87.61294705282245,41.86487142081996],[-87.612957406859,41.86484838769711],[-87.61298489343254,41.8647872445252],[-87.61301156356225,41.86472792526721],[-87.61304174770608,41.864660789917316],[-87.61313084089424,41.86444877884318],[-87.613160904789,41.8643737217032],[-87.61316090554475,41.86437371978697],[-87.61316389001733,41.86436624642696],[-87.61318815620022,41.86430794827711],[-87.61321025933675,41.86425484679024],[-87.6132510241357,41.86414223169071],[-87.61325506345531,41.86412911837433],[-87.61328603796628,41.86402856432221],[-87.6132940744628,41.86399941616852],[-87.61329795600336,41.86398338197967],[-87.61330346707045,41.86396061648376],[-87.61338723847734,41.86361431160102],[-87.61340228876885,41.863552095563335],[-87.61340329060158,41.86354787597342],[-87.61342400749916,41.863461781513145],[-87.61342723514741,41.863443292604444],[-87.61343989613943,41.863370772018285],[-87.61344642615013,41.86331139033801],[-87.61344995341184,41.863279314055696],[-87.61345417512939,41.863187619456745],[-87.61345417607596,41.86318760052736],[-87.61345425813793,41.86317377221795],[-87.61345425835032,41.86317375328397],[-87.61345429998187,41.86316673649806],[-87.61345430019118,41.86316671783847],[-87.61345538191674,41.86313570608841],[-87.61345538249621,41.863135687156706],[-87.61345698582915,41.863090902267174],[-87.61345698589686,41.86309089623025],[-87.6134569867757,41.86309088333778],[-87.61345548803985,41.86305565286825],[-87.6134537619314,41.863015066941685],[-87.61345222281787,41.863002188957516],[-87.6134447337746,41.86293951576108],[-87.61343405974615,41.862885805352406],[-87.61342982655873,41.86286450429366],[-87.61342908819377,41.86286147028774],[-87.61342740510563,41.86285455520449],[-87.61339399910884,41.862733352088355],[-87.61339116039508,41.8627246347462],[-87.61335489280054,41.86261312832297],[-87.61332403664059,41.86253109146269],[-87.61331008351135,41.862493993655896],[-87.61325964436429,41.86237614091099],[-87.613245784996,41.86234731375584],[-87.61323012012167,41.86231473184644],[-87.61320364499944,41.86225968056204],[-87.61316680578213,41.86218941684354],[-87.6131172897547,41.86209030042552],[-87.61310113653668,41.86205796708259],[-87.61303001735828,41.861928101933835],[-87.61301864738779,41.86190906648012],[-87.6130163614323,41.861905239281185],[-87.61301167097697,41.861897386004784],[-87.61295348306953,41.86179995936709],[-87.61292191643093,41.861751273473594],[-87.61287160484113,41.861673676756254],[-87.61278452835208,41.861549392491],[-87.6127672267029,41.86152648196158],[-87.61274448581457,41.861496369319546],[-87.6127040582395,41.861442824231126],[-87.6126922527127,41.86142718778389],[-87.61267741353522,41.86140853722445],[-87.61264823404137,41.86137186217497],[-87.61264810590427,41.86137186384072],[-87.61257951796406,41.86137266476519],[-87.61256129266151,41.86137287750085],[-87.612561110188,41.86137287964876],[-87.61255446813749,41.861089127172626],[-87.61255446761598,41.861089108234026],[-87.61255441197135,41.86108674096851],[-87.61255441144985,41.86108672202991],[-87.61254825018275,41.86082481871503],[-87.61254824966124,41.86082479977642],[-87.6125481813488,41.8608248026408],[-87.61251636513659,41.860826125467675],[-87.61247141645741,41.86082799429157],[-87.61246548091943,41.86078775403476],[-87.61246499460829,41.86078486951887],[-87.61246307204678,41.86077346908459],[-87.61245503243477,41.86076041059788],[-87.61245348173782,41.860758750471895],[-87.61245307329682,41.86075831321884],[-87.6124176214658,41.86070518070663],[-87.61238992207036,41.860684040752794],[-87.61238612688163,41.860681895897294],[-87.61237700879882,41.86067674285926],[-87.61235833223947,41.86066619746194],[-87.61232358065709,41.860652010511615],[-87.61228643523809,41.8606418436682],[-87.61225929074882,41.86063768090765],[-87.61224762577724,41.860635891962495],[-87.61220810694032,41.86063429914856],[-87.61220579775384,41.86063434474831],[-87.61220293081963,41.86063440166485],[-87.61220285628258,41.860634403117814],[-87.61220524388489,41.8604611101519],[-87.61220524409762,41.86046109121791],[-87.61220535463511,41.860461087521166],[-87.61234199640556,41.860456501093125],[-87.6123903318267,41.86045487860789],[-87.61239051471092,41.86045487234644],[-87.61239088729005,41.86044137736086],[-87.6123908878698,41.86044135842916],[-87.61239191931112,41.860403915207264],[-87.61239191989088,41.86040389627558],[-87.61239330136966,41.8603537554055],[-87.61239330194941,41.8603537364738],[-87.6123933020388,41.86035372851604],[-87.61239330262472,41.86035370903553],[-87.61220380621353,41.860353891194016],[-87.61220373242635,41.86035389127956],[-87.61220386412808,41.86034540413789],[-87.6122038643408,41.860345385203885],[-87.61219610038067,41.86034540807864],[-87.61215037748758,41.86034554276358],[-87.61215138782131,41.860307703415465],[-87.6121513887682,41.86030768448608],[-87.61215221367267,41.86027677512836],[-87.6121522142525,41.86027675619668],[-87.6121524650263,41.860267473695416],[-87.61215246560613,41.860267454763736],[-87.61215252898734,41.86026511376666],[-87.61215252956715,41.86026509483498],[-87.61218663294957,41.860265007112766],[-87.61218472654845,41.860215582156115],[-87.61218472602705,41.8602155632175],[-87.61218316571475,41.86017513032598],[-87.61218316519336,41.86017511138737],[-87.61218331232604,41.860175085143155],[-87.61218956229624,41.86017399046309],[-87.61231561665295,41.860151903631696],[-87.61240859544982,41.860083825877645],[-87.61244271212124,41.859987667140274],[-87.61244271365115,41.85998766166137],[-87.61243652240613,41.8599305508796],[-87.61243539611273,41.8599201623072],[-87.6124329790367,41.85990782023276],[-87.61242227234575,41.85985314763904],[-87.61242223785851,41.85985298249305],[-87.61240334043981,41.85978692005947],[-87.61240213449769,41.85978339435919],[-87.61239772480087,41.85977050162783],[-87.61236575810788,41.859681606479214],[-87.6123518832483,41.859638983206295],[-87.61234264215402,41.85961936993178],[-87.61233237885222,41.859597587769024],[-87.61231533299662,41.85956935190425],[-87.61227631305266,41.85948746572257],[-87.61225845744279,41.85944308884045],[-87.61224285160296,41.85940421458386],[-87.61221884210784,41.85933249320489],[-87.61220091303382,41.859265256784546],[-87.61220091170121,41.85926524470147],[-87.61219920132733,41.85924342868759],[-87.61218264376731,41.85903223715776],[-87.61217464591164,41.85893053985341],[-87.61216755472464,41.858737269537805],[-87.61216755420324,41.858737250599205],[-87.61216500747338,41.858667846199104],[-87.6121650075073,41.85866784318063],[-87.61216500695816,41.85866782671168],[-87.61217095460259,41.85864501130099],[-87.61217732036764,41.85862059367685],[-87.61218679536319,41.85858434671898],[-87.61219719011736,41.85857418580795],[-87.612265295568,41.85850761580511],[-87.612344147275,41.85849745134477],[-87.61240293184093,41.858489873559044],[-87.61253910861862,41.85849418632288],[-87.61254399916525,41.85849112479291],[-87.61263859039633,41.858431912649955],[-87.61272220525464,41.858360669088924],[-87.61272455133384,41.858358670625925],[-87.61272472405275,41.85835852297117],[-87.61273686394736,41.858342594388866],[-87.61276675055475,41.85830338020599],[-87.61278602123504,41.8582734378279],[-87.61280355091299,41.85824620133342],[-87.61281332963394,41.858227890188516],[-87.612827022983,41.85820224873112],[-87.61283501010811,41.85818725978767],[-87.61286094410681,41.858126829392674],[-87.61287057062195,41.8580998040125],[-87.61288880925133,41.858056851502596],[-87.6128926755136,41.858047746177256],[-87.61292211319709,41.857978419748655],[-87.61296801714263,41.85785576545273],[-87.61298972796796,41.85778885954273],[-87.61300820650449,41.857732004486934],[-87.61303702677812,41.85762810837209],[-87.61304175707203,41.85761105643962],[-87.61305574203942,41.85750971657642],[-87.61305639885879,41.857503490968085],[-87.61306333034337,41.857376440146155],[-87.61306333128995,41.85737642121674],[-87.61306353357216,41.857372722684055],[-87.61306353451873,41.85737270375465],[-87.61306965700875,41.857260726975106],[-87.61306965832237,41.857260708048],[-87.61307047708898,41.857184469337696],[-87.61307047730452,41.85718445012928],[-87.61306542222367,41.85710826596432],[-87.61305848877521,41.857060022976114],[-87.61305452643724,41.85703245598285],[-87.61304879470136,41.8570035233293],[-87.61304015928077,41.85696504908418],[-87.61304003519174,41.85696449451574],[-87.61303956515735,41.85696238398174],[-87.6130099604171,41.856859315996694],[-87.61298306746244,41.856781653740576],[-87.61297461846482,41.85675725510801],[-87.61295702642632,41.856713946109515],[-87.61293364765528,41.85665639381339],[-87.6128991752245,41.85658150618191],[-87.61289180209874,41.856554923279745],[-87.61287751216203,41.85650348866665],[-87.61287707341418,41.85650130587982],[-87.61286165883851,41.856424684316146],[-87.61285413306268,41.856367521242035],[-87.61285259338759,41.85635582847489],[-87.61284146077968,41.85633117232489],[-87.6128184957028,41.85628031226283],[-87.61277887551879,41.856206298722896],[-87.61274054633094,41.85614475107993],[-87.61273811863124,41.85614084998554],[-87.61273387654006,41.85613403491058],[-87.61268364277089,41.85606374098909],[-87.61262829376608,41.855995624069706],[-87.61262828254173,41.855995610278015],[-87.61256797691776,41.855929863721],[-87.61250294293795,41.85586672193842],[-87.61247612453222,41.855842623452446],[-87.61240026762509,41.85577902975912],[-87.61236571995073,41.855752901926785],[-87.61234479743429,41.85573707839497],[-87.61233641863144,41.855730745571684],[-87.61232011963699,41.85571842720615],[-87.61223589825465,41.85566101062128],[-87.61214785882476,41.855606889722665],[-87.61214574391296,41.85560566869642],[-87.61193106730013,41.85547207378915],[-87.6117060615472,41.85533204938096],[-87.61149267492723,41.85519925868726],[-87.61144093655842,41.855161170098256],[-87.61142608906522,41.85515023971594],[-87.61136375925359,41.85509820106439],[-87.61130593916268,41.85504333588311],[-87.61125284761877,41.85498586729029],[-87.61123348678763,41.854961817319484],[-87.61120466459192,41.85492601349444],[-87.61120430304514,41.85492549036186],[-87.61117530278905,41.85488372132336],[-87.61116160816925,41.854863997608675],[-87.6111242177463,41.854800781598335],[-87.61109027010441,41.85472855917977],[-87.61106567133145,41.85466468264108],[-87.61106195296838,41.85465502720099],[-87.611039263055,41.85458037801764],[-87.61103195961041,41.85454772266758],[-87.61102479529096,41.854515687021106],[-87.61102246408923,41.854505246939766],[-87.61102238407649,41.85450488748816],[-87.61101131098285,41.854428774300345],[-87.61101081198365,41.854422851532135],[-87.61100749003985,41.85438341492195],[-87.6110108173697,41.85428666522493],[-87.61101081794669,41.85428664656764],[-87.61100827351372,41.85418988683362],[-87.61100827299579,41.85418986762059],[-87.61100082958772,41.854104282411505],[-87.61100039163907,41.85409916491657],[-87.61099988906143,41.85409329948037],[-87.6109998205887,41.85409286051794],[-87.61098471487313,41.853964114610335],[-87.61096376747604,41.853835825921735],[-87.61095093711576,41.853774682275805],[-87.6109369776743,41.85370815964858],[-87.6109351197552,41.85370093963012],[-87.61093317955157,41.85369339911403],[-87.61091178042373,41.853609966245706],[-87.61090441590542,41.85358125261937],[-87.61089433512146,41.853548075116954],[-87.61086611950552,41.85345521483433],[-87.61086480620754,41.85345120051067],[-87.6108497662399,41.85340793878112],[-87.61083967995442,41.85337890780661],[-87.61082110945068,41.85332545832192],[-87.6108119975299,41.8533024779688],[-87.61080429902245,41.85328306333475],[-87.6107717845294,41.853200915345745],[-87.61073545964179,41.85311945989783],[-87.61071687746295,41.85307779030723],[-87.6107168287641,41.8530776818772],[-87.61068710855773,41.853017832319004],[-87.61065635148798,41.852955895260166],[-87.61064051277951,41.852927005623286],[-87.610611137649,41.85287342444623],[-87.61061110564471,41.85287336551779],[-87.61060432931731,41.85286102312747],[-87.61060429982041,41.852860969703315],[-87.61059042384292,41.85283569424416],[-87.61055970305281,41.85278470010112],[-87.61051908078346,41.85271726921677],[-87.61049669583257,41.85268244589667],[-87.61048365640507,41.85266216172514],[-87.61037574395577,41.852508415655144],[-87.61037318446532,41.852504769169286],[-87.61037251554663,41.85250387005715],[-87.61034317321506,41.85246445924829],[-87.61025893006038,41.85235133652494],[-87.61025755098827,41.85234948480116],[-87.6102574934505,41.85234941171617],[-87.61021973879001,41.85230153347865],[-87.61013682811681,41.85219639083844],[-87.61010034650945,41.85215262241456],[-87.61001992453784,41.85205613701806],[-87.61001696499471,41.85205258899316],[-87.61001108791822,41.85204554342756],[-87.60991944395403,41.85194060193849],[-87.60973548355594,41.851716765726216],[-87.60967894907077,41.8516479765899],[-87.60961630613032,41.851571749324556],[-87.60949215327335,41.85142067258527],[-87.60943753008573,41.851352929682946],[-87.60942057896956,41.85132899666869],[-87.60938799692785,41.85128299516822],[-87.60936981441017,41.85125349671871],[-87.60936125193936,41.851239605112724],[-87.60934373418046,41.851211146531156],[-87.60930488679821,41.851137547700304],[-87.60927156176643,41.85106247460434],[-87.60924383031707,41.85098611869727],[-87.60922180009634,41.85090872956568],[-87.60922178096892,41.85090863559156],[-87.60920671567293,41.85083603902753],[-87.60920557695411,41.850830553216596],[-87.60920544190888,41.85082950954811],[-87.60919658116089,41.85076575951397],[-87.60918826237162,41.850686535020415],[-87.6091871941323,41.85065179342054],[-87.60918581854561,41.850607073416214],[-87.609188643094,41.85054164759207],[-87.60918924730937,41.85052764828902],[-87.60919182081018,41.85050573050382],[-87.60919854571901,41.85044845363856],[-87.60920107273122,41.85043527820913],[-87.60920443350972,41.850417754823795],[-87.60920444600309,41.85041768849158],[-87.6092044615873,41.850417608457576],[-87.60920757189315,41.85040146522559],[-87.60920991264737,41.85038931332655],[-87.6092136740453,41.85036978833678],[-87.60921607423042,41.850359721623235],[-87.60921775742996,41.85035266303299],[-87.6092561786901,41.850163112817235],[-87.611364443831,41.850162514317056],[-87.61144611209694,41.85016249033561],[-87.61170878002483,41.85018232141953],[-87.61232446214086,41.85001468340315],[-87.61228938289011,41.84988935501895],[-87.61226612905337,41.84972123311453],[-87.6122691707192,41.84958932429207],[-87.61227085119083,41.8495164589238],[-87.6123008545486,41.84935155283005],[-87.61235105225683,41.84915000045911],[-87.61235191551525,41.8491484314983],[-87.61239996311743,41.84906109939271],[-87.61263225815098,41.849584309014816],[-87.61271538430596,41.84977153524789],[-87.6128239371051,41.85000025710856],[-87.61285658182209,41.850064320733296],[-87.61300203901916,41.85038814970019],[-87.61311063685231,41.85067360217792],[-87.61315706640882,41.8507325929524],[-87.61339068828569,41.8508896569325],[-87.61323976926695,41.85035220880564],[-87.61316783431806,41.8501227770543],[-87.6131223925831,41.84997572929713],[-87.61308837042563,41.849861025583806],[-87.61299530957034,41.849573502257414],[-87.61297414133502,41.84950809982631],[-87.61293083188261,41.84909902097569],[-87.61284462670622,41.848892058353364],[-87.61276772446377,41.84870742970506],[-87.61273907070243,41.848638636381885],[-87.61294680666042,41.8484705560616],[-87.61301142920439,41.848428974244186],[-87.6131513415015,41.84834883679446],[-87.61325076396878,41.848291890059684],[-87.61337114462438,41.84823660701053],[-87.61352106726494,41.848178353089686],[-87.61365803699437,41.84812962270852],[-87.61379100634204,41.84809395720717],[-87.61390049450473,41.84806404462155],[-87.61406055187469,41.84804462982806],[-87.61424708524001,41.84802724667331],[-87.61453716430394,41.84802039034325],[-87.61487535100387,41.848012395685934],[-87.61525083593075,41.84800668676157],[-87.61533283954002,41.84800544393261],[-87.61543277410918,41.84821849964686],[-87.61551634071006,41.84820889153334],[-87.61568692815726,41.848205088147346],[-87.61583711863139,41.84820439119511],[-87.61597497719985,41.84820361290709],[-87.61676735400658,41.84819341096651],[-87.61710220645489,41.848184833512576],[-87.6171021152383,41.84843883232497],[-87.61710213126136,41.84876642809994],[-87.61738118526293,41.84929129218745],[-87.61769729979832,41.850772416190516],[-87.61781665097813,41.85121991724714],[-87.6175645425643,41.85122181756532],[-87.61756713377412,41.851583221450504],[-87.61757711323993,41.85301108946373],[-87.6177374289799,41.85302215986205],[-87.61827263872978,41.85301507832187],[-87.61884334312224,41.853004044935474],[-87.61904066801075,41.85300185133916],[-87.61917497838229,41.85291286491388],[-87.62066449699735,41.852909759614924],[-87.62074862428824,41.852908518423185],[-87.62134256135032,41.85289567190341],[-87.6218700967013,41.85288949528968],[-87.6222741085159,41.8528877129627],[-87.62273873756145,41.85288424635775],[-87.62302426605493,41.85288004713216],[-87.62324733545019,41.852876765668874],[-87.62381024363044,41.85286551751541],[-87.62387917155256,41.85286414033929],[-87.6245109031708,41.85286095661534],[-87.62526270056107,41.85285378710885],[-87.62549959325794,41.852850346369316],[-87.62611878595034,41.85284135090638],[-87.6263130211741,41.85284067546872],[-87.62639588136173,41.85284038721961],[-87.62673155439138,41.8528392190487],[-87.62708869836511,41.85287039701918],[-87.62708958310692,41.852942520673416],[-87.62709161668533,41.85310827249158],[-87.62709853161815,41.85338057232005],[-87.62710139843314,41.853509021372886],[-87.6271030386982,41.853661680658774],[-87.6271074999392,41.85407681784537],[-87.62711432259908,41.854250077174044],[-87.62711642238901,41.854303411233786],[-87.62712320856429,41.85465419590041],[-87.62713001790678,41.85475256441822],[-87.62714613454268,41.855446533738444],[-87.62715265909787,41.855727490274404],[-87.62716420326574,41.856036152639966],[-87.62717114797402,41.856550769584686],[-87.62717956301226,41.85720755225144],[-87.62719633526636,41.85781009803695],[-87.62720040785247,41.85795643184118],[-87.62721481941549,41.858629173920136],[-87.62722941118838,41.859001589584764],[-87.62724320479715,41.85935363960938],[-87.62725854371074,41.859942135660475],[-87.62726246568684,41.86017872803566],[-87.6272674930211,41.86073983389614],[-87.62726749820337,41.860740464008245],[-87.62727463977009,41.86145332483277],[-87.62729064752094,41.8619538761906],[-87.62730525995164,41.86241075926264],[-87.62730980578121,41.862552887273836],[-87.62732522355526,41.86346480028469],[-87.62734348871267,41.864052509559755],[-87.62736808504174,41.86485657100377],[-87.6273795365746,41.86546814368298],[-87.62738393824493,41.865742870949845],[-87.62738815894197,41.866006318774886],[-87.62739320573603,41.8665390360292],[-87.62742144291269,41.86694687767673],[-87.62741867651468,41.867413588800275],[-87.62702182789425,41.86741911070413],[-87.62666774623519,41.867423659486704],[-87.62654636459425,41.8674251433351],[-87.62630608751614,41.86742808012401],[-87.62582986219891,41.867431856185036],[-87.62563875661463,41.86743337110034],[-87.62535904552293,41.867438390298695],[-87.62481165090564,41.86744850058],[-87.62442667509643,41.867455115580505],[-87.62413151136133,41.86745658605874],[-87.6240237087002,41.86745712282396],[-87.62353645029401,41.86746759870019],[-87.62336548629757,41.86747190968281],[-87.62317851139986,41.867476624153284],[-87.6228326498586,41.86748122813009],[-87.62255587150662,41.867484216922506],[-87.6225319933999,41.8674844747378],[-87.62243567133937,41.86748551465883],[-87.62184922452816,41.867491997216575],[-87.62158134288491,41.86749581567297],[-87.62124471137419,41.86750061312387],[-87.62099309571056,41.86750462436742],[-87.62086219386481,41.867506711106245],[-87.6208386878263,41.8675070855872],[-87.62040042129772,41.86751255459217],[-87.61994542962896,41.86752176958542],[-87.6192145411437,41.86753745693264],[-87.61896156419719,41.867502856860455],[-87.61889093150744,41.86758723807422],[-87.61883837090119,41.86765002988986],[-87.61858876755252,41.86793887278573],[-87.61854139896624,41.86798988498173],[-87.61660246599558,41.86816620374145],[-87.61535246000204,41.868304279998725],[-87.61473987993661,41.8683243784925],[-87.6146596921717,41.868360869177195],[-87.61464980883932,41.868364759594],[-87.6145963036669,41.86838581808192],[-87.6145766454157,41.86839355512542],[-87.61453492334321,41.86840755832282],[-87.6144910000423,41.86842229992515],[-87.61445409182151,41.86843267239812],[-87.61440312329941,41.86844699692302],[-87.61435377680762,41.86845827256733],[-87.61431334751349,41.86846751070782],[-87.6142220396976,41.86848378868832],[-87.61419801800268,41.86848696210353],[-87.61413894363682,41.86849476646442],[-87.61397220515549,41.868502998000224],[-87.61384684899933,41.86850589907391],[-87.61380514881262,41.86850686394907],[-87.61377714860092,41.86850677550996],[-87.6136380312035,41.86850633792633],[-87.6135346936898,41.86850327892388],[-87.61347107365896,41.86850139524876],[-87.61330442172527,41.868492090342436],[-87.61329517759515,41.868491456093025],[-87.61321563928449,41.868477708158764],[-87.61321412225975,41.86847744590125],[-87.61320732707595,41.868475886272634],[-87.61313458426402,41.86845919185873],[-87.61309741691568,41.8684484727295],[-87.61305696475237,41.86843680597996],[-87.61298195467127,41.86841048689542],[-87.61298163066049,41.868410373172225],[-87.6129090199027,41.868380032850546],[-87.61283942574441,41.868345923797854],[-87.61280652167531,41.868327201652924],[-87.61277324953588,41.868308269724075],[-87.61271492401207,41.86826992612191],[-87.61271074632008,41.86826717980989],[-87.61270100630641,41.86825980390167],[-87.6126756622595,41.86824061131744],[-87.61265231645832,41.86822293264492],[-87.61261770900745,41.8681927348396],[-87.61259817983833,41.86817569427008],[-87.61257422104165,41.86815150402617],[-87.6125568898791,41.86813401346631],[-87.61254866410809,41.868125711809064],[-87.61253010756931,41.86810392896086],[-87.61250398457912,41.868073264062616],[-87.61246436060755,41.86801859637677],[-87.6124494590177,41.86799534139094],[-87.6124180824344,41.86794163160799],[-87.612415958993,41.86793799642058],[-87.61238794819423,41.86787901081044],[-87.61237171635626,41.86783534864789],[-87.61236553302355,41.8678187161887],[-87.61234881978561,41.86775738737627],[-87.61234626460917,41.867742936318216],[-87.61233833512556,41.86769775244536],[-87.61233791453424,41.8676953540767],[-87.61233775639961,41.867693417291655],[-87.61233372312735,41.8676440062156],[-87.61233281564719,41.86763288988289],[-87.61233322198227,41.86760166179769],[-87.61233322219502,41.867601642863725],[-87.61233362806081,41.867570456487975],[-87.61233362827356,41.867570437554],[-87.61233362930649,41.867570345628195],[-87.61233362952233,41.867570326419816],[-87.61234027576228,41.8675079557194],[-87.61234027818077,41.867507936524845],[-87.61234727536535,41.86747334091144]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3138556.92917","perimeter":"0.0","tract_cent":"1175345.30105406","census_t_1":"17031340400","tract_numa":"30","tract_comm":"34","objectid":"485","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885749.69595097","census_tra":"340400","tract_ce_3":"41.84187528","tract_crea":"","tract_ce_2":"-87.63202859","shape_len":"7670.19080766"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63377811688109,41.83820897946998],[-87.63410385969854,41.83820523049626],[-87.6341102786726,41.838460153696616],[-87.634113749946,41.83861956161465],[-87.63411404652076,41.838633174963604],[-87.63411981884619,41.838824293393664],[-87.6341253669207,41.83901582154259],[-87.63412926549773,41.83918354716178],[-87.63413316369343,41.83935141026125],[-87.63413721712226,41.83952517391604],[-87.63414242901831,41.839687990345844],[-87.63414700182382,41.83983083453078],[-87.63414971609649,41.839961423049424],[-87.63415168924412,41.8400730167597],[-87.63415457697403,41.84023631793237],[-87.63415928055637,41.84047509735775],[-87.63416505433614,41.840733559645024],[-87.63417033502307,41.8409462995191],[-87.63417634256469,41.841138389673546],[-87.63418782970304,41.84152374376266],[-87.63419044254198,41.841654523997796],[-87.63419449021103,41.841812014077576],[-87.63420046551443,41.84199797414985],[-87.63420512469654,41.84218856345715],[-87.63420831407758,41.84236597245613],[-87.63421390002084,41.84258564969761],[-87.63421964684935,41.84281165452879],[-87.63422663992796,41.84303230821875],[-87.6342299563972,41.84318951965786],[-87.63423460019406,41.843440565440254],[-87.6342389093014,41.84362121889436],[-87.63424456019133,41.84383703448495],[-87.63425238170332,41.844041677948745],[-87.63426095644867,41.84426603471704],[-87.63426215442941,41.84444255281859],[-87.63426491183232,41.84460393209117],[-87.63426976937278,41.84478475350186],[-87.63427240927648,41.84489401828088],[-87.63427706119687,41.84508658386258],[-87.63427718645005,41.845091766336196],[-87.63427961325031,41.84519222156189],[-87.63428123981376,41.84525955062197],[-87.63428174277863,41.84528037108826],[-87.63428351379143,41.84535368186593],[-87.63428475690766,41.845405158570095],[-87.63428682180485,41.84549061530674],[-87.63427183170475,41.84549084322789],[-87.63381954012023,41.84549771523029],[-87.63363718178384,41.84550022686624],[-87.63325619498316,41.84550967208934],[-87.63306674944089,41.84551250241134],[-87.63264781204398,41.845518756462276],[-87.63246101012425,41.845521477323324],[-87.63236770147506,41.845522836556725],[-87.63231187023665,41.84552364948737],[-87.6318959677424,41.84552914351691],[-87.6318240723959,41.84553009328579],[-87.63179989205871,41.845530412667216],[-87.63165573723762,41.84553231640132],[-87.63149656105237,41.84553441823313],[-87.63108410396195,41.84553635158729],[-87.6309273339472,41.845538950057204],[-87.63066043289987,41.84554364492003],[-87.63034830294728,41.8455491345226],[-87.62996575814736,41.845544844307845],[-87.62996540585843,41.84554484050387],[-87.62996524439643,41.845544838417375],[-87.62996524444752,41.845544833752456],[-87.62996222539653,41.84541345470652],[-87.62994472511093,41.84479973111627],[-87.6299306071058,41.84434629294908],[-87.62992853161468,41.84427566960919],[-87.62991425093101,41.84376221425837],[-87.62990488052863,41.84334448046779],[-87.62988457174262,41.84278617351454],[-87.6298755442388,41.84233715717935],[-87.62986619607898,41.84201589324834],[-87.62986309716192,41.841908213892495],[-87.62986099277367,41.8418350796206],[-87.62985750746304,41.84171396199255],[-87.62984200585437,41.84132829835444],[-87.62982944638786,41.84086397994832],[-87.62981523196025,41.840338485341405],[-87.62980089973749,41.83980429531887],[-87.62979312535919,41.83950889677161],[-87.62978731525807,41.8392855465754],[-87.62978240744164,41.83909986552524],[-87.62976266726227,41.83835303270967],[-87.62976040511526,41.83826567253956],[-87.62976041796135,41.83826567234383],[-87.63002605644628,41.838261588425105],[-87.63033874353155,41.838256780330994],[-87.63042990122588,41.838255378554706],[-87.6304692414576,41.838254773794404],[-87.63066699783835,41.838251732096786],[-87.63101300870596,41.83824640950045],[-87.63129484194694,41.83824207369926],[-87.63167749527416,41.83823618545947],[-87.63219562003097,41.83822821078595],[-87.632272805475,41.83822712867886],[-87.63248533922209,41.838224150171],[-87.6328847022022,41.83822018782126],[-87.63314988229897,41.83821755547538],[-87.63333570627555,41.83821503468954],[-87.6334946397231,41.83821286129011],[-87.63356179297877,41.838211942767494],[-87.63377811688109,41.83820897946998]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3522917.11719","perimeter":"0.0","tract_cent":"1156071.58892982","census_t_1":"17031300900","tract_numa":"16","tract_comm":"30","objectid":"488","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1887897.67048381","census_tra":"300900","tract_ce_3":"41.84817966","tract_crea":"","tract_ce_2":"-87.70269936","shape_len":"7942.46995592"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70474747800291,41.84451963647962],[-87.70504048522427,41.8445175297098],[-87.70504589698197,41.84478905460064],[-87.70504944104212,41.844993247247395],[-87.70506075180958,41.845251379718555],[-87.70506821883548,41.84547474877007],[-87.70507590880871,41.84570909608754],[-87.70508349286271,41.845950523016185],[-87.70508992102309,41.846156295627054],[-87.70509446661637,41.846334400696],[-87.70510252333912,41.846650085011824],[-87.7051080566347,41.84681224635798],[-87.7051147246063,41.84700106070191],[-87.70511782482696,41.84710160002109],[-87.70512956587953,41.84754738745248],[-87.70514780987989,41.84803854563701],[-87.70514823840725,41.84814022977591],[-87.70514864981627,41.8482378111467],[-87.70517629190216,41.8492240032648],[-87.70519601758755,41.84984140545357],[-87.7052000526692,41.849951081091284],[-87.705205643616,41.8501030411376],[-87.70522293050193,41.850800946522824],[-87.70523147812185,41.851056566331756],[-87.70523984327912,41.85130671828827],[-87.70524979386751,41.85160428381847],[-87.70525465908878,41.85176516528519],[-87.70503232829941,41.85176835378196],[-87.70417023809567,41.85178023727309],[-87.70403546799217,41.85178112325246],[-87.70395493042035,41.851781652590596],[-87.70302488665506,41.85179692679882],[-87.70290276064638,41.85179828918454],[-87.70281265201679,41.85179929427884],[-87.70267864998091,41.85180078908964],[-87.70212206202001,41.851807940177316],[-87.70174698676473,41.85181806273383],[-87.70158060273815,41.85181827883626],[-87.70146442998511,41.851818429562606],[-87.70053702284318,41.851835854018],[-87.70036378593197,41.85183842167469],[-87.70034770046121,41.8517501503231],[-87.70033875995658,41.85137563156829],[-87.70032668578412,41.85086984025329],[-87.70030513738207,41.85014422112665],[-87.70030176602116,41.8500159483856],[-87.7002981709605,41.84987916939313],[-87.70027552153452,41.84912009151607],[-87.70025237957033,41.8483477285913],[-87.7002491282939,41.84820490968504],[-87.70024682213212,41.84810359581925],[-87.70022521950114,41.84740223531776],[-87.700215373221,41.84707468071359],[-87.70020607068575,41.84677588896457],[-87.70020256018339,41.846640577442344],[-87.70019622152589,41.84639500284488],[-87.70019169829798,41.84621976685327],[-87.70018246597058,41.84599103676605],[-87.70018171720486,41.845948496554946],[-87.70017980759144,41.84584003273507],[-87.7001699439722,41.84551245050112],[-87.70016639840807,41.84539470204302],[-87.70016264200007,41.845195008977605],[-87.70015971638178,41.84508015940332],[-87.70015835525443,41.845026734254404],[-87.7001533461535,41.844875964222524],[-87.70015142158273,41.844776430409276],[-87.70015061070242,41.84473449742672],[-87.70014826180036,41.84461301045218],[-87.70028942157282,41.844605306588846],[-87.70062036520086,41.84459642752297],[-87.70080474097357,41.84459349158997],[-87.7010939813962,41.8445895129853],[-87.70136266880337,41.84458503966141],[-87.7015188973541,41.84458243837855],[-87.70177226172595,41.84458040150871],[-87.7020216637157,41.84457823252994],[-87.70230285021408,41.84457588088699],[-87.70258406641517,41.844551782894264],[-87.70267483034286,41.844544004876006],[-87.70297657383729,41.844541160718975],[-87.70318644739027,41.84453912901653],[-87.70319378884274,41.844539030434746],[-87.70339519154855,41.84453632234227],[-87.70381055605894,41.84453103485713],[-87.70404762555366,41.844528016159025],[-87.70427340077143,41.84452499932973],[-87.70442581476277,41.844522961570185],[-87.70474747800291,41.84451963647962]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1895074.15188","perimeter":"0.0","tract_cent":"1152566.3038437","census_t_1":"17031231100","tract_numa":"9","tract_comm":"23","objectid":"818","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906483.29750154","census_tra":"231100","tract_ce_3":"41.89925056","tract_crea":"","tract_ce_2":"-87.7150727","shape_len":"7946.76211352"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71301541922402,41.90134107738205],[-87.71248893623624,41.90089606732781],[-87.71202379516293,41.90051827673249],[-87.71184107686501,41.90037355849245],[-87.71155510886652,41.90014693622813],[-87.71168024567676,41.90011117628368],[-87.71188391964976,41.90005297269356],[-87.71212074002906,41.900240892200785],[-87.71229881379168,41.900381701783736],[-87.71249631270125,41.90053842292392],[-87.71262600988847,41.90064142925818],[-87.7126901381057,41.90069147403014],[-87.71277007107967,41.900735674701856],[-87.71278341334889,41.90074305251491],[-87.71298355170498,41.900828871568336],[-87.71328719730413,41.900949117779824],[-87.7134549758013,41.90101547367234],[-87.71351949341981,41.90098357713045],[-87.7136099675283,41.90096068452572],[-87.71368320593966,41.90095380752273],[-87.71385708573014,41.90095142514278],[-87.71405732610845,41.900950413531945],[-87.71403539835495,41.90033822611771],[-87.71401619299664,41.899771217999344],[-87.71400126081842,41.89921817332928],[-87.71399685548593,41.89912972332719],[-87.71398818656526,41.8989556437887],[-87.71397117918265,41.8984007217621],[-87.71395803184,41.8980089381038],[-87.71393700796295,41.897390767031744],[-87.71393428025534,41.897306503879335],[-87.71393075658798,41.89719764859103],[-87.71391497148082,41.89669877036711],[-87.71389794695432,41.89618753633069],[-87.71389000899644,41.89596048883929],[-87.7138840480203,41.895789985555815],[-87.71387522488433,41.895581759862225],[-87.71387286747256,41.89548332659708],[-87.71401833454495,41.89548184556455],[-87.71451845351652,41.89547735176314],[-87.71495141700939,41.8954742504857],[-87.71509387982167,41.89547304554636],[-87.71535268266666,41.89547115180648],[-87.71569434154262,41.895467468520415],[-87.71611236945988,41.895462960632166],[-87.71631408608235,41.89546088191935],[-87.71632662537974,41.89587009502105],[-87.71632872655732,41.895934409359405],[-87.71634259820438,41.89635903986746],[-87.71636613495228,41.89710395315249],[-87.71637278824024,41.89728515567259],[-87.71638007476182,41.89748361133249],[-87.71642923202896,41.89896702717457],[-87.71643431121362,41.89910705950982],[-87.71643846329606,41.89922152262673],[-87.71645865828924,41.899810050845595],[-87.71647305085654,41.90023054554231],[-87.7164866187002,41.90062224871497],[-87.71649747390157,41.900930868919694],[-87.71652494253115,41.90169012790588],[-87.71653449717448,41.90195513539966],[-87.7165368722407,41.90204850712846],[-87.71654534769671,41.90224099836408],[-87.71655305786967,41.90241346791517],[-87.71655911877828,41.90261196373289],[-87.71656238916434,41.90275429965197],[-87.71635818914376,41.90275649358086],[-87.7155642079368,41.902761774816064],[-87.71528236050607,41.90276434079068],[-87.71515928938274,41.90276563304549],[-87.71473769787286,41.90276874196287],[-87.71459152720352,41.9027698194331],[-87.71451383854058,41.902702757543565],[-87.71420535427478,41.90240917646642],[-87.71393003424787,41.902152820925046],[-87.71374290841209,41.902035284496364],[-87.71374023445479,41.9019795955233],[-87.71362962787981,41.90187917702708],[-87.71332506192608,41.90160859769141],[-87.71301541922402,41.90134107738205]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"22715270.4664","perimeter":"0.0","tract_cent":"1148204.72722381","census_t_1":"17031301900","tract_numa":"26","tract_comm":"30","objectid":"486","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880791.61876146","census_tra":"301900","tract_ce_3":"41.8288346","tract_crea":"","tract_ce_2":"-87.73175406","shape_len":"19794.1930169"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7381755019372,41.818826745524944],[-87.73855658142494,41.818706145062364],[-87.73855675569168,41.81872905959313],[-87.73855731807124,41.818803001327794],[-87.73858204677083,41.818850478875845],[-87.73859662586506,41.81950506447638],[-87.73859914573029,41.81962925583633],[-87.73860364177854,41.81983715845538],[-87.73861691850576,41.82048384767513],[-87.73861878753816,41.820579221002745],[-87.73861975697163,41.820623134190505],[-87.73862004529329,41.82098683643915],[-87.73863191187593,41.82144064877685],[-87.738640376785,41.82176486062263],[-87.73864204429722,41.82182750024598],[-87.73864820393193,41.82205888045442],[-87.73864811220419,41.82205888135167],[-87.7386492510069,41.82211760105357],[-87.73864923926483,41.8221176012672],[-87.73848582774994,41.822119897335284],[-87.73848582771184,41.82211990145151],[-87.73848858203762,41.82225037424949],[-87.73850560848925,41.823064497495416],[-87.73851384656558,41.823458389925975],[-87.73852834344086,41.82415156734209],[-87.73852834721939,41.824151753698004],[-87.73853216888573,41.824334479696844],[-87.73854506689997,41.824951174547685],[-87.73856332763118,41.825824272784196],[-87.73856947513818,41.82611820166423],[-87.73858283956588,41.826757182796754],[-87.7385853684721,41.82688024889587],[-87.73858730325989,41.826970185776695],[-87.73858798454282,41.82700186619221],[-87.73858846148028,41.82702403032605],[-87.73858875489911,41.82703767857422],[-87.73859145566318,41.827166954478365],[-87.73859615266262,41.82739178043653],[-87.73861255134157,41.828176739039826],[-87.73862052002497,41.828558175108896],[-87.73863430426945,41.82921796193029],[-87.73863826787785,41.829407678440376],[-87.7386382821738,41.8294083538801],[-87.73863864266674,41.829425619147884],[-87.73864514738835,41.82969940151062],[-87.7386591742371,41.83028980352949],[-87.73866273478868,41.83043966777971],[-87.73866273476327,41.830439670523845],[-87.7386724410646,41.830848206075125],[-87.7386729641395,41.830870266150434],[-87.73867734074715,41.83105486365608],[-87.73868035866975,41.831182170448585],[-87.73868530662939,41.8313903557294],[-87.73868546532249,41.83139703638483],[-87.73869948411219,41.83198686298533],[-87.73871228979941,41.83252564746855],[-87.7387183884284,41.832782223189504],[-87.73872235357494,41.83294806277687],[-87.73872289956556,41.83297090068927],[-87.73872494917468,41.8330566286295],[-87.73873125841892,41.83332217369646],[-87.73873139486432,41.83332792859161],[-87.73874329207813,41.833828647120775],[-87.73875811836184,41.83445263449282],[-87.73876292302128,41.834654815269744],[-87.73877921019054,41.83534012480454],[-87.73878531016189,41.83559679727753],[-87.73878724685008,41.83567828551873],[-87.73879184286247,41.835871662924376],[-87.73880243395328,41.83631727940084],[-87.73880320652056,41.83634973906056],[-87.73880630178891,41.83647979150213],[-87.73881144152713,41.836695710933675],[-87.73874825283895,41.836721812814815],[-87.73869666913714,41.83672228014096],[-87.73852333851828,41.83672394663803],[-87.73839728041615,41.83672515849928],[-87.73827850274085,41.836726300364745],[-87.73816423432308,41.836727398512885],[-87.73794154147437,41.83672961982167],[-87.737752682371,41.83673185148495],[-87.7374658247964,41.83673620898408],[-87.73718850558376,41.83674080737191],[-87.73681426749653,41.836745944609845],[-87.73655051931439,41.836748237045605],[-87.73625695454791,41.83675078771968],[-87.73596317435013,41.83675373334435],[-87.73574862691652,41.83675602020648],[-87.73542155118938,41.83676030083593],[-87.73504747440704,41.83676381376247],[-87.73468140285482,41.83676673628668],[-87.73426582288589,41.83677022134525],[-87.73407192831824,41.83677305900942],[-87.73376808137671,41.83677750496768],[-87.73338274979434,41.8367798288453],[-87.73306123589602,41.8367818263427],[-87.73285517278224,41.83678588185243],[-87.73245306822662,41.83679379473661],[-87.73218776595787,41.8367965229251],[-87.73189853481995,41.83679956428867],[-87.73163786193497,41.836801643924595],[-87.73137524472955,41.83680373857518],[-87.73100604875073,41.83680718186339],[-87.73074034482562,41.836809685060324],[-87.73042740209918,41.8368133365259],[-87.73015306797743,41.83681653676037],[-87.7298482446917,41.836819161765504],[-87.72948621148664,41.83682184196342],[-87.72921161526298,41.83682668238845],[-87.72886986995856,41.83683270558685],[-87.72855674460935,41.83683624396737],[-87.7282120189172,41.83683640422145],[-87.72799428828355,41.83683966669933],[-87.72764021121407,41.83684497112896],[-87.72730214058572,41.83684763331411],[-87.72703710083161,41.83684972008156],[-87.72678454039134,41.83685288998808],[-87.72639377659804,41.836857793483865],[-87.726039890092,41.83686042353796],[-87.72579041181521,41.8368622601182],[-87.72556793392697,41.836866068907625],[-87.72531651341757,41.83687037280525],[-87.72509081036543,41.83687261857412],[-87.72485314149115,41.83687516385113],[-87.72468148934712,41.836877684714764],[-87.7245818643561,41.836879064565125],[-87.72435056187119,41.83688226768801],[-87.72434569308537,41.83664428848527],[-87.72434106487447,41.836447280020096],[-87.72434035947397,41.83641725424749],[-87.72433692222775,41.8362611422529],[-87.7243327485185,41.8361053002273],[-87.72432709098625,41.83588147504591],[-87.72432326991726,41.835719405661756],[-87.72432026167893,41.83558771964923],[-87.72431538076188,41.83536326738306],[-87.7243120807529,41.83520817119258],[-87.72430956348073,41.83506340775726],[-87.72430633376324,41.834877675723185],[-87.7243041489466,41.83474042318879],[-87.72430040009112,41.834501075504214],[-87.72429718142405,41.834341314461994],[-87.72429380718721,41.834178533892924],[-87.72429003022957,41.83401569629839],[-87.72428541030945,41.83382178908617],[-87.7242796461681,41.83358605311443],[-87.72427711963438,41.83348345887698],[-87.72427221656343,41.833285131869],[-87.72426933384037,41.833168516629364],[-87.72426856056596,41.833026947116586],[-87.7242687520552,41.83289442618692],[-87.72426873673676,41.83282083765383],[-87.72425917487314,41.83249410891185],[-87.72425195691086,41.83226075269185],[-87.72424744700325,41.83207461229118],[-87.72424414640413,41.83190025122194],[-87.7242435389498,41.83185912728731],[-87.72424130792905,41.83170810971794],[-87.72423795367563,41.83150457674486],[-87.7242291009502,41.83122472302689],[-87.72422067577655,41.83095837502673],[-87.72421747093793,41.83080879493318],[-87.7242135637265,41.83061711452561],[-87.72420744197724,41.83033008607577],[-87.7242067833717,41.830299198268605],[-87.72420501695255,41.83021637801481],[-87.72419956638643,41.82996077365145],[-87.72419537686216,41.829764317781695],[-87.72419087050059,41.82957001200905],[-87.72418899582176,41.829489170614366],[-87.72418430393496,41.82924871999965],[-87.72417835864812,41.82898164575043],[-87.7241755976188,41.82882106726593],[-87.72417446762189,41.82875522341991],[-87.72417281576041,41.82865897135788],[-87.7241682390516,41.82839225423396],[-87.72416635133747,41.82828225649701],[-87.72416163078451,41.828037140414764],[-87.7241562950432,41.827779397401414],[-87.72415183065067,41.82756918981597],[-87.72414783482516,41.82737144371025],[-87.72414442217844,41.82719732888755],[-87.72414032150134,41.826987425079736],[-87.72413603637966,41.826789238335685],[-87.72412720192723,41.82630092091125],[-87.72412598545623,41.82623367836988],[-87.72412037943752,41.82592381321126],[-87.72411971524352,41.825873474208315],[-87.72411692816492,41.82566225567631],[-87.72411516399765,41.82560487479168],[-87.72411415018264,41.82557190958013],[-87.72411312676142,41.82553860320411],[-87.72411121760464,41.82547650825765],[-87.72410980538625,41.82543057368605],[-87.72410746951839,41.82534510513487],[-87.72410392173045,41.82521525413542],[-87.7241013927745,41.825091909723625],[-87.72409948088898,41.82499867986272],[-87.72409798620335,41.82492518327464],[-87.72409643754125,41.82484902115957],[-87.72409643726542,41.82484901155315],[-87.72409396078139,41.82474060696989],[-87.72409025194176,41.82458668781084],[-87.72408945619132,41.824560483722514],[-87.72408323715479,41.82435566826811],[-87.7240818357432,41.82430952627746],[-87.72407909676383,41.82421774538486],[-87.72407786767091,41.82417657007298],[-87.72407653606159,41.824131966891755],[-87.724075738329,41.82410523753649],[-87.72407417823949,41.824036592468524],[-87.72407348443983,41.82400605982416],[-87.72407266544235,41.823970041258164],[-87.72407144921219,41.823916519243745],[-87.72407066168307,41.82388186420007],[-87.72406960159694,41.823835208092206],[-87.72406904777544,41.823810847241184],[-87.7240678004448,41.82375596225316],[-87.72406679465091,41.82371170657548],[-87.72406585127332,41.823670193857374],[-87.72406356094169,41.82356940587772],[-87.72406183475996,41.82349343737198],[-87.7240615479454,41.82348081190895],[-87.7240602305541,41.82342283045447],[-87.72405899070242,41.823368280029534],[-87.72405680171985,41.8232719734353],[-87.72411774757282,41.82325272890921],[-87.72437055362576,41.82317290035939],[-87.7245298774191,41.82312259051228],[-87.72522301043642,41.82290614403765],[-87.72557571760318,41.82279508106711],[-87.72611472729683,41.822625618355275],[-87.7265822389588,41.82247844345143],[-87.72666919365103,41.822450995368555],[-87.72674071429992,41.82242888017219],[-87.7272506943602,41.82225281167662],[-87.72748330801446,41.82219925647102],[-87.72764589257726,41.82214898171373],[-87.72833685785437,41.82192752381638],[-87.72885729714574,41.821764223794034],[-87.72899141071713,41.82172214181699],[-87.72950026349383,41.821561559235136],[-87.73011143272248,41.82136868361541],[-87.73114022292103,41.82104660329726],[-87.73119134605575,41.82103059801279],[-87.73182302928362,41.82083283251615],[-87.73191847972656,41.82080246276111],[-87.73196595837742,41.82078735628411],[-87.73211598057392,41.820739658459246],[-87.73239945711661,41.82064952962984],[-87.73291017931439,41.820488202360195],[-87.73335939905168,41.82034790206682],[-87.73364839569206,41.820257300067084],[-87.73393567249781,41.82016723612107],[-87.73433128812952,41.82004273375134],[-87.73435864385138,41.82003411502017],[-87.73442202372065,41.82001414634953],[-87.73445554358196,41.820003589617585],[-87.73483460155165,41.81988410353759],[-87.73504087949225,41.819818656839765],[-87.73559923812117,41.81964175863851],[-87.7357278184038,41.81960104120313],[-87.73594922920012,41.81953092674046],[-87.73605016781848,41.81949936005477],[-87.73613783134891,41.81947194496329],[-87.73649891739005,41.81935922062926],[-87.73667282431316,41.81930489439745],[-87.73681224538412,41.819261340682644],[-87.73798757328402,41.818886219064275],[-87.7381755019372,41.818826745524944]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10751827.1001","perimeter":"0.0","tract_cent":"1148003.82092199","census_t_1":"17031292500","tract_numa":"46","tract_comm":"29","objectid":"487","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890363.13402258","census_tra":"292500","tract_ce_3":"41.85510397","tract_crea":"","tract_ce_2":"-87.7322454","shape_len":"13387.3225629"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72495503309881,41.85886832655344],[-87.72494449165997,41.8584421328651],[-87.72494379364643,41.85841391900851],[-87.724927987382,41.85777486143134],[-87.72490481665544,41.857171550462276],[-87.72490732349151,41.857045680163495],[-87.7249088791934,41.856967563723366],[-87.72490236831325,41.85676374544463],[-87.72489377027044,41.856493550018186],[-87.72486892468856,41.855714597382445],[-87.72485080521533,41.85514775672996],[-87.72484987235632,41.85501382089521],[-87.72484903258604,41.854893299496624],[-87.72483628997468,41.85449888171672],[-87.72483321957742,41.8544116259456],[-87.72482955236717,41.854307406380876],[-87.724822776358,41.85405802692712],[-87.72481782574836,41.853896515477466],[-87.72481722465349,41.85387690537025],[-87.72481626611848,41.853845631357],[-87.72481470702179,41.85379476864412],[-87.7248090664625,41.8536107494913],[-87.72480486431199,41.85349648362966],[-87.72480174256803,41.8534114773161],[-87.72479815400308,41.85331376259757],[-87.72478453322657,41.85267902506044],[-87.72478546341831,41.852584764598994],[-87.7247862076261,41.85251012462232],[-87.72477503324554,41.85212760751727],[-87.72476514589532,41.85178915057108],[-87.7247614167027,41.85165056258711],[-87.72475892228239,41.85155785862082],[-87.72475861828482,41.85154656052897],[-87.72526969716797,41.851538403467764],[-87.7267935270934,41.85151786241059],[-87.72718317899304,41.851511106300954],[-87.7279877453563,41.8514971516369],[-87.72819839182581,41.85149349708786],[-87.72960561806751,41.851478436353226],[-87.73099525001896,41.85145735798101],[-87.73124234407155,41.8514525429277],[-87.73206312134197,41.85143654450658],[-87.73232888807141,41.85143136328227],[-87.73240864143214,41.85142980828599],[-87.73341936977218,41.85141470137544],[-87.7338262226742,41.851408618228284],[-87.73450128063219,41.85140014196573],[-87.73525652301961,41.851390654486174],[-87.7356128311405,41.85138466431326],[-87.73669963125884,41.8513663845741],[-87.73691754054991,41.85136633796217],[-87.73837368523083,41.8513660175139],[-87.73865580872243,41.85136070000786],[-87.73891086623564,41.85135697089259],[-87.73917538371325,41.85135290952002],[-87.73932135207137,41.851351559148995],[-87.73950453479733,41.851348022281094],[-87.73951203599944,41.85155300290762],[-87.73952369879373,41.85187128739326],[-87.73952527554349,41.85191514886639],[-87.73953657713142,41.85222503511719],[-87.73954319909329,41.85240608064601],[-87.7395545524095,41.85271832692775],[-87.73955620210413,41.85276224255875],[-87.7395678483066,41.85308255928884],[-87.73957446931351,41.85326360505875],[-87.73958706766264,41.85360790988586],[-87.73958864484406,41.85365177217058],[-87.73960124456809,41.85399602154626],[-87.73960786536657,41.8541770672848],[-87.73962046400477,41.85452137342798],[-87.739622041242,41.854565233784676],[-87.73963464125002,41.85490948502525],[-87.73963791395911,41.855000062844965],[-87.73964118806323,41.855090530351085],[-87.73970121383819,41.856736847544695],[-87.7397079081568,41.85691789357244],[-87.73975383045236,41.85817626528683],[-87.73975547954748,41.85822007247253],[-87.73976794759864,41.858563003909616],[-87.73977122656981,41.858652978238474],[-87.739317470256,41.85866089552657],[-87.73907376217028,41.85866476079223],[-87.73879689903899,41.858669150956466],[-87.73857507470464,41.858672668233105],[-87.73851844122422,41.858672870004426],[-87.7383950863781,41.85867330957245],[-87.7382046717027,41.85867398771261],[-87.73806311061175,41.85867702113311],[-87.73736725311977,41.85869192873426],[-87.73717637016252,41.858692389510416],[-87.73703884965063,41.85869272115951],[-87.73609739475314,41.85870706687109],[-87.73595460190421,41.858710575099884],[-87.73579594724865,41.85871447263985],[-87.73492739724054,41.858728611472785],[-87.73473520139622,41.858730220800204],[-87.73451931114981,41.858732027896195],[-87.73411901547286,41.85873849780947],[-87.73406082335161,41.8587394381588],[-87.73364910917938,41.85874612100487],[-87.7335103359123,41.85874764497051],[-87.73335272912489,41.85874937554487],[-87.73289846371269,41.85875662594514],[-87.73243050454329,41.858764093245334],[-87.73228753809921,41.85875846887399],[-87.73221165421181,41.858755483615],[-87.73121749015921,41.858780874387534],[-87.73106362841808,41.85878247106852],[-87.73094519480428,41.85878370012627],[-87.73045256744565,41.85879107471047],[-87.72999907704799,41.858797861338964],[-87.72984065895787,41.858799847377675],[-87.72972604178504,41.85880128403691],[-87.72877661766682,41.85881566478389],[-87.72862116529512,41.85882177098611],[-87.72852896203788,41.85882539281062],[-87.72757330539254,41.85883108637204],[-87.72739614340695,41.85883438127296],[-87.72727213037624,41.8588366874331],[-87.72627438182737,41.85884873428071],[-87.72617961683686,41.85885107831918],[-87.72606597396201,41.85885388942851],[-87.7251224537435,41.85886876514614],[-87.72495503309881,41.85886832655344]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"17853218.6339","perimeter":"0.0","tract_cent":"1168421.38064865","census_t_1":"17031610200","tract_numa":"53","tract_comm":"61","objectid":"489","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1876831.37341631","census_tra":"610200","tract_ce_3":"41.81755486","tract_crea":"","tract_ce_2":"-87.65769449","shape_len":"21246.9616277"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64579493972272,41.818755248326376],[-87.64579267165743,41.81865192659457],[-87.64579213268658,41.81862737557206],[-87.64656790997142,41.81861769159825],[-87.64702699079145,41.81861124213],[-87.64748453171973,41.81860469930396],[-87.64779744118081,41.81859967908584],[-87.64806285420842,41.818597009172564],[-87.64817570220133,41.81859090563852],[-87.64831301194235,41.81859938824252],[-87.64878791617143,41.81862872497717],[-87.64887694820933,41.818634224584315],[-87.64900896063277,41.81866494017738],[-87.64929181871048,41.81869194995329],[-87.64942727625427,41.81868815164768],[-87.64967885829068,41.81869379669453],[-87.64999537124166,41.81868802353926],[-87.65040670132461,41.818680261102806],[-87.65067813817653,41.81867529765842],[-87.65094469263558,41.81867042312025],[-87.6511778250603,41.8186674993489],[-87.65163671503466,41.81866174383271],[-87.65189160494492,41.818658547893754],[-87.6519694258131,41.81865757071522],[-87.65231626230955,41.81865323339833],[-87.65263268274033,41.818649263646414],[-87.65297988593197,41.81864489905568],[-87.65318748647972,41.818642310927174],[-87.65329626933121,41.818640954698864],[-87.65389535315,41.81863346787978],[-87.65440153558797,41.81862724008886],[-87.65463870268258,41.818624360582106],[-87.655132472959,41.81860413398203],[-87.65540597545541,41.81859292915993],[-87.655399378259,41.81850938115297],[-87.65539588141768,41.81823275089326],[-87.65539243867401,41.81805481930009],[-87.65538908299764,41.81783037277105],[-87.65538564356599,41.81755125979837],[-87.65538212563249,41.81738174799691],[-87.65538111942124,41.817333255397834],[-87.65537878173411,41.81725855370685],[-87.65536965070095,41.816966744757366],[-87.6553603013713,41.816677552816515],[-87.6553468644838,41.81646632902054],[-87.65533758154888,41.81621610614687],[-87.6553329726325,41.81598212402602],[-87.65532898080282,41.8157794412498],[-87.65532154194894,41.815496956554966],[-87.6553217136439,41.815148589122366],[-87.65532173493922,41.81510650221909],[-87.65530611091036,41.81462618924418],[-87.65529500123489,41.814205843894186],[-87.65529313223811,41.814135134281756],[-87.65528510286018,41.813832146278486],[-87.65527215825718,41.81336219493145],[-87.65527113721993,41.8133226304385],[-87.65526440155881,41.81306153893569],[-87.6552510651815,41.81255884818872],[-87.65524980132878,41.81251465787643],[-87.65524562540432,41.81236973514952],[-87.65524060757528,41.81219393488547],[-87.6552341824479,41.811968454624626],[-87.65522791889063,41.81174849130504],[-87.65522275712954,41.81157013771988],[-87.65521598222585,41.81134649403476],[-87.6552096931379,41.811132403293215],[-87.65520432245648,41.81094952039765],[-87.65519905704633,41.81077756034135],[-87.65519718472943,41.81071163174634],[-87.655198478271,41.81059507592636],[-87.65519847848518,41.81059505561998],[-87.65520023683706,41.81054123288225],[-87.65520786704653,41.8103596040132],[-87.65523632969777,41.810085014964],[-87.65525205249482,41.80993323944954],[-87.655259314597,41.809863742319564],[-87.65526233740013,41.80952838196781],[-87.65525928506136,41.8094352505994],[-87.65525466995588,41.809232887738645],[-87.65525184570586,41.80905545348774],[-87.65524210841241,41.80892142034748],[-87.65524173155681,41.808878444921405],[-87.65524133392545,41.80883316143434],[-87.65524046485282,41.80873418528035],[-87.6555674373416,41.808728880772996],[-87.65588330141905,41.80872432240424],[-87.65629944283842,41.80872029934723],[-87.6564595383668,41.80871805945598],[-87.65661956053135,41.80871581890936],[-87.65688884734979,41.8087105991759],[-87.6572067777895,41.808704786967425],[-87.65752474551633,41.808698946655404],[-87.65767198074487,41.80869885227905],[-87.65791469424182,41.80869868796397],[-87.65813653208654,41.808695546383625],[-87.65833982728473,41.80869265985781],[-87.65843728024952,41.80869127633923],[-87.6585565863092,41.80868948871999],[-87.65875567674868,41.808686505407074],[-87.6588956294833,41.808684767878795],[-87.65904680741171,41.8086828907999],[-87.65928665743482,41.808679523688305],[-87.6596312805014,41.80867471184581],[-87.6599485702958,41.80867056229999],[-87.66010587278643,41.80866874086063],[-87.66016363053058,41.80957400214183],[-87.66017780378802,41.80979614066274],[-87.66022223957594,41.81049258320503],[-87.66040296446248,41.81048936099447],[-87.66058640443178,41.810486072072315],[-87.66080352390493,41.810482184205],[-87.66102636640723,41.81047821965176],[-87.6611486109091,41.81047601404528],[-87.66117348536147,41.81047556793404],[-87.66137273073608,41.81047270394405],[-87.66152897865693,41.81047045753801],[-87.66185618849741,41.81046556491202],[-87.66197831826267,41.81046376884452],[-87.66225545018776,41.8104596927259],[-87.662588199933,41.810455251076505],[-87.66290186108384,41.810451063142004],[-87.66319314706169,41.81044737143501],[-87.66355083537198,41.81044282906542],[-87.66367898253338,41.81044089695346],[-87.66380419474014,41.810439009063764],[-87.66410605409382,41.810434456786645],[-87.66439066921838,41.81043029671739],[-87.66467704547125,41.81042609130874],[-87.66502054019294,41.81042158440968],[-87.66502700743655,41.81070958105298],[-87.66503399015936,41.8109941484124],[-87.66504156668721,41.81130275908494],[-87.66504738838903,41.811540227856696],[-87.66505385026643,41.81180080715922],[-87.6650636423047,41.81222247404512],[-87.66507205187247,41.812572219624805],[-87.66507472339433,41.812686424535904],[-87.66508526370421,41.81309466960903],[-87.6650948994116,41.81346632790769],[-87.66510444442804,41.81383620242346],[-87.66510915214448,41.81405993224955],[-87.66511549377415,41.81436130165921],[-87.66512182382657,41.81461342769469],[-87.6651292439861,41.81495831658919],[-87.66514093433055,41.81529472304773],[-87.66514481527075,41.8157189557647],[-87.66514819189145,41.81587079723931],[-87.66515181478367,41.81603371000086],[-87.66515499478494,41.816204257774324],[-87.66516335530967,41.8165751677718],[-87.66517167828313,41.81694613241219],[-87.66517448428365,41.8170744586846],[-87.66517615511248,41.81715088356317],[-87.66517809360931,41.817239532723725],[-87.66518557445126,41.81762097555186],[-87.66518753201699,41.81770987427058],[-87.66519454631177,41.81802838786443],[-87.66519954777775,41.81822707526067],[-87.66519979110006,41.81823673624757],[-87.6652021899987,41.81833491920858],[-87.6652034897732,41.81838810586656],[-87.66520385998308,41.81840327699645],[-87.66520915903502,41.818620138420165],[-87.66521815084114,41.81899039330625],[-87.66522521035074,41.819285306609935],[-87.66522901126356,41.819448166247],[-87.66522942717104,41.8194660006832],[-87.6652307499405,41.8195329664632],[-87.66523370237101,41.819682479871275],[-87.66523730618405,41.819831339810534],[-87.6652399750531,41.8199415703033],[-87.66524240190489,41.82003933160254],[-87.66524523280754,41.82013919846138],[-87.66524899827805,41.820262027425116],[-87.66525619726656,41.820426610717284],[-87.66527186393525,41.82075115727164],[-87.66530656894535,41.82129735447842],[-87.665323548985,41.821704751900654],[-87.6653448613574,41.822035475634],[-87.66542764424031,41.822575495818995],[-87.66546287996262,41.822927458506065],[-87.66546210822075,41.82310417197556],[-87.66546190791684,41.82315003006822],[-87.66536958671989,41.823151171359044],[-87.6653082590457,41.82315192943168],[-87.66491464489594,41.82315679418333],[-87.66418003504388,41.82316728118501],[-87.66339867716397,41.82317842389702],[-87.66269623892583,41.82318574102842],[-87.66195425093653,41.82319301480242],[-87.66129689260427,41.82319776025647],[-87.66101554626015,41.82319966822325],[-87.66086856200458,41.82320068708756],[-87.6605639536393,41.82320274535981],[-87.66018970581817,41.82320527290222],[-87.65997584916542,41.82320759851233],[-87.65764957388218,41.82326745335612],[-87.65761015283245,41.8232688232885],[-87.65705619898478,41.82328807441881],[-87.65698323500347,41.82329060972298],[-87.65653272552566,41.823303600671196],[-87.65629966894643,41.823310320631194],[-87.65611232130217,41.82331366632464],[-87.65598015241449,41.82331602672419],[-87.65472613561525,41.82333841210935],[-87.65453762659995,41.82334248960029],[-87.65395340680523,41.82335512393377],[-87.65333000485629,41.8233686026631],[-87.65321973987672,41.82336829314357],[-87.65271303345102,41.823366869490144],[-87.652094888271,41.82337549938656],[-87.65184155380022,41.82337902166328],[-87.65160531861346,41.82338230951803],[-87.65134787441269,41.82338588562356],[-87.65115471773039,41.82338858060863],[-87.65078655219989,41.82339252638165],[-87.65043972414989,41.82339624217494],[-87.65019769140598,41.82339966034122],[-87.64987544447241,41.823404247302705],[-87.64947261777965,41.823409945322325],[-87.64900642294619,41.82341630724088],[-87.64854008393269,41.823422419423025],[-87.64834113590224,41.82342503206401],[-87.64807444189266,41.82342853386953],[-87.64766449954142,41.823433990996996],[-87.64724970768503,41.82344013120557],[-87.64694245072401,41.8234461441639],[-87.64661298734387,41.823449608581996],[-87.64634715489018,41.82345191584836],[-87.64592818941182,41.823459057893274],[-87.64591993042974,41.823330642732124],[-87.64591220639524,41.82308893601545],[-87.64590883004291,41.82290724507207],[-87.64590056689073,41.82270908669306],[-87.64589778721522,41.822540215054865],[-87.64589543868452,41.82236533603797],[-87.64588377104376,41.821955892275334],[-87.64587819812849,41.82176032683415],[-87.64587102637095,41.82150865176974],[-87.64586001463289,41.82112221600343],[-87.64585530515782,41.820958848754934],[-87.64585007448468,41.82079619189296],[-87.6458487600473,41.82059324510869],[-87.6458442325606,41.82039568530293],[-87.64584009012852,41.82028567007974],[-87.64583371880414,41.82011647500319],[-87.64582823821912,41.819936033735935],[-87.64582293313376,41.81976662548866],[-87.64581965566886,41.81963405750984],[-87.64581517998639,41.819417946697605],[-87.64581234481246,41.819319245683],[-87.6458066309019,41.81912310575333],[-87.64580086470929,41.818961762883745],[-87.64579924545502,41.81891645100965],[-87.64579725687388,41.8188608066581],[-87.64579493972272,41.818755248326376]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3217372.48702","perimeter":"0.0","tract_cent":"1160730.3471504","census_t_1":"17031590400","tract_numa":"20","tract_comm":"59","objectid":"493","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1881127.18147164","census_tra":"590400","tract_ce_3":"41.82950554","tract_crea":"","tract_ce_2":"-87.68578876","shape_len":"10675.2354773"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68445927144815,41.830288759869454],[-87.68444744170903,41.8298177282771],[-87.68442889076925,41.82929039399684],[-87.68441690989923,41.828949817504665],[-87.6844051594167,41.828460190794466],[-87.68439044080313,41.82784685529267],[-87.68437970030065,41.82741619650878],[-87.68437910223436,41.82739221945025],[-87.68437910150229,41.827392182947314],[-87.68437845408191,41.82736622644139],[-87.684377815377,41.8273406058834],[-87.68437723010116,41.827317142624416],[-87.68437689918574,41.827303878789166],[-87.68437424762153,41.827197570768895],[-87.6843677727176,41.826937934340364],[-87.68435273778385,41.82640414344605],[-87.68434897056716,41.82628384511947],[-87.68433869195556,41.82595556773494],[-87.68432887331832,41.82556184643022],[-87.68431973384517,41.82523163139728],[-87.68430744016315,41.82481413065731],[-87.68430631134687,41.824771797717425],[-87.68429538593766,41.82436199824315],[-87.68428459688585,41.823988112711405],[-87.68426149763265,41.82355070945078],[-87.68424896263153,41.823186254298015],[-87.68423972710931,41.822999793227325],[-87.68443177635747,41.823000329468464],[-87.68456740500386,41.82300278331737],[-87.68468242952991,41.82300490962039],[-87.68473019095555,41.823005792393396],[-87.68473517510544,41.82300546048841],[-87.68485091451839,41.822997751067106],[-87.68487677144577,41.82299602874088],[-87.68494955485417,41.82299118048231],[-87.68502105770548,41.822986417432006],[-87.68507777956701,41.82298296501057],[-87.68546079600854,41.822966281598276],[-87.6855081681335,41.822965492236],[-87.6858926888902,41.82295908438975],[-87.68608030540267,41.82295560957585],[-87.68606557979025,41.82301947228609],[-87.68607003887104,41.82317410977817],[-87.68607693033083,41.82330897503606],[-87.68607901862421,41.823349848758774],[-87.6860914761,41.82359196385611],[-87.68610162361252,41.82379015755661],[-87.68611287596713,41.82400987257528],[-87.68612206787412,41.82416088682388],[-87.68611989369525,41.82419465657299],[-87.6861226508026,41.82426333381603],[-87.68612369811927,41.82427588104425],[-87.68613046801904,41.82431409202499],[-87.68614351066357,41.82435233834829],[-87.68615865570973,41.824374981602965],[-87.68619717708164,41.8244189149016],[-87.68626103290791,41.82448283200022],[-87.68628288869556,41.82450461456703],[-87.6863406202018,41.82456215099046],[-87.68645529721255,41.824676464373056],[-87.68666755611036,41.82488596932959],[-87.68647722448071,41.82500579080289],[-87.68638614584239,41.82506068499533],[-87.6863227802148,41.82509887605732],[-87.68619315175492,41.82517700439885],[-87.68616235291279,41.82519556739524],[-87.68610957633112,41.82522636592726],[-87.68617074633686,41.82531291860987],[-87.68622092180317,41.82538558147957],[-87.68625166066,41.825430006041465],[-87.68645047319302,41.82572613514228],[-87.68659727597672,41.8259495908826],[-87.68667416445177,41.826102330875145],[-87.68680765864013,41.82641798755236],[-87.68686096924503,41.8265438380447],[-87.68685898953647,41.82664948109326],[-87.68693631015518,41.826642395840686],[-87.6870035907301,41.82663623045364],[-87.68723163081447,41.82662619354841],[-87.68735751022318,41.826622436889586],[-87.68743774675751,41.82840494057452],[-87.68731861485864,41.83023888134277],[-87.68735537506686,41.830238232422936],[-87.68737048156825,41.83078900427805],[-87.68737697801103,41.83114648195227],[-87.68737698013514,41.83114659914453],[-87.68739274725753,41.83204154524686],[-87.68739278712805,41.83204374747274],[-87.68741513420477,41.83328208127162],[-87.68742315788855,41.83371572082965],[-87.68743849017923,41.83424373540068],[-87.68744321117875,41.83441287747596],[-87.68744834947042,41.834586138569236],[-87.68745140831939,41.834692495882386],[-87.68739948177172,41.834800982818116],[-87.6873994313396,41.83480099872568],[-87.6868462522395,41.834975249904886],[-87.68602946804945,41.83523983496435],[-87.68522097558244,41.83550029518283],[-87.6849949797753,41.83557309932494],[-87.68457795013396,41.83570744341449],[-87.68457556863329,41.83562477756902],[-87.684574732049,41.83559573876892],[-87.68457159527232,41.835486884502146],[-87.68456932219827,41.83541150584495],[-87.68456665702095,41.83531547271213],[-87.68455872146033,41.83504004200547],[-87.68455498909626,41.8345702846047],[-87.68455674389084,41.83439652746996],[-87.68455889939598,41.83418309047689],[-87.6845608747079,41.834176837018994],[-87.68462895063001,41.83396131018266],[-87.68464392446353,41.83393421085289],[-87.68473009448248,41.833778262935745],[-87.68477580658386,41.83369553410941],[-87.6848074096607,41.83363100983878],[-87.68470886793554,41.833329262539046],[-87.68470041401777,41.833266782690124],[-87.68468525716743,41.83320368869048],[-87.684661775845,41.8329962543064],[-87.68465242035232,41.832658134730806],[-87.68464731974709,41.83239911143286],[-87.68464124381764,41.83211138250012],[-87.68445309671849,41.83210250188796],[-87.6844508454817,41.832005726516336],[-87.6844456172034,41.831709617503364],[-87.68446737165543,41.83061132210111],[-87.68445927144815,41.830288759869454]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1709798.49711","perimeter":"0.0","tract_cent":"1171068.8996747","census_t_1":"17031063400","tract_numa":"7","tract_comm":"6","objectid":"837","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919527.73555214","census_tra":"063400","tract_ce_3":"41.93465916","tract_crea":"","tract_ce_2":"-87.64672973","shape_len":"5166.49888989"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64864612894111,41.93272833707669],[-87.64901192377404,41.932719973981456],[-87.64902743112886,41.933150338568744],[-87.64902991607053,41.93322228155595],[-87.64904373683713,41.933622413969914],[-87.6490518485018,41.93385725767474],[-87.64906317195923,41.93413882711186],[-87.6490768255794,41.93454389997723],[-87.64907874173365,41.93460074443441],[-87.64909261672258,41.93504591188756],[-87.64910364973505,41.9353510046164],[-87.64910751731868,41.93545796243151],[-87.64911197582516,41.93558125927215],[-87.64911936724884,41.93578566550017],[-87.64912457292603,41.93596944934565],[-87.64912669219645,41.93602187653362],[-87.64914092824478,41.93637901866062],[-87.64877829430576,41.93639806281112],[-87.64823555849006,41.936408491842506],[-87.64782334354207,41.936426315611556],[-87.64734160138504,41.93644714400754],[-87.64705843555645,41.93645191583275],[-87.6468756123578,41.936455060543736],[-87.64656352963823,41.936461455171035],[-87.64598904745957,41.93647105388827],[-87.64559608510318,41.93647761808954],[-87.64514334067667,41.93648619391489],[-87.64488619916085,41.93649106394988],[-87.64427925701801,41.93651289681435],[-87.64427377321755,41.936384065440386],[-87.64427286418682,41.936362704211746],[-87.64426718854999,41.93622936677572],[-87.64426238757574,41.93602464651396],[-87.6442604112721,41.93594036000974],[-87.64425762124141,41.93583436158571],[-87.64424961108178,41.93558829440648],[-87.6442474755336,41.935522695062346],[-87.64424185768043,41.935350131555595],[-87.64424005553447,41.93529477041635],[-87.64423702315183,41.93513945693115],[-87.64422416900996,41.9348751393158],[-87.64421445466067,41.93467538399226],[-87.64421377811358,41.934628947761894],[-87.64421263078452,41.93455116973469],[-87.64420856096532,41.93446492197392],[-87.64421004971591,41.9344256337051],[-87.64421972783781,41.93436306873286],[-87.64426481623309,41.93425234888194],[-87.644266348873,41.93424858532871],[-87.64430411309637,41.93418185303583],[-87.64435326460854,41.93409799680816],[-87.64438573082121,41.934042607205456],[-87.6444264195252,41.933980722242005],[-87.64444667433632,41.93394955967987],[-87.6445031046405,41.933862686977605],[-87.64458432883129,41.93373940998805],[-87.6446629791468,41.933604742439464],[-87.6446798041091,41.93357593328519],[-87.64469919653752,41.933518492079926],[-87.64469992348168,41.93351633975845],[-87.64473230548968,41.93341005828526],[-87.64478149933545,41.93324756625246],[-87.64479732371562,41.93318841977707],[-87.64486688686918,41.9329284042291],[-87.6448881565296,41.9328267761249],[-87.64488707311855,41.932811430542344],[-87.64488636028918,41.932801335775],[-87.64488630958121,41.93280061730884],[-87.64488647205489,41.93280061416671],[-87.64538762794223,41.932790335435435],[-87.64604375872122,41.932778814904005],[-87.64658118037897,41.932767597938025],[-87.64666885134581,41.932765768020005],[-87.64713918672436,41.93275594879398],[-87.64766681051992,41.932746758460986],[-87.64807416152989,41.93273966132325],[-87.64836209292437,41.93273396095639],[-87.64864612894111,41.93272833707669]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10619312.1116","perimeter":"0.0","tract_cent":"1157052.75067117","census_t_1":"17031580500","tract_numa":"50","tract_comm":"58","objectid":"490","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1876640.1353407","census_tra":"580500","tract_ce_3":"41.8172678","tract_crea":"","tract_ce_2":"-87.69940332","shape_len":"13263.8561043"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.703792368008,41.81176385038192],[-87.70411757689929,41.811758579141475],[-87.70412248510513,41.811867032798446],[-87.70412636192827,41.81196565600767],[-87.70413247348628,41.81212079617552],[-87.7041392589857,41.812293283877736],[-87.70414580908151,41.812459842641225],[-87.70415350722234,41.81265527750787],[-87.70415893980385,41.812792960320095],[-87.70416340778989,41.81290679005803],[-87.70416884315179,41.8130448296354],[-87.70417676476531,41.813247428273634],[-87.70418366205743,41.813419120985806],[-87.70418514194661,41.81345595704231],[-87.70419022969499,41.81357843436531],[-87.70419490959442,41.81369108575629],[-87.70420074860522,41.81382432503635],[-87.70420240628349,41.81386215000422],[-87.70421115467796,41.814113090592166],[-87.70422202673429,41.81442494438003],[-87.70423365002443,41.814654155298676],[-87.70423946501869,41.81481126799929],[-87.70424159947424,41.814868938625374],[-87.70424841269445,41.81505363843055],[-87.70425863038403,41.81533278748772],[-87.70426241005651,41.81542094397387],[-87.70427060700878,41.815612138262715],[-87.70427798756658,41.81578386071475],[-87.70428703273183,41.815995411749405],[-87.70429521474722,41.81618645829381],[-87.70429883199988,41.816297182267846],[-87.70430455861126,41.81647246320178],[-87.70431090963493,41.816640694756096],[-87.7043218307043,41.81692673572006],[-87.70432684656706,41.81711145305611],[-87.7043311303594,41.81719973219864],[-87.70434113407696,41.81740588247506],[-87.70435822677065,41.81783185632055],[-87.70436366679051,41.81796742979076],[-87.70436696537112,41.81809195624568],[-87.7043717842025,41.818273845584514],[-87.70437768207319,41.818417184012006],[-87.70438337527109,41.81855519741825],[-87.70438852739919,41.818681023270166],[-87.7043949345753,41.818836055093584],[-87.70439946791436,41.81898860652942],[-87.70440473244385,41.81916575122998],[-87.70440724403355,41.819229445640595],[-87.70441014049814,41.81930288488757],[-87.704416288465,41.81945813481616],[-87.70442399994654,41.819653623840644],[-87.70442405807705,41.8196551066169],[-87.70442422546158,41.81965933371864],[-87.7044342056236,41.81989119736365],[-87.70443839402512,41.81998850488053],[-87.70444623094915,41.82017740885925],[-87.70445209027574,41.82032096656732],[-87.70445709912856,41.820442899387444],[-87.704462887196,41.82058230817672],[-87.7044705238765,41.8207891031666],[-87.70447599637937,41.82093729684083],[-87.70448349627286,41.8211232079554],[-87.70448922447588,41.82126514579806],[-87.7044947799407,41.82140228020947],[-87.70450589691171,41.82168609940709],[-87.70451113058901,41.82181971909963],[-87.70451588500006,41.8219337423155],[-87.70452055218948,41.82204543241771],[-87.70452424712255,41.82213365336956],[-87.70452810617165,41.822225800080446],[-87.70452442593594,41.82232446433466],[-87.7045158567632,41.822394094289116],[-87.70443962230226,41.82258990218221],[-87.70420494628053,41.822594452780535],[-87.70392287512726,41.822599640034284],[-87.7038462192328,41.82260104957715],[-87.7037902597353,41.822602054107996],[-87.70364711480553,41.82260462353685],[-87.70337667592236,41.82260950740413],[-87.70312186877686,41.822614119918185],[-87.70286706160981,41.822618731043505],[-87.7026120342885,41.822623341217906],[-87.70256359708158,41.82262421603592],[-87.70237315259386,41.822627655042794],[-87.70200627825194,41.82263790995114],[-87.70177500939512,41.822644373622964],[-87.70164008062163,41.822647089457895],[-87.70141711948729,41.8226515986179],[-87.70133723412603,41.82265320167525],[-87.7012174968963,41.82265560459863],[-87.70099394873253,41.82266010998101],[-87.70078973898698,41.8226642269049],[-87.700598005735,41.82266808315454],[-87.70035089944248,41.82267306097888],[-87.70016826637053,41.822676719399446],[-87.70011190188349,41.82267785602154],[-87.69992882894321,41.822681546763164],[-87.69953679046986,41.822689104213296],[-87.6993001321315,41.82269366568449],[-87.69905328238134,41.82269861469005],[-87.69881443179798,41.82270344269642],[-87.6984872193403,41.82270997702012],[-87.69820121536462,41.822715723442975],[-87.69789789116103,41.82272181214873],[-87.69770861647817,41.822725587711865],[-87.69764476627735,41.82272688806892],[-87.69749651689717,41.82272985462866],[-87.69729344432159,41.82273394446199],[-87.69708826550989,41.82273736172287],[-87.69684085864839,41.822741481525725],[-87.69662189701695,41.82274583888155],[-87.69637956068452,41.822750669944604],[-87.69612265666596,41.822755748996435],[-87.69590424588513,41.82276008059703],[-87.69571702618222,41.82276378908848],[-87.69547729526987,41.82276855038201],[-87.69525187582666,41.82277303392121],[-87.69519767676047,41.822774108260404],[-87.69491559939392,41.82277970009097],[-87.6946272319414,41.82278623705652],[-87.69464742380127,41.82253451744563],[-87.69464574068908,41.82236054881623],[-87.69464488325511,41.822339472687226],[-87.69464028597551,41.82222646068513],[-87.69463410608482,41.82205090253171],[-87.69462962672715,41.82189357800667],[-87.6946227928693,41.821653551000125],[-87.694617449226,41.82150091217237],[-87.69461050365324,41.82130273691398],[-87.69460582191924,41.8211684060705],[-87.69460080087046,41.821032042299045],[-87.69459406380918,41.820849071741264],[-87.69458827893767,41.82067439390863],[-87.69458780259828,41.820660011258305],[-87.69458111197453,41.8204579405166],[-87.69457490524468,41.8202703073464],[-87.69457006032715,41.820129115430774],[-87.69456640957351,41.82002273415068],[-87.69455305748973,41.819633623721764],[-87.69455223047548,41.81960063293006],[-87.69454780206415,41.81942562423225],[-87.69454737052993,41.819408506608276],[-87.6945440663726,41.81928098890902],[-87.69454100663127,41.819162913423774],[-87.6945345789654,41.81893850568404],[-87.69452755101342,41.81869329298472],[-87.69452089922825,41.818469295621206],[-87.69451631458442,41.818319432371176],[-87.69451275829242,41.81820319276932],[-87.69450459587199,41.81794663959263],[-87.69449436149092,41.81764756658652],[-87.69448853207041,41.81747741646182],[-87.6944821550002,41.81735993610915],[-87.69447715221575,41.817267772489046],[-87.69446845298454,41.816984048491435],[-87.69446394969567,41.81676168213187],[-87.69445770353026,41.81654858172646],[-87.6944461856288,41.81617568017478],[-87.6944414088262,41.816013878462385],[-87.69443776003676,41.81589028336013],[-87.69443150351115,41.81564501993208],[-87.69442687961349,41.81554372625791],[-87.69442216477678,41.8154404369862],[-87.69441603992242,41.81520038839837],[-87.69441395783942,41.81513346254565],[-87.69440622582917,41.814884933968585],[-87.69439654088744,41.8146082020014],[-87.69439016106506,41.81439378351685],[-87.69438237870713,41.81410641430869],[-87.69437767746312,41.813915111965166],[-87.69437117050582,41.813735787676485],[-87.69436731098602,41.81362942981094],[-87.69436116676987,41.813413503246224],[-87.69435526174932,41.81321042122769],[-87.69434584191524,41.81292178048188],[-87.69433944084874,41.8127387563644],[-87.69432942063573,41.81245181370714],[-87.69432136269653,41.812122126082286],[-87.69431482907501,41.81191318258148],[-87.69462739634501,41.81190845708463],[-87.69492841471742,41.81190246647983],[-87.69521721209135,41.811896696444656],[-87.6955382698558,41.8118904684095],[-87.69568793198822,41.811887564869124],[-87.69608162445566,41.8118816539649],[-87.69614966839283,41.8118807608234],[-87.69633883495067,41.81187827808686],[-87.69676469851615,41.81187473262281],[-87.69687703995899,41.81187379692239],[-87.69723390364929,41.8118678426632],[-87.69737484211426,41.811865480008635],[-87.69758214661208,41.81186200424058],[-87.69781606868868,41.81185814763799],[-87.69798969321383,41.81185471449142],[-87.69813475187907,41.81185166923644],[-87.69839391843404,41.81184706464664],[-87.698602049402,41.81184398376345],[-87.69868550891981,41.81184274838742],[-87.69896909286545,41.811839429998656],[-87.69921531034485,41.81183540929889],[-87.69932577186582,41.81183360543355],[-87.69957355507978,41.81183019772123],[-87.69974180080804,41.81182791503441],[-87.69982265954685,41.81182667875706],[-87.69994097688631,41.81182486959986],[-87.70025616212766,41.81181969151111],[-87.70043306479702,41.81181621016774],[-87.70056556054534,41.81181360251101],[-87.70081972433421,41.81181039191449],[-87.7009882259386,41.81180819113908],[-87.70104396216881,41.8118073412325],[-87.70116410532329,41.811805509306],[-87.7014315663436,41.81180042209532],[-87.70165098475331,41.81179659727225],[-87.70175229437486,41.81179483130673],[-87.70206112271313,41.81179073846741],[-87.70219092020788,41.81178900929125],[-87.70225979094805,41.8117883980868],[-87.70236664175395,41.81178744962967],[-87.70255813672742,41.8117858670931],[-87.7026828068246,41.811783313364224],[-87.70287286509475,41.811777264607095],[-87.70299315904319,41.811773435954585],[-87.70329508308221,41.81177015263695],[-87.70344780680469,41.81176841056954],[-87.70347847570551,41.81176800710359],[-87.70360093668816,41.811766396097696],[-87.703792368008,41.81176385038192]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1971910.20687","perimeter":"0.0","tract_cent":"1160549.65948196","census_t_1":"17031580800","tract_numa":"5","tract_comm":"58","objectid":"491","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1874097.45751724","census_tra":"580800","tract_ce_3":"41.81021887","tract_crea":"","tract_ce_2":"-87.68664582","shape_len":"5640.07077192"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68396335631695,41.812063352197974],[-87.68395426261257,41.811687746536265],[-87.68395068910294,41.8115149462705],[-87.6839472973312,41.81132052238384],[-87.683942081123,41.81115303699598],[-87.68392812987018,41.81070509178254],[-87.6839215543032,41.81046635720153],[-87.68391334494463,41.810164220519496],[-87.68391170250712,41.810100726720094],[-87.68390775230398,41.80994802200747],[-87.68389936242622,41.8096238202685],[-87.68388828012297,41.80931197999081],[-87.68388417420367,41.80919554470034],[-87.6838824779303,41.808869596705506],[-87.68388279281479,41.80871858075371],[-87.68387670448809,41.80855506956381],[-87.68387370344259,41.80841735147619],[-87.6840463363645,41.808418347686604],[-87.68420498591146,41.8084175156897],[-87.68431053453581,41.80841912747157],[-87.68442535589212,41.80842575155067],[-87.68454203366612,41.80843248259871],[-87.68472513168625,41.80843229016868],[-87.68481247786056,41.80843219851993],[-87.68504462743647,41.80842834994336],[-87.68510260840183,41.80842781819087],[-87.68531887176024,41.8084258355343],[-87.68552921704122,41.808423646481096],[-87.6857655701364,41.808417569568164],[-87.68600249916949,41.80841264801212],[-87.68622558386599,41.8084092396611],[-87.68669450552945,41.80840142458443],[-87.68688420770103,41.80839849443986],[-87.68722186192598,41.808393277655824],[-87.68753911136827,41.80838916143258],[-87.6879147993619,41.80838430242248],[-87.68810216025025,41.80838066802253],[-87.68830423263861,41.80837674764387],[-87.68850651841159,41.80837349249781],[-87.68868055548454,41.80837071322066],[-87.6887136897598,41.808370181260074],[-87.68873771237612,41.80836979547439],[-87.68901113152143,41.80836540178212],[-87.68932356856651,41.80835986914697],[-87.68932942812357,41.80860099939302],[-87.68933636707247,41.80880910963785],[-87.68933780725514,41.80885209314267],[-87.68934479371775,41.80907743772454],[-87.68935176575461,41.80927492777271],[-87.68935799498715,41.80945136502133],[-87.68936481388357,41.809700775974896],[-87.68937220998953,41.80997313233277],[-87.68937626367828,41.81016532764133],[-87.68937964640986,41.810325704199],[-87.68938753362437,41.81057470946081],[-87.68938907684145,41.810637150471514],[-87.68939714007838,41.81096329839996],[-87.68940134527318,41.81108906485295],[-87.68940995502145,41.811346553953754],[-87.68941516541305,41.811543622404336],[-87.68941865418756,41.81167558689886],[-87.68942675879852,41.81199249748196],[-87.6891248554131,41.8119991915465],[-87.68883751985335,41.81200339763405],[-87.68864410234994,41.812006353495754],[-87.68822091249486,41.8120126671122],[-87.68803222817546,41.81201553408862],[-87.68768989301866,41.812021047720904],[-87.68730096961008,41.812026764580914],[-87.68701367053968,41.81203096685953],[-87.68668036542503,41.81203584139726],[-87.68636236077164,41.81204030772287],[-87.68604379909983,41.81204905110387],[-87.68580661519815,41.81205252560011],[-87.68536735648743,41.81205895875978],[-87.68525615468069,41.81206080210433],[-87.6852031769792,41.812061680221234],[-87.68507832680213,41.81206374962729],[-87.68480374417818,41.81206917018901],[-87.68465524327972,41.81207036245521],[-87.68453138019187,41.81206414335662],[-87.68442184373866,41.812058643377284],[-87.6841115048092,41.81205949688441],[-87.68403157115112,41.812061080518106],[-87.68396393612284,41.812087299031326],[-87.68396335631695,41.812063352197974]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6694727.01643","perimeter":"0.0","tract_cent":"1164895.16971583","census_t_1":"17031590200","tract_numa":"37","tract_comm":"59","objectid":"492","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1882766.38063299","census_tra":"590200","tract_ce_3":"41.83391651","tract_crea":"","tract_ce_2":"-87.67046169","shape_len":"10761.7647192"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66573836143685,41.83752152212585],[-87.6657288037901,41.83704462053674],[-87.66572734755177,41.8369890228566],[-87.66571418624706,41.83648654457565],[-87.66570352801632,41.83607961720785],[-87.66569028819171,41.8355743757367],[-87.66568823335588,41.835495877776744],[-87.66567838942859,41.8351198286178],[-87.66566849293288,41.83475862561084],[-87.66565278952412,41.83418506187863],[-87.66562747830505,41.83326070347313],[-87.66562600123862,41.83315748299039],[-87.6656162360105,41.83281359694911],[-87.66560431640454,41.83234068868854],[-87.66559824874291,41.832099700660265],[-87.66558922155635,41.83174117241188],[-87.66558378091071,41.83113490421622],[-87.66557888396179,41.83093528510624],[-87.66556825195282,41.83050135443695],[-87.66611785342549,41.830494670321684],[-87.66630420129404,41.83049240326153],[-87.66640126465751,41.83049132033047],[-87.66673589202395,41.83048758218859],[-87.66735673883784,41.83048064559732],[-87.66795294332228,41.830474050832954],[-87.66844586112055,41.830468596098484],[-87.66882475033835,41.83046483364892],[-87.66917658585443,41.83045932211999],[-87.66973956955458,41.830450500988945],[-87.67011282911457,41.83044824322103],[-87.67039874328988,41.83044651281919],[-87.67073286122022,41.83044448980344],[-87.67101811171723,41.830440647804615],[-87.67162406251393,41.83043248423421],[-87.67223082054602,41.830424306470384],[-87.67284063478806,41.8304176403483],[-87.67354008226894,41.83040999027172],[-87.67406110908881,41.830403517285845],[-87.67466404353773,41.83039602371848],[-87.67528047958764,41.830390070601446],[-87.67528924508683,41.83085759253425],[-87.67529613240772,41.83122494087274],[-87.67529754938055,41.83130054371951],[-87.67529919281955,41.83138817736519],[-87.67530688459034,41.831605731900964],[-87.67531443692286,41.83181935007367],[-87.67532087375399,41.832001411266546],[-87.67532812834266,41.832206597325495],[-87.67533616184926,41.83243382925356],[-87.67533740298362,41.83246892457864],[-87.67534070857361,41.83271370919379],[-87.67534108447053,41.83274153191504],[-87.6753420553231,41.83281340739077],[-87.67534227392427,41.83282957457799],[-87.67534285929978,41.83287295054073],[-87.67534320390192,41.83289849067413],[-87.67534400965484,41.832924290587094],[-87.67535304166722,41.83321361644633],[-87.67535301109108,41.83326658091748],[-87.67536713410593,41.83363598511668],[-87.6753761793597,41.834022919400134],[-87.67537879950203,41.83413501084589],[-87.67538527587098,41.83441205814643],[-87.67539593579649,41.834768544650544],[-87.67540421808766,41.8351457641717],[-87.6754164711104,41.8357086286223],[-87.67542085175613,41.835864312916826],[-87.67543721380154,41.83644577512545],[-87.67543855431792,41.83667576412899],[-87.67543938379941,41.836817921052194],[-87.67543993891721,41.83691316509019],[-87.67544017619687,41.8369538814808],[-87.67544072402441,41.83704786667991],[-87.67544142461557,41.83716792520169],[-87.67544191713402,41.837252405589396],[-87.67528024687431,41.83725622346797],[-87.67458465401457,41.83727264826703],[-87.67384122441057,41.83728671815762],[-87.6730333849211,41.83730200162894],[-87.67246950133409,41.83731266625213],[-87.67087735935368,41.83734408217359],[-87.67056206303441,41.83734707256972],[-87.67056172000484,41.837269638662306],[-87.67056112835282,41.837136171723],[-87.67004371764956,41.837142329918855],[-87.66963037666007,41.83716019982036],[-87.66956900432889,41.83716285288328],[-87.6692640123789,41.83717603740616],[-87.66901699421167,41.83720275141921],[-87.66897548124223,41.837207241326375],[-87.66893497377616,41.83721162205012],[-87.66877889423128,41.83722850112187],[-87.66824256149187,41.83732210464978],[-87.66808184952451,41.837359974279074],[-87.66762727431289,41.83746708726127],[-87.6675355702497,41.83749461446118],[-87.66698374184712,41.83766025666335],[-87.6668336674084,41.83772344639354],[-87.66650632319842,41.83786127507198],[-87.66614347257503,41.83802670530383],[-87.6657643285198,41.83822073179776],[-87.66575608707606,41.838081795819605],[-87.66574627536082,41.83791638309658],[-87.6657435929514,41.83778255246949],[-87.66574161471532,41.837683857741865],[-87.6657406167847,41.837634052033884],[-87.66573982164111,41.83759439387629],[-87.66573836143685,41.83752152212585]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4585827.269","perimeter":"0.0","tract_cent":"1148098.06333499","census_t_1":"17031570500","tract_numa":"33","tract_comm":"57","objectid":"494","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869774.98939758","census_tra":"570500","tract_ce_3":"41.7986054","tract_crea":"","tract_ce_2":"-87.73242804","shape_len":"11360.5339158"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72827529443259,41.80063372836855],[-87.7282709355184,41.80049100305517],[-87.72814610136295,41.800491826836925],[-87.72781862042885,41.80049633066381],[-87.72758060250696,41.800499603884134],[-87.72729600515797,41.80050304252891],[-87.72704780610945,41.800504755966294],[-87.72679582923394,41.800506495024656],[-87.72656485506816,41.800509501459096],[-87.7262881420742,41.80051306157985],[-87.7260645408304,41.800515941312085],[-87.72582602293264,41.800517848733854],[-87.72565755938092,41.800519195398174],[-87.72543975445818,41.80052194019297],[-87.72543469263682,41.800522004242765],[-87.72519421750604,41.80052525073301],[-87.72495026502645,41.80052777357092],[-87.72457080529247,41.800533255216486],[-87.72425676476004,41.80053589938618],[-87.7240125245597,41.80053781468946],[-87.72337294939526,41.80054564433583],[-87.7233700023837,41.80041092237312],[-87.72336952655884,41.800389164790595],[-87.72336893931246,41.800362333528504],[-87.7233678648895,41.800313201528915],[-87.72336726306928,41.800285702778616],[-87.72336644672203,41.800262726296445],[-87.72336502623254,41.80022274437943],[-87.72359223768287,41.800132037591176],[-87.72420378806083,41.79989104019227],[-87.72480934455227,41.799653095641865],[-87.72528055442326,41.7994658922281],[-87.72548715912613,41.79938465674432],[-87.72554329974326,41.799362312872525],[-87.72598044943173,41.79918899055755],[-87.72604901213919,41.79916191015906],[-87.72675671365627,41.79888298788566],[-87.72746487717532,41.79860303428472],[-87.72820788599994,41.79831029858265],[-87.72820266491524,41.79812451847751],[-87.72820017269156,41.798034684810354],[-87.72819554491385,41.79785608962284],[-87.72819193325157,41.79771372438336],[-87.728188679081,41.797587936523065],[-87.7281858689219,41.79748122380097],[-87.728181785271,41.797331065306096],[-87.72817967401956,41.797256213055704],[-87.7281763496431,41.79714428484302],[-87.7281715218787,41.796983059918674],[-87.7281681867003,41.796830844118375],[-87.72851731388722,41.79682722190946],[-87.72872369529885,41.79682509720984],[-87.72877923081332,41.796824558789496],[-87.72884296797127,41.79682394110492],[-87.729057636256,41.79682191457123],[-87.72925275251508,41.796820470895845],[-87.72939287048769,41.7968193744358],[-87.72942729024099,41.79681910504713],[-87.72957579492353,41.79681794295528],[-87.72971120666692,41.796816486843575],[-87.72987016515721,41.79681476951936],[-87.73003675261046,41.79681295510024],[-87.730204037846,41.796811034331476],[-87.73037910104632,41.7968087699431],[-87.73062263569253,41.796806691932936],[-87.73075349268186,41.796805575137036],[-87.73102064020452,41.796803573213005],[-87.73123477039917,41.796800249973536],[-87.73138592472155,41.79679774896434],[-87.73183849820674,41.79679194154484],[-87.73196716655869,41.79679085581518],[-87.73205356769448,41.79675999876674],[-87.73238845267612,41.79678730043198],[-87.73306690671146,41.79678157158652],[-87.73344022706068,41.79677729215268],[-87.73367705346331,41.79677447942815],[-87.73381359550773,41.79677367066021],[-87.73398949252957,41.79677242050745],[-87.73412472845145,41.79677013471423],[-87.73428946630744,41.796768471332314],[-87.73441326479173,41.796767220802195],[-87.73463853455497,41.79676484804813],[-87.73478678240211,41.79676332249508],[-87.73490080192276,41.79676230836345],[-87.73507087761116,41.796760795709055],[-87.73538374218944,41.796756387198336],[-87.7355124865985,41.79675531243782],[-87.73550704476874,41.79658202536204],[-87.73550306213355,41.79642654094211],[-87.7354995938716,41.79629463236321],[-87.73549089506325,41.79596000336402],[-87.7354798150642,41.79562116318992],[-87.73541205291673,41.795464386022516],[-87.73556028951808,41.795445947450176],[-87.7356447343854,41.795435409675264],[-87.73572649264634,41.79541799713853],[-87.73581192394857,41.79539991757605],[-87.7358982603281,41.79538321507603],[-87.735985038394,41.795368229439816],[-87.73607226169675,41.79535461847197],[-87.73615992779337,41.79534272492056],[-87.73624803950773,41.79533220576307],[-87.73631412009168,41.79532465937012],[-87.7363811046971,41.79531848978156],[-87.73644807974203,41.79531334921284],[-87.73651503886501,41.79530992370331],[-87.73658198525335,41.79530787023336],[-87.73664938047736,41.795306848164266],[-87.73783679294797,41.79529174129316],[-87.73790510808726,41.79529038021965],[-87.73790888035057,41.795427614252766],[-87.73791413693415,41.79560258968226],[-87.73791726111638,41.79566126533739],[-87.73793533492976,41.796283969655214],[-87.7379587566517,41.79702230451429],[-87.73797621589817,41.797612417343075],[-87.73798516591283,41.79793320244285],[-87.73799003109308,41.7981009722828],[-87.73800492325057,41.7986217781461],[-87.73802087846174,41.79912680981484],[-87.73802896028288,41.79934330739558],[-87.73803299914793,41.79945526617466],[-87.73803877230092,41.79962053157179],[-87.73805173679374,41.80005248072553],[-87.73806105056397,41.80038355864725],[-87.73766923603033,41.8003867417862],[-87.7375067534643,41.800387875037565],[-87.73735655809313,41.800388907148744],[-87.73724586456201,41.80038967751589],[-87.73708730657717,41.800390775652694],[-87.73685639388319,41.80039479845486],[-87.73664434271234,41.800398492303025],[-87.73643074698158,41.80039828825587],[-87.73622620659032,41.80039846019474],[-87.73622180540373,41.80039847491464],[-87.73602092788728,41.80039914934498],[-87.7358010635261,41.80039863710337],[-87.73558909796763,41.80040617392047],[-87.73542604347305,41.80041197120584],[-87.73523574843333,41.80041443867161],[-87.73500466738733,41.80041718050657],[-87.73460449488964,41.800421904089035],[-87.73452911722124,41.800422942068714],[-87.7343910271421,41.80042433362689],[-87.73416111811365,41.800426649022384],[-87.73398338073967,41.80042753306472],[-87.73382323852975,41.8004293868305],[-87.73378054375563,41.80042987724809],[-87.73350126710224,41.800433084883416],[-87.73323124298622,41.80043624412467],[-87.73316960372189,41.80045601001459],[-87.73311099080698,41.800476648175945],[-87.73276167910457,41.80047927647496],[-87.73257732187643,41.800482099619025],[-87.73242274827051,41.80048458429675],[-87.73194460314255,41.8004717359009],[-87.73126644003155,41.80048856763615],[-87.73123657042584,41.800493113145464],[-87.73089839684673,41.80054430189423],[-87.73072359868638,41.80057105736652],[-87.73041094026075,41.80061891386021],[-87.73020555530488,41.800650410398376],[-87.729906071394,41.80069639612122],[-87.72969752016064,41.8007291374896],[-87.7295028711599,41.8007586949105],[-87.7293116560529,41.80078773053011],[-87.72907834901953,41.80082358133068],[-87.72895817936832,41.80084204692816],[-87.72874181411804,41.800874910105506],[-87.72849320046522,41.80091276234383],[-87.72828202902846,41.800947234081484],[-87.72827894542922,41.80082656116981],[-87.72827529443259,41.80063372836855]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4958721.57055","perimeter":"0.0","tract_cent":"1154434.37395838","census_t_1":"17031580300","tract_numa":"18","tract_comm":"58","objectid":"495","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1879484.65639002","census_tra":"580300","tract_ce_3":"41.82512615","tract_crea":"","tract_ce_2":"-87.7089325","shape_len":"9273.03676998"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71382568232627,41.82245856853149],[-87.71426040608861,41.822421840968055],[-87.71426186546138,41.82246317350484],[-87.71429349241198,41.82335863794344],[-87.71429371589588,41.82336495537117],[-87.71432301164725,41.824194408119524],[-87.71433672522942,41.82423634840026],[-87.71433716500202,41.824237694915844],[-87.7143380815181,41.82428538189986],[-87.71433927821425,41.824351593971976],[-87.71434070589413,41.82444147692992],[-87.7143666595173,41.824508508203635],[-87.71436195094101,41.82563151227538],[-87.7143619476757,41.825632308371645],[-87.71436194672735,41.82563255919317],[-87.7143693473594,41.82604056364234],[-87.71420137247617,41.8260872350093],[-87.71352770970104,41.826299905825685],[-87.71269084974729,41.826565204048265],[-87.71230663210903,41.8266862903539],[-87.71187396168857,41.82682464913654],[-87.71179771190573,41.826848736616775],[-87.71146007524912,41.826955396574164],[-87.71120320088663,41.827035373263044],[-87.71085013724685,41.82714421929853],[-87.70999196663493,41.82741026046304],[-87.70963876398295,41.827521626738545],[-87.70945467932734,41.82757955260595],[-87.7094463937882,41.82758215994244],[-87.70927913273303,41.82763479154384],[-87.70924114056669,41.82764674636987],[-87.70885956219063,41.82776679262004],[-87.70851177670232,41.827875331099754],[-87.70810443896399,41.82800286350943],[-87.70773632820888,41.82811850615757],[-87.70748377612259,41.82819827849818],[-87.70709195255246,41.828322269669705],[-87.70689340095453,41.82838513455992],[-87.70682526388761,41.828406707506026],[-87.70673258963183,41.82843600834966],[-87.70634083673582,41.82855994244973],[-87.70602372975354,41.82865963934033],[-87.70561645020851,41.828787712341736],[-87.70530246069474,41.82888731449972],[-87.70504710051428,41.82896846568817],[-87.70487383307528,41.82902275560361],[-87.70457772629852,41.82911553420863],[-87.70457383663094,41.82903135378716],[-87.70456615001144,41.828864994570715],[-87.70456080933741,41.8287494185929],[-87.70455308399607,41.82858222297595],[-87.70454879736549,41.82843535351651],[-87.70454545727851,41.828244251568705],[-87.70454980258911,41.82807860337221],[-87.70455306525206,41.82795422364771],[-87.70454532611645,41.82770269616851],[-87.70453956655355,41.82748142139732],[-87.70453364318138,41.82725435530559],[-87.7045316828949,41.82716630830958],[-87.70452839278872,41.827018511216274],[-87.70452387318612,41.82686546582742],[-87.70451789925056,41.82666982135827],[-87.70451299672524,41.82651627989443],[-87.70450978023531,41.826415931666936],[-87.70450728740724,41.82633832946419],[-87.7045065013896,41.8263138577718],[-87.70450648502995,41.82631335493142],[-87.70450515107949,41.82627206388297],[-87.70450422514944,41.82624351809985],[-87.70449883783901,41.82606438526987],[-87.70449507492772,41.82593900627129],[-87.70449058612775,41.82579032441595],[-87.70448746394892,41.825689455279736],[-87.7044809297996,41.825509834258916],[-87.70447907777783,41.82531606469328],[-87.70447886504267,41.82529378743739],[-87.7044783192355,41.82523670987204],[-87.70447120532803,41.82504885284185],[-87.70446641740635,41.82492324866687],[-87.70446099558546,41.82477994045286],[-87.70445650662982,41.82466128092121],[-87.70445265589561,41.82455988636372],[-87.7044482196341,41.824403827053246],[-87.70444400390994,41.8242555264596],[-87.70444141889253,41.824159764586305],[-87.70443769986902,41.82402242075018],[-87.70443433586918,41.823897537859175],[-87.70443064523108,41.82376104489707],[-87.70442722103756,41.8236348169763],[-87.70442401544899,41.82350008574342],[-87.70441986411639,41.82332560674707],[-87.7044164168167,41.82321299056589],[-87.70441401907532,41.82313558862236],[-87.70440791478062,41.82293832418671],[-87.70440429815437,41.82282052011705],[-87.70440094796494,41.82271298109118],[-87.70440355727503,41.82268253392871],[-87.70443962230226,41.82258990218221],[-87.7046041649556,41.822586710954944],[-87.70480417588927,41.82258283183982],[-87.7050034178299,41.82258015235766],[-87.70505221971653,41.82257949612628],[-87.70530620532982,41.82257632957765],[-87.70551348069102,41.822573812783446],[-87.70575290162736,41.82257059308265],[-87.70595148048481,41.82256822008254],[-87.70624112024258,41.82256568693012],[-87.7064848270945,41.82256317352393],[-87.70669728235558,41.822559941906825],[-87.70685205766206,41.822557360758196],[-87.70688229352135,41.82255685633321],[-87.70714919645854,41.82255335055245],[-87.7082459497927,41.82253813814003],[-87.70899628811416,41.822527344988735],[-87.70930939203635,41.822522744719606],[-87.70963031085478,41.82251802850946],[-87.71013238612345,41.822511356659774],[-87.71019482872892,41.8225105269116],[-87.71087294921017,41.82250130557746],[-87.7117576987619,41.82248807856888],[-87.71202644016962,41.82248405959467],[-87.7130069579433,41.822469408138396],[-87.71351308657603,41.822463797749826],[-87.71382568232627,41.82245856853149]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7342271.92361","perimeter":"0.0","tract_cent":"1176715.86765562","census_t_1":"17031490600","tract_numa":"42","tract_comm":"49","objectid":"506","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1840605.36970743","census_tra":"490600","tract_ce_3":"41.71796368","tract_crea":"","tract_ce_2":"-87.62835725","shape_len":"10772.2461648"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62514673215097,41.72169643334708],[-87.62503124751632,41.72166327192024],[-87.62490862790945,41.72162806139134],[-87.6245897406368,41.721624976115095],[-87.62447965959062,41.72162619396714],[-87.62435970469421,41.72162752066681],[-87.62417006389373,41.72162961838079],[-87.6238817278169,41.72163420426007],[-87.62372917810666,41.721670677783024],[-87.6237213642532,41.72134029165309],[-87.62371400168702,41.7208974782618],[-87.62370845426706,41.720655916599185],[-87.62370508112372,41.720516374649634],[-87.62370127155606,41.72032660898315],[-87.62369868157838,41.72019911914372],[-87.623696616398,41.72011049263507],[-87.6236938940343,41.720008387190205],[-87.62368811399426,41.71990779967843],[-87.62368050201484,41.719807256011855],[-87.62367021674625,41.719710616366335],[-87.62366541666023,41.719670248536545],[-87.6236491190419,41.719556834981134],[-87.62362402276791,41.71941748815679],[-87.62359688070055,41.71929097209833],[-87.62356194892358,41.7191500005182],[-87.62351276524524,41.71897941147169],[-87.62345341860147,41.718800417161894],[-87.62334992510729,41.718505778898255],[-87.62325786440391,41.71824071260465],[-87.62321953844653,41.71813035118804],[-87.623219533479,41.71813033661245],[-87.62318117888361,41.71801989322348],[-87.62316168708341,41.717963765326665],[-87.62307227639289,41.717707689163404],[-87.62299278336563,41.71748235571802],[-87.62287785379006,41.717162261320176],[-87.62280467597598,41.71698222059866],[-87.62276102454106,41.7169213215274],[-87.62273198943161,41.71653823420333],[-87.62273718470799,41.71638624391679],[-87.6227455425895,41.716229744506435],[-87.62277109001334,41.71608624557241],[-87.62279975188548,41.71595669962242],[-87.62285410438372,41.71580243826417],[-87.62288280766649,41.715736551986666],[-87.62292172168104,41.715647227841814],[-87.62299323368956,41.71550102031754],[-87.62303774017762,41.715411345122796],[-87.62305246677265,41.715381672350986],[-87.62311367955797,41.71526383279025],[-87.6231707829238,41.71515644341735],[-87.6232669853269,41.71496148834618],[-87.62335458542893,41.71478796203061],[-87.62340996476686,41.714672809994454],[-87.62345469713738,41.714583570719434],[-87.6234935458723,41.71450150688121],[-87.62352019896515,41.71443882163718],[-87.6235584946843,41.71433306867501],[-87.62380399061455,41.714398360857864],[-87.62393036365039,41.714417253602186],[-87.62408308118987,41.71442856982759],[-87.62416873892563,41.71443294053482],[-87.62428609076326,41.71443619688218],[-87.62433900396964,41.7144372843635],[-87.62441414528655,41.71443691367952],[-87.6244576433352,41.71443669902081],[-87.624643993257,41.71443384172854],[-87.6248765312985,41.714430446979016],[-87.62508409343667,41.71442741650142],[-87.6253382608882,41.71442588167622],[-87.62547720568259,41.71442398126284],[-87.6256128912789,41.714422029872324],[-87.62588503844111,41.71441750348711],[-87.62607854768959,41.71441467257553],[-87.62625736885222,41.714412056128715],[-87.62647690842384,41.71440865911452],[-87.6266784474258,41.71440674626086],[-87.62681551763698,41.714405444959134],[-87.62703633316903,41.71440252125555],[-87.62717396597205,41.714400046493694],[-87.62728570830758,41.71439891006835],[-87.62745825501176,41.71439715525869],[-87.62757411360401,41.71439295455573],[-87.62769074330461,41.71437849471042],[-87.62776275946248,41.71436433713122],[-87.62784339290097,41.71433917307256],[-87.62789862112497,41.71431957134135],[-87.62799477134735,41.71428203223614],[-87.6280759557201,41.71424334161772],[-87.62816584122815,41.71421280008449],[-87.6282492795656,41.71419229058057],[-87.62834152819359,41.71417339933092],[-87.62841366758249,41.71415795226772],[-87.62849762234626,41.71414902870749],[-87.62857448053245,41.71415578268105],[-87.62866112121309,41.71416740135011],[-87.62872663286684,41.7141886870767],[-87.62879691848275,41.71420547418009],[-87.62890576518406,41.714239622196246],[-87.62900807782131,41.71428182580797],[-87.62909111600462,41.7143148000597],[-87.62917559352668,41.71434007125448],[-87.62924469539371,41.7143546007613],[-87.62939124012885,41.71437114120717],[-87.62952329223894,41.71437321246017],[-87.62968923425692,41.714370962955584],[-87.62987979293278,41.714368369931236],[-87.63006591770916,41.7143659690009],[-87.63023467974288,41.7143637359671],[-87.6302923749793,41.71436293744853],[-87.63038728822369,41.71436162341684],[-87.63054004498665,41.71435934691148],[-87.63078841260946,41.71435559654403],[-87.6308808730064,41.71434970412545],[-87.63289344378971,41.714356920500215],[-87.6330252937179,41.71435738134255],[-87.63330684776767,41.71435841079082],[-87.63333617298102,41.7143561881505],[-87.633335744318,41.71464531598643],[-87.63334667641925,41.71478059281871],[-87.63334558580264,41.71492427938202],[-87.63335743269214,41.715223866202386],[-87.63338001489483,41.716138548667736],[-87.63341664213127,41.717952631005794],[-87.63347568083884,41.71976986609845],[-87.63353297476291,41.72159190707361],[-87.6333284653142,41.72159525019321],[-87.63290701471314,41.72160213783735],[-87.63252249533672,41.72160561268339],[-87.63233372758796,41.72160768995335],[-87.63215083936618,41.72160970179974],[-87.6320971854011,41.72161029208641],[-87.6317339928742,41.72161680396535],[-87.63126788291206,41.72162341318519],[-87.6311115638124,41.7216249542376],[-87.63076683823255,41.72162835216117],[-87.63031236976605,41.721635756199966],[-87.62989053704845,41.72164273280351],[-87.62976661860831,41.721644781850244],[-87.62937236650566,41.72165036856782],[-87.62931418082638,41.721651236332505],[-87.62918457856614,41.721653169244895],[-87.62902666546172,41.721655524281104],[-87.62866428782662,41.72166005499262],[-87.62863630488589,41.721660404806286],[-87.62839356128869,41.721661825683874],[-87.6281138770964,41.72166738335603],[-87.6277798258334,41.72167260681408],[-87.62745003064606,41.72167575274979],[-87.62726323879126,41.72167816259566],[-87.62702822989304,41.72168253736605],[-87.62662037790723,41.72168875856349],[-87.6262371754884,41.72169041526055],[-87.62590835293352,41.72169991749738],[-87.6256565584859,41.72169956771002],[-87.62550133933857,41.721699351814415],[-87.62550133640833,41.72169935179637],[-87.6254109763253,41.721697238844435],[-87.62523791370447,41.721699026335834],[-87.62514673215097,41.72169643334708]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7676923.24466","perimeter":"0.0","tract_cent":"1145666.98656596","census_t_1":"17031560100","tract_numa":"34","tract_comm":"56","objectid":"496","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875830.33461957","census_tra":"560100","tract_ce_3":"41.81526849","tract_crea":"","tract_ce_2":"-87.74119045","shape_len":"14053.0182184"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73848974592983,41.81683261283852],[-87.73848229779574,41.81629949740809],[-87.73847845295685,41.816021276408414],[-87.73846362201688,41.81564180290252],[-87.73845107296593,41.81531311037117],[-87.73844949664176,41.81518617924766],[-87.738447250127,41.815032487917506],[-87.73844648443091,41.81497085647191],[-87.73844646178507,41.81496902235208],[-87.73850240460227,41.81496896874663],[-87.73850187175285,41.814952180870975],[-87.7384712402759,41.813987590114635],[-87.73844346259872,41.81311284390019],[-87.73844340068574,41.81311089267003],[-87.73838671355414,41.811319716278696],[-87.73838669594201,41.8113191618425],[-87.73832887982387,41.80949048388717],[-87.7383159279794,41.80907646201051],[-87.7383087488076,41.808846972012546],[-87.73830694207436,41.808789205919496],[-87.73830520834207,41.80872882325543],[-87.73829303148045,41.80821146247971],[-87.73828365279019,41.80778810814504],[-87.73827197637961,41.807683529142274],[-87.73833766659094,41.80768273300361],[-87.73840842611915,41.807681994366334],[-87.7385309499223,41.8076807152634],[-87.73874972889405,41.807678335195995],[-87.73897610345949,41.8076756372553],[-87.73920651003526,41.80767323415067],[-87.73948887482543,41.80766946360557],[-87.7397161254188,41.807666428443845],[-87.73994991669505,41.807662915907876],[-87.74018432944398,41.8076596261966],[-87.74045212404752,41.807655959171406],[-87.74071013940002,41.807652540198355],[-87.74080388729155,41.807651297647766],[-87.74104193006949,41.80764813440728],[-87.74118709385748,41.80764569942199],[-87.74138210558633,41.80764313693653],[-87.7416245033834,41.8076410377584],[-87.74179772025252,41.80763929535631],[-87.74193356421036,41.80763848215486],[-87.74208853173594,41.807637554266236],[-87.74222305722932,41.80764318629693],[-87.7423998143008,41.807651313183676],[-87.74254685069869,41.80764834192152],[-87.74274033360062,41.807644858988276],[-87.74292379201117,41.80764228937141],[-87.74308319325975,41.8076288651513],[-87.74315183339885,41.80762308434993],[-87.74315377032418,41.807726203914626],[-87.74316052325412,41.808085776307244],[-87.74317975929418,41.80882831776327],[-87.74317976619955,41.80882856450984],[-87.74319692173506,41.80944577035188],[-87.74320918807001,41.80981885417106],[-87.74323405661396,41.81057526539677],[-87.74325448136126,41.81127411542128],[-87.74327427407681,41.81196345180231],[-87.74330071355769,41.812912477388615],[-87.74330071461692,41.81291252185142],[-87.74330310561731,41.813000731500686],[-87.74330569870308,41.813096380012766],[-87.74330938628111,41.813232411855786],[-87.74333775976952,41.81428748315878],[-87.74333779294216,41.81428870508304],[-87.74335766289008,41.81493105089788],[-87.7433605955775,41.81502468434942],[-87.74336016546626,41.81567344348453],[-87.74337736779401,41.81620659069409],[-87.7433819396441,41.81647501930094],[-87.74338225713883,41.816493667490235],[-87.74338260569967,41.816514127063755],[-87.74338454679652,41.81662811575753],[-87.74339075303752,41.81674632290671],[-87.74344532627,41.816732102122465],[-87.74347879895556,41.81672338007451],[-87.74362428859419,41.81667749353044],[-87.74381974487652,41.81662947462338],[-87.74404576497946,41.8165568132227],[-87.74420051490107,41.81650331773443],[-87.7443029686562,41.8164679004907],[-87.74451662354612,41.81639138764585],[-87.74466202718688,41.816340508045336],[-87.74466539164774,41.81651939992782],[-87.74466728026587,41.816619858759445],[-87.74466829855048,41.816673988038204],[-87.74467179431723,41.81685989578559],[-87.74467298302103,41.816923097152205],[-87.74467369034294,41.81696082913515],[-87.7446777055324,41.81717502537435],[-87.74468190460722,41.817399028133075],[-87.74468321875928,41.81746904281049],[-87.74468511035535,41.81756982162364],[-87.74468757269811,41.81770141530578],[-87.74468875580034,41.81776462980691],[-87.74468894496961,41.81777481891347],[-87.74468968916563,41.81781485517669],[-87.7446906628087,41.81786669136998],[-87.7446907287085,41.817870191212684],[-87.74469314385256,41.81799880847515],[-87.74469644343517,41.81817450261353],[-87.74470008096948,41.8183681767995],[-87.74470404888217,41.818579456672765],[-87.74470700078587,41.81873663610612],[-87.74470748902617,41.818764643699865],[-87.74471039069647,41.81893123574706],[-87.74471039167632,41.818931288991095],[-87.7447105417234,41.81893990185577],[-87.74471216634741,41.81903318464959],[-87.74471312504376,41.819088218114395],[-87.74471401776461,41.81913947950392],[-87.74471401872938,41.81913953439443],[-87.74471614013522,41.81926133553033],[-87.74471901458051,41.819426376906165],[-87.74471984105176,41.81947381654527],[-87.74472078552758,41.819507849615846],[-87.74472457408937,41.81964434117674],[-87.74472649352181,41.81971348652208],[-87.74472880407515,41.81979672903356],[-87.7447339492347,41.819982066088265],[-87.74473451607241,41.82000249410751],[-87.74473484054857,41.820023187628635],[-87.74473558738426,41.82007780259353],[-87.74473669259338,41.82015750209746],[-87.74473839970801,41.82027551398484],[-87.74473945941476,41.82035032761446],[-87.74474009273858,41.820395064239925],[-87.74474029323986,41.82040846393084],[-87.74474042225343,41.82041709068134],[-87.74474086622473,41.82044676957979],[-87.74474117799777,41.820468890607685],[-87.74474163071602,41.820500859376324],[-87.74474164222063,41.820501686286256],[-87.74474251390019,41.82056330089306],[-87.74474269585058,41.82057484041687],[-87.74474283924913,41.820583939531076],[-87.74474378149104,41.82065022800402],[-87.7447461851096,41.820819299918],[-87.74474829370779,41.82096762686786],[-87.74474987534366,41.82107887207871],[-87.74475221589462,41.82124353552359],[-87.7447543296475,41.821392222812584],[-87.74475673175644,41.8215612227969],[-87.74475983513719,41.82177952072831],[-87.7447608239323,41.82184906084591],[-87.74476144843734,41.821892999653066],[-87.74476207894175,41.82193608309937],[-87.74476312006581,41.82200724068586],[-87.74476314262353,41.82200878363418],[-87.74476314260593,41.822008785555084],[-87.74476347919031,41.82203184387482],[-87.74465204662246,41.822033415027924],[-87.74443314464041,41.82203650021411],[-87.74433235252243,41.822037920885286],[-87.74402591869536,41.82204223894036],[-87.74397110778727,41.82204301125461],[-87.7437055596581,41.82204675253969],[-87.7435325020278,41.82204918410203],[-87.74349502320143,41.82204971065496],[-87.74344704738431,41.82205038444523],[-87.74344272684172,41.82205044513452],[-87.74330216297979,41.82205241999015],[-87.74306481681012,41.82205574674317],[-87.74296015768797,41.82205721329882],[-87.74292737697279,41.82205767270311],[-87.74278004739392,41.82205973755758],[-87.74270876633196,41.82206073634131],[-87.74243216610148,41.822064611873756],[-87.74238358154977,41.82206529251655],[-87.74220232017761,41.82206783190158],[-87.74193001659393,41.8220716460079],[-87.74174517473806,41.82207423484373],[-87.74169555361239,41.82207492961565],[-87.7414544382566,41.822078306075674],[-87.74141095762066,41.822078914635505],[-87.74139921818079,41.822079082738135],[-87.74137633005748,41.82207940990941],[-87.74134968277086,41.8220797912493],[-87.74120790025927,41.8220818195563],[-87.74109730964642,41.822083336166216],[-87.74093993389748,41.822085542804295],[-87.74075745824052,41.82208810136378],[-87.74044937336409,41.8220924202941],[-87.74033317725345,41.82209404911433],[-87.74026566187312,41.822094995294194],[-87.73991466243999,41.82209991449229],[-87.73987333452219,41.822100493524836],[-87.73978991400816,41.822101662687544],[-87.7394884590084,41.82210588623826],[-87.73931433595924,41.82210832514637],[-87.7392730689421,41.822108903180144],[-87.73899967085407,41.8221127326698],[-87.7388609728494,41.82211464890008],[-87.73873988755209,41.82211632737029],[-87.7386492510069,41.82211760105357],[-87.73864811220419,41.82205888135167],[-87.73864820393193,41.82205888045442],[-87.73864204429722,41.82182750024598],[-87.738640376785,41.82176486062263],[-87.73863191187593,41.82144064877685],[-87.73862004529329,41.82098683643915],[-87.73861975697163,41.820623134190505],[-87.73861878753816,41.820579221002745],[-87.73861691850576,41.82048384767513],[-87.73860364177854,41.81983715845538],[-87.73859914573029,41.81962925583633],[-87.73859662586506,41.81950506447638],[-87.73858204677083,41.818850478875845],[-87.73855731807124,41.818803001327794],[-87.73855675569168,41.81872905959313],[-87.73855658142494,41.818706145062364],[-87.73853045620659,41.81862758214435],[-87.73852820496145,41.81852397369377],[-87.73852650578606,41.81845981738089],[-87.73852587900325,41.81843383130451],[-87.73852319426298,41.81832398587874],[-87.73852223332054,41.81827730072081],[-87.7385182635153,41.818111594604595],[-87.73851710580101,41.818038521910005],[-87.73851645216624,41.81801004663168],[-87.73850512219235,41.817252223623],[-87.73848974592983,41.81683261283852]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7141761.15038","perimeter":"0.0","tract_cent":"1143940.31692042","census_t_1":"17031560600","tract_numa":"15","tract_comm":"56","objectid":"497","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869009.0694998","census_tra":"560600","tract_ce_3":"41.79658234","tract_crea":"","tract_ce_2":"-87.74769475","shape_len":"10895.6578522"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74285476369025,41.79301646954185],[-87.74312891450764,41.79301689452436],[-87.74361779059394,41.79301956980283],[-87.74384123186107,41.793015179435635],[-87.7439719615593,41.79301156278462],[-87.74414616789795,41.79300954743203],[-87.74446239502043,41.79300430812447],[-87.74464020208868,41.793001569521344],[-87.74494872303423,41.79299689312861],[-87.7452578302895,41.79299221890854],[-87.74561343991134,41.79298726035654],[-87.74591454799966,41.792983147189254],[-87.74630749447321,41.79297752666937],[-87.74656319966674,41.79297383841595],[-87.74688257344815,41.79296929459034],[-87.74716839585271,41.79296452380134],[-87.74753130185192,41.79295962398379],[-87.74786328969357,41.79295519663929],[-87.7483412926378,41.79294777973665],[-87.74874359511283,41.792941539895494],[-87.74934486829021,41.79293211152118],[-87.7496700413796,41.79292698540712],[-87.75010560372449,41.792920855162],[-87.75049946287106,41.79291560913551],[-87.75074706074854,41.792912199750525],[-87.75111689783256,41.79290721398202],[-87.75149532234893,41.79290155700077],[-87.75182686909986,41.7928971434091],[-87.75218247693951,41.79289219195335],[-87.75250742305312,41.792887830823084],[-87.75251450132957,41.79319645670505],[-87.75251895999654,41.79334376564297],[-87.75252046132614,41.79339336202991],[-87.7525266915394,41.79358467090863],[-87.75253274912129,41.7938154964265],[-87.75253678447157,41.79396562955328],[-87.75254225125809,41.79415624820548],[-87.75254437512433,41.794236045910466],[-87.7525464137573,41.794312611506406],[-87.75255111274159,41.79450297927889],[-87.75255621041069,41.79468980892547],[-87.7525595193361,41.79481073910343],[-87.75256217053997,41.79493250351116],[-87.75256392626814,41.79501315281838],[-87.75256616001334,41.79509821077401],[-87.7525671797324,41.79513697930769],[-87.75256960968797,41.795229267263416],[-87.75257277280518,41.795349373131096],[-87.75257923609722,41.79555149535059],[-87.75258543006093,41.79578300782411],[-87.75258943643895,41.795932756276784],[-87.75259652077611,41.79614734069156],[-87.75260294980052,41.79637764656674],[-87.75261037893955,41.79662716751709],[-87.75261415433036,41.79673706796636],[-87.75261793146606,41.796846776321956],[-87.75262413754336,41.79704491796675],[-87.75263924183932,41.79721469624791],[-87.75265873117213,41.797433766562996],[-87.75266266736467,41.79759493113423],[-87.7526649794586,41.79768855547103],[-87.75266723300516,41.7977798095421],[-87.75267375824656,41.797999495436024],[-87.75267769095534,41.79813261333862],[-87.75268319785636,41.798361719606476],[-87.75268755569626,41.798543016739494],[-87.75269150065672,41.79869915927471],[-87.75269769297695,41.7989069881224],[-87.75270125157483,41.799028742757294],[-87.75270527067426,41.79918480332509],[-87.75270876440612,41.79931780920923],[-87.75271286034837,41.799473485956995],[-87.75271712307593,41.799631002216664],[-87.75272220772159,41.7997787255167],[-87.75272682996244,41.799912670148494],[-87.75272964787275,41.79999460139555],[-87.75273612068429,41.80018714345771],[-87.75257372752394,41.80019112756145],[-87.75232026907975,41.800194675859544],[-87.7521229017819,41.80019774284455],[-87.751875265909,41.80020112367743],[-87.75164103531026,41.80020356031235],[-87.75151191229753,41.80020545035975],[-87.75140562195651,41.800207005864706],[-87.7511639609004,41.80021187374522],[-87.75097623043814,41.800214764212065],[-87.7509039612075,41.800215751855944],[-87.75076532122824,41.800217646599926],[-87.75067076067752,41.80021892336192],[-87.75046777867244,41.80022121422452],[-87.7502920131655,41.8002230874225],[-87.75019041306287,41.80022416998925],[-87.74994627201028,41.80022748591723],[-87.74975876201019,41.80023032062803],[-87.74968092879162,41.800231544060715],[-87.74956347469467,41.800233389939436],[-87.74927429487082,41.80023685975491],[-87.74906976968524,41.800239772584916],[-87.74880570684408,41.80024353252357],[-87.74865711623288,41.800245602963784],[-87.74846086811353,41.80024945860952],[-87.74826572512619,41.800252776179434],[-87.74805408824461,41.800254991528064],[-87.74784924124678,41.80025694416079],[-87.74769581239701,41.800258406909364],[-87.74748424134054,41.80026144455551],[-87.74738267352541,41.800262957303076],[-87.74723785277673,41.8002650983754],[-87.74720327023252,41.800265609648775],[-87.74709462139243,41.80026741532645],[-87.74676883955574,41.800270856696514],[-87.74662766466218,41.80027275710353],[-87.74652645906835,41.800274119459246],[-87.74629565190533,41.80027914231144],[-87.74609988908958,41.8002820386467],[-87.74601759095043,41.800283174751705],[-87.7458503551762,41.800285482957854],[-87.74560745641399,41.80028926254541],[-87.74540848011914,41.80029190991799],[-87.74529912582247,41.80029336532978],[-87.74510252094998,41.80029609099749],[-87.7448841874403,41.800300653470345],[-87.7447951871548,41.800301954975055],[-87.74454093340894,41.800305673034345],[-87.74432101333915,41.800307262474114],[-87.74418704448772,41.80030978053922],[-87.74403768399036,41.8003125877756],[-87.74386909518385,41.80031572947571],[-87.74377430783292,41.80031771318542],[-87.74360451330554,41.80032035406303],[-87.74344698034531,41.80032168605847],[-87.74325550576656,41.80032481883436],[-87.74295868696494,41.80032747663542],[-87.74295552628085,41.800149512002776],[-87.7429516509199,41.799931299535466],[-87.74295164542852,41.7999310187666],[-87.74294697940805,41.79967903952853],[-87.74294700704424,41.799669795536914],[-87.74294786216691,41.799383045169726],[-87.74294757901085,41.79927744351148],[-87.74294732316507,41.79918676680244],[-87.74294719920842,41.79912763087322],[-87.7429290871209,41.7986607834834],[-87.74290182301385,41.797958028934865],[-87.7428941883841,41.79764708922336],[-87.74289181575486,41.79757123833226],[-87.74288857440692,41.797467611045896],[-87.74287182641305,41.79693390180418],[-87.74286028468097,41.7966742365622],[-87.74285114762463,41.796468673337216],[-87.74283723637633,41.79604842723771],[-87.74282911434449,41.79577181488116],[-87.74282498515518,41.795447355211],[-87.7428238493914,41.79538359485383],[-87.74282225823141,41.79529429763506],[-87.7428217121548,41.795263617783],[-87.74282132616892,41.795241945238914],[-87.74282100931741,41.79522416719756],[-87.74282029456504,41.79518405709771],[-87.74281484766217,41.79500319438199],[-87.74280200038224,41.79485420559689],[-87.74278870045215,41.79477358846974],[-87.7427818019443,41.79473177283548],[-87.74277069073901,41.79466688625054],[-87.74276493797451,41.794633290714074],[-87.74274089300427,41.794542749597326],[-87.74268171632644,41.794408148841406],[-87.74253850146975,41.79413749004073],[-87.74238164745962,41.79380426653187],[-87.7423182039305,41.793673743868716],[-87.74222139650611,41.79346160608357],[-87.74198473608486,41.79303097051948],[-87.74266238998825,41.79301617076717],[-87.74285476369025,41.79301646954185]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14230962.573","perimeter":"0.0","tract_cent":"1137355.10039509","census_t_1":"17031561100","tract_numa":"66","tract_comm":"56","objectid":"498","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866154.63328381","census_tra":"561100","tract_ce_3":"41.78886984","tract_crea":"","tract_ce_2":"-87.77191219","shape_len":"16000.377976"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76228793250833,41.79227405752863],[-87.7622801827835,41.792068855699796],[-87.76227192325054,41.79181367776],[-87.76226395216248,41.791571454304155],[-87.76225563832973,41.79133480004844],[-87.76225005964464,41.79117008729817],[-87.76224018872887,41.790899532990636],[-87.76223032790998,41.79062925369807],[-87.76222271417456,41.790458383592714],[-87.76221359553102,41.79024628671369],[-87.76220589582765,41.79005615122842],[-87.7622036581976,41.78999427330027],[-87.762198827181,41.789861024259466],[-87.76219174042474,41.78966798285669],[-87.76218200109271,41.78941016292627],[-87.76216801740765,41.789068730688506],[-87.7621678390533,41.78906436802096],[-87.76215897838125,41.78884774263777],[-87.76214815473693,41.78859647614025],[-87.76213658295708,41.788338619604815],[-87.76212474493508,41.78805293458759],[-87.7621136273079,41.78777285149805],[-87.76210026932304,41.78748079212927],[-87.7620902555291,41.78725313080416],[-87.76207853299519,41.786959432687645],[-87.76207015375286,41.7867427014882],[-87.76206470507223,41.78661303389435],[-87.76205624771164,41.78642154980847],[-87.76204995073152,41.78616849447214],[-87.76204413823552,41.78590630302989],[-87.76203753133746,41.785725338498885],[-87.76203392118329,41.78563190280438],[-87.76202963264903,41.78552054760076],[-87.7620244099136,41.785392871539095],[-87.76324844311709,41.785371398565175],[-87.76360180205334,41.78536444714806],[-87.76497529486493,41.7853374182086],[-87.76534340104386,41.7853303197878],[-87.76567712743471,41.785323736389465],[-87.76577423771602,41.785321785016755],[-87.76594293545634,41.78531839457153],[-87.76621226391642,41.78531308323877],[-87.76647418365962,41.78530795426193],[-87.76666638800444,41.78530415485311],[-87.76689889842041,41.785299680077024],[-87.76695381923639,41.78529862316339],[-87.76702053960334,41.78529733898311],[-87.76723552218094,41.78529260807231],[-87.76745871943368,41.78528772512154],[-87.76771235603908,41.78528216831951],[-87.76795095611895,41.78527692115919],[-87.76811817375881,41.785273781492016],[-87.76829722168495,41.7852704193008],[-87.76846709141837,41.78526711077168],[-87.7686208986354,41.785264079794686],[-87.76875134479197,41.78526153755309],[-87.76892818256438,41.78525807048502],[-87.76908987421277,41.78525491295732],[-87.76933909261992,41.78524985282831],[-87.76944211057136,41.78524776105267],[-87.76951869548441,41.78524620577619],[-87.76971834256196,41.78524243778719],[-87.76991058180295,41.78523879777869],[-87.77028805573211,41.78523164712482],[-87.7704763787008,41.78522719112957],[-87.77055947681309,41.785225663502196],[-87.7706541444223,41.785223922991165],[-87.77114957791866,41.78521495499193],[-87.77116568855236,41.785214663348945],[-87.7713418155874,41.78521147696372],[-87.77141281358094,41.78521020594346],[-87.77154435616025,41.78520804954544],[-87.77177997406905,41.78520341652476],[-87.77197581487323,41.78519956508325],[-87.7721943850252,41.785195418997915],[-87.77239076875367,41.78519153272723],[-87.77261579540873,41.78518710314334],[-87.77281093296511,41.78518328032599],[-87.7730005876781,41.785179083007115],[-87.77316248798036,41.785175499789055],[-87.77345066456319,41.78516985174169],[-87.77366058084748,41.78516574274575],[-87.77384820013108,41.785162046197065],[-87.77404304387285,41.785158219855624],[-87.7742198380139,41.785154013896644],[-87.77437439648335,41.78515033725512],[-87.7746084809876,41.78514565804004],[-87.77480358225768,41.78514172188907],[-87.77501324244861,41.78513752684715],[-87.77519514111138,41.78513388262539],[-87.77544121677025,41.7851300747512],[-87.77565405028324,41.78512678063203],[-87.77585696494175,41.78512244153292],[-87.77604454996083,41.785118439357795],[-87.77623187806839,41.785114462799015],[-87.776450635583,41.78510978810681],[-87.7766599460349,41.785106028548995],[-87.77685612260385,41.7851025046689],[-87.77702738652937,41.785098998132575],[-87.77722248779178,41.785095030429964],[-87.77741813901152,41.78509106505721],[-87.77769117105198,41.785085470300736],[-87.77787898987188,41.78508167098506],[-87.77795116806621,41.78508021117544],[-87.77816308036317,41.78507592384899],[-87.778373033402,41.78507177897554],[-87.77856817024258,41.78506791893096],[-87.77873209837283,41.785064676300976],[-87.77894355449168,41.785060510197894],[-87.77910351257543,41.78505770562823],[-87.77915541003117,41.78505679542254],[-87.77936455143615,41.7850531280922],[-87.77954410395607,41.785049410784254],[-87.7797474942523,41.78504517687688],[-87.7799192713297,41.78504161388989],[-87.7800990436575,41.78503786905591],[-87.7803173470076,41.785033330809014],[-87.78047311072761,41.78503009222246],[-87.78058107594599,41.7850279396197],[-87.78071856304463,41.78502518083141],[-87.78092870490572,41.785020957275556],[-87.78126297359917,41.78501426890573],[-87.78153919598994,41.78501099624578],[-87.78154506828511,41.785196061685966],[-87.78155114776916,41.78535940398767],[-87.78156096764657,41.78562106495526],[-87.78156572731635,41.7857479563726],[-87.78156622032498,41.785761104195416],[-87.7815715320016,41.78590281773619],[-87.78157812739136,41.786078703929064],[-87.78158815682558,41.786345881904],[-87.7815917229657,41.78646025385596],[-87.78159776195368,41.78665400272652],[-87.78160183614078,41.786768953414246],[-87.78160472617607,41.786843465875805],[-87.78160958399937,41.78696872048911],[-87.7816162117483,41.7871622800686],[-87.78162225651758,41.787338218462466],[-87.78162771610508,41.78749691986325],[-87.78163173089416,41.78761453221484],[-87.78163697962921,41.787767936104544],[-87.78164302297878,41.78794409401584],[-87.7816484828881,41.78810276795772],[-87.78165445507416,41.78827867852996],[-87.78166156066199,41.78848491900211],[-87.78167006536997,41.78863545315086],[-87.78167098148187,41.78867662609432],[-87.78167405913051,41.78881489818823],[-87.78167986803011,41.78896709724445],[-87.78168667147585,41.78914443881396],[-87.78169203134199,41.78928486267966],[-87.78169787510014,41.78943728143365],[-87.78170440767248,41.78960773350733],[-87.78171051891199,41.78976745336042],[-87.78172002247187,41.790014814822996],[-87.78172849675667,41.790236814051596],[-87.78173326127619,41.790361153465405],[-87.78173888874512,41.79051059029816],[-87.78174383517447,41.79064194554408],[-87.78175087036865,41.79083078676409],[-87.78175762733655,41.79101358919473],[-87.78176200980185,41.79113117579313],[-87.78177141822337,41.79138539747153],[-87.78177725357264,41.79154311261325],[-87.781783811386,41.79171921798711],[-87.78178966433859,41.79187766620451],[-87.7817946768129,41.79201310167581],[-87.78179840742008,41.79213834170206],[-87.78180560844102,41.79234898021704],[-87.78152199094973,41.792321266165466],[-87.7814086620504,41.79231885562775],[-87.78113922280689,41.792321018635384],[-87.78102161013034,41.792322099820424],[-87.78088902798606,41.792324041959176],[-87.7807282732112,41.79232716541611],[-87.78061229971834,41.79232944015059],[-87.78051833390425,41.792331283066645],[-87.7804979786141,41.79233162859051],[-87.78027083613975,41.792336270861576],[-87.7801310957769,41.79233911072335],[-87.77972412407298,41.79234746877601],[-87.77968295250301,41.79235059095628],[-87.77962909440762,41.792362049512754],[-87.77956085656334,41.79238969537255],[-87.779370485267,41.792392581677326],[-87.77922521193457,41.79239489978332],[-87.77902157446984,41.79239962551196],[-87.7788492235147,41.79240362371911],[-87.77855939169845,41.79241040242967],[-87.77815406906602,41.79241945307233],[-87.77798043007265,41.79242332986293],[-87.7777043193176,41.79242937690054],[-87.77738470702246,41.79243655746483],[-87.77713735777101,41.79244126040611],[-87.77693802053126,41.7924447850687],[-87.77675357467211,41.79244804645535],[-87.77648021702112,41.79245374685628],[-87.77615162264622,41.792460633463975],[-87.77594102000198,41.79246504551938],[-87.7757213202345,41.7924697697907],[-87.775515117863,41.79247420269794],[-87.77526387785109,41.7924792940819],[-87.77495145993066,41.79248562465063],[-87.77476345168097,41.7924894311249],[-87.77450099071108,41.79249370913037],[-87.77432517194056,41.79249657471091],[-87.77405155294916,41.79250276230727],[-87.77378578259413,41.79250882282312],[-87.77354399994857,41.792514313541524],[-87.77328397063452,41.79251882345169],[-87.77316850607988,41.7925208258571],[-87.7728633471591,41.79252732335625],[-87.7726217870337,41.79253251134676],[-87.77234065234542,41.79253849352644],[-87.7720662230048,41.79254248715572],[-87.77183236458112,41.792545889452406],[-87.7716063574219,41.792550547855186],[-87.77140301720158,41.79255471267148],[-87.77132533438419,41.79255628138375],[-87.77121598437894,41.79255851783592],[-87.77110945056114,41.792560685912186],[-87.77084735461032,41.79256585336699],[-87.77064893041982,41.79256976511719],[-87.77041419435925,41.79257454280245],[-87.7700473457464,41.792582020336255],[-87.76984758911492,41.792586109682965],[-87.76963021103504,41.79259064954924],[-87.7694817762551,41.792593763106794],[-87.76931705831848,41.79259701607269],[-87.76898894250203,41.7926035277806],[-87.76866056994358,41.792610037289215],[-87.76840947690383,41.79261497746232],[-87.76816828674451,41.792619718819196],[-87.76777058485217,41.7926286136118],[-87.7677609751573,41.79262882865626],[-87.76748640222215,41.792634941030684],[-87.76718863082296,41.79264025729176],[-87.7669563494438,41.79264440388031],[-87.76672216441152,41.79264901207935],[-87.76662841675764,41.792650846629115],[-87.76644891818871,41.79265436011538],[-87.76617416848106,41.79265970007867],[-87.76596404259386,41.79266396144957],[-87.7656431136778,41.79267046890697],[-87.76547916377183,41.792673912539215],[-87.76516696158879,41.79268051943267],[-87.76506826074524,41.79268259687784],[-87.7649083093373,41.79268596342403],[-87.7647636694454,41.79268900870474],[-87.76466660220999,41.79269105162783],[-87.76453051204379,41.79269423334048],[-87.76417063379927,41.79270264622923],[-87.76382608820413,41.792709171558684],[-87.7635360896237,41.79271375232381],[-87.76322841308902,41.792718611266174],[-87.76294468134395,41.792723624500134],[-87.7626542672036,41.79272956433994],[-87.76230157887223,41.7927356357463],[-87.76229761602202,41.79251453311854],[-87.76228793250833,41.79227405752863]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11249842.7272","perimeter":"0.0","tract_cent":"1203416.78089712","census_t_1":"17031520500","tract_numa":"52","tract_comm":"52","objectid":"502","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1831797.33487792","census_tra":"520500","tract_ce_3":"41.69315215","tract_crea":"","tract_ce_2":"-87.53086476","shape_len":"16442.7626526"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5292452109768,41.699065884854846],[-87.52885883822414,41.69905645931994],[-87.52863900125976,41.69905525577651],[-87.52849970009383,41.699054478390934],[-87.52834798508077,41.699053622935374],[-87.52817915118737,41.699053074355504],[-87.52789504397728,41.69905215070414],[-87.52768207421556,41.699052304423056],[-87.52759242926466,41.69905236226723],[-87.5273415279908,41.69905252354959],[-87.52698986836356,41.69904975031645],[-87.52661708435996,41.6990468090548],[-87.52638103981343,41.699046835697985],[-87.52614826916528,41.699046810206845],[-87.52577672461305,41.699044756400596],[-87.52548879566424,41.69904316408383],[-87.5253184639925,41.69904210377497],[-87.52516754752737,41.69904114462735],[-87.5249942055261,41.699039968262696],[-87.5248539690053,41.69903915106249],[-87.5248186004823,41.69903894476475],[-87.52456358770854,41.69903657509436],[-87.52456454338903,41.69898391638596],[-87.52456616961436,41.6988943411289],[-87.52458130734739,41.69806040161427],[-87.52459621993555,41.69723883453902],[-87.52459623617149,41.69723710024211],[-87.52461054857505,41.69570889114715],[-87.52461123942503,41.69563512752981],[-87.5246132444783,41.695421006013724],[-87.52461345188905,41.69541982357268],[-87.52461486699205,41.69541176357692],[-87.52461953667692,41.695385157301786],[-87.52463638971369,41.695289138993665],[-87.52463672053437,41.69520135017286],[-87.52463735310178,41.69503683221687],[-87.52463770143541,41.6949476447343],[-87.52463844935488,41.69474769865191],[-87.52463880402016,41.694655052813985],[-87.5246418461956,41.694125749234956],[-87.52464234088457,41.694069860188],[-87.52464307913824,41.69398640119004],[-87.52464519493805,41.69364278675991],[-87.52464538038052,41.69361269518897],[-87.52464746503226,41.69327381365207],[-87.52465298934273,41.69291758390891],[-87.524656566965,41.69266993443013],[-87.52465917691951,41.69234464038856],[-87.52465931122154,41.692275484648135],[-87.5246593029711,41.69227538332454],[-87.52465929757909,41.69227531687395],[-87.5246537243419,41.69220775521441],[-87.52463137025696,41.69193678555521],[-87.52462014975418,41.691800770896236],[-87.52501229902693,41.691805066119215],[-87.52508479012648,41.691805350671856],[-87.52527901495264,41.691806118526465],[-87.52555949669328,41.691807239631984],[-87.52582917297464,41.69180869111053],[-87.52610968687206,41.691810199969744],[-87.52655633989767,41.691812705288626],[-87.52704477815611,41.69181447237641],[-87.52738764786224,41.69181571167215],[-87.52763693883803,41.691816526629346],[-87.52792767402889,41.691817521737086],[-87.52826083884207,41.69181895057322],[-87.52826091206606,41.69181895081175],[-87.52865448592469,41.69182063730006],[-87.52887088425459,41.69182111881704],[-87.52892453982169,41.69182123808287],[-87.52903362466455,41.69182149389293],[-87.52914271280483,41.6918217496225],[-87.52934084595688,41.691822481427955],[-87.52947455407195,41.69182297494702],[-87.53021771331564,41.69182576740357],[-87.5303641644412,41.69182631683206],[-87.53040054588158,41.68820374049799],[-87.53040048717901,41.68819850967657],[-87.53037988402406,41.68636901379245],[-87.53034494270173,41.68513073498593],[-87.53041374052708,41.684566226913546],[-87.53129113080479,41.68457911304597],[-87.53147486617526,41.684566946043766],[-87.53164145890042,41.68456715518729],[-87.53164132957203,41.684536256993866],[-87.53164118246613,41.68450104020169],[-87.5328452665639,41.684509436162855],[-87.53405468488272,41.68451819635387],[-87.53525818007077,41.68451867052208],[-87.53525860307577,41.68457615753208],[-87.53526160549843,41.68498410465329],[-87.53526166016869,41.68500103973266],[-87.53526292657601,41.68539266193484],[-87.53526491989946,41.68588901489859],[-87.53526742718459,41.68620454765246],[-87.53526971416025,41.686399417095956],[-87.53527302642566,41.686681660410414],[-87.53527543469308,41.687159217505815],[-87.53527568902688,41.687199425309906],[-87.53527813550842,41.68758650052583],[-87.53527885516695,41.687798463055806],[-87.53527935072398,41.68794436917647],[-87.53528108362838,41.68821167917299],[-87.53528119889792,41.68822948708524],[-87.53528133472874,41.688250430258854],[-87.53528246791477,41.688447535657524],[-87.53528234034911,41.688496751796585],[-87.53528192484336,41.68865736308346],[-87.53528161576308,41.68887000012137],[-87.53528146169309,41.6889762505814],[-87.5352814441757,41.68935683360602],[-87.53528176938704,41.689582309686685],[-87.53528194520658,41.68968515095312],[-87.53528228523562,41.689884189112774],[-87.53528204171386,41.689962365304154],[-87.53528184172856,41.69002650319864],[-87.53528162664261,41.69009562468298],[-87.53528135977496,41.690181228501196],[-87.53528132468696,41.69035062998835],[-87.53528129869026,41.69047646262219],[-87.53528110053618,41.690633848037244],[-87.53528096662761,41.69074029976424],[-87.5352808998902,41.69077955632635],[-87.53528076883525,41.69085701454794],[-87.53528047011284,41.69096927596066],[-87.53528024707079,41.69105325762531],[-87.53527972457175,41.69125548331981],[-87.53527958699287,41.69152730776299],[-87.53528060160959,41.6918430902832],[-87.53528060244223,41.69184325988825],[-87.53528146091006,41.692110270265765],[-87.53528101806917,41.69224668757154],[-87.53528073038208,41.692335244930234],[-87.53528189092496,41.6926619373844],[-87.53528235116306,41.69302753947588],[-87.535282282473,41.69327601011619],[-87.53528141890088,41.69351174156222],[-87.5352821286781,41.693661602226584],[-87.53528278818322,41.693800838162296],[-87.53528344029276,41.69407093904695],[-87.53528361145331,41.69441252621084],[-87.53528322460998,41.69466892567785],[-87.53528346366234,41.69503463588064],[-87.53528330406631,41.69511125628011],[-87.53528371821538,41.69516213918482],[-87.53528203074508,41.69547407304109],[-87.53528203010343,41.69547418418173],[-87.53528092662704,41.69567821694171],[-87.53528160348894,41.69585448950963],[-87.53528232877794,41.6961956687689],[-87.53528259145213,41.69636101604041],[-87.53528258008271,41.69665811633361],[-87.53528257371634,41.69684522420122],[-87.53528282024759,41.69710961393802],[-87.53528256904794,41.69729614680198],[-87.53528237731753,41.69743865510702],[-87.5352820471041,41.697669724741246],[-87.53528211595336,41.69785666843946],[-87.53528230402912,41.69805470002032],[-87.53528200831053,41.69836291275596],[-87.53528181746749,41.6985501562295],[-87.53528124233499,41.69871514112876],[-87.53528170082681,41.69881432409575],[-87.53528133479281,41.699102748647626],[-87.53490955879742,41.69910131992975],[-87.5346749217771,41.69910064998728],[-87.53467377349313,41.699100646397774],[-87.53448477403276,41.69910004185324],[-87.53414786479857,41.6990992803332],[-87.53407506766894,41.69909900209945],[-87.53379715167247,41.699098443191254],[-87.5335417593884,41.69909718743677],[-87.53347772070964,41.699096741727516],[-87.53327308254005,41.69909531720642],[-87.53286423524705,41.699086603798335],[-87.53253481043009,41.699079581859614],[-87.53235054428487,41.69907714531546],[-87.53225947120832,41.69907690786964],[-87.53206138446662,41.69907639159531],[-87.53165856151466,41.699077842996765],[-87.5313556951632,41.69907893348877],[-87.53105241748334,41.69907967891722],[-87.53078866181801,41.699079695139616],[-87.5304543352719,41.69907756098165],[-87.53015046815084,41.69907562063056],[-87.52985112421369,41.699074520676064],[-87.52975325864608,41.699074161301475],[-87.52955454407046,41.699073429942196],[-87.5292452109768,41.699065884854846]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11060935.1572","perimeter":"0.0","tract_cent":"1179412.19791815","census_t_1":"17031530600","tract_numa":"48","tract_comm":"53","objectid":"499","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1823302.78939681","census_tra":"530600","tract_ce_3":"41.67042194","tract_crea":"","tract_ce_2":"-87.61900726","shape_len":"17130.3711774"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61748654559996,41.66250935197168],[-87.61767318777247,41.66172460247839],[-87.61828127816177,41.65910686100659],[-87.6182854169083,41.65910687467962],[-87.61828549156004,41.6591068748696],[-87.6184463321568,41.659107408294844],[-87.61845341047405,41.65910743173792],[-87.61847803154292,41.65910479057895],[-87.61855818959228,41.65909619213824],[-87.61864001943354,41.65908741440269],[-87.61864522539466,41.65908685591617],[-87.61866273968099,41.659084977364586],[-87.61873806580951,41.659083318296],[-87.61876315524019,41.65908276569117],[-87.61884263591152,41.65908101492499],[-87.6188638779019,41.659080547057094],[-87.61890428277884,41.659079657115164],[-87.61893949282472,41.65907888169304],[-87.61897620619393,41.65907807306625],[-87.61902625510547,41.659076970507165],[-87.61914342864935,41.659074389522026],[-87.61936589664377,41.65906948903666],[-87.61938884803104,41.65906898338968],[-87.61955295362398,41.65906536798219],[-87.61968413508166,41.659062477976356],[-87.61968414130541,41.65906247774058],[-87.61968414569651,41.65906247776784],[-87.61965645710191,41.65912072035885],[-87.61963819058883,41.659159143049294],[-87.61963376108548,41.659168459769894],[-87.61955967653144,41.65932428805508],[-87.61955928502631,41.65932511084875],[-87.61947579700139,41.65950071763651],[-87.61945847290829,41.659537157321],[-87.61942760383775,41.659758643178016],[-87.6193855259237,41.66006055216183],[-87.61938552553049,41.6600605546293],[-87.61938552513728,41.66006055709676],[-87.61938552433874,41.66006056312937],[-87.61940628329705,41.66017989494201],[-87.61951184245476,41.66078668766569],[-87.61972101995158,41.66100154389166],[-87.61974398777494,41.661025135004195],[-87.61985720925972,41.66114142973147],[-87.61985722490108,41.66114143833604],[-87.62025290227935,41.66136569049936],[-87.62025769917086,41.661367760955294],[-87.62151098385313,41.66190876064425],[-87.62202410987268,41.66213025282185],[-87.62202508419271,41.66215498265841],[-87.62202637394951,41.66218772903294],[-87.62202792828495,41.66222719410413],[-87.62202894211143,41.66225292340083],[-87.62202991008408,41.66227749869092],[-87.62203113466316,41.662308585979105],[-87.62203234041533,41.66233918932253],[-87.62203374433095,41.662374831412194],[-87.62203529490107,41.662414206993056],[-87.62206210914921,41.6624132702568],[-87.62208432139538,41.66241249439583],[-87.62205573569955,41.66312741010035],[-87.62208842899,41.66345226401207],[-87.62209331545228,41.663552698295206],[-87.62209826606606,41.6636544543753],[-87.6221001227653,41.66369262240848],[-87.62210730025653,41.66384014844752],[-87.62210887345326,41.66387248573735],[-87.62211035788117,41.66390291268836],[-87.62211911571411,41.66408246374786],[-87.62212628024665,41.664229577769696],[-87.62213648648292,41.66445969930397],[-87.62214551548264,41.664663275736416],[-87.62215814377785,41.66484601741787],[-87.62216374517274,41.66496085374984],[-87.6221680281496,41.66504866605104],[-87.62217326079765,41.66517513035187],[-87.62217835419423,41.66531092455705],[-87.62218462033574,41.66542186500516],[-87.62219826432897,41.66566342148358],[-87.62220949444064,41.665885513029345],[-87.62221749826571,41.66604412605278],[-87.6222232679377,41.66615835388104],[-87.62223169160706,41.66634663529631],[-87.6222386603949,41.66650239766469],[-87.6222459116907,41.66665497312406],[-87.62225286649799,41.666801234755546],[-87.6222610062002,41.66697286144336],[-87.62226495143614,41.66708283960078],[-87.62226606953384,41.66711400688602],[-87.62227355413012,41.66732262325275],[-87.62228821080035,41.66760049630676],[-87.62229233343085,41.66769462532336],[-87.6222925245521,41.667698976288904],[-87.62229678150763,41.66779616607683],[-87.62230968087961,41.66806412143216],[-87.62231774249913,41.6682393424103],[-87.62232403208256,41.668376433779365],[-87.62233212017911,41.66855278036579],[-87.62234201867189,41.6687675040497],[-87.62235060595673,41.66891901412189],[-87.62235706757265,41.66903302991406],[-87.622362738589,41.669146351159895],[-87.62237040232911,41.66929807834841],[-87.62237995596622,41.66948757964157],[-87.6223875838455,41.66963927915493],[-87.62239836795032,41.669853377074084],[-87.62240912155659,41.67006692592749],[-87.62242627316989,41.6704075499127],[-87.62243304601753,41.670543766025396],[-87.62244015083398,41.670733112165166],[-87.62244640521173,41.67089978971981],[-87.62245274185537,41.67110230640312],[-87.6224554951874,41.671191349857544],[-87.62246419336401,41.67146869159635],[-87.62246898428957,41.67164493563126],[-87.62247310458767,41.67179650361491],[-87.62248252833562,41.672011169345396],[-87.62249105501726,41.67225088534831],[-87.62249434918635,41.67237730977267],[-87.62249734618364,41.672555297140605],[-87.62250028198805,41.67272966516298],[-87.62250752077121,41.672969976924655],[-87.62251281960944,41.673143753873426],[-87.6225157301739,41.673235185843765],[-87.62252197603257,41.67346701115785],[-87.62252661973636,41.67363935725714],[-87.62253457788843,41.67390412549638],[-87.62253797422213,41.67401798171419],[-87.6225421220956,41.674156651408204],[-87.62254725783288,41.67429838934236],[-87.62255080306642,41.67440121011156],[-87.62255261791339,41.67447566428944],[-87.62255623329138,41.674624044817236],[-87.6225633020699,41.67486320282393],[-87.62256816080856,41.67502709737106],[-87.62257036728212,41.67510175704375],[-87.62257266722783,41.67517976538731],[-87.62257617762131,41.675288819965594],[-87.62258147822529,41.67545351281679],[-87.62258738584887,41.67563190421737],[-87.62259399111318,41.67583003117419],[-87.6226011618645,41.67604663129538],[-87.62260537147493,41.67620120119611],[-87.62261247720438,41.67646211181491],[-87.62261686045906,41.67661933463238],[-87.62262183635255,41.676805870644635],[-87.62262630725105,41.676971766103655],[-87.62262979583222,41.677108235902665],[-87.62263388186578,41.67726809170329],[-87.62263906263364,41.67746599052082],[-87.62264394217601,41.677638035804634],[-87.62265175621596,41.67786602911067],[-87.6226582884707,41.678026204089065],[-87.62223732108242,41.67803100717528],[-87.62208522068603,41.67803464902755],[-87.62202677718402,41.678035366950176],[-87.62165145700273,41.67803997727383],[-87.62131931541525,41.678044890657794],[-87.62112311535765,41.678048356265045],[-87.62106397638249,41.67804940090412],[-87.62079290120003,41.67805364836171],[-87.6205095511068,41.678058746084574],[-87.62010658983581,41.6780659945121],[-87.61990160349181,41.67806923226023],[-87.61949704019167,41.67807502618142],[-87.61917403617983,41.678081197627186],[-87.6186965253676,41.6780867368481],[-87.61845672777102,41.67808945642012],[-87.61829018716439,41.67809134474914],[-87.61800849603696,41.67809551958867],[-87.61782081929962,41.678098623700556],[-87.61749734899107,41.67810397301057],[-87.61736990140217,41.67810603323695],[-87.61719345520075,41.67810887888655],[-87.61696266466566,41.67811235977847],[-87.61677620656725,41.678114627543],[-87.61677049529226,41.67811469704218],[-87.61670591399053,41.67811547937244],[-87.6165917796111,41.678117498253485],[-87.6162550983209,41.67812345270033],[-87.61598310411438,41.678127930067056],[-87.61576179714845,41.678130171041055],[-87.61544258498998,41.67813432486262],[-87.6151415685914,41.67813823474123],[-87.61480956474482,41.67814384369643],[-87.61452991573766,41.678148681416175],[-87.61412490367906,41.67815593500915],[-87.61405749673334,41.678157142202004],[-87.6139287203319,41.678178249716694],[-87.61393023069762,41.67817137939216],[-87.61394799992293,41.67809055160809],[-87.61405498197237,41.67760547350025],[-87.61414793392032,41.67722973791827],[-87.61415675764661,41.67717696463456],[-87.61420237429702,41.67690178717843],[-87.61433449744067,41.67645974657023],[-87.61435418728843,41.676376167164996],[-87.61436462224519,41.67633278380979],[-87.61436470938816,41.676332419906835],[-87.61437049950797,41.67630834684402],[-87.61438633471127,41.67624223874719],[-87.61439258378333,41.67621517749977],[-87.61441947191878,41.67618378580756],[-87.61443077758305,41.676113532862146],[-87.61445384217691,41.67597337284278],[-87.61448733848998,41.67584151080333],[-87.61455998842304,41.67560389410502],[-87.61461328454229,41.6753785055701],[-87.61463827044581,41.675271289572954],[-87.61467320724013,41.6751332619825],[-87.61477339952118,41.67468175863634],[-87.61485326506812,41.67432995342865],[-87.61497315152357,41.673835349613945],[-87.61506755251361,41.67336940192334],[-87.61515334317183,41.673060513758884],[-87.6152123424056,41.67273327686355],[-87.61522111848306,41.67268461939247],[-87.61530202399055,41.672362322171324],[-87.61538124270004,41.67198581334421],[-87.61543477328281,41.6717388137888],[-87.61546803608465,41.671586367898044],[-87.61550147875138,41.671458964948904],[-87.61556788640226,41.67120587124202],[-87.6156447921119,41.67083140596393],[-87.61566171483152,41.67074952445623],[-87.61569234279153,41.67062827862273],[-87.6157612609842,41.670354960926616],[-87.61589531676626,41.669736605854055],[-87.61608946787256,41.66889736278199],[-87.61612797359787,41.668766904347954],[-87.61618234708008,41.66844341102823],[-87.61625508867931,41.66819618803236],[-87.6163018388103,41.66798242102007],[-87.61638177519379,41.667663889909626],[-87.6164751209073,41.66725007618687],[-87.61656870941769,41.66685547454428],[-87.61665432404897,41.66656099186364],[-87.61675291960624,41.66616847949988],[-87.61696736725821,41.665229535716236],[-87.61714877542138,41.6643404697747],[-87.61721096964017,41.6638883838594],[-87.61722024365767,41.6637532824183],[-87.61723387647088,41.663555088486945],[-87.61727411270991,41.66335054247507],[-87.61748654559996,41.66250935197168]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7629956.50297","perimeter":"0.0","tract_cent":"1183079.46201531","census_t_1":"17031500300","tract_numa":"30","tract_comm":"50","objectid":"503","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1830218.93058224","census_tra":"500300","tract_ce_3":"41.6893166","tract_crea":"","tract_ce_2":"-87.60537163","shape_len":"11050.4418132"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60156508169189,41.68622095301444],[-87.60157012805108,41.68620935576318],[-87.60167606578537,41.68621344722583],[-87.60194230282592,41.68618333618143],[-87.60217968965172,41.686175594176106],[-87.6023216550282,41.68615606407656],[-87.60240940979571,41.68615026114625],[-87.60249157954941,41.68613806126911],[-87.60257950222721,41.686117416553756],[-87.60270431500615,41.6860864041248],[-87.60292786468011,41.686027474500776],[-87.60309329086245,41.685966435500674],[-87.60341459098156,41.68583798387394],[-87.60378873133072,41.685688405555545],[-87.60410329194232,41.68556460174448],[-87.60418822729919,41.68554513446545],[-87.60425116849632,41.68553140046712],[-87.60431196976492,41.68552237311244],[-87.60441671780978,41.685512032756094],[-87.60457531623133,41.68550518977498],[-87.60486583831175,41.68550324448226],[-87.60591041062547,41.68549202275428],[-87.60592415874524,41.68549189461737],[-87.60668320548442,41.6854848156888],[-87.60676428126705,41.68548405930978],[-87.60705656659107,41.68548131032165],[-87.6074256732143,41.68547783779268],[-87.6075363189216,41.68547694435751],[-87.60794426412667,41.68547364765288],[-87.60826591347004,41.685470899251634],[-87.60863149896318,41.685467774137834],[-87.60913259971979,41.68546270020362],[-87.60947251722276,41.6854599617258],[-87.60984370243378,41.685456970114444],[-87.610420986099,41.685452095425525],[-87.6109328160466,41.68544677870439],[-87.61108146833998,41.68544535590744],[-87.61139546737347,41.68544234978134],[-87.61143851379504,41.685724746722336],[-87.61142540809206,41.685853257000325],[-87.61141692720841,41.685936418774276],[-87.61135082929701,41.68624570155702],[-87.61132275549136,41.68634130213945],[-87.61128296912158,41.68647678716407],[-87.61122886683093,41.68671506698928],[-87.61113966317829,41.68710969038888],[-87.61109036543482,41.6873283234484],[-87.61104570846211,41.687526375707655],[-87.61096462610647,41.68787554864918],[-87.61083521396432,41.68844410201985],[-87.61075829704227,41.68878726368824],[-87.61071632924536,41.688971418912125],[-87.61067679721846,41.689145969724954],[-87.61062866830808,41.68935847709659],[-87.61059204675725,41.68951632029306],[-87.61053777920556,41.68975254037203],[-87.61048604178268,41.6899785674167],[-87.6104184543843,41.690272938346865],[-87.61036359155472,41.690516427043555],[-87.6102968269101,41.69081242220425],[-87.6102625144033,41.690959796437035],[-87.61022140063639,41.691136382427146],[-87.61017609245356,41.69133736654629],[-87.61013502233615,41.69151952375903],[-87.61009348031054,41.691698028021555],[-87.61006527901417,41.69182488532165],[-87.61001933615708,41.69203154639748],[-87.60998126993924,41.69220367818975],[-87.60994389148605,41.69238303188156],[-87.60990103359437,41.69259064510545],[-87.60986050403471,41.69277120783212],[-87.60965465340482,41.69277397938745],[-87.60963229387008,41.69277417860612],[-87.60927616164935,41.69277735019976],[-87.6090915089167,41.69277899382991],[-87.60898286408117,41.69277995596425],[-87.60878574150331,41.692782527948296],[-87.60864871380939,41.692784106398285],[-87.6084128242434,41.6927860216251],[-87.60826803890504,41.692787193922975],[-87.6080876372163,41.69279077583292],[-87.60782457569002,41.69279636043378],[-87.60756779345535,41.6928002826038],[-87.6074332500524,41.69280234182937],[-87.60720479990295,41.69280361575886],[-87.60701098924396,41.69280469596852],[-87.6066377845668,41.69280771553167],[-87.60640071463379,41.692810360407115],[-87.60612881459059,41.69281396391198],[-87.6059927001767,41.69281568301329],[-87.60577562077876,41.69281842457695],[-87.60556286125298,41.69282118485434],[-87.60536907133617,41.69282369880796],[-87.60534072253274,41.69282401924697],[-87.60512899779242,41.692826413144914],[-87.6047094939611,41.69283115480625],[-87.6041504810742,41.69283661059405],[-87.60313765236565,41.69285679966262],[-87.60242843967701,41.692870778946045],[-87.60235649842829,41.69287219657374],[-87.60191052490497,41.69287681947378],[-87.60176591607895,41.6928783181377],[-87.60100590307141,41.69288269846661],[-87.60086234532055,41.69287390980979],[-87.60059393409182,41.69285747732323],[-87.60035692891506,41.69284296713991],[-87.60019560458224,41.69282561262147],[-87.60006594617568,41.69281166420776],[-87.59999841492765,41.69279827045808],[-87.59933224243181,41.69266614141086],[-87.59909704860401,41.69260689830113],[-87.59884317393889,41.69253324504629],[-87.59867339533146,41.692483989160806],[-87.59851394914966,41.692435143504916],[-87.59830533675425,41.692372780481016],[-87.5982904058567,41.692368160956285],[-87.59830571541791,41.69233951971012],[-87.59834845966284,41.69227019662324],[-87.59845192669208,41.69207789434678],[-87.59870882011728,41.69160065128013],[-87.59885609686127,41.69130937639705],[-87.59908541939048,41.69089452418613],[-87.59917489277463,41.69073266164834],[-87.59939448256561,41.69034440255199],[-87.59945011435126,41.690246038497015],[-87.59952961726802,41.6901058040027],[-87.59973682619365,41.6897403051148],[-87.5999025616663,41.689432254704926],[-87.59999048570836,41.68926882885426],[-87.60008315197567,41.68908938324269],[-87.60029274784436,41.688683497835164],[-87.60029586616872,41.6886774582421],[-87.600342432598,41.6886017043492],[-87.6004726142014,41.68836062177918],[-87.60059503775162,41.688137818152704],[-87.60069388790565,41.68796105834357],[-87.60081801902167,41.687722690441625],[-87.60094266680012,41.68748332976887],[-87.60103192327341,41.687311928013045],[-87.60131033640938,41.686770543538174],[-87.60136774399317,41.68666700877055],[-87.6014327590629,41.686523484808],[-87.60144982893694,41.68648580186544],[-87.60151965166227,41.68632535178445],[-87.60154276497863,41.68627223503794],[-87.60156508169189,41.68622095301444]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"88424695.4406","perimeter":"0.0","tract_cent":"1202303.99813172","census_t_1":"17031550100","tract_numa":"148","tract_comm":"55","objectid":"500","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1821588.94689414","census_tra":"550100","tract_ce_3":"41.66516773","tract_crea":"","tract_ce_2":"-87.53528496","shape_len":"48020.3058466"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.52469709217728,41.68454608262669],[-87.52471060741264,41.68348209895893],[-87.5247228726781,41.682516461110254],[-87.52472298094825,41.68250795966819],[-87.52472298498857,41.6825076369636],[-87.52472299215191,41.68250706482153],[-87.52473330633569,41.68169499834756],[-87.52473814112987,41.68131434537329],[-87.52474327192157,41.68091039235757],[-87.52474457988966,41.68080711379125],[-87.52474963245893,41.68040817051189],[-87.52475100827968,41.68029970316141],[-87.52476051605105,41.67955015065309],[-87.52476627005147,41.67909655175442],[-87.52476767237708,41.678987714355635],[-87.52476804076784,41.678959133377525],[-87.52476884638143,41.67889661881483],[-87.52477078683275,41.678742949155136],[-87.52477086481092,41.67873677825403],[-87.52477106788838,41.67872067211113],[-87.52477735242715,41.67822294475346],[-87.52477954140964,41.67805105254874],[-87.52478813294165,41.67737633943757],[-87.52478923264043,41.67728997375169],[-87.52479027847065,41.677207852891016],[-87.52480022668823,41.67642474676916],[-87.52480197487527,41.676286740608795],[-87.52480745326069,41.675854209669026],[-87.52480765621632,41.67583816938119],[-87.52480884746932,41.6757441308908],[-87.52480902020886,41.675730475488685],[-87.52480966062285,41.6756799214471],[-87.5248109996224,41.67557422360269],[-87.52481257519831,41.67544982754423],[-87.52481442132161,41.67530410636067],[-87.52481698686866,41.67510151560281],[-87.52482011050037,41.67485488635173],[-87.52482234155306,41.67467872553407],[-87.52482494448067,41.67447319995395],[-87.524827064209,41.674305843257166],[-87.52483003891312,41.674070957843725],[-87.52483114115063,41.673983935956365],[-87.52483272472999,41.67385956297232],[-87.52483390550931,41.67376679061104],[-87.5248354486446,41.67364558951185],[-87.52483642240354,41.67355412007209],[-87.52483837979548,41.67337021552701],[-87.52484296475055,41.67293937188596],[-87.52484705603489,41.67255496022842],[-87.52485399673459,41.671902763095],[-87.52486078236177,41.671265103728366],[-87.52486934530386,41.670460432781795],[-87.52487083660795,41.670320304124935],[-87.5248808714943,41.669377244688135],[-87.52488317985677,41.6691602806559],[-87.52489547830925,41.668004419247005],[-87.52489843254703,41.66772677723748],[-87.5249053601081,41.66707563137159],[-87.52490912697466,41.66672158229566],[-87.52491251963092,41.66640267672822],[-87.5249132529003,41.66633376474792],[-87.52491545898789,41.66612637926191],[-87.52492511932704,41.665218315580475],[-87.52493390136738,41.664392774377696],[-87.52494290020208,41.66354679777636],[-87.5249513824934,41.66274934170022],[-87.52495299824534,41.662597458086694],[-87.52496026958838,41.66191384415121],[-87.5249655120332,41.66142095753677],[-87.52497550362294,41.660481499662616],[-87.52498043820995,41.66001749822226],[-87.52498044636702,41.66001669967698],[-87.52498908365271,41.6592045545793],[-87.52498909828975,41.659203208583776],[-87.52499066392294,41.65905598084548],[-87.52499191501194,41.6589524276034],[-87.52499507508787,41.65869083797546],[-87.52499742920519,41.658495947412185],[-87.52500273920165,41.6580564005216],[-87.52500389598285,41.65796064711028],[-87.5250085597769,41.6575745501664],[-87.52501407334402,41.65711808879785],[-87.52501925562612,41.65668907670213],[-87.52502316071916,41.65636576842115],[-87.5250291850317,41.65586702739036],[-87.52503394826768,41.655472644467835],[-87.52503456126618,41.65542189136595],[-87.52503531099285,41.65535982238539],[-87.52504123259345,41.65486953476363],[-87.52504273255775,41.65474535233525],[-87.52504664393834,41.65442150994083],[-87.52505125150923,41.65404001764505],[-87.52505276954055,41.65391432648674],[-87.525058645188,41.653427825611246],[-87.52505991598825,41.65332260823782],[-87.52506634740881,41.65279005703901],[-87.52506997624307,41.65248957431287],[-87.52507024320924,41.65246745871034],[-87.52507260572504,41.65227183608],[-87.52507420783459,41.65213914493066],[-87.52507699146804,41.65190866221726],[-87.52507798941828,41.651826023899375],[-87.52508440998415,41.65129383309298],[-87.52508587966967,41.651172021487305],[-87.52509134479398,41.6507190267501],[-87.52509603216588,41.65033046561642],[-87.52510052239259,41.64995822478025],[-87.5251052131558,41.64956937765862],[-87.52510636893672,41.649473576073575],[-87.52511010809305,41.649163632275524],[-87.52511012013345,41.64916263973093],[-87.52511438621768,41.6488089830406],[-87.52511602694605,41.648671832798186],[-87.52512162204876,41.6482084119162],[-87.5251260107751,41.64784492606146],[-87.52512713336716,41.647751947321915],[-87.52513274638562,41.647287013260296],[-87.52513540643926,41.64706665556892],[-87.52513772611296,41.64687452545701],[-87.52513787500055,41.64686220274741],[-87.52514376791922,41.64637406165311],[-87.52515070680286,41.64579925731933],[-87.52515628720583,41.64533697583043],[-87.52515713548185,41.64526669717471],[-87.52516572140682,41.644555436754594],[-87.52516587053968,41.64454312227481],[-87.52534735141569,41.64454427162738],[-87.52566323716249,41.64454627162222],[-87.52784347705688,41.64456005227083],[-87.52853461992285,41.644564558774924],[-87.52853506258685,41.644564561599935],[-87.52993767583817,41.64457369433689],[-87.53020107340858,41.644572845064985],[-87.53074797648135,41.64457118494744],[-87.53086793383709,41.6445708204668],[-87.53086828800664,41.644570819646205],[-87.53502975255795,41.644558100164815],[-87.53797964303615,41.64456285188691],[-87.53902451087875,41.644563875534544],[-87.53973867327029,41.64456471919287],[-87.53993568147368,41.64456390899783],[-87.53993740845624,41.644563901708025],[-87.5401098280429,41.64456319262867],[-87.54068068242887,41.6445608461616],[-87.54085138104136,41.644560160601465],[-87.54130065396211,41.644885686831586],[-87.5416084758358,41.64512642853674],[-87.54188096485355,41.64533903669768],[-87.54215162743866,41.645549696871434],[-87.54241572423712,41.64575231831329],[-87.54271517614433,41.64598106152994],[-87.54311917615033,41.64629839675756],[-87.54323124191437,41.64638648183643],[-87.54350782937733,41.64660392210743],[-87.54373400208009,41.64678332178823],[-87.54393976406134,41.6469458943947],[-87.5441298017194,41.6470928580471],[-87.54419959122966,41.647146962018546],[-87.5448740228695,41.64767049114853],[-87.54523683035838,41.647953039870444],[-87.54549227027422,41.64815040445624],[-87.54560691701703,41.648238985428335],[-87.54581722676859,41.64840744746623],[-87.54598843183848,41.64853887387872],[-87.5463375261058,41.6488068556008],[-87.54660444649564,41.64901458540594],[-87.54668791576185,41.649079544813354],[-87.5471892602007,41.64946497493661],[-87.54747205186627,41.649682380249864],[-87.54785067216362,41.64997580609718],[-87.54822910232802,41.650269080646424],[-87.54844550598726,41.650437030047506],[-87.548720705549,41.65065060832047],[-87.54905786572598,41.650914555261224],[-87.54943851439043,41.65121337655704],[-87.54958473691673,41.65132488492099],[-87.54958119732264,41.65185573921161],[-87.54957344938012,41.65301930710812],[-87.54957252757272,41.65352395826004],[-87.54957073119648,41.653686112038876],[-87.5495682623269,41.653908988067485],[-87.54956812674065,41.65404455772536],[-87.54956703411187,41.65417932499433],[-87.54956152968293,41.65504685648745],[-87.54955904460195,41.6555134497805],[-87.54955470697895,41.65632792442167],[-87.54955022107877,41.65734607258998],[-87.5495495478345,41.65749890013898],[-87.54954381218174,41.658723413793105],[-87.54954418405319,41.659169702231054],[-87.54954439993953,41.659429427063294],[-87.54954500798597,41.65963610754257],[-87.5495461220572,41.660014724427334],[-87.54954859643266,41.660556089968544],[-87.54954890206236,41.660905281950335],[-87.54954896989906,41.66098295026777],[-87.54954926159003,41.661316057275954],[-87.5495519611327,41.66173340530757],[-87.54954198806509,41.66184945252203],[-87.54954234895547,41.66193264827959],[-87.54834581119232,41.66126652813291],[-87.54800957103458,41.66107933124133],[-87.54779018307168,41.66095090653585],[-87.54713020732605,41.66056458700535],[-87.54586421329134,41.65983312967863],[-87.54510860221554,41.65937616281192],[-87.54486985704537,41.65923172320091],[-87.54471034026275,41.65922222809452],[-87.54504775271354,41.660952369390685],[-87.54506841163821,41.66105885425879],[-87.54543873775022,41.662952243810196],[-87.54577075569918,41.66464983416333],[-87.54590898815634,41.6653571056448],[-87.54613291487445,41.66650337152962],[-87.54645249092225,41.66813603931866],[-87.54638904379922,41.66838705504368],[-87.54634724995215,41.66866326051666],[-87.54633515529659,41.66882989614561],[-87.54632853730733,41.668922472185784],[-87.54628730268067,41.66915271408003],[-87.5462149947589,41.66941739039004],[-87.5461436010462,41.66960694670123],[-87.54605573821955,41.669871516073385],[-87.54592047740259,41.67023352843003],[-87.54584922439604,41.67041142206565],[-87.5457934500587,41.6705955961977],[-87.54571392533559,41.67081391228025],[-87.54557144447793,41.671129906240054],[-87.54550831388397,41.67127938282746],[-87.5454136910059,41.671497594902625],[-87.54527134864225,41.6718019262478],[-87.54519931378283,41.67204361985284],[-87.54510507654601,41.67219253983103],[-87.54505707548206,41.67237676712888],[-87.54502424713719,41.67255492371911],[-87.54499144626233,41.67269328735635],[-87.54496688507847,41.67283136500883],[-87.54494929176867,41.67299830568821],[-87.54491911986966,41.67318368432858],[-87.5449320596653,41.67381051042625],[-87.54502703551294,41.6784990359252],[-87.54507740138274,41.680985192295914],[-87.54507870575058,41.681065815956934],[-87.54507849423688,41.682770386657225],[-87.544939813619,41.682772522751335],[-87.54493956443852,41.68275388951194],[-87.54380531166971,41.68275616959345],[-87.54373936084772,41.6827573189094],[-87.54252311796043,41.68277850663241],[-87.54132749691775,41.68278796205688],[-87.54011709215256,41.68277579569279],[-87.54011856030569,41.68307995985671],[-87.5401202875621,41.68360699276444],[-87.54012461608143,41.68405934294649],[-87.54012846178938,41.684377113918316],[-87.54012967171103,41.68450677204197],[-87.53887464433903,41.68450976310378],[-87.53766926655578,41.68449388022508],[-87.53766923616587,41.68449388056354],[-87.53646597928964,41.6845191600079],[-87.53525818007077,41.68451867052208],[-87.53405468488272,41.68451819635387],[-87.5328452665639,41.684509436162855],[-87.53164118246613,41.68450104020169],[-87.53164132957203,41.684536256993866],[-87.53164145890042,41.68456715518729],[-87.53147486617526,41.684566946043766],[-87.53129113080479,41.68457911304597],[-87.53041374052708,41.684566226913546],[-87.53034494270173,41.68513073498593],[-87.53037988402406,41.68636901379245],[-87.53040048717901,41.68819850967657],[-87.53040054588158,41.68820374049799],[-87.5303641644412,41.69182631683206],[-87.53021771331564,41.69182576740357],[-87.52947455407195,41.69182297494702],[-87.52934084595688,41.691822481427955],[-87.52914271280483,41.6918217496225],[-87.52903362466455,41.69182149389293],[-87.52892453982169,41.69182123808287],[-87.52887088425459,41.69182111881704],[-87.52865448592469,41.69182063730006],[-87.52826091206606,41.69181895081175],[-87.52826083884207,41.69181895057322],[-87.52792767402889,41.691817521737086],[-87.52763693883803,41.691816526629346],[-87.52738764786224,41.69181571167215],[-87.52704477815611,41.69181447237641],[-87.52655633989767,41.691812705288626],[-87.52610968687206,41.691810199969744],[-87.52582917297464,41.69180869111053],[-87.52555949669328,41.691807239631984],[-87.52527901495264,41.691806118526465],[-87.52508479012648,41.691805350671856],[-87.52501229902693,41.691805066119215],[-87.52462014975418,41.691800770896236],[-87.52464801686055,41.68852133994836],[-87.52464801734857,41.68852130098237],[-87.52465089514708,41.68818259350706],[-87.5246581899367,41.687608384768915],[-87.52465819275123,41.68760816002842],[-87.52467106542338,41.68659492378264],[-87.52467480733156,41.686300382332746],[-87.52469709217728,41.68454608262669]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13418309.3703","perimeter":"0.0","tract_cent":"1200875.94946926","census_t_1":"17031520200","tract_numa":"64","tract_comm":"52","objectid":"501","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1839245.54232738","census_tra":"520200","tract_ce_3":"41.71365526","tract_crea":"","tract_ce_2":"-87.5399158","shape_len":"19871.8991515"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.53654254894106,41.722941559545546],[-87.5362322024552,41.72256101143212],[-87.53617209337642,41.72249278253039],[-87.53597389107773,41.722252185785706],[-87.53564705668404,41.721850592707895],[-87.53541107651355,41.72156390272044],[-87.53528569547373,41.721397742150565],[-87.53528616156981,41.72135057068185],[-87.53529106478452,41.7208542686275],[-87.53528732866084,41.72039539382426],[-87.53528745206799,41.72011305991311],[-87.53528888093304,41.71984363304542],[-87.53528826463737,41.71954952553782],[-87.53528801772502,41.71943143443666],[-87.53528790538039,41.71937775217114],[-87.53528580089565,41.71893206128209],[-87.53528474213033,41.71834855825425],[-87.53528190296834,41.71790895455829],[-87.53528155942334,41.717747631595216],[-87.5352807519606,41.717368426727276],[-87.53528296492642,41.71682836129936],[-87.53527611624507,41.716245064838226],[-87.53527740689181,41.71582007239946],[-87.5352761399383,41.715693594925774],[-87.53527690310165,41.7151689151495],[-87.53527782743349,41.71516173091775],[-87.53527727061358,41.71474475241366],[-87.53527615634303,41.71391003842985],[-87.53527612824054,41.71388912738151],[-87.5352759970764,41.713791099830196],[-87.5352757819665,41.71363004302063],[-87.53527564488297,41.71352808199764],[-87.5352755698409,41.71347173493295],[-87.53527546675586,41.71339464943541],[-87.5352754390261,41.71337385611891],[-87.53527538225234,41.71333133942831],[-87.5352752842487,41.71325819534912],[-87.53527490372358,41.71297377904903],[-87.53527552934327,41.71281294266124],[-87.53527612385278,41.712660098047316],[-87.53527776000612,41.71223952993669],[-87.53527856345306,41.71197252653236],[-87.53528436417851,41.710045880353654],[-87.53528801726293,41.70883288952304],[-87.53528958823038,41.708310382476036],[-87.5352884973127,41.70821662655628],[-87.53590434505979,41.70821620931782],[-87.53610575817663,41.70821607220697],[-87.5364968245243,41.708215704403365],[-87.53707088977926,41.708215162145166],[-87.53710050550028,41.70821513491257],[-87.53770547504594,41.708214580502315],[-87.53820459770253,41.70821412071567],[-87.53830970554564,41.70821444206505],[-87.53851027661987,41.708215055363745],[-87.53891612273527,41.708209727891706],[-87.53938526320577,41.70820356788769],[-87.53954062429443,41.708200211312565],[-87.53990595781744,41.70819231748764],[-87.54012701656868,41.70819202026832],[-87.54067124008488,41.70819128696155],[-87.540734351846,41.70819133917734],[-87.54133926944472,41.70819183857766],[-87.54134057777658,41.7072527623278],[-87.5413407305507,41.70681660889034],[-87.54133934963383,41.70639918799648],[-87.54133772926572,41.705909371392785],[-87.54133930145215,41.70534561680616],[-87.54134014851904,41.704817066783384],[-87.54133947970813,41.70458310236807],[-87.54133807968033,41.704093430384155],[-87.54133808236885,41.70356503908775],[-87.54133967481582,41.70323364324723],[-87.54134196360893,41.70275734933775],[-87.54198292784822,41.70275858985576],[-87.54256195473074,41.70275889839361],[-87.54306704587228,41.70275916486572],[-87.54315390833747,41.7027592105709],[-87.54325746190773,41.70275977740124],[-87.5437666614004,41.702762560886725],[-87.54379573476767,41.702762719750936],[-87.54401955774061,41.702763942553084],[-87.54422752618547,41.70276507855353],[-87.54483844254432,41.70276588027796],[-87.54542663826318,41.702766649488076],[-87.54562666949197,41.70276691017883],[-87.54590480602263,41.70276727241478],[-87.54590291616292,41.70277083723572],[-87.54575557331435,41.70304878576751],[-87.5456599045999,41.70338024770452],[-87.54562265736077,41.70392970715365],[-87.54562860885511,41.70456966542909],[-87.54562874747984,41.70458456035109],[-87.5456292609564,41.704639790285256],[-87.54567185509052,41.704903482040535],[-87.54571472887345,41.705144288061526],[-87.5458763020901,41.705611952698355],[-87.54585327535617,41.706301913205955],[-87.5458535312051,41.706399726599955],[-87.54585596867797,41.707332642858546],[-87.54579324720852,41.707469648489116],[-87.54572993607391,41.70756246898596],[-87.54563774899373,41.70769762350706],[-87.54526584395977,41.70814171138215],[-87.54519484208465,41.70819756061661],[-87.54458744012325,41.708675327426256],[-87.54426151159468,41.708894858144745],[-87.54389990669871,41.70919144779195],[-87.5436411220449,41.709403701466314],[-87.54333960394449,41.70977288050487],[-87.54330451429003,41.709815844148316],[-87.54327853397159,41.709847654386515],[-87.54319661338161,41.71003489407186],[-87.54316757118534,41.71010127369797],[-87.54308681515896,41.71022292005673],[-87.54306317145443,41.710258534841635],[-87.54285984599414,41.7105565962015],[-87.54276886892097,41.71072277100127],[-87.54272558224002,41.710753867350505],[-87.5427337654918,41.71079990165678],[-87.54267351451126,41.71095008449804],[-87.54261355415741,41.7113988887892],[-87.54260723203961,41.71191473637456],[-87.54259537048512,41.71288253293592],[-87.54253310780012,41.713521914159834],[-87.54244466130612,41.71382096902219],[-87.5424005200795,41.71397021857533],[-87.54228813493182,41.714255320257756],[-87.54221100471005,41.71462230762744],[-87.5421848634385,41.71527554921567],[-87.54218173864692,41.715530342500784],[-87.54218035621214,41.71564306419743],[-87.54221184385547,41.71576212982281],[-87.54231840624699,41.715861573111596],[-87.54242002047856,41.716438590845186],[-87.5430300336987,41.717147524647146],[-87.54305736863587,41.71733322247489],[-87.54306226690399,41.71736649748241],[-87.54307732793772,41.7174688105459],[-87.54312270500544,41.71775799506682],[-87.54312929426823,41.717799986659564],[-87.5431414776402,41.71788157681933],[-87.54314920722213,41.71792012527783],[-87.54315346172747,41.717941344199936],[-87.54316417423902,41.71802226999667],[-87.54303943750756,41.71911516494615],[-87.5430233723186,41.71925591645373],[-87.54301130211475,41.719361668399706],[-87.54299228841353,41.71952825570592],[-87.54297379283804,41.719690454844745],[-87.54288891834334,41.720134638425094],[-87.54278795805594,41.72033810176539],[-87.5427045973459,41.72050609731861],[-87.54269243576454,41.72081609783102],[-87.5427349192462,41.720968794120736],[-87.54280855973641,41.72123347452145],[-87.54295835878156,41.72163228938286],[-87.54302190552431,41.72199217911183],[-87.54309416598826,41.7225513198656],[-87.54310169207454,41.7226084593306],[-87.54313694360947,41.72280197561811],[-87.54314429934149,41.72286175283583],[-87.54301129250332,41.72285825542781],[-87.54266723154342,41.7228659606492],[-87.54234079423529,41.72286995153332],[-87.54039443390995,41.72289361181244],[-87.54001765816936,41.72289721879955],[-87.53983762325413,41.722899292470466],[-87.53948170759512,41.72290541475409],[-87.53892269016278,41.72291350005557],[-87.53856243198742,41.72291870936845],[-87.53770831413843,41.72292677037484],[-87.53741490115321,41.722929537627806],[-87.53710993057965,41.72293385361732],[-87.53686031858454,41.72293738564702],[-87.53654254894106,41.722941559545546]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"31583913.7684","perimeter":"0.0","tract_cent":"1191320.6561216","census_t_1":"17031510300","tract_numa":"80","tract_comm":"51","objectid":"504","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1839926.76913753","census_tra":"510300","tract_ce_3":"41.71576091","tract_crea":"","tract_ce_2":"-87.57488817","shape_len":"23646.8462411"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56561641799868,41.72344362139923],[-87.56561267334165,41.72332661128485],[-87.56558907657275,41.72258926212085],[-87.56471662063171,41.72260033809011],[-87.56470837884693,41.72206553907188],[-87.56470245821056,41.721738596906626],[-87.56469145096462,41.72106698983518],[-87.56468772641506,41.72074019951919],[-87.56468413857498,41.72041423339342],[-87.56468188863207,41.720292590085286],[-87.56468133254624,41.72026265660543],[-87.56467724682275,41.72004277186829],[-87.56467194640562,41.71968531696571],[-87.56466878412657,41.71944662281735],[-87.56466433560328,41.71911908660239],[-87.56466009165732,41.71895124366666],[-87.56465621964429,41.71879811219051],[-87.56465127937714,41.71833975117157],[-87.56464320892212,41.717799780695614],[-87.56463549373284,41.7171593706104],[-87.56463515349346,41.71713450181982],[-87.56462956237118,41.71672575655719],[-87.56462351369021,41.71629280032248],[-87.5646192475859,41.71592544512788],[-87.56461832444728,41.71585845020377],[-87.56461114113749,41.71535569039875],[-87.5646052037492,41.71494011428668],[-87.56460468463129,41.714904653973484],[-87.56460072216557,41.71463381860495],[-87.56459824550974,41.714460553340444],[-87.56459669320695,41.71435411836216],[-87.56459266753492,41.71407414369618],[-87.5645916594552,41.713987169282525],[-87.56458631412062,41.71352625103847],[-87.56458249760908,41.71319712920891],[-87.56458100324703,41.71308893823211],[-87.56457827812483,41.712890423541],[-87.5645748008834,41.71261053480293],[-87.56457172418091,41.71237077065223],[-87.56456940585493,41.7121842238825],[-87.56456260208927,41.71170979342065],[-87.5645552829514,41.711199440740444],[-87.56455073002861,41.71089303461116],[-87.56454717702569,41.710613364815394],[-87.56454262282944,41.7102947738728],[-87.56453669931754,41.70989617192489],[-87.56453054948263,41.70948226501601],[-87.56452499023275,41.709057462142546],[-87.56452098610964,41.70877877719504],[-87.56451744140665,41.70853659530286],[-87.56451109344978,41.70810293390883],[-87.5649860989047,41.7080960826266],[-87.5657193863511,41.70808484611742],[-87.56648131195162,41.708073165946175],[-87.56692668451723,41.70806569230021],[-87.56741160498487,41.7080575529486],[-87.56813415686209,41.70804640099143],[-87.56872810338722,41.70803723059988],[-87.56893179960333,41.708034084799834],[-87.5694587669912,41.70802680213179],[-87.56945898749458,41.70802679920665],[-87.5695878864848,41.708025017309794],[-87.5705704320434,41.708011428031924],[-87.57066019831527,41.70801015879808],[-87.57253951305603,41.70798357311005],[-87.57260045291115,41.70798263622367],[-87.57348879025957,41.70796897706496],[-87.5734888690116,41.707968975939096],[-87.57358072802225,41.70796756293258],[-87.57387897192812,41.70796301113412],[-87.57387914005514,41.707963008677645],[-87.57405892089734,41.707960293443335],[-87.57425259445061,41.70795736782365],[-87.5749367884463,41.70794703032434],[-87.57512985620147,41.70794410334419],[-87.57575318838273,41.70791986777203],[-87.57593218317965,41.70793193603665],[-87.57599182429105,41.70793103132828],[-87.57629739742362,41.707926395590434],[-87.57925692619865,41.70788093997079],[-87.57999549546416,41.707878017179155],[-87.58021293194246,41.707877155845615],[-87.58070751926292,41.70787197387246],[-87.5818125694689,41.70786038878796],[-87.58213309144332,41.707857026600536],[-87.58417486940694,41.70780132722561],[-87.58446817659967,41.707796240711865],[-87.58574571692942,41.707774261420376],[-87.58571042359961,41.70782816711271],[-87.58564108572295,41.7079340710522],[-87.58557681395546,41.70803223654493],[-87.5855227858403,41.70811838596494],[-87.58542548849067,41.708291358498506],[-87.5854098657984,41.70832163645089],[-87.58525556706148,41.70861597589223],[-87.58518862185153,41.708770566742615],[-87.58508645492059,41.70901277391407],[-87.58502964387566,41.70916756786295],[-87.5849376403939,41.70941815635693],[-87.58493105469611,41.70944228461639],[-87.58482928056125,41.70981515748173],[-87.58473733859127,41.71029006689983],[-87.58468646789649,41.710700395511616],[-87.5846281926436,41.71125008725751],[-87.58462963873066,41.711273019430934],[-87.58466227976463,41.71179066582186],[-87.5846829762904,41.71249109599474],[-87.5846793842618,41.71329617336673],[-87.58468060137334,41.71331728510548],[-87.58468365079342,41.7136067136581],[-87.58470239815327,41.71369533978761],[-87.58473697887598,41.71429512367187],[-87.58475053269186,41.71464117331328],[-87.5847538038317,41.71472469021915],[-87.58475868077626,41.71484920177522],[-87.58476531599574,41.715018614410475],[-87.58476596340681,41.71503513557838],[-87.58477698884177,41.715316627293724],[-87.58481874357446,41.716026991136964],[-87.58482728407479,41.716222030778546],[-87.58482960277239,41.71642625051638],[-87.58483613983299,41.716576242578334],[-87.58484410553191,41.71673809225558],[-87.5848476996339,41.716811121630464],[-87.58486329152052,41.71708675259568],[-87.58488064441208,41.71738105636893],[-87.5848914293237,41.71762591964955],[-87.58490024997266,41.717907461634965],[-87.5848906171855,41.718266476210566],[-87.58488921419386,41.71831876276121],[-87.58489890386316,41.71844333549528],[-87.58490775522809,41.71865591298046],[-87.58490979330885,41.718731514596314],[-87.58491723047656,41.71900735690323],[-87.5849257280398,41.71928519353654],[-87.5849268964092,41.71932340037396],[-87.5849329350921,41.71955426409119],[-87.58493726492074,41.719907183819814],[-87.58494447373126,41.720129229690876],[-87.58494596865467,41.72017528300022],[-87.58494834871748,41.720248597789784],[-87.58494835014764,41.72024863237747],[-87.58495047088698,41.72031395924543],[-87.58495200930588,41.720361347122584],[-87.5849548241034,41.7204480534314],[-87.58496118741922,41.720629862938985],[-87.58496308087375,41.72068469433596],[-87.58507331018956,41.72077837447894],[-87.58513043734445,41.72082711556589],[-87.5851659163575,41.72085993119889],[-87.58527675595671,41.72096288212109],[-87.5853610516185,41.721037870399826],[-87.58546710803873,41.72113152437077],[-87.58564801432279,41.721325146987205],[-87.58590879094892,41.72158069235478],[-87.58610446617148,41.72176446189145],[-87.58628169253909,41.72192032524036],[-87.58651187286694,41.722129703033865],[-87.58665234924567,41.7222565113732],[-87.58670378966859,41.72232155546236],[-87.58684519508287,41.722487257631514],[-87.5869847939061,41.72265042202213],[-87.58711377906515,41.72282072086449],[-87.58715510004073,41.722890283406585],[-87.58718158966184,41.72293573660354],[-87.58721436628484,41.722991864834356],[-87.58725344184964,41.72305763877871],[-87.58727096530039,41.72308656812734],[-87.58733434071719,41.72318920528786],[-87.58737431599786,41.72325635746184],[-87.58713026621477,41.72325580198986],[-87.58680373019665,41.7232608851134],[-87.58652023278609,41.72326624648741],[-87.58622759010194,41.723270518583575],[-87.58585802292123,41.723274633151874],[-87.58567981283072,41.72328239277155],[-87.58547621404611,41.723307824918905],[-87.58531076815422,41.7233204695883],[-87.58514431460323,41.72332315630191],[-87.58500576265332,41.723324658091656],[-87.58458898870127,41.72333257760642],[-87.58389649203194,41.723346587549294],[-87.58324984478307,41.72335540316902],[-87.58264762162028,41.72336347708467],[-87.582551905306,41.723364910242076],[-87.58198768824968,41.723372885428546],[-87.58106255085896,41.723389473076054],[-87.58056838180777,41.723398242897964],[-87.58025008226748,41.723403704389675],[-87.58012642851155,41.72340563822909],[-87.57925951859959,41.7234157322348],[-87.57809124547593,41.72343172951877],[-87.57683181026496,41.723451230979116],[-87.57538011105446,41.72347870878941],[-87.57511174832355,41.723469394999775],[-87.57473484236263,41.72347445392808],[-87.57439319949832,41.7234790592768],[-87.57416788046385,41.723482030372104],[-87.57408315652901,41.72348318550929],[-87.57367419671323,41.72348837247035],[-87.573090294269,41.72349583105085],[-87.57296858752507,41.72349776073688],[-87.57295290557757,41.723498009334634],[-87.57295290044954,41.7234980093007],[-87.57295281435282,41.723498010377554],[-87.57274406457849,41.72350108695172],[-87.57227196031425,41.723502420274016],[-87.57173839803063,41.72351174494906],[-87.57171687880437,41.723512120994215],[-87.57165596711336,41.72351308940459],[-87.5711567681038,41.723521099595644],[-87.57070794961423,41.72352806984263],[-87.57050142126693,41.723530472104606],[-87.57050141100764,41.72353047231093],[-87.56946139615829,41.72354208764461],[-87.5692781162402,41.72354427781008],[-87.569258519995,41.72354451195092],[-87.56911014184938,41.7235462695249],[-87.5685847713106,41.72356026917795],[-87.56838728875609,41.72357130436736],[-87.56814345926279,41.723590605745095],[-87.56809945498362,41.723595258502286],[-87.56792064298213,41.72361416414569],[-87.56761248567538,41.723652246340905],[-87.56715440441964,41.72370648036511],[-87.56683326764679,41.72374511636601],[-87.56680590608106,41.723748408143216],[-87.56675684139024,41.723754255531276],[-87.56635700073231,41.72380098500059],[-87.56597183551474,41.723845753122724],[-87.56563065067809,41.72388835571775],[-87.56561642178411,41.72344373421574],[-87.56561641799868,41.72344362139923]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10542061.155","perimeter":"0.0","tract_cent":"1194235.69296962","census_t_1":"17031510500","tract_numa":"31","tract_comm":"51","objectid":"505","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1835347.71102599","census_tra":"510500","tract_ce_3":"41.70312455","tract_crea":"","tract_ce_2":"-87.56436184","shape_len":"14661.1671082"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.55953321649736,41.69775226108486],[-87.55952590219079,41.69689625713135],[-87.55951893749652,41.69624931806224],[-87.55951441929412,41.69580149616733],[-87.55951426760618,41.695784887315114],[-87.55951347855074,41.69569856283001],[-87.55951228210137,41.69557914535329],[-87.55951189766219,41.69554080783786],[-87.5595119284234,41.69554080749612],[-87.56261283587422,41.695500353922036],[-87.56261975797713,41.69550778230622],[-87.56452359118579,41.69759798864989],[-87.56458430682092,41.69768827144789],[-87.56461498360544,41.69768744753518],[-87.56484647514003,41.69804267060174],[-87.56495095344033,41.698186417399455],[-87.56513445643901,41.69842056845177],[-87.56532397999192,41.698648928026195],[-87.56547599530677,41.698875321462836],[-87.56563535910458,41.69909970553976],[-87.56577556153857,41.69928039526944],[-87.5658299540832,41.69936377434655],[-87.56590231646874,41.699475745760346],[-87.56610114330877,41.69973058026363],[-87.5664014469311,41.70007425335534],[-87.56689324124926,41.70063600393793],[-87.56700664069415,41.70076162690235],[-87.56716611454259,41.70093901300345],[-87.56728357253091,41.70106980835429],[-87.56756729591642,41.70138455215066],[-87.56818849735828,41.70207511366794],[-87.56880654869329,41.702762220408125],[-87.56929313530456,41.70330334374498],[-87.56964960456847,41.70370020953306],[-87.56999072631967,41.704079134431986],[-87.57015384175953,41.7042596275914],[-87.57044843575305,41.70458644275086],[-87.57074522074583,41.70492184768605],[-87.5710045757926,41.70520966400016],[-87.57126619380497,41.70549989600675],[-87.571581466766,41.7058597771964],[-87.57174604527809,41.70603341722647],[-87.5734888690116,41.707968975939096],[-87.57348879025957,41.70796897706496],[-87.57260045291115,41.70798263622367],[-87.57253951305603,41.70798357311005],[-87.57066019831527,41.70801015879808],[-87.5705704320434,41.708011428031924],[-87.5695878864848,41.708025017309794],[-87.56945898749458,41.70802679920665],[-87.5694587669912,41.70802680213179],[-87.56893179960333,41.708034084799834],[-87.56872810338722,41.70803723059988],[-87.56813415686209,41.70804640099143],[-87.56741160498487,41.7080575529486],[-87.56692668451723,41.70806569230021],[-87.56648131195162,41.708073165946175],[-87.5657193863511,41.70808484611742],[-87.5649860989047,41.7080960826266],[-87.56451109344978,41.70810293390883],[-87.5640319854683,41.70810984248291],[-87.56390722601954,41.70811168510715],[-87.56330346817934,41.708120600171526],[-87.56276879036677,41.70812849282527],[-87.56269877330526,41.7081296128075],[-87.56209166346719,41.70813932177118],[-87.56150550279578,41.70814869291941],[-87.56150286569174,41.708148714999666],[-87.5614916210078,41.70814880907183],[-87.56088614892379,41.70815387131875],[-87.56031315503887,41.708158833262594],[-87.55966236782332,41.70816769383557],[-87.55965407988128,41.7077939712662],[-87.55964663514438,41.70721143935638],[-87.55964478410192,41.70706037954611],[-87.55964609108256,41.70684446527723],[-87.55964471672408,41.706398720585774],[-87.55964262241768,41.70571954517822],[-87.55963818887501,41.70537458171097],[-87.55963394067457,41.70501721514227],[-87.55962879075084,41.70458386321687],[-87.559623166382,41.70411063856995],[-87.55961781379546,41.70373240764719],[-87.55961351183652,41.70348338641989],[-87.55960997560608,41.70325602303309],[-87.55960819881123,41.70312620466795],[-87.5596026715589,41.70277721160496],[-87.55959604725531,41.702359030075776],[-87.5595927167174,41.70213830928875],[-87.55958861513757,41.701867115220125],[-87.55957737256972,41.70108828321139],[-87.55957541871004,41.700975561008725],[-87.55957189590127,41.700772319934536],[-87.5595663365957,41.700389943474754],[-87.55955976161302,41.69987542100221],[-87.55954993084607,41.69927816266005],[-87.55954885223947,41.699159847621615],[-87.55954629219087,41.698879113547875],[-87.5595405186921,41.69839854362182],[-87.55953700148324,41.698108554695224],[-87.55953447049899,41.697898157787996],[-87.55953321649736,41.69775226108486]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3012032.48554","perimeter":"0.0","tract_cent":"1185910.8231726","census_t_1":"17031421000","tract_numa":"9","tract_comm":"42","objectid":"520","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1862264.92311017","census_tra":"421000","tract_ce_3":"41.77718813","tract_crea":"","tract_ce_2":"-87.59399839","shape_len":"7681.07984988"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59577462612978,41.773237932194206],[-87.59604086853815,41.77323625798912],[-87.596049166285,41.773676969450634],[-87.59605352409342,41.7739110305371],[-87.5960583476859,41.77416847595943],[-87.5960631801016,41.77442515302552],[-87.59606724108231,41.77464038634449],[-87.59607210998414,41.77487464277197],[-87.59607590875203,41.775055411046125],[-87.59608098412313,41.77529696365357],[-87.5960853308665,41.7754776481625],[-87.59609013378122,41.77567609114891],[-87.59609519785951,41.77588691255146],[-87.59610080326239,41.776120926668106],[-87.59610473040132,41.77629664129401],[-87.59610957607075,41.77652977234589],[-87.5961134407465,41.776717314171435],[-87.59611775340525,41.77688149096735],[-87.59612370441644,41.777108002453154],[-87.59612850304663,41.77730680211287],[-87.59613295339842,41.77749443027427],[-87.5961371196541,41.77768128847999],[-87.59614045012492,41.7778470097431],[-87.59614250893001,41.777946997398026],[-87.59614961030965,41.778274464060566],[-87.59615661199379,41.7785530817283],[-87.5961601446968,41.77870966578316],[-87.59616637658513,41.778985876963276],[-87.59617424272255,41.77933452120585],[-87.59617757480268,41.77948218528997],[-87.59618033211947,41.77958297324195],[-87.59618388075171,41.779712691065505],[-87.59618956129388,41.77994645852132],[-87.59619110725268,41.780010081034504],[-87.59619651953417,41.78019697432144],[-87.59620394422505,41.780522268904754],[-87.59593091239798,41.780524639167446],[-87.59553357443133,41.780528756674904],[-87.59511885710275,41.780532925789295],[-87.59495590482689,41.78053445819752],[-87.59464685536517,41.78053698441947],[-87.59430942201239,41.78053974161021],[-87.59405923995433,41.78054180928826],[-87.59374828620578,41.780545570861186],[-87.59342119769033,41.780549556989875],[-87.59306024439455,41.780552559691216],[-87.59276492259066,41.78055501562649],[-87.59247569248757,41.7805571848891],[-87.59219526007978,41.78055946506604],[-87.59189949598132,41.780562277071034],[-87.59152811355587,41.78056632347607],[-87.5915269296362,41.780487943925436],[-87.5915159593906,41.78034231608694],[-87.59150291711745,41.780201477367186],[-87.59148737374122,41.780023162967],[-87.59147727899406,41.7798460912308],[-87.59147281760075,41.77968285990791],[-87.59146778971049,41.779431999263664],[-87.59146337354366,41.77919804764687],[-87.59145933174433,41.77897611841973],[-87.59145585215323,41.77875484430861],[-87.59145277329738,41.7785590814849],[-87.59144362392117,41.77832863939864],[-87.59143975057468,41.77815575166005],[-87.59144967553651,41.77801989114594],[-87.59149686761702,41.77781711853791],[-87.59151029837726,41.77775732461199],[-87.59156374160895,41.77751644699252],[-87.59162161858553,41.77727570745998],[-87.59169951432163,41.77691838196107],[-87.5917369294232,41.7767467492136],[-87.59177019171577,41.77660585257556],[-87.59182174271224,41.77638581889519],[-87.59185665523133,41.77623109946026],[-87.59190725292491,41.776005737847484],[-87.59197025753353,41.77573020612946],[-87.59201835684722,41.7755201118229],[-87.59211484331917,41.77509696828421],[-87.59238662234404,41.77508968559526],[-87.59257396634983,41.77508592655264],[-87.59272933328278,41.77508286668389],[-87.59295015068655,41.77507934229402],[-87.59294686551831,41.77491970745191],[-87.5929451383018,41.77483578965158],[-87.59294081042302,41.77462557657772],[-87.59293551412402,41.77436250222369],[-87.59293069838118,41.774111835147444],[-87.59292551169602,41.773842422165124],[-87.5929212144211,41.77362002460156],[-87.59291434207803,41.77326767924115],[-87.5931703279405,41.773265338550054],[-87.59363849533649,41.77326025816791],[-87.59370386784606,41.77325955883432],[-87.59398123352751,41.77325659161301],[-87.59423084497222,41.773253861754576],[-87.59450028610868,41.77325138347202],[-87.59470666604543,41.77324948488742],[-87.5950191200847,41.77324611449938],[-87.5952792533655,41.77324330508254],[-87.59528358012804,41.77324325823405],[-87.5955487736136,41.773240378627015],[-87.59577462612978,41.773237932194206]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"21976448.0641","perimeter":"0.0","tract_cent":"1180220.70369179","census_t_1":"17031490900","tract_numa":"101","tract_comm":"49","objectid":"507","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1834193.68325666","census_tra":"490900","tract_ce_3":"41.70028969","tract_crea":"","tract_ce_2":"-87.61571619","shape_len":"18997.4602301"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62289177365773,41.69258557059159],[-87.62310413089754,41.69258470198552],[-87.62311152509832,41.6928457464532],[-87.62311442458395,41.69294829284737],[-87.62311985483915,41.693133651064564],[-87.6231267448564,41.69329947866257],[-87.6231320837169,41.693496444821626],[-87.62313904245393,41.693752588749284],[-87.62314484345453,41.693943163733174],[-87.62314840196746,41.69406006647862],[-87.62315279117867,41.69423356271915],[-87.62315686201669,41.694400986528635],[-87.62316216916977,41.6946192539432],[-87.62316767234235,41.694784688720404],[-87.623176888776,41.69513182107498],[-87.62318210488007,41.695317699045084],[-87.62318967261442,41.69558737647276],[-87.6231923945014,41.69568811018764],[-87.62320519175906,41.69611383476351],[-87.62320881344094,41.696228372791204],[-87.62321768774315,41.69650904050527],[-87.6232263069416,41.696810640645126],[-87.62323493635364,41.69714127583137],[-87.62323826096743,41.697268413685904],[-87.62324758049287,41.69759101195226],[-87.62325571071895,41.697872438472764],[-87.62326127315177,41.69805256144018],[-87.62326813089581,41.69827461421616],[-87.62327932661485,41.698694840044176],[-87.62329630517745,41.69927847141068],[-87.62330223824411,41.69954135978491],[-87.62331351985085,41.699870652755834],[-87.62332233409126,41.70012791931076],[-87.62332752141691,41.70033750847545],[-87.62333582093794,41.700672833942114],[-87.62333890354343,41.700783449098104],[-87.62334897458133,41.701144857138466],[-87.62336225368975,41.70160299093499],[-87.62336352123057,41.701646719733226],[-87.62337947357135,41.70223053655647],[-87.62338906362079,41.70255014516846],[-87.62339456803309,41.70273256709834],[-87.62340800348437,41.70316238412887],[-87.62341579422261,41.70346255174492],[-87.62341727106639,41.70351945046938],[-87.62342171208253,41.70369055945071],[-87.62343434994038,41.70413631601236],[-87.62344295780431,41.70442883195655],[-87.62344802467352,41.704601014788956],[-87.62346260451393,41.70508997895241],[-87.62346994893568,41.70534063169517],[-87.62347495883971,41.705511611035696],[-87.62348358917706,41.705828277379624],[-87.6234867519113,41.70594432669233],[-87.62349498153043,41.70625448237101],[-87.62350179354884,41.70651120496333],[-87.62350808348852,41.706708489114476],[-87.62352262903596,41.70716471144916],[-87.62319040380234,41.70716953806891],[-87.6227299265238,41.70717519893172],[-87.62247580795078,41.70717917435371],[-87.62233668117848,41.70718135078358],[-87.62195046956934,41.70718739114993],[-87.62113849256879,41.70719954119862],[-87.62020895596942,41.70721489578474],[-87.61980622276901,41.70722154652496],[-87.61960235124155,41.70722445184327],[-87.61926280895572,41.70722928560242],[-87.61864257467612,41.70723890146563],[-87.61742572566739,41.7072577573825],[-87.61711362526522,41.707262591636116],[-87.61644680098559,41.70727292614727],[-87.61620720213965,41.70727656581135],[-87.61599231470306,41.707279829856],[-87.61527989511958,41.70729014492534],[-87.61498750431399,41.70729437644782],[-87.61464421193534,41.707299343812],[-87.61406000045265,41.70731026096868],[-87.613767357225,41.70731537312471],[-87.61345513769693,41.7073208262418],[-87.61290194877964,41.707328089792036],[-87.61261818667067,41.707332251648445],[-87.61254994802778,41.707333252622924],[-87.61170526378359,41.707345636901074],[-87.61132944982623,41.70735129603222],[-87.61099280199528,41.70735636421333],[-87.61074247715855,41.70736060839461],[-87.61011269201093,41.7073704128926],[-87.60889067238975,41.707389427436816],[-87.60853786387767,41.707394914825805],[-87.60779988296548,41.70740502228806],[-87.60746968338458,41.70741234238709],[-87.60726983965334,41.70741677216687],[-87.60705016540972,41.70742164132417],[-87.6065175045448,41.70743344610845],[-87.60663180245868,41.70691475040997],[-87.60671998099522,41.706509066114236],[-87.60683024563399,41.70600176128828],[-87.6069238111139,41.70559188429179],[-87.60701013813973,41.70521371326574],[-87.60713350173212,41.704672928557876],[-87.60713713927198,41.704656982871334],[-87.60722470091707,41.70427313482766],[-87.60732958072546,41.70386311562661],[-87.6073535461527,41.70375670106349],[-87.60741091153952,41.70350197600286],[-87.60749723109124,41.703081459484515],[-87.6075526624905,41.702838195854866],[-87.60760624486976,41.70260304371322],[-87.60764110191607,41.702451777085784],[-87.6077600013796,41.701933822923074],[-87.60779598946867,41.701777321709436],[-87.60794421131065,41.70112680937377],[-87.60807947131143,41.70054432914346],[-87.60814838480232,41.70030666629443],[-87.60819937219075,41.70008219148239],[-87.60826256874574,41.6998039675492],[-87.60827749523682,41.69972206069928],[-87.60832270335942,41.69947398490935],[-87.60837504732201,41.699244285386804],[-87.60841457826379,41.69906966652555],[-87.60855434196077,41.698453842906936],[-87.60860845719638,41.69821814487825],[-87.6086933646367,41.69784833304754],[-87.60884118605533,41.69719595041766],[-87.6089424757832,41.696744927446844],[-87.6090116023008,41.69644447530143],[-87.60907543227272,41.696167041526756],[-87.60920179266299,41.69561875257739],[-87.60924618315339,41.69542509057577],[-87.6092979744672,41.69519832368616],[-87.60941768903038,41.69467095920484],[-87.60947919396179,41.694402738001884],[-87.60952671387588,41.694195504818055],[-87.60959453397604,41.6938974586885],[-87.60965901157752,41.693619864153085],[-87.60970540709292,41.69343979868626],[-87.60975778865694,41.69323194392984],[-87.6098013508193,41.69303344639289],[-87.60983008509132,41.69290672948314],[-87.60986050403471,41.69277120783212],[-87.61009906915848,41.69276799523047],[-87.61015424310285,41.69276732704103],[-87.61026905448898,41.692765936336386],[-87.61039487255772,41.692764371061],[-87.61041648850185,41.69276410225016],[-87.6106505819952,41.692763399428515],[-87.61098266325135,41.69276213778533],[-87.61110724273335,41.69276108811166],[-87.61123646568744,41.692759998871544],[-87.61139366778664,41.69275840740575],[-87.61216025955063,41.69275064470725],[-87.61259478247267,41.69274624145131],[-87.61285133732383,41.69274296553473],[-87.61309104504262,41.69274010460954],[-87.61337649371512,41.692737727341814],[-87.61366641557474,41.69273531151333],[-87.61391537023277,41.692727347433724],[-87.61425959235952,41.69271630154834],[-87.61454898917376,41.692709796643996],[-87.61489001367634,41.692703119798516],[-87.61524168261224,41.692697359195876],[-87.61576135807343,41.69268951896191],[-87.6160044521136,41.69268519034096],[-87.61649413347219,41.69267814670418],[-87.61660890277878,41.69267626694867],[-87.61711595172527,41.69266808250093],[-87.61759589758553,41.692660671343454],[-87.61803237272052,41.69265414078431],[-87.61826172876081,41.69265151090699],[-87.6185877687415,41.692647771663594],[-87.61882665029232,41.692643384252165],[-87.61911014049105,41.69263787398116],[-87.61946979021906,41.69263214701788],[-87.6196374017696,41.69262947772038],[-87.61974239303436,41.692627805524324],[-87.61990479754792,41.69262587740547],[-87.62021170752939,41.69261823200855],[-87.62043716342741,41.69260951712344],[-87.62049434195005,41.69260730640568],[-87.62075055811063,41.692604779162586],[-87.62104774912277,41.69260579137976],[-87.62132043384729,41.69260671960713],[-87.62160175698003,41.69260269420418],[-87.62193785280463,41.692597041144246],[-87.62209476643154,41.6925949905911],[-87.62238958789455,41.69259113708667],[-87.62263002629538,41.6925883702796],[-87.62289177365773,41.69258557059159]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14139668.8338","perimeter":"0.0","tract_cent":"1174210.46390383","census_t_1":"17031491100","tract_numa":"62","tract_comm":"49","objectid":"508","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1833951.11207484","census_tra":"491100","tract_ce_3":"41.69975936","tract_crea":"","tract_ce_2":"-87.63773043","shape_len":"16268.6890702"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64203421402247,41.69235886083758],[-87.64237845382664,41.692356090049664],[-87.64238367505602,41.69257271485612],[-87.64239183572707,41.69289813250165],[-87.64239556465658,41.692977356072646],[-87.64240353216506,41.69314634505917],[-87.64241176286434,41.693424175828085],[-87.64242036845211,41.69369435215133],[-87.64243003782641,41.69399856456967],[-87.64243704678067,41.694177455896465],[-87.64244159908776,41.69429364944681],[-87.6424492877099,41.69456395770618],[-87.64245589947151,41.69481521354527],[-87.64246598763589,41.69515216829044],[-87.64247837778008,41.695564852944656],[-87.64248572819463,41.69580571216581],[-87.64249252277797,41.695997989539585],[-87.64250073013915,41.69624418173695],[-87.64251963610562,41.696858915637115],[-87.64253850282728,41.69745688137731],[-87.64254442741951,41.69763036166498],[-87.64255078400463,41.69781647861534],[-87.64255651363383,41.69798423030355],[-87.64258149009738,41.69874357177681],[-87.64259576449186,41.69920270154187],[-87.6426080343334,41.699640946128795],[-87.64261902463748,41.70003349485605],[-87.64264325415542,41.70078739779066],[-87.64265645975398,41.7012267343576],[-87.64266411416155,41.701458307532015],[-87.6426720341359,41.701697919331984],[-87.64268835450412,41.70222602610845],[-87.64270190141575,41.70266783450844],[-87.64271369870502,41.70305386762625],[-87.642721179682,41.70327960606593],[-87.64273996847575,41.703846559754595],[-87.64275351477788,41.704302062213586],[-87.64277165400073,41.704920385687515],[-87.64277758574843,41.70509510814201],[-87.64278802652106,41.70540263478065],[-87.64281927930826,41.70644969514975],[-87.64282417649548,41.706613758416125],[-87.64283396928684,41.7069170882967],[-87.64244244050462,41.70692052994727],[-87.64193206764921,41.7069279711364],[-87.64161651048519,41.706932389832446],[-87.64120694985446,41.70693812358381],[-87.64072274107292,41.70694409782988],[-87.64040611499048,41.706948392320655],[-87.63991030637014,41.70695511539642],[-87.63962285313103,41.70695906124015],[-87.63919098953191,41.70696473631973],[-87.6388616268134,41.70696906323337],[-87.63833441824772,41.706975426182375],[-87.6379770599831,41.70698005683372],[-87.63751001132776,41.70698610737904],[-87.63701705215306,41.70699173859055],[-87.63676285603403,41.70699526872805],[-87.63607605061678,41.70700480403513],[-87.63555669695718,41.70701096616049],[-87.63517019413932,41.70701555052118],[-87.63476069469867,41.70702138872749],[-87.63373086778884,41.7070358319036],[-87.63357725557604,41.70703758522788],[-87.63313251342751,41.707042660742985],[-87.63307861899372,41.70704327556588],[-87.63247815512237,41.70705053738876],[-87.6324714876475,41.70681912790829],[-87.63246280914238,41.70651793498167],[-87.63245523619344,41.706254214035056],[-87.632451865666,41.70613696221631],[-87.63241387603003,41.70556941752709],[-87.632418545921,41.70522361872246],[-87.63298103952162,41.705217588230525],[-87.63308377255109,41.70521502373415],[-87.63305892249706,41.70429895352186],[-87.63303486223498,41.70339455081308],[-87.6330112754312,41.70248877977918],[-87.63299269670942,41.70175421599372],[-87.63298820973911,41.70157717953153],[-87.63296563572298,41.70066249476501],[-87.6329522455255,41.69975402766342],[-87.63291816235555,41.69884257745384],[-87.63291775783001,41.698831735987554],[-87.63289271444187,41.697933844743545],[-87.63289269360669,41.697933098982325],[-87.63286752487936,41.69702190341913],[-87.63286741117552,41.69701777058903],[-87.63284058835427,41.69611463532123],[-87.63281701454123,41.695208606880605],[-87.63281667138888,41.69519660026424],[-87.63279080501722,41.69429184067632],[-87.63279079049363,41.69429125577087],[-87.63276808593459,41.693376275114176],[-87.63276787777835,41.693367890462],[-87.632765615939,41.69328108719567],[-87.63273713661553,41.69265795033312],[-87.63271440484789,41.69247082122407],[-87.63295029558364,41.692467997686414],[-87.63319186842911,41.692465105643855],[-87.63344339513127,41.69246282065947],[-87.63375607203517,41.69245997925429],[-87.6339411064261,41.69245771788292],[-87.63428671529503,41.692453493339144],[-87.63465450774297,41.692449610096595],[-87.63491841937602,41.69244637710984],[-87.63513747383804,41.692444595264526],[-87.63532596766862,41.692443124386514],[-87.63579075451756,41.69243546337246],[-87.63608261244732,41.692431306736566],[-87.6363363066729,41.692428223657544],[-87.63656462483566,41.692425448312356],[-87.63690792249129,41.692421546559494],[-87.63712397314892,41.692418903781665],[-87.63733986906527,41.692417028073415],[-87.63753445254278,41.69241530641417],[-87.63770446865996,41.69241380181443],[-87.63801434108268,41.69240958465305],[-87.63836697929273,41.692405295961024],[-87.63864938532825,41.692401624512975],[-87.63874402429225,41.69240015668817],[-87.63902243351524,41.6923958380263],[-87.63934929445062,41.69239163757095],[-87.63969329390518,41.69238710053758],[-87.63983164293933,41.692385081388004],[-87.63995607623329,41.69238373335291],[-87.64022704626043,41.692380798057144],[-87.64057126478319,41.69237634204641],[-87.64078607338445,41.69237341046214],[-87.64095832612568,41.692371457045965],[-87.64116534926609,41.69236779423383],[-87.64135522284496,41.69236443477215],[-87.6416047297201,41.69236258849208],[-87.64173133118604,41.692361619051006],[-87.64184552244907,41.692360744672925],[-87.64203421402247,41.69235886083758]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3504678.09554","perimeter":"0.0","tract_cent":"1181853.85225693","census_t_1":"17031421200","tract_numa":"14","tract_comm":"42","objectid":"521","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859852.23571985","census_tra":"421200","tract_ce_3":"41.77066223","tract_crea":"","tract_ce_2":"-87.60894552","shape_len":"9025.43557245"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6056088555515,41.766172783337325],[-87.60558716421771,41.76586856404107],[-87.60608794410123,41.76623794781128],[-87.60629339928154,41.766384119496536],[-87.60652656444816,41.766550032937445],[-87.60662249241312,41.76661831763771],[-87.60664823808892,41.766636644150466],[-87.60682598594182,41.76676312768457],[-87.60691035130706,41.76682313001597],[-87.60706940877927,41.76693632237765],[-87.6071724657348,41.767009642730486],[-87.60726584977196,41.76707609600908],[-87.60744360005243,41.76720257859727],[-87.60755563959978,41.76728232212182],[-87.60768640773676,41.76737535644436],[-87.60802318409526,41.76761497432718],[-87.60807860476318,41.76765443039274],[-87.60836014264018,41.76785497656777],[-87.60862171512103,41.76804521066017],[-87.6087432232168,41.76813357906171],[-87.60893878401797,41.76827400289474],[-87.60930176451191,41.768534583978116],[-87.60956248670023,41.7687222624794],[-87.60974830229053,41.768856009783605],[-87.61006411778074,41.76908333240671],[-87.61051682902524,41.769406058367714],[-87.61090494945675,41.769682734947345],[-87.61113665747698,41.76984994707382],[-87.6113503315842,41.77000409233506],[-87.61159153204585,41.7701781964825],[-87.61183277077562,41.770352272917776],[-87.61218345648312,41.770603444987955],[-87.61248522386532,41.770819577829116],[-87.61261541423319,41.770913069411975],[-87.61281993787722,41.77105999191347],[-87.61286474102366,41.771092381119836],[-87.61298645114174,41.77118036810886],[-87.61334984308121,41.77144306929842],[-87.61349831613977,41.77155083500175],[-87.61362478958843,41.77164262812599],[-87.61427123403998,41.772111915966825],[-87.61455851425073,41.77232038636359],[-87.61544979997485,41.77296977132702],[-87.61477786875132,41.77297863214188],[-87.61457839545628,41.77298262623104],[-87.61451985079631,41.77298386206337],[-87.61425468702822,41.77298945887198],[-87.6138162440208,41.77299871210648],[-87.61363781794815,41.77300228834159],[-87.61352623747626,41.77300452459226],[-87.61304493587824,41.77301245775321],[-87.61262394907143,41.773019395138384],[-87.61242330248325,41.77302341599563],[-87.61211917820313,41.77302950983693],[-87.6118359011031,41.773034626476054],[-87.61146188305355,41.773041380897716],[-87.61123297343225,41.77304570343322],[-87.61098865243737,41.77305031665724],[-87.61062905383501,41.77305623255545],[-87.61008716985127,41.773065144899086],[-87.61001522759291,41.773066524063516],[-87.60962919110003,41.77307392381172],[-87.60940970135894,41.77307791840016],[-87.609079182074,41.77308393254534],[-87.60862069675885,41.77309212821641],[-87.60821716408755,41.773098487474094],[-87.60771790014275,41.77310635327244],[-87.60761508704057,41.77310805215086],[-87.60732138767882,41.77311290465841],[-87.6070228585543,41.773118811523],[-87.60657299487299,41.77312771188178],[-87.60642542036692,41.77313098112041],[-87.60631961249274,41.77313332620459],[-87.60576875390609,41.77314086168505],[-87.60575982322132,41.7727889687961],[-87.60575404348849,41.772512170342054],[-87.60574720988451,41.77227669396659],[-87.60574091790909,41.77198998562268],[-87.60573540318617,41.77173843629891],[-87.60573053877518,41.77151683131454],[-87.605726622167,41.771321714748424],[-87.6057214117778,41.77104736224975],[-87.60571766191663,41.77088838906072],[-87.6057090605502,41.77053363472292],[-87.60570143133513,41.77021612657853],[-87.60569715666331,41.77003969633734],[-87.60569204141301,41.76982739285287],[-87.60568473963771,41.76950310806356],[-87.60567844638422,41.76922361706464],[-87.60567270425597,41.76897593563294],[-87.60566984098689,41.76885302802233],[-87.60566192521178,41.76850137922673],[-87.6056578820957,41.768321794186484],[-87.60565094941232,41.7680205639952],[-87.60564164961947,41.76761412999183],[-87.60564091378637,41.76758206209307],[-87.60563878742062,41.76748938340693],[-87.6056322927257,41.76720626856464],[-87.60562397459668,41.766845972316176],[-87.60560339530069,41.76653269048119],[-87.60560037593402,41.766391175234595],[-87.6056088555515,41.766172783337325]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8932472.78775","perimeter":"0.0","tract_cent":"1179952.66629852","census_t_1":"17031491400","tract_numa":"37","tract_comm":"49","objectid":"509","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1830122.32399541","census_tra":"491400","tract_ce_3":"41.68912344","tract_crea":"","tract_ce_2":"-87.61682164","shape_len":"12113.0133403"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62260980608298,41.6853246280971],[-87.62288959931666,41.68532193529544],[-87.62289517155234,41.68553839234067],[-87.62289993908325,41.6857472656498],[-87.6229005553071,41.68577627762057],[-87.62290314698146,41.68589830619],[-87.62291340634529,41.68612046856792],[-87.62291642933802,41.68622925042609],[-87.62292038300367,41.68637150848063],[-87.622925058418,41.68655222432452],[-87.62292745477521,41.68663423983212],[-87.62292888493386,41.68668318014405],[-87.62292958007271,41.6867069503715],[-87.6229359414127,41.68689412581028],[-87.62294182599074,41.68709721954697],[-87.62294883738028,41.687339226657244],[-87.62295191446009,41.68744226795512],[-87.6229567028444,41.687599247626245],[-87.62295896370571,41.68767338439781],[-87.62296467664491,41.68791289023056],[-87.62296887213797,41.688048921747786],[-87.62297641564194,41.68829349202005],[-87.6229803460011,41.68844873578749],[-87.62298178162203,41.6885037413676],[-87.62298436378094,41.68860269025459],[-87.62299095761176,41.6888086931898],[-87.62299170914805,41.68882604201817],[-87.62299712831017,41.688955849245986],[-87.62300481521683,41.689146496424726],[-87.62300814432473,41.689319794160504],[-87.62301068229841,41.68941224774832],[-87.62301253540157,41.68947976099915],[-87.6230187301975,41.68967209438599],[-87.6230245409248,41.689867525938986],[-87.62302784347537,41.68997861057518],[-87.62303173190132,41.69010772799492],[-87.62303720289242,41.69032050216051],[-87.62304809060167,41.690614268137885],[-87.62305248030557,41.69077220933988],[-87.62305682541113,41.69092854812094],[-87.62305973918996,41.69106306582851],[-87.62306420236082,41.6912268468609],[-87.62306605145135,41.69129469899013],[-87.62307289850415,41.69153097336768],[-87.62307663385825,41.69167814531106],[-87.6230809700526,41.691848981491184],[-87.62308550404842,41.69200263717942],[-87.62309061130514,41.692111072572246],[-87.62309298373475,41.69216144296779],[-87.62309680973007,41.69232620881288],[-87.62310413089754,41.69258470198552],[-87.62289177365773,41.69258557059159],[-87.62263002629538,41.6925883702796],[-87.62238958789455,41.69259113708667],[-87.62209476643154,41.6925949905911],[-87.62193785280463,41.692597041144246],[-87.62160175698003,41.69260269420418],[-87.62132043384729,41.69260671960713],[-87.62104774912277,41.69260579137976],[-87.62075055811063,41.692604779162586],[-87.62049434195005,41.69260730640568],[-87.62043716342741,41.69260951712344],[-87.62021170752939,41.69261823200855],[-87.61990479754792,41.69262587740547],[-87.61974239303436,41.692627805524324],[-87.6196374017696,41.69262947772038],[-87.61946979021906,41.69263214701788],[-87.61911014049105,41.69263787398116],[-87.61882665029232,41.692643384252165],[-87.6185877687415,41.692647771663594],[-87.61826172876081,41.69265151090699],[-87.61803237272052,41.69265414078431],[-87.61759589758553,41.692660671343454],[-87.61711595172527,41.69266808250093],[-87.61660890277878,41.69267626694867],[-87.61649413347219,41.69267814670418],[-87.6160044521136,41.69268519034096],[-87.61576135807343,41.69268951896191],[-87.61524168261224,41.692697359195876],[-87.61489001367634,41.692703119798516],[-87.61454898917376,41.692709796643996],[-87.61425959235952,41.69271630154834],[-87.61391537023277,41.692727347433724],[-87.61366641557474,41.69273531151333],[-87.61337649371512,41.692737727341814],[-87.61309104504262,41.69274010460954],[-87.61285133732383,41.69274296553473],[-87.61259478247267,41.69274624145131],[-87.61216025955063,41.69275064470725],[-87.61139366778664,41.69275840740575],[-87.61123646568744,41.692759998871544],[-87.61110724273335,41.69276108811166],[-87.61098266325135,41.69276213778533],[-87.6106505819952,41.692763399428515],[-87.61041648850185,41.69276410225016],[-87.61039487255772,41.692764371061],[-87.61026905448898,41.692765936336386],[-87.61015424310285,41.69276732704103],[-87.61009906915848,41.69276799523047],[-87.60986050403471,41.69277120783212],[-87.60990103359437,41.69259064510545],[-87.60994389148605,41.69238303188156],[-87.60998126993924,41.69220367818975],[-87.61001933615708,41.69203154639748],[-87.61006527901417,41.69182488532165],[-87.61009348031054,41.691698028021555],[-87.61013502233615,41.69151952375903],[-87.61017609245356,41.69133736654629],[-87.61022140063639,41.691136382427146],[-87.6102625144033,41.690959796437035],[-87.6102968269101,41.69081242220425],[-87.61036359155472,41.690516427043555],[-87.6104184543843,41.690272938346865],[-87.61048604178268,41.6899785674167],[-87.61053777920556,41.68975254037203],[-87.61059204675725,41.68951632029306],[-87.61062866830808,41.68935847709659],[-87.61067679721846,41.689145969724954],[-87.61071632924536,41.688971418912125],[-87.61075829704227,41.68878726368824],[-87.61083521396432,41.68844410201985],[-87.61096462610647,41.68787554864918],[-87.61104570846211,41.687526375707655],[-87.61109036543482,41.6873283234484],[-87.61113966317829,41.68710969038888],[-87.61122886683093,41.68671506698928],[-87.61128296912158,41.68647678716407],[-87.61132275549136,41.68634130213945],[-87.61135082929701,41.68624570155702],[-87.61141692720841,41.685936418774276],[-87.61142540809206,41.685853257000325],[-87.61143851379504,41.685724746722336],[-87.61139546737347,41.68544234978134],[-87.61172876373138,41.6854391574233],[-87.61197938524084,41.68543675644143],[-87.61209691170141,41.68543563038867],[-87.61216611958305,41.68543496723865],[-87.61227916267312,41.685433883943915],[-87.61232220738788,41.685433471488714],[-87.61238349532536,41.68543288393567],[-87.61251318013923,41.685431641076455],[-87.61285896102314,41.68542832587724],[-87.61315102253458,41.685426202980665],[-87.61359081673938,41.68542300457585],[-87.61412614986374,41.68541436323572],[-87.6143743160242,41.68541223585695],[-87.61469614801445,41.68540947636134],[-87.6149383665972,41.68540552950073],[-87.61559426160045,41.68539966816654],[-87.6159016694194,41.68539691976948],[-87.61652058931429,41.68538766386632],[-87.61668981527545,41.685386352255044],[-87.6167995493394,41.68538517664259],[-87.61702259086496,41.685383823261],[-87.61733156958722,41.685381330289616],[-87.61753784815299,41.68537967881826],[-87.61777531103874,41.685378687680895],[-87.61804992088199,41.685375219149726],[-87.61819301536573,41.68537341144025],[-87.6185042706192,41.6853702708414],[-87.61872748429636,41.68536671920509],[-87.61898440085234,41.68536447436375],[-87.61970799143124,41.68535491878127],[-87.62001339367897,41.6853513831821],[-87.6201992514957,41.68534923106995],[-87.62020485133007,41.685349166198684],[-87.6204966458712,41.68534793025147],[-87.62080443345613,41.68534606217868],[-87.62103118618658,41.68534468560461],[-87.6212390922403,41.68534147330529],[-87.62140397195104,41.685339207096895],[-87.62151637989659,41.68533766180687],[-87.62188885991307,41.68533347735353],[-87.62216654444084,41.685330256225946],[-87.62233423961547,41.6853283024931],[-87.62260980608298,41.6853246280971]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4545750.39184","perimeter":"0.0","tract_cent":"1198245.26842092","census_t_1":"17031460700","tract_numa":"17","tract_comm":"46","objectid":"510","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1847211.74629524","census_tra":"460700","tract_ce_3":"41.7355813","tract_crea":"","tract_ce_2":"-87.54928437","shape_len":"9473.885086"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.54313920426242,41.73746061265605],[-87.543118568613,41.737442617668336],[-87.54310238782973,41.73742576887511],[-87.5430922069793,41.73740561411741],[-87.54308648098345,41.73738660583194],[-87.5430777596006,41.737242025855544],[-87.54307033849517,41.73707085400302],[-87.54306304889587,41.73688898794689],[-87.5430560656118,41.73668216893407],[-87.54305405949157,41.73645755906536],[-87.54305209743939,41.73622938463944],[-87.54304039824821,41.7360189680404],[-87.54303756183097,41.73586208764037],[-87.54303525021055,41.735662430700614],[-87.54303498995648,41.73565455083458],[-87.54298765094907,41.73393094833423],[-87.54298321452183,41.733834032850076],[-87.54333889078855,41.7338285483187],[-87.54368145551544,41.733824475909664],[-87.54399706660074,41.73382072254658],[-87.544380496014,41.733815375769545],[-87.54483569184795,41.73380902677088],[-87.54508313475998,41.73380649255269],[-87.54524967229817,41.733804786598746],[-87.54574861790236,41.73379995196627],[-87.5462365057453,41.73379522219053],[-87.54637537329643,41.73379426306109],[-87.54656568289079,41.733792948532404],[-87.54666138937507,41.73379217678458],[-87.54686894110255,41.73378906976294],[-87.54691447911871,41.73378180002637],[-87.54692169166344,41.73378064875682],[-87.54695787269709,41.73376399145616],[-87.54696330388225,41.73375999092895],[-87.54717102050688,41.73376390222936],[-87.54733908271135,41.733767066314066],[-87.54795596261518,41.733767168282796],[-87.54837752021568,41.73376338823427],[-87.54839103316593,41.733763267040594],[-87.54859021999145,41.733763296057965],[-87.54926065037718,41.73375355313616],[-87.54969389422963,41.73374725490661],[-87.5499581382876,41.73374513954341],[-87.55023815769621,41.733742897272855],[-87.5503813897233,41.733741513254294],[-87.55065095451366,41.733738769254444],[-87.55096765936632,41.733735544819076],[-87.5513460999674,41.733730500053106],[-87.55163951213716,41.73372658778465],[-87.55203744627018,41.733722236213886],[-87.55203974080062,41.73372221120018],[-87.55204023107363,41.733722205752095],[-87.55229643241896,41.733719419439794],[-87.55272831947973,41.733712515182866],[-87.55296980998264,41.733708653747414],[-87.55341664745931,41.73370323541076],[-87.55353996979163,41.73370174002937],[-87.55373996547235,41.733699309727214],[-87.55411123483603,41.73369506863372],[-87.55438509051774,41.7336919393621],[-87.55480363046576,41.73368777690168],[-87.5548150439837,41.73368766323075],[-87.55514305998331,41.73368442406292],[-87.5554940690258,41.733679767126375],[-87.55550237631465,41.7340232815746],[-87.55551111329507,41.73435894196164],[-87.55551613390924,41.734541033233675],[-87.55552420685412,41.73483453655194],[-87.55553069920373,41.73508595921782],[-87.55554056233517,41.735506124618524],[-87.55554613867484,41.735743681486696],[-87.55554792254719,41.73586606215526],[-87.555550398754,41.736028294825815],[-87.5555572888393,41.73628320512505],[-87.55556093383997,41.73641501134806],[-87.55556397252066,41.73652485902055],[-87.55558507867732,41.737329377780945],[-87.55508025097241,41.737336431268545],[-87.55489493414571,41.73733902013828],[-87.55469037804001,41.737341877079814],[-87.55420289940412,41.737347311525326],[-87.5538701322014,41.737351020145795],[-87.55350552181325,41.73735508250274],[-87.55320547792294,41.73735842455359],[-87.5528102412159,41.737362134604176],[-87.55265545863045,41.73736358366585],[-87.5522195476027,41.73736767065975],[-87.55213790128549,41.73736878000491],[-87.55206556399921,41.737369762683514],[-87.55199322561234,41.73737074530908],[-87.55164987064263,41.73737540927862],[-87.55143060175693,41.73737838700096],[-87.55095945868499,41.737384784125226],[-87.55080466818994,41.7373868774719],[-87.55073262371688,41.73738785170027],[-87.55065713420983,41.73738887239645],[-87.5502072030938,41.73739486947339],[-87.55007093566763,41.73739668521365],[-87.55003834149436,41.737397119455906],[-87.54963256790879,41.737402525873954],[-87.54935172254037,41.737405908396774],[-87.54913218382785,41.73740855194646],[-87.54885253005224,41.7374132786811],[-87.54868391791008,41.73741612800631],[-87.54818023625238,41.737424638451664],[-87.54818018421541,41.7374246391938],[-87.54808496264619,41.73742624813277],[-87.54802185515598,41.737427314120374],[-87.5474962683774,41.73743288665464],[-87.54737268459024,41.73743440530558],[-87.54694534909441,41.737439655561126],[-87.54670572612979,41.737442762955666],[-87.54657915771766,41.7374441269464],[-87.54583641553646,41.737452128563255],[-87.54559078889898,41.73745477370345],[-87.5453117825699,41.73747852416454],[-87.54493597246375,41.73747225723259],[-87.5447836755559,41.7374712121335],[-87.5446456562039,41.73747026483615],[-87.5444755399681,41.73747159515338],[-87.54440288914158,41.73747216332488],[-87.54411728870285,41.73747376682407],[-87.54393163328054,41.73747605658607],[-87.54373645899685,41.73747828063454],[-87.54354128507453,41.73748050407947],[-87.54338418508554,41.73748298923534],[-87.54327472157898,41.73748223661148],[-87.5432033323856,41.737481745713986],[-87.54316143933704,41.73746969224162],[-87.54313920426242,41.73746061265605]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6492804.358","perimeter":"0.0","tract_cent":"1198993.1294349","census_t_1":"17031461000","tract_numa":"27","tract_comm":"46","objectid":"511","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1844244.36200208","census_tra":"461000","tract_ce_3":"41.72741984","tract_crea":"","tract_ce_2":"-87.54664393","shape_len":"12053.7314979"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5414936826791,41.72968561095457],[-87.5414766932264,41.729517455802764],[-87.54138099983682,41.72957473274374],[-87.54124707667474,41.72964214288338],[-87.54071043882927,41.72987236736795],[-87.5403592767887,41.73002250022971],[-87.54019170924632,41.730102767283626],[-87.54014483015575,41.73013438741894],[-87.54012359372213,41.73015836629926],[-87.53999564512213,41.73000389478905],[-87.53994249075849,41.72993217578854],[-87.53994359659309,41.729842307358695],[-87.53994466622872,41.729718134834826],[-87.53990577976086,41.72949180399604],[-87.53987960142396,41.72938631042541],[-87.53987174762351,41.72935469692893],[-87.53977155143303,41.72916121682614],[-87.53972170036108,41.72908163064371],[-87.53963054268858,41.728935209930796],[-87.53951029684906,41.72874463562856],[-87.5401976670261,41.728395658587516],[-87.54042213403234,41.728281695451805],[-87.54134523869718,41.72762402502004],[-87.54139893639135,41.72758576760826],[-87.54148973791393,41.72750457319864],[-87.54190202869486,41.72713590207122],[-87.54225177606948,41.726579200638184],[-87.54229364896752,41.72643585671197],[-87.54284981169351,41.724531868633754],[-87.54299695620745,41.72402810939935],[-87.54316197689674,41.723313319286696],[-87.54317679419093,41.723125835191574],[-87.54314429934149,41.72286175283583],[-87.54320918327727,41.722863458923825],[-87.5437260642204,41.72285315290619],[-87.54374648587006,41.722852899427735],[-87.54424949280782,41.7228466497817],[-87.54473318461622,41.722839487089296],[-87.54510397945795,41.72283824409179],[-87.54558842614667,41.72282921711964],[-87.54567696315212,41.72282057819381],[-87.54611621709977,41.72316750264505],[-87.54628812993444,41.72329039047041],[-87.54658664076534,41.72350643607811],[-87.54687868797714,41.72371537335992],[-87.54688004288596,41.7237163423188],[-87.546946722781,41.7237640378699],[-87.54700606933494,41.72380648794411],[-87.54704123491719,41.723831641436824],[-87.5471318979136,41.723896607103335],[-87.54727746483093,41.7240020182549],[-87.54738488640167,41.724079806441665],[-87.54761213726614,41.724243192590365],[-87.54769216278669,41.72429925580295],[-87.5478704958674,41.72442418986298],[-87.54801503040513,41.724522314008645],[-87.54820427533036,41.72465079093228],[-87.54836093160326,41.724754764633836],[-87.54917604936415,41.72529575334574],[-87.54954238560876,41.725560059960806],[-87.5501431517629,41.725989140175464],[-87.55073907482246,41.72642408423784],[-87.5508828860685,41.72652904578674],[-87.55118008455523,41.726739956436404],[-87.55141640062213,41.726907660010774],[-87.55167410691456,41.727092788153946],[-87.55194862581925,41.72728998151524],[-87.55199068587875,41.72732019422238],[-87.55211394762537,41.727408750883725],[-87.55230200081823,41.727543831372266],[-87.55258180193509,41.727746758772426],[-87.55292400458653,41.727994940907614],[-87.55324627711128,41.72822599148159],[-87.55324640786138,41.72822608512691],[-87.55359285836546,41.72847446671422],[-87.55399885177728,41.728767486630254],[-87.55447610497265,41.72911192251917],[-87.55508456674092,41.72955101819723],[-87.55565256465783,41.72996063129793],[-87.55548399550528,41.729998877144375],[-87.55540457566958,41.73001362527649],[-87.55525374518747,41.73002605112623],[-87.55483324472598,41.730032259121856],[-87.55462989454062,41.7300346488565],[-87.55402081746682,41.73004180411626],[-87.55335498724425,41.730049622258754],[-87.55263870698775,41.7300574928008],[-87.55208178133499,41.73006360924577],[-87.55182687623179,41.73006640776525],[-87.55125692888363,41.73007578052397],[-87.55063229316038,41.73008604937917],[-87.54986785238809,41.73009092631707],[-87.54930746106763,41.73009449820745],[-87.5484986147734,41.73010459445874],[-87.54795881954792,41.730111329340254],[-87.5478616895416,41.7301125405936],[-87.54779668728234,41.730113351745594],[-87.54740874918855,41.73011820985216],[-87.54693162029625,41.730124183252656],[-87.54664478921757,41.73012777319844],[-87.54641752623586,41.73013061696269],[-87.54566761682621,41.730140140777955],[-87.5451472583637,41.73014674650288],[-87.54429283172514,41.730158707443756],[-87.54387916818031,41.73016449610031],[-87.54289695300899,41.73017734362346],[-87.54242554085599,41.73018350695825],[-87.54220120976564,41.730187787132095],[-87.54170749353474,41.73019720457532],[-87.54149654141628,41.73020122784283],[-87.54149428781926,41.730018170304994],[-87.5414936826791,41.72968561095457]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7015140.92232","perimeter":"0.0","tract_cent":"1191113.11180634","census_t_1":"17031480100","tract_numa":"34","tract_comm":"48","objectid":"512","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1847027.78664163","census_tra":"480100","tract_ce_3":"41.73525182","tract_crea":"","tract_ce_2":"-87.5754193","shape_len":"13229.5535238"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5657006250207,41.73719771954062],[-87.56561070630278,41.73614024725369],[-87.56560528927643,41.73578756768384],[-87.5656459390084,41.73526090990629],[-87.56594196398875,41.734543791656364],[-87.56592866688482,41.73401556092035],[-87.56592392970838,41.73382737956585],[-87.56591404400882,41.73354159380548],[-87.56642287610308,41.7335363015337],[-87.566520574558,41.733535050398764],[-87.56694607565424,41.73352960087896],[-87.56712668277284,41.73352728744059],[-87.56717483284768,41.73352667050667],[-87.5674104719082,41.73352365135596],[-87.56773089044367,41.73351841693543],[-87.56803686998809,41.733513417513755],[-87.56834330171945,41.733508808607176],[-87.56894930318602,41.73349969143426],[-87.56900939449585,41.733498786804304],[-87.56915875226477,41.73349667970727],[-87.56955831687446,41.73349143386423],[-87.57002601593082,41.733485292094244],[-87.57016206088558,41.733483764864864],[-87.57019035587197,41.73348344729254],[-87.57035894980999,41.73348119470709],[-87.57077357560281,41.73347565413029],[-87.57120705121866,41.73346986001791],[-87.57137943334978,41.733467733423794],[-87.57152243368,41.733465968865985],[-87.57198698149206,41.73345958745644],[-87.57233231932761,41.73345484231543],[-87.57258990177448,41.733451447977345],[-87.57279596772617,41.733448197280225],[-87.57320346761654,41.73344311834327],[-87.57355824288605,41.73343869512843],[-87.57380987974219,41.7334354867924],[-87.57384171048598,41.733435080822524],[-87.57415500577666,41.7334310039887],[-87.5744087250343,41.733427328668995],[-87.57488816737087,41.733420367860276],[-87.57502356500189,41.73341837998534],[-87.5752462474719,41.73341510172937],[-87.57563065001234,41.733409602454785],[-87.57609835077818,41.733402909889776],[-87.57623771694888,41.73340088444154],[-87.5763984601345,41.733398547936766],[-87.57684699422485,41.73339202656109],[-87.57732341239641,41.73338509769982],[-87.57745188145964,41.73338345189065],[-87.57765455148206,41.73338085456865],[-87.57805853442159,41.73337553659156],[-87.5782523783556,41.73337298420841],[-87.578667130985,41.73336623208007],[-87.57868595176167,41.73336592565791],[-87.57884872211525,41.733363509299494],[-87.5792752859721,41.733357704946556],[-87.57951972775905,41.73335437788208],[-87.57972485495009,41.733351585557955],[-87.57988188227856,41.73334945883708],[-87.58005387163199,41.73334712921442],[-87.58048838626007,41.73333787458449],[-87.58102540587772,41.73341065824784],[-87.5810665899711,41.733410069192956],[-87.58164421190725,41.73340180712578],[-87.58222057870792,41.7333935600204],[-87.58223642874361,41.73339333321537],[-87.58279777470182,41.733385261376576],[-87.58311429153409,41.7333807088567],[-87.58337330376659,41.73337622116202],[-87.5835342010283,41.733373433021384],[-87.58395051174756,41.73336737096145],[-87.58435677041574,41.733361453731106],[-87.58450855822404,41.73335906918385],[-87.58468766397762,41.733356255387456],[-87.58503958751946,41.73334787243448],[-87.58513360344126,41.73333606913745],[-87.58513401798055,41.733687382084774],[-87.58514118833804,41.73402292053178],[-87.58514828160526,41.73435876033109],[-87.58515300163948,41.73458346760721],[-87.58517826113415,41.73496404811343],[-87.58517519300138,41.7350076511122],[-87.58516880913388,41.735098385499995],[-87.58515781586026,41.73525461956134],[-87.58517697307154,41.73591477782638],[-87.58519821031028,41.73606744473611],[-87.5852109321022,41.73627197849659],[-87.58520860356785,41.73661187327916],[-87.58520650786748,41.73691951598732],[-87.58468202958404,41.73692689297394],[-87.5845678566764,41.736928644683935],[-87.58413212450137,41.73693532875574],[-87.5837898526655,41.73694064334208],[-87.5832182313483,41.73694816467777],[-87.58275040019353,41.73695487050986],[-87.58248034208337,41.73695874066935],[-87.58184456973929,41.7369689918924],[-87.58057263977058,41.73698701522394],[-87.58002703938969,41.7369947421945],[-87.57978920833604,41.736998369436826],[-87.57947706559146,41.737002692002974],[-87.57936119152302,41.737004296473486],[-87.5790509561142,41.73700859170286],[-87.57874957812565,41.73701326809186],[-87.57869677402593,41.737014087357934],[-87.5781486046143,41.737021862355995],[-87.57774205449095,41.73702762696443],[-87.57728516794008,41.73703351311423],[-87.57693326089203,41.73703860144156],[-87.57633249618846,41.73704728527656],[-87.57571801855387,41.73705598505023],[-87.5755208767,41.73705877401565],[-87.57512122714327,41.73706478699516],[-87.57495788882056,41.737067244252266],[-87.57451495716379,41.737073451616126],[-87.57404208662486,41.73708007690205],[-87.57361670334797,41.73708648595475],[-87.57348291229947,41.73708844244022],[-87.5733018811031,41.73709108961997],[-87.57312821785295,41.73709362856248],[-87.57243081918108,41.73710361203882],[-87.57208477245536,41.73710886702558],[-87.57175386114,41.73711389142498],[-87.57119286357644,41.73712128612216],[-87.57087426680404,41.73712595140411],[-87.57055830847986,41.737130577334106],[-87.57031571172055,41.73713437314433],[-87.57014332875386,41.73713707003185],[-87.56966709432805,41.73714297629803],[-87.56933355554895,41.737147111531556],[-87.56918824820559,41.73714912722316],[-87.56887152153912,41.73715351974291],[-87.56876007662397,41.737155065049876],[-87.56865182460672,41.7371565661835],[-87.56853298539714,41.73715821381994],[-87.56843110745584,41.737159626269005],[-87.5684096956119,41.73715992309028],[-87.56829035654985,41.73716157757643],[-87.56824299250653,41.737162234236145],[-87.56815037628645,41.737163518200965],[-87.56804540950134,41.737164973131215],[-87.56802488227517,41.73716525738585],[-87.56798010465181,41.73716587819915],[-87.56786278729818,41.73716750399422],[-87.56777585951619,41.737168708920414],[-87.56765340595027,41.73717040566149],[-87.56756110120918,41.737194383618686],[-87.56745327093398,41.73717317867366],[-87.56738685095426,41.73717409902352],[-87.56726702374179,41.737175759071974],[-87.56690152894868,41.73718082185124],[-87.56686306823079,41.73718135455947],[-87.5668587327216,41.73718141482836],[-87.56682617153442,41.7371818655801],[-87.5667454104012,41.73718298407738],[-87.56668628172756,41.73718380282855],[-87.56626839616125,41.7371895892358],[-87.56602075925609,41.737193135956296],[-87.56585507713335,41.73719550808545],[-87.5657006250207,41.73719771954062]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3681707.7839","perimeter":"0.0","tract_cent":"1175897.81928201","census_t_1":"17031490100","tract_numa":"21","tract_comm":"49","objectid":"513","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1845714.96706493","census_tra":"490100","tract_ce_3":"41.73200344","tract_crea":"","tract_ce_2":"-87.63120079","shape_len":"10823.9066008"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63251248849852,41.73643982541713],[-87.63256247759007,41.73634922500281],[-87.63258490317435,41.73630854014456],[-87.63266060991005,41.73638001115013],[-87.6327205187178,41.735972320451275],[-87.63272034384312,41.73597216186151],[-87.6322297301841,41.7355266186635],[-87.6321029458783,41.73541352032615],[-87.63197524646033,41.73531048788463],[-87.63192650606369,41.735281237880415],[-87.63183947238959,41.735229003734986],[-87.63173394466611,41.73517602540801],[-87.63151618602917,41.73499593110852],[-87.63144443118132,41.73493023308398],[-87.63134938652134,41.73484326153095],[-87.63125382952184,41.73475625905035],[-87.63116107031023,41.734706775154756],[-87.63096961179393,41.734498889986085],[-87.63088353046678,41.73441658300212],[-87.63093166243316,41.73441115041276],[-87.63081898378647,41.734326655210616],[-87.6306835561619,41.73422537214368],[-87.63055131813216,41.73409892826502],[-87.63032958115915,41.73389119958276],[-87.63021756273615,41.73378532469473],[-87.63011319502307,41.73368679638968],[-87.62992487904971,41.733508827693],[-87.62982319894526,41.73341253846692],[-87.62970204637989,41.733297797902715],[-87.62965204053276,41.733250454160554],[-87.62953585179402,41.733140848238634],[-87.62938991797216,41.733004055938366],[-87.62924299983418,41.732866873215244],[-87.62915052115136,41.73278367525334],[-87.6290725265856,41.73270605461717],[-87.62904593662303,41.732675073011414],[-87.62903762974405,41.7326608065565],[-87.62903274933942,41.7326480979185],[-87.62903098351313,41.73263870154612],[-87.62903404577754,41.7326299667826],[-87.62903654268987,41.732622846051484],[-87.62904079532555,41.73261793043417],[-87.62886871352045,41.73243681708265],[-87.62681435429741,41.73027453993424],[-87.62661937451273,41.73006930831632],[-87.62645482459999,41.72989610528857],[-87.6263411918789,41.72977163763517],[-87.6261637528501,41.72958258769856],[-87.62600836789902,41.72941705479822],[-87.62591211733356,41.72931451100662],[-87.62578287865306,41.72917680144819],[-87.62567140574147,41.72901930158699],[-87.6258388498614,41.72901715258358],[-87.62597276824232,41.729015424854715],[-87.62606346073461,41.729013485798546],[-87.62626629235098,41.729004799679416],[-87.62644242614024,41.72900205121854],[-87.62667245728427,41.72899846159458],[-87.62685316306994,41.728996279604644],[-87.6270333741236,41.72899585065047],[-87.62719815964519,41.728995601050606],[-87.62737827599621,41.728993716486976],[-87.62746808618795,41.72899201788952],[-87.62754243307613,41.72899063588876],[-87.62765724121262,41.72898777341639],[-87.62778128029231,41.72898161944701],[-87.6279329712711,41.728979477140854],[-87.62803880773271,41.728979577955585],[-87.62812978774178,41.72898145362961],[-87.62821529753478,41.72898104505167],[-87.62822365457684,41.72898064846233],[-87.62830385286956,41.72897684104889],[-87.62851683698196,41.72897103989211],[-87.6286221771486,41.72896965519553],[-87.6287107645639,41.72896918306869],[-87.62885896142032,41.728968301354506],[-87.629056032097,41.72896712844003],[-87.62916122565699,41.72896571490747],[-87.62932158453019,41.72896157360951],[-87.62948758598462,41.728957286075214],[-87.62969051869818,41.72895606427812],[-87.6298659681147,41.728955007577916],[-87.62997112199086,41.728954374092645],[-87.63004495116442,41.72895342639357],[-87.63018645107594,41.72895188011597],[-87.63032989284937,41.72895031261283],[-87.6304796055766,41.72894815484094],[-87.630584873254,41.72894665812873],[-87.63069010489367,41.728945106213395],[-87.63080988214162,41.72894336870189],[-87.63092969644774,41.72894165900963],[-87.63106688121744,41.728939431025026],[-87.63121454460884,41.72893703281566],[-87.63128348598188,41.728936048691054],[-87.63140840866684,41.728934265426645],[-87.63157362004807,41.7289318993047],[-87.63165352213731,41.72893088090687],[-87.63167844631208,41.72893056327903],[-87.631813647541,41.72892878168868],[-87.63194599263926,41.72892690703669],[-87.63214264070719,41.72892412109839],[-87.63223292336585,41.72892275097678],[-87.6323216722421,41.728920932336685],[-87.63238899520815,41.728915250660414],[-87.6327152060078,41.72885137192761],[-87.63373383514158,41.728852725292924],[-87.63374238946705,41.72992134505507],[-87.63374588916759,41.729978649802995],[-87.633797644518,41.72997793989701],[-87.6338154374412,41.73040616120013],[-87.63385500033435,41.730883272667526],[-87.63390665153318,41.73170717805762],[-87.6339457771873,41.73261749903101],[-87.63395747309382,41.732890286577856],[-87.6340046349997,41.73390425377556],[-87.63402222183798,41.73426729609553],[-87.63402521152643,41.73432940435145],[-87.63402753955693,41.734368206077484],[-87.63403239468576,41.734469407981244],[-87.63406893101381,41.73519652992756],[-87.63408391898415,41.735461447206546],[-87.63409453082963,41.735623083398195],[-87.63410873193256,41.73579160138161],[-87.63411548990761,41.73584412800968],[-87.63412816477789,41.73594231372031],[-87.6340797667253,41.73596925703627],[-87.63393980259204,41.73595835825751],[-87.6338103899463,41.73594828097587],[-87.63381325003974,41.736052570963686],[-87.633829529766,41.73666259293542],[-87.63384475234814,41.73728564443015],[-87.63384692703953,41.73738067942419],[-87.63385156998703,41.737501457353915],[-87.63385408377903,41.73756527760225],[-87.6338569732827,41.73763664726527],[-87.633860528968,41.737731004857125],[-87.63386777561185,41.737949564411046],[-87.63387085139281,41.73804597703442],[-87.63388284847956,41.73820659248988],[-87.63390125683583,41.73836724669245],[-87.63391528004146,41.73846784241204],[-87.63394025274505,41.73861447197035],[-87.63397119073738,41.73876010843779],[-87.63400763198709,41.73890509285961],[-87.63405313242231,41.739059393897264],[-87.63408106198764,41.739144637475164],[-87.63403720450573,41.739176616477806],[-87.63396298438579,41.73947426538417],[-87.6338933523507,41.739348975443086],[-87.63375249240379,41.739034580508196],[-87.63368850620687,41.73885340949595],[-87.63367921269169,41.73882350853627],[-87.63366252459774,41.73875754348015],[-87.63365179762216,41.73869092864332],[-87.6336470280204,41.73862400731779],[-87.63364233253581,41.73855022511871],[-87.63363039590035,41.73846850920601],[-87.63361077025023,41.73837782745906],[-87.63357217024056,41.73826301743933],[-87.6335233542833,41.73816118065805],[-87.63339783878659,41.7379103408621],[-87.6331723024535,41.73746507455287],[-87.63305891948329,41.73723591973664],[-87.63298526718509,41.73710168569215],[-87.63286295318309,41.73689374464213],[-87.63277515306469,41.736754964427426],[-87.63275938620532,41.73673085585047],[-87.63270616324591,41.73665540582093],[-87.63264788087793,41.73658198314641],[-87.63258770342651,41.73651438054494],[-87.63251248849852,41.73643982541713]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3549856.22471","perimeter":"0.0","tract_cent":"1189423.60825327","census_t_1":"17031430500","tract_numa":"19","tract_comm":"43","objectid":"522","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1857578.08313354","census_tra":"430500","tract_ce_3":"41.76424346","tract_crea":"","tract_ce_2":"-87.58127102","shape_len":"8060.93463894"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58597644088775,41.76241235114011],[-87.58623219106452,41.76241006766087],[-87.58623461642671,41.76248252075755],[-87.5862454603058,41.7631385239494],[-87.58624588128237,41.76316397508442],[-87.58625356187716,41.763321700972284],[-87.58625721904701,41.763396792473955],[-87.58627682395543,41.76406183515491],[-87.58628087606441,41.764233322563705],[-87.58629491068385,41.76482725417345],[-87.58630050577116,41.76503374408801],[-87.58630348058627,41.76514305302707],[-87.58631135106866,41.76543228584212],[-87.586315216151,41.76556046950435],[-87.58631982839962,41.76580748594797],[-87.58632473212407,41.76597208929188],[-87.58592002915806,41.76597636621707],[-87.5855995250447,41.76597975228227],[-87.58534816042675,41.765984373026576],[-87.58533254141508,41.76598465938039],[-87.58510742794567,41.76598878803519],[-87.58482407917843,41.76599134171448],[-87.58477287938989,41.765991803152886],[-87.58446405297404,41.76599458539303],[-87.584349264584,41.76599587914624],[-87.58422957284999,41.7659972280822],[-87.58422418450162,41.76599728790107],[-87.58398658759302,41.765999924865326],[-87.58367534710627,41.76600275812119],[-87.58331227142989,41.76600606254132],[-87.58306920670567,41.76600925056347],[-87.58285796472505,41.76601198731846],[-87.58278020639382,41.76601279469733],[-87.58244513831369,41.766016272757646],[-87.58223496248105,41.766018454127014],[-87.58204679822808,41.76601939181354],[-87.58178780707988,41.76602099105714],[-87.58151356287632,41.76602295643283],[-87.58122470323698,41.76602508398807],[-87.5809572277972,41.766027053377655],[-87.58080075962532,41.766028937548214],[-87.58059786627739,41.766032451519976],[-87.58044780374568,41.766035050079374],[-87.5801734379757,41.76603799940446],[-87.57998063849712,41.7660400367128],[-87.57973490778542,41.76604267054899],[-87.57937038519967,41.766045763113375],[-87.57913842353955,41.76604773025485],[-87.57913714049556,41.766047738297935],[-87.5788425170556,41.766049574490054],[-87.5787462686273,41.76605017455681],[-87.5784909997732,41.766051766116476],[-87.57814113935217,41.76605382897142],[-87.57768759730993,41.76605650143156],[-87.57753333168269,41.766058037233186],[-87.57750221247792,41.76605834706391],[-87.57739878986172,41.766059376584934],[-87.5770557621524,41.76606279972422],[-87.57670397313781,41.76606630135393],[-87.57629757286264,41.76606874885903],[-87.57629357847622,41.765919522459654],[-87.57629106085817,41.765743925994734],[-87.57629020169178,41.76568368282319],[-87.57628734349282,41.76548330341281],[-87.57628242958252,41.76529328360414],[-87.57627668424767,41.76507109519069],[-87.57627459475124,41.76496509680596],[-87.57626981206182,41.76472650384701],[-87.57626574554148,41.764533004343974],[-87.57626110640193,41.764330657299716],[-87.5762571676715,41.76415887312559],[-87.57625428897238,41.76399622729542],[-87.57624157499006,41.76343340953517],[-87.57622140614568,41.762514867740066],[-87.57660313997197,41.762509636100596],[-87.57744152421894,41.762499896849384],[-87.57758321005262,41.76249824931626],[-87.57805870017555,41.76249348353843],[-87.57867341070221,41.76248731965799],[-87.57917889358791,41.76248243394773],[-87.5792859411684,41.76248138845942],[-87.57941687648263,41.762480109388505],[-87.57979155560353,41.762476530006],[-87.57989944595673,41.762474972722806],[-87.5802098813188,41.76247049122613],[-87.58051097272397,41.76246843811171],[-87.58082145993684,41.76246632033543],[-87.58115007299011,41.762462078302136],[-87.58152318657645,41.76245757740435],[-87.58174716539946,41.76245541077332],[-87.5819564085125,41.762453386088936],[-87.58234375431465,41.76244960267472],[-87.58250843892053,41.76244799374271],[-87.58283692174818,41.76244547438968],[-87.58295943571707,41.762444135446174],[-87.58328635285983,41.76244056092656],[-87.58357670591955,41.762437066031204],[-87.58400185919764,41.76243194742314],[-87.58413624502653,41.76243078427212],[-87.58434541183325,41.762428973733066],[-87.58468405810251,41.76242554826507],[-87.58482225825263,41.76242415010495],[-87.58513549998285,41.76242105862572],[-87.5852283923256,41.762420026010474],[-87.58568350611962,41.762414966182476],[-87.58583248050795,41.76241363637129],[-87.58597644088775,41.76241235114011]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14610265.4885","perimeter":"0.0","tract_cent":"1195603.34272211","census_t_1":"17031480500","tract_numa":"85","tract_comm":"48","objectid":"514","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1844264.84742841","census_tra":"480500","tract_ce_3":"41.72756039","tract_crea":"","tract_ce_2":"-87.55906029","shape_len":"18347.8486343"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.54657666450261,41.72276415979876],[-87.54686328192992,41.72276146561284],[-87.54687835351449,41.72276133714821],[-87.54741514917696,41.72275676157561],[-87.54750442094337,41.722756036194646],[-87.54756871884398,41.72275551374399],[-87.54761852589873,41.72275510869829],[-87.54763683957518,41.72275496004063],[-87.54772283180182,41.722754261188605],[-87.54785161516801,41.722753214544696],[-87.54790824113772,41.722753377130736],[-87.548051161002,41.722753787244905],[-87.54817811248104,41.72275415173886],[-87.548225348783,41.72275428678266],[-87.54832610814336,41.72276128709917],[-87.5484753674682,41.722771654917146],[-87.54855921507581,41.72277747911233],[-87.54866200103598,41.722777757611965],[-87.54876476062624,41.72277803583962],[-87.54887594508625,41.722778336913066],[-87.54895751796697,41.72277855759589],[-87.54902612387524,41.72277874322832],[-87.5493451817462,41.722779606019394],[-87.54969662911354,41.722778877297536],[-87.54982747750559,41.722778605714815],[-87.54989436826392,41.72277846683118],[-87.55036400514058,41.72277332516567],[-87.5503902719334,41.72277301373477],[-87.5510762430193,41.72276488321401],[-87.55140209573248,41.72276101885771],[-87.55176067196487,41.72275803699059],[-87.55203918610302,41.72275473222426],[-87.55217034519556,41.722753089850904],[-87.55245753896325,41.72274954806257],[-87.5529804521097,41.722743098254334],[-87.55352391137542,41.72273696305979],[-87.55384619066034,41.72273277936732],[-87.55439579390563,41.722725642455735],[-87.55486450726083,41.72272102499407],[-87.55522475512741,41.72271648294951],[-87.5558231043028,41.72270893628336],[-87.55633627313792,41.72270247305002],[-87.55653709838869,41.72270007114046],[-87.55660355559507,41.72270052038639],[-87.55684544548264,41.72269630983546],[-87.55720650181654,41.72269153157773],[-87.5576418526798,41.72268618346029],[-87.55798630957534,41.72268186068795],[-87.55835582840417,41.72267722236508],[-87.55853204800921,41.722675009971525],[-87.55905008557824,41.72266565847382],[-87.5593889076163,41.72266689823501],[-87.55941000096163,41.72266633995661],[-87.55973462108904,41.722657752811045],[-87.55985859339985,41.72265447310064],[-87.55989967936044,41.72265445217203],[-87.56011085624233,41.72265434426798],[-87.56029820487774,41.722654248016994],[-87.56072257691245,41.72264927046928],[-87.56097630354822,41.72264629412157],[-87.56132948740245,41.72263814391694],[-87.56171267750783,41.72263565338804],[-87.56258420424894,41.722626299040535],[-87.56314117013854,41.72261826487561],[-87.56338813672356,41.72261470137701],[-87.56339977719459,41.722614589193526],[-87.56420902150653,41.72260677916445],[-87.56471662063171,41.72260033809011],[-87.56558907657275,41.72258926212085],[-87.56561267334165,41.72332661128485],[-87.56561641799868,41.72344362139923],[-87.56561642178411,41.72344373421574],[-87.56563065067809,41.72388835571775],[-87.56564790064544,41.72442736711841],[-87.56565724014354,41.72472914491567],[-87.56567393503761,41.72526228409147],[-87.56568962267325,41.725766532337396],[-87.56570339690532,41.72623928858729],[-87.56571027023602,41.72647518305769],[-87.56571859605943,41.72671135918269],[-87.56571911589157,41.726726099604285],[-87.5657288659663,41.727002599431074],[-87.56573417943186,41.727151321126925],[-87.5657398574429,41.72731022746931],[-87.56574989422725,41.727593397582],[-87.56576030288282,41.72788848047078],[-87.56576618524153,41.72806300437957],[-87.56577838717445,41.728425031571106],[-87.56578783839085,41.728720547109695],[-87.56580006582519,41.72910288369259],[-87.565810965133,41.72944292156856],[-87.56581245764359,41.72962317778372],[-87.5658139686269,41.72989122539505],[-87.56581611494593,41.73027212158331],[-87.56581690627195,41.73029954279154],[-87.56583310422758,41.7308607521254],[-87.56584318142365,41.73121140515432],[-87.56585696059075,41.731718604522165],[-87.56586519103848,41.73202156198318],[-87.56587391623304,41.73230422912251],[-87.56590106090216,41.7331662603403],[-87.56591404400882,41.73354159380548],[-87.56592392970838,41.73382737956585],[-87.56592866688482,41.73401556092035],[-87.56594196398875,41.734543791656364],[-87.5656459390084,41.73526090990629],[-87.56560528927643,41.73578756768384],[-87.56561070630278,41.73614024725369],[-87.5657006250207,41.73719771954062],[-87.56500739655816,41.73669962065581],[-87.56469695418365,41.7364764904991],[-87.56423343940577,41.736143335546075],[-87.56359855731056,41.73568676457511],[-87.56326660683999,41.73544803462726],[-87.56275472278197,41.73507982386306],[-87.56161546898362,41.734260307954486],[-87.56119396752761,41.7339562847116],[-87.5610562666583,41.733856961603884],[-87.56090900951776,41.73375074570402],[-87.56074551427875,41.73363286936929],[-87.5601864031533,41.73322975703061],[-87.55986131715291,41.73299537056665],[-87.55663926661694,41.73067213659705],[-87.55565256465783,41.72996063129793],[-87.55508456674092,41.72955101819723],[-87.55447610497265,41.72911192251917],[-87.55399885177728,41.728767486630254],[-87.55359285836546,41.72847446671422],[-87.55324640786138,41.72822608512691],[-87.55324627711128,41.72822599148159],[-87.55292400458653,41.727994940907614],[-87.55258180193509,41.727746758772426],[-87.55230200081823,41.727543831372266],[-87.55211394762537,41.727408750883725],[-87.55199068587875,41.72732019422238],[-87.55194862581925,41.72728998151524],[-87.55167410691456,41.727092788153946],[-87.55141640062213,41.726907660010774],[-87.55118008455523,41.726739956436404],[-87.5508828860685,41.72652904578674],[-87.55073907482246,41.72642408423784],[-87.5501431517629,41.725989140175464],[-87.54954238560876,41.725560059960806],[-87.54917604936415,41.72529575334574],[-87.54836093160326,41.724754764633836],[-87.54820427533036,41.72465079093228],[-87.54801503040513,41.724522314008645],[-87.5478704958674,41.72442418986298],[-87.54769216278669,41.72429925580295],[-87.54761213726614,41.724243192590365],[-87.54738488640167,41.724079806441665],[-87.54727746483093,41.7240020182549],[-87.5471318979136,41.723896607103335],[-87.54704123491719,41.723831641436824],[-87.54700606933494,41.72380648794411],[-87.546946722781,41.7237640378699],[-87.54688004288596,41.7237163423188],[-87.54687868797714,41.72371537335992],[-87.54658664076534,41.72350643607811],[-87.54628812993444,41.72329039047041],[-87.54611621709977,41.72316750264505],[-87.54567696315212,41.72282057819381],[-87.5459976070698,41.72278929233845],[-87.54632798043578,41.72277143976538],[-87.5464049993781,41.722768953720134],[-87.54646015451463,41.722767173305385],[-87.54648400780032,41.72276640330822],[-87.54654400563338,41.722764466657054],[-87.54657666450261,41.72276415979876]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3622329.57716","perimeter":"0.0","tract_cent":"1189458.40016058","census_t_1":"17031430900","tract_numa":"15","tract_comm":"43","objectid":"515","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856265.59213537","census_tra":"430900","tract_ce_3":"41.76064104","tract_crea":"","tract_ce_2":"-87.58118556","shape_len":"8113.66444302"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58584892265388,41.758766667963144],[-87.58613636664421,41.75876442319062],[-87.58614066435008,41.75886572311551],[-87.58615896503935,41.75954151521676],[-87.58616264189868,41.75967728878786],[-87.58616455378886,41.75974789551077],[-87.58617516931703,41.760216690407596],[-87.58618489233147,41.760588875017724],[-87.58619847000303,41.76110860101512],[-87.58620793260208,41.76150198740115],[-87.58621281224346,41.761704837690196],[-87.58622097888507,41.762075096289166],[-87.58622856162798,41.76230162627492],[-87.58623219106452,41.76241006766087],[-87.58597644088775,41.76241235114011],[-87.58583248050795,41.76241363637129],[-87.58568350611962,41.762414966182476],[-87.5852283923256,41.762420026010474],[-87.58513549998285,41.76242105862572],[-87.58482225825263,41.76242415010495],[-87.58468405810251,41.76242554826507],[-87.58434541183325,41.762428973733066],[-87.58413624502653,41.76243078427212],[-87.58400185919764,41.76243194742314],[-87.58357670591955,41.762437066031204],[-87.58328635285983,41.76244056092656],[-87.58295943571707,41.762444135446174],[-87.58283692174818,41.76244547438968],[-87.58250843892053,41.76244799374271],[-87.58234375431465,41.76244960267472],[-87.5819564085125,41.762453386088936],[-87.58174716539946,41.76245541077332],[-87.58152318657645,41.76245757740435],[-87.58115007299011,41.762462078302136],[-87.58082145993684,41.76246632033543],[-87.58051097272397,41.76246843811171],[-87.5802098813188,41.76247049122613],[-87.57989944595673,41.762474972722806],[-87.57979155560353,41.762476530006],[-87.57941687648263,41.762480109388505],[-87.5792859411684,41.76248138845942],[-87.57917889358791,41.76248243394773],[-87.57867341070221,41.76248731965799],[-87.57805870017555,41.76249348353843],[-87.57758321005262,41.76249824931626],[-87.57744152421894,41.762499896849384],[-87.57660313997197,41.762509636100596],[-87.57622140614568,41.762514867740066],[-87.57621144666105,41.76206127226361],[-87.57620882376914,41.76194182326287],[-87.57620146674276,41.76160636731336],[-87.57619139691883,41.76114720780225],[-87.57618151674278,41.760696679764834],[-87.576151818242,41.7593424350115],[-87.57615101629678,41.759304428907996],[-87.57614198394997,41.75887640542735],[-87.57681422034176,41.758868714750136],[-87.57735798995189,41.758863160704166],[-87.5773627050161,41.75886311241864],[-87.57797724192875,41.758856832230414],[-87.57853618211197,41.75885034652735],[-87.57920278203454,41.75884259633443],[-87.57952129154022,41.758838894432174],[-87.57981484052056,41.75883522525997],[-87.57984266352506,41.75883487726212],[-87.58010300127242,41.75883162264907],[-87.58042131819329,41.758828647520346],[-87.58087273232667,41.75882442688162],[-87.58104245853835,41.758821728989616],[-87.58132758978043,41.758817196205335],[-87.58155064610894,41.75881453952822],[-87.58197005810489,41.75881069656519],[-87.58226236503059,41.75880668589525],[-87.58244686162975,41.75880415411067],[-87.58285077745582,41.758799630625866],[-87.5831633438576,41.75879640286663],[-87.58348535457141,41.75879258028377],[-87.5839553474077,41.75878699921366],[-87.58425386757806,41.75878444527294],[-87.58458800266469,41.758782754126436],[-87.5847657736436,41.75878185429616],[-87.5850999278889,41.758775356795624],[-87.58552999650304,41.758769157449386],[-87.5857384418793,41.75876753038564],[-87.58584892265388,41.758766667963144]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7054090.55744","perimeter":"0.0","tract_cent":"1192204.17919406","census_t_1":"17031431200","tract_numa":"32","tract_comm":"43","objectid":"516","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854343.97242455","census_tra":"431200","tract_ce_3":"41.75530164","tract_crea":"","tract_ce_2":"-87.57118474","shape_len":"10622.0163183"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.57543936082823,41.75161220932688],[-87.5759817140993,41.751606120770454],[-87.57599237085978,41.75199326516279],[-87.5760023557989,41.75235594955004],[-87.5760079043599,41.75260654093426],[-87.57601116527732,41.75275382125558],[-87.57602609180113,41.75342399159278],[-87.5760455642479,41.75429826499436],[-87.57606584660375,41.75524181682058],[-87.57608280903682,41.7560309310154],[-87.57610281065736,41.75705937718908],[-87.57610550163531,41.75713450771249],[-87.57611874668069,41.75777519627364],[-87.57613247063071,41.758425575286594],[-87.57614198394997,41.75887640542735],[-87.5753452460249,41.758885515132015],[-87.57491005617946,41.75889100613713],[-87.57411994655857,41.75890097081894],[-87.573673063515,41.75890578078716],[-87.57309738304602,41.758911974259995],[-87.57302685633461,41.75891273289072],[-87.57246138225051,41.75891956811756],[-87.57198972294877,41.75892526702502],[-87.57124585424799,41.758933884945485],[-87.57035054640406,41.75894425101951],[-87.57001925949488,41.75894801741442],[-87.56923677232382,41.75895690993804],[-87.56880967006022,41.75896136298918],[-87.56825658552248,41.75896712711453],[-87.56759098362605,41.75897418101498],[-87.56718174988085,41.758978516034716],[-87.56637312414992,41.75898784620514],[-87.56636393614973,41.758537753847726],[-87.56635857333006,41.75827503953114],[-87.56634918532595,41.75785068124343],[-87.56634147116802,41.75748281171765],[-87.56633525273958,41.75715788420258],[-87.56633356473988,41.75706968743492],[-87.56632387829923,41.756547136127466],[-87.56631465699805,41.75603496132067],[-87.56630279118572,41.7553606631716],[-87.56628877632495,41.754564174463226],[-87.56627371013096,41.75375187146891],[-87.56626867823613,41.753546079181135],[-87.5662685670898,41.7535415322347],[-87.56625613717917,41.75303315964439],[-87.56623979531415,41.75234958297285],[-87.56623895903643,41.7522774026061],[-87.56623786689084,41.75218312810124],[-87.5662325933922,41.75172791962782],[-87.56691216539916,41.75171876489962],[-87.56745076854973,41.751714472107174],[-87.5681082345581,41.751709228622005],[-87.56866990386547,41.75170086218203],[-87.56931019334475,41.75169132149985],[-87.56988646027173,41.75168381211537],[-87.57014346690181,41.751680462109704],[-87.57041191480262,41.75167696246936],[-87.57110626261868,41.75166837776015],[-87.57156156869804,41.751662746025424],[-87.5723247427442,41.75165308168665],[-87.5735431661217,41.75163764195855],[-87.57405118667755,41.75163120045209],[-87.57476500544674,41.75162143714397],[-87.57543936082823,41.75161220932688]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11406665.9813","perimeter":"0.0","tract_cent":"1197323.19520088","census_t_1":"17031431400","tract_numa":"28","tract_comm":"43","objectid":"517","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1855355.86938772","census_tra":"431400","tract_ce_3":"41.75795238","tract_crea":"","tract_ce_2":"-87.55239163","shape_len":"19206.0221396"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.55909438388218,41.76386540201285],[-87.55897906978693,41.763752575647885],[-87.55897902333889,41.76375259756359],[-87.55882482887841,41.763825631587295],[-87.55882274875442,41.76382681901576],[-87.55880268421524,41.76383827070407],[-87.55873614702529,41.763873061583276],[-87.55872407925347,41.76387937195219],[-87.5586662040114,41.763909635203625],[-87.55860316094704,41.763941988483396],[-87.55845607239912,41.76401747227918],[-87.55845597502818,41.76401752239186],[-87.55831805416902,41.76387663370944],[-87.557572475576,41.76311508228284],[-87.55770076651787,41.76304882305663],[-87.55770097749014,41.76304871416035],[-87.55766272892815,41.76300925398011],[-87.55764967626732,41.762995787974646],[-87.5576458970774,41.762962052660114],[-87.55764589377587,41.7629620224506],[-87.55764249513838,41.7629316887866],[-87.55764249479171,41.76293168713769],[-87.55764188185563,41.76289395829917],[-87.55764110569702,41.76284616585859],[-87.55762771633854,41.762833725040416],[-87.55760242889093,41.762810228633704],[-87.55753312768951,41.76278185150423],[-87.55751003815485,41.76277255654241],[-87.55749484300998,41.762765127217676],[-87.55742684568158,41.762728991930324],[-87.55741333056707,41.76272331327395],[-87.55739584724778,41.76271596700272],[-87.55737337972093,41.7627066762143],[-87.55731807839827,41.76268160433213],[-87.55723854994082,41.76264127542937],[-87.55721516557657,41.76263017431821],[-87.55716624223062,41.76260694927213],[-87.55713241499664,41.76258683641198],[-87.55710863186228,41.76257269547562],[-87.55707881433271,41.76255384983639],[-87.5570589054343,41.76254126665616],[-87.55703518498456,41.76252718869795],[-87.55702069206981,41.76251858730235],[-87.55699217613824,41.762503301276595],[-87.55694580202672,41.76247614048227],[-87.55690846378485,41.762454271906066],[-87.55686964510555,41.76243021626447],[-87.5568371744068,41.76239947972055],[-87.55683716679287,41.76239947280835],[-87.55683702835903,41.762399341518794],[-87.55683166046455,41.762393624002925],[-87.55678517011457,41.7623441056977],[-87.55676917695061,41.76232554140118],[-87.55675625199939,41.76231053907769],[-87.5567195358421,41.76226825133886],[-87.55671948595592,41.762268193645916],[-87.55664934594925,41.7622091834491],[-87.55662799239421,41.76219580720615],[-87.55659841581638,41.76217728003639],[-87.55653594539272,41.762138903547715],[-87.55645763208736,41.76209811606307],[-87.55641813863517,41.762081382968844],[-87.55637254003462,41.762063236427295],[-87.55633672821088,41.762045156879225],[-87.55631791800235,41.762033585686254],[-87.55628672862427,41.76201109656908],[-87.55626159523834,41.761992973685075],[-87.55623198823474,41.761964863965325],[-87.55621096310735,41.7619363729253],[-87.55620043440554,41.76192556136632],[-87.55619347658477,41.76191841618705],[-87.55617573282807,41.761900788393426],[-87.55614758659935,41.7618728254731],[-87.55607856965331,41.76182112206894],[-87.55601787703881,41.76178731422405],[-87.55598815222491,41.761772018671394],[-87.55596319245213,41.76175941704285],[-87.55594319570893,41.76174932159937],[-87.55591497798831,41.76173342891318],[-87.55589466687007,41.76172198964883],[-87.55584116229393,41.76168935304086],[-87.55580672436044,41.761668347328104],[-87.55576407515862,41.76164447779605],[-87.55573391000132,41.76162759519096],[-87.55563970012093,41.76158900421216],[-87.55559339023704,41.76157908707354],[-87.55559338072787,41.7615790853626],[-87.55552933367578,41.76157945668276],[-87.55552131524033,41.76157950311319],[-87.55548400084605,41.76158433099657],[-87.55545398780555,41.76158821377105],[-87.5554492600098,41.76159026961921],[-87.5554343489123,41.7615967524944],[-87.55538038306062,41.76160943236191],[-87.5553510200845,41.76161633109901],[-87.55532482865239,41.76161203757321],[-87.55526973738657,41.76162126924671],[-87.55519072597558,41.76165154678681],[-87.55516537876414,41.76166126005383],[-87.55508944494414,41.7616983691566],[-87.554976120528,41.76175375107661],[-87.55487554083467,41.76178737301656],[-87.5548280689243,41.761776948234726],[-87.55480242803151,41.76177131745861],[-87.55476748482067,41.76172991653843],[-87.55473680343144,41.76163914693169],[-87.55468974052225,41.761533752548516],[-87.55466960526267,41.76148866098724],[-87.55452780511592,41.76129378806276],[-87.5544340639647,41.761165076392636],[-87.55439547867203,41.761101800871884],[-87.55438255462825,41.761080606884555],[-87.55438252551932,41.76108055893649],[-87.55434745437863,41.76105287903518],[-87.55430930889264,41.7610523756007],[-87.55427903408486,41.7610519757445],[-87.55425114506495,41.76103348191518],[-87.55420961187338,41.76098243110546],[-87.55417542002479,41.760930524176594],[-87.55414919214378,41.76087773818921],[-87.55410598169726,41.76081385929017],[-87.55406972438885,41.76078114920041],[-87.55403269010006,41.76076122086623],[-87.55400780529284,41.760751544737765],[-87.5539956253744,41.76074680861876],[-87.55397336918023,41.760738657479784],[-87.55394088823664,41.760726761266916],[-87.55393115519584,41.760723302468826],[-87.55390680162286,41.760714647232064],[-87.55388787437131,41.76070636443106],[-87.55387278485289,41.76069976137525],[-87.55373244772167,41.76063569070008],[-87.55366800382691,41.76060918259758],[-87.55362347686248,41.76058976998104],[-87.55358596777107,41.760573416839655],[-87.55348631462095,41.760530669885554],[-87.55344263435423,41.76051108264591],[-87.5533878876049,41.760486532676474],[-87.55332707426079,41.76046279277405],[-87.55324807477147,41.760430697026806],[-87.553199815068,41.76041000805195],[-87.5531581194876,41.760392132898524],[-87.55296350484443,41.760305913975074],[-87.55286766856257,41.760263456135725],[-87.55285510172716,41.76025772547948],[-87.55282392740807,41.76024350984218],[-87.55278507534219,41.76022540825633],[-87.5526939175884,41.760186368790315],[-87.55268161470067,41.760179789726195],[-87.55256220025532,41.760115933329494],[-87.5524680175418,41.76007550070548],[-87.55246072058793,41.76007270709099],[-87.55238231828302,41.76003970918963],[-87.55225173843921,41.759975236222346],[-87.55221109138462,41.75996122166544],[-87.5521367654644,41.75993559476766],[-87.551952452409,41.759871222893],[-87.55188316526979,41.759845293649775],[-87.55179680070269,41.759812973368994],[-87.55172141003166,41.75978260258217],[-87.5517171420011,41.759780872083816],[-87.5516865480311,41.75976816395896],[-87.55161867769682,41.75973997109635],[-87.55156149162687,41.75971789794745],[-87.55153783578459,41.75970876697884],[-87.55152261974848,41.759703174848795],[-87.55145267359637,41.759677094316025],[-87.55140047818276,41.75965493045949],[-87.55135848763007,41.759637100121004],[-87.5512569258686,41.75960073326951],[-87.55116391553005,41.75956351865471],[-87.55106913380826,41.759521242402165],[-87.55099066623704,41.75949373169445],[-87.55086481121229,41.7594448494709],[-87.55084716476438,41.759440113933316],[-87.55082462475296,41.75943406485023],[-87.55077293232738,41.759414036450835],[-87.5506969708663,41.759382426445406],[-87.55062338322705,41.75935448192435],[-87.55050359871565,41.75930975710248],[-87.55043300343354,41.759285949015414],[-87.55033870652986,41.75925511944523],[-87.55024569152157,41.75921834341626],[-87.55018013029829,41.759195521206784],[-87.55017999671774,41.75919547474094],[-87.55010228509668,41.75916656542146],[-87.55000971324972,41.759132128165795],[-87.54999467624613,41.75912708646166],[-87.54998598600417,41.75912417259521],[-87.54981736267735,41.75905993802315],[-87.54980936458905,41.759056891100016],[-87.54978392670094,41.75904720122795],[-87.54954549479656,41.758956373517734],[-87.54916228100312,41.75884365776628],[-87.54906274334867,41.75881536497776],[-87.54899638447405,41.75879650297636],[-87.54896660134965,41.7587922652617],[-87.54892362690782,41.758784782361865],[-87.5488943025749,41.758777362458275],[-87.54887535932379,41.758772569464064],[-87.54880475872895,41.75875227440905],[-87.54870886637796,41.758726207129904],[-87.54869229869547,41.758723507485435],[-87.54865279056528,41.75871706930924],[-87.54862124812283,41.75871554786684],[-87.54861568476029,41.75871527962225],[-87.54857892776018,41.758711845180244],[-87.5485712043688,41.75871107836044],[-87.54851338854795,41.75870379141369],[-87.54850628393649,41.75870289599256],[-87.54849595302731,41.758701869308766],[-87.54840100170959,41.75869243505786],[-87.54818129390213,41.75867894096643],[-87.5481367811091,41.75867740210393],[-87.5481366630677,41.75867740404151],[-87.54813253892186,41.75867747410158],[-87.54809638246213,41.75867808677849],[-87.54808366345188,41.75867819441846],[-87.54806408991077,41.758678359764694],[-87.54804811590951,41.758677863911544],[-87.54802778166045,41.75867723314645],[-87.54799949422481,41.758675865782614],[-87.54797422875328,41.758674644757775],[-87.54793793112421,41.75867571334484],[-87.5478877103484,41.758682340806125],[-87.54784760279466,41.75869227538094],[-87.54781335918058,41.75869925820444],[-87.5477436236616,41.758706245326444],[-87.54773259017314,41.75870735075203],[-87.54764302581872,41.75871532848396],[-87.54760653059724,41.75871756989856],[-87.54758111242708,41.758719131006295],[-87.5475434903326,41.758720547717616],[-87.54754290395742,41.758720543707135],[-87.54744599574853,41.75872067698674],[-87.54738256596355,41.75871950185668],[-87.54733771669993,41.75871856385313],[-87.54732872172377,41.75871907148262],[-87.54729304366899,41.75872108484865],[-87.54728124353561,41.75872094950445],[-87.54724584388224,41.75872054237195],[-87.54721308343582,41.758725125948224],[-87.54719984025914,41.75872697856815],[-87.5470884496267,41.758742600041835],[-87.54708826568631,41.75874262595156],[-87.54706473579647,41.758747158216536],[-87.54701754558678,41.758756247910135],[-87.5470131627596,41.75875703159713],[-87.54697262230684,41.758764283099815],[-87.54694329314594,41.758770276776055],[-87.54693676057263,41.75877161161927],[-87.54691783369069,41.758780049480606],[-87.54691181205406,41.75878273389605],[-87.54691125485013,41.75878298228266],[-87.54690960055684,41.758783719876995],[-87.54689068357298,41.758796839842056],[-87.54688283895511,41.758802280221474],[-87.54688083563204,41.75880338672923],[-87.54685073563745,41.75882000842222],[-87.54682153832083,41.75882663772505],[-87.54680192704107,41.75883109028314],[-87.54669829414071,41.75884761466854],[-87.54669766430956,41.758847747570904],[-87.54668017852102,41.75885144323989],[-87.54659034496751,41.75887846288568],[-87.54652534760908,41.75890388906636],[-87.54636392916733,41.75896703429558],[-87.5460814481309,41.759088110367976],[-87.5460642707469,41.75909547278642],[-87.54574504115892,41.759250807625364],[-87.54558244405143,41.75932735997409],[-87.54550977451851,41.759361573165826],[-87.54546991042724,41.759386417502846],[-87.54544757861989,41.75940033517796],[-87.54543502028211,41.75941006759046],[-87.54540861481026,41.75943052963078],[-87.5453836647004,41.75945234552689],[-87.54536856607645,41.7594655468609],[-87.54536085376432,41.75947225892527],[-87.54533778017603,41.75949233929165],[-87.54532249355925,41.75950541666018],[-87.54531540787758,41.75951147850529],[-87.54528945120512,41.759531799520545],[-87.54528236114402,41.759537350071604],[-87.54526797294871,41.75954610529496],[-87.54524543388179,41.75955981952854],[-87.5452114627311,41.75957742385998],[-87.54515221418305,41.75961790793918],[-87.54501358853271,41.75970313809492],[-87.54493547238367,41.759751165095736],[-87.54475869190264,41.7598804710146],[-87.54464743720284,41.75997161400575],[-87.54457773319521,41.760023356100895],[-87.54456047658155,41.76003616599454],[-87.54450395471268,41.76007244251703],[-87.54443566874606,41.76010995521975],[-87.54443340083478,41.76011120119873],[-87.54443035315443,41.76011285044863],[-87.54438683694009,41.76013640283591],[-87.5443631773538,41.760146977686475],[-87.54434710823271,41.76015415974691],[-87.54433204336637,41.76016086433397],[-87.54431917310461,41.760166592477404],[-87.54427617550726,41.7601819122106],[-87.54424523047692,41.76019177096056],[-87.5442330211778,41.76019431696039],[-87.54421439965775,41.76019820039427],[-87.54420594010502,41.760198993844035],[-87.54419476809684,41.76020004144509],[-87.54417337843785,41.76019885169376],[-87.5441581535278,41.76019701821064],[-87.54415288626852,41.76019318530001],[-87.54415272969212,41.76019307143402],[-87.54415259491361,41.76019297336024],[-87.54415089630086,41.760191040687054],[-87.54414301987767,41.76018396777862],[-87.5441212406447,41.760164409157845],[-87.54409111527872,41.76015517376342],[-87.5440860782117,41.76015035311323],[-87.54408271050978,41.7601471298579],[-87.54406014570219,41.76013111255371],[-87.54404166212002,41.76012308255729],[-87.54403440791322,41.760113839337855],[-87.54401074470175,41.7601067611489],[-87.54398617453056,41.76010176183801],[-87.5439609935632,41.76009889997189],[-87.5439441843745,41.760098458183755],[-87.54393552842558,41.76009823075922],[-87.54391014595676,41.76009975809254],[-87.5438945472711,41.760102047502585],[-87.54388514113673,41.760103427740795],[-87.54387982184599,41.76010470899977],[-87.54386087826616,41.76010927129703],[-87.5438568046039,41.76011050760061],[-87.543853006127,41.76011166017304],[-87.5440907981395,41.76034562499675],[-87.5443299145808,41.760570350972436],[-87.54434257574107,41.760581758680416],[-87.54434369195282,41.7605827644453],[-87.54434372675983,41.76058279542042],[-87.54434431012665,41.76058319597697],[-87.54435964642914,41.76059371698625],[-87.54437400205254,41.76060117466525],[-87.54437741977856,41.76060295036626],[-87.54439668227869,41.76061027268968],[-87.54441710618394,41.760615599925266],[-87.54443825228314,41.76061879156748],[-87.54445375133001,41.760619528629704],[-87.54445982808761,41.76061981761578],[-87.54446499700842,41.76061974360996],[-87.54498364727492,41.760619797811835],[-87.54524056434614,41.7606198241194],[-87.54575507987033,41.76061798804029],[-87.54644351840588,41.76061552811975],[-87.5464617675742,41.76061692069734],[-87.54647039671143,41.760617579150924],[-87.54649307308702,41.76063046742804],[-87.54649243992546,41.760646352550424],[-87.54647679548074,41.760651844038954],[-87.54646968428895,41.760651202019474],[-87.54645706113497,41.76065006175607],[-87.54643471108655,41.76065243370368],[-87.54642277305908,41.760654766092564],[-87.54641082951994,41.76065709954018],[-87.54638723626387,41.760657607272194],[-87.54637889706927,41.76065778671012],[-87.54633612772645,41.760657438861756],[-87.54633601704484,41.76065743810359],[-87.54632679921114,41.760657563768326],[-87.54608296262276,41.76066089111354],[-87.54608274999326,41.7606608347707],[-87.5460824178954,41.76066074687313],[-87.54604741428584,41.760651481583444],[-87.54600150276366,41.76064735239673],[-87.54596558878671,41.76064905527251],[-87.54594183402521,41.76065018174208],[-87.54589881859279,41.76065194542465],[-87.54581420175,41.76065685403174],[-87.54578241332584,41.760655593849265],[-87.54573635269591,41.76065376819203],[-87.54571079292343,41.760655033450576],[-87.545685228009,41.76065629949148],[-87.54567410558565,41.76065766371876],[-87.54566575606052,41.76065868772756],[-87.54566298279532,41.760659027942445],[-87.54565775941052,41.760659179566716],[-87.54563772055766,41.76065976036184],[-87.54558736238732,41.76065814640382],[-87.5455865369284,41.76065811988742],[-87.54558559219403,41.76065810600021],[-87.54544698856813,41.76065606526698],[-87.54540021987262,41.76065624261864],[-87.54536968500616,41.76065635812597],[-87.54532113354901,41.760661267003854],[-87.54526436713734,41.7606635396022],[-87.54521159887915,41.760665565169774],[-87.54517483438994,41.760665752053775],[-87.54517073612678,41.7606654335929],[-87.54516476487535,41.760664968635716],[-87.54489040519002,41.760669179572375],[-87.54471152767863,41.76067192807546],[-87.54443362694374,41.760676197590065],[-87.54442105058993,41.76067554810397],[-87.54441033061964,41.760674994241526],[-87.54439861848162,41.76067327190568],[-87.5443874276992,41.76067162669584],[-87.54437609197277,41.760668828160846],[-87.54436524700844,41.76066615072505],[-87.54435054077058,41.76066089375585],[-87.54434419029214,41.76065862369997],[-87.54432455016001,41.7606491853942],[-87.54430661775858,41.76063797529706],[-87.54429072057737,41.76062518803344],[-87.54428858246106,41.760623197458116],[-87.54367008323915,41.76005710832501],[-87.54363259837564,41.760022838728126],[-87.54345466309584,41.75986016327308],[-87.54328026011791,41.75970071634134],[-87.5432801220889,41.75970073405337],[-87.54324615697992,41.759705037624855],[-87.54321299702798,41.759707196843905],[-87.54319853880116,41.75970517228933],[-87.54318496969435,41.75970327212684],[-87.54316422045285,41.75969464955665],[-87.54314926652732,41.75968427344561],[-87.54313721784926,41.75967591241588],[-87.54310414782532,41.75964986088401],[-87.54304101126108,41.75960085315805],[-87.54293505365469,41.75950198832209],[-87.54273907798496,41.75930609721885],[-87.54256635154033,41.759133444486146],[-87.54256343138626,41.75913052778521],[-87.5425609565901,41.7591280557064],[-87.54255988574769,41.75912622475274],[-87.5425475669727,41.75910515874007],[-87.54253686209066,41.759081456688726],[-87.54252902428864,41.75905714318317],[-87.54252442903503,41.759034324858476],[-87.54252404903927,41.75903243746189],[-87.54252197312233,41.75900747809086],[-87.54252283014154,41.75898248319843],[-87.54252661730874,41.758957619892826],[-87.54252661769544,41.75895761824891],[-87.54253074143035,41.75894232880789],[-87.54253283842232,41.758934554661195],[-87.54256973286606,41.758858022984555],[-87.54257863200381,41.75883956189731],[-87.54259481456259,41.75880599173259],[-87.54262731203352,41.75873857513284],[-87.5425869114779,41.758700805358],[-87.54257183602219,41.758686711187934],[-87.54164910960698,41.757824027339986],[-87.54163725186784,41.7578250746335],[-87.54154997062318,41.75783278425465],[-87.54145398161629,41.75783702181095],[-87.54144674204534,41.757837341568894],[-87.54144655589766,41.757837338364865],[-87.54144407363931,41.75783729930152],[-87.54137601937397,41.75783622290353],[-87.54136045008885,41.75783493635834],[-87.54130971179332,41.75783074348566],[-87.54128203239722,41.75782694447097],[-87.54128036612154,41.75782671591008],[-87.5412543522749,41.75782314517016],[-87.54121139661633,41.757814231110984],[-87.54119868501722,41.757811096754025],[-87.54118048435721,41.7578066086606],[-87.54114845935759,41.75779401135677],[-87.54112307643128,41.75777564852572],[-87.54110472074801,41.7577623699255],[-87.54109458808378,41.7577523986416],[-87.54108795429052,41.75774587032561],[-87.54105908459661,41.75771512780044],[-87.541022019414,41.7576833130872],[-87.54096983158578,41.7576413214093],[-87.54082615636399,41.7575046250847],[-87.54074121034488,41.75742629351783],[-87.54068223688768,41.75737591361335],[-87.54065473739648,41.75735259991305],[-87.54064643539539,41.75734556142335],[-87.54064631112927,41.75734544393346],[-87.54062495224277,41.7573251880234],[-87.54061978636,41.75731949693845],[-87.54060672737499,41.757305110432654],[-87.54060159757677,41.757295474946936],[-87.5405988818568,41.75729037459873],[-87.54059765587915,41.75727819519348],[-87.54059675875256,41.75726928404213],[-87.54059783132217,41.757266321841634],[-87.54060503025158,41.75724642762707],[-87.5406050310048,41.75724642598569],[-87.54062362302727,41.757227792621585],[-87.54062365902453,41.75722775637084],[-87.54067019436646,41.757195886863755],[-87.54070036389155,41.75717555807824],[-87.54073231879934,41.7571540256046],[-87.5407411960256,41.75714803183399],[-87.54078047535604,41.757121508880246],[-87.54084133510355,41.75708710304413],[-87.54088885922108,41.75705825981505],[-87.54089199217618,41.75705613922764],[-87.54091594965873,41.757039922400345],[-87.54092875995778,41.757030342329024],[-87.54092878585064,41.757030323023116],[-87.5409290730677,41.75703021386011],[-87.54093622406467,41.75702749363803],[-87.54094364772624,41.75702653246789],[-87.54094789715808,41.75702598245494],[-87.54095900608621,41.757025702037936],[-87.54096910038241,41.75702734029389],[-87.5409754290228,41.75702836749523],[-87.54098122919935,41.75703004721253],[-87.540985910384,41.7570314033441],[-87.54098918941786,41.75703254288581],[-87.54099638468023,41.75703504343698],[-87.5410532626533,41.757002503865515],[-87.5410531663713,41.7570024354175],[-87.54104359888052,41.75699563109945],[-87.5410437011479,41.756995540694106],[-87.54105280284126,41.75698747321144],[-87.54105582721986,41.7569847931324],[-87.54108372244023,41.756972444064324],[-87.54109839981346,41.756968127507605],[-87.5411227604732,41.75694820669803],[-87.54112988741207,41.756944788972646],[-87.5411405308084,41.756939685248874],[-87.54120321535994,41.75690888765097],[-87.54121178941674,41.75690247599273],[-87.5412160877316,41.756899261322225],[-87.54122497135187,41.75689262182536],[-87.54123380651349,41.756886018492835],[-87.54125876459885,41.756869189653315],[-87.5412610803193,41.75686762792307],[-87.54129544350867,41.75685098740801],[-87.54134777059261,41.756822506687556],[-87.54137908978309,41.75680545986494],[-87.54141983076298,41.756778120732655],[-87.54143511397966,41.756767864989264],[-87.54156510082417,41.75668538863296],[-87.5416249711862,41.7566521234979],[-87.54169628820271,41.75661249853799],[-87.54173931444211,41.75658205724364],[-87.54176816124742,41.756561648532625],[-87.54180021431569,41.756536100159096],[-87.54182770863795,41.75652064681912],[-87.5418494838636,41.75650831028768],[-87.5419389692729,41.756464771007614],[-87.54203007267657,41.75641180297502],[-87.54203090977288,41.75641129528282],[-87.54210203980216,41.756368142910304],[-87.54219101622505,41.75632122471842],[-87.54221896310473,41.756304836949],[-87.54223634868205,41.756294642227026],[-87.5422553496705,41.75628305464383],[-87.54225849619094,41.75628113581783],[-87.54228280316767,41.75626631191736],[-87.54231644773473,41.75624502032905],[-87.54232347096429,41.756240575448544],[-87.54235991776822,41.75622244782803],[-87.54237081810456,41.756217026047764],[-87.54244456790495,41.75617607430887],[-87.54249525043322,41.75614793081415],[-87.54260386453723,41.75607765630339],[-87.5426062754989,41.75607609355461],[-87.54260981288186,41.7560738006172],[-87.54264716075237,41.756050834327326],[-87.54270933574458,41.75601260139053],[-87.54280743996478,41.75595051441548],[-87.54283943294669,41.75593144653686],[-87.54291941808755,41.75588377517282],[-87.54297094367212,41.75585122581114],[-87.54298862161593,41.75584215457888],[-87.54303047204854,41.7558206793757],[-87.54306385278088,41.75579725370808],[-87.54310090579365,41.755773440272336],[-87.54311627733455,41.7557657126806],[-87.54314430993692,41.75575161950422],[-87.5431741880462,41.75572998040034],[-87.54320394914349,41.75571196322828],[-87.54320891157995,41.755709269525894],[-87.54324128734666,41.755691692946876],[-87.54327080521901,41.75567850322144],[-87.5433023965766,41.755660663541676],[-87.54333724437502,41.75563877892406],[-87.54333740983753,41.75563867522968],[-87.54336605296658,41.75562218740798],[-87.54339766775172,41.75560234315494],[-87.54342446845297,41.755580655932405],[-87.54343534254099,41.75557469845766],[-87.5434514774956,41.755565857768794],[-87.54347500815001,41.75555550943627],[-87.54347623962241,41.75555496794554],[-87.54347769384171,41.755554493025926],[-87.54348216358193,41.75555303305289],[-87.54356718346719,41.7555028483158],[-87.54363084039854,41.755460266296836],[-87.54367597215177,41.75543007639619],[-87.54376165364522,41.75538264008202],[-87.5438046354326,41.7553504155534],[-87.54385099775017,41.75532049227767],[-87.54389225439839,41.75529200264838],[-87.54391497995363,41.755276309391256],[-87.54392231155552,41.75527135609168],[-87.54394554212791,41.755255662730754],[-87.54395095679723,41.755248449229356],[-87.5439613021495,41.75523466737757],[-87.54396781442367,41.7552175874404],[-87.54397016723664,41.75520207144029],[-87.54397321359792,41.755180741474774],[-87.5439771684361,41.7551660863894],[-87.54397811710443,41.755152223510756],[-87.54399539346076,41.7551637557309],[-87.54494620222908,41.75443515578864],[-87.54526075778337,41.754362541628524],[-87.54656290319483,41.75387096526129],[-87.54773999381128,41.754530103850655],[-87.54870689655728,41.75409316417789],[-87.54874882993543,41.75401888800174],[-87.54964641102137,41.75347875312978],[-87.55016012940622,41.75316960679617],[-87.5505003027742,41.752967255404606],[-87.55097181498508,41.75268472071489],[-87.55132428458596,41.75247351433109],[-87.55181366150633,41.752179082108405],[-87.55228728193393,41.75191863856878],[-87.55228777089626,41.751918631738846],[-87.55255730775623,41.752170014533576],[-87.5528960405382,41.752485929073075],[-87.55294691877825,41.75253337970864],[-87.55322140121505,41.75278936871452],[-87.55340258456033,41.75295834314739],[-87.55380839629683,41.75333646220658],[-87.55394599527897,41.75346410347814],[-87.5540729516345,41.75358187169132],[-87.55420589527608,41.753705193657645],[-87.55446919674556,41.753949436721086],[-87.55457886083438,41.754051009952434],[-87.55472098393237,41.754182648105996],[-87.55505506120743,41.7544924164017],[-87.55551492012252,41.75491880869385],[-87.55556442751053,41.75496510258374],[-87.55574648588717,41.75513534295051],[-87.55577592327356,41.755162869334775],[-87.55612839150915,41.75548947005721],[-87.55622874953075,41.755488115649335],[-87.55626856452604,41.75548757811834],[-87.55630297244763,41.75548711350244],[-87.55640834312298,41.755485691299725],[-87.5566502779405,41.75570938235727],[-87.55706929063358,41.75609302974306],[-87.55714023134227,41.756157982977676],[-87.55723319645188,41.75624546770047],[-87.55737659105468,41.7563804086724],[-87.55758934590683,41.75658061913985],[-87.55766030809866,41.75664548904259],[-87.558063872909,41.757014182647495],[-87.55814377869007,41.75708725355177],[-87.5582294567479,41.75716736129654],[-87.55835423005402,41.757278013527625],[-87.55820456607628,41.757280765232885],[-87.55806533371877,41.75728332505406],[-87.55844094483024,41.75763042481502],[-87.55875512997925,41.75792075813634],[-87.55891986673008,41.75807161936559],[-87.55917681397116,41.75830692320865],[-87.55925229207526,41.7583764656172],[-87.55939155885017,41.75850477894289],[-87.55965048514281,41.75874105061011],[-87.56005690549969,41.7591204736488],[-87.56012011592034,41.75917948455738],[-87.56036040116501,41.759443588028326],[-87.56042351283114,41.759512954798055],[-87.56057477502901,41.759681017524315],[-87.56077562904521,41.75990399782677],[-87.5613859885101,41.76058075945139],[-87.5616963995637,41.76092493388682],[-87.56196340329421,41.76122111663903],[-87.56209695017532,41.76136938179439],[-87.56239263318811,41.76169643012121],[-87.56259445447532,41.761919658195524],[-87.56281679607766,41.76216761460088],[-87.56299475126161,41.76236658919222],[-87.56329489013561,41.76269974172272],[-87.56329293358763,41.76270029091484],[-87.56322238629649,41.76273919866715],[-87.56300639733216,41.76285158397384],[-87.56243159053604,41.763142547930855],[-87.56194579384128,41.76338808183791],[-87.56111178064833,41.76380960387486],[-87.56094246599314,41.76389430719035],[-87.56083447655843,41.76394823098153],[-87.5606086734936,41.76406104658642],[-87.56041151304859,41.76415956732133],[-87.5604000888156,41.764165346784154],[-87.560215577468,41.764258690096966],[-87.56005536802189,41.76434015966545],[-87.56005526033319,41.76434021437534],[-87.56005367749734,41.76434104567074],[-87.55986101165158,41.764442201959476],[-87.55957025225129,41.76459481087907],[-87.55955657690436,41.76457844155392],[-87.55954536742506,41.764565023855894],[-87.55952907718695,41.76454800957049],[-87.55952084482783,41.76453697091554],[-87.5595170646769,41.76453190199409],[-87.55951705288881,41.764531510304145],[-87.55951661733806,41.76451727217634],[-87.55954386541612,41.76449768855994],[-87.55954434755343,41.76449734245875],[-87.55965955083244,41.76443557643153],[-87.55974234951995,41.764391182465836],[-87.55970158125184,41.764327788670194],[-87.55967681359637,41.764300212167655],[-87.5596569463939,41.76427809138244],[-87.55963029168711,41.76424652705407],[-87.55960877075731,41.764221042146744],[-87.5595652450833,41.76418279571867],[-87.5595228296882,41.76415278908127],[-87.55950719480246,41.764142497508736],[-87.55948769920495,41.76412966478559],[-87.55945465785031,41.76409597338185],[-87.55943939388227,41.764080409219005],[-87.5594156242958,41.76406630370583],[-87.55940117912226,41.76405773119948],[-87.55937353936494,41.7640507792253],[-87.55934333020333,41.764043180668416],[-87.55928041519914,41.764041384654625],[-87.55911192525683,41.76388198625467],[-87.55909438388218,41.76386540201285]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3531335.11897","perimeter":"0.0","tract_cent":"1192155.50873602","census_t_1":"17031430800","tract_numa":"16","tract_comm":"43","objectid":"523","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856329.20041937","census_tra":"430800","tract_ce_3":"41.76075045","tract_crea":"","tract_ce_2":"-87.57129865","shape_len":"7981.46419184"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5753452460249,41.758885515132015],[-87.57614198394997,41.75887640542735],[-87.57615101629678,41.759304428907996],[-87.576151818242,41.7593424350115],[-87.57618151674278,41.760696679764834],[-87.57619139691883,41.76114720780225],[-87.57620146674276,41.76160636731336],[-87.57620882376914,41.76194182326287],[-87.57621144666105,41.76206127226361],[-87.57622140614568,41.762514867740066],[-87.57560240618129,41.76252334810645],[-87.57550324585209,41.76252440541423],[-87.57501620258807,41.76252959644433],[-87.57433974764024,41.76253680326137],[-87.57373437608156,41.762542962610105],[-87.5731159123728,41.76254925223158],[-87.57251385504163,41.76255499018622],[-87.5719085911455,41.76256072815818],[-87.57190729050102,41.762560742590296],[-87.57130166929379,41.76256742726627],[-87.57069256801937,41.76257414684617],[-87.5700883917373,41.762580808920305],[-87.57001429901206,41.76258162570488],[-87.56957241760757,41.762586495989346],[-87.56948369916186,41.76258738617158],[-87.56887777240064,41.762593464366404],[-87.56827081401295,41.76259954978426],[-87.56766476578296,41.76260602335946],[-87.56710326520366,41.76261204275199],[-87.56645042279949,41.76261940531639],[-87.5664404361253,41.76217347292777],[-87.56642152284451,41.76125623122095],[-87.56641179354753,41.760802773666995],[-87.56640030919404,41.76026745713468],[-87.56639287866714,41.75990033061689],[-87.56638992907996,41.759772481654736],[-87.56638625945662,41.759631290333395],[-87.5663827762463,41.75946065478645],[-87.56637312414992,41.75898784620514],[-87.56718174988085,41.758978516034716],[-87.56759098362605,41.75897418101498],[-87.56825658552248,41.75896712711453],[-87.56880967006022,41.75896136298918],[-87.56923677232382,41.75895690993804],[-87.57001925949488,41.75894801741442],[-87.57035054640406,41.75894425101951],[-87.57124585424799,41.758933884945485],[-87.57198972294877,41.75892526702502],[-87.57246138225051,41.75891956811756],[-87.57302685633461,41.75891273289072],[-87.57309738304602,41.758911974259995],[-87.573673063515,41.75890578078716],[-87.57411994655857,41.75890097081894],[-87.57491005617946,41.75889100613713],[-87.5753452460249,41.758885515132015]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"17604806.7358","perimeter":"0.0","tract_cent":"1176004.45056189","census_t_1":"17031440400","tract_numa":"84","tract_comm":"44","objectid":"518","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1850208.12572425","census_tra":"440400","tract_ce_3":"41.74433085","tract_crea":"","tract_ce_2":"-87.63067577","shape_len":"18964.6429275"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62454557750216,41.75096011291615],[-87.62454055097582,41.75086180757316],[-87.62453827310208,41.750685773885344],[-87.62453660818308,41.7505827421788],[-87.6245291686095,41.750204202175055],[-87.6244968400483,41.74945192619796],[-87.62448361685504,41.74924484174442],[-87.6244795405467,41.749122338290846],[-87.62446995696553,41.748834291851935],[-87.6244590261134,41.74843547694765],[-87.62444950221867,41.748012109166595],[-87.62443681253731,41.7475800223745],[-87.62443053942157,41.747301436691686],[-87.62442902945176,41.74723436835459],[-87.62442730995423,41.74715799937087],[-87.62441923878362,41.746862387879546],[-87.6244043830468,41.746360746928204],[-87.62439228993567,41.745937829672116],[-87.62438255561747,41.74557354531692],[-87.62438118640924,41.74547773314232],[-87.62437927407521,41.74534392159804],[-87.62437766879859,41.74523162950176],[-87.62437016326311,41.7445682020035],[-87.62434753591718,41.74419351941169],[-87.62433599804278,41.74384335699573],[-87.62433280676143,41.743720721669966],[-87.62433174507684,41.743655318009104],[-87.62432985755407,41.74358587566908],[-87.62431960269771,41.74320863482032],[-87.62431932722426,41.743197902604855],[-87.62431426776642,41.743000775511916],[-87.62430483756674,41.74262889111252],[-87.6242960155072,41.74230838388041],[-87.62428429635682,41.741829758904835],[-87.62428138812628,41.74171098432797],[-87.62427712956888,41.741537061956635],[-87.6242683809351,41.74121652767273],[-87.6242509486868,41.740576227857915],[-87.62424511085307,41.74035082921781],[-87.62423450785762,41.740006133506014],[-87.62422835059417,41.739805980512784],[-87.62421920384013,41.739381818566706],[-87.62420548115588,41.73889730843179],[-87.62419407353026,41.738498791757635],[-87.6241909757621,41.73818641588229],[-87.62418358972566,41.7374416107399],[-87.62418128930541,41.737209628253815],[-87.62417058018814,41.73685894910013],[-87.62417066566664,41.73683366108373],[-87.62416926487289,41.73678391154123],[-87.62416057014825,41.73629942645487],[-87.62426937820548,41.73629690413532],[-87.62452395214474,41.73629100207846],[-87.62457035348584,41.736289926308885],[-87.62461199276433,41.73628896083347],[-87.62473573491675,41.736286091919],[-87.62475224674532,41.73628570910049],[-87.6248223268233,41.73628408411544],[-87.62498334306716,41.736280350611615],[-87.62499194365652,41.73628015115574],[-87.62531832950256,41.736274186162106],[-87.62544393770061,41.736270875446294],[-87.62588702253403,41.73625919534752],[-87.62594787086219,41.736258254623216],[-87.6264755554004,41.73625046965398],[-87.62663992949923,41.73625104000051],[-87.62690086995248,41.736254483552976],[-87.62695415058208,41.73625604468403],[-87.62705375087543,41.736258963268064],[-87.62717458146308,41.73626272466661],[-87.6271761752278,41.73626276025797],[-87.62724940225154,41.73626440239639],[-87.62739725521085,41.73626771735673],[-87.62747220861547,41.7362693976772],[-87.6275353851657,41.73627081433043],[-87.62757911946882,41.73627071248245],[-87.62771678856284,41.73627039166155],[-87.6283378938339,41.736249917052504],[-87.62839753260033,41.73624536460371],[-87.62857716169802,41.73623165326402],[-87.62872313684687,41.736214326290636],[-87.62876446630897,41.73620633142564],[-87.62885451658153,41.73618891162691],[-87.62895554867079,41.736169367472485],[-87.62901877717998,41.736157136170625],[-87.62920971882048,41.7361220266344],[-87.62936964690813,41.73609598882522],[-87.62951414159575,41.73607246335419],[-87.62969106913745,41.73605454123947],[-87.6297328233284,41.73605031135125],[-87.6297689667061,41.73604859545926],[-87.62996578289075,41.73603925102047],[-87.63025210739559,41.736031276445964],[-87.63025498660375,41.73603119636618],[-87.63025664272199,41.73603115819996],[-87.6304842193364,41.73602593011898],[-87.63059693617832,41.736023093379124],[-87.63065265653947,41.73602169123638],[-87.6307776363204,41.73601851931202],[-87.63101863155252,41.736012402652854],[-87.63123259636552,41.736006135966846],[-87.63167556900963,41.735992791206115],[-87.6317070991966,41.73599197822707],[-87.63175437559919,41.735990759450296],[-87.63198780169502,41.73598630507054],[-87.63200773396393,41.73598592479766],[-87.63203745664998,41.73598535756307],[-87.63210571031543,41.73598405508616],[-87.6321739636123,41.73598275256645],[-87.63223809896647,41.73598152861495],[-87.63229287193603,41.73598048296829],[-87.63242354699418,41.735977989188505],[-87.6327205187178,41.735972320451275],[-87.63266060991005,41.73638001115013],[-87.63258490317435,41.73630854014456],[-87.63256247759007,41.73634922500281],[-87.63251248849852,41.73643982541713],[-87.63258770342651,41.73651438054494],[-87.63264788087793,41.73658198314641],[-87.63270616324591,41.73665540582093],[-87.63275938620532,41.73673085585047],[-87.63277515306469,41.736754964427426],[-87.63286295318309,41.73689374464213],[-87.63298526718509,41.73710168569215],[-87.63305891948329,41.73723591973664],[-87.6331723024535,41.73746507455287],[-87.63339783878659,41.7379103408621],[-87.6335233542833,41.73816118065805],[-87.63357217024056,41.73826301743933],[-87.63361077025023,41.73837782745906],[-87.63363039590035,41.73846850920601],[-87.63364233253581,41.73855022511871],[-87.6336470280204,41.73862400731779],[-87.63365179762216,41.73869092864332],[-87.63366252459774,41.73875754348015],[-87.63367921269169,41.73882350853627],[-87.63368850620687,41.73885340949595],[-87.63375249240379,41.739034580508196],[-87.6338933523507,41.739348975443086],[-87.63396298438579,41.73947426538417],[-87.63400835031045,41.739556527754594],[-87.63403202612915,41.740797099649605],[-87.63404014220488,41.74086970857446],[-87.6340442850494,41.74102484212859],[-87.63405090690628,41.741295965255176],[-87.63405690508694,41.74154281280984],[-87.63405749305704,41.741567005822276],[-87.63406628371435,41.741915174861354],[-87.63407797768983,41.742367288502734],[-87.63409614999723,41.74305643997101],[-87.63410781962715,41.743498093169755],[-87.63422572593892,41.743511740715874],[-87.63436486078885,41.74355216835317],[-87.63436811176744,41.743553112961585],[-87.63452588313116,41.74361066656062],[-87.6346395519617,41.74365213193041],[-87.63494683114416,41.74377129205008],[-87.63501459016987,41.743797829421936],[-87.63524525882376,41.743889134638366],[-87.63547520423445,41.74397961170623],[-87.63594552887572,41.74416216652272],[-87.63596175159884,41.74413362045347],[-87.63596584379016,41.74412641980335],[-87.63599945013237,41.74407859838652],[-87.63608122319208,41.74397835111499],[-87.63617428951017,41.74387118475025],[-87.63628738922726,41.74373926790839],[-87.63633125653593,41.743688102130044],[-87.6363482219087,41.743668314027076],[-87.63644173890941,41.74355923711542],[-87.63647723150568,41.74351783934351],[-87.63729221294246,41.74348161574516],[-87.63763241793397,41.74347309547136],[-87.6378922036244,41.74346658890716],[-87.63859714205287,41.74344892919386],[-87.63919014216553,41.74343407065696],[-87.63913103433404,41.74448343353209],[-87.63909216858815,41.74517341150784],[-87.63907590867501,41.74619898319258],[-87.63906237053816,41.747052847817024],[-87.63906613816661,41.74793591887802],[-87.63909665928284,41.74887094556128],[-87.63916215604637,41.748867941096876],[-87.6391934814926,41.74886650407594],[-87.63932569188128,41.74886043895607],[-87.63948538880086,41.748857584756635],[-87.63945226568131,41.75048717706988],[-87.6393687734606,41.75071054303829],[-87.63931563022825,41.75071135022774],[-87.63926298082029,41.750712071734675],[-87.63922491835723,41.75071259291453],[-87.63905952422643,41.750714582988884],[-87.63895736102448,41.75071581225147],[-87.63873783255205,41.75071845303248],[-87.63861856835149,41.75071988734385],[-87.63845055578918,41.75072190818558],[-87.63809873665258,41.75072603688302],[-87.63794475893546,41.75072821298639],[-87.63766638252285,41.75073214678536],[-87.63715390282397,41.75073958083095],[-87.63685064329118,41.75074345106803],[-87.63672757528663,41.75074543913176],[-87.63643312377135,41.75075019511394],[-87.63597011569686,41.75075781416528],[-87.63551734057548,41.75076457827484],[-87.63516814822104,41.75076979383427],[-87.63470714954727,41.75077451076813],[-87.63440347340891,41.75077628661479],[-87.63428646024971,41.75077957841086],[-87.63422934641817,41.75078272907054],[-87.63391101583484,41.75078926171149],[-87.6336782701396,41.7507926471809],[-87.63348070955453,41.750795670199544],[-87.63327002629005,41.75079896995631],[-87.63309053022616,41.75080225248355],[-87.63290311606612,41.750805679933556],[-87.63262828222663,41.750810645372994],[-87.63233882653846,41.75081557583203],[-87.63206432482308,41.75082032240415],[-87.63187786777344,41.750823346768456],[-87.63169800908356,41.75082626402986],[-87.63145355950394,41.750830863341776],[-87.63119371585007,41.75083566993322],[-87.63093457020896,41.75084031554581],[-87.63066293016668,41.75084475051458],[-87.63047720621458,41.75084778230293],[-87.63023257507827,41.75085221297321],[-87.62998820461593,41.750856261064534],[-87.62975878515522,41.750860399916384],[-87.6294947331234,41.7508646656303],[-87.62939664776712,41.750866250017474],[-87.62930427746934,41.75086800710438],[-87.62916528308284,41.75087065019646],[-87.62888891422566,41.75087518563586],[-87.62861518165356,41.75087992868142],[-87.62838363720184,41.750883969423946],[-87.62824584486407,41.75088720688304],[-87.62806967420093,41.75089134584524],[-87.62774521148413,41.7508970377896],[-87.62745590652676,41.750901490338414],[-87.62725768803026,41.7509043339542],[-87.62703497582326,41.75091100809619],[-87.6268146618214,41.75091760983347],[-87.62652308022878,41.750935822437945],[-87.62582444324126,41.75092641778806],[-87.62539482819477,41.750935606293424],[-87.62512291496242,41.75094138902489],[-87.62497389771721,41.750944557485205],[-87.62482673740762,41.75094762249117],[-87.62472571472458,41.750949724306864],[-87.62470143487063,41.750951124817696],[-87.62454557750216,41.75096011291615]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7002808.79113","perimeter":"0.0","tract_cent":"1181358.61661021","census_t_1":"17031420700","tract_numa":"32","tract_comm":"42","objectid":"519","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1862045.26225651","census_tra":"420700","tract_ce_3":"41.77669154","tract_crea":"","tract_ce_2":"-87.6106933","shape_len":"10584.8062467"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61477786875132,41.77297863214188],[-87.61544979997485,41.77296977132702],[-87.61545169758287,41.77303403557996],[-87.61545756525497,41.77323274941456],[-87.615461849701,41.77342353194942],[-87.61546344450731,41.77349453675686],[-87.61546956638247,41.77376741254357],[-87.6154752201851,41.774019867859664],[-87.61548222400344,41.77433204739223],[-87.61548930632583,41.774647054018736],[-87.61549188761676,41.77478579436862],[-87.61549368878046,41.774882582794156],[-87.61549370934966,41.77488369710509],[-87.61549440408824,41.77492101118855],[-87.61549533521622,41.77497105532215],[-87.61550289314127,41.775243418321345],[-87.61550901805748,41.77551607477456],[-87.61551186821855,41.77564974368648],[-87.6155163358224,41.77585926667734],[-87.61552258052377,41.776121220840025],[-87.61553427843285,41.77655067749372],[-87.61553474927852,41.776567961509535],[-87.61553572430213,41.77660374876324],[-87.61553754179108,41.77667047629863],[-87.61553990507048,41.776757236175065],[-87.6155485388222,41.7771205518754],[-87.61555764914809,41.77750343951621],[-87.61555765039357,41.777503492214365],[-87.61556265951131,41.77771513574036],[-87.61556738293943,41.777913670743494],[-87.61556872392909,41.777970035865366],[-87.6155727966084,41.7781409210898],[-87.6155792432762,41.77833336930634],[-87.61558060922364,41.77837414865934],[-87.61558223872656,41.7784227906773],[-87.61558905288663,41.77862621285099],[-87.61559150099148,41.778739240471985],[-87.61559319151564,41.778817296166096],[-87.6155954374235,41.77892425846304],[-87.61559745398552,41.77902029046584],[-87.61559874981363,41.779083273423545],[-87.61560092551372,41.779189003639694],[-87.61560244588736,41.779261309801264],[-87.61560435126908,41.77935192607168],[-87.61560904551538,41.77955569145101],[-87.61561252469942,41.779725102529696],[-87.61561453249652,41.77982287708802],[-87.61561455820205,41.77982408995006],[-87.61561456070483,41.77982422718016],[-87.61561774229999,41.779979162187],[-87.61561897305698,41.78010881009868],[-87.61561929604788,41.78012133869893],[-87.61561953857023,41.78013075943781],[-87.61562233042915,41.78023913842987],[-87.61533008988793,41.78024441153144],[-87.61498933873753,41.78025076122155],[-87.61481137288045,41.780254011708045],[-87.61457899432598,41.78025758013178],[-87.61441126717881,41.780260600416725],[-87.61419897019432,41.7802644227197],[-87.6138271992006,41.780270986425045],[-87.61356368102022,41.78027562013659],[-87.61338454244687,41.7802787787362],[-87.61320587562712,41.78028181459954],[-87.61285714272378,41.78028773937293],[-87.61264826516138,41.78029136894394],[-87.61244694158863,41.78029485343635],[-87.61219134449213,41.78029928671777],[-87.61202335731348,41.780303113643946],[-87.61174935883086,41.78030935469922],[-87.61144022700782,41.780314300771074],[-87.61123039821864,41.78031770224316],[-87.61102856440203,41.78032093405621],[-87.61080240474855,41.78032472768609],[-87.61055257739132,41.78032891753272],[-87.61038865683534,41.78033189277372],[-87.61012535632871,41.78033665718082],[-87.60991625572188,41.780340499922374],[-87.60958014161531,41.78034713774178],[-87.60935048011952,41.780351672656614],[-87.60904721133527,41.78035686877925],[-87.60880716294139,41.78036100835632],[-87.6086437573124,41.78036379225429],[-87.60838587593035,41.78036822378859],[-87.60812394567857,41.78037272413733],[-87.60793812764459,41.78037649070634],[-87.60769777718629,41.78038139445827],[-87.60738723563708,41.78038774774731],[-87.60718871384715,41.780391286557034],[-87.60694057946058,41.7803957094937],[-87.60672416209508,41.780398100573166],[-87.60660469545344,41.780399420137655],[-87.60646689595224,41.780400949333405],[-87.60636059383557,41.78040213980241],[-87.60592997016487,41.780410105216326],[-87.60592835248856,41.78033815619766],[-87.60592447323502,41.78016562072336],[-87.60592193862051,41.780042770320534],[-87.60592023453046,41.77995793329645],[-87.60591715290631,41.779804425995756],[-87.6059138400531,41.7796238857083],[-87.60590944039534,41.779435764296494],[-87.60590409571563,41.7791949465471],[-87.60589983506188,41.779013961152806],[-87.60589421916664,41.778780990335235],[-87.60589034375148,41.778594339037724],[-87.60588581477793,41.77837620934148],[-87.60588279391602,41.77823151127769],[-87.60587862107201,41.778068748491016],[-87.60587448536279,41.777909059539134],[-87.60587051414382,41.77775447600302],[-87.60586593948585,41.77755587023467],[-87.60586059988282,41.77727572676468],[-87.60585637205811,41.77705289109569],[-87.60584929893135,41.776777599231515],[-87.60584277517101,41.77652370614256],[-87.6058377444042,41.77632660652833],[-87.60583245997842,41.776051293298764],[-87.60582644015265,41.77575349965938],[-87.60581987371216,41.7754488967021],[-87.60581602474018,41.775238001026224],[-87.60580897246894,41.77496004340217],[-87.60580438287897,41.77477916418995],[-87.60579853022101,41.774534748005934],[-87.60579409713873,41.774271707063605],[-87.6057881964791,41.773924461955055],[-87.60578499624805,41.77363025364024],[-87.60577463640972,41.77337266370661],[-87.60576875390609,41.77314086168505],[-87.60631961249274,41.77313332620459],[-87.60642542036692,41.77313098112041],[-87.60657299487299,41.77312771188178],[-87.6070228585543,41.773118811523],[-87.60732138767882,41.77311290465841],[-87.60761508704057,41.77310805215086],[-87.60771790014275,41.77310635327244],[-87.60821716408755,41.773098487474094],[-87.60862069675885,41.77309212821641],[-87.609079182074,41.77308393254534],[-87.60940970135894,41.77307791840016],[-87.60962919110003,41.77307392381172],[-87.61001522759291,41.773066524063516],[-87.61008716985127,41.773065144899086],[-87.61062905383501,41.77305623255545],[-87.61098865243737,41.77305031665724],[-87.61123297343225,41.77304570343322],[-87.61146188305355,41.773041380897716],[-87.6118359011031,41.773034626476054],[-87.61211917820313,41.77302950983693],[-87.61242330248325,41.77302341599563],[-87.61262394907143,41.773019395138384],[-87.61304493587824,41.77301245775321],[-87.61352623747626,41.77300452459226],[-87.61363781794815,41.77300228834159],[-87.6138162440208,41.77299871210648],[-87.61425468702822,41.77298945887198],[-87.61451985079631,41.77298386206337],[-87.61457839545628,41.77298262623104],[-87.61477786875132,41.77297863214188]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2682843.96379","perimeter":"0.0","tract_cent":"1187043.1255877","census_t_1":"17031410800","tract_numa":"15","tract_comm":"41","objectid":"524","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869846.29186415","census_tra":"410800","tract_ce_3":"41.79796521","tract_crea":"","tract_ce_2":"-87.58960703","shape_len":"7017.687852"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5874986344781,41.795391292853516],[-87.58754916332073,41.79518488330855],[-87.58844548201118,41.79519359649538],[-87.58900945360867,41.795199075374846],[-87.58921042801617,41.79520102723732],[-87.58920496189675,41.795171996862315],[-87.58920747642212,41.79512264354877],[-87.58923352502829,41.79504871671231],[-87.58931099691345,41.79492398437013],[-87.5894157469519,41.794861858809135],[-87.5894818228865,41.79483391082847],[-87.58954989972942,41.79481692544378],[-87.58964817205032,41.79480183695674],[-87.58986194797929,41.794797430274016],[-87.59011590552198,41.794793941792854],[-87.59032800428884,41.79479192436282],[-87.59057611753981,41.794789563382786],[-87.59078610940153,41.79478891789456],[-87.59103475593899,41.7947881373322],[-87.59137436603129,41.79478577580103],[-87.59167637632727,41.79478442163879],[-87.5918584630445,41.79478360500346],[-87.5919425120426,41.794790267219646],[-87.59201906243553,41.79481117868673],[-87.59216837716497,41.79488239572874],[-87.59220416522417,41.79490317497342],[-87.59226118327148,41.79498443158297],[-87.59229049975525,41.79505396016409],[-87.59230725176432,41.79511507358282],[-87.59230753073717,41.7951235189846],[-87.59230869328907,41.795158662055684],[-87.59230616438703,41.79520946981663],[-87.59228814066064,41.79525875059748],[-87.59224716865776,41.79534888452871],[-87.59223468703034,41.795359340396466],[-87.59208514207602,41.79544800373257],[-87.59201801515917,41.795474876157215],[-87.59191494929574,41.795498552771484],[-87.59182441692897,41.79550803938991],[-87.59182367121056,41.79550811745364],[-87.59169486523398,41.79550913861498],[-87.59170126532912,41.79584637951954],[-87.59170474295273,41.79602966856099],[-87.59170913329336,41.79621512790261],[-87.59171227290126,41.79637223075275],[-87.59171691279266,41.796570974008375],[-87.59172373757379,41.79686331129833],[-87.59172681995338,41.79699039134285],[-87.59173488710688,41.79732766021138],[-87.59173987215459,41.79753779469551],[-87.5917446777291,41.79786217208125],[-87.59174849698302,41.79804631591126],[-87.59175082955964,41.7981587857617],[-87.59175618909647,41.79836192472161],[-87.59175702853717,41.79840092634402],[-87.59175792710101,41.79843817173492],[-87.5917581914146,41.79844912366281],[-87.59176152623245,41.79863699080281],[-87.59176913672708,41.79891209898923],[-87.59177572084097,41.799104460538146],[-87.59178251388823,41.79931054482152],[-87.59178594399087,41.799511944310595],[-87.59178946867367,41.79971888345447],[-87.59179320621833,41.799929119294234],[-87.59179809578163,41.800141228672],[-87.59180485189324,41.80035049631613],[-87.59181151086521,41.80053638152883],[-87.59181704131312,41.80071199612595],[-87.59182080979689,41.8009758945585],[-87.59155502834467,41.800979408385274],[-87.59137558308633,41.800981844503376],[-87.5911803028326,41.800983510355266],[-87.59096968454708,41.800985835547316],[-87.5907822063113,41.80098835631343],[-87.59047463589866,41.80099205305429],[-87.59018834542046,41.80099549310976],[-87.5899692038534,41.80099906979884],[-87.58975153203897,41.80100240859861],[-87.58948620131758,41.801004066247046],[-87.58924818332247,41.80100775066918],[-87.58912322610867,41.80100968519887],[-87.58879125687136,41.80101482229246],[-87.58842342321456,41.80101916685489],[-87.58789601712654,41.80102638654037],[-87.587576457073,41.80102809455921],[-87.58750324354276,41.801028485600874],[-87.58738208732734,41.80029346883069],[-87.58735221574624,41.800031644738674],[-87.58730982954526,41.79966012356174],[-87.58730177518319,41.799564017955774],[-87.58728964423456,41.79941926906501],[-87.58727882681083,41.79929018947248],[-87.58726779871041,41.79915859804213],[-87.58726122051272,41.79900441908803],[-87.58725494924643,41.79883282391365],[-87.58725067679697,41.798685602401314],[-87.58724966221075,41.798568252933855],[-87.5872486415868,41.798450222569315],[-87.58724794117694,41.79836924396432],[-87.58724754066131,41.79832292699621],[-87.58724754048875,41.79832291025499],[-87.58724722673733,41.798095689626855],[-87.58724874782803,41.7976345215263],[-87.58726335969688,41.79723255347592],[-87.58728623736295,41.79697582874127],[-87.58731434821061,41.796696800913764],[-87.58732431548077,41.796594957924206],[-87.58733131641105,41.79652342544531],[-87.58733692362819,41.79646613358568],[-87.58736408429554,41.79626900120344],[-87.5874014959019,41.79604587596629],[-87.58745041111904,41.79568880410417],[-87.5874986344781,41.795391292853516]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3041434.56953","perimeter":"0.0","tract_cent":"1187040.25068081","census_t_1":"17031411100","tract_numa":"18","tract_comm":"41","objectid":"525","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867104.63078366","census_tra":"411100","tract_ce_3":"41.79044195","tract_crea":"","tract_ce_2":"-87.58970454","shape_len":"9903.74256126"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58911243256975,41.78795592143445],[-87.58912818204887,41.787876270189535],[-87.58904939993838,41.787877208505066],[-87.5889219656822,41.78787872642299],[-87.58877894751036,41.78788042970097],[-87.58868063874537,41.78788153676467],[-87.58853781558831,41.78788305412078],[-87.58845728755286,41.78788390935938],[-87.58839615993303,41.78788419192603],[-87.58816326654592,41.787885268241816],[-87.58804826591602,41.78788607054803],[-87.58797067193849,41.787886461212025],[-87.58768979690414,41.78788933120364],[-87.58738030412287,41.787893661255644],[-87.58663462333406,41.78790146825404],[-87.58663206298573,41.78781067043905],[-87.58662785103309,41.78765703096562],[-87.58662186096117,41.78743856159603],[-87.58661434214055,41.78714805772876],[-87.58661045689006,41.78692667853536],[-87.58660576590808,41.78668951446279],[-87.58660134058596,41.786392963876516],[-87.58659970120588,41.78628312888663],[-87.58659538226526,41.78614251140338],[-87.58731786359874,41.78613153525802],[-87.58762710856706,41.78613200624794],[-87.587966880887,41.786127624995046],[-87.58806864430214,41.7861265834855],[-87.5881901247944,41.78612455587339],[-87.58843685367513,41.78612043715272],[-87.5887949142507,41.786122593658426],[-87.58885431676747,41.78612295119028],[-87.58908160940834,41.786121594034256],[-87.58908162701043,41.786121593873865],[-87.58908168494654,41.786121593700344],[-87.58915388609266,41.78612116213384],[-87.58922680742577,41.78612072667952],[-87.58944822872726,41.78611608647439],[-87.5896769687061,41.786111292337395],[-87.58999555919448,41.786109045719805],[-87.5903421388741,41.78610571248218],[-87.59061651327966,41.786103072782595],[-87.59095010222431,41.78610061861276],[-87.59119912910575,41.78609882471038],[-87.59147494351127,41.7860956639879],[-87.5914768381309,41.78624263513564],[-87.59148002188806,41.786376796325776],[-87.59148405139402,41.78657105374816],[-87.59148881300075,41.786800598057894],[-87.5914932984864,41.786952221289006],[-87.59149793880907,41.78710949874135],[-87.5915017045315,41.78724445621837],[-87.59150282174136,41.787284505008145],[-87.59151003016171,41.78754284439578],[-87.59151357381415,41.78769347358287],[-87.59151617210684,41.78785406390041],[-87.5915193336982,41.78804944439205],[-87.5915230788703,41.78821758339706],[-87.59152893450687,41.788485737718894],[-87.59153471254083,41.78874154225157],[-87.59154141317836,41.789038187665916],[-87.59154719127974,41.78929399217429],[-87.59155146165145,41.78948655865354],[-87.59155406634024,41.78963575689468],[-87.59155921353862,41.789930579084285],[-87.59156418727507,41.79012257351],[-87.59156648026061,41.79021410987184],[-87.59157031457754,41.79036718355137],[-87.59157523354592,41.790605281830395],[-87.5915804711735,41.790809380497386],[-87.59158221132034,41.79087635222522],[-87.59158651649487,41.79104202490882],[-87.59159307766107,41.79128081983367],[-87.59159627625532,41.79149823566131],[-87.59159687815742,41.79153919109784],[-87.59160005136081,41.791687402819456],[-87.59160586646381,41.79190821785336],[-87.59161008324101,41.792076826592215],[-87.59161670734139,41.79236106691131],[-87.59162115855408,41.7925411205305],[-87.5916273520833,41.79277368349957],[-87.59163278278568,41.792976960050886],[-87.59163705350646,41.79313453682076],[-87.59164140428062,41.79332709435907],[-87.5916461343749,41.79353646800194],[-87.59164797721705,41.79368198168688],[-87.59165131789294,41.793856649303436],[-87.59165514930008,41.79400777415236],[-87.59165910785312,41.79416383952377],[-87.59166395979949,41.794344170101276],[-87.59166788914897,41.79448349516237],[-87.59167637632727,41.79478442163879],[-87.59137436603129,41.79478577580103],[-87.59103475593899,41.7947881373322],[-87.59078610940153,41.79478891789456],[-87.59057611753981,41.794789563382786],[-87.59032800428884,41.79479192436282],[-87.59011590552198,41.794793941792854],[-87.58986194797929,41.794797430274016],[-87.58964817205032,41.79480183695674],[-87.58954989972942,41.79481692544378],[-87.5894818228865,41.79483391082847],[-87.5894157469519,41.794861858809135],[-87.58931099691345,41.79492398437013],[-87.58923352502829,41.79504871671231],[-87.58920747642212,41.79512264354877],[-87.58920496189675,41.795171996862315],[-87.58921042801617,41.79520102723732],[-87.58900945360867,41.795199075374846],[-87.58844548201118,41.79519359649538],[-87.58754916332073,41.79518488330855],[-87.58758311143033,41.7949710539611],[-87.58759980472858,41.7948596896657],[-87.58763547779772,41.7946738041459],[-87.58769041166846,41.79444923950372],[-87.58774873764867,41.79419774800654],[-87.58782074394509,41.793889099554065],[-87.58789538789405,41.7935553030989],[-87.58794434767336,41.793358328120725],[-87.58797070104725,41.793252301750485],[-87.58795989443311,41.79314053939212],[-87.5879771788453,41.79297805288201],[-87.5879899405939,41.792921059299886],[-87.58800757345311,41.79284243561025],[-87.5880564182138,41.79262093224895],[-87.58810825432248,41.79238808693801],[-87.58816776424166,41.79213221196304],[-87.58820981573822,41.79195256962361],[-87.58830999634166,41.7915411388478],[-87.58841768616654,41.791535536062696],[-87.58846349875647,41.79153315223435],[-87.58857498878699,41.791527351106716],[-87.58871494079683,41.791525761046046],[-87.58898690542121,41.79152618600019],[-87.58903262752843,41.791483472214075],[-87.58902056816754,41.79132137166977],[-87.58902207736789,41.79122895402808],[-87.58901811659078,41.79101344705719],[-87.58901006624085,41.79075205717235],[-87.58900557561232,41.79054032398076],[-87.58900351752783,41.790443282972625],[-87.5890013777949,41.79031149140762],[-87.58899812154905,41.79011094283762],[-87.58899706449039,41.79006893364523],[-87.58899503612751,41.78998831159054],[-87.58899126387588,41.78983839113387],[-87.58898872297594,41.78973785570891],[-87.58898464814877,41.78957662601641],[-87.58898243803363,41.7894870564148],[-87.58897928070549,41.78935910681681],[-87.58897387519279,41.78913854120802],[-87.58896924730983,41.788904643413126],[-87.58896933151225,41.7888636712618],[-87.58896957449514,41.78874532671964],[-87.58900156693748,41.788510334662476],[-87.5890358014413,41.78834035601566],[-87.58906906262114,41.788175255872204],[-87.58911243256975,41.78795592143445]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2647610.96638","perimeter":"0.0","tract_cent":"1181957.22814245","census_t_1":"17031420500","tract_numa":"11","tract_comm":"42","objectid":"526","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864385.92923302","census_tra":"420500","tract_ce_3":"41.78310072","tract_crea":"","tract_ce_2":"-87.6084265","shape_len":"6643.13543441"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61055257739132,41.78032891753272],[-87.61080240474855,41.78032472768609],[-87.61080295432488,41.78035239220099],[-87.61080773072122,41.78059265699821],[-87.61081216229313,41.78078283909532],[-87.61081670824245,41.7809752123965],[-87.61082161659414,41.78118468735667],[-87.61082582645295,41.78136490352898],[-87.6108304642721,41.78156252172297],[-87.61083452627358,41.78173631559373],[-87.61084010692777,41.78197406092031],[-87.6108426803042,41.78214648891507],[-87.61084604982518,41.78237223958165],[-87.61085042030135,41.78255775347632],[-87.61085704244294,41.782836642189444],[-87.61086116801603,41.78301131459325],[-87.6108665439156,41.783237916772336],[-87.61086970913908,41.78337076018573],[-87.6108763763102,41.78360318835989],[-87.61088154763584,41.78378269726192],[-87.61088425756428,41.78396906813706],[-87.61088750647126,41.78419251167484],[-87.61089310374899,41.78438265021336],[-87.61089674963358,41.784505802978536],[-87.61090159105514,41.78466898099705],[-87.61090545271774,41.78480152661064],[-87.6109068355145,41.784848517768076],[-87.61091805877568,41.78524670199269],[-87.61091957897173,41.78530533115698],[-87.61091959780425,41.78530607058616],[-87.61092681011475,41.78558419447551],[-87.61091759966195,41.78578762208766],[-87.6106795827884,41.7857916169523],[-87.61005839788172,41.785802252419444],[-87.6097204071917,41.78580827449028],[-87.60939572933283,41.78581405014622],[-87.60884972835453,41.7858231769513],[-87.60856514656089,41.78582881260382],[-87.60853945669645,41.78582932122919],[-87.60808039300834,41.785838410780634],[-87.60746869049882,41.78585024470469],[-87.60679841839607,41.78586318688845],[-87.60640513720259,41.78586882536634],[-87.60626871775928,41.78587042862491],[-87.60603749216132,41.78587406578994],[-87.60603942594493,41.785553631337514],[-87.60603496288238,41.785237214345436],[-87.60603170098645,41.78502374311717],[-87.60602716543126,41.78477074582009],[-87.60602606925785,41.78472073798312],[-87.60602053882008,41.784493092129864],[-87.60601533851087,41.784301123808376],[-87.6060093864327,41.784057616585095],[-87.606003253861,41.78380669149921],[-87.60600028027403,41.78360908402134],[-87.6059954461053,41.78336198526274],[-87.60599386356382,41.78330576758019],[-87.60599362379126,41.78329726590752],[-87.60598553643216,41.78301070866243],[-87.60597894888373,41.78278431814555],[-87.60597304008057,41.78251558756274],[-87.60596851507404,41.782232709870435],[-87.60596536953877,41.78203608452807],[-87.60596329393002,41.78190829735375],[-87.60595857495056,41.78162837756908],[-87.60595339229852,41.78138945449666],[-87.60594753053367,41.781152228572985],[-87.60594232764437,41.780942449143645],[-87.60594161160307,41.78091357524762],[-87.60594046814929,41.78086513104736],[-87.60593484254548,41.7806268365991],[-87.60593157298906,41.78048142213044],[-87.60592997016487,41.780410105216326],[-87.60636059383557,41.78040213980241],[-87.60646689595224,41.780400949333405],[-87.60660469545344,41.780399420137655],[-87.60672416209508,41.780398100573166],[-87.60694057946058,41.7803957094937],[-87.60718871384715,41.780391286557034],[-87.60738723563708,41.78038774774731],[-87.60769777718629,41.78038139445827],[-87.60793812764459,41.78037649070634],[-87.60812394567857,41.78037272413733],[-87.60838587593035,41.78036822378859],[-87.6086437573124,41.78036379225429],[-87.60880716294139,41.78036100835632],[-87.60904721133527,41.78035686877925],[-87.60935048011952,41.780351672656614],[-87.60958014161531,41.78034713774178],[-87.60991625572188,41.780340499922374],[-87.61012535632871,41.78033665718082],[-87.61038865683534,41.78033189277372],[-87.61055257739132,41.78032891753272]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3518194.29599","perimeter":"0.0","tract_cent":"1177412.15636483","census_t_1":"17031350300","tract_numa":"13","tract_comm":"35","objectid":"539","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885800.32723245","census_tra":"350300","tract_ce_3":"41.84196766","tract_crea":"","tract_ce_2":"-87.62444242","shape_len":"7951.47886455"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62658303220407,41.83830289626288],[-87.62677259573911,41.838300572940305],[-87.62676803791923,41.838477186488525],[-87.62677293709535,41.838685643625624],[-87.62679579034479,41.83895005666088],[-87.62680514398315,41.83913392460149],[-87.6268094996695,41.83933178551926],[-87.62681047987505,41.839546364840764],[-87.62681100725081,41.83966179228745],[-87.62682092658652,41.839786003708056],[-87.62682764727455,41.83999729831595],[-87.62683554361051,41.84042709824987],[-87.62684828008011,41.84090064400539],[-87.62685356240466,41.841097687008734],[-87.62686016780216,41.84134460136667],[-87.62686819440685,41.84174923712864],[-87.62687106675092,41.841866014037954],[-87.62687315369415,41.84195083386284],[-87.62689578604828,41.842870794041524],[-87.62690357844942,41.84319332026561],[-87.62690709323569,41.84333771274412],[-87.62690858337464,41.8433989233001],[-87.62691495011356,41.843657554354344],[-87.62692018528392,41.84386892173382],[-87.62692571747134,41.84409332644045],[-87.62693126534904,41.844318609397796],[-87.62693974656435,41.84466298380716],[-87.62694886381922,41.84503859177839],[-87.62695809793763,41.84542026498175],[-87.62696086826935,41.84558510661109],[-87.62675994850636,41.845589026385966],[-87.62637708858657,41.84559649432633],[-87.62626462169904,41.845598322337565],[-87.62619207700544,41.845599501137904],[-87.62618268754152,41.84559965381261],[-87.62614381812257,41.84560028551728],[-87.62613206504952,41.84560047659863],[-87.62610277230247,41.84560095265513],[-87.62579736038123,41.84560626159301],[-87.6255389038337,41.84561023997993],[-87.62532610033784,41.84561360404042],[-87.62479326358367,41.845622025744795],[-87.62446484493238,41.84562674079504],[-87.62417259010917,41.845630489390174],[-87.62407957620545,41.845631717198444],[-87.6236362047631,41.8456382844688],[-87.62339191456321,41.84564190208569],[-87.62213772958516,41.84566047096398],[-87.62212842221041,41.845311261013045],[-87.62212013987565,41.84499930576427],[-87.62211438568414,41.844782574930626],[-87.62210969231373,41.84450827088522],[-87.62210581935621,41.84428193771852],[-87.62208845316353,41.843266977191504],[-87.62207947408383,41.84274219384043],[-87.62204193791277,41.84246646538826],[-87.62197808081184,41.84199272040815],[-87.62194027674765,41.84030335806232],[-87.62192787995045,41.83975580114297],[-87.62192649174511,41.839694433876694],[-87.62190632650349,41.83880291487003],[-87.62192481649144,41.83836465960935],[-87.62323930028259,41.83834636792259],[-87.62344265883293,41.838344939451154],[-87.6236611644984,41.8383434044282],[-87.62416014653972,41.83833559855661],[-87.62429788674098,41.838334109450805],[-87.62468100332939,41.8383274452368],[-87.62506002498291,41.83832273036195],[-87.62512786681056,41.83832161986301],[-87.62514319496738,41.838321368872066],[-87.62536444460818,41.83831774651975],[-87.62546676658476,41.838316664481795],[-87.6257218413485,41.83831396642714],[-87.62596881950401,41.83831058099888],[-87.62605148672124,41.83830945148692],[-87.62605170950508,41.83830944846798],[-87.62608166167318,41.83830903904843],[-87.62658303220407,41.83830289626288]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3520847.72478","perimeter":"0.0","tract_cent":"1183014.39802374","census_t_1":"17031390300","tract_numa":"11","tract_comm":"39","objectid":"527","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875364.00217799","census_tra":"390300","tract_ce_3":"41.81320094","tract_crea":"","tract_ce_2":"-87.60420922","shape_len":"7958.33860492"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60613758352041,41.80953945005606],[-87.60656518017987,41.8095327576212],[-87.60657181350413,41.80981800244545],[-87.60657534794964,41.810011551045406],[-87.60657645010201,41.81006844737664],[-87.60658000377458,41.81025192405412],[-87.60658567762151,41.810480118915926],[-87.60659114670048,41.81069722560556],[-87.606598238989,41.81099140177077],[-87.60660495088327,41.81135402319239],[-87.60660910203795,41.811578306019406],[-87.60661336840799,41.81173632084688],[-87.60661918378726,41.81193578400058],[-87.60662310148156,41.81213438441681],[-87.60662516618764,41.8122405459756],[-87.60662867423541,41.81240396220565],[-87.60663536449947,41.81265587393208],[-87.60664346744456,41.812954776539605],[-87.60664694986743,41.81317320016693],[-87.60665089439038,41.81342058153233],[-87.60665643548607,41.81366052091473],[-87.60666414094077,41.813994602529604],[-87.60667153481018,41.81428164532415],[-87.6066823589318,41.814719535008585],[-87.6066796364494,41.81499416811356],[-87.60667660553902,41.81529991216346],[-87.60668357216164,41.8155663152661],[-87.60668982110386,41.81581180246565],[-87.60669581538598,41.81609935772734],[-87.60670022648416,41.81633871355249],[-87.60670480953515,41.81657908583584],[-87.60670812560372,41.81681377137391],[-87.6063372548143,41.81682020445687],[-87.606124223522,41.816823713331885],[-87.60605517490445,41.81682445757909],[-87.60596188937802,41.81682540287114],[-87.60581878894098,41.81682677381953],[-87.60562269704063,41.81682789176306],[-87.60555376215079,41.8168282783019],[-87.60535824839059,41.81683017389026],[-87.60513268546747,41.816832360545654],[-87.60485774446751,41.8168359490597],[-87.60453793792337,41.81683997098936],[-87.60430642759466,41.816842871589536],[-87.60406371417338,41.816845637204096],[-87.60361967480787,41.81685069545795],[-87.6033242865916,41.81685419733058],[-87.60322878575788,41.816855193283864],[-87.60305124676016,41.81685704469069],[-87.60275520415345,41.81686001952772],[-87.60258260089658,41.816861304174694],[-87.60248283429792,41.816862046241944],[-87.6021862454319,41.81686463221319],[-87.60185177781582,41.81687040462621],[-87.60185091772435,41.81678525155753],[-87.60184926948892,41.81662203377778],[-87.60184698888584,41.81653137598222],[-87.60184484952795,41.816446262512315],[-87.60184011709691,41.81623028595302],[-87.60183551747805,41.81603165347708],[-87.60183014705416,41.81577500246256],[-87.60182673521673,41.81561383711533],[-87.60181927881082,41.81530201293818],[-87.6018136338518,41.815048637626326],[-87.60181106044651,41.81493310550796],[-87.60180910516947,41.814845328772925],[-87.60180588745753,41.814670333779674],[-87.60180152143958,41.81448986981795],[-87.6017964174256,41.8142678805879],[-87.60179110950484,41.81402190511132],[-87.6017846680345,41.81370147029556],[-87.60177998152687,41.81346214016609],[-87.60177589166155,41.8132284050075],[-87.60177057958686,41.81292477887581],[-87.60176529320236,41.81267369913121],[-87.60175938175324,41.8124163035668],[-87.60175364893178,41.81217864045209],[-87.60174960280219,41.81200879906061],[-87.60174501323421,41.81181576509381],[-87.60174273040624,41.81162310256751],[-87.60173883868228,41.81140826593764],[-87.60173180352227,41.81101992398556],[-87.6017260470893,41.81081016992652],[-87.60172178926855,41.810623450136454],[-87.60171632228963,41.81035925123675],[-87.60171397650407,41.810249493053824],[-87.60171158297824,41.81013748371113],[-87.60170525181547,41.80986861429314],[-87.60170023495401,41.80958775334527],[-87.60201154567191,41.80958398017486],[-87.60233950651971,41.80958074379243],[-87.60272175904208,41.809577110846995],[-87.60280788183378,41.80957622278257],[-87.6030970815998,41.80957324047584],[-87.60355024115466,41.809569287116986],[-87.60389725176304,41.809564931015004],[-87.60437422602473,41.80955894200968],[-87.6048320414624,41.809553191489755],[-87.60530208655838,41.809547369013806],[-87.60564403587591,41.80954368385311],[-87.60580177845617,41.80954227300939],[-87.6059637756674,41.809540824125094],[-87.60613758352041,41.80953945005606]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7182599.1373","perimeter":"0.0","tract_cent":"1179795.67332374","census_t_1":"17031400100","tract_numa":"11","tract_comm":"40","objectid":"528","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1870614.83052219","census_tra":"400100","tract_ce_3":"41.80024314","tract_crea":"","tract_ce_2":"-87.61616088","shape_len":"13464.7045957"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60804898328668,41.798533073675216],[-87.61393480256858,41.798434921878936],[-87.61404909317353,41.79843289932084],[-87.61607542290271,41.79852960764293],[-87.61607360019147,41.79846501483377],[-87.61663313131066,41.79845497807194],[-87.61689144254287,41.79845032528545],[-87.61741056037035,41.79844097259816],[-87.61769669883847,41.79843591869101],[-87.61791133494448,41.79843212737623],[-87.61838878011275,41.79842233317364],[-87.61846351631783,41.79842087481834],[-87.61931853937791,41.79840506069747],[-87.61954691091876,41.79840083577437],[-87.62013087757315,41.79839001858444],[-87.62016822615473,41.79838932673314],[-87.62092298741265,41.798373452281574],[-87.62092611437649,41.79819910307965],[-87.62168413534819,41.7981887345951],[-87.62174425362966,41.7981879094079],[-87.62226004246237,41.798180803181694],[-87.62255567560747,41.7981737758735],[-87.62294063493144,41.79816462401456],[-87.62336928663137,41.798157720082386],[-87.62344668005832,41.79815647331798],[-87.623970991386,41.798148048989205],[-87.62417900896867,41.79814406979672],[-87.62460353172335,41.79813599414778],[-87.6249930506204,41.7981289050107],[-87.62505790403789,41.79812772445937],[-87.62579152744405,41.79811440753594],[-87.62579592041918,41.798248822325284],[-87.6258037605407,41.79854629554102],[-87.62580541671328,41.798615681169345],[-87.62580960462542,41.79878184574126],[-87.6258171859945,41.79913075723447],[-87.62581832143039,41.79918300353538],[-87.62582622201597,41.799469259552566],[-87.62583764281095,41.799883071638256],[-87.62584263271361,41.80006385934554],[-87.6258461521244,41.80019138550402],[-87.62585115302538,41.8003725769528],[-87.62586435107809,41.800871870247114],[-87.62586617433098,41.800940845233995],[-87.62588249253764,41.80161455667341],[-87.62588976266044,41.801945797855375],[-87.62559601579937,41.801951244048034],[-87.62514990853188,41.80195922483367],[-87.62508751141742,41.80196021228354],[-87.62461727727626,41.80196763060255],[-87.62456129894048,41.80196857668551],[-87.62427297976497,41.80197290889302],[-87.62395945246224,41.80197762094445],[-87.62345336631321,41.80198670225811],[-87.62329390353122,41.801989563099376],[-87.62288850525395,41.80199767694788],[-87.62264934339152,41.80200087904341],[-87.62244828825932,41.80200357057325],[-87.62191287022749,41.80201189166849],[-87.62183981706103,41.802013114876694],[-87.62145825731652,41.802019503567166],[-87.62102683413576,41.80202683484484],[-87.62043116533312,41.80203695437052],[-87.62030765444837,41.80203896610383],[-87.62022464072594,41.80204031800896],[-87.61985043900457,41.80204641168375],[-87.61940709713681,41.802052985011706],[-87.61905740439147,41.80205816858062],[-87.61863129320528,41.802065306816665],[-87.61855086844588,41.80206665413524],[-87.61848686927542,41.802067726275546],[-87.61847205223887,41.80206797435985],[-87.61796538987333,41.802076007855874],[-87.6177465406197,41.802079477171475],[-87.6174653677229,41.802083933953035],[-87.6173462223889,41.802085734796506],[-87.61691645148345,41.80209222996433],[-87.61685103299662,41.80209322675309],[-87.61663458270729,41.802096524222556],[-87.61654885971157,41.80209782994795],[-87.61634772581864,41.80210089340799],[-87.61627190863278,41.802101416613695],[-87.6161107439858,41.80210252329695],[-87.61607575029291,41.80210276364787],[-87.61585820654912,41.80210425889163],[-87.61571009627147,41.802105315645015],[-87.61549720978175,41.8021068335363],[-87.61539069001685,41.80210789235424],[-87.61496762550036,41.80211480661693],[-87.61464269231554,41.80211965763989],[-87.61433056850623,41.80212412770408],[-87.6141925555012,41.802126104110414],[-87.61407132605328,41.80212783993551],[-87.61379192231995,41.80213184023216],[-87.61284548006418,41.80214588635204],[-87.61250323297327,41.80215098305087],[-87.6122321864596,41.80215501827305],[-87.61158573011966,41.802164789837136],[-87.61128640348198,41.80216905403687],[-87.61110853154797,41.80217158767533],[-87.61070817886699,41.80217757715644],[-87.61024003332636,41.802184894862464],[-87.61004036329733,41.80218851989142],[-87.60976864658288,41.802193452612514],[-87.6091216718651,41.80220356352347],[-87.60788582781375,41.80222290837065],[-87.60765600991321,41.80222650433962],[-87.60738430279127,41.80223055825083],[-87.60676961320164,41.80223972709814],[-87.60640720551974,41.80225116311801],[-87.60638861095393,41.80169552504641],[-87.60638620378867,41.801623597919125],[-87.60637805088118,41.80137996471779],[-87.60636958267432,41.80112691608587],[-87.60636302644299,41.800878407876645],[-87.60635890164019,41.80072206737868],[-87.60635325148068,41.80043415649118],[-87.60634088952972,41.79980421159074],[-87.60633581833179,41.7993703089301],[-87.60632509874723,41.798949433261164],[-87.60631763629861,41.79861285528306],[-87.60631586723575,41.798533091472954],[-87.60644907125105,41.798532908880695],[-87.60789196175253,41.79853307560766],[-87.60804898328668,41.798533073675216]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3237592.03289","perimeter":"0.0","tract_cent":"1176880.64446825","census_t_1":"17031400600","tract_numa":"18","tract_comm":"40","objectid":"529","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866460.27286625","census_tra":"400600","tract_ce_3":"41.78890887","tract_crea":"","tract_ce_2":"-87.62697628","shape_len":"9896.56005548"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62809583352835,41.78316321138596],[-87.6282625918631,41.78316030294904],[-87.62824698157405,41.78325617985318],[-87.62826497592826,41.783914576473556],[-87.62830508537644,41.785399139352116],[-87.62830770429561,41.78549487452699],[-87.62831033668394,41.78558921348944],[-87.62834402132728,41.78682366336375],[-87.62834562857923,41.78688610575326],[-87.62835439204679,41.78721581725532],[-87.62835699600969,41.787312492500206],[-87.62835961690487,41.787408292145486],[-87.62842594192726,41.7898473403165],[-87.6284031081878,41.78995247922593],[-87.62843120843911,41.79003604225457],[-87.62845300337995,41.790849856818085],[-87.62845561165581,41.790945756766725],[-87.62845828504751,41.79103718639874],[-87.62846148520845,41.79116344313846],[-87.62847267222354,41.791690414445185],[-87.62849914899503,41.79257903896634],[-87.62852682119983,41.79356783703731],[-87.62854256542131,41.794139087651274],[-87.62854555628529,41.79424313053353],[-87.62855540675663,41.79459928532757],[-87.62846366181921,41.79460135831103],[-87.62833428515671,41.794603664613405],[-87.62807541260678,41.79460827851883],[-87.62778351715966,41.79461366763635],[-87.62733030613963,41.79462203350052],[-87.6269775312631,41.79462779586673],[-87.62678463178358,41.79463158470893],[-87.62636996454354,41.79463972829002],[-87.6259589901024,41.794645568430994],[-87.62570104497442,41.794643186420295],[-87.62569704515262,41.794511900253745],[-87.62569132895354,41.794300282185255],[-87.62568709037443,41.794143364032166],[-87.62568072494882,41.7938984249785],[-87.62567297110323,41.79360001871897],[-87.62566571341623,41.793282981814194],[-87.6256553667246,41.79291342771325],[-87.62565335396688,41.79284480876685],[-87.62564763249429,41.792649791600404],[-87.62563833576613,41.792274810243576],[-87.62562899385222,41.79189727639921],[-87.6256249421218,41.79175386258179],[-87.62562265062365,41.791667183963824],[-87.62561068176089,41.7912550830778],[-87.62560673703997,41.79101180510874],[-87.62560661927479,41.79100454273143],[-87.62560648128333,41.79099605216207],[-87.62560310052498,41.790787547470906],[-87.62558532586105,41.79017990843321],[-87.62558139426062,41.78999275168084],[-87.62557776880107,41.78982016841443],[-87.62556734529264,41.789434367443924],[-87.62556199709995,41.78918748601113],[-87.62555771437226,41.78898978873147],[-87.62553513455858,41.78817234639796],[-87.62551927382938,41.787577479528046],[-87.62551327612259,41.787362299028466],[-87.6255046556546,41.787053011202765],[-87.62550165706669,41.786933099510264],[-87.62550045639458,41.786885080817385],[-87.62548749182818,41.78636664166112],[-87.62547417888203,41.78584355340943],[-87.62546552281138,41.78553702850411],[-87.62545829302181,41.785281013845584],[-87.62544798816575,41.78489205709125],[-87.6254233579707,41.78396367768287],[-87.62541653340121,41.783712780528674],[-87.62540925962037,41.783445359430914],[-87.62540406584021,41.78320997753247],[-87.62554894135951,41.78320709900104],[-87.62597478931069,41.7831986368574],[-87.62648660577754,41.783188464150136],[-87.62664913915162,41.783185233207185],[-87.62677988354008,41.783182634204714],[-87.62698963805133,41.78318006943562],[-87.62745637964821,41.7831743612296],[-87.62748526989218,41.78317385760664],[-87.62764308237487,41.78317110614003],[-87.6276456802554,41.78317106090055],[-87.62773231724334,41.783169550208626],[-87.6277937547068,41.783168479105186],[-87.62787305278451,41.783167096399865],[-87.62796909662963,41.78316542155577],[-87.62809583352835,41.78316321138596]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"667612.920211","perimeter":"0.0","tract_cent":"1184464.68524086","census_t_1":"17031410300","tract_numa":"3","tract_comm":"41","objectid":"530","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871155.65171551","census_tra":"410300","tract_ce_3":"41.80161902","tract_crea":"","tract_ce_2":"-87.59902147","shape_len":"3593.61712526"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59668224743163,41.80114884783272],[-87.59667691954387,41.80092297385652],[-87.59683240522597,41.80092401146239],[-87.59705282180911,41.80091793255686],[-87.59710777321104,41.80091694005897],[-87.59743398980164,41.80091501544901],[-87.59743780248705,41.80091499294659],[-87.59771227705768,41.800912305489796],[-87.59803627556924,41.800908479646004],[-87.59820966068868,41.800906026447706],[-87.59844358754735,41.80090271605764],[-87.59867037024937,41.80090114794751],[-87.59890662933779,41.80089837760804],[-87.5989923816324,41.800897959287305],[-87.5991403395541,41.80089723705884],[-87.59932887239447,41.80089542317444],[-87.59977157902226,41.80089017713953],[-87.60013540447682,41.800885864503364],[-87.60038670844831,41.800882391578476],[-87.60051124609313,41.80088056972629],[-87.60070675619747,41.800877709435355],[-87.60105943061579,41.80087430493079],[-87.60133670311554,41.80087124107684],[-87.6013367207062,41.80100439467351],[-87.60133951931192,41.801167751677234],[-87.60134448805604,41.80137892837958],[-87.60135145933317,41.80164936652327],[-87.60135691687427,41.801901353186416],[-87.60136743417368,41.802314638739],[-87.60092525115854,41.80231891563693],[-87.60058915097108,41.80232193146992],[-87.60042460196144,41.802323571126315],[-87.6000413522232,41.80232837017458],[-87.59980868305793,41.802331066145385],[-87.59939084691393,41.802335906438415],[-87.5991321301477,41.802339241979105],[-87.59902652285955,41.8023406034762],[-87.59891266289793,41.80234207100791],[-87.59866183652625,41.802344967728004],[-87.59845837034945,41.802346904520114],[-87.59824730042419,41.80234989878722],[-87.59792908057237,41.80235441205304],[-87.59764018806355,41.80235695306831],[-87.597452094102,41.802358465114274],[-87.5971698049904,41.80236082770579],[-87.59704963766771,41.80236220302361],[-87.59697517623464,41.80236292827592],[-87.59670681831106,41.80236586284671],[-87.59670326410478,41.80205489613055],[-87.59669940680187,41.80184413832005],[-87.59669380146899,41.80160985083218],[-87.59668747820176,41.80137100322954],[-87.59668224743163,41.80114884783272]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2718067.16893","perimeter":"0.0","tract_cent":"1184497.02369456","census_t_1":"17031410600","tract_numa":"14","tract_comm":"41","objectid":"531","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869826.58125926","census_tra":"410600","tract_ce_3":"41.79797119","tract_crea":"","tract_ce_2":"-87.59894451","shape_len":"6845.58705582"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60083959625618,41.795019574186604],[-87.60130998605767,41.79501472452065],[-87.60124706821951,41.795112431073875],[-87.60123370992852,41.79520672176954],[-87.60122655549308,41.79534103150878],[-87.60121692120762,41.79552190521807],[-87.60122080289159,41.79575437054603],[-87.60122493636189,41.795958269232635],[-87.6012251690652,41.7959676287129],[-87.60122853216875,41.79610310811502],[-87.60123424046351,41.79630081502592],[-87.60123846944522,41.79648533803506],[-87.60124320865687,41.79669215168855],[-87.60124716141247,41.79689585736485],[-87.60125247350047,41.797099352154326],[-87.60125942979042,41.79736142035142],[-87.60126417571165,41.79757599840718],[-87.60126891572055,41.79779109783037],[-87.60127075600553,41.79793449406232],[-87.60127225877521,41.79805160617287],[-87.60127659531152,41.79826996869982],[-87.6012798326093,41.798397955087836],[-87.60128141509286,41.79846201665727],[-87.60128790718889,41.798726057714745],[-87.60129309212367,41.79897296612721],[-87.60130573863253,41.79940370617743],[-87.60130834213756,41.79949239069953],[-87.60138454785556,41.800567728793766],[-87.60133668493515,41.80073688218625],[-87.60133670311554,41.80087124107684],[-87.60105943061579,41.80087430493079],[-87.60070675619747,41.800877709435355],[-87.60051124609313,41.80088056972629],[-87.60038670844831,41.800882391578476],[-87.60013540447682,41.800885864503364],[-87.59977157902226,41.80089017713953],[-87.59932887239447,41.80089542317444],[-87.5991403395541,41.80089723705884],[-87.5989923816324,41.800897959287305],[-87.59890662933779,41.80089837760804],[-87.59867037024937,41.80090114794751],[-87.59844358754735,41.80090271605764],[-87.59820966068868,41.800906026447706],[-87.59803627556924,41.800908479646004],[-87.59771227705768,41.800912305489796],[-87.59743780248705,41.80091499294659],[-87.59743398980164,41.80091501544901],[-87.59710777321104,41.80091694005897],[-87.59705282180911,41.80091793255686],[-87.59683240522597,41.80092401146239],[-87.59667691954387,41.80092297385652],[-87.59667071819925,41.80066007285977],[-87.59666525765817,41.800461187441584],[-87.59666037446169,41.8002919164824],[-87.59665810802154,41.80019587937299],[-87.59665568351237,41.80009311831494],[-87.5966512450346,41.7998882571785],[-87.59664682919856,41.79967181477519],[-87.5966418835916,41.7994575037407],[-87.59663690266201,41.7992416677503],[-87.59663258336863,41.79905519374219],[-87.59662859706962,41.79891230128869],[-87.59662818963183,41.79889769883699],[-87.59662458447994,41.79871608677152],[-87.59662191973248,41.798558163860626],[-87.5966192489534,41.79843221175983],[-87.59661736759269,41.79833442102444],[-87.5966117790477,41.79816591387645],[-87.5966096137176,41.79798744444007],[-87.59660723264957,41.797791180803856],[-87.59660255124201,41.797575560176455],[-87.59659992274075,41.797455014830646],[-87.5965980071695,41.79736713043462],[-87.596593136314,41.797145608374585],[-87.59658821484761,41.79694768678882],[-87.59658348956218,41.79677432776049],[-87.5965770545574,41.79653654923298],[-87.59657027078309,41.796285870890365],[-87.59656594101429,41.796093963043454],[-87.59656248023065,41.795954229534004],[-87.5965568488001,41.79574469504674],[-87.59655350592115,41.79561714689058],[-87.59654815511422,41.79534466039221],[-87.59654415960411,41.79506623050287],[-87.59715038071934,41.79506026209416],[-87.59730071375091,41.795059085691804],[-87.59746850397067,41.79505777228849],[-87.59765242938157,41.795055356410714],[-87.59784210365082,41.79505286507892],[-87.59809822759794,41.7950507317882],[-87.59846991936323,41.79504763472323],[-87.59877181146086,41.79504388487735],[-87.5991208812721,41.795038624552],[-87.5994550835339,41.795034667769364],[-87.59977728491356,41.79503156643705],[-87.60024971199473,41.795027008002094],[-87.6005057952202,41.795023702488756],[-87.60083959625618,41.795019574186604]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4710063.80583","perimeter":"0.0","tract_cent":"1181387.03227906","census_t_1":"17031380100","tract_numa":"21","tract_comm":"38","objectid":"532","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1877900.08698438","census_tra":"380100","tract_ce_3":"41.82019789","tract_crea":"","tract_ce_2":"-87.6101001","shape_len":"8947.45074988"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61381213734313,41.816687986915795],[-87.61409010861072,41.81668275102187],[-87.61409518290863,41.81674818482938],[-87.61407238764649,41.81689038801937],[-87.61404538916202,41.81702798112396],[-87.61402240675388,41.817144304094946],[-87.61400057503235,41.81725610621682],[-87.6139829927052,41.81734880764628],[-87.61393839054129,41.81758227383229],[-87.61390197877842,41.81777286622146],[-87.61386782760032,41.8179430166797],[-87.61384802795787,41.81804371718609],[-87.61382332061423,41.8181731469072],[-87.61379866533797,41.8183044704931],[-87.61376342075233,41.818483891885855],[-87.61372848478771,41.81866174657013],[-87.61369457840203,41.8188373068918],[-87.6136938641795,41.81884100498729],[-87.61366187407121,41.819011388432116],[-87.61364043465352,41.819122177525415],[-87.61359023040808,41.819385892523876],[-87.61356004388998,41.81954445612604],[-87.61346107891322,41.82005745357696],[-87.6134146722869,41.820286200340746],[-87.61335759462932,41.82056754108437],[-87.61326201313479,41.82101077269745],[-87.61321749140333,41.8211939183781],[-87.61317878343536,41.821353145756504],[-87.61316261927944,41.82142760813701],[-87.61311466716771,41.821657199323674],[-87.61306540670707,41.8218930504621],[-87.61301725539025,41.822123591503185],[-87.61298695927532,41.82226864030969],[-87.61293240426632,41.822516492329385],[-87.61289634382585,41.822680316363474],[-87.61280407457481,41.82309950068808],[-87.61276361788029,41.82328121853192],[-87.61276171323276,41.823289772543625],[-87.61276035948899,41.823295853583275],[-87.61267951800139,41.82365896171786],[-87.6126242723945,41.82389080517135],[-87.61213605331176,41.82389732077578],[-87.60984136661733,41.82392073796531],[-87.6095870683617,41.823923330270205],[-87.60833773776247,41.82393685681863],[-87.60732734037146,41.823948916418225],[-87.60702859187904,41.82395794994389],[-87.60691604357247,41.82396006481817],[-87.60687961339801,41.823963154985236],[-87.60687305832275,41.82396480097777],[-87.60643720434108,41.82330608474625],[-87.60685918571652,41.823165708059776],[-87.60685533006003,41.822728573039406],[-87.6068526488037,41.82242460254308],[-87.60684690560024,41.822126538638834],[-87.60684469473264,41.82201181422021],[-87.6068329651238,41.82150286969487],[-87.60682337846411,41.821086915618835],[-87.60682020393564,41.82095602353345],[-87.60680883367007,41.820487201035306],[-87.60680628352334,41.82038205166429],[-87.60680354977386,41.82026932337828],[-87.6067987301555,41.820070611610646],[-87.60677170452449,41.819571874619676],[-87.60677170420108,41.81957187077566],[-87.60676659017096,41.81947749262089],[-87.60676036316822,41.81934471563506],[-87.6067528264812,41.81907881651855],[-87.60675342900633,41.81903960031778],[-87.60675297509788,41.818825027345504],[-87.60674996732051,41.8186183880878],[-87.60674735823706,41.81843914739708],[-87.60674518638625,41.81830998828799],[-87.60674253234453,41.818152121055164],[-87.6067350162413,41.81794403035113],[-87.60672984729013,41.817800911376665],[-87.60672784818331,41.81773293357118],[-87.60672652161489,41.817687826656055],[-87.60672120877406,41.81750713742137],[-87.60671660883159,41.817290969540544],[-87.60671188120513,41.817079575875624],[-87.60670812560372,41.81681377137391],[-87.60708378756135,41.81680725377295],[-87.60743368273481,41.816801040559646],[-87.60790325358509,41.81679390841405],[-87.60796955468064,41.81679304800949],[-87.60822341080421,41.81678975501107],[-87.60851378365784,41.81678524839506],[-87.60884840597105,41.81678011453369],[-87.60918784198724,41.81677335305303],[-87.60942393391338,41.81676864956479],[-87.6096747995072,41.81676397335254],[-87.60993244507429,41.816759888145384],[-87.61010401348801,41.816757099090175],[-87.6104136830921,41.81675127336316],[-87.61065161130425,41.81674679680293],[-87.61088658726857,41.816742566827266],[-87.61105092838578,41.816739840672334],[-87.6112872963781,41.81673578328615],[-87.61164169627467,41.81672866623726],[-87.61192740406995,41.8167229279217],[-87.6122090440133,41.8167185492149],[-87.61226235726686,41.816717613576145],[-87.61244398227048,41.81671442558677],[-87.61285769015495,41.81670647224485],[-87.61307036038023,41.81670238329507],[-87.61335920561184,41.816696674537305],[-87.61341860971937,41.81669546424046],[-87.61357033667731,41.8166923722126],[-87.61381213734313,41.816687986915795]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3480820.05093","perimeter":"0.0","tract_cent":"1177616.60945758","census_t_1":"17031380400","tract_numa":"20","tract_comm":"38","objectid":"533","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1877844.10985038","census_tra":"380400","tract_ce_3":"41.82013054","tract_crea":"","tract_ce_2":"-87.62393325","shape_len":"7901.34408327"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62576972975627,41.81649598973982],[-87.62627050845802,41.81648982544944],[-87.62627770569316,41.816642231497696],[-87.62628738220454,41.817006510917196],[-87.62629508740862,41.8173032141943],[-87.62630452440749,41.81765923183769],[-87.62631063003073,41.81790792791656],[-87.62631666371036,41.81821653099814],[-87.62631940907492,41.818303596200984],[-87.62632569351908,41.818502923903054],[-87.62633328285551,41.81878683808268],[-87.62633797689136,41.81900045363348],[-87.62634352895235,41.81919780065319],[-87.62634978574951,41.819351024668606],[-87.62635280996123,41.81955299421036],[-87.62635525248037,41.81974787994511],[-87.62635811205604,41.81989814639176],[-87.6263624349111,41.820108795803705],[-87.62638022012531,41.820975492755785],[-87.62639166709546,41.821533309565915],[-87.62639738733988,41.82181205011851],[-87.62640028414548,41.821953206312095],[-87.62640373173112,41.822121204030175],[-87.62640516844357,41.822232836605906],[-87.62640650124833,41.822336371845836],[-87.62641004459078,41.82264125459776],[-87.62641501805105,41.82289957587819],[-87.6264213767726,41.823115314882465],[-87.62642753676424,41.82338914829194],[-87.62643074648655,41.82353428501425],[-87.62642224680934,41.82371376417949],[-87.62608002879398,41.8237187363846],[-87.62591974776295,41.82372101532529],[-87.62574361150479,41.823723114591914],[-87.62559794621336,41.82372485056514],[-87.62531936393765,41.823728677160254],[-87.62497215616358,41.82373411064785],[-87.62482271021824,41.823735732859326],[-87.62446432459515,41.823739622190416],[-87.62432122057021,41.8237412826132],[-87.62426776089141,41.82374167463068],[-87.62314672393556,41.82375582267271],[-87.62240779066714,41.82376514223726],[-87.62234636528846,41.82376591682916],[-87.62222982585945,41.82376738616024],[-87.62160197732236,41.823775267423855],[-87.6215935915653,41.823424335964134],[-87.62157757228955,41.82275394919772],[-87.62156498940018,41.82229590669759],[-87.62155730300094,41.82201611507053],[-87.62155399702468,41.82189577152446],[-87.62155147361122,41.82180391587706],[-87.62154978956586,41.821742606958594],[-87.62153994730748,41.82138432542504],[-87.62151250547697,41.820380575705364],[-87.62150651717653,41.820169693538816],[-87.62147815707338,41.819171017558176],[-87.62147819862992,41.81912562757073],[-87.62147037368484,41.818884796719544],[-87.62146547915545,41.81872386975874],[-87.62146189958194,41.81855680377461],[-87.6214575313612,41.818366112953015],[-87.62145334323323,41.81818331027778],[-87.6214493547661,41.81807307561021],[-87.62144369575402,41.817898340201424],[-87.6214383196536,41.817724594478385],[-87.62143143882929,41.817514505263965],[-87.62142585976335,41.817292843281564],[-87.62142140930636,41.817052088151215],[-87.62141468822279,41.81681098962528],[-87.62140742832896,41.8165639908571],[-87.62148402319112,41.81656275587265],[-87.62174691156544,41.81655851693362],[-87.6220032146531,41.81655623499175],[-87.62221256062266,41.81655346995929],[-87.62234127540134,41.81655176890182],[-87.62260402760792,41.81654686386726],[-87.62303078252383,41.81653922354261],[-87.62338211409723,41.8165329322002],[-87.62372887346957,41.8165280495365],[-87.62385078511004,41.81652617385792],[-87.62396813388466,41.81652436811679],[-87.62440089922119,41.81651789567263],[-87.62465483802154,41.81651352623505],[-87.62535737222821,41.816501434769],[-87.62546594335342,41.81650000122855],[-87.62576972975627,41.81649598973982]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2784307.29491","perimeter":"0.0","tract_cent":"1180304.63682005","census_t_1":"17031380900","tract_numa":"14","tract_comm":"38","objectid":"534","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875617.93149734","census_tra":"380900","tract_ce_3":"41.8139604","tract_crea":"","tract_ce_2":"-87.61414084","shape_len":"6774.51054469"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61650240860205,41.81119916958248],[-87.61663943588232,41.81119696913332],[-87.6166477833231,41.81149903219268],[-87.61665226705432,41.8116792492246],[-87.61665867887635,41.811900395409644],[-87.61666477874633,41.812110041130985],[-87.61666975205253,41.812280436696724],[-87.61667093732298,41.81232100446233],[-87.61668043573799,41.81266673247261],[-87.61669016996315,41.813010070298304],[-87.61669560190151,41.813201658607085],[-87.6167030731997,41.813485737534016],[-87.61671090130838,41.81376413802682],[-87.6167190250536,41.81404234825109],[-87.61672624736094,41.814289542551606],[-87.61673289127968,41.81454913734701],[-87.6167411582762,41.8148222432553],[-87.6167479587389,41.81504690523376],[-87.61675630642642,41.815324760036134],[-87.61676336886678,41.815559988254705],[-87.61677123495109,41.81583169285713],[-87.61677633989824,41.8160418536372],[-87.61678285593585,41.8163129460548],[-87.61679234059298,41.81663500960243],[-87.6165289977005,41.816638075182965],[-87.61622246629109,41.816641643055],[-87.61600699630137,41.81664688392935],[-87.61583043577753,41.81664949639278],[-87.61577745925298,41.816650280191254],[-87.61559637982187,41.81665395134631],[-87.615263466102,41.816660615021114],[-87.6148758463741,41.81666813536919],[-87.61471964792912,41.81667097529447],[-87.61455691865237,41.8166739338575],[-87.61438398780088,41.816677215006685],[-87.61409010861072,41.81668275102187],[-87.61381213734313,41.816687986915795],[-87.61357033667731,41.8166923722126],[-87.61341860971937,41.81669546424046],[-87.61335920561184,41.816696674537305],[-87.61307036038023,41.81670238329507],[-87.61285769015495,41.81670647224485],[-87.61244398227048,41.81671442558677],[-87.61226235726686,41.816717613576145],[-87.6122090440133,41.8167185492149],[-87.61192740406995,41.8167229279217],[-87.61164169627467,41.81672866623726],[-87.61163093500835,41.816329403137786],[-87.61162647766972,41.816118669937936],[-87.61162089499308,41.81596896226926],[-87.61161204273367,41.81576412907009],[-87.61160503678286,41.815483071581944],[-87.61160017815331,41.81527211628748],[-87.61159601136144,41.81511396513331],[-87.61159170082692,41.814913759291215],[-87.6115874278645,41.8147153056218],[-87.6115832585974,41.81455734653567],[-87.6115786265753,41.81438179374925],[-87.61157385654943,41.81421853443247],[-87.61156764614776,41.8140067747582],[-87.61156112322,41.81378436533287],[-87.61155706525155,41.813603464796934],[-87.611556027383,41.81355211292541],[-87.61155329997048,41.81341603472419],[-87.61155032160485,41.8132696364754],[-87.611544214411,41.813096397407016],[-87.61153654970937,41.8128789849539],[-87.61153310894562,41.81271496554968],[-87.61153192650211,41.81265894777107],[-87.61152939719449,41.812539144061454],[-87.6115238207204,41.812317042395705],[-87.6115220735191,41.81224820503157],[-87.61151917898721,41.81213580855757],[-87.61151500721465,41.81197159271371],[-87.61151115543291,41.81182458519909],[-87.61150861536156,41.811730248541366],[-87.61150672872871,41.81166017537063],[-87.61150105964906,41.811449599039854],[-87.61149869290207,41.81127964526443],[-87.61175457610919,41.81127550341739],[-87.61197272286036,41.811272043633025],[-87.61208667660767,41.81127024049521],[-87.6122396653114,41.81126781922005],[-87.61240406483145,41.811265174073206],[-87.61267501221681,41.811260253411604],[-87.61286564850296,41.81125679112574],[-87.61311651595803,41.811253314849196],[-87.6132411645484,41.811251605886966],[-87.6133362719198,41.811250301648236],[-87.61383052684882,41.81124237783732],[-87.61413133939323,41.81123755435724],[-87.61453754177936,41.81123113080528],[-87.61485170871015,41.81122609042596],[-87.61528895565681,41.81121920223333],[-87.61542418585599,41.811217210993725],[-87.61561900181862,41.811213872620904],[-87.61569525960554,41.81121256583325],[-87.61589827469639,41.811209086110814],[-87.6160928705444,41.8112057458338],[-87.61637792238699,41.811201168776805],[-87.61650240860205,41.81119916958248]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2783257.93364","perimeter":"0.0","tract_cent":"1180359.799769","census_t_1":"17031381200","tract_numa":"16","tract_comm":"38","objectid":"535","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1873632.70518678","census_tra":"381200","tract_ce_3":"41.80851151","tract_crea":"","tract_ce_2":"-87.61399945","shape_len":"6776.96091315"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61623335643856,41.80574560759113],[-87.61649640523767,41.80574185717721],[-87.61650321770495,41.805998189922164],[-87.61651060895487,41.806341984176306],[-87.61651560961828,41.80655145831402],[-87.61651813974352,41.80665921577964],[-87.61652687638767,41.80703128334018],[-87.61653549866392,41.80736333971083],[-87.61654025307253,41.807563030850304],[-87.61654571622985,41.80779252595167],[-87.61655403935319,41.80807910775707],[-87.61656013343949,41.8083287102423],[-87.61656523738164,41.80853223014708],[-87.61656953791767,41.80868936677123],[-87.61657548512217,41.80889950562917],[-87.61658005736898,41.80906188550487],[-87.61658321982954,41.80917304839799],[-87.61658873826748,41.809384112127624],[-87.61659540925434,41.80963926707971],[-87.61660287383634,41.809877791175666],[-87.61661104004622,41.81014554616891],[-87.6166134560678,41.810228744885926],[-87.61661517540314,41.8102879660916],[-87.61661729593548,41.81036098334923],[-87.61662626192064,41.810675395981775],[-87.6166303231113,41.8108672186857],[-87.61663943588232,41.81119696913332],[-87.61650240860205,41.81119916958248],[-87.61637792238699,41.811201168776805],[-87.6160928705444,41.8112057458338],[-87.61589827469639,41.811209086110814],[-87.61569525960554,41.81121256583325],[-87.61561900181862,41.811213872620904],[-87.61542418585599,41.811217210993725],[-87.61528895565681,41.81121920223333],[-87.61485170871015,41.81122609042596],[-87.61453754177936,41.81123113080528],[-87.61413133939323,41.81123755435724],[-87.61383052684882,41.81124237783732],[-87.6133362719198,41.811250301648236],[-87.6132411645484,41.811251605886966],[-87.61311651595803,41.811253314849196],[-87.61286564850296,41.81125679112574],[-87.61267501221681,41.811260253411604],[-87.61240406483145,41.811265174073206],[-87.6122396653114,41.81126781922005],[-87.61208667660767,41.81127024049521],[-87.61197272286036,41.811272043633025],[-87.61175457610919,41.81127550341739],[-87.61149869290207,41.81127964526443],[-87.6114957589847,41.811068989783365],[-87.6114921208413,41.81091602851258],[-87.6114902276632,41.81084288170335],[-87.611487263199,41.81072793286131],[-87.61148244478619,41.81055268065518],[-87.61147785004272,41.81037018468975],[-87.61147300725922,41.810177863205105],[-87.61146821550084,41.80999429599679],[-87.61146669777692,41.80993616271845],[-87.61146220980109,41.80976085767885],[-87.61145344679595,41.80946172383786],[-87.61144614521653,41.80921247636657],[-87.61144460250442,41.80915980567736],[-87.61144222067823,41.80903962603206],[-87.61144158188488,41.80900739709095],[-87.61143693446564,41.80879076223367],[-87.61143234318473,41.80857893020304],[-87.61142781806083,41.80836783953475],[-87.61142264643918,41.80813912654589],[-87.6114169150485,41.8079047019363],[-87.61141109222666,41.807642519214966],[-87.61140580522982,41.807404487831555],[-87.61140237471027,41.80721675778888],[-87.61139848872467,41.8070532293936],[-87.6113938947258,41.806871090076385],[-87.61138852230958,41.80665370990143],[-87.61138436410776,41.80644912540328],[-87.61137929034666,41.80620844790666],[-87.61137487210333,41.80602699601062],[-87.61137057922745,41.80582235685581],[-87.61161732235902,41.805817374888264],[-87.61182065428687,41.80581527674669],[-87.61198030513366,41.80581275603439],[-87.61207183578753,41.80581131071755],[-87.61229892125361,41.80580719289339],[-87.61258736321429,41.805803354504704],[-87.61290992737783,41.80579906143945],[-87.61309752838882,41.80579658767651],[-87.61319716306814,41.80579481658274],[-87.61329379722622,41.80579309822023],[-87.61355210685079,41.8057879661522],[-87.61386690533193,41.805783148625935],[-87.61426463312654,41.805777060665875],[-87.61443726914962,41.80577462852432],[-87.61454938733608,41.805773144867956],[-87.6147104164034,41.805771013732034],[-87.61506003728077,41.80576421645139],[-87.61534993049061,41.80575881403993],[-87.61548566553432,41.80575656872446],[-87.61555449591907,41.805755506496965],[-87.61574260510068,41.805752603207],[-87.61623335643856,41.80574560759113]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3414250.81253","perimeter":"0.0","tract_cent":"1178335.04292194","census_t_1":"17031381400","tract_numa":"16","tract_comm":"38","objectid":"536","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1873290.09224221","census_tra":"381400","tract_ce_3":"41.80761762","tract_crea":"","tract_ce_2":"-87.62143614","shape_len":"9166.24020238"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61811692851823,41.80795344680538],[-87.61810662993513,41.80753762427235],[-87.61781911786122,41.8075422010268],[-87.61748538502468,41.807547099909236],[-87.61713583983156,41.80755336577705],[-87.61704968268873,41.80755476410857],[-87.61680211396425,41.80755878193448],[-87.61654025307253,41.807563030850304],[-87.61653549866392,41.80736333971083],[-87.61652687638767,41.80703128334018],[-87.61651813974352,41.80665921577964],[-87.61651560961828,41.80655145831402],[-87.61651060895487,41.806341984176306],[-87.61650321770495,41.805998189922164],[-87.61649640523767,41.80574185717721],[-87.61676017486243,41.80573809556383],[-87.61699706082126,41.80573471702695],[-87.61717233457412,41.80573221654116],[-87.61741059763152,41.805728652265216],[-87.61749086618043,41.80572745132418],[-87.617740214287,41.805723379144204],[-87.61806094761101,41.805718086536785],[-87.61832336005381,41.805713755519726],[-87.61858911646786,41.80570965190266],[-87.61865579631036,41.80570862218594],[-87.61870651759763,41.80570783893078],[-87.6187819184757,41.80570667458867],[-87.61912375537511,41.80570051274002],[-87.61949721024618,41.8056951254017],[-87.61985762347068,41.805689924786215],[-87.62008246612665,41.805686217000094],[-87.62030444610681,41.80568263315823],[-87.6204949878432,41.80567955661011],[-87.62111906817736,41.805669756222166],[-87.62119092654989,41.805668627610935],[-87.62148213671283,41.805664053243056],[-87.62177678750298,41.80565945718747],[-87.62192976708121,41.80565758550131],[-87.62219666440423,41.80565431842997],[-87.62274248030636,41.80564512760618],[-87.62280557581319,41.80564406507466],[-87.62300109660207,41.80564077174862],[-87.62328682961977,41.805636638086376],[-87.62355420844567,41.80563240155764],[-87.62361328699068,41.80563146552047],[-87.62436129916527,41.80562003028902],[-87.62598222436469,41.80556315508925],[-87.62598391627674,41.80562841565345],[-87.62598934756303,41.80583789100702],[-87.62599335152365,41.805978026407374],[-87.62599853750775,41.80615952232749],[-87.62600812486288,41.80648167721495],[-87.6260157900011,41.806778518011185],[-87.62602327978345,41.80712461748702],[-87.62603220772131,41.80741553866127],[-87.6260449079302,41.807829398658065],[-87.62605779987923,41.80824131136841],[-87.62606031381486,41.80833302300752],[-87.62606764185082,41.80860035105419],[-87.62607743243154,41.80897080631557],[-87.62608506661246,41.8092364224165],[-87.62580118973659,41.80924117269755],[-87.62526762588664,41.8092491853968],[-87.62517663984762,41.80925055154792],[-87.62445799058152,41.80926193529279],[-87.62397076013771,41.8092683035998],[-87.62374483838136,41.80927228701201],[-87.62364857069704,41.80927398321696],[-87.6234565478399,41.80927736647723],[-87.6231542793515,41.80928268811461],[-87.62283564608744,41.80928725871633],[-87.62236556256762,41.80929400042303],[-87.62211711801505,41.80929806077205],[-87.62203341455417,41.809299443726545],[-87.62182956448771,41.809302811403235],[-87.62154887151534,41.80930743916909],[-87.62121289794369,41.80931119583338],[-87.62067092734193,41.80931725385893],[-87.62040420830412,41.80932195344694],[-87.62034495859977,41.809322997359374],[-87.61997980522251,41.80932956686828],[-87.61959283435533,41.809335929676855],[-87.61960371000555,41.809700644241666],[-87.61960474609826,41.80974400995751],[-87.61960967007576,41.809950108468016],[-87.6196154534534,41.810159450281176],[-87.61962177164514,41.81039324690129],[-87.61962854368973,41.81064894537209],[-87.61963609202742,41.81093384828856],[-87.61964248174267,41.81115086874584],[-87.61936387263137,41.81115581503089],[-87.6191535827152,41.81115867907769],[-87.61893610219207,41.81116163523335],[-87.61886090327395,41.81116266700102],[-87.61868699710229,41.8111650528584],[-87.61850018714591,41.81116756781516],[-87.61820355153245,41.8111727429621],[-87.61819564549658,41.81091802888584],[-87.61819043492235,41.810720326327484],[-87.61818564295163,41.81055094728637],[-87.61818043930175,41.81035925472074],[-87.61817537666833,41.81016141585013],[-87.61816835515683,41.809882498884775],[-87.61816110507733,41.809643921331514],[-87.61815339062188,41.80935852024294],[-87.61814733198673,41.80913438826854],[-87.61814215652429,41.80895992988202],[-87.61813664249463,41.808749958452815],[-87.61813069803243,41.8085127336757],[-87.61812367852608,41.808227065722434],[-87.61811692851823,41.80795344680538]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3270131.8972","perimeter":"0.0","tract_cent":"1184305.04825246","census_t_1":"17031390200","tract_numa":"11","tract_comm":"39","objectid":"537","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875316.84178785","census_tra":"390200","tract_ce_3":"41.81304138","tract_crea":"","tract_ce_2":"-87.5994766","shape_len":"7586.07878494"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6013747565987,41.80959169719899],[-87.60170023495401,41.80958775334527],[-87.60170525181547,41.80986861429314],[-87.60171158297824,41.81013748371113],[-87.60171397650407,41.810249493053824],[-87.60171632228963,41.81035925123675],[-87.60172178926855,41.810623450136454],[-87.6017260470893,41.81081016992652],[-87.60173180352227,41.81101992398556],[-87.60173883868228,41.81140826593764],[-87.60174273040624,41.81162310256751],[-87.60174501323421,41.81181576509381],[-87.60174960280219,41.81200879906061],[-87.60175364893178,41.81217864045209],[-87.60175938175324,41.8124163035668],[-87.60176529320236,41.81267369913121],[-87.60177057958686,41.81292477887581],[-87.60177589166155,41.8132284050075],[-87.60177998152687,41.81346214016609],[-87.6017846680345,41.81370147029556],[-87.60179110950484,41.81402190511132],[-87.6017964174256,41.8142678805879],[-87.60180152143958,41.81448986981795],[-87.60180588745753,41.814670333779674],[-87.60180910516947,41.814845328772925],[-87.60181106044651,41.81493310550796],[-87.6018136338518,41.815048637626326],[-87.60181927881082,41.81530201293818],[-87.60182673521673,41.81561383711533],[-87.60183014705416,41.81577500246256],[-87.60183551747805,41.81603165347708],[-87.60184011709691,41.81623028595302],[-87.60184484952795,41.816446262512315],[-87.60184698888584,41.81653137598222],[-87.60184926948892,41.81662203377778],[-87.60185091772435,41.81678525155753],[-87.60185177781582,41.81687040462621],[-87.60158104914183,41.816875076073984],[-87.60140216094698,41.816876268962936],[-87.60119172213098,41.81687761723353],[-87.60095720988872,41.81687968979791],[-87.60063009746624,41.81688394186311],[-87.60030287787723,41.816888194508124],[-87.60003319187011,41.81688969136972],[-87.59959063949388,41.816891825006394],[-87.59941678054918,41.81689547286391],[-87.5991093674965,41.816901922227714],[-87.59888196738271,41.81690493997765],[-87.59871644306776,41.81666710746928],[-87.5985682674022,41.81646870944491],[-87.59841894424338,41.816268081022976],[-87.59826421300346,41.816056056511464],[-87.59817058682499,41.81592938222299],[-87.59808452631471,41.81581294411545],[-87.59786672210585,41.81551890068869],[-87.5977014640817,41.81529423923375],[-87.5975710167014,41.81511598742519],[-87.59754319115244,41.81507796486326],[-87.59739770079288,41.81487958248725],[-87.5972236776417,41.814645368988565],[-87.59713173554584,41.814521616842505],[-87.59691377705099,41.814225785968766],[-87.59685443673655,41.81414651484044],[-87.59691534090514,41.8140892681964],[-87.59692272553593,41.81401782835432],[-87.59691262787511,41.81348710373627],[-87.59691207132771,41.813460306467],[-87.59690839671973,41.81328325951382],[-87.59690344571983,41.81304465144107],[-87.59690142455905,41.812947233553636],[-87.59689661778128,41.81269437291448],[-87.59689187720063,41.812498724461115],[-87.59688994262828,41.81241888747905],[-87.59688303242804,41.812131902020354],[-87.59688070418837,41.812014926185924],[-87.59687702789137,41.811826700381424],[-87.5968763097766,41.81178964013427],[-87.596873961698,41.81166847338637],[-87.59687213364957,41.81158276625233],[-87.59686958586362,41.811463311469375],[-87.59686548968565,41.81127126786616],[-87.5968631876835,41.811156712357],[-87.59686088674944,41.81104225619509],[-87.5968580285042,41.81090107244929],[-87.5968540336788,41.81071923817431],[-87.59685232194313,41.81064131261042],[-87.59684483376259,41.810300349257176],[-87.59684215882122,41.81017739879962],[-87.59684025181727,41.81008975120991],[-87.5968358842464,41.80990744854153],[-87.59683236966737,41.80964152315562],[-87.59696629728079,41.80964047669828],[-87.59723890375825,41.809637580325656],[-87.59757391083886,41.80963407394071],[-87.59795686777173,41.809629802191736],[-87.59828483992429,41.8096256444071],[-87.59867521423814,41.809620704763915],[-87.59898825085784,41.80961708035653],[-87.599265246727,41.80961399071157],[-87.5998281224813,41.8096077097235],[-87.60016393785418,41.80960406345674],[-87.60040580081534,41.80960160028434],[-87.60104595027353,41.809595117535764],[-87.6013747565987,41.80959169719899]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5115219.5133","perimeter":"0.0","tract_cent":"1175243.75634641","census_t_1":"17031340600","tract_numa":"24","tract_comm":"34","objectid":"538","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880487.34429091","census_tra":"340600","tract_ce_3":"41.82743723","tract_crea":"","tract_ce_2":"-87.63255877","shape_len":"9039.45659571"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6289956829872,41.83097495028413],[-87.62900366241219,41.83083274633865],[-87.62899941196913,41.830641390035936],[-87.62899259211615,41.83036985795096],[-87.62898715370824,41.8301564030029],[-87.62898034189945,41.829890771117206],[-87.62897263322138,41.82958984244916],[-87.62896563326223,41.82931795245465],[-87.62896232304567,41.829190320177425],[-87.62895931484303,41.82907433257645],[-87.62895345038922,41.82884279024683],[-87.62895135774376,41.82874004934226],[-87.62894944328568,41.82864605660576],[-87.62894615001736,41.82848127088085],[-87.6289416222887,41.82825495055814],[-87.6289368271293,41.82802969885078],[-87.62893235141564,41.8278556027897],[-87.62892312908924,41.827679391696186],[-87.62893520543312,41.82763876826659],[-87.62898825423991,41.82758239700913],[-87.62904767936446,41.82751006574274],[-87.62907827723242,41.82742323234728],[-87.6290920284333,41.827330176485134],[-87.62904559797889,41.825885583478275],[-87.62903952948209,41.82568941339695],[-87.62903126473664,41.82545397939047],[-87.62902443060024,41.82525934879928],[-87.62896819970506,41.82368149243282],[-87.6291297425374,41.823679623674046],[-87.62935652492091,41.82367646050887],[-87.62938411838662,41.82367606210533],[-87.62946598949512,41.823674879943994],[-87.6296408555468,41.8236718585589],[-87.62984938461693,41.82366825492756],[-87.62992376444444,41.8236671901177],[-87.63003251807034,41.8236656334739],[-87.63029644733916,41.82366185477499],[-87.63044774365127,41.82365968818388],[-87.63064545555231,41.823656571529945],[-87.6308998083238,41.82365252155029],[-87.63101650644782,41.8236506632123],[-87.63133937788871,41.82364552073918],[-87.63161506321723,41.823641129454536],[-87.63179869731007,41.823637064482554],[-87.63214403065011,41.82362844300287],[-87.63254636943802,41.82363069613242],[-87.6326534943059,41.823631296140306],[-87.63265351522298,41.823631295719046],[-87.63270489067897,41.82363122298362],[-87.63291061447065,41.82362732993939],[-87.63323653266089,41.82362269111207],[-87.63341699544716,41.823620123450944],[-87.63349471143515,41.82361924460623],[-87.63376316131092,41.823615918254326],[-87.63396392306542,41.823613287848694],[-87.63606374419649,41.8252104523779],[-87.6360719050098,41.825404276962374],[-87.63611651424941,41.82540530818509],[-87.63616486672761,41.8254064257774],[-87.63618063681989,41.826041598586414],[-87.63618251760091,41.82612187959147],[-87.63618595436233,41.82625911608653],[-87.6361871350975,41.826306255245676],[-87.6361886440369,41.826366498358624],[-87.63619575238062,41.826784706569164],[-87.6362033802724,41.827233491521575],[-87.63629224144042,41.82723273935631],[-87.63640384194206,41.827230910208236],[-87.63641656956702,41.827418594943474],[-87.63644392251362,41.828491083346265],[-87.63646402973266,41.829385836554174],[-87.6364877887709,41.83032452032138],[-87.63650105425378,41.830877553535764],[-87.63629829303252,41.83088033921405],[-87.63602773957417,41.830884055765765],[-87.63555290802145,41.83089000867928],[-87.6351439443853,41.830895476926216],[-87.6348007807164,41.830900063976095],[-87.63442113554714,41.83090546617733],[-87.6341860003914,41.83090957831482],[-87.63407369983638,41.83091384507853],[-87.63378757251267,41.83092471573332],[-87.63349295388059,41.830929232828225],[-87.63341507874858,41.830930435608394],[-87.63334182786254,41.83093155016031],[-87.63306321513633,41.830935340415884],[-87.63262177331687,41.83094126523036],[-87.63251082431637,41.830937968103264],[-87.6322383115356,41.830929869190236],[-87.63191711787215,41.830928521010975],[-87.63183562699909,41.83092817894427],[-87.63150429499053,41.830938702505335],[-87.63139222356875,41.83094226167259],[-87.63131532664768,41.83094470392677],[-87.6311001453449,41.83094751428668],[-87.6308328370806,41.83095100490277],[-87.63068810050741,41.83095289486327],[-87.63048355351812,41.83095556494796],[-87.6302186859927,41.83095902214277],[-87.63003287807918,41.83096144718364],[-87.62993616968465,41.830963375049784],[-87.62982975356338,41.8309654961235],[-87.62959382366327,41.83097019827796],[-87.62956105279402,41.830970851505135],[-87.6295304775206,41.830970910870285],[-87.62947678530243,41.83097101545542],[-87.62938395426835,41.8309711960161],[-87.62924490109566,41.830971466118044],[-87.6291449478649,41.830972863542534],[-87.6289956829872,41.83097495028413]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15948569.3108","perimeter":"0.0","tract_cent":"1182464.4299831","census_t_1":"17031351000","tract_numa":"25","tract_comm":"35","objectid":"541","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883231.80058893","census_tra":"351000","tract_ce_3":"41.83480353","tract_crea":"","tract_ce_2":"-87.60598219","shape_len":"17625.6018376"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59752413800639,41.83881376625775],[-87.59472574729483,41.83472469408769],[-87.59266385662218,41.83151057683526],[-87.60039993460562,41.83136673124463],[-87.60160025641324,41.8313664858082],[-87.60271020372588,41.83136624767305],[-87.60279792683366,41.8313662062978],[-87.60295002258202,41.83133289248667],[-87.60583494109139,41.83123394861817],[-87.6060498753159,41.83123284431511],[-87.60620267768667,41.83123820229213],[-87.60670209232117,41.831232855293386],[-87.60686720985719,41.83123287064628],[-87.6072139566684,41.83123300502444],[-87.60749035996226,41.83121712014999],[-87.60828613363422,41.831209306309496],[-87.6090330635438,41.83120196683823],[-87.6093957391884,41.831198401402325],[-87.61063335778184,41.83118622542001],[-87.61081051208443,41.83122016161806],[-87.61201172515986,41.83121080711314],[-87.61253102879294,41.83120534067447],[-87.6131028354848,41.83120020029625],[-87.61334786434901,41.8312000399819],[-87.61373293121692,41.83119978647143],[-87.6141587965091,41.831202453730484],[-87.61448524488881,41.831196080047505],[-87.61466648094571,41.831192541227814],[-87.61523838576117,41.83117866461635],[-87.61569351696458,41.83117278238508],[-87.61614276564463,41.83117122500109],[-87.61654438717747,41.83116122778859],[-87.61685554474779,41.83115348080001],[-87.6169665446697,41.83110017341376],[-87.61696826544217,41.83121954294159],[-87.61699008913324,41.83278325163258],[-87.6169912226961,41.832864461211535],[-87.61699614392778,41.83311461156373],[-87.6170186717687,41.83361595705437],[-87.61702757502556,41.83381409355325],[-87.61702408663518,41.83425200142111],[-87.6170407206059,41.83438920857085],[-87.61704335355239,41.834518370037415],[-87.6170482962906,41.83464705193802],[-87.61705290918111,41.83476714223389],[-87.61704729250454,41.83484962720971],[-87.6170477226621,41.83489990479848],[-87.61704574341721,41.83543612177891],[-87.61706255237375,41.835521463141895],[-87.61706410702554,41.83559265902216],[-87.61705193638389,41.83570674446803],[-87.61706842184988,41.83639044315887],[-87.61707069355694,41.83659676550495],[-87.61707387332035,41.83688554212927],[-87.61709873655415,41.83728526178031],[-87.6171002410122,41.837370837259925],[-87.61708965277512,41.83753718329432],[-87.61709837063239,41.83791704353211],[-87.61710213236536,41.838093083952174],[-87.61711977321463,41.8382157801351],[-87.61712315165299,41.83842333792295],[-87.61657118839918,41.83842978616056],[-87.61613798064256,41.838436105059294],[-87.6159111215511,41.83843941361805],[-87.61553657688154,41.838444084836745],[-87.61525290523103,41.83844762210922],[-87.61498460650486,41.83845150263536],[-87.61403296886716,41.83846551029155],[-87.61372675681706,41.83846984912691],[-87.61349953539107,41.83847206858903],[-87.61337079318633,41.838473326444856],[-87.61321713272928,41.83847620758346],[-87.6131196419312,41.83847803568111],[-87.612731799505,41.83848530676204],[-87.61171349945155,41.838504391811774],[-87.61165631748582,41.838506927458184],[-87.61157984930358,41.83851031829276],[-87.61134177510979,41.838520875075666],[-87.61133180798666,41.83852131709157],[-87.61132647471116,41.838521553601325],[-87.61122811091552,41.838525914967974],[-87.61110715598072,41.838529855381594],[-87.61097773448665,41.83853407118298],[-87.61088047622599,41.83853524461012],[-87.61071714948088,41.838537214722734],[-87.6104859305051,41.83854000433898],[-87.61048413724508,41.838540025709875],[-87.61035151103052,41.83854162483987],[-87.61024217336963,41.838542943426816],[-87.61005089081806,41.838541746169106],[-87.60986821900791,41.83854060255631],[-87.60951433804294,41.83853838642182],[-87.6091946130671,41.83854601937168],[-87.60876382667624,41.83855630215164],[-87.60866003109619,41.83855877934106],[-87.60834322195481,41.83856634022648],[-87.6082506480376,41.83856854951025],[-87.60806437952348,41.83857299453173],[-87.60788166165722,41.838577354376845],[-87.6078033560934,41.83857922257089],[-87.60769369320224,41.8385818391032],[-87.60618802600442,41.838559184668696],[-87.60618786759306,41.838559174060904],[-87.60613467092406,41.83855134762998],[-87.60611993602765,41.83855464624395],[-87.60480054929582,41.83846669293651],[-87.60468899669408,41.83847201719468],[-87.59752413800639,41.83881376625775]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2482864.22637","perimeter":"0.0","tract_cent":"1178676.60215187","census_t_1":"17031351300","tract_numa":"9","tract_comm":"35","objectid":"542","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880505.78040253","census_tra":"351300","tract_ce_3":"41.82741029","tract_crea":"","tract_ce_2":"-87.6199637","shape_len":"7290.96486305"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61834340236541,41.827819979759525],[-87.61833685192788,41.82745529122123],[-87.61804354657006,41.82745847033894],[-87.6180380088291,41.82720609555674],[-87.61803344488489,41.82699811782002],[-87.6180171516863,41.8261611794465],[-87.6180145145997,41.82601017341752],[-87.6180074165605,41.82563819146676],[-87.61825113912982,41.82563557863116],[-87.61823214611466,41.824793732170946],[-87.61822100126209,41.82418171535218],[-87.61821435997896,41.82381705071321],[-87.6185513181061,41.823812918018106],[-87.61886174703943,41.82380910972198],[-87.61917760591544,41.82380523061374],[-87.61998816930561,41.823795271862544],[-87.62039535937376,41.82379026692264],[-87.62095332331077,41.82378340645709],[-87.62160197732236,41.823775267423855],[-87.62161137174571,41.82416840126351],[-87.6216236000954,41.82468013495093],[-87.62164213074362,41.825598152643586],[-87.62165025684297,41.82603275783439],[-87.62166065646211,41.826507635760464],[-87.62166541680979,41.826725010978116],[-87.62166916702718,41.82692185225919],[-87.62167337486905,41.82714273779788],[-87.62168159567605,41.82741092368382],[-87.62168906164315,41.82765447618018],[-87.62171332230272,41.828771585102515],[-87.62172640986152,41.829374210234306],[-87.62173269836805,41.829624416508814],[-87.62173555293465,41.829737991929306],[-87.6217475343968,41.83036235923698],[-87.62175327685597,41.83061102529641],[-87.62176362278132,41.83105903916783],[-87.62147775927292,41.831062286578046],[-87.62115251563556,41.83106545843207],[-87.62072077752104,41.83106966740602],[-87.62055072271053,41.83107060045341],[-87.62038982515023,41.831071483062416],[-87.61994413990963,41.8310760314741],[-87.61960069280984,41.83107953510769],[-87.61933361948853,41.83108219058443],[-87.61922025620136,41.83108331763253],[-87.61861902781358,41.83108808530961],[-87.61840620977199,41.83109138028261],[-87.61839778632182,41.83070876792395],[-87.61838636941091,41.83019025047405],[-87.61837915187995,41.82979467423953],[-87.6183665370065,41.82910329066548],[-87.61836411754564,41.828970670188596],[-87.61836113885012,41.82880742241017],[-87.61834340236541,41.827819979759525]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1818880.82822","perimeter":"0.0","tract_cent":"1176555.82569063","census_t_1":"17031351500","tract_numa":"9","tract_comm":"35","objectid":"543","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880438.842313","census_tra":"351500","tract_ce_3":"41.82727467","tract_crea":"","tract_ce_2":"-87.62774647","shape_len":"6669.99026758"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62876532190091,41.823683839047675],[-87.62896819970506,41.82368149243282],[-87.62902443060024,41.82525934879928],[-87.62903126473664,41.82545397939047],[-87.62903952948209,41.82568941339695],[-87.62904559797889,41.825885583478275],[-87.6290920284333,41.827330176485134],[-87.62907827723242,41.82742323234728],[-87.62904767936446,41.82751006574274],[-87.62898825423991,41.82758239700913],[-87.62893520543312,41.82763876826659],[-87.62892312908924,41.827679391696186],[-87.62893235141564,41.8278556027897],[-87.6289368271293,41.82802969885078],[-87.6289416222887,41.82825495055814],[-87.62894615001736,41.82848127088085],[-87.62894944328568,41.82864605660576],[-87.62895135774376,41.82874004934226],[-87.62895345038922,41.82884279024683],[-87.62895931484303,41.82907433257645],[-87.62896232304567,41.829190320177425],[-87.62896563326223,41.82931795245465],[-87.62897263322138,41.82958984244916],[-87.62898034189945,41.829890771117206],[-87.62898715370824,41.8301564030029],[-87.62899259211615,41.83036985795096],[-87.62899941196913,41.830641390035936],[-87.62900366241219,41.83083274633865],[-87.6289956829872,41.83097495028413],[-87.62864315737474,41.830979878104394],[-87.62818774739235,41.83098797791731],[-87.62790314332426,41.83099287064056],[-87.62776963165817,41.83099485906692],[-87.6275210489397,41.83099713783094],[-87.62743433325772,41.830998204567614],[-87.62693935324008,41.831004291948716],[-87.62664431564382,41.83101370085828],[-87.62664590285668,41.83090586124714],[-87.62664159627465,41.83069359321776],[-87.62663775656274,41.830508935370425],[-87.62663294418782,41.830349326683276],[-87.62662796931403,41.83020782914927],[-87.62662271583396,41.8300849909086],[-87.62661621458787,41.829985526137534],[-87.62660651230361,41.829856842673934],[-87.6265924252273,41.82965645198556],[-87.62652821447823,41.82957490699577],[-87.62651977801953,41.82918311595416],[-87.62651797689425,41.82909945660057],[-87.62651415482658,41.828926571712664],[-87.62650767823692,41.82871538768571],[-87.62650319087119,41.828569063471555],[-87.62649605569,41.82823040444227],[-87.62649049830127,41.82798843564099],[-87.62648292373633,41.82768308928049],[-87.62647752719242,41.82750325166343],[-87.62647537803635,41.82736094843782],[-87.6264705857733,41.827043598998685],[-87.62646804093337,41.82692919539541],[-87.6264654548397,41.82681293915515],[-87.62645856784226,41.82662848196797],[-87.6264525591883,41.82645797106172],[-87.62644346896356,41.82620000880255],[-87.626440426163,41.82606233758377],[-87.62643783631202,41.82594489440653],[-87.6264338973219,41.82573600390212],[-87.6264284539283,41.82553970032383],[-87.62642514981407,41.8254205512935],[-87.62642029113306,41.82520515119313],[-87.6264140393616,41.82494632817943],[-87.6264117975286,41.824676552757495],[-87.62641656178224,41.82443022905617],[-87.62641816396787,41.82417117991758],[-87.6264127772588,41.82391373431647],[-87.62642224680934,41.82371376417949],[-87.62661202559408,41.823711006309516],[-87.62698708870555,41.82370809923335],[-87.627224939577,41.82370489637565],[-87.6275934143608,41.82369902444583],[-87.6277344869874,41.82369677610998],[-87.62806959945627,41.82369021718382],[-87.62830656308215,41.823687582934824],[-87.62861793054292,41.82368504218738],[-87.62876532190091,41.823683839047675]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2514325.24134","perimeter":"0.0","tract_cent":"1181426.86392757","census_t_1":"17031360200","tract_numa":"9","tract_comm":"36","objectid":"544","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880340.68996254","census_tra":"360200","tract_ce_3":"41.82689416","tract_crea":"","tract_ce_2":"-87.6098786","shape_len":"7700.83168881"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61213605331176,41.82389732077578],[-87.6126242723945,41.82389080517135],[-87.61257695181631,41.82408938784097],[-87.61237128465226,41.82484023073088],[-87.612255640527,41.82526241183631],[-87.6121279287,41.8257227421971],[-87.61205793721943,41.82597292374984],[-87.61194857939992,41.826367685892954],[-87.61188696986693,41.82659407474317],[-87.61184008667637,41.82676635019603],[-87.61168992269698,41.82730778374622],[-87.6116266848302,41.8275362607276],[-87.61152417889281,41.82790661152104],[-87.6114830835377,41.828054264827585],[-87.61141940967293,41.82828304161567],[-87.61141795483671,41.82828826935503],[-87.61133106843377,41.82860044278192],[-87.61129609251094,41.82872610377566],[-87.6112950704349,41.828729780155626],[-87.61127692970705,41.82879495879123],[-87.61127644642686,41.82879669397119],[-87.61108240937088,41.82949383477045],[-87.61102002074672,41.82971690799233],[-87.61100977741125,41.82974683839717],[-87.61100082837847,41.829775871332906],[-87.61063335778184,41.83118622542001],[-87.6093957391884,41.831198401402325],[-87.60846845333607,41.829567544913765],[-87.60819141162965,41.82914644502065],[-87.60792693377181,41.828730802543035],[-87.60779200202234,41.82851877575864],[-87.60768819943387,41.82835566278011],[-87.60753528512997,41.82811472210182],[-87.60763135924171,41.828086502825116],[-87.60799230104061,41.82796523585174],[-87.60855128506323,41.827799662746344],[-87.60882535705011,41.82772226749448],[-87.60875816385213,41.82759007111143],[-87.60848817219048,41.82706500857351],[-87.60836197653423,41.8268226069061],[-87.60827761942163,41.82666054717848],[-87.60808180609808,41.82627670500824],[-87.60802672211514,41.826168141963585],[-87.60797762466028,41.826071376703155],[-87.60784580950154,41.82580923812711],[-87.60761145020669,41.82534984921957],[-87.60737953594547,41.82488863659672],[-87.60728644112746,41.824704785997476],[-87.60715572766576,41.824447398105015],[-87.60687305832275,41.82396480097777],[-87.60687961339801,41.823963154985236],[-87.60691604357247,41.82396006481817],[-87.60702859187904,41.82395794994389],[-87.60732734037146,41.823948916418225],[-87.60833773776247,41.82393685681863],[-87.6095870683617,41.823923330270205],[-87.60984136661733,41.82392073796531],[-87.61213605331176,41.82389732077578]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2550576.91725","perimeter":"0.0","tract_cent":"1182848.91127268","census_t_1":"17031360500","tract_numa":"16","tract_comm":"36","objectid":"545","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1877743.39589521","census_tra":"360500","tract_ce_3":"41.81973402","tract_crea":"","tract_ce_2":"-87.60474223","shape_len":"6881.66046333"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6063372548143,41.81682020445687],[-87.60670812560372,41.81681377137391],[-87.60671188120513,41.817079575875624],[-87.60671660883159,41.817290969540544],[-87.60672120877406,41.81750713742137],[-87.60672652161489,41.817687826656055],[-87.60672784818331,41.81773293357118],[-87.60672984729013,41.817800911376665],[-87.6067350162413,41.81794403035113],[-87.60674253234453,41.818152121055164],[-87.60674518638625,41.81830998828799],[-87.60674735823706,41.81843914739708],[-87.60674996732051,41.8186183880878],[-87.60675297509788,41.818825027345504],[-87.60675342900633,41.81903960031778],[-87.6067528264812,41.81907881651855],[-87.60676036316822,41.81934471563506],[-87.60676659017096,41.81947749262089],[-87.60677170420108,41.81957187077566],[-87.60677170452449,41.819571874619676],[-87.6067987301555,41.820070611610646],[-87.60680354977386,41.82026932337828],[-87.60680628352334,41.82038205166429],[-87.60680883367007,41.820487201035306],[-87.60682020393564,41.82095602353345],[-87.60682337846411,41.821086915618835],[-87.6068329651238,41.82150286969487],[-87.60684469473264,41.82201181422021],[-87.60684690560024,41.822126538638834],[-87.6068526488037,41.82242460254308],[-87.60685533006003,41.822728573039406],[-87.60685918571652,41.823165708059776],[-87.60643720434108,41.82330608474625],[-87.6050340127388,41.82377296509599],[-87.60476294267033,41.82334941857386],[-87.6046704574379,41.823296611233324],[-87.60442845231114,41.822936473465916],[-87.60422753434919,41.8226142835677],[-87.60381085401897,41.821943980161414],[-87.60362799702533,41.821649817754924],[-87.60331936058255,41.82115432733373],[-87.60328262473304,41.82109527895685],[-87.60301725675973,41.82066872950996],[-87.6028387051357,41.82038167063827],[-87.60281063329097,41.82033653905656],[-87.60263410275527,41.82006477279945],[-87.6025232346147,41.819894090987745],[-87.60251035096627,41.819866675817984],[-87.60246595895153,41.81977221031083],[-87.60240700608655,41.81959543353775],[-87.60233966271448,41.81939349326522],[-87.60229198179924,41.81925059756007],[-87.60222456274408,41.81905008374791],[-87.60215532585673,41.81884428932015],[-87.60207473161873,41.818605271758635],[-87.60199582178815,41.81836980496474],[-87.60193212112519,41.81817441897082],[-87.60189545937327,41.81805950246685],[-87.60188720346751,41.818002170935216],[-87.60187737215787,41.81793389180635],[-87.60187394828151,41.81778021830166],[-87.6018708777419,41.81763414867229],[-87.60186612949815,41.8174711636486],[-87.60185929333105,41.81726628775326],[-87.60185425447173,41.81711559520134],[-87.60185177781582,41.81687040462621],[-87.6021862454319,41.81686463221319],[-87.60248283429792,41.816862046241944],[-87.60258260089658,41.816861304174694],[-87.60275520415345,41.81686001952772],[-87.60305124676016,41.81685704469069],[-87.60322878575788,41.816855193283864],[-87.6033242865916,41.81685419733058],[-87.60361967480787,41.81685069545795],[-87.60406371417338,41.816845637204096],[-87.60430642759466,41.816842871589536],[-87.60453793792337,41.81683997098936],[-87.60485774446751,41.8168359490597],[-87.60513268546747,41.816832360545654],[-87.60535824839059,41.81683017389026],[-87.60555376215079,41.8168282783019],[-87.60562269704063,41.81682789176306],[-87.60581878894098,41.81682677381953],[-87.60596188937802,41.81682540287114],[-87.60605517490445,41.81682445757909],[-87.606124223522,41.816823713331885],[-87.6063372548143,41.81682020445687]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1642193.98921","perimeter":"0.0","tract_cent":"1176386.42284996","census_t_1":"17031330300","tract_numa":"14","tract_comm":"33","objectid":"546","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888440.55378083","census_tra":"330300","tract_ce_3":"41.8492358","tract_crea":"","tract_ce_2":"-87.62812695","shape_len":"6551.81571173"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62872700195979,41.84556186722147],[-87.62916818463978,41.84555660662327],[-87.62918118559686,41.84591932068886],[-87.62918829845037,41.84613083689362],[-87.62919370124968,41.84642467037086],[-87.62919338031483,41.8465242575541],[-87.6291876943604,41.84660155041731],[-87.6291924277642,41.846782923068226],[-87.62919465291138,41.846940237337904],[-87.62920071904188,41.84712706138525],[-87.62919515044369,41.84750183174278],[-87.6292122901327,41.847781929919414],[-87.6292215659134,41.84796022634968],[-87.62922417983485,41.84811680229525],[-87.62922609023556,41.84833753467355],[-87.62922611429721,41.84852277222591],[-87.62923122226059,41.84870963260866],[-87.6292499251179,41.84888845332424],[-87.62925360826516,41.84903790100374],[-87.62925968367522,41.84920964616641],[-87.62926966263605,41.84949173467411],[-87.62927287238318,41.84973456623568],[-87.629275417929,41.8499710270389],[-87.62928273235875,41.8502746690348],[-87.62928417386236,41.850345950066654],[-87.62928730196025,41.850500604277045],[-87.62929202724364,41.850678872724394],[-87.62929889280366,41.85092304361464],[-87.62930265170705,41.85107031743047],[-87.6293074337832,41.85126881769031],[-87.62931193009032,41.85149475244387],[-87.6293164914143,41.851714759993435],[-87.62932576275729,41.85202741505176],[-87.62933000693123,41.85217593276605],[-87.62933728392557,41.852436160285386],[-87.62934971662871,41.85288175627778],[-87.62917878082165,41.85288379458498],[-87.62861653478191,41.85289684810244],[-87.62826487384073,41.852903020266154],[-87.62816794359574,41.852904721291736],[-87.62779118181042,41.85290640278675],[-87.62772257511921,41.85290670881075],[-87.62738469270694,41.852899909602925],[-87.62708869836511,41.85287039701918],[-87.62708779334399,41.85279668019894],[-87.62708542345393,41.8526035109146],[-87.62708060354639,41.8524244185861],[-87.6270740126966,41.852169381800394],[-87.62706600775708,41.85187940192763],[-87.62705836958484,41.851629490436],[-87.62705307710488,41.851426602468486],[-87.62704863940684,41.8512294278035],[-87.62704433653963,41.851066008589825],[-87.6270384912016,41.85084401717662],[-87.62703385674641,41.8506647335604],[-87.62702695189975,41.850351516520554],[-87.62702572951576,41.85029537742559],[-87.62702148991724,41.85010065785421],[-87.62701527945485,41.84978771947942],[-87.62700921864385,41.84948787238917],[-87.62700302711167,41.84924054901581],[-87.62699766795362,41.84902646398258],[-87.62699094321763,41.848776969620886],[-87.6269803128953,41.848536357168],[-87.62697839215404,41.84839206792847],[-87.6269762686948,41.84826613981629],[-87.62696655252839,41.84819262945184],[-87.62696083473284,41.84807454893756],[-87.62693081923615,41.84793270985537],[-87.62691527004189,41.847751611470514],[-87.62691039286625,41.84768146897315],[-87.62690012457439,41.847533790527095],[-87.6268980534916,41.847444849828925],[-87.62689541139231,41.84733138347466],[-87.62688746962827,41.847089604989996],[-87.62688858649929,41.846988087473065],[-87.62688605958037,41.84689888188593],[-87.626882174318,41.84675833658766],[-87.62695715141143,41.84666641117726],[-87.62697250529867,41.8466475864132],[-87.6269729383185,41.84661356027028],[-87.62697990894196,41.846440275766724],[-87.62697145262968,41.84621475546566],[-87.62696086826935,41.84558510661109],[-87.62723696033015,41.84557971998496],[-87.62765212479316,41.84557628907969],[-87.62791754031569,41.845573583594046],[-87.62812269391209,41.84557079043302],[-87.6284606879554,41.84556618817687],[-87.62872700195979,41.84556186722147]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6574577.51657","perimeter":"0.0","tract_cent":"1179591.99945472","census_t_1":"17031330500","tract_numa":"40","tract_comm":"33","objectid":"547","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888120.50142181","census_tra":"330500","tract_ce_3":"41.84828472","tract_crea":"","tract_ce_2":"-87.61637208","shape_len":"15809.2415592"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6171021152383,41.84843883232497],[-87.61710220645489,41.848184833512576],[-87.61676735400658,41.84819341096651],[-87.61597497719985,41.84820361290709],[-87.61583711863139,41.84820439119511],[-87.61568692815726,41.848205088147346],[-87.61551634071006,41.84820889153334],[-87.61543277410918,41.84821849964686],[-87.61533283954002,41.84800544393261],[-87.61525083593075,41.84800668676157],[-87.61487535100387,41.848012395685934],[-87.61453716430394,41.84802039034325],[-87.61424708524001,41.84802724667331],[-87.61406055187469,41.84804462982806],[-87.61390049450473,41.84806404462155],[-87.61379100634204,41.84809395720717],[-87.61365803699437,41.84812962270852],[-87.61352106726494,41.848178353089686],[-87.61337114462438,41.84823660701053],[-87.61325076396878,41.848291890059684],[-87.6131513415015,41.84834883679446],[-87.61301142920439,41.848428974244186],[-87.61294680666042,41.8484705560616],[-87.61273907070243,41.848638636381885],[-87.61276772446377,41.84870742970506],[-87.61284462670622,41.848892058353364],[-87.61293083188261,41.84909902097569],[-87.61297414133502,41.84950809982631],[-87.61299530957034,41.849573502257414],[-87.61308837042563,41.849861025583806],[-87.6131223925831,41.84997572929713],[-87.61316783431806,41.8501227770543],[-87.61323976926695,41.85035220880564],[-87.61339068828569,41.8508896569325],[-87.61315706640882,41.8507325929524],[-87.61311063685231,41.85067360217792],[-87.61300203901916,41.85038814970019],[-87.61285658182209,41.850064320733296],[-87.6128239371051,41.85000025710856],[-87.61271538430596,41.84977153524789],[-87.61263225815098,41.849584309014816],[-87.61239996311743,41.84906109939271],[-87.61235191551525,41.8491484314983],[-87.61235105225683,41.84915000045911],[-87.6123008545486,41.84935155283005],[-87.61227085119083,41.8495164589238],[-87.6122691707192,41.84958932429207],[-87.61226612905337,41.84972123311453],[-87.61228938289011,41.84988935501895],[-87.61232446214086,41.85001468340315],[-87.61170878002483,41.85018232141953],[-87.61144611209694,41.85016249033561],[-87.611364443831,41.850162514317056],[-87.6092561786901,41.850163112817235],[-87.60928818334193,41.85000521746202],[-87.60932708129471,41.84981339083677],[-87.60937181956581,41.849592761345335],[-87.60937481333782,41.84957796150841],[-87.60938259920508,41.84954056164493],[-87.60944295481151,41.84925064423396],[-87.60945011843226,41.84921500637062],[-87.60945710859667,41.84918023350062],[-87.60946698516638,41.84913106406725],[-87.60949800356968,41.84898095609582],[-87.60950371857126,41.848947294292756],[-87.60951192008656,41.84889899108672],[-87.6095150999501,41.848866570723914],[-87.60952000616959,41.84881654942656],[-87.60952225878671,41.84873393461224],[-87.60952161119319,41.84870633867951],[-87.60952146553929,41.848700147542424],[-87.60954334835478,41.848696223948316],[-87.60954333666456,41.848696088857224],[-87.60951218502474,41.848325223892544],[-87.6095025709071,41.848218127689776],[-87.60948965299839,41.84807422884139],[-87.60947659535756,41.84799859743379],[-87.60947659358443,41.847998591934086],[-87.6094577308224,41.84792367010012],[-87.60944747436938,41.847892770713514],[-87.60943316776806,41.847849667335645],[-87.60941221932373,41.84779925694672],[-87.6094029019609,41.84777683609319],[-87.60936711419048,41.84770545193361],[-87.60936085720893,41.8476948698815],[-87.60932587680428,41.84763570768027],[-87.60930379125074,41.84760230806227],[-87.60904954612046,41.847264670763515],[-87.60871811142817,41.84682690166633],[-87.60866726648607,41.8467602398254],[-87.60857908728904,41.84664462851878],[-87.60853809072374,41.846576477161165],[-87.60852483112582,41.8465504665642],[-87.60851572020046,41.84653259279975],[-87.60850835440414,41.846518136494474],[-87.6085025063671,41.8465066587792],[-87.60848516127017,41.846465488363464],[-87.60847248183414,41.846435393026766],[-87.60845685670435,41.846388979854886],[-87.60844808587707,41.846362927874104],[-87.60842942615686,41.84628951071297],[-87.6084217526748,41.84624525750727],[-87.60841657325811,41.846215389523614],[-87.60840956009143,41.84614086583515],[-87.60840867238802,41.84608438643046],[-87.60840838556291,41.84606613228856],[-87.6084094950509,41.846043147078056],[-87.60841058881539,41.84602048174863],[-87.60841728638857,41.845955140437326],[-87.60841788898217,41.84594925972903],[-87.60842066457907,41.8459343482116],[-87.60843105669503,41.84587851382258],[-87.60843394975605,41.84586782645857],[-87.6084500139242,41.84580848969468],[-87.60847464896787,41.845739489877964],[-87.60847896092547,41.8457298391919],[-87.60850492153163,41.845671733655124],[-87.6085264870517,41.84563184392731],[-87.60854071811255,41.84560552080168],[-87.60854648625676,41.84559587847888],[-87.60854801245844,41.8455933271686],[-87.60861385048266,41.84549610220075],[-87.60863749742569,41.84546441938943],[-87.60864492721579,41.84545446509561],[-87.60868487657189,41.845400939853945],[-87.60873050787286,41.845345173259496],[-87.60876094234084,41.84530797886525],[-87.60877834179543,41.8452881134514],[-87.60879725334547,41.84526652155602],[-87.60880191421306,41.84526120020393],[-87.60880197676718,41.84526112074063],[-87.60888141575398,41.84515963532899],[-87.60900158215624,41.845006118171085],[-87.60901472257183,41.84498470197377],[-87.60904207266742,41.84494012740162],[-87.60905418064958,41.844916760107466],[-87.60907715175948,41.844872428221514],[-87.60909755503177,41.84482469948693],[-87.60910670589385,41.84480329407114],[-87.60911644215446,41.84477459646086],[-87.60913058317357,41.844732917741624],[-87.60913061620688,41.844732787323224],[-87.6091388220879,41.84470056988024],[-87.60914086464392,41.84469254921754],[-87.60914087617012,41.8446925034611],[-87.60937658091395,41.84515338344386],[-87.60940949181392,41.8452177340755],[-87.60940614539751,41.845266504793145],[-87.61091654921505,41.84526644902025],[-87.61112256410892,41.84526643974569],[-87.61141060497297,41.845266549713436],[-87.61158088907109,41.84526623543961],[-87.61192963328182,41.845225181326725],[-87.61240099156913,41.84516639324705],[-87.61350109943116,41.84516643236028],[-87.61400068995991,41.84516647536757],[-87.61500079131055,41.84516621703666],[-87.61499270628724,41.845109933870205],[-87.61511263998153,41.84510687214146],[-87.61596180511143,41.845092173457694],[-87.61600840419449,41.845093123124634],[-87.61603520096129,41.8450959798546],[-87.61607353455582,41.84510423276182],[-87.6161002121301,41.845114443070734],[-87.61613940344323,41.84512805234193],[-87.61616875932155,41.845141627629054],[-87.61619627182665,41.84515917057375],[-87.61621749507974,41.84517804637306],[-87.61623779940655,41.84520023698387],[-87.61625954806446,41.845231190793086],[-87.61643788912791,41.845526049521126],[-87.6164579862528,41.84555037932017],[-87.61647763859752,41.845571879753464],[-87.61650393113082,41.84559687939187],[-87.61652626795413,41.845617875162006],[-87.61655066437635,41.84563194080776],[-87.61657183469313,41.84563904334188],[-87.61659503182254,41.84564215190312],[-87.61661825063868,41.845643284729015],[-87.61666117917208,41.84564437588204],[-87.61692091129596,41.845644514377646],[-87.61720985189288,41.84565509793269],[-87.61729852316135,41.84566818215143],[-87.61767140559559,41.84572320337666],[-87.61783987811785,41.84572625879267],[-87.61886420373011,41.84571019884057],[-87.62033059867882,41.84568719208082],[-87.62048133129089,41.845684964133085],[-87.62213772958516,41.84566047096398],[-87.62217920532379,41.84748694219029],[-87.6221757737376,41.847904216889276],[-87.62217448404341,41.848389722394735],[-87.6221899485176,41.84914410798235],[-87.62219406737,41.84930966542154],[-87.62219838064757,41.84948302104241],[-87.62220715611294,41.84977887854537],[-87.62222253936056,41.85029750135624],[-87.6222373059624,41.85097580829648],[-87.62224324828907,41.85113485250309],[-87.62225024436542,41.851322103753],[-87.62226163007938,41.85197761231674],[-87.62226190564363,41.85268843109454],[-87.62226925025934,41.852808371710765],[-87.6222741085159,41.8528877129627],[-87.6218700967013,41.85288949528968],[-87.62134256135032,41.85289567190341],[-87.62074862428824,41.852908518423185],[-87.62066449699735,41.852909759614924],[-87.61917497838229,41.85291286491388],[-87.61904066801075,41.85300185133916],[-87.61884334312224,41.853004044935474],[-87.61827263872978,41.85301507832187],[-87.6177374289799,41.85302215986205],[-87.61757711323993,41.85301108946373],[-87.61756713377412,41.851583221450504],[-87.6175645425643,41.85122181756532],[-87.61781665097813,41.85121991724714],[-87.61769729979832,41.850772416190516],[-87.61738118526293,41.84929129218745],[-87.61710213126136,41.84876642809994],[-87.6171021152383,41.84843883232497]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13398418.6304","perimeter":"0.0","tract_cent":"1161570.32507979","census_t_1":"17031311300","tract_numa":"64","tract_comm":"31","objectid":"548","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1886282.66804227","census_tra":"311300","tract_ce_3":"41.84363534","tract_crea":"","tract_ce_2":"-87.68256358","shape_len":"16984.7779956"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6873994313396,41.83480099872568],[-87.68739948177172,41.834800982818116],[-87.6874579050111,41.834913102952925],[-87.68748711462099,41.835885767063495],[-87.68750278532931,41.83642579005058],[-87.68751312145143,41.8368121034905],[-87.68748942474078,41.837018515855526],[-87.6874956865621,41.83770584965777],[-87.68749666963151,41.83781377703615],[-87.6874993731225,41.83811057285715],[-87.6875001033459,41.83819068978303],[-87.68750010861544,41.838191260620064],[-87.6875016399435,41.83835937255787],[-87.68750175092414,41.83837158379475],[-87.68750178022948,41.838374764289725],[-87.68750249934727,41.83845368657041],[-87.6875153396772,41.839863195082344],[-87.68751789954513,41.84014416957481],[-87.68751940887428,41.84030987351373],[-87.6875227894861,41.84068094380769],[-87.68752972630455,41.84144237749336],[-87.68753220345191,41.84171428274687],[-87.68753540480581,41.84206566568678],[-87.68754591682747,41.8432195655223],[-87.68755163128287,41.843846769516304],[-87.68755924157624,41.84468205414909],[-87.6875602695139,41.84479497867857],[-87.68747687649143,41.84479598069803],[-87.68714618169835,41.844799953863784],[-87.68636981662482,41.84480983649953],[-87.6863494535497,41.84481009556437],[-87.68614705247542,41.8448117184552],[-87.68610221743789,41.84481207805585],[-87.68607564100134,41.844812548219004],[-87.68560112630948,41.84482094378827],[-87.68550653577648,41.84482584394352],[-87.6854470542784,41.84483841799353],[-87.68545526986966,41.84501814715564],[-87.68546071670647,41.84530843555353],[-87.68547097499633,41.84585512613388],[-87.68548971405619,41.846584872492],[-87.68550018783384,41.846992623001036],[-87.68551298680697,41.84749099279212],[-87.6855293058029,41.8481263945922],[-87.68553632142513,41.84839957901467],[-87.68554612710346,41.84878137232274],[-87.68556010617276,41.84930445272362],[-87.68557258527584,41.849771403934874],[-87.68558823871143,41.85021444799754],[-87.68560353506393,41.85064735435947],[-87.68561522636895,41.85111869210649],[-87.68562482581457,41.851505714352015],[-87.685640263929,41.85203190621063],[-87.68503387118754,41.852033888397386],[-87.68436049875723,41.85204334026033],[-87.68435245829707,41.85204347485093],[-87.68366302454692,41.85205501190712],[-87.6831877638024,41.85206220795204],[-87.68196982650285,41.85208064019394],[-87.68113646050341,41.852093245008334],[-87.68074340808192,41.85209861835076],[-87.68034370853418,41.85210408098733],[-87.67986062466647,41.852112310449954],[-87.67911611852601,41.85212514133051],[-87.67906516401862,41.85212589965568],[-87.67868271498837,41.85213159061962],[-87.67829251647883,41.85213720043686],[-87.67828742960798,41.851844757151405],[-87.67828280472679,41.851680685808304],[-87.67827920983788,41.851553160150104],[-87.67827608011675,41.8514426035267],[-87.67826909732274,41.851229541921896],[-87.67826060140668,41.85097031048542],[-87.67825565776045,41.85077637206752],[-87.67825189371888,41.85062942347323],[-87.67824478246222,41.85032277223214],[-87.67823790015044,41.85002599091449],[-87.67823528082822,41.84993596451338],[-87.67823148713241,41.849805563068976],[-87.67822745780973,41.84967526977353],[-87.67822070974543,41.84942509249392],[-87.67821499487705,41.84921322987675],[-87.67820973261772,41.848987550834146],[-87.67820631424277,41.84884094884415],[-87.67819668680671,41.848522404345985],[-87.67819075603875,41.848326173969504],[-87.67818578774761,41.84809054423096],[-87.67818340948166,41.84797780300321],[-87.6781724163807,41.84760916597557],[-87.67815737656908,41.84710481445502],[-87.67815413189197,41.84695095291397],[-87.67815149004666,41.84682563485509],[-87.67817177411206,41.846704585643586],[-87.6781218563124,41.84639187216561],[-87.67811322293173,41.84626684949975],[-87.67810121290127,41.84604109314963],[-87.67809816148262,41.84594085528945],[-87.67809424975869,41.84581173821605],[-87.6780917647224,41.845729729874996],[-87.6780841954872,41.84547877879146],[-87.67807814235657,41.845287935693854],[-87.678071659471,41.84506720511889],[-87.67806580436455,41.84485696120008],[-87.67806301543139,41.84475730001363],[-87.67805738658488,41.844556141981634],[-87.67805270887075,41.84428443327211],[-87.6780501774724,41.84404336277051],[-87.67804418667578,41.84346154480037],[-87.67803875669264,41.84251451293477],[-87.67802685750712,41.840439119363054],[-87.6780247511122,41.8401069069549],[-87.67803779276402,41.839757869693685],[-87.67804457762001,41.83957627784538],[-87.6780667601597,41.83898258326327],[-87.67807892259822,41.838657050487534],[-87.6780883377117,41.83840505108454],[-87.67809094179962,41.838335364335485],[-87.67810427748151,41.83797842926704],[-87.67810726880873,41.83789836920085],[-87.67812441639482,41.83743939906074],[-87.67812698431722,41.83737065859024],[-87.67813361000898,41.837193316347296],[-87.67813361006498,41.83719331085908],[-87.67813363318794,41.83719331044213],[-87.67816732447127,41.83719259317575],[-87.67872931540681,41.83718053658953],[-87.67908245614909,41.83716498509036],[-87.67921770453115,41.83715198385169],[-87.67945249735656,41.837129413520984],[-87.6796614313427,41.83710203496019],[-87.67985338188488,41.837072080498366],[-87.68013230653283,41.83702855298474],[-87.68026586820429,41.83700212666935],[-87.68045208358355,41.83696528232078],[-87.68080120130968,41.83686963320032],[-87.68143775882696,41.83668069333272],[-87.68254732327574,41.83633713339571],[-87.68274844522963,41.83627518892881],[-87.68374052731976,41.83596962714996],[-87.68457795013396,41.83570744341449],[-87.6849949797753,41.83557309932494],[-87.68522097558244,41.83550029518283],[-87.68602946804945,41.83523983496435],[-87.6868462522395,41.834975249904886],[-87.6873994313396,41.83480099872568]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9671984.36146","perimeter":"0.0","tract_cent":"1184556.86770928","census_t_1":"17031690600","tract_numa":"9","tract_comm":"69","objectid":"549","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859470.90408896","census_tra":"690600","tract_ce_3":"41.76955292","tract_crea":"","tract_ce_2":"-87.59904936","shape_len":"12772.3956872"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59209856899427,41.773275462964236],[-87.59219083928326,41.77288256206769],[-87.59219907507683,41.77284385208774],[-87.59220684833436,41.77280548215948],[-87.59221423481365,41.772760935080534],[-87.59222017989319,41.77272221032093],[-87.59222475786663,41.77268279066899],[-87.59222613231981,41.77264300704044],[-87.59222888534056,41.77260288981696],[-87.59223255441182,41.77256277822795],[-87.59223759488854,41.7725230185215],[-87.59224355499055,41.772482921710356],[-87.59225088613013,41.772443176504645],[-87.59225912935456,41.77240378076688],[-87.59226874792719,41.77236439362543],[-87.592494769611,41.77131958994729],[-87.59258043316115,41.77096338437826],[-87.59266462323285,41.770615745409664],[-87.59268097524696,41.77054861567341],[-87.59270167192899,41.770462304172085],[-87.59274594806598,41.77027803567199],[-87.59273952875378,41.77019875285264],[-87.59275196217351,41.77015355217901],[-87.59274066243945,41.76990100444216],[-87.59239410515204,41.76989896201157],[-87.5923905835908,41.769729096413954],[-87.59235103807373,41.7678214043864],[-87.59234803242519,41.767742833445105],[-87.59234656166586,41.76770439314879],[-87.59228180402607,41.76601157084556],[-87.59248520509207,41.76601038752806],[-87.59252959151745,41.76601012927365],[-87.59275096136832,41.766009377490114],[-87.59292270296261,41.76600879394043],[-87.59328515630907,41.766005448549095],[-87.59329946094212,41.76600540676925],[-87.59343255637533,41.766005018642716],[-87.59365469478233,41.76600437050837],[-87.59376109610044,41.76600417100979],[-87.59384574839167,41.76600401227451],[-87.59394869667506,41.766003818642616],[-87.59404750570346,41.766003633135746],[-87.59433136137184,41.76600093455152],[-87.59450028961847,41.765999328056004],[-87.59468880016769,41.76599694543779],[-87.59493321853171,41.765993906185884],[-87.59515408832378,41.765989029841194],[-87.59531255468195,41.765985531073],[-87.59546767925937,41.765963338169925],[-87.59576857764138,41.765912868526954],[-87.59584207297571,41.76589996738398],[-87.59603800620016,41.76589730746937],[-87.59630352923216,41.76589370176619],[-87.59645482360462,41.76589222268904],[-87.59653914136533,41.76589139844808],[-87.59678355778134,41.76588851990347],[-87.59706254653517,41.76588504405449],[-87.59746691199132,41.765880333824484],[-87.59766249653472,41.76587799190902],[-87.59827087952034,41.76587070490385],[-87.59887266386359,41.76586349406496],[-87.59949439223331,41.76585604082766],[-87.59985032988895,41.765851772215775],[-87.60008509596078,41.765849740257245],[-87.60020434806783,41.76584870762155],[-87.6006903136099,41.76584354759189],[-87.60079677439028,41.76584241520684],[-87.60129789439148,41.76583586703773],[-87.60157457499766,41.7658322508114],[-87.60192112866578,41.76582803813409],[-87.60230793460936,41.76582333518912],[-87.60250633535149,41.76582158281462],[-87.60266191695627,41.765820208181225],[-87.6031117522002,41.7658171457097],[-87.60358321663385,41.76581393400514],[-87.60372525988316,41.765812036418126],[-87.60384219134066,41.76581047428051],[-87.60405504665961,41.7658075994039],[-87.60417309492775,41.76580604346974],[-87.60440770401274,41.76580163198143],[-87.60443704553917,41.76580087025911],[-87.60452917968169,41.76579847829269],[-87.60477089362962,41.765817300426804],[-87.60496338973742,41.76585139762895],[-87.60498675510387,41.765853247221074],[-87.60514499775003,41.765869426257254],[-87.60522889368583,41.76587020496313],[-87.60556812209886,41.76586865116301],[-87.60558716421771,41.76586856404107],[-87.6056088555515,41.766172783337325],[-87.60560037593402,41.766391175234595],[-87.60560339530069,41.76653269048119],[-87.60562397459668,41.766845972316176],[-87.6056322927257,41.76720626856464],[-87.60563878742062,41.76748938340693],[-87.60564091378637,41.76758206209307],[-87.60564164961947,41.76761412999183],[-87.60565094941232,41.7680205639952],[-87.6056578820957,41.768321794186484],[-87.60566192521178,41.76850137922673],[-87.60566984098689,41.76885302802233],[-87.60567270425597,41.76897593563294],[-87.60567844638422,41.76922361706464],[-87.60568473963771,41.76950310806356],[-87.60569204141301,41.76982739285287],[-87.60569715666331,41.77003969633734],[-87.60570143133513,41.77021612657853],[-87.6057090605502,41.77053363472292],[-87.60571766191663,41.77088838906072],[-87.6057214117778,41.77104736224975],[-87.605726622167,41.771321714748424],[-87.60573053877518,41.77151683131454],[-87.60573540318617,41.77173843629891],[-87.60574091790909,41.77198998562268],[-87.60574720988451,41.77227669396659],[-87.60575404348849,41.772512170342054],[-87.60575982322132,41.7727889687961],[-87.60576875390609,41.77314086168505],[-87.60539113322253,41.77314602574239],[-87.60517274027026,41.77314700183492],[-87.60515763570675,41.773147066914525],[-87.60489205931864,41.773148213773716],[-87.6045572906584,41.773150709298896],[-87.60423762709098,41.77315309114446],[-87.60408151113856,41.77315473480211],[-87.60393830103263,41.773156203869284],[-87.60380059126265,41.77315761630074],[-87.60360531825667,41.773159614672316],[-87.60333696619392,41.77316306526938],[-87.60310535293918,41.77316604293064],[-87.60282413787583,41.77316908509683],[-87.60272426425648,41.77317017451087],[-87.60254281251281,41.77317215331583],[-87.60223153264053,41.77317552419922],[-87.60212223934977,41.773176412911674],[-87.60171659833506,41.773179710605426],[-87.60141988034565,41.773182376177225],[-87.60113892808651,41.7731848944765],[-87.60090214351052,41.773187962071965],[-87.60066330676936,41.77319105560962],[-87.60038987188524,41.77319331814574],[-87.60028442794423,41.77319419618712],[-87.60021073549814,41.77319480967482],[-87.60000036123624,41.77319659550448],[-87.59968838597666,41.77319984528551],[-87.59952462150959,41.77320155053926],[-87.59912767802697,41.77320595064714],[-87.599076457671,41.77320653028651],[-87.59896338424502,41.77320780951474],[-87.59863454032258,41.7732114700197],[-87.59847458056475,41.77321261110377],[-87.59826538303948,41.77321410325272],[-87.59804693944236,41.77321624551824],[-87.59786273991111,41.77321805362178],[-87.59780495757144,41.77321862087279],[-87.5975860000763,41.77322078641451],[-87.59738295545274,41.773226001943556],[-87.59725880814818,41.77322433006743],[-87.59717440534867,41.77322533978891],[-87.59680061438824,41.77322920099665],[-87.5966471016821,41.77323077961333],[-87.59648830933409,41.773232412528856],[-87.59622172443997,41.77323512072022],[-87.59604086853815,41.77323625798912],[-87.59577462612978,41.773237932194206],[-87.5955487736136,41.773240378627015],[-87.59528358012804,41.77324325823405],[-87.5952792533655,41.77324330508254],[-87.5950191200847,41.77324611449938],[-87.59470666604543,41.77324948488742],[-87.59450028610868,41.77325138347202],[-87.59423084497222,41.773253861754576],[-87.59398123352751,41.77325659161301],[-87.59370386784606,41.77325955883432],[-87.59363849533649,41.77326025816791],[-87.5931703279405,41.773265338550054],[-87.59291434207803,41.77326767924115],[-87.59256999634331,41.77327082729785],[-87.59234948298689,41.773272998072976],[-87.59231228517174,41.77327336408874],[-87.59229230733418,41.77327356042639],[-87.59209856899427,41.773275462964236]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"222737514.203","perimeter":"0.0","tract_cent":"1192071.10820215","census_t_1":"17031510400","tract_numa":"181","tract_comm":"51","objectid":"550","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1827801.89929869","census_tra":"510400","tract_ce_3":"41.68247076","tract_crea":"","tract_ce_2":"-87.57253196","shape_len":"70217.8524122"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5734888690116,41.707968975939096],[-87.57174604527809,41.70603341722647],[-87.571581466766,41.7058597771964],[-87.57126619380497,41.70549989600675],[-87.5710045757926,41.70520966400016],[-87.57074522074583,41.70492184768605],[-87.57044843575305,41.70458644275086],[-87.57015384175953,41.7042596275914],[-87.56999072631967,41.704079134431986],[-87.56964960456847,41.70370020953306],[-87.56929313530456,41.70330334374498],[-87.56880654869329,41.702762220408125],[-87.56818849735828,41.70207511366794],[-87.56756729591642,41.70138455215066],[-87.56728357253091,41.70106980835429],[-87.56716611454259,41.70093901300345],[-87.56700664069415,41.70076162690235],[-87.56689324124926,41.70063600393793],[-87.5664014469311,41.70007425335534],[-87.56610114330877,41.69973058026363],[-87.56590231646874,41.699475745760346],[-87.5658299540832,41.69936377434655],[-87.56577556153857,41.69928039526944],[-87.56563535910458,41.69909970553976],[-87.56547599530677,41.698875321462836],[-87.56532397999192,41.698648928026195],[-87.56513445643901,41.69842056845177],[-87.56495095344033,41.698186417399455],[-87.56484647514003,41.69804267060174],[-87.56461498360544,41.69768744753518],[-87.56458430682092,41.69768827144789],[-87.56452359118579,41.69759798864989],[-87.56261975797713,41.69550778230622],[-87.56261283587422,41.695500353922036],[-87.5595119284234,41.69554080749612],[-87.55951189766219,41.69554080783786],[-87.55951228210137,41.69557914535329],[-87.55951347855074,41.69569856283001],[-87.55951426760618,41.695784887315114],[-87.55951441929412,41.69580149616733],[-87.55951893749652,41.69624931806224],[-87.55952590219079,41.69689625713135],[-87.55953321649736,41.69775226108486],[-87.55953447049899,41.697898157787996],[-87.55953700148324,41.698108554695224],[-87.5595405186921,41.69839854362182],[-87.55954629219087,41.698879113547875],[-87.55954885223947,41.699159847621615],[-87.55954993084607,41.69927816266005],[-87.55955976161302,41.69987542100221],[-87.5595663365957,41.700389943474754],[-87.55957189590127,41.700772319934536],[-87.55957541871004,41.700975561008725],[-87.55957737256972,41.70108828321139],[-87.55958861513757,41.701867115220125],[-87.5595927167174,41.70213830928875],[-87.55959604725531,41.702359030075776],[-87.5596026715589,41.70277721160496],[-87.55833751801306,41.70277207915165],[-87.55816062922172,41.70277136029239],[-87.5581043295153,41.70277113144315],[-87.5575243143083,41.70276877264835],[-87.55686145967657,41.702766976941135],[-87.55636415617892,41.70276722415906],[-87.55548944731966,41.70276765381794],[-87.55491170358064,41.70276713508186],[-87.55409703440158,41.70276639848176],[-87.55369778485377,41.702766080260986],[-87.55241232422168,41.702765046242305],[-87.55185109599506,41.702764594160676],[-87.5512261069161,41.70276481465913],[-87.54986834970045,41.702765281579026],[-87.54917514547698,41.70276480655743],[-87.54881297760829,41.702764810839746],[-87.54781339856945,41.70276527658118],[-87.54685755530902,41.70276639383784],[-87.54656505052286,41.70276673386002],[-87.54590291616292,41.70277083723572],[-87.54590480602263,41.70276727241478],[-87.54562666949197,41.70276691017883],[-87.54542663826318,41.702766649488076],[-87.54483844254432,41.70276588027796],[-87.54422752618547,41.70276507855353],[-87.54401955774061,41.702763942553084],[-87.54379573476767,41.702762719750936],[-87.54384640835605,41.70269910821639],[-87.54391431993106,41.702610727109175],[-87.54400375601553,41.70248407359594],[-87.54404203877927,41.70242293264679],[-87.54409944354748,41.70233276460773],[-87.54419187255385,41.7021858918563],[-87.54424873642502,41.702102580276815],[-87.54434740029146,41.70196981539851],[-87.54442186570161,41.70186947284514],[-87.54456518112026,41.70167869720754],[-87.5447289487686,41.701462333727086],[-87.54488312006565,41.701244532001716],[-87.54497657421322,41.70108840380932],[-87.54504891109598,41.70093727628388],[-87.54512457605574,41.700738488950655],[-87.54515757269915,41.70062276768631],[-87.54518650749068,41.70046482460807],[-87.54520487755664,41.70030989642482],[-87.5452113434176,41.70015522935947],[-87.5452108547939,41.69997032760364],[-87.5452104415575,41.699779251360255],[-87.5452094289244,41.69948731716577],[-87.54520834741243,41.69927599694769],[-87.54520734011734,41.699021111115265],[-87.54520628070588,41.69884546722243],[-87.54520467867812,41.69863928929031],[-87.54520337401473,41.69840875697889],[-87.54520024571153,41.69799022659546],[-87.54519680206722,41.69744751285613],[-87.54519527542628,41.697235160115824],[-87.54519266369654,41.696699313369024],[-87.5451918235841,41.69654322421476],[-87.54519079793025,41.69625231889053],[-87.54518979056732,41.695997432925665],[-87.54518767587467,41.69564580166616],[-87.5451867436139,41.69549725901696],[-87.54518614920815,41.69543344940901],[-87.54518397743288,41.69512401170708],[-87.5451768725662,41.694056421085996],[-87.54517980029713,41.693704138485344],[-87.54517230331204,41.69323103406967],[-87.54517138378516,41.69270651862825],[-87.54516904517001,41.691923340725744],[-87.54516526221867,41.69125850214276],[-87.54516159400038,41.69065918451014],[-87.54515914929739,41.69022213378194],[-87.54515817247665,41.68988972053888],[-87.54515778237874,41.68977171182069],[-87.54515480270683,41.689303440639506],[-87.54515203310783,41.68881801881747],[-87.54514751707673,41.68810068931762],[-87.54514300814118,41.687195373326105],[-87.54514000070353,41.68676689450418],[-87.54513143300952,41.685519195486066],[-87.54510676883618,41.68480498408799],[-87.54507849423688,41.682770386657225],[-87.54507870575058,41.681065815956934],[-87.54507740138274,41.680985192295914],[-87.54502703551294,41.6784990359252],[-87.5449320596653,41.67381051042625],[-87.54491911986966,41.67318368432858],[-87.54494929176867,41.67299830568821],[-87.54496688507847,41.67283136500883],[-87.54499144626233,41.67269328735635],[-87.54502424713719,41.67255492371911],[-87.54505707548206,41.67237676712888],[-87.54510507654601,41.67219253983103],[-87.54519931378283,41.67204361985284],[-87.54527134864225,41.6718019262478],[-87.5454136910059,41.671497594902625],[-87.54550831388397,41.67127938282746],[-87.54557144447793,41.671129906240054],[-87.54571392533559,41.67081391228025],[-87.5457934500587,41.6705955961977],[-87.54584922439604,41.67041142206565],[-87.54592047740259,41.67023352843003],[-87.54605573821955,41.669871516073385],[-87.5461436010462,41.66960694670123],[-87.5462149947589,41.66941739039004],[-87.54628730268067,41.66915271408003],[-87.54632853730733,41.668922472185784],[-87.54633515529659,41.66882989614561],[-87.54634724995215,41.66866326051666],[-87.54638904379922,41.66838705504368],[-87.54645249092225,41.66813603931866],[-87.54613291487445,41.66650337152962],[-87.54590898815634,41.6653571056448],[-87.54577075569918,41.66464983416333],[-87.54543873775022,41.662952243810196],[-87.54506841163821,41.66105885425879],[-87.54504775271354,41.660952369390685],[-87.54471034026275,41.65922222809452],[-87.54486985704537,41.65923172320091],[-87.54510860221554,41.65937616281192],[-87.54586421329134,41.65983312967863],[-87.54713020732605,41.66056458700535],[-87.54779018307168,41.66095090653585],[-87.54800957103458,41.66107933124133],[-87.54834581119232,41.66126652813291],[-87.54954234895547,41.66193264827959],[-87.55041106908148,41.66241094009775],[-87.55076896350529,41.66262434861542],[-87.55126992906978,41.66292311834668],[-87.55190674346899,41.663375120165874],[-87.55197659461207,41.66342464985256],[-87.55202003929924,41.66346370926557],[-87.55234404434623,41.66375681136145],[-87.55319611978913,41.664871653974764],[-87.55347111889103,41.66528414169872],[-87.55364937515297,41.66556287289608],[-87.55387943785131,41.66590850454634],[-87.55411797046024,41.66627271770263],[-87.55428937306593,41.66651332316167],[-87.55438056541144,41.66665253033316],[-87.55573064854403,41.66870311714302],[-87.55582056955853,41.66883442428508],[-87.55584754753674,41.66887371359453],[-87.55659704817802,41.6699686262158],[-87.55664076824173,41.66994731002826],[-87.55674958622143,41.669953190990924],[-87.5568391031561,41.66985191231373],[-87.55684008423108,41.66977027491962],[-87.55692206305189,41.66972520415231],[-87.55705186676899,41.669659873833794],[-87.5572427279665,41.66961519489557],[-87.55739909370986,41.669585720200075],[-87.55772146550014,41.66933335891062],[-87.55769481220965,41.669266971628694],[-87.55774961707668,41.66923681100142],[-87.55781735258152,41.66927294446129],[-87.55785843397764,41.66924269090551],[-87.557845137598,41.66920692480594],[-87.55806408731482,41.66907084203483],[-87.55811932056646,41.6690050074592],[-87.55817461579518,41.66893402764145],[-87.55836464636926,41.66892021502295],[-87.55864306478493,41.668937186159766],[-87.5587375482448,41.668993738858454],[-87.55882565460408,41.66900976952812],[-87.55903821189455,41.66883419196186],[-87.55925012832473,41.66865943298005],[-87.55925947987524,41.66865172098109],[-87.55926074285709,41.66852560823648],[-87.55926564981819,41.6683115280555],[-87.55926925132655,41.66788255741417],[-87.55926745204006,41.66783199459014],[-87.55926813076387,41.667703015548085],[-87.55927050068824,41.66725274022776],[-87.55926983784649,41.66688658531567],[-87.55926927434186,41.66657544351257],[-87.55926903421044,41.66644275037829],[-87.55926753080162,41.665612429006316],[-87.55927106955866,41.664693789661264],[-87.5592714861436,41.6645855238824],[-87.55927288445709,41.66400436448801],[-87.55927540430073,41.66286204304156],[-87.55927567717893,41.662738391762986],[-87.55927745890195,41.66235024369422],[-87.55927929368931,41.66195057082344],[-87.55928053846215,41.66141513222601],[-87.55928145900744,41.661018785038564],[-87.55928156948268,41.660971240619766],[-87.55928432347227,41.659791796072184],[-87.55928617360094,41.65918933573834],[-87.55963596446001,41.659174573625094],[-87.560351992411,41.65916761815402],[-87.56061327062793,41.659165006321544],[-87.56085424569073,41.65916259718964],[-87.5610252993585,41.65916310096379],[-87.56177772478351,41.6591653148324],[-87.56208803773772,41.65916637937044],[-87.56280662455308,41.65916884161377],[-87.56331607941166,41.659170501123825],[-87.56412929997764,41.65917314557463],[-87.56563420740724,41.65917653027487],[-87.56578700985953,41.659176872670216],[-87.56684244604288,41.6591800193762],[-87.56792807630416,41.659182104949764],[-87.56996682182978,41.659185993465634],[-87.57123645167277,41.65919513765705],[-87.57197856591407,41.659196947971104],[-87.57210553826089,41.65919725713293],[-87.57233855229634,41.65919782454849],[-87.57255742136549,41.659198631577254],[-87.57306431018327,41.65920049928469],[-87.57317395514569,41.65920090314013],[-87.5732933486069,41.659201342814356],[-87.57334040663865,41.659201458314804],[-87.57438930225467,41.659204029217385],[-87.57550441024128,41.65920540440575],[-87.57634755805331,41.65919932457865],[-87.57655538843991,41.65919252492861],[-87.57676651213993,41.65918561704792],[-87.57694669759013,41.659183153000896],[-87.57745235238905,41.659193916739746],[-87.57782722504463,41.659194446179974],[-87.57820714922381,41.65919498124011],[-87.57868910175694,41.65919430181593],[-87.57899352837677,41.65919284507999],[-87.57938550625867,41.659192123798306],[-87.5797872665595,41.65919355101685],[-87.5803851849684,41.65919737623625],[-87.58049148565105,41.65919805609826],[-87.58066233679872,41.659199010400826],[-87.58158858714187,41.65922159326252],[-87.58181753573496,41.65923905981888],[-87.58210793290799,41.659265483605694],[-87.58243450749214,41.65930576895962],[-87.58271014998736,41.65935117048844],[-87.5830001692192,41.65941029060481],[-87.58335147490656,41.6594928813364],[-87.58344483298804,41.659519627609406],[-87.5836486768756,41.659578026838766],[-87.58397471629942,41.659664630221606],[-87.58435099651612,41.65980606137915],[-87.58482901784382,41.65994815392441],[-87.58516218132807,41.66005298078627],[-87.58536421675113,41.66012471286473],[-87.58604990926504,41.66026948151828],[-87.58663413056173,41.660341405726314],[-87.58696093347999,41.66036260350088],[-87.58744767827108,41.660379388697315],[-87.58770343192572,41.66037979453294],[-87.587703435585,41.66037979455668],[-87.58800967066223,41.66036263434476],[-87.58811390108978,41.66038329862769],[-87.5885322634209,41.660419088015566],[-87.58864994113168,41.660393766086905],[-87.58899968212809,41.66039163650524],[-87.58911021783089,41.660516056053716],[-87.58933583143082,41.66077000483172],[-87.58951354778408,41.66097003958068],[-87.58969300155685,41.66117202856068],[-87.59011960264537,41.66165219387629],[-87.59053367549404,41.66215689199786],[-87.59074108968339,41.662409697802524],[-87.59080867931196,41.66248774504434],[-87.59106665635225,41.662785635205694],[-87.59163494965132,41.66343502031255],[-87.59168454390186,41.663490612500546],[-87.59171997275953,41.66353032561222],[-87.59212430857423,41.6637086135065],[-87.59233859362611,41.66395980393035],[-87.59270734426084,41.66439488115845],[-87.59320343897537,41.66496612824108],[-87.59383966219787,41.66570189247571],[-87.59395492430885,41.665836574086704],[-87.59455725731716,41.66654037546664],[-87.5953457379617,41.66745486077358],[-87.59568902445925,41.66784973687679],[-87.5958829188228,41.66807276667878],[-87.595935031574,41.668141105802874],[-87.59606527239436,41.668290300396876],[-87.59615869993128,41.668397325203564],[-87.59626000302865,41.66851340187667],[-87.59635198445979,41.66861888041854],[-87.59645057721204,41.66873197565321],[-87.59657279804354,41.66887217169141],[-87.59663262257196,41.66894110879554],[-87.59673182652503,41.669058433986],[-87.5967962183799,41.66913453555988],[-87.59685916455088,41.66920900867242],[-87.59695952513863,41.6693276858006],[-87.59703337897871,41.66941501732613],[-87.5971118906637,41.66950792220711],[-87.59720069396288,41.66961310526414],[-87.59723672858196,41.669655782490885],[-87.59732655008987,41.66976216054356],[-87.59742427451101,41.669877883657726],[-87.59757332679386,41.67005359778215],[-87.59764484826187,41.670136907239346],[-87.59775278222017,41.67026260276142],[-87.59783340775148,41.670356481187305],[-87.59795174541537,41.670494290747804],[-87.59804530241256,41.67060329074381],[-87.59811689870918,41.67068662782356],[-87.5982222690083,41.670809370052865],[-87.5982950937851,41.67089408704663],[-87.59836018873239,41.670969835458905],[-87.59843825150381,41.67106070573346],[-87.59851635041483,41.67115160362839],[-87.59854640615256,41.67118654351451],[-87.59861662658994,41.67125573374205],[-87.5987439312961,41.67140356174579],[-87.59882615008425,41.671499206022176],[-87.59892202397647,41.67161071744621],[-87.59899839183275,41.67169949080459],[-87.59907085834725,41.67178376591391],[-87.59912562351995,41.67184745512761],[-87.59919606655788,41.67192938454167],[-87.59927239893005,41.67201815748775],[-87.59933305262368,41.672088717614564],[-87.5993721763131,41.67213416673292],[-87.59942885698209,41.67220009094641],[-87.59947994136323,41.67225917343768],[-87.59951137209063,41.67229557195477],[-87.59957430685094,41.67236836943068],[-87.59960963972951,41.67240929354884],[-87.59967445360111,41.672484243549505],[-87.59972539270707,41.67254329755878],[-87.59979591108004,41.672625172192035],[-87.59985075155457,41.67268883381618],[-87.5998777735298,41.67272020281156],[-87.59993124134716,41.672782271055425],[-87.59996650147575,41.67282319459749],[-87.60001751306777,41.672882358710815],[-87.60006845222983,41.67294149489558],[-87.60011945616745,41.67300131755521],[-87.60019478847607,41.67309131844885],[-87.60022690655116,41.673131727885284],[-87.60027742020515,41.67319607550455],[-87.60030973961906,41.67323810508677],[-87.60038786824093,41.67333981484226],[-87.60045655608246,41.673431584449645],[-87.60051741087322,41.67351688231822],[-87.60057336526202,41.673598608713675],[-87.60062132703435,41.67366859324467],[-87.60067142613185,41.673743778179556],[-87.60074079636185,41.67384968530425],[-87.60077483373288,41.673904926244035],[-87.60085314152641,41.67403287241477],[-87.60090843099273,41.67412812399058],[-87.60095359260183,41.67420950697939],[-87.60102587562426,41.67434279545801],[-87.60106586169957,41.67442208524811],[-87.60113448385582,41.67456185248917],[-87.60120864978255,41.67472275895982],[-87.60127869247265,41.674885779698954],[-87.6013062299657,41.67496828523221],[-87.6014457499564,41.675338342107665],[-87.60154371538675,41.6756668319307],[-87.60161233810335,41.67596187347173],[-87.60165675723484,41.676196193349966],[-87.6016767475977,41.676325615943774],[-87.60168574597228,41.67638387101424],[-87.60170908780992,41.676572390905804],[-87.60172308202937,41.6767265470702],[-87.60173272897052,41.67689609872886],[-87.60175136799016,41.67766150311264],[-87.6017755980542,41.678373325789],[-87.60179641409404,41.67898483433943],[-87.60181993616519,41.679794343824604],[-87.60183622372206,41.68035324193255],[-87.60184595526036,41.68068718655216],[-87.60185987107377,41.681348155987116],[-87.60186192751233,41.68144582238669],[-87.60186777874215,41.681653808296865],[-87.60187165447606,41.68179156810048],[-87.60187281219545,41.68183273335236],[-87.60187546804195,41.6819278686168],[-87.60187658521666,41.68228173021032],[-87.60187890745733,41.68262615894244],[-87.60188185241886,41.68267352952564],[-87.60189606342291,41.68290212887323],[-87.60191034351286,41.68317341429468],[-87.60191980424574,41.683437095492415],[-87.6019319633683,41.683808398899316],[-87.6019387617645,41.68409654148071],[-87.60194049635653,41.68417004577072],[-87.60193580305662,41.684741589184064],[-87.60190019334092,41.685061945395354],[-87.60176124909255,41.68568984228533],[-87.60171982612636,41.685836757430145],[-87.60164536824882,41.686036454750955],[-87.60162322719655,41.686087334218975],[-87.60160097444563,41.68613847231046],[-87.60157974373044,41.686187259797535],[-87.60157012805108,41.68620935576318],[-87.60156508169189,41.68622095301444],[-87.60154276497863,41.68627223503794],[-87.60151965166227,41.68632535178445],[-87.60144982893694,41.68648580186544],[-87.6014327590629,41.686523484808],[-87.60136774399317,41.68666700877055],[-87.60131033640938,41.686770543538174],[-87.60103192327341,41.687311928013045],[-87.60094266680012,41.68748332976887],[-87.60081801902167,41.687722690441625],[-87.60069388790565,41.68796105834357],[-87.60059503775162,41.688137818152704],[-87.6004726142014,41.68836062177918],[-87.600342432598,41.6886017043492],[-87.60029586616872,41.6886774582421],[-87.60029274784436,41.688683497835164],[-87.60008315197567,41.68908938324269],[-87.59999048570836,41.68926882885426],[-87.5999025616663,41.689432254704926],[-87.59973682619365,41.6897403051148],[-87.59952961726802,41.6901058040027],[-87.59945011435126,41.690246038497015],[-87.59939448256561,41.69034440255199],[-87.59917489277463,41.69073266164834],[-87.59908541939048,41.69089452418613],[-87.59885609686127,41.69130937639705],[-87.59870882011728,41.69160065128013],[-87.59845192669208,41.69207789434678],[-87.59834845966284,41.69227019662324],[-87.59830571541791,41.69233951971012],[-87.5982904058567,41.692368160956285],[-87.59823889163648,41.69246453613381],[-87.5980407086699,41.69283530052859],[-87.5979200817271,41.693060968744106],[-87.59752388411266,41.69379297972237],[-87.59724716531645,41.69430873309066],[-87.59700628142535,41.69478050532143],[-87.59697013587635,41.694851295834326],[-87.59679781770585,41.695176025621386],[-87.59675096157886,41.69525943581392],[-87.59660417404126,41.69552073433978],[-87.59640624313239,41.69587285234359],[-87.59616655624002,41.696317683243834],[-87.59570737985085,41.696957125684435],[-87.59482326148898,41.69828718640288],[-87.5947766864819,41.69836000307262],[-87.59475034726728,41.69839690634783],[-87.59436552781358,41.69897584429199],[-87.59415872516526,41.69920130400629],[-87.59368755777203,41.69979031154415],[-87.5933254434195,41.70020218133069],[-87.5931326540944,41.700419297161794],[-87.59307047261399,41.70048932451637],[-87.59287837273592,41.70070310477929],[-87.59271744916836,41.70088053123128],[-87.5925698147735,41.70103581408323],[-87.59241143269747,41.70119901343072],[-87.59222487133678,41.701389336857815],[-87.59205441784167,41.70156082804021],[-87.59186438275061,41.70174736873453],[-87.59163422865485,41.70196370464501],[-87.59139309120427,41.70219036192809],[-87.59122606684357,41.70234694486697],[-87.59099055568639,41.70256732978999],[-87.59079729441385,41.702747261458875],[-87.5903898840187,41.7031271869821],[-87.59002781064157,41.70346525120384],[-87.58968441025941,41.70378557558997],[-87.58958411183946,41.70387913362233],[-87.58938026264143,41.70405998694881],[-87.58917679117017,41.704240503702636],[-87.58901338004169,41.704384259201596],[-87.58864674748868,41.704706788410626],[-87.58835955084703,41.70496062344409],[-87.58814261398759,41.70511218048649],[-87.58811662580798,41.70518410778265],[-87.58784501730462,41.70593582560849],[-87.58766815920849,41.70642515216348],[-87.5875057661256,41.70667327010773],[-87.58741296317652,41.706907965902204],[-87.5873410426282,41.70716727652416],[-87.58731534136456,41.70731233944662],[-87.58729619288046,41.70755898424468],[-87.58729868350478,41.70768902224376],[-87.58729978537455,41.70774655558627],[-87.58660431048537,41.707762643583855],[-87.58604664097946,41.70777019027196],[-87.58588930986421,41.70777231889353],[-87.58574571692942,41.707774261420376],[-87.58446817659967,41.707796240711865],[-87.58417486940694,41.70780132722561],[-87.58213309144332,41.707857026600536],[-87.5818125694689,41.70786038878796],[-87.58070751926292,41.70787197387246],[-87.58021293194246,41.707877155845615],[-87.57999549546416,41.707878017179155],[-87.57925692619865,41.70788093997079],[-87.57629739742362,41.707926395590434],[-87.57599182429105,41.70793103132828],[-87.57593218317965,41.70793193603665],[-87.57575318838273,41.70791986777203],[-87.57512985620147,41.70794410334419],[-87.5749367884463,41.70794703032434],[-87.57425259445061,41.70795736782365],[-87.57405892089734,41.707960293443335],[-87.57387914005514,41.707963008677645],[-87.57387897192812,41.70796301113412],[-87.57358072802225,41.70796756293258],[-87.5734888690116,41.707968975939096]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2805605.3973","perimeter":"0.0","tract_cent":"1195453.0356882","census_t_1":"17031460600","tract_numa":"11","tract_comm":"46","objectid":"551","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1847205.28898118","census_tra":"460600","tract_ce_3":"41.73563292","tract_crea":"","tract_ce_2":"-87.55951404","shape_len":"7518.73466027"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.55981424852564,41.73351878691558],[-87.5601864031533,41.73322975703061],[-87.56074551427875,41.73363286936929],[-87.56090900951776,41.73375074570402],[-87.5610562666583,41.733856961603884],[-87.56119396752761,41.7339562847116],[-87.56161546898362,41.734260307954486],[-87.56275472278197,41.73507982386306],[-87.56326660683999,41.73544803462726],[-87.56359855731056,41.73568676457511],[-87.56423343940577,41.736143335546075],[-87.56469695418365,41.7364764904991],[-87.56500739655816,41.73669962065581],[-87.5657006250207,41.73719771954062],[-87.56540931539233,41.737201890036964],[-87.5651875728917,41.73720506409896],[-87.5648023947506,41.737210315180974],[-87.56432457737478,41.73721682758535],[-87.56425590370823,41.737217771931526],[-87.56419598899946,41.737218595940135],[-87.56361884847733,41.73722653056678],[-87.56328429032459,41.73723112879621],[-87.56304092973734,41.73723442332168],[-87.56297375903343,41.737235332519454],[-87.56283549658264,41.73723720381403],[-87.56239778888683,41.73724295820282],[-87.56175538322984,41.737251401113824],[-87.56167168551808,41.73725250071527],[-87.56115441028373,41.73725874014551],[-87.56060202908169,41.73726540033874],[-87.56053661764365,41.73726631719857],[-87.56042712096499,41.737267851882216],[-87.55993075759442,41.73727480771306],[-87.5597361700862,41.73727753381782],[-87.55932024382584,41.73728336000816],[-87.55906464153922,41.737286939614386],[-87.55871944562986,41.7372913573633],[-87.55835501151901,41.737296014251484],[-87.5581004063562,41.73729926719995],[-87.55774502442509,41.737303424487074],[-87.5576534860842,41.73730449787416],[-87.55750892387938,41.73730619234398],[-87.55697211883431,41.73731248442486],[-87.55688713947963,41.737313480220664],[-87.55670673891112,41.73731559397096],[-87.55628772254181,41.737320433276764],[-87.55592738488224,41.73732459396293],[-87.55558507867732,41.737329377780945],[-87.55556397252066,41.73652485902055],[-87.55556093383997,41.73641501134806],[-87.5555572888393,41.73628320512505],[-87.555550398754,41.736028294825815],[-87.55554792254719,41.73586606215526],[-87.55554613867484,41.735743681486696],[-87.55554056233517,41.735506124618524],[-87.55553069920373,41.73508595921782],[-87.55552420685412,41.73483453655194],[-87.55551613390924,41.734541033233675],[-87.55551111329507,41.73435894196164],[-87.55550237631465,41.7340232815746],[-87.5554940690258,41.733679767126375],[-87.55611406611646,41.73367153909934],[-87.55645703546143,41.73366787590761],[-87.55680040739377,41.73366421441269],[-87.55689137412887,41.733662991835864],[-87.55728680916101,41.733657675971436],[-87.55773019326202,41.73365155862411],[-87.5582577375891,41.73364506463201],[-87.55853083620342,41.733641701923645],[-87.55878821572884,41.733638387659475],[-87.5589604017722,41.73363609039435],[-87.55925973682471,41.73363234430184],[-87.55957648898884,41.733630416188745],[-87.55963649819074,41.73362590193084],[-87.55973056388936,41.73358334593004],[-87.55981424852564,41.73351878691558]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3524765.78235","perimeter":"0.0","tract_cent":"1181777.30705716","census_t_1":"17031440700","tract_numa":"16","tract_comm":"44","objectid":"552","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1846765.22058452","census_tra":"440700","tract_ce_3":"41.73475182","tract_crea":"","tract_ce_2":"-87.60962962","shape_len":"7958.48189479"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61396341248353,41.73285664418507],[-87.61443127090362,41.73284926634143],[-87.61443754768891,41.73309820202754],[-87.61444338623981,41.73330784987197],[-87.6144479862577,41.73347303047343],[-87.61445541656464,41.733763028790186],[-87.61446414504766,41.73410371934167],[-87.61446898306282,41.73422334832035],[-87.61447563270123,41.734387772487615],[-87.61448150183611,41.73467670470526],[-87.6144893673325,41.735063919585116],[-87.61449080977259,41.735134923917826],[-87.61449727562483,41.735453249197555],[-87.61450115392806,41.73559968185774],[-87.6145122036344,41.73601691409838],[-87.61451316374539,41.736048342727635],[-87.6145134363049,41.7360572499928],[-87.61451966584498,41.73626117691549],[-87.61452795921615,41.736503028008],[-87.61394897057171,41.736511536269525],[-87.61326353176753,41.736521156437746],[-87.61290587576057,41.73652651789687],[-87.61243348393278,41.73653359758358],[-87.6120949859059,41.73653932205592],[-87.6116117366547,41.736547484193046],[-87.61128361857294,41.73655226897642],[-87.61068707473898,41.7365609649764],[-87.6101890918584,41.73656952298897],[-87.60967253316612,41.73658004752734],[-87.60931549224551,41.736587320777495],[-87.60905829527113,41.73658977953219],[-87.60882759184818,41.73659198433941],[-87.60852387358052,41.73659685553765],[-87.60810054332065,41.73660364398921],[-87.60725123954585,41.73661450898851],[-87.60705068508673,41.73661707363094],[-87.60696079540942,41.73661833641462],[-87.6064565263689,41.73662541887623],[-87.6058513515416,41.73663591419249],[-87.60549546155701,41.73664058454487],[-87.60482283313425,41.73664940836098],[-87.6048101756848,41.736188965600626],[-87.6048055210733,41.73599782212144],[-87.60479950217099,41.73573758309543],[-87.60477840280974,41.734825444711426],[-87.60476612115774,41.734294446054],[-87.60476488621705,41.73424104190837],[-87.60475682869124,41.73391320739482],[-87.6047344026235,41.73300063109625],[-87.60543769432994,41.73299219902244],[-87.60588056810235,41.73298512419197],[-87.60640755188729,41.732975533614734],[-87.60700194231764,41.73296639856741],[-87.60715942333087,41.73296397781674],[-87.60777005829007,41.73295458908776],[-87.60814148551704,41.73294787765892],[-87.60822649871479,41.73294649315547],[-87.60887386941371,41.732937019446744],[-87.60958063017146,41.73292611015999],[-87.61028782241135,41.73291518963511],[-87.61072937962754,41.73290781339584],[-87.61147942889384,41.732896308975384],[-87.6120047241914,41.732887460400896],[-87.61244781419178,41.73287999496991],[-87.61261761774371,41.7328774651167],[-87.61396341248353,41.73285664418507]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2659918.43095","perimeter":"0.0","tract_cent":"1181674.68887079","census_t_1":"17031381000","tract_numa":"9","tract_comm":"38","objectid":"556","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875661.80227511","census_tra":"381000","tract_ce_3":"41.81404921","tract_crea":"","tract_ce_2":"-87.60911407","shape_len":"6655.62656498"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61099491049536,41.81128779825373],[-87.61149869290207,41.81127964526443],[-87.61150105964906,41.811449599039854],[-87.61150672872871,41.81166017537063],[-87.61150861536156,41.811730248541366],[-87.61151115543291,41.81182458519909],[-87.61151500721465,41.81197159271371],[-87.61151917898721,41.81213580855757],[-87.6115220735191,41.81224820503157],[-87.6115238207204,41.812317042395705],[-87.61152939719449,41.812539144061454],[-87.61153192650211,41.81265894777107],[-87.61153310894562,41.81271496554968],[-87.61153654970937,41.8128789849539],[-87.611544214411,41.813096397407016],[-87.61155032160485,41.8132696364754],[-87.61155329997048,41.81341603472419],[-87.611556027383,41.81355211292541],[-87.61155706525155,41.813603464796934],[-87.61156112322,41.81378436533287],[-87.61156764614776,41.8140067747582],[-87.61157385654943,41.81421853443247],[-87.6115786265753,41.81438179374925],[-87.6115832585974,41.81455734653567],[-87.6115874278645,41.8147153056218],[-87.61159170082692,41.814913759291215],[-87.61159601136144,41.81511396513331],[-87.61160017815331,41.81527211628748],[-87.61160503678286,41.815483071581944],[-87.61161204273367,41.81576412907009],[-87.61162089499308,41.81596896226926],[-87.61162647766972,41.816118669937936],[-87.61163093500835,41.816329403137786],[-87.61164169627467,41.81672866623726],[-87.6112872963781,41.81673578328615],[-87.61105092838578,41.816739840672334],[-87.61088658726857,41.816742566827266],[-87.61065161130425,41.81674679680293],[-87.6104136830921,41.81675127336316],[-87.61010401348801,41.816757099090175],[-87.60993244507429,41.816759888145384],[-87.6096747995072,41.81676397335254],[-87.60942393391338,41.81676864956479],[-87.60918784198724,41.81677335305303],[-87.60884840597105,41.81678011453369],[-87.60851378365784,41.81678524839506],[-87.60822341080421,41.81678975501107],[-87.60796955468064,41.81679304800949],[-87.60790325358509,41.81679390841405],[-87.60743368273481,41.816801040559646],[-87.60708378756135,41.81680725377295],[-87.60670812560372,41.81681377137391],[-87.60670480953515,41.81657908583584],[-87.60670022648416,41.81633871355249],[-87.60669581538598,41.81609935772734],[-87.60668982110386,41.81581180246565],[-87.60668357216164,41.8155663152661],[-87.60667660553902,41.81529991216346],[-87.6066796364494,41.81499416811356],[-87.6066823589318,41.814719535008585],[-87.60667153481018,41.81428164532415],[-87.60666414094077,41.813994602529604],[-87.60665643548607,41.81366052091473],[-87.60665089439038,41.81342058153233],[-87.60664694986743,41.81317320016693],[-87.60664346744456,41.812954776539605],[-87.60663536449947,41.81265587393208],[-87.60662867423541,41.81240396220565],[-87.60662516618764,41.8122405459756],[-87.60662310148156,41.81213438441681],[-87.60661918378726,41.81193578400058],[-87.60661336840799,41.81173632084688],[-87.60660910203795,41.811578306019406],[-87.60660495088327,41.81135402319239],[-87.60694845522876,41.81135007067299],[-87.60714429697813,41.81134691809389],[-87.60724826956431,41.81134475753079],[-87.60743290142058,41.81134092107937],[-87.60765478550084,41.81133790310908],[-87.60785190641238,41.81133522530303],[-87.60823609457644,41.81132999401976],[-87.60844165170812,41.811327196936794],[-87.60849917793223,41.81132641366441],[-87.60875956299422,41.81132465352634],[-87.60883213172342,41.81132336919],[-87.60902592446793,41.811319939223786],[-87.60925112065564,41.81131595276174],[-87.60946310499081,41.81131254122735],[-87.6096436471924,41.81130963347589],[-87.6097215362081,41.81130837907724],[-87.60986663886843,41.811305994985574],[-87.61025758917185,41.81129957009412],[-87.6105012362913,41.81129556011033],[-87.61072906927498,41.811291971541],[-87.61088165428873,41.811289576154884],[-87.61099491049536,41.81128779825373]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7260195.14951","perimeter":"0.0","tract_cent":"1189384.84120347","census_t_1":"17031430200","tract_numa":"31","tract_comm":"43","objectid":"553","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859562.74488147","census_tra":"430200","tract_ce_3":"41.76969047","tract_crea":"","tract_ce_2":"-87.58134951","shape_len":"10792.3092882"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.57649279226493,41.77334883586758],[-87.57648078861205,41.77320671235673],[-87.57647817508273,41.77302990799482],[-87.5764776471563,41.77277545423848],[-87.57647041677573,41.77254853588115],[-87.57646288776834,41.77230336629249],[-87.57645507855307,41.77199469197097],[-87.5764517866859,41.77180696082736],[-87.57644754892009,41.7716287186908],[-87.57644141083603,41.77137055028879],[-87.57643839808712,41.77125886525672],[-87.57643184511198,41.77101488208755],[-87.57642723267453,41.770845940603536],[-87.57642263638455,41.77067562707544],[-87.57641772896329,41.77049436177145],[-87.57641104674036,41.770261382324996],[-87.57640445762281,41.770032959005704],[-87.57639814322239,41.76980109587144],[-87.57639224372491,41.76958448878172],[-87.57638564023753,41.769332382104736],[-87.57638133963762,41.76916808047787],[-87.57637472104949,41.76891726349999],[-87.57636781405864,41.768666005524125],[-87.57636185712008,41.768449276989244],[-87.57635415947136,41.76816864985818],[-87.57634847615489,41.76798106748969],[-87.57634644278885,41.767913967126],[-87.5763418261909,41.76776159006998],[-87.57633777728492,41.7676039861292],[-87.57633130873366,41.76735286819849],[-87.57632649801847,41.76716652648415],[-87.57632151656031,41.7669728838203],[-87.57631449032775,41.766703732183785],[-87.57630939509036,41.76651041806957],[-87.5763022592273,41.76624383187706],[-87.57630189042318,41.76623005419399],[-87.57630074220808,41.76618716348285],[-87.57629983584098,41.76615329073963],[-87.57629906175701,41.76612437945191],[-87.57629757286264,41.76606874885903],[-87.57670397313781,41.76606630135393],[-87.5770557621524,41.76606279972422],[-87.57739878986172,41.766059376584934],[-87.57750221247792,41.76605834706391],[-87.57753333168269,41.766058037233186],[-87.57768759730993,41.76605650143156],[-87.57814113935217,41.76605382897142],[-87.5784909997732,41.766051766116476],[-87.5787462686273,41.76605017455681],[-87.5788425170556,41.766049574490054],[-87.57913714049556,41.766047738297935],[-87.57913842353955,41.76604773025485],[-87.57937038519967,41.766045763113375],[-87.57973490778542,41.76604267054899],[-87.57998063849712,41.7660400367128],[-87.5801734379757,41.76603799940446],[-87.58044780374568,41.766035050079374],[-87.58059786627739,41.766032451519976],[-87.58080075962532,41.766028937548214],[-87.5809572277972,41.766027053377655],[-87.58122470323698,41.76602508398807],[-87.58151356287632,41.76602295643283],[-87.58178780707988,41.76602099105714],[-87.58204679822808,41.76601939181354],[-87.58223496248105,41.766018454127014],[-87.58244513831369,41.766016272757646],[-87.58278020639382,41.76601279469733],[-87.58285796472505,41.76601198731846],[-87.58306920670567,41.76600925056347],[-87.58331227142989,41.76600606254132],[-87.58367534710627,41.76600275812119],[-87.58398658759302,41.765999924865326],[-87.58422418450162,41.76599728790107],[-87.58422957284999,41.7659972280822],[-87.584349264584,41.76599587914624],[-87.58446405297404,41.76599458539303],[-87.58477287938989,41.765991803152886],[-87.58482407917843,41.76599134171448],[-87.58510742794567,41.76598878803519],[-87.58533254141508,41.76598465938039],[-87.58534816042675,41.765984373026576],[-87.5855995250447,41.76597975228227],[-87.58592002915806,41.76597636621707],[-87.58632473212407,41.76597208929188],[-87.58632645168267,41.76602981681288],[-87.58632731657742,41.766058840049894],[-87.58632826135471,41.76609055156745],[-87.58633005507932,41.766150765350716],[-87.58634003756346,41.76648584182346],[-87.58634618108253,41.76673358197396],[-87.58635124708111,41.766938366642655],[-87.58635631537163,41.7671555006385],[-87.58636413572117,41.76750517443371],[-87.5863687527236,41.7677107520004],[-87.58637071480013,41.76787830631146],[-87.58637136646605,41.767933960966246],[-87.58637488486366,41.768234402947776],[-87.58638843047848,41.76845710803882],[-87.58637672779847,41.76865061435188],[-87.5863503795922,41.76878709645951],[-87.58632243850296,41.768931825776434],[-87.5862607804817,41.769209915637376],[-87.58623359660122,41.76954026141764],[-87.58623770849424,41.76969778335363],[-87.58625874594792,41.77050364396918],[-87.58626386539562,41.77073856117807],[-87.58626812347579,41.77092251128385],[-87.58627122693292,41.771058209233],[-87.58627770242975,41.77132159353756],[-87.58628354371344,41.77151569764292],[-87.58628710643369,41.77163409224116],[-87.58629249218035,41.77181305504092],[-87.58629679230981,41.77198268018656],[-87.58630287427985,41.772245238602075],[-87.58629996201533,41.77242637030116],[-87.5862960248713,41.772671245202254],[-87.5862941708648,41.773121680720905],[-87.5862961534554,41.77333929086669],[-87.5860988763136,41.773344513796616],[-87.58594587222059,41.773348563904335],[-87.5857572637958,41.77334518440585],[-87.58546499481558,41.77333994595743],[-87.5853324829206,41.773341937328766],[-87.58508062655238,41.773345387908414],[-87.5847079192523,41.773350492916556],[-87.58435680437583,41.77335561399301],[-87.58410601530007,41.77335869891449],[-87.58390194395429,41.77336088166256],[-87.5838614638433,41.77336131464048],[-87.58358963256006,41.77336422164235],[-87.58333201823328,41.773367891518554],[-87.58290199992594,41.773374002376606],[-87.58264920123696,41.773376471637434],[-87.58236663095317,41.773379230928704],[-87.58203928473095,41.77338323791307],[-87.58172620230067,41.77338700796803],[-87.58141447879066,41.77339049791327],[-87.58103932608581,41.77339469656492],[-87.58058625019937,41.773400647764326],[-87.58037483697105,41.773403406503654],[-87.58018044254898,41.773405458901635],[-87.5798360165411,41.77340909461179],[-87.57958614453126,41.77341206590768],[-87.57920237222365,41.77341660020345],[-87.57905080011267,41.7734183129398],[-87.57894967790172,41.773419524145496],[-87.57873900159022,41.7734219551236],[-87.5784977429646,41.773425062955106],[-87.57820203600079,41.7734288826801],[-87.57790420290225,41.773432687663345],[-87.57772608156566,41.773435060532705],[-87.5774504655248,41.7734387319153],[-87.57717083570076,41.77344707306989],[-87.57687298121584,41.77345268646949],[-87.57648746720976,41.77345562582695],[-87.57649279226493,41.77334883586758]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8951212.3607","perimeter":"0.0","tract_cent":"1188993.00259328","census_t_1":"17031420100","tract_numa":"18","tract_comm":"42","objectid":"554","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864422.04977241","census_tra":"420100","tract_ce_3":"41.78303418","tract_crea":"","tract_ce_2":"-87.5826303","shape_len":"18514.4170687"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58456526402931,41.785836577958904],[-87.58444795853971,41.78583409786675],[-87.58404804080617,41.785934058055055],[-87.58349391269114,41.78593387285072],[-87.5830479477791,41.78593404840963],[-87.5824102861357,41.78598305225922],[-87.58174785113461,41.78603394898004],[-87.58080158921054,41.78597698529142],[-87.5803480836924,41.786034044863186],[-87.57904777637496,41.78603409043058],[-87.57751083546052,41.78609416805055],[-87.57745273879635,41.78610245471964],[-87.57714456890433,41.786146410930236],[-87.57714453567168,41.786146305879846],[-87.57709362844679,41.78598515575031],[-87.57704263798703,41.78583114018406],[-87.57699663882393,41.78568923230193],[-87.57692985212474,41.78550657212645],[-87.57688384342482,41.78538529153983],[-87.57681817871395,41.785212198117996],[-87.576748954799,41.78504983002573],[-87.57669620906121,41.78493383932564],[-87.57668461819749,41.784908349814465],[-87.57661817959163,41.784758623414405],[-87.5765611762521,41.784617191157515],[-87.5765488420359,41.78459212703838],[-87.5765430210415,41.78458029814859],[-87.57653183049004,41.78455756981241],[-87.57649313615399,41.784478979574324],[-87.5764569272518,41.78440106597222],[-87.57643019618958,41.7843435463844],[-87.57640831771386,41.78428751048931],[-87.57638250083902,41.784221386171396],[-87.57631658956932,41.78408922620297],[-87.57618608693885,41.783837538828095],[-87.57613030647806,41.78371697068708],[-87.57609960455802,41.78365158085456],[-87.57609954517964,41.78365145450051],[-87.57609953830088,41.78365144704559],[-87.57609953431317,41.78365144317731],[-87.57609953032545,41.783651439309025],[-87.57605523327405,41.78360763613296],[-87.57604590408341,41.78359841037111],[-87.57600334691763,41.78357591648926],[-87.57597229722329,41.7835595048725],[-87.57590596524196,41.78352558755291],[-87.57584413386816,41.783494394758435],[-87.57581557118606,41.783479984987885],[-87.57576600596755,41.78345901261674],[-87.57567985111264,41.78342255798136],[-87.57558542311484,41.78337972121466],[-87.57555584969921,41.78336630555334],[-87.57545238070585,41.78331018872252],[-87.57532555049664,41.78324513512311],[-87.57532554684977,41.78324513345247],[-87.57532554247933,41.78324513095378],[-87.57525994182602,41.78320981959831],[-87.57518928670167,41.78317178709622],[-87.57508594009657,41.78310524273393],[-87.57505904549146,41.783089073995356],[-87.57496870795387,41.783034764068304],[-87.57491712100611,41.7830061593003],[-87.57488055381131,41.78298588268477],[-87.57477125164837,41.78292698161921],[-87.57464371660934,41.78285972800637],[-87.57452131347529,41.78279250787464],[-87.57445287869233,41.78276136950679],[-87.57441482308982,41.78274405387347],[-87.57430409337404,41.782681850064066],[-87.57420719989828,41.78262797098173],[-87.57413348224526,41.78259438720861],[-87.57412040332363,41.782588428553396],[-87.57411437493734,41.782586307173176],[-87.57406636330754,41.78256941054202],[-87.57401188597838,41.78254103270022],[-87.57397671810843,41.78252271348775],[-87.57391028862733,41.78249161412175],[-87.57384471974622,41.782460918053715],[-87.5737081560607,41.782396641633994],[-87.57370397418048,41.78239467349809],[-87.57357344931556,41.78233233808919],[-87.57355451792189,41.78232396658312],[-87.57346256744248,41.78228330530383],[-87.57342377907032,41.78226583602901],[-87.57337722531693,41.78224486964756],[-87.57332899304618,41.78223082942143],[-87.57326664256226,41.782204343465864],[-87.5731006166085,41.782133816951],[-87.57284509841458,41.782037722893904],[-87.57264897351544,41.78196644295075],[-87.5726143680083,41.78195386589363],[-87.57253713691732,41.78192087062842],[-87.57247865979747,41.78189588659588],[-87.57240309320424,41.78186948415827],[-87.57230412421794,41.78183490537268],[-87.57223799961528,41.78181523426223],[-87.57213240362324,41.78178382086579],[-87.57201174547538,41.781750366522736],[-87.57198841748108,41.781743898422],[-87.57194708074326,41.7817322076901],[-87.57181155284535,41.781693877881985],[-87.57165294066402,41.78165056464714],[-87.57154910939104,41.78161823347428],[-87.57149805407471,41.78160233563714],[-87.57142397788138,41.781579806941586],[-87.57135045996507,41.78155744793047],[-87.5711917968132,41.78151852457748],[-87.57103667688126,41.781490052526614],[-87.57093163470886,41.78146750821302],[-87.57090209371513,41.78146116798175],[-87.57076606986558,41.78143007719017],[-87.57060592865847,41.781392240656785],[-87.57049691753504,41.78137120968776],[-87.57032633537531,41.78134812257525],[-87.5702187843783,41.781327649622774],[-87.57007967853576,41.781309161533386],[-87.57001153585372,41.78129531859176],[-87.56998750671389,41.781290437386],[-87.56997490137749,41.78128930393809],[-87.56986224811776,41.78127917618475],[-87.56981858762111,41.78128503376828],[-87.56979247475496,41.78128853700962],[-87.5697910593215,41.781288645606416],[-87.56976054700972,41.781290981544956],[-87.56968346015535,41.781296883095386],[-87.56949775003494,41.78134049448847],[-87.56934215141102,41.781377034301286],[-87.5693204228946,41.78138213687223],[-87.56913680212837,41.78142525662693],[-87.56913678153597,41.78142526170409],[-87.56913676094686,41.78142526650684],[-87.56901052001567,41.78145491129366],[-87.56839684263026,41.781608405811006],[-87.56764386869334,41.78462200999435],[-87.56753232043381,41.78459664446816],[-87.5683055624625,41.78153885715133],[-87.5691161596855,41.78135821994667],[-87.5691162894526,41.781358191171634],[-87.56945901758598,41.78127140396447],[-87.56949433655784,41.781262460266845],[-87.56979361089371,41.78119276927421],[-87.56982890613268,41.781184551453634],[-87.56989233663113,41.78116840629458],[-87.5699465872429,41.7811545975082],[-87.5700848441829,41.78112093842011],[-87.57022312701882,41.78108508308548],[-87.57026684266107,41.781074497858874],[-87.57037535439038,41.78104822302877],[-87.57044679521692,41.781032772649546],[-87.57053047436708,41.78101467539359],[-87.57054273887859,41.781011832517564],[-87.57064932233483,41.780987125881964],[-87.57068930043573,41.78097785900882],[-87.5707492771751,41.7809644937351],[-87.57077958167953,41.78095774087295],[-87.57087825288647,41.78093575268425],[-87.57104808344467,41.78089846052896],[-87.57117876272375,41.780865287719664],[-87.57128197047116,41.78083908826075],[-87.57147058053464,41.78077649863256],[-87.57165005691786,41.780716939299474],[-87.57168192681652,41.78070646434873],[-87.57204720959217,41.78083414545719],[-87.57284701956975,41.78063396464922],[-87.573547038314,41.780733960394905],[-87.57424718561415,41.781134108991886],[-87.57452847613462,41.78141528014639],[-87.57454704889172,41.78143384524322],[-87.57499725252568,41.781434008338316],[-87.57506753248518,41.781518620269736],[-87.57523316451646,41.78156966131328],[-87.57531142260972,41.78158387169646],[-87.57534796366373,41.7815850184141],[-87.57540053496587,41.781579272952904],[-87.5754396819375,41.78157396031979],[-87.575476667355,41.781559165628266],[-87.57566670168565,41.781453008308816],[-87.57576515860734,41.78133987897392],[-87.57590172875138,41.78120943796407],[-87.57610412503662,41.781062196577224],[-87.5763430379145,41.78092430648313],[-87.57642991302917,41.78087900047208],[-87.57669629989667,41.780740077123724],[-87.577116710997,41.78055107455795],[-87.57763128771406,41.78036076891049],[-87.57809381270074,41.7802036539487],[-87.57855091002918,41.7800530029459],[-87.57859588356949,41.78003817986697],[-87.57877038914432,41.779980382195724],[-87.57893975769917,41.77992428518884],[-87.57897469662652,41.77991271308577],[-87.57918467610652,41.77984330529162],[-87.57939618630854,41.77977457703812],[-87.57992517374146,41.77960748833177],[-87.58049271108688,41.779834815036715],[-87.58063766836254,41.779914086819865],[-87.58092334929397,41.780027156444746],[-87.5812397627104,41.78013960382079],[-87.58145796606384,41.7802039243093],[-87.58154872747934,41.78023067819903],[-87.5818227554979,41.780299514030084],[-87.58216842750988,41.78037444346799],[-87.58236107234092,41.78041104934396],[-87.58272702243923,41.780463826047644],[-87.58306208037868,41.78049644887492],[-87.58340461627186,41.780529229311725],[-87.58369681338279,41.78055567027572],[-87.58388888284911,41.78057115337298],[-87.58440219175719,41.78061253035703],[-87.58457603758733,41.78062654331266],[-87.5847776806681,41.780642796444866],[-87.58516557672296,41.780653062161385],[-87.58549522904002,41.78065055753164],[-87.5855818235611,41.78064989944076],[-87.5858936957947,41.78063977176426],[-87.58645804553066,41.78061940793767],[-87.58687252126867,41.780604450271035],[-87.58719880428612,41.78060042267389],[-87.58745548733287,41.780597369317974],[-87.58775324286755,41.78059333220672],[-87.58782628903047,41.78059234162498],[-87.58800161045065,41.780589963778944],[-87.5881327802811,41.78058800263788],[-87.58829288219651,41.78058567875357],[-87.58865151486232,41.78058056700643],[-87.58897279735817,41.7805809202578],[-87.58953151340758,41.78058152030208],[-87.58972223542088,41.780581906163455],[-87.58972232085112,41.78058190589314],[-87.59005732803637,41.78058208012411],[-87.59019888503339,41.78058053509592],[-87.59034444734627,41.78057894554361],[-87.5903446526905,41.780578943304086],[-87.59044010791125,41.78057794614839],[-87.59058985867296,41.78057642316209],[-87.59059010251782,41.78057642062219],[-87.59071938886869,41.78057509090406],[-87.59087956027251,41.780573280612685],[-87.59122101701082,41.78056966896709],[-87.59152811355587,41.78056632347607],[-87.59152913418177,41.78063389935887],[-87.59151778654018,41.780826365276546],[-87.59150796599157,41.780867246627274],[-87.59148327294803,41.78093020550413],[-87.59145572410259,41.7810004462854],[-87.59143599227151,41.781056415655776],[-87.59139469923582,41.78117354601255],[-87.59137978231736,41.781239861418854],[-87.5913726907111,41.781279360793135],[-87.59137326626032,41.78133737873608],[-87.59137422521987,41.781433983828286],[-87.59137466408362,41.78147822429248],[-87.5913769647808,41.78171007677465],[-87.59138319298354,41.78193448960453],[-87.5913901704572,41.782177047547385],[-87.59139301987622,41.78233389067114],[-87.5913939743425,41.782386424947696],[-87.5913984247167,41.782631417472594],[-87.59140187341217,41.782825268684206],[-87.5914053841705,41.783064592836645],[-87.5914072785351,41.7832771223088],[-87.5910558123286,41.7832874487442],[-87.59061831065792,41.78328500528736],[-87.59050642014621,41.783287081021705],[-87.59043965797223,41.783292933728234],[-87.59040355951505,41.78329780465827],[-87.59037811590667,41.78330713534182],[-87.59033505495671,41.783324365394655],[-87.59029000368139,41.783352559701534],[-87.59029378642171,41.783700806594695],[-87.59029592314418,41.78388729462719],[-87.59029856950237,41.78410268327678],[-87.59029896684092,41.784133688040384],[-87.5903005178801,41.784254674409915],[-87.59030285457925,41.784411141235886],[-87.5903019987045,41.78444398479629],[-87.59030620473821,41.78446077930954],[-87.5903162484983,41.784476898614386],[-87.59033070559624,41.78448868277408],[-87.59035011806044,41.78449682163831],[-87.59036499508927,41.78498367886291],[-87.5903421388741,41.78610571248218],[-87.58999555919448,41.786109045719805],[-87.5896769687061,41.786111292337395],[-87.58944822872726,41.78611608647439],[-87.58922680742577,41.78612072667952],[-87.58915388609266,41.78612116213384],[-87.58908168494654,41.786121593700344],[-87.58908162701043,41.786121593873865],[-87.58908160940834,41.786121594034256],[-87.58885431676747,41.78612295119028],[-87.5887949142507,41.786122593658426],[-87.58843685367513,41.78612043715272],[-87.5881901247944,41.78612455587339],[-87.58806864430214,41.7861265834855],[-87.587966880887,41.786127624995046],[-87.58762710856706,41.78613200624794],[-87.58731786359874,41.78613153525802],[-87.58659538226526,41.78614251140338],[-87.58659970120588,41.78628312888663],[-87.58660134058596,41.786392963876516],[-87.58636098007877,41.786398373650215],[-87.58618706867841,41.78639507472118],[-87.5860550881059,41.78638688903806],[-87.5859532897168,41.786368773157534],[-87.58582367649552,41.78634306663428],[-87.58568762122229,41.78631004568647],[-87.58554518919259,41.78626463269275],[-87.58536253217655,41.78613314605575],[-87.58528242074273,41.786044285918614],[-87.58519202242199,41.7859224822067],[-87.58516460727529,41.78584940477037],[-87.58498805003427,41.78584554123305],[-87.58456526402931,41.785836577958904]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15396187.8629","perimeter":"0.0","tract_cent":"1185665.07382583","census_t_1":"17031360400","tract_numa":"25","tract_comm":"0","objectid":"558","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1878388.3293969","census_tra":"360400","tract_ce_3":"41.82143777","tract_crea":"","tract_ce_2":"-87.59439117","shape_len":"16366.02732"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59016245727705,41.8276116287278],[-87.58342701212543,41.81711185144467],[-87.5921557568727,41.816968909459],[-87.592152838785,41.81692934706862],[-87.59230805082478,41.8169321097515],[-87.59489183436396,41.81694066871414],[-87.5952614717183,41.816942765594085],[-87.59595945270172,41.816833143775455],[-87.59607134488985,41.81683283290194],[-87.59619240327173,41.8168329237766],[-87.59624880537449,41.816832942683064],[-87.59639985268744,41.81681710318156],[-87.59646347089281,41.81690772920532],[-87.59680432830845,41.81692681974168],[-87.59688282029946,41.816927983007396],[-87.59751000017603,41.81692104890075],[-87.598037838367,41.81691521097065],[-87.59819531199669,41.81691340986659],[-87.59853718255918,41.8169095149109],[-87.59888196738271,41.81690493997765],[-87.5991093674965,41.816901922227714],[-87.59941678054918,41.81689547286391],[-87.59959063949388,41.816891825006394],[-87.60003319187011,41.81688969136972],[-87.60030287787723,41.816888194508124],[-87.60063009746624,41.81688394186311],[-87.60095720988872,41.81687968979791],[-87.60119172213098,41.81687761723353],[-87.60140216094698,41.816876268962936],[-87.60158104914183,41.816875076073984],[-87.60185177781582,41.81687040462621],[-87.60185425447173,41.81711559520134],[-87.60185929333105,41.81726628775326],[-87.60186612949815,41.8174711636486],[-87.6018708777419,41.81763414867229],[-87.60187394828151,41.81778021830166],[-87.60187737215787,41.81793389180635],[-87.60188720346751,41.818002170935216],[-87.60189545937327,41.81805950246685],[-87.60193212112519,41.81817441897082],[-87.60199582178815,41.81836980496474],[-87.60207473161873,41.818605271758635],[-87.60215532585673,41.81884428932015],[-87.60222456274408,41.81905008374791],[-87.60229198179924,41.81925059756007],[-87.60233966271448,41.81939349326522],[-87.60240700608655,41.81959543353775],[-87.60246595895153,41.81977221031083],[-87.60251035096627,41.819866675817984],[-87.6025232346147,41.819894090987745],[-87.60263410275527,41.82006477279945],[-87.60281063329097,41.82033653905656],[-87.6028387051357,41.82038167063827],[-87.60301725675973,41.82066872950996],[-87.60328262473304,41.82109527895685],[-87.60331936058255,41.82115432733373],[-87.60362799702533,41.821649817754924],[-87.60381085401897,41.821943980161414],[-87.60422753434919,41.8226142835677],[-87.60442845231114,41.822936473465916],[-87.6046704574379,41.823296611233324],[-87.60476294267033,41.82334941857386],[-87.6050340127388,41.82377296509599],[-87.60498945181209,41.8237877913867],[-87.60346943742121,41.82429434218919],[-87.60283850669637,41.824507510245404],[-87.60254798158257,41.82460615729316],[-87.60224423687586,41.82473266433562],[-87.60193929956687,41.82486221075921],[-87.60180217664576,41.82492100723876],[-87.60161399468126,41.82499611541852],[-87.60151251888995,41.82503661674878],[-87.60092033331271,41.82519604380712],[-87.60075546326566,41.82519875781617],[-87.6004746241485,41.82527327175824],[-87.60037531369792,41.82529962136225],[-87.6002823145269,41.82532429599201],[-87.59999716235193,41.82539995303912],[-87.59985262342015,41.825438301698824],[-87.59962971602175,41.825497442650736],[-87.59865491969099,41.82577272309172],[-87.59759084342559,41.826075291414284],[-87.59757848698924,41.826050392572284],[-87.59756972599006,41.82601753094502],[-87.59754632804916,41.82592976953921],[-87.59699869199997,41.82606672681703],[-87.59589890759801,41.82626686364962],[-87.59016245727705,41.8276116287278]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15649569.3838","perimeter":"0.0","tract_cent":"1179222.56621681","census_t_1":"17031320400","tract_numa":"29","tract_comm":"32","objectid":"559","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898847.2298114","census_tra":"320400","tract_ce_3":"41.87772796","tract_crea":"","tract_ce_2":"-87.61739961","shape_len":"19162.0462079"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60924750450617,41.882254980697496],[-87.60567338049549,41.875066144838506],[-87.60540250966983,41.874466182792425],[-87.61619744800937,41.87446618468668],[-87.616205339363,41.87427502432129],[-87.61620547042914,41.8742719710697],[-87.61620553807037,41.87427038723958],[-87.61621077709044,41.87417843725917],[-87.61621960730842,41.87402346561508],[-87.61622195452888,41.87398212285451],[-87.6162237676679,41.873950192811854],[-87.61622390991973,41.87395017888121],[-87.61623882459563,41.87394872535569],[-87.61624504835605,41.873948118771416],[-87.61624519685552,41.87394810433089],[-87.61624207331842,41.87386293035704],[-87.61623855270258,41.87376732632017],[-87.61623180245701,41.873451448726996],[-87.6162289109109,41.87331625683641],[-87.61622882178922,41.873312076245554],[-87.61622882182604,41.873312072952686],[-87.61708233508153,41.87325906134578],[-87.61731255185184,41.87325635916285],[-87.61849164244217,41.87324251291136],[-87.61926159169195,41.87323306028248],[-87.61982509463466,41.873225722902966],[-87.62059279889965,41.873213338499134],[-87.62115742357403,41.873204217782984],[-87.62175917264062,41.87319469314591],[-87.62243199040225,41.873185965079486],[-87.62264854172516,41.87318287040285],[-87.62420015199118,41.873161610736474],[-87.62420460497431,41.8733241107567],[-87.6242162943418,41.87381345119928],[-87.6242304160293,41.874303719628784],[-87.62423341749806,41.87439621401352],[-87.62423477647899,41.87443809547078],[-87.62431187869365,41.874438264161824],[-87.62463042175064,41.87443896060763],[-87.62483903094231,41.874434155819635],[-87.62522546986618,41.874425452475826],[-87.62566413364736,41.87441561520871],[-87.62599636873772,41.87440857497881],[-87.62608479108633,41.87440670105404],[-87.62632733524715,41.874401560555214],[-87.62664368871447,41.87439518851831],[-87.62677892494338,41.87439324125424],[-87.62678051836888,41.87439321867553],[-87.6270774676633,41.874388942312336],[-87.62754130369167,41.87437320600437],[-87.62760697485348,41.87437097785371],[-87.62761115198867,41.87455239842161],[-87.62762153323985,41.875003644408885],[-87.62761836568897,41.87563811360807],[-87.62761996173246,41.87569569630142],[-87.62762710421435,41.875953357545974],[-87.62763151269792,41.87614339613944],[-87.62763517382601,41.876301240145196],[-87.62764146240931,41.876570708715256],[-87.62765212001403,41.876929512257576],[-87.62765756033761,41.87711672015919],[-87.6276589421346,41.87721140507417],[-87.62766529530491,41.87762187325431],[-87.627667209944,41.8777482300099],[-87.62766917526572,41.87790669472702],[-87.62767706250699,41.878175926062525],[-87.62768548602799,41.87846343734252],[-87.62769085261957,41.878656527849586],[-87.62769479126919,41.87880481858418],[-87.62769660044478,41.87887454638071],[-87.62770519596484,41.87922190266818],[-87.62771033106327,41.879461644134146],[-87.62771560337684,41.87970780741289],[-87.62771814367645,41.87979399225032],[-87.62772241248385,41.87999842999718],[-87.62772440645792,41.88009392131709],[-87.62772915839321,41.88032150339708],[-87.62773326015773,41.88051609540285],[-87.62773268859937,41.88065149281929],[-87.62772748537574,41.88074289900984],[-87.62772231033532,41.88083381140821],[-87.62772835402528,41.880955363596854],[-87.62774355441861,41.88126264747665],[-87.62775758075146,41.881563173014925],[-87.62776530325893,41.881852573617],[-87.62780610569516,41.882042039505784],[-87.62759392628614,41.88206244298473],[-87.6271385308017,41.8820696599396],[-87.62699022374008,41.88207200552671],[-87.62666128198927,41.88207720713465],[-87.62632702700247,41.88207490279339],[-87.62621475895172,41.88207990586017],[-87.62614296924508,41.88208310512747],[-87.62578062121301,41.8820899513997],[-87.62554850090022,41.88209332343115],[-87.62533705882363,41.882096354311734],[-87.62524593709192,41.882097660228474],[-87.62492809429881,41.88210223128705],[-87.62479615494081,41.88210413439072],[-87.62436591106253,41.882110339103825],[-87.62436280454523,41.88199498987687],[-87.62435401115944,41.88168549187085],[-87.62434589424201,41.881425290098235],[-87.62434047291094,41.88114228466169],[-87.62433535379384,41.880827293366394],[-87.62424580936667,41.880829247638935],[-87.62369040190137,41.88083570602136],[-87.62326335162349,41.8808406854058],[-87.62309129617874,41.880843275113165],[-87.62296832581606,41.88084512566302],[-87.6225632418688,41.88085121993474],[-87.62247106746375,41.880852603306266],[-87.62201138755962,41.88085950173983],[-87.6213966772128,41.88086573646042],[-87.62079144294141,41.88087336971859],[-87.62031875583088,41.8808793288563],[-87.6197238003422,41.880888942921075],[-87.61914119533442,41.88089692598893],[-87.61905704549875,41.88089807935631],[-87.61884461394845,41.88090043571074],[-87.6186026099544,41.88090348523275],[-87.618245772015,41.88090828906407],[-87.61759881635228,41.88091629223514],[-87.61748807413792,41.88091766180866],[-87.61748845649497,41.88088998494658],[-87.6174888170825,41.88086386365933],[-87.6165859161754,41.880862005521905],[-87.61573466557631,41.880904725742056],[-87.61574859732617,41.8812804470485],[-87.61575364780822,41.88141653754756],[-87.61634103221897,41.88141435673955],[-87.61649758626658,41.881413775069134],[-87.61649765787487,41.881413774967264],[-87.61650439843734,41.881681380027366],[-87.61650553036665,41.88172614594294],[-87.61650554309207,41.88172665013949],[-87.61650554406398,41.881726694602264],[-87.61649676777064,41.88177927464204],[-87.61648090248102,41.881841826635615],[-87.61647489525147,41.88185896698917],[-87.61645931937245,41.881903409891216],[-87.61643209530286,41.881963750461324],[-87.6163993800792,41.88202252024267],[-87.6163849384622,41.8820441320909],[-87.61636132333679,41.88207947235983],[-87.61634832996039,41.88209530756148],[-87.61633485357396,41.8821117437534],[-87.61633485245704,41.88211174511854],[-87.61631839079557,41.88212934296784],[-87.61628899044219,41.882160771957196],[-87.6162867824613,41.88216279796508],[-87.61623845661076,41.88220713540754],[-87.61620876534738,41.88223061660936],[-87.61618347409211,41.88225061786645],[-87.6161244143263,41.88229097329356],[-87.61606153643025,41.882327984585054],[-87.6160244337079,41.882346711701544],[-87.61599520901737,41.88236146194042],[-87.6159841113293,41.88236621205415],[-87.615867193458,41.88236621436821],[-87.60930270953861,41.882366127752334],[-87.60924750450617,41.882254980697496]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3581717.80505","perimeter":"0.0","tract_cent":"1165347.35566702","census_t_1":"17031310800","tract_numa":"26","tract_comm":"31","objectid":"560","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890793.58792902","census_tra":"310800","tract_ce_3":"41.85593437","tract_crea":"","tract_ce_2":"-87.66857454","shape_len":"7997.18166462"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67064845412372,41.85225209134135],[-87.67093792708532,41.85224793679051],[-87.67095326440146,41.852599625972346],[-87.67095628895682,41.85271915614837],[-87.67096951565703,41.85316265463788],[-87.67098361421412,41.853635401757394],[-87.6709820081832,41.853770465149644],[-87.67098669995863,41.85399096588984],[-87.67099479431253,41.854076248395636],[-87.67100133297437,41.854145140355605],[-87.67101129844167,41.85453968295106],[-87.67101191068947,41.85456391251361],[-87.67101269139823,41.85459483272431],[-87.67101322494243,41.854615946277114],[-87.67102124354152,41.854933433408824],[-87.67102280041259,41.854991090728205],[-87.67103514808849,41.8554485247953],[-87.67104546347076,41.85583067076434],[-87.67104763416079,41.855902804276624],[-87.67106129183092,41.856356643986594],[-87.67106798758128,41.856579159488895],[-87.6710748304365,41.85681495858117],[-87.67107789907512,41.85692071193102],[-87.67108526967922,41.85727490044838],[-87.67109186309018,41.85759170824204],[-87.67109738192404,41.85772390892939],[-87.67110278322666,41.857853271375035],[-87.67111176808352,41.85818283752426],[-87.67112222386764,41.85856631370901],[-87.67112299465286,41.85863826704956],[-87.67112484197267,41.85881067732974],[-87.67113101941624,41.85909236138339],[-87.67114344424452,41.85954172004254],[-87.67100363116177,41.85954692073163],[-87.67061162286768,41.8595532269315],[-87.669812037729,41.85956608566036],[-87.66920079425613,41.8595733996176],[-87.66896288418332,41.85957643473407],[-87.6687060467225,41.859578099116206],[-87.66858031234398,41.85957891369803],[-87.66688443547268,41.85959887724238],[-87.66642456054679,41.85960428655776],[-87.66619826527122,41.85960733344552],[-87.66619444602011,41.85946507872072],[-87.6661790521236,41.858700290793145],[-87.66613813451029,41.85779374760138],[-87.66613873259286,41.857687685039856],[-87.6661251956717,41.85700173449774],[-87.66612310045669,41.85688501212884],[-87.66612103452613,41.85676995788665],[-87.66610130223847,41.85609387800854],[-87.66609536443774,41.85597434376026],[-87.66608733876859,41.85581278500456],[-87.66607823994144,41.85525435820127],[-87.66607328557576,41.855065365092656],[-87.66605390046973,41.85432594435127],[-87.66605012597915,41.85416134930174],[-87.66604607085566,41.85398448578559],[-87.66604140719689,41.85374186631427],[-87.66603284381773,41.8533019666457],[-87.66603211305869,41.85323264271926],[-87.66603199045588,41.85322106068957],[-87.66602891800888,41.852929712956644],[-87.66602809926886,41.85282520685102],[-87.66602422922897,41.85233105651881],[-87.66679768075724,41.852314002072056],[-87.66761147165268,41.85229940238571],[-87.66849800403078,41.85228523888431],[-87.66893641121243,41.85227823238705],[-87.6693218734026,41.85227244832814],[-87.6698011682901,41.85226522924457],[-87.66988751223602,41.85226389076353],[-87.66994702825053,41.85226296806829],[-87.67064845412372,41.85225209134135]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3533251.33646","perimeter":"0.0","tract_cent":"1152084.59589851","census_t_1":"17031300600","tract_numa":"20","tract_comm":"30","objectid":"561","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1887799.82597712","census_tra":"300600","tract_ce_3":"41.84799057","tract_crea":"","tract_ce_2":"-87.7173345","shape_len":"7970.03657143"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71939105855854,41.84431898411909],[-87.71967427479406,41.84431716665868],[-87.71967846171408,41.844441707049754],[-87.71968357895479,41.84465128648541],[-87.71968896732035,41.84484401757402],[-87.71969329025754,41.844994618495406],[-87.71969833243908,41.845169811869575],[-87.71970219223067,41.84531511387653],[-87.71970602346532,41.84545956500508],[-87.71970993962731,41.84561049304847],[-87.71971405474945,41.84576748697574],[-87.71971735996266,41.845894015234435],[-87.71972774457218,41.84616526332842],[-87.71973251529086,41.84628987403145],[-87.71973879348299,41.84652393843827],[-87.71974400854869,41.84672330965601],[-87.71974870674025,41.84690379756814],[-87.71975417246438,41.84710382846045],[-87.71975591720916,41.8471807323339],[-87.71977441297221,41.84788171612793],[-87.71977585740647,41.84798448252251],[-87.71977681647192,41.84805269659259],[-87.71978623345181,41.84843993476259],[-87.7197885156222,41.84853377359385],[-87.71981998373758,41.849604039653116],[-87.71982215654522,41.84970295476701],[-87.71982360451402,41.849768868442766],[-87.71982518988459,41.849841029891465],[-87.71982642513157,41.84989724749794],[-87.7198264261801,41.84989729141176],[-87.719830624237,41.850088403982184],[-87.71986013795603,41.85113308031235],[-87.71987050417563,41.85149999110398],[-87.71987214453895,41.85160739216622],[-87.71971603777449,41.85160893642991],[-87.71877648855909,41.851622573908884],[-87.7186537843326,41.851623592374295],[-87.71753004661643,41.85163291209944],[-87.71743235787895,41.85163291490801],[-87.71682468722489,41.85164118193196],[-87.71634830202399,41.85164830446047],[-87.71621899177926,41.851649878146276],[-87.71577461438413,41.85165528441413],[-87.71513110583405,41.8516631096493],[-87.71499858333924,41.85166332876419],[-87.71499428829526,41.85154318985746],[-87.71498422363062,41.85112331877978],[-87.71498292442695,41.8510691123384],[-87.71498009709263,41.85098267838768],[-87.71498009652244,41.85098266137018],[-87.714977605822,41.85090651198013],[-87.71497659893033,41.85087572883773],[-87.71497572786448,41.85084909767157],[-87.7149639287711,41.850488370049995],[-87.71494643170162,41.8499534281788],[-87.7149447876171,41.84989482987262],[-87.7149435817683,41.849851857011615],[-87.71494244396027,41.849811308798124],[-87.71494096678224,41.84975866588991],[-87.71490260535175,41.8483541928716],[-87.71490126192082,41.84830500761823],[-87.71489632999277,41.8481244365321],[-87.71489415977881,41.84803301617989],[-87.71489176089334,41.847931956741924],[-87.71486843607588,41.847154518491436],[-87.71486389466287,41.84699549139331],[-87.71485756421473,41.846791558499476],[-87.71485106408166,41.846582383140145],[-87.71484814710534,41.84645083485669],[-87.71484110109004,41.84622064426306],[-87.71483611490213,41.846057736549014],[-87.71482910217955,41.84587130835338],[-87.71482235161822,41.84563861299005],[-87.71481629205648,41.84542944050881],[-87.71481012878007,41.845219608014425],[-87.71480373832269,41.84499907193058],[-87.71479798823115,41.84479588304056],[-87.71479269473873,41.84461006779927],[-87.71478659341268,41.84438516684837],[-87.7150507441081,41.84438091176661],[-87.71507500397406,41.8443805206726],[-87.7154003038259,41.844376198755526],[-87.7154263461666,41.844375852578096],[-87.71571363790396,41.844372019040144],[-87.71584467748549,41.84437006606204],[-87.7160101612886,41.84436741825717],[-87.71625314349869,41.844363530171925],[-87.71652835657098,41.84436012366865],[-87.71662067218499,41.844359024421195],[-87.71696345351026,41.84435499501608],[-87.71723251831666,41.844350416058404],[-87.71784742127419,41.84433994895321],[-87.71845258437493,41.844329644582835],[-87.71870561636318,41.84432533501661],[-87.71905243002067,41.84432211349796],[-87.71906722749463,41.84432197666402],[-87.71939105855854,41.84431898411909]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4994846.16818","perimeter":"0.0","tract_cent":"1147785.92502609","census_t_1":"17031290800","tract_numa":"24","tract_comm":"29","objectid":"562","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895005.1192577","census_tra":"290800","tract_ce_3":"41.86784633","tract_crea":"","tract_ce_2":"-87.73292603","shape_len":"10941.5617216"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73258420049832,41.86917660752053],[-87.73257763294319,41.868998937856006],[-87.73213519095458,41.86900691328161],[-87.7319619090233,41.86900965590864],[-87.73169330159581,41.86901392968287],[-87.73138451719977,41.869019391823464],[-87.7312116418895,41.869021833581556],[-87.7307731855042,41.86902689681016],[-87.73061911945973,41.86902808344362],[-87.73039077802109,41.86902949191611],[-87.73016173510051,41.86903131474913],[-87.73007500868216,41.86903200495451],[-87.72982179330323,41.869035339826596],[-87.72959321824526,41.86903819994023],[-87.72936463985494,41.86904133400676],[-87.72908036228536,41.86904483319562],[-87.72882020836798,41.8690481019097],[-87.72849674810178,41.86905246366051],[-87.72823670904422,41.86905526513432],[-87.72794457810129,41.86905833593788],[-87.72771797989209,41.86906128204823],[-87.72745349632699,41.8690647199508],[-87.7273261167949,41.86906646282106],[-87.72707308373549,41.869069902364004],[-87.72683639122687,41.86907307089143],[-87.72660103644986,41.869074544560746],[-87.72636794253576,41.86907764990405],[-87.72607896742598,41.86908095108271],[-87.72583412995739,41.86908347074106],[-87.72566885038765,41.86908507605138],[-87.72528713642471,41.869088781328315],[-87.72528220040957,41.86893219550498],[-87.72527475222554,41.86867211055364],[-87.72527319514175,41.86858858559937],[-87.72527270753179,41.86856243933131],[-87.725271389489,41.868525711761755],[-87.72527122013703,41.86852099568753],[-87.72526932880352,41.8684682869365],[-87.72526846329463,41.868444166945366],[-87.72526477844175,41.86834148488305],[-87.72524856578853,41.86815006935453],[-87.72524527220288,41.86799242989981],[-87.72524204932652,41.867838177774075],[-87.725234205949,41.86753846391585],[-87.72522508114123,41.867195767951515],[-87.72521640907888,41.86708062908154],[-87.72520525418238,41.86693251636434],[-87.72519700512835,41.86663487963106],[-87.72518703373044,41.86627508845479],[-87.72517048968574,41.866172129968675],[-87.72638868976404,41.86615463350127],[-87.72761878594183,41.86613695331581],[-87.72883502241609,41.86611945923338],[-87.73006397195468,41.866101769321574],[-87.73128766847505,41.866084141904054],[-87.73249594663743,41.866066723749775],[-87.73300059495936,41.8660594450318],[-87.73356490882092,41.86605163596161],[-87.73373259591054,41.866049541720706],[-87.73399259039657,41.86604629395912],[-87.7340003017432,41.8660461975373],[-87.73483011901241,41.86603485526089],[-87.73496474552525,41.86603289593056],[-87.73530220090291,41.866027983980615],[-87.73714948005896,41.86600076033837],[-87.73740384033613,41.86599675029835],[-87.73760783415013,41.8659935338904],[-87.73873176505737,41.86597740429566],[-87.73910702311422,41.86597174053454],[-87.73941684964066,41.86596706322048],[-87.73973028613592,41.86596269955992],[-87.7397664687586,41.86596219583946],[-87.73976647132838,41.86596219585274],[-87.7397707219097,41.866048764252575],[-87.73977731736436,41.86617915050738],[-87.7398115187465,41.86699642974392],[-87.73984269444708,41.86774405746555],[-87.73984530078849,41.86780958975704],[-87.73984797095166,41.86786826201364],[-87.73985057375977,41.8679341375917],[-87.7398674081902,41.86834689196143],[-87.73986740848879,41.86834689937246],[-87.73987228541384,41.86846457710098],[-87.73988875915504,41.868866695578646],[-87.7398942421576,41.86896303271131],[-87.73976655071402,41.86900604846408],[-87.73939732288369,41.86910857739258],[-87.7393627534393,41.86911817666243],[-87.73936026330473,41.869118866587336],[-87.7392549034889,41.86914806001791],[-87.73907593664916,41.86919764843264],[-87.73902932224189,41.869210642213474],[-87.7389005752265,41.86924653019699],[-87.73869057471592,41.86930506720523],[-87.73868238654254,41.86930736949977],[-87.73847655712697,41.869365238081436],[-87.73827795446833,41.869420435158446],[-87.73820688922024,41.8694401861506],[-87.7378508451464,41.86954125013432],[-87.73775532257326,41.86956789904776],[-87.73771696628265,41.869578599484875],[-87.73754582749531,41.86962634327311],[-87.7375264891903,41.86963173831913],[-87.73735885216564,41.86967808039186],[-87.73725496615623,41.86970679334857],[-87.73716401185067,41.86973210487785],[-87.7370548658585,41.86976247833891],[-87.73693720409504,41.869794942777894],[-87.73683794769548,41.86982232922479],[-87.73670593875428,41.869858088851814],[-87.73652563333603,41.869906931141145],[-87.7364345928537,41.86993288050562],[-87.73622078675312,41.8699938213214],[-87.73609952245445,41.87002754032628],[-87.73594894139758,41.87006941137309],[-87.73580796263417,41.87010876081568],[-87.73570223461604,41.870138270962855],[-87.73534281845502,41.87023788258848],[-87.73511155366718,41.870301575119505],[-87.73478559075592,41.87039134738545],[-87.73452195368041,41.87046431490273],[-87.7341520756827,41.870567243674046],[-87.73394983917106,41.87062307208336],[-87.73358262169086,41.870723986818184],[-87.73334120747403,41.87079171637376],[-87.73306379056585,41.870869520756315],[-87.73283028827605,41.87093520495562],[-87.73267288937839,41.870976827207436],[-87.73265223024272,41.87092203441554],[-87.73263862202562,41.870677477690386],[-87.73263215460916,41.87053531978991],[-87.7326285128438,41.87045527748061],[-87.7326211723878,41.87027068802082],[-87.7326128280058,41.87008741054536],[-87.73260909770092,41.86993859731137],[-87.73260448800131,41.86975473562399],[-87.7326009068625,41.869596071838075],[-87.7325955434211,41.86946530778986],[-87.73259193935658,41.86937744481185],[-87.73258420049832,41.86917660752053]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2112320.23708","perimeter":"0.0","tract_cent":"1164479.79791898","census_t_1":"17031282500","tract_numa":"20","tract_comm":"28","objectid":"563","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897807.02966015","census_tra":"282500","tract_ce_3":"41.87519826","tract_crea":"","tract_ce_2":"-87.67156045","shape_len":"6945.8538875"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67030562336872,41.87412370660545],[-87.67059367896223,41.87411592907573],[-87.67086902011361,41.8741126878187],[-87.67102124154815,41.87412780844761],[-87.67119485954503,41.87412609278604],[-87.67136272928946,41.87412275206428],[-87.6715608971813,41.8741198387114],[-87.6717770755157,41.87411665994073],[-87.67203615892413,41.87411266361097],[-87.67237158973423,41.8741074870221],[-87.67274389953464,41.87410084759993],[-87.67277863498246,41.87410042143394],[-87.67311071711768,41.87409634335263],[-87.67348482134415,41.87409015064932],[-87.67376653193121,41.87408523788106],[-87.67382615166444,41.874084226810886],[-87.67384080118336,41.87408397833469],[-87.67401717196066,41.874080987435484],[-87.67417031084116,41.874078390368304],[-87.67436872785629,41.87407522057962],[-87.6745442697317,41.87407202899848],[-87.67485850115072,41.87406694060361],[-87.67527888821262,41.87406013200226],[-87.6755000676943,41.87405714557112],[-87.6757526905337,41.87405293919336],[-87.6760411246454,41.87404751021838],[-87.67624020247527,41.87404436842027],[-87.67645645463404,41.87404250481313],[-87.67646016299214,41.8741855559919],[-87.67646447127531,41.874327787598276],[-87.67646694144062,41.87440927846725],[-87.67647299057245,41.874614582855024],[-87.6764803922241,41.87482406622866],[-87.67648715308808,41.87502143858039],[-87.67649580441432,41.8752739819489],[-87.67649923771563,41.87537419600569],[-87.6765057556282,41.87556446510877],[-87.67651533011744,41.87584394550669],[-87.6765187031801,41.875942409201755],[-87.67652777193261,41.876207135533406],[-87.67626164087763,41.87620640982076],[-87.67611951506412,41.8762066517193],[-87.67593886429029,41.876207654261435],[-87.67569140467404,41.876210762716624],[-87.67521953264124,41.87621668858726],[-87.67481798285851,41.87622327812513],[-87.67459848025794,41.876226684486426],[-87.67417515127006,41.8762337505828],[-87.67388957610999,41.876238669864144],[-87.6736310307717,41.87624311280698],[-87.67335559382899,41.87624764964409],[-87.67298731909445,41.87625343607202],[-87.67271254551996,41.876257728473085],[-87.67223697787361,41.87626661342955],[-87.67211825626146,41.87626883115642],[-87.67206042232765,41.87626991144399],[-87.67180967882956,41.87627459499043],[-87.67159741558423,41.87627794510845],[-87.67123794723277,41.87628375910556],[-87.67101789414181,41.87628710056313],[-87.67061524898382,41.8762930104665],[-87.67051385638719,41.876294367693674],[-87.67038175900868,41.876296135951534],[-87.67004928667869,41.876301961833924],[-87.66970794626347,41.87630797343505],[-87.669639046651,41.87630948416934],[-87.66933661479179,41.876315674514686],[-87.66915035823189,41.87631730740292],[-87.66893869475867,41.87631916320415],[-87.66830431672135,41.87632866377032],[-87.66797341693766,41.876334397248336],[-87.66753536096188,41.87634198636301],[-87.6669559085814,41.8763520221038],[-87.66666479808576,41.87635101064961],[-87.66665779393247,41.87613744506308],[-87.66665465625822,41.876041777759994],[-87.66664694305231,41.87580659737234],[-87.66664323518884,41.87569354578846],[-87.66663654838824,41.875489661254136],[-87.666633456144,41.87539443245995],[-87.66662640161903,41.875177179921934],[-87.66661011425553,41.87463177425463],[-87.66660024382597,41.87425107247298],[-87.66659893093727,41.87420043429774],[-87.6666773583077,41.87419931960702],[-87.66738211439596,41.87418956899931],[-87.66781982109809,41.87418351053495],[-87.66788769104306,41.87417797103108],[-87.66801232870834,41.874175947270174],[-87.66887181255748,41.87416198965452],[-87.66911115937638,41.874159889854845],[-87.66949011808195,41.87415656454521],[-87.66959075205455,41.874154283136825],[-87.6696510471573,41.87415291617156],[-87.6696611887059,41.87415268635914],[-87.66969006176821,41.87415230683204],[-87.66976335662568,41.87415073391785],[-87.67002804525197,41.87414087437263],[-87.67030562336872,41.87412370660545]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4056166.47472","perimeter":"0.0","tract_cent":"1169362.55913876","census_t_1":"17031283800","tract_numa":"21","tract_comm":"28","objectid":"564","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893553.91579595","census_tra":"283800","tract_ce_3":"41.86342268","tract_crea":"","tract_ce_2":"-87.65375662","shape_len":"8349.43790937"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65104650951886,41.867087332397006],[-87.65103937053401,41.866918705189015],[-87.65103621418346,41.86681506353652],[-87.65103349153483,41.866677505520954],[-87.65102914242384,41.866547896166246],[-87.65102461866859,41.866351847459654],[-87.6510176543429,41.86615054272738],[-87.65101204775644,41.86594930093938],[-87.6510068844227,41.86576161837793],[-87.65100445331765,41.865672607871346],[-87.65099884779875,41.86548162957209],[-87.65099734093084,41.86543258496657],[-87.65099306570349,41.86529344935354],[-87.65098768990691,41.8651153978302],[-87.65098186664908,41.86491728316446],[-87.65097453570904,41.864736667858764],[-87.65097323300301,41.864691039955225],[-87.65096906672926,41.864560481855094],[-87.65096642905483,41.86442185403158],[-87.65096069083573,41.86425027676132],[-87.65095572320504,41.86409945060833],[-87.65094847448033,41.8638696862119],[-87.65094179681451,41.863658723325706],[-87.65093732896881,41.863498706881636],[-87.65093392729361,41.863376869316106],[-87.65093043707536,41.86326663940882],[-87.65092667986136,41.86314699512752],[-87.6509215627785,41.862986069207885],[-87.65091601098311,41.86281078826021],[-87.65090959488836,41.8626132188407],[-87.65090479144577,41.862464232268195],[-87.65089276183834,41.86228089931987],[-87.65088432035407,41.86215225375026],[-87.65087912288627,41.861964378760774],[-87.65087212378035,41.8617128359954],[-87.65086271464332,41.861415348333296],[-87.65086223039891,41.86117780290136],[-87.6508555491809,41.860899172367596],[-87.65084708149712,41.86061393346986],[-87.65084116523123,41.86043325754898],[-87.65083797004918,41.86033569653706],[-87.65083256161536,41.86017044248884],[-87.65082784568249,41.86002633702633],[-87.65082217156701,41.85985296553372],[-87.6509408717961,41.85985113929855],[-87.65139974006199,41.8598440777188],[-87.651872357378,41.8598351101448],[-87.6522420456786,41.85982919412106],[-87.65263802297676,41.859822855879955],[-87.65284332598841,41.859820494272284],[-87.65302851058111,41.8598183638437],[-87.65343395877099,41.859811918419304],[-87.65372030340335,41.85980736619118],[-87.65403190615217,41.85980257406089],[-87.65628743342971,41.85976786286009],[-87.65647915506476,41.85976530436828],[-87.65648175105562,41.859856375943814],[-87.65648344299768,41.85991572629566],[-87.65648763626945,41.860035825299725],[-87.65649098496331,41.86013172213795],[-87.65649602688764,41.86027612788011],[-87.65650675676879,41.860583852441586],[-87.65650885419281,41.86066563945033],[-87.6565101750909,41.86073166821838],[-87.65651144968146,41.860795369859986],[-87.65651397695781,41.86092168299443],[-87.6565165025886,41.861047909123535],[-87.65652444030763,41.861444626775274],[-87.65652889460117,41.86160637215317],[-87.65654050641317,41.86202801469183],[-87.65655385309097,41.86251261646896],[-87.65657384369418,41.86323831470507],[-87.65657977572506,41.86342074668206],[-87.6566030819457,41.86422894256256],[-87.6566056959384,41.86431965577254],[-87.65661058038724,41.864489169286784],[-87.65662702940851,41.86515392401216],[-87.65662955808344,41.865236788144756],[-87.65663472386511,41.86540605658085],[-87.6566522907309,41.86599617387522],[-87.65666000823565,41.866141307912216],[-87.65666548829148,41.8662443684475],[-87.65667156150222,41.86635858346564],[-87.65667385016648,41.866605496945944],[-87.65667571750178,41.866806963686905],[-87.65668122584161,41.86699661537042],[-87.65649280214804,41.866999355511815],[-87.65542058865175,41.86701657710739],[-87.65518403500074,41.86702053703341],[-87.65438291635347,41.86703394405076],[-87.65409806305395,41.86703871004711],[-87.6539397362995,41.86704135862938],[-87.65331682899576,41.86705177717164],[-87.65181730401777,41.86707684337063],[-87.65181730144799,41.86707684335538],[-87.6518169063372,41.86707685034116],[-87.65147338012535,41.8670825898515],[-87.65137760154947,41.86708195090282],[-87.65104650951886,41.867087332397006]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3408440.59488","perimeter":"0.0","tract_cent":"1165100.72797963","census_t_1":"17031281600","tract_numa":"29","tract_comm":"28","objectid":"565","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899483.4836423","census_tra":"281600","tract_ce_3":"41.87978543","tract_crea":"","tract_ce_2":"-87.66923303","shape_len":"7749.09358491"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67123794723277,41.87628375910556],[-87.67159741558423,41.87627794510845],[-87.67161599544345,41.87653716344978],[-87.67163299586717,41.87677434048811],[-87.67163507143005,41.876994585137076],[-87.67163668812414,41.877054995329274],[-87.67164114294309,41.87724250795],[-87.67164509583897,41.877407487405996],[-87.67164589531026,41.877438802771096],[-87.671648577483,41.87754386305322],[-87.67165325526271,41.87772710195491],[-87.67165737792665,41.87786850929644],[-87.67166227356486,41.87803821454442],[-87.67166838406752,41.87824919668601],[-87.67167228387797,41.878368322193964],[-87.67167590497706,41.87847879952219],[-87.67168042146798,41.878606954129786],[-87.67168483975647,41.87881817293364],[-87.67168974197148,41.87905253619607],[-87.67169430194811,41.87925835347711],[-87.67169833661096,41.87944226534896],[-87.67169969680643,41.87950426899286],[-87.67170403170527,41.87971055148261],[-87.67170800634989,41.87989836311603],[-87.67171174600668,41.880087490901744],[-87.67171531832395,41.8802681374497],[-87.67172108164627,41.88044986714483],[-87.67172319650274,41.880522121863294],[-87.67172607753156,41.88062056054651],[-87.67173140460724,41.88082322630808],[-87.67173889876013,41.881057847560314],[-87.67174373416526,41.88121737094159],[-87.67174815015674,41.88138975225731],[-87.67175529321968,41.88166856395888],[-87.67175937539048,41.881856650571436],[-87.67176425800825,41.882034780180874],[-87.6717720354858,41.88231055460799],[-87.67177678780384,41.88247903578664],[-87.67178347518868,41.8827456502109],[-87.67179075613447,41.883022366860516],[-87.67179667500783,41.88322166134786],[-87.67141598994084,41.88322635498714],[-87.67111716214481,41.88323138303263],[-87.6705793895546,41.88324039381294],[-87.67023750107222,41.88324612055917],[-87.67005035402725,41.883248751932555],[-87.66974497789408,41.883253045114394],[-87.6696566835974,41.88325429119437],[-87.66956699302669,41.883255615305266],[-87.66935805194919,41.88325882869178],[-87.66904981837493,41.883263543131434],[-87.66876090853643,41.88326826566253],[-87.66831064758247,41.883275703053044],[-87.66795356615312,41.88328178507228],[-87.66764761530224,41.883286653046575],[-87.66726578434712,41.88329253457384],[-87.66713796879702,41.88329453741387],[-87.66694514916546,41.883297747449916],[-87.66687140155761,41.88329897535946],[-87.66686970371141,41.88321223916967],[-87.66683770457182,41.882378905370885],[-87.66680899633099,41.88163126311625],[-87.66680275076872,41.88145546842904],[-87.66679327499388,41.8811887447458],[-87.66679199373125,41.880915936596466],[-87.666791948476,41.88091301234087],[-87.66679081813496,41.88083945260728],[-87.66678986142912,41.88077716998306],[-87.66675834573687,41.880168780840755],[-87.66674916269251,41.8799915063737],[-87.66675257802274,41.87889534580677],[-87.66668749666373,41.877624472902646],[-87.66667920938234,41.877159530220105],[-87.66666479808576,41.87635101064961],[-87.6669559085814,41.8763520221038],[-87.66753536096188,41.87634198636301],[-87.66797341693766,41.876334397248336],[-87.66830431672135,41.87632866377032],[-87.66893869475867,41.87631916320415],[-87.66915035823189,41.87631730740292],[-87.66933661479179,41.876315674514686],[-87.669639046651,41.87630948416934],[-87.66970794626347,41.87630797343505],[-87.67004928667869,41.876301961833924],[-87.67038175900868,41.876296135951534],[-87.67051385638719,41.876294367693674],[-87.67061524898382,41.8762930104665],[-87.67101789414181,41.87628710056313],[-87.67123794723277,41.87628375910556]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3504066.97711","perimeter":"0.0","tract_cent":"1150359.65770734","census_t_1":"17031260100","tract_numa":"9","tract_comm":"26","objectid":"567","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901045.30763916","census_tra":"260100","tract_ce_3":"41.8843715","tract_crea":"","tract_ce_2":"-87.72331972","shape_len":"7991.36604914"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7209829488493,41.88805384380615],[-87.7209803807696,41.88795769043771],[-87.72097788508677,41.887864263037606],[-87.72097677924457,41.887822850603044],[-87.72097353279518,41.88771209121196],[-87.7209608519419,41.88727943261453],[-87.72095088842725,41.88694987796806],[-87.72094720557295,41.8868219487828],[-87.72094415979659,41.88671614215827],[-87.72093477487216,41.88633370895296],[-87.7209248657307,41.88598694812028],[-87.72092730611766,41.88555068093844],[-87.72092459825438,41.8853535473121],[-87.72092158699088,41.885245903846034],[-87.72092041573087,41.885204041535935],[-87.72091907733297,41.88515618517519],[-87.72091416732019,41.8849806858565],[-87.72090485965127,41.88464018503064],[-87.72089506770577,41.88428118538014],[-87.7208893879437,41.8840873580457],[-87.72088542927548,41.883952263468764],[-87.72087384680084,41.88354624555125],[-87.72086696792388,41.88327057643106],[-87.72085838323062,41.88300049289635],[-87.7208528847833,41.88282261303049],[-87.72084274535523,41.88244621260765],[-87.72082619637824,41.88208728654775],[-87.72082022885714,41.88189686184134],[-87.72081355948086,41.88168403428624],[-87.72079832014603,41.881489495607006],[-87.72078279274405,41.88136007665963],[-87.72076458901589,41.881147931249494],[-87.7207590962573,41.88093096914427],[-87.72075298345551,41.88078961626727],[-87.72079458360703,41.88078892295542],[-87.72082912626095,41.880788347311906],[-87.72102032908894,41.880785160825894],[-87.72128409704507,41.880781462591344],[-87.72172355945067,41.88077570835442],[-87.72210014838922,41.88077063318423],[-87.72228106405832,41.880767863777216],[-87.72282833024943,41.88076314539313],[-87.72325256862341,41.880756951186],[-87.72345891946911,41.880754311474796],[-87.72384350497263,41.880750123770206],[-87.7241708028553,41.880746179764486],[-87.72452997685559,41.880742019619746],[-87.72467496543847,41.88074066877045],[-87.72478763633741,41.880739625635776],[-87.72508808414003,41.8807363874497],[-87.72544495201572,41.88073144383909],[-87.72567027835919,41.880726990598596],[-87.72567526566068,41.880964249852155],[-87.72568161141109,41.88114716013561],[-87.72568684359373,41.88137784188122],[-87.7256933317092,41.881515500253734],[-87.72570680601757,41.88193743847751],[-87.72571280689293,41.882265331824705],[-87.72572520005203,41.882697259644374],[-87.7257318781103,41.88293000716206],[-87.72573370512602,41.882993683368035],[-87.72573995850458,41.88316311856726],[-87.72574563961918,41.8833616403028],[-87.7257485939089,41.883464867344024],[-87.72575779800131,41.883803500969684],[-87.72576355543647,41.88402200092929],[-87.72576854811635,41.8842114901458],[-87.72577892601255,41.884550322308144],[-87.72578280425952,41.88467844453214],[-87.72578860351018,41.88487002334645],[-87.72579457982845,41.8850670644157],[-87.72580231493701,41.88532212814908],[-87.72580420814418,41.88543069423464],[-87.72580458705235,41.88545241036183],[-87.72580483829384,41.88546682502091],[-87.72580510530983,41.88548213301556],[-87.72580581862985,41.88552305212781],[-87.72580826398138,41.88566326942338],[-87.72582268825896,41.88610217811037],[-87.72582323685752,41.88612152794616],[-87.72583639672055,41.88658564952586],[-87.72584320649393,41.88682975848076],[-87.72584760936496,41.8869875764384],[-87.72585553070478,41.88729442470478],[-87.72586402425293,41.88762344975689],[-87.72586821091541,41.887769054383334],[-87.72587007905597,41.88783403344496],[-87.72464525429334,41.88783681027196],[-87.72464970767939,41.888044710433235],[-87.72421342574215,41.88801392560276],[-87.72343061964942,41.88802383504469],[-87.72306653500196,41.88802841839623],[-87.7225697625906,41.88803469618498],[-87.72220659594319,41.88803928169211],[-87.72117495367353,41.888051281571094],[-87.72098330193283,41.888067056757336],[-87.7209829488493,41.88805384380615]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7397436.8493","perimeter":"0.0","tract_cent":"1140259.92592511","census_t_1":"17031251500","tract_numa":"34","tract_comm":"25","objectid":"568","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903422.35208131","census_tra":"251500","tract_ce_3":"41.89108542","tract_crea":"","tract_ce_2":"-87.76034939","shape_len":"10937.4439752"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75532403747077,41.88750392198372],[-87.75531592899732,41.88731377538825],[-87.75531772026349,41.887239443577194],[-87.75531863207003,41.88720160362843],[-87.75653290531005,41.88726290540355],[-87.75679069639733,41.88727591813358],[-87.7576941003269,41.887332708785806],[-87.7577669793988,41.88733194097669],[-87.75899572684901,41.88731898821671],[-87.75920659663576,41.88731676408657],[-87.76019457685335,41.887300795692525],[-87.7603482587166,41.88729851592554],[-87.76124899234698,41.88728515004771],[-87.76178761126921,41.887279927735236],[-87.76231734702995,41.88727478962709],[-87.76327509893565,41.887253699558],[-87.76338232115629,41.88725133794978],[-87.76342559911257,41.8872503845067],[-87.7644472949801,41.88722787639293],[-87.76510673821572,41.88721992495297],[-87.76510781360602,41.88727515935265],[-87.7651102839097,41.88739718959928],[-87.76511028410916,41.88739720853557],[-87.76511324333893,41.887511518337824],[-87.76511402204308,41.88753893914302],[-87.7651151119744,41.88757732393289],[-87.76511574739118,41.887599695436954],[-87.76511941641564,41.887728897111856],[-87.76512385180767,41.887885090325945],[-87.76512658211131,41.887962409278224],[-87.76513818671927,41.88821943799429],[-87.76514410755223,41.88838845801935],[-87.76515090761485,41.888578119125825],[-87.76515784709777,41.88876100262599],[-87.76516771197426,41.888986436417184],[-87.76518139343207,41.88928959022685],[-87.76518680658938,41.88940952932877],[-87.7651886788303,41.889475976523826],[-87.76519423742359,41.88967342510998],[-87.76520137058289,41.889871155903606],[-87.76520639867495,41.89000446881802],[-87.76521324644845,41.890176676699],[-87.76521983045902,41.890341144495814],[-87.76522274883497,41.89041404610756],[-87.76523220072691,41.890665410909875],[-87.76524471073493,41.89095713124143],[-87.76524891333285,41.89109687063638],[-87.76525180304003,41.891192951915755],[-87.76526503150947,41.89151137728142],[-87.76527419709629,41.891737054480025],[-87.76528129890107,41.89192207918789],[-87.76528688389949,41.89206689319414],[-87.7652939517151,41.892251615855656],[-87.76530037296067,41.89242297083928],[-87.76530518580246,41.89254231441926],[-87.76531214685055,41.89270178948327],[-87.76531956563919,41.89292588252092],[-87.76532396820166,41.89305887420829],[-87.76533021246262,41.89319147955623],[-87.76533519532899,41.89330893043141],[-87.76534094344304,41.893449078893916],[-87.76534335040695,41.89350776384524],[-87.76535407716561,41.89377285603179],[-87.76536088165317,41.89395831827867],[-87.7653729579726,41.89431573349198],[-87.76538780584256,41.894633864815454],[-87.7653949154041,41.89485373038337],[-87.76516221036924,41.89485810617137],[-87.76487961385916,41.89485813462733],[-87.76478576940343,41.89485821971573],[-87.76459848452166,41.894858389193644],[-87.76450048403586,41.89485914721047],[-87.76431300376942,41.894860597365636],[-87.76409047887205,41.89486262295557],[-87.76381850637691,41.894865747573796],[-87.76356799181556,41.89486727329091],[-87.76332432178566,41.89486875642038],[-87.76309386119813,41.89487101538696],[-87.76288139820886,41.89487325325244],[-87.76283658517708,41.8948736445194],[-87.76259694331438,41.8948757366782],[-87.76233329297048,41.894876456762674],[-87.76213380257896,41.89487797508992],[-87.76186224265948,41.89488004114163],[-87.76155633831308,41.89488241524553],[-87.76142527744166,41.89488360124827],[-87.76127011973504,41.89488500542847],[-87.7611807865092,41.89488581366768],[-87.76082543951023,41.894888762744976],[-87.76064286343612,41.894890351280644],[-87.76034020578096,41.894892983671355],[-87.76013325528642,41.89489485976317],[-87.75997736398152,41.894896147392856],[-87.7598598945193,41.8948971173597],[-87.7594924311954,41.894899562724596],[-87.75933621195692,41.89490071804237],[-87.75912041065867,41.89490231343531],[-87.75875776684292,41.89490796387054],[-87.75856710429531,41.89490799766432],[-87.75838139853218,41.89490813828632],[-87.75819595023351,41.89490827989747],[-87.75805075261299,41.894910389601286],[-87.75782375882976,41.894913687467486],[-87.75752027844968,41.89491609040907],[-87.75743564909597,41.894916692646305],[-87.75727593882218,41.89491782875114],[-87.75720703092561,41.89491816912302],[-87.7570136008412,41.89491958601669],[-87.75682532360855,41.89492034019727],[-87.75668519088694,41.89492090114998],[-87.7562109002214,41.894925326426396],[-87.75596835023045,41.89492813903956],[-87.7558326926996,41.894929871838826],[-87.75559882441146,41.89493606817276],[-87.75559259581645,41.894799053537625],[-87.75558785528597,41.89467298658654],[-87.75558434111514,41.89452088293133],[-87.75557668302832,41.894282479403515],[-87.7555689477106,41.894081177652474],[-87.75556376480571,41.89395530055624],[-87.75555818199845,41.893816743038336],[-87.75555253428658,41.89367727958982],[-87.7555473390753,41.893548658178204],[-87.75554141663683,41.89338666309663],[-87.75553485651407,41.89320984588327],[-87.75553073249438,41.893096899484796],[-87.75552753523809,41.89299979478072],[-87.75552366777904,41.89288234636391],[-87.75551776127179,41.89271859502634],[-87.75551360478215,41.89260518193281],[-87.75550722446648,41.89242880467802],[-87.75550125249194,41.89226417483916],[-87.75549574697112,41.892112994141414],[-87.75549122267515,41.89198742218037],[-87.75548666537804,41.89186143841364],[-87.75548393496435,41.89178540909299],[-87.755479855491,41.891671612173326],[-87.75547668377087,41.89158342362437],[-87.7554707486549,41.891418793945526],[-87.75546681970204,41.89131144647713],[-87.75546257044728,41.891195343801776],[-87.7554578703603,41.89106691692005],[-87.75544927137034,41.89083926594916],[-87.75544544213533,41.89073850543438],[-87.755439720075,41.89058688452544],[-87.75543538365578,41.89047308628777],[-87.75543111773194,41.89035961771193],[-87.75542492562751,41.890182774810015],[-87.75542068604581,41.89005607854783],[-87.75541696898196,41.88994500076808],[-87.75540983287509,41.889754733740176],[-87.75540607449845,41.88964200865005],[-87.75540302340649,41.88954045619791],[-87.75539731663821,41.88936682647994],[-87.7553950048967,41.88930463023156],[-87.75539161196458,41.88921333953311],[-87.75538983332154,41.889162122950204],[-87.75538728276634,41.88908653357659],[-87.75538145592006,41.888944241982585],[-87.75537385805602,41.88875869324829],[-87.75536820253714,41.88862013523173],[-87.75536448951601,41.8885292819902],[-87.75536069239348,41.88842657345377],[-87.75535393677512,41.888247092902176],[-87.75534711565415,41.88806673413049],[-87.75534036467023,41.887886787342836],[-87.75533703851232,41.88780880024146],[-87.7553336181202,41.887728597234265],[-87.75533260468674,41.88770482421231],[-87.75533109823665,41.887669498722964],[-87.75532403747077,41.88750392198372]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3486068.89836","perimeter":"0.0","tract_cent":"1164958.62856234","census_t_1":"17031243200","tract_numa":"24","tract_comm":"24","objectid":"569","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904091.48169632","census_tra":"243200","tract_ce_3":"41.89243316","tract_crea":"","tract_ce_2":"-87.66962393","shape_len":"7915.87659853"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66709002008236,41.88916798077967],[-87.66706868914602,41.88885187769547],[-87.66726460291522,41.888858125889556],[-87.6674125118066,41.88885681573733],[-87.66776522286547,41.8888537287868],[-87.66801425006115,41.88885123932812],[-87.66810930696413,41.888850288912394],[-87.66844492921982,41.88884828090446],[-87.66877232421783,41.88884633407415],[-87.66899138112947,41.888845018122744],[-87.66932593148147,41.88883916324267],[-87.66952238765816,41.88883691948965],[-87.66967563619498,41.88883555907681],[-87.66992931177944,41.88883106982238],[-87.6701666043028,41.888826897034704],[-87.67049598413949,41.88882122458346],[-87.67073731888841,41.8888275122189],[-87.6711275403557,41.88881240933709],[-87.67134142166066,41.88880981673875],[-87.67145587424208,41.888808429530336],[-87.67165293320481,41.88880605251038],[-87.67180881751624,41.88880415147283],[-87.67196076779244,41.88879978875921],[-87.67196912123465,41.88905032765751],[-87.67197238492295,41.88916826650359],[-87.67197733402321,41.88934790532217],[-87.67198045488473,41.88946117840392],[-87.6719888742641,41.88980581603034],[-87.67199346994978,41.889993910543794],[-87.67199649632714,41.89009217179649],[-87.67200221285329,41.890278566111895],[-87.67200987485762,41.890526271100946],[-87.67201498420616,41.890692526039985],[-87.67202202599127,41.890903482882244],[-87.6720302473336,41.89114977695749],[-87.67203435428178,41.89129233645106],[-87.67203706959192,41.8913856565315],[-87.67203967702596,41.89147469442557],[-87.67204390335941,41.89162754549891],[-87.67204995226668,41.89184582974641],[-87.67205319880141,41.8919638510366],[-87.67205887107039,41.89217044236584],[-87.67206316571578,41.892349970568816],[-87.6720697011546,41.89262311192258],[-87.67207405709128,41.892770530391076],[-87.67208073008173,41.892995980653],[-87.67208984266975,41.89326233933445],[-87.67210025896497,41.893566785122474],[-87.67210343619901,41.893717034596634],[-87.67210830537452,41.89395105237628],[-87.67211476235646,41.89417453098332],[-87.6721244912327,41.89451124473723],[-87.6721281530337,41.89462499119205],[-87.67213016589159,41.89468751242347],[-87.67213646679804,41.89488496923204],[-87.67213799978329,41.894940850756505],[-87.67214166001904,41.89507586943286],[-87.6721491631131,41.89535263313237],[-87.67215436125394,41.895523618682724],[-87.67216239784831,41.89578591478953],[-87.67217312868338,41.89599183477372],[-87.67179301304935,41.89599874358128],[-87.67163111622042,41.896001350868765],[-87.67130916161013,41.89600649303398],[-87.67095803672183,41.89601216637151],[-87.67054313927541,41.8960188690374],[-87.67021074352124,41.89602490834159],[-87.67007459666148,41.89602736026204],[-87.66972780311505,41.896033212647865],[-87.66961182760586,41.896035169443195],[-87.66943464877046,41.89603805413012],[-87.66913635062961,41.89604290325714],[-87.66893760789286,41.89604614433754],[-87.66851484405927,41.896053330110284],[-87.66825952449634,41.89605766918553],[-87.66797577458672,41.89606219999332],[-87.66773456582588,41.896066016201914],[-87.66729151669237,41.89607363944048],[-87.66727839718965,41.89560125503751],[-87.66726604097542,41.89515634649292],[-87.667259273136,41.89491265620349],[-87.66725302461502,41.89476264733508],[-87.66725128681959,41.89470794019351],[-87.66724962059597,41.894655465081236],[-87.66723682630517,41.89425712913828],[-87.66723294202438,41.8941361858484],[-87.6672278326459,41.893952731296125],[-87.66722361009994,41.89380064853182],[-87.66722352658384,41.89379744552067],[-87.6672116708927,41.8933433385772],[-87.66720527135732,41.8930982365134],[-87.66720361218879,41.893044275421424],[-87.66719910354978,41.892896087518324],[-87.6671956273898,41.89278144075372],[-87.66719366410864,41.89271666504276],[-87.66718490350048,41.89242719603393],[-87.6671789000803,41.89222881827889],[-87.66717259470283,41.89202115253257],[-87.66716959630699,41.891922424837425],[-87.66716024263248,41.89162041638495],[-87.66715832089744,41.89155836346193],[-87.66715515397645,41.89146012874415],[-87.66715240282613,41.891374794364424],[-87.66715037713497,41.89131196668549],[-87.66714263637746,41.89097739671948],[-87.66713694461907,41.89073137247751],[-87.66713185506075,41.8905623449494],[-87.66712684196031,41.89039585792868],[-87.66711720516422,41.89007560404002],[-87.66711157549103,41.88988677860187],[-87.6671056032686,41.88968645828975],[-87.66710009056143,41.88950302869456],[-87.66709507124989,41.88933573809251],[-87.66709002008236,41.88916798077967]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3532061.78633","perimeter":"0.0","tract_cent":"1160818.33348273","census_t_1":"17031241200","tract_numa":"15","tract_comm":"24","objectid":"570","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909261.7964513","census_tra":"241200","tract_ce_3":"41.90670779","tract_crea":"","tract_ce_2":"-87.68468595","shape_len":"7976.27779514"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68673536636051,41.90302304034372],[-87.68702676175086,41.90301612617931],[-87.68703446834009,41.90328762192946],[-87.68704072005366,41.90353444593684],[-87.68704605476503,41.90374504141526],[-87.687063940765,41.90439666494372],[-87.68706512881451,41.904439934220335],[-87.687075773306,41.904842204834615],[-87.68708255018285,41.905098319317375],[-87.68710075439485,41.9057738876502],[-87.68711618878318,41.90637800790208],[-87.68712348097127,41.90666650388239],[-87.68712989633933,41.90692031822644],[-87.687140999303,41.90729831657632],[-87.68715034035546,41.90766889555543],[-87.68716035613527,41.908045433293346],[-87.68716953376317,41.90833387640636],[-87.68717368118774,41.90849159655135],[-87.68717805755082,41.908658018296485],[-87.6871806303735,41.90874765942289],[-87.6871891779835,41.909129045844665],[-87.6871998782498,41.909565247227185],[-87.68720808561501,41.90987058927411],[-87.68721465169729,41.91011486290079],[-87.6872206970524,41.91032086664096],[-87.6869415458578,41.91032553733003],[-87.68636400482521,41.91033438682973],[-87.68599733912748,41.910338241583794],[-87.68583550575461,41.910339942473755],[-87.68499338811195,41.91035481205817],[-87.68478216827903,41.91035748205583],[-87.68458972996646,41.9103599141988],[-87.68382684397986,41.91037236883404],[-87.68356448615508,41.91037616773969],[-87.68339077019374,41.91037868295842],[-87.68267429917955,41.91038966377554],[-87.68234657785219,41.9103934723242],[-87.68233965829943,41.9101791231258],[-87.68233411440971,41.9099456678673],[-87.68232169949555,41.90942284813831],[-87.68231855214067,41.90928032230732],[-87.68231540954497,41.90913801603834],[-87.68230687207503,41.90886464207396],[-87.68230662479091,41.90872012938125],[-87.68229858426358,41.90857230713784],[-87.68229229279761,41.9084483141987],[-87.68228717504161,41.908268647700666],[-87.68228570560201,41.9081714935244],[-87.68228299998027,41.90799255419438],[-87.68227858446747,41.907840169614836],[-87.68226980911072,41.90753726601429],[-87.68226187365312,41.90726252326829],[-87.68225539131203,41.90705277274546],[-87.6822522521578,41.90695121775879],[-87.68224647441878,41.90674613586765],[-87.68224280327968,41.90661573651211],[-87.6822333759426,41.90629260441971],[-87.6822279571034,41.90610640486882],[-87.68222310599032,41.905934038921345],[-87.68221880754952,41.90578132591595],[-87.68220766063561,41.905399896489875],[-87.68220569611474,41.90533267905344],[-87.68219678994463,41.905026975730806],[-87.68219368759966,41.90492137920752],[-87.68218745497431,41.90470925021258],[-87.68218124732034,41.90447771137939],[-87.68217461515547,41.904230363337064],[-87.68216971005971,41.904037772289215],[-87.6821651620593,41.903859206849305],[-87.68215748710834,41.90359645743321],[-87.68215396089543,41.90347571908289],[-87.68214005889183,41.90310657216671],[-87.68242609736033,41.90310234429355],[-87.68299529397473,41.90309127185474],[-87.68334792802102,41.9030843900137],[-87.68345103308938,41.903082377808865],[-87.68363400614624,41.90307880617313],[-87.68424457382848,41.90306689135412],[-87.68458031048664,41.90306108062932],[-87.68480398487254,41.90305720907887],[-87.6851722772179,41.90305028739923],[-87.68593612348847,41.90303593557866],[-87.68673536636051,41.90302304034372]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3581395.13973","perimeter":"0.0","tract_cent":"1150781.28781621","census_t_1":"17031230400","tract_numa":"20","tract_comm":"23","objectid":"571","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911039.6916246","census_tra":"230400","tract_ce_3":"41.91178886","tract_crea":"","tract_ce_2":"-87.7215097","shape_len":"7970.68649969"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71824914994646,41.91366443417173],[-87.71788239409422,41.91364232387645],[-87.71755129356941,41.91364285638497],[-87.71751419205177,41.91364207399073],[-87.71742043325881,41.913640096371076],[-87.71715134559547,41.91363659453749],[-87.71693549434262,41.91363680842711],[-87.7166584643409,41.91363840988533],[-87.71665595985763,41.91354916607335],[-87.71664374223563,41.913113810027205],[-87.71663247500439,41.9127576304414],[-87.71662377061992,41.91247108578601],[-87.71662046703156,41.912350403572965],[-87.71661829835705,41.91227116646861],[-87.71660871254856,41.911920978287846],[-87.7166041714589,41.91181619060132],[-87.71659963395574,41.911711489649775],[-87.71658312743808,41.911128690475884],[-87.71657030614517,41.910762266424065],[-87.71659533179213,41.91047151205964],[-87.71664711644934,41.91020985305587],[-87.71668535389244,41.910055874440026],[-87.71670068063654,41.90999415275349],[-87.71706426050642,41.9099896789922],[-87.7177623149608,41.909980402123644],[-87.71801666413221,41.909977020848935],[-87.71820141037969,41.90997456474272],[-87.71897287195361,41.9099669338825],[-87.7192334767943,41.909964355059984],[-87.7201992718388,41.909949694447036],[-87.7204512006804,41.90994586867577],[-87.72058535774251,41.90993922378421],[-87.72099816712033,41.90994474640158],[-87.72130774731312,41.909942088407],[-87.72144336829118,41.909939867434936],[-87.72155176284566,41.90993809235733],[-87.72167327217574,41.90993635218524],[-87.72266816661913,41.90992776789559],[-87.72287933724694,41.909925608341915],[-87.72389444424098,41.909914093439404],[-87.72409297534607,41.909912059136225],[-87.72510924567398,41.90990164037782],[-87.72530065914441,41.909899676878055],[-87.72567982329018,41.90989578661841],[-87.72633070704583,41.90988669018665],[-87.72633231045782,41.909937510911256],[-87.72634687702266,41.9103850265699],[-87.72634729602558,41.910398114117754],[-87.7263581578156,41.91073769287039],[-87.72637257958151,41.911189277946896],[-87.7263879718674,41.911619874727656],[-87.72639058632161,41.91170642164861],[-87.72639359349022,41.91180596349311],[-87.72640958346322,41.91229759513844],[-87.7264194077612,41.91267220748566],[-87.72642551152897,41.9128500386222],[-87.7264298882868,41.91297755883083],[-87.72643259383214,41.913069275798556],[-87.72644545443484,41.91350521332487],[-87.72644799288938,41.91359126365753],[-87.72623530527127,41.913593049619266],[-87.72575263305086,41.91359289816128],[-87.72557353672603,41.91359160707046],[-87.72523968721418,41.91358881048799],[-87.72502661487826,41.91358665282711],[-87.72470332769296,41.91358391063961],[-87.7243630262623,41.91358347878832],[-87.72419264631017,41.91358326085674],[-87.72400291142165,41.91362088337554],[-87.72395641662393,41.9136210897137],[-87.72390305590736,41.913621326003614],[-87.72371695271971,41.913621899874805],[-87.72360459161337,41.91362288013044],[-87.72349773537677,41.91362381185033],[-87.72317912432835,41.91362658992226],[-87.72234754851002,41.913635113270914],[-87.72234744378754,41.913635114634666],[-87.72223159439332,41.913636301659224],[-87.72215029781361,41.91363724081678],[-87.72155260514175,41.91366289709358],[-87.72153508464878,41.91366364924366],[-87.72144920674198,41.91366733517023],[-87.72133984441723,41.91367202951235],[-87.72122790471835,41.913659770137855],[-87.72111480641937,41.913654185311195],[-87.72100205920745,41.91364861816193],[-87.7207962981241,41.91365026495844],[-87.72034801576959,41.913655762141524],[-87.72023962137176,41.91365689858891],[-87.71968435799512,41.913659764028246],[-87.7191906078612,41.91366535700113],[-87.71910860627756,41.91366662887251],[-87.71887689872666,41.91366951021634],[-87.7185627727576,41.913669200964954],[-87.71824914994646,41.91366443417173]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6712799.81153","perimeter":"0.0","tract_cent":"1150743.63159532","census_t_1":"17031220900","tract_numa":"32","tract_comm":"22","objectid":"572","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914414.90594245","census_tra":"220900","tract_ce_3":"41.92105149","tract_crea":"","tract_ce_2":"-87.72155959","shape_len":"10660.5256068"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71693424423081,41.922632388108624],[-87.71692402414214,41.922317899306755],[-87.71692035263425,41.92220492743586],[-87.71691454599754,41.921987416441844],[-87.71691020666319,41.92186022560126],[-87.71690517435094,41.92171272347203],[-87.71689884323794,41.921400862787834],[-87.71689587666492,41.92125474412534],[-87.71688858825206,41.92103085825417],[-87.71688481885846,41.92094333773141],[-87.71687915802316,41.92081190048732],[-87.71687015849666,41.92048944999169],[-87.71686880311806,41.92044088001332],[-87.71685831486025,41.92011044595],[-87.71685594786575,41.92002905339643],[-87.716853373255,41.91994052418183],[-87.71684080966348,41.919572126526376],[-87.7168303096952,41.91920640128005],[-87.71682807928806,41.91911429789468],[-87.71682534046181,41.919001188540804],[-87.71681361525643,41.91865642012586],[-87.71681168017547,41.918599524592686],[-87.71680291317674,41.9183117175559],[-87.71679917680488,41.918199375879354],[-87.71679396557407,41.918042680069505],[-87.71678468089682,41.91773782086961],[-87.7167829097008,41.91767966880058],[-87.71677554998368,41.917367829812854],[-87.71677224478051,41.91728273213539],[-87.71700867988652,41.91728000364925],[-87.71752831762613,41.91727318709639],[-87.71788861351824,41.917269218418454],[-87.717993782578,41.91726789155874],[-87.7182122784514,41.91726513498431],[-87.71884560409651,41.917257521608946],[-87.71909250702488,41.91725420489487],[-87.71921927248533,41.91725279155955],[-87.71989588843319,41.91724524501852],[-87.72035121525691,41.91723966347857],[-87.72044145576831,41.91723945912425],[-87.72060966545997,41.917239067048904],[-87.72108797292715,41.917231684250964],[-87.72148226459642,41.91722670580992],[-87.72166617912069,41.917223259487855],[-87.72183233366867,41.91722014584319],[-87.7227647397017,41.91720872451509],[-87.72288985835209,41.917207528062335],[-87.72366103747275,41.91720014999768],[-87.72390312680446,41.91719829243691],[-87.72390558944859,41.91719827339974],[-87.7240577834005,41.91742961539766],[-87.72432158853167,41.91794212786883],[-87.7243788583213,41.91805357267235],[-87.72440862494797,41.91811101689455],[-87.72469501500004,41.91866412534621],[-87.72487584299344,41.919016332282155],[-87.72495225921449,41.91901534723478],[-87.72560916310412,41.91900687775758],[-87.7263789268584,41.91899602091162],[-87.72661499883226,41.918993623091644],[-87.72662009357691,41.91918777247283],[-87.72662754880636,41.91944700468181],[-87.72663626271903,41.919750013449054],[-87.72664080728381,41.919907995063184],[-87.72664784465505,41.92015262572842],[-87.7266631037241,41.92068297385189],[-87.72666739847982,41.920824901475],[-87.72667334602396,41.92102144634559],[-87.72667890512989,41.92127246293167],[-87.72668881871297,41.92171935814446],[-87.72669587988825,41.92188163427057],[-87.7267308915607,41.92197539744742],[-87.72686885430758,41.92224467644936],[-87.72707509390936,41.922645068683444],[-87.72692963819487,41.92264359670065],[-87.72683251548995,41.92264627390123],[-87.72678427243099,41.92264760386121],[-87.72678015568904,41.9226475821146],[-87.72675348174396,41.92264744120641],[-87.72675339135493,41.9226474407289],[-87.72657913346546,41.92264652003891],[-87.72644167524288,41.92265347715872],[-87.72645599998862,41.92268310848701],[-87.72659347358329,41.92296747845866],[-87.72663686459038,41.92304943085756],[-87.72668861014107,41.92314174567771],[-87.72673805446635,41.92331017321017],[-87.72675148586107,41.923851268753026],[-87.72676045963938,41.92427719289605],[-87.72676858401366,41.92448395547665],[-87.72638679675285,41.92448937760044],[-87.72584761897045,41.92449303035602],[-87.72555139711822,41.9244991422125],[-87.72525059351628,41.924505347591065],[-87.72460793950715,41.924512672318826],[-87.7243268398533,41.92451509775049],[-87.72425907722031,41.924515682338395],[-87.7240628354731,41.92451735524878],[-87.72360911745102,41.924522273920296],[-87.72310382518647,41.92452852620558],[-87.72283172887796,41.92453189181525],[-87.7221995973089,41.924537804567706],[-87.72188154692482,41.92454232672671],[-87.72157610959195,41.924546668774276],[-87.72101629270249,41.92455279561754],[-87.72066059631936,41.92455757246649],[-87.72032746583925,41.92456204552918],[-87.72004157859953,41.92456584242299],[-87.71960323090865,41.92457134546855],[-87.71943824747676,41.92457341602022],[-87.71906172753353,41.92457814052124],[-87.7184505546798,41.924586422461985],[-87.71821499089519,41.92458913384835],[-87.71745483626772,41.92459788065767],[-87.71699394670084,41.9246033919614],[-87.7169882633751,41.924346228736155],[-87.71697935627793,41.92410335110766],[-87.71697670785927,41.924031129407446],[-87.71696932874255,41.92376698534304],[-87.71696711538496,41.92369030001785],[-87.71696136484327,41.92349106539031],[-87.71695341446976,41.92322936059663],[-87.71695073315216,41.923141091836065],[-87.71693875204521,41.9227739228181],[-87.71693424423081,41.922632388108624]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1094498.05917","perimeter":"0.0","tract_cent":"1149852.3866879","census_t_1":"17031200600","tract_numa":"6","tract_comm":"20","objectid":"573","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912270.53386289","census_tra":"200600","tract_ce_3":"41.91518454","tract_crea":"","tract_ce_2":"-87.72489015","shape_len":"4651.62031525"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72406129970058,41.91546267874165],[-87.72405917597504,41.9153731448653],[-87.72394669803892,41.91537441983645],[-87.72341151033032,41.915379948235646],[-87.7231401375234,41.91538499767064],[-87.7231271766572,41.91535638384389],[-87.72300885976061,41.915095168249636],[-87.72297793470176,41.9150268928572],[-87.7229472457615,41.91495913874284],[-87.72291684655774,41.914892023919336],[-87.72288682020636,41.91482573241795],[-87.72284139757024,41.914725448849985],[-87.72278003255714,41.91458996776937],[-87.72270319819555,41.91442033227672],[-87.72261432103744,41.91422410747636],[-87.72234754851002,41.913635113270914],[-87.72317912432835,41.91362658992226],[-87.72349773537677,41.91362381185033],[-87.72360459161337,41.91362288013044],[-87.72371695271971,41.913621899874805],[-87.72390305590736,41.913621326003614],[-87.72395641662393,41.9136210897137],[-87.72400291142165,41.91362088337554],[-87.72419264631017,41.91358326085674],[-87.7243630262623,41.91358347878832],[-87.72470332769296,41.91358391063961],[-87.72502661487826,41.91358665282711],[-87.72523968721418,41.91358881048799],[-87.72557353672603,41.91359160707046],[-87.72575263305086,41.91359289816128],[-87.72623530527127,41.913593049619266],[-87.72644799288938,41.91359126365753],[-87.7264495655605,41.91364456963746],[-87.72645280347245,41.91375432532933],[-87.72645373422856,41.91377998635565],[-87.72648298393665,41.91458642640033],[-87.72650422553004,41.915260714202866],[-87.72651026165732,41.91534379973786],[-87.72651800677205,41.91545041346902],[-87.72652302734348,41.91582288716008],[-87.72652916031713,41.91622780352392],[-87.72654194625959,41.916693452202516],[-87.7265507411543,41.917013755693],[-87.72655895627874,41.91716615498199],[-87.7262340074389,41.917170588308366],[-87.7257036824093,41.91717708611923],[-87.72533525223531,41.91718261747808],[-87.72497527466027,41.917188020648844],[-87.72480971215546,41.91719002315667],[-87.72449882044293,41.91719378292971],[-87.72432868985814,41.91719527177506],[-87.72421669376592,41.91719588545781],[-87.72421973960516,41.91715764319186],[-87.72421786548848,41.917126760650355],[-87.72421161901681,41.91709588235674],[-87.72420035212606,41.91706747468045],[-87.72415385411959,41.916972908780814],[-87.72410513029534,41.91687287003139],[-87.72410027018536,41.91680440311801],[-87.72409752118672,41.916721266041684],[-87.72409096810593,41.91652307005301],[-87.72408221819339,41.91626094952404],[-87.72407539694457,41.91605487642568],[-87.72406964644864,41.915809895795334],[-87.72406129970058,41.91546267874165]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14115203.4726","perimeter":"0.0","tract_cent":"1135952.28300781","census_t_1":"17031190600","tract_numa":"53","tract_comm":"19","objectid":"574","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1916658.23988964","census_tra":"190600","tract_ce_3":"41.92748416","tract_crea":"","tract_ce_2":"-87.77585358","shape_len":"15916.1044012"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7852033446693,41.923680991231585],[-87.78544267532278,41.92367797540949],[-87.7854484726971,41.92384901038773],[-87.78545087664082,41.923915926213354],[-87.78545744539282,41.92409735095598],[-87.78545937130538,41.92415142177097],[-87.78546385733242,41.924279928070206],[-87.78547042383056,41.924495985257806],[-87.78547458848611,41.92464487965034],[-87.78547882453468,41.92479402136031],[-87.7854845332244,41.92494284078495],[-87.78549367708244,41.925179793838105],[-87.78549825725534,41.92530160464013],[-87.7855033096345,41.92543694674826],[-87.78551438196243,41.925715538953895],[-87.78552290409088,41.92592995887734],[-87.78553197401881,41.9260381248166],[-87.78554355756334,41.926187521080465],[-87.78554695654844,41.92627559963767],[-87.78554930065708,41.92633664249573],[-87.78555287953755,41.92643805886618],[-87.78555516942983,41.92650544063484],[-87.78555823984053,41.92659327063869],[-87.78556336605541,41.92674148350412],[-87.78556564915863,41.92680966106328],[-87.78556896921594,41.92691126828635],[-87.78557212842844,41.92700590439689],[-87.78557481543375,41.92708700920114],[-87.78557797137441,41.92718202948518],[-87.7855781706186,41.92718880868272],[-87.7855834580456,41.92733850445949],[-87.78559098026811,41.927551464832156],[-87.78559784687319,41.92775399427211],[-87.78560666189327,41.92803806404825],[-87.78561293663977,41.928241057165984],[-87.78561889001614,41.92841718274155],[-87.78562568711692,41.92860637486571],[-87.78563028839913,41.92873435993192],[-87.78563384885,41.928842252824516],[-87.78563914981068,41.92902592189773],[-87.78564467431671,41.9291682087891],[-87.78565149676699,41.929343927120456],[-87.78565498167077,41.929452066346876],[-87.7856591015742,41.92958048844822],[-87.78566147902661,41.92965484093613],[-87.78566758363027,41.92984136781301],[-87.78567126479318,41.92995436524982],[-87.78567863133526,41.930175832434564],[-87.78568752468581,41.930467997658],[-87.78568177990688,41.93066700911249],[-87.78568197861091,41.93075548396784],[-87.78568918371292,41.93100167941104],[-87.78531158818848,41.931007255952686],[-87.78508202097886,41.93101101676561],[-87.78492441087711,41.93101320096407],[-87.78473949982586,41.93101563815283],[-87.78447404563353,41.931018755647045],[-87.7841665067495,41.93102236663847],[-87.78394413226813,41.93102654431813],[-87.78372172619618,41.931030117685744],[-87.78351880044035,41.931033372271],[-87.78325839849596,41.931036751266745],[-87.78294572751128,41.93104080778055],[-87.78261225432466,41.93104530098938],[-87.78244535140414,41.93104765620165],[-87.78204268981325,41.93105281275937],[-87.7816862657658,41.931057376121515],[-87.78135333752279,41.93106258179089],[-87.7810936235077,41.931066876304435],[-87.78082867855413,41.93107068842032],[-87.78048327368901,41.93107565699667],[-87.78027983818195,41.93107832711462],[-87.78021588547793,41.931079175199784],[-87.77996716824843,41.93108247376474],[-87.77961165852827,41.93108670715739],[-87.77939303393191,41.931089310137295],[-87.7792767406602,41.931091109067616],[-87.77883777480304,41.93109779900273],[-87.77839422834182,41.931105417916676],[-87.77817940668649,41.93110910721408],[-87.77775585572236,41.93111386425606],[-87.7773844441969,41.93111966802738],[-87.77718097757659,41.93112220956208],[-87.77687782391672,41.93112599542996],[-87.77649406351718,41.93113187368489],[-87.77620141215331,41.931137149966844],[-87.77596591921333,41.93113946314423],[-87.7756423195557,41.93114264101097],[-87.77528762314077,41.93114912291407],[-87.77503717100785,41.93115172289592],[-87.77503715005871,41.93115172306848],[-87.77474895208624,41.93115613420947],[-87.77444546282834,41.931160778648746],[-87.77408864463494,41.93116612138658],[-87.77390310603286,41.931168785045536],[-87.77364805116736,41.93117252037938],[-87.77353327237138,41.931174201225645],[-87.77329573011623,41.93117767922655],[-87.77312607074249,41.9311799800035],[-87.77278707838029,41.93118507635949],[-87.77255074000607,41.93118897170236],[-87.77232066280371,41.93119101543457],[-87.77219596198108,41.931192123140185],[-87.77179213324554,41.931198216907354],[-87.7713861394062,41.931203941908215],[-87.77120202925143,41.93120712959602],[-87.77110459246026,41.931208764759624],[-87.77090581504075,41.931212100513115],[-87.77040525482478,41.93121870345973],[-87.77013312270414,41.93122240955275],[-87.77011783311833,41.931222617759545],[-87.76995440589798,41.931225055834744],[-87.76989112571269,41.93122599971156],[-87.7695779739103,41.931230670859215],[-87.76918895983263,41.9312362244772],[-87.76891906810856,41.93124011213524],[-87.76867610355764,41.931244137346056],[-87.76852309923542,41.93124667211565],[-87.76812327604199,41.93125271779639],[-87.76785356722762,41.931256686176745],[-87.76746175218192,41.93126002833359],[-87.76728051317306,41.931261573778855],[-87.76702720465369,41.93126444105117],[-87.76685339259664,41.931266805654815],[-87.7667918273035,41.931267643221766],[-87.76660598719927,41.9312710894257],[-87.76624637601793,41.931277286426095],[-87.76623894197583,41.93106587509949],[-87.76622982693179,41.930824228626626],[-87.76622325770526,41.93065007470924],[-87.76621343220077,41.93036501076213],[-87.76619975168703,41.92996810049917],[-87.76619790499785,41.92991491566253],[-87.76619206830482,41.929746822941866],[-87.76618613644902,41.92957599292799],[-87.76618172616033,41.92945261043451],[-87.76617662379176,41.92930986564073],[-87.76616682388439,41.92900564704098],[-87.76616635201118,41.9289967292631],[-87.76614228484651,41.92854175104808],[-87.76613081378953,41.92808483557176],[-87.76612298821084,41.927748025224815],[-87.76611878265713,41.927627689246215],[-87.76610812454874,41.92732270616275],[-87.7661025366057,41.927169056643365],[-87.76608120435868,41.92658250957843],[-87.76607297440778,41.92634174515854],[-87.7660654576991,41.926120029201726],[-87.76605481091653,41.92580448245428],[-87.76603798237143,41.925305708074205],[-87.76601682634494,41.9247017907059],[-87.76601404941923,41.924622523629665],[-87.76600895921516,41.92443550610956],[-87.7659905791425,41.9239811093916],[-87.76624453240785,41.92397832905598],[-87.76676584942733,41.92397006284527],[-87.76720637298159,41.92396225407042],[-87.76753249373681,41.923956471858155],[-87.76795141601755,41.92395044016418],[-87.76842137679155,41.92394244455814],[-87.76855264919806,41.92394021080186],[-87.76871831266521,41.923937391621386],[-87.76936115160356,41.923928723193],[-87.76963775776989,41.923924690414026],[-87.76997926364704,41.92391971031251],[-87.77019738188837,41.92391628383165],[-87.77045052397874,41.92391230662756],[-87.77085377178949,41.92390534118243],[-87.77095174328576,41.923903648736584],[-87.77131635665032,41.92389733848247],[-87.77188288182651,41.923887733535224],[-87.77206911254149,41.92388512369644],[-87.77235325270598,41.9238811412343],[-87.77282253114899,41.923873443981286],[-87.77328558035778,41.9238660750192],[-87.77358930759247,41.923861240467545],[-87.77413388809465,41.92385239558754],[-87.77450110595028,41.9238464054105],[-87.7757155359821,41.923826587260926],[-87.77604105928073,41.92382127276232],[-87.7766639181249,41.92381128644966],[-87.77693182926996,41.923807420341724],[-87.7771037866573,41.92380493843913],[-87.77742370084917,41.92380034065117],[-87.7778203891178,41.92379435712103],[-87.77814729835754,41.923788976396295],[-87.77843891347099,41.92378417555443],[-87.77868609732467,41.923780704634396],[-87.7790568728258,41.92377552497186],[-87.77935617259499,41.92377084177106],[-87.77971372290537,41.92376530172418],[-87.77991364707083,41.92376231378949],[-87.78028402662268,41.923756112615564],[-87.78038321907678,41.923754422392754],[-87.78057737106789,41.923751823177255],[-87.78081742338054,41.923748609165294],[-87.78108890340951,41.92374428949867],[-87.78126130146377,41.923741633346054],[-87.7814421898724,41.92373882564703],[-87.78179432940868,41.92373426079537],[-87.78197646294933,41.923731897037904],[-87.7821666847483,41.92372905096138],[-87.7822938421448,41.923727164011815],[-87.78246546814755,41.923724584672826],[-87.78261974791253,41.923722251190696],[-87.78277354999025,41.92371991521081],[-87.78301379283556,41.923715969475516],[-87.78324433261147,41.92371218257038],[-87.78337115831253,41.923710402607796],[-87.78352499544046,41.92370825788529],[-87.78365866737899,41.92370513827112],[-87.78381196697883,41.9237013989368],[-87.78399112055226,41.92369942935637],[-87.7842227921466,41.923696567139686],[-87.78447625567009,41.923693434584465],[-87.78472379514592,41.92369126959595],[-87.78482357872804,41.92368913928402],[-87.7852033446693,41.923680991231585]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10918458.2059","perimeter":"0.0","tract_cent":"1130726.95413107","census_t_1":"17031170100","tract_numa":"10","tract_comm":"17","objectid":"576","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1926965.19971886","census_tra":"170100","tract_ce_3":"41.95585926","tract_crea":"","tract_ce_2":"-87.79481699","shape_len":"14926.7040014"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.79643577339084,41.95274178083166],[-87.7966862924858,41.95273960412432],[-87.79688221382003,41.95274238579218],[-87.79713243888511,41.9527438398076],[-87.79714718661627,41.952743925422276],[-87.79736468285924,41.95274293767525],[-87.79748121637517,41.95274317015455],[-87.7976195921559,41.952743304106306],[-87.7977129716687,41.9527430262829],[-87.79789186333024,41.95274248860218],[-87.79813854202776,41.95274234870452],[-87.79848590884377,41.95274278769213],[-87.79870670228485,41.952743122852205],[-87.79877430871937,41.95274322524305],[-87.79900670857829,41.95274482845559],[-87.79917622164555,41.95274473908496],[-87.7994398143494,41.952744263998],[-87.799720724445,41.95274348405421],[-87.79992150735605,41.95274517227111],[-87.80002730365902,41.95274606111219],[-87.80013082829801,41.95274665335831],[-87.80023147382596,41.95274722884955],[-87.80032065882315,41.95274733529858],[-87.80069938433714,41.952747808887],[-87.80098021363293,41.95274790391078],[-87.80113748698945,41.95274749995321],[-87.80132303291875,41.95274702317121],[-87.80154381968504,41.95274821041217],[-87.80177357187566,41.9527499606877],[-87.80207019943887,41.952751223874934],[-87.80225721835829,41.95275036025021],[-87.80237820740433,41.95275007900863],[-87.8025731261536,41.95274962571375],[-87.80298117898711,41.95275118206123],[-87.8032617423897,41.95275231307875],[-87.80342360614837,41.95275259375322],[-87.80360748807972,41.95275319752341],[-87.803815118067,41.95275387869605],[-87.80402737996573,41.95275458304277],[-87.804214646698,41.9527548699435],[-87.80441948941204,41.952754743549775],[-87.80457257201478,41.95275440586513],[-87.80483668072512,41.95275372839357],[-87.80503156385652,41.95275322575551],[-87.80527768021713,41.952754412871876],[-87.80547339460007,41.95275564216458],[-87.80562417809692,41.95275770714502],[-87.8057874564711,41.952764769482556],[-87.80607408362972,41.95276616874344],[-87.80635839485076,41.95276755610995],[-87.80670618339467,41.952765918387975],[-87.80700774163775,41.95276219256588],[-87.80726923353244,41.95276460779923],[-87.80727540751032,41.95291012494478],[-87.8072784285228,41.95295404655547],[-87.8072817338964,41.953061744554134],[-87.80728712532469,41.95325106570853],[-87.80729154398621,41.95344249325209],[-87.80729154397267,41.95344249489855],[-87.80730024858194,41.95358205082994],[-87.80729060981093,41.953865749205384],[-87.80729059984685,41.95386575382491],[-87.80700565709725,41.9539986179461],[-87.80680877198654,41.954090030412466],[-87.8066948407274,41.95414377971298],[-87.80653215360684,41.954220731212594],[-87.80616269452385,41.95439743670238],[-87.80591182423404,41.95451730506736],[-87.80561903032165,41.954656408428],[-87.80527975829243,41.954818623400364],[-87.80504389859526,41.9549322740876],[-87.80373847303375,41.95555583873018],[-87.80361386056558,41.95561536193014],[-87.80335965589971,41.955737074541936],[-87.80310006062273,41.955861533625026],[-87.80286885710896,41.955971331698294],[-87.80230641059072,41.95623983305375],[-87.80170617586688,41.95652906731875],[-87.80145657337063,41.956649205628366],[-87.80130102855354,41.956723485190516],[-87.80095505475794,41.956888701500034],[-87.80064314734507,41.9570379670998],[-87.8004164345172,41.95714610734047],[-87.80023589847684,41.95723223340344],[-87.80012833147464,41.957284051266065],[-87.79999222938055,41.95735102367659],[-87.7999260783236,41.95738205530288],[-87.79972292072758,41.95747809183976],[-87.7996211539869,41.957526575889965],[-87.79930736192023,41.95767615838175],[-87.79900312552337,41.95782161300115],[-87.79890825573172,41.95786722760353],[-87.7987452451874,41.957945603637796],[-87.7986069082369,41.9580101073671],[-87.79839339079871,41.9581134475078],[-87.79822461329321,41.958195261871566],[-87.79800251980795,41.95829529624112],[-87.79770938167668,41.958438276126444],[-87.79770937946162,41.9584382772138],[-87.7974670055321,41.958556495965325],[-87.79744950675558,41.958565052255594],[-87.79725345913428,41.958658510576235],[-87.79691367082914,41.95882031406373],[-87.79666925888306,41.9589374472375],[-87.79650927149011,41.95901400436499],[-87.79627397821554,41.95912659621507],[-87.79610619721515,41.95920731469394],[-87.7958984416014,41.95930661568717],[-87.79568678095686,41.959406721828145],[-87.79527517874523,41.959603584205304],[-87.79514587143599,41.959665526460626],[-87.79491595386968,41.9597756640551],[-87.79484784611057,41.95980811055179],[-87.79472690669166,41.95986648842598],[-87.79463338366257,41.95990911048068],[-87.79459614006393,41.959926083494665],[-87.79444277497869,41.95998845321893],[-87.79432793029505,41.96003031193926],[-87.7941971413335,41.960057579052055],[-87.7940330882305,41.960061334580594],[-87.79350983567316,41.960073312229476],[-87.79327591905437,41.96007838660954],[-87.79305273949302,41.96008323634542],[-87.79277226813302,41.9600891885665],[-87.79252278186658,41.96009624626376],[-87.7922586568749,41.960103947650914],[-87.79197955704318,41.960112950476685],[-87.79191731400458,41.9601151196244],[-87.79180063325194,41.960119186734424],[-87.79168950021466,41.9601218680008],[-87.7915114388088,41.96012616469822],[-87.79127139866421,41.96012920254339],[-87.79097761849293,41.960130724241274],[-87.7907052861707,41.960130699757094],[-87.79046560707663,41.96013542092477],[-87.79028735956483,41.96013893219356],[-87.79007286819468,41.960142500008025],[-87.78987392868129,41.96014608670392],[-87.78964222437395,41.960150313719566],[-87.78958920116034,41.96015111117273],[-87.78947300170566,41.96015285988413],[-87.78924673763217,41.96015718733826],[-87.78909813792322,41.96016002963783],[-87.78895457365917,41.960163190898776],[-87.78883513389205,41.960165587974295],[-87.78865501840363,41.96016923439021],[-87.78849435789857,41.960172259355794],[-87.7883027422792,41.96017497194558],[-87.78826170295854,41.96017584241586],[-87.7881471914489,41.96017810245994],[-87.78801702943032,41.9601812584082],[-87.78786799911292,41.96018487203604],[-87.7876629340802,41.96019103252592],[-87.78756153181246,41.9601952705763],[-87.78735803499026,41.96020291957748],[-87.78729021511444,41.96020545129448],[-87.78717356002632,41.96020895757094],[-87.78698085157505,41.96021476399153],[-87.78680541712363,41.960217021176305],[-87.78680540388572,41.96021702138772],[-87.78679992201037,41.96006409619652],[-87.78679934775303,41.95986453421672],[-87.78679194506446,41.95908722772211],[-87.78678216733161,41.958837430210856],[-87.78677435907372,41.958623920582276],[-87.78676957680128,41.95847790559232],[-87.78676911287909,41.95846335547804],[-87.78676435735984,41.95831429810019],[-87.78675929069487,41.958132771607126],[-87.78675243344675,41.95794566582715],[-87.78674616011273,41.957789188261096],[-87.78673609038633,41.9575262722258],[-87.78672622460662,41.95728863082307],[-87.78672569345721,41.95727584025086],[-87.78671569140567,41.957043741777824],[-87.78671349394382,41.9569869534978],[-87.78671057188315,41.956911446217575],[-87.78669929100346,41.95656644460857],[-87.78668436866027,41.95611006536041],[-87.78666914334049,41.9558912239724],[-87.78666184958878,41.955776755435544],[-87.78665735508991,41.95570698456974],[-87.78665590970989,41.95568454893504],[-87.78664690250294,41.955546883608044],[-87.78663123040525,41.95510172427351],[-87.78662073568749,41.95480362550203],[-87.78661939056062,41.95476541932849],[-87.78661387805936,41.954593111162986],[-87.7866106551234,41.954501384096105],[-87.78660674593502,41.95438662978173],[-87.78659956459956,41.954203117252874],[-87.7865905306089,41.953832165879945],[-87.78658193047153,41.953479026517854],[-87.78657836153165,41.953369723817964],[-87.78657493772737,41.953264861950565],[-87.78655950676234,41.95291650502593],[-87.78711754526944,41.95290957707481],[-87.787130666924,41.95290941392575],[-87.78760614605561,41.9529020156109],[-87.78807202877316,41.95289476157262],[-87.78832378855326,41.95288945452886],[-87.78857245967377,41.952884211860116],[-87.7888253952873,41.95287896280761],[-87.7889849327524,41.95287615184114],[-87.78916259700775,41.95287301493715],[-87.78946798969051,41.95286815029803],[-87.78958391892951,41.95286622960426],[-87.78979357265875,41.95286239251469],[-87.79000271170929,41.95285855260658],[-87.79012735846409,41.95285606889035],[-87.79031238629032,41.95285162037918],[-87.79063376463087,41.95284615646012],[-87.79089332116696,41.952841743142606],[-87.79100553684387,41.952839830910115],[-87.7911313353622,41.95283595199323],[-87.7912413813789,41.952833811941815],[-87.79135393391974,41.95283162269562],[-87.79151056853175,41.952828576624945],[-87.7915961027567,41.95282707109737],[-87.79170974148359,41.95282507076447],[-87.79207588428855,41.952818015964475],[-87.79268682920986,41.95280673436253],[-87.7930045829179,41.95280076595074],[-87.79331388079594,41.95279483921397],[-87.79354789068519,41.95278866747126],[-87.79370864173772,41.95278580076121],[-87.79384393643969,41.95278485343992],[-87.79394783357985,41.952784125633784],[-87.79407842985023,41.952782324190345],[-87.7944466565236,41.95277658884081],[-87.79463788152168,41.952773946186504],[-87.79505509231967,41.9527662707762],[-87.79531452666822,41.95276188860136],[-87.79554796849007,41.952757658514095],[-87.79581544370544,41.95275010213594],[-87.79608489037633,41.95274417317391],[-87.79627235690756,41.952742895216296],[-87.79643577339084,41.95274178083166]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14994089.6543","perimeter":"0.0","tract_cent":"1130294.77607715","census_t_1":"17031171000","tract_numa":"62","tract_comm":"17","objectid":"575","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921841.83606901","census_tra":"171000","tract_ce_3":"41.94180762","tract_crea":"","tract_ce_2":"-87.79652378","shape_len":"16600.5509957"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80648871194215,41.937998998659324],[-87.80674680673566,41.937996346765935],[-87.80675601197774,41.93827761116537],[-87.80676271243898,41.93845759693828],[-87.8067642596667,41.93849916285556],[-87.80677306743348,41.93873314844506],[-87.8067882414802,41.93916274413312],[-87.80680133045023,41.93951966315477],[-87.806805588077,41.939632086398426],[-87.80681175800073,41.93981229965962],[-87.80681259536321,41.93983471942379],[-87.8068155346531,41.93991528083357],[-87.8068217232026,41.94011915020905],[-87.80683065141496,41.94037423936648],[-87.80683758694808,41.94056773898269],[-87.80684457597602,41.940759208111466],[-87.80685431869195,41.94102700673113],[-87.80686086167715,41.94120568571492],[-87.80686685191255,41.941371134724854],[-87.80687259323086,41.94154723099999],[-87.80687523693828,41.94162830749209],[-87.80687724217813,41.94168981446598],[-87.80688356550566,41.94183265286015],[-87.80688887709839,41.94197337328495],[-87.80689797113955,41.942217294401026],[-87.80690517762415,41.94240917610232],[-87.80691283029213,41.942613847923056],[-87.80692201708676,41.942895666882976],[-87.80693492172264,41.94323046637778],[-87.80694419946141,41.94344587992025],[-87.80694813111806,41.943537166407204],[-87.80695290136877,41.94369904253794],[-87.80695767934839,41.9438555125807],[-87.80696248856466,41.94399924956929],[-87.80696551213613,41.94410535507651],[-87.80696967776979,41.94422455575885],[-87.80697419014821,41.9443552288781],[-87.80697743136132,41.94447961189746],[-87.8069799053206,41.94458099481344],[-87.80698349305307,41.94469895793619],[-87.80698813469047,41.944813385841144],[-87.80698881074606,41.94483004636935],[-87.80699400925856,41.944948812695415],[-87.80699920417686,41.94506801807787],[-87.80700539329031,41.945265047566195],[-87.80683555693678,41.945268995533596],[-87.80676787981903,41.94526959515564],[-87.8065992188815,41.94527123204072],[-87.8063917124159,41.94527630536692],[-87.80632288912271,41.94527775758447],[-87.80597228834226,41.945282130162866],[-87.80577476670251,41.94528606135921],[-87.80531696242608,41.94529517198274],[-87.8051570264693,41.94529804280552],[-87.80476322535677,41.94530511030052],[-87.80463428906862,41.94530808413538],[-87.8045435986882,41.94531133688514],[-87.80441999757093,41.94531576890673],[-87.80419305843913,41.94531933354192],[-87.80392291977083,41.945324132948386],[-87.80375611919122,41.94532725309572],[-87.80352990976964,41.94533142351451],[-87.80340822124528,41.9453336613086],[-87.8033077910955,41.94533622351018],[-87.80312769521618,41.94534081813201],[-87.80291704522205,41.945343741967896],[-87.80268370054249,41.94534848505212],[-87.80250660477589,41.9453521087619],[-87.80229579677147,41.945356347679315],[-87.8021777086261,41.94535876520021],[-87.80207572526848,41.94536080542014],[-87.80182454845009,41.94536583005047],[-87.80145249797262,41.945372416077866],[-87.80092598545728,41.94538386759164],[-87.80084131719708,41.94538554134392],[-87.80070786171122,41.94538817943782],[-87.80053066358946,41.94539087015664],[-87.8003813314002,41.94539319572042],[-87.80024288017815,41.945395552401806],[-87.80010266281973,41.9453979391329],[-87.79996869275595,41.94540060992697],[-87.79977152384551,41.945404605977764],[-87.79963148613226,41.945407617827456],[-87.79943471919202,41.94541184925039],[-87.7990293605673,41.9454190159434],[-87.79888050393623,41.945421647199794],[-87.79868024924637,41.94542535259001],[-87.79841256099422,41.945430480295826],[-87.79824234899657,41.94543374064225],[-87.79809111217469,41.945435231083884],[-87.79781040929555,41.94544148111931],[-87.79757991825984,41.945447665660154],[-87.79757679332064,41.945447721604864],[-87.79748047161435,41.94544945183591],[-87.79732055456901,41.94545155936363],[-87.7972023589171,41.9454541307039],[-87.79703599203859,41.945457749695336],[-87.79659903329704,41.945467781586416],[-87.79651557545358,41.94546969710279],[-87.79630510380619,41.94547318620084],[-87.7961801084125,41.94547515361111],[-87.79598683076055,41.94547918277139],[-87.79569955396471,41.945485171028906],[-87.79546864070433,41.94548911144096],[-87.79537603105143,41.945490937701514],[-87.79520327382849,41.94549434434862],[-87.79494357766116,41.94549839577676],[-87.79481312921274,41.945500824873776],[-87.79476817533288,41.94550166203371],[-87.79458299376356,41.94550510167315],[-87.7943310058781,41.94551045022703],[-87.79414799256624,41.94551394297684],[-87.79370090031632,41.9455224738849],[-87.79354784486539,41.945526041987875],[-87.79342269350379,41.94552895955383],[-87.79318791878407,41.94553312419972],[-87.79293244304309,41.94553799224579],[-87.79270939285321,41.9455422330504],[-87.7923832659915,41.945548410967994],[-87.79232730061457,41.94554947108496],[-87.79219660271926,41.945551946801416],[-87.79191185536247,41.94555815100224],[-87.79166020047525,41.94556319339943],[-87.79144990586269,41.94556741509638],[-87.79123124084153,41.94557038942981],[-87.7911730961277,41.945571739735286],[-87.79084236914197,41.945579419809924],[-87.79069946342992,41.945582394314606],[-87.79058835904016,41.94558471409535],[-87.79040582085071,41.94558852529675],[-87.79018765705507,41.94559306394412],[-87.78998721440553,41.94559709795497],[-87.78979239822975,41.94560101802247],[-87.78938022717568,41.94560939088803],[-87.78908798247333,41.94561532644026],[-87.78891074036477,41.9456187396797],[-87.78878324114427,41.945621061200754],[-87.78838563625818,41.94562830008083],[-87.78829854168345,41.945629885558205],[-87.78817725532356,41.94563212448372],[-87.78781843586489,41.9456387469835],[-87.7875763875553,41.94564219765063],[-87.78711390865811,41.94564878921602],[-87.78701809577088,41.945651132459815],[-87.78696342454796,41.945652401113],[-87.78666874639656,41.94565923906355],[-87.78630700214765,41.945663407966094],[-87.78634644202053,41.94550501557703],[-87.78635038456966,41.94521579346894],[-87.78634632078945,41.94512356828102],[-87.78632966106703,41.944748216940106],[-87.78632138571085,41.94456176228623],[-87.7863054355298,41.94417873019137],[-87.78629073573525,41.94382810889425],[-87.7862803995107,41.943581550596555],[-87.7862797229304,41.943565411348594],[-87.78627127051142,41.94336375309462],[-87.78625964717082,41.94308090563648],[-87.78625185472075,41.94291552940004],[-87.78623180163308,41.94248994219081],[-87.7862234988986,41.942317455419264],[-87.7862102500268,41.941993650047216],[-87.78619960134836,41.94173339842545],[-87.7861932459226,41.941582518216435],[-87.78618404194515,41.94136499469782],[-87.78617122622276,41.941069112978326],[-87.78615957649815,41.94080014445583],[-87.78615538120526,41.94069326441273],[-87.78615022703887,41.94054807044134],[-87.78614450624903,41.94042186379104],[-87.7861326776082,41.94015260816075],[-87.78611678468805,41.93979083469975],[-87.78611237313504,41.939687768076745],[-87.78610887369432,41.939606988895406],[-87.78610439006414,41.9395037572719],[-87.78609272758385,41.939238445013444],[-87.78607525131983,41.93884086087547],[-87.78606779692979,41.93858209989497],[-87.78606463704216,41.93844012611497],[-87.78603068234914,41.93831747224924],[-87.78623932579428,41.93831464911451],[-87.78650517593873,41.938311051145256],[-87.78666328201751,41.93830810646279],[-87.78675275602492,41.938306439687146],[-87.78715163672108,41.93829956702338],[-87.78727279693042,41.93829747894604],[-87.78753276164561,41.938292998799234],[-87.78774956822946,41.938289556128865],[-87.78803592221809,41.93828515358304],[-87.78817229804932,41.93828313928805],[-87.78837513918779,41.9382795467998],[-87.78844821787837,41.93827825121168],[-87.78848799100001,41.93827754506309],[-87.78859735280686,41.938275606788984],[-87.7888184465422,41.938273691763186],[-87.78910569718258,41.938267561939874],[-87.78936069382226,41.93826383072079],[-87.7896623914247,41.938258779744814],[-87.78987176218321,41.938255273982286],[-87.79015952418068,41.938249500691676],[-87.79020157734581,41.93824872679974],[-87.7903635426264,41.938245745606174],[-87.79048746590769,41.938243171321204],[-87.79058521033778,41.938241140552094],[-87.79076918756726,41.93823861491974],[-87.79087372868717,41.93823718023475],[-87.79101473596691,41.938234489332416],[-87.79101551307818,41.93823447461664],[-87.79117758922224,41.938231370680235],[-87.79138288346176,41.93822885498286],[-87.79156859236745,41.938225779439904],[-87.79184354996825,41.938221615486995],[-87.79203584907525,41.938219038707125],[-87.79216621599932,41.93821729155718],[-87.792538744048,41.938210265262754],[-87.79264093470556,41.93820860604358],[-87.79281215848286,41.9382059819526],[-87.79309873656803,41.9382010738729],[-87.79325359126805,41.938198945371816],[-87.79338729140039,41.93819710741017],[-87.7935918183049,41.93819403503482],[-87.79372815916322,41.938191767269664],[-87.79381303839088,41.93819016258457],[-87.79427184299026,41.938181368104196],[-87.79447374943584,41.938177484657395],[-87.79451658101243,41.93817666097218],[-87.79457118175263,41.93817561066453],[-87.79476405166638,41.938173222442394],[-87.79493443344188,41.93817017960282],[-87.79529143834452,41.93816452602335],[-87.79549544851719,41.938161777142106],[-87.79569720792786,41.93815827394858],[-87.79588877644396,41.93815494717639],[-87.79620828331213,41.93815035011797],[-87.79658281743602,41.9381450215045],[-87.79676944590528,41.93814180491032],[-87.79691474678704,41.93814024921384],[-87.79711026219243,41.93813815563219],[-87.7975018629811,41.93813133951594],[-87.79763805335911,41.93812941025643],[-87.79778722016546,41.93812726474442],[-87.79795142311286,41.93812468256751],[-87.79813173008986,41.93812243318003],[-87.79846225052107,41.93811830928488],[-87.7986434729731,41.93811544865194],[-87.79877429603802,41.93811369804317],[-87.798972671279,41.938112206259255],[-87.79915500109371,41.93810877368524],[-87.79938654837271,41.93810518305122],[-87.79960015281974,41.938101870232686],[-87.7997652742479,41.93809931717324],[-87.79996216177821,41.93809551189135],[-87.80022638596822,41.93809136032658],[-87.80050714470467,41.93808783373058],[-87.80077062921755,41.93808422632566],[-87.80104912666276,41.938078547419956],[-87.80121886925622,41.9380767258194],[-87.80132287945922,41.93807560956345],[-87.80149558322799,41.93807375572026],[-87.80186126012062,41.93806825909012],[-87.80210607634787,41.93806428778378],[-87.80231972068661,41.93806083040866],[-87.8026025454044,41.93805629672162],[-87.80281398387896,41.938052906715164],[-87.80302982470363,41.938050498777685],[-87.80327668895755,41.93804774408863],[-87.80358921511402,41.93804271007012],[-87.80370449150941,41.93804088183874],[-87.80398508257765,41.93803531578591],[-87.80413326317196,41.93803237592615],[-87.80426929286324,41.93803209721802],[-87.80443009532028,41.938031767812596],[-87.80461102106806,41.93802917081531],[-87.80482503839487,41.93802502443909],[-87.80498972321635,41.93802188556824],[-87.80523623633613,41.93801711956985],[-87.80543541798562,41.938014325602175],[-87.80561488532092,41.93801180785826],[-87.80577956420085,41.93800938132566],[-87.80592781184654,41.93800720838961],[-87.80610939971716,41.938004529745555],[-87.80632392329885,41.93800137082084],[-87.80648871194215,41.937998998659324]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2311879.55217","perimeter":"0.0","tract_cent":"1173003.42134959","census_t_1":"17031080800","tract_numa":"10","tract_comm":"8","objectid":"579","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1907522.09569325","census_tra":"080800","tract_ce_3":"41.90167239","tract_crea":"","tract_ce_2":"-87.63997712","shape_len":"6690.19738369"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63732281515333,41.900505144973685],[-87.63731777144473,41.900374375536785],[-87.63731178183325,41.900232517225916],[-87.63730243414763,41.90000748799264],[-87.63729553601668,41.89984109098696],[-87.63729080671145,41.89972365849679],[-87.63728642287684,41.89961480108574],[-87.63728072341755,41.89944961824799],[-87.63727553043765,41.899271623449756],[-87.63726713107614,41.899070941559124],[-87.63726170309687,41.89894350921747],[-87.6373984105138,41.89894237403647],[-87.6374627865314,41.89894121587053],[-87.63755815103136,41.898939500100376],[-87.63770218010242,41.89893745639615],[-87.63777346888668,41.898936445036334],[-87.63790649438016,41.89893455753057],[-87.63800807444062,41.898933194340806],[-87.63825454087967,41.898929886530475],[-87.63858634617013,41.898925747388994],[-87.63866041535893,41.89892458105997],[-87.63876893369981,41.89892287278161],[-87.63892095534062,41.89892047166575],[-87.63922149386427,41.89891707464734],[-87.63936257930274,41.89891539114353],[-87.63936957832153,41.89891530775502],[-87.63940202990729,41.898914910012934],[-87.63972805340318,41.898910914849395],[-87.63980729955593,41.89890920166319],[-87.63998380706808,41.89890538527569],[-87.6399840271446,41.89890538029275],[-87.63998886574865,41.89900436688486],[-87.63999574497706,41.89919474825902],[-87.64000059725825,41.89932904444494],[-87.64001011845232,41.89957282617446],[-87.64002374706627,41.899915663324755],[-87.64003284719396,41.90014069058521],[-87.64004217124696,41.90036536243784],[-87.64004387377851,41.90046839153529],[-87.64020588094021,41.90046451196557],[-87.64031401315715,41.90046192641083],[-87.64047361810849,41.90045830666346],[-87.64064618114729,41.90045550580419],[-87.64066849417206,41.90045511268295],[-87.64069710067852,41.90045460878096],[-87.64096526403233,41.90044988349622],[-87.64109363002241,41.90044780120116],[-87.64116876086362,41.90044658230236],[-87.64133164017908,41.90044370091149],[-87.64143835609467,41.90044181295186],[-87.64151293531252,41.90044044752952],[-87.64170677704266,41.90043689868389],[-87.64183970172128,41.900434454702335],[-87.64190234325937,41.90043328964222],[-87.64205841423428,41.90043039915592],[-87.64213883102384,41.90042902785392],[-87.64246849849943,41.900423405803046],[-87.64253657601873,41.90042224483591],[-87.64293210737615,41.90041584202616],[-87.64309182320565,41.90041309059989],[-87.64309823820054,41.90054982632358],[-87.6431016901275,41.90066359502705],[-87.64310352425764,41.90072406207677],[-87.6431114671971,41.9009211183786],[-87.64312102808397,41.90115550597855],[-87.64312970735563,41.901372846577836],[-87.6431344750991,41.90148331088313],[-87.64313837974112,41.90157377660988],[-87.64314139429696,41.90163081990374],[-87.64314771498405,41.90183936476047],[-87.64315519331649,41.90202497477593],[-87.64316329114631,41.90222469386779],[-87.6431733456917,41.90249854645202],[-87.64317987550757,41.90265149491882],[-87.64318449273796,41.90275964490489],[-87.64319441220135,41.90297101046573],[-87.64320456520731,41.903218683622654],[-87.64321286231176,41.90352954529434],[-87.64321993820056,41.90371649997725],[-87.64302222063608,41.903719644966124],[-87.64272455527522,41.90372364546568],[-87.6423619627771,41.90372925781219],[-87.64220981572647,41.90373195359912],[-87.64205906630775,41.90373462466738],[-87.6418040471728,41.9037388402597],[-87.6415003504685,41.90374349912136],[-87.64135522387636,41.90374583541483],[-87.64117105573872,41.90374829048024],[-87.64098598891712,41.903750827098335],[-87.6406169706785,41.90375612076729],[-87.64026242169577,41.90376185733245],[-87.63991116979659,41.903768353655565],[-87.63987446720539,41.903768804899634],[-87.63964219563378,41.90377166074693],[-87.63936485627491,41.90377506978193],[-87.63922042071275,41.903778066168776],[-87.63896697701531,41.903782598647936],[-87.6387856210318,41.90378583774644],[-87.63847420228555,41.903791143870656],[-87.63833590064088,41.9037935577122],[-87.63811161695747,41.9037960290619],[-87.63790263089928,41.90379975809527],[-87.63776000159122,41.90380213241035],[-87.63762979380319,41.90380408784373],[-87.63744453764596,41.903804447192705],[-87.6374436099329,41.90359560549456],[-87.63742851203261,41.90322350585199],[-87.63741863683833,41.90297256826452],[-87.63741456525682,41.90284503693555],[-87.63740822104145,41.90264632564247],[-87.63739855261485,41.90241698639448],[-87.63738871669165,41.90218951220002],[-87.63738400567779,41.902065802438415],[-87.6373781983655,41.90191332372248],[-87.63737063836419,41.90173339341983],[-87.63736345084422,41.90154619315053],[-87.6373559657006,41.90135602729889],[-87.6373536379393,41.90128343617558],[-87.63734795261293,41.901106171162574],[-87.63734129740591,41.900954594249974],[-87.63733474809813,41.900799999317925],[-87.63732556723632,41.90057650816473],[-87.63732281515333,41.900505144973685]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"17521753.1169","perimeter":"0.0","tract_cent":"1151585.74201129","census_t_1":"17031130500","tract_numa":"43","tract_comm":"13","objectid":"577","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935290.8302109","census_tra":"130500","tract_ce_3":"41.97832005","tract_crea":"","tract_ce_2":"-87.7179147","shape_len":"17307.5040661"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70887663649168,41.98306763443837],[-87.70885744237948,41.98289371246166],[-87.70885125239303,41.982653945553714],[-87.70884321951789,41.9824371650005],[-87.70883653160955,41.98202629452935],[-87.70882898842434,41.98175564825207],[-87.70881678024459,41.981259512305904],[-87.70879321328347,41.980301740873735],[-87.70878599169303,41.98002832434624],[-87.70878412292313,41.97996363337513],[-87.70877711007489,41.97972531629218],[-87.70877059497555,41.97942432436321],[-87.70876656924516,41.97923832797627],[-87.70875570247685,41.97875087133115],[-87.70874502633727,41.978326642352364],[-87.70873982734263,41.978121018232194],[-87.70872624549739,41.97757825105716],[-87.7087212791624,41.97737712894076],[-87.70871172739727,41.97690189098883],[-87.708699500629,41.97645578186903],[-87.70869039258258,41.97620236012498],[-87.70868478024188,41.97605411522309],[-87.70868094646495,41.97574776563795],[-87.70868069519987,41.97572767808093],[-87.7086782959263,41.97553597452312],[-87.70867224924622,41.97532304665871],[-87.708661267481,41.97503182672111],[-87.70865527299566,41.97479474986155],[-87.70865169040066,41.974681319595305],[-87.70873701665397,41.97467510831118],[-87.70878876535356,41.974663205586126],[-87.70886806899532,41.97465024527765],[-87.70903389091596,41.974619863237265],[-87.70919820946584,41.97458524671101],[-87.7093608402129,41.97454644958686],[-87.70952159899448,41.974503498313204],[-87.70968026434079,41.97445647402073],[-87.70983668849811,41.97440540335756],[-87.70986695289955,41.974394582402574],[-87.70999068814443,41.9743503402214],[-87.71008558648158,41.974324578612745],[-87.71035480490234,41.97425149467882],[-87.71048349591426,41.974193302355516],[-87.71057251410242,41.974156985518476],[-87.7105972532765,41.97413917262809],[-87.71066066327053,41.97411926435486],[-87.71071574837418,41.97410076532514],[-87.71075799156647,41.97408680688884],[-87.71083403605363,41.974060984673066],[-87.71095777759406,41.973993599337625],[-87.71101389678523,41.97395951869486],[-87.71104753811596,41.973936992495865],[-87.71105857519747,41.973929602084254],[-87.71107766366744,41.9739167419334],[-87.71115343676871,41.97386337720782],[-87.7112230597521,41.973771823698556],[-87.71129568423147,41.9736892873963],[-87.71133048762118,41.97363483887513],[-87.71147500274446,41.973378709428715],[-87.7115158542574,41.97330360231295],[-87.71154470860068,41.97324072423628],[-87.7115750349087,41.97317395735423],[-87.71164488367417,41.97307417218763],[-87.71176444673685,41.97294831179597],[-87.7119402195019,41.972748662029396],[-87.71202065833717,41.97265642562335],[-87.71208412106358,41.97259683565003],[-87.71215230091671,41.97253241392339],[-87.71223747308474,41.972479807602106],[-87.71231578607342,41.97244279455115],[-87.7125289837922,41.97236507920638],[-87.71283410914768,41.97227666401003],[-87.71325431775084,41.97212943018658],[-87.71346623152732,41.97207794212584],[-87.7136517484187,41.972032867095244],[-87.71402580702959,41.97196869536932],[-87.71417750075236,41.97196465634615],[-87.71422689839238,41.97195976364364],[-87.71430450845213,41.97195414490261],[-87.7143845500595,41.971951859706145],[-87.71443507096775,41.97194872898652],[-87.71447874748803,41.9719421865267],[-87.71454675344454,41.97193720190067],[-87.71461415398734,41.97193017667402],[-87.71461923134329,41.97192990876151],[-87.71466854310955,41.97193015969197],[-87.71468079401312,41.97193022214333],[-87.71468600531841,41.97193024857958],[-87.71469659707897,41.9719303023629],[-87.71507612178533,41.97193223299734],[-87.71550105143105,41.971919729363094],[-87.71566578877685,41.97192061581119],[-87.71580786855702,41.97194105609692],[-87.71590458296755,41.971964351811756],[-87.71591365525379,41.97196653724154],[-87.71591792614154,41.971967565961734],[-87.71596261986116,41.97197833171569],[-87.71620347545624,41.972086238781756],[-87.71654753196978,41.97228048395225],[-87.71696068789136,41.9725167835682],[-87.71713179469613,41.972604302068596],[-87.71715023386254,41.97261373325533],[-87.7171525394994,41.97261488776832],[-87.71715274638134,41.97261501840517],[-87.71719481371082,41.972636535096164],[-87.71747864446408,41.97278070179566],[-87.71773709131502,41.9729145506818],[-87.71793502952278,41.973023321920536],[-87.71806861791188,41.973097225872415],[-87.71829104406834,41.97319504114734],[-87.71836621542342,41.973217507248656],[-87.71838799407394,41.973225522826944],[-87.71871434029728,41.97334563237677],[-87.7188262388928,41.97339603870237],[-87.71894803529418,41.97346112449704],[-87.71907437733762,41.973535427842144],[-87.71914670559472,41.973578294823376],[-87.71925179858442,41.9736251517419],[-87.71961629808818,41.97377499482741],[-87.71962808823525,41.97377984155194],[-87.71967771221611,41.97380024159357],[-87.7197229347447,41.9738188321603],[-87.719948638588,41.973889850864154],[-87.72013453882919,41.973962303047436],[-87.7202644273314,41.973981492691195],[-87.72037043329674,41.974009994735546],[-87.72050063748706,41.97406148507768],[-87.72056059299076,41.97407936802051],[-87.7206361231761,41.974087647015466],[-87.72082483562949,41.97408547074301],[-87.72084468680441,41.97408695836114],[-87.72085949976025,41.97408806838749],[-87.72108663206038,41.97410508873682],[-87.72127959187274,41.97413561783692],[-87.7214855863493,41.974168301678056],[-87.72176640356312,41.97421403454671],[-87.72199407415947,41.97427205217946],[-87.72212352694405,41.97431312928626],[-87.72225548697027,41.974355001690945],[-87.72243423426218,41.9744144594324],[-87.72266272931846,41.97450176105507],[-87.72279745424318,41.97456537450288],[-87.7232435813757,41.97484587127257],[-87.7232873067761,41.97487389692917],[-87.72355390658201,41.97504477337413],[-87.72365078551185,41.975120588862374],[-87.7237139987968,41.9751711160389],[-87.72377609577086,41.9752307348366],[-87.72378622662599,41.97524046139627],[-87.72393157478122,41.97543988593281],[-87.72400456258221,41.97551057984411],[-87.72408098069442,41.97557644263135],[-87.72421149173645,41.97568892606904],[-87.72432533604155,41.97575983654695],[-87.72444240047453,41.97580930432092],[-87.72445061380945,41.97581187255019],[-87.72474980476646,41.97590643261886],[-87.72486248220636,41.975937764966076],[-87.72505425214605,41.97598202987245],[-87.72522503120067,41.97601386179776],[-87.72541103673834,41.976049451333395],[-87.72567894903061,41.97609598443691],[-87.72582167205812,41.97610810079862],[-87.72596586844902,41.97611610819867],[-87.72622716159663,41.97609295739979],[-87.72638176474987,41.9760623263198],[-87.7265576065842,41.97601418950414],[-87.72665723038249,41.975975693446955],[-87.72675326133667,41.97593212898509],[-87.72691241801242,41.975851741398785],[-87.72712079137408,41.97571590616135],[-87.72730803085348,41.97554238479537],[-87.7273624391263,41.975541991985246],[-87.72754978181749,41.975539845181906],[-87.7282333870483,41.97553200844074],[-87.72823939536046,41.9757360225244],[-87.72824593982246,41.97594598858514],[-87.72825326998415,41.97621281867189],[-87.72825774843517,41.976404058359556],[-87.72825892685732,41.97645284333139],[-87.72826422247151,41.9766719815935],[-87.72827228925945,41.97695813471705],[-87.72827909958417,41.977206081900455],[-87.7282831795762,41.97735492481486],[-87.72828927002934,41.977577096830736],[-87.72828954191428,41.97758703200289],[-87.7283141002035,41.978446645915085],[-87.72832545605998,41.978886573924136],[-87.72833308097002,41.97916210701421],[-87.72835924580802,41.98010756475463],[-87.72838290768169,41.98097069134732],[-87.72840099274258,41.9816303775623],[-87.72842061897092,41.98230407245676],[-87.72843257411627,41.98283153068447],[-87.72790782086065,41.98282606029315],[-87.72734044334864,41.98282715550046],[-87.72698006624408,41.98283181122663],[-87.72638257639346,41.98283954826096],[-87.72560682034079,41.98284991182843],[-87.72500679524927,41.98285792437909],[-87.72473690740011,41.98286143346003],[-87.72458807712563,41.98286338854761],[-87.72395807080606,41.982871381248614],[-87.72370319169235,41.98287461521257],[-87.72354178175212,41.9828766607538],[-87.72299201054054,41.982882740105495],[-87.72273275664291,41.982885752170546],[-87.72213316994696,41.98289342848976],[-87.72168506052469,41.98289927442122],[-87.72090323870839,41.98290976021153],[-87.72028084162963,41.98291810125481],[-87.71980157696062,41.982924184807],[-87.71938205064733,41.98292946101274],[-87.7186551776413,41.98293996163137],[-87.71806521787006,41.98294848080434],[-87.71776432525687,41.982951834756],[-87.71742700934267,41.98295633826436],[-87.71680681880987,41.98296461605202],[-87.71653715228022,41.98296797010564],[-87.71617608995017,41.98297281435094],[-87.71555143083862,41.982981192779235],[-87.71495875345241,41.98298943740111],[-87.71447392781688,41.98299597066676],[-87.7141554164251,41.98300319926518],[-87.71374168063727,41.98300816364353],[-87.71361428263208,41.98300969191657],[-87.71332237360905,41.98301203992431],[-87.71293411823855,41.98301639121156],[-87.71252152791692,41.983022005562056],[-87.71217929232591,41.98302666160707],[-87.71191774724704,41.98303067964282],[-87.71146929953048,41.98303708758389],[-87.71130150510335,41.98303911398306],[-87.71097517521999,41.983043054059735],[-87.71071329608773,41.98304736940183],[-87.71027823862795,41.983053516008354],[-87.71007191577785,41.983056424782916],[-87.70971182161648,41.98306149955581],[-87.7094691740892,41.98306624583426],[-87.70932435326202,41.98306806570922],[-87.70909285916063,41.98306430991759],[-87.70887663649168,41.98306763443837]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9308030.99334","perimeter":"0.0","tract_cent":"1136593.83750001","census_t_1":"17031110400","tract_numa":"43","tract_comm":"11","objectid":"578","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1933192.97897977","census_tra":"110400","tract_ce_3":"41.97284568","tract_crea":"","tract_ce_2":"-87.77309892","shape_len":"13401.8396725"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77761462935618,41.96854023112246],[-87.77823441653935,41.96853291984186],[-87.77831306168007,41.96895992722798],[-87.77831396650326,41.969017511700486],[-87.77830735673523,41.969359572870644],[-87.77829992413471,41.969745619712214],[-87.77829270986471,41.9701191265487],[-87.77828844070437,41.970305020289445],[-87.77828384139507,41.97050530388112],[-87.77827723274292,41.97082173378496],[-87.77827412723313,41.970969137647565],[-87.77827165859621,41.97108685225128],[-87.77826818550588,41.971253930303035],[-87.77826382679503,41.97145947786654],[-87.77825684932631,41.9717930300659],[-87.77825308255179,41.97197270259109],[-87.77825024319166,41.97209642519657],[-87.77824603864876,41.97227996492836],[-87.77824326513314,41.97245958735637],[-87.77824191677068,41.972547368589076],[-87.77824060046737,41.972631499356055],[-87.778239563552,41.97270128310897],[-87.77823820052235,41.97279303897722],[-87.77823542564582,41.97298555915745],[-87.77823189373616,41.973172172331864],[-87.77822944639796,41.9733014708404],[-87.77822612115321,41.97342184313447],[-87.77822379488386,41.97353728068338],[-87.7782216875798,41.97364020570421],[-87.77822016340625,41.973714895651874],[-87.77821829460501,41.9738064882476],[-87.77821578463173,41.97392859332336],[-87.77821421973432,41.97400471005788],[-87.77821275175968,41.97410176555882],[-87.7782097233789,41.97424299524316],[-87.77820584868334,41.97442239274773],[-87.77820337427374,41.97453793932809],[-87.77820126974606,41.974640535039256],[-87.77819901714962,41.97475594547738],[-87.77819425462667,41.97499949794589],[-87.77819086536071,41.975190698135606],[-87.77819024571389,41.97523240707622],[-87.7781885756572,41.975344252851016],[-87.77818299298308,41.975525508121436],[-87.7781800303596,41.975669098105314],[-87.77817822971998,41.97575638259526],[-87.77817519820849,41.97594876422354],[-87.77817005439206,41.97611822151091],[-87.7781664588157,41.976243641775795],[-87.77816387240757,41.97639746944835],[-87.77816165642233,41.976512880027535],[-87.77815944042683,41.97662829060431],[-87.77815722322941,41.97674383838319],[-87.7781550075607,41.97685916663067],[-87.77815083403308,41.97707720102005],[-87.7781454045974,41.9773593339649],[-87.77814318845964,41.977480510647865],[-87.77814071209616,41.97761589474122],[-87.77813786742435,41.97775709750931],[-87.77813641843294,41.97782898867675],[-87.77813322694328,41.97798649061473],[-87.77813090883217,41.97810094019577],[-87.77812884841255,41.97820265790977],[-87.77812785580966,41.97825342090078],[-87.77812611445589,41.978340760521505],[-87.7781255746883,41.978367843213256],[-87.7781235143764,41.978469588365],[-87.77812248414244,41.978520406055715],[-87.77812270983623,41.97853676260787],[-87.77812895069472,41.978572910367284],[-87.77812487666273,41.97877636960324],[-87.77812039426072,41.97897835898179],[-87.77811706426274,41.97914645641487],[-87.77811405769626,41.97929383062644],[-87.77810347193024,41.97981151720584],[-87.7732242796786,41.977095064855504],[-87.77322035978206,41.97709278395651],[-87.77081899088358,41.975695421921166],[-87.77079386462397,41.97568107613309],[-87.76850592163697,41.97437474107322],[-87.76748224138052,41.973803359193866],[-87.76650484430772,41.9732452368755],[-87.76528771117992,41.972561401845226],[-87.76459454306244,41.97216508594594],[-87.76435738413215,41.97190392434305],[-87.76464491942328,41.971753137735945],[-87.76479350537805,41.97167550981376],[-87.76499651689649,41.971581122240956],[-87.76537545651233,41.97137105583333],[-87.76549618922569,41.97130892267119],[-87.76569282661394,41.97120772605874],[-87.76583130856629,41.97113799432363],[-87.7659381710402,41.971084187208554],[-87.76604499656573,41.971030379536295],[-87.76619223203308,41.97095624527462],[-87.76626367038676,41.97092026485342],[-87.76647785452113,41.97081144123509],[-87.76657466290708,41.97076236209442],[-87.76676131603207,41.970667675200154],[-87.76705738148571,41.970517491280866],[-87.76735906415645,41.97035828224007],[-87.76756038370344,41.97032878063782],[-87.76755322067498,41.970152513657986],[-87.76754658066925,41.96992633072806],[-87.76754115772235,41.96973843549499],[-87.76753906636397,41.96966597808464],[-87.76753648185638,41.96960013178547],[-87.76752838394174,41.96939380971826],[-87.76751971213763,41.969135454617465],[-87.76750947130354,41.96882171363652],[-87.76750466639137,41.96868961145454],[-87.76791006422674,41.9686836741867],[-87.76813701984908,41.96868034968886],[-87.76820678138215,41.9686793226538],[-87.7684569027053,41.96867563982499],[-87.76891844909588,41.968668826525594],[-87.76938970395452,41.96866192185033],[-87.76980123375247,41.96865587465616],[-87.76999717928969,41.968652994418115],[-87.77019748864723,41.968650600668816],[-87.77051487039073,41.96864680693036],[-87.77098828815357,41.96864061979001],[-87.77148939815406,41.96863407226626],[-87.77209881320225,41.96862613112006],[-87.77251515422137,41.96862070144228],[-87.77283032532888,41.96861707683472],[-87.77300757803667,41.96861503788996],[-87.7735331050653,41.968608381077026],[-87.77393918450258,41.96860322550237],[-87.77442131545602,41.968597121542956],[-87.774803600258,41.96859228614023],[-87.7753970886384,41.96858477139833],[-87.7759004065291,41.968577944769464],[-87.77610918413245,41.968575112561524],[-87.77661808994334,41.96856847071828],[-87.77702532402374,41.96856152608908],[-87.77711274478612,41.96855421731044],[-87.77718572873803,41.9685481156851],[-87.77731792258263,41.968543953627716],[-87.77761462935618,41.96854023112246]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4209009.83262","perimeter":"0.0","tract_cent":"1168422.30897625","census_t_1":"17031072000","tract_numa":"19","tract_comm":"7","objectid":"580","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912320.43004342","census_tra":"072000","tract_ce_3":"41.91493968","tract_crea":"","tract_ce_2":"-87.65666493","shape_len":"10627.7259074"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6533402927592,41.91723696529842],[-87.65332731031572,41.91687816306689],[-87.6533183165838,41.916630224044546],[-87.65331827238211,41.91662898860613],[-87.65330680341489,41.916304113947874],[-87.65329841405163,41.916066468782944],[-87.65329484341763,41.915964970221445],[-87.65328746307796,41.915755181634665],[-87.65328242623147,41.915613631437466],[-87.65327510690372,41.915417101934956],[-87.65327493379338,41.91541243544814],[-87.65326496519309,41.91515422689926],[-87.65325518260957,41.914886358934126],[-87.65324623412683,41.914641329794904],[-87.65323608632335,41.91436305901659],[-87.65323277471774,41.914272233438325],[-87.65322583354636,41.91407817538416],[-87.65321230380245,41.91373479007352],[-87.65320541118433,41.913559838430764],[-87.65320450155343,41.91353675133604],[-87.65319359268304,41.91325987500145],[-87.65318428609179,41.91294725331093],[-87.65317385429732,41.91265860730435],[-87.65316549208816,41.91243578125446],[-87.65314683860818,41.911914141789566],[-87.65314105195071,41.91175232311266],[-87.65313333936163,41.911536636145364],[-87.65312745318722,41.91137128888622],[-87.65312400151544,41.91127423247851],[-87.65310748101494,41.91083988357592],[-87.65336756150238,41.910835301600294],[-87.65353281611172,41.910832390116106],[-87.65372833541183,41.910829211582595],[-87.6540796313617,41.91082410086078],[-87.65457448009673,41.91081690029091],[-87.65497724899882,41.91080951094979],[-87.65553818087375,41.91079935989269],[-87.65577598625916,41.910794869568804],[-87.65597233008354,41.91079360590492],[-87.6562149235263,41.910792941205216],[-87.65629716916278,41.91079152276826],[-87.6566821017251,41.91078488286964],[-87.65686079758393,41.9107845103937],[-87.65693010338141,41.911075585872865],[-87.65701224668065,41.91127436777712],[-87.6570573851183,41.91143574736684],[-87.6571174455624,41.911572214878134],[-87.65729010232286,41.912029843904314],[-87.6574120103435,41.91235643882995],[-87.65746243578715,41.91248084122606],[-87.65753056937376,41.91264893057144],[-87.65759512578254,41.91281453011222],[-87.65771538144755,41.91342524254539],[-87.65786196920335,41.91380864030179],[-87.6580772270633,41.91410805886253],[-87.65830802491777,41.91436256411294],[-87.65865084323801,41.914707735368964],[-87.6591490066673,41.915080934600255],[-87.65923478593139,41.915147359788364],[-87.65937015569499,41.91520866464884],[-87.6595469819935,41.91530728714368],[-87.65986984529766,41.91545130480543],[-87.6599058807401,41.91547390905349],[-87.65993751096639,41.91549525255309],[-87.66004171464058,41.915561093913595],[-87.66004700724383,41.915564446835425],[-87.66008389799451,41.91558867376497],[-87.66020818751903,41.915669671110294],[-87.66026814792862,41.91571176230174],[-87.66047768506233,41.915823555292135],[-87.6605998500673,41.91590399091661],[-87.66065153182298,41.91592976013206],[-87.66073539839373,41.91596963108988],[-87.66086959243323,41.916073270727956],[-87.6609297828908,41.9161180248204],[-87.661015312252,41.91615000193395],[-87.66105709973249,41.916159329992944],[-87.66113153902211,41.91617675256613],[-87.6611722259148,41.916182424317164],[-87.66125963002919,41.916179313548746],[-87.66132892672108,41.91617911566789],[-87.66143738667877,41.91614413001843],[-87.66151276161632,41.91612146437549],[-87.66162234098742,41.91608135394277],[-87.66173397730014,41.91603431226469],[-87.66178104121988,41.91601353929853],[-87.66186408550918,41.91598811943976],[-87.66197621311935,41.91594678839218],[-87.66206618405339,41.91591951536775],[-87.6621511579989,41.915867844318775],[-87.66221580777476,41.915830708597476],[-87.66227636052344,41.91580938309197],[-87.66235807623545,41.915759997998336],[-87.66238185080529,41.91573516444545],[-87.66244891656117,41.91569184102757],[-87.66251544501097,41.91566473227083],[-87.66256082116736,41.915640107203416],[-87.66261038807987,41.91561171956233],[-87.66264862736095,41.91559149842107],[-87.66269079980651,41.91558159109481],[-87.66273297508054,41.915574921958886],[-87.66278863987205,41.91556772785277],[-87.66287399043868,41.915543089112035],[-87.66298260796893,41.915503465444935],[-87.66302887729515,41.91548825810884],[-87.66362045478506,41.91561498428526],[-87.66362055999939,41.91561500657832],[-87.66370630065177,41.915633373746466],[-87.6637510512211,41.91566500123926],[-87.66377108192789,41.91567845499235],[-87.6637952839739,41.91571457294787],[-87.66389591223735,41.915890142079434],[-87.66389591367538,41.91589014510647],[-87.66393945485814,41.91601973853459],[-87.66403936456356,41.91627900065123],[-87.66421599039332,41.91679619295558],[-87.66425682804037,41.916958377403986],[-87.66406336551124,41.91700194271177],[-87.66388753509436,41.91704060035593],[-87.6637937201965,41.917048780005345],[-87.66371778823088,41.917050999123276],[-87.66360856787615,41.917053188691874],[-87.66340850453095,41.917056961239325],[-87.6632919765934,41.91705893333871],[-87.66305368192221,41.917059936622806],[-87.66256038826468,41.91706035236438],[-87.6622401764691,41.917057418215926],[-87.66188049830343,41.91707129843942],[-87.66183459878636,41.91707306953609],[-87.66152357976043,41.917069301860565],[-87.66107602829622,41.91707593052201],[-87.66081672461696,41.91708083358895],[-87.66054845465341,41.917085848462946],[-87.66013687076071,41.91709549950317],[-87.6600308820106,41.91709856685057],[-87.65994954126003,41.917100556920005],[-87.65943920840314,41.917110517906316],[-87.65910240308025,41.91711801792199],[-87.65899059229297,41.91712050758895],[-87.65874448603155,41.917124715096804],[-87.65847125417447,41.91712986034485],[-87.65837454805042,41.917147376386986],[-87.65830472766135,41.91716927651617],[-87.65828011997193,41.91719396052021],[-87.65827919420548,41.917194888938134],[-87.65824943404586,41.9172247415823],[-87.65821405366566,41.917280296262085],[-87.65820343105754,41.917343433356194],[-87.65820729716869,41.917586953825406],[-87.65820952524511,41.91772733166594],[-87.65821264103043,41.917857042149635],[-87.65821910661327,41.918034165397216],[-87.65753052301429,41.91804441191484],[-87.65729055566126,41.918047966374196],[-87.65701155766577,41.91805256513861],[-87.65662940395399,41.91805886322802],[-87.65642909076274,41.918061606771545],[-87.65598943765714,41.91806765869919],[-87.65579577005911,41.91807088847187],[-87.65554822709295,41.91807501670408],[-87.6553994720472,41.91807704713957],[-87.65497517931227,41.918082828572985],[-87.65476192330348,41.91808648093913],[-87.65457738031516,41.9180884925514],[-87.65439434394173,41.918090487528566],[-87.65414813961519,41.91809317033331],[-87.65394778807183,41.918096046531815],[-87.65369370971933,41.91809970207643],[-87.65336745823649,41.91810496864593],[-87.65336156376276,41.91794674829136],[-87.65335497773599,41.91772094121875],[-87.65335464075127,41.91770938657779],[-87.65334449456476,41.917363746019646],[-87.6533402927592,41.91723696529842]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3937574.01993","perimeter":"0.0","tract_cent":"1167291.48642716","census_t_1":"17031070900","tract_numa":"25","tract_comm":"7","objectid":"581","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914584.18435026","census_tra":"070900","tract_ce_3":"41.92117596","tract_crea":"","tract_ce_2":"-87.66075419","shape_len":"8566.19480873"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66107602829622,41.91707593052201],[-87.66152357976043,41.917069301860565],[-87.66183459878636,41.91707306953609],[-87.66188049830343,41.91707129843942],[-87.6622401764691,41.917057418215926],[-87.66256038826468,41.91706035236438],[-87.66305368192221,41.917059936622806],[-87.66304651009563,41.917374057213244],[-87.66304881992343,41.91742017371716],[-87.66304426427591,41.91771506923367],[-87.66305444986249,41.91779071458901],[-87.6630618217357,41.917845467632795],[-87.6630952357225,41.91791078291425],[-87.66309256518187,41.918234641555344],[-87.66309170362291,41.91846954235339],[-87.66309587226414,41.918646181284636],[-87.66310482426833,41.91901491298921],[-87.66313313463176,41.91940720515612],[-87.66314299262181,41.91948125362555],[-87.66314627842728,41.91966590435442],[-87.66314912425874,41.91985362576835],[-87.66315186422113,41.920034294445855],[-87.66315223519602,41.920058747666125],[-87.66315448150854,41.92017415548538],[-87.66315767484194,41.92033597369183],[-87.66316438075852,41.92058391001353],[-87.663185016945,41.920740989198066],[-87.66317861082548,41.92084041545044],[-87.66317906567377,41.92104128253088],[-87.66318431325394,41.92121400700321],[-87.6631913343583,41.92144549596361],[-87.66319747424934,41.92162024785092],[-87.66320999257735,41.921976530139766],[-87.66321237019943,41.9220543976856],[-87.6632177373429,41.92223014174634],[-87.66322115328164,41.922331478472806],[-87.66322698440722,41.9225088168831],[-87.66323943417986,41.92288523254322],[-87.66325125078862,41.923241364662616],[-87.66325866356921,41.92341933658509],[-87.66326332091994,41.92353117033252],[-87.66327580841278,41.9238850837779],[-87.66328545574282,41.92415851942428],[-87.66330707031659,41.924777816874354],[-87.66330736577963,41.924786278766426],[-87.66332744603542,41.92521779698108],[-87.66276644649272,41.925225928972374],[-87.66210474656565,41.925236456672984],[-87.66194465238414,41.92523900309224],[-87.66172567745893,41.92524248590362],[-87.66134547186725,41.92524821963667],[-87.6612928803801,41.925249011718904],[-87.66088580791458,41.92525514210721],[-87.66051486356089,41.92526072754779],[-87.66002300305568,41.925268134073185],[-87.6599449769127,41.925269377096875],[-87.65905566599625,41.92528354222803],[-87.65905482031397,41.9252835553737],[-87.6584533872407,41.92529161352405],[-87.65844028248848,41.92492991946891],[-87.65843927125219,41.924892400263396],[-87.65843565938503,41.924758378320576],[-87.65842418355913,41.92439503025668],[-87.65841914791952,41.92423561668556],[-87.6584073354455,41.92386161901939],[-87.65839416698118,41.92347662109279],[-87.6583820544246,41.923122505712804],[-87.65836791893855,41.92265771564074],[-87.65835907650286,41.92239847163986],[-87.6583557433388,41.92230298046631],[-87.6583474772874,41.92206610527007],[-87.65833494805533,41.921661442291835],[-87.65832872661979,41.92146050922828],[-87.65832120653448,41.92120530695631],[-87.65831884817095,41.921125271755955],[-87.65831314208305,41.92093105654797],[-87.65830460982367,41.920659849466404],[-87.6582946845996,41.92035699298572],[-87.65828436811444,41.92004238945046],[-87.6582790858758,41.91984698542815],[-87.65827204911574,41.91958663830478],[-87.6582630718429,41.91929492917177],[-87.65825638435798,41.91907880947883],[-87.65824489421057,41.91873269497679],[-87.65823598008393,41.918493648153174],[-87.65823123005252,41.918366260393995],[-87.65821910661327,41.918034165397216],[-87.65821264103043,41.917857042149635],[-87.65820952524511,41.91772733166594],[-87.65820729716869,41.917586953825406],[-87.65820343105754,41.917343433356194],[-87.65821405366566,41.917280296262085],[-87.65824943404586,41.9172247415823],[-87.65827919420548,41.917194888938134],[-87.65828011997193,41.91719396052021],[-87.65830472766135,41.91716927651617],[-87.65837454805042,41.917147376386986],[-87.65847125417447,41.91712986034485],[-87.65874448603155,41.917124715096804],[-87.65899059229297,41.91712050758895],[-87.65910240308025,41.91711801792199],[-87.65943920840314,41.917110517906316],[-87.65994954126003,41.917100556920005],[-87.6600308820106,41.91709856685057],[-87.66013687076071,41.91709549950317],[-87.66054845465341,41.917085848462946],[-87.66081672461696,41.91708083358895],[-87.66107602829622,41.91707593052201]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"916389.089893","perimeter":"0.0","tract_cent":"1168338.90877582","census_t_1":"17031061600","tract_numa":"10","tract_comm":"6","objectid":"582","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923723.08125927","census_tra":"061600","tract_ce_3":"41.94623093","tract_crea":"","tract_ce_2":"-87.6566407","shape_len":"4575.28129676"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65427786339615,41.94563284407694],[-87.65427455682286,41.94553178257805],[-87.65427400490628,41.945514929842496],[-87.65427161693708,41.94539606382822],[-87.65426816024566,41.94522400862921],[-87.65426159716256,41.94500075546477],[-87.65425598685182,41.94480895661804],[-87.65425322435055,41.94471596631128],[-87.65424496895822,41.944466428639615],[-87.65453692204844,41.944747171681115],[-87.65468027188074,41.94492452694301],[-87.65481531480985,41.94509151468606],[-87.65498141487956,41.945297049874554],[-87.65510854950331,41.945454276022666],[-87.65522972507215,41.9456050179296],[-87.6554858915002,41.94548734941205],[-87.65556815248893,41.9454495807088],[-87.65570733487655,41.94538566624924],[-87.65575464879589,41.94537090747035],[-87.65577390355008,41.94536490123168],[-87.6558249974834,41.94536144290074],[-87.65591359374719,41.94536062128215],[-87.65608997666504,41.94535906499537],[-87.65609626292493,41.945359009595855],[-87.65639429073453,41.94535632153842],[-87.65653523578507,41.94535506686619],[-87.65669871641853,41.945351363352],[-87.6568505506745,41.945347924131994],[-87.65713229587264,41.94534513821925],[-87.65765391737817,41.94533618952214],[-87.6577907354432,41.94533389640583],[-87.65794112413249,41.94533137533086],[-87.65838307401931,41.94532395817024],[-87.65851430090821,41.94532203142886],[-87.65877277239908,41.94531823532767],[-87.65897170264503,41.945315287612196],[-87.65912157564446,41.94531572104766],[-87.6591254073285,41.94544264368395],[-87.65912907368676,41.94554820767906],[-87.65913319776364,41.945666150764154],[-87.65913698919519,41.945773801091875],[-87.65913885741018,41.94582674794506],[-87.65914792520613,41.946082534736796],[-87.65915165863129,41.94622458233472],[-87.65915390808792,41.94631014722289],[-87.6591565237588,41.94645264214454],[-87.65915931144616,41.94660323350209],[-87.65916124506569,41.94667830567692],[-87.65916418980281,41.946792640307585],[-87.65916979951128,41.9470033464953],[-87.65917108106942,41.947052667530706],[-87.65916841268226,41.94714851051929],[-87.65897675735287,41.94715166265633],[-87.65884425937824,41.94715329925033],[-87.65862065970128,41.94715607432207],[-87.65827323313427,41.94716083773035],[-87.65782615791426,41.94716858131447],[-87.65773865432865,41.94717012460479],[-87.65740360385429,41.94717602844882],[-87.65738154433457,41.947176362622535],[-87.65713095272348,41.94718015835641],[-87.65702041522367,41.94718160604943],[-87.65684907960221,41.94718384881553],[-87.65651625588559,41.94720205287289],[-87.65631281759244,41.94721317960276],[-87.65617575606508,41.94721530760665],[-87.656010164633,41.94721787086738],[-87.65583244102427,41.94722058183531],[-87.6555762229806,41.94722453059858],[-87.65556482566433,41.947224710296545],[-87.65522845909237,41.94722988652685],[-87.65493823306804,41.94723435061377],[-87.65492940937146,41.94723448645493],[-87.6545892558668,41.947239720762155],[-87.65433036397808,41.94724458781156],[-87.65432606768817,41.94711415356986],[-87.65431903837103,41.94690363087142],[-87.65430978896094,41.94662520320466],[-87.65430167341773,41.94637156247482],[-87.65429217931779,41.94607463733658],[-87.65428717610939,41.94591917550239],[-87.65428210274943,41.94576332905906],[-87.65427786339615,41.94563284407694]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1751600.23207","perimeter":"0.0","tract_cent":"1160415.77550672","census_t_1":"17031050900","tract_numa":"8","tract_comm":"5","objectid":"583","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923193.89039468","census_tra":"050900","tract_ce_3":"41.94494675","tract_crea":"","tract_ce_2":"-87.68577821","shape_len":"5292.7587628"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68788159441385,41.94310026838684],[-87.68815346945294,41.94309767712497],[-87.68815876773087,41.94341129155479],[-87.68816411616652,41.94357303801626],[-87.68817369757676,41.9438627990611],[-87.68818285472533,41.944139412636574],[-87.68819371586802,41.94450099588015],[-87.68819488166291,41.94453980646925],[-87.68820644735207,41.944918985167185],[-87.68821051805651,41.94505245898242],[-87.68822189433226,41.945462728269874],[-87.68823052107156,41.94578105086086],[-87.68824188255284,41.94610526142016],[-87.68824622979797,41.94626203514828],[-87.6882527737249,41.94649804725455],[-87.68825771760588,41.94673080999193],[-87.6879308119028,41.94673391431087],[-87.68765216587272,41.94673872131692],[-87.68739382757767,41.94674187133296],[-87.6872601356992,41.94674540007498],[-87.68704274483147,41.946750116420134],[-87.68678708883307,41.94675566214813],[-87.68640643994124,41.946760076908475],[-87.68614858105873,41.94676309674764],[-87.68583164203302,41.94676743100718],[-87.6855503892973,41.946771276395886],[-87.68511538952998,41.94677776740198],[-87.68487049958681,41.946781433875714],[-87.6846825618316,41.94678323775521],[-87.6846187281093,41.94678385019755],[-87.68435390915647,41.946786390897984],[-87.68401468503612,41.94679108648406],[-87.68381060620959,41.946793911251845],[-87.68340613713043,41.94680033633595],[-87.68340015723368,41.946561870287475],[-87.68339315994787,41.94632607600014],[-87.68339018906954,41.946225976839635],[-87.68337908879391,41.945849517462875],[-87.68337038311293,41.94555578226632],[-87.683360786186,41.94523037376266],[-87.68335223572565,41.94497681116089],[-87.68334400635615,41.944732752486495],[-87.68333702536728,41.94446828033575],[-87.68333298486763,41.944316008366066],[-87.68332757465747,41.94411040852159],[-87.68332141850766,41.943876923211135],[-87.68331490462975,41.943630747158856],[-87.68330771291838,41.943358957133796],[-87.68330078097503,41.94315720426302],[-87.6836301225473,41.94315134342703],[-87.68388818531243,41.94314857735573],[-87.68432351029901,41.94314387654104],[-87.68451349719066,41.94314207740397],[-87.68479897231391,41.94313937335706],[-87.68509727246759,41.94313411506984],[-87.68554578865735,41.9431262184787],[-87.68572725621499,41.94312526141075],[-87.68614411535005,41.94312306147963],[-87.68640214897559,41.943119521212],[-87.68675602164087,41.943114653781976],[-87.68694165879842,41.94311224847302],[-87.68716345345413,41.943109373755355],[-87.68732509508293,41.94310730862488],[-87.68756581081742,41.94310428327905],[-87.68788159441385,41.94310026838684]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3565481.55802","perimeter":"0.0","tract_cent":"1160834.10665595","census_t_1":"17031040600","tract_numa":"26","tract_comm":"4","objectid":"584","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1931173.32676717","census_tra":"040600","tract_ce_3":"41.96683407","tract_crea":"","tract_ce_2":"-87.68401837","shape_len":"7989.0009916"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68856543701769,41.96487440790354],[-87.6887912693788,41.96486773948137],[-87.6888026207188,41.9651715651786],[-87.68880531028104,41.965287769972726],[-87.68880744004103,41.96551788389492],[-87.68881583190351,41.96573751250105],[-87.68882309323901,41.96592754425311],[-87.68882785471753,41.96607232757237],[-87.68882877850605,41.96610040625915],[-87.68883226215017,41.96621141631968],[-87.6888339161138,41.96626412862647],[-87.68883391608061,41.96626413191933],[-87.68883494807208,41.96629701686577],[-87.68883696124728,41.96636115174945],[-87.68884061434302,41.96651671411232],[-87.68884838185049,41.966758250831795],[-87.68885645987909,41.96700944257547],[-87.68886346447727,41.96728494523419],[-87.68886919185611,41.96754485362414],[-87.68887860193207,41.96779377841282],[-87.68888298151562,41.96790963589318],[-87.68888909728214,41.968068998765794],[-87.68890108949144,41.96836036343161],[-87.68890658228806,41.96861492584193],[-87.68857501963164,41.968617785331276],[-87.68830477133461,41.96862580939554],[-87.68816905351912,41.96862883378101],[-87.68804532555188,41.96863159609469],[-87.68785921853207,41.96863576386123],[-87.68768815396601,41.968635972613434],[-87.68720158481116,41.96863656497547],[-87.68703851938791,41.9686385010748],[-87.68682631464696,41.96864161465704],[-87.6864735184642,41.96864722058364],[-87.68623470978433,41.96865101466318],[-87.68585593730535,41.96865697418622],[-87.6855711955835,41.96866239336224],[-87.68525572388566,41.96866673881176],[-87.68499177583519,41.968670373843864],[-87.68462723692416,41.968676025779956],[-87.6845725122605,41.96867687980894],[-87.68433934205656,41.96868051822106],[-87.68404138807571,41.968684736806026],[-87.6837174418891,41.968689322356134],[-87.68341395557019,41.96869386146102],[-87.68308104699517,41.96869883684301],[-87.68286531526793,41.96870168081204],[-87.68247680585712,41.968706801247116],[-87.68241906425641,41.96870777627656],[-87.68197437994971,41.96871528529985],[-87.68183801079024,41.96871722826428],[-87.68161358942785,41.96872108092827],[-87.68127578228089,41.96872687918319],[-87.68112425998443,41.96872909197871],[-87.68100962574792,41.96873071918575],[-87.680800915668,41.96873368122397],[-87.68040831891285,41.96873925193575],[-87.68021851333108,41.96874194474813],[-87.67987037856743,41.96874709861588],[-87.6798155809027,41.96874788794238],[-87.67976387178601,41.968748632806694],[-87.67918558430992,41.968756178794344],[-87.67917802004132,41.96842551397798],[-87.67917323423939,41.96828591647985],[-87.67917142199403,41.96823302533667],[-87.6791678033524,41.96811225972632],[-87.67916418714978,41.967987734567174],[-87.6791594949154,41.96783529471414],[-87.67915408616336,41.96765955220278],[-87.67914867292149,41.96745546257489],[-87.67914538797727,41.9673309118467],[-87.67913939439691,41.96710448079812],[-87.67913289616493,41.966919075747214],[-87.67912647246062,41.96673580555742],[-87.67912022696139,41.96649806692409],[-87.67911902545464,41.966452372903596],[-87.67911770853965,41.966402289417736],[-87.67911622028659,41.96634591551114],[-87.67911304554715,41.96622602038175],[-87.67910786460081,41.96600826588286],[-87.6791038661197,41.9658401876839],[-87.67909776775858,41.96562401930694],[-87.67909400056024,41.96544595378052],[-87.6790873401997,41.965252339556756],[-87.67908350563576,41.96509599210267],[-87.67943435732724,41.965092134042486],[-87.67980847305249,41.96508627152708],[-87.68008546916683,41.96508190019784],[-87.6804651034648,41.965075936867855],[-87.6806983968401,41.965072831972094],[-87.68090573758045,41.965070071977514],[-87.68114852476205,41.96506675887072],[-87.68149744403242,41.96506198973894],[-87.6815056084168,41.96506187693022],[-87.68171000265649,41.96505905265084],[-87.68220249057191,41.96505232452245],[-87.68231842027598,41.96505040077429],[-87.68258826951185,41.965045922505325],[-87.68272507156918,41.96504406341712],[-87.68314937834725,41.96503831692097],[-87.68330052214306,41.96503626394817],[-87.68357070717687,41.96503252455999],[-87.68369284736718,41.965022513369576],[-87.68378124777502,41.96500742647165],[-87.68393549711759,41.96497774016136],[-87.68407849083516,41.964946128320754],[-87.68428686383152,41.96493525947566],[-87.6845396898922,41.96493176735726],[-87.68472672701053,41.96492918346362],[-87.68513625037214,41.964923510752506],[-87.68552441617268,41.964918152397],[-87.68553838248165,41.96491795952729],[-87.6857739257735,41.964914595762224],[-87.68612094039894,41.96490985726517],[-87.68636088665437,41.96490657968513],[-87.68645377908999,41.964905311167215],[-87.6865468473183,41.96490487505902],[-87.68674426070723,41.96490148657527],[-87.6869359704238,41.964898421012926],[-87.68704633487368,41.9648966562678],[-87.68710502691835,41.964895884856844],[-87.68732791787134,41.96489286243048],[-87.68757552103908,41.9648900812091],[-87.68785856305291,41.96488690102078],[-87.68814410225445,41.964880932059266],[-87.68839178165456,41.96487732926226],[-87.68856543701769,41.96487440790354]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3455856.58907","perimeter":"0.0","tract_cent":"1169436.94120437","census_t_1":"17031031500","tract_numa":"12","tract_comm":"3","objectid":"585","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1930734.8929135","census_tra":"031500","tract_ce_3":"41.96544773","tract_crea":"","tract_ce_2":"-87.65239993","shape_len":"7925.1473056"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65453968337016,41.9617826394218],[-87.65474851033177,41.96177872003632],[-87.65475066211688,41.96196925775338],[-87.65475362591583,41.96215080448295],[-87.65475463099082,41.96222885563389],[-87.65475580342681,41.962319860423634],[-87.65475802941344,41.9625605129686],[-87.65475812175256,41.96268424946601],[-87.65475822837104,41.962825906255325],[-87.65475987184865,41.96298288451637],[-87.65476220591552,41.96319952587696],[-87.65476593780151,41.96344504452924],[-87.65476856846549,41.96360698464262],[-87.6547706008479,41.963732061054124],[-87.6547716152042,41.96398991254344],[-87.65477432642797,41.964365061359835],[-87.65477670356778,41.96444624898381],[-87.65477967027368,41.96454755511095],[-87.65478104675555,41.96475395487032],[-87.65478257335927,41.96525110395817],[-87.65478731157948,41.96543027965184],[-87.65479052441363,41.965551778521416],[-87.65479035679805,41.965876005238144],[-87.6547905037919,41.96592490617485],[-87.65479152746423,41.966264591425585],[-87.6547924230479,41.96637365137608],[-87.65479590571638,41.9667980081672],[-87.65479893020792,41.967126315101964],[-87.65479823191924,41.96727202213484],[-87.65479783988137,41.96735380311288],[-87.65480410149462,41.967729219948396],[-87.65480912160879,41.968030151205426],[-87.65481019075293,41.968183530750636],[-87.65481085684127,41.968278978337004],[-87.65481753047821,41.968873274872315],[-87.65482207286492,41.969090295689504],[-87.65470195283928,41.96909185349806],[-87.65413018396649,41.96909888972889],[-87.65385549894411,41.969102269168026],[-87.65346944563997,41.96910726644124],[-87.65301602631698,41.969113134067015],[-87.65249843834555,41.969119829836536],[-87.65158039746173,41.969131700405406],[-87.65073692066684,41.9691455684518],[-87.65030972673297,41.969153320316366],[-87.65028998038937,41.96915367840314],[-87.6501183087253,41.96915558219648],[-87.65011015117224,41.96879983921423],[-87.65010939777555,41.96876700501516],[-87.65010656976324,41.968643663731704],[-87.65009904683002,41.9683944728219],[-87.65009388213,41.9682508182087],[-87.65008960767402,41.96813190623003],[-87.65008120825304,41.96779950585363],[-87.65007885668363,41.96770646338372],[-87.65007190574103,41.96748982208304],[-87.6500677898718,41.96734967584049],[-87.65006381737248,41.967214420617545],[-87.6500556265853,41.966859107332056],[-87.65004757511039,41.966566499900324],[-87.65004323001898,41.96644633281549],[-87.65003869136217,41.96632081337921],[-87.65003020445477,41.965990854442154],[-87.65002531321622,41.965800679732475],[-87.65001916784688,41.96548793207866],[-87.65001678625443,41.965366742915776],[-87.6500045901523,41.96502161411365],[-87.64999280699685,41.964648140118015],[-87.64998800251722,41.96451279480748],[-87.64998514939087,41.964432262869806],[-87.64997588632541,41.96408100444962],[-87.64997122798813,41.96388003289107],[-87.64996846253345,41.96376071158442],[-87.64996568302976,41.963667995530805],[-87.64996214678001,41.96355002883619],[-87.6499579040466,41.963416525460005],[-87.64995384252786,41.96328801761221],[-87.64994664514249,41.963053180594194],[-87.64994105270156,41.962867721369705],[-87.6499378517456,41.962747149384775],[-87.64993481335627,41.96263269794256],[-87.64992499539721,41.96236096317795],[-87.64992309668156,41.96231155617925],[-87.64991809675043,41.96216355886131],[-87.64991412518474,41.96193653454245],[-87.64991214711398,41.96184280759893],[-87.65008342640446,41.96184154992958],[-87.65029862848334,41.96183805555509],[-87.65036813214502,41.96183691609908],[-87.65057244947646,41.96183359218592],[-87.65071465608322,41.96183126578739],[-87.65095876253493,41.96182727217237],[-87.65118675021185,41.96182470283002],[-87.65133005152656,41.96182308441578],[-87.65145957017951,41.96182097233226],[-87.65163733709409,41.96181802147804],[-87.6520556694197,41.961812162313606],[-87.65232734435739,41.9618094660311],[-87.65247446189494,41.961808005761064],[-87.65283008873212,41.9618037477085],[-87.6530707279938,41.961800837984036],[-87.65339506663827,41.96179639278376],[-87.65387804043941,41.96179022374789],[-87.65453968337016,41.9617826394218]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7140366.86268","perimeter":"0.0","tract_cent":"1160817.84175445","census_t_1":"17031720400","tract_numa":"38","tract_comm":"72","objectid":"588","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1837575.6234978","census_tra":"720400","tract_ce_3":"41.70999201","tract_crea":"","tract_ce_2":"-87.68666915","shape_len":"10689.7885705"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68162642887644,41.70654869598568],[-87.68162036664012,41.70637632437215],[-87.6819950125871,41.706376136627966],[-87.68228756040493,41.7063773209997],[-87.68289701713954,41.70637796391912],[-87.68327470562191,41.70637836059267],[-87.68351042726862,41.7063796937797],[-87.6838343609515,41.706385669020776],[-87.68411756059085,41.706389017431825],[-87.6843900686775,41.706392238905394],[-87.68462286670442,41.70638932703445],[-87.68500033991228,41.70638451412262],[-87.68533361247052,41.70638095874577],[-87.68562968161103,41.706377798940856],[-87.68602964368598,41.706372670581075],[-87.6864082704525,41.70636970482815],[-87.6864678593025,41.7063692378278],[-87.68654734195906,41.70636821589498],[-87.68667368009554,41.70636704950083],[-87.68677299061339,41.70636613239942],[-87.68712145615109,41.706364165599844],[-87.68736650917745,41.706362674153574],[-87.68764604686041,41.70635850675481],[-87.68778965276178,41.7063551218631],[-87.68794092761465,41.70635155592516],[-87.68828172139133,41.70634773126345],[-87.68831470362437,41.70634741720179],[-87.68866080006066,41.70634412037247],[-87.68902251834898,41.70634041062201],[-87.68929638809033,41.70634194582074],[-87.68941930715027,41.70633956483483],[-87.68952615525157,41.706337495178104],[-87.68979420767823,41.70633325820753],[-87.68984352384363,41.706333104882745],[-87.69012348728083,41.706332232798374],[-87.69025375994657,41.70633055181571],[-87.6904336528242,41.706328230043404],[-87.69077830359282,41.70632155035861],[-87.69107315502133,41.70631746052196],[-87.6914754960293,41.706316345296074],[-87.69148523416723,41.70636229447373],[-87.6914946110121,41.706406534659656],[-87.69149535603265,41.7065415049191],[-87.69149627804978,41.70662554142001],[-87.69150147018759,41.70679356697974],[-87.6915037029145,41.70686582143555],[-87.69151082789178,41.70707366180094],[-87.69151939157359,41.707203132717844],[-87.6915262293861,41.707306632918524],[-87.69153330119234,41.707413672412144],[-87.69153330144118,41.70741368421414],[-87.6915392777629,41.70758602190154],[-87.6915445950414,41.70774000814677],[-87.69155465881967,41.708031620417145],[-87.6915546588033,41.70803162206365],[-87.69155631511101,41.708108080339116],[-87.69155631539535,41.70810808857369],[-87.69156100477444,41.708321458283514],[-87.69156504132805,41.70844220409239],[-87.69157495885048,41.70867857383495],[-87.69158406789283,41.708896963430526],[-87.69158689937969,41.70901728975013],[-87.69159107113158,41.70919437789516],[-87.69159697280534,41.70936691928822],[-87.69160375486943,41.709565097336835],[-87.6916129437382,41.70981219328183],[-87.69161366537894,41.70985183829739],[-87.69161385425183,41.70986219671803],[-87.69161507513033,41.7099292707797],[-87.6916150754256,41.70992927791661],[-87.69162094930861,41.710126682461976],[-87.69162407979158,41.71020388167655],[-87.69162733210986,41.710284076729025],[-87.69162733209349,41.71028407837554],[-87.69163495308601,41.71048994491735],[-87.69163559531394,41.71051529702942],[-87.69163816120313,41.710616641516864],[-87.6916425297893,41.71074033516474],[-87.69164596220328,41.71083752079405],[-87.69165071737692,41.710971839610465],[-87.69165319692068,41.71104187632734],[-87.69165863612389,41.7112313752939],[-87.69166393697208,41.71142024201195],[-87.69166765854708,41.71155424054293],[-87.6916740190565,41.7117468943001],[-87.69167401936541,41.71174690006491],[-87.69167862028952,41.71188605926421],[-87.69168094573757,41.711956386282125],[-87.69168552084088,41.712119025239005],[-87.69168560015947,41.71212183998853],[-87.6916856001431,41.71212184163504],[-87.69169089138849,41.71231161225049],[-87.69169505625197,41.712445201860845],[-87.69170271211473,41.71265496628313],[-87.6917094981953,41.71284167295404],[-87.69171110946196,41.712886003089125],[-87.69171851579266,41.71307674709989],[-87.6917191156817,41.713093765818456],[-87.69172033717503,41.71312760852954],[-87.69172388262898,41.71322582194917],[-87.69172995608946,41.71340118342145],[-87.69173048393384,41.71341642396259],[-87.69172881621355,41.713565668095036],[-87.69172881619718,41.71356566974155],[-87.6917288161044,41.713565679071735],[-87.69143543732868,41.71357002108717],[-87.69140704582058,41.71357044126894],[-87.69124972015872,41.713572196590256],[-87.69110173559511,41.71357383979172],[-87.69101818246212,41.71357477212828],[-87.69086052816779,41.71357638813793],[-87.69067151930845,41.7135782405059],[-87.69063714814642,41.71357863281866],[-87.69048602425364,41.71358035838591],[-87.69032205214371,41.713582212471536],[-87.6902716645008,41.71358278207457],[-87.69001886461952,41.71358726741323],[-87.68978850547417,41.713588996055684],[-87.68962852408484,41.71358897873929],[-87.68951102756358,41.71358897886775],[-87.68925596711283,41.71359342159598],[-87.68925595685539,41.71359342181293],[-87.68897084698793,41.713598410377095],[-87.68871824537128,41.71360121992721],[-87.68851126111304,41.71360233643635],[-87.68823115874373,41.71360471588816],[-87.68801306058934,41.713607415703095],[-87.68770855054369,41.713611193633874],[-87.68745661247783,41.71361367536814],[-87.68715016553162,41.71361705700141],[-87.68677201750768,41.71362030857044],[-87.68677200615151,41.713620308780975],[-87.68673652273787,41.7136206157299],[-87.68662211956585,41.71362160564302],[-87.68643385899698,41.71362321320158],[-87.68639351713364,41.7136235574601],[-87.68615945626289,41.71362558757996],[-87.68588340957787,41.71362889005093],[-87.68588340115438,41.71362889000347],[-87.68555857098205,41.713632794734835],[-87.68545938070004,41.71363349793825],[-87.68531432677864,41.71363498554878],[-87.68510765862906,41.713637469597145],[-87.68495428628785,41.7136393486462],[-87.68471168212864,41.71364234356144],[-87.68456765697464,41.71364350561937],[-87.6843370364266,41.7136464299081],[-87.68433702983428,41.71364642987088],[-87.68404515660063,41.7136501602366],[-87.68392688503945,41.71365120931052],[-87.68381087532966,41.71365223866432],[-87.68372519961143,41.713653017032456],[-87.68365916304657,41.71365362150953],[-87.68363992602548,41.71365379733584],[-87.68336963888794,41.71365619353415],[-87.68312361782833,41.71366023550754],[-87.68291397196697,41.71366368671824],[-87.68272418077575,41.71366683831147],[-87.68252947808533,41.71366675173835],[-87.68249644164054,41.71366672929315],[-87.68230074976,41.713666635083364],[-87.68210312765953,41.713669083744676],[-87.68197988153935,41.71366562964745],[-87.68184169148547,41.71366175671114],[-87.68183213894613,41.713309303775624],[-87.68182150879692,41.71295835408736],[-87.68181367425227,41.71270048030241],[-87.68181138285564,41.712639378352705],[-87.68180374844435,41.712435788721365],[-87.6817930610735,41.7121521844058],[-87.68178460794479,41.7118693378279],[-87.6817776760239,41.711637398873634],[-87.68176880865016,41.711325949927044],[-87.68175812165234,41.710955295529324],[-87.68174986833849,41.71067005834351],[-87.68174182602918,41.71039294554605],[-87.68173827283293,41.71026970513781],[-87.68173099580957,41.710021591843436],[-87.68172516876194,41.70982290934082],[-87.68172319036996,41.709756540301164],[-87.68171627405923,41.709521422045206],[-87.68170858679271,41.70926719889163],[-87.68169660859901,41.70887935754771],[-87.68168574235412,41.70851567256329],[-87.68167652914576,41.70819897130919],[-87.68166603297057,41.70783815098737],[-87.68165241096864,41.70738103338628],[-87.68163571969151,41.706872579405626],[-87.68162642887644,41.70654869598568]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"30557694.617","perimeter":"0.0","tract_cent":"1151963.72763434","census_t_1":"17031740400","tract_numa":"39","tract_comm":"74","objectid":"586","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1829219.31935623","census_tra":"740400","tract_ce_3":"41.68723858","tract_crea":"","tract_ce_2":"-87.71931289","shape_len":"29313.9201707"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7008194987377,41.691350958798814],[-87.7008073764526,41.69111946216129],[-87.70080111624725,41.690999911836435],[-87.7007867815251,41.690601958965935],[-87.70077662259722,41.69029725418609],[-87.70076730519925,41.690029986782626],[-87.70075617892118,41.689743801198986],[-87.70074750746299,41.6895207480535],[-87.70074072344087,41.68932377731922],[-87.70073913060422,41.68928029824294],[-87.7007329214427,41.689111130531465],[-87.70072218933686,41.688799424178036],[-87.70071422419684,41.68856808780456],[-87.70070357940799,41.6882868717724],[-87.70069470383335,41.6880530330178],[-87.70069005284185,41.68792237663819],[-87.70068181158575,41.68769106587678],[-87.70067291907587,41.68744775876109],[-87.70066071631761,41.6871238047413],[-87.70065220319592,41.68690157621098],[-87.70064123751908,41.686594753369775],[-87.70063496293132,41.68641919117974],[-87.70062694370215,41.68620261867842],[-87.70062057992202,41.68605518601046],[-87.70061681915739,41.685968025400555],[-87.70061539688524,41.68593506436798],[-87.70061500040998,41.6859259081672],[-87.70060530698376,41.68570198696774],[-87.70060515001823,41.68569745629702],[-87.70060239522981,41.685617966434116],[-87.70059598736343,41.685431624536676],[-87.70059550016501,41.685417454750606],[-87.70058793599911,41.685195560696094],[-87.70057857424821,41.6849665763392],[-87.7005671717837,41.68470670691379],[-87.70056046954876,41.68453144391148],[-87.70055274131501,41.68426279524328],[-87.70055274134458,41.68426279222467],[-87.70055274104573,41.68426278536218],[-87.7012423834572,41.68425203487832],[-87.70164580929351,41.684245525990065],[-87.70179454986928,41.684243718750274],[-87.70215591054361,41.684239327436615],[-87.70265366973892,41.684230040116084],[-87.70298140853619,41.684225059101074],[-87.70327791403325,41.68422056594106],[-87.70368445777825,41.684213352910994],[-87.70401333313997,41.68420818389907],[-87.70450528906372,41.684200722656506],[-87.70486981864337,41.68419580060961],[-87.70504051445205,41.68419349531667],[-87.70541706462598,41.68418729279606],[-87.70541706400589,41.68418728126645],[-87.70540699805242,41.683977653066336],[-87.70540482547283,41.683932413915926],[-87.70540338196923,41.683895740542134],[-87.70539783854369,41.68375492723082],[-87.70539715443485,41.68373864955335],[-87.70539134633222,41.68360186677708],[-87.7053859823468,41.683487069690756],[-87.70538585484596,41.68348372913146],[-87.70537795846853,41.68327689167743],[-87.70536976408853,41.68306166313712],[-87.70536249819648,41.682871467502686],[-87.70536078479317,41.682825545864375],[-87.70535505246366,41.68267334083095],[-87.7053489061763,41.68251476665986],[-87.70534819150586,41.682492485290915],[-87.70534665896712,41.682444718519356],[-87.70534545889132,41.68240929514091],[-87.7053454586053,41.68240928690633],[-87.70534387147998,41.682362428212734],[-87.70534079178057,41.68227261653865],[-87.70533193861534,41.682046022785634],[-87.70532657356905,41.68190880329294],[-87.7053246097856,41.68185851677542],[-87.70532017242415,41.68175766514693],[-87.70531233451827,41.68158110654233],[-87.70530668234426,41.6814470691796],[-87.70529909162329,41.68126768496906],[-87.7052960014123,41.68117139684734],[-87.70529089600299,41.68101878299344],[-87.70528978747714,41.68098595899785],[-87.70528978751184,41.68098595543039],[-87.70528452347924,41.68083836285033],[-87.70528495978492,41.68057886052816],[-87.70581160697652,41.68056601220555],[-87.70609386056651,41.68056104890329],[-87.7064752720744,41.68055722954608],[-87.70685515798118,41.680555952845054],[-87.70714577095423,41.68055341982916],[-87.70715677720425,41.6805542218663],[-87.70732362981104,41.68056638180516],[-87.70737543063846,41.68056588208696],[-87.70757272965352,41.68056397862102],[-87.7075887032992,41.680563745053774],[-87.70764355168102,41.68056294264053],[-87.70768293966569,41.68056225884534],[-87.70769104917227,41.68056211802312],[-87.7076928069797,41.68056208779922],[-87.7076933206668,41.68056207879492],[-87.7077149170905,41.680561704023084],[-87.70879781715762,41.680561311663574],[-87.70880748243987,41.680561211874505],[-87.70884973143842,41.680560775671985],[-87.70903965935402,41.68055881454118],[-87.70908341854884,41.68055836285482],[-87.70928126668957,41.68055603406501],[-87.70949016857267,41.68055387470959],[-87.70968058140087,41.68055199940291],[-87.70976621046424,41.68055147606884],[-87.70993108547097,41.68054814422499],[-87.709972093887,41.680543454285186],[-87.7100018016219,41.68053387272335],[-87.71013225485115,41.680462163571576],[-87.71043236346132,41.68045155651714],[-87.71048718422772,41.68044961863449],[-87.71074798765416,41.68044823251258],[-87.71103985648291,41.68044443432811],[-87.71122020506428,41.680442199823254],[-87.7112378042952,41.68044205248739],[-87.71135671221555,41.68044105823756],[-87.71136096170308,41.680544638998946],[-87.71137495589925,41.68088572754029],[-87.71137680296894,41.680929537513535],[-87.71139079984182,41.681270514899154],[-87.711476262185,41.68126911696371],[-87.71147626547952,41.68126911698153],[-87.71157979544657,41.681267423738724],[-87.71158062832934,41.68135617697536],[-87.71158149438769,41.681448557312585],[-87.71159588515643,41.68179425731784],[-87.71159748271172,41.681832630762024],[-87.7114435083458,41.68183511038522],[-87.71144349809344,41.68183511060419],[-87.71141376560101,41.6818355894201],[-87.71142462623318,41.68209109920935],[-87.71142463073852,41.68209120159768],[-87.71142463132796,41.68209121642032],[-87.71142845049947,41.682181071191955],[-87.7114321154682,41.682272456195875],[-87.71143571164914,41.68236212753356],[-87.71144977895794,41.68271090051165],[-87.7114513143736,41.68274921872863],[-87.71146545556759,41.6830979371947],[-87.71146915179075,41.683191978600114],[-87.71146915205905,41.68319198875563],[-87.71147257119733,41.68327899271823],[-87.71148647961856,41.68362145169541],[-87.71148825490988,41.68366531587041],[-87.71150216383596,41.68400777510026],[-87.7115073034821,41.68409358331874],[-87.71150730379269,41.68409358908355],[-87.71161052216189,41.684091953412214],[-87.7119333855474,41.68408749762431],[-87.71212026188142,41.68408510491387],[-87.7123233582731,41.684082524837535],[-87.71248684653825,41.68408038304637],[-87.71272526910909,41.68407725897851],[-87.7132135157075,41.68407086505337],[-87.71334643027637,41.68406862485163],[-87.71350211545004,41.68406600070091],[-87.71371438382398,41.68406235123462],[-87.71383260508169,41.68406031803548],[-87.71411295525513,41.68405686135757],[-87.7144765759838,41.68405127328797],[-87.7146895642549,41.68404786437994],[-87.71515396939135,41.684041856118476],[-87.71515397341815,41.68404185614014],[-87.71547643039615,41.68403766209634],[-87.71584978998065,41.684031929659405],[-87.71631538352759,41.68402455036974],[-87.71654532882076,41.68402043374915],[-87.71693520225543,41.68401431987247],[-87.71726567783534,41.684010053491704],[-87.7173803577097,41.684007979271684],[-87.71754444810006,41.68400462188515],[-87.71754630601497,41.684004583814016],[-87.71754976809042,41.684004513172916],[-87.7176046695687,41.68400338987182],[-87.71782033420986,41.68399957812271],[-87.71821503796039,41.68399427504567],[-87.71827654089493,41.68399344856616],[-87.71861628456865,41.683988882388306],[-87.71896210125752,41.68398428208115],[-87.71930678757182,41.68397931792957],[-87.7200647643305,41.68396683484347],[-87.72050475528276,41.683959586270376],[-87.72078427511889,41.68395481932227],[-87.72126023468464,41.68394669585279],[-87.72156608108956,41.68394147470526],[-87.7219186882813,41.68393506321207],[-87.7222567880036,41.68392972612388],[-87.72246764254409,41.683927295882384],[-87.72261453679141,41.68392560254314],[-87.72280755996474,41.68392337742668],[-87.7230613506516,41.68391786450083],[-87.72323854688237,41.68391413085262],[-87.7236830981589,41.6839047627877],[-87.72387451212664,41.68390072897557],[-87.7239310644032,41.68389953703424],[-87.72439955465524,41.683891481431466],[-87.72448195290318,41.68389014266868],[-87.72489572248229,41.683883418962466],[-87.7251579176311,41.683880427059094],[-87.72646343813213,41.68386552114882],[-87.72671668421148,41.68386262772531],[-87.72728221965727,41.68385616480714],[-87.72764331968315,41.68384587423625],[-87.72771035428795,41.68384396396949],[-87.72830829799062,41.683826921030686],[-87.72837683694368,41.68382804667591],[-87.72837988491436,41.68382809702412],[-87.72846902907388,41.68382956159877],[-87.72925139783099,41.68381040837802],[-87.72956223246133,41.683802797727786],[-87.72967646331196,41.68380000028781],[-87.72969595365667,41.68379972421463],[-87.72981743366921,41.68379800207064],[-87.73023609162864,41.68379206611856],[-87.73099499090351,41.68378130261388],[-87.73151587664714,41.68377403103156],[-87.73171430036031,41.68377126048532],[-87.73195351373334,41.683767919808275],[-87.73245452711454,41.68375726515974],[-87.73436868623388,41.68371653752044],[-87.73678385511869,41.683665104449396],[-87.7373284122784,41.68366928986652],[-87.73765493765839,41.68366431398526],[-87.73793299429582,41.68365919585997],[-87.7382216281553,41.68365429649328],[-87.73856957829464,41.68364838555251],[-87.738839946662,41.68364325343683],[-87.73910728555103,41.68363832456871],[-87.73944970101806,41.68363201103642],[-87.73944971236631,41.683632011095064],[-87.73966066801039,41.689054437685314],[-87.73966078413297,41.68905741754081],[-87.73966082290366,41.68905841722976],[-87.73970111844979,41.68998688435513],[-87.73970400948815,41.69005349810025],[-87.73973900881664,41.69085991065278],[-87.7397389934323,41.690859911396636],[-87.73688208075458,41.691012904991936],[-87.73668056511083,41.6910210085843],[-87.73638770285906,41.69102818731005],[-87.73606727933931,41.691034481083925],[-87.73570057357325,41.6910410272759],[-87.73561986556338,41.691042373254405],[-87.73543112680426,41.691045511830914],[-87.73536133636905,41.69104667237619],[-87.73519948115924,41.69104934285264],[-87.73488942706912,41.691054723498326],[-87.73471654854968,41.691057723392994],[-87.73437001624771,41.69106428808622],[-87.73411840232158,41.691069068877326],[-87.73370650377488,41.691076909890796],[-87.7334020850615,41.691082593653086],[-87.73340208103424,41.69108259363206],[-87.73306156126874,41.69108874667167],[-87.7328288452297,41.691092882373404],[-87.73246707966383,41.69109975663965],[-87.73228502575763,41.69110321562465],[-87.73224098906063,41.69110405230488],[-87.73204914550814,41.69110691825448],[-87.73180424219764,41.691110549022234],[-87.73158888969893,41.691113757689315],[-87.73149968751483,41.69111507441048],[-87.7313787135085,41.691117325679485],[-87.7312507843341,41.69111970586708],[-87.73112409069454,41.69112206329655],[-87.73103128594782,41.69112378999093],[-87.7308041368046,41.691127758663534],[-87.73061261840462,41.69113111790037],[-87.73041546006314,41.69113455700325],[-87.73004712744492,41.691142723220956],[-87.7300471234151,41.69114272347423],[-87.72978294449183,41.69114858115948],[-87.72948400308191,41.6911557652494],[-87.72915569124017,41.691163644904165],[-87.72879182300004,41.69117207755823],[-87.72844376985456,41.69118061974546],[-87.72811622957452,41.69118822605726],[-87.72784684880648,41.69119383262409],[-87.72757249353812,41.691199028131656],[-87.72729286864465,41.69120389331815],[-87.72707157887045,41.691207638520105],[-87.72686903979627,41.69121096054786],[-87.72675200608738,41.691212867956146],[-87.72649687850014,41.691217479862736],[-87.72646490890872,41.69121805778268],[-87.7262785140374,41.69122153701906],[-87.72617513042535,41.69122360513293],[-87.72607446622584,41.691225618640324],[-87.72579238515779,41.69123082697957],[-87.72549785262342,41.691236264610524],[-87.72528627398495,41.69123915210459],[-87.72517681520533,41.69124089435628],[-87.725040415221,41.691243065278066],[-87.72482912095084,41.691246776736996],[-87.72471716844846,41.6912485928913],[-87.7246032553677,41.691250440265655],[-87.72444692582772,41.69125297612098],[-87.72442972225018,41.691253255183405],[-87.72429089545616,41.69125550676265],[-87.72394282859996,41.69126159278213],[-87.72362028354156,41.69126742894521],[-87.72323090416933,41.69127480300864],[-87.72290893523541,41.69128157330833],[-87.72251857411747,41.69128817132856],[-87.72220555251488,41.69129356015579],[-87.7218159945016,41.691300434493584],[-87.72143454421115,41.69130559430328],[-87.72108704576272,41.69130956155814],[-87.72084987299075,41.69131255152037],[-87.72067132284268,41.69131497533877],[-87.72053343382154,41.691315337626435],[-87.72031697161009,41.691284866806775],[-87.72031696758803,41.69128486623645],[-87.72016950709627,41.6912641084752],[-87.72002466146989,41.691276014416495],[-87.71966710551482,41.69128266804157],[-87.71938733736253,41.6912871015741],[-87.71913592469112,41.691289732552],[-87.71887001240387,41.69129251488221],[-87.7186070357557,41.691294566388805],[-87.7182679396265,41.691296649025695],[-87.71804469688604,41.69129781415696],[-87.71790125647757,41.69130056846143],[-87.71757420231785,41.69130684788164],[-87.71731070147773,41.691310106061266],[-87.71700396588486,41.69131660720853],[-87.7166342670723,41.69132186899186],[-87.71618349987509,41.69132779200546],[-87.71584154853953,41.69133361189179],[-87.71545833463787,41.6913393129345],[-87.71519786694968,41.69134318715389],[-87.71480117997777,41.69134884674357],[-87.71444923746283,41.691354197061685],[-87.71430521689729,41.69135656256425],[-87.71401639904805,41.691361305857036],[-87.71368305296363,41.69136697358895],[-87.71338596381345,41.691371628162],[-87.71308983919522,41.69137500666465],[-87.71274578162972,41.69137893103932],[-87.71250288901363,41.691382668743564],[-87.71232249774926,41.691386167377985],[-87.71185039718637,41.691394500191905],[-87.7115642883829,41.69139954890833],[-87.71140137156058,41.691402015733054],[-87.71114012180522,41.69140713315392],[-87.71093301285767,41.69140960676707],[-87.71057895119377,41.69141492689303],[-87.71027925877588,41.691419429245165],[-87.71002721199228,41.69142322186025],[-87.70975601683838,41.691426964911386],[-87.7096118879765,41.691428872225764],[-87.70936822981395,41.691433137587815],[-87.70905307253481,41.69143865407848],[-87.70881886313879,41.6914417450789],[-87.70855733755862,41.69144509875272],[-87.70815607048331,41.69144343059859],[-87.7075175477639,41.69146071538558],[-87.70740715746851,41.691460794798076],[-87.70694168186628,41.69146975331762],[-87.70660700431381,41.691476193238145],[-87.70611994648357,41.691486379845784],[-87.70573855813734,41.69149281093254],[-87.7053896812206,41.691498693072674],[-87.70501711236116,41.691505219077875],[-87.70450804806238,41.691511330807025],[-87.70403403567305,41.69151701968794],[-87.70358635659676,41.69152516054917],[-87.703323394828,41.69153020224119],[-87.70284721186219,41.69153933027024],[-87.70250899387013,41.69154504890465],[-87.70207160295483,41.691550890909554],[-87.70163828466352,41.69155667706841],[-87.70143376634631,41.69155990633406],[-87.70136755928516,41.691560951770626],[-87.70113045024343,41.69156469723856],[-87.7008277065439,41.691567788180734],[-87.7008194987377,41.691350958798814]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"58410.6020589","perimeter":"0.0","tract_cent":"1129522.71936302","census_t_1":"17031820800","tract_numa":"1","tract_comm":"56","objectid":"587","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869509.19783776","census_tra":"820800","tract_ce_3":"41.79821216","tract_crea":"","tract_ce_2":"-87.80055529","shape_len":"2088.91115589"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80154587724786,41.79766176805456],[-87.80161866743263,41.797628159195646],[-87.80161971354624,41.797778010060334],[-87.80162605978012,41.79799516807795],[-87.80153448958414,41.79802419402951],[-87.80153447487649,41.79802419862672],[-87.80136734265416,41.79807717642383],[-87.80119959568816,41.798130352834804],[-87.80102088979531,41.79818698981525],[-87.80095708552902,41.79820719071032],[-87.80090197488923,41.798224639546476],[-87.80084505709895,41.798242686193504],[-87.8006556092583,41.798302753122],[-87.80050323058214,41.79835105922511],[-87.80035144136241,41.79839914859135],[-87.80026910393931,41.798425246768744],[-87.8001997245321,41.79844723781786],[-87.8000480078434,41.798495326843984],[-87.79989621720772,41.798543416423385],[-87.79974457240307,41.798591450495366],[-87.7995924888647,41.79863964698552],[-87.79944062266254,41.79868778912346],[-87.79924117519737,41.798751023547084],[-87.79916446734339,41.79877533175447],[-87.79916381428313,41.79877553893051],[-87.7990418007716,41.7988142039004],[-87.79874159964051,41.79890935089362],[-87.79856399246675,41.79896560604895],[-87.79852877599909,41.79897676669763],[-87.79852646049338,41.79897750071849],[-87.79842269225529,41.79901038569174],[-87.80154587724786,41.79766176805456]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11300513.5237","perimeter":"0.0","tract_cent":"1166716.13627929","census_t_1":"17031720700","tract_numa":"33","tract_comm":"72","objectid":"589","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1835111.72447446","census_tra":"720700","tract_ce_3":"41.70310709","tract_crea":"","tract_ce_2":"-87.66513857","shape_len":"13936.5800634"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65601924562581,41.706785499085456],[-87.65610934542676,41.70654465257857],[-87.6561541110879,41.706423965673544],[-87.6561939892202,41.70631645317929],[-87.65625596245232,41.70614937296343],[-87.65627170540235,41.70610692865236],[-87.65644945196145,41.705644019839376],[-87.65655280553962,41.70537787996865],[-87.6567071468979,41.704955129181805],[-87.65679874841922,41.704704223601304],[-87.65692510742441,41.70435671224923],[-87.65706209314816,41.703994443901806],[-87.65713459365308,41.70380298712283],[-87.65723638486824,41.70353605549152],[-87.65725994615036,41.703474268068575],[-87.65733404975772,41.7032659978437],[-87.65738453306498,41.70312684532377],[-87.65743752225806,41.70298078467369],[-87.65751525224293,41.70275590501031],[-87.65765294383455,41.70238743781644],[-87.65771805117278,41.70221229224311],[-87.65811200426856,41.70115248863986],[-87.65822164687008,41.70085752352592],[-87.65839998791078,41.70036651278916],[-87.65856714722902,41.69992203479765],[-87.65868419159014,41.69960201957712],[-87.65874167226187,41.69944359037731],[-87.65905064158834,41.69943948303712],[-87.65961851409837,41.6994323028132],[-87.66012643205124,41.69942616818763],[-87.6604445544347,41.69942270870773],[-87.6610482461487,41.699416141147815],[-87.66128300040033,41.69941293147864],[-87.66170182210723,41.69940720188983],[-87.66216126298752,41.69939797654683],[-87.66230664497954,41.69939620388202],[-87.66244230355149,41.699393716452974],[-87.6626338466266,41.699390690570105],[-87.66283385418146,41.69938711000176],[-87.66309710112708,41.69937997381146],[-87.66328208509462,41.69937741053152],[-87.66352443028173,41.69937307941611],[-87.66388857578929,41.69936436116134],[-87.6641336773175,41.699359092534735],[-87.66445559199403,41.69935302511788],[-87.6648511983775,41.699345567640485],[-87.66512323957556,41.69933781877507],[-87.66543391988073,41.69933290150152],[-87.66575147055882,41.69932931286001],[-87.66603502369601,41.69932374211857],[-87.66627082117193,41.699318744226595],[-87.6666806000047,41.699309239151745],[-87.6668906627138,41.699305589375186],[-87.66724307758042,41.69929946516309],[-87.66738781985828,41.69929673639019],[-87.66755157414678,41.699293294282754],[-87.66776132734644,41.69928907551464],[-87.66790636477606,41.69928612825144],[-87.66805096328923,41.69928309593427],[-87.66826966128428,41.699277967504486],[-87.66848974668788,41.699273230891315],[-87.66859069250827,41.69927060398196],[-87.66879939729779,41.6992650599754],[-87.66899272793607,41.69926265843805],[-87.6692170045901,41.69925987200462],[-87.66934524116705,41.69925622235373],[-87.66952102128273,41.69925310077279],[-87.66972939280852,41.69924940008659],[-87.66976851072096,41.69924870524382],[-87.66999921958725,41.69924353117979],[-87.67027166461833,41.699235582547075],[-87.67045473528454,41.699233812020445],[-87.67065561937873,41.6992303326653],[-87.67080930520808,41.699226718081725],[-87.67099665330858,41.69922200719946],[-87.6711986937707,41.69921820259317],[-87.67146299834509,41.69921322491728],[-87.67165934801554,41.69920916690417],[-87.67185005968038,41.69920499569405],[-87.67208567410692,41.69919987504126],[-87.67229348953147,41.69919541730261],[-87.67243804735335,41.699192708549795],[-87.67256535543609,41.699190339526254],[-87.67279691934506,41.69918744886756],[-87.67280487629503,41.69945111066235],[-87.6728140471679,41.69975732094277],[-87.67282455721934,41.70009004913902],[-87.6728321704172,41.70033367969252],[-87.67284110444864,41.700612884350825],[-87.67285075950473,41.70088608305552],[-87.6728552454424,41.701023626959085],[-87.67285995730658,41.70116811586222],[-87.67286386047883,41.70127697843303],[-87.67286825155585,41.70139896170406],[-87.67287387290467,41.70155459753019],[-87.67287925769624,41.70170468844571],[-87.67288603968893,41.70191796241127],[-87.67289396907229,41.70216730235893],[-87.67289497436586,41.70219431234172],[-87.67290345484278,41.70251426759535],[-87.67291095084158,41.702724627587685],[-87.67291096594982,41.70272504783137],[-87.67291508821361,41.70284543781451],[-87.6729152994466,41.70285625168666],[-87.67292236089584,41.703064422212584],[-87.67292638298154,41.703200975712406],[-87.67293231107595,41.70341970537985],[-87.67293949616706,41.703665940440104],[-87.6729482644559,41.70391846910098],[-87.67295561914548,41.70413020889979],[-87.67296444785748,41.70438400027788],[-87.67297120461647,41.70457548347725],[-87.67297464495115,41.70468730692182],[-87.6729790091382,41.70482913173305],[-87.67298281167744,41.70498003676617],[-87.6729894347865,41.705184554736874],[-87.67299612461102,41.705404029672614],[-87.67300302366289,41.70560306055696],[-87.67300912582726,41.7058012361134],[-87.67301916864295,41.70612251741602],[-87.67303252135986,41.706521184709814],[-87.67269839438057,41.70652719106925],[-87.6725260994163,41.70652965829678],[-87.67229873648424,41.70653458028163],[-87.67208109215039,41.70653819024133],[-87.67173242837632,41.70654397265203],[-87.67155011663603,41.70654824716372],[-87.67138773587314,41.70655171437554],[-87.67128553857513,41.70655385817542],[-87.67103087354253,41.70656062371602],[-87.67069685666672,41.70656289699456],[-87.67042832628721,41.706564723787714],[-87.67018424845826,41.70656754180628],[-87.66983862664809,41.70657306625681],[-87.66954485073863,41.70657960268125],[-87.66938053228408,41.70658276990461],[-87.66911026981198,41.706586388005036],[-87.6689824692878,41.706588098550476],[-87.6688408337174,41.70658991419674],[-87.66883980120711,41.70658992743663],[-87.66860495626062,41.7065929683809],[-87.66842434919498,41.70659529904626],[-87.66820500839182,41.706599984913204],[-87.66785793519021,41.70660420517096],[-87.66750338690179,41.70660879271858],[-87.66710466590118,41.706614970295036],[-87.6668227679598,41.70661933720878],[-87.66631527910926,41.70663167856757],[-87.66587462579716,41.70663688644351],[-87.6654930387799,41.706642573127695],[-87.66495415785668,41.70665554933145],[-87.66483919533401,41.70665672783098],[-87.66451523250012,41.70666004851885],[-87.6640425446487,41.706664321952545],[-87.66359541719126,41.70667225515075],[-87.66319384555874,41.70668036994959],[-87.66286633965126,41.70668693985752],[-87.6624545312561,41.70669688565753],[-87.66227376533962,41.70670035834446],[-87.6622307038326,41.70669977920317],[-87.66208354218533,41.70670107920429],[-87.6616342955558,41.70670504742177],[-87.6610821242333,41.70671054581428],[-87.66086729990502,41.70671403384554],[-87.66065474540699,41.70671748508966],[-87.6603293517401,41.70672167284014],[-87.66001868172049,41.70672567040831],[-87.65939808229511,41.70673287261091],[-87.6590456686655,41.70673983414233],[-87.65864104880744,41.70674794450646],[-87.65838589365325,41.70675305806675],[-87.6578622847415,41.706758763352276],[-87.65760027930037,41.70676160623424],[-87.65719462498636,41.70676600634372],[-87.65670931024712,41.70677274811981],[-87.65654663981427,41.70677500737589],[-87.65640090882451,41.70677703110547],[-87.656364408248,41.70677784109243],[-87.65601924562581,41.706785499085456]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11035600.237","perimeter":"0.0","tract_cent":"1170669.72570162","census_t_1":"17031730600","tract_numa":"61","tract_comm":"73","objectid":"591","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1837878.65683275","census_tra":"730600","tract_ce_3":"41.71061489","tract_crea":"","tract_ce_2":"-87.6505811","shape_len":"13884.583254"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64299035210313,41.7139131218843],[-87.64297488484988,41.7132603741983],[-87.64298446652532,41.71273459208383],[-87.6429760452512,41.71251532497861],[-87.64297221692665,41.71237278791441],[-87.6429661971067,41.71214870658554],[-87.64295131201474,41.71160249683139],[-87.64294312549524,41.71127225064897],[-87.64293726394375,41.71093016293727],[-87.64293361776373,41.71068905218911],[-87.64292916036476,41.71055811978955],[-87.64291806884583,41.710232303270175],[-87.64290690949029,41.709793144362116],[-87.64290058929402,41.70952984335923],[-87.64289610628173,41.709344739186456],[-87.64288026107565,41.70873713147678],[-87.64287177393159,41.70841168726202],[-87.64285447619827,41.70765985780715],[-87.64284761409363,41.707384357118464],[-87.64284279763551,41.70719056288665],[-87.64283396928684,41.7069170882967],[-87.6431414401029,41.70691438421232],[-87.6437404058312,41.70690659140929],[-87.64391748582528,41.7069054776558],[-87.6440403181816,41.70690501303552],[-87.64435924568393,41.70690327756934],[-87.64471084816994,41.70690044527066],[-87.64526433079568,41.70689419199717],[-87.64552359224336,41.706891261751906],[-87.64619274042153,41.70688544020058],[-87.64648013620656,41.70688321528337],[-87.6469168194148,41.70687983310619],[-87.647336055791,41.70687772606534],[-87.64769425926494,41.70687326509682],[-87.64811518456872,41.70686802193905],[-87.64870137477259,41.70686306297519],[-87.64891511574393,41.70686179109083],[-87.64922913296503,41.70685992175054],[-87.64977368075346,41.706855203385764],[-87.65012609407061,41.70685243041676],[-87.6504013996574,41.70685026349702],[-87.65090357821593,41.70684528824792],[-87.65134290437575,41.706841108266104],[-87.65149680599853,41.706839643564386],[-87.65195062636961,41.70683629783055],[-87.65255777149464,41.70682780665914],[-87.65262459217313,41.70682687204453],[-87.6529311337118,41.70682258351787],[-87.65307391911145,41.706820585722],[-87.6531146851467,41.706819565467995],[-87.65330633450398,41.70681476951965],[-87.65361276098118,41.706816736380866],[-87.65367969104878,41.7068171660043],[-87.65402050376416,41.70681935270941],[-87.65442062576587,41.70680997157576],[-87.6549986488239,41.70679796191816],[-87.65507250324532,41.70679760391486],[-87.65558580421458,41.70679511437721],[-87.65567905957211,41.706793045702035],[-87.65601924562581,41.706785499085456],[-87.656364408248,41.70677784109243],[-87.65866825351058,41.711344936114656],[-87.65997595429693,41.71400107651109],[-87.65990443226138,41.71400229245671],[-87.65976989797142,41.71400433280782],[-87.65976983643172,41.71400433354483],[-87.65964230140983,41.71400626767695],[-87.65922835177668,41.71401254399107],[-87.65880595846548,41.714015262828475],[-87.65877562150554,41.71401545825149],[-87.65843454594909,41.71402017916265],[-87.65821845761981,41.71402308121213],[-87.65799092958022,41.71402548037482],[-87.65778391227313,41.71402766266458],[-87.65749550823872,41.71403208145652],[-87.65725838909985,41.714035713963845],[-87.65678867466228,41.71404107268979],[-87.6565392935494,41.714043849662644],[-87.65610031481495,41.714048736462416],[-87.655885070714,41.71405144672163],[-87.65543289792124,41.71405704025902],[-87.65517327503434,41.7140593869314],[-87.65476235461843,41.71406309963847],[-87.65421150169117,41.71406950548884],[-87.65420183160214,41.71406961299853],[-87.65376695003823,41.714074835908534],[-87.65332014755168,41.714083579496645],[-87.6529972422104,41.71409292705788],[-87.6529742639885,41.714093033062966],[-87.65275054521531,41.71409406071355],[-87.65251756174825,41.71409513073676],[-87.65202663560633,41.714120634196426],[-87.65189370827721,41.71395284462923],[-87.6518551416528,41.713921223884974],[-87.65178218906861,41.71386141011345],[-87.65157310861862,41.71400239905624],[-87.65137044907128,41.71411846281098],[-87.6505922117948,41.714128028401845],[-87.65014965263038,41.71412668823342],[-87.64975410195647,41.714129552311704],[-87.64949079215971,41.71413100194483],[-87.64829165240111,41.71413929670938],[-87.64806830790143,41.71414072281054],[-87.64788341418009,41.7141446147393],[-87.64763411680927,41.7141498510056],[-87.64731340410069,41.714154495748566],[-87.64726314568313,41.71415517075565],[-87.64714365372946,41.71415677541073],[-87.64683929087289,41.71416011685639],[-87.64666379717535,41.7141617706458],[-87.64643474975514,41.71416392900095],[-87.64626734473899,41.714166084171794],[-87.64606905871666,41.71416871304807],[-87.6459460866369,41.71417033763188],[-87.64559201535609,41.71417428404116],[-87.64555435219528,41.71417534845544],[-87.64544877961231,41.714176816209765],[-87.64483047258118,41.71418540974145],[-87.64469742655272,41.71418725858814],[-87.64423526513055,41.714205465111014],[-87.64392000264822,41.71420383813838],[-87.64383949035525,41.714204593042545],[-87.64363509112715,41.71420688602297],[-87.64352567490154,41.71420811296256],[-87.64300277444356,41.71421431177898],[-87.64299035210313,41.7139131218843]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10995097.6237","perimeter":"0.0","tract_cent":"1164975.63852649","census_t_1":"17031710400","tract_numa":"55","tract_comm":"71","objectid":"592","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1853639.07830478","census_tra":"710400","tract_ce_3":"41.7539859","tract_crea":"","tract_ce_2":"-87.67098986","shape_len":"13615.3019667"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6696964976456,41.757630895150086],[-87.66969650218333,41.75763073929987],[-87.6694840919239,41.75763206714468],[-87.66861490118644,41.757642135649895],[-87.66848111176334,41.75764341975725],[-87.66835877472568,41.75764476999298],[-87.66799359358943,41.75764917355363],[-87.66736586954416,41.75765651394277],[-87.66727239696618,41.75765768701549],[-87.66707583612762,41.757659634957946],[-87.66635738444762,41.7576685019052],[-87.66620436462219,41.75766864260974],[-87.66606096584523,41.75766883898758],[-87.6659161920063,41.75766902719867],[-87.66547495763581,41.75767366700868],[-87.66503367303736,41.75768310708768],[-87.66483432035798,41.75768915140992],[-87.66459280370269,41.757696664891846],[-87.66450480736226,41.75769992608877],[-87.6639895817557,41.75772676994353],[-87.66374161174939,41.75773801745608],[-87.66360805974696,41.75774375895925],[-87.66360741929199,41.757677889759606],[-87.66360676831982,41.75763869512301],[-87.66360595725122,41.75758021149365],[-87.66359853026312,41.75726877212896],[-87.66359910687592,41.75710713603157],[-87.66359964117964,41.75695746484548],[-87.66359224776454,41.75662514149347],[-87.66358140003308,41.75613856812016],[-87.66357900326935,41.75591083182346],[-87.66357500457475,41.755813768009375],[-87.66356636153816,41.755603944956704],[-87.66355850453711,41.75529508262315],[-87.66354885559424,41.754915351890624],[-87.66353921329788,41.754534989981344],[-87.66353072689573,41.7542020838119],[-87.66352588553403,41.75399443110276],[-87.66352188128293,41.75382265956279],[-87.66351477629722,41.75352609600228],[-87.66350612045431,41.753181305944715],[-87.66349571226856,41.75276537325748],[-87.66348802587923,41.75245777414427],[-87.66348262354316,41.75224420823886],[-87.66348056650668,41.75217448567105],[-87.66347696908302,41.752052568131845],[-87.66347557822871,41.75200541257779],[-87.66346720184617,41.75159144010709],[-87.66346096051291,41.75128233998693],[-87.6634566986899,41.751071003025864],[-87.66345520561421,41.75099695349103],[-87.66345157626459,41.750816219495626],[-87.66344708267077,41.75059390476409],[-87.66343735876742,41.75035707672638],[-87.66370407294666,41.750348525017934],[-87.66404575525891,41.75034543067162],[-87.66444532523025,41.750341810613456],[-87.66465086305502,41.75033870859292],[-87.6648481741946,41.750335730134424],[-87.66564102483734,41.75032549362392],[-87.66586376117154,41.750325020450724],[-87.66608376469026,41.750324552929634],[-87.66686738491966,41.7503138427041],[-87.66707871839384,41.75031008854621],[-87.66734021554896,41.75030544253479],[-87.66808155045717,41.75029423192633],[-87.66829100173024,41.750292597515426],[-87.66855601845381,41.750290528997596],[-87.66928751546533,41.75028081794024],[-87.66949548618399,41.750277365101454],[-87.66975099410392,41.750273122203616],[-87.67051066640971,41.750264005168866],[-87.67070800956692,41.75026207229061],[-87.67093889301088,41.75025960081022],[-87.67173270506524,41.750248352746645],[-87.67192056102647,41.7502463121115],[-87.67210914633475,41.75024426301714],[-87.67290966391931,41.75023305995518],[-87.67313427594465,41.7502311844191],[-87.67338270491966,41.75022910934439],[-87.67415872188961,41.75021984252106],[-87.67435395936185,41.75021784766456],[-87.67453028584008,41.75021604591837],[-87.6753957183696,41.75020341392824],[-87.67557971753024,41.750199887996814],[-87.67577061494796,41.75019622945646],[-87.6763014868258,41.75019032659398],[-87.67662780725865,41.75018669697793],[-87.67678244100091,41.75018463441219],[-87.67702100724325,41.75018145172511],[-87.67796408257875,41.750169915402225],[-87.67804036498148,41.7501689816298],[-87.67811624604578,41.750168053202074],[-87.6782637104385,41.75016624853396],[-87.67826630894936,41.75027079154925],[-87.67828325673052,41.750901735530135],[-87.67829252539316,41.75125168779297],[-87.67830629528119,41.75178965043281],[-87.67832092715624,41.75233310654848],[-87.67832295022549,41.75240447004872],[-87.6783286098353,41.75261375567288],[-87.67834476095672,41.75323303182394],[-87.67834674258894,41.75330851126108],[-87.67836675070241,41.75404409927521],[-87.67836843433518,41.75410379751998],[-87.67838801486623,41.75479135792512],[-87.67838988335674,41.75483287619342],[-87.67841241002152,41.75532080484095],[-87.67845241353932,41.75589219131808],[-87.67848611672038,41.75636234558796],[-87.6785126060978,41.75682113844145],[-87.67853174708112,41.75737182356032],[-87.67853355258794,41.75741951613318],[-87.67853456428372,41.757455197851456],[-87.67858798381371,41.757653435211104],[-87.67853989599014,41.75765410575161],[-87.67815131699474,41.75765952189084],[-87.67805372185894,41.75766068050142],[-87.67783202646865,41.757663628383916],[-87.67712566334384,41.75767323566603],[-87.67636477608775,41.75769229601747],[-87.67593646745522,41.757702871684266],[-87.67546330043044,41.75771455337518],[-87.67516773597926,41.757718652745154],[-87.67476591528627,41.75772422472206],[-87.67456744930035,41.75772663999623],[-87.6741953665111,41.757731167225536],[-87.6739089126961,41.75773465177649],[-87.6737581589082,41.75773661114596],[-87.6733448411487,41.757741982069575],[-87.6731122631949,41.757745003777465],[-87.6723403926927,41.75775565939163],[-87.6721302216614,41.757757680109584],[-87.67158864123834,41.75776288554817],[-87.6709119458244,41.75777122480045],[-87.67086164830381,41.757771844533934],[-87.67024934522192,41.757778453678256],[-87.67024925541799,41.75777845453212],[-87.66969235550569,41.75778388616955],[-87.66969349218856,41.757741895289314],[-87.6696964976456,41.757630895150086]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"21130768.7021","perimeter":"0.0","tract_cent":"1153722.60064813","census_t_1":"17031740200","tract_numa":"66","tract_comm":"74","objectid":"590","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1835595.82364058","census_tra":"740200","tract_ce_3":"41.70470236","tract_crea":"","tract_ce_2":"-87.7127056","shape_len":"21313.0018543"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71252509552211,41.711484663618464],[-87.71252474067694,41.71147377220842],[-87.71145023666502,41.7114894775955],[-87.71129797407886,41.71149123234008],[-87.71129797078278,41.71149123232224],[-87.71129086035532,41.71129799370119],[-87.71128243059968,41.7110479397931],[-87.71127190019665,41.7107345902953],[-87.71126514588597,41.71052346000629],[-87.7112591632934,41.71033113226165],[-87.71125285725026,41.71012661986212],[-87.71125285726878,41.71012661794119],[-87.71124709632757,41.70994161983767],[-87.71124642429734,41.709920155276045],[-87.71124424824914,41.70984956073762],[-87.71124424826766,41.70984955881668],[-87.71124422459576,41.709848823208475],[-87.7112384320757,41.7096702955029],[-87.71123843102202,41.70967029083184],[-87.71123163714795,41.70945963588039],[-87.71123163718764,41.70945963176411],[-87.71122659045481,41.709295493031924],[-87.71122288502747,41.70917464456292],[-87.71122288506452,41.709174640721066],[-87.71121872900595,41.70903967956809],[-87.71121288646367,41.708847929113915],[-87.71120752446832,41.708674789178424],[-87.71120752448684,41.70867478725749],[-87.71120148236537,41.70847719083788],[-87.71119637688383,41.708311599185194],[-87.71119637690236,41.70831159726427],[-87.71118774266822,41.70802959866871],[-87.71118250304066,41.707847538652736],[-87.71117703750588,41.70765856224604],[-87.71117262007037,41.70752417567607],[-87.71116561169684,41.70731282461773],[-87.71115794931464,41.707081984993835],[-87.71115310223104,41.706935191712304],[-87.71114589355231,41.70671807617942],[-87.71113892039452,41.70650699971398],[-87.71113712548211,41.706452805392026],[-87.71113341718527,41.70634082816772],[-87.71112580929154,41.70613474265796],[-87.71112417827939,41.70609086049222],[-87.71112354112961,41.70607372336468],[-87.71018828521723,41.706089897348136],[-87.71001837403043,41.706089464632846],[-87.70999620340773,41.70608940804468],[-87.70995940532332,41.70608931409389],[-87.70995939030918,41.70608931401245],[-87.70921201018454,41.70608745283809],[-87.70909976045398,41.70608874688971],[-87.70909310993652,41.706088823555596],[-87.70896063211953,41.7060903511787],[-87.70872983152917,41.70609301173632],[-87.70872982896579,41.70609301172238],[-87.70861760023041,41.70609429142098],[-87.70861752148186,41.70609429263949],[-87.70853424946111,41.7060952417267],[-87.7081726050836,41.706098329966984],[-87.7080230115506,41.706099607243985],[-87.70791778050908,41.706100505551376],[-87.70783742776734,41.70610173869113],[-87.70746109062034,41.70610751402141],[-87.70746107743454,41.70610751422402],[-87.70736635869208,41.7061089742358],[-87.70683789665087,41.706117565995356],[-87.70664338316885,41.70612106839423],[-87.70661840642474,41.706121518097355],[-87.70634773893207,41.706126391487544],[-87.70624430840145,41.706127528060684],[-87.70614959911593,41.7061285746482],[-87.70606393417489,41.70612952150906],[-87.70599906860399,41.7061302379877],[-87.70582699411578,41.70613213943024],[-87.7054248708897,41.70614141367387],[-87.7050390460806,41.70614756502925],[-87.70503903765538,41.70614756525761],[-87.70502428549763,41.70614780898081],[-87.70502403936166,41.70614781284928],[-87.70502393900198,41.706147814496035],[-87.70502281050479,41.70614783302492],[-87.7050228079414,41.7061478330109],[-87.70496511880513,41.70614816716269],[-87.70451355675809,41.70615078291546],[-87.7044363972508,41.70615224795196],[-87.70442663757285,41.706152433297184],[-87.70434016012335,41.70615407532809],[-87.70416126333069,41.706157471837855],[-87.70381665112319,41.70616132076067],[-87.70380700934574,41.706161470473965],[-87.70380276570586,41.70616153614308],[-87.70379441834055,41.70616166550299],[-87.70379440661952,41.7061616657132],[-87.70341455490407,41.70616770684435],[-87.70326725543175,41.70616947734858],[-87.70325129671787,41.706169668947375],[-87.70308524981158,41.706171664647556],[-87.70275134546195,41.7061758734469],[-87.70274841901792,41.70617591062861],[-87.70274202773,41.70617599109371],[-87.70261042651654,41.70617764930525],[-87.70254693525841,41.706176532128104],[-87.70254692683585,41.70617653208187],[-87.70213575791914,41.70616930717462],[-87.70213574364008,41.70616930682176],[-87.70193407910342,41.706171076676725],[-87.70173371145569,41.706172834095334],[-87.70132488614075,41.70617824280971],[-87.70132173462737,41.70611518191148],[-87.701315155512,41.70598273840278],[-87.70131217742305,41.705677278108645],[-87.70131134816641,41.70546650900401],[-87.70131092279523,41.70527440355798],[-87.7013059393065,41.70499426236559],[-87.70129855360705,41.70480609762758],[-87.70129127709285,41.70463300013215],[-87.70128640215133,41.70451749216835],[-87.70128151822287,41.704353284085784],[-87.701274445836,41.704115491749654],[-87.70126745490138,41.70393564474932],[-87.70126133726434,41.70377506774892],[-87.70125572800963,41.70361493263299],[-87.70124823123324,41.703404483543046],[-87.70124320359012,41.703263451885356],[-87.70123734765467,41.703091158285055],[-87.70123457383798,41.70300469659548],[-87.70122713208842,41.70277319876372],[-87.70121722917713,41.70252465057503],[-87.70121408639346,41.70244576696502],[-87.70121111230907,41.70237112098081],[-87.70120248721129,41.7022197785392],[-87.70119675835065,41.70206817759136],[-87.70118785438633,41.70183318637542],[-87.7011820981429,41.70163795093877],[-87.70117718907056,41.70147145221316],[-87.70117324017889,41.70135120130753],[-87.70116446537968,41.70110303797743],[-87.70115548597,41.700868293295095],[-87.70114783688604,41.70066167215443],[-87.70113452099412,41.70030196731339],[-87.70112722835209,41.70010439013922],[-87.70111662913394,41.699818207708006],[-87.70110701355694,41.69955124100318],[-87.7010986212498,41.69930519283235],[-87.70109143499789,41.69911546500006],[-87.70108253142959,41.69887141598803],[-87.70134631472803,41.698866583779456],[-87.70152534242041,41.69886616856789],[-87.70168893709004,41.698865170156196],[-87.70174773461056,41.6988648113478],[-87.70191138039311,41.69886090802362],[-87.70204647909054,41.698855502929874],[-87.70229301097945,41.69885460163787],[-87.70258045647797,41.69885355005643],[-87.7027838088581,41.69884829914727],[-87.70296840273423,41.69884409760474],[-87.70321302511529,41.698842392947824],[-87.703521666873,41.6988367036927],[-87.70396924177082,41.6988284517257],[-87.7042402444867,41.69882513297829],[-87.70452836941963,41.698819574596676],[-87.70479575780774,41.69881517627318],[-87.7049355891707,41.69881287582749],[-87.70516437271485,41.6988091116216],[-87.70536766762879,41.69880596896194],[-87.70559597022473,41.698803044602265],[-87.70582463949037,41.69880006745333],[-87.70601177006792,41.69879746987929],[-87.7062290252396,41.69879445349391],[-87.70633091755967,41.69879221024145],[-87.70648331609146,41.69878884279356],[-87.70666651716908,41.698784737485724],[-87.70687253217741,41.69878050926286],[-87.7070071956007,41.69877839300542],[-87.70723473501961,41.698774816860656],[-87.70757657606651,41.6987694430316],[-87.7077958835297,41.69876517603273],[-87.70799961034376,41.698762744593964],[-87.70808519260937,41.69876206257412],[-87.70814759343942,41.69876160126568],[-87.70842972365827,41.69875780214345],[-87.70874563651516,41.69875354651116],[-87.70893992476839,41.69875023880643],[-87.70904400848414,41.69874852647781],[-87.70916017801441,41.69874660526455],[-87.70936314467413,41.698743289092704],[-87.70961216295682,41.698739185429574],[-87.70989678428583,41.698734494437275],[-87.71013482804746,41.69873139463172],[-87.71025077531608,41.698729807840266],[-87.71038041826442,41.69872803308946],[-87.71052537372279,41.69872563561098],[-87.71085125281455,41.69872085381172],[-87.71207788489006,41.698702846000636],[-87.71239800415108,41.69869814421335],[-87.7126179984208,41.69869474963388],[-87.712804629751,41.69869180568691],[-87.71299075161353,41.69868852936662],[-87.71329377448501,41.6986834353099],[-87.7136061721881,41.69867818298924],[-87.71379268727662,41.69867589545069],[-87.71390240633555,41.69867451180129],[-87.71397869026319,41.69867354996276],[-87.71419043851269,41.698670876344536],[-87.71449268034748,41.698666717871276],[-87.71489424712684,41.69866119133526],[-87.71506370608995,41.69865809641859],[-87.71511325832459,41.698657148081324],[-87.7152248893764,41.69865501190202],[-87.71542866190107,41.69865160674561],[-87.7157294360372,41.69864743849972],[-87.71601366781448,41.698643498949636],[-87.71626841082204,41.69864020170592],[-87.71653071053021,41.69863548995899],[-87.71679469751399,41.69863051223196],[-87.71691390372773,41.698628739157414],[-87.7170603733438,41.69862656110301],[-87.71715001073238,41.69862522775308],[-87.71724090792605,41.69862391535761],[-87.71739618715182,41.69862171741608],[-87.7176773069071,41.698617131637356],[-87.71788290923217,41.698613814261066],[-87.71817196211592,41.69860922722008],[-87.71845056641415,41.698604805289406],[-87.71864642996042,41.69860132494012],[-87.71897824259342,41.6985952230217],[-87.71926859333078,41.698590298216075],[-87.71960024430768,41.69858185354366],[-87.71977997019958,41.698577277083714],[-87.72006577996966,41.69857619553111],[-87.72032642059578,41.69857261888594],[-87.72063757016396,41.69856762427978],[-87.7206375704155,41.6985676363562],[-87.72064866082053,41.69888057759969],[-87.7206540355624,41.69902034775747],[-87.72066374003111,41.699282566016976],[-87.72066871462067,41.69948375140441],[-87.72067421458767,41.6997070163801],[-87.72067664481034,41.69980567688905],[-87.72067864263802,41.699970957637255],[-87.72067865466163,41.69997196706735],[-87.72068272003685,41.70025355765876],[-87.72068941333379,41.70039709427404],[-87.72070291724894,41.700687324376254],[-87.7207107756661,41.70090499218501],[-87.72071914355158,41.701161466750236],[-87.72072471976956,41.70131078875259],[-87.72073537596222,41.701596365976656],[-87.72074340536524,41.701807612647244],[-87.7207436788697,41.701813404373304],[-87.72075276809898,41.70200547407264],[-87.72075837453784,41.702225009692725],[-87.7207583747764,41.70222502314122],[-87.72076411263825,41.70245000640477],[-87.72077157758025,41.70263578290192],[-87.7207715775464,41.70263578646938],[-87.72078539967539,41.70297362874705],[-87.72079024161775,41.703096243883444],[-87.72079044572232,41.70310116885248],[-87.72079046516942,41.7031016278085],[-87.7207908373972,41.703110600191714],[-87.72079390653228,41.70319239792872],[-87.7207961497651,41.70324924473302],[-87.72081039024577,41.703600869591476],[-87.7208181666,41.70379252030503],[-87.72082919122703,41.70404305397017],[-87.72082919184481,41.70404306604852],[-87.72083005834249,41.70406304775654],[-87.72083008057008,41.70406356106508],[-87.72083008659682,41.70406369776493],[-87.72083008897418,41.70406375595744],[-87.7208312343769,41.70409015814421],[-87.720839452818,41.704276795655794],[-87.72083951948918,41.704278298258366],[-87.72085249093828,41.70448199653476],[-87.7208729621543,41.70480225991545],[-87.72088345587838,41.7049857129302],[-87.72088474087751,41.70500817527072],[-87.72089150878821,41.705194139518476],[-87.72090289320394,41.705507218617385],[-87.7209097817961,41.705699770160486],[-87.72090978175703,41.705699774276766],[-87.72091316811549,41.70580983588421],[-87.72091515336709,41.70587466728927],[-87.72091515365777,41.70587467524939],[-87.72091627765133,41.70591171351683],[-87.7209171059547,41.705939004814375],[-87.72091977885123,41.70602607637316],[-87.72092253366134,41.70611582381534],[-87.72092920826124,41.70630774272629],[-87.7209365040486,41.70651906790813],[-87.72094512379014,41.706768518340816],[-87.72095401103145,41.70702455712976],[-87.72096243657121,41.70726739239403],[-87.72097103505952,41.70751898408048],[-87.72097725298191,41.70770124074122],[-87.72098298265006,41.70786930605872],[-87.72098298263182,41.70786930797964],[-87.72098803267883,41.708035667362665],[-87.72099227071968,41.70817567794404],[-87.72099885901176,41.70838444705765],[-87.72100254257226,41.708501923728036],[-87.72100985014255,41.70872370478482],[-87.7210155333388,41.70889668244811],[-87.72102138503286,41.70907498555197],[-87.72102644264672,41.70922902427215],[-87.72103479535006,41.709495021465465],[-87.72103479602,41.70949502805543],[-87.7210410604017,41.70969550038401],[-87.72104726915914,41.70989419600472],[-87.72104967249585,41.70997280639632],[-87.72105063216145,41.710003245570455],[-87.72105079906758,41.710008543563774],[-87.72105795294567,41.71023883088682],[-87.72106491565481,41.710462174304176],[-87.7210719829249,41.710690018419974],[-87.7210794163372,41.71098735087863],[-87.72108387089015,41.71116633200491],[-87.72108807066863,41.711349044878155],[-87.72109291968307,41.711558712978984],[-87.72109295268736,41.71156013663794],[-87.72109355774835,41.711681714155645],[-87.72109429720149,41.711835290430805],[-87.7210952978093,41.7120463348735],[-87.72109864078567,41.712249872054834],[-87.72110091604281,41.71238830780689],[-87.72110407568599,41.712526254837194],[-87.72110981963363,41.712704419760776],[-87.72111666680293,41.71291689410392],[-87.72112474583268,41.713159077957215],[-87.72112510749326,41.71316990653081],[-87.72112510745161,41.713169910921515],[-87.72095394941309,41.713172684026475],[-87.72078600979971,41.7131754046008],[-87.72054358146153,41.71317954585241],[-87.72053727510134,41.71317963708986],[-87.72048405638417,41.71318040820014],[-87.72035174552195,41.713182284358226],[-87.72033921891651,41.71318246205687],[-87.7201424769414,41.71318500746184],[-87.72008861510699,41.71318588994455],[-87.71990616797082,41.71318887842024],[-87.71957989135772,41.71319421688456],[-87.71946820480905,41.71319570600305],[-87.71928893494906,41.71319815117747],[-87.71915277927893,41.71320000266566],[-87.71895746461534,41.71320269143525],[-87.71868748707246,41.71320750450186],[-87.71868747718138,41.71320750472339],[-87.71842805890823,41.71321215438705],[-87.71836835039927,41.71321304264926],[-87.71817208173832,41.71321594370128],[-87.71808193262375,41.713217272057996],[-87.71798431138755,41.71321872499162],[-87.71776868639753,41.71322188724668],[-87.71762239860855,41.71322403199851],[-87.71746261392663,41.71322635917748],[-87.71722542930323,41.713229808005714],[-87.71715193490878,41.713230877768],[-87.71710143335984,41.71323161275773],[-87.71706040705912,41.713232216591685],[-87.71685307594507,41.713235220448226],[-87.71684750805665,41.71323530062548],[-87.71661713648786,41.713238674426236],[-87.71643878084153,41.71324128499402],[-87.71624152702981,41.71324373891607],[-87.71594364994952,41.71324746291336],[-87.71573899266919,41.71325047939943],[-87.71563012559741,41.713252062544264],[-87.71550884038454,41.713253852979804],[-87.71528740715175,41.713257080616195],[-87.71502113080923,41.713261521042455],[-87.71473258408001,41.71326630750406],[-87.71454437486196,41.71326891615043],[-87.71449808562708,41.71326957113819],[-87.71441367619273,41.71327076506179],[-87.71435492666383,41.713271592186054],[-87.7143220626348,41.71327205486329],[-87.71424085236653,41.71327318219099],[-87.71415964173515,41.71327430891046],[-87.71404070207072,41.713275973492436],[-87.71380179415898,41.71327954318223],[-87.71353336190708,41.71328355661384],[-87.71330342918891,41.71328692668622],[-87.71313250832111,41.71328946218894],[-87.71296961030279,41.71329184809738],[-87.71283341586505,41.71329388481372],[-87.71277223807918,41.71329474220048],[-87.71257762389655,41.71329747028656],[-87.71257762398896,41.71329746068192],[-87.71257762401274,41.71329745821215],[-87.71258049404635,41.7131856547378],[-87.71257365201778,41.71297556643018],[-87.71252509579857,41.711484672950675],[-87.71252509552211,41.711484663618464]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2636201.67732","perimeter":"0.0","tract_cent":"1167735.01387642","census_t_1":"17031710600","tract_numa":"12","tract_comm":"71","objectid":"593","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1851355.35167943","census_tra":"710600","tract_ce_3":"41.7476603","tract_crea":"","tract_ce_2":"-87.66094307","shape_len":"6630.29401577"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6630592364131,41.74489838454716],[-87.66330237910246,41.74489404567535],[-87.6633034672394,41.74493713163438],[-87.66330657481171,41.745149284835925],[-87.66332202623177,41.745774336365606],[-87.66334076379856,41.746530886797004],[-87.66334475088242,41.746714888192315],[-87.6633496289828,41.74694000506063],[-87.66338805460082,41.748478194296965],[-87.66339159872774,41.74852742258731],[-87.66340467377385,41.74870903227846],[-87.66342053430226,41.74965086113692],[-87.6634308533283,41.750198630018325],[-87.66343735876742,41.75035707672638],[-87.66313772686378,41.75036668337156],[-87.66282635493806,41.75036858853341],[-87.66241680054236,41.75037109304042],[-87.66222666893609,41.75037183038639],[-87.66213442468765,41.750372188118455],[-87.6618243613895,41.75037866281389],[-87.66169947571407,41.75038155671177],[-87.66125048543624,41.75038793256027],[-87.66101367909809,41.75039089383219],[-87.66084980917523,41.75039294286001],[-87.66040898643925,41.75039971998325],[-87.66020622763423,41.75040239160614],[-87.6600499808444,41.7504044501239],[-87.6598013221888,41.75040880160877],[-87.65971635990337,41.75041028847822],[-87.65885934687351,41.750423208530236],[-87.6585895857531,41.75042580449272],[-87.65858637527403,41.75027870976701],[-87.65857946969027,41.75002121185173],[-87.65856028400664,41.74930578225943],[-87.65854522125228,41.74874250716908],[-87.65854065641967,41.748606930534756],[-87.65853677977952,41.748491792597605],[-87.65851558768068,41.74767051653978],[-87.6584958227768,41.74690545216777],[-87.65849302841099,41.74678614920443],[-87.65849108744473,41.746703278644304],[-87.65847043437074,41.74593908710342],[-87.65844708453982,41.745075535648716],[-87.65844485603391,41.74496568435082],[-87.65869039533779,41.744960441192525],[-87.65904883970117,41.744956202638726],[-87.65951857396078,41.74495064635496],[-87.65965857247711,41.74494820566858],[-87.65984604578281,41.74494493714166],[-87.6602614740234,41.74493813438244],[-87.66070754125673,41.744930828350306],[-87.66087172137576,41.7449292912104],[-87.6610574504939,41.744927552251085],[-87.66148172587425,41.74492197031001],[-87.66183286555038,41.74491735570455],[-87.6618851263614,41.74491666713046],[-87.66208696325361,41.74491352389041],[-87.66226569762738,41.74491073989212],[-87.66269515839173,41.74490405392266],[-87.6630592364131,41.74489838454716]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10651911.4227","perimeter":"0.0","tract_cent":"1173552.02910121","census_t_1":"17031710900","tract_numa":"38","tract_comm":"71","objectid":"594","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1849384.51757223","census_tra":"710900","tract_ce_3":"41.74212536","tract_crea":"","tract_ce_2":"-87.63968601","shape_len":"16384.0176641"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63945226568131,41.75048717706988],[-87.63948538880086,41.748857584756635],[-87.63932569188128,41.74886043895607],[-87.6391934814926,41.74886650407594],[-87.63916215604637,41.748867941096876],[-87.63909665928284,41.74887094556128],[-87.63906613816661,41.74793591887802],[-87.63906237053816,41.747052847817024],[-87.63907590867501,41.74619898319258],[-87.63909216858815,41.74517341150784],[-87.63913103433404,41.74448343353209],[-87.63919014216553,41.74343407065696],[-87.63859714205287,41.74344892919386],[-87.6378922036244,41.74346658890716],[-87.63763241793397,41.74347309547136],[-87.63729221294246,41.74348161574516],[-87.63647723150568,41.74351783934351],[-87.63644173890941,41.74355923711542],[-87.6363482219087,41.743668314027076],[-87.63633125653593,41.743688102130044],[-87.63628738922726,41.74373926790839],[-87.63617428951017,41.74387118475025],[-87.63608122319208,41.74397835111499],[-87.63599945013237,41.74407859838652],[-87.63596584379016,41.74412641980335],[-87.63596175159884,41.74413362045347],[-87.63594552887572,41.74416216652272],[-87.63547520423445,41.74397961170623],[-87.63524525882376,41.743889134638366],[-87.63501459016987,41.743797829421936],[-87.63494683114416,41.74377129205008],[-87.6346395519617,41.74365213193041],[-87.63452588313116,41.74361066656062],[-87.63436811176744,41.743553112961585],[-87.63436486078885,41.74355216835317],[-87.63422572593892,41.743511740715874],[-87.63410781962715,41.743498093169755],[-87.63409614999723,41.74305643997101],[-87.63407797768983,41.742367288502734],[-87.63406628371435,41.741915174861354],[-87.63405749305704,41.741567005822276],[-87.63405690508694,41.74154281280984],[-87.63405090690628,41.741295965255176],[-87.6340442850494,41.74102484212859],[-87.63404014220488,41.74086970857446],[-87.63403202612915,41.740797099649605],[-87.63400835031045,41.739556527754594],[-87.63396298438579,41.73947426538417],[-87.63403720450573,41.739176616477806],[-87.63408106198764,41.739144637475164],[-87.63405313242231,41.739059393897264],[-87.63400763198709,41.73890509285961],[-87.63397119073738,41.73876010843779],[-87.63394025274505,41.73861447197035],[-87.63391528004146,41.73846784241204],[-87.63390125683583,41.73836724669245],[-87.63388284847956,41.73820659248988],[-87.63387085139281,41.73804597703442],[-87.63386777561185,41.737949564411046],[-87.633860528968,41.737731004857125],[-87.6338569732827,41.73763664726527],[-87.63385408377903,41.73756527760225],[-87.63385156998703,41.737501457353915],[-87.63384692703953,41.73738067942419],[-87.63384475234814,41.73728564443015],[-87.633829529766,41.73666259293542],[-87.63381325003974,41.736052570963686],[-87.6338103899463,41.73594828097587],[-87.63393980259204,41.73595835825751],[-87.6340797667253,41.73596925703627],[-87.63412816477789,41.73594231372031],[-87.63441308574329,41.73593718666657],[-87.63472467645491,41.735964466445424],[-87.6351025768652,41.73602336955136],[-87.63531382640663,41.736074389040766],[-87.63551506242904,41.73609996711448],[-87.63590656855006,41.73610646031166],[-87.63631642989334,41.73611340628661],[-87.63631647055966,41.7361134065333],[-87.63753787590502,41.73610708910281],[-87.63875219399904,41.736100025376196],[-87.63996973513773,41.73609332090758],[-87.64118193771527,41.736086214616726],[-87.64239945716429,41.736079475760235],[-87.6435415594616,41.73606953382443],[-87.64362180882279,41.73607036024119],[-87.64362704031949,41.736278066891884],[-87.64364754771556,41.73731330560114],[-87.64365180600994,41.73752828949249],[-87.64366613073341,41.73781268610554],[-87.64367041473194,41.73792986645665],[-87.6436731755016,41.73800538149222],[-87.64367800708004,41.73813754659353],[-87.64368559815127,41.73839377357277],[-87.6436966743645,41.73874206563688],[-87.64370625563538,41.73898978564482],[-87.64371019746243,41.7390916986904],[-87.64371433819223,41.739206289172024],[-87.64371433851163,41.73920629356484],[-87.64372507614213,41.73969331034746],[-87.64372941167126,41.739889939568585],[-87.64373474900458,41.74013201288451],[-87.64374519768296,41.7404876283815],[-87.64375284982567,41.740745035673186],[-87.64376125522504,41.74102451172246],[-87.6437722430262,41.7414051036136],[-87.64377670833085,41.74152862433155],[-87.64378278926841,41.741696832097],[-87.64379151827903,41.74202142648209],[-87.6437998856539,41.74231133061345],[-87.64380268401128,41.74241305149511],[-87.64380650751356,41.742552046240895],[-87.6438164740035,41.742904804609815],[-87.64382658950171,41.743195762023284],[-87.64383083223669,41.743358118544585],[-87.64383771694678,41.74362158080638],[-87.64384596317171,41.74383947348101],[-87.643847501703,41.743888633273386],[-87.64385559484306,41.74424184684919],[-87.64386569318246,41.7445960878295],[-87.64387580491483,41.744938775332486],[-87.6438822778127,41.745188932567245],[-87.64388617490667,41.74533953391143],[-87.64389220262078,41.745553626062474],[-87.64390425809947,41.745930436634836],[-87.64391461669348,41.74630830782857],[-87.64392332437073,41.746580183684166],[-87.64392889824887,41.74686411539872],[-87.6439342456632,41.74699833255851],[-87.64394256220703,41.747207071339034],[-87.64395175506283,41.74752609724745],[-87.64396243371263,41.74791519419259],[-87.64397648722478,41.74835189762723],[-87.6439833308918,41.74867137590812],[-87.64398874255232,41.74881947493191],[-87.6439958602487,41.74901421488248],[-87.64400444032383,41.74930834615966],[-87.64400881461263,41.749601683783226],[-87.64402155666015,41.74985961516845],[-87.64403138730118,41.75018234929],[-87.64403351404972,41.75025091534225],[-87.64403922750054,41.75043097576294],[-87.64404375434192,41.75064248318551],[-87.64376436886465,41.75064738895936],[-87.64349625214714,41.75065148765088],[-87.64331933139465,41.750653883104754],[-87.64297271326784,41.75065830495171],[-87.64282185163478,41.750660476677076],[-87.64251679075463,41.75066486752471],[-87.64217050146215,41.75066937153181],[-87.64185579010848,41.75067496989073],[-87.64160286070353,41.75067863304803],[-87.64133510158581,41.750682510401624],[-87.64120360987214,41.75068435263321],[-87.64083629838355,41.7506893846125],[-87.64037713233591,41.75069630883528],[-87.64014857868123,41.750699754925954],[-87.63975860222679,41.75070465824195],[-87.6395135536514,41.750708345435996],[-87.63942330290007,41.75070971565545],[-87.6393687734606,41.75071054303829],[-87.63945226568131,41.75048717706988]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7038832.05525","perimeter":"0.0","tract_cent":"1168479.48261326","census_t_1":"17031711100","tract_numa":"31","tract_comm":"71","objectid":"595","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1848388.19228205","census_tra":"711100","tract_ce_3":"41.739502","tract_crea":"","tract_ce_2":"-87.65830039","shape_len":"10615.7703686"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66257857686566,41.73579711799655],[-87.66306513463402,41.73578978493854],[-87.6630768356033,41.73629196096336],[-87.66308487331321,41.73663692325653],[-87.66309616434471,41.73709259992596],[-87.66310618240547,41.737494700154116],[-87.6631108997599,41.73761299683433],[-87.66311664477738,41.73775706256186],[-87.66313249863661,41.73842413267243],[-87.66315305887346,41.73928706423702],[-87.66315679106984,41.73943204411197],[-87.66316109771844,41.73959930428232],[-87.66317863847223,41.74028043461396],[-87.66320069606883,41.74113684316961],[-87.66320489376903,41.74125155102528],[-87.66320922807226,41.74136996723893],[-87.66323205497011,41.74216301399172],[-87.6632494737065,41.74295462922027],[-87.66325155885002,41.74307676371909],[-87.66302811549461,41.74308498288686],[-87.66263419229891,41.74308635931082],[-87.66244723471057,41.743087012122444],[-87.66224276053121,41.74308772588349],[-87.66203985001748,41.74308962380411],[-87.66195017654132,41.74309046240784],[-87.66185188391086,41.74309207962697],[-87.6617473605971,41.74309383268661],[-87.66166116297836,41.743095099185425],[-87.66163646236488,41.743095462212594],[-87.66150276961206,41.743097424884475],[-87.66143251466899,41.74309846444261],[-87.66094710683996,41.74310564573636],[-87.6608269755451,41.74310725502748],[-87.66069474972463,41.74310902583362],[-87.66021813524102,41.74311627967419],[-87.65979627363404,41.743122698527344],[-87.65961399514927,41.74312440793823],[-87.65947217347482,41.743125737965414],[-87.65899961701088,41.74313385936476],[-87.65839827576269,41.74314419146248],[-87.65820198077449,41.743147563324754],[-87.65778218586986,41.74315201788314],[-87.65767771125692,41.743153126181134],[-87.65735220822313,41.74315713934024],[-87.65718452298727,41.74315992611189],[-87.6570424496285,41.7431622873608],[-87.65657584132597,41.74316896641777],[-87.65612822188967,41.74317537184484],[-87.65597024066835,41.74317735616687],[-87.65582639221876,41.74317916317166],[-87.6553608324472,41.743185489185855],[-87.65492789300508,41.74319137033731],[-87.65475588919105,41.74319558803799],[-87.65462844422089,41.74319871300753],[-87.65414936956282,41.74320542630079],[-87.65374683495672,41.74321106558853],[-87.65353912690468,41.74321630165641],[-87.65353877655501,41.74319122428196],[-87.6535372467766,41.74308172141093],[-87.65352112004766,41.74234219927524],[-87.6534945539559,41.74151548343645],[-87.65349103610755,41.741394513746016],[-87.65348793898322,41.74128802332678],[-87.65346630798845,41.74045554631202],[-87.65344742379301,41.7397273686902],[-87.65344115472266,41.7395773602224],[-87.65343803270493,41.73950266383547],[-87.65341560696514,41.73869348078288],[-87.65339266563254,41.73786371222547],[-87.65339162592521,41.73775435348471],[-87.65339063373109,41.73764997320461],[-87.65337261597301,41.73703547002965],[-87.6533682171444,41.73688516546805],[-87.65336446474498,41.73675805416593],[-87.65336118810495,41.73664631382499],[-87.6533591295755,41.73657612957844],[-87.65335493985981,41.73643309812089],[-87.65335277209292,41.73635909917988],[-87.65334015449258,41.7359353726428],[-87.65409894299434,41.73592258381926],[-87.65455600180064,41.73591581496085],[-87.65512542383212,41.7359073787335],[-87.65577059833092,41.73589834549062],[-87.65584468081502,41.73589730807406],[-87.65600246190333,41.73589509823024],[-87.65638261596091,41.735888913499295],[-87.65698728849542,41.73587947974499],[-87.65731738355554,41.735874328516545],[-87.65769980513707,41.73586850952817],[-87.65820487654872,41.735861645660414],[-87.65842861457598,41.735858604548916],[-87.65883767006817,41.735852993095484],[-87.65941785190412,41.73584524778314],[-87.65986013969378,41.7358393413023],[-87.6601538009711,41.73583551863336],[-87.6606346735357,41.73582728849751],[-87.66114776366676,41.735818504960214],[-87.66184870923621,41.735808029974336],[-87.66192777441485,41.73580684815485],[-87.66257857686566,41.73579711799655]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7068968.4327","perimeter":"0.0","tract_cent":"1181568.66603279","census_t_1":"17031691400","tract_numa":"32","tract_comm":"69","objectid":"596","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854086.15735311","census_tra":"691400","tract_ce_3":"41.7548461","tract_crea":"","tract_ce_2":"-87.61016859","shape_len":"10631.8227293"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61479850559762,41.75111474998167],[-87.61495839313913,41.75111405846441],[-87.61496172842746,41.75122686000901],[-87.61496685544458,41.75146383516139],[-87.61496871753816,41.75157564969309],[-87.61497418727667,41.751904094575245],[-87.61498155604217,41.75224237591413],[-87.61498715729346,41.75249927762331],[-87.61499378428067,41.752802235122246],[-87.6149981392997,41.75294033943551],[-87.61500228584312,41.753071833614115],[-87.6150083197334,41.75335239387209],[-87.61501385456482,41.753608691369664],[-87.61502087118306,41.75393588342787],[-87.61502687863286,41.754215537858705],[-87.61503465382202,41.75457659930151],[-87.61504064335858,41.754765603012316],[-87.6150432478798,41.75484778998166],[-87.61504877652807,41.755055321145406],[-87.61505662247635,41.7554166574074],[-87.61506344326192,41.755731855543864],[-87.61506954804327,41.75601266337582],[-87.61507664475855,41.75633927921952],[-87.61508234615266,41.75658293874952],[-87.6150851339972,41.75670207390097],[-87.61509146839043,41.75695898026704],[-87.61509893931044,41.75726194253051],[-87.61510269534242,41.757414850957936],[-87.61510973625703,41.75770043936621],[-87.61511485433131,41.75794998336072],[-87.61511550636196,41.757998039848225],[-87.615117806876,41.75828494330086],[-87.6151203569961,41.75840759128056],[-87.61491019337866,41.75841161195842],[-87.61453915596867,41.75841955493328],[-87.61409114304608,41.75842816746261],[-87.61388180061111,41.758431372226234],[-87.61360894800205,41.75843554873007],[-87.61324280176865,41.758441953906775],[-87.6128921622964,41.75844809839506],[-87.6126742839288,41.758452488404444],[-87.61242475209718,41.75845751585259],[-87.6121028946906,41.758462658202504],[-87.6117513813113,41.758468272580075],[-87.61146712549754,41.75847440535441],[-87.61122431630749,41.758479643128254],[-87.61080350775256,41.75848081210543],[-87.61050787082785,41.75848142240081],[-87.61025558876584,41.7584853729255],[-87.60995279725435,41.75849011358753],[-87.60959809010917,41.758502644069075],[-87.60929425218183,41.75851220088097],[-87.60904796582248,41.75851748074887],[-87.60878379433983,41.75852314346938],[-87.60844792341761,41.758529423509536],[-87.60837992065733,41.75853069480864],[-87.6079867441061,41.75853540330569],[-87.6078438064812,41.7585379945765],[-87.60784219752101,41.75853802366012],[-87.60753987154366,41.75854350350836],[-87.6071901095564,41.75854974590562],[-87.60685318761199,41.75855491609719],[-87.6067134379313,41.75855795477866],[-87.60662925339723,41.758559493729734],[-87.60606523846255,41.75856930554011],[-87.60602550476199,41.75856951807902],[-87.60573865370442,41.758571052362946],[-87.60539129340302,41.758580064159105],[-87.6053835935428,41.75842667603857],[-87.60537702773854,41.75812552997586],[-87.60536893570425,41.75774539330154],[-87.60536093042045,41.757323598689524],[-87.60535540705096,41.75703228376557],[-87.60534447368447,41.756758097122486],[-87.60533607414652,41.756547463094094],[-87.60532846169176,41.75618977772539],[-87.60532206643612,41.75588978523119],[-87.60531539897146,41.755578210050246],[-87.60530656520189,41.75516321589331],[-87.60529701150217,41.754932796593316],[-87.60528885313222,41.754736035639695],[-87.60527640065068,41.75414837453462],[-87.60526706154042,41.75371002307038],[-87.60526047019016,41.75339822870858],[-87.6052498368102,41.75310716715883],[-87.60524648282673,41.75301535588932],[-87.6052419410783,41.75289101931639],[-87.60523347719776,41.75249847569383],[-87.60522602776247,41.752152372057246],[-87.60521908804652,41.75182926887912],[-87.60521166537947,41.75148401610531],[-87.60520815583283,41.75136327201942],[-87.60521454792466,41.751286153182726],[-87.60552119690277,41.751282240292085],[-87.60582988423162,41.75127192825091],[-87.6058445092265,41.75127165558722],[-87.60610589661479,41.75126678740124],[-87.60644629616064,41.75126238805826],[-87.60662307382056,41.751260165397056],[-87.60679577168054,41.75125799378023],[-87.6070576299851,41.75125357016004],[-87.60741504589262,41.751247540835514],[-87.60765766234775,41.751243483857614],[-87.60797845744726,41.7512381185903],[-87.6083207087982,41.75123141468105],[-87.6086007925231,41.751225964485585],[-87.60887130668276,41.75122105152543],[-87.6091761993216,41.75121551403288],[-87.60945624130184,41.75121047285937],[-87.60984474382346,41.75120350666233],[-87.6100824770034,41.751199326818714],[-87.6103124925521,41.75119528205998],[-87.61060770037413,41.751190772603366],[-87.61068877779294,41.75118952485032],[-87.6110457109792,41.75118403169987],[-87.61129247417124,41.75117963196291],[-87.61154300396663,41.75117516424748],[-87.6118240353848,41.75117009579979],[-87.61189741800465,41.75116877582013],[-87.61218244423365,41.751163646780284],[-87.61250184561851,41.75115877414055],[-87.61256023760895,41.75115788357546],[-87.6126948608591,41.751155829771065],[-87.61300700035652,41.751151200800635],[-87.61341293646124,41.75114521055821],[-87.6137133209633,41.75113896700751],[-87.61405008662724,41.75113196632833],[-87.61440320734032,41.751126492666074],[-87.61479850559762,41.75111474998167]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"27975351.9112","perimeter":"0.0","tract_cent":"1148493.83394716","census_t_1":"17031700300","tract_numa":"100","tract_comm":"70","objectid":"597","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1849121.9397085","census_tra":"700300","tract_ce_3":"41.74192239","tract_crea":"","tract_ce_2":"-87.73150663","shape_len":"21337.0404735"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72312611204154,41.7491673885986],[-87.72312095708575,41.74902292814917],[-87.72311505288515,41.74885697576311],[-87.72310729907963,41.748638679539894],[-87.72310139467771,41.74847275458427],[-87.72309524756722,41.7483015043711],[-87.72308795776819,41.74809613629583],[-87.72308113294005,41.74790358661604],[-87.72307435232571,41.747714110793055],[-87.72307011385175,41.74759594595086],[-87.72306327773143,41.7474053718234],[-87.72305863575568,41.74726481097465],[-87.72305267387354,41.74708563064698],[-87.72304632376543,41.74689327528066],[-87.72303515169422,41.7465561214163],[-87.7227563122006,41.74656104521731],[-87.72249964162589,41.7465660477791],[-87.72228625669551,41.74657018224912],[-87.72181489654693,41.74657939246888],[-87.72180769442879,41.74630182215151],[-87.72180050085292,41.74607131654339],[-87.72179693317113,41.74595685974118],[-87.72179110575563,41.74578566625116],[-87.72179107537552,41.74578477446244],[-87.72178008376794,41.74546186079481],[-87.72177547585456,41.74532187633802],[-87.72177028076614,41.74516267856506],[-87.7217629804655,41.74492459803881],[-87.72175259525694,41.74458592202073],[-87.72174632882322,41.74440062010907],[-87.72174228803541,41.7442805074696],[-87.7217409278068,41.744239966727704],[-87.72173675136358,41.74401414270036],[-87.72173199184729,41.74375678285365],[-87.72172200899583,41.74346500922092],[-87.72171431044505,41.74324915544091],[-87.72170859391005,41.74309462016582],[-87.72169972971261,41.742854994410834],[-87.72169304786125,41.74263596261504],[-87.72168287016247,41.742283977640355],[-87.72167918648451,41.74217903769774],[-87.72167260159108,41.74199146144401],[-87.72166607763135,41.741775421757104],[-87.72166443199848,41.741721295122765],[-87.72165912416543,41.74154672848696],[-87.72164921230429,41.74126703037286],[-87.72164250573262,41.74107777391993],[-87.72163350424586,41.740798492001254],[-87.7216278429236,41.740595821672734],[-87.7216190435755,41.74034814488364],[-87.72161069533426,41.74011317007651],[-87.72160088795535,41.739795243863384],[-87.72159382191684,41.739566906398935],[-87.7215895055776,41.73943128708127],[-87.72158450757574,41.73927425819763],[-87.72157299655093,41.738919741141544],[-87.72156524432172,41.73867874896749],[-87.7215592089007,41.73851699596276],[-87.72155098974045,41.73829671922221],[-87.72154508450147,41.73811978918635],[-87.72153744990402,41.73787800175209],[-87.72153233383332,41.73771444072371],[-87.72152852581503,41.73760643161235],[-87.72152180865668,41.73741854740992],[-87.7215202611004,41.737372791419624],[-87.72151352783412,41.737186608599494],[-87.72150612279805,41.73698241948088],[-87.72149551553316,41.73668535222079],[-87.721490000336,41.73653089357646],[-87.72148533405156,41.73637867743834],[-87.72148201881869,41.73627052849475],[-87.72146617380174,41.735753631910725],[-87.72146154309281,41.735602579531225],[-87.72145953051553,41.73553692090918],[-87.72145478098194,41.735381984682355],[-87.72143876982751,41.73485966134134],[-87.72143877349114,41.734859661360844],[-87.72143877752373,41.73485966110789],[-87.72158431787581,41.73485719776088],[-87.72173334856016,41.73485467486889],[-87.7217342910421,41.73485465902861],[-87.72233912028688,41.73484441861903],[-87.72251478721921,41.73484092352565],[-87.72252262484965,41.73484076759851],[-87.72264712033612,41.73483829065111],[-87.72264714525657,41.73483828996026],[-87.72264715808186,41.73483828975399],[-87.72337470664091,41.73482375106224],[-87.72358779915353,41.734819491932186],[-87.72385789192442,41.73481505203634],[-87.72385789962063,41.734815051802734],[-87.72431757159723,41.73480751320672],[-87.724740537457,41.73480057503812],[-87.72486853347898,41.734798377678516],[-87.72487000143713,41.73479835252012],[-87.72507285929996,41.73479486988781],[-87.72507286259723,41.73479486990526],[-87.72590215679962,41.734780697613836],[-87.7259557460143,41.734779781628944],[-87.7259557614041,41.734779781435854],[-87.72627967735521,41.73476744254769],[-87.72627968504881,41.73476744258834],[-87.72715956972368,41.73473388657925],[-87.72750001746093,41.73472926011604],[-87.72750003431617,41.73472925993048],[-87.72762104650745,41.734727611612264],[-87.72769771258642,41.73472656727684],[-87.72769988110387,41.73472653754183],[-87.72790960968362,41.73472368025885],[-87.72866550524999,41.73471023411799],[-87.72871152911327,41.734709460905066],[-87.72871153387598,41.73470946093013],[-87.72940105608299,41.734697774076025],[-87.72992363787453,41.734688499165834],[-87.72992364190452,41.734688499187],[-87.72995724303455,41.73468790640288],[-87.73001594387382,41.734686870740056],[-87.73056322770066,41.73467668005198],[-87.7311105113903,41.73466648620717],[-87.73111051578408,41.73466648650462],[-87.73113008788513,41.73466616343806],[-87.73113103145944,41.73466614780085],[-87.73113119818746,41.73466614510704],[-87.73113825135799,41.734666028389924],[-87.73113825465013,41.73466602895605],[-87.73140152981345,41.73466178423003],[-87.73201476281034,41.73465189503732],[-87.7323330122783,41.73464676156153],[-87.73234096983644,41.73464662699751],[-87.73234101563936,41.73464662641378],[-87.73234241433194,41.73464660271864],[-87.73235162730184,41.73464644727694],[-87.73235163389637,41.734646447311434],[-87.73289610222622,41.73463793912218],[-87.73294868720899,41.73463711699071],[-87.73356360435389,41.734627504957665],[-87.73356360765115,41.734627504974874],[-87.73358452770607,41.734627174804515],[-87.7347840234753,41.73460683719047],[-87.73487999415377,41.73460520720585],[-87.73495965726667,41.734603854195],[-87.73528867477357,41.73459838001092],[-87.73548403797925,41.73459512896382],[-87.73599355703543,41.734586648459135],[-87.73615799768886,41.73458391774621],[-87.7363056867202,41.73458146475445],[-87.73655369582659,41.73457740003892],[-87.73669287847063,41.73457511917066],[-87.73720973792815,41.73456664641357],[-87.73720975551606,41.73456664623038],[-87.73756743291513,41.73456079003895],[-87.73775031806673,41.73455770343283],[-87.73825787135914,41.734549136558634],[-87.73830031899858,41.734552308444734],[-87.73839875769504,41.734559663594865],[-87.73840504618884,41.73455950926615],[-87.73840986663699,41.734559390696454],[-87.73840999306726,41.734559387509016],[-87.73841905238771,41.73455916464715],[-87.73841906008384,41.734559164412566],[-87.73845983865718,41.73455819136139],[-87.73847945892929,41.73455772294101],[-87.73851071100657,41.73455697718064],[-87.73853077156645,41.7345589021554],[-87.73857446795392,41.73456309497892],[-87.73860654428383,41.73456617300137],[-87.73863583517848,41.734565700544294],[-87.73867657603572,41.734565043092054],[-87.73870830298434,41.734564531081546],[-87.73893636640832,41.734562668444774],[-87.73894091168683,41.73456263130778],[-87.73903532120494,41.734561859999644],[-87.73952657909628,41.73456003604244],[-87.73959209884275,41.734558709640105],[-87.7395931212326,41.734558688852005],[-87.73963783297584,41.73455778400631],[-87.73963785166536,41.73455778355402],[-87.73987535161051,41.73455292490961],[-87.7398791260273,41.7345528478036],[-87.73988083807431,41.73455281273679],[-87.7401647490319,41.73454700379782],[-87.74106728335799,41.73452355755395],[-87.74106728295632,41.73452356139392],[-87.74103006466345,41.73490982037175],[-87.74102366082116,41.73496475605994],[-87.74099276515909,41.73522898470114],[-87.74095302515096,41.73555867432578],[-87.74093557185687,41.735807246732996],[-87.74092795510552,41.7360380872097],[-87.74092809689769,41.736105108300464],[-87.74092823764549,41.73617168480557],[-87.74092863385806,41.7363588967999],[-87.74092863381519,41.73635890146501],[-87.74092919624648,41.736620602501276],[-87.74093262844748,41.73686513889351],[-87.74094401830583,41.73723244217508],[-87.74095177638584,41.73748222547435],[-87.74095187848243,41.73748550875299],[-87.74095309700125,41.73752036786383],[-87.74095323030132,41.73752185048235],[-87.74096578451874,41.73789404460754],[-87.7409748998287,41.73818597715335],[-87.74098202750034,41.73841510946911],[-87.74099062674385,41.73864762459673],[-87.74099898716676,41.73887415642202],[-87.74100713098238,41.73910831604666],[-87.7410162620708,41.73937069232279],[-87.74102980682147,41.73976682186618],[-87.74103708515361,41.739975564624785],[-87.74104541056964,41.74021395138519],[-87.74105756203825,41.74056232231721],[-87.74107107398208,41.74095804023285],[-87.74108250979667,41.74129260379676],[-87.74109437803573,41.7416400129647],[-87.74110352398901,41.74189672877226],[-87.74110352428985,41.74189673590904],[-87.74111426837916,41.74219894037675],[-87.74112119637257,41.742386083204515],[-87.74113147888767,41.742666715226505],[-87.74114368741178,41.74299304917618],[-87.74115907734273,41.74342371199291],[-87.74116359787483,41.743549863980654],[-87.74117793258719,41.74390400873815],[-87.74119150093844,41.744238642389845],[-87.74119528959848,41.74433207397329],[-87.74119665962702,41.74438241202675],[-87.74119713749675,41.74439413298456],[-87.74120606027462,41.74469531198335],[-87.74121142257577,41.744887318911616],[-87.74121678527878,41.74507932473764],[-87.74122779774787,41.745436169420294],[-87.74123416535049,41.74562059320267],[-87.74124641111408,41.74597491916322],[-87.7412582466462,41.74629397938738],[-87.74127417291118,41.746738200516724],[-87.74127417289353,41.74673820243765],[-87.74129131404767,41.74726168471668],[-87.74129443670157,41.74735659941086],[-87.74130387435711,41.74764556898614],[-87.74130354138406,41.748048759993324],[-87.74130354136892,41.74804876163984],[-87.74130686314618,41.748369259531096],[-87.74131987859099,41.74871966546542],[-87.74135816721548,41.7491470941882],[-87.74047996199822,41.74917659865104],[-87.74015562356806,41.74917867806154],[-87.73957646871453,41.749182389066355],[-87.73926128474534,41.74918523309188],[-87.73892570717298,41.74919001691006],[-87.73875557325337,41.7491924418715],[-87.7383378807647,41.749200214034126],[-87.73802244386673,41.74920662095602],[-87.73770820701367,41.74921398578322],[-87.73741406393168,41.74922309863488],[-87.73715176781909,41.74923122447176],[-87.73702273779122,41.74922203297976],[-87.73649215920521,41.74923540092963],[-87.73637577791602,41.74923856975307],[-87.73619297561862,41.749241736318005],[-87.73588509808455,41.749246996603866],[-87.73566289579561,41.74925064352385],[-87.73529453563495,41.74925764582934],[-87.73507736909225,41.74926166086639],[-87.73449724024161,41.74927208177115],[-87.73410095759408,41.7492791984453],[-87.73389945072354,41.749282964705436],[-87.73370244491268,41.74928639624419],[-87.73339548315325,41.74929165463701],[-87.73319893252726,41.749295430727926],[-87.73286447095428,41.74930225925621],[-87.73274396973542,41.749305059281184],[-87.73255887045393,41.74930889468318],[-87.73232017496697,41.749312791936184],[-87.7321323333485,41.749315925405064],[-87.73190188283719,41.74931986520471],[-87.73162904274865,41.7493246306141],[-87.73043854564774,41.74934478476549],[-87.7300875967902,41.74935117565648],[-87.72974626779995,41.74935761601124],[-87.72944754694316,41.74936325018492],[-87.72877634260057,41.74937584330395],[-87.7285367277628,41.74938007089714],[-87.72825449999957,41.74938544574435],[-87.72805886785953,41.74938887483887],[-87.72774869285047,41.74939478729349],[-87.7269501187397,41.74940978570185],[-87.7265139484847,41.74941811687804],[-87.72619873424757,41.74942399880788],[-87.72593299981418,41.74942911206445],[-87.72576989597833,41.749432022863054],[-87.72548812949933,41.749437050039795],[-87.72512160301736,41.74944368666139],[-87.72483983645047,41.74944871279641],[-87.7245067545047,41.749454838220004],[-87.72428551542369,41.749459417494194],[-87.72400322665351,41.749465204197335],[-87.72400322372194,41.74946520418179],[-87.72372603401756,41.74947093793463],[-87.72352582126486,41.74947433500627],[-87.72325230239696,41.74947905770764],[-87.723137304459,41.749481191347726],[-87.72312611204154,41.7491673885986]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2315164.44208","perimeter":"0.0","tract_cent":"1172895.23329742","census_t_1":"17031710100","tract_numa":"12","tract_comm":"71","objectid":"598","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1853485.10899787","census_tra":"710100","tract_ce_3":"41.75339242","tract_crea":"","tract_ce_2":"-87.64197178","shape_len":"6307.05776904"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6399000577843,41.75614578321942],[-87.6398989230594,41.75593285639215],[-87.63989388330451,41.75580521564479],[-87.63988923888284,41.75568340947188],[-87.63988454624698,41.75552352526024],[-87.6398807845783,41.755362274786165],[-87.63987601766,41.755124178041704],[-87.63987181653239,41.75491867302274],[-87.63986629581287,41.75470801473837],[-87.63986154788607,41.754553275733365],[-87.63985849591863,41.7544537763318],[-87.63985608507171,41.75432958234564],[-87.63985379557072,41.75420950499495],[-87.63985191109687,41.75412922275578],[-87.63984963131828,41.75404310621091],[-87.63984546338322,41.75387705098652],[-87.63984095960323,41.75369967320463],[-87.63983673594814,41.75353876320269],[-87.6398293764472,41.75332877929513],[-87.63982490913568,41.7531905080416],[-87.63981859492456,41.753011061082525],[-87.63981378810011,41.75286181055701],[-87.63980978296931,41.752723199318126],[-87.63980444779267,41.75262299975186],[-87.63980331919706,41.752518433042745],[-87.63980270366997,41.752444609199905],[-87.63980075203492,41.752285428066465],[-87.63979818060182,41.752141336859566],[-87.63979441185013,41.751980772048285],[-87.63979138200443,41.75183667779219],[-87.63978789779812,41.75169223747734],[-87.6397840072241,41.751542992996605],[-87.6397795070183,41.75136527185069],[-87.63977629665645,41.75123798507972],[-87.63977241683924,41.75108771098888],[-87.63976942048174,41.75098306683957],[-87.6397663903451,41.75083897228204],[-87.63975860222679,41.75070465824195],[-87.64014857868123,41.750699754925954],[-87.64037713233591,41.75069630883528],[-87.64083629838355,41.7506893846125],[-87.64120360987214,41.75068435263321],[-87.64133510158581,41.750682510401624],[-87.64160286070353,41.75067863304803],[-87.64185579010848,41.75067496989073],[-87.64217050146215,41.75066937153181],[-87.64251679075463,41.75066486752471],[-87.64282185163478,41.750660476677076],[-87.64297271326784,41.75065830495171],[-87.64331933139465,41.750653883104754],[-87.64349625214714,41.75065148765088],[-87.64376436886465,41.75064738895936],[-87.64404375434192,41.75064248318551],[-87.64404527923757,41.75070143561429],[-87.64404805585092,41.75084926081106],[-87.64405194615779,41.75102332796515],[-87.64405494535924,41.75115754246287],[-87.64406028207205,41.751395231267125],[-87.64407011981723,41.75173970078389],[-87.64407766156579,41.751987062468785],[-87.6440875657608,41.75230820548751],[-87.64408928842055,41.75245500975084],[-87.64409147628967,41.752641469799755],[-87.6441021766307,41.75299782697655],[-87.64411326688399,41.75336573998836],[-87.64412451151217,41.753804841135995],[-87.64413320964219,41.754149687597504],[-87.64413677590314,41.754272609047185],[-87.64414116214095,41.75442378142836],[-87.64414646556887,41.754661195465914],[-87.64415418371901,41.75500513037702],[-87.64416514986749,41.75540863612035],[-87.64417237518589,41.75565819146256],[-87.64417991775366,41.75591927476724],[-87.64418368640354,41.756088416934375],[-87.64408352433679,41.75607720745333],[-87.64364159234601,41.75608559741761],[-87.64355411607143,41.75608725783788],[-87.6433913662539,41.75608944069661],[-87.64326168159964,41.75609099040117],[-87.64295901402667,41.75609612454252],[-87.64277902196324,41.75609917742871],[-87.6424285463759,41.756105138651385],[-87.64235149197378,41.75610637947595],[-87.6420264985296,41.75611161152584],[-87.64173984595027,41.75611546584039],[-87.64153300682976,41.756118246492775],[-87.64113016372477,41.756124938395395],[-87.6410177238143,41.75612680598576],[-87.64072989734947,41.75613146548987],[-87.64058028314176,41.756133849512864],[-87.64052104126436,41.75613479309673],[-87.6402825425932,41.756138592468744],[-87.6399000577843,41.75614578321942]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4605089.32041","perimeter":"0.0","tract_cent":"1176765.15891444","census_t_1":"17031690200","tract_numa":"17","tract_comm":"69","objectid":"599","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1862344.15774762","census_tra":"690200","tract_ce_3":"41.77761643","tract_crea":"","tract_ce_2":"-87.6275236","shape_len":"10394.5407464"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62537484909602,41.78005828631048],[-87.62537786498565,41.779906927943166],[-87.62537789743696,41.77990531093309],[-87.62537899681169,41.779850126743625],[-87.62537627377846,41.77974469711903],[-87.62536392886861,41.779266735024905],[-87.62535765140386,41.779025439192736],[-87.62535073551878,41.77875959118874],[-87.62534916729804,41.77870453928982],[-87.62534467448666,41.77854682329506],[-87.62534243776246,41.77846831895752],[-87.62534235474259,41.77846540044168],[-87.62534069267161,41.778407049049726],[-87.62534062785446,41.778404775554314],[-87.62533731867283,41.778288613211586],[-87.62533267962618,41.7781257636569],[-87.62533262108458,41.778123719622776],[-87.62533134730833,41.77807899876841],[-87.62533095081648,41.77806508139837],[-87.62532885059356,41.77803060016243],[-87.62532631868737,41.7779877011724],[-87.62532414182225,41.777950822051096],[-87.62531206395651,41.77778894422486],[-87.62530848413446,41.7777548891128],[-87.62530027137555,41.77767676287041],[-87.62529865538784,41.77766138927229],[-87.62529692482188,41.77765319924737],[-87.62527816460236,41.77756441695452],[-87.62525855691716,41.77742716388113],[-87.62524672864309,41.77730260993217],[-87.62523868064535,41.777194352926394],[-87.62523231441568,41.77703986497579],[-87.62523116441862,41.776944438878694],[-87.6252291006538,41.7768187650568],[-87.62522615589586,41.77668652694547],[-87.6252236970739,41.776583436202074],[-87.62522271323819,41.77642821328284],[-87.62522210964438,41.77633294175397],[-87.62522135199107,41.77621338146936],[-87.62521407248262,41.7760452759012],[-87.62520827320279,41.77591258136507],[-87.62519838340333,41.77569182472797],[-87.62518891824703,41.77545913248006],[-87.62518674130877,41.77534372158033],[-87.62518376403395,41.77514682935731],[-87.62518345645778,41.77512649911705],[-87.62518277701807,41.77508155138118],[-87.62518217660768,41.77504185039555],[-87.62518106618906,41.77496842769587],[-87.62518040166402,41.77492449049911],[-87.62517974809079,41.77488129076088],[-87.62517814061637,41.77477496888847],[-87.62517714909308,41.7747094013575],[-87.62517422455639,41.77459193475033],[-87.62515971610327,41.774009224868806],[-87.62512772322307,41.77272427864572],[-87.6253512105867,41.77272073612952],[-87.62548641830018,41.77271743910273],[-87.62577816426626,41.77271032444801],[-87.62621011073094,41.772699789327376],[-87.62660285313905,41.77269020875732],[-87.62676294616803,41.77268548918238],[-87.62687107728077,41.77268230116988],[-87.62755808229683,41.7727067546089],[-87.62820301288677,41.772729706386535],[-87.6282138233869,41.77272820355006],[-87.62836361842618,41.77273194835254],[-87.62851354322768,41.77273569595122],[-87.6288750810447,41.77272888467201],[-87.62913897393884,41.77272394337127],[-87.62916706042805,41.772723394598124],[-87.629666984363,41.77271362206307],[-87.6299554938753,41.772708996511255],[-87.62997140515003,41.77284825760369],[-87.62997307414497,41.77286286499371],[-87.62997591190864,41.77294202779354],[-87.62997900014742,41.77302846450349],[-87.62998612709808,41.77322842991426],[-87.62998874362327,41.773324523644476],[-87.62999167399687,41.773432090440544],[-87.62999425013301,41.77352513748008],[-87.63000778920002,41.77417172121395],[-87.63000930847123,41.77424741811441],[-87.63001140362671,41.774354293706615],[-87.63001624678468,41.77453409429591],[-87.6300191239561,41.77464090002539],[-87.6300210124089,41.774699584564885],[-87.6300229417198,41.77475788515291],[-87.63002432254171,41.77479927753973],[-87.63002632405811,41.774861036377466],[-87.63002861541358,41.77492982237795],[-87.63002999784028,41.77497774618966],[-87.63003646296643,41.775204793646154],[-87.63004071064468,41.775352901669685],[-87.63005223502847,41.77543897834165],[-87.63005430501957,41.77549782864146],[-87.63005559824589,41.775539389260445],[-87.63005734377593,41.775595489164246],[-87.63005908952418,41.77565049546835],[-87.63005991067831,41.775676373682586],[-87.63006072574665,41.775702070736145],[-87.6300633084978,41.77577774668334],[-87.63006483719015,41.775819030470416],[-87.63006649733437,41.775863685052656],[-87.63006727396161,41.77588457880989],[-87.63008505102745,41.77625741738039],[-87.63008040679253,41.77628318529594],[-87.63007859592874,41.776324777402664],[-87.63007627739354,41.77637256905003],[-87.6300762948487,41.77638573681842],[-87.63007633314244,41.77641444728603],[-87.63007723633523,41.77645929454454],[-87.63007011993473,41.776596410963336],[-87.63005921050544,41.776806610719014],[-87.63005447718585,41.77689780886047],[-87.63005256955857,41.77693456300708],[-87.63004650410338,41.77696504130185],[-87.63003671269104,41.77701424304281],[-87.63004451069455,41.77704790011972],[-87.63005533716036,41.77709462868363],[-87.63005739021231,41.777166777425485],[-87.63005741930415,41.77716780588962],[-87.63006080588563,41.777293432569635],[-87.63007553300316,41.777839716288746],[-87.63007553618515,41.77783982772645],[-87.63007750689536,41.77791102642996],[-87.63007993471713,41.7780010238554],[-87.63008169978241,41.7780657101929],[-87.63008265524965,41.77810090800781],[-87.63008485459777,41.77817480492246],[-87.630107537862,41.77821392697704],[-87.63009004479008,41.77834918205226],[-87.6300940825361,41.77848484801506],[-87.63009871941965,41.77864064372243],[-87.63010970688192,41.77888330628659],[-87.63012036566693,41.7791258570562],[-87.630132577296,41.7794074960167],[-87.630141846364,41.77968329905564],[-87.6301443041195,41.77981070433157],[-87.6301482619594,41.77994000713262],[-87.63014970093067,41.77998703057196],[-87.6293512536339,41.779998297060985],[-87.62908256330357,41.779994983377456],[-87.62884211790198,41.77999877819302],[-87.62876544458098,41.78000031817939],[-87.62863811251012,41.780002875894105],[-87.62854268890464,41.78000479249216],[-87.62859923802759,41.7801378510726],[-87.62869983746043,41.78019532983302],[-87.62888897011433,41.78030398356279],[-87.62889640066459,41.780402247263766],[-87.62891332097658,41.78076569499262],[-87.62893278047234,41.78148347348625],[-87.62893675134524,41.781704934270074],[-87.62894186487397,41.78199009755312],[-87.62895835062298,41.78275514175585],[-87.62896996245428,41.78314744316515],[-87.62870874588138,41.783152520890795],[-87.62834888300588,41.783158797902324],[-87.62826456887541,41.78316026870422],[-87.6282625918631,41.78316030294904],[-87.62809583352835,41.78316321138596],[-87.62796909662963,41.78316542155577],[-87.62787305278451,41.783167096399865],[-87.6277937547068,41.783168479105186],[-87.62773231724334,41.783169550208626],[-87.6276456802554,41.78317106090055],[-87.62764308237487,41.78317110614003],[-87.62748526989218,41.78317385760664],[-87.62745637964821,41.7831743612296],[-87.62698963805133,41.78318006943562],[-87.62677988354008,41.783182634204714],[-87.62664913915162,41.783185233207185],[-87.62648660577754,41.783188464150136],[-87.62597478931069,41.7831986368574],[-87.62554894135951,41.78320709900104],[-87.62540406584021,41.78320997753247],[-87.62540251006283,41.78313948583736],[-87.62539766191398,41.78291978417656],[-87.62538289104648,41.78224267713434],[-87.62537101761613,41.78188318609018],[-87.62536105253804,41.78158147077705],[-87.62535502153166,41.7811731382554],[-87.62535705931973,41.78079789667599],[-87.62536597341008,41.78044745094098],[-87.62536999287745,41.780302055798444],[-87.62537484909602,41.78005828631048]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6969895.75525","perimeter":"0.0","tract_cent":"1178794.13625837","census_t_1":"17031690400","tract_numa":"31","tract_comm":"69","objectid":"600","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859310.22315615","census_tra":"690400","tract_ce_3":"41.76924506","tract_crea":"","tract_ce_2":"-87.62017764","shape_len":"10575.9201112"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61544979997485,41.77296977132702],[-87.61543728808051,41.7725460281475],[-87.61543521171804,41.77230484672145],[-87.61543226378585,41.772187986463265],[-87.61542862355391,41.77204697868474],[-87.6154273541723,41.771997916515375],[-87.61542593349489,41.77194302589392],[-87.61542401300777,41.77186881753971],[-87.6154228391067,41.7718234558214],[-87.61542095803524,41.77175077600876],[-87.61541919929516,41.771682807538824],[-87.6154174240675,41.77161845484575],[-87.61541602313744,41.77156767913725],[-87.61541522695734,41.77153880968597],[-87.61540826215293,41.77128629173052],[-87.61540548089091,41.77118545944067],[-87.61540335316442,41.77110827304641],[-87.61540277806907,41.77108742297647],[-87.61540220199731,41.77106652899166],[-87.61539954639007,41.770970242307556],[-87.6153968186903,41.770871347818],[-87.6153924037295,41.77071126177592],[-87.61538615018466,41.77048452181154],[-87.61537583948768,41.77011068758088],[-87.61537077442466,41.76991732042028],[-87.61536944433506,41.76986903997686],[-87.61535486367525,41.769339631052546],[-87.61534442016566,41.76896043987663],[-87.61533480618152,41.7685865519946],[-87.6153267204476,41.7682728285802],[-87.61531863550411,41.76795910515338],[-87.61530651589594,41.76752578179399],[-87.61530594143109,41.767505240996826],[-87.61529814105975,41.767226332612275],[-87.615292432349,41.7669887781753],[-87.61528785508689,41.76680751629967],[-87.61528274512834,41.76659960370486],[-87.61527454146272,41.76626581891628],[-87.61527194881073,41.76617600935623],[-87.61526966933248,41.766096904780056],[-87.61526634805148,41.76598151355178],[-87.61526208391622,41.765711464650344],[-87.61553452100851,41.76570532938673],[-87.61583117426996,41.7656987574345],[-87.61606585818629,41.76569414175284],[-87.6161976266978,41.76569155014761],[-87.6165497837825,41.76568430739083],[-87.61686764178893,41.76567776132015],[-87.61709186006576,41.76567314331611],[-87.6172898420518,41.76566935534419],[-87.61767051830634,41.76566201904967],[-87.61775686019395,41.7656603548322],[-87.61802534593244,41.7656551931878],[-87.61847784778752,41.76564491739547],[-87.61885906591624,41.765636258880384],[-87.61906907537191,41.76563204976211],[-87.61928036798844,41.76562781859651],[-87.61953719658905,41.76562266356998],[-87.62009761941053,41.7656123276301],[-87.62035646816393,41.765607552695144],[-87.62075148488601,41.76559938297848],[-87.62088793608928,41.76559656365856],[-87.62100585846247,41.76559412711219],[-87.62169108506164,41.76557944450565],[-87.6219943248074,41.76557294573282],[-87.62214948473489,41.76556987218927],[-87.62230464495347,41.76556677099496],[-87.6224961845137,41.765562948448164],[-87.62277071198449,41.76555746978105],[-87.6229122333153,41.76555464017035],[-87.62329508399999,41.76554259879804],[-87.62352987216033,41.765535213510766],[-87.62472693241394,41.76545469814126],[-87.62490521858305,41.76545345591693],[-87.6249070360355,41.765532151324784],[-87.62491155200776,41.765727706740016],[-87.62491542691954,41.76583372771659],[-87.62492113284995,41.765981460938754],[-87.62492704982571,41.76611997462225],[-87.62493409368074,41.76623972344007],[-87.62493227117612,41.7663883990012],[-87.62491223200172,41.766660564510644],[-87.62491248270798,41.76669775126949],[-87.62491244760119,41.76686754065338],[-87.62491347142097,41.76690445774844],[-87.62491195854815,41.76696863750416],[-87.6249123225934,41.76715212337811],[-87.62491213502483,41.76718919765952],[-87.62491213788616,41.76733341015147],[-87.62491205354723,41.76748977988132],[-87.6249118533852,41.76755465379889],[-87.62491163083487,41.76763818878852],[-87.62491188169717,41.76771201188942],[-87.62491231341494,41.76778605564824],[-87.6249131334891,41.76793471919771],[-87.62491379674027,41.76801773822775],[-87.62491505153643,41.76811022872358],[-87.62491571312044,41.76815674861128],[-87.62491774497344,41.76830525496556],[-87.62492184978858,41.76840528239963],[-87.62492992502494,41.76849094240584],[-87.62493389662934,41.768533076185165],[-87.62494197572218,41.768687593598514],[-87.62494688874067,41.76878156989795],[-87.62494890256974,41.76889843440216],[-87.62495036391341,41.76897215517893],[-87.62494433001247,41.76913926145933],[-87.62494248022736,41.76919047780821],[-87.62494235159004,41.76919404020764],[-87.62501346083523,41.769340707849054],[-87.62508197970487,41.7708869505003],[-87.62508410040282,41.770972128901306],[-87.62512772322307,41.77272427864572],[-87.62491700879188,41.772727618198886],[-87.6240481819773,41.77277960719614],[-87.62392455681054,41.772806977560734],[-87.62380073009714,41.77279617781985],[-87.62372568037561,41.77280018748805],[-87.62349675938346,41.7728084804139],[-87.62331723965922,41.77281498348404],[-87.62318334158361,41.77281983355934],[-87.62300051419815,41.77283033909668],[-87.62270801932517,41.77283587946252],[-87.6224107209972,41.77284151010835],[-87.62234989109007,41.77284256070454],[-87.62209799306004,41.77284679912429],[-87.62189247416806,41.77285057474141],[-87.6216345943234,41.77285531106225],[-87.62154218934246,41.7728571346339],[-87.62149082056109,41.77285814871434],[-87.6211541383837,41.77286479252903],[-87.62108076683417,41.77286620544003],[-87.62100211480609,41.77286771975945],[-87.6208810400481,41.77287004726451],[-87.6205606392686,41.772876205771276],[-87.6202919864947,41.772880803907086],[-87.62010406692302,41.772884020062364],[-87.61979995007248,41.77288959640571],[-87.6193599814341,41.77289767524335],[-87.61910096492116,41.772902432017666],[-87.61885174140079,41.77290714345623],[-87.6186725436894,41.77291053033873],[-87.6184171185724,41.7729153578577],[-87.61829504952664,41.77291797365643],[-87.6180661082909,41.7729224803084],[-87.6179432128969,41.77292489931124],[-87.61785541543213,41.77292662758431],[-87.61774764214584,41.77292874866834],[-87.61764185880955,41.77293083045513],[-87.61737887118176,41.772936005927185],[-87.61735536022132,41.77293646891467],[-87.61732121856251,41.77293714117022],[-87.61708981935462,41.7729416966946],[-87.61707309338257,41.772942026015265],[-87.61693938790819,41.77294465811203],[-87.61686222329105,41.77294617722504],[-87.61682767723462,41.772946786437466],[-87.61628387673721,41.77295637277245],[-87.61625797525848,41.77295682912237],[-87.61613978362209,41.77295891166145],[-87.61590320123128,41.7729630797966],[-87.61573644056591,41.7729659900818],[-87.61571576260765,41.77296616032401],[-87.61544979997485,41.77296977132702]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1151545.03071","perimeter":"0.0","tract_cent":"1185749.88090777","census_t_1":"17031690700","tract_numa":"9","tract_comm":"69","objectid":"601","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1857245.44186471","census_tra":"690700","tract_ce_3":"41.76341801","tract_crea":"","tract_ce_2":"-87.59474642","shape_len":"6442.17271672"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5955455376855,41.75869611478416],[-87.59563037137991,41.758695855166756],[-87.59582689674077,41.758861430322554],[-87.59576233802443,41.758936374310125],[-87.59572449009087,41.75901843282104],[-87.59570715886689,41.7590692008325],[-87.59570314061996,41.75912883606668],[-87.59568311670184,41.759289907550986],[-87.59568208152453,41.759514137458716],[-87.5956889055732,41.759798957017686],[-87.5956949985854,41.76003182232187],[-87.59570294767528,41.76028824560259],[-87.59571031126637,41.7605071777406],[-87.59571984533608,41.76079064277439],[-87.59572564022471,41.76105915453899],[-87.59573196842324,41.761409120439176],[-87.59574010437024,41.76173566163202],[-87.59575202746062,41.762109182028944],[-87.59575905058294,41.762336168614944],[-87.59576502874127,41.76252938979942],[-87.59577236214322,41.76279506085873],[-87.59577481265782,41.76298410040063],[-87.59577634674201,41.76304950983823],[-87.59578100464337,41.76324811341733],[-87.59578338323236,41.76334953068886],[-87.59579443161358,41.76371945033627],[-87.59580104172674,41.76398722623656],[-87.59580527525584,41.76415987398334],[-87.59581096647806,41.764394461044155],[-87.59581496362401,41.76457034113854],[-87.59581604449147,41.76461480538367],[-87.5958177926888,41.76468674485501],[-87.59581939849348,41.76475281034554],[-87.59582056861734,41.76479825103355],[-87.59582274761618,41.76488285654284],[-87.59582649799967,41.76502091508658],[-87.59582787983234,41.765071779309324],[-87.59583347403802,41.76527771993736],[-87.59583622842739,41.76539568713357],[-87.59583948699881,41.76552916337765],[-87.59584207297571,41.76589996738398],[-87.59576857764138,41.765912868526954],[-87.59546767925937,41.765963338169925],[-87.59531255468195,41.765985531073],[-87.59515408832378,41.765989029841194],[-87.59493321853171,41.765993906185884],[-87.59468880016769,41.76599694543779],[-87.59450028961847,41.765999328056004],[-87.59433136137184,41.76600093455152],[-87.59404750570346,41.766003633135746],[-87.59394869667506,41.766003818642616],[-87.59384574839167,41.76600401227451],[-87.59376109610044,41.76600417100979],[-87.59365469478233,41.76600437050837],[-87.59343255637533,41.766005018642716],[-87.59329946094212,41.76600540676925],[-87.59333077678116,41.765624307987224],[-87.59337657175934,41.765066992744714],[-87.59337728538452,41.76506642296003],[-87.59338530124259,41.76505467411955],[-87.59338957871586,41.76502374602405],[-87.59338972064882,41.76490930984588],[-87.59338580707478,41.764790566445875],[-87.59338260212782,41.764635959672624],[-87.59338226941657,41.76461990340438],[-87.59337816616664,41.764354942737334],[-87.59337356923396,41.764176813317434],[-87.5933717870552,41.764107750432935],[-87.59336940614182,41.76400718412193],[-87.59336042630966,41.76372149975655],[-87.59335270527862,41.76348283381483],[-87.59334758291779,41.76326638375638],[-87.59334330406914,41.76308559136545],[-87.5933347448447,41.76281346428811],[-87.59332807405542,41.762560893687585],[-87.59332411468361,41.762354440596766],[-87.59368235308737,41.76235164471591],[-87.59412251580852,41.76234937320748],[-87.59426970935552,41.76234838735945],[-87.59442012610342,41.76234737951621],[-87.59451772606111,41.7623467253264],[-87.59458211125165,41.76234629410265],[-87.59486409340761,41.76110891768277],[-87.59506736075721,41.76020323388622],[-87.59514644894352,41.75981851106402],[-87.59521342754155,41.75949099812217],[-87.59535603625332,41.758800351213296],[-87.59537967522238,41.758696622594385],[-87.59549009735525,41.758696284562895],[-87.5955455376855,41.75869611478416]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7054437.40664","perimeter":"0.0","tract_cent":"1181497.95768657","census_t_1":"17031690900","tract_numa":"35","tract_comm":"69","objectid":"602","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856744.4309125","census_tra":"690900","tract_ce_3":"41.76214231","tract_crea":"","tract_ce_2":"-87.61034584","shape_len":"10614.1671027"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61491019337866,41.75841161195842],[-87.6151203569961,41.75840759128056],[-87.6151241292,41.758588968865105],[-87.61513150453598,41.75879579764406],[-87.61513236590154,41.75881995313597],[-87.615137501446,41.759036482998454],[-87.61514297450057,41.759288553634384],[-87.61514848937463,41.759540130546796],[-87.61515424226569,41.75980323499068],[-87.61516019983313,41.76007753744018],[-87.61516500880876,41.76023421974691],[-87.61517095373898,41.76042794181092],[-87.61517614559207,41.76066908832028],[-87.61518206944515,41.7609431709735],[-87.61518820202066,41.7612281223386],[-87.61519315192594,41.76145807056622],[-87.6151978574318,41.76167706750853],[-87.61520304568843,41.761918515815495],[-87.61520553474665,41.76205941318951],[-87.61520904535203,41.76225813243488],[-87.61521544957785,41.76249901228969],[-87.61522149982586,41.76272893990085],[-87.61522899173829,41.76301359780057],[-87.61523507803632,41.763243553059134],[-87.61524227260433,41.76352530011968],[-87.61524713092646,41.763799677848645],[-87.61524960613677,41.763884463550816],[-87.61525490229683,41.76406589576732],[-87.61525291675905,41.76424659529439],[-87.61525864962873,41.764531928198174],[-87.61525672215193,41.76478697106345],[-87.61525622846395,41.765159972731496],[-87.61525668030228,41.76536928302421],[-87.61526208391622,41.765711464650344],[-87.61496790383796,41.76571808929142],[-87.6147231710786,41.765719906557656],[-87.61465727531561,41.765721193914615],[-87.61436672802893,41.76572686990631],[-87.61405609446263,41.765732061006915],[-87.61378372247587,41.76573661245721],[-87.61344715308569,41.765742237728354],[-87.61320038593689,41.76574640431136],[-87.61284498738058,41.76575221139184],[-87.61251579130992,41.765757589003314],[-87.61232580630833,41.765760787745315],[-87.6122397405699,41.76576222019035],[-87.61190792850998,41.76576774210285],[-87.6116362088681,41.765773096635705],[-87.611387304266,41.76577800112685],[-87.6110321297365,41.765784198910026],[-87.61076605353749,41.765788859900454],[-87.61042831416036,41.76579394453257],[-87.610069222918,41.76579934930939],[-87.60983168208072,41.76580376377799],[-87.60972730142821,41.76580570360417],[-87.60951164769514,41.765809751408135],[-87.60922499737653,41.76581332391665],[-87.60903036552571,41.76581574696039],[-87.60884001002613,41.76581926691651],[-87.60869686810965,41.765821704799215],[-87.6086102240341,41.76582318082311],[-87.60846032370985,41.76582573384992],[-87.60835588468512,41.76582751234355],[-87.60832912755941,41.765827967823306],[-87.60822046645649,41.765829818344976],[-87.60811420565157,41.76583162793178],[-87.60797424600854,41.7658340109056],[-87.60787980303337,41.76583561881165],[-87.60780496357164,41.765836892964884],[-87.60750314160383,41.76584203115294],[-87.60744550938202,41.765843012015694],[-87.6072501288319,41.76584745452345],[-87.60719000846521,41.76584882129803],[-87.60712302916505,41.76585034447079],[-87.60709284175512,41.76585103045489],[-87.60675691811561,41.76585867839244],[-87.60663103574157,41.76586127581666],[-87.60647081411784,41.76586451207518],[-87.60558716421771,41.76586856404107],[-87.6055549721714,41.76541704730878],[-87.60554788408037,41.765152260222735],[-87.60554657475296,41.76498597121697],[-87.60554172423933,41.76474738188552],[-87.60554009745557,41.76466964077514],[-87.60553906354568,41.76462029755039],[-87.6055380098619,41.764570012083176],[-87.60553722172764,41.76453239349747],[-87.60553571232448,41.764425617105175],[-87.6055323175333,41.764185428540245],[-87.6055293765319,41.764065181202774],[-87.60552741874466,41.7639849456166],[-87.60552582563648,41.7638957615432],[-87.60552371901063,41.76377784033656],[-87.60552298343539,41.76373667480133],[-87.60552059174408,41.76360278739086],[-87.60551525488663,41.763304072052115],[-87.60550763051786,41.76302520295511],[-87.60550023051168,41.76270050605985],[-87.6054918065173,41.762323715630124],[-87.60548932047061,41.76222964431867],[-87.60548341096744,41.76200603723955],[-87.60547490319942,41.76162694129799],[-87.60546801887241,41.76134744589297],[-87.60545996248183,41.7610224425966],[-87.60545241972908,41.76066503238053],[-87.60544495131795,41.76040567609914],[-87.60544146969777,41.76028476799746],[-87.60543029784343,41.759859276151886],[-87.60542113066332,41.759489917873935],[-87.60541078452619,41.75912107351911],[-87.60540324864103,41.75881821988226],[-87.60539129340302,41.758580064159105],[-87.60573865370442,41.758571052362946],[-87.60602550476199,41.75856951807902],[-87.60606523846255,41.75856930554011],[-87.60662925339723,41.758559493729734],[-87.6067134379313,41.75855795477866],[-87.60685318761199,41.75855491609719],[-87.6071901095564,41.75854974590562],[-87.60753987154366,41.75854350350836],[-87.60784219752101,41.75853802366012],[-87.6078438064812,41.7585379945765],[-87.6079867441061,41.75853540330569],[-87.60837992065733,41.75853069480864],[-87.60844792341761,41.758529423509536],[-87.60878379433983,41.75852314346938],[-87.60904796582248,41.75851748074887],[-87.60929425218183,41.75851220088097],[-87.60959809010917,41.758502644069075],[-87.60995279725435,41.75849011358753],[-87.61025558876584,41.7584853729255],[-87.61050787082785,41.75848142240081],[-87.61080350775256,41.75848081210543],[-87.61122431630749,41.758479643128254],[-87.61146712549754,41.75847440535441],[-87.6117513813113,41.758468272580075],[-87.6121028946906,41.758462658202504],[-87.61242475209718,41.75845751585259],[-87.6126742839288,41.758452488404444],[-87.6128921622964,41.75844809839506],[-87.61324280176865,41.758441953906775],[-87.61360894800205,41.75843554873007],[-87.61388180061111,41.758431372226234],[-87.61409114304608,41.75842816746261],[-87.61453915596867,41.75841955493328],[-87.61491019337866,41.75841161195842]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2938246.00255","perimeter":"0.0","tract_cent":"1172680.40206149","census_t_1":"17031680800","tract_numa":"13","tract_comm":"68","objectid":"603","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864627.96603807","census_tra":"680800","tract_ce_3":"41.78397448","tract_crea":"","tract_ce_2":"-87.64243103","shape_len":"7210.45470077"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64003550677755,41.78166910178631],[-87.64003291835299,41.78149877387317],[-87.64003118916945,41.78143465681891],[-87.64002802139863,41.78131685276494],[-87.64002589932608,41.78123818859899],[-87.64002459947956,41.78118966142741],[-87.64002182004074,41.78108591075303],[-87.64001913817997,41.78098770385783],[-87.6400165301692,41.7808894150779],[-87.640027716982,41.78074511534619],[-87.64005563919643,41.780743353791046],[-87.64021605256991,41.78073323396162],[-87.64053083794909,41.78072761335627],[-87.64085867841192,41.78072174099131],[-87.64137060739463,41.780712641211394],[-87.64172462687222,41.78070667734171],[-87.64263165884724,41.780691414539],[-87.64271294310612,41.78069118146148],[-87.6428091259107,41.78069090615191],[-87.64367754662462,41.7806793583496],[-87.6436818331419,41.780857002812944],[-87.6436847176616,41.780977878416536],[-87.6436880249995,41.781114042528834],[-87.64368999870416,41.781196739852184],[-87.64369158531804,41.78128818913738],[-87.64369626813694,41.781330204893074],[-87.64372099040031,41.781397670743125],[-87.64373366967031,41.78141882300384],[-87.64374883991846,41.78144018231559],[-87.64377370469407,41.781466978624465],[-87.64380140168082,41.781489510833964],[-87.64384615850233,41.78151788099258],[-87.64389475837385,41.78154007210053],[-87.64392234099368,41.781549293785886],[-87.64396235407985,41.78155970808028],[-87.6439627061791,41.781559799656975],[-87.64400120491217,41.78156656207962],[-87.6440438429628,41.781570220834105],[-87.64410162715718,41.78157018304718],[-87.64414196415446,41.781569629470255],[-87.64421281031906,41.78156868231664],[-87.64427229617819,41.781567200451754],[-87.64440278453638,41.781563866607016],[-87.64448339548115,41.78156179779893],[-87.64453415336442,41.78156048300725],[-87.64466464169942,41.78155714886487],[-87.64483846089743,41.7815566670716],[-87.64483855512822,41.78155666681304],[-87.64484692823982,41.781775678985476],[-87.64485026607571,41.78186298745515],[-87.64484859864751,41.782016254307585],[-87.64484782920417,41.78208694782685],[-87.64484706148093,41.78215751456935],[-87.64484590241754,41.78226401187748],[-87.64484918652758,41.78236110807735],[-87.64485340566215,41.78248585832672],[-87.64485515042361,41.78253745347678],[-87.6448610058155,41.78270985742002],[-87.64486599591291,41.78292328961715],[-87.64486631372579,41.78293686944448],[-87.64486643927299,41.78294223638116],[-87.64487144575065,41.783156333334716],[-87.64487751253485,41.78338565646451],[-87.64488342940153,41.78360932298036],[-87.64488733393945,41.78373788889766],[-87.64489066357731,41.78396818244758],[-87.64489643231921,41.7841824636814],[-87.64490349461146,41.784444804886725],[-87.64490598412114,41.78455826871564],[-87.6449087167344,41.78468674525991],[-87.64491582494743,41.7850394018118],[-87.64491711698676,41.78510796161427],[-87.6449202575376,41.7852051282562],[-87.64492747790344,41.785428199865535],[-87.64493884255786,41.78582599770525],[-87.64495239953362,41.786299935209605],[-87.64496031127126,41.786753174358566],[-87.64496859241584,41.78702514888674],[-87.64465103323788,41.78702945430005],[-87.64436686885062,41.787034198419704],[-87.64401799806426,41.787040065149995],[-87.64376193277006,41.78704498323345],[-87.6435879808269,41.78704832404627],[-87.64329993532567,41.7870536196219],[-87.64305942159686,41.787058010987],[-87.64294913980501,41.78706001930433],[-87.64253410978611,41.787067467213646],[-87.6421484188088,41.78707438706128],[-87.64163038482914,41.78708392026431],[-87.64129008515496,41.787088681556945],[-87.6408301428509,41.787094576926734],[-87.64046368707781,41.78710125881623],[-87.64017068902166,41.7871068020797],[-87.64016398987081,41.78680619630241],[-87.64015877437507,41.78656872905814],[-87.6401529473503,41.78630633997986],[-87.64014377629411,41.785891458066395],[-87.64014021340081,41.78572864566942],[-87.64013589348355,41.78553399440711],[-87.6401304051814,41.785284423151936],[-87.64012588391918,41.78508123619676],[-87.6401237054142,41.78498155021812],[-87.64012081204282,41.78485087745478],[-87.64011918145597,41.784777595109496],[-87.64011361678291,41.7846679057937],[-87.64010148861924,41.784428826465046],[-87.64009842146096,41.784281274989205],[-87.64009716319637,41.78422108514125],[-87.64009607881138,41.78416858035089],[-87.64009272985511,41.784006344947315],[-87.64008906235316,41.78382939877632],[-87.64008571023716,41.78366749293318],[-87.64008409004182,41.78358984694105],[-87.64008057045213,41.78346636287441],[-87.64007642669783,41.783320970395664],[-87.64007476207627,41.78323720463987],[-87.64007210068436,41.78309964479536],[-87.64007036311978,41.78301135079297],[-87.64006930482958,41.78295758350136],[-87.64006745074265,41.782864211583544],[-87.64006512825725,41.782746248002944],[-87.64006377901772,41.782677522849106],[-87.64005971331187,41.78257380231106],[-87.6400554092408,41.78246399404684],[-87.64005407122849,41.78241461592562],[-87.64005302919865,41.78237520191083],[-87.64005129643616,41.78231141415966],[-87.64004835340788,41.78220340859491],[-87.6400457468093,41.78210498235566],[-87.64004211816014,41.78197216426827],[-87.64003976682358,41.78188411353048],[-87.64003750945633,41.78180092047735],[-87.64003550677755,41.78166910178631]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2639494.47339","perimeter":"0.0","tract_cent":"1167441.16622652","census_t_1":"17031671100","tract_numa":"16","tract_comm":"67","objectid":"604","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861963.81738353","census_tra":"671100","tract_ce_3":"41.77677764","tract_crea":"","tract_ce_2":"-87.66171631","shape_len":"6629.23897414"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66386808864874,41.77401430061781],[-87.66407020304622,41.77401262605724],[-87.66407503654533,41.77416586629677],[-87.66409268041552,41.774930172914],[-87.66411573085085,41.77569629471379],[-87.66412110424159,41.775833166415],[-87.66412703577618,41.77598423704979],[-87.66414349158211,41.77662655263187],[-87.66416623156904,41.77753908045734],[-87.66417058505837,41.777654842829534],[-87.66417479113154,41.777766659693135],[-87.66417967221469,41.777907250835355],[-87.66418763441233,41.778263506489594],[-87.66419358795004,41.77849071375883],[-87.66420525477429,41.77889651309285],[-87.66420780893593,41.77898536869066],[-87.66421502007195,41.77923617594086],[-87.66421774131375,41.77933082762947],[-87.66422076561432,41.77946457161035],[-87.6639910993066,41.77947786384261],[-87.66320615063418,41.77949046711578],[-87.66299803723733,41.77949240123437],[-87.66283064399123,41.77949395682151],[-87.66178366750887,41.77950838501323],[-87.66164602450057,41.779510280999666],[-87.66147206570396,41.779512904914256],[-87.66141940836508,41.779513730893626],[-87.66084179482552,41.77952242606864],[-87.66057178576538,41.77952690981685],[-87.66034330525213,41.77953070370229],[-87.65960627014033,41.77954021500611],[-87.65936145554264,41.779543032699145],[-87.659358714134,41.779428579623904],[-87.65934819107943,41.779074514585155],[-87.65934542078288,41.77898131066321],[-87.65934320761403,41.778906854075984],[-87.65934113767337,41.778837206603285],[-87.65933905739399,41.778767216306896],[-87.65933645556598,41.778679668806745],[-87.65932527326629,41.778235082643],[-87.65932447004934,41.77818570809978],[-87.65931998940317,41.778007851623286],[-87.65931070761889,41.77772172024921],[-87.65930768360727,41.77762849066651],[-87.65928853699933,41.776918594005124],[-87.65926776570642,41.77608025531336],[-87.65926343351869,41.77590231731285],[-87.65925838486025,41.77569473672596],[-87.65922064246315,41.77421199248472],[-87.65921619225853,41.774077797520064],[-87.65982003758815,41.774070036742195],[-87.66021758453888,41.77406492577244],[-87.66042266491459,41.77406189105955],[-87.66060155107351,41.77405924377437],[-87.66102698693588,41.774052654140114],[-87.66145147527456,41.77404607769654],[-87.66152912921322,41.77404537399175],[-87.66163267458302,41.77404441765584],[-87.66176898424612,41.77404315905574],[-87.66223795429326,41.774036685759285],[-87.66268390120563,41.77403052841225],[-87.66283959802588,41.7740283781242],[-87.66305125387753,41.77402545475713],[-87.6634462561049,41.77402006144902],[-87.66386808864874,41.77401430061781]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5270873.4112","perimeter":"0.0","tract_cent":"1163681.53657868","census_t_1":"17031310900","tract_numa":"27","tract_comm":"31","objectid":"617","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890734.03386559","census_tra":"310900","tract_ce_3":"41.85580617","tract_crea":"","tract_ce_2":"-87.67469059","shape_len":"9255.8664581"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67114344424452,41.85954172004254],[-87.67113101941624,41.85909236138339],[-87.67112484197267,41.85881067732974],[-87.67112299465286,41.85863826704956],[-87.67112222386764,41.85856631370901],[-87.67111176808352,41.85818283752426],[-87.67110278322666,41.857853271375035],[-87.67109738192404,41.85772390892939],[-87.67109186309018,41.85759170824204],[-87.67108526967922,41.85727490044838],[-87.67107789907512,41.85692071193102],[-87.6710748304365,41.85681495858117],[-87.67106798758128,41.856579159488895],[-87.67106129183092,41.856356643986594],[-87.67104763416079,41.855902804276624],[-87.67104546347076,41.85583067076434],[-87.67103514808849,41.8554485247953],[-87.67102280041259,41.854991090728205],[-87.67102124354152,41.854933433408824],[-87.67101322494243,41.854615946277114],[-87.67101269139823,41.85459483272431],[-87.67101191068947,41.85456391251361],[-87.67101129844167,41.85453968295106],[-87.67100133297437,41.854145140355605],[-87.67099479431253,41.854076248395636],[-87.67098669995863,41.85399096588984],[-87.6709820081832,41.853770465149644],[-87.67098361421412,41.853635401757394],[-87.67096951565703,41.85316265463788],[-87.67095628895682,41.85271915614837],[-87.67095326440146,41.852599625972346],[-87.67093792708532,41.85224793679051],[-87.6715022922874,41.852239834841015],[-87.67160454066507,41.8522383666269],[-87.6718690057942,41.85223423688359],[-87.67239863219686,41.85222608934613],[-87.67290443500166,41.85221813168779],[-87.6733906878832,41.852211175010225],[-87.6738458719869,41.85220466082605],[-87.67454160458007,41.85219487747164],[-87.67538622263096,41.85218407681341],[-87.67584031180391,41.85217595129219],[-87.67639465527597,41.852166029163776],[-87.67677952358392,41.85216076552606],[-87.67714154171941,41.85215383326445],[-87.67783940563783,41.85214371279541],[-87.67829251647883,41.85213720043686],[-87.6782966595892,41.852375439756756],[-87.6783022012205,41.85256622480909],[-87.67830306604178,41.8525960074214],[-87.67830627523125,41.8527065894482],[-87.67831824033064,41.85305955345997],[-87.6783269838798,41.8533174697909],[-87.67833224749705,41.8535197953026],[-87.6783374250458,41.853718794823784],[-87.67833979985758,41.853812662006035],[-87.67834135918666,41.853872879928275],[-87.6783438771114,41.85397664536629],[-87.67834750959744,41.85412626493294],[-87.67835507715677,41.854455247775135],[-87.67835594948407,41.85449318470874],[-87.67836149482378,41.854734252749516],[-87.67836868216324,41.85489346481463],[-87.67837508756017,41.85503534791605],[-87.67838170356838,41.8553431335721],[-87.67838828024587,41.85564909405596],[-87.67839329224444,41.85580552171511],[-87.67839796936255,41.855951456712965],[-87.6784039193264,41.85626276379416],[-87.67841041332035,41.856602602708804],[-87.67841673505797,41.85672190910997],[-87.67842592704314,41.85689539362882],[-87.67843355519713,41.85717639552015],[-87.67844353564465,41.85754407169233],[-87.67844578739148,41.857633868376595],[-87.67845712844527,41.85808608772422],[-87.6784588262653,41.85815379546612],[-87.67844538924949,41.85849216797604],[-87.67844907416179,41.858728249902576],[-87.67855935789984,41.85871275619476],[-87.67857067790139,41.859042474487886],[-87.67785221371622,41.859121389976906],[-87.6760460863921,41.859419481364505],[-87.67501897094604,41.85949269813934],[-87.67464769462991,41.85951916150951],[-87.6745537768642,41.8595258514748],[-87.67445899615126,41.85953260282362],[-87.67427259102358,41.859545880806714],[-87.67418101194285,41.85954198804278],[-87.67359923586312,41.859517238552606],[-87.6735107727312,41.85951670291221],[-87.67307914518251,41.8595132892992],[-87.67237360620902,41.859521969079324],[-87.67204554211294,41.85952600351854],[-87.67134343089305,41.859534280402066],[-87.67114344424452,41.85954172004254]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"21240318.0288","perimeter":"0.0","tract_cent":"1157567.45324912","census_t_1":"17031660900","tract_numa":"64","tract_comm":"66","objectid":"605","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1858728.84148339","census_tra":"660900","tract_ce_3":"41.76810629","tract_crea":"","tract_ce_2":"-87.6980008","shape_len":"21303.2856655"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71254040480257,41.76424237623004],[-87.71254042459778,41.76424237606256],[-87.71254431906482,41.76439635222151],[-87.71255006880806,41.764584041182744],[-87.71255303163943,41.76468077794521],[-87.71255502431471,41.76473734933906],[-87.71255770814967,41.76481355857994],[-87.71256802276294,41.765122005585035],[-87.71257295771949,41.7653017516759],[-87.7125754833371,41.765393731834216],[-87.71258034259567,41.76556566722313],[-87.71258983326187,41.76590150527952],[-87.71261145996755,41.766557510292905],[-87.71262035628048,41.766862853142904],[-87.7126293634688,41.7671719878278],[-87.71265039990541,41.767746689304],[-87.71265050117393,41.76774953157503],[-87.712654727686,41.767868147738724],[-87.71265681173576,41.767932102586975],[-87.71265755630127,41.76795495181874],[-87.71266148508946,41.76806730250237],[-87.71266941021287,41.76829393676438],[-87.71268666735814,41.76883294234623],[-87.71270598989203,41.769442967532896],[-87.71271510889318,41.76973288379461],[-87.71271884787768,41.76985125249051],[-87.71274354776725,41.77063316784592],[-87.71274919291493,41.770808146904955],[-87.71277478884187,41.771522147200905],[-87.71277479028592,41.77152218754991],[-87.7127710417365,41.7715222054481],[-87.71276245727897,41.77152224689676],[-87.71274763904566,41.771522318339926],[-87.71272397606869,41.77152243201639],[-87.71269031720075,41.771522593776936],[-87.71254914989665,41.77152327266195],[-87.7122399848284,41.77152475874806],[-87.71171934240891,41.77153360620464],[-87.7107258728629,41.77155001636424],[-87.71038635491371,41.77155580507738],[-87.71023797203284,41.77155829220407],[-87.70991132434082,41.77156376648464],[-87.70952590155929,41.77157034638315],[-87.70930312977663,41.77157363723184],[-87.70860394350403,41.771583915624745],[-87.70792133097903,41.77159754570111],[-87.70781009277007,41.77159911276393],[-87.7073783004364,41.77160519477609],[-87.70723685207629,41.77160704510117],[-87.70684344110751,41.77161321570712],[-87.70649964175436,41.771618146569985],[-87.70599131461215,41.77162706242458],[-87.70559888811074,41.7716337555605],[-87.70546992311938,41.771635795135936],[-87.70538198109149,41.771637074690915],[-87.7052926647523,41.771638613411675],[-87.70505467458685,41.77164236168756],[-87.70462250365316,41.77164965742292],[-87.70436350679046,41.77165350885187],[-87.70416060430955,41.771656733845035],[-87.70387073975206,41.77166066210135],[-87.70350409678124,41.7716660623088],[-87.70321912013395,41.771672513028754],[-87.70296712312485,41.771674943575526],[-87.70281465924903,41.7716764140668],[-87.70236504321592,41.771683193647206],[-87.7020207443763,41.77168665360875],[-87.70171986513687,41.77169221161294],[-87.70160627597325,41.77169430970066],[-87.70141817886783,41.771697968017065],[-87.70119172967348,41.77170234779582],[-87.70104137159981,41.77170431984728],[-87.70087678896701,41.77170637778009],[-87.70068881157499,41.77170907505662],[-87.70051216898017,41.77171104300442],[-87.70032452746162,41.77171313312387],[-87.69950579394376,41.7717233014128],[-87.6992843105246,41.771726028060584],[-87.69821223281711,41.77173921962247],[-87.69808324986988,41.771749055041404],[-87.69797236904273,41.77175072679524],[-87.69762118428123,41.771757236545795],[-87.69737575068889,41.77176106493957],[-87.69705163718753,41.77176585667509],[-87.69686505574133,41.771768228304936],[-87.6966862469826,41.77177050109838],[-87.69646548215789,41.77177460118655],[-87.6961484341294,41.77178036287599],[-87.69579396517234,41.771785312018295],[-87.69564832964502,41.77178786634695],[-87.6955123011839,41.77179025263647],[-87.69522141263502,41.77179382406581],[-87.69499108561666,41.77179731962401],[-87.6946971821614,41.771801778592646],[-87.69442981373018,41.77180681715274],[-87.69430360990604,41.771809195174214],[-87.69404402419873,41.77181315727492],[-87.69377483649563,41.77181684579289],[-87.69356651231959,41.77181958280305],[-87.69341590190308,41.77182107666269],[-87.69320594286549,41.77182376055291],[-87.69303760525,41.7718259120206],[-87.6927993584882,41.77182952370298],[-87.69259612352914,41.77183285896443],[-87.69250229792618,41.77183439854148],[-87.6921627544807,41.77183508373939],[-87.69198651280698,41.77184090807889],[-87.69183880092012,41.771845789342585],[-87.69156389570311,41.77184935842545],[-87.69137397323588,41.771852230201304],[-87.69107360898306,41.771857486022206],[-87.69076935153969,41.77186181805572],[-87.69061138217742,41.77186406704234],[-87.69034636612813,41.77186842949499],[-87.69015794903689,41.771871091983506],[-87.68992824744593,41.77187423922611],[-87.68968453987961,41.77187767665077],[-87.68955173665655,41.77188006352237],[-87.68910602742119,41.771888073277466],[-87.6890459680386,41.77188928152036],[-87.68893857083073,41.77189154039246],[-87.68874233817844,41.771894869964775],[-87.68858200545884,41.77189709878409],[-87.6883326791215,41.77190165798036],[-87.68810432269355,41.77190583329955],[-87.68791140949607,41.77190710979672],[-87.68776750763242,41.77190857905205],[-87.68761626040423,41.77191143387801],[-87.68741650814393,41.77191467444266],[-87.6872564687003,41.77191693050361],[-87.6871092254358,41.77191937440268],[-87.68660195679546,41.77192779272362],[-87.68645111630204,41.77193029154631],[-87.68627490294169,41.77193322357334],[-87.68605901805512,41.771936782560026],[-87.68588131347325,41.77193970393514],[-87.68570717860717,41.77194256612229],[-87.68550768803723,41.77194539319802],[-87.68526031290449,41.77194891032715],[-87.68497788694877,41.771952887754324],[-87.68483782907087,41.7719548964491],[-87.6846638525393,41.77195804472743],[-87.6844448074264,41.77196200792884],[-87.68426147977603,41.77196519855778],[-87.6841265564392,41.771966906077786],[-87.6840571161227,41.771967683830795],[-87.68392626511603,41.77196914957965],[-87.68373109682533,41.77197227243154],[-87.68344423434095,41.77197761483119],[-87.68343890705958,41.771777723271356],[-87.68343591742037,41.7716817105558],[-87.68343204986543,41.77155638432225],[-87.68343070415293,41.771513236350366],[-87.68341972697327,41.77116108085034],[-87.68341086374905,41.77083709378432],[-87.6834044220275,41.770589137456625],[-87.68339231637937,41.770149715610195],[-87.68338893558993,41.77002698683018],[-87.68338387184045,41.7698431758111],[-87.683372903955,41.76941173747048],[-87.68336577155114,41.769130543714255],[-87.68336028948619,41.768914646152055],[-87.68335758684341,41.76880812462052],[-87.68335208144397,41.76859112919438],[-87.68334341459824,41.768331989235044],[-87.68333144117842,41.76797398418759],[-87.68332900249557,41.76787857826975],[-87.68332426720691,41.76769333898431],[-87.6833180051865,41.76744941765539],[-87.68331371490659,41.76727889004551],[-87.68330904555535,41.76709507787491],[-87.6833054796896,41.76695446722119],[-87.68330217123558,41.76682467056198],[-87.68329351823265,41.76651651520501],[-87.6832866944666,41.766273500107985],[-87.68327648019005,41.76591638141151],[-87.68327059591377,41.765711321437124],[-87.68325975288323,41.76533298542925],[-87.68325390229319,41.765128227771655],[-87.68324801480479,41.76492349706639],[-87.68324268187567,41.76470221449643],[-87.68375603460679,41.76468934521064],[-87.68386522172565,41.764688015134084],[-87.68398684265432,41.764686533489225],[-87.68428957711951,41.764682837834656],[-87.68446657894683,41.7646795068426],[-87.68486495050907,41.76467200855159],[-87.68505214092708,41.76466900337946],[-87.68523973579916,41.764665945297764],[-87.68538661983676,41.7646635354968],[-87.68547814294512,41.764662048282474],[-87.68568845424257,41.76465805387013],[-87.68604079451674,41.764651360916005],[-87.68629588163286,41.764647187891946],[-87.68630658702146,41.76464701272076],[-87.6866339699281,41.764641665901415],[-87.68691291509087,41.764638102482685],[-87.68726777953557,41.76463356848032],[-87.68751311341303,41.76462964472014],[-87.68755344111105,41.764628999812174],[-87.68782913058487,41.76462462111921],[-87.68813641463096,41.764618502576255],[-87.6885246145299,41.76461077118528],[-87.68884092164714,41.76460598710331],[-87.68911888330432,41.7646016331546],[-87.68935966863341,41.76459761682693],[-87.68962440316467,41.76459320041301],[-87.68994101023208,41.76458772863259],[-87.69016372746383,41.764583898685295],[-87.69058369432527,41.764577269033],[-87.6907335821526,41.76457490267979],[-87.69109388045075,41.76456956258718],[-87.69120371499902,41.76456793112317],[-87.69141069958378,41.764564856620204],[-87.69159282795353,41.764562196708525],[-87.69180384379874,41.76455923430186],[-87.69203333558195,41.76455601184194],[-87.69230869387493,41.76455170315276],[-87.69241860276111,41.76454996254199],[-87.69255215781762,41.764547847112524],[-87.69275437792088,41.764544693668974],[-87.69302892355975,41.764539713503616],[-87.6933029082438,41.764534742729744],[-87.69358029021508,41.764529646418346],[-87.69385554737156,41.76452442783844],[-87.69425145160655,41.76451758909557],[-87.69449601899242,41.76451336376923],[-87.69485346247923,41.76450752947917],[-87.69510861844962,41.764503732995806],[-87.69547453004114,41.764497842823374],[-87.69575252831821,41.764493367095774],[-87.69599611193215,41.76448848902856],[-87.6962724719053,41.76448291401545],[-87.69669846636141,41.764476450482775],[-87.69696000140549,41.76447248133304],[-87.69726414162567,41.764467277348075],[-87.69755904248493,41.76446237818935],[-87.69791955432234,41.76445753297458],[-87.69809280875879,41.764455204192785],[-87.69831062349527,41.76445034339453],[-87.69863445977563,41.7644438999355],[-87.6990102439803,41.7644366446639],[-87.69914522321719,41.76443502971815],[-87.69954818137214,41.76443020045227],[-87.69988000473771,41.764424071971796],[-87.70009322885542,41.76442011554542],[-87.70036430233282,41.76441538521556],[-87.70063225811461,41.764410708428834],[-87.7009059278156,41.76440653448995],[-87.7012635501384,41.76440103799707],[-87.70159198355837,41.7644004568548],[-87.70200970991591,41.76439970683912],[-87.70228333238144,41.76439659963706],[-87.70246263453954,41.764394236284126],[-87.70281277581367,41.76438866150643],[-87.70320607460394,41.764382399186744],[-87.70353912690972,41.764374236092735],[-87.70380598447339,41.76436573679105],[-87.70403508174321,41.76436153674232],[-87.70439260395301,41.764354981087195],[-87.70471690003988,41.76435014213613],[-87.7049564315697,41.76434719879518],[-87.70526133655916,41.76434242184696],[-87.7056523935649,41.764336293674894],[-87.70582788814052,41.76433343773575],[-87.70616116589031,41.764328451661406],[-87.70647926019639,41.764324279714835],[-87.70678324128899,41.76432029227815],[-87.70709961580984,41.76431584248879],[-87.70744920247213,41.76431109387971],[-87.70770141868147,41.76430786950574],[-87.70797350505713,41.76430438362574],[-87.7083739694482,41.764299537269174],[-87.7087532112391,41.76429462903247],[-87.70898830774676,41.764291625731104],[-87.7093811541762,41.764286157887284],[-87.70970684092616,41.76428147733404],[-87.70995649457151,41.764277892433505],[-87.71015240612535,41.76427497655508],[-87.71038079850798,41.76427157673157],[-87.71077521860295,41.764266305028436],[-87.7110700395929,41.764261892168335],[-87.71146313814306,41.76425677532929],[-87.71184263958088,41.76425150181352],[-87.71209999157955,41.76424784412551],[-87.7123488695652,41.76424488403984],[-87.71247111304133,41.76424343021346],[-87.71254040480257,41.76424237623004]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7033838.22798","perimeter":"0.0","tract_cent":"1173194.52499172","census_t_1":"17031612200","tract_numa":"25","tract_comm":"61","objectid":"606","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869754.38734444","census_tra":"612200","tract_ce_3":"41.79803058","tract_crea":"","tract_ce_2":"-87.64039458","shape_len":"10587.5910844"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64494376434422,41.79430450018958],[-87.64516036058433,41.79430185191307],[-87.64516595492368,41.794520873559115],[-87.64517085792292,41.794763524556785],[-87.64517310010852,41.79487448994834],[-87.64518126523136,41.79510544292821],[-87.64518269445773,41.7951946349589],[-87.64518660336921,41.79536741681558],[-87.64519781454617,41.79588950164558],[-87.64520225520997,41.79604202836469],[-87.64520472763932,41.796126951310356],[-87.64520974921388,41.79629943189513],[-87.64522192413212,41.796707415112714],[-87.64522615718367,41.796928108561744],[-87.6452299759404,41.79712722890641],[-87.64524356893513,41.797687253831214],[-87.64524780271105,41.797842304002636],[-87.64525052957525,41.797942157068974],[-87.64525371407443,41.79805878071641],[-87.64526331490652,41.79841263113741],[-87.64527158768026,41.798733926392714],[-87.64527487627295,41.798881451266126],[-87.64528234629317,41.799228839809935],[-87.64529151027683,41.79957555240812],[-87.64529740058622,41.79976912789708],[-87.64530746597646,41.8000999155799],[-87.64531586742075,41.80043564643111],[-87.64532204292948,41.80067004505989],[-87.64532820541883,41.80090394963034],[-87.64533977954382,41.80132367443952],[-87.64534450329056,41.80158435976325],[-87.64513818261597,41.80158663137024],[-87.64475446853784,41.801594376010016],[-87.64471250185859,41.80159517687626],[-87.64426852193192,41.80160364671479],[-87.64411254598839,41.80160639683734],[-87.64387832527152,41.801610526257335],[-87.64351325854064,41.80161669175782],[-87.64321180099391,41.80162178241681],[-87.64290308154249,41.80162680503738],[-87.64277940307483,41.80162744391453],[-87.64230351683594,41.80163904453475],[-87.64228620209597,41.80163938385125],[-87.64199706059559,41.80164504926091],[-87.64189463890305,41.801646598878214],[-87.64166699579445,41.80165004300602],[-87.64145467988355,41.80165325489914],[-87.64107539618259,41.8016615803503],[-87.6409779255988,41.801663719643194],[-87.64068702885378,41.801668881595965],[-87.64050948608413,41.801672371659635],[-87.64042315581918,41.80167406860644],[-87.64035584722092,41.801675391482206],[-87.63990293455021,41.801685556501454],[-87.63966344429231,41.80169092133217],[-87.63956897764037,41.80169303750214],[-87.63948000602221,41.80169503036138],[-87.6393483976921,41.80169797800178],[-87.63925898474191,41.80169998064727],[-87.63924021525342,41.80170040127609],[-87.63916957289027,41.80170198295536],[-87.63912354978666,41.801703013857114],[-87.63907884440653,41.80170401510766],[-87.63902878565611,41.80170506219672],[-87.63883436290948,41.8017091290505],[-87.63875044080994,41.80171088430531],[-87.63866790904264,41.80171261058423],[-87.63843151162756,41.80171755465956],[-87.63824695846924,41.80172099909196],[-87.63803621034393,41.80172493233017],[-87.63778612318922,41.801729089954684],[-87.63752676152565,41.80173340106974],[-87.63723918767643,41.80173559248161],[-87.63712603588499,41.80173645453867],[-87.63710432587945,41.80173661989113],[-87.63701401417784,41.80173730769201],[-87.63680679626863,41.80174135200641],[-87.63657325560241,41.80174647286312],[-87.63646144944505,41.80174892450495],[-87.63622023830159,41.80175421298826],[-87.63614672704813,41.801755824520804],[-87.63606525768353,41.80175765060383],[-87.63596207335056,41.8017599630907],[-87.63578926779792,41.801763835763154],[-87.63574534487904,41.80176461104556],[-87.63570849117217,41.80176526101826],[-87.63570500137132,41.80166440645772],[-87.63569929553852,41.80147192914228],[-87.63568358486793,41.80118745738597],[-87.63563364202207,41.80088905685097],[-87.63560235386738,41.8006459979653],[-87.63559567274474,41.800501196568725],[-87.63557708324238,41.80010179077031],[-87.63556664320083,41.79979642607645],[-87.63556416370324,41.79972917612482],[-87.63553914706425,41.79916164426087],[-87.63553117755583,41.7988398282829],[-87.63552517095769,41.79867513489239],[-87.63551174847186,41.79830663379261],[-87.63549541101897,41.797657511833506],[-87.63549167588019,41.79715665761261],[-87.63550078849836,41.79695054874436],[-87.63550544601028,41.79669021322184],[-87.63551317055244,41.79661204808788],[-87.63551386090451,41.79646386101175],[-87.63550729531129,41.79626623276301],[-87.63550550945965,41.79621956937957],[-87.63550115427766,41.79607169413022],[-87.63549364547305,41.79566515185864],[-87.6354911925661,41.79559550077171],[-87.63548499952009,41.79540576457003],[-87.63547940590745,41.79520299693163],[-87.6354735556242,41.79498170326421],[-87.63547350008595,41.79497968999486],[-87.63547026310253,41.794862649964266],[-87.63546858521623,41.79480603892253],[-87.63546088588703,41.79458610642294],[-87.63545875745208,41.7945288065704],[-87.63545749911522,41.79447604857857],[-87.63599166317626,41.794465631066146],[-87.63663890025911,41.79445416276806],[-87.6375932649115,41.79443930974114],[-87.63785817248757,41.79443370019966],[-87.63809010000878,41.79442878865796],[-87.63859087750708,41.794419935289625],[-87.63893991661543,41.79441353837101],[-87.6394402973681,41.79440404798992],[-87.63980622042226,41.79439720952352],[-87.63990484850305,41.79439536634213],[-87.63993453746481,41.7943948114533],[-87.63998598899042,41.7943938497544],[-87.6400834202199,41.79439202855981],[-87.64015747426136,41.79439064417126],[-87.64032044918473,41.79438759775332],[-87.6403741154013,41.79438659408091],[-87.6404813293435,41.794384590062606],[-87.64085346758797,41.794378546186024],[-87.64108086192616,41.79437460047243],[-87.64160472174794,41.79436550888938],[-87.64208121145505,41.794357592039404],[-87.64260959993746,41.794348915007106],[-87.64272837100567,41.794346320301194],[-87.64292974725977,41.794341920598264],[-87.64298128096225,41.794341016504646],[-87.64345663916374,41.79433257204646],[-87.644155816481,41.794319699282035],[-87.64494376434422,41.79430450018958]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6149249.49174","perimeter":"0.0","tract_cent":"1170572.7048791","census_t_1":"17031611000","tract_numa":"20","tract_comm":"61","objectid":"607","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872189.92123488","census_tra":"611000","tract_ce_3":"41.80477154","tract_crea":"","tract_ce_2":"-87.64993822","shape_len":"10606.144696"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65483282801506,41.80145464447365],[-87.65505899103138,41.80145210378091],[-87.65506160431923,41.80154932852973],[-87.65506516832833,41.801764336596264],[-87.65506984391524,41.80189967896317],[-87.65507637192646,41.80214868448397],[-87.65508460232343,41.8024672618123],[-87.65509282207604,41.802779829084244],[-87.6550992153135,41.80309869740098],[-87.65510531390166,41.80327227953745],[-87.65510863764534,41.80336686927471],[-87.65511545070238,41.80362854922764],[-87.65512260708914,41.80390285488611],[-87.65512781307255,41.80409438151741],[-87.65513021438589,41.80417902930414],[-87.6551343370905,41.804324390734735],[-87.65513978846789,41.8045795312171],[-87.65514767513001,41.80476467591137],[-87.65514990200462,41.8048169338407],[-87.65514991138228,41.8048171575549],[-87.6551511079412,41.80490586771106],[-87.65515188005844,41.80498759473486],[-87.65515435055815,41.805092571170846],[-87.65515651504677,41.80518455163264],[-87.65516074797222,41.80539525499208],[-87.65516590227587,41.80565346726591],[-87.65516682980277,41.805701991333045],[-87.65517418150364,41.806016968541975],[-87.6551806384054,41.80627068785938],[-87.65518664823783,41.806507746750526],[-87.65519431727978,41.806761308545],[-87.65519797364418,41.8069123058265],[-87.65505902869491,41.806914067857974],[-87.65479308565047,41.80691743997457],[-87.65459316751304,41.80691997437351],[-87.65431439348079,41.80692350777002],[-87.65404295145309,41.80692694773154],[-87.6539746073549,41.80692781388642],[-87.653789381842,41.80693016072282],[-87.65354729136854,41.80693322758114],[-87.65328868097335,41.80693650349086],[-87.65299517381321,41.80694022034254],[-87.65277594364912,41.80694299642528],[-87.65263261286124,41.806945693602465],[-87.65244649068426,41.80694684057049],[-87.6521532524721,41.806949328525484],[-87.65201569318072,41.80695049491822],[-87.65165488555664,41.806953561897565],[-87.65134454326547,41.8069570714406],[-87.65103037230222,41.80696190182612],[-87.65034290547185,41.80697227848973],[-87.65034654383096,41.807098482335164],[-87.65034980282628,41.807247488603686],[-87.65035367937739,41.80742814007239],[-87.6503575929121,41.80760876431249],[-87.65036128887195,41.8077787943385],[-87.6503657335948,41.80788005692088],[-87.65037386995687,41.80806542668638],[-87.65037992109954,41.808193263701995],[-87.6503840941736,41.80833785736279],[-87.65038670482123,41.8084283240174],[-87.65039725956522,41.80879524624807],[-87.65006019930047,41.80879927486189],[-87.64960574812751,41.80880469413407],[-87.649464884729,41.80880641107844],[-87.64934220822668,41.80880790655667],[-87.64912326870504,41.80881057530026],[-87.6485982314778,41.80881724386348],[-87.64820585974894,41.80882428176564],[-87.64810332133341,41.80882612051117],[-87.64802601785382,41.80882705536575],[-87.6474043275675,41.80883457239892],[-87.64687181787153,41.80884711608886],[-87.6462300477159,41.80886215973435],[-87.6459404133719,41.808865214849114],[-87.64568385542317,41.80886792003455],[-87.64553794123329,41.80886374536395],[-87.64553144045347,41.80868358001332],[-87.64551796288157,41.808489588923365],[-87.64551519589266,41.80837796230238],[-87.64550736045086,41.807948921625425],[-87.64550256624705,41.80768638350829],[-87.64549662526741,41.80747372125855],[-87.64548873018366,41.80717624909769],[-87.64548612409827,41.80703954098371],[-87.64548123521408,41.8067830863235],[-87.6454735856839,41.80651753155834],[-87.64546529013994,41.80623004612426],[-87.64546273375302,41.80612980975184],[-87.6454547214025,41.80581565160153],[-87.64545001661197,41.805595696901435],[-87.64544841430182,41.80552065871402],[-87.64544442916406,41.80533770119672],[-87.64544055270893,41.80521761878275],[-87.64544055113069,41.80521756059458],[-87.64543765754816,41.80512793623432],[-87.645437576724,41.80512544559121],[-87.64543181353443,41.80494690613167],[-87.64543007242094,41.804892972534674],[-87.64542401542447,41.80470535158485],[-87.6454190503759,41.80442546048932],[-87.64541554205321,41.80431341907905],[-87.64541024738425,41.80414433863885],[-87.64540302272377,41.803791106548424],[-87.64539855391104,41.803571125740426],[-87.64539286904103,41.803404345941125],[-87.64538794566643,41.80325991572473],[-87.64538042916293,41.80292026601968],[-87.64537474608343,41.80270066237968],[-87.64536841961295,41.80249516102913],[-87.64536404934144,41.80235317212072],[-87.64535539631459,41.80203063986716],[-87.64534674423342,41.80170802527243],[-87.64534450329056,41.80158435976325],[-87.64554335327361,41.80158216984192],[-87.64597260997228,41.80157507955911],[-87.64629945313627,41.801569679852385],[-87.6468429975284,41.80156225413035],[-87.64739579208391,41.80155408495522],[-87.6477740409547,41.80154946659861],[-87.64799053381927,41.80154682256254],[-87.64860063054945,41.801537288262004],[-87.64919331996344,41.80152992480467],[-87.64963061521485,41.801525777387766],[-87.6499657204525,41.80151918176908],[-87.65020351913208,41.801517003888904],[-87.650365344187,41.80151552095925],[-87.65067567180517,41.8015108890508],[-87.65106404518187,41.80150639055333],[-87.65141492475638,41.80150070658029],[-87.6515847134375,41.80149795579318],[-87.65202401207172,41.80149161572799],[-87.65210955250369,41.801490476462114],[-87.65239954682372,41.80148725611126],[-87.65262837123424,41.80148520168518],[-87.65279909611536,41.80148366872059],[-87.65313958035192,41.80147819342006],[-87.65323304509162,41.80147652119535],[-87.65344613937111,41.80147270842658],[-87.65368443502736,41.80146810856863],[-87.65384747142312,41.80146647504315],[-87.65399096846441,41.80146503693738],[-87.65430786116319,41.8014603517108],[-87.65446875208177,41.80145836131173],[-87.65462008802818,41.80145648877001],[-87.65483282801506,41.80145464447365]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3373889.66408","perimeter":"0.0","tract_cent":"1173546.14681629","census_t_1":"17031601100","tract_numa":"16","tract_comm":"60","objectid":"608","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883047.4261038","census_tra":"601100","tract_ce_3":"41.83450015","tract_crea":"","tract_ce_2":"-87.63871107","shape_len":"8931.1393067"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63645891049018,41.83751123258779],[-87.6364306420822,41.83635405559884],[-87.63625867639298,41.836356397393736],[-87.63599681012151,41.83635898652233],[-87.63593201662776,41.836359626889525],[-87.6359280864933,41.83617697390144],[-87.63592330102851,41.83600932519242],[-87.63591818543779,41.83581807380144],[-87.63591468765952,41.83567381403254],[-87.63591036667306,41.83547694171301],[-87.63590504841639,41.83521645100537],[-87.6359006766791,41.835014117275314],[-87.63589697941259,41.83485105833598],[-87.63588969757829,41.83453484298408],[-87.63609550216682,41.83453299584975],[-87.63639740530975,41.83452824188061],[-87.63653165999597,41.83452640573921],[-87.63657613685214,41.83414678969447],[-87.63654929328872,41.83298477351054],[-87.63653520673053,41.83225368397903],[-87.63650957584282,41.831233690282254],[-87.63650105443915,41.83087757027692],[-87.63650105425378,41.830877553535764],[-87.6365285442083,41.83087716953296],[-87.63680015189911,41.830873375591985],[-87.63697821239225,41.830870883301984],[-87.63699719715422,41.830870617493204],[-87.63714509273855,41.83086854745295],[-87.63728639913695,41.83086656956615],[-87.63742407166339,41.830864642486425],[-87.63761732729091,41.830862049443226],[-87.63773688587916,41.83086044504117],[-87.63796999200255,41.830857883618805],[-87.63816840689532,41.83085570288405],[-87.63844516053308,41.83085242055988],[-87.63850855533187,41.830851668766734],[-87.6388023847579,41.830845896367705],[-87.63898599225163,41.83084228904862],[-87.63924477319942,41.83084003858728],[-87.6394078915849,41.83083832079635],[-87.63951633050905,41.830837178652416],[-87.63980249248115,41.83083415927539],[-87.6400158323365,41.83083140382206],[-87.6402875642781,41.830827893824065],[-87.64047494949853,41.830824935355416],[-87.64062826031179,41.8308241284148],[-87.64074949951495,41.830823490133085],[-87.6410457143773,41.83081720771127],[-87.64123527964011,41.830815423612925],[-87.64124122064582,41.831051538538176],[-87.64124484232123,41.83127167799995],[-87.64124550024208,41.83131166620494],[-87.64125091698232,41.83154457731254],[-87.64125624939697,41.83178187872892],[-87.6412614213626,41.831996676184225],[-87.64126826792008,41.832280803887585],[-87.64127433945544,41.83250062875122],[-87.64127572866663,41.83254957891292],[-87.64128242532597,41.83278553229089],[-87.64128891783999,41.83301342781308],[-87.64129050035172,41.83307485401887],[-87.64129561236041,41.833271319368386],[-87.64130040424521,41.83345669594887],[-87.64130509734638,41.83363073811107],[-87.64131031944923,41.83381024454353],[-87.64131684241781,41.83405290435577],[-87.64132257944003,41.83429018038792],[-87.64132357118925,41.83436724450945],[-87.6413248130253,41.83446374145559],[-87.6409472486724,41.8344688481456],[-87.64070660984775,41.834471666546605],[-87.64061467853398,41.83447274306077],[-87.64035077250435,41.834475844103395],[-87.64009771195401,41.83447959205679],[-87.64009809892816,41.834553463697965],[-87.6401053228714,41.83481572182394],[-87.64010741519378,41.83489199620356],[-87.64011037947714,41.83500005717677],[-87.64011536978141,41.83518030316884],[-87.64012071020906,41.83535530972261],[-87.64012581453673,41.83552839386071],[-87.64013114609968,41.83570762651754],[-87.64013636151525,41.835870420323346],[-87.64013710069248,41.83589308993929],[-87.64013994568235,41.83598034947213],[-87.64014632694905,41.83630211950132],[-87.6403702671382,41.836298290445114],[-87.64064031460087,41.836294622944486],[-87.64086437562251,41.836291528292996],[-87.64112851458432,41.83628793379308],[-87.64136776194623,41.83628523072599],[-87.64137489633143,41.83654968439724],[-87.64137784608002,41.83671271118789],[-87.6413789906038,41.8367759736464],[-87.64138436888052,41.83700229833903],[-87.64139072632258,41.83722289258656],[-87.64139744817554,41.83747779314185],[-87.64140204780445,41.83764423273235],[-87.641404630288,41.8377376633012],[-87.64140982266645,41.8379233440172],[-87.641415512003,41.83810731584924],[-87.64111898148346,41.83811242765842],[-87.64095657519853,41.83811449490057],[-87.64073944662657,41.838117302212666],[-87.6404293152061,41.83812127697821],[-87.64019632634086,41.83812352736869],[-87.63998163973534,41.838125600721646],[-87.6397257868028,41.838129215166745],[-87.63947059501322,41.83813280559318],[-87.6391343632587,41.83813755223434],[-87.6389741395985,41.83813955028096],[-87.63868821620348,41.83814311509178],[-87.6384558174725,41.83814626481517],[-87.63819346979145,41.838149809110895],[-87.63796107072848,41.838152985273645],[-87.63775445904727,41.83815601362201],[-87.63742315574254,41.838160868799505],[-87.63711404373716,41.83816555457105],[-87.63696929765526,41.838167141437836],[-87.63691255347686,41.83816776337342],[-87.63681828718313,41.83816851203142],[-87.63667791571203,41.83816962642657],[-87.63660359699996,41.83817021625587],[-87.63647559638976,41.83817156955197],[-87.63645891049018,41.83751123258779]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5910325.65347","perimeter":"0.0","tract_cent":"1162351.81131776","census_t_1":"17031590300","tract_numa":"34","tract_comm":"59","objectid":"609","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1882625.92322126","census_tra":"590300","tract_ce_3":"41.83358456","tract_crea":"","tract_ce_2":"-87.6797978","shape_len":"9629.3086495"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68409673839797,41.83029341416533],[-87.68445927144815,41.830288759869454],[-87.68446737165543,41.83061132210111],[-87.6844456172034,41.831709617503364],[-87.6844508454817,41.832005726516336],[-87.68445309671849,41.83210250188796],[-87.68464124381764,41.83211138250012],[-87.68464731974709,41.83239911143286],[-87.68465242035232,41.832658134730806],[-87.684661775845,41.8329962543064],[-87.68468525716743,41.83320368869048],[-87.68470041401777,41.833266782690124],[-87.68470886793554,41.833329262539046],[-87.6848074096607,41.83363100983878],[-87.68477580658386,41.83369553410941],[-87.68473009448248,41.833778262935745],[-87.68464392446353,41.83393421085289],[-87.68462895063001,41.83396131018266],[-87.6845608747079,41.834176837018994],[-87.68455889939598,41.83418309047689],[-87.68455674389084,41.83439652746996],[-87.68455498909626,41.8345702846047],[-87.68455872146033,41.83504004200547],[-87.68456665702095,41.83531547271213],[-87.68456932219827,41.83541150584495],[-87.68457159527232,41.835486884502146],[-87.684574732049,41.83559573876892],[-87.68457556863329,41.83562477756902],[-87.68457795013396,41.83570744341449],[-87.68374052731976,41.83596962714996],[-87.68274844522963,41.83627518892881],[-87.68254732327574,41.83633713339571],[-87.68143775882696,41.83668069333272],[-87.68080120130968,41.83686963320032],[-87.68045208358355,41.83696528232078],[-87.68026586820429,41.83700212666935],[-87.68013230653283,41.83702855298474],[-87.67985338188488,41.837072080498366],[-87.6796614313427,41.83710203496019],[-87.67945249735656,41.837129413520984],[-87.67921770453115,41.83715198385169],[-87.67908245614909,41.83716498509036],[-87.67872931540681,41.83718053658953],[-87.67816732447127,41.83719259317575],[-87.67813363318794,41.83719331044213],[-87.67813361006498,41.83719331085908],[-87.67813361000898,41.837193316347296],[-87.6778814437654,41.837198725107584],[-87.67784071086668,41.8371995445316],[-87.67742937267815,41.83720781716922],[-87.67675801020253,41.83722131580457],[-87.67607932259651,41.83723735012979],[-87.6756296004096,41.83724797298705],[-87.67544191713402,41.837252405589396],[-87.67544142461557,41.83716792520169],[-87.67544072402441,41.83704786667991],[-87.67544017619687,41.8369538814808],[-87.67543993891721,41.83691316509019],[-87.67543938379941,41.836817921052194],[-87.67543855431792,41.83667576412899],[-87.67543721380154,41.83644577512545],[-87.67542085175613,41.835864312916826],[-87.6754164711104,41.8357086286223],[-87.67540421808766,41.8351457641717],[-87.67539593579649,41.834768544650544],[-87.67538527587098,41.83441205814643],[-87.67537879950203,41.83413501084589],[-87.6753761793597,41.834022919400134],[-87.67536713410593,41.83363598511668],[-87.67535301109108,41.83326658091748],[-87.67535304166722,41.83321361644633],[-87.67534400965484,41.832924290587094],[-87.67534320390192,41.83289849067413],[-87.67534285929978,41.83287295054073],[-87.67534227392427,41.83282957457799],[-87.6753420553231,41.83281340739077],[-87.67534108447053,41.83274153191504],[-87.67534070857361,41.83271370919379],[-87.67533740298362,41.83246892457864],[-87.67533616184926,41.83243382925356],[-87.67532812834266,41.832206597325495],[-87.67532087375399,41.832001411266546],[-87.67531443692286,41.83181935007367],[-87.67530688459034,41.831605731900964],[-87.67529919281955,41.83138817736519],[-87.67529754938055,41.83130054371951],[-87.67529613240772,41.83122494087274],[-87.67528924508683,41.83085759253425],[-87.67528047958764,41.830390070601446],[-87.6757553860066,41.83038548186396],[-87.67589758711107,41.8303837843158],[-87.6765009214755,41.8303765803236],[-87.67664020257253,41.8303749170246],[-87.67688656978534,41.830371973990346],[-87.6777212675223,41.83036362565735],[-87.67851430390931,41.83035568853931],[-87.67870681023916,41.830353308305604],[-87.67895334788003,41.83035025972207],[-87.6792452466425,41.83034702243766],[-87.67933653533275,41.83034600875338],[-87.6794365277151,41.83034489909987],[-87.67951314141712,41.83034404926408],[-87.67968052417615,41.8303421912436],[-87.68016542903447,41.83033680855659],[-87.68070392261089,41.83033082847271],[-87.68077614338786,41.83032980519254],[-87.68137965557705,41.83032125137201],[-87.68145211487241,41.830320224355305],[-87.68184162563,41.8303147017776],[-87.68260677185397,41.83030737376798],[-87.68315805772238,41.83030209077],[-87.68330682367109,41.83030066462439],[-87.68372453393913,41.83029683121167],[-87.68409673839797,41.83029341416533]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8263148.84687","perimeter":"0.0","tract_cent":"1159380.85422565","census_t_1":"17031580100","tract_numa":"36","tract_comm":"58","objectid":"610","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880612.12749483","census_tra":"580100","tract_ce_3":"41.82811998","tract_crea":"","tract_ce_2":"-87.69075418","shape_len":"12706.2554239"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68737048156825,41.83078900427805],[-87.68735537506686,41.830238232422936],[-87.68731861485864,41.83023888134277],[-87.68743774675751,41.82840494057452],[-87.68735751022318,41.826622436889586],[-87.68723163081447,41.82662619354841],[-87.6870035907301,41.82663623045364],[-87.68693631015518,41.826642395840686],[-87.68685898953647,41.82664948109326],[-87.68686096924503,41.8265438380447],[-87.68680765864013,41.82641798755236],[-87.68667416445177,41.826102330875145],[-87.68659727597672,41.8259495908826],[-87.68645047319302,41.82572613514228],[-87.68625166066,41.825430006041465],[-87.68622092180317,41.82538558147957],[-87.68617074633686,41.82531291860987],[-87.68610957633112,41.82522636592726],[-87.68616235291279,41.82519556739524],[-87.68619315175492,41.82517700439885],[-87.6863227802148,41.82509887605732],[-87.68638614584239,41.82506068499533],[-87.68647722448071,41.82500579080289],[-87.68666755611036,41.82488596932959],[-87.68645529721255,41.824676464373056],[-87.6863406202018,41.82456215099046],[-87.68628288869556,41.82450461456703],[-87.68626103290791,41.82448283200022],[-87.68619717708164,41.8244189149016],[-87.68615865570973,41.824374981602965],[-87.68614351066357,41.82435233834829],[-87.68613046801904,41.82431409202499],[-87.68612369811927,41.82427588104425],[-87.6861226508026,41.82426333381603],[-87.68611989369525,41.82419465657299],[-87.68612206787412,41.82416088682388],[-87.68611287596713,41.82400987257528],[-87.68610162361252,41.82379015755661],[-87.6860914761,41.82359196385611],[-87.68607901862421,41.823349848758774],[-87.68607693033083,41.82330897503606],[-87.68607003887104,41.82317410977817],[-87.68606557979025,41.82301947228609],[-87.68608030540267,41.82295560957585],[-87.68630279360995,41.82295148839977],[-87.68684858487805,41.8229388642809],[-87.68729403616811,41.82292894334282],[-87.68761388936767,41.82292181857839],[-87.68802516612014,41.82291430535455],[-87.68849566985124,41.822905641257904],[-87.68878016446385,41.82290046295863],[-87.68902906776047,41.822895873573465],[-87.68925584236987,41.82289173916048],[-87.68947463562321,41.82288769540324],[-87.68972705468512,41.822883029809304],[-87.68992837940601,41.8228719618582],[-87.69059113309092,41.82286165316905],[-87.69085725820554,41.82285751266824],[-87.69100652778413,41.82285520144646],[-87.69110725356491,41.82285364169147],[-87.69141984889232,41.82284877532763],[-87.6915480990376,41.822846316845514],[-87.69170915396181,41.822843229163695],[-87.69215554383666,41.82283536763582],[-87.6924308640059,41.8228305184931],[-87.69267289941291,41.82282648964912],[-87.6927659932081,41.82282493279874],[-87.69293871324695,41.82282204428626],[-87.69325931129485,41.82281664123438],[-87.69351730891124,41.82281231563346],[-87.69376603118847,41.82280730662537],[-87.69381667387562,41.822805998833815],[-87.69405542842205,41.82279983407214],[-87.69426423747534,41.82279446462886],[-87.6946272319414,41.82278623705652],[-87.69461413215714,41.82294954155193],[-87.69461671609587,41.8231140748708],[-87.69462225929244,41.823294596588354],[-87.69462763712774,41.8234696837185],[-87.69463295186546,41.823698891136765],[-87.69463557270093,41.82381191133064],[-87.69464505824082,41.82401295466979],[-87.69464967648534,41.82414705045776],[-87.69465172083441,41.824206408110236],[-87.69465628667734,41.82438195722325],[-87.69466171665094,41.82461390704851],[-87.6946654040275,41.82477142056651],[-87.69467128658577,41.82494738834966],[-87.69467619218761,41.82509245045567],[-87.6946825010206,41.8252809070405],[-87.69468928584828,41.82552137078419],[-87.69469438510251,41.82570210949734],[-87.69470033439451,41.82590091024474],[-87.69470501895123,41.82607560924041],[-87.69470887630794,41.82623386516506],[-87.6947096827046,41.82626528800062],[-87.69471118005595,41.82632361650584],[-87.6947131526542,41.826400467374995],[-87.6947141298828,41.82643855041077],[-87.69471473814454,41.826462221495184],[-87.6947166581982,41.8265380470846],[-87.69471783782207,41.826585226037565],[-87.69471913928508,41.82663727565312],[-87.69472229915512,41.82673284878118],[-87.69472751633721,41.82687980612076],[-87.69473312227625,41.82703933438395],[-87.6947377643174,41.82717402162183],[-87.69474064794213,41.82733822881874],[-87.694743762726,41.827515579614065],[-87.6947473344153,41.82764721474818],[-87.6947512527189,41.827791969150695],[-87.69475606160645,41.827968946798784],[-87.6947604318453,41.8281309928909],[-87.69476410414994,41.828273147362665],[-87.69477071297787,41.82852896941236],[-87.69477652428,41.828682104617904],[-87.69478152419282,41.82881454350324],[-87.69478629173724,41.82894031251458],[-87.69479403702037,41.82908839994496],[-87.69479095735512,41.829181748964785],[-87.69477601795639,41.82963456831893],[-87.69479283930015,41.8300750816145],[-87.69481264522268,41.83058170282836],[-87.69484199725652,41.8309740293581],[-87.69485119302585,41.831335635597114],[-87.6948541369635,41.831468257559294],[-87.69486002731641,41.83173358710938],[-87.69487208442489,41.83206460126698],[-87.6948761777213,41.83216531511675],[-87.69488647165547,41.83241858499455],[-87.69488877699408,41.83244437061601],[-87.69481301475697,41.83246859767923],[-87.69453059179189,41.832558910131105],[-87.69441789036857,41.832594949193236],[-87.69414234953264,41.832680519274604],[-87.6938687964295,41.8327653862489],[-87.69361673842687,41.832843566500394],[-87.69329767308972,41.83294420515312],[-87.69309860710209,41.83300692743189],[-87.69276400396181,41.833112746984646],[-87.6925379876707,41.833184374073355],[-87.692448796218,41.83321264544485],[-87.69225756508487,41.833273260390364],[-87.69214587623414,41.83330858688672],[-87.69181157176328,41.83341413089511],[-87.69135494218884,41.83355804123781],[-87.69092871687477,41.83369224044365],[-87.69036388424018,41.83387149153048],[-87.69031858331796,41.833885653851716],[-87.68990552936275,41.83401478269288],[-87.68940694011191,41.83417055242841],[-87.68912280328614,41.83425938279866],[-87.68891515339281,41.834324502208716],[-87.68873585093316,41.8343807313818],[-87.68841861545137,41.834480334855954],[-87.68834432728659,41.83450367375167],[-87.68795936125323,41.8346246175766],[-87.68739948177172,41.834800982818116],[-87.68745140831939,41.834692495882386],[-87.68744834947042,41.834586138569236],[-87.68744321117875,41.83441287747596],[-87.68743849017923,41.83424373540068],[-87.68742315788855,41.83371572082965],[-87.68741513420477,41.83328208127162],[-87.68739278712805,41.83204374747274],[-87.68739274725753,41.83204154524686],[-87.68737698013514,41.83114659914453],[-87.68737697801103,41.83114648195227],[-87.68737048156825,41.83078900427805]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"39125293.0193","perimeter":"0.0","tract_cent":"1175489.64976049","census_t_1":"17031530500","tract_numa":"170","tract_comm":"53","objectid":"611","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1822314.99715668","census_tra":"530500","tract_ce_3":"41.66779961","tract_crea":"","tract_ce_2":"-87.63339275","shape_len":"27809.688511"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62205573569955,41.66312741010035],[-87.62208432139538,41.66241249439583],[-87.62209323287271,41.66241218317187],[-87.62213082758663,41.66241086991871],[-87.62221014892455,41.66240809906538],[-87.62236211839858,41.66240709128759],[-87.62248916832041,41.662406248632664],[-87.6225341821346,41.662405949886264],[-87.62270203179001,41.66240483651029],[-87.62288672896045,41.662403610774994],[-87.62296145500036,41.662403117894755],[-87.62296146195331,41.66240311793772],[-87.62304571741336,41.662402562599965],[-87.62325118571407,41.66239768732343],[-87.62325118827567,41.66239768733925],[-87.62328614852137,41.66239685800064],[-87.62331716587867,41.66239172558548],[-87.62345796907572,41.66236037670067],[-87.6234723590339,41.662349708017324],[-87.62347452298474,41.66234677779747],[-87.62348684688082,41.662330092822145],[-87.6235058361742,41.66233383263513],[-87.62352016741775,41.662328542225474],[-87.62354644794881,41.662321514339894],[-87.62356261827004,41.66232161419901],[-87.62358450609615,41.6623217493627],[-87.6236131228957,41.66232192607346],[-87.62362995249323,41.66230238048158],[-87.62365141630767,41.66230070202084],[-87.62367997956228,41.66229912172888],[-87.62380883371678,41.66226945501574],[-87.62385414228224,41.662262599409615],[-87.62388985835955,41.66226281987397],[-87.62391842145992,41.66226118490928],[-87.62395432915865,41.66225064870248],[-87.62398887055329,41.662239391071125],[-87.6239973011413,41.6622366433205],[-87.62402595765897,41.662233197637626],[-87.6240687136338,41.66223884013437],[-87.62409713916776,41.66224977337818],[-87.62413989078536,41.662262551668434],[-87.62416773069926,41.66226712290747],[-87.62418504310997,41.66226996556371],[-87.62420159793106,41.66227544662221],[-87.62421836287005,41.66226841475972],[-87.62424692669761,41.662266779717854],[-87.6242706341491,41.66227411588736],[-87.62428973640046,41.662274233731836],[-87.62432431968008,41.66226018800308],[-87.6243375251903,41.662254824682634],[-87.62436372637242,41.66225498630535],[-87.62439457323477,41.662258743951995],[-87.62442319001144,41.662258920460864],[-87.6244299734003,41.66225053029864],[-87.62443038743666,41.66225001828759],[-87.62443042631696,41.66225001029436],[-87.62444058085046,41.66224790681355],[-87.62444711321693,41.662246553799164],[-87.62444787401874,41.662243288055116],[-87.62445210584707,41.66222512381088],[-87.62446889134226,41.662216280770515],[-87.6245238714217,41.66219515906556],[-87.62459072861033,41.662172299306214],[-87.6245920362732,41.66217149284809],[-87.62460509848687,41.6621634410756],[-87.62465046550419,41.66215120687289],[-87.62467210666429,41.66213344717592],[-87.62469616757686,41.66210851220866],[-87.62475592533471,41.66208560830631],[-87.62486095165426,41.6620594714818],[-87.62495537713855,41.66203752241256],[-87.62495538777793,41.66203752000823],[-87.62507096580109,41.66201065381009],[-87.62516882038621,41.661984417073434],[-87.62518796662654,41.66197383209171],[-87.62528824681773,41.661954235596895],[-87.62533429320726,41.661945237598765],[-87.6253477970041,41.66194259811555],[-87.62534924063492,41.66193839827965],[-87.62535221595893,41.66192974365163],[-87.62535271115675,41.66192830290171],[-87.62535414826013,41.66192807327034],[-87.62537419441294,41.66192486758294],[-87.62544098582823,41.66191457602482],[-87.62555078964573,41.661886601288934],[-87.62556427246706,41.66187561554702],[-87.62557479123075,41.66186704468812],[-87.62566076907467,41.66184254566339],[-87.62567983707507,41.66183909541633],[-87.62569408955164,41.66184093954849],[-87.62570277686085,41.66185263756761],[-87.62570346641853,41.6618535663831],[-87.62572729189387,41.6618500902573],[-87.62579365430668,41.661831136344254],[-87.62586819046341,41.66180984759415],[-87.62588442726602,41.66180994753558],[-87.62588487737345,41.66180995030608],[-87.6259014520486,41.6618136199742],[-87.62596847872587,41.66178181416092],[-87.62606406830147,41.66174842714646],[-87.6261094943462,41.66173081353706],[-87.62614479848806,41.6617118299502],[-87.62621485378003,41.661674159847365],[-87.62625772703196,41.661669099577246],[-87.62627449219359,41.661662012527906],[-87.62631557251552,41.66160677456467],[-87.62636117428823,41.66157308006931],[-87.62644066415787,41.66148585996511],[-87.6265365516118,41.66141844422279],[-87.62658683268498,41.66139191398555],[-87.62663723097096,41.661354626336106],[-87.62672250065177,41.66130753536793],[-87.62683597760645,41.661244866826316],[-87.6268717321399,41.661241518675155],[-87.62688629705121,41.66121476876835],[-87.62690827609788,41.661199425747256],[-87.62696736875722,41.661158303747996],[-87.6270025368993,41.66113383064122],[-87.62700488261935,41.66113219844899],[-87.62717135629737,41.66101635065112],[-87.62740735933536,41.6608521162594],[-87.62754358351165,41.660757317873156],[-87.62765339046993,41.66066171989394],[-87.62777242531979,41.660572271727816],[-87.62788046197731,41.66046442342366],[-87.62793220299798,41.66041797704756],[-87.6279439031539,41.660400763587965],[-87.62796612294136,41.660368073726794],[-87.62804201488468,41.66029499096425],[-87.62823490276087,41.660117364331],[-87.62846717800525,41.65990346511412],[-87.62854469047943,41.65983208438878],[-87.62855683457818,41.65981920553836],[-87.62860040607302,41.6597768255546],[-87.6286302526314,41.659751376080294],[-87.62865550699789,41.65972419749721],[-87.62868308511158,41.65969873437544],[-87.62868560197323,41.65969780986689],[-87.62871042116622,41.65968869299264],[-87.62875415994938,41.65963769672551],[-87.62876786523624,41.65962927299014],[-87.62879752660542,41.65961408646837],[-87.62882289112133,41.6595835055326],[-87.62885495124776,41.659556368346244],[-87.62893997577169,41.6594865757148],[-87.62900244269619,41.65943529948813],[-87.62914651503962,41.65931703671583],[-87.62928177061717,41.659249483314355],[-87.62952088473057,41.65913005735466],[-87.62953897357795,41.65912102422905],[-87.62957893303111,41.65910066846341],[-87.62962169802213,41.659078883589935],[-87.6297330977737,41.65901123134278],[-87.62981400588855,41.658947289327244],[-87.6298955077646,41.658882877762245],[-87.62995492262425,41.65883592169316],[-87.62999270987991,41.658806853730965],[-87.62999646890141,41.65880396168783],[-87.63009849697308,41.65872547577846],[-87.63019381424546,41.65866611359968],[-87.63023909525103,41.65863791305641],[-87.63030025407755,41.658594458833164],[-87.63035841745847,41.65855313233612],[-87.63040475862083,41.65852020585789],[-87.63055731906987,41.658416195200715],[-87.63066274230353,41.65834598014938],[-87.63076028300759,41.658273796597065],[-87.63080794729947,41.658211516814106],[-87.63082772496858,41.65815055565212],[-87.63084043400131,41.658111382021055],[-87.63083552858296,41.65807787099589],[-87.63080982918152,41.658038359970405],[-87.63080907503043,41.65801980137395],[-87.63080775047183,41.65798719262087],[-87.63081853644447,41.65795778425064],[-87.63090019547111,41.657907024403265],[-87.63097043258762,41.657877243025894],[-87.63102761154559,41.65785299839905],[-87.63107539330397,41.65783273792921],[-87.63116380453012,41.657825958903395],[-87.63125516220535,41.65781895383493],[-87.63138957354542,41.65799651051967],[-87.63149932274439,41.65794575164484],[-87.63151486548308,41.657936515768185],[-87.63154499875863,41.65792495422577],[-87.63157806272172,41.65791977690725],[-87.63160779874913,41.657917873027706],[-87.63164522000807,41.657915795961955],[-87.63166758352716,41.65791660787195],[-87.63166885102393,41.65791665375614],[-87.63167070070858,41.65791683711859],[-87.63169422021625,41.65791916876499],[-87.63169904737433,41.657919472667174],[-87.63171067527279,41.6579203120663],[-87.63172589216073,41.65792089893758],[-87.63175246290837,41.65792056714629],[-87.63177766735377,41.657918031530855],[-87.63180352426629,41.65791610364882],[-87.63183796774251,41.657911978076534],[-87.63183947303634,41.657911760306156],[-87.6318399590376,41.6579116902727],[-87.63185182213161,41.6579099766539],[-87.63185790615265,41.657909080707135],[-87.63186091182226,41.65790865995531],[-87.63187828105242,41.657906460432926],[-87.63188273276863,41.657906155809634],[-87.63188943780915,41.657905696983754],[-87.63191951728797,41.6579036386917],[-87.6320035966863,41.65789822396903],[-87.63200952993881,41.65789776618993],[-87.63201531682351,41.65789730751744],[-87.63202338014877,41.65789614920426],[-87.63203401764264,41.65789379908389],[-87.6320488249134,41.65788967493524],[-87.63206969515042,41.6578838626794],[-87.63211607333388,41.65787256448655],[-87.63214973199024,41.657866567601566],[-87.63215346615188,41.657866425721096],[-87.63217440923057,41.65786540085681],[-87.63222394278198,41.65786680075699],[-87.63227543979974,41.65786936523812],[-87.63232725750733,41.65787610306106],[-87.632296304839,41.65783369467717],[-87.63227381873627,41.657802887241004],[-87.63228628854682,41.65780032872551],[-87.63229254324843,41.65779945108612],[-87.63233224334425,41.6577938798701],[-87.6323785001259,41.65778738892839],[-87.63240422828608,41.65778264799238],[-87.6324416412925,41.65777575373702],[-87.63248979619875,41.657769296280016],[-87.63252590090836,41.65776051496457],[-87.63254096865525,41.65775456927007],[-87.63256303741223,41.657750971511085],[-87.63260212583837,41.657743690311165],[-87.6326219053148,41.657739006367144],[-87.63263624609336,41.65773561039299],[-87.63264606460673,41.65773457251014],[-87.63264186441965,41.65762241256535],[-87.63269376371834,41.65761181686858],[-87.63282355406761,41.65758531899856],[-87.63300437289853,41.65752725274302],[-87.63305220189356,41.65752569172549],[-87.63318718833403,41.65752128609428],[-87.63327520221418,41.65751180587683],[-87.63327681313757,41.65751163236609],[-87.63331150093168,41.6575078958903],[-87.63331466525774,41.657507555103905],[-87.63336949379853,41.65750164919461],[-87.63352862407402,41.657484515632966],[-87.63355187197367,41.65748201244818],[-87.63365450623084,41.65748020358737],[-87.63373473109297,41.65747878954238],[-87.6338070876818,41.65747536205206],[-87.63391750261972,41.6574701320029],[-87.63398495564134,41.65746284262785],[-87.63398498019043,41.657462839758445],[-87.6340997344122,41.65745043860878],[-87.63412571304366,41.65744724826951],[-87.63428199591151,41.657428055644736],[-87.63442867619561,41.65742110046998],[-87.63446462086661,41.657419396343265],[-87.6345307791402,41.6574132519502],[-87.63464711580025,41.657402448028925],[-87.6346966405363,41.65739786412986],[-87.63482946331646,41.65738555341567],[-87.63486365121763,41.6573818718877],[-87.63497218667356,41.65737018457536],[-87.6350118411177,41.65736591434843],[-87.63514755246685,41.65735943499288],[-87.63514787649268,41.65735941939733],[-87.63519439322467,41.65735719855718],[-87.63523444248051,41.65735530176858],[-87.63523456732918,41.657355295940434],[-87.63523464055397,41.657355292543095],[-87.63537723742698,41.657348539136564],[-87.63551018457841,41.65734631359668],[-87.63556009360828,41.65734547796861],[-87.63574325637889,41.65734801684142],[-87.63578667006958,41.657352495642265],[-87.63585957685255,41.657360016855634],[-87.63585958123764,41.65736001743111],[-87.63592697359273,41.657366969990655],[-87.63610252708624,41.657389660525176],[-87.63611085933377,41.65739069903502],[-87.63623106287338,41.65739279756632],[-87.63629408798192,41.65739389607342],[-87.63641853050434,41.65741215962954],[-87.63653690797538,41.65742950809099],[-87.63664768207005,41.65744589812217],[-87.63664776317944,41.65744591014008],[-87.63672141433847,41.65745680757436],[-87.63690583785127,41.65748498445116],[-87.63696419950784,41.657492706909466],[-87.63708971743982,41.65750931564934],[-87.63727359776165,41.65753359167092],[-87.63733179744281,41.657542159318794],[-87.63745752127726,41.65756066689541],[-87.63756898960303,41.65757872798266],[-87.6376415614189,41.65759048688012],[-87.63772274953767,41.65760243372371],[-87.63782555880779,41.657617561962994],[-87.63800932192343,41.6576391466371],[-87.63819308589753,41.65766073102268],[-87.63837701076942,41.65768774989749],[-87.63856147367134,41.65771235697806],[-87.63863874787754,41.65771801499169],[-87.63863875116786,41.65771801528601],[-87.63874612976448,41.65772587721322],[-87.63882075455477,41.657729459734476],[-87.63895278079907,41.65773579799364],[-87.63913514028069,41.65775188369132],[-87.63931766543469,41.65775254686119],[-87.63950059149492,41.657749918943004],[-87.63968383863744,41.65775832495268],[-87.63986692574666,41.65776118612051],[-87.64005001287605,41.657764046996824],[-87.64023356853481,41.65777788780129],[-87.64033807290897,41.65778268111463],[-87.64041681513594,41.65778629263921],[-87.64059624530613,41.65778896621249],[-87.64065422818604,41.657773672602524],[-87.64078082182546,41.6577738028841],[-87.64084262268995,41.65777386623213],[-87.64104961823895,41.65777407883167],[-87.64104964166073,41.65777407869831],[-87.64104964230147,41.65777408720965],[-87.64105158252049,41.6578265733121],[-87.64105215421108,41.65784204417885],[-87.6410529870222,41.65786456931985],[-87.64105521860624,41.65792494223876],[-87.64105777739913,41.65799351120376],[-87.64106033692536,41.65806208044676],[-87.64106161164133,41.65809623852308],[-87.64124498008916,41.658095169009975],[-87.64124498228468,41.6580951690232],[-87.64124513086925,41.65809516799684],[-87.64142761367407,41.658094103288036],[-87.64142631197275,41.65805923454116],[-87.64142375242419,41.65799066530552],[-87.64142278571093,41.65796491118414],[-87.64142210228661,41.65794670819661],[-87.64142062024487,41.65790721797782],[-87.64141840214837,41.657847741176305],[-87.64141811839161,41.657840131310316],[-87.64141554442635,41.657771132494574],[-87.64142151615599,41.65777103863612],[-87.64180541353308,41.657767430274085],[-87.6418533265019,41.65776697975567],[-87.642226733778,41.65776346824366],[-87.64238354290475,41.65776199323879],[-87.64273531159758,41.657758683704486],[-87.64288989518533,41.65775722921544],[-87.64319378822256,41.657754368629156],[-87.64326387917713,41.65775370901587],[-87.64358345771151,41.65775070006872],[-87.64366354612741,41.65774994597427],[-87.64384195578614,41.6577197469743],[-87.64402503187745,41.657716889638515],[-87.64408127209029,41.657718541727505],[-87.64418545737406,41.65772160206152],[-87.64420806518619,41.657722266173465],[-87.64430311032321,41.657722237447345],[-87.64439110957987,41.657722210593576],[-87.64457420105711,41.65772209792184],[-87.64475182789506,41.657724803873414],[-87.6449939645885,41.65774029459899],[-87.64507355399104,41.657740247319786],[-87.6451766751249,41.65774018637031],[-87.64526822183453,41.65774559358702],[-87.6453604411039,41.657751040707474],[-87.64554386310239,41.65776190037668],[-87.64572707583758,41.65776680902714],[-87.64581230952466,41.657773131978956],[-87.64581231464462,41.657773132284014],[-87.645910561258,41.657780421072694],[-87.64603544945906,41.657757061302476],[-87.64603545422767,41.65775706023325],[-87.64608685688604,41.657747445401995],[-87.64626960661703,41.657727022272915],[-87.64640851041804,41.65771063144863],[-87.6464520016148,41.65770549899342],[-87.64646101261056,41.65770456679911],[-87.64663458806099,41.65768661114313],[-87.6467537060519,41.65767075813715],[-87.64681693879078,41.657662342670314],[-87.64698846483697,41.65763048947835],[-87.64698898363326,41.657643665726624],[-87.6469925394747,41.657729142972855],[-87.64699831262162,41.65786793475413],[-87.64700611791136,41.658054528210265],[-87.64701127824668,41.65817786975624],[-87.64701261378151,41.6582098013694],[-87.64701651674642,41.65830357053394],[-87.64701878175566,41.658357977601185],[-87.64703681486588,41.658791198940165],[-87.64704103373242,41.65889213465162],[-87.64704422650627,41.658968527563246],[-87.64704767037061,41.65905087940472],[-87.64704766506637,41.65905099984995],[-87.6470476578031,41.65905116693741],[-87.64704598195861,41.65908937198344],[-87.64705793147748,41.659297822256896],[-87.64706481986951,41.65946246967336],[-87.64707170793092,41.659627116533954],[-87.64707428760906,41.6596892222656],[-87.64707683672043,41.65975058821219],[-87.64707824014377,41.659783886083474],[-87.64708204092285,41.65987405896569],[-87.64708451071678,41.65993407284518],[-87.64708588012209,41.659967335384565],[-87.64708979435555,41.66006061142653],[-87.64709323854001,41.66014290781742],[-87.64709517632373,41.660187817194114],[-87.6470956431063,41.66019907098433],[-87.6471096335228,41.66053588709455],[-87.64711057769351,41.660558499570925],[-87.64711270369081,41.66060939823464],[-87.64711270618304,41.66060947371908],[-87.64711548811931,41.66067607780959],[-87.64712136352404,41.660816757962415],[-87.64713536756949,41.66115231144121],[-87.64713762546232,41.66120847317305],[-87.6472129499094,41.663013990226496],[-87.6472167866625,41.66315940916129],[-87.64718000756433,41.6631591890507],[-87.64717849300266,41.6631592044336],[-87.64717832427043,41.66315920617062],[-87.64690094352638,41.663163505128026],[-87.64689278071683,41.663163621311966],[-87.64666858557683,41.66316711215986],[-87.64629376408702,41.66317318760299],[-87.64608984465711,41.663176496642215],[-87.64587267321608,41.66318019232082],[-87.6456925820155,41.66318328613637],[-87.6456454348358,41.663184101791025],[-87.64542926112489,41.66318692523374],[-87.6450846188978,41.663190817217966],[-87.64488879989354,41.66319301973208],[-87.64472888555673,41.66319600291549],[-87.64466163147614,41.66319725754631],[-87.64459947960049,41.66319842772399],[-87.64447586255086,41.663200754804826],[-87.6444540087399,41.66320117214381],[-87.64444905526052,41.663201243171926],[-87.64443347813074,41.663201467053206],[-87.64438387817086,41.66320217939521],[-87.64426180252397,41.66320399762712],[-87.64423146178166,41.66320444911655],[-87.64386447378226,41.66321039866643],[-87.64364507029339,41.66321396752056],[-87.64331506158479,41.66321838055403],[-87.64325825634947,41.66321891769866],[-87.64304428675914,41.663220980922524],[-87.64283258707984,41.66322289272426],[-87.64279166028766,41.66322367487188],[-87.64265120964362,41.66322635880329],[-87.64243100640893,41.663230541853466],[-87.64238121287602,41.663231487357905],[-87.64216056459881,41.66323515566825],[-87.6420546728594,41.663236604259716],[-87.64193778185431,41.66323821601518],[-87.64188838638829,41.66323889722465],[-87.64181896923088,41.663239816913546],[-87.64150519397133,41.663243973336805],[-87.64146012104945,41.663244582956416],[-87.64142094225645,41.663245113053165],[-87.64142093383958,41.66324511300249],[-87.64147527493716,41.664869236837816],[-87.64148184901755,41.6650657130802],[-87.64148184892647,41.665065721587126],[-87.64150691525968,41.66581448562703],[-87.64150983513119,41.66590169570513],[-87.64154302349156,41.666893047919444],[-87.64154302377823,41.6668930553309],[-87.6415952294236,41.668453649608175],[-87.64160396804924,41.6687148679361],[-87.64160396802573,41.66871487013143],[-87.64166503089189,41.67053953614559],[-87.64166503121969,41.670539539715215],[-87.64172588221331,41.67235775492579],[-87.64178485213652,41.67411973545721],[-87.64178687619403,41.67418020382159],[-87.64178725697239,41.67419158140611],[-87.64184754860167,41.675992974464314],[-87.64187621113174,41.67684932882599],[-87.64190852209138,41.677814667624496],[-87.64184933744826,41.67781544468504],[-87.64166241005057,41.67781789875191],[-87.64158346765277,41.67781893521085],[-87.64133251417914,41.67782096465839],[-87.6410178925778,41.67782400965995],[-87.64084871840852,41.67782578967815],[-87.64070474620343,41.677827391736955],[-87.64044875427581,41.67783023990916],[-87.6402453212463,41.67783167527635],[-87.63999908777764,41.677833894936455],[-87.63974384782817,41.6778362518193],[-87.63949998905466,41.67783961925086],[-87.63916579531977,41.677844233180636],[-87.6389694945087,41.677846175905046],[-87.63875689946877,41.67784862357494],[-87.63852759878584,41.67785228714078],[-87.63829660401096,41.677854245649044],[-87.63804769168257,41.67785635546155],[-87.63775078195417,41.67785982798884],[-87.63730802047708,41.67786466689873],[-87.6370928275869,41.67786699696064],[-87.63684966468938,41.67786962914701],[-87.63663666528939,41.67787215277385],[-87.63639043009763,41.677874474464204],[-87.63613555599545,41.67787682582511],[-87.63588878442786,41.67787969644535],[-87.63554020002174,41.6778837506275],[-87.63534477613186,41.67788585714429],[-87.63507583948751,41.67788875276985],[-87.63492577536151,41.677890364639325],[-87.63468089332164,41.6778935361456],[-87.63454359471177,41.67789531403362],[-87.63436457297902,41.67789718901569],[-87.63416900440356,41.677899128266986],[-87.63376080773195,41.67790312092885],[-87.63347471460676,41.67790638753543],[-87.63325917412001,41.67790884826245],[-87.63302135230188,41.67791176284979],[-87.63282636486491,41.677914114733476],[-87.6325293054535,41.67791787473385],[-87.63227311749202,41.67792024080148],[-87.63211232438354,41.6779217256442],[-87.63196793640559,41.67792314983365],[-87.63170449632571,41.67792549370324],[-87.63147488266115,41.677927549567954],[-87.63126232982826,41.677929434761886],[-87.6310694761396,41.67793224786808],[-87.6307876249741,41.67793635865271],[-87.63065798681473,41.67793795368945],[-87.63046237634758,41.6779403251958],[-87.63025874899255,41.67794278454306],[-87.63008880217988,41.67794487331382],[-87.62986678281581,41.67794721421048],[-87.62961777937115,41.67794983897836],[-87.62937169629942,41.677951625135485],[-87.62901395290316,41.67795459267851],[-87.62866128757874,41.677959223673746],[-87.6282930094747,41.67796405831445],[-87.62817359163448,41.67796497254856],[-87.6277823379564,41.67796943186042],[-87.62746103458097,41.67797190501653],[-87.62717144687018,41.67797413278266],[-87.62686545639312,41.67797774093451],[-87.62652386155665,41.67798022367865],[-87.6262905973831,41.677984139228805],[-87.62592330150777,41.677990843132505],[-87.62573941463019,41.67799232921853],[-87.62546737127,41.67799471559305],[-87.62511431317981,41.67799636692794],[-87.62496599341213,41.677997060205094],[-87.62480439079887,41.677999329806774],[-87.62452603624808,41.67800301153687],[-87.62448173724198,41.67800359729707],[-87.62413214130899,41.678007944618535],[-87.62389257668534,41.67800912751917],[-87.62380113460986,41.67800957897407],[-87.62353837072708,41.678016957603774],[-87.62331724684807,41.67801921453469],[-87.62328812012622,41.67801950469397],[-87.62295169878492,41.67802285595853],[-87.6226582884707,41.678026204089065],[-87.62265175621596,41.67786602911067],[-87.62264394217601,41.677638035804634],[-87.62263906263364,41.67746599052082],[-87.62263388186578,41.67726809170329],[-87.62262979583222,41.677108235902665],[-87.62262630725105,41.676971766103655],[-87.62262183635255,41.676805870644635],[-87.62261686045906,41.67661933463238],[-87.62261247720438,41.67646211181491],[-87.62260537147493,41.67620120119611],[-87.6226011618645,41.67604663129538],[-87.62259399111318,41.67583003117419],[-87.62258738584887,41.67563190421737],[-87.62258147822529,41.67545351281679],[-87.62257617762131,41.675288819965594],[-87.62257266722783,41.67517976538731],[-87.62257036728212,41.67510175704375],[-87.62256816080856,41.67502709737106],[-87.6225633020699,41.67486320282393],[-87.62255623329138,41.674624044817236],[-87.62255261791339,41.67447566428944],[-87.62255080306642,41.67440121011156],[-87.62254725783288,41.67429838934236],[-87.6225421220956,41.674156651408204],[-87.62253797422213,41.67401798171419],[-87.62253457788843,41.67390412549638],[-87.62252661973636,41.67363935725714],[-87.62252197603257,41.67346701115785],[-87.6225157301739,41.673235185843765],[-87.62251281960944,41.673143753873426],[-87.62250752077121,41.672969976924655],[-87.62250028198805,41.67272966516298],[-87.62249734618364,41.672555297140605],[-87.62249434918635,41.67237730977267],[-87.62249105501726,41.67225088534831],[-87.62248252833562,41.672011169345396],[-87.62247310458767,41.67179650361491],[-87.62246898428957,41.67164493563126],[-87.62246419336401,41.67146869159635],[-87.6224554951874,41.671191349857544],[-87.62245274185537,41.67110230640312],[-87.62244640521173,41.67089978971981],[-87.62244015083398,41.670733112165166],[-87.62243304601753,41.670543766025396],[-87.62242627316989,41.6704075499127],[-87.62240912155659,41.67006692592749],[-87.62239836795032,41.669853377074084],[-87.6223875838455,41.66963927915493],[-87.62237995596622,41.66948757964157],[-87.62237040232911,41.66929807834841],[-87.622362738589,41.669146351159895],[-87.62235706757265,41.66903302991406],[-87.62235060595673,41.66891901412189],[-87.62234201867189,41.6687675040497],[-87.62233212017911,41.66855278036579],[-87.62232403208256,41.668376433779365],[-87.62231774249913,41.6682393424103],[-87.62230968087961,41.66806412143216],[-87.62229678150763,41.66779616607683],[-87.6222925245521,41.667698976288904],[-87.62229233343085,41.66769462532336],[-87.62228821080035,41.66760049630676],[-87.62227355413012,41.66732262325275],[-87.62226606953384,41.66711400688602],[-87.62226495143614,41.66708283960078],[-87.6222610062002,41.66697286144336],[-87.62225286649799,41.666801234755546],[-87.6222459116907,41.66665497312406],[-87.6222386603949,41.66650239766469],[-87.62223169160706,41.66634663529631],[-87.6222232679377,41.66615835388104],[-87.62221749826571,41.66604412605278],[-87.62220949444064,41.665885513029345],[-87.62219826432897,41.66566342148358],[-87.62218462033574,41.66542186500516],[-87.62217835419423,41.66531092455705],[-87.62217326079765,41.66517513035187],[-87.6221680281496,41.66504866605104],[-87.62216374517274,41.66496085374984],[-87.62215814377785,41.66484601741787],[-87.62214551548264,41.664663275736416],[-87.62213648648292,41.66445969930397],[-87.62212628024665,41.664229577769696],[-87.62211911571411,41.66408246374786],[-87.62211035788117,41.66390291268836],[-87.62210887345326,41.66387248573735],[-87.62210730025653,41.66384014844752],[-87.6221001227653,41.66369262240848],[-87.62209826606606,41.6636544543753],[-87.62209331545228,41.663552698295206],[-87.62208842899,41.66345226401207],[-87.62205573569955,41.66312741010035]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6703631.69992","perimeter":"0.0","tract_cent":"1177944.12095639","census_t_1":"17031320600","tract_numa":"23","tract_comm":"32","objectid":"612","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896241.68955684","census_tra":"320600","tract_ce_3":"41.87060737","tract_crea":"","tract_ce_2":"-87.62217294","shape_len":"11444.030697"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62420460497431,41.8733241107567],[-87.62420015199118,41.873161610736474],[-87.62264854172516,41.87318287040285],[-87.62243199040225,41.873185965079486],[-87.62175917264062,41.87319469314591],[-87.62115742357403,41.873204217782984],[-87.62059279889965,41.873213338499134],[-87.61982509463466,41.873225722902966],[-87.61926159169195,41.87323306028248],[-87.61849164244217,41.87324251291136],[-87.61731255185184,41.87325635916285],[-87.61708233508153,41.87325906134578],[-87.61622882182604,41.873312072952686],[-87.61622849386062,41.87329674072757],[-87.616223001542,41.87303989446741],[-87.6162141996047,41.87262833989739],[-87.61621221920217,41.87253606489672],[-87.61621016801503,41.872440498553175],[-87.61620601727483,41.87226656978465],[-87.61620599368207,41.87226542857996],[-87.61620499474388,41.87221683794103],[-87.61620000751128,41.87196993417047],[-87.61628092134701,41.87196739329352],[-87.61627441287716,41.87180404313017],[-87.61627385844143,41.87179041229179],[-87.61627346227584,41.87178065567034],[-87.61625404672178,41.87175704424457],[-87.6162484667048,41.87174695119244],[-87.61623990287559,41.87173146188434],[-87.61623374258829,41.87171435365966],[-87.6162337431413,41.87171427133574],[-87.61623374481873,41.87171402271752],[-87.61623437739486,41.87162799620134],[-87.61624452558029,41.87161010424044],[-87.61624954592739,41.87160125273775],[-87.6162563023254,41.8715924233261],[-87.6162594947807,41.8715882514238],[-87.61626136971368,41.871583830350126],[-87.61626647072039,41.871571802336604],[-87.61626680769747,41.871568129895174],[-87.61626785064347,41.87155674476733],[-87.61626414165298,41.871392588248845],[-87.61625482750509,41.870980920871645],[-87.61625245576347,41.87087648337182],[-87.61625047250016,41.87078912574133],[-87.61624969190358,41.87075555544019],[-87.61624536536476,41.870569362036086],[-87.61624055395578,41.87036170696179],[-87.61623582951663,41.87015780271055],[-87.61622780241301,41.86981167562251],[-87.61622666130528,41.869746273093355],[-87.61621951289516,41.86933467373121],[-87.6162194008373,41.869328275093764],[-87.61621232751519,41.8689231021001],[-87.6162120471218,41.868906996557136],[-87.61621190314993,41.86889872312459],[-87.61621190264572,41.86889870253958],[-87.61612009673378,41.868866806674596],[-87.6161198864411,41.86886673373644],[-87.61603052073842,41.86883085714058],[-87.61594406161477,41.86879115641072],[-87.6159059263036,41.86877129791627],[-87.61586080092418,41.86874779885485],[-87.6157810678618,41.868700895483265],[-87.61570508055195,41.868650640038],[-87.61563313115037,41.868597172113375],[-87.6156313949779,41.868595723826644],[-87.61556540034218,41.86854068412025],[-87.61554898511012,41.868525285364264],[-87.61554425492434,41.86852084798994],[-87.61552786917794,41.86850547274129],[-87.6155021815145,41.86848136917382],[-87.61544369197082,41.868419394941235],[-87.61543271387069,41.868406221162886],[-87.61539003870254,41.868355009629575],[-87.61535263541235,41.86830451710064],[-87.61535246000204,41.868304279998725],[-87.61660246599558,41.86816620374145],[-87.61854139896624,41.86798988498173],[-87.61858876755252,41.86793887278573],[-87.61883837090119,41.86765002988986],[-87.61889093150744,41.86758723807422],[-87.61896156419719,41.867502856860455],[-87.6192145411437,41.86753745693264],[-87.61994542962896,41.86752176958542],[-87.62040042129772,41.86751255459217],[-87.6208386878263,41.8675070855872],[-87.62086219386481,41.867506711106245],[-87.62099309571056,41.86750462436742],[-87.62124471137419,41.86750061312387],[-87.62158134288491,41.86749581567297],[-87.62184922452816,41.867491997216575],[-87.62243567133937,41.86748551465883],[-87.6225319933999,41.8674844747378],[-87.62255587150662,41.867484216922506],[-87.6228326498586,41.86748122813009],[-87.62317851139986,41.867476624153284],[-87.62336548629757,41.86747190968281],[-87.62353645029401,41.86746759870019],[-87.6240237087002,41.86745712282396],[-87.62413151136133,41.86745658605874],[-87.62442667509643,41.867455115580505],[-87.62481165090564,41.86744850058],[-87.62535904552293,41.867438390298695],[-87.62563875661463,41.86743337110034],[-87.62582986219891,41.867431856185036],[-87.62630608751614,41.86742808012401],[-87.62654636459425,41.8674251433351],[-87.62666774623519,41.867423659486704],[-87.62702182789425,41.86741911070413],[-87.62741867651468,41.867413588800275],[-87.62746178584435,41.8689309555223],[-87.62746758964475,41.86923545315861],[-87.62747968351995,41.8698699731487],[-87.62748151789778,41.8699662125625],[-87.62748640976552,41.87022285721286],[-87.627493800246,41.870533289911236],[-87.62751739973312,41.87152447340322],[-87.6275257358244,41.871806708944426],[-87.62754038267394,41.87230261598639],[-87.62755513014912,41.87280194101276],[-87.62756611032268,41.87309193343394],[-87.62759525663328,41.87386171244117],[-87.62760697485348,41.87437097785371],[-87.62754130369167,41.87437320600437],[-87.6270774676633,41.874388942312336],[-87.62678051836888,41.87439321867553],[-87.62677892494338,41.87439324125424],[-87.62664368871447,41.87439518851831],[-87.62632733524715,41.874401560555214],[-87.62608479108633,41.87440670105404],[-87.62599636873772,41.87440857497881],[-87.62566413364736,41.87441561520871],[-87.62522546986618,41.874425452475826],[-87.62483903094231,41.874434155819635],[-87.62463042175064,41.87443896060763],[-87.62431187869365,41.874438264161824],[-87.62423477647899,41.87443809547078],[-87.62423341749806,41.87439621401352],[-87.6242304160293,41.874303719628784],[-87.6242162943418,41.87381345119928],[-87.62420460497431,41.8733241107567]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3450699.77537","perimeter":"0.0","tract_cent":"1171984.01208169","census_t_1":"17031310200","tract_numa":"22","tract_comm":"31","objectid":"615","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890982.73326862","census_tra":"310200","tract_ce_3":"41.85630982","tract_crea":"","tract_ce_2":"-87.64420929","shape_len":"7893.8109585"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64170602632113,41.8527643559504],[-87.6417879440348,41.852698824330076],[-87.64186897866306,41.852699557290386],[-87.6421872409043,41.852702435360484],[-87.64235408592764,41.85270059045578],[-87.6426022428801,41.852697824632706],[-87.64276376515079,41.85269602396014],[-87.64308362979851,41.852691168455856],[-87.64363927339367,41.85268089497751],[-87.64388299829209,41.85267725399168],[-87.64421974904975,41.852672222262505],[-87.64461139373036,41.85266877423476],[-87.64474173479415,41.85266762628049],[-87.64493842050874,41.852665893957536],[-87.64507659849741,41.85266467651367],[-87.64518671675343,41.85266370626429],[-87.64537861774247,41.85266185395853],[-87.64552881718824,41.852659765325505],[-87.64565290360522,41.85265803963356],[-87.6457851019728,41.85265620073252],[-87.64586037716022,41.85265515406911],[-87.64592970596382,41.85265418922072],[-87.64620209971245,41.85265039985565],[-87.64649538700212,41.85264651854685],[-87.64650270814907,41.85292552592335],[-87.64650794293983,41.8531189724476],[-87.64651307175475,41.85331203413552],[-87.64651640085829,41.85345346558809],[-87.64652047232255,41.85362678973729],[-87.64652238632044,41.853697109034606],[-87.64652993827215,41.853950064592844],[-87.64653414104038,41.85409084318126],[-87.64653757409192,41.85420129230859],[-87.64654137744253,41.85432365399437],[-87.64655159289414,41.85466636728952],[-87.64655346866239,41.8547292853612],[-87.64655557686974,41.85480001826771],[-87.64656082580547,41.85497610739371],[-87.64656659198882,41.85514735599566],[-87.64657233367505,41.855348242407544],[-87.64657858444977,41.85556694207527],[-87.64658688471857,41.85582385402591],[-87.64659077379676,41.8559966827714],[-87.64659903852842,41.85636394154247],[-87.64660129027284,41.85646398283436],[-87.64661159707319,41.85673112524977],[-87.64661866796104,41.85693261340944],[-87.6466267257245,41.857215649153304],[-87.64663376222457,41.857541516317866],[-87.64663531713272,41.857613507688946],[-87.6466397960802,41.85773008296244],[-87.64664918415849,41.858092325528744],[-87.64665128118978,41.85817321151838],[-87.64665776965107,41.8583449583065],[-87.64666432605007,41.85851848953509],[-87.64667025466528,41.85873979392019],[-87.64668193053157,41.859146727102434],[-87.64668790250659,41.85935485930375],[-87.64669094949501,41.8594543567209],[-87.64670058203139,41.85973778594816],[-87.6467055607459,41.859911363134735],[-87.6463852807797,41.859916664440945],[-87.64618591366782,41.85991997236081],[-87.64580370900468,41.85992561585706],[-87.6455224729163,41.859929585081325],[-87.64536797873889,41.85993156864278],[-87.645221818806,41.859933437275856],[-87.64487231878843,41.85994109278189],[-87.64476399203373,41.85995286687383],[-87.64464548687327,41.85995351856703],[-87.64446845179371,41.85995449225374],[-87.64435282150944,41.85995512795744],[-87.64422226872479,41.85995584552384],[-87.6441064053201,41.85995648232492],[-87.64409797415216,41.85995652859974],[-87.6440538806757,41.85995677083842],[-87.64401002545404,41.85995701202036],[-87.64386011688252,41.85995783555841],[-87.64335562747779,41.859960605537935],[-87.64293777346181,41.85997024735142],[-87.64253443410861,41.85997471421555],[-87.64227572947989,41.859979398279705],[-87.64194022992014,41.859983945220115],[-87.64192751316027,41.8595963068249],[-87.64191917248824,41.85934205641435],[-87.64191273682793,41.85914204391256],[-87.64190603419176,41.85893280910382],[-87.6418989011967,41.85871122008431],[-87.6418922868422,41.85850514415272],[-87.64188671323313,41.85833419818628],[-87.64188053637372,41.85814428633584],[-87.64187687142758,41.858032243543626],[-87.64187480081058,41.857967933476964],[-87.64186356937877,41.85762140320894],[-87.64185149273288,41.857248798784866],[-87.64184959323197,41.85719027984205],[-87.64184603567017,41.857080680063724],[-87.64183530625249,41.856768703753445],[-87.64182786572684,41.85655235651821],[-87.64182043161141,41.856336201685366],[-87.6418165775869,41.85621688571691],[-87.6418101990303,41.856032131504776],[-87.64180790485143,41.85596565183292],[-87.64179609933211,41.85566500220565],[-87.64179122731423,41.85554093280588],[-87.64178747697947,41.85535199623442],[-87.64177666284635,41.85502111084698],[-87.64177248403414,41.85487863110279],[-87.64177027942178,41.85481283856917],[-87.64176481769978,41.85464985123001],[-87.64175279526192,41.85425485325595],[-87.64173995742962,41.85383306585553],[-87.64173359744873,41.85364317991675],[-87.64173151511666,41.85357752504324],[-87.64172554053955,41.85338593970319],[-87.64171851473674,41.853159057163104],[-87.64170602632113,41.8527643559504]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7123783.34258","perimeter":"0.0","tract_cent":"1151493.33479376","census_t_1":"17031301700","tract_numa":"31","tract_comm":"30","objectid":"613","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885117.96857603","census_tra":"301700","tract_ce_3":"41.84064284","tract_crea":"","tract_ce_2":"-87.71957481","shape_len":"10680.0078745"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72390474831639,41.83688844000193],[-87.72435056187119,41.83688226768801],[-87.72435331630548,41.837016890888144],[-87.72435684226318,41.837225583801],[-87.72435832457977,41.83731146038532],[-87.72435930569488,41.83736829884811],[-87.72436601376963,41.83759358400306],[-87.7243712939915,41.837768202377966],[-87.72437697944228,41.83794265823969],[-87.72438338303256,41.83814200841924],[-87.72439127678567,41.83839707514168],[-87.72439610681604,41.838553386834604],[-87.72440009876908,41.83872281360344],[-87.72440346005882,41.8388654765666],[-87.72440850986631,41.839041191387395],[-87.7244128137267,41.83919494810354],[-87.72441907477433,41.83943258002073],[-87.72442462734278,41.83964430228345],[-87.72443038922029,41.83986491707535],[-87.7244366511955,41.84011407489324],[-87.72444001218727,41.84025116860308],[-87.72444234174328,41.84034500773452],[-87.7244496898141,41.840565700337685],[-87.72445291044579,41.840663563441595],[-87.72445911434419,41.840934345467744],[-87.72446522567914,41.84115682843765],[-87.724473546662,41.84143656824776],[-87.72447899531518,41.84162831134661],[-87.72448326869367,41.84177369809082],[-87.72448759292483,41.84191376094881],[-87.72449122534462,41.84203381443168],[-87.72449531523003,41.84216759167024],[-87.72449736381986,41.84223409611033],[-87.7244992280237,41.84240974838443],[-87.72450025218511,41.84250623289386],[-87.72450519571426,41.842681590282645],[-87.72451214974124,41.84289263378525],[-87.7245176852265,41.843079108303456],[-87.72452153329343,41.843242275600346],[-87.72452597166914,41.843405116435136],[-87.72453032923339,41.843591969164336],[-87.72453456793006,41.84378269094666],[-87.7245399126567,41.84395925762461],[-87.72454658310663,41.84415377909615],[-87.72455325057412,41.8442551615408],[-87.72428599856475,41.844255636869484],[-87.72402807065052,41.84425920854732],[-87.72394306129726,41.84426038023132],[-87.7238023700759,41.84426231949646],[-87.72349543828454,41.84426680994323],[-87.7233318288137,41.84426931740079],[-87.72308851782924,41.844273046102565],[-87.72286300928116,41.84427525089254],[-87.72266205678899,41.84427709128593],[-87.72233872676897,41.84428080538704],[-87.72211091651921,41.84428403022073],[-87.72185542707223,41.84428764621967],[-87.72161384264514,41.84428995479415],[-87.72151257889102,41.84429082378051],[-87.72142838004169,41.844291546488755],[-87.72118690804523,41.8442936077802],[-87.7208924936603,41.84429891402812],[-87.72061230017616,41.84430396332987],[-87.72028763682928,41.84430895928766],[-87.71998452007283,41.84431359298696],[-87.71980634992754,41.844316318710696],[-87.71967427479406,41.84431716665868],[-87.71939105855854,41.84431898411909],[-87.71906722749463,41.84432197666402],[-87.71905243002067,41.84432211349796],[-87.71870561636318,41.84432533501661],[-87.71845258437493,41.844329644582835],[-87.71784742127419,41.84433994895321],[-87.71723251831666,41.844350416058404],[-87.71696345351026,41.84435499501608],[-87.71662067218499,41.844359024421195],[-87.71652835657098,41.84436012366865],[-87.71625314349869,41.844363530171925],[-87.7160101612886,41.84436741825717],[-87.71584467748549,41.84437006606204],[-87.71571363790396,41.844372019040144],[-87.7154263461666,41.844375852578096],[-87.7154003038259,41.844376198755526],[-87.71507500397406,41.8443805206726],[-87.7150507441081,41.84438091176661],[-87.71478659341268,41.84438516684837],[-87.71478110251093,41.84418277818755],[-87.71477676114007,41.8439971875948],[-87.71477480159267,41.843929338804585],[-87.71477073402757,41.84378848120328],[-87.7147635434255,41.84355578365796],[-87.71475689198522,41.84334712877287],[-87.71475104484534,41.84313117846503],[-87.71474686101469,41.842963536183994],[-87.71474226157736,41.84277808137453],[-87.71474096164762,41.842550845866434],[-87.71473992323354,41.8423693100989],[-87.71473457081602,41.8421896418907],[-87.71472852592397,41.84198661596749],[-87.71472248423154,41.841783261016616],[-87.71471627303853,41.84157460816243],[-87.71470950787692,41.841347346464424],[-87.71470488015304,41.84118008593704],[-87.714699811905,41.8409823616721],[-87.71469261269556,41.84072168616417],[-87.71468941812338,41.84060601183286],[-87.71468293764242,41.8403758427059],[-87.71468055206687,41.84029284322351],[-87.71467528230332,41.84010763169985],[-87.71466961176819,41.839907681296694],[-87.71466594050125,41.839778296766134],[-87.71466101181142,41.83960420134526],[-87.7146564607561,41.839444241204575],[-87.71465144785367,41.83925988148492],[-87.7146452448405,41.83901612967272],[-87.71464182908966,41.83888739030315],[-87.71463703321213,41.83870664181848],[-87.71463193091452,41.8385124848314],[-87.7146284628051,41.83838107060479],[-87.71462248696717,41.83816712272879],[-87.714617347491,41.83798822365335],[-87.7146116047497,41.837788217900325],[-87.71460653707864,41.837613298388554],[-87.71460011518178,41.83738856310573],[-87.71459582479332,41.837239663433394],[-87.71459350297332,41.837056155140004],[-87.71481670759253,41.83705215719744],[-87.71512157157233,41.83704551079171],[-87.71520147223771,41.83704422070869],[-87.71550903478968,41.83703925301923],[-87.71581068498233,41.837034455795255],[-87.7158365605736,41.83703404413351],[-87.7159152149952,41.83703279323208],[-87.71599559080323,41.837031660476235],[-87.71628723749532,41.83702568088842],[-87.71641463699426,41.837022947793955],[-87.71652764746881,41.83702052313283],[-87.71674515177176,41.83701614752267],[-87.717031302474,41.83701187338912],[-87.71722902515032,41.83700891955045],[-87.71743753504201,41.83700493346564],[-87.71763910281602,41.83700166309158],[-87.71773757391878,41.83700006545931],[-87.71799534500708,41.83699453115204],[-87.71824766738462,41.83699079833833],[-87.71841209041538,41.8369883655695],[-87.71866207590065,41.836983446708224],[-87.71886016072172,41.836979752693175],[-87.71908746170597,41.83697551369624],[-87.71946778365106,41.83696823317996],[-87.71975982383283,41.83696264177628],[-87.72006053270631,41.83695678334306],[-87.72008075542608,41.83695642287039],[-87.72044429384161,41.83694994029866],[-87.72068941661745,41.83694584619086],[-87.72091749417703,41.83694203609423],[-87.72120207746457,41.8369377901379],[-87.72129981738885,41.8369359624453],[-87.72148531296263,41.8369324934746],[-87.72170168470251,41.836927526147115],[-87.72190894145223,41.8369247922996],[-87.72213005716485,41.83692187551201],[-87.7223883715694,41.83691702030229],[-87.72252083139591,41.83691459522359],[-87.72266367805442,41.83691198042708],[-87.72313035785947,41.836902742904755],[-87.72334675995812,41.83689845843182],[-87.72366364845732,41.836892896029475],[-87.72374368157573,41.83689141684013],[-87.72390474831639,41.83688844000193]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"21120644.7161","perimeter":"0.0","tract_cent":"1152694.8015731","census_t_1":"17031302000","tract_numa":"51","tract_comm":"30","objectid":"614","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1881793.35335533","census_tra":"302000","tract_ce_3":"41.83149603","tract_crea":"","tract_ce_2":"-87.71525364","shape_len":"19103.0381175"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71269084974729,41.826565204048265],[-87.71352770970104,41.826299905825685],[-87.71420137247617,41.8260872350093],[-87.7143693473594,41.82604056364234],[-87.71437442000348,41.82632111996084],[-87.71522984765724,41.82605122598607],[-87.71573033842834,41.82589377849258],[-87.71576875741874,41.825881692357385],[-87.71587540356938,41.82584814256347],[-87.71602313585832,41.82580162834659],[-87.71643236024046,41.82567321784054],[-87.7167683413234,41.825568681180876],[-87.71683195252783,41.825548492698864],[-87.71710206858542,41.82546276506949],[-87.7174763669198,41.825343790914594],[-87.71764166917593,41.825291247432226],[-87.71775801273604,41.82523715675004],[-87.71858348687928,41.82499187307111],[-87.71922255433702,41.82479351108104],[-87.71933427592101,41.824758832878416],[-87.71959377559067,41.82467828445791],[-87.72060304052324,41.82436094595948],[-87.72107338399583,41.824211860227805],[-87.72119731210155,41.82417303171017],[-87.72133794337329,41.824128970080665],[-87.72181792629867,41.823978581640894],[-87.7219523572832,41.82393646130223],[-87.72233852918133,41.823814529737156],[-87.72350700753482,41.82344557864516],[-87.72369533671117,41.82338611152278],[-87.72405680171985,41.8232719734353],[-87.72405899070242,41.823368280029534],[-87.7240602305541,41.82342283045447],[-87.7240615479454,41.82348081190895],[-87.72406183475996,41.82349343737198],[-87.72406356094169,41.82356940587772],[-87.72406585127332,41.823670193857374],[-87.72406679465091,41.82371170657548],[-87.7240678004448,41.82375596225316],[-87.72406904777544,41.823810847241184],[-87.72406960159694,41.823835208092206],[-87.72407066168307,41.82388186420007],[-87.72407144921219,41.823916519243745],[-87.72407266544235,41.823970041258164],[-87.72407348443983,41.82400605982416],[-87.72407417823949,41.824036592468524],[-87.724075738329,41.82410523753649],[-87.72407653606159,41.824131966891755],[-87.72407786767091,41.82417657007298],[-87.72407909676383,41.82421774538486],[-87.7240818357432,41.82430952627746],[-87.72408323715479,41.82435566826811],[-87.72408945619132,41.824560483722514],[-87.72409025194176,41.82458668781084],[-87.72409396078139,41.82474060696989],[-87.72409643726542,41.82484901155315],[-87.72409643754125,41.82484902115957],[-87.72409798620335,41.82492518327464],[-87.72409948088898,41.82499867986272],[-87.7241013927745,41.825091909723625],[-87.72410392173045,41.82521525413542],[-87.72410746951839,41.82534510513487],[-87.72410980538625,41.82543057368605],[-87.72411121760464,41.82547650825765],[-87.72411312676142,41.82553860320411],[-87.72411415018264,41.82557190958013],[-87.72411516399765,41.82560487479168],[-87.72411692816492,41.82566225567631],[-87.72411971524352,41.825873474208315],[-87.72412037943752,41.82592381321126],[-87.72412598545623,41.82623367836988],[-87.72412720192723,41.82630092091125],[-87.72413603637966,41.826789238335685],[-87.72414032150134,41.826987425079736],[-87.72414442217844,41.82719732888755],[-87.72414783482516,41.82737144371025],[-87.72415183065067,41.82756918981597],[-87.7241562950432,41.827779397401414],[-87.72416163078451,41.828037140414764],[-87.72416635133747,41.82828225649701],[-87.7241682390516,41.82839225423396],[-87.72417281576041,41.82865897135788],[-87.72417446762189,41.82875522341991],[-87.7241755976188,41.82882106726593],[-87.72417835864812,41.82898164575043],[-87.72418430393496,41.82924871999965],[-87.72418899582176,41.829489170614366],[-87.72419087050059,41.82957001200905],[-87.72419537686216,41.829764317781695],[-87.72419956638643,41.82996077365145],[-87.72420501695255,41.83021637801481],[-87.7242067833717,41.830299198268605],[-87.72420744197724,41.83033008607577],[-87.7242135637265,41.83061711452561],[-87.72421747093793,41.83080879493318],[-87.72422067577655,41.83095837502673],[-87.7242291009502,41.83122472302689],[-87.72423795367563,41.83150457674486],[-87.72424130792905,41.83170810971794],[-87.7242435389498,41.83185912728731],[-87.72424414640413,41.83190025122194],[-87.72424744700325,41.83207461229118],[-87.72425195691086,41.83226075269185],[-87.72425917487314,41.83249410891185],[-87.72426873673676,41.83282083765383],[-87.7242687520552,41.83289442618692],[-87.72426856056596,41.833026947116586],[-87.72426933384037,41.833168516629364],[-87.72427221656343,41.833285131869],[-87.72427711963438,41.83348345887698],[-87.7242796461681,41.83358605311443],[-87.72428541030945,41.83382178908617],[-87.72429003022957,41.83401569629839],[-87.72429380718721,41.834178533892924],[-87.72429718142405,41.834341314461994],[-87.72430040009112,41.834501075504214],[-87.7243041489466,41.83474042318879],[-87.72430633376324,41.834877675723185],[-87.72430956348073,41.83506340775726],[-87.7243120807529,41.83520817119258],[-87.72431538076188,41.83536326738306],[-87.72432026167893,41.83558771964923],[-87.72432326991726,41.835719405661756],[-87.72432709098625,41.83588147504591],[-87.7243327485185,41.8361053002273],[-87.72433692222775,41.8362611422529],[-87.72434035947397,41.83641725424749],[-87.72434106487447,41.836447280020096],[-87.72434569308537,41.83664428848527],[-87.72435056187119,41.83688226768801],[-87.72390474831639,41.83688844000193],[-87.72374368157573,41.83689141684013],[-87.72366364845732,41.836892896029475],[-87.72334675995812,41.83689845843182],[-87.72313035785947,41.836902742904755],[-87.72266367805442,41.83691198042708],[-87.72252083139591,41.83691459522359],[-87.7223883715694,41.83691702030229],[-87.72213005716485,41.83692187551201],[-87.72190894145223,41.8369247922996],[-87.72170168470251,41.836927526147115],[-87.72148531296263,41.8369324934746],[-87.72129981738885,41.8369359624453],[-87.72120207746457,41.8369377901379],[-87.72091749417703,41.83694203609423],[-87.72068941661745,41.83694584619086],[-87.72044429384161,41.83694994029866],[-87.72008075542608,41.83695642287039],[-87.72006053270631,41.83695678334306],[-87.71975982383283,41.83696264177628],[-87.71946778365106,41.83696823317996],[-87.71908746170597,41.83697551369624],[-87.71886016072172,41.836979752693175],[-87.71866207590065,41.836983446708224],[-87.71841209041538,41.8369883655695],[-87.71824766738462,41.83699079833833],[-87.71799534500708,41.83699453115204],[-87.71773757391878,41.83700006545931],[-87.71763910281602,41.83700166309158],[-87.71743753504201,41.83700493346564],[-87.71722902515032,41.83700891955045],[-87.717031302474,41.83701187338912],[-87.71674515177176,41.83701614752267],[-87.71652764746881,41.83702052313283],[-87.71641463699426,41.837022947793955],[-87.71628723749532,41.83702568088842],[-87.71599559080323,41.837031660476235],[-87.7159152149952,41.83703279323208],[-87.7158365605736,41.83703404413351],[-87.71581068498233,41.837034455795255],[-87.71550903478968,41.83703925301923],[-87.71520147223771,41.83704422070869],[-87.71512157157233,41.83704551079171],[-87.71481670759253,41.83705215719744],[-87.71459350297332,41.837056155140004],[-87.71428194988627,41.83706173526582],[-87.71398224488321,41.8370662505406],[-87.71391706236751,41.837067232481246],[-87.7135086874609,41.837076720044436],[-87.71337160201863,41.83707931036712],[-87.71275987216973,41.837090867917226],[-87.71212222905164,41.83710291159607],[-87.71194300914502,41.83710629593546],[-87.71167019572123,41.837111405931054],[-87.71153894613347,41.837113826417905],[-87.71142975498684,41.837115839841275],[-87.7111565418446,41.83712053481209],[-87.71092855078574,41.83712397005989],[-87.71067024408939,41.83712786126857],[-87.71029749053979,41.8371345941465],[-87.71000378872492,41.837140519926805],[-87.70971387654575,41.83714523061088],[-87.70913328281921,41.837154850050204],[-87.70903493006146,41.837156799623614],[-87.70881216654678,41.83716121518611],[-87.7085629581993,41.83716532099493],[-87.7084929342302,41.83716648373286],[-87.7081633801242,41.83717195591741],[-87.7077904201517,41.83717722507199],[-87.70748991661485,41.837180665255275],[-87.70727689910278,41.83718391468354],[-87.70706314753264,41.83718717535655],[-87.70673958097679,41.83719242006201],[-87.70656149789087,41.83719571768111],[-87.70618851788406,41.83720301255665],[-87.70593071071485,41.837208300622954],[-87.70556719749032,41.83721567235936],[-87.70516147135721,41.83722426654976],[-87.70482285953652,41.837232938428464],[-87.70481366276606,41.83687172872011],[-87.70480866291835,41.83667389451727],[-87.70480298578028,41.836462774343076],[-87.70479541044108,41.836231885041606],[-87.7047845972811,41.835911871615124],[-87.70477704755707,41.83569341396755],[-87.70476772650336,41.835408398101656],[-87.7047641280679,41.835269535973616],[-87.70476101394964,41.835149357279505],[-87.70475473628345,41.83490587883041],[-87.7047481683595,41.83462831496034],[-87.7047413948592,41.83430426203081],[-87.70473262672547,41.834019057021294],[-87.70472092924656,41.83374072408191],[-87.70471928969936,41.83367787682536],[-87.70471858335068,41.83365079936842],[-87.70471809714219,41.8336321622939],[-87.70471713988361,41.83359547659904],[-87.70471384666524,41.833482852137685],[-87.70471078193404,41.83337804076264],[-87.70470233146227,41.83311383110817],[-87.70469421429718,41.83286798929181],[-87.70469356479516,41.832848303833146],[-87.70469356081558,41.83284818553333],[-87.7046913765135,41.83277827702295],[-87.7046856473395,41.832591395456916],[-87.70468138462655,41.83242707267618],[-87.70467608447788,41.832207076142296],[-87.70467590619872,41.83218963368262],[-87.70467394964744,41.83199812998879],[-87.70467236861168,41.831810962095744],[-87.7046691609101,41.831639812382136],[-87.70466730651752,41.83154084328859],[-87.70466221626144,41.83131852950954],[-87.70465806238506,41.83122416752992],[-87.70465281994308,41.83110508331601],[-87.70464660716107,41.830903785039254],[-87.70463677453019,41.830622443177475],[-87.7046310689827,41.83047142297993],[-87.70463106750262,41.83047138674745],[-87.7046273905587,41.83038082790462],[-87.70462650657079,41.83035968586674],[-87.70462479368159,41.830318709463015],[-87.7046208843235,41.83022520529136],[-87.7046179096121,41.83013071774752],[-87.70461424800672,41.83001440893683],[-87.70460744033225,41.82979817962559],[-87.70460266273797,41.82965519477181],[-87.70459461254968,41.829480980577515],[-87.70459020325875,41.829385554036904],[-87.70458667935551,41.82930928790577],[-87.70458161571277,41.82919970392472],[-87.70457772629852,41.82911553420863],[-87.70487383307528,41.82902275560361],[-87.70504710051428,41.82896846568817],[-87.70530246069474,41.82888731449972],[-87.70561645020851,41.828787712341736],[-87.70602372975354,41.82865963934033],[-87.70634083673582,41.82855994244973],[-87.70673258963183,41.82843600834966],[-87.70682526388761,41.828406707506026],[-87.70689340095453,41.82838513455992],[-87.70709195255246,41.828322269669705],[-87.70748377612259,41.82819827849818],[-87.70773632820888,41.82811850615757],[-87.70810443896399,41.82800286350943],[-87.70851177670232,41.827875331099754],[-87.70885956219063,41.82776679262004],[-87.70924114056669,41.82764674636987],[-87.70927913273303,41.82763479154384],[-87.7094463937882,41.82758215994244],[-87.70945467932734,41.82757955260595],[-87.70963876398295,41.827521626738545],[-87.70999196663493,41.82741026046304],[-87.71085013724685,41.82714421929853],[-87.71120320088663,41.827035373263044],[-87.71146007524912,41.826955396574164],[-87.71179771190573,41.826848736616775],[-87.71187396168857,41.82682464913654],[-87.71230663210903,41.8266862903539],[-87.71269084974729,41.826565204048265]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4256210.47346","perimeter":"0.0","tract_cent":"1152498.32419843","census_t_1":"17031292200","tract_numa":"21","tract_comm":"29","objectid":"618","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890961.56722728","census_tra":"292200","tract_ce_3":"41.85665861","tract_crea":"","tract_ce_2":"-87.71573263","shape_len":"8821.90697338"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71960251130056,41.8529757405071],[-87.71988850987394,41.85287373458061],[-87.71988667321897,41.852973985534135],[-87.71988558159775,41.85303356502514],[-87.71989298994617,41.85329027561767],[-87.71989800782688,41.853464152181814],[-87.71990984934605,41.85387446871835],[-87.71991220760256,41.85395618674038],[-87.71991469075208,41.85404223642061],[-87.71991682401031,41.85411623308419],[-87.71993777656274,41.85493901941433],[-87.71993953654626,41.85504259719864],[-87.71994174724011,41.85517268694216],[-87.71997144761508,41.85609036145616],[-87.71999795841509,41.85701537340008],[-87.72000014045439,41.85709496088999],[-87.72000313044458,41.85720401396341],[-87.72002764908,41.858087878644895],[-87.72004811449773,41.85883508491393],[-87.72006603849474,41.85892074111566],[-87.71988626303599,41.85892368335944],[-87.71947438130692,41.85892581911916],[-87.71908347419605,41.85892784494322],[-87.71888152679746,41.85893141237079],[-87.71874958799411,41.85893374266501],[-87.71827072908239,41.85893917158169],[-87.7178797877923,41.85894360203525],[-87.7176837465048,41.85894589218979],[-87.71766219122776,41.8589461440976],[-87.7175078121565,41.85894794734138],[-87.71706962026133,41.858951611511735],[-87.71658612598534,41.858955652592954],[-87.7164261934594,41.85895887846833],[-87.71626809231125,41.858962067308184],[-87.71582337069253,41.85896521441346],[-87.71570427944619,41.85896605703487],[-87.71545082424812,41.85896785458471],[-87.71520645689787,41.8589744705562],[-87.7150331154365,41.85897916322407],[-87.71459908327522,41.858983033282534],[-87.7141811764687,41.858986757840796],[-87.71398634201721,41.85898827705267],[-87.71384820206033,41.85898935339134],[-87.71337895215277,41.858993969879],[-87.71294030561728,41.85899828379069],[-87.71277067277151,41.85900045600975],[-87.71265093050823,41.85900198926296],[-87.71216032987238,41.85900705564016],[-87.71169508286707,41.85901185813854],[-87.71155166676077,41.85901481892315],[-87.71139599293332,41.85901803258266],[-87.7109404409877,41.85901844294264],[-87.71052297447784,41.85901881763537],[-87.71033304716586,41.85902520883278],[-87.71032935526313,41.85891085122223],[-87.71028783287835,41.857379714055625],[-87.71028327340196,41.857193079456415],[-87.71028006645703,41.8570620171173],[-87.71027434297034,41.856856667208014],[-87.71026932800834,41.85667672666126],[-87.71026489279289,41.85651723370936],[-87.71025973713286,41.856369680409],[-87.71025628566302,41.85627088893753],[-87.71035925358812,41.85623500456297],[-87.71122799361041,41.85592557812685],[-87.71139126556241,41.85586838563131],[-87.71159244694206,41.855797912564114],[-87.71258530414246,41.85543700946488],[-87.71275662707798,41.855374732530855],[-87.71362369677541,41.8550762284663],[-87.71381339850225,41.855009926138784],[-87.71406614520505,41.85492158839574],[-87.71480089586514,41.85466676373402],[-87.71508264886334,41.85456783178449],[-87.71529984400674,41.85449156705227],[-87.71574880813093,41.854337960207786],[-87.71598859144723,41.854255889671236],[-87.71628818478071,41.85411410653525],[-87.7162864868895,41.854017628422035],[-87.71628392004669,41.853927617154106],[-87.71681991408207,41.85391986813738],[-87.71694455863494,41.8539166282229],[-87.71714867791175,41.85380580350205],[-87.71751253555747,41.853684756988045],[-87.71762557473312,41.8536820883054],[-87.71797515164715,41.85354892606255],[-87.7181903041526,41.85347400769694],[-87.7185282589825,41.85335463070242],[-87.71872261204412,41.8532862323241],[-87.7189467174929,41.85320736260562],[-87.71920621347753,41.853116598159204],[-87.71960251130056,41.8529757405071]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3561491.14619","perimeter":"0.0","tract_cent":"1150684.49390642","census_t_1":"17031292400","tract_numa":"19","tract_comm":"29","objectid":"619","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890430.9692041","census_tra":"292400","tract_ce_3":"41.8552382","tract_crea":"","tract_ce_2":"-87.72240427","shape_len":"7998.24396874"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72006603849474,41.85892074111566],[-87.72004811449773,41.85883508491393],[-87.72002764908,41.858087878644895],[-87.72000313044458,41.85720401396341],[-87.72000014045439,41.85709496088999],[-87.71999795841509,41.85701537340008],[-87.71997144761508,41.85609036145616],[-87.71994174724011,41.85517268694216],[-87.71993953654626,41.85504259719864],[-87.71993777656274,41.85493901941433],[-87.71991682401031,41.85411623308419],[-87.71991469075208,41.85404223642061],[-87.71991220760256,41.85395618674038],[-87.71990984934605,41.85387446871835],[-87.71989800782688,41.853464152181814],[-87.71989298994617,41.85329027561767],[-87.71988558159775,41.85303356502514],[-87.71988667321897,41.852973985534135],[-87.71988850987394,41.85287373458061],[-87.71989094334148,41.85274090941168],[-87.71989304372762,41.852626270053364],[-87.71989432703529,41.85255619258635],[-87.71988936388537,41.85235392909671],[-87.71988353539723,41.852116425206844],[-87.71987389098747,41.85172174555725],[-87.71987214453895,41.85160739216622],[-87.72086889271412,41.85159752663767],[-87.72110237824445,41.85159525800328],[-87.7211142496246,41.85159514263222],[-87.72127011159017,41.85159362809443],[-87.72215410858222,41.85158314829843],[-87.72228123657906,41.85158164056811],[-87.72349639831708,41.85156554323528],[-87.72358952379703,41.8515643087813],[-87.7239243583238,41.8515598712385],[-87.72475861828482,41.85154656052897],[-87.72475892228239,41.85155785862082],[-87.7247614167027,41.85165056258711],[-87.72476514589532,41.85178915057108],[-87.72477503324554,41.85212760751727],[-87.7247862076261,41.85251012462232],[-87.72478546341831,41.852584764598994],[-87.72478453322657,41.85267902506044],[-87.72479815400308,41.85331376259757],[-87.72480174256803,41.8534114773161],[-87.72480486431199,41.85349648362966],[-87.7248090664625,41.8536107494913],[-87.72481470702179,41.85379476864412],[-87.72481626611848,41.853845631357],[-87.72481722465349,41.85387690537025],[-87.72481782574836,41.853896515477466],[-87.724822776358,41.85405802692712],[-87.72482955236717,41.854307406380876],[-87.72483321957742,41.8544116259456],[-87.72483628997468,41.85449888171672],[-87.72484903258604,41.854893299496624],[-87.72484987235632,41.85501382089521],[-87.72485080521533,41.85514775672996],[-87.72486892468856,41.855714597382445],[-87.72489377027044,41.856493550018186],[-87.72490236831325,41.85676374544463],[-87.7249088791934,41.856967563723366],[-87.72490732349151,41.857045680163495],[-87.72490481665544,41.857171550462276],[-87.724927987382,41.85777486143134],[-87.72494379364643,41.85841391900851],[-87.72494449165997,41.8584421328651],[-87.72495503309881,41.85886832655344],[-87.72488242085839,41.8588681361861],[-87.72481355845468,41.8588677875386],[-87.72386429936422,41.85888004290854],[-87.72371829345141,41.85887899303909],[-87.72360206956762,41.85887815708149],[-87.72269102345643,41.85889046840346],[-87.72248890768151,41.85889417108331],[-87.72231138814435,41.85889742303223],[-87.72153129331036,41.858904686261155],[-87.72125543012957,41.8589065040386],[-87.72104773436283,41.858907872285386],[-87.72062744375147,41.858912905080054],[-87.7203199354989,41.85891658610347],[-87.72006603849474,41.85892074111566]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"610393.866042","perimeter":"0.0","tract_cent":"1150390.90411298","census_t_1":"17031292700","tract_numa":"2","tract_comm":"29","objectid":"620","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888636.91830549","census_tra":"292700","tract_ce_3":"41.85032083","tract_crea":"","tract_ce_2":"-87.72352866","shape_len":"3181.13795684"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72452134775352,41.848847847166375],[-87.72468603365903,41.848810641426155],[-87.72470045165507,41.849332637486654],[-87.72471025754619,41.84971354762528],[-87.72474138893008,41.85092274312685],[-87.72474518132015,41.851088383579665],[-87.72474834545572,41.85122659728472],[-87.72475409865233,41.85137860501844],[-87.72475664927032,41.851473394650355],[-87.72475861828482,41.85154656052897],[-87.7239243583238,41.8515598712385],[-87.72358952379703,41.8515643087813],[-87.72349639831708,41.85156554323528],[-87.72228123657906,41.85158164056811],[-87.7222753807824,41.85144681153318],[-87.7222665255606,41.851159802409725],[-87.72226501391613,41.85111080352241],[-87.72225082646658,41.85062525868725],[-87.72224290817385,41.85035428511682],[-87.72223081798113,41.84965786409882],[-87.72222665291724,41.849360844068705],[-87.72344596010595,41.8490880964001],[-87.72373699174385,41.84902309277657],[-87.72452134775352,41.848847847166375]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2929601.35154","perimeter":"0.0","tract_cent":"1150830.00012821","census_t_1":"17031300500","tract_numa":"14","tract_comm":"30","objectid":"621","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1887588.11079772","census_tra":"300500","tract_ce_3":"41.8474342","tract_crea":"","tract_ce_2":"-87.72194449","shape_len":"7812.66124168"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72428599856475,41.844255636869484],[-87.72455325057412,41.8442551615408],[-87.72456502727621,41.84443423103624],[-87.7245684925879,41.84453713191943],[-87.72457446864448,41.844712000749],[-87.72457455193356,41.84471463568529],[-87.7245772674405,41.844800737410395],[-87.72457977396031,41.844880197453136],[-87.72458324598041,41.84501336761013],[-87.72458694455237,41.84516739565506],[-87.72458977155652,41.84528513934187],[-87.72459497573075,41.84546014127018],[-87.72459971799157,41.8455986969052],[-87.7246046653786,41.84573884529758],[-87.7246141530636,41.846007888428225],[-87.72461520587599,41.846084564650994],[-87.72461762664928,41.84626092805138],[-87.7246212569673,41.84638128329861],[-87.72462629317303,41.846562404012424],[-87.72463061536322,41.84672979961377],[-87.72463313282067,41.84686301955333],[-87.72463628615388,41.84699498049812],[-87.72464007240367,41.847153097633],[-87.72464007535369,41.84720672057297],[-87.72464730721907,41.84784567847447],[-87.72465233410574,41.847909745258804],[-87.72466593984528,41.84808315604819],[-87.72468235070036,41.848677309976246],[-87.72468375119348,41.84872800367173],[-87.72468436102353,41.84875009218768],[-87.72468603309409,41.84881062358545],[-87.72468603365903,41.848810641426155],[-87.72452134775352,41.848847847166375],[-87.72373699174385,41.84902309277657],[-87.72344596010595,41.8490880964001],[-87.72222665291724,41.849360844068705],[-87.72223081798113,41.84965786409882],[-87.72224290817385,41.85035428511682],[-87.72225082646658,41.85062525868725],[-87.72226501391613,41.85111080352241],[-87.7222665255606,41.851159802409725],[-87.7222753807824,41.85144681153318],[-87.72228123657906,41.85158164056811],[-87.72215410858222,41.85158314829843],[-87.72127011159017,41.85159362809443],[-87.7211142496246,41.85159514263222],[-87.72110237824445,41.85159525800328],[-87.72086889271412,41.85159752663767],[-87.71987214453895,41.85160739216622],[-87.71987050417563,41.85149999110398],[-87.71986013795603,41.85113308031235],[-87.719830624237,41.850088403982184],[-87.7198264261801,41.84989729141176],[-87.71982642513157,41.84989724749794],[-87.71982518988459,41.849841029891465],[-87.71982360451402,41.849768868442766],[-87.71982215654522,41.84970295476701],[-87.71981998373758,41.849604039653116],[-87.7197885156222,41.84853377359385],[-87.71978623345181,41.84843993476259],[-87.71977681647192,41.84805269659259],[-87.71977585740647,41.84798448252251],[-87.71977441297221,41.84788171612793],[-87.71975591720916,41.8471807323339],[-87.71975417246438,41.84710382846045],[-87.71974870674025,41.84690379756814],[-87.71974400854869,41.84672330965601],[-87.71973879348299,41.84652393843827],[-87.71973251529086,41.84628987403145],[-87.71972774457218,41.84616526332842],[-87.71971735996266,41.845894015234435],[-87.71971405474945,41.84576748697574],[-87.71970993962731,41.84561049304847],[-87.71970602346532,41.84545956500508],[-87.71970219223067,41.84531511387653],[-87.71969833243908,41.845169811869575],[-87.71969329025754,41.844994618495406],[-87.71968896732035,41.84484401757402],[-87.71968357895479,41.84465128648541],[-87.71967846171408,41.844441707049754],[-87.71967427479406,41.84431716665868],[-87.71980634992754,41.844316318710696],[-87.71998452007283,41.84431359298696],[-87.72028763682928,41.84430895928766],[-87.72061230017616,41.84430396332987],[-87.7208924936603,41.84429891402812],[-87.72118690804523,41.8442936077802],[-87.72142838004169,41.844291546488755],[-87.72151257889102,41.84429082378051],[-87.72161384264514,41.84428995479415],[-87.72185542707223,41.84428764621967],[-87.72211091651921,41.84428403022073],[-87.72233872676897,41.84428080538704],[-87.72266205678899,41.84427709128593],[-87.72286300928116,41.84427525089254],[-87.72308851782924,41.844273046102565],[-87.7233318288137,41.84426931740079],[-87.72349543828454,41.84426680994323],[-87.7238023700759,41.84426231949646],[-87.72394306129726,41.84426038023132],[-87.72402807065052,41.84425920854732],[-87.72428599856475,41.844255636869484]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3542348.66308","perimeter":"0.0","tract_cent":"1153415.11903182","census_t_1":"17031300700","tract_numa":"20","tract_comm":"30","objectid":"622","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1887839.16438396","census_tra":"300700","tract_ce_3":"41.84807223","tract_crea":"","tract_ce_2":"-87.71245035","shape_len":"8049.16115049"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71098300412396,41.85174316080914],[-87.71088964648952,41.85164513564842],[-87.7107698900263,41.85166729686873],[-87.7105710178307,41.85169821679249],[-87.71038897180489,41.85170483115194],[-87.71012750912085,41.85170646845721],[-87.71011267523696,41.851264524829816],[-87.71011197687561,41.851242732152635],[-87.71008985661963,41.85055248464032],[-87.71007530750094,41.84999436001378],[-87.71007039362202,41.84989049238962],[-87.71006574475763,41.849792220654514],[-87.71004832508777,41.84909124178488],[-87.71002020565514,41.84816542163558],[-87.71001867016565,41.848077008790696],[-87.71001723932943,41.84799460260654],[-87.70998822918465,41.84712813613521],[-87.70998561072079,41.847052270206746],[-87.7099798338247,41.846860963958356],[-87.70997454174079,41.84668777220058],[-87.70996964733156,41.84652654758577],[-87.70995932540886,41.846261439861586],[-87.7099526380828,41.84608967823226],[-87.70994800251685,41.845928262906405],[-87.70994199712314,41.84571892528928],[-87.70993655266648,41.84553876223772],[-87.70993068935933,41.84536016113759],[-87.70992292288143,41.845128091431086],[-87.70991620724232,41.8449125753337],[-87.70991160413149,41.8447213299937],[-87.709910510052,41.84445011990311],[-87.71024157877326,41.844445346101956],[-87.71051882690514,41.84444173863901],[-87.71063307615896,41.84444025188275],[-87.71090384889716,41.84443686222779],[-87.71113108640765,41.844433691924586],[-87.71140965065908,41.844429805409256],[-87.71174106274027,41.84442532991585],[-87.71176796811534,41.84442496646132],[-87.71199205428903,41.84442192531623],[-87.71234969290401,41.844412928533615],[-87.71261607834974,41.84440622678464],[-87.71281436887583,41.84440647468129],[-87.71296040821923,41.84440565022355],[-87.71324654109638,41.84440403396428],[-87.71356785001323,41.84440035678504],[-87.7139569581218,41.844395902179386],[-87.7141791653465,41.84439355191015],[-87.71425253752885,41.8443927756123],[-87.71448385051252,41.84439004298406],[-87.71478659341268,41.84438516684837],[-87.71479269473873,41.84461006779927],[-87.71479798823115,41.84479588304056],[-87.71480373832269,41.84499907193058],[-87.71481012878007,41.845219608014425],[-87.71481629205648,41.84542944050881],[-87.71482235161822,41.84563861299005],[-87.71482910217955,41.84587130835338],[-87.71483611490213,41.846057736549014],[-87.71484110109004,41.84622064426306],[-87.71484814710534,41.84645083485669],[-87.71485106408166,41.846582383140145],[-87.71485756421473,41.846791558499476],[-87.71486389466287,41.84699549139331],[-87.71486843607588,41.847154518491436],[-87.71489176089334,41.847931956741924],[-87.71489415977881,41.84803301617989],[-87.71489632999277,41.8481244365321],[-87.71490126192082,41.84830500761823],[-87.71490260535175,41.8483541928716],[-87.71494096678224,41.84975866588991],[-87.71494244396027,41.849811308798124],[-87.7149435817683,41.849851857011615],[-87.7149447876171,41.84989482987262],[-87.71494643170162,41.8499534281788],[-87.7149639287711,41.850488370049995],[-87.71497572786448,41.85084909767157],[-87.71497659893033,41.85087572883773],[-87.714977605822,41.85090651198013],[-87.71498009652244,41.85098266137018],[-87.71498009709263,41.85098267838768],[-87.71498292442695,41.8510691123384],[-87.71498422363062,41.85112331877978],[-87.71499428829526,41.85154318985746],[-87.71499858333924,41.85166332876419],[-87.71477231231648,41.85166370258603],[-87.71389654648358,41.85167432308092],[-87.71377804177824,41.85167656536315],[-87.71362701198102,41.851679412501795],[-87.71349411644705,41.85168192152155],[-87.7130184200637,41.85168610418006],[-87.71274116613118,41.851688530706056],[-87.71256225190267,41.851690143434624],[-87.71242151310969,41.85170667151403],[-87.71234621903407,41.85172320641123],[-87.71216576196512,41.85176283576399],[-87.71175024456292,41.8518558402286],[-87.71151692070877,41.851908063721254],[-87.711142937823,41.85199113790176],[-87.71113607539127,41.851929905072005],[-87.7111010774821,41.85186713698339],[-87.71105597157617,41.85181977583561],[-87.71104187578574,41.85180497567799],[-87.71101154555687,41.85177312911741],[-87.71098300412396,41.85174316080914]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5718296.57818","perimeter":"0.0","tract_cent":"1161588.14649951","census_t_1":"17031284200","tract_numa":"19","tract_comm":"28","objectid":"624","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893244.37613725","census_tra":"284200","tract_ce_3":"41.8627386","tract_crea":"","tract_ce_2":"-87.68230449","shape_len":"9776.25046651"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6848220094617,41.858606960523566],[-87.68581099434908,41.858415235211496],[-87.68583053050972,41.859237668950975],[-87.68583387730081,41.85936589919852],[-87.68583720221129,41.85949327914924],[-87.68584649536412,41.859828108009744],[-87.68585867629575,41.8602669972002],[-87.68587113812247,41.86071600902905],[-87.68587597366984,41.86089004926074],[-87.68588441368526,41.86117385313014],[-87.68589214632924,41.86143386002983],[-87.68590206398133,41.861720800377896],[-87.68590808404063,41.86195349226038],[-87.68591389607056,41.862178169461785],[-87.68592114909347,41.86242354700744],[-87.68592783160821,41.8627109630336],[-87.68593615872531,41.8629951500955],[-87.68594601065355,41.863321102038626],[-87.68594977915816,41.863413020127126],[-87.68595231519552,41.86349508323584],[-87.68595468134063,41.863593478912605],[-87.68595968443336,41.8638015663143],[-87.68596155237509,41.8640081974982],[-87.68597673995225,41.864405980391204],[-87.68598398664075,41.86463783055351],[-87.68598880658031,41.864792028523745],[-87.68599217157089,41.864899648853616],[-87.68600568302155,41.86533191338396],[-87.68600830343134,41.86541574149497],[-87.68601603684019,41.86566880002693],[-87.68602398007346,41.865993577767156],[-87.68603133184043,41.866393045231945],[-87.68603841451899,41.86661254415211],[-87.68553635977769,41.86661915251212],[-87.68519968353348,41.866624388033536],[-87.6848575361308,41.866629488491284],[-87.68462551260741,41.866632946556436],[-87.68427965405874,41.86663762010141],[-87.68375610491485,41.866644692507364],[-87.68358954951869,41.86664694190474],[-87.68331658097698,41.86665062807731],[-87.68296215825943,41.866657211047595],[-87.68261833165974,41.866661547789484],[-87.6821210148803,41.86666869056733],[-87.6817306238185,41.86667424250356],[-87.68153630748631,41.8666770062238],[-87.68141062176971,41.866678793127655],[-87.6811423324227,41.86668186786819],[-87.68094944981966,41.86668407781199],[-87.68065272589178,41.86668842924276],[-87.68028238517823,41.866694124230044],[-87.68002732809691,41.866698045761055],[-87.67969133677386,41.86670447649885],[-87.679411095913,41.86670889109006],[-87.6791061869155,41.86671302726394],[-87.67899592272481,41.86671493312757],[-87.67891641937523,41.866716307526104],[-87.6788929194809,41.86671664206029],[-87.67869199398983,41.86671873843901],[-87.67869096637122,41.86661589090096],[-87.67869065474513,41.866584683956276],[-87.6786867810591,41.866463094237254],[-87.6786818669996,41.86630882304486],[-87.67867799770401,41.86614617740501],[-87.67867347135703,41.86600180336583],[-87.67866784667603,41.86580999084858],[-87.67866453812249,41.865697140388576],[-87.67865891698894,41.86543481265565],[-87.67865704262267,41.865353828396564],[-87.67865504454203,41.86526744603425],[-87.67864971248622,41.86509913804139],[-87.67864467191578,41.86490611147236],[-87.67864010336443,41.8647311612396],[-87.67863533140867,41.86458719767625],[-87.67861927660473,41.86399816410916],[-87.67857298288047,41.86319730283771],[-87.67856619859728,41.86307993412761],[-87.67856559151419,41.862959526518814],[-87.67860242370797,41.86227298686856],[-87.67859239843104,41.86123148533895],[-87.67858985693223,41.86096351273683],[-87.67858841910625,41.860811934666096],[-87.67857497243722,41.85943115420868],[-87.67857950382748,41.859301856712776],[-87.67857067790139,41.859042474487886],[-87.68106194907473,41.85889695027705],[-87.6811686734674,41.85889071492295],[-87.68120420699891,41.858888638959485],[-87.68131583600005,41.85888211682567],[-87.68151610905528,41.85886640279997],[-87.6848220094617,41.858606960523566]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1326587.90081","perimeter":"0.0","tract_cent":"1157194.17153719","census_t_1":"17031290200","tract_numa":"8","tract_comm":"29","objectid":"625","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895074.20171955","census_tra":"290200","tract_ce_3":"41.86785014","tract_crea":"","tract_ce_2":"-87.69838463","shape_len":"4649.95882159"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.700363856052,41.86646058330246],[-87.70078783815805,41.86645568239918],[-87.70079696208934,41.866739782394795],[-87.70080005101343,41.86692177086406],[-87.70080203286379,41.866981727802724],[-87.7008080542819,41.86716388554462],[-87.7008129539049,41.86736330998167],[-87.7008186900947,41.86761567566422],[-87.70082139270673,41.8677363004772],[-87.70082649296155,41.86794889841386],[-87.70082993434725,41.86804672254586],[-87.70084220253322,41.86827971215001],[-87.70085090138161,41.86844491934913],[-87.70085318449927,41.86855596439174],[-87.70085234500853,41.86864857829942],[-87.70085599219296,41.868757897854735],[-87.70085744632505,41.86880148871194],[-87.70085792659998,41.86881444532721],[-87.7008614931213,41.868910644712095],[-87.70086129485684,41.86908894292448],[-87.7008690101115,41.869188535917615],[-87.70060798464509,41.86919108827207],[-87.7004771861579,41.869193194160644],[-87.7002391622325,41.869197178688715],[-87.70005431586992,41.86919967220276],[-87.69986139568414,41.869201819017604],[-87.69966942829733,41.869204107978064],[-87.69946894320579,41.86920645937634],[-87.69926874655438,41.86920930625692],[-87.69910721586085,41.86921156994325],[-87.69889163395159,41.869214632794524],[-87.69870018411375,41.869216593683426],[-87.6984258978343,41.8692176256932],[-87.69826003190053,41.869218249228396],[-87.69799108701676,41.86922293654024],[-87.69775989879045,41.86922621279685],[-87.69755992884312,41.8692283990578],[-87.69739822275923,41.86922986381036],[-87.69724812004958,41.86923117388564],[-87.69713774619882,41.869232125913555],[-87.69697618559324,41.86923372809027],[-87.69665283782739,41.86923756168384],[-87.69630613422407,41.86924192343892],[-87.6959790123305,41.86923250278863],[-87.69597764067309,41.86906891441783],[-87.69597348214876,41.8689302613183],[-87.6959713688302,41.86887234723772],[-87.69597126867446,41.86886960462493],[-87.69596925464786,41.86881440955117],[-87.69596594368377,41.86872367744313],[-87.69596149287054,41.86849906311937],[-87.6959562245335,41.86833232026301],[-87.69595205151283,41.86820027138323],[-87.69594578230488,41.868033056714594],[-87.69593903965487,41.86783219487346],[-87.69593317809768,41.86763292958183],[-87.69593300364592,41.867626726601976],[-87.69592827848282,41.867437099938265],[-87.69592384767942,41.86725117964364],[-87.69591856345865,41.867088306333194],[-87.69591602875668,41.867013539356506],[-87.69591319702569,41.86693001546462],[-87.69591302909926,41.866893626008554],[-87.69591238161796,41.866753390795836],[-87.69590748902417,41.86651066598562],[-87.69624899836197,41.866506381977125],[-87.69668453518516,41.86650179961993],[-87.69695860963407,41.86649700683547],[-87.69712871455651,41.866495702556044],[-87.69727524784484,41.86649457895224],[-87.6976356180146,41.866487775885815],[-87.697877441515,41.86648466848082],[-87.69811117632676,41.86648275074198],[-87.6983470703064,41.866481529705574],[-87.69851871300742,41.866480640763214],[-87.69886429811613,41.86647648566631],[-87.6991067021467,41.86647406466869],[-87.69943398689713,41.86647164571858],[-87.69957376920436,41.86647012159867],[-87.70005061357499,41.86646492125957],[-87.700363856052,41.86646058330246]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1768581.389","perimeter":"0.0","tract_cent":"1154529.74743328","census_t_1":"17031290400","tract_numa":"7","tract_comm":"29","objectid":"626","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895184.20190639","census_tra":"290400","tract_ce_3":"41.86820565","tract_crea":"","tract_ce_2":"-87.70816331","shape_len":"5316.28824479"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71011343040185,41.86635481919212],[-87.71054277813846,41.86634913394022],[-87.71055138857872,41.86663392555998],[-87.71055611926542,41.86680469871109],[-87.710557526503,41.8668553106635],[-87.71056199769184,41.86701609304142],[-87.71056622183433,41.867193669184026],[-87.71056950012465,41.86727808758982],[-87.71057049614427,41.86730373722076],[-87.71057779475319,41.867491675588326],[-87.71058290735319,41.86765715437435],[-87.71058531442569,41.86772689891483],[-87.71059004796889,41.86786712850461],[-87.71059413933246,41.86798273837923],[-87.71060014265142,41.868167324180476],[-87.71060771204024,41.86840004855628],[-87.71061367762931,41.868568440848875],[-87.71061540367742,41.8686252126184],[-87.71061782512984,41.86870486836981],[-87.71061876131836,41.868735665065515],[-87.71061876321977,41.86873573395658],[-87.71062030147161,41.86878715368673],[-87.71062582505374,41.86897185294188],[-87.71063291490643,41.86917005801769],[-87.71063999993689,41.869431184664194],[-87.71064817153055,41.869663584862735],[-87.71065407114125,41.869797179908424],[-87.71065978966098,41.87000410369398],[-87.71022340150577,41.87000911503028],[-87.70994496351237,41.87001188501897],[-87.70972005659017,41.870014615710296],[-87.70948754467967,41.87001785350113],[-87.70913165067678,41.870023054768495],[-87.70876779483416,41.870027662783464],[-87.70849545801701,41.8700298312593],[-87.70821411201862,41.8700331674017],[-87.70802750540481,41.8700353798609],[-87.70782536538132,41.87003773683413],[-87.70760831603012,41.87004039641547],[-87.70721336001695,41.870045269134074],[-87.70689573487988,41.87004924509049],[-87.70641874034906,41.87005582591132],[-87.70634956153884,41.8700565830066],[-87.70614966146637,41.87005889437365],[-87.70603428945581,41.87006021267354],[-87.70583961521346,41.870054396950124],[-87.70578982010883,41.87005290916364],[-87.7057806813826,41.86987043422447],[-87.70577728610107,41.869782133069265],[-87.70577376475939,41.86963164646092],[-87.70576540599623,41.86945772493971],[-87.70576270188255,41.86929876304744],[-87.70575619374618,41.8691330846612],[-87.70574985616902,41.86897174257264],[-87.7057480616406,41.868921248117935],[-87.70574556643278,41.868851026887995],[-87.70574265733116,41.86875724590457],[-87.70574265402342,41.86875713364655],[-87.70574051417731,41.86868815558209],[-87.70573520063975,41.868544492066334],[-87.70573177820228,41.868383907113646],[-87.70572715874042,41.86822483949878],[-87.70572233062327,41.868058579148915],[-87.70571862685006,41.86794928274057],[-87.70571276552464,41.86779782280671],[-87.70570856866048,41.867686767376235],[-87.70570496342424,41.86758954621454],[-87.70569728710316,41.86736090793986],[-87.70569103173545,41.86718968720944],[-87.70568642396769,41.86692884814811],[-87.70567756959679,41.866711811602265],[-87.70566919977607,41.86640530705485],[-87.70587555243699,41.86640139316662],[-87.70627392028399,41.86639824508184],[-87.70645448858674,41.866396882853905],[-87.70654407540188,41.86639617971558],[-87.70688293713894,41.86639243031551],[-87.70692680154741,41.86639194399213],[-87.70717325896166,41.866389211112995],[-87.70748858238626,41.86638599021006],[-87.70778004007326,41.86638299520354],[-87.7081021251495,41.86637903172372],[-87.70834585655523,41.86637603176015],[-87.70866933564467,41.86637224826117],[-87.70894504497379,41.86636908231187],[-87.70932330527215,41.866364784957746],[-87.70957735074757,41.86636189797075],[-87.70987689434037,41.86635795362641],[-87.71011343040185,41.86635481919212]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1182117.10737","perimeter":"0.0","tract_cent":"1150574.53494697","census_t_1":"17031290700","tract_numa":"6","tract_comm":"29","objectid":"627","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1894855.50086977","census_tra":"290700","tract_ce_3":"41.86738178","tract_crea":"","tract_ce_2":"-87.72269237","shape_len":"4471.65311505"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72481312132535,41.866177260096165],[-87.72517048968574,41.866172129968675],[-87.72518703373044,41.86627508845479],[-87.72519700512835,41.86663487963106],[-87.72520525418238,41.86693251636434],[-87.72521640907888,41.86708062908154],[-87.72522508114123,41.867195767951515],[-87.725234205949,41.86753846391585],[-87.72524204932652,41.867838177774075],[-87.72524527220288,41.86799242989981],[-87.72524856578853,41.86815006935453],[-87.72526477844175,41.86834148488305],[-87.72526846329463,41.868444166945366],[-87.72526932880352,41.8684682869365],[-87.72527122013703,41.86852099568753],[-87.725271389489,41.868525711761755],[-87.7251466606988,41.86852702305349],[-87.72479080172698,41.868530763162234],[-87.7246740385242,41.86853199018686],[-87.72383685845925,41.868541820380834],[-87.72313845661736,41.86855183305503],[-87.72293538802164,41.86855404539806],[-87.72281112684081,41.86855539889972],[-87.72267835365477,41.86855684504347],[-87.72252893539373,41.868558472268795],[-87.72203763873752,41.8685646398857],[-87.72131575584406,41.86857286993551],[-87.7206305755558,41.86858238896293],[-87.72037886739602,41.86858512323692],[-87.7201960612297,41.868587108744514],[-87.72019546828335,41.86857266339391],[-87.72019406901688,41.86853248361379],[-87.72019076312047,41.868437560058005],[-87.7201878911191,41.86830011248464],[-87.72018556561578,41.86816694886205],[-87.72018036242173,41.86805134874147],[-87.72017463293167,41.86792405144363],[-87.7201685189331,41.867764879497415],[-87.72015226325998,41.86732969117437],[-87.72014802652876,41.8671377082236],[-87.72014478223478,41.86699070835017],[-87.72012782270903,41.866452634092546],[-87.72012320064557,41.866239745789784],[-87.72077619701238,41.866231248556126],[-87.7209028362814,41.86622960010492],[-87.72151587278626,41.86622161718721],[-87.72273533886575,41.86620572770308],[-87.7237635009746,41.86619232159851],[-87.72394742176621,41.86618968263461],[-87.72481312132535,41.866177260096165]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3544220.14618","perimeter":"0.0","tract_cent":"1154588.53919431","census_t_1":"17031291300","tract_numa":"24","tract_comm":"29","objectid":"628","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893184.13050907","census_tra":"291300","tract_ce_3":"41.86271606","tract_crea":"","tract_ce_2":"-87.70800096","shape_len":"7994.58895353"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71014864190495,41.85903141398058],[-87.71033304716586,41.85902520883278],[-87.71036161462217,41.85991012810181],[-87.71037696314548,41.86048842636926],[-87.71038450983798,41.860773650501194],[-87.71038695672573,41.86086289219231],[-87.71039543485921,41.861168498562215],[-87.71040161349518,41.86138670049012],[-87.71040779216415,41.86160490240971],[-87.71041511255764,41.86186342391614],[-87.71041909110674,41.86200285345009],[-87.71042226131246,41.86211497351962],[-87.71042674503217,41.862273313987764],[-87.71043274555642,41.86245409450308],[-87.71043966903656,41.862662711715245],[-87.71043998066374,41.86284998171593],[-87.71044154822536,41.86290762508313],[-87.71044863808183,41.86316836208923],[-87.7104524168422,41.86331613331942],[-87.71045837486481,41.86354575007122],[-87.71046416513072,41.86376995972029],[-87.71047028426004,41.86401324371976],[-87.710475690708,41.86413240117108],[-87.71048540562278,41.86434650577893],[-87.7104907806174,41.864519368127965],[-87.71049637332574,41.864699229503046],[-87.71050075706859,41.86486415556819],[-87.7105066319156,41.86507585182033],[-87.71050935545026,41.86519592774538],[-87.71051681396183,41.86552467504124],[-87.71052323845548,41.865725177690145],[-87.71052713813928,41.86584773008318],[-87.71053015865321,41.86594269739843],[-87.71053565858783,41.86611363939745],[-87.71054277813846,41.86634913394022],[-87.71011343040185,41.86635481919212],[-87.70987689434037,41.86635795362641],[-87.70957735074757,41.86636189797075],[-87.70932330527215,41.866364784957746],[-87.70894504497379,41.86636908231187],[-87.70866933564467,41.86637224826117],[-87.70834585655523,41.86637603176015],[-87.7081021251495,41.86637903172372],[-87.70778004007326,41.86638299520354],[-87.70748858238626,41.86638599021006],[-87.70717325896166,41.866389211112995],[-87.70692680154741,41.86639194399213],[-87.70688293713894,41.86639243031551],[-87.70654407540188,41.86639617971558],[-87.70645448858674,41.866396882853905],[-87.70627392028399,41.86639824508184],[-87.70587555243699,41.86640139316662],[-87.70566919977607,41.86640530705485],[-87.7056646758728,41.86623964710959],[-87.70565706911083,41.86600016935508],[-87.70565473399714,41.86592181856075],[-87.70565270186059,41.86585362974853],[-87.70564817314475,41.865701079338464],[-87.70564377324243,41.865554127907416],[-87.70563589396815,41.86528997778504],[-87.70562804259532,41.86502673368115],[-87.70562157208865,41.86480998424054],[-87.70561444153012,41.86457360619345],[-87.70561154147532,41.86447746814679],[-87.7056090413795,41.86439459993439],[-87.70560336755375,41.86414895836583],[-87.70559859046723,41.863943003344716],[-87.70559422467349,41.86375505287925],[-87.705590052518,41.86357357990878],[-87.70558565601559,41.86338269263539],[-87.70558250266976,41.86324576476446],[-87.70557112922482,41.862962292339496],[-87.70556455741493,41.8627984902112],[-87.70556342071752,41.86269326922982],[-87.70555695743997,41.86250963138169],[-87.70555155645447,41.86235618230825],[-87.7055481463398,41.86226461611022],[-87.70554286323251,41.86212276325408],[-87.70554225678225,41.86192854920512],[-87.70553989698125,41.86184812932405],[-87.70553410621781,41.86167441368983],[-87.70552352545339,41.861401329783384],[-87.7055222930803,41.86130480782088],[-87.70551997101445,41.86112296041457],[-87.70551138646522,41.86091102943263],[-87.70551125432328,41.86082505114769],[-87.70549833060251,41.86045307854169],[-87.70549221626916,41.86022186918535],[-87.70548895158792,41.86009841465678],[-87.70548459699096,41.859789277727074],[-87.70546290017715,41.859339128356844],[-87.70546187028043,41.8592042424724],[-87.70545649432086,41.85908385159423],[-87.70571512582374,41.859080323916054],[-87.70607059982851,41.85907634216636],[-87.70648910805251,41.85907165286932],[-87.70655820248452,41.859070767603924],[-87.70667570350534,41.85906893923028],[-87.70681674584111,41.85906674464375],[-87.70728618809896,41.85906015490743],[-87.70774039474215,41.859053777192486],[-87.70789364098583,41.859052664505384],[-87.70804058459773,41.85905159743197],[-87.70849978587391,41.85904678810002],[-87.70898545727896,41.85904169931404],[-87.7091116420101,41.859041232623284],[-87.70928589398592,41.85904058790063],[-87.70971931029388,41.85903597990935],[-87.71014864190495,41.85903141398058]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5042130.80917","perimeter":"0.0","tract_cent":"1158875.2852647","census_t_1":"17031291500","tract_numa":"27","tract_comm":"29","objectid":"629","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893211.93250373","census_tra":"291500","tract_ce_3":"41.8627056","tract_crea":"","tract_ce_2":"-87.692264","shape_len":"8952.1337196"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69516830231265,41.8592268711881],[-87.69569178453469,41.85922132670341],[-87.69569534457976,41.85933657754058],[-87.69570126444704,41.85953883441673],[-87.69570577924621,41.859694075191314],[-87.69571076270805,41.8598649600029],[-87.6957183026353,41.860122387056244],[-87.69572353626589,41.860301093276654],[-87.69572815820587,41.86044189928776],[-87.69573294143126,41.86058860634165],[-87.69573636179442,41.86069512991479],[-87.6957386881197,41.860771213611315],[-87.69574029087933,41.86082435130849],[-87.69574514691863,41.86098590518189],[-87.69575068079759,41.86117464137613],[-87.69575486173568,41.86131724240451],[-87.69575906735962,41.86146068577842],[-87.69576365529682,41.8616171593509],[-87.69577077786278,41.86185358907867],[-87.69577521669856,41.86200172119643],[-87.69578248889768,41.86222679052085],[-87.6957872962262,41.86237478746148],[-87.69579291796659,41.86257295418112],[-87.6957984172527,41.86276678374186],[-87.69580333003624,41.86293739391605],[-87.69580810127454,41.86310377714651],[-87.69581395600325,41.86330529285034],[-87.69581934244194,41.86348369932127],[-87.69582411810762,41.8636422891508],[-87.69583038126272,41.86384331286207],[-87.69583710722608,41.8640568806531],[-87.69584380032914,41.86427006433233],[-87.69584897754496,41.86446581302467],[-87.69585298578444,41.864625094235045],[-87.69585371572096,41.86465409517586],[-87.69585814433161,41.86484393982741],[-87.69586216741418,41.865015478320785],[-87.69586728556654,41.865209827089856],[-87.69587100263544,41.865353042897844],[-87.69587655145465,41.865563173780146],[-87.69587886992255,41.86563634296916],[-87.69588583084031,41.86585603717029],[-87.6958912157619,41.86598658376688],[-87.69589821227474,41.86614707911245],[-87.69590254433375,41.86626535304479],[-87.69590748902417,41.86651066598562],[-87.69557856943057,41.86651479084387],[-87.69521812502482,41.8665179478875],[-87.6949055816108,41.866522111038286],[-87.69470106529376,41.86652375196386],[-87.69437422564957,41.86652637340366],[-87.6940339666368,41.866530242767624],[-87.6937177247852,41.866533393892],[-87.69342762132419,41.8665370119627],[-87.69306212973234,41.86654156853771],[-87.69280911449364,41.86654405480729],[-87.69244467413881,41.866546604565634],[-87.69218716966105,41.86654989043321],[-87.69184022487903,41.86655431668928],[-87.69150030859228,41.86655689066088],[-87.69135003119492,41.86655818519886],[-87.69117184423791,41.866559719757866],[-87.69101039442708,41.86656151258022],[-87.69075383700275,41.86656436062651],[-87.6887827750342,41.86377814273752],[-87.68818200589305,41.86305682781019],[-87.68811623724487,41.861144431261366],[-87.6882145486096,41.86114319427585],[-87.68821229892319,41.86104751716422],[-87.6882040276743,41.86072913677097],[-87.68820114616754,41.86060494328553],[-87.68819538354828,41.86035655603428],[-87.68821493192466,41.859506810060196],[-87.68818900651269,41.85941787566455],[-87.68816891319597,41.859337846204575],[-87.6882372904218,41.85933736832116],[-87.68828972746297,41.85933700175076],[-87.6883363185445,41.85933667614601],[-87.6885488789111,41.85933518032229],[-87.68867177882436,41.85933234084981],[-87.69076371704627,41.859283986797706],[-87.69097987338412,41.859278988730445],[-87.69131892627674,41.85927814029754],[-87.6916498401044,41.85927625745715],[-87.69190990181941,41.85927474610013],[-87.69224825400784,41.8592705432913],[-87.6925236827699,41.85926675653511],[-87.69276819657831,41.85926356536274],[-87.69299789228411,41.85926281522067],[-87.69321352151432,41.85925808470997],[-87.69342579258029,41.859253427290724],[-87.69369509007895,41.85924971333334],[-87.69376367073015,41.85924884854733],[-87.69401060680633,41.85924573462944],[-87.69422223380212,41.85924208258794],[-87.69444986473827,41.859238546626614],[-87.69474207684115,41.859233997190735],[-87.69497929834594,41.85922949813033],[-87.69502372419004,41.85922888088196],[-87.69516830231265,41.8592268711881]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"884020.197551","perimeter":"0.0","tract_cent":"1154673.82884367","census_t_1":"17031292000","tract_numa":"8","tract_comm":"29","objectid":"630","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890184.93724894","census_tra":"292000","tract_ce_3":"41.85448424","tract_crea":"","tract_ce_2":"-87.70776808","shape_len":"3987.54786063"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7053097582444,41.85369914117308],[-87.70530651749978,41.853586651323546],[-87.70549579413567,41.85358923529263],[-87.70591524258268,41.85358627766639],[-87.70639044832994,41.85358292584173],[-87.70652519053723,41.85358174798128],[-87.70664373852654,41.85358079554364],[-87.70713384077888,41.853576399247565],[-87.70764824322822,41.85357178252718],[-87.70773968166809,41.853570766341164],[-87.70786365594316,41.8535693883001],[-87.70834300415098,41.85356542745885],[-87.70881665072984,41.853561511550836],[-87.70895739822627,41.85356022627759],[-87.70909167465331,41.853559000063186],[-87.7095669069619,41.8535547688754],[-87.71006214853062,41.8535503575322],[-87.71017814089612,41.85354948774274],[-87.71018275631812,41.85370993181984],[-87.71019156250584,41.854019969321136],[-87.71019441035996,41.8541202345185],[-87.71021569950912,41.85486525195709],[-87.7102291712782,41.85529631103562],[-87.71023125763612,41.855377168242605],[-87.70961900438894,41.855382203699996],[-87.70919809137376,41.855385663863764],[-87.70901272541462,41.85538720525085],[-87.7087969633936,41.855388999280855],[-87.70840545653552,41.85539192598407],[-87.70801710741048,41.85539482738118],[-87.70779552173695,41.8553968545642],[-87.70757331932751,41.85539888674102],[-87.70718310775489,41.855402565242585],[-87.7067284712536,41.855406849242726],[-87.70657632005374,41.855408655721284],[-87.70640438536022,41.8554107612576],[-87.7059636745219,41.855414788932706],[-87.70559235820353,41.855418181045394],[-87.70535838992852,41.855414932455666],[-87.70535408750816,41.85528007715937],[-87.70533738551386,41.85470599652318],[-87.70532291186322,41.85417877554743],[-87.70532082222728,41.854102639724296],[-87.70531699798522,41.85396334323081],[-87.7053097582444,41.85369914117308]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3103903.2776","perimeter":"0.0","tract_cent":"1170548.46153043","census_t_1":"17031282100","tract_numa":"9","tract_comm":"28","objectid":"631","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897128.36831628","census_tra":"282100","tract_ce_3":"41.87320541","tract_crea":"","tract_ce_2":"-87.64929873","shape_len":"7746.28772036"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64707696516467,41.873180725446986],[-87.64705695759052,41.87287969202731],[-87.64704292630348,41.872381942998246],[-87.64702301124024,41.871929549721635],[-87.64701489638212,41.87174522689814],[-87.64699525975118,41.871047799383845],[-87.6469842178162,41.87041773956718],[-87.64698324093928,41.8703619909044],[-87.64696360414071,41.86966456321867],[-87.64696115973432,41.869600136695205],[-87.64706885576092,41.86959575145828],[-87.64768830626356,41.8695878777828],[-87.6482225375915,41.86958527921528],[-87.64884976037273,41.869574552103494],[-87.64922903755031,41.86956582677594],[-87.64934924688804,41.86956306087175],[-87.64985257303327,41.86955448385454],[-87.6503094496523,41.86954562838722],[-87.65068500908444,41.86953918158306],[-87.65112403565512,41.869507725726336],[-87.65112655084174,41.8696721722413],[-87.65112983504906,41.86978704900751],[-87.6511213883844,41.87000182523939],[-87.6511345644216,41.87021890884179],[-87.651136272207,41.8702670289637],[-87.65113938779263,41.870354811844614],[-87.65114350072842,41.87047068803558],[-87.65115547717056,41.870800607451116],[-87.65116141538685,41.87101374817607],[-87.65116668465123,41.8712028571028],[-87.65117402114831,41.87160508345811],[-87.65117915344096,41.871766989465335],[-87.65117919801378,41.87176839149209],[-87.65118266855062,41.87187787879566],[-87.65118268690799,41.87187846589939],[-87.6511885154477,41.87206232727483],[-87.65120033849944,41.872406712536794],[-87.65121053613791,41.87253986967953],[-87.65122131865897,41.87261805532441],[-87.65123999695696,41.87268182128657],[-87.65127781468586,41.87276595483685],[-87.65127016108467,41.87282494171853],[-87.6512324707527,41.872847618613456],[-87.65116807087023,41.87284780909649],[-87.65117344635321,41.87307593630716],[-87.65166807824076,41.87306727887794],[-87.65166558058182,41.873124000549474],[-87.65176566487614,41.87318915546655],[-87.65179582557434,41.87351213892465],[-87.6518100208067,41.874368614094074],[-87.65183455835147,41.875029909706946],[-87.651836530912,41.87511005341677],[-87.65183820208465,41.87517795599683],[-87.65183865302112,41.87519627048192],[-87.65184178617224,41.875323564763505],[-87.65184547010871,41.875473255362394],[-87.65185185737569,41.87572510285148],[-87.65185534551836,41.87581832886033],[-87.65185713204588,41.87586607837129],[-87.65185957120687,41.87593126869569],[-87.65185991035128,41.876006490499165],[-87.65186033974342,41.87610086767595],[-87.65186935577363,41.87646881481551],[-87.65187391881356,41.87660133134636],[-87.65168225390256,41.87660541067475],[-87.65127630876394,41.876610537781666],[-87.65105486189694,41.87661354043976],[-87.6507032242699,41.87661894451772],[-87.65057808672418,41.876620867750766],[-87.6503105949841,41.8766249777693],[-87.65012153362963,41.8766280589969],[-87.65000342476806,41.876629983626735],[-87.64962108323846,41.876636122112046],[-87.64953765829317,41.876637461308924],[-87.64895069086468,41.87664688201648],[-87.6487277384061,41.87665045958025],[-87.64836817590442,41.87665491820748],[-87.64799098595077,41.87665959433518],[-87.64753442162763,41.87666658340441],[-87.64720241487497,41.87667171034357],[-87.64719806762638,41.87649572086565],[-87.64719587646434,41.876433155436224],[-87.64719469287219,41.876399356270866],[-87.64719165435726,41.87631261391155],[-87.64719150455718,41.876307978534165],[-87.64718495855202,41.87610546210143],[-87.64718154517034,41.87599987330945],[-87.64717441722743,41.87577936952066],[-87.64717385913731,41.87576210021301],[-87.64716603911148,41.875520175084574],[-87.64716200298298,41.87539529983982],[-87.64716105295409,41.87536592825848],[-87.64715513220031,41.875182757250165],[-87.64715102867756,41.87505580996352],[-87.64715017843088,41.87502950265332],[-87.64714504742575,41.87485461382352],[-87.64714381820085,41.8746813951241],[-87.64714146678872,41.874619127839644],[-87.6471266381175,41.87433932503053],[-87.64711242763545,41.87384641975675],[-87.64709254462578,41.87353381353364],[-87.6470906584997,41.8734910765303],[-87.64707696516467,41.873180725446986]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1009644.1842","perimeter":"0.0","tract_cent":"1170641.88317985","census_t_1":"17031283400","tract_numa":"1","tract_comm":"28","objectid":"632","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895358.05165586","census_tra":"283400","tract_ce_3":"41.86834549","tract_crea":"","tract_ce_2":"-87.64900755","shape_len":"4033.20755977"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64691834905017,41.86715410132742],[-87.64732510842147,41.86714818511431],[-87.64743675090165,41.86714656076167],[-87.64772100778532,41.86714117792489],[-87.64794789942479,41.86713748279415],[-87.64825847636331,41.86713242035411],[-87.64850560611112,41.86712791179861],[-87.64872254896365,41.8671241558117],[-87.64896578238002,41.867120117004134],[-87.64906094145957,41.86711853390047],[-87.64920747324564,41.86711609593496],[-87.64949814609103,41.86711148759102],[-87.64975231663915,41.86710773205522],[-87.65002088048419,41.86710378689609],[-87.65037963034472,41.86709823693973],[-87.6506139768102,41.867094361332214],[-87.65104650951886,41.867087332397006],[-87.6510552456521,41.8672936915535],[-87.6510581710502,41.86737510339751],[-87.65107342662994,41.8678661403867],[-87.65108158266129,41.868162567839754],[-87.65108664025067,41.86834696619769],[-87.65109010187277,41.868473184931695],[-87.65109918335048,41.868713662874136],[-87.65110805686842,41.8689529867114],[-87.65112079013902,41.869295462634376],[-87.65112403565512,41.869507725726336],[-87.65068500908444,41.86953918158306],[-87.6503094496523,41.86954562838722],[-87.64985257303327,41.86955448385454],[-87.64934924688804,41.86956306087175],[-87.64922903755031,41.86956582677594],[-87.64884976037273,41.869574552103494],[-87.6482225375915,41.86958527921528],[-87.64768830626356,41.8695878777828],[-87.64706885576092,41.86959575145828],[-87.64696115973432,41.869600136695205],[-87.64693944676824,41.86902786994935],[-87.64693529861773,41.868877116440814],[-87.64692272244112,41.8684201550275],[-87.64691834905017,41.86715410132742]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2963188.44129","perimeter":"0.0","tract_cent":"1170692.68985869","census_t_1":"17031283700","tract_numa":"24","tract_comm":"28","objectid":"633","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893593.99650317","census_tra":"283700","tract_ce_3":"41.86350367","tract_crea":"","tract_ce_2":"-87.64887267","shape_len":"7523.42956054"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65048064976051,41.859858219810164],[-87.65082217156701,41.85985296553372],[-87.65082784568249,41.86002633702633],[-87.65083256161536,41.86017044248884],[-87.65083797004918,41.86033569653706],[-87.65084116523123,41.86043325754898],[-87.65084708149712,41.86061393346986],[-87.6508555491809,41.860899172367596],[-87.65086223039891,41.86117780290136],[-87.65086271464332,41.861415348333296],[-87.65087212378035,41.8617128359954],[-87.65087912288627,41.861964378760774],[-87.65088432035407,41.86215225375026],[-87.65089276183834,41.86228089931987],[-87.65090479144577,41.862464232268195],[-87.65090959488836,41.8626132188407],[-87.65091601098311,41.86281078826021],[-87.6509215627785,41.862986069207885],[-87.65092667986136,41.86314699512752],[-87.65093043707536,41.86326663940882],[-87.65093392729361,41.863376869316106],[-87.65093732896881,41.863498706881636],[-87.65094179681451,41.863658723325706],[-87.65094847448033,41.8638696862119],[-87.65095572320504,41.86409945060833],[-87.65096069083573,41.86425027676132],[-87.65096642905483,41.86442185403158],[-87.65096906672926,41.864560481855094],[-87.65097323300301,41.864691039955225],[-87.65097453570904,41.864736667858764],[-87.65098186664908,41.86491728316446],[-87.65098768990691,41.8651153978302],[-87.65099306570349,41.86529344935354],[-87.65099734093084,41.86543258496657],[-87.65099884779875,41.86548162957209],[-87.65100445331765,41.865672607871346],[-87.6510068844227,41.86576161837793],[-87.65101204775644,41.86594930093938],[-87.6510176543429,41.86615054272738],[-87.65102461866859,41.866351847459654],[-87.65102914242384,41.866547896166246],[-87.65103349153483,41.866677505520954],[-87.65103621418346,41.86681506353652],[-87.65103937053401,41.866918705189015],[-87.65104650951886,41.867087332397006],[-87.6506139768102,41.867094361332214],[-87.65037963034472,41.86709823693973],[-87.65002088048419,41.86710378689609],[-87.64975231663915,41.86710773205522],[-87.64949814609103,41.86711148759102],[-87.64920747324564,41.86711609593496],[-87.64906094145957,41.86711853390047],[-87.64896578238002,41.867120117004134],[-87.64872254896365,41.8671241558117],[-87.64850560611112,41.86712791179861],[-87.64825847636331,41.86713242035411],[-87.64794789942479,41.86713748279415],[-87.64772100778532,41.86714117792489],[-87.64743675090165,41.86714656076167],[-87.64732510842147,41.86714818511431],[-87.64691834905017,41.86715410132742],[-87.6469147512016,41.86689333104775],[-87.64691076162505,41.86675834497246],[-87.64690515460678,41.86659980355805],[-87.64689575994194,41.86638295161963],[-87.6468858113903,41.86615638198902],[-87.64688176224254,41.86599749256734],[-87.64687730406797,41.86582254765261],[-87.64687448803689,41.86572200891382],[-87.64686994546608,41.8655632268495],[-87.64686507356988,41.86538866117372],[-87.64685955706224,41.86519247133184],[-87.64685283623865,41.86495247384029],[-87.64684702375529,41.864783373462586],[-87.64684247679419,41.86465109312945],[-87.64683969373047,41.86448570790638],[-87.6468361548663,41.86428115769193],[-87.64683289001873,41.86417268508141],[-87.64682805641972,41.864012090302104],[-87.64682252414194,41.86385665026053],[-87.64681706429172,41.86370466840476],[-87.64681117022783,41.863559681516946],[-87.64680741522135,41.86346731526975],[-87.64680485600817,41.863363375151586],[-87.64679970033336,41.86316241020196],[-87.64679367387642,41.86293540065463],[-87.64678946866606,41.86276676509523],[-87.64678474766477,41.86255949094255],[-87.6467791152462,41.862346752192586],[-87.64677554445854,41.862211848917845],[-87.6467694128533,41.862030060418626],[-87.64676432774739,41.86188428276412],[-87.64675973250701,41.86174226766046],[-87.64675717805255,41.86166332082084],[-87.64675400947864,41.86156539380085],[-87.64675210948373,41.86149465728482],[-87.64675062275863,41.861439302580315],[-87.64674617401445,41.86123020315741],[-87.6467416215286,41.86109675722275],[-87.64673419394907,41.86092295549746],[-87.64672827204419,41.86077648674787],[-87.64672523359391,41.860665888077754],[-87.64672364834993,41.8606081814999],[-87.64672044325606,41.860480047423835],[-87.64671783513744,41.860375789996986],[-87.64671596308446,41.86030055964371],[-87.64671042128734,41.86008082158267],[-87.64670812271163,41.86000068167578],[-87.6467055607459,41.859911363134735],[-87.647127014076,41.85990438610168],[-87.64737768105495,41.859902919739994],[-87.64767323885322,41.85989845518195],[-87.64824217835825,41.859889858024644],[-87.64836200782541,41.859888898770706],[-87.64878856297754,41.85988268783875],[-87.64905327828113,41.85987883172394],[-87.64938646546874,41.85987409270983],[-87.6497970517011,41.85986793331731],[-87.65012025395303,41.85986311573253],[-87.65035982892572,41.859860035154334],[-87.65048064976051,41.859858219810164]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6976329.86828","perimeter":"0.0","tract_cent":"1167270.59635082","census_t_1":"17031283900","tract_numa":"42","tract_comm":"28","objectid":"634","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893493.70976556","census_tra":"283900","tract_ce_3":"41.86330266","tract_crea":"","tract_ce_2":"-87.66143775","shape_len":"10571.4783905"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66590719322703,41.85961130781012],[-87.66619826527122,41.85960733344552],[-87.66620088401915,41.85970488825838],[-87.66620563161594,41.859881724059285],[-87.66620759403797,41.859954801791],[-87.66620982134403,41.86003778397803],[-87.66621255550973,41.860148641679565],[-87.66621381782971,41.860199828538214],[-87.66622377548387,41.86060356594967],[-87.66622443544618,41.86066806415344],[-87.6662273826528,41.86077509923607],[-87.66622930035678,41.86084474829953],[-87.66623135026587,41.860919196184284],[-87.66623297507628,41.860978210108186],[-87.66624204985295,41.86145150615822],[-87.66626733435905,41.862242769820284],[-87.666270812386,41.862359459221715],[-87.66627465623624,41.86248842304749],[-87.66629292883738,41.863149811923286],[-87.66629589916678,41.86326770747508],[-87.66629916634099,41.863397379789895],[-87.66631308687283,41.86405720650102],[-87.66631928322467,41.864173962146744],[-87.66632450701111,41.86427239480324],[-87.66633212581796,41.864631963042186],[-87.66634162744579,41.86508038407077],[-87.66634406339979,41.86519534561741],[-87.66635439351339,41.86553171426897],[-87.66636844304584,41.865989169919814],[-87.6663721238985,41.86610901521324],[-87.66637979354483,41.86632656970175],[-87.66638363838915,41.866435620602864],[-87.66638037565659,41.86667563832876],[-87.66638138489304,41.86677641310763],[-87.66638355148599,41.86686149035225],[-87.66634444032474,41.86686153407108],[-87.66497395200304,41.8668630547725],[-87.66483030836153,41.86686321324747],[-87.66481575319673,41.866863229236785],[-87.66428992072282,41.86687259422944],[-87.66401089242451,41.866876748056484],[-87.66377056633438,41.86688032497962],[-87.66206667483786,41.866910150085616],[-87.66176484316986,41.86691543081664],[-87.66157085628323,41.86691646069182],[-87.66139100738937,41.86691741543907],[-87.66055752117364,41.86693329609175],[-87.65945460959959,41.86695129484504],[-87.65912396262091,41.86695707052055],[-87.65892426100741,41.86696055827205],[-87.65807820366754,41.866974247753284],[-87.65789974816201,41.866976986243806],[-87.65774336021862,41.86697938610433],[-87.65691580533982,41.86699320330401],[-87.65668122584161,41.86699661537042],[-87.65667571750178,41.866806963686905],[-87.65667385016648,41.866605496945944],[-87.65667156150222,41.86635858346564],[-87.65666548829148,41.8662443684475],[-87.65666000823565,41.866141307912216],[-87.6566522907309,41.86599617387522],[-87.65663472386511,41.86540605658085],[-87.65662955808344,41.865236788144756],[-87.65662702940851,41.86515392401216],[-87.65661058038724,41.864489169286784],[-87.6566056959384,41.86431965577254],[-87.6566030819457,41.86422894256256],[-87.65657977572506,41.86342074668206],[-87.65657384369418,41.86323831470507],[-87.65655385309097,41.86251261646896],[-87.65654050641317,41.86202801469183],[-87.65652889460117,41.86160637215317],[-87.65652444030763,41.861444626775274],[-87.6565165025886,41.861047909123535],[-87.65651397695781,41.86092168299443],[-87.65651144968146,41.860795369859986],[-87.6565101750909,41.86073166821838],[-87.65650885419281,41.86066563945033],[-87.65650675676879,41.860583852441586],[-87.65649602688764,41.86027612788011],[-87.65649098496331,41.86013172213795],[-87.65648763626945,41.860035825299725],[-87.65648344299768,41.85991572629566],[-87.65648175105562,41.859856375943814],[-87.65647915506476,41.85976530436828],[-87.65667543074503,41.85976268484597],[-87.65709211404283,41.85975615164373],[-87.65770470835419,41.859746543444174],[-87.65799453906165,41.85974199146012],[-87.65831464080938,41.859735249745846],[-87.65861895477215,41.85972883920067],[-87.65892701630604,41.85972557446332],[-87.65922876312483,41.85972237611715],[-87.65957142982448,41.85971682289863],[-87.65999332626943,41.85970998428273],[-87.66036440152875,41.85970473191299],[-87.66063334918009,41.85969971692417],[-87.6612068065039,41.859690555095014],[-87.6613739003121,41.85968774550611],[-87.66188575322312,41.859679136414556],[-87.66380766126575,41.859646791179415],[-87.66400461315988,41.85964347481219],[-87.66582769542701,41.8596126526113],[-87.66590719322703,41.85961130781012]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3226053.13969","perimeter":"0.0","tract_cent":"1158468.33305147","census_t_1":"17031271900","tract_numa":"21","tract_comm":"27","objectid":"635","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896828.781415","census_tra":"271900","tract_ce_3":"41.87263892","tract_crea":"","tract_ce_2":"-87.69365894","shape_len":"7573.84933247"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69135677454804,41.87603506263558],[-87.6913437924769,41.87572014514808],[-87.69133029266035,41.87539265608746],[-87.69132466693823,41.87525618771161],[-87.69131158326148,41.87493879182797],[-87.69126627620328,41.87383969137748],[-87.69122884496647,41.87293162055557],[-87.69119133813875,41.8720216907515],[-87.69115384740739,41.87111215029302],[-87.69129652134687,41.871109536072],[-87.69124659524363,41.871033226102696],[-87.69123249546483,41.87101167487864],[-87.69122396736599,41.87062571715387],[-87.69126344823287,41.870303488084716],[-87.69122428275142,41.87019579242723],[-87.69121312217999,41.870104248483216],[-87.69121203477029,41.87004873360493],[-87.69122282838455,41.869794488002356],[-87.69124000583304,41.869389864541],[-87.69119277233959,41.86929465784451],[-87.69130625931442,41.86929411944155],[-87.69145519899165,41.869293412447604],[-87.69154144894418,41.869293003139504],[-87.6918646176176,41.8692924485988],[-87.69228794978325,41.86928764984616],[-87.6925655492405,41.86928403982756],[-87.69304377225932,41.869275318385505],[-87.69335198560927,41.86926863892396],[-87.69350962364233,41.86926185915274],[-87.69361861177157,41.86925717153391],[-87.69393014625204,41.8692525123238],[-87.69416735440804,41.86924931844538],[-87.69438297723248,41.8692459765448],[-87.69462115058782,41.86924178544687],[-87.69480406553997,41.869237869241196],[-87.69492724319652,41.869235674762464],[-87.69528273424523,41.86923226308771],[-87.69535922229512,41.86923108811106],[-87.69552938459653,41.86922847395435],[-87.69573721899047,41.86922553905828],[-87.6959790123305,41.86923250278863],[-87.69597989266745,41.86933747943563],[-87.69598513947047,41.86951893105925],[-87.69598989235548,41.86966879359577],[-87.69599553304573,41.86984755802767],[-87.69600044515343,41.870040533634906],[-87.69600224179443,41.87015413614465],[-87.69600567718501,41.8703713273302],[-87.69601099737321,41.870567543401094],[-87.69601670341189,41.870739776848566],[-87.69601930144431,41.87085524192426],[-87.6960256190457,41.87106164441119],[-87.69602855969897,41.87115773724207],[-87.69603354219875,41.871347337766196],[-87.69603710372014,41.87150257237482],[-87.69604057429649,41.8716632675341],[-87.69604243285194,41.87179030922659],[-87.69604916117247,41.871972527777565],[-87.69605496085276,41.87212962304172],[-87.69605983945058,41.87233708802875],[-87.69606132644873,41.872428536908735],[-87.69606227825791,41.87248707486152],[-87.69606508642102,41.87264793097219],[-87.69606799995414,41.87277969860775],[-87.696071967152,41.87288216596196],[-87.69607635681994,41.87299555283546],[-87.69608036397248,41.87315029590656],[-87.69608464592156,41.87328846522662],[-87.69608648451985,41.87333831183664],[-87.69609132809299,41.87346962281964],[-87.69609341087599,41.87360001370124],[-87.69610096237321,41.87379364707757],[-87.69610564314051,41.873913667027566],[-87.69611224418402,41.87417693210589],[-87.69611566725594,41.874320255824514],[-87.69611744881642,41.874494580453145],[-87.69612025011165,41.874668416769644],[-87.69612614803461,41.8748970526181],[-87.69612825640777,41.87497877983346],[-87.69613393437113,41.87519888285206],[-87.69613901531945,41.87539584605844],[-87.69614076305336,41.875466862381806],[-87.69614077179253,41.87546720244278],[-87.69614545129197,41.875663404353084],[-87.69615081600605,41.875888289107486],[-87.6961530262009,41.87598095188243],[-87.69589695837068,41.87598496611487],[-87.69561882344506,41.87598339673423],[-87.69559448774147,41.87598325940122],[-87.69545519484822,41.87597782057698],[-87.69458257415783,41.87599665326382],[-87.69425077676898,41.87600117399208],[-87.69400201186369,41.876004509486926],[-87.6937139829478,41.876008146625395],[-87.69338366649669,41.87601231689266],[-87.69311106838082,41.8760159292835],[-87.69251799041716,41.87602321426546],[-87.6918882457002,41.87602897415055],[-87.69161344987185,41.87603221533053],[-87.69155400793568,41.876032916373056],[-87.69137041828043,41.876034932262264],[-87.69137040359105,41.87603493245457],[-87.69135691042122,41.87603506119972],[-87.69135677454804,41.87603506263558]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6747444.82482","perimeter":"0.0","tract_cent":"1169741.31542715","census_t_1":"17031280200","tract_numa":"69","tract_comm":"28","objectid":"636","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901547.99715436","census_tra":"280200","tract_ce_3":"41.8853508","tract_crea":"","tract_ce_2":"-87.65213334","shape_len":"10426.2854852"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64758261746204,41.88904951670024],[-87.64756583721159,41.88856752795856],[-87.64756335604868,41.888496274041266],[-87.64755835973419,41.88835275612057],[-87.64755499992103,41.888256247199216],[-87.64755298692884,41.88819842858089],[-87.64754788934694,41.8880519866085],[-87.64754523852399,41.88797585872378],[-87.64754060322886,41.88784271589986],[-87.64752727233102,41.88745978976594],[-87.64752490064532,41.88739166355034],[-87.64752203359566,41.88730931701356],[-87.64751881275829,41.88719903281557],[-87.64751135501363,41.88698982224622],[-87.64750583991757,41.88679720809069],[-87.64750015239541,41.88659853635891],[-87.64749177460196,41.88632771205921],[-87.64748908065387,41.8862184751724],[-87.64748542199442,41.8860701270843],[-87.64748557276316,41.885932421957435],[-87.64748025352189,41.88585977756351],[-87.64747399425991,41.8856645458581],[-87.64747311557628,41.88563716899723],[-87.64747310740081,41.88563690330583],[-87.64746890792067,41.885505922197936],[-87.64746242947889,41.88528414878719],[-87.64746180999687,41.8852630967541],[-87.64745933618089,41.885178504451645],[-87.64745595547959,41.885099422657305],[-87.64745322637035,41.885035575569546],[-87.6474480736169,41.884812405006144],[-87.64744650026519,41.88474426129792],[-87.64744262558104,41.88460867260582],[-87.64743989270092,41.88452056282336],[-87.64743635397807,41.88440647479897],[-87.64743284254708,41.884293269483514],[-87.64742665103954,41.884093647614904],[-87.64742392649076,41.883992573524985],[-87.64742202373536,41.88392199506864],[-87.64741671414055,41.88373090920613],[-87.64741322036507,41.88360517459492],[-87.64741205111851,41.883552436993035],[-87.64740883580744,41.883407398295155],[-87.64740570122967,41.88327129258535],[-87.64740458961568,41.88314614820907],[-87.64740296902126,41.88296370155135],[-87.64739922772753,41.882853388089096],[-87.64739548651785,41.882743102067586],[-87.64738514198623,41.88246416455462],[-87.647385026301,41.882461041189586],[-87.64737987122672,41.88231471480431],[-87.6473718601183,41.882081817927954],[-87.6473672424069,41.88194702056384],[-87.64736007192916,41.8817778450827],[-87.64762560441014,41.881773096628635],[-87.64794509209729,41.881769497254716],[-87.64814315008036,41.881767349277276],[-87.64853076683934,41.881761840252025],[-87.64969747518644,41.881737863949766],[-87.65076704484177,41.88171587339643],[-87.65086751192537,41.881716886797065],[-87.65097030815365,41.88171749764762],[-87.65100844816831,41.88171704890697],[-87.65122203061749,41.881714536703456],[-87.65143391955354,41.88171070147512],[-87.65168212715642,41.881706823753625],[-87.65203150092115,41.88170006053464],[-87.6531944117927,41.88167981816426],[-87.65377413529781,41.881681744911155],[-87.6543591770249,41.88167002780351],[-87.65470230365085,41.881663154208894],[-87.6555263142434,41.881646643819956],[-87.65572659024079,41.881642630041064],[-87.65668853555867,41.88162457054717],[-87.65669897762164,41.88195144928641],[-87.65670205093123,41.88204650055542],[-87.65670813889754,41.88223520317869],[-87.65671031767505,41.88230286189562],[-87.65671284108335,41.882381224643346],[-87.65671919989398,41.882579067181815],[-87.6567238995143,41.88272533560423],[-87.6567016287032,41.88298322445772],[-87.65668750445327,41.88314677442395],[-87.65668919142328,41.88325836501707],[-87.6566910859567,41.88338011135375],[-87.65669146745114,41.88340461914351],[-87.65669453270874,41.88355960460923],[-87.65669958176171,41.88371451943208],[-87.65670348764267,41.88384138162731],[-87.656710275605,41.88406186637376],[-87.65672043345046,41.88413034348801],[-87.65673713386678,41.88424292647156],[-87.65675402429413,41.88435678828941],[-87.65677161072065,41.88447534603462],[-87.65677418275797,41.88460403872089],[-87.65677761868862,41.88477612324137],[-87.6567795019478,41.88487215235995],[-87.65678014989284,41.88490517215741],[-87.65678522792054,41.88512002136342],[-87.6567887157,41.88526631002268],[-87.65679956079038,41.88547960345073],[-87.65680075361988,41.885503061398836],[-87.65680252402228,41.885537876227794],[-87.65680924481087,41.8856700540945],[-87.65681298739572,41.88581656377973],[-87.65681529041218,41.885908317354726],[-87.65681989492958,41.8860905075297],[-87.65682036670219,41.88610914343646],[-87.65682404580139,41.88625474713654],[-87.65682435386762,41.88626679617261],[-87.65682713990707,41.88637570409639],[-87.65682951899389,41.88647044933384],[-87.65683726430828,41.88667637564938],[-87.6568404747507,41.88676173278936],[-87.65684271969664,41.88687963835355],[-87.65684501319033,41.88699990479775],[-87.656846536136,41.88723150029581],[-87.6568463815,41.8874550178332],[-87.65684630461202,41.88756673543758],[-87.65686191734571,41.88770265883586],[-87.65687889777044,41.88785048986325],[-87.65688029647109,41.887991387433296],[-87.65688084120093,41.888045754054595],[-87.65688330110879,41.88829642722893],[-87.65688431331255,41.888396366090745],[-87.65688448738118,41.88847096765348],[-87.65688452818331,41.88861177543133],[-87.65690042110175,41.8888113322543],[-87.6569051211683,41.88887034931062],[-87.65697434802493,41.888948374061975],[-87.65675226262552,41.8889508978734],[-87.65638973695472,41.88895468896765],[-87.65599459614398,41.888958780511324],[-87.65573627148723,41.8889642079799],[-87.65541739241107,41.888970906940635],[-87.65507134951864,41.888975394907064],[-87.65485717140908,41.888978163731814],[-87.65456722132768,41.88897805428951],[-87.6541477752461,41.88897789454574],[-87.65383505453612,41.88898123118376],[-87.65339980590656,41.88897716564691],[-87.65332975547312,41.88897651129192],[-87.65279689886327,41.88898680151807],[-87.65248417561455,41.88899043660262],[-87.65223573981832,41.888993991661096],[-87.65197169638074,41.88899777026298],[-87.65170804734674,41.88900065103678],[-87.65144399323205,41.88900352907425],[-87.65127848622852,41.88900534531069],[-87.65114445737773,41.88900685599341],[-87.65107191471645,41.88900765087997],[-87.65090302853326,41.889009536235505],[-87.65072315978264,41.889011595632624],[-87.65057697261688,41.88901322383096],[-87.65044672688411,41.889014699660244],[-87.65020320422383,41.8890174499534],[-87.65002296813161,41.889019478626],[-87.64996153371418,41.88901884906004],[-87.64990133499134,41.88901823230376],[-87.64963323769028,41.88901548496245],[-87.64950298396897,41.88901767317603],[-87.6493392300614,41.88902043009805],[-87.64916019499852,41.889023479938736],[-87.64888297383634,41.88902816716431],[-87.64872492087217,41.88903339901367],[-87.64857455001646,41.889038375684784],[-87.64841244840284,41.88904019684449],[-87.6482647748553,41.88904185604371],[-87.64825032804814,41.88904201821236],[-87.64796123062182,41.88904526545506],[-87.64779631286483,41.889047117235975],[-87.64768806977582,41.889048332698565],[-87.64762203545058,41.88904907425314],[-87.64758261746204,41.88904951670024]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3378131.58334","perimeter":"0.0","tract_cent":"1163760.78330549","census_t_1":"17031281500","tract_numa":"18","tract_comm":"28","objectid":"638","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899445.14029745","census_tra":"281500","tract_ce_3":"41.87970856","tract_crea":"","tract_ce_2":"-87.67415419","shape_len":"7736.42796573"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67626164087763,41.87620640982076],[-87.67652777193261,41.876207135533406],[-87.67653461209089,41.87640679205204],[-87.67653930309993,41.876583356327224],[-87.67654279960766,41.87676186218112],[-87.67654049201143,41.87690833691086],[-87.6765365579317,41.87711328224467],[-87.67654146254571,41.87731564364363],[-87.67654570674439,41.87747854365025],[-87.67655419451329,41.87780430220767],[-87.6765615139105,41.87806131534678],[-87.67656965803627,41.8783489589839],[-87.67657740795207,41.87862131489847],[-87.67657935625517,41.878715961382795],[-87.67657996949994,41.87874572514565],[-87.67658733972021,41.87910372789645],[-87.67659553285866,41.87941532903004],[-87.67660067049084,41.87960213180377],[-87.67660618969559,41.87980180726718],[-87.67661183662756,41.88001314677352],[-87.67661638433061,41.8801833706346],[-87.67662175711625,41.88039742508778],[-87.67662782107264,41.88063722450925],[-87.67663391572232,41.880895547753234],[-87.67663916468724,41.88112170359363],[-87.67664090922734,41.88124547903544],[-87.67664187104467,41.88131386344491],[-87.676646009245,41.88160805043895],[-87.67664897106695,41.881716876695236],[-87.67665059850782,41.88177778052569],[-87.67665831964571,41.88206265014168],[-87.67666311237025,41.88223191677749],[-87.6766722358093,41.88255414163874],[-87.67667658527749,41.88268894953824],[-87.67668387098684,41.88290980738889],[-87.67669035873979,41.88314691345579],[-87.67619398753479,41.88315395975337],[-87.67561419024061,41.883163099406026],[-87.67510013976212,41.8831707910928],[-87.67464724172994,41.88317775495597],[-87.67423824514348,41.883183437716184],[-87.67381972531741,41.88318925148595],[-87.67338014470656,41.883197373826604],[-87.6729404247534,41.88320475273705],[-87.67260207654431,41.88321042537882],[-87.67230791405794,41.88321535630686],[-87.67179667500783,41.88322166134786],[-87.67179075613447,41.883022366860516],[-87.67178347518868,41.8827456502109],[-87.67177678780384,41.88247903578664],[-87.6717720354858,41.88231055460799],[-87.67176425800825,41.882034780180874],[-87.67175937539048,41.881856650571436],[-87.67175529321968,41.88166856395888],[-87.67174815015674,41.88138975225731],[-87.67174373416526,41.88121737094159],[-87.67173889876013,41.881057847560314],[-87.67173140460724,41.88082322630808],[-87.67172607753156,41.88062056054651],[-87.67172319650274,41.880522121863294],[-87.67172108164627,41.88044986714483],[-87.67171531832395,41.8802681374497],[-87.67171174600668,41.880087490901744],[-87.67170800634989,41.87989836311603],[-87.67170403170527,41.87971055148261],[-87.67169969680643,41.87950426899286],[-87.67169833661096,41.87944226534896],[-87.67169430194811,41.87925835347711],[-87.67168974197148,41.87905253619607],[-87.67168483975647,41.87881817293364],[-87.67168042146798,41.878606954129786],[-87.67167590497706,41.87847879952219],[-87.67167228387797,41.878368322193964],[-87.67166838406752,41.87824919668601],[-87.67166227356486,41.87803821454442],[-87.67165737792665,41.87786850929644],[-87.67165325526271,41.87772710195491],[-87.671648577483,41.87754386305322],[-87.67164589531026,41.877438802771096],[-87.67164509583897,41.877407487405996],[-87.67164114294309,41.87724250795],[-87.67163668812414,41.877054995329274],[-87.67163507143005,41.876994585137076],[-87.67163299586717,41.87677434048811],[-87.67161599544345,41.87653716344978],[-87.67159741558423,41.87627794510845],[-87.67180967882956,41.87627459499043],[-87.67206042232765,41.87626991144399],[-87.67211825626146,41.87626883115642],[-87.67223697787361,41.87626661342955],[-87.67271254551996,41.876257728473085],[-87.67298731909445,41.87625343607202],[-87.67335559382899,41.87624764964409],[-87.6736310307717,41.87624311280698],[-87.67388957610999,41.876238669864144],[-87.67417515127006,41.8762337505828],[-87.67459848025794,41.876226684486426],[-87.67481798285851,41.87622327812513],[-87.67521953264124,41.87621668858726],[-87.67569140467404,41.876210762716624],[-87.67593886429029,41.876207654261435],[-87.67611951506412,41.8762066517193],[-87.67626164087763,41.87620640982076]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4894168.66792","perimeter":"0.0","tract_cent":"1167100.61769845","census_t_1":"17031281700","tract_numa":"21","tract_comm":"28","objectid":"639","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899207.29732777","census_tra":"281700","tract_ce_3":"41.87898486","tract_crea":"","tract_ce_2":"-87.66189767","shape_len":"8982.26332885"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66643742172624,41.87635021984639],[-87.66666479808576,41.87635101064961],[-87.66667920938234,41.877159530220105],[-87.66668749666373,41.877624472902646],[-87.66675257802274,41.87889534580677],[-87.66674916269251,41.8799915063737],[-87.66675834573687,41.880168780840755],[-87.66678986142912,41.88077716998306],[-87.66679081813496,41.88083945260728],[-87.666791948476,41.88091301234087],[-87.66679199373125,41.880915936596466],[-87.66679327499388,41.8811887447458],[-87.66680275076872,41.88145546842904],[-87.66608424275428,41.8814615613477],[-87.66516312397408,41.88146936572969],[-87.66441825529128,41.8814884938389],[-87.66423218030577,41.88149327127433],[-87.66369349308697,41.88150418111234],[-87.662274039141,41.88153291660305],[-87.66197152262298,41.88153870858229],[-87.66055924697375,41.88155946811006],[-87.65973082701434,41.881571637208225],[-87.65961651118542,41.88157355471691],[-87.6587567600882,41.88158797398078],[-87.65764286137356,41.881606645868885],[-87.65714158609048,41.881616062039654],[-87.65714035016381,41.881578434470626],[-87.6571282523842,41.88121006811996],[-87.6571262806302,41.881149517660226],[-87.6571138321247,41.880765459547646],[-87.65710464345885,41.88048188108392],[-87.65709971811042,41.88032974793739],[-87.65709494841519,41.88018242691296],[-87.65708025406875,41.8796932885274],[-87.65706494074341,41.879183537173354],[-87.65705659410055,41.87905705708082],[-87.65704429751588,41.8788707088705],[-87.65703999397967,41.8786468066232],[-87.6570321329427,41.87823781424432],[-87.65702608782497,41.877923123441136],[-87.65701995066654,41.87779237311184],[-87.65701331469486,41.877650983693734],[-87.65700815689134,41.87713621538056],[-87.65700311643745,41.876633165370045],[-87.6570032701811,41.87651943565142],[-87.65706693100223,41.876518436229325],[-87.65709874176886,41.87651793638937],[-87.65757087111925,41.876510522008076],[-87.65782012313205,41.87650660666982],[-87.6586672445762,41.87649094969056],[-87.65924948858398,41.87648108660106],[-87.65941602820097,41.87647920780316],[-87.65960790680454,41.876477042730556],[-87.66045758826914,41.876462291789984],[-87.66052869483185,41.876460486650736],[-87.66166042174935,41.87644139802658],[-87.66185300948032,41.87643780442034],[-87.66192589144838,41.87643644430854],[-87.66211839505728,41.87643285141191],[-87.66330201137353,41.87641308938691],[-87.66413086661443,41.876398822301965],[-87.66428823908548,41.87639574305818],[-87.6645112773865,41.87639137864157],[-87.66506443675465,41.87638167342808],[-87.66582429360622,41.876362195924024],[-87.66593791561239,41.87635928300301],[-87.66643742172624,41.87635021984639]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5271164.32341","perimeter":"0.0","tract_cent":"1156340.0136288","census_t_1":"17031270200","tract_numa":"25","tract_comm":"27","objectid":"640","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901516.03318741","census_tra":"270200","tract_ce_3":"41.88554446","tract_crea":"","tract_ce_2":"-87.70134627","shape_len":"9384.86794978"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69652530139545,41.88827844789567],[-87.69646286815713,41.887659083246135],[-87.69645793155067,41.88742033412281],[-87.69645100714462,41.88717092629969],[-87.69643939354003,41.886887079641376],[-87.69643255877375,41.886537959088464],[-87.69642830810162,41.88632082574233],[-87.69642160584583,41.88607125444785],[-87.69641412029122,41.88580441750095],[-87.69640637762922,41.88551104227113],[-87.69640003201522,41.88527061125333],[-87.69639045409045,41.884903872153956],[-87.69638828280017,41.88473307505304],[-87.6963866199183,41.884602230935855],[-87.69637628047438,41.884297754764944],[-87.69637447796977,41.88424467436046],[-87.69636061528469,41.88383642914235],[-87.69635851959883,41.88377471261379],[-87.69635532509984,41.88365029797891],[-87.69635031090014,41.88345501737918],[-87.69634729477465,41.88333527360924],[-87.6963469660097,41.883322232228615],[-87.69633991533188,41.88312257669659],[-87.6963350553292,41.88289772960711],[-87.69662652317591,41.88289447273653],[-87.69711266505824,41.88288989670341],[-87.69735817243534,41.88288815365438],[-87.69757512197508,41.882885169929956],[-87.69781767058925,41.88288183349813],[-87.6986350907656,41.88287304455607],[-87.69879250847487,41.88287152038869],[-87.69897792831227,41.88286972478127],[-87.69961219001178,41.88286326497859],[-87.70106240064965,41.88284817943683],[-87.70125401666236,41.88284681986753],[-87.70147405199901,41.88284525849839],[-87.70346660668622,41.882823685137815],[-87.703712697327,41.88282065644982],[-87.70422707447284,41.88281432446289],[-87.70515238936788,41.88280495499377],[-87.70585389515571,41.882797840594485],[-87.70617046525061,41.882794320141684],[-87.70617353125667,41.88293265513314],[-87.706177905388,41.88306366189494],[-87.7061834812252,41.88323040530125],[-87.70619222585458,41.883491897381035],[-87.7061968806561,41.883590416808666],[-87.70620028489414,41.88370423626014],[-87.70620878864554,41.88399423944142],[-87.70621797336071,41.88430744508127],[-87.7062192817351,41.88435206625055],[-87.70623410333997,41.88485749807568],[-87.70624581461668,41.88522589463026],[-87.70624950091147,41.88539710928026],[-87.7062517493108,41.88550153157677],[-87.70626297411727,41.885833317205396],[-87.70626467577804,41.88588812385398],[-87.70627642958033,41.886252464304455],[-87.70628201059378,41.88641951115662],[-87.70628617405282,41.88654412094929],[-87.70630024011284,41.88699263831094],[-87.70631159390703,41.88743355957836],[-87.70631439880817,41.88752089536984],[-87.70632049041407,41.88771055726817],[-87.70633170204161,41.88807285895884],[-87.70633288078162,41.888110957145905],[-87.70633489002195,41.888175895004196],[-87.706337986574,41.88827547472226],[-87.70633798743152,41.88827549969957],[-87.70624061802108,41.88827702704138],[-87.7060202365411,41.88827994003185],[-87.70546515289388,41.88828685436065],[-87.70508132683194,41.8882912724707],[-87.70484717280671,41.88829410758752],[-87.70422918925229,41.8883017007742],[-87.70387106699188,41.888306598951644],[-87.70386833266838,41.88816422659926],[-87.70177773218171,41.88816406796161],[-87.70141047231297,41.88816395128547],[-87.70141034634575,41.888163951141145],[-87.70141195322417,41.888226206561484],[-87.70120142384853,41.888228474065],[-87.70057884763663,41.888236365355944],[-87.70035341631409,41.88823923937097],[-87.70012660747473,41.88824210534784],[-87.69894574047072,41.88825617013565],[-87.69859405095286,41.888260401055426],[-87.69760877365648,41.88827175967405],[-87.69713815771875,41.88827875774054],[-87.69705919481375,41.888279006596115],[-87.69666712656114,41.88828129272971],[-87.69652530139545,41.88827844789567]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2214511.71654","perimeter":"0.0","tract_cent":"1155821.56757296","census_t_1":"17031271700","tract_numa":"10","tract_comm":"27","objectid":"645","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896372.44955592","census_tra":"271700","tract_ce_3":"41.87144041","tract_crea":"","tract_ce_2":"-87.70338875","shape_len":"5989.29811643"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70539061126415,41.86913608033196],[-87.70575619374618,41.8691330846612],[-87.70576270188255,41.86929876304744],[-87.70576540599623,41.86945772493971],[-87.70577376475939,41.86963164646092],[-87.70577728610107,41.869782133069265],[-87.7057806813826,41.86987043422447],[-87.70578982010883,41.87005290916364],[-87.70579788261433,41.87021388907377],[-87.70580496408719,41.870387034925834],[-87.70581068236845,41.87054189715339],[-87.70581515747962,41.87066244915844],[-87.70581896625822,41.870749737185335],[-87.70582379950399,41.87095935666339],[-87.70582621065199,41.871063938733904],[-87.70583354774583,41.871267273000015],[-87.70583815008733,41.87139734823791],[-87.70583926164824,41.87154647694876],[-87.70584265400271,41.871680140538636],[-87.70585098214899,41.871871463668604],[-87.7058581237542,41.87203552330592],[-87.7058635308385,41.87217342403898],[-87.70587023336107,41.872351562570294],[-87.70587481832969,41.87246841039674],[-87.70587957056806,41.87258317350366],[-87.70588727750358,41.87277871743317],[-87.70589133730057,41.87288172998383],[-87.70589501123062,41.87303166848822],[-87.70589769167093,41.873185580450176],[-87.7059020616513,41.873331928055144],[-87.7059085949464,41.87347482944476],[-87.70591685148717,41.87368777763854],[-87.70563951401988,41.87369053906015],[-87.7054312698524,41.873692638624114],[-87.70520833686278,41.873694932446234],[-87.70488471330361,41.873698430924954],[-87.70456935308381,41.87370172675082],[-87.7040980505789,41.87370542975333],[-87.70375240368904,41.87370820063625],[-87.70346635009696,41.87371526360298],[-87.70302118537396,41.87372625348624],[-87.70272114497725,41.87372864038694],[-87.70236705208447,41.873731497934386],[-87.70192820540191,41.87373539778564],[-87.70166675354977,41.8737379117557],[-87.70128985466641,41.87374494901376],[-87.70101301980348,41.8737472637704],[-87.70100402407763,41.873486541187575],[-87.70099845247873,41.873269046220074],[-87.70099388802791,41.8730956217713],[-87.7009887638097,41.87291145433538],[-87.70098525853236,41.87282763247739],[-87.7009780077122,41.872654231368365],[-87.70097403127272,41.87252125051764],[-87.70096875649376,41.87237102861853],[-87.70096175973333,41.87216448520146],[-87.70095750706987,41.8720371834179],[-87.70095366339814,41.871916665202654],[-87.70094813921058,41.871743442069295],[-87.70094469051485,41.87161652889828],[-87.70093908381237,41.87143290760697],[-87.70093376998304,41.87129407410698],[-87.70092730091494,41.87111972362662],[-87.70092400489756,41.87100839231968],[-87.70091691666202,41.870768951081416],[-87.70090865283848,41.87055051774218],[-87.70090388094673,41.87042271937127],[-87.70089892368713,41.870273761519435],[-87.70089743837583,41.870099237846844],[-87.70089557225096,41.86988002521865],[-87.70088771718481,41.86964375343717],[-87.70088209619172,41.86946674894361],[-87.70087943653863,41.86932312756909],[-87.7008690101115,41.869188535917615],[-87.70118783886107,41.86918541750271],[-87.70125708819302,41.86918486560634],[-87.70145712597852,41.8691832221306],[-87.70171856305168,41.86918032433379],[-87.70186489311948,41.8691780828912],[-87.70208803315522,41.869175549966556],[-87.70228807009853,41.869173987366224],[-87.7025574335549,41.86917148796547],[-87.70273482063871,41.86916960808506],[-87.70287350660246,41.86916811921755],[-87.70304270566427,41.86916630368204],[-87.70331707542312,41.869162762734774],[-87.7035977550059,41.86915913992349],[-87.70374330836799,41.86915746812125],[-87.7038657305728,41.869155888895236],[-87.70411254238483,41.86915427761227],[-87.70431219397835,41.869150815840186],[-87.70455125118492,41.86914625223328],[-87.70476654180935,41.86914293017933],[-87.70495902415864,41.86914047086001],[-87.70517463549473,41.86913813772668],[-87.70539061126415,41.86913608033196]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6013218.99072","perimeter":"0.0","tract_cent":"1151889.69584603","census_t_1":"17031270500","tract_numa":"33","tract_comm":"27","objectid":"641","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898086.94045725","census_tra":"270500","tract_ce_3":"41.87622344","tract_crea":"","tract_ce_2":"-87.71777911","shape_len":"14591.9533634"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71102116400509,41.88143693005712],[-87.7110133554414,41.88116040482285],[-87.71100553628004,41.880916842321156],[-87.71128930206723,41.88091593294352],[-87.71164166749395,41.88090971804907],[-87.71215449591664,41.88090447990845],[-87.71261927096575,41.88089769023669],[-87.71309557320637,41.88089123481685],[-87.71337058144458,41.88088725871552],[-87.71361480843186,41.88088441031528],[-87.71392230908185,41.88088082310256],[-87.71433757329565,41.88087507638467],[-87.71476407520068,41.88086922404053],[-87.71497532442284,41.88086557628477],[-87.71522562964128,41.88086125361297],[-87.71549348748528,41.88085999712436],[-87.7156528288036,41.88085924366737],[-87.71589399015944,41.880855587429096],[-87.71588947636491,41.88070892400137],[-87.71588326477017,41.88053024006317],[-87.71587990196834,41.88038367913838],[-87.71587030738422,41.880121606741376],[-87.71586564720847,41.879964830226825],[-87.71586170645757,41.8798401652814],[-87.7158509552004,41.879532751929304],[-87.71584538009745,41.87937333572568],[-87.71583573971786,41.87907405102229],[-87.7158291297776,41.87887192900479],[-87.71582228795178,41.87865575517882],[-87.71581591846049,41.87845917782188],[-87.71580941820747,41.87826600234925],[-87.71580361302563,41.878093467909814],[-87.71579721377783,41.87789617686809],[-87.71578615552305,41.877587828437534],[-87.7157793567107,41.87737865262892],[-87.7157738543926,41.87721155505104],[-87.71576816234393,41.877038689681655],[-87.71576182057841,41.876850701917995],[-87.71575927296783,41.87677774633432],[-87.7157552580126,41.876662767845545],[-87.71574945107737,41.876495474589426],[-87.71574269110737,41.87629757781581],[-87.71573513100024,41.87607596668583],[-87.71572323885138,41.875678888490285],[-87.71571798701447,41.87550353338666],[-87.7157146064263,41.87538644521012],[-87.71571002909724,41.87522791296166],[-87.71570633208671,41.87512080995419],[-87.71570405738913,41.87505491073478],[-87.71569629543038,41.874839033678974],[-87.71568753144945,41.87460149908697],[-87.71568419662233,41.87448809474544],[-87.71567975270892,41.874352937894855],[-87.71567805291576,41.87429963787],[-87.71567499821603,41.87420385778543],[-87.71566974064378,41.874038996620456],[-87.71566733738374,41.87396952450502],[-87.71566297136421,41.8738433299617],[-87.71565983107499,41.873752553276525],[-87.715659772938,41.87374516790947],[-87.7156583806038,41.873568108192046],[-87.71565732202806,41.87343349313007],[-87.71563883220148,41.87310578714435],[-87.71563093879561,41.8728941058146],[-87.71562765488147,41.872769938208265],[-87.71562302317487,41.872657737617736],[-87.715615537486,41.87247640275349],[-87.7156047828539,41.87219986180663],[-87.7156019702671,41.872127535365195],[-87.71559460080692,41.87192815326033],[-87.71558852718448,41.87174977301944],[-87.71558363854983,41.871606193520584],[-87.7155755002536,41.87142184576368],[-87.7155725874809,41.871296326655575],[-87.7155708813067,41.87122280773866],[-87.71556614707345,41.87106625011468],[-87.71555896631996,41.870839396822895],[-87.71555429513447,41.87069181542879],[-87.71554810870781,41.870487801848626],[-87.7155453684368,41.87033388941283],[-87.7155401779764,41.87015608879244],[-87.71553452253389,41.86994284693097],[-87.71577103920626,41.86993529293913],[-87.71603647132753,41.86993337196302],[-87.71626658901157,41.86993087643795],[-87.71796907787272,41.869941465790475],[-87.71797068562527,41.86993461377231],[-87.71797709689045,41.86992457671589],[-87.71798601057446,41.8699177638434],[-87.71799722482068,41.86991225309551],[-87.71800944440278,41.86990910779066],[-87.71804090671283,41.8699055441724],[-87.71830953380858,41.86990352528915],[-87.71864878040442,41.869899798416704],[-87.71897767227226,41.869896179257026],[-87.71904486890101,41.86989542178916],[-87.71929793597856,41.86989256818358],[-87.71964537956559,41.86988890908646],[-87.72023936012896,41.86986908525315],[-87.72024682181639,41.8700786759896],[-87.72025093330444,41.87020169536487],[-87.72025698858481,41.87038641592273],[-87.7202702533025,41.87071192769241],[-87.72027113156055,41.87078450881321],[-87.72027250984128,41.87089843916172],[-87.7202759437583,41.871004001454345],[-87.72028028544011,41.87113371801443],[-87.72028681094899,41.87131147064971],[-87.72029883215535,41.87161610239354],[-87.72030145910901,41.87169203972751],[-87.72030897181709,41.87190873828036],[-87.72031557922259,41.87211632134937],[-87.72032097110444,41.872266790035326],[-87.7203274885051,41.87243776428789],[-87.72033274398164,41.872602475179235],[-87.72033641829529,41.872717478674666],[-87.72034131760289,41.87284261527013],[-87.720349625587,41.87306829200022],[-87.72036026796202,41.87331481005084],[-87.72036512606637,41.873515051638854],[-87.72036951420506,41.873695926175245],[-87.72037342439164,41.873783141519134],[-87.72037917846967,41.87391690069939],[-87.72038367135235,41.87405492237675],[-87.72038640107664,41.87414444646478],[-87.72039057689481,41.87428141484718],[-87.72039076036864,41.87434675617285],[-87.72040156050363,41.87444110052154],[-87.72041319502272,41.8745427333865],[-87.72041497655472,41.874590657518276],[-87.72041632139965,41.874626833924566],[-87.72042272089071,41.87479854842117],[-87.72044097390862,41.87502485443736],[-87.72048381889853,41.87522519385273],[-87.72052271888127,41.87533031441258],[-87.72059538986741,41.875526696275855],[-87.72063345313951,41.875678052676655],[-87.72065461993161,41.87579929682037],[-87.72066725300118,41.87595287758731],[-87.72067290631696,41.876114489209684],[-87.72067704297969,41.87624055881154],[-87.72068075583464,41.87635371966634],[-87.72068833057907,41.87659865723594],[-87.72069543418579,41.87681988168687],[-87.72070146194946,41.876992280183636],[-87.72070340289619,41.877053720846675],[-87.72068713907952,41.8770856076157],[-87.72065798157938,41.877117232949736],[-87.72062960545233,41.877150432704696],[-87.72064862626563,41.878042471575725],[-87.72067517133956,41.87878609123914],[-87.72068038924807,41.87893225774712],[-87.72070054038606,41.879513180857565],[-87.72071128174262,41.87982283413931],[-87.72075298345551,41.88078961626727],[-87.7207590962573,41.88093096914427],[-87.72076458901589,41.881147931249494],[-87.72078279274405,41.88136007665963],[-87.72079832014603,41.881489495607006],[-87.72081355948086,41.88168403428624],[-87.72082022885714,41.88189686184134],[-87.72065630907915,41.88189623140379],[-87.72060481068131,41.88189002907153],[-87.72049904703036,41.88186742841405],[-87.72033718803237,41.881820131884886],[-87.72018281134406,41.88177498814767],[-87.72010758350959,41.88175298924074],[-87.71993195197251,41.8817021059596],[-87.71979321046433,41.881672056244966],[-87.71958866544489,41.88165715970522],[-87.7190831332309,41.881663018639586],[-87.71890977962354,41.8816734527462],[-87.71860602593418,41.88167630031214],[-87.71851657582381,41.88167443314603],[-87.71818167977892,41.88166744185654],[-87.71778219297092,41.88167021348053],[-87.71729508706404,41.88167306258215],[-87.71680958061916,41.881669963187115],[-87.71641642284581,41.88164084871321],[-87.71618869998534,41.88160762697032],[-87.71606088004762,41.88158383343893],[-87.71585005632068,41.881538241601284],[-87.71565499482493,41.881496057988755],[-87.71551072654977,41.8814611709426],[-87.71548774805333,41.88145578357852],[-87.71531222486942,41.881413176231334],[-87.71499969165848,41.88133646616014],[-87.71473486654762,41.88127436464706],[-87.71458069341685,41.881249357254845],[-87.71438140489445,41.881234177896104],[-87.71408193326964,41.88123871056725],[-87.71384540371292,41.88126592018016],[-87.71365673021235,41.88130370591638],[-87.71347039801852,41.88135758526965],[-87.71327085882538,41.88143669497242],[-87.71324252561975,41.88144894598647],[-87.71314632936485,41.881490495838186],[-87.71304270929163,41.88153516139502],[-87.71289838150423,41.88159706035085],[-87.71280603481463,41.88163791720908],[-87.7125633390361,41.88175186395558],[-87.71256182335664,41.881752981452756],[-87.71241302834278,41.88186268732643],[-87.7123251547385,41.88194591171335],[-87.7122704389105,41.88202934279828],[-87.71225035918165,41.882055139896266],[-87.7121676225566,41.88214632281502],[-87.71204256658999,41.882284559830644],[-87.71186778650679,41.88251012453865],[-87.71178378997632,41.88262130591299],[-87.71176704775942,41.88265886636301],[-87.71176064651797,41.88267900192986],[-87.71176180992427,41.88269294104189],[-87.71150994805035,41.88271631118178],[-87.71106078856236,41.88274250100472],[-87.71105711693657,41.88259964279457],[-87.71104954802728,41.882357888524105],[-87.71103940068483,41.88198823836149],[-87.71103317072647,41.88181476160214],[-87.71102783648303,41.88166622062784],[-87.71102116400509,41.88143693005712]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"888284.303096","perimeter":"0.0","tract_cent":"1155711.67039883","census_t_1":"17031270700","tract_numa":"4","tract_comm":"27","objectid":"642","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900187.23103033","census_tra":"270700","tract_ce_3":"41.88191077","tract_crea":"","tract_ce_2":"-87.70368948","shape_len":"4005.35067609"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70587040193395,41.8809755588344],[-87.7061227376917,41.88097274323147],[-87.70612660787985,41.88111444518557],[-87.70613113157526,41.881275200445174],[-87.70613447102373,41.88141034540788],[-87.70613524255972,41.881439220197784],[-87.70614401676318,41.881767533836275],[-87.70614805661458,41.88188164274671],[-87.70615287913748,41.882017857543524],[-87.70615931535121,41.882268442414066],[-87.7061599862742,41.882300998331296],[-87.70616598929526,41.88259235483743],[-87.70617046525061,41.882794320141684],[-87.70585389515571,41.882797840594485],[-87.70515238936788,41.88280495499377],[-87.70422707447284,41.88281432446289],[-87.703712697327,41.88282065644982],[-87.70346660668622,41.882823685137815],[-87.70147405199901,41.88284525849839],[-87.70125401666236,41.88284681986753],[-87.7012508765583,41.8827161484798],[-87.70124134079498,41.88232780601344],[-87.70123853087571,41.88221758820144],[-87.70123116321992,41.88194110269371],[-87.70122732522125,41.88179708052622],[-87.70121887738837,41.88149372150512],[-87.70121631659863,41.88138274845927],[-87.7012145744215,41.88118320468617],[-87.70120775358022,41.881025585351644],[-87.70150694024113,41.88102405560951],[-87.70176584748008,41.881021967132476],[-87.70205082295314,41.88101879140138],[-87.7022259440261,41.88101684007475],[-87.70240072601341,41.88101434270834],[-87.7025123711715,41.88101275651831],[-87.70278106690728,41.881008939876],[-87.70296573591618,41.88100769462272],[-87.70321628132999,41.88100600483733],[-87.70341816304746,41.881003572284946],[-87.70366083307934,41.881000954958616],[-87.70411645863274,41.88099603950007],[-87.70460930744713,41.88099124671942],[-87.70525531646697,41.88098320092592],[-87.70538801672087,41.88098155255696],[-87.70587040193395,41.8809755588344]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3549996.58748","perimeter":"0.0","tract_cent":"1155758.47248397","census_t_1":"17031271200","tract_numa":"16","tract_comm":"27","objectid":"643","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898529.17582344","census_tra":"271200","tract_ce_3":"41.87735996","tract_crea":"","tract_ce_2":"-87.7035623","shape_len":"7982.99743559"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70563951401988,41.87369053906015],[-87.70591685148717,41.87368777763854],[-87.70592167215672,41.873812114411855],[-87.70592251054127,41.873921614589875],[-87.70592497180105,41.874143672753],[-87.70592621972601,41.874256275067374],[-87.70593312626941,41.8744083294492],[-87.70593596228899,41.874470769776345],[-87.70593950017756,41.874548658851936],[-87.70594185500443,41.874624898206264],[-87.70594525405699,41.874734968068466],[-87.70594686984177,41.87478728394988],[-87.70595128642816,41.87490729629716],[-87.70595659915524,41.87505724781652],[-87.70596463600327,41.875332224675915],[-87.70596980433237,41.87551211461141],[-87.70596449846853,41.87565415186896],[-87.7059665285295,41.87575819746507],[-87.70597123877378,41.875875862043706],[-87.70597638455524,41.8760044104974],[-87.70598046186784,41.876113132494815],[-87.70598495892978,41.87623146165612],[-87.70598783059553,41.87632083010463],[-87.70599261726058,41.876477168696894],[-87.70599704489554,41.87664769309221],[-87.70600385089938,41.87691669413397],[-87.70600846899146,41.87713908586319],[-87.70601488669556,41.877326374748975],[-87.70601898143492,41.877445867718045],[-87.70602875259443,41.877685741270966],[-87.70603089192124,41.877876286145494],[-87.70603146497085,41.87789447349066],[-87.70603677534655,41.87806317417196],[-87.70604071118085,41.878205155648295],[-87.70604517257314,41.87836958190672],[-87.70605131876846,41.87859610433543],[-87.70605652019518,41.878803927226755],[-87.70606476949216,41.879079330146936],[-87.70606525890754,41.87909747257454],[-87.70607010699526,41.879277000046024],[-87.70607457874794,41.879480592784965],[-87.70607618946477,41.87953295689308],[-87.70607976713804,41.879649283147266],[-87.70608003959035,41.87965814608607],[-87.70608243577263,41.879736042847874],[-87.70608639291936,41.87987961606199],[-87.7060913458102,41.88006405655864],[-87.70609819271606,41.88028012112569],[-87.70609986146634,41.88031705436503],[-87.70610857686377,41.88050998112589],[-87.70611487034299,41.88070754642578],[-87.70611795528316,41.88079762974604],[-87.7061227376917,41.88097274323147],[-87.70587040193395,41.8809755588344],[-87.70538801672087,41.88098155255696],[-87.70525531646697,41.88098320092592],[-87.70460930744713,41.88099124671942],[-87.70411645863274,41.88099603950007],[-87.70366083307934,41.881000954958616],[-87.70341816304746,41.881003572284946],[-87.70321628132999,41.88100600483733],[-87.70296573591618,41.88100769462272],[-87.70278106690728,41.881008939876],[-87.7025123711715,41.88101275651831],[-87.70240072601341,41.88101434270834],[-87.7022259440261,41.88101684007475],[-87.70205082295314,41.88101879140138],[-87.70176584748008,41.881021967132476],[-87.70150694024113,41.88102405560951],[-87.70120775358022,41.881025585351644],[-87.7012004572465,41.88085697296042],[-87.70119394746023,41.88061757731443],[-87.70119301840542,41.88058341318461],[-87.7011822781058,41.88034367426055],[-87.70117782935915,41.88012751011214],[-87.70117291138358,41.87989625275594],[-87.70116772794336,41.87971931521129],[-87.70116139875034,41.879503268020834],[-87.70115700170906,41.879316031240265],[-87.70115419715451,41.87920502991606],[-87.70114898653372,41.87902273680029],[-87.70114500779253,41.87879675352548],[-87.70114374268726,41.878740507041016],[-87.70114051421298,41.87859700241902],[-87.70113534075729,41.87838050764916],[-87.70113087774048,41.8782839868073],[-87.70112601822017,41.878178891298234],[-87.70112103573494,41.877991459153456],[-87.70111764913935,41.87783945305807],[-87.70111604608877,41.87776750101638],[-87.70111127454281,41.87754749578904],[-87.70110822268752,41.877376731017726],[-87.70110514477241,41.87720451329258],[-87.70109405432625,41.8768991545601],[-87.70108675102922,41.876649168162224],[-87.7010772777597,41.876336216732156],[-87.70107808733815,41.876205649814715],[-87.70108920097057,41.87609511775632],[-87.70107990192501,41.875928597656646],[-87.70106829031674,41.875720659584786],[-87.70105999463458,41.875556176015934],[-87.70105858420354,41.875528207092614],[-87.70104760435207,41.87532696653071],[-87.70103945839217,41.875177662767406],[-87.70103717373455,41.8751159045709],[-87.70103543971263,41.87495287204516],[-87.70103323829046,41.87475094680456],[-87.70103295741589,41.8747251665981],[-87.7010325703228,41.87467130883715],[-87.70103112628011,41.87449189554629],[-87.70102714185185,41.87434741409217],[-87.70102233156715,41.874169713330225],[-87.70102079618029,41.87405727294721],[-87.70101956006694,41.873936820999035],[-87.70101301980348,41.8737472637704],[-87.70128985466641,41.87374494901376],[-87.70166675354977,41.8737379117557],[-87.70192820540191,41.87373539778564],[-87.70236705208447,41.873731497934386],[-87.70272114497725,41.87372864038694],[-87.70302118537396,41.87372625348624],[-87.70346635009696,41.87371526360298],[-87.70375240368904,41.87370820063625],[-87.7040980505789,41.87370542975333],[-87.70456935308381,41.87370172675082],[-87.70488471330361,41.873698430924954],[-87.70520833686278,41.873694932446234],[-87.7054312698524,41.873692638624114],[-87.70563951401988,41.87369053906015]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6771460.15269","perimeter":"0.0","tract_cent":"1140346.11008379","census_t_1":"17031251900","tract_numa":"24","tract_comm":"25","objectid":"646","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900765.63733458","census_tra":"251900","tract_ce_3":"41.88379349","tract_crea":"","tract_ce_2":"-87.76009805","shape_len":"10368.258828"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76460847976576,41.880249685035345],[-87.7648636633209,41.88024599099717],[-87.76486563496407,41.88049440072997],[-87.7648710713973,41.88066407721561],[-87.76487751798632,41.88085236471485],[-87.7648843957524,41.88104586869214],[-87.76489136401267,41.88124573922245],[-87.76489321468028,41.881302554364595],[-87.76489843624276,41.88146284442603],[-87.7649035429594,41.8816200603542],[-87.76490663070828,41.881716289047425],[-87.76490953228766,41.881806095272346],[-87.76491753411807,41.882088243778966],[-87.76492590093864,41.88224415337139],[-87.76493285180777,41.882373666695955],[-87.76493936301024,41.88256708620321],[-87.76494405198115,41.882709261544136],[-87.76494914367527,41.882864007537655],[-87.76495637806,41.88308361074691],[-87.76496985405478,41.88344424436896],[-87.76498001457375,41.88371490534594],[-87.7649948704122,41.88407732924237],[-87.76500183185051,41.88423547716544],[-87.76500911549806,41.884400946687734],[-87.76501502310272,41.8845548185116],[-87.76502431476472,41.88479923984179],[-87.76503094155993,41.8849797069821],[-87.76504356682642,41.8853286732125],[-87.765053863081,41.885588220287175],[-87.76505731561507,41.88571862264373],[-87.76506233765939,41.88590829617468],[-87.7650670669319,41.886025252263096],[-87.7650737313799,41.88619320577844],[-87.76508468791829,41.88647772873474],[-87.76509054137648,41.88664603497531],[-87.76509498024873,41.886775009141445],[-87.76510210658134,41.886982070722205],[-87.76510636361695,41.88720069580365],[-87.76510673821572,41.88721992495297],[-87.7644472949801,41.88722787639293],[-87.76342559911257,41.8872503845067],[-87.76338232115629,41.88725133794978],[-87.76327509893565,41.887253699558],[-87.76231734702995,41.88727478962709],[-87.76178761126921,41.887279927735236],[-87.76124899234698,41.88728515004771],[-87.7603482587166,41.88729851592554],[-87.76019457685335,41.887300795692525],[-87.75920659663576,41.88731676408657],[-87.75899572684901,41.88731898821671],[-87.7577669793988,41.88733194097669],[-87.7576941003269,41.887332708785806],[-87.75679069639733,41.88727591813358],[-87.75653290531005,41.88726290540355],[-87.75531863207003,41.88720160362843],[-87.75531959178358,41.88716178970921],[-87.75531983196711,41.887151807896295],[-87.75532291121337,41.887024018046624],[-87.75529741639279,41.886829322600526],[-87.75528994816868,41.88676559103194],[-87.75529377499502,41.8866914332918],[-87.75529178173852,41.88662737252775],[-87.75528859967501,41.88649963951569],[-87.7552860830911,41.88637141533708],[-87.75528362619445,41.886300409289625],[-87.75527944038433,41.886179449234554],[-87.75527388490107,41.88603798275321],[-87.75526637229098,41.88584474990625],[-87.7552596913278,41.88563874676547],[-87.75525516495011,41.8854991927026],[-87.75524215848888,41.88517805022765],[-87.75523471924282,41.884984845161895],[-87.75522778061642,41.88480536412451],[-87.75522185951864,41.884651518932976],[-87.75521547356244,41.884459581505084],[-87.75521009135835,41.884319981665705],[-87.7552016038301,41.88409985048914],[-87.75519438702538,41.8838942150589],[-87.75518875587773,41.88374081065551],[-87.75518294312549,41.88358718579365],[-87.75517655720614,41.883431966377564],[-87.75517190929433,41.88331610796105],[-87.755164196293,41.883124795257004],[-87.75516128398147,41.883002332480714],[-87.75515812527983,41.88286952236795],[-87.75515741930532,41.88284701542254],[-87.75515327630356,41.882714914404154],[-87.75515015004865,41.88263805941418],[-87.75514382460672,41.88248429472758],[-87.7551397879921,41.882364022773835],[-87.75513299851822,41.88216173604211],[-87.7551270293598,41.88203363186822],[-87.75512252581338,41.88193440457515],[-87.75512088458504,41.881895071490796],[-87.75511138458813,41.88166738788304],[-87.7551019738691,41.88143204853284],[-87.75509407707881,41.88119509796222],[-87.75508796930238,41.88100996727947],[-87.75508436011334,41.88090050841832],[-87.75508052954225,41.880784325027705],[-87.75507419520564,41.880590850944415],[-87.75506689176672,41.88037184687999],[-87.75528003536547,41.88036888945432],[-87.7555185286354,41.8803659732855],[-87.75585970457432,41.88036189900875],[-87.75608233042612,41.88035945072942],[-87.7562832208763,41.880356570630454],[-87.75651176551614,41.88035329340622],[-87.75684496682193,41.88034988965208],[-87.75721907654028,41.88034636084974],[-87.75750455261249,41.880341588963766],[-87.75770030549734,41.88033831838401],[-87.75783028102708,41.88033614322401],[-87.75809334780446,41.88033241180434],[-87.75832405475018,41.880329670346555],[-87.7585858305268,41.88032653506966],[-87.75872945932996,41.88032517393217],[-87.75890797540735,41.880323481632004],[-87.75932763449923,41.880318225366395],[-87.7596457127932,41.88031410671797],[-87.75989213986387,41.88031091923043],[-87.76011939561249,41.88030801368257],[-87.7603537033336,41.880305017731814],[-87.76075158809715,41.880299592736066],[-87.76105280871523,41.88029579777645],[-87.76133110780015,41.880292766021604],[-87.76140029909534,41.880291782960136],[-87.76154308799596,41.88028984084643],[-87.7616833061024,41.88028793350843],[-87.76182370290687,41.880286576013035],[-87.76204680271239,41.88028441847498],[-87.7622821728972,41.880281637377074],[-87.76263800876447,41.88027654587274],[-87.7628162752759,41.88027402846961],[-87.76297033974876,41.880271829946835],[-87.7631878353425,41.880268116554866],[-87.76334388650352,41.8802654518154],[-87.76349514953972,41.880264446154484],[-87.76391583206082,41.880259644446575],[-87.76415109268586,41.88025677692143],[-87.76434702603255,41.88025379612579],[-87.76460847976576,41.880249685035345]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"16319825.6056","perimeter":"0.0","tract_cent":"1138959.91336762","census_t_1":"17031252100","tract_numa":"37","tract_comm":"25","objectid":"647","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1897909.31533359","census_tra":"252100","tract_ce_3":"41.87598066","tract_crea":"","tract_ce_2":"-87.76525779","shape_len":"17374.7998021"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7678947311161,41.87066654061437],[-87.76808487534048,41.870592931393205],[-87.76939786292976,41.870687352998196],[-87.77081089450353,41.87078895195613],[-87.77367733571226,41.87099384033563],[-87.77431227817938,41.87103921512248],[-87.77431684899364,41.87108758347212],[-87.77433133645546,41.8712410850468],[-87.77433133678436,41.8712410894392],[-87.77434296646669,41.8713642769499],[-87.77434506653373,41.871414013355896],[-87.77435442389773,41.87163379088557],[-87.77436229363288,41.87186835352494],[-87.7743749787944,41.87213178143878],[-87.77438536286775,41.872309549665296],[-87.77438750242426,41.87234633117537],[-87.77438750240754,41.872346333096274],[-87.7743999388232,41.87255935467243],[-87.77440073693684,41.8725730216533],[-87.77440079284943,41.87257397912155],[-87.7744092816964,41.87277122231821],[-87.77441899128351,41.872996929919225],[-87.77442381150108,41.87326547869888],[-87.77443122957659,41.87355618624242],[-87.77443803279581,41.87377839418975],[-87.77444075001117,41.873858457038494],[-87.77444720330408,41.874049104346966],[-87.77445334223196,41.87422100713748],[-87.7744626787153,41.87448540629629],[-87.77446948874828,41.87469424972271],[-87.77447641229728,41.87490262717048],[-87.77448064341554,41.87503032471779],[-87.77448123767826,41.87504826103364],[-87.77448768451073,41.87529033558337],[-87.7744960073153,41.875586783188304],[-87.77449951687889,41.87568970922348],[-87.7745030922313,41.8757935142868],[-87.77451240369369,41.876058719784425],[-87.774512506346,41.876061646481226],[-87.77451951247482,41.87623528175918],[-87.77452635668915,41.876414862216954],[-87.77452635697504,41.87641487154881],[-87.77453332421413,41.87659715157211],[-87.77454175505484,41.876843297202385],[-87.77454493092746,41.876967682196685],[-87.77455692280469,41.87728558017797],[-87.77456131061568,41.87740569002496],[-87.77456131058699,41.87740569331792],[-87.77456651620179,41.8776090913654],[-87.7745719947897,41.87782322460275],[-87.77458268795779,41.87805409597419],[-87.77459392452309,41.878332362941],[-87.774603779002,41.87859212691017],[-87.77461394123405,41.878858807879155],[-87.77461739579986,41.87895539463778],[-87.77462300033926,41.879113024290454],[-87.77463376617337,41.879411432269144],[-87.77463432556432,41.879427351650484],[-87.77463998995663,41.87960328546467],[-87.77464451096291,41.87976302262675],[-87.77465593824304,41.88008681783894],[-87.7746559382048,41.88008682222955],[-87.77440565449334,41.88009029239169],[-87.77413064634604,41.880095045852876],[-87.77371086624949,41.88010183752599],[-87.77344258150713,41.880106183021894],[-87.77322549074115,41.88010991973346],[-87.77302309092637,41.880113403341845],[-87.77256176949166,41.880121342140825],[-87.77236520798778,41.88012485529327],[-87.77198648710952,41.880131017941835],[-87.77178768919238,41.88013407487975],[-87.7713981014082,41.88014006444805],[-87.77101556311453,41.88014594423681],[-87.77069042363091,41.88015145935441],[-87.77058178684187,41.88015328656683],[-87.77050605691605,41.88015456227231],[-87.77027064028856,41.88015854030231],[-87.76997888541787,41.88016344869294],[-87.76975918638091,41.88016659607514],[-87.76942954322304,41.88017131795394],[-87.76923599292992,41.88017478565042],[-87.76891257635972,41.88018060606431],[-87.76857226638131,41.88018661691622],[-87.76830401391952,41.88019138964488],[-87.7681215395013,41.88019466873672],[-87.76778730382328,41.880200673952245],[-87.76761729974548,41.88020321205749],[-87.76725294026812,41.88020888098751],[-87.7670099208111,41.880212951794036],[-87.76668650816171,41.880218326877056],[-87.76649618190845,41.880220898064906],[-87.76613599388429,41.88022576296023],[-87.76587559570355,41.88023095300237],[-87.76552008730688,41.880236440628444],[-87.7651565752365,41.88024175034353],[-87.7648636633209,41.88024599099717],[-87.76460847976576,41.880249685035345],[-87.76434702603255,41.88025379612579],[-87.76415109268586,41.88025677692143],[-87.76391583206082,41.880259644446575],[-87.76349514953972,41.880264446154484],[-87.76334388650352,41.8802654518154],[-87.7631878353425,41.880268116554866],[-87.76297033974876,41.880271829946835],[-87.7628162752759,41.88027402846961],[-87.76263800876447,41.88027654587274],[-87.7622821728972,41.880281637377074],[-87.76204680271239,41.88028441847498],[-87.76182370290687,41.880286576013035],[-87.7616833061024,41.88028793350843],[-87.76154308799596,41.88028984084643],[-87.76140029909534,41.880291782960136],[-87.76133110780015,41.880292766021604],[-87.76105280871523,41.88029579777645],[-87.76075158809715,41.880299592736066],[-87.7603537033336,41.880305017731814],[-87.76011939561249,41.88030801368257],[-87.75989213986387,41.88031091923043],[-87.7596457127932,41.88031410671797],[-87.75932763449923,41.880318225366395],[-87.75890797540735,41.880323481632004],[-87.75872945932996,41.88032517393217],[-87.7585858305268,41.88032653506966],[-87.75832405475018,41.880329670346555],[-87.75809334780446,41.88033241180434],[-87.75783028102708,41.88033614322401],[-87.75770030549734,41.88033831838401],[-87.75750455261249,41.880341588963766],[-87.75721907654028,41.88034636084974],[-87.75684496682193,41.88034988965208],[-87.75651176551614,41.88035329340622],[-87.7562832208763,41.880356570630454],[-87.75608233042612,41.88035945072942],[-87.75585970457432,41.88036189900875],[-87.7555185286354,41.8803659732855],[-87.75528003536547,41.88036888945432],[-87.75506689176672,41.88037184687999],[-87.75505994444154,41.8801635271433],[-87.75505629066129,41.880027091785095],[-87.75504779452343,41.879831274176674],[-87.75503990895265,41.879661008608444],[-87.75503391169251,41.87951569778186],[-87.75502923444401,41.8793764273825],[-87.75502314285562,41.879195032743056],[-87.75502017414492,41.879117026185575],[-87.75501304421087,41.87893293666837],[-87.75500789847577,41.878796518190455],[-87.75500098055566,41.878606718394735],[-87.7549962155823,41.87847132570623],[-87.75498946356515,41.87827946333221],[-87.75498292143133,41.878113156202176],[-87.75497946213991,41.87801846238487],[-87.75497812106067,41.87798173699917],[-87.75497168165855,41.877804042008314],[-87.75496623782392,41.87765439800166],[-87.75496320190999,41.87756602083145],[-87.75495844295254,41.877427491467905],[-87.75495235828787,41.877295983727215],[-87.75494696282873,41.8771150831971],[-87.75493995583972,41.876961094832176],[-87.75493579539663,41.8768279504945],[-87.7549294065089,41.876659416582505],[-87.7549213196914,41.87644609725019],[-87.7549157310947,41.87632474571684],[-87.75491084567247,41.87620315073965],[-87.7549081140284,41.876135161853924],[-87.7549029848864,41.876011726995884],[-87.75489816457126,41.87585404542105],[-87.75489376767756,41.87575406031418],[-87.75488530611753,41.87556163544386],[-87.75488032475613,41.87544218048323],[-87.75487408080505,41.87529681314118],[-87.75487343593052,41.87528179910552],[-87.75486963276734,41.875109056685666],[-87.7548646514273,41.874961061486275],[-87.7548593580528,41.87484754954133],[-87.75485045164045,41.87465871050853],[-87.75484629643215,41.87454126326847],[-87.75483861214039,41.874346958614645],[-87.75483152310592,41.87412329399216],[-87.75482794049888,41.873945124514584],[-87.75482257471468,41.87367829541355],[-87.75482011536211,41.87350720626577],[-87.75481639601261,41.87338512615277],[-87.75481450563885,41.87332309348132],[-87.75480903578277,41.87313568829097],[-87.75480598002616,41.87294637619869],[-87.75504411242794,41.87294263396194],[-87.75532376859587,41.87294036477899],[-87.75549852187739,41.87293929904763],[-87.75569855831398,41.872938078934034],[-87.75595776767193,41.872935225119306],[-87.75608526201417,41.87293382155123],[-87.75638593849251,41.872929514093606],[-87.75673277199589,41.87292472491594],[-87.75700924161397,41.87292161207888],[-87.75725406430631,41.872918120294045],[-87.7574153389891,41.87291555455209],[-87.75756620221027,41.87291315428056],[-87.75778848593495,41.872913170771334],[-87.75803320383932,41.8729090730643],[-87.7583645432247,41.87290425595165],[-87.7586323896863,41.872900492298626],[-87.75888579966328,41.872897480459386],[-87.75891675563132,41.87289711251519],[-87.75921727698483,41.87289364813543],[-87.75950971152328,41.87289054185247],[-87.75955811553777,41.87289002765199],[-87.7599133466719,41.87288636824986],[-87.76031462980082,41.87288173006325],[-87.76063947035537,41.87287687396008],[-87.76100295338422,41.872870178771905],[-87.76130214412633,41.872867717678695],[-87.76146650497846,41.872865890218286],[-87.76154980505532,41.872864793992925],[-87.76178292333766,41.87286259213517],[-87.76200169844816,41.872860771801136],[-87.76236131105301,41.87285575449598],[-87.76254454970054,41.872853319835095],[-87.76288436739826,41.87284880377371],[-87.76328940209132,41.87284335054963],[-87.76369480023438,41.87283839139094],[-87.76390553337393,41.872836667772035],[-87.76409992634326,41.87283507655411],[-87.76458743089775,41.87282667922313],[-87.76458038595739,41.87266060926169],[-87.76458545474708,41.87252811157346],[-87.76456963340243,41.871813494079134],[-87.76454620071424,41.87150354835973],[-87.76449962598025,41.871294839375025],[-87.76445697478403,41.87110371138551],[-87.7644409604818,41.871031947449374],[-87.76454023479813,41.87102023107282],[-87.7649644989374,41.87097015775425],[-87.76560778727,41.870891978994926],[-87.76620234688417,41.87082301710182],[-87.76678226180985,41.87075751997394],[-87.7673058661728,41.87070980975209],[-87.76740454157272,41.870700818205435],[-87.76781114646217,41.87067409865033],[-87.7678947311161,41.87066654061437]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1889770.58902","perimeter":"0.0","tract_cent":"1156844.96607393","census_t_1":"17031242700","tract_numa":"9","tract_comm":"24","objectid":"654","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1905849.53296445","census_tra":"242700","tract_ce_3":"41.89742577","tract_crea":"","tract_ce_2":"-87.6993744","shape_len":"5714.22661561"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6967907260668,41.899283135191695],[-87.69678719934063,41.89913608897328],[-87.69678182047124,41.898904692440695],[-87.69677977592019,41.89881315939111],[-87.69677379134457,41.898544411776065],[-87.69677020615299,41.89838761356317],[-87.69676728215536,41.89826040190211],[-87.69676322990217,41.89807300310669],[-87.69675797315962,41.89782928530168],[-87.6967565113757,41.89776196102299],[-87.69674820250425,41.8974591979819],[-87.69674113814415,41.897201776651734],[-87.69673704875485,41.89700699533797],[-87.6967312055161,41.89676686973799],[-87.69672656618059,41.89658682165105],[-87.69672192594983,41.89640682871262],[-87.69671673683885,41.89618221139207],[-87.69671289900786,41.89601026351099],[-87.69671023286644,41.89589035290342],[-87.69670263372144,41.8956535191163],[-87.69698600386958,41.895653315871044],[-87.69729151476898,41.895654111620594],[-87.69794554234464,41.895648822830395],[-87.69824638345311,41.89564638877065],[-87.69860721811024,41.895642566001875],[-87.69894432675581,41.89563866591449],[-87.69916127872685,41.895636116704026],[-87.69929701085948,41.89563452152675],[-87.69991108717576,41.89562873832581],[-87.70055740198183,41.89562264815074],[-87.70098089837224,41.89561504683304],[-87.7016089611892,41.8956018735483],[-87.70172514096377,41.895600114150575],[-87.70176607804021,41.895599494078496],[-87.70189872918016,41.895597484807716],[-87.70203544742704,41.8955964801805],[-87.70220404706863,41.895594886344384],[-87.7022100584931,41.89580191329078],[-87.70221651074165,41.8960008787034],[-87.70222631265271,41.89631849600233],[-87.70223367988893,41.89655902628742],[-87.70188087481537,41.8964182000205],[-87.70188855041242,41.89668348725345],[-87.70189539708075,41.896920135149664],[-87.70190068983001,41.89709129529471],[-87.70191201322591,41.897463119374144],[-87.70192344005332,41.897846826826715],[-87.70192911195012,41.898022241775024],[-87.70193177366191,41.898104556682995],[-87.70193899706304,41.89836313113697],[-87.70194583117923,41.89860902505623],[-87.70195431711409,41.89891469756108],[-87.70195112884186,41.899238357461485],[-87.7018054722673,41.89923983971445],[-87.70171808099165,41.89924049518311],[-87.70148470561516,41.899242246436174],[-87.70116434676801,41.899244270313424],[-87.70108191578903,41.89924544382352],[-87.70068338516693,41.899251116612234],[-87.70046927700584,41.89925250350758],[-87.70025532091847,41.899253889195506],[-87.69986501910797,41.89925760423396],[-87.6996784655512,41.899259379580386],[-87.69941386234655,41.89926173339173],[-87.69925977458453,41.89926340215043],[-87.69902784209042,41.899265913512195],[-87.69865066792319,41.8992687221822],[-87.69833818634481,41.89927104817711],[-87.69803739595356,41.89927483893567],[-87.69775253301472,41.89927842836953],[-87.69742507318448,41.899281013926725],[-87.69711099656293,41.899283492677576],[-87.69694998139558,41.89928172368643],[-87.6967907260668,41.899283135191695]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3538414.34982","perimeter":"0.0","tract_cent":"1147686.71623367","census_t_1":"17031260300","tract_numa":"14","tract_comm":"26","objectid":"648","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900990.20870032","census_tra":"260300","tract_ce_3":"41.88427202","tract_crea":"","tract_ce_2":"-87.7331366","shape_len":"7968.61777169"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73520275520819,41.880613881614764],[-87.73547568846308,41.880610654060774],[-87.73548566378449,41.88088483999972],[-87.73549119537773,41.881063546840934],[-87.73549482891355,41.88119375264541],[-87.73549711244677,41.88128493176972],[-87.73549881632272,41.881352967546725],[-87.73550425293888,41.88150247507317],[-87.7355063997011,41.881567003533526],[-87.7355134569441,41.88176783693783],[-87.73551570418815,41.881910621181525],[-87.73551598066906,41.881928195415625],[-87.7355178384352,41.882046264024765],[-87.73553808311064,41.88258877803299],[-87.73554152119725,41.88268091210553],[-87.73555620850018,41.88313022195045],[-87.73556000718035,41.883246238335346],[-87.73556421237821,41.883374666596566],[-87.73558059901714,41.883903650735675],[-87.73558537519672,41.884059987382464],[-87.73559587806147,41.88440579004688],[-87.73560386100513,41.88456539612675],[-87.73560726947683,41.884633539803424],[-87.735611964504,41.88490993681548],[-87.73561489012552,41.884997933150515],[-87.73562248330117,41.88522623830733],[-87.7356275699899,41.88537508583696],[-87.7356313582843,41.88548479282307],[-87.73564068839677,41.88581552338124],[-87.73564510834429,41.88598043581153],[-87.73564629522228,41.88602472808995],[-87.73564756420006,41.88607207184854],[-87.7356509609731,41.886198810869516],[-87.7356575220345,41.88639717170132],[-87.73566061385898,41.88648799407927],[-87.73566853543998,41.88672069332425],[-87.73567239389119,41.88687773395439],[-87.73567537800062,41.886999187587],[-87.73568600826347,41.88725271848236],[-87.73568846122056,41.88731122183081],[-87.73570314056761,41.88766132650229],[-87.73570985197044,41.88786919687485],[-87.73490958877825,41.8878808088806],[-87.73378841380652,41.887894856985724],[-87.73345830675726,41.887898964612134],[-87.73246063629215,41.88791124306863],[-87.73122882452464,41.88792537329741],[-87.7307894411509,41.88793130119416],[-87.73078384382673,41.88772577120642],[-87.73077709213541,41.887497547927644],[-87.73077168625024,41.88731483705636],[-87.73076922229325,41.88723156289213],[-87.73076461208183,41.8870757209807],[-87.73075986544472,41.886939361945345],[-87.73075689086099,41.88685391796522],[-87.73075454452058,41.88676790098865],[-87.73075028064386,41.886611593810876],[-87.73074417435265,41.886403383817544],[-87.73074178101042,41.88632178509804],[-87.73072892052045,41.885883268578624],[-87.73072677337774,41.885782430409144],[-87.73072591176967,41.885741989418044],[-87.7307249374659,41.88569622866255],[-87.73072313645153,41.88561166760828],[-87.73071306029921,41.88528096047383],[-87.73070994621094,41.885181767883864],[-87.73069624343235,41.88474530504014],[-87.73069251525268,41.884621153860216],[-87.73068885921583,41.88449940921182],[-87.73067235340173,41.88396542932593],[-87.73065523504488,41.88340372927485],[-87.73065309368515,41.88330448028512],[-87.73065045176187,41.88318202385818],[-87.73065045128534,41.88318199641321],[-87.73065035446753,41.88317916905569],[-87.73063834493115,41.88282515324141],[-87.73063509066863,41.88271713848748],[-87.73063290668556,41.88264466351586],[-87.73062583262762,41.88240988287789],[-87.73062261432985,41.882303437191226],[-87.7306208180777,41.88224402165561],[-87.73061987999341,41.88218754010803],[-87.73061527829492,41.88198560516013],[-87.73061232262089,41.88184680204126],[-87.73060147634807,41.88154136516877],[-87.7305974442403,41.881421530122786],[-87.7305946553096,41.881342552206874],[-87.73059117975001,41.88124410902472],[-87.73058704665837,41.881089970335445],[-87.73058328125465,41.880924060745166],[-87.73057382275401,41.88066748339875],[-87.7308879016258,41.88066432435808],[-87.73120467120555,41.88065915248726],[-87.73150691441056,41.88065626367165],[-87.73183894274865,41.88065292633312],[-87.73222503138089,41.880648883083715],[-87.73253455937287,41.88064449291408],[-87.73287452443162,41.88064061781005],[-87.73302542683213,41.88063924150863],[-87.73335076645012,41.88063627372747],[-87.73353014232346,41.88063314924188],[-87.73385633317115,41.88062966196916],[-87.73396687540705,41.8806284590334],[-87.73423687950535,41.88062531216645],[-87.73449712030008,41.880621675223466],[-87.73472738467069,41.880619308178225],[-87.73494145625591,41.880616801413055],[-87.73520275520819,41.880613881614764]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3740485.67185","perimeter":"0.0","tract_cent":"1146461.09228964","census_t_1":"17031260500","tract_numa":"19","tract_comm":"26","objectid":"649","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898157.82463257","census_tra":"260500","tract_ce_3":"41.87652306","tract_crea":"","tract_ce_2":"-87.73770947","shape_len":"9066.44355904"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73534932100888,41.87696622637894],[-87.73534422785899,41.8767988485837],[-87.73533933260691,41.87668586972771],[-87.73533401178553,41.876531889543884],[-87.73533310201263,41.8765076530704],[-87.73532909977536,41.87640101807829],[-87.7353237231177,41.8762648477854],[-87.73531679774001,41.87605659358811],[-87.73531316936452,41.87594747506563],[-87.73530611202258,41.87575133411792],[-87.73530066545518,41.87560297896848],[-87.73530037511473,41.87559485447237],[-87.73529519050123,41.875449793784576],[-87.73528835044054,41.87533279816559],[-87.73528409828322,41.8751437681641],[-87.73528108123865,41.8750096521253],[-87.73527489902499,41.874861485222475],[-87.73526715190596,41.874739353115956],[-87.7352644008039,41.87468305445836],[-87.73524113362973,41.874230874858405],[-87.73523136389333,41.874041001590214],[-87.7352290888472,41.873918760749625],[-87.73522169634771,41.873520426409435],[-87.7352165328915,41.8732421808911],[-87.7355768822435,41.87312605583762],[-87.73654290810457,41.8726916561275],[-87.73719413616368,41.87239900183276],[-87.73784051745602,41.872133418465936],[-87.73812616012745,41.87201586751584],[-87.73900606460924,41.871808088107535],[-87.73913899065815,41.871776873983],[-87.7399591273951,41.871678890358844],[-87.74002753014297,41.87167684281064],[-87.74002970957464,41.8717389428059],[-87.74003920562976,41.87200244019448],[-87.74005084632606,41.872331810452984],[-87.74005155321431,41.872343274655066],[-87.74005160948498,41.87234485261694],[-87.74006375587861,41.872682798788226],[-87.7400704131614,41.8728641528364],[-87.74008116263063,41.87315699435505],[-87.74008349308332,41.873220480961336],[-87.74008463717456,41.873251651155044],[-87.74008463893341,41.87325169918856],[-87.74008456621938,41.87325170073391],[-87.73938985879195,41.87326562985246],[-87.73939240658947,41.873414788498856],[-87.73940043475103,41.873574819947024],[-87.73940563982039,41.873720209649946],[-87.73940810729755,41.87378913086595],[-87.73941398704295,41.87409794455694],[-87.73941732172746,41.874180160667045],[-87.73942911349887,41.87447088433893],[-87.73943507282326,41.87463186554516],[-87.73943923030983,41.87472678328201],[-87.73944470209237,41.87494860202561],[-87.73944819145383,41.87509490900492],[-87.73945298114089,41.87529573781568],[-87.73945937918066,41.87542167717204],[-87.7394661271938,41.875581207975465],[-87.73947264909273,41.87574136878275],[-87.73947875031405,41.875883552562556],[-87.73948466878153,41.87600411096655],[-87.7394933007475,41.87617992463055],[-87.73949670236958,41.87636380705908],[-87.73949925432306,41.87650064862244],[-87.73950192796754,41.87662434584869],[-87.7395145297237,41.876909120749],[-87.73981621692674,41.876912827119554],[-87.74021186291328,41.87690736262681],[-87.74021207554497,41.8769073596086],[-87.7402165907235,41.87703886356255],[-87.74021730176321,41.87705957617613],[-87.7402326536363,41.87753180410071],[-87.74023555423331,41.87761701352212],[-87.74024182265397,41.877801158496986],[-87.74025187504036,41.87809646433068],[-87.74025413750098,41.87816292776594],[-87.74026670888406,41.87851110249665],[-87.74027205789754,41.87865923566074],[-87.74027318085732,41.87869310550775],[-87.74028790435537,41.87913725691887],[-87.74029313221975,41.879294967421615],[-87.74029857619831,41.87944690019449],[-87.74030360372062,41.879587203426205],[-87.74030360934235,41.87958734999817],[-87.74030540173614,41.87963738528103],[-87.74031111291136,41.87979676429918],[-87.74032905236095,41.88031325445271],[-87.74033051466266,41.88035534671542],[-87.74033782959627,41.880555153493816],[-87.74021092798725,41.88055634914849],[-87.7400868355042,41.880557628878286],[-87.73983681319129,41.880560206705965],[-87.73959909555629,41.8805624908533],[-87.73940816055133,41.88056479637561],[-87.73917825626319,41.88056797050269],[-87.73892522454119,41.88057039328871],[-87.73865874152271,41.88057403566103],[-87.73837236009243,41.88057719013336],[-87.73817705514922,41.88057949868588],[-87.73792763776828,41.88058271819468],[-87.73774020369876,41.880585137338485],[-87.73730357582274,41.88059041873705],[-87.73698524222998,41.880594062532104],[-87.73666779421839,41.88059724352341],[-87.73631861801013,41.88060053312356],[-87.73607329005557,41.88060375833787],[-87.73582792996969,41.880606488347155],[-87.73547568846308,41.880610654060774],[-87.73546876795515,41.880420425104845],[-87.73546458678062,41.88028988684691],[-87.73546003723986,41.880147656166265],[-87.73545829977039,41.88009008484557],[-87.73545574474944,41.88000542682021],[-87.73545003413706,41.87984988047792],[-87.73544334951829,41.87964452367622],[-87.73543844448206,41.87949383609525],[-87.73543328295578,41.87934636069113],[-87.73542819672892,41.87919660026394],[-87.73542216908352,41.879025994000635],[-87.73541807128899,41.87891406215791],[-87.73541236677396,41.878751024562945],[-87.73540838687225,41.878637281574576],[-87.73540234345559,41.87848988388336],[-87.73539799734324,41.87836524485876],[-87.7353959449777,41.87830565650268],[-87.73539268012576,41.87821085310321],[-87.73538843154572,41.878091510983076],[-87.73538033762618,41.87786062387769],[-87.73537491462092,41.87770592831748],[-87.73537047007231,41.87757610240356],[-87.73536603388314,41.87745719809841],[-87.73536435322954,41.87741198001506],[-87.73536030932028,41.87730318811702],[-87.73535611752558,41.87718958203111],[-87.73534932100888,41.87696622637894]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5244786.09382","perimeter":"0.0","tract_cent":"1142734.04334002","census_t_1":"17031250200","tract_numa":"18","tract_comm":"25","objectid":"650","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911164.44161963","census_tra":"250200","tract_ce_3":"41.9122849","tract_crea":"","tract_ce_2":"-87.75107006","shape_len":"9287.34486741"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75514997999527,41.90950908014136],[-87.75579562249426,41.90950127161691],[-87.7557510163798,41.90967555160588],[-87.75569181645854,41.90990135144764],[-87.75567560724654,41.909967405999936],[-87.75567404137314,41.90999153944299],[-87.75567257787212,41.9100140976605],[-87.75568239030787,41.91036823580777],[-87.75568558966577,41.910421188214904],[-87.75570256226337,41.91070209125766],[-87.75570948396555,41.91086979888525],[-87.75571607004582,41.911029381881626],[-87.75572815495472,41.91133687829228],[-87.75573923014777,41.91161868575828],[-87.75574537177329,41.911791191570956],[-87.75575209973829,41.9119801662879],[-87.75576094515415,41.912248267673974],[-87.75576618081763,41.91240696568208],[-87.75577829219438,41.91269983647349],[-87.75578274081221,41.91280740541446],[-87.75579607345944,41.91315664945653],[-87.7558023271933,41.9133204562863],[-87.75581335516259,41.91360919562253],[-87.75582239108256,41.913845776238915],[-87.75582492440756,41.91391264703621],[-87.75584387482924,41.9144129619078],[-87.75585797442415,41.91478519677926],[-87.75586818301744,41.91504134249394],[-87.75587967625808,41.9153297160767],[-87.75588259711608,41.915403006743794],[-87.75588614422351,41.91549201102221],[-87.75576275848404,41.915494472788914],[-87.75563829384073,41.91549487575946],[-87.75545416140204,41.91549120500366],[-87.7552705257442,41.91548342010314],[-87.75508739199032,41.91547083530214],[-87.75491994113555,41.915450782292574],[-87.75452450083552,41.9154014513652],[-87.75412078089416,41.915353449703275],[-87.75372487912372,41.91530445699847],[-87.7533427514228,41.9152558755319],[-87.7530179461094,41.91521684429467],[-87.75285225365613,41.91519714238155],[-87.75273993107322,41.91518388022855],[-87.75263395527375,41.91517133831649],[-87.75195454865941,41.9150872888361],[-87.75151826782967,41.91503465350788],[-87.75104667956037,41.914976006261625],[-87.75064710242471,41.91492767064194],[-87.75024248253649,41.91487827838856],[-87.749786944662,41.91482245198039],[-87.7493694838042,41.91477127652156],[-87.74908047597256,41.91473550318319],[-87.74873962422387,41.914693976719896],[-87.74861989132239,41.91467930288911],[-87.74845991254618,41.91465968849761],[-87.74840465859816,41.9146529139157],[-87.7483038147178,41.9146406457961],[-87.7480460143363,41.91460743032751],[-87.7477239868054,41.91456668340512],[-87.74752484394567,41.91454748706922],[-87.74735365507301,41.914534950051035],[-87.7471686549886,41.9145261164199],[-87.74701995556882,41.91451506664564],[-87.74665386130172,41.914472033256956],[-87.74630064538536,41.91442700663957],[-87.74616990761983,41.91441055857314],[-87.74600623982677,41.91439016641249],[-87.74599048420129,41.91392373513744],[-87.7459760357561,41.9134959978974],[-87.74597293337075,41.91340207433925],[-87.74596913186379,41.91328698915835],[-87.74595696932889,41.912918787925115],[-87.74594041224377,41.912374823409394],[-87.74592915826821,41.912005089991766],[-87.74590681785331,41.911454182798664],[-87.7458960779184,41.91118933414616],[-87.74589688779619,41.91099638590135],[-87.74589753734215,41.910841839109615],[-87.7459090147372,41.91072801205964],[-87.74592571592316,41.910661549789],[-87.74594096775527,41.91062301641739],[-87.74597590514504,41.9105347481489],[-87.74605573139607,41.9103330712129],[-87.74611043775472,41.91008606160864],[-87.74611356270911,41.91007195108747],[-87.74611444687834,41.909625781842614],[-87.74712596845181,41.909612799241955],[-87.74806113678572,41.9096001161745],[-87.74867447505962,41.909592279087384],[-87.74884730867,41.90959007003861],[-87.74920146585144,41.90958558512844],[-87.74950271437424,41.90958176866059],[-87.75015789753598,41.90957368194989],[-87.75103537254165,41.90956255622605],[-87.75121995008428,41.90956021517832],[-87.75159848135425,41.90955541284417],[-87.75195473692949,41.909550409764584],[-87.75226047149286,41.90954611508548],[-87.75264718616968,41.9095406819339],[-87.75286947877161,41.90953755831545],[-87.75349144067464,41.90953055330301],[-87.75409231208258,41.90952378238765],[-87.7547124510453,41.90951516387082],[-87.75514997999527,41.90950908014136]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1785911.80803","perimeter":"0.0","tract_cent":"1163422.05666278","census_t_1":"17031240300","tract_numa":"8","tract_comm":"24","objectid":"659","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911343.00735759","census_tra":"240300","tract_ce_3":"41.91236435","tract_crea":"","tract_ce_2":"-87.67506276","shape_len":"5396.53905504"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6771913635302,41.91049062656362],[-87.67758604859891,41.910472744553736],[-87.67750553148015,41.910538849893115],[-87.67746629345153,41.91058209468321],[-87.67746993756097,41.91064622431244],[-87.67747270145514,41.91088943388687],[-87.6774744301776,41.91096288048914],[-87.67748314739771,41.91133326318626],[-87.67748901883546,41.91157075503784],[-87.67749346462944,41.91175019825254],[-87.67749777012425,41.91192486569852],[-87.67749904340695,41.91197651939557],[-87.67750286162179,41.91213142558998],[-87.67750625947302,41.91230740644308],[-87.67751068867298,41.91253682060661],[-87.6775188197335,41.912912524757935],[-87.67752251571594,41.913075251285136],[-87.67752895005245,41.91335852003841],[-87.67753510980535,41.913664811299476],[-87.6775382004689,41.91382720504047],[-87.67754179563619,41.914016116681736],[-87.67754520615992,41.914170810833],[-87.67632589084299,41.91417880879524],[-87.67571867807344,41.91419797330293],[-87.67570177198795,41.91419850682912],[-87.67522604174812,41.9141999524685],[-87.67511159286691,41.914204938601294],[-87.67496050982393,41.914211520281086],[-87.67448269318866,41.91421934081615],[-87.6743658020968,41.914221253474096],[-87.67389122634962,41.91422966616014],[-87.67361270553481,41.914234602216084],[-87.67320537214002,41.91424097083599],[-87.67305570333131,41.91424331062074],[-87.67266732683025,41.91425042601686],[-87.67266481066133,41.91415899466903],[-87.67265710951678,41.91387606309881],[-87.6726544720088,41.913779121456784],[-87.67264315038547,41.91336286642381],[-87.67263406610878,41.91302892369335],[-87.67262554069555,41.9127147538676],[-87.67262035582172,41.91252368691522],[-87.67261954158276,41.9123828757722],[-87.67261885119753,41.912263470335695],[-87.67261358935374,41.91204788048152],[-87.67261193208024,41.91197997895657],[-87.672608830632,41.911852903234895],[-87.67259607326666,41.91133010875779],[-87.67258834874235,41.911013298007575],[-87.67258537391396,41.91089129982028],[-87.67258148603092,41.910731837347065],[-87.672575952913,41.910561306424746],[-87.67267590910173,41.91056031707812],[-87.67319849523265,41.91055131601792],[-87.6734439139163,41.910547088078445],[-87.67379939445925,41.91054160873743],[-87.67396399113498,41.9105390713088],[-87.6744155699232,41.910532807046906],[-87.67484411005039,41.910526860594175],[-87.67501822696697,41.91052404282432],[-87.67532241261858,41.91051911950641],[-87.67563642322315,41.91051476263318],[-87.67589634725853,41.910511155615886],[-87.67624534094233,41.91050602947468],[-87.67634146288485,41.910504619826234],[-87.67645426659199,41.91050296002903],[-87.6768571718713,41.910496218909614],[-87.6771913635302,41.91049062656362]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14165842.123","perimeter":"0.0","tract_cent":"1136119.07339888","census_t_1":"17031250400","tract_numa":"43","tract_comm":"25","objectid":"651","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911353.86957652","census_tra":"250400","tract_ce_3":"41.91292537","tract_crea":"","tract_ce_2":"-87.7753675","shape_len":"15897.0169549"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76573358331093,41.916585153674006],[-87.76571525571143,41.91586853677951],[-87.76571244471819,41.91577220521157],[-87.7657037550503,41.91547440984214],[-87.76568969311418,41.914992525517945],[-87.76567120981662,41.91435911531547],[-87.7656323834554,41.91302850398399],[-87.76563596656541,41.91285297406256],[-87.76562880625549,41.91266819700909],[-87.76560696234944,41.912104477632376],[-87.76558659896581,41.911566589052164],[-87.76557194845697,41.9112036830531],[-87.7655612330646,41.91093825309928],[-87.76555208612675,41.91071427818763],[-87.7655424436604,41.91042600335524],[-87.76553282788174,41.91016374400313],[-87.76554928474036,41.90994008775951],[-87.7655672822635,41.90988097917103],[-87.7655936702213,41.90979431382276],[-87.76561992877298,41.9097124184086],[-87.76566626537516,41.90953298229674],[-87.76572416664557,41.90937873065775],[-87.76634138619906,41.90937226733561],[-87.76673931854526,41.9093652027004],[-87.76712156132751,41.90935841662302],[-87.76747830407206,41.90935207963231],[-87.76791596626067,41.909347256637595],[-87.76833062870762,41.909342685714144],[-87.76873463650064,41.90933823077451],[-87.7690954788127,41.9093336158314],[-87.76954854241421,41.909327822499016],[-87.76982432687417,41.90932429146186],[-87.77027948245693,41.9093187192873],[-87.77032570348845,41.90931815338234],[-87.77075396483409,41.909312908767646],[-87.77089497937519,41.9093111816011],[-87.77145821864052,41.90930552323344],[-87.7717324895043,41.90930276697949],[-87.77196951225524,41.909299685282015],[-87.7723843643053,41.909294290271774],[-87.77271633224197,41.90928936839152],[-87.77297191327139,41.909285578301365],[-87.7731789891132,41.909283048567616],[-87.77359064246266,41.909278003243784],[-87.77396610273041,41.9092736470474],[-87.77406703178856,41.90927247592415],[-87.77439226864254,41.90926845412077],[-87.7747469362693,41.90926406743042],[-87.77502032982227,41.90926081442242],[-87.77515252653706,41.90925915166696],[-87.77535930623385,41.90925656551848],[-87.77559930561618,41.909253556104375],[-87.77615024792617,41.90924667009569],[-87.77630572365784,41.9092447265401],[-87.77643742053651,41.90924307991349],[-87.77643742567957,41.90924307993843],[-87.77658272877089,41.90924125846164],[-87.77665684226564,41.90924032935741],[-87.77668972611553,41.90923991247891],[-87.77690782398686,41.90923718246806],[-87.7772944202323,41.90923230376094],[-87.77765162550389,41.90922755677439],[-87.77797899623515,41.90922321323797],[-87.77801375277166,41.90922285992194],[-87.77801376673375,41.90922285971504],[-87.77801887298315,41.90922280811912],[-87.77807992679293,41.90922219144842],[-87.77821035365274,41.909220873639455],[-87.77832615577626,41.90921970590842],[-87.77844024136586,41.90921855501274],[-87.77886831821016,41.909213130776465],[-87.77908241196565,41.90921043191085],[-87.77934368331236,41.90920694544269],[-87.77951533970587,41.90920494689777],[-87.77978689439932,41.90920178316609],[-87.77988034455795,41.90920031484222],[-87.77993121953584,41.909199515305794],[-87.78010783917385,41.909197046106094],[-87.7804242254281,41.909192614684834],[-87.78049560753607,41.909191581311994],[-87.7805679243633,41.90919053455679],[-87.780631186037,41.9091898346768],[-87.78082029978819,41.90918774257479],[-87.7811440992003,41.909184168658896],[-87.7812877966819,41.90918225255159],[-87.78171330144053,41.9091769977137],[-87.7819360279749,41.909174252944226],[-87.78212113463934,41.909175964651276],[-87.78241743722417,41.90917867639148],[-87.78257009366982,41.90917729644737],[-87.7826454851911,41.90917661494219],[-87.78287305618623,41.90917452276225],[-87.78305286453724,41.90917285959815],[-87.78335508997749,41.90916936760706],[-87.7833550984268,41.909169367647536],[-87.7834930187324,41.909167761395764],[-87.78362893148068,41.909166179122046],[-87.78386922301749,41.90916299300746],[-87.78414265523642,41.909159416047714],[-87.78428609629759,41.909157440076754],[-87.78452882377836,41.909152974985886],[-87.78477102186358,41.90915018028924],[-87.78500237867596,41.90914785499293],[-87.78500592461816,41.90925646115222],[-87.7850125820749,41.90945802978238],[-87.78501822089703,41.90962765061219],[-87.7850236061438,41.9097939785127],[-87.78502612458568,41.909871760865165],[-87.78503402712074,41.91012459777758],[-87.7850426319795,41.91039840400667],[-87.78504816049261,41.910572387618416],[-87.78505561742162,41.910812873303236],[-87.78506044288795,41.91095872840635],[-87.78506831448168,41.911196660620625],[-87.78507481557989,41.911390050606954],[-87.78508064082517,41.91156367857899],[-87.78508650282993,41.91173730726992],[-87.78509563042593,41.91203164280583],[-87.78509989408334,41.91217310112264],[-87.78510206881397,41.912245257487584],[-87.7851080035413,41.91243186646878],[-87.7851132855327,41.91259171602168],[-87.78511904761422,41.9127795727945],[-87.78513006143619,41.91313864009193],[-87.78513623094804,41.91331929517147],[-87.78514439034184,41.91355937245509],[-87.78515163747991,41.913772963496555],[-87.78515795320278,41.91396659921431],[-87.7851633749344,41.91414019828539],[-87.78516879481427,41.9143140166066],[-87.78517257564745,41.914434643811994],[-87.78517715652583,41.91459187470346],[-87.78519600440778,41.91520462346132],[-87.78520379139246,41.91544533005925],[-87.78520999645768,41.9156390477917],[-87.78521680121773,41.91585285617977],[-87.78522485383779,41.916118097476726],[-87.78522868651257,41.916350685551],[-87.78522868649144,41.91635068802071],[-87.78522719270346,41.916414652842924],[-87.78522633401991,41.916451412432686],[-87.78507090489343,41.91644907216796],[-87.7848986816952,41.91644859247936],[-87.78439251029532,41.91645474979476],[-87.78398415993833,41.91646137236357],[-87.78325428123061,41.91647228568839],[-87.78278346461842,41.91647922245079],[-87.78239349499688,41.91648496700718],[-87.78175456921952,41.91649390567635],[-87.78109725576138,41.91650481053511],[-87.78035635416641,41.91651565214965],[-87.78027782650736,41.91651684557522],[-87.77958513270052,41.91652737185787],[-87.77944779270864,41.916529453690664],[-87.77872571711683,41.91654071862056],[-87.77839775279375,41.91654565165225],[-87.7775264051317,41.91655790268337],[-87.77654710263981,41.91657305425282],[-87.77583697581169,41.91658332986494],[-87.77547078075257,41.91658872698148],[-87.77492795916893,41.91659640709487],[-87.77399504902446,41.91661073313227],[-87.77330650986232,41.91662075521875],[-87.77239519911952,41.916633458451855],[-87.7712229774213,41.91665105203366],[-87.77051928217743,41.91666098320984],[-87.77026113294903,41.91666520635863],[-87.76991478874159,41.91667105384056],[-87.769262079469,41.91668019865962],[-87.76862682777396,41.916688739017026],[-87.76798835473969,41.916697946606654],[-87.76718038064112,41.916710430843786],[-87.76639584685023,41.91672096750395],[-87.76636017646841,41.91672090444352],[-87.76585482948468,41.916720009906676],[-87.76573698190874,41.91671805202587],[-87.76573358331093,41.916585153674006]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7382570.31009","perimeter":"0.0","tract_cent":"1137599.11400706","census_t_1":"17031251400","tract_numa":"40","tract_comm":"25","objectid":"652","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903362.44769132","census_tra":"251400","tract_ce_3":"41.89096938","tract_crea":"","tract_ce_2":"-87.77012284","shape_len":"10870.6134987"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77475187886424,41.88710135770542],[-87.77488133328366,41.887099681313416],[-87.77488133356246,41.887099691468485],[-87.77488507916433,41.88721755071289],[-87.77488920292262,41.88734731579253],[-87.77489057619083,41.887390272695185],[-87.77489060558784,41.887391198472976],[-87.77489125238681,41.887411431665164],[-87.77489240357058,41.8874475877899],[-87.77490929824482,41.88797821564371],[-87.77491065935355,41.888020968859166],[-87.77491065961325,41.88802098120954],[-87.77494039015704,41.8889549443255],[-87.7749403904502,41.888954952834084],[-87.7749537166498,41.88937345274508],[-87.77497421853303,41.89001729428847],[-87.77497421880231,41.890017305541186],[-87.77497550436247,41.89005756632316],[-87.77498149028428,41.890245003871954],[-87.77500649736501,41.89100050699751],[-87.77500649733634,41.89100051029047],[-87.77501636564118,41.89129880870437],[-87.77501667003519,41.89130801164141],[-87.77503560017878,41.89188020678167],[-87.77503560049585,41.89188021254613],[-87.77506651333297,41.892813674718944],[-87.77506651330907,41.892813677463074],[-87.7750852499172,41.89337916429678],[-87.77508902139562,41.89349298372997],[-87.77509926313483,41.893802080507065],[-87.77509926340413,41.89380209175977],[-87.77511194107858,41.89418496318955],[-87.77512939118475,41.89471191663213],[-87.77446372740226,41.89472241090389],[-87.7737409437676,41.89473349044186],[-87.77324180342352,41.89474055213682],[-87.77294980612575,41.89474461608514],[-87.77260490203474,41.89475056147596],[-87.77241242191312,41.89475264012541],[-87.7722918082771,41.894754723537105],[-87.77198637015756,41.89475999846018],[-87.77172805765771,41.894763592780734],[-87.77152120993905,41.89476639522668],[-87.77133169989334,41.89476903571825],[-87.77105703479572,41.894773536426804],[-87.77088515286644,41.894776399431436],[-87.7707291796042,41.894778709218166],[-87.77052244271657,41.89478142835492],[-87.77045338908523,41.89478169857434],[-87.77026190047056,41.89478373896161],[-87.77014193369575,41.894784714886434],[-87.76997300350617,41.89478608852819],[-87.76965235042363,41.8947908451672],[-87.76956709073832,41.89479210967506],[-87.76936604417799,41.89479512908971],[-87.76914090560598,41.89479786513492],[-87.76904473512882,41.89479937285075],[-87.76891168213355,41.89480145881939],[-87.7685768475719,41.89480672782419],[-87.76843883315051,41.894809229295845],[-87.76832792935558,41.89481123912827],[-87.7681699269758,41.89481455055079],[-87.76795084463545,41.894817657647486],[-87.76782675789305,41.894819417402324],[-87.76769161347326,41.89482133386387],[-87.76749692334593,41.894824079448384],[-87.76730737809935,41.89482642717411],[-87.7672262345839,41.89482740123048],[-87.76708631739928,41.89482908077215],[-87.76696535221315,41.894830844285664],[-87.7667705122178,41.894833917208594],[-87.76663859211064,41.89483385107768],[-87.76639995030591,41.894837933610994],[-87.76618842831648,41.894841773902876],[-87.766014964905,41.894844251607815],[-87.76595288946885,41.894845138393016],[-87.76567620997838,41.894848957658446],[-87.76558738764605,41.8948501102168],[-87.7653949154041,41.89485373038337],[-87.76538780584256,41.894633864815454],[-87.7653729579726,41.89431573349198],[-87.76536088165317,41.89395831827867],[-87.76535407716561,41.89377285603179],[-87.76534335040695,41.89350776384524],[-87.76534094344304,41.893449078893916],[-87.76533519532899,41.89330893043141],[-87.76533021246262,41.89319147955623],[-87.76532396820166,41.89305887420829],[-87.76531956563919,41.89292588252092],[-87.76531214685055,41.89270178948327],[-87.76530518580246,41.89254231441926],[-87.76530037296067,41.89242297083928],[-87.7652939517151,41.892251615855656],[-87.76528688389949,41.89206689319414],[-87.76528129890107,41.89192207918789],[-87.76527419709629,41.891737054480025],[-87.76526503150947,41.89151137728142],[-87.76525180304003,41.891192951915755],[-87.76524891333285,41.89109687063638],[-87.76524471073493,41.89095713124143],[-87.76523220072691,41.890665410909875],[-87.76522274883497,41.89041404610756],[-87.76521983045902,41.890341144495814],[-87.76521324644845,41.890176676699],[-87.76520639867495,41.89000446881802],[-87.76520137058289,41.889871155903606],[-87.76519423742359,41.88967342510998],[-87.7651886788303,41.889475976523826],[-87.76518680658938,41.88940952932877],[-87.76518139343207,41.88928959022685],[-87.76516771197426,41.888986436417184],[-87.76515784709777,41.88876100262599],[-87.76515090761485,41.888578119125825],[-87.76514410755223,41.88838845801935],[-87.76513818671927,41.88821943799429],[-87.76512658211131,41.887962409278224],[-87.76512385180767,41.887885090325945],[-87.76511941641564,41.887728897111856],[-87.76511574739118,41.887599695436954],[-87.7651151119744,41.88757732393289],[-87.76511402204308,41.88753893914302],[-87.76511324333893,41.887511518337824],[-87.76511028410916,41.88739720853557],[-87.7651102839097,41.88739718959928],[-87.76510781360602,41.88727515935265],[-87.76510673821572,41.88721992495297],[-87.76552266490279,41.887214908102415],[-87.76665750036726,41.88719961011854],[-87.76676246828518,41.887198194442085],[-87.76766134915104,41.88718606852201],[-87.7677923350464,41.88718430091478],[-87.7683867562043,41.887178302951966],[-87.77000344467993,41.887161973613765],[-87.77119324887236,41.88714874045033],[-87.7720202894892,41.88713949684831],[-87.77233155563648,41.88713601645292],[-87.77345446609809,41.88712081285098],[-87.77460122156742,41.88710527493047],[-87.77475187886424,41.88710135770542]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3517302.1671","perimeter":"0.0","tract_cent":"1166209.40757849","census_t_1":"17031242000","tract_numa":"17","tract_comm":"24","objectid":"653","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906763.01358077","census_tra":"242000","tract_ce_3":"41.89973739","tract_crea":"","tract_ce_2":"-87.66495392","shape_len":"7953.17809283"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66674921612267,41.89608296808413],[-87.66729151669237,41.89607363944048],[-87.66730402357173,41.89652397579049],[-87.66731512624429,41.896923738094195],[-87.6673220486361,41.897172982431286],[-87.66732656242876,41.89733549489457],[-87.66733115040026,41.89750069741013],[-87.66734189761763,41.897887642271],[-87.66736091335675,41.898572302132976],[-87.66736718571632,41.89879805223748],[-87.66739245919963,41.89970797733968],[-87.66741771374174,41.90061719746505],[-87.66742950273989,41.90104162013843],[-87.66744105798244,41.90145761744543],[-87.667443557531,41.901524344571996],[-87.66745457409252,41.901818398087926],[-87.66745692259978,41.901903482992],[-87.66746278932996,41.9021166340234],[-87.66746575697745,41.90227891838812],[-87.66746855155984,41.90243173331154],[-87.66747281507634,41.9026648804972],[-87.66747928094944,41.90284013819273],[-87.66748452173152,41.90298064539823],[-87.6674952601614,41.90334633326628],[-87.66718298740062,41.90335024634229],[-87.66703436647768,41.903353225999055],[-87.66670074852279,41.90335635995571],[-87.66648515006023,41.90335838474039],[-87.66648289693197,41.9033584056844],[-87.66615287961669,41.903361504348645],[-87.66584262833426,41.90336441646916],[-87.6656250792825,41.903365237851496],[-87.6652081788717,41.90337030468754],[-87.66504489874666,41.90337228895711],[-87.66479132690374,41.903375370017336],[-87.66445995437932,41.90337821525604],[-87.66428831703368,41.90337968517065],[-87.66383001745649,41.903388078505934],[-87.66350741802388,41.90339398586329],[-87.66317682300388,41.903399713105195],[-87.66262770600666,41.90340868190614],[-87.66263313908453,41.90315567742263],[-87.66263080993814,41.903062332415665],[-87.662626138737,41.902876877227094],[-87.66261960322801,41.90264492381349],[-87.66261209246181,41.90240086261988],[-87.66260742478485,41.90225017688184],[-87.6626021840347,41.902081630508924],[-87.66259531267079,41.90186444155327],[-87.66259343735042,41.90180857279902],[-87.66259133936268,41.90174607678872],[-87.66258113663636,41.90148484836339],[-87.6625299014655,41.900823311370736],[-87.6625275537763,41.90069318605421],[-87.6625275370121,41.90069226087457],[-87.66252088130331,41.90032338304075],[-87.66251887023594,41.900242800265026],[-87.6625164041551,41.900143993655036],[-87.66250359751123,41.89978594538007],[-87.66249588716543,41.89957038342918],[-87.66249135031678,41.899317392989325],[-87.6624880357583,41.89912730811738],[-87.66247874389478,41.898880227033935],[-87.66247220304318,41.89870630496237],[-87.66246520062893,41.898403190324395],[-87.66246126919164,41.89823137815826],[-87.66245250648515,41.89796941346627],[-87.66244347576625,41.89769944115998],[-87.6624381870441,41.897502868027004],[-87.66243073991943,41.897224750999],[-87.66242869404269,41.89714905326619],[-87.66242631834962,41.897061141202016],[-87.66242116366061,41.89686931635999],[-87.66241849353422,41.89676998681925],[-87.66241497812209,41.896639121053],[-87.66241080416093,41.89648344353135],[-87.66240815384123,41.89638573319953],[-87.66240460650737,41.89614976569016],[-87.66298599458139,41.89613976643098],[-87.66338032653485,41.896132956824594],[-87.6635781083225,41.89613044259157],[-87.66388344932966,41.89612656059984],[-87.66403031984579,41.89612426085123],[-87.66429908121151,41.896120036663426],[-87.66460531439964,41.89611512447001],[-87.66490533376509,41.89611086080075],[-87.66508063529093,41.896108368995655],[-87.66565835543851,41.89609847920595],[-87.66607256078096,41.89609138731669],[-87.66648818660542,41.89608540426778],[-87.66674921612267,41.89608296808413]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3492481.4235","perimeter":"0.0","tract_cent":"1162297.99911199","census_t_1":"17031243000","tract_numa":"19","tract_comm":"24","objectid":"655","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904014.03933728","census_tra":"243000","tract_ce_3":"41.89227671","tract_crea":"","tract_ce_2":"-87.67939748","shape_len":"7906.92293429"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67928985244902,41.8886878022145],[-87.68173967938513,41.888641033647005],[-87.68174404726851,41.88879761716842],[-87.68174807611109,41.88894687191004],[-87.68175015418244,41.8890242713249],[-87.68175216387775,41.88909936463867],[-87.68175427974762,41.88917846624473],[-87.68175944883446,41.88937092181199],[-87.68176847494502,41.88964162057322],[-87.68177695672152,41.889895994581735],[-87.6817844874442,41.89013434724069],[-87.6817888483165,41.89027262686507],[-87.68179057744548,41.8903268708432],[-87.68179497518541,41.89046481340472],[-87.68180363639863,41.89074282015182],[-87.68181059442777,41.890966165112964],[-87.68181439207649,41.89111289378346],[-87.6818167609428,41.89120505883447],[-87.68181974416005,41.89131989479918],[-87.68182391823603,41.891465653585996],[-87.68183327103117,41.89179225537869],[-87.68183353065389,41.8918027406742],[-87.68183517231886,41.8918689951336],[-87.68183857292789,41.89200781811526],[-87.68184417797089,41.892187805406806],[-87.68185585216139,41.89256269178852],[-87.68185795255626,41.89264333469771],[-87.68185947188321,41.89270168065054],[-87.68186224143435,41.89280863940325],[-87.68187067596554,41.89309985606817],[-87.68187855488529,41.893371877449766],[-87.6818833464926,41.89351117480623],[-87.68188497706748,41.8935591547408],[-87.68188801184544,41.89364844070549],[-87.68189356617181,41.89381027258979],[-87.68189952562082,41.894013599945],[-87.68190837580693,41.894315516224886],[-87.68191228148278,41.89446436891321],[-87.68191242615868,41.89446990266939],[-87.68191443784958,41.89454667045645],[-87.68191849054269,41.89470086481116],[-87.68192478772086,41.89491781288567],[-87.68192700720584,41.8949967969952],[-87.68193132805092,41.89514358341318],[-87.68193580934506,41.89529536525245],[-87.68193788514137,41.89536597312424],[-87.68194055866343,41.89545691809854],[-87.6819456424052,41.895628900944594],[-87.68194919798756,41.89582703841495],[-87.68158966856481,41.895833686988375],[-87.68119817098328,41.89584024592449],[-87.68092658000847,41.89584482290399],[-87.68061564494249,41.89585005377139],[-87.68027855330799,41.895855683896094],[-87.68010306428255,41.895858637466674],[-87.679981578087,41.89586066285148],[-87.67950019161306,41.895867880990586],[-87.67919088181864,41.89587251736273],[-87.67896094660554,41.895876640640076],[-87.67861874483644,41.89588273732075],[-87.67819693433638,41.8958902869032],[-87.67773963684796,41.89589843448457],[-87.67748049444367,41.895903211593264],[-87.67705236078739,41.89591164182322],[-87.67704621333081,41.89569215103714],[-87.677044719448,41.895638811791],[-87.67704109658608,41.89551911484155],[-87.6770377098861,41.89540863988112],[-87.67703094542922,41.895205581892675],[-87.67702388044134,41.89499349500545],[-87.67701943199754,41.89486561521727],[-87.67701821377273,41.894799884006815],[-87.67701602504955,41.89468178662015],[-87.67701154733268,41.894502095972705],[-87.67701004451816,41.894440808250046],[-87.67700674959596,41.89430344024899],[-87.67700048717137,41.894093551933864],[-87.6769966317518,41.89396433166051],[-87.67698677433977,41.89362565922754],[-87.67698043750595,41.89340798176085],[-87.67697414029615,41.89317312831587],[-87.67696542019371,41.8928479066412],[-87.67696167175404,41.89272026598625],[-87.67695874801353,41.89262070004968],[-87.67695525368813,41.89250278725196],[-87.67694842813269,41.89226965275991],[-87.67694491351389,41.892149599605865],[-87.67693776103475,41.8919032744115],[-87.67693519363064,41.89181471929182],[-87.67692885921683,41.89154768742713],[-87.67692418756005,41.891350742530804],[-87.67692058255687,41.89119055926081],[-87.6769185898316,41.8911047442461],[-87.67690874660296,41.890823903029705],[-87.67690062589593,41.89059220947481],[-87.67689674245723,41.8904112687992],[-87.67689038388653,41.89017922498124],[-87.67688448221125,41.890002352344425],[-87.67687398570074,41.889726406631766],[-87.67686503629302,41.889491126235264],[-87.67685857466533,41.88922547416114],[-87.67685069460308,41.88890111463563],[-87.67684594636304,41.88872043378143],[-87.67783227629252,41.88870574836228],[-87.67874584251908,41.88869108374686],[-87.67928985244902,41.8886878022145]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3529015.04518","perimeter":"0.0","tract_cent":"1167615.6018581","census_t_1":"17031243400","tract_numa":"33","tract_comm":"24","objectid":"656","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904149.98163334","census_tra":"243400","tract_ce_3":"41.89253687","tract_crea":"","tract_ce_2":"-87.65986432","shape_len":"8366.04513867"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65734659706287,41.888944142749274],[-87.65772558058083,41.888939833494554],[-87.65805491276583,41.88893534930889],[-87.65825308962896,41.88893151969612],[-87.65826726509472,41.888931277286204],[-87.65854926431498,41.8889264546989],[-87.65866459883289,41.88892499184476],[-87.65883110085173,41.888922814054375],[-87.65885265765314,41.888922940668294],[-87.65887758241858,41.88892758761352],[-87.65889907139126,41.888934162785795],[-87.65892071785635,41.888950206509044],[-87.65901838340321,41.88892116968307],[-87.65930560011313,41.88891928833749],[-87.65949254731541,41.88891813518777],[-87.65988671643582,41.888915672452],[-87.66008369063664,41.88891443992967],[-87.6603269412864,41.88891303948099],[-87.6603884494855,41.88891265926698],[-87.66038849759929,41.88891265900007],[-87.66048033470646,41.888910994604196],[-87.66067605043301,41.88886122810624],[-87.66084490976517,41.888904386181316],[-87.66098445226875,41.88890185666387],[-87.66116885227402,41.88889851353034],[-87.66148778558428,41.88889450720419],[-87.66194133799335,41.88888739331946],[-87.66274799636126,41.888882753973895],[-87.66242217747353,41.88895488228261],[-87.66221137875057,41.8890049952802],[-87.6622116038057,41.88901693212187],[-87.66221988197614,41.88945575906228],[-87.66222121881567,41.889514740604376],[-87.66222382607417,41.88962982184605],[-87.66223313458654,41.889943450992156],[-87.66224657853527,41.890396421127775],[-87.66224901362902,41.890481569918876],[-87.6622515528239,41.890570352690865],[-87.66225834226464,41.890802417858],[-87.66226519335069,41.89102824626748],[-87.66227314210433,41.89129026552939],[-87.66227907594903,41.89151450266309],[-87.6622805110075,41.89156873914416],[-87.66228505388646,41.891738249649926],[-87.66229142911692,41.89197832580168],[-87.66229764561302,41.89220199019042],[-87.66230477209744,41.892488270252805],[-87.66231122016083,41.892747294945394],[-87.66231539617132,41.892944849668304],[-87.66231576973246,41.89296312820791],[-87.66232015857679,41.8931776163949],[-87.66232791766151,41.89341621045014],[-87.66233377350244,41.89359627468132],[-87.66233726414919,41.8937119372919],[-87.66234257010083,41.89387713276059],[-87.66234676324477,41.89402554948584],[-87.66234815596047,41.89411710569076],[-87.66235417060767,41.894328081103936],[-87.66235917035641,41.89450344875397],[-87.6623647037772,41.8946918727597],[-87.66236736447226,41.89478247615376],[-87.66237044030112,41.89488419531261],[-87.66237499084028,41.89503430427564],[-87.66237998898885,41.8952330989039],[-87.66238448240397,41.8954118296493],[-87.6623895702805,41.895574894539614],[-87.66239286374011,41.89567968905064],[-87.66239290423349,41.89568097880449],[-87.66239575673646,41.89577259839674],[-87.66239774209451,41.89583638580338],[-87.6624018741458,41.89596802357746],[-87.66240460650737,41.89614976569016],[-87.66221772025838,41.89615297933927],[-87.66188944806773,41.89615794839841],[-87.66160573218428,41.89616265575855],[-87.66140147444318,41.89616628182937],[-87.66116856260443,41.89617041599668],[-87.66081854768211,41.89617522728064],[-87.66042404631007,41.89618066760031],[-87.66025061183909,41.89618364375494],[-87.65995808185708,41.89618797759759],[-87.65947100399623,41.896195192269424],[-87.65934279591838,41.896197091057275],[-87.6591879292149,41.89619922452992],[-87.65899563882921,41.89620251838723],[-87.6587414503156,41.89620687230113],[-87.65865011358376,41.89620843614315],[-87.65857469670877,41.8962097282005],[-87.6584846736735,41.89621126971797],[-87.65829253568627,41.896214560000196],[-87.65814364309377,41.89621710918036],[-87.65788945522375,41.89622146121174],[-87.65776001765815,41.89622367701569],[-87.6576999166821,41.89622470596762],[-87.65757941569132,41.89622676860353],[-87.65751044535473,41.89622794915963],[-87.65751274527486,41.895841254124605],[-87.65756041054996,41.89565017320569],[-87.65760673788188,41.895464454036684],[-87.65760645590574,41.895427788267426],[-87.65760394236693,41.89510075778322],[-87.65754786473961,41.89504074061711],[-87.65748742777875,41.89492972300308],[-87.65747244880377,41.89484663592395],[-87.65747421295401,41.894759434431464],[-87.65747231155743,41.894688951214505],[-87.65746988392844,41.89459870638708],[-87.65746674985617,41.894473986753795],[-87.65746509231217,41.89440803625416],[-87.65746085317865,41.89423937760658],[-87.65745683035675,41.89405312993536],[-87.65745392068187,41.89391806885161],[-87.65745031906411,41.89375106075907],[-87.65744375446708,41.89349770175854],[-87.65744115624312,41.89339741172104],[-87.6574391982664,41.89330091277361],[-87.65743632934637,41.893177841489965],[-87.65743379643325,41.89306919864347],[-87.65743030948211,41.892919643186524],[-87.65742833337764,41.89283486366999],[-87.65742276184088,41.89259587601478],[-87.65742140477396,41.89253766162456],[-87.65741840951743,41.892409159829725],[-87.65741634686933,41.89231910948536],[-87.65741475735693,41.892263539444905],[-87.6574122585308,41.89217619289936],[-87.65740851098396,41.89204516059628],[-87.65740594881336,41.89193982161976],[-87.65740341279907,41.89182325858269],[-87.6574005557403,41.891691930195464],[-87.65739780050193,41.891570069755595],[-87.65739614411375,41.89149956077308],[-87.65739371908641,41.89139633538355],[-87.65739170016691,41.89131959456713],[-87.65738639149181,41.891080461029716],[-87.65738029575454,41.890805833244954],[-87.65737666499986,41.8906764484158],[-87.65737321147905,41.890554638728645],[-87.65736628220873,41.89030964709562],[-87.65736217561728,41.890162696318555],[-87.65735797674684,41.889988584976685],[-87.65735435360568,41.889840022326204],[-87.65735288244026,41.88978344197991],[-87.65735112944886,41.889716006229904],[-87.65734938526806,41.88964804857647],[-87.65734724931977,41.88951623014616],[-87.65734625864583,41.889460406467855],[-87.65734784317982,41.88938932872067],[-87.6570617680592,41.88904690330237],[-87.65697434802493,41.888948374061975],[-87.65734659706287,41.888944142749274]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3506912.09178","perimeter":"0.0","tract_cent":"1166286.62691372","census_t_1":"17031243300","tract_numa":"21","tract_comm":"24","objectid":"657","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904123.66125817","census_tra":"243300","tract_ce_3":"41.89249317","tract_crea":"","tract_ce_2":"-87.66474584","shape_len":"7896.88944074"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66482377876765,41.88885999634075],[-87.66511796430898,41.888855424499646],[-87.66535192000592,41.88885780098203],[-87.66545387306061,41.88885765358165],[-87.6655748860525,41.888857478613524],[-87.66594412952612,41.88885391709899],[-87.66634690668404,41.888850000322044],[-87.66685862190567,41.88884517765089],[-87.66706868914602,41.88885187769547],[-87.66709002008236,41.88916798077967],[-87.66709507124989,41.88933573809251],[-87.66710009056143,41.88950302869456],[-87.6671056032686,41.88968645828975],[-87.66711157549103,41.88988677860187],[-87.66711720516422,41.89007560404002],[-87.66712684196031,41.89039585792868],[-87.66713185506075,41.8905623449494],[-87.66713694461907,41.89073137247751],[-87.66714263637746,41.89097739671948],[-87.66715037713497,41.89131196668549],[-87.66715240282613,41.891374794364424],[-87.66715515397645,41.89146012874415],[-87.66715832089744,41.89155836346193],[-87.66716024263248,41.89162041638495],[-87.66716959630699,41.891922424837425],[-87.66717259470283,41.89202115253257],[-87.6671789000803,41.89222881827889],[-87.66718490350048,41.89242719603393],[-87.66719366410864,41.89271666504276],[-87.6671956273898,41.89278144075372],[-87.66719910354978,41.892896087518324],[-87.66720361218879,41.893044275421424],[-87.66720527135732,41.8930982365134],[-87.6672116708927,41.8933433385772],[-87.66722352658384,41.89379744552067],[-87.66722361009994,41.89380064853182],[-87.6672278326459,41.893952731296125],[-87.66723294202438,41.8941361858484],[-87.66723682630517,41.89425712913828],[-87.66724962059597,41.894655465081236],[-87.66725128681959,41.89470794019351],[-87.66725302461502,41.89476264733508],[-87.667259273136,41.89491265620349],[-87.66726604097542,41.89515634649292],[-87.66727839718965,41.89560125503751],[-87.66729151669237,41.89607363944048],[-87.66674921612267,41.89608296808413],[-87.66648818660542,41.89608540426778],[-87.66607256078096,41.89609138731669],[-87.66565835543851,41.89609847920595],[-87.66508063529093,41.896108368995655],[-87.66490533376509,41.89611086080075],[-87.66460531439964,41.89611512447001],[-87.66429908121151,41.896120036663426],[-87.66403031984579,41.89612426085123],[-87.66388344932966,41.89612656059984],[-87.6635781083225,41.89613044259157],[-87.66338032653485,41.896132956824594],[-87.66298599458139,41.89613976643098],[-87.66240460650737,41.89614976569016],[-87.6624018741458,41.89596802357746],[-87.66239774209451,41.89583638580338],[-87.66239575673646,41.89577259839674],[-87.66239290423349,41.89568097880449],[-87.66239286374011,41.89567968905064],[-87.6623895702805,41.895574894539614],[-87.66238448240397,41.8954118296493],[-87.66237998898885,41.8952330989039],[-87.66237499084028,41.89503430427564],[-87.66237044030112,41.89488419531261],[-87.66236736447226,41.89478247615376],[-87.6623647037772,41.8946918727597],[-87.66235917035641,41.89450344875397],[-87.66235417060767,41.894328081103936],[-87.66234815596047,41.89411710569076],[-87.66234676324477,41.89402554948584],[-87.66234257010083,41.89387713276059],[-87.66233726414919,41.8937119372919],[-87.66233377350244,41.89359627468132],[-87.66232791766151,41.89341621045014],[-87.66232015857679,41.8931776163949],[-87.66231576973246,41.89296312820791],[-87.66231539617132,41.892944849668304],[-87.66231122016083,41.892747294945394],[-87.66230477209744,41.892488270252805],[-87.66229764561302,41.89220199019042],[-87.66229142911692,41.89197832580168],[-87.66228505388646,41.891738249649926],[-87.6622805110075,41.89156873914416],[-87.66227907594903,41.89151450266309],[-87.66227314210433,41.89129026552939],[-87.66226519335069,41.89102824626748],[-87.66225834226464,41.890802417858],[-87.6622515528239,41.890570352690865],[-87.66224901362902,41.890481569918876],[-87.66224657853527,41.890396421127775],[-87.66223313458654,41.889943450992156],[-87.66222382607417,41.88962982184605],[-87.66222121881567,41.889514740604376],[-87.66221988197614,41.88945575906228],[-87.6622116038057,41.88901693212187],[-87.66221137875057,41.8890049952802],[-87.66242217747353,41.88895488228261],[-87.66274799636126,41.888882753973895],[-87.66365218296053,41.888877546573084],[-87.66365280991135,41.88887754281976],[-87.66423651264611,41.888868788271616],[-87.66463112151312,41.888862854067035],[-87.66479198095318,41.888860468199674],[-87.66482377876765,41.88885999634075]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2087958.09282","perimeter":"0.0","tract_cent":"1144740.74909698","census_t_1":"17031250100","tract_numa":"8","tract_comm":"25","objectid":"658","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911044.87786609","census_tra":"250100","tract_ce_3":"41.91191919","tract_crea":"","tract_ce_2":"-87.74370091","shape_len":"5886.80210216"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74577547209411,41.909630130471314],[-87.74611444687834,41.909625781842614],[-87.74611356270911,41.91007195108747],[-87.74611043775472,41.91008606160864],[-87.74605573139607,41.9103330712129],[-87.74597590514504,41.9105347481489],[-87.74594096775527,41.91062301641739],[-87.74592571592316,41.910661549789],[-87.7459090147372,41.91072801205964],[-87.74589753734215,41.910841839109615],[-87.74589688779619,41.91099638590135],[-87.7458960779184,41.91118933414616],[-87.74590681785331,41.911454182798664],[-87.74592915826821,41.912005089991766],[-87.74594041224377,41.912374823409394],[-87.74595696932889,41.912918787925115],[-87.74596913186379,41.91328698915835],[-87.74597293337075,41.91340207433925],[-87.7459760357561,41.9134959978974],[-87.74599048420129,41.91392373513744],[-87.74600623982677,41.91439016641249],[-87.74600890561744,41.9144690836237],[-87.74585494697052,41.91445079743671],[-87.74563061944096,41.91442357929186],[-87.74502417050726,41.91434843765457],[-87.74453881295281,41.91429003616764],[-87.74399612173941,41.914223791468075],[-87.74356444916727,41.914170806821325],[-87.74348141860057,41.91416043221239],[-87.7427258696817,41.91406873309076],[-87.74217585283384,41.914000384758566],[-87.7416657345073,41.91393841281163],[-87.74133544805062,41.91389760542004],[-87.74133439798456,41.913762789530175],[-87.74132408768178,41.91348694088647],[-87.74130062029565,41.9128327561612],[-87.74128698854426,41.912161623459106],[-87.74128477193379,41.91205250730684],[-87.74128885787913,41.911882411630984],[-87.74129119838388,41.9118278817624],[-87.74130814458454,41.91153467878367],[-87.74133105684459,41.91124185012405],[-87.74134272133978,41.911072796785824],[-87.74133954281548,41.91101926754345],[-87.74133056178998,41.91089778911847],[-87.74132555277737,41.91074408613194],[-87.74132384662575,41.910630534333905],[-87.74134734479298,41.91032398719468],[-87.74137006581779,41.91000199997794],[-87.7413769865351,41.90984938728304],[-87.74138036111837,41.90968350987793],[-87.74139932738937,41.909683236354155],[-87.74140239651389,41.9096831923509],[-87.7415901353362,41.90968048763615],[-87.74197535749954,41.909674937019545],[-87.74200499276871,41.90967451005212],[-87.7436010567846,41.90965149778615],[-87.74439219092586,41.90964897525548],[-87.74465618840462,41.90964509076093],[-87.74484398153497,41.90964232721694],[-87.74519020911593,41.90963723116556],[-87.74564863798763,41.90963175720968],[-87.74577547209411,41.909630130471314]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10759601.99","perimeter":"0.0","tract_cent":"1156142.03172667","census_t_1":"17031240900","tract_numa":"26","tract_comm":"24","objectid":"661","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1908499.59693069","census_tra":"240900","tract_ce_3":"41.904712","tract_crea":"","tract_ce_2":"-87.70188456","shape_len":"13360.2383832"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6967907260668,41.899283135191695],[-87.69694998139558,41.89928172368643],[-87.69711099656293,41.899283492677576],[-87.69742507318448,41.899281013926725],[-87.69775253301472,41.89927842836953],[-87.69803739595356,41.89927483893567],[-87.69833818634481,41.89927104817711],[-87.69865066792319,41.8992687221822],[-87.69902784209042,41.899265913512195],[-87.69925977458453,41.89926340215043],[-87.69941386234655,41.89926173339173],[-87.6996784655512,41.899259379580386],[-87.69986501910797,41.89925760423396],[-87.70025532091847,41.899253889195506],[-87.70046927700584,41.89925250350758],[-87.70068338516693,41.899251116612234],[-87.70108191578903,41.89924544382352],[-87.70116434676801,41.899244270313424],[-87.70148470561516,41.899242246436174],[-87.70171808099165,41.89924049518311],[-87.7018054722673,41.89923983971445],[-87.70195112884186,41.899238357461485],[-87.70219060808002,41.89923591981813],[-87.70246754477405,41.89923388011009],[-87.70277744263984,41.899231597021036],[-87.70302206290718,41.89922930003349],[-87.70324218073105,41.89922723251642],[-87.70386469428772,41.899221639993975],[-87.70398000586303,41.899220603532925],[-87.70440707694377,41.89921647874711],[-87.70464532013169,41.89921417657969],[-87.70524718615773,41.89920899041212],[-87.70596150307824,41.8992023024401],[-87.7061337549588,41.899200657213626],[-87.70653791299182,41.89919718996707],[-87.70667445661944,41.89919540143121],[-87.70667857196962,41.89931236495133],[-87.70668376912495,41.89950964917689],[-87.70669760214982,41.89995451081729],[-87.7067040248882,41.900136155159835],[-87.70670822034492,41.90025481585961],[-87.70671621313421,41.90054187933216],[-87.7067255271928,41.9008328193752],[-87.70673108830637,41.90100601085132],[-87.70673572081984,41.90115027353864],[-87.70674318788596,41.90137465571045],[-87.70675642070498,41.901779530387834],[-87.70675703916862,41.901801748638555],[-87.70675898329802,41.90187161325996],[-87.70676266888289,41.901995590844365],[-87.70676637487689,41.90215911272135],[-87.70677555934103,41.90237689061165],[-87.70678607892424,41.90268358905627],[-87.7067888077494,41.90280541678112],[-87.7067894016374,41.902831916452065],[-87.70678981333656,41.90285029904825],[-87.70679354618687,41.90301694481167],[-87.70680658698764,41.90338139571611],[-87.70681403034311,41.90360448787703],[-87.70681841667586,41.90375953400292],[-87.70682227504697,41.90389591588769],[-87.70683303493419,41.90421189107779],[-87.7068437804618,41.90452182885203],[-87.70684833637637,41.90466551419159],[-87.7068546465617,41.90486453344381],[-87.70686337032133,41.90517462480557],[-87.70687512927299,41.905501170680246],[-87.70687733074402,41.90557129818493],[-87.70688129203556,41.90569747203062],[-87.70688874792471,41.90596817665122],[-87.70689744900628,41.90630691764414],[-87.70690351433973,41.90647738530251],[-87.70690871682795,41.90662360896874],[-87.70691857903128,41.90691499076081],[-87.70692710558312,41.907237787014544],[-87.7069320862257,41.90738131022119],[-87.70693670763761,41.90751445798294],[-87.7069453516832,41.907772600402666],[-87.70695683055766,41.908139182975795],[-87.70696128689832,41.908287835017184],[-87.7069638671663,41.908373908279756],[-87.70697068807902,41.908645734443134],[-87.70697856081595,41.90885735783603],[-87.70698356740938,41.90899306034973],[-87.70699097458282,41.909191096683074],[-87.70699507197178,41.909300641680716],[-87.7070047756331,41.909570727213406],[-87.70700030993069,41.909854676153174],[-87.70699232042793,41.9100105324816],[-87.70698624422334,41.91006326710636],[-87.70696046604213,41.91011532922255],[-87.70654090079833,41.9101164113459],[-87.7056622511016,41.91012607203941],[-87.70532936400795,41.91012973052349],[-87.70451463250554,41.91014919465539],[-87.70401321562908,41.91015434204948],[-87.70337751589942,41.91016263126605],[-87.7027984735642,41.91017017869467],[-87.7026619234359,41.91017195815967],[-87.70221558766458,41.91017256789215],[-87.7019444468116,41.91017293736903],[-87.70186599250692,41.91017304437499],[-87.70167256567535,41.91017330762182],[-87.7015172260608,41.91017472303422],[-87.7002368104062,41.9101863811425],[-87.7001338890835,41.91018731748618],[-87.69908027566807,41.91019835172152],[-87.69851567146729,41.91020426053908],[-87.69801373139471,41.91020869689725],[-87.69703486320991,41.91021734158909],[-87.69703838131575,41.91017035539403],[-87.69704643840033,41.91006273884485],[-87.69704670092608,41.90974775723801],[-87.69703795478183,41.90941137556047],[-87.69703240111944,41.90919004981534],[-87.69702325791083,41.908802623161336],[-87.69701754692785,41.90857720761252],[-87.69701318510623,41.90839620534874],[-87.69701154396944,41.90832811154164],[-87.69700797306709,41.90817992673081],[-87.69699724945757,41.907739362879695],[-87.69698576260971,41.90724989251078],[-87.69697370209809,41.90675531464438],[-87.69696955619096,41.90659527727547],[-87.69696911667911,41.906578313274885],[-87.6969665319504,41.90647854629835],[-87.69695707283998,41.906099350412475],[-87.6969490679824,41.905769778328434],[-87.69694675144575,41.90566394751577],[-87.69694358434518,41.905519254167935],[-87.69693317221588,41.90507328569246],[-87.69692497082617,41.90475205493517],[-87.69691989561962,41.90455326183294],[-87.6969073762283,41.904045783279535],[-87.69690373305544,41.90386925384189],[-87.69690157604008,41.90376427486546],[-87.69689306942449,41.90341129153109],[-87.69688829236001,41.90320061749165],[-87.69687939800441,41.90292541488111],[-87.6968752541999,41.90279719738458],[-87.69687046851584,41.902517121534515],[-87.69686828078933,41.90243055536663],[-87.69686266289257,41.90220824161586],[-87.69685619368848,41.90199360672617],[-87.69685461141286,41.90194110070743],[-87.69685276567968,41.90187325294437],[-87.69684896348282,41.901708687430414],[-87.69684480888219,41.90155023960674],[-87.69684150788041,41.90140156599368],[-87.69683606872856,41.90110719254504],[-87.6968330502276,41.900943835524124],[-87.69682843470203,41.90077240460739],[-87.69682601875382,41.900697583306815],[-87.69682225097996,41.90049786399387],[-87.69681937701496,41.90034551571653],[-87.69681481386411,41.90019944210155],[-87.69680839569887,41.89999397289754],[-87.69680587405136,41.899896511039614],[-87.6968026193796,41.89976929757944],[-87.6967996936838,41.8996570420361],[-87.6967907260668,41.899283135191695]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3558983.22322","perimeter":"0.0","tract_cent":"1159486.35200159","census_t_1":"17031241100","tract_numa":"16","tract_comm":"24","objectid":"662","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909226.52608642","census_tra":"241100","tract_ce_3":"41.90663854","tract_crea":"","tract_ce_2":"-87.68957983","shape_len":"7994.23701982"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69176743191389,41.90297025516856],[-87.69195209632201,41.902968358649396],[-87.69195480330104,41.90307758612683],[-87.691964458317,41.90347016100153],[-87.69196550812646,41.90351285427498],[-87.69197293134307,41.903809876916945],[-87.69197327032548,41.903820896092796],[-87.6919760700391,41.90391187024029],[-87.69197861380376,41.903994540546755],[-87.69198583236378,41.90428999808059],[-87.6919873205613,41.904355840323525],[-87.69199461672554,41.904678603411824],[-87.69199781623827,41.90479563162554],[-87.69200026380376,41.904885166085734],[-87.69201004713445,41.90525563756284],[-87.69201751441996,41.905565722916656],[-87.69202172946804,41.90571195955694],[-87.69202452229023,41.90580884636322],[-87.69203200160659,41.906118657330424],[-87.69203324319277,41.90616998172342],[-87.69204203210927,41.90653328483667],[-87.69203932646182,41.906621457889784],[-87.69203663506894,41.9067091601105],[-87.6920474068343,41.907189214252305],[-87.6920579344583,41.907638613899074],[-87.69206695836303,41.908051067728955],[-87.69207435630211,41.908361701389715],[-87.6920759143172,41.908442054658266],[-87.6920775304328,41.908525412636806],[-87.69208314711902,41.90877514178943],[-87.69209423128073,41.90928672873826],[-87.69209753063265,41.90942692230759],[-87.69210459417187,41.909770073458354],[-87.69211542576728,41.91012400274731],[-87.69211065638703,41.91026544294895],[-87.69199855049969,41.91026646780177],[-87.69090160805328,41.91027886060141],[-87.69032803144286,41.91028809442768],[-87.68966709305224,41.910294142251786],[-87.68863144823925,41.91030361134477],[-87.68844251944797,41.910305752142186],[-87.6872206970524,41.91032086664096],[-87.68721465169729,41.91011486290079],[-87.68720808561501,41.90987058927411],[-87.6871998782498,41.909565247227185],[-87.6871891779835,41.909129045844665],[-87.6871806303735,41.90874765942289],[-87.68717805755082,41.908658018296485],[-87.68717368118774,41.90849159655135],[-87.68716953376317,41.90833387640636],[-87.68716035613527,41.908045433293346],[-87.68715034035546,41.90766889555543],[-87.687140999303,41.90729831657632],[-87.68712989633933,41.90692031822644],[-87.68712348097127,41.90666650388239],[-87.68711618878318,41.90637800790208],[-87.68710075439485,41.9057738876502],[-87.68708255018285,41.905098319317375],[-87.687075773306,41.904842204834615],[-87.68706512881451,41.904439934220335],[-87.687063940765,41.90439666494372],[-87.68704605476503,41.90374504141526],[-87.68704072005366,41.90353444593684],[-87.68703446834009,41.90328762192946],[-87.68702676175086,41.90301612617931],[-87.68722331170017,41.90301146195617],[-87.68750433658707,41.90301049069489],[-87.68772946060395,41.90300868992835],[-87.68781913554889,41.903007944889275],[-87.6880314033585,41.903006181577894],[-87.68825778107616,41.90300397985057],[-87.68846060922422,41.90300200656989],[-87.68918393533535,41.90299508943898],[-87.68948850066421,41.90299266661125],[-87.68974641516563,41.902990614344255],[-87.69014975488851,41.902986992219056],[-87.69015854650266,41.90298691330595],[-87.69054052930855,41.90298348165535],[-87.69072226221664,41.90298153118744],[-87.69100269354925,41.90297852114928],[-87.69176743191389,41.90297025516856]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3808887.98101","perimeter":"0.0","tract_cent":"1167338.19465336","census_t_1":"17031241700","tract_numa":"22","tract_comm":"24","objectid":"663","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909566.1972616","census_tra":"241700","tract_ce_3":"41.9074053","tract_crea":"","tract_ce_2":"-87.66072716","shape_len":"10335.5810242"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65918674099206,41.909200359548905],[-87.65922877486447,41.909070199635515],[-87.65748556563226,41.90909031933749],[-87.65749024391833,41.9090781169328],[-87.65750697527862,41.909034475932785],[-87.6575173812608,41.90897786880663],[-87.65757623080154,41.908859801577975],[-87.65768058279235,41.908577869595675],[-87.65769059375188,41.90857765407701],[-87.65773586116636,41.908441093047976],[-87.65775179938521,41.90836846469009],[-87.65776508381293,41.90825136416749],[-87.65778769855613,41.90811343493104],[-87.65794627846037,41.90712269901899],[-87.65794752586305,41.90711490752306],[-87.65795869093066,41.907045150874715],[-87.65816987519695,41.9056692000626],[-87.65822805988023,41.905362495171914],[-87.65828901180059,41.90504119620621],[-87.65815726863147,41.90452620753918],[-87.65749659929544,41.90360242656717],[-87.65744029613587,41.90352918336223],[-87.65742450943165,41.90350864672302],[-87.65835817896684,41.903497047020636],[-87.66023204185393,41.90346079970189],[-87.66031181444285,41.90345925575448],[-87.66042952104002,41.903456978234146],[-87.66067360123742,41.90345225378875],[-87.66077576521486,41.90345007696219],[-87.66089763896422,41.90344747979066],[-87.6611096262265,41.90344296247331],[-87.66129153239767,41.903439085403456],[-87.66143365709645,41.90343605623493],[-87.6616622805551,41.903431183263],[-87.66181923448721,41.90342783750257],[-87.66200092600897,41.90342396409075],[-87.66226338022128,41.90341463101102],[-87.66262770600666,41.90340868190614],[-87.66262095753451,41.903722921762224],[-87.66262468201445,41.90385724659366],[-87.66262709114874,41.9039441428315],[-87.66262850446503,41.903995303603146],[-87.66263191342661,41.9041186768185],[-87.66264323986171,41.90443260124293],[-87.66264757462486,41.90455274138605],[-87.66265227914597,41.904703399835874],[-87.66265791970822,41.90488427775735],[-87.66266965708016,41.90520865979212],[-87.66267924528151,41.90546837512603],[-87.6626867267503,41.9057012395457],[-87.66269342957908,41.9059102245827],[-87.66270152635022,41.906163949020325],[-87.66271414938316,41.906559521269386],[-87.66271584479173,41.90661227504495],[-87.66271822303852,41.90668627371591],[-87.66272375481962,41.906859741510154],[-87.66272688592336,41.9070563747113],[-87.66273022768198,41.9072662275535],[-87.66273407521324,41.90735842878113],[-87.66274800013971,41.90768741454617],[-87.66268115534433,41.90768623546837],[-87.6628820356485,41.90805938257525],[-87.6629094139184,41.908134862807394],[-87.6633384642785,41.908520404404506],[-87.66388321532287,41.90889463409434],[-87.66415217982679,41.90907940317324],[-87.66433853398702,41.90923127604294],[-87.66452556667303,41.90938231995973],[-87.6645927708328,41.90944110860828],[-87.66465084965907,41.909494245845664],[-87.66471538388895,41.90955543407156],[-87.6647848269566,41.909625020197254],[-87.66485958433056,41.90969935756991],[-87.66488314596218,41.90972279325492],[-87.66492722116513,41.909773077430984],[-87.66501284321043,41.909876593962075],[-87.66508117088522,41.909961568824414],[-87.6651465194986,41.91004691050218],[-87.66517366977544,41.91008205743298],[-87.66529347817676,41.91017976280363],[-87.6653283146724,41.91022755070807],[-87.66533890254843,41.91024207439922],[-87.66540167197239,41.910328196751344],[-87.6654657336596,41.910417208026686],[-87.66553305630843,41.91052473434561],[-87.66556520918326,41.91057695194816],[-87.6656098255033,41.91062128374803],[-87.66565567738219,41.91065828436719],[-87.6656106372923,41.910658908853584],[-87.66533976989413,41.91066266382887],[-87.66519185177017,41.910664714043484],[-87.66497652358976,41.9106676982854],[-87.66476521442358,41.91067062648992],[-87.6646206465656,41.91067262961353],[-87.66445939777945,41.910674863599134],[-87.66427311767971,41.910677444101225],[-87.66419422797527,41.91067862244127],[-87.66405767148197,41.910680921265744],[-87.66390759291065,41.910683583466856],[-87.66357497466402,41.91069362600405],[-87.66333633808695,41.91069558181011],[-87.66320531720007,41.91069641274674],[-87.66305346092935,41.910697375754864],[-87.66283122457597,41.91069878464164],[-87.66250591614352,41.910701298725854],[-87.66233325773051,41.91070363787642],[-87.66216105577864,41.91070613503325],[-87.66162644970575,41.910713885190646],[-87.661333189027,41.91071872803399],[-87.66116353726994,41.910721691142605],[-87.66094012619497,41.91072559277923],[-87.66064990539732,41.91073135727378],[-87.66039813425576,41.91074247588763],[-87.66022260962482,41.910747584302406],[-87.6600976278166,41.91074773688626],[-87.65986466961219,41.910754690765096],[-87.65952825042173,41.910758770374926],[-87.65937051096232,41.9107606827351],[-87.65901851002359,41.910765092555465],[-87.65861515440898,41.910765467397475],[-87.65809452849082,41.910765947103094],[-87.65739080261534,41.91078340379015],[-87.6572789865873,41.9107836373929],[-87.65686079758393,41.9107845103937],[-87.65685130328065,41.910744634034096],[-87.65693683468008,41.91052155201123],[-87.65800830495903,41.91016459106979],[-87.6589498224007,41.90985076765916],[-87.65918674099206,41.909200359548905]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1705796.69434","perimeter":"0.0","tract_cent":"1156735.20306346","census_t_1":"17031222500","tract_numa":"10","tract_comm":"22","objectid":"664","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912510.92224368","census_tra":"222500","tract_ce_3":"41.91570741","tract_crea":"","tract_ce_2":"-87.69959679","shape_len":"5217.06053411"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69709893476062,41.914069498619405],[-87.69709689877445,41.9140037081206],[-87.69735289804592,41.91400520861771],[-87.69761311085605,41.914003473920665],[-87.69764970630898,41.91400322975968],[-87.69798633460701,41.91399668260994],[-87.69806410156244,41.913988408999025],[-87.69812301345353,41.91397645694561],[-87.69816922928193,41.91396287947836],[-87.69823925698486,41.913951661737435],[-87.69846620283194,41.91394976141263],[-87.69863813218032,41.913947569450265],[-87.69877100235284,41.91394587543425],[-87.69902582415247,41.913943084693365],[-87.69919335737808,41.91394101498023],[-87.6993006019039,41.91393969007857],[-87.69954295797882,41.91393798193479],[-87.69988230890456,41.91393623211332],[-87.70025254306297,41.913932318967184],[-87.70035202315262,41.91393141020804],[-87.70046984493118,41.91393033351936],[-87.70077415017697,41.91392811347982],[-87.70094585351342,41.91392654716647],[-87.7010873895941,41.91392525576871],[-87.70133346701225,41.91392246664283],[-87.7016335940246,41.913919507828304],[-87.70198050821631,41.913921220409144],[-87.7019966997903,41.91440745329361],[-87.70201625175892,41.91501079764944],[-87.70203067639996,41.91549320322449],[-87.70203502390119,41.9156236595834],[-87.70203744182984,41.915690879631775],[-87.7020444305656,41.915939270912325],[-87.70205720430607,41.916380448718975],[-87.70206954476222,41.916779856653704],[-87.70208285257434,41.91727498916225],[-87.70208678934267,41.917386482240495],[-87.70208884977572,41.91744483808677],[-87.7018644170225,41.91744672946288],[-87.70165810672717,41.91744734935427],[-87.70152237210446,41.91744775679358],[-87.70119481797713,41.91745116803429],[-87.70106091852077,41.9174522559952],[-87.70080491339318,41.91745440750372],[-87.70058020841341,41.917456921103025],[-87.70046347484114,41.917457202852695],[-87.70034130400522,41.917457497868774],[-87.69999390709573,41.91746101802858],[-87.69988594690426,41.91746211184995],[-87.69978008160285,41.91746318419774],[-87.69944425689093,41.91746690156014],[-87.69930957773327,41.91746876610284],[-87.6990149000798,41.91747284551564],[-87.69874147083769,41.91747585170771],[-87.69859897374938,41.91747692303527],[-87.69842300114463,41.917478245973406],[-87.69823276890975,41.91748000513848],[-87.6980813026731,41.91748140546702],[-87.69771557161296,41.91748483596108],[-87.69761760774148,41.917485754664106],[-87.6973539563223,41.91748827381613],[-87.6972005824373,41.91748948404194],[-87.69718657521739,41.917046376383496],[-87.69718316376044,41.91693845437437],[-87.6971703145229,41.91650825261441],[-87.69715622163459,41.91602571146346],[-87.69714915837586,41.91577504179076],[-87.69714672094761,41.91567208589863],[-87.69713992809811,41.91544661605486],[-87.69713015182006,41.91511028389066],[-87.69711656149734,41.91464747642278],[-87.69710494150732,41.914304438071525],[-87.69709893476062,41.914069498619405]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3541251.00088","perimeter":"0.0","tract_cent":"1154269.08228678","census_t_1":"17031231600","tract_numa":"22","tract_comm":"23","objectid":"665","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903807.76822415","census_tra":"231600","tract_ce_3":"41.89187481","tract_crea":"","tract_ce_2":"-87.70888992","shape_len":"7982.82092458"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71109071331304,41.88818060490304],[-87.7112206641228,41.88817830017415],[-87.71122338055801,41.888268215502556],[-87.71122636137905,41.88835968742485],[-87.7112297178949,41.88846656701763],[-87.71123989989621,41.888897166594624],[-87.7112486975995,41.889220623370704],[-87.71124930998108,41.889239836667656],[-87.7112609163374,41.88960408782152],[-87.71126571799839,41.88977321328602],[-87.71126973022325,41.889914536931315],[-87.71127254935898,41.89001685594424],[-87.71127630346716,41.89015310215865],[-87.71127928649926,41.89025492095623],[-87.71128325624517,41.890390407079884],[-87.71128904940952,41.89053525216435],[-87.71129603947878,41.89078325707421],[-87.711305770554,41.891128510828466],[-87.71132142522022,41.89167272404089],[-87.71132614842999,41.891843336397294],[-87.71132914907963,41.89195171838942],[-87.71134187637182,41.89234341785864],[-87.71135189235483,41.89268145295915],[-87.71135644242284,41.89283331650967],[-87.7113737250919,41.89340286772383],[-87.71138239766573,41.89367568764134],[-87.71138641635,41.893802113833914],[-87.7114005924822,41.89430197184061],[-87.71141508545861,41.89481461968155],[-87.71142223480987,41.89504374735715],[-87.71142603458642,41.8951603435603],[-87.71142970644473,41.895298947604545],[-87.71143590960692,41.895506620602404],[-87.71126922543932,41.89550806767914],[-87.71073729480328,41.89551289626495],[-87.71036232455357,41.895516268834605],[-87.71021612670586,41.895517643574905],[-87.70990668685005,41.895520550241606],[-87.70977731277165,41.895521765482144],[-87.70931950436837,41.89552641367257],[-87.70899948179748,41.895529778499586],[-87.70885052772317,41.89553133849201],[-87.70862729766068,41.895533681956294],[-87.70822007139614,41.895537777649835],[-87.70784826357813,41.895540747588086],[-87.70777674458553,41.89554137338156],[-87.70755344530761,41.89554331262421],[-87.70704542117612,41.895548556246766],[-87.70672055064738,41.89555186083939],[-87.70655633277818,41.895553410306064],[-87.70655102781619,41.89539185206964],[-87.70654347752742,41.89513379736991],[-87.70654229200325,41.895078604221744],[-87.70653804426021,41.89494663794913],[-87.70652213303093,41.8944403210117],[-87.70651377548778,41.894155835095376],[-87.70651022830063,41.894035096296285],[-87.70650425974165,41.893819119384766],[-87.70650122226392,41.89372446106156],[-87.70649330899681,41.89347786782269],[-87.70648192412449,41.89309838713484],[-87.70646880276284,41.892629818582314],[-87.70645745786815,41.89227256641439],[-87.70644963350409,41.89202104137033],[-87.70644585462902,41.89189607101115],[-87.70643925371478,41.89167778924356],[-87.70642414482839,41.89120970395987],[-87.70640953258602,41.89087139630485],[-87.70640545763881,41.89077705444154],[-87.7064002661246,41.8903990341131],[-87.706397660845,41.89030733912919],[-87.70639447359126,41.89019516013327],[-87.70639030012832,41.89007033467037],[-87.70638560779982,41.8899299904221],[-87.70638282426914,41.88982749476329],[-87.70637696668425,41.88961180314766],[-87.70636959788166,41.88929162005278],[-87.70636674410675,41.889218058477255],[-87.70635841886912,41.88900346780291],[-87.70634900678765,41.88865522679938],[-87.70633798743152,41.88827549969957],[-87.7064564101307,41.88827408857544],[-87.70653354285555,41.888273137756116],[-87.70685860495007,41.888269080016684],[-87.70723417731965,41.88826358187473],[-87.70748167662877,41.888257384042],[-87.7075615810761,41.88825473221079],[-87.70770853259326,41.88824970136677],[-87.70788030564586,41.88824137522111],[-87.70805069890972,41.88823338433605],[-87.7082160452403,41.88822502296913],[-87.70841719447247,41.88821719895606],[-87.7086343928068,41.88821117704895],[-87.70883686934513,41.888208504978316],[-87.709375882222,41.888201829787086],[-87.70957376752939,41.88819913119648],[-87.70967477347365,41.88819796517992],[-87.71082717461218,41.8881839785038],[-87.71109071331304,41.88818060490304]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1147298.88891","perimeter":"0.0","tract_cent":"1152556.16840444","census_t_1":"17031230300","tract_numa":"4","tract_comm":"23","objectid":"666","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911050.93905407","census_tra":"230300","tract_ce_3":"41.9117848","tract_crea":"","tract_ce_2":"-87.71498899","shape_len":"4400.07684176"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71596006497379,41.91000326212778],[-87.71670068063654,41.90999415275349],[-87.71668535389244,41.910055874440026],[-87.71664711644934,41.91020985305587],[-87.71659533179213,41.91047151205964],[-87.71657030614517,41.910762266424065],[-87.71658312743808,41.911128690475884],[-87.71659963395574,41.911711489649775],[-87.7166041714589,41.91181619060132],[-87.71660871254856,41.911920978287846],[-87.71661829835705,41.91227116646861],[-87.71662046703156,41.912350403572965],[-87.71662377061992,41.91247108578601],[-87.71663247500439,41.9127576304414],[-87.71664374223563,41.913113810027205],[-87.71665595985763,41.91354916607335],[-87.7162516799429,41.91355360750212],[-87.71592120479224,41.913557154857],[-87.71584837604813,41.91355825116388],[-87.71514712525386,41.91356882432058],[-87.71503940611862,41.91356924654254],[-87.71489346184761,41.91356981844744],[-87.71433284329737,41.91357752761931],[-87.71423591108143,41.91357870646668],[-87.71408731691602,41.913580512234205],[-87.7137548461428,41.91358527749565],[-87.71354870282018,41.91358850089606],[-87.71341692303012,41.91358940313929],[-87.71340488394748,41.91309299433653],[-87.71339183921431,41.91268696959499],[-87.71338181897107,41.91239484653841],[-87.71337562025367,41.912214133059344],[-87.71336845651966,41.911997684177074],[-87.71336479239515,41.91185528837389],[-87.71335985961892,41.91166358227718],[-87.71333610891254,41.91098960756725],[-87.71332114800842,41.910572786938324],[-87.71332109103423,41.91057119552404],[-87.71330705626168,41.91009950067626],[-87.7133051420556,41.910035168517744],[-87.7143595234548,41.91002084295653],[-87.71484567146116,41.91001423443888],[-87.71493273356114,41.910013377600016],[-87.71596006497379,41.91000326212778]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5581588.72138","perimeter":"0.0","tract_cent":"1147395.20965019","census_t_1":"17031230500","tract_numa":"24","tract_comm":"23","objectid":"667","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1910971.22590321","census_tra":"230500","tract_ce_3":"41.91166659","tract_crea":"","tract_ce_2":"-87.733951","shape_len":"11050.1974234"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73703715250102,41.91346818947151],[-87.73672396803951,41.91346553359312],[-87.73641119810223,41.913467680875186],[-87.736334494475,41.91346865477586],[-87.73622340822563,41.91347007826762],[-87.73609933061483,41.913471547968214],[-87.7355082008047,41.91347944882109],[-87.73499975202371,41.91348689933435],[-87.73499009467142,41.91348704083397],[-87.73498933224143,41.913487048661274],[-87.73491808058492,41.913487770387405],[-87.73425200822385,41.9134945129386],[-87.73388547948846,41.91349946011717],[-87.73376756531611,41.91350135903386],[-87.73364663915146,41.913502672670866],[-87.73354880662667,41.913503877117165],[-87.73338437454842,41.91350610537206],[-87.73254799125013,41.91351551365226],[-87.73184341751474,41.91352411377487],[-87.7313278779844,41.91353194447248],[-87.73048984743419,41.91354068422843],[-87.73010904800485,41.91354683421816],[-87.72981281859278,41.913550506232305],[-87.72889172762605,41.913561166282605],[-87.72833801093411,41.91356641458747],[-87.72796000119733,41.913571282632326],[-87.72766549574354,41.91357523014829],[-87.72708501823959,41.91358278898915],[-87.72685169067829,41.91358567320919],[-87.72644799288938,41.91359126365753],[-87.72644545443484,41.91350521332487],[-87.72643259383214,41.913069275798556],[-87.7264298882868,41.91297755883083],[-87.72642551152897,41.9128500386222],[-87.7264194077612,41.91267220748566],[-87.72640958346322,41.91229759513844],[-87.72639359349022,41.91180596349311],[-87.72639058632161,41.91170642164861],[-87.7263879718674,41.911619874727656],[-87.72637257958151,41.911189277946896],[-87.7263581578156,41.91073769287039],[-87.72634729602558,41.910398114117754],[-87.72634687702266,41.9103850265699],[-87.72633231045782,41.909937510911256],[-87.72633070704583,41.90988669018665],[-87.7275554401332,41.90986956396604],[-87.7277440949279,41.90986692459496],[-87.72877153668182,41.90985254523663],[-87.72897287650117,41.909849726394334],[-87.7299990749426,41.90983612094434],[-87.7301965350652,41.90983350404974],[-87.73120946673532,41.90982007523146],[-87.73142119428482,41.909817267322495],[-87.7322999663906,41.90980560799798],[-87.73243329551995,41.90980399898492],[-87.73264536854204,41.90980144007723],[-87.73365534569913,41.90978924700067],[-87.73387635507264,41.90978657743851],[-87.73487399646014,41.909774522469895],[-87.73552081001716,41.90976670261418],[-87.7362631109657,41.90975556171808],[-87.73854713596639,41.90972089158413],[-87.73880849855034,41.90971692099298],[-87.73976390887006,41.909705144666454],[-87.74056862941336,41.90969520032971],[-87.74112111820897,41.90968724396279],[-87.74138035744728,41.90968350958458],[-87.74138036111837,41.90968350987793],[-87.7413769865351,41.90984938728304],[-87.74137006581779,41.91000199997794],[-87.74134734479298,41.91032398719468],[-87.74132384662575,41.910630534333905],[-87.74132555277737,41.91074408613194],[-87.74133056178998,41.91089778911847],[-87.74133954281548,41.91101926754345],[-87.74134272133978,41.911072796785824],[-87.74133105684459,41.91124185012405],[-87.74130814458454,41.91153467878367],[-87.74129119838388,41.9118278817624],[-87.74128885787913,41.911882411630984],[-87.74128477193379,41.91205250730684],[-87.74128698854426,41.912161623459106],[-87.74130062029565,41.9128327561612],[-87.74132408768178,41.91348694088647],[-87.74133439798456,41.913762789530175],[-87.74133544805062,41.91389760542004],[-87.74102707258442,41.9138215780955],[-87.74061374953229,41.913771421241485],[-87.74025777067448,41.91372807637428],[-87.73995821303185,41.91369188256119],[-87.73995632962239,41.9136916560341],[-87.7394072657199,41.91362557378798],[-87.73909484499207,41.913589997797104],[-87.73878192719269,41.913558534458595],[-87.73872047160432,41.913553348790536],[-87.73871263445935,41.913552687461305],[-87.73870839101984,41.91355232629972],[-87.73846804666024,41.91353186768882],[-87.7383120070668,41.91352042503559],[-87.73801275286863,41.91350137972937],[-87.73771299351345,41.91348713315738],[-87.73734983947911,41.91347495798951],[-87.73703715250102,41.91346818947151]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2194601.07904","perimeter":"0.0","tract_cent":"1152582.5333788","census_t_1":"17031230800","tract_numa":"9","tract_comm":"23","objectid":"668","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1908884.74723297","census_tra":"230800","tract_ce_3":"41.90584004","tract_crea":"","tract_ce_2":"-87.7149495","shape_len":"7919.33328198"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7141915342421,41.90503815773978],[-87.71417839368526,41.90458574973995],[-87.71407515709295,41.90458695951712],[-87.71343950941069,41.90459307977989],[-87.71257588318868,41.904599281289435],[-87.71234317440233,41.904602394906085],[-87.71173407644758,41.90461054145282],[-87.71172976807675,41.904496899884656],[-87.71171917700042,41.904155159041366],[-87.71170740575485,41.903799139013195],[-87.71170431221167,41.903702469974036],[-87.71169954075948,41.90355337747542],[-87.71168925939978,41.90325055015912],[-87.7116847409162,41.903117457645344],[-87.71167805466307,41.902920604764546],[-87.71167499690328,41.90278776246683],[-87.71212835345698,41.902782811118094],[-87.7130247597882,41.902780247484685],[-87.71377845490815,41.90277549944567],[-87.71407100597847,41.90277365514938],[-87.71426113450732,41.90277225441127],[-87.7144920688809,41.90277055296627],[-87.71459152720352,41.9027698194331],[-87.71473769787286,41.90276874196287],[-87.71515928938274,41.90276563304549],[-87.71528236050607,41.90276434079068],[-87.7155642079368,41.902761774816064],[-87.71635818914376,41.90275649358086],[-87.71656238916434,41.90275429965197],[-87.71656491816724,41.90286435496245],[-87.7165769736386,41.90323390382993],[-87.71658903978322,41.903560368207565],[-87.71660641806756,41.90409827710727],[-87.71662289519107,41.904561896001766],[-87.71663119241538,41.90493457907169],[-87.7166330480685,41.90498643809218],[-87.7166370048524,41.90509808774434],[-87.7166455401071,41.90533893702732],[-87.71664761615148,41.905362667159444],[-87.71665076910726,41.90539870685807],[-87.71665278259466,41.905467186913974],[-87.7166561385141,41.90558131000255],[-87.71666706889036,41.90592184634635],[-87.7166680650917,41.9059528887308],[-87.71667861800051,41.90627635360349],[-87.71668208694395,41.90637377668674],[-87.71669804533656,41.90682195710226],[-87.71669932479652,41.90685788601647],[-87.71670938934615,41.90718631527973],[-87.71671289106303,41.9072726677286],[-87.71671642600873,41.90735984362511],[-87.7167245883369,41.90757673720047],[-87.7167295657358,41.907722345604256],[-87.7167337043627,41.90784341603859],[-87.71674093845346,41.908103333666034],[-87.71674319444602,41.908178696434284],[-87.7167463039988,41.90828256101756],[-87.71675895295675,41.90861863277162],[-87.71676239539174,41.90871008943042],[-87.71676826922312,41.90891034032847],[-87.71677069358753,41.90899306457571],[-87.71677292204328,41.90906980561301],[-87.716778585277,41.90926484104757],[-87.71677687133919,41.90942004574141],[-87.71676828551135,41.90951096744092],[-87.71675862704713,41.90961325164359],[-87.71673108440518,41.90987172037925],[-87.71671462644704,41.909937996090484],[-87.71670068063654,41.90999415275349],[-87.71596006497379,41.91000326212778],[-87.71493273356114,41.910013377600016],[-87.71484567146116,41.91001423443888],[-87.7143595234548,41.91002084295653],[-87.71435753425652,41.909964240092805],[-87.71434232170986,41.909535338588285],[-87.71432572012809,41.90909953247816],[-87.71431943501857,41.908934541844005],[-87.71431304297235,41.908650497775696],[-87.71431101740644,41.90856237826511],[-87.71430362813183,41.90832334330785],[-87.7142992915047,41.908199512680945],[-87.71429545065318,41.90808984689668],[-87.7142882159654,41.90781961052657],[-87.71428584089972,41.90774820260767],[-87.7142762024962,41.90745843187146],[-87.71426994397162,41.907297292316805],[-87.71426311120747,41.90712136921025],[-87.71425461643925,41.90684511008691],[-87.71424121753866,41.90650146560131],[-87.71423798307454,41.90639616446617],[-87.71423406378985,41.906268551196135],[-87.71422258250962,41.90594264367906],[-87.71421154900612,41.90559507665557],[-87.71420769896064,41.905493270536375],[-87.71420274178661,41.905362180739715],[-87.7141915342421,41.90503815773978]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3553457.64266","perimeter":"0.0","tract_cent":"1155345.93183768","census_t_1":"17031221200","tract_numa":"13","tract_comm":"22","objectid":"672","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914460.25088477","census_tra":"221200","tract_ce_3":"41.92108458","tract_crea":"","tract_ce_2":"-87.70464838","shape_len":"7995.68956154"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70691118851441,41.91740199152332],[-87.70696743870506,41.91740170013739],[-87.7070018729999,41.9183506143078],[-87.70703442714317,41.9192250254102],[-87.70704068025184,41.91939294267205],[-87.70707450162352,41.920662845017546],[-87.7070782959794,41.92080532464734],[-87.70709298111439,41.92101487086649],[-87.70709477930815,41.921046294403794],[-87.70710710217654,41.92126170915876],[-87.70711287145257,41.92145174658862],[-87.70711858099162,41.92163981662359],[-87.70713067521154,41.9219812645351],[-87.70714260289556,41.922338853613205],[-87.70715096199497,41.92257945215507],[-87.7071541269433,41.922668135406724],[-87.70715954168702,41.92289201156988],[-87.70716765043301,41.92322726315849],[-87.70716862322737,41.923267498834846],[-87.70717871278718,41.92342696601391],[-87.70718487569869,41.92361218006735],[-87.70719993832796,41.924074774218106],[-87.70720483569693,41.92422403197807],[-87.7072128492538,41.92447182446465],[-87.70721876790098,41.92471635141296],[-87.70687077649393,41.92471684957677],[-87.70660547779362,41.92472243416986],[-87.70639195836672,41.92472469881066],[-87.70622609251997,41.92472801668304],[-87.70588376394811,41.924731188491656],[-87.7057945383977,41.9247316986809],[-87.70536720737856,41.924736030855236],[-87.70499824093925,41.92473922639969],[-87.70464325875245,41.924741595575036],[-87.70395684967079,41.924746173801225],[-87.70369004514158,41.924748690176806],[-87.70310633594273,41.92475520239726],[-87.7030191668072,41.92475584877431],[-87.70285221525965,41.92475707294446],[-87.70231833542036,41.92476271672737],[-87.7023133724762,41.92458468439138],[-87.70230832770004,41.924347088988625],[-87.70230219934318,41.92410012980833],[-87.70229581539753,41.92395742238311],[-87.7022867087591,41.92380034192207],[-87.70227326484357,41.923568441522015],[-87.70226974264408,41.923463482929876],[-87.70226107740731,41.92325889956687],[-87.70225462890077,41.923106650361085],[-87.70225050088374,41.9229550365699],[-87.70224386993094,41.922761607577456],[-87.70224236670965,41.9227177531509],[-87.70223769467316,41.922552552708446],[-87.7022367286941,41.922510560721484],[-87.70223325560708,41.922384929839986],[-87.70222816864802,41.92220090993956],[-87.70222270841747,41.92201315775294],[-87.7022165319906,41.92180076504546],[-87.70221212743174,41.92150343093093],[-87.70220911796953,41.921300259477405],[-87.70219968038542,41.92102002193006],[-87.70219477993628,41.920864781455826],[-87.70219027802541,41.92070441118677],[-87.70218474421712,41.920507290573745],[-87.70217941952933,41.92030934756034],[-87.70217208221938,41.920077008294555],[-87.7021614150547,41.919726827260526],[-87.70215964465075,41.919668708487436],[-87.70215561757641,41.919541040200414],[-87.70212862440195,41.918685280759824],[-87.7021230859509,41.91850006945599],[-87.70212222589207,41.91847131371308],[-87.70210933476028,41.91804022595801],[-87.70209304995265,41.91756379307237],[-87.70208884977572,41.91744483808677],[-87.70228022783873,41.917443225097045],[-87.70243823230211,41.91743916635647],[-87.70259265346215,41.91743519967974],[-87.7031274115186,41.917434129317805],[-87.7031903926892,41.91743367721902],[-87.70322985637064,41.917433394058975],[-87.7036126286326,41.917430644285254],[-87.70379349350073,41.91742866129276],[-87.70395120893645,41.91742693175502],[-87.70410315483142,41.917425265334586],[-87.70447501352263,41.917422582133064],[-87.70467078947712,41.91742119862889],[-87.70507446938731,41.91741834467259],[-87.70521003551887,41.91741596532258],[-87.70528386355117,41.91741466938172],[-87.70556080096401,41.91740980812122],[-87.70595550739483,41.91740772143391],[-87.70666188516141,41.917403281568504],[-87.70691118851441,41.91740199152332]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10886524.0345","perimeter":"0.0","tract_cent":"1147498.81251631","census_t_1":"17031231300","tract_numa":"49","tract_comm":"23","objectid":"669","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906315.36650512","census_tra":"231300","tract_ce_3":"41.89888844","tract_crea":"","tract_ce_2":"-87.73368995","shape_len":"13563.5718394"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72618699483579,41.89877611298356],[-87.72617004776627,41.89820755377825],[-87.72615615244348,41.8977356359055],[-87.7261463868811,41.897370627726445],[-87.72614040535294,41.897200781665724],[-87.72613492459486,41.897045155061214],[-87.72611870902718,41.89657393804945],[-87.726104350707,41.896158713338096],[-87.7260952411798,41.89584066249389],[-87.72608734829412,41.895565098922795],[-87.72608049209401,41.89536765044182],[-87.72623824691426,41.89536597878414],[-87.72668242342584,41.89535776246525],[-87.72718328366798,41.89534849567332],[-87.72731594167746,41.895345589069926],[-87.7274618625738,41.89534239169611],[-87.72778741687377,41.8953364798783],[-87.72841227371893,41.89532358214635],[-87.72854855112041,41.8953224500483],[-87.72866091636497,41.895321516248735],[-87.72914738372218,41.89531164534135],[-87.72957373809625,41.895304228294634],[-87.72978203324942,41.89530019617996],[-87.72989929569687,41.895297926037706],[-87.73047161454919,41.895286497323845],[-87.73085629056106,41.89527800571356],[-87.73101826410019,41.89527454500812],[-87.73112131144558,41.89527234313053],[-87.73147871245564,41.8952671915842],[-87.73160069860944,41.89526538847969],[-87.73210687366763,41.895257145074766],[-87.73221678013267,41.8952551864132],[-87.73252819626903,41.895249635553306],[-87.73292515641471,41.89524325946168],[-87.73322092156243,41.895237396021564],[-87.73348128879249,41.895230557401675],[-87.73371986462692,41.89522478168875],[-87.73382118199143,41.895222995633304],[-87.73405096292724,41.89521898094918],[-87.73436927031676,41.89521413778854],[-87.73471472741737,41.89520855135613],[-87.73498778021431,41.895204134946695],[-87.73523556930228,41.89519900425515],[-87.73569459322007,41.895189621287436],[-87.73594358802562,41.89518512185329],[-87.73618865280675,41.89518069310067],[-87.736472978762,41.895176518113395],[-87.73687815262885,41.89517148828199],[-87.73714251783873,41.8951651772191],[-87.73749754422576,41.895157469905946],[-87.7377976043203,41.89515178161548],[-87.73822128249823,41.89514360480061],[-87.73841296849915,41.89514029696938],[-87.73864568725072,41.89513628090009],[-87.7390886529493,41.89512759703257],[-87.73933581601011,41.895122536854096],[-87.73951868730994,41.89511917389751],[-87.73967605757915,41.89511688656197],[-87.73983211120033,41.89511407079985],[-87.739954618242,41.89511256337847],[-87.74007867470394,41.895110322885465],[-87.74027948618438,41.895105801395],[-87.74041479069476,41.89510363893512],[-87.74062008709451,41.8951003579003],[-87.74064450641546,41.89509991615271],[-87.74079638134103,41.89509716834715],[-87.74102711346238,41.89509299340182],[-87.74107090755072,41.89509220089025],[-87.74106517233581,41.8951921717805],[-87.74108330092128,41.89531712830813],[-87.74111219723306,41.895518979146225],[-87.74113485680456,41.89565047632669],[-87.74115200406536,41.89578228837867],[-87.74116317634474,41.895914755674525],[-87.74116838104523,41.89604719219358],[-87.7411650338684,41.89611132159056],[-87.74115527188557,41.89617404578605],[-87.74114046325637,41.8962364009247],[-87.7410977643982,41.89643513853406],[-87.74102097048888,41.89650955049133],[-87.74102746608307,41.896589825625306],[-87.7410364632636,41.89665473218568],[-87.74107438360764,41.89692829540168],[-87.74108373306878,41.89735747411395],[-87.74109153542497,41.89765595032563],[-87.74109610621566,41.897856990117475],[-87.74109770419531,41.897932464716284],[-87.74110478027049,41.89801139814204],[-87.74110809255104,41.898348614114745],[-87.74111698722317,41.89867796861615],[-87.74111928179539,41.89877744161428],[-87.74121249648921,41.898776087500075],[-87.74122124801829,41.89887300432329],[-87.74123230437094,41.89896842314714],[-87.74124887342234,41.89906352873424],[-87.74126963730416,41.89915179452076],[-87.7412940282056,41.89924522417853],[-87.74131244380709,41.89933930935879],[-87.74132534601235,41.89943370941563],[-87.74133073770538,41.89949616840703],[-87.7413416793477,41.89985263302704],[-87.7413447972047,41.90006189714077],[-87.74133957276128,41.900627526954196],[-87.74116367849331,41.90063142245581],[-87.74117695781236,41.90118205403087],[-87.7412012719734,41.90217833830042],[-87.74120719741866,41.90243152490943],[-87.74120720061966,41.902431655551716],[-87.74112826390815,41.902432679336606],[-87.74064971333664,41.902438884921686],[-87.74008893949768,41.90244641732829],[-87.739986102522,41.902448130793125],[-87.73988683588009,41.90244978468086],[-87.73971680577563,41.90245261715458],[-87.73938122543171,41.90245845600016],[-87.73898888237524,41.90246526243734],[-87.73859992620447,41.90247122557949],[-87.73768824804056,41.90248519727171],[-87.73732860589861,41.90249112484317],[-87.73696800816008,41.902497101210095],[-87.73667964058619,41.90250183266665],[-87.73640989968924,41.90250627603303],[-87.73614586238018,41.90251265457579],[-87.73581258384472,41.9025207051712],[-87.73532123098181,41.90252874015294],[-87.73474883102858,41.90253807945579],[-87.73387351405434,41.90255239370659],[-87.73368327811802,41.90255427065294],[-87.73356363730471,41.902555276179484],[-87.7326141977899,41.90256886435249],[-87.73192610748241,41.902579779703984],[-87.73133842547838,41.9025891042938],[-87.7312250793334,41.902592254543826],[-87.73109503732711,41.902595868713085],[-87.73060144842479,41.90260328203221],[-87.73050056229906,41.90260479663674],[-87.7301132964453,41.902610611471715],[-87.72998967585661,41.90261176004088],[-87.72983593160744,41.90261318814646],[-87.7293741060156,41.90262182980224],[-87.7292199803048,41.90262471336493],[-87.72890184529624,41.90263066824172],[-87.72876380014026,41.90263300877461],[-87.72864738587279,41.90263498170921],[-87.72814890635722,41.90264286614097],[-87.7280380637644,41.902644614528214],[-87.72765101471907,41.90265072379247],[-87.72757550275244,41.9026518101105],[-87.72752955602343,41.90265247085254],[-87.72741632685921,41.902654096279434],[-87.72691073589085,41.902660373595424],[-87.72660029819419,41.90266422223813],[-87.72630293360285,41.90267145336649],[-87.72629898061498,41.902562327874584],[-87.72628890581942,41.90221040839205],[-87.7262887757024,41.90220587943659],[-87.72628574826005,41.90210045751275],[-87.72627105041643,41.901590225881684],[-87.7262532713496,41.9009697692822],[-87.72624928023187,41.90084657548867],[-87.72623962854583,41.90054864884383],[-87.7262212742383,41.89986487921018],[-87.72619711111054,41.899166177834196],[-87.72619332748377,41.89902028392276],[-87.72618699483579,41.89877611298356]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3598298.23632","perimeter":"0.0","tract_cent":"1155255.97195386","census_t_1":"17031220500","tract_numa":"31","tract_comm":"22","objectid":"670","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917122.348209","census_tra":"220500","tract_ce_3":"41.9283914","tract_crea":"","tract_ce_2":"-87.70490724","shape_len":"8313.03688957"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70252169266048,41.93205918132172],[-87.70251481609291,41.93183981015815],[-87.70251255007764,41.93176752448158],[-87.70251022802987,41.93164706805246],[-87.70250807524049,41.93153539351565],[-87.70250314665468,41.93136050454216],[-87.70249269294655,41.930992913292094],[-87.70248314087158,41.93063460244708],[-87.70247606206742,41.93036834642855],[-87.70247221075752,41.93023466950263],[-87.7024672616054,41.93006289040436],[-87.70246261669996,41.92990167219691],[-87.70245583674144,41.92966854056859],[-87.70244839778529,41.9294142747845],[-87.70244341338667,41.92924358410109],[-87.70244127608146,41.92917574144822],[-87.70243596698114,41.929007238041066],[-87.70242605658693,41.9286681470203],[-87.702423489537,41.928580332826684],[-87.7024205148565,41.928423868518216],[-87.70241748692851,41.92826460425494],[-87.70241336395938,41.92815001351511],[-87.70240513949592,41.92792145343872],[-87.70240162135087,41.92777878930224],[-87.70239871459812,41.92767313192445],[-87.70239561492731,41.92756042576615],[-87.70238315854735,41.92713429827062],[-87.70237926220787,41.92700100795576],[-87.70237180545728,41.92679185701658],[-87.70236473198256,41.926584052846046],[-87.70236017795445,41.926450274273606],[-87.70235627920437,41.926279122947264],[-87.7023466316372,41.925968134625215],[-87.70234155395141,41.925804455643984],[-87.70234178030358,41.925716559336266],[-87.70234190278344,41.92566885136924],[-87.70234212549289,41.925582368590185],[-87.70233885260815,41.92539242272939],[-87.70233684536572,41.92532467596918],[-87.70233503222073,41.92526348540748],[-87.70232664899103,41.92506093548716],[-87.70231833542036,41.92476271672737],[-87.70285221525965,41.92475707294446],[-87.7030191668072,41.92475584877431],[-87.70310633594273,41.92475520239726],[-87.70369004514158,41.924748690176806],[-87.70395684967079,41.924746173801225],[-87.70464325875245,41.924741595575036],[-87.70499824093925,41.92473922639969],[-87.70536720737856,41.924736030855236],[-87.7057945383977,41.9247316986809],[-87.70588376394811,41.924731188491656],[-87.70622609251997,41.92472801668304],[-87.70639195836672,41.92472469881066],[-87.70660547779362,41.92472243416986],[-87.70687077649393,41.92471684957677],[-87.70721876790098,41.92471635141296],[-87.70722452278692,41.9249541036092],[-87.70723141939548,41.92516577595439],[-87.7072379426893,41.92537804998566],[-87.70724272650541,41.92555400841205],[-87.70724802220052,41.92578285086019],[-87.70725380073235,41.92600365534983],[-87.70726574381762,41.92636756804651],[-87.70727262857999,41.926577356088],[-87.7072743788847,41.92663820483989],[-87.70727819595456,41.92677090923504],[-87.70728152341486,41.926885361583345],[-87.7072873208436,41.927128944301224],[-87.70729212490289,41.92733077973017],[-87.70730320425325,41.92749854578183],[-87.7073224149052,41.927970320252086],[-87.7075858378622,41.927966982846996],[-87.70787280915098,41.92796172702009],[-87.70788026632323,41.92799778559484],[-87.70788862807893,41.92833054097639],[-87.70789454818106,41.92836512466156],[-87.70789455286678,41.92836998717911],[-87.7078945908063,41.92841143670671],[-87.70789459067036,41.92841156348916],[-87.70789482510517,41.92871753814368],[-87.70786476417794,41.92878529368099],[-87.70781364047238,41.92879907933128],[-87.70769900080201,41.92877855938411],[-87.70764580607211,41.9287294503158],[-87.70764579004562,41.928729435684076],[-87.7076331533905,41.92873035940883],[-87.70738696760947,41.928748359702396],[-87.70734983663937,41.92874839273028],[-87.7073478834226,41.92874839443062],[-87.70734788774078,41.92874851657216],[-87.7073584450802,41.92904203217495],[-87.70736424579987,41.92932971011189],[-87.70736485561271,41.92935995424009],[-87.70736663336855,41.92944503488642],[-87.7073713443875,41.92961717831618],[-87.70737002438015,41.92978978282183],[-87.7073805682173,41.93024445477064],[-87.70738605208109,41.93048092068458],[-87.70738835139502,41.93062162957341],[-87.70739421463719,41.930846923884395],[-87.70739508334822,41.93088030935664],[-87.70740036454838,41.931084398613244],[-87.70740650411356,41.93129842663063],[-87.70741536915479,41.93161864322303],[-87.70742076280638,41.931813458140304],[-87.70742719622322,41.93202943009281],[-87.70706016836452,41.93202732474154],[-87.70681647700867,41.932030852557574],[-87.70654188718844,41.93203347024689],[-87.70620258625019,41.932034744833345],[-87.70581217458373,41.932036210001],[-87.70559298193362,41.93203737241628],[-87.70542222792406,41.93203841183577],[-87.70498089597827,41.93204084294646],[-87.70464240910233,41.93204270683599],[-87.70443048316183,41.932044839032926],[-87.7041512242761,41.93204761752564],[-87.70375219011925,41.9320521771597],[-87.70351661504748,41.93205486816503],[-87.70325990999135,41.932054996536976],[-87.70314035902818,41.93205504707115],[-87.70292566078687,41.93205513768423],[-87.70279181378874,41.93205522599233],[-87.70252169266048,41.93205918132172]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2369034.77166","perimeter":"0.0","tract_cent":"1152460.25924231","census_t_1":"17031221000","tract_numa":"16","tract_comm":"22","objectid":"671","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914394.18894949","census_tra":"221000","tract_ce_3":"41.92096087","tract_crea":"","tract_ce_2":"-87.71525282","shape_len":"7108.61470596"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71662240240704,41.9172844609237],[-87.71677224478051,41.91728273213539],[-87.71677554998368,41.917367829812854],[-87.7167829097008,41.91767966880058],[-87.71678468089682,41.91773782086961],[-87.71679396557407,41.918042680069505],[-87.71679917680488,41.918199375879354],[-87.71680291317674,41.9183117175559],[-87.71681168017547,41.918599524592686],[-87.71681361525643,41.91865642012586],[-87.71682534046181,41.919001188540804],[-87.71682807928806,41.91911429789468],[-87.7168303096952,41.91920640128005],[-87.71684080966348,41.919572126526376],[-87.716853373255,41.91994052418183],[-87.71685594786575,41.92002905339643],[-87.71685831486025,41.92011044595],[-87.71686880311806,41.92044088001332],[-87.71687015849666,41.92048944999169],[-87.71687915802316,41.92081190048732],[-87.71688481885846,41.92094333773141],[-87.71688858825206,41.92103085825417],[-87.71689587666492,41.92125474412534],[-87.71689884323794,41.921400862787834],[-87.71690517435094,41.92171272347203],[-87.71691020666319,41.92186022560126],[-87.71691454599754,41.921987416441844],[-87.71692035263425,41.92220492743586],[-87.71692402414214,41.922317899306755],[-87.71693424423081,41.922632388108624],[-87.71693875204521,41.9227739228181],[-87.71695073315216,41.923141091836065],[-87.71695341446976,41.92322936059663],[-87.71696136484327,41.92349106539031],[-87.71696711538496,41.92369030001785],[-87.71696932874255,41.92376698534304],[-87.71697670785927,41.924031129407446],[-87.71697935627793,41.92410335110766],[-87.7169882633751,41.924346228736155],[-87.71699394670084,41.9246033919614],[-87.71669920547058,41.92460691511383],[-87.71612807767215,41.92461603091142],[-87.71577113044505,41.92461906004334],[-87.7155025649408,41.924621338637586],[-87.71538227774445,41.9246229605391],[-87.7150713993096,41.92462715061943],[-87.71499900255937,41.92462779370206],[-87.71475086196745,41.924630738154136],[-87.7145520741057,41.92463348866079],[-87.71421984121048,41.92463808467721],[-87.71394681149243,41.92464223785936],[-87.71393964523398,41.92464230979445],[-87.71373814512948,41.924644330213006],[-87.71372833958564,41.92434366726274],[-87.71372232197146,41.92415385639015],[-87.71371595593719,41.92395630792862],[-87.71370952003755,41.923730588216856],[-87.71370788976633,41.92367341661371],[-87.7137009937035,41.92341767228373],[-87.71369663179614,41.92327607404468],[-87.713687774095,41.92302942994659],[-87.7136808016804,41.92281360326195],[-87.71367521934954,41.9226408069782],[-87.71366626925656,41.922356104026605],[-87.71366435859332,41.922293548641676],[-87.71365471377787,41.92200299260059],[-87.71365155353698,41.92190021078439],[-87.71364711145519,41.92175575149034],[-87.71363705555069,41.921441655680454],[-87.71363441392283,41.92135914195711],[-87.71362641944184,41.92111826531214],[-87.71362229427598,41.92098370806201],[-87.7136165324743,41.92079576507959],[-87.71361092080876,41.92056686610851],[-87.71360247295999,41.92031210118353],[-87.71359697813725,41.92016986557801],[-87.71359333848105,41.92006188713793],[-87.713588213674,41.919909857448054],[-87.71357840872064,41.91960519013916],[-87.71357406058561,41.91947007319824],[-87.71356769145676,41.919277668336946],[-87.71356332206855,41.91914987781738],[-87.7135592146149,41.91902976377004],[-87.71355247720852,41.91877673687122],[-87.71354977707894,41.91869330045684],[-87.71353765579337,41.91831872723733],[-87.7135347428003,41.918235800368265],[-87.71353091476085,41.91812684173229],[-87.71352021415346,41.91780496810713],[-87.7135073953015,41.917399232521554],[-87.71352102204092,41.91732293689018],[-87.71367261903043,41.91731915631073],[-87.71393748411847,41.91731638669223],[-87.71481535757978,41.91730597065294],[-87.71515199708188,41.91730080602264],[-87.71527191563493,41.9172984949282],[-87.71662240240704,41.9172844609237]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3282111.68991","perimeter":"0.0","tract_cent":"1159344.16162428","census_t_1":"17031221500","tract_numa":"16","tract_comm":"22","objectid":"673","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914694.9102964","census_tra":"221500","tract_ce_3":"41.92164713","tract_crea":"","tract_ce_2":"-87.68995147","shape_len":"7600.68680353"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68814964253325,41.91756351632409],[-87.68859598034022,41.917563002792335],[-87.68885780119645,41.91772199326619],[-87.68904031265335,41.9178376990971],[-87.68921341298791,41.91793917104234],[-87.68951363411699,41.91811516076741],[-87.68990774370894,41.91835584332588],[-87.69045121416343,41.91868827715797],[-87.6905140742104,41.91872685975328],[-87.69084575648047,41.91893044078853],[-87.69126966341769,41.91919063218554],[-87.69133204701146,41.91922787248344],[-87.69157793327439,41.91937465460988],[-87.69162532595445,41.9194033806931],[-87.69193536242575,41.91959142436262],[-87.6922745378649,41.9197982480922],[-87.69260709275291,41.920001475706414],[-87.69271227902078,41.92006534175831],[-87.69272999312277,41.920695600078865],[-87.69273212619501,41.92077148987245],[-87.69273662972134,41.92095809530231],[-87.69274367488866,41.92125366045823],[-87.69275892400786,41.92177531363289],[-87.69276000615693,41.92181204922875],[-87.69277824750152,41.92243118135718],[-87.6927802805322,41.92250018283445],[-87.69278671245658,41.92271854939298],[-87.69279321734746,41.9229866417351],[-87.69279711890701,41.923125116038804],[-87.69280411916576,41.923373556152626],[-87.69281330783784,41.923700307823374],[-87.69282380366312,41.924035984952546],[-87.69283273528845,41.92437864233052],[-87.69283649774901,41.9245229912114],[-87.69284305247629,41.92485222509366],[-87.692775911987,41.92485267382349],[-87.69252814854275,41.92485450978294],[-87.69233227437573,41.924855960913476],[-87.69215969570067,41.924857631806674],[-87.69193485796427,41.92485980635666],[-87.69174871898844,41.92486159297868],[-87.69149867320631,41.92486379047122],[-87.69130639777758,41.92486547895697],[-87.69104613590778,41.924867763783986],[-87.69078072345091,41.92487061469492],[-87.69052883571776,41.92487326628573],[-87.69033008937072,41.924875336776644],[-87.69008438605366,41.92487696412605],[-87.68995638989436,41.924877811757625],[-87.68987888470478,41.92487832502995],[-87.6896535335541,41.92488038246594],[-87.68939668284824,41.924883316317974],[-87.68886603669102,41.92488937533602],[-87.6887887497155,41.92489025764666],[-87.68842234438267,41.92489443981249],[-87.68818916629883,41.92489655140028],[-87.6880626045323,41.92489719367448],[-87.6876419126273,41.92490068324405],[-87.68763335186556,41.92466915036156],[-87.68762991494488,41.92452895599699],[-87.68762527662267,41.92434023696454],[-87.68761960743436,41.92413411373776],[-87.68761790767323,41.924072331658365],[-87.68761344589504,41.92391009538246],[-87.6876086465312,41.923748323721775],[-87.68760511009687,41.92362890256501],[-87.68759713726304,41.923377788492196],[-87.6875945853765,41.92329742347614],[-87.68758893485092,41.9231194558021],[-87.68758293264445,41.92295668943238],[-87.68757889166157,41.922847336731614],[-87.6875716598872,41.922619388062],[-87.68756663865173,41.92246739169726],[-87.68756347570293,41.92235729584873],[-87.68755285896528,41.92205822520899],[-87.68754706799989,41.92185772632919],[-87.68753922773082,41.92173740332233],[-87.68753812411724,41.921643295381536],[-87.68753624534992,41.921482996716875],[-87.68752334114339,41.9210755161936],[-87.68752057629132,41.920984255364544],[-87.68751245194426,41.920716043509515],[-87.68750850843955,41.92060921572733],[-87.68750122517956,41.92041191997142],[-87.68748922239264,41.920064515582354],[-87.68748689693837,41.91998022754638],[-87.68748322520577,41.91984711157712],[-87.68747932015906,41.919705542345234],[-87.68747012947662,41.91939997576315],[-87.68746614766559,41.919267626694236],[-87.68746363484769,41.91918410570182],[-87.68745991721185,41.91908721326608],[-87.68745260701806,41.91889669554778],[-87.68744769731494,41.91873503288998],[-87.68744323814092,41.918584953130775],[-87.68744108606113,41.91851252111421],[-87.68743458769787,41.91832993848834],[-87.68743066440098,41.918219708204674],[-87.68742266601339,41.91799266062823],[-87.68741562546444,41.91779451515857],[-87.687409990258,41.91756774018782],[-87.68758274349851,41.917567225023426],[-87.68780475629266,41.91756574916728],[-87.68801640592271,41.917564379020426],[-87.68814964253325,41.91756351632409]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3528057.15576","perimeter":"0.0","tract_cent":"1162000.34830757","census_t_1":"17031221700","tract_numa":"19","tract_comm":"22","objectid":"674","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914604.82005374","census_tra":"221700","tract_ce_3":"41.92134482","tract_crea":"","tract_ce_2":"-87.68019446","shape_len":"8031.48810161"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67789934469693,41.92502609850433],[-87.67788047348098,41.92471210662642],[-87.67787077302663,41.9245508173376],[-87.67786951414597,41.924529882417595],[-87.677860465727,41.924275852741836],[-87.67784528400134,41.92389223316971],[-87.67782478528612,41.92337439059257],[-87.6778138620888,41.923098420504495],[-87.67781022918733,41.92299925665543],[-87.67780761249423,41.92292782379266],[-87.67780431478687,41.92283780808407],[-87.67779976742008,41.9227136852157],[-87.67779741895157,41.922652199503716],[-87.67778931116236,41.92243993180143],[-87.67778838101457,41.922415569839515],[-87.67778998535665,41.92231839031632],[-87.67778101043578,41.922122204852705],[-87.67777227297809,41.92193380473506],[-87.67776598733644,41.92180379296598],[-87.67776218988645,41.92172527488903],[-87.67775830465064,41.921598688990784],[-87.6777523798271,41.921397752821804],[-87.67774886723666,41.921278630869914],[-87.6777365846363,41.92098525753622],[-87.6777351922676,41.920934262130416],[-87.67773144914703,41.920797139195116],[-87.67772642988606,41.92061324734615],[-87.6777127143111,41.92024450959777],[-87.67770353073443,41.92004168650304],[-87.67769994774106,41.91996254970403],[-87.67769232810073,41.9197198067487],[-87.67768648255094,41.91957522696446],[-87.67768197807752,41.919463821016514],[-87.67767515800716,41.91928063206531],[-87.67767241008227,41.91920682437357],[-87.67766928619777,41.919122256613505],[-87.67766104573839,41.918899186462404],[-87.67764768985604,41.918520784109965],[-87.6776423899197,41.91837062400358],[-87.67763726408113,41.91821720584222],[-87.6776284397949,41.91795309239046],[-87.67762149764636,41.91775780640855],[-87.6777361262175,41.917755287244646],[-87.67779317295326,41.91775403363894],[-87.67813650898273,41.917747153819334],[-87.67832399105953,41.91774339662967],[-87.67839535803694,41.91774204713565],[-87.67847238571812,41.91774053833409],[-87.67906545318625,41.91772910032098],[-87.67957792626798,41.91771920341897],[-87.67976226469726,41.917715642776024],[-87.68009601503611,41.91770662872146],[-87.6802658120053,41.917702042449],[-87.68061490808228,41.91769529802101],[-87.68173197771762,41.917673709052],[-87.68199602642329,41.91766859686281],[-87.68236337403305,41.91766148357983],[-87.68251853354988,41.917658895232506],[-87.68252024255662,41.91781550074605],[-87.68252747230649,41.91809117201515],[-87.68253399387322,41.91834252539575],[-87.68253693145309,41.9184259166349],[-87.68254115175809,41.918545721169835],[-87.68255078966291,41.91881583526907],[-87.68256096047126,41.91910225308828],[-87.68256366013084,41.91918501783242],[-87.68256664757546,41.91927659866567],[-87.68257445006365,41.91949231173634],[-87.68257810955859,41.91960287984174],[-87.68258939308129,41.919943805654164],[-87.68259249881328,41.920037637137234],[-87.68260400577026,41.92036613146792],[-87.68261158439418,41.920582199976714],[-87.68261613978699,41.92071060018503],[-87.68261901119224,41.92079151681825],[-87.68262315051668,41.92089403715277],[-87.68263075149305,41.9210818405055],[-87.68263595643496,41.92121043675337],[-87.68264003856545,41.921313093692746],[-87.68264710712121,41.92149085014427],[-87.68265546436591,41.9217249523149],[-87.68265588853892,41.92173683749391],[-87.68266339779714,41.921918602999526],[-87.68266777383738,41.922024527220415],[-87.6826720991436,41.922174036600914],[-87.68267315844258,41.92221064372208],[-87.68267990435496,41.92244339233485],[-87.68268173596857,41.92250669856518],[-87.68268344142729,41.92256564048594],[-87.68268818428459,41.92267879479003],[-87.68269456210237,41.92283096011973],[-87.68269661258725,41.92289768112855],[-87.68269950546265,41.92299179977332],[-87.682703180233,41.92311135029529],[-87.68270704518305,41.9232370665212],[-87.6827115737611,41.92336951122986],[-87.68271389244661,41.923437324307244],[-87.68271716637427,41.92353307462326],[-87.68271897143451,41.92358587058088],[-87.68272636323809,41.92380953913492],[-87.6827298878491,41.92391649745859],[-87.68273327261242,41.92401920967102],[-87.68273323918868,41.92405617310071],[-87.68273315911901,41.92414547111417],[-87.68273311328511,41.924196568331084],[-87.68275034248605,41.9244731225038],[-87.68275032274397,41.9244731487365],[-87.68250180476227,41.9248091277466],[-87.68278112459508,41.92496790534604],[-87.68278127731463,41.92496799210555],[-87.68273797932535,41.924968658961454],[-87.68194000545606,41.92498094587535],[-87.68181302003265,41.92498290047524],[-87.68158623601849,41.92498639140321],[-87.68143322482226,41.9249895672214],[-87.68131443087424,41.924992032648376],[-87.68121108075947,41.92499417732516],[-87.68117853104306,41.924994853045185],[-87.68110424293616,41.92499347938774],[-87.68084441995117,41.92498867390824],[-87.68048190030981,41.92499310665306],[-87.68035013979024,41.92499471772193],[-87.6803174073032,41.92499511801033],[-87.68020633949085,41.924996590834674],[-87.67998704696817,41.92499949772851],[-87.67991842911032,41.925000407478876],[-87.67981335878503,41.92500180016746],[-87.67946213895748,41.925006989941174],[-87.67942323417824,41.92500756475845],[-87.67938531459059,41.925007994241184],[-87.6791256980792,41.92501093409236],[-87.67872511386383,41.92501546932253],[-87.67853033280869,41.925017611970006],[-87.67842772642076,41.92501874054944],[-87.67832092861333,41.92501991400683],[-87.67789934469693,41.92502609850433]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5191965.12435","perimeter":"0.0","tract_cent":"1147414.4445014","census_t_1":"17031200500","tract_numa":"22","tract_comm":"20","objectid":"675","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912300.24637752","census_tra":"200500","tract_ce_3":"41.91531318","tract_crea":"","tract_ce_2":"-87.73384621","shape_len":"10542.4305973"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73641119810223,41.913467680875186],[-87.73672396803951,41.91346553359312],[-87.73703715250102,41.91346818947151],[-87.73734983947911,41.91347495798951],[-87.73771299351345,41.91348713315738],[-87.73801275286863,41.91350137972937],[-87.7383120070668,41.91352042503559],[-87.73846804666024,41.91353186768882],[-87.73870839101984,41.91355232629972],[-87.73871263445935,41.913552687461305],[-87.73872047160432,41.913553348790536],[-87.73878192719269,41.913558534458595],[-87.73909484499207,41.913589997797104],[-87.7394072657199,41.91362557378798],[-87.73995632962239,41.9136916560341],[-87.73995821303185,41.91369188256119],[-87.74025777067448,41.91372807637428],[-87.74061374953229,41.913771421241485],[-87.74102707258442,41.9138215780955],[-87.74133544805062,41.91389760542004],[-87.74134621730076,41.91422319564044],[-87.7413655661722,41.91491244096981],[-87.74136991936003,41.9150874082693],[-87.7413690223222,41.91518448088699],[-87.74138827272827,41.915636006433225],[-87.74139776928298,41.915900531089356],[-87.74140371916694,41.916068245624025],[-87.74140426479866,41.91608363095789],[-87.74140426890767,41.91608374294377],[-87.74141235146051,41.91631052599556],[-87.74141374751143,41.916358214230556],[-87.74142999502229,41.916984830360406],[-87.74135681287414,41.916985661383364],[-87.74053878456897,41.916994944995146],[-87.7400072806637,41.91700211749912],[-87.73959314491995,41.91700770459214],[-87.73904608049946,41.917012860245656],[-87.73878086800713,41.91701703615314],[-87.73845058743842,41.917022235504206],[-87.73795209437685,41.91702755524361],[-87.73755481607324,41.91703115516022],[-87.73705841382318,41.917035651188634],[-87.73664457063853,41.91704137735338],[-87.73632797632426,41.91704487141367],[-87.73555086525452,41.91705344390929],[-87.73509573389919,41.9170580351593],[-87.7338868758723,41.91707022076979],[-87.7335153792097,41.91707396297821],[-87.73283422135691,41.91708520735298],[-87.73266923840174,41.917087130647396],[-87.73244147459462,41.91709017798058],[-87.73170581580153,41.91709878467037],[-87.73144602320092,41.91710373026253],[-87.73128757844698,41.91710674621399],[-87.73049346755853,41.917114819109806],[-87.73022163644306,41.9171187278188],[-87.73006569404818,41.917120969828304],[-87.729527243008,41.91712818355099],[-87.7292844932757,41.9171314625015],[-87.72900021050701,41.91713497734907],[-87.72878937141522,41.91713758318656],[-87.72807072835073,41.91714565243768],[-87.72778108342314,41.91715012639471],[-87.72745616227738,41.917155144554464],[-87.72681681435566,41.91716263640732],[-87.72655895627874,41.91716615498199],[-87.7265507411543,41.917013755693],[-87.72654194625959,41.916693452202516],[-87.72652916031713,41.91622780352392],[-87.72652302734348,41.91582288716008],[-87.72651800677205,41.91545041346902],[-87.72651026165732,41.91534379973786],[-87.72650422553004,41.915260714202866],[-87.72648298393665,41.91458642640033],[-87.72645373422856,41.91377998635565],[-87.72645280347245,41.91375432532933],[-87.7264495655605,41.91364456963746],[-87.72644799288938,41.91359126365753],[-87.72685169067829,41.91358567320919],[-87.72708501823959,41.91358278898915],[-87.72766549574354,41.91357523014829],[-87.72796000119733,41.913571282632326],[-87.72833801093411,41.91356641458747],[-87.72889172762605,41.913561166282605],[-87.72981281859278,41.913550506232305],[-87.73010904800485,41.91354683421816],[-87.73048984743419,41.91354068422843],[-87.7313278779844,41.91353194447248],[-87.73184341751474,41.91352411377487],[-87.73254799125013,41.91351551365226],[-87.73338437454842,41.91350610537206],[-87.73354880662667,41.913503877117165],[-87.73364663915146,41.913502672670866],[-87.73376756531611,41.91350135903386],[-87.73388547948846,41.91349946011717],[-87.73425200822385,41.9134945129386],[-87.73491808058492,41.913487770387405],[-87.73498933224143,41.913487048661274],[-87.73499009467142,41.91348704083397],[-87.73499975202371,41.91348689933435],[-87.7355082008047,41.91347944882109],[-87.73609933061483,41.913471547968214],[-87.73622340822563,41.91347007826762],[-87.736334494475,41.91346865477586],[-87.73641119810223,41.913467680875186]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6302189.644","perimeter":"0.0","tract_cent":"1146337.32927375","census_t_1":"17031200100","tract_numa":"29","tract_comm":"20","objectid":"684","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919488.18004656","census_tra":"200100","tract_ce_3":"41.93505815","tract_crea":"","tract_ce_2":"-87.73762","shape_len":"10228.94344"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74183007953017,41.93159540341513],[-87.7419059332393,41.93159445195649],[-87.74192582701689,41.9321257606627],[-87.74195726521458,41.93299927156918],[-87.7419723038425,41.93341029691099],[-87.74197266612322,41.93342061102315],[-87.74199449207254,41.93404192578232],[-87.74203126340322,41.93503449509631],[-87.74203937414147,41.93525064446905],[-87.74206263113568,41.93591589536574],[-87.74208401405286,41.93648577478624],[-87.74209362647707,41.93673829278623],[-87.74209887906241,41.936880132483886],[-87.7421057605388,41.93706594712849],[-87.7421344400388,41.93784065131478],[-87.742174977833,41.93889077989776],[-87.74210828333128,41.938891637358566],[-87.74190984110757,41.938894188599605],[-87.74175394601077,41.93889619116593],[-87.7414433649573,41.93890060035772],[-87.74132735004224,41.93890308948097],[-87.74130311801646,41.938903609427705],[-87.74093372125097,41.938908859665915],[-87.74070662129097,41.938912086973744],[-87.74033270339568,41.93891739948275],[-87.73998694632321,41.938921979801805],[-87.7394980430236,41.93892844832434],[-87.73905186561494,41.938934349973586],[-87.73879213040416,41.938937203969324],[-87.73826534347033,41.93894528993742],[-87.73781902140317,41.938952138839085],[-87.7373712308946,41.938956895519375],[-87.73703362684262,41.93896150157817],[-87.73663982941304,41.93896687279646],[-87.73602626684048,41.9389764365568],[-87.73571042469439,41.93898135829914],[-87.73529428370351,41.938985446422976],[-87.7352220355946,41.93898620235062],[-87.7349806578591,41.93853527135305],[-87.73461105760221,41.937821905431974],[-87.73428568646708,41.93719418237921],[-87.7341796413459,41.93698918449702],[-87.73389669665143,41.936443322542544],[-87.73375681289895,41.936172629263304],[-87.73340077978261,41.93548505685115],[-87.73334724010125,41.935382221636836],[-87.7333443695733,41.93537670831161],[-87.73306279820686,41.934832909511755],[-87.73293419681492,41.93458457096195],[-87.73255739723868,41.933859840157155],[-87.7324030955928,41.933560255331635],[-87.73214772281473,41.93306564425425],[-87.73176739529085,41.93232717136988],[-87.73174754392784,41.93228864767261],[-87.73146013483256,41.93173397304093],[-87.73209238108146,41.931724746018936],[-87.73227637481332,41.93172233201983],[-87.73257060435965,41.93171847151647],[-87.7327196311234,41.93171651572023],[-87.73276367583226,41.93171593765847],[-87.7328728699666,41.93171447006821],[-87.73312670675463,41.93171105825242],[-87.73326206426898,41.93170912579569],[-87.7333509360423,41.93170785669765],[-87.73337829791011,41.93170746619496],[-87.7334538724403,41.931706449158796],[-87.7336621581434,41.93170364695503],[-87.73385358368589,41.9317008158963],[-87.73405319138409,41.93169786366823],[-87.73420471478046,41.931695762554085],[-87.73434464076867,41.931693821923844],[-87.73485387888806,41.93168675843462],[-87.73527488873897,41.931679347327005],[-87.73535517596395,41.93167846253178],[-87.73557381193103,41.931676052693646],[-87.73640611285974,41.93166687507861],[-87.73681489415927,41.9316611477594],[-87.73693588274679,41.93165945217998],[-87.73734990454638,41.931653649462845],[-87.73757335148065,41.931650517103506],[-87.73776484348468,41.931648250666626],[-87.73802392490543,41.93164518398463],[-87.73820380024007,41.9316430544442],[-87.73841808150401,41.93164051727713],[-87.7388398038503,41.93163545682112],[-87.73924940728521,41.931629802477104],[-87.7398865922898,41.93162100374573],[-87.74015798923045,41.931617631192466],[-87.74045360910988,41.93161374504482],[-87.74067645486217,41.93161081484681],[-87.74108417770378,41.93160545297492],[-87.74130802066578,41.93160194217469],[-87.7416515297489,41.93159764261361],[-87.74183007953017,41.93159540341513]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9198946.62576","perimeter":"0.0","tract_cent":"1156190.42528598","census_t_1":"17031210100","tract_numa":"36","tract_comm":"21","objectid":"676","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922406.46078365","census_tra":"210100","tract_ce_3":"41.94287254","tract_crea":"","tract_ce_2":"-87.70133029","shape_len":"12845.4914637"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69620081383057,41.94665236186651],[-87.69618841060178,41.9465726559013],[-87.69600010154568,41.945771068123555],[-87.695905705734,41.94537620024687],[-87.69577757067026,41.94483656862606],[-87.69577581135448,41.9448291604493],[-87.69558466957118,41.944010377235884],[-87.69552785277195,41.94378067254365],[-87.69548115913719,41.94357901506753],[-87.69545170046318,41.94331142745858],[-87.69542825181868,41.94320424499769],[-87.69539841401868,41.94311116029783],[-87.69539566057067,41.94309640855284],[-87.69538113601797,41.94306104791933],[-87.69535703655232,41.94299903877367],[-87.6953300936436,41.94293050069666],[-87.6953102802222,41.942876114368694],[-87.6952967422949,41.942827447007936],[-87.69529061468256,41.94280675119509],[-87.69529038283802,41.94280596780476],[-87.69527864252808,41.94276631503125],[-87.69527505747908,41.94276105831819],[-87.69510928101472,41.94251795508042],[-87.6950670844447,41.942444230369745],[-87.69502810154165,41.942383668310754],[-87.69499528702548,41.94234221311882],[-87.69494449362584,41.942242260455075],[-87.69490982292022,41.94218062464359],[-87.69487845334282,41.94213431991204],[-87.69484137409528,41.94207456419575],[-87.69480066889257,41.942017203213055],[-87.69477448233825,41.94197828178019],[-87.69472342815932,41.94190456283285],[-87.69469738695174,41.94185845206538],[-87.69467106391303,41.94181848704612],[-87.69463459239263,41.94176416819195],[-87.69461227438863,41.94173171687814],[-87.69459139091141,41.94169916432061],[-87.69453479878979,41.94162426163148],[-87.69450310284343,41.94157392097761],[-87.69445825513166,41.94151184420784],[-87.69435158809794,41.94138674545531],[-87.69431056597892,41.94133912422872],[-87.69427044813068,41.941281931248554],[-87.69423927951631,41.941237713060616],[-87.69421711154457,41.94119395659897],[-87.69420699834718,41.941176232204775],[-87.69417589441672,41.94112171887624],[-87.69414616516053,41.941084286893236],[-87.69412129219069,41.941057447178466],[-87.6940823792273,41.94102317478473],[-87.69405049657315,41.94096951245815],[-87.69402289693949,41.940924957332925],[-87.69397482119462,41.94084392728912],[-87.69394662806819,41.94078888592642],[-87.69387038217629,41.940694691364534],[-87.69386478233503,41.940662882129104],[-87.69385383864159,41.94061778855588],[-87.6938324234762,41.940568630098795],[-87.69379258612598,41.94051291983663],[-87.6937323049213,41.940450564984715],[-87.69369465200452,41.9404006025472],[-87.69368325977972,41.940382015880864],[-87.69366986139279,41.94036185328323],[-87.6936560553346,41.94032739130942],[-87.69364145570228,41.94028035639215],[-87.69363310773642,41.94025506307199],[-87.69360421163107,41.94022627987398],[-87.69352866055084,41.9401362327188],[-87.69346672500798,41.9400960689585],[-87.69342216948802,41.94004173209547],[-87.69337747608762,41.939986488579684],[-87.69331040153206,41.939931011067685],[-87.69323814137888,41.93988313325976],[-87.69319554627815,41.93985699036131],[-87.69313322386677,41.93982615460606],[-87.69305950738502,41.93977695133988],[-87.69300048078313,41.939721628019285],[-87.69292862892472,41.93965874141654],[-87.69286361867091,41.939602698595024],[-87.69283890782712,41.93957445994992],[-87.69279425360588,41.93952272929667],[-87.69272886456724,41.939486195679805],[-87.69266159944932,41.939457170716366],[-87.69256665973063,41.93942656948978],[-87.69267966367994,41.93942604230422],[-87.69300733087358,41.93942272036835],[-87.69310807499907,41.939421699033566],[-87.69355621098278,41.939417153979115],[-87.69386044705661,41.939415610665506],[-87.6943780929171,41.93941300412119],[-87.6948046157325,41.93941115085364],[-87.6952715469268,41.93940645664843],[-87.69568873410834,41.93940226090861],[-87.69625226924282,41.93940141007709],[-87.6965512521577,41.93939957335077],[-87.6969172065733,41.939397331567754],[-87.69736674264715,41.93939499261166],[-87.69782343511656,41.93939274062797],[-87.69832278596691,41.93939027628139],[-87.69874306168073,41.93938820094458],[-87.69900804065429,41.939386920692385],[-87.69951128084548,41.93938404676089],[-87.69982926973793,41.93938182260953],[-87.70027737879646,41.93937654810066],[-87.70072939236492,41.93937122584769],[-87.70083473843663,41.93937057132908],[-87.70123208332227,41.93936812180921],[-87.70150238188282,41.93936782995327],[-87.70199905641736,41.93936729233989],[-87.70239636345255,41.93936494835096],[-87.70272492543836,41.93936339749199],[-87.70326955390205,41.93936082468199],[-87.70356052522055,41.93935885356337],[-87.70394966743747,41.9393570313092],[-87.70438111650597,41.93935500920376],[-87.70469998435553,41.93935307823996],[-87.70480812227285,41.93935261044217],[-87.70517524594275,41.93935102161823],[-87.70546720225258,41.9393497571436],[-87.70559949950292,41.93934809305881],[-87.70574050825373,41.93934633099601],[-87.70574613281673,41.93934626020407],[-87.7059511327534,41.939344444242295],[-87.70618964100441,41.93934356835202],[-87.7064143344248,41.939342742769256],[-87.7065865083359,41.93934210975946],[-87.70669915756646,41.93934096173721],[-87.7068544626374,41.93933936963418],[-87.70715061357619,41.93933642811252],[-87.70749074821826,41.939333048858664],[-87.70760464141539,41.93933191688217],[-87.70769774548104,41.93933099203875],[-87.70769847218361,41.9393404616354],[-87.70770260411165,41.939394313116146],[-87.70770774831983,41.939461358557054],[-87.70771166799418,41.93951244709722],[-87.70770855077868,41.93956813776867],[-87.70768504554587,41.9396424378606],[-87.7076472607013,41.939761874988555],[-87.7076310354667,41.939865797149466],[-87.70762549168008,41.939928244854805],[-87.70763155938604,41.940029515466215],[-87.70764473093796,41.94016491238224],[-87.70764799170486,41.94019842938495],[-87.70765157042128,41.940291011401214],[-87.7076553639901,41.940429368161965],[-87.70765773051518,41.940515522095936],[-87.7076610025392,41.94063466647587],[-87.70766440025542,41.94080592425633],[-87.70766994980501,41.941038115416255],[-87.70767624340593,41.941301430061515],[-87.70771609915445,41.94273305898788],[-87.70772556208642,41.9429905212156],[-87.70773194882938,41.943164289431124],[-87.70773307347194,41.94321100214648],[-87.70773728812881,41.94336602154999],[-87.70774794356393,41.943757950870165],[-87.707764273616,41.944366103540716],[-87.70777337294659,41.94468365904793],[-87.70777765608722,41.944865567720164],[-87.70778454196183,41.94515800292692],[-87.70778691821191,41.94527977677599],[-87.70778953777426,41.94541403813445],[-87.70780352946586,41.94591788338894],[-87.70781069005692,41.94617572836694],[-87.70781359880549,41.94638205467508],[-87.70782191935378,41.94663093593199],[-87.70737624994581,41.94663663922795],[-87.70721199144701,41.946636423593645],[-87.7070978401032,41.946636273851524],[-87.70672624658566,41.94663959737673],[-87.70659545360728,41.946640053340715],[-87.70622001972467,41.9466413614138],[-87.70590993457019,41.946643618966064],[-87.70566893034568,41.94664479645222],[-87.7053689101381,41.94664582107771],[-87.70491835779728,41.946647361646775],[-87.70450780972092,41.946649641780716],[-87.70415033290053,41.94665125356188],[-87.70354339184223,41.94665398784699],[-87.70342998234597,41.94665476524879],[-87.70292584098036,41.94665354845274],[-87.70250183700875,41.946652523350004],[-87.70231897711791,41.94665087168072],[-87.70221030924615,41.946649889922895],[-87.70196659863944,41.9466476877604],[-87.70170952635351,41.946649297383864],[-87.70124795053377,41.94665218577938],[-87.70087898558957,41.946653584172104],[-87.70047949380606,41.94666414866512],[-87.70028042753948,41.94666941259547],[-87.69979219284917,41.94667314100047],[-87.69948498164894,41.9466746835606],[-87.69925589019499,41.94667559337436],[-87.69864665703209,41.94667801057398],[-87.69835944086407,41.9466797429797],[-87.69803141182312,41.946682580608915],[-87.69759901318724,41.94668631966877],[-87.69702454511234,41.94668966855264],[-87.69647866311318,41.94669427026687],[-87.69637609715652,41.94669507395434],[-87.69620447311345,41.94669597019454],[-87.69620081383057,41.94665236186651]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4532224.02736","perimeter":"0.0","tract_cent":"1148326.79251138","census_t_1":"17031210400","tract_numa":"14","tract_comm":"21","objectid":"677","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919752.41085241","census_tra":"210400","tract_ce_3":"41.93574506","tract_crea":"","tract_ce_2":"-87.73030176","shape_len":"8903.26396108"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7306322620623,41.931742475037865],[-87.73146013483256,41.93173397304093],[-87.73174754392784,41.93228864767261],[-87.73176739529085,41.93232717136988],[-87.73214772281473,41.93306564425425],[-87.7324030955928,41.933560255331635],[-87.73255739723868,41.933859840157155],[-87.73293419681492,41.93458457096195],[-87.73306279820686,41.934832909511755],[-87.7333443695733,41.93537670831161],[-87.73334724010125,41.935382221636836],[-87.73340077978261,41.93548505685115],[-87.73375681289895,41.936172629263304],[-87.73389669665143,41.936443322542544],[-87.7341796413459,41.93698918449702],[-87.73428568646708,41.93719418237921],[-87.73461105760221,41.937821905431974],[-87.7349806578591,41.93853527135305],[-87.7352220355946,41.93898620235062],[-87.73518556305595,41.938986683860044],[-87.73456674877593,41.938994851326534],[-87.73432053519043,41.93899809996577],[-87.73401558120793,41.939002571931574],[-87.73383607804548,41.93900520368196],[-87.73342048504935,41.93900989352436],[-87.73330983716292,41.939011613623904],[-87.73299366660477,41.93901616421267],[-87.7327657204998,41.939019395810824],[-87.73203669244958,41.93903085205026],[-87.73141904828489,41.93904055449702],[-87.7307276490995,41.93904894750662],[-87.72990230317585,41.939058635738505],[-87.72964393048497,41.93906182443893],[-87.72933158225997,41.93906567867662],[-87.72871252205985,41.93907342471106],[-87.72779973197794,41.939087416374576],[-87.72746686918032,41.939092516831394],[-87.72718536266312,41.93909513610319],[-87.7271586731255,41.93820843095103],[-87.72715467108841,41.93807122592474],[-87.72714732518989,41.93781937766064],[-87.72713904660863,41.93747496159201],[-87.72713348179329,41.93726860790543],[-87.7271328564133,41.937245421418496],[-87.72712797549184,41.937064422455435],[-87.7271158858163,41.936633378572594],[-87.72710765008942,41.93640767770809],[-87.7271057997628,41.93635119184693],[-87.72710052971539,41.93619029771665],[-87.72708969385005,41.93580544564977],[-87.72708910891423,41.93578326896974],[-87.72707982018925,41.93543119655021],[-87.72707295334799,41.93517092044453],[-87.72706342509106,41.93482265570321],[-87.7270549424368,41.934524807563974],[-87.72704825578668,41.93429003168909],[-87.72704015180334,41.93397766885438],[-87.72702961049728,41.93363127573838],[-87.72702285817944,41.93340938607858],[-87.72701225279984,41.93300027609995],[-87.727002456998,41.932649465366545],[-87.7270001229276,41.93256588346425],[-87.7269874250023,41.93210223491443],[-87.7269787052975,41.931790361843575],[-87.72720838852307,41.93178592227962],[-87.72725276275622,41.93178544521723],[-87.72757821053408,41.93178194642946],[-87.72767093913994,41.93178094686082],[-87.7276995733361,41.93178063824265],[-87.72780814348016,41.93177872349767],[-87.72835002006151,41.931769166151376],[-87.72898118849572,41.9317598940535],[-87.72942947882922,41.931755349110546],[-87.7297126477301,41.93175247726902],[-87.73004323452325,41.9317491236463],[-87.73039743591133,41.9317451260675],[-87.7306322620623,41.931742475037865]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7063590.26586","perimeter":"0.0","tract_cent":"1153193.99512005","census_t_1":"17031210600","tract_numa":"35","tract_comm":"21","objectid":"678","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919741.48641562","census_tra":"210600","tract_ce_3":"41.93561974","tract_crea":"","tract_ce_2":"-87.71241461","shape_len":"10572.5475404"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70807402212081,41.93932725146222],[-87.7078784550261,41.939216047027934],[-87.70768025682996,41.939103051862915],[-87.70766362076023,41.938886228216674],[-87.70765300427672,41.93874785399715],[-87.70764197866075,41.938604150738385],[-87.70760913779814,41.938176111905555],[-87.70760233753086,41.93804835883617],[-87.70759341773477,41.93790808056771],[-87.70758714653833,41.937816444040635],[-87.70758114630071,41.93769709291121],[-87.7075772089172,41.937513958951214],[-87.70757253084238,41.93729636231925],[-87.7075648532651,41.93705535045891],[-87.70755936874005,41.93686446001294],[-87.70755220040338,41.93660896142286],[-87.70754455490115,41.936304530758825],[-87.70754032081744,41.93610980519299],[-87.70752875568358,41.93569849782472],[-87.7075203313738,41.93539886058912],[-87.70750955639166,41.935110054865646],[-87.70749649482528,41.9346153102576],[-87.70748879416183,41.934335357645395],[-87.70747581479286,41.93387602513536],[-87.70746662270132,41.933550718551786],[-87.7074586792598,41.93322795469175],[-87.70745190895816,41.93294312236549],[-87.7074446173414,41.93263260125769],[-87.7074405125842,41.932484797267826],[-87.70743708789547,41.932361485877976],[-87.70742719622322,41.93202943009281],[-87.70783571225068,41.93203177181854],[-87.70802287444482,41.9320289493545],[-87.70826803687952,41.93202534465943],[-87.70864395119582,41.93201994486539],[-87.70907163020149,41.93201380005082],[-87.70923037429098,41.932011973681405],[-87.70943223134624,41.932009695585556],[-87.70986561489968,41.932002620253],[-87.71015243903815,41.931997936987564],[-87.71045376406276,41.93199353474452],[-87.71064129250125,41.93199081976736],[-87.71064446049007,41.931990773830975],[-87.71106913093813,41.93198460608202],[-87.71127143528086,41.9319816669162],[-87.7115458680646,41.931980080143425],[-87.71167520904518,41.93197850251997],[-87.71225309780944,41.93198308104112],[-87.71273244529297,41.93196410662843],[-87.71291231918428,41.93196244755061],[-87.71316393679936,41.93196012632997],[-87.71364747370237,41.931955399248714],[-87.71371006638842,41.93195478727263],[-87.71414553990166,41.931949419731254],[-87.71475463704505,41.9319389224164],[-87.71500084708639,41.93193335976494],[-87.71545898558985,41.931929058523195],[-87.71597131486801,41.93192405562657],[-87.71664228440306,41.93191750031319],[-87.71719504598568,41.93191091658245],[-87.71719912142315,41.93220100426235],[-87.71720330715961,41.93237003768772],[-87.71720716681635,41.93252590861162],[-87.71721348286765,41.93282842424738],[-87.71721934206661,41.93310906650608],[-87.71722467101242,41.933293396849585],[-87.71723031602068,41.93348865143921],[-87.71723733437967,41.9337350102719],[-87.7172413026998,41.9338742951099],[-87.7172482274378,41.9341173666678],[-87.71724956428415,41.934166687247576],[-87.71725853382215,41.934497606563944],[-87.71726278582624,41.934647710904315],[-87.71726857667714,41.93485177490843],[-87.71727824833923,41.93509130739481],[-87.71728579025061,41.93527809986239],[-87.71728743955158,41.93538164821103],[-87.71729277788387,41.93571680124223],[-87.71729555095064,41.93582930177563],[-87.71730852148035,41.93635552099863],[-87.71731719522955,41.93670836492843],[-87.71732719311099,41.93715128073287],[-87.71733309196298,41.93739315620179],[-87.71733639050308,41.937528440946515],[-87.71735396651577,41.93804705578553],[-87.71738113575084,41.93876197524514],[-87.71739370578969,41.9390927346823],[-87.71739917233377,41.93921621440377],[-87.7170900970831,41.93922019367095],[-87.71674853531297,41.93922390325046],[-87.71617638602046,41.939231010602576],[-87.71584175805766,41.939235166113],[-87.71516781104062,41.93924324313453],[-87.7149405725381,41.93924584243867],[-87.71443157203757,41.93925166759182],[-87.71420237946167,41.939254356163275],[-87.71383508799211,41.93925816530718],[-87.71370952291434,41.93925928328613],[-87.71332076955906,41.93926274362212],[-87.71305499311646,41.93926674166322],[-87.71267436744874,41.93927352114062],[-87.71257299230079,41.9392768243322],[-87.71249154164316,41.93927947831732],[-87.71186635971647,41.93929888134176],[-87.71163378912422,41.939301151333034],[-87.71144145313701,41.93930469256827],[-87.71127365895777,41.93930182011207],[-87.71089970273353,41.939295417792835],[-87.71065517966949,41.93929841929851],[-87.71032655679933,41.93930196891063],[-87.71005093138434,41.93930583300941],[-87.70970281466423,41.9393107121592],[-87.70951946020749,41.93931287196346],[-87.70884075121052,41.939319626096776],[-87.70868186384368,41.93932120661167],[-87.70849040332128,41.93932311101294],[-87.70843918774663,41.9393236204197],[-87.70807402212081,41.93932725146222]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3509629.21987","perimeter":"0.0","tract_cent":"1157928.13439261","census_t_1":"17031220300","tract_numa":"35","tract_comm":"22","objectid":"679","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917168.90272147","census_tra":"220300","tract_ce_3":"41.92846498","tract_crea":"","tract_ce_2":"-87.69508667","shape_len":"7956.79361212"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69277295922716,41.93213022202917],[-87.69278038824785,41.931858428226],[-87.69277761370569,41.93181250190749],[-87.69276398648394,41.93158405141934],[-87.69275849447347,41.93142222169535],[-87.69274830553105,41.9311130600066],[-87.69273955489739,41.93080185803722],[-87.6927260493897,41.93044539429907],[-87.69271783519524,41.93016429941323],[-87.69271713938309,41.93014892431401],[-87.69271215771937,41.93003887484997],[-87.69270189380833,41.929727692368395],[-87.6926900995316,41.929422701080284],[-87.69268763988856,41.929360009291884],[-87.69268593142453,41.92931145526852],[-87.69268174569297,41.92919249644133],[-87.69267696299241,41.92904612030967],[-87.69267254320205,41.92893693043045],[-87.69266862501989,41.92884739198999],[-87.69266579832309,41.928752965315105],[-87.69266206983512,41.92862842123853],[-87.69265793158281,41.92850836058116],[-87.69265392438176,41.92839209810956],[-87.69265271578394,41.92833292589672],[-87.69264867007158,41.928233661753566],[-87.69263808128649,41.92797387228546],[-87.69262758561445,41.92768594459737],[-87.69261958830155,41.9274679262313],[-87.69260678536273,41.927131522635975],[-87.69259850344373,41.92691254218097],[-87.6925906826808,41.92667098398587],[-87.69258182889652,41.92639752279184],[-87.69257217216689,41.926139676683526],[-87.69255914164978,41.92579300805983],[-87.69255265461824,41.9256040045081],[-87.69254587714856,41.92539713414744],[-87.69254359065212,41.92532733600969],[-87.69252814854275,41.92485450978294],[-87.692775911987,41.92485267382349],[-87.69284305247629,41.92485222509366],[-87.69311455454003,41.924850391290526],[-87.6932076048586,41.92484959285101],[-87.6933401980503,41.924848438459485],[-87.69375232696869,41.92484318931997],[-87.69395023171455,41.924840668044354],[-87.69409579881392,41.92483931032741],[-87.69433441638192,41.92483709873825],[-87.69457303366586,41.92483491409382],[-87.69474561171721,41.924833294179436],[-87.69497003791821,41.92483179981423],[-87.6951835496587,41.92483037772044],[-87.6956060345295,41.92482576400175],[-87.69589140228251,41.92482264664075],[-87.69619088536899,41.92481909592195],[-87.69642429031846,41.92481632828929],[-87.69666474419131,41.92481420409485],[-87.69690960412606,41.92481243312551],[-87.6974126969069,41.92480728586468],[-87.69741765622169,41.924998040872715],[-87.697426856185,41.92531279195287],[-87.69742764004387,41.925339615062946],[-87.69743336244282,41.92557746134822],[-87.69743736874041,41.92574389337243],[-87.69744453863665,41.925961797138456],[-87.69745427454475,41.92624694862584],[-87.69745848771896,41.92637035232484],[-87.69746423202604,41.92662980287428],[-87.69746574333682,41.92669805271177],[-87.69747735670019,41.92708280247973],[-87.69748474847349,41.927367200262104],[-87.69749091285635,41.92753836425069],[-87.69749539673502,41.92766253368666],[-87.6974970808089,41.92770917150451],[-87.69750500909414,41.92792845150533],[-87.6975088495733,41.92819202369359],[-87.69751010109852,41.92827792951053],[-87.69751324688237,41.92835341282388],[-87.69751513713152,41.928465812995],[-87.69751722114798,41.928589712536144],[-87.69752036796385,41.92864659028583],[-87.69752077060204,41.92865855650936],[-87.69752259778186,41.92871284298946],[-87.69752652559245,41.92882955436099],[-87.69753309092323,41.929123195238844],[-87.69753722939343,41.92921965814048],[-87.69754240143534,41.92934023257435],[-87.69754376200322,41.929387221219514],[-87.69754867782159,41.92955195674866],[-87.69755686455204,41.929852604336936],[-87.69756173528211,41.93003561613111],[-87.69756908219537,41.930276105667616],[-87.69757765466562,41.93055672252341],[-87.6975810473654,41.93068141136872],[-87.69758331892707,41.93078943656924],[-87.69758929665646,41.9309461373633],[-87.69759415513593,41.931071218232574],[-87.69759808237269,41.93117165136973],[-87.69760003824508,41.931248555325304],[-87.69760187056137,41.93132309856405],[-87.69760545850774,41.93146510479362],[-87.69760817056088,41.93157318702808],[-87.6976113113298,41.93175649105225],[-87.69761279251146,41.931896042973854],[-87.69761766565956,41.93209567537293],[-87.69704840935412,41.93209610173119],[-87.69662389840698,41.93209641776226],[-87.69644376447285,41.93210120134195],[-87.69636185618398,41.9321025381286],[-87.69613265307201,41.93210384209386],[-87.69588624338759,41.93210524326917],[-87.69578056725344,41.932105843956116],[-87.69568898582418,41.93210636475421],[-87.69551625195126,41.93210734633749],[-87.69534294693567,41.93210833107345],[-87.69519967963629,41.93210914495446],[-87.6951769623468,41.93210927390791],[-87.6951752140137,41.93210928394915],[-87.69495708965617,41.93211052255451],[-87.69474550362428,41.93211172356469],[-87.69428326615508,41.9321154215306],[-87.6941326671103,41.93211950582402],[-87.69399784832234,41.93212316160063],[-87.69391008617092,41.93212554142392],[-87.69376164016394,41.932129566419846],[-87.6935978462209,41.93212914788578],[-87.69318905550428,41.93212667740273],[-87.69277295922716,41.93213022202917]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7105231.44294","perimeter":"0.0","tract_cent":"1142520.04457145","census_t_1":"17031190200","tract_numa":"32","tract_comm":"19","objectid":"680","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919482.2959168","census_tra":"190200","tract_ce_3":"41.93511393","tract_crea":"","tract_ce_2":"-87.75164896","shape_len":"10665.4665193"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75585477555335,41.93140747570567],[-87.7564202700555,41.931399471599875],[-87.75642435724178,41.93151083252181],[-87.75643262371052,41.931661998581404],[-87.75643814554196,41.9318576347479],[-87.75644437946733,41.93207849392009],[-87.75645309030533,41.93231588576657],[-87.75645733226122,41.9324314938621],[-87.75646974917267,41.93272162088414],[-87.75647150050929,41.93277527929037],[-87.75648086622608,41.93306220766327],[-87.75648738214115,41.933226467187254],[-87.75649389390426,41.93339061966061],[-87.75650531294161,41.93368425450029],[-87.75651575545515,41.93401122620137],[-87.75652082566724,41.93413910675315],[-87.75652875214007,41.93433903425615],[-87.75653916356916,41.934599074399834],[-87.75654339251514,41.9347046934043],[-87.75655673945555,41.935052025588504],[-87.75656712058668,41.93532218075615],[-87.75657392757304,41.93550904173159],[-87.75657540020613,41.935549471275934],[-87.75658100846896,41.93572652961683],[-87.75658611906822,41.93590852972053],[-87.7565876891444,41.9359644563839],[-87.75659211048641,41.93612191828441],[-87.75660078384963,41.93624841568461],[-87.75660354606697,41.93632120637359],[-87.75660724673575,41.93642004857475],[-87.75661259702771,41.9365596699908],[-87.75661462840728,41.9366126985947],[-87.75662446183192,41.93687601534746],[-87.75663399351579,41.937131261731956],[-87.75664255568802,41.93734763213577],[-87.75664502595441,41.93740796257016],[-87.75664897419593,41.93751637921762],[-87.75665952566192,41.93778871211037],[-87.75666960966639,41.938048972177064],[-87.75667308600595,41.93814454320414],[-87.75667484559476,41.938244026827334],[-87.75667586181487,41.93830147180807],[-87.75667778528813,41.93839802322633],[-87.75668960426394,41.938700139177556],[-87.75642437384417,41.93870273104507],[-87.7560375307607,41.93870693371956],[-87.75574771335255,41.93871184275655],[-87.7554728960525,41.938716277712224],[-87.7551500744562,41.93872101912928],[-87.7549399675182,41.93872297954602],[-87.75466545457917,41.93872626152856],[-87.75431599588113,41.938731350977825],[-87.75424274094063,41.938732417858304],[-87.75390541647907,41.93873732960772],[-87.75367964130095,41.93874047098867],[-87.75332204950556,41.9387452238179],[-87.75309554221066,41.93874803104504],[-87.75285330265861,41.93875097810088],[-87.75267516889782,41.938753287836356],[-87.75248166966567,41.93875582170228],[-87.75225538457649,41.93875843630032],[-87.75178990150935,41.93876397142103],[-87.7516894494967,41.93876516565507],[-87.7514800726082,41.93876765471937],[-87.75115659477193,41.9387717504099],[-87.75080069908174,41.93877587281432],[-87.75041281882207,41.93878087453981],[-87.74993322810036,41.93878731760409],[-87.74991032165393,41.938787625193235],[-87.74933996991317,41.93879521294415],[-87.74891036386161,41.93880092600017],[-87.74826756730414,41.938808404744336],[-87.74788926979267,41.93881452195959],[-87.74759288428439,41.938818114576534],[-87.74750226490565,41.93881896700035],[-87.74729779227626,41.93882088948941],[-87.74687318535219,41.93882554881911],[-87.7468692414434,41.93833064168638],[-87.7468644001371,41.938213191685094],[-87.74685237839493,41.93791488846216],[-87.7468485516209,41.93781993445861],[-87.74683936554064,41.93759199137649],[-87.74681532173202,41.93700257415888],[-87.74679923963429,41.93660831181399],[-87.74679531127671,41.9365099387897],[-87.74678524922962,41.93625794025579],[-87.74677785898109,41.93609300239866],[-87.74676721617325,41.93585546266149],[-87.74675647543464,41.93556364221986],[-87.74674078609684,41.935181012345275],[-87.74673133208782,41.93495045390936],[-87.74670742920705,41.93437849038796],[-87.7467025731113,41.93426672076885],[-87.74668212318109,41.933795213431736],[-87.74667183646734,41.933481989972854],[-87.7466671346533,41.93335800904935],[-87.74666701181275,41.93335477051105],[-87.74665316017678,41.93298947086749],[-87.74664002297854,41.932646403072255],[-87.74663024019621,41.932446655830276],[-87.7466158471979,41.93215245623451],[-87.74660093503014,41.93169837539863],[-87.74659473822311,41.93153624206055],[-87.74659461635315,41.93153305868506],[-87.74677491071866,41.9315310191185],[-87.74687329746736,41.93152990616114],[-87.74724454820738,41.93152570521192],[-87.74737671615118,41.931524209369364],[-87.74818680353674,41.93151245154394],[-87.74877922487578,41.93150394337671],[-87.74905584839378,41.93150003496173],[-87.7493703583847,41.93149559025615],[-87.7498946630792,41.93148903502711],[-87.75068959454826,41.931478801620905],[-87.75119386948163,41.93147230374525],[-87.75150507562913,41.93146685647785],[-87.75175579930286,41.93146246728334],[-87.75212440854814,41.93145813755874],[-87.75283260400194,41.931448382992386],[-87.75347525742244,41.93144037896469],[-87.7539605304413,41.93143371067832],[-87.7541850695091,41.931430624493935],[-87.75501271841358,41.931419181229266],[-87.75585477555335,41.93140747570567]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2705800.48456","perimeter":"0.0","tract_cent":"1147313.01914709","census_t_1":"17031200300","tract_numa":"12","tract_comm":"20","objectid":"685","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1915275.29353282","census_tra":"200300","tract_ce_3":"41.92347895","tract_crea":"","tract_ce_2":"-87.73414247","shape_len":"9507.002359"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72683251548995,41.92264627390123],[-87.72692963819487,41.92264359670065],[-87.72707509390936,41.922645068683444],[-87.72729261063554,41.92264726936222],[-87.72737494002729,41.92264661056949],[-87.72772859035635,41.92264377960292],[-87.72793952059477,41.92263912902526],[-87.72812434662654,41.92263505369823],[-87.72855102572022,41.92263089132356],[-87.72887688688081,41.92262771149221],[-87.72916293517515,41.92262363657263],[-87.72925387113945,41.92262234087459],[-87.72977547080417,41.92261679321161],[-87.73020199451199,41.92261236894551],[-87.7303877565542,41.92261009400756],[-87.73048533140947,41.92260889888001],[-87.73054387565945,41.92260818181507],[-87.73079094691515,41.922604731087574],[-87.730992732923,41.92260189765572],[-87.73142407883233,41.922595839924476],[-87.7316112960865,41.92259385823024],[-87.73222134104333,41.92258739848082],[-87.73265516914546,41.92258280273678],[-87.73283416997015,41.922580362235536],[-87.73327051119466,41.92257441205534],[-87.73344850389735,41.9225723410128],[-87.73369459805528,41.92256949254127],[-87.73405837917676,41.92256496886186],[-87.73434117008645,41.92256145130463],[-87.73458959363515,41.92255874039844],[-87.73466888240428,41.92255786073997],[-87.73477131796427,41.922556724085],[-87.73502007217877,41.922554013971045],[-87.73528282206851,41.92255054032245],[-87.7355993229608,41.92254635577798],[-87.73573221102885,41.92254452278366],[-87.73588302555547,41.92254242369251],[-87.7360968444615,41.922539477049526],[-87.73634556886091,41.92253605040893],[-87.73649451097013,41.92253499867982],[-87.73658391151226,41.922534367293856],[-87.7368424712759,41.92253254035805],[-87.73702460580924,41.9225298642683],[-87.73711457743468,41.922528554042785],[-87.73728994269344,41.92252600045014],[-87.73772522448786,41.92252080665186],[-87.73825005630543,41.922514542687814],[-87.73833274858198,41.92251359553666],[-87.7389429642892,41.92250660562234],[-87.74017190710738,41.922504714334835],[-87.74158525884515,41.92250068686428],[-87.74158828953883,41.92262007674001],[-87.7415924889532,41.92276211197987],[-87.74161911092898,41.92365892633074],[-87.74162381704484,41.92384555787467],[-87.74163796099064,41.92430323090793],[-87.7416379641654,41.9243033247769],[-87.7416134150219,41.92430360770843],[-87.74161340252623,41.92430360791846],[-87.7415604039334,41.92430421925149],[-87.74139414079436,41.92430613693389],[-87.7408509728663,41.924312399945705],[-87.74025384183287,41.92432079988552],[-87.74015740621842,41.92432215601304],[-87.73951799237986,41.924329141865506],[-87.73899596547597,41.92433610422238],[-87.73865074545743,41.92434070728278],[-87.73820925719238,41.92435054939333],[-87.7377865426981,41.92435286234224],[-87.73734916565898,41.92435525405111],[-87.73701560899616,41.924360300491955],[-87.73657005139016,41.92436533691465],[-87.73611078223253,41.92437052641596],[-87.73565831083936,41.92437593826691],[-87.73533982817658,41.924380378830286],[-87.73476121583066,41.924388444066835],[-87.73450157296479,41.92439164566877],[-87.73417897541879,41.92439552313388],[-87.73411821842326,41.924396253005334],[-87.733509677431,41.92440356518616],[-87.73344672273707,41.92440443964265],[-87.73328009383705,41.92440667379398],[-87.7328909721388,41.9244114002961],[-87.73255985672324,41.924415421313526],[-87.73202248975186,41.924421993708144],[-87.73166684698676,41.9244256787069],[-87.73121329278608,41.924430376643144],[-87.73085866249683,41.924437243087006],[-87.73044429784711,41.92444244355065],[-87.7301525342791,41.924446104417356],[-87.7297337571407,41.92445164247265],[-87.72922104730903,41.924458043500344],[-87.72895890523209,41.92446131519156],[-87.72842317442363,41.92446576629554],[-87.72799511130818,41.924470088828244],[-87.72778362558337,41.92447222395427],[-87.72772642179628,41.924472801509616],[-87.72770215878165,41.92447304620296],[-87.72766958698094,41.9244733749454],[-87.72713034983494,41.92447881633683],[-87.72676858401366,41.92448395547665],[-87.72676045963938,41.92427719289605],[-87.72675148586107,41.923851268753026],[-87.72673805446635,41.92331017321017],[-87.72668861014107,41.92314174567771],[-87.72663686459038,41.92304943085756],[-87.72659347358329,41.92296747845866],[-87.72645599998862,41.92268310848701],[-87.72644167524288,41.92265347715872],[-87.72657913346546,41.92264652003891],[-87.72675339135493,41.9226474407289],[-87.72675348174396,41.92264744120641],[-87.72678015568904,41.9226475821146],[-87.72678427243099,41.92264760386121],[-87.72683251548995,41.92264627390123]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3562901.85387","perimeter":"0.0","tract_cent":"1167672.07763192","census_t_1":"17031710300","tract_numa":"11","tract_comm":"71","objectid":"878","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1853697.04595828","census_tra":"710300","tract_ce_3":"41.75408758","tract_crea":"","tract_ce_2":"-87.66110664","shape_len":"8035.00829775"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66313772686378,41.75036668337156],[-87.66343735876742,41.75035707672638],[-87.66344708267077,41.75059390476409],[-87.66345157626459,41.750816219495626],[-87.66345520561421,41.75099695349103],[-87.6634566986899,41.751071003025864],[-87.66346096051291,41.75128233998693],[-87.66346720184617,41.75159144010709],[-87.66347557822871,41.75200541257779],[-87.66347696908302,41.752052568131845],[-87.66348056650668,41.75217448567105],[-87.66348262354316,41.75224420823886],[-87.66348802587923,41.75245777414427],[-87.66349571226856,41.75276537325748],[-87.66350612045431,41.753181305944715],[-87.66351477629722,41.75352609600228],[-87.66352188128293,41.75382265956279],[-87.66352588553403,41.75399443110276],[-87.66353072689573,41.7542020838119],[-87.66353921329788,41.754534989981344],[-87.66354885559424,41.754915351890624],[-87.66355850453711,41.75529508262315],[-87.66356636153816,41.755603944956704],[-87.66357500457475,41.755813768009375],[-87.66357900326935,41.75591083182346],[-87.66358140003308,41.75613856812016],[-87.66359224776454,41.75662514149347],[-87.66359964117964,41.75695746484548],[-87.66359910687592,41.75710713603157],[-87.66359853026312,41.75726877212896],[-87.66360595725122,41.75758021149365],[-87.66360676831982,41.75763869512301],[-87.66360741929199,41.757677889759606],[-87.66360805974696,41.75774375895925],[-87.66360806004782,41.757743765272906],[-87.6636082793726,41.757766311548835],[-87.66199390402048,41.75777469350044],[-87.65877900393271,41.75781636231079],[-87.65877783001496,41.75777219218003],[-87.65877599485466,41.757703143533085],[-87.65877517119067,41.757672145640775],[-87.65877457257022,41.75764961688987],[-87.65876682078103,41.75734923488533],[-87.65875909449336,41.757044077927425],[-87.65874997318969,41.75668314852314],[-87.65874087337899,41.75632367370278],[-87.65873590522274,41.75608763444417],[-87.65873081827246,41.755883450079025],[-87.65872625460192,41.75570027422755],[-87.65871514011913,41.75528472138939],[-87.65870209212602,41.75479829923832],[-87.65869020170621,41.75435540850754],[-87.65868353758661,41.75406457328887],[-87.65868064332079,41.75393824556801],[-87.6586706307957,41.75357849078348],[-87.65866011225968,41.75320410586025],[-87.65865202200379,41.75291277783827],[-87.6586481135005,41.752773317027575],[-87.65864385822458,41.75262147681252],[-87.65863723974734,41.75238559236739],[-87.6586344646863,41.75224803341669],[-87.6586310641059,41.75207942885463],[-87.65862218949539,41.75174753533413],[-87.65861177688261,41.75133154751227],[-87.65860309080499,41.75098516484591],[-87.65860229228545,41.75095331770174],[-87.6585981431931,41.75078781992528],[-87.65859306194528,41.75058504103597],[-87.6585895857531,41.75042580449272],[-87.65885934687351,41.750423208530236],[-87.65971635990337,41.75041028847822],[-87.6598013221888,41.75040880160877],[-87.6600499808444,41.7504044501239],[-87.66020622763423,41.75040239160614],[-87.66040898643925,41.75039971998325],[-87.66084980917523,41.75039294286001],[-87.66101367909809,41.75039089383219],[-87.66125048543624,41.75038793256027],[-87.66169947571407,41.75038155671177],[-87.6618243613895,41.75037866281389],[-87.66213442468765,41.750372188118455],[-87.66222666893609,41.75037183038639],[-87.66241680054236,41.75037109304042],[-87.66282635493806,41.75036858853341],[-87.66313772686378,41.75036668337156]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7345109.94184","perimeter":"0.0","tract_cent":"1132608.62753183","census_t_1":"17031190500","tract_numa":"21","tract_comm":"19","objectid":"681","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917802.87438473","census_tra":"190500","tract_ce_3":"41.93068417","tract_crea":"","tract_ce_2":"-87.78811365","shape_len":"13812.7010669"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78541948687129,41.922864680932854],[-87.78541142884711,41.922630879222616],[-87.78564035563527,41.922702397988026],[-87.78573348822292,41.92273017472658],[-87.78582401803853,41.922757198036365],[-87.78587848315328,41.92277345659759],[-87.78594636267982,41.92279370333407],[-87.78600090074319,41.922809989627275],[-87.78606210982547,41.92282822865219],[-87.7861833546316,41.92286442658974],[-87.78626661878778,41.922890372120314],[-87.78633676309924,41.92291222107054],[-87.78640144689079,41.92293236998702],[-87.78657201559207,41.922985103180075],[-87.78657783844648,41.92298689325241],[-87.78664765262864,41.923008354601635],[-87.78672839296162,41.92303324058218],[-87.78678176405023,41.92304853302564],[-87.78684906454913,41.923067761106346],[-87.78689455503873,41.9230807931631],[-87.78695259294828,41.92309608029381],[-87.78701771759228,41.92311197740172],[-87.78708123348379,41.92312693378062],[-87.78715628603973,41.9231421096548],[-87.78722262577769,41.923153374400464],[-87.78733954979757,41.92317069797001],[-87.78741273210426,41.92318108982046],[-87.78751638686764,41.92319459024986],[-87.78760334457053,41.9232054865367],[-87.78788082687646,41.92323813782182],[-87.78792730075529,41.92324360637346],[-87.78809181451493,41.92326485965389],[-87.78823777125648,41.92328177104665],[-87.7883616301091,41.92329602524055],[-87.78850589922804,41.92331268130195],[-87.78857550042831,41.923320765906986],[-87.78866815492313,41.9233315630033],[-87.78878602138461,41.92334617250689],[-87.7889267200023,41.923363579491436],[-87.78904410984113,41.9233780767011],[-87.78920775399271,41.92339792470266],[-87.78932389908239,41.923411894323706],[-87.78951954732914,41.923417013458156],[-87.78968374448985,41.9234213096449],[-87.79002886638555,41.92346402485214],[-87.79009833946482,41.92347425995439],[-87.79018628987276,41.92348518642426],[-87.79027322496484,41.9234945163705],[-87.79039965770237,41.92350850227446],[-87.79039250458779,41.923636337566066],[-87.79041216959502,41.923773081751314],[-87.7904276776025,41.92421943569712],[-87.79044699581668,41.92481228094987],[-87.79046882621874,41.92548815099316],[-87.79050299112251,41.926551359029574],[-87.79052629627674,41.927324312685634],[-87.79052950924006,41.92743306825188],[-87.79055733181822,41.92832335894269],[-87.79058194629489,41.929104551776646],[-87.7905859316195,41.92923046211481],[-87.79060638681742,41.92990632511767],[-87.79062897301584,41.9306559489688],[-87.79063595803066,41.93094214515101],[-87.79064311360499,41.931101266808376],[-87.79065043451811,41.931375724199846],[-87.79065886280615,41.93168208845863],[-87.79066683179117,41.93198845080428],[-87.7906847847874,41.932580259412504],[-87.7906928361649,41.93276822433907],[-87.79058551264299,41.9327696682214],[-87.79059382375378,41.93303351884059],[-87.79059763206048,41.93315219694368],[-87.79060255304928,41.93330869629952],[-87.79060580191602,41.93341104387695],[-87.79061142288786,41.933588978670876],[-87.79061480514522,41.9336972269611],[-87.79061941082152,41.933843241316445],[-87.79062479056094,41.93401500072088],[-87.79062782583405,41.93411216068753],[-87.79063121232487,41.934219915026766],[-87.79063407317187,41.93431164059705],[-87.79063757318383,41.934423347154954],[-87.79064317885906,41.93459482330742],[-87.79064822541154,41.93474919204982],[-87.7906528256016,41.93492188050413],[-87.79065754260462,41.93506778585874],[-87.79066265550928,41.93521901687911],[-87.79066600441595,41.9353268807882],[-87.7906721670464,41.93553204080112],[-87.79067625958277,41.935677915746],[-87.79068017700426,41.93579675923603],[-87.79068364226876,41.935899574034124],[-87.79068915813805,41.93607265097199],[-87.79069297488286,41.93618603324327],[-87.79069676652337,41.936293707130126],[-87.79070513634976,41.936420435775744],[-87.79071604946631,41.93658567407736],[-87.79071916776864,41.93667740082489],[-87.79072081314483,41.9367259265041],[-87.79072510107694,41.936853278820394],[-87.79072954479436,41.93699243203818],[-87.7907336158902,41.93711917959407],[-87.79073772281905,41.93724603735982],[-87.79074097864857,41.937347561355104],[-87.7907480064917,41.93755042023243],[-87.79075114976153,41.937639210761255],[-87.79075484386492,41.93776708165295],[-87.79075781106714,41.93788098100276],[-87.7907588061844,41.93791967927403],[-87.79076186643775,41.937996586911716],[-87.79076619560547,41.93811024571257],[-87.79076918756726,41.93823861491974],[-87.79058521033778,41.938241140552094],[-87.79048746590769,41.938243171321204],[-87.7903635426264,41.938245745606174],[-87.79020157734581,41.93824872679974],[-87.79015952418068,41.938249500691676],[-87.78987176218321,41.938255273982286],[-87.7896623914247,41.938258779744814],[-87.78936069382226,41.93826383072079],[-87.78910569718258,41.938267561939874],[-87.7888184465422,41.938273691763186],[-87.78859735280686,41.938275606788984],[-87.78848799100001,41.93827754506309],[-87.78844821787837,41.93827825121168],[-87.78837513918779,41.9382795467998],[-87.78817229804932,41.93828313928805],[-87.78803592221809,41.93828515358304],[-87.78774956822946,41.938289556128865],[-87.78753276164561,41.938292998799234],[-87.78727279693042,41.93829747894604],[-87.78715163672108,41.93829956702338],[-87.78675275602492,41.938306439687146],[-87.78666328201751,41.93830810646279],[-87.78650517593873,41.938311051145256],[-87.78623932579428,41.93831464911451],[-87.78603068234914,41.93831747224924],[-87.78599971268693,41.93820559682072],[-87.78594394217973,41.93796658370036],[-87.78592256645209,41.93786596084709],[-87.78590573484631,41.937534844785894],[-87.78590178857138,41.93740450246525],[-87.78588937076731,41.93699437401666],[-87.78588223159402,41.93677625614384],[-87.78587886608359,41.93670294212046],[-87.7858717803537,41.93649186095863],[-87.78586284599169,41.936215244362906],[-87.78585323257423,41.935938361069795],[-87.78584767182062,41.935772061933676],[-87.7858411741863,41.93557513276758],[-87.78582940080832,41.9352182998465],[-87.78582223519851,41.93502479775771],[-87.7858184077048,41.934900795380614],[-87.78581031203454,41.93466066115233],[-87.78580084796886,41.93437993986945],[-87.78579895000905,41.9343096511862],[-87.78578730479832,41.93396099658889],[-87.78577997057887,41.93373996878574],[-87.78577257453061,41.93351762399895],[-87.78576243882759,41.933185826102445],[-87.78575868770527,41.933061467298856],[-87.78575046430339,41.93283192866458],[-87.78574533739504,41.932688819947195],[-87.78573880761363,41.932481188032014],[-87.78573007616765,41.93220441852615],[-87.78572390637984,41.93201056433072],[-87.78571747914441,41.9318167363429],[-87.78570504830336,41.931474087699165],[-87.78569767641532,41.93129189071205],[-87.78568918371292,41.93100167941104],[-87.78568197861091,41.93075548396784],[-87.78568177990688,41.93066700911249],[-87.78568752468581,41.930467997658],[-87.78567863133526,41.930175832434564],[-87.78567126479318,41.92995436524982],[-87.78566758363027,41.92984136781301],[-87.78566147902661,41.92965484093613],[-87.7856591015742,41.92958048844822],[-87.78565498167077,41.929452066346876],[-87.78565149676699,41.929343927120456],[-87.78564467431671,41.9291682087891],[-87.78563914981068,41.92902592189773],[-87.78563384885,41.928842252824516],[-87.78563028839913,41.92873435993192],[-87.78562568711692,41.92860637486571],[-87.78561889001614,41.92841718274155],[-87.78561293663977,41.928241057165984],[-87.78560666189327,41.92803806404825],[-87.78559784687319,41.92775399427211],[-87.78559098026811,41.927551464832156],[-87.7855834580456,41.92733850445949],[-87.7855781706186,41.92718880868272],[-87.78557797137441,41.92718202948518],[-87.78557481543375,41.92708700920114],[-87.78557212842844,41.92700590439689],[-87.78556896921594,41.92691126828635],[-87.78556564915863,41.92680966106328],[-87.78556336605541,41.92674148350412],[-87.78555823984053,41.92659327063869],[-87.78555516942983,41.92650544063484],[-87.78555287953755,41.92643805886618],[-87.78554930065708,41.92633664249573],[-87.78554695654844,41.92627559963767],[-87.78554355756334,41.926187521080465],[-87.78553197401881,41.9260381248166],[-87.78552290409088,41.92592995887734],[-87.78551438196243,41.925715538953895],[-87.7855033096345,41.92543694674826],[-87.78549825725534,41.92530160464013],[-87.78549367708244,41.925179793838105],[-87.7854845332244,41.92494284078495],[-87.78547882453468,41.92479402136031],[-87.78547458848611,41.92464487965034],[-87.78547042383056,41.924495985257806],[-87.78546385733242,41.924279928070206],[-87.78545937130538,41.92415142177097],[-87.78545744539282,41.92409735095598],[-87.78545087664082,41.923915926213354],[-87.7854484726971,41.92384901038773],[-87.78544267532278,41.92367797540949],[-87.78543538695864,41.923462944106596],[-87.78543272675056,41.92336155978097],[-87.78542888301702,41.92321859442533],[-87.78542726313889,41.92315835081505],[-87.78542388050201,41.92302973998544],[-87.78542253850115,41.92297962391359],[-87.78541948687129,41.922864680932854]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7118882.22333","perimeter":"0.0","tract_cent":"1139939.27817179","census_t_1":"17031190700","tract_numa":"32","tract_comm":"19","objectid":"682","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1916759.43946201","census_tra":"190700","tract_ce_3":"41.92768979","tract_crea":"","tract_ce_2":"-87.76120027","shape_len":"10671.9070437"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76577472427563,41.92398347211101],[-87.7659905791425,41.9239811093916],[-87.76600895921516,41.92443550610956],[-87.76601404941923,41.924622523629665],[-87.76601682634494,41.9247017907059],[-87.76603798237143,41.925305708074205],[-87.76605481091653,41.92580448245428],[-87.7660654576991,41.926120029201726],[-87.76607297440778,41.92634174515854],[-87.76608120435868,41.92658250957843],[-87.7661025366057,41.927169056643365],[-87.76610812454874,41.92732270616275],[-87.76611878265713,41.927627689246215],[-87.76612298821084,41.927748025224815],[-87.76613081378953,41.92808483557176],[-87.76614228484651,41.92854175104808],[-87.76616635201118,41.9289967292631],[-87.76616682388439,41.92900564704098],[-87.76617662379176,41.92930986564073],[-87.76618172616033,41.92945261043451],[-87.76618613644902,41.92957599292799],[-87.76619206830482,41.929746822941866],[-87.76619790499785,41.92991491566253],[-87.76619975168703,41.92996810049917],[-87.76621343220077,41.93036501076213],[-87.76622325770526,41.93065007470924],[-87.76622982693179,41.930824228626626],[-87.76623894197583,41.93106587509949],[-87.76624637601793,41.931277286426095],[-87.76589424534689,41.93128335351758],[-87.76568923839048,41.93128489259843],[-87.7653699845409,41.931289460629955],[-87.76518378194886,41.931292326450986],[-87.76501820408427,41.93129427128308],[-87.76466106423977,41.931298465403806],[-87.7643236620218,41.93130230974265],[-87.7640363125017,41.9313062915014],[-87.76378968127003,41.931310102406606],[-87.76352945566263,41.93131412303529],[-87.76315589650318,41.931317345428425],[-87.76275114922095,41.931323237904046],[-87.76256065902837,41.93132467202224],[-87.76209239180194,41.93132819536404],[-87.76159599603326,41.9313332987375],[-87.76133489402136,41.93133670849339],[-87.76094448326663,41.931341806252775],[-87.7608262803284,41.9313433492026],[-87.7601668250888,41.93135232587254],[-87.75940593242,41.93136199922394],[-87.75887215241534,41.93136884603776],[-87.75820835732064,41.931377356980406],[-87.75741434397959,41.93138792147637],[-87.75667169386043,41.931395911901596],[-87.7564202700555,41.931399471599875],[-87.75640373792899,41.93094902479231],[-87.75639367126415,41.930674732145015],[-87.75638611971013,41.930493883979196],[-87.75637734900438,41.9302838176635],[-87.75635800307734,41.92975540164683],[-87.75635565776317,41.92969781598185],[-87.75635151865083,41.92958824290017],[-87.75632698866325,41.92895590734141],[-87.75631653574943,41.92877012551009],[-87.75631392273979,41.928683367901336],[-87.75629874417218,41.92817942346561],[-87.75628224695197,41.9277779047767],[-87.75626381449648,41.927329278244386],[-87.75624726941021,41.92687121635015],[-87.75622781729241,41.926332640883494],[-87.75621439931585,41.92596405181266],[-87.7561934140625,41.92538757486557],[-87.75618083813828,41.925059080955045],[-87.75616374876897,41.924612675267056],[-87.75616230170233,41.92457487968138],[-87.75614607860857,41.924107116402254],[-87.756786451885,41.9240960737784],[-87.75737186435296,41.924091002713965],[-87.7575847883707,41.92408915756122],[-87.75822381843798,41.924079434703614],[-87.75860675219973,41.924074979126225],[-87.75913896779646,41.92406878425541],[-87.75921948855711,41.92406768195106],[-87.75963377867845,41.92406200953138],[-87.75983642332142,41.92405957289453],[-87.760204581711,41.92405514548879],[-87.76045158442265,41.924051603155036],[-87.76045356848813,41.924051587532695],[-87.76077133539405,41.92404908168531],[-87.76100970253341,41.924045558481126],[-87.76106837223476,41.92404469091329],[-87.76131414798935,41.924041057184155],[-87.76171878537627,41.924034098640035],[-87.7622959868636,41.92402674809512],[-87.76241450557748,41.92402523838904],[-87.76285473002297,41.92402053839508],[-87.76352836621041,41.92401168077107],[-87.76379399808428,41.92400818691851],[-87.76416692594603,41.924005041591066],[-87.76476191227931,41.92399762383051],[-87.76517821827338,41.923992432053666],[-87.76577472427563,41.92398347211101]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7617170.57475","perimeter":"0.0","tract_cent":"1140069.62068085","census_t_1":"17031191200","tract_numa":"20","tract_comm":"19","objectid":"683","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914004.08099467","census_tra":"191200","tract_ce_3":"41.9201264","tract_crea":"","tract_ce_2":"-87.76078891","shape_len":"11232.3084891"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75588614422351,41.91549201102221],[-87.75588259711608,41.915403006743794],[-87.75619515209075,41.91546954758128],[-87.75707793267539,41.91566573479474],[-87.75751474297743,41.91576260214972],[-87.75780405359097,41.915816878259754],[-87.75789995260986,41.91583489590607],[-87.75790450710952,41.915835751604966],[-87.75825612974648,41.91590181383545],[-87.75857344486279,41.91596117254221],[-87.75887602107221,41.91601777332526],[-87.75899755756069,41.91604049596802],[-87.75900027995701,41.916041004918945],[-87.75909280550202,41.91605830354409],[-87.75924740672224,41.91608720773015],[-87.7595942333324,41.91612976167436],[-87.75969653888592,41.91614227882833],[-87.7602713775394,41.916212382551755],[-87.76082050555824,41.9162816694261],[-87.76082081351316,41.91628170389233],[-87.76107881527028,41.9163107421326],[-87.7614641854812,41.91635759886139],[-87.76213079017266,41.916438098933114],[-87.76279004780919,41.91651855780684],[-87.76289372934298,41.916531421978796],[-87.76313276121259,41.91655936548133],[-87.76319974573687,41.916567244733635],[-87.76350671686798,41.91659895533517],[-87.76381418832156,41.91662620739505],[-87.7641226208543,41.9166486615362],[-87.76461789423296,41.916680616397535],[-87.76522573643449,41.91670729462115],[-87.7656142112771,41.91671539021162],[-87.76573698190874,41.91671805202587],[-87.76574082205786,41.916868211041496],[-87.76574118149026,41.91688225698178],[-87.7657744877807,41.91818453087871],[-87.7657871721483,41.91868047697639],[-87.7657902931402,41.91876013167868],[-87.76585335147765,41.920369486835206],[-87.76585510364589,41.92041420973314],[-87.7658663568278,41.920701405289],[-87.7658734395808,41.92089637102121],[-87.76588641835251,41.921202362087456],[-87.7658982148883,41.92150908823629],[-87.76591134450894,41.92188102388659],[-87.76592230838506,41.92215969737232],[-87.76592598025688,41.92225302183884],[-87.76593729421559,41.92254374667826],[-87.76594954728013,41.92288505231302],[-87.76595730548875,41.92308876744173],[-87.76596492300031,41.923274150408325],[-87.76597369317544,41.92352433034212],[-87.76598439989485,41.92382976118672],[-87.7659905791425,41.9239811093916],[-87.76577472427563,41.92398347211101],[-87.76517821827338,41.923992432053666],[-87.76476191227931,41.92399762383051],[-87.76416692594603,41.924005041591066],[-87.76379399808428,41.92400818691851],[-87.76352836621041,41.92401168077107],[-87.76285473002297,41.92402053839508],[-87.76241450557748,41.92402523838904],[-87.7622959868636,41.92402674809512],[-87.76171878537627,41.924034098640035],[-87.76131414798935,41.924041057184155],[-87.76106837223476,41.92404469091329],[-87.76100970253341,41.924045558481126],[-87.76077133539405,41.92404908168531],[-87.76045356848813,41.924051587532695],[-87.76045158442265,41.924051603155036],[-87.760204581711,41.92405514548879],[-87.75983642332142,41.92405957289453],[-87.75963377867845,41.92406200953138],[-87.75921948855711,41.92406768195106],[-87.75913896779646,41.92406878425541],[-87.75860675219973,41.924074979126225],[-87.75822381843798,41.924079434703614],[-87.7575847883707,41.92408915756122],[-87.75737186435296,41.924091002713965],[-87.756786451885,41.9240960737784],[-87.75614607860857,41.924107116402254],[-87.75613205593869,41.92370280360097],[-87.75612909804805,41.92363678067654],[-87.75610961191667,41.923195360066025],[-87.75610427579849,41.92283598125653],[-87.75610407177588,41.9227435287637],[-87.75609540307657,41.92240015289156],[-87.75609261379549,41.922279679231046],[-87.75608582854755,41.92198663155929],[-87.75606071322737,41.92112852155734],[-87.75604945326286,41.9206981969636],[-87.75604217092484,41.920457517345426],[-87.75603563907818,41.92024164879272],[-87.75603025870926,41.920063826282835],[-87.75601768882312,41.919583193255065],[-87.75600455199557,41.91910025218087],[-87.7559910942003,41.9186520404529],[-87.75597925937835,41.91825789246288],[-87.75596248590868,41.91767303990837],[-87.75595406895505,41.917423983995825],[-87.7559375186529,41.916934251157286],[-87.75590783199272,41.91605578509083],[-87.75590759591958,41.916049244121226],[-87.75590489624257,41.91597439941808],[-87.75589339296161,41.91567762105526],[-87.75588917354689,41.91556875886917],[-87.75588614422351,41.91549201102221]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6248093.39066","perimeter":"0.0","tract_cent":"1123317.84467043","census_t_1":"17031170700","tract_numa":"28","tract_comm":"17","objectid":"686","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921683.7554216","census_tra":"170700","tract_ce_3":"41.94149085","tract_crea":"","tract_ce_2":"-87.82217099","shape_len":"10044.3847426"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.82593770280391,41.93775067282641],[-87.82631660978491,41.93774946520044],[-87.82632457133997,41.937885806085944],[-87.8263297341919,41.938004269695725],[-87.82633619351157,41.93814466539596],[-87.82634066831703,41.93823515378902],[-87.82634430358725,41.938308668452805],[-87.82635631099352,41.938556031409995],[-87.82636735120253,41.938814147176366],[-87.82637662579889,41.9390260423705],[-87.82638635981905,41.93926351549461],[-87.82638865584649,41.93931039206877],[-87.82639409742211,41.939421488082395],[-87.82639752803709,41.93949152791065],[-87.82640149408984,41.93960334517443],[-87.82640742102912,41.93973210296515],[-87.82641346114846,41.93987441772639],[-87.82642104950388,41.94005329240186],[-87.82643018413765,41.94026433621874],[-87.82643760669202,41.94044090499994],[-87.82644604970737,41.94064187444187],[-87.82645198441845,41.94076967176284],[-87.82646192331909,41.94102770023316],[-87.82646899144288,41.94115654425611],[-87.82647416067482,41.94125077741328],[-87.82647940920396,41.941358483964834],[-87.82648745806259,41.94153494570539],[-87.82649411056134,41.941688157693385],[-87.82649929013186,41.941818503784326],[-87.82651035056217,41.94208811778185],[-87.82652685787558,41.942463627982235],[-87.82654829476519,41.94296860496377],[-87.82655406493609,41.94305688522559],[-87.82663501689277,41.94453007529412],[-87.82651536921223,41.9445823040767],[-87.82658365039822,41.94473313214484],[-87.82659513077336,41.94477341312607],[-87.82660082325798,41.94485760357397],[-87.82662306651376,41.94493130180566],[-87.82666056978543,41.94502740480165],[-87.82642273090813,41.94503381982101],[-87.82622400966444,41.9450392265622],[-87.82612128392564,41.94504172997735],[-87.82590370977994,41.94504703202105],[-87.82538337310069,41.94506090893788],[-87.8251486820984,41.94506716702308],[-87.82481881739436,41.945075903788464],[-87.82463134550598,41.94508027939011],[-87.82437906993873,41.94508616682796],[-87.82415266817564,41.945091816375424],[-87.82402233341335,41.94509506813164],[-87.82386953550952,41.94509889075544],[-87.82366537254438,41.94510443357433],[-87.82357084039168,41.94510827595648],[-87.82351016550393,41.945110741993915],[-87.82339119755785,41.945117623344785],[-87.82325634224985,41.94512547652254],[-87.82312253076559,41.94513149555105],[-87.82306209020025,41.9451332897839],[-87.82292439403298,41.94513737694685],[-87.82274864654397,41.94514259412548],[-87.8224751860159,41.94514917130817],[-87.82222073327007,41.9451552290018],[-87.82208561636475,41.94515899047321],[-87.82189825367665,41.94516427564944],[-87.82168664009534,41.9451683553136],[-87.8215236285068,41.94517149757937],[-87.82130357535316,41.945178310032226],[-87.82103142997212,41.945185822950855],[-87.82084418466108,41.94519020106248],[-87.82065764129861,41.94519408831739],[-87.82060668608338,41.945195150563805],[-87.82046532154641,41.94519868354629],[-87.82028340514671,41.94520322916738],[-87.82018208317102,41.94520521844986],[-87.81999380922001,41.94520950852477],[-87.81990954293029,41.94521151948605],[-87.81979189199849,41.945214533093015],[-87.81960435115626,41.94521907306269],[-87.81941681029487,41.945223612177045],[-87.8192397474887,41.945227954763766],[-87.81905915442479,41.945232383898755],[-87.81889014213552,41.94523662095244],[-87.81875370407076,41.945240071266795],[-87.81856708070096,41.94524477803276],[-87.81851149079387,41.945246175318644],[-87.81829529948229,41.945252642572015],[-87.81817654592464,41.94525562213504],[-87.8180090034844,41.94525707498418],[-87.81800362844294,41.94513769556345],[-87.81799380597606,41.94486943115281],[-87.81799107787812,41.94478730517705],[-87.8179846046908,41.944592415446195],[-87.81797312791836,41.94422373246316],[-87.8179643552377,41.944007667844204],[-87.8179572175543,41.94380310885099],[-87.81795408068362,41.94371195911596],[-87.81795140369634,41.94363499907828],[-87.81794842908609,41.9435479389616],[-87.81794259226417,41.94341007042018],[-87.81793532487217,41.94322843222366],[-87.81792891492658,41.943068215986344],[-87.8179216625065,41.94280490261346],[-87.81791451058047,41.942565629080036],[-87.8179041780811,41.942315090214485],[-87.81789267409229,41.94203663677046],[-87.81788597367502,41.941873627220225],[-87.8178797310506,41.941722282673204],[-87.81787299784004,41.9415588338903],[-87.81786714970167,41.941408671121884],[-87.8178649009992,41.941327159482896],[-87.81786160204227,41.94120760433466],[-87.81785010918281,41.940904947371116],[-87.81783592009477,41.94052634503703],[-87.81783000261089,41.94036199428615],[-87.81782591958724,41.94024839248577],[-87.81781954499513,41.94007234900122],[-87.81781635899598,41.93998419046302],[-87.81781107777344,41.939845857806695],[-87.81780728984032,41.93974573146605],[-87.81780537971095,41.939695393799944],[-87.81780112168126,41.939593352620776],[-87.81779749274124,41.93950639103799],[-87.81779183594067,41.93934168467748],[-87.8177887959197,41.93925366344531],[-87.81778072249024,41.93902854609757],[-87.81777614859749,41.938902757703765],[-87.81777022489094,41.93873925758588],[-87.81776273028075,41.93853807219001],[-87.81775685144578,41.93838110050144],[-87.81775196847434,41.93824966089256],[-87.81774725503509,41.93812304831192],[-87.81774293919268,41.93802003813162],[-87.81773995548475,41.93791418021069],[-87.81773996945306,41.937914179999],[-87.8179024494044,41.9379109301027],[-87.81800790509837,41.93790884117296],[-87.81808764604651,41.93790726161458],[-87.81822226179663,41.937904572552604],[-87.81839106334118,41.93790124055629],[-87.81850428377406,41.93789900377746],[-87.81877816223408,41.93789158772321],[-87.81896445130975,41.93788926601502],[-87.81916529551484,41.93788679074461],[-87.81929991170541,41.93788399037746],[-87.81946900732083,41.93788068610381],[-87.8195590861894,41.93787899619231],[-87.81960365840456,41.9378781602337],[-87.81975514491788,41.9378753799298],[-87.8198424378702,41.93787354478848],[-87.82002422989456,41.93786972238529],[-87.82007641291068,41.93786854897416],[-87.82018504833695,41.93786610562982],[-87.82018505862995,41.937866105401405],[-87.82037875067219,41.93786175713724],[-87.82054696881563,41.937857953120506],[-87.82069878917238,41.93785473453505],[-87.82078289581109,41.93785299669131],[-87.82098544470105,41.9378487967094],[-87.8211879191191,41.93784475986825],[-87.82140675026417,41.93784043939854],[-87.82140676349958,41.93784043890871],[-87.82159029239477,41.93783683966111],[-87.82170810505512,41.9378349223293],[-87.82187683146826,41.93783188701211],[-87.82206210079359,41.93782826622301],[-87.8223659959541,41.93782210012445],[-87.82262614910162,41.9378166439869],[-87.82284001976697,41.93781213379297],[-87.82299039869388,41.93780989368963],[-87.82310762920797,41.93780717650844],[-87.82334499980105,41.937800986601445],[-87.82363040401475,41.93779533820389],[-87.82384721012453,41.9377914703367],[-87.82384722078503,41.93779147010957],[-87.82392225019329,41.93779013617243],[-87.8240120932237,41.937788539415],[-87.8240337271726,41.93778815486488],[-87.82413467132474,41.93778596757316],[-87.82437192044539,41.93778111940061],[-87.82455678734975,41.93777727381242],[-87.82469140182822,41.93777463176921],[-87.82487681912409,41.937770897324086],[-87.82507271473106,41.937766825046616],[-87.82507272649414,41.93776682482427],[-87.82516261850901,41.93776497628657],[-87.82519032385296,41.937764406260875],[-87.82520666812144,41.93776407025257],[-87.82522266506409,41.937763965689726],[-87.82523173570479,41.937763906763564],[-87.82537127943051,41.937760682280896],[-87.82557573590691,41.937756866556654],[-87.8257164845419,41.93775469006328],[-87.82593770280391,41.93775067282641]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8520763.4417","perimeter":"0.0","tract_cent":"1155986.07064515","census_t_1":"17031160700","tract_numa":"35","tract_comm":"16","objectid":"687","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1925149.73966093","census_tra":"160700","tract_ce_3":"41.95040441","tract_crea":"","tract_ce_2":"-87.70200713","shape_len":"12302.9650043"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70170952635351,41.946649297383864],[-87.70196659863944,41.9466476877604],[-87.70221030924615,41.946649889922895],[-87.70231897711791,41.94665087168072],[-87.70250183700875,41.946652523350004],[-87.70292584098036,41.94665354845274],[-87.70342998234597,41.94665476524879],[-87.70354339184223,41.94665398784699],[-87.70415033290053,41.94665125356188],[-87.70450780972092,41.946649641780716],[-87.70491835779728,41.946647361646775],[-87.7053689101381,41.94664582107771],[-87.70566893034568,41.94664479645222],[-87.70590993457019,41.946643618966064],[-87.70622001972467,41.9466413614138],[-87.70659545360728,41.946640053340715],[-87.70672624658566,41.94663959737673],[-87.7070978401032,41.946636273851524],[-87.70721199144701,41.946636423593645],[-87.70737624994581,41.94663663922795],[-87.70782191935378,41.94663093593199],[-87.70782747879194,41.94679722016551],[-87.70783454013026,41.94708888675005],[-87.70783572736104,41.94713793208306],[-87.70784104639515,41.94735716902766],[-87.70785149560096,41.94776984623534],[-87.7078569335729,41.947988205654404],[-87.70787050435469,41.948452389534026],[-87.70787500552579,41.94860635630082],[-87.70787767868804,41.948716468778706],[-87.70788289355737,41.948935101367205],[-87.7078858272998,41.94905616440188],[-87.70789088337067,41.94927600384118],[-87.70790042580202,41.949653632346255],[-87.70790594579583,41.949848583988036],[-87.70791095501201,41.95002580521438],[-87.70791250080734,41.950080560715826],[-87.7079176208024,41.95028101258827],[-87.70792680442268,41.9506405407037],[-87.70793407108403,41.95091258680239],[-87.70794010050395,41.951138139162325],[-87.70794530730004,41.95133506488058],[-87.70794879398713,41.951467272658654],[-87.70795275110103,41.95161528966782],[-87.7079600092529,41.95188818610483],[-87.70796639787945,41.95210791963073],[-87.70797131719446,41.95227710304346],[-87.70798043586788,41.95261161744725],[-87.70798701678042,41.95283722762711],[-87.70799470809617,41.953148573064425],[-87.70799782867024,41.953280641595086],[-87.70800119484537,41.95342369050773],[-87.70800167277788,41.953443998091565],[-87.70800308684797,41.95351370880281],[-87.7080049974688,41.953622883999294],[-87.70801302409521,41.953864136067445],[-87.70801487299269,41.953919715622874],[-87.70679444193173,41.95392826739586],[-87.70654613557352,41.95393000562363],[-87.70557424637595,41.95393553032513],[-87.70447002723883,41.953941797334494],[-87.7043527953894,41.95394250282743],[-87.70312845475343,41.953949867433835],[-87.70245730539455,41.953953898999515],[-87.70190427888603,41.95395641748063],[-87.70068329050203,41.95396196820448],[-87.69946343074908,41.95396750092169],[-87.69913129576494,41.953969005042175],[-87.69824054624935,41.95397389032487],[-87.69596125207296,41.95398635926071],[-87.69530155804914,41.953989960064305],[-87.69454306450416,41.95399222338647],[-87.6945511577727,41.95394353230962],[-87.69455468733555,41.953922296928],[-87.69456973752567,41.95385830331313],[-87.69458438267554,41.953809098745],[-87.69460679860252,41.953754833171914],[-87.69462557072772,41.953719400059875],[-87.69464716160324,41.95368148566665],[-87.69479298823218,41.95347650806257],[-87.69488639042163,41.953363581767455],[-87.69507261735481,41.95310707287867],[-87.69539779218894,41.95271182004703],[-87.6954613586388,41.952652431723614],[-87.69549659144818,41.9526141261641],[-87.69552458428798,41.95256452910127],[-87.69565787003069,41.95235212646656],[-87.69575324738642,41.95221775066581],[-87.6957759180112,41.952182037140965],[-87.69579005074489,41.9521582958532],[-87.69580727069918,41.95212356741276],[-87.6958221552855,41.952091664066884],[-87.6958387873571,41.95205601524096],[-87.6958828020258,41.95197750071556],[-87.69591705669703,41.95190447529628],[-87.6959473816859,41.95186795352532],[-87.69597106331469,41.9518340567528],[-87.69599223251441,41.95178669938403],[-87.69601958770282,41.95173457397659],[-87.69604775930371,41.95168909408959],[-87.69607476808554,41.95163117645543],[-87.69609716337293,41.95159354038552],[-87.69611828419957,41.951558367029406],[-87.69615414296081,41.951486640216565],[-87.69617618653038,41.95143632391298],[-87.69619874114085,41.95137898525464],[-87.69621241641858,41.95134577383663],[-87.69623185061687,41.95131017946628],[-87.69624982992043,41.95126925324535],[-87.69627392042196,41.951227482782826],[-87.69629594146058,41.95120156238568],[-87.69640239885372,41.95102477310576],[-87.69643586883171,41.95099353204801],[-87.69646752224966,41.95094535404598],[-87.69649790464408,41.95090298726613],[-87.69653765253528,41.95085040933947],[-87.69657142425311,41.95079252881481],[-87.69660035754121,41.95074430852014],[-87.69662955087432,41.95068472916422],[-87.69666041095016,41.95063127836503],[-87.69670355999126,41.950539806014],[-87.69674111104167,41.950482605278026],[-87.69676809281339,41.9504346762555],[-87.69678764389731,41.950390932117806],[-87.69680093061872,41.950345880205134],[-87.69680826410246,41.950321014103956],[-87.6968090227864,41.95031917337523],[-87.6968277019381,41.95027386650547],[-87.6968399471355,41.95024023544526],[-87.69686355982498,41.95000625745813],[-87.6968591398961,41.94996506974593],[-87.69684968272279,41.949923058286146],[-87.69685041184191,41.94987193762092],[-87.69684572256709,41.949825973481616],[-87.69683694999658,41.94975073338253],[-87.69682815495447,41.94969253472696],[-87.69681463203551,41.94965137887069],[-87.69680070716372,41.94960259186872],[-87.69679079410561,41.94955701039566],[-87.69678556342022,41.94951743726886],[-87.69677558880575,41.9494595339307],[-87.69675479124052,41.949362602740685],[-87.69675308641493,41.94932335102396],[-87.69674994718724,41.949284173680205],[-87.69673301797575,41.94919744496706],[-87.69671269340648,41.94910098290431],[-87.69670858616638,41.9490445665239],[-87.69669809133126,41.948990968706546],[-87.69668886547967,41.94894283891122],[-87.6966822066849,41.94890641370329],[-87.69663987075093,41.948746355881774],[-87.69661614698242,41.94862210349254],[-87.69660196513635,41.94851790933939],[-87.6966009137692,41.9485129990482],[-87.69657484650546,41.94839127808478],[-87.69653198088415,41.94821801759918],[-87.69646815493579,41.94796055808271],[-87.69646617608976,41.94794885702485],[-87.69640741721197,41.94782264569972],[-87.69637168786963,41.94773623220694],[-87.69635346041414,41.947669227119654],[-87.69633893461798,41.947610722190724],[-87.69633162240822,41.947566115568314],[-87.69631992198525,41.94748597445431],[-87.69632005591299,41.94745405997526],[-87.69631706189773,41.947422485163635],[-87.69631060774181,41.94738400262467],[-87.69630204870357,41.947342791907666],[-87.69628909745992,41.94728860412352],[-87.69627704666516,41.94725843321715],[-87.69626670311439,41.94722662525332],[-87.69625446454089,41.94717839636584],[-87.6962551694251,41.94715559584814],[-87.69624187228749,41.947106620146805],[-87.69623304659198,41.94706266372778],[-87.69622117852398,41.94701783971846],[-87.69621809796564,41.946994963310004],[-87.69621248054987,41.946942599676206],[-87.69621295075403,41.94688799267343],[-87.69621566655394,41.94682936386028],[-87.69620447311345,41.94669597019454],[-87.69637609715652,41.94669507395434],[-87.69647866311318,41.94669427026687],[-87.69702454511234,41.94668966855264],[-87.69759901318724,41.94668631966877],[-87.69803141182312,41.946682580608915],[-87.69835944086407,41.9466797429797],[-87.69864665703209,41.94667801057398],[-87.69925589019499,41.94667559337436],[-87.69948498164894,41.9466746835606],[-87.69979219284917,41.94667314100047],[-87.70028042753948,41.94666941259547],[-87.70047949380606,41.94666414866512],[-87.70087898558957,41.946653584172104],[-87.70124795053377,41.94665218577938],[-87.70170952635351,41.946649297383864]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4588196.66984","perimeter":"0.0","tract_cent":"1148186.26491153","census_t_1":"17031161000","tract_numa":"24","tract_comm":"16","objectid":"688","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924936.90475434","census_tra":"161000","tract_ce_3":"41.94997445","tract_crea":"","tract_ce_2":"-87.73068426","shape_len":"8762.22531691"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73337113381261,41.946297541719076],[-87.73374766147889,41.94629301694139],[-87.73376704247121,41.946868705732584],[-87.73378390422678,41.94742301593042],[-87.73380254320571,41.94797599068705],[-87.73380606083347,41.948113177917406],[-87.73381083537832,41.94829935789966],[-87.73382360531903,41.94880394855193],[-87.73383009651855,41.94899390967507],[-87.73383768375952,41.94921598412126],[-87.73384997201636,41.94959938758832],[-87.7338600716159,41.94995254410298],[-87.73386389971199,41.950086394018435],[-87.73386625366527,41.95016425971669],[-87.73386859177013,41.950240835549636],[-87.73388070139518,41.95063941380078],[-87.73389552763719,41.95112472341793],[-87.73390682808493,41.951491985884104],[-87.73391277641944,41.951684962717444],[-87.73391511001961,41.95176603106064],[-87.73391688140077,41.95182757357177],[-87.73392760160793,41.95218223701531],[-87.7339371592359,41.95250012188768],[-87.73395036387109,41.95292315664634],[-87.73396382957597,41.953345808545656],[-87.73397006219298,41.95357792505838],[-87.73359633346335,41.95358252632244],[-87.73322711951305,41.95358670156369],[-87.73317314517112,41.95358731184912],[-87.73247349103684,41.95359677352777],[-87.73224193947557,41.95360003892924],[-87.73199867206876,41.95360316401637],[-87.7318519375403,41.9536050457427],[-87.7317828318159,41.95360593202601],[-87.73169525250064,41.95360855103006],[-87.73135090010017,41.95361444408072],[-87.73093906826355,41.95361845408421],[-87.73085126217904,41.95361879739863],[-87.73060000046422,41.95361977989298],[-87.73049142978908,41.953619775996586],[-87.73000121239622,41.95361975634578],[-87.72921090986713,41.95363431993985],[-87.72761716362436,41.953647788060984],[-87.72760832037505,41.953314758746586],[-87.72759923883221,41.95305862076469],[-87.72758816923593,41.95272195675709],[-87.72758305541876,41.95256643572505],[-87.72758099460574,41.95250376126275],[-87.72757733906614,41.95239259113317],[-87.72757239126774,41.95224209864346],[-87.72756740743094,41.95209052226911],[-87.72756335450272,41.9519672417357],[-87.7275576067683,41.95189467522623],[-87.72755760678388,41.95189467357979],[-87.72755676122125,41.95184055567197],[-87.72755456363933,41.951699888520835],[-87.72754978391991,41.95155452199497],[-87.7275468974452,41.95146673277418],[-87.72753909436464,41.95122940289307],[-87.72753670962834,41.95115688018803],[-87.7275365330205,41.95114948085212],[-87.72753467186972,41.95107159047961],[-87.72753182999281,41.95090552411851],[-87.72752892505474,41.95073575272913],[-87.72752641548587,41.950589101789326],[-87.7275131651283,41.950194825314064],[-87.72751123646336,41.95013090235534],[-87.72750815808011,41.95003217667441],[-87.72749378037702,41.94957101766946],[-87.72748564513833,41.94930431927587],[-87.72747913353884,41.94910436877378],[-87.72746485520352,41.948665904885246],[-87.7274518214156,41.948187061169115],[-87.727443037316,41.94786434131519],[-87.72742704191957,41.94728004002978],[-87.72741004438382,41.94665912663404],[-87.72740107717131,41.94637316973224],[-87.72799401716675,41.946365758027575],[-87.7281936797824,41.94636326200373],[-87.72851299991754,41.946359894947115],[-87.72885813623155,41.94635531853143],[-87.72922793786834,41.946350769050156],[-87.72970332269117,41.946344918986675],[-87.72982173814049,41.946343380696945],[-87.73010183850543,41.94633974131205],[-87.73062955163545,41.94633175538176],[-87.73092572387363,41.94632727245451],[-87.73127968239002,41.946322654641214],[-87.7315078363492,41.946319677941865],[-87.73187418403705,41.94631490150327],[-87.73223241956595,41.946308379735555],[-87.73288560475609,41.94630329107721],[-87.7330031357887,41.94630189361708],[-87.73324150825489,41.94629899105079],[-87.73337113381261,41.946297541719076]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5572129.72277","perimeter":"0.0","tract_cent":"1146060.10144572","census_t_1":"17031161200","tract_numa":"27","tract_comm":"16","objectid":"689","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922217.97210978","census_tra":"161200","tract_ce_3":"41.94255423","tract_crea":"","tract_ce_2":"-87.73856923","shape_len":"9698.16945534"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73462551907406,41.940816532319566],[-87.73461930686585,41.94060991226284],[-87.73461076410777,41.940336488458975],[-87.73460742456527,41.94019448506519],[-87.73459895364688,41.93990604359242],[-87.73459298482673,41.939702810042164],[-87.73459024462109,41.93959889954569],[-87.73458739193073,41.939479511053875],[-87.73458617901106,41.93945102629999],[-87.73456674877593,41.938994851326534],[-87.73518556305595,41.938986683860044],[-87.7352220355946,41.93898620235062],[-87.73529428370351,41.938985446422976],[-87.73571042469439,41.93898135829914],[-87.73602626684048,41.9389764365568],[-87.73663982941304,41.93896687279646],[-87.73703362684262,41.93896150157817],[-87.7373712308946,41.938956895519375],[-87.73781902140317,41.938952138839085],[-87.73826534347033,41.93894528993742],[-87.73879213040416,41.938937203969324],[-87.73905186561494,41.938934349973586],[-87.7394980430236,41.93892844832434],[-87.73998694632321,41.938921979801805],[-87.74033270339568,41.93891739948275],[-87.74070662129097,41.938912086973744],[-87.74093372125097,41.938908859665915],[-87.74130311801646,41.938903609427705],[-87.74132735004224,41.93890308948097],[-87.7414433649573,41.93890060035772],[-87.74175394601077,41.93889619116593],[-87.74190984110757,41.938894188599605],[-87.74210828333128,41.938891637358566],[-87.74215622665716,41.940704702017605],[-87.74220356323394,41.94070323060186],[-87.7423993424056,41.940696599317064],[-87.74289525351492,41.94069404031248],[-87.7429601311947,41.942531542569945],[-87.7427195280196,41.942532736527696],[-87.74246600461514,41.9425339938416],[-87.74237013857358,41.9425344691604],[-87.74230412568255,41.94253740788699],[-87.74224929107297,41.94253984896779],[-87.7423110894023,41.944383096619724],[-87.74235316540725,41.946185039623295],[-87.74229321925611,41.94618557434491],[-87.7421200806533,41.94618711869521],[-87.74135804288461,41.94619391301689],[-87.74093783970527,41.94619923768252],[-87.74047763812497,41.94620506722753],[-87.73999009223736,41.94621042458686],[-87.73990269563268,41.94621190894373],[-87.7397058281708,41.946215252073316],[-87.73953296067191,41.9462181874374],[-87.73931906850116,41.94622063724813],[-87.73904483974817,41.94622377765289],[-87.73899012090122,41.94622440411678],[-87.73893577887259,41.94622502619372],[-87.73889586072416,41.94622548335405],[-87.73816188201086,41.94623493546602],[-87.73751156978165,41.94624393895115],[-87.73720430049602,41.94624806429559],[-87.73694111098291,41.94625159727486],[-87.73635644221562,41.946261456580295],[-87.73601540275827,41.94626428021421],[-87.7356268913648,41.94626749566258],[-87.73487645805086,41.945813085282396],[-87.73477038774341,41.945748551179726],[-87.73476679582718,41.94562777697641],[-87.73476388482004,41.94552989886314],[-87.7347555114743,41.94524835329791],[-87.73475148408649,41.94510415106738],[-87.73474631451931,41.94491905402278],[-87.73473688456875,41.9446146710189],[-87.73473247771935,41.944459682288496],[-87.73472441047146,41.94417597005782],[-87.73471560400094,41.94387175491715],[-87.73470325414044,41.943463021419205],[-87.73469861928169,41.9433080586358],[-87.73469576266868,41.94321078861001],[-87.73469140757527,41.9430672981153],[-87.73468851651471,41.942963771085395],[-87.73468494787328,41.9428344448575],[-87.73467870544773,41.942636444311745],[-87.7346645952446,41.94218889827661],[-87.73466080666171,41.94205951599955],[-87.73465623744352,41.94190356560017],[-87.73465139634902,41.941726700626965],[-87.73464521119006,41.94150271477124],[-87.73464026756011,41.941347503343465],[-87.73463658175724,41.94123071755379],[-87.73463266933344,41.94107529168353],[-87.73463057610793,41.940984721771585],[-87.73462551907406,41.940816532319566]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7029100.88704","perimeter":"0.0","tract_cent":"1134359.27594","census_t_1":"17031170200","tract_numa":"32","tract_comm":"17","objectid":"690","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924617.39655434","census_tra":"170200","tract_ce_3":"41.94935323","tract_crea":"","tract_ce_2":"-87.78151908","shape_len":"10630.3898996"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78562157260599,41.94567153450984],[-87.78630700214765,41.945663407966094],[-87.78627899012399,41.945775905555315],[-87.78626815979412,41.94615699876222],[-87.78627610626687,41.946341118939586],[-87.78628598127402,41.94657656494653],[-87.78630312988173,41.94698542598205],[-87.78631011330307,41.9471575218583],[-87.78632380213907,41.94748316134285],[-87.78633711718062,41.947799907754536],[-87.78634700728995,41.948040513176686],[-87.78636266309718,41.94839036572007],[-87.78637432209216,41.948650902849835],[-87.78638582119282,41.948948431006514],[-87.78640124624681,41.94929337051308],[-87.78641409018863,41.949580586777174],[-87.78642604716235,41.94988909393876],[-87.78644012135544,41.95020082162927],[-87.78645032301682,41.95042677457464],[-87.786452072795,41.9504655312754],[-87.78646620492165,41.950794849922204],[-87.7864787769973,41.951095783980456],[-87.7864828065895,41.95119223692311],[-87.78648959163499,41.95135039164003],[-87.78650492357893,41.95170776103112],[-87.78650964104192,41.95181772126086],[-87.78651526995317,41.951948917294025],[-87.78652118455635,41.95208703477861],[-87.78652660529578,41.95221411787787],[-87.78653201751216,41.952316393205734],[-87.78653218602467,41.95231998975672],[-87.78654868181891,41.952672123170004],[-87.78655950676234,41.95291650502593],[-87.78597067864291,41.952923813113074],[-87.78573257979306,41.95292651936057],[-87.78539042726412,41.952930979092535],[-87.7848245103266,41.952938485318626],[-87.78454294780586,41.95294235382672],[-87.78411222292533,41.95294796893499],[-87.78359557521073,41.95295470204364],[-87.783338574563,41.95295805046448],[-87.78308631417978,41.95296164413322],[-87.78286343311729,41.95296455457281],[-87.78262985394942,41.952967563648755],[-87.78226729511377,41.95297223287217],[-87.78216412406815,41.952973933003726],[-87.78204742274096,41.95297581505492],[-87.7816585102244,41.95298088928671],[-87.78124340342214,41.952986303858715],[-87.7810627263024,41.95298916703431],[-87.78044368203106,41.95299723280783],[-87.78017223091888,41.95300076909338],[-87.7799939830583,41.95300328554281],[-87.77977032764828,41.953006433498956],[-87.7792211459626,41.95301374114505],[-87.77913201490543,41.95301492700751],[-87.77896811784365,41.9530158997312],[-87.77855109291883,41.953022941287394],[-87.77820385916554,41.953028205753654],[-87.77800078537754,41.953032059540625],[-87.77771409765026,41.95303749955981],[-87.77710928345398,41.953045053926715],[-87.77677480327607,41.95305614502376],[-87.77676892089009,41.95290279079967],[-87.77676319636367,41.95268607967767],[-87.77675945573353,41.952580738219794],[-87.77675912032188,41.95257128852888],[-87.77675868091522,41.95255891821241],[-87.77675566675775,41.95247402496582],[-87.77674589717994,41.95225323277602],[-87.77674158736075,41.95210920304502],[-87.77673735277543,41.95196768298735],[-87.77672534530694,41.95168299454472],[-87.77672438346494,41.95166032072425],[-87.77671533939113,41.951447135421965],[-87.77670742744853,41.95120908393157],[-87.77670193706291,41.95104391742385],[-87.77669520602764,41.95076191777747],[-87.7766917530769,41.95061727937808],[-87.77668025373926,41.95037982132206],[-87.7766777592361,41.95031216205567],[-87.77666750191945,41.95008360347023],[-87.77665914042302,41.94986239759524],[-87.776651245803,41.94965353307879],[-87.77664221494928,41.94941374173921],[-87.77663601620517,41.949249153517115],[-87.77662521780981,41.948957417876926],[-87.77661747322585,41.948748188797644],[-87.77660818691595,41.94850127932189],[-87.7766061339228,41.948446687125326],[-87.77659654587713,41.94819175180155],[-87.77659153404444,41.948046755064865],[-87.77658186234119,41.94776693007057],[-87.77657426157451,41.94759160071122],[-87.77656750401216,41.94743571576043],[-87.77655576175658,41.94713735199724],[-87.77654757542506,41.94692933831594],[-87.77653930843896,41.94668117273162],[-87.77653215678761,41.94646650547532],[-87.77652257728386,41.94622995198382],[-87.77651088643603,41.94594126836594],[-87.7765031404691,41.94577147196296],[-87.77675790276993,41.94576823552924],[-87.77798066671497,41.945756977692],[-87.77893884474263,41.945746881511354],[-87.77919498943672,41.94574414167613],[-87.77927042485896,41.94574336825281],[-87.77985152059946,41.945737362047886],[-87.78038232638175,41.94573182421103],[-87.78065362935575,41.94572901416804],[-87.78090717626345,41.9457263924744],[-87.78137332504556,41.94572135150528],[-87.7819751139798,41.94571484100407],[-87.7826409724137,41.94570909048252],[-87.78317968558946,41.9457030013517],[-87.78343345572256,41.94570004584172],[-87.78381184461756,41.94569652246174],[-87.78432098954111,41.945691779583065],[-87.78477676354571,41.94568707035208],[-87.7851251212321,41.94568316315435],[-87.78562157260599,41.94567153450984]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3524104.06005","perimeter":"0.0","tract_cent":"1172734.88142819","census_t_1":"17031080400","tract_numa":"20","tract_comm":"8","objectid":"706","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909611.87709099","census_tra":"080400","tract_ce_3":"41.90741282","tract_crea":"","tract_ce_2":"-87.64090152","shape_len":"7978.02285433"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64302222063608,41.903719644966124],[-87.64321993820056,41.90371649997725],[-87.64322533083765,41.903858983030695],[-87.64323413773533,41.904119106872926],[-87.64324040734469,41.904318074232556],[-87.6432455106696,41.90449230849457],[-87.64325050891053,41.90466610331691],[-87.64325411153592,41.90484082580438],[-87.64325639692419,41.904951648611295],[-87.64325929923524,41.90505287333017],[-87.64326387426689,41.9052124504706],[-87.64326904311027,41.90537378748338],[-87.64327299227928,41.90549828957135],[-87.64327646156569,41.90562300831125],[-87.64328399149672,41.90589599484368],[-87.64329202574812,41.90619379224603],[-87.6432986188768,41.906446664217306],[-87.64330533678988,41.90670432670832],[-87.64331112826571,41.906889734601194],[-87.64331686447879,41.90710074528261],[-87.6433216634721,41.907262299557],[-87.64332918122273,41.90749895232038],[-87.64333074989874,41.90754909856962],[-87.64333612293959,41.90772083765098],[-87.6433447717697,41.908033237956516],[-87.64335282898327,41.908318741231284],[-87.6433581818616,41.90849270272007],[-87.64336397890538,41.9086888402531],[-87.64337780852935,41.909176709990554],[-87.64338495812808,41.90942892051905],[-87.64339189872788,41.90967144237473],[-87.6434061661732,41.910154677183876],[-87.64340984400397,41.910303871484636],[-87.64341140178769,41.91036704779381],[-87.64341287312374,41.91042675487683],[-87.64341598421024,41.91055297876047],[-87.64341718574023,41.91059124053756],[-87.64343057887629,41.91101775996966],[-87.6430635982381,41.91104328547277],[-87.64222471043328,41.911061717493986],[-87.6414911469754,41.911072366137645],[-87.64101649428704,41.91107925392665],[-87.64043198568076,41.9110877329303],[-87.63980635959402,41.9110968052988],[-87.63942930568916,41.911102271299384],[-87.63859245748084,41.91111452391946],[-87.63859015088265,41.9110442036436],[-87.63857838642505,41.91068552842337],[-87.63857760479853,41.910660002089564],[-87.63857255836491,41.910495084002115],[-87.638570094782,41.9104145797574],[-87.63856843801697,41.91036042938435],[-87.63856723854185,41.91032122904532],[-87.63855231859198,41.909833671709634],[-87.6385389916314,41.90939917953442],[-87.63853410185081,41.90924185042725],[-87.63852406710329,41.90891898623146],[-87.63851509703252,41.908628208233836],[-87.63850985348034,41.90846346781745],[-87.63850419356119,41.9082853604758],[-87.63849085173509,41.90786244874236],[-87.63848706268368,41.90773083996625],[-87.63848350619328,41.90760068731092],[-87.63847985657978,41.90746713069433],[-87.63847412770791,41.90728279212796],[-87.63847277586886,41.907239289263785],[-87.63846671398991,41.907046195950755],[-87.63845688126692,41.90674696067864],[-87.63845336143746,41.90663437075162],[-87.63844980073411,41.90652043562735],[-87.63844520808534,41.90637350969621],[-87.63843696561635,41.90612930612149],[-87.63843220124727,41.90596241321185],[-87.63843219915076,41.90596233553742],[-87.63843146317348,41.905938129707955],[-87.63842831394007,41.90583449533646],[-87.63842053842612,41.90566224721424],[-87.63841705048749,41.90554425269439],[-87.63841159274043,41.90535404387292],[-87.6384075866336,41.90524128686982],[-87.63840571157074,41.90518851931591],[-87.63840348685844,41.905125922003045],[-87.63839775270989,41.90497045374287],[-87.63839567376048,41.904899396019864],[-87.63839345504888,41.90482354410044],[-87.63839003436247,41.904706604029336],[-87.63838698923338,41.90460801279107],[-87.63837897382149,41.904344463128155],[-87.63837498971469,41.904180773015554],[-87.63837429815867,41.90415233858551],[-87.63837062314754,41.90399666349605],[-87.63833590064088,41.9037935577122],[-87.63847420228555,41.903791143870656],[-87.6387856210318,41.90378583774644],[-87.63896697701531,41.903782598647936],[-87.63922042071275,41.903778066168776],[-87.63936485627491,41.90377506978193],[-87.63964219563378,41.90377166074693],[-87.63987446720539,41.903768804899634],[-87.63991116979659,41.903768353655565],[-87.64026242169577,41.90376185733245],[-87.6406169706785,41.90375612076729],[-87.64098598891712,41.903750827098335],[-87.64117105573872,41.90374829048024],[-87.64135522387636,41.90374583541483],[-87.6415003504685,41.90374349912136],[-87.6418040471728,41.9037388402597],[-87.64205906630775,41.90373462466738],[-87.64220981572647,41.90373195359912],[-87.6423619627771,41.90372925781219],[-87.64272455527522,41.90372364546568],[-87.64302222063608,41.903719644966124]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14890929.2824","perimeter":"0.0","tract_cent":"1134228.13966874","census_t_1":"17031150500","tract_numa":"41","tract_comm":"15","objectid":"691","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1928739.25691333","census_tra":"150500","tract_ce_3":"41.96066636","tract_crea":"","tract_ce_2":"-87.78190363","shape_len":"16414.2565803"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78597067864291,41.952923813113074],[-87.78655950676234,41.95291650502593],[-87.78657493772737,41.953264861950565],[-87.78657836153165,41.953369723817964],[-87.78658193047153,41.953479026517854],[-87.7865905306089,41.953832165879945],[-87.78659956459956,41.954203117252874],[-87.78660674593502,41.95438662978173],[-87.7866106551234,41.954501384096105],[-87.78661387805936,41.954593111162986],[-87.78661939056062,41.95476541932849],[-87.78662073568749,41.95480362550203],[-87.78663123040525,41.95510172427351],[-87.78664690250294,41.955546883608044],[-87.78665590970989,41.95568454893504],[-87.78665735508991,41.95570698456974],[-87.78666184958878,41.955776755435544],[-87.78666914334049,41.9558912239724],[-87.78668436866027,41.95611006536041],[-87.78669929100346,41.95656644460857],[-87.78671057188315,41.956911446217575],[-87.78671349394382,41.9569869534978],[-87.78671569140567,41.957043741777824],[-87.78672569345721,41.95727584025086],[-87.78672622460662,41.95728863082307],[-87.78673609038633,41.9575262722258],[-87.78674616011273,41.957789188261096],[-87.78675243344675,41.95794566582715],[-87.78675929069487,41.958132771607126],[-87.78676435735984,41.95831429810019],[-87.78676911287909,41.95846335547804],[-87.78676957680128,41.95847790559232],[-87.78677435907372,41.958623920582276],[-87.78678216733161,41.958837430210856],[-87.78679194506446,41.95908722772211],[-87.78679934775303,41.95986453421672],[-87.78679992201037,41.96006409619652],[-87.78680540388572,41.96021702138772],[-87.786805404176,41.960217030444994],[-87.78680971923431,41.960337410012706],[-87.78680971958556,41.96033741193532],[-87.78681944136291,41.96061100089775],[-87.78682000385044,41.96067318169569],[-87.78682033653801,41.96070993378937],[-87.78682034209487,41.9607105743153],[-87.78682034590682,41.96071103179388],[-87.78682034883767,41.960711334220164],[-87.7868278525169,41.960960570059065],[-87.78682785250282,41.96096057170552],[-87.78683540463359,41.961148120040214],[-87.78684311319105,41.96137334688848],[-87.7868479472763,41.961530503555274],[-87.7868566623923,41.96177993886505],[-87.78686296840787,41.96193265690123],[-87.78686646140936,41.96204405647187],[-87.78686646139062,41.96204405866715],[-87.78686912246563,41.96212898002942],[-87.78687642768432,41.962358403288974],[-87.78688154890003,41.96250348703227],[-87.78689042602268,41.962690956824034],[-87.78689042637394,41.96269095874666],[-87.78691600822437,41.96288130933026],[-87.7869160092969,41.96288131290283],[-87.78692901150521,41.96293444456507],[-87.78693911258334,41.963008805642566],[-87.78695495865529,41.96310366643404],[-87.78696275044396,41.96314272621828],[-87.7869778576378,41.963182012635706],[-87.7869968244451,41.96322052598696],[-87.78700518078209,41.963237493427144],[-87.78702292848114,41.963265018359586],[-87.78704783364194,41.9633036431091],[-87.78685345542534,41.96341602382382],[-87.78683167764568,41.96343013490568],[-87.78680993652239,41.9634443010421],[-87.78680800585477,41.963445412313334],[-87.78680435698436,41.96344751265196],[-87.78679511190421,41.96345602290004],[-87.78677852588943,41.96347129177225],[-87.78676906703579,41.96354981381617],[-87.78676873536874,41.96361869196675],[-87.78676873184311,41.96374390843567],[-87.78676873182668,41.96374391035654],[-87.78676801142204,41.963862616608324],[-87.78676801138216,41.96386262127329],[-87.78676724869425,41.96396906590703],[-87.78676601995535,41.96414935479275],[-87.78676596506483,41.964157971082884],[-87.78676509306125,41.96433313053346],[-87.78676491744349,41.96435793682476],[-87.78676491741065,41.9643579406665],[-87.78676364743653,41.96451517412199],[-87.78676249738719,41.9645892856932],[-87.78676160735841,41.96464661215763],[-87.78676021066191,41.96473658821334],[-87.78675934407431,41.96483367457422],[-87.7867588745706,41.96488430304535],[-87.786757885947,41.96498276065414],[-87.78675658138255,41.96511818128752],[-87.78675605529001,41.96517973144879],[-87.78675496633161,41.96530283159429],[-87.7867536669733,41.96545054631219],[-87.78675285694064,41.96553671069444],[-87.78675233036769,41.965598315733175],[-87.78675087869054,41.96573373565162],[-87.78674946377292,41.965869155741885],[-87.78674776514583,41.96602916233593],[-87.7867464818487,41.96612767340634],[-87.78674648181587,41.96612767724808],[-87.78674400923788,41.96631800038907],[-87.78674280555954,41.9663985918614],[-87.7867417483934,41.96653856930374],[-87.78674085379906,41.96665703235466],[-87.7867401704826,41.966779943402656],[-87.78674016968448,41.96678007978614],[-87.78673979539283,41.966853977405464],[-87.78673979537643,41.96685397932633],[-87.78673859221968,41.966964618254586],[-87.78673859220325,41.96696462017545],[-87.78673793695096,41.96702987466085],[-87.7867376030108,41.96706313290446],[-87.7867371090186,41.96711236141745],[-87.78673637126366,41.9672932568173],[-87.78673624224902,41.96734276148707],[-87.7867465001692,41.96748696342907],[-87.78675666028452,41.967629793070174],[-87.78675517673985,41.96777753456813],[-87.78675451643933,41.96786342520746],[-87.78675381630357,41.96794958788151],[-87.78675381628716,41.96794958980239],[-87.78675284943486,41.96811001227751],[-87.786752247465,41.96821914610059],[-87.78675224743452,41.96821914966792],[-87.78675177342994,41.968326218256806],[-87.78675177375776,41.96832622292352],[-87.78675922477494,41.96838369471392],[-87.78676050515608,41.968387911251156],[-87.78677237180605,41.96842700605503],[-87.78677237466322,41.96842701594778],[-87.7866272339458,41.968428730173216],[-87.7863153814699,41.96843207422975],[-87.78613311931498,41.968434608470005],[-87.78587075970164,41.968438160040485],[-87.78575498530196,41.96844016001172],[-87.78559023376921,41.96844183729055],[-87.78542459963299,41.96844352329289],[-87.78509509642383,41.96844688983728],[-87.78491349888665,41.96844909600965],[-87.78478169523571,41.96845071656375],[-87.78451783146943,41.96845384622352],[-87.78437793770979,41.96845550365424],[-87.78418777191834,41.96845775662031],[-87.783974247912,41.968460960882396],[-87.78380956389394,41.9684633285672],[-87.7836279639282,41.96846580711524],[-87.78336332459307,41.968469314597016],[-87.78316981349847,41.96847145188277],[-87.7829994339939,41.96847333365171],[-87.78277080042123,41.968476106771455],[-87.78240811396121,41.968481199968075],[-87.7822763128128,41.96848251579439],[-87.78207761840622,41.96848447076254],[-87.78195229737554,41.96848661397617],[-87.78173183976025,41.96849038421807],[-87.78140236921115,41.96849417911867],[-87.7810728250903,41.96849797299413],[-87.7808915959877,41.96850006480782],[-87.78074302458329,41.968501687577174],[-87.78056197994218,41.96850366477596],[-87.78028145326175,41.968507363076945],[-87.78009985285661,41.968509863483426],[-87.77983664632016,41.968513479507614],[-87.7796389747022,41.96851620328999],[-87.77953229160968,41.96851716263143],[-87.77932506678218,41.968519025033764],[-87.77912735931356,41.96852163826816],[-87.77899761393097,41.968523335661736],[-87.77855497903133,41.968529137089995],[-87.77823441653935,41.96853291984186],[-87.7776658055258,41.96801671897824],[-87.77726831165553,41.96764946760316],[-87.77725646212672,41.96735755359625],[-87.77725234856479,41.96720127834816],[-87.7772508789376,41.9671454539952],[-87.77724005385964,41.966897654262056],[-87.77723360671408,41.96674177932909],[-87.77723056176434,41.96666816513193],[-87.77722331318428,41.96649291163543],[-87.7772152314049,41.96628628831925],[-87.77720869345806,41.96611913449734],[-87.77720276953312,41.9659673783924],[-87.77719818993447,41.96582932240717],[-87.77719120404157,41.96561872526858],[-87.77718129885992,41.965372548731175],[-87.77717155607566,41.96512977633985],[-87.7771653010864,41.96491577961877],[-87.77716131260631,41.96477931866212],[-87.77715803395795,41.96466714768572],[-87.77715563034896,41.96458491809703],[-87.77715295419833,41.964458561639134],[-87.77714906223184,41.9642747357737],[-87.77714467447093,41.964103146409755],[-87.77714189326963,41.964003161306245],[-87.77713156990694,41.963647927967855],[-87.77712794687626,41.96354788389354],[-87.77710725864802,41.96297657593425],[-87.77709041515023,41.96249502228816],[-87.77708228701192,41.96222423890822],[-87.77707992049791,41.96214541365877],[-87.77706874942938,41.96177327174372],[-87.77705102007262,41.96126685113079],[-87.77703585453912,41.960805809403],[-87.77703272982015,41.960710812378515],[-87.7770226539074,41.960470068609354],[-87.77701935904011,41.96035152128744],[-87.77701243268645,41.96010232192574],[-87.7770050760978,41.95989468542517],[-87.7769908538757,41.95949327635218],[-87.77696936610131,41.95886112486937],[-87.77695928261694,41.95852785211505],[-87.77694789196951,41.95815136699652],[-87.77693174249886,41.9576579338416],[-87.77691806525526,41.957241515293454],[-87.77691546527807,41.957162304651504],[-87.77690482343888,41.95683879245727],[-87.7769002554624,41.956702102918904],[-87.77689467179749,41.9565350135271],[-87.77688531017998,41.95626298898054],[-87.7768731276448,41.955909529875164],[-87.77686291514298,41.955612775790705],[-87.77685393785164,41.95535153782915],[-87.77684110640982,41.954979689273095],[-87.77683733416653,41.95487740695803],[-87.7768281068148,41.95462726892676],[-87.77681429966493,41.9542112885942],[-87.77680482237467,41.95392727114596],[-87.77680194210876,41.95383999082682],[-87.77680001009331,41.95378202415834],[-87.77679255688712,41.953558416432905],[-87.77678252564688,41.95325746444841],[-87.77677480327607,41.95305614502376],[-87.77710928345398,41.953045053926715],[-87.77771409765026,41.95303749955981],[-87.77800078537754,41.953032059540625],[-87.77820385916554,41.953028205753654],[-87.77855109291883,41.953022941287394],[-87.77896811784365,41.9530158997312],[-87.77913201490543,41.95301492700751],[-87.7792211459626,41.95301374114505],[-87.77977032764828,41.953006433498956],[-87.7799939830583,41.95300328554281],[-87.78017223091888,41.95300076909338],[-87.78044368203106,41.95299723280783],[-87.7810627263024,41.95298916703431],[-87.78124340342214,41.952986303858715],[-87.7816585102244,41.95298088928671],[-87.78204742274096,41.95297581505492],[-87.78216412406815,41.952973933003726],[-87.78226729511377,41.95297223287217],[-87.78262985394942,41.952967563648755],[-87.78286343311729,41.95296455457281],[-87.78308631417978,41.95296164413322],[-87.783338574563,41.95295805046448],[-87.78359557521073,41.95295470204364],[-87.78411222292533,41.95294796893499],[-87.78454294780586,41.95294235382672],[-87.7848245103266,41.952938485318626],[-87.78539042726412,41.952930979092535],[-87.78573257979306,41.95292651936057],[-87.78597067864291,41.952923813113074]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7130303.95961","perimeter":"0.0","tract_cent":"1139679.81449441","census_t_1":"17031150700","tract_numa":"32","tract_comm":"15","objectid":"692","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924739.15685916","census_tra":"150700","tract_ce_3":"41.94959169","tract_crea":"","tract_ce_2":"-87.76195828","shape_len":"10680.7779366"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7664005261531,41.94588059381476],[-87.76675600751626,41.94587668807133],[-87.76677595250254,41.94644413358932],[-87.7667882023071,41.946790322976774],[-87.76679591659259,41.94700833410359],[-87.76681175895935,41.94747344764312],[-87.76681944531892,41.94770280759657],[-87.76682650125282,41.94791336378705],[-87.76683394837544,41.94815974877203],[-87.76684302022556,41.94845987411024],[-87.76684834100917,41.94861660072669],[-87.76685835659373,41.948911620687575],[-87.76686448201298,41.94907463003242],[-87.76687189323084,41.949271866116476],[-87.7668802363686,41.94952926800857],[-87.76689501396181,41.94998517526841],[-87.76690200907679,41.95020098734617],[-87.766907222295,41.95033202201694],[-87.76691113072626,41.95043180595816],[-87.76692016441464,41.95066243477532],[-87.76693212204033,41.95101424755176],[-87.76694052746699,41.951334128908584],[-87.76694697054099,41.951579355119314],[-87.76695915091888,41.951955866888184],[-87.76696935568908,41.952236549070975],[-87.76698020022805,41.952534835800485],[-87.76698372201207,41.952692645899205],[-87.76698746491076,41.95286036315675],[-87.76699971340177,41.95318458358456],[-87.76656253864276,41.95319489929102],[-87.7658624623047,41.95319907011145],[-87.76504181910224,41.953201487372965],[-87.76453853938226,41.953213337231425],[-87.76414240984157,41.953222662930195],[-87.76297224207022,41.95323134516003],[-87.76233456839554,41.95323778001615],[-87.76207574098638,41.95324261811505],[-87.76170839108828,41.95324948312848],[-87.76093668301533,41.953255517776036],[-87.76072884854186,41.953257033262744],[-87.76011153007606,41.953260593808736],[-87.75977071330563,41.9532680584689],[-87.75961053840126,41.95327156631299],[-87.75919021667862,41.95328077049427],[-87.7587568645795,41.9532797002665],[-87.75814904438181,41.953285822471976],[-87.7575170497404,41.95329020113117],[-87.75722205812313,41.95329780736451],[-87.75714771901497,41.95329972408642],[-87.75714159137033,41.95306551458358],[-87.75713280444037,41.95280268217594],[-87.75712583698902,41.95259425364044],[-87.75711833397688,41.95235092393786],[-87.75711223713034,41.952153189849184],[-87.75710419386506,41.95190193458868],[-87.75709608471914,41.951648612042256],[-87.75709043734703,41.95145225092065],[-87.7570865664831,41.95131766663506],[-87.75707697683208,41.95100249515687],[-87.75707570269863,41.95096061695281],[-87.7570674163744,41.95066433714841],[-87.75706384528343,41.950556149325465],[-87.75705753913498,41.95036511303074],[-87.75705452990886,41.95028299095009],[-87.75704916410534,41.95014399685935],[-87.75704777149355,41.95010352144681],[-87.75703651960904,41.94977653757945],[-87.75703258311859,41.94964783021439],[-87.7570235135583,41.949351283238045],[-87.7570187224724,41.9491909417207],[-87.75701046417882,41.94891453037405],[-87.75700442096172,41.94873840906885],[-87.75699439203692,41.948446121468486],[-87.75698962625383,41.948286534163145],[-87.75698077947409,41.947990265947254],[-87.75697719198463,41.9478310363526],[-87.75697429309336,41.94770236488644],[-87.75695986608089,41.947279902355966],[-87.75694826502897,41.946915823787215],[-87.75693963334373,41.946644925783964],[-87.756934435688,41.94645777167714],[-87.75693418893323,41.94644888685275],[-87.75693398605694,41.946441578528],[-87.756928197806,41.94623315320286],[-87.7569213613549,41.946000759536965],[-87.75726796725493,41.94599556255311],[-87.7577564574334,41.94599115190984],[-87.75837606533428,41.945982730692826],[-87.75913812253258,41.94597331720663],[-87.75937579779404,41.945970721044645],[-87.75979991809777,41.94596608720034],[-87.76035169806252,41.945958469049145],[-87.76081379494026,41.94595410549786],[-87.76089393622908,41.945953298186765],[-87.76151661568942,41.945946603917015],[-87.76183594896403,41.945940783383236],[-87.76219066014471,41.94593431688378],[-87.7627186359327,41.94592906617904],[-87.76306556739253,41.94592457448953],[-87.76342477911815,41.94591992262206],[-87.76407210321834,41.9459113338126],[-87.76429790477519,41.94590814334459],[-87.76467884539399,41.945902759902246],[-87.764911552593,41.94590008404004],[-87.76522601803948,41.945896467612926],[-87.76553008569003,41.945892375744755],[-87.7659238552754,41.94588707548963],[-87.76614176475468,41.94588411269765],[-87.7664005261531,41.94588059381476]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3490542.75416","perimeter":"0.0","tract_cent":"1169749.12814777","census_t_1":"17031063000","tract_numa":"23","tract_comm":"6","objectid":"707","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1920118.86040317","census_tra":"063000","tract_ce_3":"41.93631013","tract_crea":"","tract_ce_2":"-87.65156259","shape_len":"7934.74892344"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65340537558194,41.932646877679765],[-87.65385860753153,41.932638085503555],[-87.653863266645,41.93274980720387],[-87.6538750405308,41.933091371669015],[-87.65387914274089,41.933210381180864],[-87.65389074960152,41.9335451186583],[-87.65390204728409,41.93387094051357],[-87.65390609829257,41.93399862555395],[-87.65390727964036,41.93403587132163],[-87.65392096301372,41.93445255929326],[-87.65393280522177,41.93481318539988],[-87.65394078670833,41.93504111253634],[-87.65395141674422,41.93535830253044],[-87.65396403831987,41.93573493335368],[-87.65397426638252,41.93599824699003],[-87.65397668726754,41.93606335416584],[-87.65397731643257,41.93608403255259],[-87.65398301607138,41.93627141760419],[-87.65399374352073,41.93662409879793],[-87.65400750800613,41.93701712476461],[-87.65401339201857,41.93717769575456],[-87.6540260902114,41.93752420143838],[-87.65403895711533,41.93789790274163],[-87.6540447782366,41.938090108942504],[-87.65405479723533,41.93842093445359],[-87.65405803175123,41.938524438008315],[-87.65406530587948,41.93875716318606],[-87.65407246091262,41.93894629055408],[-87.65407664353934,41.939056843837726],[-87.65408735730645,41.939368842862734],[-87.65409652235127,41.93963574413617],[-87.6541058165044,41.93991237413251],[-87.65396137196848,41.939916418778445],[-87.6535195970759,41.93991844628859],[-87.65349988761317,41.939918536501914],[-87.6533950011766,41.939919017759486],[-87.65326823808476,41.93991959903556],[-87.65324321392745,41.939919713706985],[-87.65288807834499,41.93992727331712],[-87.65248382661918,41.93993587701451],[-87.65220429897084,41.93993973495517],[-87.65183125354314,41.93994476601922],[-87.65160421419716,41.93994806302542],[-87.65150937511851,41.93994944030089],[-87.65119010631376,41.939954075946666],[-87.65068653335149,41.93996138532533],[-87.65060160131316,41.93996261768206],[-87.65003915635259,41.93997071188266],[-87.64973394023507,41.939974531396935],[-87.64926661399129,41.93998093510221],[-87.64925435233215,41.939569318015366],[-87.64923719512566,41.93908228234557],[-87.64922663436815,41.93847111452846],[-87.64921611711495,41.938163312663114],[-87.64920823573881,41.93799359434729],[-87.64920036576557,41.93782411923157],[-87.64916933393654,41.93715587663815],[-87.64914964594847,41.936597722451374],[-87.64914092824478,41.93637901866062],[-87.64912669219645,41.93602187653362],[-87.64912457292603,41.93596944934565],[-87.64911936724884,41.93578566550017],[-87.64911197582516,41.93558125927215],[-87.64910751731868,41.93545796243151],[-87.64910364973505,41.9353510046164],[-87.64909261672258,41.93504591188756],[-87.64907874173365,41.93460074443441],[-87.6490768255794,41.93454389997723],[-87.64906317195923,41.93413882711186],[-87.6490518485018,41.93385725767474],[-87.64904373683713,41.933622413969914],[-87.64902991607053,41.93322228155595],[-87.64902743112886,41.933150338568744],[-87.64901192377404,41.932719973981456],[-87.64986950305028,41.93270036235407],[-87.65021864671587,41.93269613803446],[-87.65067915966156,41.93269056416829],[-87.65093975819987,41.93268740913144],[-87.65143845822377,41.932678978508456],[-87.65205755929537,41.93266850965491],[-87.65211931178001,41.932667464971246],[-87.65263979496656,41.932659135864114],[-87.65300827642673,41.93265323670341],[-87.65311111042988,41.932651589952144],[-87.65323720259215,41.93264957099927],[-87.65340537558194,41.932646877679765]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10413587.7358","perimeter":"0.0","tract_cent":"1143056.48392745","census_t_1":"17031151000","tract_numa":"36","tract_comm":"15","objectid":"693","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922160.22471633","census_tra":"151000","tract_ce_3":"41.94245242","tract_crea":"","tract_ce_2":"-87.74961049","shape_len":"13646.9195622"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7429601311947,41.942531542569945],[-87.74289525351492,41.94069404031248],[-87.7423993424056,41.940696599317064],[-87.74220356323394,41.94070323060186],[-87.74215622665716,41.940704702017605],[-87.74210828333128,41.938891637358566],[-87.742174977833,41.93889077989776],[-87.74220152558017,41.93889043853817],[-87.74237181036155,41.93888824900207],[-87.74249967667367,41.93888660493174],[-87.74323232096097,41.93887718150193],[-87.74347323962614,41.93887408193587],[-87.74365305871444,41.93887242603107],[-87.74389685062992,41.93886862903025],[-87.74418045316192,41.93886421143262],[-87.74438766846501,41.93886107009697],[-87.74442740653086,41.93886046767195],[-87.7447160432668,41.93885609131175],[-87.74494152139961,41.93885340511259],[-87.74520265858838,41.938849910744466],[-87.74532117016457,41.93884832483296],[-87.74561561575172,41.93884388046088],[-87.7458777862508,41.93883992277971],[-87.74600846714932,41.93883798816077],[-87.74621163695153,41.93883497980816],[-87.74625799122452,41.938834293403374],[-87.74663728210176,41.938828136694774],[-87.74687318535219,41.93882554881911],[-87.74729779227626,41.93882088948941],[-87.74750226490565,41.93881896700035],[-87.74759288428439,41.938818114576534],[-87.74788926979267,41.93881452195959],[-87.74826756730414,41.938808404744336],[-87.74891036386161,41.93880092600017],[-87.74933996991317,41.93879521294415],[-87.74991032165393,41.938787625193235],[-87.74993322810036,41.93878731760409],[-87.75041281882207,41.93878087453981],[-87.75080069908174,41.93877587281432],[-87.75115659477193,41.9387717504099],[-87.7514800726082,41.93876765471937],[-87.7516894494967,41.93876516565507],[-87.75178990150935,41.93876397142103],[-87.75225538457649,41.93875843630032],[-87.75248166966567,41.93875582170228],[-87.75267516889782,41.938753287836356],[-87.75285330265861,41.93875097810088],[-87.75309554221066,41.93874803104504],[-87.75332204950556,41.9387452238179],[-87.75367964130095,41.93874047098867],[-87.75390541647907,41.93873732960772],[-87.75424274094063,41.938732417858304],[-87.75431599588113,41.938731350977825],[-87.75466545457917,41.93872626152856],[-87.7549399675182,41.93872297954602],[-87.7551500744562,41.93872101912928],[-87.7554728960525,41.938716277712224],[-87.75574771335255,41.93871184275655],[-87.7560375307607,41.93870693371956],[-87.75642437384417,41.93870273104507],[-87.75668960426394,41.938700139177556],[-87.75669959383826,41.93895548437298],[-87.7567048117866,41.939053534205556],[-87.7567109286384,41.9391742009433],[-87.75671338749032,41.93929292835181],[-87.75672174842023,41.93961267415635],[-87.75672541564708,41.93975292040469],[-87.75673102596322,41.939909423848775],[-87.75673419421487,41.93999429137926],[-87.75673654342067,41.940069464673016],[-87.75674252512817,41.9402608794943],[-87.75675135855798,41.940525548890406],[-87.75675783608267,41.940719625610996],[-87.75676049356257,41.94082855738763],[-87.75676477426991,41.9409841147772],[-87.75676975812478,41.94113024846936],[-87.75678008140581,41.94143780705674],[-87.75678923168688,41.94171041976367],[-87.75679454978044,41.94189555653437],[-87.7567989131619,41.94204745873243],[-87.75680665535509,41.942351252958275],[-87.75681425722443,41.94264953551899],[-87.7568186629563,41.9428053953499],[-87.75681980390468,41.942845747708915],[-87.75682431418427,41.94298975961248],[-87.75683327850616,41.94326350769116],[-87.75683699811874,41.94337708769798],[-87.75683869078213,41.94342136047209],[-87.75684491644431,41.943583465385565],[-87.75684960333855,41.94371820488761],[-87.75685881404053,41.94398298386037],[-87.75686419739067,41.94417556046369],[-87.75687374242203,41.94451700169903],[-87.75687680448928,41.944629283106956],[-87.75688410417843,41.94489693606752],[-87.75688662296302,41.94511976260872],[-87.75689685956512,41.94530904468038],[-87.75690597551646,41.94554402334861],[-87.7569140426331,41.94575196563224],[-87.7569213613549,41.946000759536965],[-87.75662621950342,41.94600518353427],[-87.75595023674713,41.946012104637006],[-87.75528934495055,41.946020881205534],[-87.75483951528068,41.946026326857755],[-87.75448913591428,41.94602983887922],[-87.7541855172017,41.946032881546],[-87.75363387701034,41.9460411565453],[-87.75294633273319,41.946050087191026],[-87.75235526026967,41.9460571965058],[-87.75201301127798,41.946061438593446],[-87.75162308953766,41.946066270181134],[-87.75122126387218,41.94607197943755],[-87.75077754410134,41.946076479673934],[-87.75033131330339,41.94608222778542],[-87.7499122832085,41.94608805750045],[-87.74965292472116,41.94609076286157],[-87.74949128118985,41.94609244866474],[-87.74918944418708,41.946097609282475],[-87.74876850457026,41.94610320556981],[-87.74830757365903,41.946108541663136],[-87.74800473543412,41.946110620539315],[-87.74769458693618,41.94611342531927],[-87.74728865655409,41.94612049668032],[-87.74706498045566,41.94612427623143],[-87.74676608557576,41.94612932640147],[-87.74646987282685,41.94613438922846],[-87.74630380748131,41.94613722713221],[-87.7462022301523,41.946138565843846],[-87.74540204071593,41.94614910762976],[-87.74495356523424,41.94615501351714],[-87.74457689815425,41.9461589552389],[-87.74453517173842,41.946159391640805],[-87.74426353515862,41.94616223261551],[-87.74397616130706,41.94616547789316],[-87.74370150742024,41.94616856823878],[-87.74336821093434,41.94617298118681],[-87.74328038330131,41.94617414345469],[-87.74282819943998,41.94617954887746],[-87.74254757447933,41.94618290212751],[-87.74243229955835,41.94618427980746],[-87.74235316540725,41.946185039623295],[-87.7423110894023,41.944383096619724],[-87.74224929107297,41.94253984896779],[-87.74230412568255,41.94253740788699],[-87.74237013857358,41.9425344691604],[-87.74246600461514,41.9425339938416],[-87.7427195280196,41.942532736527696],[-87.7429601311947,41.942531542569945]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7056560.91736","perimeter":"0.0","tract_cent":"1137103.13813737","census_t_1":"17031151200","tract_numa":"29","tract_comm":"15","objectid":"694","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922017.31203611","census_tra":"151200","tract_ce_3":"41.94216942","tract_crea":"","tract_ce_2":"-87.77149553","shape_len":"10627.3560991"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77580855961783,41.93845359845129],[-87.77621462941525,41.93844814720843],[-87.77622496143316,41.93875218789604],[-87.77623007374149,41.93884891914068],[-87.77623351741492,41.938907854603656],[-87.77623637569339,41.938956770260916],[-87.77624243518328,41.93910092627867],[-87.77625129729356,41.9393632347057],[-87.77625915231624,41.939595735970016],[-87.7762654340886,41.93977770844396],[-87.77626699538695,41.939819016302486],[-87.77627227555679,41.93995872314931],[-87.77628536509062,41.94027753912954],[-87.77629411072687,41.94049054971723],[-87.77629593286022,41.94053880199378],[-87.77630328489475,41.94073296397726],[-87.77632074212922,41.94119219332791],[-87.77632804873274,41.94138445277268],[-87.77633294905027,41.94150557907699],[-87.77633711603313,41.941613831418664],[-87.77633857144959,41.94165033636062],[-87.77635697319604,41.94211195329782],[-87.77636598876495,41.94233808936374],[-87.7763703741144,41.94244664461242],[-87.776376342881,41.94256758398024],[-87.77637884182845,41.942618199552136],[-87.77638233903019,41.942672497223064],[-87.77639505116058,41.94302587770117],[-87.77640548389631,41.94331588247817],[-87.77641214626907,41.94348490367469],[-87.77641487837539,41.94355418134833],[-87.77642508263914,41.943813477702555],[-87.77642906188285,41.943942531107],[-87.77643738073236,41.9442123270177],[-87.7764444700376,41.94439917067905],[-87.77645493221304,41.94467489597298],[-87.7764625373191,41.944856924640646],[-87.77646673582507,41.94495741586332],[-87.77648258628133,41.945314911279745],[-87.77649202457334,41.945527787542126],[-87.7765031404691,41.94577147196296],[-87.77578699938366,41.94578056646193],[-87.77501118396862,41.945787526597385],[-87.77481311300573,41.945789279743934],[-87.77436675414137,41.945793309749185],[-87.7740645224111,41.94579686152161],[-87.77359084604943,41.94580242722],[-87.77191481701455,41.94582119224086],[-87.77162909252938,41.94582433533484],[-87.77077856997305,41.945833687559556],[-87.77000446927056,41.945841991352836],[-87.76989058004771,41.94584321871791],[-87.7693277882374,41.94584923725137],[-87.7691916113256,41.9458504381349],[-87.7688641148013,41.94585332490965],[-87.76840222812613,41.94585903912533],[-87.76762118860178,41.94586630753113],[-87.76736447298562,41.94586953079973],[-87.76706401183417,41.94587330310997],[-87.76675600751626,41.94587668807133],[-87.76674720686,41.94562629687915],[-87.76673145625026,41.94514260526597],[-87.7667249048072,41.94496384681735],[-87.76671946606261,41.944815435050856],[-87.76671170834571,41.94459561216259],[-87.76670083374127,41.94428776673259],[-87.76669365019559,41.94405118303645],[-87.76668956412136,41.94391661016532],[-87.76668224002933,41.94372255761416],[-87.76667272991766,41.94347031678484],[-87.7666696167981,41.94338805711992],[-87.76666144773876,41.94313825784117],[-87.76665385256052,41.9429060117755],[-87.76664601544216,41.9427367095318],[-87.76664097894317,41.94259151536867],[-87.76663693887976,41.94247077713213],[-87.76663334639873,41.94236175892749],[-87.76662826472915,41.94222793932949],[-87.76661590975397,41.94190259204665],[-87.76661223707153,41.94178188305052],[-87.76661179819527,41.94176835187137],[-87.76660831003362,41.941660843489665],[-87.76660634481833,41.941600515795386],[-87.76660323029398,41.941503903815274],[-87.76659601063204,41.94131400726893],[-87.76658579026788,41.94104520336329],[-87.76658341768889,41.94097277163216],[-87.76658141551381,41.940912471190124],[-87.76657941462501,41.94085285598602],[-87.76657552534489,41.94073088437884],[-87.76657333631276,41.940658480991836],[-87.76656403120845,41.940401312683875],[-87.76654927056681,41.93999335478912],[-87.76654741887334,41.9399410951024],[-87.7665445951055,41.93986138921403],[-87.76654132703366,41.93976557254438],[-87.76653199774319,41.93948849858079],[-87.76652302239155,41.93922193397998],[-87.76651716504564,41.93905327256519],[-87.76651608749458,41.93902935518434],[-87.76651507627645,41.93900691232742],[-87.76649970926107,41.93857468554154],[-87.76701763946258,41.93856899931295],[-87.76745308062684,41.93856365449764],[-87.76771215560207,41.93856034821336],[-87.76847364774139,41.938550622876186],[-87.76892961010019,41.938543786156885],[-87.76939292571802,41.93853683775074],[-87.76989424080703,41.9385303253257],[-87.77006884682324,41.938527803070365],[-87.77014240190172,41.938526740461235],[-87.77054208424478,41.93852096181704],[-87.77135709166828,41.93851092614353],[-87.77183517318086,41.93850503685409],[-87.77218960190014,41.93850023834216],[-87.77257336464041,41.938495066640115],[-87.77333588857579,41.938484786650605],[-87.77378595693762,41.93847952922073],[-87.77403201569483,41.938476654019695],[-87.77446783089066,41.93847043371024],[-87.77500262893652,41.93846380591322],[-87.7753248904293,41.938459810829265],[-87.77580855961783,41.93845359845129]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7063124.52925","perimeter":"0.0","tract_cent":"1152969.26659955","census_t_1":"17031160500","tract_numa":"32","tract_comm":"16","objectid":"695","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1927710.57997905","census_tra":"160500","tract_ce_3":"41.95749198","tract_crea":"","tract_ce_2":"-87.71302856","shape_len":"10632.9928387"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71658824998853,41.95380403439133],[-87.71781330324485,41.95378645686614],[-87.7178150098576,41.95384487110845],[-87.71782787823142,41.95428533280985],[-87.71783085758588,41.95438730892275],[-87.71783543036261,41.95458453258648],[-87.717846306599,41.95494048786566],[-87.71785504776618,41.95519739331515],[-87.71786681166952,41.955607988938404],[-87.71787368013085,41.95584770664602],[-87.71788313895883,41.95616378084246],[-87.71788849078477,41.95634119540835],[-87.71789715719677,41.95661736448626],[-87.717907312512,41.956940357786465],[-87.71790771361914,41.956953120521796],[-87.71791077245899,41.957051709008084],[-87.71792419839583,41.95743042978108],[-87.71793032044255,41.957603125921416],[-87.7179388630564,41.957938047839335],[-87.71794428178995,41.9581161762022],[-87.71794916063753,41.95827399450234],[-87.71796184514919,41.95867521127838],[-87.71796996608175,41.95893170132407],[-87.71797994452457,41.959249982280525],[-87.71800276978996,41.95997799770268],[-87.71801714584907,41.96043270807908],[-87.71802316814069,41.96062307987173],[-87.71802402487889,41.96065016871974],[-87.71803973415345,41.96106935964465],[-87.71760944170178,41.961073737636326],[-87.71720204318855,41.96107918088973],[-87.71680901660753,41.9610835577366],[-87.71644219987783,41.96108764158642],[-87.71606067460849,41.96109420772599],[-87.71558720004693,41.96109896257967],[-87.71516555856054,41.96110319491988],[-87.71471884981435,41.96110920500486],[-87.71458451985247,41.96111112406443],[-87.71436381966564,41.96111359846387],[-87.71398282918435,41.961117868616576],[-87.71341108449404,41.96112661033832],[-87.71313604709704,41.96112931200643],[-87.71263955671213,41.96113418694976],[-87.7122488254355,41.96113835806978],[-87.71190882176342,41.96114374179128],[-87.71152421153529,41.96114983076942],[-87.71120260649535,41.96115363204193],[-87.7110626185864,41.96115509590699],[-87.71068997299606,41.9611591163352],[-87.7102314398792,41.96116406185246],[-87.70998006487986,41.96116741730697],[-87.70984007291533,41.96116929156492],[-87.70958710760156,41.9611735979955],[-87.7094726488399,41.96117467392585],[-87.7091264426596,41.96117792735796],[-87.70885159080744,41.96118154511674],[-87.70872584608382,41.96118324030007],[-87.70845800789742,41.961185734473574],[-87.7082484167112,41.96118683635321],[-87.70823878512304,41.96092392350432],[-87.70823303347272,41.96075627587242],[-87.70822983609796,41.96068466203632],[-87.70822607597891,41.96056529588806],[-87.70821712098389,41.96025141930884],[-87.70820590999571,41.959938902533075],[-87.70819857821796,41.959635764618426],[-87.7081891379203,41.959364451886465],[-87.7081807820337,41.959124311591275],[-87.70817067453434,41.958841904474525],[-87.70816611633244,41.95870637081543],[-87.70815915506725,41.95849700480291],[-87.7081525577254,41.95828802467925],[-87.70814788183539,41.95814200693175],[-87.70814362248484,41.95800603553475],[-87.70814021091186,41.9578811279209],[-87.70813625901714,41.95772498824129],[-87.7081291182476,41.95755337497215],[-87.70812125408924,41.95736437208299],[-87.70811618343528,41.9571872876905],[-87.70811020770056,41.956978640482376],[-87.70810757589057,41.956887408565386],[-87.7080990854007,41.95665473525196],[-87.70808730727641,41.95632756136791],[-87.70808046551188,41.95610225177154],[-87.70807697606541,41.95598532934723],[-87.70806806467945,41.955737023495644],[-87.70806099735334,41.955540103715364],[-87.70805464239888,41.955285955617946],[-87.7080512704676,41.95515111356218],[-87.70804497738366,41.954926108769875],[-87.70803541148575,41.95459208602652],[-87.70803040627517,41.95442718648049],[-87.70802598763092,41.95428122519113],[-87.70802301246708,41.95416436041394],[-87.70801697886402,41.95398300561976],[-87.70801487299269,41.953919715622874],[-87.70923966062975,41.953911120495995],[-87.71046528268704,41.9538919334969],[-87.71127393966577,41.95387908604809],[-87.71168050570493,41.95387469794377],[-87.71290495616718,41.95385680510504],[-87.71412472111301,41.953839342646525],[-87.71536206374957,41.953821615246994],[-87.71658824998853,41.95380403439133]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3196455.00982","perimeter":"0.0","tract_cent":"1154905.30471801","census_t_1":"17031140100","tract_numa":"11","tract_comm":"14","objectid":"696","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1932699.35703104","census_tra":"140100","tract_ce_3":"41.97114281","tract_crea":"","tract_ce_2":"-87.7057767","shape_len":"7667.39193054"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70796837080584,41.96846155763297],[-87.70847151804843,41.968451992827674],[-87.70849017119856,41.96892229727391],[-87.70849191951102,41.968966378457935],[-87.70850192405734,41.969274662079705],[-87.7085088744576,41.969534246858714],[-87.7085115059588,41.96967888080262],[-87.70851689202148,41.96985396297069],[-87.7085221906221,41.97003047164391],[-87.7085281506685,41.97027205203173],[-87.70853414874071,41.97051516333369],[-87.70853739523746,41.970630739470224],[-87.70854450209701,41.97089315156902],[-87.70855040726676,41.97123714231836],[-87.70855569305286,41.97143379333935],[-87.70856142706457,41.97159586981733],[-87.70856883496161,41.971767285694675],[-87.70857942335773,41.97209032298525],[-87.70858806972183,41.97235410122579],[-87.70859538223552,41.97258797464212],[-87.70860753970345,41.97309374268077],[-87.70861396434411,41.973346985311935],[-87.70862510673038,41.97376092671446],[-87.70862930476747,41.973917078263845],[-87.70863503227373,41.97413013095283],[-87.70864322435112,41.97441326752648],[-87.70865169040066,41.974681319595305],[-87.70857917543707,41.97468659835344],[-87.70842089769258,41.97469383228781],[-87.70826236758671,41.974696783673274],[-87.70817602125446,41.97469658792184],[-87.708085418889,41.97469914057064],[-87.70779148324871,41.97466817607247],[-87.70759520022936,41.974628248737396],[-87.70745074736547,41.974598153201825],[-87.70741293739331,41.9745907108716],[-87.7073898161707,41.974586160054805],[-87.70732327326276,41.97457306219396],[-87.70721517535628,41.974552138142904],[-87.70707714594184,41.97451960738746],[-87.70697388276193,41.97449319363526],[-87.70678901893635,41.974451406008235],[-87.70668060220322,41.9744255675905],[-87.70657125545704,41.97439703467402],[-87.70650023388532,41.97437919377644],[-87.70644275372346,41.974360521193674],[-87.70638451014548,41.97434469838409],[-87.70632906959189,41.974331799709255],[-87.70628121874012,41.97432122015178],[-87.70622623027236,41.974307226215394],[-87.70619462941279,41.97429655262297],[-87.70619267871076,41.974295893785886],[-87.70619259660837,41.97429586589534],[-87.7061922890841,41.974295762131035],[-87.70615656610863,41.97428598998277],[-87.70612277623468,41.974277846915705],[-87.70608002748324,41.974268255620295],[-87.70587267475194,41.97422486177061],[-87.70576554182773,41.974188162461445],[-87.70572786283934,41.9741791475895],[-87.70569964037382,41.974173257912966],[-87.70567242165869,41.97416630347816],[-87.70564718545546,41.97415968918082],[-87.70561985670258,41.97415270668989],[-87.70559299482983,41.9741431197525],[-87.70556272265912,41.97412879413105],[-87.70553529453616,41.974116953837196],[-87.70553220514219,41.974115187238795],[-87.70539943325794,41.97409974228082],[-87.70537866935281,41.974094582939706],[-87.7052889460444,41.97407136984989],[-87.70521775741574,41.974051853281],[-87.70516974250887,41.97403559186226],[-87.70512875977454,41.974018463317364],[-87.705076435748,41.9740065690045],[-87.7050322617504,41.97399987837443],[-87.70500706972976,41.97399622791748],[-87.70500516104786,41.97399586072456],[-87.70477976536662,41.97395500058219],[-87.70453740701991,41.9738217046555],[-87.70403771340104,41.97355158381829],[-87.70402601908985,41.973518933673],[-87.70399821464267,41.97345198734705],[-87.7039749303299,41.973389099772575],[-87.70395527639414,41.97334220335899],[-87.70393093821939,41.973281779779924],[-87.70391140231614,41.97324531197795],[-87.70388590468768,41.97320554588301],[-87.70385786137037,41.973159152293626],[-87.70384608190251,41.973096849170986],[-87.70382496349549,41.9730530456528],[-87.70381255480403,41.97297622223891],[-87.70380326270467,41.972919009526066],[-87.70379208443083,41.97286288415012],[-87.70378160802551,41.97279523696648],[-87.7037608562829,41.97268060782445],[-87.70373665682837,41.97259120589358],[-87.70370808939177,41.972497252338755],[-87.70368741973623,41.972430317614794],[-87.70366301336948,41.972343274819615],[-87.7036493336758,41.972268584886855],[-87.70362890717873,41.972188177442725],[-87.7036132078913,41.97212846334666],[-87.7036044141691,41.97209501458175],[-87.70359196188859,41.972033860297216],[-87.70356940737392,41.97195297465162],[-87.70353186035005,41.971863499995216],[-87.70344284212302,41.97169446232398],[-87.70337369280934,41.97155418337412],[-87.70321880159638,41.97124093312361],[-87.70314405821011,41.971138520783335],[-87.70309078284075,41.971051813330526],[-87.70306262922695,41.970979458752645],[-87.70300842889263,41.97088961778842],[-87.70294249662328,41.97079619979535],[-87.70286871222268,41.970682404086304],[-87.70280048701353,41.97057942358481],[-87.70278175499564,41.97053217526668],[-87.70270400237368,41.970418110673535],[-87.70264788078951,41.97034047068874],[-87.70263491917073,41.970323693038],[-87.70256444262417,41.97023246689797],[-87.70251506741813,41.97017550033267],[-87.70244328373727,41.970090145294975],[-87.70235115208891,41.969987472212274],[-87.7022920201601,41.96991689555178],[-87.70223987760254,41.96985716944939],[-87.70214957137347,41.96976707469479],[-87.70207567755348,41.96968324457575],[-87.7020210997018,41.96962443801103],[-87.70197725922101,41.969599169771016],[-87.70194299127627,41.96958764774412],[-87.70188281326327,41.96954480902848],[-87.70178789353949,41.96945652722752],[-87.70169902156042,41.969362817653085],[-87.70154489604853,41.96919671326356],[-87.70149957890591,41.96913858885206],[-87.70146935353696,41.969097533567755],[-87.70145263666032,41.96906259070176],[-87.70144795075198,41.96902326761723],[-87.70144953325178,41.96898592769415],[-87.70143941554633,41.96894182751109],[-87.70139901065717,41.96888526657583],[-87.7013200828728,41.968804975717724],[-87.70124324300227,41.96871808276533],[-87.70117228608294,41.96862754491958],[-87.70108291805371,41.96852098924454],[-87.70107611838922,41.96851476361375],[-87.70126483713224,41.96851257834582],[-87.70178968652276,41.96850811230961],[-87.70196374261667,41.96850707189127],[-87.70203835121407,41.96850662626351],[-87.70251119767333,41.96850294092301],[-87.70288464295675,41.968499997863844],[-87.7031548254548,41.96849785891092],[-87.70336429607369,41.968495907589514],[-87.70360511528774,41.96849432652573],[-87.70414074313696,41.9684908078636],[-87.70437543610625,41.96848915730557],[-87.7048086119723,41.968484871945336],[-87.70520206981952,41.968480977683186],[-87.70545463430066,41.968479271492754],[-87.70559401010627,41.968478127000616],[-87.70573205533746,41.968477674289],[-87.70603224270454,41.96847544917691],[-87.70625627337277,41.96847378810392],[-87.70665730056501,41.96847048946758],[-87.70690700758345,41.96846768107115],[-87.70725678111201,41.96846537644498],[-87.70745839725295,41.96846404742307],[-87.70770690397423,41.96846364564404],[-87.70786407826945,41.968462390669806],[-87.70796837080584,41.96846155763297]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6401304.98175","perimeter":"0.0","tract_cent":"1150053.65118064","census_t_1":"17031140300","tract_numa":"29","tract_comm":"14","objectid":"697","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1932853.50360836","census_tra":"140300","tract_ce_3":"41.97166193","tract_crea":"","tract_ce_2":"-87.72361283","shape_len":"10168.1281261"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72084468680441,41.97408695836114],[-87.72082483562949,41.97408547074301],[-87.7206361231761,41.974087647015466],[-87.72056059299076,41.97407936802051],[-87.72050063748706,41.97406148507768],[-87.72037043329674,41.974009994735546],[-87.7202644273314,41.973981492691195],[-87.72013453882919,41.973962303047436],[-87.719948638588,41.973889850864154],[-87.7197229347447,41.9738188321603],[-87.71967771221611,41.97380024159357],[-87.71962808823525,41.97377984155194],[-87.71961629808818,41.97377499482741],[-87.71925179858442,41.9736251517419],[-87.71914670559472,41.973578294823376],[-87.71907437733762,41.973535427842144],[-87.71894803529418,41.97346112449704],[-87.7188262388928,41.97339603870237],[-87.71871434029728,41.97334563237677],[-87.71838799407394,41.973225522826944],[-87.71838527973449,41.973127733938036],[-87.71837666437881,41.97281737563609],[-87.71836335154643,41.97233778230508],[-87.71835457660771,41.971992384274934],[-87.71834491959711,41.97161230792023],[-87.71833362246967,41.97126905712138],[-87.71832431306171,41.97090649774448],[-87.71831745823344,41.97066359885017],[-87.71830397674229,41.97016785670227],[-87.71829471935318,41.96982759200979],[-87.71829375358517,41.9697483616142],[-87.7182855187314,41.96951113578274],[-87.71827697110339,41.9691764615077],[-87.71827118978383,41.96895941871222],[-87.71826703357088,41.96880294979654],[-87.7182549592642,41.96834840775841],[-87.71870647834665,41.96834155930934],[-87.71899111137122,41.96833937811857],[-87.7194758116577,41.96833492837797],[-87.72010355013872,41.96832916226105],[-87.72030883004821,41.968326938097015],[-87.72069654276395,41.96832212141727],[-87.72113544314195,41.9683166675186],[-87.72136955752954,41.96831385427933],[-87.72191776378521,41.96830836968128],[-87.72206758585298,41.968306870594255],[-87.72253294222303,41.96830174595299],[-87.7231425804645,41.968294359248034],[-87.72354346807815,41.96828950006919],[-87.72380258906293,41.96828654026846],[-87.7243854993741,41.96828122621338],[-87.72473298984004,41.96827805711242],[-87.72491340824561,41.968276214314535],[-87.72530182654354,41.96827234464494],[-87.72559668924083,41.9682672665984],[-87.72613057221193,41.96825807028993],[-87.72646671162013,41.96825693878974],[-87.72681402114445,41.96825382664701],[-87.72732006775342,41.96824928970809],[-87.7277065648686,41.96824630734842],[-87.72802755981601,41.968242304093955],[-87.72804180501562,41.968698564367095],[-87.72804837184461,41.96890888755758],[-87.72805996409228,41.969323515975624],[-87.72806772091351,41.96959956916083],[-87.72808079036038,41.97006366249792],[-87.72809769140909,41.97066382055598],[-87.72809922205599,41.970715584349044],[-87.72810695289363,41.97097626977625],[-87.72811488205232,41.97124464001262],[-87.72812453039606,41.97156949504865],[-87.72813177370718,41.971884068021986],[-87.728139905651,41.97223724126191],[-87.72814700696298,41.97250486586407],[-87.72815569950161,41.972829716062996],[-87.72816538642886,41.973193264497425],[-87.72817784475001,41.97362946112307],[-87.72819073474854,41.97403125864468],[-87.72819854342842,41.97427858005307],[-87.72820545145687,41.974553919692006],[-87.72820662205449,41.97460057266651],[-87.72820948283749,41.97471459048875],[-87.72821045205364,41.97475322548289],[-87.72821273747337,41.97483082468288],[-87.728217517728,41.97499315554608],[-87.7282333870483,41.97553200844074],[-87.72754978181749,41.975539845181906],[-87.7273624391263,41.975541991985246],[-87.72730803085348,41.97554238479537],[-87.72712079137408,41.97571590616135],[-87.72691241801242,41.975851741398785],[-87.72675326133667,41.97593212898509],[-87.72665723038249,41.975975693446955],[-87.7265576065842,41.97601418950414],[-87.72638176474987,41.9760623263198],[-87.72622716159663,41.97609295739979],[-87.72596586844902,41.97611610819867],[-87.72582167205812,41.97610810079862],[-87.72567894903061,41.97609598443691],[-87.72541103673834,41.976049451333395],[-87.72522503120067,41.97601386179776],[-87.72505425214605,41.97598202987245],[-87.72486248220636,41.975937764966076],[-87.72474980476646,41.97590643261886],[-87.72445061380945,41.97581187255019],[-87.72444240047453,41.97580930432092],[-87.72432533604155,41.97575983654695],[-87.72421149173645,41.97568892606904],[-87.72408098069442,41.97557644263135],[-87.72400456258221,41.97551057984411],[-87.72393157478122,41.97543988593281],[-87.72378622662599,41.97524046139627],[-87.72377609577086,41.9752307348366],[-87.7237139987968,41.9751711160389],[-87.72365078551185,41.975120588862374],[-87.72355390658201,41.97504477337413],[-87.7232873067761,41.97487389692917],[-87.7232435813757,41.97484587127257],[-87.72279745424318,41.97456537450288],[-87.72266272931846,41.97450176105507],[-87.72243423426218,41.9744144594324],[-87.72225548697027,41.974355001690945],[-87.72212352694405,41.97431312928626],[-87.72199407415947,41.97427205217946],[-87.72176640356312,41.97421403454671],[-87.7214855863493,41.974168301678056],[-87.72127959187274,41.97413561783692],[-87.72108663206038,41.97410508873682],[-87.72085949976025,41.97408806838749],[-87.72084468680441,41.97408695836114]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"25645811.7174","perimeter":"0.0","tract_cent":"1140756.10215095","census_t_1":"17031120200","tract_numa":"90","tract_comm":"12","objectid":"698","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1941111.14917828","census_tra":"120200","tract_ce_3":"41.99449804","tract_crea":"","tract_ce_2":"-87.75759749","shape_len":"28703.5099552"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76654310300106,42.00831400390466],[-87.76650822174433,42.00831370762884],[-87.76650640821642,42.00831369867361],[-87.76650418334255,42.00831368768713],[-87.76649291658427,42.0083136320509],[-87.76635369618172,42.00831245134625],[-87.76632367479267,42.0083121930142],[-87.76629497611047,42.0083119414827],[-87.76626715113844,42.00831170825562],[-87.76619917075924,42.00831113860045],[-87.76615443044571,42.00831075261766],[-87.76605200161117,42.00830991798286],[-87.76598518855513,42.0083093679652],[-87.76596418590243,42.00830919225864],[-87.76590483468813,42.008308696089905],[-87.7658804706557,42.00830850045878],[-87.76581594521271,42.008307981958346],[-87.76578292201698,42.00830769409957],[-87.76575766740244,42.00830747428088],[-87.76564670346232,42.00830654192369],[-87.76561049901333,42.00830625310098],[-87.76547745940435,42.00830515541422],[-87.7654633317455,42.008305030640265],[-87.76541973038694,42.00830466894054],[-87.76531616484354,42.00830380909034],[-87.76530821645049,42.008303769758335],[-87.76516899648733,42.008302586246856],[-87.76513897474075,42.008302327877594],[-87.76502182886492,42.00830136431599],[-87.7649697321776,42.008300941450145],[-87.76487466199586,42.008300141102495],[-87.76486067808348,42.008300030138344],[-87.76480048816016,42.0082995539427],[-87.76472749365058,42.00829891906508],[-87.76463124561478,42.008298167290675],[-87.76458032643147,42.00829769519805],[-87.76455292170382,42.00829745787485],[-87.76446200369683,42.00829666980137],[-87.76444331206883,42.00829654149286],[-87.76443315958312,42.00829647169302],[-87.76429276191024,42.00829528237961],[-87.76428599052757,42.00829524881161],[-87.76413882369955,42.008294024380454],[-87.7641235175656,42.00829389387237],[-87.76399165686215,42.008292801681506],[-87.76397902007027,42.00829268329618],[-87.76397256131521,42.00829262272077],[-87.76395427555033,42.00829245134101],[-87.76388878982718,42.008291930012604],[-87.76387140486865,42.00829179162797],[-87.76384448783955,42.0082915771365],[-87.76382062984341,42.00829137068103],[-87.76380876523193,42.00829126790808],[-87.7637850330657,42.00829106234392],[-87.76373622153447,42.0082906678415],[-87.76372126228718,42.00829054723365],[-87.76369732102246,42.008290353511434],[-87.76361579021348,42.008289674193136],[-87.76355015385496,42.00828912859827],[-87.76344654675741,42.00828823090602],[-87.76340456800622,42.00828791711054],[-87.76340298557672,42.008287905137415],[-87.76339294287723,42.008287820148794],[-87.76327730467366,42.00828684088788],[-87.76325711240693,42.0082866892919],[-87.76325574521154,42.00828667893451],[-87.763108578055,42.00828545482734],[-87.76293933378143,42.008284064574404],[-87.76274993014513,42.008282465196736],[-87.76264470567065,42.00828155736903],[-87.76260585253603,42.0082812541558],[-87.76248478036422,42.0082802522926],[-87.76246657573796,42.00828010166078],[-87.76240658877359,42.0082796051866],[-87.76222522956891,42.008278088311926],[-87.76205351720283,42.00827665154304],[-87.76205345612897,42.008276650964675],[-87.7618397727326,42.00827486283736],[-87.76166410866024,42.00827231472173],[-87.76166484873943,42.00819298415299],[-87.76168507610609,42.007737878652],[-87.76168546582791,42.00772944577571],[-87.76170364970235,42.00733594700938],[-87.76171077578795,42.00711123358124],[-87.76171553690172,42.00696167146995],[-87.76172109503071,42.00678464397609],[-87.76172695502994,42.006656135269964],[-87.76173368127779,42.006513059221696],[-87.761739747541,42.0063816424193],[-87.76174783150854,42.006206493807824],[-87.76175822176397,42.005974688582796],[-87.76176720607327,42.0057766301711],[-87.7617735627234,42.005633717458466],[-87.76178050629866,42.00547044494253],[-87.76178744663844,42.00530752942469],[-87.76179238151157,42.00519076094018],[-87.76179331969739,42.00516930630974],[-87.7617976138297,42.00506768284273],[-87.7618008748009,42.004991136139225],[-87.7618009461868,42.00498957312881],[-87.76180435515916,42.00491470029457],[-87.76180783698409,42.00483809953019],[-87.76181532315756,42.00465290387481],[-87.7618192166108,42.00455657579042],[-87.7618222027956,42.00448268875401],[-87.76182786953433,42.00435516693785],[-87.7618279781023,42.00435269688257],[-87.76183124067309,42.004278593330525],[-87.76183520083664,42.00418964634967],[-87.76183964259732,42.00408799588235],[-87.76184248892076,42.00402483903096],[-87.76184256020943,42.004023204396354],[-87.76184526509738,42.00396129736828],[-87.76184866684046,42.00388540995552],[-87.76185401997621,42.003699057123995],[-87.7618584999473,42.00354309351328],[-87.76186736108397,42.003465614200124],[-87.761872453632,42.00340227643014],[-87.76187862181101,42.00332555180721],[-87.76188538495836,42.003239939236316],[-87.7618927815602,42.00318254121146],[-87.76190036949066,42.0031236600788],[-87.761909954402,42.003035180148316],[-87.7619196212133,42.002945767597915],[-87.76192796098883,42.00286897172473],[-87.76193486287839,42.00280484686162],[-87.76195348134677,42.00265658849218],[-87.76195371035197,42.00265562449955],[-87.76195816750155,42.00263684594786],[-87.76199316698556,42.00248939027738],[-87.7620052245946,42.00245344648319],[-87.7620423814822,42.00234265626099],[-87.7620684996825,42.00226490605442],[-87.76210276830747,42.002164392157994],[-87.76214096290651,42.00205687265133],[-87.76214393083742,42.002048522296555],[-87.76217696714991,42.001955571549246],[-87.7622023293417,42.00188415635622],[-87.76222569010909,42.001818494553156],[-87.76227014414371,42.00168724609211],[-87.76227012948692,42.00168723943314],[-87.76202451633291,42.001580093362406],[-87.76176081410293,42.001463442193426],[-87.7614332626628,42.00131598434675],[-87.76129734242068,42.00125202600506],[-87.76118585922838,42.00119955026469],[-87.76104990232706,42.001135591446584],[-87.76089877661983,42.001064696342006],[-87.76075761178676,42.00099906469018],[-87.76061879446576,42.000934212950646],[-87.76045587040251,42.00085809931345],[-87.76032243615612,42.000796113221696],[-87.76031807141443,42.00079413839147],[-87.76031756282902,42.00079390835909],[-87.76018695085554,42.00073313074503],[-87.76007418127168,42.00068067521584],[-87.75998808382586,42.00064061906729],[-87.75989326678932,42.000596512773285],[-87.7598196994941,42.00056228189791],[-87.7597146976342,42.00051343227451],[-87.75970378905674,42.000508141018955],[-87.75958666809088,42.00045133402555],[-87.75946733521899,42.00039345440053],[-87.75945029914517,42.000385191261486],[-87.7593363529431,42.0003327565653],[-87.75926014538385,42.00029763398627],[-87.75918397469711,42.00026251154096],[-87.75912678248108,42.00023615563162],[-87.75907259983121,42.00021117971139],[-87.75900111379235,42.000178227911405],[-87.75888566728909,42.000125017160634],[-87.75882352964507,42.00009633095448],[-87.75875999903957,42.00006708917804],[-87.75871050159253,42.00004422898516],[-87.75865257400271,42.00001786943229],[-87.75855839466585,41.99997227732377],[-87.75844330732107,41.9999165638487],[-87.75841612590823,41.99990340514683],[-87.75829075542326,41.9998451491118],[-87.75819447589318,41.99980037547844],[-87.75811076154437,41.99976145497781],[-87.75804492631164,41.999730829433716],[-87.75801063486001,41.99971487791138],[-87.75798220101898,41.99970166892237],[-87.75793849826707,41.999681366762765],[-87.75786255138603,41.99964602502487],[-87.75776381682229,41.999600141044425],[-87.7577144311974,41.99957719920472],[-87.75766508240099,41.999554256979565],[-87.75759500118178,41.99952042524669],[-87.75753142151554,41.999489732236206],[-87.75744658950128,41.999448779879906],[-87.75737856162364,41.99941593963943],[-87.75725713515968,41.99935709826431],[-87.75715805266431,41.9993090989862],[-87.75706911719624,41.99926595290095],[-87.75693981612079,41.99920328467028],[-87.7568587190839,41.99916399248363],[-87.75675520483473,41.99911383040408],[-87.75666399886468,41.99906962953169],[-87.75661975093476,41.99904819489421],[-87.75650144659546,41.998999630316476],[-87.75636676939413,41.99894434539379],[-87.7562163508353,41.99887377696724],[-87.75607571097667,41.99880803241557],[-87.75593895536886,41.99874406351288],[-87.75584671040465,41.99870092699919],[-87.75573417021592,41.99864830369857],[-87.75566460234357,41.99861573679417],[-87.75561144627164,41.9985908813051],[-87.75546545812324,41.998524003451344],[-87.75444325172609,41.998040221972275],[-87.75443254349547,41.99803317494049],[-87.75434947204724,41.997978506001026],[-87.7543478592878,41.99797744464487],[-87.7543351053517,41.99797148331709],[-87.75407558388919,41.99785017836854],[-87.75393478209067,41.99778436450953],[-87.75352163136223,41.99759139200613],[-87.75342008485967,41.99754395332857],[-87.75333055457925,41.997502118822325],[-87.75320527028794,41.99744358296133],[-87.7530093273687,41.99735203413547],[-87.75300930942055,41.99735202553774],[-87.75290006425583,41.99730098414222],[-87.75289833929534,41.99730097953647],[-87.75284612930191,41.99730082529892],[-87.75244455932416,41.997299671792106],[-87.75218866324711,41.997298918566386],[-87.75215967044979,41.99729883298047],[-87.75078068151724,41.99729487190133],[-87.74998282632232,41.99729257286855],[-87.74906741744734,41.997289927985285],[-87.74834295389103,41.99728782971713],[-87.74834289319323,41.99728782940781],[-87.74834413102549,41.99709394548241],[-87.74834256479629,41.99682832691238],[-87.74834026242448,41.99660452610605],[-87.7483395818103,41.99629322118267],[-87.74834108515287,41.99599249252284],[-87.74834137702776,41.99571157076244],[-87.74834063729175,41.99561768807681],[-87.7483389953815,41.9954092580829],[-87.74833936905723,41.99503102754137],[-87.74833851894395,41.99460967942518],[-87.74833742016989,41.99423155082107],[-87.74833619791931,41.993842802073274],[-87.74833597147047,41.99359436884926],[-87.74833594887608,41.99325943958713],[-87.74833412009806,41.99307595412425],[-87.7483336795601,41.99303170857305],[-87.74833088772327,41.99275157280821],[-87.74832988068667,41.99245983213615],[-87.74832948129772,41.991876770605984],[-87.74832866349863,41.9916286361456],[-87.74832777005793,41.99140270156979],[-87.74832776654041,41.99140196089306],[-87.74832666977446,41.99117951067718],[-87.74832908651223,41.9908151484677],[-87.74833070059809,41.99038176529987],[-87.74833023172738,41.99035399163018],[-87.74832578725295,41.990090800693224],[-87.74832591037392,41.989952697369894],[-87.74832595880888,41.989898637467554],[-87.74832601271916,41.989837993712996],[-87.74832617239818,41.98965905800159],[-87.74832256211808,41.989165523014904],[-87.74832252623132,41.98889626209555],[-87.74832251945982,41.98875852278572],[-87.74832250424333,41.98845675115801],[-87.74831603318096,41.98788597973507],[-87.7483136805959,41.987455951772425],[-87.74831058266915,41.986898424481126],[-87.74830902784849,41.98640536624748],[-87.74830992038912,41.98613838130509],[-87.74831276971611,41.985727485664825],[-87.74830934511479,41.98559195962192],[-87.74829945909727,41.985200723528514],[-87.74828817778365,41.9847335482744],[-87.74828286070591,41.98454123505641],[-87.74827987205711,41.984423465909444],[-87.74827723480385,41.98432436350517],[-87.74827549351727,41.98425892904811],[-87.74826988654986,41.98398752647324],[-87.74826003316262,41.983676890906764],[-87.7483654269912,41.983681244087855],[-87.74840368438021,41.98368214401184],[-87.74855939282632,41.983685806621985],[-87.74883644336514,41.98370642806777],[-87.74910330727019,41.983710484872745],[-87.7492310633327,41.98371242667234],[-87.74927828838868,41.98371314443847],[-87.74935598308666,41.98371551469848],[-87.74946206071799,41.98371875016852],[-87.74955438740636,41.983721566003005],[-87.74966499845685,41.98372493986992],[-87.74966904189444,41.98372532485778],[-87.74994259492243,41.98375136952326],[-87.75031798194215,41.98375729738551],[-87.75056762098318,41.98369780585576],[-87.750742084201,41.9836084461304],[-87.75099252017871,41.983461393006785],[-87.75128442476833,41.983284934173696],[-87.75132898073188,41.98325904103959],[-87.7513828371238,41.98322964925292],[-87.7514609569057,41.98319343759677],[-87.75146468627096,41.98319183742082],[-87.75160545569442,41.983142057537265],[-87.75162337572041,41.98313712645525],[-87.75177375501102,41.98309831698068],[-87.7518020580075,41.983092176136914],[-87.75193736425518,41.983080896756576],[-87.7519901675461,41.98308231673088],[-87.75204130042334,41.98308946360337],[-87.75213144306386,41.98310218659302],[-87.7522595724608,41.983139964259024],[-87.75243687537633,41.983225309428974],[-87.75245633118973,41.983234674495364],[-87.75263980921045,41.98335406991051],[-87.75272234558801,41.98340248346019],[-87.75279889026342,41.98343838053505],[-87.75286147008643,41.98346490410506],[-87.75291878847818,41.98348758687429],[-87.75300226889277,41.983513090641004],[-87.7530507018431,41.98352598623753],[-87.75312122798387,41.983544234903086],[-87.75322829539637,41.983568568215965],[-87.75326988270207,41.983577916549535],[-87.75337714548535,41.983592892984895],[-87.75353162190541,41.983613294327775],[-87.75363582956358,41.98362043411792],[-87.75372658450334,41.98362253888856],[-87.7537781577231,41.983621756469404],[-87.75381545632014,41.98362139592385],[-87.75387814306809,41.983607799532905],[-87.75392066635746,41.98359506126148],[-87.75398230098627,41.98357174475667],[-87.75400592342753,41.98356258884374],[-87.7540607863131,41.983531608969145],[-87.75406901112257,41.98352503694636],[-87.75414837472303,41.98346103097945],[-87.7541541995724,41.98345551708056],[-87.75419991818275,41.98339046318242],[-87.75421053190203,41.98337191104121],[-87.75422383798298,41.983340364966665],[-87.754235161988,41.983308369819646],[-87.75425799080647,41.98325689399187],[-87.7542812435042,41.98321140265612],[-87.75429019766281,41.9831933360922],[-87.75430803041876,41.98315742211703],[-87.75435480543679,41.983085375768134],[-87.75436784940257,41.98307056798199],[-87.75439256508038,41.9830422078174],[-87.75442721516649,41.982997185558034],[-87.75446508430655,41.98295003904267],[-87.75450027030743,41.98290674830971],[-87.75454082937334,41.98285903904916],[-87.75459875268545,41.98279056138159],[-87.75461164991813,41.9827756979431],[-87.75466996720266,41.9827083747892],[-87.75471437531537,41.98267017980484],[-87.75477232218516,41.982623436243024],[-87.75482180233,41.982585623524486],[-87.75489050540679,41.982541102025344],[-87.75495566954295,41.982505591078535],[-87.75503399838743,41.98246627708801],[-87.75518734971436,41.98241158945023],[-87.7552738489044,41.98238793067592],[-87.75535414425828,41.98236701252014],[-87.75541578324336,41.98235115948954],[-87.75546315090519,41.982339460659006],[-87.75554464504636,41.982328317762644],[-87.75558796051914,41.98232546225754],[-87.75565644589031,41.98232125152681],[-87.75568194779389,41.98231970588848],[-87.75574755343902,41.982316660619766],[-87.75575586600644,41.98231662011632],[-87.75586946227297,41.98233061073444],[-87.75591942686899,41.98234085095153],[-87.75596216613505,41.98235292086517],[-87.7559687618803,41.982355643355554],[-87.75600607270557,41.98237416226749],[-87.75605260599815,41.98239785920148],[-87.75609935302943,41.98242635954447],[-87.75612487673574,41.98244687730014],[-87.7561515386949,41.982471681727795],[-87.75620143304073,41.98251822725872],[-87.75622853199982,41.98255573951946],[-87.75624601731376,41.982586672246484],[-87.75626838405121,41.98263096632901],[-87.75627956016396,41.98268854097634],[-87.75628095597877,41.98275391487717],[-87.75626321817106,41.98284869276558],[-87.75624852672661,41.9829156597593],[-87.75624222977935,41.98295311389863],[-87.75623884283289,41.983002382732785],[-87.75623619469421,41.983047182231914],[-87.75623393504733,41.98308561713606],[-87.75624055161227,41.98317972162535],[-87.75625200545431,41.98323098600277],[-87.7562719269436,41.9833057833078],[-87.75628643235657,41.98335311137012],[-87.75630060805429,41.98339215028476],[-87.75631268345383,41.98342346743467],[-87.75632838926765,41.98346413311518],[-87.75633658352695,41.983485359535656],[-87.75636629776386,41.98355101296653],[-87.75640060692534,41.98361696390159],[-87.75653727849857,41.983800826112976],[-87.75671943103848,41.983978467737195],[-87.75676766654858,41.98401336926697],[-87.75680045738603,41.98403976824018],[-87.75685377877775,41.984077631845025],[-87.75687888604439,41.98409548546199],[-87.75689293294603,41.98410400813646],[-87.75692478861677,41.9841199198044],[-87.75695298055756,41.984142399151146],[-87.7569804433719,41.984164161338015],[-87.75701241434369,41.98419176385686],[-87.75705243096121,41.984224483527655],[-87.75709117807693,41.98425930984674],[-87.75714954485665,41.98432093570316],[-87.7572123637546,41.984394713240945],[-87.75724384848762,41.98443139655939],[-87.75726569057801,41.98446059469715],[-87.75730439890584,41.98452423485802],[-87.75731975437397,41.98455082088774],[-87.75733840109571,41.98458702813216],[-87.75733862369873,41.98458746832121],[-87.75735676735188,41.984623014430106],[-87.75737338657358,41.98465630264294],[-87.75738309468439,41.98469326085091],[-87.75738276644792,41.9847460027437],[-87.75736650816849,41.98479100839228],[-87.75734253580545,41.98482266595984],[-87.75731398783056,41.98484779680755],[-87.75727379081,41.98487583265563],[-87.75722888692032,41.98489970167422],[-87.75718922396574,41.98491736736829],[-87.75713517949023,41.98493924181816],[-87.7570811277726,41.98495779572329],[-87.75703116448977,41.98497571151935],[-87.75701603539085,41.98498112396931],[-87.75694673915655,41.98499748824361],[-87.7569017157285,41.98500604361925],[-87.75682102858455,41.98502926600561],[-87.75676975898433,41.98506150012885],[-87.75677011465062,41.98506284629904],[-87.75674693555482,41.98509214771186],[-87.7567313425985,41.98513265611986],[-87.75672452483022,41.98516673228871],[-87.7567109403951,41.98522514296934],[-87.7566953033058,41.98527053582669],[-87.75669718012297,41.98530303658807],[-87.75671260690469,41.98535432085787],[-87.75671874233839,41.985367331743824],[-87.75672930437341,41.9853911495712],[-87.75674428039463,41.985427173543094],[-87.75675369297656,41.98544793980662],[-87.75677002503458,41.98548043084151],[-87.7568538462156,41.98553793116594],[-87.75687107623195,41.985556513599384],[-87.7569243460106,41.98558801008462],[-87.75694839603254,41.985600809045245],[-87.75696833844876,41.98560820874506],[-87.75700968830351,41.985623701539325],[-87.75704960772191,41.98563874806584],[-87.7570602476612,41.985641710330256],[-87.75713430485217,41.985676658991295],[-87.7571665123379,41.98569443841092],[-87.75717064224357,41.98569736799114],[-87.75718728243874,41.985703872935034],[-87.7572115373224,41.98571027888177],[-87.75726289869672,41.98570869801795],[-87.75726740564005,41.98570652527411],[-87.75735977780622,41.985709101804666],[-87.75738998802099,41.985719955755805],[-87.75743156867503,41.9857384681763],[-87.75744672268222,41.98575067356351],[-87.75748971366956,41.98578815546204],[-87.75753733768651,41.9858462146427],[-87.75757744617518,41.98590558076802],[-87.7575958090214,41.98593322463429],[-87.75763370542944,41.98598909451074],[-87.75767705414958,41.98605226384575],[-87.75771796135511,41.9861087799572],[-87.7577725614894,41.986196813240426],[-87.75782326011608,41.9863056554159],[-87.75784591220251,41.98638795776665],[-87.75785289204418,41.98643793719749],[-87.75788017113223,41.98654559170064],[-87.75790286854763,41.986602455530736],[-87.7579166467849,41.986640888509605],[-87.75793828281994,41.98669717072973],[-87.757976887468,41.98676437758178],[-87.75799705702653,41.98679562506277],[-87.75803336335909,41.98686482391646],[-87.75805974541935,41.986933259259224],[-87.75808822925076,41.98699703998753],[-87.75811771449489,41.98711710926226],[-87.75812977296962,41.98714639541016],[-87.7581483435826,41.98718367236473],[-87.75819263497198,41.98724846529455],[-87.75826498935201,41.98732171398939],[-87.75830000054313,41.987359100443044],[-87.758395418122,41.9874608942122],[-87.75849425343704,41.9875507951889],[-87.758554664903,41.98759827047022],[-87.75859044102255,41.98762021109511],[-87.75861979972697,41.98763589024824],[-87.7586655438158,41.98766194216768],[-87.758704320758,41.98768559918256],[-87.7587466703991,41.98771322818361],[-87.75876451204101,41.987724867819736],[-87.75880599585963,41.98776247915584],[-87.7588483997717,41.98780412877999],[-87.7589101144958,41.98787035327663],[-87.75895355513448,41.98791944482923],[-87.75900771043365,41.98798779936628],[-87.75908738212256,41.98806144061517],[-87.75915744868259,41.988115248089755],[-87.75923403241289,41.98817644256793],[-87.759279680324,41.98820921704814],[-87.7593507100991,41.98824587797523],[-87.75941312055285,41.98826751243884],[-87.75943945222689,41.98827626086556],[-87.75950680328381,41.988296602761686],[-87.75954063741314,41.98830549843502],[-87.75959545366786,41.98830854432841],[-87.75967264966651,41.988301657715894],[-87.75978326735599,41.98826766097291],[-87.75983181112598,41.988252371331],[-87.75989617234494,41.98822470201703],[-87.75994677834298,41.98820094305185],[-87.75998710121486,41.988183581574376],[-87.76004194719503,41.988162807478595],[-87.76009528446487,41.98814619700568],[-87.76015703380367,41.98813083623162],[-87.7601852536151,41.98812592752784],[-87.76023497440252,41.988118821305385],[-87.76025793840591,41.98811344754755],[-87.76031421672316,41.988101105163615],[-87.76038834049983,41.988075816872446],[-87.76043665931525,41.98806096958819],[-87.76044436805486,41.98805861621452],[-87.76050490627516,41.988038830498965],[-87.76057291929745,41.98801820417665],[-87.76063715425157,41.98798892434248],[-87.76448882627129,41.995418339398405],[-87.76507406066136,41.99654067749942],[-87.765487215526,41.99734160694878],[-87.76549192493961,41.99735073630778],[-87.76640192586734,41.999098528681536],[-87.76749699723705,42.001212158520744],[-87.76750443909657,42.00122645814905],[-87.76949497818158,42.00505103886255],[-87.7694949752504,42.00505103747605],[-87.7691852761348,42.004889134294565],[-87.76917090023302,42.00486130449465],[-87.76887942294721,42.00472923982313],[-87.76881912780215,42.00470192071268],[-87.76875416220784,42.004672485604395],[-87.7687409426264,42.00466649587448],[-87.76872928561855,42.0046612144209],[-87.76854421879692,42.00457797797201],[-87.76841504910314,42.00451872641859],[-87.76834297370975,42.00448538622772],[-87.76827089801917,42.00445204653886],[-87.76822630427797,42.004431410225585],[-87.7681416246603,42.00439213556066],[-87.76806984702546,42.00435835814207],[-87.7679927256086,42.00432156264233],[-87.76789064153766,42.00426996297704],[-87.76788639163048,42.004267971712494],[-87.76787206160346,42.00426125880609],[-87.76785858603198,42.004254946093994],[-87.76785458784124,42.004253073245266],[-87.76783546229981,42.00424823157512],[-87.76781524819691,42.004245744544136],[-87.76778518470492,42.00424218814453],[-87.76778014833275,42.00424159253924],[-87.76774081754283,42.00423741995151],[-87.76771531146048,42.00423013165959],[-87.76760850519557,42.0041801001061],[-87.76750064217681,42.004129764401426],[-87.76749356355911,42.00412646090149],[-87.76742163746081,42.004092901880284],[-87.767290097755,42.004031496629885],[-87.76718127500438,42.0039807412444],[-87.76708476391043,42.00393569952425],[-87.76701192736915,42.0039011750129],[-87.766928508356,42.0038609729194],[-87.76684948532068,42.003822932105805],[-87.76675833672525,42.00377901479978],[-87.76665596935877,42.003730568456554],[-87.7665519116237,42.0036819487496],[-87.7664675636896,42.003642839136155],[-87.765934657072,42.003395753608075],[-87.76579496678123,42.003325243382456],[-87.76579496082654,42.003325251036756],[-87.76571289274791,42.00343949733508],[-87.76564520740023,42.0035208846688],[-87.76560515445418,42.00356903925061],[-87.7655527911329,42.00363206133432],[-87.76547792565738,42.00372211076849],[-87.76547748904618,42.00372263631678],[-87.76547495419295,42.003725685197885],[-87.7654749467568,42.00372569394252],[-87.7654668821599,42.003735393734225],[-87.76548505956819,42.00374396348461],[-87.76555188438631,42.00377546778537],[-87.76567037814343,42.003830773290794],[-87.76570782344174,42.00384830202887],[-87.76578887051514,42.00388613355058],[-87.76585123332093,42.00391525506144],[-87.76585670878565,42.003917814745],[-87.76590736493263,42.00394149369786],[-87.7659945680644,42.003982209464],[-87.76602585919825,42.003996852624105],[-87.76608846726533,42.004026055897135],[-87.76610482058545,42.00403368405877],[-87.76613812411108,42.00404921856679],[-87.76614190521792,42.00405100258852],[-87.76614435304413,42.00405215763949],[-87.76626292203187,42.00410751751289],[-87.76628153440889,42.00411622594638],[-87.76638141506453,42.00416287743721],[-87.76642066550184,42.004181183506006],[-87.76642494365166,42.004183178806144],[-87.76649991063502,42.00421818181878],[-87.76656842848345,42.00425018838989],[-87.76661840629973,42.00427354013877],[-87.7666727562588,42.00429891506263],[-87.76671191179508,42.00431719586539],[-87.76671721215115,42.00431967780606],[-87.76672596252958,42.00432377636548],[-87.76673690032388,42.00432889915129],[-87.76679273843139,42.00435495972786],[-87.76681440733917,42.004365073093304],[-87.76685539687823,42.00438420344427],[-87.76699873411074,42.00445115577892],[-87.7670618695686,42.00448064926187],[-87.76712946864993,42.00451222808491],[-87.76718340459585,42.004537410826195],[-87.7671927825168,42.00454178055256],[-87.76721923849163,42.00455410786494],[-87.76727408551815,42.00457974400651],[-87.76727757700799,42.004581375906426],[-87.7673196342787,42.004601034125],[-87.76746603631263,42.00466938515719],[-87.76754347406428,42.004705538231676],[-87.76753849239743,42.004931306051446],[-87.76753426320771,42.00511794539848],[-87.7675318083621,42.00522724131089],[-87.76753180828914,42.005227249543104],[-87.76753043583582,42.00528834083147],[-87.76752935681078,42.005335665956586],[-87.7675281493253,42.005388602594174],[-87.76752717857708,42.00543184599288],[-87.76752505761799,42.005525796654304],[-87.76752436081847,42.0055569740949],[-87.76752408064353,42.005569534524575],[-87.76752271082003,42.00563007780715],[-87.76752196626451,42.0056629904384],[-87.76752185677495,42.00566791435014],[-87.76752098538715,42.00570716818223],[-87.76751887451931,42.005800185040464],[-87.76751863031632,42.005810844745575],[-87.76751785099668,42.005844856527446],[-87.76751574485733,42.00593738000112],[-87.76751500597787,42.00597085521775],[-87.76751475572162,42.00598248853174],[-87.76751265308388,42.006074574047496],[-87.76751162387069,42.00612017715713],[-87.76750955945433,42.00621176808136],[-87.76750852597719,42.006257810239426],[-87.76750646813171,42.00634890751384],[-87.76750539372003,42.00639549940489],[-87.767503338413,42.00648610136309],[-87.76750229690187,42.0065331319369],[-87.76750024656366,42.00662329649334],[-87.76750011948573,42.00662933281254],[-87.76749920079321,42.0066707655667],[-87.7674979381154,42.00672614507275],[-87.76749715507303,42.00676049079873],[-87.76749606665604,42.00680845361507],[-87.76749406356831,42.00689768482629],[-87.76749297124752,42.00694608751599],[-87.76749097131123,42.007034878846774],[-87.76748987461478,42.00708377464479],[-87.76748981179955,42.0070867940426],[-87.76748787756352,42.007172073130974],[-87.76748737945003,42.00719444351312],[-87.76748677880757,42.007221408262566],[-87.76748478599953,42.00730926824584],[-87.76748364496906,42.007359096573296],[-87.767482406359,42.00741453820988],[-87.76748169418167,42.0074464071002],[-87.76748054912612,42.00749673045855],[-87.76748012227581,42.00751541821263],[-87.76747856469555,42.00758360119814],[-87.76747741526633,42.007634417390314],[-87.76747590773573,42.00770143598671],[-87.76747547235338,42.007720795475855],[-87.76747431902461,42.00777205099243],[-87.76747238073538,42.007857989204915],[-87.76747166396721,42.00788900462689],[-87.76747118474884,42.007909739561896],[-87.76746652831288,42.00811584371454],[-87.76746519230804,42.00817496372488],[-87.76746186858406,42.00832165092201],[-87.76719435603555,42.008319419412004],[-87.76718843106657,42.008319369882756],[-87.76717915945743,42.00831929780986],[-87.76714650171016,42.008319041234266],[-87.7671318452223,42.00831892585727],[-87.76709350749479,42.00831862697976],[-87.76698222020778,42.008317681146494],[-87.76684729746917,42.0083165340446],[-87.76671265178881,42.00831542958901],[-87.76666274865325,42.00831502024034],[-87.7666079670466,42.008314554951816],[-87.76654310300106,42.00831400390466]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4428303.12475","perimeter":"0.0","tract_cent":"1165578.68637483","census_t_1":"17031070800","tract_numa":"26","tract_comm":"7","objectid":"709","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1915053.73995506","census_tra":"070800","tract_ce_3":"41.92250114","tract_crea":"","tract_ce_2":"-87.66703399","shape_len":"10731.5497322"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66322698440722,41.9225088168831],[-87.66322115328164,41.922331478472806],[-87.6632177373429,41.92223014174634],[-87.66321237019943,41.9220543976856],[-87.66320999257735,41.921976530139766],[-87.66319747424934,41.92162024785092],[-87.6631913343583,41.92144549596361],[-87.66318431325394,41.92121400700321],[-87.66317906567377,41.92104128253088],[-87.66317861082548,41.92084041545044],[-87.663185016945,41.920740989198066],[-87.66316438075852,41.92058391001353],[-87.66315767484194,41.92033597369183],[-87.66315448150854,41.92017415548538],[-87.66315223519602,41.920058747666125],[-87.66315186422113,41.920034294445855],[-87.66314912425874,41.91985362576835],[-87.66314627842728,41.91966590435442],[-87.66314299262181,41.91948125362555],[-87.66313313463176,41.91940720515612],[-87.66310482426833,41.91901491298921],[-87.66309587226414,41.918646181284636],[-87.66309170362291,41.91846954235339],[-87.66309256518187,41.918234641555344],[-87.6630952357225,41.91791078291425],[-87.6630618217357,41.917845467632795],[-87.66305444986249,41.91779071458901],[-87.66304426427591,41.91771506923367],[-87.66304881992343,41.91742017371716],[-87.66304651009563,41.917374057213244],[-87.66305368192221,41.917059936622806],[-87.6632919765934,41.91705893333871],[-87.66340850453095,41.917056961239325],[-87.66360856787615,41.917053188691874],[-87.66371778823088,41.917050999123276],[-87.6637937201965,41.917048780005345],[-87.66388753509436,41.91704060035593],[-87.66406336551124,41.91700194271177],[-87.66425682804037,41.916958377403986],[-87.6642973780434,41.91711941581472],[-87.66444513190815,41.91755438597201],[-87.6644724823453,41.917602294850504],[-87.66453455730321,41.917702710955226],[-87.6646019431085,41.917801236996084],[-87.6646744944564,41.917897680021774],[-87.66475210367665,41.91799190218434],[-87.66495784755443,41.91815177119165],[-87.66501569875193,41.91820440081593],[-87.6652070053961,41.91837843995504],[-87.66523896855327,41.91840751825478],[-87.66542629352682,41.91858824651065],[-87.66572184695096,41.91893000547957],[-87.665769949576,41.918999988510386],[-87.66606435528604,41.919428427007105],[-87.66607058072258,41.91943749169012],[-87.66631392520908,41.919803791638536],[-87.6663515984031,41.91986050038073],[-87.6664625890377,41.92002755493428],[-87.66673389658847,41.920289557390745],[-87.66682758978305,41.920380035065136],[-87.6669239017645,41.92047304157213],[-87.66717680924437,41.920720501546334],[-87.66733892889405,41.92087909777059],[-87.66753515741526,41.921146370798176],[-87.66755631164379,41.92117552297779],[-87.6675564087295,41.92117565663568],[-87.66767813935883,41.921343412210604],[-87.66782015989662,41.921577505068115],[-87.66809607152634,41.922029749951534],[-87.66814270244006,41.92205436138382],[-87.66826484353685,41.92212150660684],[-87.6683660814189,41.92217052852633],[-87.66850256048808,41.92219817519405],[-87.66892530414415,41.92228380921221],[-87.66916196318883,41.92234916931774],[-87.66921444755957,41.922366299385594],[-87.66928497829805,41.92238888064661],[-87.66950967342567,41.922413835121354],[-87.66975772522764,41.92240813393121],[-87.67015119924885,41.922372342049954],[-87.67043248843204,41.922378908977436],[-87.67062687553269,41.922383972044344],[-87.67088909414622,41.922376039535585],[-87.67111167939608,41.9224111756966],[-87.67165006085153,41.922550749806305],[-87.6718871262803,41.922658920946546],[-87.67216130359891,41.92280641051285],[-87.67249347892768,41.92304831049293],[-87.6728669230975,41.92332026015731],[-87.67297374320417,41.923398048195516],[-87.67334528403423,41.9236934871646],[-87.67345951038541,41.92378429119045],[-87.67376691632928,41.92399582625257],[-87.67411970929076,41.92428198928989],[-87.67425507051844,41.92439025763057],[-87.67442009748979,41.92462959557162],[-87.67446482018235,41.924836519764234],[-87.6744762117766,41.92506833159853],[-87.67396337194776,41.92507512203681],[-87.67391672117625,41.92507573941868],[-87.67341192217225,41.925082420443815],[-87.6732717327493,41.92508413575583],[-87.67277086792366,41.92509026276079],[-87.67266267308969,41.925091585924335],[-87.67250703906987,41.925093898863004],[-87.67177685050989,41.9251047470111],[-87.67175328233053,41.92510509721996],[-87.67169137483957,41.925106016567526],[-87.67164742564461,41.92510666945079],[-87.67162037665057,41.9251070711975],[-87.67159781154503,41.92510732534442],[-87.6712263689971,41.92511150290499],[-87.6707767107551,41.92511655890884],[-87.67063963985498,41.9251180999245],[-87.66971981415173,41.92513054257463],[-87.66930752209313,41.9251361158557],[-87.6691330337379,41.92513847462114],[-87.66868330061394,41.925144552722884],[-87.66853811515772,41.925146451500304],[-87.668145814809,41.92515157982746],[-87.6673944548065,41.925161398747534],[-87.66698915140863,41.925167202093604],[-87.66640971556285,41.92517549654072],[-87.66576854880898,41.92518349970585],[-87.66538214284093,41.92518832135617],[-87.6648135754608,41.925197471187516],[-87.66457389547793,41.92520056829899],[-87.66403914289933,41.92520747656399],[-87.66332744603542,41.92521779698108],[-87.66330736577963,41.924786278766426],[-87.66330707031659,41.924777816874354],[-87.66328545574282,41.92415851942428],[-87.66327580841278,41.9238850837779],[-87.66326332091994,41.92353117033252],[-87.66325866356921,41.92341933658509],[-87.66325125078862,41.923241364662616],[-87.66323943417986,41.92288523254322],[-87.66322698440722,41.9225088168831]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"19824694.1449","perimeter":"0.0","tract_cent":"1150767.98046686","census_t_1":"17031130100","tract_numa":"49","tract_comm":"13","objectid":"699","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1939944.21252652","census_tra":"130100","tract_ce_3":"41.99110528","tract_crea":"","tract_ce_2":"-87.72079967","shape_len":"20294.5363495"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72734044334864,41.98282715550046],[-87.72790782086065,41.98282606029315],[-87.72843257411627,41.98283153068447],[-87.72843766481478,41.98305612802791],[-87.72846094156674,41.98385714541092],[-87.7284736182702,41.98430484631487],[-87.72847740566174,41.98443859083494],[-87.7284908306225,41.9849127217242],[-87.72849928479607,41.98521147261588],[-87.72850745608295,41.98551785059972],[-87.7285155864145,41.985895906822265],[-87.7285222441041,41.98620548723239],[-87.72852619783808,41.986339589878206],[-87.7285307489155,41.98649219129101],[-87.72853315587224,41.986572795042484],[-87.72853644645988,41.986682998255354],[-87.72854089871238,41.98689267818768],[-87.72854627207184,41.98712162751042],[-87.72855186301317,41.98733147807739],[-87.7285554794949,41.98748334677817],[-87.72856365484257,41.987826648664736],[-87.72856869677354,41.988055651087585],[-87.72857469296527,41.98828487806416],[-87.72857814678903,41.98840303094597],[-87.72858250087175,41.98855198450082],[-87.72858654049983,41.988693706807105],[-87.72859067459164,41.98883874130476],[-87.72859943534415,41.9891450947544],[-87.72860920127336,41.98948904925617],[-87.72862557066975,41.989865968335536],[-87.72862391935183,41.98998991500722],[-87.72864024214904,41.99013543902738],[-87.7286503104704,41.990225204243515],[-87.72866865854017,41.99030370258903],[-87.72876758060683,41.9906058931319],[-87.7288140294763,41.990739148947746],[-87.72882698465226,41.990815108471025],[-87.72883511435427,41.99086277653556],[-87.72886435165019,41.991213364086256],[-87.72886474623249,41.991301125558536],[-87.7288656313473,41.99149799884994],[-87.72886898575875,41.991917731959205],[-87.728870819274,41.99214713827388],[-87.72887208493694,41.992242752718546],[-87.7288744754655,41.99245275088552],[-87.72887600712025,41.992586346666975],[-87.72887794723135,41.99275841794258],[-87.72887944905617,41.99293015760178],[-87.72888215853729,41.99329306425821],[-87.72888325201173,41.993445757036916],[-87.72888491093097,41.99369194724058],[-87.72888672547722,41.99396119003943],[-87.72888726172158,41.99404887043891],[-87.72823186775638,41.994948257074775],[-87.72785774749129,41.99546219319002],[-87.72641981408385,41.997248695990365],[-87.72607358847644,41.99724999223595],[-87.72522190146486,41.99725317638543],[-87.72402355287028,41.997257645806116],[-87.7227883238457,41.99726223971077],[-87.72152703566775,41.99726691661549],[-87.72029710503466,41.99727146392566],[-87.71906456416247,41.99727600796319],[-87.71906237444915,41.997276016003894],[-87.71906086755111,41.99727602138679],[-87.71870529147981,41.997277329891304],[-87.71858399121164,41.99727777583485],[-87.71858397686233,41.997277776032426],[-87.71819018822292,41.997281019313334],[-87.71819015327061,41.997281019674865],[-87.71796429822979,41.997282879079094],[-87.71796428056706,41.99728287953325],[-87.71758735493589,41.99728596279315],[-87.7170910626394,41.99728788268088],[-87.71695038408318,41.99728848658422],[-87.71673891097309,41.9972893941984],[-87.71621668509356,41.997291622148154],[-87.71603288234219,41.99729240553755],[-87.71603287903142,41.99729240551975],[-87.71551146845044,41.99729728416317],[-87.71466961377584,41.9973051591002],[-87.71436839076304,41.99730797511451],[-87.71428686055079,41.99730874291514],[-87.7139546216119,41.99731293336287],[-87.71368135027285,41.99731760555046],[-87.713407638962,41.99732208261789],[-87.71305993778206,41.997327448751776],[-87.71276845790248,41.99733193832401],[-87.71254194309418,41.997336695902995],[-87.71230143544477,41.9973390719376],[-87.71206308499286,41.99734277690451],[-87.71173473384626,41.99734810681193],[-87.71173472427914,41.99734810703453],[-87.71169325261357,41.997348774595025],[-87.71167821820248,41.99734901644318],[-87.71159697659212,41.997350324227455],[-87.71078055277499,41.99736357255881],[-87.71075653622671,41.99736403093635],[-87.71067090327703,41.997365666602796],[-87.71067089518402,41.9973656665589],[-87.71067089024773,41.997365493648005],[-87.71066884675636,41.99729359295718],[-87.71066053163167,41.99722576630203],[-87.71064652999831,41.99711482497839],[-87.71063494873464,41.99707637090338],[-87.71063126941476,41.99703491363852],[-87.71063173504909,41.99702111287628],[-87.71064107162881,41.99701057094017],[-87.71064185068785,41.99700612957439],[-87.71062894272806,41.996790558115016],[-87.71062465140523,41.996702446253664],[-87.71058348562694,41.99638546077343],[-87.71054282807269,41.99608815388209],[-87.71051198550305,41.99582931891688],[-87.71049568577617,41.995727750220524],[-87.71047944128787,41.99566956751298],[-87.71047247955464,41.99562902133246],[-87.71046262785718,41.99557164552441],[-87.71042659693092,41.99538849492776],[-87.71040533855678,41.995293677461085],[-87.71039769192816,41.99524034373242],[-87.71038204487542,41.99514355344826],[-87.71035715234851,41.99501781662951],[-87.71035514739111,41.994966900960804],[-87.71034398513417,41.99490443742413],[-87.71032174228772,41.994804976904575],[-87.71029140617956,41.994698035688515],[-87.7102677638056,41.99458748101704],[-87.71024077082417,41.99449233024569],[-87.71020097639875,41.99431042144664],[-87.71018563883887,41.99423852263835],[-87.71017548390451,41.99412181183442],[-87.71016497483498,41.99402255217785],[-87.7101191576995,41.99384873208324],[-87.71011439256498,41.99383065435656],[-87.71010740149092,41.9938041310879],[-87.71007254050566,41.99370106198596],[-87.71004674288835,41.9935928006722],[-87.70999699241646,41.99341344442755],[-87.7099775263786,41.99334245591455],[-87.70992230421533,41.99311694028636],[-87.70989397008066,41.99297775756644],[-87.70988804365474,41.9929486448782],[-87.70985220794662,41.99280984099017],[-87.70981679660237,41.99272556653702],[-87.70973528792462,41.992419475123015],[-87.70969890426889,41.99230295133369],[-87.70966415707834,41.99218083798985],[-87.70963290880827,41.99207803890014],[-87.70962751853277,41.99206030598986],[-87.70957827448606,41.99190090256739],[-87.70956812150115,41.99184818657409],[-87.70954888543841,41.991765042436654],[-87.70953885970276,41.99171866292831],[-87.70951601307799,41.991612972616025],[-87.70938481672768,41.991405195808106],[-87.70937666060752,41.99135930201395],[-87.70936857735323,41.99129721072887],[-87.7093542244407,41.991241567975464],[-87.70933921907465,41.9911966503786],[-87.70933051469257,41.991171493677676],[-87.70931326434565,41.99113742677022],[-87.70927972288597,41.991012520762375],[-87.70925261800564,41.99090652979845],[-87.70921534688479,41.99077559370295],[-87.70918061370313,41.990667283561834],[-87.70915661424488,41.9905860895387],[-87.70914708871611,41.99053321198246],[-87.70909330999955,41.99038472942875],[-87.70914483120106,41.99038397035618],[-87.7096320648977,41.99037756277385],[-87.70978549515736,41.99037724372355],[-87.71012999805812,41.99037159539679],[-87.71050560750761,41.99036726737314],[-87.71101913723889,41.99036199682995],[-87.71143277371475,41.990357749797354],[-87.71163765071694,41.990355127428124],[-87.71169002164291,41.99035436221024],[-87.71196099343284,41.99035040180063],[-87.71235015539848,41.99034441225491],[-87.71276345967061,41.99033908949106],[-87.71318452633842,41.99033366502412],[-87.71340617809153,41.99033091058226],[-87.71372978154962,41.99032582463445],[-87.71398416226826,41.99032255171863],[-87.71443610406634,41.990319089153616],[-87.71455234395151,41.990315113491185],[-87.71520330060117,41.99030886187172],[-87.71568911892611,41.9903041939807],[-87.71642256609995,41.99029372262349],[-87.71691501166117,41.990286689200865],[-87.7176424932921,41.990277883257974],[-87.7182029770888,41.99027109559533],[-87.71886171723008,41.99026255157782],[-87.71885202283657,41.98981716905083],[-87.71885030552951,41.989756649779885],[-87.71883960554008,41.9893795404594],[-87.71882822493427,41.9889794305527],[-87.71881861472704,41.988655399232826],[-87.71881145216747,41.9883955400489],[-87.7187954094474,41.987813519995285],[-87.7187858012551,41.9874892690828],[-87.71878252543706,41.98737476362772],[-87.71877722980595,41.98718343726744],[-87.71877075126118,41.986954481617666],[-87.71875916592265,41.98657637890849],[-87.71875199481865,41.986342342759855],[-87.71874500571765,41.98611294527054],[-87.71873830693639,41.9858839609558],[-87.71873120795938,41.985616281292835],[-87.71872712168194,41.98546368198667],[-87.71871895538344,41.9851960789153],[-87.71871141511565,41.98494752392141],[-87.71870617211141,41.98476039665839],[-87.7186980526061,41.984470620402554],[-87.7186957035,41.98438663533927],[-87.71869164842973,41.984241665039875],[-87.71868612700365,41.98405091364535],[-87.71868053257438,41.983860106969466],[-87.718673134387,41.98361210151668],[-87.71866860309028,41.98344078433359],[-87.7186673663637,41.983394647446005],[-87.7186551776413,41.98293996163137],[-87.71938205064733,41.98292946101274],[-87.71980157696062,41.982924184807],[-87.72028084162963,41.98291810125481],[-87.72090323870839,41.98290976021153],[-87.72168506052469,41.98289927442122],[-87.72213316994696,41.98289342848976],[-87.72273275664291,41.982885752170546],[-87.72299201054054,41.982882740105495],[-87.72354178175212,41.9828766607538],[-87.72370319169235,41.98287461521257],[-87.72395807080606,41.982871381248614],[-87.72458807712563,41.98286338854761],[-87.72473690740011,41.98286143346003],[-87.72500679524927,41.98285792437909],[-87.72560682034079,41.98284991182843],[-87.72638257639346,41.98283954826096],[-87.72698006624408,41.98283181122663],[-87.72734044334864,41.98282715550046]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7794513.63548","perimeter":"0.0","tract_cent":"1152800.07248899","census_t_1":"17031130300","tract_numa":"33","tract_comm":"13","objectid":"700","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1938301.76056254","census_tra":"130300","tract_ce_3":"41.98655818","tract_crea":"","tract_ce_2":"-87.7133688","shape_len":"11333.3120379"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70850546992337,41.98853518250996],[-87.70849591901751,41.988524177064534],[-87.7084965186702,41.988524281040476],[-87.70849474368933,41.98852211910596],[-87.70848065822517,41.98849177395102],[-87.70850841505388,41.98847068495281],[-87.7085179693382,41.98842274096039],[-87.70849850965271,41.988358942243174],[-87.70848956354772,41.988307083119665],[-87.70847977893997,41.988239412858995],[-87.70847068144786,41.98818799198041],[-87.70844852674345,41.988144018849304],[-87.70842497450761,41.98805865617026],[-87.70838755991173,41.9879577679182],[-87.70835874686925,41.98789131126586],[-87.70834279615417,41.98781853065519],[-87.70833863768014,41.9877773725061],[-87.70832888213059,41.98775564023843],[-87.70831479692428,41.987732814159926],[-87.70831059741843,41.98770337350602],[-87.70829980421898,41.98766739320474],[-87.70830678041312,41.98763107058067],[-87.70829273814876,41.987577537170516],[-87.70826587075047,41.987537819561695],[-87.70827689281958,41.98750151896846],[-87.70828327946565,41.987480341101424],[-87.70824846885117,41.98744796212743],[-87.70822956465994,41.987398875274764],[-87.7082160280439,41.98735382417514],[-87.70820846492309,41.98729599020284],[-87.70820635043212,41.987248943152466],[-87.70818917152127,41.98717014603317],[-87.70816844884568,41.98709264682604],[-87.70815606058481,41.98703925961182],[-87.70813835653836,41.986995310925415],[-87.70811897048164,41.98695417959829],[-87.70809841705183,41.986908267006555],[-87.70807660222727,41.98685598072866],[-87.70805035187792,41.98679456010067],[-87.70803612090265,41.98674584196452],[-87.70803625226169,41.98674583719164],[-87.70802995888,41.98672474641179],[-87.70802737116183,41.98671607355083],[-87.70802451384512,41.98670649720364],[-87.7080182062316,41.98668535804762],[-87.70797963640061,41.986616213435695],[-87.70795541057461,41.98655845359466],[-87.7079437691337,41.98652274305205],[-87.70789510574994,41.986488998725555],[-87.70784809260668,41.98647079552673],[-87.7077952041525,41.986485408335426],[-87.70777010215599,41.986487110161384],[-87.70775725737309,41.98643907159617],[-87.70776739063452,41.986403397367],[-87.70779607436221,41.98637773077397],[-87.70784487663698,41.986367211996345],[-87.70787583743483,41.98634564664424],[-87.70786387326392,41.9862790343968],[-87.70782848446427,41.986140479414786],[-87.70782208109179,41.98602809707825],[-87.7077800168084,41.985898918024915],[-87.70775796387355,41.98583716317326],[-87.70773508640012,41.98575443815334],[-87.70771855403954,41.98568483780466],[-87.70769699613221,41.98564391382314],[-87.70766688792713,41.98557091872369],[-87.70763102437671,41.98547717355286],[-87.70759579229339,41.98539031974798],[-87.70756433376508,41.98530875536107],[-87.70753286476115,41.985235780246754],[-87.70750723133753,41.985167858544116],[-87.7075100325107,41.985058353149505],[-87.70750885906747,41.98495283233961],[-87.70747557715995,41.98487221625628],[-87.70747515786998,41.98487120081245],[-87.7074396290074,41.98479592584919],[-87.70741831549343,41.98472638143026],[-87.70740153016887,41.984660099850444],[-87.70739267875074,41.98459495920725],[-87.70735482096984,41.98452090613063],[-87.70731993047985,41.98445183704409],[-87.70730872745581,41.98441255971156],[-87.7073087267498,41.984412556689094],[-87.70730872533511,41.98441255091856],[-87.70728835368482,41.9843411282642],[-87.7072797359652,41.9843249453813],[-87.70726116292852,41.984284534836135],[-87.70726095909161,41.984284091634116],[-87.7072484653711,41.98422282787334],[-87.70722625687944,41.98415078131079],[-87.7072125194634,41.98408882471201],[-87.70720131005443,41.984050399679916],[-87.70718579027171,41.983978910986814],[-87.70716580141708,41.983931848722655],[-87.70713196900546,41.983822417634855],[-87.70709640834957,41.983731719983645],[-87.70707320008758,41.98363411944285],[-87.70702462720257,41.98353511818382],[-87.70700999868596,41.983466543174174],[-87.70701082548385,41.98342346376544],[-87.7069800175357,41.983354498614645],[-87.70695675713424,41.98326224894751],[-87.70694307408213,41.98320229586933],[-87.7069302835399,41.983148851410256],[-87.70690177438165,41.983080467376986],[-87.7069382050394,41.98308020349499],[-87.70696166907393,41.98308003322986],[-87.70725313849643,41.983081349059866],[-87.70768963464657,41.983078569682974],[-87.7079208493109,41.98307697559421],[-87.7081605945868,41.98307569697683],[-87.7082924947463,41.983074993166746],[-87.7085720493292,41.98307231629537],[-87.70887663649168,41.98306763443837],[-87.70909285916063,41.98306430991759],[-87.70932435326202,41.98306806570922],[-87.7094691740892,41.98306624583426],[-87.70971182161648,41.98306149955581],[-87.71007191577785,41.983056424782916],[-87.71027823862795,41.983053516008354],[-87.71071329608773,41.98304736940183],[-87.71097517521999,41.983043054059735],[-87.71130150510335,41.98303911398306],[-87.71146929953048,41.98303708758389],[-87.71191774724704,41.98303067964282],[-87.71217929232591,41.98302666160707],[-87.71252152791692,41.983022005562056],[-87.71293411823855,41.98301639121156],[-87.71332237360905,41.98301203992431],[-87.71361428263208,41.98300969191657],[-87.71374168063727,41.98300816364353],[-87.7141554164251,41.98300319926518],[-87.71447392781688,41.98299597066676],[-87.71495875345241,41.98298943740111],[-87.71555143083862,41.982981192779235],[-87.71617608995017,41.98297281435094],[-87.71653715228022,41.98296797010564],[-87.71680681880987,41.98296461605202],[-87.71742700934267,41.98295633826436],[-87.71776432525687,41.982951834756],[-87.71806521787006,41.98294848080434],[-87.7186551776413,41.98293996163137],[-87.7186673663637,41.983394647446005],[-87.71866860309028,41.98344078433359],[-87.718673134387,41.98361210151668],[-87.71868053257438,41.983860106969466],[-87.71868612700365,41.98405091364535],[-87.71869164842973,41.984241665039875],[-87.7186957035,41.98438663533927],[-87.7186980526061,41.984470620402554],[-87.71870617211141,41.98476039665839],[-87.71871141511565,41.98494752392141],[-87.71871895538344,41.9851960789153],[-87.71872712168194,41.98546368198667],[-87.71873120795938,41.985616281292835],[-87.71873830693639,41.9858839609558],[-87.71874500571765,41.98611294527054],[-87.71875199481865,41.986342342759855],[-87.71875916592265,41.98657637890849],[-87.71877075126118,41.986954481617666],[-87.71877722980595,41.98718343726744],[-87.71878252543706,41.98737476362772],[-87.7187858012551,41.9874892690828],[-87.7187954094474,41.987813519995285],[-87.71881145216747,41.9883955400489],[-87.71881861472704,41.988655399232826],[-87.71882822493427,41.9889794305527],[-87.71883960554008,41.9893795404594],[-87.71885030552951,41.989756649779885],[-87.71885202283657,41.98981716905083],[-87.71886171723008,41.99026255157782],[-87.7182029770888,41.99027109559533],[-87.7176424932921,41.990277883257974],[-87.71691501166117,41.990286689200865],[-87.71642256609995,41.99029372262349],[-87.71568911892611,41.9903041939807],[-87.71520330060117,41.99030886187172],[-87.71455234395151,41.990315113491185],[-87.71443610406634,41.990319089153616],[-87.71398416226826,41.99032255171863],[-87.71372978154962,41.99032582463445],[-87.71340617809153,41.99033091058226],[-87.71318452633842,41.99033366502412],[-87.71276345967061,41.99033908949106],[-87.71235015539848,41.99034441225491],[-87.71196099343284,41.99035040180063],[-87.71169002164291,41.99035436221024],[-87.71163765071694,41.990355127428124],[-87.71143277371475,41.990357749797354],[-87.71101913723889,41.99036199682995],[-87.71050560750761,41.99036726737314],[-87.71012999805812,41.99037159539679],[-87.70978549515736,41.99037724372355],[-87.7096320648977,41.99037756277385],[-87.70914483120106,41.99038397035618],[-87.70909330999955,41.99038472942875],[-87.7090790701979,41.990345413564846],[-87.70905941489826,41.990301481874624],[-87.70903185440353,41.99024222201988],[-87.70900085670652,41.99015824570356],[-87.70898175808625,41.99008374668671],[-87.70897611067468,41.9899577573887],[-87.70894367978356,41.9898284940278],[-87.70891369413664,41.989753908336766],[-87.70889610120614,41.98963828199482],[-87.70888685951266,41.9895827440827],[-87.70887583376317,41.9895253304113],[-87.708863107373,41.98948385126552],[-87.70886298679896,41.989454789574474],[-87.70882729472073,41.98943722464846],[-87.70882041473382,41.98939970150293],[-87.7087980035398,41.98932921839323],[-87.7087716628557,41.98928066746776],[-87.7087579374457,41.989224748402115],[-87.7087393686474,41.989129972607095],[-87.70872775975684,41.98907955344455],[-87.70871067207854,41.98899883598582],[-87.70869493509433,41.9889455129511],[-87.70868838869694,41.98889649342768],[-87.7086615005203,41.9888400087674],[-87.70864313472322,41.98879221469567],[-87.70861253139631,41.988728218150115],[-87.70859092564541,41.98867321664289],[-87.70856402546693,41.98862930031174],[-87.70853331133506,41.98856909013139],[-87.70850546992337,41.98853518250996]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"16257473.2229","perimeter":"0.0","tract_cent":"1139814.54192823","census_t_1":"17031110500","tract_numa":"85","tract_comm":"11","objectid":"701","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1933631.84544647","census_tra":"110500","tract_ce_3":"41.97399156","tract_crea":"","tract_ce_2":"-87.76124478","shape_len":"18197.3594932"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76185300189253,41.980775474513266],[-87.76172826458827,41.98068330798219],[-87.76163608202592,41.98075082258587],[-87.7615930617773,41.98078233050094],[-87.7614856587944,41.980861432040626],[-87.7613558946236,41.98095694271781],[-87.7612126130626,41.981064738909694],[-87.76105317914528,41.980967947632],[-87.7608771357651,41.980859277627296],[-87.76067687955528,41.980735640435036],[-87.76055113020041,41.98065798331356],[-87.76050328806264,41.98062848343832],[-87.76040339747333,41.9805669069592],[-87.76028203628262,41.9804914445757],[-87.76003871165189,41.980340144025966],[-87.75985437239466,41.980225970052146],[-87.75974032859212,41.98015561520835],[-87.7596635143851,41.98010877202454],[-87.75946207888359,41.97998592262843],[-87.75934294567895,41.979913127047695],[-87.759200513014,41.97982608217411],[-87.759059472572,41.97973967552856],[-87.75892677217423,41.97965835922418],[-87.75880438682326,41.979583351446905],[-87.75869041443886,41.979513489869],[-87.75864787774533,41.9794874287392],[-87.75853068483995,41.97941562801677],[-87.75843342788082,41.97935603059537],[-87.75826660040366,41.97925418090135],[-87.75813042458479,41.97917103536266],[-87.75803536641484,41.979112436807],[-87.75791331636967,41.9790371825027],[-87.75774744982297,41.97893495295301],[-87.7576710087802,41.97888783588011],[-87.7575084097661,41.97878717942934],[-87.75716501325297,41.978574598729395],[-87.75695535937925,41.97844654456314],[-87.75677672232473,41.97833747102869],[-87.7566085108588,41.97823462404925],[-87.75650474659331,41.97817117812592],[-87.75625467346227,41.978019099885806],[-87.75597841309279,41.97785108278557],[-87.75580216307851,41.977742760667255],[-87.75576285082713,41.977718605989935],[-87.75558553424956,41.977609839098804],[-87.75533002754115,41.97745313824074],[-87.75533275273332,41.97730123226877],[-87.75533373518714,41.97724647387542],[-87.75533025448688,41.97707612331585],[-87.75532975227208,41.97705154149786],[-87.75532680086586,41.97690709065446],[-87.75531905608416,41.976689875318996],[-87.75531462597941,41.976488400682236],[-87.7553072870298,41.97621004676675],[-87.75530347047759,41.97607086892609],[-87.75530001736358,41.97594437113841],[-87.75529540724071,41.97576688019441],[-87.7552924624381,41.975653310164894],[-87.75528712451377,41.9754505688602],[-87.75528467972413,41.975363044123256],[-87.75528335437701,41.9752459548385],[-87.75528165408933,41.975095743026884],[-87.75527328451784,41.97484191677494],[-87.75527156456556,41.974789858496166],[-87.75526615283275,41.974626076548674],[-87.75526078917045,41.97446279675357],[-87.75525650765964,41.97433243448423],[-87.75525306125348,41.974227496817505],[-87.75524333989844,41.97396864209649],[-87.75524036216939,41.973876459107444],[-87.7552367891961,41.973765839739606],[-87.75523115058019,41.97360044549584],[-87.75522586410777,41.97342608413171],[-87.75522265282807,41.9733201643827],[-87.75521633422245,41.973132373978764],[-87.7552104072298,41.97296512647339],[-87.75520467954468,41.97280268123003],[-87.75519931900622,41.97265128381049],[-87.75519415444064,41.97250477206124],[-87.75490968760086,41.9725088824505],[-87.75458710930086,41.97251258047637],[-87.75431558190587,41.9725153276358],[-87.75411175906994,41.97251767483107],[-87.75395890963811,41.972519510544984],[-87.75387376776307,41.97252061758421],[-87.75370396204903,41.97252283361235],[-87.75355144193574,41.972524807931116],[-87.753467109409,41.972525918756126],[-87.75334905030914,41.97252751774684],[-87.7532648252364,41.97252890338673],[-87.75316316708673,41.97253053017067],[-87.75312933006569,41.972531072659784],[-87.75306202399463,41.972532132025904],[-87.75297732111825,41.9725334878721],[-87.75289394179882,41.97253487724091],[-87.7528939011111,41.97253486276532],[-87.75284742645867,41.97251825913936],[-87.75282058343963,41.972497788838666],[-87.75281355675767,41.972485953219845],[-87.75280902685435,41.972474542131465],[-87.75280224800932,41.97243946406253],[-87.75279924492935,41.972361156667404],[-87.75279916700663,41.97227254584671],[-87.7527989929333,41.972145927277964],[-87.75279892504437,41.97207326034495],[-87.75279888660009,41.972032097051745],[-87.75279871633072,41.971892910030455],[-87.75279851405979,41.97178964450997],[-87.7527687459616,41.971619146792264],[-87.75273783686163,41.97149008191291],[-87.75272986402744,41.97124635601807],[-87.75272694650555,41.97116090915997],[-87.75272469354434,41.971094932243],[-87.75272021667618,41.97095621710175],[-87.75271676102805,41.970842726660074],[-87.75271283024851,41.97070368963465],[-87.75270799573363,41.97053645624467],[-87.75270250553942,41.97035950943013],[-87.75269879073069,41.97024824212011],[-87.7526951916462,41.97014042980151],[-87.75268176687925,41.9697938118451],[-87.75266933592798,41.969472852845406],[-87.75266532261696,41.96933591551046],[-87.75266209306065,41.96922572773566],[-87.75265726234773,41.969061215476984],[-87.75265236695975,41.96888123378535],[-87.75264882678717,41.968751077297604],[-87.75263889760599,41.96845964704669],[-87.75263756193175,41.96842050870369],[-87.75263003939132,41.968200109899286],[-87.75263506822343,41.96796746734702],[-87.75278914306085,41.96796595543622],[-87.75309460204703,41.96796201125747],[-87.75349277249175,41.96795683314895],[-87.7536761024659,41.96795420052643],[-87.75399325981509,41.96794964535564],[-87.75421399085104,41.96794642317099],[-87.75444314064082,41.967943407665366],[-87.75462165008956,41.967941069474755],[-87.75504709345947,41.96793607202231],[-87.75514811700467,41.9679348852],[-87.75558693850658,41.9679297195894],[-87.75574901271101,41.967927810925566],[-87.75586899318039,41.96792639804184],[-87.75605700424241,41.967924183621484],[-87.75618709385844,41.96792265137045],[-87.75655882500065,41.96791827179483],[-87.75663718007894,41.967917366861315],[-87.75683428081153,41.96791402834338],[-87.75693768930805,41.9679121452885],[-87.75698896656912,41.96791121146172],[-87.75710374335573,41.96791136143266],[-87.7572207604133,41.967909085948016],[-87.75726003138575,41.967908322537575],[-87.75733560683906,41.96790685241683],[-87.75746209159259,41.96790439257581],[-87.7575441330313,41.96790339931339],[-87.75770091084091,41.96790150139553],[-87.75782888915755,41.967899947641875],[-87.75804931192752,41.967898253293775],[-87.75822262343189,41.967896903753214],[-87.75837954184696,41.96789568178591],[-87.75870197559223,41.96789317952572],[-87.75909148452543,41.9678902437786],[-87.75927290719324,41.967887645640445],[-87.75953146069003,41.96788394209207],[-87.75981398683341,41.96787991480636],[-87.75986272744794,41.96787919643958],[-87.76011856738452,41.9678754261485],[-87.7603820320009,41.967871554757046],[-87.76055554291356,41.96786890797162],[-87.76061758917169,41.96787156161587],[-87.7607502093888,41.967877233780136],[-87.761103860668,41.96771461865708],[-87.76128146853581,41.96763268958855],[-87.76128618958681,41.967630511708016],[-87.7613550810564,41.967594927223146],[-87.76205290671454,41.967634549063334],[-87.76238051070999,41.967654098470824],[-87.76260876172698,41.967668073546385],[-87.7627850237025,41.967675510784],[-87.76319280684856,41.96770135663784],[-87.76356339902895,41.967724821105556],[-87.76379997513845,41.967738308790366],[-87.76394246538015,41.96774643235307],[-87.7642122546192,41.967763137664704],[-87.76442882862013,41.96777653257961],[-87.7647763464743,41.96779806760939],[-87.76502398008783,41.96780470584634],[-87.7652459145203,41.96781065519437],[-87.76548437249389,41.967807626385415],[-87.76566574317098,41.967805322493504],[-87.766078180086,41.96780006150297],[-87.76625735023,41.96779776858031],[-87.76648043028432,41.96779491338633],[-87.76684082460848,41.96779090199705],[-87.76721276640299,41.967786699440346],[-87.76747668860295,41.96778264223408],[-87.76748016125683,41.967924542107944],[-87.76748590419967,41.968106621256155],[-87.76749339182818,41.96834502016858],[-87.76749650629999,41.968443964530714],[-87.76750148581608,41.96860216500666],[-87.76750466639137,41.96868961145454],[-87.76750947130354,41.96882171363652],[-87.76751971213763,41.969135454617465],[-87.76752838394174,41.96939380971826],[-87.76753648185638,41.96960013178547],[-87.76753906636397,41.96966597808464],[-87.76754115772235,41.96973843549499],[-87.76754658066925,41.96992633072806],[-87.76755322067498,41.970152513657986],[-87.76756038370344,41.97032878063782],[-87.76735906415645,41.97035828224007],[-87.76705738148571,41.970517491280866],[-87.76676131603207,41.970667675200154],[-87.76657466290708,41.97076236209442],[-87.76647785452113,41.97081144123509],[-87.76626367038676,41.97092026485342],[-87.76619223203308,41.97095624527462],[-87.76604499656573,41.971030379536295],[-87.7659381710402,41.971084187208554],[-87.76583130856629,41.97113799432363],[-87.76569282661394,41.97120772605874],[-87.76549618922569,41.97130892267119],[-87.76537545651233,41.97137105583333],[-87.76499651689649,41.971581122240956],[-87.76479350537805,41.97167550981376],[-87.76464491942328,41.971753137735945],[-87.76435738413215,41.97190392434305],[-87.76459454306244,41.97216508594594],[-87.76528771117992,41.972561401845226],[-87.76650484430772,41.9732452368755],[-87.76748224138052,41.973803359193866],[-87.76850592163697,41.97437474107322],[-87.76850228521488,41.97451268403534],[-87.76850092892064,41.97456413013115],[-87.76849789845056,41.974690678009694],[-87.76849453367169,41.97496327088635],[-87.76849064699782,41.97521830128318],[-87.76848648165941,41.975491628387104],[-87.7684808381909,41.975682766106445],[-87.76846937225449,41.97607109271523],[-87.76845670064226,41.97651872003107],[-87.76847506717309,41.97657789204308],[-87.76845359567342,41.97687007278537],[-87.76845242059,41.97699887998952],[-87.76845041048438,41.97714310551401],[-87.76844813187063,41.97728442085643],[-87.76844641252646,41.97737568465079],[-87.76844259037948,41.97757854517998],[-87.76843889124702,41.97774913144157],[-87.76843742362277,41.97781361549945],[-87.76843363494,41.977967656503836],[-87.76843170074919,41.97814318798786],[-87.76843010451476,41.97828805244971],[-87.76842686397124,41.97846745258662],[-87.76842373838646,41.978621359625926],[-87.76842016632853,41.97880081300501],[-87.76841599898461,41.97900600408349],[-87.76841238973549,41.97918553959345],[-87.76841120685006,41.97930767801701],[-87.76841027631644,41.97940380317571],[-87.76840666958795,41.979570523253656],[-87.76840410336975,41.979686096489075],[-87.76840127797566,41.97981434666782],[-87.76839789721399,41.979967978268704],[-87.76839254253993,41.98021177413092],[-87.76838810872661,41.98044292401097],[-87.76838464577179,41.980622487637184],[-87.76838066274472,41.98082759723035],[-87.76837768495044,41.98098139516442],[-87.76837656045714,41.981119837421836],[-87.76819415590337,41.981127196925776],[-87.76793654788119,41.98112815127869],[-87.76776615582628,41.98112875650586],[-87.76761045492131,41.98112934386804],[-87.76750739695053,41.98112971410503],[-87.76736998624153,41.981130216757364],[-87.76715710729422,41.981130094603635],[-87.76699204739961,41.98112999941187],[-87.76678541025302,41.98113144960349],[-87.76661312705627,41.98113262994787],[-87.76655159198096,41.981133063524],[-87.7664070047832,41.98113408200002],[-87.76628709790617,41.98113491677403],[-87.7660641301294,41.98113644965388],[-87.76593688311655,41.98113692809167],[-87.76575506604578,41.98113761134943],[-87.76556597947506,41.98113826797114],[-87.76532692615922,41.98113912272455],[-87.76522223238345,41.98113947623015],[-87.76511939507027,41.98113984541515],[-87.76487855884491,41.98114068382399],[-87.76471629859722,41.98114078994498],[-87.7644673674455,41.9811409521126],[-87.76420931477364,41.981142225476276],[-87.7641018103106,41.98114274733857],[-87.76393449016096,41.98114357917645],[-87.76376298157291,41.9811444572228],[-87.76365995951575,41.981144961393866],[-87.76349958094988,41.98114905998942],[-87.76329848683835,41.98115419877063],[-87.7630406564994,41.9811552782424],[-87.76297195027232,41.98115562295837],[-87.76283457459466,41.9811563124497],[-87.76278319699419,41.981156057115776],[-87.76269714471938,41.981154833312594],[-87.76264588149375,41.98115408480367],[-87.76257718727646,41.981153084683704],[-87.76248900373587,41.981143453142266],[-87.76243775249957,41.981124894449614],[-87.76237436769702,41.981089480866906],[-87.76230093638777,41.98104649816073],[-87.76220613833631,41.980990978145456],[-87.7621278776773,41.98094517194068],[-87.76206783259333,41.98091059806621],[-87.76191610066017,41.980818131656974],[-87.76185300189253,41.980775474513266]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"21200183.8872","perimeter":"0.0","tract_cent":"1123885.98585632","census_t_1":"17031100500","tract_numa":"96","tract_comm":"10","objectid":"702","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935016.55142401","census_tra":"100500","tract_ce_3":"41.97806829","tract_crea":"","tract_ce_2":"-87.81978911","shape_len":"32317.057772"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.81293555996511,41.982619946862584],[-87.81277043955204,41.982612831681266],[-87.81266263952949,41.98261261722731],[-87.81252462557546,41.982614570736835],[-87.81238887935532,41.98261807112564],[-87.81223245756162,41.98262221843981],[-87.81205609575655,41.98262701593483],[-87.81188554398418,41.982631910624534],[-87.81168379627685,41.98263770116858],[-87.8114483923371,41.982643766181155],[-87.81121387157084,41.98264972495951],[-87.81094915544273,41.9826556556296],[-87.810822352976,41.98265837187619],[-87.81067056322067,41.98266276755997],[-87.81045877123105,41.982668900446214],[-87.81000032407995,41.98268064224019],[-87.80971513827606,41.982688946531766],[-87.80950919070659,41.98269504669469],[-87.80923666264984,41.9827031185887],[-87.80873748817336,41.98271626103632],[-87.80841416250651,41.98272441524426],[-87.80815878342318,41.98273084868681],[-87.80694199785177,41.98277104911287],[-87.8069417792637,41.982583162326314],[-87.80694165304266,41.98247448412245],[-87.80694146106443,41.982309443498785],[-87.8069413361414,41.982202214784515],[-87.80694130175837,41.98217249708793],[-87.80694099293994,41.98190697028349],[-87.80694041768628,41.98141238539363],[-87.80694301617872,41.981342942307144],[-87.80694792954779,41.98129118169027],[-87.80695867549217,41.98111516881158],[-87.80697522372023,41.980844111191665],[-87.80697623337002,41.98063505925395],[-87.80697689212222,41.98049862340882],[-87.80697918556793,41.97999238291477],[-87.80698290278075,41.97947401951466],[-87.80698529528583,41.97921475791875],[-87.80698537859112,41.979117778338654],[-87.80698551840729,41.97895543148067],[-87.80698896286094,41.97878283671309],[-87.8069915847709,41.9786526910382],[-87.80699543085976,41.978461821689265],[-87.80699761295801,41.97829182811498],[-87.80699859018914,41.97821571736753],[-87.80700068242768,41.97802952350007],[-87.80700082944418,41.97796495299621],[-87.80700089044834,41.97792601298594],[-87.80700100868502,41.97786761708805],[-87.80700126725527,41.977739655647795],[-87.80700369046967,41.977588296320704],[-87.8070041850987,41.97755712412637],[-87.80700628890028,41.977424588862604],[-87.80700909561926,41.977249027381305],[-87.80700933923494,41.977181164537775],[-87.80700964310286,41.97709763199954],[-87.80701000827656,41.97699521987192],[-87.8070141588315,41.976768018562105],[-87.80702143637728,41.97658097932943],[-87.8070319041398,41.97643075453423],[-87.80703625179233,41.976355451465885],[-87.80703816662191,41.97632227729019],[-87.80704581804983,41.9761897323036],[-87.80704931907015,41.976129081612974],[-87.80705370819037,41.975886321430345],[-87.80705531027165,41.97578553403368],[-87.80705734287336,41.97565925492055],[-87.80705949711736,41.975493899119876],[-87.80706193889657,41.975306480653494],[-87.80706516949267,41.975155289614634],[-87.80707231599185,41.97481432737662],[-87.80706668533851,41.974538214203896],[-87.80716628598019,41.97453824264326],[-87.80729193003052,41.9745382783699],[-87.80753073160477,41.974531359529344],[-87.8076001935526,41.97452968041319],[-87.80771685114317,41.97452686033589],[-87.80782592210755,41.974523892900095],[-87.80805529545975,41.97451765208584],[-87.80823782301738,41.974513161682495],[-87.80829129282198,41.97451184615297],[-87.80857919042556,41.97450476272447],[-87.80861015045177,41.97450407905273],[-87.80876350430819,41.974500692928075],[-87.80896511536639,41.97449505531798],[-87.80933707065357,41.974484734285596],[-87.80935563018731,41.97448426082377],[-87.8093583009923,41.974484192608415],[-87.80951892516228,41.974480094976514],[-87.80977500747414,41.97447356013397],[-87.81004565425285,41.97446683589663],[-87.81026487931582,41.974461330899125],[-87.81044868255282,41.97445671902857],[-87.81056848384587,41.974453713337276],[-87.81066044826551,41.974451280561986],[-87.81075368647836,41.9744488139947],[-87.81087210934288,41.9744456815156],[-87.81098891484315,41.97444259177444],[-87.81117577322044,41.974437624093014],[-87.81142968713192,41.974430930253256],[-87.8117335448006,41.9744238041692],[-87.81200478481449,41.97441639223007],[-87.81200478885961,41.97441639224844],[-87.81200479180151,41.9744163922618],[-87.81222460153312,41.97441044710307],[-87.81225851598074,41.97440949402763],[-87.81232634487102,41.9744075881211],[-87.81245214162412,41.97440428879568],[-87.81254487303059,41.974401856344],[-87.81258437577594,41.97440081820558],[-87.81271414804505,41.97439741011799],[-87.81298351432778,41.9743897949998],[-87.81306127687274,41.974387753663294],[-87.8132161667056,41.97438368771246],[-87.81326319227544,41.974382453183445],[-87.81340607722677,41.974378701962664],[-87.81355192699439,41.974374857512274],[-87.81359087504356,41.97437383106033],[-87.81369931729306,41.97437100832383],[-87.81381002756405,41.97436812686887],[-87.81382523286696,41.97436773245482],[-87.81383632731477,41.97436744484703],[-87.81399556035765,41.97436331325076],[-87.81423133357973,41.97435784864273],[-87.81431318483105,41.97435592757923],[-87.81445468011236,41.974352607294975],[-87.81458103402738,41.97434964185035],[-87.81467257145447,41.97434749399393],[-87.81487480832666,41.97434165646192],[-87.81516231430231,41.97433280120371],[-87.8153830872806,41.97432677256666],[-87.8154835776195,41.97432420699595],[-87.81568330035778,41.974320009809965],[-87.81570204302245,41.974319798494065],[-87.81572243225656,41.97431956880342],[-87.81586924729159,41.974316654949625],[-87.81595875053743,41.9743148783436],[-87.81619283889925,41.97430807748391],[-87.81668655331497,41.974293732520366],[-87.81685287289372,41.974290287187195],[-87.81691746330694,41.97428894906344],[-87.81692048253294,41.974084002359646],[-87.81692230962854,41.97398524650348],[-87.81692364324634,41.97391115886355],[-87.81692370555491,41.97390617703264],[-87.8169245700333,41.97383608175186],[-87.81692470909144,41.97382483112088],[-87.81692595330374,41.97368897093312],[-87.81692727466393,41.97352539485227],[-87.81692842178867,41.97338338691787],[-87.81692935433227,41.97326794223396],[-87.81693022608805,41.97309624098494],[-87.81693126224624,41.9728860666553],[-87.81693260035573,41.97277504196284],[-87.81693484026921,41.972575136379625],[-87.81693617663774,41.97247497819428],[-87.81693810365692,41.9723305596607],[-87.81693947854605,41.972132983023684],[-87.816940821518,41.97198488351562],[-87.81694199273406,41.97184907811453],[-87.81694342514716,41.971676199060255],[-87.81694489628391,41.97156772705796],[-87.81694660759553,41.971441583695686],[-87.81694726702351,41.97126883836277],[-87.81694744645074,41.97121930645133],[-87.81694980021167,41.97114961382591],[-87.81694835602525,41.97109763226343],[-87.81694937527544,41.971003263458286],[-87.81695068755553,41.970881810613974],[-87.81695200073136,41.97077385928608],[-87.81695334565974,41.97066020014131],[-87.81695335963519,41.97066019992975],[-87.81707644699101,41.970654633636116],[-87.81718909510545,41.9706518591633],[-87.81718931321447,41.970651853557776],[-87.81718936470587,41.97065185241717],[-87.8172328364384,41.97065078167287],[-87.81728940488921,41.9706493891604],[-87.81737995712722,41.970647216872145],[-87.81738496013499,41.9706470747039],[-87.81752089964759,41.97064373389313],[-87.81752722569856,41.97064359766306],[-87.81767434680086,41.97063997760267],[-87.81767934943761,41.97063983569435],[-87.8177560727889,41.97063798463552],[-87.81782161460721,41.97063635801245],[-87.81796873604766,41.97063273757625],[-87.81797373831562,41.970632595653434],[-87.81800242683228,41.97063190089569],[-87.81811593064889,41.970629117279806],[-87.81826216836289,41.970625547385744],[-87.8182658467764,41.97062545439493],[-87.81841024582168,41.970621930672834],[-87.81855744037647,41.97061831008444],[-87.81865571679393,41.97061589645433],[-87.81870463492088,41.97061468875839],[-87.8188518298138,41.970611067794],[-87.81898673951322,41.97060777524205],[-87.81898666762146,41.9706177171947],[-87.81898666186655,41.970618523966806],[-87.81898666181577,41.97061853027827],[-87.81898542390871,41.970789545850586],[-87.81898487887486,41.97086643618487],[-87.81898459276547,41.9709019998698],[-87.81898376205886,41.97101439900459],[-87.81898300444747,41.97112685362326],[-87.81898255099561,41.97118321739622],[-87.81898217366181,41.97123930708864],[-87.81898134212697,41.97135176164614],[-87.81898119686345,41.97136981762383],[-87.8189805113987,41.97146416104643],[-87.81897984271797,41.97155641784533],[-87.81897968023063,41.971576614503505],[-87.81897892223003,41.971689068835005],[-87.8189784881914,41.97174301805905],[-87.81897809185713,41.97180146795586],[-87.81897726067008,41.97191392195508],[-87.81897713438696,41.97192961826995],[-87.81897642947813,41.97202637595207],[-87.81897578020146,41.972116218473076],[-87.81897559828127,41.972138829946836],[-87.81897484143396,41.97225122938831],[-87.81897442637033,41.97230281867172],[-87.81897400949198,41.972363683375335],[-87.81897313493371,41.97248157070431],[-87.81897307179041,41.97248941886097],[-87.81897184745898,41.97265982879136],[-87.81897171719714,41.97267601904409],[-87.81897049491153,41.972846264599944],[-87.818970363326,41.972862619224365],[-87.8189695532884,41.97297243885653],[-87.81896900944152,41.973049219398526],[-87.81896870728171,41.97309586960382],[-87.8189677881625,41.97321924541111],[-87.8193428767856,41.97322059576767],[-87.81943177490481,41.97321960078171],[-87.81943251413749,41.97321959256511],[-87.81943365946607,41.97346001786454],[-87.81943368211722,41.973464702605455],[-87.81943317888901,41.97355200654436],[-87.81943240929844,41.9736385008456],[-87.8194306349513,41.97374952360247],[-87.81942723718174,41.973897667963335],[-87.81942659962662,41.973958723759],[-87.8194260919695,41.974030976782316],[-87.81939806055047,41.97422256173038],[-87.8193980589979,41.974222571877],[-87.81939807334184,41.9742225716668],[-87.81966947252397,41.9742167405551],[-87.81966951114299,41.97421673990463],[-87.81968070187953,41.97421649936317],[-87.82009450969282,41.97420545229899],[-87.82027409405202,41.97420094496521],[-87.82039149106689,41.9741979986819],[-87.82080452641752,41.97418694533221],[-87.82116805017458,41.97417742591686],[-87.82140022685147,41.97417179634644],[-87.82151409665907,41.974169035434464],[-87.8218504083583,41.97415976986569],[-87.82185041166792,41.97415976988044],[-87.82185041497976,41.97415976962076],[-87.82202305318172,41.97415501345718],[-87.82204568582453,41.97415439005958],[-87.82225913502927,41.974148946473306],[-87.82243854492192,41.974144558191426],[-87.82275558413595,41.97413680297892],[-87.82293909497828,41.97413146372188],[-87.82305338397987,41.97412813811389],[-87.8233005594467,41.97412212927361],[-87.82349973377832,41.974117388339344],[-87.82384069806267,41.974109830503394],[-87.82404023753465,41.97410540748229],[-87.82405075885278,41.97410508451187],[-87.82425891820446,41.974098693881274],[-87.82468559877465,41.97408717198442],[-87.82479576455286,41.97408419711572],[-87.82479576749475,41.974084197128754],[-87.82491810264112,41.97408101507376],[-87.82501601879497,41.97407839325956],[-87.82516535258544,41.97407493805873],[-87.82536890053746,41.97406984112575],[-87.82541867209812,41.974068594831714],[-87.82562623230301,41.97406176630892],[-87.82575455191645,41.974057544800495],[-87.82580669659636,41.974055829142685],[-87.8258833714186,41.97405330642317],[-87.82604418912203,41.974050878601055],[-87.82614067973884,41.97404942185451],[-87.82644421490916,41.97404080069789],[-87.82673538218297,41.974033623049856],[-87.82673530652775,41.97384362436638],[-87.82673779357019,41.9737432524367],[-87.82673969487942,41.973693590636394],[-87.8267412349967,41.97351780282561],[-87.82674269195805,41.97335255350499],[-87.8267427918446,41.97321460252847],[-87.8267425617702,41.973142700750245],[-87.8267425772171,41.97314270054399],[-87.82679005310676,41.97314189714217],[-87.82696951847903,41.97313879207269],[-87.8272647101147,41.97313367224434],[-87.8274388976396,41.973130652395],[-87.827559828532,41.973128551334284],[-87.8277073147664,41.973125962556814],[-87.82785502082345,41.973123429990764],[-87.82797565751211,41.97312132664775],[-87.82815021307503,41.97311830788794],[-87.82824414738563,41.97311663560005],[-87.82828849928282,41.97311587491368],[-87.82828858718577,41.973115873379435],[-87.82828899139182,41.973115866376155],[-87.82844533100504,41.97311318469914],[-87.82851249043546,41.97311199816293],[-87.82874052324233,41.973108006193996],[-87.82878090706417,41.973107305537674],[-87.82903571500628,41.97310288181185],[-87.82904924968042,41.97310266684386],[-87.82931766581014,41.973098027845474],[-87.82933083355181,41.97309775634915],[-87.82958608233947,41.97309333333698],[-87.82962595131983,41.97309263039871],[-87.82985442485703,41.97308869276047],[-87.82992114259845,41.973087503463034],[-87.83012284095228,41.973083996994944],[-87.83021633457045,41.97308237604571],[-87.83039125731574,41.97307935576157],[-87.83051145258855,41.973077247545355],[-87.83065967371448,41.973074658467645],[-87.8308065709344,41.97307211828768],[-87.83092801573245,41.97307001537919],[-87.83117561496782,41.97306572000872],[-87.83119643243032,41.97306531710587],[-87.83146484866184,41.97306067336149],[-87.83172914474243,41.97305606532294],[-87.83172794902177,41.97318975828008],[-87.83172770442994,41.97322093116117],[-87.83172629603519,41.973381680819415],[-87.83172420532141,41.973610593935284],[-87.83172413340792,41.973619759006986],[-87.83172218844093,41.97383956169995],[-87.83172260263069,41.973948561866415],[-87.83174461480283,41.973948161889204],[-87.83190010243786,41.973945335125535],[-87.83190994149359,41.973945155818804],[-87.83208101215519,41.973942181724624],[-87.8321950592533,41.973940199127895],[-87.83235666910613,41.97393751647129],[-87.83248569252886,41.97393537528523],[-87.83262291042895,41.97393357045974],[-87.83265565999022,41.97393314002579],[-87.83271603695104,41.97393234598083],[-87.8328774281469,41.97392940368185],[-87.83287743145652,41.973929403696275],[-87.83306953073372,41.97392590097668],[-87.83341847548098,41.9739202915429],[-87.83341847538655,41.973920303617014],[-87.83341755672265,41.97403081881584],[-87.83341657587823,41.97425029642111],[-87.83341572182266,41.974472463620856],[-87.83341493272972,41.97462970365269],[-87.83341464520697,41.974694685001474],[-87.83341371683562,41.9749168524093],[-87.8334142225709,41.974916843085886],[-87.83341422808702,41.9749168431099],[-87.83341643308825,41.97491680304157],[-87.83345654129684,41.97491607539258],[-87.83349203905087,41.974915431112834],[-87.83349281071072,41.974915416909624],[-87.83350883126464,41.97491512607138],[-87.83353459973009,41.974914666913975],[-87.83358188960625,41.9749138244947],[-87.83363013393893,41.97491296480558],[-87.83363009085625,41.974927838231615],[-87.83362999457856,41.97494015464644],[-87.83362996585807,41.97494382874304],[-87.83362996580873,41.974943835054496],[-87.83362972327483,41.97497486139932],[-87.8336295038882,41.97500292656868],[-87.83362934651154,41.97502305904816],[-87.83362901788328,41.975065098900934],[-87.83362862672465,41.975115137850636],[-87.8336283568021,41.97514966760699],[-87.83362798565994,41.97519714574721],[-87.83362758077641,41.975248940106496],[-87.83362718713866,41.97529929572552],[-87.83362690596455,41.975335264494966],[-87.83362664967986,41.9753680492669],[-87.83365494126927,41.975367573623096],[-87.83380562412957,41.975365041149196],[-87.83396127854245,41.97536247988399],[-87.83398033070713,41.975362178841245],[-87.83415496488466,41.97535926134284],[-87.83429583417073,41.97535690975607],[-87.83432967260201,41.97535634334955],[-87.83450430602159,41.975353424767526],[-87.83463046293343,41.97535133869634],[-87.8346790137079,41.97535050679126],[-87.83485364673083,41.97534758795046],[-87.83496509164723,41.97534576666091],[-87.83502828084362,41.97534466884872],[-87.83520298812418,41.975341749798766],[-87.83529964682094,41.97534013872118],[-87.83537762141492,41.97533888504617],[-87.83549176042304,41.97533697778585],[-87.83549237649758,41.975336967285244],[-87.83555232830109,41.97533596546281],[-87.83560591798145,41.975335048813214],[-87.8356265787387,41.9753346954708],[-87.8356265813129,41.97533469548196],[-87.83562681376584,41.975334691550145],[-87.83563427544301,41.975334563911275],[-87.83570002220394,41.97533348697054],[-87.83570002992872,41.9753334867296],[-87.83572012120948,41.97533315752067],[-87.83572696236048,41.97533304529789],[-87.83576093833258,41.97533247577256],[-87.83576711414405,41.97533237218938],[-87.83581803083527,41.97533151904705],[-87.83582968067552,41.97533132502384],[-87.83590166958761,41.97533012518432],[-87.8359464011773,41.97532938760975],[-87.83594647914978,41.97532938657546],[-87.83596572228807,41.97532906929092],[-87.83600185976603,41.97532847365841],[-87.8360509169419,41.975327637329556],[-87.83605108870631,41.9753276345061],[-87.83607630288473,41.97532720448463],[-87.83613929825316,41.97532615187285],[-87.83622880460427,41.97532465667528],[-87.8362510843673,41.9753242844353],[-87.83634205019267,41.97532276089174],[-87.83641616173414,41.97532151942515],[-87.8364411654648,41.97532110048712],[-87.83645853768569,41.975320043416055],[-87.836512201123,41.975316778442874],[-87.83657934038662,41.97531269333427],[-87.83662673905836,41.97530980926346],[-87.83662676873242,41.9753262944047],[-87.83662670547398,41.975326294954264],[-87.83662494254204,41.975586684497806],[-87.83662451010275,41.975650524727],[-87.83662417956258,41.97569935786673],[-87.83662378362706,41.97575887859342],[-87.83662328395266,41.975833926702016],[-87.83662295676318,41.975883132792646],[-87.8366209076553,41.97608062463232],[-87.83662090600815,41.97608078927772],[-87.83661887897851,41.97626587738307],[-87.83661723071631,41.97646076367134],[-87.83661616126572,41.97658726733113],[-87.83661447507033,41.97674746692459],[-87.83661212267435,41.97696627717656],[-87.83661182001742,41.976994434188384],[-87.83661117112429,41.97721745263548],[-87.83661101672641,41.97727054361411],[-87.83661085141887,41.977327357337806],[-87.83660796327617,41.97747094925122],[-87.83660569718336,41.97758361662827],[-87.83660324077805,41.977682013298235],[-87.83659471416082,41.97802584760574],[-87.83658362117873,41.97931231618662],[-87.83658161930163,41.979544478424536],[-87.83658156681551,41.98003039794257],[-87.8363149835988,41.98003718913456],[-87.83318001235429,41.98007943238725],[-87.8331366937103,41.98020315830309],[-87.83314281199446,41.98021558850027],[-87.83314892426571,41.98022878732318],[-87.83314977840418,41.980241880910086],[-87.83315043687489,41.98029863397105],[-87.83315029314471,41.9803358447857],[-87.83314990787824,41.98042266980157],[-87.8331496201089,41.98049703654357],[-87.8331438468884,41.98052834446457],[-87.83302556230441,41.98053035946676],[-87.83281023125318,41.980533976495906],[-87.83268936044853,41.98053602872274],[-87.83266008126026,41.98053650475816],[-87.83252721928586,41.98053872432812],[-87.83236360578456,41.980541523322124],[-87.83236301734581,41.98054152075428],[-87.83224435359274,41.98054352725957],[-87.83204785595166,41.98054678598931],[-87.83202924393213,41.980547088631425],[-87.83190999092231,41.98054914737648],[-87.8318141330245,41.98055075908855],[-87.83173777096698,41.98055201738084],[-87.83172143920609,41.98055227532641],[-87.83163065707673,41.98055379956949],[-87.83161756179153,41.980554016760195],[-87.83140789376635,41.98055754037669],[-87.83140245200886,41.98055763184102],[-87.83139509523063,41.980557764327855],[-87.83135146987573,41.9805585066081],[-87.83118741576061,41.980561246840374],[-87.83107220945315,41.98056321264729],[-87.83106882549639,41.98056325300072],[-87.8309723791242,41.980564861435205],[-87.83079302218314,41.98056791832732],[-87.83075726891254,41.98056847530508],[-87.83074248142906,41.98056873987191],[-87.8305199404277,41.980572540301665],[-87.83051376132377,41.98057262300596],[-87.83041613841374,41.980574226368745],[-87.83030977430354,41.98057601692109],[-87.83030905297935,41.98057602885358],[-87.83030490452747,41.98057609876514],[-87.83008986743737,41.98057971197912],[-87.83007257902182,41.98058002010617],[-87.82977470566601,41.98058502558093],[-87.82976352396464,41.98058519606969],[-87.82967347481983,41.980586710728836],[-87.82946574579162,41.980590205002095],[-87.82946550633159,41.98059020889066],[-87.82941157865397,41.980591115970526],[-87.82929961389665,41.98059299104508],[-87.82919087725834,41.98059481213032],[-87.82885945676826,41.98060038112313],[-87.82885945687005,41.980600368225815],[-87.82885947488774,41.98059752640503],[-87.8288611882787,41.98032514511528],[-87.82883647280943,41.98032555351302],[-87.82883645478641,41.980325553708255],[-87.82883233909881,41.98032562151524],[-87.82880456215383,41.980326080117756],[-87.82875418221056,41.98032691164747],[-87.82869139119505,41.98032794820089],[-87.82869171126484,41.9802961684052],[-87.82869208113358,41.980259478894176],[-87.82869239724496,41.9802281071442],[-87.82869277462649,41.9801906523066],[-87.82869348859785,41.979969801708606],[-87.82869396332013,41.97981292903219],[-87.82869396333314,41.97981292738572],[-87.82869396334613,41.97981292573926],[-87.82869396343337,41.9798128681113],[-87.82869399082344,41.9798036696512],[-87.82869456007641,41.97962914061117],[-87.82869460708812,41.97961410311403],[-87.82869508475505,41.97946020955174],[-87.82869561009286,41.9792989265947],[-87.82869565319173,41.979285735381865],[-87.82869622930983,41.97911960362953],[-87.82869688905711,41.97890561326968],[-87.82869526461246,41.978838997912426],[-87.82868107423181,41.97883924014108],[-87.82864026203251,41.978839937227974],[-87.82864025339704,41.97883972670933],[-87.8286381323669,41.978788267344136],[-87.82863757525946,41.97877475077276],[-87.82863735488975,41.97876940353971],[-87.8286375366374,41.97872947914407],[-87.82863773185477,41.978686544686575],[-87.82863847326635,41.978523715748615],[-87.82863875315928,41.978462139164435],[-87.82863875321345,41.978462132304166],[-87.8286387734493,41.97845765988417],[-87.82863885614613,41.97843950155399],[-87.82873704464208,41.9784379161801],[-87.82874229529475,41.97843783141128],[-87.82887131973474,41.97843574836427],[-87.82892973022197,41.978434797566585],[-87.82911539956125,41.978431795726635],[-87.82922067671129,41.97843009316006],[-87.8293093364689,41.97842921215268],[-87.82930969434017,41.978429208784306],[-87.82931000145597,41.978429205741946],[-87.82940457843148,41.97842826611819],[-87.82971024507468,41.97842332349664],[-87.82971693243672,41.97842321534851],[-87.82971692542623,41.978422891501296],[-87.82971687348154,41.978420475547736],[-87.82971687350748,41.9784204722548],[-87.82971484187013,41.97832651897197],[-87.82971230307685,41.97820908759171],[-87.82971062518882,41.97813147843582],[-87.82979424039219,41.978130053523955],[-87.82991854887275,41.97812793516737],[-87.83002201911276,41.97812617180184],[-87.83002203088324,41.97812617157902],[-87.83002312662668,41.97812615278278],[-87.83002217819397,41.97808331730894],[-87.83002216752902,41.97808285019807],[-87.83002216723257,41.978082841140896],[-87.83002163520169,41.97805881738816],[-87.83002561306115,41.978058673193964],[-87.83002561600324,41.97805867320686],[-87.83002562042067,41.978058672677385],[-87.83002737605369,41.97805864030891],[-87.83005429685072,41.978058145548786],[-87.83005208874191,41.97798841076985],[-87.83004478483473,41.97769227902483],[-87.830037407495,41.97739609205812],[-87.83003984506685,41.97732887980644],[-87.83001844473424,41.977329240151356],[-87.83001732436485,41.97732925883961],[-87.83001709263992,41.977329262763256],[-87.83001704482521,41.97732926337689],[-87.82976501675147,41.97733348191706],[-87.82964687477207,41.977335405981485],[-87.82964161741819,41.97733551271605],[-87.82960729510009,41.97733620898463],[-87.82960704513648,41.977332133836924],[-87.8296029952013,41.9772659222062],[-87.82960320462239,41.97721410122946],[-87.82960320494892,41.977214059793354],[-87.82960320496623,41.97721405759806],[-87.82960320498137,41.97721405567719],[-87.82960419302651,41.97696991057716],[-87.8296042368315,41.9769591252087],[-87.82962740882367,41.976958732923215],[-87.82984780467464,41.97695492480023],[-87.82991651232076,41.976953744237626],[-87.83006827331866,41.9769511165732],[-87.83010498116042,41.976950509107716],[-87.83022878813348,41.97694836241843],[-87.83028866832568,41.97694736248421],[-87.83036208443336,41.97694609251824],[-87.83044925667528,41.976944608343366],[-87.83050906374268,41.97694355308969],[-87.8305411374526,41.976942980071634],[-87.83061926129311,41.97694162051654],[-87.83066972605847,41.97694074408021],[-87.83072953268821,41.9769397435939],[-87.83085341274526,41.97693765143504],[-87.83087636444016,41.9769372579332],[-87.83089012057427,41.97693704371842],[-87.83094985370897,41.97693598818593],[-87.83111058984953,41.97693323349219],[-87.83113354154175,41.97693283993891],[-87.83116568805755,41.976932267064846],[-87.83117032298028,41.976932177570525],[-87.83129645208638,41.976930014640345],[-87.83129965281726,41.97692995975769],[-87.83133098444867,41.97692942251597],[-87.8313907179411,41.976928366481204],[-87.8316105247791,41.97692460728258],[-87.83173338938741,41.97692256077844],[-87.83185328168342,41.97692056372708],[-87.83207389753119,41.97691680744949],[-87.83207706027476,41.97691676610034],[-87.83226825104074,41.97691353930318],[-87.83228296338785,41.97691327421081],[-87.83229466046494,41.976913050566566],[-87.83245936713443,41.976910312136205],[-87.83251534865424,41.97690934864041],[-87.83259538510761,41.976907996358456],[-87.83267998255906,41.97690655414306],[-87.83273603762181,41.97690559113478],[-87.83284527804,41.97690376229376],[-87.83290780641626,41.97690271765399],[-87.83295679932084,41.976901888406026],[-87.83301072134562,41.97690097085068],[-87.83317741506202,41.97689812973264],[-87.83320176462489,41.976897686971725],[-87.83322015492591,41.97689738317232],[-87.83336728145487,41.97689489533504],[-87.83339817714719,41.97689437127253],[-87.83353257688307,41.976892102770215],[-87.83361723255852,41.976890640359244],[-87.83361723770707,41.976890640381654],[-87.8336186957278,41.9768906151698],[-87.83361886639321,41.9768906123452],[-87.83361686029389,41.976601528438756],[-87.8336176943699,41.97649483724793],[-87.8336191110853,41.97631361616377],[-87.83362054194822,41.9761305836834],[-87.83362224232926,41.97592234050211],[-87.83362227066996,41.975918856303714],[-87.83362227373972,41.975918463620815],[-87.83361093121643,41.97591865985529],[-87.8336039549639,41.97591878069411],[-87.83340180806802,41.97592227869102],[-87.83318134384508,41.97592609334411],[-87.83296087775906,41.97592990784007],[-87.83274048594018,41.97593372168758],[-87.83266249033251,41.97593507089814],[-87.83265935953506,41.97593512475174],[-87.83252002128289,41.9759375350686],[-87.83229955513242,41.975941348019695],[-87.83207923679437,41.97594516119273],[-87.83185877133504,41.97594897330024],[-87.83173990641512,41.97595103384887],[-87.83171045031736,41.97595154454642],[-87.83171029105458,41.975951547418],[-87.8316160164614,41.97595318153328],[-87.83139540385632,41.97595699210776],[-87.83138436933109,41.975957163398874],[-87.83117493832816,41.975960802901575],[-87.83116390380191,41.97596097417149],[-87.83095447277786,41.97596461327187],[-87.83094343781923,41.97596483940285],[-87.83086550220044,41.97596617365946],[-87.83086548969486,41.97596617387915],[-87.83086478313051,41.97596618615422],[-87.83086477945304,41.97596618613812],[-87.83086477577555,41.97596618612202],[-87.83073408075497,41.97596842354061],[-87.8307230457951,41.975968649650405],[-87.83051361516036,41.975972233063956],[-87.83050258093475,41.975972459155784],[-87.83029314954359,41.975976042163786],[-87.83028211531675,41.975976268234405],[-87.83007268347262,41.975979905722355],[-87.83006164967446,41.97598007716391],[-87.82985229136094,41.97598371429767],[-87.82984125756391,41.975983885443625],[-87.82963182567758,41.97598752212703],[-87.8296207918795,41.97598769325179],[-87.82941135997208,41.97599132953285],[-87.82940032617297,41.97599150063642],[-87.82919089424662,41.97599513624075],[-87.82917986007656,41.97599530759591],[-87.82897050204429,41.97599894339704],[-87.82895946787536,41.9759991144566],[-87.82875003627244,41.97600274953241],[-87.82873907565205,41.97600292089405],[-87.82852957047847,41.97600655524424],[-87.82851853587403,41.976006781143674],[-87.8283091046624,41.97601036053254],[-87.82829807005673,41.97601058641077],[-87.82808871200606,41.97601416571938],[-87.82807767813466,41.97601439157965],[-87.82786824651353,41.976017970162374],[-87.82785721190758,41.976018195723796],[-87.82764777982925,41.976021829060855],[-87.82763674565625,41.97602199971882],[-87.82742731392462,41.97602563265514],[-87.82741628012047,41.97602580301913],[-87.82720692228298,41.97602943615341],[-87.8271958877358,41.97602960731619],[-87.82696291618312,41.97603362902969],[-87.82676720480416,41.97603702929483],[-87.8267617446415,41.97603712430033],[-87.82676163834276,41.976037126301065],[-87.82659510433142,41.976040019182804],[-87.82655962141045,41.97604060733356],[-87.82637029969783,41.97604374671151],[-87.82634815698282,41.97604414288539],[-87.82614556742101,41.97604752900379],[-87.8261012835249,41.97604826638318],[-87.82592076230564,41.97605131080857],[-87.82585440960467,41.97605244423214],[-87.82569595680461,41.976055091622534],[-87.82560753535782,41.97605656666453],[-87.82559733634632,41.976056738899125],[-87.82559692145679,41.97605674584565],[-87.8254711509114,41.97605887226891],[-87.82536066101595,41.97606074344972],[-87.82524641928103,41.976062652803684],[-87.8251137135338,41.976064864496],[-87.82501234551849,41.97606655618629],[-87.8248668391381,41.976069040218874],[-87.82454838995115,41.97607432521353],[-87.82442649188366,41.97607478600353],[-87.82442557441898,41.97608184113761],[-87.82442371129176,41.97609616724992],[-87.82441210616311,41.9761854175518],[-87.82440324129465,41.97625359240633],[-87.82436122641269,41.976564743676796],[-87.824361211945,41.976564851734445],[-87.8243610313857,41.97656618955857],[-87.8243450760896,41.97668593121194],[-87.82432823068538,41.9768178260291],[-87.82431009004301,41.97695986756872],[-87.82429776163772,41.97705783600489],[-87.82428252554806,41.97717922707825],[-87.8242689176723,41.977290115051886],[-87.82424894786472,41.977446144740476],[-87.82422785718913,41.97761092292352],[-87.82422101315909,41.97766215436714],[-87.82421188397234,41.97773016995049],[-87.82419098643933,41.977885866197646],[-87.8241787131641,41.97798152971531],[-87.82417092073659,41.97804238911373],[-87.82416934008086,41.97805475847787],[-87.8241531061533,41.97817844994657],[-87.82413707732363,41.97830057867074],[-87.82412317057486,41.978411986678715],[-87.82411080446477,41.97850542750955],[-87.82409327229189,41.978637674852514],[-87.82407809249253,41.97875217815508],[-87.82405856219889,41.97890466941847],[-87.82404181567931,41.979035493790775],[-87.82402558628374,41.97915679805458],[-87.82400954967305,41.979276978044055],[-87.82398788191635,41.979439201457005],[-87.82397455070982,41.97955063996889],[-87.82396171829818,41.979657908673104],[-87.82393854711997,41.97983338018626],[-87.82392441787643,41.97994031409626],[-87.823908647053,41.98005939755178],[-87.82389044550091,41.98019735008017],[-87.82387459202118,41.98031755855771],[-87.82385639097066,41.98045542902482],[-87.8238390513729,41.9805867720986],[-87.82381013158191,41.980809637921936],[-87.82379284747114,41.9809431765914],[-87.82376233909218,41.981176161456744],[-87.82373932038128,41.98136534882442],[-87.82373929519805,41.9813655550769],[-87.82373929440999,41.981365561659494],[-87.82373925661547,41.9813658735079],[-87.82372065815558,41.98151872799586],[-87.82370122386067,41.981663617826015],[-87.82368059777669,41.981814924073326],[-87.82365261019308,41.982022261470384],[-87.82363707867577,41.98213887639665],[-87.82362004708061,41.982273955354366],[-87.82360146685198,41.98242131680392],[-87.82358389695676,41.98255833927515],[-87.823567319048,41.982690783048504],[-87.82353868663616,41.98292352913379],[-87.8235282613399,41.98302551429472],[-87.82352161242233,41.98308077061571],[-87.82352034439103,41.98309131014031],[-87.82352011080899,41.98309325007904],[-87.82352010647872,41.983093285734476],[-87.82350501968725,41.98318912814247],[-87.82348711031828,41.98330290593326],[-87.82346703813663,41.98343997213605],[-87.82344834640206,41.983569964415516],[-87.82343712570378,41.98366143297612],[-87.82343070631856,41.983713763611],[-87.82342097442678,41.98379301911248],[-87.82339632633273,41.98398167549186],[-87.82338190155251,41.98409208292937],[-87.82337695200344,41.98412996581357],[-87.82336367142064,41.98423161416349],[-87.82333897714462,41.98442062101998],[-87.823338840429,41.98442166732651],[-87.82332742073962,41.98450899507221],[-87.82304751286333,41.98447283779888],[-87.82283462848741,41.98444475114208],[-87.82260102787582,41.98441311423004],[-87.82242577430767,41.98438922820599],[-87.82230614420133,41.98437316353926],[-87.8221575621549,41.984353182832734],[-87.82202485271918,41.984335303341915],[-87.8218260441875,41.984308731935414],[-87.82169873398837,41.98429186403829],[-87.82160055939013,41.98427885772314],[-87.82147519627343,41.98426224605917],[-87.82122917319276,41.98422964483041],[-87.82108561734739,41.98421138656437],[-87.82095278989105,41.98419449322123],[-87.82082015029272,41.984177161490415],[-87.82066855305123,41.98415719283771],[-87.82061807006507,41.98415049105969],[-87.82047220643041,41.984131014269735],[-87.81997847419416,41.98406541635584],[-87.81945284761717,41.98399655888107],[-87.81898577993105,41.983935370734535],[-87.8188157378911,41.98391317651415],[-87.81865377923415,41.98389203363808],[-87.8184442928859,41.983862664298975],[-87.81831002084948,41.98384268791048],[-87.81819695724178,41.98382445305781],[-87.81806281003507,41.983798137828614],[-87.81805605632896,41.9837965946349],[-87.81788967200703,41.983758584969735],[-87.81769431864525,41.98370993107806],[-87.81752671745093,41.98366798764137],[-87.81740390037248,41.98363697507587],[-87.81720745214386,41.983587354963355],[-87.81708470849313,41.983556397270455],[-87.81683222117069,41.983533887779835],[-87.81661714913396,41.98347081502139],[-87.81643637188577,41.983421017145425],[-87.81627097200155,41.98337540455274],[-87.81606340016754,41.983318331535315],[-87.81588600370961,41.98326955487415],[-87.81574666571665,41.98323500836983],[-87.81565041721936,41.98321164737674],[-87.81547642308031,41.983169191057804],[-87.81515924994912,41.98308971468533],[-87.81490058027177,41.98302562221877],[-87.81463313837861,41.98295934905434],[-87.81446304225646,41.98291714289208],[-87.81423355216472,41.98286067248251],[-87.81401357320463,41.98280608325711],[-87.81380981685206,41.9827557382173],[-87.81365217997981,41.982719267740094],[-87.81359292373651,41.982706211486835],[-87.81350259869897,41.98268733401915],[-87.81343200814935,41.982675396487444],[-87.81330872513436,41.982656516692415],[-87.81313197118224,41.98263719250613],[-87.81303373771789,41.98262747191829],[-87.81293555996511,41.982619946862584]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3494553.54514","perimeter":"0.0","tract_cent":"1168607.81681221","census_t_1":"17031071000","tract_numa":"16","tract_comm":"7","objectid":"710","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914786.06127837","census_tra":"071000","tract_ce_3":"41.92170149","tract_crea":"","tract_ce_2":"-87.65591185","shape_len":"7934.5340834"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65753052301429,41.91804441191484],[-87.65821910661327,41.918034165397216],[-87.65823123005252,41.918366260393995],[-87.65823598008393,41.918493648153174],[-87.65824489421057,41.91873269497679],[-87.65825638435798,41.91907880947883],[-87.6582630718429,41.91929492917177],[-87.65827204911574,41.91958663830478],[-87.6582790858758,41.91984698542815],[-87.65828436811444,41.92004238945046],[-87.6582946845996,41.92035699298572],[-87.65830460982367,41.920659849466404],[-87.65831314208305,41.92093105654797],[-87.65831884817095,41.921125271755955],[-87.65832120653448,41.92120530695631],[-87.65832872661979,41.92146050922828],[-87.65833494805533,41.921661442291835],[-87.6583474772874,41.92206610527007],[-87.6583557433388,41.92230298046631],[-87.65835907650286,41.92239847163986],[-87.65836791893855,41.92265771564074],[-87.6583820544246,41.923122505712804],[-87.65839416698118,41.92347662109279],[-87.6584073354455,41.92386161901939],[-87.65841914791952,41.92423561668556],[-87.65842418355913,41.92439503025668],[-87.65843565938503,41.924758378320576],[-87.65843927125219,41.924892400263396],[-87.65844028248848,41.92492991946891],[-87.6584533872407,41.92529161352405],[-87.65800114071357,41.925297670405655],[-87.65785695369696,41.925300377679314],[-87.65724882120816,41.92531179404162],[-87.65663774750503,41.92532326010052],[-87.65637555550256,41.92533189290072],[-87.65602698602268,41.925343369051454],[-87.65588913776283,41.92534790706403],[-87.65530722794601,41.92534664025477],[-87.65481958231906,41.92535507598883],[-87.6543209825545,41.92536369898791],[-87.65392845862223,41.92537007624935],[-87.65385237249554,41.92537145641299],[-87.65361258292027,41.9253758060545],[-87.65360618205379,41.925073027663394],[-87.65358294465076,41.92471081727976],[-87.65357550326898,41.92446650989975],[-87.65355776602316,41.92388413552593],[-87.65354794934724,41.923555797437665],[-87.65353520601474,41.92312955992084],[-87.65352997040573,41.92295444742312],[-87.65351099449649,41.92238822904008],[-87.65350710947405,41.92227437560677],[-87.65350541027422,41.92222197830028],[-87.65350333455527,41.92216140097486],[-87.65349985557584,41.922059871509454],[-87.65349644175926,41.921962623418445],[-87.65348770904914,41.921738486282585],[-87.65348382215717,41.92163873018206],[-87.65347837156041,41.92141147636579],[-87.65347486956533,41.92128564114983],[-87.65347235992725,41.92119546999229],[-87.65346611509213,41.92102227241575],[-87.65346146518301,41.92089263513079],[-87.65345253752952,41.920643269408586],[-87.65344734988383,41.92048121962939],[-87.65343865019176,41.92021042283744],[-87.65343524115224,41.92010238993587],[-87.65342818689574,41.919922696889735],[-87.65342251515841,41.919778221537356],[-87.6534209574393,41.91972420595187],[-87.65341890703898,41.91965429865592],[-87.65341196103431,41.91941564681836],[-87.6534040925607,41.919146144682735],[-87.65339804396967,41.91895099439542],[-87.65338613436629,41.91861571664725],[-87.65338421329376,41.918562013661635],[-87.65337763400342,41.918378098641284],[-87.65336745823649,41.91810496864593],[-87.65369370971933,41.91809970207643],[-87.65394778807183,41.918096046531815],[-87.65414813961519,41.91809317033331],[-87.65439434394173,41.918090487528566],[-87.65457738031516,41.9180884925514],[-87.65476192330348,41.91808648093913],[-87.65497517931227,41.918082828572985],[-87.6553994720472,41.91807704713957],[-87.65554822709295,41.91807501670408],[-87.65579577005911,41.91807088847187],[-87.65598943765714,41.91806765869919],[-87.65642909076274,41.918061606771545],[-87.65662940395399,41.91805886322802],[-87.65701155766577,41.91805256513861],[-87.65729055566126,41.918047966374196],[-87.65753052301429,41.91804441191484]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"12727393.2274","perimeter":"0.0","tract_cent":"1133858.64251421","census_t_1":"17031100100","tract_numa":"63","tract_comm":"10","objectid":"703","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1939274.95035529","census_tra":"100100","tract_ce_3":"41.9895838","tract_crea":"","tract_ce_2":"-87.78301328","shape_len":"15206.8863393"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77803607648218,41.98303480726315],[-87.77803847345739,41.98290485643697],[-87.77824435067707,41.98290908696946],[-87.77845811199795,41.982909345960266],[-87.77851703479185,41.98290941724685],[-87.77862744724813,41.982909547412945],[-87.77877243255814,41.98290971853082],[-87.7788728407177,41.98290986434685],[-87.77903673072723,41.982910061672875],[-87.77922964500875,41.98290919141181],[-87.77944224619061,41.9829082319536],[-87.77967855880671,41.98290810955758],[-87.77979864644193,41.98290804733603],[-87.77991490820561,41.98290798685239],[-87.78016810286287,41.982907862505584],[-87.78043459527761,41.98290408846536],[-87.7805739780483,41.98290271003612],[-87.78069214539,41.982903498489996],[-87.7810292970101,41.98290473685221],[-87.78121503733917,41.98290458751207],[-87.78143468861472,41.98290446369397],[-87.78166937975853,41.98290470536005],[-87.78192150448129,41.98290496415078],[-87.78223335938998,41.98290477506778],[-87.78265210603384,41.98290451973482],[-87.78285367143235,41.982903291088476],[-87.78298799545585,41.982902892318435],[-87.78313990300985,41.982902138592124],[-87.78331371393318,41.98290354776158],[-87.78360919664773,41.98291378432557],[-87.78377763482564,41.98291463331718],[-87.7840499502606,41.98290638841946],[-87.78435760068857,41.98289962550518],[-87.78449222294567,41.98289876016099],[-87.78467819128313,41.98289775560431],[-87.78506575326483,41.9828964239376],[-87.78542002696717,41.98289545348725],[-87.78565674257277,41.98289551280184],[-87.7859773108218,41.98289624588462],[-87.78624701464848,41.98289670824178],[-87.78651503191979,41.982896548876795],[-87.78680515409188,41.98289637584869],[-87.78690637441865,41.98289617136256],[-87.78705816730638,41.98289596074582],[-87.78711870734561,41.982895943382005],[-87.78722680404998,41.982895912383036],[-87.78744634249207,41.98289607838723],[-87.78755097103536,41.982897316799324],[-87.7877349708332,41.98289868538826],[-87.78773197394088,41.98304710509419],[-87.78772939442014,41.983185537880715],[-87.78772665227997,41.983360248254456],[-87.78772294870309,41.98354848297364],[-87.78771287747448,41.984103422672725],[-87.78770869082423,41.984305101663544],[-87.78770477700704,41.984569679063306],[-87.78770359694518,41.98473536839328],[-87.78770186283933,41.98497886693929],[-87.78770070887967,41.985140893146095],[-87.7876956986599,41.98522625463237],[-87.78768633246955,41.98538582690107],[-87.78768088520737,41.985679156197385],[-87.78767676746808,41.9859475544135],[-87.78767225781098,41.98624151189439],[-87.78766763225735,41.98651069992115],[-87.78766348367773,41.98675211120083],[-87.78764786094557,41.98755781398559],[-87.78763771602272,41.98808100528272],[-87.78763232131513,41.988407649284156],[-87.78762864231201,41.98863043343587],[-87.78762607136983,41.988774555677146],[-87.78762015224292,41.989103795080084],[-87.7876134011534,41.989420526012324],[-87.78761141059186,41.98952386312412],[-87.78760862140331,41.989668633857235],[-87.78760474415557,41.98986990248991],[-87.78760024581281,41.99016601593908],[-87.78759449188132,41.990544734787846],[-87.78759067320132,41.9907592855932],[-87.78758717865136,41.99093890207812],[-87.78758431292106,41.991086199269866],[-87.78757680162106,41.99131884421409],[-87.78757430870107,41.991396054126966],[-87.78757268287951,41.991604676055175],[-87.78757014988648,41.99189149949067],[-87.7875670171796,41.992068787286264],[-87.7875586726411,41.99243325953309],[-87.78754618407037,41.99297874682483],[-87.78754265386046,41.99317236067625],[-87.78753347786936,41.993668338280436],[-87.78752652331409,41.994044225486164],[-87.78752360822995,41.99419596576728],[-87.78751877589515,41.99450139971647],[-87.78751526892252,41.99471891888018],[-87.78751250225862,41.994849965032294],[-87.7875055329459,41.99517217558939],[-87.78749740879388,41.99554777009076],[-87.7874934080105,41.99573273739581],[-87.78749088190615,41.995920730323554],[-87.78747986286582,41.99669360840182],[-87.78745976660444,41.99691088202328],[-87.78744759855941,41.99704243445191],[-87.7874431162935,41.9973559375741],[-87.78722678214386,41.99735817420237],[-87.78682872921615,41.997367185834804],[-87.78681813175427,41.99736742571809],[-87.78636185921897,41.997374473055096],[-87.78596662245849,41.997376760035394],[-87.78531210878606,41.99738247631345],[-87.7849424317808,41.997385702849826],[-87.78469321534767,41.99738711900537],[-87.7845023475501,41.99738826476306],[-87.78409264669752,41.997391264818084],[-87.78363864985677,41.997394587520624],[-87.78330219124602,41.997397970307915],[-87.78285175403863,41.99740030257821],[-87.78286953545413,41.9962738219807],[-87.78286950173344,41.99620738344676],[-87.78286947833581,41.99616109148136],[-87.78132334332713,41.995465557979706],[-87.78004765466305,41.99489145084687],[-87.77968257073867,41.99472141591198],[-87.77952319369454,41.99464699287449],[-87.77926951049723,41.994528426856895],[-87.7789959697839,41.994400653652654],[-87.77879204775226,41.99430769751446],[-87.77876690832971,41.99429611163641],[-87.77869609906195,41.994263477195474],[-87.77856480932658,41.99420400746685],[-87.77845569058722,41.994154331225104],[-87.77838838006535,41.994123682741694],[-87.7782871849645,41.994076596747604],[-87.77821020966232,41.994040577411106],[-87.77813829072359,41.9940068876036],[-87.77808575280565,41.99398229246409],[-87.77802383570257,41.993953316097695],[-87.77796433691039,41.993925449076514],[-87.77781885277415,41.99385704606224],[-87.77783284504729,41.99377097313829],[-87.77783536314028,41.99368017982609],[-87.77783894346541,41.99344611709251],[-87.77784182169793,41.99325894929226],[-87.77784371590452,41.99313417978355],[-87.77784329439066,41.99306420069832],[-87.777846430237,41.99291221337789],[-87.77785031957696,41.99279354700759],[-87.77785120379085,41.99271300907407],[-87.77785228369245,41.992614195727086],[-87.77785361777538,41.99249461002836],[-87.7778545170486,41.99241656938387],[-87.77785546972369,41.992328155927424],[-87.77785650451153,41.99223452889023],[-87.77785911142036,41.99212513031838],[-87.77786106777265,41.992052391086695],[-87.77786345403435,41.991964094603794],[-87.7778661521348,41.991865316241494],[-87.77786743719774,41.99181905527353],[-87.77786955062022,41.99170294748446],[-87.77787152154343,41.99159468192306],[-87.7778722051362,41.991548719904365],[-87.77787487233252,41.99137005803636],[-87.7778771917348,41.99121751925215],[-87.7778800635681,41.99102686621495],[-87.77788330364534,41.99081069390295],[-87.7778861760155,41.99061993108676],[-87.7778870522887,41.990561703697075],[-87.77788809194978,41.99049263696207],[-87.77789037448333,41.99034009797594],[-87.77789112102509,41.99020239520196],[-87.77789159228793,41.99011535395132],[-87.7778951808467,41.98996147771432],[-87.7778986307009,41.98981352607737],[-87.77790046469987,41.98969141807521],[-87.77790204716479,41.989589780581994],[-87.7779042640396,41.989511173283965],[-87.77790770127933,41.989389292568355],[-87.77790885357543,41.9893484337179],[-87.77791168785883,41.98920857557328],[-87.7779155180219,41.98901762524338],[-87.77791679717896,41.98895375057673],[-87.77791857305759,41.98886506251316],[-87.77792217999318,41.98868709143186],[-87.77792523522959,41.98853450097727],[-87.77792840677068,41.988390363491995],[-87.77793222753839,41.988216728992114],[-87.77793693933349,41.9879624193092],[-87.77793977212163,41.987810020127206],[-87.77794330496033,41.98761939761551],[-87.7779458457562,41.98747942824008],[-87.77795131047908,41.98720618718204],[-87.77795779632507,41.98685832525379],[-87.77796338004183,41.98655885127772],[-87.77796660660186,41.98638580000807],[-87.77797177218187,41.98610399554217],[-87.77797458136384,41.985950690609464],[-87.77798103542685,41.9855974333502],[-87.77798383283368,41.9854448418392],[-87.77798773495454,41.98522861763323],[-87.77799031251983,41.9850886209345],[-87.77799303583296,41.984936083935374],[-87.77799752933592,41.984731284487715],[-87.77799846066048,41.984688830153004],[-87.77800233310403,41.98450957017501],[-87.77800882186466,41.984190368541746],[-87.77801627996965,41.98387388833967],[-87.77802135398312,41.983658218582775],[-87.77802705761508,41.98341664659187],[-87.77803007506643,41.98328949484384],[-87.77803276381697,41.98317477274067],[-87.77803607648218,41.98303480726315]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4831993.42743","perimeter":"0.0","tract_cent":"1173496.54683461","census_t_1":"17031063300","tract_numa":"15","tract_comm":"6","objectid":"708","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919546.74360116","census_tra":"063300","tract_ce_3":"41.93465762","tract_crea":"","tract_ce_2":"-87.63780762","shape_len":"10647.9761277"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63222573022608,41.936648216241615],[-87.63220839558309,41.936568352483455],[-87.63220203017212,41.93653947299596],[-87.63220149130404,41.93653702954808],[-87.63218798316659,41.93647574773922],[-87.63218805930087,41.9364753736186],[-87.63219459206506,41.93644340771541],[-87.63219842191356,41.93642466944365],[-87.63220604164944,41.936387384476255],[-87.63219560331278,41.936340449515846],[-87.6321859037291,41.93626096771765],[-87.63218511390725,41.93625449175738],[-87.63218398524943,41.93624583235018],[-87.63216975602586,41.93613664336221],[-87.63214732672543,41.93604364209701],[-87.63213763199802,41.93599929041035],[-87.63212489201047,41.93594100859236],[-87.63211691348087,41.93590804792555],[-87.63210692409658,41.935866777288844],[-87.63210095501617,41.93584205578039],[-87.63210056055077,41.93584042165994],[-87.63210053705681,41.93584038556721],[-87.63209462191665,41.9358313399027],[-87.63204290607558,41.93575225431344],[-87.63203348882615,41.93571210680437],[-87.63202766749168,41.93568728849983],[-87.63201032797866,41.93566510893073],[-87.63199809174618,41.935649456641656],[-87.63195983930993,41.935595135011816],[-87.63195914763706,41.935593523773235],[-87.6319422064259,41.93555408330719],[-87.6319383870268,41.935544462351054],[-87.6319354463803,41.93553705558312],[-87.6319195087737,41.93548226597859],[-87.63187848078715,41.9354494239133],[-87.63187484112821,41.93544651037029],[-87.63185541987555,41.9354173721714],[-87.63184240729882,41.93539784906923],[-87.63183349089245,41.93537553432795],[-87.63181919159344,41.935339748815565],[-87.63180892640675,41.93532561484915],[-87.63177284841419,41.93527593785528],[-87.63172153077315,41.9351882618557],[-87.6317214741253,41.93518816573637],[-87.63165888185915,41.93512961351768],[-87.6316527904971,41.935123914971776],[-87.63165274352224,41.93512384168852],[-87.63162388684252,41.935078459021405],[-87.63162377742239,41.93507834913285],[-87.6316206853218,41.93507524216772],[-87.63161880083409,41.9350733486664],[-87.63159215085396,41.93504656907848],[-87.63158368802586,41.9350211102951],[-87.63158134338174,41.9350140556758],[-87.63157991203828,41.935009749757945],[-87.63156338165535,41.93498784976077],[-87.63155922687095,41.934982345536774],[-87.63153100581552,41.934939707380074],[-87.63150163476281,41.934895331134506],[-87.63145588477373,41.93483097372716],[-87.63145264630074,41.934822883187486],[-87.63144815973241,41.93481167444781],[-87.63144812217713,41.934811580091576],[-87.63117487719687,41.93448725146355],[-87.63093766619096,41.93420569088415],[-87.63080158473586,41.934040643798376],[-87.63072980796916,41.93394358151845],[-87.63070741519883,41.93391441039116],[-87.63064837091436,41.933875844878884],[-87.6306384124093,41.933869339960246],[-87.63057528176758,41.93381162686957],[-87.63050388473874,41.93374687993244],[-87.6305037766602,41.93374678212555],[-87.6305035777874,41.93374651856099],[-87.6304908314627,41.93372965882207],[-87.63044280946471,41.93366614027019],[-87.63044279395503,41.93366604659742],[-87.630431153918,41.933596366061586],[-87.63042521495572,41.93352322374354],[-87.6304236432107,41.933503866837434],[-87.63044265620233,41.93342239846242],[-87.63046550370603,41.93337986656514],[-87.63046550482358,41.933379865199875],[-87.63047162663362,41.933327735643275],[-87.6304964239781,41.93327500608705],[-87.63053001557473,41.93321524039408],[-87.6305302715792,41.93321478559766],[-87.63053909751967,41.933208013379414],[-87.63055727085838,41.933194070653535],[-87.63058190102765,41.933175172968035],[-87.63059998865717,41.93316876862616],[-87.63061245058302,41.9331643559064],[-87.63063086787425,41.933148274720665],[-87.63063581088625,41.933143958954744],[-87.63063582721537,41.93314394451033],[-87.6306368458256,41.933142785000584],[-87.63067107559596,41.933103811719064],[-87.63067133164436,41.93310352020356],[-87.63067149886925,41.933103352183124],[-87.63070006281174,41.93307464464075],[-87.63071269277155,41.933061951437324],[-87.63071269187985,41.93306189874288],[-87.63070977581192,41.93293189689612],[-87.63070766604045,41.93283786076316],[-87.63070478547606,41.932709447207586],[-87.63070472181157,41.93270660874759],[-87.63069943045122,41.932694214487384],[-87.63069410325086,41.93268173740662],[-87.63069400865912,41.9326815159182],[-87.63069393390413,41.932678582989205],[-87.63069307857496,41.93264497672452],[-87.63069151773256,41.93258366929682],[-87.63069144573551,41.93258359915306],[-87.63069143700622,41.932583590867004],[-87.63069137991945,41.93258353508444],[-87.63068939851269,41.932581607769045],[-87.63066159080361,41.932554561816644],[-87.63065930495112,41.93254869715421],[-87.63065923202927,41.932548510375526],[-87.63065923431249,41.93254850325453],[-87.63066080273495,41.9325436580567],[-87.63066379732695,41.93253440531647],[-87.63066958770065,41.93253106646199],[-87.63068498935536,41.932522186574026],[-87.63069841707431,41.93252184888139],[-87.63070869988098,41.93252159045942],[-87.6307618459477,41.932568155750836],[-87.63076184903832,41.93256820900757],[-87.63076418827816,41.93261180644598],[-87.63076764280966,41.93267617593286],[-87.63076296050924,41.93270101044716],[-87.63076972585525,41.93293105326948],[-87.63077251478705,41.93302590172787],[-87.63077064188221,41.933026376268664],[-87.6307308329263,41.93303645861579],[-87.63073061255422,41.93306326855133],[-87.63073072405044,41.933063188828015],[-87.63073925605056,41.93305710963143],[-87.63075035497907,41.9330492017527],[-87.63078906462152,41.933028143209796],[-87.63090763552476,41.93298358933745],[-87.63136464133648,41.932970493064516],[-87.63138352966429,41.93296995185075],[-87.63138266179902,41.93292244001387],[-87.63138042976344,41.932800148674296],[-87.63138385191972,41.932752831833035],[-87.6313907345579,41.93271835137163],[-87.63140048763601,41.932690255318604],[-87.63142165124133,41.932660609932185],[-87.63142475044029,41.93265702462223],[-87.63144137911671,41.9326377888683],[-87.63147374582573,41.93261531975684],[-87.63149591678076,41.93260434064921],[-87.63149671677317,41.932604012391174],[-87.63151791936706,41.932595309726345],[-87.63159975616998,41.932579207125],[-87.6317719498545,41.932581254724845],[-87.63181810268736,41.932581803457936],[-87.63199679713773,41.93260425912462],[-87.63224597497378,41.93258691412468],[-87.63244210852795,41.932589140924456],[-87.63250583516066,41.93260084981957],[-87.63256157289919,41.93262897523037],[-87.63282239265911,41.9329331168695],[-87.63392613990764,41.93290622894786],[-87.63393002779252,41.93301293438861],[-87.63399845702506,41.933014723035484],[-87.63401158402415,41.933013796410016],[-87.63411477278774,41.933006513003015],[-87.63423994334298,41.932986693565624],[-87.63436062134848,41.932957584631396],[-87.63446987143284,41.932923260877],[-87.63457831125298,41.93287898457024],[-87.63472384396798,41.93280337479925],[-87.63623951655434,41.93285406607262],[-87.6367507981703,41.9328942980898],[-87.6370267370261,41.93291141109018],[-87.63734572930663,41.93293119328689],[-87.63795450278819,41.932932118438934],[-87.63795470675272,41.93293211885096],[-87.63808930350304,41.93293232280398],[-87.63874336575338,41.932922011763075],[-87.6393243038469,41.932910970447885],[-87.63932436891005,41.93291096919462],[-87.63970512101109,41.93290373137141],[-87.64005646225468,41.93289696206529],[-87.64031925474437,41.932891559274665],[-87.64103668651063,41.932876806470134],[-87.64134291659228,41.93287030567132],[-87.64134293055976,41.932870305481075],[-87.64143917116684,41.932868262545945],[-87.64148949097614,41.93286719447749],[-87.64171126109987,41.932862485594434],[-87.64228067871898,41.93285268730025],[-87.64249406510555,41.93284841793495],[-87.64273777732386,41.93284354161541],[-87.64307261630674,41.93283684164555],[-87.64346272112924,41.93282915801648],[-87.64361139147802,41.93282622931799],[-87.64361146573117,41.93282622784309],[-87.64412458304083,41.93281611841026],[-87.64427356689289,41.932813182777785],[-87.64488630958121,41.93280061730884],[-87.64488636028918,41.932801335775],[-87.64488707311855,41.932811430542344],[-87.6448881565296,41.9328267761249],[-87.64486688686918,41.9329284042291],[-87.64479732371562,41.93318841977707],[-87.64478149933545,41.93324756625246],[-87.64473230548968,41.93341005828526],[-87.64469992348168,41.93351633975845],[-87.64469919653752,41.933518492079926],[-87.6446798041091,41.93357593328519],[-87.6446629791468,41.933604742439464],[-87.64458432883129,41.93373940998805],[-87.6445031046405,41.933862686977605],[-87.64444667433632,41.93394955967987],[-87.6444264195252,41.933980722242005],[-87.64438573082121,41.934042607205456],[-87.64435326460854,41.93409799680816],[-87.64430411309637,41.93418185303583],[-87.644266348873,41.93424858532871],[-87.64426481623309,41.93425234888194],[-87.64421972783781,41.93436306873286],[-87.64421004971591,41.9344256337051],[-87.64420856096532,41.93446492197392],[-87.64421263078452,41.93455116973469],[-87.64421377811358,41.934628947761894],[-87.64421445466067,41.93467538399226],[-87.64422416900996,41.9348751393158],[-87.64423702315183,41.93513945693115],[-87.64424005553447,41.93529477041635],[-87.64424185768043,41.935350131555595],[-87.6442474755336,41.935522695062346],[-87.64424961108178,41.93558829440648],[-87.64425762124141,41.93583436158571],[-87.6442604112721,41.93594036000974],[-87.64426238757574,41.93602464651396],[-87.64426718854999,41.93622936677572],[-87.64427286418682,41.936362704211746],[-87.64427377321755,41.936384065440386],[-87.64427925701801,41.93651289681435],[-87.64373412727663,41.9365325033558],[-87.64314419454938,41.93653650523032],[-87.64264992968621,41.936540613092404],[-87.64185831202698,41.93655409545867],[-87.6414495678167,41.93656105315915],[-87.64125819510892,41.93656431248474],[-87.64071555446141,41.93657253860318],[-87.64007800068235,41.93658224727599],[-87.63943375400254,41.93658686534419],[-87.63870159231345,41.936592295358956],[-87.63840322363342,41.93659616214964],[-87.63790977240724,41.936603053628275],[-87.63685094729871,41.936617869521555],[-87.63387478052145,41.93662983496444],[-87.63372012490888,41.936624417704216],[-87.63357855452185,41.93661988129661],[-87.63222573162098,41.93664822311068],[-87.63222573022608,41.936648216241615]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"24612044.0926","perimeter":"0.0","tract_cent":"1128045.15864133","census_t_1":"17031100300","tract_numa":"67","tract_comm":"10","objectid":"704","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1938917.21077344","census_tra":"100300","tract_ce_3":"41.98870265","tract_crea":"","tract_ce_2":"-87.80440481","shape_len":"23232.5873139"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80723991417139,41.99539519141499],[-87.80681811925209,41.99539194064286],[-87.8068161172601,41.99555685749388],[-87.80681282144394,41.99577492928393],[-87.80635388936687,41.99551616212834],[-87.80617573528868,41.99542445218944],[-87.80611687852803,41.99539464938081],[-87.80600236040797,41.99533665986561],[-87.80560665222367,41.99511707117647],[-87.80526411709917,41.994926987668954],[-87.80461554971545,41.9945597648887],[-87.80418393180702,41.99431540825442],[-87.80352369648485,41.99394156713492],[-87.80322338912065,41.993769957543044],[-87.80284940157446,41.993556241089905],[-87.80228667743903,41.993238385708246],[-87.80162553976776,41.99286513290069],[-87.80110988073075,41.9925742382449],[-87.80063192188017,41.992304606484716],[-87.80026433642182,41.99209604238641],[-87.80000955452306,41.991951447123654],[-87.79990464550565,41.9918938803334],[-87.79972776403565,41.991793360676766],[-87.79949664871677,41.99166201981723],[-87.7993923022545,41.99160327516711],[-87.79926379123592,41.99153097142399],[-87.79919657323224,41.99149278872724],[-87.79904204063449,41.99140469427502],[-87.79878733691964,41.99126020642014],[-87.7984335291492,41.991059494117074],[-87.79816186041816,41.990907379268],[-87.79811950870771,41.99088324059584],[-87.7978144707063,41.99070938401089],[-87.79755581425403,41.9905631738431],[-87.79740384602047,41.990476872874744],[-87.79720032558681,41.99036200449454],[-87.79707730083595,41.990289647901605],[-87.79681779932831,41.99013934298366],[-87.79662878167784,41.9900323137639],[-87.79625041723796,41.989818252846895],[-87.79605832307007,41.98970986363202],[-87.7959153613053,41.989629036628166],[-87.79575003211676,41.989535563157844],[-87.79565272371767,41.9894804978395],[-87.79550409054887,41.98939635044265],[-87.79534191100754,41.989304565375086],[-87.79516626047726,41.989205115490584],[-87.79493591280698,41.98907516772821],[-87.79471940283376,41.98895321516751],[-87.7946098999819,41.988890856111894],[-87.79437704812324,41.9887582517087],[-87.7941880400521,41.98865105412076],[-87.79391241669245,41.98849490406754],[-87.79383667317698,41.98845215022676],[-87.79367698605522,41.9883620210311],[-87.7935177035194,41.98827194839891],[-87.79336376858785,41.98818461745738],[-87.79320170708266,41.98809269269882],[-87.79302825503582,41.987995033604065],[-87.79283602494849,41.98788661061869],[-87.79250678207015,41.987699662024355],[-87.79236105033827,41.9876169240272],[-87.7921689319396,41.9875086102145],[-87.79196571972692,41.98739431656231],[-87.79171968513465,41.98725495805693],[-87.79153072393495,41.98714761881227],[-87.79128776710719,41.98700989298207],[-87.79109283337249,41.98689997270528],[-87.79094936977775,41.98681916428861],[-87.7907948887628,41.98673199196007],[-87.79070004806219,41.98667745603569],[-87.79056392075968,41.98659917848739],[-87.79034004232051,41.98647199597882],[-87.79019424264541,41.986389254898114],[-87.78999865054615,41.98627938452478],[-87.78989852945956,41.986223230757524],[-87.78968285031007,41.98610099817138],[-87.78950587633237,41.98600050671659],[-87.78928868891458,41.98587717981226],[-87.78912352171481,41.9857841917574],[-87.78893134030879,41.98567592736389],[-87.78875278374014,41.98557453290283],[-87.78856958100845,41.98547026214491],[-87.7884453454248,41.98539980514483],[-87.7883346168435,41.98533704101623],[-87.78819691467021,41.98525856162731],[-87.78809450001344,41.985200007932995],[-87.78804852409908,41.98517405745008],[-87.78793995373134,41.985112776827144],[-87.78786708777054,41.98507425849918],[-87.78770186283933,41.98497886693929],[-87.78770359694518,41.98473536839328],[-87.78770477700704,41.984569679063306],[-87.78770869082423,41.984305101663544],[-87.78771287747448,41.984103422672725],[-87.78772294870309,41.98354848297364],[-87.78772665227997,41.983360248254456],[-87.78772939442014,41.983185537880715],[-87.78773197394088,41.98304710509419],[-87.7877349708332,41.98289868538826],[-87.7878543483702,41.98291024212084],[-87.78793684492499,41.98290850842207],[-87.78806786846911,41.98290696921585],[-87.78834446705429,41.98289683274059],[-87.78869042010865,41.98288190864114],[-87.78917516382559,41.9828944070502],[-87.78946037090356,41.982897020937855],[-87.78952273568026,41.98289625958821],[-87.78969681735562,41.98289413434856],[-87.78998460941297,41.98289116100023],[-87.79025481898395,41.98288837817476],[-87.79038218777578,41.98288759839102],[-87.79071021074951,41.98288619574696],[-87.79086216391032,41.982884389219606],[-87.79108102329668,41.982882267374805],[-87.7913512237333,41.98288055216456],[-87.79172310001663,41.982876956044635],[-87.79206149154099,41.982875121788275],[-87.7922666295468,41.982874974673834],[-87.79258758744375,41.98287247492659],[-87.79288787303852,41.98286976746999],[-87.79302378433147,41.98286867810344],[-87.79322689208387,41.982867658037506],[-87.79351342652657,41.98286549318599],[-87.79357440525186,41.98286513639443],[-87.79378384639975,41.9828639104916],[-87.79395378221766,41.98286245880806],[-87.79413931259177,41.982861025235195],[-87.79434114001478,41.98285917419753],[-87.79472929988525,41.98285676963923],[-87.79493020331309,41.98285557979774],[-87.7951171270711,41.98285447225117],[-87.79540675822827,41.982851439046726],[-87.79557440541932,41.98285096215316],[-87.79574272141218,41.98284963744354],[-87.79602999792209,41.98284672885016],[-87.7962835832917,41.98284385402415],[-87.79660496231959,41.98284000584264],[-87.79704248148903,41.98283746775251],[-87.79726346928314,41.98283583719627],[-87.79741026761168,41.98283471224553],[-87.79758491012943,41.98283337841987],[-87.79794324360762,41.98283064048202],[-87.79824436376282,41.98283034301816],[-87.7985438344002,41.982829378471266],[-87.7986757762504,41.98282793489097],[-87.79905975963409,41.982823438359304],[-87.79935895381377,41.98282038480434],[-87.79970815908987,41.98281844109401],[-87.7999412848608,41.98281672541631],[-87.80019536466297,41.98281481816368],[-87.8002888085537,41.98281411653609],[-87.80053973242373,41.98281223228616],[-87.80087312173899,41.98281034883762],[-87.80112739019337,41.98280737921333],[-87.80142310926412,41.98280392491858],[-87.80157188601433,41.98280370857651],[-87.80185468949475,41.982803426563926],[-87.80212090444012,41.98279881248161],[-87.80230453645396,41.98279562917623],[-87.8025040867334,41.9827933413474],[-87.80276988381884,41.982790316563744],[-87.80291190376492,41.982788850476965],[-87.8030857403555,41.98278705588104],[-87.80343535820788,41.982784114824135],[-87.8037293889121,41.98278269561725],[-87.8039178572938,41.98278178558278],[-87.80426743077568,41.98277966504818],[-87.80454495244854,41.98277841738981],[-87.80468342785925,41.98277779473884],[-87.80511620179932,41.98277520374919],[-87.80533556453504,41.98277438633441],[-87.80549850472362,41.982773778897176],[-87.80578397048362,41.98276727010162],[-87.80638548094622,41.98273865191297],[-87.80694199785177,41.98277104911287],[-87.80815878342318,41.98273084868681],[-87.80841416250651,41.98272441524426],[-87.80873748817336,41.98271626103632],[-87.80923666264984,41.9827031185887],[-87.80950919070659,41.98269504669469],[-87.80971513827606,41.982688946531766],[-87.81000032407995,41.98268064224019],[-87.81045877123105,41.982668900446214],[-87.81067056322067,41.98266276755997],[-87.810822352976,41.98265837187619],[-87.81094915544273,41.9826556556296],[-87.81121387157084,41.98264972495951],[-87.8114483923371,41.982643766181155],[-87.81168379627685,41.98263770116858],[-87.81188554398418,41.982631910624534],[-87.81188926584825,41.982752793545394],[-87.81188847669898,41.98284049473359],[-87.81188675641279,41.983037850095336],[-87.81188642839133,41.98307805119805],[-87.81188457244876,41.98330095447623],[-87.81188072697508,41.98360612762949],[-87.81187532066673,41.983929938895315],[-87.81187223875177,41.98428057925491],[-87.81186987306228,41.98471922945295],[-87.81186895874137,41.98484768146347],[-87.81186752479252,41.985011503892],[-87.8118665405133,41.98512310589558],[-87.81186361065403,41.98529427406476],[-87.81186092915358,41.98549522207715],[-87.81185946738013,41.98575547565473],[-87.81185684580656,41.985991081010255],[-87.81185691394087,41.986045471146184],[-87.81185705134163,41.98615523933462],[-87.81185710530696,41.9861981597347],[-87.81186027205766,41.98649970711363],[-87.81185844077838,41.986710535879844],[-87.81185622610047,41.98694589606642],[-87.81185405680696,41.987124988501726],[-87.81185352039867,41.9871692618487],[-87.81185121238705,41.98737995121455],[-87.81184965073636,41.98756386192247],[-87.81184931671993,41.98760321089147],[-87.81184759627232,41.98781401267856],[-87.81184668520253,41.98792564267666],[-87.8118362624567,41.98814159914497],[-87.81206032862939,41.98824930369123],[-87.81225947027679,41.9883486971875],[-87.81250125773279,41.988469139761634],[-87.81273425429019,41.98858509635224],[-87.81298651187547,41.98871184216211],[-87.81325778330832,41.988848141053275],[-87.81352509124105,41.98898346088392],[-87.81382917105343,41.989138457776924],[-87.81418673518466,41.989320698689],[-87.81454038257061,41.98950083519008],[-87.81480692197412,41.98963634064724],[-87.81521845826605,41.98984524876862],[-87.81545877731271,41.98996666637907],[-87.81559512953253,41.99003554835902],[-87.81571338477346,41.9900952828354],[-87.8158666629256,41.990172674288864],[-87.81609247193755,41.99028741163617],[-87.81632963830732,41.990407907626185],[-87.81653954750416,41.990514861277944],[-87.81668908133638,41.99059141261079],[-87.81681587163239,41.99065632068066],[-87.81678475632543,41.990787311490024],[-87.81677891395476,41.990827515184925],[-87.81677779868564,41.99092446278021],[-87.81677668248832,41.990967020311224],[-87.81677250324988,41.991129046556985],[-87.81676864830197,41.99127825884054],[-87.81676590032843,41.9913906489302],[-87.8167633779264,41.99150243630856],[-87.81675842294806,41.991679822179485],[-87.81675701325152,41.99173028607179],[-87.81675675087423,41.99173967005638],[-87.81675342602684,41.99195073898344],[-87.81675171982025,41.99207076262415],[-87.81674862825709,41.992289324255],[-87.81673674180416,41.99244453760499],[-87.81672818748595,41.99255624293335],[-87.81672936168081,41.99271582344428],[-87.81672816453879,41.99282292417825],[-87.81672571698005,41.99304371147981],[-87.81672371558057,41.993283380599806],[-87.81672229023717,41.99345404172105],[-87.81672106310364,41.99360101003649],[-87.81671980615482,41.99373201301061],[-87.81671802135521,41.99391800626348],[-87.81671399565937,41.99419427385435],[-87.81671111881624,41.994391705762254],[-87.81670925875859,41.994519357806766],[-87.81670883745973,41.99464655035847],[-87.81670814020825,41.99485703468836],[-87.81670731790747,41.99510544986095],[-87.81670701407066,41.99519719254606],[-87.81670415793631,41.99537162867686],[-87.81670236189109,41.99548130593804],[-87.81670103815271,41.99555992099519],[-87.81669868107828,41.99569989222799],[-87.81669599918678,41.99588898314696],[-87.81669417503967,41.996017594965785],[-87.81669217514542,41.99615861059018],[-87.81668963909519,41.9963543156679],[-87.81668811735106,41.99647173333218],[-87.81668679220665,41.99657403079867],[-87.81669395587613,41.996976929413826],[-87.81576172191333,41.99700097687327],[-87.81553862982358,41.9970065972121],[-87.81463456009045,41.997029368499604],[-87.81400755958539,41.997045386575735],[-87.81357746025243,41.997056915658504],[-87.81306778454584,41.997070576154606],[-87.81290054692157,41.997074911860466],[-87.81216179425073,41.997094061565235],[-87.81208934296535,41.997095939491516],[-87.81154741363993,41.9971096956759],[-87.81111907365326,41.99712056328916],[-87.81093528001075,41.99712502909877],[-87.81035351295509,41.99712427418468],[-87.81031907944977,41.996545195332764],[-87.81032198360708,41.99631442125145],[-87.81032581820553,41.99600972297956],[-87.81032736314803,41.99586596148114],[-87.81032862848205,41.995747363002465],[-87.81033007028122,41.99561619689743],[-87.8103333989158,41.99541965227502],[-87.81002121730106,41.99541695981661],[-87.80935860407232,41.99541267519237],[-87.80886461458064,41.99540948630056],[-87.8085132413861,41.99540724925176],[-87.80822149739511,41.99540536623539],[-87.8079286496281,41.99540350486762],[-87.80742151497448,41.9953973838341],[-87.80735109100735,41.99539653374093],[-87.80723991417139,41.99539519141499]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7102825.09929","perimeter":"0.0","tract_cent":"1169411.03125612","census_t_1":"17031080600","tract_numa":"34","tract_comm":"8","objectid":"705","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909506.94271587","census_tra":"080600","tract_ce_3":"41.90719785","tract_crea":"","tract_ce_2":"-87.65311448","shape_len":"11110.6131561"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64824037608464,41.90950634529995],[-87.64822284629693,41.908991505427196],[-87.64821145593352,41.90857694860975],[-87.6482099399824,41.90852175336057],[-87.64820593277265,41.9084019437811],[-87.64820097078918,41.90816511450024],[-87.64819727078687,41.907988267632156],[-87.6481960352217,41.90792921840569],[-87.64818901281687,41.90759309053046],[-87.64818872773503,41.90747280890404],[-87.64818830693966,41.90729492560044],[-87.64818623008705,41.907228046446065],[-87.64818327871457,41.907133013394464],[-87.64817521939256,41.90689723583027],[-87.6481705119544,41.90676029775915],[-87.64816245784098,41.90652410884981],[-87.6481564270144,41.90637894444782],[-87.64814855080586,41.90618933936941],[-87.64814414868347,41.906014168268996],[-87.6481441180719,41.90601294278681],[-87.64813701247711,41.90572942644333],[-87.64813701174188,41.905729392136045],[-87.64813262913889,41.90555521701969],[-87.64812550271,41.9052700487756],[-87.64812117711563,41.90509752052467],[-87.64811798942668,41.904970390308456],[-87.6481160512049,41.90489309951255],[-87.64812372223497,41.904697893149724],[-87.64812180582481,41.90459884236309],[-87.64811841155559,41.90442500241795],[-87.64811626602967,41.904313024923596],[-87.64811263803398,41.90412672475839],[-87.64810682510085,41.903828666386744],[-87.64809420838512,41.903637096328566],[-87.64831279220444,41.90363307888652],[-87.64861260767685,41.90362718319831],[-87.6494780074113,41.903617813365805],[-87.6498449732799,41.903614486405814],[-87.65032275536682,41.90361015308561],[-87.6509535757929,41.90360442846858],[-87.65098908959543,41.903604106025696],[-87.65134160753092,41.903599241394346],[-87.65160378688459,41.903595199979605],[-87.65188231605302,41.90359087080152],[-87.65205822870594,41.90358818245129],[-87.65255076714438,41.90357840902755],[-87.65286743653988,41.90357212437605],[-87.65324858433202,41.90356593013026],[-87.65366037356397,41.90355925737221],[-87.65410233554675,41.90355210053003],[-87.65455397934996,41.903544784618646],[-87.65495071056489,41.90353779868235],[-87.65514125048286,41.90353442363547],[-87.65544597098636,41.903531217168734],[-87.65585955986347,41.90352686355419],[-87.65602094761306,41.90352607053679],[-87.65742450943165,41.90350864672302],[-87.65744029613587,41.90352918336223],[-87.65749659929544,41.90360242656717],[-87.65815726863147,41.90452620753918],[-87.65828901180059,41.90504119620621],[-87.65822805988023,41.905362495171914],[-87.65816987519695,41.9056692000626],[-87.65795869093066,41.907045150874715],[-87.65794752586305,41.90711490752306],[-87.65794627846037,41.90712269901899],[-87.65778769855613,41.90811343493104],[-87.65776508381293,41.90825136416749],[-87.65775179938521,41.90836846469009],[-87.65773586116636,41.908441093047976],[-87.65769059375188,41.90857765407701],[-87.65768058279235,41.908577869595675],[-87.65757623080154,41.908859801577975],[-87.6575173812608,41.90897786880663],[-87.65750697527862,41.909034475932785],[-87.65749024391833,41.9090781169328],[-87.65748556563226,41.90909031933749],[-87.65922877486447,41.909070199635515],[-87.65918674099206,41.909200359548905],[-87.6589498224007,41.90985076765916],[-87.65800830495903,41.91016459106979],[-87.65693683468008,41.91052155201123],[-87.65685130328065,41.910744634034096],[-87.65686079758393,41.9107845103937],[-87.6566821017251,41.91078488286964],[-87.65629716916278,41.91079152276826],[-87.6562149235263,41.910792941205216],[-87.65597233008354,41.91079360590492],[-87.65577598625916,41.910794869568804],[-87.65553818087375,41.91079935989269],[-87.65497724899882,41.91080951094979],[-87.65457448009673,41.91081690029091],[-87.6540796313617,41.91082410086078],[-87.65372833541183,41.910829211582595],[-87.65353281611172,41.910832390116106],[-87.65336756150238,41.910835301600294],[-87.65310748101494,41.91083988357592],[-87.65271559884167,41.910846786157414],[-87.65201384516236,41.9108581842684],[-87.65165036521891,41.9108640950404],[-87.6511057233014,41.91087378574365],[-87.65091163708205,41.910876914266204],[-87.65054811403334,41.91088336931486],[-87.65003666381996,41.91089152344173],[-87.64950135345579,41.91090048626848],[-87.6487888734579,41.91091241192705],[-87.64827157386192,41.91091961991864],[-87.64826066139489,41.910457506396924],[-87.64825097180245,41.910003180848804],[-87.64824822880628,41.90987483248807],[-87.64824037608464,41.90950634529995]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3503041.80663","perimeter":"0.0","tract_cent":"1169927.50163097","census_t_1":"17031071100","tract_numa":"18","tract_comm":"7","objectid":"712","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914824.47332902","census_tra":"071100","tract_ce_3":"41.92177819","tract_crea":"","tract_ce_2":"-87.65106188","shape_len":"7945.36266865"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65297354045178,41.91811132622806],[-87.65336745823649,41.91810496864593],[-87.65337763400342,41.918378098641284],[-87.65338421329376,41.918562013661635],[-87.65338613436629,41.91861571664725],[-87.65339804396967,41.91895099439542],[-87.6534040925607,41.919146144682735],[-87.65341196103431,41.91941564681836],[-87.65341890703898,41.91965429865592],[-87.6534209574393,41.91972420595187],[-87.65342251515841,41.919778221537356],[-87.65342818689574,41.919922696889735],[-87.65343524115224,41.92010238993587],[-87.65343865019176,41.92021042283744],[-87.65344734988383,41.92048121962939],[-87.65345253752952,41.920643269408586],[-87.65346146518301,41.92089263513079],[-87.65346611509213,41.92102227241575],[-87.65347235992725,41.92119546999229],[-87.65347486956533,41.92128564114983],[-87.65347837156041,41.92141147636579],[-87.65348382215717,41.92163873018206],[-87.65348770904914,41.921738486282585],[-87.65349644175926,41.921962623418445],[-87.65349985557584,41.922059871509454],[-87.65350333455527,41.92216140097486],[-87.65350541027422,41.92222197830028],[-87.65350710947405,41.92227437560677],[-87.65351099449649,41.92238822904008],[-87.65352997040573,41.92295444742312],[-87.65353520601474,41.92312955992084],[-87.65354794934724,41.923555797437665],[-87.65355776602316,41.92388413552593],[-87.65357550326898,41.92446650989975],[-87.65358294465076,41.92471081727976],[-87.65360618205379,41.925073027663394],[-87.65361258292027,41.9253758060545],[-87.65298093613228,41.925387260932936],[-87.65288142852783,41.9253890650595],[-87.65281628511417,41.92539024621366],[-87.65275830183644,41.92539114952035],[-87.6527203231848,41.92539174108489],[-87.65167032819191,41.92540809179256],[-87.65118343066345,41.925415172401586],[-87.65075665952132,41.925421376788044],[-87.65073776870153,41.925421651421445],[-87.64995561247093,41.92543537123314],[-87.64982701033128,41.92543762660171],[-87.64935685654878,41.92544587047929],[-87.64876128768812,41.92545384253287],[-87.64876097205884,41.92544541863156],[-87.6487468469208,41.925068179959545],[-87.64873211930625,41.92467485240583],[-87.6487285580369,41.92457972655346],[-87.64871255405077,41.924096894822284],[-87.64869672274762,41.92363013452635],[-87.6486895066357,41.923417375475545],[-87.6486833854719,41.923236900779685],[-87.64867137699758,41.92289251141184],[-87.6486469693346,41.92224549737453],[-87.64863843090588,41.92203189092701],[-87.64863255795265,41.92181705092032],[-87.64862297859341,41.92146662575711],[-87.64861109909292,41.921089635657914],[-87.64859554387007,41.92060620256928],[-87.64858857322005,41.920392084004845],[-87.64857459457028,41.919993916751444],[-87.64855167591176,41.919341100081525],[-87.64853013551931,41.91871649561015],[-87.64852396566829,41.91853748039879],[-87.64850888668123,41.91817970914153],[-87.6487214436445,41.91817795691599],[-87.64912851718549,41.91817074226542],[-87.64926372178215,41.918168345870974],[-87.64972545000498,41.918160922319196],[-87.65032404062568,41.91815129546318],[-87.65050671991395,41.91814835699625],[-87.65083421621655,41.918144133394],[-87.65093851293703,41.91814302935061],[-87.65121359486508,41.918139715435544],[-87.65155687547549,41.91813344578623],[-87.6517589624478,41.918129754207484],[-87.65215208147642,41.918123172948796],[-87.65249357954099,41.91811745495992],[-87.65251883703998,41.91811715850835],[-87.65258576520503,41.91811637283243],[-87.65264500877994,41.9181156774019],[-87.65274826491947,41.918114465381414],[-87.65297354045178,41.91811132622806]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5444535.45673","perimeter":"0.0","tract_cent":"1171776.60391905","census_t_1":"17031060900","tract_numa":"17","tract_comm":"6","objectid":"713","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1925061.83418102","census_tra":"060900","tract_ce_3":"41.94982935","tract_crea":"","tract_ce_2":"-87.64396537","shape_len":"10605.6119108"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63808110619571,41.948355734030116],[-87.64057266993548,41.947514206055835],[-87.64083363461914,41.94736932866943],[-87.64083369851566,41.947369402599705],[-87.6408491963113,41.94738536612702],[-87.64085270413106,41.947388979183216],[-87.64085271285772,41.94738898801732],[-87.64089477289795,41.9474323115488],[-87.64095489302497,41.94748738218089],[-87.6409605453878,41.947492559743885],[-87.64102714107023,41.94754699623336],[-87.64103070536676,41.94754990985059],[-87.64103072394964,41.94754992505582],[-87.64103315806561,41.94755170124282],[-87.64110516259433,41.94760424276695],[-87.6411390840725,41.94762740920081],[-87.64120817433499,41.94767459367707],[-87.64126335321457,41.94770921769757],[-87.64131508068672,41.94774167573806],[-87.64132859815398,41.947749441005705],[-87.64142566429047,41.94780529471112],[-87.64153974121689,41.9478653940444],[-87.641590887695,41.947890005776884],[-87.6416570931933,41.947921863467414],[-87.64173965464474,41.94795800813512],[-87.6417775368727,41.947974592097374],[-87.64178514623414,41.94797798586961],[-87.64182648129818,41.94799338288574],[-87.6418500246754,41.94799952298252],[-87.64187010254847,41.9480047593903],[-87.64191527719242,41.94801189225399],[-87.64193748612028,41.948013243331026],[-87.64196134338327,41.94801469433988],[-87.64199303354064,41.94801358386254],[-87.64200745731215,41.94801307851404],[-87.64201118421329,41.948012346571396],[-87.64203714911176,41.94800724719884],[-87.64205787621866,41.94799978891804],[-87.64206482621704,41.94799728797707],[-87.64208062886878,41.94798847815559],[-87.64208937413206,41.94798360302766],[-87.6420894196194,41.947983577780356],[-87.6420929351787,41.947980699412405],[-87.64211011501492,41.94796663365718],[-87.64212598510892,41.94794718986641],[-87.64212609649573,41.947947053326416],[-87.64213163642651,41.94793590483949],[-87.64213676903312,41.94792557524262],[-87.64213715102225,41.94792386872169],[-87.64214182806111,41.947902966501815],[-87.64214097248932,41.94788004690907],[-87.64213434088467,41.94785766937621],[-87.64213255342145,41.947854523627676],[-87.64212737789062,41.94784541571459],[-87.64207633895872,41.94776190420536],[-87.64204652798203,41.947718724289366],[-87.64201998636702,41.94768028107683],[-87.64192745113019,41.94757126794223],[-87.64189327123486,41.94753100100046],[-87.64176050711757,41.94740563637535],[-87.64173773507729,41.94738413359405],[-87.64163225926816,41.94728453559264],[-87.641549453525,41.947210755524495],[-87.64142706315117,41.947101704512065],[-87.64142692115522,41.947101578245835],[-87.6413610884144,41.94704292049602],[-87.64199566277405,41.9469063541082],[-87.64199570330439,41.94690634529634],[-87.6419957353599,41.94690633835442],[-87.64199574789279,41.94690633513684],[-87.64210871043437,41.94686655242448],[-87.6422613625159,41.94681464528077],[-87.64237897180068,41.94677466003142],[-87.64282190870071,41.94662334351744],[-87.64327367363813,41.94647029817674],[-87.6437250279718,41.946317632774544],[-87.6441086430069,41.94618799454278],[-87.6442920010471,41.94612603310069],[-87.64442595552087,41.946080754480505],[-87.64456113430204,41.94630497900034],[-87.64466972845474,41.94648521168863],[-87.64470710413134,41.94654649816436],[-87.64479647921074,41.94669305016617],[-87.6449153192051,41.94688799787627],[-87.6449366675714,41.9469226692018],[-87.64498953370229,41.94700852710747],[-87.64508013552287,41.94715566882971],[-87.64515229895667,41.94727484346147],[-87.6452558256927,41.94744458974777],[-87.64535624657827,41.94760929541762],[-87.64547305985809,41.9478015959365],[-87.64554887514414,41.947929134042106],[-87.64571069985294,41.947874506438836],[-87.64589066665438,41.94781375705082],[-87.64614497645329,41.94772762933854],[-87.64641573970535,41.9476359738681],[-87.64671450353373,41.947534853029886],[-87.6469353488302,41.94746007655681],[-87.64712553485087,41.94739570907568],[-87.64727640671263,41.94735358365702],[-87.64738004742547,41.94732464555375],[-87.6474281610012,41.94732163994812],[-87.64763350339972,41.94731778944917],[-87.64800871994547,41.947313495530985],[-87.64864142833054,41.94730926069264],[-87.64919888753975,41.947305640950255],[-87.64948621917233,41.947314822749384],[-87.64949351499882,41.947508519509036],[-87.64949802907883,41.94766395113753],[-87.6495028491964,41.947828824674396],[-87.64950352046193,41.947851797728376],[-87.64951024756746,41.948082241844205],[-87.6495188165135,41.94837427703628],[-87.64952970740192,41.948748268205556],[-87.64953555830466,41.948947203516376],[-87.64954158686754,41.94911500268176],[-87.64954587131355,41.94923425458568],[-87.6495491421898,41.94933408103806],[-87.6495545879344,41.94950214153694],[-87.64955904500852,41.949638884691495],[-87.64956138341108,41.949693124233676],[-87.64956629942428,41.949820566966245],[-87.64957776857787,41.950117888773775],[-87.64958529351051,41.95031296439327],[-87.64958931718927,41.950438673218656],[-87.64961875016007,41.95064282542221],[-87.64962085111084,41.95071454443719],[-87.649624926758,41.95088355748225],[-87.64962440481675,41.95095303751504],[-87.64961999005963,41.95119789607549],[-87.64937352523135,41.95125744037921],[-87.64924966980507,41.95128883744615],[-87.64908297902896,41.95133117190626],[-87.6490205729561,41.95134702153555],[-87.64890604360497,41.951376085805535],[-87.64872048188104,41.95142308545852],[-87.64834542259558,41.9515172250327],[-87.64815024407514,41.95156619710036],[-87.64784897414523,41.95164199072948],[-87.64749942043609,41.95172998239976],[-87.64698232396901,41.95186042582097],[-87.64671905528324,41.951926962676815],[-87.6462296359676,41.95205070741787],[-87.64606246570129,41.95209295557787],[-87.64558528894351,41.95221301128261],[-87.64534100415509,41.95227447240612],[-87.64503223798586,41.952352315493215],[-87.64488390683164,41.95238674246174],[-87.64480662461605,41.952403448164965],[-87.64467336935154,41.952436247396506],[-87.64458396892273,41.952451051244644],[-87.64431712588896,41.9525827638303],[-87.64188555919476,41.95344205245444],[-87.64064802108616,41.95380278200703],[-87.64063859854913,41.953761000834106],[-87.64061328316232,41.953691531846644],[-87.64061060156635,41.95368417353594],[-87.64059618432076,41.95364461000354],[-87.64059164161232,41.9536124506518],[-87.64048680859362,41.95360062525082],[-87.64045720646052,41.95351792220577],[-87.64042760440262,41.953435219152475],[-87.64039440647988,41.9533325744487],[-87.64034602208145,41.953224146854],[-87.64032779480466,41.95314720364399],[-87.64029053815896,41.95306730009091],[-87.64025721732882,41.95297603730483],[-87.6402238653917,41.95288762033937],[-87.6401419760949,41.952705002651854],[-87.64008603058754,41.9525908377946],[-87.64006011809018,41.95251953989355],[-87.64003020862661,41.95246529094806],[-87.63999679558509,41.95238256475664],[-87.63995960146868,41.95229696997408],[-87.63992615812894,41.95221708932223],[-87.63988533763887,41.95211439841407],[-87.63984445521868,41.95201739860638],[-87.63979235401882,41.95190041134401],[-87.63973262833474,41.951783377719885],[-87.63968055801,41.95166354484365],[-87.63963211434029,41.95156080805351],[-87.63958373290536,41.9514523801262],[-87.63952391580129,41.95134388307019],[-87.6394905352139,41.95125831089324],[-87.63943831107908,41.951152705422366],[-87.63939374183114,41.95104430044852],[-87.63933782957291,41.950927289927606],[-87.63929682561495,41.95084167188186],[-87.63924844564224,41.95073324408468],[-87.63920387700263,41.95062483875946],[-87.63915159209878,41.95052492399831],[-87.63911443103996,41.95043648337156],[-87.63906223942719,41.95032803216707],[-87.63901373634528,41.95023098595393],[-87.63894285667928,41.95008827354221],[-87.63889432307015,41.94999407283679],[-87.63884231714039,41.94986854844467],[-87.6387527500736,41.94969157500665],[-87.63869687177011,41.949571718608695],[-87.63863742827549,41.949429075185755],[-87.63857026944109,41.949294922006125],[-87.63850317268677,41.94915507794131],[-87.63844720222875,41.949043757820135],[-87.63838742016418,41.94893241459834],[-87.63832763830548,41.948821071344845],[-87.63821926359837,41.94862121818336],[-87.6381370139634,41.9484727451811],[-87.63808110619571,41.948355734030116]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1753394.44883","perimeter":"0.0","tract_cent":"1165689.70740691","census_t_1":"17031061400","tract_numa":"12","tract_comm":"6","objectid":"714","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923328.36643699","census_tra":"061400","tract_ce_3":"41.94520479","tract_crea":"","tract_ce_2":"-87.66638955","shape_len":"5295.99921777"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66815725699666,41.94335125762845],[-87.6687632986905,41.94334336987307],[-87.66876827254302,41.94352747487097],[-87.66877335329333,41.94371703927466],[-87.66877501128714,41.94377888839066],[-87.66878019466422,41.94397227140648],[-87.66879752898706,41.944617920880425],[-87.66881407684595,41.945166486667524],[-87.66883490921349,41.94585709522885],[-87.66885046534992,41.946649384988184],[-87.66885813120058,41.94699011581803],[-87.66866636417177,41.94699016605978],[-87.66825316902712,41.94699974763568],[-87.66765237033619,41.94700956258811],[-87.66720461136266,41.94701687523681],[-87.66672306099758,41.947024288792655],[-87.66643904156136,41.94702928588182],[-87.66618715928277,41.94703371709975],[-87.66557207297576,41.947043615691825],[-87.66522994322408,41.947048501214056],[-87.66474464472131,41.94705542994331],[-87.66463339112525,41.9470573374343],[-87.66401530118848,41.947067933839634],[-87.66400680860035,41.946746468324214],[-87.66399862568787,41.94643237280967],[-87.66399142051407,41.94614256981931],[-87.663977823796,41.94559567792333],[-87.66396797517642,41.94524349364196],[-87.66395572715031,41.94480548980046],[-87.66394846111777,41.94455835836025],[-87.6639422738872,41.944331896861236],[-87.66392963808903,41.94386938951368],[-87.66392948270924,41.9438636869524],[-87.66392669136712,41.943761148453525],[-87.66391735367066,41.94341810664464],[-87.66453953939696,41.94340825876677],[-87.66466183910634,41.94340632266052],[-87.66472962961554,41.94340534506884],[-87.66513215151713,41.94339887288674],[-87.66566687481149,41.943390272728244],[-87.66573687398187,41.94338919404948],[-87.66593322391216,41.94338616821498],[-87.66634216693372,41.94338080182882],[-87.66689562219445,41.94337353664368],[-87.66695003097455,41.94337272018432],[-87.66719093887183,41.943369103667024],[-87.66755279973908,41.94336331681667],[-87.66783190710082,41.94335885268448],[-87.66815725699666,41.94335125762845]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"887267.623538","perimeter":"0.0","tract_cent":"1169634.03998887","census_t_1":"17031061700","tract_numa":"5","tract_comm":"6","objectid":"715","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923780.44272533","census_tra":"061700","tract_ce_3":"41.94636018","tract_crea":"","tract_ce_2":"-87.65187857","shape_len":"3985.74708519"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64943888065075,41.945703791875445],[-87.64942984967314,41.94546126461382],[-87.64957801581433,41.945476356910454],[-87.64976890656997,41.945472499116356],[-87.65002700669949,41.945467229840254],[-87.6501598070397,41.94546450753152],[-87.65035139668834,41.94546059804313],[-87.65052636790112,41.945457028477975],[-87.65064497134952,41.94545503263991],[-87.65081357754391,41.94545204031671],[-87.65108842600374,41.94544802078531],[-87.65123140187433,41.945445938651936],[-87.65138555327884,41.94544369385254],[-87.65160224105513,41.945440507632945],[-87.65170870994056,41.94543894440137],[-87.65184332000635,41.94543544055553],[-87.6520066087918,41.94543119044936],[-87.65226409834682,41.94542799784766],[-87.65244942268927,41.94542567583332],[-87.6526868757348,41.94542271142333],[-87.65286863328117,41.94542046829966],[-87.65305936497528,41.945417708911236],[-87.65330730108874,41.94541412119802],[-87.65346588858114,41.945411473977536],[-87.65350752259398,41.94541077896792],[-87.65355352936942,41.945410015706926],[-87.65362501564488,41.9454088294579],[-87.6536693319732,41.94540809401291],[-87.65370619974637,41.94540748213115],[-87.6538301337893,41.94540544402989],[-87.65397274418783,41.945403077232534],[-87.65404418280528,41.945401496645815],[-87.65427161693708,41.94539606382822],[-87.65427400490628,41.945514929842496],[-87.65427455682286,41.94553178257805],[-87.65427786339615,41.94563284407694],[-87.65428210274943,41.94576332905906],[-87.65428717610939,41.94591917550239],[-87.65429217931779,41.94607463733658],[-87.65430167341773,41.94637156247482],[-87.65430978896094,41.94662520320466],[-87.65431903837103,41.94690363087142],[-87.65432606768817,41.94711415356986],[-87.65433036397808,41.94724458781156],[-87.65410731742838,41.94724878051162],[-87.653950007868,41.94725029211057],[-87.65394947929217,41.94725028980606],[-87.65374016174951,41.94724934655757],[-87.65370428223942,41.94724918494213],[-87.65361578893648,41.94724878593307],[-87.65356144275292,41.947248541013714],[-87.65351307769279,41.9472513062106],[-87.6533304897356,41.94726174513563],[-87.65311648248606,41.9472654274329],[-87.65294845312232,41.94726831815269],[-87.65282381903702,41.947270131609955],[-87.65250226875887,41.947275089922464],[-87.65221134026024,41.94727986402209],[-87.6519032264867,41.94728451892243],[-87.65171313311733,41.947287390213596],[-87.6515648202433,41.94728980266141],[-87.65129205491228,41.947294257481104],[-87.65117543332545,41.947296161477404],[-87.65086862242129,41.9473011709544],[-87.65069674862583,41.947303332733114],[-87.65052325529591,41.947305760964966],[-87.65037383395081,41.9473086296024],[-87.65008253067151,41.94731415210778],[-87.64979873189444,41.94731901054559],[-87.64967387785897,41.947320819273294],[-87.64948621917233,41.947314822749384],[-87.64947828153421,41.94710406907466],[-87.64946605514197,41.94668654690156],[-87.64945669582782,41.94637016519662],[-87.64944931295314,41.946120590214086],[-87.64944292510357,41.94586531290974],[-87.64943888065075,41.945703791875445]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13370766.0723","perimeter":"0.0","tract_cent":"1174270.26534931","census_t_1":"17031061900","tract_numa":"32","tract_comm":"0","objectid":"716","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921857.26017103","census_tra":"061900","tract_ce_3":"41.94098049","tract_crea":"","tract_ce_2":"-87.63489504","shape_len":"22338.9174543"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63754603247706,41.947433339280096],[-87.63745963416291,41.9473161430238],[-87.63738457803369,41.94720755242184],[-87.63727549664593,41.9470731443128],[-87.63718534954428,41.94695023362145],[-87.6370800493502,41.94681869399651],[-87.6369673437633,41.94666718967147],[-87.63688469724647,41.946555706946974],[-87.63677561763737,41.94642129863627],[-87.63666272721461,41.94628686682136],[-87.63658380002913,41.94618394341258],[-87.63648965830303,41.94607808240626],[-87.63638076628894,41.94592660036171],[-87.63630549662899,41.94583792742534],[-87.63625294146476,41.94576362081806],[-87.6361022174254,41.945603347816714],[-87.63604197748587,41.94553468566429],[-87.63595158680614,41.94543453793666],[-87.63584238735606,41.94531151043568],[-87.63575193526056,41.945217053671634],[-87.63567657459846,41.94513691673258],[-87.635586060573,41.94504815068196],[-87.63549951424395,41.94494518048106],[-87.63542784090025,41.94487644850731],[-87.63534879363762,41.94478490649441],[-87.63524703291503,41.94467899758206],[-87.63515280245959,41.944581671890674],[-87.63506247660753,41.94447583234733],[-87.63499461615015,41.944407123288265],[-87.63489654390384,41.94431261921565],[-87.63480597036398,41.94422954367631],[-87.63471164767881,41.9441407537539],[-87.63460595361123,41.944046203326266],[-87.63447763982724,41.94392874967545],[-87.63434554610399,41.9438084271181],[-87.63422851192917,41.94370527005221],[-87.63410779101099,41.94359070823995],[-87.63401718842593,41.94351047681996],[-87.63390774715556,41.94341021141999],[-87.63372270100736,41.94325257217943],[-87.63361713431189,41.94314663888469],[-87.63351141201493,41.94305493274083],[-87.63340187858105,41.94296320326499],[-87.63326988261485,41.94283434307799],[-87.63319048338802,41.94276546955247],[-87.62750791029302,41.943164278161085],[-87.62600671880956,41.93706459891269],[-87.62561487079225,41.9336123609923],[-87.62550682630906,41.93266459686866],[-87.63070766604045,41.93283786076316],[-87.63070977581192,41.93293189689612],[-87.63071269187985,41.93306189874288],[-87.63071269277155,41.933061951437324],[-87.63070006281174,41.93307464464075],[-87.63067149886925,41.933103352183124],[-87.63067133164436,41.93310352020356],[-87.63067107559596,41.933103811719064],[-87.6306368458256,41.933142785000584],[-87.63063582721537,41.93314394451033],[-87.63063581088625,41.933143958954744],[-87.63063086787425,41.933148274720665],[-87.63061245058302,41.9331643559064],[-87.63059998865717,41.93316876862616],[-87.63058190102765,41.933175172968035],[-87.63055727085838,41.933194070653535],[-87.63053909751967,41.933208013379414],[-87.6305302715792,41.93321478559766],[-87.63053001557473,41.93321524039408],[-87.6304964239781,41.93327500608705],[-87.63047162663362,41.933327735643275],[-87.63046550482358,41.933379865199875],[-87.63046550370603,41.93337986656514],[-87.63044265620233,41.93342239846242],[-87.6304236432107,41.933503866837434],[-87.63042521495572,41.93352322374354],[-87.630431153918,41.933596366061586],[-87.63044279395503,41.93366604659742],[-87.63044280946471,41.93366614027019],[-87.6304908314627,41.93372965882207],[-87.6305035777874,41.93374651856099],[-87.6305037766602,41.93374678212555],[-87.63050388473874,41.93374687993244],[-87.63057528176758,41.93381162686957],[-87.6306384124093,41.933869339960246],[-87.63064837091436,41.933875844878884],[-87.63070741519883,41.93391441039116],[-87.63072980796916,41.93394358151845],[-87.63080158473586,41.934040643798376],[-87.63093766619096,41.93420569088415],[-87.63117487719687,41.93448725146355],[-87.63144812217713,41.934811580091576],[-87.63144815973241,41.93481167444781],[-87.63145264630074,41.934822883187486],[-87.63145588477373,41.93483097372716],[-87.63150163476281,41.934895331134506],[-87.63153100581552,41.934939707380074],[-87.63155922687095,41.934982345536774],[-87.63156338165535,41.93498784976077],[-87.63157991203828,41.935009749757945],[-87.63158134338174,41.9350140556758],[-87.63158368802586,41.9350211102951],[-87.63159215085396,41.93504656907848],[-87.63161880083409,41.9350733486664],[-87.6316206853218,41.93507524216772],[-87.63162377742239,41.93507834913285],[-87.63162388684252,41.935078459021405],[-87.63165274352224,41.93512384168852],[-87.6316527904971,41.935123914971776],[-87.63165888185915,41.93512961351768],[-87.6317214741253,41.93518816573637],[-87.63172153077315,41.9351882618557],[-87.63177284841419,41.93527593785528],[-87.63180892640675,41.93532561484915],[-87.63181919159344,41.935339748815565],[-87.63183349089245,41.93537553432795],[-87.63184240729882,41.93539784906923],[-87.63185541987555,41.9354173721714],[-87.63187484112821,41.93544651037029],[-87.63187848078715,41.9354494239133],[-87.6319195087737,41.93548226597859],[-87.6319354463803,41.93553705558312],[-87.6319383870268,41.935544462351054],[-87.6319422064259,41.93555408330719],[-87.63195914763706,41.935593523773235],[-87.63195983930993,41.935595135011816],[-87.63199809174618,41.935649456641656],[-87.63201032797866,41.93566510893073],[-87.63202766749168,41.93568728849983],[-87.63203348882615,41.93571210680437],[-87.63204290607558,41.93575225431344],[-87.63209462191665,41.9358313399027],[-87.63210053705681,41.93584038556721],[-87.63210056055077,41.93584042165994],[-87.63210095501617,41.93584205578039],[-87.63210692409658,41.935866777288844],[-87.63211691348087,41.93590804792555],[-87.63212489201047,41.93594100859236],[-87.63213763199802,41.93599929041035],[-87.63214732672543,41.93604364209701],[-87.63216975602586,41.93613664336221],[-87.63218398524943,41.93624583235018],[-87.63218511390725,41.93625449175738],[-87.6321859037291,41.93626096771765],[-87.63219560331278,41.936340449515846],[-87.63220604164944,41.936387384476255],[-87.63219842191356,41.93642466944365],[-87.63219459206506,41.93644340771541],[-87.63218805930087,41.9364753736186],[-87.63218798316659,41.93647574773922],[-87.63220149130404,41.93653702954808],[-87.63220203017212,41.93653947299596],[-87.63220839558309,41.936568352483455],[-87.63222573022608,41.936648216241615],[-87.63222573162098,41.93664822311068],[-87.63223642140923,41.936697474347895],[-87.63225630498233,41.93675854507998],[-87.63225899986959,41.93676682162634],[-87.6322754196281,41.936817274412846],[-87.63227748405674,41.936823617650674],[-87.63227766681662,41.93682417940998],[-87.6322777027329,41.93682428939793],[-87.63229373359428,41.936910387724886],[-87.63229373636305,41.93691040338381],[-87.63229373949933,41.936910419045],[-87.63229763610668,41.936921257793],[-87.63232698109259,41.93700288200695],[-87.63232961691574,41.937007324520664],[-87.63238002692552,41.937092270225435],[-87.63238832165963,41.937106248310656],[-87.63239048763691,41.93710989844352],[-87.63239395999548,41.937115749180414],[-87.63240097996638,41.93713051338409],[-87.63242555885664,41.937182208318184],[-87.63229203153449,41.93723516190306],[-87.63236514245354,41.93738063049508],[-87.63244627306707,41.937475948050604],[-87.63254956955298,41.93759371186514],[-87.6326298073679,41.93768314051454],[-87.63266027546274,41.937717098695146],[-87.63274881600614,41.937818038871015],[-87.63278674875433,41.937857019749586],[-87.6328744011719,41.937947093899396],[-87.6329850472858,41.93807605793868],[-87.63305099603477,41.938193593473486],[-87.63309891718099,41.93829143081182],[-87.63311676123952,41.93832786125272],[-87.63316789250295,41.93843415056329],[-87.63320613306696,41.9385334845146],[-87.63322600533743,41.93858510501217],[-87.63326050925784,41.938654733076866],[-87.63330640673918,41.93874735083389],[-87.6333249936478,41.93879851918731],[-87.63335717266506,41.9388871046304],[-87.63338192189696,41.93893827623961],[-87.63339912695784,41.93897384846329],[-87.63340944409731,41.93899518067359],[-87.63343022649106,41.93903815005314],[-87.63345487757447,41.939105702640354],[-87.63349550582811,41.939217036674194],[-87.63352197686072,41.939280581435185],[-87.63355374245081,41.93935683618446],[-87.63358258627231,41.93945183421826],[-87.63359453410106,41.939503279290925],[-87.63361112566967,41.93957471902275],[-87.63363505043053,41.93964873278422],[-87.63365448316081,41.93970884990287],[-87.63369771926067,41.93985413553228],[-87.63370917025561,41.93990625922516],[-87.63370917060215,41.93990626114823],[-87.63373330228394,41.94001610790884],[-87.63376943378503,41.94012788341597],[-87.63378587151041,41.94017220274967],[-87.63378587257701,41.94017220604923],[-87.63381297521475,41.94024528194682],[-87.63385627260485,41.94038499053561],[-87.63386981147544,41.94051336148581],[-87.63387636721782,41.94059706813744],[-87.63388243570988,41.940725393845646],[-87.63387759465785,41.9407901651381],[-87.63387368519352,41.9408424737664],[-87.63386662251055,41.94094455036943],[-87.63385594059126,41.94109894340095],[-87.63386158237456,41.94126631090625],[-87.63385325844146,41.9413443490073],[-87.63387481626435,41.941422569153445],[-87.6339039052692,41.94149525755834],[-87.63395546658293,41.94156250495554],[-87.63399961839117,41.94162412930808],[-87.63405895517917,41.94166353539321],[-87.6341183529836,41.94169736338066],[-87.63420028368587,41.94172017359269],[-87.63428233629338,41.94173182870934],[-87.63433462920261,41.941732147086164],[-87.63434069869062,41.941860472752644],[-87.63445275530987,41.94186115490524],[-87.63445017158303,41.94172905713544],[-87.63444752646149,41.94159383085914],[-87.63444752581135,41.941593789417546],[-87.63448322644678,41.94158849305101],[-87.63454542421786,41.941561415757256],[-87.63460177713661,41.94153688269506],[-87.63460183751042,41.941536806773335],[-87.6346069152287,41.941530456553764],[-87.63469970889071,41.941414400360685],[-87.63472735237715,41.9409931947223],[-87.63472782016804,41.94098997229338],[-87.63476380901459,41.94074191531784],[-87.63477512192925,41.940728286950645],[-87.63477513698908,41.94072828786554],[-87.63477515168438,41.94072828850379],[-87.63477533681571,41.94072829923493],[-87.63511208733534,41.94074759884547],[-87.6350974398338,41.94085395949907],[-87.63510696301904,41.940864087034335],[-87.63513001954048,41.94086998104175],[-87.6351532639941,41.940858614528885],[-87.63517029342117,41.94071055162463],[-87.63478326830649,41.940688058304914],[-87.6347851610536,41.94067406472135],[-87.63487820284867,41.940432503488275],[-87.63498757455966,41.940148544583046],[-87.63501231563451,41.94011809459919],[-87.63504248965421,41.94008095871678],[-87.63507739674803,41.94004293449428],[-87.63510234014147,41.94001576341112],[-87.6351669030368,41.93995314912311],[-87.63523327861574,41.939895720036944],[-87.63523606782474,41.93989330671915],[-87.63530957366466,41.93983642697465],[-87.63538719831533,41.93978270035102],[-87.6354686833008,41.93973223613522],[-87.6354784190124,41.939726671590215],[-87.63547891795001,41.939726386205805],[-87.63550174802974,41.939713337092336],[-87.63568289573739,41.93965098977129],[-87.63580017917366,41.93961062310806],[-87.63584093311665,41.93977659412124],[-87.63595263105998,41.939765199451266],[-87.6359980884632,41.93976056203204],[-87.63615593162545,41.93974889748064],[-87.63631424279785,41.939741570590016],[-87.63641827602899,41.93973966398543],[-87.63647283549733,41.939738664199425],[-87.63648500145545,41.93973862799631],[-87.63651800152743,41.93973914441361],[-87.63655064440015,41.93973965536062],[-87.63655085533647,41.9397396588361],[-87.63667651804577,41.93974330308457],[-87.63680309268595,41.93975694221995],[-87.63681554577582,41.939758284222044],[-87.636815766782,41.939758308065336],[-87.63681188660175,41.939780728913526],[-87.63681188306107,41.939780750296926],[-87.63681187915587,41.93978077140369],[-87.63673420567929,41.94022957620342],[-87.63695053949222,41.94025877744241],[-87.63701572661569,41.93992492905622],[-87.63703727137303,41.93981459078708],[-87.63703727214094,41.9398145877731],[-87.63703727254129,41.939814584756895],[-87.63703756637756,41.93981308325779],[-87.6371143075969,41.93982614128562],[-87.63711530109013,41.93982631004198],[-87.63711545554143,41.93982633649975],[-87.63711547755126,41.939826340475115],[-87.63711549993161,41.9398263441783],[-87.63752919576123,41.9402880409833],[-87.6375412570957,41.94028408063018],[-87.63784918784889,41.94065469389094],[-87.63806590074952,41.9405753185432],[-87.63815761013328,41.94053519993023],[-87.63826042353256,41.94049028269901],[-87.63834373116062,41.94045269730006],[-87.63843440381021,41.94041178899013],[-87.63852994270655,41.94036868532137],[-87.63879096737635,41.940250919534975],[-87.63893846659212,41.94021051428248],[-87.63904947928626,41.94018912214098],[-87.63927891188783,41.94016147577009],[-87.63955405785809,41.94013797671617],[-87.6398376688576,41.940113754538416],[-87.64023227450734,41.940106861885525],[-87.64036763253233,41.94010451621359],[-87.64052824690738,41.940101732778466],[-87.64092783396528,41.94009646108422],[-87.6411747680843,41.940093202497486],[-87.64117477543488,41.940093202541796],[-87.64126334736991,41.94009203340274],[-87.64141141787258,41.94009019835911],[-87.64165815203471,41.94008714032505],[-87.64196052519395,41.940082893773],[-87.64198036172283,41.94008261503421],[-87.64212104736573,41.94008063910856],[-87.6423692544659,41.94007715208326],[-87.64319210943387,41.94006561390015],[-87.64337727374662,41.94006301657911],[-87.64394717993328,41.94005466722046],[-87.64439968803715,41.940044966864114],[-87.64441682915583,41.940595105982645],[-87.64442234644294,41.94081327620713],[-87.64443353419804,41.941134900032836],[-87.6444424725664,41.94139185005451],[-87.64445220162894,41.94167382902849],[-87.64445220187241,41.94167384055565],[-87.6444575266681,41.94186715632867],[-87.64446722641674,41.942228462111935],[-87.64446991679488,41.942328670073465],[-87.64447610053247,41.94259080709198],[-87.64448488075918,41.942727796065],[-87.64450646101268,41.94277748632235],[-87.64451729812322,41.94280244108819],[-87.64454502099107,41.942870663919166],[-87.64460384622201,41.94297183923743],[-87.64467179169755,41.94308624145627],[-87.64471879880979,41.943165282618864],[-87.64481407636589,41.94332145068654],[-87.64487389869144,41.94341950343529],[-87.64492682590691,41.943505220731005],[-87.64497025178693,41.94357556832278],[-87.64503600709156,41.943683782978084],[-87.64512855689709,41.94383609252102],[-87.64520839924862,41.94396892478313],[-87.64530834684955,41.94413560440588],[-87.64537584190441,41.94424816349431],[-87.64546354409289,41.94439193719462],[-87.64553549354231,41.94450932661795],[-87.64555988760618,41.94454912663541],[-87.64563130513847,41.94466566210347],[-87.64573955920703,41.944841139914146],[-87.6458105035283,41.94495614006312],[-87.64590533070343,41.94511096009764],[-87.6459888869435,41.94524735378945],[-87.64607449082769,41.945381399651524],[-87.64614785126656,41.945501782824195],[-87.64595539684845,41.94555906055138],[-87.64581641667502,41.94560663631486],[-87.64556941128076,41.94569110568639],[-87.6452574714396,41.945797742816985],[-87.64497290702757,41.94589493848522],[-87.6447257887896,41.945979405357605],[-87.64442595552087,41.946080754480505],[-87.6442920010471,41.94612603310069],[-87.6441086430069,41.94618799454278],[-87.6437250279718,41.946317632774544],[-87.64327367363813,41.94647029817674],[-87.64282190870071,41.94662334351744],[-87.64237897180068,41.94677466003142],[-87.6422613625159,41.94681464528077],[-87.64210871043437,41.94686655242448],[-87.64199574789279,41.94690633513684],[-87.6419957353599,41.94690633835442],[-87.64199570330439,41.94690634529634],[-87.64199566277405,41.9469063541082],[-87.6413610884144,41.94704292049602],[-87.64142692115522,41.947101578245835],[-87.64142706315117,41.947101704512065],[-87.641549453525,41.947210755524495],[-87.64163225926816,41.94728453559264],[-87.64173773507729,41.94738413359405],[-87.64176050711757,41.94740563637535],[-87.64189327123486,41.94753100100046],[-87.64192745113019,41.94757126794223],[-87.64201998636702,41.94768028107683],[-87.64204652798203,41.947718724289366],[-87.64207633895872,41.94776190420536],[-87.64212737789062,41.94784541571459],[-87.64213255342145,41.947854523627676],[-87.64213434088467,41.94785766937621],[-87.64214097248932,41.94788004690907],[-87.64214182806111,41.947902966501815],[-87.64213715102225,41.94792386872169],[-87.64213676903312,41.94792557524262],[-87.64213163642651,41.94793590483949],[-87.64212609649573,41.947947053326416],[-87.64212598510892,41.94794718986641],[-87.64211011501492,41.94796663365718],[-87.6420929351787,41.947980699412405],[-87.6420894196194,41.947983577780356],[-87.64208937413206,41.94798360302766],[-87.64208062886878,41.94798847815559],[-87.64206482621704,41.94799728797707],[-87.64205787621866,41.94799978891804],[-87.64203714911176,41.94800724719884],[-87.64201118421329,41.948012346571396],[-87.64200745731215,41.94801307851404],[-87.64199303354064,41.94801358386254],[-87.64196134338327,41.94801469433988],[-87.64193748612028,41.948013243331026],[-87.64191527719242,41.94801189225399],[-87.64187010254847,41.9480047593903],[-87.6418500246754,41.94799952298252],[-87.64182648129818,41.94799338288574],[-87.64178514623414,41.94797798586961],[-87.6417775368727,41.947974592097374],[-87.64173965464474,41.94795800813512],[-87.6416570931933,41.947921863467414],[-87.641590887695,41.947890005776884],[-87.64153974121689,41.9478653940444],[-87.64142566429047,41.94780529471112],[-87.64132859815398,41.947749441005705],[-87.64131508068672,41.94774167573806],[-87.64126335321457,41.94770921769757],[-87.64120817433499,41.94767459367707],[-87.6411390840725,41.94762740920081],[-87.64110516259433,41.94760424276695],[-87.64103315806561,41.94755170124282],[-87.64103072394964,41.94754992505582],[-87.64103070536676,41.94754990985059],[-87.64102714107023,41.94754699623336],[-87.6409605453878,41.947492559743885],[-87.64095489302497,41.94748738218089],[-87.64089477289795,41.9474323115488],[-87.64085271285772,41.94738898801732],[-87.64085270413106,41.947388979183216],[-87.6408491963113,41.94738536612702],[-87.64083369851566,41.947369402599705],[-87.64083363461914,41.94736932866943],[-87.64057266993548,41.947514206055835],[-87.63808110619571,41.948355734030116],[-87.6380363250606,41.948267246606406],[-87.63798788617099,41.9481645090989],[-87.63790566931381,41.94801319009777],[-87.63781945515393,41.9478789210283],[-87.63771833509034,41.94771325945837],[-87.63763968291113,41.94758472755888],[-87.63754603247706,41.947433339280096]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13579342.0361","perimeter":"0.0","tract_cent":"1163407.92470256","census_t_1":"17031720300","tract_numa":"56","tract_comm":"72","objectid":"717","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1839020.44013267","census_tra":"720300","tract_ce_3":"41.71390306","tract_crea":"","tract_ce_2":"-87.67714347","shape_len":"16429.7199411"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68112333452511,41.70637657159437],[-87.68162036664012,41.70637632437215],[-87.68162642887644,41.70654869598568],[-87.68163571969151,41.706872579405626],[-87.68165241096864,41.70738103338628],[-87.68166603297057,41.70783815098737],[-87.68167652914576,41.70819897130919],[-87.68168574235412,41.70851567256329],[-87.68169660859901,41.70887935754771],[-87.68170858679271,41.70926719889163],[-87.68171627405923,41.709521422045206],[-87.68172319036996,41.709756540301164],[-87.68172516876194,41.70982290934082],[-87.68173099580957,41.710021591843436],[-87.68173827283293,41.71026970513781],[-87.68174182602918,41.71039294554605],[-87.68174986833849,41.71067005834351],[-87.68175812165234,41.710955295529324],[-87.68176880865016,41.711325949927044],[-87.6817776760239,41.711637398873634],[-87.68178460794479,41.7118693378279],[-87.6817930610735,41.7121521844058],[-87.68180374844435,41.712435788721365],[-87.68181138285564,41.712639378352705],[-87.68181367425227,41.71270048030241],[-87.68182150879692,41.71295835408736],[-87.68183213894613,41.713309303775624],[-87.68184169148547,41.71366175671114],[-87.68184854340865,41.713915398895146],[-87.68185335617774,41.71412426847312],[-87.681860833323,41.71438128997462],[-87.68187047174563,41.71464543069418],[-87.681870471729,41.714645432340696],[-87.68188091886653,41.71495658681068],[-87.68189008615768,41.715267432955315],[-87.68189702316035,41.71549813272533],[-87.68190724364543,41.71583889903896],[-87.68191753273544,41.71612217158869],[-87.68192879413573,41.71643245323146],[-87.68192978779868,41.71646328914488],[-87.6819347902315,41.71661855263626],[-87.68193491139175,41.71662349337992],[-87.68193491951516,41.71662384963917],[-87.68193491949576,41.716623851560094],[-87.68194679073767,41.71698257284178],[-87.68195557722122,41.717284059395936],[-87.68196390037045,41.71756973573195],[-87.68196688445234,41.7176885340853],[-87.68196907373424,41.7177756990594],[-87.68197782841882,41.71812021609873],[-87.68198774131139,41.71850971940525],[-87.68199234747175,41.718634022713644],[-87.68199706730447,41.71876139865818],[-87.68200767489147,41.719111140626694],[-87.68202058335825,41.71953636145651],[-87.6820207584535,41.7195421285443],[-87.6820311273613,41.71988643480465],[-87.68204165108381,41.72023000067994],[-87.68205235845085,41.72057708140443],[-87.68205574623809,41.720675982631775],[-87.68206279734984,41.72088186949307],[-87.68206309361858,41.720890401346885],[-87.68206347443609,41.72090137036299],[-87.68206472657727,41.72093741726222],[-87.68174286760959,41.720940182780744],[-87.68089413326922,41.72095646116922],[-87.68083373452089,41.72095740365939],[-87.68003960271969,41.72096979107957],[-87.679746639525,41.720973611577826],[-87.67962731783447,41.72097516726176],[-87.67914625212006,41.72098143887139],[-87.67842316361799,41.720992092425895],[-87.67818491277029,41.72099560163423],[-87.67721960888939,41.72101062973716],[-87.67643117654498,41.72102341445144],[-87.67600806424885,41.721028899892374],[-87.67561356680095,41.72103401269599],[-87.67496075015671,41.72104138875329],[-87.67479155114053,41.721043333950306],[-87.6743993046356,41.721049073505604],[-87.67398028728091,41.72105520341],[-87.67358127154546,41.72106164257139],[-87.67314905523327,41.721068615753616],[-87.67278766577358,41.721073028684444],[-87.67236230128607,41.7210782215532],[-87.67236064291438,41.72101882683186],[-87.67234892833464,41.72059925705634],[-87.67233676718622,41.720163690776396],[-87.67232195186232,41.71970426104117],[-87.67231594615122,41.71952897412097],[-87.67230870241285,41.71926239954368],[-87.67230000985697,41.71894251557741],[-87.67229700829407,41.718832054449095],[-87.67227568406068,41.71813212965153],[-87.67226153245942,41.717661616504614],[-87.6722551451163,41.71744289293172],[-87.67224526469978,41.71710453520618],[-87.67222913873917,41.716563124477915],[-87.67222328153208,41.7163474421522],[-87.67221857612182,41.716163298443476],[-87.67221303404364,41.71597141092364],[-87.67220726890777,41.715786959504584],[-87.67220218909395,41.71562509505969],[-87.67219741203317,41.71547289703597],[-87.67219282955928,41.7153088973409],[-87.67218865802143,41.71515837463438],[-87.67218441595041,41.715007659415356],[-87.67218043087182,41.71486399858299],[-87.67217603480785,41.71470683330906],[-87.67217216244326,41.71456289868513],[-87.67216686935546,41.71437175351064],[-87.6721610298807,41.71416595049527],[-87.67215663237214,41.714009004739445],[-87.67215828531573,41.71380683384747],[-87.67215894704358,41.71372596845573],[-87.67215328178837,41.71351396424645],[-87.6721486714693,41.713341978350186],[-87.67214404976468,41.7131782528001],[-87.67213902228144,41.71300766409885],[-87.67213340143688,41.71281635232659],[-87.67212894594063,41.712665004622394],[-87.67212350922733,41.71248074681289],[-87.67211852098309,41.71230991132694],[-87.67211409147737,41.712159606602135],[-87.67210900859993,41.71199061118074],[-87.67210535016206,41.71186895971808],[-87.67210068809831,41.71169132016372],[-87.67209836807285,41.71160321397237],[-87.67209441268137,41.71145307661631],[-87.67209046759832,41.711302006244914],[-87.67208688919554,41.71116515358562],[-87.67208361415592,41.71104158492998],[-87.6720798804421,41.71089844713939],[-87.67207533775372,41.71072703786083],[-87.67207142111891,41.710576736044935],[-87.67206801475926,41.71044811733562],[-87.6720619693826,41.71018751703587],[-87.6723428144617,41.71018270284904],[-87.672479745068,41.710179812997794],[-87.67272711638309,41.7101750057007],[-87.67306440616484,41.710169561937086],[-87.6732708534982,41.710162556130406],[-87.6734544775703,41.710156324523616],[-87.67361581819792,41.71015165849569],[-87.67360097150333,41.709977439730515],[-87.67360147628474,41.70990296161582],[-87.67361285506985,41.70982887524701],[-87.67363668337009,41.70973350948781],[-87.6736418126201,41.70971043170604],[-87.67366654700331,41.70960667350151],[-87.67368708608696,41.709496249937565],[-87.67370641472044,41.7093466304377],[-87.67371533729343,41.70922615083412],[-87.67371753528685,41.709111450600574],[-87.67371453673331,41.70901595771722],[-87.67371051753459,41.708887966969],[-87.67369897847901,41.70875567934629],[-87.6736864789996,41.708652860001855],[-87.67366911607125,41.708531406199995],[-87.67364230385938,41.70839568253484],[-87.67362476619417,41.708329663397095],[-87.67361366807289,41.70828788564006],[-87.67359202716796,41.70822667268085],[-87.67355973833727,41.70814305976166],[-87.67352462707773,41.70807029816204],[-87.67350583635773,41.70803135804204],[-87.67343045720628,41.7079284245845],[-87.67335412270609,41.707825787465325],[-87.6732656332943,41.7077192933061],[-87.67316794487172,41.707624190075954],[-87.67307737864914,41.7075488868394],[-87.672952047182,41.70747105107401],[-87.67277382762633,41.707365138579284],[-87.67262379508206,41.7072747835486],[-87.67251041437774,41.70720308097338],[-87.67238199005858,41.7071126580529],[-87.67229791545863,41.707040163031195],[-87.67222789414782,41.70696862725525],[-87.6721642281534,41.70687731395664],[-87.67212582241464,41.70681191520352],[-87.67211011837207,41.7067861928245],[-87.67209017903808,41.70671639961485],[-87.67208109215039,41.70653819024133],[-87.67229873648424,41.70653458028163],[-87.6725260994163,41.70652965829678],[-87.67269839438057,41.70652719106925],[-87.67303252135986,41.706521184709814],[-87.67328372093726,41.706516668228794],[-87.67358397287421,41.706510625959744],[-87.67390216566326,41.706504960291326],[-87.67409373264319,41.706501613601546],[-87.67437254759525,41.70649688102679],[-87.67453239309836,41.706494167315945],[-87.67470553158576,41.70649156469793],[-87.6749057388169,41.70648845800294],[-87.67502449183563,41.7064860378107],[-87.67521888739924,41.70648186376329],[-87.67536654238619,41.70647869322485],[-87.67557165720032,41.70647559178812],[-87.6757101457076,41.70647349735686],[-87.67589571220446,41.706469591901524],[-87.67615925619982,41.70646475994042],[-87.67648808149664,41.706457858080036],[-87.67678750489566,41.70645264027213],[-87.67695296935878,41.70644975688112],[-87.67719040526988,41.70644458104988],[-87.6774811696011,41.7064387214134],[-87.67759306984435,41.70643672407052],[-87.67767222415594,41.706435310945906],[-87.67799573713792,41.706428626115596],[-87.67815723665487,41.706425288342906],[-87.67839423164523,41.706420310590254],[-87.67858474167419,41.70641630876455],[-87.67878642346852,41.70641224346831],[-87.67895913166764,41.706408699192295],[-87.67920684581597,41.706404908994884],[-87.67941276421236,41.706401758346885],[-87.67970203792784,41.70639478687637],[-87.67984757139446,41.706391360853225],[-87.68000808009853,41.70638824097713],[-87.68013049453128,41.70638586157097],[-87.68041697494337,41.706383415383826],[-87.6805449435964,41.706382322623384],[-87.68062167237044,41.706381736746],[-87.68086981208914,41.706379084276655],[-87.68112333452511,41.70637657159437]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3457625.77042","perimeter":"0.0","tract_cent":"1168922.34909977","census_t_1":"17031671800","tract_numa":"15","tract_comm":"67","objectid":"718","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856384.43674788","census_tra":"671800","tract_ce_3":"41.76143524","tract_crea":"","tract_ce_2":"-87.65644732","shape_len":"7860.79590595"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65864810587188,41.75781833499832],[-87.65877900393271,41.75781636231079],[-87.65878262224078,41.7579525327953],[-87.65879078525172,41.75825971564238],[-87.65879950462445,41.75857505972642],[-87.65880709083416,41.758851620151454],[-87.65881414209677,41.759109269181664],[-87.65882079937747,41.75932050974241],[-87.65882543337693,41.759523781862754],[-87.65882964000537,41.75970833148725],[-87.65883507527754,41.75992077234414],[-87.65883672839215,41.759978863820045],[-87.6588414785473,41.76014581521971],[-87.65884857134391,41.76035755227244],[-87.65884927628485,41.76043576817686],[-87.65885002954732,41.760519309955036],[-87.6588539126957,41.760673507597474],[-87.65885937431618,41.76089110895669],[-87.6588634208909,41.76105353935389],[-87.65886796914697,41.761235266225185],[-87.65887167632705,41.761345686550136],[-87.6588746744895,41.761434980924484],[-87.658878468855,41.76157666400903],[-87.65888431166452,41.7617976024454],[-87.65888872245544,41.761962572883824],[-87.6588959612435,41.762188361543686],[-87.65889627450339,41.76225438741105],[-87.65889660190754,41.76232319278821],[-87.65890115333066,41.7624905943893],[-87.65890688117443,41.762703201517155],[-87.65890703238942,41.76270878266502],[-87.65891193037433,41.76288954170041],[-87.65891713033226,41.76308252396873],[-87.65892008484902,41.763163536036004],[-87.65892348068164,41.76325665964209],[-87.65892724057318,41.763436652905895],[-87.6589313851828,41.76363591368173],[-87.65893552493054,41.76383564040418],[-87.65894109762658,41.76407354572036],[-87.65895154634549,41.764377870839596],[-87.65895512987336,41.76451142948638],[-87.65896417074462,41.7648489764892],[-87.65896728480699,41.76498085038825],[-87.6587619154503,41.76498472966637],[-87.65796779587859,41.76499729848093],[-87.65776151648146,41.76499930532074],[-87.65753525722953,41.76500150602003],[-87.65735045750435,41.76500350097665],[-87.65719300563964,41.765005200482],[-87.65716165901769,41.76500574378736],[-87.65671082881616,41.765013558544155],[-87.65653976726121,41.76501626429287],[-87.65635939372389,41.76501911744683],[-87.65593383602352,41.76502518751866],[-87.65550989206632,41.765031233151895],[-87.65532796733126,41.765035118093685],[-87.6551796277669,41.76503828522092],[-87.65472186283169,41.7650466774869],[-87.65430552546397,41.76505430864444],[-87.65411569749986,41.76505710349442],[-87.6541118798953,41.76491144839192],[-87.65410350450878,41.764597354470794],[-87.6540990924183,41.764469595807455],[-87.65409573715932,41.76431507165268],[-87.65409336805591,41.76420602663745],[-87.65409135319398,41.76414492634895],[-87.65408873021602,41.764065408764864],[-87.65408285371613,41.76390318592924],[-87.6540806770295,41.76375511810517],[-87.65407818908623,41.76358783834022],[-87.65407585341299,41.76342700857481],[-87.65406881317332,41.76323778673175],[-87.65406637203235,41.76317217173476],[-87.65406044854824,41.76298313678603],[-87.65405404423045,41.762777139214414],[-87.65404737983435,41.7625645263344],[-87.65404252376351,41.76240982887068],[-87.65404136525328,41.76232763050643],[-87.65403862408454,41.762133180355754],[-87.65403239779413,41.76187556351594],[-87.65402711576567,41.76165700364329],[-87.65402050243934,41.76141680147157],[-87.65401701887035,41.761290277946806],[-87.65400881356871,41.761032649367316],[-87.65400386101943,41.76087668891264],[-87.65399753327203,41.76067736036775],[-87.65399185030559,41.760509512760905],[-87.65398685757378,41.760362059387305],[-87.65398110371876,41.76015002810294],[-87.6539811897938,41.7599055662578],[-87.65397979475263,41.75973897891805],[-87.65397330626222,41.759596325793915],[-87.65396836945284,41.759487780336116],[-87.65396642111874,41.759345888426715],[-87.65396121578515,41.75918611157682],[-87.65395315596672,41.75902244892672],[-87.65394936546195,41.75885710977541],[-87.65394872633567,41.75874395843234],[-87.65394783597722,41.75868242591985],[-87.6539462718285,41.75857357765753],[-87.65394346285001,41.758388156006625],[-87.6539387030509,41.758213947009565],[-87.65393428157034,41.75805280288604],[-87.65393345300667,41.75802269875467],[-87.65393281335702,41.75799945978889],[-87.65393085117313,41.757928178108614],[-87.65400961139277,41.75789014070914],[-87.65406230496474,41.7578894231431],[-87.6546277396333,41.75788075839501],[-87.6553952590921,41.75786779485866],[-87.65590846202521,41.757859501671376],[-87.65664343037936,41.75784873912946],[-87.65717684394748,41.75783541374185],[-87.65749433254668,41.75783556656418],[-87.65792915105261,41.75783126273089],[-87.65815322861289,41.757826748119456],[-87.65836401698114,41.75782249803867],[-87.65864810587188,41.75781833499832]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3514919.11251","perimeter":"0.0","tract_cent":"1184402.71498929","census_t_1":"17031390500","tract_numa":"8","tract_comm":"39","objectid":"723","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872743.7742127","census_tra":"390500","tract_ce_3":"41.80597841","tract_crea":"","tract_ce_2":"-87.59919898","shape_len":"7953.20582871"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60136743417368,41.802314638739],[-87.60155846513422,41.8023127907416],[-87.60156728286461,41.802743403218734],[-87.6015730532093,41.80299050727901],[-87.60157762308305,41.80320780082972],[-87.60158192627631,41.803448501358034],[-87.60158674951496,41.80374661546563],[-87.60159562927582,41.80404286184699],[-87.60159637221619,41.804128842854155],[-87.6015980674253,41.80432498931417],[-87.60160037438351,41.80447681712559],[-87.60160375051004,41.80467651192827],[-87.6016092062684,41.804899738969915],[-87.60161406030949,41.805098455507],[-87.60161910764631,41.805324863016615],[-87.60162261498446,41.8054942072048],[-87.60162525027246,41.805710665054825],[-87.60162942789735,41.80594797851635],[-87.60163266887486,41.80613209589684],[-87.60163705066155,41.80637235771927],[-87.60164243494924,41.806640562644084],[-87.6016470989742,41.80687536513458],[-87.6016526187782,41.807102654026046],[-87.60165663191445,41.80731404340825],[-87.60166031788603,41.807512313337284],[-87.60166432718282,41.8077712991144],[-87.60166858387048,41.80804629216546],[-87.6016744594495,41.80832613586699],[-87.60167995387482,41.808578232508985],[-87.60168425127371,41.80877757655598],[-87.60168872812807,41.808984715204495],[-87.60168982595228,41.8090355189941],[-87.60169384505842,41.80923617850437],[-87.60169485519855,41.80928659753482],[-87.60170023495401,41.80958775334527],[-87.6013747565987,41.80959169719899],[-87.60104595027353,41.809595117535764],[-87.60040580081534,41.80960160028434],[-87.60016393785418,41.80960406345674],[-87.5998281224813,41.8096077097235],[-87.599265246727,41.80961399071157],[-87.59898825085784,41.80961708035653],[-87.59867521423814,41.809620704763915],[-87.59828483992429,41.8096256444071],[-87.59795686777173,41.809629802191736],[-87.59757391083886,41.80963407394071],[-87.59723890375825,41.809637580325656],[-87.59696629728079,41.80964047669828],[-87.59683236966737,41.80964152315562],[-87.59682845648884,41.809345455937176],[-87.5968243989611,41.80917048271958],[-87.59681632755817,41.80882242927417],[-87.59681450814864,41.80865784347376],[-87.59681211951447,41.808440481620046],[-87.5968086139425,41.808240511572144],[-87.59680651354803,41.80815495878986],[-87.59680356647847,41.80803438390671],[-87.59679951062085,41.80782545849187],[-87.59679180215248,41.8074283177009],[-87.59678840999777,41.807205707800996],[-87.59678568933546,41.80703334987703],[-87.59678254570123,41.8068338757961],[-87.59677792210927,41.80661630744402],[-87.59677293247016,41.80640504857013],[-87.5967700201853,41.80619822129232],[-87.5967678394027,41.806002814884394],[-87.5967650429499,41.80575218969353],[-87.59676150115044,41.80561627044434],[-87.59675856061122,41.805469487714646],[-87.59675639503142,41.80532232575174],[-87.59675582365728,41.8052793467258],[-87.59675356895404,41.805127189604114],[-87.5967497435881,41.80495839181902],[-87.59674663648755,41.80475897278613],[-87.59674491812878,41.80459518363271],[-87.59674194166193,41.804397137563186],[-87.59673733017534,41.804180994848146],[-87.59673120242805,41.80389376838126],[-87.59672590884685,41.80365728755463],[-87.59672571917334,41.803648806523114],[-87.59672061741011,41.803402529847865],[-87.59671604349265,41.803110235295634],[-87.59671528329366,41.80304653547618],[-87.59671353579513,41.80290008964451],[-87.59671051843789,41.80268961167873],[-87.59670681831106,41.80236586284671],[-87.59697517623464,41.80236292827592],[-87.59704963766771,41.80236220302361],[-87.5971698049904,41.80236082770579],[-87.597452094102,41.802358465114274],[-87.59764018806355,41.80235695306831],[-87.59792908057237,41.80235441205304],[-87.59824730042419,41.80234989878722],[-87.59845837034945,41.802346904520114],[-87.59866183652625,41.802344967728004],[-87.59891266289793,41.80234207100791],[-87.59902652285955,41.8023406034762],[-87.5991321301477,41.802339241979105],[-87.59939084691393,41.802335906438415],[-87.59980868305793,41.802331066145385],[-87.6000413522232,41.80232837017458],[-87.60042460196144,41.802323571126315],[-87.60058915097108,41.80232193146992],[-87.60092525115854,41.80231891563693],[-87.60136743417368,41.802314638739]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10612246.3291","perimeter":"0.0","tract_cent":"1148675.09330235","census_t_1":"17031620300","tract_numa":"47","tract_comm":"62","objectid":"719","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866461.38459393","census_tra":"620300","tract_ce_3":"41.78950127","tract_crea":"","tract_ce_2":"-87.73039715","shape_len":"13308.6991158"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73735383874885,41.785786165650684],[-87.73762325642599,41.785783192719286],[-87.73764571379984,41.786768009848714],[-87.7376714202718,41.78760549568856],[-87.73767567550964,41.78773998812134],[-87.73770521283562,41.78875793092733],[-87.73770542287296,41.788764633579184],[-87.73772643896314,41.789435880970274],[-87.7377323927123,41.78963452999823],[-87.73775617871387,41.79048161102112],[-87.73778208998736,41.79124774550983],[-87.737782268985,41.791253484751415],[-87.73780011334401,41.791826198362],[-87.73780747153043,41.79207116449894],[-87.73781253436503,41.792261081145575],[-87.73781597776807,41.79239023216011],[-87.73781700692595,41.79242281854133],[-87.73781845922053,41.79246880062801],[-87.73781990376115,41.79250686512025],[-87.73783467436704,41.79289596522705],[-87.73783891223644,41.793072765897165],[-87.7377912657492,41.79307319207781],[-87.73766547261094,41.793074317088475],[-87.73725141418949,41.79307864617253],[-87.7368679426583,41.793082638332415],[-87.7367336752847,41.793084102523665],[-87.73663949436826,41.793085129321604],[-87.73637125419052,41.793088044273475],[-87.73614867568033,41.7930902354735],[-87.73585704329086,41.793092670862514],[-87.73558011625703,41.79309504481447],[-87.73541477067913,41.793097021942515],[-87.73516751918481,41.79309997745989],[-87.73499650924757,41.793101254884874],[-87.73476546652078,41.793102740689314],[-87.73467260712223,41.793103576817856],[-87.73448379666654,41.79310645943115],[-87.73432762737323,41.793108938381],[-87.73419129384199,41.79311020495944],[-87.7340513955535,41.79311150437269],[-87.73383223293375,41.79311313260243],[-87.73364929986187,41.793114976986296],[-87.73348122614283,41.79311593816794],[-87.73332225679965,41.79311587638285],[-87.73311381035414,41.79311662615316],[-87.7329635342371,41.79311598167256],[-87.73282092871206,41.79311536995743],[-87.73262914971517,41.79311804464835],[-87.73250038218639,41.793119621564905],[-87.73227651738173,41.79312212784893],[-87.73204689263646,41.79312490542063],[-87.7318958015882,41.79312548664081],[-87.7317400254353,41.793126418820876],[-87.73159258658528,41.79312730170422],[-87.7313785481303,41.793129967480276],[-87.73124167712416,41.793131445638096],[-87.73113052040259,41.79313209793038],[-87.73101114869121,41.79313281681485],[-87.73088337658656,41.793133820836815],[-87.73074005174124,41.79313526455131],[-87.73051336791994,41.793136868675994],[-87.73034588278436,41.79313805366469],[-87.73013576430034,41.793141121901044],[-87.73002393876357,41.793142702669364],[-87.72988068748813,41.793144118255015],[-87.72965766543909,41.79314667874773],[-87.72954591451561,41.7931481219538],[-87.72928781716037,41.79315059753829],[-87.72917623475107,41.793151667224016],[-87.72896697041944,41.79315358493803],[-87.72883231239925,41.79315369999651],[-87.7286496865927,41.79315400150674],[-87.72842508744615,41.793156578473365],[-87.72831380699887,41.79315868186212],[-87.72806199928431,41.79316058709195],[-87.72795242245921,41.79316141587654],[-87.72775569749031,41.79316356239419],[-87.72760998438883,41.79316548358562],[-87.72743482337444,41.79316749626639],[-87.72729035934765,41.793169176654175],[-87.72707774508993,41.79317244567312],[-87.72683696289059,41.79317407763651],[-87.72670217041872,41.79317499109508],[-87.72650544358008,41.793177327561835],[-87.72637033152866,41.79317891897793],[-87.72613927609737,41.79318170462337],[-87.72597258903349,41.79318340310559],[-87.72575081976423,41.793185304006414],[-87.72561206143457,41.79318534448072],[-87.72550402127392,41.79318537525621],[-87.725232049319,41.79318727928275],[-87.72499014709287,41.793189181912425],[-87.72481807270304,41.79319052087556],[-87.72459190410505,41.793192286463785],[-87.724388984723,41.79319420805363],[-87.72424257867333,41.79319559412195],[-87.72407047435145,41.793196218291065],[-87.72383620489992,41.793197610113054],[-87.72377944970184,41.79319793303132],[-87.72364150683595,41.79319871750808],[-87.72342142106521,41.79320092471817],[-87.7231589507109,41.793204394892484],[-87.72315214652549,41.79303050140453],[-87.72314645855877,41.79282599415016],[-87.72314374315151,41.79272696546946],[-87.72314051907394,41.79260938323313],[-87.72313483652468,41.792404272248326],[-87.72313170500577,41.79228180538584],[-87.72312602141578,41.79205778622316],[-87.72312174595913,41.79188995015639],[-87.72312052736306,41.791841314857095],[-87.72311780903793,41.791732818615785],[-87.72311370729737,41.79156986829932],[-87.72310971700223,41.79139683192986],[-87.7231039378669,41.79114620769773],[-87.72309954411134,41.791006280413335],[-87.72309746628216,41.79094068055026],[-87.72309421059126,41.790837889836695],[-87.72308945220888,41.79068618759931],[-87.72308529651158,41.790486602052276],[-87.72308275074671,41.79036432898794],[-87.72307803636848,41.79021185856997],[-87.72307224404656,41.79002809777534],[-87.72307180677198,41.790014236506984],[-87.72306884264346,41.78992080508427],[-87.72306411087976,41.789770173237045],[-87.72306119801931,41.78957739077233],[-87.72305834365487,41.78938849397996],[-87.72305541355618,41.78927214789238],[-87.72305160098065,41.78912130136753],[-87.72305151098513,41.78911776102755],[-87.72304778924709,41.7889702901856],[-87.72304392365506,41.78880566702585],[-87.72303499207362,41.78866727927359],[-87.72302729905337,41.788548081796094],[-87.7230191833209,41.788208130938685],[-87.7230184816176,41.78817873556732],[-87.72301487376482,41.78802174288595],[-87.72301245388547,41.78791733715211],[-87.72300899324878,41.787756268873736],[-87.72300548381037,41.78759292448979],[-87.72300343285642,41.7874998823534],[-87.72300042846837,41.7873604563317],[-87.72299900715936,41.7872952441147],[-87.72299751583496,41.78722682125147],[-87.72299511581556,41.787116460218996],[-87.72299164823599,41.786956285148335],[-87.72298948757236,41.78684543195841],[-87.72298693708338,41.78671459769439],[-87.72298071122553,41.78653209658197],[-87.72297591914096,41.78638283674403],[-87.7229668983551,41.78610185525935],[-87.72296146329894,41.78593657849386],[-87.72323435148485,41.78593145572969],[-87.72342077952804,41.78593016787314],[-87.72357754192734,41.785929081215535],[-87.72359118300506,41.78592898676423],[-87.72372293655827,41.78592809428917],[-87.72391721174843,41.7859267649381],[-87.72402523712181,41.785926349986845],[-87.724187428329,41.78592504293149],[-87.72442779986989,41.78592310557352],[-87.72467654224747,41.785920032839684],[-87.72489440722235,41.78591734489648],[-87.72504879414636,41.78591541816652],[-87.72526486198196,41.78591277461647],[-87.72540667054234,41.78591162881423],[-87.72557274396632,41.785910170749176],[-87.72576156186066,41.785908185355474],[-87.7259168266434,41.78590648191941],[-87.72612064329705,41.78590429339877],[-87.72627319457688,41.78590260230713],[-87.72646773385058,41.785900474192715],[-87.72663524322452,41.78589900406459],[-87.7268230311992,41.78589735589577],[-87.72699193596277,41.78589566785671],[-87.72719842861689,41.78589354670774],[-87.72736557420706,41.78589176650875],[-87.7276958316667,41.78588823900195],[-87.7278509378215,41.78588627689597],[-87.72801127992632,41.7858842483145],[-87.72817549214973,41.78588242403782],[-87.72837417514323,41.785880287079294],[-87.72846453246778,41.78587931469512],[-87.72857278443031,41.78587814938909],[-87.72871008038003,41.78587667662526],[-87.72892214700359,41.78587444449858],[-87.72907457635189,41.785873072322744],[-87.72924539508075,41.785871534563746],[-87.72950069561192,41.78586897956637],[-87.729686653651,41.78586702894677],[-87.72985222111181,41.785865310658565],[-87.72999714344803,41.78586379408915],[-87.73014624713109,41.78586221696231],[-87.73029984660066,41.78586196623178],[-87.73040941074777,41.78586178716772],[-87.73055481251006,41.78586005286735],[-87.73071528591716,41.785858123013554],[-87.73089849515664,41.785855955405246],[-87.73101301945206,41.78585458001656],[-87.73117463074819,41.785852518272236],[-87.73135534877657,41.78585011733392],[-87.73151428113948,41.78584829217703],[-87.73166877629927,41.78584651765752],[-87.73179107490387,41.78584504471967],[-87.73195976282493,41.78584299175646],[-87.73208150912986,41.78584176287912],[-87.73231106506351,41.78583964347038],[-87.7324410982351,41.78583840267977],[-87.73262378946716,41.78583672358306],[-87.73274612271425,41.78583554207681],[-87.73291876629985,41.78583387474808],[-87.73304891354778,41.78583219477859],[-87.73322446064958,41.785829873651934],[-87.73338456857103,41.78582780094511],[-87.73360562499258,41.78582489360248],[-87.73383174172491,41.78582195735547],[-87.733967921759,41.785821419814035],[-87.73408922760339,41.7858209406427],[-87.73421629032427,41.78581973723396],[-87.73437679615957,41.78581824152096],[-87.73457705256348,41.78581637646597],[-87.73468203968393,41.7858153867987],[-87.73477015845587,41.785814556134945],[-87.73519305768772,41.785810537726036],[-87.73546788463213,41.78580792568234],[-87.73573491809373,41.78580541816286],[-87.73580453566787,41.78580475144601],[-87.73600972575254,41.78580278578682],[-87.73641685236325,41.78579775329079],[-87.73729953406962,41.78578683756068],[-87.73735383874885,41.785786165650684]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1754277.90978","perimeter":"0.0","tract_cent":"1172004.03665369","census_t_1":"17031600100","tract_numa":"29","tract_comm":"60","objectid":"720","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1887674.43819483","census_tra":"600100","tract_ce_3":"41.84723115","tract_crea":"","tract_ce_2":"-87.64423323","shape_len":"5792.86703299"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64332989762586,41.848613085214666],[-87.6432327203509,41.84852247046706],[-87.6431399533867,41.84855165092073],[-87.64276095522693,41.84869169605437],[-87.64239548417686,41.84885387334714],[-87.64224823353011,41.84892555411838],[-87.64195574300962,41.848584820237754],[-87.64185302173128,41.848464607053636],[-87.64175804298749,41.84835481369461],[-87.64162365814931,41.84819277923381],[-87.64162818183229,41.84811928174749],[-87.64231405819739,41.848110884495675],[-87.64242591053684,41.84810954311803],[-87.64229973369426,41.847960406063244],[-87.64216049208513,41.847795825414046],[-87.6417265450923,41.84728290281737],[-87.64185030822804,41.84711092954254],[-87.6417423082239,41.846829585997796],[-87.64160273121126,41.84646597904548],[-87.64160242876689,41.84644714035171],[-87.64160007235058,41.8463005525087],[-87.6415894368359,41.84593533752589],[-87.64158607938225,41.84584859732104],[-87.64158045959825,41.84564439190777],[-87.64157952589169,41.845392687693774],[-87.64194297048344,41.84538748909653],[-87.64211475382574,41.84538539459549],[-87.64220655338389,41.84538436962646],[-87.64239422900194,41.84538227373854],[-87.64247721999506,41.84538134594794],[-87.64281414748605,41.84537677269143],[-87.6432173640854,41.84537129818642],[-87.64342365756642,41.84536849688775],[-87.64352801340898,41.84536707976054],[-87.64378051468258,41.84536382096668],[-87.64402268164736,41.84535912746567],[-87.64432963935906,41.84535317559031],[-87.64466083776034,41.84534895991588],[-87.64492526127698,41.84534621054418],[-87.64523703254804,41.84534320471289],[-87.64543362256455,41.845341320821476],[-87.64582640028878,41.84533755620704],[-87.64644895698291,41.84532744999846],[-87.6464517298313,41.845496803090036],[-87.64645367546504,41.845615613480945],[-87.6464546181638,41.845673202481116],[-87.6464566037385,41.845794455498826],[-87.64645798253015,41.845878662861445],[-87.64645936980713,41.8459633809804],[-87.64646159593542,41.84609933972493],[-87.64646251160723,41.84615527020229],[-87.6464650739228,41.84631174786366],[-87.6464658403595,41.846358950425426],[-87.64646699918036,41.84643033857509],[-87.64646781740821,41.846480728354614],[-87.64646901446544,41.846624507836204],[-87.64646960037483,41.846694901055336],[-87.64647114193416,41.84676584938949],[-87.64647340120543,41.84689884972691],[-87.64648892227945,41.84719816975514],[-87.64650802625576,41.8475665704796],[-87.64650920493362,41.8476360039969],[-87.64651016146534,41.84769230490409],[-87.64651076923064,41.84772809560094],[-87.6465127099283,41.84784236910655],[-87.6465186381967,41.84800404389472],[-87.6465211429306,41.84807234701771],[-87.64652171718762,41.848088006724524],[-87.64651804938546,41.84833826121916],[-87.64651132106957,41.84843893144721],[-87.64650695048027,41.84850433256089],[-87.64648298036735,41.84874480556061],[-87.64647089345632,41.84900064610944],[-87.64647378082603,41.849270946507794],[-87.6458503479339,41.849384302189115],[-87.6448892813693,41.84941759624653],[-87.64452979601874,41.849452979865156],[-87.64434224604175,41.84947143959917],[-87.64414539063665,41.849490814656214],[-87.64399883445986,41.84950523931548],[-87.6437728569947,41.849149051840136],[-87.64372027810445,41.84907302809847],[-87.64367683200595,41.84901020938422],[-87.64352610003853,41.84881930846547],[-87.64351241685732,41.84880307549846],[-87.64346618850324,41.84874823374256],[-87.64332989762586,41.848613085214666]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"98213401.4342","perimeter":"0.0","tract_cent":"1183866.7869398","census_t_1":"17031540100","tract_numa":"144","tract_comm":"54","objectid":"721","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1819597.88646003","census_tra":"540100","tract_ce_3":"41.66015267","tract_crea":"","tract_ce_2":"-87.60281892","shape_len":"46273.3494281"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58818712482245,41.65944458396755],[-87.58765092968329,41.65880566044596],[-87.58726905147941,41.65836540800843],[-87.58702889848583,41.65808854119047],[-87.5869885955871,41.658042077074676],[-87.58697811684509,41.658029996210175],[-87.5869438446371,41.65799048424351],[-87.58627312155929,41.65721720570035],[-87.58487371518397,41.65558723563977],[-87.58468362521579,41.65536581933323],[-87.58374984350057,41.65427256068314],[-87.58338557981206,41.6538347390919],[-87.58301959896508,41.653408019716004],[-87.5827408775793,41.653083547066906],[-87.5821222277637,41.65238403302237],[-87.58185896081412,41.65206234865793],[-87.58177593973922,41.65196562525014],[-87.58104739689676,41.651116826400774],[-87.58081134912258,41.65083725136411],[-87.58055931398528,41.650519918677126],[-87.58048736491357,41.65042360575974],[-87.57979209446566,41.64940510451187],[-87.57963828279829,41.64914368482386],[-87.57918195308552,41.64816068341428],[-87.57887779488219,41.64737981534689],[-87.5788335167634,41.647248234767304],[-87.57876425168287,41.64701022920754],[-87.57867652675458,41.64669869105298],[-87.57861564688852,41.64644767733272],[-87.57857536128255,41.64625352450967],[-87.57851866952235,41.64594600461625],[-87.57844636502331,41.64551837364211],[-87.57842169123148,41.645173829419456],[-87.57837707018278,41.644694639278235],[-87.57857791649988,41.644695958283044],[-87.57984669663169,41.64469746997192],[-87.57988712379485,41.64469751789973],[-87.58411482938894,41.64470245245063],[-87.58567133023234,41.644704230098185],[-87.5856720824489,41.64470423087455],[-87.58567218418123,41.64470422906638],[-87.58567246594538,41.644704225136],[-87.58643424938872,41.644693458363975],[-87.58840527095853,41.64466557760871],[-87.58855052384834,41.64466352149913],[-87.58944919032346,41.64465079711909],[-87.58944933887066,41.64465079670829],[-87.59203110186766,41.64464165522699],[-87.59283532856038,41.64463879624436],[-87.59283533222508,41.644638795719096],[-87.59283546106087,41.64463879133483],[-87.59283546435344,41.64463879135604],[-87.59283546838084,41.64463879110755],[-87.59317788012369,41.644626951750695],[-87.59390911360204,41.64461351214773],[-87.59390920874583,41.64461351056431],[-87.59444617871416,41.64460363814346],[-87.59444631887834,41.644603634927954],[-87.59474843513932,41.644599882091555],[-87.5948583439337,41.64459851601552],[-87.5952822310082,41.6445959697015],[-87.5953574920966,41.64459582172851],[-87.59575373598877,41.64459507185166],[-87.59617752919088,41.64459430518724],[-87.59669528806239,41.64459586759082],[-87.59709584484528,41.64459868148937],[-87.59758939944206,41.64460197898002],[-87.59763495977731,41.64460266386558],[-87.59767839661693,41.644603316480776],[-87.59778342266102,41.644604894801844],[-87.5978067888731,41.64460524411455],[-87.59783792809397,41.64460570957385],[-87.59823892377882,41.644611733188725],[-87.59843894839211,41.64461136506984],[-87.5985237149837,41.64461090668162],[-87.59863883402969,41.6446102835552],[-87.59875873017245,41.64460982504168],[-87.59884844894057,41.64460948176477],[-87.5992472150606,41.644608873726774],[-87.59925038632444,41.644608880807176],[-87.59981235795892,41.644610094045056],[-87.60001080104311,41.64461090881191],[-87.60007781910109,41.644611183773016],[-87.60037752365386,41.644612436914066],[-87.60123770349621,41.644613582436925],[-87.60199136463662,41.644609543642524],[-87.60249698434517,41.644610426357836],[-87.60273300061992,41.64461085674064],[-87.60362789794418,41.644611986040395],[-87.60362790196845,41.64461198606595],[-87.60442873656184,41.64460995942157],[-87.60493112426225,41.644608698055656],[-87.60510037976545,41.64460826111959],[-87.60578292267013,41.644606874875976],[-87.60653675978364,41.64460662176316],[-87.60698392167991,41.64460684147775],[-87.60724422781094,41.64460823225669],[-87.60734965809688,41.64460879529131],[-87.60750239838355,41.64460962295689],[-87.60799514208811,41.64461029122412],[-87.60805999863196,41.644608120510775],[-87.60844149367342,41.644608059327105],[-87.60851998094515,41.6446080465764],[-87.60865815752081,41.64460802370184],[-87.60885022850435,41.644607982778986],[-87.6089781827781,41.64460795518977],[-87.60918350885976,41.64460787621481],[-87.60922811862791,41.64460762978584],[-87.60925547993676,41.644607478865126],[-87.60934334321217,41.64460698480111],[-87.60948566169814,41.64460618484582],[-87.60985170253117,41.64460379626262],[-87.61022147597832,41.64460140310094],[-87.61041450024948,41.64460209583322],[-87.61046066550477,41.64460225801214],[-87.61062215847343,41.64460282536683],[-87.61066919490601,41.644602983608735],[-87.61071625694503,41.644603142266824],[-87.6108852447145,41.64460371081309],[-87.61123944811428,41.644603164729396],[-87.61156039264682,41.6446026831491],[-87.61195598656809,41.64460113235412],[-87.61210424278977,41.64460055331125],[-87.61228096068696,41.644601806096496],[-87.61257449289279,41.64460388666357],[-87.61290027229698,41.64460620400414],[-87.6132927172575,41.64460819652998],[-87.61335930153896,41.64460853128451],[-87.61358830409945,41.64460798925754],[-87.61382949142208,41.64460735838591],[-87.613986169075,41.64460619870344],[-87.61439705484558,41.64459957637081],[-87.61439707607055,41.6445995759547],[-87.61473490628485,41.64459414178778],[-87.61508462068997,41.644592485491486],[-87.61554333377762,41.6445903013341],[-87.6160499425002,41.64458786509466],[-87.61643584336726,41.64458604656094],[-87.61672526060502,41.64458464011227],[-87.61676149811348,41.644584597629404],[-87.61684742591474,41.6445844963176],[-87.61704107351402,41.644584245981534],[-87.61704234711928,41.64458424431301],[-87.61721571363194,41.64458401988166],[-87.61721571359243,41.64458402344907],[-87.6172157135438,41.64458402783973],[-87.61721910913761,41.64507426208912],[-87.61722103384861,41.6453521491459],[-87.6172305238905,41.646722483530795],[-87.61723052408921,41.646722498625955],[-87.61723214551634,41.646958718686456],[-87.61723218059927,41.646963843708164],[-87.61723266561502,41.64703452998795],[-87.61723266555424,41.64703453547628],[-87.61723337651334,41.6471368238277],[-87.61723340978844,41.64714161649696],[-87.61723677187089,41.647625195543334],[-87.61723088915845,41.64792189357081],[-87.61723088903082,41.6479219050963],[-87.61722823313717,41.64805600528818],[-87.61722463648319,41.64858558755278],[-87.61722700361348,41.648933504259006],[-87.61722987675078,41.649361310782346],[-87.61722914903272,41.649612003254035],[-87.61722947098335,41.64986934303447],[-87.61722997529185,41.65027233430936],[-87.61722997968904,41.65027560450488],[-87.61723813436332,41.65038761795022],[-87.61724387534404,41.65046648161694],[-87.6172475095027,41.65061211400285],[-87.61755023124527,41.65064421871472],[-87.61761682669561,41.65078459528164],[-87.61934022729636,41.651364766660976],[-87.61995393791693,41.65157125662157],[-87.6199395699983,41.65159976055538],[-87.6199247957948,41.65162907072548],[-87.61990697941646,41.651664416321715],[-87.61989157184094,41.65169498248699],[-87.61987331173746,41.65173120900402],[-87.61986880872001,41.651740142178895],[-87.61986392894421,41.65174982633901],[-87.61984928698317,41.65177888456476],[-87.61983785443441,41.65180157304094],[-87.61982331683585,41.6518304230659],[-87.61980967917683,41.65185919030741],[-87.61978582982499,41.65190949767642],[-87.61978053480092,41.65192066614362],[-87.61975971857795,41.651964660846616],[-87.61973860186288,41.652009290094625],[-87.61971307248025,41.65206324633285],[-87.61968681250019,41.65211874529312],[-87.61966371265595,41.65216756545923],[-87.61965502635931,41.65218592419143],[-87.61963952521646,41.6522208008379],[-87.61962313250612,41.65225768355434],[-87.6196075382741,41.6522927692863],[-87.61958767426664,41.65233746116946],[-87.61957154078922,41.65237375984322],[-87.61955935699193,41.65240117213844],[-87.61954594353594,41.65243135188235],[-87.61953354658455,41.652459243660886],[-87.61951738339808,41.652495609378256],[-87.6194990926232,41.65253676119837],[-87.61948511626176,41.6525682069746],[-87.61946950724156,41.6526033258005],[-87.61945070683237,41.65264562432932],[-87.61944519686914,41.65265802146196],[-87.61943562452474,41.652681255223875],[-87.61943562151278,41.65268126288934],[-87.61941570037024,41.652729615895694],[-87.61939816185546,41.65277218598478],[-87.61938695917397,41.652799376847106],[-87.61936871111664,41.652843669542946],[-87.61935527838395,41.65287627404946],[-87.61933870271069,41.65291650670921],[-87.61932628362945,41.65294665061287],[-87.61931899685855,41.652964337412094],[-87.61929428799874,41.653024310416164],[-87.61927821645281,41.65306331974809],[-87.61925891695849,41.65311016417472],[-87.61924930386468,41.65313349701136],[-87.61924031816307,41.65315714138651],[-87.61924031513894,41.65315715014964],[-87.61922597108557,41.6531948946322],[-87.61920984969764,41.653237315418664],[-87.61919104722057,41.65328679145804],[-87.61917949197115,41.65331719648419],[-87.6191634786789,41.65335933307134],[-87.61914759614977,41.653401124680414],[-87.61913671697219,41.65342975034989],[-87.61912443128269,41.65346207791295],[-87.61910945883979,41.65350147578655],[-87.61909785753032,41.65353200209171],[-87.61907597054359,41.653589593193],[-87.61907596450436,41.653589609895995],[-87.6190674245266,41.653612080248486],[-87.61903894748937,41.653693796029366],[-87.6190389429622,41.6536938083508],[-87.61896677242487,41.653900902039055],[-87.61889963661832,41.65409354805847],[-87.61882984620496,41.654313490660705],[-87.61874601381415,41.65457768388289],[-87.61872722226647,41.65464334991181],[-87.61868733782259,41.65478271901884],[-87.618662155382,41.65487071667827],[-87.6186621504372,41.65487073366248],[-87.6186328971212,41.65497295246352],[-87.61860677970651,41.65506421583163],[-87.61856744450554,41.65521803455101],[-87.61852924237044,41.65536742076697],[-87.61850661526795,41.65545590218576],[-87.61848179083323,41.65555297483614],[-87.61846477832945,41.65562846099831],[-87.61841136822567,41.655865442727695],[-87.61837119541627,41.65604368935109],[-87.61832567661676,41.65625480715423],[-87.6182855217583,41.6564410464849],[-87.61828551132021,41.65644109691596],[-87.61826778305837,41.65652332062277],[-87.61824741059905,41.65661780800713],[-87.61822621262267,41.65671612382927],[-87.61821312604845,41.65677681927811],[-87.61817122930046,41.65697113722635],[-87.6181240789634,41.65718982272844],[-87.61806178159058,41.6574787578729],[-87.61802182609102,41.65766406879999],[-87.6180015851775,41.657757944401446],[-87.61798450802802,41.65783714864992],[-87.61796886041782,41.65790972074678],[-87.61791510047198,41.65815905392095],[-87.61787972907769,41.65832310211763],[-87.61783719374972,41.65852037404544],[-87.61780379160857,41.65867528618722],[-87.61776340677349,41.658862581766854],[-87.61773056282918,41.65901490449433],[-87.61772169393564,41.65905296001498],[-87.6177116305524,41.65909614057423],[-87.61770957431354,41.65910496292049],[-87.61813311508968,41.659106369188926],[-87.618133118383,41.659106369209425],[-87.61828127816177,41.65910686100659],[-87.61767318777247,41.66172460247839],[-87.61748654559996,41.66250935197168],[-87.61727411270991,41.66335054247507],[-87.61723387647088,41.663555088486945],[-87.61722024365767,41.6637532824183],[-87.61721096964017,41.6638883838594],[-87.61714877542138,41.6643404697747],[-87.61696736725821,41.665229535716236],[-87.61675291960624,41.66616847949988],[-87.61665432404897,41.66656099186364],[-87.61656870941769,41.66685547454428],[-87.6164751209073,41.66725007618687],[-87.61638177519379,41.667663889909626],[-87.6163018388103,41.66798242102007],[-87.61625508867931,41.66819618803236],[-87.61618234708008,41.66844341102823],[-87.61612797359787,41.668766904347954],[-87.61608946787256,41.66889736278199],[-87.61589531676626,41.669736605854055],[-87.6157612609842,41.670354960926616],[-87.61569234279153,41.67062827862273],[-87.61566171483152,41.67074952445623],[-87.6156447921119,41.67083140596393],[-87.61556788640226,41.67120587124202],[-87.61550147875138,41.671458964948904],[-87.61546803608465,41.671586367898044],[-87.61543477328281,41.6717388137888],[-87.61538124270004,41.67198581334421],[-87.61530202399055,41.672362322171324],[-87.61522111848306,41.67268461939247],[-87.6152123424056,41.67273327686355],[-87.61515334317183,41.673060513758884],[-87.61506755251361,41.67336940192334],[-87.61497315152357,41.673835349613945],[-87.61485326506812,41.67432995342865],[-87.61477339952118,41.67468175863634],[-87.61467320724013,41.6751332619825],[-87.61463827044581,41.675271289572954],[-87.61461328454229,41.6753785055701],[-87.61455998842304,41.67560389410502],[-87.61448733848998,41.67584151080333],[-87.61445384217691,41.67597337284278],[-87.61443077758305,41.676113532862146],[-87.61441947191878,41.67618378580756],[-87.61439258378333,41.67621517749977],[-87.61438633471127,41.67624223874719],[-87.61437049950797,41.67630834684402],[-87.61436470938816,41.676332419906835],[-87.61436462224519,41.67633278380979],[-87.61435418728843,41.676376167164996],[-87.61433449744067,41.67645974657023],[-87.61420237429702,41.67690178717843],[-87.61415675764661,41.67717696463456],[-87.61414793392032,41.67722973791827],[-87.61405498197237,41.67760547350025],[-87.61394799992293,41.67809055160809],[-87.61393023069762,41.67817137939216],[-87.6139287203319,41.678178249716694],[-87.61386750650843,41.67845675978213],[-87.61376800723608,41.678885968627654],[-87.61367408126843,41.679307665326846],[-87.61352659057766,41.67997807496801],[-87.61347558589705,41.680202448034755],[-87.61337987127058,41.68062001668427],[-87.61326604850422,41.68114312869369],[-87.61316583431284,41.6815946300527],[-87.61301219152234,41.682241330310475],[-87.61289448360117,41.682578831793506],[-87.61282033456727,41.682949538247385],[-87.61261374709026,41.68382917429618],[-87.6125808399224,41.68398745323347],[-87.6125808132398,41.68398758067767],[-87.61227916267312,41.685433883943915],[-87.61216611958305,41.68543496723865],[-87.61209691170141,41.68543563038867],[-87.61197938524084,41.68543675644143],[-87.61172876373138,41.6854391574233],[-87.61139546737347,41.68544234978134],[-87.61108146833998,41.68544535590744],[-87.6109328160466,41.68544677870439],[-87.610420986099,41.685452095425525],[-87.60984370243378,41.685456970114444],[-87.60947251722276,41.6854599617258],[-87.60913259971979,41.68546270020362],[-87.60863149896318,41.685467774137834],[-87.60826591347004,41.685470899251634],[-87.60794426412667,41.68547364765288],[-87.6075363189216,41.68547694435751],[-87.6074256732143,41.68547783779268],[-87.60705656659107,41.68548131032165],[-87.60676428126705,41.68548405930978],[-87.60668320548442,41.6854848156888],[-87.60592415874524,41.68549189461737],[-87.60591041062547,41.68549202275428],[-87.60486583831175,41.68550324448226],[-87.60457531623133,41.68550518977498],[-87.60441671780978,41.685512032756094],[-87.60431196976492,41.68552237311244],[-87.60425116849632,41.68553140046712],[-87.60418822729919,41.68554513446545],[-87.60410329194232,41.68556460174448],[-87.60378873133072,41.685688405555545],[-87.60341459098156,41.68583798387394],[-87.60309329086245,41.685966435500674],[-87.60292786468011,41.686027474500776],[-87.60270431500615,41.6860864041248],[-87.60257950222721,41.686117416553756],[-87.60249157954941,41.68613806126911],[-87.60240940979571,41.68615026114625],[-87.6023216550282,41.68615606407656],[-87.60217968965172,41.686175594176106],[-87.60194230282592,41.68618333618143],[-87.60167606578537,41.68621344722583],[-87.60157012805108,41.68620935576318],[-87.60157974373044,41.686187259797535],[-87.60160097444563,41.68613847231046],[-87.60162322719655,41.686087334218975],[-87.60164536824882,41.686036454750955],[-87.60171982612636,41.685836757430145],[-87.60176124909255,41.68568984228533],[-87.60190019334092,41.685061945395354],[-87.60193580305662,41.684741589184064],[-87.60194049635653,41.68417004577072],[-87.6019387617645,41.68409654148071],[-87.6019319633683,41.683808398899316],[-87.60191980424574,41.683437095492415],[-87.60191034351286,41.68317341429468],[-87.60189606342291,41.68290212887323],[-87.60188185241886,41.68267352952564],[-87.60187890745733,41.68262615894244],[-87.60187658521666,41.68228173021032],[-87.60187546804195,41.6819278686168],[-87.60187281219545,41.68183273335236],[-87.60187165447606,41.68179156810048],[-87.60186777874215,41.681653808296865],[-87.60186192751233,41.68144582238669],[-87.60185987107377,41.681348155987116],[-87.60184595526036,41.68068718655216],[-87.60183622372206,41.68035324193255],[-87.60181993616519,41.679794343824604],[-87.60179641409404,41.67898483433943],[-87.6017755980542,41.678373325789],[-87.60175136799016,41.67766150311264],[-87.60173272897052,41.67689609872886],[-87.60172308202937,41.6767265470702],[-87.60170908780992,41.676572390905804],[-87.60168574597228,41.67638387101424],[-87.6016767475977,41.676325615943774],[-87.60165675723484,41.676196193349966],[-87.60161233810335,41.67596187347173],[-87.60154371538675,41.6756668319307],[-87.6014457499564,41.675338342107665],[-87.6013062299657,41.67496828523221],[-87.60127869247265,41.674885779698954],[-87.60120864978255,41.67472275895982],[-87.60113448385582,41.67456185248917],[-87.60106586169957,41.67442208524811],[-87.60102587562426,41.67434279545801],[-87.60095359260183,41.67420950697939],[-87.60090843099273,41.67412812399058],[-87.60085314152641,41.67403287241477],[-87.60077483373288,41.673904926244035],[-87.60074079636185,41.67384968530425],[-87.60067142613185,41.673743778179556],[-87.60062132703435,41.67366859324467],[-87.60057336526202,41.673598608713675],[-87.60051741087322,41.67351688231822],[-87.60045655608246,41.673431584449645],[-87.60038786824093,41.67333981484226],[-87.60030973961906,41.67323810508677],[-87.60027742020515,41.67319607550455],[-87.60022690655116,41.673131727885284],[-87.60019478847607,41.67309131844885],[-87.60011945616745,41.67300131755521],[-87.60006845222983,41.67294149489558],[-87.60001751306777,41.672882358710815],[-87.59996650147575,41.67282319459749],[-87.59993124134716,41.672782271055425],[-87.5998777735298,41.67272020281156],[-87.59985075155457,41.67268883381618],[-87.59979591108004,41.672625172192035],[-87.59972539270707,41.67254329755878],[-87.59967445360111,41.672484243549505],[-87.59960963972951,41.67240929354884],[-87.59957430685094,41.67236836943068],[-87.59951137209063,41.67229557195477],[-87.59947994136323,41.67225917343768],[-87.59942885698209,41.67220009094641],[-87.5993721763131,41.67213416673292],[-87.59933305262368,41.672088717614564],[-87.59927239893005,41.67201815748775],[-87.59919606655788,41.67192938454167],[-87.59912562351995,41.67184745512761],[-87.59907085834725,41.67178376591391],[-87.59899839183275,41.67169949080459],[-87.59892202397647,41.67161071744621],[-87.59882615008425,41.671499206022176],[-87.5987439312961,41.67140356174579],[-87.59861662658994,41.67125573374205],[-87.59854640615256,41.67118654351451],[-87.59851635041483,41.67115160362839],[-87.59843825150381,41.67106070573346],[-87.59836018873239,41.670969835458905],[-87.5982950937851,41.67089408704663],[-87.5982222690083,41.670809370052865],[-87.59811689870918,41.67068662782356],[-87.59804530241256,41.67060329074381],[-87.59795174541537,41.670494290747804],[-87.59783340775148,41.670356481187305],[-87.59775278222017,41.67026260276142],[-87.59764484826187,41.670136907239346],[-87.59757332679386,41.67005359778215],[-87.59742427451101,41.669877883657726],[-87.59732655008987,41.66976216054356],[-87.59723672858196,41.669655782490885],[-87.59720069396288,41.66961310526414],[-87.5971118906637,41.66950792220711],[-87.59703337897871,41.66941501732613],[-87.59695952513863,41.6693276858006],[-87.59685916455088,41.66920900867242],[-87.5967962183799,41.66913453555988],[-87.59673182652503,41.669058433986],[-87.59663262257196,41.66894110879554],[-87.59657279804354,41.66887217169141],[-87.59645057721204,41.66873197565321],[-87.59635198445979,41.66861888041854],[-87.59626000302865,41.66851340187667],[-87.59615869993128,41.668397325203564],[-87.59606527239436,41.668290300396876],[-87.595935031574,41.668141105802874],[-87.5958829188228,41.66807276667878],[-87.59568902445925,41.66784973687679],[-87.5953457379617,41.66745486077358],[-87.59455725731716,41.66654037546664],[-87.59395492430885,41.665836574086704],[-87.59383966219787,41.66570189247571],[-87.59320343897537,41.66496612824108],[-87.59270734426084,41.66439488115845],[-87.59233859362611,41.66395980393035],[-87.59212430857423,41.6637086135065],[-87.59171997275953,41.66353032561222],[-87.59168454390186,41.663490612500546],[-87.59163494965132,41.66343502031255],[-87.59106665635225,41.662785635205694],[-87.59080867931196,41.66248774504434],[-87.59074108968339,41.662409697802524],[-87.59053367549404,41.66215689199786],[-87.59011960264537,41.66165219387629],[-87.58969300155685,41.66117202856068],[-87.58951354778408,41.66097003958068],[-87.58933583143082,41.66077000483172],[-87.58911021783089,41.660516056053716],[-87.58899968212809,41.66039163650524],[-87.58888073352189,41.6602577470628],[-87.58867885640183,41.66003051174667],[-87.58832529818324,41.65960922673418],[-87.58818712482245,41.65944458396755]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3334217.21962","perimeter":"0.0","tract_cent":"1187292.34944287","census_t_1":"17031431000","tract_numa":"18","tract_comm":"43","objectid":"722","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854688.58211292","census_tra":"431000","tract_ce_3":"41.75636527","tract_crea":"","tract_ce_2":"-87.58917411","shape_len":"8884.25022156"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58613246134323,41.75867236147375],[-87.58612552589788,41.758338170728685],[-87.58612234584658,41.75812574142549],[-87.58612210898961,41.75785463100472],[-87.58611860183565,41.757734791886136],[-87.58609607370742,41.757199918944394],[-87.58608857204106,41.756944668829526],[-87.58607118956542,41.756025841285414],[-87.58593323314645,41.75546857965665],[-87.58591140359646,41.75511440636324],[-87.58590396225384,41.75499368042822],[-87.58589375879505,41.75467280549452],[-87.58587814162074,41.75391826858303],[-87.58586863509858,41.75331263202542],[-87.58586935836043,41.75317486300298],[-87.58583361637321,41.752357624921586],[-87.58581324221099,41.752013192455195],[-87.58582075287006,41.7516715174641],[-87.58587023134659,41.75170722025815],[-87.58592532528858,41.75174697502086],[-87.58598531111829,41.75179025973688],[-87.58655784508504,41.75220338458251],[-87.58707426753098,41.7525751897489],[-87.58749776297327,41.752879242397015],[-87.58787457249308,41.7531497724709],[-87.58827829265515,41.75344117387116],[-87.58844548368661,41.75356158777783],[-87.5885896329665,41.75366531603232],[-87.58875435246837,41.75378373208186],[-87.58889676250483,41.753886109459096],[-87.58915817678061,41.75407663821587],[-87.58950674296574,41.75432752891992],[-87.5898232165479,41.75455537831234],[-87.59000843752548,41.75468855288732],[-87.59027283805061,41.754878656580246],[-87.59049528522858,41.755038825290214],[-87.59081972314715,41.75527265110042],[-87.59108957082414,41.75546696218437],[-87.591210403032,41.755552573134565],[-87.59121755621865,41.75555764113143],[-87.59130417793384,41.755619013997546],[-87.59139333690953,41.75568218368397],[-87.5917084786197,41.75590908618967],[-87.59199374411433,41.756114444409796],[-87.59229460629054,41.756330934595496],[-87.59258192116202,41.75653688086729],[-87.59284869531402,41.756728478565876],[-87.593061934711,41.7568817894205],[-87.59319699723774,41.75697889361477],[-87.59328446117878,41.75704177647569],[-87.59352305257461,41.75721444723046],[-87.5935802653748,41.75725584288043],[-87.5936899148713,41.75733461203969],[-87.59394904603174,41.75752076377126],[-87.59428734455162,41.757759389121986],[-87.59444436925581,41.75787568540168],[-87.59454951789668,41.75795356006142],[-87.59487144657616,41.75816584320315],[-87.59492934309155,41.758186111476654],[-87.59510321388473,41.758312540588236],[-87.5954075063207,41.75853380295323],[-87.59563037137991,41.758695855166756],[-87.5955455376855,41.75869611478416],[-87.59549009735525,41.758696284562895],[-87.59537967522238,41.758696622594385],[-87.5952930033911,41.75869688750792],[-87.59522619262185,41.758697091968294],[-87.59492296160626,41.758698019248065],[-87.59483265556653,41.758696352072384],[-87.59447370887476,41.7586897247491],[-87.59386287095057,41.75869637853103],[-87.59370869567061,41.758698057417526],[-87.59335770961424,41.758699008207294],[-87.59322885078615,41.75870064203222],[-87.59275917605682,41.75870659543039],[-87.59262384310372,41.758707907750114],[-87.59236981995723,41.758710369481136],[-87.59201274869761,41.758713761329],[-87.59170052621903,41.75871672641354],[-87.59137170981232,41.758718061226375],[-87.59099917733653,41.75872177461796],[-87.59088562253234,41.7587229083593],[-87.59079961233483,41.75872376720087],[-87.59057869900305,41.75872597269578],[-87.59026713181967,41.75872848613487],[-87.59019176663045,41.75872934970016],[-87.58980020259402,41.758733835408115],[-87.58958551327746,41.75873541378006],[-87.58922256131672,41.75873808159333],[-87.58892700331378,41.75874127138451],[-87.58836764209057,41.75874521512516],[-87.58819494026704,41.758746295560734],[-87.58774697259157,41.75875052452919],[-87.5872979165425,41.75875378417939],[-87.58704671294383,41.75875618905403],[-87.58685042460236,41.75875806790101],[-87.58679243481026,41.75875864146024],[-87.5864771225931,41.75876176135286],[-87.58613636664421,41.75876442319062],[-87.58613246134323,41.75867236147375]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4136257.77038","perimeter":"0.0","tract_cent":"1172797.34723554","census_t_1":"17031310100","tract_numa":"22","tract_comm":"31","objectid":"726","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890393.34271575","census_tra":"310100","tract_ce_3":"41.85467453","tract_crea":"","tract_ce_2":"-87.64124139","shape_len":"12502.7444507"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63894923956805,41.85803648213748],[-87.63893572318938,41.857665475514935],[-87.63853190498597,41.85767185136644],[-87.63799691715602,41.85767906922398],[-87.63776666277178,41.857681900009],[-87.63699229333245,41.85769918134236],[-87.63690381503463,41.8577011553003],[-87.63687296140931,41.85770184417007],[-87.63673670112796,41.8577048844437],[-87.63663110536943,41.857707240374864],[-87.63651035361998,41.85771145212568],[-87.63601568613535,41.85772870565974],[-87.6351581593673,41.85772209606269],[-87.63532120103145,41.8572251861106],[-87.63549373688255,41.856938380713245],[-87.63616109893537,41.85629188408105],[-87.6369788361713,41.855673417894174],[-87.63747871967801,41.85532980765091],[-87.63844034466949,41.854883699366475],[-87.6387070936861,41.854744216006495],[-87.63904440174329,41.854567834786295],[-87.63939398021995,41.85428497192241],[-87.63964786809943,41.85394971630929],[-87.63987238130706,41.8535868415646],[-87.63990973996816,41.853536517929115],[-87.6403416860949,41.852986212271404],[-87.64048978593149,41.85276507924198],[-87.64049054026721,41.85276395288441],[-87.64049058093076,41.85276389220722],[-87.64052176867517,41.85271732534686],[-87.6407536599361,41.852371075191094],[-87.6411475337876,41.851793039049454],[-87.64159395155072,41.85121929741335],[-87.64189335368931,41.850817041853055],[-87.64191934556955,41.85078212067886],[-87.64218185451693,41.850454691638646],[-87.64238025447557,41.850269101594826],[-87.6426400399731,41.85002382777646],[-87.64331567594942,41.849693007068716],[-87.64331690078215,41.84969266206456],[-87.64331690842155,41.84969266842226],[-87.64399883445986,41.84950523931548],[-87.64414539063665,41.849490814656214],[-87.64434224604175,41.84947143959917],[-87.64452979601874,41.849452979865156],[-87.6448892813693,41.84941759624653],[-87.6458503479339,41.849384302189115],[-87.64647378082603,41.849270946507794],[-87.64647573058835,41.84957039573915],[-87.64647093326924,41.84979205235781],[-87.64645272312623,41.850039557876435],[-87.6464396308374,41.85029392252705],[-87.6464286291041,41.85050766653785],[-87.6464338338676,41.85065929047534],[-87.64643882687987,41.850811873906935],[-87.64644113632113,41.850882442313214],[-87.64644790823573,41.851093433907536],[-87.64645603645769,41.85134576212479],[-87.64645775581282,41.85140441719187],[-87.64646359247703,41.85160354798092],[-87.64646732855975,41.85173564100679],[-87.6464715285209,41.851884140876436],[-87.64648014369087,41.85216627460338],[-87.64648174877831,41.85221883672761],[-87.64649016639433,41.852447566013836],[-87.64649250422254,41.8525366580297],[-87.64649538700212,41.85264651854685],[-87.64620209971245,41.85265039985565],[-87.64592970596382,41.85265418922072],[-87.64586037716022,41.85265515406911],[-87.6457851019728,41.85265620073252],[-87.64565290360522,41.85265803963356],[-87.64552881718824,41.852659765325505],[-87.64537861774247,41.85266185395853],[-87.64518671675343,41.85266370626429],[-87.64507659849741,41.85266467651367],[-87.64493842050874,41.852665893957536],[-87.64474173479415,41.85266762628049],[-87.64461139373036,41.85266877423476],[-87.64421974904975,41.852672222262505],[-87.64388299829209,41.85267725399168],[-87.64363927339367,41.85268089497751],[-87.64308362979851,41.852691168455856],[-87.64276376515079,41.85269602396014],[-87.6426022428801,41.852697824632706],[-87.64235408592764,41.85270059045578],[-87.6421872409043,41.852702435360484],[-87.64186897866306,41.852699557290386],[-87.6417879440348,41.852698824330076],[-87.64170602632113,41.8527643559504],[-87.64171851473674,41.853159057163104],[-87.64172554053955,41.85338593970319],[-87.64173151511666,41.85357752504324],[-87.64173359744873,41.85364317991675],[-87.64173995742962,41.85383306585553],[-87.64175279526192,41.85425485325595],[-87.64176481769978,41.85464985123001],[-87.64177027942178,41.85481283856917],[-87.64177248403414,41.85487863110279],[-87.64177666284635,41.85502111084698],[-87.64178747697947,41.85535199623442],[-87.64179122731423,41.85554093280588],[-87.64179609933211,41.85566500220565],[-87.64180790485143,41.85596565183292],[-87.6418101990303,41.856032131504776],[-87.6418165775869,41.85621688571691],[-87.64182043161141,41.856336201685366],[-87.64182786572684,41.85655235651821],[-87.64183530625249,41.856768703753445],[-87.64184603567017,41.857080680063724],[-87.64184959323197,41.85719027984205],[-87.64185149273288,41.857248798784866],[-87.64186356937877,41.85762140320894],[-87.64187480081058,41.857967933476964],[-87.64187687142758,41.858032243543626],[-87.64188053637372,41.85814428633584],[-87.64188671323313,41.85833419818628],[-87.6418922868422,41.85850514415272],[-87.6418989011967,41.85871122008431],[-87.64190603419176,41.85893280910382],[-87.64191273682793,41.85914204391256],[-87.64191917248824,41.85934205641435],[-87.64192751316027,41.8595963068249],[-87.64194022992014,41.859983945220115],[-87.64166780659632,41.85998763752756],[-87.64150478976907,41.85999019601659],[-87.64125181581329,41.859994461962394],[-87.6409474986814,41.85999412828786],[-87.64051154367472,41.85999364879374],[-87.64002246568784,41.860000860734566],[-87.63973669591995,41.860005931400785],[-87.63901366630267,41.86001802754482],[-87.63899894957164,41.85955448965477],[-87.63898544179496,41.859201441854815],[-87.63897440209111,41.8588436073332],[-87.63896081811869,41.85840329175753],[-87.63895624526764,41.85822878445261],[-87.63894923956805,41.85803648213748]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2244877.01358","perimeter":"0.0","tract_cent":"1157367.91648143","census_t_1":"17031301100","tract_numa":"16","tract_comm":"30","objectid":"727","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1887500.45866963","census_tra":"301100","tract_ce_3":"41.84706344","tract_crea":"","tract_ce_2":"-87.69795253","shape_len":"8148.32336388"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69869722102924,41.84786386717484],[-87.69856094705665,41.84784135210161],[-87.69841523127245,41.84784205601824],[-87.69792367584125,41.847849354743424],[-87.6974599089205,41.84785623907318],[-87.69724472738861,41.84785942712151],[-87.69683822534316,41.84786535300816],[-87.69652719749651,41.8478701602913],[-87.69627937816976,41.84787427479787],[-87.6959677975734,41.84787929676653],[-87.69571400064854,41.8478829100821],[-87.69533340070309,41.84788259786777],[-87.69513414265352,41.84788243349877],[-87.69501664063975,41.84785464004862],[-87.6949083413815,41.84780936152239],[-87.69486507702635,41.84777904391234],[-87.694822896578,41.84773934693463],[-87.69479046052197,41.84769789290328],[-87.69475578367953,41.84763076755121],[-87.69474260607018,41.847546033790714],[-87.69473513275523,41.847349036799024],[-87.69472895854462,41.84717641552604],[-87.69472518312858,41.847044285733446],[-87.69472323858321,41.84697657396237],[-87.6947185554736,41.846805333374355],[-87.69471430965076,41.846604923698806],[-87.69471104968154,41.846458390750776],[-87.69470700485873,41.84627655946888],[-87.6947037978387,41.84618570653163],[-87.69469870701161,41.84602225735976],[-87.69469530322613,41.845888455605916],[-87.6946905149339,41.84570566105171],[-87.69468649478634,41.84557479222485],[-87.69467987151037,41.84535878186988],[-87.69467484355319,41.84518902121737],[-87.6946698300657,41.84502518824948],[-87.69466465175017,41.84484442335121],[-87.69466421627266,41.844829351080236],[-87.69466051384656,41.84470115855899],[-87.69498959082894,41.844697983530466],[-87.69521534420977,41.844691944293295],[-87.69555698722031,41.84468280391439],[-87.69574405828438,41.84468205876716],[-87.69585017037409,41.844681004778536],[-87.69596384280851,41.84467987574111],[-87.69628864420797,41.84467616173266],[-87.69653214819358,41.84467295658506],[-87.69677583701457,41.84466961473233],[-87.6970774504149,41.84466516623919],[-87.69749155183234,41.844660662458246],[-87.69769361377315,41.844658153801696],[-87.6979690126207,41.84465473380337],[-87.69839607516805,41.844649631053954],[-87.69875820691948,41.8446452656996],[-87.69931446946912,41.84463876020502],[-87.69967591441832,41.844633317902534],[-87.69990304959603,41.84462639287106],[-87.70014826180036,41.84461301045218],[-87.70015061070242,41.84473449742672],[-87.70015142158273,41.844776430409276],[-87.7001533461535,41.844875964222524],[-87.70015835525443,41.845026734254404],[-87.70015971638178,41.84508015940332],[-87.70016264200007,41.845195008977605],[-87.70016639840807,41.84539470204302],[-87.7001699439722,41.84551245050112],[-87.70017980759144,41.84584003273507],[-87.70018171720486,41.845948496554946],[-87.70018246597058,41.84599103676605],[-87.70019169829798,41.84621976685327],[-87.70019622152589,41.84639500284488],[-87.70020256018339,41.846640577442344],[-87.70020607068575,41.84677588896457],[-87.700215373221,41.84707468071359],[-87.70022521950114,41.84740223531776],[-87.70024682213212,41.84810359581925],[-87.7002491282939,41.84820490968504],[-87.70025237957033,41.8483477285913],[-87.70027552153452,41.84912009151607],[-87.7002981709605,41.84987916939313],[-87.70030176602116,41.8500159483856],[-87.70030513738207,41.85014422112665],[-87.70032668578412,41.85086984025329],[-87.70033875995658,41.85137563156829],[-87.70034770046121,41.8517501503231],[-87.70036378593197,41.85183842167469],[-87.70012535549432,41.85184195514057],[-87.69935701979023,41.85185259046349],[-87.69922528357914,41.85185268786688],[-87.6991639597407,41.85185273320047],[-87.69908861861846,41.85185278863724],[-87.69908594321019,41.85174604352994],[-87.69906697352368,41.851098896961204],[-87.69906305595013,41.85094799064338],[-87.699062905176,41.850942186521934],[-87.69904331162562,41.850187397153924],[-87.69903822387151,41.85003137892521],[-87.69903359305562,41.84988937157303],[-87.69901518183849,41.84923040010558],[-87.69899313219813,41.84849385561702],[-87.69898466514384,41.84826608997272],[-87.69898302904201,41.84822342988615],[-87.6989810289307,41.84817128828342],[-87.69898046247411,41.848156515809315],[-87.69895890809742,41.848072038135186],[-87.69891196832363,41.84799749168038],[-87.69885146339698,41.847949540932795],[-87.69882979580574,41.84793236921058],[-87.69879867392955,41.84790770473389],[-87.69869722102924,41.84786386717484]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2556183.8646","perimeter":"0.0","tract_cent":"1159747.62539381","census_t_1":"17031280800","tract_numa":"17","tract_comm":"28","objectid":"728","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1899009.78958756","census_tra":"280800","tract_ce_3":"41.87859756","tract_crea":"","tract_ce_2":"-87.68890195","shape_len":"6475.83562812"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68643116151189,41.88116173395066],[-87.68642815781169,41.88102020998563],[-87.68642183704587,41.880845887311864],[-87.6864204594411,41.88071131187429],[-87.68641660695421,41.88042516490526],[-87.68641159997914,41.880257847716706],[-87.68640504455934,41.880038792205255],[-87.68639832089688,41.87983875007326],[-87.6863981944024,41.87983498123569],[-87.68639575214236,41.87976231190208],[-87.686385899822,41.879413929165445],[-87.68638444544129,41.8793577440448],[-87.68638306421924,41.8793043903008],[-87.68637802536455,41.879109739925255],[-87.68637120607922,41.87884652822174],[-87.68636483637589,41.878588914284315],[-87.68635847892504,41.87833180040602],[-87.68635496149605,41.878192702135145],[-87.68634864605725,41.87794508055316],[-87.686343662645,41.877791182519466],[-87.68634308009634,41.8775501681607],[-87.68634255566728,41.8773330241354],[-87.68633477760804,41.876997468573],[-87.68633017849565,41.876863688016606],[-87.68631939046594,41.87674282543989],[-87.68631660619076,41.876714418311835],[-87.68630837063175,41.8766303863954],[-87.68628053851064,41.8763390922961],[-87.68626949838719,41.876083619061205],[-87.68692327133839,41.87606856005397],[-87.68711849486203,41.87606959671861],[-87.68752976542356,41.876071779566814],[-87.68800061247897,41.87607427707468],[-87.68831622034732,41.87606953281975],[-87.68873173600792,41.87606458945714],[-87.68887411622755,41.87606289538935],[-87.68910002946748,41.876060869824066],[-87.6893838892997,41.876058345475464],[-87.68971637411961,41.87605494036275],[-87.69007426958272,41.876049967503164],[-87.69057104385024,41.87604320667866],[-87.69105772807595,41.87603791664477],[-87.6911013491659,41.87603750032881],[-87.69122390221918,41.8760363307785],[-87.69135677454804,41.87603506263558],[-87.6913866736814,41.87676034420214],[-87.69141681534458,41.8774914988942],[-87.691454120472,41.87839640357658],[-87.69143260061654,41.87839671002476],[-87.69143631328006,41.87852965581564],[-87.69145406571594,41.879140693659146],[-87.69145528792323,41.87920210247284],[-87.6914562131674,41.879243246379374],[-87.6914575125323,41.879301018398046],[-87.69145968149385,41.879405201867236],[-87.691467229696,41.87975170469261],[-87.69147700495841,41.880105081384386],[-87.6914796712797,41.88020569406054],[-87.69148275842824,41.88030990295238],[-87.69150160304422,41.88099538384019],[-87.69150455508145,41.88111346659706],[-87.69147276934842,41.881113940155394],[-87.69135628568824,41.88111567517205],[-87.69107673541313,41.88111751852844],[-87.6908653234503,41.88111891201227],[-87.69054463825772,41.88112216691862],[-87.69039210159728,41.881123623961564],[-87.6900700407363,41.88112669942296],[-87.68948791136792,41.88113238346154],[-87.68886327603347,41.88112779662157],[-87.6887917228442,41.88112727073629],[-87.68848881640213,41.88113492869843],[-87.68814511292427,41.881143617920515],[-87.68793886173486,41.88114591701075],[-87.68755045115739,41.88115026454057],[-87.68705377392618,41.88115575811272],[-87.68684883696685,41.88115772537317],[-87.68643116151189,41.88116173395066]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3534613.23468","perimeter":"0.0","tract_cent":"1153098.2837373","census_t_1":"17031271400","tract_numa":"16","tract_comm":"27","objectid":"729","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898467.4593968","census_tra":"271400","tract_ce_3":"41.87724375","tract_crea":"","tract_ce_2":"-87.71333146","shape_len":"7973.05452814"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71556370129638,41.87356993401364],[-87.7156583806038,41.873568108192046],[-87.715659772938,41.87374516790947],[-87.71565983107499,41.873752553276525],[-87.71566297136421,41.8738433299617],[-87.71566733738374,41.87396952450502],[-87.71566974064378,41.874038996620456],[-87.71567499821603,41.87420385778543],[-87.71567805291576,41.87429963787],[-87.71567975270892,41.874352937894855],[-87.71568419662233,41.87448809474544],[-87.71568753144945,41.87460149908697],[-87.71569629543038,41.874839033678974],[-87.71570405738913,41.87505491073478],[-87.71570633208671,41.87512080995419],[-87.71571002909724,41.87522791296166],[-87.7157146064263,41.87538644521012],[-87.71571798701447,41.87550353338666],[-87.71572323885138,41.875678888490285],[-87.71573513100024,41.87607596668583],[-87.71574269110737,41.87629757781581],[-87.71574945107737,41.876495474589426],[-87.7157552580126,41.876662767845545],[-87.71575927296783,41.87677774633432],[-87.71576182057841,41.876850701917995],[-87.71576816234393,41.877038689681655],[-87.7157738543926,41.87721155505104],[-87.7157793567107,41.87737865262892],[-87.71578615552305,41.877587828437534],[-87.71579721377783,41.87789617686809],[-87.71580361302563,41.878093467909814],[-87.71580941820747,41.87826600234925],[-87.71581591846049,41.87845917782188],[-87.71582228795178,41.87865575517882],[-87.7158291297776,41.87887192900479],[-87.71583573971786,41.87907405102229],[-87.71584538009745,41.87937333572568],[-87.7158509552004,41.879532751929304],[-87.71586170645757,41.8798401652814],[-87.71586564720847,41.879964830226825],[-87.71587030738422,41.880121606741376],[-87.71587990196834,41.88038367913838],[-87.71588326477017,41.88053024006317],[-87.71588947636491,41.88070892400137],[-87.71589399015944,41.880855587429096],[-87.7156528288036,41.88085924366737],[-87.71549348748528,41.88085999712436],[-87.71522562964128,41.88086125361297],[-87.71497532442284,41.88086557628477],[-87.71476407520068,41.88086922404053],[-87.71433757329565,41.88087507638467],[-87.71392230908185,41.88088082310256],[-87.71361480843186,41.88088441031528],[-87.71337058144458,41.88088725871552],[-87.71309557320637,41.88089123481685],[-87.71261927096575,41.88089769023669],[-87.71215449591664,41.88090447990845],[-87.71164166749395,41.88090971804907],[-87.71128930206723,41.88091593294352],[-87.71100553628004,41.880916842321156],[-87.71099739510494,41.88066325277824],[-87.71099067368385,41.88044678165446],[-87.7109848329764,41.880258682310576],[-87.7109846269041,41.880250704214205],[-87.71097990785142,41.88006807473986],[-87.71097661064765,41.879940469923326],[-87.71097180757437,41.87976184823232],[-87.71096549897239,41.87959185507441],[-87.71095614657544,41.879339862645594],[-87.71094964795796,41.879113508992866],[-87.71094508822588,41.878955118096115],[-87.71094037927541,41.87879167202926],[-87.71093860065554,41.87872994067262],[-87.71092967308823,41.878476872566],[-87.71092635731948,41.87832860424283],[-87.71092255402549,41.8781585285701],[-87.71091271835904,41.87788553226834],[-87.71090888824202,41.87780143814931],[-87.7109086518568,41.877796244749035],[-87.71089945991545,41.87759443307478],[-87.71089356687474,41.87740707841432],[-87.71088607895342,41.87727726008919],[-87.71087712824108,41.8771220813594],[-87.71087308195264,41.87702440037567],[-87.71086436563081,41.87681397019024],[-87.71085804282107,41.876613819482095],[-87.71085518757037,41.87650351837812],[-87.71085023272107,41.87626869324577],[-87.7108477267609,41.876187822813954],[-87.71084008245595,41.87594113973149],[-87.71083940763826,41.875917256708966],[-87.7108370710106,41.87583456610564],[-87.71083264822133,41.87567803563595],[-87.71082706247537,41.875451894522136],[-87.71082131285891,41.875219108132384],[-87.71081461474294,41.87499477025474],[-87.71081288864256,41.87493695353937],[-87.71081211479645,41.87491389325088],[-87.71080394543773,41.87467041090401],[-87.71080671023873,41.87454396451614],[-87.71081000896488,41.874454251716024],[-87.71080669978136,41.87436103957666],[-87.71080322709291,41.87426322361777],[-87.71079794418073,41.8741144093915],[-87.71079576357546,41.87405299523489],[-87.71079047574722,41.87390404733128],[-87.71078707521455,41.873808259207934],[-87.71078273063182,41.87368587801577],[-87.71078177066471,41.873628347274625],[-87.71106971473942,41.873625111691624],[-87.71151191545901,41.87361976805316],[-87.71187666972804,41.87361543066025],[-87.71238001238653,41.87360923449359],[-87.71273624988505,41.873604793435106],[-87.71322222422725,41.8735986918172],[-87.71355833773866,41.873594468854925],[-87.71395350293766,41.87358916383595],[-87.71435607965071,41.87358444625362],[-87.71476643033806,41.87358072961997],[-87.71506225713223,41.87357727318804],[-87.7153025329588,41.87357362683023],[-87.71556370129638,41.87356993401364]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6975815.51405","perimeter":"0.0","tract_cent":"1137425.13855943","census_t_1":"17031250600","tract_numa":"32","tract_comm":"25","objectid":"730","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1908726.96807838","census_tra":"250600","tract_ce_3":"41.90569342","tract_crea":"","tract_ce_2":"-87.77063256","shape_len":"10619.2413905"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77513034253955,41.902000723010865],[-87.77536171619977,41.901997794245695],[-87.77536980811502,41.9022370413654],[-87.77537345780497,41.90234946293118],[-87.77540044022648,41.903161286635246],[-87.77540320715195,41.903244524384675],[-87.7754220417193,41.90381119174652],[-87.77542204202452,41.903811198883034],[-87.77544334927912,41.90445274792431],[-87.77548229130788,41.905625241685],[-87.77554257704786,41.907439559588404],[-87.77554257735788,41.90743956617609],[-87.77558975232701,41.908858952539354],[-87.7755905250555,41.908882190930534],[-87.77559798553519,41.909211151770585],[-87.77559930561618,41.909253556104375],[-87.77535930623385,41.90925656551848],[-87.77515252653706,41.90925915166696],[-87.77502032982227,41.90926081442242],[-87.7747469362693,41.90926406743042],[-87.77439226864254,41.90926845412077],[-87.77406703178856,41.90927247592415],[-87.77396610273041,41.9092736470474],[-87.77359064246266,41.909278003243784],[-87.7731789891132,41.909283048567616],[-87.77297191327139,41.909285578301365],[-87.77271633224197,41.90928936839152],[-87.7723843643053,41.909294290271774],[-87.77196951225524,41.909299685282015],[-87.7717324895043,41.90930276697949],[-87.77145821864052,41.90930552323344],[-87.77089497937519,41.9093111816011],[-87.77075396483409,41.909312908767646],[-87.77032570348845,41.90931815338234],[-87.77027948245693,41.9093187192873],[-87.76982432687417,41.90932429146186],[-87.76954854241421,41.909327822499016],[-87.7690954788127,41.9093336158314],[-87.76873463650064,41.90933823077451],[-87.76833062870762,41.909342685714144],[-87.76791596626067,41.909347256637595],[-87.76747830407206,41.90935207963231],[-87.76712156132751,41.90935841662302],[-87.76673931854526,41.9093652027004],[-87.76634138619906,41.90937226733561],[-87.76572416664557,41.90937873065775],[-87.76580508091799,41.909163169015585],[-87.76583507916236,41.90908878379296],[-87.7658865582915,41.908864258274534],[-87.76588838719414,41.90885628103298],[-87.76588744431977,41.90877790095646],[-87.765885488376,41.90861529522769],[-87.76587590909048,41.90835292623159],[-87.76585631549838,41.90780266491487],[-87.76584776993055,41.90756595988706],[-87.76584298142019,41.907433334097206],[-87.76583204476414,41.907096122963274],[-87.76581093976012,41.90653408099348],[-87.76578868427116,41.90585721433346],[-87.7657848454052,41.9057589109991],[-87.7657795960753,41.90562450297457],[-87.7657739518687,41.90547997333972],[-87.7657574352117,41.90505530304963],[-87.76575173502324,41.904853106778916],[-87.76574597447727,41.90464876969592],[-87.76572676826108,41.904179409828124],[-87.76571891545196,41.90395205165474],[-87.76571425445229,41.90381710834828],[-87.76570714195047,41.90361649671023],[-87.76569246289212,41.90321669844678],[-87.76568650280973,41.903047486314996],[-87.76568101528655,41.90289169612254],[-87.76567431147902,41.90268639382017],[-87.76565755528362,41.90234695823408],[-87.76565382332494,41.90214451884983],[-87.76594884101333,41.90214093326669],[-87.76625836571056,41.90213504123069],[-87.76646047938473,41.90213119336835],[-87.7668672236164,41.90212566239759],[-87.76720824496275,41.902121023883886],[-87.76747603471406,41.90211665634047],[-87.76777935093509,41.90211170848113],[-87.76808157881659,41.902107663081296],[-87.76860371326127,41.902100672216655],[-87.76868648938176,41.90209934682919],[-87.76908102330437,41.90209302953323],[-87.76929514261528,41.90209031717765],[-87.76956022955952,41.90208695839224],[-87.76990240796707,41.90208119516264],[-87.76992989756906,41.902080732068434],[-87.77038935250205,41.902073351172234],[-87.77050765626375,41.902070968390674],[-87.77065226443746,41.90206805549019],[-87.77111475647274,41.902062040581356],[-87.77137728411454,41.9020586252789],[-87.77172406711347,41.90205286488366],[-87.77192348149701,41.90204955183284],[-87.77233002495598,41.90204389432603],[-87.77249266385266,41.90204163058623],[-87.7729384167429,41.90203431938489],[-87.7732662732232,41.90202894083664],[-87.77354309768234,41.902024727246605],[-87.7738111041545,41.90202064730171],[-87.77414952222541,41.90201630973539],[-87.77432462304994,41.9020140648414],[-87.77452852765994,41.90201022741141],[-87.7747625884869,41.90200661863703],[-87.77487460414038,41.90200488573144],[-87.77513034253955,41.902000723010865]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1669758.71231","perimeter":"0.0","tract_cent":"1155502.7932376","census_t_1":"17031231800","tract_numa":"9","tract_comm":"23","objectid":"731","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1905838.48107526","census_tra":"231800","tract_ce_3":"41.89742255","tract_crea":"","tract_ce_2":"-87.70430435","shape_len":"5286.93851761"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70188855041242,41.89668348725345],[-87.70188087481537,41.8964182000205],[-87.70223367988893,41.89655902628742],[-87.70222631265271,41.89631849600233],[-87.70221651074165,41.8960008787034],[-87.7022100584931,41.89580191329078],[-87.70220404706863,41.895594886344384],[-87.70235487957213,41.895593460828415],[-87.70245640734723,41.895592194551014],[-87.7026115055,41.895590260573194],[-87.70331177699859,41.895584719073405],[-87.7038407690502,41.89558372299944],[-87.70390059470793,41.89558273479566],[-87.70395133414226,41.895581896542076],[-87.70412941258104,41.89557895391369],[-87.7043383920214,41.895575500522675],[-87.70444641568271,41.89557446729792],[-87.70465191027058,41.89557250166263],[-87.7048656606507,41.89557045625386],[-87.70532586225055,41.895565318327655],[-87.70551559275859,41.895563199347286],[-87.70593314073548,41.895559032427165],[-87.70616940740474,41.89555692154796],[-87.70635388007058,41.89555532049146],[-87.70655633277818,41.895553410306064],[-87.70656656616626,41.89586504390638],[-87.70658593533993,41.896359606797695],[-87.70659802902739,41.89675654971068],[-87.70660073242635,41.896845278875475],[-87.70660427796791,41.89696437188411],[-87.70662157712044,41.89755796490002],[-87.70662385027867,41.897635967491055],[-87.70662813018976,41.89775937596503],[-87.70664109942811,41.89813334494483],[-87.70664638093056,41.89831067713359],[-87.70665299045763,41.89853258712087],[-87.70665903550608,41.89872323466874],[-87.70666146908268,41.898799977141174],[-87.70666954622983,41.89905583915523],[-87.70667445661944,41.89919540143121],[-87.70653791299182,41.89919718996707],[-87.7061337549588,41.899200657213626],[-87.70596150307824,41.8992023024401],[-87.70524718615773,41.89920899041212],[-87.70464532013169,41.89921417657969],[-87.70440707694377,41.89921647874711],[-87.70398000586303,41.899220603532925],[-87.70386469428772,41.899221639993975],[-87.70324218073105,41.89922723251642],[-87.70302206290718,41.89922930003349],[-87.70277744263984,41.899231597021036],[-87.70246754477405,41.89923388011009],[-87.70219060808002,41.89923591981813],[-87.70195112884186,41.899238357461485],[-87.70195431711409,41.89891469756108],[-87.70194583117923,41.89860902505623],[-87.70193899706304,41.89836313113697],[-87.70193177366191,41.898104556682995],[-87.70192911195012,41.898022241775024],[-87.70192344005332,41.897846826826715],[-87.70191201322591,41.897463119374144],[-87.70190068983001,41.89709129529471],[-87.70189539708075,41.896920135149664],[-87.70188855041242,41.89668348725345]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"743942.05158","perimeter":"0.0","tract_cent":"1162389.18517769","census_t_1":"17031222100","tract_numa":"4","tract_comm":"22","objectid":"732","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912738.40107647","census_tra":"222100","tract_ce_3":"41.9162151","tract_crea":"","tract_ce_2":"-87.67881812","shape_len":"3558.76019527"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67974261337599,41.91467588569089],[-87.68001388419562,41.91467004527602],[-87.68001705138295,41.91484306173045],[-87.68003026845011,41.91526190635753],[-87.68003130035726,41.91542691890052],[-87.68003194441673,41.91552991760826],[-87.68003811511083,41.91574625259237],[-87.68004710011816,41.91607572097706],[-87.68004975101417,41.91618783507063],[-87.68005190094689,41.91627871146818],[-87.6800570103735,41.91645854241607],[-87.68006690471336,41.91680697855293],[-87.68007051241302,41.916942762931214],[-87.68007309109814,41.917039806665414],[-87.68007929691173,41.917249116840615],[-87.68009601503611,41.91770662872146],[-87.67976226469726,41.917715642776024],[-87.67957792626798,41.91771920341897],[-87.67906545318625,41.91772910032098],[-87.67847238571812,41.91774053833409],[-87.67839535803694,41.91774204713565],[-87.67832399105953,41.91774339662967],[-87.67813650898273,41.917747153819334],[-87.67779317295326,41.91775403363894],[-87.6777361262175,41.917755287244646],[-87.67762149764636,41.91775780640855],[-87.67760690174252,41.91734720847048],[-87.67760513329362,41.917302384848576],[-87.67760062959988,41.917188199504125],[-87.67759763845564,41.916991119653446],[-87.67759310403274,41.91669230187992],[-87.67758800550546,41.916402040118875],[-87.6775862925446,41.916237846146466],[-87.67758575786293,41.91617881473053],[-87.67758052914411,41.915942369823476],[-87.6775783239903,41.91584265911632],[-87.67757444476528,41.91567606225867],[-87.67757174558264,41.915553763994],[-87.67757003614139,41.91547378766778],[-87.67756752591033,41.91536131454414],[-87.6775621576534,41.91510527528299],[-87.6775569351253,41.91485617864551],[-87.67755510272004,41.91471571851387],[-87.67808085119864,41.91470612059128],[-87.6784264624791,41.91469984177344],[-87.67858947452731,41.914696895718755],[-87.67949085616972,41.914680473796636],[-87.67974261337599,41.91467588569089]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8981432.49751","perimeter":"0.0","tract_cent":"1142740.58252634","census_t_1":"17031191100","tract_numa":"40","tract_comm":"19","objectid":"733","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1913817.31894854","census_tra":"191100","tract_ce_3":"41.91956456","tract_crea":"","tract_ce_2":"-87.75097986","shape_len":"12130.950083"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74606272253304,41.915924484151134],[-87.74603233643545,41.91510517516927],[-87.74600890561744,41.9144690836237],[-87.74600623982677,41.91439016641249],[-87.74616990761983,41.91441055857314],[-87.74630064538536,41.91442700663957],[-87.74665386130172,41.914472033256956],[-87.74701995556882,41.91451506664564],[-87.7471686549886,41.9145261164199],[-87.74735365507301,41.914534950051035],[-87.74752484394567,41.91454748706922],[-87.7477239868054,41.91456668340512],[-87.7480460143363,41.91460743032751],[-87.7483038147178,41.9146406457961],[-87.74840465859816,41.9146529139157],[-87.74845991254618,41.91465968849761],[-87.74861989132239,41.91467930288911],[-87.74873962422387,41.914693976719896],[-87.74908047597256,41.91473550318319],[-87.7493694838042,41.91477127652156],[-87.749786944662,41.91482245198039],[-87.75024248253649,41.91487827838856],[-87.75064710242471,41.91492767064194],[-87.75104667956037,41.914976006261625],[-87.75151826782967,41.91503465350788],[-87.75195454865941,41.9150872888361],[-87.75263395527375,41.91517133831649],[-87.75273993107322,41.91518388022855],[-87.75285225365613,41.91519714238155],[-87.7530179461094,41.91521684429467],[-87.7533427514228,41.9152558755319],[-87.75372487912372,41.91530445699847],[-87.75412078089416,41.915353449703275],[-87.75452450083552,41.9154014513652],[-87.75491994113555,41.915450782292574],[-87.75508739199032,41.91547083530214],[-87.7552705257442,41.91548342010314],[-87.75545416140204,41.91549120500366],[-87.75563829384073,41.91549487575946],[-87.75576275848404,41.915494472788914],[-87.75588614422351,41.91549201102221],[-87.75588917354689,41.91556875886917],[-87.75589339296161,41.91567762105526],[-87.75590489624257,41.91597439941808],[-87.75590759591958,41.916049244121226],[-87.75590783199272,41.91605578509083],[-87.7559375186529,41.916934251157286],[-87.75595406895505,41.917423983995825],[-87.75596248590868,41.91767303990837],[-87.75597925937835,41.91825789246288],[-87.7559910942003,41.9186520404529],[-87.75600455199557,41.91910025218087],[-87.75601768882312,41.919583193255065],[-87.75603025870926,41.920063826282835],[-87.75603563907818,41.92024164879272],[-87.75604217092484,41.920457517345426],[-87.75604945326286,41.9206981969636],[-87.75606071322737,41.92112852155734],[-87.75608582854755,41.92198663155929],[-87.75609261379549,41.922279679231046],[-87.75609540307657,41.92240015289156],[-87.75610407177588,41.9227435287637],[-87.75610427579849,41.92283598125653],[-87.75610961191667,41.923195360066025],[-87.75612909804805,41.92363678067654],[-87.75613205593869,41.92370280360097],[-87.75614607860857,41.924107116402254],[-87.75580179477379,41.924113051808256],[-87.7542649555236,41.92413368692626],[-87.75368247037491,41.924141276951985],[-87.75340264064634,41.92414492213346],[-87.75243668478316,41.924157959178764],[-87.75182205477738,41.92416744464029],[-87.75152080369887,41.92417209254987],[-87.7512272879012,41.924174935310795],[-87.7509274835141,41.92417783845381],[-87.7503349151523,41.924185753598714],[-87.74905484891889,41.92420306699734],[-87.74875824309181,41.92420645138686],[-87.74842950958553,41.92421020154224],[-87.74763851481701,41.92422170157622],[-87.74696937930526,41.924229539171456],[-87.74677359884426,41.92423183119205],[-87.74630174256822,41.9242392153207],[-87.7462865116194,41.92376452440898],[-87.74628577833701,41.923736526503774],[-87.7462770112652,41.923401880825985],[-87.74627530639007,41.92332566513471],[-87.74626323395485,41.922786087617055],[-87.74625468569272,41.9224157685631],[-87.74624621130033,41.92203984449846],[-87.74622327190365,41.92113511916695],[-87.74621029838005,41.920584160899196],[-87.7462023255689,41.920245552035446],[-87.74619039776346,41.919670614997244],[-87.74618555686347,41.919437290255146],[-87.74616852946326,41.918756563278144],[-87.746164492711,41.91859517331227],[-87.74615850709394,41.9183558698519],[-87.74614693996017,41.917843133033294],[-87.74613659022525,41.91738434549173],[-87.7461106848646,41.91693271874491],[-87.74608325474223,41.91647367088942],[-87.74607502767337,41.91633598990442],[-87.74606272253304,41.915924484151134]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3512087.57513","perimeter":"0.0","tract_cent":"1168703.07370413","census_t_1":"17031670900","tract_numa":"16","tract_comm":"67","objectid":"752","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864318.74725953","census_tra":"670900","tract_ce_3":"41.78321272","tract_crea":"","tract_ce_2":"-87.65702231","shape_len":"7953.73637986"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65916720887613,41.77954526845358],[-87.65936145554264,41.779543032699145],[-87.65936422448432,41.77965863853636],[-87.65937234285738,41.77998627232625],[-87.65938023054728,41.78030446437943],[-87.65939465265662,41.78091943501819],[-87.65940017991153,41.781154900223854],[-87.6594031688459,41.781280249279334],[-87.65940503182307,41.78135836274475],[-87.65940777212974,41.78147328257859],[-87.65941601625632,41.78179940764113],[-87.6594248347262,41.78214779225516],[-87.65943997786505,41.782734649743084],[-87.65944867318403,41.78307163297031],[-87.65945106619611,41.78317718584041],[-87.6594535385195,41.783286265038335],[-87.65946079210246,41.78359073173449],[-87.65946174044709,41.78363052950871],[-87.65947248976349,41.78408161695131],[-87.65949341676259,41.78490195283047],[-87.65949589530221,41.78499836685996],[-87.65949798945486,41.785096823952316],[-87.65950068135973,41.78519212175521],[-87.65950610683471,41.78542338742354],[-87.65951130209332,41.785641589188636],[-87.65951576118614,41.78583201386997],[-87.6595222183097,41.78610483410288],[-87.65952719158919,41.78631622842827],[-87.65952830838552,41.78636354652367],[-87.65953120426427,41.78648626067518],[-87.65953670121611,41.7867177188103],[-87.65954069452745,41.78681641533668],[-87.65933296000709,41.78681729393644],[-87.65910117880323,41.78682125776803],[-87.65887706338376,41.78682507403733],[-87.65859925682979,41.786829782021364],[-87.65832762865878,41.78683205001317],[-87.65817288508511,41.78683334187164],[-87.65783617488745,41.78683951304432],[-87.65748406172817,41.786845921928816],[-87.65728942936522,41.78684946946125],[-87.65711449065854,41.786850762345935],[-87.6569834509166,41.786851729988946],[-87.65668408176322,41.78685660826215],[-87.65636164486605,41.7868618437947],[-87.65614678878028,41.786865316866724],[-87.65593337783194,41.78686784112473],[-87.65590037725032,41.78686823133755],[-87.65577924442444,41.78686960702053],[-87.65544213954287,41.78687491811763],[-87.65524534862993,41.78687798813402],[-87.65513327388905,41.78687973631092],[-87.65488649654701,41.786883603106055],[-87.65468442500804,41.78688594941482],[-87.65468043626966,41.786795556702025],[-87.65467617865906,41.78655257967271],[-87.65467345119578,41.78643128904841],[-87.65466943912126,41.786252890962885],[-87.65466287756296,41.78596066775487],[-87.65465702942966,41.78570162720242],[-87.65465029001768,41.78540193844856],[-87.65464433119796,41.78513598160746],[-87.6546414944308,41.785064001895655],[-87.65463872636857,41.7849755996628],[-87.6546164417813,41.78408821170609],[-87.65460615369216,41.78369837914112],[-87.65459773745512,41.78337947061747],[-87.65459435420783,41.78324532042306],[-87.65459168767387,41.7831395839026],[-87.65457149633484,41.78234235797684],[-87.65455458197566,41.78154740161946],[-87.65455002454246,41.781427396479174],[-87.65454597323752,41.78132072719114],[-87.65452319783161,41.78047661324041],[-87.6545127404858,41.78006529546349],[-87.65450453982119,41.77974273425834],[-87.65450197423793,41.779608430738016],[-87.65475551004525,41.779606343699854],[-87.65557237828165,41.779595413524795],[-87.65574063697738,41.77959346087826],[-87.65591731352966,41.7795914105278],[-87.65673636115257,41.77957886579328],[-87.65693041472123,41.779575937609145],[-87.65703679308852,41.77957433222855],[-87.6572269226552,41.77957146277233],[-87.65762110711843,41.77956654084063],[-87.65796490895403,41.779562246756996],[-87.65817395409074,41.779558866720976],[-87.65839060744035,41.77955536305244],[-87.65916720887613,41.77954526845358]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"22100921.7389","perimeter":"0.0","tract_cent":"1145533.28826477","census_t_1":"17031120300","tract_numa":"97","tract_comm":"12","objectid":"734","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1939912.5609337","census_tra":"120300","tract_ce_3":"41.99111955","tract_crea":"","tract_ce_2":"-87.74005519","shape_len":"20561.9609756"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72641981408385,41.997248695990365],[-87.72785774749129,41.99546219319002],[-87.72823186775638,41.994948257074775],[-87.72888726172158,41.99404887043891],[-87.72888736606588,41.994048728564614],[-87.7291528797933,41.9936883774823],[-87.73008733248017,41.99246217720872],[-87.73049344258838,41.99191650078421],[-87.7318621809523,41.990093879659376],[-87.73191642644336,41.99009314137859],[-87.73193233577133,41.99009292478634],[-87.73212562719539,41.99009029378762],[-87.73248549543621,41.9900853948249],[-87.73286560236184,41.9900826354216],[-87.73300416841681,41.98987989412591],[-87.73305626278044,41.98980459135645],[-87.73315995093351,41.98966811574166],[-87.7332811454519,41.989508460746144],[-87.73341626933409,41.98933035508046],[-87.73351936702683,41.989193958368084],[-87.73381846589491,41.98879703668519],[-87.73389966234697,41.98868928360512],[-87.73394994470988,41.98862267005704],[-87.73406548723524,41.988469049365904],[-87.73408867056341,41.98842092738953],[-87.7341375439033,41.9883240927819],[-87.73417838361435,41.98829159510503],[-87.73422972368355,41.98826118292011],[-87.73429036370663,41.98822749876306],[-87.73442268821034,41.988163014497225],[-87.73455458676581,41.98810077837284],[-87.73490558332462,41.98793438902473],[-87.7350957391741,41.98784377633791],[-87.7352388883063,41.98777556301102],[-87.73550510543474,41.98764363655631],[-87.73578259074085,41.98751031370957],[-87.73599478909499,41.98740414735637],[-87.73613271716792,41.98733400977279],[-87.73634825806768,41.987228216896],[-87.73650324915701,41.98715449037085],[-87.73663266347071,41.987098308270994],[-87.7366761417916,41.98707943326417],[-87.73673636472076,41.98705328861594],[-87.73676486735465,41.98704131424292],[-87.73702639050956,41.986931443781074],[-87.7372296834168,41.98684512568314],[-87.73737366649027,41.986783989923545],[-87.73759309089591,41.98668337422348],[-87.73784465823445,41.98656739240157],[-87.73806918177813,41.986464085205185],[-87.73827386603736,41.98637813908704],[-87.7383194693558,41.98635899017027],[-87.73840648823456,41.98632018430734],[-87.73839588770635,41.986028710241996],[-87.73839096362858,41.98589388965683],[-87.73838782540825,41.985800579124295],[-87.73838341618227,41.98566948480589],[-87.7383766871083,41.985451999569825],[-87.73837241124859,41.98525941692961],[-87.73836648208004,41.98499157975931],[-87.7383608163633,41.98478236004946],[-87.7383558274146,41.98460711703382],[-87.73835340853351,41.98451643393747],[-87.73835031371108,41.98440132834743],[-87.73834486802055,41.984180337137644],[-87.73834152678774,41.98405650178625],[-87.73833994545949,41.98399793208487],[-87.73833075242341,41.983669870183576],[-87.73832423086716,41.9834301304799],[-87.73831883621865,41.98322930882155],[-87.73831592761584,41.983121035583224],[-87.73830962477265,41.98288151652577],[-87.73830604832261,41.98271260203845],[-87.73840398490512,41.98270953255941],[-87.73856633208794,41.98270944076161],[-87.73898477963714,41.98270120744153],[-87.73915433961157,41.98269673399149],[-87.73934430604788,41.98269294216187],[-87.73946231769699,41.982690588979125],[-87.73962192485787,41.98268846480052],[-87.73970435907265,41.9826873675216],[-87.7400082303204,41.9826759037744],[-87.74021405096522,41.9826679114918],[-87.7404122310051,41.98266284311445],[-87.74061118386606,41.98265772350108],[-87.74076914633793,41.98266243766319],[-87.74084699838684,41.98266476098126],[-87.74085356949439,41.98266495707748],[-87.74093292118556,41.98266306145872],[-87.74108467259474,41.98265937140145],[-87.74155342637158,41.98264798542789],[-87.74172256601392,41.98264517997957],[-87.74183196128624,41.98264387763622],[-87.74193447961844,41.98263850441384],[-87.74206507455695,41.98263165937715],[-87.74209544204302,41.982629050997986],[-87.7421362551328,41.982626427799715],[-87.74227066100055,41.98262111009323],[-87.74243377427773,41.98261769628652],[-87.74261263108833,41.982614088840755],[-87.74276529911121,41.98261064825613],[-87.74279333109578,41.9826100240838],[-87.74300431567534,41.982608337581695],[-87.74302387678948,41.98260895956746],[-87.74305712877617,41.98261659477572],[-87.74307374311391,41.982621674648804],[-87.7430847213136,41.98263169254473],[-87.74309457798525,41.982651638681034],[-87.74310334041378,41.98266661218657],[-87.74310945193271,41.98270179682365],[-87.7435584397559,41.98268810567537],[-87.74371958080947,41.982683198040874],[-87.74392648292097,41.98267753722662],[-87.7441037213516,41.98267394659048],[-87.74420842503069,41.98267092445508],[-87.74432490064706,41.98266756251972],[-87.74444395758874,41.98266350817367],[-87.74450819491598,41.98266136789705],[-87.74463578637877,41.98265713759091],[-87.74479693209021,41.98265170706947],[-87.74492768949003,41.982647320608145],[-87.74499987234925,41.982644898886484],[-87.74513988995085,41.98264125310046],[-87.7452968305124,41.98263714498969],[-87.74540723313504,41.982634280204266],[-87.74563233104473,41.98262969741332],[-87.74569266012415,41.98262855182022],[-87.74574358066393,41.98262675431446],[-87.74579615295688,41.98262523965988],[-87.74583089414855,41.98262687188613],[-87.74585216655123,41.982630426643],[-87.74698711212687,41.982631193228514],[-87.74699567930185,41.98266482134417],[-87.74704371165619,41.98285335975219],[-87.74712965060824,41.9830803049801],[-87.74722174513332,41.983223737932306],[-87.74730640447946,41.98332915832542],[-87.74742876556094,41.98343700513587],[-87.74771551108199,41.98357562287408],[-87.7479829456062,41.98366544503771],[-87.748118838687,41.98367105877062],[-87.74826003316262,41.983676890906764],[-87.74826988654986,41.98398752647324],[-87.74827549351727,41.98425892904811],[-87.74827723480385,41.98432436350517],[-87.74827987205711,41.984423465909444],[-87.74828286070591,41.98454123505641],[-87.74828817778365,41.9847335482744],[-87.74829945909727,41.985200723528514],[-87.74830934511479,41.98559195962192],[-87.74831276971611,41.985727485664825],[-87.74830992038912,41.98613838130509],[-87.74830902784849,41.98640536624748],[-87.74831058266915,41.986898424481126],[-87.7483136805959,41.987455951772425],[-87.74831603318096,41.98788597973507],[-87.74832250424333,41.98845675115801],[-87.74832251945982,41.98875852278572],[-87.74832252623132,41.98889626209555],[-87.74832256211808,41.989165523014904],[-87.74832617239818,41.98965905800159],[-87.74832601271916,41.989837993712996],[-87.74832595880888,41.989898637467554],[-87.74832591037392,41.989952697369894],[-87.74832578725295,41.990090800693224],[-87.74833023172738,41.99035399163018],[-87.74833070059809,41.99038176529987],[-87.74832908651223,41.9908151484677],[-87.74832666977446,41.99117951067718],[-87.74832776654041,41.99140196089306],[-87.74832777005793,41.99140270156979],[-87.74832866349863,41.9916286361456],[-87.74832948129772,41.991876770605984],[-87.74832988068667,41.99245983213615],[-87.74833088772327,41.99275157280821],[-87.7483336795601,41.99303170857305],[-87.74833412009806,41.99307595412425],[-87.74833594887608,41.99325943958713],[-87.74833597147047,41.99359436884926],[-87.74833619791931,41.993842802073274],[-87.74833742016989,41.99423155082107],[-87.74833851894395,41.99460967942518],[-87.74833936905723,41.99503102754137],[-87.7483389953815,41.9954092580829],[-87.74834063729175,41.99561768807681],[-87.74834137702776,41.99571157076244],[-87.74834108515287,41.99599249252284],[-87.7483395818103,41.99629322118267],[-87.74834026242448,41.99660452610605],[-87.74834256479629,41.99682832691238],[-87.74834413102549,41.99709394548241],[-87.74834289319323,41.99728782940781],[-87.7481617930453,41.99728730427509],[-87.74772375726256,41.99728550983506],[-87.74766498082566,41.99728520997446],[-87.7472551677214,41.997283558282874],[-87.74713841707369,41.99728309359521],[-87.74701238876835,41.997282591830036],[-87.74682797657412,41.99728186957785],[-87.74663086286888,41.99728102722904],[-87.74643377589047,41.99728023956226],[-87.74603931149555,41.99727860547162],[-87.74579636392869,41.99727741714629],[-87.74561240310841,41.99727642055758],[-87.74539885439121,41.997275327021036],[-87.74531054626287,41.99727482091199],[-87.7446999432857,41.99727158171736],[-87.74354143066454,41.997265415438186],[-87.74348856536628,41.99726511993521],[-87.74348847891801,41.997265119491004],[-87.74342000333078,41.99726473688368],[-87.74239533582193,41.99725924650837],[-87.74227729225902,41.99725861188058],[-87.74215254474225,41.997257941234174],[-87.74166622947054,41.99725532591536],[-87.74118011732624,41.99725270930958],[-87.7410599796035,41.997252334302466],[-87.74093785427448,41.9972519527543],[-87.74045427253428,41.99725143172032],[-87.73997043699873,41.99725090733715],[-87.73984239867794,41.99725076655749],[-87.73972764335556,41.99725063998873],[-87.73920915421627,41.99725009811947],[-87.73897129128969,41.99724983301155],[-87.73897127473577,41.997249832925846],[-87.73883100153758,41.99724967624094],[-87.73863994513955,41.997249517555865],[-87.73862886865612,41.99724950819594],[-87.73859169568428,41.99724946105047],[-87.7385902495573,41.99724945904644],[-87.73851637339779,41.99724936495734],[-87.73841587605602,41.997249282691236],[-87.73830480075837,41.9972491466043],[-87.73819384722562,41.99724901104115],[-87.73808289481096,41.997248874004455],[-87.73797200346354,41.997248737177244],[-87.73786105127638,41.99724865481117],[-87.73775003777567,41.99724851988005],[-87.73763906329587,41.99724838229986],[-87.73753857442911,41.997248299035185],[-87.73742038204819,41.997248166864914],[-87.73729571647891,41.99724802730658],[-87.73719733157564,41.997247900058106],[-87.73707710796562,41.99724782366974],[-87.73696403884985,41.997247677301125],[-87.73684374218294,41.99724754540491],[-87.73673073120626,41.997247397736466],[-87.73661056770501,41.99724726683681],[-87.73649758566377,41.99724717232661],[-87.73619899222388,41.997246845853475],[-87.73499134037681,41.99724551759321],[-87.73377583672846,41.99724416799907],[-87.73377582495678,41.99724416793759],[-87.73255913068421,41.99724280445442],[-87.73255837837613,41.99724280326136],[-87.73133637361819,41.9972414204288],[-87.73013118956175,41.99724004409664],[-87.7300029821433,41.997239896941146],[-87.72948803268929,41.99723927488057],[-87.72903230300905,41.99723873972149],[-87.72890910861125,41.997238954995474],[-87.7289090979432,41.997238954939306],[-87.72890901111953,41.997238955305406],[-87.72890623945098,41.997238959920864],[-87.72879015522986,41.99723916283495],[-87.72836004124109,41.997240954163544],[-87.72817817734683,41.99724175157798],[-87.72808716243686,41.997242150700174],[-87.72799620543087,41.99724249544611],[-87.72754170310859,41.997244432261496],[-87.72745077208012,41.99724483022406],[-87.72641981408385,41.997248695990365]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3491382.16369","perimeter":"0.0","tract_cent":"1168520.23586949","census_t_1":"17031070400","tract_numa":"16","tract_comm":"7","objectid":"735","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917433.19620266","census_tra":"070400","tract_ce_3":"41.92896727","tract_crea":"","tract_ce_2":"-87.65615683","shape_len":"7934.05522988"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65800114071357,41.925297670405655],[-87.6584533872407,41.92529161352405],[-87.65846086338479,41.92549795747403],[-87.65847031279223,41.92581292250649],[-87.6584706535812,41.92582427571407],[-87.65848037065408,41.926096555912636],[-87.65848615440267,41.92625861349536],[-87.65850265423956,41.92672094653903],[-87.65851571505206,41.92710799601114],[-87.6585293410353,41.92751179621782],[-87.65852986927096,41.9275627595309],[-87.65853085729962,41.92765806970801],[-87.65853198295163,41.92776661278307],[-87.65853543592166,41.92801204858965],[-87.65854898524356,41.92824206685831],[-87.65856162022872,41.928471503456414],[-87.658567415214,41.92866917609474],[-87.65857813702063,41.92892331671479],[-87.65858807797906,41.92916490395775],[-87.65859131153964,41.92927847884705],[-87.65859410644201,41.92937533912202],[-87.65860272464522,41.92967407054865],[-87.6586093655466,41.929830338365576],[-87.65862448620157,41.93018613289256],[-87.65863562711705,41.93051687698997],[-87.65864386081392,41.93073833075897],[-87.65866449047672,41.93129316710333],[-87.65867974880261,41.93170036186533],[-87.65869475157308,41.9321007494294],[-87.65871047884781,41.93255620619024],[-87.65810818369096,41.93256672743115],[-87.65745661400946,41.93257826610712],[-87.65716832212141,41.93258336998737],[-87.65647765275965,41.93259455840744],[-87.65628430964999,41.932597667355815],[-87.65584682486136,41.93260470117149],[-87.65548866216473,41.932610458234336],[-87.65518479461119,41.93261489657657],[-87.65471934459207,41.93262169313885],[-87.65416951309928,41.93263205345488],[-87.65385860753153,41.932638085503555],[-87.65383950830828,41.932180104078306],[-87.65383941095565,41.93217667267853],[-87.6538220434531,41.931561096511786],[-87.65380986836337,41.931198512966354],[-87.65379733209407,41.93082426459701],[-87.65378771021626,41.93053702469629],[-87.65376982796518,41.93002665845673],[-87.65375663321804,41.92964592947471],[-87.65374349440097,41.929266902214614],[-87.65373887248676,41.92913630481164],[-87.65373432261329,41.92900775035592],[-87.65373389706983,41.92899573555712],[-87.65371895597585,41.92857356665494],[-87.65371145971153,41.92835886927171],[-87.65370257859716,41.92810091502264],[-87.65369196612494,41.92779267581933],[-87.65368588736939,41.92763704272802],[-87.6536798877738,41.92748344027633],[-87.65367009962237,41.9271929020347],[-87.65365898592856,41.926863012564546],[-87.65365605349116,41.926765520427544],[-87.6536532820863,41.926673353033614],[-87.6536429607481,41.92634201515711],[-87.65363689217199,41.92614718854789],[-87.65362144751403,41.92579509566605],[-87.65361258292027,41.9253758060545],[-87.65385237249554,41.92537145641299],[-87.65392845862223,41.92537007624935],[-87.6543209825545,41.92536369898791],[-87.65481958231906,41.92535507598883],[-87.65530722794601,41.92534664025477],[-87.65588913776283,41.92534790706403],[-87.65602698602268,41.925343369051454],[-87.65637555550256,41.92533189290072],[-87.65663774750503,41.92532326010052],[-87.65724882120816,41.92531179404162],[-87.65785695369696,41.925300377679314],[-87.65800114071357,41.925297670405655]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4383827.69281","perimeter":"0.0","tract_cent":"1167517.59266569","census_t_1":"17031671600","tract_numa":"20","tract_comm":"67","objectid":"753","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859312.36137443","census_tra":"671600","tract_ce_3":"41.76950007","tract_crea":"","tract_ce_2":"-87.66151206","shape_len":"9275.98861254"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66356817801591,41.76491081583752],[-87.66379598336687,41.76490902747779],[-87.66380556342854,41.765097028031285],[-87.66381729608065,41.76551277543017],[-87.66382043436872,41.76580676304982],[-87.66383203535491,41.766517247328665],[-87.6638382902084,41.76673095460444],[-87.66387804012072,41.76808909279167],[-87.66388675420629,41.76838681757185],[-87.66389848924149,41.768551690094704],[-87.66393089167728,41.76900901797388],[-87.6639515740429,41.76976189625275],[-87.66396332239265,41.77018952620311],[-87.66396833556819,41.77037205857369],[-87.66397377333728,41.77057002898448],[-87.66399459565773,41.77129640070966],[-87.66399766359164,41.771401662629984],[-87.66401512622343,41.772015608576865],[-87.664021128556,41.772192017814305],[-87.66403292886028,41.772538830013325],[-87.66403559220619,41.77264768512977],[-87.66406480729289,41.77384156821923],[-87.66407020304622,41.77401262605724],[-87.66386808864874,41.77401430061781],[-87.6634462561049,41.77402006144902],[-87.66305125387753,41.77402545475713],[-87.66283959802588,41.7740283781242],[-87.66268390120563,41.77403052841225],[-87.66223795429326,41.774036685759285],[-87.66176898424612,41.77404315905574],[-87.66163267458302,41.77404441765584],[-87.66152912921322,41.77404537399175],[-87.66145147527456,41.77404607769654],[-87.66102698693588,41.774052654140114],[-87.66060155107351,41.77405924377437],[-87.66042266491459,41.77406189105955],[-87.66021758453888,41.77406492577244],[-87.65982003758815,41.774070036742195],[-87.65921619225853,41.774077797520064],[-87.6592139557195,41.77401035734419],[-87.6592059523852,41.773710358935006],[-87.65919482387672,41.77333067528018],[-87.65917967316699,41.772768032984416],[-87.65917851880722,41.772717229574184],[-87.6591716544342,41.77241347809458],[-87.65916633251315,41.77226256164254],[-87.65916105486535,41.77211291550631],[-87.65915254410525,41.77181519864488],[-87.65913991063576,41.77137325853191],[-87.65913856850405,41.77132659762013],[-87.65911748081889,41.770567785683866],[-87.65911355632439,41.77044181453186],[-87.65911042972597,41.77034144960341],[-87.65908892642001,41.769503352352686],[-87.65907805966569,41.76907910228747],[-87.65907006190741,41.76876686408206],[-87.65906569607333,41.76862228313915],[-87.65906230486728,41.76850995258562],[-87.65905349830834,41.76818464674481],[-87.65903877987638,41.767640969845864],[-87.65901889231367,41.766900743356594],[-87.65901355075778,41.76680098008743],[-87.65900938793132,41.7667232137978],[-87.6589918214474,41.76599941171741],[-87.65897820969201,41.76543620196875],[-87.65897067167396,41.76512426785887],[-87.65896728480699,41.76498085038825],[-87.65920303776176,41.76497639653945],[-87.66002792481302,41.76496246269254],[-87.6601786662279,41.7649610265224],[-87.66042743257198,41.76495865605736],[-87.66057972169322,41.764956329118874],[-87.66077021267907,41.764953418244744],[-87.66122767244775,41.764946106042295],[-87.66139078534783,41.76494287206049],[-87.66156969913958,41.764939324628756],[-87.66162413903162,41.764938654430104],[-87.66206573846749,41.76493371657919],[-87.66219845111205,41.76493163097018],[-87.66245911262935,41.76492753438653],[-87.66260304369276,41.764925365350344],[-87.66317793530534,41.76491669983436],[-87.66356817801591,41.76491081583752]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8045498.1091","perimeter":"0.0","tract_cent":"1170183.498838","census_t_1":"17031711400","tract_numa":"44","tract_comm":"71","objectid":"736","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1846270.39295028","census_tra":"711400","tract_ce_3":"41.73365362","tract_crea":"","tract_ce_2":"-87.65211857","shape_len":"17039.4312324"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64351831096963,41.732551482861965],[-87.64346787808987,41.73083719466821],[-87.64346787273763,41.7308369416103],[-87.64346681819414,41.730789911178306],[-87.64345379862924,41.73021560441372],[-87.64344668363862,41.72985687784213],[-87.64344426105696,41.72973473497545],[-87.6434407154338,41.72955597673291],[-87.64342364768824,41.728999783815304],[-87.6434149994753,41.7287688976545],[-87.6436837777026,41.728768697148446],[-87.64374429802945,41.72876869482483],[-87.6440201694545,41.72876400386352],[-87.64420027896486,41.72875930054424],[-87.64435316075088,41.728755332450476],[-87.64443766336285,41.728753149671675],[-87.64451753185419,41.7287492375755],[-87.64461542580007,41.728700618794846],[-87.64464608418002,41.72880396136548],[-87.64465350018894,41.72891224161036],[-87.64465746957892,41.728996790311875],[-87.6446635905748,41.72912685265391],[-87.64467358284392,41.72934036537466],[-87.64468120891429,41.72983545778872],[-87.64518311163768,41.729835377348415],[-87.64544295177008,41.72981772326676],[-87.64582437498227,41.72973561864391],[-87.646102375575,41.729646718986764],[-87.6464326745113,41.72950598959048],[-87.64671104491306,41.72933922099441],[-87.64698144796851,41.72914633313084],[-87.64724342406062,41.728927666348106],[-87.6474924489983,41.72863482513408],[-87.6475728391249,41.72865417210197],[-87.64795136678372,41.728700339040046],[-87.64789339261964,41.72885735310532],[-87.64782374510317,41.72904739284277],[-87.64775726627299,41.729228697345306],[-87.64767449189725,41.72945419781488],[-87.64760914271024,41.729629169590396],[-87.64752803786637,41.72984567854718],[-87.64744930682744,41.73005591712608],[-87.6474190214258,41.73013930073481],[-87.64726885956202,41.73054308065081],[-87.64714814487506,41.73086767336269],[-87.64695574866539,41.73138500538614],[-87.64687930672375,41.731589786670746],[-87.64687928295783,41.731589851020146],[-87.64685992359608,41.73164171239967],[-87.64673086418252,41.731984803843936],[-87.64655980183484,41.73243601703265],[-87.64651275537268,41.732526590727836],[-87.64695760677778,41.73252706085111],[-87.64704673906583,41.73252713439571],[-87.64717135772297,41.73252723701582],[-87.64723441040475,41.732527288871765],[-87.64750242459519,41.7325291633177],[-87.64779747281204,41.7325261310553],[-87.64782339721393,41.73252586446915],[-87.64806574892849,41.732487956605674],[-87.64827335528808,41.732440976949526],[-87.64839673647359,41.73244750243651],[-87.64862013441352,41.732456985041196],[-87.64882140847615,41.7324577177219],[-87.64899726408291,41.73245768558817],[-87.64908068666433,41.73245767058394],[-87.64934357475391,41.732455750224055],[-87.64960269953146,41.73245289520822],[-87.64992737531023,41.73244931695372],[-87.65020717806789,41.73244512001457],[-87.650399037378,41.732442241718594],[-87.65081555990297,41.73243511421355],[-87.6511847062486,41.7324287961884],[-87.65144914948117,41.73242534370125],[-87.65159615638746,41.73242338935667],[-87.65187789689087,41.73241916938324],[-87.65202582538265,41.73241695348152],[-87.65253028923016,41.73240939519536],[-87.65255948592751,41.73240895757092],[-87.65263423573582,41.73240794483277],[-87.6528040342301,41.73240564288057],[-87.65323859154097,41.73239975174285],[-87.65445303945489,41.732382827057734],[-87.65566775218885,41.73236588588203],[-87.65628028883363,41.73235801758218],[-87.65688524093957,41.73235024324714],[-87.65711894112778,41.73234723916298],[-87.65731456751261,41.73234150203166],[-87.65809856097306,41.73232924994493],[-87.65818482248989,41.732299800987015],[-87.65854048741171,41.73229641642091],[-87.65880117967434,41.73229064884751],[-87.65907401208763,41.732288601036785],[-87.65931421830841,41.732286012123666],[-87.65940288405255,41.73228505657663],[-87.65971706594436,41.73228872328742],[-87.65995336365789,41.73228645920153],[-87.66020182066414,41.73228609055651],[-87.66045275121074,41.732282086469475],[-87.66052895425445,41.732278113244675],[-87.66079882499352,41.73226404200991],[-87.66112773484456,41.73225684399287],[-87.66140056747987,41.73225479065826],[-87.66168316128154,41.73225096903804],[-87.66174640399642,41.73224861715557],[-87.66189515950921,41.73224308510756],[-87.662014563812,41.73223830896744],[-87.66211200996338,41.73223705355102],[-87.66224844449759,41.73223420134457],[-87.662399531891,41.73222778542029],[-87.66251412218567,41.73221750684095],[-87.66262627662708,41.732207214203434],[-87.6627311239582,41.73219687853664],[-87.66296089097114,41.73218920556312],[-87.6629732309042,41.73257830998754],[-87.66298992344137,41.733104657153255],[-87.66301501006953,41.733972282640664],[-87.66305306820797,41.735288483820085],[-87.6630550556713,41.735357213298364],[-87.66306513463402,41.73578978493854],[-87.66257857686566,41.73579711799655],[-87.66192777441485,41.73580684815485],[-87.66184870923621,41.735808029974336],[-87.66114776366676,41.735818504960214],[-87.6606346735357,41.73582728849751],[-87.6601538009711,41.73583551863336],[-87.65986013969378,41.7358393413023],[-87.65941785190412,41.73584524778314],[-87.65883767006817,41.735852993095484],[-87.65842861457598,41.735858604548916],[-87.65820487654872,41.735861645660414],[-87.65769980513707,41.73586850952817],[-87.65731738355554,41.735874328516545],[-87.65698728849542,41.73587947974499],[-87.65638261596091,41.735888913499295],[-87.65600246190333,41.73589509823024],[-87.65584468081502,41.73589730807406],[-87.65577059833092,41.73589834549062],[-87.65512542383212,41.7359073787335],[-87.65455600180064,41.73591581496085],[-87.65409894299434,41.73592258381926],[-87.65334015449258,41.7359353726428],[-87.65278396737719,41.735944743417384],[-87.65276667209598,41.7359449521841],[-87.65212816876084,41.73595265790545],[-87.65167367494797,41.73595814057351],[-87.6512669620704,41.73596385019649],[-87.65091649202287,41.735969111393],[-87.65032900975388,41.73597792792695],[-87.6500067961444,41.73598262596611],[-87.64970346190478,41.73598629955774],[-87.64930624802996,41.735991108947964],[-87.64886885877463,41.7359976702959],[-87.6484924260795,41.73600339102387],[-87.64810870362331,41.73600922127628],[-87.6476401067918,41.736014988085834],[-87.6472813774546,41.73602028550384],[-87.64690692467197,41.73602581389539],[-87.646354618569,41.736034012041394],[-87.64624383568976,41.736035654313376],[-87.64608934948636,41.73603794455786],[-87.64572572582051,41.73604333463173],[-87.64517231804338,41.7360515355946],[-87.64503338920584,41.73605359403797],[-87.64500823165564,41.73605396667441],[-87.64492665549426,41.736055175045],[-87.64486741928211,41.73605605287738],[-87.64480893648532,41.73605691900241],[-87.64465597388015,41.73605918516394],[-87.64463673844577,41.736059469993926],[-87.64460342382573,41.73605996324851],[-87.64458250897118,41.73606027313011],[-87.64404490282263,41.73606823488504],[-87.64377314121833,41.73607225839956],[-87.64368013852607,41.736073635242654],[-87.64362180882279,41.73607036024119],[-87.64361496456706,41.73586566264526],[-87.64359762557885,41.73538856172329],[-87.64358104777777,41.73477619981528],[-87.64356852199565,41.73431351118511],[-87.64356558207541,41.73421034799419],[-87.64354139083738,41.733361434802475],[-87.64351831096963,41.732551482861965]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3545305.25547","perimeter":"0.0","tract_cent":"1145852.64157741","census_t_1":"17031560400","tract_numa":"16","tract_comm":"56","objectid":"737","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871726.26058731","census_tra":"560400","tract_ce_3":"41.80400278","tract_crea":"","tract_ce_2":"-87.74061325","shape_len":"7986.82120291"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.73827197637961,41.807683529142274],[-87.73827392999557,41.807352402718514],[-87.73826017768731,41.80695578243371],[-87.73824283127914,41.80645211641164],[-87.7382322073344,41.8061138283152],[-87.738226864019,41.80594811445264],[-87.7382237088791,41.80584312921972],[-87.73820301058609,41.805107210616214],[-87.73818702761056,41.80460492363226],[-87.73817048517505,41.80411361084619],[-87.738168033552,41.804032019592434],[-87.73816803157644,41.80403195564035],[-87.73816631600913,41.80397442789927],[-87.73816628181682,41.80397328747148],[-87.7381645070305,41.80391736345788],[-87.73815757298523,41.803675830396315],[-87.73814099620668,41.80308915341322],[-87.73812075593821,41.80240297700946],[-87.7381151955747,41.80221119119105],[-87.73810580163884,41.80188868885761],[-87.73809144130941,41.80140939339247],[-87.7380776071521,41.800972294299335],[-87.73807031679056,41.80071978184132],[-87.7380631693344,41.80045183349687],[-87.73806105056397,41.80038355864725],[-87.73821104574044,41.80038235992051],[-87.73836073756443,41.80038025381196],[-87.73852653241235,41.800377874130895],[-87.73866914240025,41.80037614259469],[-87.7386738739506,41.80037609683416],[-87.73892222533703,41.80037369274959],[-87.73905588679972,41.800371969315464],[-87.73928745768394,41.80036908986284],[-87.73946270003887,41.80036691054189],[-87.73975433276068,41.80036402696097],[-87.73990094137352,41.80036217981227],[-87.74007098828484,41.800360036940475],[-87.74029248286908,41.800358710752334],[-87.74051331536864,41.800355444076764],[-87.74065693965652,41.80035331930617],[-87.74084678926934,41.80035138969328],[-87.74103634801223,41.80034918383815],[-87.74112720429257,41.800347952718525],[-87.74135175904621,41.80034490944136],[-87.74160723167248,41.80034180736572],[-87.74173791806037,41.80034094338338],[-87.74200855816376,41.80033915372853],[-87.74225206782882,41.800336784481814],[-87.74234651807842,41.80033517379166],[-87.742528973695,41.80033206173549],[-87.74272190885092,41.800329596034636],[-87.74295868696494,41.80032747663542],[-87.74296464017476,41.80056029690545],[-87.74297477406873,41.80095662160779],[-87.74299053168436,41.801612859161686],[-87.7429906339969,41.80161713610981],[-87.74300335312198,41.80214891472656],[-87.74301869737607,41.80267038222884],[-87.74303859429762,41.80328602130255],[-87.74306057055837,41.80397085526171],[-87.74305287352215,41.804347024902555],[-87.74308543671806,41.804752511948635],[-87.74309909229171,41.80533771396354],[-87.74309909422941,41.80533778258062],[-87.74310686828134,41.80579985447523],[-87.74311424734596,41.80618508240882],[-87.74311424903529,41.80618513812648],[-87.74313043299372,41.806843866328265],[-87.7431319852069,41.8069003788458],[-87.74315183339885,41.80762308434993],[-87.74308319325975,41.8076288651513],[-87.74292379201117,41.80764228937141],[-87.74274033360062,41.807644858988276],[-87.74254685069869,41.80764834192152],[-87.7423998143008,41.807651313183676],[-87.74222305722932,41.80764318629693],[-87.74208853173594,41.807637554266236],[-87.74193356421036,41.80763848215486],[-87.74179772025252,41.80763929535631],[-87.7416245033834,41.8076410377584],[-87.74138210558633,41.80764313693653],[-87.74118709385748,41.80764569942199],[-87.74104193006949,41.80764813440728],[-87.74080388729155,41.807651297647766],[-87.74071013940002,41.807652540198355],[-87.74045212404752,41.807655959171406],[-87.74018432944398,41.8076596261966],[-87.73994991669505,41.807662915907876],[-87.7397161254188,41.807666428443845],[-87.73948887482543,41.80766946360557],[-87.73920651003526,41.80767323415067],[-87.73897610345949,41.8076756372553],[-87.73874972889405,41.807678335195995],[-87.7385309499223,41.8076807152634],[-87.73840842611915,41.807681994366334],[-87.73833766659094,41.80768273300361],[-87.73827197637961,41.807683529142274]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3084746.87559","perimeter":"0.0","tract_cent":"1183523.49143579","census_t_1":"17031440800","tract_numa":"12","tract_comm":"44","objectid":"738","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1845700.53623576","census_tra":"440800","tract_ce_3":"41.73178974","tract_crea":"","tract_ce_2":"-87.60326551","shape_len":"11507.1119477"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60318607849747,41.72791806107155],[-87.60327306000772,41.727551472964066],[-87.60311437393392,41.72755354484957],[-87.60311347736022,41.72755355753878],[-87.60293014967186,41.72755613395035],[-87.60295534163114,41.72742783250975],[-87.60300166140301,41.727238933971826],[-87.6030552138653,41.72700655656614],[-87.60311593839451,41.72674897701964],[-87.60316453369893,41.726546673159795],[-87.60322861627549,41.726277149662735],[-87.60327855388738,41.72605976054],[-87.60335385600386,41.72572429348443],[-87.60317457879636,41.72572739549254],[-87.60309507077153,41.72572877146845],[-87.60306164118609,41.72572934992762],[-87.6031194458277,41.72547679032441],[-87.60320374888256,41.72510855853455],[-87.6032683307707,41.724823903499264],[-87.60333868605784,41.72451458598554],[-87.6034186984258,41.724161077680584],[-87.60354206873656,41.72361780059256],[-87.603571477139,41.723487289636594],[-87.60358543434434,41.723427346383914],[-87.6037700608714,41.7234593922958],[-87.60407209030026,41.72351585278717],[-87.60437491967835,41.72358260874118],[-87.60450663557715,41.72361388117884],[-87.60450702502796,41.72361397338812],[-87.60450702391394,41.72361400713613],[-87.60450612360145,41.72364297727621],[-87.60450518300709,41.72367324275174],[-87.60450715766419,41.72373377373458],[-87.60451870282364,41.72408758284342],[-87.60453244591939,41.7245087576639],[-87.60453826279222,41.72466826667909],[-87.60454890107246,41.72504617136908],[-87.60455958294163,41.725472156695005],[-87.6045656285573,41.72570343067265],[-87.60457173144113,41.7259369010041],[-87.60457161992278,41.72617046885422],[-87.604574014924,41.726448016498],[-87.60458078095857,41.7266187280034],[-87.604589435813,41.726837093314785],[-87.60459289913936,41.72712060286207],[-87.60460340912134,41.72740948105322],[-87.60460579320906,41.72753350867005],[-87.60460908448727,41.727704722818125],[-87.60461420920133,41.72798058622584],[-87.60461971483316,41.72824550222765],[-87.60462550243203,41.728444885267436],[-87.60462918074903,41.728571613789256],[-87.60463405293586,41.72885362308845],[-87.60464155964955,41.72915546274278],[-87.6046473703878,41.729354720482185],[-87.60465183009875,41.7295076505953],[-87.60465983998105,41.729751945179586],[-87.6046606159121,41.729876102781816],[-87.60466866161802,41.73026547672741],[-87.60467644873854,41.73064230530657],[-87.60468961099247,41.73117792691828],[-87.60471199670262,41.732088872858164],[-87.6047344026235,41.73300063109625],[-87.60475682869124,41.73391320739482],[-87.60476488621705,41.73424104190837],[-87.60476612115774,41.734294446054],[-87.60477840280974,41.734825444711426],[-87.60479950217099,41.73573758309543],[-87.6048055210733,41.73599782212144],[-87.6048101756848,41.736188965600626],[-87.60482283313425,41.73664940836098],[-87.60427296567738,41.73665661886099],[-87.60421286837132,41.73665737860643],[-87.60405867044977,41.736659328201064],[-87.60360618679927,41.736665047850124],[-87.60316161862212,41.73667066563001],[-87.60239358778001,41.73668065601749],[-87.60197976260353,41.73668603667725],[-87.60187352757674,41.736687698313986],[-87.60118805450328,41.736698417758475],[-87.6008624401657,41.73670350844187],[-87.60058963184608,41.73670743410374],[-87.60050489167364,41.73670865359718],[-87.60045150975657,41.7367094215474],[-87.60041840866386,41.736709897861665],[-87.6003936344215,41.73671025439098],[-87.60039359191394,41.73671025494312],[-87.60049055244396,41.73607676573479],[-87.60060479851147,41.73557494302227],[-87.60075217736333,41.73493817361103],[-87.60087759451983,41.73437982008271],[-87.60090412171814,41.734261983585384],[-87.60101747255726,41.733757753592],[-87.60112397812563,41.73329155630117],[-87.60116059580865,41.733131933563264],[-87.6018467935487,41.73303314237908],[-87.6020187639914,41.733030535507595],[-87.6020841607157,41.73274104247637],[-87.6021582979076,41.73241614879156],[-87.6022240383446,41.732127344187404],[-87.60233685498089,41.73163180820233],[-87.60242878766961,41.73123203506403],[-87.6024339506775,41.73120958266538],[-87.60248606522744,41.730982959325516],[-87.60260321603283,41.730466676102616],[-87.60264249869921,41.73029535126829],[-87.60274142012555,41.729863916089585],[-87.60275144217698,41.72982012570605],[-87.60280943692482,41.7295645601615],[-87.60285004223238,41.72938390858424],[-87.6028755234831,41.729270543040556],[-87.60294454993067,41.72897566609868],[-87.60304072136427,41.72854498121061],[-87.60312718224624,41.728169395187244],[-87.60318607849747,41.72791806107155]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2640910.15872","perimeter":"0.0","tract_cent":"1188206.33400363","census_t_1":"17031410100","tract_numa":"10","tract_comm":"41","objectid":"739","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871044.99424687","census_tra":"410100","tract_ce_3":"41.80122684","tract_crea":"","tract_ce_2":"-87.58530316","shape_len":"8347.23934999"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58039585120234,41.80244312138601],[-87.58041099058296,41.80237864176047],[-87.58042350963296,41.8022965673194],[-87.58042351323557,41.802296541546816],[-87.58043032455069,41.802251885222766],[-87.58044958027268,41.80213180581372],[-87.58045208441462,41.80209725861427],[-87.58046022448445,41.80198495854498],[-87.58046932025508,41.801909256918776],[-87.58047633916344,41.801850839128505],[-87.58047633998363,41.80185083172433],[-87.5804898896592,41.801738064350204],[-87.58049606236688,41.80164650112733],[-87.58050068966492,41.801577861694284],[-87.5804999926453,41.80147993200551],[-87.58049921307482,41.801370380585524],[-87.58049848983204,41.801268737989375],[-87.58049764663573,41.801150271914075],[-87.58049731526955,41.80110369634606],[-87.58049030820345,41.801030049467755],[-87.58048142069948,41.80093664025212],[-87.58047385343724,41.80086066008265],[-87.58047385246554,41.80086064909918],[-87.580465448399,41.80077626238877],[-87.58045566846263,41.80069891039497],[-87.58044094273878,41.80058243787375],[-87.58042803107107,41.800476457083654],[-87.58041651575867,41.80038193539007],[-87.58040337570317,41.80029725637189],[-87.58038251146628,41.80016280151601],[-87.58035895528938,41.8000109975247],[-87.58035895426309,41.80001099120613],[-87.58035009244864,41.79995388370844],[-87.58034182813802,41.79990062485877],[-87.58032299985395,41.7998135136075],[-87.58029374217269,41.799678148313134],[-87.58070145403306,41.79968160653411],[-87.58071657894962,41.79968127614968],[-87.5814225076516,41.7996658652425],[-87.5815177687076,41.79966320466292],[-87.58151879777263,41.79966317599669],[-87.58175235205563,41.79965665259641],[-87.58214515858421,41.799648482753476],[-87.58231988071982,41.799645106173365],[-87.58252501242166,41.799641141577204],[-87.5831294432967,41.79963548555105],[-87.58335436079281,41.79963317450532],[-87.58373984696571,41.79962712104112],[-87.58405510846084,41.799616533001796],[-87.58445690056676,41.79960303782099],[-87.58473396784363,41.799597656737895],[-87.58491589572992,41.79959587532948],[-87.58519303926673,41.79959345443712],[-87.58550998691946,41.79959205628793],[-87.58581111517178,41.79959072721235],[-87.58611479547335,41.79958331753417],[-87.58633555072132,41.79957937448506],[-87.58644608720498,41.79957697078719],[-87.58652545762328,41.799575244462474],[-87.58655316033939,41.79957464216443],[-87.58664851553917,41.799571993857725],[-87.58679907642617,41.79956781207324],[-87.58688329567536,41.79956630060463],[-87.58694152062884,41.799565982987545],[-87.58703321199958,41.79956548292607],[-87.58715732889111,41.799564805928064],[-87.58724154325907,41.79956434659567],[-87.58730177518319,41.799564017955774],[-87.58730982954526,41.79966012356174],[-87.58735221574624,41.800031644738674],[-87.58738208732734,41.80029346883069],[-87.58750324354276,41.801028485600874],[-87.587576457073,41.80102809455921],[-87.58789601712654,41.80102638654037],[-87.58842342321456,41.80101916685489],[-87.58879125687136,41.80101482229246],[-87.58912322610867,41.80100968519887],[-87.58924818332247,41.80100775066918],[-87.58948620131758,41.801004066247046],[-87.58975153203897,41.80100240859861],[-87.5899692038534,41.80099906979884],[-87.59018834542046,41.80099549310976],[-87.59047463589866,41.80099205305429],[-87.5907822063113,41.80098835631343],[-87.59096968454708,41.800985835547316],[-87.5911803028326,41.800983510355266],[-87.59137558308633,41.800981844503376],[-87.59155502834467,41.800979408385274],[-87.59182080979689,41.8009758945585],[-87.59182369742713,41.801178072332156],[-87.59182981445687,41.80141730304837],[-87.59183442233979,41.80161571660832],[-87.59183931002632,41.8018089178406],[-87.59184084700735,41.8018642795602],[-87.59184467380592,41.802002149582215],[-87.59184954465485,41.80217775987628],[-87.59185231662885,41.80242134306179],[-87.59154186531391,41.80242594173888],[-87.59132309641083,41.80242859035462],[-87.59107381686324,41.80243087675347],[-87.5907619453322,41.80243506320657],[-87.59050700623399,41.802437441868626],[-87.5901712440441,41.80244057374914],[-87.58985217709854,41.80244534236478],[-87.58961858213814,41.80244876994357],[-87.58934435861653,41.80245135761896],[-87.58915454937652,41.80245529780114],[-87.58872771578,41.80246415715247],[-87.58838689638708,41.802469192336744],[-87.58819966541854,41.80247214929288],[-87.58785733381043,41.80247521972027],[-87.58769609982825,41.8024767526078],[-87.58754106735168,41.80247835846288],[-87.58747023806995,41.80247943703341],[-87.58732305174826,41.802481678069746],[-87.58732301616202,41.80248167893636],[-87.58727031069405,41.80248246097152],[-87.58717814107152,41.802483803071404],[-87.58709675762165,41.80248498794115],[-87.58702079513589,41.80248609381085],[-87.5868058645633,41.802486645391646],[-87.58680584622007,41.80248664582129],[-87.58664669271955,41.80248945312338],[-87.5865830790355,41.80249057256043],[-87.58644214249186,41.80249305260448],[-87.58631195801753,41.80249534306329],[-87.58629250890691,41.80249568503092],[-87.58608282133807,41.802499507875744],[-87.58586404291029,41.80250296931379],[-87.58558415197106,41.80250721258461],[-87.58552670193717,41.80250790475657],[-87.58540606339282,41.80250935812941],[-87.58532301177327,41.802510359089155],[-87.58523043503303,41.80251147468851],[-87.58494537507106,41.802514909676624],[-87.58488929178124,41.802515585461094],[-87.58461256555857,41.80251891392958],[-87.58446906658881,41.80252029799667],[-87.58425599329414,41.80252235226969],[-87.58404609836455,41.802525099775835],[-87.58382356047966,41.802530097316605],[-87.5826480144993,41.802533988035464],[-87.58164791298117,41.80243414266394],[-87.5816280814388,41.80244075118723],[-87.58104820819877,41.80263397933838],[-87.5806081932176,41.80258444364187],[-87.58060742532095,41.80258424623629],[-87.58037662084516,41.80252502285026],[-87.58039585120234,41.80244312138601]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1168453.72345","perimeter":"0.0","tract_cent":"1154748.58958141","census_t_1":"17031291800","tract_numa":"5","tract_comm":"29","objectid":"740","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1891516.79253654","census_tra":"291800","tract_ce_3":"41.8581375","tract_crea":"","tract_ce_2":"-87.70745805","shape_len":"5491.93991043"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70461301827676,41.8580268402118],[-87.70493441700746,41.85790881232002],[-87.70542497222254,41.857736354028255],[-87.70542711221331,41.857843873687884],[-87.70542977680164,41.857977770454646],[-87.70564373463152,41.857897103748755],[-87.7059553907548,41.857787856258305],[-87.70648802557474,41.8575962241099],[-87.70663501895804,41.85754313592219],[-87.70689420448,41.857449097746546],[-87.70760128691717,41.857199190688284],[-87.70784583639983,41.857111222144226],[-87.70803971986369,41.85704147848509],[-87.7087553248831,41.856789991578815],[-87.70904935179776,41.85669010637998],[-87.70920780902576,41.856636275599456],[-87.71025628566302,41.85627088893753],[-87.71025973713286,41.856369680409],[-87.71026489279289,41.85651723370936],[-87.71026932800834,41.85667672666126],[-87.71027434297034,41.856856667208014],[-87.71028006645703,41.8570620171173],[-87.71028327340196,41.857193079456415],[-87.71028783287835,41.857379714055625],[-87.71032935526313,41.85891085122223],[-87.71033304716586,41.85902520883278],[-87.71014864190495,41.85903141398058],[-87.70971931029388,41.85903597990935],[-87.70928589398592,41.85904058790063],[-87.7091116420101,41.859041232623284],[-87.70898545727896,41.85904169931404],[-87.70849978587391,41.85904678810002],[-87.70804058459773,41.85905159743197],[-87.70789364098583,41.859052664505384],[-87.70774039474215,41.859053777192486],[-87.70728618809896,41.85906015490743],[-87.70681674584111,41.85906674464375],[-87.70667570350534,41.85906893923028],[-87.70655820248452,41.859070767603924],[-87.70648910805251,41.85907165286932],[-87.70607059982851,41.85907634216636],[-87.70571512582374,41.859080323916054],[-87.70545649432086,41.85908385159423],[-87.70520377592374,41.85908729796625],[-87.70486586292273,41.85909136132893],[-87.70372562788691,41.859105064762225],[-87.70294815103776,41.85911440190362],[-87.7029426720869,41.8589450261748],[-87.70293930290146,41.8588408631101],[-87.70293524712957,41.8587154848104],[-87.70293193453853,41.858613073986106],[-87.70322200995197,41.85851131734979],[-87.70382940471127,41.85829647965313],[-87.70422380899056,41.858160768952224],[-87.70461301827676,41.8580268402118]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5418768.36205","perimeter":"0.0","tract_cent":"1161699.07702351","census_t_1":"17031280500","tract_numa":"35","tract_comm":"28","objectid":"741","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901669.28207934","census_tra":"280500","tract_ce_3":"41.885855","tract_crea":"","tract_ce_2":"-87.68166247","shape_len":"9418.96179871"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67684052330199,41.888522984489896],[-87.67683752384202,41.88841559832839],[-87.67683523717362,41.88833418747156],[-87.67682881652826,41.88810716270603],[-87.67682360308311,41.88792425660509],[-87.67681704532839,41.887675764752615],[-87.67681188152055,41.887480088863846],[-87.67680461153503,41.887222362660246],[-87.67680015716796,41.887064900273494],[-87.6767917871703,41.886771753858454],[-87.67678491145772,41.886530948133604],[-87.67677753129418,41.88629407777743],[-87.67677048788333,41.88606736303582],[-87.67676526911647,41.88586394773673],[-87.67676032963732,41.885671420440076],[-87.67675621488159,41.88551376758005],[-87.67675347251583,41.88540790643485],[-87.67675210885108,41.88535526405004],[-87.67673907616287,41.8849824795578],[-87.67673803399072,41.88495267001614],[-87.67673381618985,41.88483202431894],[-87.67672913152637,41.88464396195631],[-87.67672596805414,41.88451532116351],[-87.67672214241453,41.884361758847476],[-87.67671509804113,41.884077030978546],[-87.67671486244643,41.88406751012346],[-87.67671260963931,41.883976467375014],[-87.67670551916056,41.88368990030504],[-87.67669961053872,41.8834850635735],[-87.67669035873979,41.88314691345579],[-87.67688253430507,41.883144184745774],[-87.67712684230314,41.88314071547026],[-87.67768956657237,41.883131278609326],[-87.67807668960776,41.8831247888795],[-87.67849888458599,41.88311811364246],[-87.67874911590286,41.883114163438066],[-87.67892383344669,41.88311142510352],[-87.67913055642623,41.88310740697348],[-87.67953744345773,41.8830994974596],[-87.6799230575775,41.88309329478088],[-87.68036218746578,41.88308605042833],[-87.68083817591418,41.88307983709926],[-87.68125787279773,41.88307316496585],[-87.68157018886178,41.883067048218855],[-87.68180320203722,41.88306248403031],[-87.68234832357025,41.88305415937781],[-87.68269981334592,41.88304879674183],[-87.68320982211543,41.883041037721746],[-87.68363160926606,41.88303464289493],[-87.68401259568905,41.88302846643661],[-87.68422896400858,41.883024958263746],[-87.68466784351132,41.883016927640014],[-87.6852295312218,41.883008106589244],[-87.68549360201048,41.88300460206264],[-87.68607151585242,41.882996280064596],[-87.68624578642309,41.88299410628146],[-87.68648456595453,41.88299620313855],[-87.6864930313687,41.88334083496542],[-87.68649658901438,41.88349779836996],[-87.68650129712336,41.88369365419871],[-87.68650604929292,41.88384392891341],[-87.68651232237548,41.88404231770094],[-87.68651755553711,41.8842259920224],[-87.68652159827636,41.88436789223255],[-87.68652842663522,41.88463488282805],[-87.68652910592365,41.88466143502241],[-87.68653263327538,41.88479934959709],[-87.68653725895555,41.8849888657124],[-87.6865433721237,41.885238406816676],[-87.68655243924418,41.88560651588332],[-87.68655538958508,41.88570661507294],[-87.68656871877063,41.8861588591802],[-87.68657007185567,41.886218484395116],[-87.68657408344117,41.88639527853338],[-87.686578648426,41.8866292435869],[-87.68658691459305,41.88705287122709],[-87.68658977045033,41.8873414173066],[-87.68659325051907,41.8877100438948],[-87.68659560592356,41.88798991476717],[-87.6866227776474,41.888186501504734],[-87.68662501567516,41.888332918628606],[-87.68662375196509,41.88841087544321],[-87.68662316092531,41.88851051144433],[-87.68662275101445,41.888579517503885],[-87.68662254544674,41.88861413578808],[-87.68662242195055,41.888634936724756],[-87.68628039052538,41.8885977725997],[-87.68599308499942,41.88857227849707],[-87.68586299392388,41.888573109312944],[-87.68568189961071,41.8885766984563],[-87.68555858651195,41.8885789952569],[-87.68541048177656,41.88858175386286],[-87.68530759655597,41.888583368446085],[-87.68511541829909,41.888586235530425],[-87.68481297138375,41.888590867114715],[-87.68450067174719,41.88859653993143],[-87.68418364109561,41.888601808370794],[-87.68408662866064,41.88860342048001],[-87.6839049688537,41.888604808229694],[-87.68366264765405,41.88860887119263],[-87.68337999491804,41.88861358381481],[-87.68302703650782,41.8886194887423],[-87.68294305389585,41.88862089046492],[-87.68267349156622,41.88862538953592],[-87.68248160292255,41.888628610604194],[-87.68205775177061,41.88863567522929],[-87.68173967938513,41.888641033647005],[-87.67928985244902,41.8886878022145],[-87.67874584251908,41.88869108374686],[-87.67783227629252,41.88870574836228],[-87.67684594636304,41.88872043378143],[-87.6768436625196,41.888635373652356],[-87.67684052330199,41.888522984489896]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5160399.89662","perimeter":"0.0","tract_cent":"1153875.29888285","census_t_1":"17031231000","tract_numa":"25","tract_comm":"23","objectid":"742","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906442.37962869","census_tra":"231000","tract_ce_3":"41.89911229","tract_crea":"","tract_ce_2":"-87.71026585","shape_len":"10856.3268067"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7067040248882,41.900136155159835],[-87.70669760214982,41.89995451081729],[-87.70668376912495,41.89950964917689],[-87.70667857196962,41.89931236495133],[-87.70667445661944,41.89919540143121],[-87.70666954622983,41.89905583915523],[-87.70666146908268,41.898799977141174],[-87.70665903550608,41.89872323466874],[-87.70665299045763,41.89853258712087],[-87.70664638093056,41.89831067713359],[-87.70664109942811,41.89813334494483],[-87.70662813018976,41.89775937596503],[-87.70662385027867,41.897635967491055],[-87.70662157712044,41.89755796490002],[-87.70660427796791,41.89696437188411],[-87.70660073242635,41.896845278875475],[-87.70659802902739,41.89675654971068],[-87.70658593533993,41.896359606797695],[-87.70656656616626,41.89586504390638],[-87.70655633277818,41.895553410306064],[-87.70672055064738,41.89555186083939],[-87.70704542117612,41.895548556246766],[-87.70755344530761,41.89554331262421],[-87.70777674458553,41.89554137338156],[-87.70784826357813,41.895540747588086],[-87.70822007139614,41.895537777649835],[-87.70862729766068,41.895533681956294],[-87.70885052772317,41.89553133849201],[-87.70899948179748,41.895529778499586],[-87.70931950436837,41.89552641367257],[-87.70977731277165,41.895521765482144],[-87.70990668685005,41.895520550241606],[-87.71021612670586,41.895517643574905],[-87.71036232455357,41.895516268834605],[-87.71073729480328,41.89551289626495],[-87.71126922543932,41.89550806767914],[-87.71143590960692,41.895506620602404],[-87.71182789548624,41.89550321669646],[-87.71205909567945,41.89550091314831],[-87.71265534852894,41.895494970023336],[-87.71281135634587,41.89549341439635],[-87.71314378842483,41.895490545044424],[-87.71326569979813,41.89548935075326],[-87.71367653055464,41.89548532549501],[-87.71387286747256,41.89548332659708],[-87.71387522488433,41.895581759862225],[-87.7138840480203,41.895789985555815],[-87.71389000899644,41.89596048883929],[-87.71389794695432,41.89618753633069],[-87.71391497148082,41.89669877036711],[-87.71393075658798,41.89719764859103],[-87.71393428025534,41.897306503879335],[-87.71393700796295,41.897390767031744],[-87.71395803184,41.8980089381038],[-87.71397117918265,41.8984007217621],[-87.71398818656526,41.8989556437887],[-87.71399685548593,41.89912972332719],[-87.71400126081842,41.89921817332928],[-87.71401619299664,41.899771217999344],[-87.71403539835495,41.90033822611771],[-87.71405732610845,41.900950413531945],[-87.71385708573014,41.90095142514278],[-87.71368320593966,41.90095380752273],[-87.7136099675283,41.90096068452572],[-87.71351949341981,41.90098357713045],[-87.7134549758013,41.90101547367234],[-87.71328719730413,41.900949117779824],[-87.71298355170498,41.900828871568336],[-87.71278341334889,41.90074305251491],[-87.71277007107967,41.900735674701856],[-87.7126901381057,41.90069147403014],[-87.71262600988847,41.90064142925818],[-87.71249631270125,41.90053842292392],[-87.71229881379168,41.900381701783736],[-87.71212074002906,41.900240892200785],[-87.71188391964976,41.90005297269356],[-87.71168024567676,41.90011117628368],[-87.71155510886652,41.90014693622813],[-87.71184107686501,41.90037355849245],[-87.71202379516293,41.90051827673249],[-87.71248893623624,41.90089606732781],[-87.71301541922402,41.90134107738205],[-87.71332506192608,41.90160859769141],[-87.71362962787981,41.90187917702708],[-87.71374023445479,41.9019795955233],[-87.71374290841209,41.902035284496364],[-87.71393003424787,41.902152820925046],[-87.71420535427478,41.90240917646642],[-87.71451383854058,41.902702757543565],[-87.71459152720352,41.9027698194331],[-87.7144920688809,41.90277055296627],[-87.71426113450732,41.90277225441127],[-87.71407100597847,41.90277365514938],[-87.71377845490815,41.90277549944567],[-87.7130247597882,41.902780247484685],[-87.71212835345698,41.902782811118094],[-87.71167499690328,41.90278776246683],[-87.71136556590577,41.902791140955024],[-87.71075348635524,41.90278927852475],[-87.71062001393702,41.90279109514103],[-87.71024450702683,41.902796205024075],[-87.70960394342777,41.90280345742561],[-87.70944780615098,41.90280530708733],[-87.70923292414146,41.90280785237116],[-87.7067894016374,41.902831916452065],[-87.7067888077494,41.90280541678112],[-87.70678607892424,41.90268358905627],[-87.70677555934103,41.90237689061165],[-87.70676637487689,41.90215911272135],[-87.70676266888289,41.901995590844365],[-87.70675898329802,41.90187161325996],[-87.70675703916862,41.901801748638555],[-87.70675642070498,41.901779530387834],[-87.70674318788596,41.90137465571045],[-87.70673572081984,41.90115027353864],[-87.70673108830637,41.90100601085132],[-87.7067255271928,41.9008328193752],[-87.70671621313421,41.90054187933216],[-87.70670822034492,41.90025481585961],[-87.7067040248882,41.900136155159835]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10048108.5381","perimeter":"0.0","tract_cent":"1125489.90106747","census_t_1":"17031090100","tract_numa":"50","tract_comm":"9","objectid":"743","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1948577.65592103","census_tra":"090100","tract_ce_3":"42.01525474","tract_crea":"","tract_ce_2":"-87.81358786","shape_len":"13262.3379719"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80655165677216,42.01871833778112],[-87.80655479403372,42.01851041826093],[-87.80655981584822,42.01817831232548],[-87.80655981889647,42.018178032157934],[-87.80656360627604,42.01782163502762],[-87.80656360645949,42.01782161280055],[-87.80656696231355,42.01750420857423],[-87.80656802901852,42.01743644520646],[-87.80657067366064,42.0172684447247],[-87.80657153559389,42.017150668140616],[-87.80657226354427,42.017049081647635],[-87.8065726479786,42.01701146087061],[-87.80657662650212,42.01663865430027],[-87.80657784257949,42.01652469265225],[-87.80659244094204,42.01550485515005],[-87.80659338555479,42.015336777656536],[-87.80659338566802,42.01533676393612],[-87.80659399396515,42.01522736991942],[-87.80659403746841,42.01522432763701],[-87.8066070404679,42.01430623272595],[-87.8066151134113,42.013675682233284],[-87.80660887501787,42.01352651047529],[-87.8066088746635,42.01352650882715],[-87.80660887467708,42.01352650718069],[-87.80660503423128,42.01343453121699],[-87.80661754597259,42.01326494337612],[-87.80662691742347,42.01258396078962],[-87.80662970646917,42.01240174345307],[-87.80663178820323,42.01226573941798],[-87.80663237684568,42.0122255669008],[-87.80663826127896,42.011713061757575],[-87.80663826129934,42.0117130592879],[-87.80663826131972,42.01171305681822],[-87.80693997800537,42.011710438702316],[-87.80710943546978,42.011704876871185],[-87.80723779802456,42.011701733431366],[-87.80741432011943,42.0116974104235],[-87.80785526866167,42.011686674039034],[-87.8083022529185,42.01167578958588],[-87.8084405279564,42.01167211358511],[-87.80866220595958,42.01166577261508],[-87.80910029502184,42.01165306039699],[-87.80935834248727,42.01164557190347],[-87.80958572132981,42.011639529591356],[-87.80977434488953,42.01163451751192],[-87.8099634086154,42.011629671780845],[-87.8102939181172,42.01162035982918],[-87.81056870468278,42.011612616955354],[-87.81074625207673,42.01160763516074],[-87.81093425338992,42.011602198206496],[-87.81115044750162,42.01159594574751],[-87.8115320298474,42.01158443449567],[-87.8118186371617,42.011577798327814],[-87.81194469291597,42.01157441933333],[-87.81223349746398,42.01156681215921],[-87.8124509014117,42.01156107535756],[-87.81273157514448,42.01155330434987],[-87.81293068931038,42.01154779076231],[-87.81298228968524,42.01154636198166],[-87.81328401291117,42.01153834421329],[-87.81341054552243,42.01153513042063],[-87.81361953729565,42.01153006102934],[-87.81379704083011,42.01152575515022],[-87.81394399500036,42.01152219028451],[-87.81400352805154,42.01152074589612],[-87.81418042694371,42.011513999572585],[-87.81431527560886,42.01151076915606],[-87.8144068799484,42.01150857468525],[-87.81455862122682,42.01150492474799],[-87.81470893267328,42.0115007193118],[-87.8150037667896,42.01149238598868],[-87.81514847277197,42.0114882954419],[-87.81536774111099,42.01148209721415],[-87.81542125409547,42.011480754999994],[-87.81547594442898,42.011479429598054],[-87.8156719993236,42.01147449623516],[-87.8156982040157,42.01147380624401],[-87.81586956501609,42.01146929492898],[-87.81602288780633,42.01146575995282],[-87.81618349794248,42.01146206551017],[-87.81641574957219,42.011455841446946],[-87.81655783576461,42.01145203342375],[-87.81670357713087,42.011448655774124],[-87.81682753021875,42.01144586567495],[-87.81695107788487,42.011443155943816],[-87.817082572402,42.01144059158808],[-87.81719923514588,42.011438372021374],[-87.81735866202685,42.01143532921961],[-87.81757246797773,42.01143058024715],[-87.8178539576705,42.011424327520764],[-87.81794879775859,42.011422393102976],[-87.81807278488975,42.01141993138912],[-87.81819629323547,42.01141752200204],[-87.81835612499836,42.011414452189804],[-87.81847278508438,42.01141250546132],[-87.81854554179488,42.011411295303304],[-87.81863161089146,42.011411022658656],[-87.81871282676556,42.01140894117418],[-87.81876163298604,42.01140769045925],[-87.8188229010574,42.01140612017636],[-87.81901893670906,42.011401095939874],[-87.81910568180908,42.01139912457009],[-87.8191717068343,42.01139760916472],[-87.81932502909252,42.011394097216694],[-87.81943352494787,42.01139161927276],[-87.81955747592127,42.01138901830912],[-87.81968216264096,42.01138653027158],[-87.81972901276976,42.011385594481126],[-87.81972901275209,42.011385596676405],[-87.81973235482543,42.01147764301942],[-87.81973196575903,42.01157622744127],[-87.81973196574137,42.011576229636546],[-87.81973196572152,42.01157623210623],[-87.81973196411596,42.01157661463928],[-87.81973100638187,42.01181934283038],[-87.81973079894729,42.01186319434793],[-87.81973052815972,42.011933444972605],[-87.81973748835705,42.01193329637044],[-87.81973749792607,42.011933296138835],[-87.82009826553079,42.01192559405552],[-87.82009811656663,42.01194613777476],[-87.82009811654898,42.01194613997003],[-87.82009759304225,42.012018399584846],[-87.82009745979546,42.01203497417636],[-87.82009614808476,42.012198137349294],[-87.82009537830412,42.012293889425635],[-87.8200951200574,42.01232601231658],[-87.82009469075345,42.01237941262282],[-87.8200940165775,42.0124632718013],[-87.82009298712495,42.01260047645551],[-87.82009200099074,42.01272313791354],[-87.82009188362986,42.012737735933605],[-87.82009164800772,42.01276704393258],[-87.82009138989825,42.01279914898422],[-87.82009138787964,42.01279940006864],[-87.82009078056167,42.01287494134977],[-87.82008975101128,42.01301220115194],[-87.82008895812712,42.01311082298569],[-87.82008823538406,42.01320071997827],[-87.82008750117222,42.01329204307385],[-87.8200862201777,42.01342386797072],[-87.82008541100714,42.013561128745145],[-87.82008481796879,42.01363489102166],[-87.82008446497397,42.013678796484825],[-87.82008430789324,42.013698334141424],[-87.82008298355787,42.01383559260581],[-87.82008180684373,42.01397279656876],[-87.82008141369094,42.014021696001016],[-87.82008084520946,42.01411029758821],[-87.82008025103984,42.01420291765076],[-87.82007989450922,42.0142472616153],[-87.82007886525412,42.01438452111156],[-87.8200777620921,42.014521726762354],[-87.82007757588791,42.014544885792965],[-87.82007722287244,42.01458879179792],[-87.82007687030848,42.01463264154867],[-87.82007686904426,42.01463279878508],[-87.82007686874812,42.01463288138386],[-87.82007665849217,42.01465898591961],[-87.82007562671217,42.01479619051093],[-87.82007403161009,42.014930594604515],[-87.82007381264539,42.01502180966004],[-87.82007369907365,42.01503007657175],[-87.82007257453317,42.015111812988145],[-87.82007164784342,42.01522706562148],[-87.82007162842493,42.015229480695695],[-87.82007120832895,42.01528172790775],[-87.82007009850979,42.015419755117584],[-87.82006986614627,42.01545789858351],[-87.8200695135599,42.01550174915077],[-87.82006889335395,42.015569638167186],[-87.82009163871756,42.01556913532565],[-87.82013028479565,42.01556832048323],[-87.82020212849034,42.015566830780024],[-87.82031246930813,42.01556446948084],[-87.82042288554713,42.01556210923583],[-87.82052800088374,42.01555988903111],[-87.82054640287272,42.01555947783506],[-87.82065987977242,42.01555646145282],[-87.82077092447422,42.015553509837346],[-87.82103674304808,42.01554640960529],[-87.82104543677343,42.01554618029825],[-87.82104550155248,42.015546178666426],[-87.82104551075406,42.01554617843307],[-87.821230640741,42.01554129193609],[-87.82123052097619,42.01555622061452],[-87.82123016177228,42.015610169223415],[-87.82123005345677,42.015623670699945],[-87.82122953830428,42.01570604841235],[-87.8212292067671,42.0157473741476],[-87.82122895101719,42.01578842689942],[-87.82122843733175,42.01587080461601],[-87.82122832681122,42.01588458077542],[-87.82122810711283,42.0159119657046],[-87.82122785040761,42.01595318310234],[-87.82122737326407,42.01602178569955],[-87.82122733708309,42.01603556109258],[-87.82122716096384,42.01605751381892],[-87.82122674978591,42.01611793957489],[-87.82122649360129,42.01615904583381],[-87.82122616249495,42.016200316958354],[-87.82122605996791,42.01622227028681],[-87.8212256491565,42.016282695768254],[-87.82122554040821,42.016296250752966],[-87.82122514955348,42.016354096785136],[-87.82122506149253,42.0163650731477],[-87.82122466043397,42.01643345626992],[-87.82122454815584,42.01644745113199],[-87.82122432756208,42.01647494691972],[-87.82122396077366,42.016529884491774],[-87.82122370685904,42.01657066118082],[-87.82122357923384,42.016595742496634],[-87.82122344670054,42.01661226192158],[-87.82122285938345,42.01669464066995],[-87.82122275326606,42.016707867460454],[-87.8212226687903,42.01672757035836],[-87.82122234419933,42.01677701836685],[-87.82122187253762,42.0168450726898],[-87.82122175761316,42.01685939711611],[-87.82122124353032,42.01694177454115],[-87.82122091857379,42.01698227758913],[-87.82122091285405,42.0169829905038],[-87.82122065657113,42.017024153286386],[-87.82121991035538,42.01713550912719],[-87.82121930812525,42.017228918066984],[-87.82121875204939,42.01731661984814],[-87.821217958329,42.017443068507255],[-87.82121761236581,42.01749531630957],[-87.82121711346245,42.01756671786335],[-87.82121646636156,42.017674890877494],[-87.82121634262809,42.01769031266332],[-87.82121558455809,42.01781231588843],[-87.8212149109554,42.01792383668922],[-87.82121470311587,42.01794974089769],[-87.82121417622474,42.018033710702284],[-87.82121382048841,42.01808722105655],[-87.8212132952844,42.01817102594096],[-87.82121293829896,42.01822464578147],[-87.8212124135268,42.01830839633089],[-87.82121194630943,42.01837584611094],[-87.82121086908829,42.01854674932471],[-87.82120976747082,42.01864249186614],[-87.82120248380662,42.01864245662496],[-87.82085070563801,42.01865138501066],[-87.82080985192715,42.01865242211988],[-87.82062677514496,42.01865607727296],[-87.82046633690152,42.01865928499817],[-87.81895428996856,42.01869357160091],[-87.81884550449008,42.01869615095884],[-87.81876544261712,42.018698049446726],[-87.81876543010314,42.018698049665055],[-87.81859942695691,42.018701997657125],[-87.81771135126817,42.01872059672717],[-87.81769572163995,42.01872110005181],[-87.817544564062,42.01872596692334],[-87.81740501559038,42.01873047085517],[-87.81649560563288,42.01874772973918],[-87.81632744828073,42.01874949683714],[-87.81632744386702,42.018749496542846],[-87.81632744129108,42.01874949653124],[-87.8161996286163,42.01875084252912],[-87.81536212814135,42.01876786726722],[-87.81528332434812,42.01876948717506],[-87.81527342176199,42.01876974544026],[-87.81510307355691,42.01877418906229],[-87.81510306398462,42.018774189567914],[-87.81495981507287,42.01877790572162],[-87.8140361730911,42.01879818177568],[-87.81388092037633,42.018801540415105],[-87.81372463703983,42.01880492189538],[-87.81281343494071,42.01882499744432],[-87.81265804725714,42.018828600245456],[-87.81265803253517,42.01882860045309],[-87.81249387094779,42.01883241130678],[-87.81161197557684,42.01885071652953],[-87.81143669189314,42.0188554349604],[-87.81143667569916,42.0188554351612],[-87.81143667312321,42.01885543514948],[-87.81130690424165,42.01885893388885],[-87.81038952646492,42.01887794620837],[-87.81037492270133,42.01887832039105],[-87.8102139500324,42.01888244272627],[-87.81021393862234,42.018882442948694],[-87.81007811881885,42.0188858995499],[-87.81006579609002,42.01888621329149],[-87.80921510901456,42.01890428534208],[-87.80899098354206,42.01890979318302],[-87.80885203285412,42.018913219761345],[-87.80795838959776,42.01893229392718],[-87.80776803929629,42.01893883183101],[-87.80757043648327,42.01894561034397],[-87.80757041586882,42.0189456110728],[-87.80729843843399,42.01895495671475],[-87.80703737911014,42.018958574161765],[-87.80678055528108,42.01896213250969],[-87.80654723501083,42.018964573695094],[-87.80654721881683,42.018964573895204],[-87.80655028647827,42.01880615755218],[-87.80655048898281,42.01879571163596],[-87.80655165677216,42.01871833778112]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7031248.71338","perimeter":"0.0","tract_cent":"1173931.789906","census_t_1":"17031730100","tract_numa":"32","tract_comm":"73","objectid":"744","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1843211.33075346","census_tra":"730100","tract_ce_3":"41.7251769","tract_crea":"","tract_ce_2":"-87.63847718","shape_len":"10599.8765226"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63503783679009,41.72888044405504],[-87.63497248618106,41.72885625368433],[-87.63373383514158,41.728852725292924],[-87.63368674028153,41.72698904890169],[-87.6336735278226,41.72660304907369],[-87.63366941766743,41.72647541336691],[-87.63364623470066,41.72578439067754],[-87.6336453005438,41.725576412756205],[-87.63364516235426,41.72554562864592],[-87.63364365759404,41.72522007496834],[-87.63357506902057,41.723016656957284],[-87.63353297476291,41.72159190707361],[-87.63374991658492,41.7215883604582],[-87.63396509625349,41.72158682581945],[-87.63408005231389,41.72158600561427],[-87.63438301954815,41.72158202980544],[-87.63474384737549,41.72157590188371],[-87.63504530382677,41.72157078119126],[-87.63565511462161,41.72156357391461],[-87.63593511686845,41.72156163630968],[-87.63599107555558,41.72156124894734],[-87.63643583451815,41.721553763558816],[-87.63700101700687,41.721543369491165],[-87.63715470189646,41.72154164008132],[-87.63722894362614,41.721540804688544],[-87.63746322712147,41.721538167883],[-87.63774287851474,41.7215354967776],[-87.6382031860968,41.72152664363052],[-87.63836081887356,41.72152441122698],[-87.63881495329177,41.721517977476786],[-87.63927133821709,41.72151273338624],[-87.63957246035703,41.721507917959556],[-87.6399239052294,41.72150212519876],[-87.64049488137574,41.72149465843054],[-87.64078883877407,41.721491722029846],[-87.64108525871806,41.72148876019402],[-87.64147950082709,41.72148386074017],[-87.64193589323303,41.721477878865414],[-87.64199971168102,41.72147690385109],[-87.6425165925486,41.721469005789224],[-87.64321361749532,41.72145745816634],[-87.64321492530235,41.721514619477105],[-87.64322351401402,41.72189010372706],[-87.64324308681157,41.72248079886915],[-87.64325522782661,41.72295936862535],[-87.64325630270258,41.72303436686361],[-87.64325988289552,41.723284297208096],[-87.643260168938,41.723304260819745],[-87.64327486453223,41.72381302154137],[-87.64329199904202,41.724362749213746],[-87.64330651053173,41.72488875155282],[-87.64330764893252,41.724943233907105],[-87.64331113947708,41.72511032203021],[-87.64331412131082,41.725253058415895],[-87.6433202154301,41.72549018807449],[-87.64333677405858,41.72609379678068],[-87.64335135565825,41.726613333495884],[-87.64336056048722,41.72685604724942],[-87.6433627911872,41.72693790136685],[-87.64337274635085,41.72730318652822],[-87.64338500441943,41.72777097992569],[-87.64339560740099,41.72812452736855],[-87.64340798174919,41.72858154419517],[-87.6434149994753,41.7287688976545],[-87.64313264991999,41.728768452880644],[-87.6429526707912,41.7287712685927],[-87.64280303326848,41.728773592361954],[-87.64266599426078,41.728775720524894],[-87.64236575761036,41.728780666232645],[-87.64219738002762,41.72878308975439],[-87.64205105472564,41.72878519535765],[-87.64165832108236,41.728789637870676],[-87.64159229736683,41.72879047152177],[-87.64139048640955,41.72879301998146],[-87.64119549113235,41.728795413471595],[-87.64098831469113,41.72879860592808],[-87.64081908181875,41.72880121355509],[-87.64037299076423,41.7288078441542],[-87.64020586561047,41.72881046935192],[-87.63996546598597,41.72881423317449],[-87.63976989443957,41.72881644677799],[-87.63957328160198,41.72881867187411],[-87.63928741685329,41.72882254397053],[-87.63915902807764,41.728824509983866],[-87.63901752195373,41.72882667623879],[-87.63877840399132,41.72883044559619],[-87.63861857763666,41.72883243969661],[-87.63855605998448,41.728833219801466],[-87.63837243808123,41.72883551041415],[-87.6380117855796,41.72884090289504],[-87.63794853043174,41.728841753400744],[-87.63777249029631,41.7288441199483],[-87.63750289393897,41.72884772931998],[-87.6373444045868,41.728850783286674],[-87.6371117015165,41.72885526669916],[-87.63687090342054,41.72885858254138],[-87.63674027611881,41.72886038024843],[-87.63666047920078,41.72886147829045],[-87.63642161561754,41.72886538122599],[-87.6361259758406,41.728869438645965],[-87.63592517992033,41.728872193878345],[-87.63561061934558,41.728877035267864],[-87.63551756332882,41.72887829268057],[-87.63535424940397,41.72888050036399],[-87.63513101843712,41.72888199824695],[-87.63503783679009,41.72888044405504]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10636425.3001","perimeter":"0.0","tract_cent":"1170828.52736955","census_t_1":"17031730700","tract_numa":"41","tract_comm":"73","objectid":"745","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1835134.84475043","census_tra":"730700","tract_ce_3":"41.70308199","tract_crea":"","tract_ce_2":"-87.65007926","shape_len":"13436.6431377"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64283396928684,41.7069170882967],[-87.64282417649548,41.706613758416125],[-87.64281927930826,41.70644969514975],[-87.64278802652106,41.70540263478065],[-87.64277758574843,41.70509510814201],[-87.64277165400073,41.704920385687515],[-87.64275351477788,41.704302062213586],[-87.64273996847575,41.703846559754595],[-87.642721179682,41.70327960606593],[-87.64271369870502,41.70305386762625],[-87.64270190141575,41.70266783450844],[-87.64268835450412,41.70222602610845],[-87.6426720341359,41.701697919331984],[-87.64266411416155,41.701458307532015],[-87.64265645975398,41.7012267343576],[-87.64264325415542,41.70078739779066],[-87.64261902463748,41.70003349485605],[-87.6426080343334,41.699640946128795],[-87.64291392362642,41.69964208695029],[-87.64321217397068,41.69963895371917],[-87.643218042302,41.699638892085254],[-87.64322235529278,41.699638846633164],[-87.64355711788859,41.69963532883524],[-87.64382445811643,41.69963305763616],[-87.64399518280429,41.69963160674072],[-87.64442093194712,41.69962555056356],[-87.64503739630136,41.699618613490735],[-87.64531667953068,41.69961546959447],[-87.64566235658738,41.699611681687415],[-87.64597108282253,41.699608298537875],[-87.64625484033107,41.69960536024879],[-87.64657926549926,41.699602000442326],[-87.64716469503422,41.699596880002424],[-87.64748141110832,41.69959288323405],[-87.64883297876514,41.69957581811341],[-87.64933716256567,41.69956982557483],[-87.64973598234526,41.699565083978364],[-87.64989729754673,41.69956386006253],[-87.65046591071984,41.69955954406386],[-87.65071329496766,41.699556765847355],[-87.65122824122774,41.69955098097507],[-87.65206573880552,41.6995364092866],[-87.65233447731069,41.69953294624006],[-87.65261981002429,41.699529268281424],[-87.65261985214103,41.699529267707604],[-87.65271630856495,41.699528024467966],[-87.65315084722367,41.69952172015198],[-87.65345156891505,41.699520301701405],[-87.65365516032548,41.69951770236321],[-87.65382133961599,41.699515580160316],[-87.65402747519954,41.69951294745462],[-87.65428051039969,41.699509715526794],[-87.65458981334277,41.699505764035386],[-87.65475258596285,41.699503855005034],[-87.65513588506583,41.699499370208045],[-87.65528028815416,41.69949768024233],[-87.65560703613563,41.69949362503788],[-87.656251377169,41.69948205493336],[-87.65687666460964,41.69947865693712],[-87.65713662384132,41.6994743219518],[-87.65732186976004,41.69947123246932],[-87.65777778134371,41.69945549900815],[-87.65805237620329,41.69945221838097],[-87.65830062554718,41.69944925162804],[-87.65837929032938,41.699448311323614],[-87.65837940678733,41.699448310086574],[-87.65837943352251,41.69944830969473],[-87.65840766764492,41.69944797220836],[-87.65845057310979,41.699447459341336],[-87.65874167226187,41.69944359037731],[-87.65868419159014,41.69960201957712],[-87.65856714722902,41.69992203479765],[-87.65839998791078,41.70036651278916],[-87.65822164687008,41.70085752352592],[-87.65811200426856,41.70115248863986],[-87.65771805117278,41.70221229224311],[-87.65765294383455,41.70238743781644],[-87.65751525224293,41.70275590501031],[-87.65743752225806,41.70298078467369],[-87.65738453306498,41.70312684532377],[-87.65733404975772,41.7032659978437],[-87.65725994615036,41.703474268068575],[-87.65723638486824,41.70353605549152],[-87.65713459365308,41.70380298712283],[-87.65706209314816,41.703994443901806],[-87.65692510742441,41.70435671224923],[-87.65679874841922,41.704704223601304],[-87.6567071468979,41.704955129181805],[-87.65655280553962,41.70537787996865],[-87.65644945196145,41.705644019839376],[-87.65627170540235,41.70610692865236],[-87.65625596245232,41.70614937296343],[-87.6561939892202,41.70631645317929],[-87.6561541110879,41.706423965673544],[-87.65610934542676,41.70654465257857],[-87.65601924562581,41.706785499085456],[-87.65567905957211,41.706793045702035],[-87.65558580421458,41.70679511437721],[-87.65507250324532,41.70679760391486],[-87.6549986488239,41.70679796191816],[-87.65442062576587,41.70680997157576],[-87.65402050376416,41.70681935270941],[-87.65367969104878,41.7068171660043],[-87.65361276098118,41.706816736380866],[-87.65330633450398,41.70681476951965],[-87.6531146851467,41.706819565467995],[-87.65307391911145,41.706820585722],[-87.6529311337118,41.70682258351787],[-87.65262459217313,41.70682687204453],[-87.65255777149464,41.70682780665914],[-87.65195062636961,41.70683629783055],[-87.65149680599853,41.706839643564386],[-87.65134290437575,41.706841108266104],[-87.65090357821593,41.70684528824792],[-87.6504013996574,41.70685026349702],[-87.65012609407061,41.70685243041676],[-87.64977368075346,41.706855203385764],[-87.64922913296503,41.70685992175054],[-87.64891511574393,41.70686179109083],[-87.64870137477259,41.70686306297519],[-87.64811518456872,41.70686802193905],[-87.64769425926494,41.70687326509682],[-87.647336055791,41.70687772606534],[-87.6469168194148,41.70687983310619],[-87.64648013620656,41.70688321528337],[-87.64619274042153,41.70688544020058],[-87.64552359224336,41.706891261751906],[-87.64526433079568,41.70689419199717],[-87.64471084816994,41.70690044527066],[-87.64435924568393,41.70690327756934],[-87.6440403181816,41.70690501303552],[-87.64391748582528,41.7069054776558],[-87.6437404058312,41.70690659140929],[-87.6431414401029,41.70691438421232],[-87.64283396928684,41.7069170882967]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5551873.81404","perimeter":"0.0","tract_cent":"1176393.71699205","census_t_1":"17031690300","tract_numa":"32","tract_comm":"69","objectid":"747","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859079.88175022","census_tra":"690300","tract_ce_3":"41.76866726","tract_crea":"","tract_ce_2":"-87.62898331","shape_len":"10503.7279711"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62512772322307,41.77272427864572],[-87.62508410040282,41.770972128901306],[-87.62508197970487,41.7708869505003],[-87.62501346083523,41.769340707849054],[-87.62494235159004,41.76919404020764],[-87.62494248022736,41.76919047780821],[-87.62494433001247,41.76913926145933],[-87.62495036391341,41.76897215517893],[-87.62494890256974,41.76889843440216],[-87.62494688874067,41.76878156989795],[-87.62494197572218,41.768687593598514],[-87.62493389662934,41.768533076185165],[-87.62492992502494,41.76849094240584],[-87.62492184978858,41.76840528239963],[-87.62491774497344,41.76830525496556],[-87.62491571312044,41.76815674861128],[-87.62491505153643,41.76811022872358],[-87.62491379674027,41.76801773822775],[-87.6249131334891,41.76793471919771],[-87.62491231341494,41.76778605564824],[-87.62491188169717,41.76771201188942],[-87.62491163083487,41.76763818878852],[-87.6249118533852,41.76755465379889],[-87.62491205354723,41.76748977988132],[-87.62491213788616,41.76733341015147],[-87.62491213502483,41.76718919765952],[-87.6249123225934,41.76715212337811],[-87.62491195854815,41.76696863750416],[-87.62491347142097,41.76690445774844],[-87.62491244760119,41.76686754065338],[-87.62491248270798,41.76669775126949],[-87.62491223200172,41.766660564510644],[-87.62493227117612,41.7663883990012],[-87.62493409368074,41.76623972344007],[-87.62492704982571,41.76611997462225],[-87.62492113284995,41.765981460938754],[-87.62491542691954,41.76583372771659],[-87.62491155200776,41.765727706740016],[-87.6249070360355,41.765532151324784],[-87.62490521858305,41.76545345591693],[-87.6255143755786,41.765449210303444],[-87.62594769846649,41.765446187740885],[-87.62654943651116,41.765441988381475],[-87.62668446338867,41.76544104533129],[-87.62734338177887,41.7654494330619],[-87.62766534258768,41.765453530193824],[-87.62792392065589,41.765453986108085],[-87.62816342032389,41.765454408043105],[-87.62835257842472,41.76545474067767],[-87.62858209079907,41.765455144364324],[-87.62867561801559,41.76545338538655],[-87.62896377688652,41.76544886001013],[-87.62912050789939,41.765446398385784],[-87.6294168457439,41.76544162809122],[-87.62977080982571,41.76543505100143],[-87.63015772861145,41.76542786056512],[-87.6303420465599,41.76542649121806],[-87.63039515330937,41.765425480509066],[-87.6304849956655,41.76542377078523],[-87.63077565071565,41.76541912687764],[-87.63100004866004,41.76541571473748],[-87.63129954321582,41.76541116004009],[-87.63152277382589,41.76540783113081],[-87.63160372222053,41.76540661176843],[-87.63173922315981,41.7654045701486],[-87.63208516261375,41.76539913535727],[-87.6322136897952,41.765397400509826],[-87.6324337699236,41.76539442931706],[-87.63268718052443,41.765389964995755],[-87.63282866128162,41.76538745854724],[-87.63289806292974,41.76538622879256],[-87.63326303936756,41.76537956180758],[-87.63344085575154,41.76537611763996],[-87.63394852956122,41.76536628301787],[-87.63401818614176,41.76536547182034],[-87.63412816359755,41.76536419081254],[-87.63466550384764,41.76535581103516],[-87.63466785616806,41.76548773136732],[-87.63467524707785,41.76575929708919],[-87.63468216233048,41.76603409817607],[-87.63469164866801,41.766406474641784],[-87.63469848336392,41.76665495740089],[-87.6347065260413,41.76694752089973],[-87.6347117673886,41.76717110098064],[-87.63440686332942,41.767180335650295],[-87.6341083923608,41.76718504901451],[-87.63387008511283,41.767188787043715],[-87.63353733920569,41.76719367088061],[-87.63350242427384,41.76735378549317],[-87.63350516267461,41.76752005164861],[-87.63350999225766,41.76760520913922],[-87.63351263837376,41.76769227433563],[-87.63352016697884,41.76799117432412],[-87.63352575352552,41.76821239861622],[-87.63353089518407,41.76841391587068],[-87.63353805216647,41.76869305435346],[-87.63354074556918,41.7687993847772],[-87.63354628674377,41.76901467449651],[-87.63307299459105,41.76902217069916],[-87.63279284312001,41.76902693932429],[-87.63266102968176,41.76902847336728],[-87.63235649082479,41.76903201670343],[-87.63198936357011,41.769042372440296],[-87.63157574118895,41.769053952373845],[-87.63135891025546,41.76905736437554],[-87.63125279926645,41.771392835169834],[-87.63103881150387,41.77269487319855],[-87.63074504375307,41.77269908895557],[-87.63051902220175,41.77270050567322],[-87.63026647299391,41.77270400992906],[-87.6299554938753,41.772708996511255],[-87.629666984363,41.77271362206307],[-87.62916706042805,41.772723394598124],[-87.62913897393884,41.77272394337127],[-87.6288750810447,41.77272888467201],[-87.62851354322768,41.77273569595122],[-87.62836361842618,41.77273194835254],[-87.6282138233869,41.77272820355006],[-87.62820301288677,41.772729706386535],[-87.62755808229683,41.7727067546089],[-87.62687107728077,41.77268230116988],[-87.62676294616803,41.77268548918238],[-87.62660285313905,41.77269020875732],[-87.62621011073094,41.772699789327376],[-87.62577816426626,41.77271032444801],[-87.62548641830018,41.77271743910273],[-87.6253512105867,41.77272073612952],[-87.62512772322307,41.77272427864572]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6981701.56674","perimeter":"0.0","tract_cent":"1178860.59692289","census_t_1":"17031691000","tract_numa":"25","tract_comm":"69","objectid":"748","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1856656.36733977","census_tra":"691000","tract_ce_3":"41.76196108","tract_crea":"","tract_ce_2":"-87.6200147","shape_len":"10577.5492087"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62454172684112,41.758187681744786],[-87.6247579816719,41.75818156625304],[-87.62475945753556,41.758236948471335],[-87.62476449714983,41.75842599075076],[-87.62476615146042,41.758526057583204],[-87.624787686536,41.75862436992009],[-87.62477741340341,41.7588910920319],[-87.62478486260329,41.75953333153897],[-87.62479377288204,41.75995886267183],[-87.62479576407748,41.76005396519679],[-87.6248007696547,41.760292996811],[-87.62480717256494,41.760617247791906],[-87.62481405898592,41.76096408731582],[-87.62482079036133,41.761378435609906],[-87.62482637141326,41.76173072819191],[-87.62482908598463,41.76187399731144],[-87.62483284171273,41.76207215881478],[-87.6248403283804,41.76240783265881],[-87.62485322255009,41.762954960544086],[-87.62486537244429,41.76350985014955],[-87.62486945513041,41.76369442961395],[-87.62486950926727,41.76369687209819],[-87.62488015083811,41.76417897356578],[-87.6248810528188,41.76427544282491],[-87.62488115516274,41.76428643134792],[-87.62488119817817,41.764290984402365],[-87.62488123012517,41.76429441112895],[-87.62488256639439,41.76436919570633],[-87.62488528520039,41.76450859532698],[-87.6248867788673,41.76458270056087],[-87.62488846868104,41.76466569852596],[-87.62489053416296,41.764767826556856],[-87.62489397249193,41.76493508521902],[-87.62489657972294,41.76506460466901],[-87.62489922536022,41.76519393225211],[-87.62490003157446,41.76522883672091],[-87.62490150679326,41.765292725637984],[-87.62490330087968,41.7653704123749],[-87.62490521858305,41.76545345591693],[-87.62472693241394,41.76545469814126],[-87.62352987216033,41.765535213510766],[-87.62329508399999,41.76554259879804],[-87.6229122333153,41.76555464017035],[-87.62277071198449,41.76555746978105],[-87.6224961845137,41.765562948448164],[-87.62230464495347,41.76556677099496],[-87.62214948473489,41.76556987218927],[-87.6219943248074,41.76557294573282],[-87.62169108506164,41.76557944450565],[-87.62100585846247,41.76559412711219],[-87.62088793608928,41.76559656365856],[-87.62075148488601,41.76559938297848],[-87.62035646816393,41.765607552695144],[-87.62009761941053,41.7656123276301],[-87.61953719658905,41.76562266356998],[-87.61928036798844,41.76562781859651],[-87.61906907537191,41.76563204976211],[-87.61885906591624,41.765636258880384],[-87.61847784778752,41.76564491739547],[-87.61802534593244,41.7656551931878],[-87.61775686019395,41.7656603548322],[-87.61767051830634,41.76566201904967],[-87.6172898420518,41.76566935534419],[-87.61709186006576,41.76567314331611],[-87.61686764178893,41.76567776132015],[-87.6165497837825,41.76568430739083],[-87.6161976266978,41.76569155014761],[-87.61606585818629,41.76569414175284],[-87.61583117426996,41.7656987574345],[-87.61553452100851,41.76570532938673],[-87.61526208391622,41.765711464650344],[-87.61525668030228,41.76536928302421],[-87.61525622846395,41.765159972731496],[-87.61525672215193,41.76478697106345],[-87.61525864962873,41.764531928198174],[-87.61525291675905,41.76424659529439],[-87.61525490229683,41.76406589576732],[-87.61524960613677,41.763884463550816],[-87.61524713092646,41.763799677848645],[-87.61524227260433,41.76352530011968],[-87.61523507803632,41.763243553059134],[-87.61522899173829,41.76301359780057],[-87.61522149982586,41.76272893990085],[-87.61521544957785,41.76249901228969],[-87.61520904535203,41.76225813243488],[-87.61520553474665,41.76205941318951],[-87.61520304568843,41.761918515815495],[-87.6151978574318,41.76167706750853],[-87.61519315192594,41.76145807056622],[-87.61518820202066,41.7612281223386],[-87.61518206944515,41.7609431709735],[-87.61517614559207,41.76066908832028],[-87.61517095373898,41.76042794181092],[-87.61516500880876,41.76023421974691],[-87.61516019983313,41.76007753744018],[-87.61515424226569,41.75980323499068],[-87.61514848937463,41.759540130546796],[-87.61514297450057,41.759288553634384],[-87.615137501446,41.759036482998454],[-87.61513236590154,41.75881995313597],[-87.61513150453598,41.75879579764406],[-87.6151241292,41.758588968865105],[-87.6151203569961,41.75840759128056],[-87.61539130852589,41.75840240724276],[-87.61579123419108,41.758397111805714],[-87.61589923183429,41.75839511082088],[-87.61616684887332,41.75838955011708],[-87.61648472623797,41.758382971680014],[-87.6167037171112,41.75837918567677],[-87.6169839770237,41.75837433997691],[-87.61727189117698,41.75836949354747],[-87.61750896073634,41.75836546603988],[-87.61758627270395,41.75836415292646],[-87.61789141564296,41.75835902779714],[-87.6181452740279,41.7583547355097],[-87.61830482443418,41.75835139670108],[-87.61849702521278,41.75834737441075],[-87.61874733346428,41.758342619616506],[-87.6190626016721,41.75833662156332],[-87.61911828639687,41.758335568141995],[-87.61940213878258,41.75833016970648],[-87.61976081126637,41.75832334171954],[-87.61992626332642,41.75832077827344],[-87.6200794391032,41.75831840457531],[-87.62025525366967,41.75831526968017],[-87.62053360232397,41.75831030082056],[-87.62072876529788,41.75830681596264],[-87.62078112108577,41.75830588104715],[-87.62106551825012,41.758300811195774],[-87.62135622073416,41.75829558761294],[-87.62153550079074,41.75829233282308],[-87.62178674072847,41.75828777147407],[-87.62203077892912,41.758283217680095],[-87.62227434066774,41.75827866041887],[-87.62234452839873,41.758277358739335],[-87.62249847311918,41.758274503577056],[-87.62273180638752,41.75827015676658],[-87.62297940032597,41.75826554062015],[-87.6231482203108,41.75826235173895],[-87.62326728308763,41.75826010266604],[-87.6234884361098,41.758253510769215],[-87.62368884137366,41.758245002111856],[-87.62382494969597,41.75822949437399],[-87.62392378608622,41.7582264059199],[-87.62400541412751,41.75821581278169],[-87.62411164014989,41.75821461917197],[-87.62423525666956,41.75820428532873],[-87.62434893303708,41.75819943843957],[-87.62446516019187,41.758187209365985],[-87.62454172684112,41.758187681744786]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"36560201.1743","perimeter":"0.0","tract_cent":"1159949.28963315","census_t_1":"17031700500","tract_numa":"132","tract_comm":"70","objectid":"746","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1849403.87440263","census_tra":"700500","tract_ce_3":"41.74246856","tract_crea":"","tract_ce_2":"-87.68952598","shape_len":"25663.506655"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6782637104385,41.75016624853396],[-87.67823945985734,41.74926210541053],[-87.6782155368772,41.74837109826953],[-87.6782148580384,41.748347829525265],[-87.67821015067616,41.748179994815445],[-87.67821063736615,41.748087033868444],[-87.67821707584548,41.747994450443045],[-87.67821961366175,41.747970109175135],[-87.67823364773135,41.74780621675764],[-87.67824172720412,41.747642290383645],[-87.67824333375083,41.7475743779039],[-87.67824253465412,41.747517771981016],[-87.67824235944715,41.7474899845819],[-87.67824187818981,41.74744702791774],[-87.67813665492753,41.747448416739246],[-87.67813457157858,41.747419266886595],[-87.67812507685987,41.747372806482055],[-87.67812211419292,41.747332612906824],[-87.67811846574158,41.747273369917366],[-87.67811772447534,41.747198473502166],[-87.67811685906204,41.74709978321992],[-87.67811568218177,41.74700649744846],[-87.67811626925273,41.74693438035683],[-87.67811698327338,41.74686415756145],[-87.67811752355817,41.746803813287016],[-87.67812061105732,41.74675964751798],[-87.6781255781175,41.746725207320864],[-87.67813288285632,41.74669154886035],[-87.67814165942625,41.74665372744224],[-87.67814862683133,41.74662080802015],[-87.67815359599835,41.74658979821939],[-87.67815604305989,41.74656255761568],[-87.67815804537042,41.746501786152805],[-87.67815813073597,41.746457383716816],[-87.67815644406362,41.74638536342507],[-87.6781541225621,41.746303734429986],[-87.6781508914212,41.74618903131937],[-87.67814815709978,41.746097547896774],[-87.67814043896877,41.745962868066044],[-87.67813644777061,41.74587963784401],[-87.67814683350733,41.74574473192537],[-87.67815176920847,41.74570622996399],[-87.67815094632998,41.74562137121952],[-87.6781484154045,41.74546663261022],[-87.67814512188849,41.745307608525025],[-87.6781413892403,41.745148527045124],[-87.6781372288095,41.74499548060319],[-87.67813214305328,41.74481811429415],[-87.67812954647647,41.74473741677347],[-87.67812543226066,41.74460956335043],[-87.67812172451241,41.74449485748786],[-87.67811734261845,41.744381657149205],[-87.67811370732792,41.74429590416805],[-87.67810878030507,41.7441966418128],[-87.67810266171664,41.74408483116242],[-87.67810012348161,41.744039919770685],[-87.67809379070833,41.74393378861796],[-87.67808665003494,41.74382156048651],[-87.67807846762379,41.74369653792468],[-87.67806960672807,41.743587757808804],[-87.67805841981968,41.74347709829377],[-87.67804259883204,41.74335013858461],[-87.67802327846594,41.7432176700167],[-87.67797936535183,41.74298135421902],[-87.67797840603001,41.7429765632181],[-87.67795880254573,41.7428786614541],[-87.67793951367047,41.74278232957899],[-87.67792541894113,41.742711939386055],[-87.67790337925267,41.74260193145425],[-87.67789020231255,41.74254290848688],[-87.67785135125999,41.74241419821198],[-87.67780472400604,41.742264641678226],[-87.67776501864849,41.74213713399141],[-87.67771229908672,41.741963392714155],[-87.67767026168305,41.74182379671187],[-87.67763940500419,41.74172331604734],[-87.6776094139086,41.74163507994179],[-87.67757079232595,41.74153074034922],[-87.6775237505401,41.74141488146069],[-87.67748056770708,41.74130870428018],[-87.6774445040336,41.741223095720215],[-87.67741656261177,41.74115666081782],[-87.67734798403305,41.74100063912238],[-87.67730038778436,41.74089235181685],[-87.67719330659563,41.74065984603137],[-87.67688881542158,41.74011138472636],[-87.67609101024624,41.73929759519447],[-87.67529902019265,41.73867527632434],[-87.67525961396724,41.73861961552425],[-87.67519944748636,41.738548165775896],[-87.67439803638231,41.737600897882096],[-87.6743551443092,41.737552217790466],[-87.6740719434909,41.73720961260664],[-87.67402760981126,41.73715584412048],[-87.67352997490137,41.73655438426302],[-87.67340417566939,41.73640581192397],[-87.67327520606304,41.73625379056555],[-87.67316978387623,41.73612797588078],[-87.67308789092243,41.73603008192975],[-87.67304354905664,41.735977342400446],[-87.67301549971107,41.735943563367],[-87.6729805185372,41.73591591919543],[-87.67290738574631,41.73590177730556],[-87.67279134817527,41.73589824249223],[-87.67278537987222,41.7356681715571],[-87.6727850225177,41.735654382069384],[-87.67308255593431,41.735656724964834],[-87.6733722676897,41.73565900569949],[-87.67347314731714,41.735657906373326],[-87.67348556842596,41.73565777078269],[-87.67380662753285,41.73565427060761],[-87.67427097923047,41.7356465249704],[-87.67478062582623,41.73563114688949],[-87.67513382674079,41.73562881599373],[-87.6754318123846,41.73562507948424],[-87.67565421417096,41.73562199827185],[-87.6758330172245,41.735618666881706],[-87.676042339437,41.735615510073146],[-87.67613476859438,41.73561448877787],[-87.67623711690146,41.73561335810219],[-87.67639991145549,41.73561211161983],[-87.67664993708003,41.735608097740126],[-87.67691304332479,41.73560415776965],[-87.67720376272666,41.735600374878736],[-87.6775594936482,41.73559447924749],[-87.67758054184101,41.73559425111794],[-87.67780410478595,41.73559182661483],[-87.67800177855244,41.73559077684502],[-87.67817765222384,41.735589602437365],[-87.67845094258183,41.73558462861703],[-87.67866172903585,41.735580386711604],[-87.67890155954557,41.735578486908125],[-87.67944810694264,41.73557180071768],[-87.67994379902143,41.73556373408367],[-87.68024469097283,41.73556000161693],[-87.68029951939288,41.73555959697207],[-87.6803567705303,41.73555917423492],[-87.68049469495243,41.735558156036845],[-87.68069238993462,41.73555492496782],[-87.68081435835,41.73555267082811],[-87.68091771020435,41.73555076119851],[-87.68125202760883,41.7355472158767],[-87.68162706118893,41.73554172318314],[-87.68188937364008,41.73553608175551],[-87.68198758307753,41.73553396993985],[-87.68251404718212,41.73552728429953],[-87.682515131093,41.73552726985649],[-87.68251523003329,41.73552726822144],[-87.68252104537649,41.735527186721754],[-87.68290900111235,41.735522239446624],[-87.68299344928595,41.73552116251586],[-87.68308307506337,41.73551948171035],[-87.6830863379662,41.73551942059028],[-87.68313252981812,41.735518554345276],[-87.6834397531943,41.7355127921993],[-87.683881649212,41.73550549405851],[-87.68414187002713,41.73550043310266],[-87.68421832691988,41.73549870390226],[-87.68441082066744,41.73549435030261],[-87.68460685371943,41.73549079190618],[-87.68463609212492,41.73549026101961],[-87.68482362789369,41.73548685598795],[-87.68518984892047,41.73548118337119],[-87.6852707081713,41.735479934408104],[-87.68530024441816,41.73547947830556],[-87.68533822126622,41.73547889196468],[-87.68544722053467,41.7354772894797],[-87.68555370236972,41.73547572374328],[-87.68555869399191,41.735475650344284],[-87.68571327084425,41.73547337724002],[-87.68602724760007,41.73546751725479],[-87.68629765268987,41.735462508788196],[-87.6864953388559,41.73546035635317],[-87.6867380830941,41.735455191132466],[-87.68695322913486,41.73545096787674],[-87.68717417933554,41.735448944592285],[-87.68735444530364,41.73544675940209],[-87.68744170878446,41.73544570134083],[-87.68754117167907,41.73544450403365],[-87.6875791164153,41.735444047126485],[-87.68766548682981,41.73544300720291],[-87.68788865790683,41.735438980971146],[-87.687945930033,41.73543794752746],[-87.68823964016018,41.735432647701955],[-87.68823965005473,41.735432647483066],[-87.68826437582037,41.735432209990165],[-87.68826439010854,41.73543221007038],[-87.68861328393776,41.73542437130221],[-87.68861328833411,41.73542437132688],[-87.6886169751524,41.73542430831183],[-87.68861974329202,41.73542426072441],[-87.68894906330645,41.735418625388746],[-87.68952617935966,41.73540879776721],[-87.68958462028169,41.735407756059345],[-87.68958855374589,41.73540768588757],[-87.68966088564608,41.73540639676266],[-87.68966090066971,41.7354063965724],[-87.68998845512058,41.73540051949087],[-87.6904303499497,41.73539319560466],[-87.69100453510327,41.735383344157604],[-87.69152876408018,41.73537363700892],[-87.69168195641707,41.73537080010051],[-87.6921291450465,41.73536281947475],[-87.69213096446563,41.73536278681645],[-87.69220688858375,41.73536143160937],[-87.69224771681755,41.735360703017115],[-87.69224772305118,41.73536070250302],[-87.69233317263703,41.73535917642173],[-87.69245040183823,41.735357588778896],[-87.69255100634167,41.735356226372915],[-87.69278817229691,41.73535301374911],[-87.69291618371376,41.73535117425754],[-87.69295638025677,41.73535059639765],[-87.69297850381547,41.73535027868231],[-87.69322569662666,41.73534672585283],[-87.69360071870399,41.735340114667785],[-87.69374721825564,41.73533782118418],[-87.69390758940077,41.73533530996897],[-87.69401065586594,41.73533369625656],[-87.69416599327353,41.73533062839212],[-87.69452669833508,41.735323503411045],[-87.69457762331427,41.735322478850755],[-87.69457931597802,41.73532244462574],[-87.69465490750636,41.735320923214005],[-87.69465492069817,41.735320923012885],[-87.69495262977247,41.73531497592843],[-87.69547013744263,41.735304787534176],[-87.69547015246896,41.73530478706873],[-87.69603561602759,41.73529702952002],[-87.6965966999182,41.735288175458514],[-87.69659670981271,41.73528817523892],[-87.6966270995796,41.73528760706489],[-87.69710860488135,41.73527860672287],[-87.69710861917223,41.73527860652757],[-87.69714986312763,41.73527784281887],[-87.69716191530827,41.73527761919854],[-87.69722612578158,41.73527643073381],[-87.69746415788829,41.735272607855805],[-87.69763023669805,41.735269940258156],[-87.69798599070614,41.73526461571532],[-87.69805468080241,41.73526358767504],[-87.69815390516078,41.735261974525386],[-87.69816668188616,41.735261766605426],[-87.69855476341922,41.73525545705405],[-87.69868524601029,41.735252958191644],[-87.69899520213498,41.73524702189561],[-87.69906530476412,41.735245679689704],[-87.69906531795588,41.735245679488095],[-87.69952871928227,41.735236903050556],[-87.7000650561821,41.7352278049811],[-87.70006536949256,41.73522779957263],[-87.70020755632379,41.73522538708715],[-87.70048521369745,41.73522038518633],[-87.70053715090766,41.735219911873585],[-87.70059001442043,41.735219429642235],[-87.70063346544798,41.73521903332323],[-87.70092706452928,41.73521738414434],[-87.70097583219082,41.735216309747145],[-87.70104012977852,41.735214892949585],[-87.7012439804706,41.735210401021114],[-87.70139080950035,41.735216862752516],[-87.7013920026592,41.7352169154191],[-87.7014379730281,41.735218938593334],[-87.70147060109855,41.7352203743695],[-87.70170322663368,41.73521185587297],[-87.70184512405474,41.735204007396334],[-87.70184697309182,41.7352039050413],[-87.7018503852308,41.735203716323326],[-87.70209494002829,41.73519018890171],[-87.70203118784485,41.73559329645467],[-87.70203092841103,41.735843258012494],[-87.70203530039576,41.736006503226335],[-87.70203715275001,41.736075653416705],[-87.70204561169764,41.73638665828361],[-87.70204758384772,41.73662623083824],[-87.70204845661706,41.73673218349369],[-87.70205285278888,41.73693670331556],[-87.70205426974795,41.73700261418279],[-87.70205605840454,41.73708582999827],[-87.7020563733743,41.73710900225571],[-87.70205915186905,41.73731326838365],[-87.70205996711591,41.737382594259515],[-87.7020629252698,41.737532486607094],[-87.70206305245199,41.73753895483278],[-87.70206311497925,41.73754315809459],[-87.70206795175925,41.73786926003932],[-87.70207033795835,41.738012196785085],[-87.70207395605733,41.738228908020545],[-87.70207949960016,41.738426090032334],[-87.70208637997439,41.738647648893256],[-87.70209176423272,41.738854292410906],[-87.70209689953182,41.73905134043087],[-87.70209959467243,41.7391427957854],[-87.7021045495125,41.739299084251336],[-87.70211512402254,41.73959986427237],[-87.70211953685873,41.73975609266618],[-87.70212652435112,41.74000347825057],[-87.70212931506903,41.74013382103961],[-87.7021313526786,41.74021478921179],[-87.70213358822272,41.74030360775594],[-87.70213959767712,41.740460725276776],[-87.70214607614898,41.7406689927858],[-87.70215213827183,41.74086387892355],[-87.70215774935025,41.74104668101213],[-87.70216067425315,41.74112688563751],[-87.7021639309288,41.74121620375281],[-87.70217024578261,41.74143943342738],[-87.70217330917488,41.741583177338214],[-87.70217775225979,41.74179167951531],[-87.70218306130657,41.741986664937876],[-87.70218491583996,41.742038817616866],[-87.70219420885006,41.742300126685514],[-87.70219831413567,41.74249602345078],[-87.70220155083717,41.74265047851519],[-87.70220635721465,41.742821969558214],[-87.70221080919042,41.74297726720654],[-87.70221259179725,41.74330412458901],[-87.70222216795024,41.74364337416503],[-87.70223729970148,41.744175030494105],[-87.70224205698274,41.74432502091113],[-87.70224925438774,41.74455194503683],[-87.70225517902355,41.74477391005259],[-87.70226212658686,41.74503361495942],[-87.70226963273109,41.745314865491025],[-87.7022755848067,41.745537818853855],[-87.70227963558091,41.74568913497271],[-87.70228508283726,41.74589254577967],[-87.70229233310893,41.74615166830807],[-87.7022994152096,41.74640476778546],[-87.70230372456973,41.74656344005371],[-87.70230986101963,41.74678625688971],[-87.70231661903861,41.747027930543204],[-87.7023195020969,41.7471307087266],[-87.7023217799986,41.74721191001222],[-87.70232606748209,41.74736534050492],[-87.70233048848515,41.747523848700574],[-87.70233458345204,41.74767074666938],[-87.70233903548817,41.747829831331956],[-87.70234349129566,41.74797839103308],[-87.702350003146,41.74819548853728],[-87.70235726850267,41.748437768389906],[-87.70236426014927,41.74870422464579],[-87.70236690209143,41.74879690900141],[-87.70237080648232,41.74893390442156],[-87.70237672363318,41.74913053924722],[-87.70237886353812,41.74920170600202],[-87.70238111880568,41.74927669785899],[-87.70238335197874,41.749363265090366],[-87.7023836646299,41.74937538457954],[-87.70238487430248,41.74942227939356],[-87.70241598411673,41.74953530692621],[-87.70239430141538,41.74977360054606],[-87.70239430139927,41.749773602192555],[-87.70205772578967,41.749773123411444],[-87.70200275555344,41.74977316441627],[-87.70191938613215,41.749773049331665],[-87.70177051042687,41.74977291717169],[-87.70166973446871,41.74977270595064],[-87.70162274358765,41.749799890693154],[-87.70147276312198,41.749772309256905],[-87.70117268179595,41.749776147231024],[-87.70108563745782,41.749777040437976],[-87.70063619612857,41.74978348513933],[-87.70021057597411,41.7497897168577],[-87.69995356239677,41.749792759841085],[-87.69969792260756,41.74979580982566],[-87.69943357296415,41.74979949726578],[-87.69914539455867,41.749804081690506],[-87.69890715376307,41.749807912026895],[-87.69872801621398,41.74981069617144],[-87.698585529996,41.74981299617043],[-87.69842563420812,41.74981554337839],[-87.6983252993851,41.7498170468543],[-87.69804307522963,41.749821661970074],[-87.6977613057242,41.74982662112277],[-87.69750840358004,41.749830710494436],[-87.69712263806389,41.749836808001895],[-87.6968665335767,41.74984053518976],[-87.69658522537851,41.74984515124896],[-87.69628520020014,41.74984999572909],[-87.69628513276052,41.74984999672732],[-87.69506735898479,41.74986931803445],[-87.69466554070047,41.74987737634625],[-87.69436772857844,41.749883267389585],[-87.69401676473458,41.74989057711651],[-87.69384632312446,41.74989408783729],[-87.69369283606272,41.74989700716531],[-87.69336111768685,41.74990373595119],[-87.69297258271591,41.74991186232787],[-87.69271692185534,41.74991695489129],[-87.69262666065471,41.749918852868575],[-87.69242689641302,41.74992288431783],[-87.69206032411498,41.74993353111205],[-87.69171803558888,41.74994362681765],[-87.69154756641986,41.74994987855656],[-87.69140138794334,41.74995489387779],[-87.69103616899146,41.749967603196026],[-87.69077911274658,41.749974741877345],[-87.69061782547287,41.749978985353934],[-87.69040476017707,41.749984653800155],[-87.69018208627081,41.74998923922494],[-87.69018203422175,41.749989240305744],[-87.68957042766132,41.75000090772791],[-87.68934913811844,41.75000447017901],[-87.68926208656282,41.75000604046364],[-87.68915579277973,41.75000784583965],[-87.68895937016633,41.750010858408324],[-87.68895924518345,41.750010860177255],[-87.6878596797931,41.75002732879317],[-87.68764663821861,41.75003059126168],[-87.68737357729479,41.750034888071426],[-87.68707531664916,41.75003972829725],[-87.68678576865831,41.75004358793572],[-87.68651236775322,41.75004753555125],[-87.68651225303074,41.750047537375295],[-87.6854296451746,41.75006304907848],[-87.68528945150243,41.75006500274908],[-87.68518132605867,41.750066794116556],[-87.68486565860405,41.75007153068381],[-87.68453211994847,41.75007685154672],[-87.68407029738982,41.750084190910144],[-87.68394338423985,41.7500865610217],[-87.68345681916138,41.75009444414999],[-87.68284715737305,41.75010282269686],[-87.68152234798826,41.75009631552948],[-87.68131044221693,41.75010139792985],[-87.68096192153722,41.75010965586516],[-87.68067930635465,41.750116420998836],[-87.68047102319801,41.750121988686196],[-87.68034276233038,41.750125409483374],[-87.68010190388264,41.75013053806285],[-87.67974572836813,41.750141987619095],[-87.6793636096484,41.75015312320298],[-87.67897979532312,41.75015796339477],[-87.67877544209728,41.75016030030574],[-87.67861051472565,41.75016218614838],[-87.67845287430022,41.75016398869652],[-87.67838392347117,41.75016477709927],[-87.6783268005573,41.75016547619016],[-87.6782637104385,41.75016624853396]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2621408.01352","perimeter":"0.0","tract_cent":"1176222.5517669","census_t_1":"17031680100","tract_numa":"14","tract_comm":"68","objectid":"749","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866034.58470153","census_tra":"680100","tract_ce_3":"41.78775555","tract_crea":"","tract_ce_2":"-87.62940204","shape_len":"11840.2679065"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62884211790198,41.77999877819302],[-87.62908256330357,41.779994983377456],[-87.6293512536339,41.779998297060985],[-87.63014970093067,41.77998703057196],[-87.6301503475858,41.780008147726896],[-87.63015611174754,41.780196458878],[-87.63017365445533,41.78044549202341],[-87.63017950494594,41.78052855138634],[-87.63018818530351,41.78069050033264],[-87.63018711075554,41.78072690636623],[-87.63018581379126,41.78077085097469],[-87.63020831665686,41.780817881207035],[-87.63018246183711,41.78088442923878],[-87.63017031430128,41.78129596321755],[-87.63016399037596,41.78150564284442],[-87.63016441362363,41.78168235050862],[-87.6301647813465,41.7818359506368],[-87.63017404793187,41.7820952329223],[-87.63018392332977,41.782409541918426],[-87.63018849191117,41.78261219610889],[-87.63019123210579,41.782748193221835],[-87.63019396039162,41.782883569500505],[-87.630201630354,41.783127419062474],[-87.63020756693116,41.78331615268862],[-87.63021331624304,41.7834705818294],[-87.63022148522693,41.78369000997793],[-87.63022545523646,41.78406495895669],[-87.63023611509736,41.784401473935034],[-87.63024290421755,41.78466606485765],[-87.63025069155319,41.784921550566835],[-87.6302566010314,41.785036737327246],[-87.63026115054109,41.78528479390136],[-87.6302620584497,41.78541181826543],[-87.63026242192548,41.785462686685065],[-87.63026312264577,41.78556071637876],[-87.63026825703103,41.785815719831554],[-87.63028645254337,41.78602972094912],[-87.63030373679828,41.78610559649871],[-87.63030242017877,41.78614170051857],[-87.63029483834066,41.78634956406885],[-87.63030165995342,41.786701862514285],[-87.63030346908083,41.78676865526222],[-87.63030502504448,41.78682609886967],[-87.63031192806511,41.78708093882668],[-87.6303181662321,41.787256380016856],[-87.63032356846652,41.78740832114949],[-87.63033127069093,41.787575989314846],[-87.63032613283418,41.787962353422536],[-87.63033748316043,41.788393495658894],[-87.63035197542142,41.78885074564442],[-87.63035365344608,41.788903702246756],[-87.63036276449932,41.789328381362374],[-87.63037164362707,41.78968703151449],[-87.63037632077216,41.78990885357233],[-87.63038065302356,41.79011431702093],[-87.63039574145844,41.7905859873428],[-87.63040512341259,41.79090796833609],[-87.63040944989146,41.791056441695304],[-87.6304206713619,41.79152630449144],[-87.6304277053755,41.79178334979674],[-87.63043206028581,41.79191707799123],[-87.63044025111321,41.79211389358625],[-87.63044743847932,41.79234550028642],[-87.63045258942404,41.792538619376565],[-87.63045523478232,41.79265147312301],[-87.63045956800427,41.7928363345881],[-87.63046344873703,41.793004747607334],[-87.6304689061931,41.793247018951284],[-87.63049466491353,41.793551526968066],[-87.63049288688597,41.79372387522517],[-87.63049759742219,41.793896903691255],[-87.63050647816665,41.794119789739476],[-87.6305186795069,41.794200392644704],[-87.63052946362254,41.79429488228222],[-87.63053422160917,41.79448496097875],[-87.6305132561522,41.79456321438635],[-87.63038799770167,41.79457711727291],[-87.6302046614702,41.794581648764556],[-87.6298409403229,41.79458219147804],[-87.62972175654235,41.79458236908076],[-87.6295659299127,41.79458309898727],[-87.62934093485805,41.794584152364116],[-87.62888586125844,41.794591818099796],[-87.6286283185116,41.79459763791361],[-87.62855540675663,41.79459928532757],[-87.62854555628529,41.79424313053353],[-87.62854256542131,41.794139087651274],[-87.62852682119983,41.79356783703731],[-87.62849914899503,41.79257903896634],[-87.62847267222354,41.791690414445185],[-87.62846148520845,41.79116344313846],[-87.62845828504751,41.79103718639874],[-87.62845561165581,41.790945756766725],[-87.62845300337995,41.790849856818085],[-87.62843120843911,41.79003604225457],[-87.6284031081878,41.78995247922593],[-87.62842594192726,41.7898473403165],[-87.62835961690487,41.787408292145486],[-87.62835699600969,41.787312492500206],[-87.62835439204679,41.78721581725532],[-87.62834562857923,41.78688610575326],[-87.62834402132728,41.78682366336375],[-87.62831033668394,41.78558921348944],[-87.62830770429561,41.78549487452699],[-87.62830508537644,41.785399139352116],[-87.62826497592826,41.783914576473556],[-87.62824698157405,41.78325617985318],[-87.6282625918631,41.78316030294904],[-87.62826456887541,41.78316026870422],[-87.62834888300588,41.783158797902324],[-87.62870874588138,41.783152520890795],[-87.62896996245428,41.78314744316515],[-87.62895835062298,41.78275514175585],[-87.62894186487397,41.78199009755312],[-87.62893675134524,41.781704934270074],[-87.62893278047234,41.78148347348625],[-87.62891332097658,41.78076569499262],[-87.62889640066459,41.780402247263766],[-87.62888897011433,41.78030398356279],[-87.62869983746043,41.78019532983302],[-87.62859923802759,41.7801378510726],[-87.62854268890464,41.78000479249216],[-87.62863811251012,41.780002875894105],[-87.62876544458098,41.78000031817939],[-87.62884211790198,41.77999877819302]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7014901.06399","perimeter":"0.0","tract_cent":"1170761.11622057","census_t_1":"17031681000","tract_numa":"43","tract_comm":"68","objectid":"750","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861721.08784435","census_tra":"681000","tract_ce_3":"41.77603977","tract_crea":"","tract_ce_2":"-87.64955259","shape_len":"10609.3880767"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64478649487674,41.77975061167237],[-87.64478087923199,41.77951011058149],[-87.64477570488994,41.77929124976645],[-87.64477026307846,41.77906151088884],[-87.64476883866116,41.779004760828414],[-87.64475734639095,41.77856030740948],[-87.64475060105467,41.778303209154345],[-87.64474655073724,41.77814862635053],[-87.64474489974347,41.77808560750861],[-87.64473907040467,41.777926825696994],[-87.64473121574096,41.777712877778676],[-87.64472828364623,41.77755514599935],[-87.6447235960898,41.777301051311376],[-87.64471899009584,41.77704618869913],[-87.64470820796417,41.77671066173526],[-87.64470440802815,41.776546670208596],[-87.64470063344825,41.776383771057766],[-87.64470107144226,41.77638145118807],[-87.64474505291683,41.77614860441197],[-87.64474481348685,41.77613184769588],[-87.64474381583561,41.776062041994955],[-87.64474197795957,41.775932253359215],[-87.64474096859865,41.7758621031769],[-87.64474025646432,41.77581561058241],[-87.64473883657656,41.77573239510241],[-87.64473783465476,41.7756821136453],[-87.64473666346368,41.775637374645555],[-87.64472996436292,41.77543355397449],[-87.6447263465872,41.77532347542292],[-87.64472844624825,41.77527798762322],[-87.64472842785736,41.77523857945929],[-87.64472001328167,41.77515812095043],[-87.64465853800449,41.774949520951765],[-87.64465644559529,41.77484604332607],[-87.64465308299616,41.77468059714709],[-87.64465026561984,41.77453957872067],[-87.64464427102982,41.77429532752953],[-87.64463338946794,41.77385192187974],[-87.64463035561141,41.77374827914699],[-87.64462660024996,41.77357157897537],[-87.64462156742249,41.77339144077232],[-87.64461241812833,41.77306390927539],[-87.64460788293319,41.772898428572205],[-87.64460334393937,41.77273330459969],[-87.64459718011128,41.77247247924577],[-87.64479811967558,41.77246904390978],[-87.64504551266855,41.77246415955076],[-87.6452181865724,41.77246217409325],[-87.645390740577,41.772460189853646],[-87.6458128928741,41.77245493713425],[-87.64626188411287,41.772449348853215],[-87.6464138901169,41.77244784283585],[-87.6467447027505,41.77244455128048],[-87.64702376233852,41.772439730056675],[-87.64742687707745,41.77243276406521],[-87.64763458551798,41.772429640529666],[-87.6478407184223,41.77242650721778],[-87.64823487431379,41.77242138837857],[-87.64883949700405,41.77241336198957],[-87.64897765491821,41.77241094678321],[-87.64907947356446,41.77240952247279],[-87.64945499005232,41.7724045521574],[-87.64973873881071,41.77240079563142],[-87.65000702882568,41.77239577821302],[-87.65005964777423,41.772394544485124],[-87.65014427906145,41.772392560359116],[-87.65066787197156,41.77238560259407],[-87.65091907435846,41.77238226365327],[-87.65106646683554,41.77238017521598],[-87.65127630039542,41.77237716144971],[-87.65169640782179,41.772371126049],[-87.65188153587007,41.7723691139043],[-87.6520394320261,41.77236739772387],[-87.65238185273734,41.77236187112595],[-87.65248671680554,41.772360178360245],[-87.6529049245697,41.772353426663],[-87.65309648272242,41.7723507771929],[-87.65327171845969,41.772348353514474],[-87.65430967308932,41.772332947172636],[-87.65431910645498,41.77278038097155],[-87.65432489516162,41.77305492702995],[-87.65433458181171,41.773415584645434],[-87.65434535509978,41.773819279201724],[-87.65435458449903,41.77415375349572],[-87.65435771472683,41.77426719368948],[-87.65437534676975,41.774959079617986],[-87.65439203793325,41.77558690808208],[-87.6543981301434,41.77581606517929],[-87.65440203300687,41.77597361098044],[-87.65440599834574,41.77613368134771],[-87.6544450323421,41.777636412598724],[-87.65445162831904,41.7777921770262],[-87.6544564211743,41.77790536571494],[-87.65446524744262,41.778206466785406],[-87.65446639742031,41.77824555230836],[-87.6544745486723,41.77852260936934],[-87.65448823922044,41.77904385966102],[-87.65448928680179,41.77908375688362],[-87.65449127310193,41.77915937743952],[-87.65449905963284,41.779455841031755],[-87.65450197423793,41.779608430738016],[-87.6543343561598,41.77960981042717],[-87.65348515854716,41.77962350432134],[-87.65328763522885,41.77962788971016],[-87.65308015174308,41.77963249570085],[-87.65230485245023,41.77964062296069],[-87.65207218129711,41.779644198269835],[-87.65185113851244,41.77964782479809],[-87.65107245267924,41.77965719535551],[-87.65085901121712,41.77966113597798],[-87.6506234199349,41.77966548108669],[-87.64990808378445,41.779675278650494],[-87.64964308069172,41.779674017471145],[-87.6494780671187,41.779650189100636],[-87.64935964656665,41.77965118504065],[-87.64891823845709,41.77965489607134],[-87.64860581762,41.779659373719255],[-87.64841927736367,41.77968151989626],[-87.64838551672506,41.779685527810734],[-87.64822671620344,41.77969731771954],[-87.6478435058387,41.77970104125464],[-87.64755111784439,41.77970412647857],[-87.64744211026022,41.77970631798162],[-87.64721430967101,41.77971089772971],[-87.64693437807256,41.779716524815555],[-87.64660207880371,41.77972156431549],[-87.64628913061598,41.779727349769324],[-87.6461838441519,41.77972924646386],[-87.64607001746538,41.77973129669637],[-87.64587739294825,41.77973476613735],[-87.64539551994139,41.7797419806133],[-87.64491518596489,41.77974922973296],[-87.64478649487674,41.77975061167237]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3512569.12805","perimeter":"0.0","tract_cent":"1165984.21538463","census_t_1":"17031670300","tract_numa":"21","tract_comm":"67","objectid":"751","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866901.37055085","census_tra":"670300","tract_ce_3":"41.79035801","tract_crea":"","tract_ce_2":"-87.66691716","shape_len":"7954.99379851"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66909178728517,41.78668960819656],[-87.66924494782619,41.78668799033061],[-87.66925029265562,41.78682540612667],[-87.66925539972111,41.78700565341493],[-87.66925892513738,41.787129496133154],[-87.66926303150352,41.78727521419292],[-87.6692687458427,41.787544928805985],[-87.66927151751459,41.78767071505181],[-87.66927256564738,41.78771827579927],[-87.6692825059695,41.787967710922665],[-87.66928358530895,41.78809546326479],[-87.66928410713527,41.788157213331026],[-87.66928966789,41.78832190280706],[-87.66929314914167,41.78842516307514],[-87.66929523935953,41.7885098954681],[-87.66929798376358,41.78862113323722],[-87.66930336840582,41.78881710657178],[-87.66930986573779,41.78905449764462],[-87.66931580776188,41.7892710837917],[-87.66932106041003,41.78946208917886],[-87.66932713117117,41.7896839725306],[-87.66932994047615,41.78978580213425],[-87.66933196144363,41.78985905886578],[-87.66933556579859,41.78998948799439],[-87.66933992843524,41.79014945031597],[-87.66934331516804,41.790272578648576],[-87.6693447364128,41.79033228088826],[-87.66934664013334,41.790412282120144],[-87.66935137811831,41.790592801314645],[-87.66935676908304,41.79079884615291],[-87.66936288305793,41.791030773794276],[-87.66936908313559,41.791268574698925],[-87.66937493527625,41.79149034694449],[-87.6693815362042,41.79174261254027],[-87.66938735032542,41.79196452176184],[-87.66938880638654,41.792015134831615],[-87.66939108298179,41.79209319551395],[-87.66939255960189,41.79215414725394],[-87.66939707466031,41.792340545287985],[-87.66940204398524,41.79250929276719],[-87.66940861268186,41.792732715677325],[-87.66941140873011,41.7928526571671],[-87.66941557719186,41.79303149897725],[-87.6694169430908,41.79308946647886],[-87.66941899448379,41.79317652683025],[-87.66942312970504,41.79335503912372],[-87.66943204922723,41.79352479734468],[-87.66943362889714,41.79360348626192],[-87.66943660282445,41.79375161148371],[-87.66943791764234,41.79380674904915],[-87.66943936731727,41.79386754611163],[-87.66944272014679,41.79396882882579],[-87.66930168983885,41.79397171931716],[-87.66917673557242,41.79397305518419],[-87.66896020195112,41.79397537067598],[-87.66876604012208,41.793977485868574],[-87.66856637729101,41.793979623785845],[-87.66838527205914,41.79398159434644],[-87.6682302485256,41.79398274332856],[-87.6681046386805,41.79398367439118],[-87.66797576017795,41.79398504111295],[-87.66785289688755,41.793986305596306],[-87.66765939656985,41.79398831270441],[-87.66748518679313,41.793990129702294],[-87.66727877587044,41.793992308322196],[-87.6671296526487,41.793993858860546],[-87.66701557897335,41.79399620444942],[-87.66684545971101,41.79399970230057],[-87.66672897176515,41.79400149626661],[-87.66652937990153,41.79400385059757],[-87.6663226755659,41.79400602607056],[-87.66612271812586,41.79400826780077],[-87.66590999399415,41.79401098386782],[-87.66579325560959,41.79401213463906],[-87.66566478180546,41.794013400952984],[-87.66551019590905,41.794014807593605],[-87.66530338465358,41.79401667873921],[-87.66519218617368,41.794017659958705],[-87.66505780830772,41.794018845425185],[-87.66483189136925,41.79402068690536],[-87.66458181581164,41.79402436374037],[-87.66457884130335,41.7939409744709],[-87.66457644803495,41.79383790162545],[-87.66457483864082,41.79366354968929],[-87.6645741920737,41.79357335029935],[-87.66456882106002,41.79337743188962],[-87.66455926419519,41.79315377181356],[-87.66455914941254,41.7931461521834],[-87.66455592357333,41.79293190426039],[-87.6645516187127,41.79274282530837],[-87.66454634071309,41.79252026038884],[-87.66454171590787,41.79232665148754],[-87.66453876063403,41.792206921362684],[-87.66453621990324,41.79210400295392],[-87.66453303090557,41.791986967999875],[-87.66452553077309,41.791714169663],[-87.66451773916357,41.79143011803898],[-87.66451066692754,41.791172113874325],[-87.66450383060845,41.7909231672195],[-87.66449845898777,41.790727303599866],[-87.66449194131084,41.79049007688825],[-87.66449003359642,41.79038751203041],[-87.66448733125586,41.79024215855142],[-87.6644823471252,41.79006193960424],[-87.66447664330823,41.78985578294132],[-87.6644677985665,41.78953550049101],[-87.6644588546599,41.78921068936969],[-87.66445102047986,41.788927213672174],[-87.66444387361096,41.788669373615704],[-87.66444137514561,41.788567419182726],[-87.66443805510544,41.78843190390249],[-87.66443219617541,41.788194763258595],[-87.66442526990156,41.787926331498646],[-87.66442284820977,41.787795126399686],[-87.66442176589996,41.78773648919088],[-87.6644213073815,41.787711637534684],[-87.66441635635339,41.7874433945343],[-87.66440950489569,41.78724181405599],[-87.66440378254485,41.78707267764248],[-87.66439776288328,41.78689687086981],[-87.66439449268405,41.78674683854954],[-87.66463580089892,41.786742463390574],[-87.66486273524048,41.78673909137375],[-87.66501514330692,41.786737746179675],[-87.66519255324383,41.786736180107894],[-87.66542716676581,41.7867348275258],[-87.66560663584707,41.786733164112285],[-87.6658274684533,41.78673111671457],[-87.6661438792033,41.78672697221274],[-87.66637836358731,41.78672388803547],[-87.66664005905277,41.78672043988352],[-87.66682049320194,41.78671817039289],[-87.667190987962,41.78671350937473],[-87.66738369964008,41.78671122374566],[-87.66764539003844,41.786708184917224],[-87.66788643515085,41.78670535522111],[-87.6680340104318,41.786703004353356],[-87.66820985957702,41.78670020282458],[-87.66836831980167,41.78669829353369],[-87.66856843988799,41.78669588414149],[-87.66885781886342,41.78669242674305],[-87.66909178728517,41.78668960819656]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7114837.08775","perimeter":"0.0","tract_cent":"1154832.76585559","census_t_1":"17031660500","tract_numa":"38","tract_comm":"66","objectid":"754","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861310.31003726","census_tra":"660500","tract_ce_3":"41.77524524","tract_crea":"","tract_ce_2":"-87.70795601","shape_len":"10675.4292387"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70313518755025,41.778823663510984],[-87.7031289481938,41.778659575301994],[-87.70312402181303,41.77853363999896],[-87.70312347322312,41.77849979982524],[-87.70312293247625,41.778439994541515],[-87.7031213008347,41.77830228095223],[-87.7031191647281,41.778217141182004],[-87.70311717900425,41.778139109961444],[-87.70311589961902,41.77804738912739],[-87.70311470159686,41.777961512990615],[-87.70311225353441,41.7778820247535],[-87.70310979282596,41.777800121465475],[-87.70310734069801,41.7777060335493],[-87.70310526864323,41.77759188691276],[-87.70310372424059,41.777506228961556],[-87.70310241046981,41.77744195034073],[-87.7030991961135,41.777272225435574],[-87.703095475837,41.777144027459265],[-87.70309168479884,41.77701339709646],[-87.70309046101,41.77691371754118],[-87.70308786347687,41.776778354595024],[-87.70308524697684,41.776685445807644],[-87.70308280258567,41.776580051413895],[-87.70308008222567,41.776438513118755],[-87.70307816888968,41.77637930787097],[-87.70307604314381,41.776311841673326],[-87.7030736768149,41.776231503129345],[-87.7030709809998,41.776139883717256],[-87.70306889078445,41.7760201111414],[-87.70306784830532,41.77595808431548],[-87.70306523806298,41.775861470748175],[-87.70306336077942,41.775791096678304],[-87.70306114454549,41.775691686086866],[-87.7030596755352,41.77560956866378],[-87.7030581348209,41.77552728618834],[-87.70305711492273,41.77546295427144],[-87.70305229212084,41.77532246453626],[-87.70304984099077,41.77525105463245],[-87.70304808033774,41.775168770945186],[-87.70304685927425,41.7751100088439],[-87.70304520860356,41.77502772575799],[-87.70304355999558,41.77493399896263],[-87.70304202835261,41.774873259260964],[-87.70303961023534,41.77477571366807],[-87.70303737815053,41.77468170923773],[-87.70303604309429,41.77462335815064],[-87.70303451483576,41.774558529461025],[-87.70303148602937,41.774418553673],[-87.70302906514311,41.7743063532337],[-87.70302762848294,41.774205959220566],[-87.70302547170526,41.77410048402978],[-87.70302298339513,41.773995171676],[-87.70302216472062,41.77396143976554],[-87.70301984876552,41.77386600810119],[-87.70301808368977,41.77379541480385],[-87.70301548623146,41.7736900192422],[-87.70301325878548,41.773599253365276],[-87.70301115843154,41.77349973826465],[-87.70300835027008,41.77336670179535],[-87.70300628657125,41.77329665626187],[-87.7030031282873,41.77318489111681],[-87.70300137923883,41.77310891934903],[-87.70300017968144,41.77305781421073],[-87.70299825626176,41.77297108356122],[-87.70299698466431,41.77290625626092],[-87.70299554739435,41.77283588456843],[-87.70299462153902,41.77277693196187],[-87.70299074529385,41.772607450273114],[-87.70298859066175,41.772513034587064],[-87.70298732686938,41.77242490823061],[-87.70298564143957,41.772331208633496],[-87.70298391594785,41.77224908975486],[-87.70297799965095,41.77214943925643],[-87.70297779371005,41.77213995767261],[-87.70297572521865,41.77204475922856],[-87.70297431491424,41.77195665950399],[-87.70297280270096,41.771867735929305],[-87.70296712312485,41.771674943575526],[-87.70321912013395,41.771672513028754],[-87.70350409678124,41.7716660623088],[-87.70387073975206,41.77166066210135],[-87.70416060430955,41.771656733845035],[-87.70436350679046,41.77165350885187],[-87.70462250365316,41.77164965742292],[-87.70505467458685,41.77164236168756],[-87.7052926647523,41.771638613411675],[-87.70538198109149,41.771637074690915],[-87.70546992311938,41.771635795135936],[-87.70559888811074,41.7716337555605],[-87.70599131461215,41.77162706242458],[-87.70649964175436,41.771618146569985],[-87.70684344110751,41.77161321570712],[-87.70723685207629,41.77160704510117],[-87.7073783004364,41.77160519477609],[-87.70781009277007,41.77159911276393],[-87.70792133097903,41.77159754570111],[-87.70860394350403,41.771583915624745],[-87.70930312977663,41.77157363723184],[-87.70952590155929,41.77157034638315],[-87.70991132434082,41.77156376648464],[-87.71023797203284,41.77155829220407],[-87.71038635491371,41.77155580507738],[-87.7107258728629,41.77155001636424],[-87.71171934240891,41.77153360620464],[-87.7122399848284,41.77152475874806],[-87.71254914989665,41.77152327266195],[-87.71269031720075,41.771522593776936],[-87.71272397606869,41.77152243201639],[-87.71274763904566,41.771522318339926],[-87.71276245727897,41.77152224689676],[-87.7127710417365,41.7715222054481],[-87.71277479028592,41.77152218754991],[-87.71277564207968,41.771672553414035],[-87.71277565851372,41.771675488531],[-87.71278088231695,41.77184669269311],[-87.71280843356386,41.77317199488186],[-87.71280858568124,41.77317416507158],[-87.71282076446128,41.773347531937524],[-87.71282076722571,41.7733477015501],[-87.71283644458856,41.77425957442172],[-87.71285078279203,41.77481640132487],[-87.7128593219329,41.7751667095837],[-87.71289197416394,41.776533524908935],[-87.71290188313807,41.776980013520955],[-87.71291129192305,41.77742450840945],[-87.712920979695,41.77788217574629],[-87.71292203250485,41.77793190643676],[-87.71292546327388,41.77809898400678],[-87.71293250343781,41.7783599864903],[-87.71293728051096,41.77853710583687],[-87.71294545497707,41.77882969413737],[-87.71289732846506,41.778831286913885],[-87.71283501356645,41.77883334942819],[-87.71272560684902,41.77883209187497],[-87.71216396949042,41.778825634121716],[-87.71189423415527,41.77882993867013],[-87.71155072322918,41.77883521491713],[-87.71099885190502,41.77884468583796],[-87.71041021117502,41.77885360676675],[-87.71000649249802,41.7788597234635],[-87.70958858459392,41.778865743043156],[-87.70930638152828,41.778870247977764],[-87.70876595608652,41.77887897449559],[-87.7085453874929,41.77888304421559],[-87.70836009504188,41.77888650957426],[-87.70798777993787,41.7788928753548],[-87.70783653184095,41.778895460663506],[-87.70744951938326,41.778902628615306],[-87.70730731603446,41.778905063815],[-87.70722525037701,41.77890645609694],[-87.70704769893408,41.778909385223784],[-87.70690432319596,41.778911732027794],[-87.70674580316778,41.77891432537139],[-87.70661097160983,41.77891649886576],[-87.70644489614826,41.77891937989262],[-87.70631028310522,41.77892166399822],[-87.7061517634053,41.778924256523794],[-87.70602485170473,41.77892636279441],[-87.70589034952344,41.7789285921273],[-87.70578741958765,41.77893028025063],[-87.70555931863325,41.77893486923964],[-87.705420532708,41.7789376610702],[-87.70520925764184,41.77893990905728],[-87.70505936145923,41.77894166904894],[-87.70489355162856,41.778943616225],[-87.70475197136376,41.77894605249282],[-87.70456990558985,41.77894944733732],[-87.70445069132484,41.77895173093686],[-87.7043112050082,41.778953776907734],[-87.70410024346336,41.778957660994955],[-87.70395730480939,41.77896028066948],[-87.7037746210989,41.77896312173462],[-87.70363330034732,41.77896525617318],[-87.70345076084274,41.778968344500235],[-87.7032771300962,41.77897150883845],[-87.70321668777845,41.77897227176618],[-87.70313675400799,41.77897328038571],[-87.70313518755025,41.778823663510984]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14105228.5547","perimeter":"0.0","tract_cent":"1142766.08694525","census_t_1":"17031640200","tract_numa":"1","tract_comm":"64","objectid":"755","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1863646.44110192","census_tra":"640200","tract_ce_3":"41.78188826","tract_crea":"","tract_ce_2":"-87.75213377","shape_len":"15931.4843717"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7614352397733,41.77805861738451],[-87.76171488694926,41.77805330891449],[-87.7617233767784,41.77823560417605],[-87.76173125376378,41.778438529393995],[-87.76173401722518,41.7785103068354],[-87.76173721212983,41.77859328261308],[-87.7617429914905,41.778743424515135],[-87.76174481346163,41.778790306203774],[-87.76175238084122,41.7789866161007],[-87.76176202370448,41.77919300789233],[-87.76177558815294,41.77942433741645],[-87.76178722559713,41.77964146932039],[-87.76179666043909,41.779885099904575],[-87.76180201881682,41.78002346691116],[-87.76181245561051,41.780284995560685],[-87.76182066312778,41.78049203906701],[-87.7618288782489,41.78069823132202],[-87.76183781935464,41.78090525101879],[-87.76184708267671,41.78111732126929],[-87.76185658209124,41.78133575973064],[-87.76186265400591,41.7814777798907],[-87.76187279717911,41.78172196332377],[-87.76188174537133,41.781937380017034],[-87.76189067603266,41.78216212749939],[-87.76190091745086,41.782420911050586],[-87.76191177892593,41.78269254043444],[-87.76192138031995,41.78291196728561],[-87.7619315515589,41.78315807152639],[-87.76193767918288,41.78330623913978],[-87.76194772207036,41.78355607469302],[-87.76195551857089,41.78375002573532],[-87.7619621590926,41.78391477170792],[-87.76196957324387,41.7841038903254],[-87.7619768441824,41.78429262429697],[-87.76198514322233,41.78450597971117],[-87.76199254092325,41.784688704290886],[-87.76200126639009,41.78489533828516],[-87.7620067113568,41.785018665755],[-87.76201219546253,41.785142873237845],[-87.76201668577481,41.785229553568605],[-87.76202164873845,41.78532536103168],[-87.76202121745554,41.785325370138516],[-87.74253048091795,41.785734390450166],[-87.74252488712725,41.78555381372525],[-87.74251164969647,41.78507546997745],[-87.74250083772104,41.784747471414434],[-87.74248858504548,41.78439668749887],[-87.7424731296761,41.783932007617054],[-87.74247246966871,41.78391216132093],[-87.74246866989807,41.783797911856944],[-87.74246410341283,41.78366062392918],[-87.74245045576649,41.78326213691198],[-87.74243423216284,41.78280877814329],[-87.74242050443968,41.78241105905538],[-87.74241108427287,41.78208334164813],[-87.7424069990404,41.7819412209776],[-87.74239794111875,41.78164989477618],[-87.74238916499968,41.78139177599675],[-87.74237375805797,41.780961363869814],[-87.74236102251099,41.780599407666436],[-87.74235074319445,41.7802654836216],[-87.7423504822928,41.78025700240165],[-87.74234199296954,41.77998058057025],[-87.74233624756499,41.77972384945215],[-87.74232561382567,41.779348649023525],[-87.74230913428464,41.77890903754772],[-87.74230099527145,41.77869192200113],[-87.74229269392967,41.77842912375372],[-87.74262985735933,41.778424644745094],[-87.74306116794821,41.778415747190515],[-87.74350414121248,41.77840641392034],[-87.74371249996598,41.77840202230697],[-87.74397512039641,41.77839756098672],[-87.7441476943763,41.77839335987461],[-87.74435091985463,41.77838905082357],[-87.7445636219975,41.778386738156996],[-87.74471638608509,41.778383875696996],[-87.7448258435199,41.7783818247035],[-87.74503999322401,41.77837757011841],[-87.74521872093861,41.778374011984624],[-87.74550767664638,41.77836824588032],[-87.74568735739149,41.77836466445066],[-87.74593799972742,41.77835900425257],[-87.74610547352906,41.778355221442894],[-87.74643234159737,41.77834915281875],[-87.74663985181778,41.77834530042011],[-87.74681934840024,41.77834179860817],[-87.74714926176222,41.77833550583451],[-87.74728358074296,41.77833294349441],[-87.74745819883748,41.77832969022787],[-87.74764264385188,41.77832629469347],[-87.7478983735878,41.778321560674044],[-87.74809983332581,41.77831781202047],[-87.74836465820358,41.77831276735831],[-87.74851133494097,41.77830997313907],[-87.74882668903963,41.778304058633054],[-87.74909400902949,41.77829877717367],[-87.74938777062434,41.77829264154654],[-87.74956241200084,41.778289021579965],[-87.74969187260233,41.77828633815599],[-87.75001309701992,41.77827992879833],[-87.75035052858644,41.77827327147039],[-87.75050795047716,41.778270173291546],[-87.75079008416634,41.77826460902086],[-87.7509462589531,41.77826152861636],[-87.75125013748561,41.77825557672641],[-87.75149586051145,41.77825053701003],[-87.75175145018751,41.778244970413404],[-87.75200606380773,41.77824107370341],[-87.75228372132253,41.778236823704084],[-87.75254510148888,41.778231531888856],[-87.75278961379594,41.77822656533872],[-87.75295844019864,41.77822313722883],[-87.75314244684958,41.77821950149967],[-87.75321897410032,41.778218168646454],[-87.75342486806976,41.77821457025889],[-87.75376717819479,41.778207570760685],[-87.75405422711566,41.778201718651296],[-87.7543308256004,41.77819603270062],[-87.75442270156512,41.778194263215326],[-87.75463011899923,41.77819026830437],[-87.7549277229856,41.77818482366417],[-87.75523141439484,41.77817921733282],[-87.75547064173855,41.77817482250179],[-87.75564761013058,41.77817108698299],[-87.75579927567452,41.77816788537197],[-87.75607546349814,41.778162989002375],[-87.75636221263716,41.77815781569372],[-87.75662241344423,41.77815313959179],[-87.75686377139631,41.77814825858089],[-87.7572562071958,41.77814032014471],[-87.75763609770034,41.778133113350066],[-87.75790183809832,41.778128023021104],[-87.75816867829407,41.7781229375834],[-87.75842928459784,41.77811798498862],[-87.75864596156484,41.7781138551732],[-87.7589122517485,41.77810876498239],[-87.75927960294392,41.778101591594854],[-87.75967537262729,41.77809386188595],[-87.76003902034789,41.778086730695996],[-87.76043977646928,41.77807890523134],[-87.76070629113784,41.778073318301466],[-87.76104372013495,41.778066711877024],[-87.7614352397733,41.77805861738451]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3454693.80776","perimeter":"0.0","tract_cent":"1173671.23874234","census_t_1":"17031610800","tract_numa":"25","tract_comm":"61","objectid":"759","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1875096.15711507","census_tra":"610800","tract_ce_3":"41.81267837","tract_crea":"","tract_ce_2":"-87.63848803","shape_len":"8303.26891689"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63620538821475,41.81475421662303],[-87.63615646317938,41.812669687782886],[-87.63615529774961,41.812607889785575],[-87.63615800702466,41.81240037041147],[-87.6361600379526,41.812213085943974],[-87.63617574359374,41.811948701990595],[-87.6361893983275,41.81183112404755],[-87.63620031831138,41.81175435060361],[-87.63620580433131,41.81171356252318],[-87.63622495749816,41.81159636097467],[-87.63624594418759,41.81147917054731],[-87.6362701376069,41.81136234260759],[-87.63629616043855,41.81124586879583],[-87.63637959631437,41.81090839058312],[-87.63624799715181,41.81091093951687],[-87.63586154692628,41.81091840640116],[-87.63585220356568,41.81051209883586],[-87.6358342454969,41.8098023152619],[-87.6358341651536,41.8098023164206],[-87.63583404372467,41.809802317878706],[-87.6358330271611,41.80980233091598],[-87.63583295042822,41.809797502169914],[-87.63583112362133,41.809682650512975],[-87.63582989364022,41.80960532826522],[-87.63582518727779,41.8094842342766],[-87.63582147511188,41.80942243422537],[-87.6357743484988,41.80904719861392],[-87.63582301152618,41.80904621335978],[-87.63591791651548,41.809044291757786],[-87.63597327259313,41.80904317061849],[-87.63601835410313,41.809042257667365],[-87.63640437672122,41.80903556811365],[-87.6365554792612,41.80903302588119],[-87.63668322520931,41.80903106464487],[-87.63681538122123,41.80902903532948],[-87.63696486865749,41.809026598573645],[-87.63700036240762,41.80902584418588],[-87.63707616456607,41.80902423283507],[-87.63737993376361,41.809017775783055],[-87.63784969964038,41.8090073935315],[-87.63823465913302,41.809000612902715],[-87.63835811092008,41.80899843830549],[-87.63886318427909,41.80898954023284],[-87.63936127529539,41.80897844487095],[-87.63984534651075,41.808968003665],[-87.64037127128881,41.808957483597005],[-87.64067873816393,41.80895206346676],[-87.64067587201362,41.809120162801435],[-87.64068476321975,41.809411878184555],[-87.64069514900144,41.80974484904599],[-87.64070252761505,41.80986672214006],[-87.64070657698646,41.80993361442833],[-87.64070719896816,41.81027086206882],[-87.64070862761028,41.810319663921284],[-87.64071427751668,41.81051270323297],[-87.64071990488631,41.810705385371776],[-87.64072176322547,41.81078229970887],[-87.64072771861458,41.81102884545242],[-87.64073334298664,41.81124905264552],[-87.64073896744426,41.81143520336454],[-87.64074597954242,41.81169787258368],[-87.64074764439758,41.81176023284549],[-87.64075332227608,41.811961861585345],[-87.64076343366386,41.81232400229156],[-87.64076632848655,41.81242824733374],[-87.64076803462393,41.81248940008069],[-87.64077046281773,41.81261026630432],[-87.64077658296408,41.8129149240909],[-87.64078269514081,41.81314435491657],[-87.6407884070621,41.81332581338963],[-87.64079362164958,41.813524530897624],[-87.64079665124385,41.813639972823516],[-87.64080089907881,41.813797300276775],[-87.64080770524528,41.8140508574265],[-87.64081824321906,41.81443807500815],[-87.64099640409707,41.8144356445258],[-87.64119069393249,41.81443092782586],[-87.64120165395154,41.8148268974641],[-87.64120347881601,41.81488592298501],[-87.6412079934065,41.81503196068138],[-87.64121925800103,41.81534674193569],[-87.64122705639394,41.815564656852956],[-87.64123269865983,41.81572204752719],[-87.64123537086518,41.81580186711766],[-87.64123916619546,41.81591522822791],[-87.64125040476324,41.81625814110052],[-87.6408680047574,41.81626516810608],[-87.64072534723802,41.816267789406815],[-87.64039532573587,41.81627200108025],[-87.63995884441246,41.81627976796852],[-87.63960547108535,41.81628583973068],[-87.63934877870734,41.81629031450538],[-87.63905598241716,41.81629541792531],[-87.6387016896041,41.8163017283336],[-87.63842613855498,41.81630649260483],[-87.6381031816131,41.81631207579297],[-87.63786072482785,41.816316343605955],[-87.63751604430523,41.816322475840096],[-87.63703678080256,41.816331001011555],[-87.63687602530506,41.81633387418418],[-87.63681601190066,41.816334946925004],[-87.63653989746848,41.816339881083145],[-87.63646529108452,41.81634121556125],[-87.63616198200044,41.816346696787114],[-87.63621125356273,41.8157778666858],[-87.63621588553166,41.815689048385224],[-87.63621959598396,41.81560056834804],[-87.63622193160319,41.81551207969131],[-87.63622289500829,41.815423239945666],[-87.63620538821475,41.81475421662303]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7248760.567","perimeter":"0.0","tract_cent":"1152113.90344302","census_t_1":"17031650100","tract_numa":"41","tract_comm":"65","objectid":"756","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1863889.50311943","census_tra":"650100","tract_ce_3":"41.78237677","tract_crea":"","tract_ce_2":"-87.71785546","shape_len":"10784.6607557"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71274502615431,41.77901371246933],[-87.71272560684902,41.77883209187497],[-87.71283501356645,41.77883334942819],[-87.71289732846506,41.778831286913885],[-87.71294545497707,41.77882969413737],[-87.71294550559068,41.778829692215254],[-87.71303216007804,41.77882682443301],[-87.71317685939427,41.77882203525034],[-87.71325216155155,41.77881954263828],[-87.71378382673404,41.77880194352085],[-87.71396870992984,41.77879900618624],[-87.71428677453248,41.77879395195907],[-87.71462903863532,41.77878866054063],[-87.71500616772475,41.77877971374169],[-87.71540203421002,41.77877075644274],[-87.71568421526923,41.778764370566776],[-87.71604520983163,41.77876329207094],[-87.71647453740214,41.77875536323923],[-87.71785438433731,41.77873456155154],[-87.71830604807181,41.77872774912404],[-87.71885220514591,41.77871752645776],[-87.71954209114344,41.77870625794453],[-87.72030760236548,41.778695502188484],[-87.72065595329526,41.77869060592465],[-87.72132520416739,41.778678667519834],[-87.72185455629918,41.778669713477086],[-87.72240377043873,41.778661767961275],[-87.72276009549746,41.77865823678329],[-87.72277377853324,41.77912614894723],[-87.72277808938337,41.77927356801761],[-87.72278534292948,41.77954636601891],[-87.72278728257712,41.77961932520946],[-87.7227893850257,41.779698390225526],[-87.72279990351412,41.780081467529385],[-87.72281136435694,41.78047250827287],[-87.72281310634446,41.78053194799997],[-87.72282178603929,41.780828087167144],[-87.72282572810981,41.78096137111074],[-87.72283701360936,41.781380896372575],[-87.72284391666244,41.78163749749944],[-87.72285473584863,41.78198119563426],[-87.72286269809668,41.782296182572054],[-87.72287118554988,41.782631955376445],[-87.7228746405015,41.78275055086988],[-87.72288042376546,41.782949080277255],[-87.72288795736051,41.78320332404081],[-87.72289886620251,41.78357147449272],[-87.7229015903771,41.783654092501386],[-87.72290629803277,41.78379687542923],[-87.72291351533792,41.78411486605348],[-87.72292396588725,41.78457330127948],[-87.72293203049243,41.78488389006226],[-87.72293602840975,41.785028837454156],[-87.72294550881236,41.78537255543577],[-87.72294755913728,41.785451464492525],[-87.72294908878418,41.78550926771415],[-87.72295196404805,41.785619767968875],[-87.72295562878656,41.785759142930594],[-87.72296146329894,41.78593657849386],[-87.72271134797404,41.785941273345045],[-87.72246805948593,41.78594533132615],[-87.72231319122115,41.785947773443],[-87.7221271504371,41.78595070841259],[-87.72193329873474,41.78595376562015],[-87.72178554444677,41.78595610767126],[-87.72158399169517,41.785959260783265],[-87.72142842610891,41.785961725436856],[-87.72120314564816,41.78596530035363],[-87.72104050258797,41.78596783654204],[-87.72085508539219,41.78597077250043],[-87.72070777128759,41.78597308806899],[-87.72059974731802,41.78597527134902],[-87.72050679902472,41.78597714964964],[-87.72039835072408,41.785979341179434],[-87.72015638692446,41.78598287991619],[-87.71993943356203,41.78598605771284],[-87.71975335814057,41.785988796277735],[-87.7195627723488,41.785991565329866],[-87.71940724487592,41.78599386279207],[-87.71925952867939,41.78599603713979],[-87.71901158692359,41.78599965100829],[-87.71877875460831,41.786003071289485],[-87.71851405397588,41.786006924021414],[-87.71831220948694,41.78600987773047],[-87.71805732411563,41.78601351383824],[-87.7178967867751,41.78601580355464],[-87.71763828040136,41.78601990699512],[-87.71735072849702,41.78602454019168],[-87.71712651071765,41.78602814025379],[-87.71686246675021,41.78603232201703],[-87.71662167278116,41.78603618890032],[-87.71640200222743,41.786039729629856],[-87.71626205855344,41.7860419418621],[-87.71605870809165,41.78604518539419],[-87.71587185980216,41.78604818822207],[-87.71574621858329,41.78605020171918],[-87.71560338580159,41.78605241957178],[-87.7153786115515,41.7860559094954],[-87.71515967367273,41.78605950640153],[-87.7149489509183,41.78606292756759],[-87.71471461039145,41.786066770578934],[-87.71452735815919,41.78606982365594],[-87.71429184404045,41.786073686651726],[-87.71412366171032,41.786076430183705],[-87.71401496331926,41.786078204341166],[-87.7139726045372,41.786078896141355],[-87.71385829626267,41.78608076257573],[-87.71374086892776,41.7860826815049],[-87.71359197649043,41.78608511664938],[-87.71344291264417,41.78608749249695],[-87.71337487273374,41.78608857679578],[-87.71325553636119,41.786090203087774],[-87.71321791685118,41.78609069982328],[-87.71315618354375,41.78609183834239],[-87.71302240426373,41.78609430521171],[-87.71292331652401,41.786096132150114],[-87.71289672804393,41.78609662248924],[-87.71293638142578,41.78568038995087],[-87.71293677799412,41.785639255143785],[-87.71293707561824,41.785608383457166],[-87.71293447773687,41.785531748772385],[-87.71293146814028,41.785444573778506],[-87.71292987780777,41.785397802164944],[-87.71292588290856,41.785278459009035],[-87.71292273194011,41.785190432516856],[-87.71291811245594,41.78506137091158],[-87.71291434377491,41.78492358704592],[-87.71290926577655,41.78473719439892],[-87.71290577039534,41.78461107552211],[-87.71290171706882,41.78446102339135],[-87.71289929493513,41.78427633445937],[-87.7128968145032,41.7840871964324],[-87.71289073485028,41.78388490916272],[-87.71288899460136,41.78382699489429],[-87.71288604343837,41.78372878840316],[-87.71288107376857,41.783563500195285],[-87.71287526328891,41.7833710663753],[-87.71286912330113,41.78316770847917],[-87.71286419722236,41.78297508732152],[-87.71286264122224,41.78291495170942],[-87.71286064457479,41.782837771101555],[-87.71285568425237,41.78264490276121],[-87.71285046204974,41.782461401746126],[-87.71284738598546,41.78235330411966],[-87.71284369619495,41.78222641546253],[-87.71283966386069,41.78209702764447],[-87.7128370110385,41.78200911356428],[-87.71283438421924,41.7819220777974],[-87.71283046953499,41.781784293066224],[-87.71282379764527,41.781556343358936],[-87.71281863772555,41.781380049437125],[-87.71281518440286,41.78125146057233],[-87.71281128540922,41.781100912468155],[-87.71280994760932,41.78104926008143],[-87.71280686120214,41.780920645747976],[-87.71280374025842,41.78079181168143],[-87.71279983248616,41.78064609539805],[-87.71279535304846,41.78047905394698],[-87.71278936912684,41.78028590556734],[-87.71278646808767,41.780194504862855],[-87.71277947582561,41.779969654414245],[-87.71277717807344,41.77989614976991],[-87.71277246012062,41.77974233396392],[-87.71276615939948,41.77953691684585],[-87.7127584087239,41.77934449984984],[-87.71275600251236,41.77928510056611],[-87.71275171570475,41.77917928453198],[-87.71274502615431,41.77901371246933]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5251670.34288","perimeter":"0.0","tract_cent":"1161909.96236341","census_t_1":"17031630100","tract_numa":"31","tract_comm":"63","objectid":"757","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1870125.76316154","census_tra":"630100","tract_ce_3":"41.79929185","tract_crea":"","tract_ce_2":"-87.68176682","shape_len":"10778.0048568"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67891012039159,41.793866728436],[-87.67943429606284,41.793860382737115],[-87.6795613568282,41.793858855050175],[-87.67969797494774,41.79385721941558],[-87.67978147221332,41.793856211458895],[-87.67997913717184,41.793853932088595],[-87.68101825796496,41.793841945076665],[-87.68128745593772,41.79383916483052],[-87.68143274439448,41.79383765977137],[-87.68154931887851,41.7938364521082],[-87.68189179864693,41.79383249451656],[-87.68229218877616,41.79382795383125],[-87.68256740131126,41.793824831997],[-87.68269686993916,41.793823363055516],[-87.68290823303575,41.793820937506545],[-87.6830778162195,41.793819592342274],[-87.68327497065061,41.79382970941129],[-87.68347802420969,41.79385310701033],[-87.68357902798567,41.79386474522433],[-87.68367408571962,41.793875162270446],[-87.68374733663539,41.79388068087177],[-87.68386243105368,41.793886051799795],[-87.68404176962778,41.79387658348722],[-87.68404268054476,41.79391698865868],[-87.68405023642914,41.794252103597685],[-87.68406928566021,41.795017153758465],[-87.68407219623656,41.79514659213513],[-87.684073430728,41.795201485665984],[-87.68407430745943,41.79524048446242],[-87.6840747244474,41.795259013497216],[-87.68408006854038,41.795496668992634],[-87.68410599901063,41.79656104969967],[-87.68412481642184,41.79733463296634],[-87.68412900185245,41.79751019127183],[-87.68413357691685,41.79770208740672],[-87.68414895492452,41.79827507128928],[-87.68416225056508,41.79877092894281],[-87.68416349612191,41.79881725100197],[-87.68416734182539,41.798960313363864],[-87.68416955430956,41.79904295600514],[-87.68417780154957,41.79933411632384],[-87.68418185760413,41.799477308568214],[-87.68418985146961,41.79980085053678],[-87.68420053882878,41.80023315545577],[-87.68421165307544,41.80068589531996],[-87.68421664113747,41.80092571903024],[-87.68422403398748,41.80114618057829],[-87.68422853786456,41.801280484925755],[-87.68423404015603,41.801571080761626],[-87.68424807655668,41.801982774867966],[-87.68425717712216,41.80231666861937],[-87.68426495916142,41.80263941283752],[-87.68426878487138,41.80283820286829],[-87.68427197114165,41.80296378279033],[-87.68427560734216,41.80310707136429],[-87.68427992325505,41.80332990406478],[-87.6842920168531,41.80367616364434],[-87.68431985559204,41.80397767058671],[-87.68434265914135,41.80421128296018],[-87.6843521339386,41.80432283667622],[-87.6843665211736,41.80449925070989],[-87.68436794530248,41.80455464797348],[-87.68436794617568,41.80455467048153],[-87.68436992933609,41.804631832785184],[-87.6843722576407,41.80472240642289],[-87.68375270397809,41.80474110754387],[-87.68376082573472,41.80479708193673],[-87.68338096076825,41.80480047673271],[-87.68309829581817,41.80480296604244],[-87.68284589318681,41.80480518694102],[-87.6825783772554,41.80480756865442],[-87.68233932449941,41.80480983662327],[-87.68222381208214,41.80481115782958],[-87.68214516844527,41.8048154324827],[-87.68204112643993,41.8048249962133],[-87.68198955794058,41.80483214082857],[-87.68195967223181,41.80483874974497],[-87.6819415289893,41.80484473916991],[-87.68192243787772,41.80485747415014],[-87.67970038789267,41.80485309916239],[-87.67940651094236,41.804852517186696],[-87.67939646957966,41.804667776452554],[-87.67939564186399,41.80461391521118],[-87.67939215536549,41.80446090165294],[-87.67938765785762,41.80436208190265],[-87.6793891247109,41.8042629530691],[-87.67939654745472,41.80416420117425],[-87.67940946798683,41.804065823609186],[-87.67942673961254,41.803900235898034],[-87.67944311170349,41.80373292788266],[-87.67947118526567,41.80345179875042],[-87.67951424468158,41.80300403973072],[-87.67951424798939,41.80300400297617],[-87.67952594345851,41.80289090465957],[-87.67953308684059,41.80281959396834],[-87.6795438909108,41.8026587718877],[-87.67954873532426,41.80249791588329],[-87.67954807670763,41.80238230922169],[-87.67954235963415,41.802132889975965],[-87.67954100400196,41.802085886414815],[-87.67953333565963,41.80175790094654],[-87.67951949838334,41.80127002584523],[-87.67951653277301,41.80116951193667],[-87.67951413029579,41.80107652331239],[-87.67950922600326,41.80083739942419],[-87.67949524978226,41.800273026815475],[-87.679484568409,41.7998355957678],[-87.67948083662687,41.79970659290161],[-87.67947814955033,41.7996101849019],[-87.67945843826848,41.79893360635167],[-87.6794571276968,41.798882143832415],[-87.67945510954128,41.79881009487681],[-87.67943564490503,41.79797400635005],[-87.6794347927621,41.79792254615714],[-87.67941369682366,41.7970665521451],[-87.67941310818922,41.79703430316709],[-87.67940072997935,41.79689907692394],[-87.67938238651371,41.796764502515344],[-87.67935896909304,41.79663298653687],[-87.6793511226216,41.796593149727315],[-87.67925310145056,41.79608935799883],[-87.67916847131254,41.79571175002657],[-87.67911364571107,41.795468012504365],[-87.67897222025928,41.7948603767155],[-87.67895554850563,41.794786886633176],[-87.67895544320729,41.79478642279782],[-87.67888140487857,41.79445987990355],[-87.67887310370388,41.79441969714654],[-87.67884880314517,41.79428508893436],[-87.67883046812645,41.79414982808177],[-87.67881809511236,41.7940142584305],[-87.67881500395127,41.793867854798606],[-87.67891012039159,41.793866728436]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3192507.95159","perimeter":"0.0","tract_cent":"1161942.7010473","census_t_1":"17031630600","tract_numa":"27","tract_comm":"63","objectid":"758","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1866843.74927125","census_tra":"630600","tract_ce_3":"41.7902849","tract_crea":"","tract_ce_2":"-87.68173799","shape_len":"8058.86986795"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67881500193621,41.79386776450008],[-87.67881162415942,41.793704117151314],[-87.67880790043529,41.7935294906789],[-87.67880636527717,41.793500411700194],[-87.67880652518328,41.79350040986698],[-87.6788496093055,41.7934999821612],[-87.67895067939905,41.793498978049314],[-87.67926425781428,41.79349567349275],[-87.6793006357395,41.79349529031259],[-87.67937232191885,41.793494484348116],[-87.679482216998,41.79206505186261],[-87.67948305409513,41.7920541640003],[-87.67966347808276,41.789707193086784],[-87.6796429366745,41.78835659888577],[-87.6796718667745,41.78655724616565],[-87.67977375222405,41.78655611834222],[-87.67991150364105,41.78655444469325],[-87.67996283674286,41.78655382116023],[-87.68006368408402,41.78655266137918],[-87.68011614923155,41.786552170177956],[-87.68021358104164,41.78655125841269],[-87.68021372478937,41.78655125730892],[-87.6803035129084,41.78655041644816],[-87.68047302442154,41.786548829627435],[-87.68078080634278,41.78654594787917],[-87.68110803631909,41.78654136394185],[-87.68141227285787,41.78653710140026],[-87.68224832824615,41.78652622775867],[-87.68243755389763,41.78652406287065],[-87.68310222855656,41.78651645564183],[-87.68368560195643,41.78650977564587],[-87.6838306050637,41.78652872103305],[-87.68384496895457,41.787020456152085],[-87.6838840389309,41.78835791606111],[-87.68393823919332,41.79021325060796],[-87.68397065214357,41.79132275815975],[-87.68398093942682,41.791674880775254],[-87.68398599792876,41.791850461205826],[-87.68398764733753,41.79190768920991],[-87.68399094903666,41.79203468607994],[-87.68399261044782,41.792098609938215],[-87.68399730461472,41.792279156006124],[-87.68400228157665,41.79247059794042],[-87.68402223590788,41.793164054998684],[-87.68402835377911,41.793360842637],[-87.6840305250518,41.79343068165469],[-87.68403485979758,41.79357011622506],[-87.68403651550867,41.793643549537855],[-87.68404176962778,41.79387658348722],[-87.68386243105368,41.793886051799795],[-87.68374733663539,41.79388068087177],[-87.68367408571962,41.793875162270446],[-87.68357902798567,41.79386474522433],[-87.68347802420969,41.79385310701033],[-87.68327497065061,41.79382970941129],[-87.6830778162195,41.793819592342274],[-87.68290823303575,41.793820937506545],[-87.68269686993916,41.793823363055516],[-87.68256740131126,41.793824831997],[-87.68229218877616,41.79382795383125],[-87.68189179864693,41.79383249451656],[-87.68154931887851,41.7938364521082],[-87.68143274439448,41.79383765977137],[-87.68128745593772,41.79383916483052],[-87.68101825796496,41.793841945076665],[-87.67997913717184,41.793853932088595],[-87.67978147221332,41.793856211458895],[-87.67969797494774,41.79385721941558],[-87.6795613568282,41.793858855050175],[-87.67943429606284,41.793860382737115],[-87.67891012039159,41.793866728436],[-87.67881500395127,41.793867854798606],[-87.67881500193621,41.79386776450008]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3984272.70736","perimeter":"0.0","tract_cent":"1167007.10058858","census_t_1":"17031590100","tract_numa":"8","tract_comm":"59","objectid":"763","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1882669.16504426","census_tra":"590100","tract_ce_3":"41.83360476","tract_crea":"","tract_ce_2":"-87.66271533","shape_len":"9239.41051446"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66516515802633,41.83050625514862],[-87.66556825195282,41.83050135443695],[-87.66557888396179,41.83093528510624],[-87.66558378091071,41.83113490421622],[-87.66558922155635,41.83174117241188],[-87.66559824874291,41.832099700660265],[-87.66560431640454,41.83234068868854],[-87.6656162360105,41.83281359694911],[-87.66562600123862,41.83315748299039],[-87.66562747830505,41.83326070347313],[-87.66565278952412,41.83418506187863],[-87.66566849293288,41.83475862561084],[-87.66567838942859,41.8351198286178],[-87.66568823335588,41.835495877776744],[-87.66569028819171,41.8355743757367],[-87.66570352801632,41.83607961720785],[-87.66571418624706,41.83648654457565],[-87.66572734755177,41.8369890228566],[-87.6657288037901,41.83704462053674],[-87.66573836143685,41.83752152212585],[-87.66573982164111,41.83759439387629],[-87.6657406167847,41.837634052033884],[-87.66574161471532,41.837683857741865],[-87.6657435929514,41.83778255246949],[-87.66574627536082,41.83791638309658],[-87.66575608707606,41.838081795819605],[-87.6657643285198,41.83822073179776],[-87.66539165396694,41.83842648357482],[-87.6650898051662,41.83860782516615],[-87.66461627785279,41.838874501116265],[-87.6642851178734,41.839065032247895],[-87.66413109818578,41.83883082226838],[-87.66404067470866,41.83869331926528],[-87.66403066940705,41.838678368386944],[-87.66388575187626,41.83846181666178],[-87.66346551323149,41.83784343494187],[-87.66343971827025,41.83780547730856],[-87.6633606109525,41.83763553008669],[-87.6631733548485,41.83698069878505],[-87.66314322142904,41.83693081882717],[-87.66307794094101,41.836822758413405],[-87.66248658025755,41.83614133519198],[-87.6619899180006,41.83569051422976],[-87.66185809798635,41.83550960264486],[-87.66167098705928,41.835252805322185],[-87.66128690111876,41.83486315059784],[-87.66089565655655,41.834656494134364],[-87.66035395483605,41.83437036128594],[-87.66027169351904,41.834282359951125],[-87.66026986751343,41.834280406035845],[-87.65918505537346,41.83311985979353],[-87.65865855104472,41.83255658085666],[-87.65846278935184,41.83234056977656],[-87.6576784611287,41.83147509463641],[-87.65742970530492,41.8311973382147],[-87.65739735919026,41.831084111475924],[-87.65736590123237,41.83088299105074],[-87.65738534546037,41.83059979273721],[-87.65853894618867,41.83058815625007],[-87.65886786630657,41.83058395277949],[-87.65927931686679,41.830578693733905],[-87.65930267519079,41.83057839529255],[-87.65932603425134,41.83057809657633],[-87.6601220355925,41.83056791744721],[-87.6606597408803,41.8305610632172],[-87.66093855544398,41.830557783212875],[-87.66115727007445,41.83055520957737],[-87.6613059881987,41.830553469990015],[-87.66213469643174,41.830543773703404],[-87.66236698969118,41.83054110394732],[-87.66320157397328,41.83053150975436],[-87.66336697632501,41.83052960769911],[-87.66365295935432,41.8305263181853],[-87.66429966607741,41.83051925936958],[-87.66453643331312,41.83051667412856],[-87.66489953124244,41.83051065729929],[-87.66516515802633,41.83050625514862]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3520954.84814","perimeter":"0.0","tract_cent":"1167163.05509768","census_t_1":"17031611200","tract_numa":"19","tract_comm":"61","objectid":"760","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872244.3847213","census_tra":"611200","tract_ce_3":"41.80499471","tract_crea":"","tract_ce_2":"-87.66244175","shape_len":"7963.31013165"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66454475629799,41.80132174777691],[-87.66477647751485,41.80131821562656],[-87.66477913942185,41.80142879441388],[-87.66478425291007,41.80166016717193],[-87.66479019467984,41.80192123787372],[-87.66479491068009,41.80213087358487],[-87.66479922263923,41.802301757675934],[-87.6648046328884,41.80247989305766],[-87.66481218001547,41.80272763585507],[-87.66482071675229,41.803007272953046],[-87.66482471040489,41.803140407846925],[-87.66482796169444,41.803248811892324],[-87.66483390142025,41.803496023887995],[-87.66484368556272,41.803839115988985],[-87.66485113220804,41.8041248115491],[-87.66485830623714,41.80439785437314],[-87.66486092462567,41.80464351019371],[-87.66486109292575,41.804691925775536],[-87.66486131122493,41.804754937928585],[-87.66486138734207,41.804776972201964],[-87.66486169525227,41.80486580142225],[-87.66486706275477,41.80496360561585],[-87.66487714462416,41.80514731730791],[-87.66488424534695,41.80542044198439],[-87.66489180783728,41.805710474101616],[-87.66489700351914,41.80591500810261],[-87.66490865187144,41.80628346805177],[-87.66491606035098,41.80661518484047],[-87.66492102976432,41.80678242794337],[-87.66492421211247,41.80688955048757],[-87.66493133187365,41.80711503449547],[-87.66494147180492,41.80743452764207],[-87.66495092972686,41.807742079186745],[-87.66495894609159,41.80805066515293],[-87.66496885712871,41.80843105246686],[-87.66497251832394,41.80860444112622],[-87.664650424251,41.80860906588994],[-87.66434502591903,41.80861233855426],[-87.66423420374517,41.80861346891451],[-87.6639345894314,41.808618117502526],[-87.66375442875879,41.80862051485597],[-87.6634441092214,41.80862464366437],[-87.66304828138195,41.80862941488404],[-87.6627637072255,41.80863395607808],[-87.66275996684507,41.80863400230132],[-87.66253350621659,41.808636796503485],[-87.66215679425109,41.80864144356327],[-87.66179591392938,41.80864701839682],[-87.6615266199845,41.8086495053156],[-87.66131862886012,41.80865309779317],[-87.6611676407652,41.808655705109445],[-87.66089432971538,41.808659966188664],[-87.66063306397346,41.80866282732152],[-87.66045961634299,41.808664725331106],[-87.66033250974286,41.808666116311734],[-87.66010587278643,41.80866874086063],[-87.66009673869361,41.80831848909697],[-87.66009433894922,41.808225422026105],[-87.66009217366724,41.80814145635666],[-87.66008597549224,41.80789616382071],[-87.66007822874633,41.80759205229625],[-87.66007163782378,41.807338771581946],[-87.66006361154552,41.80702637066534],[-87.6600598057442,41.80689237263679],[-87.66005834157366,41.806846580966045],[-87.66004974663359,41.80657795645661],[-87.66004386700122,41.80633379087451],[-87.66003513949995,41.80600080369302],[-87.6600302195694,41.805808647817145],[-87.66002709549608,41.805682063311565],[-87.6600234863815,41.805537418597034],[-87.66001908831079,41.80535841086644],[-87.66001395551022,41.80514805914269],[-87.66001226008208,41.805028937010626],[-87.66001087008713,41.80493129779568],[-87.66000789384333,41.80484086838543],[-87.66000502685898,41.80475373631828],[-87.66000501682201,41.804753433839736],[-87.66000374691525,41.80471484208685],[-87.66000319849473,41.80469824612904],[-87.65999887734586,41.80456749233159],[-87.65999647718137,41.80449487283132],[-87.65999123796269,41.80431918071687],[-87.65998736639412,41.80419152152692],[-87.65998521383169,41.804098233824654],[-87.65998307733872,41.804005653690645],[-87.65997799646718,41.803776311522476],[-87.65997512645023,41.80365952554386],[-87.65997408717251,41.80361723035594],[-87.65996875826139,41.80342559368956],[-87.65996562350932,41.80330463457007],[-87.65996353078934,41.80320560067915],[-87.65996062029612,41.803067883543804],[-87.65995424562442,41.80282547124868],[-87.6599475676147,41.8025770746313],[-87.65994251941942,41.80237265094848],[-87.65993688171332,41.80215447495118],[-87.65993046245586,41.80190586027857],[-87.6599287272265,41.80183714234529],[-87.65992564029065,41.80171488487793],[-87.65991902249029,41.80152373428755],[-87.65991844005372,41.80138243355406],[-87.66010488003698,41.80138168192022],[-87.66042989859372,41.80137499665533],[-87.66071023730453,41.8013690914177],[-87.66097238795287,41.80136645505785],[-87.6611343954613,41.801366583735636],[-87.66124381932231,41.801367127117075],[-87.66168308554143,41.80136021176348],[-87.66192896384341,41.80135640753283],[-87.66220048245549,41.801352231164365],[-87.6623470049418,41.80135018612392],[-87.66262462763329,41.80134631087669],[-87.66292107932742,41.80134271746254],[-87.66318331691835,41.80133875903382],[-87.66340392779465,41.801334721909654],[-87.66355916852055,41.80133354890186],[-87.66389182888031,41.80133103512651],[-87.66415517122876,41.801327834771264],[-87.6642398537257,41.801326805514755],[-87.66454475629799,41.80132174777691]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8188697.06608","perimeter":"0.0","tract_cent":"1170034.7718791","census_t_1":"17031601400","tract_numa":"33","tract_comm":"60","objectid":"761","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880307.05402698","census_tra":"601400","tract_ce_3":"41.8270575","tract_crea":"","tract_ce_2":"-87.65167496","shape_len":"11291.4058254"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65598015241449,41.82331602672419],[-87.65611232130217,41.82331366632464],[-87.65713749345076,41.82403664276522],[-87.65734890512341,41.82607425675273],[-87.65734547233154,41.826454883010335],[-87.65734507380888,41.82648729049419],[-87.65737421716683,41.82669688383326],[-87.65740661923616,41.82692991209084],[-87.65752790458781,41.82780215803308],[-87.657545158377,41.82800088729429],[-87.65756468942011,41.82822584265492],[-87.65756946180193,41.82863019515526],[-87.65756978491798,41.82865755988834],[-87.65757093719982,41.82875519403729],[-87.65751649445782,41.82932658725182],[-87.6574055502356,41.83030552850388],[-87.65738534546037,41.83059979273721],[-87.65729288060135,41.830600724969024],[-87.65634507052954,41.830611498357285],[-87.65572758603237,41.83062025339763],[-87.65506830741833,41.830629597524805],[-87.65402682227436,41.83064369544311],[-87.65339161152535,41.83065302326933],[-87.65289189048936,41.83066035883838],[-87.65176415717623,41.830676301802896],[-87.6516519362325,41.830677705023284],[-87.65145911085108,41.83067823447873],[-87.65125025578988,41.83068171455916],[-87.65096790671484,41.83068541300213],[-87.65066213785482,41.83068941722805],[-87.65029754123186,41.83069555109741],[-87.65000646747549,41.83069726387829],[-87.64976002982111,41.83070164280725],[-87.64949131965689,41.8307060258203],[-87.64935190476376,41.83070789606834],[-87.64916246991311,41.83071043694022],[-87.64854055077289,41.83071877675272],[-87.64790809958093,41.83072725479632],[-87.64771448108493,41.83072984954429],[-87.64727117039303,41.83073578905439],[-87.64693326549589,41.830739396282276],[-87.64676771828887,41.83074168132632],[-87.64660169876623,41.83074397291279],[-87.64633875690396,41.830747614641716],[-87.64620338503221,41.83074924207384],[-87.64610614504136,41.830750410884654],[-87.64610268515627,41.83065756259719],[-87.64609782585879,41.83039833746659],[-87.64609347680167,41.83016691480778],[-87.64608984527665,41.82997125424065],[-87.64608335474706,41.82970979646199],[-87.6460798700961,41.82956946119832],[-87.64607509251476,41.82938493548134],[-87.64607004381891,41.82918805893001],[-87.64606183466367,41.828923763961264],[-87.64605754357432,41.82878559209907],[-87.64605506684964,41.82867051011164],[-87.64605166161084,41.82851222778231],[-87.64604806993665,41.82831632041273],[-87.64604334651095,41.82806156914669],[-87.64603889166743,41.82781944311239],[-87.64603383477095,41.82763247354237],[-87.64603121377125,41.82753558489627],[-87.6460278875704,41.827366353375524],[-87.64602593423695,41.82726765777694],[-87.64602135991704,41.82710088889638],[-87.64601738194516,41.82695585736727],[-87.64601265308265,41.82671877937619],[-87.64600896525772,41.826598146401686],[-87.64600564078924,41.826489371391155],[-87.64600155612167,41.8263086642547],[-87.64599868463287,41.82618103854362],[-87.6459982989801,41.82616385710908],[-87.64599275868638,41.82591689458458],[-87.64598837103853,41.82572342476298],[-87.64598399271475,41.825557589512606],[-87.64598038056094,41.82542076632305],[-87.64597764817856,41.825277636848526],[-87.64597414929833,41.82509438073355],[-87.64597070669699,41.82492915480372],[-87.64596670956416,41.82473681243625],[-87.64596102465583,41.824517072145326],[-87.64595788458193,41.8243957017231],[-87.64595466748796,41.824257453574674],[-87.64595184704464,41.824136935783486],[-87.64594966534867,41.82398074629594],[-87.64594637565618,41.82382520879847],[-87.645943207754,41.82369258668538],[-87.64592818941182,41.823459057893274],[-87.64634715489018,41.82345191584836],[-87.64661298734387,41.823449608581996],[-87.64694245072401,41.8234461441639],[-87.64724970768503,41.82344013120557],[-87.64766449954142,41.823433990996996],[-87.64807444189266,41.82342853386953],[-87.64834113590224,41.82342503206401],[-87.64854008393269,41.823422419423025],[-87.64900642294619,41.82341630724088],[-87.64947261777965,41.823409945322325],[-87.64987544447241,41.823404247302705],[-87.65019769140598,41.82339966034122],[-87.65043972414989,41.82339624217494],[-87.65078655219989,41.82339252638165],[-87.65115471773039,41.82338858060863],[-87.65134787441269,41.82338588562356],[-87.65160531861346,41.82338230951803],[-87.65184155380022,41.82337902166328],[-87.652094888271,41.82337549938656],[-87.65271303345102,41.823366869490144],[-87.65321973987672,41.82336829314357],[-87.65333000485629,41.8233686026631],[-87.65395340680523,41.82335512393377],[-87.65453762659995,41.82334248960029],[-87.65472613561525,41.82333841210935],[-87.65598015241449,41.82331602672419]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5304262.96052","perimeter":"0.0","tract_cent":"1159061.8258956","census_t_1":"17031580600","tract_numa":"21","tract_comm":"58","objectid":"762","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1876702.44188597","census_tra":"580600","tract_ce_3":"41.81739787","tract_crea":"","tract_ce_2":"-87.69203173","shape_len":"10602.0401984"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69399042859285,41.81191808615671],[-87.69431482907501,41.81191318258148],[-87.69432136269653,41.812122126082286],[-87.69432942063573,41.81245181370714],[-87.69433944084874,41.8127387563644],[-87.69434584191524,41.81292178048188],[-87.69435526174932,41.81321042122769],[-87.69436116676987,41.813413503246224],[-87.69436731098602,41.81362942981094],[-87.69437117050582,41.813735787676485],[-87.69437767746312,41.813915111965166],[-87.69438237870713,41.81410641430869],[-87.69439016106506,41.81439378351685],[-87.69439654088744,41.8146082020014],[-87.69440622582917,41.814884933968585],[-87.69441395783942,41.81513346254565],[-87.69441603992242,41.81520038839837],[-87.69442216477678,41.8154404369862],[-87.69442687961349,41.81554372625791],[-87.69443150351115,41.81564501993208],[-87.69443776003676,41.81589028336013],[-87.6944414088262,41.816013878462385],[-87.6944461856288,41.81617568017478],[-87.69445770353026,41.81654858172646],[-87.69446394969567,41.81676168213187],[-87.69446845298454,41.816984048491435],[-87.69447715221575,41.817267772489046],[-87.6944821550002,41.81735993610915],[-87.69448853207041,41.81747741646182],[-87.69449436149092,41.81764756658652],[-87.69450459587199,41.81794663959263],[-87.69451275829242,41.81820319276932],[-87.69451631458442,41.818319432371176],[-87.69452089922825,41.818469295621206],[-87.69452755101342,41.81869329298472],[-87.6945345789654,41.81893850568404],[-87.69454100663127,41.819162913423774],[-87.6945440663726,41.81928098890902],[-87.69454737052993,41.819408506608276],[-87.69454780206415,41.81942562423225],[-87.69455223047548,41.81960063293006],[-87.69455305748973,41.819633623721764],[-87.69456640957351,41.82002273415068],[-87.69457006032715,41.820129115430774],[-87.69457490524468,41.8202703073464],[-87.69458111197453,41.8204579405166],[-87.69458780259828,41.820660011258305],[-87.69458827893767,41.82067439390863],[-87.69459406380918,41.820849071741264],[-87.69460080087046,41.821032042299045],[-87.69460582191924,41.8211684060705],[-87.69461050365324,41.82130273691398],[-87.694617449226,41.82150091217237],[-87.6946227928693,41.821653551000125],[-87.69462962672715,41.82189357800667],[-87.69463410608482,41.82205090253171],[-87.69464028597551,41.82222646068513],[-87.69464488325511,41.822339472687226],[-87.69464574068908,41.82236054881623],[-87.69464742380127,41.82253451744563],[-87.6946272319414,41.82278623705652],[-87.69426423747534,41.82279446462886],[-87.69405542842205,41.82279983407214],[-87.69381667387562,41.822805998833815],[-87.69376603118847,41.82280730662537],[-87.69351730891124,41.82281231563346],[-87.69325931129485,41.82281664123438],[-87.69293871324695,41.82282204428626],[-87.6927659932081,41.82282493279874],[-87.69267289941291,41.82282648964912],[-87.6924308640059,41.8228305184931],[-87.69215554383666,41.82283536763582],[-87.69170915396181,41.822843229163695],[-87.6915480990376,41.822846316845514],[-87.69141984889232,41.82284877532763],[-87.69110725356491,41.82285364169147],[-87.69100652778413,41.82285520144646],[-87.69085725820554,41.82285751266824],[-87.69059113309092,41.82286165316905],[-87.68992837940601,41.8228719618582],[-87.68972705468512,41.822883029809304],[-87.68972819824243,41.822654098193006],[-87.6897244010744,41.822491067321586],[-87.689722996837,41.82243137094605],[-87.68972110992304,41.82235114551911],[-87.6897198721414,41.82229853085064],[-87.68971658612703,41.82215773117891],[-87.68971049304659,41.82197671654916],[-87.68970652007637,41.821858686105564],[-87.68970246723067,41.82172112036971],[-87.68969868599048,41.82158588878559],[-87.68969389884352,41.82141182007839],[-87.68968931038853,41.82124722022628],[-87.68968280661616,41.82106696754605],[-87.68967707663693,41.82090817887513],[-87.689672009126,41.82070353735478],[-87.6896681518803,41.82054648833511],[-87.68966397773238,41.82037719806908],[-87.68965989381852,41.820213479181916],[-87.68965567493197,41.820074265910165],[-87.68965093378846,41.81992130088985],[-87.68964628421143,41.81977014760012],[-87.68964375926484,41.8196226835412],[-87.68964291257004,41.81957322695549],[-87.6896407156236,41.81947631428198],[-87.68963489582289,41.81927350715862],[-87.68963374608718,41.81923354049728],[-87.6896320963562,41.81917620663051],[-87.68962539831502,41.81894339991673],[-87.68962046926863,41.81877254113506],[-87.68961522194138,41.818571191660574],[-87.68961241460299,41.81846321611758],[-87.68960570442923,41.8182174557749],[-87.68959758010469,41.817918723516755],[-87.68959746789636,41.817914579305445],[-87.68959208526114,41.81771649473068],[-87.68958004372458,41.81743597538564],[-87.68957286976854,41.81726885018836],[-87.68956438029876,41.817054255076776],[-87.68956033240019,41.81682107865403],[-87.68955481386921,41.81661753216817],[-87.68954691145335,41.81631869102283],[-87.68954104268403,41.816073237446716],[-87.68953650443075,41.815881634033204],[-87.68952749012408,41.81562122954964],[-87.68952546091589,41.815562608099555],[-87.68952318900449,41.815496976404496],[-87.68951411358766,41.81520279417111],[-87.68951266545663,41.81515585863678],[-87.68950206488414,41.81477116128863],[-87.6894939328508,41.81447330669812],[-87.68948617384525,41.81418582755298],[-87.6894810187449,41.81399364431948],[-87.68947496455905,41.81380464845855],[-87.68947118147429,41.81368655935527],[-87.68946405758653,41.81343827229724],[-87.68945604844993,41.81316113735199],[-87.68944824472361,41.81284152238798],[-87.68944514798633,41.81271142622766],[-87.68943739741786,41.81240852391908],[-87.68942675879852,41.81199249748196],[-87.68970177083078,41.81198639894366],[-87.69003795806125,41.811981036984456],[-87.69020094562855,41.81197843723103],[-87.69038336581929,41.81197473825913],[-87.69064916659877,41.81197086611595],[-87.6909740317398,41.81196613264726],[-87.69125889883551,41.811961616797646],[-87.69133749764386,41.81196037084342],[-87.69176664850079,41.81195217560445],[-87.69187115855252,41.8119505031905],[-87.6922471860227,41.81194448510347],[-87.69247801316648,41.81194047473275],[-87.69264173185039,41.8119376302558],[-87.69279222735597,41.811935011760426],[-87.69309383439271,41.81193038382281],[-87.69324612594635,41.81192804670117],[-87.69370704562964,41.81192212472189],[-87.69399042859285,41.81191808615671]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5024781.59525","perimeter":"0.0","tract_cent":"1151713.83371752","census_t_1":"17031570400","tract_numa":"15","tract_comm":"57","objectid":"765","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872125.08578514","census_tra":"570400","tract_ce_3":"41.80498428","tract_crea":"","tract_ce_2":"-87.71910651","shape_len":"9493.13691645"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72296659804687,41.800553077543775],[-87.72337294939526,41.80054564433583],[-87.72337744548534,41.800751188082906],[-87.72338230518137,41.800896194526295],[-87.72338738802223,41.801048611723154],[-87.72339351451437,41.80123020621748],[-87.7233953670839,41.80130557414711],[-87.72340039150929,41.801498963210854],[-87.72340602197666,41.80171743825778],[-87.72340964829968,41.80185711421313],[-87.7234243120261,41.802317442793296],[-87.72342622567355,41.802377519050765],[-87.72343316279415,41.80259528721227],[-87.72343927046894,41.80284463795918],[-87.72344207909255,41.802963419771906],[-87.72344500339959,41.80308709827542],[-87.7234511929956,41.80329687712001],[-87.72345573459737,41.80344451632178],[-87.72345979917574,41.80359218042993],[-87.72346429360287,41.8037680034529],[-87.72347199253785,41.80396173567059],[-87.72347971986389,41.80420743819632],[-87.72348399774897,41.80434344706818],[-87.72348735220402,41.804554363139225],[-87.7234915029172,41.804720030180846],[-87.72349754792617,41.80491800749985],[-87.72350188210655,41.80507206718263],[-87.72350713802787,41.80529520538524],[-87.72351272845697,41.805514091714684],[-87.72352172460725,41.805779923369336],[-87.72352895538019,41.80603911243144],[-87.72328845728745,41.806042053730906],[-87.72305287048607,41.80604587930527],[-87.72291697713247,41.80604809667224],[-87.7227157452499,41.80605100337435],[-87.722527790505,41.80605241909927],[-87.72230431967775,41.806054932126024],[-87.72230508907963,41.80614388146992],[-87.72231005101371,41.80626041477629],[-87.722312076044,41.806307972181145],[-87.72231413797584,41.80637260690928],[-87.72231688041576,41.80645857657175],[-87.72231953477493,41.80656910298456],[-87.72232255860465,41.80668706836835],[-87.72232543069484,41.80679784292031],[-87.72232880375621,41.80692151826601],[-87.72233234422144,41.80705073795146],[-87.72233605391726,41.80718530988613],[-87.72233906858214,41.80728494339735],[-87.7223432501547,41.807408458375704],[-87.7223475132654,41.807538834492384],[-87.72235120232342,41.807667862854096],[-87.7223606286086,41.80788875091914],[-87.7221571256144,41.80788837638802],[-87.72193614319133,41.80789090549608],[-87.7217382675257,41.80789358437331],[-87.7214959315405,41.80789673935053],[-87.72140994619001,41.80789759859458],[-87.72121682450333,41.80790178381045],[-87.72112384646192,41.807902572921336],[-87.72098242238057,41.80790377277097],[-87.72078257520224,41.80790547899314],[-87.72051654030423,41.80790902721609],[-87.72035149471078,41.80791154952661],[-87.72011763292623,41.80791452754735],[-87.71988800890104,41.807916948953476],[-87.71969955242228,41.807918936132275],[-87.71954925509469,41.80792109698742],[-87.71927621204733,41.807924914171906],[-87.71907770244073,41.80792862049443],[-87.71882989313207,41.80793259158083],[-87.71867788063562,41.80793283045322],[-87.7185444107415,41.8079330399325],[-87.7182789577886,41.80793708005797],[-87.71806166670368,41.80794093049855],[-87.71793407342469,41.80794319108526],[-87.71769016316325,41.80794600083366],[-87.71745432858835,41.80794820461327],[-87.71733932704265,41.80794927928342],[-87.71716485549732,41.807951664139765],[-87.71684371991346,41.80795594479992],[-87.71664760425642,41.80795868554973],[-87.7163760728807,41.807961618375096],[-87.71623126967529,41.80796457471624],[-87.71607997293992,41.80796765679758],[-87.71464435256657,41.80798424827518],[-87.714187063731,41.807989099062155],[-87.7139273453464,41.80798874229295],[-87.71387381565924,41.80798866879242],[-87.71381854602603,41.80670058623192],[-87.71378946167857,41.8060227542058],[-87.71390471686352,41.80558044157109],[-87.71396605499855,41.80535265402055],[-87.71400447447968,41.80521942010107],[-87.71402847993018,41.805154715273375],[-87.71405477758175,41.8050900238948],[-87.71408427443485,41.805026378587414],[-87.71411651570256,41.80496343358734],[-87.71415103851623,41.804901530256146],[-87.71418876747963,41.80483998722984],[-87.71422877541345,41.804779828340294],[-87.71427152735964,41.80472037084363],[-87.7143189462642,41.80465236231764],[-87.71436910585467,41.804585397645084],[-87.71442109253006,41.80451912886461],[-87.71447536143314,41.804453901461265],[-87.71453191219032,41.80438971570425],[-87.71459074590314,41.80432657104729],[-87.71466249152701,41.80425560608267],[-87.714735605733,41.8041853342386],[-87.71481054036084,41.804116444565274],[-87.7148868435622,41.8040482485555],[-87.71496451534311,41.803980745383335],[-87.7150435494651,41.80391462190678],[-87.7151438854092,41.803826315702054],[-87.71522755230289,41.803755071494514],[-87.71530710060132,41.80373080093643],[-87.71555869866914,41.80364570958612],[-87.71568106628301,41.8036024590452],[-87.7158103692764,41.80355307074137],[-87.7160812827116,41.803448531241294],[-87.7163092252127,41.80335713374453],[-87.71662767286385,41.80323294972756],[-87.71704323106353,41.803069494000006],[-87.71736354979946,41.802941201269334],[-87.71773076710743,41.80279840871929],[-87.71806075256657,41.80266570692315],[-87.71830097423447,41.802570943060076],[-87.71863230607259,41.80244099083271],[-87.71902440198629,41.80228494886066],[-87.71942942086126,41.80211971264295],[-87.71968719632085,41.80201063272499],[-87.71989575786561,41.80191809790474],[-87.72015083348961,41.80180351340307],[-87.72035112020293,41.8017133348308],[-87.7206163090284,41.801595716481174],[-87.72091326590393,41.80146385883256],[-87.72130875485112,41.80128724496571],[-87.7215085436661,41.80120083482884],[-87.72172950427459,41.80110561868419],[-87.722035683411,41.80096763284694],[-87.72237180243398,41.80081471212779],[-87.72270696647281,41.80066555818731],[-87.72281377968879,41.80061775786462],[-87.72296659031414,41.80055308079584],[-87.72296659804687,41.800553077543775]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7119167.70142","perimeter":"0.0","tract_cent":"1143879.38140214","census_t_1":"17031560200","tract_numa":"30","tract_comm":"56","objectid":"766","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1874365.91823165","census_tra":"560200","tract_ce_3":"41.81128353","tract_crea":"","tract_ce_2":"-87.74778438","shape_len":"11118.9481183"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74345080714983,41.80759790494395],[-87.74356673769194,41.80759537171711],[-87.7437076152968,41.807592293801974],[-87.74378330058873,41.80759061059968],[-87.74379532791005,41.80759099917005],[-87.7439247316434,41.80759517836444],[-87.74405783685845,41.80759970324531],[-87.74437966118472,41.807601949205335],[-87.74450273075361,41.80760280789505],[-87.74476589189628,41.807600424317386],[-87.74494160321856,41.80759863506898],[-87.74521739368869,41.80759494300306],[-87.74532847266806,41.807593480872946],[-87.74560401570952,41.80759008793455],[-87.7457913470175,41.807587781086774],[-87.74608372116455,41.807583622903614],[-87.746280011318,41.807581607494456],[-87.74646046302698,41.80757885220563],[-87.74683288168688,41.80757352965001],[-87.7470036841448,41.8075710881336],[-87.7472552498241,41.80756916108048],[-87.74748353008617,41.80756656586631],[-87.74778187519563,41.80756320221171],[-87.74804891330629,41.80755624188199],[-87.74822132661389,41.80755174745117],[-87.7485127098331,41.807551612135505],[-87.74875672603717,41.807548957287786],[-87.74901630123,41.807545502894826],[-87.74927249967608,41.80754261445579],[-87.74944241431425,41.80754069911086],[-87.7496537158502,41.807537656523266],[-87.74984227115469,41.80753515663888],[-87.75007052054623,41.80753189749791],[-87.75032419783999,41.807527641802835],[-87.75049294533154,41.80752499119595],[-87.75065960618564,41.80752237311669],[-87.75091894237944,41.80752102631059],[-87.75115466626082,41.80751865363941],[-87.75132711545204,41.80751656366116],[-87.75149164371891,41.807514268646884],[-87.75172189274991,41.807509465831735],[-87.75190238471995,41.80750570053293],[-87.75211389671713,41.80750369731271],[-87.75236638376239,41.8075012423127],[-87.7525473421385,41.80749919353711],[-87.75293351786938,41.807493599123745],[-87.75297017530019,41.80897982171693],[-87.75297860415508,41.80932154685912],[-87.75298685224361,41.80965575365107],[-87.75302367317872,41.81114768323722],[-87.75306868444277,41.81297218670801],[-87.75306868468078,41.812972200979466],[-87.75307704035373,41.81331033708713],[-87.7530770241645,41.813310342493914],[-87.75307701827818,41.81331034438517],[-87.75307700797774,41.81331034762628],[-87.75244504039756,41.813508597845264],[-87.7523320521961,41.81354404209785],[-87.75200767523474,41.8136457981005],[-87.75176767009108,41.81372147857152],[-87.75152643922199,41.81379751786944],[-87.7508831285091,41.8140002948426],[-87.75076189719061,41.814038507538974],[-87.75055402843866,41.81410402802376],[-87.7504179356934,41.81414692381551],[-87.75011165591233,41.81424346048577],[-87.74997315330012,41.81428711493068],[-87.74995167502757,41.81429388466785],[-87.74934155234645,41.81448618523706],[-87.74926569416341,41.81451009741803],[-87.74926175444531,41.81451133948092],[-87.74900922195114,41.81459094230183],[-87.74847321986397,41.81475989835835],[-87.74837197174261,41.81479181307322],[-87.74836465695357,41.814794118890255],[-87.74836008628286,41.814795558041524],[-87.74834167336682,41.814801355420165],[-87.74824663801026,41.8148312785796],[-87.74817494511753,41.814853907720064],[-87.7481610162933,41.814858304179104],[-87.74814156795587,41.81486444285356],[-87.74788444776274,41.81494547676009],[-87.74771282436566,41.81499956520819],[-87.74713951590422,41.81518024515292],[-87.74691069328807,41.815252358288014],[-87.74641376749192,41.8154089619979],[-87.7462638609251,41.8154562035792],[-87.74599103774815,41.81554218049928],[-87.74582396727206,41.81559483026107],[-87.7451747376728,41.81579943761022],[-87.74511312936777,41.81581885351892],[-87.74494996567147,41.81587027418654],[-87.74473026694929,41.815939511429384],[-87.74465491931308,41.815963220094126],[-87.74465693902256,41.81607039239109],[-87.74466006602745,41.816236274628636],[-87.74466050006666,41.81625930191179],[-87.74466202718688,41.816340508045336],[-87.74451662354612,41.81639138764585],[-87.7443029686562,41.8164679004907],[-87.74420051490107,41.81650331773443],[-87.74404576497946,41.8165568132227],[-87.74381974487652,41.81662947462338],[-87.74362428859419,41.81667749353044],[-87.74347879895556,41.81672338007451],[-87.74344532627,41.816732102122465],[-87.74339075303752,41.81674632290671],[-87.74338454679652,41.81662811575753],[-87.74338260569967,41.816514127063755],[-87.74338225713883,41.816493667490235],[-87.7433819396441,41.81647501930094],[-87.74337736779401,41.81620659069409],[-87.74336016546626,41.81567344348453],[-87.7433605955775,41.81502468434942],[-87.74335766289008,41.81493105089788],[-87.74333779294216,41.81428870508304],[-87.74333775976952,41.81428748315878],[-87.74330938628111,41.813232411855786],[-87.74330569870308,41.813096380012766],[-87.74330310561731,41.813000731500686],[-87.74330071461692,41.81291252185142],[-87.74330071355769,41.812912477388615],[-87.74327427407681,41.81196345180231],[-87.74325448136126,41.81127411542128],[-87.74323405661396,41.81057526539677],[-87.74320918807001,41.80981885417106],[-87.74319692173506,41.80944577035188],[-87.74317976619955,41.80882856450984],[-87.74317975929418,41.80882831776327],[-87.74316052325412,41.808085776307244],[-87.74315377032418,41.807726203914626],[-87.74315183339885,41.80762308434993],[-87.74324127332707,41.80761555192726],[-87.74345080714983,41.80759790494395]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14136505.2753","perimeter":"0.0","tract_cent":"1181678.57197331","census_t_1":"17031440200","tract_numa":"51","tract_comm":"44","objectid":"776","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1850096.26595508","census_tra":"440200","tract_ce_3":"41.74389487","tract_crea":"","tract_ce_2":"-87.60988876","shape_len":"15970.1665752"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61394897057171,41.736511536269525],[-87.61452795921615,41.736503028008],[-87.61453232881152,41.73663044811857],[-87.61453642532682,41.736799084126424],[-87.61454037589448,41.73696132524962],[-87.61454408565456,41.73711384945764],[-87.61455339109524,41.737495091957925],[-87.61456240200133,41.737863325114155],[-87.61457584905115,41.73833088387267],[-87.61458864668568,41.73877586220081],[-87.61459489543525,41.73901723578362],[-87.6146018223181,41.73929637528138],[-87.61460893388835,41.73958849649864],[-87.61461574825024,41.73986790969532],[-87.61462473372694,41.74015536520615],[-87.61463838028345,41.74059191736365],[-87.61466126006579,41.741530339223],[-87.61467462378917,41.74198434027933],[-87.61468480558712,41.742330232478345],[-87.61469112631323,41.742545480558654],[-87.61470200387858,41.7429402896759],[-87.61471573708157,41.74346017467048],[-87.61473120865556,41.74368950334472],[-87.61474663511784,41.74381230242343],[-87.61477206695857,41.74401473961892],[-87.61477908462143,41.744197060318584],[-87.61478861357858,41.74448615021912],[-87.61479958184225,41.74484660078157],[-87.61480992912432,41.74520688360244],[-87.61481529818711,41.74551082129788],[-87.6148193474201,41.74563780697065],[-87.6148260225881,41.74584712065769],[-87.61483504064425,41.746195209838916],[-87.61484435828515,41.746555842345856],[-87.61485500491563,41.7469156049628],[-87.61486619311543,41.74729910917819],[-87.6148708081963,41.747463047116355],[-87.61487800507486,41.74771870487105],[-87.61488651393043,41.74802043945401],[-87.61489451137226,41.74832203360777],[-87.6149028777708,41.74863655544987],[-87.61490928681155,41.748880097886655],[-87.61491692190151,41.74915836314715],[-87.61492033180559,41.74929082099788],[-87.61492323821422,41.749403688504614],[-87.61493620010279,41.74982205629452],[-87.61494610994409,41.75015922820556],[-87.61495615876287,41.75048394237803],[-87.61495433877614,41.750523229144775],[-87.61495521661087,41.750661657554595],[-87.61495556707531,41.75073090015762],[-87.61495411737091,41.75096945170199],[-87.61495839313913,41.75111405846441],[-87.61479850559762,41.75111474998167],[-87.61440320734032,41.751126492666074],[-87.61405008662724,41.75113196632833],[-87.6137133209633,41.75113896700751],[-87.61341293646124,41.75114521055821],[-87.61300700035652,41.751151200800635],[-87.6126948608591,41.751155829771065],[-87.61256023760895,41.75115788357546],[-87.61250184561851,41.75115877414055],[-87.61218244423365,41.751163646780284],[-87.61189741800465,41.75116877582013],[-87.6118240353848,41.75117009579979],[-87.61154300396663,41.75117516424748],[-87.61129247417124,41.75117963196291],[-87.6110457109792,41.75118403169987],[-87.61068877779294,41.75118952485032],[-87.61060770037413,41.751190772603366],[-87.6103124925521,41.75119528205998],[-87.6100824770034,41.751199326818714],[-87.60984474382346,41.75120350666233],[-87.60945624130184,41.75121047285937],[-87.6091761993216,41.75121551403288],[-87.60887130668276,41.75122105152543],[-87.6086007925231,41.751225964485585],[-87.6083207087982,41.75123141468105],[-87.60797845744726,41.7512381185903],[-87.60765766234775,41.751243483857614],[-87.60741504589262,41.751247540835514],[-87.6070576299851,41.75125357016004],[-87.60679577168054,41.75125799378023],[-87.60662307382056,41.751260165397056],[-87.60644629616064,41.75126238805826],[-87.60610589661479,41.75126678740124],[-87.6058445092265,41.75127165558722],[-87.60582988423162,41.75127192825091],[-87.60552119690277,41.751282240292085],[-87.60521454792466,41.751286153182726],[-87.60522080118065,41.7512107140754],[-87.6052205341226,41.75113702787118],[-87.60522622156218,41.75082835735819],[-87.60521678583419,41.75046193292212],[-87.60521020849019,41.75019909710569],[-87.60520348516366,41.74994438321353],[-87.6051959678628,41.74968862144315],[-87.60518913229141,41.74945665626462],[-87.60518569067466,41.749339865186315],[-87.60517786090294,41.749072849765405],[-87.6051693401849,41.7487826680336],[-87.60515986495243,41.74845694150861],[-87.60515176753384,41.74817798662919],[-87.60514404722721,41.747910999289935],[-87.6051351383762,41.7476273286433],[-87.60512289291701,41.74723744050548],[-87.60511331988025,41.7468653070882],[-87.60510592278442,41.74657946836486],[-87.6050967000608,41.74623799073095],[-87.60508921406641,41.74596002784104],[-87.60508439021655,41.745797996025885],[-87.60507949268653,41.74563350374429],[-87.60507055451622,41.745331683062176],[-87.60506324836906,41.745063792866894],[-87.60505646003095,41.7448084196979],[-87.60504944157512,41.74454105244493],[-87.60504241504252,41.74427437120448],[-87.60503751148028,41.74408896229297],[-87.60503309302953,41.74396977023053],[-87.6050280476073,41.74383365444984],[-87.60502258686576,41.743635947502646],[-87.60501800165169,41.743467802271155],[-87.60501408085447,41.74331865184248],[-87.60500696040884,41.74302787494289],[-87.60500515771847,41.74295390447027],[-87.60497851128892,41.74211144844272],[-87.60496568873528,41.741706065201974],[-87.60494545610129,41.740921092929824],[-87.60493845807405,41.74064960888743],[-87.60492660802771,41.740269968094246],[-87.60489501312361,41.73925775007619],[-87.60487477596402,41.738462650389664],[-87.60486073346715,41.73791090079791],[-87.60484314643752,41.7373889315967],[-87.60482526624057,41.73673792308483],[-87.60482283313425,41.73664940836098],[-87.60549546155701,41.73664058454487],[-87.6058513515416,41.73663591419249],[-87.6064565263689,41.73662541887623],[-87.60696079540942,41.73661833641462],[-87.60705068508673,41.73661707363094],[-87.60725123954585,41.73661450898851],[-87.60810054332065,41.73660364398921],[-87.60852387358052,41.73659685553765],[-87.60882759184818,41.73659198433941],[-87.60905829527113,41.73658977953219],[-87.60931549224551,41.736587320777495],[-87.60967253316612,41.73658004752734],[-87.6101890918584,41.73656952298897],[-87.61068707473898,41.7365609649764],[-87.61128361857294,41.73655226897642],[-87.6116117366547,41.736547484193046],[-87.6120949859059,41.73653932205592],[-87.61243348393278,41.73653359758358],[-87.61290587576057,41.73652651789687],[-87.61326353176753,41.736521156437746],[-87.61394897057171,41.736511536269525]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14297329.7187","perimeter":"0.0","tract_cent":"1132013.19000796","census_t_1":"17031561000","tract_numa":"64","tract_comm":"56","objectid":"767","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1865986.51919514","census_tra":"561000","tract_ce_3":"41.78850256","tract_crea":"","tract_ce_2":"-87.79150346","shape_len":"16067.1551074"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78178966433859,41.79187766620451],[-87.781783811386,41.79171921798711],[-87.78177725357264,41.79154311261325],[-87.78177141822337,41.79138539747153],[-87.78176200980185,41.79113117579313],[-87.78175762733655,41.79101358919473],[-87.78175087036865,41.79083078676409],[-87.78174383517447,41.79064194554408],[-87.78173888874512,41.79051059029816],[-87.78173326127619,41.790361153465405],[-87.78172849675667,41.790236814051596],[-87.78172002247187,41.790014814822996],[-87.78171051891199,41.78976745336042],[-87.78170440767248,41.78960773350733],[-87.78169787510014,41.78943728143365],[-87.78169203134199,41.78928486267966],[-87.78168667147585,41.78914443881396],[-87.78167986803011,41.78896709724445],[-87.78167405913051,41.78881489818823],[-87.78167098148187,41.78867662609432],[-87.78167006536997,41.78863545315086],[-87.78166156066199,41.78848491900211],[-87.78165445507416,41.78827867852996],[-87.7816484828881,41.78810276795772],[-87.78164302297878,41.78794409401584],[-87.78163697962921,41.787767936104544],[-87.78163173089416,41.78761453221484],[-87.78162771610508,41.78749691986325],[-87.78162225651758,41.787338218462466],[-87.7816162117483,41.7871622800686],[-87.78160958399937,41.78696872048911],[-87.78160472617607,41.786843465875805],[-87.78160183614078,41.786768953414246],[-87.78159776195368,41.78665400272652],[-87.7815917229657,41.78646025385596],[-87.78158815682558,41.786345881904],[-87.78157812739136,41.786078703929064],[-87.7815715320016,41.78590281773619],[-87.78156622032498,41.785761104195416],[-87.78156572731635,41.7857479563726],[-87.78156096764657,41.78562106495526],[-87.78155114776916,41.78535940398767],[-87.78154506828511,41.785196061685966],[-87.78153919598994,41.78501099624578],[-87.78179858151118,41.78500792255882],[-87.78210207909761,41.78500276544647],[-87.78215492379627,41.785001871603235],[-87.78241298418207,41.78499750584023],[-87.78275912515068,41.784990917800016],[-87.78302802102624,41.78498579905346],[-87.78336890818092,41.78498059485216],[-87.7834439852689,41.7849794481644],[-87.78372485624774,41.784974644989916],[-87.78397887797706,41.78497036314077],[-87.78414335636143,41.78496759018274],[-87.7844014859642,41.784963719196405],[-87.78458808616082,41.78496093192458],[-87.7846659595456,41.78495976870523],[-87.78495397610963,41.784955463182044],[-87.78519897921916,41.78495117427968],[-87.78543562766193,41.784947031073465],[-87.78566904014838,41.78494358848945],[-87.7858019888344,41.78494162472145],[-87.78618955217938,41.78493585988313],[-87.7864200877616,41.78493193828511],[-87.78666852435806,41.78492771171664],[-87.78686387318186,41.784924689319794],[-87.78703098479681,41.784922081451896],[-87.78711995019502,41.78492069296335],[-87.78736066132429,41.784916952327535],[-87.78764164609957,41.784911291305356],[-87.78779714244818,41.784908158423995],[-87.78808398141805,41.784904305991205],[-87.78825178743378,41.78490204048467],[-87.7883095802704,41.784901260044336],[-87.78852685519094,41.784898283677826],[-87.78885960996205,41.78489238080343],[-87.78906274489333,41.78488877657103],[-87.78928101365248,41.78488533723029],[-87.78947137536971,41.784882339197466],[-87.78955432627964,41.784881032866636],[-87.78974901440971,41.78487806116383],[-87.79008175699796,41.784873142364],[-87.79023582436352,41.784870864426594],[-87.79048688230668,41.78486631542033],[-87.79069209938382,41.78486257873475],[-87.79075612983101,41.784861412686126],[-87.79102416690894,41.784856558492805],[-87.79130253750319,41.7848531635469],[-87.79145735389866,41.78485127527432],[-87.79164621156518,41.78484829618144],[-87.7919121534997,41.78484412708872],[-87.79222169694914,41.78483923545819],[-87.79234029229866,41.784837379011805],[-87.79252436086283,41.784834181900926],[-87.79266597577805,41.784831722158],[-87.79293547347969,41.78482755645313],[-87.79313437929372,41.78482442596115],[-87.79339195912979,41.78482039963665],[-87.79373113695003,41.78481604113694],[-87.79388143733397,41.78481410944994],[-87.79410223511292,41.784810727709285],[-87.79435269916205,41.7848068958027],[-87.79464581356785,41.78480238297488],[-87.79473585548186,41.78480113359471],[-87.79496539981072,41.7847979478997],[-87.79514101637746,41.78479551051788],[-87.79539280158983,41.78479161282747],[-87.79564400151115,41.78478754718793],[-87.79588904075098,41.78478356167593],[-87.79618586365868,41.78477840363577],[-87.79630309080437,41.784776366279885],[-87.79635440685566,41.784775474400824],[-87.79662862706131,41.78476775451751],[-87.79681284371216,41.78476284399868],[-87.79691421293495,41.78476014220969],[-87.79725093031082,41.78476352489809],[-87.7974419523495,41.7847604475811],[-87.79761815837021,41.7847576084942],[-87.79781326063315,41.784744440141736],[-87.79804194241459,41.78474092292071],[-87.79831829635233,41.78473672164681],[-87.7985463181172,41.78473320034793],[-87.79870052252294,41.78473059527746],[-87.79890166702376,41.784727197373414],[-87.79920669922316,41.78472233152214],[-87.79933361852942,41.784720303477634],[-87.79954194903948,41.78471697380443],[-87.79972116214947,41.784714101829174],[-87.79995794783402,41.78471044307395],[-87.80020459878537,41.78470663147359],[-87.800438597928,41.784702996942],[-87.80058785020324,41.78470067866804],[-87.80071887613543,41.78469864343774],[-87.80096079625572,41.78469487990694],[-87.80121615884292,41.784688433283385],[-87.80122571417076,41.784920754926496],[-87.80123368125881,41.785101312294294],[-87.8012419231566,41.78528859390952],[-87.80125170181837,41.78551614148295],[-87.80125818739522,41.78566746465054],[-87.80126625030945,41.78584088643988],[-87.80127293637933,41.785985706816206],[-87.80128144597252,41.786175981198525],[-87.80129124621735,41.78641873169192],[-87.80129261831014,41.786452881495045],[-87.80129334198638,41.786470904451086],[-87.80129544298426,41.78652319908076],[-87.8012999958788,41.78663577367296],[-87.80130052674214,41.786648911435364],[-87.80130794203222,41.78682090370776],[-87.80131654640388,41.78702204564077],[-87.80132546760967,41.7872290892717],[-87.80132882773903,41.7873091592647],[-87.80132975699968,41.787331279581764],[-87.80133503110335,41.78745611407504],[-87.80133930782708,41.787550880450596],[-87.80134358492184,41.78764564764945],[-87.80135248140971,41.78784687323292],[-87.80136035447539,41.788030009155776],[-87.80137292821524,41.788305391114655],[-87.8013729284889,41.788305402367534],[-87.80137947944473,41.7884488773456],[-87.80139046005641,41.78871743013442],[-87.80140117032867,41.789014302793234],[-87.8014159392295,41.789290282693266],[-87.80142944584743,41.789568287787255],[-87.80143723595872,41.78976594031641],[-87.80145026774703,41.79013241406049],[-87.80145026772207,41.79013241707909],[-87.8014502677062,41.79013241900003],[-87.80145728925586,41.790329903567034],[-87.80147066481625,41.790632633276964],[-87.8014853541121,41.790936193437936],[-87.8014994399877,41.791255008518945],[-87.80150777058724,41.79144503434846],[-87.80151529839313,41.79161675255733],[-87.80152796189223,41.7919391834819],[-87.801527961865,41.791939186774925],[-87.80074420620863,41.79195171652574],[-87.80047289233424,41.791950238838886],[-87.80025694362432,41.791955865273],[-87.79994717842406,41.79196393561388],[-87.79965631691518,41.79197155862409],[-87.79931608578406,41.79198048821978],[-87.79899378920659,41.79198971208724],[-87.79885656648663,41.79199363887763],[-87.79878848944789,41.79199559797406],[-87.79853642992015,41.792002657730535],[-87.7982762256598,41.79201017297283],[-87.79798293242816,41.79201912512384],[-87.7977251478656,41.79202810267425],[-87.79748670750543,41.79203640586526],[-87.79719342184045,41.79204442297538],[-87.79693307381206,41.7920515503026],[-87.79667243237796,41.79205867566903],[-87.79645781956343,41.792062948263734],[-87.79616555899719,41.79206876579254],[-87.79588820953009,41.792074219562345],[-87.79560451486118,41.792079807619714],[-87.79540690039576,41.79208371241628],[-87.79523599185488,41.792087251012155],[-87.79496373169717,41.792092888026765],[-87.79464882866257,41.79209860189506],[-87.79447369949925,41.792101759514246],[-87.79418153608448,41.79210705762091],[-87.79401791633443,41.7921098237102],[-87.79387151445756,41.79211229829439],[-87.79366553875994,41.79211621571729],[-87.79346887911356,41.792119929564386],[-87.79323202207128,41.79212438715611],[-87.79293963603018,41.79212992776924],[-87.79279608677002,41.79213261061838],[-87.7924727444953,41.79213865285914],[-87.79221270680168,41.79214365784145],[-87.7919129483719,41.79214940810105],[-87.79167949931278,41.792154125539284],[-87.79157594214536,41.79215617871568],[-87.79129483217984,41.79216175157752],[-87.79104249442054,41.79216684512683],[-87.79076514283862,41.792172451173904],[-87.79051988357305,41.79217741234837],[-87.7903529772741,41.79217993622331],[-87.79011751720861,41.79218349633685],[-87.78977832921976,41.792190207177484],[-87.78968722368438,41.79219202145605],[-87.78963609595785,41.792193046807796],[-87.78933875592136,41.79219896645267],[-87.78917392251918,41.79220214114382],[-87.78913238645946,41.79220294111708],[-87.78885957408883,41.79220819495807],[-87.788672299225,41.79221219205803],[-87.78835016197931,41.79221900696283],[-87.78812287223117,41.79222382872046],[-87.78791230957376,41.79222647500826],[-87.78769333812829,41.79222922641908],[-87.78750606268538,41.79223327650069],[-87.7872550424335,41.79223861497566],[-87.78695608415492,41.79224504217606],[-87.78669089464215,41.79224976920584],[-87.7863120105607,41.79225652186314],[-87.7860130939361,41.79226234306286],[-87.78573167180551,41.792267862676546],[-87.78547012791623,41.792272504922096],[-87.78525513584067,41.79227632035472],[-87.78501929709178,41.792281644043015],[-87.78480767012978,41.79228590280934],[-87.78444735382504,41.79229318309584],[-87.78425041552283,41.792295824921716],[-87.78396012605087,41.79229971792214],[-87.78374017363187,41.792304099839725],[-87.78355957583172,41.79230768146004],[-87.78302586742231,41.792319207324965],[-87.78263904101271,41.792327559415014],[-87.78230861969038,41.79233382369155],[-87.78197126639635,41.79234021840557],[-87.78180560844102,41.79234898021704],[-87.78179840742008,41.79213834170206],[-87.7817946768129,41.79201310167581],[-87.78178966433859,41.79187766620451]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"28810442.2232","perimeter":"0.0","tract_cent":"1203181.67192043","census_t_1":"17031520100","tract_numa":"60","tract_comm":"52","objectid":"768","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1841747.89488705","census_tra":"520100","tract_ce_3":"41.72046328","tract_crea":"","tract_ce_2":"-87.53138626","shape_len":"35609.4647185"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.52948021181633,41.732342677715636],[-87.52946317585551,41.73231397027869],[-87.52943991510575,41.73231734028554],[-87.52940914936725,41.73232179776301],[-87.52937896392355,41.732319117786574],[-87.52937324873565,41.73231861016842],[-87.5293479268655,41.732313191641985],[-87.52933474450177,41.73230844807935],[-87.5293126937802,41.73230051340278],[-87.52926854139606,41.732283354131354],[-87.52926851931672,41.73228333257127],[-87.52926318870446,41.732278133778905],[-87.5292455568329,41.73226093724494],[-87.5292319532567,41.73223985442163],[-87.5292229132083,41.7322258437744],[-87.52921376169358,41.73220790469644],[-87.52921064753426,41.732201800149625],[-87.52920820153479,41.732194968372475],[-87.52920034528024,41.73217302206704],[-87.52919398400903,41.73215428965131],[-87.52918951300357,41.73214579300205],[-87.52918124345221,41.73213007776694],[-87.52916930387656,41.73211472818391],[-87.5291676138275,41.73211255576409],[-87.52916746900279,41.732112417809674],[-87.52914958235537,41.73209541542092],[-87.52913536180554,41.73208702754118],[-87.5291350259136,41.73208693435377],[-87.52913490433598,41.73208690057118],[-87.52912062272047,41.73208293855252],[-87.529115574119,41.73208153792476],[-87.52911356559862,41.732081253552735],[-87.52910701597465,41.732080325416455],[-87.52910700866514,41.732080323993145],[-87.52895558907669,41.73204994336598],[-87.52894998308635,41.73204881957138],[-87.52894985837627,41.73204880195807],[-87.52879877242587,41.73202789625365],[-87.52733038183985,41.731824703452375],[-87.52662165633866,41.73172403119095],[-87.52526345776529,41.73153109020081],[-87.52523554634439,41.73152392117467],[-87.52522193628563,41.73152042526123],[-87.52514960221286,41.73149823649854],[-87.52507969918146,41.73147205783052],[-87.5250126291482,41.73144200213594],[-87.52494885517139,41.73140836384833],[-87.52494871868636,41.73140829208502],[-87.52493986481056,41.73140078806103],[-87.52487933485405,41.731349487155654],[-87.52480188777545,41.73128126050333],[-87.524733595396,41.73122109842221],[-87.52468841216506,41.73109349955509],[-87.52468016991385,41.73067976628138],[-87.52466726671051,41.7300320258569],[-87.52465349837998,41.72934087724191],[-87.52463015310435,41.72817041432883],[-87.52462952260491,41.72813881166647],[-87.52462952263245,41.72813880947121],[-87.52459060272065,41.726185813162225],[-87.52455658829493,41.724478919986495],[-87.52453873566316,41.723583032967326],[-87.52453425701981,41.72353338405988],[-87.52453111332109,41.72349853692347],[-87.52453111728033,41.72349845489649],[-87.52453619235152,41.72340027179364],[-87.52453615019128,41.723292639414886],[-87.52455375710342,41.72320310703513],[-87.52449617934391,41.72320114765106],[-87.52447137149976,41.7232003036862],[-87.52447137137982,41.723200254836655],[-87.52447095017075,41.723081729817835],[-87.52446880877278,41.72247880724031],[-87.52446675518117,41.7218977946912],[-87.52446693957535,41.721897724911585],[-87.52447977978116,41.721892868404275],[-87.52449816026048,41.72188591636971],[-87.52450190371147,41.72188450031073],[-87.52450201448961,41.72188445882813],[-87.52450275753792,41.72179305054601],[-87.52450533648334,41.72179286260153],[-87.52451133691153,41.7217924254074],[-87.52453050096767,41.72179189288425],[-87.52456729079263,41.721790870789675],[-87.52462315369812,41.72179367923167],[-87.5246507470333,41.721797276099224],[-87.52465276793139,41.72179753950508],[-87.52467833963915,41.72180087295502],[-87.52468567365838,41.7217970567374],[-87.52469124413177,41.72179415842965],[-87.52469943359671,41.72178933887401],[-87.52470921579305,41.721783581269385],[-87.52473984518114,41.721765547972915],[-87.52478464198015,41.721733617280194],[-87.52481449785472,41.72170981437196],[-87.52483943897569,41.72168992923064],[-87.52487474451586,41.72165822042196],[-87.52489852937381,41.72163685837762],[-87.52495303909353,41.72158106584427],[-87.52500267020304,41.72152279598024],[-87.52475916772914,41.721306796876235],[-87.52471567720283,41.72126821841074],[-87.52471072203866,41.72126382255706],[-87.52469977379997,41.72125411023856],[-87.52469981330388,41.72125408554335],[-87.52470037530395,41.72125372752378],[-87.52471598339433,41.72124379620455],[-87.52481822863427,41.7211786799451],[-87.52481837757473,41.72117880832908],[-87.52509273599036,41.7214153865852],[-87.52509284881349,41.721415240283754],[-87.525148557095,41.7213429013085],[-87.52515350503701,41.7213364757285],[-87.52517975866974,41.72130004963121],[-87.52523637429216,41.72122149591607],[-87.52524831488016,41.721202267628684],[-87.52526781497258,41.72117086495229],[-87.52533492099398,41.72105610270527],[-87.52534065782935,41.7210462915198],[-87.52540804658346,41.720920108023094],[-87.52540810134411,41.72092000577091],[-87.5250814934934,41.72084808601007],[-87.52510605517219,41.72079495740337],[-87.52513612394546,41.720729915503945],[-87.52513631354954,41.720729955806725],[-87.52545399550968,41.7207974099599],[-87.52545405688852,41.720797276469085],[-87.52545870167884,41.72078720731822],[-87.52546908983985,41.720761654530854],[-87.52548504472877,41.72072240780036],[-87.52550059742278,41.7206728357901],[-87.52550572291116,41.72065649762034],[-87.52550924671809,41.720640703638594],[-87.52552062617687,41.72058969555242],[-87.52552528852713,41.72055526390454],[-87.5255297481973,41.72052233279262],[-87.52553909542412,41.720474949372736],[-87.52555561443349,41.720369738307014],[-87.52556077748423,41.72030111524129],[-87.52557183007053,41.720154204634504],[-87.5255795355152,41.72000868875374],[-87.5255857919034,41.71989054651477],[-87.52560580641133,41.71959803305792],[-87.52560897046122,41.719551787586546],[-87.5256091107638,41.71954649232681],[-87.52560863250352,41.719435508474646],[-87.52560229274522,41.71932462118227],[-87.52559802154079,41.71928591475725],[-87.52559008838801,41.7192140219799],[-87.52557834654999,41.719142160058304],[-87.52557209101441,41.71910387630205],[-87.5255482623167,41.71899432054349],[-87.52554461092818,41.71898345786369],[-87.525530323544,41.718940954795166],[-87.52549409928501,41.71884717345232],[-87.52545970345054,41.71877115872572],[-87.52545225493056,41.71875469866864],[-87.52542292957514,41.71869831698142],[-87.5254049353653,41.718663720814256],[-87.52539756450321,41.71865123945334],[-87.52535220922904,41.718574434662415],[-87.52529414923667,41.71848703117234],[-87.52524878579008,41.71842972653626],[-87.52520230969634,41.71837101473231],[-87.52515031002062,41.71830976646234],[-87.52510257659617,41.71825354337204],[-87.52504101309238,41.718185803074206],[-87.5249979794521,41.71813845160356],[-87.52490509634902,41.71805028234407],[-87.52487332817815,41.71804365059526],[-87.52485829823591,41.7180405126583],[-87.52476093182695,41.718023608682515],[-87.52475636501313,41.71802264375573],[-87.52471461424433,41.718013932607434],[-87.52468381089359,41.71800750600949],[-87.52463441614427,41.71799944028917],[-87.52459107503029,41.71799236311841],[-87.52450497943519,41.71798795049841],[-87.52450479714201,41.717987941256766],[-87.52450478489685,41.717975247082215],[-87.52450472098518,41.717909186108635],[-87.52450462878335,41.71781441751266],[-87.52448432845188,41.7178063158404],[-87.52447634839443,41.71780011268394],[-87.52447173974244,41.7177908310888],[-87.5244684306809,41.71740333867096],[-87.52476419764471,41.717397791063334],[-87.52477253762243,41.71739763294762],[-87.52478105090056,41.71739747083653],[-87.52493702453633,41.71739648255748],[-87.52514143767796,41.717391306378815],[-87.52534557434944,41.717381764985],[-87.52554925467301,41.7173678285721],[-87.52570994972248,41.71734520910852],[-87.5258125602699,41.71733076518023],[-87.52581251903773,41.71733069408722],[-87.52580496006124,41.717317620851766],[-87.52580497403702,41.71731761628465],[-87.52642106917486,41.71711444545548],[-87.52642112986292,41.71711442529929],[-87.52647560606542,41.71720089772801],[-87.52651698675623,41.71726658414714],[-87.52651703310586,41.71726656828114],[-87.52655305193885,41.71725414821714],[-87.52660512697994,41.71723619170021],[-87.52651900554001,41.71708462297489],[-87.52679668105571,41.716990905563556],[-87.52679662775891,41.71699077401134],[-87.52679270059404,41.71698107247125],[-87.52676871874775,41.71692182677948],[-87.52678741443746,41.71688545919962],[-87.52678890096868,41.71688403874906],[-87.52679112112637,41.71688191733619],[-87.52680374966032,41.71687432711407],[-87.52680448111566,41.71687388766942],[-87.52682068635335,41.716869665396686],[-87.52683782731533,41.71686975853405],[-87.5268488603422,41.71687274411733],[-87.52685396216563,41.71687412491168],[-87.52685659922395,41.71687498537468],[-87.52685710299421,41.71687515000148],[-87.52685998081361,41.716876088994894],[-87.5268794229988,41.71688541861779],[-87.52688400444704,41.71688913501063],[-87.52689508804424,41.71689812522556],[-87.52690248289339,41.71690843179506],[-87.52690603182421,41.716913377528],[-87.52690743645064,41.716918244818594],[-87.52690984413094,41.71692063609466],[-87.52691394822588,41.71692471193436],[-87.52692394558385,41.71692777339486],[-87.52693548567142,41.71693054435543],[-87.52696276111492,41.71694034085673],[-87.52696283272587,41.716940413809105],[-87.52696286888387,41.71694045138549],[-87.52696715059157,41.71694288929187],[-87.52697443455807,41.71694703601823],[-87.5269790646659,41.71694791540412],[-87.5269830987862,41.716948681932834],[-87.52698853864148,41.71694971519345],[-87.52700288185923,41.71694803203937],[-87.52730132345461,41.7168249852038],[-87.52730128077327,41.716824912728995],[-87.52729016915784,41.71680602581677],[-87.52729024912664,41.716805986859626],[-87.52738059288724,41.71676205730636],[-87.52739899248272,41.71675311009163],[-87.52752191650384,41.71668843799003],[-87.52764140519608,41.71662022949753],[-87.52770559690163,41.71658054179545],[-87.52775727334273,41.71654859172654],[-87.52778445010155,41.71653158967717],[-87.52779865719201,41.716522701099464],[-87.52782590534059,41.71650461471381],[-87.52790232868105,41.71645388719928],[-87.52800204982964,41.71638183412401],[-87.52809759589178,41.716306706065374],[-87.52811024368984,41.716295878642015],[-87.52818882084988,41.71622861041093],[-87.52819437400875,41.71622381987879],[-87.52827647107067,41.716149228077356],[-87.52831639023861,41.71610941388197],[-87.52835398759642,41.716071915250026],[-87.52842673660393,41.715992043382855],[-87.52855287411828,41.71586588383786],[-87.52856715856137,41.71585159654389],[-87.52856719639361,41.715851558662905],[-87.52856500008693,41.71581331472568],[-87.52861637145347,41.71577349774963],[-87.52861934687942,41.715770486120654],[-87.52861971041452,41.71577011818424],[-87.52863411238319,41.71575274874333],[-87.52864131541315,41.71574406129219],[-87.52865770819615,41.71571599199112],[-87.52866243071884,41.715703173717394],[-87.52866856733115,41.71568651507441],[-87.52866858856272,41.71568645731807],[-87.52867372959568,41.71565603144254],[-87.5286735894408,41.715649678748306],[-87.52867354237794,41.71564754965502],[-87.52867316987957,41.71563195770123],[-87.52867301324068,41.7156253996169],[-87.528683236044,41.715592759263465],[-87.52869605983467,41.7155366178089],[-87.52869649307577,41.71553312788074],[-87.52870310390195,41.71547988701855],[-87.52870425430658,41.71542292285641],[-87.52869981094072,41.71536887514995],[-87.52869957909863,41.715366055665626],[-87.52868903796309,41.71530964110066],[-87.52867277400722,41.71525398231095],[-87.5286508872673,41.71514845482241],[-87.52865011024114,41.715144710254094],[-87.5286499929845,41.7151442445463],[-87.52861846319054,41.71501857953408],[-87.52859332522954,41.714943209301026],[-87.52856253192779,41.7148690341213],[-87.52854840340997,41.71484074668072],[-87.52852619043445,41.71479627428594],[-87.52848444343527,41.71472517860068],[-87.5284719058483,41.714707004934866],[-87.52846760709407,41.71470077377416],[-87.52845214893625,41.71467931117202],[-87.52837594446534,41.714573509074036],[-87.52827912787944,41.71444834902955],[-87.52827448272184,41.71444290662017],[-87.52827342467049,41.71444166728506],[-87.52825851887387,41.71442288258526],[-87.52822157157658,41.7143763191912],[-87.52820185184275,41.7143478347334],[-87.52817483622502,41.71430881120733],[-87.52815828825096,41.714281098712306],[-87.52813339939975,41.7142394184889],[-87.52810442376499,41.71418227944321],[-87.52809736673046,41.71416836297345],[-87.52806684681251,41.714095863599944],[-87.52804198153214,41.714022142284286],[-87.5280264613268,41.71398619195511],[-87.52797352029789,41.713873139944894],[-87.52791513903581,41.71376161348756],[-87.52785131584503,41.71365175032766],[-87.52782554337028,41.71360387349078],[-87.52781965599277,41.713593911251145],[-87.52777131131644,41.71351210765983],[-87.5277409569691,41.71346626295557],[-87.52771178139466,41.713422198236415],[-87.52766726041973,41.71336173896471],[-87.52764706253558,41.713334310360594],[-87.52757729884526,41.713248637136196],[-87.5275596731452,41.71322898802195],[-87.52750256038244,41.71316531790774],[-87.52745972472805,41.713121792088344],[-87.52742306708402,41.713084544114686],[-87.52709121813537,41.712826161581816],[-87.5264860772225,41.712354981973846],[-87.52648588224834,41.71235513867736],[-87.52522620648,41.71336803301399],[-87.52516701588418,41.713327142776045],[-87.52643254807032,41.712313637881635],[-87.52643276079117,41.71231346785569],[-87.52825174388256,41.71092259092541],[-87.52840800676047,41.710803100941085],[-87.52840798932617,41.71080308929284],[-87.52746822367276,41.710200878614394],[-87.52728451365475,41.71008315320858],[-87.52728404168936,41.710082850767584],[-87.52720402819473,41.710031575904786],[-87.52720368626777,41.710031418177834],[-87.52720209863662,41.710030684461984],[-87.52710404333513,41.70998778924205],[-87.52700312004026,41.70994874247576],[-87.52689969352215,41.7099136312404],[-87.52684294273094,41.70989696767441],[-87.52679398327328,41.70988259154131],[-87.52668624342594,41.70985565424588],[-87.5266483810981,41.70984926863407],[-87.52659109545117,41.7098413555562],[-87.52654791268424,41.70983539058528],[-87.52650836356723,41.70983166440153],[-87.5264999328377,41.70983087000494],[-87.52649495385259,41.70983040089512],[-87.5264465837057,41.7098258429737],[-87.52634465201044,41.709820681396394],[-87.5262937279206,41.70982029659412],[-87.52624251782927,41.70981990948609],[-87.52595481016782,41.71009254279924],[-87.52589990563034,41.71014456988304],[-87.52596378819091,41.71020261643237],[-87.52602109435402,41.71025468792446],[-87.52602110811881,41.71025470009615],[-87.52601974169502,41.710267314347576],[-87.52601145515372,41.71030902461167],[-87.5259981629501,41.710347710872796],[-87.52599745486742,41.71034977099539],[-87.5259974301506,41.71034984382053],[-87.5259698210049,41.710369875448635],[-87.5259455239952,41.71038309754506],[-87.52593726065106,41.71038759422562],[-87.5259071357626,41.71039940238479],[-87.5259016334779,41.71040155944972],[-87.52589473582809,41.71040336449363],[-87.52586363981777,41.71041150160773],[-87.52584544395857,41.71041413096027],[-87.52582416170013,41.710417206527],[-87.52578396806459,41.71041857093489],[-87.52578393190957,41.71041856272229],[-87.5257504034918,41.71041108951177],[-87.52571484864634,41.710398820079874],[-87.5256821250904,41.710382727946126],[-87.52566414602246,41.71037067204095],[-87.52565292522578,41.710363147846316],[-87.52565111274309,41.71036150635572],[-87.52562797343214,41.71034055140831],[-87.52560919255957,41.710317125374075],[-87.52560785217017,41.71031545399496],[-87.5256078161128,41.71031540873474],[-87.52560792225826,41.71030692982062],[-87.5256040290061,41.71028728032479],[-87.52560201358955,41.710283360174024],[-87.52559448353857,41.710268716816586],[-87.52558300036752,41.71025579434886],[-87.52557978431672,41.710252175042406],[-87.52556843607955,41.71024406732543],[-87.52556058164828,41.71023845569756],[-87.52555084809698,41.71023406854601],[-87.52553782050249,41.71022819661518],[-87.52552220573627,41.71020504145808],[-87.52551775649667,41.710198443856996],[-87.52551573148143,41.710190581428016],[-87.52550590453153,41.71016811818215],[-87.52549420595382,41.71015213180943],[-87.52549075064508,41.710147410073496],[-87.52549074488198,41.710147402348895],[-87.5254707574153,41.710129149076664],[-87.52544659226379,41.71011396805525],[-87.52541908702112,41.710102385218725],[-87.52541536673307,41.71010510831765],[-87.52541095450174,41.71010833809195],[-87.52540173496982,41.71011133812256],[-87.52540149557305,41.710111416024546],[-87.52539782666275,41.710112609802664],[-87.52538350628167,41.7101126460579],[-87.52537033811431,41.710108410103864],[-87.52537025036176,41.71010834005567],[-87.52536059604695,41.71010066959717],[-87.52536051083037,41.71010060176226],[-87.52536443330406,41.710096443986416],[-87.525366375242,41.7100943854079],[-87.52537057482729,41.71008365749347],[-87.52536986996738,41.71007870289004],[-87.52536975382154,41.71007788783499],[-87.52536899245601,41.710072532164176],[-87.52536190089332,41.71006271253884],[-87.52535499039682,41.7100585260705],[-87.52535030512747,41.71005568788767],[-87.52533602640338,41.71005248641203],[-87.52528095478347,41.71004573235408],[-87.52515894935716,41.70999986730807],[-87.52515643743317,41.70999637972917],[-87.52515473834727,41.70999402001754],[-87.52513831983416,41.70997730116125],[-87.52511761589938,41.70996357118339],[-87.52511590910544,41.709962850322206],[-87.52509349892371,41.70995338535513],[-87.525080370934,41.70995033162713],[-87.5250670968725,41.709947244212835],[-87.52503954258032,41.7099453763663],[-87.52497157453072,41.709900258397646],[-87.52495731029404,41.70989078923454],[-87.52493832540539,41.70987519941965],[-87.52485928832998,41.70981029576072],[-87.52459204920771,41.70959087336702],[-87.52456832385468,41.709573332948565],[-87.52456802630253,41.709573112681255],[-87.5245611652578,41.709569488823355],[-87.52453953904832,41.7095580654334],[-87.52450819359895,41.70954685409872],[-87.5245080743734,41.70954681154592],[-87.5244745435986,41.709539632685996],[-87.524311428899,41.70947614042648],[-87.52421771160662,41.709439660680125],[-87.52421557898411,41.70943899196797],[-87.52421475599391,41.709438733970536],[-87.5241912235873,41.70942871645315],[-87.52417828837471,41.70941999806525],[-87.52417110352013,41.70941515534875],[-87.52415534221504,41.7093986874184],[-87.52415190592109,41.70939269405986],[-87.52414466274872,41.70938006146521],[-87.52414316229768,41.709374161597744],[-87.52413960160827,41.709360156979564],[-87.52414033199109,41.70933988135488],[-87.52413793330562,41.70933557674478],[-87.52413785987923,41.709335445049426],[-87.52413710388589,41.70932569822815],[-87.5241386765683,41.70932283051549],[-87.52414205168299,41.70931667655321],[-87.52415149637537,41.709310290350864],[-87.5241516921416,41.70931015780678],[-87.52416417807605,41.70930741908339],[-87.52417701282985,41.70930901855934],[-87.52418138364781,41.709311311201475],[-87.52418767372974,41.70931461025123],[-87.52419880166282,41.70931853064916],[-87.52420444603325,41.70932051885703],[-87.5242063788529,41.70931407756136],[-87.5242087271348,41.70930625139052],[-87.52421852717315,41.7092928180863],[-87.52422388442376,41.709288818369956],[-87.52423301959027,41.70928199775172],[-87.52429712670025,41.7092777563331],[-87.5243002094902,41.709279376052415],[-87.52430061989551,41.709279591900746],[-87.52430259564515,41.70928006575818],[-87.52431299836184,41.70928256085584],[-87.52431937623219,41.70928189635228],[-87.52432583294238,41.709281223896035],[-87.52433659410734,41.709275810750334],[-87.52433665216027,41.70927573733694],[-87.52434318185217,41.70926743290238],[-87.52436278943105,41.709262366893114],[-87.52437658105364,41.70925880361533],[-87.52437744713899,41.70925877897603],[-87.52440057754865,41.70925812125581],[-87.5244186594563,41.70925597130976],[-87.5244275528086,41.709255262211684],[-87.52445249738555,41.70925327281118],[-87.52446525998769,41.70925390821777],[-87.52448649926245,41.70925496636195],[-87.52450424455398,41.7092581956364],[-87.5245061694822,41.70925854591284],[-87.52451960451648,41.70926099070851],[-87.52455082610952,41.70927114488149],[-87.52455634598074,41.709273862458275],[-87.52457932670274,41.70928517654964],[-87.52459504678708,41.709296232341394],[-87.52460415857273,41.70930264050345],[-87.52461250522173,41.70931425583345],[-87.52461276115783,41.70931461137695],[-87.52472711502986,41.70935422046106],[-87.52475989652241,41.70933353971847],[-87.52475993505783,41.709333562493015],[-87.52486449430708,41.70939481499862],[-87.52487372169263,41.70940021376993],[-87.52488172712395,41.709404897556716],[-87.52488173732104,41.7094050482914],[-87.52488201798772,41.70940912996585],[-87.52488423714621,41.70944138799573],[-87.5251225819574,41.709735027948035],[-87.52512267501162,41.70973514249161],[-87.52516717850516,41.70970842452838],[-87.52520983646727,41.70974124412143],[-87.52525740591672,41.70971301690531],[-87.5252575077554,41.70971295642321],[-87.52535526045983,41.70979345480125],[-87.52543672920186,41.70986054377427],[-87.52552960019706,41.709937021837554],[-87.52558712658742,41.70993778298039],[-87.526220206424,41.70953944809153],[-87.52576947560046,41.70915652296293],[-87.5257694490142,41.70915654033971],[-87.52530687946151,41.70946126564223],[-87.52535588314053,41.70949621603201],[-87.52533874943704,41.709513247533],[-87.5253386796209,41.709513207523955],[-87.5252818455207,41.709480767999786],[-87.52527551389497,41.70947715421916],[-87.52527551611624,41.70947715231377],[-87.52527551834095,41.70947715013395],[-87.52528311381353,41.70946977056535],[-87.5252822932954,41.70946919781992],[-87.52527469077057,41.709463893111256],[-87.52526094774859,41.70947340184983],[-87.52518578559435,41.70941285509265],[-87.5251856680099,41.709412710738],[-87.52518352476226,41.70941008252757],[-87.52512998616588,41.70934443134193],[-87.52515153782818,41.7093277160777],[-87.52516026203902,41.709320949851545],[-87.52516045952582,41.70932079673548],[-87.52521189180081,41.70935844409174],[-87.52522541989387,41.70936834658879],[-87.52522547784469,41.70936831049692],[-87.52567862235512,41.70908510002615],[-87.52567873899844,41.70908502702387],[-87.52555611534474,41.708980484847366],[-87.52555898275024,41.70897081701922],[-87.52543128867245,41.70884705711952],[-87.52542990902809,41.70884559869535],[-87.52542156536707,41.708836779628335],[-87.52540766763366,41.70882943719715],[-87.52540369776408,41.70882861206197],[-87.52539126689904,41.708826028432235],[-87.52537429845866,41.70882695224172],[-87.52486756192394,41.709149989269086],[-87.52486331961393,41.70915269687739],[-87.52486224602379,41.709153381989445],[-87.52486222828624,41.70915336539876],[-87.52478382782733,41.70908090117932],[-87.524869180993,41.709020770547795],[-87.52501919509753,41.70891509942052],[-87.52499857641476,41.708888746439705],[-87.52497726109054,41.708853688798214],[-87.52496138728458,41.70881705001107],[-87.52495778191928,41.708803734749],[-87.52495116628987,41.708779298923915],[-87.52495141742016,41.708775828581835],[-87.52495142759258,41.70877568896769],[-87.52495143207966,41.708775623135686],[-87.52495044794705,41.708760632521084],[-87.52495005119277,41.708754854591206],[-87.52494979717655,41.70875115950364],[-87.52494236842242,41.70872728712887],[-87.52493475641285,41.70871409598931],[-87.52493368035329,41.70871223106617],[-87.52492939331496,41.70870480168206],[-87.5249112635171,41.708684421359955],[-87.52488859477684,41.708666780312676],[-87.52487371700565,41.70865874456856],[-87.52486422653395,41.70865359861834],[-87.52486207635414,41.70865243279896],[-87.52459428926228,41.70851295970348],[-87.52453540785581,41.70848229194804],[-87.5245354085522,41.70848226560749],[-87.52454070843237,41.7083134020458],[-87.52454994296042,41.708019167927695],[-87.52455205497952,41.70795187870639],[-87.5245518369476,41.70790543153674],[-87.52455173545995,41.70788387174663],[-87.52455162569557,41.70785958294986],[-87.52455122022398,41.70777003304818],[-87.52455075369872,41.70766861189959],[-87.52455073373885,41.70766427299459],[-87.52455033592067,41.70757770621594],[-87.52455029251144,41.70756933601914],[-87.52455024997842,41.707561129664185],[-87.52454994012392,41.707493899958386],[-87.52454993564214,41.70749288425524],[-87.52454965268197,41.70743157313133],[-87.5245489687775,41.707283506118344],[-87.52454862520548,41.70720809701025],[-87.52454781678973,41.707030635286074],[-87.52454679228124,41.70680677551505],[-87.52454650393113,41.70674379031262],[-87.52454597616145,41.70662826237658],[-87.52454505117024,41.70642573925887],[-87.52454501020826,41.706416852322704],[-87.52454417592841,41.706234265105564],[-87.52454374249953,41.706140720902795],[-87.52454224972531,41.7058186436209],[-87.52454171231716,41.70570262738467],[-87.5245410450576,41.70555863575663],[-87.52453990190823,41.70531198106596],[-87.52453761917282,41.70481946698179],[-87.52453715661923,41.70471962571383],[-87.52453660940309,41.70460117682325],[-87.5245356398889,41.70439130376358],[-87.52453533191222,41.70432462372146],[-87.52453475052373,41.70419990134537],[-87.52453328755902,41.703885930333925],[-87.52453298088042,41.703819789279315],[-87.5245317025515,41.70354186946403],[-87.52453116398507,41.703424716203266],[-87.52452966722205,41.70309926817139],[-87.5245294911968,41.703060980118465],[-87.52452945145683,41.70305231684778],[-87.5245292242048,41.70300277562932],[-87.5245288689255,41.702925375929176],[-87.52452850624411,41.7028464045045],[-87.5245281503809,41.70276896363339],[-87.52452789994206,41.70271446408836],[-87.52452789978223,41.70271444762132],[-87.52452774648363,41.70268109593229],[-87.52452774567956,41.70268092632772],[-87.52452774411434,41.702680612915486],[-87.52494858581647,41.70268242043097],[-87.52574340900001,41.70268582941342],[-87.52624887943098,41.70268799443591],[-87.52652771715928,41.702689632194215],[-87.52652010450358,41.703418707780635],[-87.52651650594204,41.70375927990357],[-87.52650502452666,41.70436577764169],[-87.52648449483004,41.704487904952074],[-87.52654209849153,41.7045417958774],[-87.52850767458865,41.70638010910021],[-87.52863808328094,41.70638030308839],[-87.52924848278283,41.70638120884685],[-87.52972364148202,41.70638191158825],[-87.52984493511315,41.70638221692291],[-87.53045225181596,41.70638374376212],[-87.53045152419556,41.70742022043557],[-87.5304285929794,41.70797991982661],[-87.53041821036473,41.708132443374794],[-87.53053769316669,41.70823623312363],[-87.53108017260652,41.708220953880044],[-87.53166058616888,41.7082193416126],[-87.5322632169976,41.7082176644929],[-87.53232161734462,41.70821750187245],[-87.53286881506065,41.708217752462666],[-87.53347381314153,41.70821802681297],[-87.53357784544916,41.708218073591794],[-87.53403493964164,41.70821765555278],[-87.53407909477129,41.70821761524264],[-87.53466758316225,41.70821707416383],[-87.53478754613272,41.70821696381944],[-87.5352884973127,41.70821662655628],[-87.53528958823038,41.708310382476036],[-87.53528801726293,41.70883288952304],[-87.53528436417851,41.710045880353654],[-87.53527856345306,41.71197252653236],[-87.53527776000612,41.71223952993669],[-87.53527612385278,41.712660098047316],[-87.53527552934327,41.71281294266124],[-87.53527490372358,41.71297377904903],[-87.5352752842487,41.71325819534912],[-87.53527538225234,41.71333133942831],[-87.5352754390261,41.71337385611891],[-87.53527546675586,41.71339464943541],[-87.5352755698409,41.71347173493295],[-87.53527564488297,41.71352808199764],[-87.5352757819665,41.71363004302063],[-87.5352759970764,41.713791099830196],[-87.53527612824054,41.71388912738151],[-87.53527615634303,41.71391003842985],[-87.53527727061358,41.71474475241366],[-87.53527782743349,41.71516173091775],[-87.53527690310165,41.7151689151495],[-87.5352761399383,41.715693594925774],[-87.53527740689181,41.71582007239946],[-87.53527611624507,41.716245064838226],[-87.53528296492642,41.71682836129936],[-87.5352807519606,41.717368426727276],[-87.53528155942334,41.717747631595216],[-87.53528190296834,41.71790895455829],[-87.53528474213033,41.71834855825425],[-87.53528580089565,41.71893206128209],[-87.53528790538039,41.71937775217114],[-87.53528801772502,41.71943143443666],[-87.53528826463737,41.71954952553782],[-87.53528888093304,41.71984363304542],[-87.53528745206799,41.72011305991311],[-87.53528732866084,41.72039539382426],[-87.53529106478452,41.7208542686275],[-87.53528616156981,41.72135057068185],[-87.53528569547373,41.721397742150565],[-87.53541107651355,41.72156390272044],[-87.53564705668404,41.721850592707895],[-87.53597389107773,41.722252185785706],[-87.53617209337642,41.72249278253039],[-87.5362322024552,41.72256101143212],[-87.53654254894106,41.722941559545546],[-87.53686031858454,41.72293738564702],[-87.53710993057965,41.72293385361732],[-87.53741490115321,41.722929537627806],[-87.53770831413843,41.72292677037484],[-87.53856243198742,41.72291870936845],[-87.53892269016278,41.72291350005557],[-87.53948170759512,41.72290541475409],[-87.53983762325413,41.722899292470466],[-87.54001765816936,41.72289721879955],[-87.54039443390995,41.72289361181244],[-87.54234079423529,41.72286995153332],[-87.54266723154342,41.7228659606492],[-87.54301129250332,41.72285825542781],[-87.54314429934149,41.72286175283583],[-87.54317679419093,41.723125835191574],[-87.54316197689674,41.723313319286696],[-87.54299695620745,41.72402810939935],[-87.54284981169351,41.724531868633754],[-87.54229364896752,41.72643585671197],[-87.54225177606948,41.726579200638184],[-87.54190202869486,41.72713590207122],[-87.54148973791393,41.72750457319864],[-87.54139893639135,41.72758576760826],[-87.54134523869718,41.72762402502004],[-87.54042213403234,41.728281695451805],[-87.5401976670261,41.728395658587516],[-87.53951029684906,41.72874463562856],[-87.53941395633704,41.728793547030875],[-87.53725609509723,41.72962211577588],[-87.5367291300953,41.729859708544545],[-87.53592860129301,41.7302039405381],[-87.53375082601805,41.73114034931327],[-87.53286496938865,41.7315212336925],[-87.53135312991294,41.73214554961558],[-87.53073001874151,41.7324028543497],[-87.53072993367441,41.73240288943148],[-87.52925101031651,41.733013568732936],[-87.52930964044313,41.73285812388772],[-87.52949478805328,41.73236723913468],[-87.52948021181633,41.732342677715636]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"19062977.3249","perimeter":"0.0","tract_cent":"1191129.34810311","census_t_1":"17031480400","tract_numa":"86","tract_comm":"48","objectid":"773","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1844548.73461909","census_tra":"480400","tract_ce_3":"41.72844867","tract_crea":"","tract_ce_2":"-87.57543979","shape_len":"17770.666183"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56591404400882,41.73354159380548],[-87.56590106090216,41.7331662603403],[-87.56587391623304,41.73230422912251],[-87.56586519103848,41.73202156198318],[-87.56585696059075,41.731718604522165],[-87.56584318142365,41.73121140515432],[-87.56583310422758,41.7308607521254],[-87.56581690627195,41.73029954279154],[-87.56581611494593,41.73027212158331],[-87.5658139686269,41.72989122539505],[-87.56581245764359,41.72962317778372],[-87.565810965133,41.72944292156856],[-87.56580006582519,41.72910288369259],[-87.56578783839085,41.728720547109695],[-87.56577838717445,41.728425031571106],[-87.56576618524153,41.72806300437957],[-87.56576030288282,41.72788848047078],[-87.56574989422725,41.727593397582],[-87.5657398574429,41.72731022746931],[-87.56573417943186,41.727151321126925],[-87.5657288659663,41.727002599431074],[-87.56571911589157,41.726726099604285],[-87.56571859605943,41.72671135918269],[-87.56571027023602,41.72647518305769],[-87.56570339690532,41.72623928858729],[-87.56568962267325,41.725766532337396],[-87.56567393503761,41.72526228409147],[-87.56565724014354,41.72472914491567],[-87.56564790064544,41.72442736711841],[-87.56563065067809,41.72388835571775],[-87.56597183551474,41.723845753122724],[-87.56635700073231,41.72380098500059],[-87.56675684139024,41.723754255531276],[-87.56680590608106,41.723748408143216],[-87.56683326764679,41.72374511636601],[-87.56715440441964,41.72370648036511],[-87.56761248567538,41.723652246340905],[-87.56792064298213,41.72361416414569],[-87.56809945498362,41.723595258502286],[-87.56814345926279,41.723590605745095],[-87.56838728875609,41.72357130436736],[-87.5685847713106,41.72356026917795],[-87.56911014184938,41.7235462695249],[-87.569258519995,41.72354451195092],[-87.5692781162402,41.72354427781008],[-87.56946139615829,41.72354208764461],[-87.57050141100764,41.72353047231093],[-87.57050142126693,41.723530472104606],[-87.57070794961423,41.72352806984263],[-87.5711567681038,41.723521099595644],[-87.57165596711336,41.72351308940459],[-87.57171687880437,41.723512120994215],[-87.57173839803063,41.72351174494906],[-87.57227196031425,41.723502420274016],[-87.57274406457849,41.72350108695172],[-87.57295281435282,41.723498010377554],[-87.57295290044954,41.7234980093007],[-87.57295290557757,41.723498009334634],[-87.57296858752507,41.72349776073688],[-87.573090294269,41.72349583105085],[-87.57367419671323,41.72348837247035],[-87.57408315652901,41.72348318550929],[-87.57416788046385,41.723482030372104],[-87.57439319949832,41.7234790592768],[-87.57473484236263,41.72347445392808],[-87.57511174832355,41.723469394999775],[-87.57538011105446,41.72347870878941],[-87.57683181026496,41.723451230979116],[-87.57809124547593,41.72343172951877],[-87.57925951859959,41.7234157322348],[-87.58012642851155,41.72340563822909],[-87.58025008226748,41.723403704389675],[-87.58056838180777,41.723398242897964],[-87.58106255085896,41.723389473076054],[-87.58198768824968,41.723372885428546],[-87.582551905306,41.723364910242076],[-87.58264762162028,41.72336347708467],[-87.58324984478307,41.72335540316902],[-87.58389649203194,41.723346587549294],[-87.58458898870127,41.72333257760642],[-87.58500576265332,41.723324658091656],[-87.58514431460323,41.72332315630191],[-87.58514577131567,41.72349964190256],[-87.58514702951771,41.72367852446103],[-87.58515789875185,41.72412453959635],[-87.58500169530708,41.72428604725168],[-87.58498019883172,41.72440232102459],[-87.5849678296677,41.72455273860613],[-87.584958140859,41.724844697866516],[-87.58495291253529,41.72513742685241],[-87.58497483494281,41.7253948492372],[-87.58498483972434,41.72560435732777],[-87.58498573954643,41.72562319246646],[-87.58497042152713,41.72586357627338],[-87.58497209606679,41.72598999597945],[-87.58497456121374,41.7261760709332],[-87.58498191015207,41.726521380734795],[-87.5849877101358,41.726760228559215],[-87.58499044413342,41.72691228153211],[-87.58499392174772,41.727105723020415],[-87.5849978175081,41.7273003201109],[-87.58501489761609,41.72747321322227],[-87.58502880788684,41.72769509909098],[-87.58502147054496,41.727816628707146],[-87.58501234496856,41.72796777645807],[-87.5850184138603,41.728268729742254],[-87.58502583158928,41.72859554320754],[-87.5850288483448,41.72872377707723],[-87.58503255388521,41.728881269786946],[-87.58505821304148,41.72909777093244],[-87.58506153101531,41.729204569291916],[-87.58506341367828,41.72926518033023],[-87.58504554464814,41.729507496393005],[-87.58504771497172,41.72963382347154],[-87.58504977028525,41.72973416885933],[-87.58505741336326,41.730107370241974],[-87.58506434712211,41.73041593078606],[-87.58507081834469,41.73072328080488],[-87.58510066508644,41.73116934324593],[-87.58509720028856,41.73145416661914],[-87.58509350662746,41.731757759018365],[-87.58509801307021,41.7320103197492],[-87.58510168974878,41.732192291422436],[-87.5851108364274,41.73259743851415],[-87.5851176960279,41.73283346634601],[-87.58513316561364,41.73296529392485],[-87.58513360344126,41.73333606913745],[-87.58503958751946,41.73334787243448],[-87.58468766397762,41.733356255387456],[-87.58450855822404,41.73335906918385],[-87.58435677041574,41.733361453731106],[-87.58395051174756,41.73336737096145],[-87.5835342010283,41.733373433021384],[-87.58337330376659,41.73337622116202],[-87.58311429153409,41.7333807088567],[-87.58279777470182,41.733385261376576],[-87.58223642874361,41.73339333321537],[-87.58222057870792,41.7333935600204],[-87.58164421190725,41.73340180712578],[-87.5810665899711,41.733410069192956],[-87.58102540587772,41.73341065824784],[-87.58048838626007,41.73333787458449],[-87.58005387163199,41.73334712921442],[-87.57988188227856,41.73334945883708],[-87.57972485495009,41.733351585557955],[-87.57951972775905,41.73335437788208],[-87.5792752859721,41.733357704946556],[-87.57884872211525,41.733363509299494],[-87.57868595176167,41.73336592565791],[-87.578667130985,41.73336623208007],[-87.5782523783556,41.73337298420841],[-87.57805853442159,41.73337553659156],[-87.57765455148206,41.73338085456865],[-87.57745188145964,41.73338345189065],[-87.57732341239641,41.73338509769982],[-87.57684699422485,41.73339202656109],[-87.5763984601345,41.733398547936766],[-87.57623771694888,41.73340088444154],[-87.57609835077818,41.733402909889776],[-87.57563065001234,41.733409602454785],[-87.5752462474719,41.73341510172937],[-87.57502356500189,41.73341837998534],[-87.57488816737087,41.733420367860276],[-87.5744087250343,41.733427328668995],[-87.57415500577666,41.7334310039887],[-87.57384171048598,41.733435080822524],[-87.57380987974219,41.7334354867924],[-87.57355824288605,41.73343869512843],[-87.57320346761654,41.73344311834327],[-87.57279596772617,41.733448197280225],[-87.57258990177448,41.733451447977345],[-87.57233231932761,41.73345484231543],[-87.57198698149206,41.73345958745644],[-87.57152243368,41.733465968865985],[-87.57137943334978,41.733467733423794],[-87.57120705121866,41.73346986001791],[-87.57077357560281,41.73347565413029],[-87.57035894980999,41.73348119470709],[-87.57019035587197,41.73348344729254],[-87.57016206088558,41.733483764864864],[-87.57002601593082,41.733485292094244],[-87.56955831687446,41.73349143386423],[-87.56915875226477,41.73349667970727],[-87.56900939449585,41.733498786804304],[-87.56894930318602,41.73349969143426],[-87.56834330171945,41.733508808607176],[-87.56803686998809,41.733513417513755],[-87.56773089044367,41.73351841693543],[-87.5674104719082,41.73352365135596],[-87.56717483284768,41.73352667050667],[-87.56712668277284,41.73352728744059],[-87.56694607565424,41.73352960087896],[-87.566520574558,41.733535050398764],[-87.56642287610308,41.7335363015337],[-87.56591404400882,41.73354159380548]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13964949.4327","perimeter":"0.0","tract_cent":"1175721.12919662","census_t_1":"17031530200","tract_numa":"68","tract_comm":"53","objectid":"769","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1827331.907525","census_tra":"530200","tract_ce_3":"41.68156165","tract_crea":"","tract_ce_2":"-87.63239624","shape_len":"15830.5766733"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64184933744826,41.67781544468504],[-87.64190852209138,41.677814667624496],[-87.64192014700706,41.67819191404912],[-87.64192708169918,41.67841218513411],[-87.64192969993618,41.678494589234354],[-87.6419364790549,41.678701937377575],[-87.64194365431031,41.67892139015563],[-87.64195176250887,41.67918302957109],[-87.64195532957876,41.67929792904348],[-87.64195851344739,41.67940047668494],[-87.64196831952628,41.67964888348686],[-87.64198316490048,41.68002493451614],[-87.64199086591861,41.680280176573575],[-87.64199991522784,41.68058046186501],[-87.64200641866275,41.68074765888328],[-87.64201343652248,41.68092808615022],[-87.6420189725201,41.68109832327892],[-87.64202714014179,41.68134761315577],[-87.6420302019168,41.68144195171135],[-87.64203605961175,41.68162242988251],[-87.64204330204832,41.68182925927172],[-87.64205232239894,41.68208675981335],[-87.64205800156678,41.68225389639227],[-87.64206434752877,41.682440824196185],[-87.64207442947625,41.68273702624583],[-87.64208004865364,41.68291261527632],[-87.64208842045089,41.68317422837183],[-87.64209275443339,41.68329190223355],[-87.64209386667211,41.683322098547876],[-87.64210263281477,41.68355997548466],[-87.64211140106609,41.68379766032029],[-87.64211868690869,41.6839983156812],[-87.64212565151762,41.68419013124226],[-87.64213079408472,41.6843698064212],[-87.64213947152194,41.68463309533125],[-87.64214817291034,41.68489073104083],[-87.6421520465059,41.68508212044722],[-87.64184792718895,41.68508654453661],[-87.64149036653852,41.68509183963198],[-87.64132333845421,41.68509406244959],[-87.64110869177772,41.68509436149358],[-87.6409368962621,41.685096455963404],[-87.64073807955644,41.685098879670754],[-87.64061779507493,41.685100871608384],[-87.64041898149775,41.6851029673832],[-87.6401971007783,41.68510530570566],[-87.6400078018812,41.68510775893265],[-87.63972102615634,41.6851123231874],[-87.63955394642169,41.68511498194051],[-87.63935149125827,41.685117106027164],[-87.63928000112766,41.68511785601949],[-87.63900457291169,41.68511904644145],[-87.63872136945379,41.68511813095802],[-87.63857013314353,41.68512240220406],[-87.638224313751,41.68513216798815],[-87.63802604002005,41.68513511253403],[-87.63774342007363,41.68513776580681],[-87.63743410983474,41.68514061353529],[-87.63731230383328,41.68514235349337],[-87.63706575892351,41.685145874530996],[-87.63677364176107,41.68515000470769],[-87.63651616444523,41.68515338365854],[-87.63610850933428,41.685155368308294],[-87.63582339769917,41.685156755539374],[-87.63557329619493,41.6851619884042],[-87.63530789276156,41.68516712778577],[-87.63507625081897,41.685171593498325],[-87.63499709436432,41.68517215209045],[-87.63489467992855,41.68517353529],[-87.63460172384116,41.685177491284215],[-87.6343186091437,41.685181889499844],[-87.63397002491966,41.685187315684104],[-87.63368622935697,41.68518960411641],[-87.63333002897002,41.685192475591464],[-87.63306947629637,41.68519593786042],[-87.63271277217613,41.68520062467017],[-87.63248130814877,41.68520395172776],[-87.63233475370971,41.68520605855262],[-87.63218045256585,41.68520857513479],[-87.63198623921072,41.68521178074629],[-87.63172791076104,41.685216022509415],[-87.63148405653537,41.685219033982776],[-87.63127812800096,41.685220552908596],[-87.63102203959832,41.68522244115193],[-87.63085170882269,41.68522444634078],[-87.63060917516844,41.685227244757066],[-87.6303418161689,41.685230329902254],[-87.63008881018612,41.68523350198014],[-87.62970632860225,41.68523829642546],[-87.62941444421241,41.685241146923914],[-87.62914679899409,41.68524367866845],[-87.62888939352722,41.68524701627027],[-87.62768960198049,41.68526256548217],[-87.62734021319518,41.68526709117039],[-87.62708854991756,41.68527108846513],[-87.62686201130188,41.68527414192471],[-87.62669991791205,41.6852761092658],[-87.62651817102704,41.68527749390936],[-87.62625759701086,41.68527946771604],[-87.62618814337823,41.68527993201631],[-87.62584340050584,41.68528549906463],[-87.62573999563942,41.68528716302325],[-87.62560276081673,41.68528914904226],[-87.62543136246111,41.68529162921099],[-87.62536053938565,41.6852920464294],[-87.62533851346504,41.68529217611815],[-87.62508030924829,41.685293804267346],[-87.62507806148072,41.6852938304822],[-87.62473948311111,41.6852978361036],[-87.62458305875501,41.68529979342358],[-87.62441206184917,41.685302415880834],[-87.62412020784284,41.685305755880094],[-87.62387763691179,41.68530853107576],[-87.6236737109179,41.68531267835658],[-87.62348525343458,41.685315082115544],[-87.62328671526552,41.68531863079101],[-87.62313931396665,41.685319531260596],[-87.62288959931666,41.68532193529544],[-87.62288403988128,41.68510598108317],[-87.62287732430221,41.684871161745725],[-87.62287603017789,41.684825735007315],[-87.6228656289766,41.684519951819816],[-87.62285233861134,41.684138300080626],[-87.62285127364308,41.684107718860886],[-87.62284097381837,41.683746116483725],[-87.62283400922135,41.68350739831935],[-87.62282530485541,41.683227065813426],[-87.6228185474971,41.68304265958214],[-87.62281730846027,41.68300886915203],[-87.62281280240481,41.6828860048355],[-87.62280852044289,41.68276942643023],[-87.62280320954378,41.68254419176437],[-87.62279881047407,41.68235763343744],[-87.62279168122112,41.68215047460787],[-87.62278645059513,41.68196393747241],[-87.62278358184722,41.68185510653848],[-87.62277572331911,41.68163518174385],[-87.62277037074863,41.681485390224935],[-87.62275900852009,41.68118717528045],[-87.62275025218463,41.68093826471501],[-87.62274356479027,41.680730096178635],[-87.62274178606182,41.68067472587436],[-87.62273425919422,41.68044204466206],[-87.6227273857517,41.68024161069338],[-87.62272124873199,41.68004411771135],[-87.62271625101249,41.67985031192273],[-87.6227113443746,41.67966004139683],[-87.62270690706154,41.67948108317993],[-87.62270199504312,41.67932860487648],[-87.62269563118898,41.679138465283785],[-87.62268851747764,41.6789349006891],[-87.62268482897082,41.678829331212505],[-87.62267959306581,41.67861982355419],[-87.62267494708821,41.678479806165114],[-87.62266772740993,41.67825763483015],[-87.6226582884707,41.678026204089065],[-87.62295169878492,41.67802285595853],[-87.62328812012622,41.67801950469397],[-87.62331724684807,41.67801921453469],[-87.62353837072708,41.678016957603774],[-87.62380113460986,41.67800957897407],[-87.62389257668534,41.67800912751917],[-87.62413214130899,41.678007944618535],[-87.62448173724198,41.67800359729707],[-87.62452603624808,41.67800301153687],[-87.62480439079887,41.677999329806774],[-87.62496599341213,41.677997060205094],[-87.62511431317981,41.67799636692794],[-87.62546737127,41.67799471559305],[-87.62573941463019,41.67799232921853],[-87.62592330150777,41.677990843132505],[-87.6262905973831,41.677984139228805],[-87.62652386155665,41.67798022367865],[-87.62686545639312,41.67797774093451],[-87.62717144687018,41.67797413278266],[-87.62746103458097,41.67797190501653],[-87.6277823379564,41.67796943186042],[-87.62817359163448,41.67796497254856],[-87.6282930094747,41.67796405831445],[-87.62866128757874,41.677959223673746],[-87.62901395290316,41.67795459267851],[-87.62937169629942,41.677951625135485],[-87.62961777937115,41.67794983897836],[-87.62986678281581,41.67794721421048],[-87.63008880217988,41.67794487331382],[-87.63025874899255,41.67794278454306],[-87.63046237634758,41.6779403251958],[-87.63065798681473,41.67793795368945],[-87.6307876249741,41.67793635865271],[-87.6310694761396,41.67793224786808],[-87.63126232982826,41.677929434761886],[-87.63147488266115,41.677927549567954],[-87.63170449632571,41.67792549370324],[-87.63196793640559,41.67792314983365],[-87.63211232438354,41.6779217256442],[-87.63227311749202,41.67792024080148],[-87.6325293054535,41.67791787473385],[-87.63282636486491,41.677914114733476],[-87.63302135230188,41.67791176284979],[-87.63325917412001,41.67790884826245],[-87.63347471460676,41.67790638753543],[-87.63376080773195,41.67790312092885],[-87.63416900440356,41.677899128266986],[-87.63436457297902,41.67789718901569],[-87.63454359471177,41.67789531403362],[-87.63468089332164,41.6778935361456],[-87.63492577536151,41.677890364639325],[-87.63507583948751,41.67788875276985],[-87.63534477613186,41.67788585714429],[-87.63554020002174,41.6778837506275],[-87.63588878442786,41.67787969644535],[-87.63613555599545,41.67787682582511],[-87.63639043009763,41.677874474464204],[-87.63663666528939,41.67787215277385],[-87.63684966468938,41.67786962914701],[-87.6370928275869,41.67786699696064],[-87.63730802047708,41.67786466689873],[-87.63775078195417,41.67785982798884],[-87.63804769168257,41.67785635546155],[-87.63829660401096,41.677854245649044],[-87.63852759878584,41.67785228714078],[-87.63875689946877,41.67784862357494],[-87.6389694945087,41.677846175905046],[-87.63916579531977,41.677844233180636],[-87.63949998905466,41.67783961925086],[-87.63974384782817,41.6778362518193],[-87.63999908777764,41.677833894936455],[-87.6402453212463,41.67783167527635],[-87.64044875427581,41.67783023990916],[-87.64070474620343,41.677827391736955],[-87.64084871840852,41.67782578967815],[-87.6410178925778,41.67782400965995],[-87.64133251417914,41.67782096465839],[-87.64158346765277,41.67781893521085],[-87.64166241005057,41.67781789875191],[-87.64184933744826,41.67781544468504]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13734388.9936","perimeter":"0.0","tract_cent":"1195374.69637135","census_t_1":"17031510200","tract_numa":"43","tract_comm":"51","objectid":"770","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1839419.69889821","census_tra":"510200","tract_ce_3":"41.7142705","tract_crea":"","tract_ce_2":"-87.56005726","shape_len":"19882.8054267"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.55649500335024,41.715433046159916],[-87.556389363044,41.713361276056716],[-87.55590141401287,41.71336439043689],[-87.55548420313927,41.71336513629546],[-87.5551154821298,41.71336579409867],[-87.55508998818333,41.71336593539185],[-87.55508825383836,41.71336594505153],[-87.55513158510722,41.7118390241079],[-87.55514611534628,41.710025194833676],[-87.55514643440026,41.709985349499085],[-87.5550036344727,41.70818272232966],[-87.55501755183045,41.70812801254889],[-87.55502001968661,41.70789001449581],[-87.55501749081682,41.707759614503786],[-87.55501252570326,41.70754275278333],[-87.5550067149126,41.707238121177944],[-87.5550020560136,41.7070096607255],[-87.55500063996482,41.70694021162395],[-87.5549956213766,41.70680976757827],[-87.55499466145578,41.70654018658109],[-87.55498677658048,41.706389212067926],[-87.55523874343885,41.70639532388981],[-87.55532956707893,41.7063975269664],[-87.55574691713535,41.70639683906295],[-87.55600537830286,41.70639674378379],[-87.5563718335665,41.706396606718165],[-87.5574467978703,41.70639619911754],[-87.55766844708421,41.70639550411104],[-87.55802419858455,41.706394388016015],[-87.55819584940066,41.706393765748906],[-87.55844213949013,41.7063929245271],[-87.55871912564106,41.70639226143087],[-87.55861747271315,41.70582079219306],[-87.558428924819,41.705244585828346],[-87.55816233361209,41.70476356058654],[-87.55806062185528,41.70458037739046],[-87.5579274104633,41.70423781067862],[-87.55788659786381,41.70401524502172],[-87.5578606302965,41.7037763144179],[-87.55785624146135,41.70353203995356],[-87.55792553543456,41.70317471666888],[-87.55799359266676,41.702958374487636],[-87.5581043295153,41.70277113144315],[-87.55816062922172,41.70277136029239],[-87.55833751801306,41.70277207915165],[-87.5596026715589,41.70277721160496],[-87.55960819881123,41.70312620466795],[-87.55960997560608,41.70325602303309],[-87.55961351183652,41.70348338641989],[-87.55961781379546,41.70373240764719],[-87.559623166382,41.70411063856995],[-87.55962879075084,41.70458386321687],[-87.55963394067457,41.70501721514227],[-87.55963818887501,41.70537458171097],[-87.55964262241768,41.70571954517822],[-87.55964471672408,41.706398720585774],[-87.55964609108256,41.70684446527723],[-87.55964478410192,41.70706037954611],[-87.55964663514438,41.70721143935638],[-87.55965407988128,41.7077939712662],[-87.55966236782332,41.70816769383557],[-87.56031315503887,41.708158833262594],[-87.56088614892379,41.70815387131875],[-87.5614916210078,41.70814880907183],[-87.56150286569174,41.708148714999666],[-87.56150550279578,41.70814869291941],[-87.56209166346719,41.70813932177118],[-87.56269877330526,41.7081296128075],[-87.56276879036677,41.70812849282527],[-87.56330346817934,41.708120600171526],[-87.56390722601954,41.70811168510715],[-87.5640319854683,41.70810984248291],[-87.56451109344978,41.70810293390883],[-87.56451744140665,41.70853659530286],[-87.56452098610964,41.70877877719504],[-87.56452499023275,41.709057462142546],[-87.56453054948263,41.70948226501601],[-87.56453669931754,41.70989617192489],[-87.56454262282944,41.7102947738728],[-87.56454717702569,41.710613364815394],[-87.56455073002861,41.71089303461116],[-87.5645552829514,41.711199440740444],[-87.56456260208927,41.71170979342065],[-87.56456940585493,41.7121842238825],[-87.56457172418091,41.71237077065223],[-87.5645748008834,41.71261053480293],[-87.56457827812483,41.712890423541],[-87.56458100324703,41.71308893823211],[-87.56458249760908,41.71319712920891],[-87.56458631412062,41.71352625103847],[-87.5645916594552,41.713987169282525],[-87.56459266753492,41.71407414369618],[-87.56459669320695,41.71435411836216],[-87.56459824550974,41.714460553340444],[-87.56460072216557,41.71463381860495],[-87.56460468463129,41.714904653973484],[-87.5646052037492,41.71494011428668],[-87.56461114113749,41.71535569039875],[-87.56461832444728,41.71585845020377],[-87.5646192475859,41.71592544512788],[-87.56462351369021,41.71629280032248],[-87.56462956237118,41.71672575655719],[-87.56463515349346,41.71713450181982],[-87.56463549373284,41.7171593706104],[-87.56464320892212,41.717799780695614],[-87.56465127937714,41.71833975117157],[-87.56465621964429,41.71879811219051],[-87.56466009165732,41.71895124366666],[-87.56466433560328,41.71911908660239],[-87.56466878412657,41.71944662281735],[-87.56467194640562,41.71968531696571],[-87.56467724682275,41.72004277186829],[-87.56468133254624,41.72026265660543],[-87.56468188863207,41.720292590085286],[-87.56468413857498,41.72041423339342],[-87.56468772641506,41.72074019951919],[-87.56469145096462,41.72106698983518],[-87.56470245821056,41.721738596906626],[-87.56470837884693,41.72206553907188],[-87.56471662063171,41.72260033809011],[-87.56420902150653,41.72260677916445],[-87.56339977719459,41.722614589193526],[-87.56338813672356,41.72261470137701],[-87.56314117013854,41.72261826487561],[-87.56258420424894,41.722626299040535],[-87.56171267750783,41.72263565338804],[-87.56132948740245,41.72263814391694],[-87.56097630354822,41.72264629412157],[-87.56072257691245,41.72264927046928],[-87.56029820487774,41.722654248016994],[-87.56011085624233,41.72265434426798],[-87.55989967936044,41.72265445217203],[-87.55985859339985,41.72265447310064],[-87.55973462108904,41.722657752811045],[-87.55941000096163,41.72266633995661],[-87.5593889076163,41.72266689823501],[-87.55905008557824,41.72266565847382],[-87.55853204800921,41.722675009971525],[-87.55835582840417,41.72267722236508],[-87.55798630957534,41.72268186068795],[-87.5576418526798,41.72268618346029],[-87.55720650181654,41.72269153157773],[-87.55684544548264,41.72269630983546],[-87.55660355559507,41.72270052038639],[-87.55659516692583,41.722165042350376],[-87.55659448918024,41.722121189696715],[-87.55658782115002,41.72166202143752],[-87.55658081209025,41.72136004396793],[-87.55658051637586,41.72134730890724],[-87.55657718590277,41.721203813728025],[-87.55657339959691,41.720874950855524],[-87.55657124164716,41.72068756830542],[-87.55656875329763,41.72035960580508],[-87.55656795717441,41.720254685607465],[-87.55656305056894,41.71994314572105],[-87.55655700871253,41.71955953219804],[-87.55655301148936,41.71930576567401],[-87.55654828230068,41.71904875590057],[-87.5565384443234,41.71851406989247],[-87.55653527446462,41.71815072872803],[-87.55653048956198,41.71783633518987],[-87.55652034076321,41.71728361517545],[-87.55651500537813,41.716993040166734],[-87.55650955543763,41.71649663883389],[-87.55649785123023,41.71583902154753],[-87.55649500335024,41.715433046159916]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15215851.2607","perimeter":"0.0","tract_cent":"1180846.15382793","census_t_1":"17031490500","tract_numa":"35","tract_comm":"49","objectid":"771","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1840640.85787767","census_tra":"490500","tract_ce_3":"41.71796726","tract_crea":"","tract_ce_2":"-87.61322863","shape_len":"16155.4543146"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60318224047145,41.72204834956649],[-87.60336860217834,41.72120805443684],[-87.6034919107133,41.720666505919645],[-87.60361831714557,41.72013220377256],[-87.60363774795258,41.7200500706628],[-87.60378967734728,41.719432411443556],[-87.60384466066725,41.71918928470399],[-87.60389802204197,41.71895988732988],[-87.60389802781832,41.71895986239327],[-87.60395916164167,41.718697049839605],[-87.60401824057264,41.718435489877855],[-87.6040554431842,41.71827078235494],[-87.60415437748262,41.71783654562508],[-87.60423490633586,41.717482799474496],[-87.60425080941384,41.71741294085215],[-87.60435215637187,41.716975645555024],[-87.60444094561298,41.71658506138173],[-87.60448058322575,41.71641069154612],[-87.60453283688382,41.71618176259892],[-87.60453919900975,41.716153755739086],[-87.60464930973582,41.7156687925052],[-87.60473758656288,41.71527998801809],[-87.6047700608768,41.715138504725104],[-87.60485716480545,41.71475531880076],[-87.60495710087275,41.714315681140725],[-87.605002172882,41.714122355081756],[-87.60503788471203,41.71396972282195],[-87.60507688454472,41.71379669172481],[-87.60510462554579,41.71367361217165],[-87.60512413957845,41.713587032618975],[-87.60515640386522,41.713443883137394],[-87.6051564081013,41.7134438647773],[-87.6053873214698,41.713440197570584],[-87.60565290900135,41.71343570471657],[-87.6058992619499,41.713431775842835],[-87.6102713478832,41.713360917310595],[-87.6114710611291,41.71334135984362],[-87.6139485939622,41.71330132827692],[-87.61395261275588,41.71344438852083],[-87.61402944663769,41.71344312163801],[-87.61410566802,41.71344186486623],[-87.61436500131644,41.71342197609263],[-87.61446214117805,41.71341450344684],[-87.61449049205464,41.713416087540374],[-87.61448941455677,41.71397860391992],[-87.61453989810859,41.71396437756079],[-87.61464566604462,41.713932214292846],[-87.61472454233288,41.7139073775007],[-87.614777019924,41.713891651386334],[-87.61484231163097,41.713876307244576],[-87.61494404600087,41.71385443986994],[-87.61505830458673,41.71383602620435],[-87.6151384904226,41.71382852110984],[-87.61521717080574,41.71382115694009],[-87.61530436680921,41.71381882028195],[-87.61542928959325,41.71381630761094],[-87.61558549799754,41.71381316692421],[-87.61571847640768,41.71381084147045],[-87.6159690037308,41.713807081461006],[-87.61619513398006,41.713803690621354],[-87.61635360510616,41.713801832533996],[-87.61667850825052,41.71379855559468],[-87.616746263251,41.71379884091622],[-87.61691588350523,41.7138016823448],[-87.61697351001551,41.71380374253188],[-87.61708601718087,41.71380776502144],[-87.61725559643463,41.713817603710496],[-87.61740812509812,41.71382920205997],[-87.61758994308894,41.713848446646004],[-87.61774256785273,41.713864601271275],[-87.6178537357488,41.713880414698956],[-87.6179578005547,41.71389601914038],[-87.61806237084045,41.713912285270894],[-87.61820373755829,41.713936353259356],[-87.61831612479368,41.713957801057504],[-87.61843554161767,41.71398283128027],[-87.61855377502931,41.71400889658528],[-87.61868796777443,41.71403915060846],[-87.61883596639078,41.71407940390131],[-87.61904958783407,41.71413750508585],[-87.61912931215247,41.71416165666164],[-87.6192012130238,41.71418449717527],[-87.61931623314348,41.714222973772934],[-87.61936431770603,41.714240040339796],[-87.61943881770442,41.714266327254194],[-87.6194933992027,41.714285437483255],[-87.61963999108367,41.71434388984269],[-87.61985058104933,41.71442786008058],[-87.61996825303733,41.71447478057315],[-87.62011694752229,41.714541869128915],[-87.62033808237965,41.71465842027516],[-87.62040465854624,41.71467909026906],[-87.62047998695913,41.71473321207486],[-87.6206689176786,41.714832788690885],[-87.62075355547834,41.71488306809799],[-87.6208977040263,41.71497228921005],[-87.62129885378052,41.71513192771027],[-87.6214677373031,41.715200510400045],[-87.62136269400891,41.71530857586309],[-87.62142796322514,41.71536110860218],[-87.62154936374749,41.71545881912168],[-87.62162006065755,41.71552127837033],[-87.62167519349742,41.715570249178704],[-87.62175609558079,41.715647262102785],[-87.62185102663021,41.71574082720261],[-87.62193866629927,41.715831328606036],[-87.62204657524006,41.71594712082142],[-87.62219047077481,41.71611774761226],[-87.62230267592808,41.716265043244],[-87.62239940308632,41.716392703997165],[-87.62243465321802,41.716444570175064],[-87.62258466498945,41.71667528001231],[-87.62276102454106,41.7169213215274],[-87.62280467597598,41.71698222059866],[-87.62287785379006,41.717162261320176],[-87.62299278336563,41.71748235571802],[-87.62307227639289,41.717707689163404],[-87.62316168708341,41.717963765326665],[-87.62318117888361,41.71801989322348],[-87.623219533479,41.71813033661245],[-87.62321953844653,41.71813035118804],[-87.62325786440391,41.71824071260465],[-87.62334992510729,41.718505778898255],[-87.62345341860147,41.718800417161894],[-87.62351276524524,41.71897941147169],[-87.62356194892358,41.7191500005182],[-87.62359688070055,41.71929097209833],[-87.62362402276791,41.71941748815679],[-87.6236491190419,41.719556834981134],[-87.62366541666023,41.719670248536545],[-87.62367021674625,41.719710616366335],[-87.62368050201484,41.719807256011855],[-87.62368811399426,41.71990779967843],[-87.6236938940343,41.720008387190205],[-87.623696616398,41.72011049263507],[-87.62369868157838,41.72019911914372],[-87.62370127155606,41.72032660898315],[-87.62370508112372,41.720516374649634],[-87.62370845426706,41.720655916599185],[-87.62371400168702,41.7208974782618],[-87.6237213642532,41.72134029165309],[-87.62372917810666,41.721670677783024],[-87.62353696471955,41.721716633886686],[-87.62340544579162,41.721717989422864],[-87.62307174252086,41.72173453372491],[-87.6226070558904,41.72174705612975],[-87.62219795961363,41.721754297594806],[-87.62174313903066,41.721762346420654],[-87.62106384909224,41.72177345136126],[-87.62058946584021,41.72178195038946],[-87.62026957764108,41.721787680595526],[-87.6196421961981,41.7217984403255],[-87.6192356713045,41.72180497094581],[-87.61901144828234,41.7218089284389],[-87.61899206654432,41.72180927064364],[-87.61897268517546,41.72180961257299],[-87.61879638468174,41.72181272345436],[-87.61820257340383,41.72182198259088],[-87.61794875632698,41.72182561688656],[-87.61777090026573,41.72182946708036],[-87.6174929255485,41.72183548430759],[-87.61713720703955,41.721841967236266],[-87.6167650088297,41.721848044422515],[-87.6165610608952,41.72185104916654],[-87.61628473988206,41.721855119832234],[-87.61590406770773,41.72186232168049],[-87.61553380853121,41.72186862652952],[-87.61535348013904,41.721871478639],[-87.61505866197808,41.721876140733556],[-87.61466938818133,41.72188276302823],[-87.61436557582199,41.72188915034888],[-87.61414331283163,41.721892472550536],[-87.61380649918809,41.72189750636132],[-87.61348452438659,41.721903311088134],[-87.61321332953635,41.7219082256578],[-87.61293140263014,41.72191300644102],[-87.61263907171823,41.721917962779756],[-87.61221389613046,41.72192484555276],[-87.6119442829544,41.721929190746174],[-87.61172471073533,41.72193312314762],[-87.61147004039148,41.721937683736975],[-87.61102815974695,41.72194467672318],[-87.61075751127176,41.72194983591845],[-87.6105161067802,41.721953922362175],[-87.61021615425072,41.72195899940529],[-87.6098939662724,41.72196416153469],[-87.60970836038472,41.72196727398062],[-87.60938792495715,41.72197297153833],[-87.60930724774622,41.72197440592854],[-87.60922913519461,41.72197579440199],[-87.60898124292156,41.72198020145658],[-87.60872643171626,41.72198419331439],[-87.60836830400184,41.72198978288629],[-87.60809538736312,41.721994679176696],[-87.60772776052936,41.72200127296493],[-87.60726925009672,41.72200814648037],[-87.60712533882534,41.72201044819019],[-87.60689407626062,41.72201482246415],[-87.6066066475702,41.72202025905663],[-87.6059217054291,41.722031897077315],[-87.6051079532622,41.72204334924434],[-87.6050475945808,41.722044198356905],[-87.60469548759588,41.72204531423497],[-87.60448161243008,41.72204432475854],[-87.60421554015102,41.7220430931582],[-87.60391165841327,41.72204075922329],[-87.60391156867449,41.722040758653634],[-87.60391015228848,41.72204074774157],[-87.60382219092844,41.72204007160846],[-87.60366023061805,41.72203882728778],[-87.60318224047145,41.72204834956649]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"12212598.7256","perimeter":"0.0","tract_cent":"1196124.93480041","census_t_1":"17031460300","tract_numa":"60","tract_comm":"46","objectid":"772","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1850283.49566874","census_tra":"460300","tract_ce_3":"41.74406317","tract_crea":"","tract_ce_2":"-87.55695077","shape_len":"15712.2322568"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.55399676470876,41.74586545262196],[-87.55397501171767,41.74462201835349],[-87.55337911404726,41.74463101926607],[-87.5532600397589,41.744632817432084],[-87.55293984466098,41.74463740201948],[-87.55276094205554,41.74463996346243],[-87.55275182219918,41.7445491781937],[-87.55212646598349,41.744177026106996],[-87.55194139586159,41.74407603971544],[-87.55191213796115,41.744059280247214],[-87.55179594312773,41.74399272138334],[-87.55178680487751,41.743978686612515],[-87.55177029465389,41.743953330848264],[-87.55174712849345,41.7437062135549],[-87.55174398061703,41.743533712774465],[-87.55173417882573,41.74346698673141],[-87.5517053595297,41.74327079291539],[-87.55170055065587,41.743249574190365],[-87.55169738233086,41.74323312469628],[-87.55161973911606,41.74291625034892],[-87.55161362843737,41.742890073138874],[-87.55156951061461,41.74270108463335],[-87.55154222602218,41.74253983588787],[-87.55151808920654,41.74208283422207],[-87.55151802734838,41.74194810967852],[-87.55150715494564,41.74168235921276],[-87.55150494961508,41.741546995471424],[-87.55150326866374,41.741425795623094],[-87.55149648094613,41.74101891229495],[-87.55149204596935,41.74075306316026],[-87.55148760165531,41.74047001293152],[-87.55148413905331,41.74025401297475],[-87.55147638954665,41.73980850463111],[-87.55147266320093,41.739593106327305],[-87.55146958738082,41.73941777927688],[-87.55146496836913,41.73919991489015],[-87.55145532451878,41.738744998449505],[-87.55145327861418,41.7386236862869],[-87.55145081162188,41.738488759507604],[-87.55144858121054,41.73836755585624],[-87.55144164275058,41.73793676263237],[-87.55144003597911,41.73784262205549],[-87.55143868809668,41.73774837346664],[-87.55143060175693,41.73737838700096],[-87.55164987064263,41.73737540927862],[-87.55199322561234,41.73737074530908],[-87.55206556399921,41.737369762683514],[-87.55213790128549,41.73736878000491],[-87.5522195476027,41.73736767065975],[-87.55265545863045,41.73736358366585],[-87.5528102412159,41.737362134604176],[-87.55320547792294,41.73735842455359],[-87.55350552181325,41.73735508250274],[-87.5538701322014,41.737351020145795],[-87.55420289940412,41.737347311525326],[-87.55469037804001,41.737341877079814],[-87.55489493414571,41.73733902013828],[-87.55508025097241,41.737336431268545],[-87.55558507867732,41.737329377780945],[-87.55592738488224,41.73732459396293],[-87.55628772254181,41.737320433276764],[-87.55670673891112,41.73731559397096],[-87.55688713947963,41.737313480220664],[-87.55697211883431,41.73731248442486],[-87.55750892387938,41.73730619234398],[-87.5576534860842,41.73730449787416],[-87.55774502442509,41.737303424487074],[-87.5581004063562,41.73729926719995],[-87.55835501151901,41.737296014251484],[-87.55871944562986,41.7372913573633],[-87.55906464153922,41.737286939614386],[-87.55932024382584,41.73728336000816],[-87.5597361700862,41.73727753381782],[-87.55993075759442,41.73727480771306],[-87.56042712096499,41.737267851882216],[-87.56053661764365,41.73726631719857],[-87.56060202908169,41.73726540033874],[-87.56115441028373,41.73725874014551],[-87.56115349034603,41.73733553499814],[-87.5611560192411,41.73769026581085],[-87.56115723782072,41.7377597304454],[-87.56115908907688,41.73786526334336],[-87.56116292264537,41.73814778787653],[-87.56116682884537,41.73843036777015],[-87.56117152225666,41.738699231416284],[-87.56117399226518,41.738889833943624],[-87.56117638991134,41.739074854886105],[-87.56118144175508,41.73946471208114],[-87.56118506150133,41.73974674112471],[-87.56118742571265,41.73993476929818],[-87.56119034405788,41.740162181953686],[-87.56119408698427,41.74045839984275],[-87.56120196378713,41.74089298804721],[-87.5612087129917,41.74126535088823],[-87.56121210347452,41.741453358465996],[-87.56121542299232,41.74164117345953],[-87.56121921282752,41.74186922336865],[-87.56122769843243,41.742298736127296],[-87.56123176977337,41.74270803347052],[-87.56123555412901,41.74307748487384],[-87.56123868093617,41.743238541568644],[-87.56124116173065,41.74331408144826],[-87.56124834671665,41.743762219447554],[-87.56125354243869,41.744082597049626],[-87.56126072874942,41.74452570771134],[-87.56126735656557,41.74493435630865],[-87.56126794795226,41.744972836766905],[-87.56127975610936,41.74574066057866],[-87.5612915385735,41.746343336187486],[-87.56130411291214,41.74698649000416],[-87.56131433247587,41.7475955187397],[-87.56132358019738,41.74816155251372],[-87.56133124870597,41.74863092301767],[-87.56134388896909,41.74940454076069],[-87.56135211249469,41.749879689448065],[-87.56135385887752,41.749980609075884],[-87.56135723418352,41.750175613682615],[-87.56136546432046,41.75065015860514],[-87.56137820382469,41.751350167239934],[-87.56138629784267,41.751794917947464],[-87.56098015272713,41.75180012741594],[-87.56078119905547,41.75180267903654],[-87.56017060977011,41.75181219640857],[-87.55990669740139,41.75181630886217],[-87.55943818022445,41.751823608418846],[-87.55895956120287,41.75182979651835],[-87.55844476571697,41.7518364472195],[-87.55774428414729,41.75184549523029],[-87.55733083560432,41.75185083349698],[-87.55697745637364,41.75185581409682],[-87.55653460433054,41.75186205593894],[-87.5559321244078,41.751870540820114],[-87.55550679473895,41.751876429081776],[-87.55532074037264,41.751879000118095],[-87.55479256070538,41.751886297402926],[-87.55472020781228,41.751887164709075],[-87.55407169199194,41.75189493623571],[-87.55410901864526,41.75180973552066],[-87.55410395991463,41.75145560441604],[-87.5540922468665,41.7508481568502],[-87.55408377553921,41.75040928603927],[-87.5540783989138,41.75012647674724],[-87.55407748341995,41.75007827378845],[-87.55406760748485,41.74955841625963],[-87.55405895599746,41.74899201653538],[-87.55404283975508,41.748259702296146],[-87.55403097918892,41.747720776918236],[-87.55402301898182,41.74718514530876],[-87.55400820907428,41.74644072937563],[-87.55399676470876,41.74586545262196]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2315686.23335","perimeter":"0.0","tract_cent":"1180053.96304648","census_t_1":"17031380200","tract_numa":"10","tract_comm":"38","objectid":"782","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1878026.11143017","census_tra":"380200","tract_ce_3":"41.8205744","tract_crea":"","tract_ce_2":"-87.61498648","shape_len":"7066.92751862"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61622246629109,41.816641643055],[-87.6165289977005,41.816638075182965],[-87.6165342600691,41.816847900203705],[-87.61653927558633,41.81699686313663],[-87.61654691529081,41.817213159427205],[-87.61655230892649,41.81736769558131],[-87.61655834287959,41.81753870108187],[-87.6165642954424,41.817707401430056],[-87.61656888236989,41.81786187765107],[-87.61657393588854,41.81804695540498],[-87.61657748515022,41.81825175507671],[-87.6165825406086,41.81843807708257],[-87.61659051125487,41.81873183682326],[-87.61659602331622,41.81894814721317],[-87.6165999768593,41.819140682484665],[-87.61660587572399,41.819335699457184],[-87.61661417544018,41.819610096259],[-87.61662539610711,41.81995934725407],[-87.61663341355228,41.820237848515745],[-87.61664089213541,41.820497595352066],[-87.61664955727899,41.820760166298584],[-87.61665862532368,41.8210886024994],[-87.61666597203019,41.82135469514633],[-87.61667093395094,41.82153440332491],[-87.61667442470068,41.82166551886695],[-87.61668117158455,41.821895065325656],[-87.61668274960822,41.82194875198539],[-87.61668730341589,41.82209577554518],[-87.61669472707433,41.82233543939005],[-87.61670200921732,41.822651594454946],[-87.61670728514831,41.82288063937442],[-87.61671537774478,41.82321433808808],[-87.61672560557774,41.823573709016294],[-87.61673229763211,41.823838139374836],[-87.61610922731991,41.82384759233591],[-87.61547482917396,41.823855372310994],[-87.61514774091994,41.82385938205802],[-87.61436403577905,41.823868988203984],[-87.61307586545516,41.8238847762812],[-87.6126242723945,41.82389080517135],[-87.61267951800139,41.82365896171786],[-87.61276035948899,41.823295853583275],[-87.61276171323276,41.823289772543625],[-87.61276361788029,41.82328121853192],[-87.61280407457481,41.82309950068808],[-87.61289634382585,41.822680316363474],[-87.61293240426632,41.822516492329385],[-87.61298695927532,41.82226864030969],[-87.61301725539025,41.822123591503185],[-87.61306540670707,41.8218930504621],[-87.61311466716771,41.821657199323674],[-87.61316261927944,41.82142760813701],[-87.61317878343536,41.821353145756504],[-87.61321749140333,41.8211939183781],[-87.61326201313479,41.82101077269745],[-87.61335759462932,41.82056754108437],[-87.6134146722869,41.820286200340746],[-87.61346107891322,41.82005745357696],[-87.61356004388998,41.81954445612604],[-87.61359023040808,41.819385892523876],[-87.61364043465352,41.819122177525415],[-87.61366187407121,41.819011388432116],[-87.6136938641795,41.81884100498729],[-87.61369457840203,41.8188373068918],[-87.61372848478771,41.81866174657013],[-87.61376342075233,41.818483891885855],[-87.61379866533797,41.8183044704931],[-87.61382332061423,41.8181731469072],[-87.61384802795787,41.81804371718609],[-87.61386782760032,41.8179430166797],[-87.61390197877842,41.81777286622146],[-87.61393839054129,41.81758227383229],[-87.6139829927052,41.81734880764628],[-87.61400057503235,41.81725610621682],[-87.61402240675388,41.817144304094946],[-87.61404538916202,41.81702798112396],[-87.61407238764649,41.81689038801937],[-87.61409518290863,41.81674818482938],[-87.61409010861072,41.81668275102187],[-87.61438398780088,41.816677215006685],[-87.61455691865237,41.8166739338575],[-87.61471964792912,41.81667097529447],[-87.6148758463741,41.81666813536919],[-87.615263466102,41.816660615021114],[-87.61559637982187,41.81665395134631],[-87.61577745925298,41.816650280191254],[-87.61583043577753,41.81664949639278],[-87.61600699630137,41.81664688392935],[-87.61622246629109,41.816641643055]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"17246247.3698","perimeter":"0.0","tract_cent":"1186737.13540291","census_t_1":"17031450200","tract_numa":"69","tract_comm":"45","objectid":"774","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1850250.29883173","census_tra":"450200","tract_ce_3":"41.74419935","tract_crea":"","tract_ce_2":"-87.59134909","shape_len":"16999.0852746"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58543168885424,41.747155573566566],[-87.58541231083859,41.74633092165161],[-87.58540555202674,41.74602758414137],[-87.58539491481777,41.7455501913734],[-87.58538057793966,41.74492900727614],[-87.58537537928763,41.74420512570499],[-87.58537242295819,41.74379351436096],[-87.58537127734876,41.74363399202503],[-87.58536810836395,41.74347367658167],[-87.58536223074222,41.743295492349695],[-87.58535198977134,41.74295950854141],[-87.58533184717086,41.742750206514344],[-87.58532409358274,41.742383985923524],[-87.58531101930208,41.74176645715791],[-87.58531575829042,41.74147274142294],[-87.58531963801403,41.74123225191959],[-87.58529370785946,41.74098495840184],[-87.58529672171696,41.74056073005732],[-87.58529868038605,41.74028500072862],[-87.58527562022704,41.74012194860077],[-87.58526879543564,41.73965054326392],[-87.5852633978859,41.73927766558255],[-87.5852487018695,41.73900324903717],[-87.58524969293366,41.73873673804811],[-87.5852509293184,41.73840409908554],[-87.58522758106663,41.73810808335564],[-87.58522284816316,41.737828703776],[-87.58521557867655,41.73739956235221],[-87.58520516397326,41.73711625459052],[-87.58520650786748,41.73691951598732],[-87.58563658566848,41.73691346504758],[-87.58602360723107,41.73690801860769],[-87.58624072201752,41.736905643358554],[-87.58629268172854,41.736904986379706],[-87.58658470325656,41.73690129308695],[-87.58691334790795,41.73689572055848],[-87.58729142841133,41.736889308063596],[-87.58768653292768,41.73688399714388],[-87.58785260495605,41.73688193250934],[-87.58812707218186,41.73687852014978],[-87.58863837096108,41.736872161419605],[-87.5886830404649,41.73687160594944],[-87.58905820360017,41.73686711719127],[-87.58934580214142,41.73686367528418],[-87.58980493826998,41.73685817917033],[-87.58999153501617,41.736855544459196],[-87.5902757149792,41.73685182124065],[-87.59056538978098,41.73684802553763],[-87.59110359032373,41.73684097104188],[-87.59136717951058,41.73683717083906],[-87.59158474085942,41.73683403396327],[-87.59178189053756,41.73683134371872],[-87.59211447920129,41.736826804567805],[-87.59242936759087,41.73682257404202],[-87.59270654886944,41.73681884935313],[-87.59299959237289,41.73681530798058],[-87.59322788522643,41.736812548891145],[-87.59349100281439,41.73680825476047],[-87.59376687426325,41.73680375204512],[-87.59449331404537,41.73679445697423],[-87.59523029922241,41.73678403045418],[-87.59534740898857,41.73678237318107],[-87.59539247587227,41.73685988279381],[-87.59547695347553,41.737001757179826],[-87.59556189406298,41.73714329143516],[-87.59564591873679,41.73728481974454],[-87.59572949795803,41.7374253160146],[-87.59591152581599,41.73772767218068],[-87.59619950126884,41.738217320708465],[-87.59644667253978,41.738630895308425],[-87.59657113020693,41.73884163265893],[-87.5966677393876,41.739004509261754],[-87.59676434904549,41.73916738633152],[-87.59686096311557,41.73932991948291],[-87.5969575737463,41.7394927958401],[-87.5970034054449,41.739570273193515],[-87.5971014181428,41.7397307571407],[-87.59712614450093,41.73977139437586],[-87.59714995922742,41.739811682177276],[-87.59717422730346,41.73985231646534],[-87.59719757982835,41.739892944333484],[-87.59722138680556,41.739933918420896],[-87.59724428104197,41.739974543617464],[-87.59726717138976,41.74001551182266],[-87.59728960488724,41.74005647709651],[-87.59731203303357,41.74009778509537],[-87.59733400823927,41.740138747698786],[-87.5973559788262,41.74018005303208],[-87.59737749219431,41.740221355432354],[-87.59739854333021,41.74026299763165],[-87.59748640769155,41.740429934236715],[-87.59751411758461,41.74049014340181],[-87.59756723121745,41.74061191909607],[-87.59759172327061,41.740673136750104],[-87.59761529548479,41.740734691821274],[-87.59763795178246,41.74079624047361],[-87.59765923061563,41.740858123888486],[-87.5976795896112,41.74092034389897],[-87.59769856967341,41.74098289838946],[-87.59773810456552,41.74113065824265],[-87.59774906095663,41.741173950661356],[-87.59777666567952,41.741283556870286],[-87.59780926884228,41.74143676065452],[-87.59783636918883,41.74159061527759],[-87.59785031954885,41.741692586939834],[-87.59786692507532,41.741842943987734],[-87.59787711413858,41.741993602996864],[-87.59788180769333,41.74214422682547],[-87.59788228962725,41.742262578099094],[-87.59787792901433,41.742444017405575],[-87.59786761759605,41.74262507557714],[-87.59785127496693,41.7429333620293],[-87.59783959756287,41.74315386110335],[-87.59783213286944,41.743326361517795],[-87.5978428739827,41.74350892657382],[-87.59784556363884,41.743554225101086],[-87.59786248629587,41.743837339890966],[-87.59787471991325,41.74405481819897],[-87.59768917330959,41.74405719659733],[-87.59761614403553,41.744058134631814],[-87.59761353722094,41.74405816816059],[-87.59759563212636,41.744222578154755],[-87.59758403668226,41.74431546750465],[-87.59757547514354,41.74438333394979],[-87.59756537898932,41.744465255402574],[-87.5975607794908,41.74450707632154],[-87.59755112135562,41.74459071604105],[-87.59754107213068,41.744668521332244],[-87.59753251012498,41.74473638804136],[-87.59752349473753,41.74480390880747],[-87.59751492914314,41.74487211852871],[-87.59750745171617,41.744964922539125],[-87.5975063004021,41.74502608763388],[-87.5974968657317,41.74509017505428],[-87.59748314832143,41.74516829987941],[-87.59746800162898,41.745251218080554],[-87.59745137974106,41.74534304581936],[-87.59744377311009,41.7454074882522],[-87.5974346004772,41.74548872951738],[-87.59742341910982,41.745585394900466],[-87.59741228936952,41.74567760056836],[-87.59740105737686,41.745778724841514],[-87.59739011209166,41.74587928726811],[-87.59737802949131,41.74599023151871],[-87.59737289728956,41.7460385672775],[-87.59736417036846,41.74612084049687],[-87.59735544023886,41.746203456731834],[-87.59735003304158,41.74627580283634],[-87.59733963103324,41.74634434407573],[-87.59733874955087,41.74642152224859],[-87.59733150274806,41.74649454264145],[-87.59732487066047,41.7465538457264],[-87.59731352118678,41.74662512492004],[-87.59730168659922,41.74669880254414],[-87.59728074012399,41.74679610431085],[-87.5976456110389,41.74679334142673],[-87.5976743859023,41.74679312335425],[-87.59783380212721,41.74679208572132],[-87.59778559155788,41.747002745436816],[-87.59767715048811,41.74747372832061],[-87.59766398121577,41.74754396677248],[-87.59765052603117,41.74763924515847],[-87.59764472327896,41.747706100394616],[-87.59763952063521,41.74776060983344],[-87.59761805481523,41.74795566121922],[-87.5975245980341,41.74835778921515],[-87.59735967829872,41.749080885812376],[-87.59725927228051,41.749529202805654],[-87.59725879498544,41.74953133399182],[-87.59722354328007,41.74968993491737],[-87.59721225970895,41.749755383115925],[-87.59719769057708,41.749867805888016],[-87.59718104170676,41.75008209782028],[-87.59713954836111,41.750265700194106],[-87.59710674725937,41.750410252217655],[-87.59708022174257,41.75052671479964],[-87.597383115284,41.750598292012],[-87.59720802064987,41.75136938524991],[-87.59720801185514,41.751369385193556],[-87.59714526053281,41.751369804501714],[-87.5970862537625,41.751370198373344],[-87.59703213941897,41.751370559899954],[-87.59695709452683,41.75137106141215],[-87.59694705311274,41.75137112850705],[-87.59688824933735,41.75137152495016],[-87.59660046318659,41.751373464899814],[-87.59647716019104,41.75137429579403],[-87.59612654491757,41.75137845514907],[-87.59571625040286,41.75138393068214],[-87.59549062393536,41.75138664341341],[-87.59517317175647,41.751390459572406],[-87.59486691891435,41.75139329055483],[-87.59470733416553,41.75139476562326],[-87.59453536611183,41.75139634937694],[-87.59427241039269,41.75140006448959],[-87.5939613750193,41.7514044575564],[-87.59366695222006,41.75140744736444],[-87.59366413297239,41.7514074761423],[-87.59335625601426,41.75141060604073],[-87.59305258902221,41.75141418760605],[-87.5928445890748,41.751416640148776],[-87.59244971173977,41.75141997116148],[-87.59220656895906,41.75142202166671],[-87.59194488149458,41.75142423026657],[-87.5918370744056,41.751425151230755],[-87.59149290095776,41.75142809128029],[-87.59123065870571,41.75143073677791],[-87.59107327647618,41.75143232420953],[-87.59062018269091,41.75143737605242],[-87.59035962316634,41.75144028044501],[-87.59005259306622,41.75144332710619],[-87.59004988048115,41.75144335401549],[-87.58975439508946,41.75144629947831],[-87.58947965400102,41.75144904916995],[-87.58921132735017,41.751451729976054],[-87.58890715803508,41.751457710118785],[-87.58881427876719,41.7514594596148],[-87.5884884814121,41.751465482639496],[-87.58845115753216,41.751465541718325],[-87.58824898468572,41.75146586148305],[-87.58819140837728,41.75146680480582],[-87.58806795684343,41.75146882716528],[-87.58802651211693,41.751469506207854],[-87.58790892856997,41.75147143253923],[-87.58753451260463,41.751477564977804],[-87.58747550969187,41.75147853133861],[-87.58741181245573,41.751479574220355],[-87.58736948141559,41.75148026757954],[-87.58733438265078,41.75148084240039],[-87.58727390256243,41.75148183282139],[-87.58721027679438,41.7514828746833],[-87.58715038610839,41.751483855145324],[-87.58665673698255,41.751491937313524],[-87.58661452249525,41.751492628133214],[-87.58597223310349,41.75150314031781],[-87.58591822798417,41.75150402395065],[-87.58586558456986,41.75150488568075],[-87.58582440079186,41.75150555931452],[-87.58565529833413,41.75150194330311],[-87.58565200717342,41.7514308455983],[-87.58562040883875,41.75122314339442],[-87.58561784803902,41.75110907359099],[-87.58563833007724,41.75093571218632],[-87.58566758328922,41.750679877390446],[-87.58567617981134,41.75060469392877],[-87.58566700076885,41.75042674476233],[-87.58566311017643,41.75035131318576],[-87.58566233798085,41.750336348152075],[-87.58566148865908,41.750319881758166],[-87.58566148361099,41.75031977991175],[-87.5856601531873,41.75029399128925],[-87.58565852904637,41.75026250193949],[-87.58565774233831,41.75024793500922],[-87.58565208648997,41.75014319735058],[-87.58565142279147,41.750130915027924],[-87.58565057634188,41.75011524367613],[-87.5856449203851,41.750001485221375],[-87.58564318427266,41.749969887839],[-87.5856397465307,41.749907322017506],[-87.58563644657687,41.74987883143512],[-87.58562299390303,41.74976269232447],[-87.58561739596034,41.749714361952734],[-87.58560055780086,41.749553553214646],[-87.58558760659761,41.74942986476485],[-87.58557896262317,41.74934730849231],[-87.58554591788663,41.74915344013779],[-87.5855338105789,41.74908240906443],[-87.58546181244128,41.74835524930673],[-87.58544907049587,41.74784780005853],[-87.58543168885424,41.747155573566566]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9005436.55513","perimeter":"0.0","tract_cent":"1194826.85456454","census_t_1":"17031431300","tract_numa":"43","tract_comm":"43","objectid":"775","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1854641.15831063","census_tra":"431300","tract_ce_3":"41.75605298","tract_crea":"","tract_ce_2":"-87.56156374","shape_len":"13745.3383048"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56329489013561,41.76269974172272],[-87.56299475126161,41.76236658919222],[-87.56281679607766,41.76216761460088],[-87.56259445447532,41.761919658195524],[-87.56239263318811,41.76169643012121],[-87.56209695017532,41.76136938179439],[-87.56196340329421,41.76122111663903],[-87.5616963995637,41.76092493388682],[-87.5613859885101,41.76058075945139],[-87.56077562904521,41.75990399782677],[-87.56057477502901,41.759681017524315],[-87.56042351283114,41.759512954798055],[-87.56036040116501,41.759443588028326],[-87.56012011592034,41.75917948455738],[-87.56005690549969,41.7591204736488],[-87.55965048514281,41.75874105061011],[-87.55939155885017,41.75850477894289],[-87.55925229207526,41.7583764656172],[-87.55917681397116,41.75830692320865],[-87.55891986673008,41.75807161936559],[-87.55875512997925,41.75792075813634],[-87.55844094483024,41.75763042481502],[-87.55806533371877,41.75728332505406],[-87.55820456607628,41.757280765232885],[-87.55835423005402,41.757278013527625],[-87.5582294567479,41.75716736129654],[-87.55814377869007,41.75708725355177],[-87.558063872909,41.757014182647495],[-87.55766030809866,41.75664548904259],[-87.55758934590683,41.75658061913985],[-87.55737659105468,41.7563804086724],[-87.55723319645188,41.75624546770047],[-87.55714023134227,41.756157982977676],[-87.55706929063358,41.75609302974306],[-87.5566502779405,41.75570938235727],[-87.55640834312298,41.755485691299725],[-87.55630297244763,41.75548711350244],[-87.55626856452604,41.75548757811834],[-87.55622874953075,41.755488115649335],[-87.55612839150915,41.75548947005721],[-87.55577592327356,41.755162869334775],[-87.55574648588717,41.75513534295051],[-87.55556442751053,41.75496510258374],[-87.55551492012252,41.75491880869385],[-87.55505506120743,41.7544924164017],[-87.55472098393237,41.754182648105996],[-87.55457886083438,41.754051009952434],[-87.55446919674556,41.753949436721086],[-87.55420589527608,41.753705193657645],[-87.5540729516345,41.75358187169132],[-87.55394599527897,41.75346410347814],[-87.55380839629683,41.75333646220658],[-87.55340258456033,41.75295834314739],[-87.55322140121505,41.75278936871452],[-87.55294691877825,41.75253337970864],[-87.5528960405382,41.752485929073075],[-87.55255730775623,41.752170014533576],[-87.55228777089626,41.751918631738846],[-87.55237662186002,41.751917403892],[-87.5524357033497,41.75191658782046],[-87.55248063648598,41.751915966733044],[-87.55258488093037,41.75191452610186],[-87.55289931131233,41.75191018031556],[-87.55295163384284,41.751909456928686],[-87.55350725038669,41.751901775289],[-87.55354936592917,41.751901193113035],[-87.55394586244579,41.75189644365467],[-87.55407169199194,41.75189493623571],[-87.55472020781228,41.751887164709075],[-87.55479256070538,41.751886297402926],[-87.55532074037264,41.751879000118095],[-87.55550679473895,41.751876429081776],[-87.5559321244078,41.751870540820114],[-87.55653460433054,41.75186205593894],[-87.55697745637364,41.75185581409682],[-87.55733083560432,41.75185083349698],[-87.55774428414729,41.75184549523029],[-87.55844476571697,41.7518364472195],[-87.55895956120287,41.75182979651835],[-87.55943818022445,41.751823608418846],[-87.55990669740139,41.75181630886217],[-87.56017060977011,41.75181219640857],[-87.56078119905547,41.75180267903654],[-87.56098015272713,41.75180012741594],[-87.56138629784267,41.751794917947464],[-87.56198012567347,41.75178729809551],[-87.56259729907924,41.75177893439775],[-87.5630798773899,41.75177239241797],[-87.56380680694151,41.75176376179684],[-87.56427666345508,41.751758180648174],[-87.56501926736361,41.75174575942281],[-87.56547905352711,41.75173806617614],[-87.5662325933922,41.75172791962782],[-87.56623786689084,41.75218312810124],[-87.56623895903643,41.7522774026061],[-87.56623979531415,41.75234958297285],[-87.56625613717917,41.75303315964439],[-87.5662685670898,41.7535415322347],[-87.56626867823613,41.753546079181135],[-87.56627371013096,41.75375187146891],[-87.56628877632495,41.754564174463226],[-87.56630279118572,41.7553606631716],[-87.56631465699805,41.75603496132067],[-87.56632387829923,41.756547136127466],[-87.56633356473988,41.75706968743492],[-87.56633525273958,41.75715788420258],[-87.56634147116802,41.75748281171765],[-87.56634918532595,41.75785068124343],[-87.56635857333006,41.75827503953114],[-87.56636393614973,41.758537753847726],[-87.56637312414992,41.75898784620514],[-87.5663827762463,41.75946065478645],[-87.56638625945662,41.759631290333395],[-87.56638992907996,41.759772481654736],[-87.56639287866714,41.75990033061689],[-87.56640030919404,41.76026745713468],[-87.56641179354753,41.760802773666995],[-87.56642152284451,41.76125623122095],[-87.5664404361253,41.76217347292777],[-87.56645042279949,41.76261940531639],[-87.56584041046183,41.76262628134381],[-87.56489067795633,41.76263833974494],[-87.56413260083697,41.76264795921183],[-87.56376743703899,41.76265259106676],[-87.56360304111173,41.7626498431961],[-87.56351515863683,41.76264766240685],[-87.5634833654364,41.7626468733443],[-87.56339973139562,41.76267033342762],[-87.56329489013561,41.76269974172272]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1091445.49275","perimeter":"0.0","tract_cent":"1176652.23390126","census_t_1":"17031381600","tract_numa":"4","tract_comm":"38","objectid":"783","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1874547.5397073","census_tra":"381600","tract_ce_3":"41.81110625","tract_crea":"","tract_ce_2":"-87.6275703","shape_len":"4361.44923918"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62896432357367,41.80918442614779],[-87.62901591397106,41.809183601137526],[-87.62901591767215,41.809183732062195],[-87.62901812378023,41.80927533553744],[-87.62903528068507,41.809927549632185],[-87.62904151910104,41.81015330457967],[-87.62904083150731,41.81021607567505],[-87.62903785599607,41.81027848970746],[-87.6290321243635,41.810341229874986],[-87.62902410480223,41.81040361270449],[-87.62901692364281,41.810473204946085],[-87.6290106590693,41.810542802532],[-87.62900622465813,41.81061275437291],[-87.62900270683774,41.81068271183295],[-87.62900440555654,41.81073692169281],[-87.62900431955383,41.81078666116114],[-87.62900331960405,41.81083605199067],[-87.62900048607669,41.81088543157702],[-87.62899627708669,41.81093480272905],[-87.62899069299766,41.81098416544883],[-87.62898327834398,41.81103317390891],[-87.62897714519436,41.81109076608685],[-87.62897330071245,41.81114871533209],[-87.62897175242004,41.81120633562211],[-87.62897295129595,41.81126431579121],[-87.62899375689994,41.81204381752322],[-87.62899603685246,41.81212851406657],[-87.62899603853917,41.812128561004016],[-87.6289982627149,41.812218449646714],[-87.62901720123666,41.81291732618427],[-87.62901979050535,41.81301042373783],[-87.62884364780527,41.81301188121786],[-87.62832805898763,41.813016146423685],[-87.62618331769087,41.81305902911636],[-87.62617590152426,41.812907663896844],[-87.62616777990108,41.81257555668351],[-87.62616307109711,41.81233927309145],[-87.62616181398066,41.81227754661414],[-87.62615202197723,41.811820482244144],[-87.62613856823755,41.81129948112552],[-87.62613850513127,41.81129761490432],[-87.6261331206914,41.81113847444069],[-87.6261302694716,41.81105420159863],[-87.62612472700422,41.81089038912399],[-87.62611802308813,41.81055614998609],[-87.62610795649458,41.810110746959204],[-87.62609706313876,41.809653812848296],[-87.62608506661246,41.8092364224165],[-87.62676382299136,41.80922506138418],[-87.62717255988007,41.809216350996174],[-87.62724804444714,41.80921474198462],[-87.6276082923987,41.809207063505696],[-87.62818673785992,41.809197364821294],[-87.6285760979435,41.809190835132235],[-87.62873678994869,41.809188139733976],[-87.62883261404436,41.809186532318556],[-87.62896432357367,41.80918442614779]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10196740.6139","perimeter":"0.0","tract_cent":"1192683.60800895","census_t_1":"17031430100","tract_numa":"32","tract_comm":"43","objectid":"777","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859546.06817638","census_tra":"430100","tract_ce_3":"41.76956492","tract_crea":"","tract_ce_2":"-87.56925845","shape_len":"14342.8439899"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56398185765745,41.772090493879475],[-87.56398185326854,41.772090493026795],[-87.56386527306718,41.77209080998097],[-87.56374648767388,41.77209166035382],[-87.56364110640207,41.772083826366064],[-87.5636410075058,41.77208381939163],[-87.56364100347689,41.772083819090206],[-87.56358841647693,41.77203309176551],[-87.56358091528963,41.7720258558593],[-87.56358084280737,41.772025785943136],[-87.56358051173291,41.77193083131436],[-87.56358944238933,41.7718576600639],[-87.56359189091275,41.77183760144355],[-87.56356994500631,41.77177214031421],[-87.5635309871842,41.77172179627186],[-87.56352084746777,41.77170869295425],[-87.5635159537116,41.77162742919445],[-87.56351209528935,41.77159282172495],[-87.5635053587134,41.771532405782814],[-87.56348594739573,41.77143896959019],[-87.56348537342421,41.77139515069103],[-87.56348479728884,41.771351144890914],[-87.56346381555579,41.77126647989532],[-87.56342091775062,41.77117508227863],[-87.56341807217636,41.771106455966226],[-87.56345305180201,41.77107536870327],[-87.56346772265945,41.77106233064966],[-87.56346771455678,41.77106230315247],[-87.56346771032217,41.771062289402636],[-87.56346770645412,41.771062275655275],[-87.56345828301374,41.77102950276862],[-87.56344590108183,41.77098644256946],[-87.5634139749955,41.77089731307934],[-87.56340770655042,41.77087829430637],[-87.56338496682758,41.77080930194831],[-87.56337760105527,41.770786096814696],[-87.56337292017308,41.77077135001254],[-87.56335387902493,41.77071139687832],[-87.56334523370352,41.77067585499298],[-87.56333221559143,41.77062233669172],[-87.56330547334898,41.77052885159499],[-87.56327569993658,41.77044357904342],[-87.56324006286782,41.77035826717845],[-87.56320824170929,41.77030114470683],[-87.56319556227491,41.770278384465264],[-87.56316514822191,41.77024083710436],[-87.5631334279448,41.77020167666625],[-87.56305962286294,41.77011995086258],[-87.56298723237788,41.770042624811424],[-87.56292501971929,41.7699725026687],[-87.56286299690818,41.769886465430275],[-87.56279292443507,41.76979927535484],[-87.56273522903298,41.76971930395912],[-87.56269788346387,41.76965428875501],[-87.5626416479322,41.7695748756869],[-87.56264157420755,41.769574787375035],[-87.5625809347641,41.76950201939667],[-87.56251732878633,41.76942584996738],[-87.56249764860084,41.769390682665396],[-87.56247139055158,41.769343761885466],[-87.56244830290197,41.76929648613034],[-87.56242916898788,41.769257308133284],[-87.56241809817195,41.76921572041435],[-87.56240882344213,41.76918088033315],[-87.56240692032256,41.76916050904311],[-87.5624029740022,41.76911827070764],[-87.56237662544706,41.769053329187],[-87.56236218044657,41.76903390146849],[-87.56233766293465,41.76900092619705],[-87.5622342811238,41.76894040710078],[-87.56212427105262,41.76888258798239],[-87.5621242688665,41.76888258687],[-87.56205813914143,41.76885179602114],[-87.5620178265287,41.768833025843016],[-87.5620178243393,41.768833025005016],[-87.56201782251644,41.7688330241695],[-87.56197892717573,41.768814645223685],[-87.56191648858095,41.768785141723676],[-87.56179470475075,41.76873108633722],[-87.56179470146502,41.76873108521743],[-87.5617185657439,41.768702312636556],[-87.56168084950737,41.76868805931716],[-87.56168084695143,41.768688058476705],[-87.56154000296155,41.768633873700445],[-87.56154000004567,41.76863387230871],[-87.56142097077851,41.76859465447493],[-87.5614209674928,41.76859465335514],[-87.56138929732556,41.76858418487306],[-87.56128368332465,41.768549273912946],[-87.56128368040548,41.768549272795624],[-87.56116390521493,41.768511146850216],[-87.561163902659,41.76851114600975],[-87.56109725027676,41.76849001648648],[-87.56105069975939,41.76847525927757],[-87.56105069610713,41.768475258155306],[-87.56092358526882,41.76843763068284],[-87.56092358270962,41.76843763011678],[-87.56092358015371,41.76843762927631],[-87.56088180726735,41.76843032440783],[-87.56079628619028,41.76841536900912],[-87.56079628363108,41.76841536844305],[-87.56079628106859,41.7684153681514],[-87.56078897681898,41.76841469333664],[-87.56078090252441,41.76841394748031],[-87.56064175891194,41.76840115639299],[-87.5605267042837,41.76839708936587],[-87.56045926870252,41.7684028180667],[-87.56045569833196,41.76840312144169],[-87.56041295186776,41.7684067527127],[-87.56037433147645,41.768420769504736],[-87.56037274943088,41.768421343669075],[-87.56032238057662,41.768439623690305],[-87.56027980585442,41.7684701053845],[-87.56023807856481,41.768499979690695],[-87.5602106134534,41.768521271962776],[-87.56020946011394,41.7685221662498],[-87.56016999575435,41.76855276049297],[-87.56011038689594,41.768632492884045],[-87.56004346645014,41.76871052918076],[-87.55997506063447,41.7687902014639],[-87.55989554590218,41.76887913032915],[-87.5598115987241,41.76897077358487],[-87.55977339197365,41.7690082945122],[-87.55976577153919,41.76901577819987],[-87.55973444179466,41.76904654534154],[-87.55970531939685,41.769072411491],[-87.55969733673413,41.76907950167345],[-87.55966329997727,41.76910973326769],[-87.5596632082499,41.769109801257244],[-87.55966318938465,41.76910981540051],[-87.55959450310351,41.769160862887404],[-87.55955965121562,41.76917167557629],[-87.55955809516759,41.76917215851952],[-87.55953563497663,41.76917912648296],[-87.55953563203437,41.76917912728643],[-87.559516682481,41.7691087458203],[-87.55951915259074,41.76908180145128],[-87.55951945253032,41.76907853090523],[-87.55952427585201,41.769025919395304],[-87.5595221774957,41.76897962417614],[-87.55952021968346,41.768936428207134],[-87.55947973236357,41.76882803100353],[-87.55944974165084,41.76875711383555],[-87.55944043530945,41.76873510752549],[-87.55943410882983,41.76872014722025],[-87.55941474305598,41.76862341801325],[-87.5594130772407,41.76851802548313],[-87.55942564961906,41.768386933629394],[-87.55942923390944,41.76831578212435],[-87.55942947744526,41.76831095216659],[-87.55943142671353,41.7682722611927],[-87.55943649086407,41.76815593710199],[-87.55944721439424,41.76805666628305],[-87.55948952049694,41.76801359090742],[-87.55949385604839,41.76800839305946],[-87.55949511613703,41.76800688230756],[-87.55952001926671,41.76797702311037],[-87.55952001082593,41.76795384175377],[-87.55952000863694,41.76794777081865],[-87.55951999811657,41.76791774683293],[-87.55951856432132,41.76785406935128],[-87.55947513349811,41.76780767245451],[-87.55945775590297,41.767780293339754],[-87.55945738824092,41.76777971346437],[-87.55943700024517,41.76774759059468],[-87.55943133931464,41.76770007595263],[-87.55942567838865,41.76765256158439],[-87.55942410452865,41.76753948619012],[-87.5594290898324,41.76742974757826],[-87.55942969537803,41.76731833398423],[-87.55942938408953,41.767252674445366],[-87.55942938375506,41.767252610775564],[-87.55942907297774,41.7671871526704],[-87.55942561110662,41.767137106683435],[-87.55942536349428,41.76713352289203],[-87.55942345121967,41.76710588322996],[-87.55942240011134,41.76707451356499],[-87.55942226385217,41.76707044862609],[-87.55942021334567,41.76700926291283],[-87.55940739689257,41.766934354570466],[-87.55940582891434,41.76692519042402],[-87.55940300531319,41.76690637053715],[-87.55940237103835,41.76690214142779],[-87.55939428955631,41.766848272255835],[-87.55939370603349,41.76683051852239],[-87.55939359898515,41.76682725621088],[-87.55939214224581,41.766782943928575],[-87.55944459937335,41.76674926808067],[-87.55950620885716,41.766746939052176],[-87.55953455659048,41.766717126921016],[-87.55953529686765,41.766716348411755],[-87.5595388794498,41.766712581028216],[-87.55953980273942,41.766635746809825],[-87.55953003890629,41.76660665714598],[-87.55952921575036,41.766604205340286],[-87.55952708356368,41.76659785276353],[-87.55952708039021,41.766597842313864],[-87.55952706269022,41.766597790053105],[-87.5595324780275,41.76659289723061],[-87.55954644864984,41.7665802748277],[-87.5595595443167,41.76656844319804],[-87.55956263868441,41.766565647572286],[-87.55959634526991,41.76655796471047],[-87.55963982763502,41.76654805426823],[-87.55974115513172,41.766535015415194],[-87.55983589128196,41.76652138268848],[-87.55996952229124,41.766534974924234],[-87.56034617310347,41.76653407936087],[-87.56059795545647,41.76651484790413],[-87.56131982704025,41.76645932653484],[-87.56146338649748,41.76629518437683],[-87.5618481774608,41.76629322356934],[-87.56205076537535,41.76629093388526],[-87.56244204538788,41.76628656207783],[-87.56281541240041,41.76628558917946],[-87.56291906022233,41.766313088316124],[-87.56302811212332,41.766322217078084],[-87.56336383480017,41.766322875869086],[-87.56370663593123,41.766320205618165],[-87.56405897594729,41.76631680237112],[-87.56438364884225,41.766315792503676],[-87.56457020127039,41.76631399534192],[-87.56470533135509,41.76631269361368],[-87.56506372617511,41.76630952977254],[-87.56562171514402,41.76631446725147],[-87.56605561374059,41.7663049891037],[-87.56648436943007,41.76631773229667],[-87.56686421254464,41.76632902022656],[-87.56698015542005,41.76632784687521],[-87.56717637475427,41.76632586078141],[-87.56745828194597,41.76632387094939],[-87.56771559598046,41.766321634209454],[-87.56791876838047,41.76631947528599],[-87.56815177543724,41.76631792443613],[-87.56814961662226,41.76623045247963],[-87.56814749223355,41.766144371558475],[-87.56838165711176,41.76614675887705],[-87.56865501106887,41.766145779430886],[-87.56894984418078,41.76614486265895],[-87.56907794574207,41.766144464036856],[-87.5691862092099,41.766144127072735],[-87.56939951597722,41.766143542295715],[-87.56955562129697,41.76614142425738],[-87.56977960777105,41.76613972121991],[-87.56997213799046,41.76613855326865],[-87.57016086930946,41.76613623185535],[-87.57048136058366,41.766132289154946],[-87.57076404891804,41.766129229963205],[-87.57098206876043,41.76612688589817],[-87.57137577396222,41.76612219678014],[-87.57158880684648,41.766119658496706],[-87.57185583403937,41.76611739482748],[-87.57198238581779,41.76611599694441],[-87.57215241771061,41.76611411860211],[-87.57233960654504,41.76611206550262],[-87.57259451101541,41.76611062982469],[-87.57296213571185,41.766108558183475],[-87.57322697174371,41.76610556303431],[-87.5732933637646,41.7661048131669],[-87.57346137976548,41.76610291488556],[-87.5738521009361,41.76609915420374],[-87.5739346370242,41.76609835947631],[-87.57418812515559,41.766095918838204],[-87.57454689109798,41.76609145560512],[-87.57480428881189,41.76608824303448],[-87.57507954127423,41.76608473882899],[-87.57538914527879,41.766080796475535],[-87.57570136739956,41.76607552859355],[-87.57599885050728,41.76607054690623],[-87.57629757286264,41.76606874885903],[-87.57629906175701,41.76612437945191],[-87.57629983584098,41.76615329073963],[-87.57630074220808,41.76618716348285],[-87.57630189042318,41.76623005419399],[-87.5763022592273,41.76624383187706],[-87.57630939509036,41.76651041806957],[-87.57631449032775,41.766703732183785],[-87.57632151656031,41.7669728838203],[-87.57632649801847,41.76716652648415],[-87.57633130873366,41.76735286819849],[-87.57633777728492,41.7676039861292],[-87.5763418261909,41.76776159006998],[-87.57634644278885,41.767913967126],[-87.57634847615489,41.76798106748969],[-87.57635415947136,41.76816864985818],[-87.57636185712008,41.768449276989244],[-87.57636781405864,41.768666005524125],[-87.57637472104949,41.76891726349999],[-87.57638133963762,41.76916808047787],[-87.57638564023753,41.769332382104736],[-87.57639224372491,41.76958448878172],[-87.57639814322239,41.76980109587144],[-87.57640445762281,41.770032959005704],[-87.57641104674036,41.770261382324996],[-87.57641772896329,41.77049436177145],[-87.57642263638455,41.77067562707544],[-87.57642723267453,41.770845940603536],[-87.57643184511198,41.77101488208755],[-87.57643839808712,41.77125886525672],[-87.57644141083603,41.77137055028879],[-87.57644754892009,41.7716287186908],[-87.5764517866859,41.77180696082736],[-87.57645507855307,41.77199469197097],[-87.57646288776834,41.77230336629249],[-87.57647041677573,41.77254853588115],[-87.5764776471563,41.77277545423848],[-87.57647817508273,41.77302990799482],[-87.57648078861205,41.77320671235673],[-87.57649279226493,41.77334883586758],[-87.57648746720976,41.77345562582695],[-87.57628977918172,41.77345713264376],[-87.57592731080207,41.773461274963935],[-87.57588485857275,41.77346124673081],[-87.57566336140576,41.77346109875521],[-87.57540974608544,41.773461264545865],[-87.57527179031416,41.77346164415057],[-87.57502370472717,41.773462312105636],[-87.57475911674621,41.77346652046716],[-87.57465920006099,41.77346811127433],[-87.57447824952595,41.77347097744775],[-87.57404772674472,41.77347619286192],[-87.57377171132697,41.77347953581211],[-87.57344429827704,41.77348294155864],[-87.5734356091938,41.773483030081785],[-87.57317173512043,41.77348572136786],[-87.57282722157927,41.77348748555665],[-87.57258030159157,41.77348874954012],[-87.57228477587371,41.77349269244585],[-87.5722177508178,41.77349359614238],[-87.5720281886978,41.773496151947676],[-87.57185681104149,41.77349861089816],[-87.57161687238383,41.77350159035596],[-87.57134532965821,41.77350496179579],[-87.57101915105467,41.77350932931825],[-87.57076993344425,41.77351266997775],[-87.570505025373,41.773516070571084],[-87.57021646786181,41.7735197251088],[-87.57021187781366,41.773519774752735],[-87.56998383069418,41.77352223482622],[-87.56988457986672,41.773523305312544],[-87.56975009495562,41.77352463962295],[-87.56946466374308,41.77352748976418],[-87.56924984701072,41.77352968370741],[-87.56905522766097,41.773532066500884],[-87.5688136777682,41.77353490506775],[-87.56865865882388,41.773536672537695],[-87.5683461298291,41.7735399638585],[-87.5681381684898,41.77354215334565],[-87.56752023098392,41.77354810741852],[-87.56739388626835,41.773549323360385],[-87.5672762701753,41.773550240609],[-87.56681082630512,41.77355896339622],[-87.56644818641281,41.773791082790176],[-87.56644657431234,41.77379026493366],[-87.56642930911627,41.77378150434962],[-87.56640357824632,41.77376579990804],[-87.56637977240347,41.77374843429581],[-87.56635811067562,41.77372957308523],[-87.56634459860403,41.77371547191113],[-87.56633873840327,41.7737093561088],[-87.56633190327003,41.773700698348904],[-87.56632183693563,41.77368794704035],[-87.56630751315497,41.77366551344728],[-87.56629591284862,41.77364221904023],[-87.5662870703265,41.773618230078576],[-87.56628536953933,41.77361122572637],[-87.56628112961484,41.77359376569548],[-87.56627805133891,41.77356899193242],[-87.56627804898662,41.7735685432255],[-87.56627790876975,41.77354412799864],[-87.56627790962385,41.77354411785048],[-87.56627791121112,41.7735441077072],[-87.56628069664308,41.77351933851631],[-87.56628637789217,41.77349484195756],[-87.56629494943607,41.77347080433085],[-87.56629357706736,41.77346906626614],[-87.56629178778029,41.77346727464845],[-87.56628524469453,41.7734607228816],[-87.56626680530552,41.77344218531376],[-87.56625701131016,41.773431072785705],[-87.56623551748525,41.77340668540013],[-87.5661863373164,41.77335292542968],[-87.56616588079767,41.77333673967849],[-87.56614838598006,41.773322896742066],[-87.56609030283894,41.77327475822919],[-87.56601414866242,41.77320509326306],[-87.56593727275845,41.773134326258244],[-87.56585089714285,41.7730635190659],[-87.56585088189095,41.77306350688914],[-87.56585086700233,41.77306349498924],[-87.56584764302843,41.7730610757663],[-87.56575712390686,41.772993164038866],[-87.5656523840128,41.77292275925504],[-87.56557906794917,41.772883915137236],[-87.56554746653346,41.77286717207488],[-87.56550218186061,41.772841399677816],[-87.56544988202053,41.77281163436086],[-87.56539243390002,41.77277903021779],[-87.56535593568576,41.772758316040914],[-87.56532855481333,41.77274149629955],[-87.56525476369242,41.77269616733649],[-87.56516900800817,41.77263247532385],[-87.56508308767192,41.772582503317096],[-87.56502308409442,41.77254485738098],[-87.56500085312469,41.77253090987123],[-87.56494156173554,41.77252242947211],[-87.56490423948304,41.7725170911062],[-87.56480007426558,41.77245986169992],[-87.56471638076653,41.77240770943235],[-87.56463915460522,41.77237550278528],[-87.56462008372714,41.7723675490168],[-87.56462008080446,41.77236754817396],[-87.56448499262278,41.77232163813067],[-87.56448498933354,41.77232163728537],[-87.56446020707575,41.7723110047127],[-87.56437192461141,41.77227312993141],[-87.56427944039021,41.77222036937323],[-87.56423854998759,41.77219989986755],[-87.56416720056184,41.772164182780585],[-87.56414261100177,41.77215123854242],[-87.56407321143573,41.772114705402046],[-87.56401212911585,41.77209851672108],[-87.56398185765745,41.772090493879475]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2046756.31234","perimeter":"0.0","tract_cent":"1194247.39535876","census_t_1":"17031430700","tract_numa":"12","tract_comm":"43","objectid":"778","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1857766.17940163","census_tra":"430700","tract_ce_3":"41.76464252","tract_crea":"","tract_ce_2":"-87.56358481","shape_len":"6308.24728764"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56039187105378,41.76629077686553],[-87.56044323248955,41.76625049234051],[-87.56051602674086,41.76617139756755],[-87.5605457579414,41.76610568982079],[-87.56055217574799,41.766091506855105],[-87.56055497746257,41.76608178373881],[-87.56058200925538,41.76598797383857],[-87.56058950882998,41.765939297457244],[-87.56059552562361,41.7659002474086],[-87.56060698313738,41.76586080529494],[-87.56061392433999,41.76583690885638],[-87.56062305372228,41.76580547978264],[-87.5606218679848,41.76575919426246],[-87.56062105664604,41.76572752900604],[-87.5606177942661,41.7656974735317],[-87.56061181542363,41.765642393797165],[-87.56058562079927,41.765564828300896],[-87.56056729815543,41.765517366020376],[-87.56055078150241,41.765474580906655],[-87.56051367729064,41.765389807398456],[-87.56048795722491,41.765358756431425],[-87.56046887386343,41.76533571788254],[-87.56045749910344,41.765320682500295],[-87.56043423397936,41.76528992987465],[-87.56041590819846,41.76529802162701],[-87.56035832217917,41.76532344838365],[-87.56025568905373,41.76521113070985],[-87.56014493574402,41.7650899255157],[-87.56014486121245,41.76508984405749],[-87.56022012511096,41.76504265036132],[-87.56022020414943,41.76504260067264],[-87.56018764107294,41.765006005398654],[-87.56016812422556,41.76498407147802],[-87.56012382104403,41.76494261497365],[-87.56012183539279,41.764940756622245],[-87.56007847311392,41.76492354594393],[-87.56005740997482,41.76491518584429],[-87.56005564462089,41.76491433503207],[-87.56004101012212,41.76490728139621],[-87.56002889719596,41.76490339655085],[-87.56002213180746,41.76490122665658],[-87.5600013500814,41.76490108677326],[-87.55998056081924,41.764904596195464],[-87.55996886045554,41.76491137844107],[-87.55993601881673,41.76495094932953],[-87.55991881428842,41.764958161046955],[-87.55989431753461,41.76496211229913],[-87.55987124488715,41.764960321096844],[-87.55984246267613,41.764958086392596],[-87.55981880815162,41.764943766586384],[-87.55980352394441,41.76492919220368],[-87.55978738882757,41.76491380663992],[-87.55977029428493,41.764892820648285],[-87.55975668447434,41.76487611259433],[-87.55972419172089,41.764834729695096],[-87.5596982912532,41.76481178863966],[-87.55968672649956,41.764801545630824],[-87.55968229692463,41.7647979303844],[-87.55966977446957,41.76478771056309],[-87.55964194261476,41.76476419610427],[-87.55962985848869,41.76475404372128],[-87.55961414178077,41.76474112175762],[-87.55960216569311,41.76473018468279],[-87.5596020322678,41.764730062760925],[-87.55959001973633,41.764713983184194],[-87.55958785481812,41.76468973622723],[-87.55959460964945,41.76467502620749],[-87.55959790501639,41.76466784929833],[-87.55959899596546,41.764665461427036],[-87.55960102954454,41.764661010158626],[-87.55960115054937,41.76465093887133],[-87.55959953712056,41.764632624123465],[-87.55959643033444,41.76462801062682],[-87.55958995820211,41.764618399063124],[-87.55957025225129,41.76459481087907],[-87.55986101165158,41.764442201959476],[-87.56005367749734,41.76434104567074],[-87.56005526033319,41.76434021437534],[-87.56005536802189,41.76434015966545],[-87.560215577468,41.764258690096966],[-87.5604000888156,41.764165346784154],[-87.56041151304859,41.76415956732133],[-87.5606086734936,41.76406104658642],[-87.56083447655843,41.76394823098153],[-87.56094246599314,41.76389430719035],[-87.56111178064833,41.76380960387486],[-87.56194579384128,41.76338808183791],[-87.56243159053604,41.763142547930855],[-87.56300639733216,41.76285158397384],[-87.56322238629649,41.76273919866715],[-87.56329293358763,41.76270029091484],[-87.56329489013561,41.76269974172272],[-87.56339973139562,41.76267033342762],[-87.5634833654364,41.7626468733443],[-87.56351515863683,41.76264766240685],[-87.56360304111173,41.7626498431961],[-87.56376743703899,41.76265259106676],[-87.56413260083697,41.76264795921183],[-87.56489067795633,41.76263833974494],[-87.56584041046183,41.76262628134381],[-87.56645042279949,41.76261940531639],[-87.56646290618191,41.763176882157154],[-87.56646993731206,41.76354373109574],[-87.566477089154,41.76393138283451],[-87.56647950651613,41.764036011430335],[-87.5664846500704,41.7642289695761],[-87.56648691703269,41.764434944181566],[-87.56648966773257,41.76468488503319],[-87.56649128060504,41.76486033844543],[-87.56649279007122,41.76501981937804],[-87.56649616890972,41.76529322837405],[-87.5665054362135,41.76553698341474],[-87.56650721113348,41.76575002179159],[-87.56650756784724,41.76579283513484],[-87.56650883171072,41.76594453131495],[-87.5665037247902,41.76603845164481],[-87.5665037221695,41.7660384870287],[-87.56648932047848,41.76624629409488],[-87.56648436943007,41.76631773229667],[-87.56605561374059,41.7663049891037],[-87.56562171514402,41.76631446725147],[-87.56506372617511,41.76630952977254],[-87.56470533135509,41.76631269361368],[-87.56457020127039,41.76631399534192],[-87.56438364884225,41.766315792503676],[-87.56405897594729,41.76631680237112],[-87.56370663593123,41.766320205618165],[-87.56336383480017,41.766322875869086],[-87.56302811212332,41.766322217078084],[-87.56291906022233,41.766313088316124],[-87.56281541240041,41.76628558917946],[-87.56244204538788,41.76628656207783],[-87.56205076537535,41.76629093388526],[-87.5618481774608,41.76629322356934],[-87.56146338649748,41.76629518437683],[-87.56131982704025,41.76645932653484],[-87.56059795545647,41.76651484790413],[-87.56034617310347,41.76653407936087],[-87.55996952229124,41.766534974924234],[-87.55983589128196,41.76652138268848],[-87.55996959782907,41.766498133317654],[-87.56005019057407,41.76647848522106],[-87.56007694783078,41.76647196183392],[-87.56018070420129,41.76643972862411],[-87.56027755112815,41.76637574622153],[-87.56028268296056,41.76637235615084],[-87.5603653387762,41.76631157737136],[-87.56036534173148,41.76631157547023],[-87.56036534469007,41.7663115732947],[-87.56036552405078,41.766311441677736],[-87.56037369495334,41.76630503302116],[-87.56037373306812,41.76630500309038],[-87.56039187105378,41.76629077686553]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4343092.66321","perimeter":"0.0","tract_cent":"1185864.25436319","census_t_1":"17031411200","tract_numa":"15","tract_comm":"41","objectid":"779","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867139.92286951","census_tra":"411200","tract_ce_3":"41.79056663","tract_crea":"","tract_ce_2":"-87.59401544","shape_len":"9188.5934015"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5919425120426,41.794790267219646],[-87.5918584630445,41.79478360500346],[-87.59167637632727,41.79478442163879],[-87.59166788914897,41.79448349516237],[-87.59166395979949,41.794344170101276],[-87.59165910785312,41.79416383952377],[-87.59165514930008,41.79400777415236],[-87.59165131789294,41.793856649303436],[-87.59164797721705,41.79368198168688],[-87.5916461343749,41.79353646800194],[-87.59164140428062,41.79332709435907],[-87.59163705350646,41.79313453682076],[-87.59163278278568,41.792976960050886],[-87.5916273520833,41.79277368349957],[-87.59162115855408,41.7925411205305],[-87.59161670734139,41.79236106691131],[-87.59161008324101,41.792076826592215],[-87.59160586646381,41.79190821785336],[-87.59160005136081,41.791687402819456],[-87.59159687815742,41.79153919109784],[-87.59159627625532,41.79149823566131],[-87.59159307766107,41.79128081983367],[-87.59158651649487,41.79104202490882],[-87.59158221132034,41.79087635222522],[-87.5915804711735,41.790809380497386],[-87.59157523354592,41.790605281830395],[-87.59157031457754,41.79036718355137],[-87.59156648026061,41.79021410987184],[-87.59156418727507,41.79012257351],[-87.59155921353862,41.789930579084285],[-87.59155406634024,41.78963575689468],[-87.59155146165145,41.78948655865354],[-87.59154719127974,41.78929399217429],[-87.59154141317836,41.789038187665916],[-87.59153471254083,41.78874154225157],[-87.59152893450687,41.788485737718894],[-87.5915230788703,41.78821758339706],[-87.5915193336982,41.78804944439205],[-87.59151617210684,41.78785406390041],[-87.59151357381415,41.78769347358287],[-87.59151003016171,41.78754284439578],[-87.59150282174136,41.787284505008145],[-87.5915017045315,41.78724445621837],[-87.59149793880907,41.78710949874135],[-87.5914932984864,41.786952221289006],[-87.59148881300075,41.786800598057894],[-87.59148405139402,41.78657105374816],[-87.59148002188806,41.786376796325776],[-87.5914768381309,41.78624263513564],[-87.59147494351127,41.7860956639879],[-87.59179948652988,41.786091943919466],[-87.59224202219028,41.7860887621559],[-87.59263062890112,41.78608484678533],[-87.59300291639265,41.78608109963638],[-87.59313658243634,41.7860796930797],[-87.59331673262491,41.78607779710507],[-87.59346230114834,41.78607626513567],[-87.59393595246657,41.786071191582344],[-87.59437813332754,41.78606695647675],[-87.59473267353346,41.78606543180874],[-87.59478985213853,41.786065185793404],[-87.59522480156015,41.78606164189522],[-87.59563594356776,41.78605577548842],[-87.59600049288652,41.78604255576058],[-87.59623177433237,41.78602466503632],[-87.59633224554851,41.78601361514884],[-87.5963395546845,41.78631463189157],[-87.59634371831739,41.786519781547874],[-87.59634876696468,41.78676848592871],[-87.59635016195698,41.78689640598693],[-87.5963514664459,41.787013019009215],[-87.59635844597138,41.787234517942245],[-87.59636483239085,41.78743717903786],[-87.59636632148676,41.78755368346211],[-87.59636725129462,41.78762937678861],[-87.59637240288623,41.787804623056495],[-87.59637894138396,41.78802698879281],[-87.59638392492808,41.78824178843367],[-87.59638800301529,41.78841075271635],[-87.59639235323307,41.78858474050475],[-87.59639655972923,41.788771406505745],[-87.59640086807323,41.78894591570284],[-87.59640402632431,41.78907360003839],[-87.59640739918491,41.78923053981051],[-87.59640997985338,41.78940542211049],[-87.59641499722758,41.78962349173015],[-87.596420947937,41.78988211960225],[-87.59642621484763,41.79009140498189],[-87.59643017581142,41.790254632906816],[-87.59643372664266,41.79040564613687],[-87.5964393610201,41.79064048312816],[-87.59644231829014,41.790772886302996],[-87.59644577246517,41.79092914047938],[-87.59644866333623,41.791080149458246],[-87.59645084191862,41.79119089523809],[-87.59645722977258,41.79144678375613],[-87.59646031750027,41.791570490294724],[-87.59646141816748,41.79161539381566],[-87.59646634886882,41.791818831653615],[-87.59647139420309,41.79201546439962],[-87.59647838826871,41.79225964060528],[-87.59648288337952,41.792475534666586],[-87.59648707223013,41.792702129454845],[-87.59649206905952,41.79292861964545],[-87.59649669187385,41.79311092449238],[-87.59650023000626,41.793267419816814],[-87.59650443204045,41.79345329555743],[-87.5965107031325,41.79367419583167],[-87.59651723389678,41.79393005963283],[-87.59652149724926,41.79411494176642],[-87.59652524306853,41.79431299312423],[-87.59652975753771,41.794504737558775],[-87.59653507927972,41.79470290878213],[-87.59654162899292,41.794889891208484],[-87.59654415960411,41.79506623050287],[-87.5958835616476,41.79507420069407],[-87.59492333125904,41.79508476486515],[-87.5933474977653,41.79510811868978],[-87.59230753073717,41.7951235189846],[-87.59230725176432,41.79511507358282],[-87.59229049975525,41.79505396016409],[-87.59226118327148,41.79498443158297],[-87.59220416522417,41.79490317497342],[-87.59216837716497,41.79488239572874],[-87.59201906243553,41.79481117868673],[-87.5919425120426,41.794790267219646]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2639089.24365","perimeter":"0.0","tract_cent":"1183284.58672715","census_t_1":"17031420400","tract_numa":"10","tract_comm":"42","objectid":"780","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864422.715554","census_tra":"420400","tract_ce_3":"41.78317086","tract_crea":"","tract_ce_2":"-87.60355889","shape_len":"6629.98754325"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60560563606573,41.78041610345399],[-87.60592997016487,41.780410105216326],[-87.60593157298906,41.78048142213044],[-87.60593484254548,41.7806268365991],[-87.60594046814929,41.78086513104736],[-87.60594161160307,41.78091357524762],[-87.60594232764437,41.780942449143645],[-87.60594753053367,41.781152228572985],[-87.60595339229852,41.78138945449666],[-87.60595857495056,41.78162837756908],[-87.60596329393002,41.78190829735375],[-87.60596536953877,41.78203608452807],[-87.60596851507404,41.782232709870435],[-87.60597304008057,41.78251558756274],[-87.60597894888373,41.78278431814555],[-87.60598553643216,41.78301070866243],[-87.60599362379126,41.78329726590752],[-87.60599386356382,41.78330576758019],[-87.6059954461053,41.78336198526274],[-87.60600028027403,41.78360908402134],[-87.606003253861,41.78380669149921],[-87.6060093864327,41.784057616585095],[-87.60601533851087,41.784301123808376],[-87.60602053882008,41.784493092129864],[-87.60602606925785,41.78472073798312],[-87.60602716543126,41.78477074582009],[-87.60603170098645,41.78502374311717],[-87.60603496288238,41.785237214345436],[-87.60603942594493,41.785553631337514],[-87.60603749216132,41.78587406578994],[-87.60560940072136,41.7858807986884],[-87.6053131678842,41.78588399870337],[-87.60500146214164,41.78588720962943],[-87.60471301020162,41.78588974363798],[-87.60443140530083,41.78589316423401],[-87.60414451997525,41.78589664749602],[-87.60388583891284,41.785899450994165],[-87.6036226887692,41.78590184132245],[-87.60344351669518,41.78590336504817],[-87.60307761737742,41.785906500849734],[-87.60280286547473,41.78591027002171],[-87.60252077801164,41.78591412908547],[-87.6023810589748,41.78591571002913],[-87.60210103383598,41.78591884022696],[-87.60169581173217,41.78592331300822],[-87.60150089559055,41.7859260506899],[-87.60119051225412,41.78592840704843],[-87.60118576299777,41.78575661387322],[-87.60118103854957,41.78551763881784],[-87.60117312609157,41.78518506328971],[-87.60116639773574,41.78488696352025],[-87.60116331917497,41.78473984989723],[-87.60115854801835,41.78451017790611],[-87.6011554739927,41.784364601376986],[-87.60114800676162,41.784111344256864],[-87.60114436158436,41.78398774004811],[-87.60113932458323,41.783747281012104],[-87.60113238364589,41.78343246710713],[-87.60112759441985,41.783212097805865],[-87.60112203693801,41.78295613019929],[-87.60111793342276,41.782775365310656],[-87.60111343636831,41.782555135060626],[-87.60110727803115,41.78227483576373],[-87.60110338738765,41.78209776300226],[-87.60109861702274,41.78185318915531],[-87.6010933728382,41.781592256324515],[-87.60108626084491,41.78130213979927],[-87.60107944108536,41.781021822229214],[-87.60107772007703,41.78093403768502],[-87.60107533465631,41.78081232456709],[-87.60106781561316,41.78046776367339],[-87.60128217873462,41.780465502436236],[-87.60144491802285,41.780463328509775],[-87.60166910873515,41.78046088711324],[-87.60198064449997,41.78045749200211],[-87.60215878149803,41.78045541508668],[-87.60248552812536,41.78045236240151],[-87.60268203530451,41.78045017870275],[-87.60274954615623,41.780449428282736],[-87.60288866263224,41.78044788200765],[-87.60318439454177,41.780444594182086],[-87.6034874097407,41.78044240320283],[-87.6036738608169,41.78044114515733],[-87.6039996662917,41.78043701218928],[-87.60430710319162,41.780432871231284],[-87.60453702143437,41.78042977423643],[-87.6046479466166,41.78042825664921],[-87.60483851853547,41.78042564906041],[-87.60505950599732,41.78042314725337],[-87.60508093477033,41.78042290465757],[-87.6053739964796,41.78041910907747],[-87.60560563606573,41.78041610345399]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2100657.44352","perimeter":"0.0","tract_cent":"1176779.21901251","census_t_1":"17031400200","tract_numa":"8","tract_comm":"40","objectid":"781","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869882.58954786","census_tra":"400200","tract_ce_3":"41.79830233","tract_crea":"","tract_ce_2":"-87.6272451","shape_len":"6926.57320396"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62582622201597,41.799469259552566],[-87.62581832143039,41.79918300353538],[-87.6258171859945,41.79913075723447],[-87.62580960462542,41.79878184574126],[-87.62580541671328,41.798615681169345],[-87.6258037605407,41.79854629554102],[-87.62579592041918,41.798248822325284],[-87.62579152744405,41.79811440753594],[-87.62578535643154,41.797925590407885],[-87.62577583766868,41.7975448856564],[-87.62576903080618,41.797272652697586],[-87.62575300051,41.79663953044785],[-87.62574823047937,41.796474762360226],[-87.62574364617389,41.79631641593448],[-87.62574160732869,41.79623085147468],[-87.62573300778683,41.795869965441845],[-87.6257290533386,41.79572907706448],[-87.6257203080807,41.795417519680726],[-87.62571153405158,41.79506831054243],[-87.62570394254467,41.79473829120489],[-87.62570104497442,41.794643186420295],[-87.6259589901024,41.794645568430994],[-87.62636996454354,41.79463972829002],[-87.62678463178358,41.79463158470893],[-87.6269775312631,41.79462779586673],[-87.62733030613963,41.79462203350052],[-87.62778351715966,41.79461366763635],[-87.62807541260678,41.79460827851883],[-87.62833428515671,41.794603664613405],[-87.62846366181921,41.79460135831103],[-87.62855540675663,41.79459928532757],[-87.62855836658753,41.794705193025784],[-87.62858277120131,41.79561575861967],[-87.62861132771555,41.79652394829032],[-87.62864916948153,41.797965614541056],[-87.62865320835621,41.7981409303041],[-87.62865532278585,41.79824060597507],[-87.62865750574709,41.79833442823789],[-87.62866036868536,41.79844970562047],[-87.62867997036719,41.79912937878087],[-87.62868320666828,41.79928058025289],[-87.62868512522542,41.79937022106228],[-87.62880936759306,41.79936961096689],[-87.62881699906879,41.79959365970189],[-87.62883244275869,41.80031824452445],[-87.6288419756959,41.80057798080285],[-87.62884901378962,41.80089807538633],[-87.62884483521164,41.8010284030717],[-87.62882428630404,41.80127217522175],[-87.62879480447897,41.801494281091614],[-87.62879453696779,41.8016023351999],[-87.62879419576586,41.80175910009636],[-87.62879823732874,41.80189303448802],[-87.62870375116418,41.80189560209128],[-87.62852804120327,41.80190037688203],[-87.62826072716216,41.801907640554745],[-87.62804023238833,41.801910760159366],[-87.62801220780071,41.80191115643228],[-87.62798418284311,41.80191155297052],[-87.62776020290592,41.80191472116572],[-87.62721247458916,41.801925296549676],[-87.62687152767947,41.80193246165231],[-87.62672373321601,41.80193556723882],[-87.62658307537616,41.80193852279686],[-87.62611153132815,41.801941685266975],[-87.62588976266044,41.801945797855375],[-87.62588249253764,41.80161455667341],[-87.62586617433098,41.800940845233995],[-87.62586435107809,41.800871870247114],[-87.62585115302538,41.8003725769528],[-87.6258461521244,41.80019138550402],[-87.62584263271361,41.80006385934554],[-87.62583764281095,41.799883071638256],[-87.62582622201597,41.799469259552566]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4855301.79409","perimeter":"0.0","tract_cent":"1175098.60880651","census_t_1":"17031340500","tract_numa":"19","tract_comm":"34","objectid":"784","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883069.47861839","census_tra":"340500","tract_ce_3":"41.83452607","tract_crea":"","tract_ce_2":"-87.63301406","shape_len":"9349.97692345"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62972206128597,41.83703485168352],[-87.62969845480355,41.836203993822316],[-87.62968729954054,41.83581138352726],[-87.62966276948394,41.83482638520598],[-87.629662398187,41.83481301369885],[-87.62965717449237,41.83462482862046],[-87.62965689610574,41.83461359464076],[-87.62965495204898,41.83453510198225],[-87.62964450668944,41.83416451754618],[-87.62964438185726,41.8341601020829],[-87.62962751661625,41.83348045073996],[-87.6296211040218,41.83320907005469],[-87.62961560755063,41.83297646210587],[-87.62961050449105,41.83277232556586],[-87.62958360078488,41.831753009126004],[-87.62956551123929,41.83105962866274],[-87.62956105279402,41.830970851505135],[-87.62959382366327,41.83097019827796],[-87.62982975356338,41.8309654961235],[-87.62993616968465,41.830963375049784],[-87.63003287807918,41.83096144718364],[-87.6302186859927,41.83095902214277],[-87.63048355351812,41.83095556494796],[-87.63068810050741,41.83095289486327],[-87.6308328370806,41.83095100490277],[-87.6311001453449,41.83094751428668],[-87.63131532664768,41.83094470392677],[-87.63139222356875,41.83094226167259],[-87.63150429499053,41.830938702505335],[-87.63183562699909,41.83092817894427],[-87.63191711787215,41.830928521010975],[-87.6322383115356,41.830929869190236],[-87.63251082431637,41.830937968103264],[-87.63262177331687,41.83094126523036],[-87.63306321513633,41.830935340415884],[-87.63334182786254,41.83093155016031],[-87.63341507874858,41.830930435608394],[-87.63349295388059,41.830929232828225],[-87.63378757251267,41.83092471573332],[-87.63407369983638,41.83091384507853],[-87.6341860003914,41.83090957831482],[-87.63442113554714,41.83090546617733],[-87.6348007807164,41.830900063976095],[-87.6351439443853,41.830895476926216],[-87.63555290802145,41.83089000867928],[-87.63602773957417,41.830884055765765],[-87.63629829303252,41.83088033921405],[-87.63650105425378,41.830877553535764],[-87.63650105443915,41.83087757027692],[-87.63650957584282,41.831233690282254],[-87.63653520673053,41.83225368397903],[-87.63654929328872,41.83298477351054],[-87.63657613685214,41.83414678969447],[-87.63653165999597,41.83452640573921],[-87.63639740530975,41.83452824188061],[-87.63609550216682,41.83453299584975],[-87.63588969757829,41.83453484298408],[-87.63589697941259,41.83485105833598],[-87.6359006766791,41.835014117275314],[-87.63590504841639,41.83521645100537],[-87.63591036667306,41.83547694171301],[-87.63591468765952,41.83567381403254],[-87.63591818543779,41.83581807380144],[-87.63592330102851,41.83600932519242],[-87.6359280864933,41.83617697390144],[-87.63593201662776,41.836359626889525],[-87.63599681012151,41.83635898652233],[-87.63625867639298,41.836356397393736],[-87.6364306420822,41.83635405559884],[-87.63645891049018,41.83751123258779],[-87.63647559638976,41.83817156955197],[-87.63642776190288,41.83817208449018],[-87.63637566127491,41.83817264487242],[-87.63614437152445,41.838175133084476],[-87.63598350986982,41.838176863204104],[-87.63579745459732,41.83818042612235],[-87.63557219857294,41.83818476597828],[-87.6353179638123,41.83818842077384],[-87.63486912280233,41.83819487257339],[-87.63464486937993,41.838198119002],[-87.6343426228476,41.83820248204787],[-87.63410385969854,41.83820523049626],[-87.63377811688109,41.83820897946998],[-87.63356179297877,41.838211942767494],[-87.6334946397231,41.83821286129011],[-87.63333570627555,41.83821503468954],[-87.63314988229897,41.83821755547538],[-87.6328847022022,41.83822018782126],[-87.63248533922209,41.838224150171],[-87.632272805475,41.83822712867886],[-87.63219562003097,41.83822821078595],[-87.63167749527416,41.83823618545947],[-87.63129484194694,41.83824207369926],[-87.63101300870596,41.83824640950045],[-87.63066699783835,41.838251732096786],[-87.6304692414576,41.838254773794404],[-87.63042990122588,41.838255378554706],[-87.63033874353155,41.838256780330994],[-87.63002605644628,41.838261588425105],[-87.62976041796135,41.83826567234383],[-87.62976040511526,41.83826567253956],[-87.62973867442307,41.83756813002658],[-87.62972206128597,41.83703485168352]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3523401.15371","perimeter":"0.0","tract_cent":"1177480.92022585","census_t_1":"17031350600","tract_numa":"11","tract_comm":"35","objectid":"785","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883145.75970945","census_tra":"350600","tract_ce_3":"41.83468176","tract_crea":"","tract_ce_2":"-87.6242705","shape_len":"7970.62593"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62529319682653,41.831022865956356],[-87.62579466194099,41.83101766920609],[-87.62592108240277,41.831021251151434],[-87.62601597873214,41.83102432324415],[-87.62623889883601,41.83102662883177],[-87.62647901273175,41.83101897218511],[-87.62664431564382,41.83101370085828],[-87.62664009368751,41.831300560707156],[-87.62664481923275,41.83150476315112],[-87.62665928069488,41.83165781749221],[-87.6266710437243,41.83178599218008],[-87.62667283760733,41.83188644333462],[-87.62667201647744,41.83204115996919],[-87.62666919248484,41.832177807011234],[-87.6266647715263,41.83235955994598],[-87.6266614484486,41.832521560920156],[-87.62665797059626,41.83265760018938],[-87.62665703345121,41.832833465316924],[-87.62665614624952,41.832938739469505],[-87.62665802734111,41.83308943808305],[-87.62666514540871,41.833363030198065],[-87.62666740821658,41.833445069919605],[-87.62667364500562,41.833671153648986],[-87.62667806800374,41.83387952542947],[-87.62668504908856,41.834152238498945],[-87.62669279934202,41.83441507693593],[-87.62668715391635,41.83466779772201],[-87.62668253332677,41.83487465058597],[-87.6266879634877,41.83510155230137],[-87.62671543647512,41.83545622532987],[-87.62672381465758,41.835802108713445],[-87.62673086617895,41.83601930567261],[-87.62673321554722,41.83609168662945],[-87.62674133625639,41.83646632634908],[-87.62674692442084,41.83669693592287],[-87.62675621006758,41.837017056457505],[-87.62676380757627,41.83731384035412],[-87.62676657316315,41.83745941307145],[-87.62677113900013,41.83770154002408],[-87.62677490347687,41.837893085276164],[-87.62677878319789,41.83806081075715],[-87.62677259573911,41.838300572940305],[-87.62658303220407,41.83830289626288],[-87.62608166167318,41.83830903904843],[-87.62605170950508,41.83830944846798],[-87.62605148672124,41.83830945148692],[-87.62596881950401,41.83831058099888],[-87.6257218413485,41.83831396642714],[-87.62546676658476,41.838316664481795],[-87.62536444460818,41.83831774651975],[-87.62514319496738,41.838321368872066],[-87.62512786681056,41.83832161986301],[-87.62506002498291,41.83832273036195],[-87.62468100332939,41.8383274452368],[-87.62429788674098,41.838334109450805],[-87.62416014653972,41.83833559855661],[-87.6236611644984,41.8383434044282],[-87.62344265883293,41.838344939451154],[-87.62323930028259,41.83834636792259],[-87.62192481649144,41.83836465960935],[-87.62192802159343,41.838288719657385],[-87.62189368663307,41.83720737736962],[-87.62188132701071,41.83668660439149],[-87.62187897221965,41.836540261040106],[-87.62187849785357,41.83651079651767],[-87.62187820483757,41.83647850927177],[-87.62187660027196,41.83630163734227],[-87.62183979393417,41.83471818667865],[-87.62183556786076,41.83453635521369],[-87.62180494955597,41.83320585601428],[-87.62180067482073,41.83290157318946],[-87.62179859950284,41.832762350095706],[-87.62179191606529,41.832315288803535],[-87.62176732435147,41.8312193239125],[-87.62176362278132,41.83105903916783],[-87.62196077094936,41.831056799553664],[-87.62250557079271,41.83105150162242],[-87.62257580876725,41.83105081853754],[-87.62307470089593,41.8310459648923],[-87.62325718521883,41.83104377809585],[-87.62425717515816,41.83103164601271],[-87.62461094941011,41.83102993258846],[-87.62497612122266,41.83102615058188],[-87.62529318325113,41.831022865872676],[-87.62529319682653,41.831022865956356]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3483715.83698","perimeter":"0.0","tract_cent":"1177552.30109165","census_t_1":"17031351400","tract_numa":"28","tract_comm":"35","objectid":"786","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880492.81258123","census_tra":"351400","tract_ce_3":"41.82740025","tract_crea":"","tract_ce_2":"-87.62408895","shape_len":"7964.76135747"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62176362278132,41.83105903916783],[-87.62175327685597,41.83061102529641],[-87.6217475343968,41.83036235923698],[-87.62173555293465,41.829737991929306],[-87.62173269836805,41.829624416508814],[-87.62172640986152,41.829374210234306],[-87.62171332230272,41.828771585102515],[-87.62168906164315,41.82765447618018],[-87.62168159567605,41.82741092368382],[-87.62167337486905,41.82714273779788],[-87.62166916702718,41.82692185225919],[-87.62166541680979,41.826725010978116],[-87.62166065646211,41.826507635760464],[-87.62165025684297,41.82603275783439],[-87.62164213074362,41.825598152643586],[-87.6216236000954,41.82468013495093],[-87.62161137174571,41.82416840126351],[-87.62160197732236,41.823775267423855],[-87.62222982585945,41.82376738616024],[-87.62234636528846,41.82376591682916],[-87.62240779066714,41.82376514223726],[-87.62314672393556,41.82375582267271],[-87.62426776089141,41.82374167463068],[-87.62432122057021,41.8237412826132],[-87.62446432459515,41.823739622190416],[-87.62482271021824,41.823735732859326],[-87.62497215616358,41.82373411064785],[-87.62531936393765,41.823728677160254],[-87.62559794621336,41.82372485056514],[-87.62574361150479,41.823723114591914],[-87.62591974776295,41.82372101532529],[-87.62608002879398,41.8237187363846],[-87.62642224680934,41.82371376417949],[-87.6264127772588,41.82391373431647],[-87.62641816396787,41.82417117991758],[-87.62641656178224,41.82443022905617],[-87.6264117975286,41.824676552757495],[-87.6264140393616,41.82494632817943],[-87.62642029113306,41.82520515119313],[-87.62642514981407,41.8254205512935],[-87.6264284539283,41.82553970032383],[-87.6264338973219,41.82573600390212],[-87.62643783631202,41.82594489440653],[-87.626440426163,41.82606233758377],[-87.62644346896356,41.82620000880255],[-87.6264525591883,41.82645797106172],[-87.62645856784226,41.82662848196797],[-87.6264654548397,41.82681293915515],[-87.62646804093337,41.82692919539541],[-87.6264705857733,41.827043598998685],[-87.62647537803635,41.82736094843782],[-87.62647752719242,41.82750325166343],[-87.62648292373633,41.82768308928049],[-87.62649049830127,41.82798843564099],[-87.62649605569,41.82823040444227],[-87.62650319087119,41.828569063471555],[-87.62650767823692,41.82871538768571],[-87.62651415482658,41.828926571712664],[-87.62651797689425,41.82909945660057],[-87.62651977801953,41.82918311595416],[-87.62652821447823,41.82957490699577],[-87.6265924252273,41.82965645198556],[-87.62660651230361,41.829856842673934],[-87.62661621458787,41.829985526137534],[-87.62662271583396,41.8300849909086],[-87.62662796931403,41.83020782914927],[-87.62663294418782,41.830349326683276],[-87.62663775656274,41.830508935370425],[-87.62664159627465,41.83069359321776],[-87.62664590285668,41.83090586124714],[-87.62664431564382,41.83101370085828],[-87.62647901273175,41.83101897218511],[-87.62623889883601,41.83102662883177],[-87.62601597873214,41.83102432324415],[-87.62592108240277,41.831021251151434],[-87.62579466194099,41.83101766920609],[-87.62529319682653,41.831022865956356],[-87.62529318325113,41.831022865872676],[-87.62497612122266,41.83102615058188],[-87.62461094941011,41.83102993258846],[-87.62425717515816,41.83103164601271],[-87.62325718521883,41.83104377809585],[-87.62307470089593,41.8310459648923],[-87.62257580876725,41.83105081853754],[-87.62250557079271,41.83105150162242],[-87.62196077094936,41.831056799553664],[-87.62176362278132,41.83105903916783]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4865670.20101","perimeter":"0.0","tract_cent":"1175246.71170891","census_t_1":"17031370100","tract_numa":"42","tract_comm":"37","objectid":"787","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1877785.04240227","census_tra":"370100","tract_ce_3":"41.82002181","tract_crea":"","tract_ce_2":"-87.63262878","shape_len":"8969.05417949"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62917071277181,41.818451751980966],[-87.62915850114348,41.81801773936735],[-87.6291472507021,41.81757961592976],[-87.62913750757296,41.81717134538918],[-87.6291255852767,41.81671092055065],[-87.62912361188937,41.8165980502316],[-87.62912189831886,41.81654521247318],[-87.62911882307901,41.81645051208763],[-87.6291188142177,41.81645024940638],[-87.62916703553849,41.816449552423094],[-87.62923143237197,41.816448567080705],[-87.62928895969624,41.81644767955561],[-87.62943991617323,41.81644535054252],[-87.62955863714635,41.81644353377624],[-87.6298647103626,41.81643884927755],[-87.63012919839593,41.81643480045576],[-87.630272733577,41.81643260274417],[-87.63046074144306,41.81642972445363],[-87.6307282934555,41.81642562713802],[-87.63104552599765,41.816420768174794],[-87.63119454343905,41.81641848564862],[-87.63154246477276,41.816413180617154],[-87.63175743307478,41.81640865260003],[-87.63205047795938,41.8164024795549],[-87.63236300861192,41.81640117171835],[-87.63267197740215,41.81639987835255],[-87.63295416634298,41.816395403270974],[-87.63305194731592,41.816393852584746],[-87.6335628967875,41.816383851820106],[-87.63385844844777,41.816377608202295],[-87.63437297921791,41.81637138227718],[-87.63471780420629,41.81636537341912],[-87.63510255083982,41.81635866765876],[-87.63520487432739,41.81635765894932],[-87.63556753917567,41.81635408365662],[-87.63571574555003,41.81635268387243],[-87.63582240288737,41.81725663847484],[-87.6358878747627,41.81815380153146],[-87.6360355549488,41.818152016967026],[-87.6360363673747,41.81820377147031],[-87.63603697158311,41.818237622447135],[-87.63603779379198,41.81828370706755],[-87.63604863474711,41.81863709795543],[-87.6360562342647,41.818951020231296],[-87.63605750656001,41.819002826092536],[-87.63605738721836,41.819004256780474],[-87.63605339564712,41.81905201965946],[-87.63603338495167,41.819052455821264],[-87.63606627076848,41.819744081371326],[-87.6360697672301,41.81981761148433],[-87.63607014298951,41.81982551644484],[-87.6360761880696,41.8199526475011],[-87.63607677355006,41.819964960486004],[-87.63608156017877,41.820272419868914],[-87.63610520253579,41.8217909360012],[-87.63607723637628,41.82179134007044],[-87.6360868986954,41.822127014260175],[-87.63609329611121,41.8225095360874],[-87.63609887355332,41.822883133758786],[-87.63611351678765,41.82339331415017],[-87.63611787966256,41.823585779827816],[-87.63608709089478,41.82358646451838],[-87.63603944516301,41.823587524372904],[-87.63573973766776,41.82359418903511],[-87.6354537109586,41.8235977751862],[-87.63510828590361,41.82360138432135],[-87.63476387209583,41.82360302241885],[-87.63447029132746,41.82360628602623],[-87.63409377632807,41.823611239462856],[-87.63396392306542,41.823613287848694],[-87.63376316131092,41.823615918254326],[-87.63349471143515,41.82361924460623],[-87.63341699544716,41.823620123450944],[-87.63323653266089,41.82362269111207],[-87.63291061447065,41.82362732993939],[-87.63270489067897,41.82363122298362],[-87.63265351522298,41.823631295719046],[-87.6326534943059,41.823631296140306],[-87.63254636943802,41.82363069613242],[-87.63214403065011,41.82362844300287],[-87.63179869731007,41.823637064482554],[-87.63161506321723,41.823641129454536],[-87.63133937788871,41.82364552073918],[-87.63101650644782,41.8236506632123],[-87.6308998083238,41.82365252155029],[-87.63064545555231,41.823656571529945],[-87.63044774365127,41.82365968818388],[-87.63029644733916,41.82366185477499],[-87.63003251807034,41.8236656334739],[-87.62992376444444,41.8236671901177],[-87.62984938461693,41.82366825492756],[-87.6296408555468,41.8236718585589],[-87.62946598949512,41.823674879943994],[-87.62938411838662,41.82367606210533],[-87.62935652492091,41.82367646050887],[-87.62935396448754,41.82357574302126],[-87.62935303589468,41.823534916319694],[-87.62935040025334,41.823356865397884],[-87.62936279268524,41.82327221202089],[-87.629356635493,41.82320631181083],[-87.62935088391205,41.823145216832216],[-87.62933936685741,41.82302439837318],[-87.62933289707853,41.82269401695262],[-87.62932396092653,41.82237940022439],[-87.6293144422827,41.82207609974897],[-87.62931153658049,41.821922745834435],[-87.6293100440901,41.821849671036446],[-87.62930179639928,41.821555983269334],[-87.62929101128259,41.82115902702329],[-87.62927751589457,41.82075828076447],[-87.62927511769588,41.82060047075923],[-87.62927309480946,41.82049205938032],[-87.62927104186167,41.82038639263505],[-87.62926610640655,41.82016716345092],[-87.62926152459428,41.820041241923974],[-87.62925942695001,41.81993969102893],[-87.62925897953271,41.81989680904713],[-87.62925513787667,41.819787014645335],[-87.62919496568276,41.81946110659789],[-87.62919218044406,41.819254926121864],[-87.62919071245913,41.81916080863861],[-87.629187853509,41.819063829682115],[-87.62918253847663,41.81887924482425],[-87.62917071277181,41.818451751980966]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3683079.71763","perimeter":"0.0","tract_cent":"1174721.62473268","census_t_1":"17031340100","tract_numa":"31","tract_comm":"34","objectid":"788","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890507.07110652","census_tra":"340100","tract_ce_3":"41.85494383","tract_crea":"","tract_ce_2":"-87.63417514","shape_len":"8355.32244489"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63022446247243,41.857695171857856],[-87.6302224601236,41.85760867225307],[-87.6302213611864,41.85756121106895],[-87.63021868849717,41.857445763166176],[-87.63021375488219,41.857212498839175],[-87.63020714327581,41.85699171058487],[-87.6302040982612,41.856874265318474],[-87.6301974428856,41.85658643465656],[-87.630191495186,41.85632920674692],[-87.63018285252299,41.85606932784204],[-87.63017765967106,41.85591339496037],[-87.63015867400155,41.855501969860605],[-87.6301584579219,41.85541041005068],[-87.63015777879518,41.85512243149024],[-87.63015739910213,41.854961563694104],[-87.63014865739132,41.85473085527516],[-87.63014241104044,41.85453707262941],[-87.63013632078938,41.85432907569114],[-87.63013254348759,41.85418014900442],[-87.63013254108301,41.85418006693647],[-87.63013103971717,41.85412086415916],[-87.63012466466809,41.85386176742745],[-87.63012090572356,41.85371904313252],[-87.63011375619028,41.85352750521122],[-87.63010370299943,41.853299066709],[-87.63006129854432,41.85287715244528],[-87.63015177757808,41.852876740190176],[-87.63024735700624,41.852875338223875],[-87.63029545747929,41.852874632664125],[-87.6302954846454,41.85287463228157],[-87.63047531909815,41.8528720024184],[-87.63060667206439,41.85287007867143],[-87.63077393308843,41.85286875753199],[-87.63087178390847,41.85286798447689],[-87.63096392178832,41.8528672565335],[-87.63104241770282,41.8528666360995],[-87.6311120727487,41.852866085597874],[-87.63127851154324,41.8528634565468],[-87.63177785393279,41.85285556728169],[-87.63200883612576,41.85285191702015],[-87.63202819085896,41.85285161121816],[-87.63303273973482,41.85283766849166],[-87.63386986165571,41.852826239727165],[-87.63444783814316,41.852828577665925],[-87.63477577753912,41.85286118136182],[-87.6348146163495,41.85286436711016],[-87.63481585294898,41.85286446848462],[-87.6348690076362,41.85286882828165],[-87.63512154535672,41.85288639849204],[-87.63648347444634,41.85287131934511],[-87.63673358940582,41.85285580027928],[-87.63685268817598,41.85284686691319],[-87.6369661675392,41.852838354624154],[-87.637082585316,41.852829622109155],[-87.63736052785961,41.85280877280134],[-87.63771589900102,41.852800443756884],[-87.63785772112126,41.852799531496615],[-87.6379864673362,41.85279862112623],[-87.63805511986779,41.8527981358106],[-87.63808782052025,41.852797904290426],[-87.63819367791181,41.852796736851985],[-87.6383129809797,41.85279504447667],[-87.63853218539751,41.852791934412544],[-87.63897687468146,41.85278562421413],[-87.63906347655048,41.85278444878065],[-87.64049054026721,41.85276395288441],[-87.64048978593149,41.85276507924198],[-87.6403416860949,41.852986212271404],[-87.63990973996816,41.853536517929115],[-87.63987238130706,41.8535868415646],[-87.63964786809943,41.85394971630929],[-87.63939398021995,41.85428497192241],[-87.63904440174329,41.854567834786295],[-87.6387070936861,41.854744216006495],[-87.63844034466949,41.854883699366475],[-87.63747871967801,41.85532980765091],[-87.6369788361713,41.855673417894174],[-87.63616109893537,41.85629188408105],[-87.63549373688255,41.856938380713245],[-87.63532120103145,41.8572251861106],[-87.6351581593673,41.85772209606269],[-87.63493561718185,41.85772296118063],[-87.63467747162484,41.857723609288826],[-87.63441640782324,41.857719802697034],[-87.63410189087575,41.85772010644848],[-87.63375287199729,41.85772606996433],[-87.63341043230719,41.85773142185232],[-87.63303650478146,41.85773801487225],[-87.6325943381089,41.85774419061594],[-87.63220854315846,41.857750708805696],[-87.63193476577415,41.85775215708058],[-87.63189239653349,41.85775256325106],[-87.63143912787423,41.8577569073995],[-87.63136296266643,41.857757675985695],[-87.63106825693826,41.85776139824262],[-87.63092277866282,41.85776455829332],[-87.63084708142866,41.857766202620915],[-87.63067397327396,41.85776986953622],[-87.63022640691243,41.857779150235544],[-87.63022446247243,41.857695171857856]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10819753.4644","perimeter":"0.0","tract_cent":"1168313.41253269","census_t_1":"17031311500","tract_numa":"26","tract_comm":"31","objectid":"789","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1888453.96850689","census_tra":"311500","tract_ce_3":"41.84945071","tract_crea":"","tract_ce_2":"-87.65775524","shape_len":"15884.9454389"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65311725753986,41.84794971614282],[-87.6572911446003,41.847204046707176],[-87.65750460979156,41.84716610259946],[-87.65860463387311,41.8472648461594],[-87.66072032808557,41.84571608657964],[-87.66077326669641,41.84583890616663],[-87.6607786029615,41.84583586740942],[-87.66163820270657,41.84534637253661],[-87.6621306603932,41.845103694132476],[-87.66252443300553,41.844909643533946],[-87.66288401496085,41.844751954620534],[-87.66345070413499,41.84450343783441],[-87.66360685354249,41.844405994106495],[-87.6637776762217,41.84429156639367],[-87.66388768731139,41.84409602036017],[-87.66391878039097,41.844000621952745],[-87.66394639604212,41.843915891072164],[-87.6643048161414,41.84366513159065],[-87.66540447414366,41.84326503788958],[-87.66584434459769,41.84319178452301],[-87.66585055165456,41.84381850093478],[-87.66586539718715,41.84445388089585],[-87.66587259701836,41.844762007310685],[-87.66587662039929,41.844934192510486],[-87.66588273006015,41.84519566038925],[-87.66591565606547,41.846604767601875],[-87.66592209969839,41.84688052479017],[-87.66592416560675,41.846968984324256],[-87.66596070252712,41.847800597852704],[-87.66596412609276,41.8484718989522],[-87.66599238207841,41.84923383458418],[-87.66600741046769,41.8499950423168],[-87.66601233550772,41.850326839268945],[-87.66601507416932,41.85051133691265],[-87.66602169105288,41.85099765779749],[-87.66601834986842,41.8515804369122],[-87.6660224684485,41.85210622181994],[-87.66602356067516,41.85224571964555],[-87.66602422922897,41.85233105651881],[-87.66576558201085,41.85233675822092],[-87.66522539148163,41.85234866500476],[-87.66450311605716,41.85236570173004],[-87.6636139168171,41.852379529044384],[-87.66273801474499,41.85239314280795],[-87.6621309588644,41.85240282406204],[-87.66116442850316,41.85241839699148],[-87.66070957274516,41.85242572288008],[-87.66026593770535,41.85243286628993],[-87.66001657422325,41.85243688083951],[-87.65944719438203,41.85244490267901],[-87.65870613488923,41.85245630832532],[-87.65788543392794,41.8524689340495],[-87.65749020429836,41.852474956493026],[-87.6569109413441,41.85248378082207],[-87.65626276907257,41.8524938340652],[-87.6556912520169,41.852502695434715],[-87.65566078142827,41.85250316768546],[-87.65523837817213,41.852510169688316],[-87.65468752688032,41.85251875729049],[-87.65437155425924,41.852523682122296],[-87.65373201740083,41.8525339249844],[-87.65352814828829,41.85253718941262],[-87.65305086066594,41.85254511317055],[-87.6520928353553,41.85256101220779],[-87.65153171497572,41.85257568351975],[-87.65141066324286,41.852575476927164],[-87.65128186351802,41.85257709248587],[-87.65084497956882,41.8525825713558],[-87.6507502672973,41.85258375906552],[-87.65058581218744,41.852585820828146],[-87.65015164063482,41.852585815613764],[-87.64971910576458,41.852589085537915],[-87.6495950727551,41.852590022851494],[-87.64932052833285,41.85259362304265],[-87.64932050263504,41.85259362343846],[-87.64890148804722,41.85259936983342],[-87.64886987588376,41.85259980329237],[-87.64856988650804,41.85260482634702],[-87.64813242553451,41.85261257440405],[-87.64749770994794,41.85262381351053],[-87.64705800084921,41.852635824267274],[-87.6468390614561,41.85264196950175],[-87.64649538700212,41.85264651854685],[-87.64649250422254,41.8525366580297],[-87.64649016639433,41.852447566013836],[-87.64648174877831,41.85221883672761],[-87.64648014369087,41.85216627460338],[-87.6464715285209,41.851884140876436],[-87.64646732855975,41.85173564100679],[-87.64646359247703,41.85160354798092],[-87.64645775581282,41.85140441719187],[-87.64645603645769,41.85134576212479],[-87.64644790823573,41.851093433907536],[-87.64644113632113,41.850882442313214],[-87.64643882687987,41.850811873906935],[-87.6464338338676,41.85065929047534],[-87.6464286291041,41.85050766653785],[-87.6464396308374,41.85029392252705],[-87.64645272312623,41.850039557876435],[-87.64647093326924,41.84979205235781],[-87.64647573058835,41.84957039573915],[-87.64647378082603,41.849270946507794],[-87.64679998386076,41.849211633195075],[-87.64759270029629,41.84894350726918],[-87.64813685570499,41.84877337784361],[-87.64864374659668,41.848614895900184],[-87.64895526089515,41.84854636038063],[-87.64914152954674,41.84850537925324],[-87.64914161231874,41.848505361359784],[-87.64920449915977,41.84849152536794],[-87.6492634410844,41.84847855745541],[-87.64963716161438,41.84839633337421],[-87.64975088557067,41.84838880715073],[-87.65100295040408,41.84830593656894],[-87.65140675794294,41.84821480333446],[-87.65143621341478,41.84820815571503],[-87.65157843342952,41.84817605818577],[-87.65189015992608,41.84812296585798],[-87.65258344149498,41.84800488455861],[-87.65311725753986,41.84794971614282]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3546513.24563","perimeter":"0.0","tract_cent":"1153488.45992764","census_t_1":"17031301600","tract_numa":"16","tract_comm":"30","objectid":"790","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1885174.06473993","census_tra":"301600","tract_ce_3":"41.84075742","tract_crea":"","tract_ce_2":"-87.71225192","shape_len":"7992.85238182"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71428194988627,41.83706173526582],[-87.71459350297332,41.837056155140004],[-87.71459582479332,41.837239663433394],[-87.71460011518178,41.83738856310573],[-87.71460653707864,41.837613298388554],[-87.7146116047497,41.837788217900325],[-87.714617347491,41.83798822365335],[-87.71462248696717,41.83816712272879],[-87.7146284628051,41.83838107060479],[-87.71463193091452,41.8385124848314],[-87.71463703321213,41.83870664181848],[-87.71464182908966,41.83888739030315],[-87.7146452448405,41.83901612967272],[-87.71465144785367,41.83925988148492],[-87.7146564607561,41.839444241204575],[-87.71466101181142,41.83960420134526],[-87.71466594050125,41.839778296766134],[-87.71466961176819,41.839907681296694],[-87.71467528230332,41.84010763169985],[-87.71468055206687,41.84029284322351],[-87.71468293764242,41.8403758427059],[-87.71468941812338,41.84060601183286],[-87.71469261269556,41.84072168616417],[-87.714699811905,41.8409823616721],[-87.71470488015304,41.84118008593704],[-87.71470950787692,41.841347346464424],[-87.71471627303853,41.84157460816243],[-87.71472248423154,41.841783261016616],[-87.71472852592397,41.84198661596749],[-87.71473457081602,41.8421896418907],[-87.71473992323354,41.8423693100989],[-87.71474096164762,41.842550845866434],[-87.71474226157736,41.84277808137453],[-87.71474686101469,41.842963536183994],[-87.71475104484534,41.84313117846503],[-87.71475689198522,41.84334712877287],[-87.7147635434255,41.84355578365796],[-87.71477073402757,41.84378848120328],[-87.71477480159267,41.843929338804585],[-87.71477676114007,41.8439971875948],[-87.71478110251093,41.84418277818755],[-87.71478659341268,41.84438516684837],[-87.71448385051252,41.84439004298406],[-87.71425253752885,41.8443927756123],[-87.7141791653465,41.84439355191015],[-87.7139569581218,41.844395902179386],[-87.71356785001323,41.84440035678504],[-87.71324654109638,41.84440403396428],[-87.71296040821923,41.84440565022355],[-87.71281436887583,41.84440647468129],[-87.71261607834974,41.84440622678464],[-87.71234969290401,41.844412928533615],[-87.71199205428903,41.84442192531623],[-87.71176796811534,41.84442496646132],[-87.71174106274027,41.84442532991585],[-87.71140965065908,41.844429805409256],[-87.71113108640765,41.844433691924586],[-87.71090384889716,41.84443686222779],[-87.71063307615896,41.84444025188275],[-87.71051882690514,41.84444173863901],[-87.71024157877326,41.844445346101956],[-87.709910510052,41.84445011990311],[-87.70990995585557,41.84431270003188],[-87.70990342751014,41.84410810682007],[-87.70990001791725,41.84399667170579],[-87.70989612804132,41.843869535963165],[-87.70988952731592,41.843630858843795],[-87.70988253396642,41.84337966573358],[-87.70987635424757,41.84314669895062],[-87.70987016884487,41.842937003498264],[-87.70986220281928,41.84262259146807],[-87.70985796385744,41.84245529119672],[-87.70985229495017,41.842252925711854],[-87.7098453282073,41.842014136766295],[-87.70983959029822,41.84182266562688],[-87.70983111139228,41.841535514485386],[-87.70982564611398,41.841350027309886],[-87.70981932518247,41.84110517700302],[-87.70981590327636,41.84097379039662],[-87.7098111957615,41.840798296446096],[-87.70980800772331,41.840679452400146],[-87.70980216826644,41.840487157383805],[-87.70979637249371,41.84030166810498],[-87.70979178038066,41.84015474257706],[-87.7097854651292,41.83992070493493],[-87.7097799721325,41.83971537650521],[-87.70977380319401,41.83949651516166],[-87.70976814688603,41.83929667436419],[-87.70976395894459,41.83912702847128],[-87.70975905052137,41.83897092820726],[-87.7097561077154,41.83887733984899],[-87.70975051794767,41.83869333381395],[-87.70974426958907,41.838463769355776],[-87.70973680069157,41.83820873145754],[-87.70972839584589,41.83792536762226],[-87.70972119169329,41.83768086912574],[-87.70971468453007,41.837421280928474],[-87.70971387654575,41.83714523061088],[-87.71000378872492,41.837140519926805],[-87.71029749053979,41.8371345941465],[-87.71067024408939,41.83712786126857],[-87.71092855078574,41.83712397005989],[-87.7111565418446,41.83712053481209],[-87.71142975498684,41.837115839841275],[-87.71153894613347,41.837113826417905],[-87.71167019572123,41.837111405931054],[-87.71194300914502,41.83710629593546],[-87.71212222905164,41.83710291159607],[-87.71275987216973,41.837090867917226],[-87.71337160201863,41.83707931036712],[-87.7135086874609,41.837076720044436],[-87.71391706236751,41.837067232481246],[-87.71398224488321,41.8370662505406],[-87.71428194988627,41.83706173526582]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1339990.1158","perimeter":"0.0","tract_cent":"1169789.86979367","census_t_1":"17031310400","tract_numa":"9","tract_comm":"31","objectid":"791","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1891036.98822513","census_tra":"310400","tract_ce_3":"41.85650674","tract_crea":"","tract_ce_2":"-87.6522613","shape_len":"6656.73210462"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65156791397438,41.85802196646775],[-87.65155709896389,41.857635173366404],[-87.65154896398066,41.85734422526179],[-87.65154083004096,41.85705332242854],[-87.65152999264032,41.856665723139855],[-87.65151911541203,41.85627669904493],[-87.651500469783,41.85565977955561],[-87.65149592796244,41.855509768578415],[-87.65148839793316,41.85527117832371],[-87.65148036990716,41.85501848209535],[-87.65147743411438,41.85492856283286],[-87.6514740062076,41.85480894779446],[-87.65146798058178,41.85457795540796],[-87.65146211167095,41.8543529464216],[-87.65145951134014,41.854264278325644],[-87.65145650528811,41.854168883293184],[-87.65145481264122,41.8541070725854],[-87.65144745435903,41.853878634296095],[-87.65144056919637,41.8536648882643],[-87.65143679066097,41.85354719209701],[-87.65142950296656,41.85328298665597],[-87.6514221144876,41.85302481824422],[-87.65141066324286,41.852575476927164],[-87.65153171497572,41.85257568351975],[-87.6520928353553,41.85256101220779],[-87.65305086066594,41.85254511317055],[-87.65306866830112,41.85305036177639],[-87.6530813170971,41.85340853480654],[-87.65308668468575,41.853665868132396],[-87.65308988536269,41.853774230351604],[-87.65309220862328,41.85385292003471],[-87.65309852918861,41.85406698397727],[-87.65310352724761,41.85424045032774],[-87.65311245129531,41.85455013820018],[-87.6531214520184,41.85486440886891],[-87.65313203242162,41.855246288412864],[-87.6531404710159,41.85555088715066],[-87.6531428499511,41.855638223191505],[-87.65315112083886,41.85594192436649],[-87.65315976308369,41.856255065219756],[-87.65317183357905,41.8566421264156],[-87.65318080920784,41.85692994988079],[-87.65319237413196,41.857321162289324],[-87.65319537400929,41.857422657396796],[-87.65321191262412,41.857999391647375],[-87.65338776615731,41.857997336548834],[-87.65339925924752,41.85844882517248],[-87.65341078216463,41.85890149451496],[-87.65343395877099,41.859811918419304],[-87.65302851058111,41.8598183638437],[-87.65284332598841,41.859820494272284],[-87.65263802297676,41.859822855879955],[-87.6522420456786,41.85982919412106],[-87.651872357378,41.8598351101448],[-87.65139974006199,41.8598440777188],[-87.6509408717961,41.85985113929855],[-87.65093010023564,41.85946249881709],[-87.650928191392,41.85939344204312],[-87.65092034678723,41.85910931024341],[-87.65091682362205,41.85898299708277],[-87.65091447288304,41.85889870871239],[-87.65090629502009,41.85862859804768],[-87.65090104397267,41.85844162713342],[-87.65088954642337,41.85803226119666],[-87.65127345914865,41.85802707056049],[-87.65147385716575,41.85802293170229],[-87.65156791397438,41.85802196646775]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3142011.22195","perimeter":"0.0","tract_cent":"1159109.90991645","census_t_1":"17031300100","tract_numa":"19","tract_comm":"30","objectid":"793","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1890067.04199517","census_tra":"300100","tract_ce_3":"41.85407088","tract_crea":"","tract_ce_2":"-87.69148902","shape_len":"7247.2132893"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69515087018668,41.851904680725276],[-87.6954456288556,41.85190201298709],[-87.69544871121693,41.852039486812984],[-87.69545404455388,41.85222308000205],[-87.6954605189272,41.85236797200753],[-87.69546227227337,41.85240721094388],[-87.69546893035849,41.85258677714143],[-87.69547662990671,41.85281206903655],[-87.69548155684951,41.852956224654555],[-87.69548845057403,41.853171193368226],[-87.69549288107686,41.853338535488625],[-87.69549945444277,41.85352298624183],[-87.69550649824001,41.85373664016899],[-87.69551217502284,41.85390881744363],[-87.69551218589805,41.853909311470716],[-87.69551516103625,41.854058999899294],[-87.69552842403257,41.85420556211512],[-87.69552866963315,41.85421863713017],[-87.69552958342163,41.854267240017414],[-87.69553060923451,41.85432182107178],[-87.6955332555165,41.85446925764501],[-87.69554051866838,41.85467470549809],[-87.6955451755064,41.85480642834872],[-87.69555099160276,41.85501905838627],[-87.69555598790498,41.85519095302548],[-87.69555891416508,41.855284759807674],[-87.69555891538518,41.85528478478721],[-87.69545440299906,41.855308563241294],[-87.69516238378723,41.855374860861694],[-87.69432595623134,41.85556230638493],[-87.6938784500363,41.855662727572],[-87.69323786542206,41.855805633727975],[-87.69312858279832,41.8558300667953],[-87.69301207193486,41.85585617297439],[-87.69278950005629,41.855905700646595],[-87.6917258079745,41.856145717462304],[-87.69160302292441,41.85617316011059],[-87.69071041657482,41.85637261641353],[-87.68979574479539,41.85657571520779],[-87.68884516468344,41.85678992581785],[-87.68836598283922,41.856895977077],[-87.68817789466569,41.85693779969753],[-87.68803384627775,41.856969765652835],[-87.6880182285915,41.85689093637185],[-87.68800248101631,41.85617528296309],[-87.68799468373533,41.85585553309805],[-87.6879930065681,41.85579412062576],[-87.68797895317017,41.8556922269402],[-87.68797582471713,41.85508429029429],[-87.68797283342025,41.854971073100074],[-87.68796641562888,41.854787857508335],[-87.6879535957597,41.85442005481437],[-87.68795125006606,41.854333940515396],[-87.68792986798414,41.85395065294562],[-87.68793237439765,41.853857500810676],[-87.6879111826441,41.853344753025105],[-87.68789996366537,41.85290903881029],[-87.68788835806568,41.85246611870756],[-87.68788229371957,41.85233829323596],[-87.68786668815609,41.85200935786665],[-87.68787474362856,41.85200933535459],[-87.68824257398286,41.85200830750441],[-87.68836561064826,41.85200810716142],[-87.68864786014959,41.852001870678734],[-87.68888256512034,41.851993143883774],[-87.68931904480165,41.85198724964157],[-87.68960672929359,41.85198438927468],[-87.6899178430642,41.85198036964045],[-87.69018164280844,41.851976495862885],[-87.6905425539266,41.85196936257295],[-87.69082649038344,41.85196374928157],[-87.69103407640479,41.8519617267529],[-87.69128905236884,41.8519593381451],[-87.69158456866346,41.851955089588806],[-87.6918629800665,41.85195088195271],[-87.69210210340016,41.851948100856006],[-87.69245502128594,41.85194428029334],[-87.69265376404987,41.85194198622462],[-87.69283848798787,41.85193944897884],[-87.692993869855,41.85193568362431],[-87.69321502352955,41.85193032415065],[-87.69340605701701,41.85192815046847],[-87.69366793531545,41.851925520335904],[-87.69397147225271,41.851919334439884],[-87.6942095958113,41.85191730135377],[-87.69446570770891,41.851915114265736],[-87.69474286166236,41.85191182570132],[-87.69498992205374,41.8519080947879],[-87.69515087018668,41.851904680725276]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3507926.52187","perimeter":"0.0","tract_cent":"1154741.49367589","census_t_1":"17031300800","tract_numa":"16","tract_comm":"30","objectid":"794","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1887863.00045135","census_tra":"300800","tract_ce_3":"41.84811122","tract_crea":"","tract_ce_2":"-87.70758183","shape_len":"7941.74719603"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70960271637118,41.844454557014025],[-87.709910510052,41.84445011990311],[-87.70991160413149,41.8447213299937],[-87.70991620724232,41.8449125753337],[-87.70992292288143,41.845128091431086],[-87.70993068935933,41.84536016113759],[-87.70993655266648,41.84553876223772],[-87.70994199712314,41.84571892528928],[-87.70994800251685,41.845928262906405],[-87.7099526380828,41.84608967823226],[-87.70995932540886,41.846261439861586],[-87.70996964733156,41.84652654758577],[-87.70997454174079,41.84668777220058],[-87.7099798338247,41.846860963958356],[-87.70998561072079,41.847052270206746],[-87.70998822918465,41.84712813613521],[-87.71001723932943,41.84799460260654],[-87.71001867016565,41.848077008790696],[-87.71002020565514,41.84816542163558],[-87.71004832508777,41.84909124178488],[-87.71006574475763,41.849792220654514],[-87.71007039362202,41.84989049238962],[-87.71007530750094,41.84999436001378],[-87.71008985661963,41.85055248464032],[-87.71011197687561,41.851242732152635],[-87.71011267523696,41.851264524829816],[-87.71012750912085,41.85170646845721],[-87.70996397903627,41.85170749238526],[-87.70913462363883,41.851720139662326],[-87.70890459508088,41.85172280204877],[-87.70872807330413,41.851724845250445],[-87.7083944976378,41.85172895800993],[-87.70791133252762,41.851734890086306],[-87.70768901234666,41.85173625967404],[-87.70751412703541,41.851737336809066],[-87.70670412914285,41.85174845289355],[-87.70659752444944,41.851749907732724],[-87.70647176844712,41.85175176426378],[-87.70630902124351,41.85175409023516],[-87.70542295807151,41.85176275123604],[-87.70525465908878,41.85176516528519],[-87.70524979386751,41.85160428381847],[-87.70523984327912,41.85130671828827],[-87.70523147812185,41.851056566331756],[-87.70522293050193,41.850800946522824],[-87.705205643616,41.8501030411376],[-87.7052000526692,41.849951081091284],[-87.70519601758755,41.84984140545357],[-87.70517629190216,41.8492240032648],[-87.70514864981627,41.8482378111467],[-87.70514823840725,41.84814022977591],[-87.70514780987989,41.84803854563701],[-87.70512956587953,41.84754738745248],[-87.70511782482696,41.84710160002109],[-87.7051147246063,41.84700106070191],[-87.7051080566347,41.84681224635798],[-87.70510252333912,41.846650085011824],[-87.70509446661637,41.846334400696],[-87.70508992102309,41.846156295627054],[-87.70508349286271,41.845950523016185],[-87.70507590880871,41.84570909608754],[-87.70506821883548,41.84547474877007],[-87.70506075180958,41.845251379718555],[-87.70504944104212,41.844993247247395],[-87.70504589698197,41.84478905460064],[-87.70504048522427,41.8445175297098],[-87.70517661138008,41.84451655060292],[-87.70549004419169,41.844511787900466],[-87.70564307244413,41.844509491452435],[-87.70577958080571,41.84450744263316],[-87.70597276422558,41.844504546251265],[-87.70625585585114,41.8445009464204],[-87.7064105830183,41.844498978480786],[-87.70668704894295,41.844495163318726],[-87.7068674201905,41.84449259838682],[-87.70698274936747,41.844490958417595],[-87.70716613133446,41.844488335888705],[-87.70747562596904,41.84448330288052],[-87.70767630708276,41.8444800388857],[-87.70788403470164,41.84447666005663],[-87.70808161431263,41.84447451651074],[-87.70815520706998,41.84447371814113],[-87.70839540098547,41.84447110100171],[-87.70868872306399,41.8444668897441],[-87.70904413716816,41.84446178609315],[-87.70929578951645,41.844458389880565],[-87.7093471399519,41.844457696848366],[-87.70960271637118,41.844454557014025]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2376393.66396","perimeter":"0.0","tract_cent":"1152865.66032687","census_t_1":"17031290500","tract_numa":"11","tract_comm":"29","objectid":"795","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895254.82028315","census_tra":"290500","tract_ce_3":"41.86843253","tract_crea":"","tract_ce_2":"-87.71427067","shape_len":"7884.36960728"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71065978966098,41.87000410369398],[-87.71065407114125,41.869797179908424],[-87.71064817153055,41.869663584862735],[-87.71063999993689,41.869431184664194],[-87.71063291490643,41.86917005801769],[-87.71062582505374,41.86897185294188],[-87.71062030147161,41.86878715368673],[-87.71061876321977,41.86873573395658],[-87.71061876131836,41.868735665065515],[-87.71061782512984,41.86870486836981],[-87.71061540367742,41.8686252126184],[-87.71061367762931,41.868568440848875],[-87.71060771204024,41.86840004855628],[-87.71060014265142,41.868167324180476],[-87.71059413933246,41.86798273837923],[-87.71059004796889,41.86786712850461],[-87.71058531442569,41.86772689891483],[-87.71058290735319,41.86765715437435],[-87.71057779475319,41.867491675588326],[-87.71057049614427,41.86730373722076],[-87.71056950012465,41.86727808758982],[-87.71056622183433,41.867193669184026],[-87.71056199769184,41.86701609304142],[-87.710557526503,41.8668553106635],[-87.71055611926542,41.86680469871109],[-87.71055138857872,41.86663392555998],[-87.71054277813846,41.86634913394022],[-87.71095584662005,41.86634366292698],[-87.71127855268554,41.86634005998634],[-87.71170391954742,41.86633531041764],[-87.7119703750583,41.86633233409891],[-87.71229396211162,41.86632873307114],[-87.71255307429502,41.86632582546085],[-87.71298189319315,41.866320155673066],[-87.71326473770371,41.86631641525459],[-87.71361964958373,41.86631190935319],[-87.71398939511009,41.86630723536754],[-87.71428027157506,41.866303534664226],[-87.71460257804023,41.86629945370483],[-87.71497247030585,41.86629477734426],[-87.71542078841789,41.86628980936652],[-87.71542749781115,41.866503841345704],[-87.71543094546041,41.86664529877577],[-87.71543334864418,41.86674443417868],[-87.71543431092378,41.866784121275835],[-87.71543465010546,41.866798118798506],[-87.71543867517545,41.86696345434112],[-87.71544564768872,41.86721388201044],[-87.71545049150885,41.86735287244022],[-87.71545483548283,41.867527073897506],[-87.71545877889739,41.867656211993975],[-87.71545879898561,41.86765687099745],[-87.71546139385958,41.86773965165989],[-87.71546414553033,41.86781842655383],[-87.71547347500888,41.86799342293495],[-87.71547682589299,41.8681110484321],[-87.71548346281705,41.868344000208765],[-87.71548676566603,41.86845472117228],[-87.71549070056126,41.8686436627993],[-87.71561114791261,41.868642182270584],[-87.715624390526,41.86864201913872],[-87.7161369601106,41.86863571556805],[-87.71674648759654,41.86862856146627],[-87.71745221749839,41.8686202735195],[-87.71809553115209,41.8686121957346],[-87.71875499218876,41.8686047496075],[-87.71934101801322,41.868598004816754],[-87.71944626116293,41.868596550670254],[-87.71959722707277,41.86859446481286],[-87.71959730088322,41.86859446328632],[-87.71988519676783,41.868590484392],[-87.7201960612297,41.868587108744514],[-87.7201998116922,41.86867846522018],[-87.7202025531982,41.868744430587824],[-87.72020804756075,41.86886103582174],[-87.72020983187639,41.868975072657996],[-87.72021151204868,41.869082488149616],[-87.7202182321732,41.86926293125874],[-87.72022606030647,41.86948879767213],[-87.7202328987836,41.86968760045478],[-87.72023936012896,41.86986908525315],[-87.71964537956559,41.86988890908646],[-87.71929793597856,41.86989256818358],[-87.71904486890101,41.86989542178916],[-87.71897767227226,41.869896179257026],[-87.71864878040442,41.869899798416704],[-87.71830953380858,41.86990352528915],[-87.71804090671283,41.8699055441724],[-87.71800944440278,41.86990910779066],[-87.71799722482068,41.86991225309551],[-87.71798601057446,41.8699177638434],[-87.71797709689045,41.86992457671589],[-87.71797068562527,41.86993461377231],[-87.71796907787272,41.869941465790475],[-87.71626658901157,41.86993087643795],[-87.71603647132753,41.86993337196302],[-87.71577103920626,41.86993529293913],[-87.71553452253389,41.86994284693097],[-87.71529536619371,41.86994969358082],[-87.71508607857886,41.86995087228453],[-87.71473751440696,41.8699537154426],[-87.71437226414574,41.86995836114827],[-87.71405559180381,41.869962609027496],[-87.71360662735677,41.869967624132734],[-87.71344384721517,41.869969892733884],[-87.71327163037134,41.86997229237326],[-87.71309743462379,41.86997419259005],[-87.71293675256925,41.869975945181174],[-87.71264212051004,41.869979018149074],[-87.71239661285877,41.86998217402986],[-87.71211464309737,41.86998566125322],[-87.71161926599575,41.869991131029884],[-87.71137438450053,41.86999399557743],[-87.71129371252506,41.869994939018675],[-87.71084017482632,41.870002031611634],[-87.71065978966098,41.87000410369398]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5320692.41123","perimeter":"0.0","tract_cent":"1151484.4268535","census_t_1":"17031291100","tract_numa":"34","tract_comm":"29","objectid":"796","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893336.19170551","census_tra":"291100","tract_ce_3":"41.86319482","tract_crea":"","tract_ce_2":"-87.71939188","shape_len":"10622.5884317"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7153126887721,41.8626772648811],[-87.71531015773085,41.862536004656015],[-87.71530471633147,41.86239809212693],[-87.71529943868275,41.8622643347312],[-87.7152964066474,41.862187492127255],[-87.71529161511707,41.862075116474166],[-87.71528665818454,41.861930055830584],[-87.71528244789205,41.861746195409374],[-87.71527873980749,41.86157468684104],[-87.715275219724,41.86141034179009],[-87.71527196972926,41.86125988412873],[-87.7152688918756,41.86111823645525],[-87.71526496347416,41.86092386701953],[-87.71526100593896,41.86080293264855],[-87.71523366547827,41.85993497005644],[-87.71520966079073,41.859126492257424],[-87.71520645689787,41.8589744705562],[-87.71545082424812,41.85896785458471],[-87.71570427944619,41.85896605703487],[-87.71582337069253,41.85896521441346],[-87.71626809231125,41.858962067308184],[-87.7164261934594,41.85895887846833],[-87.71658612598534,41.858955652592954],[-87.71706962026133,41.858951611511735],[-87.7175078121565,41.85894794734138],[-87.71766219122776,41.8589461440976],[-87.7176837465048,41.85894589218979],[-87.7178797877923,41.85894360203525],[-87.71827072908239,41.85893917158169],[-87.71874958799411,41.85893374266501],[-87.71888152679746,41.85893141237079],[-87.71908347419605,41.85892784494322],[-87.71947438130692,41.85892581911916],[-87.71988626303599,41.85892368335944],[-87.72006603849474,41.85892074111566],[-87.72008767886882,41.85902415604364],[-87.7200946323727,41.859279958051204],[-87.72011545643632,41.86004736380937],[-87.7201320079384,41.86065876304811],[-87.72013580583452,41.86074933751565],[-87.72013948237499,41.86083701504428],[-87.72014119864694,41.86090409386217],[-87.72014483514616,41.861045222998435],[-87.72015986610825,41.861632189846816],[-87.72017214585037,41.86211740465718],[-87.72022534529209,41.86211684618245],[-87.72027048432511,41.86214532554784],[-87.72028387650661,41.86215376701831],[-87.72030703495086,41.86217364928321],[-87.72032001150026,41.86219866384281],[-87.72032472372213,41.86223186706074],[-87.72033358241679,41.86246127933243],[-87.72033586336745,41.86257841666063],[-87.72095853331517,41.86257050235449],[-87.72141137917743,41.86256474419836],[-87.72201468782016,41.86255707034889],[-87.72262850722396,41.86254925986725],[-87.72324344046807,41.86254143116499],[-87.72377739204349,41.86253463125565],[-87.72385037870248,41.86253402436313],[-87.72445795527844,41.862528970389036],[-87.72484774560066,41.86252572608314],[-87.72492565226179,41.86252507761416],[-87.7250606071709,41.86252358854263],[-87.72506828509691,41.86268272229295],[-87.72508942817802,41.86335696095564],[-87.72511568114466,41.864193192604354],[-87.72511636046173,41.86434254027205],[-87.725116907536,41.86446276738499],[-87.72514270202957,41.86528933666063],[-87.72515047478363,41.865663145441715],[-87.72515119049764,41.865697562745325],[-87.72515939662661,41.86609220214391],[-87.72517048968574,41.866172129968675],[-87.72481312132535,41.866177260096165],[-87.72394742176621,41.86618968263461],[-87.7237635009746,41.86619232159851],[-87.72273533886575,41.86620572770308],[-87.72151587278626,41.86622161718721],[-87.7209028362814,41.86622960010492],[-87.72077619701238,41.866231248556126],[-87.72012320064557,41.866239745789784],[-87.71952714944135,41.86624750003089],[-87.71879370528328,41.86625703942014],[-87.71870785917952,41.866258155506806],[-87.71785388122414,41.86626925618807],[-87.71663514996303,41.86628507829349],[-87.71563381663229,41.86628739904904],[-87.71542078841789,41.86628980936652],[-87.71541264055868,41.866029883503565],[-87.71540856094381,41.86585878470477],[-87.71540689572296,41.8657885502615],[-87.7154053495496,41.86572333844451],[-87.71540402879722,41.86566792455556],[-87.71540226411413,41.865593875334696],[-87.71539888928814,41.86545252804027],[-87.71539513398766,41.86529350569181],[-87.71538835134322,41.86513872092016],[-87.7153806868109,41.86496381545844],[-87.71537645110463,41.864816563366865],[-87.71537048684249,41.86461046485843],[-87.71536590525243,41.86446680614568],[-87.71536018209467,41.86428721870578],[-87.71535436018532,41.86408186216726],[-87.71534700104803,41.86382227085367],[-87.71534123454806,41.86361669505577],[-87.71533860257824,41.86352208666348],[-87.71533698026512,41.86346376221876],[-87.71533548888563,41.86341059767938],[-87.71533121381829,41.86325818613357],[-87.71532267329991,41.86296708463711],[-87.71531880115427,41.86285468540717],[-87.7153126887721,41.8626772648811]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3752874.757","perimeter":"0.0","tract_cent":"1156592.37411689","census_t_1":"17031291700","tract_numa":"11","tract_comm":"29","objectid":"797","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1891084.20053168","census_tra":"291700","tract_ce_3":"41.85691334","tract_crea":"","tract_ce_2":"-87.70070188","shape_len":"9039.83100085"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69569178453469,41.85922132670341],[-87.69568365082287,41.85895802469954],[-87.69567741994393,41.85875752212573],[-87.69567230650627,41.8585923443392],[-87.6956669418386,41.85838594640838],[-87.69566168476622,41.858183500798056],[-87.69565581655237,41.85802040443955],[-87.69564966363146,41.857849018837605],[-87.69564424737213,41.85769585919119],[-87.69563821642079,41.85753067627875],[-87.69563389646491,41.85738825275852],[-87.69562809637826,41.85719702811167],[-87.6956211606184,41.85700834931229],[-87.69561637368055,41.85688422738667],[-87.69560929160097,41.85670292954389],[-87.6956018730766,41.85649638320042],[-87.69559414270627,41.856284318883986],[-87.69558813733042,41.85611285171938],[-87.69558195668098,41.85592211888181],[-87.69557300627501,41.85566287396354],[-87.6955687645371,41.85555168927467],[-87.69574437161661,41.85555765004999],[-87.69594004349372,41.85555547322022],[-87.69595336699847,41.855555324601994],[-87.69614229461149,41.85555190005565],[-87.69643347247144,41.8555462977333],[-87.6965985435202,41.855542575208766],[-87.69693023830281,41.855537717929025],[-87.69737278552843,41.85553308881824],[-87.69746052753644,41.85553181830933],[-87.69806988064616,41.85552251189734],[-87.69888724095331,41.855509914020146],[-87.69921275795315,41.85550509999491],[-87.69946722623258,41.85550136277461],[-87.70036166838094,41.85548952831383],[-87.70047151455363,41.85548764707596],[-87.70066958070065,41.85548425445941],[-87.70122508698834,41.855474607231116],[-87.70157108640674,41.85547080293264],[-87.70267014322522,41.85545409334777],[-87.70283817034039,41.85545206196301],[-87.70292888405345,41.85545096522625],[-87.7029201209517,41.85511726323227],[-87.70291633022882,41.854990704628456],[-87.70290762609638,41.85470012210804],[-87.70290277248317,41.854549820089886],[-87.7028986472836,41.85442207933115],[-87.70289219085456,41.85418318270659],[-87.70289149980914,41.854157603510394],[-87.7028831727095,41.853950009159625],[-87.7028772640418,41.85380167308037],[-87.7034802094009,41.85366382968072],[-87.70366552191793,41.85362416652837],[-87.70377052410394,41.85361052687996],[-87.70401357332567,41.85361594784706],[-87.70409125500211,41.85361091623375],[-87.70421631792276,41.85360281587588],[-87.70463107663257,41.853593259259966],[-87.70469862503693,41.85359225934098],[-87.70518735971415,41.85358502410639],[-87.70530651749978,41.853586651323546],[-87.7053097582444,41.85369914117308],[-87.70531699798522,41.85396334323081],[-87.70532082222728,41.854102639724296],[-87.70532291186322,41.85417877554743],[-87.70533738551386,41.85470599652318],[-87.70535408750816,41.85528007715937],[-87.70535838992852,41.855414932455666],[-87.70537254460363,41.85585855814737],[-87.70539376994395,41.85672448786968],[-87.70541268529485,41.85727637441002],[-87.70541661759056,41.85739111084865],[-87.70542015671008,41.85749436919597],[-87.70542497222254,41.857736354028255],[-87.70493441700746,41.85790881232002],[-87.70461301827676,41.8580268402118],[-87.70422380899056,41.858160768952224],[-87.70382940471127,41.85829647965313],[-87.70322200995197,41.85851131734979],[-87.70293193453853,41.858613073986106],[-87.70293524712957,41.8587154848104],[-87.70293930290146,41.8588408631101],[-87.7029426720869,41.8589450261748],[-87.70294815103776,41.85911440190362],[-87.70212599721856,41.8591083756225],[-87.7016171003958,41.85910464238426],[-87.69643463090718,41.85921650201153],[-87.69569178453469,41.85922132670341]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4717644.58232","perimeter":"0.0","tract_cent":"1159829.28927523","census_t_1":"17031282700","tract_numa":"28","tract_comm":"28","objectid":"798","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1896369.76651816","census_tra":"282700","tract_ce_3":"41.8713514","tract_crea":"","tract_ce_2":"-87.6886749","shape_len":"9585.87111315"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.690055147483,41.866573585711635],[-87.69047478462106,41.866567578894845],[-87.69058454201281,41.86674313934933],[-87.69064909831181,41.86684984098044],[-87.69071411752607,41.86695620130895],[-87.69084220916004,41.86705662683417],[-87.6908621318443,41.867167607750225],[-87.6908716324648,41.867220530575736],[-87.69095013127557,41.86729408645446],[-87.69094843475395,41.86738767354807],[-87.69097798354517,41.86746159089071],[-87.69100523142342,41.8675361814192],[-87.69103018071648,41.86761110184214],[-87.69105237325105,41.86768634987306],[-87.69107272448096,41.86776227366471],[-87.6910903216404,41.86783818150163],[-87.69111166367217,41.867952530634845],[-87.69112794562162,41.868068223043956],[-87.69113998424832,41.86814924635756],[-87.69115060918371,41.86823403401317],[-87.69116175641555,41.86835827431188],[-87.69116977413094,41.868474263802504],[-87.69117310095935,41.86855455150807],[-87.69117550962002,41.86863483407852],[-87.69117608302669,41.86871510720928],[-87.69118539984683,41.86903824833237],[-87.69119005092656,41.86919954524402],[-87.69119277233959,41.86929465784451],[-87.69124000583304,41.869389864541],[-87.69122282838455,41.869794488002356],[-87.69121203477029,41.87004873360493],[-87.69121312217999,41.870104248483216],[-87.69122428275142,41.87019579242723],[-87.69126344823287,41.870303488084716],[-87.69122396736599,41.87062571715387],[-87.69123249546483,41.87101167487864],[-87.69124659524363,41.871033226102696],[-87.69129652134687,41.871109536072],[-87.69115384740739,41.87111215029302],[-87.69119133813875,41.8720216907515],[-87.69122884496647,41.87293162055557],[-87.69126627620328,41.87383969137748],[-87.69131158326148,41.87493879182797],[-87.69132466693823,41.87525618771161],[-87.69133029266035,41.87539265608746],[-87.6913437924769,41.87572014514808],[-87.69135677454804,41.87603506263558],[-87.69122390221918,41.8760363307785],[-87.6911013491659,41.87603750032881],[-87.69105772807595,41.87603791664477],[-87.69057104385024,41.87604320667866],[-87.69007426958272,41.876049967503164],[-87.68971637411961,41.87605494036275],[-87.6893838892997,41.876058345475464],[-87.68910002946748,41.876060869824066],[-87.68887411622755,41.87606289538935],[-87.68873173600792,41.87606458945714],[-87.68831622034732,41.87606953281975],[-87.68800061247897,41.87607427707468],[-87.68752976542356,41.876071779566814],[-87.68711849486203,41.87606959671861],[-87.68692327133839,41.87606856005397],[-87.68626949838719,41.876083619061205],[-87.686260636601,41.875878548801495],[-87.68625627568493,41.87577763248354],[-87.6862461249258,41.875542737041634],[-87.68624799674384,41.87545716792038],[-87.68625124240806,41.87530878547173],[-87.6862533617679,41.87521188783623],[-87.68625674681306,41.875057146644174],[-87.68625810833464,41.874994898834814],[-87.68626288781242,41.87477639024539],[-87.68625151388993,41.874469766098116],[-87.68624672435064,41.87441488157115],[-87.68623708905902,41.874174403607476],[-87.68623479294277,41.8738911141606],[-87.68623299941328,41.873669822872564],[-87.68622784022934,41.873496960966186],[-87.68622573498831,41.87342669603965],[-87.68622091811878,41.87326591102768],[-87.68621365324815,41.87300019460792],[-87.68620997500051,41.872865655419346],[-87.68619945542193,41.87254718082063],[-87.68619229290343,41.87231086052789],[-87.68618803159552,41.87207087927815],[-87.68618510514843,41.871905933070494],[-87.68617921753716,41.871681585141424],[-87.68617251842379,41.871439339842524],[-87.68616942055915,41.871328591874764],[-87.6861647100569,41.87116023327017],[-87.68616199423494,41.871063153544036],[-87.68615458199884,41.87081514127304],[-87.68614800035894,41.87057229286353],[-87.68614243878184,41.87041024094311],[-87.68614057576451,41.870249005693566],[-87.68613945947538,41.870152346877795],[-87.68613056974122,41.869901664042125],[-87.68612375974078,41.86969959415629],[-87.68611771118522,41.86952027812445],[-87.68611198454866,41.86933904265048],[-87.68610794268,41.86921113802312],[-87.68610241185951,41.86897639100887],[-87.6860994846023,41.8688521696778],[-87.686094958814,41.86866756579452],[-87.68609171256543,41.86853442384019],[-87.68608791070291,41.868432014099135],[-87.68608429296611,41.86833457303888],[-87.68607622491673,41.868086145313086],[-87.68606935573135,41.86787905277168],[-87.68606432744801,41.86769332088092],[-87.68606307663501,41.86757772592247],[-87.68606221382898,41.86752182557822],[-87.68606013928157,41.86737331744708],[-87.68605229631885,41.86706394082257],[-87.68604979166429,41.86696513388549],[-87.68603841451899,41.86661254415211],[-87.68660264974994,41.86660533508095],[-87.68718683939073,41.86660084309532],[-87.6876716806538,41.86659651714908],[-87.6881454022716,41.86659174249246],[-87.68847395735695,41.86658725542825],[-87.68877188867704,41.8665831855701],[-87.68917758811948,41.86658117252677],[-87.68951683595017,41.86657948807727],[-87.690055147483,41.866573585711635]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1435589.73104","perimeter":"0.0","tract_cent":"1174122.14145022","census_t_1":"17031080900","tract_numa":"18","tract_comm":"8","objectid":"799","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1907430.80181995","census_tra":"080900","tract_ce_3":"41.90139699","tract_crea":"","tract_ce_2":"-87.63587069","shape_len":"5164.90355279"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63703734232278,41.89894537182734],[-87.63726170309687,41.89894350921747],[-87.63726713107614,41.899070941559124],[-87.63727553043765,41.899271623449756],[-87.63728072341755,41.89944961824799],[-87.63728642287684,41.89961480108574],[-87.63729080671145,41.89972365849679],[-87.63729553601668,41.89984109098696],[-87.63730243414763,41.90000748799264],[-87.63731178183325,41.900232517225916],[-87.63731777144473,41.900374375536785],[-87.63732281515333,41.900505144973685],[-87.63732556723632,41.90057650816473],[-87.63733474809813,41.900799999317925],[-87.63734129740591,41.900954594249974],[-87.63734795261293,41.901106171162574],[-87.6373536379393,41.90128343617558],[-87.6373559657006,41.90135602729889],[-87.63736345084422,41.90154619315053],[-87.63737063836419,41.90173339341983],[-87.6373781983655,41.90191332372248],[-87.63738400567779,41.902065802438415],[-87.63738871669165,41.90218951220002],[-87.63739855261485,41.90241698639448],[-87.63740822104145,41.90264632564247],[-87.63741456525682,41.90284503693555],[-87.63741863683833,41.90297256826452],[-87.63742851203261,41.90322350585199],[-87.6374436099329,41.90359560549456],[-87.63744453764596,41.903804447192705],[-87.63714202304384,41.90380502842524],[-87.63709378174403,41.90380740772145],[-87.63705221095563,41.90380945779681],[-87.63701551964492,41.903811267413516],[-87.63696995882069,41.903813514174466],[-87.63692499009862,41.903815732126304],[-87.63657072485003,41.90382230972335],[-87.63622354553482,41.903827678698214],[-87.6360711618339,41.90383003478207],[-87.63598582564471,41.90383140049216],[-87.63568578716614,41.90383620120475],[-87.63522145636837,41.90384358776759],[-87.63474026421358,41.90385095220064],[-87.63447783251493,41.9038534601581],[-87.63447250475855,41.9036591476293],[-87.63446299119984,41.90341992989615],[-87.63445429274168,41.90319358756296],[-87.63444647641793,41.90300078510947],[-87.63444202708033,41.90288418276104],[-87.63443687736473,41.90274924522296],[-87.63442767201094,41.90251883831244],[-87.63441889089188,41.90227981708342],[-87.6344123293407,41.90210414597323],[-87.63440407807565,41.901883239888576],[-87.63439709839157,41.90171489387165],[-87.63439152573476,41.90157789528111],[-87.63438701213515,41.90146760452177],[-87.63438160643229,41.90132459679605],[-87.634374525702,41.90113723261004],[-87.6343655190916,41.90086505988298],[-87.63435961834261,41.90067523250482],[-87.63435381349889,41.90054272972484],[-87.63434406002388,41.90032008885896],[-87.63433663400647,41.90011856201609],[-87.63432936652714,41.89992941262558],[-87.6343222949511,41.89976534699366],[-87.63431605848638,41.8996206324668],[-87.63430685419898,41.89937332122258],[-87.63429755663643,41.8991480730426],[-87.63429136349875,41.89898167958644],[-87.63448768211339,41.89897947166462],[-87.63467750196547,41.898976976886615],[-87.63482793995571,41.898974984562464],[-87.63501052324354,41.898972526169516],[-87.63518520762405,41.89897021293162],[-87.63526838027502,41.89896913487282],[-87.63550081410548,41.898966121433276],[-87.63577201753841,41.89896283206463],[-87.63591233677121,41.898961129759876],[-87.63600759424415,41.898960006833434],[-87.63629373974892,41.8989560720625],[-87.63632463607854,41.89895564736332],[-87.6365400881333,41.89895252270475],[-87.63654741211559,41.8989524164876],[-87.63662069596492,41.89895135894835],[-87.6366893284834,41.898950368643774],[-87.63670169833816,41.8989501909427],[-87.63674608117073,41.89894955376382],[-87.63703734232278,41.89894537182734]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1353098.07897","perimeter":"0.0","tract_cent":"1169308.68433021","census_t_1":"17031283300","tract_numa":"3","tract_comm":"28","objectid":"800","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895313.35941839","census_tra":"283300","tract_ce_3":"41.86825191","tract_crea":"","tract_ce_2":"-87.65390327","shape_len":"4833.40660473"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65112403565512,41.869507725726336],[-87.65112079013902,41.869295462634376],[-87.65110805686842,41.8689529867114],[-87.65109918335048,41.868713662874136],[-87.65109010187277,41.868473184931695],[-87.65108664025067,41.86834696619769],[-87.65108158266129,41.868162567839754],[-87.65107342662994,41.8678661403867],[-87.6510581710502,41.86737510339751],[-87.6510552456521,41.8672936915535],[-87.65104650951886,41.867087332397006],[-87.65137760154947,41.86708195090282],[-87.65147338012535,41.8670825898515],[-87.6518169063372,41.86707685034116],[-87.65181730144799,41.86707684335538],[-87.65181730401777,41.86707684337063],[-87.65331682899576,41.86705177717164],[-87.6539397362995,41.86704135862938],[-87.65409806305395,41.86703871004711],[-87.65438291635347,41.86703394405076],[-87.65518403500074,41.86702053703341],[-87.65542058865175,41.86701657710739],[-87.65649280214804,41.866999355511815],[-87.65668122584161,41.86699661537042],[-87.65668781109727,41.867223337791884],[-87.65669395628753,41.86740844626457],[-87.65670103800721,41.86753576633171],[-87.65670693161043,41.867747245284406],[-87.65670998751854,41.86785689636909],[-87.65672036974827,41.86826157996089],[-87.65672226830704,41.86833559342125],[-87.65673683526019,41.868797316719736],[-87.65673820095842,41.86884060186228],[-87.65675120506245,41.86927517555599],[-87.65675496487097,41.86941546948246],[-87.6565897664737,41.869418242588026],[-87.65622817247164,41.869424299275096],[-87.6554433281622,41.86943744186116],[-87.65525373739943,41.869440046010055],[-87.65497522002833,41.86944387105349],[-87.6544170838974,41.869454074634035],[-87.65430614808062,41.8694560027564],[-87.65422345150354,41.86945743996547],[-87.65338032403267,41.869472090428225],[-87.6532046151875,41.86947474264708],[-87.65294158526474,41.86947871265399],[-87.65233562356717,41.86948755552744],[-87.65221395774677,41.86949034665581],[-87.65203059599627,41.86949455241065],[-87.65166614856749,41.869499524834865],[-87.65138896692062,41.8694959116431],[-87.65131447363075,41.86949798575578],[-87.65112403565512,41.869507725726336]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3577843.10677","perimeter":"0.0","tract_cent":"1165272.96264563","census_t_1":"17031284000","tract_numa":"28","tract_comm":"28","objectid":"801","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1893446.26517891","census_tra":"284000","tract_ce_3":"41.86321513","tract_crea":"","tract_ce_2":"-87.66877223","shape_len":"7998.58098979"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67100363116177,41.85954692073163],[-87.67114344424452,41.85954172004254],[-87.67115242677227,41.85967709160775],[-87.67115461045339,41.859773496710254],[-87.67115711237638,41.859883959720676],[-87.67115971571938,41.85999889672387],[-87.67116095880068,41.860053789540665],[-87.67116377379537,41.86017806563709],[-87.6711676868233,41.86035083575256],[-87.67117338652845,41.860511792542034],[-87.6711762903185,41.86059380432391],[-87.67118216520473,41.86071664853477],[-87.67118646968515,41.86085902525173],[-87.67118889249411,41.86093916157603],[-87.67119041154108,41.86098940528646],[-87.67119466781344,41.86113019499056],[-87.67119409286961,41.861387712788755],[-87.67119379631795,41.86152064248618],[-87.67120885678428,41.86174391951491],[-87.67121171175866,41.86184547338011],[-87.67121436204461,41.86193975378994],[-87.67121861811285,41.86212501547828],[-87.67122331028769,41.86229252435161],[-87.67122951042904,41.86251388417461],[-87.67123397538191,41.86266470666335],[-87.67123610678377,41.86274786956594],[-87.67124036205992,41.86291389427943],[-87.67124796047443,41.86320159733365],[-87.67125379912504,41.86342267402538],[-87.67125904225452,41.86360835299345],[-87.6712664758882,41.863780981937566],[-87.67127144689958,41.86393254825782],[-87.67127527493899,41.864104199485446],[-87.67127965422675,41.86430059963853],[-87.67128371772333,41.86443341746554],[-87.67128695431995,41.86455945386454],[-87.67128832682378,41.86461291845067],[-87.67129298754021,41.864780372183425],[-87.67129831077703,41.865010863019556],[-87.6713025798442,41.865195715239786],[-87.67130729195513,41.86534036451298],[-87.67131112289714,41.86546178436875],[-87.67131368279468,41.865542927186056],[-87.67131788817608,41.865693995079795],[-87.67132243226588,41.86591536196276],[-87.67132499828982,41.866040360703494],[-87.67133117348284,41.86623180788721],[-87.67133199078874,41.86625439806766],[-87.67133559160682,41.86635389768713],[-87.67133934405288,41.86645759715879],[-87.67134630910664,41.86669227359277],[-87.67135019597096,41.86682323111434],[-87.67123522216878,41.86682442482292],[-87.67098618557563,41.86682897130128],[-87.67068365404127,41.86683386721182],[-87.67045944998478,41.86683701904537],[-87.67027747193144,41.866839618405166],[-87.67012643443788,41.8668411820979],[-87.66997117665908,41.86684278927265],[-87.669809544489,41.86684473701858],[-87.66973676591327,41.866845972397755],[-87.66949650587694,41.86684962672532],[-87.66945723590244,41.866850223827505],[-87.66940222848692,41.86685106034613],[-87.668903008766,41.86685865106854],[-87.66638355148599,41.86686149035225],[-87.66638138489304,41.86677641310763],[-87.66638037565659,41.86667563832876],[-87.66638363838915,41.866435620602864],[-87.66637979354483,41.86632656970175],[-87.6663721238985,41.86610901521324],[-87.66636844304584,41.865989169919814],[-87.66635439351339,41.86553171426897],[-87.66634406339979,41.86519534561741],[-87.66634162744579,41.86508038407077],[-87.66633212581796,41.864631963042186],[-87.66632450701111,41.86427239480324],[-87.66631928322467,41.864173962146744],[-87.66631308687283,41.86405720650102],[-87.66629916634099,41.863397379789895],[-87.66629589916678,41.86326770747508],[-87.66629292883738,41.863149811923286],[-87.66627465623624,41.86248842304749],[-87.666270812386,41.862359459221715],[-87.66626733435905,41.862242769820284],[-87.66624204985295,41.86145150615822],[-87.66623297507628,41.860978210108186],[-87.66623135026587,41.860919196184284],[-87.66622930035678,41.86084474829953],[-87.6662273826528,41.86077509923607],[-87.66622443544618,41.86066806415344],[-87.66622377548387,41.86060356594967],[-87.66621381782971,41.860199828538214],[-87.66621255550973,41.860148641679565],[-87.66620982134403,41.86003778397803],[-87.66620759403797,41.859954801791],[-87.66620563161594,41.859881724059285],[-87.66620088401915,41.85970488825838],[-87.66619826527122,41.85960733344552],[-87.66642456054679,41.85960428655776],[-87.66688443547268,41.85959887724238],[-87.66858031234398,41.85957891369803],[-87.6687060467225,41.859578099116206],[-87.66896288418332,41.85957643473407],[-87.66920079425613,41.8595733996176],[-87.669812037729,41.85956608566036],[-87.67061162286768,41.8595532269315],[-87.67100363116177,41.85954692073163]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5417686.11546","perimeter":"0.0","tract_cent":"1164364.06806925","census_t_1":"17031280400","tract_numa":"32","tract_comm":"28","objectid":"802","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901744.62066656","census_tra":"280400","tract_ce_3":"41.88600579","tract_crea":"","tract_ce_2":"-87.67187394","shape_len":"9394.7095564"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66706868914602,41.88885187769547],[-87.66706710211577,41.888786396930826],[-87.66706513733008,41.888640142721535],[-87.66706449242695,41.88852499473219],[-87.66706457524747,41.888464045064126],[-87.66706144939194,41.888284196790785],[-87.66706076163796,41.888244565954274],[-87.66705739978828,41.88805088532754],[-87.6670562116032,41.8879824370496],[-87.66705152132899,41.88782615765979],[-87.66703818515937,41.88738131279123],[-87.66702489494347,41.88693799697115],[-87.66701196209338,41.88650660170802],[-87.66700136331299,41.8861530538055],[-87.66699322153653,41.88588149121175],[-87.66698950307028,41.88575745758765],[-87.66697889496541,41.88540355338093],[-87.66696619296206,41.885353752075765],[-87.66695976168653,41.88532853715253],[-87.6669070876088,41.885122016455284],[-87.6668904468668,41.88427193394169],[-87.66687140155761,41.88329897535946],[-87.66694514916546,41.883297747449916],[-87.66713796879702,41.88329453741387],[-87.66726578434712,41.88329253457384],[-87.66764761530224,41.883286653046575],[-87.66795356615312,41.88328178507228],[-87.66831064758247,41.883275703053044],[-87.66876090853643,41.88326826566253],[-87.66904981837493,41.883263543131434],[-87.66935805194919,41.88325882869178],[-87.66956699302669,41.883255615305266],[-87.6696566835974,41.88325429119437],[-87.66974497789408,41.883253045114394],[-87.67005035402725,41.883248751932555],[-87.67023750107222,41.88324612055917],[-87.6705793895546,41.88324039381294],[-87.67111716214481,41.88323138303263],[-87.67141598994084,41.88322635498714],[-87.67179667500783,41.88322166134786],[-87.67230791405794,41.88321535630686],[-87.67260207654431,41.88321042537882],[-87.6729404247534,41.88320475273705],[-87.67338014470656,41.883197373826604],[-87.67381972531741,41.88318925148595],[-87.67423824514348,41.883183437716184],[-87.67464724172994,41.88317775495597],[-87.67510013976212,41.8831707910928],[-87.67561419024061,41.883163099406026],[-87.67619398753479,41.88315395975337],[-87.67669035873979,41.88314691345579],[-87.67669961053872,41.8834850635735],[-87.67670551916056,41.88368990030504],[-87.67671260963931,41.883976467375014],[-87.67671486244643,41.88406751012346],[-87.67671509804113,41.884077030978546],[-87.67672214241453,41.884361758847476],[-87.67672596805414,41.88451532116351],[-87.67672913152637,41.88464396195631],[-87.67673381618985,41.88483202431894],[-87.67673803399072,41.88495267001614],[-87.67673907616287,41.8849824795578],[-87.67675210885108,41.88535526405004],[-87.67675347251583,41.88540790643485],[-87.67675621488159,41.88551376758005],[-87.67676032963732,41.885671420440076],[-87.67676526911647,41.88586394773673],[-87.67677048788333,41.88606736303582],[-87.67677753129418,41.88629407777743],[-87.67678491145772,41.886530948133604],[-87.6767917871703,41.886771753858454],[-87.67680015716796,41.887064900273494],[-87.67680461153503,41.887222362660246],[-87.67681188152055,41.887480088863846],[-87.67681704532839,41.887675764752615],[-87.67682360308311,41.88792425660509],[-87.67682881652826,41.88810716270603],[-87.67683523717362,41.88833418747156],[-87.67683752384202,41.88841559832839],[-87.67684052330199,41.888522984489896],[-87.6768436625196,41.888635373652356],[-87.67684594636304,41.88872043378143],[-87.67645602120706,41.888727013323404],[-87.6762725309072,41.888730117278364],[-87.67616873849462,41.88873187353129],[-87.67573364495482,41.8887392621103],[-87.67538703560858,41.8887454762864],[-87.67529050264889,41.88874720665249],[-87.67489700385174,41.88875252523872],[-87.67465873039434,41.88875571424958],[-87.67440143440548,41.88875993741628],[-87.67424865361566,41.88876244485829],[-87.67402742244526,41.8887654833872],[-87.67383895529657,41.888768078479174],[-87.6736090926149,41.888771203843945],[-87.67336262684745,41.888774617524966],[-87.67317122148,41.88877722207719],[-87.67298260738536,41.88877981491875],[-87.67278550868988,41.88878249585885],[-87.67257282784202,41.88878618230446],[-87.67248239256016,41.888787749730525],[-87.67235154679287,41.88879048186372],[-87.67211292451134,41.88879541989812],[-87.67196076779244,41.88879978875921],[-87.67180881751624,41.88880415147283],[-87.67165293320481,41.88880605251038],[-87.67145587424208,41.888808429530336],[-87.67134142166066,41.88880981673875],[-87.6711275403557,41.88881240933709],[-87.67073731888841,41.8888275122189],[-87.67049598413949,41.88882122458346],[-87.6701666043028,41.888826897034704],[-87.66992931177944,41.88883106982238],[-87.66967563619498,41.88883555907681],[-87.66952238765816,41.88883691948965],[-87.66932593148147,41.88883916324267],[-87.66899138112947,41.888845018122744],[-87.66877232421783,41.88884633407415],[-87.66844492921982,41.88884828090446],[-87.66810930696413,41.888850288912394],[-87.66801425006115,41.88885123932812],[-87.66776522286547,41.8888537287868],[-87.6674125118066,41.88885681573733],[-87.66726460291522,41.888858125889556],[-87.66706868914602,41.88885187769547]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"884893.021077","perimeter":"0.0","tract_cent":"1162406.0908987","census_t_1":"17031281400","tract_numa":"4","tract_comm":"28","objectid":"803","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900340.57481973","census_tra":"281400","tract_ce_3":"41.88219415","tract_crea":"","tract_ce_2":"-87.67910336","shape_len":"3993.83483659"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67700965303817,41.881307795785524],[-87.67730900330824,41.881304621461766],[-87.677448855981,41.881302977908646],[-87.67775215081494,41.88131176928607],[-87.67786902887522,41.88130895097711],[-87.67908547325928,41.881279608907136],[-87.68152786393249,41.881241253762944],[-87.68152256656491,41.881505227529544],[-87.68152760151848,41.881671179774216],[-87.68153474420443,41.8818825269342],[-87.68153872528963,41.88200027765318],[-87.68154327754765,41.88215342551403],[-87.68155142283109,41.882427464038805],[-87.6815545238872,41.88251979804264],[-87.68155713264912,41.88259780895727],[-87.68156201523892,41.88274382583512],[-87.68157018886178,41.883067048218855],[-87.68125787279773,41.88307316496585],[-87.68083817591418,41.88307983709926],[-87.68036218746578,41.88308605042833],[-87.6799230575775,41.88309329478088],[-87.67953744345773,41.8830994974596],[-87.67913055642623,41.88310740697348],[-87.67892383344669,41.88311142510352],[-87.67874911590286,41.883114163438066],[-87.67849888458599,41.88311811364246],[-87.67807668960776,41.8831247888795],[-87.67768956657237,41.883131278609326],[-87.67712684230314,41.88314071547026],[-87.67688253430507,41.883144184745774],[-87.67669035873979,41.88314691345579],[-87.67668387098684,41.88290980738889],[-87.67667658527749,41.88268894953824],[-87.6766722358093,41.88255414163874],[-87.67666311237025,41.88223191677749],[-87.67665831964571,41.88206265014168],[-87.67665059850782,41.88177778052569],[-87.67664897106695,41.881716876695236],[-87.676646009245,41.88160805043895],[-87.67664187104467,41.88131386344491],[-87.67700965303817,41.881307795785524]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3571247.37437","perimeter":"0.0","tract_cent":"1150444.71100363","census_t_1":"17031260800","tract_numa":"18","tract_comm":"26","objectid":"804","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898396.39502157","census_tra":"260800","tract_ce_3":"41.87710093","tract_crea":"","tract_ce_2":"-87.72307656","shape_len":"8033.86776945"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72474418991601,41.8734448651902],[-87.72541255190315,41.87344325109816],[-87.72541529215547,41.8735239175194],[-87.72542202605915,41.87372215345805],[-87.72542672170876,41.87386038020273],[-87.72542928570803,41.873935858500424],[-87.72543429450812,41.874083315266574],[-87.72544168255098,41.87430079843674],[-87.72544364599264,41.874358595356114],[-87.72544836406229,41.87449748658677],[-87.72545465081207,41.874653612880365],[-87.72546459144213,41.87481205846655],[-87.72547690066487,41.875008260466004],[-87.72548213714431,41.87514926036202],[-87.72548491068441,41.875268433441484],[-87.72548813875511,41.875407141953715],[-87.72549369610927,41.87554915891074],[-87.72550011461209,41.87572778708124],[-87.72550450271707,41.87588121557103],[-87.72551207859712,41.87605825983751],[-87.72551563112302,41.87617819662909],[-87.72552067434438,41.87634848238826],[-87.72552465682466,41.876466835546815],[-87.7255304951435,41.876633933667584],[-87.72553436912253,41.87677490161267],[-87.7255419806387,41.87696366398717],[-87.7255460093603,41.87708737442799],[-87.72555039994583,41.87722218946823],[-87.72555609060245,41.87738116654876],[-87.72556192262327,41.87753755023332],[-87.72556247362735,41.877552331758636],[-87.72556803690628,41.877705380575755],[-87.72557480481849,41.877855307318875],[-87.72557857861308,41.877979851740164],[-87.72558644149291,41.87823934459555],[-87.72559240515842,41.878423741702754],[-87.72559651762734,41.878571067644],[-87.72560183653196,41.87874217202611],[-87.72560394152909,41.8787957111217],[-87.72560684428278,41.87886953800847],[-87.7256147377193,41.8790702878597],[-87.72561970392432,41.879247620354334],[-87.72562220147773,41.87931464786015],[-87.72562655462656,41.87943146641143],[-87.72563205110279,41.87962647438955],[-87.72563717407523,41.87976168923845],[-87.7256475022603,41.880034296648326],[-87.72565416438748,41.88022825478642],[-87.7256591001691,41.88036048453394],[-87.72566655819595,41.880550014361695],[-87.72567027835919,41.880726990598596],[-87.72544495201572,41.88073144383909],[-87.72508808414003,41.8807363874497],[-87.72478763633741,41.880739625635776],[-87.72467496543847,41.88074066877045],[-87.72452997685559,41.880742019619746],[-87.7241708028553,41.880746179764486],[-87.72384350497263,41.880750123770206],[-87.72345891946911,41.880754311474796],[-87.72325256862341,41.880756951186],[-87.72282833024943,41.88076314539313],[-87.72228106405832,41.880767863777216],[-87.72210014838922,41.88077063318423],[-87.72172355945067,41.88077570835442],[-87.72128409704507,41.880781462591344],[-87.72102032908894,41.880785160825894],[-87.72082912626095,41.880788347311906],[-87.72079458360703,41.88078892295542],[-87.72075298345551,41.88078961626727],[-87.72071128174262,41.87982283413931],[-87.72070054038606,41.879513180857565],[-87.72068038924807,41.87893225774712],[-87.72067517133956,41.87878609123914],[-87.72064862626563,41.878042471575725],[-87.72062960545233,41.877150432704696],[-87.72065798157938,41.877117232949736],[-87.72068713907952,41.8770856076157],[-87.72070340289619,41.877053720846675],[-87.72070146194946,41.876992280183636],[-87.72069543418579,41.87681988168687],[-87.72068833057907,41.87659865723594],[-87.72068075583464,41.87635371966634],[-87.72067704297969,41.87624055881154],[-87.72067290631696,41.876114489209684],[-87.72066725300118,41.87595287758731],[-87.72065461993161,41.87579929682037],[-87.72063345313951,41.875678052676655],[-87.72059538986741,41.875526696275855],[-87.72052271888127,41.87533031441258],[-87.72048381889853,41.87522519385273],[-87.72044097390862,41.87502485443736],[-87.72042272089071,41.87479854842117],[-87.72041632139965,41.874626833924566],[-87.72041497655472,41.874590657518276],[-87.72041319502272,41.8745427333865],[-87.72040156050363,41.87444110052154],[-87.72039076036864,41.87434675617285],[-87.72039057689481,41.87428141484718],[-87.72038640107664,41.87414444646478],[-87.72038367135235,41.87405492237675],[-87.72037917846967,41.87391690069939],[-87.72037342439164,41.873783141519134],[-87.72036951420506,41.873695926175245],[-87.72036512606637,41.873515051638854],[-87.72063488046857,41.87351029404227],[-87.72088271319382,41.87350730750188],[-87.72112450511423,41.87350328986573],[-87.72119529933502,41.87350211343807],[-87.72137713603261,41.873500722459674],[-87.72196435144676,41.87347399253296],[-87.72222698278927,41.873470393063116],[-87.72246817517825,41.87346723329763],[-87.72270663615767,41.87346515345906],[-87.72297822866273,41.873461741795076],[-87.72317329346517,41.87345929121009],[-87.7232921914134,41.873458468394254],[-87.7234756424107,41.87345719243777],[-87.72363984937446,41.87345636287571],[-87.72375167445692,41.873456702644994],[-87.72437655770672,41.87345859762222],[-87.7246224037654,41.87345262237233],[-87.72474418991601,41.8734448651902]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6225822.35758","perimeter":"0.0","tract_cent":"1152339.03032154","census_t_1":"17031270400","tract_numa":"19","tract_comm":"27","objectid":"805","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1901251.08164721","census_tra":"270400","tract_ce_3":"41.88489732","tract_crea":"","tract_ce_2":"-87.71604573","shape_len":"9820.88374101"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71241302834278,41.88186268732643],[-87.71256182335664,41.881752981452756],[-87.7125633390361,41.88175186395558],[-87.71280603481463,41.88163791720908],[-87.71289838150423,41.88159706035085],[-87.71304270929163,41.88153516139502],[-87.71314632936485,41.881490495838186],[-87.71324252561975,41.88144894598647],[-87.71327085882538,41.88143669497242],[-87.71347039801852,41.88135758526965],[-87.71365673021235,41.88130370591638],[-87.71384540371292,41.88126592018016],[-87.71408193326964,41.88123871056725],[-87.71438140489445,41.881234177896104],[-87.71458069341685,41.881249357254845],[-87.71473486654762,41.88127436464706],[-87.71499969165848,41.88133646616014],[-87.71531222486942,41.881413176231334],[-87.71548774805333,41.88145578357852],[-87.71551072654977,41.8814611709426],[-87.71565499482493,41.881496057988755],[-87.71585005632068,41.881538241601284],[-87.71606088004762,41.88158383343893],[-87.71618869998534,41.88160762697032],[-87.71641642284581,41.88164084871321],[-87.71680958061916,41.881669963187115],[-87.71729508706404,41.88167306258215],[-87.71778219297092,41.88167021348053],[-87.71818167977892,41.88166744185654],[-87.71851657582381,41.88167443314603],[-87.71860602593418,41.88167630031214],[-87.71890977962354,41.8816734527462],[-87.7190831332309,41.881663018639586],[-87.71958866544489,41.88165715970522],[-87.71979321046433,41.881672056244966],[-87.71993195197251,41.8817021059596],[-87.72010758350959,41.88175298924074],[-87.72018281134406,41.88177498814767],[-87.72033718803237,41.881820131884886],[-87.72049904703036,41.88186742841405],[-87.72060481068131,41.88189002907153],[-87.72065630907915,41.88189623140379],[-87.72082022885714,41.88189686184134],[-87.72082619637824,41.88208728654775],[-87.72084274535523,41.88244621260765],[-87.7208528847833,41.88282261303049],[-87.72085838323062,41.88300049289635],[-87.72086696792388,41.88327057643106],[-87.72087384680084,41.88354624555125],[-87.72088542927548,41.883952263468764],[-87.7208893879437,41.8840873580457],[-87.72089506770577,41.88428118538014],[-87.72090485965127,41.88464018503064],[-87.72091416732019,41.8849806858565],[-87.72091907733297,41.88515618517519],[-87.72092041573087,41.885204041535935],[-87.72092158699088,41.885245903846034],[-87.72092459825438,41.8853535473121],[-87.72092730611766,41.88555068093844],[-87.7209248657307,41.88598694812028],[-87.72093477487216,41.88633370895296],[-87.72094415979659,41.88671614215827],[-87.72094720557295,41.8868219487828],[-87.72095088842725,41.88694987796806],[-87.7209608519419,41.88727943261453],[-87.72097353279518,41.88771209121196],[-87.72097677924457,41.887822850603044],[-87.72097788508677,41.887864263037606],[-87.7209803807696,41.88795769043771],[-87.7209829488493,41.88805384380615],[-87.72098330193283,41.888067056757336],[-87.71987249722824,41.88806826326417],[-87.71986001850551,41.88806827673428],[-87.71976176564195,41.88806946696914],[-87.71902461512954,41.88807898464399],[-87.71854049162911,41.88808523253106],[-87.71736696705516,41.88810021131662],[-87.71723290308603,41.888101893633674],[-87.71723288472157,41.888101893809576],[-87.71688304819605,41.8881065337193],[-87.71657147877848,41.888111147300975],[-87.71609105585847,41.888116687115144],[-87.71599785349626,41.88811790072625],[-87.71542348485795,41.88812544586109],[-87.71510576957051,41.88812956740031],[-87.71488079687443,41.888132472406404],[-87.71411360024676,41.888142059634816],[-87.71399226041865,41.888143513418],[-87.7137582390636,41.888146317203386],[-87.71373847169549,41.88814671878615],[-87.71365789029424,41.888148356441796],[-87.7135639004593,41.88814892304687],[-87.71355346869386,41.88814898584713],[-87.71288222814124,41.8881573672572],[-87.7119848731094,41.88816914037063],[-87.71180832814998,41.88817145587167],[-87.71170224477966,41.88817279331713],[-87.71135149772873,41.888177214956436],[-87.7112206641228,41.88817830017415],[-87.71121790192726,41.88808564501746],[-87.71121564815638,41.88800932772704],[-87.71120428362681,41.88762455000809],[-87.71119904613613,41.88745945286381],[-87.71119148730482,41.887221186519085],[-87.71118354842193,41.886930950343796],[-87.7111791256478,41.88676925222359],[-87.71117351641972,41.88655250882171],[-87.71116697224322,41.88635408202324],[-87.71116386839911,41.88625997492625],[-87.71115338134977,41.88588639945887],[-87.71115050915249,41.88578753536221],[-87.71114369838781,41.88555308530462],[-87.7111416814458,41.88544124610399],[-87.71113965277175,41.885328724069346],[-87.7111379679105,41.88523527063852],[-87.71113066479376,41.88509074654343],[-87.71112309398066,41.88494092459987],[-87.71112040720695,41.88488775427902],[-87.7111190278784,41.884680418494256],[-87.71111873719605,41.884636648120434],[-87.71111843969393,41.88459187743174],[-87.71111777877917,41.884492513491494],[-87.71110172292305,41.8842245880975],[-87.71109203045738,41.88384585706784],[-87.71108766573549,41.88365985585412],[-87.71108387501133,41.88356260666968],[-87.71108016781618,41.883467498448226],[-87.71107329862791,41.88315736138515],[-87.71106623405427,41.88295441351816],[-87.71106078856236,41.88274250100472],[-87.71150994805035,41.88271631118178],[-87.71176180992427,41.88269294104189],[-87.71176064651797,41.88267900192986],[-87.71176704775942,41.88265886636301],[-87.71178378997632,41.88262130591299],[-87.71186778650679,41.88251012453865],[-87.71204256658999,41.882284559830644],[-87.7121676225566,41.88214632281502],[-87.71225035918165,41.882055139896266],[-87.7122704389105,41.88202934279828],[-87.7123251547385,41.88194591171335],[-87.71241302834278,41.88186268732643]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3551419.50956","perimeter":"0.0","tract_cent":"1157096.16619178","census_t_1":"17031271100","tract_numa":"22","tract_comm":"27","objectid":"806","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1898558.11357871","census_tra":"271100","tract_ce_3":"41.87741233","tract_crea":"","tract_ce_2":"-87.69864985","shape_len":"7985.33248624"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70066839994988,41.87375014408783],[-87.70101301980348,41.8737472637704],[-87.70101956006694,41.873936820999035],[-87.70102079618029,41.87405727294721],[-87.70102233156715,41.874169713330225],[-87.70102714185185,41.87434741409217],[-87.70103112628011,41.87449189554629],[-87.7010325703228,41.87467130883715],[-87.70103295741589,41.8747251665981],[-87.70103323829046,41.87475094680456],[-87.70103543971263,41.87495287204516],[-87.70103717373455,41.8751159045709],[-87.70103945839217,41.875177662767406],[-87.70104760435207,41.87532696653071],[-87.70105858420354,41.875528207092614],[-87.70105999463458,41.875556176015934],[-87.70106829031674,41.875720659584786],[-87.70107990192501,41.875928597656646],[-87.70108920097057,41.87609511775632],[-87.70107808733815,41.876205649814715],[-87.7010772777597,41.876336216732156],[-87.70108675102922,41.876649168162224],[-87.70109405432625,41.8768991545601],[-87.70110514477241,41.87720451329258],[-87.70110822268752,41.877376731017726],[-87.70111127454281,41.87754749578904],[-87.70111604608877,41.87776750101638],[-87.70111764913935,41.87783945305807],[-87.70112103573494,41.877991459153456],[-87.70112601822017,41.878178891298234],[-87.70113087774048,41.8782839868073],[-87.70113534075729,41.87838050764916],[-87.70114051421298,41.87859700241902],[-87.70114374268726,41.878740507041016],[-87.70114500779253,41.87879675352548],[-87.70114898653372,41.87902273680029],[-87.70115419715451,41.87920502991606],[-87.70115700170906,41.879316031240265],[-87.70116139875034,41.879503268020834],[-87.70116772794336,41.87971931521129],[-87.70117291138358,41.87989625275594],[-87.70117782935915,41.88012751011214],[-87.7011822781058,41.88034367426055],[-87.70119301840542,41.88058341318461],[-87.70119394746023,41.88061757731443],[-87.7012004572465,41.88085697296042],[-87.70120775358022,41.881025585351644],[-87.70097184485559,41.88102679097626],[-87.70068420141082,41.88103094220033],[-87.70035520396084,41.8810356606074],[-87.70006866267765,41.88103978892189],[-87.6997003920377,41.88104256000611],[-87.69942245598034,41.88104538950618],[-87.69921723503644,41.88104754961286],[-87.69891274914639,41.881050395930124],[-87.6987276026624,41.88105174344298],[-87.69845189816753,41.88105374922318],[-87.69821509192273,41.881056391537875],[-87.6979284141046,41.88105941605756],[-87.69770184951955,41.881061161177406],[-87.69751585351047,41.88106259341776],[-87.69726868388996,41.88106602739384],[-87.69707808219734,41.88106779812591],[-87.69661086681238,41.881072261352294],[-87.6964334816586,41.88107468332766],[-87.69628877644246,41.8810766587074],[-87.69628450442617,41.88092994597132],[-87.69628138250134,41.88077103676932],[-87.69627448846425,41.88060286017257],[-87.69627328335778,41.88057346095742],[-87.69626695229769,41.88034576311528],[-87.69626128585189,41.88016454249989],[-87.69625586081983,41.87999103510105],[-87.69625089522063,41.87977745024083],[-87.69624938489363,41.87971194189515],[-87.69624640414384,41.87958263865653],[-87.69624383853196,41.87936034038833],[-87.69624045288657,41.87925512938822],[-87.69623210904142,41.878995894136075],[-87.69622660386617,41.878800598851036],[-87.69622537546275,41.878757024908936],[-87.69622127651662,41.87857080496053],[-87.69621611844383,41.87834530235696],[-87.6962126229561,41.87819248982684],[-87.69620915673967,41.87804238767432],[-87.69620498571435,41.87789163725819],[-87.69620226676322,41.877793363821006],[-87.6961966261865,41.87756273335157],[-87.69619308362769,41.877434850388575],[-87.6961870044662,41.877215367626974],[-87.69617910169518,41.87702026287577],[-87.69617792136827,41.87695850908892],[-87.69617535644173,41.87682433019252],[-87.69617266140007,41.876705469241514],[-87.69616833471684,41.876514657657275],[-87.69616745653317,41.87642562935498],[-87.69616403560387,41.876358482207316],[-87.69616081934218,41.876295350481534],[-87.69615757030307,41.87617145706071],[-87.6961530262009,41.87598095188243],[-87.69615081600605,41.875888289107486],[-87.69614545129197,41.875663404353084],[-87.69614077179253,41.87546720244278],[-87.69614076305336,41.875466862381806],[-87.69613901531945,41.87539584605844],[-87.69613393437113,41.87519888285206],[-87.69612825640777,41.87497877983346],[-87.69612614803461,41.8748970526181],[-87.69612025011165,41.874668416769644],[-87.69611744881642,41.874494580453145],[-87.69611566725594,41.874320255824514],[-87.69611224418402,41.87417693210589],[-87.69610564314051,41.873913667027566],[-87.69610096237321,41.87379364707757],[-87.69637195632228,41.87379143361244],[-87.69664863576651,41.873789976607654],[-87.69674828266058,41.87378951884245],[-87.69708702380373,41.87378796048304],[-87.69720294588473,41.873787404233134],[-87.6972927605744,41.87378698703321],[-87.69760892391011,41.873784237045165],[-87.69800878286914,41.873779781271715],[-87.69820154794108,41.873776154837046],[-87.69855461185813,41.87377264857151],[-87.69883704013128,41.873769843200016],[-87.6990834388717,41.87376725253963],[-87.69930707122501,41.873764864974355],[-87.69962250518196,41.873761556565306],[-87.69989850941828,41.873757810276366],[-87.70013029991601,41.8737546428298],[-87.70038396993048,41.87375195225698],[-87.70066839994988,41.87375014408783]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10760998.0354","perimeter":"0.0","tract_cent":"1143673.85380272","census_t_1":"17031251800","tract_numa":"50","tract_comm":"25","objectid":"807","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900916.07896992","census_tra":"251800","tract_ce_3":"41.88414467","tract_crea":"","tract_ce_2":"-87.74787434","shape_len":"13422.2730791"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74800179240842,41.887885293050275],[-87.7479647031423,41.88776423284766],[-87.74782789226022,41.88776525082347],[-87.74688627618862,41.88777279494106],[-87.74602407947256,41.88778039477742],[-87.74554653598165,41.887784470745345],[-87.74536343119644,41.88778593296556],[-87.74452005717133,41.88779327457368],[-87.74372030253929,41.88779980540714],[-87.74308629503533,41.88780512396705],[-87.74297059566963,41.887805215296275],[-87.74285949402486,41.88780601675991],[-87.74113052956592,41.8878187244238],[-87.74059567509266,41.88782316893229],[-87.74059384598445,41.88777273369806],[-87.74059206480368,41.887717153798405],[-87.74058372640616,41.88747698895814],[-87.74057544476452,41.88723065039525],[-87.74054816378086,41.88645731788633],[-87.74054372433856,41.886341693582956],[-87.74054263280078,41.88630817383666],[-87.74054157895668,41.88627582058957],[-87.74053712368016,41.88616191135478],[-87.74052569012609,41.8858592988538],[-87.74052550081774,41.88585419357746],[-87.74051429787933,41.885552227971154],[-87.74050917371953,41.88541105199716],[-87.7405059321561,41.885315150173014],[-87.7404951128924,41.884995732556234],[-87.74049529782609,41.8849956300528],[-87.7404861964668,41.88472683261733],[-87.74048328650626,41.884650243762216],[-87.7404779385787,41.884509490870464],[-87.74047238690328,41.884363370272716],[-87.74046469389458,41.88416088521678],[-87.74044160018303,41.88345725062342],[-87.74044021110795,41.88341790987116],[-87.74043201984304,41.88318592373621],[-87.74042416890465,41.88296356534796],[-87.74040612435405,41.88245250796445],[-87.74039093749833,41.882045622148574],[-87.74039006994087,41.88202077755374],[-87.74038486097021,41.88187162681288],[-87.74037969181785,41.88172361294142],[-87.7403752809865,41.8815973256321],[-87.74037510395273,41.881592245387814],[-87.7403607408949,41.88118097296298],[-87.74034170120045,41.8806609110581],[-87.74033782959627,41.880555153493816],[-87.74033786962558,41.880555153151654],[-87.74042143759858,41.880554317065496],[-87.74061478768927,41.880551773694066],[-87.74102575396088,41.8805463668385],[-87.74127967062903,41.880543532348575],[-87.7413880818288,41.880542351073636],[-87.74154126215666,41.88054068196204],[-87.74187519962727,41.88053727055572],[-87.74216044199814,41.880534156368505],[-87.74237422244651,41.88053130493758],[-87.7426596481255,41.88052821789603],[-87.74283005408752,41.880525735273885],[-87.74303762804216,41.88052330322115],[-87.74324079552039,41.8805205029247],[-87.7435689694096,41.880516892322206],[-87.74385755464081,41.880513626431274],[-87.74420258638251,41.8805096614675],[-87.7444637359403,41.880506966810756],[-87.74477552856723,41.88050373528317],[-87.74503003074541,41.88050108759817],[-87.74527756102748,41.88049799832333],[-87.74558818331204,41.880494121107034],[-87.74586722761765,41.88049011527303],[-87.74631062065555,41.88048376563438],[-87.74668063206579,41.88047879576552],[-87.74714851385579,41.88047289729659],[-87.74749277229023,41.88046916548159],[-87.74772294085255,41.88046516046358],[-87.7478780441645,41.88046246086647],[-87.74789522689612,41.88046216179716],[-87.74820794448516,41.88045812983213],[-87.7485765875427,41.88045418969679],[-87.74892168413903,41.880451143928035],[-87.7491861042968,41.880448098422264],[-87.74941156158476,41.8804452383986],[-87.7496878101205,41.88044173047196],[-87.74992579495316,41.880438247042854],[-87.7501732167131,41.88043480610163],[-87.75045192883123,41.880430929865696],[-87.75082222791104,41.88042660645659],[-87.75115007228908,41.880422752975726],[-87.75142036963724,41.8804194851364],[-87.75169125696506,41.88041594522388],[-87.75198689667398,41.88041214550634],[-87.7522189640994,41.88040922259718],[-87.75231151198626,41.88040805309769],[-87.75261882741647,41.88040438217452],[-87.75288449727098,41.880401208510285],[-87.75314686804653,41.88039734769279],[-87.7532977397776,41.880394953920565],[-87.7535529492458,41.88039120419446],[-87.7537036360864,41.88038899007598],[-87.75405277561656,41.88038548276932],[-87.75433809719,41.880381597783085],[-87.75467207870878,41.88037721633774],[-87.75480693423738,41.88037545338421],[-87.75506689176672,41.88037184687999],[-87.75507419520564,41.880590850944415],[-87.75508052954225,41.880784325027705],[-87.75508436011334,41.88090050841832],[-87.75508796930238,41.88100996727947],[-87.75509407707881,41.88119509796222],[-87.7551019738691,41.88143204853284],[-87.75511138458813,41.88166738788304],[-87.75512088458504,41.881895071490796],[-87.75512252581338,41.88193440457515],[-87.7551270293598,41.88203363186822],[-87.75513299851822,41.88216173604211],[-87.7551397879921,41.882364022773835],[-87.75514382460672,41.88248429472758],[-87.75515015004865,41.88263805941418],[-87.75515327630356,41.882714914404154],[-87.75515741930532,41.88284701542254],[-87.75515812527983,41.88286952236795],[-87.75516128398147,41.883002332480714],[-87.755164196293,41.883124795257004],[-87.75517190929433,41.88331610796105],[-87.75517655720614,41.883431966377564],[-87.75518294312549,41.88358718579365],[-87.75518875587773,41.88374081065551],[-87.75519438702538,41.8838942150589],[-87.7552016038301,41.88409985048914],[-87.75521009135835,41.884319981665705],[-87.75521547356244,41.884459581505084],[-87.75522185951864,41.884651518932976],[-87.75522778061642,41.88480536412451],[-87.75523471924282,41.884984845161895],[-87.75524215848888,41.88517805022765],[-87.75525516495011,41.8854991927026],[-87.7552596913278,41.88563874676547],[-87.75526637229098,41.88584474990625],[-87.75527388490107,41.88603798275321],[-87.75527944038433,41.886179449234554],[-87.75528362619445,41.886300409289625],[-87.7552860830911,41.88637141533708],[-87.75528859967501,41.88649963951569],[-87.75529178173852,41.88662737252775],[-87.75529377499502,41.8866914332918],[-87.75528994816868,41.88676559103194],[-87.75529741639279,41.886829322600526],[-87.75532291121337,41.887024018046624],[-87.75531983196711,41.887151807896295],[-87.75531959178358,41.88716178970921],[-87.75531863207003,41.88720160362843],[-87.75531772026349,41.887239443577194],[-87.75531592899732,41.88731377538825],[-87.75532403747077,41.88750392198372],[-87.75533109823665,41.887669498722964],[-87.75533260468674,41.88770482421231],[-87.7553336181202,41.887728597234265],[-87.75533703851232,41.88780880024146],[-87.75508481159888,41.88781538532967],[-87.75479384640867,41.88781833809195],[-87.754725568333,41.88781907752447],[-87.75452058277776,41.88782129701109],[-87.75433193653525,41.88782402332328],[-87.75411956601835,41.88782671117312],[-87.75395362169918,41.88782881124076],[-87.75379968678114,41.88783088852424],[-87.75350919141515,41.88783462827535],[-87.75340436532558,41.88783597300098],[-87.75326714364758,41.887837694891154],[-87.75302538886048,41.88784080940384],[-87.75289507222304,41.88784249631272],[-87.75275094447424,41.887844361879026],[-87.75244219612813,41.88784817926153],[-87.75227933842696,41.887850162994155],[-87.75215151915798,41.88785171981765],[-87.75186315581352,41.88785526531539],[-87.75167098273623,41.88785814146224],[-87.75147818449298,41.88786102674345],[-87.75105308351291,41.88786550464935],[-87.75065049720885,41.887869837811635],[-87.75044308243025,41.88786566500413],[-87.75032579372544,41.88786330506503],[-87.7499581910756,41.8878652801851],[-87.7495909054397,41.88786873763281],[-87.7491034065486,41.88787339359565],[-87.74816358819254,41.88788307067526],[-87.74800179240842,41.887885293050275]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6621328.45297","perimeter":"0.0","tract_cent":"1140061.37137536","census_t_1":"17031250300","tract_numa":"50","tract_comm":"25","objectid":"808","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911347.56624795","census_tra":"250300","tract_ce_3":"41.91283678","tract_crea":"","tract_ce_2":"-87.76088437","shape_len":"10270.9579749"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76515016417429,41.90938473821039],[-87.76572416664557,41.90937873065775],[-87.76566626537516,41.90953298229674],[-87.76561992877298,41.9097124184086],[-87.7655936702213,41.90979431382276],[-87.7655672822635,41.90988097917103],[-87.76554928474036,41.90994008775951],[-87.76553282788174,41.91016374400313],[-87.7655424436604,41.91042600335524],[-87.76555208612675,41.91071427818763],[-87.7655612330646,41.91093825309928],[-87.76557194845697,41.9112036830531],[-87.76558659896581,41.911566589052164],[-87.76560696234944,41.912104477632376],[-87.76562880625549,41.91266819700909],[-87.76563596656541,41.91285297406256],[-87.7656323834554,41.91302850398399],[-87.76567120981662,41.91435911531547],[-87.76568969311418,41.914992525517945],[-87.7657037550503,41.91547440984214],[-87.76571244471819,41.91577220521157],[-87.76571525571143,41.91586853677951],[-87.76573358331093,41.916585153674006],[-87.76573698190874,41.91671805202587],[-87.7656142112771,41.91671539021162],[-87.76522573643449,41.91670729462115],[-87.76461789423296,41.916680616397535],[-87.7641226208543,41.9166486615362],[-87.76381418832156,41.91662620739505],[-87.76350671686798,41.91659895533517],[-87.76319974573687,41.916567244733635],[-87.76313276121259,41.91655936548133],[-87.76289372934298,41.916531421978796],[-87.76279004780919,41.91651855780684],[-87.76213079017266,41.916438098933114],[-87.7614641854812,41.91635759886139],[-87.76107881527028,41.9163107421326],[-87.76082081351316,41.91628170389233],[-87.76082050555824,41.9162816694261],[-87.7602713775394,41.916212382551755],[-87.75969653888592,41.91614227882833],[-87.7595942333324,41.91612976167436],[-87.75924740672224,41.91608720773015],[-87.75909280550202,41.91605830354409],[-87.75900027995701,41.916041004918945],[-87.75899755756069,41.91604049596802],[-87.75887602107221,41.91601777332526],[-87.75857344486279,41.91596117254221],[-87.75825612974648,41.91590181383545],[-87.75790450710952,41.915835751604966],[-87.75789995260986,41.91583489590607],[-87.75780405359097,41.915816878259754],[-87.75751474297743,41.91576260214972],[-87.75707793267539,41.91566573479474],[-87.75619515209075,41.91546954758128],[-87.75588259711608,41.915403006743794],[-87.75587967625808,41.9153297160767],[-87.75586818301744,41.91504134249394],[-87.75585797442415,41.91478519677926],[-87.75584387482924,41.9144129619078],[-87.75582492440756,41.91391264703621],[-87.75582239108256,41.913845776238915],[-87.75581335516259,41.91360919562253],[-87.7558023271933,41.9133204562863],[-87.75579607345944,41.91315664945653],[-87.75578274081221,41.91280740541446],[-87.75577829219438,41.91269983647349],[-87.75576618081763,41.91240696568208],[-87.75576094515415,41.912248267673974],[-87.75575209973829,41.9119801662879],[-87.75574537177329,41.911791191570956],[-87.75573923014777,41.91161868575828],[-87.75572815495472,41.91133687829228],[-87.75571607004582,41.911029381881626],[-87.75570948396555,41.91086979888525],[-87.75570256226337,41.91070209125766],[-87.75568558966577,41.910421188214904],[-87.75568239030787,41.91036823580777],[-87.75567257787212,41.9100140976605],[-87.75567404137314,41.90999153944299],[-87.75567560724654,41.909967405999936],[-87.75569181645854,41.90990135144764],[-87.7557510163798,41.90967555160588],[-87.75579562249426,41.90950127161691],[-87.756572843948,41.90949186658698],[-87.75688114711042,41.909487807411594],[-87.75719224375425,41.9094837101071],[-87.75762594784737,41.9094779967634],[-87.7581029349979,41.90947165640754],[-87.75843585596704,41.909467229823164],[-87.75905022200557,41.90945905869961],[-87.75933027185751,41.909455183147614],[-87.75968391733807,41.90945028848222],[-87.76025603243876,41.90944236030941],[-87.76054629245178,41.909438839552315],[-87.76093553476441,41.909434117217025],[-87.7611402598909,41.90943163287885],[-87.7614775492886,41.9094275389459],[-87.76177034344988,41.9094240477474],[-87.76217729473986,41.90941919392487],[-87.76261859913203,41.909413923783916],[-87.76299509271051,41.909409168150056],[-87.76341953589767,41.90940380514512],[-87.76394549614866,41.90939715749641],[-87.76421657256806,41.90939436411408],[-87.76465551843944,41.90938983927344],[-87.76515016417429,41.90938473821039]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"22130478.3039","perimeter":"0.0","tract_cent":"1130277.43595478","census_t_1":"17031250500","tract_numa":"79","tract_comm":"25","objectid":"809","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911927.71911892","census_tra":"250500","tract_ce_3":"41.91460237","tract_crea":"","tract_ce_2":"-87.79681552","shape_len":"19898.9009335"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78604687311916,41.90913425884019],[-87.78631798919491,41.90913072136897],[-87.7866139338979,41.90913240548132],[-87.78663282129052,41.9091318642304],[-87.78696581557591,41.9091221705789],[-87.78696581778009,41.909122170589384],[-87.78696581998659,41.90912217032545],[-87.78707409845524,41.90912068190265],[-87.78718302661474,41.9091195609026],[-87.78734587048848,41.909117885245784],[-87.7875424351837,41.909115852625156],[-87.78764038557259,41.909114839825165],[-87.78797546220184,41.90911132740266],[-87.78826314699185,41.90910789092005],[-87.78852592116033,41.90910474716702],[-87.78869640458265,41.90910228997813],[-87.78872007228426,41.90910209021166],[-87.78872448662513,41.90910205297003],[-87.78874431423218,41.9091018860287],[-87.7898964561504,41.90909161988879],[-87.79020776850996,41.90908749479513],[-87.79111745731743,41.909075437934334],[-87.79111747532511,41.909075437196094],[-87.79127931575641,41.90907327619461],[-87.79128145743057,41.90907324788503],[-87.7912827518395,41.909073230943655],[-87.79142263429402,41.90907136262848],[-87.79188413960027,41.90906524684782],[-87.79234197397508,41.90905917777922],[-87.79234198499823,41.90905917755673],[-87.79241022832686,41.90905827017767],[-87.79262860709764,41.90905536837828],[-87.79315385558193,41.909048379679106],[-87.79315923640469,41.9090483081197],[-87.7932011947005,41.909047749726014],[-87.7935655783622,41.90904289972743],[-87.79356559416105,41.909042899527265],[-87.79384148758017,41.909039228986074],[-87.7945747965207,41.90902948662449],[-87.79466816705333,41.90902824573733],[-87.7947984570898,41.90902651437035],[-87.79479845929396,41.909026514380685],[-87.79479846186548,41.90902651439275],[-87.79487383230904,41.90902550862295],[-87.79488985499705,41.909025294512624],[-87.79505256742186,41.90902312322529],[-87.79542690590722,41.90901814850609],[-87.79598841409891,41.90901068441551],[-87.79632005988589,41.90900626001543],[-87.79640241928628,41.90900516078925],[-87.79640571538297,41.909005116651386],[-87.79655192077887,41.90900316572443],[-87.79674891005901,41.90900054578119],[-87.79699506332969,41.90899727149699],[-87.7972038650245,41.9089944932666],[-87.7973724096935,41.90899224136621],[-87.79745499466219,41.90899113804704],[-87.79755900917344,41.90898983965101],[-87.79770292544197,41.90898801378963],[-87.79780668292602,41.90898674196155],[-87.79788178450015,41.908985499702965],[-87.79788188113221,41.908985498232596],[-87.79792669784298,41.90898477059542],[-87.79799998560937,41.90898358072453],[-87.79813288440516,41.908981385726555],[-87.79814251060222,41.90898122696953],[-87.79824781273469,41.9089797967388],[-87.79845044204376,41.908977062945624],[-87.79865953963996,41.90897425024098],[-87.79876344486603,41.908972922802576],[-87.79888439802993,41.908971345033976],[-87.79907501174294,41.90896893923083],[-87.79912384868034,41.90896838048955],[-87.79919607386489,41.908967554286406],[-87.79931133003112,41.90896625143431],[-87.79960128834517,41.908963263636274],[-87.79973810982943,41.908961869041995],[-87.79984775531737,41.90895938699904],[-87.79998062350423,41.908956354373736],[-87.80011286671397,41.90895337302849],[-87.80027701997994,41.90895213242257],[-87.80046443059531,41.90895072426304],[-87.80057979843065,41.90894928399271],[-87.80070677633705,41.908947677371195],[-87.80085682784737,41.90894582140371],[-87.80092818239736,41.908944984310864],[-87.80118048067052,41.9089420248246],[-87.80128593656208,41.908940776932894],[-87.80131543051263,41.908940427854674],[-87.80151713616725,41.90893842586332],[-87.80174235543191,41.90893623050711],[-87.80176444429155,41.90893613545187],[-87.80185000095393,41.90893576857916],[-87.80187662424252,41.90893563933038],[-87.8018824532546,41.90893561087448],[-87.80211323558026,41.90893448883669],[-87.80227896517236,41.90893369146476],[-87.80239977499275,41.908931615641364],[-87.80254413748675,41.90892915432554],[-87.80256614191929,41.908931888859584],[-87.8025661448559,41.90893188914758],[-87.8025661576999,41.90893189085349],[-87.80294218080024,41.90892094935931],[-87.80394243864679,41.90889183924533],[-87.80394245518256,41.90889183877272],[-87.8057454130007,41.90883935174281],[-87.80576774665893,41.90933489956718],[-87.80576781244405,41.909353725349284],[-87.8057671969461,41.90941259330928],[-87.80576712051018,41.90941991321567],[-87.80576876707543,41.909594728802965],[-87.80577261330048,41.90966302286342],[-87.80577807736333,41.90977130846469],[-87.80578527854287,41.909914069409055],[-87.8057896422185,41.909999792032906],[-87.80579767384174,41.91014878593343],[-87.8058024442747,41.91023423654701],[-87.80580856548802,41.910342991126896],[-87.80581006119297,41.91036939592663],[-87.80581148497201,41.91039454161358],[-87.80582049013512,41.91055457153909],[-87.80582618769097,41.910705909531956],[-87.80582618801316,41.91070591502191],[-87.80584309197486,41.91115604775553],[-87.80584686430106,41.91126457253586],[-87.80585098449274,41.91138435001373],[-87.80585684708073,41.91155586410498],[-87.80586096653971,41.91167577905946],[-87.80586770781159,41.911869937414565],[-87.80587277979446,41.912012496424886],[-87.80587935794499,41.91219523798996],[-87.8058856852324,41.9123727094604],[-87.8058908717558,41.91253255740581],[-87.80589087237536,41.91253257140428],[-87.80589087263203,41.91253258485221],[-87.80589527034634,41.91266829387566],[-87.80589787477568,41.91274867083235],[-87.80590039582955,41.91283083061036],[-87.80590279884154,41.912909121567985],[-87.80590897312754,41.91310969879038],[-87.80591376434816,41.91326411185799],[-87.80591904115317,41.91343532160834],[-87.8059278555161,41.91370352921169],[-87.80593339709804,41.91386936118579],[-87.80593987999717,41.91406371037325],[-87.80594482976782,41.91421222321014],[-87.80594918841886,41.914361090902155],[-87.80594918872525,41.914361098313],[-87.80595165097738,41.91444581707209],[-87.80595541224932,41.91456018641171],[-87.80596197292448,41.91477187978101],[-87.80596655402856,41.914920556108704],[-87.80597169509296,41.9150860568984],[-87.80598023088612,41.91536578893417],[-87.80598525969756,41.915531454123624],[-87.80599152195803,41.91573924899578],[-87.8059921568027,41.91576040997094],[-87.80599662819832,41.9159089485565],[-87.806005051529,41.91618906367847],[-87.80600505220733,41.91618907054217],[-87.80600659944025,41.916207543335915],[-87.80600725878786,41.9162154187531],[-87.80601137844829,41.91632202378917],[-87.80601485402262,41.916435459286596],[-87.80602031407722,41.91661119749465],[-87.80602148452441,41.91664759170806],[-87.80602862362889,41.9168693581747],[-87.80603395212847,41.917034394070065],[-87.80603960023888,41.91720974892973],[-87.8060455303382,41.91739539623528],[-87.80605177770953,41.917591692349426],[-87.80605770244681,41.91777799823392],[-87.80606064934777,41.91787082206901],[-87.80606505337059,41.91802320194305],[-87.80606505362957,41.91802321511656],[-87.80606956859707,41.918179973648165],[-87.80607542798747,41.918365346173],[-87.8060822742246,41.91858255661965],[-87.80608744583681,41.91874882555133],[-87.80609262726433,41.91891386016641],[-87.80610043532735,41.91916167322143],[-87.80610689396023,41.9193679598046],[-87.80611399409067,41.91959461126882],[-87.8061182558024,41.91972854918885],[-87.80612239064986,41.91985562648682],[-87.806122390625,41.91985562950536],[-87.80612930394263,41.92006918680279],[-87.80613467895792,41.92022420581359],[-87.80614065513566,41.92039989220955],[-87.8061475782246,41.920616827956835],[-87.80615187640112,41.92075090323115],[-87.80615388294699,41.92081367526199],[-87.80615649236766,41.92089529827946],[-87.80616233620219,41.921073728005474],[-87.80616932356968,41.92128728888875],[-87.80617352070682,41.9214425771553],[-87.80617705767274,41.92156646808394],[-87.80618210230978,41.92173026680755],[-87.80618821945058,41.92191564039662],[-87.80618821942574,41.92191564341517],[-87.80619227214606,41.922039423638594],[-87.80620080416351,41.92229297532378],[-87.80620444169949,41.92240046112225],[-87.80620514927968,41.92242137048531],[-87.80620938795323,41.922544797544994],[-87.80621620022048,41.922739395742845],[-87.80621903877811,41.92282310732153],[-87.80622657631284,41.92307701088109],[-87.8062256761687,41.92309262143205],[-87.80622929273069,41.923305124229564],[-87.80622944180101,41.92332254996652],[-87.80622980135827,41.923368243910026],[-87.8060563870547,41.92332046645529],[-87.80579830455292,41.92325787828882],[-87.80558697434887,41.92320716824266],[-87.80527669337515,41.92312478687306],[-87.80500721438506,41.92305185446831],[-87.80473270105023,41.92297683925736],[-87.80446420953173,41.922895677700396],[-87.8043861391203,41.922871310719174],[-87.80428919795058,41.92284135867074],[-87.80402348962781,41.92275712136981],[-87.8037871456551,41.9226767913764],[-87.8035173666847,41.92258498749046],[-87.80326545041126,41.922499439680834],[-87.80300120798648,41.922404915357866],[-87.80277085452626,41.92232255331264],[-87.80276449154798,41.92232026842651],[-87.80271956346547,41.92230413548705],[-87.80253089678952,41.922236030058],[-87.80253089019611,41.9222360275577],[-87.80225980067975,41.922136670210946],[-87.80197956485787,41.92203246557049],[-87.80166223852385,41.921914709278234],[-87.80137831928037,41.921811857955134],[-87.80106875430205,41.92169996802074],[-87.80073171671299,41.92157800198072],[-87.80067630343767,41.92155784897518],[-87.80050870891334,41.92149669882552],[-87.80011122953762,41.921352496063015],[-87.79974351929063,41.921218721961196],[-87.79951501684165,41.921135676194304],[-87.79930803612069,41.92106061918858],[-87.79901633986937,41.92095498106668],[-87.798814323279,41.920885395493414],[-87.79868572224849,41.92083509761169],[-87.79809318030952,41.920620001765585],[-87.79725245366886,41.92031490015055],[-87.79633230686676,41.91998074702976],[-87.796292682061,41.91996635700867],[-87.79612921391177,41.919906591051685],[-87.79538512842818,41.919635887728404],[-87.79511559537008,41.9195382403229],[-87.79511469220124,41.919509469934276],[-87.79511435002787,41.919498199409155],[-87.7951124723038,41.91943634244036],[-87.79387491197242,41.91898768148762],[-87.79258230325226,41.91851748260977],[-87.79152185605011,41.9181317212509],[-87.7894151140512,41.91751009715077],[-87.78926582455266,41.917431565046236],[-87.788956942902,41.91729837811557],[-87.78887864881594,41.917269878229206],[-87.78872984383526,41.91721565971979],[-87.7886277406338,41.917178471827214],[-87.78816117401357,41.91700954508994],[-87.78805310733493,41.91697164149037],[-87.78783420128292,41.91689788008736],[-87.78761342109765,41.91682856764325],[-87.78742191612947,41.91677311623],[-87.78722808086928,41.91672176839437],[-87.78703283267163,41.91667453123328],[-87.78683570933667,41.916631743648196],[-87.78663671448729,41.916593062891856],[-87.78643676695665,41.916558494428486],[-87.7862138327435,41.91652655977934],[-87.78601287776173,41.91650227555999],[-87.7858109674099,41.91648244636377],[-87.78560856236443,41.916466731353715],[-87.78547130110007,41.91645955870107],[-87.78527112168621,41.916452086144794],[-87.78522633401991,41.916451412432686],[-87.78522719270346,41.916414652842924],[-87.78522868649144,41.91635068802071],[-87.78522868651257,41.916350685551],[-87.78522485383779,41.916118097476726],[-87.78521680121773,41.91585285617977],[-87.78520999645768,41.9156390477917],[-87.78520379139246,41.91544533005925],[-87.78519600440778,41.91520462346132],[-87.78517715652583,41.91459187470346],[-87.78517257564745,41.914434643811994],[-87.78516879481427,41.9143140166066],[-87.7851633749344,41.91414019828539],[-87.78515795320278,41.91396659921431],[-87.78515163747991,41.913772963496555],[-87.78514439034184,41.91355937245509],[-87.78513623094804,41.91331929517147],[-87.78513006143619,41.91313864009193],[-87.78511904761422,41.9127795727945],[-87.7851132855327,41.91259171602168],[-87.7851080035413,41.91243186646878],[-87.78510206881397,41.912245257487584],[-87.78509989408334,41.91217310112264],[-87.78509563042593,41.91203164280583],[-87.78508650282993,41.91173730726992],[-87.78508064082517,41.91156367857899],[-87.78507481557989,41.911390050606954],[-87.78506831448168,41.911196660620625],[-87.78506044288795,41.91095872840635],[-87.78505561742162,41.910812873303236],[-87.78504816049261,41.910572387618416],[-87.7850426319795,41.91039840400667],[-87.78503402712074,41.91012459777758],[-87.78502612458568,41.909871760865165],[-87.7850236061438,41.9097939785127],[-87.78501822089703,41.90962765061219],[-87.7850125820749,41.90945802978238],[-87.78500592461816,41.90925646115222],[-87.78500237867596,41.90914785499293],[-87.78530971566308,41.90914473956491],[-87.78542967943324,41.909142897099045],[-87.78565796069469,41.90913934834207],[-87.78585400397296,41.90913678291969],[-87.78604687311916,41.90913425884019]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7033366.07903","perimeter":"0.0","tract_cent":"1137509.88653734","census_t_1":"17031251300","tract_numa":"32","tract_comm":"25","objectid":"810","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906078.89397779","census_tra":"251300","tract_ce_3":"41.89842526","tract_crea":"","tract_ce_2":"-87.77038508","shape_len":"10607.8500453"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77446372740226,41.89472241090389],[-87.77512939118475,41.89471191663213],[-87.77512939145885,41.894711927336026],[-87.77513766890564,41.894962049467374],[-87.77515506853804,41.895487795671784],[-87.7751585442205,41.895585749972064],[-87.77515969821731,41.89561827898963],[-87.77515969852965,41.895618285302916],[-87.77515992541818,41.89562470876007],[-87.7751646201998,41.89575754585473],[-87.77516917558299,41.89588192807637],[-87.77517464978341,41.896031388368364],[-87.77517613849047,41.89607555021319],[-87.77517613845463,41.896075554329386],[-87.77518623873335,41.89637516095373],[-87.77519172985377,41.89653327418904],[-87.77519173013505,41.896533284069676],[-87.77520313634255,41.89686009576211],[-87.77520752784507,41.896988465371095],[-87.77521548642773,41.897221902222185],[-87.77522385970894,41.89744559901558],[-87.77523595634253,41.89776903886459],[-87.7752381883207,41.89785499254239],[-87.77523939545333,41.89790146530324],[-87.77524497346585,41.89811530900116],[-87.77524622456133,41.8981632723718],[-87.77524930732194,41.89835759730679],[-87.775249307608,41.898357606638605],[-87.77525266323093,41.89857134511675],[-87.77525972665089,41.89881051274331],[-87.77526219046007,41.89889452570592],[-87.77527770329755,41.89939092449621],[-87.77529109810592,41.89981014541197],[-87.77529772379899,41.90002785088602],[-87.7753024078677,41.90016906462084],[-87.77530240817529,41.90016907148294],[-87.77531065140693,41.90041625164817],[-87.77532169697491,41.90075925320701],[-87.77533332591585,41.90112808089128],[-87.77534451837674,41.901471110287744],[-87.77535619197336,41.901834833578675],[-87.77536171590174,41.901997786285946],[-87.77536171619977,41.901997794245695],[-87.77513034253955,41.902000723010865],[-87.77487460414038,41.90200488573144],[-87.7747625884869,41.90200661863703],[-87.77452852765994,41.90201022741141],[-87.77432462304994,41.9020140648414],[-87.77414952222541,41.90201630973539],[-87.7738111041545,41.90202064730171],[-87.77354309768234,41.902024727246605],[-87.7732662732232,41.90202894083664],[-87.7729384167429,41.90203431938489],[-87.77249266385266,41.90204163058623],[-87.77233002495598,41.90204389432603],[-87.77192348149701,41.90204955183284],[-87.77172406711347,41.90205286488366],[-87.77137728411454,41.9020586252789],[-87.77111475647274,41.902062040581356],[-87.77065226443746,41.90206805549019],[-87.77050765626375,41.902070968390674],[-87.77038935250205,41.902073351172234],[-87.76992989756906,41.902080732068434],[-87.76990240796707,41.90208119516264],[-87.76956022955952,41.90208695839224],[-87.76929514261528,41.90209031717765],[-87.76908102330437,41.90209302953323],[-87.76868648938176,41.90209934682919],[-87.76860371326127,41.902100672216655],[-87.76808157881659,41.902107663081296],[-87.76777935093509,41.90211170848113],[-87.76747603471406,41.90211665634047],[-87.76720824496275,41.902121023883886],[-87.7668672236164,41.90212566239759],[-87.76646047938473,41.90213119336835],[-87.76625836571056,41.90213504123069],[-87.76594884101333,41.90214093326669],[-87.76565382332494,41.90214451884983],[-87.7656469182055,41.90190974814363],[-87.76563253414704,41.90154721772863],[-87.7656212965181,41.901233028652435],[-87.76561386814782,41.90102533549071],[-87.76559777241279,41.90054921241153],[-87.76558908623777,41.900319482510405],[-87.76558417189489,41.90018951234828],[-87.76556969872965,41.899750032844274],[-87.76555763570394,41.899413638942704],[-87.76554781322402,41.89913971504404],[-87.76553316108237,41.898766096380854],[-87.76552489302158,41.89849680116507],[-87.76551839465581,41.898285149812246],[-87.76550063493958,41.89780207560847],[-87.76549267651275,41.897588863219035],[-87.7654921727822,41.89757536317087],[-87.76549166004833,41.89756163558044],[-87.7654828239241,41.89732490068124],[-87.76546448223051,41.8968412743914],[-87.76545937783797,41.8966740978572],[-87.76545599819916,41.89656340527262],[-87.76544293177166,41.89620576577015],[-87.7654317428488,41.89592228498625],[-87.76542662775468,41.895763669587645],[-87.76541998630421,41.89555773642587],[-87.76541534764759,41.89544004032004],[-87.76540746828437,41.89524192184416],[-87.7653949154041,41.89485373038337],[-87.76558738764605,41.8948501102168],[-87.76567620997838,41.894848957658446],[-87.76595288946885,41.894845138393016],[-87.766014964905,41.894844251607815],[-87.76618842831648,41.894841773902876],[-87.76639995030591,41.894837933610994],[-87.76663859211064,41.89483385107768],[-87.7667705122178,41.894833917208594],[-87.76696535221315,41.894830844285664],[-87.76708631739928,41.89482908077215],[-87.7672262345839,41.89482740123048],[-87.76730737809935,41.89482642717411],[-87.76749692334593,41.894824079448384],[-87.76769161347326,41.89482133386387],[-87.76782675789305,41.894819417402324],[-87.76795084463545,41.894817657647486],[-87.7681699269758,41.89481455055079],[-87.76832792935558,41.89481123912827],[-87.76843883315051,41.894809229295845],[-87.7685768475719,41.89480672782419],[-87.76891168213355,41.89480145881939],[-87.76904473512882,41.89479937285075],[-87.76914090560598,41.89479786513492],[-87.76936604417799,41.89479512908971],[-87.76956709073832,41.89479210967506],[-87.76965235042363,41.8947908451672],[-87.76997300350617,41.89478608852819],[-87.77014193369575,41.894784714886434],[-87.77026190047056,41.89478373896161],[-87.77045338908523,41.89478169857434],[-87.77052244271657,41.89478142835492],[-87.7707291796042,41.894778709218166],[-87.77088515286644,41.894776399431436],[-87.77105703479572,41.894773536426804],[-87.77133169989334,41.89476903571825],[-87.77152120993905,41.89476639522668],[-87.77172805765771,41.894763592780734],[-87.77198637015756,41.89475999846018],[-87.7722918082771,41.894754723537105],[-87.77241242191312,41.89475264012541],[-87.77260490203474,41.89475056147596],[-87.77294980612575,41.89474461608514],[-87.77324180342352,41.89474055213682],[-87.7737409437676,41.89473349044186],[-87.77446372740226,41.89472241090389]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3533651.54388","perimeter":"0.0","tract_cent":"1162222.70603205","census_t_1":"17031242300","tract_numa":"16","tract_comm":"24","objectid":"811","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906648.17076166","census_tra":"242300","tract_ce_3":"41.89950655","tract_crea":"","tract_ce_2":"-87.67960029","shape_len":"7969.65782744"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68158966856481,41.895833686988375],[-87.68194919798756,41.89582703841495],[-87.68195317055486,41.89604837309772],[-87.68195695490022,41.896189228889725],[-87.68195974763731,41.89629302579605],[-87.681961860509,41.896371556207775],[-87.68196597212999,41.89652358317291],[-87.68197343071895,41.896747714496925],[-87.68198077287445,41.89696834350346],[-87.68198465885074,41.89711005056265],[-87.68198707189607,41.897196782449015],[-87.68198802191073,41.89723092561073],[-87.68199406537494,41.89745310623345],[-87.68199924507663,41.89764744192918],[-87.68200592589693,41.89789806935189],[-87.6820087960231,41.8979987442719],[-87.68201170295328,41.898101834602436],[-87.6820142234425,41.89819122844458],[-87.68201878329991,41.89835338386497],[-87.68202350606346,41.898557960353145],[-87.68202867939938,41.89878203500058],[-87.68203266442868,41.89895373708946],[-87.68203404590427,41.89901302044976],[-87.6820370665881,41.89914226371298],[-87.68204058618205,41.899236904972604],[-87.68204592882341,41.899466015405125],[-87.68205215042553,41.89973279930717],[-87.68205407912566,41.899803227364686],[-87.68205735115536,41.8999227788421],[-87.68205932952749,41.899995079297284],[-87.68206457624014,41.90018726051082],[-87.68206931868119,41.90037365373264],[-87.68207691297704,41.90067215475506],[-87.68208026298288,41.900820911368925],[-87.68208055825761,41.900834003051145],[-87.68208329355456,41.90095523148417],[-87.68208576472027,41.901066304742386],[-87.68209256861034,41.90128339924286],[-87.68210002300432,41.90152121530866],[-87.68210413485268,41.90167326930394],[-87.68210765249448,41.90180427163571],[-87.68210912698122,41.901858423772474],[-87.6821116876367,41.9019530321053],[-87.68211907866906,41.90217178988921],[-87.68212363309992,41.90230661230219],[-87.68213180143681,41.90265956732476],[-87.6821355336908,41.90298639949036],[-87.68214005889183,41.90310657216671],[-87.6818960549264,41.90311017830317],[-87.6813516362302,41.903119300359236],[-87.68082294233326,41.90312815243832],[-87.68000543245405,41.90314180818296],[-87.67969985673018,41.90314674593034],[-87.67937996772977,41.9031519141949],[-87.67855343832052,41.903167401756626],[-87.67854432651873,41.90316757180815],[-87.67824514371144,41.903173162883235],[-87.67753008746423,41.90318650673174],[-87.67725780382375,41.903191126461074],[-87.67725277078179,41.90302249163065],[-87.67724324803972,41.902699253040524],[-87.67723334344824,41.90236538327754],[-87.67723016723743,41.902255787810255],[-87.67722699477635,41.90214586277957],[-87.67721903645212,41.90187553782388],[-87.67721494152633,41.90173731471969],[-87.67721330982249,41.90168137787324],[-87.67721036825327,41.901581196461876],[-87.6772060080956,41.90137322653253],[-87.67720202617919,41.90118331692699],[-87.67719607651648,41.90097148279807],[-87.67719292605899,41.90085941763827],[-87.67718878187311,41.90071169917055],[-87.67718139328701,41.90046464825053],[-87.67717471869473,41.900241146947565],[-87.67717014101945,41.90007471029394],[-87.6771673316625,41.89997238910491],[-87.67715556846696,41.89955146329242],[-87.67714891662426,41.89931344754011],[-87.67714337195993,41.899126697980265],[-87.67714044180369,41.89902541889372],[-87.67713045473562,41.898645943336],[-87.6771256064069,41.89846172270577],[-87.6771215507835,41.89832328020308],[-87.67711616826122,41.8981386445996],[-87.67711292882908,41.89802811564775],[-87.6771044461022,41.89773119748142],[-87.67709721818872,41.897478190431386],[-87.67709429480045,41.89739420005142],[-87.67709115906142,41.89730225016714],[-87.67708474799561,41.89711763609442],[-87.677077849358,41.8968315095925],[-87.67707273321254,41.89661929614386],[-87.67706611900502,41.89639716715165],[-87.6770656813534,41.896382440989306],[-87.67706335960744,41.89630434124546],[-87.67705236078739,41.89591164182322],[-87.67748049444367,41.895903211593264],[-87.67773963684796,41.89589843448457],[-87.67819693433638,41.8958902869032],[-87.67861874483644,41.89588273732075],[-87.67896094660554,41.895876640640076],[-87.67919088181864,41.89587251736273],[-87.67950019161306,41.895867880990586],[-87.679981578087,41.89586066285148],[-87.68010306428255,41.895858637466674],[-87.68027855330799,41.895855683896094],[-87.68061564494249,41.89585005377139],[-87.68092658000847,41.89584482290399],[-87.68119817098328,41.89584024592449],[-87.68158966856481,41.895833686988375]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3485130.08483","perimeter":"0.0","tract_cent":"1160966.2840168","census_t_1":"17031242900","tract_numa":"21","tract_comm":"24","objectid":"812","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903974.67263418","census_tra":"242900","tract_ce_3":"41.89219643","tract_crea":"","tract_ce_2":"-87.6842894","shape_len":"7874.43264653"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68586299392388,41.888573109312944],[-87.68599308499942,41.88857227849707],[-87.68628039052538,41.8885977725997],[-87.68662242195055,41.888634936724756],[-87.68662081300575,41.88890616720806],[-87.68663081620876,41.88903588898921],[-87.6866439595221,41.889269388246106],[-87.68665662612254,41.88956024742415],[-87.6866644160026,41.889739125581194],[-87.68666940942268,41.88989220006992],[-87.68667294071597,41.89000089193132],[-87.68667862376161,41.8901729878913],[-87.68668407215486,41.890314349488015],[-87.68669131540248,41.89050228602771],[-87.68669450985736,41.89064805891574],[-87.6867002098143,41.89090817704218],[-87.68670323704917,41.89104631669431],[-87.68671150237611,41.89131197834488],[-87.68671935401207,41.89154583217393],[-87.68672626002576,41.89172789629264],[-87.68673240992665,41.89189003323334],[-87.68673830674508,41.89210993144583],[-87.68674746300623,41.89245137011404],[-87.68675493564919,41.89270097342732],[-87.68676334794311,41.89301983210299],[-87.68677101067374,41.89331028530049],[-87.68677659620487,41.89352851128587],[-87.68678360718089,41.89380934140315],[-87.68678808876629,41.89392843289615],[-87.6868024063564,41.894308898904384],[-87.68681102965324,41.894575550341095],[-87.68681848253918,41.894827187752966],[-87.6868245428301,41.89502447423791],[-87.68682925214242,41.895205126587136],[-87.68683103677715,41.89527370913782],[-87.6868347845064,41.89541772650908],[-87.68684259761734,41.89574324659069],[-87.68605813854587,41.895755640151066],[-87.6859663342522,41.89575729087144],[-87.68553478939904,41.89576509327133],[-87.68522432814846,41.89577072348638],[-87.68491342639788,41.8957763229322],[-87.68439662772127,41.895785230189695],[-87.68395409433802,41.89579285587858],[-87.68364279257848,41.895798037985756],[-87.68339974662247,41.895802068807924],[-87.68300788261995,41.89580857695638],[-87.68265569377817,41.89581440298501],[-87.68242657062848,41.89581820877013],[-87.68194919798756,41.89582703841495],[-87.6819456424052,41.895628900944594],[-87.68194055866343,41.89545691809854],[-87.68193788514137,41.89536597312424],[-87.68193580934506,41.89529536525245],[-87.68193132805092,41.89514358341318],[-87.68192700720584,41.8949967969952],[-87.68192478772086,41.89491781288567],[-87.68191849054269,41.89470086481116],[-87.68191443784958,41.89454667045645],[-87.68191242615868,41.89446990266939],[-87.68191228148278,41.89446436891321],[-87.68190837580693,41.894315516224886],[-87.68189952562082,41.894013599945],[-87.68189356617181,41.89381027258979],[-87.68188801184544,41.89364844070549],[-87.68188497706748,41.8935591547408],[-87.6818833464926,41.89351117480623],[-87.68187855488529,41.893371877449766],[-87.68187067596554,41.89309985606817],[-87.68186224143435,41.89280863940325],[-87.68185947188321,41.89270168065054],[-87.68185795255626,41.89264333469771],[-87.68185585216139,41.89256269178852],[-87.68184417797089,41.892187805406806],[-87.68183857292789,41.89200781811526],[-87.68183517231886,41.8918689951336],[-87.68183353065389,41.8918027406742],[-87.68183327103117,41.89179225537869],[-87.68182391823603,41.891465653585996],[-87.68181974416005,41.89131989479918],[-87.6818167609428,41.89120505883447],[-87.68181439207649,41.89111289378346],[-87.68181059442777,41.890966165112964],[-87.68180363639863,41.89074282015182],[-87.68179497518541,41.89046481340472],[-87.68179057744548,41.8903268708432],[-87.6817888483165,41.89027262686507],[-87.6817844874442,41.89013434724069],[-87.68177695672152,41.889895994581735],[-87.68176847494502,41.88964162057322],[-87.68175944883446,41.88937092181199],[-87.68175427974762,41.88917846624473],[-87.68175216387775,41.88909936463867],[-87.68175015418244,41.8890242713249],[-87.68174807611109,41.88894687191004],[-87.68174404726851,41.88879761716842],[-87.68173967938513,41.888641033647005],[-87.68205775177061,41.88863567522929],[-87.68248160292255,41.888628610604194],[-87.68267349156622,41.88862538953592],[-87.68294305389585,41.88862089046492],[-87.68302703650782,41.8886194887423],[-87.68337999491804,41.88861358381481],[-87.68366264765405,41.88860887119263],[-87.6839049688537,41.888604808229694],[-87.68408662866064,41.88860342048001],[-87.68418364109561,41.888601808370794],[-87.68450067174719,41.88859653993143],[-87.68481297138375,41.888590867114715],[-87.68511541829909,41.888586235530425],[-87.68530759655597,41.888583368446085],[-87.68541048177656,41.88858175386286],[-87.68555858651195,41.8885789952569],[-87.68568189961071,41.8885766984563],[-87.68586299392388,41.888573109312944]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"9712748.57586","perimeter":"0.0","tract_cent":"1156790.54315807","census_t_1":"17031231700","tract_numa":"43","tract_comm":"23","objectid":"813","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903737.81865546","census_tra":"231700","tract_ce_3":"41.89163213","tract_crea":"","tract_ce_2":"-87.69963158","shape_len":"12972.7412731"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69158412810118,41.88843617817983],[-87.69157000947973,41.888195634996485],[-87.69500630480877,41.8881563704909],[-87.6952021216212,41.88815412973773],[-87.69540013130903,41.88818507351828],[-87.69560781292624,41.88821298366987],[-87.6957990294131,41.88823462749157],[-87.69594580431398,41.8882474483025],[-87.6961669202946,41.88826308236476],[-87.69638854046086,41.888274259677054],[-87.69652530139545,41.88827844789567],[-87.69666712656114,41.88828129272971],[-87.69705919481375,41.888279006596115],[-87.69713815771875,41.88827875774054],[-87.69760877365648,41.88827175967405],[-87.69859405095286,41.888260401055426],[-87.69894574047072,41.88825617013565],[-87.70012660747473,41.88824210534784],[-87.70035341631409,41.88823923937097],[-87.70057884763663,41.888236365355944],[-87.70120142384853,41.888228474065],[-87.70141195322417,41.888226206561484],[-87.70141034634575,41.888163951141145],[-87.70141047231297,41.88816395128547],[-87.70177773218171,41.88816406796161],[-87.70386833266838,41.88816422659926],[-87.70387106699188,41.888306598951644],[-87.70422918925229,41.8883017007742],[-87.70484717280671,41.88829410758752],[-87.70508132683194,41.8882912724707],[-87.70546515289388,41.88828685436065],[-87.7060202365411,41.88827994003185],[-87.70624061802108,41.88827702704138],[-87.70633798743152,41.88827549969957],[-87.70634900678765,41.88865522679938],[-87.70635841886912,41.88900346780291],[-87.70636674410675,41.889218058477255],[-87.70636959788166,41.88929162005278],[-87.70637696668425,41.88961180314766],[-87.70638282426914,41.88982749476329],[-87.70638560779982,41.8899299904221],[-87.70639030012832,41.89007033467037],[-87.70639447359126,41.89019516013327],[-87.706397660845,41.89030733912919],[-87.7064002661246,41.8903990341131],[-87.70640545763881,41.89077705444154],[-87.70640953258602,41.89087139630485],[-87.70642414482839,41.89120970395987],[-87.70643925371478,41.89167778924356],[-87.70644585462902,41.89189607101115],[-87.70644963350409,41.89202104137033],[-87.70645745786815,41.89227256641439],[-87.70646880276284,41.892629818582314],[-87.70648192412449,41.89309838713484],[-87.70649330899681,41.89347786782269],[-87.70650122226392,41.89372446106156],[-87.70650425974165,41.893819119384766],[-87.70651022830063,41.894035096296285],[-87.70651377548778,41.894155835095376],[-87.70652213303093,41.8944403210117],[-87.70653804426021,41.89494663794913],[-87.70654229200325,41.895078604221744],[-87.70654347752742,41.89513379736991],[-87.70655102781619,41.89539185206964],[-87.70655633277818,41.895553410306064],[-87.70635388007058,41.89555532049146],[-87.70616940740474,41.89555692154796],[-87.70593314073548,41.895559032427165],[-87.70551559275859,41.895563199347286],[-87.70532586225055,41.895565318327655],[-87.7048656606507,41.89557045625386],[-87.70465191027058,41.89557250166263],[-87.70444641568271,41.89557446729792],[-87.7043383920214,41.895575500522675],[-87.70412941258104,41.89557895391369],[-87.70395133414226,41.895581896542076],[-87.70390059470793,41.89558273479566],[-87.7038407690502,41.89558372299944],[-87.70331177699859,41.895584719073405],[-87.7026115055,41.895590260573194],[-87.70245640734723,41.895592194551014],[-87.70235487957213,41.895593460828415],[-87.70220404706863,41.895594886344384],[-87.70203544742704,41.8955964801805],[-87.70189872918016,41.895597484807716],[-87.70176607804021,41.895599494078496],[-87.70172514096377,41.895600114150575],[-87.7016089611892,41.8956018735483],[-87.70098089837224,41.89561504683304],[-87.70055740198183,41.89562264815074],[-87.69991108717576,41.89562873832581],[-87.69929701085948,41.89563452152675],[-87.69916127872685,41.895636116704026],[-87.69894432675581,41.89563866591449],[-87.69860721811024,41.895642566001875],[-87.69824638345311,41.89564638877065],[-87.69794554234464,41.895648822830395],[-87.69729151476898,41.895654111620594],[-87.69698600386958,41.895653315871044],[-87.69670263372144,41.8956535191163],[-87.69669618065878,41.89545240411217],[-87.696688756352,41.895197752376994],[-87.69668528309322,41.89507956614865],[-87.69666968390113,41.894722261660945],[-87.69666554980235,41.894627535286716],[-87.69667111676374,41.89433327437382],[-87.69646185829761,41.89424953955316],[-87.69595803444263,41.89404753928938],[-87.69559169165363,41.893900719515585],[-87.69507997067205,41.893695625978864],[-87.694165474384,41.89332976303062],[-87.69402806995575,41.89327479062518],[-87.6936779784899,41.89313447645971],[-87.69321243748904,41.89294774380174],[-87.69279608248664,41.8927817954464],[-87.69248594501504,41.892658181032196],[-87.69226437438702,41.89256901884776],[-87.6916677819235,41.89233237968465],[-87.69170143235283,41.892003795004754],[-87.69164800123534,41.89191212776509],[-87.69164529078715,41.89176185717986],[-87.6916235277291,41.890555296459844],[-87.69162081114453,41.89040469237933],[-87.6916064925942,41.88961084363535],[-87.69158683544408,41.888520985198085],[-87.69158412810118,41.88843617817983]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1789139.80589","perimeter":"0.0","tract_cent":"1158105.48986327","census_t_1":"17031240700","tract_numa":"12","tract_comm":"24","objectid":"814","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911200.78086429","census_tra":"240700","tract_ce_3":"41.91208438","tract_crea":"","tract_ce_2":"-87.6945983","shape_len":"5359.47627503"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69689179988008,41.91021860444488],[-87.69703486320991,41.91021734158909],[-87.69702990367706,41.910283581840666],[-87.69701805940666,41.91044177967754],[-87.69701374594099,41.91072797924065],[-87.6970116895799,41.910864411088006],[-87.69701051841965,41.91094212126253],[-87.69701566987979,41.911289020785574],[-87.69703316300141,41.911865571136005],[-87.69704011352347,41.912053095581946],[-87.69704440511079,41.91216887106595],[-87.69704794061654,41.91235755659778],[-87.6970493995905,41.91243541853851],[-87.69706406926666,41.912896750285555],[-87.6970797312616,41.91345424563275],[-87.69708881035243,41.91374235761781],[-87.69709129531978,41.913822646459565],[-87.69709389176086,41.913906545953836],[-87.69680469806255,41.91390877661786],[-87.69664530632394,41.913910014225536],[-87.69648187210265,41.91391135679829],[-87.6962962816662,41.91391288083127],[-87.69587035816845,41.91391743365041],[-87.69566931512803,41.91391958191339],[-87.69525955323294,41.91392291843132],[-87.6948327415895,41.91392662355437],[-87.694650111378,41.91392846572206],[-87.69445920199958,41.913930391063346],[-87.69403472888867,41.913935301069046],[-87.69401231470928,41.913935560193224],[-87.69362173479497,41.913938598927295],[-87.69342572872175,41.91394015853623],[-87.69318360840488,41.91394208477377],[-87.69281359443869,41.91394594287337],[-87.6924277222024,41.913948515881316],[-87.6922033918288,41.91394989472549],[-87.69220162068184,41.91385759361017],[-87.69220007062815,41.913776828279005],[-87.69218317540658,41.91326603255721],[-87.69217177723526,41.912841079595985],[-87.69216046025987,41.91240435430288],[-87.69215276824538,41.9120933059398],[-87.6921487169244,41.911929481774195],[-87.69213665197752,41.91158954129364],[-87.69212427209226,41.911126904416875],[-87.69211420653996,41.91073771608252],[-87.69210455880095,41.91044627961468],[-87.69210829171091,41.91033557561997],[-87.69211065638703,41.91026544294895],[-87.69332226729047,41.91025436026805],[-87.69364060501555,41.91025144615932],[-87.6945414100551,41.91024259594498],[-87.69526676662156,41.910235464203794],[-87.69575975224437,41.91023035182784],[-87.69689179988008,41.91021860444488]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1766362.40392","perimeter":"0.0","tract_cent":"1161814.64648476","census_t_1":"17031241300","tract_numa":"7","tract_comm":"24","objectid":"815","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909292.50702031","census_tra":"241300","tract_ce_3":"41.90677133","tract_crea":"","tract_ce_2":"-87.68102523","shape_len":"6643.27310178"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6818960549264,41.90311017830317],[-87.68214005889183,41.90310657216671],[-87.68215396089543,41.90347571908289],[-87.68215748710834,41.90359645743321],[-87.6821651620593,41.903859206849305],[-87.68216971005971,41.904037772289215],[-87.68217461515547,41.904230363337064],[-87.68218124732034,41.90447771137939],[-87.68218745497431,41.90470925021258],[-87.68219368759966,41.90492137920752],[-87.68219678994463,41.905026975730806],[-87.68220569611474,41.90533267905344],[-87.68220766063561,41.905399896489875],[-87.68221880754952,41.90578132591595],[-87.68222310599032,41.905934038921345],[-87.6822279571034,41.90610640486882],[-87.6822333759426,41.90629260441971],[-87.68224280327968,41.90661573651211],[-87.68224647441878,41.90674613586765],[-87.6822522521578,41.90695121775879],[-87.68225539131203,41.90705277274546],[-87.68226187365312,41.90726252326829],[-87.68226980911072,41.90753726601429],[-87.68227858446747,41.907840169614836],[-87.68228299998027,41.90799255419438],[-87.68228570560201,41.9081714935244],[-87.68228717504161,41.908268647700666],[-87.68229229279761,41.9084483141987],[-87.68229858426358,41.90857230713784],[-87.68230662479091,41.90872012938125],[-87.68230687207503,41.90886464207396],[-87.68231540954497,41.90913801603834],[-87.68231855214067,41.90928032230732],[-87.68232169949555,41.90942284813831],[-87.68233411440971,41.9099456678673],[-87.68233965829943,41.9101791231258],[-87.68234657785219,41.9103934723242],[-87.68218066216373,41.910395400132145],[-87.68164068195101,41.91040629917561],[-87.6813963593023,41.910411229783044],[-87.68057832365339,41.910427713033435],[-87.68009555690404,41.91043742646923],[-87.67998606158439,41.910438951698325],[-87.67990665810129,41.91044005778037],[-87.67989121329111,41.909868756659144],[-87.67988019403873,41.90946150479618],[-87.67987583861415,41.90932568442404],[-87.67987286366132,41.90923292342076],[-87.67986403432393,41.90891923540736],[-87.67986275131992,41.90887364585627],[-87.6798580430565,41.908706220880084],[-87.67984860109868,41.90836994376699],[-87.67984513893654,41.908211819486034],[-87.67983902720437,41.90793267811316],[-87.67982542035894,41.907429829744466],[-87.67981977393005,41.90721983632876],[-87.67981485804918,41.90709684666837],[-87.67981061300326,41.9069906407123],[-87.67979863103827,41.906555391979566],[-87.67978593949829,41.90609247729832],[-87.67978191966256,41.90597233930636],[-87.67977873175185,41.905877068805594],[-87.67976786275084,41.905469597969834],[-87.67976705050013,41.905439165553915],[-87.67975667153172,41.90505054460208],[-87.67975371609958,41.90496029241793],[-87.67974686784189,41.90475114772163],[-87.67973252061326,41.904277740491395],[-87.67972625496634,41.90407771927525],[-87.6797222118211,41.90394864807407],[-87.67971454214533,41.90363630006423],[-87.67971105168387,41.90349413925367],[-87.67969985673018,41.90314674593034],[-87.68000543245405,41.90314180818296],[-87.68082294233326,41.90312815243832],[-87.6813516362302,41.903119300359236],[-87.6818960549264,41.90311017830317]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1740153.57534","perimeter":"0.0","tract_cent":"1158067.96065319","census_t_1":"17031222400","tract_numa":"8","tract_comm":"22","objectid":"816","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912525.48087105","census_tra":"222400","tract_ce_3":"41.91572023","tract_crea":"","tract_ce_2":"-87.69469993","shape_len":"5274.96524388"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69680469806255,41.91390877661786],[-87.69709389176086,41.913906545953836],[-87.69709689877445,41.9140037081206],[-87.69709893476062,41.914069498619405],[-87.69710494150732,41.914304438071525],[-87.69711656149734,41.91464747642278],[-87.69713015182006,41.91511028389066],[-87.69713992809811,41.91544661605486],[-87.69714672094761,41.91567208589863],[-87.69714915837586,41.91577504179076],[-87.69715622163459,41.91602571146346],[-87.6971703145229,41.91650825261441],[-87.69718316376044,41.91693845437437],[-87.69718657521739,41.917046376383496],[-87.6972005824373,41.91748948404194],[-87.69695549096538,41.9174914173961],[-87.69676907370182,41.91749375949258],[-87.69665806097224,41.9174951739148],[-87.69638216459467,41.917498666569685],[-87.69608748925066,41.91750252004077],[-87.6959752741858,41.91750294716585],[-87.69574727844036,41.9175038147679],[-87.6952136273436,41.91750804021284],[-87.69491661230253,41.91751069765758],[-87.69475220487087,41.9175129118693],[-87.69448527247188,41.9175165038785],[-87.69425627168023,41.91751874217748],[-87.69407965301066,41.9175185502017],[-87.69407151245865,41.917518541379515],[-87.69383362875644,41.91751828262676],[-87.69321468996735,41.91752331353927],[-87.6926109975345,41.91752850851761],[-87.69230593291526,41.91753141011939],[-87.69229213929016,41.91711443585232],[-87.69229110325405,41.91708009948544],[-87.692282813959,41.91680532868014],[-87.69227757328127,41.9166256355416],[-87.69227307564073,41.91647141162415],[-87.69226479476549,41.916170296504944],[-87.69226370107846,41.91613052568665],[-87.69225677716146,41.91588987296058],[-87.69225036550436,41.9157175371216],[-87.69224649792729,41.915617368423156],[-87.69223826840854,41.915335626986185],[-87.69223618716158,41.91526464957461],[-87.69222528333717,41.91490665929363],[-87.69222299846926,41.91481293079555],[-87.6922171304686,41.914572229023655],[-87.69220753209369,41.91416564511333],[-87.6922033918288,41.91394989472549],[-87.6924277222024,41.913948515881316],[-87.69281359443869,41.91394594287337],[-87.69318360840488,41.91394208477377],[-87.69342572872175,41.91394015853623],[-87.69362173479497,41.913938598927295],[-87.69401231470928,41.913935560193224],[-87.69403472888867,41.913935301069046],[-87.69445920199958,41.913930391063346],[-87.694650111378,41.91392846572206],[-87.6948327415895,41.91392662355437],[-87.69525955323294,41.91392291843132],[-87.69566931512803,41.91391958191339],[-87.69587035816845,41.91391743365041],[-87.6962962816662,41.91391288083127],[-87.69648187210265,41.91391135679829],[-87.69664530632394,41.913910014225536],[-87.69680469806255,41.91390877661786]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1775376.82677","perimeter":"0.0","tract_cent":"1155447.21433261","census_t_1":"17031230100","tract_numa":"14","tract_comm":"23","objectid":"817","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1911140.17020287","census_tra":"230100","tract_ce_3":"41.91197197","tract_crea":"","tract_ce_2":"-87.70436571","shape_len":"5461.05854745"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70654090079833,41.9101164113459],[-87.70696046604213,41.91011532922255],[-87.70688627052114,41.91020876737544],[-87.70681133684698,41.91040246448576],[-87.70677016981148,41.9108364291484],[-87.70680038011942,41.911941773118045],[-87.70682908816738,41.91298937853805],[-87.70685459549391,41.913716017155146],[-87.70685659942917,41.91377311030369],[-87.70668041248622,41.913776140952656],[-87.70599100954492,41.91378266713962],[-87.70583301145722,41.913784204754],[-87.70516699773466,41.91378996385293],[-87.70502785966315,41.9137924943103],[-87.70383849939157,41.913804867681876],[-87.70333534029102,41.91380997700128],[-87.702464991889,41.91381651819882],[-87.70232540321015,41.91381886370702],[-87.70232710867016,41.9138818282176],[-87.70232820870457,41.91392244477091],[-87.70198050821631,41.913921220409144],[-87.70197787605191,41.91383887954395],[-87.7019778712776,41.913838730231504],[-87.70196207935952,41.913316293748764],[-87.70194877106111,41.91286608423771],[-87.70193567482255,41.91242792303523],[-87.70192731885786,41.91214222310439],[-87.70192237470418,41.91197318551427],[-87.70190984970202,41.911588924108756],[-87.70189365933255,41.911062161959926],[-87.70188094200631,41.91065643953242],[-87.70187196179923,41.910371044804265],[-87.70186767557236,41.910228873802055],[-87.70186599250692,41.91017304437499],[-87.7019444468116,41.91017293736903],[-87.70221558766458,41.91017256789215],[-87.7026619234359,41.91017195815967],[-87.7027984735642,41.91017017869467],[-87.70337751589942,41.91016263126605],[-87.70401321562908,41.91015434204948],[-87.70451463250554,41.91014919465539],[-87.70532936400795,41.91012973052349],[-87.7056622511016,41.91012607203941],[-87.70654090079833,41.9101164113459]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7037245.55834","perimeter":"0.0","tract_cent":"1153261.62183022","census_t_1":"17031220600","tract_numa":"32","tract_comm":"22","objectid":"819","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917080.45267611","census_tra":"220600","tract_ce_3":"41.92831631","tract_crea":"","tract_ce_2":"-87.71223693","shape_len":"10967.4684269"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70742719622322,41.93202943009281],[-87.70742076280638,41.931813458140304],[-87.70741536915479,41.93161864322303],[-87.70740650411356,41.93129842663063],[-87.70740036454838,41.931084398613244],[-87.70739508334822,41.93088030935664],[-87.70739421463719,41.930846923884395],[-87.70738835139502,41.93062162957341],[-87.70738605208109,41.93048092068458],[-87.7073805682173,41.93024445477064],[-87.70737002438015,41.92978978282183],[-87.7073713443875,41.92961717831618],[-87.70736663336855,41.92944503488642],[-87.70736485561271,41.92935995424009],[-87.70736424579987,41.92932971011189],[-87.7073584450802,41.92904203217495],[-87.70734788774078,41.92874851657216],[-87.7073478834226,41.92874839443062],[-87.70734983663937,41.92874839273028],[-87.70738696760947,41.928748359702396],[-87.7076331533905,41.92873035940883],[-87.70764579004562,41.928729435684076],[-87.70764580607211,41.9287294503158],[-87.70769900080201,41.92877855938411],[-87.70781364047238,41.92879907933128],[-87.70786476417794,41.92878529368099],[-87.70789482510517,41.92871753814368],[-87.70789459067036,41.92841156348916],[-87.7078945908063,41.92841143670671],[-87.70789455286678,41.92836998717911],[-87.70789454818106,41.92836512466156],[-87.70788862807893,41.92833054097639],[-87.70788026632323,41.92799778559484],[-87.70787280915098,41.92796172702009],[-87.7075858378622,41.927966982846996],[-87.7073224149052,41.927970320252086],[-87.70730320425325,41.92749854578183],[-87.70729212490289,41.92733077973017],[-87.7072873208436,41.927128944301224],[-87.70728152341486,41.926885361583345],[-87.70727819595456,41.92677090923504],[-87.7072743788847,41.92663820483989],[-87.70727262857999,41.926577356088],[-87.70726574381762,41.92636756804651],[-87.70725380073235,41.92600365534983],[-87.70724802220052,41.92578285086019],[-87.70724272650541,41.92555400841205],[-87.7072379426893,41.92537804998566],[-87.70723141939548,41.92516577595439],[-87.70722452278692,41.9249541036092],[-87.70721876790098,41.92471635141296],[-87.70740557979401,41.92471661746338],[-87.70756770542556,41.92471439714767],[-87.70772664029127,41.924712220140016],[-87.70802035878489,41.92470808492774],[-87.70815722203271,41.92470611313545],[-87.70842780165195,41.92470456740319],[-87.7084682553739,41.92470458174375],[-87.70868631282067,41.92470465707483],[-87.70887242489594,41.92470177232203],[-87.70923608818218,41.92469679291837],[-87.7095897021234,41.92469194986835],[-87.70973181256497,41.92469074591856],[-87.7099922975204,41.9246880991425],[-87.7102160365748,41.92468538903084],[-87.7104785689201,41.924680068682896],[-87.71048889965802,41.924679859629435],[-87.71063583779274,41.92467688163295],[-87.71075681391966,41.92467623303569],[-87.71098704232291,41.92467499869831],[-87.71117924888247,41.92467269235812],[-87.71146512157088,41.924670453947144],[-87.7116657814885,41.92466797303674],[-87.71183086600583,41.924665985277336],[-87.71210529761403,41.92466098302487],[-87.71228127383708,41.92465777473552],[-87.71241110432686,41.92465724198976],[-87.7127096865677,41.92465548084239],[-87.71293050881012,41.92465417694733],[-87.71314751599273,41.92465219340694],[-87.71332649787925,41.92464949151528],[-87.7135304335245,41.92464641252227],[-87.71373814512948,41.924644330213006],[-87.71393964523398,41.92464230979445],[-87.71394681149243,41.92464223785936],[-87.71421984121048,41.92463808467721],[-87.7145520741057,41.92463348866079],[-87.71475086196745,41.924630738154136],[-87.71499900255937,41.92462779370206],[-87.7150713993096,41.92462715061943],[-87.71538227774445,41.9246229605391],[-87.7155025649408,41.924621338637586],[-87.71577113044505,41.92461906004334],[-87.71612807767215,41.92461603091142],[-87.71669920547058,41.92460691511383],[-87.71699394670084,41.9246033919614],[-87.71699911710814,41.924837338730825],[-87.71700755513437,41.925104990885494],[-87.71700837912564,41.925131130776684],[-87.71701979497394,41.92560967543666],[-87.71703294954135,41.92616720822554],[-87.71704051697957,41.926414769005056],[-87.71704608512435,41.926596915076324],[-87.71705672164084,41.927087749287196],[-87.71707051622381,41.92763996156749],[-87.71707430534768,41.92780414313125],[-87.71708073395534,41.928082659999575],[-87.71708765672986,41.92825492968479],[-87.71709437205487,41.92842202922825],[-87.7171026286674,41.92871131351396],[-87.71710712358237,41.92886880265058],[-87.71711579971313,41.92915101043625],[-87.71712698238133,41.92949398879791],[-87.71712839780355,41.929537382588734],[-87.71713946393184,41.92989202325585],[-87.71714494003672,41.93009126523881],[-87.71715007919586,41.93027824750458],[-87.71716368716028,41.93072014065523],[-87.71717263799376,41.931000538633235],[-87.7171864000973,41.93144828406232],[-87.71719035383579,41.9315769207411],[-87.71719504598568,41.93191091658245],[-87.71664228440306,41.93191750031319],[-87.71597131486801,41.93192405562657],[-87.71545898558985,41.931929058523195],[-87.71500084708639,41.93193335976494],[-87.71475463704505,41.9319389224164],[-87.71414553990166,41.931949419731254],[-87.71371006638842,41.93195478727263],[-87.71364747370237,41.931955399248714],[-87.71316393679936,41.93196012632997],[-87.71291231918428,41.93196244755061],[-87.71273244529297,41.93196410662843],[-87.71225309780944,41.93198308104112],[-87.71167520904518,41.93197850251997],[-87.7115458680646,41.931980080143425],[-87.71127143528086,41.9319816669162],[-87.71106913093813,41.93198460608202],[-87.71064446049007,41.931990773830975],[-87.71064129250125,41.93199081976736],[-87.71045376406276,41.93199353474452],[-87.71015243903815,41.931997936987564],[-87.70986561489968,41.932002620253],[-87.70943223134624,41.932009695585556],[-87.70923037429098,41.932011973681405],[-87.70907163020149,41.93201380005082],[-87.70864395119582,41.93201994486539],[-87.70826803687952,41.93202534465943],[-87.70802287444482,41.9320289493545],[-87.70783571225068,41.93203177181854],[-87.70742719622322,41.93202943009281]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2621182.39998","perimeter":"0.0","tract_cent":"1165082.89157587","census_t_1":"17031221900","tract_numa":"20","tract_comm":"22","objectid":"820","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912681.14639406","census_tra":"221900","tract_ce_3":"41.91600115","tract_crea":"","tract_ce_2":"-87.66892323","shape_len":"7092.81435883"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66751641005818,41.91792355563482],[-87.66738106762875,41.91775583583824],[-87.66725454435351,41.91758452078202],[-87.66711293281561,41.91739437496516],[-87.66701644296197,41.91726469862205],[-87.66683123761776,41.9170157930822],[-87.66665648343138,41.91678365971443],[-87.66651275280563,41.91659270500646],[-87.66641056610759,41.91645373493321],[-87.6660239244156,41.91654831758721],[-87.66587575601723,41.91658263932789],[-87.66576238957155,41.9166088992466],[-87.66558552462219,41.916650214285575],[-87.665335327865,41.91670794186929],[-87.66488596553673,41.91681162090121],[-87.66462067861082,41.9168759377034],[-87.66437296584225,41.91693206871066],[-87.66425682804037,41.916958377403986],[-87.66421599039332,41.91679619295558],[-87.66403936456356,41.91627900065123],[-87.66393945485814,41.91601973853459],[-87.66389591367538,41.91589014510647],[-87.66389591223735,41.915890142079434],[-87.6637952839739,41.91571457294787],[-87.66377108192789,41.91567845499235],[-87.6637510512211,41.91566500123926],[-87.66370630065177,41.915633373746466],[-87.66362055999939,41.91561500657832],[-87.66381368020235,41.91549769408237],[-87.66389764164727,41.91546182286042],[-87.66417628109895,41.91534270095143],[-87.66485404526492,41.91504512631033],[-87.66512300936562,41.91492868999134],[-87.66525480582993,41.91489166364291],[-87.66536014241098,41.91482578901632],[-87.66541873349405,41.914800402972354],[-87.66582841872533,41.91462166591163],[-87.66593637188429,41.91457495546631],[-87.66602674157011,41.91454083479311],[-87.66611936480663,41.91451084348654],[-87.66621424124138,41.914484981539175],[-87.66639887487622,41.914439745218864],[-87.66648773789635,41.91441796473535],[-87.66658166739934,41.91439484093889],[-87.66681142199396,41.914338546001076],[-87.66700689443108,41.91431866188205],[-87.66708818099784,41.914310994719315],[-87.66723257902382,41.91429805258662],[-87.66736536371204,41.91428687523939],[-87.66743699455907,41.91428124540018],[-87.66759832410223,41.91427553461873],[-87.66768481978154,41.91428676765193],[-87.66768550847237,41.914286856989825],[-87.66780074681203,41.91430182267981],[-87.66788223393031,41.91428184111429],[-87.66792950303731,41.914270250094475],[-87.66889042612927,41.91425489032662],[-87.66901169251209,41.914253648510915],[-87.67023144657789,41.914292348083094],[-87.6708440656284,41.91428202724606],[-87.67092782430815,41.91428061584648],[-87.6712337418158,41.91427546475325],[-87.6714472022393,41.914271589754556],[-87.6719565624559,41.91426234170355],[-87.67243555383799,41.914254671538885],[-87.67266732683025,41.91425042601686],[-87.67266873833432,41.91430173229391],[-87.6726759386737,41.91458324932974],[-87.67267801518491,41.91466416115681],[-87.67269583062479,41.915358416412595],[-87.67270017288119,41.915525839359006],[-87.67270130952167,41.91557002825765],[-87.67270153192734,41.915578673583674],[-87.67271039304688,41.91592361923611],[-87.672713823602,41.916029820314954],[-87.67271872048153,41.91618137765623],[-87.67272650614635,41.91648779058738],[-87.67273298989736,41.916742956330125],[-87.67274281525013,41.91712981182213],[-87.67274950713391,41.91739302206552],[-87.67275147652748,41.91747047496],[-87.67275808067444,41.91773022695572],[-87.67276153435708,41.91784987484947],[-87.67240890005684,41.91785645510764],[-87.67211022897824,41.917862549494245],[-87.6720617571788,41.917863538463784],[-87.67205749414586,41.91786362532862],[-87.67182629814837,41.917868330934105],[-87.67154504751583,41.91787771602],[-87.67134803871097,41.91788429030135],[-87.6712474951107,41.91788231379138],[-87.67108159941569,41.917879052501824],[-87.67093919767119,41.91787625252025],[-87.6707512172444,41.91787255681947],[-87.67065664791257,41.91787069741597],[-87.6704570508904,41.91787727224537],[-87.6702005198213,41.917885721825755],[-87.67000896436656,41.91789203084754],[-87.66970346141511,41.917902092115156],[-87.66951710378156,41.917908229205096],[-87.66949690316618,41.91790889452541],[-87.66937569543028,41.91791288580043],[-87.66937326629402,41.917912929383],[-87.66931169598006,41.91791403189916],[-87.6692798592391,41.91791460189858],[-87.66917999414243,41.91791628994807],[-87.66904381847687,41.91791865835179],[-87.66865444475484,41.91792542972562],[-87.66865437530129,41.91792543069568],[-87.66849930462595,41.91792812705382],[-87.66841900353833,41.91792952321641],[-87.66834284088448,41.91793087248908],[-87.66828009100269,41.91793198436042],[-87.66796131730692,41.91793231597292],[-87.66783436183992,41.91793244795867],[-87.66769944919359,41.91792867501849],[-87.66751641005818,41.91792355563482]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7296645.64068","perimeter":"0.0","tract_cent":"1153074.49957101","census_t_1":"17031210200","tract_numa":"25","tract_comm":"21","objectid":"821","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922431.4480565","census_tra":"210200","tract_ce_3":"41.94300357","tract_crea":"","tract_ce_2":"-87.71278221","shape_len":"11541.3837386"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70769774548104,41.93933099203875],[-87.70768025682996,41.939103051862915],[-87.7078784550261,41.939216047027934],[-87.70807402212081,41.93932725146222],[-87.70843918774663,41.9393236204197],[-87.70849040332128,41.93932311101294],[-87.70868186384368,41.93932120661167],[-87.70884075121052,41.939319626096776],[-87.70951946020749,41.93931287196346],[-87.70970281466423,41.9393107121592],[-87.71005093138434,41.93930583300941],[-87.71032655679933,41.93930196891063],[-87.71065517966949,41.93929841929851],[-87.71089970273353,41.939295417792835],[-87.71127365895777,41.93930182011207],[-87.71144145313701,41.93930469256827],[-87.71163378912422,41.939301151333034],[-87.71186635971647,41.93929888134176],[-87.71249154164316,41.93927947831732],[-87.71257299230079,41.9392768243322],[-87.71267436744874,41.93927352114062],[-87.71305499311646,41.93926674166322],[-87.71332076955906,41.93926274362212],[-87.71370952291434,41.93925928328613],[-87.71383508799211,41.93925816530718],[-87.71420237946167,41.939254356163275],[-87.71443157203757,41.93925166759182],[-87.7149405725381,41.93924584243867],[-87.71516781104062,41.93924324313453],[-87.71584175805766,41.939235166113],[-87.71617638602046,41.939231010602576],[-87.71674853531297,41.93922390325046],[-87.7170900970831,41.93922019367095],[-87.71739917233377,41.93921621440377],[-87.71741369287015,41.93954421124211],[-87.717417341227,41.939673456136326],[-87.71741759382586,41.93968238416472],[-87.71741778877914,41.93968931985453],[-87.71742780952191,41.94004428384919],[-87.7174400211231,41.94049407208882],[-87.71744948235586,41.940817172094114],[-87.7174523583743,41.940912062872435],[-87.7174561731897,41.94103792582873],[-87.71746407330573,41.94129855927291],[-87.71747246861752,41.941583481700484],[-87.71748490876838,41.941963732534525],[-87.71749106070853,41.94218840701729],[-87.71749997649744,41.9425140292289],[-87.71750999161618,41.9428611714425],[-87.71751461257237,41.94302134909322],[-87.71751967794215,41.943217203687404],[-87.71752607471974,41.943446325341135],[-87.71752997135992,41.94357581845653],[-87.71753777785264,41.94377300495788],[-87.7175455957575,41.943805134755976],[-87.71755291899598,41.9438352314534],[-87.71753987686265,41.94389763170715],[-87.71754008612417,41.94389784934831],[-87.71760535920012,41.94396568220595],[-87.71767398249915,41.944050135509364],[-87.7177326309764,41.94412053483788],[-87.71781400177102,41.944217183376935],[-87.71791877996526,41.944341372061835],[-87.71800585841376,41.94444466462032],[-87.71811343405933,41.94457235327268],[-87.71814033788755,41.944606692030945],[-87.7181826222506,41.944650335956666],[-87.71814807494663,41.94473521611381],[-87.71814882097253,41.94481820525309],[-87.71814337121772,41.944964457120825],[-87.71825747733129,41.94513953154353],[-87.71829914940275,41.945201911306135],[-87.71834498983817,41.94527046042763],[-87.71840340634405,41.94535765523882],[-87.71855219777576,41.94558023970089],[-87.71866192580819,41.94574438254822],[-87.71871293229927,41.94582242672389],[-87.7187466672454,41.94586934132794],[-87.7188035168629,41.94592077039111],[-87.71888824221963,41.94597089417638],[-87.71902749358712,41.94605037091115],[-87.71920086338325,41.946148306465545],[-87.7194339788361,41.94627951927567],[-87.71976774914657,41.946474934019385],[-87.71940705485726,41.94647981264456],[-87.7192892909743,41.946481395541625],[-87.71917584300235,41.94648289767321],[-87.71897689627671,41.94648553167738],[-87.71891070214178,41.9464864079652],[-87.7187635348596,41.94648835628893],[-87.7185209433492,41.94649156706397],[-87.71845245000246,41.946492473585266],[-87.7184523676533,41.94649247451635],[-87.7183745944107,41.9464935039036],[-87.71815989255126,41.94649634491151],[-87.71795608962388,41.94649904360684],[-87.7177551943254,41.94650170346876],[-87.71764787187686,41.946503122224286],[-87.71758806284238,41.94650391261595],[-87.71758805291532,41.94650391283713],[-87.71720285636901,41.946509004113075],[-87.71672504089656,41.94651505582008],[-87.71654032892576,41.94651730760672],[-87.71638788378101,41.94651916553062],[-87.71609883884615,41.94652268796758],[-87.71592808479166,41.94652476847299],[-87.71577615857437,41.946524920374586],[-87.71555806471112,41.94652513812599],[-87.71516618384031,41.94652815258794],[-87.71515449763665,41.9465282427947],[-87.7148598115748,41.946530508366955],[-87.71471243173289,41.94653225414069],[-87.71463158529038,41.94653321174448],[-87.71460262570592,41.94653413169141],[-87.71455289638818,41.946535711917775],[-87.71445214563866,41.94653891309031],[-87.71421082032529,41.946547684383695],[-87.71419374929995,41.94654830472653],[-87.71394298479132,41.94655150758167],[-87.71353358531664,41.94655673506024],[-87.71329395551261,41.946560271027664],[-87.71284909756007,41.94656404222904],[-87.71271319632868,41.94656673714437],[-87.71234234989589,41.94657409054093],[-87.71223343995779,41.94657528242256],[-87.71210699370803,41.94657666636233],[-87.71202301089781,41.9465775854004],[-87.7119664852488,41.94657820402445],[-87.71149576741041,41.94658387227086],[-87.7113547908999,41.946585569381305],[-87.71105780494783,41.9465891442282],[-87.71094136867075,41.94659005836351],[-87.71088432562419,41.94659050625273],[-87.71078073063771,41.94659131942658],[-87.71050942288346,41.94659449614187],[-87.71044627645544,41.94659523561957],[-87.71041909847646,41.94659555358853],[-87.71034185076098,41.94659645799283],[-87.70982898180554,41.94660461102049],[-87.70979295563424,41.94660518347683],[-87.7095285404039,41.94660938541971],[-87.70884299851221,41.94662306029108],[-87.70814124622882,41.946628842638624],[-87.70793270527878,41.94662951806111],[-87.70782191935378,41.94663093593199],[-87.70781359880549,41.94638205467508],[-87.70781069005692,41.94617572836694],[-87.70780352946586,41.94591788338894],[-87.70778953777426,41.94541403813445],[-87.70778691821191,41.94527977677599],[-87.70778454196183,41.94515800292692],[-87.70777765608722,41.944865567720164],[-87.70777337294659,41.94468365904793],[-87.707764273616,41.944366103540716],[-87.70774794356393,41.943757950870165],[-87.70773728812881,41.94336602154999],[-87.70773307347194,41.94321100214648],[-87.70773194882938,41.943164289431124],[-87.70772556208642,41.9429905212156],[-87.70771609915445,41.94273305898788],[-87.70767624340593,41.941301430061515],[-87.70766994980501,41.941038115416255],[-87.70766440025542,41.94080592425633],[-87.7076610025392,41.94063466647587],[-87.70765773051518,41.940515522095936],[-87.7076553639901,41.940429368161965],[-87.70765157042128,41.940291011401214],[-87.70764799170486,41.94019842938495],[-87.70764473093796,41.94016491238224],[-87.70763155938604,41.940029515466215],[-87.70762549168008,41.939928244854805],[-87.7076310354667,41.939865797149466],[-87.7076472607013,41.939761874988555],[-87.70768504554587,41.9396424378606],[-87.70770855077868,41.93956813776867],[-87.70771166799418,41.93951244709722],[-87.70770774831983,41.939461358557054],[-87.70770260411165,41.939394313116146],[-87.70769847218361,41.9393404616354],[-87.70769774548104,41.93933099203875]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1774424.50191","perimeter":"0.0","tract_cent":"1156858.08525187","census_t_1":"17031210800","tract_numa":"15","tract_comm":"21","objectid":"822","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919810.71193713","census_tra":"210800","tract_ce_3":"41.93573609","tract_crea":"","tract_ce_2":"-87.69894692","shape_len":"6656.17193082"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69973080606586,41.93208156936206],[-87.70007314393372,41.93207930321533],[-87.70007925461393,41.9322769865319],[-87.70008275540754,41.93244322367201],[-87.70008484414743,41.932536090623906],[-87.70008780951672,41.93266792103653],[-87.7000936241973,41.932901184560286],[-87.70010292808894,41.93323498817429],[-87.70010735553909,41.93339297001415],[-87.70011285484149,41.933576424140504],[-87.70011760584404,41.93373517613724],[-87.70012313827104,41.933900869831625],[-87.70012650836173,41.93400182638235],[-87.70013284774006,41.9341744470925],[-87.70013691457416,41.93441381943108],[-87.70014354337609,41.93480531341532],[-87.70015642566683,41.93521776407536],[-87.7001614583308,41.93544737803226],[-87.70016531985817,41.93562354566019],[-87.70015668476425,41.93581103837403],[-87.70017532071812,41.935866546962714],[-87.70017723774046,41.93590311055588],[-87.70017921469247,41.93598533831367],[-87.70018085949661,41.93604292113611],[-87.70018395574114,41.93614902539376],[-87.70018623779107,41.936227088005694],[-87.70018725625273,41.936262384299894],[-87.70018891888407,41.93631991233337],[-87.70019291243216,41.936458627265196],[-87.7001978468723,41.93664226670417],[-87.7002027449488,41.936824568403594],[-87.70020885517647,41.9370614557557],[-87.7002145104496,41.93725887870274],[-87.70022009176324,41.93746749765303],[-87.70022349750292,41.93755796592671],[-87.700229784248,41.937724958938624],[-87.70023816394404,41.9380082083656],[-87.70024237409135,41.93815027267244],[-87.7002464814307,41.93828868632214],[-87.70025071637518,41.93846685535873],[-87.70025483860692,41.93864029438027],[-87.70026179157082,41.93883659929683],[-87.7002650181731,41.938926572600835],[-87.70027062846447,41.93909512604659],[-87.70027737879646,41.93937654810066],[-87.69982926973793,41.93938182260953],[-87.69951128084548,41.93938404676089],[-87.69900804065429,41.939386920692385],[-87.69874306168073,41.93938820094458],[-87.69832278596691,41.93939027628139],[-87.69782343511656,41.93939274062797],[-87.69781211713071,41.93903975575844],[-87.69780197377199,41.93872339485958],[-87.69779713916719,41.93848044979494],[-87.69779271441395,41.93825812101738],[-87.69779059642788,41.938151683791745],[-87.69778528755806,41.93798304927368],[-87.69777329535476,41.93756852254935],[-87.69776361653838,41.93723394937803],[-87.69775820722425,41.937045830587486],[-87.6977553662288,41.93694699549195],[-87.69774730829738,41.93665766259379],[-87.69774349922808,41.9365208895971],[-87.69773651271883,41.936248843788114],[-87.69773198997518,41.9360735728249],[-87.69772941747281,41.93597361406809],[-87.69772473557127,41.93574334528685],[-87.69772094751448,41.93555704935143],[-87.69771712969658,41.93541594781993],[-87.69771289417808,41.93525769259125],[-87.69770651917133,41.93504841044379],[-87.69770164245385,41.93490661698213],[-87.69769505228642,41.93471530800521],[-87.69769114729024,41.93459039715012],[-87.69768297666917,41.934457029410346],[-87.69767818054889,41.93437874589631],[-87.69768101079966,41.93428048056705],[-87.69768282595143,41.934217451183336],[-87.6976801473858,41.93412855568442],[-87.69767094865068,41.93395020499801],[-87.69766503891358,41.93383562133321],[-87.69765823486264,41.93370369581938],[-87.69765427997596,41.93357264282237],[-87.69765158089396,41.933470422355775],[-87.69764810372398,41.93333871064067],[-87.69764650579022,41.93327819554216],[-87.6976438314085,41.933176894521345],[-87.69764219350151,41.93311485396118],[-87.6976388033404,41.932986448409395],[-87.69763534278529,41.93285536218319],[-87.69762956610327,41.932636569313885],[-87.69762735182275,41.93255270651967],[-87.6976249058913,41.93246004775793],[-87.69762469560631,41.93241830697187],[-87.69762392126282,41.93235194738782],[-87.69761766565956,41.93209567537293],[-87.6979129769732,41.932095453298636],[-87.69809127280303,41.932093640762886],[-87.69823097569173,41.932092260475834],[-87.69843738860736,41.93209020391445],[-87.69852651813903,41.93208929717234],[-87.69884620967153,41.93208768554174],[-87.6991626684439,41.932086089194044],[-87.69931850369892,41.93208486419308],[-87.69945875565105,41.93208373873555],[-87.69961958938305,41.93208243746345],[-87.69973080606586,41.93208156936206]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14095779.7057","perimeter":"0.0","tract_cent":"1135868.46685849","census_t_1":"17031190400","tract_numa":"62","tract_comm":"19","objectid":"823","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1919321.54864089","census_tra":"190400","tract_ce_3":"41.93479407","tract_crea":"","tract_ce_2":"-87.77609797","shape_len":"15936.0034055"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78531158818848,41.931007255952686],[-87.78568918371292,41.93100167941104],[-87.78569767641532,41.93129189071205],[-87.78570504830336,41.931474087699165],[-87.78571747914441,41.9318167363429],[-87.78572390637984,41.93201056433072],[-87.78573007616765,41.93220441852615],[-87.78573880761363,41.932481188032014],[-87.78574533739504,41.932688819947195],[-87.78575046430339,41.93283192866458],[-87.78575868770527,41.933061467298856],[-87.78576243882759,41.933185826102445],[-87.78577257453061,41.93351762399895],[-87.78577997057887,41.93373996878574],[-87.78578730479832,41.93396099658889],[-87.78579895000905,41.9343096511862],[-87.78580084796886,41.93437993986945],[-87.78581031203454,41.93466066115233],[-87.7858184077048,41.934900795380614],[-87.78582223519851,41.93502479775771],[-87.78582940080832,41.9352182998465],[-87.7858411741863,41.93557513276758],[-87.78584767182062,41.935772061933676],[-87.78585323257423,41.935938361069795],[-87.78586284599169,41.936215244362906],[-87.7858717803537,41.93649186095863],[-87.78587886608359,41.93670294212046],[-87.78588223159402,41.93677625614384],[-87.78588937076731,41.93699437401666],[-87.78590178857138,41.93740450246525],[-87.78590573484631,41.937534844785894],[-87.78592256645209,41.93786596084709],[-87.78594394217973,41.93796658370036],[-87.78599971268693,41.93820559682072],[-87.78603068234914,41.93831747224924],[-87.7855393061782,41.93832411984616],[-87.78544630757102,41.938325333897836],[-87.78532129121328,41.93832696585974],[-87.78502053396541,41.9383308916466],[-87.78443468932069,41.938341347041714],[-87.78399229326929,41.93834798533559],[-87.78350563413835,41.93835415750126],[-87.78303719975277,41.93836009662287],[-87.7823774612346,41.938368293823],[-87.78197538774702,41.93837454181442],[-87.78142386891625,41.938381002621114],[-87.7810728474402,41.938385171500364],[-87.7807034821249,41.938389557272046],[-87.78013460719852,41.93839691654178],[-87.7794205745929,41.93840593283309],[-87.77925850846343,41.93840776693211],[-87.77906119123564,41.938410016253],[-87.77864434501987,41.93841582012293],[-87.77833388037998,41.93842014170115],[-87.77719943306023,41.938435343894355],[-87.77676645562643,41.93844073762011],[-87.77621462941525,41.93844814720843],[-87.77580855961783,41.93845359845129],[-87.7753248904293,41.938459810829265],[-87.77500262893652,41.93846380591322],[-87.77446783089066,41.93847043371024],[-87.77403201569483,41.938476654019695],[-87.77378595693762,41.93847952922073],[-87.77333588857579,41.938484786650605],[-87.77257336464041,41.938495066640115],[-87.77218960190014,41.93850023834216],[-87.77183517318086,41.93850503685409],[-87.77135709166828,41.93851092614353],[-87.77054208424478,41.93852096181704],[-87.77014240190172,41.938526740461235],[-87.77006884682324,41.938527803070365],[-87.76989424080703,41.9385303253257],[-87.76939292571802,41.93853683775074],[-87.76892961010019,41.938543786156885],[-87.76847364774139,41.938550622876186],[-87.76771215560207,41.93856034821336],[-87.76745308062684,41.93856365449764],[-87.76701763946258,41.93856899931295],[-87.76649970926107,41.93857468554154],[-87.7664877698201,41.93823886154981],[-87.76648200156009,41.938103154277144],[-87.7664766676694,41.937977666163974],[-87.76647244718913,41.93786905667765],[-87.76646730465916,41.937735909003614],[-87.76646458822295,41.93765916737453],[-87.76645948353143,41.93750681004186],[-87.76645507123308,41.93737421480902],[-87.76645143577198,41.93725350589758],[-87.76643483208541,41.93675250288709],[-87.76643005100813,41.936608562564885],[-87.76642614069021,41.93649084348404],[-87.76642050359492,41.93633475161977],[-87.76641795072042,41.936261962187245],[-87.76641495691362,41.9361767117982],[-87.76640966327379,41.936048201075984],[-87.76640338931392,41.935827040492036],[-87.76638703208224,41.93532097959044],[-87.76637227298653,41.93492788047931],[-87.76635429140681,41.93444895021427],[-87.76633689376084,41.93394428360306],[-87.7663210378055,41.93345230288121],[-87.76630972113875,41.93310024571353],[-87.76630075389849,41.93282127803943],[-87.76628164196667,41.93227788150716],[-87.76626289162486,41.93172688547402],[-87.76626282596533,41.93172512884483],[-87.76625094850927,41.93140731619632],[-87.76624637601793,41.931277286426095],[-87.76660598719927,41.9312710894257],[-87.7667918273035,41.931267643221766],[-87.76685339259664,41.931266805654815],[-87.76702720465369,41.93126444105117],[-87.76728051317306,41.931261573778855],[-87.76746175218192,41.93126002833359],[-87.76785356722762,41.931256686176745],[-87.76812327604199,41.93125271779639],[-87.76852309923542,41.93124667211565],[-87.76867610355764,41.931244137346056],[-87.76891906810856,41.93124011213524],[-87.76918895983263,41.9312362244772],[-87.7695779739103,41.931230670859215],[-87.76989112571269,41.93122599971156],[-87.76995440589798,41.931225055834744],[-87.77011783311833,41.931222617759545],[-87.77013312270414,41.93122240955275],[-87.77040525482478,41.93121870345973],[-87.77090581504075,41.931212100513115],[-87.77110459246026,41.931208764759624],[-87.77120202925143,41.93120712959602],[-87.7713861394062,41.931203941908215],[-87.77179213324554,41.931198216907354],[-87.77219596198108,41.931192123140185],[-87.77232066280371,41.93119101543457],[-87.77255074000607,41.93118897170236],[-87.77278707838029,41.93118507635949],[-87.77312607074249,41.9311799800035],[-87.77329573011623,41.93117767922655],[-87.77353327237138,41.931174201225645],[-87.77364805116736,41.93117252037938],[-87.77390310603286,41.931168785045536],[-87.77408864463494,41.93116612138658],[-87.77444546282834,41.931160778648746],[-87.77474895208624,41.93115613420947],[-87.77503715005871,41.93115172306848],[-87.77503717100785,41.93115172289592],[-87.77528762314077,41.93114912291407],[-87.7756423195557,41.93114264101097],[-87.77596591921333,41.93113946314423],[-87.77620141215331,41.931137149966844],[-87.77649406351718,41.93113187368489],[-87.77687782391672,41.93112599542996],[-87.77718097757659,41.93112220956208],[-87.7773844441969,41.93111966802738],[-87.77775585572236,41.93111386425606],[-87.77817940668649,41.93110910721408],[-87.77839422834182,41.931105417916676],[-87.77883777480304,41.93109779900273],[-87.7792767406602,41.931091109067616],[-87.77939303393191,41.931089310137295],[-87.77961165852827,41.93108670715739],[-87.77996716824843,41.93108247376474],[-87.78021588547793,41.931079175199784],[-87.78027983818195,41.93107832711462],[-87.78048327368901,41.93107565699667],[-87.78082867855413,41.93107068842032],[-87.7810936235077,41.931066876304435],[-87.78135333752279,41.93106258179089],[-87.7816862657658,41.931057376121515],[-87.78204268981325,41.93105281275937],[-87.78244535140414,41.93104765620165],[-87.78261225432466,41.93104530098938],[-87.78294572751128,41.93104080778055],[-87.78325839849596,41.931036751266745],[-87.78351880044035,41.931033372271],[-87.78372172619618,41.931030117685744],[-87.78394413226813,41.93102654431813],[-87.7841665067495,41.93102236663847],[-87.78447404563353,41.931018755647045],[-87.78473949982586,41.93101563815283],[-87.78492441087711,41.93101320096407],[-87.78508202097886,41.93101101676561],[-87.78531158818848,41.931007255952686]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13994263.0972","perimeter":"0.0","tract_cent":"1136041.08282752","census_t_1":"17031191300","tract_numa":"56","tract_comm":"19","objectid":"824","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1914006.86706984","census_tra":"191300","tract_ce_3":"41.9202069","tract_crea":"","tract_ce_2":"-87.77559064","shape_len":"15882.1874363"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76574082205786,41.916868211041496],[-87.76573698190874,41.91671805202587],[-87.76585482948468,41.916720009906676],[-87.76636017646841,41.91672090444352],[-87.76639584685023,41.91672096750395],[-87.76718038064112,41.916710430843786],[-87.76798835473969,41.916697946606654],[-87.76862682777396,41.916688739017026],[-87.769262079469,41.91668019865962],[-87.76991478874159,41.91667105384056],[-87.77026113294903,41.91666520635863],[-87.77051928217743,41.91666098320984],[-87.7712229774213,41.91665105203366],[-87.77239519911952,41.916633458451855],[-87.77330650986232,41.91662075521875],[-87.77399504902446,41.91661073313227],[-87.77492795916893,41.91659640709487],[-87.77547078075257,41.91658872698148],[-87.77583697581169,41.91658332986494],[-87.77654710263981,41.91657305425282],[-87.7775264051317,41.91655790268337],[-87.77839775279375,41.91654565165225],[-87.77872571711683,41.91654071862056],[-87.77944779270864,41.916529453690664],[-87.77958513270052,41.91652737185787],[-87.78027782650736,41.91651684557522],[-87.78035635416641,41.91651565214965],[-87.78109725576138,41.91650481053511],[-87.78175456921952,41.91649390567635],[-87.78239349499688,41.91648496700718],[-87.78278346461842,41.91647922245079],[-87.78325428123061,41.91647228568839],[-87.78398415993833,41.91646137236357],[-87.78439251029532,41.91645474979476],[-87.7848986816952,41.91644859247936],[-87.78507090489343,41.91644907216796],[-87.78522633401991,41.916451412432686],[-87.78522633741674,41.91645153072542],[-87.78523159772735,41.91663810698264],[-87.7852366502624,41.91677506867764],[-87.78524142757126,41.91695961380602],[-87.78524471234296,41.91708671497939],[-87.78524833060949,41.91721348843359],[-87.78525270691732,41.91736331707068],[-87.78525776920164,41.917536035890784],[-87.78526316979386,41.91772074862311],[-87.78526638328185,41.917830423553056],[-87.78527145654922,41.917997571616226],[-87.78527538258886,41.91810126751184],[-87.78527737919774,41.91822755982255],[-87.78528007919547,41.91839832579553],[-87.78528440518059,41.918519696457494],[-87.7852880740732,41.918623391116036],[-87.78529565839384,41.9188363249556],[-87.78530036815496,41.91896867437338],[-87.78530546270709,41.91912476324334],[-87.78531340582674,41.91939025084308],[-87.78531726776757,41.91952292550921],[-87.78532130039903,41.91966141876106],[-87.78532578355613,41.91981163203482],[-87.78533204697288,41.920039875911826],[-87.78533544746512,41.9201637906898],[-87.78533879979508,41.920261556263654],[-87.7853445721904,41.92042862526321],[-87.78534889076217,41.92055518244484],[-87.78535261888588,41.920664859774895],[-87.78535636239606,41.92078562387592],[-87.78535988170411,41.92090682598158],[-87.78536330382524,41.921022209847905],[-87.78536878121224,41.92120659352305],[-87.78537208056969,41.92131915023801],[-87.7853773103043,41.92149812658393],[-87.78538175978005,41.92164809266641],[-87.7853884550417,41.921862833339596],[-87.78539358097284,41.92202723730068],[-87.78539530945001,41.92210540402046],[-87.78539585956113,41.92213026664303],[-87.78540053273858,41.92233994826171],[-87.78540518045327,41.92244957505997],[-87.78541142884711,41.922630879222616],[-87.78541948687129,41.922864680932854],[-87.78542253850115,41.92297962391359],[-87.78542388050201,41.92302973998544],[-87.78542726313889,41.92315835081505],[-87.78542888301702,41.92321859442533],[-87.78543272675056,41.92336155978097],[-87.78543538695864,41.923462944106596],[-87.78544267532278,41.92367797540949],[-87.7852033446693,41.923680991231585],[-87.78482357872804,41.92368913928402],[-87.78472379514592,41.92369126959595],[-87.78447625567009,41.923693434584465],[-87.7842227921466,41.923696567139686],[-87.78399112055226,41.92369942935637],[-87.78381196697883,41.9237013989368],[-87.78365866737899,41.92370513827112],[-87.78352499544046,41.92370825788529],[-87.78337115831253,41.923710402607796],[-87.78324433261147,41.92371218257038],[-87.78301379283556,41.923715969475516],[-87.78277354999025,41.92371991521081],[-87.78261974791253,41.923722251190696],[-87.78246546814755,41.923724584672826],[-87.7822938421448,41.923727164011815],[-87.7821666847483,41.92372905096138],[-87.78197646294933,41.923731897037904],[-87.78179432940868,41.92373426079537],[-87.7814421898724,41.92373882564703],[-87.78126130146377,41.923741633346054],[-87.78108890340951,41.92374428949867],[-87.78081742338054,41.923748609165294],[-87.78057737106789,41.923751823177255],[-87.78038321907678,41.923754422392754],[-87.78028402662268,41.923756112615564],[-87.77991364707083,41.92376231378949],[-87.77971372290537,41.92376530172418],[-87.77935617259499,41.92377084177106],[-87.7790568728258,41.92377552497186],[-87.77868609732467,41.923780704634396],[-87.77843891347099,41.92378417555443],[-87.77814729835754,41.923788976396295],[-87.7778203891178,41.92379435712103],[-87.77742370084917,41.92380034065117],[-87.7771037866573,41.92380493843913],[-87.77693182926996,41.923807420341724],[-87.7766639181249,41.92381128644966],[-87.77604105928073,41.92382127276232],[-87.7757155359821,41.923826587260926],[-87.77450110595028,41.9238464054105],[-87.77413388809465,41.92385239558754],[-87.77358930759247,41.923861240467545],[-87.77328558035778,41.9238660750192],[-87.77282253114899,41.923873443981286],[-87.77235325270598,41.9238811412343],[-87.77206911254149,41.92388512369644],[-87.77188288182651,41.923887733535224],[-87.77131635665032,41.92389733848247],[-87.77095174328576,41.923903648736584],[-87.77085377178949,41.92390534118243],[-87.77045052397874,41.92391230662756],[-87.77019738188837,41.92391628383165],[-87.76997926364704,41.92391971031251],[-87.76963775776989,41.923924690414026],[-87.76936115160356,41.923928723193],[-87.76871831266521,41.923937391621386],[-87.76855264919806,41.92394021080186],[-87.76842137679155,41.92394244455814],[-87.76795141601755,41.92395044016418],[-87.76753249373681,41.923956471858155],[-87.76720637298159,41.92396225407042],[-87.76676584942733,41.92397006284527],[-87.76624453240785,41.92397832905598],[-87.7659905791425,41.9239811093916],[-87.76598439989485,41.92382976118672],[-87.76597369317544,41.92352433034212],[-87.76596492300031,41.923274150408325],[-87.76595730548875,41.92308876744173],[-87.76594954728013,41.92288505231302],[-87.76593729421559,41.92254374667826],[-87.76592598025688,41.92225302183884],[-87.76592230838506,41.92215969737232],[-87.76591134450894,41.92188102388659],[-87.7658982148883,41.92150908823629],[-87.76588641835251,41.921202362087456],[-87.7658734395808,41.92089637102121],[-87.7658663568278,41.920701405289],[-87.76585510364589,41.92041420973314],[-87.76585335147765,41.920369486835206],[-87.7657902931402,41.91876013167868],[-87.7657871721483,41.91868047697639],[-87.7657744877807,41.91818453087871],[-87.76574118149026,41.91688225698178],[-87.76574082205786,41.916868211041496]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6089395.67934","perimeter":"0.0","tract_cent":"1120995.67644534","census_t_1":"17031170600","tract_numa":"28","tract_comm":"17","objectid":"825","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921596.99196281","census_tra":"170600","tract_ce_3":"41.94129044","tract_crea":"","tract_ce_2":"-87.83070798","shape_len":"9943.28282284"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.83457986409563,41.93757535473681],[-87.83461770563768,41.937574598694816],[-87.8348101712996,41.937576422433644],[-87.83479485589307,41.93768826496167],[-87.83479499061872,41.93774647059937],[-87.83479964414586,41.93785683616717],[-87.83480390795424,41.9379558938262],[-87.83480821252822,41.93805448514181],[-87.83481312257197,41.93816490670152],[-87.83482108598169,41.93833637311619],[-87.83482542161042,41.93845925096462],[-87.83483142114541,41.93861860680449],[-87.83483773480484,41.9387895446389],[-87.8348444408143,41.93896202093809],[-87.8348517020068,41.939134005681375],[-87.83485607087262,41.9392482393436],[-87.83485970254311,41.93934320533547],[-87.83486467275098,41.93944125067002],[-87.83486903611744,41.93952754808071],[-87.83487363582007,41.93962597599492],[-87.83487878212419,41.93974861035313],[-87.834883711127,41.93987083213127],[-87.83488861571742,41.94000567723944],[-87.83489501047082,41.940166187324095],[-87.83489985080061,41.9402789414036],[-87.83490238387712,41.94033795297762],[-87.83490636269937,41.94043588422089],[-87.83492570860568,41.940731264433055],[-87.83493979849959,41.94095188887168],[-87.83494659641197,41.94107485967515],[-87.83495283747001,41.94119854155708],[-87.83495729272782,41.941296666947906],[-87.83496224162802,41.94140692395483],[-87.83496714310003,41.94150439266455],[-87.8349744614776,41.94168798564497],[-87.83497991668055,41.94182291542376],[-87.83498702848946,41.94201888367646],[-87.83499197128592,41.942129936741516],[-87.83500003835316,41.94230236395543],[-87.83500488760426,41.94242543576375],[-87.83501205572647,41.94260946741087],[-87.83501826186608,41.94277066265429],[-87.83502308057736,41.942884541167444],[-87.83502754456283,41.94299002136082],[-87.83503389066658,41.94313801748121],[-87.83503790166438,41.943236579983974],[-87.8350424092614,41.943346944804375],[-87.83504726148898,41.9434696052425],[-87.83505150803518,41.94358040800103],[-87.83505856633349,41.943764411689806],[-87.83505946933322,41.943787466816104],[-87.83505991439988,41.9437989944885],[-87.83506637456298,41.94396068475902],[-87.8350698855741,41.94404793887442],[-87.83507461772948,41.94416719593793],[-87.83508050391448,41.94430347219432],[-87.83508173638718,41.94431645744682],[-87.83509392247291,41.944444857947936],[-87.83511050768419,41.94459503895348],[-87.83511636562994,41.94464048154858],[-87.83512085899737,41.94466766858592],[-87.83512729277638,41.94469113217315],[-87.8351402483535,41.944722033462405],[-87.83515653920432,41.944754184122246],[-87.83517826886445,41.944792937653375],[-87.83481199264043,41.944803017698355],[-87.83461051683035,41.94480826234386],[-87.83443558255631,41.94481332010306],[-87.83434021192247,41.94481588780472],[-87.83430586935694,41.944817229481686],[-87.83415181986676,41.944821444543145],[-87.83395248049447,41.944826621032874],[-87.833749898372,41.94483188076102],[-87.8335897442323,41.94483639781234],[-87.83344716532325,41.94484038743199],[-87.83316869862364,41.94484812086607],[-87.83299134168647,41.94485267191041],[-87.83273702968881,41.94485886549194],[-87.83253640950721,41.94486375100891],[-87.83230978361775,41.94486995216211],[-87.83218359993545,41.94487373733331],[-87.83194766723527,41.94488077530003],[-87.83182078593029,41.9448845021415],[-87.83168953146141,41.94488804508245],[-87.83152279220303,41.944893262362974],[-87.8313263082451,41.94489941026903],[-87.83111637214957,41.944905380173275],[-87.83096478499303,41.94490960172842],[-87.83065300540798,41.9449185279656],[-87.83046866043564,41.94492353847762],[-87.83029533148341,41.94492864470793],[-87.83003723976785,41.944936247409665],[-87.82984510180253,41.94494127764369],[-87.82966833080417,41.94494604566133],[-87.82953303112173,41.94494978792904],[-87.82906214257221,41.94496205875757],[-87.82880841461755,41.9449686696346],[-87.82859858123328,41.94497554097928],[-87.8283207742336,41.94498337532235],[-87.82807679159217,41.94499034248329],[-87.82783719155742,41.944996196154584],[-87.8276199455446,41.94500150344464],[-87.82738534230748,41.945007687181075],[-87.82721647546376,41.94501226671572],[-87.82685377677821,41.94502219306673],[-87.82666056978543,41.94502740480165],[-87.82662306651376,41.94493130180566],[-87.82660082325798,41.94485760357397],[-87.82659513077336,41.94477341312607],[-87.82658365039822,41.94473313214484],[-87.82651536921223,41.9445823040767],[-87.82663501689277,41.94453007529412],[-87.82655406493609,41.94305688522559],[-87.82654829476519,41.94296860496377],[-87.82652685787558,41.942463627982235],[-87.82651035056217,41.94208811778185],[-87.82649929013186,41.941818503784326],[-87.82649411056134,41.941688157693385],[-87.82648745806259,41.94153494570539],[-87.82647940920396,41.941358483964834],[-87.82647416067482,41.94125077741328],[-87.82646899144288,41.94115654425611],[-87.82646192331909,41.94102770023316],[-87.82645198441845,41.94076967176284],[-87.82644604970737,41.94064187444187],[-87.82643760669202,41.94044090499994],[-87.82643018413765,41.94026433621874],[-87.82642104950388,41.94005329240186],[-87.82641346114846,41.93987441772639],[-87.82640742102912,41.93973210296515],[-87.82640149408984,41.93960334517443],[-87.82639752803709,41.93949152791065],[-87.82639409742211,41.939421488082395],[-87.82638865584649,41.93931039206877],[-87.82638635981905,41.93926351549461],[-87.82637662579889,41.9390260423705],[-87.82636735120253,41.938814147176366],[-87.82635631099352,41.938556031409995],[-87.82634430358725,41.938308668452805],[-87.82634066831703,41.93823515378902],[-87.82633619351157,41.93814466539596],[-87.8263297341919,41.938004269695725],[-87.82632457133997,41.937885806085944],[-87.82631660978491,41.93774946520044],[-87.82656882265087,41.93774865796696],[-87.82672637450808,41.93774559364371],[-87.82688345038673,41.93774238979344],[-87.82705714161783,41.9377388199165],[-87.82727641496567,41.937734353271175],[-87.82752590385269,41.937729415040565],[-87.82773344975674,41.93772530721843],[-87.82790556335382,41.93772137236132],[-87.82811075588526,41.937717445867825],[-87.82818942033607,41.9377160354005],[-87.82856679583004,41.93770863910035],[-87.82876423179198,41.93770484171815],[-87.82888270806059,41.9377025631904],[-87.8290394168127,41.937699327060585],[-87.8292128867987,41.93769572605693],[-87.82940212812278,41.93769172667001],[-87.8296381663743,41.93768667020393],[-87.83000539275855,41.937679773496654],[-87.83022006784064,41.937675719873255],[-87.83036156046298,41.93767241526325],[-87.83053576389894,41.93766914395753],[-87.83069305793235,41.93766610132698],[-87.83080304305234,41.93766397546682],[-87.8310392599041,41.93765941086252],[-87.83124155171166,41.937655026458245],[-87.8313661911862,41.93765231348389],[-87.83141686231585,41.937651210634996],[-87.83159032369016,41.937648675426445],[-87.83173269451906,41.93764575715593],[-87.83190624251267,41.93764168563029],[-87.8321380865088,41.93763698962459],[-87.83226175442049,41.937634475058566],[-87.83231475479397,41.93763339734593],[-87.83243837745218,41.93763102783619],[-87.83256743963213,41.93762857242262],[-87.83272453986665,41.93762678768453],[-87.83282669417315,41.937624927607885],[-87.8328513963125,41.937624486988305],[-87.83292958573222,41.9376227418951],[-87.83321072730043,41.9376168315645],[-87.83344925858863,41.93759819447293],[-87.83363221442887,41.93759424362339],[-87.83375429719287,41.93759161050727],[-87.83387361815785,41.93758903659744],[-87.83414130464679,41.9375834496492],[-87.83426800245141,41.93758135004508],[-87.8343157612378,41.937580558448836],[-87.83434276509436,41.937580043813],[-87.83439663202198,41.93757901665472],[-87.83457986409563,41.93757535473681]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11355483.7034","perimeter":"0.0","tract_cent":"1129820.20954906","census_t_1":"17031180200","tract_numa":"42","tract_comm":"18","objectid":"826","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1916528.53864023","census_tra":"180200","tract_ce_3":"41.92723543","tract_crea":"","tract_ce_2":"-87.7983899","shape_len":"13796.8953477"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.79063595803066,41.93094214515101],[-87.79062897301584,41.9306559489688],[-87.79060638681742,41.92990632511767],[-87.7905859316195,41.92923046211481],[-87.79058194629489,41.929104551776646],[-87.79055733181822,41.92832335894269],[-87.79052950924006,41.92743306825188],[-87.79052629627674,41.927324312685634],[-87.79050299112251,41.926551359029574],[-87.79046882621874,41.92548815099316],[-87.79044699581668,41.92481228094987],[-87.7904276776025,41.92421943569712],[-87.79041216959502,41.923773081751314],[-87.79039250458779,41.923636337566066],[-87.79131231855908,41.92362983196143],[-87.79145920250609,41.92362860426617],[-87.7916354476091,41.92362724075373],[-87.79182330512855,41.923625793975255],[-87.79203409351682,41.923624180843206],[-87.79240830300927,41.92362120311546],[-87.79257341326995,41.923619888890386],[-87.79279463613656,41.923618433820664],[-87.7929600388103,41.92361734571755],[-87.79325285335068,41.92361463445809],[-87.79340514054174,41.92361321014915],[-87.79356940689264,41.923611787065944],[-87.79381249590865,41.92361000801441],[-87.79401858057624,41.923608499488516],[-87.79424987340309,41.923606805981635],[-87.7943788227381,41.92360587454132],[-87.79453136387806,41.92360483412297],[-87.79476603817456,41.92360308107482],[-87.79489495214044,41.92360198423504],[-87.79523766673242,41.92359897280927],[-87.79548149731058,41.923596829814024],[-87.79564558066649,41.923595265691574],[-87.79591502271312,41.92359282238563],[-87.79606760263482,41.923591533126846],[-87.79632520943865,41.92358936278779],[-87.79646536786161,41.92358832335844],[-87.79669739571055,41.923586602287386],[-87.79677989628536,41.92358589013676],[-87.7970743585356,41.92358380031992],[-87.79723693254368,41.92358264619272],[-87.79735393917329,41.923581737978395],[-87.79767636435824,41.92357981720664],[-87.7977597813962,41.923579320207516],[-87.7979611613769,41.923577847150035],[-87.79813020667868,41.92357616567475],[-87.7983606221548,41.92357394635141],[-87.79850629473913,41.92357253934273],[-87.79862896274692,41.923571326890674],[-87.798906242143,41.92356897014115],[-87.79936532970369,41.92356506646088],[-87.7996269738252,41.92356348377705],[-87.79983408865424,41.92356170203811],[-87.800056859372,41.92355966332948],[-87.8003412941926,41.92355708716967],[-87.80050247381308,41.92355563956448],[-87.80073695168814,41.923553960392546],[-87.80096289113528,41.923552341867705],[-87.8012543772938,41.92355018033102],[-87.80150981426712,41.92354823528526],[-87.80161998451935,41.92354751059802],[-87.80194527390594,41.923545750815485],[-87.80211445968568,41.92354483223458],[-87.8022757444859,41.92354398663206],[-87.80239837134211,41.92354329136645],[-87.80257397575532,41.9235421224246],[-87.80280950722573,41.92354055393379],[-87.80289362288549,41.92354003694849],[-87.80295502839854,41.92353966198511],[-87.80306262583733,41.9235390063565],[-87.80313972261389,41.923538539103575],[-87.80320891841373,41.9235381450908],[-87.80326968399983,41.92354405129637],[-87.80335086487767,41.923556308550104],[-87.8034199309415,41.923567110278626],[-87.80352833917155,41.923583938714394],[-87.80358290995915,41.9235924506337],[-87.80365216019261,41.923603253072244],[-87.80371997922803,41.92361382932919],[-87.8037980738275,41.92362601714693],[-87.8038850497514,41.92363956309481],[-87.80394552902504,41.92364900768208],[-87.80411504052574,41.92367544764988],[-87.80419317165531,41.92368763536728],[-87.8042990569241,41.92370415507184],[-87.80439934642895,41.9237198014832],[-87.8047978200604,41.923781967750145],[-87.80489661483507,41.92379718643057],[-87.80502788884597,41.923817384316564],[-87.8051576949644,41.92383735576178],[-87.8052638669977,41.92385365086876],[-87.80533172444979,41.9238640891389],[-87.80571222610553,41.92392261635791],[-87.80581986581433,41.92393916467576],[-87.80590691745175,41.92395254478615],[-87.80625508078126,41.92400689614618],[-87.8062607895531,41.92418388964385],[-87.80626740188038,41.92438504503142],[-87.80626987161953,41.92449581301843],[-87.80627259346045,41.92463827886111],[-87.8062796731619,41.924787076161984],[-87.80628551920769,41.92490735522905],[-87.80629136561012,41.92502741475645],[-87.80629635767183,41.925130730547146],[-87.80630343150334,41.92532052662544],[-87.80631186052896,41.92554649788684],[-87.80631506564366,41.925643116127375],[-87.8063150992318,41.92564412506098],[-87.80631882064863,41.92575896105345],[-87.80632328394142,41.925926626075935],[-87.80632490185947,41.925980035966056],[-87.80633015192903,41.92614533577272],[-87.80633295749112,41.9262336678843],[-87.80633885392757,41.926419067750984],[-87.8063434234926,41.926533687807144],[-87.80634749843074,41.92663683443135],[-87.80635180757237,41.92675175597629],[-87.8063555021902,41.92686102048543],[-87.80635881636486,41.92695851049667],[-87.80636489368773,41.92713087579921],[-87.8063713269972,41.92731361647036],[-87.80637459169557,41.927417034058735],[-87.8063782856151,41.92752643603737],[-87.80638177940075,41.92762425644313],[-87.80638657038614,41.92775213212244],[-87.80639184201463,41.927892962771345],[-87.80640433767725,41.92823670777749],[-87.8064093812763,41.92837399703623],[-87.80641393808013,41.92849457197153],[-87.80641786637177,41.92859774587663],[-87.80642123032973,41.92868911617832],[-87.806422200917,41.92874082219744],[-87.80642327068425,41.9287719022165],[-87.80642905209324,41.928939892624975],[-87.80643543442848,41.92912475703549],[-87.8064358481016,41.92913673996608],[-87.80643763122376,41.92918795519949],[-87.80644275625056,41.92933764872564],[-87.80644862683502,41.929507942483376],[-87.80644893085643,41.929516772064716],[-87.80644907619539,41.929520992807745],[-87.80645286039386,41.929623781565674],[-87.80645668072867,41.929726735415684],[-87.80646091717962,41.92984160085405],[-87.80646401378799,41.929938677905085],[-87.80646420342757,41.929944392809496],[-87.80646439630108,41.92995020597214],[-87.80646580225691,41.93002501983884],[-87.80647031883734,41.93019520994219],[-87.80647031881024,41.93019521323514],[-87.80647507381539,41.93030950201078],[-87.80647708671316,41.93035517521922],[-87.80647996091291,41.93041229554013],[-87.80649498303814,41.930815239508625],[-87.80628327766067,41.930791523216705],[-87.80590088926186,41.930765233935965],[-87.80576204953127,41.93076053462927],[-87.8055034116657,41.93076390138517],[-87.80527233316651,41.93076675874388],[-87.8049501566695,41.930770741733426],[-87.80485706098492,41.930771685676106],[-87.80466065144506,41.93077377299379],[-87.80454348198631,41.930775016921565],[-87.8043502298712,41.930777474724515],[-87.80405168579819,41.93078114227768],[-87.8036760917704,41.93078575551843],[-87.80344656009443,41.93078912566649],[-87.80313764823472,41.93079240874894],[-87.80282569641382,41.9307966190484],[-87.80230751829824,41.93080361091792],[-87.80212322999174,41.93080643573533],[-87.80182655240978,41.93081016705931],[-87.80134611369367,41.93081518686024],[-87.80097800290463,41.93081840635573],[-87.80053398772375,41.930822288392456],[-87.79988892453873,41.93082983114942],[-87.79970302418079,41.93083204086219],[-87.79944324856358,41.93083511398073],[-87.79914284335409,41.930838820213694],[-87.79851745440808,41.930846668254574],[-87.79791481702233,41.93085230861755],[-87.79769892894312,41.93085432831971],[-87.79758859057557,41.93085611320548],[-87.79745862372975,41.930858278386914],[-87.7973023423064,41.930860622167444],[-87.79720589946463,41.93086192847191],[-87.79705388376568,41.93086399024123],[-87.79693105040953,41.930865721623924],[-87.7966916221672,41.93086789400163],[-87.79655572978143,41.930869126791954],[-87.79640404433118,41.930871244129264],[-87.79629653330383,41.93087326602127],[-87.79620967663398,41.930875192338235],[-87.79607534371569,41.93087657839682],[-87.79598004700644,41.93087697191327],[-87.79587186895553,41.930879648900756],[-87.79572485907384,41.930880771861894],[-87.79559181552689,41.93088174050617],[-87.79546429174081,41.930883814981584],[-87.79522768236598,41.93088766353202],[-87.79511946544815,41.93089058660892],[-87.79500967515654,41.93089273382331],[-87.7948534360431,41.93089435301098],[-87.79472954595285,41.930895042508354],[-87.79455684963398,41.9308959337112],[-87.79441942857159,41.9308974018594],[-87.79424452439301,41.930898936179354],[-87.79408725642729,41.93090031541116],[-87.79397140867177,41.93090166452574],[-87.79386989497037,41.93090283443854],[-87.79376893226961,41.930904033744284],[-87.79363202400016,41.93090565703646],[-87.79352385604719,41.930907163092115],[-87.79337084633922,41.9309094074075],[-87.7932927077864,41.930910329708915],[-87.79302758793321,41.93091320538158],[-87.79291682980731,41.93091440641653],[-87.79282997903006,41.93091561670495],[-87.79276477669318,41.93091651721507],[-87.79267050152106,41.9309178296404],[-87.79255494538823,41.930919453396086],[-87.79243957415329,41.930920940695074],[-87.79225190807253,41.930923294678415],[-87.79215767056084,41.93092449709097],[-87.79204895221349,41.93092585070012],[-87.79197639966128,41.93092677099661],[-87.79180049656175,41.930928730471514],[-87.79156792013397,41.93093132074567],[-87.79141642120359,41.9309330756236],[-87.79128623928523,41.93093460162997],[-87.79114216961729,41.930935677718665],[-87.79096434932272,41.9309384053968],[-87.79076933947351,41.930940008767976],[-87.79063595803066,41.93094214515101]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7068154.61387","perimeter":"0.0","tract_cent":"1150382.17703396","census_t_1":"17031160900","tract_numa":"53","tract_comm":"16","objectid":"827","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924990.04986003","census_tra":"160900","tract_ce_3":"41.95007763","tract_crea":"","tract_ce_2":"-87.72261087","shape_len":"10647.9104613"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71781165219596,41.95372994795405],[-87.71780206834798,41.95340189994576],[-87.71779880988456,41.95328989084567],[-87.71778329794267,41.952756690925675],[-87.71777567361706,41.95249460368905],[-87.71776875179982,41.9522566703884],[-87.71776046799674,41.95195821655861],[-87.71775119854246,41.951624281871176],[-87.71773844739197,41.951149985794586],[-87.71772765828374,41.95075451404784],[-87.71771253865275,41.95014828172437],[-87.71770936052097,41.950078762770474],[-87.71770073295673,41.94969027284559],[-87.71769485830517,41.949490874099695],[-87.71769006821428,41.94932775969101],[-87.71767675609195,41.948801045892424],[-87.71767333555913,41.94865602318979],[-87.71766455265863,41.9483259997763],[-87.71765162888656,41.947840408125295],[-87.71764417997258,41.9475677851809],[-87.71764166943099,41.947481929338174],[-87.71763939511044,41.9474041496176],[-87.71763271043223,41.94726226220492],[-87.71762968811343,41.94719811640264],[-87.71763175493582,41.947175670190695],[-87.71763564030381,41.94713346713931],[-87.71764445182343,41.94710547206647],[-87.71765243556455,41.947080107825016],[-87.71761020367964,41.947018773410086],[-87.717624686747,41.94689844857647],[-87.71758805291532,41.94650391283713],[-87.71758806284238,41.94650391261595],[-87.71764787187686,41.946503122224286],[-87.7177551943254,41.94650170346876],[-87.71795608962388,41.94649904360684],[-87.71815989255126,41.94649634491151],[-87.7183745944107,41.9464935039036],[-87.7184523676533,41.94649247451635],[-87.71845245000246,41.946492473585266],[-87.7185209433492,41.94649156706397],[-87.7187635348596,41.94648835628893],[-87.71891070214178,41.9464864079652],[-87.71897689627671,41.94648553167738],[-87.71917584300235,41.94648289767321],[-87.7192892909743,41.946481395541625],[-87.71940705485726,41.94647981264456],[-87.71976774914657,41.946474934019385],[-87.72006134544851,41.94647096233405],[-87.7208816195527,41.94645986185112],[-87.72164864265942,41.94645116279561],[-87.72215347497252,41.946445124647084],[-87.72250636133653,41.94643942994218],[-87.72308060616648,41.94643016068616],[-87.72310145403817,41.94642992846733],[-87.7232124011475,41.94642869319305],[-87.72363812607627,41.946422836776435],[-87.72382543767192,41.9464202597102],[-87.72405065273807,41.946417160661255],[-87.7243616748661,41.94641287994829],[-87.72458983529822,41.94640924854129],[-87.72495409488435,41.94640509782019],[-87.72548174189507,41.94639908304937],[-87.72562448831829,41.94639785270792],[-87.72598352253235,41.9463930393434],[-87.72616811208837,41.94639056425201],[-87.72671056006389,41.9463832889631],[-87.72679185156655,41.946381605944374],[-87.72689218500814,41.946379528391965],[-87.72740107717131,41.94637316973224],[-87.72741004438382,41.94665912663404],[-87.72742704191957,41.94728004002978],[-87.727443037316,41.94786434131519],[-87.7274518214156,41.948187061169115],[-87.72746485520352,41.948665904885246],[-87.72747913353884,41.94910436877378],[-87.72748564513833,41.94930431927587],[-87.72749378037702,41.94957101766946],[-87.72750815808011,41.95003217667441],[-87.72751123646336,41.95013090235534],[-87.7275131651283,41.950194825314064],[-87.72752641548587,41.950589101789326],[-87.72752892505474,41.95073575272913],[-87.72753182999281,41.95090552411851],[-87.72753467186972,41.95107159047961],[-87.7275365330205,41.95114948085212],[-87.72753670962834,41.95115688018803],[-87.72753909436464,41.95122940289307],[-87.7275468974452,41.95146673277418],[-87.72754978391991,41.95155452199497],[-87.72755456363933,41.951699888520835],[-87.72755676122125,41.95184055567197],[-87.72755760678388,41.95189467357979],[-87.7275576067683,41.95189467522623],[-87.72756335450272,41.9519672417357],[-87.72756740743094,41.95209052226911],[-87.72757239126774,41.95224209864346],[-87.72757733906614,41.95239259113317],[-87.72758099460574,41.95250376126275],[-87.72758305541876,41.95256643572505],[-87.72758816923593,41.95272195675709],[-87.72759923883221,41.95305862076469],[-87.72760832037505,41.953314758746586],[-87.72761716362436,41.953647788060984],[-87.72639470560547,41.95366565818966],[-87.72514466166355,41.95368391828845],[-87.72394161202176,41.953704583248154],[-87.72271054545189,41.95372571666501],[-87.72148651317988,41.95373869331719],[-87.72025846769648,41.95375359238625],[-87.71949424718004,41.95373815369766],[-87.7192641435852,41.953733504188726],[-87.71908588333463,41.95372990217345],[-87.71781330324485,41.95378645686614],[-87.71781165219596,41.95372994795405]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"15075663.2078","perimeter":"0.0","tract_cent":"1136877.59221025","census_t_1":"17031150400","tract_numa":"66","tract_comm":"15","objectid":"828","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1928838.75812333","census_tra":"150400","tract_ce_3":"41.9608922","tract_crea":"","tract_ce_2":"-87.77216035","shape_len":"16965.5226345"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77657062605353,41.95306291489472],[-87.77677480327607,41.95305614502376],[-87.77678252564688,41.95325746444841],[-87.77679255688712,41.953558416432905],[-87.77680001009331,41.95378202415834],[-87.77680194210876,41.95383999082682],[-87.77680482237467,41.95392727114596],[-87.77681429966493,41.9542112885942],[-87.7768281068148,41.95462726892676],[-87.77683733416653,41.95487740695803],[-87.77684110640982,41.954979689273095],[-87.77685393785164,41.95535153782915],[-87.77686291514298,41.955612775790705],[-87.7768731276448,41.955909529875164],[-87.77688531017998,41.95626298898054],[-87.77689467179749,41.9565350135271],[-87.7769002554624,41.956702102918904],[-87.77690482343888,41.95683879245727],[-87.77691546527807,41.957162304651504],[-87.77691806525526,41.957241515293454],[-87.77693174249886,41.9576579338416],[-87.77694789196951,41.95815136699652],[-87.77695928261694,41.95852785211505],[-87.77696936610131,41.95886112486937],[-87.7769908538757,41.95949327635218],[-87.7770050760978,41.95989468542517],[-87.77701243268645,41.96010232192574],[-87.77701935904011,41.96035152128744],[-87.7770226539074,41.960470068609354],[-87.77703272982015,41.960710812378515],[-87.77703585453912,41.960805809403],[-87.77705102007262,41.96126685113079],[-87.77706874942938,41.96177327174372],[-87.77707992049791,41.96214541365877],[-87.77708228701192,41.96222423890822],[-87.77709041515023,41.96249502228816],[-87.77710725864802,41.96297657593425],[-87.77712794687626,41.96354788389354],[-87.77713156990694,41.963647927967855],[-87.77714189326963,41.964003161306245],[-87.77714467447093,41.964103146409755],[-87.77714906223184,41.9642747357737],[-87.77715295419833,41.964458561639134],[-87.77715563034896,41.96458491809703],[-87.77715803395795,41.96466714768572],[-87.77716131260631,41.96477931866212],[-87.7771653010864,41.96491577961877],[-87.77717155607566,41.96512977633985],[-87.77718129885992,41.965372548731175],[-87.77719120404157,41.96561872526858],[-87.77719818993447,41.96582932240717],[-87.77720276953312,41.9659673783924],[-87.77720869345806,41.96611913449734],[-87.7772152314049,41.96628628831925],[-87.77722331318428,41.96649291163543],[-87.77723056176434,41.96666816513193],[-87.77723360671408,41.96674177932909],[-87.77724005385964,41.966897654262056],[-87.7772508789376,41.9671454539952],[-87.77725234856479,41.96720127834816],[-87.77725646212672,41.96735755359625],[-87.77726831165553,41.96764946760316],[-87.7776658055258,41.96801671897824],[-87.77823441653935,41.96853291984186],[-87.77761462935618,41.96854023112246],[-87.77731792258263,41.968543953627716],[-87.77718572873803,41.9685481156851],[-87.77711274478612,41.96855421731044],[-87.77702532402374,41.96856152608908],[-87.77661808994334,41.96856847071828],[-87.77610918413245,41.968575112561524],[-87.7759004065291,41.968577944769464],[-87.7753970886384,41.96858477139833],[-87.774803600258,41.96859228614023],[-87.77442131545602,41.968597121542956],[-87.77393918450258,41.96860322550237],[-87.7735331050653,41.968608381077026],[-87.77300757803667,41.96861503788996],[-87.77283032532888,41.96861707683472],[-87.77251515422137,41.96862070144228],[-87.77209881320225,41.96862613112006],[-87.77148939815406,41.96863407226626],[-87.77098828815357,41.96864061979001],[-87.77051487039073,41.96864680693036],[-87.77019748864723,41.968650600668816],[-87.76999717928969,41.968652994418115],[-87.76980123375247,41.96865587465616],[-87.76938970395452,41.96866192185033],[-87.76891844909588,41.968668826525594],[-87.7684569027053,41.96867563982499],[-87.76820678138215,41.9686793226538],[-87.76813701984908,41.96868034968886],[-87.76791006422674,41.9686836741867],[-87.76750466639137,41.96868961145454],[-87.76750148581608,41.96860216500666],[-87.76749650629999,41.968443964530714],[-87.76749339182818,41.96834502016858],[-87.76748590419967,41.968106621256155],[-87.76748016125683,41.967924542107944],[-87.76747668860295,41.96778264223408],[-87.76747354493781,41.967654177432216],[-87.76746782464126,41.96746954626598],[-87.76746136527271,41.96725209070374],[-87.7674543541248,41.96706374847837],[-87.76745111709931,41.96692676901457],[-87.76744907803567,41.966868114926235],[-87.7674443466789,41.96673200651354],[-87.76743908186685,41.96656244327438],[-87.76743470897554,41.96641363037984],[-87.76743150803694,41.96630469717946],[-87.76742778255155,41.96618552521314],[-87.76742426078826,41.96607241895297],[-87.76741955326445,41.965959554098845],[-87.76741948075512,41.96595781720519],[-87.76741379552927,41.96582151910824],[-87.76740827285688,41.96565198201213],[-87.76740415611584,41.965500371809995],[-87.76740025883515,41.96535682984124],[-87.76739491731506,41.96520002703552],[-87.76739153673189,41.96504492926523],[-87.76738871951369,41.964915668816545],[-87.7673814518247,41.96471481164513],[-87.76737585943387,41.96455562012104],[-87.76737240583485,41.96445730518621],[-87.76736656934588,41.96428170179494],[-87.7673608139016,41.96413150991803],[-87.76735818318173,41.964062864229064],[-87.76734788359018,41.9637382558682],[-87.76733819883795,41.96342416057483],[-87.76733306952399,41.96327477636403],[-87.76731858322425,41.96285288367244],[-87.76731090720949,41.96260265604179],[-87.76730181741381,41.962353519114295],[-87.76729708860209,41.96222391411051],[-87.76728809510234,41.96193561773341],[-87.76727646505925,41.96156303358228],[-87.76727247038896,41.96139515041677],[-87.76726863978,41.96123415602847],[-87.76725763476358,41.96093940105679],[-87.76724920190102,41.96071353794252],[-87.76724278355992,41.96048439306871],[-87.7672359589492,41.96024075454258],[-87.76722354940516,41.95990644793241],[-87.76721214963742,41.9595708888824],[-87.76720674909346,41.95941191275284],[-87.76719381967916,41.95893699057615],[-87.76718374233798,41.95865642077985],[-87.76718043340303,41.9585642916363],[-87.76717918924616,41.95852964968168],[-87.76716712025085,41.95819015835659],[-87.76715566236655,41.9578688641634],[-87.76715186081739,41.95774587718257],[-87.76714534509591,41.957535061959504],[-87.76713814602827,41.957285028535615],[-87.7671355041333,41.957193688052804],[-87.76713189977998,41.95706861642654],[-87.76712317645044,41.95683159099975],[-87.76711109472207,41.95650331538689],[-87.76708641268405,41.95576135004637],[-87.76706509362386,41.95512129391031],[-87.76706093141173,41.955009968005065],[-87.76704725811592,41.954644261290454],[-87.76702206895357,41.953864203480386],[-87.76701668590121,41.95368739453318],[-87.76700834327339,41.95341301382318],[-87.76699971340177,41.95318458358456],[-87.76728199197791,41.9531779219206],[-87.7676042909762,41.95317387689373],[-87.76776555131487,41.953171852803216],[-87.76822703763553,41.953167545110794],[-87.76848535467435,41.95316513298416],[-87.76885380208604,41.95316403621364],[-87.76932328796559,41.953153006635],[-87.76944585088017,41.95314997833694],[-87.76990231919106,41.95313869831739],[-87.77031432933349,41.953137728307006],[-87.77067240041616,41.9531334354313],[-87.7709528208164,41.95313007284307],[-87.77152360055727,41.953130150507796],[-87.77188933237532,41.95312013752377],[-87.77215629457561,41.953112827780984],[-87.77284330026728,41.95310657893437],[-87.77311232953454,41.953102537737486],[-87.77335209169037,41.95309893548879],[-87.77407071142476,41.95309288837148],[-87.77433176835329,41.95308512384088],[-87.77452553651028,41.95307935997122],[-87.77468197917747,41.95307470641272],[-87.77514622944447,41.95307367137655],[-87.77555502280694,41.95307058625296],[-87.77657062605353,41.95306291489472]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7113336.26625","perimeter":"0.0","tract_cent":"1139762.99479406","census_t_1":"17031151100","tract_numa":"31","tract_comm":"15","objectid":"829","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1922079.0426432","census_tra":"151100","tract_ce_3":"41.94229055","tract_crea":"","tract_ce_2":"-87.76171772","shape_len":"10668.5082459"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.76599848480787,41.93858018634049],[-87.76649970926107,41.93857468554154],[-87.76651507627645,41.93900691232742],[-87.76651608749458,41.93902935518434],[-87.76651716504564,41.93905327256519],[-87.76652302239155,41.93922193397998],[-87.76653199774319,41.93948849858079],[-87.76654132703366,41.93976557254438],[-87.7665445951055,41.93986138921403],[-87.76654741887334,41.9399410951024],[-87.76654927056681,41.93999335478912],[-87.76656403120845,41.940401312683875],[-87.76657333631276,41.940658480991836],[-87.76657552534489,41.94073088437884],[-87.76657941462501,41.94085285598602],[-87.76658141551381,41.940912471190124],[-87.76658341768889,41.94097277163216],[-87.76658579026788,41.94104520336329],[-87.76659601063204,41.94131400726893],[-87.76660323029398,41.941503903815274],[-87.76660634481833,41.941600515795386],[-87.76660831003362,41.941660843489665],[-87.76661179819527,41.94176835187137],[-87.76661223707153,41.94178188305052],[-87.76661590975397,41.94190259204665],[-87.76662826472915,41.94222793932949],[-87.76663334639873,41.94236175892749],[-87.76663693887976,41.94247077713213],[-87.76664097894317,41.94259151536867],[-87.76664601544216,41.9427367095318],[-87.76665385256052,41.9429060117755],[-87.76666144773876,41.94313825784117],[-87.7666696167981,41.94338805711992],[-87.76667272991766,41.94347031678484],[-87.76668224002933,41.94372255761416],[-87.76668956412136,41.94391661016532],[-87.76669365019559,41.94405118303645],[-87.76670083374127,41.94428776673259],[-87.76671170834571,41.94459561216259],[-87.76671946606261,41.944815435050856],[-87.7667249048072,41.94496384681735],[-87.76673145625026,41.94514260526597],[-87.76674720686,41.94562629687915],[-87.76675600751626,41.94587668807133],[-87.7664005261531,41.94588059381476],[-87.76614176475468,41.94588411269765],[-87.7659238552754,41.94588707548963],[-87.76553008569003,41.945892375744755],[-87.76522601803948,41.945896467612926],[-87.764911552593,41.94590008404004],[-87.76467884539399,41.945902759902246],[-87.76429790477519,41.94590814334459],[-87.76407210321834,41.9459113338126],[-87.76342477911815,41.94591992262206],[-87.76306556739253,41.94592457448953],[-87.7627186359327,41.94592906617904],[-87.76219066014471,41.94593431688378],[-87.76183594896403,41.945940783383236],[-87.76151661568942,41.945946603917015],[-87.76089393622908,41.945953298186765],[-87.76081379494026,41.94595410549786],[-87.76035169806252,41.945958469049145],[-87.75979991809777,41.94596608720034],[-87.75937579779404,41.945970721044645],[-87.75913812253258,41.94597331720663],[-87.75837606533428,41.945982730692826],[-87.7577564574334,41.94599115190984],[-87.75726796725493,41.94599556255311],[-87.7569213613549,41.946000759536965],[-87.7569140426331,41.94575196563224],[-87.75690597551646,41.94554402334861],[-87.75689685956512,41.94530904468038],[-87.75688662296302,41.94511976260872],[-87.75688410417843,41.94489693606752],[-87.75687680448928,41.944629283106956],[-87.75687374242203,41.94451700169903],[-87.75686419739067,41.94417556046369],[-87.75685881404053,41.94398298386037],[-87.75684960333855,41.94371820488761],[-87.75684491644431,41.943583465385565],[-87.75683869078213,41.94342136047209],[-87.75683699811874,41.94337708769798],[-87.75683327850616,41.94326350769116],[-87.75682431418427,41.94298975961248],[-87.75681980390468,41.942845747708915],[-87.7568186629563,41.9428053953499],[-87.75681425722443,41.94264953551899],[-87.75680665535509,41.942351252958275],[-87.7567989131619,41.94204745873243],[-87.75679454978044,41.94189555653437],[-87.75678923168688,41.94171041976367],[-87.75678008140581,41.94143780705674],[-87.75676975812478,41.94113024846936],[-87.75676477426991,41.9409841147772],[-87.75676049356257,41.94082855738763],[-87.75675783608267,41.940719625610996],[-87.75675135855798,41.940525548890406],[-87.75674252512817,41.9402608794943],[-87.75673654342067,41.940069464673016],[-87.75673419421487,41.93999429137926],[-87.75673102596322,41.939909423848775],[-87.75672541564708,41.93975292040469],[-87.75672174842023,41.93961267415635],[-87.75671338749032,41.93929292835181],[-87.7567109286384,41.9391742009433],[-87.7567048117866,41.939053534205556],[-87.75669959383826,41.93895548437298],[-87.75668960426394,41.938700139177556],[-87.75709024125304,41.93869622307333],[-87.75754201123966,41.93869000988043],[-87.75801087557939,41.938683359439175],[-87.75859255572705,41.93867491128192],[-87.75913673537765,41.938668024556215],[-87.75943484538922,41.93866425076765],[-87.76027514698853,41.9386539309],[-87.76074286739319,41.938647729834855],[-87.76087916886354,41.938645985515414],[-87.76108233450428,41.93864338496042],[-87.76135757953541,41.938640365703144],[-87.76159587243887,41.93863753198235],[-87.76189105490458,41.93863402099037],[-87.76200360505399,41.93863315382528],[-87.76255372474836,41.93862741053096],[-87.76282140224995,41.93862393851058],[-87.76334712645841,41.938617109441026],[-87.76368622822866,41.93861248063096],[-87.76404862861538,41.93860665707179],[-87.76420560721735,41.93860413426857],[-87.76467240652501,41.93859810472369],[-87.76526764453203,41.938589992031645],[-87.76548154499602,41.93858707099718],[-87.76599848480787,41.93858018634049]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2760217.76073","perimeter":"0.0","tract_cent":"1154551.77819655","census_t_1":"17031130400","tract_numa":"9","tract_comm":"13","objectid":"830","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1935243.08456283","census_tra":"130400","tract_ce_3":"41.97813004","tract_crea":"","tract_ce_2":"-87.70700827","shape_len":"8520.27823526"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70439128750459,41.97469021282926],[-87.70437686243703,41.97460144116805],[-87.70433822450656,41.974439431281525],[-87.70432356469952,41.97439695302593],[-87.70431384711924,41.97437544011552],[-87.70430805891252,41.97435822969076],[-87.70430449756178,41.97433521375718],[-87.70430128889376,41.97430621739357],[-87.70429501012279,41.97427536559162],[-87.70428660392695,41.97425139008142],[-87.70427663923086,41.974228833016205],[-87.70426101973099,41.97419419791293],[-87.70425201780432,41.974163495838276],[-87.70423459064862,41.97411823076009],[-87.70422251422671,41.97409352163934],[-87.70421495061694,41.974069880044915],[-87.70421070192667,41.97404197565934],[-87.70420679202724,41.97401327731122],[-87.70419855918485,41.97398664086662],[-87.70418392878202,41.97394493112813],[-87.70416779616087,41.97390639615579],[-87.70415541486096,41.97387153207933],[-87.70414213173875,41.97383496137841],[-87.70411490255569,41.97378053180313],[-87.70409801414563,41.97372912263925],[-87.70408600471849,41.97368641189712],[-87.70403771340104,41.97355158381829],[-87.70453740701991,41.9738217046555],[-87.70477976536662,41.97395500058219],[-87.70500516104786,41.97399586072456],[-87.70500706972976,41.97399622791748],[-87.7050322617504,41.97399987837443],[-87.705076435748,41.9740065690045],[-87.70512875977454,41.974018463317364],[-87.70516974250887,41.97403559186226],[-87.70521775741574,41.974051853281],[-87.7052889460444,41.97407136984989],[-87.70537866935281,41.974094582939706],[-87.70539943325794,41.97409974228082],[-87.70553220514219,41.974115187238795],[-87.70553529453616,41.974116953837196],[-87.70556272265912,41.97412879413105],[-87.70559299482983,41.9741431197525],[-87.70561985670258,41.97415270668989],[-87.70564718545546,41.97415968918082],[-87.70567242165869,41.97416630347816],[-87.70569964037382,41.974173257912966],[-87.70572786283934,41.9741791475895],[-87.70576554182773,41.974188162461445],[-87.70587267475194,41.97422486177061],[-87.70608002748324,41.974268255620295],[-87.70612277623468,41.974277846915705],[-87.70615656610863,41.97428598998277],[-87.7061922890841,41.974295762131035],[-87.70619259660837,41.97429586589534],[-87.70619267871076,41.974295893785886],[-87.70619462941279,41.97429655262297],[-87.70622623027236,41.974307226215394],[-87.70628121874012,41.97432122015178],[-87.70632906959189,41.974331799709255],[-87.70638451014548,41.97434469838409],[-87.70644275372346,41.974360521193674],[-87.70650023388532,41.97437919377644],[-87.70657125545704,41.97439703467402],[-87.70668060220322,41.9744255675905],[-87.70678901893635,41.974451406008235],[-87.70697388276193,41.97449319363526],[-87.70707714594184,41.97451960738746],[-87.70721517535628,41.974552138142904],[-87.70732327326276,41.97457306219396],[-87.7073898161707,41.974586160054805],[-87.70741293739331,41.9745907108716],[-87.70745074736547,41.974598153201825],[-87.70759520022936,41.974628248737396],[-87.70779148324871,41.97466817607247],[-87.708085418889,41.97469914057064],[-87.70817602125446,41.97469658792184],[-87.70826236758671,41.974696783673274],[-87.70842089769258,41.97469383228781],[-87.70857917543707,41.97468659835344],[-87.70865169040066,41.974681319595305],[-87.70865527299566,41.97479474986155],[-87.708661267481,41.97503182672111],[-87.70867224924622,41.97532304665871],[-87.7086782959263,41.97553597452312],[-87.70868069519987,41.97572767808093],[-87.70868094646495,41.97574776563795],[-87.70868478024188,41.97605411522309],[-87.70869039258258,41.97620236012498],[-87.708699500629,41.97645578186903],[-87.70871172739727,41.97690189098883],[-87.7087212791624,41.97737712894076],[-87.70872624549739,41.97757825105716],[-87.70873982734263,41.978121018232194],[-87.70874502633727,41.978326642352364],[-87.70875570247685,41.97875087133115],[-87.70876656924516,41.97923832797627],[-87.70877059497555,41.97942432436321],[-87.70877711007489,41.97972531629218],[-87.70878412292313,41.97996363337513],[-87.70878599169303,41.98002832434624],[-87.70879321328347,41.980301740873735],[-87.70881678024459,41.981259512305904],[-87.70882898842434,41.98175564825207],[-87.70883653160955,41.98202629452935],[-87.70884321951789,41.9824371650005],[-87.70885125239303,41.982653945553714],[-87.70885744237948,41.98289371246166],[-87.70887663649168,41.98306763443837],[-87.7085720493292,41.98307231629537],[-87.7082924947463,41.983074993166746],[-87.7081605945868,41.98307569697683],[-87.7079208493109,41.98307697559421],[-87.70768963464657,41.983078569682974],[-87.70725313849643,41.983081349059866],[-87.70696166907393,41.98308003322986],[-87.7069382050394,41.98308020349499],[-87.70690177438165,41.983080467376986],[-87.70688439437406,41.983038778164754],[-87.70685695099395,41.98288926165621],[-87.70681700540682,41.98273945737066],[-87.70675958806983,41.982567302252455],[-87.70675133211739,41.98254280637665],[-87.70673864532786,41.982508818828684],[-87.70673044849977,41.98248204558856],[-87.70671791062436,41.98244037509315],[-87.70670687568753,41.9823804638753],[-87.70669911191315,41.98231703049474],[-87.70668528511482,41.98223427229618],[-87.70667602741463,41.9821844148185],[-87.70666873958858,41.98214746528078],[-87.70666435927066,41.98212532312286],[-87.70664163538518,41.982075968137956],[-87.70663526318272,41.982065670045955],[-87.70662391543303,41.9820489233646],[-87.70661458767106,41.98203622168289],[-87.70660361748382,41.98201472959579],[-87.70659230697812,41.98199043656625],[-87.70657700299924,41.981934563439715],[-87.7065674171107,41.9819069318999],[-87.70655312893206,41.98187499346],[-87.70653748717521,41.98184606652148],[-87.70652006092712,41.981811586828684],[-87.7065119833956,41.981787668188794],[-87.70650381841513,41.98176141650121],[-87.70650226355653,41.981751199589205],[-87.70649386513327,41.98170000185266],[-87.70648943597853,41.981649099934415],[-87.7064729357965,41.98161020712883],[-87.70645789894492,41.98156465363203],[-87.706449877626,41.981534972200244],[-87.70643852155487,41.98149284188197],[-87.7064351174836,41.981468674336355],[-87.70643387690525,41.98144141765956],[-87.70642594726772,41.981421177047324],[-87.7064159157867,41.9813977416847],[-87.70640852920296,41.981378382180644],[-87.70639785731598,41.98134149674061],[-87.70638906510911,41.981304209934855],[-87.70638219110197,41.981281340652515],[-87.7063783875051,41.981270908934995],[-87.70637230606144,41.981254228857715],[-87.70636667181918,41.98122870447137],[-87.70635581727561,41.98118794870736],[-87.70634494251225,41.981160502200396],[-87.70633373467155,41.98114076507444],[-87.7063164811482,41.981122449352554],[-87.7063040101405,41.981089011767416],[-87.7062976353367,41.98105275351087],[-87.7062972314313,41.98103019398234],[-87.70628581938932,41.981008781774065],[-87.7062625248682,41.98098017001378],[-87.70624747447269,41.980954731121315],[-87.70623582743208,41.98091978871887],[-87.70623771356411,41.98089998589901],[-87.70623600999588,41.98088244115596],[-87.70623049995174,41.98084805367422],[-87.7062171592421,41.980794523783985],[-87.7062078307647,41.98074815072976],[-87.70619806272457,41.980712916724954],[-87.70618317374908,41.98067853288735],[-87.70616531411152,41.980647041670366],[-87.7061545107641,41.9806160829572],[-87.70613877497208,41.980570553034866],[-87.70612835597807,41.98054544156481],[-87.70610915762201,41.980504173397755],[-87.70609713330585,41.98047770877002],[-87.70608399843373,41.98045197873255],[-87.70607396142084,41.980425387476174],[-87.70606797121185,41.980406172787],[-87.70605913323737,41.980366086616165],[-87.70605615682679,41.980347080487896],[-87.70604160923354,41.98031165569928],[-87.70603403601412,41.9802851053436],[-87.70602525214036,41.980258246509784],[-87.70601418498057,41.98021296134058],[-87.70600897249768,41.98019320233194],[-87.70600362488948,41.98016847530781],[-87.70599834611362,41.98014048306123],[-87.70599461938922,41.98012298214057],[-87.70599280234462,41.980105766075596],[-87.70598047538734,41.980053943095434],[-87.70597218928377,41.9800101003771],[-87.70596825953076,41.97997956339435],[-87.70595528612331,41.979922413129025],[-87.70592499476282,41.97986105191518],[-87.70591147964888,41.97982911788457],[-87.70590365085032,41.97979864191484],[-87.70589559358983,41.97976896051389],[-87.70588702240859,41.979735434422786],[-87.70587470033144,41.97969436872047],[-87.70585818430236,41.97964219352337],[-87.70584579531166,41.979604200956125],[-87.7058260918023,41.97955453299543],[-87.70581042139085,41.97950617685123],[-87.70580002426641,41.97947073986342],[-87.70579732499073,41.97946153944579],[-87.70579124704693,41.97944007785705],[-87.70579123353008,41.97944003113175],[-87.705774184844,41.97937982759418],[-87.70575753561035,41.97932625238392],[-87.70572795396636,41.97926382475396],[-87.70570929051566,41.97921309221827],[-87.70568469758693,41.979110845781726],[-87.70566194175352,41.97903122214546],[-87.70564814500622,41.97899429209449],[-87.70550898515667,41.97865286604192],[-87.7054979156888,41.978622893714096],[-87.70548233134697,41.978576980327496],[-87.70547087267826,41.978537922563014],[-87.70545582516466,41.97848981674745],[-87.70543767625284,41.97844668841231],[-87.70542216591434,41.97840077542102],[-87.70541034499787,41.97835367488461],[-87.7054057325214,41.97832524744927],[-87.70538827457122,41.97826049858019],[-87.70537707694616,41.9782210854861],[-87.7053593883907,41.978176033225736],[-87.7053479425741,41.97808327698888],[-87.70534367809722,41.978049417660685],[-87.70533862377206,41.97802482913698],[-87.70533323421044,41.97801190218296],[-87.70532257610132,41.97798121859315],[-87.70530603964959,41.97793121110957],[-87.70529407390674,41.977872666720536],[-87.70528473139399,41.97782412557355],[-87.70527075557145,41.977768039965426],[-87.70525993765442,41.97773491315513],[-87.7052433458696,41.97769429052637],[-87.70523459988046,41.97766364510478],[-87.70522959409844,41.97764160894758],[-87.70522609888825,41.977623039023044],[-87.70522181651076,41.977593518172206],[-87.70522113901613,41.977588846578854],[-87.7052151892948,41.977558078970105],[-87.70520869088759,41.97751578271286],[-87.70519718639137,41.977458969680335],[-87.70519482862962,41.97745305674657],[-87.70519281706166,41.977439571710995],[-87.70517769301263,41.977421679089794],[-87.70516681778605,41.97740191621645],[-87.7051555738856,41.97737098242465],[-87.70514099344688,41.97732779123527],[-87.70512984889324,41.9772792676525],[-87.70511645803592,41.97722730152399],[-87.70509485007744,41.977165768046646],[-87.70508975471984,41.97714529586069],[-87.70508020856566,41.977113795068796],[-87.70506302333706,41.9770550025476],[-87.70504747412203,41.97700936370285],[-87.70501583879759,41.97693155709781],[-87.70500441747176,41.97689249948079],[-87.70499048443695,41.97684332945265],[-87.70497475612756,41.97678973170564],[-87.70496600993954,41.97676287270762],[-87.70495546433253,41.976728265484866],[-87.70494943101457,41.97669854019714],[-87.7049423389816,41.97666428118084],[-87.704938730809,41.976631029146574],[-87.70493802412273,41.97660190929695],[-87.70493251016485,41.976567988221774],[-87.70491671110453,41.976532858281274],[-87.70488925694731,41.976489871003004],[-87.70487055617932,41.976446821869615],[-87.7048586870876,41.97640847527634],[-87.70484415530257,41.97634541628691],[-87.70483197792343,41.97630846754547],[-87.70482078266785,41.97627262186029],[-87.70481190527445,41.976236679095784],[-87.70480591785733,41.97619855679131],[-87.70480942279613,41.976174975843236],[-87.70482134333224,41.976152017251515],[-87.70482728252672,41.97613520036681],[-87.70482658226238,41.97611291333795],[-87.70481995802238,41.976098415401154],[-87.7048159656006,41.9760855506776],[-87.70478852274655,41.97604895742501],[-87.70477842114009,41.97601783802403],[-87.70476759574836,41.975989266218214],[-87.70476035451523,41.975962717577765],[-87.70474697717397,41.97590943425206],[-87.70474084006078,41.97588654144445],[-87.70472916066004,41.975851324263445],[-87.70472659761518,41.97581278163051],[-87.70472526284838,41.975774429858866],[-87.70472499189425,41.975766642799115],[-87.70472284958518,41.975741411850166],[-87.7047141073913,41.97569921303417],[-87.70469595302541,41.9756717264857],[-87.7046760991276,41.97565251811836],[-87.7046661234284,41.97563852294279],[-87.70465250955789,41.97562426086455],[-87.70464004215769,41.975609346454625],[-87.70462856542699,41.97559092488979],[-87.70462121809041,41.97556769614258],[-87.70461628601282,41.975519508381105],[-87.70461439873812,41.975479569901296],[-87.70459987994448,41.975422712839936],[-87.704591557968,41.97539014846425],[-87.70458502710747,41.975373647481504],[-87.70456454798715,41.97534323932399],[-87.70453868527049,41.975303114640894],[-87.70452455733572,41.97527005194445],[-87.70451388196851,41.97524120706167],[-87.70449791257539,41.97521219542029],[-87.70449226006367,41.975199870430835],[-87.70448865892413,41.975180887991435],[-87.7044878497471,41.97515473158374],[-87.70449125017589,41.97511934999797],[-87.70449155043899,41.97507761232241],[-87.70448689972271,41.9750307433099],[-87.70447688621465,41.97499443754263],[-87.70446835598408,41.974968101080414],[-87.70446357130133,41.97494606664018],[-87.70446347358076,41.97492235619445],[-87.70446350285759,41.974893212923135],[-87.70445633533609,41.97485549575788],[-87.70443418235509,41.97480831132714],[-87.70442335920293,41.974779547675865],[-87.70441940683871,41.974758889619665],[-87.70440992319749,41.97472854166754],[-87.70439128750459,41.97469021282926]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"29696165.7075","perimeter":"0.0","tract_cent":"1136006.16364155","census_t_1":"17031120100","tract_numa":"74","tract_comm":"12","objectid":"831","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1943816.50402693","census_tra":"120100","tract_ce_3":"42.00200805","tract_crea":"","tract_ce_2":"-87.77500529","shape_len":"38390.7020959"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77657741456204,42.01197939115756],[-87.77628423784738,42.01197294691081],[-87.77628368518603,42.01197294395439],[-87.77524425770584,42.0119677613693],[-87.77415196031454,42.01196230469444],[-87.77415195590153,42.011962304398516],[-87.77384338205285,42.01196075851458],[-87.77334945759895,42.01195828220375],[-87.7732241354031,42.011693241552365],[-87.77310296600822,42.0114750357865],[-87.77304973886758,42.011372390579574],[-87.7729764543204,42.01123246339851],[-87.77291162599484,42.01111008537966],[-87.77287977304135,42.01105005192962],[-87.77279191882344,42.01088068983868],[-87.77273655865827,42.0107738357258],[-87.77269730003181,42.01069809645909],[-87.77263529684284,42.01058108351592],[-87.77258972685303,42.010494912354716],[-87.772530490773,42.01038128794725],[-87.7724454496128,42.01021858135316],[-87.77241385953711,42.01015791761207],[-87.7723326960159,42.01000209035106],[-87.77224626311141,42.00983465624301],[-87.7722070803007,42.00975875251686],[-87.77212858504289,42.00960510605525],[-87.77205878953791,42.00947051903641],[-87.771971192955,42.00930159715496],[-87.77195542679799,42.00927227823775],[-87.77193140667968,42.009227611035776],[-87.77188864911739,42.00914820486365],[-87.77185768377898,42.00908779071783],[-87.771822233212,42.00901862892176],[-87.771775352577,42.00892701805772],[-87.77174214439712,42.008862257086065],[-87.7716742994858,42.008723617410865],[-87.77160902118806,42.00859026046976],[-87.77154978919418,42.00847652495189],[-87.77148189592324,42.00834765533315],[-87.77143280481542,42.008256472570594],[-87.77138859392319,42.00817941881544],[-87.77135205658152,42.008099987997596],[-87.77132024348299,42.008039898849376],[-87.77125426298882,42.007915373724536],[-87.7711953412635,42.007804109577116],[-87.77114291139885,42.00770358035891],[-87.77106964098024,42.00756307539596],[-87.77105487980633,42.0075345463828],[-87.77099930621276,42.0074274702473],[-87.77094033402004,42.00731368160671],[-87.77088891793952,42.007211016488526],[-87.77083366511361,42.0071010881551],[-87.77077712135586,42.006991454778806],[-87.77072079432358,42.00688242670587],[-87.7706954353111,42.00683323545374],[-87.77061145875871,42.00667615849602],[-87.77052538119167,42.00651517359723],[-87.77050585233577,42.00647730350635],[-87.77046439011568,42.00639690204035],[-87.77042137565932,42.00631370676909],[-87.77037293870296,42.00621999411847],[-87.7703721041164,42.006218379185135],[-87.77037073544582,42.00621574490962],[-87.77035947702404,42.00619408604851],[-87.77030140971014,42.006082249322894],[-87.77024229281453,42.0059684595903],[-87.77017159931984,42.005832330196164],[-87.77011834484837,42.005729710573895],[-87.77005702341593,42.00561151921664],[-87.77001078774435,42.005522435404814],[-87.76992746918812,42.005361930355676],[-87.76986890310147,42.00524653667176],[-87.76949497818158,42.00505103886255],[-87.76750443909657,42.00122645814905],[-87.76749699723705,42.001212158520744],[-87.76640192586734,41.999098528681536],[-87.76549192493961,41.99735073630778],[-87.765487215526,41.99734160694878],[-87.76507406066136,41.99654067749942],[-87.76448882627129,41.995418339398405],[-87.76063715425157,41.98798892434248],[-87.76067487541626,41.987973707955845],[-87.76068377019743,41.98797034951949],[-87.76074383045302,41.987946417826414],[-87.7607640176271,41.987930739368615],[-87.76079625876737,41.98790395213402],[-87.76082096848361,41.98788025571723],[-87.76083411196474,41.98787181424709],[-87.76089703169961,41.98783140409462],[-87.76092511323247,41.987817274282975],[-87.76096169562808,41.98780269289379],[-87.76105341486621,41.9877676404981],[-87.76113727931916,41.987743031170936],[-87.76119454581199,41.98773118723543],[-87.76125835040791,41.98772448006453],[-87.76133435576108,41.9877190136575],[-87.76143872008403,41.98771360615648],[-87.7614682571027,41.98770944490696],[-87.76151904900561,41.98771005466394],[-87.76156314081528,41.9876947695536],[-87.76161654222567,41.98768323546032],[-87.76167800055306,41.98767975452651],[-87.7617259734654,41.98767472454484],[-87.76182504755494,41.98767269315817],[-87.76189004801346,41.98768443261102],[-87.76194057953047,41.98769766420359],[-87.76198816509448,41.987719497898716],[-87.7620428533142,41.987753276747256],[-87.76209324017546,41.98778269833033],[-87.76213920938412,41.98782076985545],[-87.76218494080695,41.987856644270416],[-87.76222834697637,41.98788929666001],[-87.76225846756401,41.987918617345024],[-87.76228563414617,41.98795332940063],[-87.76230953578651,41.9880076462356],[-87.76231618103004,41.98804612552522],[-87.76231676007905,41.98805949265699],[-87.76231752364444,41.98807694956372],[-87.76231835109665,41.988083183012385],[-87.76230977888251,41.988161542150785],[-87.76230171294532,41.98818329097215],[-87.76226782639499,41.98823784201596],[-87.76223002137446,41.98827810289522],[-87.76222016588503,41.98828606720109],[-87.76216790323713,41.98832241507594],[-87.76210511468257,41.98835119089517],[-87.76207287589993,41.9883612937756],[-87.76198047801938,41.9883899773363],[-87.7619577272624,41.98839614831772],[-87.76192557058634,41.98840529109556],[-87.76188080292437,41.98842202767841],[-87.76183738879782,41.98843959369306],[-87.76176222206895,41.98848691364568],[-87.76171390510319,41.98853033300071],[-87.76168699735676,41.988557147323256],[-87.76166642818224,41.988582675714525],[-87.76165526487294,41.988601088583074],[-87.76164111298864,41.988624673103686],[-87.76162175366585,41.9886588242971],[-87.76159698475055,41.98873024221115],[-87.76158973050147,41.98879274637918],[-87.76158930780652,41.98889757267828],[-87.76163768711866,41.989048662241395],[-87.76166392969657,41.98912088303551],[-87.7616761228087,41.98915178882538],[-87.76169990199315,41.989207449549184],[-87.7617516435275,41.98929936343],[-87.761782227434,41.98936329088762],[-87.76182830396158,41.989434704803365],[-87.76186270896811,41.9894950289189],[-87.76188273475661,41.98954265813094],[-87.7619623983985,41.98971654318348],[-87.76199866684667,41.98977418694142],[-87.76204374902242,41.98985402050713],[-87.76205399672065,41.98992152390655],[-87.76205010575097,41.989945296744764],[-87.76203445516639,41.990017171744256],[-87.76203236436233,41.99003296792255],[-87.76203115854484,41.9900485215272],[-87.76203276637598,41.99005794212977],[-87.7620343739622,41.99006739017306],[-87.76203542149212,41.990073652158856],[-87.76203657544374,41.99008035374601],[-87.7620999408377,41.990143593546556],[-87.76211277082436,41.99014445320653],[-87.76216568859938,41.99015020490885],[-87.76222995253205,41.99017055728586],[-87.76224775918786,41.99017843939545],[-87.76229297226268,41.990198422541496],[-87.76234735194775,41.990221744302325],[-87.76240312769447,41.99024518274852],[-87.76248419506655,41.9902622157468],[-87.76253493444774,41.99026065687846],[-87.76260343928998,41.99024689230461],[-87.76267374857828,41.99015876888107],[-87.76268922744609,41.990114280043045],[-87.76272749430927,41.990030634994],[-87.76273871701854,41.99000964249982],[-87.76274745203362,41.98999536147492],[-87.76276638159136,41.98996812334373],[-87.76278720034465,41.98995176162526],[-87.76285516121796,41.9899123633813],[-87.7628836790831,41.98987825749845],[-87.76291285808728,41.9898524972574],[-87.76298009635885,41.98981161348069],[-87.7630373514753,41.98978473036651],[-87.76317228177295,41.989763364693786],[-87.7632658302154,41.9897625943969],[-87.76331263812848,41.98976049426298],[-87.76339190125638,41.9897570733817],[-87.76350018383442,41.989749872294276],[-87.76355336698684,41.98974234275242],[-87.7636152718576,41.98973024621718],[-87.76364787512392,41.98972052890309],[-87.76369235383903,41.989707412818326],[-87.76373310263801,41.98969178098817],[-87.76377300240046,41.98967235793666],[-87.76379965147429,41.98965388475966],[-87.76383408552677,41.98962038399741],[-87.76385817141394,41.98958408796589],[-87.76386802059524,41.9895685772175],[-87.76388341352275,41.989529493858186],[-87.7638918856582,41.98950752740934],[-87.76389820446546,41.989491916819816],[-87.76394064845964,41.989434636110346],[-87.76401227615402,41.98939226446139],[-87.76402740816421,41.989386576688545],[-87.7640787260957,41.98936954272386],[-87.76409450208075,41.98936588884273],[-87.76411845322204,41.989361205258525],[-87.7641546145456,41.989356746862114],[-87.76419734958417,41.98935756246567],[-87.7642119740678,41.98935933637338],[-87.7642618460533,41.98937248134669],[-87.7642849332316,41.989382200763785],[-87.76430679854745,41.989392819156485],[-87.76432911539823,41.989406431234364],[-87.7643585855946,41.989426362978485],[-87.76442714394446,41.98948493466158],[-87.76447731773447,41.98952203789322],[-87.76455815269273,41.989594062022256],[-87.76458549005118,41.98961865184566],[-87.76466076733259,41.989686363574236],[-87.76469105126955,41.98970994932225],[-87.76474070988753,41.989738845005796],[-87.76482712510312,41.98978317990059],[-87.76489384096783,41.989813312278464],[-87.76493150821716,41.98982979933148],[-87.76503507341211,41.9898608275692],[-87.76514774366147,41.98989382171868],[-87.76523826320303,41.98992758428507],[-87.76532048787344,41.98995515873191],[-87.76539735750048,41.989981005223385],[-87.76549963773512,41.99001180714863],[-87.76558690765835,41.990067726491105],[-87.76564645749053,41.99010539725226],[-87.7656799806627,41.99011637489419],[-87.76572119943978,41.99012648526666],[-87.76576036279543,41.99013609150617],[-87.76584607824812,41.99014757438903],[-87.76596468100921,41.99015466438567],[-87.7661379863316,41.99015018827549],[-87.76617605453478,41.990149205136724],[-87.76635867180528,41.990122006631594],[-87.76647490622256,41.99009752611865],[-87.76658020957308,41.990073732454704],[-87.76666355083584,41.99005844706806],[-87.76671374498015,41.99004782780483],[-87.76675167131319,41.99003931588876],[-87.76678851658761,41.990032417702125],[-87.76682628311957,41.990025331956076],[-87.76685713575282,41.990018074870214],[-87.76689605006757,41.99001014406343],[-87.76706229561378,41.98995413189164],[-87.76706946886273,41.98994994120984],[-87.76707404472158,41.98994828982021],[-87.76712657284396,41.9899233297291],[-87.76723402874948,41.989868262214],[-87.76758083380734,41.98964332879337],[-87.76764190173675,41.989584409651044],[-87.76765463405592,41.989550554092595],[-87.76766662766326,41.989500504118006],[-87.76766601815801,41.98947794379826],[-87.76765529026024,41.98941831437292],[-87.76764936590867,41.98939778628655],[-87.76764663563218,41.989382103181086],[-87.76761829269775,41.98931783157686],[-87.76761109009799,41.98927965171396],[-87.7676049711005,41.98923541251026],[-87.76760554070007,41.98914200277623],[-87.76761777965338,41.989064155273724],[-87.76766108116001,41.9889927450539],[-87.7676791275084,41.98896528221693],[-87.76771430678572,41.98891380972466],[-87.76774066315015,41.98887837475989],[-87.76775720838774,41.98885842334602],[-87.76782996520083,41.98880033060718],[-87.76788643681108,41.98878683289961],[-87.76793207148759,41.9887758887795],[-87.76796396311022,41.988771682846796],[-87.76805177832092,41.98876602290399],[-87.76814814461916,41.98876671692762],[-87.76819691020992,41.98876775282629],[-87.76828470321183,41.98877986595246],[-87.76832622990472,41.98878559551811],[-87.76838623375541,41.988788607588134],[-87.7684473453383,41.98879530230496],[-87.76852905722943,41.988810138850084],[-87.76862712727993,41.98883032467022],[-87.76868369067908,41.98884388482829],[-87.7687624005685,41.98886128598878],[-87.76882396611198,41.98887489812027],[-87.76887736254214,41.9888847104981],[-87.7690180716598,41.988908288904895],[-87.76914111327542,41.988929008668265],[-87.76924588798505,41.9889439306063],[-87.76936020641651,41.98896112213718],[-87.7694685006704,41.98897737837859],[-87.76957560940092,41.988986219357436],[-87.76962419213557,41.988991367581264],[-87.76966520247646,41.9889959072608],[-87.76976349789581,41.98899891452851],[-87.76989337569317,41.98900783954693],[-87.76999392053166,41.98901025393399],[-87.77009674247151,41.98901306359329],[-87.77021721104036,41.9890169476366],[-87.77034184840257,41.989031966006095],[-87.77038674249896,41.989038250850676],[-87.7704794404369,41.98905873804819],[-87.77058878694847,41.989106131060076],[-87.77061392268824,41.98911702553272],[-87.77094005670583,41.989220268890435],[-87.77101076929448,41.98925206381843],[-87.77105235521938,41.989274824835825],[-87.77111755503554,41.989310269922825],[-87.77120387723666,41.989378199957756],[-87.77122836814647,41.98940408791271],[-87.77126034018886,41.989432564597585],[-87.77129637978427,41.98945861885075],[-87.77133597120488,41.9894907002773],[-87.77137002631336,41.9895165526979],[-87.77140043073877,41.989539258850954],[-87.77144006031055,41.989583744208495],[-87.77146430689967,41.98962074492328],[-87.77149544600417,41.98969372837567],[-87.77153352117004,41.989756043386734],[-87.77156652239299,41.989809744211584],[-87.77159596099348,41.98985028287971],[-87.77164041357807,41.989915236049775],[-87.77167536348888,41.98996068633776],[-87.77170325470864,41.990001519268546],[-87.77172434915597,41.99004141335539],[-87.77173758072091,41.990101219298815],[-87.77174084241273,41.99018210679887],[-87.77173859733335,41.990197815684915],[-87.77173296428242,41.99023722665653],[-87.77173202662377,41.99024158205259],[-87.77172625306427,41.99026839536554],[-87.77170480931788,41.99033936548142],[-87.77169289277363,41.99037684754609],[-87.77166677054834,41.990448590307004],[-87.77163467894688,41.99052568248245],[-87.77160181952159,41.99060642067492],[-87.77156964320162,41.99068894620318],[-87.77151468034135,41.990794301156114],[-87.77150336570439,41.99081351005525],[-87.7714848199799,41.99083932452269],[-87.77145303680454,41.99086875142162],[-87.77144112293105,41.990876623841096],[-87.77140350632435,41.99090012214593],[-87.77129399488233,41.99092562847413],[-87.77124316886946,41.990932816396565],[-87.77121385625298,41.990936459859135],[-87.77118151450057,41.99094151546387],[-87.77112719089833,41.990953269018796],[-87.77107298948359,41.990971993410696],[-87.77102998264942,41.990989345628726],[-87.77098906083395,41.99100802525966],[-87.7709449510081,41.99102948861464],[-87.7708957254851,41.991072138993886],[-87.77086713336503,41.99111928144348],[-87.77085486193606,41.99115939638142],[-87.77084691629078,41.99119283666963],[-87.7708405028462,41.99125279342133],[-87.7708821524438,41.99135620679587],[-87.77093480082995,41.99142619481944],[-87.77098019065457,41.99145158148021],[-87.771040215866,41.99147336286003],[-87.77106410024433,41.99148047727986],[-87.7711252931643,41.991503334297505],[-87.77117212905995,41.99151610465221],[-87.77119471215946,41.99151939851118],[-87.77139626005726,41.99152741043782],[-87.77159703566768,41.99153958941294],[-87.77167046906528,41.991538384533634],[-87.77174238228093,41.991538544269616],[-87.77182168305347,41.99154359732741],[-87.77191588441818,41.99156927724948],[-87.77201615099345,41.99158708346051],[-87.77207701785053,41.99160104717409],[-87.77213929793197,41.991613261477255],[-87.77226493840617,41.99162359008313],[-87.77234301294598,41.991630063770685],[-87.77238739988488,41.991635686746314],[-87.77245886616234,41.99164901600137],[-87.77251357078492,41.991661028436646],[-87.772584076472,41.99167907294192],[-87.77263270981601,41.99169124775729],[-87.77269952710753,41.9917104267394],[-87.77276016962604,41.99172902669019],[-87.77283120321327,41.99175404388505],[-87.77289891419571,41.99178873183468],[-87.77293250380445,41.99181334634739],[-87.77297405617236,41.99184439425047],[-87.77302306972238,41.99189293138247],[-87.77329175056974,41.99219484195225],[-87.77337276779636,41.99229375361167],[-87.77341935182433,41.9923509506605],[-87.77343162685057,41.99236898832138],[-87.77345349049483,41.99240111645464],[-87.77349388869077,41.99247579101101],[-87.77352278347043,41.99253668846556],[-87.77355739255059,41.992617152466075],[-87.77358422321413,41.992686931039536],[-87.77360725411202,41.9927663506551],[-87.77362079956177,41.992819983441386],[-87.77364220650873,41.9928748345603],[-87.77366141112037,41.992929098655914],[-87.77368356840259,41.99301172470513],[-87.77370345968822,41.99312202865643],[-87.7737113252454,41.993269759716654],[-87.7737113248108,41.993303403576725],[-87.77370705307607,41.9933543150585],[-87.77369421825256,41.99341270389492],[-87.77368386213412,41.99344849235186],[-87.77366378598762,41.99348105069875],[-87.77362982882929,41.99352764626358],[-87.7735898319808,41.99357080956346],[-87.77353393836137,41.99361455393628],[-87.77349368274257,41.993636860039814],[-87.77346372634118,41.99364667537837],[-87.7734270758513,41.99365637573314],[-87.77336929593511,41.993667646969755],[-87.77331982667339,41.99368354152985],[-87.77328439458235,41.99369692500725],[-87.77324017549088,41.99371394282579],[-87.77318376296103,41.99373287695095],[-87.77313569936179,41.99374787270534],[-87.77309048054728,41.9937614278987],[-87.77298493255172,41.99378119701651],[-87.7729805297284,41.993782021560854],[-87.77284018903578,41.99381149514946],[-87.77278738957432,41.993825342513404],[-87.77272425039355,41.9938436947259],[-87.77266309194964,41.99386688636491],[-87.7726186766105,41.99388527508332],[-87.77257908503842,41.99390730968832],[-87.77253522801985,41.993933329969785],[-87.77251348004843,41.99394672517379],[-87.77243843894978,41.993979892630534],[-87.77240113193248,41.99399310202127],[-87.77238846582918,41.993998610849005],[-87.77233606889283,41.99402104930865],[-87.77230005812659,41.99403744854426],[-87.77226105298271,41.99405970516614],[-87.77221931223215,41.994083485427836],[-87.7721836486679,41.99410641723848],[-87.77213985638667,41.99413759677463],[-87.77210409556801,41.99416321739797],[-87.77204429411972,41.99421193609789],[-87.771980806122,41.99426154287253],[-87.77190649724048,41.99432852206648],[-87.7717971247059,41.99441709117821],[-87.77167551878671,41.994528843677436],[-87.77161264006915,41.99458857903803],[-87.77156917011493,41.99463323393679],[-87.77151496801937,41.9946977042793],[-87.77148922965262,41.99473393891641],[-87.77145451293765,41.99478302732648],[-87.77141527368885,41.99484013408416],[-87.7713914589063,41.99487514322577],[-87.77136593169436,41.99491244910431],[-87.77133374820093,41.99497041363252],[-87.77130686955944,41.99503169715949],[-87.77127784677309,41.995098348806586],[-87.77124314447236,41.99516661942812],[-87.77123312378424,41.99518918254072],[-87.77121177211906,41.99524525141644],[-87.77119514031406,41.9952875129247],[-87.77118103356827,41.995339638460955],[-87.77117502454097,41.995395425990054],[-87.77116285225671,41.99545346101861],[-87.77114914735415,41.99560621819789],[-87.77115709847244,41.995714323587855],[-87.77116362809595,41.99576002694929],[-87.77116763293459,41.99578805684746],[-87.77118130411903,41.99587322104782],[-87.77119890321892,41.995946797079135],[-87.77121452163084,41.996002992371814],[-87.7712289971251,41.996051114128754],[-87.7712539751827,41.99611808505251],[-87.77132144363411,41.99624352328723],[-87.77136112922435,41.99630719082962],[-87.77139642658726,41.99635533216912],[-87.77142885786996,41.99639473292502],[-87.77146276247471,41.996429750169355],[-87.77149028274461,41.99645446133779],[-87.77150338644508,41.99646622727206],[-87.77155210874561,41.99650214026942],[-87.77159963128587,41.9965322571216],[-87.77169144908714,41.99658717867866],[-87.77188514459229,41.99668260886223],[-87.77200923221463,41.99673258378569],[-87.77209173104173,41.996759633306674],[-87.77218819119638,41.99679289801521],[-87.77227365649597,41.996821443772085],[-87.77235970756381,41.99685032163133],[-87.7724516209316,41.99688191738138],[-87.77253015365343,41.99690398021406],[-87.77263765467946,41.996928407288124],[-87.77278355874219,41.996953268772685],[-87.77291585554703,41.99697785810199],[-87.77295717295723,41.99698553719003],[-87.7730904383856,41.99700435451448],[-87.77319652082701,41.99701859317551],[-87.77328829118059,41.99703300861769],[-87.77332969743,41.99703916579968],[-87.77349481028752,41.99705503679847],[-87.77357726211594,41.99705818307713],[-87.7736766104076,41.99706006701816],[-87.77377331536063,41.997061334265176],[-87.77385626982715,41.9970616562719],[-87.77397199102903,41.9970590918312],[-87.77407121835277,41.99705378504825],[-87.77416612391674,41.99704211803561],[-87.77428074094696,41.99702275342664],[-87.77437953986566,41.997007537743706],[-87.7744659615464,41.99698578541581],[-87.774547166683,41.996963184371126],[-87.77464780403568,41.996931237811154],[-87.7748095633474,41.996884715024876],[-87.77486798333227,41.99686782058492],[-87.77495970667367,41.996833470924166],[-87.77513143858661,41.99676915836825],[-87.77532145628668,41.99672194900748],[-87.7754066325117,41.996707928548076],[-87.77551026252335,41.99669547956658],[-87.77560846668888,41.99668508971901],[-87.77569968380575,41.996674391701234],[-87.7757645044733,41.996665924862],[-87.77583212102805,41.99666167045898],[-87.77586738981299,41.99666291197533],[-87.77592097443687,41.9966731061736],[-87.77595616588863,41.99668321104048],[-87.77598547442764,41.99669712920827],[-87.776046301582,41.99673320883881],[-87.77612257180894,41.99679546070353],[-87.77615830528171,41.99682357006519],[-87.77622441058816,41.99687871993959],[-87.77628400725378,41.996929337710256],[-87.77636565954377,41.9970072574458],[-87.77641017560417,41.99704073335492],[-87.7764256581648,41.99706243245753],[-87.77646302753479,41.99710547808541],[-87.77649709237612,41.997147794180414],[-87.77652422793803,41.997174736599604],[-87.77655270039197,41.99720020363087],[-87.77660718151292,41.997230050299],[-87.77666029707328,41.997243480028025],[-87.77671031786778,41.9972489914422],[-87.77676310598876,41.99724811568955],[-87.77677687745891,41.99724788718379],[-87.77681087414882,41.99724316733798],[-87.7768607565035,41.99723501192013],[-87.77691562849884,41.99721996556704],[-87.77697289430202,41.99719195019428],[-87.77700263430823,41.99716487190638],[-87.77702957491913,41.997138191673756],[-87.77705963306694,41.99710837071663],[-87.77707925140632,41.99708607314438],[-87.77709974233524,41.997064959801094],[-87.77713832404412,41.99702793544644],[-87.77716787529762,41.99701411039237],[-87.7772077390675,41.996998881416005],[-87.77723346506721,41.99699338044331],[-87.77726859839171,41.99698907732278],[-87.77730607577533,41.99698596609861],[-87.77733551553702,41.9969891273088],[-87.77738543419356,41.99699367746557],[-87.77742427675655,41.99699855815034],[-87.7774644797124,41.99700352773537],[-87.7775038619083,41.99700981054626],[-87.7775388354529,41.99701541339129],[-87.77757142696665,41.997024187960626],[-87.77759660263912,41.997031197775875],[-87.77762530028083,41.99703932231373],[-87.77767447878087,41.9970528422826],[-87.77771628754003,41.997063527479995],[-87.77775427713564,41.997071063324924],[-87.77776223025741,41.99707264103593],[-87.77781739210823,41.997083445979854],[-87.77790253059062,41.99709914285449],[-87.77793627475238,41.99710652335738],[-87.7779631673021,41.99711494093881],[-87.77800687183297,41.99712338496143],[-87.77806552893088,41.997129925474646],[-87.77814860760651,41.99713713318654],[-87.77820031175823,41.99713944110924],[-87.77825578150454,41.99714023074179],[-87.77833167455452,41.99712764536419],[-87.77838504883766,41.99711132818772],[-87.77844721804328,41.99708624490481],[-87.77848972797295,41.99706704891544],[-87.77851856931031,41.99705017429892],[-87.77855454825762,41.9970247448368],[-87.77857428706686,41.99700969226784],[-87.77858944470391,41.99699264173561],[-87.77861404215825,41.99696457770799],[-87.77863442662294,41.99693871611597],[-87.77865993383979,41.99690755553273],[-87.7786807836251,41.99688317804649],[-87.77869617559902,41.9968687902278],[-87.7787269498449,41.99684536654293],[-87.77875207347309,41.99682448000222],[-87.7788798522401,41.996765316580664],[-87.77910472876398,41.99672639213798],[-87.77922947336212,41.99671287298533],[-87.77948870007651,41.9967149085387],[-87.77962368832517,41.9967328190869],[-87.77971263739863,41.99678424185356],[-87.77980922284873,41.99686472810835],[-87.77990311786257,41.99695226240126],[-87.77997094397358,41.99713538192662],[-87.78000282104225,41.99727988660846],[-87.78002228629337,41.99741355389769],[-87.78002317067076,41.99741962859625],[-87.78003204034844,41.9975491164405],[-87.78003569212933,41.997673872561045],[-87.78004250631301,41.997797859081345],[-87.780057746958,41.99792031708149],[-87.78008963423328,41.99812444545611],[-87.78008003148457,41.99826168963225],[-87.78006729809675,41.99841981301972],[-87.78006107072281,41.99847592924398],[-87.7800517482435,41.99858806701909],[-87.78004355739714,41.998679985526124],[-87.78001942680064,41.99882402179449],[-87.78000321282396,41.998950258945875],[-87.7799958710697,41.999024838223114],[-87.77999137277139,41.999106675880576],[-87.77999382187647,41.999184381886565],[-87.77999521072799,41.999228454316885],[-87.78001166505997,41.99933352653323],[-87.7800482380321,41.999468936745075],[-87.7800658355982,41.99955247252972],[-87.78008473944232,41.99967212821058],[-87.78010868894282,41.99977833420644],[-87.78012629897593,41.99986469655822],[-87.78014503242454,42.00000825333758],[-87.78017909009019,42.00013256482492],[-87.78019717471312,42.00020238195425],[-87.7802095319277,42.00038553415922],[-87.78020713140361,42.00045031302448],[-87.78022332147022,42.00068792850545],[-87.78023102071009,42.0008014652069],[-87.78026007672062,42.00100634981351],[-87.78026805025442,42.001113713939844],[-87.78026838181982,42.001166512186494],[-87.78026876123823,42.00122699715095],[-87.78026820601062,42.00140586159472],[-87.78027656864664,42.00151078470632],[-87.7802893102627,42.00160711241812],[-87.78034239195593,42.001756679734626],[-87.78039344438764,42.001868696676866],[-87.78042731136478,42.00197695360012],[-87.78047647860005,42.00215377927655],[-87.78050534291948,42.00226621096852],[-87.78053776820799,42.00238384577672],[-87.78058126950579,42.00246714943767],[-87.78062556746806,42.00253506199133],[-87.78068075218202,42.002607554860475],[-87.7807437393578,42.00267558478546],[-87.78082689946987,42.00276355229103],[-87.78091633461324,42.002823489183804],[-87.78092522487803,42.00282944707566],[-87.7809875368746,42.002869208149505],[-87.7811012469119,42.00289618209548],[-87.7815104437403,42.002955613328076],[-87.78159248427144,42.00295189139462],[-87.78164443207525,42.00293507218688],[-87.78169459671605,42.002907459706336],[-87.78180788542385,42.00283415782621],[-87.78188451523698,42.002762518615576],[-87.781957352378,42.002686963831756],[-87.78203461994147,42.00259255050109],[-87.78210602529418,42.002461227004154],[-87.78215208438927,42.00236781628391],[-87.78220264531998,42.00225579408229],[-87.78225689742743,42.00213391047865],[-87.78229708019913,42.00203503798004],[-87.7823422375108,42.001948044535155],[-87.78241775053533,42.00179242671177],[-87.78246940812652,42.001698219462725],[-87.78250993469646,42.00162344255502],[-87.78260538654865,42.00145082421781],[-87.7826443367826,42.001362510819135],[-87.78268518775295,42.00127988700553],[-87.78272575329434,42.001196219013195],[-87.78277741451983,42.0010716059592],[-87.78279949004092,42.00100744280302],[-87.78283348613809,42.000866389598364],[-87.78285161038136,42.00077399716172],[-87.78286729357762,42.00070025353768],[-87.7828708777518,42.000682189776235],[-87.78290625434197,42.000503901148036],[-87.78291306277634,42.00037984131343],[-87.78292284426678,42.00031207943884],[-87.78293913658628,42.00027431483778],[-87.78302269390717,42.00011549726178],[-87.78306062453665,42.00007704083167],[-87.78312019674898,42.00004178906192],[-87.78317523694884,42.000020181630994],[-87.78327180197407,42.00000829551638],[-87.78338336756103,42.00002320964461],[-87.78348293051148,42.00004778062248],[-87.78357490943743,42.00007289147391],[-87.78369260754472,42.00011911849214],[-87.78381656901679,42.00014284553349],[-87.7839626778906,42.00015808910633],[-87.78406232686626,42.000164109236344],[-87.784167446468,42.00017569845063],[-87.78428005810518,42.00018886070151],[-87.7843541463876,42.0001810373437],[-87.78445291935711,42.000173414297],[-87.78456324313838,42.00014880493531],[-87.78462920758578,42.00013594812836],[-87.78473107896475,42.00008026163269],[-87.78478999043583,42.000044731143646],[-87.78483455626804,42.00000891281747],[-87.78488821083054,41.99996432903181],[-87.78497631272852,41.99990547503943],[-87.78503666056591,41.99987401296684],[-87.78513463920208,41.99982171031794],[-87.78521723122948,41.99978752758123],[-87.78528042841111,41.99976697371357],[-87.78529394024784,41.99976327757756],[-87.78533998358208,41.99975068309476],[-87.78558963345868,41.99972124910794],[-87.78569106672812,41.99972077286981],[-87.78583246715144,41.999740217660715],[-87.78597242670774,41.99974741629686],[-87.78605331845789,41.99974415220346],[-87.78618477964005,41.9997428030589],[-87.78628685867194,41.99973566070371],[-87.78636960640338,41.99974335457067],[-87.78645097983355,41.99975257857994],[-87.78652039353302,41.99977080140579],[-87.78654846323491,41.99978375050378],[-87.78673129224045,41.99983719999918],[-87.78679593148779,41.99984154173861],[-87.78686315312804,41.99984935342106],[-87.78689736206451,41.999845701837195],[-87.78695861325454,41.99983754154377],[-87.78703431077851,41.99982648596394],[-87.78707700194165,41.99981612369895],[-87.78713399790502,41.99980220742032],[-87.7872034983752,41.99978445384782],[-87.78723171528306,41.99977594387317],[-87.78729073363594,41.99975783851907],[-87.78733141274388,41.999733224489745],[-87.7873639341456,41.999716090741636],[-87.78742384149196,41.999688659283315],[-87.78742419460795,41.99968853774824],[-87.78749254581805,41.99966502917128],[-87.78757038757374,41.99964841271682],[-87.7876091503813,41.99964137976908],[-87.7877618606057,41.99963749540698],[-87.78778763270742,41.9996352301666],[-87.78781951679204,41.99963239079178],[-87.78784430802162,41.999632975114864],[-87.7879250848274,41.99963452713943],[-87.78793358114966,41.99963477140112],[-87.78801983813278,41.999645115179156],[-87.78807009592899,41.99965336696505],[-87.78811282177885,41.9996647662217],[-87.78822549267741,41.99971403821925],[-87.7882641564371,41.99972722929885],[-87.78831168195795,41.99974095639566],[-87.78839917672141,41.99977010377717],[-87.78843267464808,41.99978513605523],[-87.78846635693462,41.99981292998067],[-87.78849239892685,41.99983945274517],[-87.78851430124811,41.99985956188154],[-87.78859591965958,41.999926386189664],[-87.78865550022881,41.99995880343462],[-87.78869186655021,41.999978267675544],[-87.7887693187558,42.00002029201055],[-87.78881945593695,42.00003842199844],[-87.78886269774475,42.000054077199906],[-87.78892646857783,42.00007833620278],[-87.78899401982473,42.00012091715244],[-87.78912496712378,42.00019291453859],[-87.7892136324448,42.00020137534249],[-87.78923998790242,42.000208388195254],[-87.78930403945846,42.00022995928193],[-87.78936614089432,42.00025588436185],[-87.78944033539308,42.00028740998056],[-87.78957221230436,42.00032809999505],[-87.78960616894847,42.000341131114816],[-87.78964571443356,42.00035454544039],[-87.78972256239847,42.00037691783272],[-87.78975600767467,42.00038519902915],[-87.78980733608111,42.00039743420666],[-87.78993257413865,42.00043961457743],[-87.78994567508198,42.0004440269661],[-87.7899749752502,42.00045525220757],[-87.79000372416853,42.00047064600874],[-87.79004798539674,42.00050060284392],[-87.79008257330419,42.00052590308716],[-87.79011530946757,42.00055273158065],[-87.7901939624937,42.00061311874959],[-87.79015067624692,42.000633578268136],[-87.78800169372632,42.00165811538491],[-87.7868633939942,42.0021982078191],[-87.78539002502411,42.0028972505333],[-87.78277726332092,42.00413198481003],[-87.78246642661335,42.004278844620224],[-87.7822008075046,42.004404296453295],[-87.78215566206318,42.00442570392975],[-87.78200533255317,42.00449667815708],[-87.78200313592458,42.00449771479073],[-87.78200312483992,42.00449772022588],[-87.78205595752205,42.00453191962907],[-87.7820914420327,42.00455497578064],[-87.78215858482554,42.00459860237519],[-87.78218059785496,42.00461321524483],[-87.7822251759777,42.00464280777621],[-87.78223185492789,42.00464724125223],[-87.78223570162267,42.00464979507949],[-87.78229061823492,42.00468982206708],[-87.78245100380137,42.00481535906061],[-87.78245101805285,42.004815370380186],[-87.78255126303051,42.00489384164214],[-87.78262025047307,42.004953474634604],[-87.78267535484684,42.00500165258895],[-87.78272857997779,42.00504892881671],[-87.7827691942658,42.00508500421159],[-87.78282947580236,42.005142976247],[-87.78291086827177,42.00522325027072],[-87.78295452709118,42.00526764110518],[-87.78296626762466,42.00527956026555],[-87.78298078854941,42.0052943030825],[-87.78298299995508,42.005296548006314],[-87.78298589450851,42.00529948719299],[-87.78302490941039,42.00534050727191],[-87.78306873636673,42.00538671058403],[-87.78310268181204,42.005422547527544],[-87.7832081314736,42.00554201394737],[-87.78320813256079,42.00554201587351],[-87.78329175562773,42.00563673229382],[-87.78333255141582,42.00568462210339],[-87.7833811419836,42.00574168657941],[-87.78347701280663,42.00585419149053],[-87.7837582917691,42.006184018565655],[-87.78382735458054,42.006265028163526],[-87.78390421255952,42.00635524063087],[-87.78399527635305,42.006462178823256],[-87.78407369950044,42.006554374757364],[-87.7841300864404,42.0066206423634],[-87.78426183708255,42.00677555137457],[-87.78435585160956,42.00688615261471],[-87.78435638851846,42.00688678442562],[-87.78444986498464,42.00699675431945],[-87.78453571999633,42.007097766331405],[-87.7846795458953,42.007264999118654],[-87.7848068688276,42.007413052467],[-87.78485091199035,42.00746446953305],[-87.78496074856969,42.00759225205752],[-87.78506085904667,42.0077087181749],[-87.78515255439771,42.00781535630955],[-87.78525473513146,42.00793505190024],[-87.78533334753341,42.008027138364696],[-87.78543243224826,42.008143196680955],[-87.78556262590428,42.00829590055751],[-87.78568328579479,42.00843626564614],[-87.78580112654585,42.00857505269484],[-87.78590530769472,42.00869774812881],[-87.78595379174719,42.008754893857734],[-87.78600201974352,42.00881187369337],[-87.78605979457026,42.00887976602027],[-87.78615931416992,42.008996950612044],[-87.78627497122942,42.00913317493097],[-87.78639894195442,42.00927832937204],[-87.78645555455302,42.0093445428245],[-87.78653264183185,42.00943453504931],[-87.78658146066167,42.00949151717597],[-87.78660960718494,42.00952435320763],[-87.7866381468307,42.00955764801224],[-87.78667449248383,42.00960002950153],[-87.78670445316884,42.009634965222155],[-87.7867317390074,42.009666746099604],[-87.78677556800608,42.00971779476692],[-87.78689408247624,42.0098558434934],[-87.78692276580392,42.0098892807843],[-87.7869288758304,42.0098964033265],[-87.78708154785399,42.0100764844766],[-87.78720827838119,42.01022596529862],[-87.78724624175423,42.01027013500441],[-87.78733248147668,42.010370214231514],[-87.7873985382292,42.01044670741052],[-87.78749822349285,42.01056230024724],[-87.78759280536971,42.010672270310295],[-87.78769178895448,42.01078824382573],[-87.78778224454877,42.010894627216786],[-87.78782843370129,42.01094948355129],[-87.7878964052966,42.01103021104086],[-87.78797932347857,42.011127420030654],[-87.78806502094346,42.01122659053622],[-87.7881502789418,42.01132567656346],[-87.78821185261687,42.011397290481334],[-87.78828920312793,42.01148728329892],[-87.78834913930697,42.01155691354965],[-87.78872274095588,42.01199671562071],[-87.78797909270088,42.01200734359801],[-87.7878193883975,42.01200803777915],[-87.78778604928172,42.012008182566525],[-87.78742758064993,42.01199462341943],[-87.78723504733269,42.01199184128287],[-87.78672600198561,42.01199171197059],[-87.78652985357276,42.011991662486075],[-87.78651640769833,42.01199165880627],[-87.78637391162917,42.011993188700316],[-87.78626325946544,42.01199437623442],[-87.786068332038,42.01199616380111],[-87.78571711968993,42.011998961833875],[-87.7855022137916,42.01200040697204],[-87.78526747679922,42.01200161844186],[-87.78503318608617,42.012002365325564],[-87.78477821946633,42.012002574677936],[-87.7847643698748,42.01200257737054],[-87.78434361167349,42.01200266454629],[-87.78387989743166,42.012002778374075],[-87.7837430085883,42.01200338564548],[-87.78358709917293,42.01200351719964],[-87.78346993812715,42.01200353230369],[-87.78311249868659,42.01200310927724],[-87.7828655574727,42.012002802914104],[-87.78268981934987,42.01200242652968],[-87.78245510366139,42.01200116340303],[-87.78207067905218,42.011997918318336],[-87.78180908017563,42.01200341267606],[-87.78180907097445,42.01200341290627],[-87.78153783854209,42.01200913367962],[-87.78142023799114,42.01200895275986],[-87.78126396419813,42.012008667778034],[-87.78108829884262,42.01200834417527],[-87.78062951747535,42.011999796691704],[-87.78043595903792,42.011996195539176],[-87.78036683090268,42.01199490894157],[-87.77998327294607,42.01199358224741],[-87.77997985871717,42.011993565788494],[-87.77996962154984,42.011993516437755],[-87.77979111600214,42.01199271476192],[-87.77971963445702,42.01199239335684],[-87.77933811219324,42.01199182266516],[-87.77933790687116,42.01199182222306],[-87.77933765260667,42.011991822093584],[-87.77929504987297,42.01199175807258],[-87.77928023384693,42.01199173622947],[-87.77926623065353,42.01199171528932],[-87.77926623016413,42.01199172928232],[-87.77926053705151,42.012109331460366],[-87.77925980888482,42.01214231199832],[-87.77924366993702,42.01234715420072],[-87.77923011748807,42.012519166154426],[-87.77922094033521,42.01263536513717],[-87.77921709822888,42.01268442859912],[-87.77921709821221,42.012684430519975],[-87.77921709819553,42.01268443244083],[-87.77921183588175,42.01275162072363],[-87.77920972226403,42.01277862376392],[-87.77920273166194,42.0128679300942],[-87.7791935530389,42.01298407417676],[-87.77919027116032,42.013025651723446],[-87.77918437562086,42.013100329676064],[-87.77917726419815,42.01319108297583],[-87.77917725630417,42.013191186942464],[-87.77917527041227,42.01321652871618],[-87.7791660929349,42.01333278283689],[-87.77915691662704,42.01344898289963],[-87.77914781083075,42.01356523736019],[-87.77914597156104,42.01362247499002],[-87.77914597153246,42.013622478282905],[-87.77914397828613,42.01368448154911],[-87.77914260479987,42.01374452461466],[-87.77914125035814,42.01380372997089],[-87.77913907702572,42.01390152316382],[-87.77913859599832,42.01392298011741],[-87.77913589238212,42.01403959477985],[-87.7791354950758,42.014066582224736],[-87.77913409799072,42.014161427786775],[-87.77913136963446,42.014280677568436],[-87.77913042798234,42.01431115189325],[-87.77912926426772,42.01434880888064],[-87.77912926325783,42.01434884043392],[-87.77912768528978,42.014399922731904],[-87.77912488332272,42.01451917105539],[-87.77912215493156,42.01463842028041],[-87.77912202272927,42.01464517061824],[-87.77911942689099,42.01475767005342],[-87.77911864845157,42.01479172276102],[-87.77911864674016,42.01479179272954],[-87.77911670032162,42.01487691845889],[-87.77911417944019,42.014988114213416],[-87.7791126097537,42.015057354010885],[-87.77911097379743,42.01512952153555],[-87.77911006655994,42.01516887127286],[-87.77911005886735,42.01516920630101],[-87.77910377185259,42.01544193911403],[-87.77903501046791,42.01544435209728],[-87.77888351140432,42.01543999753409],[-87.77872980379081,42.01543563264887],[-87.77865914337254,42.01543362330389],[-87.7785716822291,42.01543113618329],[-87.77841348746323,42.015426639420404],[-87.77825536484447,42.015422142788395],[-87.77809716938711,42.01541764613508],[-87.77793904755353,42.01541314907114],[-87.77783372027001,42.01541011748488],[-87.77778085263024,42.01540859627748],[-87.77762273084606,42.01540409877806],[-87.77751868216836,42.015401130171924],[-87.77734702970513,42.015396232531685],[-87.77719808438589,42.01539199925316],[-87.77697221681007,42.01538557960921],[-87.77697357790079,42.01533070328477],[-87.7769788777669,42.01511291184949],[-87.77698149034609,42.01500555571116],[-87.77698516036199,42.01485464236641],[-87.77698802894676,42.01473665593257],[-87.77699089787697,42.0146186705956],[-87.77699376595514,42.014500739312496],[-87.77699663266361,42.01438275258767],[-87.77699845667782,42.01430772929855],[-87.77699950119418,42.014264766418016],[-87.77700237045012,42.01414677997496],[-87.77700439554488,42.01406346005642],[-87.77700443225223,42.01406195038215],[-87.77700523857725,42.01402879489604],[-87.77700810523392,42.013910808160986],[-87.77701097408064,42.01379282198288],[-87.77701144481894,42.01377262758957],[-87.77701391529496,42.01367489076236],[-87.77701678312445,42.01355684941617],[-87.77701965070843,42.013438919205896],[-87.77702251950559,42.013320932743156],[-87.77702652924782,42.01315630088112],[-87.77702835760978,42.01308144444322],[-87.77703202308702,42.01293135867165],[-87.77703563278189,42.01278256239427],[-87.77704377577221,42.0124469154261],[-87.77704499985364,42.01239646999901],[-87.77704666301402,42.012328108793774],[-87.77705210898455,42.01210424835258],[-87.77705211360141,42.0121037607326],[-87.77705324227223,42.01198263331708],[-87.77705324480195,42.01198234299416],[-87.77705324482585,42.011982340250086],[-87.77705324492389,42.01198232899938],[-87.77698999066024,42.01198193846731],[-87.77694356117655,42.01198165168178],[-87.77693045340567,42.0119815708573],[-87.77658617171798,42.011979445158],[-87.77657741456204,42.01197939115756]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7378997.68333","perimeter":"0.0","tract_cent":"1163716.40695915","census_t_1":"17031070700","tract_numa":"21","tract_comm":"7","objectid":"838","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917506.99640763","census_tra":"070700","tract_ce_3":"41.92927253","tract_crea":"","tract_ce_2":"-87.67380724","shape_len":"12049.4621558"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67396337194776,41.92507512203681],[-87.6744762117766,41.92506833159853],[-87.67450903057956,41.925736165536705],[-87.67451286991071,41.92595232265618],[-87.67455456906823,41.92614246221145],[-87.67466641420967,41.926315303913825],[-87.6747461013612,41.92643134771866],[-87.67493827585014,41.926657942698235],[-87.67583066903008,41.92722559472252],[-87.67585841688685,41.927240245583214],[-87.67652350994794,41.92759141339209],[-87.67720225966569,41.9278449360561],[-87.67778988372189,41.92802255066292],[-87.67809995767988,41.92808544126388],[-87.67828917663748,41.92812381901637],[-87.67949568036234,41.92841383370889],[-87.67970518413087,41.92846420300716],[-87.6798398977651,41.92860533681714],[-87.67985109324515,41.92863104722113],[-87.6799508148949,41.928860055657076],[-87.68001238770361,41.928986317007904],[-87.68016031158092,41.92928964824519],[-87.68027842386346,41.92954896308241],[-87.68032153846767,41.92963828576354],[-87.68039977943809,41.929800283101294],[-87.6804747688471,41.92992804143879],[-87.68054085888963,41.930070760025785],[-87.68070270440853,41.93042038840466],[-87.68074218773178,41.93050557394242],[-87.68080468425018,41.930640450907326],[-87.68129420644861,41.93093497012588],[-87.68131335617272,41.930945506916515],[-87.68208834887359,41.93137114331596],[-87.68214868660856,41.93140427898387],[-87.68252724845684,41.93181309157494],[-87.68284169128384,41.932152632249974],[-87.68284015971246,41.93222871287953],[-87.68271179125409,41.93223082005502],[-87.68252219883344,41.93223394422778],[-87.68233481792811,41.932236394570914],[-87.6820762471591,41.9322392641037],[-87.68157916962365,41.93224511531487],[-87.6812846463944,41.932248904109734],[-87.68098774499637,41.93225171815986],[-87.68069231028811,41.93225478566121],[-87.68041892875796,41.93225762325624],[-87.68003513156948,41.932262081170094],[-87.67953804985642,41.932268307984984],[-87.67921695332895,41.93227235151802],[-87.67886000199698,41.9322749853448],[-87.6787511014429,41.932275788802926],[-87.6785642626881,41.93227914140101],[-87.67824661365857,41.932283830306474],[-87.6781352863089,41.9322846810795],[-87.67746364424721,41.932293935578414],[-87.6771715763996,41.932297101889844],[-87.67689504557706,41.93230009887942],[-87.67637428574247,41.93230730120229],[-87.67593703856036,41.93231305894175],[-87.67566482900902,41.93231606975122],[-87.6754041274397,41.93231895266539],[-87.67515834411951,41.932321907332366],[-87.67478364144955,41.93232638884488],[-87.67478333233663,41.93232639256038],[-87.67449663567719,41.93232970691191],[-87.67412305844697,41.93233402477983],[-87.67380806555413,41.932337645035204],[-87.67356046001407,41.93234049031526],[-87.6735400825551,41.93234072448008],[-87.67341879144998,41.93234211770048],[-87.67336415408506,41.9323427454776],[-87.67327379285582,41.932343783396135],[-87.67308016563257,41.932346007369084],[-87.67299118191275,41.93234707164713],[-87.6723844961271,41.93235432614855],[-87.67206474911677,41.93235846446973],[-87.67131468219183,41.93236816844875],[-87.67082610106931,41.93237337966572],[-87.67035280554555,41.93237842514657],[-87.66996790148347,41.9323835987708],[-87.66961257677433,41.93238837349283],[-87.66924751572606,41.932393277958255],[-87.66905774721198,41.932395559451265],[-87.66899915529703,41.93239626490582],[-87.66839400828434,41.932403540975635],[-87.66837610611095,41.93198019641043],[-87.6683759765786,41.93197278242211],[-87.66836587065026,41.931394657589884],[-87.66833816436986,41.93065619951863],[-87.66833464203333,41.93056231906016],[-87.66831880322708,41.93012002345693],[-87.66829358142923,41.92941354210682],[-87.66828753809523,41.92922149388441],[-87.66828579001354,41.92916594070326],[-87.66827976889483,41.928988491863294],[-87.66827152030224,41.92877620922736],[-87.66826167451669,41.92852282973557],[-87.6682231989744,41.92734827163394],[-87.66820925763864,41.92696371067581],[-87.66818318162613,41.926244422992696],[-87.66817681734842,41.92605643452659],[-87.66816663030038,41.92575552599537],[-87.66816192740261,41.92561660644997],[-87.66815270040162,41.92534405869945],[-87.668145814809,41.92515157982746],[-87.66853811515772,41.925146451500304],[-87.66868330061394,41.925144552722884],[-87.6691330337379,41.92513847462114],[-87.66930752209313,41.9251361158557],[-87.66971981415173,41.92513054257463],[-87.67063963985498,41.9251180999245],[-87.6707767107551,41.92511655890884],[-87.6712263689971,41.92511150290499],[-87.67159781154503,41.92510732534442],[-87.67162037665057,41.9251070711975],[-87.67164742564461,41.92510666945079],[-87.67169137483957,41.925106016567526],[-87.67175328233053,41.92510509721996],[-87.67177685050989,41.9251047470111],[-87.67250703906987,41.925093898863004],[-87.67266267308969,41.925091585924335],[-87.67277086792366,41.92509026276079],[-87.6732717327493,41.92508413575583],[-87.67341192217225,41.925082420443815],[-87.67391672117625,41.92507573941868],[-87.67396337194776,41.92507512203681]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5157947.92623","perimeter":"0.0","tract_cent":"1124779.61620516","census_t_1":"17031090300","tract_numa":"26","tract_comm":"9","objectid":"832","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1942690.05338305","census_tra":"090300","tract_ce_3":"41.99911042","tract_crea":"","tract_ce_2":"-87.81633235","shape_len":"12433.7801717"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.80891234318742,41.99727872507129],[-87.80680802486918,41.99609232316794],[-87.80680876299623,41.996043477362],[-87.80681282144394,41.99577492928393],[-87.8068161172601,41.99555685749388],[-87.80681811925209,41.99539194064286],[-87.80723991417139,41.99539519141499],[-87.80735109100735,41.99539653374093],[-87.80742151497448,41.9953973838341],[-87.8079286496281,41.99540350486762],[-87.80822149739511,41.99540536623539],[-87.8085132413861,41.99540724925176],[-87.80886461458064,41.99540948630056],[-87.80935860407232,41.99541267519237],[-87.81002121730106,41.99541695981661],[-87.8103333989158,41.99541965227502],[-87.81033007028122,41.99561619689743],[-87.81032862848205,41.995747363002465],[-87.81032736314803,41.99586596148114],[-87.81032581820553,41.99600972297956],[-87.81032198360708,41.99631442125145],[-87.81031907944977,41.996545195332764],[-87.81035351295509,41.99712427418468],[-87.81093528001075,41.99712502909877],[-87.81111907365326,41.99712056328916],[-87.81154741363993,41.9971096956759],[-87.81208934296535,41.997095939491516],[-87.81216179425073,41.997094061565235],[-87.81290054692157,41.997074911860466],[-87.81306778454584,41.997070576154606],[-87.81357746025243,41.997056915658504],[-87.81400755958539,41.997045386575735],[-87.81463456009045,41.997029368499604],[-87.81553862982358,41.9970065972121],[-87.81576172191333,41.99700097687327],[-87.81669395587613,41.996976929413826],[-87.81717004501868,41.99696464568535],[-87.81770976968771,41.99695022188414],[-87.81830490896704,41.996934315334435],[-87.81901063695564,41.996917641647926],[-87.81940806299649,41.99690824996163],[-87.81979328445091,41.99689735116955],[-87.82002528683898,41.99689078684167],[-87.82056762092606,41.99687652400044],[-87.8208609941763,41.9968688075878],[-87.82110958227692,41.99686283705683],[-87.82136021776776,41.996852713267806],[-87.82141432291598,41.996850530061735],[-87.82141401213255,41.996852769862436],[-87.8214044459687,41.99692164334748],[-87.82140574020713,41.99733852078938],[-87.82140495944448,41.99740711210162],[-87.82140312906925,41.997567923812085],[-87.8214006409756,41.99778651550979],[-87.8213978693787,41.998256161865754],[-87.8213978667274,41.99825658446035],[-87.82139723072027,41.99836352272454],[-87.82139688368007,41.99842054559924],[-87.82139586769722,41.9986115646466],[-87.82139582139523,41.99862193146872],[-87.8213956361649,41.998663401501084],[-87.82139478659319,41.998833702593615],[-87.82139440586909,41.998881202949214],[-87.82139364793726,41.998975764603365],[-87.82139282564978,41.99909203284237],[-87.82139276256001,41.999100959708535],[-87.8213902952813,41.999449123913465],[-87.82138891316751,41.99958479056913],[-87.82138747686199,41.99972726286237],[-87.8213859504592,41.9998764303158],[-87.82138594320064,41.999877335868355],[-87.82138456976277,42.00000989721965],[-87.82138447962369,42.000018572320926],[-87.82138447726958,42.000018820111386],[-87.82138252713696,42.000161180883225],[-87.82138032052308,42.00031717834102],[-87.82138083329673,42.000482738000535],[-87.82138102409405,42.00054604746261],[-87.8213744400857,42.00061012280076],[-87.82137387723873,42.00062526304046],[-87.82137387721893,42.00062526551015],[-87.82137387719693,42.000625268254254],[-87.82136929980979,42.0007472976177],[-87.82136611070551,42.00083231039521],[-87.82136563172374,42.000864525122935],[-87.82136618235181,42.00092429589813],[-87.8213670232673,42.001016696734325],[-87.82136750759517,42.00107106169468],[-87.82136530928604,42.00111586461316],[-87.82136426726743,42.001176918329186],[-87.82136309850704,42.00124469503406],[-87.8213612636986,42.00138642402677],[-87.82136034593128,42.001457402129894],[-87.82135932829075,42.0015361112843],[-87.82135860200384,42.001617485528],[-87.82135860187624,42.00161750144378],[-87.82135789433741,42.0016920849829],[-87.82135731301287,42.001759919185545],[-87.8213572501339,42.00184128403602],[-87.82135721507912,42.001867226683224],[-87.82135719850385,42.001879757979246],[-87.82135713329296,42.00195673237889],[-87.8213568638263,42.002004205488426],[-87.82135621157211,42.00213136888104],[-87.82135586948766,42.002192397442734],[-87.82135407721583,42.00229664171375],[-87.82135350482646,42.00233132634144],[-87.8213514490899,42.002450168005986],[-87.82135092436361,42.00252475317291],[-87.82135038188916,42.00260614112013],[-87.82135038187377,42.00260614304099],[-87.82134989328142,42.00268094735384],[-87.82134980498326,42.00268728028853],[-87.821349713949,42.002693816830295],[-87.82134911154087,42.002737063485604],[-87.82134859400723,42.00277481718892],[-87.82134849123912,42.00278231250012],[-87.82134663010889,42.002918086708014],[-87.82134588698403,42.003006281828654],[-87.82134539770662,42.00306731082222],[-87.82134433456804,42.003176881244585],[-87.8213438229632,42.00323151643654],[-87.82134298008945,42.00331833873552],[-87.82134218003688,42.00339972771798],[-87.8213416347182,42.00345397829573],[-87.8213403264969,42.003589618018445],[-87.82134003686895,42.00361656499534],[-87.82133965631529,42.003655311879115],[-87.82133963548242,42.003657451434954],[-87.82133883578494,42.0037388404142],[-87.82133818199428,42.003806619385514],[-87.82133770738896,42.003861226745705],[-87.82133757126114,42.003924095366976],[-87.82133968106461,42.003979650297985],[-87.8213417286768,42.00403355514117],[-87.82134504495282,42.00412086002201],[-87.82121854254717,42.00414049327505],[-87.82118800886161,42.004168313534535],[-87.82118251722012,42.004173317221],[-87.8199553410409,42.00349220128807],[-87.81707688284658,42.00187238204456],[-87.81344089306714,41.999818247302144],[-87.8134309361129,41.99981266414417],[-87.8120643576988,41.999046374199516],[-87.8116921889791,41.9988378394916],[-87.8115370063246,41.99875069173312],[-87.80891234318742,41.99727872507129]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3216685.68099","perimeter":"0.0","tract_cent":"1175149.51226107","census_t_1":"17031081000","tract_numa":"19","tract_comm":"8","objectid":"833","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1907026.90099841","census_tra":"081000","tract_ce_3":"41.90026569","tract_crea":"","tract_ce_2":"-87.63210922","shape_len":"7723.87283861"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63383502305997,41.896600773951036],[-87.63420286755138,41.89659580880609],[-87.63420872465717,41.896744954416235],[-87.63421532641487,41.89693440172987],[-87.63422145109539,41.89710027315231],[-87.6342272106032,41.89724237727047],[-87.63423344763338,41.89741903421127],[-87.63424014691842,41.89760881140364],[-87.63424651425625,41.89778615518471],[-87.63425038575265,41.89789257273859],[-87.63425681658147,41.8980707676098],[-87.63426200617035,41.89820411412458],[-87.63426786297266,41.898354588721816],[-87.63427160162453,41.89844961688258],[-87.6342781045089,41.898627949386054],[-87.63428477505752,41.89880441682504],[-87.63429136349875,41.89898167958644],[-87.63429755663643,41.8991480730426],[-87.63430685419898,41.89937332122258],[-87.63431605848638,41.8996206324668],[-87.6343222949511,41.89976534699366],[-87.63432936652714,41.89992941262558],[-87.63433663400647,41.90011856201609],[-87.63434406002388,41.90032008885896],[-87.63435381349889,41.90054272972484],[-87.63435961834261,41.90067523250482],[-87.6343655190916,41.90086505988298],[-87.634374525702,41.90113723261004],[-87.63438160643229,41.90132459679605],[-87.63438701213515,41.90146760452177],[-87.63439152573476,41.90157789528111],[-87.63439709839157,41.90171489387165],[-87.63440407807565,41.901883239888576],[-87.6344123293407,41.90210414597323],[-87.63441889089188,41.90227981708342],[-87.63442767201094,41.90251883831244],[-87.63443687736473,41.90274924522296],[-87.63444202708033,41.90288418276104],[-87.63444647641793,41.90300078510947],[-87.63445429274168,41.90319358756296],[-87.63446299119984,41.90341992989615],[-87.63447250475855,41.9036591476293],[-87.63447783251493,41.9038534601581],[-87.63419286368504,41.903856182659936],[-87.63392295153547,41.90386173518138],[-87.63388922133241,41.903862429015525],[-87.63364834826926,41.90386628537958],[-87.6331811574273,41.90387315230177],[-87.63300158703785,41.903876618726514],[-87.63292055347682,41.903878182658026],[-87.63284733755677,41.903879596088395],[-87.63261885556305,41.90388386396945],[-87.63219596715615,41.90388880677092],[-87.6319568120094,41.9038918879693],[-87.63144510787805,41.90390085847408],[-87.63071597937311,41.9039136134254],[-87.63041322964334,41.90391853607373],[-87.62998608505922,41.903923187272305],[-87.62997889621342,41.90367614070272],[-87.62996289955477,41.903154388927526],[-87.6299494112713,41.90271443553002],[-87.62993624980471,41.90226690809725],[-87.62992464340215,41.90186365874383],[-87.62991563128313,41.90155056452011],[-87.62991396492224,41.90149267844231],[-87.6299027914623,41.90101138130699],[-87.62990000181341,41.90092387806754],[-87.62988880302744,41.90057254569684],[-87.62987918329011,41.90027076023239],[-87.62986454551367,41.899911724271035],[-87.6298602726425,41.89980692407928],[-87.62984341237012,41.899393374262566],[-87.62983868907348,41.899117879128895],[-87.62983242398356,41.89875244571054],[-87.62982714092792,41.89844429072919],[-87.62982442183818,41.8982856850449],[-87.62981546740436,41.89798888843515],[-87.62980104410899,41.897510816972385],[-87.62978046359953,41.89702995582629],[-87.62977463923221,41.89665552470661],[-87.63019410541155,41.89664983323784],[-87.63051734121606,41.896645724472904],[-87.63070487588227,41.89664333258341],[-87.63124523381798,41.8966356431062],[-87.631812431761,41.896627569228066],[-87.6319826299542,41.89662514590453],[-87.63201453302503,41.89662462423115],[-87.63270950976829,41.896613255436456],[-87.63278624217048,41.89661334157755],[-87.63296312432391,41.896610360979636],[-87.63350220759457,41.89660431720995],[-87.6336283913119,41.89660297391105],[-87.63383502305997,41.896600773951036]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1862551.82961","perimeter":"0.0","tract_cent":"1168286.14234859","census_t_1":"17031061100","tract_numa":"12","tract_comm":"6","objectid":"839","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1924782.72130309","census_tra":"061100","tract_ce_3":"41.94913977","tract_crea":"","tract_ce_2":"-87.65680391","shape_len":"5465.09806039"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65897675735287,41.94715166265633],[-87.65916841268226,41.94714851051929],[-87.6591654629956,41.94725444397233],[-87.6591706817904,41.94744643231558],[-87.65917555061984,41.94762275902108],[-87.65918246867959,41.947873308950676],[-87.65918567794678,41.948059221037795],[-87.65918760482403,41.94817083920536],[-87.65919332899493,41.948381161550074],[-87.65919622157062,41.948487407274065],[-87.65919939796962,41.94860408239528],[-87.65920345413939,41.94875295229054],[-87.65920701133135,41.948882856745286],[-87.65921040367925,41.94896749005782],[-87.65921434684964,41.949065856445635],[-87.65921882802212,41.94922669358883],[-87.65922315689251,41.94938105349276],[-87.65922907674707,41.949597661460835],[-87.65923077429282,41.94965244589781],[-87.65923302695556,41.949750317719975],[-87.65925383750063,41.9505948763695],[-87.65926948932457,41.95104756637818],[-87.65882839493172,41.95105374686517],[-87.65829472462481,41.95106095601346],[-87.6575694638731,41.95107406911674],[-87.65727895416913,41.9510793203474],[-87.65698451834862,41.95108393904805],[-87.65680645268283,41.951086731818066],[-87.65670405459652,41.951088337749304],[-87.65649370685566,41.95109163625737],[-87.65624453201556,41.95109554321289],[-87.65615588466808,41.951096933099514],[-87.65565257442778,41.95110521763902],[-87.655059939801,41.951114969534345],[-87.65444445190778,41.95112446523655],[-87.65443888372134,41.95094084651849],[-87.65443007139973,41.95065024667101],[-87.65441655530033,41.95016411204816],[-87.65440273622644,41.949721855534996],[-87.65439805434941,41.94951376172298],[-87.65439221523005,41.94931578720141],[-87.65438856312268,41.94919224863124],[-87.65438397797558,41.94904342815379],[-87.65437882914547,41.948876332277926],[-87.65436970249345,41.94857243914739],[-87.65436064534786,41.94826893060111],[-87.6543526587682,41.94800310640579],[-87.65434843135701,41.947857583262596],[-87.65434407805387,41.94769825625648],[-87.65434199779163,41.94762211922331],[-87.65433810603338,41.947479644405725],[-87.65433036397808,41.94724458781156],[-87.6545892558668,41.947239720762155],[-87.65492940937146,41.94723448645493],[-87.65493823306804,41.94723435061377],[-87.65522845909237,41.94722988652685],[-87.65556482566433,41.947224710296545],[-87.6555762229806,41.94722453059858],[-87.65583244102427,41.94722058183531],[-87.656010164633,41.94721787086738],[-87.65617575606508,41.94721530760665],[-87.65631281759244,41.94721317960276],[-87.65651625588559,41.94720205287289],[-87.65684907960221,41.94718384881553],[-87.65702041522367,41.94718160604943],[-87.65713095272348,41.94718015835641],[-87.65738154433457,41.947176362622535],[-87.65740360385429,41.94717602844882],[-87.65773865432865,41.94717012460479],[-87.65782615791426,41.94716858131447],[-87.65827323313427,41.94716083773035],[-87.65862065970128,41.94715607432207],[-87.65884425937824,41.94715329925033],[-87.65897675735287,41.94715166265633]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"891730.275958","perimeter":"0.0","tract_cent":"1170929.93057616","census_t_1":"17031061800","tract_numa":"5","tract_comm":"6","objectid":"840","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1923838.0065631","census_tra":"061800","tract_ce_3":"41.94648976","tract_crea":"","tract_ce_2":"-87.64711363","shape_len":"3942.61380621"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6452558256927,41.94744458974777],[-87.64515229895667,41.94727484346147],[-87.64508013552287,41.94715566882971],[-87.64498953370229,41.94700852710747],[-87.6449366675714,41.9469226692018],[-87.6449153192051,41.94688799787627],[-87.64479647921074,41.94669305016617],[-87.64470710413134,41.94654649816436],[-87.64466972845474,41.94648521168863],[-87.64456113430204,41.94630497900034],[-87.64442595552087,41.946080754480505],[-87.6447257887896,41.945979405357605],[-87.64497290702757,41.94589493848522],[-87.6452574714396,41.945797742816985],[-87.64556941128076,41.94569110568639],[-87.64581641667502,41.94560663631486],[-87.64595539684845,41.94555906055138],[-87.64614785126656,41.945501782824195],[-87.64622529433832,41.945478733899705],[-87.64631324795477,41.94546589591681],[-87.64659601500412,41.94546388291614],[-87.6469625349205,41.94546025689616],[-87.64713881496276,41.94545839596813],[-87.64730442688054,41.94545664720405],[-87.64752062844445,41.94545426160558],[-87.6477532992669,41.945451699522735],[-87.6479680235614,41.94544999278348],[-87.64820281889313,41.94544812605513],[-87.64859463102728,41.94544428872768],[-87.64890969459108,41.94544192916387],[-87.64898628641792,41.945441355267846],[-87.6492189098571,41.945439777848755],[-87.64942984967314,41.94546126461382],[-87.64943888065075,41.945703791875445],[-87.64944292510357,41.94586531290974],[-87.64944931295314,41.946120590214086],[-87.64945669582782,41.94637016519662],[-87.64946605514197,41.94668654690156],[-87.64947828153421,41.94710406907466],[-87.64948621917233,41.947314822749384],[-87.64919888753975,41.947305640950255],[-87.64864142833054,41.94730926069264],[-87.64800871994547,41.947313495530985],[-87.64763350339972,41.94731778944917],[-87.6474281610012,41.94732163994812],[-87.64738004742547,41.94732464555375],[-87.64727640671263,41.94735358365702],[-87.64712553485087,41.94739570907568],[-87.6469353488302,41.94746007655681],[-87.64671450353373,41.947534853029886],[-87.64641573970535,41.9476359738681],[-87.64614497645329,41.94772762933854],[-87.64589066665438,41.94781375705082],[-87.64571069985294,41.947874506438836],[-87.64554887514414,41.947929134042106],[-87.64547305985809,41.9478015959365],[-87.64535624657827,41.94760929541762],[-87.6452558256927,41.94744458974777]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1732905.76207","perimeter":"0.0","tract_cent":"1164416.62022297","census_t_1":"17031062500","tract_numa":"10","tract_comm":"6","objectid":"841","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1921964.08919788","census_tra":"062500","tract_ce_3":"41.94148823","tract_crea":"","tract_ce_2":"-87.67110766","shape_len":"5263.29801075"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67294050395813,41.9396391826648],[-87.67343994609232,41.939632610038444],[-87.67343962713305,41.939804144848466],[-87.67344746446173,41.940234675264826],[-87.67347320114597,41.940544028945936],[-87.67349939650337,41.940858898921746],[-87.67350375808648,41.94099575064209],[-87.67350933880329,41.941170863747374],[-87.67351488186648,41.941455089155625],[-87.67352246762195,41.94184401293379],[-87.67352426665381,41.94190692126234],[-87.67352995167516,41.94210568980922],[-87.67353264434405,41.942279112311354],[-87.67353400800819,41.94236695949114],[-87.67353525127842,41.94244701844106],[-87.67354039986068,41.94277857677574],[-87.67354132784126,41.94282026674978],[-87.6735452000345,41.942993942988046],[-87.67355971293233,41.94327665701997],[-87.67310329616046,41.943283606799106],[-87.67265182298335,41.9432893247136],[-87.67230284206798,41.94329371003796],[-87.67196911715732,41.94329791818841],[-87.6716484791009,41.94330196039717],[-87.67119330947996,41.94330876981469],[-87.67073220221786,41.94331566610169],[-87.67058217320876,41.94331778313379],[-87.67050383628634,41.943318888531344],[-87.67041200052563,41.94332018431974],[-87.6702669355759,41.94332222806568],[-87.67006038130646,41.94332513101379],[-87.66998248115333,41.94332622568094],[-87.66958329894493,41.94333183434978],[-87.6695243324734,41.94333267345585],[-87.66937099342468,41.94333493030417],[-87.66920570904163,41.94333736208692],[-87.66894413367862,41.94334202760909],[-87.6687632986905,41.94334336987307],[-87.66875600625738,41.943073428301645],[-87.66875435010348,41.943013457604145],[-87.66875245497906,41.94294528031796],[-87.66873791876061,41.94242228585913],[-87.6687268152086,41.942022800947385],[-87.66871209351503,41.941523325184],[-87.66869645557657,41.94099274825642],[-87.66867982433969,41.940608485521444],[-87.66867510026067,41.94013272430432],[-87.66866167476945,41.939696500752774],[-87.66898202139578,41.93969228844454],[-87.66912354740838,41.93969042671333],[-87.66943619703,41.939685866471635],[-87.66975671266198,41.939681190303766],[-87.67109438252268,41.93966380593224],[-87.67141760372505,41.939659603132995],[-87.67193084879926,41.93965270912987],[-87.67276100429171,41.93964154440329],[-87.67294050395813,41.9396391826648]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"8165038.24897","perimeter":"0.0","tract_cent":"1173609.04794114","census_t_1":"17031081800","tract_numa":"56","tract_comm":"8","objectid":"834","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1904445.41517689","census_tra":"081800","tract_ce_3":"41.89321636","tract_crea":"","tract_ce_2":"-87.63784421","shape_len":"13984.5417502"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63417080682021,41.89546640370693],[-87.63416473575155,41.89524172358352],[-87.63416054097978,41.895087581744185],[-87.63415509701201,41.89488623143185],[-87.63415257578545,41.894792592345006],[-87.63415051019062,41.894715841316824],[-87.63414886835317,41.89465586975659],[-87.63414563319822,41.894521409919086],[-87.63414216074777,41.89437506608971],[-87.63413845392924,41.894216536419286],[-87.63413552670528,41.8940942902992],[-87.63413279103617,41.89398906619625],[-87.634131787754,41.89395046130115],[-87.63412980870338,41.893874332358116],[-87.63412583944779,41.893739868032284],[-87.63411717604116,41.89344648380632],[-87.63411465362903,41.89336117756388],[-87.63411054862681,41.89318865230156],[-87.63410654457432,41.89302037627658],[-87.6341004755853,41.892788835475464],[-87.63409799952626,41.892679078351335],[-87.63409455352837,41.8925202209132],[-87.63408846738702,41.892388585871686],[-87.63408740588642,41.89236562633193],[-87.63408156724606,41.892239351740606],[-87.63407939971376,41.89210467880768],[-87.63407738815248,41.89198271236699],[-87.63407484927454,41.89182487580096],[-87.63407320129373,41.89172678671087],[-87.63406855846637,41.891587119548106],[-87.63406224996311,41.891397356604955],[-87.63405867917204,41.89121964545631],[-87.63405669037735,41.891119166793416],[-87.63405500475025,41.89103463399791],[-87.63405266154005,41.890909372703604],[-87.63404926877433,41.89078548317175],[-87.63404465043682,41.890616843016296],[-87.63404095637271,41.89049418051315],[-87.63403429877606,41.890249326467945],[-87.63403197013326,41.89013957019242],[-87.63402835923127,41.889982651855746],[-87.63402384664998,41.889786611646564],[-87.63402264609675,41.88968794895609],[-87.63402184600126,41.88957624231727],[-87.63402168526936,41.88955380471701],[-87.6340211447651,41.88940802746193],[-87.63402176873146,41.88931044585448],[-87.63400656419078,41.88916588500212],[-87.63398965800563,41.88900514609735],[-87.6339887569119,41.88885876289991],[-87.6339877708317,41.88870000238828],[-87.63398686823761,41.88855375666039],[-87.63398660559238,41.888511234995185],[-87.63398492963563,41.888236593120475],[-87.63397952387207,41.88809660042301],[-87.6339722143161,41.88790734416374],[-87.63397212168024,41.88788283973608],[-87.63397201325819,41.887854159577294],[-87.63397117519177,41.887659203693396],[-87.6339706484456,41.88752779503914],[-87.63414132140244,41.88752127147267],[-87.63426569727096,41.88751898257231],[-87.6348399767125,41.88746761971069],[-87.63520350307333,41.8874656590397],[-87.63561908583131,41.88745204862369],[-87.63579691662326,41.887427689831625],[-87.6358372179717,41.88740861599622],[-87.63597547453074,41.887343181440855],[-87.63684403469969,41.886807754956465],[-87.63708682119955,41.886675939458016],[-87.63727049078629,41.886556608175816],[-87.63743969853283,41.886419625822086],[-87.63758838582008,41.886234137108836],[-87.63839249552377,41.88672649372164],[-87.63854658837455,41.8868573763259],[-87.63856385462731,41.88687204227687],[-87.63876516586564,41.887161542481905],[-87.63884785954822,41.887372772808526],[-87.63891793277041,41.88763711012427],[-87.63894935046437,41.8877372178785],[-87.63899015817694,41.88785876002696],[-87.63900091019882,41.88788467577652],[-87.63900873873142,41.88791620228489],[-87.6390128606478,41.887932799671084],[-87.63904233663413,41.888052846278484],[-87.63906376812264,41.88813574212035],[-87.63920199263781,41.88844878985212],[-87.63921102361402,41.88850075008494],[-87.63921893307302,41.88854625786787],[-87.63922613205784,41.88863782176932],[-87.63925901357446,41.888785962461206],[-87.63927826837406,41.8888528187392],[-87.63932006437793,41.88896124925806],[-87.63936098293495,41.88908028505862],[-87.63943528455961,41.889228301402],[-87.63954065418703,41.8893536911664],[-87.63959663491038,41.88941725663671],[-87.63964050079603,41.88946680816248],[-87.63971711756008,41.889554537762784],[-87.63978968497146,41.88963637018358],[-87.63987549426145,41.88972991809559],[-87.6399898635334,41.88985252424213],[-87.63999929572181,41.889862636082114],[-87.64012224895971,41.88999919074704],[-87.64020324745537,41.89009279169616],[-87.64029904578553,41.89020349618598],[-87.64041394816594,41.89033744980304],[-87.64066876156893,41.89064310360472],[-87.64068444441929,41.890666722362106],[-87.64086337058866,41.89093618194316],[-87.64093914766914,41.891044130685195],[-87.64103723856908,41.891184294046255],[-87.6410920109446,41.89126821373625],[-87.64116075393856,41.89138484660225],[-87.641178097946,41.8914127530211],[-87.64119165541362,41.89143456635965],[-87.64126742859817,41.89162810764478],[-87.64133359828237,41.8917246096269],[-87.64139702169768,41.89181692378001],[-87.64145693720815,41.891904222248584],[-87.64150556017096,41.89196933409399],[-87.64157415756709,41.892048506974334],[-87.64173954242604,41.89219154488595],[-87.64180208684192,41.89225652090566],[-87.64190571319165,41.892353625713966],[-87.6419266617645,41.89237285969915],[-87.6419967201942,41.89245487948489],[-87.64203770104434,41.892502856448736],[-87.64207460725277,41.892539295145696],[-87.64213097203645,41.892594944539226],[-87.64228411703206,41.89273565770813],[-87.64245012719753,41.89286862699489],[-87.64257330904354,41.89294403874097],[-87.64271570752909,41.89303583925478],[-87.642804579243,41.893105034523636],[-87.64289247136821,41.89317312613838],[-87.64294310922915,41.89321503322908],[-87.64321544010052,41.89337630247383],[-87.64327098089329,41.89340295375555],[-87.64336522317238,41.89344418936363],[-87.64342287664036,41.893472417206425],[-87.64349508118292,41.893506934409885],[-87.64355315304007,41.89353725032098],[-87.64362706733235,41.893641591111724],[-87.64364730191964,41.893675999692206],[-87.6436558137983,41.893690473976626],[-87.6436731997799,41.893719996617975],[-87.6436964989384,41.893759708446616],[-87.64373119746696,41.893818725830265],[-87.64377722154933,41.89388332712827],[-87.64378764455526,41.893894311780464],[-87.64381128744996,41.893919151882706],[-87.64397693365154,41.89402168316754],[-87.64404005474604,41.89409492156966],[-87.64405849746716,41.894118385729875],[-87.64407483890285,41.89413912047984],[-87.64411665253296,41.89427430586374],[-87.64412129712834,41.894347906463054],[-87.64412541022858,41.89441966550693],[-87.64412616437114,41.894433800109866],[-87.6441280696988,41.89446951681373],[-87.64413195020265,41.89454248219861],[-87.64413724697425,41.89464308725583],[-87.64413896535774,41.8946757295653],[-87.64414429936375,41.89477625526052],[-87.64417347717685,41.895477785935405],[-87.64419243978605,41.89593370451757],[-87.64422160387812,41.89645465928546],[-87.6438595725613,41.89646079982993],[-87.64300378789078,41.896475310131756],[-87.64292899499145,41.89647628007558],[-87.64295912517576,41.89641827161739],[-87.64298534751882,41.89637813976086],[-87.64299973496094,41.896348447450244],[-87.64300459340973,41.896332711020925],[-87.64300500061309,41.89632395825798],[-87.64300549324568,41.89626238934232],[-87.64300080940087,41.896134562106326],[-87.64299723797284,41.89603648907584],[-87.64299279862358,41.895913246179056],[-87.6429873474785,41.89576458556807],[-87.6429833254238,41.895653721680176],[-87.64297701477213,41.89555080231723],[-87.64296811478924,41.89552484870793],[-87.64296793388846,41.89552432072696],[-87.64295281245657,41.89550622762615],[-87.64293854358299,41.89550037263206],[-87.64292450874431,41.895494613993854],[-87.64288083684495,41.89548782013543],[-87.6428205101123,41.89548594834037],[-87.64252414236847,41.895488967985976],[-87.64227835669996,41.8954914957213],[-87.64206368438371,41.895493716267254],[-87.6418929826427,41.89549546078326],[-87.64169623650288,41.895497486164],[-87.64150252553361,41.895499866760126],[-87.64134858047109,41.895501758345155],[-87.64093686011208,41.895506740904956],[-87.64061962727568,41.895509986849916],[-87.64036704428334,41.89551271647089],[-87.64017631897754,41.89551499566765],[-87.6400284003574,41.895517439696604],[-87.64003052942968,41.89563132189099],[-87.64003488813319,41.89580903777551],[-87.64003909665617,41.895998908890334],[-87.64004066440779,41.89606963759322],[-87.64004498005438,41.89629548682822],[-87.6400435283885,41.89636518165641],[-87.64003983492825,41.89651306571267],[-87.63988951022569,41.896515285372665],[-87.63989648312555,41.89679091269092],[-87.639903017904,41.896957582141155],[-87.63991070318367,41.897146925919174],[-87.63991647798305,41.89728878288083],[-87.639924763128,41.89749058909809],[-87.63993419880245,41.897715069912856],[-87.63994474531302,41.89797608264677],[-87.63995017261757,41.8981141498952],[-87.63995430833008,41.898219361945785],[-87.63996166464823,41.89840178822131],[-87.63996928358605,41.89859050037423],[-87.63997442941756,41.89870902750465],[-87.6399840271446,41.89890538029275],[-87.63998380706808,41.89890538527569],[-87.63980729955593,41.89890920166319],[-87.63972805340318,41.898910914849395],[-87.63940202990729,41.898914910012934],[-87.63936957832153,41.89891530775502],[-87.63936257930274,41.89891539114353],[-87.63922149386427,41.89891707464734],[-87.63892095534062,41.89892047166575],[-87.63876893369981,41.89892287278161],[-87.63866041535893,41.89892458105997],[-87.63858634617013,41.898925747388994],[-87.63825454087967,41.898929886530475],[-87.63800807444062,41.898933194340806],[-87.63790649438016,41.89893455753057],[-87.63777346888668,41.898936445036334],[-87.63770218010242,41.89893745639615],[-87.63755815103136,41.898939500100376],[-87.6374627865314,41.89894121587053],[-87.6373984105138,41.89894237403647],[-87.63726170309687,41.89894350921747],[-87.63703734232278,41.89894537182734],[-87.63674608117073,41.89894955376382],[-87.63670169833816,41.8989501909427],[-87.6366893284834,41.898950368643774],[-87.63662069596492,41.89895135894835],[-87.63654741211559,41.8989524164876],[-87.6365400881333,41.89895252270475],[-87.63632463607854,41.89895564736332],[-87.63629373974892,41.8989560720625],[-87.63600759424415,41.898960006833434],[-87.63591233677121,41.898961129759876],[-87.63577201753841,41.89896283206463],[-87.63550081410548,41.898966121433276],[-87.63526838027502,41.89896913487282],[-87.63518520762405,41.89897021293162],[-87.63501052324354,41.898972526169516],[-87.63482793995571,41.898974984562464],[-87.63467750196547,41.898976976886615],[-87.63448768211339,41.89897947166462],[-87.63429136349875,41.89898167958644],[-87.63428477505752,41.89880441682504],[-87.6342781045089,41.898627949386054],[-87.63427160162453,41.89844961688258],[-87.63426786297266,41.898354588721816],[-87.63426200617035,41.89820411412458],[-87.63425681658147,41.8980707676098],[-87.63425038575265,41.89789257273859],[-87.63424651425625,41.89778615518471],[-87.63424014691842,41.89760881140364],[-87.63423344763338,41.89741903421127],[-87.6342272106032,41.89724237727047],[-87.63422145109539,41.89710027315231],[-87.63421532641487,41.89693440172987],[-87.63420872465717,41.896744954416235],[-87.63420286755138,41.89659580880609],[-87.63419573129782,41.896414085170555],[-87.63418863807178,41.89614170404641],[-87.63418386141956,41.89593980898742],[-87.63417827319347,41.89569109231665],[-87.634175070671,41.89559471720832],[-87.63417080682021,41.89546640370693]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3500684.81121","perimeter":"0.0","tract_cent":"1170016.74488626","census_t_1":"17031071900","tract_numa":"18","tract_comm":"7","objectid":"835","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912178.63557699","census_tra":"071900","tract_ce_3":"41.91451592","tract_crea":"","tract_ce_2":"-87.65081135","shape_len":"7934.38534206"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65271559884167,41.910846786157414],[-87.65310748101494,41.91083988357592],[-87.65312400151544,41.91127423247851],[-87.65312745318722,41.91137128888622],[-87.65313333936163,41.911536636145364],[-87.65314105195071,41.91175232311266],[-87.65314683860818,41.911914141789566],[-87.65316549208816,41.91243578125446],[-87.65317385429732,41.91265860730435],[-87.65318428609179,41.91294725331093],[-87.65319359268304,41.91325987500145],[-87.65320450155343,41.91353675133604],[-87.65320541118433,41.913559838430764],[-87.65321230380245,41.91373479007352],[-87.65322583354636,41.91407817538416],[-87.65323277471774,41.914272233438325],[-87.65323608632335,41.91436305901659],[-87.65324623412683,41.914641329794904],[-87.65325518260957,41.914886358934126],[-87.65326496519309,41.91515422689926],[-87.65327493379338,41.91541243544814],[-87.65327510690372,41.915417101934956],[-87.65328242623147,41.915613631437466],[-87.65328746307796,41.915755181634665],[-87.65329484341763,41.915964970221445],[-87.65329841405163,41.916066468782944],[-87.65330680341489,41.916304113947874],[-87.65331827238211,41.91662898860613],[-87.6533183165838,41.916630224044546],[-87.65332731031572,41.91687816306689],[-87.6533402927592,41.91723696529842],[-87.65334449456476,41.917363746019646],[-87.65335464075127,41.91770938657779],[-87.65335497773599,41.91772094121875],[-87.65336156376276,41.91794674829136],[-87.65336745823649,41.91810496864593],[-87.65297354045178,41.91811132622806],[-87.65274826491947,41.918114465381414],[-87.65264500877994,41.9181156774019],[-87.65258576520503,41.91811637283243],[-87.65251883703998,41.91811715850835],[-87.65249357954099,41.91811745495992],[-87.65215208147642,41.918123172948796],[-87.6517589624478,41.918129754207484],[-87.65155687547549,41.91813344578623],[-87.65121359486508,41.918139715435544],[-87.65093851293703,41.91814302935061],[-87.65083421621655,41.918144133394],[-87.65050671991395,41.91814835699625],[-87.65032404062568,41.91815129546318],[-87.64972545000498,41.918160922319196],[-87.64926372178215,41.918168345870974],[-87.64912851718549,41.91817074226542],[-87.6487214436445,41.91817795691599],[-87.64850888668123,41.91817970914153],[-87.64847358573999,41.917342124277916],[-87.64845492853449,41.91705617435535],[-87.64844721947043,41.91660881941141],[-87.64843964340552,41.91619714017786],[-87.6484284012069,41.9160137815275],[-87.64842759691565,41.91600065685448],[-87.64841217476985,41.91574911845896],[-87.64839855025586,41.91538345122029],[-87.64839173912769,41.91520347159516],[-87.64837625134015,41.91475176166614],[-87.6483672299908,41.91441688461509],[-87.64837090562553,41.914241495491204],[-87.64836123565443,41.91382716227543],[-87.6483516802626,41.91341775560288],[-87.6483400346249,41.91304661155929],[-87.6483328259423,41.91282055388832],[-87.64833169117709,41.91278497971998],[-87.64831948172258,41.912402089166626],[-87.64829890349982,41.91188709416285],[-87.64829161358503,41.91161000345026],[-87.64828834173036,41.91148564811737],[-87.64828790605773,41.911469082447915],[-87.64828598691625,41.91142643418229],[-87.64828415123327,41.91138563575037],[-87.6482838430862,41.91137878980403],[-87.64828084110829,41.911312070107016],[-87.64827157386192,41.91091961991864],[-87.6487888734579,41.91091241192705],[-87.64950135345579,41.91090048626848],[-87.65003666381996,41.91089152344173],[-87.65054811403334,41.91088336931486],[-87.65091163708205,41.910876914266204],[-87.6511057233014,41.91087378574365],[-87.65165036521891,41.9108640950404],[-87.65201384516236,41.9108581842684],[-87.65271559884167,41.910846786157414]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3946952.28647","perimeter":"0.0","tract_cent":"1174134.18974613","census_t_1":"17031080300","tract_numa":"19","tract_comm":"8","objectid":"836","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1909652.04603565","census_tra":"080300","tract_ce_3":"41.90749193","tract_crea":"","tract_ce_2":"-87.63576009","shape_len":"8280.34524938"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63811161695747,41.9037960290619],[-87.63833590064088,41.9037935577122],[-87.63837062314754,41.90399666349605],[-87.63837429815867,41.90415233858551],[-87.63837498971469,41.904180773015554],[-87.63837897382149,41.904344463128155],[-87.63838698923338,41.90460801279107],[-87.63839003436247,41.904706604029336],[-87.63839345504888,41.90482354410044],[-87.63839567376048,41.904899396019864],[-87.63839775270989,41.90497045374287],[-87.63840348685844,41.905125922003045],[-87.63840571157074,41.90518851931591],[-87.6384075866336,41.90524128686982],[-87.63841159274043,41.90535404387292],[-87.63841705048749,41.90554425269439],[-87.63842053842612,41.90566224721424],[-87.63842831394007,41.90583449533646],[-87.63843146317348,41.905938129707955],[-87.63843219915076,41.90596233553742],[-87.63843220124727,41.90596241321185],[-87.63843696561635,41.90612930612149],[-87.63844520808534,41.90637350969621],[-87.63844980073411,41.90652043562735],[-87.63845336143746,41.90663437075162],[-87.63845688126692,41.90674696067864],[-87.63846671398991,41.907046195950755],[-87.63847277586886,41.907239289263785],[-87.63847412770791,41.90728279212796],[-87.63847985657978,41.90746713069433],[-87.63848350619328,41.90760068731092],[-87.63848706268368,41.90773083996625],[-87.63849085173509,41.90786244874236],[-87.63850419356119,41.9082853604758],[-87.63850985348034,41.90846346781745],[-87.63851509703252,41.908628208233836],[-87.63852406710329,41.90891898623146],[-87.63853410185081,41.90924185042725],[-87.6385389916314,41.90939917953442],[-87.63855231859198,41.909833671709634],[-87.63856723854185,41.91032122904532],[-87.63856843801697,41.91036042938435],[-87.638570094782,41.9104145797574],[-87.63857255836491,41.910495084002115],[-87.63857760479853,41.910660002089564],[-87.63857838642505,41.91068552842337],[-87.63859015088265,41.9110442036436],[-87.63859245748084,41.91111452391946],[-87.63762380321658,41.91112869859658],[-87.63684688405435,41.91114006173139],[-87.6366624205462,41.91114223605954],[-87.63570119384076,41.91115356115722],[-87.63505140500871,41.91116121246002],[-87.63471084637034,41.911161406863386],[-87.63315087950562,41.91116228385933],[-87.63315042754482,41.91114938213186],[-87.63310614957079,41.90988606574071],[-87.63309423883243,41.909424667600085],[-87.63309423885042,41.90942466595365],[-87.63308755260832,41.90916566597673],[-87.63307242161216,41.90857949847744],[-87.63304582481338,41.9077026827074],[-87.63299175679114,41.90592017556368],[-87.63298602926434,41.905755921184394],[-87.63294476489169,41.90457254220506],[-87.63292055347682,41.903878182658026],[-87.63300158703785,41.903876618726514],[-87.6331811574273,41.90387315230177],[-87.63364834826926,41.90386628537958],[-87.63388922133241,41.903862429015525],[-87.63392295153547,41.90386173518138],[-87.63419286368504,41.903856182659936],[-87.63447783251493,41.9038534601581],[-87.63474026421358,41.90385095220064],[-87.63522145636837,41.90384358776759],[-87.63568578716614,41.90383620120475],[-87.63598582564471,41.90383140049216],[-87.6360711618339,41.90383003478207],[-87.63622354553482,41.903827678698214],[-87.63657072485003,41.90382230972335],[-87.63692499009862,41.903815732126304],[-87.63696995882069,41.903813514174466],[-87.63701551964492,41.903811267413516],[-87.63705221095563,41.90380945779681],[-87.63709378174403,41.90380740772145],[-87.63714202304384,41.90380502842524],[-87.63744453764596,41.903804447192705],[-87.63762979380319,41.90380408784373],[-87.63776000159122,41.90380213241035],[-87.63790263089928,41.90379975809527],[-87.63811161695747,41.9037960290619]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13539636.8285","perimeter":"0.0","tract_cent":"1170120.10981001","census_t_1":"17031730400","tract_numa":"57","tract_comm":"73","objectid":"842","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1840498.98775618","census_tra":"730400","tract_ce_3":"41.71781742","tract_crea":"","tract_ce_2":"-87.65251802","shape_len":"15623.1734568"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65137044907128,41.71411846281098],[-87.65157310861862,41.71400239905624],[-87.65178218906861,41.71386141011345],[-87.6518551416528,41.713921223884974],[-87.65189370827721,41.71395284462923],[-87.65202663560633,41.714120634196426],[-87.65251756174825,41.71409513073676],[-87.65275054521531,41.71409406071355],[-87.6529742639885,41.714093033062966],[-87.6529972422104,41.71409292705788],[-87.65332014755168,41.714083579496645],[-87.65376695003823,41.714074835908534],[-87.65420183160214,41.71406961299853],[-87.65421150169117,41.71406950548884],[-87.65476235461843,41.71406309963847],[-87.65517327503434,41.7140593869314],[-87.65543289792124,41.71405704025902],[-87.655885070714,41.71405144672163],[-87.65610031481495,41.714048736462416],[-87.6565392935494,41.714043849662644],[-87.65678867466228,41.71404107268979],[-87.65725838909985,41.714035713963845],[-87.65749550823872,41.71403208145652],[-87.65778391227313,41.71402766266458],[-87.65799092958022,41.71402548037482],[-87.65821845761981,41.71402308121213],[-87.65843454594909,41.71402017916265],[-87.65877562150554,41.71401545825149],[-87.65880595846548,41.714015262828475],[-87.65922835177668,41.71401254399107],[-87.65964230140983,41.71400626767695],[-87.65976983643172,41.71400433354483],[-87.65976989797142,41.71400433280782],[-87.65990443226138,41.71400229245671],[-87.65997595429693,41.71400107651109],[-87.66106584437178,41.715689812362086],[-87.66234929041075,41.718493588005835],[-87.662362289081,41.71852198310813],[-87.66308531650246,41.72010178597477],[-87.66320225145513,41.721092342997416],[-87.66320229350796,41.72109270247418],[-87.66320230798638,41.7210928249553],[-87.66326342096943,41.72120432685629],[-87.66321543807169,41.72120525838724],[-87.66275108637625,41.721214260599716],[-87.66268341412585,41.721215175251416],[-87.6621121393425,41.72122289572362],[-87.66151592482134,41.721230322373316],[-87.66146420838655,41.72123095032632],[-87.66082843510495,41.7212386668176],[-87.66066473740699,41.72124005313634],[-87.66024959587808,41.72124356775734],[-87.6601681595162,41.721244257049655],[-87.65964573661357,41.72125137873905],[-87.65912198214825,41.721258144455845],[-87.65903053944781,41.721259325015865],[-87.65846688343667,41.721267738116396],[-87.65805515231753,41.72127404812659],[-87.65781184899498,41.721277857798604],[-87.65770203122365,41.72127957748595],[-87.65727829794704,41.72128621042222],[-87.65659411973252,41.72129601200809],[-87.65621210052687,41.7212995723575],[-87.65582175821102,41.72130309087086],[-87.65538356178186,41.72130864989932],[-87.65531293420132,41.72130954579226],[-87.6547186445433,41.72131840356328],[-87.6541599116563,41.72132271883079],[-87.65376513346811,41.72132586164723],[-87.65324271761864,41.72133222701763],[-87.65294696050009,41.72133577053915],[-87.65271447637055,41.721338555508275],[-87.65236101094422,41.72134373544689],[-87.65199587946015,41.721350299341275],[-87.65172900598138,41.721354223120954],[-87.65153753900962,41.72135703741459],[-87.65106950561278,41.721362260796184],[-87.65063641635547,41.72136939328502],[-87.65027350102766,41.7213735745698],[-87.6502111729141,41.7213742732399],[-87.65010622396342,41.72137544983017],[-87.64969063119501,41.721379524620396],[-87.64935463296295,41.721385526472375],[-87.64929253028255,41.72138627757916],[-87.64903224940957,41.7213894261373],[-87.6487253997881,41.72139341772142],[-87.6481466579611,41.721400879088925],[-87.64807422993853,41.721401348971504],[-87.64750387167412,41.72140504578565],[-87.64746860080416,41.721405650605],[-87.6471892391167,41.721410441578115],[-87.6469837052705,41.721414297414995],[-87.64685469475009,41.72141671758532],[-87.64677749104047,41.72141816583381],[-87.64617352253327,41.72142401177181],[-87.64564174580131,41.72142810980675],[-87.64558898673798,41.72142851608],[-87.64519084552676,41.721434861323644],[-87.64485291250753,41.72144011117864],[-87.64442631142093,41.72144434054791],[-87.64434992820507,41.72144509777145],[-87.64385273734716,41.721453026451144],[-87.64355755276708,41.721455619461565],[-87.64321361749532,41.72145745816634],[-87.64321224691707,41.721397536516605],[-87.64320783368777,41.721204595101334],[-87.64319157633662,41.72057296736012],[-87.64317265043884,41.71992192502431],[-87.64316529942914,41.71964722580658],[-87.6431569700978,41.71933596636057],[-87.6431348218494,41.71861768515115],[-87.64311305891707,41.717827212972736],[-87.643107354636,41.717620025322795],[-87.64309713500664,41.7172488242091],[-87.64308636076053,41.71686966230663],[-87.64307986365927,41.716538932601324],[-87.64307698360135,41.716391709643254],[-87.64307349357125,41.716213417850184],[-87.6430677308904,41.7160134865992],[-87.64306482211215,41.71591256043096],[-87.643058775631,41.71570280334255],[-87.64305215071188,41.715411453816834],[-87.64303983598803,41.7151128698199],[-87.64303083237004,41.714894591381764],[-87.6430272305712,41.714807266280324],[-87.64302189470436,41.71467788994397],[-87.64301549499302,41.71452272650388],[-87.6430118618204,41.71443463993303],[-87.64300277444356,41.71421431177898],[-87.64352567490154,41.71420811296256],[-87.64363509112715,41.71420688602297],[-87.64383949035525,41.714204593042545],[-87.64392000264822,41.71420383813838],[-87.64423526513055,41.714205465111014],[-87.64469742655272,41.71418725858814],[-87.64483047258118,41.71418540974145],[-87.64544877961231,41.714176816209765],[-87.64555435219528,41.71417534845544],[-87.64559201535609,41.71417428404116],[-87.6459460866369,41.71417033763188],[-87.64606905871666,41.71416871304807],[-87.64626734473899,41.714166084171794],[-87.64643474975514,41.71416392900095],[-87.64666379717535,41.7141617706458],[-87.64683929087289,41.71416011685639],[-87.64714365372946,41.71415677541073],[-87.64726314568313,41.71415517075565],[-87.64731340410069,41.714154495748566],[-87.64763411680927,41.7141498510056],[-87.64788341418009,41.7141446147393],[-87.64806830790143,41.71414072281054],[-87.64829165240111,41.71413929670938],[-87.64949079215971,41.71413100194483],[-87.64975410195647,41.714129552311704],[-87.65014965263038,41.71412668823342],[-87.6505922117948,41.714128028401845],[-87.65137044907128,41.71411846281098]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10892803.2047","perimeter":"0.0","tract_cent":"1175562.70105839","census_t_1":"17031691200","tract_numa":"53","tract_comm":"69","objectid":"843","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1853886.32743165","census_tra":"691200","tract_ce_3":"41.75443417","tract_crea":"","tract_ce_2":"-87.63218455","shape_len":"13549.9810162"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6247579816719,41.75818156625304],[-87.62475637800758,41.758121409535846],[-87.62475323725988,41.75800357351556],[-87.62474712330298,41.757686404463826],[-87.62474247687528,41.757444767595864],[-87.62473739377002,41.75718155809606],[-87.62473475990022,41.75704443631623],[-87.62473058557374,41.756827555926165],[-87.62472706611726,41.756644434467795],[-87.6247244344014,41.756483363997276],[-87.62472368374434,41.75643742443464],[-87.62472282398535,41.75638481088199],[-87.62472088926057,41.75626639663021],[-87.62471558791434,41.75604865825197],[-87.62470969085808,41.75580841319526],[-87.62471384508,41.755724024109114],[-87.62466043396482,41.75537862621977],[-87.62465696320247,41.75521438580914],[-87.62465224815637,41.75499667872287],[-87.62464856273455,41.75482530179269],[-87.62464416058165,41.75459384739493],[-87.62464182905482,41.7544712727663],[-87.62463770451885,41.754276484215865],[-87.62463405374834,41.754105327022025],[-87.62463020744282,41.75392192902933],[-87.62462607795149,41.753727661847044],[-87.62462195076276,41.75353312024214],[-87.62461733374245,41.7533165114175],[-87.62461272549744,41.753099106791055],[-87.62460911380984,41.75292770309026],[-87.62460541300761,41.75277183049021],[-87.62460097464725,41.75258486148344],[-87.62460026771504,41.7525595417527],[-87.62459553230792,41.75238998268513],[-87.62458941241299,41.75217677763609],[-87.62458874989898,41.75215368380724],[-87.62459853417398,41.75186507641182],[-87.62459265594386,41.75181469975251],[-87.62458726969645,41.751768539181555],[-87.62457980284168,41.75168051487706],[-87.62457299609069,41.75160028023114],[-87.62456798965002,41.751468960506266],[-87.6245638662376,41.75136081089027],[-87.62456239533157,41.75131705954169],[-87.62456065101927,41.75126518144707],[-87.62455362766492,41.75112172576258],[-87.6245488232654,41.75102358096254],[-87.62454557750216,41.75096011291615],[-87.62470143487063,41.750951124817696],[-87.62472571472458,41.750949724306864],[-87.62482673740762,41.75094762249117],[-87.62497389771721,41.750944557485205],[-87.62512291496242,41.75094138902489],[-87.62539482819477,41.750935606293424],[-87.62582444324126,41.75092641778806],[-87.62652308022878,41.750935822437945],[-87.6268146618214,41.75091760983347],[-87.62703497582326,41.75091100809619],[-87.62725768803026,41.7509043339542],[-87.62745590652676,41.750901490338414],[-87.62774521148413,41.7508970377896],[-87.62806967420093,41.75089134584524],[-87.62824584486407,41.75088720688304],[-87.62838363720184,41.750883969423946],[-87.62861518165356,41.75087992868142],[-87.62888891422566,41.75087518563586],[-87.62916528308284,41.75087065019646],[-87.62930427746934,41.75086800710438],[-87.62939664776712,41.750866250017474],[-87.6294947331234,41.7508646656303],[-87.62975878515522,41.750860399916384],[-87.62998820461593,41.750856261064534],[-87.63023257507827,41.75085221297321],[-87.63047720621458,41.75084778230293],[-87.63066293016668,41.75084475051458],[-87.63093457020896,41.75084031554581],[-87.63119371585007,41.75083566993322],[-87.63145355950394,41.750830863341776],[-87.63169800908356,41.75082626402986],[-87.63187786777344,41.750823346768456],[-87.63206432482308,41.75082032240415],[-87.63233882653846,41.75081557583203],[-87.63262828222663,41.750810645372994],[-87.63290311606612,41.750805679933556],[-87.63309053022616,41.75080225248355],[-87.63327002629005,41.75079896995631],[-87.63348070955453,41.750795670199544],[-87.6336782701396,41.7507926471809],[-87.63391101583484,41.75078926171149],[-87.63422934641817,41.75078272907054],[-87.63428646024971,41.75077957841086],[-87.63440347340891,41.75077628661479],[-87.63470714954727,41.75077451076813],[-87.63516814822104,41.75076979383427],[-87.63551734057548,41.75076457827484],[-87.63597011569686,41.75075781416528],[-87.63643312377135,41.75075019511394],[-87.63672757528663,41.75074543913176],[-87.63685064329118,41.75074345106803],[-87.63715390282397,41.75073958083095],[-87.63766638252285,41.75073214678536],[-87.63794475893546,41.75072821298639],[-87.63809873665258,41.75072603688302],[-87.63845055578918,41.75072190818558],[-87.63861856835149,41.75071988734385],[-87.63873783255205,41.75071845303248],[-87.63895736102448,41.75071581225147],[-87.63905952422643,41.750714582988884],[-87.63922491835723,41.75071259291453],[-87.63926298082029,41.750712071734675],[-87.63931563022825,41.75071135022774],[-87.6393687734606,41.75071054303829],[-87.63942330290007,41.75070971565545],[-87.6395135536514,41.750708345435996],[-87.63975860222679,41.75070465824195],[-87.6397663903451,41.75083897228204],[-87.63976942048174,41.75098306683957],[-87.63977241683924,41.75108771098888],[-87.63977629665645,41.75123798507972],[-87.6397795070183,41.75136527185069],[-87.6397840072241,41.751542992996605],[-87.63978789779812,41.75169223747734],[-87.63979138200443,41.75183667779219],[-87.63979441185013,41.751980772048285],[-87.63979818060182,41.752141336859566],[-87.63980075203492,41.752285428066465],[-87.63980270366997,41.752444609199905],[-87.63980331919706,41.752518433042745],[-87.63980444779267,41.75262299975186],[-87.63980978296931,41.752723199318126],[-87.63981378810011,41.75286181055701],[-87.63981859492456,41.753011061082525],[-87.63982490913568,41.7531905080416],[-87.6398293764472,41.75332877929513],[-87.63983673594814,41.75353876320269],[-87.63984095960323,41.75369967320463],[-87.63984546338322,41.75387705098652],[-87.63984963131828,41.75404310621091],[-87.63985191109687,41.75412922275578],[-87.63985379557072,41.75420950499495],[-87.63985608507171,41.75432958234564],[-87.63985849591863,41.7544537763318],[-87.63986154788607,41.754553275733365],[-87.63986629581287,41.75470801473837],[-87.63987181653239,41.75491867302274],[-87.63987601766,41.755124178041704],[-87.6398807845783,41.755362274786165],[-87.63988454624698,41.75552352526024],[-87.63988923888284,41.75568340947188],[-87.63989388330451,41.75580521564479],[-87.6398989230594,41.75593285639215],[-87.6399000577843,41.75614578321942],[-87.63970569946244,41.7561494366953],[-87.63961207436114,41.75615135584663],[-87.63950026127564,41.75615364781002],[-87.63943871284465,41.756154909515985],[-87.63933485385132,41.75615703831966],[-87.63932360966392,41.75626453057556],[-87.63931396292912,41.756394483337985],[-87.6392950546092,41.756661252756],[-87.63928210108475,41.75692805785609],[-87.63927510279323,41.75719489891747],[-87.6392739343347,41.75743090179207],[-87.63927352550564,41.75797907351967],[-87.63884221354479,41.75799956047585],[-87.63859256679348,41.75801119636933],[-87.63843944293114,41.758013298958545],[-87.63817907975222,41.75801687306741],[-87.6378934676538,41.75801931623837],[-87.63767170211409,41.75802516869686],[-87.63752974748591,41.758028914576705],[-87.63719698965818,41.7580358452956],[-87.63694973055023,41.758038847536675],[-87.63687084753593,41.75803980547921],[-87.63675374512734,41.75804122706046],[-87.6366513486439,41.758043326349124],[-87.63659156056941,41.75804455191976],[-87.63648180829942,41.75804653839081],[-87.63642902461946,41.75804718916667],[-87.63622917519534,41.75804965385514],[-87.6359284386172,41.75805427759339],[-87.63583481526271,41.75805563465766],[-87.63570170906125,41.7580575631267],[-87.63540523374223,41.75806185845246],[-87.63505577646735,41.75806747403222],[-87.63469161738958,41.75807354801088],[-87.6344852861496,41.75807752434796],[-87.63428030503398,41.75808147449979],[-87.6342072099917,41.758082626096545],[-87.63403697307434,41.75808526276964],[-87.63387160922493,41.75808800679573],[-87.63367541653835,41.758091257707434],[-87.63342508433875,41.75809509371136],[-87.63327390965212,41.758097360732705],[-87.63286521841545,41.758103488533486],[-87.63251415226937,41.75810875094416],[-87.63223151949096,41.75811350314871],[-87.63206142243604,41.758116711306315],[-87.63205211073888,41.758116887186645],[-87.63204532923254,41.75811701511683],[-87.63161814452576,41.75812507174817],[-87.63137725304061,41.7581283396391],[-87.63087049546093,41.75813521244107],[-87.63055686113044,41.7581394144901],[-87.63044230283144,41.758141567498974],[-87.6302159350356,41.75814580821592],[-87.62987227993558,41.75815034581389],[-87.629623552556,41.758154926515665],[-87.62929076395046,41.758161054212245],[-87.62902125948985,41.75816511056126],[-87.6286401732067,41.75817056761313],[-87.62800546245681,41.75818196355301],[-87.62775164497056,41.758186519930234],[-87.62757740597141,41.75818972372853],[-87.62720169782169,41.758190818164024],[-87.62703574652025,41.75819130115677],[-87.62696481193323,41.758191507507426],[-87.62640692059337,41.758160334057415],[-87.62637291782582,41.75816079471903],[-87.62621916783274,41.758162877714575],[-87.62608822398518,41.758165770503986],[-87.62596470898569,41.75816685977272],[-87.62579929601213,41.758168389597735],[-87.62568308016905,41.75817067392396],[-87.62554968611504,41.75817170162411],[-87.62536885426215,41.75817613591072],[-87.62526558787138,41.7581754995391],[-87.62516926203118,41.758174905854425],[-87.62502347775091,41.75817955588966],[-87.6247579816719,41.75818156625304]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11126226.45","perimeter":"0.0","tract_cent":"1174010.57038354","census_t_1":"17031680900","tract_numa":"71","tract_comm":"68","objectid":"844","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861889.6399041","census_tra":"680900","tract_ce_3":"41.77643078","tract_crea":"","tract_ce_2":"-87.63763539","shape_len":"14582.7792407"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6436818331419,41.780857002812944],[-87.64367754662462,41.7806793583496],[-87.6428091259107,41.78069090615191],[-87.64271294310612,41.78069118146148],[-87.64263165884724,41.780691414539],[-87.64172462687222,41.78070667734171],[-87.64137060739463,41.780712641211394],[-87.64085867841192,41.78072174099131],[-87.64053083794909,41.78072761335627],[-87.64021605256991,41.78073323396162],[-87.64005563919643,41.780743353791046],[-87.640027716982,41.78074511534619],[-87.64004011979029,41.78058513328978],[-87.64003820291423,41.78051124541822],[-87.6400351451378,41.78039344200955],[-87.64003104196519,41.78023660874942],[-87.64002850616559,41.78013845733296],[-87.64002528697354,41.78001521924649],[-87.64002033812845,41.77982450781457],[-87.63995345138723,41.7798258892987],[-87.63978405588162,41.77982933421416],[-87.63973385379731,41.77983025892898],[-87.63969238708677,41.77983102258434],[-87.6396068948481,41.77983265761732],[-87.63951453029776,41.77983447007699],[-87.63936459030379,41.77983662212851],[-87.63929649469965,41.77983759910325],[-87.63918534669766,41.77983950721066],[-87.63904104835515,41.779842010716614],[-87.63884346818811,41.779845435393156],[-87.63876006448146,41.779846880990405],[-87.63871728433554,41.77984762208249],[-87.63867361015707,41.77984837915819],[-87.63849674979737,41.77985131627093],[-87.63830661450385,41.779854502115484],[-87.63804442245788,41.77985889814447],[-87.63786763500958,41.779861834729765],[-87.63768424674757,41.779864895730796],[-87.63757595419084,41.77986692357992],[-87.63750339720671,41.77986828219502],[-87.63725013514488,41.779873023862805],[-87.63701419466302,41.77987730216776],[-87.63673190261598,41.779882451543486],[-87.6365221492631,41.779885899677566],[-87.63644887923219,41.77988711334278],[-87.63631235856495,41.77988937491936],[-87.63601071019458,41.779894322478626],[-87.63580744701063,41.779897698930064],[-87.63553198087895,41.77990220072818],[-87.63536168444071,41.77990500822525],[-87.63526986238412,41.77990650854159],[-87.63504833988505,41.779908973287284],[-87.63489658133503,41.7799106614076],[-87.63468352475192,41.77991441541668],[-87.63455213417605,41.779916689907786],[-87.63440130836945,41.77991928509548],[-87.63415898981393,41.77992343640309],[-87.63400816398271,41.779926031074375],[-87.63378091673584,41.77992994401183],[-87.6334331230932,41.77993691586652],[-87.63327902839802,41.779940004494314],[-87.63306175144197,41.77994411397825],[-87.632689704991,41.77995115364236],[-87.63262462281602,41.77995207368821],[-87.63254164967884,41.7799532465347],[-87.6324756434343,41.77995417952043],[-87.63183381950964,41.77996324900533],[-87.63168634316659,41.77996533253003],[-87.63140573990323,41.77996929634045],[-87.63120016207763,41.77997219988362],[-87.63104875035187,41.77997433812203],[-87.63092545263487,41.77997607916535],[-87.63074656895455,41.77997860530292],[-87.63054436576888,41.77998145970326],[-87.63029152403246,41.77998502886149],[-87.63014970093067,41.77998703057196],[-87.6301482619594,41.77994000713262],[-87.6301443041195,41.77981070433157],[-87.630141846364,41.77968329905564],[-87.630132577296,41.7794074960167],[-87.63012036566693,41.7791258570562],[-87.63010970688192,41.77888330628659],[-87.63009871941965,41.77864064372243],[-87.6300940825361,41.77848484801506],[-87.63009004479008,41.77834918205226],[-87.630107537862,41.77821392697704],[-87.63008485459777,41.77817480492246],[-87.63008265524965,41.77810090800781],[-87.63008169978241,41.7780657101929],[-87.63007993471713,41.7780010238554],[-87.63007750689536,41.77791102642996],[-87.63007553618515,41.77783982772645],[-87.63007553300316,41.777839716288746],[-87.63006080588563,41.777293432569635],[-87.63005741930415,41.77716780588962],[-87.63005739021231,41.777166777425485],[-87.63005533716036,41.77709462868363],[-87.63004451069455,41.77704790011972],[-87.63003671269104,41.77701424304281],[-87.63004650410338,41.77696504130185],[-87.63005256955857,41.77693456300708],[-87.63005447718585,41.77689780886047],[-87.63005921050544,41.776806610719014],[-87.63007011993473,41.776596410963336],[-87.63007723633523,41.77645929454454],[-87.63007633314244,41.77641444728603],[-87.6300762948487,41.77638573681842],[-87.63007627739354,41.77637256905003],[-87.63007859592874,41.776324777402664],[-87.63008040679253,41.77628318529594],[-87.63008505102745,41.77625741738039],[-87.63006727396161,41.77588457880989],[-87.63006649733437,41.775863685052656],[-87.63006483719015,41.775819030470416],[-87.6300633084978,41.77577774668334],[-87.63006072574665,41.775702070736145],[-87.63005991067831,41.775676373682586],[-87.63005908952418,41.77565049546835],[-87.63005734377593,41.775595489164246],[-87.63005559824589,41.775539389260445],[-87.63005430501957,41.77549782864146],[-87.63005223502847,41.77543897834165],[-87.63004071064468,41.775352901669685],[-87.63003646296643,41.775204793646154],[-87.63002999784028,41.77497774618966],[-87.63002861541358,41.77492982237795],[-87.63002632405811,41.774861036377466],[-87.63002432254171,41.77479927753973],[-87.6300229417198,41.77475788515291],[-87.6300210124089,41.774699584564885],[-87.6300191239561,41.77464090002539],[-87.63001624678468,41.77453409429591],[-87.63001140362671,41.774354293706615],[-87.63000930847123,41.77424741811441],[-87.63000778920002,41.77417172121395],[-87.62999425013301,41.77352513748008],[-87.62999167399687,41.773432090440544],[-87.62998874362327,41.773324523644476],[-87.62998612709808,41.77322842991426],[-87.62997900014742,41.77302846450349],[-87.62997591190864,41.77294202779354],[-87.62997307414497,41.77286286499371],[-87.62997140515003,41.77284825760369],[-87.6299554938753,41.772708996511255],[-87.63026647299391,41.77270400992906],[-87.63051902220175,41.77270050567322],[-87.63074504375307,41.77269908895557],[-87.63103881150387,41.77269487319855],[-87.63114465866964,41.77269335411862],[-87.63121958779345,41.77269224891444],[-87.63127259905369,41.77269146664988],[-87.63129821059516,41.77269108884333],[-87.63132547868106,41.772690686575245],[-87.63162592919214,41.7726862538342],[-87.63197597443462,41.77268108821095],[-87.63237966964552,41.77267424855176],[-87.6326162416324,41.77267017594645],[-87.63300619135585,41.772663223079014],[-87.63324004908016,41.77265924378707],[-87.63372811426832,41.772650936502096],[-87.6340490843301,41.772646090805985],[-87.63429650241716,41.772642403486],[-87.63454627583923,41.77263794042588],[-87.63485392860633,41.772633285907844],[-87.63513497720265,41.77262903311406],[-87.6354560187669,41.77262436998411],[-87.63561566055813,41.772621942731575],[-87.6358622726442,41.77261819253248],[-87.63614027632751,41.77261348574367],[-87.63640786840504,41.77260877000923],[-87.63667887961084,41.77260317947023],[-87.63673890423611,41.77260194104235],[-87.636809390976,41.772600376322764],[-87.63700111886038,41.77259612077119],[-87.63727432103666,41.772592604718334],[-87.63749979433454,41.77258970209248],[-87.63774573930405,41.772586635919986],[-87.63800818443984,41.77257989266256],[-87.63804742060707,41.77257888448943],[-87.63824972523419,41.77257382421492],[-87.63839865356552,41.77257220041219],[-87.63873265618564,41.77256850171209],[-87.63895645786273,41.7725660230119],[-87.63922269955492,41.772557313331156],[-87.6394247744216,41.77255756996231],[-87.63954806389833,41.77255597010893],[-87.6396501811876,41.77255432434196],[-87.63968119283004,41.77255429670775],[-87.63976644230442,41.7725542213659],[-87.63984440490962,41.772554152195845],[-87.64008278104305,41.77254923726954],[-87.64008945454721,41.772549099708534],[-87.64029636981856,41.77254483562059],[-87.64045822059231,41.77254150001522],[-87.64051167902576,41.77254066953053],[-87.64067701507152,41.772537088163745],[-87.64086449857318,41.77253302697787],[-87.6410136168359,41.7725307722116],[-87.64126030176243,41.772527041872266],[-87.64141059328077,41.77252473630254],[-87.64177684817139,41.772518883205336],[-87.64196688635668,41.77251584577272],[-87.6421593098558,41.77251261271204],[-87.64230927413327,41.77251008445415],[-87.6425295278932,41.772506518154216],[-87.64261301631768,41.77250516636302],[-87.64289878708708,41.77250053848742],[-87.64321558770166,41.772494657466346],[-87.64325691148112,41.77249389002571],[-87.64347841447878,41.77248977753224],[-87.64373975301466,41.772487037944174],[-87.6439709910788,41.77248338552215],[-87.64404444407582,41.77248222522323],[-87.64431317340826,41.7724773332374],[-87.64459718011128,41.77247247924577],[-87.64460334393937,41.77273330459969],[-87.64460788293319,41.772898428572205],[-87.64461241812833,41.77306390927539],[-87.64462156742249,41.77339144077232],[-87.64462660024996,41.77357157897537],[-87.64463035561141,41.77374827914699],[-87.64463338946794,41.77385192187974],[-87.64464427102982,41.77429532752953],[-87.64465026561984,41.77453957872067],[-87.64465308299616,41.77468059714709],[-87.64465644559529,41.77484604332607],[-87.64465853800449,41.774949520951765],[-87.64472001328167,41.77515812095043],[-87.64472842785736,41.77523857945929],[-87.64472844624825,41.77527798762322],[-87.6447263465872,41.77532347542292],[-87.64472996436292,41.77543355397449],[-87.64473666346368,41.775637374645555],[-87.64473783465476,41.7756821136453],[-87.64473883657656,41.77573239510241],[-87.64474025646432,41.77581561058241],[-87.64474096859865,41.7758621031769],[-87.64474197795957,41.775932253359215],[-87.64474381583561,41.776062041994955],[-87.64474481348685,41.77613184769588],[-87.64474505291683,41.77614860441197],[-87.64470107144226,41.77638145118807],[-87.64470063344825,41.776383771057766],[-87.64470440802815,41.776546670208596],[-87.64470820796417,41.77671066173526],[-87.64471899009584,41.77704618869913],[-87.6447235960898,41.777301051311376],[-87.64472828364623,41.77755514599935],[-87.64473121574096,41.777712877778676],[-87.64473907040467,41.777926825696994],[-87.64474489974347,41.77808560750861],[-87.64474655073724,41.77814862635053],[-87.64475060105467,41.778303209154345],[-87.64475734639095,41.77856030740948],[-87.64476883866116,41.779004760828414],[-87.64477026307846,41.77906151088884],[-87.64477570488994,41.77929124976645],[-87.64478087923199,41.77951011058149],[-87.64478649487674,41.77975061167237],[-87.64479402991635,41.78007326308728],[-87.64479693425152,41.7801787710454],[-87.64480002369095,41.78029254399461],[-87.64480206330201,41.78036763645401],[-87.64480341002766,41.78041736119906],[-87.64480718826539,41.78055688603253],[-87.64481015050157,41.78066503872731],[-87.64481638928207,41.78088949434255],[-87.64482284830214,41.7811014194654],[-87.64482952461643,41.781320454143945],[-87.64483323830025,41.78141759217778],[-87.64483855512822,41.78155666681304],[-87.64483846089743,41.7815566670716],[-87.64466464169942,41.78155714886487],[-87.64453415336442,41.78156048300725],[-87.64448339548115,41.78156179779893],[-87.64440278453638,41.781563866607016],[-87.64427229617819,41.781567200451754],[-87.64421281031906,41.78156868231664],[-87.64414196415446,41.781569629470255],[-87.64410162715718,41.78157018304718],[-87.6440438429628,41.781570220834105],[-87.64400120491217,41.78156656207962],[-87.6439627061791,41.781559799656975],[-87.64396235407985,41.78155970808028],[-87.64392234099368,41.781549293785886],[-87.64389475837385,41.78154007210053],[-87.64384615850233,41.78151788099258],[-87.64380140168082,41.781489510833964],[-87.64377370469407,41.781466978624465],[-87.64374883991846,41.78144018231559],[-87.64373366967031,41.78141882300384],[-87.64372099040031,41.781397670743125],[-87.64369626813694,41.781330204893074],[-87.64369158531804,41.78128818913738],[-87.64368999870416,41.781196739852184],[-87.6436880249995,41.781114042528834],[-87.6436847176616,41.780977878416536],[-87.6436818331419,41.780857002812944]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3517538.69897","perimeter":"0.0","tract_cent":"1168775.4170634","census_t_1":"17031671000","tract_numa":"11","tract_comm":"67","objectid":"845","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861667.76932655","census_tra":"671000","tract_ce_3":"41.77593655","tract_crea":"","tract_ce_2":"-87.65683353","shape_len":"7956.09995608"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65817888409181,41.772276855038186],[-87.65916633251315,41.77226256164254],[-87.6591716544342,41.77241347809458],[-87.65917851880722,41.772717229574184],[-87.65917967316699,41.772768032984416],[-87.65919482387672,41.77333067528018],[-87.6592059523852,41.773710358935006],[-87.6592139557195,41.77401035734419],[-87.65921619225853,41.774077797520064],[-87.65922064246315,41.77421199248472],[-87.65925838486025,41.77569473672596],[-87.65926343351869,41.77590231731285],[-87.65926776570642,41.77608025531336],[-87.65928853699933,41.776918594005124],[-87.65930768360727,41.77762849066651],[-87.65931070761889,41.77772172024921],[-87.65931998940317,41.778007851623286],[-87.65932447004934,41.77818570809978],[-87.65932527326629,41.778235082643],[-87.65933645556598,41.778679668806745],[-87.65933905739399,41.778767216306896],[-87.65934113767337,41.778837206603285],[-87.65934320761403,41.778906854075984],[-87.65934542078288,41.77898131066321],[-87.65934819107943,41.779074514585155],[-87.659358714134,41.779428579623904],[-87.65936145554264,41.779543032699145],[-87.65916720887613,41.77954526845358],[-87.65839060744035,41.77955536305244],[-87.65817395409074,41.779558866720976],[-87.65796490895403,41.779562246756996],[-87.65762110711843,41.77956654084063],[-87.6572269226552,41.77957146277233],[-87.65703679308852,41.77957433222855],[-87.65693041472123,41.779575937609145],[-87.65673636115257,41.77957886579328],[-87.65591731352966,41.7795914105278],[-87.65574063697738,41.77959346087826],[-87.65557237828165,41.779595413524795],[-87.65475551004525,41.779606343699854],[-87.65450197423793,41.779608430738016],[-87.65449905963284,41.779455841031755],[-87.65449127310193,41.77915937743952],[-87.65448928680179,41.77908375688362],[-87.65448823922044,41.77904385966102],[-87.6544745486723,41.77852260936934],[-87.65446639742031,41.77824555230836],[-87.65446524744262,41.778206466785406],[-87.6544564211743,41.77790536571494],[-87.65445162831904,41.7777921770262],[-87.6544450323421,41.777636412598724],[-87.65440599834574,41.77613368134771],[-87.65440203300687,41.77597361098044],[-87.6543981301434,41.77581606517929],[-87.65439203793325,41.77558690808208],[-87.65437534676975,41.774959079617986],[-87.65435771472683,41.77426719368948],[-87.65435458449903,41.77415375349572],[-87.65434535509978,41.773819279201724],[-87.65433458181171,41.773415584645434],[-87.65432489516162,41.77305492702995],[-87.65431910645498,41.77278038097155],[-87.65430967308932,41.772332947172636],[-87.65521115550185,41.772319558662694],[-87.65552280070342,41.77231568960117],[-87.65573977876278,41.7723129902991],[-87.6565726681607,41.772300116568125],[-87.6567375184139,41.772297937627414],[-87.6568577348481,41.77229634857309],[-87.65694033870945,41.77229525641247],[-87.65775731109848,41.77228299389626],[-87.65794837168497,41.772280212111006],[-87.65800340464698,41.77227941045908],[-87.65817888409181,41.772276855038186]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3514234.83513","perimeter":"0.0","tract_cent":"1170027.52592045","census_t_1":"17031680600","tract_numa":"16","tract_comm":"68","objectid":"861","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864354.38896093","census_tra":"680600","tract_ce_3":"41.78328184","tract_crea":"","tract_ce_2":"-87.6521654","shape_len":"7957.03345047"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6543343561598,41.77960981042717],[-87.65450197423793,41.779608430738016],[-87.65450453982119,41.77974273425834],[-87.6545127404858,41.78006529546349],[-87.65452319783161,41.78047661324041],[-87.65454597323752,41.78132072719114],[-87.65455002454246,41.781427396479174],[-87.65455458197566,41.78154740161946],[-87.65457149633484,41.78234235797684],[-87.65459168767387,41.7831395839026],[-87.65459435420783,41.78324532042306],[-87.65459773745512,41.78337947061747],[-87.65460615369216,41.78369837914112],[-87.6546164417813,41.78408821170609],[-87.65463872636857,41.7849755996628],[-87.6546414944308,41.785064001895655],[-87.65464433119796,41.78513598160746],[-87.65465029001768,41.78540193844856],[-87.65465702942966,41.78570162720242],[-87.65466287756296,41.78596066775487],[-87.65466943912126,41.786252890962885],[-87.65467345119578,41.78643128904841],[-87.65467617865906,41.78655257967271],[-87.65468043626966,41.786795556702025],[-87.65468442500804,41.78688594941482],[-87.65451680472985,41.78688789574788],[-87.65421016438482,41.78689030963402],[-87.653844757437,41.786895091697644],[-87.65360555515217,41.7869003455208],[-87.65347346528085,41.78690160893412],[-87.6532989096055,41.7869032780838],[-87.6530143176491,41.7869080973248],[-87.65270772092991,41.78691330663247],[-87.6524827610159,41.78691713286443],[-87.65225922945295,41.78692038862786],[-87.65211434054,41.786922495580775],[-87.65173528684822,41.78692784891345],[-87.65125362139271,41.78693470490471],[-87.65104689938501,41.78693808857275],[-87.65079842323092,41.78694215521478],[-87.65057068029418,41.786945576966616],[-87.65002175084422,41.786953866677926],[-87.6498276736979,41.78695623689929],[-87.6498246871409,41.78683068330976],[-87.649816780388,41.786501819475085],[-87.6498162942871,41.78648161477781],[-87.64979940198475,41.785779827111234],[-87.6497890850235,41.785349570998264],[-87.6497892441774,41.785134579401564],[-87.64978358588513,41.78503943333886],[-87.64977957445417,41.78481585994711],[-87.64977020735769,41.78463797426563],[-87.64976221432042,41.78444464640459],[-87.64975929747929,41.78430156923932],[-87.64975638553929,41.78416148337525],[-87.6497523985417,41.78396727371921],[-87.64974825220688,41.78376735498582],[-87.64974247686501,41.78351023555177],[-87.64973666822212,41.78331465962923],[-87.64972735298765,41.783001024880356],[-87.64972391651713,41.78286469581503],[-87.64972317411751,41.78283524488935],[-87.64971562411786,41.78253810310005],[-87.64970988354523,41.78229843750437],[-87.64970576688003,41.782119869469184],[-87.64970423964712,41.78205657704144],[-87.6496986971101,41.781822401185224],[-87.6496952995464,41.78167975990556],[-87.64969061781228,41.781491849392275],[-87.64968791025449,41.781383177475234],[-87.64968632799345,41.781319683280856],[-87.64967861752231,41.78101699698928],[-87.64967280304639,41.78078775919597],[-87.64966585468213,41.78051339849725],[-87.64965765210351,41.78018798650103],[-87.64965622963057,41.78013361499455],[-87.64965582638024,41.78011821574755],[-87.64965429158435,41.78006592786133],[-87.64964308069172,41.779674017471145],[-87.64990808378445,41.779675278650494],[-87.6506234199349,41.77966548108669],[-87.65085901121712,41.77966113597798],[-87.65107245267924,41.77965719535551],[-87.65185113851244,41.77964782479809],[-87.65207218129711,41.779644198269835],[-87.65230485245023,41.77964062296069],[-87.65308015174308,41.77963249570085],[-87.65328763522885,41.77962788971016],[-87.65348515854716,41.77962350432134],[-87.6543343561598,41.77960981042717]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7090659.17321","perimeter":"0.0","tract_cent":"1158813.68143736","census_t_1":"17031660600","tract_numa":"32","tract_comm":"66","objectid":"846","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1862083.7225359","census_tra":"660600","tract_ce_3":"41.77728722","tract_crea":"","tract_ce_2":"-87.69334125","shape_len":"13298.900018"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68355166924465,41.7757078645524],[-87.68354796735586,41.775599358860354],[-87.6837783728635,41.77561441345315],[-87.68398979109703,41.775611492158035],[-87.6841498028481,41.775609267949534],[-87.68416057374499,41.7756091037798],[-87.68441266805321,41.77560526442768],[-87.68459688478129,41.77560218836683],[-87.68476308659962,41.77559943238411],[-87.68494504144044,41.77559641489626],[-87.68511986380369,41.775594272923165],[-87.68531155332846,41.77559186906731],[-87.68537157930574,41.7755911241849],[-87.68549554239654,41.775589586126884],[-87.68570299736618,41.775586996088116],[-87.68598096117026,41.77558180457839],[-87.68614433487397,41.775578752938564],[-87.68628631056947,41.775576424149364],[-87.6865095042984,41.77557279613373],[-87.68659010024244,41.77557152892477],[-87.68720854153216,41.77556180264261],[-87.6873114482305,41.775560183992695],[-87.68755556452055,41.7755576046543],[-87.68773163847315,41.775554971768095],[-87.68781772566555,41.775553358038344],[-87.6879546539215,41.77555079108332],[-87.68837977070774,41.775547689553484],[-87.68843242311019,41.775521347615154],[-87.6884919874659,41.77549578458542],[-87.68877804804367,41.775493886487766],[-87.6890019449796,41.77548951661412],[-87.6890099386204,41.7754893298272],[-87.68901448597093,41.77548923019049],[-87.68903074137184,41.775488953893934],[-87.68924277694119,41.775485351020905],[-87.68949681046358,41.77548090214845],[-87.68964329323238,41.775478545893904],[-87.68977390318487,41.775476444673124],[-87.68998757212181,41.77547201558327],[-87.6901221391621,41.77546999732344],[-87.69024900747385,41.77546848028022],[-87.69045400145463,41.77546578994691],[-87.69075675518474,41.77546150113488],[-87.69086254460892,41.77545996266225],[-87.6911193137858,41.7754562285886],[-87.69131723694821,41.775453602569485],[-87.6914719632299,41.775451760422186],[-87.69166482615795,41.77544945213738],[-87.69191617967496,41.775445312261226],[-87.69207842160051,41.77544264625503],[-87.6922826679464,41.77543928957961],[-87.69242474280288,41.77543799658889],[-87.69256733798251,41.775435993081864],[-87.69268600763232,41.775434292874436],[-87.69274934990722,41.77543338534787],[-87.69287650721668,41.77543173419007],[-87.69297888022672,41.775430219180315],[-87.69312236639124,41.77542709451452],[-87.69322192254903,41.77542887732892],[-87.69329826490798,41.77544883519133],[-87.69337978691144,41.77547272836147],[-87.69359157010673,41.77546623481833],[-87.69375833679635,41.77546304689272],[-87.69390024203145,41.77546037898465],[-87.6939074503135,41.77546027201007],[-87.69403466170634,41.77545838276413],[-87.69419305481992,41.77545668441713],[-87.69439589515225,41.77545358647549],[-87.69451862222452,41.77545113304854],[-87.6946515108461,41.77544847637128],[-87.6948578288601,41.7754458909206],[-87.69502378188159,41.77544341015289],[-87.69512596110086,41.77544232136095],[-87.6951829081321,41.77544171451428],[-87.69534190106646,41.77543867320958],[-87.6954919437202,41.77543613085292],[-87.69573607952832,41.7754320600014],[-87.69587100936468,41.77542980979249],[-87.69603047555779,41.775427099476225],[-87.69621164802199,41.7754240979468],[-87.69634549939141,41.775422982552634],[-87.69642525349956,41.775422318223185],[-87.69659208082159,41.77542038862152],[-87.69679066281566,41.775417839426304],[-87.6969553256717,41.775415424736615],[-87.69709899110255,41.77541331779806],[-87.69731206888237,41.77540928345413],[-87.69746225561882,41.77540698630809],[-87.69756506763167,41.7754055516953],[-87.69771623629103,41.77540405577153],[-87.69784250553732,41.77540321749222],[-87.69802791951548,41.77540133400415],[-87.69817109540958,41.775399863536485],[-87.69846432430637,41.77539485464493],[-87.69862148758396,41.77539144220571],[-87.69877850626789,41.77538841514978],[-87.6989036804134,41.775386497184144],[-87.69897393338512,41.77538545780873],[-87.69938676019015,41.77538176248965],[-87.69943854420333,41.775381298757274],[-87.69977296198077,41.77537436170377],[-87.69999628463927,41.77537064123214],[-87.70015736818354,41.77536918111108],[-87.70043240664975,41.775364768931404],[-87.70060473686479,41.77535855527082],[-87.70065556865416,41.775356722378746],[-87.700886027111,41.77535604283247],[-87.70106580862473,41.77535277872842],[-87.70121368034089,41.77535014395179],[-87.70123055547097,41.77534984326779],[-87.70145803893513,41.77534601770693],[-87.70162633882413,41.77534343053602],[-87.70182255247734,41.77534054347612],[-87.70192641628903,41.7753390152397],[-87.70223041563752,41.775334757918436],[-87.70242804359638,41.77533161194548],[-87.70243420985601,41.7753315138071],[-87.70265418212415,41.77532723298466],[-87.70283332971694,41.77532500546707],[-87.70305229212084,41.77532246453626],[-87.70305711492273,41.77546295427144],[-87.7030581348209,41.77552728618834],[-87.7030596755352,41.77560956866378],[-87.70306114454549,41.775691686086866],[-87.70306336077942,41.775791096678304],[-87.70306523806298,41.775861470748175],[-87.70306784830532,41.77595808431548],[-87.70306889078445,41.7760201111414],[-87.7030709809998,41.776139883717256],[-87.7030736768149,41.776231503129345],[-87.70307604314381,41.776311841673326],[-87.70307816888968,41.77637930787097],[-87.70308008222567,41.776438513118755],[-87.70308280258567,41.776580051413895],[-87.70308524697684,41.776685445807644],[-87.70308786347687,41.776778354595024],[-87.70309046101,41.77691371754118],[-87.70309168479884,41.77701339709646],[-87.703095475837,41.777144027459265],[-87.7030991961135,41.777272225435574],[-87.70310241046981,41.77744195034073],[-87.70310372424059,41.777506228961556],[-87.70310526864323,41.77759188691276],[-87.70310734069801,41.7777060335493],[-87.70310979282596,41.777800121465475],[-87.70311225353441,41.7778820247535],[-87.70311470159686,41.777961512990615],[-87.70311589961902,41.77804738912739],[-87.70311717900425,41.778139109961444],[-87.7031191647281,41.778217141182004],[-87.7031213008347,41.77830228095223],[-87.70312293247625,41.778439994541515],[-87.70312347322312,41.77849979982524],[-87.70312402181303,41.77853363999896],[-87.7031289481938,41.778659575301994],[-87.70313518755025,41.778823663510984],[-87.70313675400799,41.77897328038571],[-87.70290275241058,41.778976233453534],[-87.70272194910456,41.77897798544507],[-87.70248371551243,41.77898134281385],[-87.70229336762986,41.778984331538325],[-87.70203998027077,41.77898889484202],[-87.70191831483166,41.77899025261007],[-87.7016676614953,41.778993050168935],[-87.70147808586674,41.77899579480186],[-87.70124156430104,41.77900031161436],[-87.70100735432715,41.779004566233375],[-87.70083814719523,41.779005226480734],[-87.70070036674485,41.77900781698682],[-87.70056040882466,41.77901044802481],[-87.70030306791014,41.77901440941902],[-87.70008891693277,41.77901822355817],[-87.6998903947785,41.77902102602879],[-87.69975700237639,41.779022211466575],[-87.6994852734438,41.7790269734212],[-87.69938539333064,41.77902872367819],[-87.6991627957952,41.77903026687648],[-87.69901248632564,41.77903300464198],[-87.69879881084682,41.77903695649045],[-87.69863919129736,41.779039450244575],[-87.69840203380873,41.77904146038828],[-87.69826640080953,41.779043727783375],[-87.69814014193403,41.77904583828161],[-87.69784187196106,41.77905104181941],[-87.69761298820596,41.77905427614735],[-87.69740086348985,41.779057108815564],[-87.69704678555571,41.77906244318645],[-87.6967028750726,41.779067623145025],[-87.69645055982379,41.77907121928193],[-87.69624063252758,41.77907428153289],[-87.69603099089828,41.779078113387435],[-87.69582922319242,41.7790804492778],[-87.69566882698257,41.779082305876464],[-87.6953889765288,41.77908596638779],[-87.69515283040081,41.77908948480121],[-87.69490230216768,41.77909402052424],[-87.69461101640003,41.779098711388585],[-87.69445889938868,41.779101160911814],[-87.69421795237388,41.77910443088727],[-87.69392329329358,41.77910781334387],[-87.69378303931401,41.779109529956465],[-87.69360820152488,41.779112288758064],[-87.69360769365788,41.779112296907215],[-87.69339234976708,41.779115772482704],[-87.69319230019224,41.77911900054212],[-87.6929259297401,41.77912388304127],[-87.69272976461573,41.77912556138859],[-87.69246194078602,41.779129116897295],[-87.69217607607177,41.77913399401534],[-87.6919952848297,41.779137078285245],[-87.69178624664819,41.77913917713007],[-87.69157456383462,41.77914172707688],[-87.69137727063145,41.77914622261295],[-87.69116411878413,41.77914909318439],[-87.69095854519831,41.77915273708885],[-87.69085810966128,41.779154517440766],[-87.69060062933167,41.779157605312236],[-87.69041104996029,41.7791606335312],[-87.69015140082665,41.77916428456028],[-87.68994741849914,41.77916673740482],[-87.68973690584015,41.779170238946406],[-87.6896524496534,41.779171644250106],[-87.68925554352981,41.779177954232885],[-87.68903461788948,41.77918088676729],[-87.68897297769567,41.77918177022679],[-87.68883649872336,41.77918359006446],[-87.68868476048463,41.7791861419165],[-87.68852327077795,41.77918786412215],[-87.68840829011391,41.779189090596006],[-87.68824723137757,41.77919244000402],[-87.68811279418134,41.779195389844205],[-87.6879635408854,41.77919875027049],[-87.68780827073114,41.779202515781805],[-87.68765590280476,41.77920204373834],[-87.68745136641802,41.77920119560872],[-87.68730521764374,41.77920463712416],[-87.68715689090938,41.77920812959671],[-87.68687670789653,41.77921198704214],[-87.68670417959879,41.77921472088747],[-87.68649850457389,41.779217761824555],[-87.68627024621635,41.77922067519919],[-87.68609228871118,41.77922337836962],[-87.6859789847172,41.77922509924447],[-87.68546012697402,41.779232245947966],[-87.68500323998693,41.77923844995391],[-87.68493737516413,41.779239423764714],[-87.68486292580961,41.77924052471696],[-87.68466067989293,41.77924351448381],[-87.68450507505918,41.77924411770191],[-87.68429284850436,41.77924599252785],[-87.68411182608739,41.7792475767737],[-87.6839068959342,41.77924940979022],[-87.68363935062678,41.77921601523951],[-87.68363285412185,41.779011713829824],[-87.68363095977598,41.77892333684462],[-87.68362893688243,41.77882949798556],[-87.6836278975784,41.778780671113395],[-87.68362667386856,41.77872319867098],[-87.68362528877434,41.77865817795708],[-87.68362353951838,41.778576059326916],[-87.68362148625226,41.778481671431486],[-87.68361809909088,41.77833771403302],[-87.68361298020523,41.77814023309368],[-87.68360790808224,41.777948981960755],[-87.6836031259588,41.777768956626886],[-87.68359677559131,41.777530002408],[-87.68359397897149,41.77741744333333],[-87.68359182191294,41.77733065625418],[-87.68359029386144,41.77723138646338],[-87.68358619676133,41.77708160711249],[-87.68358261174049,41.776950107659275],[-87.68357850922585,41.77680079480046],[-87.68357500725092,41.77667193033381],[-87.68357074694043,41.77651649679659],[-87.68356584918105,41.77633704706504],[-87.68355855979354,41.7760712482643],[-87.6835557673084,41.775922985623865],[-87.68355166924465,41.7757078645524]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3539051.04993","perimeter":"0.0","tract_cent":"1146167.87579898","census_t_1":"17031640800","tract_numa":"16","tract_comm":"64","objectid":"847","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1861091.99119038","census_tra":"640800","tract_ce_3":"41.77481465","tract_crea":"","tract_ce_2":"-87.73972639","shape_len":"7983.26993891"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.74163997164564,41.77113587781446],[-87.74205453853614,41.771128721043496],[-87.74205500949839,41.77114633611891],[-87.74206287580107,41.77144064830227],[-87.74206332544729,41.77145747126166],[-87.74206572432688,41.77154721704146],[-87.74207122797547,41.771786247096514],[-87.74207273319075,41.77182999900129],[-87.74207332623024,41.77185316340496],[-87.74208073435342,41.772096346868075],[-87.742087210256,41.77232132888793],[-87.74208721023837,41.77232133080886],[-87.74209299339093,41.772573808793894],[-87.74209943522463,41.77281037266535],[-87.74210385096289,41.77296429603674],[-87.74210976100676,41.773169673121075],[-87.74211449512971,41.77333420045082],[-87.74212168129041,41.77358956657679],[-87.74212898752728,41.773903799642746],[-87.74212898748947,41.773903803759],[-87.74213654055255,41.77418713259558],[-87.74214527341337,41.77445381343133],[-87.74216537194835,41.77478021463591],[-87.74216537228469,41.774780217930804],[-87.74216537225696,41.77478022094939],[-87.74218119561931,41.77503718966532],[-87.7421858906562,41.77531639140496],[-87.74217955439788,41.77555925673347],[-87.74218382791904,41.77583645294076],[-87.74220482591373,41.77611291189921],[-87.74222044330352,41.77632855693658],[-87.74222833481323,41.7766052332895],[-87.74223788755906,41.7769401587788],[-87.74225059111416,41.77722961041887],[-87.74226525742492,41.77754088931295],[-87.74227436879563,41.77785823195182],[-87.7422781949399,41.77797274101044],[-87.74228385946027,41.77814226047156],[-87.74229269392967,41.77842912375372],[-87.74185397576495,41.77843495058068],[-87.74148202862867,41.77843915481674],[-87.74106930699438,41.778443656170644],[-87.74078998350076,41.7784467019476],[-87.74043599720586,41.77845132474754],[-87.74011266365588,41.77845566565138],[-87.73984664087261,41.778457970715166],[-87.73958680213967,41.77846022150121],[-87.73921533442899,41.77846409155974],[-87.73886813992812,41.77846770181786],[-87.73861530676135,41.778471014944266],[-87.73841023794854,41.77847370163221],[-87.73808551642053,41.77847745333998],[-87.73792227273083,41.77847969338177],[-87.73756872354708,41.77848454424856],[-87.73741994590043,41.77848666704071],[-87.7373969772088,41.778486994670665],[-87.73739696510809,41.778486994882314],[-87.7373931549352,41.77835474772335],[-87.73735633589635,41.77723316799058],[-87.73734052186204,41.776666143833644],[-87.73734050908888,41.77666570193533],[-87.73734050443697,41.77666553121583],[-87.7373246570901,41.77610098053953],[-87.7373100280788,41.77575066351147],[-87.73728327552958,41.7748480899517],[-87.73728318009084,41.774844856123096],[-87.73728314064805,41.7748435331662],[-87.73725616172204,41.773946350285314],[-87.73725306031308,41.77383587585413],[-87.73723018279803,41.77304025347308],[-87.73722990770285,41.77303080643898],[-87.73722183704238,41.77275377355899],[-87.73720523132512,41.772122155530205],[-87.7372038371448,41.772072351040514],[-87.7372028209879,41.77203604059156],[-87.73719488088122,41.77180479178379],[-87.73719020403253,41.77166652363876],[-87.73718125290453,41.77129702568311],[-87.73717821008465,41.77122977451936],[-87.73717602842368,41.77120211052383],[-87.73719732826436,41.77120179485707],[-87.73726685751728,41.771200763976324],[-87.73771353818346,41.77119414157493],[-87.73841770271635,41.771183702720464],[-87.73902899844347,41.771174636530446],[-87.73963618658928,41.771165628464566],[-87.74024198248026,41.77115663771935],[-87.74085646755177,41.771147514600834],[-87.74146376602214,41.7711384952481],[-87.74163997164564,41.77113587781446]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3465996.71435","perimeter":"0.0","tract_cent":"1172595.76107545","census_t_1":"17031680300","tract_numa":"21","tract_comm":"68","objectid":"875","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1867079.92225215","census_tra":"680300","tract_ce_3":"41.79070479","tract_crea":"","tract_ce_2":"-87.64266914","shape_len":"7948.83628696"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64465103323788,41.78702945430005],[-87.64496859241584,41.78702514888674],[-87.6449746927624,41.78722547015308],[-87.64498103216626,41.787482456073555],[-87.64498359299837,41.78758628754523],[-87.64499228442074,41.787929371998686],[-87.64499310781262,41.78796188356609],[-87.64499399322703,41.78799682392489],[-87.6449944330505,41.78801418664809],[-87.64499486746107,41.78803133555879],[-87.64501143711715,41.788685431700586],[-87.64501640860705,41.78884654318071],[-87.64502314564608,41.78906487209144],[-87.64503792677132,41.7896472434248],[-87.64504896551054,41.79008249852432],[-87.64506018258054,41.79052505446024],[-87.6450645621009,41.790667033843086],[-87.64506843248162,41.79079250713299],[-87.64507826918167,41.791247568687005],[-87.6450890484725,41.79174478807989],[-87.64509412092546,41.791872153322885],[-87.64510063921408,41.7920907472758],[-87.64510832819654,41.79232153286092],[-87.64511102068391,41.792422785678795],[-87.64511264267513,41.79248380085898],[-87.6451183999124,41.79269981060056],[-87.64513056526837,41.79317376663309],[-87.64513651646278,41.793416150088014],[-87.64513779225328,41.793467914943534],[-87.64513940456986,41.793533540452984],[-87.64514440735361,41.79373856986804],[-87.64515043257101,41.79394449015805],[-87.64515107515231,41.79396604432582],[-87.64515602946541,41.794132278033224],[-87.64516036058433,41.79430185191307],[-87.64494376434422,41.79430450018958],[-87.644155816481,41.794319699282035],[-87.64345663916374,41.79433257204646],[-87.64298128096225,41.794341016504646],[-87.64292974725977,41.794341920598264],[-87.64272837100567,41.794346320301194],[-87.64260959993746,41.794348915007106],[-87.64208121145505,41.794357592039404],[-87.64160472174794,41.79436550888938],[-87.64108086192616,41.79437460047243],[-87.64085346758797,41.794378546186024],[-87.6404813293435,41.794384590062606],[-87.6403741154013,41.79438659408091],[-87.64032044918473,41.79438759775332],[-87.64031938661738,41.79403241949711],[-87.64037129302253,41.794031484518925],[-87.64034244948945,41.79300613529278],[-87.64031651759561,41.79208835994085],[-87.64031648951624,41.79208735810736],[-87.64030311589767,41.79161213982923],[-87.6403028621395,41.79160311838106],[-87.64027890838902,41.79075192534571],[-87.64027873334679,41.790745707384595],[-87.6402250293753,41.78893818773348],[-87.64019977795732,41.78808716950896],[-87.64019554304168,41.787944447613924],[-87.64017068902166,41.7871068020797],[-87.64046368707781,41.78710125881623],[-87.6408301428509,41.787094576926734],[-87.64129008515496,41.787088681556945],[-87.64163038482914,41.78708392026431],[-87.6421484188088,41.78707438706128],[-87.64253410978611,41.787067467213646],[-87.64294913980501,41.78706001930433],[-87.64305942159686,41.787058010987],[-87.64329993532567,41.7870536196219],[-87.6435879808269,41.78704832404627],[-87.64376193277006,41.78704498323345],[-87.64401799806426,41.787040065149995],[-87.64436686885062,41.787034198419704],[-87.64465103323788,41.78702945430005]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7085464.21753","perimeter":"0.0","tract_cent":"1157276.13924684","census_t_1":"17031630400","tract_numa":"32","tract_comm":"63","objectid":"848","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869348.74006967","census_tra":"630400","tract_ce_3":"41.79725472","tract_crea":"","tract_ce_2":"-87.69878135","shape_len":"10648.2551736"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7034184374003,41.79351579600987],[-87.70355407943639,41.79351390765323],[-87.70358291791989,41.79433155931908],[-87.70358511521367,41.79442720952982],[-87.70358983507398,41.79463267307878],[-87.70361059258565,41.795231974670656],[-87.70361232853368,41.79534033113319],[-87.70361500862919,41.79550763512643],[-87.70362995561204,41.79610114177017],[-87.70363442790548,41.79625297998073],[-87.70363947943862,41.79642447100693],[-87.70365669668776,41.79706332561674],[-87.70365950655781,41.79716684591145],[-87.70366413588431,41.79733738342568],[-87.70368715547882,41.798140323173136],[-87.70371038883788,41.79886527137044],[-87.7037136875264,41.798993088650924],[-87.70371591246283,41.79906911976011],[-87.70372562418942,41.79939947522663],[-87.70373924351789,41.79984401436819],[-87.7037511677072,41.800278115899836],[-87.70375343074342,41.80035944147549],[-87.70376153177145,41.80065062708977],[-87.70376588354931,41.80082074776667],[-87.7035846796568,41.80082320630457],[-87.70316189245123,41.800829724388365],[-87.70288073125617,41.80083405444265],[-87.70254354111968,41.800840916770994],[-87.70234336254609,41.800844990098085],[-87.701652343426,41.80085754829604],[-87.70132535989885,41.80086336353729],[-87.70107955300902,41.80086773439685],[-87.70044877592926,41.80087818820866],[-87.70028161730819,41.800880958216325],[-87.70010378255965,41.8008840832433],[-87.69987503389724,41.80088810235252],[-87.6990715595331,41.80090134210872],[-87.6988836394474,41.80090448228509],[-87.6987111249376,41.800907364775895],[-87.69827111906608,41.80091558123336],[-87.69794882714609,41.800921592548875],[-87.6978819191734,41.80092275897929],[-87.6976632599042,41.800926351988814],[-87.69746565592116,41.80092959460317],[-87.69705596723786,41.80093659850655],[-87.696576890265,41.80094478662637],[-87.69644134864693,41.800947340174304],[-87.6962988732886,41.80095002388514],[-87.69618501122945,41.800952149318256],[-87.69603024746344,41.80095503759433],[-87.69583307801193,41.80095808633849],[-87.69538238187387,41.80096505345802],[-87.6952190023832,41.800967663097026],[-87.69505092765068,41.80097034713061],[-87.69461142193948,41.80097819092438],[-87.69417150824063,41.8009860398224],[-87.69400021684466,41.800989399548094],[-87.69399603717684,41.80085097763243],[-87.69398787191481,41.800542365111625],[-87.69397239037171,41.799957224611376],[-87.69395492464758,41.79929397092552],[-87.69395053123242,41.799163638480074],[-87.69394707922481,41.799061239313936],[-87.6939458429507,41.79901515588278],[-87.69394333014976,41.79894401002104],[-87.69392599091236,41.79829390204796],[-87.69390679584235,41.79759070917923],[-87.69390015088952,41.797338662209135],[-87.6938955304477,41.79716341601563],[-87.69387668149477,41.79651030816097],[-87.69385221337285,41.7957252508079],[-87.69384766948508,41.79551579827661],[-87.69384444233162,41.79536705093396],[-87.69383314665367,41.79495762246831],[-87.6938150698569,41.7943044091582],[-87.69381076459604,41.79415020782218],[-87.69379793880665,41.79369080797132],[-87.6940219973594,41.793686923288604],[-87.69487903664964,41.793672060840635],[-87.69501793603374,41.79366969270045],[-87.69516431620289,41.79366719690158],[-87.69609941298992,41.793651476265175],[-87.69624023155049,41.79364912086015],[-87.69648999287176,41.7936449427755],[-87.6972783619201,41.79362966141187],[-87.69746053562498,41.79362656199998],[-87.69763615318347,41.793623573388025],[-87.69799628483116,41.7936180721216],[-87.69850412823544,41.79360899880006],[-87.69867981613984,41.793605300954724],[-87.69915679661636,41.79359526004124],[-87.69964621788232,41.793587477361704],[-87.69989688385645,41.79358214041572],[-87.70013251059335,41.793577123438645],[-87.70087692147857,41.79356429191657],[-87.70111767748762,41.79355974298771],[-87.70127733849121,41.79355672575767],[-87.70218614183256,41.79354070140041],[-87.7023371457071,41.79353790846511],[-87.7024995561102,41.79353490354006],[-87.70294449817415,41.7935256523161],[-87.7034184374003,41.79351579600987]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3563051.46647","perimeter":"0.0","tract_cent":"1163251.97356868","census_t_1":"17031611600","tract_numa":"18","tract_comm":"61","objectid":"849","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869521.59833888","census_tra":"611600","tract_ce_3":"41.79760593","tract_crea":"","tract_ce_2":"-87.67686223","shape_len":"7937.83686247"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67873036292528,41.79386885718183],[-87.67881500395127,41.793867854798606],[-87.67881809511236,41.7940142584305],[-87.67883046812645,41.79414982808177],[-87.67884880314517,41.79428508893436],[-87.67887310370388,41.79441969714654],[-87.67888140487857,41.79445987990355],[-87.67895544320729,41.79478642279782],[-87.67895554850563,41.794786886633176],[-87.67897222025928,41.7948603767155],[-87.67911364571107,41.795468012504365],[-87.67916847131254,41.79571175002657],[-87.67925310145056,41.79608935799883],[-87.6793511226216,41.796593149727315],[-87.67935896909304,41.79663298653687],[-87.67938238651371,41.796764502515344],[-87.67940072997935,41.79689907692394],[-87.67941310818922,41.79703430316709],[-87.67941369682366,41.7970665521451],[-87.6794347927621,41.79792254615714],[-87.67943564490503,41.79797400635005],[-87.67945510954128,41.79881009487681],[-87.6794571276968,41.798882143832415],[-87.67945843826848,41.79893360635167],[-87.67947814955033,41.7996101849019],[-87.67948083662687,41.79970659290161],[-87.679484568409,41.7998355957678],[-87.67949524978226,41.800273026815475],[-87.67950922600326,41.80083739942419],[-87.67951413029579,41.80107652331239],[-87.67951653277301,41.80116951193667],[-87.67942628875615,41.8011706187695],[-87.6793105126276,41.801172615039654],[-87.67906948092762,41.80117677058757],[-87.67897399666845,41.80117841665805],[-87.67877031244879,41.801180717594846],[-87.67846396131283,41.801184127259006],[-87.678107981951,41.801188107340515],[-87.67782730147422,41.80119174762116],[-87.67756583966639,41.80119533227147],[-87.67730470818012,41.80119889077015],[-87.67693615089101,41.80120317547178],[-87.67671118620437,41.80120579079156],[-87.6763298296215,41.80120947375809],[-87.67604772228303,41.80121275410288],[-87.67585476180084,41.80121499075358],[-87.67578048445257,41.80121602940673],[-87.67572126422756,41.80121700985988],[-87.675568740281,41.80121953513681],[-87.67534043075341,41.80122335943025],[-87.67511715479162,41.801226339978534],[-87.67482440419053,41.80123028192188],[-87.67450695863394,41.80123336221474],[-87.6745035734802,41.801129099286086],[-87.67449973552031,41.80092375000838],[-87.67449681511387,41.80077354659553],[-87.67449562823256,41.80071247152671],[-87.67449113714113,41.80048137710975],[-87.67448754484344,41.80035015204061],[-87.67448526542879,41.800266877680414],[-87.67447932113383,41.80005237782661],[-87.67447718338734,41.79991377924128],[-87.67447565085976,41.799874526920306],[-87.67446948474836,41.79971655829992],[-87.67446437187937,41.79953543368566],[-87.67446038708074,41.799415430738904],[-87.67445557058021,41.79927039514933],[-87.67444999266017,41.799081007558186],[-87.67444599621805,41.79894374326203],[-87.67444486747642,41.79890495977843],[-87.67444287567736,41.79885566101035],[-87.67443843705315,41.79868033067533],[-87.67443448575278,41.79853977321267],[-87.67442917929544,41.79835250025289],[-87.67442417469037,41.7981751084425],[-87.67442024876713,41.798033617781556],[-87.67441993671548,41.79802237183448],[-87.67441852333903,41.7979714226704],[-87.67441310530823,41.79780936902795],[-87.6744087250137,41.7976784415222],[-87.67440654390408,41.79759782936807],[-87.67440594358573,41.797575665550596],[-87.67440534436221,41.79755350228818],[-87.67440351108571,41.7974857628233],[-87.67439844436888,41.79728584005001],[-87.67439154323918,41.79701439067927],[-87.67438537594941,41.796771513513576],[-87.6743820016243,41.796663040281516],[-87.6743809615431,41.796629605628226],[-87.67437955500033,41.79658440220077],[-87.67437385629943,41.79637816391405],[-87.67436897290607,41.79619970246531],[-87.67436380808675,41.79601295165426],[-87.67435969563871,41.79586309007232],[-87.67435516408139,41.79576738867598],[-87.67435083172165,41.795675906387686],[-87.67434383755051,41.79541356743444],[-87.6743377725295,41.79518940681628],[-87.67433228898942,41.79498366368404],[-87.67432544065439,41.79472854300773],[-87.6743181705446,41.794457393268566],[-87.67431602849241,41.79437749563005],[-87.67431188217365,41.79422283048572],[-87.6743066326456,41.79402647412041],[-87.67430056576606,41.79391631549006],[-87.67463549376919,41.79391293583804],[-87.6749972549701,41.79390982287519],[-87.6753981485089,41.7939063837696],[-87.67551987812995,41.793904783642006],[-87.67577331302799,41.79390145156847],[-87.67585526304075,41.79390053365951],[-87.67623542886797,41.79389627457788],[-87.67673536041751,41.793890418335316],[-87.67689820168187,41.79388851027096],[-87.67696013162313,41.793887796607876],[-87.67737256828651,41.79388304195088],[-87.67788462959878,41.793878006292815],[-87.67830929305562,41.79387384219189],[-87.67873036292528,41.79386885718183]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"1982388.53335","perimeter":"0.0","tract_cent":"1172247.51255279","census_t_1":"17031601000","tract_numa":"9","tract_comm":"60","objectid":"850","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1883640.4178735","census_tra":"601000","tract_ce_3":"41.83615609","tract_crea":"","tract_ce_2":"-87.6434586","shape_len":"5977.25248556"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64137489633143,41.83654968439724],[-87.64136776194623,41.83628523072599],[-87.64112851458432,41.83628793379308],[-87.64086437562251,41.836291528292996],[-87.64064031460087,41.836294622944486],[-87.6403702671382,41.836298290445114],[-87.64014632694905,41.83630211950132],[-87.64013994568235,41.83598034947213],[-87.64013710069248,41.83589308993929],[-87.64013636151525,41.835870420323346],[-87.64013114609968,41.83570762651754],[-87.64012581453673,41.83552839386071],[-87.64012071020906,41.83535530972261],[-87.64011536978141,41.83518030316884],[-87.64011037947714,41.83500005717677],[-87.64010741519378,41.83489199620356],[-87.6401053228714,41.83481572182394],[-87.64009809892816,41.834553463697965],[-87.64009771195401,41.83447959205679],[-87.64035077250435,41.834475844103395],[-87.64061467853398,41.83447274306077],[-87.64070660984775,41.834471666546605],[-87.6409472486724,41.8344688481456],[-87.6413248130253,41.83446374145559],[-87.64168271928114,41.834458899347524],[-87.64192512242867,41.8344563422685],[-87.64217000899669,41.834453654724555],[-87.64253637074951,41.83444761521437],[-87.64280441748916,41.83444407849489],[-87.64314416835019,41.83444013202203],[-87.6433243402405,41.83443779023795],[-87.64360231037251,41.83443369682865],[-87.64375687319678,41.83443205020513],[-87.64414101444278,41.834427956737095],[-87.64436731214056,41.83442549462803],[-87.64442066080791,41.834424914225714],[-87.64469935918184,41.83442137138195],[-87.64497772175578,41.83441711069378],[-87.64532033635025,41.8344118653816],[-87.64557909501646,41.834408086799904],[-87.64567750554875,41.834406649653744],[-87.64619375431921,41.83439911893292],[-87.64619649481595,41.834587035189244],[-87.64620127495724,41.834737065336],[-87.64620216248701,41.83483032078392],[-87.64620383215764,41.83500568932769],[-87.64620813483523,41.83517981125569],[-87.64621275830996,41.83536507681389],[-87.64621688334461,41.83552833037856],[-87.64622117044036,41.83570044888387],[-87.64622570406611,41.835880362571025],[-87.6462302014575,41.83606030347836],[-87.6462338155565,41.83621880666296],[-87.64623599635625,41.83631445705928],[-87.64623999560573,41.83646275332761],[-87.6462456124639,41.83667104944008],[-87.6462481563315,41.83682778960182],[-87.64625118951784,41.83701422562677],[-87.6462562958062,41.83722298491532],[-87.64626191018921,41.83743224092869],[-87.64626759306593,41.837641991860416],[-87.64627340259956,41.83787424623195],[-87.64627815787844,41.83804556861145],[-87.64594162772886,41.83804910149883],[-87.64574740057333,41.838051671139056],[-87.64565611712945,41.838052876855365],[-87.64549863386995,41.83805495666989],[-87.64522803113648,41.838058440157425],[-87.64506609703014,41.83805968507716],[-87.64483882909127,41.83806143168761],[-87.64449760281049,41.838066630617945],[-87.64420977969415,41.8380709963641],[-87.64397998186857,41.83807458451142],[-87.64384849052048,41.83807635647305],[-87.64370805558744,41.838078248572046],[-87.64343297997027,41.838081261891496],[-87.64325086873009,41.83808329415016],[-87.64314524215787,41.83808447289115],[-87.64286561498699,41.838087622156706],[-87.6426397461944,41.838089467228734],[-87.64251127610113,41.8380905165228],[-87.64226727727277,41.83809409513802],[-87.6420388023416,41.83809749855497],[-87.64203502195939,41.838097554836715],[-87.6418187692621,41.838100753658125],[-87.6416556994077,41.83810317464818],[-87.641415512003,41.83810731584924],[-87.64140982266645,41.8379233440172],[-87.641404630288,41.8377376633012],[-87.64140204780445,41.83764423273235],[-87.64139744817554,41.83747779314185],[-87.64139072632258,41.83722289258656],[-87.64138436888052,41.83700229833903],[-87.6413789906038,41.8367759736464],[-87.64137784608002,41.83671271118789],[-87.64137489633143,41.83654968439724]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3854770.83373","perimeter":"0.0","tract_cent":"1154496.61372404","census_t_1":"17031581000","tract_numa":"17","tract_comm":"58","objectid":"851","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872549.77174349","census_tra":"581000","tract_ce_3":"41.80609466","tract_crea":"","tract_ce_2":"-87.70888904","shape_len":"8310.55227587"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.70396997016502,41.80799887425788],[-87.70396490387911,41.80785318030261],[-87.70396391746331,41.80776474974937],[-87.70396336030561,41.80771483260204],[-87.70396193739207,41.80757914751261],[-87.70395837327789,41.807474289831],[-87.70395646951685,41.80741827519272],[-87.7039526100945,41.807291687763005],[-87.70394719561982,41.80710287893581],[-87.703944084035,41.80698233301708],[-87.70393923859996,41.80682319271367],[-87.7039372298609,41.80675722068881],[-87.7039353407488,41.80669517830756],[-87.70393287035256,41.80661469116357],[-87.70393094675906,41.806552012741584],[-87.70392861989455,41.8064781848343],[-87.70392624484363,41.80640283495741],[-87.70392267534686,41.80628785740808],[-87.70392030810683,41.80621272244873],[-87.70391614940954,41.80607272890367],[-87.7039160756966,41.80607025452903],[-87.7039160347915,41.80606862529877],[-87.70391256429203,41.805930908061384],[-87.70390989436383,41.805832401127454],[-87.70390797650694,41.80571053239174],[-87.7039077788553,41.8056979742942],[-87.70390523580252,41.80553640470695],[-87.70389486529456,41.80531060317367],[-87.70389006883408,41.80515689677131],[-87.70388590284465,41.805023392291595],[-87.70388182940583,41.80488152044771],[-87.70387037954784,41.804482720215546],[-87.70386901590004,41.804435240483656],[-87.70386807446498,41.80440244443206],[-87.7038654210124,41.80430912206176],[-87.70386401170136,41.804259375848936],[-87.70386351174744,41.804241730660046],[-87.70386282561006,41.804217513813036],[-87.7040800379831,41.80421390438633],[-87.70518187956921,41.80419969567495],[-87.70570506877658,41.80419192128992],[-87.7062557716452,41.80418360837266],[-87.70633280712352,41.804182313969456],[-87.70674823851789,41.80417634786817],[-87.70706141992298,41.80417153803646],[-87.70717009512967,41.8041697292167],[-87.70745484585383,41.80416544940696],[-87.70754563131256,41.804164571591656],[-87.70772072392323,41.80416895592607],[-87.70795855015372,41.80418122804019],[-87.7080505575485,41.80419613638382],[-87.7083215733237,41.80419064901733],[-87.70871822045633,41.80418261691234],[-87.70880029547271,41.80418169101719],[-87.70923635344789,41.804176171090845],[-87.70950413203522,41.80417282337226],[-87.70992967228648,41.804164499137656],[-87.71005668154939,41.80416313011723],[-87.71042120861193,41.80415858970229],[-87.71086600338282,41.804150366955085],[-87.71115034559003,41.80414092996314],[-87.71122556045096,41.80413825027541],[-87.71133613161642,41.80412992983275],[-87.71154314939614,41.80410429380117],[-87.71168454936995,41.804084476957186],[-87.71205691878775,41.804027489632496],[-87.71232644926275,41.80398503848585],[-87.71259901633384,41.80396044068675],[-87.71265727182208,41.803957325107746],[-87.71271598574633,41.80395421225036],[-87.71277424122661,41.803951096337535],[-87.71283294852365,41.803948669181146],[-87.71300904428766,41.80394413167491],[-87.71325117505685,41.80393789215807],[-87.71357629807501,41.80393072777158],[-87.713710634972,41.80393008031425],[-87.7137763123435,41.80392803879571],[-87.71378305855303,41.80429728210433],[-87.71377065740516,41.80558448460208],[-87.71378946167857,41.8060227542058],[-87.71381854602603,41.80670058623192],[-87.71387381565924,41.80798866879242],[-87.71382267114153,41.80798974920288],[-87.71378095889943,41.807990630459045],[-87.71351721609149,41.807996201758584],[-87.71276318020399,41.808008706185355],[-87.71265300311336,41.808010031922564],[-87.71238269337593,41.80801328463543],[-87.71206911887171,41.808017056859164],[-87.711324777806,41.80803216386663],[-87.71112971253598,41.80803612208761],[-87.71106140215052,41.80803546199339],[-87.7109860880556,41.80803473427615],[-87.7107418608065,41.80803237406416],[-87.7100469010151,41.80804254631716],[-87.70970618077764,41.80804660882042],[-87.70943005956958,41.80804990042297],[-87.70890103184941,41.80805684548663],[-87.70860590392573,41.80806107214482],[-87.70842071860471,41.80806373370041],[-87.70797869851796,41.8080704392382],[-87.70765888915422,41.80807401179898],[-87.70755767902962,41.80807514218717],[-87.70728504531746,41.80807818692451],[-87.70698639978255,41.80808183096562],[-87.70693419817442,41.80808247635773],[-87.70676588607789,41.80808507110441],[-87.7065197141947,41.80809025948816],[-87.70638787509324,41.80809156255],[-87.70608325609247,41.80809457311281],[-87.70593814013043,41.80809567417894],[-87.70579378895535,41.80809654789677],[-87.70568551154298,41.808097203058026],[-87.7054702779886,41.80810060979218],[-87.70531920063885,41.80810368081817],[-87.70518457777044,41.80810454246483],[-87.70506253612027,41.80810532347622],[-87.70489308932312,41.808107662287],[-87.70456489113667,41.80811387961414],[-87.70438747904548,41.80811680526418],[-87.70412909196092,41.808118299190774],[-87.70397493427136,41.80811536080931],[-87.70396997016502,41.80799887425788]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10603214.6137","perimeter":"0.0","tract_cent":"1148520.05783707","census_t_1":"17031570300","tract_numa":"42","tract_comm":"57","objectid":"852","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1871797.49937167","census_tra":"570300","tract_ce_3":"41.80414737","tract_crea":"","tract_ce_2":"-87.73082849","shape_len":"13528.9800022"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72338738802223,41.801048611723154],[-87.72338230518137,41.800896194526295],[-87.72337744548534,41.800751188082906],[-87.72337294939526,41.80054564433583],[-87.7240125245597,41.80053781468946],[-87.72425676476004,41.80053589938618],[-87.72457080529247,41.800533255216486],[-87.72495026502645,41.80052777357092],[-87.72519421750604,41.80052525073301],[-87.72543469263682,41.800522004242765],[-87.72543975445818,41.80052194019297],[-87.72565755938092,41.800519195398174],[-87.72582602293264,41.800517848733854],[-87.7260645408304,41.800515941312085],[-87.7262881420742,41.80051306157985],[-87.72656485506816,41.800509501459096],[-87.72679582923394,41.800506495024656],[-87.72704780610945,41.800504755966294],[-87.72729600515797,41.80050304252891],[-87.72758060250696,41.800499603884134],[-87.72781862042885,41.80049633066381],[-87.72814610136295,41.800491826836925],[-87.7282709355184,41.80049100305517],[-87.72827529443259,41.80063372836855],[-87.72827894542922,41.80082656116981],[-87.72828202902846,41.800947234081484],[-87.72849320046522,41.80091276234383],[-87.72874181411804,41.800874910105506],[-87.72895817936832,41.80084204692816],[-87.72907834901953,41.80082358133068],[-87.7293116560529,41.80078773053011],[-87.7295028711599,41.8007586949105],[-87.72969752016064,41.8007291374896],[-87.729906071394,41.80069639612122],[-87.73020555530488,41.800650410398376],[-87.73041094026075,41.80061891386021],[-87.73072359868638,41.80057105736652],[-87.73089839684673,41.80054430189423],[-87.73123657042584,41.800493113145464],[-87.73126644003155,41.80048856763615],[-87.73194460314255,41.8004717359009],[-87.73242274827051,41.80048458429675],[-87.73257732187643,41.800482099619025],[-87.73276167910457,41.80047927647496],[-87.73311099080698,41.800476648175945],[-87.73316960372189,41.80045601001459],[-87.73323124298622,41.80043624412467],[-87.73350126710224,41.800433084883416],[-87.73378054375563,41.80042987724809],[-87.73382323852975,41.8004293868305],[-87.73398338073967,41.80042753306472],[-87.73416111811365,41.800426649022384],[-87.7343910271421,41.80042433362689],[-87.73452911722124,41.800422942068714],[-87.73460449488964,41.800421904089035],[-87.73500466738733,41.80041718050657],[-87.73523574843333,41.80041443867161],[-87.73542604347305,41.80041197120584],[-87.73558909796763,41.80040617392047],[-87.7358010635261,41.80039863710337],[-87.73602092788728,41.80039914934498],[-87.73622180540373,41.80039847491464],[-87.73622620659032,41.80039846019474],[-87.73643074698158,41.80039828825587],[-87.73664434271234,41.800398492303025],[-87.73685639388319,41.80039479845486],[-87.73708730657717,41.800390775652694],[-87.73724586456201,41.80038967751589],[-87.73735655809313,41.800388907148744],[-87.7375067534643,41.800387875037565],[-87.73766923603033,41.8003867417862],[-87.73806105056397,41.80038355864725],[-87.7380631693344,41.80045183349687],[-87.73807031679056,41.80071978184132],[-87.7380776071521,41.800972294299335],[-87.73809144130941,41.80140939339247],[-87.73810580163884,41.80188868885761],[-87.7381151955747,41.80221119119105],[-87.73812075593821,41.80240297700946],[-87.73814099620668,41.80308915341322],[-87.73815757298523,41.803675830396315],[-87.7381645070305,41.80391736345788],[-87.73816628181682,41.80397328747148],[-87.73816631600913,41.80397442789927],[-87.73816803157644,41.80403195564035],[-87.738168033552,41.804032019592434],[-87.73817048517505,41.80411361084619],[-87.73818702761056,41.80460492363226],[-87.73820301058609,41.805107210616214],[-87.7382237088791,41.80584312921972],[-87.738226864019,41.80594811445264],[-87.7382322073344,41.8061138283152],[-87.73824283127914,41.80645211641164],[-87.73826017768731,41.80695578243371],[-87.73827392999557,41.807352402718514],[-87.73827197637961,41.807683529142274],[-87.73818007310543,41.807684642792324],[-87.73808700695675,41.807685770376324],[-87.73785985473496,41.80768925837576],[-87.73755985272537,41.80769319140648],[-87.73730159970819,41.80769629745395],[-87.73713146154348,41.807698268596944],[-87.73706098244992,41.80769902162459],[-87.73693784753345,41.807700337150905],[-87.73666309556823,41.80770269747405],[-87.73642032740881,41.807705141013805],[-87.73621864093731,41.80770752316494],[-87.73599163631131,41.8077108984654],[-87.7358193982926,41.80771388228427],[-87.73564319749171,41.80771693468987],[-87.73548905230881,41.80771882195458],[-87.735299322747,41.80772126471957],[-87.73520933671658,41.80772244634807],[-87.73504040655787,41.807724664101414],[-87.73484722925569,41.80772708816257],[-87.7346772358996,41.80772924852438],[-87.73459686602767,41.807729851071784],[-87.73453644978102,41.80773030400546],[-87.73434088333335,41.807733258129176],[-87.73419725695625,41.807736021794234],[-87.73405418431668,41.80773840396877],[-87.73398917945266,41.807739288501566],[-87.73383840753549,41.80774133961659],[-87.73367861388549,41.80774319497323],[-87.73348147555475,41.80774556861709],[-87.73337035823761,41.80774719362592],[-87.73317589274147,41.80775003735388],[-87.73305593783552,41.80775138618912],[-87.73287156514118,41.80775363366819],[-87.73273575976697,41.807755503330995],[-87.73260820971598,41.80775711413358],[-87.73238172604091,41.807759538794606],[-87.73224658592903,41.80776098544653],[-87.73215567951894,41.8077624790267],[-87.73203249082273,41.80776450252628],[-87.73190570995041,41.807766226620764],[-87.73168974937924,41.807769184712505],[-87.73143424625081,41.807772346855366],[-87.73121058459053,41.80777512648012],[-87.73108501584531,41.80777666474571],[-87.7309226528424,41.80777865400755],[-87.730811244301,41.80778003049765],[-87.73055504706032,41.80778288517279],[-87.73031528275342,41.8077856883276],[-87.73014683040967,41.807787767745076],[-87.72991139045426,41.807790976963204],[-87.72979334061316,41.80779251461867],[-87.72970651041534,41.80779364567249],[-87.72947297860748,41.807796686463654],[-87.72921693443281,41.80779885288782],[-87.72904910091904,41.80780142792074],[-87.72897741853241,41.80780253272681],[-87.72881028729988,41.80780453480605],[-87.72860188989951,41.807806703608215],[-87.72847590385844,41.807809035685345],[-87.7281782763583,41.807814544282046],[-87.72807438798003,41.80781578072766],[-87.72797853385273,41.80781686704434],[-87.72789089621672,41.80781788736446],[-87.72769166729152,41.80782024005199],[-87.72761231868893,41.80782135847283],[-87.72737082530367,41.80782464033449],[-87.72725613091758,41.80782589313233],[-87.72700483516998,41.80782863676769],[-87.72681290446067,41.807831053621165],[-87.72662082406829,41.80783374434051],[-87.7264128600538,41.80783665241622],[-87.72617027412612,41.807839130139136],[-87.72603189848117,41.8078409755456],[-87.72590944893956,41.80784260861834],[-87.72575529969419,41.80784486699766],[-87.72561046816347,41.807847009808185],[-87.72542749765675,41.807848319425084],[-87.72534147571079,41.80784918141876],[-87.72512427207187,41.807851654058084],[-87.72492490500727,41.80785304071592],[-87.72480669464467,41.807854114375],[-87.72469589420716,41.807855120695166],[-87.72445245869918,41.80786596035141],[-87.7243357649968,41.80787148922416],[-87.72419400417903,41.807874678103865],[-87.72417584423734,41.80787508675267],[-87.72400492687214,41.80787791248943],[-87.72381246712327,41.807881940923984],[-87.72358661403264,41.80788362462723],[-87.72357424568311,41.80749762963961],[-87.72357202494688,41.807417539671775],[-87.72356987248908,41.80733991992003],[-87.72356540333146,41.80718072777368],[-87.72356043415787,41.807043322577734],[-87.72355311636409,41.80683254994297],[-87.72355185527229,41.80678556111736],[-87.72354788550038,41.80663765088554],[-87.72354199947955,41.80642674889601],[-87.72353645702525,41.80623763833451],[-87.72352895538019,41.80603911243144],[-87.72352172460725,41.805779923369336],[-87.72351272845697,41.805514091714684],[-87.72350713802787,41.80529520538524],[-87.72350188210655,41.80507206718263],[-87.72349754792617,41.80491800749985],[-87.7234915029172,41.804720030180846],[-87.72348735220402,41.804554363139225],[-87.72348399774897,41.80434344706818],[-87.72347971986389,41.80420743819632],[-87.72347199253785,41.80396173567059],[-87.72346429360287,41.8037680034529],[-87.72345979917574,41.80359218042993],[-87.72345573459737,41.80344451632178],[-87.7234511929956,41.80329687712001],[-87.72344500339959,41.80308709827542],[-87.72344207909255,41.802963419771906],[-87.72343927046894,41.80284463795918],[-87.72343316279415,41.80259528721227],[-87.72342622567355,41.802377519050765],[-87.7234243120261,41.802317442793296],[-87.72340964829968,41.80185711421313],[-87.72340602197666,41.80171743825778],[-87.72340039150929,41.801498963210854],[-87.7233953670839,41.80130557414711],[-87.72339351451437,41.80123020621748],[-87.72338738802223,41.801048611723154]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"13751566.0192","perimeter":"0.0","tract_cent":"1191843.14847108","census_t_1":"17031460500","tract_numa":"63","tract_comm":"46","objectid":"855","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1851272.9482937","census_tra":"460500","tract_ce_3":"41.74688325","tract_crea":"","tract_ce_2":"-87.57260731","shape_len":"17925.1867452"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.56603408422745,41.73813328766574],[-87.56602788951356,41.73743286163748],[-87.56650220468183,41.73777365622263],[-87.56694127498108,41.738092647358954],[-87.56726650635014,41.738326111766845],[-87.56766779314619,41.73861416877888],[-87.56839125384143,41.739133482402856],[-87.56890242397309,41.73950056461384],[-87.56928899585266,41.7397781651404],[-87.56997650191218,41.74027185222167],[-87.57027601248475,41.740487929563045],[-87.57065813407179,41.74076360205658],[-87.5709330964565,41.74096196489939],[-87.57136776769646,41.741275540598444],[-87.57176139736389,41.74155938031766],[-87.57228196014763,41.741934743945734],[-87.57260865108329,41.742169449273966],[-87.57311733985902,41.7425349025768],[-87.57322530262317,41.742612464770794],[-87.57381555214201,41.74303666337868],[-87.574323304029,41.74340124615063],[-87.57562837282951,41.744339629951064],[-87.57585720628236,41.744504163846514],[-87.57635754040112,41.74486390507808],[-87.57646139222895,41.74493853063795],[-87.57675350580621,41.74514843564377],[-87.57708289773673,41.74538572094007],[-87.57754859178614,41.74572119022837],[-87.57811184197404,41.746127099137205],[-87.578246957624,41.7462244697198],[-87.57824702593788,41.74622451901733],[-87.57830905896019,41.746269222734256],[-87.57891568390755,41.746706378037445],[-87.57913767807293,41.74686597724158],[-87.57935981941951,41.747025681263565],[-87.57961543009054,41.74720944554129],[-87.5798657465016,41.747389742229764],[-87.58004454982277,41.747518529633055],[-87.58023449733105,41.74765534169207],[-87.58078759057693,41.748053710719624],[-87.58103063210227,41.74822876087029],[-87.58161762915789,41.74864918592048],[-87.58198337291579,41.74891113840748],[-87.58263198369423,41.74937567759413],[-87.58329835186954,41.74985550061354],[-87.5839506709089,41.75032519686946],[-87.58445675605395,41.75068959199591],[-87.5847526817763,41.75090080081696],[-87.58565529833413,41.75150194330311],[-87.58453754213946,41.75149858950602],[-87.5844067649406,41.75150023745774],[-87.58387181717845,41.75150698244376],[-87.58330802064928,41.751514339601435],[-87.58289208223444,41.751519770083064],[-87.58247826975324,41.75152516218239],[-87.58208751543357,41.75152992417927],[-87.58167876571832,41.751534904120334],[-87.58118553010092,41.75154091164718],[-87.5808666502417,41.75154496789806],[-87.58051331625254,41.75154946191129],[-87.58039495727327,41.75155094845722],[-87.58005233384233,41.75155525163067],[-87.57964907887855,41.7515603147115],[-87.57930670462218,41.75156461235575],[-87.5788515186074,41.75157042761238],[-87.57842562924259,41.7515758671374],[-87.5777382512958,41.75158464950335],[-87.57720525082917,41.751591483551586],[-87.57664056743285,41.75159872119109],[-87.5759817140993,41.751606120770454],[-87.57543936082823,41.75161220932688],[-87.57476500544674,41.75162143714397],[-87.57405118667755,41.75163120045209],[-87.5735431661217,41.75163764195855],[-87.5723247427442,41.75165308168665],[-87.57156156869804,41.751662746025424],[-87.57110626261868,41.75166837776015],[-87.57041191480262,41.75167696246936],[-87.57014346690181,41.751680462109704],[-87.56988646027173,41.75168381211537],[-87.56931019334475,41.75169132149985],[-87.56866990386547,41.75170086218203],[-87.5681082345581,41.751709228622005],[-87.56745076854973,41.751714472107174],[-87.56691216539916,41.75171876489962],[-87.5662325933922,41.75172791962782],[-87.56622784911252,41.75131838775015],[-87.56621560905013,41.750585825071006],[-87.56620789300526,41.750208102757476],[-87.56620188548648,41.74991403836263],[-87.56620106405683,41.74987382476797],[-87.56619991885505,41.74981777522388],[-87.56619516496079,41.74958506196991],[-87.56618874399344,41.74914554687058],[-87.56617287073878,41.748094808762595],[-87.56616103634084,41.74731145548622],[-87.56615403746734,41.74665274900431],[-87.56614928887564,41.74627703833603],[-87.56613986616881,41.74553152480822],[-87.56613324604344,41.744994914660296],[-87.56613117231204,41.74485253299929],[-87.56612547503279,41.744461317431686],[-87.5661143543227,41.74369772137282],[-87.56610851151987,41.74334668601668],[-87.56610772441086,41.74328814477783],[-87.56610485517331,41.74312283624582],[-87.56610219900121,41.74295816032154],[-87.56609737033978,41.742644938587155],[-87.56609186092658,41.74228757565734],[-87.566090123343,41.74212265885592],[-87.56608776288863,41.74192077212043],[-87.56608389606683,41.74168232119293],[-87.56608073111543,41.74148959504489],[-87.5660777504945,41.7412690428792],[-87.56607586960797,41.74110382321849],[-87.566072625172,41.74082712959524],[-87.5660670516158,41.74035177009353],[-87.56606113846388,41.74000205133091],[-87.56605753102693,41.73971719586441],[-87.56605506578939,41.739524117838336],[-87.56605116724843,41.739276061258806],[-87.56604886691946,41.73910274304074],[-87.56604766618861,41.73901228300406],[-87.56604040761765,41.738465458899746],[-87.56603721803482,41.73829940712829],[-87.56603409230267,41.738134179070066],[-87.56603408422745,41.73813328766574]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3465796.57171","perimeter":"0.0","tract_cent":"1186488.73345232","census_t_1":"17031450100","tract_numa":"16","tract_comm":"45","objectid":"856","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1853699.39075213","census_tra":"450100","tract_ce_3":"41.75366987","tract_crea":"","tract_ce_2":"-87.59215039","shape_len":"8360.86852349"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59049528522858,41.755038825290214],[-87.59027283805061,41.754878656580246],[-87.59000843752548,41.75468855288732],[-87.5898232165479,41.75455537831234],[-87.58950674296574,41.75432752891992],[-87.58915817678061,41.75407663821587],[-87.58889676250483,41.753886109459096],[-87.58875435246837,41.75378373208186],[-87.5885896329665,41.75366531603232],[-87.58844548368661,41.75356158777783],[-87.58827829265515,41.75344117387116],[-87.58787457249308,41.7531497724709],[-87.58749776297327,41.752879242397015],[-87.58707426753098,41.7525751897489],[-87.58655784508504,41.75220338458251],[-87.58598531111829,41.75179025973688],[-87.58592532528858,41.75174697502086],[-87.58587023134659,41.75170722025815],[-87.58582075287006,41.7516715174641],[-87.58582440079186,41.75150555931452],[-87.58586558456986,41.75150488568075],[-87.58591822798417,41.75150402395065],[-87.58597223310349,41.75150314031781],[-87.58661452249525,41.751492628133214],[-87.58665673698255,41.751491937313524],[-87.58715038610839,41.751483855145324],[-87.58721027679438,41.7514828746833],[-87.58727390256243,41.75148183282139],[-87.58733438265078,41.75148084240039],[-87.58736948141559,41.75148026757954],[-87.58741181245573,41.751479574220355],[-87.58747550969187,41.75147853133861],[-87.58753451260463,41.751477564977804],[-87.58790892856997,41.75147143253923],[-87.58802651211693,41.751469506207854],[-87.58806795684343,41.75146882716528],[-87.58819140837728,41.75146680480582],[-87.58824898468572,41.75146586148305],[-87.58845115753216,41.751465541718325],[-87.5884884814121,41.751465482639496],[-87.58881427876719,41.7514594596148],[-87.58890715803508,41.751457710118785],[-87.58921132735017,41.751451729976054],[-87.58947965400102,41.75144904916995],[-87.58975439508946,41.75144629947831],[-87.59004988048115,41.75144335401549],[-87.59005259306622,41.75144332710619],[-87.59035962316634,41.75144028044501],[-87.59062018269091,41.75143737605242],[-87.59107327647618,41.75143232420953],[-87.59123065870571,41.75143073677791],[-87.59149290095776,41.75142809128029],[-87.5918370744056,41.751425151230755],[-87.59194488149458,41.75142423026657],[-87.59220656895906,41.75142202166671],[-87.59244971173977,41.75141997116148],[-87.5928445890748,41.751416640148776],[-87.59305258902221,41.75141418760605],[-87.59335625601426,41.75141060604073],[-87.59366413297239,41.7514074761423],[-87.59366695222006,41.75140744736444],[-87.5939613750193,41.7514044575564],[-87.59427241039269,41.75140006448959],[-87.59453536611183,41.75139634937694],[-87.59470733416553,41.75139476562326],[-87.59486691891435,41.75139329055483],[-87.59517317175647,41.751390459572406],[-87.59549062393536,41.75138664341341],[-87.59549521161749,41.75155194485256],[-87.59549990117004,41.75175049744284],[-87.59550460037713,41.75194814474331],[-87.59550899001775,41.75213445608592],[-87.5955128468856,41.75229688858333],[-87.5955167328701,41.7524599798953],[-87.59552112287359,41.752646263780505],[-87.5955255526828,41.75283227348518],[-87.59552886617792,41.75297178756356],[-87.59553156563116,41.75308805346995],[-87.59553089009714,41.75314384076147],[-87.59553005328999,41.75314641173715],[-87.59559556884265,41.755032183041514],[-87.59567774946282,41.7550314077061],[-87.59621609691847,41.7550262868893],[-87.59611045315647,41.75549076783894],[-87.59588333807828,41.756481374465174],[-87.5957979366399,41.75685823981862],[-87.59579791904581,41.75685823998011],[-87.59568811625783,41.756859017535],[-87.59568339052485,41.7568590511364],[-87.5956303305987,41.75685942699728],[-87.59548748360179,41.756860438956835],[-87.59540535271098,41.75686102044949],[-87.59522389714877,41.756862305243175],[-87.59503004464703,41.75686367748994],[-87.59475560128455,41.75686604731604],[-87.5946313292418,41.756867110930706],[-87.5943977604814,41.756868955633315],[-87.59432195305288,41.756869554243124],[-87.59416303198935,41.75687080886558],[-87.5940956293472,41.75687076023032],[-87.59393242896006,41.75687064229343],[-87.59347795904405,41.75687734909977],[-87.59325552332346,41.75687972338994],[-87.593061934711,41.7568817894205],[-87.59284869531402,41.756728478565876],[-87.59258192116202,41.75653688086729],[-87.59229460629054,41.756330934595496],[-87.59199374411433,41.756114444409796],[-87.5917084786197,41.75590908618967],[-87.59139333690953,41.75568218368397],[-87.59130417793384,41.755619013997546],[-87.59121755621865,41.75555764113143],[-87.591210403032,41.755552573134565],[-87.59108957082414,41.75546696218437],[-87.59081972314715,41.75527265110042],[-87.59049528522858,41.755038825290214]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"14046810.5851","perimeter":"0.0","tract_cent":"1131983.56580895","census_t_1":"17031560900","tract_numa":"64","tract_comm":"56","objectid":"853","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1868627.37212193","census_tra":"560900","tract_ce_3":"41.79575006","tract_crea":"","tract_ce_2":"-87.79155106","shape_len":"15629.1297589"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.78242997156359,41.799668415598504],[-87.78230257233112,41.799667310598096],[-87.78203113200547,41.79966829177693],[-87.78202516136885,41.79947162897999],[-87.78201785894592,41.79923146854834],[-87.78201086857412,41.79900300028059],[-87.7820043114181,41.798792454298855],[-87.78200116790225,41.79868854037698],[-87.78199643572917,41.79853036420536],[-87.78199177362777,41.798372572566244],[-87.78198687414458,41.79820824837156],[-87.78198146840613,41.79802597408076],[-87.78197538510199,41.79785330978279],[-87.78196430085002,41.79753869772595],[-87.78195903334415,41.79737453639762],[-87.78195229451731,41.79716382482456],[-87.78194627893917,41.796975702231954],[-87.78194019131415,41.79677031769458],[-87.78193508057284,41.79658787984056],[-87.78192854605153,41.796353349042114],[-87.78192362902175,41.7961782670803],[-87.78192041429377,41.79604418065275],[-87.78191636222918,41.79587515262435],[-87.78190697605667,41.795618214411675],[-87.78189883515607,41.79539569558619],[-87.78189124138486,41.79516069284889],[-87.78188520028459,41.79496702659556],[-87.78187935056597,41.79477242819477],[-87.78187428609546,41.794601736343296],[-87.78186697109875,41.79435562052595],[-87.78186362881281,41.7942335251776],[-87.78185742012587,41.794006720204855],[-87.78185260465398,41.79384121623854],[-87.78184743549285,41.79366563901476],[-87.78183972116959,41.79340195776425],[-87.78183374716777,41.79319621688241],[-87.7818253844364,41.79292690669588],[-87.78182238310814,41.792838887195494],[-87.7818195235862,41.79275503091849],[-87.78181456049009,41.7926098888627],[-87.78181230436478,41.792544838279376],[-87.78180560844102,41.79234898021704],[-87.78197126639635,41.79234021840557],[-87.78230861969038,41.79233382369155],[-87.78263904101271,41.792327559415014],[-87.78302586742231,41.792319207324965],[-87.78355957583172,41.79230768146004],[-87.78374017363187,41.792304099839725],[-87.78396012605087,41.79229971792214],[-87.78425041552283,41.792295824921716],[-87.78444735382504,41.79229318309584],[-87.78480767012978,41.79228590280934],[-87.78501929709178,41.792281644043015],[-87.78525513584067,41.79227632035472],[-87.78547012791623,41.792272504922096],[-87.78573167180551,41.792267862676546],[-87.7860130939361,41.79226234306286],[-87.7863120105607,41.79225652186314],[-87.78669089464215,41.79224976920584],[-87.78695608415492,41.79224504217606],[-87.7872550424335,41.79223861497566],[-87.78750606268538,41.79223327650069],[-87.78769333812829,41.79222922641908],[-87.78791230957376,41.79222647500826],[-87.78812287223117,41.79222382872046],[-87.78835016197931,41.79221900696283],[-87.788672299225,41.79221219205803],[-87.78885957408883,41.79220819495807],[-87.78913238645946,41.79220294111708],[-87.78917392251918,41.79220214114382],[-87.78933875592136,41.79219896645267],[-87.78963609595785,41.792193046807796],[-87.78968722368438,41.79219202145605],[-87.78977832921976,41.792190207177484],[-87.79011751720861,41.79218349633685],[-87.7903529772741,41.79217993622331],[-87.79051988357305,41.79217741234837],[-87.79076514283862,41.792172451173904],[-87.79104249442054,41.79216684512683],[-87.79129483217984,41.79216175157752],[-87.79157594214536,41.79215617871568],[-87.79167949931278,41.792154125539284],[-87.7919129483719,41.79214940810105],[-87.79221270680168,41.79214365784145],[-87.7924727444953,41.79213865285914],[-87.79279608677002,41.79213261061838],[-87.79293963603018,41.79212992776924],[-87.79323202207128,41.79212438715611],[-87.79346887911356,41.792119929564386],[-87.79366553875994,41.79211621571729],[-87.79387151445756,41.79211229829439],[-87.79401791633443,41.7921098237102],[-87.79418153608448,41.79210705762091],[-87.79447369949925,41.792101759514246],[-87.79464882866257,41.79209860189506],[-87.79496373169717,41.792092888026765],[-87.79523599185488,41.792087251012155],[-87.79540690039576,41.79208371241628],[-87.79560451486118,41.792079807619714],[-87.79588820953009,41.792074219562345],[-87.79616555899719,41.79206876579254],[-87.79645781956343,41.792062948263734],[-87.79667243237796,41.79205867566903],[-87.79693307381206,41.7920515503026],[-87.79719342184045,41.79204442297538],[-87.79748670750543,41.79203640586526],[-87.7977251478656,41.79202810267425],[-87.79798293242816,41.79201912512384],[-87.7982762256598,41.79201017297283],[-87.79853642992015,41.792002657730535],[-87.79878848944789,41.79199559797406],[-87.79885656648663,41.79199363887763],[-87.79899378920659,41.79198971208724],[-87.79931608578406,41.79198048821978],[-87.79965631691518,41.79197155862409],[-87.79994717842406,41.79196393561388],[-87.80025694362432,41.791955865273],[-87.80047289233424,41.791950238838886],[-87.80074420620863,41.79195171652574],[-87.801527961865,41.791939186774925],[-87.80153625559562,41.792150283926304],[-87.80153802012273,41.79219518985098],[-87.80154437710966,41.79241997699593],[-87.80155087027167,41.792645862479915],[-87.80155256198262,41.79270295218127],[-87.80155632377777,41.79282898703824],[-87.8015628125092,41.79306442317755],[-87.80156771064097,41.79322605732902],[-87.80157479283224,41.79346064464422],[-87.80157939576021,41.79361363289209],[-87.80158662772632,41.793843418370116],[-87.80158941953913,41.7939448883806],[-87.80159346458571,41.7940906639502],[-87.8015939404212,41.79410781002943],[-87.8016002745349,41.79433531384199],[-87.80160484974144,41.79450054203511],[-87.80161015209616,41.79465770481764],[-87.8016153849362,41.794814318140844],[-87.8016056235681,41.79576014817618],[-87.80161828850746,41.7975738640951],[-87.80161866743263,41.797628159195646],[-87.80154587724786,41.79766176805456],[-87.79842269225529,41.79901038569174],[-87.79822061053092,41.79907442743762],[-87.79791413858258,41.79917154967624],[-87.79785293306752,41.79919094617359],[-87.79760520236444,41.79926945215359],[-87.797367550986,41.799344763890616],[-87.79734356426805,41.79935236508047],[-87.7971870078662,41.799401977160734],[-87.7971533849851,41.7994025139898],[-87.79702154428907,41.79940462061843],[-87.79677515813373,41.79940855634882],[-87.79666951375803,41.79941024347769],[-87.79665409724407,41.79941048979388],[-87.79665055434488,41.79941054624031],[-87.79658471926498,41.79941159789958],[-87.79653192585731,41.79941536446724],[-87.7964825551496,41.79941888684712],[-87.7963954614065,41.799422184593745],[-87.79625878698107,41.79942608172997],[-87.7961521381013,41.799429122659475],[-87.79608782096047,41.79942978019114],[-87.79604210472192,41.79943024723894],[-87.79591630131732,41.79943130534825],[-87.79580920454683,41.79943198432279],[-87.79569873234959,41.79943286666901],[-87.79556353740907,41.799434209753166],[-87.79543649724046,41.799433960753525],[-87.7952708764434,41.799433635198056],[-87.79516758112382,41.79943592334269],[-87.79503761807509,41.799438772509134],[-87.79492327746141,41.799441749086526],[-87.794826263954,41.79944708481134],[-87.79475394445743,41.799451054313344],[-87.79461836700672,41.79945865147455],[-87.79453354945744,41.7994617389402],[-87.79447214742825,41.79946263097838],[-87.79436609231522,41.799461584590375],[-87.79435503088051,41.79946126759443],[-87.79421436830188,41.79945723536367],[-87.79406542910024,41.79945296597008],[-87.79405014043516,41.79945252756199],[-87.79393933201287,41.79945409298479],[-87.79381704345042,41.79945585137117],[-87.79366827212229,41.79945797919267],[-87.79360513022361,41.79946083848314],[-87.7934380128832,41.799468395833635],[-87.79333514657964,41.79947194644585],[-87.79324800001936,41.79947277169589],[-87.79316103979252,41.79946887730164],[-87.79311977792712,41.799468397592406],[-87.79299631247655,41.79946696207702],[-87.79284891678509,41.799465247812265],[-87.79282425017571,41.79946496078617],[-87.79269094440103,41.79946842275623],[-87.79251500442602,41.799474015963696],[-87.79238454716346,41.79947900364134],[-87.79224917238658,41.79948417986799],[-87.79210376591278,41.799487392334115],[-87.79196573218712,41.79949047415487],[-87.79180566092249,41.79949306745201],[-87.79178114166292,41.79949326883139],[-87.791777554608,41.799493298025304],[-87.7917775524076,41.79949329801493],[-87.7916569704402,41.79949428770803],[-87.79153119616552,41.79949621932491],[-87.7913969848625,41.7994982756597],[-87.79125587791412,41.79950046423072],[-87.79120459698913,41.799501748061566],[-87.79116905073359,41.79950263795491],[-87.79096909265527,41.79950764506611],[-87.7908505301542,41.799511091903035],[-87.79079593847902,41.79951338600722],[-87.79069220505932,41.799517925511324],[-87.79064025340934,41.79952019908062],[-87.79050123442917,41.79952628277811],[-87.79032826240959,41.799533851572306],[-87.78962491426901,41.799564627269596],[-87.78960169551223,41.79956504070961],[-87.78934176523336,41.79956673553262],[-87.78913351357967,41.7995680928043],[-87.78891442133543,41.799576275515314],[-87.78875901703589,41.79958207033512],[-87.78873510340874,41.79958294463982],[-87.78873407032236,41.79958298227874],[-87.78873406591921,41.7995829825323],[-87.78856501961816,41.79958916385147],[-87.78837740660899,41.79959590312627],[-87.7881275604061,41.79960217605705],[-87.78793890035668,41.799606912351756],[-87.78768914958847,41.79961052885779],[-87.7876550453465,41.79961102274879],[-87.7875173064486,41.79961301690362],[-87.7874670313059,41.79961374510695],[-87.78745795863018,41.79961387625782],[-87.78727690828583,41.79961652848408],[-87.78711405126188,41.79961888273201],[-87.78707071308959,41.79961940663913],[-87.78690655979743,41.79962139108479],[-87.78678978190976,41.79962280238762],[-87.78675074835435,41.799623274204585],[-87.78655660491438,41.7996258907151],[-87.78650641221512,41.79962666856204],[-87.78641304036304,41.799628115976],[-87.78640490176583,41.79962825066748],[-87.78629801130741,41.799630022490845],[-87.78621369273284,41.799631419822134],[-87.78619435273943,41.79963174017723],[-87.78603119946112,41.79963442106806],[-87.78587530883638,41.79963702601795],[-87.78568883263117,41.79963933758303],[-87.78544998005691,41.79964229808696],[-87.78528169501212,41.799644651291636],[-87.7850880638695,41.799647432147],[-87.78508700272882,41.7996474476649],[-87.78508043487628,41.799647544203665],[-87.78494497556433,41.799649536273755],[-87.78491335882984,41.799650001158696],[-87.78476997789052,41.799652143188204],[-87.78463891119334,41.799653998625224],[-87.78447500133393,41.79965631912955],[-87.78433171375879,41.79965834744442],[-87.7842641318515,41.799659304109134],[-87.78407053684401,41.799662138307674],[-87.78390181069845,41.79966459715321],[-87.78389287377138,41.799664720713295],[-87.78385995954812,41.79966517526053],[-87.78376354380624,41.79966650771562],[-87.7837395408306,41.799666839378744],[-87.78353941859899,41.7996695594],[-87.78345212198093,41.79967073325729],[-87.78325093992648,41.79967296882424],[-87.78310866430205,41.79967454984665],[-87.78292112307047,41.79967276474609],[-87.78278360325702,41.79967145563748],[-87.78264098456143,41.79967022730218],[-87.78263984771726,41.799670217735965],[-87.7825149783468,41.799669152541604],[-87.78242997156359,41.799668415598504]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2558917.53095","perimeter":"0.0","tract_cent":"1181484.95497212","census_t_1":"17031490400","tract_numa":"12","tract_comm":"49","objectid":"854","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1842718.77042859","census_tra":"490400","tract_ce_3":"41.72365462","tract_crea":"","tract_ce_2":"-87.6108251","shape_len":"7898.06569908"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61202543697513,41.7258153215851],[-87.6115842674856,41.725587938823296],[-87.61141442779287,41.72559040246545],[-87.61126112729232,41.72559300656362],[-87.61121067369248,41.72559386352046],[-87.61110779014598,41.72559561077575],[-87.61099545320185,41.72559748430248],[-87.61091826007991,41.72559881547914],[-87.6108274963094,41.7256003798906],[-87.61074128485684,41.725598383294326],[-87.61065641824378,41.72558432038176],[-87.61060680807121,41.725564212521476],[-87.61045733955274,41.72550082104551],[-87.61040958515395,41.7254799108109],[-87.61040397270934,41.72547739052377],[-87.61035498396082,41.72545538986848],[-87.61026449984162,41.72540981375871],[-87.61025940420933,41.72540726845019],[-87.6102065784039,41.72538088067459],[-87.61011363622282,41.725335618568955],[-87.61006706075928,41.72531445901852],[-87.61000717494348,41.725287252266924],[-87.60997749503778,41.72527378294822],[-87.60995542018186,41.7252637644487],[-87.60978041488428,41.72518059880602],[-87.60960860156443,41.725098925051014],[-87.60949502336418,41.72503198932407],[-87.60942866520067,41.7249877720284],[-87.60939105631905,41.72494422980212],[-87.60938391274826,41.72486270608927],[-87.60938045946523,41.72477870802405],[-87.6093769749356,41.72468447401495],[-87.6093716688009,41.724484928887584],[-87.60907834902638,41.72433872950975],[-87.60893329331863,41.724266353174485],[-87.6087543599045,41.72417706305497],[-87.60857240381684,41.724086300750784],[-87.60851823796497,41.72405906453213],[-87.60842144800992,41.724010977579816],[-87.6083308514843,41.72396589320908],[-87.60824716835104,41.7239249688645],[-87.60814677939312,41.72387440335671],[-87.60796439783729,41.723782538029894],[-87.60784833868928,41.7237248059045],[-87.60776105707113,41.72368144348814],[-87.60768976622519,41.72364616794603],[-87.60757359206765,41.72358890134987],[-87.60752720579708,41.723567065762595],[-87.60740590146564,41.72351001330599],[-87.60731421415653,41.72346758322691],[-87.60723366743949,41.72343126096612],[-87.60710995442349,41.72337670869],[-87.60701852019348,41.72333782947158],[-87.60686979577095,41.723276726232044],[-87.60673637242708,41.72322190963216],[-87.60642377374158,41.72310371079007],[-87.60630719907967,41.72306269386065],[-87.60620027343006,41.72302507166642],[-87.60589304545306,41.72292306938336],[-87.60551564844008,41.72280819010516],[-87.60523483725564,41.722730036549315],[-87.6051789432383,41.7227163526812],[-87.60509423175306,41.722695613017905],[-87.6044916933742,41.7225480943969],[-87.60448680945139,41.72245311339282],[-87.60448161243008,41.72204432475854],[-87.60469548759588,41.72204531423497],[-87.6050475945808,41.722044198356905],[-87.6051079532622,41.72204334924434],[-87.6059217054291,41.722031897077315],[-87.6066066475702,41.72202025905663],[-87.60689407626062,41.72201482246415],[-87.60712533882534,41.72201044819019],[-87.60726925009672,41.72200814648037],[-87.60772776052936,41.72200127296493],[-87.60809538736312,41.721994679176696],[-87.60836830400184,41.72198978288629],[-87.60872643171626,41.72198419331439],[-87.60898124292156,41.72198020145658],[-87.60922913519461,41.72197579440199],[-87.60930724774622,41.72197440592854],[-87.60938792495715,41.72197297153833],[-87.60970836038472,41.72196727398062],[-87.6098939662724,41.72196416153469],[-87.61021615425072,41.72195899940529],[-87.6105161067802,41.721953922362175],[-87.61075751127176,41.72194983591845],[-87.61102815974695,41.72194467672318],[-87.61147004039148,41.721937683736975],[-87.61172471073533,41.72193312314762],[-87.6119442829544,41.721929190746174],[-87.61221389613046,41.72192484555276],[-87.61263907171823,41.721917962779756],[-87.61293140263014,41.72191300644102],[-87.61321332953635,41.7219082256578],[-87.61348452438659,41.721903311088134],[-87.61380649918809,41.72189750636132],[-87.61414331283163,41.721892472550536],[-87.61414973540127,41.7221070705473],[-87.61415648176047,41.72239282711727],[-87.61415672692308,41.72240319859972],[-87.61416053175195,41.72256456076669],[-87.61416699372663,41.72279317530474],[-87.61417219749387,41.722983581079774],[-87.61417395815143,41.72307525225396],[-87.61417715050334,41.72322922835881],[-87.61418317938018,41.72343755966555],[-87.61418686837011,41.723563327302806],[-87.61419055183059,41.72371790911977],[-87.61419385562662,41.72385657372128],[-87.61419496128455,41.72389867844254],[-87.61419692258944,41.72397245792026],[-87.614198314588,41.724025020274944],[-87.61420147658765,41.72415531272157],[-87.61420304846872,41.72421805761069],[-87.61420612289619,41.724343162748745],[-87.61421088476993,41.724520585094744],[-87.61421593260219,41.72469861297414],[-87.61422114725168,41.724907707539295],[-87.61422531576449,41.72508578478985],[-87.61422869918958,41.72523246215835],[-87.61423170131086,41.7253476321271],[-87.61423737014967,41.725543597689835],[-87.6142441017544,41.72577628965101],[-87.61424951307107,41.725964473729675],[-87.61425587932169,41.72619514576704],[-87.61425955209306,41.7263782694135],[-87.61426006751728,41.72640428873984],[-87.61426394160029,41.72658250131673],[-87.61426769477792,41.726719026997635],[-87.6142727657199,41.72693377003424],[-87.61388550022942,41.72674188233754],[-87.6137595906177,41.726679566400854],[-87.61369517894103,41.726647658291675],[-87.61359797729183,41.72659962774241],[-87.61351396442997,41.72655810142689],[-87.61343632712507,41.72651974351168],[-87.61333621195466,41.72647021255731],[-87.61316494650532,41.726385382815195],[-87.61303911216653,41.72632301167288],[-87.61288774354058,41.72624763663339],[-87.6127138627316,41.72616092396025],[-87.61255284546193,41.72608032893142],[-87.61237572693221,41.72599167414147],[-87.61222447312973,41.72591599734664],[-87.61202543697513,41.7258153215851]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"11289318.6405","perimeter":"0.0","tract_cent":"1184068.81013658","census_t_1":"17031440100","tract_numa":"54","tract_comm":"44","objectid":"857","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1850123.37321047","census_tra":"440100","tract_ce_3":"41.74391378","tract_crea":"","tract_ce_2":"-87.60112996","shape_len":"15865.4923869"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59778559155788,41.747002745436816],[-87.59783380212721,41.74679208572132],[-87.5976743859023,41.74679312335425],[-87.5976456110389,41.74679334142673],[-87.59728074012399,41.74679610431085],[-87.59730168659922,41.74669880254414],[-87.59731352118678,41.74662512492004],[-87.59732487066047,41.7465538457264],[-87.59733150274806,41.74649454264145],[-87.59733874955087,41.74642152224859],[-87.59733963103324,41.74634434407573],[-87.59735003304158,41.74627580283634],[-87.59735544023886,41.746203456731834],[-87.59736417036846,41.74612084049687],[-87.59737289728956,41.7460385672775],[-87.59737802949131,41.74599023151871],[-87.59739011209166,41.74587928726811],[-87.59740105737686,41.745778724841514],[-87.59741228936952,41.74567760056836],[-87.59742341910982,41.745585394900466],[-87.5974346004772,41.74548872951738],[-87.59744377311009,41.7454074882522],[-87.59745137974106,41.74534304581936],[-87.59746800162898,41.745251218080554],[-87.59748314832143,41.74516829987941],[-87.5974968657317,41.74509017505428],[-87.5975063004021,41.74502608763388],[-87.59750745171617,41.744964922539125],[-87.59751492914314,41.74487211852871],[-87.59752349473753,41.74480390880747],[-87.59753251012498,41.74473638804136],[-87.59754107213068,41.744668521332244],[-87.59755112135562,41.74459071604105],[-87.5975607794908,41.74450707632154],[-87.59756537898932,41.744465255402574],[-87.59757547514354,41.74438333394979],[-87.59758403668226,41.74431546750465],[-87.59759563212636,41.744222578154755],[-87.59761353722094,41.74405816816059],[-87.59761614403553,41.744058134631814],[-87.59768917330959,41.74405719659733],[-87.59787471991325,41.74405481819897],[-87.59786248629587,41.743837339890966],[-87.59784556363884,41.743554225101086],[-87.5978428739827,41.74350892657382],[-87.59783213286944,41.743326361517795],[-87.59783959756287,41.74315386110335],[-87.59785127496693,41.7429333620293],[-87.59786761759605,41.74262507557714],[-87.59787792901433,41.742444017405575],[-87.59788228962725,41.742262578099094],[-87.59788180769333,41.74214422682547],[-87.59787711413858,41.741993602996864],[-87.59786692507532,41.741842943987734],[-87.59785031954885,41.741692586939834],[-87.59783636918883,41.74159061527759],[-87.59780926884228,41.74143676065452],[-87.59777666567952,41.741283556870286],[-87.59774906095663,41.741173950661356],[-87.59773810456552,41.74113065824265],[-87.59769856967341,41.74098289838946],[-87.5976795896112,41.74092034389897],[-87.59765923061563,41.740858123888486],[-87.59763795178246,41.74079624047361],[-87.59761529548479,41.740734691821274],[-87.59759172327061,41.740673136750104],[-87.59756723121745,41.74061191909607],[-87.59751411758461,41.74049014340181],[-87.59748640769155,41.740429934236715],[-87.59739854333021,41.74026299763165],[-87.59737749219431,41.740221355432354],[-87.5973559788262,41.74018005303208],[-87.59733400823927,41.740138747698786],[-87.59731203303357,41.74009778509537],[-87.59728960488724,41.74005647709651],[-87.59726717138976,41.74001551182266],[-87.59724428104197,41.739974543617464],[-87.59722138680556,41.739933918420896],[-87.59719757982835,41.739892944333484],[-87.59717422730346,41.73985231646534],[-87.59714995922742,41.739811682177276],[-87.59712614450093,41.73977139437586],[-87.5971014181428,41.7397307571407],[-87.5970034054449,41.739570273193515],[-87.5969575737463,41.7394927958401],[-87.59686096311557,41.73932991948291],[-87.59676434904549,41.73916738633152],[-87.5966677393876,41.739004509261754],[-87.59657113020693,41.73884163265893],[-87.59644667253978,41.738630895308425],[-87.59619950126884,41.738217320708465],[-87.59591152581599,41.73772767218068],[-87.59572949795803,41.7374253160146],[-87.59564591873679,41.73728481974454],[-87.59556189406298,41.73714329143516],[-87.59547695347553,41.737001757179826],[-87.59539247587227,41.73685988279381],[-87.59534740898857,41.73678237318107],[-87.59538719997428,41.73678181011564],[-87.59595786866126,41.736773732529436],[-87.59688543236204,41.7367600870288],[-87.59755245883964,41.73675021314017],[-87.59779957590344,41.73674737285587],[-87.59794753288031,41.736745314330456],[-87.59864699335908,41.73673486667142],[-87.59878423338819,41.736732805778665],[-87.59915410693051,41.736726939552014],[-87.5995158083811,41.73672288058493],[-87.59992178157337,41.73671704209651],[-87.60013615504621,41.73671395841616],[-87.60023097737448,41.7367125944057],[-87.60039359191394,41.73671025494312],[-87.6003936344215,41.73671025439098],[-87.60041840866386,41.736709897861665],[-87.60045150975657,41.7367094215474],[-87.60050489167364,41.73670865359718],[-87.60058963184608,41.73670743410374],[-87.6008624401657,41.73670350844187],[-87.60118805450328,41.736698417758475],[-87.60187352757674,41.736687698313986],[-87.60197976260353,41.73668603667725],[-87.60239358778001,41.73668065601749],[-87.60316161862212,41.73667066563001],[-87.60360618679927,41.736665047850124],[-87.60405867044977,41.736659328201064],[-87.60421286837132,41.73665737860643],[-87.60427296567738,41.73665661886099],[-87.60482283313425,41.73664940836098],[-87.60482526624057,41.73673792308483],[-87.60484314643752,41.7373889315967],[-87.60486073346715,41.73791090079791],[-87.60487477596402,41.738462650389664],[-87.60489501312361,41.73925775007619],[-87.60492660802771,41.740269968094246],[-87.60493845807405,41.74064960888743],[-87.60494545610129,41.740921092929824],[-87.60496568873528,41.741706065201974],[-87.60497851128892,41.74211144844272],[-87.60500515771847,41.74295390447027],[-87.60500696040884,41.74302787494289],[-87.60501408085447,41.74331865184248],[-87.60501800165169,41.743467802271155],[-87.60502258686576,41.743635947502646],[-87.6050280476073,41.74383365444984],[-87.60503309302953,41.74396977023053],[-87.60503751148028,41.74408896229297],[-87.60504241504252,41.74427437120448],[-87.60504944157512,41.74454105244493],[-87.60505646003095,41.7448084196979],[-87.60506324836906,41.745063792866894],[-87.60507055451622,41.745331683062176],[-87.60507949268653,41.74563350374429],[-87.60508439021655,41.745797996025885],[-87.60508921406641,41.74596002784104],[-87.6050967000608,41.74623799073095],[-87.60510592278442,41.74657946836486],[-87.60511331988025,41.7468653070882],[-87.60512289291701,41.74723744050548],[-87.6051351383762,41.7476273286433],[-87.60514404722721,41.747910999289935],[-87.60515176753384,41.74817798662919],[-87.60515986495243,41.74845694150861],[-87.6051693401849,41.7487826680336],[-87.60517786090294,41.749072849765405],[-87.60518569067466,41.749339865186315],[-87.60518913229141,41.74945665626462],[-87.6051959678628,41.74968862144315],[-87.60520348516366,41.74994438321353],[-87.60521020849019,41.75019909710569],[-87.60521678583419,41.75046193292212],[-87.60522622156218,41.75082835735819],[-87.6052205341226,41.75113702787118],[-87.60522080118065,41.7512107140754],[-87.60521454792466,41.751286153182726],[-87.60482706999743,41.75129109617299],[-87.6045719047292,41.75129428353081],[-87.6042738380765,41.751297905582916],[-87.603966789818,41.751301434444244],[-87.60362773435094,41.751305330024394],[-87.6033615835922,41.75130802998525],[-87.60324179384665,41.75130924502518],[-87.60275688862478,41.75131461296486],[-87.60233473148762,41.751319284768016],[-87.60214988463805,41.751321142116566],[-87.60213406437246,41.75132130104745],[-87.60184242765317,41.75132427465421],[-87.60154710524816,41.751326573920764],[-87.60131891059376,41.751328350051956],[-87.60110387596954,41.75133054742341],[-87.60094059408917,41.751332220547056],[-87.60084134002652,41.75133323741376],[-87.60050179956868,41.75133669805306],[-87.6003379583213,41.75133812223505],[-87.59997922949687,41.75134123991689],[-87.59972786137683,41.75134428487479],[-87.59968696314459,41.75134478033594],[-87.59936431175352,41.751348702213875],[-87.59912834499886,41.75135126492335],[-87.59880907249288,41.751354731520486],[-87.59852458374166,41.751356982503665],[-87.59850215939382,41.75135715989581],[-87.5981332943153,41.75136122182719],[-87.59791517210833,41.75136350159795],[-87.59763270482448,41.75136645322873],[-87.5975783881133,41.7513669180003],[-87.59734901639182,41.751368445442125],[-87.59726748481431,41.75136898820853],[-87.59720802064987,41.75136938524991],[-87.597383115284,41.750598292012],[-87.59708022174257,41.75052671479964],[-87.59710674725937,41.750410252217655],[-87.59713954836111,41.750265700194106],[-87.59718104170676,41.75008209782028],[-87.59719769057708,41.749867805888016],[-87.59721225970895,41.749755383115925],[-87.59722354328007,41.74968993491737],[-87.59725879498544,41.74953133399182],[-87.59725927228051,41.749529202805654],[-87.59735967829872,41.749080885812376],[-87.5975245980341,41.74835778921515],[-87.59761805481523,41.74795566121922],[-87.59763952063521,41.74776060983344],[-87.59764472327896,41.747706100394616],[-87.59765052603117,41.74763924515847],[-87.59766398121577,41.74754396677248],[-87.59767715048811,41.74747372832061],[-87.59778559155788,41.747002745436816]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"4431546.89953","perimeter":"0.0","tract_cent":"1187204.45637818","census_t_1":"17031430300","tract_numa":"21","tract_comm":"43","objectid":"858","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1859529.70779111","census_tra":"430300","tract_ce_3":"41.76965184","tract_crea":"","tract_ce_2":"-87.58934276","shape_len":"8654.49396663"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58625874594792,41.77050364396918],[-87.58623770849424,41.76969778335363],[-87.58623359660122,41.76954026141764],[-87.5862607804817,41.769209915637376],[-87.58632243850296,41.768931825776434],[-87.5863503795922,41.76878709645951],[-87.58637672779847,41.76865061435188],[-87.58638843047848,41.76845710803882],[-87.58637488486366,41.768234402947776],[-87.58637136646605,41.767933960966246],[-87.58637071480013,41.76787830631146],[-87.5863687527236,41.7677107520004],[-87.58636413572117,41.76750517443371],[-87.58635631537163,41.7671555006385],[-87.58635124708111,41.766938366642655],[-87.58634618108253,41.76673358197396],[-87.58634003756346,41.76648584182346],[-87.58633005507932,41.766150765350716],[-87.58632826135471,41.76609055156745],[-87.58632731657742,41.766058840049894],[-87.58632645168267,41.76602981681288],[-87.58632473212407,41.76597208929188],[-87.58679068759079,41.7659671633991],[-87.58712228864565,41.76596441689964],[-87.58718990615192,41.76596385659037],[-87.58742547399642,41.765962257751774],[-87.58779363639047,41.765959707712526],[-87.58789778417682,41.765958641977974],[-87.58807591845482,41.76595681898054],[-87.5883021542334,41.76595390888029],[-87.58855575143191,41.76594958813736],[-87.58881374778683,41.76594519160847],[-87.5892305865581,41.76593965951606],[-87.58944297721942,41.76593581225412],[-87.58957544218039,41.76593341267213],[-87.5901491732226,41.76598133600495],[-87.5902376220041,41.765987808356286],[-87.59040643967018,41.7660136789218],[-87.59099355391568,41.766015309303626],[-87.5917029487662,41.76601508718553],[-87.5921201936203,41.76601251079271],[-87.59228180402607,41.76601157084556],[-87.59234656166586,41.76770439314879],[-87.59234803242519,41.767742833445105],[-87.59235103807373,41.7678214043864],[-87.5923905835908,41.769729096413954],[-87.59239410515204,41.76989896201157],[-87.59274066243945,41.76990100444216],[-87.59275196217351,41.77015355217901],[-87.59273952875378,41.77019875285264],[-87.59274594806598,41.77027803567199],[-87.59270167192899,41.770462304172085],[-87.59268097524696,41.77054861567341],[-87.59266462323285,41.770615745409664],[-87.59258043316115,41.77096338437826],[-87.592494769611,41.77131958994729],[-87.59226874792719,41.77236439362543],[-87.59225912935456,41.77240378076688],[-87.59225088613013,41.772443176504645],[-87.59224355499055,41.772482921710356],[-87.59223759488854,41.7725230185215],[-87.59223255441182,41.77256277822795],[-87.59222888534056,41.77260288981696],[-87.59222613231981,41.77264300704044],[-87.59222475786663,41.77268279066899],[-87.59222017989319,41.77272221032093],[-87.59221423481365,41.772760935080534],[-87.59220684833436,41.77280548215948],[-87.59219907507683,41.77284385208774],[-87.59219083928326,41.77288256206769],[-87.59209856899427,41.773275462964236],[-87.59206267679,41.773275815368585],[-87.59204833970054,41.773275956674425],[-87.59180514888367,41.77327835192969],[-87.59171373323343,41.77327939744682],[-87.59158523163765,41.773280866749424],[-87.59142163608185,41.77328273717563],[-87.59116924091714,41.77328523794783],[-87.59084989758789,41.773288401305464],[-87.59064707152429,41.77329046577313],[-87.59021076769608,41.77329494422889],[-87.58972735025687,41.773299911933506],[-87.58930611527633,41.773304237500504],[-87.58909214317224,41.77330641913747],[-87.58876563926054,41.77330945484499],[-87.58848682393219,41.7733120463342],[-87.5882169849551,41.77331398651516],[-87.58807945858163,41.773315304722274],[-87.58771153212001,41.77331917439459],[-87.58749766897625,41.773321435822744],[-87.58727797606596,41.773323769315255],[-87.5869455781712,41.77332718611564],[-87.58663741644108,41.773330255628004],[-87.5862961534554,41.77333929086669],[-87.5862941708648,41.773121680720905],[-87.5862960248713,41.772671245202254],[-87.58629996201533,41.77242637030116],[-87.58630287427985,41.772245238602075],[-87.58629679230981,41.77198268018656],[-87.58629249218035,41.77181305504092],[-87.58628710643369,41.77163409224116],[-87.58628354371344,41.77151569764292],[-87.58627770242975,41.77132159353756],[-87.58627122693292,41.771058209233],[-87.58626812347579,41.77092251128385],[-87.58626386539562,41.77073856117807],[-87.58625874594792,41.77050364396918]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2969877.33797","perimeter":"0.0","tract_cent":"1186017.03943786","census_t_1":"17031420200","tract_numa":"11","tract_comm":"42","objectid":"859","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864551.40456579","census_tra":"420200","tract_ce_3":"41.78345992","tract_crea":"","tract_ce_2":"-87.5935369","shape_len":"7224.25341726"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59593091239798,41.780524639167446],[-87.59620394422505,41.780522268904754],[-87.59620984945141,41.78078098938004],[-87.59621647770805,41.78102719449478],[-87.59622367282675,41.78133473805661],[-87.59623192372717,41.78171237746853],[-87.59623979681781,41.78203337234939],[-87.59624578398571,41.78234261203432],[-87.59625030189098,41.78257595780983],[-87.596258479803,41.782931175850784],[-87.5962647650289,41.78317633584275],[-87.59627008115815,41.78339086337152],[-87.59627516497822,41.78360006548651],[-87.59628035165845,41.7838451086301],[-87.59628785077557,41.784166836460166],[-87.59629328373873,41.78439992156197],[-87.59629652238637,41.784539736258324],[-87.59630029799236,41.78470310036741],[-87.59633224554851,41.78601361514884],[-87.59623177433237,41.78602466503632],[-87.59600049288652,41.78604255576058],[-87.59563594356776,41.78605577548842],[-87.59522480156015,41.78606164189522],[-87.59478985213853,41.786065185793404],[-87.59473267353346,41.78606543180874],[-87.59437813332754,41.78606695647675],[-87.59393595246657,41.786071191582344],[-87.59346230114834,41.78607626513567],[-87.59331673262491,41.78607779710507],[-87.59313658243634,41.7860796930797],[-87.59300291639265,41.78608109963638],[-87.59263062890112,41.78608484678533],[-87.59224202219028,41.7860887621559],[-87.59179948652988,41.786091943919466],[-87.59147494351127,41.7860956639879],[-87.59119912910575,41.78609882471038],[-87.59095010222431,41.78610061861276],[-87.59061651327966,41.786103072782595],[-87.5903421388741,41.78610571248218],[-87.59036499508927,41.78498367886291],[-87.59035011806044,41.78449682163831],[-87.59033070559624,41.78448868277408],[-87.5903162484983,41.784476898614386],[-87.59030620473821,41.78446077930954],[-87.5903019987045,41.78444398479629],[-87.59030285457925,41.784411141235886],[-87.5903005178801,41.784254674409915],[-87.59029896684092,41.784133688040384],[-87.59029856950237,41.78410268327678],[-87.59029592314418,41.78388729462719],[-87.59029378642171,41.783700806594695],[-87.59029000368139,41.783352559701534],[-87.59033505495671,41.783324365394655],[-87.59037811590667,41.78330713534182],[-87.59040355951505,41.78329780465827],[-87.59043965797223,41.783292933728234],[-87.59050642014621,41.783287081021705],[-87.59061831065792,41.78328500528736],[-87.5910558123286,41.7832874487442],[-87.5914072785351,41.7832771223088],[-87.5914053841705,41.783064592836645],[-87.59140187341217,41.782825268684206],[-87.5913984247167,41.782631417472594],[-87.5913939743425,41.782386424947696],[-87.59139301987622,41.78233389067114],[-87.5913901704572,41.782177047547385],[-87.59138319298354,41.78193448960453],[-87.5913769647808,41.78171007677465],[-87.59137466408362,41.78147822429248],[-87.59137422521987,41.781433983828286],[-87.59137326626032,41.78133737873608],[-87.5913726907111,41.781279360793135],[-87.59137978231736,41.781239861418854],[-87.59139469923582,41.78117354601255],[-87.59143599227151,41.781056415655776],[-87.59145572410259,41.7810004462854],[-87.59148327294803,41.78093020550413],[-87.59150796599157,41.780867246627274],[-87.59151778654018,41.780826365276546],[-87.59152913418177,41.78063389935887],[-87.59152811355587,41.78056632347607],[-87.59189949598132,41.780562277071034],[-87.59219526007978,41.78055946506604],[-87.59247569248757,41.7805571848891],[-87.59276492259066,41.78055501562649],[-87.59306024439455,41.780552559691216],[-87.59342119769033,41.780549556989875],[-87.59374828620578,41.780545570861186],[-87.59405923995433,41.78054180928826],[-87.59430942201239,41.78053974161021],[-87.59464685536517,41.78053698441947],[-87.59495590482689,41.78053445819752],[-87.59511885710275,41.780532925789295],[-87.59553357443133,41.780528756674904],[-87.59593091239798,41.780524639167446]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7137986.11839","perimeter":"0.0","tract_cent":"1176594.020179","census_t_1":"17031490200","tract_numa":"37","tract_comm":"49","objectid":"862","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1843279.98686156","census_tra":"490200","tract_ce_3":"41.72530592","tract_crea":"","tract_ce_2":"-87.62872335","shape_len":"10694.8899776"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62393809541032,41.72904227980644],[-87.62392303042634,41.728621630564156],[-87.62391596485868,41.72837811139419],[-87.62391120730258,41.72822785826184],[-87.62390410698193,41.72798417420138],[-87.62390071799156,41.727852645732376],[-87.62389686987461,41.727702947063776],[-87.62389168469215,41.727514984391014],[-87.62388288150862,41.72721431753829],[-87.62386811933865,41.72671009603268],[-87.62386287434333,41.72650424002339],[-87.62385895852427,41.726354046924335],[-87.62385601707571,41.726241786273256],[-87.62385167969764,41.72607334086798],[-87.62384591138574,41.72586844211474],[-87.62384102331887,41.72570007562758],[-87.62383103769112,41.72538518609662],[-87.6238137173427,41.72483901521086],[-87.62380851773797,41.72463241844836],[-87.62380283038671,41.724406827999665],[-87.6238004591635,41.724312738203366],[-87.62377816580846,41.72355623926594],[-87.62377602635215,41.72348363915907],[-87.6237880233598,41.723135020379054],[-87.62377539145946,41.72277110086701],[-87.62376097825727,41.72258401411452],[-87.62374932486937,41.72239466661374],[-87.6237439873547,41.72223049605237],[-87.6237395606801,41.72207689673183],[-87.6237361146506,41.72196394680053],[-87.62372917810666,41.721670677783024],[-87.6238817278169,41.72163420426007],[-87.62417006389373,41.72162961838079],[-87.62435970469421,41.72162752066681],[-87.62447965959062,41.72162619396714],[-87.6245897406368,41.721624976115095],[-87.62490862790945,41.72162806139134],[-87.62503124751632,41.72166327192024],[-87.62514673215097,41.72169643334708],[-87.62523791370447,41.721699026335834],[-87.6254109763253,41.721697238844435],[-87.62550133640833,41.72169935179637],[-87.62550133933857,41.721699351814415],[-87.6256565584859,41.72169956771002],[-87.62590835293352,41.72169991749738],[-87.6262371754884,41.72169041526055],[-87.62662037790723,41.72168875856349],[-87.62702822989304,41.72168253736605],[-87.62726323879126,41.72167816259566],[-87.62745003064606,41.72167575274979],[-87.6277798258334,41.72167260681408],[-87.6281138770964,41.72166738335603],[-87.62839356128869,41.721661825683874],[-87.62863630488589,41.721660404806286],[-87.62866428782662,41.72166005499262],[-87.62902666546172,41.721655524281104],[-87.62918457856614,41.721653169244895],[-87.62931418082638,41.721651236332505],[-87.62937236650566,41.72165036856782],[-87.62976661860831,41.721644781850244],[-87.62989053704845,41.72164273280351],[-87.63031236976605,41.721635756199966],[-87.63076683823255,41.72162835216117],[-87.6311115638124,41.7216249542376],[-87.63126788291206,41.72162341318519],[-87.6317339928742,41.72161680396535],[-87.6320971854011,41.72161029208641],[-87.63215083936618,41.72160970179974],[-87.63233372758796,41.72160768995335],[-87.63252249533672,41.72160561268339],[-87.63290701471314,41.72160213783735],[-87.6333284653142,41.72159525019321],[-87.63353297476291,41.72159190707361],[-87.63357506902057,41.723016656957284],[-87.63364365759404,41.72522007496834],[-87.63364516235426,41.72554562864592],[-87.6336453005438,41.725576412756205],[-87.63364623470066,41.72578439067754],[-87.63366941766743,41.72647541336691],[-87.6336735278226,41.72660304907369],[-87.63368674028153,41.72698904890169],[-87.63373383514158,41.728852725292924],[-87.6327152060078,41.72885137192761],[-87.63238899520815,41.728915250660414],[-87.6323216722421,41.728920932336685],[-87.63223292336585,41.72892275097678],[-87.63214264070719,41.72892412109839],[-87.63194599263926,41.72892690703669],[-87.631813647541,41.72892878168868],[-87.63167844631208,41.72893056327903],[-87.63165352213731,41.72893088090687],[-87.63157362004807,41.7289318993047],[-87.63140840866684,41.728934265426645],[-87.63128348598188,41.728936048691054],[-87.63121454460884,41.72893703281566],[-87.63106688121744,41.728939431025026],[-87.63092969644774,41.72894165900963],[-87.63080988214162,41.72894336870189],[-87.63069010489367,41.728945106213395],[-87.630584873254,41.72894665812873],[-87.6304796055766,41.72894815484094],[-87.63032989284937,41.72895031261283],[-87.63018645107594,41.72895188011597],[-87.63004495116442,41.72895342639357],[-87.62997112199086,41.728954374092645],[-87.6298659681147,41.728955007577916],[-87.62969051869818,41.72895606427812],[-87.62948758598462,41.728957286075214],[-87.62932158453019,41.72896157360951],[-87.62916122565699,41.72896571490747],[-87.629056032097,41.72896712844003],[-87.62885896142032,41.728968301354506],[-87.6287107645639,41.72896918306869],[-87.6286221771486,41.72896965519553],[-87.62851683698196,41.72897103989211],[-87.62830385286956,41.72897684104889],[-87.62822365457684,41.72898064846233],[-87.62821529753478,41.72898104505167],[-87.62812978774178,41.72898145362961],[-87.62803880773271,41.728979577955585],[-87.6279329712711,41.728979477140854],[-87.62778128029231,41.72898161944701],[-87.62765724121262,41.72898777341639],[-87.62754243307613,41.72899063588876],[-87.62746808618795,41.72899201788952],[-87.62737827599621,41.728993716486976],[-87.62719815964519,41.728995601050606],[-87.6270333741236,41.72899585065047],[-87.62685316306994,41.728996279604644],[-87.62667245728427,41.72899846159458],[-87.62644242614024,41.72900205121854],[-87.62626629235098,41.729004799679416],[-87.62606346073461,41.729013485798546],[-87.62597276824232,41.729015424854715],[-87.6258388498614,41.72901715258358],[-87.62567140574147,41.72901930158699],[-87.62547791061395,41.72902179042927],[-87.62536371659064,41.72902212617092],[-87.62523729116236,41.72902357910341],[-87.62515437748515,41.72902453194098],[-87.62509148646097,41.729025254666375],[-87.62479390881556,41.72902977840345],[-87.62458053174444,41.72903302158968],[-87.62437094881325,41.72903620683211],[-87.62401906934289,41.72904139134124],[-87.62393809541032,41.72904227980644]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3776863.5608","perimeter":"0.0","tract_cent":"1180249.86946497","census_t_1":"17031351100","tract_numa":"12","tract_comm":"35","objectid":"863","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1880656.81976691","census_tra":"351100","tract_ce_3":"41.82778876","tract_crea":"","tract_ce_2":"-87.61418703","shape_len":"8215.12430339"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61610922731991,41.82384759233591],[-87.61673229763211,41.823838139374836],[-87.6167422100404,41.82422985745755],[-87.61674656029022,41.8244648765736],[-87.61675143005645,41.82469279071753],[-87.61675716911866,41.82494145721686],[-87.61676197149883,41.825155677298476],[-87.61676726100428,41.82542492298222],[-87.61677477255098,41.825791027723554],[-87.61677990051838,41.82600247809416],[-87.6167858429369,41.826275597228324],[-87.61680975049826,41.827287036290485],[-87.61681190631107,41.827480389657794],[-87.61681389645531,41.82765885543537],[-87.61683086153423,41.828513114252246],[-87.61687256163725,41.83039031509069],[-87.61693893651912,41.83077295285768],[-87.61695664954469,41.83087506520693],[-87.61696523981195,41.83100961522537],[-87.6169665446697,41.83110017341376],[-87.61685554474779,41.83115348080001],[-87.61654438717747,41.83116122778859],[-87.61614276564463,41.83117122500109],[-87.61569351696458,41.83117278238508],[-87.61523838576117,41.83117866461635],[-87.61466648094571,41.831192541227814],[-87.61448524488881,41.831196080047505],[-87.6141587965091,41.831202453730484],[-87.61373293121692,41.83119978647143],[-87.61334786434901,41.8312000399819],[-87.6131028354848,41.83120020029625],[-87.61253102879294,41.83120534067447],[-87.61201172515986,41.83121080711314],[-87.61081051208443,41.83122016161806],[-87.61063335778184,41.83118622542001],[-87.61100082837847,41.829775871332906],[-87.61100977741125,41.82974683839717],[-87.61102002074672,41.82971690799233],[-87.61108240937088,41.82949383477045],[-87.61127644642686,41.82879669397119],[-87.61127692970705,41.82879495879123],[-87.6112950704349,41.828729780155626],[-87.61129609251094,41.82872610377566],[-87.61133106843377,41.82860044278192],[-87.61141795483671,41.82828826935503],[-87.61141940967293,41.82828304161567],[-87.6114830835377,41.828054264827585],[-87.61152417889281,41.82790661152104],[-87.6116266848302,41.8275362607276],[-87.61168992269698,41.82730778374622],[-87.61184008667637,41.82676635019603],[-87.61188696986693,41.82659407474317],[-87.61194857939992,41.826367685892954],[-87.61205793721943,41.82597292374984],[-87.6121279287,41.8257227421971],[-87.612255640527,41.82526241183631],[-87.61237128465226,41.82484023073088],[-87.61257695181631,41.82408938784097],[-87.6126242723945,41.82389080517135],[-87.61307586545516,41.8238847762812],[-87.61436403577905,41.823868988203984],[-87.61514774091994,41.82385938205802],[-87.61547482917396,41.823855372310994],[-87.61610922731991,41.82384759233591]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"6795783.37505","perimeter":"0.0","tract_cent":"1137682.29650062","census_t_1":"17031252000","tract_numa":"24","tract_comm":"25","objectid":"864","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1900700.07267416","census_tra":"252000","tract_ce_3":"41.88366198","tract_crea":"","tract_ce_2":"-87.76988155","shape_len":"10427.8763948"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.77440565449334,41.88009029239169],[-87.7746559382048,41.88008682222955],[-87.77466544434272,41.88035711795467],[-87.77467116421577,41.88057737221442],[-87.77467344364564,41.880636082286244],[-87.77468155868205,41.88084413544607],[-87.77468352966127,41.88089466751865],[-87.77469263243667,41.881186041753814],[-87.77470201111086,41.88144574838772],[-87.77470601971966,41.88155894051259],[-87.77470867070092,41.88163398149593],[-87.77471146397099,41.88176440132452],[-87.77471815296587,41.88197430755774],[-87.77472053073573,41.882048929805975],[-87.77472224992954,41.8821028687273],[-87.77472225025849,41.882102873119706],[-87.77472225024415,41.88210287476619],[-87.7747843862298,41.88405480223317],[-87.77478438620112,41.88405480552613],[-87.77483277040113,41.885574805478505],[-87.7748327706895,41.88557481453593],[-87.77485377819826,41.88623445679554],[-87.7748568333367,41.8863303842346],[-87.77485709255035,41.886338529601275],[-87.77488133328366,41.887099681313416],[-87.77475187886424,41.88710135770542],[-87.77460122156742,41.88710527493047],[-87.77345446609809,41.88712081285098],[-87.77233155563648,41.88713601645292],[-87.7720202894892,41.88713949684831],[-87.77119324887236,41.88714874045033],[-87.77000344467993,41.887161973613765],[-87.7683867562043,41.887178302951966],[-87.7677923350464,41.88718430091478],[-87.76766134915104,41.88718606852201],[-87.76676246828518,41.887198194442085],[-87.76665750036726,41.88719961011854],[-87.76552266490279,41.887214908102415],[-87.76510673821572,41.88721992495297],[-87.76510636361695,41.88720069580365],[-87.76510210658134,41.886982070722205],[-87.76509498024873,41.886775009141445],[-87.76509054137648,41.88664603497531],[-87.76508468791829,41.88647772873474],[-87.7650737313799,41.88619320577844],[-87.7650670669319,41.886025252263096],[-87.76506233765939,41.88590829617468],[-87.76505731561507,41.88571862264373],[-87.765053863081,41.885588220287175],[-87.76504356682642,41.8853286732125],[-87.76503094155993,41.8849797069821],[-87.76502431476472,41.88479923984179],[-87.76501502310272,41.8845548185116],[-87.76500911549806,41.884400946687734],[-87.76500183185051,41.88423547716544],[-87.7649948704122,41.88407732924237],[-87.76498001457375,41.88371490534594],[-87.76496985405478,41.88344424436896],[-87.76495637806,41.88308361074691],[-87.76494914367527,41.882864007537655],[-87.76494405198115,41.882709261544136],[-87.76493936301024,41.88256708620321],[-87.76493285180777,41.882373666695955],[-87.76492590093864,41.88224415337139],[-87.76491753411807,41.882088243778966],[-87.76490953228766,41.881806095272346],[-87.76490663070828,41.881716289047425],[-87.7649035429594,41.8816200603542],[-87.76489843624276,41.88146284442603],[-87.76489321468028,41.881302554364595],[-87.76489136401267,41.88124573922245],[-87.7648843957524,41.88104586869214],[-87.76487751798632,41.88085236471485],[-87.7648710713973,41.88066407721561],[-87.76486563496407,41.88049440072997],[-87.7648636633209,41.88024599099717],[-87.7651565752365,41.88024175034353],[-87.76552008730688,41.880236440628444],[-87.76587559570355,41.88023095300237],[-87.76613599388429,41.88022576296023],[-87.76649618190845,41.880220898064906],[-87.76668650816171,41.880218326877056],[-87.7670099208111,41.880212951794036],[-87.76725294026812,41.88020888098751],[-87.76761729974548,41.88020321205749],[-87.76778730382328,41.880200673952245],[-87.7681215395013,41.88019466873672],[-87.76830401391952,41.88019138964488],[-87.76857226638131,41.88018661691622],[-87.76891257635972,41.88018060606431],[-87.76923599292992,41.88017478565042],[-87.76942954322304,41.88017131795394],[-87.76975918638091,41.88016659607514],[-87.76997888541787,41.88016344869294],[-87.77027064028856,41.88015854030231],[-87.77050605691605,41.88015456227231],[-87.77058178684187,41.88015328656683],[-87.77069042363091,41.88015145935441],[-87.77101556311453,41.88014594423681],[-87.7713981014082,41.88014006444805],[-87.77178768919238,41.88013407487975],[-87.77198648710952,41.880131017941835],[-87.77236520798778,41.88012485529327],[-87.77256176949166,41.880121342140825],[-87.77302309092637,41.880113403341845],[-87.77322549074115,41.88010991973346],[-87.77344258150713,41.880106183021894],[-87.77371086624949,41.88010183752599],[-87.77413064634604,41.880095045852876],[-87.77440565449334,41.88009029239169]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3508567.16702","perimeter":"0.0","tract_cent":"1169884.31127518","census_t_1":"17031612000","tract_numa":"16","tract_comm":"61","objectid":"876","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1869661.2066958","census_tra":"612000","tract_ce_3":"41.79784747","tract_crea":"","tract_ce_2":"-87.6525364","shape_len":"7956.5940583"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65001863661773,41.794401265397035],[-87.65001637321343,41.79423975791009],[-87.65014881132248,41.79424342024724],[-87.65071012721747,41.794234928660046],[-87.65100303724823,41.794230329796314],[-87.65123853939727,41.7942272461174],[-87.65128447283986,41.79422664451396],[-87.651367826278,41.79422555262515],[-87.65144913741113,41.79422446529334],[-87.651840923246,41.79421922198979],[-87.65215058730006,41.794215046982465],[-87.65244948470416,41.79421019150854],[-87.6525935857258,41.794207850069334],[-87.65265582863758,41.79420703391011],[-87.65283572666483,41.79420467429744],[-87.65309932389803,41.794201185983],[-87.65329580689904,41.79419815051542],[-87.65343914502337,41.79419581557407],[-87.65366046980782,41.79419139519383],[-87.65378363936658,41.79418893500436],[-87.65384420623606,41.7941869139737],[-87.65400367441693,41.79418159190259],[-87.6542982868089,41.79417548534517],[-87.65450097959614,41.79417127648725],[-87.65467432863795,41.79416766314448],[-87.65487424667296,41.794171880303075],[-87.65487804278185,41.794289148462795],[-87.65488058340664,41.794479424750456],[-87.65487957620864,41.79466185886672],[-87.65488049819095,41.79470890162971],[-87.6548835339778,41.794863806722205],[-87.65488862901854,41.79509353344859],[-87.65489388966077,41.79531799211727],[-87.65490003752154,41.79555916870943],[-87.65490795810834,41.79586871560979],[-87.6549098324389,41.79593308206782],[-87.6549114881293,41.79598997921303],[-87.6549154419759,41.79612578974864],[-87.65492155270502,41.79636702097274],[-87.65492823436549,41.796630621472815],[-87.65493525292635,41.7969109640818],[-87.65494150234701,41.79715296449092],[-87.65494733770662,41.79737163630795],[-87.65495433319924,41.797668087413804],[-87.65495783859254,41.79781023428105],[-87.65496083227912,41.79793163188945],[-87.65496612812007,41.798111056964906],[-87.65497274484245,41.79833563329339],[-87.65497940167027,41.79858770756621],[-87.65498413603487,41.79879169063783],[-87.65498560714742,41.79885476294742],[-87.65499080028948,41.799071756619284],[-87.65499631964633,41.79924391062893],[-87.65500151636057,41.79938406439184],[-87.65503540241598,41.79955113059023],[-87.65501191893064,41.79961944942721],[-87.65501626345385,41.79970364085532],[-87.65502131884628,41.79992675370523],[-87.6550266748557,41.80016309521347],[-87.65503174068893,41.800399133401875],[-87.65503803768571,41.80069231480342],[-87.6550452660076,41.80095978776715],[-87.65504661707574,41.801006672745636],[-87.65505259537629,41.80121417109047],[-87.65505899103138,41.80145210378091],[-87.65483282801506,41.80145464447365],[-87.65462008802818,41.80145648877001],[-87.65446875208177,41.80145836131173],[-87.65430786116319,41.8014603517108],[-87.65399096846441,41.80146503693738],[-87.65384747142312,41.80146647504315],[-87.65368443502736,41.80146810856863],[-87.65344613937111,41.80147270842658],[-87.65323304509162,41.80147652119535],[-87.65313958035192,41.80147819342006],[-87.65279909611536,41.80148366872059],[-87.65262837123424,41.80148520168518],[-87.65239954682372,41.80148725611126],[-87.65210955250369,41.801490476462114],[-87.65202401207172,41.80149161572799],[-87.6515847134375,41.80149795579318],[-87.65141492475638,41.80150070658029],[-87.65106404518187,41.80150639055333],[-87.65067567180517,41.8015108890508],[-87.650365344187,41.80151552095925],[-87.65020351913208,41.801517003888904],[-87.65020160892846,41.801406312915816],[-87.65019364825963,41.80111987208305],[-87.65019159267092,41.801060611368186],[-87.65018623556224,41.80090618595083],[-87.65018024600266,41.800689763717514],[-87.65017797157394,41.80060632402507],[-87.6501743873514,41.80047479672379],[-87.65016940870493,41.800194246615746],[-87.65016560394565,41.79996891843156],[-87.65016311045365,41.79981695270002],[-87.65015734978833,41.79970895865296],[-87.65015656712855,41.79969428553538],[-87.65015578410527,41.79967961214116],[-87.6501515493411,41.79960022286197],[-87.6501473220179,41.79937670336758],[-87.65013907692037,41.79904805394912],[-87.65013175875227,41.79876293434785],[-87.6501237896585,41.798457064082776],[-87.65011805814926,41.79823419422545],[-87.65011268091965,41.798025102767255],[-87.65010870581797,41.797876394143394],[-87.65010590970242,41.79777182005201],[-87.65010223537894,41.797634364497156],[-87.65009562981191,41.797372328485785],[-87.65008963755531,41.79713548863216],[-87.65008294784069,41.79685931931125],[-87.65007900635331,41.7966966144612],[-87.65007392945854,41.79645294675715],[-87.6500673080015,41.796185586685944],[-87.65006518204306,41.7960556319228],[-87.65006388650704,41.795976451898916],[-87.65006241568588,41.7958865678492],[-87.65005852072846,41.79567325892331],[-87.6500458911258,41.7953017174905],[-87.65004088294265,41.79511515841968],[-87.65003706240404,41.794972844821515],[-87.65003273292875,41.79477970376836],[-87.65003073994762,41.794690475496694],[-87.65002930291375,41.79462614064326],[-87.65001863661773,41.794401265397035]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10706817.1998","perimeter":"0.0","tract_cent":"1151606.31752196","census_t_1":"17031231500","tract_numa":"69","tract_comm":"23","objectid":"865","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1903744.59040516","census_tra":"231500","tract_ce_3":"41.8917542","tract_crea":"","tract_ce_2":"-87.7186708","shape_len":"13471.9562006"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7225697625906,41.88803469618498],[-87.72306653500196,41.88802841839623],[-87.72343061964942,41.88802383504469],[-87.72421342574215,41.88801392560276],[-87.72464970767939,41.888044710433235],[-87.72464525429334,41.88783681027196],[-87.72587007905597,41.88783403344496],[-87.72587189697468,41.88789725866755],[-87.72587356205781,41.887993557270846],[-87.72587356201102,41.88799356221024],[-87.72587387720138,41.88801731641577],[-87.72587433678443,41.88805195725601],[-87.72587527524506,41.88812269129237],[-87.72587538096914,41.88813064302694],[-87.72587545921324,41.888136533413764],[-87.72587603173596,41.8881797212527],[-87.72587656288043,41.88821975628387],[-87.72587677559127,41.88823575910108],[-87.72587705740078,41.88825698952142],[-87.72587808256387,41.88833423336269],[-87.72587845028133,41.88842284148495],[-87.72588584549305,41.88860743188701],[-87.7258943275107,41.88875879440557],[-87.72590039129045,41.88897158776418],[-87.72591023756448,41.889292963431515],[-87.7259191390613,41.88959002007893],[-87.7259247696542,41.88977877153573],[-87.72592643869774,41.88986020181337],[-87.7259293410833,41.89000179299242],[-87.72594050471255,41.8903353322943],[-87.72595751997524,41.89106692817451],[-87.7259677431911,41.8915773017556],[-87.7259721557845,41.89169417469861],[-87.72597578796456,41.891790379909004],[-87.7259813624217,41.892025096792686],[-87.72598358564908,41.892118714957135],[-87.72599073056358,41.89232075674819],[-87.72599809852244,41.89252911092119],[-87.72599983514822,41.8926067544616],[-87.7260029488784,41.89274598664093],[-87.72600879809258,41.892902631782576],[-87.72601469655874,41.89306059386781],[-87.72602267798396,41.89333854552154],[-87.72602923653633,41.89353333909261],[-87.72603454481005,41.893690996446296],[-87.72604216096508,41.89394575729033],[-87.72604678896312,41.89410055702295],[-87.72606217465083,41.89467478869641],[-87.72607211345743,41.895091225056575],[-87.72607601604236,41.89523874868128],[-87.72608049209401,41.89536765044182],[-87.72588061068794,41.895369768095144],[-87.72533344880736,41.89537359580348],[-87.725008364856,41.89537634727707],[-87.72486292768414,41.89537739672683],[-87.72471013598341,41.895378499220115],[-87.72453596950774,41.895381759053166],[-87.72409375627791,41.89538818357363],[-87.72363749114587,41.89538998787056],[-87.72340633395831,41.89539090112838],[-87.72262992919748,41.895399892216915],[-87.72241176328916,41.895401419488145],[-87.72220225661394,41.89540288595167],[-87.72144172969783,41.895410773480066],[-87.72119186250374,41.89541304965397],[-87.72086590415854,41.89541601882187],[-87.72010616708518,41.89542574035804],[-87.71997255771971,41.89542664562149],[-87.71960785931604,41.895429115596556],[-87.71893395954278,41.89543497963758],[-87.71875485190364,41.895436921606034],[-87.71784091595966,41.895446826674814],[-87.71753324030772,41.89544937147353],[-87.71720477983588,41.89545208713723],[-87.71692634239254,41.89545479376573],[-87.7165499375606,41.89545845107081],[-87.71631408608235,41.89546088191935],[-87.71611236945988,41.895462960632166],[-87.71569434154262,41.895467468520415],[-87.71535268266666,41.89547115180648],[-87.71509387982167,41.89547304554636],[-87.71495141700939,41.8954742504857],[-87.71451845351652,41.89547735176314],[-87.71401833454495,41.89548184556455],[-87.71387286747256,41.89548332659708],[-87.71367653055464,41.89548532549501],[-87.71326569979813,41.89548935075326],[-87.71314378842483,41.895490545044424],[-87.71281135634587,41.89549341439635],[-87.71265534852894,41.895494970023336],[-87.71205909567945,41.89550091314831],[-87.71182789548624,41.89550321669646],[-87.71143590960692,41.895506620602404],[-87.71142970644473,41.895298947604545],[-87.71142603458642,41.8951603435603],[-87.71142223480987,41.89504374735715],[-87.71141508545861,41.89481461968155],[-87.7114005924822,41.89430197184061],[-87.71138641635,41.893802113833914],[-87.71138239766573,41.89367568764134],[-87.7113737250919,41.89340286772383],[-87.71135644242284,41.89283331650967],[-87.71135189235483,41.89268145295915],[-87.71134187637182,41.89234341785864],[-87.71132914907963,41.89195171838942],[-87.71132614842999,41.891843336397294],[-87.71132142522022,41.89167272404089],[-87.711305770554,41.891128510828466],[-87.71129603947878,41.89078325707421],[-87.71128904940952,41.89053525216435],[-87.71128325624517,41.890390407079884],[-87.71127928649926,41.89025492095623],[-87.71127630346716,41.89015310215865],[-87.71127254935898,41.89001685594424],[-87.71126973022325,41.889914536931315],[-87.71126571799839,41.88977321328602],[-87.7112609163374,41.88960408782152],[-87.71124930998108,41.889239836667656],[-87.7112486975995,41.889220623370704],[-87.71123989989621,41.888897166594624],[-87.7112297178949,41.88846656701763],[-87.71122636137905,41.88835968742485],[-87.71122338055801,41.888268215502556],[-87.7112206641228,41.88817830017415],[-87.71135149772873,41.888177214956436],[-87.71170224477966,41.88817279331713],[-87.71180832814998,41.88817145587167],[-87.7119848731094,41.88816914037063],[-87.71288222814124,41.8881573672572],[-87.71355346869386,41.88814898584713],[-87.7135639004593,41.88814892304687],[-87.71365789029424,41.888148356441796],[-87.71373847169549,41.88814671878615],[-87.7137582390636,41.888146317203386],[-87.71399226041865,41.888143513418],[-87.71411360024676,41.888142059634816],[-87.71488079687443,41.888132472406404],[-87.71510576957051,41.88812956740031],[-87.71542348485795,41.88812544586109],[-87.71599785349626,41.88811790072625],[-87.71609105585847,41.888116687115144],[-87.71657147877848,41.888111147300975],[-87.71688304819605,41.8881065337193],[-87.71723288472157,41.888101893809576],[-87.71723290308603,41.888101893633674],[-87.71736696705516,41.88810021131662],[-87.71854049162911,41.88808523253106],[-87.71902461512954,41.88807898464399],[-87.71976176564195,41.88806946696914],[-87.71986001850551,41.88806827673428],[-87.71987249722824,41.88806826326417],[-87.72098330193283,41.888067056757336],[-87.72117495367353,41.888051281571094],[-87.72220659594319,41.88803928169211],[-87.7225697625906,41.88803469618498]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3491995.49597","perimeter":"0.0","tract_cent":"1169838.6710442","census_t_1":"17031070300","tract_numa":"19","tract_comm":"7","objectid":"866","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1917472.6801554","census_tra":"070300","tract_ce_3":"41.92904694","tract_crea":"","tract_ce_2":"-87.65131088","shape_len":"7935.82485235"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65298093613228,41.925387260932936],[-87.65361258292027,41.9253758060545],[-87.65362144751403,41.92579509566605],[-87.65363689217199,41.92614718854789],[-87.6536429607481,41.92634201515711],[-87.6536532820863,41.926673353033614],[-87.65365605349116,41.926765520427544],[-87.65365898592856,41.926863012564546],[-87.65367009962237,41.9271929020347],[-87.6536798877738,41.92748344027633],[-87.65368588736939,41.92763704272802],[-87.65369196612494,41.92779267581933],[-87.65370257859716,41.92810091502264],[-87.65371145971153,41.92835886927171],[-87.65371895597585,41.92857356665494],[-87.65373389706983,41.92899573555712],[-87.65373432261329,41.92900775035592],[-87.65373887248676,41.92913630481164],[-87.65374349440097,41.929266902214614],[-87.65375663321804,41.92964592947471],[-87.65376982796518,41.93002665845673],[-87.65378771021626,41.93053702469629],[-87.65379733209407,41.93082426459701],[-87.65380986836337,41.931198512966354],[-87.6538220434531,41.931561096511786],[-87.65383941095565,41.93217667267853],[-87.65383950830828,41.932180104078306],[-87.65385860753153,41.932638085503555],[-87.65340537558194,41.932646877679765],[-87.65323720259215,41.93264957099927],[-87.65311111042988,41.932651589952144],[-87.65300827642673,41.93265323670341],[-87.65263979496656,41.932659135864114],[-87.65211931178001,41.932667464971246],[-87.65205755929537,41.93266850965491],[-87.65143845822377,41.932678978508456],[-87.65093975819987,41.93268740913144],[-87.65067915966156,41.93269056416829],[-87.65021864671587,41.93269613803446],[-87.64986950305028,41.93270036235407],[-87.64901192377404,41.932719973981456],[-87.64899169045587,41.93215844701644],[-87.64898939518272,41.932093176892465],[-87.64897835941642,41.931779418269535],[-87.64897103020908,41.93154866775312],[-87.64896520200507,41.93136518136666],[-87.64895377733944,41.93100548406114],[-87.64892224933746,41.93006323274121],[-87.64890099506823,41.92941815930079],[-87.64888953918613,41.92910750008912],[-87.6488886556477,41.92908354792665],[-87.64887660761696,41.9287568213188],[-87.64887348493154,41.92865872369029],[-87.6488651079967,41.92839561325239],[-87.64885832356174,41.92818116679263],[-87.64885300027149,41.9280126815731],[-87.64884791691868,41.92785179817492],[-87.64884104273244,41.92767136578679],[-87.64882562949093,41.92726680223242],[-87.64882520796351,41.92725573611461],[-87.64881511736459,41.9269908774781],[-87.64879560567427,41.92644076415874],[-87.64879271416794,41.926351171114646],[-87.64877054132143,41.925664136992054],[-87.64876128768812,41.92545384253287],[-87.64935685654878,41.92544587047929],[-87.64982701033128,41.92543762660171],[-87.64995561247093,41.92543537123314],[-87.65073776870153,41.925421651421445],[-87.65075665952132,41.925421376788044],[-87.65118343066345,41.925415172401586],[-87.65167032819191,41.92540809179256],[-87.6527203231848,41.92539174108489],[-87.65275830183644,41.92539114952035],[-87.65281628511417,41.92539024621366],[-87.65288142852783,41.9253890650595],[-87.65298093613228,41.925387260932936]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"10648474.3098","perimeter":"0.0","tract_cent":"1161215.39038001","census_t_1":"17031020900","tract_numa":"42","tract_comm":"2","objectid":"867","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1941165.83501619","census_tra":"020900","tract_ce_3":"41.99424597","tract_crea":"","tract_ce_2":"-87.68233721","shape_len":"13345.3653917"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68904451431634,41.99050823692255],[-87.6896725537845,41.99050000314954],[-87.6896853203487,41.99090026662129],[-87.68969203303466,41.99108817178996],[-87.68970470942412,41.99227329497465],[-87.68976415100754,41.99409292646066],[-87.68982355820535,41.995911422432776],[-87.68986868554745,41.997292747400536],[-87.68988296414578,41.99772980309359],[-87.68959876293574,41.99773632837481],[-87.68922841996603,41.99774172200697],[-87.68907774278019,41.99774372930675],[-87.68902534898265,41.99774442259996],[-87.68866271280831,41.99775028356197],[-87.68836253229155,41.99775513456364],[-87.68812682470667,41.99775979998841],[-87.68801076518905,41.99776204875481],[-87.68780254075331,41.99776584223354],[-87.68744648682534,41.99777244025273],[-87.6871377583696,41.99777815816102],[-87.68677238912335,41.99778398980677],[-87.68661406094134,41.99778667963483],[-87.68622934626829,41.997794009479755],[-87.68586045032552,41.99780103703666],[-87.68548604630966,41.99780534603385],[-87.6853123797347,41.997807823462665],[-87.6850105711364,41.997812860948656],[-87.68455683582789,41.99782043255067],[-87.68423394063082,41.99782431507893],[-87.68403878281393,41.99782740998571],[-87.683795417422,41.99783190245536],[-87.68346076323691,41.99783807956743],[-87.68322284417907,41.99784244029793],[-87.68291457157996,41.997848158209024],[-87.6825731246778,41.99785403821151],[-87.68204654070533,41.99786310452242],[-87.68180899131823,41.99786727232603],[-87.68150204610444,41.99787263723217],[-87.68135641327851,41.99787499783],[-87.680761075516,41.99788464547873],[-87.68052349930852,41.997887822560635],[-87.68013563638647,41.997895197772934],[-87.67975281408371,41.99790239949931],[-87.67934174651906,41.99790881225964],[-87.67902102439186,41.997915930646926],[-87.67865678668805,41.997924318329076],[-87.67831230509233,41.99793263482599],[-87.6777587432045,41.997943744550575],[-87.67757358984379,41.99794697478505],[-87.67745128286435,41.997949123123085],[-87.67705176102096,41.99795606016182],[-87.67683740450633,41.997959319003876],[-87.67668974141623,41.997961563826905],[-87.67640777921586,41.99796653662079],[-87.67601842859952,41.9979752845513],[-87.67571616592706,41.997979618004045],[-87.67553818041945,41.99798344006987],[-87.67547579520776,41.99798477957029],[-87.67529834981812,41.99798784312123],[-87.67529825672862,41.997987844508536],[-87.6752350297534,41.9979888656662],[-87.67517807480752,41.9979897855404],[-87.67516790878788,41.9979899498069],[-87.67501250028111,41.99799274794264],[-87.67500654833287,41.997897725318126],[-87.67500437929117,41.99783333418041],[-87.67499417858069,41.99753451570022],[-87.6749912724495,41.99744830401867],[-87.67498302191302,41.99720352981046],[-87.67497314080593,41.996898703352024],[-87.67497026078031,41.99678433668976],[-87.67496705834878,41.99665720714095],[-87.67495433156978,41.996232305984975],[-87.67494072169536,41.9957860224837],[-87.67493365936232,41.99556241108434],[-87.67492943322915,41.99542860917269],[-87.67491766435508,41.9950429004703],[-87.67491284431858,41.99489309485711],[-87.67490356645013,41.99460470943969],[-87.67489497640717,41.99435413358397],[-87.67489095233923,41.99423675075268],[-87.67488090543031,41.99383030575383],[-87.67486935079694,41.99336315054708],[-87.67485758587037,41.992919978336815],[-87.67484928460512,41.9926118676754],[-87.67484324251386,41.99239328606916],[-87.6748345208642,41.99207775568878],[-87.67484988170877,41.99076157320673],[-87.67497061103393,41.99075998579604],[-87.67503643288404,41.99075851067088],[-87.67513873625765,41.99075619695456],[-87.67526092882918,41.99075343323439],[-87.67543665302406,41.99074945865259],[-87.6759840338028,41.99073953180449],[-87.67646151761821,41.99073026029148],[-87.67676115024766,41.99072444081419],[-87.67707195343571,41.990719775506946],[-87.67741380669949,41.99071464299058],[-87.67764787395261,41.9907102500315],[-87.67775530411791,41.990708371876515],[-87.67802435686879,41.99070366807167],[-87.67842246476431,41.990697422572744],[-87.6791023133119,41.99068675355368],[-87.67982752414291,41.990675368409995],[-87.68051013196421,41.99066464803419],[-87.68247201598842,41.99062871878577],[-87.68477521142627,41.99058649587885],[-87.68684561818091,41.99054850097689],[-87.68685599362674,41.990548313802414],[-87.68720631648976,41.990542073598775],[-87.68752205726787,41.99053644841397],[-87.68806776478759,41.99052434176649],[-87.68843610450831,41.9905188532973],[-87.68897183873729,41.990510869297786],[-87.68904451431634,41.99050823692255]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"12157351.7304","perimeter":"0.0","tract_cent":"1139398.4764252","census_t_1":"17031252400","tract_numa":"35","tract_comm":"25","objectid":"868","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1895300.12216682","census_tra":"252400","tract_ce_3":"41.86881271","tract_crea":"","tract_ce_2":"-87.7637111","shape_len":"16032.4524557"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.75471094496022,41.87071967411389],[-87.75469914197144,41.87046511245162],[-87.75469018145063,41.87016272861688],[-87.75468927643536,41.87013744562592],[-87.75468350473628,41.869976199516245],[-87.75467583956365,41.869788014759344],[-87.75467126485356,41.869663770799455],[-87.75466194906852,41.869410774319],[-87.75465551180505,41.86923296407564],[-87.7546487811863,41.86904766739125],[-87.7546472694924,41.869007464388055],[-87.75464518141001,41.86895195184567],[-87.75464097483534,41.86884010662234],[-87.75463337812742,41.868617732585896],[-87.75462722743912,41.86841736268438],[-87.75462070535232,41.868263019486186],[-87.75462070173386,41.868262932200615],[-87.75461112742518,41.86801470167419],[-87.75460909781698,41.86794359353449],[-87.7545960677325,41.867625468582574],[-87.75459257549403,41.867528794710736],[-87.7545863403555,41.867356208293415],[-87.75456953880405,41.86689110908727],[-87.75455714255546,41.86607152920952],[-87.75453330516166,41.86575181372344],[-87.75473895461352,41.86574884251677],[-87.7550192553229,41.865744820681364],[-87.7557336509735,41.86573238960445],[-87.75733531446119,41.86570829865474],[-87.75743566383643,41.86570679831311],[-87.75898371536535,41.86568376021052],[-87.75940908296296,41.86567809298144],[-87.75974684339792,41.86567360550911],[-87.75999197024879,41.86566969470997],[-87.76036653224104,41.86566371815094],[-87.76100827854849,41.86565404576864],[-87.76153084879518,41.865646167306615],[-87.76162705496242,41.86564483093001],[-87.76165737643063,41.86564440996148],[-87.76177931444548,41.8656427116895],[-87.7625826952712,41.86563073569875],[-87.76399439722209,41.86561128773692],[-87.76409975555767,41.865607863742554],[-87.76430870911597,41.865601072590465],[-87.76430871168817,41.865601072328786],[-87.76438252620369,41.8655986707168],[-87.76446912297989,41.8655958534982],[-87.76456856555065,41.86559261794001],[-87.76530038404759,41.86558153032238],[-87.76553236267333,41.86557836868641],[-87.76566483798123,41.865576560040026],[-87.76585550988831,41.86557395647711],[-87.76657926020467,41.86556600418212],[-87.76675791795451,41.86556351107411],[-87.76675792640049,41.86556351084135],[-87.7677843544059,41.86554922233349],[-87.76782288481009,41.86554862693133],[-87.76798637492578,41.865546100859376],[-87.7681820845156,41.86554306350803],[-87.76830860955742,41.865541100137115],[-87.76899481457193,41.865531740698344],[-87.76921364769015,41.86552872712006],[-87.76949137571225,41.86552490403036],[-87.77019652217129,41.86551584994199],[-87.77044205678983,41.86551156482535],[-87.77044206413447,41.86551156458692],[-87.7707024995596,41.8655069960138],[-87.77071024703808,41.8655068690379],[-87.7714628586637,41.86549817717577],[-87.77167233270457,41.865494920477296],[-87.7716723444545,41.86549492026034],[-87.77186891762236,41.86549187755562],[-87.77194988065276,41.86549062458588],[-87.77228023801315,41.865486938107665],[-87.77260497188983,41.865483313783876],[-87.7727503238003,41.86548108150655],[-87.77289647210678,41.86547883674039],[-87.77313700885553,41.86547512575818],[-87.77366645940802,41.86546536639473],[-87.77385992410505,41.86546179964138],[-87.77396384443783,41.865460812958034],[-87.77413883377075,41.865459151647734],[-87.77413885176155,41.865459151460904],[-87.77413885137074,41.86546029169833],[-87.77413887370602,41.86570520176325],[-87.77414596282004,41.86591544700314],[-87.774149438115,41.86601798693602],[-87.77414943809349,41.86601798940575],[-87.77416285328565,41.86641652070354],[-87.77417439834912,41.866734800772406],[-87.77418745243592,41.8670820680782],[-87.77419537830514,41.86728905112394],[-87.77420315615971,41.867491916780715],[-87.77421662744237,41.86786300594711],[-87.77422330217765,41.86804075680863],[-87.77422947772534,41.868193721574606],[-87.77422994634013,41.868205334532966],[-87.77423751832312,41.86841486824644],[-87.77424381528812,41.86859393421972],[-87.77425075696947,41.86877898580538],[-87.77425553881672,41.86890019491152],[-87.77426304077805,41.86908879095176],[-87.77426403191365,41.86911371225432],[-87.77426963503532,41.86925435551033],[-87.77427368809359,41.86943393166726],[-87.77427829544983,41.86961309970155],[-87.77428427296432,41.86984145037421],[-87.77428505985824,41.869932289085604],[-87.77428584638346,41.8700231280682],[-87.77427552986678,41.87021273311445],[-87.77427570837911,41.870411356647914],[-87.77427570832172,41.87041136323385],[-87.77427578307277,41.87050812578808],[-87.77427581921529,41.87056718262567],[-87.77427779062157,41.87061052402274],[-87.77427868006083,41.870629885235644],[-87.7742831838059,41.870727913317076],[-87.77428321406144,41.8707285704392],[-87.77428327517289,41.870729900054194],[-87.77428347015358,41.87073415350215],[-87.77430141908758,41.870924307753725],[-87.7743077819887,41.87099163775556],[-87.77431227817938,41.87103921512248],[-87.77367733571226,41.87099384033563],[-87.77081089450353,41.87078895195613],[-87.76939786292976,41.870687352998196],[-87.76808487534048,41.870592931393205],[-87.7678947311161,41.87066654061437],[-87.76781114646217,41.87067409865033],[-87.76740454157272,41.870700818205435],[-87.7673058661728,41.87070980975209],[-87.76678226180985,41.87075751997394],[-87.76620234688417,41.87082301710182],[-87.76560778727,41.870891978994926],[-87.7649644989374,41.87097015775425],[-87.76454023479813,41.87102023107282],[-87.7644409604818,41.871031947449374],[-87.76445697478403,41.87110371138551],[-87.76449962598025,41.871294839375025],[-87.76454620071424,41.87150354835973],[-87.76456963340243,41.871813494079134],[-87.76458545474708,41.87252811157346],[-87.76458038595739,41.87266060926169],[-87.76458743089775,41.87282667922313],[-87.76409992634326,41.87283507655411],[-87.76390553337393,41.872836667772035],[-87.76369480023438,41.87283839139094],[-87.76328940209132,41.87284335054963],[-87.76288436739826,41.87284880377371],[-87.76254454970054,41.872853319835095],[-87.76236131105301,41.87285575449598],[-87.76200169844816,41.872860771801136],[-87.76178292333766,41.87286259213517],[-87.76154980505532,41.872864793992925],[-87.76146650497846,41.872865890218286],[-87.76130214412633,41.872867717678695],[-87.76100295338422,41.872870178771905],[-87.76063947035537,41.87287687396008],[-87.76031462980082,41.87288173006325],[-87.7599133466719,41.87288636824986],[-87.75955811553777,41.87289002765199],[-87.75950971152328,41.87289054185247],[-87.75921727698483,41.87289364813543],[-87.75891675563132,41.87289711251519],[-87.75888579966328,41.872897480459386],[-87.7586323896863,41.872900492298626],[-87.7583645432247,41.87290425595165],[-87.75803320383932,41.8729090730643],[-87.75778848593495,41.872913170771334],[-87.75756620221027,41.87291315428056],[-87.7574153389891,41.87291555455209],[-87.75725406430631,41.872918120294045],[-87.75700924161397,41.87292161207888],[-87.75673277199589,41.87292472491594],[-87.75638593849251,41.872929514093606],[-87.75608526201417,41.87293382155123],[-87.75595776767193,41.872935225119306],[-87.75569855831398,41.872938078934034],[-87.75549852187739,41.87293929904763],[-87.75532376859587,41.87294036477899],[-87.75504411242794,41.87294263396194],[-87.75480598002616,41.87294637619869],[-87.75480566911811,41.87292710805023],[-87.7548022280209,41.87271391708048],[-87.75479801946193,41.872549515071725],[-87.75479191763382,41.87240777105872],[-87.75477865247409,41.87217685758276],[-87.75476841159903,41.87195646214164],[-87.75475988967285,41.871773053354595],[-87.75475571061195,41.8716831190037],[-87.75474505755557,41.87145384791861],[-87.75473866692016,41.87131630250271],[-87.75473444886707,41.871225527107974],[-87.75472603110038,41.87104434825272],[-87.75471094496022,41.87071967411389]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"7008414.90191","perimeter":"0.0","tract_cent":"1179671.63832248","census_t_1":"17031530100","tract_numa":"31","tract_comm":"53","objectid":"869","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1827471.61491855","census_tra":"530100","tract_ce_3":"41.68185592","tract_crea":"","tract_ce_2":"-87.61793105","shape_len":"10626.8101431"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62223732108242,41.67803100717528],[-87.6226582884707,41.678026204089065],[-87.62266772740993,41.67825763483015],[-87.62267494708821,41.678479806165114],[-87.62267959306581,41.67861982355419],[-87.62268482897082,41.678829331212505],[-87.62268851747764,41.6789349006891],[-87.62269563118898,41.679138465283785],[-87.62270199504312,41.67932860487648],[-87.62270690706154,41.67948108317993],[-87.6227113443746,41.67966004139683],[-87.62271625101249,41.67985031192273],[-87.62272124873199,41.68004411771135],[-87.6227273857517,41.68024161069338],[-87.62273425919422,41.68044204466206],[-87.62274178606182,41.68067472587436],[-87.62274356479027,41.680730096178635],[-87.62275025218463,41.68093826471501],[-87.62275900852009,41.68118717528045],[-87.62277037074863,41.681485390224935],[-87.62277572331911,41.68163518174385],[-87.62278358184722,41.68185510653848],[-87.62278645059513,41.68196393747241],[-87.62279168122112,41.68215047460787],[-87.62279881047407,41.68235763343744],[-87.62280320954378,41.68254419176437],[-87.62280852044289,41.68276942643023],[-87.62281280240481,41.6828860048355],[-87.62281730846027,41.68300886915203],[-87.6228185474971,41.68304265958214],[-87.62282530485541,41.683227065813426],[-87.62283400922135,41.68350739831935],[-87.62284097381837,41.683746116483725],[-87.62285127364308,41.684107718860886],[-87.62285233861134,41.684138300080626],[-87.6228656289766,41.684519951819816],[-87.62287603017789,41.684825735007315],[-87.62287732430221,41.684871161745725],[-87.62288403988128,41.68510598108317],[-87.62288959931666,41.68532193529544],[-87.62260980608298,41.6853246280971],[-87.62233423961547,41.6853283024931],[-87.62216654444084,41.685330256225946],[-87.62188885991307,41.68533347735353],[-87.62151637989659,41.68533766180687],[-87.62140397195104,41.685339207096895],[-87.6212390922403,41.68534147330529],[-87.62103118618658,41.68534468560461],[-87.62080443345613,41.68534606217868],[-87.6204966458712,41.68534793025147],[-87.62020485133007,41.685349166198684],[-87.6201992514957,41.68534923106995],[-87.62001339367897,41.6853513831821],[-87.61970799143124,41.68535491878127],[-87.61898440085234,41.68536447436375],[-87.61872748429636,41.68536671920509],[-87.6185042706192,41.6853702708414],[-87.61819301536573,41.68537341144025],[-87.61804992088199,41.685375219149726],[-87.61777531103874,41.685378687680895],[-87.61753784815299,41.68537967881826],[-87.61733156958722,41.685381330289616],[-87.61702259086496,41.685383823261],[-87.6167995493394,41.68538517664259],[-87.61668981527545,41.685386352255044],[-87.61652058931429,41.68538766386632],[-87.6159016694194,41.68539691976948],[-87.61559426160045,41.68539966816654],[-87.6149383665972,41.68540552950073],[-87.61469614801445,41.68540947636134],[-87.6143743160242,41.68541223585695],[-87.61412614986374,41.68541436323572],[-87.61359081673938,41.68542300457585],[-87.61315102253458,41.685426202980665],[-87.61285896102314,41.68542832587724],[-87.61251318013923,41.685431641076455],[-87.61238349532536,41.68543288393567],[-87.61232220738788,41.685433471488714],[-87.61227916267312,41.685433883943915],[-87.6125808132398,41.68398758067767],[-87.6125808399224,41.68398745323347],[-87.61261374709026,41.68382917429618],[-87.61282033456727,41.682949538247385],[-87.61289448360117,41.682578831793506],[-87.61301219152234,41.682241330310475],[-87.61316583431284,41.6815946300527],[-87.61326604850422,41.68114312869369],[-87.61337987127058,41.68062001668427],[-87.61347558589705,41.680202448034755],[-87.61352659057766,41.67997807496801],[-87.61367408126843,41.679307665326846],[-87.61376800723608,41.678885968627654],[-87.61386750650843,41.67845675978213],[-87.6139287203319,41.678178249716694],[-87.61405749673334,41.678157142202004],[-87.61412490367906,41.67815593500915],[-87.61452991573766,41.678148681416175],[-87.61480956474482,41.67814384369643],[-87.6151415685914,41.67813823474123],[-87.61544258498998,41.67813432486262],[-87.61576179714845,41.678130171041055],[-87.61598310411438,41.678127930067056],[-87.6162550983209,41.67812345270033],[-87.6165917796111,41.678117498253485],[-87.61670591399053,41.67811547937244],[-87.61677049529226,41.67811469704218],[-87.61677620656725,41.678114627543],[-87.61696266466566,41.67811235977847],[-87.61719345520075,41.67810887888655],[-87.61736990140217,41.67810603323695],[-87.61749734899107,41.67810397301057],[-87.61782081929962,41.678098623700556],[-87.61800849603696,41.67809551958867],[-87.61829018716439,41.67809134474914],[-87.61845672777102,41.67808945642012],[-87.6186965253676,41.6780867368481],[-87.61917403617983,41.678081197627186],[-87.61949704019167,41.67807502618142],[-87.61990160349181,41.67806923226023],[-87.62010658983581,41.6780659945121],[-87.6205095511068,41.678058746084574],[-87.62079290120003,41.67805364836171],[-87.62106397638249,41.67804940090412],[-87.62112311535765,41.678048356265045],[-87.62131931541525,41.678044890657794],[-87.62165145700273,41.67803997727383],[-87.62202677718402,41.678035366950176],[-87.62208522068603,41.67803464902755],[-87.62223732108242,41.67803100717528]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"2430723.09926","perimeter":"0.0","tract_cent":"1153851.04399656","census_t_1":"17031222700","tract_numa":"14","tract_comm":"22","objectid":"870","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1912412.82314688","census_tra":"222700","tract_ce_3":"41.91549621","tract_crea":"","tract_ce_2":"-87.71019563","shape_len":"6278.74075163"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71333577964262,41.91358995845301],[-87.71341692303012,41.91358940313929],[-87.7134198220632,41.91367894415034],[-87.71342910588648,41.913965683920104],[-87.71343943369564,41.914285177876295],[-87.71345622629799,41.9148074834788],[-87.71346331800086,41.91500716515687],[-87.71347323312975,41.91528633391277],[-87.71347616209901,41.91537765441756],[-87.71348024541476,41.915504977508405],[-87.713482829677,41.91558556181392],[-87.71348628592128,41.91571815428073],[-87.71349436880463,41.915999955255685],[-87.71349681335472,41.91608829838745],[-87.71350727362845,41.91643497838474],[-87.71351769639924,41.91675896364478],[-87.71351907510576,41.916795818420965],[-87.7135362262906,41.91725444283677],[-87.71352102204092,41.91732293689018],[-87.7135049974461,41.91732333584462],[-87.71337493478634,41.91732657797286],[-87.7128193430036,41.917331590057984],[-87.7122800926427,41.917337511110354],[-87.71190508384645,41.91734226153977],[-87.71177611029148,41.91734389496671],[-87.71093822053663,41.917353379365665],[-87.71027635453011,41.917360398816804],[-87.71002022514908,41.91736360312798],[-87.70912385759817,41.917375171479584],[-87.70892105524624,41.91737738605657],[-87.70867085026946,41.91738011737965],[-87.70835207683078,41.91738359680805],[-87.70754120473461,41.91739550861935],[-87.70716006269366,41.91740070298715],[-87.70704462903026,41.91740130065666],[-87.70696743870506,41.91740170013739],[-87.70696396732265,41.91730603490549],[-87.70694128647312,41.91650057976924],[-87.70693428497867,41.916251960944514],[-87.70691573517232,41.915578569606986],[-87.70690477102862,41.9151808202334],[-87.70688760950502,41.91467581084993],[-87.70687269237781,41.91423684316828],[-87.70686706448451,41.91407123294248],[-87.70685659942917,41.91377311030369],[-87.70685459549391,41.913716017155146],[-87.70702498261927,41.91366471732164],[-87.70753880366104,41.91366221634367],[-87.70772726958508,41.91365963382267],[-87.70806036341398,41.913655068607426],[-87.70837533854893,41.9136511302122],[-87.70854809519292,41.91364917352005],[-87.70869611562061,41.91364749666329],[-87.709169312724,41.91364161783888],[-87.70935962512426,41.913638050909725],[-87.70954615184404,41.913634554757074],[-87.70999724298649,41.91363124150205],[-87.71017982704791,41.91362974925801],[-87.71028178136085,41.9136289163975],[-87.71080648103506,41.91361996203012],[-87.71098247952041,41.913618644111935],[-87.71111684765158,41.91361763766791],[-87.7116160195195,41.91361180690541],[-87.71179831118961,41.91360954211937],[-87.71195910323267,41.91360754434629],[-87.71212114776678,41.91360542990799],[-87.71242759954276,41.913601406841515],[-87.71260746420693,41.9135991693594],[-87.71275205444579,41.913597370487096],[-87.71333577964262,41.91358995845301]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"22554284.2864","perimeter":"0.0","tract_cent":"1184485.42061146","census_t_1":"17031500200","tract_numa":"28","tract_comm":"50","objectid":"871","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1834447.92829295","census_tra":"500200","tract_ce_3":"41.7008888","tract_crea":"","tract_ce_2":"-87.60009269","shape_len":"20304.368277"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5979200817271,41.693060968744106],[-87.5980407086699,41.69283530052859],[-87.59823889163648,41.69246453613381],[-87.5982904058567,41.692368160956285],[-87.59830533675425,41.692372780481016],[-87.59851394914966,41.692435143504916],[-87.59867339533146,41.692483989160806],[-87.59884317393889,41.69253324504629],[-87.59909704860401,41.69260689830113],[-87.59933224243181,41.69266614141086],[-87.59999841492765,41.69279827045808],[-87.60006594617568,41.69281166420776],[-87.60019560458224,41.69282561262147],[-87.60035692891506,41.69284296713991],[-87.60059393409182,41.69285747732323],[-87.60086234532055,41.69287390980979],[-87.60100590307141,41.69288269846661],[-87.60176591607895,41.6928783181377],[-87.60191052490497,41.69287681947378],[-87.60235649842829,41.69287219657374],[-87.60242843967701,41.692870778946045],[-87.60313765236565,41.69285679966262],[-87.6041504810742,41.69283661059405],[-87.6047094939611,41.69283115480625],[-87.60512899779242,41.692826413144914],[-87.60534072253274,41.69282401924697],[-87.60536907133617,41.69282369880796],[-87.60556286125298,41.69282118485434],[-87.60577562077876,41.69281842457695],[-87.6059927001767,41.69281568301329],[-87.60612881459059,41.69281396391198],[-87.60640071463379,41.692810360407115],[-87.6066377845668,41.69280771553167],[-87.60701098924396,41.69280469596852],[-87.60720479990295,41.69280361575886],[-87.6074332500524,41.69280234182937],[-87.60756779345535,41.6928002826038],[-87.60782457569002,41.69279636043378],[-87.6080876372163,41.69279077583292],[-87.60826803890504,41.692787193922975],[-87.6084128242434,41.6927860216251],[-87.60864871380939,41.692784106398285],[-87.60878574150331,41.692782527948296],[-87.60898286408117,41.69277995596425],[-87.6090915089167,41.69277899382991],[-87.60927616164935,41.69277735019976],[-87.60963229387008,41.69277417860612],[-87.60965465340482,41.69277397938745],[-87.60986050403471,41.69277120783212],[-87.60983008509132,41.69290672948314],[-87.6098013508193,41.69303344639289],[-87.60975778865694,41.69323194392984],[-87.60970540709292,41.69343979868626],[-87.60965901157752,41.693619864153085],[-87.60959453397604,41.6938974586885],[-87.60952671387588,41.694195504818055],[-87.60947919396179,41.694402738001884],[-87.60941768903038,41.69467095920484],[-87.6092979744672,41.69519832368616],[-87.60924618315339,41.69542509057577],[-87.60920179266299,41.69561875257739],[-87.60907543227272,41.696167041526756],[-87.6090116023008,41.69644447530143],[-87.6089424757832,41.696744927446844],[-87.60884118605533,41.69719595041766],[-87.6086933646367,41.69784833304754],[-87.60860845719638,41.69821814487825],[-87.60855434196077,41.698453842906936],[-87.60841457826379,41.69906966652555],[-87.60837504732201,41.699244285386804],[-87.60832270335942,41.69947398490935],[-87.60827749523682,41.69972206069928],[-87.60826256874574,41.6998039675492],[-87.60819937219075,41.70008219148239],[-87.60814838480232,41.70030666629443],[-87.60807947131143,41.70054432914346],[-87.60794421131065,41.70112680937377],[-87.60779598946867,41.701777321709436],[-87.6077600013796,41.701933822923074],[-87.60764110191607,41.702451777085784],[-87.60760624486976,41.70260304371322],[-87.6075526624905,41.702838195854866],[-87.60749723109124,41.703081459484515],[-87.60741091153952,41.70350197600286],[-87.6073535461527,41.70375670106349],[-87.60732958072546,41.70386311562661],[-87.60722470091707,41.70427313482766],[-87.60713713927198,41.704656982871334],[-87.60713350173212,41.704672928557876],[-87.60701013813973,41.70521371326574],[-87.6069238111139,41.70559188429179],[-87.60683024563399,41.70600176128828],[-87.60671998099522,41.706509066114236],[-87.60663180245868,41.70691475040997],[-87.6065175045448,41.70743344610845],[-87.6051898435275,41.707466452492206],[-87.6046574729951,41.707475317634376],[-87.60454036907775,41.70747726445303],[-87.60401496112475,41.70748573278074],[-87.60315978070547,41.70749951126307],[-87.60284801298526,41.707504274024515],[-87.60281197722139,41.70750482433557],[-87.60246456671898,41.70751013062161],[-87.60159914127335,41.707523037571555],[-87.60081029800214,41.70753557546119],[-87.59972852560429,41.70755326346376],[-87.59889870636052,41.70756849077606],[-87.5981321497064,41.7075791707622],[-87.59807515569962,41.70757996476408],[-87.59741648359064,41.70759108925133],[-87.59658926597284,41.70760523939721],[-87.59631610968046,41.70760960297525],[-87.59629501639546,41.70760993998692],[-87.59625413968834,41.70761059276161],[-87.59600204737654,41.70760897552594],[-87.59524075771719,41.707618620860835],[-87.59479458291922,41.70763028650738],[-87.5942855509632,41.70762701390373],[-87.5941773875945,41.70762940091978],[-87.59339324253574,41.70764670310213],[-87.59336903198057,41.70764716220901],[-87.59253490985972,41.70766297146732],[-87.59248715680398,41.7076633082573],[-87.59197920890055,41.70766665392395],[-87.59150706778118,41.70766360700091],[-87.59083388282971,41.707687273338195],[-87.5906340241625,41.707694298752564],[-87.58902392785656,41.70773474428679],[-87.58746268659674,41.70774278660213],[-87.58729978537455,41.70774655558627],[-87.58729868350478,41.70768902224376],[-87.58729619288046,41.70755898424468],[-87.58731534136456,41.70731233944662],[-87.5873410426282,41.70716727652416],[-87.58741296317652,41.706907965902204],[-87.5875057661256,41.70667327010773],[-87.58766815920849,41.70642515216348],[-87.58784501730462,41.70593582560849],[-87.58811662580798,41.70518410778265],[-87.58814261398759,41.70511218048649],[-87.58835955084703,41.70496062344409],[-87.58864674748868,41.704706788410626],[-87.58901338004169,41.704384259201596],[-87.58917679117017,41.704240503702636],[-87.58938026264143,41.70405998694881],[-87.58958411183946,41.70387913362233],[-87.58968441025941,41.70378557558997],[-87.59002781064157,41.70346525120384],[-87.5903898840187,41.7031271869821],[-87.59079729441385,41.702747261458875],[-87.59099055568639,41.70256732978999],[-87.59122606684357,41.70234694486697],[-87.59139309120427,41.70219036192809],[-87.59163422865485,41.70196370464501],[-87.59186438275061,41.70174736873453],[-87.59205441784167,41.70156082804021],[-87.59222487133678,41.701389336857815],[-87.59241143269747,41.70119901343072],[-87.5925698147735,41.70103581408323],[-87.59271744916836,41.70088053123128],[-87.59287837273592,41.70070310477929],[-87.59307047261399,41.70048932451637],[-87.5931326540944,41.700419297161794],[-87.5933254434195,41.70020218133069],[-87.59368755777203,41.69979031154415],[-87.59415872516526,41.69920130400629],[-87.59436552781358,41.69897584429199],[-87.59475034726728,41.69839690634783],[-87.5947766864819,41.69836000307262],[-87.59482326148898,41.69828718640288],[-87.59570737985085,41.696957125684435],[-87.59616655624002,41.696317683243834],[-87.59640624313239,41.69587285234359],[-87.59660417404126,41.69552073433978],[-87.59675096157886,41.69525943581392],[-87.59679781770585,41.695176025621386],[-87.59697013587635,41.694851295834326],[-87.59700628142535,41.69478050532143],[-87.59724716531645,41.69430873309066],[-87.59752388411266,41.69379297972237],[-87.5979200817271,41.693060968744106]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3498343.9947","perimeter":"0.0","tract_cent":"1185725.15319317","census_t_1":"17031390600","tract_numa":"12","tract_comm":"39","objectid":"872","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1872770.8866654","census_tra":"390600","tract_ce_3":"41.8060217","tract_crea":"","tract_ce_2":"-87.59434798","shape_len":"7870.62685638"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59638982061252,41.80236932835207],[-87.59670681831106,41.80236586284671],[-87.59671051843789,41.80268961167873],[-87.59671353579513,41.80290008964451],[-87.59671528329366,41.80304653547618],[-87.59671604349265,41.803110235295634],[-87.59672061741011,41.803402529847865],[-87.59672571917334,41.803648806523114],[-87.59672590884685,41.80365728755463],[-87.59673120242805,41.80389376838126],[-87.59673733017534,41.804180994848146],[-87.59674194166193,41.804397137563186],[-87.59674491812878,41.80459518363271],[-87.59674663648755,41.80475897278613],[-87.5967497435881,41.80495839181902],[-87.59675356895404,41.805127189604114],[-87.59675582365728,41.8052793467258],[-87.59675639503142,41.80532232575174],[-87.59675856061122,41.805469487714646],[-87.59676150115044,41.80561627044434],[-87.5967650429499,41.80575218969353],[-87.5967678394027,41.806002814884394],[-87.5967700201853,41.80619822129232],[-87.59677293247016,41.80640504857013],[-87.59677792210927,41.80661630744402],[-87.59678254570123,41.8068338757961],[-87.59678568933546,41.80703334987703],[-87.59678840999777,41.807205707800996],[-87.59679180215248,41.8074283177009],[-87.59679951062085,41.80782545849187],[-87.59680356647847,41.80803438390671],[-87.59680651354803,41.80815495878986],[-87.5968086139425,41.808240511572144],[-87.59681211951447,41.808440481620046],[-87.59681450814864,41.80865784347376],[-87.59681632755817,41.80882242927417],[-87.5968243989611,41.80917048271958],[-87.59682845648884,41.809345455937176],[-87.59683236966737,41.80964152315562],[-87.59648587710582,41.80964496440533],[-87.59602195368873,41.809650275265795],[-87.59561385898498,41.80965550372794],[-87.59534893817388,41.80965851724607],[-87.59518984950354,41.80966032660348],[-87.5950916052696,41.80966145076172],[-87.59471227893802,41.809665791461555],[-87.5943108676697,41.8096703447574],[-87.59392171308853,41.809674426417814],[-87.59355313885753,41.80967828337052],[-87.5932227645921,41.80968079276974],[-87.59293276727591,41.80968402800562],[-87.59255530839523,41.809685381810894],[-87.59243235061106,41.80968560802832],[-87.59222522598256,41.809509814579464],[-87.59218803774135,41.80947901935194],[-87.59213191281145,41.80943254353824],[-87.59207851371178,41.80938832433971],[-87.5920212989366,41.809340945707724],[-87.59196965598618,41.809298180456196],[-87.59196983522787,41.809053522739525],[-87.5919698827569,41.808715401049575],[-87.59196665371088,41.80863931442062],[-87.59196368166896,41.80856928331803],[-87.59195747532135,41.80827124280167],[-87.59195315222361,41.80806363771658],[-87.5919487535862,41.80787613778879],[-87.59193950348613,41.8074818183174],[-87.59193646216026,41.80728113732324],[-87.59193167722162,41.807069440526355],[-87.5919274762845,41.80681663825234],[-87.59192362609072,41.806552504375034],[-87.59191997906771,41.80634709928592],[-87.59191603280831,41.806054270899],[-87.59191143910446,41.805713445880365],[-87.59190834868978,41.80550755038438],[-87.59190607469357,41.80536121093211],[-87.5919040386176,41.8052625685233],[-87.59190304069551,41.805207621682904],[-87.59189824253396,41.80500341659726],[-87.59189342486385,41.80476279483712],[-87.59189013894968,41.804605608944335],[-87.59188226806326,41.80423546891155],[-87.59187770035247,41.80402066853029],[-87.59187486341729,41.803792765513506],[-87.59187388882928,41.80371314749039],[-87.59187206849295,41.803564368789175],[-87.59186854572282,41.80338319635765],[-87.59186431166829,41.803149164560786],[-87.5918634011103,41.80309723696848],[-87.59186123592357,41.80297375798281],[-87.59185713143484,41.802763547328766],[-87.5918548099528,41.80264042408308],[-87.59185231662885,41.80242134306179],[-87.5921741285385,41.80241657589734],[-87.59251789090611,41.80241390853174],[-87.59274464955793,41.802411748235045],[-87.5930724373192,41.80240765896638],[-87.59347482733298,41.80240329597278],[-87.59369638139019,41.802400893082755],[-87.59403271279024,41.80239696585465],[-87.59427350132817,41.80239629241402],[-87.59427848967579,41.802396229830094],[-87.59452279018508,41.80239317584706],[-87.59474984681876,41.802390574423484],[-87.5950939020369,41.802384773303295],[-87.59532016604042,41.80238095762741],[-87.59559413119979,41.802378436352825],[-87.59585888620744,41.80237629438084],[-87.5958967061888,41.80237571993082],[-87.59613195305936,41.802372146932626],[-87.59638982061252,41.80236932835207]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5309752.83978","perimeter":"0.0","tract_cent":"1178649.15169872","census_t_1":"17031400800","tract_numa":"15","tract_comm":"40","objectid":"877","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1864271.80732596","census_tra":"400800","tract_ce_3":"41.78286345","tract_crea":"","tract_ce_2":"-87.62055834","shape_len":"9299.14643033"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61575564668946,41.78554532982618],[-87.61574709259709,41.785184457576854],[-87.61574347787159,41.78503196242117],[-87.61573856006905,41.78483181802582],[-87.61573724696898,41.78476869149745],[-87.61573043677146,41.784508051458616],[-87.6157244310112,41.78428375079572],[-87.6157205602292,41.78414426193817],[-87.61571349624123,41.78388422814491],[-87.61570511932327,41.78357582355877],[-87.61570137631593,41.78337881521301],[-87.6156964358597,41.783134652516715],[-87.61569086053302,41.78289152867349],[-87.61568592537435,41.782676455442164],[-87.6156797740562,41.78240939778901],[-87.61567592921904,41.7822412584044],[-87.61567192978747,41.78207366745559],[-87.61566872237272,41.78193924919282],[-87.61566872174045,41.781939240132715],[-87.61566768308239,41.78189570127276],[-87.61566039467263,41.78162866392243],[-87.6156516969339,41.78131046421554],[-87.61564406665673,41.78103134983133],[-87.61563677655968,41.7807644768125],[-87.61563483330492,41.78069467795475],[-87.61563161968567,41.78057920536831],[-87.61562764608635,41.78044478914427],[-87.61562233042915,41.78023913842987],[-87.61627322583898,41.7802259125616],[-87.61643536363451,41.78022409070651],[-87.61673991461416,41.78021888307383],[-87.61695682258724,41.7802151863659],[-87.6171768517927,41.780211022417504],[-87.61734905983546,41.78020776311743],[-87.61758727917851,41.78020325400055],[-87.61780379052888,41.78019898076331],[-87.61783540606314,41.780198356854825],[-87.61787475019136,41.78019758018758],[-87.61807075009548,41.78019375500609],[-87.61809693372466,41.78019324430018],[-87.6184331482932,41.78018692329739],[-87.61885546964002,41.780181122862075],[-87.61895708014114,41.780179726997744],[-87.61924588856998,41.780175759254426],[-87.61947852546123,41.780171990893614],[-87.61970345981553,41.78016850352985],[-87.61999181287709,41.780159234878056],[-87.62010157093829,41.780153851467404],[-87.62041213860667,41.7801082914264],[-87.62055250137976,41.780087699842895],[-87.62065027580964,41.78007572002578],[-87.62083422514372,41.780057599950894],[-87.62106315536236,41.78004752096802],[-87.62150322393353,41.78004143937087],[-87.62167678697169,41.7800402517206],[-87.62175790938309,41.78003969656653],[-87.62197559117652,41.78003550394519],[-87.62208703152508,41.78003335743583],[-87.62215441581036,41.78003205914104],[-87.62219888442449,41.78003120266934],[-87.62248026495925,41.780025781774064],[-87.62292954006767,41.780019285149265],[-87.62326946452293,41.780014580808675],[-87.62354198543916,41.780011325153026],[-87.62369798465166,41.780011764164094],[-87.62396624464913,41.78001251858107],[-87.6242214795466,41.780020790364745],[-87.62445283485621,41.780033442313844],[-87.62473182781275,41.780048390969476],[-87.62480273424538,41.78004850090758],[-87.62510255174963,41.78006017225451],[-87.62537484909602,41.78005828631048],[-87.62536999287745,41.780302055798444],[-87.62536597341008,41.78044745094098],[-87.62535705931973,41.78079789667599],[-87.62535502153166,41.7811731382554],[-87.62536105253804,41.78158147077705],[-87.62537101761613,41.78188318609018],[-87.62538289104648,41.78224267713434],[-87.62539766191398,41.78291978417656],[-87.62540251006283,41.78313948583736],[-87.62540406584021,41.78320997753247],[-87.62540925962037,41.783445359430914],[-87.62541653340121,41.783712780528674],[-87.6254233579707,41.78396367768287],[-87.62544798816575,41.78489205709125],[-87.62545829302181,41.785281013845584],[-87.62546552281138,41.78553702850411],[-87.62509940998488,41.78553327966956],[-87.62474227213802,41.785540187580686],[-87.62465839938102,41.7855418096626],[-87.62409026986772,41.785552795332414],[-87.62385025448256,41.78555595360054],[-87.62327548730501,41.785563514382595],[-87.6230450044009,41.78556794368464],[-87.6226704289655,41.78557514102259],[-87.62223031495726,41.78558278055967],[-87.62191751363176,41.785588209027296],[-87.62142765961671,41.78559675344795],[-87.62134165918381,41.78559825316993],[-87.62086255072738,41.78560658926976],[-87.620647114052,41.78561427123622],[-87.62061309574226,41.785615484201195],[-87.62022532177856,41.785629309968776],[-87.61980452708106,41.78563637351082],[-87.61971335655447,41.7856379038435],[-87.61920227147507,41.785646473464524],[-87.61899446312721,41.78564952211372],[-87.61845209094683,41.78565747753707],[-87.61818049880937,41.78566146397266],[-87.61807144901016,41.78566306446795],[-87.61803721045686,41.78566356699827],[-87.61752733131628,41.785672465989215],[-87.61737874253794,41.78567465097576],[-87.61693484354869,41.78568117690912],[-87.61657424532683,41.78568686301344],[-87.616359951815,41.78569024157763],[-87.61591637902468,41.78569468983226],[-87.61575954154117,41.78569891455305],[-87.61575564668946,41.78554532982618]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"5868951.45129","perimeter":"0.0","tract_cent":"1167495.89566598","census_t_1":"17031010400","tract_numa":"20","tract_comm":"1","objectid":"873","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1945047.70566806","census_tra":"010400","tract_ce_3":"42.00476456","tract_crea":"","tract_ce_2":"-87.65912243","shape_len":"14845.1532388"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6589339286957,42.009755520996286],[-87.65890012733507,42.00974772018789],[-87.65884256989298,42.00974851204598],[-87.65884143017601,42.009748527576804],[-87.65884142615485,42.00974852508342],[-87.65878976976781,42.00971018934773],[-87.65875165936079,42.00965011501747],[-87.6587439044525,42.009639939289386],[-87.65871115734762,42.00959696885358],[-87.65866119889473,42.00954028280401],[-87.65850090120561,42.00938883906551],[-87.65841463182952,42.00930733398019],[-87.65833073337147,42.00924946113699],[-87.6583119123304,42.0092364783158],[-87.65831187116649,42.009236439106324],[-87.65829391037983,42.009219456204974],[-87.65827217900892,42.0091989081104],[-87.65811555081012,42.0090508047722],[-87.6579369709708,42.00886775961619],[-87.65787896235305,42.00880811427479],[-87.65787276362072,42.00880174065481],[-87.65780855529052,42.008735722474455],[-87.65773294687911,42.00866213264092],[-87.65764616038825,42.00857766212921],[-87.65751869308762,42.00845350577445],[-87.65741545518392,42.00837466725904],[-87.65733838507857,42.00831581140947],[-87.65726292800603,42.00824404593841],[-87.65718462391253,42.008169573523155],[-87.65704351776724,42.00805310645171],[-87.65698032509296,42.008000947250636],[-87.65684650115959,42.00785136129758],[-87.65683959752128,42.00784364485365],[-87.6567448555479,42.00768013651894],[-87.65666409570872,42.00760291386527],[-87.65664257399179,42.00758233458688],[-87.65649173474962,42.00745007731494],[-87.65645956813684,42.007421873359206],[-87.65645955096107,42.00742186228118],[-87.6563650193026,42.00735922724237],[-87.65613972080757,42.0072099472427],[-87.65602232885705,42.00713546322632],[-87.65573984817566,42.00695646714806],[-87.6556024169036,42.00686151325811],[-87.65554775928572,42.00682374942756],[-87.65551446648041,42.00680385755086],[-87.65544194952264,42.006760529751254],[-87.65538708062634,42.00672324126093],[-87.65537108773515,42.00670922281105],[-87.65537071662874,42.00670889762867],[-87.6550958877781,42.006921821306335],[-87.65506225830967,42.006899444097066],[-87.65534211315351,42.006681775852726],[-87.65583999515472,42.006310617535],[-87.65584442368592,42.00630731579973],[-87.65669254547481,42.00629208851881],[-87.65739408847317,42.00627948773577],[-87.65741206116583,42.00620132968593],[-87.65741510924356,42.00580566330445],[-87.65742047155237,42.00564559087846],[-87.65742145581662,42.00561621468197],[-87.65741442233598,42.00557343916557],[-87.65741442164082,42.00557343531962],[-87.65741125244813,42.00555416455131],[-87.65738242954535,42.00537888753242],[-87.65736416846973,42.00529926502828],[-87.6573429081842,42.005206565827784],[-87.65731198417393,42.00507172734973],[-87.65712205894204,42.004720944256334],[-87.65709832609404,42.00467479213379],[-87.65707169737065,42.00462300971335],[-87.65707031445983,42.00462157431507],[-87.65705340673101,42.00460411278912],[-87.65704567584757,42.00459612831255],[-87.65704556921146,42.004596122470346],[-87.65703202163687,42.00459538102932],[-87.6570220713764,42.00459483668376],[-87.65702206880401,42.00459483639419],[-87.65702583049776,42.00453146813979],[-87.65696772778352,42.004417516777316],[-87.65693904029138,42.00438060885281],[-87.65687723746653,42.004301096302456],[-87.65684514705067,42.004272152509124],[-87.65683292227314,42.004261126771034],[-87.65682273411055,42.004250363578684],[-87.65682273342127,42.00425035918393],[-87.65682123477455,42.00424213782633],[-87.65674350622426,42.00424264620457],[-87.65674423348501,42.004296273256195],[-87.65671249848464,42.00429608619841],[-87.65671075227337,42.00421636608561],[-87.65682484317652,42.0042145100471],[-87.657286867038,42.00421221020655],[-87.65728924752415,42.00392479763081],[-87.65727427615528,42.00388475877147],[-87.65727200167892,42.00387867660804],[-87.6572688162528,42.003864564804694],[-87.65724929918258,42.003778105683196],[-87.65724325679061,42.00374356799029],[-87.65724325575955,42.00374356112375],[-87.65723753876323,42.003710885905136],[-87.65723747161653,42.003710833918944],[-87.65722413754271,42.003700474013456],[-87.65719728805718,42.00367961207849],[-87.65711415740749,42.00356312590805],[-87.65705491382127,42.003418212605716],[-87.65705057371629,42.003407596123104],[-87.65703898969579,42.003379261383245],[-87.65697509174379,42.00320122654853],[-87.65700521276086,42.00312934168709],[-87.65699633913242,42.00311890787208],[-87.65699507053873,42.00311741606704],[-87.65698053784723,42.00310032745975],[-87.6569429410911,42.00300756701941],[-87.65691908386661,42.00294870523759],[-87.65687512608989,42.00275344457476],[-87.65688090145684,42.002733798674605],[-87.6568811655707,42.00273290013781],[-87.65689779660329,42.00267632986535],[-87.65689765268844,42.00264604746597],[-87.65689748884533,42.00261156798987],[-87.65689747283407,42.00260825154585],[-87.6568974319449,42.00259957281441],[-87.65689739679564,42.002599487263076],[-87.6568802709568,42.00255769144288],[-87.65686508288248,42.00252062402201],[-87.65668423075456,42.00229014380174],[-87.6565894998914,42.00215075693727],[-87.65656307306911,42.00212401023718],[-87.65653338836906,42.00211299540661],[-87.65650432494846,42.00208859314819],[-87.6565042176375,42.00208854723636],[-87.6564511441659,42.002066151816],[-87.65644542813335,42.00206373999751],[-87.65630393600318,42.001775177553746],[-87.65624525771085,42.0016397672293],[-87.6562209136683,42.00158358788014],[-87.65618671900732,42.001504677942116],[-87.6561186937859,42.001362402159664],[-87.65604213422769,42.00122002082097],[-87.65599275092916,42.001096131236785],[-87.65596512017878,42.000933210436884],[-87.65599384864039,42.00086476703912],[-87.65600354315968,42.00084167153325],[-87.65600613627497,42.00083815479046],[-87.65603799531189,42.000794949210395],[-87.65601322261719,42.0006867857821],[-87.65600701864601,42.00065969752295],[-87.65589981778547,42.000353911533665],[-87.65577629424958,42.00000897874272],[-87.65576182524781,41.99995779024732],[-87.65575516076413,41.99993421181367],[-87.65572678390228,41.999860857639675],[-87.65571899466423,41.99984072310606],[-87.6557111163864,41.99981521520062],[-87.65567620692234,41.99970219198421],[-87.65566918930361,41.999677054407606],[-87.65565083009791,41.99961129104923],[-87.65562193758507,41.99955011772207],[-87.65541841558701,41.99926266942684],[-87.6553242786463,41.99913250433797],[-87.65530797566215,41.99910996195539],[-87.65526037737932,41.99908158031187],[-87.65523284519516,41.99906871153401],[-87.65521399596443,41.99905990138215],[-87.65513545206403,41.9989594986877],[-87.65509069708943,41.998902287961656],[-87.65493357476134,41.998669776884725],[-87.65489246181144,41.99860935412567],[-87.65488166268699,41.99859218467516],[-87.65482567666399,41.99850317092272],[-87.65475551420846,41.99841370753931],[-87.65469465205034,41.9983423278656],[-87.65463297594295,41.99827925247519],[-87.65459595309191,41.99824138906642],[-87.65456509667153,41.99818342580076],[-87.65456399658044,41.998181358958966],[-87.65455590024236,41.9981661505395],[-87.65573692712832,41.99817521036349],[-87.65577334679004,41.99819571120495],[-87.65580429072173,41.998209148280814],[-87.65584690993654,41.998221337044924],[-87.65591636008372,41.99823236692356],[-87.65600350939368,41.998236174212565],[-87.6560741552885,41.99823505429525],[-87.65636459402238,41.998232444578704],[-87.65646687609598,41.99823152553103],[-87.65651856917403,41.998231306463005],[-87.6569001933415,41.9982296890747],[-87.65706259349979,41.99822754034398],[-87.65720871014723,41.99822560666483],[-87.65739786382197,41.998223455050095],[-87.65776516965244,41.99821934272135],[-87.6580757761943,41.9982158643961],[-87.65853312293228,41.99820999195874],[-87.65865677859993,41.99820864172756],[-87.65882397101221,41.99820681668949],[-87.65916099053558,41.998203488156754],[-87.65917658573,41.998203828644954],[-87.65921450454178,41.99820366056],[-87.65928561238408,41.99820334542608],[-87.6593269666849,41.99820316235136],[-87.65943154831636,41.99820269872233],[-87.65954846357697,41.998202180337074],[-87.65972813840732,41.99819881640998],[-87.65975967220373,41.9981982259415],[-87.66005286300002,41.99819273615337],[-87.66027926704575,41.99819214292013],[-87.66046824669824,41.99819004422487],[-87.66052828702716,41.99818937750205],[-87.66054502343871,41.998189191571626],[-87.66055051651789,41.99824729327565],[-87.660581730677,41.998437436933436],[-87.66060801825239,41.9985697374089],[-87.66060964876688,41.998610461396574],[-87.66061678410941,41.99878865677199],[-87.66064820113709,41.998914764843114],[-87.66064848337463,41.99891517785094],[-87.66065980221983,41.99904166922593],[-87.66067334879297,41.99944253761816],[-87.66069019438275,41.99989710108593],[-87.66070489551906,42.00026951922569],[-87.66070671904656,42.00031571404678],[-87.66071191177015,42.0004385191708],[-87.6607190463089,42.000607259380274],[-87.66072144359764,42.000663951334836],[-87.66072854434888,42.00083188646899],[-87.66072808471637,42.00085970490034],[-87.66072808231024,42.0008598635003],[-87.66072620535398,42.00097352773555],[-87.66072468477886,42.001065613764915],[-87.66074162795303,42.00140610207135],[-87.66074550488707,42.00153235768634],[-87.66075077801449,42.00170406467343],[-87.66076540781354,42.00212796240089],[-87.66077523624132,42.00241396455782],[-87.6607825209616,42.00255107718502],[-87.66079043528761,42.00270002533365],[-87.66080156082508,42.003093415087484],[-87.6608116428275,42.00342170604608],[-87.66081605172967,42.003544561666175],[-87.6608209642556,42.00368122376636],[-87.66082666456626,42.00383992574623],[-87.66084232604912,42.004368602654864],[-87.66084819748892,42.00453202561758],[-87.66085040105995,42.00459336779184],[-87.66085160781725,42.004617163112414],[-87.66085295834213,42.004643797037865],[-87.66085857328079,42.00478927178819],[-87.6608901881153,42.00538576856655],[-87.66091970708787,42.005540058245465],[-87.66094204501185,42.0056568136887],[-87.66102332399991,42.00594655435518],[-87.66111910187152,42.006222164979654],[-87.66122819778032,42.00656088742514],[-87.66129501638102,42.006766789015366],[-87.66136426306029,42.00698017225006],[-87.66148919209431,42.007359985213675],[-87.66161411990967,42.007740017546126],[-87.66168650595549,42.00796128677599],[-87.66169224993737,42.00797884447289],[-87.66177332475155,42.00822666973247],[-87.66191980974398,42.008670465429184],[-87.6620352997124,42.0090177587886],[-87.66208870876669,42.00918304981747],[-87.66215532043284,42.00938919988088],[-87.66232046000347,42.00989657702705],[-87.66243952148305,42.01026510332849],[-87.66248525604023,42.01040127932695],[-87.66253164554436,42.01053940146466],[-87.66260387270339,42.01076034609906],[-87.66273797232573,42.011165265453634],[-87.66284204327552,42.01148301862802],[-87.66286457210458,42.01155219386307],[-87.66288795568323,42.01161251202143],[-87.66294607625132,42.011762435237436],[-87.66319758832982,42.0122980315887],[-87.6633931969433,42.01271211798932],[-87.66345338494236,42.012829933982616],[-87.66326156669645,42.01283198391055],[-87.66225546805663,42.01285206623851],[-87.6613492179846,42.012863476712326],[-87.66128683018316,42.01286994584487],[-87.66128682662789,42.01286993402405],[-87.66126642624926,42.01279688437368],[-87.661249124241,42.012773046442135],[-87.66124899441293,42.012773040193615],[-87.66120691163876,42.01277109348933],[-87.66119071922638,42.01277034418566],[-87.66119071974353,42.012770295067824],[-87.6611909945521,42.01275121912257],[-87.6611968478692,42.01269337777187],[-87.66119690700458,42.012692793881754],[-87.66119690867572,42.01269277495668],[-87.66117611269733,42.01258842941513],[-87.6611434253484,42.01252225825398],[-87.6611317249398,42.012498571655684],[-87.66110755976209,42.01246309055802],[-87.66105178720869,42.01238120133202],[-87.66100258925457,42.01232150217643],[-87.66097643310134,42.01228976288119],[-87.66094144231427,42.012244059372506],[-87.66093785854476,42.012236245724594],[-87.66093352909459,42.0122268069943],[-87.6609357627057,42.01221904690745],[-87.66093867239418,42.01220893462589],[-87.66093868574335,42.01220888997391],[-87.66107364906382,42.01216758500535],[-87.66102639574719,42.01204585073228],[-87.66101660187695,42.01202960900322],[-87.66101438965973,42.012025940245934],[-87.66099896785806,42.01200598395608],[-87.66096973789095,42.01196816063792],[-87.66091203074558,42.01189927291954],[-87.66079872847985,42.01176559366087],[-87.66078783994023,42.011752746912265],[-87.66064315745707,42.01161990364429],[-87.66052116728297,42.01153708272062],[-87.66046810825388,42.011502002909246],[-87.66042449048113,42.01147317341375],[-87.66038424482173,42.01144657273831],[-87.66028620670845,42.011364001751026],[-87.66017626123491,42.01126432852993],[-87.66016960986924,42.01125829842305],[-87.66016747848002,42.01125653293945],[-87.66014735817183,42.01123986395126],[-87.66013912670726,42.01122494247918],[-87.66013907893051,42.01122151718439],[-87.66013904282285,42.01121890451056],[-87.66025981268686,42.01116345879834],[-87.66027801518847,42.01115510192289],[-87.66027803071714,42.011155094879065],[-87.6602780325684,42.01115509379223],[-87.66023850018115,42.01111157551757],[-87.66012016924584,42.01098131223188],[-87.66008371791544,42.01095249252869],[-87.66003222470242,42.01091178048027],[-87.65992808016476,42.0108282255217],[-87.65984964218319,42.01076529509979],[-87.6597622760629,42.01068629882738],[-87.65961181853203,42.01056409522502],[-87.65954264102238,42.010505018540115],[-87.65951422584325,42.01048190186208],[-87.65942569226462,42.010409876660866],[-87.65942565286365,42.010409844597014],[-87.65921663401097,42.010239800046726],[-87.65911165802379,42.010110617959384],[-87.65908592489532,42.01007578883716],[-87.6590517287359,42.010029505169456],[-87.6590312918186,42.01000183708287],[-87.65901596015794,42.00998108002354],[-87.65889695754693,42.009849208634385],[-87.65888310136158,42.00981644427021],[-87.65889015657105,42.009782512733445],[-87.65892328238974,42.009771711970075],[-87.65893058677611,42.00976933067409],[-87.6589306555995,42.009769329157514],[-87.65895417679621,42.009768865824064],[-87.65895416065122,42.00976875705955],[-87.65895283737648,42.009759884749364],[-87.6589339286957,42.009755520996286]]]]}},{"type":"Feature","properties":{"tract_cens":"2000","tract_fips":"17031","shape_area":"3519784.20102","perimeter":"0.0","tract_cent":"1163551.32758341","census_t_1":"17031242200","tract_numa":"18","tract_comm":"24","objectid":"874","tract_cr_1":null,"data_admin":"0.0","tract_ce_1":"1906688.67018591","census_tra":"242200","tract_ce_3":"41.8995898","tract_crea":"","tract_ce_2":"-87.67471913","shape_len":"7961.80945656"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.67668975918147,41.8959187805467],[-87.67705236078739,41.89591164182322],[-87.67706335960744,41.89630434124546],[-87.6770656813534,41.896382440989306],[-87.67706611900502,41.89639716715165],[-87.67707273321254,41.89661929614386],[-87.677077849358,41.8968315095925],[-87.67708474799561,41.89711763609442],[-87.67709115906142,41.89730225016714],[-87.67709429480045,41.89739420005142],[-87.67709721818872,41.897478190431386],[-87.6771044461022,41.89773119748142],[-87.67711292882908,41.89802811564775],[-87.67711616826122,41.8981386445996],[-87.6771215507835,41.89832328020308],[-87.6771256064069,41.89846172270577],[-87.67713045473562,41.898645943336],[-87.67714044180369,41.89902541889372],[-87.67714337195993,41.899126697980265],[-87.67714891662426,41.89931344754011],[-87.67715556846696,41.89955146329242],[-87.6771673316625,41.89997238910491],[-87.67717014101945,41.90007471029394],[-87.67717471869473,41.900241146947565],[-87.67718139328701,41.90046464825053],[-87.67718878187311,41.90071169917055],[-87.67719292605899,41.90085941763827],[-87.67719607651648,41.90097148279807],[-87.67720202617919,41.90118331692699],[-87.6772060080956,41.90137322653253],[-87.67721036825327,41.901581196461876],[-87.67721330982249,41.90168137787324],[-87.67721494152633,41.90173731471969],[-87.67721903645212,41.90187553782388],[-87.67722699477635,41.90214586277957],[-87.67723016723743,41.902255787810255],[-87.67723334344824,41.90236538327754],[-87.67724324803972,41.902699253040524],[-87.67725277078179,41.90302249163065],[-87.67725780382375,41.903191126461074],[-87.67699885623159,41.90319551908085],[-87.67626038115445,41.903207102614644],[-87.67603942258792,41.903210942330126],[-87.67559456626867,41.90321865853466],[-87.67542416549924,41.90322139723915],[-87.67506337613834,41.90322719536918],[-87.6748220534164,41.90323018383987],[-87.67458165613803,41.90323315954924],[-87.67393099056659,41.90324325595664],[-87.6738202599522,41.90324459946071],[-87.67359424347677,41.90324734120651],[-87.67338905713142,41.90324982982978],[-87.67328765366761,41.90325149453574],[-87.67299538386594,41.90325629333523],[-87.67286726970364,41.903258400936764],[-87.6725380392681,41.90326381611199],[-87.672380601107,41.90326672423345],[-87.67238217044856,41.90312546061345],[-87.67237605927144,41.90289399424007],[-87.67237377076628,41.9028073002934],[-87.67237066692772,41.902689747121464],[-87.67236552910234,41.90249512357174],[-87.67236083803445,41.90235744601397],[-87.67235525889397,41.90219372027491],[-87.67235058399315,41.90205650877385],[-87.67234359996456,41.901802626808646],[-87.67234155143232,41.90172846577735],[-87.6723342839337,41.90145103635054],[-87.67232824174978,41.90122034884504],[-87.67232330758611,41.901032067522245],[-87.67232138832692,41.90095883861857],[-87.67231540488754,41.900730511199505],[-87.67230985273133,41.90054584704782],[-87.67230069464678,41.90024069016965],[-87.67229496795716,41.90004916413222],[-87.67229266501845,41.899972147882046],[-87.6722823477945,41.89963273019266],[-87.67227708693066,41.899459654396736],[-87.67227262602167,41.89927960680247],[-87.67226725198664,41.8990670072994],[-87.67226399608168,41.898937515469825],[-87.6722582855515,41.898711247717465],[-87.67225172673564,41.898490518156656],[-87.67224538830511,41.898277199844664],[-87.67224188479186,41.898157476055445],[-87.67223865886078,41.89804645309337],[-87.67223080386259,41.897812159786646],[-87.6722225635798,41.89756636589738],[-87.67221811759448,41.89742759165934],[-87.67221353729872,41.89725212618942],[-87.67220821830519,41.89704839081407],[-87.67220445101322,41.89690731531096],[-87.67219883864031,41.896697129000934],[-87.67219621366353,41.896595549922296],[-87.67219382531451,41.896502973029904],[-87.67219250649217,41.8964539198691],[-87.6721904537115,41.89637759683213],[-87.67218649773389,41.896248375333926],[-87.67217312868338,41.89599183477372],[-87.67256349568144,41.89598473836114],[-87.67292255606256,41.89597879071264],[-87.67325685561863,41.89597330334822],[-87.67368953512756,41.89596615734807],[-87.67410913635037,41.895959236505874],[-87.67461111340924,41.895950768855414],[-87.67500983843549,41.89594404137766],[-87.67522051731179,41.895940885635156],[-87.67524435837362,41.895940528303186],[-87.6754915159328,41.89593684016546],[-87.67583194567507,41.895931674602984],[-87.67643937038875,41.89592245524983],[-87.676455240208,41.89592221425197],[-87.67668975918147,41.8959187805467]]]]}}] +} \ No newline at end of file diff --git a/public/storybook/houston.geojson b/public/storybook/houston.geojson new file mode 100644 index 000000000..1545922fa --- /dev/null +++ b/public/storybook/houston.geojson @@ -0,0 +1,1655 @@ +{ +"type": "FeatureCollection", +"name": "Tract_LEHD_WAC", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "OBJECTID": 1, "Tract": "48167722001", "Area_SqMi": 3.7680234262988832, "total_2009": 116, "total_2010": 128, "total_2011": 133, "total_2012": 304, "total_2013": 357, "total_2014": 159, "total_2015": 152, "total_2016": 108, "total_2017": 134, "total_2018": 113, "total_2019": 149, "total_2020": 132, "age1": 19, "age2": 50, "age3": 42, "earn1": 42, "earn2": 34, "earn3": 35, "naics_s01": 17, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 1, "naics_s06": 5, "naics_s07": 23, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 6, "naics_s12": 17, "naics_s13": 0, "naics_s14": 2, "naics_s15": 8, "naics_s16": 7, "naics_s17": 4, "naics_s18": 5, "naics_s19": 1, "naics_s20": 0, "race1": 90, "race2": 10, "race3": 1, "race4": 8, "race5": 0, "race6": 2, "ethnicity1": 74, "ethnicity2": 37, "edu1": 18, "edu2": 35, "edu3": 24, "edu4": 15, "Shape_Length": 69095.280438205926, "Shape_Area": 105046044.08866613, "total_2021": 158, "total_2022": 111 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.937254877436118, 29.420719141800536 ], [ -94.937240876872039, 29.417253140736349 ], [ -94.937239876694832, 29.414809140154929 ], [ -94.937239876898261, 29.413883140152631 ], [ -94.937239877530288, 29.41315114029344 ], [ -94.937239877365968, 29.412924140025947 ], [ -94.937239877209578, 29.412157140225535 ], [ -94.937239876965236, 29.411376139858618 ], [ -94.937235876491741, 29.41019813922037 ], [ -94.937233877186145, 29.40945913964747 ], [ -94.937231877102064, 29.408746139277245 ], [ -94.937228876505117, 29.408056139132288 ], [ -94.935391876658244, 29.4080531392692 ], [ -94.933432875838562, 29.408050138760103 ], [ -94.932692875219971, 29.408049138655841 ], [ -94.931968875370004, 29.408048138958957 ], [ -94.930713874692088, 29.408049139216597 ], [ -94.929144874313721, 29.408050138733241 ], [ -94.928201874597676, 29.408051139103517 ], [ -94.927662874079559, 29.408051138965792 ], [ -94.927586874170899, 29.408051139352658 ], [ -94.926933874125723, 29.408052138947337 ], [ -94.925831873596664, 29.408053139126853 ], [ -94.925196874098418, 29.408053139255447 ], [ -94.923324873310619, 29.40805413901656 ], [ -94.922992873515298, 29.408055139796531 ], [ -94.922359872655846, 29.408060139614648 ], [ -94.921834873239334, 29.408064139632131 ], [ -94.921253872312761, 29.408068139489188 ], [ -94.92100787255454, 29.408070139243442 ], [ -94.920235872762532, 29.408076139628808 ], [ -94.919625872755134, 29.408082139918847 ], [ -94.919004872208873, 29.408087139387302 ], [ -94.917903872174335, 29.408095139786653 ], [ -94.917095871953009, 29.408102139423484 ], [ -94.916606872007961, 29.408106139976042 ], [ -94.91591287097863, 29.408111139586651 ], [ -94.914963870924495, 29.408119139973813 ], [ -94.914370871375695, 29.408124139505464 ], [ -94.914182871426505, 29.408125139713121 ], [ -94.913951870680606, 29.408127139477138 ], [ -94.910948870397362, 29.408151140267609 ], [ -94.908320869591691, 29.408172139782877 ], [ -94.907854869107922, 29.408141139507727 ], [ -94.907546869032444, 29.408076139885384 ], [ -94.90720786947287, 29.407984140043723 ], [ -94.906957869073977, 29.407928139848096 ], [ -94.90686886852717, 29.408120140355045 ], [ -94.90680986904141, 29.408155140131765 ], [ -94.902748867690832, 29.408211140267628 ], [ -94.902574867902786, 29.408214140105329 ], [ -94.901246867113741, 29.408214140000595 ], [ -94.9000308673982, 29.408214139787841 ], [ -94.899922867783687, 29.408215139793018 ], [ -94.896778866523306, 29.408209140656876 ], [ -94.896370866672612, 29.408234140067702 ], [ -94.895511866403936, 29.408218140496629 ], [ -94.89509386638143, 29.408218140790897 ], [ -94.894841865965731, 29.408175140486001 ], [ -94.894589866185285, 29.408088140648427 ], [ -94.894301865367538, 29.407966139872709 ], [ -94.894023865883298, 29.407740140412802 ], [ -94.893831865969531, 29.407496140496015 ], [ -94.893640865923146, 29.407165139802185 ], [ -94.89369786588307, 29.407854140183446 ], [ -94.89371286613877, 29.408678140842998 ], [ -94.893716866047782, 29.409194140899899 ], [ -94.893721865445698, 29.409618140434809 ], [ -94.893728866026507, 29.412558141657634 ], [ -94.893764866301936, 29.414700142033745 ], [ -94.893785866417332, 29.416263141905411 ], [ -94.893795866562655, 29.417029142272447 ], [ -94.893873865901611, 29.418889142538681 ], [ -94.893931866432581, 29.419696143002803 ], [ -94.893951866435216, 29.41998314283197 ], [ -94.893998866360448, 29.421124143052293 ], [ -94.89403086645865, 29.42156214279148 ], [ -94.894030865946391, 29.421812143220293 ], [ -94.893998865835599, 29.42193714311458 ], [ -94.893842866791744, 29.422077142847165 ], [ -94.893640866185095, 29.422100142992207 ], [ -94.893231865991297, 29.422134143131547 ], [ -94.892056865407696, 29.422045143502654 ], [ -94.891269865386775, 29.421981143526509 ], [ -94.890728865883318, 29.42195914369265 ], [ -94.890638865835413, 29.421947143161546 ], [ -94.889972865066241, 29.421878142968922 ], [ -94.888197864985074, 29.42012214296426 ], [ -94.888393865294432, 29.420789142944692 ], [ -94.88863786533534, 29.421624143780331 ], [ -94.888886864604473, 29.421947143738659 ], [ -94.889229864771238, 29.422298143747252 ], [ -94.889322865599084, 29.422620143963901 ], [ -94.889354865127828, 29.422730143854512 ], [ -94.889395865324346, 29.422703143811404 ], [ -94.889456865268201, 29.422934143738065 ], [ -94.889229865295633, 29.422973143747868 ], [ -94.88947886556592, 29.423351143656618 ], [ -94.889914865695062, 29.425051143947268 ], [ -94.890070865288166, 29.425402143751956 ], [ -94.890205865426665, 29.425480144403025 ], [ -94.890274865133094, 29.425719143689573 ], [ -94.890288865705145, 29.425887144161887 ], [ -94.890382865207016, 29.426130144085274 ], [ -94.89039386601344, 29.42614214395541 ], [ -94.890919865814482, 29.427934144733239 ], [ -94.890854865689121, 29.431256145312133 ], [ -94.891580866092184, 29.432144145450735 ], [ -94.891593865869496, 29.432188145243821 ], [ -94.891877866187059, 29.433174145896935 ], [ -94.892033865922414, 29.43368614600762 ], [ -94.892189866665802, 29.4337941456224 ], [ -94.892251866717231, 29.433929145472817 ], [ -94.892781866916849, 29.433929145650954 ], [ -94.89349786719437, 29.434496145410023 ], [ -94.893591867021499, 29.434658146127312 ], [ -94.893840867151454, 29.434766145742827 ], [ -94.893871866990196, 29.435036146302934 ], [ -94.894183867210117, 29.435090145830607 ], [ -94.894480867181713, 29.434892146104065 ], [ -94.905067869606796, 29.44020014645508 ], [ -94.912947871794202, 29.444143146898359 ], [ -94.916690873543942, 29.44611114763655 ], [ -94.91676987353587, 29.446053147855231 ], [ -94.916988873601198, 29.445858147583007 ], [ -94.917002873414958, 29.445846147858013 ], [ -94.917082872797579, 29.445776147102915 ], [ -94.917145873020729, 29.445776147190156 ], [ -94.917675873660187, 29.445533147345191 ], [ -94.917862873269399, 29.445479147614005 ], [ -94.917804873146423, 29.44533114700355 ], [ -94.917737873637847, 29.445156147005676 ], [ -94.917924873527539, 29.444778146796192 ], [ -94.917927873117833, 29.444738147522898 ], [ -94.917802873812192, 29.444677147013742 ], [ -94.91839787367438, 29.443880146709198 ], [ -94.918602873712999, 29.44358214719432 ], [ -94.918583874070023, 29.443153146385406 ], [ -94.918751873846205, 29.442538146542692 ], [ -94.91889087399899, 29.442133146644142 ], [ -94.918898874047542, 29.442076146935854 ], [ -94.918961873201141, 29.441882146771814 ], [ -94.919000873181631, 29.44181114675251 ], [ -94.918957873092182, 29.441729146213881 ], [ -94.918992873896983, 29.441535146395537 ], [ -94.919124873750036, 29.441328146288743 ], [ -94.919049874067497, 29.441011146199543 ], [ -94.918993873369033, 29.440545146324954 ], [ -94.919124873122385, 29.440322146083304 ], [ -94.918956873165499, 29.440135146500687 ], [ -94.918676873734285, 29.439874145758342 ], [ -94.918527873703511, 29.439521146159638 ], [ -94.918472873666317, 29.439204146417879 ], [ -94.918788872894254, 29.438384146068916 ], [ -94.91875187315496, 29.437546145195512 ], [ -94.918844873509215, 29.437192145297367 ], [ -94.918639873796835, 29.43695014589191 ], [ -94.918397873212854, 29.436614145562501 ], [ -94.918136873443416, 29.436391145142181 ], [ -94.917801872976014, 29.436130145643467 ], [ -94.917372872610954, 29.435962145242421 ], [ -94.916907872869629, 29.436018145713263 ], [ -94.916422872729058, 29.435981145337148 ], [ -94.916124872453139, 29.436261145262975 ], [ -94.915994872262189, 29.436708145928254 ], [ -94.915826872143327, 29.437062145626662 ], [ -94.915510872626626, 29.437099145319038 ], [ -94.915156872536315, 29.437043145910955 ], [ -94.915062871914856, 29.436857145722382 ], [ -94.915044872238255, 29.436465145679193 ], [ -94.914932871978507, 29.435981145475875 ], [ -94.914839872176117, 29.435795144969028 ], [ -94.914634872114902, 29.43555314529144 ], [ -94.914373872265969, 29.435143145129086 ], [ -94.91437387239381, 29.434789144777334 ], [ -94.914448872095051, 29.434565145220297 ], [ -94.914597871925636, 29.43380214522853 ], [ -94.914839872245906, 29.432945144800112 ], [ -94.915081872529399, 29.43249814457916 ], [ -94.915424872425845, 29.432227144359381 ], [ -94.9155258725458, 29.432148144538854 ], [ -94.915650871807102, 29.432067144812798 ], [ -94.915919872180851, 29.431851144329656 ], [ -94.915988872757694, 29.431796144712123 ], [ -94.915638872631163, 29.431782144309011 ], [ -94.915131871800426, 29.431764144240177 ], [ -94.914900872613515, 29.43172614471337 ], [ -94.9146718721979, 29.431684144905116 ], [ -94.914326871719169, 29.431681144455801 ], [ -94.913979872325669, 29.431730144850086 ], [ -94.913605871921902, 29.431823144683669 ], [ -94.913516872030144, 29.431847144773723 ], [ -94.913240871917736, 29.43192814424971 ], [ -94.913046871931215, 29.431997144793641 ], [ -94.912772871125568, 29.432090144717002 ], [ -94.912694871356848, 29.432114145078081 ], [ -94.912295871337108, 29.432238144793494 ], [ -94.912010871362298, 29.432289144439444 ], [ -94.91172287095111, 29.432318144845507 ], [ -94.911143871340485, 29.4323451446764 ], [ -94.91090787096303, 29.432342144867899 ], [ -94.910789870901411, 29.432339144723038 ], [ -94.9106828707869, 29.432576145082443 ], [ -94.91054887053977, 29.432808144675569 ], [ -94.910416871400301, 29.432834144886019 ], [ -94.909731870643427, 29.432906144566676 ], [ -94.90921087022673, 29.43299814468245 ], [ -94.908924870211592, 29.432937145439155 ], [ -94.908791870471177, 29.433049145278638 ], [ -94.908566870817708, 29.43317214547568 ], [ -94.908291870816626, 29.433366144884712 ], [ -94.90809687063819, 29.433294145450525 ], [ -94.907892870432875, 29.43317214535432 ], [ -94.907677870801152, 29.433049145172561 ], [ -94.907534870224495, 29.433090144903158 ], [ -94.907320870416996, 29.433212144818018 ], [ -94.907177870535037, 29.433141145348987 ], [ -94.906891870329602, 29.432967145210448 ], [ -94.906605869638682, 29.432957144889649 ], [ -94.90647287016013, 29.433008144876439 ], [ -94.906267870451757, 29.433029145123079 ], [ -94.906043869860838, 29.432957144749746 ], [ -94.905889869555381, 29.432896145199447 ], [ -94.905722869535595, 29.432742144901642 ], [ -94.902284868906619, 29.431814145353783 ], [ -94.900379867832598, 29.430622144634004 ], [ -94.900013867747447, 29.429523145028636 ], [ -94.900726868537447, 29.428741144493475 ], [ -94.901876868394297, 29.427763143908539 ], [ -94.902090868233984, 29.426382144235351 ], [ -94.902489868486668, 29.426141143537112 ], [ -94.902003868211196, 29.42473214392243 ], [ -94.90279686891769, 29.424045143548003 ], [ -94.905304869087288, 29.423540143569198 ], [ -94.906797869147681, 29.421543142517102 ], [ -94.907712869733189, 29.421534142622342 ], [ -94.908498869636503, 29.421140142394005 ], [ -94.910913870796037, 29.421441142395874 ], [ -94.912799871215483, 29.420639142354169 ], [ -94.91380987128592, 29.420838142320765 ], [ -94.915745872187387, 29.420414141875717 ], [ -94.916025871626644, 29.419949141928306 ], [ -94.916553872155731, 29.420112142347072 ], [ -94.917083872623664, 29.420328142300239 ], [ -94.918049872381175, 29.420328142177677 ], [ -94.918649872903771, 29.420450141833413 ], [ -94.919233872447478, 29.420571142342158 ], [ -94.919729873210073, 29.420908142586654 ], [ -94.920157873434661, 29.421200142585572 ], [ -94.92042787333888, 29.421359142636536 ], [ -94.920510873272264, 29.421408141810076 ], [ -94.920525872829671, 29.42140214197029 ], [ -94.920714873102455, 29.421466142624848 ], [ -94.92097687328102, 29.421555141981798 ], [ -94.921587873297995, 29.421764142250669 ], [ -94.921632873820172, 29.421893142718975 ], [ -94.922234873200622, 29.421927142730965 ], [ -94.923011873544141, 29.421970142541099 ], [ -94.923096873905862, 29.421974142593154 ], [ -94.92396887379995, 29.422190142273816 ], [ -94.924486874093589, 29.422316142362249 ], [ -94.925959874701817, 29.422379142334862 ], [ -94.92642487452656, 29.422069141730582 ], [ -94.926430874659829, 29.422082142522044 ], [ -94.927084874715447, 29.422190142507262 ], [ -94.927333874457517, 29.422325141761764 ], [ -94.92742787543061, 29.422622142399216 ], [ -94.927707874961456, 29.422487142380191 ], [ -94.927957874734162, 29.422730142574732 ], [ -94.928175874876842, 29.422730142606511 ], [ -94.928362875656845, 29.42251414216673 ], [ -94.928673875604503, 29.42275714199786 ], [ -94.928767875743844, 29.422649141815697 ], [ -94.929670875983547, 29.422568142401303 ], [ -94.930511875779686, 29.422568142407137 ], [ -94.930885876220827, 29.422541141715552 ], [ -94.931069875974401, 29.422452141900092 ], [ -94.931384875596905, 29.422298142269415 ], [ -94.931851876204121, 29.422190142226228 ], [ -94.932879876441291, 29.42219014189007 ], [ -94.933565876135802, 29.42224414179827 ], [ -94.93378387681048, 29.421974141721567 ], [ -94.934250877116071, 29.421893142066409 ], [ -94.934655876752146, 29.421759142141838 ], [ -94.93490987675267, 29.421650142237134 ], [ -94.935580877173493, 29.421562141398621 ], [ -94.935722877315385, 29.421512141959614 ], [ -94.935955876598527, 29.421402141579815 ], [ -94.936116876877719, 29.421436142127721 ], [ -94.9361838775949, 29.421398141778475 ], [ -94.936585877380594, 29.421393141943479 ], [ -94.936789877795405, 29.421508141728445 ], [ -94.936882877411918, 29.421512141673368 ], [ -94.937013877311429, 29.421533141856717 ], [ -94.937189877668146, 29.421482141300405 ], [ -94.937254877436118, 29.420719141800536 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 2, "Tract": "48167726200", "Area_SqMi": 16.690317666796041, "total_2009": 1925, "total_2010": 2098, "total_2011": 2205, "total_2012": 3370, "total_2013": 3432, "total_2014": 3570, "total_2015": 3161, "total_2016": 5484, "total_2017": 5523, "total_2018": 5247, "total_2019": 5734, "total_2020": 5667, "age1": 607, "age2": 3295, "age3": 1359, "earn1": 264, "earn2": 437, "earn3": 4560, "naics_s01": 0, "naics_s02": 0, "naics_s03": 24, "naics_s04": 837, "naics_s05": 3125, "naics_s06": 236, "naics_s07": 174, "naics_s08": 173, "naics_s09": 0, "naics_s10": 58, "naics_s11": 54, "naics_s12": 66, "naics_s13": 0, "naics_s14": 168, "naics_s15": 13, "naics_s16": 263, "naics_s17": 0, "naics_s18": 9, "naics_s19": 61, "naics_s20": 0, "race1": 4377, "race2": 644, "race3": 44, "race4": 135, "race5": 5, "race6": 56, "ethnicity1": 3876, "ethnicity2": 1385, "edu1": 696, "edu2": 1332, "edu3": 1671, "edu4": 955, "Shape_Length": 193983.47730086048, "Shape_Area": 465297490.78609645, "total_2021": 5403, "total_2022": 5261 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.969513884326574, 29.379014132257105 ], [ -94.969818884098061, 29.379011131775552 ], [ -94.967599882892628, 29.376624131450047 ], [ -94.966983883125081, 29.375962131421009 ], [ -94.963606881616542, 29.372323130560083 ], [ -94.961597881540555, 29.370163129934095 ], [ -94.959607880912017, 29.368023130049405 ], [ -94.951674878545617, 29.359489128765446 ], [ -94.95061687813795, 29.358334128262491 ], [ -94.950392878397309, 29.358336128321429 ], [ -94.947824877935005, 29.358374128136209 ], [ -94.946946877441277, 29.358384128405611 ], [ -94.946771877428688, 29.357651127917347 ], [ -94.94624687735498, 29.355350127819708 ], [ -94.945989876917494, 29.354615127545888 ], [ -94.945569876239801, 29.353719127534514 ], [ -94.945347876666872, 29.35333012722873 ], [ -94.944890876184928, 29.352687126765925 ], [ -94.944355876392663, 29.352080127000182 ], [ -94.942870875746181, 29.350490127117283 ], [ -94.94254987547032, 29.350146126946697 ], [ -94.942173875621506, 29.349753126586418 ], [ -94.941445874966504, 29.348956126921458 ], [ -94.941210875209919, 29.348708126754403 ], [ -94.940688875687513, 29.348152126509298 ], [ -94.94004487480403, 29.347488126581613 ], [ -94.936660873543516, 29.343819125889446 ], [ -94.931527872589513, 29.338299124758915 ], [ -94.930850871734066, 29.337530124069168 ], [ -94.930530871927616, 29.3371851247013 ], [ -94.92225186929582, 29.328275122929295 ], [ -94.915361867542742, 29.320866121342469 ], [ -94.907734865466495, 29.312650120428685 ], [ -94.907571864806499, 29.312473120045105 ], [ -94.906768864413451, 29.311604119964709 ], [ -94.9035558641676, 29.308140119426383 ], [ -94.90154486325703, 29.305990119325752 ], [ -94.900536862924739, 29.304908118815824 ], [ -94.90031186272499, 29.304699118327171 ], [ -94.899991862799894, 29.304441118993495 ], [ -94.899642862248044, 29.304195118487481 ], [ -94.899303862927667, 29.303926118636539 ], [ -94.898728862302406, 29.303621118899013 ], [ -94.898625862370977, 29.303564118655043 ], [ -94.898552862352375, 29.303576118445321 ], [ -94.89859886214191, 29.30364311864 ], [ -94.898621862526184, 29.303676118102089 ], [ -94.898669862520862, 29.303748118494898 ], [ -94.898701862204035, 29.303910118250027 ], [ -94.898763862941422, 29.30412611864492 ], [ -94.898717862896859, 29.304283118704234 ], [ -94.898669862714144, 29.304450118864736 ], [ -94.898406862834406, 29.304745118644512 ], [ -94.89835886226814, 29.304800119047698 ], [ -94.898233862519334, 29.305016119187709 ], [ -94.897984862282598, 29.305232118436372 ], [ -94.897828861883099, 29.305637118537359 ], [ -94.897766862245049, 29.305988118699698 ], [ -94.897579862622734, 29.306150119160705 ], [ -94.897392862352049, 29.306258119391554 ], [ -94.897330861825267, 29.306501119427644 ], [ -94.897112862615103, 29.306797119138867 ], [ -94.8969878623532, 29.306851119200758 ], [ -94.896800861946943, 29.307013119515332 ], [ -94.896426862302604, 29.307418118941055 ], [ -94.896239862325842, 29.307499119022658 ], [ -94.895928862054845, 29.307553119420891 ], [ -94.895772862041071, 29.307904119185228 ], [ -94.89567886172226, 29.308093119836762 ], [ -94.895710862039294, 29.308498119764071 ], [ -94.895772862071908, 29.308659119335449 ], [ -94.895678862269037, 29.309199119353849 ], [ -94.895523862106955, 29.309496119852287 ], [ -94.895367861790064, 29.309739120136371 ], [ -94.895242861989715, 29.309955119506743 ], [ -94.895086861557175, 29.3105221202004 ], [ -94.894931861763581, 29.311061119999192 ], [ -94.894868862274734, 29.311115120421821 ], [ -94.894837861995256, 29.311277120561513 ], [ -94.894775861319999, 29.311385120050343 ], [ -94.894713862210452, 29.311547120429662 ], [ -94.894588861417262, 29.311682120616211 ], [ -94.894245862174031, 29.312195120522677 ], [ -94.894121861294053, 29.3123301203834 ], [ -94.894058861315628, 29.312492120374774 ], [ -94.893934861179972, 29.312518120675616 ], [ -94.893871861559333, 29.312626120627236 ], [ -94.893747861093303, 29.312734120641409 ], [ -94.893622861402037, 29.312761120973494 ], [ -94.893497861242992, 29.3128691206878 ], [ -94.893404861194597, 29.313031120434033 ], [ -94.89321786182056, 29.313112120234482 ], [ -94.893030861307764, 29.313274121070215 ], [ -94.892948861656023, 29.313314120725568 ], [ -94.892812861365201, 29.31338212059126 ], [ -94.892781861204938, 29.313463120804201 ], [ -94.892687861253336, 29.31354412047445 ], [ -94.892625861555132, 29.313787120382489 ], [ -94.892532860869366, 29.313814120944887 ], [ -94.892532861144858, 29.314515121222534 ], [ -94.892376861744779, 29.314569120646272 ], [ -94.89240786098965, 29.314650121333898 ], [ -94.892532861147401, 29.314704120691943 ], [ -94.892563861756102, 29.314893121328833 ], [ -94.892563861664385, 29.315811120834439 ], [ -94.892532860950894, 29.316216121672515 ], [ -94.892438861869806, 29.316566121588437 ], [ -94.892376861283523, 29.316863121284779 ], [ -94.892313861337513, 29.317079121383227 ], [ -94.892282861923846, 29.317430121309204 ], [ -94.892251861152673, 29.318024121429577 ], [ -94.892158861799089, 29.318213121745206 ], [ -94.892127861921907, 29.318321121345544 ], [ -94.892127861899624, 29.318482121727179 ], [ -94.892189861678432, 29.318536121386323 ], [ -94.892251861054177, 29.319049121923388 ], [ -94.892313861364642, 29.319238121839039 ], [ -94.892438861470652, 29.319562121686349 ], [ -94.892500861371175, 29.319751122371137 ], [ -94.892594861106332, 29.319859122043674 ], [ -94.892718861425337, 29.320183122364647 ], [ -94.892812862109096, 29.320398122262439 ], [ -94.892874861910769, 29.320641122635553 ], [ -94.89293786208421, 29.320722122394372 ], [ -94.892937861768431, 29.32091112256407 ], [ -94.893030862105803, 29.321316122695553 ], [ -94.893030861778527, 29.321559122758419 ], [ -94.892968861341046, 29.321883122064616 ], [ -94.893061861625199, 29.32196412262477 ], [ -94.89299986132508, 29.322314122861137 ], [ -94.892999861558607, 29.322395122280646 ], [ -94.89287486190203, 29.322692122695045 ], [ -94.892812862172562, 29.322854123113267 ], [ -94.892625861642401, 29.323178122544618 ], [ -94.892625861878528, 29.323286122368518 ], [ -94.892563861396155, 29.323448122656963 ], [ -94.892469861632449, 29.323556122755129 ], [ -94.892469862033039, 29.323799122801773 ], [ -94.892532862043296, 29.323907123063197 ], [ -94.892625861637271, 29.324150122638134 ], [ -94.892687861448721, 29.324419122926678 ], [ -94.89268786154021, 29.324932123294538 ], [ -94.892625862254263, 29.325094122734289 ], [ -94.89262586229394, 29.325364123100776 ], [ -94.892687862346165, 29.32541812324931 ], [ -94.89271886239014, 29.325526123145906 ], [ -94.892937861611529, 29.325607123287234 ], [ -94.893466861625129, 29.325661123327979 ], [ -94.893560862425147, 29.325661123217234 ], [ -94.893715862282932, 29.325796122829509 ], [ -94.893902861854301, 29.325850123711824 ], [ -94.893996862450535, 29.325958123012153 ], [ -94.89402786264678, 29.32609312293614 ], [ -94.894121861803924, 29.326174123513379 ], [ -94.894245862196769, 29.326389123445225 ], [ -94.894526862080014, 29.32663212354376 ], [ -94.894650862825202, 29.326713123364467 ], [ -94.894775862268688, 29.326767123626919 ], [ -94.894962862213561, 29.327064123594567 ], [ -94.895273862302119, 29.327361123129226 ], [ -94.895367862610584, 29.32768512336985 ], [ -94.895616862541814, 29.327928124096683 ], [ -94.89589686319384, 29.328197123667557 ], [ -94.89602186250832, 29.328332123745142 ], [ -94.896177862611168, 29.328575123522498 ], [ -94.896488863208702, 29.328575124174886 ], [ -94.896738862711089, 29.328629123835245 ], [ -94.897174863673825, 29.328818123729807 ], [ -94.897330863582184, 29.329034123490612 ], [ -94.89757986334395, 29.329385124330571 ], [ -94.897641863562285, 29.329547124258543 ], [ -94.897797863343669, 29.329844124394331 ], [ -94.897953863548594, 29.330167124274475 ], [ -94.898077863509997, 29.330464124196801 ], [ -94.898140863128319, 29.330572124093333 ], [ -94.898171863371076, 29.330761124317526 ], [ -94.898327863191568, 29.331085124005511 ], [ -94.898358863538817, 29.331436124314383 ], [ -94.898420863769346, 29.331517124584934 ], [ -94.898171863077536, 29.331760124730504 ], [ -94.898140863579783, 29.332029124323526 ], [ -94.898077863673194, 29.33213712437086 ], [ -94.898015863181357, 29.332407124569968 ], [ -94.898077863306625, 29.33270412485869 ], [ -94.898140863146494, 29.332920124167597 ], [ -94.898140863579854, 29.333163124367697 ], [ -94.898327864044091, 29.333244124269772 ], [ -94.898576863717267, 29.333325124859787 ], [ -94.898765863760204, 29.333448124793545 ], [ -94.898511863575948, 29.334050124431752 ], [ -94.898616864137182, 29.334311125242852 ], [ -94.897585863868954, 29.33654912522184 ], [ -94.897529863985213, 29.336670125817381 ], [ -94.897405863316038, 29.336940125172472 ], [ -94.89670586375189, 29.336740125371833 ], [ -94.896305863194144, 29.337140125329643 ], [ -94.896349862813423, 29.336632125590725 ], [ -94.89635886321453, 29.336522125002897 ], [ -94.896539863081941, 29.334412125205727 ], [ -94.89639086321408, 29.334303125362641 ], [ -94.896168863058861, 29.334441125300106 ], [ -94.895207863124099, 29.336543125279714 ], [ -94.895175863309987, 29.336613125302428 ], [ -94.894705862708179, 29.337640125702702 ], [ -94.894305863312539, 29.340840126567578 ], [ -94.891605863081836, 29.348340127691792 ], [ -94.891405862599171, 29.35083912864809 ], [ -94.891805862912207, 29.351339129088132 ], [ -94.891305862616576, 29.352739128731823 ], [ -94.891637862874205, 29.355837129186938 ], [ -94.891753862861492, 29.35662912936349 ], [ -94.891566862548444, 29.356320129380411 ], [ -94.891444862687521, 29.356117130005753 ], [ -94.891330863024379, 29.355929129694218 ], [ -94.890214862717087, 29.355894129783277 ], [ -94.889974862250952, 29.356152129969772 ], [ -94.887961861834313, 29.357270130424062 ], [ -94.886012861127284, 29.358040130602159 ], [ -94.883503860928883, 29.359300130747869 ], [ -94.872966858591155, 29.364202131754869 ], [ -94.866213857166869, 29.367383133100933 ], [ -94.865552856637464, 29.36810913341462 ], [ -94.864738856102221, 29.369298132833674 ], [ -94.864363856306966, 29.370355133612669 ], [ -94.864517856210924, 29.371863134214387 ], [ -94.865354856553637, 29.373140134010328 ], [ -94.866697856855666, 29.374108134003247 ], [ -94.868810857501131, 29.374637134284438 ], [ -94.869911857918254, 29.374769134402374 ], [ -94.872091858673159, 29.375616134577015 ], [ -94.872531858680347, 29.375572134521395 ], [ -94.873103858515563, 29.375902134221629 ], [ -94.874930859328686, 29.376211134251179 ], [ -94.879333860164067, 29.377245134610266 ], [ -94.879994860811337, 29.377928134595933 ], [ -94.881073861021449, 29.378258134688931 ], [ -94.881887861375503, 29.378302134737424 ], [ -94.882768861873117, 29.377818134735339 ], [ -94.88322086132365, 29.377228134361861 ], [ -94.884174862119124, 29.377155134065347 ], [ -94.886730862642821, 29.379507134547577 ], [ -94.888973863800743, 29.382013134811899 ], [ -94.88904286302575, 29.382089135086098 ], [ -94.88947886390585, 29.382170134983717 ], [ -94.890132864008109, 29.382197135520894 ], [ -94.890337864162774, 29.382191135102982 ], [ -94.891354864359997, 29.382197134759036 ], [ -94.891441863863221, 29.382197134817183 ], [ -94.892563864190606, 29.382224134620735 ], [ -94.892812864327183, 29.38222413504279 ], [ -94.892999863879027, 29.382170134745412 ], [ -94.893155864459231, 29.382089134588742 ], [ -94.893155864473286, 29.382278134763649 ], [ -94.893092864332147, 29.382386135420969 ], [ -94.893155864501352, 29.38265613509585 ], [ -94.893061864601819, 29.382764135361974 ], [ -94.891815864432544, 29.382764135581638 ], [ -94.891628864138227, 29.382844134937763 ], [ -94.891535864297978, 29.382656135540213 ], [ -94.891535864092859, 29.382332135351611 ], [ -94.891379863968538, 29.382305134812906 ], [ -94.89019586384093, 29.382359135223663 ], [ -94.88926086365241, 29.382332135256842 ], [ -94.889104863413209, 29.382197134903898 ], [ -94.888854863415332, 29.382305135443719 ], [ -94.888793863090186, 29.382359134938511 ], [ -94.888668862795498, 29.382413134974616 ], [ -94.888637863054555, 29.382683135442733 ], [ -94.888544863049745, 29.3828711356763 ], [ -94.888450862879836, 29.383303135094078 ], [ -94.888357863471427, 29.383546135070205 ], [ -94.888263862989348, 29.383843135218182 ], [ -94.888170863333116, 29.384032135594342 ], [ -94.888045863339443, 29.384437135728653 ], [ -94.88792086314858, 29.38478713590203 ], [ -94.887609863596012, 29.385597136071699 ], [ -94.887484863592732, 29.386002135702959 ], [ -94.88740386320471, 29.386212135740738 ], [ -94.887391863524215, 29.38624513592654 ], [ -94.887266862605898, 29.386380136217664 ], [ -94.886861863399943, 29.386757136102968 ], [ -94.88683086312821, 29.386973135761181 ], [ -94.886586862755109, 29.387170136643743 ], [ -94.886512862644949, 29.387490136703544 ], [ -94.886705863150738, 29.387783136548059 ], [ -94.886705863317601, 29.38848013664439 ], [ -94.886768863457675, 29.38856613648505 ], [ -94.886705862938243, 29.38867413613724 ], [ -94.885471863221369, 29.389682137059101 ], [ -94.882685861699969, 29.388753136681281 ], [ -94.881385861332518, 29.388382136328552 ], [ -94.880951861175049, 29.388217136330567 ], [ -94.880692861268003, 29.388134136468434 ], [ -94.88050586141469, 29.388080136238468 ], [ -94.8802568610013, 29.387972136745155 ], [ -94.879882861440947, 29.387864136570631 ], [ -94.879664861266363, 29.387783136882405 ], [ -94.879103860621512, 29.387594136992387 ], [ -94.87851186089901, 29.387405136387951 ], [ -94.877421860668136, 29.387054136813934 ], [ -94.877140860043355, 29.386973136414205 ], [ -94.876704860598181, 29.386811136499123 ], [ -94.876237860495792, 29.386650136619959 ], [ -94.875395860525856, 29.386407136114936 ], [ -94.87524085969568, 29.386380136844174 ], [ -94.875177859502827, 29.38632613607351 ], [ -94.875063859775466, 29.386284136604147 ], [ -94.869872858712668, 29.384626136577477 ], [ -94.869846858686842, 29.384600136589047 ], [ -94.861389855901621, 29.381929135609873 ], [ -94.852468853388345, 29.37909913536588 ], [ -94.843972851730967, 29.376341135839922 ], [ -94.839361849922625, 29.374857134999449 ], [ -94.834972849039403, 29.373512135499229 ], [ -94.833482848360489, 29.373034135105769 ], [ -94.831355848307581, 29.372350135099673 ], [ -94.829778847494211, 29.37184413468097 ], [ -94.828466847641096, 29.371379135124599 ], [ -94.827288846678158, 29.370868135006774 ], [ -94.826222846891525, 29.37039513505314 ], [ -94.82401084652453, 29.369420134557629 ], [ -94.821203845729755, 29.368184134820812 ], [ -94.820013844464853, 29.367659134473886 ], [ -94.817258844024792, 29.36645913403073 ], [ -94.811763842358985, 29.364163134224825 ], [ -94.810096842355946, 29.36361613420036 ], [ -94.809979842075805, 29.363705134230056 ], [ -94.809742842452991, 29.363886134032114 ], [ -94.80963184218237, 29.363971133662361 ], [ -94.80971384242828, 29.364600134207521 ], [ -94.809917842672633, 29.365484134562518 ], [ -94.809995842617951, 29.365578134718888 ], [ -94.810031841794768, 29.365627134363738 ], [ -94.810314842137046, 29.365475134347029 ], [ -94.810861843009576, 29.36544813397256 ], [ -94.811906842825238, 29.365915133858941 ], [ -94.813185843467238, 29.366486134409303 ], [ -94.813540842763189, 29.366814134414252 ], [ -94.814196843562996, 29.366978134309235 ], [ -94.814633843672041, 29.367006134568854 ], [ -94.814961843754361, 29.366951134756125 ], [ -94.815153843222276, 29.367306134317268 ], [ -94.815471843803195, 29.367085134367862 ], [ -94.815508843557055, 29.367060134233085 ], [ -94.815727843509563, 29.366978134085628 ], [ -94.817201844522216, 29.367525134459388 ], [ -94.817258843936415, 29.367552134055426 ], [ -94.818816844989939, 29.368077134204416 ], [ -94.820563845251556, 29.368673134469002 ], [ -94.823255845820242, 29.369822134440049 ], [ -94.82428184651161, 29.370259134444982 ], [ -94.825612846462079, 29.370905135229727 ], [ -94.826142846317623, 29.371161134744316 ], [ -94.828521847429172, 29.372118135256567 ], [ -94.8288768476488, 29.372610135110079 ], [ -94.829477847219849, 29.372446135371526 ], [ -94.830871847855562, 29.37261013496909 ], [ -94.834890848896038, 29.37394913525311 ], [ -94.83539884879751, 29.374224135364624 ], [ -94.835585848822291, 29.374273135252164 ], [ -94.836184849375584, 29.374650135039591 ], [ -94.836166849013054, 29.374893135512895 ], [ -94.836301849183982, 29.374830134881446 ], [ -94.836373849365287, 29.374596135041472 ], [ -94.836463849028917, 29.37445213514189 ], [ -94.83658984915543, 29.374614134871415 ], [ -94.836571849777684, 29.374839135571026 ], [ -94.836589849805321, 29.374902135790798 ], [ -94.836661849327413, 29.374812135340576 ], [ -94.836695849904373, 29.374562135518246 ], [ -94.836823849983858, 29.374533135198625 ], [ -94.837288849340496, 29.374716135515719 ], [ -94.837720849808704, 29.374869135235709 ], [ -94.840496850100081, 29.375879135798897 ], [ -94.841056850268444, 29.376005135632926 ], [ -94.841295850943368, 29.375949135702861 ], [ -94.841841850613562, 29.376075135662862 ], [ -94.842304850903091, 29.376271135695209 ], [ -94.842486851219334, 29.376355135262077 ], [ -94.842542851464088, 29.376580135405295 ], [ -94.842682851505387, 29.376439135459183 ], [ -94.843131851657517, 29.376425135578778 ], [ -94.843635850999434, 29.376650135163111 ], [ -94.843930851358792, 29.376706135722735 ], [ -94.845542852052404, 29.377187135501948 ], [ -94.845671851700132, 29.377174135129014 ], [ -94.846782852360704, 29.377575135879145 ], [ -94.846870852038478, 29.3776931354972 ], [ -94.846937852810569, 29.377704135324098 ], [ -94.84882485280005, 29.378376135988368 ], [ -94.849405853084775, 29.378376135527915 ], [ -94.85020685293587, 29.378776135758407 ], [ -94.850413853631068, 29.37884113566539 ], [ -94.850594852832543, 29.378815135882984 ], [ -94.850983853266172, 29.378798135281901 ], [ -94.850995853083006, 29.378841135793486 ], [ -94.851163853413595, 29.378983135626921 ], [ -94.851563853414575, 29.379009136120704 ], [ -94.852209853470413, 29.379280135569768 ], [ -94.852480853363119, 29.379513135481108 ], [ -94.85250885335833, 29.379500135571181 ], [ -94.852843853484913, 29.379551135419625 ], [ -94.853049853558687, 29.379487136010095 ], [ -94.857057855479951, 29.38077613562406 ], [ -94.857805854860473, 29.38107213614667 ], [ -94.858230855071227, 29.381149136223428 ], [ -94.858629855805404, 29.381291135994839 ], [ -94.859209855955598, 29.381613136190843 ], [ -94.859686855404561, 29.381665136092916 ], [ -94.860150856189534, 29.381936135630927 ], [ -94.86034385597813, 29.381884136279844 ], [ -94.860588855697145, 29.382013135748025 ], [ -94.860756856061158, 29.382180136059166 ], [ -94.861026855790229, 29.382258136509293 ], [ -94.861320855900061, 29.382289135756501 ], [ -94.861666856002188, 29.382339135906079 ], [ -94.862061856681464, 29.382549136366968 ], [ -94.862679856553441, 29.382673136074672 ], [ -94.86296385633905, 29.382858136099376 ], [ -94.863680857102565, 29.382994136123507 ], [ -94.864162857268695, 29.383154136319369 ], [ -94.864335856681492, 29.383130136134696 ], [ -94.864520857567101, 29.383167136312327 ], [ -94.866188857201365, 29.384168135928729 ], [ -94.866781857692587, 29.38440213595317 ], [ -94.867140858082848, 29.384563136676718 ], [ -94.867597858078398, 29.384477136581932 ], [ -94.86774585745502, 29.384452135854968 ], [ -94.868128857865003, 29.384477136192135 ], [ -94.868301857874116, 29.384415136250865 ], [ -94.868697857706948, 29.384625136433968 ], [ -94.86950085831684, 29.3851681365669 ], [ -94.869872858798928, 29.385162136266782 ], [ -94.870395858955334, 29.38513713607869 ], [ -94.871212859081822, 29.385557136297823 ], [ -94.872666858962376, 29.385978136183493 ], [ -94.87409485918181, 29.386463136757889 ], [ -94.874324860006809, 29.386642136661113 ], [ -94.874604859643441, 29.38679513668518 ], [ -94.874694859926208, 29.38671813620493 ], [ -94.875051860129446, 29.38684613637006 ], [ -94.875075860136548, 29.38691913639078 ], [ -94.87555186015139, 29.386919136362806 ], [ -94.875676859779361, 29.386973136701169 ], [ -94.875800860614547, 29.386973136209132 ], [ -94.875987860406198, 29.387054136223465 ], [ -94.876019860606618, 29.387189136688487 ], [ -94.876704860734691, 29.387189136617508 ], [ -94.877109860039909, 29.387297136400495 ], [ -94.877234860914285, 29.387351136178879 ], [ -94.877421860982437, 29.387405136582469 ], [ -94.877888861163683, 29.387729136746792 ], [ -94.878480860813312, 29.388161136884086 ], [ -94.878636860630678, 29.388215136279356 ], [ -94.878760860760394, 29.388323136653838 ], [ -94.879352860667368, 29.3883501363302 ], [ -94.879633861490845, 29.388404137073614 ], [ -94.879944860911067, 29.388458136791535 ], [ -94.880194860932377, 29.38851213652368 ], [ -94.880474861756639, 29.388593136433972 ], [ -94.880786861364939, 29.388674136358581 ], [ -94.882179862116729, 29.389032137219338 ], [ -94.882840861958542, 29.389114136966846 ], [ -94.882912862501769, 29.389207137241264 ], [ -94.882952862030862, 29.389230137222054 ], [ -94.883490862006056, 29.389527136895243 ], [ -94.884573862928022, 29.389888136929901 ], [ -94.885492863011464, 29.390621137446232 ], [ -94.886768862688783, 29.390913137130461 ], [ -94.886861863378101, 29.391264137405745 ], [ -94.886923863694221, 29.39223613771664 ], [ -94.886986863413682, 29.39261313770815 ], [ -94.887000863044136, 29.393022137708744 ], [ -94.887048862964264, 29.394341137358314 ], [ -94.88717386392446, 29.395717137670157 ], [ -94.887247863488369, 29.396624138377906 ], [ -94.887280863782934, 29.397015137945829 ], [ -94.887331863372012, 29.397648138437042 ], [ -94.887391863229979, 29.398443138772343 ], [ -94.887453863947385, 29.399063139021823 ], [ -94.887503863947572, 29.399929139135658 ], [ -94.887515864212915, 29.4001161387195 ], [ -94.887609863747286, 29.401168139373187 ], [ -94.887671864302689, 29.401708139179917 ], [ -94.887702864256156, 29.402356139642311 ], [ -94.887858864027962, 29.404164139854103 ], [ -94.887920864178767, 29.404892139445881 ], [ -94.888045863715234, 29.406242140471171 ], [ -94.888366864307216, 29.409582141274676 ], [ -94.888458864126036, 29.410499141293524 ], [ -94.888762864776425, 29.412313140975321 ], [ -94.889042865138236, 29.412799141857874 ], [ -94.888829864164393, 29.413310142032966 ], [ -94.888793864644555, 29.415417142323776 ], [ -94.888668864849208, 29.415822141991814 ], [ -94.888575864422563, 29.416091142209581 ], [ -94.888637865101344, 29.416280142017968 ], [ -94.888824864583484, 29.41633414241425 ], [ -94.888699864206117, 29.416496142671541 ], [ -94.888512864195775, 29.416523142195889 ], [ -94.888014864500946, 29.416766142082306 ], [ -94.887858864446898, 29.416820142000823 ], [ -94.887858864845612, 29.41736014275039 ], [ -94.88795286418447, 29.418169142764476 ], [ -94.888045864243523, 29.419330143177259 ], [ -94.888076864357657, 29.419708142927835 ], [ -94.888197864985074, 29.42012214296426 ], [ -94.889972865066241, 29.421878142968922 ], [ -94.890638865835413, 29.421947143161546 ], [ -94.890728865883318, 29.42195914369265 ], [ -94.891269865386775, 29.421981143526509 ], [ -94.892056865407696, 29.422045143502654 ], [ -94.893231865991297, 29.422134143131547 ], [ -94.893640866185095, 29.422100142992207 ], [ -94.893842866791744, 29.422077142847165 ], [ -94.893998865835599, 29.42193714311458 ], [ -94.894030865946391, 29.421812143220293 ], [ -94.89403086645865, 29.42156214279148 ], [ -94.893998866360448, 29.421124143052293 ], [ -94.893951866435216, 29.41998314283197 ], [ -94.893931866432581, 29.419696143002803 ], [ -94.893873865901611, 29.418889142538681 ], [ -94.893795866562655, 29.417029142272447 ], [ -94.893785866417332, 29.416263141905411 ], [ -94.893764866301936, 29.414700142033745 ], [ -94.893728866026507, 29.412558141657634 ], [ -94.893721865445698, 29.409618140434809 ], [ -94.893716866047782, 29.409194140899899 ], [ -94.89371286613877, 29.408678140842998 ], [ -94.89369786588307, 29.407854140183446 ], [ -94.893640865923146, 29.407165139802185 ], [ -94.893605865519717, 29.407017139937857 ], [ -94.893579865214392, 29.40680914011508 ], [ -94.893558865987643, 29.406516139917407 ], [ -94.893556865800022, 29.405899140311632 ], [ -94.893553865487704, 29.403894139421027 ], [ -94.893558865342982, 29.403084139000605 ], [ -94.893538865334165, 29.402602139121832 ], [ -94.893519865651726, 29.40212013926665 ], [ -94.893532865318505, 29.401659139174679 ], [ -94.893545865157733, 29.401169139151616 ], [ -94.893526864877401, 29.400689138991968 ], [ -94.893506865207158, 29.400204138694711 ], [ -94.893478865602958, 29.398276138428546 ], [ -94.893468865236287, 29.397325138138925 ], [ -94.893474864945162, 29.396843138480296 ], [ -94.893480865460091, 29.396348137596103 ], [ -94.893479865230248, 29.39586313810597 ], [ -94.893478864580871, 29.39541613732127 ], [ -94.893467864877493, 29.394922137395135 ], [ -94.893493865109846, 29.394433137155939 ], [ -94.89348186538686, 29.393950137557773 ], [ -94.893468865279502, 29.39343013763396 ], [ -94.893455865110496, 29.39246613694435 ], [ -94.893468864649194, 29.391476137147787 ], [ -94.89348086463005, 29.39100913668754 ], [ -94.893493864911846, 29.390514136684974 ], [ -94.893434865036468, 29.389388136285547 ], [ -94.893463864235002, 29.388277136220101 ], [ -94.893463865192388, 29.387792136172656 ], [ -94.893463864185463, 29.387136136412892 ], [ -94.893447864956258, 29.386507135693922 ], [ -94.893434864937305, 29.38600913606863 ], [ -94.893427864256196, 29.385536135270979 ], [ -94.893419864464747, 29.385061135453302 ], [ -94.893419864341979, 29.384098135533122 ], [ -94.89497686508895, 29.384090135719134 ], [ -94.896485865736707, 29.384083134926467 ], [ -94.897982865875576, 29.384076135624927 ], [ -94.899492865730039, 29.384069135182912 ], [ -94.901036866328383, 29.384061134861302 ], [ -94.902558867253745, 29.384050135464072 ], [ -94.904078867279381, 29.384039134976554 ], [ -94.905568867447982, 29.384028135043472 ], [ -94.907072868379927, 29.384018134662309 ], [ -94.908616868279154, 29.384006134625761 ], [ -94.90874086837465, 29.38400613523411 ], [ -94.909708868391874, 29.383999134647709 ], [ -94.911550868980044, 29.383985135090612 ], [ -94.913018869602226, 29.383975134298581 ], [ -94.913887869907967, 29.383968134661785 ], [ -94.914031869671703, 29.383967134597999 ], [ -94.914351870333462, 29.383946135072982 ], [ -94.91641587030756, 29.383941134954366 ], [ -94.917210871016636, 29.383939134963978 ], [ -94.918503870856696, 29.383936134396418 ], [ -94.919095870725727, 29.383934134653025 ], [ -94.919186871487, 29.383933134726263 ], [ -94.919791871344501, 29.383933134617482 ], [ -94.920669871164833, 29.383930134489127 ], [ -94.922421871919369, 29.38392613452876 ], [ -94.922643872116282, 29.383926134682643 ], [ -94.922867872234193, 29.383926134160447 ], [ -94.923382872000289, 29.383925134706061 ], [ -94.92494187271177, 29.383918134209708 ], [ -94.925005872836252, 29.383918134290177 ], [ -94.926513873302255, 29.383912134309458 ], [ -94.927673873739209, 29.383908134355256 ], [ -94.929696873987169, 29.383900134263857 ], [ -94.930719874541523, 29.383896133857526 ], [ -94.932375874375225, 29.38388913440178 ], [ -94.933836875040328, 29.383864133939216 ], [ -94.934769875521795, 29.38390213422905 ], [ -94.934920874851855, 29.383897133781616 ], [ -94.93528087526505, 29.383878133930569 ], [ -94.935427875651001, 29.383879134282822 ], [ -94.935512875557862, 29.383877134259421 ], [ -94.936697875658567, 29.383713133857363 ], [ -94.93723887624671, 29.383622134053528 ], [ -94.937604875777524, 29.383562134203199 ], [ -94.93859987603345, 29.383297134151039 ], [ -94.938964876441958, 29.3831661333775 ], [ -94.94040687673305, 29.382620133967357 ], [ -94.940505876729432, 29.382583133220002 ], [ -94.940598876431267, 29.382545133741175 ], [ -94.940610877035866, 29.381654133365014 ], [ -94.940629876828694, 29.379918133008339 ], [ -94.940641876548156, 29.379271132461561 ], [ -94.941107876568651, 29.379274133084898 ], [ -94.941536877222674, 29.379270133123285 ], [ -94.942631877474241, 29.379254133169017 ], [ -94.943034876653726, 29.379249133056266 ], [ -94.944777877721322, 29.379242132801448 ], [ -94.945015877965233, 29.37924013274792 ], [ -94.946846877912208, 29.379219133033413 ], [ -94.946858878206385, 29.379213132345065 ], [ -94.947374878747226, 29.379213132326107 ], [ -94.947600877775272, 29.379206132564253 ], [ -94.948739878514232, 29.379166132340828 ], [ -94.948899878387024, 29.379165132715805 ], [ -94.949642878594418, 29.379135132923796 ], [ -94.950053879411087, 29.379184132684902 ], [ -94.950789879202844, 29.379175132867456 ], [ -94.951072879125292, 29.379171132180502 ], [ -94.951512879371847, 29.379165132500251 ], [ -94.951840879763211, 29.379161132709868 ], [ -94.953316880017226, 29.379141132414205 ], [ -94.953647879788377, 29.379137132451064 ], [ -94.954942880548714, 29.379120132732648 ], [ -94.956068880623675, 29.379105131904385 ], [ -94.95711388075631, 29.379091132395885 ], [ -94.958786881298906, 29.379070131804777 ], [ -94.959712881242183, 29.379062132408798 ], [ -94.961162882216456, 29.379041132075525 ], [ -94.961988881816396, 29.379031131931139 ], [ -94.962876881720987, 29.379021132181023 ], [ -94.963113882230488, 29.37901813250371 ], [ -94.964263882731345, 29.379004131599665 ], [ -94.964307882174182, 29.37900413206302 ], [ -94.965014882606425, 29.379012131985963 ], [ -94.967052882851974, 29.379033131947224 ], [ -94.967197883079422, 29.379032132090146 ], [ -94.967539883357702, 29.379029131595356 ], [ -94.969513884326574, 29.379014132257105 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 3, "Tract": "48157675800", "Area_SqMi": 125.95486299928109, "total_2009": 712, "total_2010": 609, "total_2011": 689, "total_2012": 719, "total_2013": 816, "total_2014": 871, "total_2015": 1060, "total_2016": 754, "total_2017": 759, "total_2018": 750, "total_2019": 755, "total_2020": 699, "age1": 278, "age2": 580, "age3": 245, "earn1": 159, "earn2": 206, "earn3": 738, "naics_s01": 26, "naics_s02": 4, "naics_s03": 243, "naics_s04": 130, "naics_s05": 443, "naics_s06": 46, "naics_s07": 14, "naics_s08": 22, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 3, "naics_s13": 60, "naics_s14": 18, "naics_s15": 67, "naics_s16": 0, "naics_s17": 0, "naics_s18": 10, "naics_s19": 3, "naics_s20": 10, "race1": 912, "race2": 104, "race3": 9, "race4": 66, "race5": 1, "race6": 11, "ethnicity1": 572, "ethnicity2": 531, "edu1": 247, "edu2": 236, "edu3": 232, "edu4": 110, "Shape_Length": 423406.59460096876, "Shape_Area": 3511406006.5174561, "total_2021": 591, "total_2022": 1103 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.088861180122095, 29.601665140006524 ], [ -96.08891917957817, 29.601663140129357 ], [ -96.088624180011848, 29.601502140171263 ], [ -96.08860217925475, 29.601493140484493 ], [ -96.088483179512281, 29.60144414019118 ], [ -96.088404179494475, 29.601411140558408 ], [ -96.088228179533971, 29.601389140351241 ], [ -96.087712178857416, 29.60130113996459 ], [ -96.087328179155236, 29.601229140586785 ], [ -96.085882179007058, 29.60105914005543 ], [ -96.085366178287956, 29.601054140651993 ], [ -96.084699178222309, 29.601065140281776 ], [ -96.084397178152287, 29.601059139968768 ], [ -96.08418417874833, 29.601021140041528 ], [ -96.083907178612876, 29.600900140012801 ], [ -96.083467178378001, 29.600669140606453 ], [ -96.083379177973029, 29.600603140412197 ], [ -96.083240178207504, 29.600521139921025 ], [ -96.083014178191945, 29.600367140632358 ], [ -96.082831177653645, 29.600213140728311 ], [ -96.082699177673376, 29.600125140487627 ], [ -96.082573177933497, 29.600070139994315 ], [ -96.082158177778354, 29.599856140122007 ], [ -96.082089178109726, 29.599812140589687 ], [ -96.081680178053389, 29.599713140247381 ], [ -96.081278177681142, 29.599614140607951 ], [ -96.080831177740549, 29.599449140039027 ], [ -96.080215177491709, 29.599065140296691 ], [ -96.080045177018505, 29.598922139683697 ], [ -96.079787177429125, 29.598768140319876 ], [ -96.079523177124429, 29.598647140270003 ], [ -96.079316176846447, 29.598515140000476 ], [ -96.07910817701557, 29.598416140091256 ], [ -96.078504177188734, 29.598114139912926 ], [ -96.07783117635411, 29.59787213960902 ], [ -96.077743176362389, 29.597834139892061 ], [ -96.077485176834742, 29.597674140270982 ], [ -96.077290176808887, 29.597416140099213 ], [ -96.07723417667097, 29.597372140339328 ], [ -96.076875176418156, 29.597169139497314 ], [ -96.076580175927035, 29.59704814025455 ], [ -96.076064175898537, 29.596861140252745 ], [ -96.075831176164044, 29.596745139703653 ], [ -96.075536176238074, 29.596493139964817 ], [ -96.075441176139648, 29.596388139983365 ], [ -96.07532217647281, 29.596278139539198 ], [ -96.075202175744394, 29.596152140125739 ], [ -96.075033175832516, 29.59593714005608 ], [ -96.074429176064669, 29.595267139440075 ], [ -96.07388817551417, 29.59481613982852 ], [ -96.073693175509888, 29.594706139875633 ], [ -96.073272175657195, 29.594503139227648 ], [ -96.073077174892205, 29.594382139820137 ], [ -96.072869175229769, 29.594201139223387 ], [ -96.072718175641583, 29.594019139013056 ], [ -96.072643175642838, 29.593887139583639 ], [ -96.072416174929458, 29.593624138911562 ], [ -96.071687174730428, 29.592777138970849 ], [ -96.071360174901741, 29.592469139387752 ], [ -96.07115817438509, 29.592392139377633 ], [ -96.070857174744674, 29.59233713922421 ], [ -96.070737174687309, 29.592293138779979 ], [ -96.070599174239035, 29.59223313893288 ], [ -96.070322174715059, 29.592090138820346 ], [ -96.069983174584252, 29.59189813895091 ], [ -96.069901174267116, 29.5918651390378 ], [ -96.069027174466058, 29.591667139458618 ], [ -96.067335174044402, 29.591068138568335 ], [ -96.067209174039405, 29.591029138889908 ], [ -96.067071173901141, 29.591035139111881 ], [ -96.066606173964317, 29.591381138961722 ], [ -96.066568174007656, 29.591392139140286 ], [ -96.066423173451057, 29.59148513947131 ], [ -96.066291173123901, 29.591529138941112 ], [ -96.066027173300071, 29.591623139501479 ], [ -96.065838173352105, 29.59167813884406 ], [ -96.065606173337528, 29.59171613922852 ], [ -96.065492173403456, 29.591711139541196 ], [ -96.065379172839371, 29.591689139499451 ], [ -96.064908173606042, 29.591551138846793 ], [ -96.064543173401646, 29.591480139444062 ], [ -96.064059172504329, 29.591474138837306 ], [ -96.06392017277463, 29.591485139315278 ], [ -96.063436172397473, 29.591557138876386 ], [ -96.06318417282084, 29.591612138858778 ], [ -96.062946172157169, 29.59163913886875 ], [ -96.062732172219185, 29.591645139467751 ], [ -96.062505172338888, 29.591617139337842 ], [ -96.062417172825306, 29.591579139183459 ], [ -96.062329172371093, 29.591529139477743 ], [ -96.062141172622077, 29.591364138812899 ], [ -96.061958172031254, 29.591133139085358 ], [ -96.061663172232599, 29.59055113937384 ], [ -96.061543171864173, 29.590424138739206 ], [ -96.061443172612869, 29.590331138849859 ], [ -96.061122172579218, 29.590084138643906 ], [ -96.060808171903076, 29.589787139077835 ], [ -96.060103171558268, 29.589265139179957 ], [ -96.059996171473784, 29.589166138427078 ], [ -96.059839171998561, 29.588990139164391 ], [ -96.059707171511107, 29.588786138583611 ], [ -96.059569171773333, 29.588523138558418 ], [ -96.059556171970371, 29.58845113840604 ], [ -96.059531171155086, 29.588396138566186 ], [ -96.059525171725284, 29.588149138571595 ], [ -96.059531171489141, 29.588033138511889 ], [ -96.059563171597603, 29.587885138480296 ], [ -96.059802171413793, 29.586940138456214 ], [ -96.060110172121924, 29.586407137990491 ], [ -96.060229171324835, 29.586302138549222 ], [ -96.060305171826286, 29.586258138393884 ], [ -96.060393171358285, 29.58624213833307 ], [ -96.061066171873151, 29.586209138465371 ], [ -96.061242172076604, 29.586082137830584 ], [ -96.06129217185466, 29.58600013782841 ], [ -96.061311171541078, 29.585906137861308 ], [ -96.061298171504035, 29.585747137715753 ], [ -96.061261172020977, 29.585676137614094 ], [ -96.061129171439376, 29.585324137908589 ], [ -96.061129171750451, 29.585280138276897 ], [ -96.06116017215372, 29.58506613807911 ], [ -96.061192171853534, 29.584956137968309 ], [ -96.061280171617639, 29.584741138028921 ], [ -96.061537171483977, 29.584434137843928 ], [ -96.061701171822804, 29.584285137672563 ], [ -96.061783171882425, 29.584230138152932 ], [ -96.062041171660098, 29.584104137867495 ], [ -96.06218517225166, 29.584065137429207 ], [ -96.062342171626653, 29.58406013729811 ], [ -96.062506171719846, 29.584005137440915 ], [ -96.062575172422967, 29.583972137925553 ], [ -96.062770172480597, 29.583724137913244 ], [ -96.062776172113686, 29.583642137889168 ], [ -96.062764172475269, 29.583571137434078 ], [ -96.062739172334886, 29.583505137797751 ], [ -96.062732172204448, 29.583444137328566 ], [ -96.062695171680531, 29.583224137173644 ], [ -96.062688172078708, 29.583076137450774 ], [ -96.062720172034133, 29.582873137520821 ], [ -96.062795171958825, 29.582570137057957 ], [ -96.062802172235152, 29.582477136959032 ], [ -96.062833172306924, 29.582328137576781 ], [ -96.062827171817219, 29.582208137233181 ], [ -96.062795172302145, 29.582131136966307 ], [ -96.061965172244115, 29.58078913735233 ], [ -96.061909172340549, 29.580696137145825 ], [ -96.061903172068583, 29.58065813675152 ], [ -96.061909171738236, 29.580592137238419 ], [ -96.06193417237759, 29.580537136643962 ], [ -96.061972171914547, 29.580476137039604 ], [ -96.062336171832698, 29.580069137155387 ], [ -96.062456171803959, 29.57982813693754 ], [ -96.062494171732752, 29.57971813644405 ], [ -96.062550172010177, 29.579481137019179 ], [ -96.062594171934421, 29.579251136927951 ], [ -96.062601172350639, 29.579135136897218 ], [ -96.062594172044101, 29.579113136767937 ], [ -96.06258817147004, 29.579014137026871 ], [ -96.06253117163061, 29.578904137063468 ], [ -96.062116171818403, 29.578239136137167 ], [ -96.06201617196588, 29.57803013669594 ], [ -96.061978172140982, 29.577915136604954 ], [ -96.0619721712537, 29.57786013649277 ], [ -96.061966171992552, 29.577821136061804 ], [ -96.061991171362109, 29.577613136473541 ], [ -96.06207917222261, 29.5774591361447 ], [ -96.062129172079594, 29.577376136647569 ], [ -96.062192172166618, 29.577316136429005 ], [ -96.062934171525725, 29.576750136281849 ], [ -96.063079171576604, 29.576590135693085 ], [ -96.06316717169652, 29.576458136311075 ], [ -96.063192172057683, 29.576382136544652 ], [ -96.063198172255397, 29.576255135749971 ], [ -96.063186172119543, 29.576079136088197 ], [ -96.063154172293707, 29.575991136281424 ], [ -96.063110171494444, 29.575914135994488 ], [ -96.063028171542129, 29.575804135989326 ], [ -96.062752171647702, 29.575519135493192 ], [ -96.062651171612956, 29.57537013634639 ], [ -96.062588171948917, 29.575255136119996 ], [ -96.062551171435345, 29.575161136223358 ], [ -96.062463171499957, 29.575007136110393 ], [ -96.062312171826392, 29.574469136065826 ], [ -96.062274171564425, 29.574370135593714 ], [ -96.062261171252985, 29.574265136113993 ], [ -96.062236171414298, 29.574216135888729 ], [ -96.062067172016413, 29.573979136075064 ], [ -96.061922171776857, 29.573749135421682 ], [ -96.061771172033176, 29.573694135332907 ], [ -96.061708171730018, 29.573639135807031 ], [ -96.061595171809088, 29.573282135529634 ], [ -96.061475170907201, 29.573128135630085 ], [ -96.061362171552574, 29.572941135727078 ], [ -96.0612491716184, 29.572715135212778 ], [ -96.061048171283929, 29.572248135642482 ], [ -96.060866170926673, 29.571765135626308 ], [ -96.060715170976238, 29.571308135112073 ], [ -96.060614170659335, 29.570764135192164 ], [ -96.060545171220838, 29.570594135313577 ], [ -96.060413170569973, 29.570357134696863 ], [ -96.060269171003156, 29.570132135092297 ], [ -96.060168171322985, 29.569995135043424 ], [ -96.06006117081229, 29.569566134944193 ], [ -96.060086170887473, 29.569357134364239 ], [ -96.059998170611337, 29.568901134687508 ], [ -96.06000517122267, 29.56866513458014 ], [ -96.059854170569054, 29.568588134857841 ], [ -96.059527170714901, 29.568582135012786 ], [ -96.059407170921958, 29.568544134510688 ], [ -96.059294171049615, 29.568483134417644 ], [ -96.059219170937581, 29.568412134485502 ], [ -96.059118170891637, 29.56828013460321 ], [ -96.059074170968884, 29.568186134813338 ], [ -96.059030170138442, 29.567994134956884 ], [ -96.058993170953272, 29.567912134269932 ], [ -96.058942170607338, 29.567835134560816 ], [ -96.058854170314703, 29.567791134750411 ], [ -96.058684170399474, 29.56778013439618 ], [ -96.058596170366812, 29.567807134357246 ], [ -96.058471170640104, 29.567879134532376 ], [ -96.058357170196928, 29.567966134275586 ], [ -96.058288170602665, 29.567999134258471 ], [ -96.058244169990914, 29.568005134276795 ], [ -96.05811217059815, 29.567994135021856 ], [ -96.058012169856411, 29.56796113466045 ], [ -96.05799317054101, 29.567933134493146 ], [ -96.057980170719119, 29.567856134487887 ], [ -96.057987170156082, 29.567697134479975 ], [ -96.058056170587236, 29.567395134524126 ], [ -96.05800617058695, 29.567318134770069 ], [ -96.057943169953703, 29.567279134758248 ], [ -96.057490170125817, 29.567219134257499 ], [ -96.05738317030675, 29.567219134097694 ], [ -96.05730117055748, 29.567235134834821 ], [ -96.05725717006743, 29.567257134226733 ], [ -96.057169169729903, 29.567351134866701 ], [ -96.057131169668196, 29.567417134320806 ], [ -96.057094170539045, 29.567444134462001 ], [ -96.05701216991406, 29.567472134556606 ], [ -96.056955169961938, 29.567450134075198 ], [ -96.056911169685577, 29.567422134182433 ], [ -96.056868169486876, 29.567373134729326 ], [ -96.056792170051963, 29.567263134270153 ], [ -96.056622169432202, 29.567109134869252 ], [ -96.05642716963284, 29.567015134283562 ], [ -96.055969169637493, 29.566878134748926 ], [ -96.055698169850814, 29.566763134532881 ], [ -96.055588169871001, 29.56667913407691 ], [ -96.055547170085774, 29.566647134631815 ], [ -96.055327169117476, 29.566411134345255 ], [ -96.054963169563308, 29.566026134306185 ], [ -96.054762169208871, 29.565839134476132 ], [ -96.05460416955728, 29.565729133860419 ], [ -96.054309169305327, 29.565542134594992 ], [ -96.054152169348754, 29.565460133955909 ], [ -96.054101168736352, 29.565454134096701 ], [ -96.053894169102691, 29.565476134311204 ], [ -96.053800169083104, 29.565476134190614 ], [ -96.053693169154613, 29.565454133792436 ], [ -96.053580169349829, 29.565388133903376 ], [ -96.053536169527121, 29.565344134040497 ], [ -96.053441169227895, 29.565218133798744 ], [ -96.053397169117758, 29.565207134262788 ], [ -96.05333416946506, 29.565207134439568 ], [ -96.053246168704547, 29.56522913427828 ], [ -96.053033169349789, 29.565256133840432 ], [ -96.052938168707925, 29.565251134333518 ], [ -96.05286316868829, 29.565229134360333 ], [ -96.052731168382707, 29.565152134316079 ], [ -96.052643168407428, 29.565130133860364 ], [ -96.052530168712437, 29.56517913395415 ], [ -96.052398169064759, 29.565251134012225 ], [ -96.052329168745118, 29.565262134578095 ], [ -96.05227816858168, 29.565245134500284 ], [ -96.05220316895975, 29.56521213463364 ], [ -96.052046168278551, 29.565058134039425 ], [ -96.051958168305347, 29.564987133908527 ], [ -96.051863168673989, 29.564915133724238 ], [ -96.0517561682326, 29.564871134484168 ], [ -96.051492168989896, 29.564827134573296 ], [ -96.051235168058099, 29.564756133927251 ], [ -96.050958168044488, 29.56467313449479 ], [ -96.050713167988036, 29.564574133681784 ], [ -96.050549167843073, 29.564558134005395 ], [ -96.050405168322015, 29.564618134173916 ], [ -96.050329167789457, 29.564635133902037 ], [ -96.05022316805713, 29.56464013396462 ], [ -96.050015167853573, 29.564624134366802 ], [ -96.049789167568704, 29.564492134409228 ], [ -96.049657167708659, 29.564354134235113 ], [ -96.049430168322033, 29.564228134404743 ], [ -96.049349168409051, 29.564206134541671 ], [ -96.048789168282028, 29.564156133877212 ], [ -96.048469167699182, 29.564057133717363 ], [ -96.048010167993311, 29.563893133708049 ], [ -96.04751916728766, 29.563805133640273 ], [ -96.047368167019968, 29.563761134262961 ], [ -96.047249167789985, 29.563656133833959 ], [ -96.047117167136705, 29.563464134228557 ], [ -96.047086166882309, 29.563381134161904 ], [ -96.047016167800521, 29.563282134323966 ], [ -96.0469221674403, 29.563216133846225 ], [ -96.046834167155907, 29.563194134001407 ], [ -96.046740166938918, 29.563189134080442 ], [ -96.046627166791353, 29.563194133733752 ], [ -96.046520167595091, 29.563178134080012 ], [ -96.046444166805088, 29.563150134262809 ], [ -96.046080167000142, 29.563057134303641 ], [ -96.045822167270217, 29.562969133686099 ], [ -96.045671166463507, 29.562859134127006 ], [ -96.045602166517952, 29.562787134117894 ], [ -96.045483167179697, 29.562705133878836 ], [ -96.045294167283998, 29.562666134042608 ], [ -96.045131167072924, 29.56257313390384 ], [ -96.044753166496889, 29.562364133818356 ], [ -96.044603167103404, 29.562243133905895 ], [ -96.044546166802647, 29.5621391335998 ], [ -96.044502166777818, 29.561952133691221 ], [ -96.044508166579988, 29.561831133979283 ], [ -96.044741166596737, 29.56027013335822 ], [ -96.044918166338704, 29.559253133283036 ], [ -96.044880166725704, 29.559154133373678 ], [ -96.044830166116725, 29.559066133185798 ], [ -96.044805166144329, 29.55890113340056 ], [ -96.044924166978589, 29.558061133392691 ], [ -96.04493116635868, 29.557967133339279 ], [ -96.044918166220612, 29.557907133267516 ], [ -96.04482416610702, 29.557758132996618 ], [ -96.044729166852846, 29.55764313277427 ], [ -96.044585166801738, 29.557588132557235 ], [ -96.044503166497037, 29.557582132531632 ], [ -96.04435916611996, 29.557599133320668 ], [ -96.044277165918032, 29.557582132689994 ], [ -96.044208166247003, 29.557522133198617 ], [ -96.044182166443989, 29.557461132699366 ], [ -96.044176165960792, 29.557406133116558 ], [ -96.044195165988825, 29.557049132551192 ], [ -96.044183165953442, 29.556956133220208 ], [ -96.044107165864773, 29.556862132721903 ], [ -96.044026165887772, 29.556813132801008 ], [ -96.043868165998603, 29.556840132716257 ], [ -96.04379916647963, 29.556829132384784 ], [ -96.043755165978766, 29.55680213246988 ], [ -96.04372416578714, 29.556758133073139 ], [ -96.04372416636609, 29.556714133002803 ], [ -96.043755166702084, 29.556664132882393 ], [ -96.043824165822997, 29.556615132461069 ], [ -96.043950165779719, 29.556554132348644 ], [ -96.044051166285911, 29.556445132580837 ], [ -96.044133165891438, 29.556313132384922 ], [ -96.044139166717912, 29.556203133033016 ], [ -96.044126166299662, 29.556137132582037 ], [ -96.044063166685987, 29.556060132181166 ], [ -96.04400116585073, 29.556038132722641 ], [ -96.043762165869978, 29.556016132477968 ], [ -96.043680166115493, 29.55598813278629 ], [ -96.043611166120868, 29.555906132881347 ], [ -96.043567165776921, 29.555829132540921 ], [ -96.043636166378974, 29.555417132822033 ], [ -96.043630166400945, 29.555356132932918 ], [ -96.04359816571619, 29.55529013207499 ], [ -96.043535165964215, 29.55521313229044 ], [ -96.043234165518228, 29.555010132564764 ], [ -96.043177165793068, 29.554944132151455 ], [ -96.043158165951027, 29.554900132557922 ], [ -96.043146166315225, 29.554741132009106 ], [ -96.043102165579953, 29.554620132262137 ], [ -96.043058165510502, 29.55457613225207 ], [ -96.042907166005037, 29.554493132042094 ], [ -96.042750165652905, 29.55437813204373 ], [ -96.042612165842556, 29.553932132305711 ], [ -96.04258016620885, 29.553867132129081 ], [ -96.042524166022034, 29.553790132260946 ], [ -96.04221016606887, 29.553542132099146 ], [ -96.041883166066029, 29.553355132396195 ], [ -96.041826166046064, 29.553289132239787 ], [ -96.041795166051514, 29.553234131839794 ], [ -96.041776165462309, 29.55311313221025 ], [ -96.041851165313261, 29.552426131748842 ], [ -96.041877165190087, 29.552333132331452 ], [ -96.042053165390698, 29.552146131526928 ], [ -96.042116165464492, 29.552108131557787 ], [ -96.042235165886964, 29.552058132206245 ], [ -96.042317165380211, 29.552003131916226 ], [ -96.042373165510142, 29.551921132111648 ], [ -96.042392166112435, 29.551783131949652 ], [ -96.042380165375732, 29.551410131605472 ], [ -96.04292116556671, 29.550723131361448 ], [ -96.042952165966227, 29.550651131320745 ], [ -96.042958166140082, 29.550569131290171 ], [ -96.042870165969887, 29.550459131828823 ], [ -96.042694165227559, 29.550283131052705 ], [ -96.042110165394135, 29.549942131702572 ], [ -96.041921165779286, 29.549893131415885 ], [ -96.041720165106071, 29.549882131529362 ], [ -96.04163816543695, 29.549860131601015 ], [ -96.041576165118954, 29.549827131314551 ], [ -96.041544165281707, 29.549794131318901 ], [ -96.041506165287828, 29.549722131302044 ], [ -96.041488165051959, 29.549656131751298 ], [ -96.041530165038054, 29.549458131416234 ], [ -96.041701165755768, 29.548991131500173 ], [ -96.041720165654993, 29.548854131367669 ], [ -96.041676164937286, 29.548766131489874 ], [ -96.041601165166625, 29.548672131488154 ], [ -96.041551165312725, 29.548552130978003 ], [ -96.04154416569402, 29.548491131316972 ], [ -96.041557164938979, 29.548425130710925 ], [ -96.041651165796893, 29.548123130662976 ], [ -96.0416391651558, 29.547963131414022 ], [ -96.041607164948786, 29.547897130807758 ], [ -96.041394165038383, 29.547694130550514 ], [ -96.041256165350049, 29.547617130776469 ], [ -96.041205165350121, 29.547573131271196 ], [ -96.041168165210848, 29.547458130508907 ], [ -96.041193165132782, 29.54709513102042 ], [ -96.04123716466826, 29.546936130668218 ], [ -96.041268165297254, 29.546859130735374 ], [ -96.041344165095751, 29.54674313091683 ], [ -96.041576165161374, 29.546523130784717 ], [ -96.04171516561621, 29.546419130628223 ], [ -96.041796165617242, 29.546370130508258 ], [ -96.042023165070958, 29.546315130311569 ], [ -96.042098165402479, 29.546271131105659 ], [ -96.042136165652991, 29.546232130492857 ], [ -96.042205165222299, 29.546128130245336 ], [ -96.042249165827485, 29.546007130423529 ], [ -96.042262165168481, 29.545908130936748 ], [ -96.042387165268778, 29.545721130743335 ], [ -96.042463165459509, 29.545628130462124 ], [ -96.042595164975793, 29.545540130547717 ], [ -96.042878165619129, 29.545446130071404 ], [ -96.042978165323618, 29.5453911303503 ], [ -96.043048165065187, 29.545320130736268 ], [ -96.043513165319126, 29.544237129772696 ], [ -96.04355716609939, 29.544012130191373 ], [ -96.043538165722822, 29.543644130113584 ], [ -96.043519166039687, 29.543583129646027 ], [ -96.043482165938144, 29.543523130167195 ], [ -96.043444165366992, 29.543484130277427 ], [ -96.043413165652069, 29.543479129680804 ], [ -96.043274165364224, 29.543490129987052 ], [ -96.042903165773794, 29.543682130226479 ], [ -96.042677165405976, 29.543704129823176 ], [ -96.042514165360998, 29.5436661297312 ], [ -96.04238816482993, 29.543611130197288 ], [ -96.042262165353321, 29.543523129946269 ], [ -96.042218165306991, 29.543402130403745 ], [ -96.042218165084165, 29.543336130062094 ], [ -96.042231165639194, 29.543220129770745 ], [ -96.042300165615416, 29.542945129689251 ], [ -96.042300165605795, 29.542907129738399 ], [ -96.042288165693435, 29.542858130110204 ], [ -96.042200164922747, 29.542737130243495 ], [ -96.042149165240559, 29.542682129602539 ], [ -96.041766164731243, 29.54237412957827 ], [ -96.041659165518581, 29.542319129970853 ], [ -96.041414165395395, 29.542225129448507 ], [ -96.041213165145223, 29.542165129783704 ], [ -96.041049164666788, 29.542077129532554 ], [ -96.040980164562953, 29.54200012980634 ], [ -96.040943165140789, 29.541923129682761 ], [ -96.040918164900276, 29.541742129379639 ], [ -96.040911164543274, 29.541516129964577 ], [ -96.040943164307578, 29.54084012949404 ], [ -96.040993164601204, 29.54068112917696 ], [ -96.041144164923665, 29.540521129916943 ], [ -96.041345165111295, 29.540379129322847 ], [ -96.041446164636824, 29.540335129048763 ], [ -96.04167816529737, 29.540274129920338 ], [ -96.041955164752181, 29.54024712922477 ], [ -96.042257165136732, 29.540252129201452 ], [ -96.042885164967757, 29.54029612963102 ], [ -96.043042165096111, 29.540329129176502 ], [ -96.043156165299138, 29.540373129498242 ], [ -96.043269165242918, 29.54042812977567 ], [ -96.043451165224511, 29.5405551291176 ], [ -96.043627164975391, 29.54058212989106 ], [ -96.044017166014783, 29.540527129097025 ], [ -96.044827165500891, 29.540374128934335 ], [ -96.045010165383729, 29.540368129440125 ], [ -96.04516116630154, 29.540418129168522 ], [ -96.045242166183257, 29.540456129243591 ], [ -96.045286166161148, 29.540462129737026 ], [ -96.045450166098192, 29.540440129651287 ], [ -96.045500165845354, 29.54040112970025 ], [ -96.045594166183051, 29.540297129575848 ], [ -96.045726166188402, 29.540181129014485 ], [ -96.045777165946561, 29.540154129045465 ], [ -96.04593416591571, 29.540099129251722 ], [ -96.046022166469029, 29.540088129632295 ], [ -96.046085166224287, 29.540088129632835 ], [ -96.046223165906099, 29.540116129661527 ], [ -96.046713166373692, 29.540270129237747 ], [ -96.046807166153101, 29.540275129658149 ], [ -96.046902165772423, 29.540204129660534 ], [ -96.047034165986673, 29.540077129147416 ], [ -96.04710916675586, 29.540033129036438 ], [ -96.047128166269133, 29.539962129278877 ], [ -96.047103166740357, 29.53987412914994 ], [ -96.047021166237244, 29.539769129401666 ], [ -96.046889165767126, 29.53968712933278 ], [ -96.046795165860189, 29.539643128968624 ], [ -96.046763166324851, 29.539599129617638 ], [ -96.04674516584619, 29.539550128735218 ], [ -96.046732166702668, 29.539473128716281 ], [ -96.046751165894264, 29.539374129510545 ], [ -96.04681416660226, 29.539275129157627 ], [ -96.047600166870609, 29.538599128825428 ], [ -96.047926166334577, 29.538330128885796 ], [ -96.048008166096523, 29.538275128871909 ], [ -96.048121166977367, 29.538286128483115 ], [ -96.048360166118471, 29.538456128686331 ], [ -96.048775166302846, 29.53889612911038 ], [ -96.048938166700168, 29.539006128629222 ], [ -96.049183167084351, 29.539110128547595 ], [ -96.049209166492318, 29.539127129049323 ], [ -96.049234166355845, 29.539209129399559 ], [ -96.049202166908259, 29.539341128729234 ], [ -96.048706166972678, 29.540154129244968 ], [ -96.048680166669484, 29.540292129353002 ], [ -96.048674166929842, 29.540385129312476 ], [ -96.048680166975117, 29.540446129126369 ], [ -96.048762166541351, 29.540578128995495 ], [ -96.04885616642153, 29.540660129650554 ], [ -96.048900167279569, 29.540682129691717 ], [ -96.048957166808222, 29.540693129080726 ], [ -96.049007166610551, 29.540688129386808 ], [ -96.049057166796715, 29.54066612891393 ], [ -96.049328166618068, 29.540457129385672 ], [ -96.049435166679871, 29.540413129207405 ], [ -96.049479166607597, 29.540413128946764 ], [ -96.049598167287542, 29.540435129264189 ], [ -96.04968016713093, 29.540479129092976 ], [ -96.049837167411795, 29.540600129089331 ], [ -96.04991916697918, 29.540677129342605 ], [ -96.050095167606216, 29.540792129149708 ], [ -96.050170167484509, 29.540809129166817 ], [ -96.050371166816092, 29.540809128862229 ], [ -96.050465166804585, 29.540787129098959 ], [ -96.050534167458537, 29.540759129040243 ], [ -96.050993167744508, 29.540380128876823 ], [ -96.051081166954518, 29.540248129503219 ], [ -96.051100167714338, 29.540122129510564 ], [ -96.051069167729409, 29.539627129392585 ], [ -96.051289167767308, 29.538918128568501 ], [ -96.051333166895574, 29.538748129048766 ], [ -96.051352167491444, 29.538478128801366 ], [ -96.051408166942892, 29.538390128623721 ], [ -96.051471167670144, 29.538341128429984 ], [ -96.051616167772451, 29.53828012886137 ], [ -96.052339167195782, 29.538116128855314 ], [ -96.052408167765819, 29.538105128628928 ], [ -96.052521167340387, 29.53811012873042 ], [ -96.052615168041584, 29.538138128871537 ], [ -96.052691167694462, 29.538171128614071 ], [ -96.052747167483446, 29.538215128426693 ], [ -96.052804167237554, 29.538270129087689 ], [ -96.052842167865379, 29.538330129074815 ], [ -96.052848167823569, 29.538413128759288 ], [ -96.052829167207662, 29.538522129134574 ], [ -96.052766167579463, 29.538660128555879 ], [ -96.052747167726878, 29.538726128810634 ], [ -96.05276016756082, 29.53878112899341 ], [ -96.052854167329556, 29.538869128907042 ], [ -96.052923168157093, 29.538896129211235 ], [ -96.053753167653554, 29.539072128446708 ], [ -96.054092167671286, 29.539204128402424 ], [ -96.054187168094955, 29.539281129038411 ], [ -96.054457167644358, 29.539441129044267 ], [ -96.054564168241015, 29.539517129249884 ], [ -96.055154168089118, 29.5398691285809 ], [ -96.055431168043484, 29.539952129297152 ], [ -96.055758168412964, 29.539979128607929 ], [ -96.055840168757484, 29.539968128527963 ], [ -96.055984168079533, 29.539886129273537 ], [ -96.056135168722733, 29.53977012908166 ], [ -96.056330168663422, 29.539496129196166 ], [ -96.056374168247345, 29.539413128439374 ], [ -96.056430168485633, 29.539265129057323 ], [ -96.056443168184884, 29.539078129023455 ], [ -96.05642416882489, 29.538979128816212 ], [ -96.056242168099232, 29.538726128270678 ], [ -96.056166168998715, 29.538655128919959 ], [ -96.056104168861779, 29.538545128236535 ], [ -96.056079168896858, 29.538435128939923 ], [ -96.056116168192077, 29.537836128199107 ], [ -96.056066168506334, 29.537720128764406 ], [ -96.056016168566643, 29.537687128469795 ], [ -96.055720168631439, 29.537594128773698 ], [ -96.055632168549337, 29.537517128099203 ], [ -96.055582168425985, 29.53744012838132 ], [ -96.055538168149241, 29.537363128088202 ], [ -96.055532168109224, 29.53733012807043 ], [ -96.05552616782748, 29.537204128415652 ], [ -96.055563168791423, 29.537006128400193 ], [ -96.055551167832462, 29.536901128406274 ], [ -96.055526167992923, 29.536863128553055 ], [ -96.055469168690664, 29.536819128649416 ], [ -96.0553811683655, 29.536813128238144 ], [ -96.055299168055697, 29.536841128750066 ], [ -96.055192167978134, 29.536945128073832 ], [ -96.055098167945403, 29.536951128555735 ], [ -96.054972168340782, 29.536929128724083 ], [ -96.054903168217194, 29.536890128024144 ], [ -96.054897167807042, 29.536808128474675 ], [ -96.054916167978718, 29.536742127933085 ], [ -96.054897168633943, 29.536720128161068 ], [ -96.054841167733116, 29.536676128310052 ], [ -96.05475216794585, 29.536643128624892 ], [ -96.054702168399459, 29.536637128128071 ], [ -96.054677167904671, 29.536577128006446 ], [ -96.054579168251323, 29.536002128515928 ], [ -96.0544891675423, 29.53547212839581 ], [ -96.054476168059253, 29.535247127899662 ], [ -96.054570167632221, 29.535197127692957 ], [ -96.054807167549697, 29.535182128101471 ], [ -96.054822168072349, 29.535181128134024 ], [ -96.055017168241591, 29.535153127581911 ], [ -96.055054167950942, 29.535098127724027 ], [ -96.055054167766684, 29.535033128397338 ], [ -96.055149168552731, 29.534236127814509 ], [ -96.055230168417125, 29.534049127975226 ], [ -96.055375168321547, 29.533906127961654 ], [ -96.05545016771795, 29.533757127533192 ], [ -96.055450167809568, 29.533697127523705 ], [ -96.055469167877746, 29.533609127686194 ], [ -96.055434168535143, 29.533160127175272 ], [ -96.055432167983213, 29.533136127155061 ], [ -96.055319168044974, 29.5329091274048 ], [ -96.05524916848799, 29.532768127212695 ], [ -96.055212168233282, 29.532642127894373 ], [ -96.055231168459187, 29.532576127272652 ], [ -96.055375167812343, 29.532306127409736 ], [ -96.055413168046442, 29.532186127560561 ], [ -96.055432167963886, 29.532048127224002 ], [ -96.055419168526669, 29.531911127106994 ], [ -96.055375167667108, 29.531773127422564 ], [ -96.055294167770398, 29.531630127636024 ], [ -96.055074167713457, 29.531356127171133 ], [ -96.054998168110458, 29.531279127523508 ], [ -96.054879167674855, 29.531213127034295 ], [ -96.054659167933792, 29.531119126895216 ], [ -96.054891168195581, 29.530877126808349 ], [ -96.05496116822718, 29.53083912718045 ], [ -96.055149168229562, 29.530773126797364 ], [ -96.055451167585147, 29.530619127268533 ], [ -96.055507168297808, 29.530570127221896 ], [ -96.055545167929594, 29.530482126962212 ], [ -96.055558167606108, 29.530300126885919 ], [ -96.055514167937787, 29.530108126533403 ], [ -96.055457168096723, 29.52997112669285 ], [ -96.055407167668491, 29.529894126696114 ], [ -96.054772167857763, 29.528668126261941 ], [ -96.054709167354233, 29.528519126855244 ], [ -96.054684167755696, 29.52834912689752 ], [ -96.054691167487306, 29.528113126583374 ], [ -96.054898167811899, 29.52773912646602 ], [ -96.054999168031031, 29.527448126383124 ], [ -96.05529416755526, 29.52682712638962 ], [ -96.055640167916437, 29.52617812573212 ], [ -96.055659167949315, 29.526085126430583 ], [ -96.055671167348422, 29.525898126493455 ], [ -96.055646167352023, 29.525793126076241 ], [ -96.055571167495273, 29.525617125897657 ], [ -96.055464168042676, 29.525508126249566 ], [ -96.055363167556948, 29.525447126413365 ], [ -96.055238167582758, 29.525414126305414 ], [ -96.055150167938621, 29.525420126091852 ], [ -96.055024167694938, 29.525447126434486 ], [ -96.054886167880909, 29.52551312591044 ], [ -96.054471167340409, 29.525667126445462 ], [ -96.054006167007628, 29.525766126114522 ], [ -96.053836167519165, 29.525760126318819 ], [ -96.053641167388108, 29.525727126440103 ], [ -96.053314167185107, 29.525733126035757 ], [ -96.052636166850832, 29.525546125809409 ], [ -96.05254816724468, 29.52552912640418 ], [ -96.052422167066112, 29.52546912648258 ], [ -96.052347167501949, 29.525419125865604 ], [ -96.052271166475748, 29.52534812649035 ], [ -96.052209167013217, 29.525265125631119 ], [ -96.052064166722246, 29.524974125897614 ], [ -96.05200716726246, 29.524809125648783 ], [ -96.051970167264741, 29.52473812591025 ], [ -96.051875166635796, 29.524617125525825 ], [ -96.05175016706977, 29.524512125875169 ], [ -96.051348167087014, 29.524320125958042 ], [ -96.051281166471668, 29.524281125649786 ], [ -96.051202166461152, 29.524235125660514 ], [ -96.051084167077136, 29.524166126248453 ], [ -96.051002166828894, 29.524095125541397 ], [ -96.050902166105274, 29.523979126279151 ], [ -96.050814166938849, 29.523831125681454 ], [ -96.050763166773024, 29.523699126066504 ], [ -96.050744166107492, 29.523594126033775 ], [ -96.050751166327871, 29.52341312546902 ], [ -96.050776166589117, 29.523254125914455 ], [ -96.050820166537918, 29.523166125619195 ], [ -96.050920166219697, 29.523028125273871 ], [ -96.051316166487183, 29.522781125592903 ], [ -96.051675166407676, 29.52256712541347 ], [ -96.051744166691634, 29.522490125226479 ], [ -96.051807166655891, 29.52244012576768 ], [ -96.051913166928884, 29.522297125916207 ], [ -96.052485166364235, 29.521445125025661 ], [ -96.052573167371037, 29.521347125334142 ], [ -96.052793167306845, 29.521132125453278 ], [ -96.053648166784882, 29.520357125226887 ], [ -96.053755167632858, 29.520253125336943 ], [ -96.054251167524157, 29.519967124958242 ], [ -96.054396167151992, 29.519945124629469 ], [ -96.054515167211008, 29.519940125262792 ], [ -96.054610167101814, 29.519912124815676 ], [ -96.054687167317738, 29.519837125310566 ], [ -96.054717167511498, 29.519808125071133 ], [ -96.054742166932016, 29.519769125185523 ], [ -96.054767167436609, 29.519698124673308 ], [ -96.054767167364304, 29.519654125249843 ], [ -96.055156167298364, 29.519066124300579 ], [ -96.05519416712815, 29.518989124554686 ], [ -96.055251167576174, 29.518928124413062 ], [ -96.055458167143897, 29.518780124176672 ], [ -96.055521168027823, 29.518709124730858 ], [ -96.055571167974591, 29.518643124365273 ], [ -96.055772167723731, 29.518307124106052 ], [ -96.055797167563171, 29.518093124577867 ], [ -96.055772167111215, 29.518016124421386 ], [ -96.055722167935883, 29.517917124089514 ], [ -96.055634168018429, 29.517818124369015 ], [ -96.055446167739234, 29.517725124561178 ], [ -96.055232166936804, 29.517659124390782 ], [ -96.055018167596089, 29.517637124243823 ], [ -96.054918167033023, 29.517653124307738 ], [ -96.054729167270338, 29.517664124578996 ], [ -96.054673167598821, 29.517664124621913 ], [ -96.054403167485873, 29.517708124904928 ], [ -96.054277167516346, 29.517692124089855 ], [ -96.054189167264838, 29.517664124138882 ], [ -96.054101167268684, 29.51761512400866 ], [ -96.053931166691058, 29.517417124516449 ], [ -96.053868166880818, 29.517301124015791 ], [ -96.053705166865342, 29.516994124197243 ], [ -96.053315166541879, 29.516499124315207 ], [ -96.053234167101465, 29.516433124505905 ], [ -96.053133167289104, 29.516290124020063 ], [ -96.053102166601221, 29.516213124594223 ], [ -96.05309616647493, 29.516153123841377 ], [ -96.053102166290003, 29.516065124483752 ], [ -96.053127167101877, 29.515982124534069 ], [ -96.053209167154634, 29.515894124416551 ], [ -96.053290166433058, 29.515861123867456 ], [ -96.053410167035281, 29.515845124529573 ], [ -96.053969166877266, 29.515839124340729 ], [ -96.054321167128961, 29.515818124302285 ], [ -96.054415166982977, 29.515785124335206 ], [ -96.054478167206696, 29.515752123609335 ], [ -96.05455416736558, 29.515686124253406 ], [ -96.054635167035173, 29.515554124350455 ], [ -96.054667166934905, 29.515471124003486 ], [ -96.054717167370001, 29.514625124248454 ], [ -96.054704166923557, 29.514542123438062 ], [ -96.054679167124334, 29.514498123728661 ], [ -96.054642166957677, 29.514471124003553 ], [ -96.054598167369861, 29.514454123980197 ], [ -96.05446616675593, 29.514449123351529 ], [ -96.054403167441052, 29.514438123707841 ], [ -96.05435916747831, 29.514405123705693 ], [ -96.054309167133866, 29.514350123957001 ], [ -96.054315166631056, 29.514180124072176 ], [ -96.053762167202819, 29.513449123559798 ], [ -96.05373716704463, 29.51340512364165 ], [ -96.053724166904146, 29.513339123549862 ], [ -96.053731167286855, 29.513267123513554 ], [ -96.054082166982113, 29.512696123514623 ], [ -96.054101167205971, 29.512652123043051 ], [ -96.054177167151394, 29.512514123008398 ], [ -96.054189167023353, 29.512470123500968 ], [ -96.054208167020576, 29.512206123735336 ], [ -96.054196167057327, 29.512168123652199 ], [ -96.054164166823938, 29.512124122977646 ], [ -96.054120167383843, 29.512085123471106 ], [ -96.054039167205843, 29.512047123606354 ], [ -96.053925167245367, 29.512014123240185 ], [ -96.053680166398124, 29.512009123325537 ], [ -96.053234166596852, 29.511970123115873 ], [ -96.053077166565771, 29.511947123224964 ], [ -96.052933166255187, 29.511926123729172 ], [ -96.0528351663297, 29.51188512365804 ], [ -96.05229816599396, 29.511662122834601 ], [ -96.051990166075896, 29.51156312301152 ], [ -96.051846166112611, 29.511536122932554 ], [ -96.051381165670605, 29.511508123097062 ], [ -96.051098165978715, 29.511547123674404 ], [ -96.050884166191778, 29.511552123362058 ], [ -96.050821165625337, 29.511536123499216 ], [ -96.05041916623712, 29.511492123067956 ], [ -96.050149166147506, 29.511376123473596 ], [ -96.050005165763608, 29.511305123647787 ], [ -96.049791165414845, 29.511178122928129 ], [ -96.049697165523128, 29.511107123310897 ], [ -96.049584165605381, 29.51100212312064 ], [ -96.049496166103324, 29.510903123479984 ], [ -96.049326166053007, 29.510612123478083 ], [ -96.049207165953547, 29.510486122992333 ], [ -96.048170165629756, 29.509914123500849 ], [ -96.047938164882495, 29.509870122709053 ], [ -96.047812165627661, 29.509837122797062 ], [ -96.047699164970581, 29.509776123182693 ], [ -96.047290164937237, 29.509672123284911 ], [ -96.047196164577315, 29.509677123059483 ], [ -96.047096164545522, 29.509710123467581 ], [ -96.046825164646748, 29.509831123452731 ], [ -96.046222164389164, 29.510123123152859 ], [ -96.045977164816009, 29.510216123186982 ], [ -96.045883165038347, 29.510238122951613 ], [ -96.045657164875479, 29.510232122825311 ], [ -96.045506164999196, 29.510194123014188 ], [ -96.045104164392441, 29.510067122802788 ], [ -96.044752164063553, 29.50998512348022 ], [ -96.044431164778175, 29.509990122773154 ], [ -96.044318164229949, 29.510018123144956 ], [ -96.044130164734426, 29.510001123391845 ], [ -96.043916163734011, 29.509880123244194 ], [ -96.043872163661547, 29.509864123244604 ], [ -96.043778164106001, 29.50985312340703 ], [ -96.043527163570545, 29.509880123594005 ], [ -96.04333816441364, 29.509935123369459 ], [ -96.042929163855391, 29.510023122913971 ], [ -96.042465163430933, 29.510078122891958 ], [ -96.042238163756721, 29.510073122892706 ], [ -96.041824164016518, 29.510006122982407 ], [ -96.04142816329211, 29.509825123257158 ], [ -96.041271163382063, 29.509781123588049 ], [ -96.040925163715727, 29.509731123166141 ], [ -96.040272163261719, 29.509693123572479 ], [ -96.039983162709291, 29.5096431236367 ], [ -96.039643162850084, 29.509874123408302 ], [ -96.039461163555558, 29.509968123230895 ], [ -96.038996163246807, 29.510182123785562 ], [ -96.038883162728382, 29.510248123449475 ], [ -96.038801162420455, 29.510242123533288 ], [ -96.038638163007988, 29.510209123840152 ], [ -96.038462162587592, 29.510220123493689 ], [ -96.038368163095981, 29.510242123432452 ], [ -96.038267162313019, 29.51028112343937 ], [ -96.03811616236294, 29.510402123794378 ], [ -96.037934163033384, 29.510462123356302 ], [ -96.037833162963693, 29.51045612333813 ], [ -96.037727162728288, 29.510418123532528 ], [ -96.037576162853753, 29.510385123101173 ], [ -96.03748216233484, 29.510374123325512 ], [ -96.037362162283756, 29.510429123958481 ], [ -96.037287162578465, 29.510484123617665 ], [ -96.036822161920995, 29.510704123376687 ], [ -96.036727162255943, 29.510770124049895 ], [ -96.036602162059651, 29.510824123233395 ], [ -96.036526162323185, 29.510835123196859 ], [ -96.036313162230996, 29.510819123278402 ], [ -96.036068162361829, 29.510764123516676 ], [ -96.035659162027756, 29.510648123329812 ], [ -96.035515161943948, 29.510577123895342 ], [ -96.035439162265405, 29.510478123569463 ], [ -96.035377161929276, 29.51043412347633 ], [ -96.035138162405772, 29.510307123858752 ], [ -96.035012162177267, 29.510296123818105 ], [ -96.034616161369058, 29.510329123511575 ], [ -96.034428161386245, 29.510313123677012 ], [ -96.034359161718939, 29.510296123635758 ], [ -96.034195161334765, 29.510236123692714 ], [ -96.034126161998756, 29.510207123781242 ], [ -96.033655161363058, 29.510010123619157 ], [ -96.033580161909924, 29.50995512332398 ], [ -96.033366161232934, 29.509747123792341 ], [ -96.033253161079671, 29.509620123492624 ], [ -96.033184161300852, 29.509565123438001 ], [ -96.032989161751985, 29.509444123759661 ], [ -96.03286416124682, 29.509384123095732 ], [ -96.032229161167692, 29.509158123038503 ], [ -96.032110161564844, 29.509131123128313 ], [ -96.031752160736133, 29.508966123815366 ], [ -96.031437161471558, 29.508713123176932 ], [ -96.031312160577045, 29.508592123019895 ], [ -96.03123016127104, 29.508476123137164 ], [ -96.030784160528356, 29.508015123140375 ], [ -96.030665160658771, 29.507877122896573 ], [ -96.030583160388815, 29.507828123598188 ], [ -96.030502161177466, 29.507822123625175 ], [ -96.030432160164452, 29.507723123534042 ], [ -96.030338160372608, 29.507635123377483 ], [ -96.030219161126084, 29.507564122871514 ], [ -96.03015016054438, 29.507542122998256 ], [ -96.030087161004587, 29.507542123174108 ], [ -96.029911160233908, 29.507564122937904 ], [ -96.02966616079884, 29.507668122828846 ], [ -96.028918160725723, 29.508855123830816 ], [ -96.028811159783899, 29.508937123903348 ], [ -96.028761160324663, 29.50896512337572 ], [ -96.028704160617849, 29.508981123600666 ], [ -96.028578160098732, 29.508998123523721 ], [ -96.02776816028279, 29.509003123950585 ], [ -96.027674159667811, 29.508987123258255 ], [ -96.027209160097541, 29.508849123894677 ], [ -96.027020160022659, 29.508761123336594 ], [ -96.026920159977252, 29.508690123650432 ], [ -96.02676315955641, 29.508558123416201 ], [ -96.026712159529296, 29.508530123776723 ], [ -96.026185159552213, 29.508338123139204 ], [ -96.026141159771754, 29.508299123141047 ], [ -96.026021159439949, 29.508140123165262 ], [ -96.025902159537296, 29.508046123762494 ], [ -96.025732159083518, 29.507953123153907 ], [ -96.024721159348928, 29.507342123491672 ], [ -96.024476159391924, 29.507172123490736 ], [ -96.024325159456467, 29.507029123198809 ], [ -96.024256158683869, 29.506919123294619 ], [ -96.024212159203898, 29.50673812346686 ], [ -96.024187158899593, 29.506496123367018 ], [ -96.024181158937765, 29.506040123207899 ], [ -96.024250159364769, 29.505930123098619 ], [ -96.024313159137932, 29.505853123054145 ], [ -96.024445159559022, 29.505765123087301 ], [ -96.024627159267723, 29.505595122855109 ], [ -96.02472815945832, 29.505215123299525 ], [ -96.024747159538038, 29.50517712251472 ], [ -96.02477215941407, 29.505150123231331 ], [ -96.024910159569814, 29.505067123074571 ], [ -96.024929158744484, 29.505012123066404 ], [ -96.02499915903239, 29.503814122376824 ], [ -96.024986158799052, 29.503633122167955 ], [ -96.024968159104191, 29.503528122501908 ], [ -96.024942158900274, 29.503418122275495 ], [ -96.024911159063322, 29.503369122618814 ], [ -96.024829159363151, 29.503281122762484 ], [ -96.024767159438056, 29.503248122649456 ], [ -96.024666158934536, 29.503215122650793 ], [ -96.024547158667914, 29.503204122112052 ], [ -96.023837158628353, 29.503253122206495 ], [ -96.023479159158299, 29.503357122786699 ], [ -96.023435158189841, 29.503363122589764 ], [ -96.023133158872852, 29.503330122945094 ], [ -96.02307615814297, 29.503313122392367 ], [ -96.022976158536935, 29.50325312286105 ], [ -96.022718158735799, 29.502972122813421 ], [ -96.022467158906082, 29.502621122399976 ], [ -96.022335158517961, 29.502296122256023 ], [ -96.02233615787722, 29.502098122008473 ], [ -96.022348158011795, 29.502049121992616 ], [ -96.022425157897828, 29.501898122536264 ], [ -96.022468158408486, 29.501813122301396 ], [ -96.022675157992097, 29.501461122068044 ], [ -96.022757158725668, 29.501368122615727 ], [ -96.022851158728031, 29.501285122005761 ], [ -96.02296415817537, 29.501247122048152 ], [ -96.023109158868621, 29.501214121983885 ], [ -96.02338515909085, 29.501181122020395 ], [ -96.023467158181859, 29.501126121642951 ], [ -96.023511158665841, 29.501049122164332 ], [ -96.023599158658598, 29.500692121997645 ], [ -96.023668158971986, 29.500593121880669 ], [ -96.023850158621769, 29.500450121589534 ], [ -96.023951158364866, 29.500302121522139 ], [ -96.024151158885957, 29.499928121695927 ], [ -96.02421415899498, 29.499862121440025 ], [ -96.024321158370356, 29.499785121675643 ], [ -96.024459158424648, 29.499735122188081 ], [ -96.02453515864002, 29.499724122003862 ], [ -96.024767158963925, 29.499604122058145 ], [ -96.025138158991624, 29.499290121767071 ], [ -96.025207158644676, 29.499219121615919 ], [ -96.025239158736497, 29.499153121407872 ], [ -96.025289159404466, 29.498928121618249 ], [ -96.025327159338502, 29.498785121308043 ], [ -96.025352158778759, 29.49873012115982 ], [ -96.025390158695757, 29.498570121630603 ], [ -96.025465159485691, 29.498428121646135 ], [ -96.025497159277236, 29.498329121224156 ], [ -96.025534159035828, 29.498153121010237 ], [ -96.025585159280936, 29.497988121610803 ], [ -96.025654158801231, 29.497895121738296 ], [ -96.025861159111074, 29.497768121010964 ], [ -96.025943159121866, 29.497708121600422 ], [ -96.026056158600255, 29.49760312147512 ], [ -96.026188159342766, 29.49730712116266 ], [ -96.026352158822405, 29.497059121545185 ], [ -96.026377159070151, 29.496966120783245 ], [ -96.026415159225834, 29.496883121005247 ], [ -96.026452158923803, 29.496724121538065 ], [ -96.026497158786981, 29.496290121287021 ], [ -96.02648415940827, 29.496186121060482 ], [ -96.026453158902896, 29.496092120779238 ], [ -96.026321159098487, 29.49591612136933 ], [ -96.026164158918931, 29.495658121179194 ], [ -96.026082158824053, 29.49541612079101 ], [ -96.026082158640008, 29.495339120715354 ], [ -96.026114158989785, 29.495273121194604 ], [ -96.026233158660602, 29.495075120735486 ], [ -96.026265158937264, 29.495031120682881 ], [ -96.026303158592441, 29.494998121178309 ], [ -96.026529159334473, 29.494905120951376 ], [ -96.026755159006754, 29.494856121138721 ], [ -96.026862159079045, 29.494845120656176 ], [ -96.026981159229607, 29.49486712091738 ], [ -96.027019159508299, 29.494911120389624 ], [ -96.027144159214899, 29.495021121088033 ], [ -96.027703159463741, 29.495246120511943 ], [ -96.027835159797306, 29.495274120633653 ], [ -96.027936159742481, 29.49526312033997 ], [ -96.028049159966017, 29.495224120699586 ], [ -96.028131159918985, 29.495169121187381 ], [ -96.028193159925394, 29.495103120345092 ], [ -96.028420160006547, 29.494939120538536 ], [ -96.028596159920625, 29.494873120538536 ], [ -96.028771159308491, 29.494856120819247 ], [ -96.028841159574398, 29.494855120860528 ], [ -96.029098159821999, 29.494851120249749 ], [ -96.02938115937863, 29.4948781202893 ], [ -96.029481159890906, 29.494895120839828 ], [ -96.029620160407262, 29.49495012022572 ], [ -96.030015159960925, 29.495077120958562 ], [ -96.030097159710778, 29.495093120819885 ], [ -96.030304159982151, 29.495181120590736 ], [ -96.030443159883703, 29.495253120984678 ], [ -96.030976159815012, 29.495621121165442 ], [ -96.031146160216039, 29.49564312056588 ], [ -96.031466160082701, 29.495456120422283 ], [ -96.031605160276797, 29.495401120300542 ], [ -96.031938160705081, 29.495193120447862 ], [ -96.032101160623512, 29.495050120547496 ], [ -96.032246160972591, 29.494940120739155 ], [ -96.032485160177387, 29.494572120515603 ], [ -96.032629160320724, 29.494423120193645 ], [ -96.03265416048022, 29.494346120183856 ], [ -96.032654160668486, 29.494242120440177 ], [ -96.032680160480169, 29.4941481199645 ], [ -96.032855160638732, 29.49405512045211 ], [ -96.032899160719637, 29.494000120176477 ], [ -96.032950160824754, 29.493901120183381 ], [ -96.033245160369844, 29.493649120323994 ], [ -96.03333316083048, 29.493484119918737 ], [ -96.033421160502101, 29.493396120321183 ], [ -96.033522160963216, 29.493330119881858 ], [ -96.033635160874042, 29.493143120498669 ], [ -96.033748160525008, 29.493039120443736 ], [ -96.033861160766193, 29.492956119729119 ], [ -96.033974161022243, 29.492890119913419 ], [ -96.034087161431998, 29.492802119627825 ], [ -96.034395160546936, 29.49262711964619 ], [ -96.034471160538587, 29.492605119610928 ], [ -96.034628160802157, 29.492522119775632 ], [ -96.034810160738843, 29.492467120051685 ], [ -96.035030161647782, 29.492451119676151 ], [ -96.035269160984626, 29.492390119868887 ], [ -96.035369161564901, 29.492335119995694 ], [ -96.035526161083538, 29.492292119629106 ], [ -96.035734161689049, 29.492325120130388 ], [ -96.035922160976, 29.492385119646435 ], [ -96.03614816193712, 29.492402119739968 ], [ -96.036632161888278, 29.492457120045067 ], [ -96.037411162056884, 29.492506119469816 ], [ -96.037932161724029, 29.492463119945935 ], [ -96.038454162129383, 29.49236412021023 ], [ -96.038661162282381, 29.492309119599174 ], [ -96.038919161853912, 29.492309119920186 ], [ -96.039314162045017, 29.492287119895146 ], [ -96.039528162303753, 29.492293119467327 ], [ -96.039629162670892, 29.492287119747161 ], [ -96.039761162734209, 29.492243119342 ], [ -96.039842162202291, 29.492232119337224 ], [ -96.039955162269408, 29.492260119928101 ], [ -96.040068162892112, 29.492342119908013 ], [ -96.04019416279948, 29.492403119450287 ], [ -96.040338162270118, 29.492447119364069 ], [ -96.040590162714565, 29.492546120115787 ], [ -96.040822162233979, 29.492601120005631 ], [ -96.040998163126986, 29.492612120047053 ], [ -96.041117163172743, 29.492612120010808 ], [ -96.041300163181432, 29.492590120196631 ], [ -96.041494162910539, 29.492507120077256 ], [ -96.04165816252879, 29.492414119364575 ], [ -96.04183416313569, 29.492293119843026 ], [ -96.04190316339988, 29.492200120030958 ], [ -96.042135163366524, 29.49194211976468 ], [ -96.042305162856934, 29.491804119445508 ], [ -96.042519163431066, 29.491672119970165 ], [ -96.042556163389918, 29.491623119113065 ], [ -96.042644163408141, 29.491546119669881 ], [ -96.042707162969862, 29.491513119145157 ], [ -96.042801162892616, 29.491486119810919 ], [ -96.042958162617794, 29.491507119852461 ], [ -96.04301516333912, 29.491557119324746 ], [ -96.043122162918834, 29.491716119154674 ], [ -96.043203163542358, 29.491766119701946 ], [ -96.043404163704849, 29.491837119782286 ], [ -96.044051163805761, 29.492134119458523 ], [ -96.045157163607499, 29.49255211918387 ], [ -96.045295163964113, 29.492591119789239 ], [ -96.045389164282426, 29.492596119529399 ], [ -96.045503163589444, 29.492585119953063 ], [ -96.045622164266746, 29.492541119781304 ], [ -96.04582916355173, 29.492338119722163 ], [ -96.045911163757879, 29.492168119362674 ], [ -96.046068164333008, 29.491915119376955 ], [ -96.046194164114553, 29.491805119891126 ], [ -96.046414163674967, 29.491585119208175 ], [ -96.04651416373936, 29.491552119577445 ], [ -96.046810164434277, 29.491371119353047 ], [ -96.047048164373678, 29.491316119357396 ], [ -96.047212163815061, 29.491261119493984 ], [ -96.047356163864364, 29.49127811936027 ], [ -96.047450164207348, 29.491333119560672 ], [ -96.04752616416323, 29.49151411897018 ], [ -96.047639164257177, 29.491580119667898 ], [ -96.048079164046726, 29.49171711923 ], [ -96.048732164729472, 29.492031119334392 ], [ -96.048945164254476, 29.492102119621599 ], [ -96.049454165152497, 29.492262119440632 ], [ -96.049643165268392, 29.492344119180878 ], [ -96.049881165102462, 29.492383119302051 ], [ -96.049969164911445, 29.492405119690098 ], [ -96.050133165506125, 29.492454119280577 ], [ -96.050202165272736, 29.492460119874021 ], [ -96.050434165416021, 29.49255911984077 ], [ -96.050547165227485, 29.492641119772657 ], [ -96.050604165294388, 29.492696119771466 ], [ -96.050660165566825, 29.492729119041254 ], [ -96.050956165227717, 29.492834119064504 ], [ -96.051150165154311, 29.49285011953658 ], [ -96.051226165061294, 29.492922119695276 ], [ -96.051370165778323, 29.493103119610531 ], [ -96.051483165280402, 29.493290119911432 ], [ -96.051577165531782, 29.49339411976251 ], [ -96.051791165431894, 29.493576120023143 ], [ -96.052482166150426, 29.494071119734006 ], [ -96.052740166129965, 29.494219119336805 ], [ -96.052853165422661, 29.494247119701253 ], [ -96.053060165368848, 29.494274119370072 ], [ -96.053223165522979, 29.494208119289969 ], [ -96.053311165450879, 29.494153119591516 ], [ -96.053456165414616, 29.494038119576921 ], [ -96.053732165474145, 29.493785119720528 ], [ -96.053839166386823, 29.493670119226508 ], [ -96.053921165897123, 29.493516119628435 ], [ -96.054103166017072, 29.4933011195217 ], [ -96.05419116659013, 29.493175119060318 ], [ -96.054241166200157, 29.493120119692541 ], [ -96.054556166475521, 29.492856119731549 ], [ -96.054606165759466, 29.492801119321733 ], [ -96.054700166566931, 29.492730119248208 ], [ -96.054958166471039, 29.492466119512716 ], [ -96.055102165786437, 29.492301119199528 ], [ -96.055203166199306, 29.492142119349086 ], [ -96.055341166160275, 29.492004118926914 ], [ -96.055435165870335, 29.491884119299041 ], [ -96.055605166091084, 29.49160311914293 ], [ -96.055825166036698, 29.491323119147701 ], [ -96.056070166391294, 29.491142118846554 ], [ -96.056158166932704, 29.491065118868125 ], [ -96.056422166945595, 29.490762119193604 ], [ -96.057176167183499, 29.490279118385828 ], [ -96.057257167036241, 29.490268118739547 ], [ -96.057452166752412, 29.490268118677303 ], [ -96.057509166518628, 29.490251119049031 ], [ -96.057553167283771, 29.490224118784543 ], [ -96.057634166831264, 29.490119118365619 ], [ -96.0577221670558, 29.490048118605372 ], [ -96.058005167074256, 29.490032119082127 ], [ -96.0581681669956, 29.490043119068151 ], [ -96.058219166713599, 29.490076118819605 ], [ -96.058313166984917, 29.490191119017275 ], [ -96.058376167359413, 29.490290118318967 ], [ -96.058426166977085, 29.490405118414774 ], [ -96.058539167018552, 29.490741118803761 ], [ -96.058595167284636, 29.491098118488061 ], [ -96.058796167677698, 29.49168111888476 ], [ -96.058872166893693, 29.491807119274398 ], [ -96.058884166769431, 29.491834119423935 ], [ -96.059079167577124, 29.492016119387902 ], [ -96.059205166947962, 29.492065119079758 ], [ -96.059362167760142, 29.492060119164329 ], [ -96.059481166856941, 29.492032119342067 ], [ -96.059582167146701, 29.491966119449607 ], [ -96.059688167043532, 29.49187311883318 ], [ -96.059770167338996, 29.491560119142505 ], [ -96.059776167763374, 29.491433118957314 ], [ -96.059864167323113, 29.490983118445335 ], [ -96.059833167717812, 29.490774118554739 ], [ -96.05974516714069, 29.490521118680945 ], [ -96.059701167090068, 29.490449118913716 ], [ -96.059682167842311, 29.490389118327439 ], [ -96.059626166965003, 29.490290118424969 ], [ -96.059613167319881, 29.490219118362266 ], [ -96.0595441673577, 29.490175118766722 ], [ -96.059374166871237, 29.490131119013597 ], [ -96.059343166840023, 29.490109118996124 ], [ -96.059318167431442, 29.490076118641177 ], [ -96.05931816769592, 29.490004118411836 ], [ -96.059362167532953, 29.489960118440145 ], [ -96.059431167240007, 29.489916118847063 ], [ -96.059557166817129, 29.489911119013094 ], [ -96.059601167759865, 29.489883118940849 ], [ -96.059664167261715, 29.489702118900826 ], [ -96.059682167124961, 29.489455118120798 ], [ -96.059745167233771, 29.48931711854344 ], [ -96.059808167159133, 29.489086118471295 ], [ -96.059827167554658, 29.489048118355353 ], [ -96.059846167258399, 29.488927118293358 ], [ -96.059846166979767, 29.488861118365115 ], [ -96.059884167028912, 29.488724118446829 ], [ -96.059978167311428, 29.488482118233939 ], [ -96.060122167332366, 29.488311118696913 ], [ -96.060154167484384, 29.488234118096997 ], [ -96.06022316743416, 29.488174118163844 ], [ -96.060298167714336, 29.488048118479504 ], [ -96.060323167167695, 29.487910118530149 ], [ -96.060355167448762, 29.487822118197691 ], [ -96.060374167414579, 29.487729117752703 ], [ -96.060380167195973, 29.487515118197866 ], [ -96.060324166985751, 29.487366117646072 ], [ -96.060210167289497, 29.487218118446016 ], [ -96.060122167127318, 29.4871351178274 ], [ -96.059884167498069, 29.486987118114481 ], [ -96.059457167274999, 29.486789117696507 ], [ -96.059187167355248, 29.486624118384889 ], [ -96.059036166785717, 29.48650311767766 ], [ -96.058879167360473, 29.486349118367048 ], [ -96.058772166677755, 29.486212118126755 ], [ -96.058659167178888, 29.486096117776874 ], [ -96.058540166731703, 29.485876117680551 ], [ -96.05852116689924, 29.485761117445982 ], [ -96.058533166955556, 29.485272117556548 ], [ -96.058634166714242, 29.485069117262778 ], [ -96.058709167361727, 29.484948117778409 ], [ -96.058728166897424, 29.484937117444268 ], [ -96.058785166746802, 29.484860117664045 ], [ -96.0589291664961, 29.48475511753696 ], [ -96.059011167194285, 29.484711117286388 ], [ -96.059149167363202, 29.484618117327738 ], [ -96.059740167373988, 29.484343117473113 ], [ -96.059809167571146, 29.484294117461879 ], [ -96.059903166750573, 29.484206117413883 ], [ -96.059972166804201, 29.484129117598993 ], [ -96.059997167030062, 29.48403511732084 ], [ -96.060016167554096, 29.483695116959868 ], [ -96.059946167374363, 29.483441117357916 ], [ -96.059859167290185, 29.483238117434961 ], [ -96.059759167286245, 29.48309011693653 ], [ -96.059621167277641, 29.48292011754949 ], [ -96.059250166710953, 29.482623116924106 ], [ -96.058967166912012, 29.482496117115886 ], [ -96.058678166319055, 29.482386117326104 ], [ -96.058408166578502, 29.482337116998806 ], [ -96.058352166700914, 29.482353117229273 ], [ -96.058188166394316, 29.48233711744853 ], [ -96.058082166776629, 29.482309117412274 ], [ -96.058000166859003, 29.482282116787687 ], [ -96.057849166404637, 29.482199117469975 ], [ -96.057780166490673, 29.482139116777827 ], [ -96.05771716618311, 29.482062117229599 ], [ -96.05766716647274, 29.481957117124463 ], [ -96.057629166636545, 29.481815117410111 ], [ -96.057598166802791, 29.481578116711258 ], [ -96.057629166841494, 29.481490116552685 ], [ -96.05773016696277, 29.481347116560077 ], [ -96.057874166694518, 29.481215116987549 ], [ -96.058025166132239, 29.481139116516431 ], [ -96.058540166136055, 29.48082011723033 ], [ -96.05883616670117, 29.48061111667241 ], [ -96.059005167057279, 29.480474117109196 ], [ -96.059175166795242, 29.480309117022593 ], [ -96.059413166418025, 29.479995116468107 ], [ -96.059514167304386, 29.479842116441528 ], [ -96.05963316648517, 29.479611116324122 ], [ -96.059703166521317, 29.479363116535929 ], [ -96.059703166656703, 29.479292116214101 ], [ -96.059652166880454, 29.479116116139519 ], [ -96.059652166573528, 29.478984116028755 ], [ -96.059690166639982, 29.478907116599505 ], [ -96.059778166407412, 29.478781116120761 ], [ -96.059822166827232, 29.478676116247918 ], [ -96.059904167271895, 29.478539116661644 ], [ -96.059954166663303, 29.478369116052129 ], [ -96.060042167255077, 29.478198116531672 ], [ -96.060098166935816, 29.478044116085563 ], [ -96.060193166802591, 29.477879116443958 ], [ -96.060387167219616, 29.477599115687621 ], [ -96.060532166652351, 29.477247115879518 ], [ -96.060639167001781, 29.476901116199933 ], [ -96.060677166475116, 29.476621115999095 ], [ -96.060683166573, 29.476478115449158 ], [ -96.060626167251769, 29.476187115364542 ], [ -96.06057016729379, 29.476049115980974 ], [ -96.060469166550504, 29.475901115323616 ], [ -96.060249167154723, 29.475681115586021 ], [ -96.059948167223411, 29.475456115636593 ], [ -96.059741166408415, 29.475384115968829 ], [ -96.059125166928524, 29.475269115263817 ], [ -96.059000166558263, 29.475208115430846 ], [ -96.058905166329069, 29.475131115988184 ], [ -96.058836166908932, 29.475021115564175 ], [ -96.05883016642909, 29.474851115598607 ], [ -96.058836166027291, 29.474625115742068 ], [ -96.058943166029934, 29.474527115849877 ], [ -96.05929516669616, 29.474362115624736 ], [ -96.059414166716635, 29.474252115218633 ], [ -96.059565167076258, 29.474169115489396 ], [ -96.059666166932928, 29.474065115342903 ], [ -96.05992316660388, 29.473763115620393 ], [ -96.059961167093206, 29.473647115695893 ], [ -96.059942166213176, 29.473598115469983 ], [ -96.059898166851255, 29.473510115386532 ], [ -96.059772167036826, 29.473416114925712 ], [ -96.059634166831799, 29.473334115410829 ], [ -96.059377166438708, 29.473284115407616 ], [ -96.059157166403281, 29.473323115628411 ], [ -96.058906166757652, 29.47340511527339 ], [ -96.058711166289768, 29.473444115336946 ], [ -96.058548166431123, 29.473460115126858 ], [ -96.058359166759729, 29.473427115418676 ], [ -96.058039165937302, 29.473345114972702 ], [ -96.057806165985497, 29.473339115738376 ], [ -96.057580166297129, 29.473405115495549 ], [ -96.057379166484679, 29.473532115610944 ], [ -96.057316165727542, 29.473559115228614 ], [ -96.057210166190202, 29.47359211502339 ], [ -96.057065166072348, 29.473598115320438 ], [ -96.056958165917905, 29.473543114930802 ], [ -96.056889166057559, 29.473509115025276 ], [ -96.056695166184653, 29.473350115658345 ], [ -96.056393165449208, 29.473169115736876 ], [ -96.056311165320849, 29.47307011513832 ], [ -96.056267165286911, 29.472927115118129 ], [ -96.056242166012922, 29.472773115140999 ], [ -96.056249165890947, 29.472597114824762 ], [ -96.056230165677931, 29.472207115179497 ], [ -96.056016165863838, 29.472344115363423 ], [ -96.055721165223744, 29.472454115109599 ], [ -96.055382165050943, 29.472520115067194 ], [ -96.055231165882631, 29.472564115114963 ], [ -96.055080164915537, 29.47259111487632 ], [ -96.054609164960652, 29.472745115096966 ], [ -96.054484165079245, 29.47276211540456 ], [ -96.05433316572875, 29.472767114899916 ], [ -96.053943165223544, 29.472762115590108 ], [ -96.053749164625472, 29.472767114968292 ], [ -96.053617165372273, 29.47274011554034 ], [ -96.053416165432111, 29.472635115275754 ], [ -96.053202164703507, 29.472498114958022 ], [ -96.052995164538601, 29.472327115062718 ], [ -96.052844165142972, 29.47221711518819 ], [ -96.052650164300331, 29.472096115523826 ], [ -96.052166164892029, 29.471833115586993 ], [ -96.052003164305773, 29.471789115571266 ], [ -96.051908164340858, 29.471761115599438 ], [ -96.05183316465704, 29.471750115564973 ], [ -96.051676164174822, 29.471766114753361 ], [ -96.051588164333921, 29.47179411524009 ], [ -96.05150016405662, 29.471832115343965 ], [ -96.050972164348906, 29.472206115264097 ], [ -96.050847164137835, 29.472272115039722 ], [ -96.050715164075939, 29.472299114962695 ], [ -96.050514164190503, 29.472299115509703 ], [ -96.050313164054714, 29.472294115454819 ], [ -96.050194164064081, 29.472272115544584 ], [ -96.050106164471771, 29.472239115097011 ], [ -96.049999164142378, 29.472184115322133 ], [ -96.049880163555272, 29.472102115188878 ], [ -96.049760164409918, 29.471992115615429 ], [ -96.049572164201194, 29.471772115277432 ], [ -96.0495221643707, 29.471667115228858 ], [ -96.0494901638192, 29.471541115124481 ], [ -96.049541164230405, 29.471090115226747 ], [ -96.049560164045744, 29.470958115360805 ], [ -96.049572163836075, 29.470722115422866 ], [ -96.04950916381182, 29.470447115150531 ], [ -96.049434163897274, 29.47026011501973 ], [ -96.04928316393837, 29.469727114636992 ], [ -96.049177164159872, 29.469573114964238 ], [ -96.048900163465078, 29.469221114927915 ], [ -96.048775163842407, 29.468793114833904 ], [ -96.04882516318041, 29.468666114922122 ], [ -96.048850163779761, 29.468628114248705 ], [ -96.048894163908727, 29.46852311490316 ], [ -96.048875163795515, 29.468193114161963 ], [ -96.048901163413873, 29.46798511452597 ], [ -96.048901163122963, 29.467869114786435 ], [ -96.048989163754314, 29.467424114577824 ], [ -96.049020163174148, 29.467292114354557 ], [ -96.049045163929875, 29.467243114791856 ], [ -96.049146163842252, 29.467116114674575 ], [ -96.049271163505608, 29.46686311432375 ], [ -96.049315163391213, 29.466731114105603 ], [ -96.049366163893694, 29.466490113891243 ], [ -96.049378163566558, 29.466253113708351 ], [ -96.049341163997184, 29.465918114072544 ], [ -96.04928416404023, 29.465715113915593 ], [ -96.049196163413939, 29.46546211384225 ], [ -96.048813163155415, 29.464604113458883 ], [ -96.048713163225173, 29.464291114162886 ], [ -96.048569163183757, 29.464077113702889 ], [ -96.048481163183922, 29.463780113957991 ], [ -96.04846216316605, 29.463296113362503 ], [ -96.048519162992704, 29.463010113120649 ], [ -96.048607163784922, 29.462818113804715 ], [ -96.048757163552764, 29.462576113440551 ], [ -96.048751163295194, 29.462499113399776 ], [ -96.04868816284133, 29.462384113786449 ], [ -96.048519163017986, 29.462169113231901 ], [ -96.048286163592167, 29.461994113562152 ], [ -96.04798516356054, 29.46184511364077 ], [ -96.047464162877034, 29.461746113241652 ], [ -96.047043162538458, 29.461713113708015 ], [ -96.046534162417316, 29.46169611366798 ], [ -96.04625216237983, 29.461713113080179 ], [ -96.046007162569978, 29.461740113728357 ], [ -96.045749162380815, 29.461784113647536 ], [ -96.045253162465741, 29.461812113749016 ], [ -96.044920162777387, 29.461773113582474 ], [ -96.044223162403185, 29.461674113194213 ], [ -96.043915162130972, 29.461597113319616 ], [ -96.043620161914433, 29.461498113790622 ], [ -96.043369162421669, 29.461328113490463 ], [ -96.043174161449883, 29.46104711302036 ], [ -96.043124161741886, 29.460844113003738 ], [ -96.043086162175726, 29.460580112967897 ], [ -96.043087162261699, 29.460377113364562 ], [ -96.043187161663894, 29.460124112808053 ], [ -96.043307162246094, 29.459888112695896 ], [ -96.043395161500641, 29.459596112945444 ], [ -96.043514161753691, 29.45934911328882 ], [ -96.043564161399956, 29.459195112485677 ], [ -96.043684161733722, 29.458904113091755 ], [ -96.043746162037607, 29.458541112809002 ], [ -96.043759162282285, 29.458266112400619 ], [ -96.04372816187194, 29.458151112409137 ], [ -96.043646162125924, 29.45796911244523 ], [ -96.043408161490575, 29.457755112460848 ], [ -96.043062161473472, 29.457541112754228 ], [ -96.042868161237607, 29.45738111237878 ], [ -96.042748161528934, 29.457337112525764 ], [ -96.042422161498479, 29.457249112271697 ], [ -96.042177161516548, 29.457178112123813 ], [ -96.041630161655135, 29.457123112956022 ], [ -96.041178161047966, 29.457133112961277 ], [ -96.040889160784616, 29.457166112877957 ], [ -96.040600161493813, 29.45717211227835 ], [ -96.040393160784305, 29.457194112549256 ], [ -96.040155160763803, 29.457254112332866 ], [ -96.039922160375227, 29.457271112313418 ], [ -96.039476160873122, 29.457342112566881 ], [ -96.039326160357277, 29.457391112363215 ], [ -96.039150160495467, 29.457485112738752 ], [ -96.039062160258155, 29.457562112499492 ], [ -96.03902416114785, 29.457666112807704 ], [ -96.039030160409084, 29.457754112400284 ], [ -96.039080160289274, 29.457842112343187 ], [ -96.039175160892995, 29.457919112382534 ], [ -96.039426160755241, 29.458051113174513 ], [ -96.039432160641411, 29.458172113050001 ], [ -96.039407160539213, 29.45822111277084 ], [ -96.039357160806873, 29.458309112473497 ], [ -96.039262160967994, 29.458430112602493 ], [ -96.039168160761136, 29.458524113238933 ], [ -96.039068160924344, 29.458568113044667 ], [ -96.038948160530239, 29.458573112898399 ], [ -96.038760160504893, 29.458502112481948 ], [ -96.038616160609664, 29.458430113121516 ], [ -96.038433160765919, 29.458298112651779 ], [ -96.038201160689354, 29.458166113285124 ], [ -96.038094160450086, 29.458067113180345 ], [ -96.037937160237149, 29.457897112801302 ], [ -96.037850160774667, 29.457655112575676 ], [ -96.037812160741936, 29.457534112521461 ], [ -96.037793160805379, 29.457429112335447 ], [ -96.037743160285089, 29.457281112511975 ], [ -96.0376301606711, 29.457017112752975 ], [ -96.037511160178596, 29.456742112682758 ], [ -96.037486159941153, 29.456462112492019 ], [ -96.037517160183455, 29.456308112103326 ], [ -96.03756715973185, 29.456160112772125 ], [ -96.037662160001418, 29.455989112382269 ], [ -96.037725160137668, 29.455852112233039 ], [ -96.037938159854647, 29.455638112176622 ], [ -96.038045160593555, 29.455599112631962 ], [ -96.038120160808589, 29.455561112163021 ], [ -96.038171160475073, 29.455522112042928 ], [ -96.038359160447257, 29.455440112603636 ], [ -96.0384911600148, 29.455363112040036 ], [ -96.03857316041362, 29.455242112208953 ], [ -96.038698160612213, 29.455006112105256 ], [ -96.038730160374968, 29.45487911187552 ], [ -96.038749160527999, 29.454786111817342 ], [ -96.038837160454591, 29.454610112183676 ], [ -96.038931160257405, 29.454363111812729 ], [ -96.03894316049994, 29.454187111871001 ], [ -96.03892516028489, 29.454066112154781 ], [ -96.038887160242467, 29.453929112190099 ], [ -96.038824160393517, 29.453868111793618 ], [ -96.038636160419927, 29.453621112171202 ], [ -96.038510160014766, 29.453489112227899 ], [ -96.038441160693509, 29.45339511188838 ], [ -96.038247160309552, 29.453197111800524 ], [ -96.037977160391108, 29.453060111916404 ], [ -96.037826160463823, 29.4530271122306 ], [ -96.037744160173091, 29.452999111855835 ], [ -96.037399159697458, 29.453027112069627 ], [ -96.037242160360535, 29.453071111871473 ], [ -96.037072160193659, 29.453093111453828 ], [ -96.036928159891971, 29.453098111418143 ], [ -96.036689159585009, 29.453082112052606 ], [ -96.036363159321681, 29.453043111467828 ], [ -96.035898159594026, 29.45301011163701 ], [ -96.035609159104794, 29.453004111816458 ], [ -96.035251159070484, 29.453070112082798 ], [ -96.034862159001918, 29.453076111709819 ], [ -96.034479159328299, 29.453037112267332 ], [ -96.034290159135381, 29.452971112205667 ], [ -96.034096159105445, 29.452938112262874 ], [ -96.0338011593754, 29.45292711220312 ], [ -96.033637159399518, 29.45296011230301 ], [ -96.033455159274467, 29.453158112429676 ], [ -96.03328515953217, 29.453383111614084 ], [ -96.033241159104691, 29.453559111916171 ], [ -96.033229159260529, 29.45381711249069 ], [ -96.033216159242386, 29.453894112297792 ], [ -96.033172158907789, 29.454004111826322 ], [ -96.033103158690153, 29.454098111998974 ], [ -96.033009159455418, 29.454142112359644 ], [ -96.032902159294579, 29.454163112131528 ], [ -96.032776158510501, 29.454141112097066 ], [ -96.032695158808096, 29.454097112635747 ], [ -96.03261915846339, 29.454031112595295 ], [ -96.032450158970704, 29.453927112120798 ], [ -96.032375158604466, 29.453883112133582 ], [ -96.032287158447872, 29.453801112350419 ], [ -96.032211158940257, 29.453757111734031 ], [ -96.032142159168146, 29.45370211240159 ], [ -96.032124158409275, 29.453658112156159 ], [ -96.031979158929303, 29.453531111963578 ], [ -96.031546158632779, 29.453256112177616 ], [ -96.03107515858477, 29.452976111854635 ], [ -96.030912158742098, 29.452838112236158 ], [ -96.030604158094263, 29.452651112200211 ], [ -96.030227158297961, 29.452497111531944 ], [ -96.029738158014851, 29.452349112150962 ], [ -96.02963715755638, 29.452283112289361 ], [ -96.029524158476747, 29.452189111752322 ], [ -96.029480157520084, 29.452057111967463 ], [ -96.029487157560425, 29.451909111455819 ], [ -96.029531157928474, 29.451601111459542 ], [ -96.029525157953145, 29.451008111457181 ], [ -96.029537158201535, 29.450568111261127 ], [ -96.029531157503968, 29.450403111125446 ], [ -96.029544157719542, 29.450183111861161 ], [ -96.029525157794254, 29.449754111725756 ], [ -96.029588158153175, 29.449485111596999 ], [ -96.029689158009518, 29.449364111578049 ], [ -96.029890158291721, 29.449188111611516 ], [ -96.030103157520841, 29.449068111109309 ], [ -96.030310158528039, 29.448991111620217 ], [ -96.030744157884811, 29.448930111145085 ], [ -96.030832157848181, 29.448870111586483 ], [ -96.03093815774308, 29.448782111186702 ], [ -96.031026158661788, 29.44868311160349 ], [ -96.031096158364392, 29.448628111114473 ], [ -96.031209158660388, 29.448480111303734 ], [ -96.031271158157082, 29.448353111308588 ], [ -96.031385158202824, 29.44820511100604 ], [ -96.03145415882058, 29.448051111243331 ], [ -96.031542158822234, 29.447974110990287 ], [ -96.031573157885973, 29.447925110530015 ], [ -96.031849158824784, 29.447738110914109 ], [ -96.031944158227645, 29.447661110673838 ], [ -96.032389158813743, 29.447452111085827 ], [ -96.032791159137432, 29.447282110720252 ], [ -96.03335715884019, 29.446991111075086 ], [ -96.03370215927464, 29.446876110432417 ], [ -96.034418159218149, 29.446672110477273 ], [ -96.03487015930618, 29.446568110872054 ], [ -96.035109158820475, 29.446486110886749 ], [ -96.035354159701384, 29.446414110751768 ], [ -96.035561159426862, 29.446337110489441 ], [ -96.035793158887898, 29.446233110446748 ], [ -96.036447159114971, 29.4458381103139 ], [ -96.036597159106933, 29.445695110409432 ], [ -96.036662159796705, 29.445561110058353 ], [ -96.036704159530217, 29.445475109921478 ], [ -96.036728159601239, 29.44532411051669 ], [ -96.036736159342524, 29.445277110629153 ], [ -96.036692159131078, 29.444881109993631 ], [ -96.036635159414516, 29.44469411022326 ], [ -96.036460159841269, 29.444277110136657 ], [ -96.036265159332629, 29.443925109943624 ], [ -96.036140159677004, 29.443793109542085 ], [ -96.036083159054073, 29.443694109946293 ], [ -96.035983158797549, 29.443622110290391 ], [ -96.035895159274304, 29.443589109590583 ], [ -96.035763158973921, 29.443523109552043 ], [ -96.035631159222689, 29.443419109537498 ], [ -96.035531158863975, 29.443265110312325 ], [ -96.03549915913672, 29.443188109835834 ], [ -96.035437158725458, 29.443128109920035 ], [ -96.035418159190385, 29.44309511026195 ], [ -96.035298159237001, 29.443012109546121 ], [ -96.03519815953544, 29.442979110109288 ], [ -96.035066158726721, 29.442952110167806 ], [ -96.034922158588486, 29.442952110038458 ], [ -96.034777158680768, 29.442968109403861 ], [ -96.034652158706933, 29.443012109498664 ], [ -96.03452015918613, 29.443094110106447 ], [ -96.034400159252144, 29.443127110106929 ], [ -96.034237159205574, 29.443138109696076 ], [ -96.034049158370408, 29.443127110309948 ], [ -96.033948158551269, 29.443105110134596 ], [ -96.033710158493577, 29.442995109879913 ], [ -96.033629158372435, 29.442938109814932 ], [ -96.032938157984461, 29.442539109387241 ], [ -96.03233515835629, 29.442220109836374 ], [ -96.032216158286317, 29.442126109670319 ], [ -96.032147157792934, 29.44204910942992 ], [ -96.03192715784725, 29.441593109321456 ], [ -96.031783158151129, 29.441340109182406 ], [ -96.03165715783669, 29.44124711004153 ], [ -96.031550158514705, 29.441197109947659 ], [ -96.031293157875709, 29.441203109738758 ], [ -96.031180157747173, 29.441181109685576 ], [ -96.031029157417962, 29.44112010980135 ], [ -96.030929157849499, 29.441109109506584 ], [ -96.030828157855339, 29.441159110054453 ], [ -96.030747157901828, 29.441241109608615 ], [ -96.030703158265553, 29.441351109437136 ], [ -96.03062115767753, 29.441434109308837 ], [ -96.030571157599425, 29.441521109516959 ], [ -96.030495158210542, 29.441538110003975 ], [ -96.030414157345348, 29.441521109745565 ], [ -96.030345157977351, 29.441477109923145 ], [ -96.030282158056679, 29.441411110145257 ], [ -96.030257157302785, 29.441362109666045 ], [ -96.030207157903149, 29.441164109962866 ], [ -96.030100157706542, 29.441104109784874 ], [ -96.029999157971716, 29.441065109894069 ], [ -96.029930157935937, 29.441148109573142 ], [ -96.02988015800976, 29.441175109910386 ], [ -96.029717157759123, 29.441114109782465 ], [ -96.029585157378676, 29.441054109279911 ], [ -96.029503157815569, 29.441037109715388 ], [ -96.029271157186514, 29.441175109265757 ], [ -96.029089157141968, 29.441213109675498 ], [ -96.028938157269209, 29.441268110030173 ], [ -96.028775157028576, 29.44126810936125 ], [ -96.028480157524143, 29.441229109274794 ], [ -96.027971157193306, 29.441218109654571 ], [ -96.027720157444392, 29.441273109524172 ], [ -96.027620156849849, 29.441372109860264 ], [ -96.027538156890074, 29.441400109501412 ], [ -96.027456157386283, 29.441455110078092 ], [ -96.027211157262826, 29.441432109822323 ], [ -96.027111156808942, 29.441432110122044 ], [ -96.027010156895727, 29.441416109553693 ], [ -96.026897156540258, 29.441311110004374 ], [ -96.026803157342471, 29.441295109843466 ], [ -96.026722157280759, 29.441295109433891 ], [ -96.026458157134869, 29.441245109919741 ], [ -96.026389157083941, 29.441300109489902 ], [ -96.026320157169977, 29.441399109391753 ], [ -96.026301157133176, 29.441471110255712 ], [ -96.026156156556709, 29.441482109817521 ], [ -96.026006156875354, 29.44146510969642 ], [ -96.025912156702731, 29.441432109504813 ], [ -96.025786156405985, 29.441333109709237 ], [ -96.025730156917859, 29.441300109740975 ], [ -96.025704157065633, 29.441355109634824 ], [ -96.025604156625548, 29.441377109441678 ], [ -96.025510156678592, 29.44136011008673 ], [ -96.025434156757854, 29.441311109398281 ], [ -96.025378156448525, 29.441256109526012 ], [ -96.025328156281333, 29.441256109901285 ], [ -96.025183156496269, 29.441349109652286 ], [ -96.025070156763732, 29.44139910946036 ], [ -96.024976156109034, 29.441465110113441 ], [ -96.02485015624805, 29.441520110293411 ], [ -96.024681156609546, 29.441476109640909 ], [ -96.024624156277483, 29.441437109958063 ], [ -96.024537156676828, 29.441267109784324 ], [ -96.024461156431755, 29.441294110248904 ], [ -96.024398156485162, 29.441360109656223 ], [ -96.024304155894626, 29.441388109886407 ], [ -96.024135156228866, 29.441250110048038 ], [ -96.024040156009335, 29.441250110224413 ], [ -96.023978156415794, 29.441294110321728 ], [ -96.023927156032741, 29.441349109809373 ], [ -96.023846155835514, 29.441409110068971 ], [ -96.023795156343098, 29.441459110078757 ], [ -96.023670155940863, 29.441470110280708 ], [ -96.023620155588048, 29.441426109626534 ], [ -96.023544155603716, 29.441327109738538 ], [ -96.023450156010497, 29.441266109444559 ], [ -96.023412156255674, 29.441277110110864 ], [ -96.023218156118858, 29.4414261101671 ], [ -96.023136155660964, 29.441426109662647 ], [ -96.023048155403714, 29.441404110139313 ], [ -96.022941155424235, 29.44132711016935 ], [ -96.022841155334547, 29.441354110086738 ], [ -96.022715155441134, 29.441409110081452 ], [ -96.02261515623016, 29.441469110376204 ], [ -96.022483156170338, 29.441475110154279 ], [ -96.022452155805453, 29.441486110417717 ], [ -96.022370155273251, 29.441486110345171 ], [ -96.022295156027695, 29.441469109842874 ], [ -96.022263155215882, 29.441453110223797 ], [ -96.022163155437568, 29.441431109793655 ], [ -96.022056155903272, 29.441387109639745 ], [ -96.021974155235213, 29.441365109568267 ], [ -96.021937155524654, 29.441376109549019 ], [ -96.021937156014729, 29.441447110069706 ], [ -96.021924155958217, 29.44147511015435 ], [ -96.021893155116842, 29.441497110154341 ], [ -96.021786155201781, 29.441464109651029 ], [ -96.021629155050533, 29.441431109856911 ], [ -96.021444155866703, 29.441357109963469 ], [ -96.021304155833548, 29.441355110145849 ], [ -96.020879155208334, 29.441272110161862 ], [ -96.020615154876282, 29.441238110098809 ], [ -96.020460154909301, 29.441222109604468 ], [ -96.019618155418144, 29.440748109566648 ], [ -96.019225155105062, 29.440314109835732 ], [ -96.019080154791183, 29.440188109952928 ], [ -96.019024155231364, 29.440105109840992 ], [ -96.019018154901985, 29.440028109421657 ], [ -96.018999154616097, 29.439968109841317 ], [ -96.018955155295927, 29.439891109852933 ], [ -96.018911154893459, 29.439770109376447 ], [ -96.018907155168606, 29.439725109855043 ], [ -96.01889215432746, 29.43956610936889 ], [ -96.018867154442233, 29.439500109922953 ], [ -96.01888015443194, 29.439418109846056 ], [ -96.01890515507877, 29.43939610931093 ], [ -96.018918155145911, 29.439358109681951 ], [ -96.019006154304037, 29.439297109622633 ], [ -96.019232155259147, 29.439242109825457 ], [ -96.019338154532662, 29.439248109855821 ], [ -96.0194261547325, 29.439264109653909 ], [ -96.019470154978308, 29.439259109956403 ], [ -96.019520154467202, 29.439171109986042 ], [ -96.019520154535343, 29.439121110013858 ], [ -96.019495155108089, 29.438990109646127 ], [ -96.019470155350305, 29.438753109779128 ], [ -96.019427154684237, 29.438555109079296 ], [ -96.01934515504179, 29.438363109570144 ], [ -96.019301154960246, 29.43822510977428 ], [ -96.019257154420416, 29.437995109647222 ], [ -96.019207154272678, 29.437604109332483 ], [ -96.019182154689773, 29.437538109019865 ], [ -96.019088154911174, 29.437428109163953 ], [ -96.01894415481236, 29.437351109555564 ], [ -96.018818154193951, 29.437351109088066 ], [ -96.018655154146302, 29.437373109260182 ], [ -96.018579154902014, 29.437401109170494 ], [ -96.018366154053453, 29.43741210958342 ], [ -96.018259154252547, 29.437395109074526 ], [ -96.018127154445949, 29.437340109062813 ], [ -96.017996154510215, 29.437318109255944 ], [ -96.017857154837458, 29.437340109009952 ], [ -96.017751154580694, 29.437384109548965 ], [ -96.017644154615894, 29.437395109665779 ], [ -96.017594153973093, 29.437392109584643 ], [ -96.017538154242644, 29.437389109122471 ], [ -96.017443154681928, 29.437384109596227 ], [ -96.017211153991951, 29.437312109352288 ], [ -96.017058154259871, 29.43728210959366 ], [ -96.016803154637174, 29.437233109372006 ], [ -96.016774153882537, 29.437223109022213 ], [ -96.016752154312144, 29.437221109460843 ], [ -96.016735153650487, 29.437219109618983 ], [ -96.016677153782993, 29.437208109573547 ], [ -96.016649154277061, 29.437198108993449 ], [ -96.016489153540846, 29.437142109177383 ], [ -96.016326153780469, 29.437070109609451 ], [ -96.01617515382884, 29.436971109658632 ], [ -96.016075154224069, 29.43689510962362 ], [ -96.016024153549495, 29.436856109258393 ], [ -96.016012153949276, 29.436832109323017 ], [ -96.015949153962254, 29.436790109624706 ], [ -96.015892154396141, 29.436729108976984 ], [ -96.015855154239318, 29.436658109393459 ], [ -96.015849154302373, 29.436614109336581 ], [ -96.015849153545432, 29.436537109118163 ], [ -96.015861153440213, 29.436509108894501 ], [ -96.015924153975732, 29.436443108898452 ], [ -96.015981154278606, 29.436410109016904 ], [ -96.016062153578957, 29.436334109561397 ], [ -96.016106153502832, 29.436257109344808 ], [ -96.016194153810673, 29.4360311090416 ], [ -96.016207154102062, 29.435921108903514 ], [ -96.016194153557194, 29.43572410918981 ], [ -96.016150154114044, 29.435504108510724 ], [ -96.016107153801713, 29.435471108593969 ], [ -96.016050154253165, 29.435372108817031 ], [ -96.016006153884717, 29.435317109285343 ], [ -96.015956154178852, 29.435289108563552 ], [ -96.015906154129524, 29.43528410859496 ], [ -96.015799154236888, 29.435251108487755 ], [ -96.015736153561178, 29.435262108907999 ], [ -96.015686153997052, 29.435295108941883 ], [ -96.015529153810519, 29.43544810899132 ], [ -96.015519153984584, 29.435495109236804 ], [ -96.015504154143215, 29.435514108538378 ], [ -96.015497153438503, 29.435734109026782 ], [ -96.015466153320588, 29.435844108590331 ], [ -96.015391154192599, 29.435905108885105 ], [ -96.015321153787994, 29.435927108766212 ], [ -96.015177153299931, 29.435921109253748 ], [ -96.014957153859484, 29.435893109199924 ], [ -96.014681153701815, 29.435893109351223 ], [ -96.014147153415678, 29.435794109504958 ], [ -96.013965153039706, 29.435783109120287 ], [ -96.013583153055635, 29.435718109088977 ], [ -96.013127153440337, 29.435558108831 ], [ -96.012738153309286, 29.435294109324538 ], [ -96.012453152793128, 29.434990108524254 ], [ -96.012260152852946, 29.434596108491551 ], [ -96.012368152413018, 29.434143108653604 ], [ -96.012320153284548, 29.433980108770097 ], [ -96.012245152688592, 29.433728108436409 ], [ -96.011828153109562, 29.433286109088055 ], [ -96.011148152836171, 29.43276510885444 ], [ -96.010620152349901, 29.432214108193325 ], [ -96.010001151683866, 29.4316911083761 ], [ -96.009880152523749, 29.43154610832222 ], [ -96.009100151927314, 29.430160108172775 ], [ -96.008864152249274, 29.429865108272768 ], [ -96.008372152031512, 29.42948410820669 ], [ -96.007636151415653, 29.429167108202421 ], [ -96.006923151301308, 29.42900910806889 ], [ -96.006629150876847, 29.429058107635694 ], [ -96.006422150986268, 29.429052108126932 ], [ -96.006177151568949, 29.42908510797535 ], [ -96.005386151414257, 29.429316107657158 ], [ -96.005166150962026, 29.429338108415291 ], [ -96.005079151017028, 29.429338108167833 ], [ -96.004940150917818, 29.429299107701432 ], [ -96.004790150688024, 29.429189107692004 ], [ -96.004652151024388, 29.429074108176355 ], [ -96.004401150168974, 29.428782107691692 ], [ -96.004325150260669, 29.428755107874881 ], [ -96.004175150904487, 29.428755108391403 ], [ -96.003855150167738, 29.428870107745748 ], [ -96.003340150543096, 29.429199108433629 ], [ -96.002159150486293, 29.430155108230768 ], [ -96.001945150438587, 29.430380108751788 ], [ -96.00159315022583, 29.430760108123476 ], [ -96.001241149796058, 29.431045108293876 ], [ -96.000726150140764, 29.43128110827702 ], [ -96.000381149654785, 29.431374108697199 ], [ -96.000302149232937, 29.431390108452387 ], [ -95.999394149625175, 29.431573109075902 ], [ -95.998905149318048, 29.431551108431446 ], [ -95.998635149380462, 29.431567108333873 ], [ -95.99830814930678, 29.431545109083252 ], [ -95.997787148579704, 29.431584108400394 ], [ -95.997680148858862, 29.431535108547493 ], [ -95.997592148631895, 29.431551108403113 ], [ -95.997366149015448, 29.431650108404039 ], [ -95.997228148424099, 29.431744108395257 ], [ -95.996940149268184, 29.431997108638146 ], [ -95.996720148481742, 29.43213410911698 ], [ -95.996632148826208, 29.432167108788938 ], [ -95.99651914879756, 29.432195109070932 ], [ -95.996237148361317, 29.432234108703227 ], [ -95.995873148798097, 29.432256108902813 ], [ -95.995822148991692, 29.432272109397655 ], [ -95.995753148847328, 29.432311109365585 ], [ -95.995723148149878, 29.432421109295291 ], [ -95.995685148672322, 29.432498109052734 ], [ -95.995609148168299, 29.432580109196316 ], [ -95.995138148737695, 29.432756109064314 ], [ -95.995032148061739, 29.432855109556673 ], [ -95.994938148626787, 29.432976109107607 ], [ -95.994912148497363, 29.433086109513521 ], [ -95.994912148899672, 29.433218109007619 ], [ -95.994938148117129, 29.43334410897058 ], [ -95.995019148647103, 29.433608109697413 ], [ -95.995026148366605, 29.433725109321106 ], [ -95.994863148652058, 29.433807109526445 ], [ -95.994781148304455, 29.43383510901484 ], [ -95.994699148247548, 29.433835108982016 ], [ -95.994599148835988, 29.43381310926183 ], [ -95.994153148033902, 29.433659109018546 ], [ -95.993965148002431, 29.433637109648203 ], [ -95.993801148628535, 29.433632109051111 ], [ -95.993714147635544, 29.433649109110789 ], [ -95.993663147899298, 29.433671109272257 ], [ -95.993506148308867, 29.433769109658801 ], [ -95.993412147996239, 29.433780109464976 ], [ -95.993343147854304, 29.43376410932575 ], [ -95.993086148100019, 29.433650108907759 ], [ -95.992991147890052, 29.433622109021389 ], [ -95.992941147554973, 29.433633109786275 ], [ -95.992879147524036, 29.43367210974807 ], [ -95.992828147709133, 29.433710109044231 ], [ -95.992653148330533, 29.433913109496178 ], [ -95.992602147762511, 29.433946109202004 ], [ -95.992521147318257, 29.433979109464964 ], [ -95.992383147649292, 29.434006109269426 ], [ -95.992289147974333, 29.434001109757514 ], [ -95.99217614723392, 29.433968109741883 ], [ -95.992056147516351, 29.433913109143639 ], [ -95.992031147704424, 29.433797109284072 ], [ -95.992112147307651, 29.433590109147602 ], [ -95.992150147957616, 29.43334710904627 ], [ -95.992144148083526, 29.433237109690996 ], [ -95.991804147927382, 29.432786109218302 ], [ -95.991773147174072, 29.432687109050104 ], [ -95.991691147704771, 29.432539109016766 ], [ -95.991421147783129, 29.432413109372831 ], [ -95.991264147835651, 29.43229710917322 ], [ -95.991138147639774, 29.432138108697345 ], [ -95.990975147771792, 29.431830109399947 ], [ -95.990849146883633, 29.431528108989792 ], [ -95.990793147523974, 29.431204108758575 ], [ -95.990730147634338, 29.431088108991574 ], [ -95.990667146886238, 29.430902109021634 ], [ -95.990560147624421, 29.430654109211506 ], [ -95.990397147201222, 29.430347109101618 ], [ -95.990202146960272, 29.430055109140277 ], [ -95.989988146560165, 29.429759109087037 ], [ -95.989928147229335, 29.429669109067884 ], [ -95.989680146813555, 29.429292108370952 ], [ -95.989435146372912, 29.429033108401274 ], [ -95.988757146312878, 29.428594108169534 ], [ -95.988562147026428, 29.428440108536392 ], [ -95.98802714594855, 29.428111108746833 ], [ -95.987877146090284, 29.427841107973407 ], [ -95.987807146421872, 29.427539107968105 ], [ -95.987995146231484, 29.426704108476699 ], [ -95.988045146336304, 29.426566108368768 ], [ -95.988190146452055, 29.426269108437229 ], [ -95.988228146672384, 29.426022107748501 ], [ -95.988227146346688, 29.425922107788931 ], [ -95.987945146482133, 29.425444108244097 ], [ -95.987845146316403, 29.425252107465031 ], [ -95.987606145677645, 29.424911107725279 ], [ -95.987562146191536, 29.424801107368165 ], [ -95.987549145756745, 29.424686108068812 ], [ -95.987524145803292, 29.424576107493216 ], [ -95.987424145742992, 29.424328107193602 ], [ -95.987342146498037, 29.424208107164642 ], [ -95.987260145844758, 29.424142107834733 ], [ -95.986877146242321, 29.423928107170767 ], [ -95.98670814582492, 29.423785107897803 ], [ -95.986431145390824, 29.423515107218179 ], [ -95.986368145836167, 29.423417107399121 ], [ -95.986236145404817, 29.423164107474982 ], [ -95.986199145563589, 29.422982107001957 ], [ -95.986205145482927, 29.422796107114543 ], [ -95.986236145705206, 29.422664107153842 ], [ -95.986286145270881, 29.422587107167054 ], [ -95.986330146254559, 29.422460107611393 ], [ -95.986387145327427, 29.42235010757863 ], [ -95.986462145932862, 29.42224610712654 ], [ -95.986556145672168, 29.422163107399367 ], [ -95.986707145880231, 29.422075107053704 ], [ -95.986807146356526, 29.42198710674483 ], [ -95.987090146360231, 29.421817106831114 ], [ -95.987234145480159, 29.421745107231651 ], [ -95.987422145900325, 29.421608107251362 ], [ -95.987466145756159, 29.421377106923131 ], [ -95.987554146332414, 29.421234107088978 ], [ -95.987679145800101, 29.421075107303757 ], [ -95.987729145731976, 29.420723106841592 ], [ -95.98771714588969, 29.42033310658509 ], [ -95.98773514615165, 29.420223106410941 ], [ -95.987861146396796, 29.419816106878411 ], [ -95.987911146393373, 29.419580106799248 ], [ -95.987955145716512, 29.419426106266048 ], [ -95.988105146396478, 29.419129106228176 ], [ -95.988180145828977, 29.418910106201754 ], [ -95.988230146340698, 29.418723106420874 ], [ -95.988224146536567, 29.418503106472642 ], [ -95.988193145930168, 29.418256106413697 ], [ -95.988161146184851, 29.418134106727095 ], [ -95.988142145802385, 29.418008106519206 ], [ -95.988123146308695, 29.417964106759559 ], [ -95.98791614622597, 29.41776610643478 ], [ -95.987828145593028, 29.417727105952874 ], [ -95.987690146112584, 29.417689105995763 ], [ -95.987257145420315, 29.417695106204647 ], [ -95.986774145355383, 29.417777106026833 ], [ -95.986403146033041, 29.417860106100093 ], [ -95.986297145865436, 29.417898106463451 ], [ -95.986152145129466, 29.417920106232241 ], [ -95.986058145169409, 29.417920105999855 ], [ -95.985989145398932, 29.417904106271735 ], [ -95.985794145255156, 29.417783106274896 ], [ -95.985681145488485, 29.417690106096902 ], [ -95.985600145715054, 29.417596105940522 ], [ -95.985505145177783, 29.417459106558407 ], [ -95.985348145640614, 29.417168106464818 ], [ -95.985323144831483, 29.416964106429205 ], [ -95.985329144843661, 29.416849105944699 ], [ -95.985361145712645, 29.416651106012974 ], [ -95.985411145060624, 29.416574106318773 ], [ -95.985580145354419, 29.415942105525968 ], [ -95.985548145146538, 29.415854106093555 ], [ -95.985536145212251, 29.415744105872694 ], [ -95.985492145242915, 29.415656106339494 ], [ -95.985442145424912, 29.41562310591322 ], [ -95.985354144826061, 29.415601106044686 ], [ -95.985190145098031, 29.41553510625295 ], [ -95.985033145181688, 29.415459105492864 ], [ -95.984745144897914, 29.415338105424517 ], [ -95.984613144566069, 29.415305106262554 ], [ -95.984468145259555, 29.415283105907282 ], [ -95.984255145160603, 29.415212105557668 ], [ -95.984079145206636, 29.415135105945119 ], [ -95.983803144477946, 29.414909106031459 ], [ -95.983621144387925, 29.414624105363639 ], [ -95.983526144770707, 29.414503105745048 ], [ -95.983464144531993, 29.414365105373356 ], [ -95.98331914500082, 29.414173105684338 ], [ -95.983131144185037, 29.413788105602315 ], [ -95.982936145010385, 29.413420105574978 ], [ -95.98285414476301, 29.41329410532698 ], [ -95.982735144196127, 29.41295910527235 ], [ -95.982703144158378, 29.412700105041583 ], [ -95.982691143975501, 29.412535105190624 ], [ -95.982709144544273, 29.412404105490175 ], [ -95.982759144743568, 29.412239105633098 ], [ -95.982753144624354, 29.411975105700861 ], [ -95.98269614395322, 29.411728104790946 ], [ -95.982615144796782, 29.411552105557845 ], [ -95.982571144522495, 29.411502105404804 ], [ -95.982452143949686, 29.411464104825257 ], [ -95.982370144211572, 29.411398104772932 ], [ -95.982332143813863, 29.411321105142811 ], [ -95.982263144008868, 29.411123105070224 ], [ -95.982200144668894, 29.410909104703912 ], [ -95.982131144427456, 29.410815105235642 ], [ -95.982068144195139, 29.410771104764809 ], [ -95.981692144425196, 29.410706104779248 ], [ -95.981284144350113, 29.410574104854142 ], [ -95.981196143659986, 29.410524105137593 ], [ -95.981045143854615, 29.410502105135087 ], [ -95.980769143692854, 29.410552104738453 ], [ -95.980254143552656, 29.41062410525284 ], [ -95.980072143972649, 29.410629104971978 ], [ -95.979501143866202, 29.410574105218696 ], [ -95.979212143225993, 29.410520104652282 ], [ -95.978886143527731, 29.410470105280435 ], [ -95.978591143135361, 29.41048710549024 ], [ -95.978346142857774, 29.410564105197381 ], [ -95.978120142866203, 29.410613105085648 ], [ -95.977881142799717, 29.41072910498189 ], [ -95.97764914345359, 29.410855104904794 ], [ -95.977335143088553, 29.410976105515182 ], [ -95.976852143262903, 29.41105310560129 ], [ -95.976344142719796, 29.411175104989383 ], [ -95.975710142565902, 29.411263105550432 ], [ -95.975471142638185, 29.411263105651788 ], [ -95.974818142757556, 29.411192105633507 ], [ -95.974561142198183, 29.411181105153656 ], [ -95.974385142393032, 29.411236105627435 ], [ -95.974090142320591, 29.411434105324524 ], [ -95.973795142613653, 29.411483105029028 ], [ -95.973575142154999, 29.411483105366536 ], [ -95.973437142147276, 29.411450105196419 ], [ -95.973280141471449, 29.411362105417474 ], [ -95.973111142093927, 29.411269105632858 ], [ -95.972828141622671, 29.411027105284944 ], [ -95.972583141896678, 29.410879105669004 ], [ -95.972414141804776, 29.41070910546232 ], [ -95.972433141596127, 29.410571105391593 ], [ -95.972420141654553, 29.410153105493691 ], [ -95.972432142105021, 29.410000105177598 ], [ -95.972269141573221, 29.409439105518079 ], [ -95.971993141029344, 29.409225105464269 ], [ -95.971635141624944, 29.409005105012461 ], [ -95.971446141358769, 29.408950104915007 ], [ -95.971183141560402, 29.408835105159426 ], [ -95.971020141147775, 29.408714105281021 ], [ -95.970863141335698, 29.408565105265097 ], [ -95.970768141575604, 29.408434105024092 ], [ -95.970705141143469, 29.407944104955106 ], [ -95.97069314147727, 29.407719104491683 ], [ -95.970793141424409, 29.407444104907064 ], [ -95.971025141067841, 29.407065104475038 ], [ -95.971483141549655, 29.40690510476222 ], [ -95.97172814094499, 29.406806104891398 ], [ -95.971835141739703, 29.406707104600134 ], [ -95.971872141335083, 29.406499104878829 ], [ -95.97179114121559, 29.406004104612599 ], [ -95.971860141217164, 29.405740104444501 ], [ -95.97204814144682, 29.405476103901961 ], [ -95.9720851410802, 29.405245103877505 ], [ -95.971746140959169, 29.404800104443169 ], [ -95.971734141717903, 29.404602103680752 ], [ -95.971821141197111, 29.404476104155563 ], [ -95.972512141086185, 29.404322104173946 ], [ -95.972593141155727, 29.404212104044465 ], [ -95.972600141776368, 29.40410210413269 ], [ -95.972455141505137, 29.403954104411397 ], [ -95.972223141155951, 29.403761103679226 ], [ -95.972185141468472, 29.403541103550104 ], [ -95.972210141262394, 29.403267103735708 ], [ -95.9722291417783, 29.402739103359046 ], [ -95.972178141155496, 29.402503103926108 ], [ -95.972065141741567, 29.402327103834136 ], [ -95.97160714089074, 29.402129103205148 ], [ -95.971475141465532, 29.402019103545239 ], [ -95.971400141248665, 29.401849103224361 ], [ -95.971331141099498, 29.401162103616123 ], [ -95.97116714053891, 29.400805103112067 ], [ -95.970879141399081, 29.400530102962779 ], [ -95.970470140338563, 29.400228102860044 ], [ -95.969999140473291, 29.399678102998251 ], [ -95.969698140221396, 29.399228103501365 ], [ -95.96966014075511, 29.39907910328013 ], [ -95.969566140393511, 29.398810103008298 ], [ -95.96954714047628, 29.398645102866482 ], [ -95.969510140665591, 29.398508102876008 ], [ -95.969490140305808, 29.398007103063911 ], [ -95.969453140856501, 29.397821103150147 ], [ -95.969290140826288, 29.397645102767779 ], [ -95.969164140146987, 29.397375103156982 ], [ -95.969158140026749, 29.397282102998535 ], [ -95.969195140404551, 29.397222102551392 ], [ -95.969239140513764, 29.39709510240036 ], [ -95.969415140071334, 29.396908102580564 ], [ -95.969528140065705, 29.396771102407545 ], [ -95.969559140161607, 29.396655102341256 ], [ -95.969547139999634, 29.396545102584128 ], [ -95.969346140131719, 29.396447102432624 ], [ -95.969170139862101, 29.396381102784993 ], [ -95.969063139986915, 29.396309102663178 ], [ -95.969051140172525, 29.396216102579832 ], [ -95.969126140136098, 29.396139102117136 ], [ -95.969440140382687, 29.39594110262404 ], [ -95.969942140259803, 29.395666102581529 ], [ -95.970080140765674, 29.395572102740008 ], [ -95.970117140034333, 29.39549510229325 ], [ -95.970136139980454, 29.395391102547077 ], [ -95.970080140244946, 29.395226102203136 ], [ -95.969960140099275, 29.395149102462746 ], [ -95.969590140803234, 29.395023102646054 ], [ -95.969370140244692, 29.394913102453689 ], [ -95.969289140103811, 29.394847101939636 ], [ -95.969264139915836, 29.394754101913851 ], [ -95.969295140587064, 29.394528101860548 ], [ -95.969288140115466, 29.394281102015594 ], [ -95.969257140315634, 29.394050102218134 ], [ -95.969175140067989, 29.393764102284457 ], [ -95.969169139756644, 29.393698101802102 ], [ -95.96921314062196, 29.393352101622266 ], [ -95.969263139868104, 29.393176102271173 ], [ -95.969206140065666, 29.392962101367463 ], [ -95.969219140525652, 29.392687101613795 ], [ -95.969244140191449, 29.392451101572 ], [ -95.969238139777318, 29.392374101880414 ], [ -95.96925013961453, 29.392330101294341 ], [ -95.969325140206678, 29.392269101303693 ], [ -95.969388140086068, 29.392242101844779 ], [ -95.969451139724129, 29.392165101417103 ], [ -95.969532140282922, 29.392022101877888 ], [ -95.969526140010089, 29.391890101713688 ], [ -95.96950113974998, 29.391802101225075 ], [ -95.969426139809229, 29.39170910175714 ], [ -95.969338139861108, 29.391654101253682 ], [ -95.969275139740986, 29.391626101087862 ], [ -95.969081140042675, 29.391632101621223 ], [ -95.96898013954123, 29.391599101101395 ], [ -95.968917139985237, 29.391544101926588 ], [ -95.968867140311531, 29.391467101596227 ], [ -95.968603139624435, 29.391170101136687 ], [ -95.968446139916452, 29.391049101509449 ], [ -95.968208139394122, 29.39097310148745 ], [ -95.968063139868647, 29.39087910105701 ], [ -95.967988139797157, 29.390797101725099 ], [ -95.967938139474825, 29.390725101455867 ], [ -95.967919139878433, 29.390676101456208 ], [ -95.967913139534417, 29.390599101658829 ], [ -95.967976139837006, 29.390439101544739 ], [ -95.968057139714503, 29.390302101571532 ], [ -95.968057139461948, 29.390220101281756 ], [ -95.968032140089505, 29.390192101455526 ], [ -95.967812139695596, 29.390110100902497 ], [ -95.967749140064555, 29.390038101373769 ], [ -95.967649139573595, 29.389868100920054 ], [ -95.967599139203074, 29.389681100780312 ], [ -95.967586139962933, 29.389604100845055 ], [ -95.967580140061457, 29.389445100718646 ], [ -95.967630139331533, 29.389247100727335 ], [ -95.967649139403221, 29.389131100998988 ], [ -95.967580139411226, 29.389038101251238 ], [ -95.967467139553136, 29.388917101396238 ], [ -95.967442139208373, 29.388846101079587 ], [ -95.967372138977538, 29.388527101037589 ], [ -95.967316139890997, 29.388395101306823 ], [ -95.967159139872777, 29.388225100877214 ], [ -95.967090139305199, 29.38812610117526 ], [ -95.967090139315147, 29.388065100973176 ], [ -95.967253139002779, 29.387790101131333 ], [ -95.967334139262178, 29.387598101016824 ], [ -95.967284139545001, 29.38741110066508 ], [ -95.967228139642032, 29.387334100493266 ], [ -95.967083139724295, 29.387224100930013 ], [ -95.967064139458756, 29.387180100299584 ], [ -95.967058139280269, 29.387131100279149 ], [ -95.967102139853708, 29.38709210066261 ], [ -95.967190138912372, 29.387037100754142 ], [ -95.967334138980817, 29.386977100631952 ], [ -95.967529139370839, 29.386916100631094 ], [ -95.967654139499942, 29.386834100738387 ], [ -95.967698139439179, 29.386779100344899 ], [ -95.967755139871173, 29.386587100961219 ], [ -95.967767139175294, 29.386504100469107 ], [ -95.967711139515558, 29.386185100729612 ], [ -95.967629139699525, 29.385922100461347 ], [ -95.96762313967767, 29.385691100803395 ], [ -95.967660139588716, 29.385559100395724 ], [ -95.968024138997706, 29.385042100500833 ], [ -95.968175139148514, 29.384954099763064 ], [ -95.968244139547679, 29.384866099757783 ], [ -95.968256139935519, 29.384822100131423 ], [ -95.968262139063825, 29.384745100176588 ], [ -95.968244139077896, 29.384696100287467 ], [ -95.968162139757069, 29.384641100571805 ], [ -95.968043139684028, 29.384586099936197 ], [ -95.967967138957604, 29.384580100050318 ], [ -95.967817139085781, 29.384613100128028 ], [ -95.9676911393355, 29.38461409972529 ], [ -95.967534139726666, 29.38449810000921 ], [ -95.96749013897923, 29.384449099725931 ], [ -95.967478139057562, 29.38438309994649 ], [ -95.967541139417321, 29.384306100412797 ], [ -95.967654139688719, 29.384256099931189 ], [ -95.967936138997544, 29.384157099717974 ], [ -95.968080139718822, 29.384086099666629 ], [ -95.968262139248949, 29.384025100407481 ], [ -95.968350139817375, 29.38397610036996 ], [ -95.968457139046222, 29.383882099688041 ], [ -95.968507139411756, 29.383805099672621 ], [ -95.968538139214431, 29.383734100200687 ], [ -95.968519140038055, 29.383585099990277 ], [ -95.968488139784185, 29.383520099500355 ], [ -95.968419139130219, 29.383454099807743 ], [ -95.968093139506806, 29.383272100176853 ], [ -95.967904138873209, 29.383135099633748 ], [ -95.967427138963956, 29.382987100029059 ], [ -95.967226138705797, 29.382866099986881 ], [ -95.967170139498663, 29.382767099451318 ], [ -95.967157138916903, 29.382635099629983 ], [ -95.967364139394988, 29.382041099208639 ], [ -95.967396139464057, 29.381975099694788 ], [ -95.967006138756048, 29.381811100050342 ], [ -95.966812139517046, 29.381750099669905 ], [ -95.96644813849953, 29.381717099247389 ], [ -95.966216138955161, 29.381596099921676 ], [ -95.966021139237199, 29.38148109947295 ], [ -95.965864138284687, 29.381366099449615 ], [ -95.965651138851612, 29.381245099475688 ], [ -95.965513139060448, 29.381234099251024 ], [ -95.965337138812529, 29.381190099405448 ], [ -95.96523013899909, 29.381135099910146 ], [ -95.96510513850896, 29.380937099234135 ], [ -95.965010138453735, 29.380690099804021 ], [ -95.964847138827452, 29.380409099104746 ], [ -95.964558137942419, 29.380173099693394 ], [ -95.964264138240964, 29.380014099696837 ], [ -95.964119137853388, 29.379953099269663 ], [ -95.96396213837248, 29.379959099278331 ], [ -95.963843138000726, 29.379992099351728 ], [ -95.963724137998668, 29.380118099060734 ], [ -95.963429138316187, 29.380602099817349 ], [ -95.963310137828415, 29.38074009938866 ], [ -95.963040137844203, 29.380959099653712 ], [ -95.962802138443351, 29.380981099408622 ], [ -95.962438137914447, 29.380998099906801 ], [ -95.962118137727288, 29.380960099903014 ], [ -95.961728137744117, 29.380707099609687 ], [ -95.961622138124781, 29.380558099304732 ], [ -95.96140813766408, 29.380410099550701 ], [ -95.961251137895076, 29.380366099774626 ], [ -95.961076137145199, 29.38035509934717 ], [ -95.960762137872862, 29.380394099125017 ], [ -95.960454137575852, 29.380570099718117 ], [ -95.96037313743571, 29.380663099302112 ], [ -95.960342137719493, 29.380768099344809 ], [ -95.960360137409694, 29.380938099258149 ], [ -95.96043613786135, 29.381103099652002 ], [ -95.96034213741234, 29.381427099499859 ], [ -95.960254137476525, 29.381488099981816 ], [ -95.9600151376426, 29.3815981002253 ], [ -95.95991513743401, 29.381603099927151 ], [ -95.959789137708768, 29.381587099401468 ], [ -95.95963313766056, 29.381471100155355 ], [ -95.959469137546066, 29.381323099608739 ], [ -95.959432137153655, 29.381246099859055 ], [ -95.95934413678151, 29.381185099891962 ], [ -95.959287137437784, 29.381125099319309 ], [ -95.95913013653238, 29.381114100168638 ], [ -95.958785137407673, 29.381169099319258 ], [ -95.958547137393936, 29.381191099631003 ], [ -95.958390136425166, 29.381241099999038 ], [ -95.95828313674032, 29.381257099810053 ], [ -95.958202136713624, 29.381241099484043 ], [ -95.958076136699063, 29.381186099922143 ], [ -95.958001137099259, 29.381081099546499 ], [ -95.957900136815894, 29.380471099343431 ], [ -95.957819137004151, 29.380229099768734 ], [ -95.957724136524817, 29.379867099963178 ], [ -95.957668136301976, 29.379685099828681 ], [ -95.957593136756259, 29.379537099566175 ], [ -95.957524136615248, 29.379449099108182 ], [ -95.957417136414733, 29.379388099837573 ], [ -95.957241136190035, 29.379361099810286 ], [ -95.957103135999446, 29.379377099707103 ], [ -95.956865136173178, 29.379614099486929 ], [ -95.956695136487681, 29.379751099602053 ], [ -95.956557136732854, 29.379878099662871 ], [ -95.956388136509645, 29.379988099741425 ], [ -95.956218136014627, 29.38002109921268 ], [ -95.955936136594758, 29.380015099874875 ], [ -95.955729135930227, 29.379960099566411 ], [ -95.955026136308646, 29.379686099698745 ], [ -95.954869135589306, 29.379598099804781 ], [ -95.954637135612799, 29.37941609928804 ], [ -95.954511135952927, 29.379224099306619 ], [ -95.954467135324506, 29.379070099723027 ], [ -95.954461136069057, 29.378878099598836 ], [ -95.954543135297541, 29.378663099166637 ], [ -95.954881135478828, 29.378350098974753 ], [ -95.95491313605352, 29.378180099459374 ], [ -95.954875136346118, 29.378075098983665 ], [ -95.954731136123527, 29.377971099596184 ], [ -95.954586135763236, 29.377778099323205 ], [ -95.954511135376706, 29.377564098877418 ], [ -95.954448135922291, 29.377245099350255 ], [ -95.954360135623659, 29.377113098975133 ], [ -95.954009135497401, 29.376905099207178 ], [ -95.953796135790128, 29.376833098888305 ], [ -95.953551134930848, 29.376811099389588 ], [ -95.953237135098988, 29.376905099272278 ], [ -95.952735135159628, 29.377196099229486 ], [ -95.952597135502444, 29.377240098961007 ], [ -95.952428135395891, 29.377246099317532 ], [ -95.952164134837645, 29.376976098863622 ], [ -95.951982134567757, 29.376509098797079 ], [ -95.951869135329588, 29.376377099045637 ], [ -95.951743134535391, 29.376256098534316 ], [ -95.951568134509003, 29.376152098968721 ], [ -95.95125413470673, 29.37613009912226 ], [ -95.950821135000837, 29.37608009912072 ], [ -95.95062613473452, 29.375976099080987 ], [ -95.950306134419336, 29.375756098503391 ], [ -95.950112134201788, 29.375547098511387 ], [ -95.949961134680521, 29.375333099063909 ], [ -95.949879134151161, 29.375241098429068 ], [ -95.949667134890632, 29.375003098833659 ], [ -95.949642134304682, 29.37473209849437 ], [ -95.949642134869819, 29.374614098655609 ], [ -95.948763134657952, 29.375248098843997 ], [ -95.947199133928891, 29.376453099018661 ], [ -95.945802134034977, 29.377552099087325 ], [ -95.945180132951819, 29.37802609939877 ], [ -95.944195133013991, 29.37863709947786 ], [ -95.943407133480761, 29.379125099624876 ], [ -95.942374132713809, 29.379547099873768 ], [ -95.942282132579095, 29.379593100336066 ], [ -95.942368133174611, 29.379632099950907 ], [ -95.942563132557609, 29.379775099612196 ], [ -95.942613133313031, 29.379835099838676 ], [ -95.942663133329475, 29.379967099926414 ], [ -95.942651132955945, 29.380115099684552 ], [ -95.942557132737022, 29.380583099855574 ], [ -95.942544133141652, 29.38102210003272 ], [ -95.94255713257057, 29.38124810053105 ], [ -95.942525133200704, 29.381523100656956 ], [ -95.942469132429366, 29.381869100547743 ], [ -95.942450132357223, 29.382105100256751 ], [ -95.94238713255676, 29.382391100868421 ], [ -95.942281133171221, 29.382611100263308 ], [ -95.94216813331218, 29.382748100747374 ], [ -95.941903132344265, 29.382960100955231 ], [ -95.941747132688562, 29.38308410048575 ], [ -95.941534132481721, 29.383270100791233 ], [ -95.941458132569409, 29.383303100454452 ], [ -95.941396132786167, 29.383309100440215 ], [ -95.941314132828296, 29.383298100833404 ], [ -95.941220132882563, 29.383303100405413 ], [ -95.941088132137025, 29.383281101188913 ], [ -95.940988132406446, 29.383243100592527 ], [ -95.94067413241909, 29.383089100298758 ], [ -95.940341131967642, 29.382908100687221 ], [ -95.940021132405263, 29.382693100584174 ], [ -95.939915131991498, 29.382561100335174 ], [ -95.939808131977898, 29.382380100204006 ], [ -95.939682132399042, 29.382210100591418 ], [ -95.93960113203309, 29.382144100214511 ], [ -95.939394131986859, 29.382039100240188 ], [ -95.939136131593258, 29.381968100187191 ], [ -95.938434131642794, 29.381819100973765 ], [ -95.938270131283446, 29.381825100774481 ], [ -95.938151131328496, 29.381841100867298 ], [ -95.937982131489491, 29.381924100734022 ], [ -95.937906131517337, 29.381946100899551 ], [ -95.93773113179499, 29.382056100920536 ], [ -95.937624131178367, 29.38210010057681 ], [ -95.937511131702919, 29.382127100748303 ], [ -95.937379131825892, 29.382122100425693 ], [ -95.937216131368118, 29.382089100842688 ], [ -95.936959131031202, 29.381968100965182 ], [ -95.936463131639385, 29.381715100974912 ], [ -95.936162131398859, 29.381622100836235 ], [ -95.936035131137317, 29.381599100182662 ], [ -95.93582913093195, 29.381561100752929 ], [ -95.935345131089832, 29.381517100413557 ], [ -95.934806130602894, 29.381468100467369 ], [ -95.934605131223407, 29.381391100817332 ], [ -95.934392130369119, 29.381264100952635 ], [ -95.934329131238272, 29.381237100258108 ], [ -95.934128131208112, 29.381248100581814 ], [ -95.934003130553592, 29.38127510018365 ], [ -95.933821131013616, 29.381347100271412 ], [ -95.933488130393442, 29.381539100812841 ], [ -95.933237130523977, 29.381709101007605 ], [ -95.932873130782141, 29.381979100750186 ], [ -95.932635130362328, 29.382248100686521 ], [ -95.932566130431226, 29.382352100858203 ], [ -95.932522130457954, 29.382457100555634 ], [ -95.93245313016881, 29.382699101024368 ], [ -95.932421130803718, 29.38276510081587 ], [ -95.932371130766867, 29.382924100719084 ], [ -95.932346130136963, 29.383034100561261 ], [ -95.932334129947691, 29.38322610139339 ], [ -95.932277130491428, 29.383507100730004 ], [ -95.932252130780839, 29.383556100751441 ], [ -95.932133129881919, 29.383672101073444 ], [ -95.932064130305832, 29.383765100798914 ], [ -95.931875130744643, 29.38391310127875 ], [ -95.931430129858256, 29.384117101084414 ], [ -95.931110130158345, 29.384309101389874 ], [ -95.929327129837048, 29.384897101926704 ], [ -95.928380129145339, 29.38522710187123 ], [ -95.928267129420277, 29.385238101742232 ], [ -95.927965129618812, 29.385205101530474 ], [ -95.927564129548358, 29.385260101328441 ], [ -95.927250129282783, 29.385331101951959 ], [ -95.927043128968393, 29.385463101376622 ], [ -95.926760128568802, 29.385612102029338 ], [ -95.926560128556432, 29.385732101790325 ], [ -95.926447129009219, 29.385776101688045 ], [ -95.926340128632702, 29.385804101687889 ], [ -95.926208129126366, 29.385809101375489 ], [ -95.925938128722819, 29.385897101886506 ], [ -95.925637129249537, 29.386018101741101 ], [ -95.925323128895982, 29.386227102019291 ], [ -95.92472112845536, 29.386716101806726 ], [ -95.923101128371286, 29.388085102767246 ], [ -95.921821127929121, 29.389288102215058 ], [ -95.921350127522075, 29.389678102576383 ], [ -95.9212121277927, 29.389761102438438 ], [ -95.921086127787817, 29.389816102536255 ], [ -95.920716127806827, 29.389909102374791 ], [ -95.920528127449387, 29.390041103277476 ], [ -95.919580126930626, 29.390635103099157 ], [ -95.919454127068335, 29.390679103279858 ], [ -95.919297127475971, 29.390717103215419 ], [ -95.918908127680936, 29.390750103095115 ], [ -95.918751126884104, 29.390777103045924 ], [ -95.918519126685766, 29.39084310345682 ], [ -95.918074126968449, 29.391025102728328 ], [ -95.917917127351956, 29.391107102869224 ], [ -95.917766127083681, 29.391228103619365 ], [ -95.91749612700832, 29.391409103350956 ], [ -95.917308127286773, 29.391453103463729 ], [ -95.917132126667823, 29.391426103202708 ], [ -95.917032126573531, 29.391382103027087 ], [ -95.916944127185843, 29.391327103462256 ], [ -95.91684312682105, 29.391244103111323 ], [ -95.916404127030319, 29.3907881030024 ], [ -95.916147126163239, 29.390717103524914 ], [ -95.915657126651823, 29.3906341031105 ], [ -95.915425126691204, 29.390634103112951 ], [ -95.915143126764363, 29.390667103508044 ], [ -95.915017126759452, 29.390716102768224 ], [ -95.914848125822019, 29.390854103130053 ], [ -95.914691125857331, 29.390953103088343 ], [ -95.914359126429119, 29.391095103116026 ], [ -95.914320126277985, 29.39111210344219 ], [ -95.914145126124538, 29.39112910341689 ], [ -95.913963125900821, 29.391107103409748 ], [ -95.913724125597525, 29.391024103383817 ], [ -95.913586125793643, 29.390997103090939 ], [ -95.913260125475745, 29.391013103288948 ], [ -95.912977125718385, 29.391079102923573 ], [ -95.912764126163125, 29.391139103389587 ], [ -95.912563125166372, 29.391244103133204 ], [ -95.9124251259869, 29.391414103148712 ], [ -95.912409126033864, 29.391463103786265 ], [ -95.912393125825972, 29.391513103617136 ], [ -95.912374125817479, 29.391639103336846 ], [ -95.912368125228227, 29.392189103746272 ], [ -95.912406125486967, 29.392574103554875 ], [ -95.912437125697593, 29.39273910370347 ], [ -95.912500126051853, 29.392948103727079 ], [ -95.912537125977934, 29.39311810409076 ], [ -95.912575125733852, 29.393371103646587 ], [ -95.912575125791619, 29.39353610355986 ], [ -95.912562126011792, 29.393640103445996 ], [ -95.91248112560659, 29.393816103444891 ], [ -95.91231712593553, 29.393975103919505 ], [ -95.912236125472205, 29.394036103620557 ], [ -95.91214212552066, 29.39412410419343 ], [ -95.911577125765902, 29.394470104048875 ], [ -95.910817125182163, 29.394877104026129 ], [ -95.910704125559135, 29.394970104121494 ], [ -95.910635125351561, 29.395041104469975 ], [ -95.910484124782755, 29.395239104305762 ], [ -95.910472124934088, 29.395327103830486 ], [ -95.910472124889637, 29.395608104040512 ], [ -95.910491125505175, 29.395739104142212 ], [ -95.910698125245489, 29.396251104145751 ], [ -95.910980125578476, 29.396679104429012 ], [ -95.911187125741492, 29.39704810500643 ], [ -95.911325125175736, 29.397262104275168 ], [ -95.911375125908819, 29.397378104866736 ], [ -95.911438125783334, 29.397663104902243 ], [ -95.911450126003245, 29.39776810445553 ], [ -95.911444126089265, 29.39791110494803 ], [ -95.911482125450789, 29.398351104898843 ], [ -95.911488125737293, 29.398834104688241 ], [ -95.911475125965481, 29.398939104519513 ], [ -95.911431126142361, 29.3990431047614 ], [ -95.911375125277587, 29.399131104651651 ], [ -95.911262125861157, 29.399268105260589 ], [ -95.911130126065743, 29.399345105062693 ], [ -95.911055125926637, 29.399417105041401 ], [ -95.910904125515685, 29.399472105087906 ], [ -95.910320125766319, 29.399785104830794 ], [ -95.9102321252591, 29.399851105301739 ], [ -95.910169124972924, 29.399939105212663 ], [ -95.910150124904291, 29.400032105654535 ], [ -95.910169125471427, 29.400208104904124 ], [ -95.910295125612805, 29.40043310563863 ], [ -95.910539125842632, 29.400736105076565 ], [ -95.910740125704976, 29.400956105275245 ], [ -95.910853125656203, 29.401170104979485 ], [ -95.910878125717275, 29.401324105212961 ], [ -95.910878125644871, 29.401450105482827 ], [ -95.910853125737205, 29.4016761053694 ], [ -95.910784125360976, 29.40182410557361 ], [ -95.910621125500427, 29.402038105791988 ], [ -95.910338125832624, 29.402302105394028 ], [ -95.910112125299179, 29.402561105975913 ], [ -95.910056125474469, 29.402703105469676 ], [ -95.910043125944156, 29.402962105565248 ], [ -95.909980125342443, 29.403198106087384 ], [ -95.909911125785285, 29.403303105986748 ], [ -95.909666125291196, 29.403973106260533 ], [ -95.909566125298326, 29.404187106428985 ], [ -95.909440125589839, 29.404341106091923 ], [ -95.909264125629491, 29.404435106573498 ], [ -95.908976124963701, 29.404479105957783 ], [ -95.908637125076424, 29.404506106551892 ], [ -95.908417124932754, 29.404561105958237 ], [ -95.908109125353818, 29.404737106204724 ], [ -95.90798412456995, 29.404841106303447 ], [ -95.907820125038469, 29.405006106659979 ], [ -95.907676124575573, 29.405226106238853 ], [ -95.907626124913278, 29.405330106229481 ], [ -95.90755712454181, 29.405435106749859 ], [ -95.907400125277604, 29.405638106542728 ], [ -95.907312124590646, 29.405781106754286 ], [ -95.907224124649673, 29.405852106768155 ], [ -95.90713612447135, 29.405907106885486 ], [ -95.90696612487686, 29.40597310694551 ], [ -95.906810124597456, 29.406001106750569 ], [ -95.906690124615636, 29.406034106826048 ], [ -95.906257124213155, 29.406127106926974 ], [ -95.905931124578117, 29.406165107053528 ], [ -95.90578012419013, 29.40620910672596 ], [ -95.905541124383944, 29.406314106857948 ], [ -95.90538512469314, 29.406418106528726 ], [ -95.905058124049177, 29.406698107151353 ], [ -95.904920124132261, 29.406786106629824 ], [ -95.904763124663248, 29.406852106495236 ], [ -95.904650124456978, 29.406885107258248 ], [ -95.904531123941737, 29.406896106474768 ], [ -95.904393124150104, 29.406891106681247 ], [ -95.90406012368453, 29.406825107112933 ], [ -95.90385912451552, 29.406830106695651 ], [ -95.903708123647348, 29.406852107199704 ], [ -95.90201912384785, 29.40766510698613 ], [ -95.901932123597732, 29.407736106947919 ], [ -95.901869123470476, 29.407813107384946 ], [ -95.901812123832556, 29.407907107058822 ], [ -95.901806123861988, 29.407967106739324 ], [ -95.901812123420385, 29.408099107037369 ], [ -95.901825124000155, 29.408154107459243 ], [ -95.901850123824858, 29.408209107363643 ], [ -95.901881123987224, 29.408248107623205 ], [ -95.901894123663055, 29.408286107161263 ], [ -95.902069123779327, 29.408396106790654 ], [ -95.902358123705341, 29.408539107611702 ], [ -95.902484123719603, 29.408583106819606 ], [ -95.9025971239071, 29.408649107212355 ], [ -95.902772123775037, 29.408726106989633 ], [ -95.903067123985792, 29.408858107063384 ], [ -95.903224123771906, 29.408946106918311 ], [ -95.903488123780605, 29.409040107111501 ], [ -95.903657124656362, 29.409045107216432 ], [ -95.904034124614867, 29.409012107514201 ], [ -95.90422912395023, 29.409023107317754 ], [ -95.904417124102423, 29.409051106994461 ], [ -95.904505124633886, 29.409095107030829 ], [ -95.904656124504953, 29.409249107334709 ], [ -95.905038124607586, 29.409793107360869 ], [ -95.90514512444264, 29.409919107073932 ], [ -95.905427124685772, 29.410106107566929 ], [ -95.905603124965722, 29.410189107447003 ], [ -95.905942124527911, 29.410293107628231 ], [ -95.906137124417697, 29.410326107741653 ], [ -95.906262124509254, 29.410359107879245 ], [ -95.906777125006258, 29.41043610790609 ], [ -95.906909124731399, 29.410480107311148 ], [ -95.907047124585262, 29.410585107341788 ], [ -95.907097124922615, 29.410662107061611 ], [ -95.907110124972448, 29.410794107468156 ], [ -95.907091125519528, 29.410909107858252 ], [ -95.907009124997032, 29.411123107818071 ], [ -95.906840125347827, 29.411437107489643 ], [ -95.906814124835464, 29.411613108024472 ], [ -95.906820124863074, 29.412030107930725 ], [ -95.906802125545042, 29.412201108234768 ], [ -95.906732124908572, 29.412377107713191 ], [ -95.906657124657272, 29.412503108123822 ], [ -95.906494124956509, 29.412662107855994 ], [ -95.906148124897697, 29.412915107946709 ], [ -95.906023124701548, 29.413053108001371 ], [ -95.905979125059886, 29.413146108058967 ], [ -95.905954124620749, 29.413256107739592 ], [ -95.905966124532327, 29.413344107665136 ], [ -95.905966124554041, 29.413448108291664 ], [ -95.905991124846594, 29.413547108153651 ], [ -95.906098124922508, 29.413729108074385 ], [ -95.906167124838007, 29.41380610778106 ], [ -95.906255124526112, 29.413861108513874 ], [ -95.906399125222805, 29.413921108130289 ], [ -95.907015125041568, 29.414031108384449 ], [ -95.907291124809007, 29.414125108635339 ], [ -95.907454125788988, 29.414213108559483 ], [ -95.907554125064891, 29.414279108490923 ], [ -95.907743125713949, 29.41444910822019 ], [ -95.907893125064462, 29.414542108503724 ], [ -95.90800612516432, 29.414597108323793 ], [ -95.908220125766491, 29.414663107942566 ], [ -95.908333125574984, 29.414669107950981 ], [ -95.908659125397136, 29.414614107828115 ], [ -95.908904126177944, 29.414587107836017 ], [ -95.909300125470097, 29.414576107911753 ], [ -95.909463126038219, 29.414603108207977 ], [ -95.909620126332783, 29.41464210785281 ], [ -95.909720126130907, 29.414730108336812 ], [ -95.909789126106205, 29.414829108290064 ], [ -95.909852125554721, 29.41501610816049 ], [ -95.909839125915767, 29.415186108733927 ], [ -95.909802126286209, 29.415263108760243 ], [ -95.909682125470184, 29.415400108573259 ], [ -95.909224125528056, 29.415790108256289 ], [ -95.9091741261294, 29.415867108724164 ], [ -95.909142125842251, 29.416038108247974 ], [ -95.909148125660806, 29.416241108608926 ], [ -95.909180125476425, 29.416379108468863 ], [ -95.909230125769824, 29.416499108810257 ], [ -95.909450125542691, 29.416961108803672 ], [ -95.909694125958382, 29.417362108841658 ], [ -95.910014126115712, 29.418061108484412 ], [ -95.91006512576395, 29.418204108579218 ], [ -95.910065125828126, 29.418308109021961 ], [ -95.910046126546874, 29.418440108627916 ], [ -95.910046126692066, 29.41859410863611 ], [ -95.910064126572138, 29.418726108607821 ], [ -95.910096125925094, 29.418797108678419 ], [ -95.910246125847962, 29.418979109509706 ], [ -95.910315125859739, 29.419039108769748 ], [ -95.910479126804546, 29.419160109439325 ], [ -95.910573126376107, 29.419204109429366 ], [ -95.910805126297902, 29.419374108878888 ], [ -95.910868126354231, 29.419446109243516 ], [ -95.910906126703566, 29.419506109610527 ], [ -95.910918126351234, 29.419561109207361 ], [ -95.910905126100886, 29.419682109356334 ], [ -95.910827126278519, 29.419776108895842 ], [ -95.910742126259947, 29.419880109026799 ], [ -95.910510125962261, 29.420237109482901 ], [ -95.910378126790192, 29.420556109467967 ], [ -95.910328126879392, 29.421232109259972 ], [ -95.910346125938602, 29.421573109945108 ], [ -95.910384126596682, 29.421710109936477 ], [ -95.910447126612013, 29.421881109411988 ], [ -95.910528126263927, 29.422040109741651 ], [ -95.910955126997465, 29.422716109413006 ], [ -95.911074126969268, 29.422815109521782 ], [ -95.911206127071395, 29.422903109424706 ], [ -95.911288126700526, 29.422942109682445 ], [ -95.911564126322304, 29.422964109459869 ], [ -95.912738127376514, 29.423118110031318 ], [ -95.912889127479104, 29.423151109671281 ], [ -95.912970127062607, 29.423189110032048 ], [ -95.913052127070245, 29.423250109547205 ], [ -95.913108127655661, 29.423321110207048 ], [ -95.913134127218427, 29.423371109484023 ], [ -95.913146127009043, 29.42349210986723 ], [ -95.913027127339419, 29.423981109789157 ], [ -95.913027126773471, 29.424283110490375 ], [ -95.913058126985803, 29.424393110278334 ], [ -95.913089127048437, 29.424564109706868 ], [ -95.91311412694732, 29.424838110497745 ], [ -95.913127126927179, 29.425168110180774 ], [ -95.913102127397337, 29.425289110148409 ], [ -95.913089127484383, 29.425476110486116 ], [ -95.913095127697815, 29.425690110319646 ], [ -95.913114127653131, 29.425778110358756 ], [ -95.913183127503856, 29.425899110263774 ], [ -95.913365127724617, 29.426135110803799 ], [ -95.913422127092488, 29.426190110210378 ], [ -95.913547127578184, 29.426278110114154 ], [ -95.913616127925081, 29.426339110246328 ], [ -95.913748127535598, 29.426476110384442 ], [ -95.913849127017926, 29.426663110199286 ], [ -95.914024127070007, 29.42693311015919 ], [ -95.914313128105007, 29.42729511067785 ], [ -95.914426127342722, 29.427471110852625 ], [ -95.914508127508185, 29.427642110982266 ], [ -95.914652127874959, 29.427977110508397 ], [ -95.914872128271156, 29.428554110646861 ], [ -95.915079127923505, 29.428994110895058 ], [ -95.915173128325563, 29.4292851113456 ], [ -95.91524812832742, 29.429643110794192 ], [ -95.915305127798007, 29.430060110821596 ], [ -95.915317127936817, 29.430220110945729 ], [ -95.915399127844609, 29.430500110926168 ], [ -95.915468127728872, 29.430637110954542 ], [ -95.915593128280619, 29.430835111172588 ], [ -95.915738128558715, 29.430956111663757 ], [ -95.915895128370266, 29.431138111504666 ], [ -95.915932128675053, 29.431292111433628 ], [ -95.915920128579245, 29.431401111091528 ], [ -95.915869128302916, 29.431627111430036 ], [ -95.915832127738, 29.43172011174169 ], [ -95.915738128144497, 29.431880111989479 ], [ -95.9156311278809, 29.432099111875729 ], [ -95.915449128475714, 29.432369111300659 ], [ -95.915355127898522, 29.432528112071804 ], [ -95.915279127675902, 29.432693112061475 ], [ -95.91528512844917, 29.432764112139878 ], [ -95.915310128124517, 29.432858111815833 ], [ -95.915405128441961, 29.433067111691187 ], [ -95.915461128425591, 29.433144111639699 ], [ -95.915486128368755, 29.433185111613302 ], [ -95.915587128617773, 29.433353111471657 ], [ -95.915618128260334, 29.433551111551814 ], [ -95.915612128267696, 29.433759112054908 ], [ -95.915555128592459, 29.43393011193594 ], [ -95.915442128055929, 29.434183111732921 ], [ -95.915329128435133, 29.434364111790916 ], [ -95.915304128058878, 29.434512111817906 ], [ -95.915342127773513, 29.434732112315103 ], [ -95.915367127979579, 29.434804112552325 ], [ -95.915404128349621, 29.43485911208268 ], [ -95.915725127996964, 29.435260111829496 ], [ -95.915825128732365, 29.435364111992506 ], [ -95.91596912885106, 29.435568112140722 ], [ -95.916032128035297, 29.435694111964146 ], [ -95.916045128736769, 29.435788112388106 ], [ -95.916019128861521, 29.43593611198369 ], [ -95.915932128796001, 29.436156112665277 ], [ -95.915844128487464, 29.436321112038247 ], [ -95.915737128883762, 29.436469112414422 ], [ -95.915561128712426, 29.436689112130551 ], [ -95.91509012803543, 29.437239112523621 ], [ -95.915052128629043, 29.437332112987875 ], [ -95.915033127825311, 29.437409112934255 ], [ -95.915021128706599, 29.437563113123648 ], [ -95.915310128899108, 29.438635113329859 ], [ -95.915366128191266, 29.43881111261754 ], [ -95.915812128211854, 29.439569112841589 ], [ -95.91603112814704, 29.44000911281297 ], [ -95.916239129104568, 29.440377113391694 ], [ -95.91632012852935, 29.440559113105 ], [ -95.916408129289195, 29.440877112991362 ], [ -95.916577128448964, 29.441532113314334 ], [ -95.916647129334834, 29.441933113240797 ], [ -95.91664712893828, 29.442120113653953 ], [ -95.916634129256167, 29.4422191135323 ], [ -95.916552129377806, 29.442477113395995 ], [ -95.916452129283442, 29.442933113432098 ], [ -95.916420128692309, 29.443131113603844 ], [ -95.916427128584672, 29.443351113494831 ], [ -95.916458129035831, 29.443543114174499 ], [ -95.91654612860512, 29.443769114109006 ], [ -95.916583129203033, 29.443928113851737 ], [ -95.916609129048268, 29.444137114359741 ], [ -95.916583129473665, 29.444384114113227 ], [ -95.916558129036702, 29.444511113959305 ], [ -95.916551129293808, 29.444630114253538 ], [ -95.9166191292462, 29.444690114393492 ], [ -95.917441129508362, 29.445376113994651 ], [ -95.918442129832599, 29.446221114670699 ], [ -95.920305130315825, 29.447777114739541 ], [ -95.920628129688694, 29.448040114839706 ], [ -95.920729130341272, 29.448117115006813 ], [ -95.920827129956749, 29.44818411450235 ], [ -95.920926130644602, 29.448236114857803 ], [ -95.921026129990835, 29.448275114395262 ], [ -95.921124129865603, 29.448302114509985 ], [ -95.921219130594849, 29.448319114917112 ], [ -95.921341130478211, 29.448332114305664 ], [ -95.921587130749216, 29.448359114709522 ], [ -95.921707130738099, 29.448380114442692 ], [ -95.921755130048936, 29.448396114444634 ], [ -95.921856129980497, 29.448454114677741 ], [ -95.921739130703514, 29.448565115086286 ], [ -95.921527130063666, 29.448765115056123 ], [ -95.919766130142833, 29.450403115398434 ], [ -95.91807812987129, 29.451964115852757 ], [ -95.91792812937814, 29.452113115207148 ], [ -95.917529129973516, 29.452475116016096 ], [ -95.917119130002618, 29.452846115380058 ], [ -95.91545812864814, 29.45438011592794 ], [ -95.914712128905649, 29.455084116049676 ], [ -95.912931128230724, 29.456726116683399 ], [ -95.912864128477807, 29.456791117065766 ], [ -95.912174128104198, 29.457442117220278 ], [ -95.911224128504429, 29.458313116819706 ], [ -95.910136128309688, 29.459321117261979 ], [ -95.912268128812343, 29.461085117486714 ], [ -95.913930129397201, 29.462460117922419 ], [ -95.916050129549944, 29.464250118284259 ], [ -95.916113129890462, 29.464304117762651 ], [ -95.916177129703655, 29.464358118615294 ], [ -95.91619913000217, 29.464376118040612 ], [ -95.916222129512619, 29.46439511804893 ], [ -95.916349129681848, 29.464500117936023 ], [ -95.918028130379952, 29.46589711799701 ], [ -95.919589131023244, 29.467197118612663 ], [ -95.919785130978269, 29.46736011869152 ], [ -95.920162131010002, 29.467660118288844 ], [ -95.922150131430641, 29.46934811907466 ], [ -95.930241133645723, 29.476000120513682 ], [ -95.934036134982151, 29.47915412015886 ], [ -95.935385135549808, 29.480263120866944 ], [ -95.935934134962821, 29.480725120737713 ], [ -95.936143135297456, 29.480961121296623 ], [ -95.936334135420495, 29.48123012131715 ], [ -95.936557135596274, 29.481567120954477 ], [ -95.936794135796006, 29.482029120962409 ], [ -95.936943135469775, 29.482612121600209 ], [ -95.93715213620996, 29.48342312124085 ], [ -95.937230136397844, 29.483747121099324 ], [ -95.937318135823475, 29.484104121661627 ], [ -95.937410136105427, 29.484429121857016 ], [ -95.937652136038579, 29.485279121471368 ], [ -95.93748313580025, 29.48537912174498 ], [ -95.936769135777226, 29.485804121899175 ], [ -95.935995135935514, 29.48628612200946 ], [ -95.935905135860963, 29.48634212190138 ], [ -95.935798135883687, 29.486410121944548 ], [ -95.93013713440277, 29.489944123347868 ], [ -95.928933134190132, 29.490672122903977 ], [ -95.929151133939058, 29.490840122959547 ], [ -95.929297134317508, 29.490952122772754 ], [ -95.932080135402373, 29.493328123992903 ], [ -95.933962135935531, 29.494897123832548 ], [ -95.938455137117913, 29.498729124344838 ], [ -95.939419137448894, 29.499477124377101 ], [ -95.940359137349134, 29.500265124914524 ], [ -95.943127138779289, 29.502552124706543 ], [ -95.943575138242466, 29.502927125041815 ], [ -95.950426140633795, 29.508663125767072 ], [ -95.952309141443692, 29.510256125994339 ], [ -95.954495141205527, 29.512110126196134 ], [ -95.955211141743135, 29.512717126331722 ], [ -95.955511141792286, 29.512971126729546 ], [ -95.956448141849336, 29.513765127080656 ], [ -95.956630142325892, 29.513920127124937 ], [ -95.957463142105652, 29.514627126945335 ], [ -95.957930142829085, 29.515023127106769 ], [ -95.958356142178701, 29.515384127038256 ], [ -95.961231143088483, 29.51782312713971 ], [ -95.961268144063823, 29.517878127196312 ], [ -95.961418143578456, 29.518105128019471 ], [ -95.961608143153242, 29.518364127479554 ], [ -95.96164214351667, 29.518776128077988 ], [ -95.961642144011094, 29.519126127843208 ], [ -95.961403144077224, 29.519612127541357 ], [ -95.96136914327812, 29.519682127637068 ], [ -95.960983143895504, 29.520162128036091 ], [ -95.960853143996729, 29.5203451277802 ], [ -95.959759142848995, 29.521312128093385 ], [ -95.959733143757433, 29.521316128305163 ], [ -95.959680142958604, 29.521342127911346 ], [ -95.959623143612589, 29.521386128058875 ], [ -95.95944614308678, 29.521549128462116 ], [ -95.958206143094571, 29.522690128435826 ], [ -95.956334142768711, 29.524404129174187 ], [ -95.955674142855699, 29.525010129277319 ], [ -95.955659142374159, 29.52502312887097 ], [ -95.954885142077003, 29.525737129809386 ], [ -95.9542731425977, 29.526294129115257 ], [ -95.953028141731551, 29.527439129582028 ], [ -95.9524331417973, 29.528000130246678 ], [ -95.951991141529177, 29.528392129864674 ], [ -95.951937141185169, 29.5284441298712 ], [ -95.951735141065498, 29.528642130510441 ], [ -95.951253141110627, 29.529083129872607 ], [ -95.950980141438635, 29.529319130429279 ], [ -95.952448141484481, 29.530548130341113 ], [ -95.952536141428737, 29.530625130496947 ], [ -95.952730142178069, 29.530794130343214 ], [ -95.952801142140004, 29.530856130837979 ], [ -95.952855141816613, 29.530911130572871 ], [ -95.95290414187653, 29.53097213047652 ], [ -95.952945142425548, 29.531042130987522 ], [ -95.952976141509723, 29.531123130852251 ], [ -95.953014142421708, 29.531314130808887 ], [ -95.953210142428873, 29.532661131074782 ], [ -95.953242141900915, 29.532808131035459 ], [ -95.953281142172798, 29.533123131320455 ], [ -95.953569142782484, 29.535015131601153 ], [ -95.95369314231705, 29.535787131303024 ], [ -95.953899142784692, 29.537164132186735 ], [ -95.953961142159613, 29.537582132008033 ], [ -95.954704143147609, 29.542420132904422 ], [ -95.954806142849279, 29.543128132899817 ], [ -95.954943142649043, 29.544071132702943 ], [ -95.949697141399525, 29.544643133562076 ], [ -95.949210141896287, 29.544697133428045 ], [ -95.94406014025482, 29.54526013381318 ], [ -95.938626138576524, 29.545876133658101 ], [ -95.924404135903572, 29.547486134919595 ], [ -95.910872132574738, 29.549028135752739 ], [ -95.907351130999047, 29.549453135418844 ], [ -95.905225131137485, 29.549709135558402 ], [ -95.905066130292653, 29.549727136036601 ], [ -95.904761130792096, 29.549764135993193 ], [ -95.902438130247347, 29.550045136338248 ], [ -95.902164129523143, 29.550076135857221 ], [ -95.893163128007586, 29.551111136551043 ], [ -95.890429126571874, 29.551435137165594 ], [ -95.889098126601297, 29.551592136463299 ], [ -95.888956126658101, 29.551608136871845 ], [ -95.888890126630059, 29.551615137280361 ], [ -95.888850126319355, 29.551620136744241 ], [ -95.888753126162371, 29.551633136605524 ], [ -95.88855812637145, 29.551653136763047 ], [ -95.888453126727214, 29.551664136962849 ], [ -95.888339126880751, 29.551676137137665 ], [ -95.888060126416917, 29.551705136777102 ], [ -95.8877511258341, 29.551738136566314 ], [ -95.885726126144448, 29.551954137322113 ], [ -95.884641125743585, 29.552069136985239 ], [ -95.884608125639375, 29.552073137526907 ], [ -95.882424124576417, 29.552362137700825 ], [ -95.882160125008426, 29.552378137120431 ], [ -95.880275124102752, 29.552598137632078 ], [ -95.876312123840677, 29.5530581374015 ], [ -95.875509122812829, 29.553166137441082 ], [ -95.872262121931399, 29.553538138247035 ], [ -95.872288122878203, 29.553647137903894 ], [ -95.872310122334952, 29.553794138230863 ], [ -95.872470122548251, 29.554848138280462 ], [ -95.872634122211878, 29.555970138483513 ], [ -95.873901123643449, 29.564360140272989 ], [ -95.873928122972472, 29.564550140097971 ], [ -95.874068123282882, 29.565542140097701 ], [ -95.874174123558134, 29.566207140738438 ], [ -95.874360123388215, 29.567490140230241 ], [ -95.8745051237903, 29.568401141158144 ], [ -95.87455812332675, 29.568768141019543 ], [ -95.874653124181819, 29.569377141020844 ], [ -95.875206123822011, 29.573124141618266 ], [ -95.875515123773383, 29.57514114200476 ], [ -95.875520123770713, 29.575175142251137 ], [ -95.87553712382514, 29.575282142250124 ], [ -95.875547124124338, 29.575376142018158 ], [ -95.875559124766966, 29.575491142270884 ], [ -95.880171125455874, 29.576588142575886 ], [ -95.880663125118033, 29.576705142188487 ], [ -95.881277125500631, 29.576851142655137 ], [ -95.886201126806299, 29.578030141993338 ], [ -95.888184128096498, 29.57850614246621 ], [ -95.888594127447419, 29.578604142165563 ], [ -95.888903128033661, 29.57867814288058 ], [ -95.88906812735442, 29.57871814275833 ], [ -95.889905128083697, 29.578919142029594 ], [ -95.892147128768599, 29.579463142363739 ], [ -95.89709713010258, 29.580665142183445 ], [ -95.898186130068325, 29.580918142205345 ], [ -95.89811813019378, 29.58124414238447 ], [ -95.898106130144228, 29.581308142966776 ], [ -95.898099129972351, 29.581344142908513 ], [ -95.897879130325222, 29.582514142841525 ], [ -95.897446130272158, 29.582572143359954 ], [ -95.897119130368125, 29.58268714301396 ], [ -95.896968130332851, 29.58270914301243 ], [ -95.896830130394591, 29.582715142742991 ], [ -95.896578129860515, 29.582687143390537 ], [ -95.896484130364357, 29.582687143223279 ], [ -95.896188129478645, 29.582709142995483 ], [ -95.895792129238345, 29.582753142772759 ], [ -95.895471129280295, 29.582885143485825 ], [ -95.895371129423708, 29.582896143051471 ], [ -95.894842129767781, 29.582863142773697 ], [ -95.894591129885654, 29.582868142654711 ], [ -95.894497129457804, 29.582879142748467 ], [ -95.894346129802202, 29.582912143295538 ], [ -95.894308129254838, 29.582912142874541 ], [ -95.894277129570014, 29.582901143549634 ], [ -95.894220129665854, 29.58285714297385 ], [ -95.894119129370381, 29.582758143139934 ], [ -95.894088128888413, 29.582742143399209 ], [ -95.894056129578217, 29.5827361428248 ], [ -95.894025129069263, 29.582741142740172 ], [ -95.893968129242296, 29.582769143506873 ], [ -95.893931129349497, 29.582813143132046 ], [ -95.893912129164917, 29.582873143023765 ], [ -95.893912129141981, 29.582961142892685 ], [ -95.893943129047713, 29.583159142812345 ], [ -95.89393112878507, 29.58318714323239 ], [ -95.893855129595508, 29.583203143317096 ], [ -95.893591129658489, 29.583225143039979 ], [ -95.89342112902591, 29.583269143453141 ], [ -95.893346128827062, 29.583302143277876 ], [ -95.893226129039078, 29.583373143121719 ], [ -95.89306312899663, 29.583522143379017 ], [ -95.89300012864301, 29.583571143047205 ], [ -95.892943129104438, 29.583599143395993 ], [ -95.892887129170234, 29.583593142883835 ], [ -95.8928241291012, 29.583571142894737 ], [ -95.892629129456722, 29.583478143185886 ], [ -95.892560128886785, 29.58345614358236 ], [ -95.892497128833242, 29.58345014366105 ], [ -95.892440129051522, 29.583456143143401 ], [ -95.89238312885476, 29.583483143170618 ], [ -95.892339128827757, 29.583527143117365 ], [ -95.89229512907356, 29.583615143451933 ], [ -95.892201129053745, 29.583884143004958 ], [ -95.89216312851218, 29.5839501430249 ], [ -95.892125129018524, 29.583978143088277 ], [ -95.892063129331106, 29.583983143519806 ], [ -95.89199412886444, 29.58396714315495 ], [ -95.891830128661766, 29.583901143264125 ], [ -95.891729128771573, 29.583912143076585 ], [ -95.89169812885747, 29.583950143000447 ], [ -95.891673128909147, 29.584082143651514 ], [ -95.891654129196027, 29.584120143505658 ], [ -95.891604128951101, 29.584142143045582 ], [ -95.891390128564737, 29.584181143489804 ], [ -95.891295128947519, 29.584214143168101 ], [ -95.891251128137924, 29.584247143778182 ], [ -95.891226128900897, 29.584280143696837 ], [ -95.891207128952303, 29.584329143359117 ], [ -95.891182128443361, 29.584631143270855 ], [ -95.891132128973894, 29.58469214360429 ], [ -95.891094128652483, 29.584714143843172 ], [ -95.891044128811899, 29.584719143795592 ], [ -95.890962129092628, 29.584703143161189 ], [ -95.890842128372213, 29.58471914333477 ], [ -95.890817128407136, 29.584714143187128 ], [ -95.89078612862933, 29.584692143185475 ], [ -95.89076112859307, 29.584488143407174 ], [ -95.890748128218249, 29.584450143627034 ], [ -95.890704128623199, 29.584428143812357 ], [ -95.890654128811349, 29.584444143492409 ], [ -95.890434128742001, 29.5845821435584 ], [ -95.890421128111768, 29.584620143698746 ], [ -95.890440128344949, 29.584681143803312 ], [ -95.890471128853363, 29.584725143653948 ], [ -95.890462128449968, 29.584742143234703 ], [ -95.890088128305834, 29.584807143710478 ], [ -95.890025128062632, 29.584834144071376 ], [ -95.889949128717305, 29.584889143828047 ], [ -95.889704128218753, 29.585021144134085 ], [ -95.889415127692544, 29.585120143881145 ], [ -95.889100128320365, 29.585318143838926 ], [ -95.889063128235676, 29.585329143429977 ], [ -95.888987127695017, 29.58530114396423 ], [ -95.888905128414095, 29.585290143342089 ], [ -95.888754127870996, 29.585351144163653 ], [ -95.888660128425101, 29.585466144008603 ], [ -95.888547127607495, 29.585648143435588 ], [ -95.888471127951021, 29.585862143712799 ], [ -95.888415128503553, 29.586109143951937 ], [ -95.888358127979942, 29.586247143844236 ], [ -95.888282127529806, 29.586395143826362 ], [ -95.888125128101294, 29.586939144214263 ], [ -95.888087127892589, 29.587005144028829 ], [ -95.88803112795604, 29.587049144159057 ], [ -95.887917127488805, 29.587076144040616 ], [ -95.887898127686626, 29.587098144052391 ], [ -95.887829127494498, 29.587203143832355 ], [ -95.887741127595447, 29.587472144583405 ], [ -95.887703128015659, 29.587544144729943 ], [ -95.887666128143294, 29.587571144184629 ], [ -95.887628127845474, 29.587571144620323 ], [ -95.887559128142783, 29.58755414467646 ], [ -95.887464127742987, 29.587521144245549 ], [ -95.88724412823511, 29.587400144371664 ], [ -95.887219127301179, 29.587406144322397 ], [ -95.887200127246402, 29.587422144710111 ], [ -95.887175127495098, 29.587466144663608 ], [ -95.887162128214726, 29.587587144088729 ], [ -95.887175127865589, 29.587675144123306 ], [ -95.887213127819507, 29.587708144337128 ], [ -95.887320128006039, 29.587741144352258 ], [ -95.887389127759803, 29.587835144445457 ], [ -95.887445127384908, 29.58794514461885 ], [ -95.887521128391299, 29.588511144067748 ], [ -95.887502127686119, 29.588599144142673 ], [ -95.887477128347498, 29.588654144929308 ], [ -95.887300127689372, 29.588797144359905 ], [ -95.887288127521913, 29.588824144137813 ], [ -95.887294128127053, 29.588863144802033 ], [ -95.887319127561227, 29.588895144765896 ], [ -95.887369128317474, 29.588923144893972 ], [ -95.888130128373106, 29.589204144831104 ], [ -95.888552127847859, 29.589435144862684 ], [ -95.888696128409123, 29.589599144255146 ], [ -95.88869612842764, 29.589682144647771 ], [ -95.888665128092413, 29.589742144512726 ], [ -95.888621127843692, 29.589786145074168 ], [ -95.888501128259534, 29.589880145150854 ], [ -95.888262128361504, 29.589946144351707 ], [ -95.888218128559899, 29.589968145060187 ], [ -95.88819912828491, 29.589990145100185 ], [ -95.888212127707007, 29.590050144798223 ], [ -95.8882681281831, 29.590111144725096 ], [ -95.888344127786524, 29.590127144531483 ], [ -95.888413127931685, 29.59012214519689 ], [ -95.888677128734344, 29.589973144624249 ], [ -95.888734128098065, 29.589957145053024 ], [ -95.888790128759666, 29.589962144458497 ], [ -95.888866128596405, 29.590017144894105 ], [ -95.888897128753086, 29.59012214477233 ], [ -95.88889112838946, 29.590177144457389 ], [ -95.888822127938084, 29.590347144717747 ], [ -95.888752127881958, 29.590479145217831 ], [ -95.888733128744278, 29.590638144984631 ], [ -95.888840127985588, 29.590655145250039 ], [ -95.888903128571883, 29.590704145281123 ], [ -95.888928128185398, 29.590748144846355 ], [ -95.888922128839042, 29.590853145323855 ], [ -95.888935128183178, 29.590908144577501 ], [ -95.888960127832974, 29.590952145036667 ], [ -95.889155128749181, 29.591023144569789 ], [ -95.88922412882863, 29.591078145364921 ], [ -95.88924912831915, 29.591150144999208 ], [ -95.88926812887631, 29.59128714503969 ], [ -95.88926112818362, 29.591331145069219 ], [ -95.889236127985754, 29.591380144804493 ], [ -95.889173128252665, 29.591435144974735 ], [ -95.888922128370083, 29.591584144714353 ], [ -95.88887812831608, 29.591595144874528 ], [ -95.888752128661196, 29.59160014477764 ], [ -95.888714128628664, 29.591611145424856 ], [ -95.888632127843806, 29.591765145373159 ], [ -95.888601127901438, 29.591798145148111 ], [ -95.888544128707068, 29.591826145518429 ], [ -95.88848812783003, 29.591836145268232 ], [ -95.888406128240391, 29.591809145162699 ], [ -95.888330128591164, 29.59177014472845 ], [ -95.888255128614944, 29.591694145069759 ], [ -95.888217128583292, 29.591639145495861 ], [ -95.888142128135783, 29.591589144859725 ], [ -95.888060127776313, 29.591562145418546 ], [ -95.888016127953549, 29.591556145020501 ], [ -95.887978128130072, 29.591589145193272 ], [ -95.887972128131494, 29.591638145325227 ], [ -95.888010127869009, 29.591765145466844 ], [ -95.888035128544246, 29.591985144830605 ], [ -95.888098128366209, 29.592100145275612 ], [ -95.88814212866636, 29.592122144958807 ], [ -95.888186128668778, 29.59212214489586 ], [ -95.888249127973594, 29.592078145028861 ], [ -95.88833712870364, 29.592062145529034 ], [ -95.888362127962068, 29.592177145596072 ], [ -95.888355127850389, 29.5922211455932 ], [ -95.888280128371761, 29.592304145289223 ], [ -95.88824212870712, 29.59232614567804 ], [ -95.888167127981319, 29.592331145280586 ], [ -95.888072128462227, 29.592326145586547 ], [ -95.887965128362268, 29.592287145006839 ], [ -95.887852128433011, 29.592221145495682 ], [ -95.88775812826043, 29.592221144801858 ], [ -95.887714128403005, 29.592243145357138 ], [ -95.887657127608804, 29.5923201451211 ], [ -95.887569128319129, 29.592369145608426 ], [ -95.887355127579823, 29.59240814537004 ], [ -95.887311128486303, 29.592408145183768 ], [ -95.88714812765474, 29.592358145339194 ], [ -95.887129128208542, 29.592369145386048 ], [ -95.887098127687779, 29.59243014495684 ], [ -95.886956127583417, 29.59277714492297 ], [ -95.886881127672439, 29.592958145259249 ], [ -95.887302128461499, 29.593107145074804 ], [ -95.888164128522718, 29.593534145389611 ], [ -95.888579128075307, 29.593770145582646 ], [ -95.888901128932147, 29.593932145616623 ], [ -95.889240128110629, 29.594137145916758 ], [ -95.889402128442626, 29.594249145765708 ], [ -95.889682128864493, 29.594463145645413 ], [ -95.890037128492196, 29.594764146011734 ], [ -95.890160129052589, 29.594861145262268 ], [ -95.890335128494854, 29.595014145612531 ], [ -95.890465128543568, 29.595154145924596 ], [ -95.890574129405351, 29.595263146025747 ], [ -95.890789128883966, 29.59552814615887 ], [ -95.890846128570914, 29.5955801457715 ], [ -95.890967128965443, 29.595680145779109 ], [ -95.891153129362309, 29.596002145844579 ], [ -95.891443129105554, 29.596600145619224 ], [ -95.891453128846265, 29.596634145595324 ], [ -95.891478128831181, 29.596777145862088 ], [ -95.891529128990058, 29.597135146489755 ], [ -95.891544128989565, 29.59742314621074 ], [ -95.89150512938825, 29.597999146335493 ], [ -95.891456128964862, 29.598430146150754 ], [ -95.891368129643553, 29.598965146644368 ], [ -95.891309128844668, 29.599249146897808 ], [ -95.891257128950883, 29.599461147000852 ], [ -95.891162128790739, 29.599812146467389 ], [ -95.891026129611873, 29.600266146861831 ], [ -95.890948129529065, 29.600583147184256 ], [ -95.890927129277117, 29.600690146518151 ], [ -95.890827128910004, 29.601297146802672 ], [ -95.890791128784599, 29.601547147349837 ], [ -95.890747128956519, 29.601906147050244 ], [ -95.890605128917144, 29.602836147441312 ], [ -95.890544129468609, 29.603374147411699 ], [ -95.89050812933236, 29.603733147804199 ], [ -95.890469129458523, 29.604273147295586 ], [ -95.890458129036332, 29.604526147564606 ], [ -95.890445129838696, 29.605319147849922 ], [ -95.890456129599883, 29.605788148279917 ], [ -95.890549129936375, 29.606831147857598 ], [ -95.890564129588327, 29.606938147838218 ], [ -95.890656129388006, 29.607473148327145 ], [ -95.890703129715078, 29.607686147893109 ], [ -95.890760130008914, 29.607859147935272 ], [ -95.890825130038564, 29.60803014867254 ], [ -95.890978129238064, 29.608517148704554 ], [ -95.891082129928364, 29.608753148095857 ], [ -95.891194129448564, 29.608946148114011 ], [ -95.891262129414486, 29.609036148923252 ], [ -95.891365129518604, 29.609149148406072 ], [ -95.891558130185317, 29.609426148975913 ], [ -95.891600129338869, 29.609528148353352 ], [ -95.89163413017657, 29.609594148218211 ], [ -95.891709129634563, 29.609722148654395 ], [ -95.89181912971641, 29.609875148665353 ], [ -95.892025129713502, 29.610268149211212 ], [ -95.892282129713237, 29.610800148699987 ], [ -95.892525130161857, 29.611258148952292 ], [ -95.892779130746575, 29.611830148740616 ], [ -95.892826130370793, 29.612002149072961 ], [ -95.89284113043982, 29.612011148667282 ], [ -95.892935129998392, 29.612240149133275 ], [ -95.892986130646875, 29.612396149204393 ], [ -95.893126129945799, 29.612805149563517 ], [ -95.893155129961869, 29.612947149581331 ], [ -95.893211130204861, 29.613120149351772 ], [ -95.893321130198728, 29.613430149701689 ], [ -95.893426130401338, 29.613779149138036 ], [ -95.893690130200781, 29.614762149225491 ], [ -95.893712130795492, 29.61490514997098 ], [ -95.893722130617277, 29.615085149739251 ], [ -95.89374813069405, 29.615300149454168 ], [ -95.893757131052254, 29.615553149539483 ], [ -95.893746131074607, 29.615696149576049 ], [ -95.893715130441322, 29.615801149570135 ], [ -95.89368613066425, 29.615869149455534 ], [ -95.89360013037296, 29.616033149899188 ], [ -95.893541130443978, 29.616128149992615 ], [ -95.89341413091519, 29.616355150179434 ], [ -95.893375130849392, 29.616418150384309 ], [ -95.893034130549566, 29.61691215008867 ], [ -95.892985130070784, 29.616970150539697 ], [ -95.89293113032447, 29.617025150236483 ], [ -95.892621130210372, 29.617315150114898 ], [ -95.892264130143815, 29.61766515004437 ], [ -95.892091130338187, 29.617821150306945 ], [ -95.891853129794939, 29.618070150116804 ], [ -95.891731130356277, 29.618190150773845 ], [ -95.891586130191854, 29.618319150127331 ], [ -95.89136613060154, 29.618534150825027 ], [ -95.890970129833505, 29.618951150874249 ], [ -95.890774129761652, 29.61918215052167 ], [ -95.890424129527062, 29.619629151032989 ], [ -95.890202130333918, 29.619933150496745 ], [ -95.889964129847243, 29.62022815082635 ], [ -95.889732130024356, 29.620569151385428 ], [ -95.889559129993359, 29.620815151386431 ], [ -95.889369129690422, 29.621215151023751 ], [ -95.889270129930097, 29.621490151353211 ], [ -95.889251129331043, 29.621560150890069 ], [ -95.889208129787633, 29.621810151640943 ], [ -95.889195130250286, 29.621917151268619 ], [ -95.889161130064366, 29.622385150921058 ], [ -95.889141129879675, 29.62281815157219 ], [ -95.889192129783595, 29.623465151558182 ], [ -95.889273130265877, 29.624002151502495 ], [ -95.88930612998054, 29.624180151551311 ], [ -95.889410130063482, 29.624566152201396 ], [ -95.889469130352296, 29.624739151488864 ], [ -95.889486129961114, 29.62480915198644 ], [ -95.889504130075508, 29.624916151837734 ], [ -95.889669130047579, 29.625218152289722 ], [ -95.890239130361294, 29.626534151859335 ], [ -95.890301130765238, 29.626667152027487 ], [ -95.890514129913555, 29.627058151832145 ], [ -95.89078613016612, 29.627504152513989 ], [ -95.89093913012411, 29.627718152121094 ], [ -95.891217130351748, 29.628161152885511 ], [ -95.891644131011319, 29.628736152193184 ], [ -95.891899131019926, 29.629064152641284 ], [ -95.892363131235228, 29.62970415235511 ], [ -95.892773131067088, 29.630201152492923 ], [ -95.893002130644334, 29.630457152757703 ], [ -95.893614131542392, 29.631091153283634 ], [ -95.893965131222572, 29.63144715341663 ], [ -95.894655131806005, 29.632117153200596 ], [ -95.89492013174511, 29.632360153126744 ], [ -95.895424131542896, 29.632822153287414 ], [ -95.895830132113005, 29.63318215333841 ], [ -95.896066132177921, 29.63338415364133 ], [ -95.896917132115178, 29.634031153762603 ], [ -95.897232132530959, 29.63426515312063 ], [ -95.897429132818928, 29.634396153325817 ], [ -95.898012132548615, 29.634800153223939 ], [ -95.898263133121404, 29.634924153229505 ], [ -95.89870213303503, 29.635124153173983 ], [ -95.899153132543319, 29.635379153873231 ], [ -95.899634133161882, 29.635660153546539 ], [ -95.899774133370045, 29.635736153388791 ], [ -95.900183132735819, 29.635981153592809 ], [ -95.900542133570923, 29.636279153819551 ], [ -95.900779133800356, 29.636529153991273 ], [ -95.901128133613739, 29.636886153498548 ], [ -95.901541133469934, 29.637382153954654 ], [ -95.901608133974023, 29.637473154048184 ], [ -95.901790133417535, 29.637756154346928 ], [ -95.901900133419872, 29.637908153871269 ], [ -95.901979134128396, 29.638063154379399 ], [ -95.901990134190001, 29.63807215406575 ], [ -95.90216613345612, 29.638475154208528 ], [ -95.902334133991985, 29.638765154025251 ], [ -95.902476133790486, 29.638985154527163 ], [ -95.902571133715412, 29.639261154267029 ], [ -95.902730134308143, 29.639858154326124 ], [ -95.902826134046904, 29.640320154634395 ], [ -95.902853133880896, 29.64060715429579 ], [ -95.902843134441369, 29.64093215459901 ], [ -95.902833133771267, 29.641039154677738 ], [ -95.902802133897708, 29.641204154880644 ], [ -95.902718134561837, 29.64192115465266 ], [ -95.90264313400013, 29.642422154921999 ], [ -95.902626133970244, 29.642566154749208 ], [ -95.902616134385795, 29.642926154990597 ], [ -95.902591134235891, 29.643503155574749 ], [ -95.902599134528472, 29.643683155483906 ], [ -95.902719133861666, 29.644868155745922 ], [ -95.902725134122463, 29.645048155331025 ], [ -95.902735134446345, 29.645164155581526 ], [ -95.90275813451693, 29.645408155715433 ], [ -95.902836134764812, 29.645799155576366 ], [ -95.902903134025863, 29.646007155486 ], [ -95.902988134583509, 29.646248155716417 ], [ -95.903141134657432, 29.646660156018495 ], [ -95.90332013404236, 29.646944155974914 ], [ -95.903519134505174, 29.647301155573171 ], [ -95.903741134696546, 29.647647156437735 ], [ -95.903826135102634, 29.647771156104955 ], [ -95.904046134516619, 29.64811815618075 ], [ -95.904072134517477, 29.648155155656895 ], [ -95.90428413522605, 29.648456156494124 ], [ -95.904382134301329, 29.648572156299849 ], [ -95.904475134512538, 29.648643156302995 ], [ -95.904534135223102, 29.648694155992889 ], [ -95.904673134666851, 29.648828156038562 ], [ -95.904778134680924, 29.648939156496365 ], [ -95.905136135309817, 29.64923915607854 ], [ -95.905328135463236, 29.649473156682649 ], [ -95.905382135624023, 29.649528156096544 ], [ -95.905468135491589, 29.649606156344969 ], [ -95.905689135692569, 29.6497681560617 ], [ -95.905886135710034, 29.649900155967785 ], [ -95.906536135276667, 29.65040115624846 ], [ -95.90713613543933, 29.650898156623136 ], [ -95.907640135272615, 29.651375156618908 ], [ -95.908039135522174, 29.651740156927026 ], [ -95.908090135903706, 29.651797156368993 ], [ -95.908256135762784, 29.652004156964697 ], [ -95.908385135676909, 29.652189156418896 ], [ -95.908514135955826, 29.652415156908301 ], [ -95.908631136042843, 29.652589156389485 ], [ -95.908695135782054, 29.652771157009649 ], [ -95.908861135974888, 29.653244156590446 ], [ -95.909003136458068, 29.653734156738853 ], [ -95.9090531361947, 29.653946156652445 ], [ -95.909390136069547, 29.654987157005252 ], [ -95.909429136286718, 29.655090157255369 ], [ -95.909735136241707, 29.655641157369114 ], [ -95.909838137036644, 29.655797157291733 ], [ -95.910016136821866, 29.656083157274129 ], [ -95.9100711362548, 29.656180157138905 ], [ -95.910120136531006, 29.656279157600061 ], [ -95.910226136615165, 29.656434157755083 ], [ -95.910432137052581, 29.656704157240398 ], [ -95.910788137282751, 29.657102157412329 ], [ -95.911082136935377, 29.657355157564272 ], [ -95.911205137105284, 29.657452158176916 ], [ -95.911657137410984, 29.657767158216991 ], [ -95.9120971367214, 29.658036157394552 ], [ -95.912236137363053, 29.658114157812907 ], [ -95.912344137008219, 29.658168157637025 ], [ -95.912527137044634, 29.658251157414448 ], [ -95.912773137789699, 29.658384158198498 ], [ -95.912882137796402, 29.658436157981317 ], [ -95.913187137169871, 29.658546158131085 ], [ -95.913523137288692, 29.658686158014469 ], [ -95.913939138074355, 29.658846158279054 ], [ -95.914283137615485, 29.658969158379168 ], [ -95.914918137656244, 29.659129157913341 ], [ -95.915439137591164, 29.659238158109051 ], [ -95.915765137805295, 29.659284158357565 ], [ -95.916093138375004, 29.659319158239203 ], [ -95.916376137871438, 29.659373157797038 ], [ -95.916703138704449, 29.659412157701368 ], [ -95.917155138376089, 29.659458158320994 ], [ -95.917930138845321, 29.659567158079572 ], [ -95.918915139084106, 29.659665158312706 ], [ -95.920815139068168, 29.65971615744057 ], [ -95.922134139438583, 29.659631158181469 ], [ -95.922215139862544, 29.659619157904274 ], [ -95.922980140079929, 29.659465158071114 ], [ -95.923216140153457, 29.659398157520638 ], [ -95.92344613984173, 29.659319158015407 ], [ -95.923925140249111, 29.659106157811554 ], [ -95.924237140248863, 29.658929157546918 ], [ -95.924680140027064, 29.658604157353988 ], [ -95.925058140633624, 29.658271157032974 ], [ -95.925334140705999, 29.658003157212875 ], [ -95.925545140175359, 29.657780157129039 ], [ -95.925722140651516, 29.65758115685319 ], [ -95.925941140943124, 29.657318157569271 ], [ -95.926145140845293, 29.657047157016024 ], [ -95.926326140743583, 29.656723157272225 ], [ -95.926439141039012, 29.656530157135087 ], [ -95.926574140722067, 29.656267156968944 ], [ -95.926780141214408, 29.655784156533265 ], [ -95.926849140639504, 29.655615156966149 ], [ -95.926972140647223, 29.65527015696566 ], [ -95.927092140557463, 29.654963156502145 ], [ -95.927112141214351, 29.654893156620584 ], [ -95.927189141389178, 29.654539156954588 ], [ -95.927255141247358, 29.6543301568733 ], [ -95.927281140399941, 29.654224156711841 ], [ -95.927367140916033, 29.653688156572393 ], [ -95.92744814074473, 29.653261156684071 ], [ -95.927542141041243, 29.652800156593862 ], [ -95.927630140888951, 29.652411156496843 ], [ -95.927633140668163, 29.652393155919292 ], [ -95.92790714087073, 29.65098815606725 ], [ -95.927988141404327, 29.65027015564506 ], [ -95.928011141044095, 29.650019155478379 ], [ -95.92812914058301, 29.648973155472884 ], [ -95.928142140722457, 29.648757155736917 ], [ -95.928114140762673, 29.648325155311362 ], [ -95.928107140715753, 29.648036155226567 ], [ -95.928114140756023, 29.647892155633031 ], [ -95.928082140301981, 29.647497155301576 ], [ -95.928027140376727, 29.646958155468585 ], [ -95.927995140469761, 29.646345154568127 ], [ -95.927991140503124, 29.646201155184229 ], [ -95.92794214082592, 29.645916155143478 ], [ -95.927927140975115, 29.645772155099316 ], [ -95.927880141022513, 29.645487154861875 ], [ -95.927864141055139, 29.645416154290409 ], [ -95.927819140492971, 29.645277154544132 ], [ -95.927783140887769, 29.645136154583327 ], [ -95.927770140543601, 29.64506515424457 ], [ -95.927765140727544, 29.644993154264974 ], [ -95.927760140240835, 29.644596154881707 ], [ -95.927813140166506, 29.644130154800656 ], [ -95.927901140390318, 29.643636154239939 ], [ -95.927999140257043, 29.64339815449177 ], [ -95.928057140857277, 29.643303154280002 ], [ -95.92818914043103, 29.643120153933442 ], [ -95.92839314053505, 29.64280615403392 ], [ -95.928449140307634, 29.642709154575879 ], [ -95.928498141191042, 29.64261015414575 ], [ -95.928535140638871, 29.642506154242085 ], [ -95.928585141127016, 29.642295154136121 ], [ -95.928653140643519, 29.642049153749092 ], [ -95.928715140367899, 29.641877153728153 ], [ -95.928776140635435, 29.641667154167131 ], [ -95.928853140407497, 29.641462153679409 ], [ -95.928872140925463, 29.641355153913317 ], [ -95.928895141236282, 29.641176153958078 ], [ -95.928936140229695, 29.640636154023955 ], [ -95.92888314067217, 29.639772153835615 ], [ -95.928854140278418, 29.639484153902821 ], [ -95.928842140446818, 29.639232153184278 ], [ -95.928823141087761, 29.639125153319192 ], [ -95.928795140691975, 29.639057153714209 ], [ -95.928762140578215, 29.638991153198624 ], [ -95.928759140823018, 29.638956153040468 ], [ -95.928790140124875, 29.638851153372229 ], [ -95.928852140668951, 29.638680153271824 ], [ -95.928918140248072, 29.638471153668867 ], [ -95.929044140789529, 29.638166153176048 ], [ -95.929130140362815, 29.638002153358702 ], [ -95.929336140869069, 29.637689152749477 ], [ -95.929416141119901, 29.637607152748433 ], [ -95.929564140382027, 29.637481152649421 ], [ -95.929689141005895, 29.637387152590883 ], [ -95.929757140781092, 29.637345153462945 ], [ -95.929795140951427, 29.637331152579012 ], [ -95.929953140528369, 29.637291152847318 ], [ -95.930200140886157, 29.637274152902148 ], [ -95.930445140671551, 29.63723715256863 ], [ -95.930961140564975, 29.637110152972998 ], [ -95.931082141465609, 29.637086152730859 ], [ -95.931410141667456, 29.637048152913685 ], [ -95.931616141673501, 29.63703715293035 ], [ -95.931740141662189, 29.637039152632546 ], [ -95.932152141022527, 29.637066152820005 ], [ -95.932436140923912, 29.637109153172283 ], [ -95.932760142023085, 29.63716815249278 ], [ -95.93308414206362, 29.637216153167017 ], [ -95.934326141458072, 29.637491152504484 ], [ -95.934932142138223, 29.637601152722322 ], [ -95.935179142398312, 29.637650153089368 ], [ -95.935694142472087, 29.63778315292976 ], [ -95.935936141934192, 29.637832152915934 ], [ -95.936250141958013, 29.637920152587284 ], [ -95.936765142586779, 29.638053152761429 ], [ -95.937246142382776, 29.638158153170949 ], [ -95.93775714268773, 29.638302153215822 ], [ -95.938068143053499, 29.638400152592986 ], [ -95.9390481427005, 29.638682152833876 ], [ -95.939202142734842, 29.638736152663878 ], [ -95.940182143936767, 29.639120152845017 ], [ -95.940298143608658, 29.639158152881649 ], [ -95.940418143762784, 29.639185152591047 ], [ -95.940455143141705, 29.639199153307782 ], [ -95.940653143371762, 29.639312152695805 ], [ -95.940836144113007, 29.639416153313029 ], [ -95.941190143867559, 29.639602152845924 ], [ -95.941456143818698, 29.639772153413734 ], [ -95.941618143684181, 29.639884153550152 ], [ -95.941903143716189, 29.640068152943392 ], [ -95.942372144410598, 29.640422153426499 ], [ -95.942960144128463, 29.640819153561747 ], [ -95.943279144065329, 29.641049153204012 ], [ -95.943483144074818, 29.641179153316557 ], [ -95.943512144713495, 29.641198153043359 ], [ -95.943684144796819, 29.641299153659673 ], [ -95.943880144756051, 29.641431153772526 ], [ -95.944085144982509, 29.64155215368984 ], [ -95.944419144765561, 29.641764153653515 ], [ -95.944709145264525, 29.641968153499558 ], [ -95.945005145284682, 29.642164153871349 ], [ -95.945214144508142, 29.642281153714826 ], [ -95.945466144868561, 29.642405153764731 ], [ -95.94570814478999, 29.642537153830382 ], [ -95.946274144881528, 29.642836153955997 ], [ -95.946746145650479, 29.643059153956354 ], [ -95.946824145190519, 29.643084153524352 ], [ -95.946936145345973, 29.643129153266923 ], [ -95.947204144987808, 29.643224153456242 ], [ -95.947432145283827, 29.643310153884105 ], [ -95.94758714594758, 29.643360153755573 ], [ -95.947705145606875, 29.643392153697089 ], [ -95.947978145470614, 29.643476153921608 ], [ -95.948441146071886, 29.643627153299061 ], [ -95.948558145698911, 29.643666153447285 ], [ -95.948714146346745, 29.64371415393536 ], [ -95.949017146221664, 29.643828153941655 ], [ -95.949727145816311, 29.644121153659839 ], [ -95.950177146468931, 29.644302153387805 ], [ -95.950674145976947, 29.644480153496875 ], [ -95.951126146677808, 29.644658153861958 ], [ -95.951226146104347, 29.644702153608538 ], [ -95.95178114722134, 29.644943153740144 ], [ -95.952014147160355, 29.64501715389849 ], [ -95.952171147059929, 29.645062153931129 ], [ -95.953119147308186, 29.64531715346925 ], [ -95.953484146674512, 29.645376153977697 ], [ -95.953889147007089, 29.645447153609176 ], [ -95.954155147120431, 29.645499153609101 ], [ -95.954265147249984, 29.64555015414988 ], [ -95.954516147532772, 29.645675153630776 ], [ -95.954762147642271, 29.645808153827225 ], [ -95.954891147394662, 29.64589815357925 ], [ -95.954952147291721, 29.645947154280041 ], [ -95.955066147768662, 29.646051154386036 ], [ -95.955281147500941, 29.646316154254414 ], [ -95.955346148022656, 29.646408153679939 ], [ -95.955443147494194, 29.646567154403201 ], [ -95.955637147560708, 29.646965154419185 ], [ -95.955836147914724, 29.647401153834405 ], [ -95.955912147890828, 29.647682154525132 ], [ -95.955927147784948, 29.647753154683173 ], [ -95.955935147493605, 29.647825154537333 ], [ -95.955934147456119, 29.647897154606387 ], [ -95.955899148180677, 29.648256154109248 ], [ -95.955884147806728, 29.648616154433661 ], [ -95.955844147957748, 29.648903154544449 ], [ -95.955834147534176, 29.6490111544563 ], [ -95.95572114797757, 29.649689154732481 ], [ -95.95562814757902, 29.650040155069032 ], [ -95.955528148092611, 29.650464155239824 ], [ -95.955504148251947, 29.650533154626835 ], [ -95.955296148336686, 29.651043154858698 ], [ -95.95517114830912, 29.65157215530391 ], [ -95.955162147869004, 29.651644154750905 ], [ -95.955161148281874, 29.65171615476984 ], [ -95.955174148242662, 29.651824155163599 ], [ -95.955269147529194, 29.652175154906868 ], [ -95.955292148238215, 29.6522441555372 ], [ -95.955412147700713, 29.652551155181047 ], [ -95.955556148503135, 29.652850155073448 ], [ -95.95570914843556, 29.653065155714099 ], [ -95.955831148609306, 29.653210155124057 ], [ -95.955858148391471, 29.653237155545433 ], [ -95.956237148682249, 29.653516155347575 ], [ -95.956337148705657, 29.653580155348095 ], [ -95.957045148652753, 29.653952155112183 ], [ -95.957494148417098, 29.654137155574546 ], [ -95.957888148306523, 29.654245155269965 ], [ -95.95833314852446, 29.654322155227071 ], [ -95.958457148380347, 29.654334155343069 ], [ -95.958580148750883, 29.654339155829838 ], [ -95.958993148471549, 29.654323155792596 ], [ -95.959279149155179, 29.654283155253484 ], [ -95.959399149279108, 29.654259155213875 ], [ -95.959478149462939, 29.654238155389791 ], [ -95.959592149347898, 29.654195155348745 ], [ -95.959825149212008, 29.654120155238676 ], [ -95.960036149620421, 29.654006155460461 ], [ -95.960234149139936, 29.653876155559864 ], [ -95.960597149575364, 29.653581155250883 ], [ -95.960964149693595, 29.653275155008338 ], [ -95.961018148948696, 29.653221154954309 ], [ -95.961481149302742, 29.652667155174498 ], [ -95.961831149805448, 29.652177154961922 ], [ -95.962081149905998, 29.651846155118466 ], [ -95.962191149601779, 29.651693154460929 ], [ -95.962421149803191, 29.65139415444887 ], [ -95.962612149284865, 29.65111515439186 ], [ -95.962965149998809, 29.650544154830364 ], [ -95.96346414945431, 29.649754154444032 ], [ -95.963712149995388, 29.649339154428098 ], [ -95.963914149792927, 29.648983154461703 ], [ -95.96431015025091, 29.648350154001772 ], [ -95.964395150135317, 29.648227154386763 ], [ -95.964580149708027, 29.647945154372412 ], [ -95.964648150560294, 29.647855153997057 ], [ -95.964796150041764, 29.647637153843107 ], [ -95.964912150365279, 29.647446153789712 ], [ -95.965118149981564, 29.647176154021629 ], [ -95.965469150069367, 29.646783153774987 ], [ -95.96571215055198, 29.646448153606936 ], [ -95.966357150706912, 29.64574415394172 ], [ -95.966859150183453, 29.645217153535285 ], [ -95.967197150339715, 29.644852153236471 ], [ -95.967392150595657, 29.644667153277794 ], [ -95.967825150294061, 29.64428015297684 ], [ -95.96828715137444, 29.643919153050462 ], [ -95.968577150980067, 29.643663153114161 ], [ -95.968768150679125, 29.643524152663908 ], [ -95.968936150849899, 29.643365152922385 ], [ -95.969064150597148, 29.643224153181972 ], [ -95.969096150925139, 29.643201153041108 ], [ -95.969779151587701, 29.642794152927404 ], [ -95.970020151508592, 29.642656152709755 ], [ -95.970547151056422, 29.642371152864193 ], [ -95.97101615145543, 29.642142153007146 ], [ -95.971380151330436, 29.641972152665442 ], [ -95.971455151162786, 29.641941152551773 ], [ -95.971636151301325, 29.641854152234053 ], [ -95.971742151510099, 29.641798152889521 ], [ -95.972358151542409, 29.641503152844578 ], [ -95.972602151353513, 29.641368151975538 ], [ -95.972945152399603, 29.64116715237153 ], [ -95.973199151948094, 29.640982152614786 ], [ -95.973729152524726, 29.640638151942053 ], [ -95.973972151686482, 29.640501152107294 ], [ -95.974323151750781, 29.640311152521917 ], [ -95.975208152897551, 29.639921152296008 ], [ -95.975508152880394, 29.639772152171403 ], [ -95.97569915206158, 29.63970315199364 ], [ -95.975772152708927, 29.639669152059184 ], [ -95.975838152469478, 29.639632151737846 ], [ -95.975980152904413, 29.639552151984223 ], [ -95.976162152825239, 29.639467152099066 ], [ -95.976410153040462, 29.639337151980509 ], [ -95.976970152792859, 29.639030151796323 ], [ -95.977509153451649, 29.638763151408138 ], [ -95.97803315347322, 29.638476151511835 ], [ -95.979094153655325, 29.63791715178251 ], [ -95.98009615326184, 29.637343151438674 ], [ -95.980801153376973, 29.636968150827801 ], [ -95.981093154168349, 29.636832150757197 ], [ -95.98134315420009, 29.636705150822348 ], [ -95.981815153929148, 29.636483151178272 ], [ -95.982201153646869, 29.636273150902895 ], [ -95.982273153819619, 29.63623715103925 ], [ -95.983254154217491, 29.635852150483732 ], [ -95.983677154085285, 29.635706151177018 ], [ -95.983865154962757, 29.635632151241037 ], [ -95.984630154816031, 29.635360151086505 ], [ -95.985144154747189, 29.635225150790085 ], [ -95.985225154417805, 29.63520915066934 ], [ -95.985347154458154, 29.635192150652664 ], [ -95.98598215532337, 29.635031150385018 ], [ -95.986621155649843, 29.634884150166691 ], [ -95.987263155690101, 29.634749150823932 ], [ -95.987937155144238, 29.634575150505004 ], [ -95.988369155679607, 29.634453150511145 ], [ -95.988642155306508, 29.634369149998118 ], [ -95.989113155299634, 29.63423415005035 ], [ -95.989648155692862, 29.634042149926493 ], [ -95.989979155797599, 29.633896150212756 ], [ -95.990293155622993, 29.633772149995828 ], [ -95.990511155732918, 29.63366915013583 ], [ -95.990726156334333, 29.633562150030627 ], [ -95.990988155848669, 29.633455150253621 ], [ -95.991228156121124, 29.633314149671573 ], [ -95.99149115659722, 29.63314015001632 ], [ -95.991806155865675, 29.632906150306376 ], [ -95.992177156224528, 29.632660149833651 ], [ -95.992412156810857, 29.632513150125934 ], [ -95.99263715628031, 29.632354149583822 ], [ -95.992988156839886, 29.63209615015921 ], [ -95.993505156764769, 29.631680150109531 ], [ -95.993631156914915, 29.631588149436613 ], [ -95.994404156543922, 29.630990149378576 ], [ -95.994491156818427, 29.630913149908853 ], [ -95.994947156755828, 29.630547149178945 ], [ -95.99569815758818, 29.62992814894718 ], [ -95.996278157309476, 29.629582149052435 ], [ -95.996777157948458, 29.629261148665933 ], [ -95.997057157422574, 29.629108148724058 ], [ -95.997200157804571, 29.629035148751161 ], [ -95.997561157462258, 29.628860149309553 ], [ -95.997787157775974, 29.628771149089648 ], [ -95.998205157850009, 29.628616149311878 ], [ -95.998518157633512, 29.628524148677343 ], [ -95.998996157629321, 29.628408148694135 ], [ -95.999237158318238, 29.62835914903031 ], [ -95.999312158308825, 29.628350148864026 ], [ -95.999401158168681, 29.628339148381411 ], [ -95.999483157802558, 29.628333149022822 ], [ -95.999979158329111, 29.628321148546622 ], [ -96.000717158897572, 29.628399148749427 ], [ -96.000960157988203, 29.62844014888412 ], [ -96.001297158968299, 29.628516148639665 ], [ -96.001959158573428, 29.628667149233912 ], [ -96.002761158640482, 29.628843149163309 ], [ -96.003003159517633, 29.62888914863532 ], [ -96.003657159557577, 29.628974148790128 ], [ -96.004355159177805, 29.629040148854248 ], [ -96.004561159919888, 29.629039148523347 ], [ -96.005592159941628, 29.629091148330009 ], [ -96.006345159759732, 29.629105148304202 ], [ -96.006508160248501, 29.629082148990491 ], [ -96.006591159967755, 29.629076148690466 ], [ -96.006838160451593, 29.629079148632044 ], [ -96.007045159897658, 29.629073148590503 ], [ -96.007163160498536, 29.629040149034289 ], [ -96.007284160445209, 29.629017149096899 ], [ -96.007407160129361, 29.629003148947419 ], [ -96.007737160338181, 29.628999149052618 ], [ -96.007902160712462, 29.629009148764901 ], [ -96.008353160441402, 29.628965148871377 ], [ -96.008560160231752, 29.628957148238801 ], [ -96.008805160014532, 29.62892914842385 ], [ -96.00908716074612, 29.62887214825038 ], [ -96.009240160676086, 29.628818148529064 ], [ -96.009319161065491, 29.628797148724541 ], [ -96.009559160643022, 29.628744148680351 ], [ -96.009875161160693, 29.628649148950117 ], [ -96.010028160684314, 29.628603148603197 ], [ -96.010189160441058, 29.628571148576317 ], [ -96.010588160483465, 29.628477148458639 ], [ -96.011052161115984, 29.628326148362348 ], [ -96.011420160791857, 29.628162148768464 ], [ -96.011847161703074, 29.627942148660004 ], [ -96.012063160999745, 29.627835148037814 ], [ -96.012271161718644, 29.627719148718693 ], [ -96.013847162179673, 29.626791147626886 ], [ -96.013920161977779, 29.626757148015582 ], [ -96.014035162205573, 29.626719147584186 ], [ -96.014101161635296, 29.626676148430342 ], [ -96.014137161276906, 29.626658147746497 ], [ -96.01421416148203, 29.626632148144655 ], [ -96.014254161386688, 29.62662314762434 ], [ -96.014287161623287, 29.626603147608975 ], [ -96.014350162142762, 29.626556148085648 ], [ -96.014419162156301, 29.626517148161426 ], [ -96.014537161394983, 29.626484147588702 ], [ -96.014619162247101, 29.626472147861527 ], [ -96.014701161725213, 29.626468148320139 ], [ -96.014907161587246, 29.626475147774652 ], [ -96.015029162470924, 29.626495147534211 ], [ -96.015147162016163, 29.626527147688883 ], [ -96.015300162315043, 29.626579148290745 ], [ -96.015482162260682, 29.626663147555696 ], [ -96.015730161756622, 29.626792147722917 ], [ -96.015827162348984, 29.626856147583538 ], [ -96.016091162158418, 29.626917147798061 ], [ -96.016445162276824, 29.62710914824828 ], [ -96.01679116278865, 29.6269731482301 ], [ -96.016844161998563, 29.626984147639622 ], [ -96.016882162709976, 29.626867147883623 ], [ -96.016908162622883, 29.62681714815885 ], [ -96.016958162718865, 29.626746147489264 ], [ -96.017033163006545, 29.62669114768736 ], [ -96.01707116299653, 29.626647147541803 ], [ -96.017109162062695, 29.626576148286752 ], [ -96.017090162828211, 29.626537147740496 ], [ -96.017059162698473, 29.626521147611271 ], [ -96.016989162256763, 29.6264491482093 ], [ -96.016958162860874, 29.626378148073037 ], [ -96.016971162789446, 29.626306147562566 ], [ -96.017059162373414, 29.626240147418411 ], [ -96.017153162035243, 29.626218147913427 ], [ -96.017197162538764, 29.626235148091592 ], [ -96.017210162623385, 29.626279147755952 ], [ -96.017292162040576, 29.626350148184883 ], [ -96.017331162650123, 29.626356147536054 ], [ -96.017367162547075, 29.626361147658187 ], [ -96.017666162776692, 29.626289147896529 ], [ -96.017769162638515, 29.626188147384855 ], [ -96.017859162472405, 29.626103147356687 ], [ -96.017902162844848, 29.625954147570454 ], [ -96.017963162653857, 29.62586714742843 ], [ -96.018028162943679, 29.625941147796031 ], [ -96.01814116301091, 29.625988148121856 ], [ -96.018179162782047, 29.625993147459837 ], [ -96.018455163126163, 29.6259601474279 ], [ -96.018531162556997, 29.625867147972809 ], [ -96.018556162818712, 29.625768147538366 ], [ -96.018531163168447, 29.625686147500524 ], [ -96.018506162929029, 29.625658147400028 ], [ -96.018368162645359, 29.62564714753292 ], [ -96.018103162601676, 29.625669147521272 ], [ -96.018053162768751, 29.625592147378768 ], [ -96.018028163193179, 29.62548814741664 ], [ -96.018066162756128, 29.625411147709023 ], [ -96.018233163081661, 29.625256147783237 ], [ -96.018506162756253, 29.625004147661588 ], [ -96.018657163088889, 29.624902147203567 ], [ -96.018732162639395, 29.624837147034359 ], [ -96.018839162755398, 29.624628147354322 ], [ -96.018858162998995, 29.624600147292764 ], [ -96.018883163287285, 29.624595147159326 ], [ -96.019072163139029, 29.624655147817574 ], [ -96.019110162677535, 29.62465514763657 ], [ -96.019172162948664, 29.624628147739582 ], [ -96.019204162499193, 29.62458414783249 ], [ -96.019242162901563, 29.62455614761971 ], [ -96.019311163447767, 29.624551147254131 ], [ -96.019361162542879, 29.624567147632323 ], [ -96.019929162692407, 29.624972147466398 ], [ -96.020015162746873, 29.624980147529087 ], [ -96.020116163595574, 29.62499114770614 ], [ -96.020229162776474, 29.624986147284361 ], [ -96.02038616294054, 29.624936147514905 ], [ -96.020657162967197, 29.624799147455121 ], [ -96.020946163590878, 29.62466214773006 ], [ -96.021179163935287, 29.624546147111552 ], [ -96.021393163211414, 29.624449147098503 ], [ -96.021431163476649, 29.624432147532637 ], [ -96.021477163051969, 29.624430146869638 ], [ -96.021755163797309, 29.624416147365938 ], [ -96.021884164041893, 29.624459147595822 ], [ -96.021991163598599, 29.624464146990285 ], [ -96.022082163910312, 29.624496147660761 ], [ -96.022116163933362, 29.624508147368626 ], [ -96.022186164128016, 29.624508147170559 ], [ -96.022502163379102, 29.624466146836738 ], [ -96.0225511638791, 29.62445914742792 ], [ -96.022727164033768, 29.624448147426278 ], [ -96.022783163990212, 29.624409147388061 ], [ -96.022985163499143, 29.624195146737179 ], [ -96.022995164206222, 29.624180147600157 ], [ -96.023111163712599, 29.624019146948918 ], [ -96.02313016411091, 29.623893146779277 ], [ -96.023155163954158, 29.623816147147892 ], [ -96.023243163580119, 29.623624147117994 ], [ -96.023400163876317, 29.623420147061125 ], [ -96.023463163723406, 29.62337114688108 ], [ -96.02367116363402, 29.623245147024335 ], [ -96.02372816424301, 29.623173147039484 ], [ -96.02387216390882, 29.622898146552966 ], [ -96.02392916420861, 29.622761147095783 ], [ -96.023935164345431, 29.622629147219719 ], [ -96.02386616402093, 29.622442146464845 ], [ -96.023873163880737, 29.622371146412032 ], [ -96.023923164299234, 29.62229414664543 ], [ -96.024024164464436, 29.622222146654217 ], [ -96.024112164279302, 29.622135146731807 ], [ -96.024162164229381, 29.622069146320065 ], [ -96.024175164108129, 29.622030147127504 ], [ -96.024175164499596, 29.62200314626492 ], [ -96.024061163961463, 29.621937147043305 ], [ -96.024005164006951, 29.621865146717177 ], [ -96.023904164278292, 29.621618146298957 ], [ -96.023934164283119, 29.621518146846761 ], [ -96.023955164059586, 29.621447146736873 ], [ -96.023949164348693, 29.621343146219889 ], [ -96.023905164392559, 29.621184146322786 ], [ -96.023905163560741, 29.621173146849042 ], [ -96.023811163531818, 29.621068146842966 ], [ -96.023704163947414, 29.620937146517178 ], [ -96.023614164383076, 29.620737146482661 ], [ -96.023480163425887, 29.620440146477492 ], [ -96.023466164272278, 29.620261146022411 ], [ -96.023544163655089, 29.620096146196715 ], [ -96.023584164249229, 29.619974146470884 ], [ -96.023629163400017, 29.619881146041902 ], [ -96.023634164032316, 29.619866146658175 ], [ -96.023673163481419, 29.619749146462382 ], [ -96.023868163486739, 29.619507145835179 ], [ -96.0246361643445, 29.618200145962742 ], [ -96.024649164462048, 29.618172146169972 ], [ -96.024767163922633, 29.61792114583907 ], [ -96.024770164413098, 29.617891145670189 ], [ -96.024788164172563, 29.617628145438132 ], [ -96.024789164144138, 29.617612145478613 ], [ -96.024791164120401, 29.617585145726089 ], [ -96.024800163575961, 29.617458145742464 ], [ -96.024768164020983, 29.617100145320794 ], [ -96.024782163679589, 29.61536414569278 ], [ -96.024792163648883, 29.614999145413908 ], [ -96.024793163795948, 29.614956145438718 ], [ -96.02480716360536, 29.614495145060115 ], [ -96.02479616332117, 29.611874144719337 ], [ -96.02480416326712, 29.609153143824674 ], [ -96.024823163332982, 29.607130143576558 ], [ -96.024800163544199, 29.603404143064093 ], [ -96.02483216383169, 29.602904143185629 ], [ -96.024857163914575, 29.602882143213336 ], [ -96.027404163993509, 29.602861142419385 ], [ -96.029655164674168, 29.602807142229732 ], [ -96.031505165440976, 29.60278514271122 ], [ -96.033223165206408, 29.602748142507046 ], [ -96.033254165632769, 29.602747142110928 ], [ -96.033272165134619, 29.602747142288894 ], [ -96.041557167910227, 29.60266614186397 ], [ -96.044216168502444, 29.602618142450428 ], [ -96.044607168917693, 29.602610141925165 ], [ -96.054509171377674, 29.602465141921741 ], [ -96.059110172049088, 29.60236014158555 ], [ -96.062000172560857, 29.602294141005867 ], [ -96.062071172683019, 29.602291141252138 ], [ -96.062141173242864, 29.602289141202903 ], [ -96.062207172787666, 29.602287141717024 ], [ -96.062300173061402, 29.602277141831333 ], [ -96.062673172511865, 29.602272141097743 ], [ -96.063205173590404, 29.602255141628916 ], [ -96.065496173508961, 29.602205141178938 ], [ -96.065545173554497, 29.602204140892564 ], [ -96.065560173634964, 29.602204141345482 ], [ -96.065598173523995, 29.60220314166834 ], [ -96.065674173325803, 29.60220114137957 ], [ -96.065754174107454, 29.602199141243837 ], [ -96.06800917481813, 29.602149141396872 ], [ -96.068140174674696, 29.602145140891739 ], [ -96.069473174839572, 29.602107140762943 ], [ -96.069505175210878, 29.602106141247159 ], [ -96.069530174403496, 29.602105140913284 ], [ -96.069582174534546, 29.602104140778202 ], [ -96.069617175128585, 29.602103141060002 ], [ -96.069652174689807, 29.602102141310027 ], [ -96.069698174368838, 29.602101141484116 ], [ -96.069746174549365, 29.602100141229794 ], [ -96.076184176889953, 29.60202014049678 ], [ -96.085556178412645, 29.601757140061142 ], [ -96.088861180122095, 29.601665140006524 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 4, "Tract": "48157673300", "Area_SqMi": 48.857487469311465, "total_2009": 1196, "total_2010": 728, "total_2011": 1031, "total_2012": 723, "total_2013": 762, "total_2014": 1128, "total_2015": 998, "total_2016": 1045, "total_2017": 867, "total_2018": 688, "total_2019": 695, "total_2020": 811, "age1": 151, "age2": 410, "age3": 275, "earn1": 98, "earn2": 176, "earn3": 562, "naics_s01": 58, "naics_s02": 11, "naics_s03": 7, "naics_s04": 289, "naics_s05": 73, "naics_s06": 64, "naics_s07": 16, "naics_s08": 12, "naics_s09": 25, "naics_s10": 12, "naics_s11": 41, "naics_s12": 101, "naics_s13": 1, "naics_s14": 64, "naics_s15": 14, "naics_s16": 9, "naics_s17": 3, "naics_s18": 5, "naics_s19": 29, "naics_s20": 2, "race1": 714, "race2": 54, "race3": 11, "race4": 45, "race5": 2, "race6": 10, "ethnicity1": 577, "ethnicity2": 259, "edu1": 126, "edu2": 163, "edu3": 208, "edu4": 188, "Shape_Length": 257798.95956242052, "Shape_Area": 1362063130.2188849, "total_2021": 898, "total_2022": 836 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.033165167974147, 29.658189154053375 ], [ -96.03315416819791, 29.657896153971269 ], [ -96.03313516825385, 29.657718153245927 ], [ -96.033118167434651, 29.657649154047764 ], [ -96.033091168228509, 29.657508153722894 ], [ -96.033072167979284, 29.657439153523853 ], [ -96.032982168128072, 29.657201153726895 ], [ -96.032899167837755, 29.657038153580924 ], [ -96.03286316769919, 29.656974153926665 ], [ -96.032771167741416, 29.656774153765777 ], [ -96.032672167295289, 29.656540153744579 ], [ -96.032564167994281, 29.656348153641005 ], [ -96.032408167950692, 29.656096153042135 ], [ -96.032305167974201, 29.655985153398053 ], [ -96.032056167492655, 29.655749153285946 ], [ -96.031952168002519, 29.655638152845839 ], [ -96.031891167333285, 29.655592153153059 ], [ -96.031857167395955, 29.655571153366072 ], [ -96.031245167020444, 29.655283153145309 ], [ -96.0301901670408, 29.654808152823787 ], [ -96.030049166897186, 29.654735153055029 ], [ -96.029814167042261, 29.654593153538553 ], [ -96.029750167050182, 29.654548153087177 ], [ -96.029417166635852, 29.654283153351866 ], [ -96.029332166890029, 29.654205153439936 ], [ -96.029257166549144, 29.654121153208187 ], [ -96.029235166814573, 29.654091153471501 ], [ -96.029185167231773, 29.654036152718003 ], [ -96.029012167104469, 29.653885152825328 ], [ -96.028958166432787, 29.653832152579401 ], [ -96.028783166935469, 29.653633152891651 ], [ -96.028513167030596, 29.653364152705414 ], [ -96.028281166121587, 29.653114152956835 ], [ -96.02781416592795, 29.652663152623255 ], [ -96.027679166022736, 29.652672152739285 ], [ -96.027153166073987, 29.652269152469032 ], [ -96.026705165760873, 29.65179915248325 ], [ -96.026365166137836, 29.65144315296606 ], [ -96.025633165760894, 29.650721152469458 ], [ -96.02556116598852, 29.650650152886751 ], [ -96.025539165322883, 29.650629152680956 ], [ -96.024972165674768, 29.650014151930407 ], [ -96.024047165441843, 29.649375152586295 ], [ -96.023448164943417, 29.648799151930774 ], [ -96.022465165158422, 29.648288152518624 ], [ -96.021714164135275, 29.647648151601153 ], [ -96.020860164808255, 29.647345151788898 ], [ -96.020438164572653, 29.647096152390215 ], [ -96.019558164086575, 29.646589151775068 ], [ -96.019356164332521, 29.646460152287329 ], [ -96.019010163762047, 29.646239151673925 ], [ -96.018949164290092, 29.646200152261269 ], [ -96.018900163591013, 29.646170152235246 ], [ -96.018784163606554, 29.64610115174975 ], [ -96.018591163669413, 29.645986151513387 ], [ -96.017543163833949, 29.645465151993612 ], [ -96.017376163187052, 29.645313151455365 ], [ -96.016920163338412, 29.644897151622093 ], [ -96.016307162617878, 29.644213151089801 ], [ -96.015520162364894, 29.643104151007027 ], [ -96.015295162321678, 29.642786151045062 ], [ -96.015250162832956, 29.642724151239424 ], [ -96.015243162870988, 29.642710150879182 ], [ -96.015226163255676, 29.6426831509871 ], [ -96.015190162549743, 29.642605150988821 ], [ -96.014760162284389, 29.641674150754479 ], [ -96.014661162081595, 29.640998151054276 ], [ -96.014776162258926, 29.640234150661421 ], [ -96.014837162664577, 29.64002615109068 ], [ -96.01484216265824, 29.640007151020729 ], [ -96.014851162378349, 29.639980150562398 ], [ -96.014865162207983, 29.639930150817605 ], [ -96.014915162230366, 29.639760150696684 ], [ -96.014932162483348, 29.639720150468392 ], [ -96.014940162174668, 29.639703150564699 ], [ -96.01494816304745, 29.639682150566742 ], [ -96.014956162141246, 29.639667150708828 ], [ -96.014967162742906, 29.639641150670293 ], [ -96.01508816276808, 29.63934815072929 ], [ -96.01570916284993, 29.638986150323788 ], [ -96.015723162425545, 29.638978150842931 ], [ -96.015741163011924, 29.63896815025269 ], [ -96.015828162388644, 29.63891815069934 ], [ -96.015855162532134, 29.638909150407432 ], [ -96.015898163183579, 29.638893150124911 ], [ -96.015914163120982, 29.638888150185053 ], [ -96.015982162800498, 29.638866150170305 ], [ -96.016608162504241, 29.638655150658462 ], [ -96.017403163103921, 29.638285150501254 ], [ -96.01846216304088, 29.637642150345293 ], [ -96.018475163179502, 29.63763414998056 ], [ -96.018538163102875, 29.637596149659675 ], [ -96.018661163037351, 29.637522149859848 ], [ -96.018783162957916, 29.63744715020961 ], [ -96.01892716296102, 29.637193149557461 ], [ -96.018943163177937, 29.637165150389475 ], [ -96.018955163367721, 29.637144149884623 ], [ -96.018983163747635, 29.637095150205369 ], [ -96.019066163401178, 29.636949149616026 ], [ -96.019330163144701, 29.636306149662687 ], [ -96.01932916359641, 29.636222150162279 ], [ -96.019329163536568, 29.63621014980194 ], [ -96.019329163983002, 29.636196149393012 ], [ -96.019328163541942, 29.636181150130689 ], [ -96.019317162975099, 29.635546149640227 ], [ -96.019311163821456, 29.635537149344554 ], [ -96.019278163923531, 29.635487149401264 ], [ -96.01925216324058, 29.635438149214973 ], [ -96.018843163791914, 29.634684149044837 ], [ -96.01864616359407, 29.634321149802975 ], [ -96.018239163575643, 29.633407149085848 ], [ -96.018039163336539, 29.632679149102522 ], [ -96.017964162802699, 29.631873148815053 ], [ -96.017962162824119, 29.631861149005687 ], [ -96.017913162512201, 29.631352148693239 ], [ -96.017863162472253, 29.630805148281439 ], [ -96.017847163080944, 29.630635148337131 ], [ -96.01782916236894, 29.630559148278156 ], [ -96.017824162429889, 29.630539149054037 ], [ -96.017822163016888, 29.630529148411043 ], [ -96.017810162997549, 29.63047814836774 ], [ -96.017806162555971, 29.630460148913265 ], [ -96.017597163123412, 29.629562148292923 ], [ -96.017436162833675, 29.629020148755725 ], [ -96.017076162490838, 29.628369147978464 ], [ -96.016935163013585, 29.628095148076717 ], [ -96.016731162788645, 29.627698148525788 ], [ -96.016530162782828, 29.627291148358729 ], [ -96.016445162276824, 29.62710914824828 ], [ -96.016091162158418, 29.626917147798061 ], [ -96.015827162348984, 29.626856147583538 ], [ -96.015730161756622, 29.626792147722917 ], [ -96.015482162260682, 29.626663147555696 ], [ -96.015300162315043, 29.626579148290745 ], [ -96.015147162016163, 29.626527147688883 ], [ -96.015029162470924, 29.626495147534211 ], [ -96.014907161587246, 29.626475147774652 ], [ -96.014701161725213, 29.626468148320139 ], [ -96.014619162247101, 29.626472147861527 ], [ -96.014537161394983, 29.626484147588702 ], [ -96.014419162156301, 29.626517148161426 ], [ -96.014350162142762, 29.626556148085648 ], [ -96.014287161623287, 29.626603147608975 ], [ -96.014254161386688, 29.62662314762434 ], [ -96.01421416148203, 29.626632148144655 ], [ -96.014137161276906, 29.626658147746497 ], [ -96.014101161635296, 29.626676148430342 ], [ -96.014035162205573, 29.626719147584186 ], [ -96.013920161977779, 29.626757148015582 ], [ -96.013847162179673, 29.626791147626886 ], [ -96.012271161718644, 29.627719148718693 ], [ -96.012063160999745, 29.627835148037814 ], [ -96.011847161703074, 29.627942148660004 ], [ -96.011420160791857, 29.628162148768464 ], [ -96.011052161115984, 29.628326148362348 ], [ -96.010588160483465, 29.628477148458639 ], [ -96.010189160441058, 29.628571148576317 ], [ -96.010028160684314, 29.628603148603197 ], [ -96.009875161160693, 29.628649148950117 ], [ -96.009559160643022, 29.628744148680351 ], [ -96.009319161065491, 29.628797148724541 ], [ -96.009240160676086, 29.628818148529064 ], [ -96.00908716074612, 29.62887214825038 ], [ -96.008805160014532, 29.62892914842385 ], [ -96.008560160231752, 29.628957148238801 ], [ -96.008353160441402, 29.628965148871377 ], [ -96.007902160712462, 29.629009148764901 ], [ -96.007737160338181, 29.628999149052618 ], [ -96.007407160129361, 29.629003148947419 ], [ -96.007284160445209, 29.629017149096899 ], [ -96.007163160498536, 29.629040149034289 ], [ -96.007045159897658, 29.629073148590503 ], [ -96.006838160451593, 29.629079148632044 ], [ -96.006591159967755, 29.629076148690466 ], [ -96.006508160248501, 29.629082148990491 ], [ -96.006345159759732, 29.629105148304202 ], [ -96.005592159941628, 29.629091148330009 ], [ -96.004561159919888, 29.629039148523347 ], [ -96.004355159177805, 29.629040148854248 ], [ -96.003657159557577, 29.628974148790128 ], [ -96.003003159517633, 29.62888914863532 ], [ -96.002761158640482, 29.628843149163309 ], [ -96.001959158573428, 29.628667149233912 ], [ -96.001297158968299, 29.628516148639665 ], [ -96.000960157988203, 29.62844014888412 ], [ -96.000717158897572, 29.628399148749427 ], [ -95.999979158329111, 29.628321148546622 ], [ -95.999483157802558, 29.628333149022822 ], [ -95.999401158168681, 29.628339148381411 ], [ -95.999312158308825, 29.628350148864026 ], [ -95.999237158318238, 29.62835914903031 ], [ -95.998996157629321, 29.628408148694135 ], [ -95.998518157633512, 29.628524148677343 ], [ -95.998205157850009, 29.628616149311878 ], [ -95.997787157775974, 29.628771149089648 ], [ -95.997561157462258, 29.628860149309553 ], [ -95.997200157804571, 29.629035148751161 ], [ -95.997057157422574, 29.629108148724058 ], [ -95.996777157948458, 29.629261148665933 ], [ -95.996278157309476, 29.629582149052435 ], [ -95.99569815758818, 29.62992814894718 ], [ -95.994947156755828, 29.630547149178945 ], [ -95.994491156818427, 29.630913149908853 ], [ -95.994404156543922, 29.630990149378576 ], [ -95.993631156914915, 29.631588149436613 ], [ -95.993505156764769, 29.631680150109531 ], [ -95.992988156839886, 29.63209615015921 ], [ -95.99263715628031, 29.632354149583822 ], [ -95.992412156810857, 29.632513150125934 ], [ -95.992177156224528, 29.632660149833651 ], [ -95.991806155865675, 29.632906150306376 ], [ -95.99149115659722, 29.63314015001632 ], [ -95.991228156121124, 29.633314149671573 ], [ -95.990988155848669, 29.633455150253621 ], [ -95.990726156334333, 29.633562150030627 ], [ -95.990511155732918, 29.63366915013583 ], [ -95.990293155622993, 29.633772149995828 ], [ -95.989979155797599, 29.633896150212756 ], [ -95.989648155692862, 29.634042149926493 ], [ -95.989113155299634, 29.63423415005035 ], [ -95.988642155306508, 29.634369149998118 ], [ -95.988369155679607, 29.634453150511145 ], [ -95.987937155144238, 29.634575150505004 ], [ -95.987263155690101, 29.634749150823932 ], [ -95.986621155649843, 29.634884150166691 ], [ -95.98598215532337, 29.635031150385018 ], [ -95.985347154458154, 29.635192150652664 ], [ -95.985225154417805, 29.63520915066934 ], [ -95.985144154747189, 29.635225150790085 ], [ -95.984630154816031, 29.635360151086505 ], [ -95.983865154962757, 29.635632151241037 ], [ -95.983677154085285, 29.635706151177018 ], [ -95.983254154217491, 29.635852150483732 ], [ -95.982273153819619, 29.63623715103925 ], [ -95.982201153646869, 29.636273150902895 ], [ -95.981815153929148, 29.636483151178272 ], [ -95.98134315420009, 29.636705150822348 ], [ -95.981093154168349, 29.636832150757197 ], [ -95.980801153376973, 29.636968150827801 ], [ -95.98009615326184, 29.637343151438674 ], [ -95.979094153655325, 29.63791715178251 ], [ -95.97803315347322, 29.638476151511835 ], [ -95.977509153451649, 29.638763151408138 ], [ -95.976970152792859, 29.639030151796323 ], [ -95.976410153040462, 29.639337151980509 ], [ -95.976162152825239, 29.639467152099066 ], [ -95.975980152904413, 29.639552151984223 ], [ -95.975838152469478, 29.639632151737846 ], [ -95.975772152708927, 29.639669152059184 ], [ -95.97569915206158, 29.63970315199364 ], [ -95.975508152880394, 29.639772152171403 ], [ -95.975208152897551, 29.639921152296008 ], [ -95.974323151750781, 29.640311152521917 ], [ -95.973972151686482, 29.640501152107294 ], [ -95.973729152524726, 29.640638151942053 ], [ -95.973199151948094, 29.640982152614786 ], [ -95.972945152399603, 29.64116715237153 ], [ -95.972602151353513, 29.641368151975538 ], [ -95.972358151542409, 29.641503152844578 ], [ -95.971742151510099, 29.641798152889521 ], [ -95.971636151301325, 29.641854152234053 ], [ -95.971455151162786, 29.641941152551773 ], [ -95.971380151330436, 29.641972152665442 ], [ -95.97101615145543, 29.642142153007146 ], [ -95.970547151056422, 29.642371152864193 ], [ -95.970020151508592, 29.642656152709755 ], [ -95.969779151587701, 29.642794152927404 ], [ -95.969096150925139, 29.643201153041108 ], [ -95.969064150597148, 29.643224153181972 ], [ -95.968936150849899, 29.643365152922385 ], [ -95.968768150679125, 29.643524152663908 ], [ -95.968577150980067, 29.643663153114161 ], [ -95.96828715137444, 29.643919153050462 ], [ -95.967825150294061, 29.64428015297684 ], [ -95.967392150595657, 29.644667153277794 ], [ -95.967197150339715, 29.644852153236471 ], [ -95.966859150183453, 29.645217153535285 ], [ -95.966357150706912, 29.64574415394172 ], [ -95.96571215055198, 29.646448153606936 ], [ -95.965469150069367, 29.646783153774987 ], [ -95.965118149981564, 29.647176154021629 ], [ -95.964912150365279, 29.647446153789712 ], [ -95.964796150041764, 29.647637153843107 ], [ -95.964648150560294, 29.647855153997057 ], [ -95.964580149708027, 29.647945154372412 ], [ -95.964395150135317, 29.648227154386763 ], [ -95.96431015025091, 29.648350154001772 ], [ -95.963914149792927, 29.648983154461703 ], [ -95.963712149995388, 29.649339154428098 ], [ -95.96346414945431, 29.649754154444032 ], [ -95.962965149998809, 29.650544154830364 ], [ -95.962612149284865, 29.65111515439186 ], [ -95.962421149803191, 29.65139415444887 ], [ -95.962191149601779, 29.651693154460929 ], [ -95.962081149905998, 29.651846155118466 ], [ -95.961831149805448, 29.652177154961922 ], [ -95.961481149302742, 29.652667155174498 ], [ -95.961018148948696, 29.653221154954309 ], [ -95.960964149693595, 29.653275155008338 ], [ -95.960597149575364, 29.653581155250883 ], [ -95.960234149139936, 29.653876155559864 ], [ -95.960036149620421, 29.654006155460461 ], [ -95.959825149212008, 29.654120155238676 ], [ -95.959592149347898, 29.654195155348745 ], [ -95.959478149462939, 29.654238155389791 ], [ -95.959399149279108, 29.654259155213875 ], [ -95.959279149155179, 29.654283155253484 ], [ -95.958993148471549, 29.654323155792596 ], [ -95.958580148750883, 29.654339155829838 ], [ -95.958457148380347, 29.654334155343069 ], [ -95.95833314852446, 29.654322155227071 ], [ -95.957888148306523, 29.654245155269965 ], [ -95.957494148417098, 29.654137155574546 ], [ -95.957045148652753, 29.653952155112183 ], [ -95.956337148705657, 29.653580155348095 ], [ -95.956237148682249, 29.653516155347575 ], [ -95.955858148391471, 29.653237155545433 ], [ -95.955831148609306, 29.653210155124057 ], [ -95.95570914843556, 29.653065155714099 ], [ -95.955556148503135, 29.652850155073448 ], [ -95.955412147700713, 29.652551155181047 ], [ -95.955292148238215, 29.6522441555372 ], [ -95.955269147529194, 29.652175154906868 ], [ -95.955174148242662, 29.651824155163599 ], [ -95.955161148281874, 29.65171615476984 ], [ -95.955162147869004, 29.651644154750905 ], [ -95.95517114830912, 29.65157215530391 ], [ -95.955296148336686, 29.651043154858698 ], [ -95.955504148251947, 29.650533154626835 ], [ -95.955528148092611, 29.650464155239824 ], [ -95.95562814757902, 29.650040155069032 ], [ -95.95572114797757, 29.649689154732481 ], [ -95.955834147534176, 29.6490111544563 ], [ -95.955844147957748, 29.648903154544449 ], [ -95.955884147806728, 29.648616154433661 ], [ -95.955899148180677, 29.648256154109248 ], [ -95.955934147456119, 29.647897154606387 ], [ -95.955935147493605, 29.647825154537333 ], [ -95.955927147784948, 29.647753154683173 ], [ -95.955912147890828, 29.647682154525132 ], [ -95.955836147914724, 29.647401153834405 ], [ -95.955637147560708, 29.646965154419185 ], [ -95.955443147494194, 29.646567154403201 ], [ -95.955346148022656, 29.646408153679939 ], [ -95.955281147500941, 29.646316154254414 ], [ -95.955066147768662, 29.646051154386036 ], [ -95.954952147291721, 29.645947154280041 ], [ -95.954891147394662, 29.64589815357925 ], [ -95.954762147642271, 29.645808153827225 ], [ -95.954516147532772, 29.645675153630776 ], [ -95.954265147249984, 29.64555015414988 ], [ -95.954155147120431, 29.645499153609101 ], [ -95.953889147007089, 29.645447153609176 ], [ -95.953484146674512, 29.645376153977697 ], [ -95.953119147308186, 29.64531715346925 ], [ -95.952171147059929, 29.645062153931129 ], [ -95.952014147160355, 29.64501715389849 ], [ -95.95178114722134, 29.644943153740144 ], [ -95.951226146104347, 29.644702153608538 ], [ -95.951126146677808, 29.644658153861958 ], [ -95.950674145976947, 29.644480153496875 ], [ -95.950177146468931, 29.644302153387805 ], [ -95.949727145816311, 29.644121153659839 ], [ -95.949017146221664, 29.643828153941655 ], [ -95.948714146346745, 29.64371415393536 ], [ -95.948558145698911, 29.643666153447285 ], [ -95.948441146071886, 29.643627153299061 ], [ -95.947978145470614, 29.643476153921608 ], [ -95.947705145606875, 29.643392153697089 ], [ -95.94758714594758, 29.643360153755573 ], [ -95.947432145283827, 29.643310153884105 ], [ -95.947204144987808, 29.643224153456242 ], [ -95.946936145345973, 29.643129153266923 ], [ -95.946824145190519, 29.643084153524352 ], [ -95.946746145650479, 29.643059153956354 ], [ -95.946274144881528, 29.642836153955997 ], [ -95.94570814478999, 29.642537153830382 ], [ -95.945466144868561, 29.642405153764731 ], [ -95.945214144508142, 29.642281153714826 ], [ -95.945005145284682, 29.642164153871349 ], [ -95.944709145264525, 29.641968153499558 ], [ -95.944419144765561, 29.641764153653515 ], [ -95.944085144982509, 29.64155215368984 ], [ -95.943880144756051, 29.641431153772526 ], [ -95.943684144796819, 29.641299153659673 ], [ -95.943512144713495, 29.641198153043359 ], [ -95.943483144074818, 29.641179153316557 ], [ -95.943279144065329, 29.641049153204012 ], [ -95.942960144128463, 29.640819153561747 ], [ -95.942372144410598, 29.640422153426499 ], [ -95.941903143716189, 29.640068152943392 ], [ -95.941618143684181, 29.639884153550152 ], [ -95.941456143818698, 29.639772153413734 ], [ -95.941190143867559, 29.639602152845924 ], [ -95.940836144113007, 29.639416153313029 ], [ -95.940653143371762, 29.639312152695805 ], [ -95.940455143141705, 29.639199153307782 ], [ -95.940418143762784, 29.639185152591047 ], [ -95.940298143608658, 29.639158152881649 ], [ -95.940182143936767, 29.639120152845017 ], [ -95.939202142734842, 29.638736152663878 ], [ -95.9390481427005, 29.638682152833876 ], [ -95.938068143053499, 29.638400152592986 ], [ -95.93775714268773, 29.638302153215822 ], [ -95.937246142382776, 29.638158153170949 ], [ -95.936765142586779, 29.638053152761429 ], [ -95.936250141958013, 29.637920152587284 ], [ -95.935936141934192, 29.637832152915934 ], [ -95.935694142472087, 29.63778315292976 ], [ -95.935179142398312, 29.637650153089368 ], [ -95.934932142138223, 29.637601152722322 ], [ -95.934326141458072, 29.637491152504484 ], [ -95.93308414206362, 29.637216153167017 ], [ -95.932760142023085, 29.63716815249278 ], [ -95.932436140923912, 29.637109153172283 ], [ -95.932152141022527, 29.637066152820005 ], [ -95.931740141662189, 29.637039152632546 ], [ -95.931616141673501, 29.63703715293035 ], [ -95.931410141667456, 29.637048152913685 ], [ -95.931082141465609, 29.637086152730859 ], [ -95.930961140564975, 29.637110152972998 ], [ -95.930445140671551, 29.63723715256863 ], [ -95.930200140886157, 29.637274152902148 ], [ -95.929953140528369, 29.637291152847318 ], [ -95.929795140951427, 29.637331152579012 ], [ -95.929757140781092, 29.637345153462945 ], [ -95.929689141005895, 29.637387152590883 ], [ -95.929564140382027, 29.637481152649421 ], [ -95.929416141119901, 29.637607152748433 ], [ -95.929336140869069, 29.637689152749477 ], [ -95.929130140362815, 29.638002153358702 ], [ -95.929044140789529, 29.638166153176048 ], [ -95.928918140248072, 29.638471153668867 ], [ -95.928852140668951, 29.638680153271824 ], [ -95.928790140124875, 29.638851153372229 ], [ -95.928759140823018, 29.638956153040468 ], [ -95.928762140578215, 29.638991153198624 ], [ -95.928795140691975, 29.639057153714209 ], [ -95.928823141087761, 29.639125153319192 ], [ -95.928842140446818, 29.639232153184278 ], [ -95.928854140278418, 29.639484153902821 ], [ -95.92888314067217, 29.639772153835615 ], [ -95.928936140229695, 29.640636154023955 ], [ -95.928895141236282, 29.641176153958078 ], [ -95.928872140925463, 29.641355153913317 ], [ -95.928853140407497, 29.641462153679409 ], [ -95.928776140635435, 29.641667154167131 ], [ -95.928715140367899, 29.641877153728153 ], [ -95.928653140643519, 29.642049153749092 ], [ -95.928585141127016, 29.642295154136121 ], [ -95.928535140638871, 29.642506154242085 ], [ -95.928498141191042, 29.64261015414575 ], [ -95.928449140307634, 29.642709154575879 ], [ -95.92839314053505, 29.64280615403392 ], [ -95.92818914043103, 29.643120153933442 ], [ -95.928057140857277, 29.643303154280002 ], [ -95.927999140257043, 29.64339815449177 ], [ -95.927901140390318, 29.643636154239939 ], [ -95.927813140166506, 29.644130154800656 ], [ -95.927760140240835, 29.644596154881707 ], [ -95.927765140727544, 29.644993154264974 ], [ -95.927770140543601, 29.64506515424457 ], [ -95.927783140887769, 29.645136154583327 ], [ -95.927819140492971, 29.645277154544132 ], [ -95.927864141055139, 29.645416154290409 ], [ -95.927880141022513, 29.645487154861875 ], [ -95.927927140975115, 29.645772155099316 ], [ -95.92794214082592, 29.645916155143478 ], [ -95.927991140503124, 29.646201155184229 ], [ -95.927995140469761, 29.646345154568127 ], [ -95.928027140376727, 29.646958155468585 ], [ -95.928082140301981, 29.647497155301576 ], [ -95.928114140756023, 29.647892155633031 ], [ -95.928107140715753, 29.648036155226567 ], [ -95.928114140762673, 29.648325155311362 ], [ -95.928142140722457, 29.648757155736917 ], [ -95.92812914058301, 29.648973155472884 ], [ -95.928011141044095, 29.650019155478379 ], [ -95.927988141404327, 29.65027015564506 ], [ -95.92790714087073, 29.65098815606725 ], [ -95.927633140668163, 29.652393155919292 ], [ -95.927630140888951, 29.652411156496843 ], [ -95.927542141041243, 29.652800156593862 ], [ -95.92744814074473, 29.653261156684071 ], [ -95.927367140916033, 29.653688156572393 ], [ -95.927281140399941, 29.654224156711841 ], [ -95.927255141247358, 29.6543301568733 ], [ -95.927189141389178, 29.654539156954588 ], [ -95.927112141214351, 29.654893156620584 ], [ -95.927092140557463, 29.654963156502145 ], [ -95.926972140647223, 29.65527015696566 ], [ -95.926849140639504, 29.655615156966149 ], [ -95.926780141214408, 29.655784156533265 ], [ -95.926574140722067, 29.656267156968944 ], [ -95.926439141039012, 29.656530157135087 ], [ -95.926326140743583, 29.656723157272225 ], [ -95.926145140845293, 29.657047157016024 ], [ -95.925941140943124, 29.657318157569271 ], [ -95.925722140651516, 29.65758115685319 ], [ -95.925545140175359, 29.657780157129039 ], [ -95.925334140705999, 29.658003157212875 ], [ -95.925058140633624, 29.658271157032974 ], [ -95.924680140027064, 29.658604157353988 ], [ -95.924237140248863, 29.658929157546918 ], [ -95.923925140249111, 29.659106157811554 ], [ -95.92344613984173, 29.659319158015407 ], [ -95.923216140153457, 29.659398157520638 ], [ -95.922980140079929, 29.659465158071114 ], [ -95.922215139862544, 29.659619157904274 ], [ -95.922134139438583, 29.659631158181469 ], [ -95.920815139068168, 29.65971615744057 ], [ -95.918915139084106, 29.659665158312706 ], [ -95.917930138845321, 29.659567158079572 ], [ -95.917155138376089, 29.659458158320994 ], [ -95.916703138704449, 29.659412157701368 ], [ -95.916376137871438, 29.659373157797038 ], [ -95.916093138375004, 29.659319158239203 ], [ -95.915765137805295, 29.659284158357565 ], [ -95.915439137591164, 29.659238158109051 ], [ -95.914918137656244, 29.659129157913341 ], [ -95.914283137615485, 29.658969158379168 ], [ -95.913939138074355, 29.658846158279054 ], [ -95.913523137288692, 29.658686158014469 ], [ -95.913187137169871, 29.658546158131085 ], [ -95.912882137796402, 29.658436157981317 ], [ -95.912773137789699, 29.658384158198498 ], [ -95.912527137044634, 29.658251157414448 ], [ -95.912344137008219, 29.658168157637025 ], [ -95.912236137363053, 29.658114157812907 ], [ -95.9120971367214, 29.658036157394552 ], [ -95.911657137410984, 29.657767158216991 ], [ -95.911205137105284, 29.657452158176916 ], [ -95.911082136935377, 29.657355157564272 ], [ -95.910788137282751, 29.657102157412329 ], [ -95.910432137052581, 29.656704157240398 ], [ -95.910226136615165, 29.656434157755083 ], [ -95.910120136531006, 29.656279157600061 ], [ -95.9100711362548, 29.656180157138905 ], [ -95.910016136821866, 29.656083157274129 ], [ -95.909838137036644, 29.655797157291733 ], [ -95.909735136241707, 29.655641157369114 ], [ -95.909429136286718, 29.655090157255369 ], [ -95.909390136069547, 29.654987157005252 ], [ -95.9090531361947, 29.653946156652445 ], [ -95.909003136458068, 29.653734156738853 ], [ -95.908861135974888, 29.653244156590446 ], [ -95.908695135782054, 29.652771157009649 ], [ -95.908631136042843, 29.652589156389485 ], [ -95.908514135955826, 29.652415156908301 ], [ -95.908385135676909, 29.652189156418896 ], [ -95.908256135762784, 29.652004156964697 ], [ -95.908090135903706, 29.651797156368993 ], [ -95.908039135522174, 29.651740156927026 ], [ -95.907640135272615, 29.651375156618908 ], [ -95.90713613543933, 29.650898156623136 ], [ -95.906536135276667, 29.65040115624846 ], [ -95.905886135710034, 29.649900155967785 ], [ -95.905689135692569, 29.6497681560617 ], [ -95.905468135491589, 29.649606156344969 ], [ -95.905382135624023, 29.649528156096544 ], [ -95.905328135463236, 29.649473156682649 ], [ -95.905136135309817, 29.64923915607854 ], [ -95.904778134680924, 29.648939156496365 ], [ -95.904673134666851, 29.648828156038562 ], [ -95.904534135223102, 29.648694155992889 ], [ -95.904475134512538, 29.648643156302995 ], [ -95.904382134301329, 29.648572156299849 ], [ -95.90428413522605, 29.648456156494124 ], [ -95.904072134517477, 29.648155155656895 ], [ -95.904046134516619, 29.64811815618075 ], [ -95.903826135102634, 29.647771156104955 ], [ -95.903741134696546, 29.647647156437735 ], [ -95.903519134505174, 29.647301155573171 ], [ -95.90332013404236, 29.646944155974914 ], [ -95.903141134657432, 29.646660156018495 ], [ -95.902988134583509, 29.646248155716417 ], [ -95.902903134025863, 29.646007155486 ], [ -95.902836134764812, 29.645799155576366 ], [ -95.90275813451693, 29.645408155715433 ], [ -95.902735134446345, 29.645164155581526 ], [ -95.902725134122463, 29.645048155331025 ], [ -95.902719133861666, 29.644868155745922 ], [ -95.902599134528472, 29.643683155483906 ], [ -95.902591134235891, 29.643503155574749 ], [ -95.902616134385795, 29.642926154990597 ], [ -95.902626133970244, 29.642566154749208 ], [ -95.90264313400013, 29.642422154921999 ], [ -95.902718134561837, 29.64192115465266 ], [ -95.902802133897708, 29.641204154880644 ], [ -95.902833133771267, 29.641039154677738 ], [ -95.902843134441369, 29.64093215459901 ], [ -95.902853133880896, 29.64060715429579 ], [ -95.902826134046904, 29.640320154634395 ], [ -95.902730134308143, 29.639858154326124 ], [ -95.902571133715412, 29.639261154267029 ], [ -95.902476133790486, 29.638985154527163 ], [ -95.902334133991985, 29.638765154025251 ], [ -95.90216613345612, 29.638475154208528 ], [ -95.901990134190001, 29.63807215406575 ], [ -95.901979134128396, 29.638063154379399 ], [ -95.901900133419872, 29.637908153871269 ], [ -95.901790133417535, 29.637756154346928 ], [ -95.901608133974023, 29.637473154048184 ], [ -95.901541133469934, 29.637382153954654 ], [ -95.901128133613739, 29.636886153498548 ], [ -95.900779133800356, 29.636529153991273 ], [ -95.900542133570923, 29.636279153819551 ], [ -95.900183132735819, 29.635981153592809 ], [ -95.899774133370045, 29.635736153388791 ], [ -95.899634133161882, 29.635660153546539 ], [ -95.899153132543319, 29.635379153873231 ], [ -95.89870213303503, 29.635124153173983 ], [ -95.898263133121404, 29.634924153229505 ], [ -95.898012132548615, 29.634800153223939 ], [ -95.897429132818928, 29.634396153325817 ], [ -95.897232132530959, 29.63426515312063 ], [ -95.896917132115178, 29.634031153762603 ], [ -95.896066132177921, 29.63338415364133 ], [ -95.895830132113005, 29.63318215333841 ], [ -95.895424131542896, 29.632822153287414 ], [ -95.89492013174511, 29.632360153126744 ], [ -95.894655131806005, 29.632117153200596 ], [ -95.893965131222572, 29.63144715341663 ], [ -95.893614131542392, 29.631091153283634 ], [ -95.893002130644334, 29.630457152757703 ], [ -95.892773131067088, 29.630201152492923 ], [ -95.892363131235228, 29.62970415235511 ], [ -95.891899131019926, 29.629064152641284 ], [ -95.891644131011319, 29.628736152193184 ], [ -95.891217130351748, 29.628161152885511 ], [ -95.89093913012411, 29.627718152121094 ], [ -95.89078613016612, 29.627504152513989 ], [ -95.890514129913555, 29.627058151832145 ], [ -95.890301130765238, 29.626667152027487 ], [ -95.890239130361294, 29.626534151859335 ], [ -95.889669130047579, 29.625218152289722 ], [ -95.889504130075508, 29.624916151837734 ], [ -95.889486129961114, 29.62480915198644 ], [ -95.889469130352296, 29.624739151488864 ], [ -95.889410130063482, 29.624566152201396 ], [ -95.88930612998054, 29.624180151551311 ], [ -95.889273130265877, 29.624002151502495 ], [ -95.889192129783595, 29.623465151558182 ], [ -95.889141129879675, 29.62281815157219 ], [ -95.889161130064366, 29.622385150921058 ], [ -95.889195130250286, 29.621917151268619 ], [ -95.889208129787633, 29.621810151640943 ], [ -95.889251129331043, 29.621560150890069 ], [ -95.889270129930097, 29.621490151353211 ], [ -95.889369129690422, 29.621215151023751 ], [ -95.889559129993359, 29.620815151386431 ], [ -95.889732130024356, 29.620569151385428 ], [ -95.889964129847243, 29.62022815082635 ], [ -95.890202130333918, 29.619933150496745 ], [ -95.890424129527062, 29.619629151032989 ], [ -95.890774129761652, 29.61918215052167 ], [ -95.890970129833505, 29.618951150874249 ], [ -95.89136613060154, 29.618534150825027 ], [ -95.891586130191854, 29.618319150127331 ], [ -95.891731130356277, 29.618190150773845 ], [ -95.891853129794939, 29.618070150116804 ], [ -95.892091130338187, 29.617821150306945 ], [ -95.892264130143815, 29.61766515004437 ], [ -95.892621130210372, 29.617315150114898 ], [ -95.89293113032447, 29.617025150236483 ], [ -95.892985130070784, 29.616970150539697 ], [ -95.893034130549566, 29.61691215008867 ], [ -95.893375130849392, 29.616418150384309 ], [ -95.89341413091519, 29.616355150179434 ], [ -95.893541130443978, 29.616128149992615 ], [ -95.89360013037296, 29.616033149899188 ], [ -95.89368613066425, 29.615869149455534 ], [ -95.893715130441322, 29.615801149570135 ], [ -95.893746131074607, 29.615696149576049 ], [ -95.893757131052254, 29.615553149539483 ], [ -95.89374813069405, 29.615300149454168 ], [ -95.893722130617277, 29.615085149739251 ], [ -95.893712130795492, 29.61490514997098 ], [ -95.893690130200781, 29.614762149225491 ], [ -95.893426130401338, 29.613779149138036 ], [ -95.893321130198728, 29.613430149701689 ], [ -95.893211130204861, 29.613120149351772 ], [ -95.893155129961869, 29.612947149581331 ], [ -95.893126129945799, 29.612805149563517 ], [ -95.892986130646875, 29.612396149204393 ], [ -95.892935129998392, 29.612240149133275 ], [ -95.89284113043982, 29.612011148667282 ], [ -95.892826130370793, 29.612002149072961 ], [ -95.892779130746575, 29.611830148740616 ], [ -95.892525130161857, 29.611258148952292 ], [ -95.892282129713237, 29.610800148699987 ], [ -95.892025129713502, 29.610268149211212 ], [ -95.89181912971641, 29.609875148665353 ], [ -95.891709129634563, 29.609722148654395 ], [ -95.89163413017657, 29.609594148218211 ], [ -95.891600129338869, 29.609528148353352 ], [ -95.891558130185317, 29.609426148975913 ], [ -95.891365129518604, 29.609149148406072 ], [ -95.891262129414486, 29.609036148923252 ], [ -95.891194129448564, 29.608946148114011 ], [ -95.891082129928364, 29.608753148095857 ], [ -95.890978129238064, 29.608517148704554 ], [ -95.890825130038564, 29.60803014867254 ], [ -95.890760130008914, 29.607859147935272 ], [ -95.890703129715078, 29.607686147893109 ], [ -95.890656129388006, 29.607473148327145 ], [ -95.890564129588327, 29.606938147838218 ], [ -95.890549129936375, 29.606831147857598 ], [ -95.890456129599883, 29.605788148279917 ], [ -95.890445129838696, 29.605319147849922 ], [ -95.890458129036332, 29.604526147564606 ], [ -95.890469129458523, 29.604273147295586 ], [ -95.89050812933236, 29.603733147804199 ], [ -95.890544129468609, 29.603374147411699 ], [ -95.890605128917144, 29.602836147441312 ], [ -95.890747128956519, 29.601906147050244 ], [ -95.890791128784599, 29.601547147349837 ], [ -95.890827128910004, 29.601297146802672 ], [ -95.890927129277117, 29.600690146518151 ], [ -95.890948129529065, 29.600583147184256 ], [ -95.891026129611873, 29.600266146861831 ], [ -95.891162128790739, 29.599812146467389 ], [ -95.891257128950883, 29.599461147000852 ], [ -95.891309128844668, 29.599249146897808 ], [ -95.891368129643553, 29.598965146644368 ], [ -95.891456128964862, 29.598430146150754 ], [ -95.89150512938825, 29.597999146335493 ], [ -95.891544128989565, 29.59742314621074 ], [ -95.891529128990058, 29.597135146489755 ], [ -95.891478128831181, 29.596777145862088 ], [ -95.891453128846265, 29.596634145595324 ], [ -95.891443129105554, 29.596600145619224 ], [ -95.891153129362309, 29.596002145844579 ], [ -95.890967128965443, 29.595680145779109 ], [ -95.890846128570914, 29.5955801457715 ], [ -95.890789128883966, 29.59552814615887 ], [ -95.890574129405351, 29.595263146025747 ], [ -95.890465128543568, 29.595154145924596 ], [ -95.890335128494854, 29.595014145612531 ], [ -95.890160129052589, 29.594861145262268 ], [ -95.890037128492196, 29.594764146011734 ], [ -95.889682128864493, 29.594463145645413 ], [ -95.889402128442626, 29.594249145765708 ], [ -95.889240128110629, 29.594137145916758 ], [ -95.888901128932147, 29.593932145616623 ], [ -95.888579128075307, 29.593770145582646 ], [ -95.888164128522718, 29.593534145389611 ], [ -95.887302128461499, 29.593107145074804 ], [ -95.886881127672439, 29.592958145259249 ], [ -95.886498128209084, 29.59282114569962 ], [ -95.886226127776212, 29.59273414524711 ], [ -95.886186127808116, 29.592725145081534 ], [ -95.886064127983104, 29.592707145524606 ], [ -95.885499127065557, 29.592600145452604 ], [ -95.885058127126754, 29.592505145510298 ], [ -95.884575127160403, 29.592410145333314 ], [ -95.884219127370898, 29.592318145540073 ], [ -95.883979127503537, 29.592264145223783 ], [ -95.883816126676493, 29.592238145675172 ], [ -95.883611126605018, 29.592217145427107 ], [ -95.883080127363073, 29.592150145541012 ], [ -95.88283712688208, 29.592108145394036 ], [ -95.882632126659033, 29.592088145507237 ], [ -95.882468127046963, 29.592104145664361 ], [ -95.882220126954309, 29.592109145841011 ], [ -95.882014126219957, 29.592098145793248 ], [ -95.881932126693911, 29.592088145602659 ], [ -95.881852126245803, 29.592073145568875 ], [ -95.881728127062203, 29.59207414550815 ], [ -95.881563126129365, 29.592069144999947 ], [ -95.88136012596739, 29.592099145495386 ], [ -95.881195126857648, 29.592107145501014 ], [ -95.880996126380921, 29.592153145058774 ], [ -95.880837125852878, 29.592194145120779 ], [ -95.880643126551135, 29.592256145470433 ], [ -95.880375125896776, 29.592349145184169 ], [ -95.880266125961441, 29.592401145166942 ], [ -95.880055125921714, 29.592515145461256 ], [ -95.879955125616732, 29.592578145559937 ], [ -95.879672125839477, 29.592788145411788 ], [ -95.879553125887469, 29.592888146072664 ], [ -95.879468125631703, 29.592968145796927 ], [ -95.879268125523524, 29.593197146108142 ], [ -95.879165125857455, 29.59335314548014 ], [ -95.87912712580561, 29.593417145412687 ], [ -95.879081125507696, 29.593517145396898 ], [ -95.879052125538095, 29.593623146149323 ], [ -95.878932126339691, 29.593852145694765 ], [ -95.878901126140562, 29.593919145710302 ], [ -95.878878125785221, 29.593989145730674 ], [ -95.878822125712603, 29.594199145810784 ], [ -95.878812126271811, 29.594271146002132 ], [ -95.878770125852441, 29.594738146149311 ], [ -95.878757125937582, 29.594932146370603 ], [ -95.878745125499975, 29.595135146170318 ], [ -95.878736126232496, 29.595423146190758 ], [ -95.878728126033337, 29.595495146068341 ], [ -95.8787001261462, 29.595637146427087 ], [ -95.878543126158462, 29.59663814659304 ], [ -95.878465126439892, 29.59706514671301 ], [ -95.878356125848967, 29.597598146654519 ], [ -95.878305125926147, 29.597809146718717 ], [ -95.878249126232546, 29.598130147055439 ], [ -95.87824012605212, 29.598310146483836 ], [ -95.878190126221028, 29.598485146527505 ], [ -95.878169125854797, 29.59862914681111 ], [ -95.878148125758415, 29.598953147104922 ], [ -95.878149125690655, 29.599061147333824 ], [ -95.878168125658746, 29.599163146543582 ], [ -95.878183126297387, 29.599343147256228 ], [ -95.878180125538137, 29.599595147256061 ], [ -95.878174126188327, 29.599667146800456 ], [ -95.87807512640812, 29.600311147323534 ], [ -95.878048125595384, 29.600562147684101 ], [ -95.878039125917212, 29.600814147538468 ], [ -95.878041125690416, 29.601356147174389 ], [ -95.878063126263612, 29.601968147160353 ], [ -95.878091125954612, 29.602401147337432 ], [ -95.878121126428667, 29.603085147459556 ], [ -95.878144126579897, 29.603446147712813 ], [ -95.878157126640588, 29.603553147955186 ], [ -95.878197125938684, 29.603767148326785 ], [ -95.878203125875785, 29.603839147979215 ], [ -95.878314126442476, 29.604735147841787 ], [ -95.878340125933775, 29.604934148064764 ], [ -95.878552126414817, 29.606146148071485 ], [ -95.878614126122372, 29.606430148101587 ], [ -95.878679126883839, 29.60663914887742 ], [ -95.878783126655108, 29.607825148436394 ], [ -95.878793126055598, 29.608042149142577 ], [ -95.878772126294464, 29.608402148569326 ], [ -95.878778126994547, 29.608618148867041 ], [ -95.878811126293442, 29.608869148605034 ], [ -95.878818127084955, 29.60897714864079 ], [ -95.878814126119352, 29.609157148736664 ], [ -95.878802126094683, 29.609301149340354 ], [ -95.878806126360473, 29.609409148872121 ], [ -95.878780127031035, 29.609552148674933 ], [ -95.87875912607737, 29.609731149261258 ], [ -95.878756126259645, 29.610308148935069 ], [ -95.878747126622045, 29.610452149087752 ], [ -95.878693126843388, 29.6108831496032 ], [ -95.87867012632374, 29.610931149724792 ], [ -95.878631126678115, 29.611016149173306 ], [ -95.878604126096334, 29.611084149381607 ], [ -95.878545126173563, 29.611257149384734 ], [ -95.878526126268852, 29.611327149516459 ], [ -95.878501126959037, 29.611470149082809 ], [ -95.878493126342704, 29.61154214960392 ], [ -95.878492127024771, 29.611650149797203 ], [ -95.878503126117593, 29.611758149187679 ], [ -95.878440126655903, 29.611963149137388 ], [ -95.878215126886843, 29.612544149600065 ], [ -95.878184126740649, 29.612611149303177 ], [ -95.877934126005329, 29.613067149709789 ], [ -95.877477126182043, 29.613794150090158 ], [ -95.877412126202856, 29.613886150348705 ], [ -95.87722312659271, 29.614122150199591 ], [ -95.876666126231626, 29.614703150139775 ], [ -95.876579126149451, 29.614780149959685 ], [ -95.876151126118813, 29.615120150697486 ], [ -95.875963126559341, 29.615261150466676 ], [ -95.875677125801289, 29.615468150681846 ], [ -95.875472126073731, 29.615590150519147 ], [ -95.875245125534917, 29.615747150403848 ], [ -95.875203125738309, 29.615794150274585 ], [ -95.875146125581949, 29.615847150442157 ], [ -95.874991125830462, 29.615966150837767 ], [ -95.874762125771113, 29.616120150866067 ], [ -95.874727125802551, 29.616138150569181 ], [ -95.874495125677655, 29.616215150740199 ], [ -95.874098125780122, 29.616314150795613 ], [ -95.873657125330098, 29.616409150367506 ], [ -95.873454125247363, 29.616443150985027 ], [ -95.873208125449494, 29.616471150710264 ], [ -95.87275612515451, 29.616511151065698 ], [ -95.87255012505365, 29.616521150800892 ], [ -95.872343125740315, 29.616522150627727 ], [ -95.87226112502907, 29.616515150593933 ], [ -95.872098124693409, 29.616493150670461 ], [ -95.871855125265185, 29.616449150909897 ], [ -95.871696125423682, 29.61641215093319 ], [ -95.871540125528071, 29.616364150657795 ], [ -95.871388124842738, 29.616306150959208 ], [ -95.871279125150423, 29.61625515060155 ], [ -95.870684125209337, 29.615930150331685 ], [ -95.87058212509848, 29.615869150832356 ], [ -95.87039012500874, 29.615732150524376 ], [ -95.870331125132381, 29.615682150875351 ], [ -95.870218125041603, 29.615576150687545 ], [ -95.870100124339444, 29.615475150205057 ], [ -95.8699391244472, 29.615311150394124 ], [ -95.869855124910671, 29.615186150901767 ], [ -95.869686124320481, 29.614897150907296 ], [ -95.869539124297177, 29.614560150298949 ], [ -95.869419124681528, 29.61421515062127 ], [ -95.869349124542424, 29.613933150668778 ], [ -95.869225124213969, 29.613293150531717 ], [ -95.869219123854037, 29.613221150491306 ], [ -95.869187124164313, 29.613043150378431 ], [ -95.869158123911589, 29.612756149719505 ], [ -95.86914612412923, 29.612323149504004 ], [ -95.869138124144257, 29.612179150020136 ], [ -95.869136124279635, 29.611566150107741 ], [ -95.86911012461438, 29.611097150030705 ], [ -95.869110124641438, 29.611067149752078 ], [ -95.869112124488012, 29.61088114931939 ], [ -95.869117123835679, 29.610773149574559 ], [ -95.86918412426931, 29.610307149554796 ], [ -95.869247124469254, 29.60998714908531 ], [ -95.869311124293318, 29.60980514909274 ], [ -95.869449123836972, 29.609465149071955 ], [ -95.869842123762169, 29.608593149211771 ], [ -95.870068124454619, 29.608050148640153 ], [ -95.870085124390329, 29.608017148664221 ], [ -95.870189124140651, 29.607821148754681 ], [ -95.870384124164275, 29.607384149266188 ], [ -95.870457124267645, 29.607177148967853 ], [ -95.870556123997702, 29.60682714919022 ], [ -95.870650124362811, 29.606550148542805 ], [ -95.870763124493408, 29.606166148716397 ], [ -95.870922124881972, 29.605495148354997 ], [ -95.871010124306792, 29.604996148490748 ], [ -95.871058124248094, 29.604168148436539 ], [ -95.87105812396878, 29.604059147948369 ], [ -95.871050124000959, 29.603915148348925 ], [ -95.871037124752092, 29.60337414813899 ], [ -95.871021124523125, 29.603267148167507 ], [ -95.871006124093213, 29.603197148020346 ], [ -95.870984124208491, 29.603090147629061 ], [ -95.870953123934385, 29.602985148087381 ], [ -95.870912124709662, 29.602808147859363 ], [ -95.87087012470765, 29.602522148047012 ], [ -95.870791123943775, 29.602058147464643 ], [ -95.870745123880226, 29.601845147649691 ], [ -95.870670124143714, 29.601418147443461 ], [ -95.870625124070727, 29.601279147335148 ], [ -95.870552124133965, 29.601110147222677 ], [ -95.870321124439016, 29.600687147177304 ], [ -95.870259123536542, 29.60059314777558 ], [ -95.870092124168082, 29.600387147190467 ], [ -95.869937124155811, 29.600218147245542 ], [ -95.869720124207205, 29.600001147137505 ], [ -95.869564123550248, 29.599832147675386 ], [ -95.869479123832221, 29.599754147027408 ], [ -95.869294123769237, 29.599674147518265 ], [ -95.869142123295333, 29.599616147144779 ], [ -95.869032123761315, 29.599567147237572 ], [ -95.868919123682701, 29.599523147778559 ], [ -95.868810123090526, 29.599471147377024 ], [ -95.868685123399572, 29.599449147369167 ], [ -95.868606123841488, 29.599428147178596 ], [ -95.868416123461174, 29.599358147446402 ], [ -95.868232122969872, 29.599276147112665 ], [ -95.868002123108269, 29.599194147380476 ], [ -95.867331122770295, 29.598916146924225 ], [ -95.867103123551971, 29.598833147246783 ], [ -95.866886123018887, 29.598728147705316 ], [ -95.866816122758394, 29.5986901474432 ], [ -95.866750122676706, 29.598646147420165 ], [ -95.866657122788396, 29.598574147507748 ], [ -95.866573122579879, 29.598495147490876 ], [ -95.866323123254759, 29.598369147027746 ], [ -95.866285122614812, 29.59835514678301 ], [ -95.866089123102213, 29.598298147591429 ], [ -95.866035122777717, 29.598278147529705 ], [ -95.866013122981627, 29.598270146982014 ], [ -95.865829122860973, 29.598187146778365 ], [ -95.865692122846468, 29.598107147371465 ], [ -95.865471122587778, 29.598010147103526 ], [ -95.865133122728921, 29.597875147011276 ], [ -95.864262122602568, 29.597543147250434 ], [ -95.863399121916018, 29.597298147004199 ], [ -95.8625891219409, 29.597027147326209 ], [ -95.862441122352664, 29.596964146830889 ], [ -95.862332121399405, 29.596912147290627 ], [ -95.861943121763034, 29.596793147173464 ], [ -95.860856120957521, 29.596447146731791 ], [ -95.859880121353143, 29.596153147085648 ], [ -95.857896120371976, 29.595537146691203 ], [ -95.857786120723631, 29.595500147196002 ], [ -95.85774212064527, 29.59548514699064 ], [ -95.856909120581065, 29.595168146980402 ], [ -95.856064120369993, 29.594806146839758 ], [ -95.855959119664504, 29.594750147199392 ], [ -95.855891120409254, 29.594732147158297 ], [ -95.855814120067066, 29.594706147037307 ], [ -95.855629119646437, 29.594626147024726 ], [ -95.855399120293427, 29.594545146811488 ], [ -95.855095119997728, 29.594431147020948 ], [ -95.854864119692465, 29.594355147087565 ], [ -95.854474119740019, 29.594237146445469 ], [ -95.854014119459649, 29.594074146846093 ], [ -95.85355011916171, 29.59392414641923 ], [ -95.852564119342347, 29.593657147000883 ], [ -95.852205118986646, 29.593573146762807 ], [ -95.851763119338301, 29.593480146704007 ], [ -95.851685118631281, 29.593457147019553 ], [ -95.851571118899358, 29.593417146307477 ], [ -95.851489118976446, 29.59342114654898 ], [ -95.85128211841274, 29.593420146826542 ], [ -95.851035118809548, 29.593413147132143 ], [ -95.850911118363072, 29.593417146743317 ], [ -95.850870118361897, 29.593422146900799 ], [ -95.850472118803339, 29.593518146863545 ], [ -95.850355119088718, 29.593554147189817 ], [ -95.850243118343386, 29.593600146747189 ], [ -95.850070118617523, 29.593699146538018 ], [ -95.849925118626885, 29.593767146801856 ], [ -95.849645118671802, 29.593920147198208 ], [ -95.849572118934304, 29.593953146560491 ], [ -95.849496118226782, 29.593981147030519 ], [ -95.84946411866801, 29.59400214695356 ], [ -95.849351118064931, 29.594108146769443 ], [ -95.849272118065187, 29.594191146658002 ], [ -95.849107117966668, 29.594352147119316 ], [ -95.848961118242457, 29.594480147354719 ], [ -95.848879117990606, 29.594538146611004 ], [ -95.848834118676791, 29.594572147185296 ], [ -95.848774117847483, 29.594622146746662 ], [ -95.848748118209457, 29.594650146668187 ], [ -95.848706117832549, 29.59471214691338 ], [ -95.848689118142772, 29.594744147020933 ], [ -95.848620118372068, 29.594914146981079 ], [ -95.848565118340531, 29.595011146964953 ], [ -95.84844811773722, 29.595160147233052 ], [ -95.848319118092931, 29.595301147521109 ], [ -95.848298118176857, 29.595332147134666 ], [ -95.848228118251015, 29.595462147294448 ], [ -95.847937117695764, 29.595898147205961 ], [ -95.84772411772046, 29.596165147083354 ], [ -95.847369118377927, 29.596563147617825 ], [ -95.847203117496477, 29.59676914738677 ], [ -95.847004117837443, 29.596952147316824 ], [ -95.846954118128636, 29.597010147736611 ], [ -95.846909118302733, 29.597070147891717 ], [ -95.846848117880711, 29.597165147321512 ], [ -95.846813117910472, 29.597230147938195 ], [ -95.846770118374934, 29.597331147837313 ], [ -95.846737117630582, 29.59743614721809 ], [ -95.846719118022989, 29.597467147805453 ], [ -95.846610117600562, 29.597621147720098 ], [ -95.846467118247787, 29.597840148203325 ], [ -95.846297118303724, 29.598129147524403 ], [ -95.846132117857323, 29.598459147629743 ], [ -95.846040118269343, 29.598621147728327 ], [ -95.845957117969547, 29.59874614764524 ], [ -95.845760118135601, 29.599021147725466 ], [ -95.845268118092136, 29.599687147774709 ], [ -95.845090117661513, 29.599919148382678 ], [ -95.84462111715743, 29.600469148742398 ], [ -95.843917117195872, 29.601176148379004 ], [ -95.843400116901691, 29.601643148537665 ], [ -95.843339117575255, 29.601692148281018 ], [ -95.843024117026218, 29.601925148797523 ], [ -95.842572116951018, 29.60224014871579 ], [ -95.842242116947119, 29.602457148749018 ], [ -95.841769116681675, 29.602747148483253 ], [ -95.841700116813286, 29.60278614921965 ], [ -95.841088116785912, 29.603030149023386 ], [ -95.840854116278251, 29.603102148996314 ], [ -95.840695116136843, 29.603141148825024 ], [ -95.840491116317466, 29.603169149127279 ], [ -95.840327116578052, 29.603185148712637 ], [ -95.839833116078623, 29.603210148653311 ], [ -95.83925511625759, 29.60319514951043 ], [ -95.839012116299855, 29.603150149288897 ], [ -95.838775116549044, 29.603088149156623 ], [ -95.83850011605287, 29.603009149216899 ], [ -95.838234116426293, 29.602912148785144 ], [ -95.837786115431811, 29.602726149240912 ], [ -95.837604116094994, 29.60264014889335 ], [ -95.8373061157384, 29.60244614884116 ], [ -95.837086115943137, 29.602283148706686 ], [ -95.836818115277737, 29.602058149326435 ], [ -95.836649115232632, 29.601900148694039 ], [ -95.836599115525559, 29.60184314891357 ], [ -95.836368115316802, 29.601544149232726 ], [ -95.836074115429824, 29.601151149236905 ], [ -95.835951115119954, 29.600964149105636 ], [ -95.83591511494258, 29.600899149126505 ], [ -95.835436115179377, 29.599901148576748 ], [ -95.835301114792713, 29.599599148944506 ], [ -95.835269115081672, 29.599494148114456 ], [ -95.835241114987511, 29.599352148662902 ], [ -95.835092114700132, 29.599094148751931 ], [ -95.835016115362023, 29.598927148119103 ], [ -95.83476711484829, 29.598431148538875 ], [ -95.834644114469071, 29.598164148643306 ], [ -95.83456211499329, 29.59799814841325 ], [ -95.834366114777552, 29.597640148454424 ], [ -95.834254114719386, 29.597447148095899 ], [ -95.833885114728403, 29.596683148319013 ], [ -95.833506114576423, 29.595961147753837 ], [ -95.833417114196081, 29.595840147977004 ], [ -95.833368114822065, 29.59578214782772 ], [ -95.833313114064751, 29.595728147638493 ], [ -95.833091114096291, 29.595524148178445 ], [ -95.832788113763385, 29.59527914812195 ], [ -95.832724113998495, 29.595233147390012 ], [ -95.832491114501551, 29.595084147275887 ], [ -95.832427113932425, 29.595038147277265 ], [ -95.832186114330185, 29.594840147239633 ], [ -95.832063114496705, 29.594744147663494 ], [ -95.831794113635297, 29.594520147797247 ], [ -95.831771113753931, 29.59449114771769 ], [ -95.831691114183997, 29.594364147226567 ], [ -95.831668114364035, 29.594334147948789 ], [ -95.831591114172625, 29.594250147935259 ], [ -95.831533113939003, 29.594198147385548 ], [ -95.831471113778406, 29.594151147256937 ], [ -95.831307113492102, 29.594041147716233 ], [ -95.831277113774078, 29.59401614725234 ], [ -95.831196114211906, 29.593935147283617 ], [ -95.831138113297996, 29.59388314743644 ], [ -95.830769113618601, 29.593595147042087 ], [ -95.830541113108836, 29.593439147439994 ], [ -95.829772113303406, 29.592785147430742 ], [ -95.829486112863236, 29.592524147353206 ], [ -95.829241113607949, 29.592281146895264 ], [ -95.82907111353569, 29.592123147176132 ], [ -95.828784113154668, 29.591816146825373 ], [ -95.828513112617927, 29.591544147125997 ], [ -95.828455113097149, 29.59147814669366 ], [ -95.828235112972834, 29.591230147066248 ], [ -95.828050112794514, 29.591036147421683 ], [ -95.827903113145169, 29.590862146728188 ], [ -95.827564112991965, 29.590409146547128 ], [ -95.827478112296518, 29.590332146808763 ], [ -95.827370112925834, 29.590222146937528 ], [ -95.827229112792651, 29.590044146557847 ], [ -95.827107112552852, 29.589856147215681 ], [ -95.826872112496972, 29.589435146630667 ], [ -95.82681111270918, 29.58930114703119 ], [ -95.826713112857917, 29.589102146985539 ], [ -95.826547112866692, 29.588694146196797 ], [ -95.826417112608183, 29.588429146576399 ], [ -95.8263881123152, 29.588361146937771 ], [ -95.826186111852493, 29.587875145976337 ], [ -95.826054111818067, 29.587495146470932 ], [ -95.825963112537906, 29.587218146333271 ], [ -95.825712112000957, 29.586343146413242 ], [ -95.825382111441897, 29.58504014606314 ], [ -95.825174111831302, 29.584342145757077 ], [ -95.824801111702499, 29.583122145089369 ], [ -95.824412111170673, 29.58190614513391 ], [ -95.824160111504156, 29.581181145262171 ], [ -95.823855110967671, 29.580511144746509 ], [ -95.823522110995285, 29.579619145057688 ], [ -95.823240111148763, 29.578752144544602 ], [ -95.823091110787928, 29.578339144835599 ], [ -95.823026110683216, 29.578130144210593 ], [ -95.822862110888963, 29.577534144592914 ], [ -95.822835110993296, 29.577466144466364 ], [ -95.82275311090136, 29.577300144380963 ], [ -95.822740111312427, 29.577266144004387 ], [ -95.822739110380923, 29.577175144719085 ], [ -95.822731110625412, 29.577103144227568 ], [ -95.822691110348885, 29.57692614427933 ], [ -95.822667110486449, 29.576857143972006 ], [ -95.822611111233527, 29.576721143939146 ], [ -95.82257411096208, 29.576618144094041 ], [ -95.822406110867831, 29.57602214424379 ], [ -95.822317110263313, 29.575670144277741 ], [ -95.822022110988101, 29.57473114423475 ], [ -95.821942110102214, 29.57448814351736 ], [ -95.821578110260475, 29.5735681434101 ], [ -95.821226110475052, 29.572759143727883 ], [ -95.821026110332923, 29.572363143315449 ], [ -95.820928109757247, 29.572125143138248 ], [ -95.820838109923386, 29.571885143309448 ], [ -95.820809110652419, 29.571818143025229 ], [ -95.820586110227836, 29.571391142893386 ], [ -95.82019010954663, 29.570758143090885 ], [ -95.820118110005168, 29.570628142717101 ], [ -95.819893110353078, 29.57028014320133 ], [ -95.819735110037072, 29.57003414343421 ], [ -95.81967110959495, 29.569947142795538 ], [ -95.81957410928807, 29.569830142688858 ], [ -95.819442109303779, 29.569647142771398 ], [ -95.819205109768703, 29.569352142969407 ], [ -95.819030109937017, 29.56915114279866 ], [ -95.818499109033439, 29.568599142541817 ], [ -95.818414109341859, 29.568520142481443 ], [ -95.818012109682059, 29.5682101429122 ], [ -95.81794710955792, 29.568154142956928 ], [ -95.817863109564186, 29.568085142844954 ], [ -95.817784109147325, 29.568002143015331 ], [ -95.817603109069935, 29.56782914229737 ], [ -95.817512109044273, 29.567755142816296 ], [ -95.817354109557968, 29.567639142739637 ], [ -95.817191109119875, 29.567529142245487 ], [ -95.816496108587032, 29.567139142834453 ], [ -95.816246109307613, 29.567014142217165 ], [ -95.815525108638823, 29.566687142702992 ], [ -95.815403108534952, 29.566632142771322 ], [ -95.815024108302367, 29.566488142433336 ], [ -95.814906108177951, 29.566457142019104 ], [ -95.814585108128426, 29.566386141975141 ], [ -95.814446108772088, 29.566360142414648 ], [ -95.814374108478262, 29.566347142139055 ], [ -95.814303108660198, 29.566334142186939 ], [ -95.814099108278995, 29.566306142662416 ], [ -95.813898107839194, 29.566265142684205 ], [ -95.813776108157185, 29.566246142765021 ], [ -95.813593107636834, 29.566223142257993 ], [ -95.813572108521328, 29.56622114272405 ], [ -95.813242108096603, 29.56620014262867 ], [ -95.812995107996542, 29.566196142618509 ], [ -95.812983107541228, 29.566196142785401 ], [ -95.812789108277798, 29.566203142716322 ], [ -95.812545107585194, 29.566243142518058 ], [ -95.812477108123716, 29.566251142834666 ], [ -95.812463107354546, 29.566253142402974 ], [ -95.812381107757972, 29.566255142413407 ], [ -95.812092107881185, 29.566249142337075 ], [ -95.811970107178666, 29.566265142184275 ], [ -95.81176510794576, 29.566285142298852 ], [ -95.811686107417842, 29.566307142124334 ], [ -95.811571107671753, 29.566347142851033 ], [ -95.811497107426021, 29.566378142561597 ], [ -95.811128107547489, 29.566609142574634 ], [ -95.810851107502842, 29.566766142356226 ], [ -95.810638107454011, 29.566876142500902 ], [ -95.810467107303779, 29.566977142996876 ], [ -95.810429106991734, 29.567003142700546 ], [ -95.810433107818866, 29.567066142884478 ], [ -95.810462107613674, 29.567536142560648 ], [ -95.810479107127662, 29.567803143129598 ], [ -95.810491107326584, 29.567922142496261 ], [ -95.810571107214187, 29.568688142802703 ], [ -95.810739107872323, 29.569777142830798 ], [ -95.810763107834021, 29.569976143186604 ], [ -95.810824107328656, 29.57048414353887 ], [ -95.810924107406535, 29.57211714367919 ], [ -95.810970107688505, 29.575015144516325 ], [ -95.810989108207792, 29.5762131442746 ], [ -95.811026108156256, 29.57806014509444 ], [ -95.811034107611647, 29.578401144610318 ], [ -95.811063108184584, 29.579742145588895 ], [ -95.81107210776473, 29.580349145813031 ], [ -95.811082107914061, 29.580989145690289 ], [ -95.81110110816779, 29.582208145640788 ], [ -95.811192108670767, 29.58545514667545 ], [ -95.811196108486229, 29.58571814622001 ], [ -95.811246108227877, 29.588283146893584 ], [ -95.811250108690047, 29.588493147024867 ], [ -95.811289108497633, 29.590490147277151 ], [ -95.811310108256237, 29.591564147870741 ], [ -95.811312108419372, 29.592315148263953 ], [ -95.811332108405793, 29.592898147736868 ], [ -95.811301108885587, 29.594726147989302 ], [ -95.811311108560247, 29.595688148241699 ], [ -95.811334109388241, 29.598504149096136 ], [ -95.811334108579743, 29.599384149541446 ], [ -95.811269108850425, 29.599955149300175 ], [ -95.811289108872515, 29.600948149283443 ], [ -95.811335108685142, 29.603079150360749 ], [ -95.811421109690215, 29.608165150910562 ], [ -95.811430109513552, 29.608665150762977 ], [ -95.811490109986281, 29.611963151954278 ], [ -95.811529110046791, 29.61415115212694 ], [ -95.811544109666329, 29.61524215214984 ], [ -95.811631109528236, 29.62140715338116 ], [ -95.811662110314231, 29.624732154057046 ], [ -95.811770110946426, 29.631680156150473 ], [ -95.816460111360371, 29.633337155890494 ], [ -95.818511112235683, 29.634057156350192 ], [ -95.822139112976373, 29.635214156408637 ], [ -95.822950113915056, 29.635424155814576 ], [ -95.823011113726409, 29.635440156350111 ], [ -95.823078113110981, 29.635457155832437 ], [ -95.823527113460614, 29.635574155817764 ], [ -95.823822114253574, 29.635678156051153 ], [ -95.824166114015668, 29.635867156652083 ], [ -95.824505113557521, 29.636088156489585 ], [ -95.824769114229596, 29.636317156646495 ], [ -95.824792114247799, 29.636347156641321 ], [ -95.824978113920466, 29.636589156182595 ], [ -95.826120114928173, 29.638137156235938 ], [ -95.826841114866895, 29.639151156501697 ], [ -95.826869115170396, 29.639190157050081 ], [ -95.827088114635472, 29.639487157039316 ], [ -95.827693114599654, 29.640493157018344 ], [ -95.828058115309403, 29.641279157632017 ], [ -95.828512114840137, 29.642229157346993 ], [ -95.829349115867956, 29.643973157638115 ], [ -95.830009115495173, 29.645348157685351 ], [ -95.830620115932177, 29.646689158069375 ], [ -95.83102911627256, 29.647473158348948 ], [ -95.83144811580209, 29.648918158773 ], [ -95.831488116787114, 29.649058158567808 ], [ -95.831515115782167, 29.649154158933634 ], [ -95.831995116110889, 29.650842158688459 ], [ -95.833401116690283, 29.653840159423794 ], [ -95.833677116799251, 29.654700159733981 ], [ -95.834602117821092, 29.65721716057012 ], [ -95.834973117422351, 29.658268160360059 ], [ -95.835597118156471, 29.659939160563752 ], [ -95.836274118087928, 29.661889160925725 ], [ -95.836610118609528, 29.662808161556111 ], [ -95.836798117952114, 29.663461161703356 ], [ -95.837100118138878, 29.664379161290665 ], [ -95.837237118213736, 29.664752161591423 ], [ -95.83741511802431, 29.665281161760443 ], [ -95.837644118148106, 29.666002161761863 ], [ -95.837801118663819, 29.666445162428268 ], [ -95.838072118540779, 29.667366162290293 ], [ -95.838237118805878, 29.667926162616325 ], [ -95.838659119419191, 29.669412162429516 ], [ -95.838757118764903, 29.669741162809323 ], [ -95.838809118816712, 29.670333162853318 ], [ -95.83891111888876, 29.676110164039791 ], [ -95.83896611968224, 29.679236164806852 ], [ -95.839047120094861, 29.683864165407588 ], [ -95.839132119843057, 29.684383166014502 ], [ -95.839235119624121, 29.684554165838851 ], [ -95.839438120305957, 29.684775165906192 ], [ -95.83972811961452, 29.685015165747735 ], [ -95.83974811961744, 29.685025165395064 ], [ -95.840173120064222, 29.685233165941614 ], [ -95.840489119852521, 29.685286165658031 ], [ -95.84079612063978, 29.685337166103718 ], [ -95.841640120405117, 29.685326166157477 ], [ -95.84177212025817, 29.685325165570127 ], [ -95.84325012050185, 29.685308165663823 ], [ -95.844432121244324, 29.685295165925638 ], [ -95.844847120931092, 29.685348165940919 ], [ -95.844881120918558, 29.685362165469858 ], [ -95.845283121165437, 29.685599166095798 ], [ -95.845507121943044, 29.685788165703244 ], [ -95.845761121401026, 29.686153165730413 ], [ -95.845949121445543, 29.686593165499392 ], [ -95.845924122336513, 29.69428716760007 ], [ -95.84592412213108, 29.69439216787158 ], [ -95.845924122232105, 29.69470416762098 ], [ -95.846107121824133, 29.694689167868749 ], [ -95.849409122868849, 29.694425167782967 ], [ -95.850055123195631, 29.694374167645577 ], [ -95.850879122742455, 29.694309166987335 ], [ -95.853031123412336, 29.694130167126513 ], [ -95.854607124489277, 29.693999167067911 ], [ -95.854638124165447, 29.693996167543883 ], [ -95.856474124945478, 29.693844166760087 ], [ -95.858802125359929, 29.69365216711153 ], [ -95.859243125229071, 29.693615167089689 ], [ -95.862334125882271, 29.693359167141104 ], [ -95.864457126479351, 29.693183166334091 ], [ -95.864581126496034, 29.693173166476363 ], [ -95.87034412788644, 29.692695166627228 ], [ -95.870705128068593, 29.692671166268603 ], [ -95.870908128765535, 29.692657166088026 ], [ -95.871071128237247, 29.692647166236664 ], [ -95.872387128334154, 29.692561166001898 ], [ -95.873673128676899, 29.692416166317816 ], [ -95.876624129754092, 29.692182165754097 ], [ -95.877275130039763, 29.692130165973069 ], [ -95.877826129723701, 29.692081165785378 ], [ -95.880811130340888, 29.691812165861492 ], [ -95.881029131104313, 29.691778165814299 ], [ -95.881100130408157, 29.691773165687177 ], [ -95.882734131643403, 29.691650165798894 ], [ -95.883105130815153, 29.691622165272655 ], [ -95.883656131671543, 29.691582166038447 ], [ -95.883719131723225, 29.691577165207899 ], [ -95.88405413169977, 29.691553165709539 ], [ -95.884600131601189, 29.691513165383991 ], [ -95.884721131804838, 29.691504165680374 ], [ -95.88775613268156, 29.691250165633846 ], [ -95.888060133037584, 29.691212165247379 ], [ -95.888272132823161, 29.691193165447839 ], [ -95.888756132878299, 29.691156165347337 ], [ -95.891524133828526, 29.690917164775147 ], [ -95.892297133637939, 29.690819164816272 ], [ -95.893563133603521, 29.690692165380597 ], [ -95.896006134267637, 29.690447164967811 ], [ -95.897672135245799, 29.690280164846065 ], [ -95.89773513503215, 29.690274164627088 ], [ -95.898806135711766, 29.690181165007253 ], [ -95.899458135284462, 29.690126164896029 ], [ -95.899983135512372, 29.690027164881911 ], [ -95.899980135509836, 29.689873164628754 ], [ -95.899982135865756, 29.689814165075497 ], [ -95.899983135479474, 29.689774164833647 ], [ -95.899992135969825, 29.689702164308233 ], [ -95.900070135697106, 29.689508164590009 ], [ -95.900122135514522, 29.689413164726371 ], [ -95.90037113523276, 29.689184164804011 ], [ -95.900687135316957, 29.688970164281365 ], [ -95.901143135607924, 29.688854164183045 ], [ -95.901352135419316, 29.688806164329467 ], [ -95.901601136082348, 29.688749164176663 ], [ -95.902059135666391, 29.688669164576339 ], [ -95.902410136607386, 29.688636164335918 ], [ -95.90243513643486, 29.688636164080602 ], [ -95.902802136299584, 29.688641164468773 ], [ -95.903330136362456, 29.68864116467563 ], [ -95.903778136121275, 29.688667164452831 ], [ -95.904169136042469, 29.688634164736325 ], [ -95.904600136677175, 29.688555164158075 ], [ -95.906414136712613, 29.688180164234208 ], [ -95.907604137681375, 29.687934164215719 ], [ -95.912617138741297, 29.686878164102417 ], [ -95.912787138481548, 29.686842164001742 ], [ -95.914049138812246, 29.686576163493363 ], [ -95.916462139295049, 29.686068163425794 ], [ -95.917578139607059, 29.685861163060096 ], [ -95.918233140463514, 29.685763163201017 ], [ -95.918804140547806, 29.68569716279849 ], [ -95.919979140763019, 29.685576163288779 ], [ -95.920202140918647, 29.685553163118609 ], [ -95.921359141197783, 29.685434162766757 ], [ -95.921443140458578, 29.685426163071106 ], [ -95.921519141310839, 29.68541816266168 ], [ -95.923054140995106, 29.685253162825596 ], [ -95.924057141520478, 29.685141163241333 ], [ -95.924874141749854, 29.685050162910514 ], [ -95.926052141456097, 29.684917162615999 ], [ -95.928135142458984, 29.684684162599233 ], [ -95.930607142929972, 29.684407162996088 ], [ -95.935822144535948, 29.683824162278267 ], [ -95.936071143953328, 29.683796161997698 ], [ -95.936193144231723, 29.683783162296862 ], [ -95.937523144687859, 29.683639161742722 ], [ -95.93814814484206, 29.68357216179637 ], [ -95.942637146514272, 29.683086161627894 ], [ -95.94410914642279, 29.682934161819329 ], [ -95.944471146482854, 29.682896162113661 ], [ -95.944579146088145, 29.682884162100294 ], [ -95.947238147375629, 29.682586161364878 ], [ -95.955752149330834, 29.6816301608721 ], [ -95.957673149959518, 29.681429161338183 ], [ -95.961395150832146, 29.681041160773226 ], [ -95.963147151163753, 29.680858161120621 ], [ -95.965666151961969, 29.680556160332973 ], [ -95.968369151980113, 29.680273160742317 ], [ -95.970566153142542, 29.680042159938409 ], [ -95.970831153506907, 29.680014160507444 ], [ -95.971856152909254, 29.679908160429044 ], [ -95.976253154962436, 29.679448160091869 ], [ -95.977169154251257, 29.679385160276446 ], [ -95.977230155191222, 29.679618160381569 ], [ -95.977302154805045, 29.679893159906662 ], [ -95.977338154277234, 29.680032159678987 ], [ -95.97908815558344, 29.67979915958394 ], [ -95.979414155326751, 29.679749159570811 ], [ -95.982311155522893, 29.679337159524611 ], [ -95.982442155683401, 29.679318159947169 ], [ -95.985960156418074, 29.678936159321339 ], [ -95.994248158689558, 29.67802615867992 ], [ -95.994773159525707, 29.677968158689506 ], [ -95.997372160195312, 29.677664159227223 ], [ -96.000199160283074, 29.677377158613016 ], [ -96.000979161142595, 29.677291158634503 ], [ -96.003832161862562, 29.677005158720295 ], [ -96.006253161909527, 29.67672115877096 ], [ -96.007208162304508, 29.676620158595604 ], [ -96.010405162631713, 29.676284157930418 ], [ -96.010572163156255, 29.676266157760171 ], [ -96.012513163207757, 29.676062158261441 ], [ -96.014086163885779, 29.675893157648147 ], [ -96.014939163828416, 29.675723157806345 ], [ -96.015783164842276, 29.675431157956361 ], [ -96.016865164338284, 29.674917157580342 ], [ -96.017741164808797, 29.674376157510476 ], [ -96.017788164404095, 29.674348157709549 ], [ -96.018417164959757, 29.673865157494848 ], [ -96.01912016559524, 29.673335157394408 ], [ -96.019730165180576, 29.67288815759586 ], [ -96.020714165177694, 29.672183157231107 ], [ -96.021259165119645, 29.671796156808618 ], [ -96.021684165625899, 29.671494156426146 ], [ -96.021801166141231, 29.67141215707305 ], [ -96.021784166157488, 29.671408157013367 ], [ -96.021557165115695, 29.671351156912401 ], [ -96.021338165686387, 29.671298156715423 ], [ -96.021319165122222, 29.671293157194956 ], [ -96.021237165861777, 29.671272156512956 ], [ -96.021218165307388, 29.671267156978118 ], [ -96.021098165001305, 29.671236157133027 ], [ -96.020810165420542, 29.671165156613764 ], [ -96.020492165214037, 29.670948157172599 ], [ -96.020070165001684, 29.670617156685207 ], [ -96.01970116497273, 29.670391156270135 ], [ -96.019242164843476, 29.670105156206226 ], [ -96.018543164830987, 29.669834156401947 ], [ -96.01850516479648, 29.669819156458676 ], [ -96.018483164524596, 29.669798156164983 ], [ -96.018475164924467, 29.669792156596273 ], [ -96.018440164624408, 29.669763156340924 ], [ -96.018422164394451, 29.669748156795354 ], [ -96.017653164568785, 29.668817156391192 ], [ -96.01723916424028, 29.668192156454072 ], [ -96.016776163783092, 29.667496156384352 ], [ -96.016290163880512, 29.666241156068835 ], [ -96.01617116436212, 29.665582155681019 ], [ -96.016046163518766, 29.663721155259303 ], [ -96.016830163689704, 29.661974155330594 ], [ -96.018185163886258, 29.660347154967543 ], [ -96.020023164753582, 29.659172154243507 ], [ -96.020866165008883, 29.658750154165435 ], [ -96.022553165796012, 29.658389154122563 ], [ -96.023955166091454, 29.658344154486059 ], [ -96.025506166262232, 29.658660154108293 ], [ -96.027119165966809, 29.659116154472247 ], [ -96.028398166611908, 29.659745154357804 ], [ -96.029272167221833, 29.660136154613216 ], [ -96.03046116783139, 29.660409154564082 ], [ -96.030480167798586, 29.660414154628004 ], [ -96.030682167871277, 29.66038615425839 ], [ -96.030882167984657, 29.660345154078826 ], [ -96.031083167262352, 29.660311154250937 ], [ -96.031239167399605, 29.660267154247972 ], [ -96.031583167184664, 29.660152154161437 ], [ -96.031694167598317, 29.660108154060712 ], [ -96.031940168054973, 29.659981154144933 ], [ -96.032182167563462, 29.659847154293917 ], [ -96.032375168214855, 29.659713154517341 ], [ -96.032547168303012, 29.659562154323464 ], [ -96.032730168166466, 29.659325154006702 ], [ -96.03283516829238, 29.65917115392627 ], [ -96.032863168080226, 29.659104153933871 ], [ -96.032927168393215, 29.658974153537805 ], [ -96.032987168243494, 29.658880153667798 ], [ -96.033019167741813, 29.658815153880358 ], [ -96.033045167459719, 29.658637154078065 ], [ -96.033046167888969, 29.658566153970014 ], [ -96.033054168274404, 29.658495153759453 ], [ -96.033093168131359, 29.658355154053787 ], [ -96.033132168493182, 29.658254153378969 ], [ -96.033165167974147, 29.658189154053375 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 5, "Tract": "48201553403", "Area_SqMi": 2.5705661197739307, "total_2009": 2612, "total_2010": 2571, "total_2011": 2979, "total_2012": 2831, "total_2013": 2955, "total_2014": 3067, "total_2015": 3547, "total_2016": 3708, "total_2017": 3661, "total_2018": 3786, "total_2019": 3984, "total_2020": 3956, "age1": 1234, "age2": 1703, "age3": 729, "earn1": 852, "earn2": 1339, "earn3": 1475, "naics_s01": 1, "naics_s02": 0, "naics_s03": 22, "naics_s04": 281, "naics_s05": 203, "naics_s06": 128, "naics_s07": 1227, "naics_s08": 20, "naics_s09": 12, "naics_s10": 46, "naics_s11": 136, "naics_s12": 204, "naics_s13": 0, "naics_s14": 95, "naics_s15": 23, "naics_s16": 154, "naics_s17": 34, "naics_s18": 845, "naics_s19": 235, "naics_s20": 0, "race1": 2785, "race2": 565, "race3": 40, "race4": 198, "race5": 5, "race6": 73, "ethnicity1": 2493, "ethnicity2": 1173, "edu1": 525, "edu2": 689, "edu3": 765, "edu4": 453, "Shape_Length": 55072.492764953175, "Shape_Area": 71662983.851413265, "total_2021": 3669, "total_2022": 3666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.492780048407624, 30.0504642524498 ], [ -95.492723047729854, 30.050325252018286 ], [ -95.492559048061949, 30.049922252246322 ], [ -95.491584047517492, 30.047534251259464 ], [ -95.490973047188376, 30.04603625095362 ], [ -95.490771046818523, 30.045540251142423 ], [ -95.490618047500377, 30.04516525078915 ], [ -95.48906804679109, 30.041330250168837 ], [ -95.488978046698904, 30.041122250358136 ], [ -95.488855046199461, 30.040866250396828 ], [ -95.488706046165547, 30.04060125025552 ], [ -95.488653046518962, 30.040519249923584 ], [ -95.488569045915497, 30.040391250281591 ], [ -95.487213045586614, 30.041142250316721 ], [ -95.486443045629684, 30.041581250463942 ], [ -95.485540045929042, 30.042063250619641 ], [ -95.484470045397259, 30.04265025064235 ], [ -95.483753045284104, 30.043048250804713 ], [ -95.482754045525638, 30.043613250616271 ], [ -95.481880044866287, 30.044076251336932 ], [ -95.480299044147785, 30.04494925175198 ], [ -95.479700044177662, 30.045292251683716 ], [ -95.47838204428956, 30.046004251761865 ], [ -95.478280044050379, 30.046061251362836 ], [ -95.477355043730554, 30.046583251669734 ], [ -95.476834043723912, 30.046868251899863 ], [ -95.476613043481038, 30.0469892518372 ], [ -95.476467043498303, 30.04707925197544 ], [ -95.476192043122737, 30.047229251571249 ], [ -95.474922043365567, 30.04792525181124 ], [ -95.473877043470836, 30.048487252176969 ], [ -95.473717043207003, 30.048573251972428 ], [ -95.473631043447256, 30.048611252150689 ], [ -95.473464042449976, 30.048715252681237 ], [ -95.472783042387107, 30.049097252608199 ], [ -95.472456042964552, 30.04928125299347 ], [ -95.472196043045869, 30.049416252442693 ], [ -95.472056042724986, 30.049473252653275 ], [ -95.471391042821978, 30.049806252495078 ], [ -95.470577042695894, 30.050258252752482 ], [ -95.470351041899093, 30.050373252805656 ], [ -95.469840042257871, 30.050650252460123 ], [ -95.469024041352739, 30.051154253210562 ], [ -95.468538042086834, 30.051372253032113 ], [ -95.468147041174433, 30.051518253302209 ], [ -95.467870042017466, 30.051610253066372 ], [ -95.467637041807137, 30.051646253352239 ], [ -95.467501041502572, 30.051684253223026 ], [ -95.466990041573908, 30.051799252992105 ], [ -95.466499041230563, 30.051883253031892 ], [ -95.466186041397137, 30.051914252947654 ], [ -95.465601041082678, 30.051955253172181 ], [ -95.464769040541867, 30.052069252920578 ], [ -95.463933040419931, 30.052187253484899 ], [ -95.463503040642394, 30.052266253568092 ], [ -95.463120040627686, 30.052357253110426 ], [ -95.462775040609444, 30.05245725381284 ], [ -95.462529040059636, 30.052540253204402 ], [ -95.462290039954041, 30.052629253419148 ], [ -95.461930040185464, 30.052776253216901 ], [ -95.461699040090295, 30.052884253379776 ], [ -95.461480040435035, 30.053003253607091 ], [ -95.461272040155407, 30.053129253631724 ], [ -95.461038039777534, 30.053286253931571 ], [ -95.460626039989847, 30.053590253923328 ], [ -95.459589039619758, 30.054402254100303 ], [ -95.458463039375872, 30.055263254151377 ], [ -95.458095038876806, 30.055535254105024 ], [ -95.457894039533031, 30.055670254238137 ], [ -95.457585039002552, 30.055864254432805 ], [ -95.456983039496123, 30.056198254790157 ], [ -95.45615603876945, 30.05664725467869 ], [ -95.45589903844558, 30.056792254914299 ], [ -95.455410038949125, 30.057120254876661 ], [ -95.455130038735362, 30.057338254379498 ], [ -95.454934038491643, 30.057509255150151 ], [ -95.454655038743482, 30.057780254863356 ], [ -95.454400038042635, 30.058063254845443 ], [ -95.454170038589609, 30.058360254659867 ], [ -95.453864038782072, 30.058790255420881 ], [ -95.453654038617174, 30.059075255409258 ], [ -95.45353103851032, 30.059232255574113 ], [ -95.45333103865336, 30.059463255308252 ], [ -95.453075038531878, 30.059724255453574 ], [ -95.452914038358912, 30.05987025550116 ], [ -95.452703038257482, 30.06004325532097 ], [ -95.452428037756334, 30.060251255475599 ], [ -95.45220603817269, 30.060399255765741 ], [ -95.451847037414709, 30.06061625534953 ], [ -95.451054038235611, 30.061055255447723 ], [ -95.450839037200637, 30.061183255314226 ], [ -95.450724038011742, 30.061238255804746 ], [ -95.450174037733163, 30.061543255546773 ], [ -95.449600037680938, 30.061871256242711 ], [ -95.449541037419664, 30.061901255689857 ], [ -95.449270037771797, 30.062044256383118 ], [ -95.4491810376541, 30.062081255839974 ], [ -95.448837036807646, 30.062291256404443 ], [ -95.448516037151819, 30.062466256129614 ], [ -95.448288037564339, 30.062590255895408 ], [ -95.44792903746341, 30.062776255929457 ], [ -95.447522036922749, 30.062988256276274 ], [ -95.447336036370189, 30.063079255910392 ], [ -95.446956036364753, 30.063243256251418 ], [ -95.446708036376506, 30.063334256046886 ], [ -95.446434036431683, 30.063422256547561 ], [ -95.445936036320589, 30.063559256186561 ], [ -95.44546503667938, 30.063642256732088 ], [ -95.445233036688748, 30.063673256069421 ], [ -95.444994036633631, 30.063694256340661 ], [ -95.44463903648473, 30.063710256373756 ], [ -95.444407035845487, 30.06371125682082 ], [ -95.444089035550434, 30.063696256494577 ], [ -95.444004035763584, 30.063692256772896 ], [ -95.443588035471791, 30.0636462562478 ], [ -95.443525035427399, 30.063639256062601 ], [ -95.443475036304633, 30.063634256053067 ], [ -95.443372035911466, 30.063623256829789 ], [ -95.443300036334435, 30.06361525664056 ], [ -95.443263035763565, 30.063611256674253 ], [ -95.443218035919529, 30.063606256182425 ], [ -95.443156036177754, 30.063599256118849 ], [ -95.442645036020963, 30.063534256123138 ], [ -95.442387035499081, 30.063512256376722 ], [ -95.442110035362091, 30.063522256188435 ], [ -95.441636035288454, 30.063575256751793 ], [ -95.441220035706678, 30.063658256289401 ], [ -95.441112035815522, 30.063492256290843 ], [ -95.440704035626311, 30.062947256141701 ], [ -95.440411035318974, 30.062525256787147 ], [ -95.440037035396585, 30.062025256487637 ], [ -95.439801034982096, 30.06173825580138 ], [ -95.4394240351658, 30.061328255957385 ], [ -95.439148035026236, 30.06100325609065 ], [ -95.438603034596554, 30.060274256332558 ], [ -95.437969034264896, 30.059401256200541 ], [ -95.437627033880986, 30.058936255338075 ], [ -95.437176033940432, 30.058289255908392 ], [ -95.435582033650448, 30.056093254960466 ], [ -95.433976032851916, 30.054037254707168 ], [ -95.433906033112947, 30.053929254802238 ], [ -95.433356032439761, 30.053163254459186 ], [ -95.433156032713299, 30.052884254483068 ], [ -95.432944032646958, 30.052872254812627 ], [ -95.432700032700581, 30.052829254316851 ], [ -95.432492032308645, 30.052775254502414 ], [ -95.432321032809625, 30.05272125460915 ], [ -95.432082032973469, 30.05264525432079 ], [ -95.432034032832519, 30.052630254681464 ], [ -95.431977032806657, 30.05261225423644 ], [ -95.431937032256656, 30.052599254924452 ], [ -95.431902032916, 30.052588254885848 ], [ -95.431931032851381, 30.052746254494735 ], [ -95.432129032273437, 30.053817255120794 ], [ -95.432237032286437, 30.054404255241252 ], [ -95.432837033065113, 30.057083255538529 ], [ -95.433117033528617, 30.05855325542834 ], [ -95.433898033685963, 30.063051256647274 ], [ -95.434499034091644, 30.066510256975793 ], [ -95.43492203401685, 30.068767257706519 ], [ -95.435207033659097, 30.069998258234435 ], [ -95.435497033995333, 30.071367258567253 ], [ -95.435569034423196, 30.071705258099581 ], [ -95.436039033976883, 30.074315258772373 ], [ -95.436133034249309, 30.074813258611485 ], [ -95.436168034715919, 30.074799259140214 ], [ -95.436252034758596, 30.074767259314864 ], [ -95.436493034796456, 30.074676258717044 ], [ -95.436852034506288, 30.074537259260815 ], [ -95.437031034396853, 30.074455259048349 ], [ -95.437248035027494, 30.074358258916671 ], [ -95.437604035, 30.074200258583616 ], [ -95.437621034871583, 30.074191258421607 ], [ -95.439104035544688, 30.073384258728019 ], [ -95.441974035923991, 30.071825258017334 ], [ -95.442094036032529, 30.071759257794913 ], [ -95.442657036452914, 30.07145125774602 ], [ -95.443036036028602, 30.071240258183877 ], [ -95.443765036103315, 30.070958257824525 ], [ -95.443899036467243, 30.070905257703821 ], [ -95.444125036302069, 30.070829258042615 ], [ -95.44405503592462, 30.070647257712807 ], [ -95.444484036117032, 30.070405258117177 ], [ -95.445071037026807, 30.070092257392055 ], [ -95.445785037170992, 30.069692257299664 ], [ -95.44611403640971, 30.069512257662012 ], [ -95.446256036727149, 30.069436257508357 ], [ -95.44636703682967, 30.069374257635449 ], [ -95.44929903708541, 30.067745257177762 ], [ -95.449745037651397, 30.067525256856808 ], [ -95.449972037272971, 30.067419256763351 ], [ -95.450228037315981, 30.067334256588062 ], [ -95.450615037657542, 30.067225256735473 ], [ -95.451850038558817, 30.066922257062082 ], [ -95.452069038019275, 30.066868257006966 ], [ -95.453095039023822, 30.066617256389609 ], [ -95.454465039179141, 30.066284256323179 ], [ -95.457587039561275, 30.065529256356225 ], [ -95.457647039149208, 30.06551425676874 ], [ -95.459914039900525, 30.064955256049561 ], [ -95.460506040012447, 30.064811255898064 ], [ -95.46219704030166, 30.064400256208881 ], [ -95.464356041192914, 30.063877256228011 ], [ -95.466928042379706, 30.063253255887723 ], [ -95.468577041780918, 30.062853255715517 ], [ -95.469746042175984, 30.062569254897909 ], [ -95.47055504244085, 30.062375255384197 ], [ -95.471498043416489, 30.062134254823608 ], [ -95.472072042973991, 30.061967254715007 ], [ -95.472190043346188, 30.061918254737343 ], [ -95.472782043604866, 30.061669255111109 ], [ -95.472825043137135, 30.061639255366376 ], [ -95.473076043352833, 30.061504254828069 ], [ -95.474864043857579, 30.060579254890218 ], [ -95.47726404443118, 30.059252254300144 ], [ -95.477359044676817, 30.05920025438239 ], [ -95.478076044769495, 30.058749253952371 ], [ -95.478878045073813, 30.058298254580617 ], [ -95.480060044505308, 30.057634253536239 ], [ -95.480457044889434, 30.057436254360621 ], [ -95.482451045370667, 30.056324254000032 ], [ -95.483185045243815, 30.055836253849151 ], [ -95.483586045423536, 30.055607253752328 ], [ -95.483935045751039, 30.055417253371484 ], [ -95.484578046351174, 30.055041253743688 ], [ -95.48500204586189, 30.054806253442877 ], [ -95.486084046466871, 30.054199253066585 ], [ -95.487830046629668, 30.053220253053247 ], [ -95.489963046877051, 30.05202725219258 ], [ -95.491229047649284, 30.051323252227434 ], [ -95.492122047427159, 30.050840251762686 ], [ -95.492780048407624, 30.0504642524498 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 6, "Tract": "48201454502", "Area_SqMi": 2.9235522697731642, "total_2009": 52, "total_2010": 49, "total_2011": 58, "total_2012": 55, "total_2013": 57, "total_2014": 43, "total_2015": 54, "total_2016": 70, "total_2017": 100, "total_2018": 158, "total_2019": 82, "total_2020": 109, "age1": 20, "age2": 59, "age3": 38, "earn1": 27, "earn2": 30, "earn3": 60, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 24, "naics_s07": 3, "naics_s08": 4, "naics_s09": 0, "naics_s10": 7, "naics_s11": 0, "naics_s12": 20, "naics_s13": 0, "naics_s14": 43, "naics_s15": 11, "naics_s16": 0, "naics_s17": 0, "naics_s18": 2, "naics_s19": 3, "naics_s20": 0, "race1": 88, "race2": 8, "race3": 0, "race4": 19, "race5": 0, "race6": 2, "ethnicity1": 84, "ethnicity2": 33, "edu1": 23, "edu2": 20, "edu3": 27, "edu4": 27, "Shape_Length": 40344.762916651547, "Shape_Area": 81503633.571558282, "total_2021": 126, "total_2022": 117 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.733621095248424, 29.736275179454182 ], [ -95.733455094955048, 29.736155179963514 ], [ -95.733137094630152, 29.735961180133391 ], [ -95.732479095225116, 29.735557179272107 ], [ -95.732394094936538, 29.735507179458658 ], [ -95.732286094596319, 29.735446180131341 ], [ -95.732089094759914, 29.735324179856324 ], [ -95.732002094643121, 29.735272179599754 ], [ -95.731573094704046, 29.735011179338322 ], [ -95.731323094938134, 29.73485817968109 ], [ -95.730782094302654, 29.734529179511124 ], [ -95.730403094055603, 29.734301179264229 ], [ -95.729684094556987, 29.733921179714898 ], [ -95.728415093748538, 29.733235179779868 ], [ -95.728294093253183, 29.733170179738785 ], [ -95.727985093385243, 29.733003179398626 ], [ -95.727959094106254, 29.732989179710493 ], [ -95.727885093478264, 29.732947178960899 ], [ -95.72422709211969, 29.730887178851532 ], [ -95.720568091405184, 29.728827178726718 ], [ -95.718015091043355, 29.727389178212562 ], [ -95.715463090547303, 29.725952178404818 ], [ -95.713412089446436, 29.724797177998237 ], [ -95.711456088619016, 29.723695177689919 ], [ -95.711361089253003, 29.72364217811678 ], [ -95.711261088773796, 29.723585178129564 ], [ -95.711160089307313, 29.723529177985196 ], [ -95.711104088419887, 29.723497177892483 ], [ -95.711048088600904, 29.723465177801476 ], [ -95.708440087753445, 29.721978177999297 ], [ -95.708219087668439, 29.721856177498029 ], [ -95.708304088399188, 29.722165177851053 ], [ -95.708380088059826, 29.722720177678251 ], [ -95.708336088097724, 29.723116178394438 ], [ -95.708336088488309, 29.72340717792061 ], [ -95.708317088344771, 29.723479177935303 ], [ -95.708267088287059, 29.72385817780572 ], [ -95.708248088240779, 29.723908177878489 ], [ -95.708279088517386, 29.724001177984803 ], [ -95.70839108823445, 29.724096178405954 ], [ -95.708610088020563, 29.724601178337995 ], [ -95.708856088257122, 29.725021178315231 ], [ -95.708883088543161, 29.725178178840533 ], [ -95.708786088512454, 29.725369178113439 ], [ -95.708600088336283, 29.725618178469393 ], [ -95.708454088121172, 29.725813178806366 ], [ -95.708232088344076, 29.726376178818484 ], [ -95.708244088269097, 29.726652178447342 ], [ -95.708436088864431, 29.726893178335978 ], [ -95.708876088614758, 29.727290178927571 ], [ -95.709149089100478, 29.72795117935183 ], [ -95.709464088955329, 29.728300179256003 ], [ -95.709546088582144, 29.728508178674673 ], [ -95.709560088839865, 29.72854117941689 ], [ -95.709545088508165, 29.728625179396072 ], [ -95.708855088760828, 29.729103179031959 ], [ -95.708248088133701, 29.72943817914247 ], [ -95.707931088140683, 29.729533179756682 ], [ -95.707752088087759, 29.729628179241907 ], [ -95.707724088836756, 29.729844179373789 ], [ -95.707792088791535, 29.730037179409035 ], [ -95.708025088625547, 29.730217179618339 ], [ -95.708576088831208, 29.730327179201403 ], [ -95.709126088844371, 29.730400179760402 ], [ -95.709305088518335, 29.730461179602081 ], [ -95.709387088643538, 29.730569179423014 ], [ -95.709428089316702, 29.730761179533282 ], [ -95.709317089024154, 29.730977180018051 ], [ -95.709165088873348, 29.731181179626713 ], [ -95.708530088692697, 29.731587179293712 ], [ -95.708281088457269, 29.731839179355386 ], [ -95.708239088880191, 29.73206618017462 ], [ -95.708362089090585, 29.732295180048293 ], [ -95.708719088591607, 29.732740179621839 ], [ -95.708773088642388, 29.733028179777339 ], [ -95.708648088552408, 29.733208180483725 ], [ -95.70823508890345, 29.733303180076557 ], [ -95.707766088070102, 29.733362180415515 ], [ -95.707312088455481, 29.733397180445575 ], [ -95.706967088389092, 29.733480180368069 ], [ -95.706637087732574, 29.733611179959059 ], [ -95.706429088545761, 29.733850179931505 ], [ -95.7060410883347, 29.734534179984941 ], [ -95.70592808789084, 29.734708180386033 ], [ -95.705832087968261, 29.734856180637635 ], [ -95.705792087826993, 29.734917180140673 ], [ -95.705488087810352, 29.735132180113656 ], [ -95.705295087748723, 29.735300180754439 ], [ -95.705213088232142, 29.735472181025973 ], [ -95.705170088407201, 29.735564180249156 ], [ -95.705153088262207, 29.735915180680117 ], [ -95.705145088320123, 29.736038181055356 ], [ -95.705147087883859, 29.736122180678752 ], [ -95.705142088237949, 29.736141181017214 ], [ -95.704926087971117, 29.736299180639055 ], [ -95.704535087386247, 29.736711181111467 ], [ -95.70384908792029, 29.737299181395368 ], [ -95.703591087203037, 29.737541180934546 ], [ -95.702659086949467, 29.738311181648616 ], [ -95.702029087351633, 29.738817181059549 ], [ -95.701757087275979, 29.73905418147541 ], [ -95.700858087025892, 29.739839182065566 ], [ -95.699403086971088, 29.741219182200542 ], [ -95.699214086950121, 29.741439182068635 ], [ -95.699057086851838, 29.7417801823239 ], [ -95.698830086959902, 29.742148181848261 ], [ -95.69869108707671, 29.742341182479091 ], [ -95.698187086835873, 29.742792182440144 ], [ -95.696764086333062, 29.74393018296777 ], [ -95.696821086345381, 29.743941182860883 ], [ -95.696915086514366, 29.743935182903446 ], [ -95.697577085888014, 29.744166182398899 ], [ -95.697816086637559, 29.74421018257382 ], [ -95.698106086176054, 29.744243182822434 ], [ -95.698383086919179, 29.744237182295684 ], [ -95.698522086632636, 29.744210182829814 ], [ -95.698944086613892, 29.744149182839365 ], [ -95.699051086900212, 29.744111182453807 ], [ -95.699214087183648, 29.744023182295493 ], [ -95.699353086644734, 29.743995182799576 ], [ -95.699454087205282, 29.743984182552044 ], [ -95.699700087377295, 29.743984182391031 ], [ -95.699807087185775, 29.743990182912029 ], [ -95.699907087210676, 29.744017182205663 ], [ -95.699983086699149, 29.744061182759975 ], [ -95.700040087208663, 29.744116182793899 ], [ -95.700273087231551, 29.744386182248654 ], [ -95.700374087460901, 29.744572182554297 ], [ -95.700474087357065, 29.74486918270275 ], [ -95.700601087633814, 29.745177182350869 ], [ -95.700752087507624, 29.745342182653655 ], [ -95.700878086924476, 29.745463183062924 ], [ -95.701722087104386, 29.746172182620455 ], [ -95.701943087952657, 29.746282182928997 ], [ -95.702258087371533, 29.746606182738116 ], [ -95.702289087732126, 29.746644183158327 ], [ -95.702340088006167, 29.746738182631695 ], [ -95.702390087266664, 29.746787182997391 ], [ -95.702421087955017, 29.746804182739503 ], [ -95.702554088204991, 29.746820182599897 ], [ -95.702755087849411, 29.747145183500539 ], [ -95.702832087648432, 29.7474491827797 ], [ -95.702899088126188, 29.747715183137576 ], [ -95.702839087568137, 29.748420183678732 ], [ -95.702796087628982, 29.749007183106702 ], [ -95.702855087545672, 29.749728184018032 ], [ -95.702995088308285, 29.750557183820231 ], [ -95.703156088211301, 29.751082184131995 ], [ -95.703653088658555, 29.752107183783046 ], [ -95.704121088756054, 29.752759183748367 ], [ -95.704762088146396, 29.753446184101911 ], [ -95.705403088915332, 29.75397318412049 ], [ -95.706249088607052, 29.754438184657062 ], [ -95.7079480891082, 29.754977184396289 ], [ -95.708507089605135, 29.755129184774415 ], [ -95.709144089535954, 29.755281184919163 ], [ -95.70960809010478, 29.755358184424338 ], [ -95.711021089815986, 29.755591184182837 ], [ -95.711110090770319, 29.755604184436176 ], [ -95.71238409020134, 29.755788184330882 ], [ -95.712874090983064, 29.755859184406543 ], [ -95.713047090896467, 29.755956184604553 ], [ -95.7132040911915, 29.756043184958294 ], [ -95.71342209138227, 29.756166184562961 ], [ -95.714903091420865, 29.757308184833022 ], [ -95.716437092139486, 29.758490184617951 ], [ -95.717722091818217, 29.759508185259183 ], [ -95.717763092594382, 29.759467184926365 ], [ -95.717803092070767, 29.75942518526152 ], [ -95.718115091950423, 29.759105185012903 ], [ -95.718287092279866, 29.758937184670494 ], [ -95.718771092508916, 29.758432184853433 ], [ -95.718841092943265, 29.758359184534982 ], [ -95.718919092771188, 29.758273185126168 ], [ -95.719078092777906, 29.758092185024047 ], [ -95.719282092013529, 29.757823184836642 ], [ -95.719359092763128, 29.757715184518744 ], [ -95.719468092468716, 29.757561184636561 ], [ -95.719610092411941, 29.75732318451762 ], [ -95.719761092323623, 29.757036184662418 ], [ -95.719781093067539, 29.756987184495244 ], [ -95.719814092892051, 29.756908184617853 ], [ -95.719856093130559, 29.75684218479017 ], [ -95.719876092158984, 29.756788184231166 ], [ -95.720012092550206, 29.756512184103588 ], [ -95.720084092605859, 29.756361184444017 ], [ -95.720119092368193, 29.756272184031058 ], [ -95.720144093038215, 29.756237184378499 ], [ -95.720362092847637, 29.755786184495641 ], [ -95.720525092212299, 29.755492184547219 ], [ -95.720663093126305, 29.755278184525732 ], [ -95.72071709310481, 29.75520218408764 ], [ -95.72090509310361, 29.754950183679238 ], [ -95.721180093299708, 29.75461918369805 ], [ -95.72128909268524, 29.754500183795795 ], [ -95.721456093290769, 29.754343184253599 ], [ -95.721558093340008, 29.754239183577276 ], [ -95.721604092613518, 29.754185183477016 ], [ -95.721654093243217, 29.754141183550548 ], [ -95.72174209334419, 29.754052184204973 ], [ -95.721776093235334, 29.754001184017994 ], [ -95.721820093471791, 29.7539681841895 ], [ -95.721860092919172, 29.753931183679025 ], [ -95.722227092716196, 29.753543183743872 ], [ -95.72226809348939, 29.753500183738026 ], [ -95.722361092723446, 29.753565183974114 ], [ -95.722846093088123, 29.753070183205754 ], [ -95.723328093465781, 29.752588183157851 ], [ -95.723767093880994, 29.752137183644887 ], [ -95.7238300936244, 29.752071183380703 ], [ -95.724420093927947, 29.751453183519576 ], [ -95.726441094210955, 29.749371182626724 ], [ -95.726589093615402, 29.749228182922337 ], [ -95.728367094770803, 29.747396181874304 ], [ -95.728618093929455, 29.747122182338611 ], [ -95.72892909454437, 29.746763181982097 ], [ -95.7292830940671, 29.746318182273075 ], [ -95.729401094867939, 29.746159181769269 ], [ -95.729609094716167, 29.745870182191364 ], [ -95.729774094585295, 29.745625181854368 ], [ -95.730157094837892, 29.745003181632686 ], [ -95.730384095146988, 29.744584181750472 ], [ -95.730435094649266, 29.744487181364274 ], [ -95.73048509487802, 29.744389181778118 ], [ -95.730517094828116, 29.744326181250944 ], [ -95.73071009495979, 29.743908181565555 ], [ -95.730852094664257, 29.743573181185312 ], [ -95.731022095028095, 29.743127181138249 ], [ -95.731186095226946, 29.742647181073746 ], [ -95.731315094669938, 29.74222918134793 ], [ -95.731412094614242, 29.741915181438703 ], [ -95.731417094842755, 29.74189818131666 ], [ -95.731771094844078, 29.740718180729083 ], [ -95.731875095106119, 29.740411181080866 ], [ -95.731956095076555, 29.740198180953644 ], [ -95.732117094786133, 29.739857180943201 ], [ -95.732410095140764, 29.739290180480442 ], [ -95.732496095313834, 29.739093180313159 ], [ -95.732638095042347, 29.738713180217093 ], [ -95.732691094588162, 29.73856018052955 ], [ -95.732718094887815, 29.738320180695364 ], [ -95.732759095274659, 29.737950180225869 ], [ -95.732918094996847, 29.737519180152557 ], [ -95.733057094725197, 29.737207179689559 ], [ -95.733176095523262, 29.736978180054596 ], [ -95.733329095610685, 29.736724179923804 ], [ -95.733384095499858, 29.736640180237281 ], [ -95.733621095248424, 29.736275179454182 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 7, "Tract": "48157670400", "Area_SqMi": 1.0157647392020581, "total_2009": 240, "total_2010": 158, "total_2011": 143, "total_2012": 394, "total_2013": 429, "total_2014": 415, "total_2015": 203, "total_2016": 157, "total_2017": 194, "total_2018": 175, "total_2019": 161, "total_2020": 167, "age1": 32, "age2": 77, "age3": 43, "earn1": 45, "earn2": 41, "earn3": 66, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 0, "naics_s07": 9, "naics_s08": 54, "naics_s09": 0, "naics_s10": 1, "naics_s11": 14, "naics_s12": 1, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 54, "naics_s19": 2, "naics_s20": 0, "race1": 71, "race2": 67, "race3": 0, "race4": 10, "race5": 0, "race6": 4, "ethnicity1": 112, "ethnicity2": 40, "edu1": 32, "edu2": 30, "edu3": 38, "edu4": 20, "Shape_Length": 22693.864450063349, "Shape_Area": 28317782.430227425, "total_2021": 147, "total_2022": 152 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.509065032147802, 29.61371816203614 ], [ -95.509047032186672, 29.613416162496453 ], [ -95.509014032801971, 29.613191161826233 ], [ -95.508972032766394, 29.612903161974721 ], [ -95.508922031933608, 29.612770161704841 ], [ -95.508913032797892, 29.612738162008679 ], [ -95.508899032304015, 29.612687162440874 ], [ -95.508846032294585, 29.612498161774379 ], [ -95.50872103176691, 29.612117162353844 ], [ -95.508674032450486, 29.611973161819154 ], [ -95.508529032632964, 29.611718161901852 ], [ -95.508518032705553, 29.611699161638406 ], [ -95.508254031770434, 29.61105116180816 ], [ -95.508159032437405, 29.61082116219805 ], [ -95.507971032360615, 29.610401161575545 ], [ -95.507772031552051, 29.609979162016032 ], [ -95.507553032104809, 29.609455161086544 ], [ -95.50727003166044, 29.608779161089188 ], [ -95.507196031722472, 29.60849916106876 ], [ -95.50711503138109, 29.608191161558462 ], [ -95.507038031812243, 29.607630161454669 ], [ -95.507021031696652, 29.607512161149003 ], [ -95.50704303187355, 29.607234160804133 ], [ -95.507085031376207, 29.60681916081829 ], [ -95.507138031915389, 29.606369160817753 ], [ -95.507148031904492, 29.606297160449763 ], [ -95.507241031467714, 29.605967161169751 ], [ -95.507467031988099, 29.60512216089322 ], [ -95.507502031197362, 29.604454160734637 ], [ -95.507494031546869, 29.604029160688544 ], [ -95.507452031526142, 29.603438160150695 ], [ -95.507437031385649, 29.602784160181411 ], [ -95.507433031903219, 29.602088159870124 ], [ -95.507403031552656, 29.601526160064818 ], [ -95.507405031123056, 29.60137815979758 ], [ -95.506285030817082, 29.601374159465752 ], [ -95.506255031058288, 29.601374159553025 ], [ -95.505363030567437, 29.601244160174225 ], [ -95.505201031262459, 29.601221160082105 ], [ -95.504619030465136, 29.601076160279309 ], [ -95.504457030437663, 29.601021159545343 ], [ -95.50424503100723, 29.600948159937676 ], [ -95.503616030615703, 29.600673159632045 ], [ -95.502758029924024, 29.600287159574254 ], [ -95.50242303065491, 29.600136159694468 ], [ -95.501762030388718, 29.599821159439905 ], [ -95.501481029643898, 29.59968216014823 ], [ -95.500946029967523, 29.599431159910527 ], [ -95.500662029856386, 29.599298159883197 ], [ -95.500494029774572, 29.59922816002058 ], [ -95.500341029843639, 29.599293159835117 ], [ -95.500046030016051, 29.599182159521128 ], [ -95.49901902950684, 29.598940159668246 ], [ -95.49831102853986, 29.598856159784436 ], [ -95.497808029426622, 29.598846159529003 ], [ -95.497587028607839, 29.598845159843908 ], [ -95.496824028887175, 29.598871159880311 ], [ -95.492430027851739, 29.598922159580567 ], [ -95.492426027529831, 29.59958015969482 ], [ -95.4924480278152, 29.600563160638917 ], [ -95.492466027375869, 29.601332160548015 ], [ -95.492475027364037, 29.602033160611278 ], [ -95.49254602769858, 29.602363160356507 ], [ -95.492784027710655, 29.602774160624371 ], [ -95.493025028359199, 29.603254160891407 ], [ -95.493073027415619, 29.603490161215358 ], [ -95.493084028296025, 29.603677160421626 ], [ -95.49308702802513, 29.603838160500203 ], [ -95.493096028174179, 29.604243160697411 ], [ -95.493097027975082, 29.604287160649168 ], [ -95.493106028485144, 29.604669160689635 ], [ -95.493124027653025, 29.605280161088068 ], [ -95.493158028019096, 29.60546916130054 ], [ -95.493227027529102, 29.605713161626863 ], [ -95.493430027923978, 29.606142160997301 ], [ -95.493683028263646, 29.606478161782064 ], [ -95.494100028156907, 29.606827161358922 ], [ -95.49428102884589, 29.606931161206266 ], [ -95.494244028050034, 29.607004161196951 ], [ -95.493760028023488, 29.607749161728211 ], [ -95.492759028440432, 29.609269162272479 ], [ -95.492694028094334, 29.60939116242842 ], [ -95.492626028231939, 29.609661161945088 ], [ -95.492630027829648, 29.61056916213338 ], [ -95.492666028466061, 29.612290163061918 ], [ -95.49266302795786, 29.612374162889012 ], [ -95.493318028795017, 29.612665162937176 ], [ -95.49341002803898, 29.612722162238409 ], [ -95.493441028170125, 29.612726162916267 ], [ -95.493534027957509, 29.612741162663223 ], [ -95.493704028479371, 29.612814163009816 ], [ -95.494036028297785, 29.612956163058328 ], [ -95.494425029045175, 29.613123163065833 ], [ -95.494927028915271, 29.613338162697083 ], [ -95.495045028925531, 29.613395163137703 ], [ -95.495740029399627, 29.61373016314182 ], [ -95.495812028911672, 29.613764163121953 ], [ -95.495899029582006, 29.613806162734438 ], [ -95.49627702920499, 29.613989163164948 ], [ -95.496504029391346, 29.61409816241375 ], [ -95.49928703013704, 29.615437163205787 ], [ -95.499938030722888, 29.615749162793751 ], [ -95.500054030634772, 29.615802163460312 ], [ -95.500684030030484, 29.616092163415743 ], [ -95.502093030751823, 29.616734163177959 ], [ -95.503343031052538, 29.617310163417766 ], [ -95.508634032987146, 29.61973416365873 ], [ -95.508681033062913, 29.619323163733242 ], [ -95.508715033024359, 29.619114163663745 ], [ -95.508765032982765, 29.618661163214984 ], [ -95.508830032872538, 29.618057163274038 ], [ -95.508857032082048, 29.617647163213061 ], [ -95.508922032712945, 29.616692162766387 ], [ -95.508962032738907, 29.615769162917861 ], [ -95.508994032660922, 29.615018162378249 ], [ -95.509004032218627, 29.614869162660046 ], [ -95.5090240320866, 29.614612162396522 ], [ -95.509065032147802, 29.61371816203614 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 8, "Tract": "48157670300", "Area_SqMi": 1.153350016898153, "total_2009": 171, "total_2010": 123, "total_2011": 124, "total_2012": 117, "total_2013": 111, "total_2014": 97, "total_2015": 62, "total_2016": 76, "total_2017": 88, "total_2018": 74, "total_2019": 90, "total_2020": 92, "age1": 36, "age2": 57, "age3": 29, "earn1": 37, "earn2": 44, "earn3": 41, "naics_s01": 6, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 0, "naics_s07": 17, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 37, "naics_s17": 39, "naics_s18": 3, "naics_s19": 9, "naics_s20": 0, "race1": 62, "race2": 37, "race3": 2, "race4": 21, "race5": 0, "race6": 0, "ethnicity1": 94, "ethnicity2": 28, "edu1": 26, "edu2": 23, "edu3": 19, "edu4": 18, "Shape_Length": 29673.669938915031, "Shape_Area": 32153424.492838353, "total_2021": 104, "total_2022": 122 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.494244028050034, 29.607004161196951 ], [ -95.49428102884589, 29.606931161206266 ], [ -95.494100028156907, 29.606827161358922 ], [ -95.493683028263646, 29.606478161782064 ], [ -95.493430027923978, 29.606142160997301 ], [ -95.493227027529102, 29.605713161626863 ], [ -95.493158028019096, 29.60546916130054 ], [ -95.493124027653025, 29.605280161088068 ], [ -95.493106028485144, 29.604669160689635 ], [ -95.493097027975082, 29.604287160649168 ], [ -95.493096028174179, 29.604243160697411 ], [ -95.49308702802513, 29.603838160500203 ], [ -95.493084028296025, 29.603677160421626 ], [ -95.493073027415619, 29.603490161215358 ], [ -95.493025028359199, 29.603254160891407 ], [ -95.492784027710655, 29.602774160624371 ], [ -95.49254602769858, 29.602363160356507 ], [ -95.492475027364037, 29.602033160611278 ], [ -95.492466027375869, 29.601332160548015 ], [ -95.4924480278152, 29.600563160638917 ], [ -95.492426027529831, 29.59958015969482 ], [ -95.492430027851739, 29.598922159580567 ], [ -95.492360027042196, 29.596093159087033 ], [ -95.492353027320704, 29.595331158904102 ], [ -95.492345026984708, 29.595123159514085 ], [ -95.492336027829992, 29.594560159386067 ], [ -95.492325026787384, 29.593787158709148 ], [ -95.492303027359867, 29.593018159016019 ], [ -95.492290026919974, 29.592263158248105 ], [ -95.492260026888005, 29.591878158247411 ], [ -95.492259027301728, 29.591738158521878 ], [ -95.492252026645048, 29.589900157897716 ], [ -95.492209027035955, 29.588886158250745 ], [ -95.492172027258277, 29.588021157212314 ], [ -95.49216202694636, 29.587613157466787 ], [ -95.492109026822291, 29.585882157231712 ], [ -95.492076027264105, 29.584114156445366 ], [ -95.492053026986937, 29.583286156699931 ], [ -95.492042026594362, 29.582327156163906 ], [ -95.492037026826424, 29.581860156142806 ], [ -95.4920360266117, 29.581720156069906 ], [ -95.492062026943771, 29.581541156186663 ], [ -95.492247026356395, 29.580994156232553 ], [ -95.49229702718138, 29.580684156193218 ], [ -95.492303026615517, 29.580272155846174 ], [ -95.491768027005065, 29.580306156172913 ], [ -95.490752026270201, 29.580434156448014 ], [ -95.489833026423568, 29.580489155790556 ], [ -95.488896025776683, 29.580509156057502 ], [ -95.486417025621506, 29.580556155880824 ], [ -95.485074024947195, 29.580570156802803 ], [ -95.484700024715281, 29.580579156189934 ], [ -95.482300024628898, 29.580658156638151 ], [ -95.480053023614531, 29.580670156394337 ], [ -95.480234023859111, 29.581368156237605 ], [ -95.480423023891035, 29.581940156892326 ], [ -95.480703024124963, 29.582435157063919 ], [ -95.481022024247196, 29.582961156967606 ], [ -95.481608023654715, 29.583681156948394 ], [ -95.482071023746087, 29.584241157029911 ], [ -95.482740024485693, 29.585018157724416 ], [ -95.483146024387253, 29.585560157401755 ], [ -95.483486025021435, 29.586111158001906 ], [ -95.483718025303375, 29.586623157259108 ], [ -95.483847024334082, 29.587038157365097 ], [ -95.48394002471548, 29.587378157955587 ], [ -95.484029025366951, 29.58822115788756 ], [ -95.484043025435014, 29.588638158261226 ], [ -95.484060025402187, 29.58897715842604 ], [ -95.484061024696643, 29.589007158143378 ], [ -95.484071024691914, 29.589781158422891 ], [ -95.4840650253375, 29.590324158731015 ], [ -95.483951025259913, 29.590940158830119 ], [ -95.483769024881752, 29.591586158297087 ], [ -95.483691025130483, 29.591770159061479 ], [ -95.483611024931221, 29.591956158983127 ], [ -95.48357702479403, 29.592018158445477 ], [ -95.483305024881972, 29.592521158655632 ], [ -95.483151024530912, 29.592775158755515 ], [ -95.48301702462976, 29.593009159411899 ], [ -95.482523024319306, 29.59382415888853 ], [ -95.482106024638114, 29.59463415957724 ], [ -95.482035024994829, 29.594852159597909 ], [ -95.481878024362729, 29.595444159393878 ], [ -95.481796024767817, 29.595903159430417 ], [ -95.481759024907703, 29.596461159735735 ], [ -95.481848025184505, 29.597276159462066 ], [ -95.481999024662372, 29.597884159815731 ], [ -95.482058025024784, 29.598042159787234 ], [ -95.482097024839732, 29.59814616007689 ], [ -95.482231025091792, 29.598506160028972 ], [ -95.482498024590939, 29.599004160225547 ], [ -95.482882025636655, 29.599536160595868 ], [ -95.483233025303889, 29.599969160385051 ], [ -95.483521025404897, 29.600338160744908 ], [ -95.483954025668339, 29.601072161048251 ], [ -95.484284025915599, 29.6018911605995 ], [ -95.484462025254658, 29.602680160660924 ], [ -95.48449202526082, 29.603389161374107 ], [ -95.484508025856911, 29.604051160970375 ], [ -95.484516025511198, 29.604381160997399 ], [ -95.484525025663316, 29.604735161445184 ], [ -95.484497026108045, 29.605448161243888 ], [ -95.484530026009551, 29.606192161182307 ], [ -95.484535025721655, 29.606678161957014 ], [ -95.484551025920794, 29.606831161538736 ], [ -95.484572025817542, 29.606945161519231 ], [ -95.484625025844224, 29.607131161971949 ], [ -95.48468302644153, 29.607347161485368 ], [ -95.4847090260469, 29.607510161800469 ], [ -95.484730025739609, 29.607684161617588 ], [ -95.484725026336648, 29.607894162124857 ], [ -95.484703026219847, 29.608013162321523 ], [ -95.484672025538018, 29.608126162450759 ], [ -95.484642025517545, 29.608188162466391 ], [ -95.484435025624833, 29.608550161745779 ], [ -95.484627026369495, 29.608638162421066 ], [ -95.484666026261579, 29.608659162406813 ], [ -95.48479802603417, 29.608709162509175 ], [ -95.488144027061281, 29.61027516261878 ], [ -95.49266302795786, 29.612374162889012 ], [ -95.492666028466061, 29.612290163061918 ], [ -95.492630027829648, 29.61056916213338 ], [ -95.492626028231939, 29.609661161945088 ], [ -95.492694028094334, 29.60939116242842 ], [ -95.492759028440432, 29.609269162272479 ], [ -95.493760028023488, 29.607749161728211 ], [ -95.494244028050034, 29.607004161196951 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 9, "Tract": "48157670700", "Area_SqMi": 11.340963451867021, "total_2009": 855, "total_2010": 1195, "total_2011": 1414, "total_2012": 2353, "total_2013": 3074, "total_2014": 1860, "total_2015": 2095, "total_2016": 2010, "total_2017": 1657, "total_2018": 1600, "total_2019": 3460, "total_2020": 2617, "age1": 164, "age2": 569, "age3": 183, "earn1": 97, "earn2": 173, "earn3": 646, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 221, "naics_s05": 343, "naics_s06": 76, "naics_s07": 61, "naics_s08": 120, "naics_s09": 0, "naics_s10": 8, "naics_s11": 0, "naics_s12": 7, "naics_s13": 4, "naics_s14": 65, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 3, "naics_s19": 4, "naics_s20": 0, "race1": 714, "race2": 128, "race3": 8, "race4": 47, "race5": 0, "race6": 19, "ethnicity1": 539, "ethnicity2": 377, "edu1": 198, "edu2": 183, "edu3": 218, "edu4": 153, "Shape_Length": 99700.505518647959, "Shape_Area": 316166650.78511572, "total_2021": 979, "total_2022": 916 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.526389035325323, 29.578119154707665 ], [ -95.526369034905173, 29.578064154563549 ], [ -95.526375035559042, 29.577888154086818 ], [ -95.526161035228, 29.577684154772012 ], [ -95.525803035021028, 29.577426154051473 ], [ -95.525677035235702, 29.57722815414612 ], [ -95.525627035389491, 29.577069154095952 ], [ -95.525457034592264, 29.576299154062056 ], [ -95.525394035142568, 29.576057153986291 ], [ -95.525382034678501, 29.575887154344379 ], [ -95.525445035325717, 29.575771153859097 ], [ -95.525621034788813, 29.575529153749017 ], [ -95.525841034747643, 29.575282153652768 ], [ -95.525973034563293, 29.575012153899994 ], [ -95.525986035308264, 29.574732154131468 ], [ -95.525933035299857, 29.574645153628779 ], [ -95.525791035240843, 29.574413154105034 ], [ -95.525125034953959, 29.573814153427005 ], [ -95.524735034376306, 29.573528153678637 ], [ -95.523974034709298, 29.573209153591101 ], [ -95.523634034264305, 29.573099153254397 ], [ -95.523289034240861, 29.573071153583754 ], [ -95.522773034187693, 29.573236153592166 ], [ -95.522622033925586, 29.573247153430469 ], [ -95.522276033742386, 29.573192153273371 ], [ -95.522100034507488, 29.573153153341714 ], [ -95.521974034303952, 29.573060153808196 ], [ -95.521848034410993, 29.572922153178528 ], [ -95.52181003379269, 29.572775153908946 ], [ -95.521798033878511, 29.572730153185841 ], [ -95.521779033723988, 29.572378153491012 ], [ -95.521805034347281, 29.572274153834449 ], [ -95.521943033820932, 29.57201515303209 ], [ -95.522119033975613, 29.571746152913601 ], [ -95.522339034013825, 29.571532152886274 ], [ -95.522641034061095, 29.571400153089208 ], [ -95.52346503430968, 29.571076152998526 ], [ -95.523711034124759, 29.570883153027079 ], [ -95.523956034566396, 29.570581153205094 ], [ -95.52406903438569, 29.570383153155156 ], [ -95.524126034042268, 29.570086152928514 ], [ -95.524189034001083, 29.569580152831662 ], [ -95.524233033998499, 29.569075152807606 ], [ -95.524309034741123, 29.568701152626929 ], [ -95.524397034846814, 29.568437152621641 ], [ -95.524636034341867, 29.567920152068627 ], [ -95.524711034534818, 29.56772015211012 ], [ -95.524774034665342, 29.567557152309831 ], [ -95.524825034912709, 29.567348152732947 ], [ -95.524806034431833, 29.56706315245026 ], [ -95.524775034375324, 29.566815152362221 ], [ -95.524693033900675, 29.566584152155659 ], [ -95.524574034464337, 29.566194152017804 ], [ -95.524379033887243, 29.565468151896908 ], [ -95.524253034538077, 29.564946151844751 ], [ -95.524134034484661, 29.564632151749823 ], [ -95.523983034166278, 29.564352152178582 ], [ -95.523770034491989, 29.563989152071557 ], [ -95.523575033545939, 29.563582151864715 ], [ -95.523355033955355, 29.562554151506042 ], [ -95.523322034110763, 29.56243615164697 ], [ -95.523210033532692, 29.562043151504053 ], [ -95.523109033603262, 29.561768151501109 ], [ -95.523028033744851, 29.561548151459476 ], [ -95.522833034166865, 29.561179151527998 ], [ -95.522689033883793, 29.561042150694711 ], [ -95.522362033052531, 29.560872150722478 ], [ -95.521966033345365, 29.56069015067629 ], [ -95.521532032810413, 29.56057415126801 ], [ -95.521104033465306, 29.560552151451756 ], [ -95.520494032537385, 29.560679151502317 ], [ -95.520472033520605, 29.560688151090719 ], [ -95.520073033309586, 29.560849151037242 ], [ -95.519564033116225, 29.561162151092276 ], [ -95.519255032645901, 29.56143715109145 ], [ -95.518884032473409, 29.56182215155512 ], [ -95.518632033054701, 29.562113151670463 ], [ -95.518211033027342, 29.562520151306423 ], [ -95.5176890322291, 29.562987151926826 ], [ -95.517098032494459, 29.563470151702113 ], [ -95.516733031845845, 29.563707151814633 ], [ -95.516242032140269, 29.563965151677461 ], [ -95.515946032441533, 29.564053152327656 ], [ -95.515525031989654, 29.564157152289347 ], [ -95.514500031851171, 29.5643271523405 ], [ -95.513884031549907, 29.564410152450829 ], [ -95.510733030565916, 29.564700152143125 ], [ -95.509538030790864, 29.564793152422958 ], [ -95.509186029872851, 29.564804152331121 ], [ -95.509035030218143, 29.564809152731183 ], [ -95.508280030308796, 29.564803152364775 ], [ -95.507739030362771, 29.564814152293071 ], [ -95.50746302938704, 29.564831152780144 ], [ -95.507249029626877, 29.564864152557941 ], [ -95.506897029955354, 29.564968152157959 ], [ -95.506867030057009, 29.56497315203573 ], [ -95.506500029844787, 29.565028152268944 ], [ -95.506155029884027, 29.565061152075472 ], [ -95.505589029064311, 29.565055152618942 ], [ -95.505438029892574, 29.565059152428212 ], [ -95.505368029607297, 29.565061152444482 ], [ -95.50528702897185, 29.565069152127595 ], [ -95.504865029759443, 29.565110152623429 ], [ -95.504675029080715, 29.565099152491932 ], [ -95.504582028840929, 29.565093152612459 ], [ -95.504463029160007, 29.565071152839902 ], [ -95.504337029287541, 29.564989152154148 ], [ -95.504048029461998, 29.564670152738689 ], [ -95.503746028729182, 29.564312152796081 ], [ -95.503313028380632, 29.56386715239146 ], [ -95.50294802832309, 29.563476152253951 ], [ -95.501804028800237, 29.562415151663046 ], [ -95.501371028079362, 29.562057151895917 ], [ -95.501310028186467, 29.562005152168279 ], [ -95.500817028383892, 29.561579151608335 ], [ -95.500415028228218, 29.561221151752424 ], [ -95.50007602821843, 29.560891152275413 ], [ -95.5000070277313, 29.560864151685173 ], [ -95.49985102807959, 29.560793152127779 ], [ -95.499650027409146, 29.560727151544963 ], [ -95.499524027177515, 29.560711151837435 ], [ -95.499405027625102, 29.5607111520412 ], [ -95.499109027482064, 29.560766151511917 ], [ -95.498003027787504, 29.561118151798841 ], [ -95.497720027620304, 29.56122315239157 ], [ -95.497494027124844, 29.56138815166106 ], [ -95.497142027584857, 29.561707152448896 ], [ -95.496771026885952, 29.562004151820695 ], [ -95.496570026837844, 29.562131152578665 ], [ -95.496280026871474, 29.562257151867705 ], [ -95.495847027166292, 29.562401151937028 ], [ -95.495626026607482, 29.562434151864299 ], [ -95.495300026693457, 29.562450151843546 ], [ -95.494734026784712, 29.562445152292952 ], [ -95.494476026545229, 29.562473152759356 ], [ -95.494124026898845, 29.56252815204839 ], [ -95.493797025931187, 29.562539151968476 ], [ -95.492860025566785, 29.562402152377675 ], [ -95.492595025943558, 29.562402152221583 ], [ -95.492463025691578, 29.562441152348654 ], [ -95.49226802561148, 29.562584152553722 ], [ -95.491967025588337, 29.562864152326256 ], [ -95.491778026264953, 29.563002152228421 ], [ -95.491627025548439, 29.563057152340892 ], [ -95.491370025872868, 29.563095152279001 ], [ -95.491231025317376, 29.563079152168388 ], [ -95.490885025369295, 29.562991152144111 ], [ -95.489860024959313, 29.562651152426064 ], [ -95.489162024805154, 29.562470152827657 ], [ -95.488137024448335, 29.562058152390005 ], [ -95.4878600244258, 29.561893152054701 ], [ -95.487464024207497, 29.561618152326005 ], [ -95.48701102453029, 29.561217152279472 ], [ -95.486702023966657, 29.561052151881668 ], [ -95.485903024723129, 29.560750152084328 ], [ -95.485570024001575, 29.560574151874963 ], [ -95.485149023623933, 29.560289152343739 ], [ -95.484916023889312, 29.560162152354707 ], [ -95.483941023910788, 29.559712152433825 ], [ -95.4834630235557, 29.559349152405463 ], [ -95.483035023158578, 29.558975152006894 ], [ -95.482601023156434, 29.558503152060329 ], [ -95.482179022660702, 29.557931151670264 ], [ -95.4815690225644, 29.557338151884345 ], [ -95.480462022580653, 29.556403151156783 ], [ -95.480116022756064, 29.556195151685497 ], [ -95.479852022382275, 29.556079151538675 ], [ -95.478644022248275, 29.555469151280871 ], [ -95.478179021933116, 29.555277151611019 ], [ -95.477933021923832, 29.555195151014644 ], [ -95.477669022193197, 29.555162151210787 ], [ -95.477506022241286, 29.55517315181142 ], [ -95.477229021860509, 29.555233151046906 ], [ -95.476865021308484, 29.555349151322357 ], [ -95.475488020837702, 29.556322151690477 ], [ -95.474897021000203, 29.55676315203349 ], [ -95.474363020801732, 29.557093151613142 ], [ -95.473816020625748, 29.557274151735673 ], [ -95.473382020980694, 29.557384151814126 ], [ -95.472438020195497, 29.557522152191854 ], [ -95.472067021015803, 29.557528152126618 ], [ -95.471803020143255, 29.557506151830001 ], [ -95.471602020180853, 29.557467152060834 ], [ -95.470816019707129, 29.557209151769513 ], [ -95.469376019619375, 29.556770151585802 ], [ -95.46893602005477, 29.556533152298698 ], [ -95.468256019859638, 29.556138152299138 ], [ -95.46787301975067, 29.555962151891848 ], [ -95.467483019242067, 29.555819151892109 ], [ -95.466904018917987, 29.555654151505223 ], [ -95.46639501869808, 29.555489151421252 ], [ -95.465797018570257, 29.555330151555289 ], [ -95.46504301871424, 29.555143151730771 ], [ -95.464615018978776, 29.554995151451148 ], [ -95.464288018091295, 29.55485815213353 ], [ -95.464099018572142, 29.554726151563585 ], [ -95.463955018078451, 29.554605151989289 ], [ -95.463898018175882, 29.554533151798395 ], [ -95.463873018361767, 29.55447815144376 ], [ -95.463841018216669, 29.554313151855155 ], [ -95.463878018205975, 29.553719151574771 ], [ -95.463904017779797, 29.553302151492616 ], [ -95.463860018088596, 29.553038151480109 ], [ -95.463747018242088, 29.552796151427422 ], [ -95.463671017634113, 29.552527151740744 ], [ -95.46361401838945, 29.552169150888748 ], [ -95.463570017911294, 29.552076151041433 ], [ -95.463514017670306, 29.551653151160558 ], [ -95.463387018000674, 29.549750150526059 ], [ -95.463255017560996, 29.549025150390218 ], [ -95.463186017877135, 29.548480150397967 ], [ -95.463198017881254, 29.548348150333624 ], [ -95.463148017877714, 29.547155149790605 ], [ -95.463093017908733, 29.546645149778158 ], [ -95.462952017568156, 29.545336150258027 ], [ -95.462832017227626, 29.544472150056801 ], [ -95.462738017330352, 29.54387914967003 ], [ -95.462769017157612, 29.543488149622217 ], [ -95.462838017756098, 29.543070149704093 ], [ -95.462867017257722, 29.542984149127633 ], [ -95.463096017396197, 29.542312149213707 ], [ -95.463360017174807, 29.541454148597879 ], [ -95.463435017570575, 29.541272149131839 ], [ -95.463490017541417, 29.541114148583539 ], [ -95.463529017662339, 29.541003148703236 ], [ -95.463542017203508, 29.540866148673633 ], [ -95.46352301712335, 29.540745149206838 ], [ -95.463485017345633, 29.540646148615391 ], [ -95.463378017433001, 29.540541148817589 ], [ -95.463290017049047, 29.540503148412554 ], [ -95.463190017471348, 29.540486148541479 ], [ -95.46314901736848, 29.540492149204042 ], [ -95.463032017921009, 29.540508148816372 ], [ -95.462800017117232, 29.540591148616535 ], [ -95.462536017546185, 29.540701148603063 ], [ -95.462347017017748, 29.540739148652303 ], [ -95.461687016955324, 29.540817149258753 ], [ -95.460893016698961, 29.540845148898313 ], [ -95.460738017042772, 29.540850148733412 ], [ -95.460159016399359, 29.540855149332423 ], [ -95.459700017088608, 29.540888149074124 ], [ -95.458734016226344, 29.541015149351551 ], [ -95.458569016691072, 29.541037149464543 ], [ -95.45758801586453, 29.541087148786072 ], [ -95.457167016331283, 29.541098149618971 ], [ -95.457016015991869, 29.541070149313324 ], [ -95.456890016372526, 29.54102614941408 ], [ -95.456802015645877, 29.540955149382484 ], [ -95.456645016270201, 29.540806149523409 ], [ -95.456387015563863, 29.540367149291058 ], [ -95.456116015372316, 29.539762148503698 ], [ -95.456057015216459, 29.539588149084437 ], [ -95.456042015601867, 29.539542149138413 ], [ -95.456022015705798, 29.539482148541374 ], [ -95.455770015449829, 29.538332148863695 ], [ -95.455487015176573, 29.536815148759615 ], [ -95.455393015069077, 29.536188148099452 ], [ -95.455366015412835, 29.536087148156966 ], [ -95.455340015547819, 29.535992147852681 ], [ -95.455292015279639, 29.53581514827237 ], [ -95.454984014832277, 29.535149148245544 ], [ -95.45465701455899, 29.534237147918315 ], [ -95.454273014468257, 29.533242147404248 ], [ -95.453975015150604, 29.532404147876402 ], [ -95.453449014568037, 29.530927147571742 ], [ -95.453354014981301, 29.530724147263552 ], [ -95.453122014256792, 29.530432146769265 ], [ -95.452965014644803, 29.530273147012583 ], [ -95.452807013986558, 29.530180147418836 ], [ -95.452714014102327, 29.530135147376892 ], [ -95.452575014507417, 29.53007014694284 ], [ -95.452533014672397, 29.530053146789335 ], [ -95.452291014518963, 29.52995814685703 ], [ -95.452195014349172, 29.529931146958873 ], [ -95.452032014247933, 29.529886147398585 ], [ -95.452022014166175, 29.529883146828912 ], [ -95.451952014518085, 29.529883146822169 ], [ -95.451632014209821, 29.530174147248768 ], [ -95.451449014100675, 29.530246147431075 ], [ -95.451324014412435, 29.53025714714029 ], [ -95.449890013935317, 29.530174147431534 ], [ -95.448941013566014, 29.530092147195411 ], [ -95.448815013368659, 29.53011414715915 ], [ -95.448658013682987, 29.530158147361544 ], [ -95.448551013486963, 29.530224147439583 ], [ -95.448268013563734, 29.530482147218212 ], [ -95.447734013365405, 29.530911147378923 ], [ -95.447319013171764, 29.53128514787506 ], [ -95.446662012427453, 29.531816147973533 ], [ -95.445739012865857, 29.53256214826326 ], [ -95.445715013031474, 29.532579148046477 ], [ -95.445688012761181, 29.532603147924203 ], [ -95.445597012976279, 29.532676148173877 ], [ -95.445245012874324, 29.532995147794313 ], [ -95.444591012641041, 29.533562148017062 ], [ -95.444396012105827, 29.53366114796281 ], [ -95.443019011630497, 29.533925148619108 ], [ -95.442961012182337, 29.533929148070495 ], [ -95.442636012294841, 29.533952148456905 ], [ -95.441536012175789, 29.533919148271028 ], [ -95.4413640114647, 29.533908148262544 ], [ -95.441020011153455, 29.533886148511208 ], [ -95.440297011725988, 29.533820148158046 ], [ -95.439851010788274, 29.53373814863966 ], [ -95.439599011466754, 29.533639148459471 ], [ -95.438486010485079, 29.533133148115272 ], [ -95.437921010367575, 29.532946148126616 ], [ -95.437612010869515, 29.532864147874967 ], [ -95.43735501034709, 29.53281414769026 ], [ -95.437248010464359, 29.532832147772339 ], [ -95.436848010572348, 29.534307148137142 ], [ -95.436440010626399, 29.535800148609525 ], [ -95.436284010117021, 29.53637614883775 ], [ -95.435312010628309, 29.539930150078078 ], [ -95.434814010026642, 29.541778150477814 ], [ -95.434293010589045, 29.543669150267359 ], [ -95.434170010048263, 29.544120150823794 ], [ -95.434151009812553, 29.544191150539859 ], [ -95.434000010650763, 29.544751150805524 ], [ -95.433974009786908, 29.544841150660414 ], [ -95.433958010520215, 29.54489415111895 ], [ -95.43394401062784, 29.544955150459824 ], [ -95.433875010513049, 29.545200150603375 ], [ -95.433782010440339, 29.545539150489141 ], [ -95.433192010338175, 29.547292151038427 ], [ -95.433115010347251, 29.547583151034711 ], [ -95.432560009637271, 29.54970315191683 ], [ -95.43247301010382, 29.550034152290021 ], [ -95.432344010181453, 29.550527152348376 ], [ -95.432192010363281, 29.551105152320922 ], [ -95.432189010499968, 29.551117152190969 ], [ -95.431980009837588, 29.551919152159591 ], [ -95.431955009861568, 29.552014152154744 ], [ -95.431943009771871, 29.552060152115462 ], [ -95.43171700982667, 29.552923152813182 ], [ -95.431398009607165, 29.554140153024427 ], [ -95.431193009698688, 29.554926153299586 ], [ -95.431175009661231, 29.554990152628022 ], [ -95.431132009776547, 29.555158152577086 ], [ -95.431105009844146, 29.555261152884043 ], [ -95.430790009990602, 29.55647115304566 ], [ -95.430140010342043, 29.558853154028238 ], [ -95.42821100969077, 29.565940155273822 ], [ -95.427141009126331, 29.569871155913333 ], [ -95.426774009142449, 29.571215156791023 ], [ -95.425674009005263, 29.575258156914312 ], [ -95.425356009340334, 29.576419157720071 ], [ -95.425235008977921, 29.576859157912224 ], [ -95.424881009303149, 29.578159158116538 ], [ -95.424569009535645, 29.579307158568994 ], [ -95.424293009022662, 29.580317157953463 ], [ -95.426924010025488, 29.581539158672594 ], [ -95.427069009944574, 29.581606158301376 ], [ -95.430722010653994, 29.5833651590229 ], [ -95.43076901105205, 29.583388159056025 ], [ -95.430800010698249, 29.583403158521435 ], [ -95.430898011585271, 29.583450158913909 ], [ -95.430912010734872, 29.583457159119103 ], [ -95.431034011568684, 29.583514158911434 ], [ -95.431058010791702, 29.583439159051395 ], [ -95.431264011128349, 29.582697158339393 ], [ -95.431541011665118, 29.581699158514301 ], [ -95.432002011631539, 29.581649158203319 ], [ -95.432296011378284, 29.581617158280594 ], [ -95.432525011630474, 29.581618157902309 ], [ -95.43402201167379, 29.581624157975831 ], [ -95.435482011865375, 29.581577158431024 ], [ -95.435851012188508, 29.581573157776049 ], [ -95.436972012709276, 29.581550157747976 ], [ -95.438256013029914, 29.581533157968288 ], [ -95.43953601347566, 29.581511157653498 ], [ -95.440427013136286, 29.581472157772986 ], [ -95.441206013500889, 29.581438158213402 ], [ -95.44206301434933, 29.581427157850214 ], [ -95.446227015071997, 29.581332158245225 ], [ -95.44678201461636, 29.581320157997897 ], [ -95.447424015100509, 29.581307157873823 ], [ -95.448496015559712, 29.58128415734906 ], [ -95.451769016540283, 29.581216157824432 ], [ -95.454082016784085, 29.581173157126742 ], [ -95.457686017814879, 29.58109815752103 ], [ -95.458153017758448, 29.581082157495572 ], [ -95.459336018352019, 29.581051157370823 ], [ -95.461414018984144, 29.581022157566014 ], [ -95.462307019531877, 29.580978157343399 ], [ -95.463325019236621, 29.580966157246127 ], [ -95.465421020252137, 29.580941156698263 ], [ -95.46553901940807, 29.580940156785818 ], [ -95.467661020732336, 29.580915157385775 ], [ -95.471100021394761, 29.580830156896702 ], [ -95.472847021625043, 29.580811156831121 ], [ -95.474435021810208, 29.580730156982817 ], [ -95.478315022836398, 29.580698156756153 ], [ -95.480053023614531, 29.580670156394337 ], [ -95.482300024628898, 29.580658156638151 ], [ -95.484700024715281, 29.580579156189934 ], [ -95.485074024947195, 29.580570156802803 ], [ -95.486417025621506, 29.580556155880824 ], [ -95.488896025776683, 29.580509156057502 ], [ -95.489833026423568, 29.580489155790556 ], [ -95.490752026270201, 29.580434156448014 ], [ -95.491768027005065, 29.580306156172913 ], [ -95.492303026615517, 29.580272155846174 ], [ -95.492896026832852, 29.580231155608907 ], [ -95.493612026535061, 29.5802181557446 ], [ -95.49474402694706, 29.58021015555606 ], [ -95.495492028003213, 29.580251155621372 ], [ -95.496019027235761, 29.580292155521015 ], [ -95.49668802760101, 29.580329155677816 ], [ -95.498946027894092, 29.580320156175905 ], [ -95.500341028502916, 29.580292155769481 ], [ -95.500454028942812, 29.580287156122413 ], [ -95.503130028979299, 29.580291155691125 ], [ -95.503846029941812, 29.580326155979847 ], [ -95.504738029506413, 29.580335155456289 ], [ -95.505501029700667, 29.580301155878207 ], [ -95.506057030405955, 29.580300155594372 ], [ -95.506613030077034, 29.580318155193794 ], [ -95.508881030632253, 29.580230155054583 ], [ -95.509194030508439, 29.580204155215785 ], [ -95.511790032066685, 29.580119155814913 ], [ -95.512340032303456, 29.580110155805457 ], [ -95.513106032314738, 29.580093155137945 ], [ -95.51318003184933, 29.580092155035221 ], [ -95.51453603195165, 29.580073155128463 ], [ -95.518210033093936, 29.580008155398726 ], [ -95.518380033155026, 29.580005155150829 ], [ -95.519518033303711, 29.579994155318207 ], [ -95.520101033729588, 29.579985155288579 ], [ -95.520221034005871, 29.579983155484438 ], [ -95.520285033762647, 29.579982154883556 ], [ -95.521158034554077, 29.579957155412092 ], [ -95.521273034344091, 29.579951154853575 ], [ -95.521296034288824, 29.579950155303443 ], [ -95.521236033797365, 29.579328154808099 ], [ -95.521215034506838, 29.578425154735591 ], [ -95.521203033970053, 29.578241155086221 ], [ -95.521187033919034, 29.578136154401975 ], [ -95.521157033816536, 29.57805315419624 ], [ -95.521094033749264, 29.577940154683606 ], [ -95.521039034456834, 29.57787015443223 ], [ -95.520965034033722, 29.577796154843732 ], [ -95.520637033597353, 29.577539154085482 ], [ -95.52055503341613, 29.577457154278541 ], [ -95.520493033692375, 29.577367154390124 ], [ -95.52043703386741, 29.577245154639751 ], [ -95.520411033411989, 29.577139154365316 ], [ -95.520407033620103, 29.577028154235251 ], [ -95.520413033442665, 29.576964154648909 ], [ -95.520437033475957, 29.576866154771995 ], [ -95.520497033986658, 29.576738154121998 ], [ -95.520647033475569, 29.576558154655604 ], [ -95.520771033725069, 29.576478154738741 ], [ -95.52087203382176, 29.576435154568568 ], [ -95.52098503361357, 29.576402153934644 ], [ -95.521123034304168, 29.57638315401492 ], [ -95.521269033670336, 29.576386154319273 ], [ -95.521801033643172, 29.576480154559089 ], [ -95.521919033841158, 29.576483154488127 ], [ -95.522045034223027, 29.576469154693758 ], [ -95.522146034553529, 29.5764431545185 ], [ -95.522237034268713, 29.576409153818123 ], [ -95.522514034295654, 29.576243153886594 ], [ -95.522570034168751, 29.57621015393595 ], [ -95.522710033902797, 29.576413154392718 ], [ -95.522993034659052, 29.577257154365498 ], [ -95.523137034512786, 29.577773154218342 ], [ -95.523264035004118, 29.57797315495236 ], [ -95.523485035020698, 29.578128154360741 ], [ -95.523671034216775, 29.578165154512309 ], [ -95.52419903470286, 29.578156154399839 ], [ -95.524966035238336, 29.578142154260242 ], [ -95.526174035289898, 29.578121154291612 ], [ -95.526283035515945, 29.578123154718032 ], [ -95.526389035325323, 29.578119154707665 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 10, "Tract": "48201455102", "Area_SqMi": 0.6129120528087274, "total_2009": 156, "total_2010": 229, "total_2011": 264, "total_2012": 356, "total_2013": 374, "total_2014": 368, "total_2015": 410, "total_2016": 513, "total_2017": 477, "total_2018": 629, "total_2019": 603, "total_2020": 547, "age1": 205, "age2": 375, "age3": 136, "earn1": 184, "earn2": 228, "earn3": 304, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 41, "naics_s05": 1, "naics_s06": 4, "naics_s07": 32, "naics_s08": 0, "naics_s09": 10, "naics_s10": 29, "naics_s11": 3, "naics_s12": 40, "naics_s13": 0, "naics_s14": 65, "naics_s15": 78, "naics_s16": 116, "naics_s17": 3, "naics_s18": 205, "naics_s19": 88, "naics_s20": 1, "race1": 547, "race2": 89, "race3": 3, "race4": 63, "race5": 1, "race6": 13, "ethnicity1": 507, "ethnicity2": 209, "edu1": 103, "edu2": 117, "edu3": 153, "edu4": 138, "Shape_Length": 22289.246758597419, "Shape_Area": 17086939.022844981, "total_2021": 668, "total_2022": 716 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.777350108365241, 29.772157186029851 ], [ -95.777342107981781, 29.77200118547076 ], [ -95.77732510809264, 29.771854185558887 ], [ -95.777281107527031, 29.771452185406016 ], [ -95.777169107901287, 29.770850185496382 ], [ -95.77705710748522, 29.770348184885268 ], [ -95.776927107563083, 29.769751185121851 ], [ -95.776771107390758, 29.769275184977765 ], [ -95.776667107920758, 29.76876518531563 ], [ -95.776520107337589, 29.76809018443296 ], [ -95.776440107171041, 29.767276184850491 ], [ -95.776429107369495, 29.767153184805334 ], [ -95.776379107889042, 29.76550818454977 ], [ -95.776399107306915, 29.764066183656031 ], [ -95.776399106910375, 29.763582183945591 ], [ -95.776387106894987, 29.760755183133991 ], [ -95.776093106967153, 29.760592183405102 ], [ -95.776038106904664, 29.760560183490099 ], [ -95.775845107567719, 29.760453183589181 ], [ -95.774467106551214, 29.759662182746542 ], [ -95.774192106130869, 29.759520183100435 ], [ -95.773101106531101, 29.758905183487879 ], [ -95.77297210611259, 29.758833183381221 ], [ -95.772479106340839, 29.758556182987174 ], [ -95.772261105778625, 29.75843418303602 ], [ -95.772037106400433, 29.758308183306355 ], [ -95.771817105444612, 29.758162182750908 ], [ -95.77167610616273, 29.758104182763461 ], [ -95.771518105998467, 29.757984183031276 ], [ -95.771225105455642, 29.757777182967523 ], [ -95.771023105451391, 29.757618182625944 ], [ -95.770883106108712, 29.757509183217262 ], [ -95.770836105545726, 29.757475183277883 ], [ -95.770672105624115, 29.757355183211416 ], [ -95.770372105784588, 29.757406182780972 ], [ -95.769821105527143, 29.75747218306633 ], [ -95.768626105313587, 29.7576311831745 ], [ -95.767828104939881, 29.757737183416381 ], [ -95.767347104273213, 29.757805183335527 ], [ -95.76673110460186, 29.757885183228435 ], [ -95.766627104601241, 29.757899182841985 ], [ -95.766639104787743, 29.757990183214819 ], [ -95.766734104855232, 29.758533183246559 ], [ -95.766840104675921, 29.759028183203032 ], [ -95.766890104354971, 29.759235183408908 ], [ -95.766997104283362, 29.759613183655606 ], [ -95.767128104393294, 29.760008183345828 ], [ -95.767242104946405, 29.760301183243474 ], [ -95.767290104930652, 29.760395183827011 ], [ -95.767329104914154, 29.760488183840089 ], [ -95.767462104824617, 29.760766183390142 ], [ -95.767684105049355, 29.761190183957783 ], [ -95.767727105521857, 29.761263183552902 ], [ -95.76802210508842, 29.761808183508158 ], [ -95.768064104665243, 29.76188118410273 ], [ -95.768240105432454, 29.762216183968025 ], [ -95.769251105263521, 29.764061184439399 ], [ -95.769337105338536, 29.764219183896575 ], [ -95.770089105639883, 29.765603184320806 ], [ -95.770297105890037, 29.765980184362807 ], [ -95.770733105812042, 29.766781184740172 ], [ -95.770986105691748, 29.767244184665611 ], [ -95.770856106202018, 29.767297185186649 ], [ -95.770383106336624, 29.76749418514493 ], [ -95.769340105917024, 29.765587184269691 ], [ -95.769254105359948, 29.765454184407218 ], [ -95.769162105948325, 29.765334184953812 ], [ -95.769067105700898, 29.765227184168378 ], [ -95.768934105113743, 29.765101184919946 ], [ -95.768741105881674, 29.764948184248755 ], [ -95.768667105512648, 29.764896184268942 ], [ -95.768523105038739, 29.764807184862164 ], [ -95.76845210512468, 29.764774184108134 ], [ -95.768400104890773, 29.764744184039944 ], [ -95.768336105580744, 29.764714184319168 ], [ -95.768244105031769, 29.764677184051653 ], [ -95.768128104919896, 29.764631184808252 ], [ -95.767920105094632, 29.764568184247302 ], [ -95.767794105650879, 29.764543184747517 ], [ -95.767734105663109, 29.764531184674475 ], [ -95.767688105578429, 29.764522184849085 ], [ -95.767575105661464, 29.764505184116949 ], [ -95.767457105218128, 29.764494184836302 ], [ -95.767205105139894, 29.764486184349519 ], [ -95.766430105135072, 29.764486184096359 ], [ -95.765830105077995, 29.764481184890354 ], [ -95.765476104707759, 29.764486184185611 ], [ -95.76536110494861, 29.764482184554343 ], [ -95.765251105054134, 29.764487184150504 ], [ -95.764475104675242, 29.764491184767081 ], [ -95.764272104200487, 29.764503184116698 ], [ -95.764175103963737, 29.764509184476751 ], [ -95.763938103763053, 29.764539184676735 ], [ -95.763730104063498, 29.764574184684047 ], [ -95.763494103872375, 29.764628184289013 ], [ -95.763264104442371, 29.764694184661121 ], [ -95.763051104222356, 29.764762184690031 ], [ -95.763092103974316, 29.764880184994968 ], [ -95.763382104245238, 29.765534184806175 ], [ -95.763437103674349, 29.76562818511983 ], [ -95.763470104493621, 29.765716184505937 ], [ -95.763724104381751, 29.766271184923372 ], [ -95.7638791041811, 29.766591185034663 ], [ -95.763984104027188, 29.766784184720546 ], [ -95.764101103950253, 29.766972184967877 ], [ -95.764265104844867, 29.767208185256969 ], [ -95.764457104560393, 29.767455184955864 ], [ -95.764608104596959, 29.767628185218658 ], [ -95.764716104868583, 29.767742184753175 ], [ -95.764877105000735, 29.767902185317045 ], [ -95.765232105206366, 29.768222185369307 ], [ -95.765833105214583, 29.768763184980308 ], [ -95.765895105141567, 29.768806185187216 ], [ -95.765959105195122, 29.76886418568089 ], [ -95.76601610519235, 29.768932185625573 ], [ -95.76647310504589, 29.769342185058964 ], [ -95.76710510538544, 29.76991218513281 ], [ -95.767731105551633, 29.770478185969164 ], [ -95.768357105627146, 29.771042185323786 ], [ -95.76826110571217, 29.771132185627703 ], [ -95.7681561055972, 29.771253186136516 ], [ -95.768041105674072, 29.771410185544305 ], [ -95.767965105239554, 29.771532185806091 ], [ -95.767898105166012, 29.771667186231621 ], [ -95.767841105665667, 29.771809186277228 ], [ -95.767797105096477, 29.771953185804016 ], [ -95.767767105334187, 29.772100185570391 ], [ -95.767751105643782, 29.772248186366301 ], [ -95.7677461057594, 29.772728186024253 ], [ -95.767749105659831, 29.773220186012839 ], [ -95.768328105647967, 29.773218185819353 ], [ -95.768510105755638, 29.773223186219671 ], [ -95.769008106093949, 29.773257185920006 ], [ -95.768995105796975, 29.773631186582254 ], [ -95.76895310610189, 29.77381218595605 ], [ -95.768872106149786, 29.774160186755548 ], [ -95.768844105760806, 29.774555185969557 ], [ -95.768836106227425, 29.774893186110681 ], [ -95.768836105950129, 29.775144186973392 ], [ -95.769136105515315, 29.775141186804557 ], [ -95.769216105841181, 29.775146186766893 ], [ -95.769287105783334, 29.775137186542381 ], [ -95.769562106427813, 29.775119186782138 ], [ -95.769879106028398, 29.775087186201901 ], [ -95.770219105824978, 29.775038186829281 ], [ -95.770577105886389, 29.774973186302709 ], [ -95.77068910688044, 29.774937186336789 ], [ -95.770927106519451, 29.774872186164885 ], [ -95.771056106122117, 29.774847186227284 ], [ -95.771173106996116, 29.774811186279582 ], [ -95.771278107048602, 29.774764186303038 ], [ -95.771622106998024, 29.774637186548755 ], [ -95.771966106710039, 29.774492185931443 ], [ -95.772186106703117, 29.774386186643799 ], [ -95.772396107057801, 29.774273185924649 ], [ -95.772706106867105, 29.774090185905909 ], [ -95.772909107012183, 29.773958186382853 ], [ -95.773207106879113, 29.773742186186464 ], [ -95.773635107225076, 29.773419185857932 ], [ -95.773686106632894, 29.773381186002574 ], [ -95.773966106800131, 29.773191186279039 ], [ -95.774016107624377, 29.773160186077945 ], [ -95.77403910731033, 29.773146185722844 ], [ -95.774063106963354, 29.77313118591697 ], [ -95.774104107504272, 29.773106185958682 ], [ -95.774166107229988, 29.773068186248722 ], [ -95.774238106976881, 29.773025185967409 ], [ -95.774310106968656, 29.772985185802696 ], [ -95.774484107440529, 29.772889185444019 ], [ -95.774706107671776, 29.772777185735958 ], [ -95.774885107755452, 29.772693185738412 ], [ -95.775082107365648, 29.772612185540737 ], [ -95.775297107146145, 29.772540185376332 ], [ -95.775647107571103, 29.772443185987257 ], [ -95.776013107781779, 29.772350185386998 ], [ -95.776428107905659, 29.772260185590689 ], [ -95.776709108165008, 29.772212186039578 ], [ -95.777056107641798, 29.77218218543894 ], [ -95.777350108365241, 29.772157186029851 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 11, "Tract": "48201511302", "Area_SqMi": 0.61321958175790903, "total_2009": 513, "total_2010": 454, "total_2011": 610, "total_2012": 687, "total_2013": 706, "total_2014": 817, "total_2015": 895, "total_2016": 788, "total_2017": 1050, "total_2018": 877, "total_2019": 1001, "total_2020": 955, "age1": 288, "age2": 843, "age3": 277, "earn1": 187, "earn2": 365, "earn3": 856, "naics_s01": 2, "naics_s02": 3, "naics_s03": 0, "naics_s04": 87, "naics_s05": 66, "naics_s06": 331, "naics_s07": 163, "naics_s08": 4, "naics_s09": 16, "naics_s10": 35, "naics_s11": 42, "naics_s12": 201, "naics_s13": 0, "naics_s14": 38, "naics_s15": 1, "naics_s16": 176, "naics_s17": 15, "naics_s18": 152, "naics_s19": 76, "naics_s20": 0, "race1": 1100, "race2": 174, "race3": 8, "race4": 100, "race5": 2, "race6": 24, "ethnicity1": 943, "ethnicity2": 465, "edu1": 211, "edu2": 245, "edu3": 347, "edu4": 317, "Shape_Length": 16729.339701931989, "Shape_Area": 17095512.403607108, "total_2021": 1083, "total_2022": 1408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399223013101789, 29.803964205196763 ], [ -95.399212013000778, 29.803459204794844 ], [ -95.399201012363562, 29.802934205220705 ], [ -95.399193012881454, 29.801914205049993 ], [ -95.399173012658935, 29.800907204406712 ], [ -95.399171012147079, 29.7998872040889 ], [ -95.399124012645487, 29.798041203977604 ], [ -95.399082012626295, 29.796218203049261 ], [ -95.399049011897887, 29.794358203099559 ], [ -95.399043012362043, 29.793769203072472 ], [ -95.399020011841372, 29.792525202269577 ], [ -95.398978012530321, 29.790687202537427 ], [ -95.397702012086526, 29.790693202751978 ], [ -95.396408011624843, 29.790721202798405 ], [ -95.395310010857415, 29.790740202382572 ], [ -95.394211011403215, 29.79074920263767 ], [ -95.393102010910582, 29.790762202438174 ], [ -95.392017009833197, 29.790782202793711 ], [ -95.389962010091239, 29.790803202932814 ], [ -95.388417009232541, 29.790822202725149 ], [ -95.387834009502711, 29.790833203159181 ], [ -95.387855009120983, 29.791552202423816 ], [ -95.387859009809446, 29.791750202711626 ], [ -95.387865009447225, 29.792231202782126 ], [ -95.387875008933946, 29.792668203294753 ], [ -95.387879009292917, 29.792925202764074 ], [ -95.387886009703934, 29.793468203125606 ], [ -95.387892009055406, 29.793595202974966 ], [ -95.387900008983877, 29.794302203477912 ], [ -95.387904009931688, 29.794535203089481 ], [ -95.387915009411159, 29.794990203874239 ], [ -95.387921009108894, 29.795455203952017 ], [ -95.387924009657326, 29.795678204013463 ], [ -95.387930009291807, 29.796377204120681 ], [ -95.387943009823843, 29.797069204006938 ], [ -95.387960009746479, 29.79782620410591 ], [ -95.387978009546615, 29.798482204321594 ], [ -95.38798300962344, 29.79912520435056 ], [ -95.387985009485945, 29.799247204733522 ], [ -95.38799900922416, 29.799812204342842 ], [ -95.388002009495438, 29.800002204955501 ], [ -95.38800600929676, 29.800498204371465 ], [ -95.388008009280057, 29.800708205125552 ], [ -95.388007009758141, 29.801184205077735 ], [ -95.388030009788196, 29.801869205236546 ], [ -95.388044009651537, 29.802144205104153 ], [ -95.388055009664541, 29.802563205305834 ], [ -95.388054010080879, 29.803102205523725 ], [ -95.388042010161826, 29.804081205205101 ], [ -95.3888530098384, 29.804127205539039 ], [ -95.390248010441724, 29.804086205332045 ], [ -95.39051201078955, 29.804086205545328 ], [ -95.391071010250784, 29.804082205250971 ], [ -95.392270010557979, 29.804067204906996 ], [ -95.393369011136329, 29.804048205474665 ], [ -95.394473011559768, 29.804032205557064 ], [ -95.395559011982471, 29.804028205243366 ], [ -95.396676012312028, 29.804008204930305 ], [ -95.397958012150397, 29.803985204659512 ], [ -95.399223013101789, 29.803964205196763 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 12, "Tract": "48201520601", "Area_SqMi": 0.75847771397046759, "total_2009": 2969, "total_2010": 2678, "total_2011": 3164, "total_2012": 3003, "total_2013": 2878, "total_2014": 2839, "total_2015": 3143, "total_2016": 3340, "total_2017": 3448, "total_2018": 3054, "total_2019": 2396, "total_2020": 2381, "age1": 337, "age2": 1156, "age3": 652, "earn1": 234, "earn2": 580, "earn3": 1331, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 345, "naics_s05": 396, "naics_s06": 596, "naics_s07": 375, "naics_s08": 10, "naics_s09": 65, "naics_s10": 17, "naics_s11": 46, "naics_s12": 33, "naics_s13": 0, "naics_s14": 223, "naics_s15": 0, "naics_s16": 33, "naics_s17": 0, "naics_s18": 4, "naics_s19": 2, "naics_s20": 0, "race1": 1559, "race2": 265, "race3": 17, "race4": 281, "race5": 2, "race6": 21, "ethnicity1": 1263, "ethnicity2": 882, "edu1": 488, "edu2": 449, "edu3": 515, "edu4": 356, "Shape_Length": 18643.064688820141, "Shape_Area": 21145060.517915297, "total_2021": 2201, "total_2022": 2145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.500837039544876, 29.811463202779628 ], [ -95.500863039375545, 29.810912203056098 ], [ -95.500640038831918, 29.810925203148347 ], [ -95.500165039415279, 29.810943202577672 ], [ -95.499678038411844, 29.810950202636814 ], [ -95.499470038301709, 29.810957202764957 ], [ -95.498247038869096, 29.810989203355799 ], [ -95.496279038005682, 29.811012203465946 ], [ -95.49479803801438, 29.811036203108035 ], [ -95.494360037935323, 29.811044203244894 ], [ -95.493492037384271, 29.811002203644321 ], [ -95.492597037268055, 29.810838202802486 ], [ -95.491709036752837, 29.810702203380931 ], [ -95.491035036993466, 29.810674203002684 ], [ -95.48933703607895, 29.810679203758166 ], [ -95.488199035772382, 29.810707203332161 ], [ -95.487325035775072, 29.810694203750835 ], [ -95.487294035690383, 29.810690203438305 ], [ -95.486715035635811, 29.810618203217665 ], [ -95.485759034753229, 29.810582203760742 ], [ -95.484996035318844, 29.810576203696108 ], [ -95.485077034622947, 29.811492203808022 ], [ -95.485129035535479, 29.812763204230183 ], [ -95.485137035667918, 29.81334020434662 ], [ -95.485145035249346, 29.813906204051886 ], [ -95.48515303529237, 29.814745204453711 ], [ -95.48519903496161, 29.816187204636023 ], [ -95.485322035892025, 29.817049205080238 ], [ -95.485004035447758, 29.817127204571804 ], [ -95.484767035173519, 29.817208204392575 ], [ -95.484186035230977, 29.817528205020164 ], [ -95.483954034982901, 29.817697205055875 ], [ -95.483651035201206, 29.817984204875831 ], [ -95.483511034794006, 29.818121205315506 ], [ -95.483479035468491, 29.81815220522752 ], [ -95.48327303510996, 29.818341204911643 ], [ -95.484189035690449, 29.819003205355145 ], [ -95.484374034890394, 29.819137205590597 ], [ -95.485266035148797, 29.819781205066924 ], [ -95.487027036113545, 29.821058205811855 ], [ -95.488729036190563, 29.822259205585283 ], [ -95.490591037122087, 29.823573205516492 ], [ -95.490699037049467, 29.823654205519592 ], [ -95.49076903689172, 29.823705206064261 ], [ -95.491077036949562, 29.823926205855262 ], [ -95.491103037717224, 29.823944205777963 ], [ -95.491183037425373, 29.824000205639926 ], [ -95.491753036983326, 29.824394206089025 ], [ -95.492442037337597, 29.824897206107572 ], [ -95.493688037523768, 29.825767205944604 ], [ -95.493879037552389, 29.825564206008824 ], [ -95.494006037744953, 29.825429206554897 ], [ -95.494956037921852, 29.8244352061805 ], [ -95.495459038224013, 29.823898205995597 ], [ -95.496012038349733, 29.82330320576418 ], [ -95.496228038827624, 29.823073205939984 ], [ -95.496352038469837, 29.822941205658111 ], [ -95.496448038376101, 29.822832205334553 ], [ -95.496578038361989, 29.822684205635642 ], [ -95.496830038199406, 29.822431205286239 ], [ -95.497527038339911, 29.821646205614162 ], [ -95.497981038646401, 29.821180205304866 ], [ -95.498288038433145, 29.820865205357673 ], [ -95.498550038798172, 29.820597205150673 ], [ -95.498911039493436, 29.820209204701399 ], [ -95.499126038571575, 29.8200402048729 ], [ -95.499662039667399, 29.819403204849891 ], [ -95.500062039372551, 29.818831204872744 ], [ -95.500396038898884, 29.818169204734254 ], [ -95.50064403948349, 29.817499204104028 ], [ -95.500790039198804, 29.81680220442459 ], [ -95.500854039534516, 29.815135203540699 ], [ -95.500856039535748, 29.815089203995669 ], [ -95.500816039328683, 29.813321203261264 ], [ -95.500822038667039, 29.812528203346162 ], [ -95.500837039544876, 29.811463202779628 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 13, "Tract": "48201554001", "Area_SqMi": 1.305041187023662, "total_2009": 696, "total_2010": 754, "total_2011": 713, "total_2012": 656, "total_2013": 706, "total_2014": 1016, "total_2015": 941, "total_2016": 1122, "total_2017": 1362, "total_2018": 1361, "total_2019": 1396, "total_2020": 1188, "age1": 436, "age2": 622, "age3": 263, "earn1": 376, "earn2": 552, "earn3": 393, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 11, "naics_s05": 28, "naics_s06": 0, "naics_s07": 268, "naics_s08": 71, "naics_s09": 0, "naics_s10": 45, "naics_s11": 34, "naics_s12": 235, "naics_s13": 0, "naics_s14": 26, "naics_s15": 98, "naics_s16": 204, "naics_s17": 41, "naics_s18": 173, "naics_s19": 83, "naics_s20": 0, "race1": 973, "race2": 223, "race3": 9, "race4": 85, "race5": 1, "race6": 30, "ethnicity1": 935, "ethnicity2": 386, "edu1": 183, "edu2": 249, "edu3": 261, "edu4": 192, "Shape_Length": 25837.921351762543, "Shape_Area": 36382314.693905175, "total_2021": 1217, "total_2022": 1321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.538472057397271, 30.012888242879416 ], [ -95.538339057812493, 30.012704242755945 ], [ -95.53812405791713, 30.012367243080977 ], [ -95.538044057747854, 30.01220824263336 ], [ -95.537992057759979, 30.012128242256129 ], [ -95.537918057200599, 30.011989242595078 ], [ -95.53789205770677, 30.011925243012385 ], [ -95.537812057581249, 30.01178924308913 ], [ -95.537758057698198, 30.011689242793057 ], [ -95.537696057425805, 30.011586242871452 ], [ -95.537513057651893, 30.01130424255377 ], [ -95.537412058057669, 30.011157242286401 ], [ -95.537366057505977, 30.011099242589466 ], [ -95.537206057857659, 30.010880242669423 ], [ -95.536936057763953, 30.010513242637714 ], [ -95.536684057788037, 30.010175242115508 ], [ -95.536649057747695, 30.010121242452296 ], [ -95.53646005727461, 30.009858242451116 ], [ -95.536349057647357, 30.009713242505814 ], [ -95.536313056671233, 30.009656242106466 ], [ -95.536114057568042, 30.009392241829975 ], [ -95.536009057302394, 30.009242241749874 ], [ -95.535882057346797, 30.009073242274219 ], [ -95.535847057049025, 30.009013242160709 ], [ -95.535164056950762, 30.008070242252945 ], [ -95.534664056356007, 30.007383241740072 ], [ -95.534454057044513, 30.007082241489599 ], [ -95.534306056488106, 30.006849241499026 ], [ -95.534143056956594, 30.006550242029615 ], [ -95.534133056243476, 30.006532241536799 ], [ -95.534040056585155, 30.006335241691371 ], [ -95.534014056582549, 30.006289241720168 ], [ -95.53395105637891, 30.006134241925814 ], [ -95.533919056615275, 30.006057241321511 ], [ -95.533883056615025, 30.005931241437626 ], [ -95.53384205658557, 30.005807241654843 ], [ -95.533783056152714, 30.005629241275813 ], [ -95.533720056363862, 30.005373241509403 ], [ -95.533667056392801, 30.005102241077616 ], [ -95.533632056430648, 30.004822241755893 ], [ -95.533609056768952, 30.004562241361775 ], [ -95.533584055878592, 30.004176240918653 ], [ -95.53356805617257, 30.003923240815876 ], [ -95.533562056608645, 30.003846241283654 ], [ -95.533524055827129, 30.003349240761516 ], [ -95.533501055833483, 30.003150241410065 ], [ -95.533410055873375, 30.002733241374351 ], [ -95.533314055731594, 30.002413241017226 ], [ -95.533244055649945, 30.00223324047219 ], [ -95.533202055568978, 30.002146241038975 ], [ -95.533128055525452, 30.001961240790951 ], [ -95.532942056102328, 30.001614240331236 ], [ -95.532734055597928, 30.001273240469931 ], [ -95.532533055513852, 30.000972240936175 ], [ -95.532502055347948, 30.00090524067398 ], [ -95.532458055568213, 30.000828240218659 ], [ -95.532394055514942, 30.00075424071607 ], [ -95.532329055753436, 30.000657240717398 ], [ -95.531949055471287, 30.000094240624751 ], [ -95.531862056021069, 29.999992240787915 ], [ -95.531807055479078, 29.999880239976978 ], [ -95.531504055745344, 29.999417239946791 ], [ -95.531283055521527, 29.99906424057545 ], [ -95.531199055475668, 29.998947240416786 ], [ -95.531126055510569, 29.998823240608942 ], [ -95.530636055182413, 29.998076240521073 ], [ -95.530570054897794, 29.998109240168564 ], [ -95.530389055615615, 29.99820324015225 ], [ -95.53006705491174, 29.998181240407433 ], [ -95.529423055139929, 29.998346240171134 ], [ -95.529113054339433, 29.998489240310061 ], [ -95.529000054330652, 29.998615240358038 ], [ -95.528968055049518, 29.998703239909624 ], [ -95.528968054713076, 29.998747240649717 ], [ -95.528917055130449, 29.998840240380883 ], [ -95.528797054409125, 29.99897824031347 ], [ -95.528734054720189, 29.999077240571562 ], [ -95.528494054738914, 29.999253240814383 ], [ -95.528147054237081, 29.999450240383823 ], [ -95.527850054879039, 29.999742240855824 ], [ -95.52765405485961, 30.000006240341975 ], [ -95.527471054442614, 30.00018824039882 ], [ -95.52731305411578, 30.000303240506923 ], [ -95.527294054097524, 30.000380240464715 ], [ -95.527155054465936, 30.0004072409426 ], [ -95.527093054171246, 30.000463240306956 ], [ -95.526915054618954, 30.000570240658789 ], [ -95.526419054563036, 30.000910240779898 ], [ -95.526177054162844, 30.00107424076549 ], [ -95.526161053869089, 30.001086240800849 ], [ -95.526110054701647, 30.001142240820975 ], [ -95.525854054315715, 30.001423240867091 ], [ -95.524791053731278, 30.002134240829349 ], [ -95.524428054024682, 30.002189241418076 ], [ -95.523774053287895, 30.002176240835983 ], [ -95.523616053192029, 30.002173241292883 ], [ -95.522732053730536, 30.002097241216227 ], [ -95.522578053534744, 30.002141241078476 ], [ -95.522352053117473, 30.002295241104932 ], [ -95.522116053679383, 30.002620241077821 ], [ -95.521518053211551, 30.003058241664789 ], [ -95.521296053261281, 30.003311241701848 ], [ -95.52109905346444, 30.003738241961283 ], [ -95.520979053456657, 30.003931241701597 ], [ -95.52044005260116, 30.004802242148848 ], [ -95.520195053370017, 30.005590242287894 ], [ -95.520058052393878, 30.005762242249482 ], [ -95.519809053060442, 30.005888242369682 ], [ -95.519169052595757, 30.005999241664099 ], [ -95.518802052927185, 30.006103242035156 ], [ -95.518354052666183, 30.006229242250914 ], [ -95.518109052305675, 30.006218242105977 ], [ -95.51785405192382, 30.006107242071316 ], [ -95.517589052439305, 30.005763242456048 ], [ -95.517309051668988, 30.005616241690042 ], [ -95.516337051610492, 30.005356242111411 ], [ -95.515212051810693, 30.005186242020823 ], [ -95.514948051353556, 30.00508624240992 ], [ -95.514589051341389, 30.0047982421863 ], [ -95.514441051814501, 30.004738241905009 ], [ -95.514237051010042, 30.004722242229427 ], [ -95.514038051717478, 30.004764241631246 ], [ -95.513761050924984, 30.004975242080491 ], [ -95.513548051044651, 30.005432242053882 ], [ -95.513445051093626, 30.005542241925237 ], [ -95.513295051039648, 30.005594242504984 ], [ -95.512726051331043, 30.005641241980271 ], [ -95.512461050610781, 30.005856241916174 ], [ -95.512359050519876, 30.006010242487996 ], [ -95.512188050767364, 30.00648324201569 ], [ -95.512035050756026, 30.006700242882104 ], [ -95.512074051094245, 30.006754242241946 ], [ -95.512617050800159, 30.007501242863672 ], [ -95.512766051400092, 30.007723242942848 ], [ -95.513045050667216, 30.008172243161376 ], [ -95.513423051456314, 30.008712242450585 ], [ -95.513658051724335, 30.009023242888066 ], [ -95.514244051296501, 30.009831242868323 ], [ -95.514857051633854, 30.010674243008534 ], [ -95.515244052354006, 30.011202243605798 ], [ -95.515368052213674, 30.011372243256407 ], [ -95.515872052185301, 30.012072243838908 ], [ -95.516289052075194, 30.012637243129408 ], [ -95.516658052555954, 30.013147243520383 ], [ -95.516739051910463, 30.01324924346914 ], [ -95.516802052828638, 30.013350243291725 ], [ -95.51686205266175, 30.013433244056667 ], [ -95.517024052253177, 30.01365924350403 ], [ -95.517044052302566, 30.013686244003363 ], [ -95.517084052456823, 30.013741244125629 ], [ -95.517127052944602, 30.013801243671164 ], [ -95.517335052623011, 30.014084244046646 ], [ -95.517588052952306, 30.014427243814389 ], [ -95.518058052397791, 30.015079244274478 ], [ -95.518369053104749, 30.015510244002584 ], [ -95.518398052947461, 30.015551244213935 ], [ -95.518584053132884, 30.015820243916512 ], [ -95.518670052482861, 30.01594524378342 ], [ -95.518738052692484, 30.016044243823647 ], [ -95.518989052727036, 30.016399244092199 ], [ -95.519221052762404, 30.016709244625694 ], [ -95.520143053540181, 30.017943244399646 ], [ -95.520206053069671, 30.018030244504885 ], [ -95.520307053229388, 30.018157244530208 ], [ -95.520408053180333, 30.018267244808008 ], [ -95.520558053721118, 30.018409244291352 ], [ -95.520788053752128, 30.018605244818364 ], [ -95.521274053395189, 30.01899524441723 ], [ -95.522338054575016, 30.019866244920504 ], [ -95.522523053987626, 30.020017244755461 ], [ -95.523092054507302, 30.02048124518755 ], [ -95.523350054479039, 30.020690244804491 ], [ -95.523650054084484, 30.020932244963266 ], [ -95.523776054776604, 30.021023245210589 ], [ -95.524294054869898, 30.02073824502391 ], [ -95.524549055019932, 30.020603245205709 ], [ -95.524620054776108, 30.020559244662675 ], [ -95.525141055225589, 30.02028224513494 ], [ -95.526127055330861, 30.019745244913423 ], [ -95.526189054638309, 30.019716245062654 ], [ -95.526377055460614, 30.019609245066729 ], [ -95.52685305523967, 30.01931424472318 ], [ -95.526945054744061, 30.01926524416298 ], [ -95.52703205548255, 30.019209244978825 ], [ -95.527148055801632, 30.019143244124045 ], [ -95.528031055205972, 30.018654244384312 ], [ -95.528376055088117, 30.018463244700587 ], [ -95.528797055528457, 30.018232244427264 ], [ -95.529078055365574, 30.018078244005899 ], [ -95.529557055919327, 30.017811244096922 ], [ -95.530159056397537, 30.017481244005474 ], [ -95.530429055641065, 30.017329243783141 ], [ -95.531719056693305, 30.016620243472346 ], [ -95.532200056024109, 30.016352243508571 ], [ -95.53238205673847, 30.016252244005138 ], [ -95.532791056642708, 30.016020243942574 ], [ -95.532905056532414, 30.015964243770927 ], [ -95.533383056300778, 30.015702243672273 ], [ -95.533501057104715, 30.015629243739596 ], [ -95.533816056725158, 30.015459243080869 ], [ -95.534161057151607, 30.015274243523265 ], [ -95.534255056859422, 30.015217243401047 ], [ -95.534353056966538, 30.015169243792638 ], [ -95.534561057314122, 30.015055243788527 ], [ -95.534671057173469, 30.014987243304432 ], [ -95.534794057001648, 30.014926243409334 ], [ -95.536531056929022, 30.013966243231167 ], [ -95.53686905795017, 30.013774243048232 ], [ -95.536978057412568, 30.013713243121877 ], [ -95.538037058306998, 30.013131242725791 ], [ -95.538472057397271, 30.012888242879416 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 14, "Tract": "48201212300", "Area_SqMi": 1.2739503109876127, "total_2009": 2861, "total_2010": 3063, "total_2011": 2515, "total_2012": 2459, "total_2013": 2063, "total_2014": 1896, "total_2015": 2055, "total_2016": 2034, "total_2017": 2025, "total_2018": 1981, "total_2019": 1992, "total_2020": 1736, "age1": 306, "age2": 957, "age3": 406, "earn1": 228, "earn2": 589, "earn3": 852, "naics_s01": 0, "naics_s02": 44, "naics_s03": 0, "naics_s04": 197, "naics_s05": 421, "naics_s06": 209, "naics_s07": 137, "naics_s08": 24, "naics_s09": 25, "naics_s10": 44, "naics_s11": 15, "naics_s12": 36, "naics_s13": 254, "naics_s14": 74, "naics_s15": 1, "naics_s16": 96, "naics_s17": 0, "naics_s18": 57, "naics_s19": 35, "naics_s20": 0, "race1": 1378, "race2": 177, "race3": 18, "race4": 72, "race5": 4, "race6": 20, "ethnicity1": 834, "ethnicity2": 835, "edu1": 394, "edu2": 338, "edu3": 372, "edu4": 259, "Shape_Length": 26351.217806068122, "Shape_Area": 35515554.282586269, "total_2021": 1546, "total_2022": 1669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.36939700443871, 29.777658200318758 ], [ -95.36939200394886, 29.777595200751396 ], [ -95.369372003587642, 29.777332200862546 ], [ -95.369357003595084, 29.777192200488702 ], [ -95.369318004271165, 29.77699020049474 ], [ -95.369203004220751, 29.776901200256649 ], [ -95.369129004139509, 29.776844200722095 ], [ -95.369070003343069, 29.776807200711001 ], [ -95.368828003511311, 29.776563200421744 ], [ -95.368559003599785, 29.77623220055419 ], [ -95.368290003565988, 29.775840199911315 ], [ -95.367966003907441, 29.775320199830134 ], [ -95.367864003277688, 29.775153200361324 ], [ -95.367509003577851, 29.774575200319347 ], [ -95.367438003426798, 29.774452199771702 ], [ -95.367027002796959, 29.773841199839776 ], [ -95.366922003408135, 29.773686200363468 ], [ -95.366807002590889, 29.773422200169367 ], [ -95.366257002528229, 29.772464199961583 ], [ -95.366207002990379, 29.772385199733925 ], [ -95.366032002749961, 29.772107199834949 ], [ -95.365827002771923, 29.771752199421872 ], [ -95.365351003089287, 29.771005199844407 ], [ -95.365042002985987, 29.770557199179965 ], [ -95.365006002604929, 29.770504199379012 ], [ -95.364785002739055, 29.770316199296165 ], [ -95.363945001756861, 29.769506199239849 ], [ -95.363467002284381, 29.769156199516839 ], [ -95.361689001651584, 29.767920199077945 ], [ -95.361287001589233, 29.767659199276132 ], [ -95.361010001703164, 29.767546199038563 ], [ -95.360948001666969, 29.767521198586067 ], [ -95.360697001506182, 29.767433199006621 ], [ -95.360437001187023, 29.767356199021698 ], [ -95.360171001167558, 29.767300198585509 ], [ -95.35986900124, 29.767265198748561 ], [ -95.35949300057257, 29.767267198431504 ], [ -95.359396000731138, 29.767268199139082 ], [ -95.359342000497548, 29.76726819889554 ], [ -95.359311001029212, 29.767268198881069 ], [ -95.359195000832045, 29.767288198898989 ], [ -95.358906001130293, 29.76733919877784 ], [ -95.358244000209439, 29.767520199065398 ], [ -95.357996000935444, 29.767592198814242 ], [ -95.357290000403268, 29.767834198749728 ], [ -95.356986999930882, 29.767938198630883 ], [ -95.356210000569732, 29.768205199334002 ], [ -95.355981999844474, 29.768305199269495 ], [ -95.355664999760208, 29.768445199363867 ], [ -95.355313999717168, 29.768620199282449 ], [ -95.354521999511377, 29.768933199412533 ], [ -95.352785999537332, 29.769742199338591 ], [ -95.352335999574876, 29.769927199538511 ], [ -95.352119999264033, 29.769988199481357 ], [ -95.352087999461929, 29.769995199666539 ], [ -95.35181999894759, 29.770058199291196 ], [ -95.351436998585598, 29.770113199310369 ], [ -95.351273998517286, 29.770122199325119 ], [ -95.350974999272296, 29.770139199969865 ], [ -95.350448998736766, 29.77014820005898 ], [ -95.349093998556739, 29.770171199719147 ], [ -95.348794998822612, 29.770176199932621 ], [ -95.34840499813096, 29.770182199609881 ], [ -95.347834998424105, 29.770177199686977 ], [ -95.347066998032844, 29.770089199483813 ], [ -95.346652997878522, 29.770015199707906 ], [ -95.346442997311939, 29.76998819944664 ], [ -95.346069997430078, 29.76994920007888 ], [ -95.345979997132915, 29.769942200205051 ], [ -95.345730997569532, 29.769899199842584 ], [ -95.345638997879377, 29.769888199646115 ], [ -95.345293997312666, 29.769846200206917 ], [ -95.345094996969593, 29.769814200044856 ], [ -95.345023997735112, 29.769811200256267 ], [ -95.344724997422006, 29.769813199904327 ], [ -95.343689996866701, 29.7698192001418 ], [ -95.343475996767026, 29.769816200011711 ], [ -95.342602996497575, 29.769794199901987 ], [ -95.342259996779973, 29.769786200275608 ], [ -95.341815997005781, 29.769766200224247 ], [ -95.341496996947996, 29.769709199668601 ], [ -95.341345996180493, 29.769685200330766 ], [ -95.341261995974691, 29.769671200198406 ], [ -95.341170996716613, 29.769646200333316 ], [ -95.341126996351974, 29.769723200073447 ], [ -95.341036995979394, 29.76983019970114 ], [ -95.340893996185414, 29.77009020003112 ], [ -95.340779996691694, 29.770379200560026 ], [ -95.340603995908893, 29.770910200170096 ], [ -95.340530996742572, 29.771224200213993 ], [ -95.340457996493242, 29.771700200676992 ], [ -95.340432995908557, 29.772499200142377 ], [ -95.340438996036681, 29.773758200930121 ], [ -95.34040899612765, 29.77416720115151 ], [ -95.340372996282241, 29.774401201137255 ], [ -95.340350996534681, 29.77460620060771 ], [ -95.340285996504392, 29.776959201877951 ], [ -95.340277996877774, 29.77725720190152 ], [ -95.340223996268421, 29.778409202127314 ], [ -95.340227996622914, 29.778599202230797 ], [ -95.3403309970153, 29.778598202031731 ], [ -95.340420996157093, 29.778598201643486 ], [ -95.340626996198338, 29.778597201909371 ], [ -95.340978996508753, 29.778595201723803 ], [ -95.341123996858698, 29.778596201524806 ], [ -95.341334996752906, 29.778598201372311 ], [ -95.341844997470901, 29.778587201406648 ], [ -95.342879997161035, 29.778577201517006 ], [ -95.343924997971783, 29.778572201872141 ], [ -95.344907997619401, 29.778559201625214 ], [ -95.344981997388629, 29.778559201425495 ], [ -95.345774997771741, 29.778562201291461 ], [ -95.346664998668402, 29.778564202057783 ], [ -95.346768997993792, 29.778549201207944 ], [ -95.347534997968097, 29.778551201911146 ], [ -95.348084998092247, 29.778535201514568 ], [ -95.348657998242672, 29.778534201374736 ], [ -95.348867998358713, 29.778534201534349 ], [ -95.348951999248754, 29.778540201736305 ], [ -95.34902299837826, 29.778538201199172 ], [ -95.349438998588028, 29.778529201626693 ], [ -95.349549998906852, 29.778520201602703 ], [ -95.349640999038385, 29.778507201324715 ], [ -95.349719998989869, 29.778474201419726 ], [ -95.349924998991824, 29.778423201181123 ], [ -95.350139998805304, 29.778392201649215 ], [ -95.35054999886944, 29.778376201152458 ], [ -95.350953998784064, 29.778373201424326 ], [ -95.351358999231365, 29.778370201541335 ], [ -95.351370998995989, 29.779949201912977 ], [ -95.351379999696661, 29.780238201640007 ], [ -95.351387999882249, 29.780485201950167 ], [ -95.351406999312815, 29.781450202084393 ], [ -95.351417999502829, 29.782411202006621 ], [ -95.351433000061348, 29.783376202849926 ], [ -95.352237999357754, 29.783357202404588 ], [ -95.353055000542739, 29.783358202706118 ], [ -95.353883999769465, 29.783343202451853 ], [ -95.354699000730818, 29.78334520256368 ], [ -95.356108001123999, 29.783347202702533 ], [ -95.356524001149467, 29.783330201991166 ], [ -95.356597000929341, 29.783329202251409 ], [ -95.356867000965849, 29.7833242023239 ], [ -95.357731001176631, 29.783011201838608 ], [ -95.358489001225195, 29.782743202181504 ], [ -95.359240002023554, 29.782461201957133 ], [ -95.359992001775183, 29.782186202333769 ], [ -95.360748002034057, 29.781917201599665 ], [ -95.36151200229439, 29.781635201595819 ], [ -95.362276001949127, 29.781358201676827 ], [ -95.363074002572461, 29.781075201257302 ], [ -95.363861002928573, 29.780775201188082 ], [ -95.364691002825197, 29.780471201527924 ], [ -95.365169002850394, 29.780298201531433 ], [ -95.36591100360782, 29.780028201359965 ], [ -95.366555003015492, 29.779791200874278 ], [ -95.3673410039342, 29.779495201253933 ], [ -95.36764200409155, 29.779418201511987 ], [ -95.36772100328227, 29.779398201195907 ], [ -95.36801800376854, 29.77934720082056 ], [ -95.368191003530896, 29.779324200765082 ], [ -95.368278004067108, 29.77931420090556 ], [ -95.368466004101137, 29.779299201072522 ], [ -95.368849004175701, 29.779303201283962 ], [ -95.368911004213317, 29.779310201382181 ], [ -95.369053003740845, 29.779324200801085 ], [ -95.369192003935041, 29.778887201306187 ], [ -95.36925900385657, 29.77867820062664 ], [ -95.36933000403684, 29.778322200548526 ], [ -95.369374004406779, 29.777986200418646 ], [ -95.369377004000938, 29.777944200474131 ], [ -95.369384003590412, 29.777848200614446 ], [ -95.369389003807967, 29.777775200579981 ], [ -95.36939700443871, 29.777658200318758 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 15, "Tract": "48201212400", "Area_SqMi": 3.1428760108222256, "total_2009": 7527, "total_2010": 7348, "total_2011": 7569, "total_2012": 7035, "total_2013": 7293, "total_2014": 7566, "total_2015": 7844, "total_2016": 7644, "total_2017": 7256, "total_2018": 6681, "total_2019": 7419, "total_2020": 7027, "age1": 1182, "age2": 3599, "age3": 1506, "earn1": 516, "earn2": 1435, "earn3": 4336, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 87, "naics_s05": 2087, "naics_s06": 1863, "naics_s07": 400, "naics_s08": 373, "naics_s09": 24, "naics_s10": 11, "naics_s11": 139, "naics_s12": 24, "naics_s13": 58, "naics_s14": 271, "naics_s15": 9, "naics_s16": 646, "naics_s17": 0, "naics_s18": 224, "naics_s19": 71, "naics_s20": 0, "race1": 4814, "race2": 1037, "race3": 67, "race4": 283, "race5": 10, "race6": 76, "ethnicity1": 3438, "ethnicity2": 2849, "edu1": 1369, "edu2": 1416, "edu3": 1479, "edu4": 841, "Shape_Length": 56233.503052545129, "Shape_Area": 87618004.095671743, "total_2021": 6508, "total_2022": 6287 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.315925990753797, 29.787619204682908 ], [ -95.315922990745733, 29.787575204496754 ], [ -95.315919990278715, 29.786899204387414 ], [ -95.31591999038821, 29.786768204013338 ], [ -95.31506499093868, 29.78713920404493 ], [ -95.314888990592536, 29.787214204706981 ], [ -95.314554990667133, 29.787331204840218 ], [ -95.314340990630996, 29.78735920483355 ], [ -95.313492989642612, 29.787413204436366 ], [ -95.312517989966764, 29.787425204819584 ], [ -95.311962989815058, 29.787424204732325 ], [ -95.311909989328797, 29.7874252043197 ], [ -95.311614989780878, 29.787430204207475 ], [ -95.311166989272394, 29.787430204556873 ], [ -95.310465988933615, 29.787429204950023 ], [ -95.309960988687962, 29.787447204873533 ], [ -95.309443989485203, 29.787441204391197 ], [ -95.308923988577874, 29.787452205067783 ], [ -95.308403988364219, 29.787454204988894 ], [ -95.307368988086537, 29.787463204664263 ], [ -95.306036988605015, 29.787480205189734 ], [ -95.305894988041004, 29.787489205159158 ], [ -95.30525998779126, 29.787493204604914 ], [ -95.303204987881458, 29.787511204655313 ], [ -95.301157987218275, 29.78753520541283 ], [ -95.299071985909137, 29.78754920487043 ], [ -95.298034985606009, 29.78756320542195 ], [ -95.296564985586159, 29.787572204783878 ], [ -95.294974985652402, 29.787580205234676 ], [ -95.293387985118713, 29.787594204892986 ], [ -95.291770984253404, 29.787629205090528 ], [ -95.291762984356637, 29.787038205066992 ], [ -95.291752984885932, 29.786348205196301 ], [ -95.291743984373483, 29.785671205221398 ], [ -95.291734984519707, 29.784983205081307 ], [ -95.291724984429209, 29.784300205049519 ], [ -95.291715984652868, 29.783606204521341 ], [ -95.29170598394002, 29.782922204023944 ], [ -95.29169698393369, 29.782231204616579 ], [ -95.291687984082088, 29.781540204169701 ], [ -95.291677984571152, 29.780843203789427 ], [ -95.291670984447194, 29.780330203766763 ], [ -95.291668984462888, 29.78017720368728 ], [ -95.293218984740918, 29.780141203320454 ], [ -95.294816984490424, 29.780113203650362 ], [ -95.296404985451602, 29.780088203423905 ], [ -95.297862986212451, 29.780053203319966 ], [ -95.298911985937977, 29.780040203728355 ], [ -95.301173986431266, 29.780000203214104 ], [ -95.301179986809117, 29.78014920327924 ], [ -95.301678986341017, 29.780149203846893 ], [ -95.302197986949054, 29.780149203781402 ], [ -95.302707987042794, 29.780149203446925 ], [ -95.303230987169272, 29.780140203508093 ], [ -95.303736987480235, 29.780147203835369 ], [ -95.304258987580127, 29.780149203024884 ], [ -95.304761987120528, 29.780150203293079 ], [ -95.30528198788285, 29.78015420328142 ], [ -95.305787988177983, 29.780152203393921 ], [ -95.306311988228046, 29.78015420367915 ], [ -95.30681698776624, 29.78015220301803 ], [ -95.307388988550443, 29.78014220284053 ], [ -95.307366988324091, 29.779443202995822 ], [ -95.307369987935502, 29.778325203010954 ], [ -95.307405988389107, 29.77652020229468 ], [ -95.307406988126601, 29.774704202102875 ], [ -95.307413988453717, 29.774364201841756 ], [ -95.306370987714146, 29.774350202393723 ], [ -95.302462986866018, 29.774344201925746 ], [ -95.301234986417555, 29.774426202381136 ], [ -95.301109986560689, 29.774448202460089 ], [ -95.300633986046762, 29.774531202498991 ], [ -95.300061985933198, 29.774678202532606 ], [ -95.300018986526624, 29.77468920244295 ], [ -95.299476985651552, 29.774845202036488 ], [ -95.298848985879459, 29.77506320263786 ], [ -95.297582985599234, 29.775572202990471 ], [ -95.296184985316032, 29.776149202872585 ], [ -95.295286984626401, 29.776519203118021 ], [ -95.294309984615182, 29.776919202680773 ], [ -95.293279984779076, 29.77736320283654 ], [ -95.292708984619836, 29.777556203087649 ], [ -95.292224984021615, 29.777697203378533 ], [ -95.29179898390349, 29.777788203255678 ], [ -95.291257984256006, 29.777896203339754 ], [ -95.290841983894722, 29.777969203069912 ], [ -95.290362983897069, 29.778009203256495 ], [ -95.289919983478086, 29.778037203343239 ], [ -95.28840698346086, 29.778055203355709 ], [ -95.28812298357542, 29.778066203761004 ], [ -95.287688983307547, 29.778083203775765 ], [ -95.284318981879679, 29.778117203511297 ], [ -95.284042982531801, 29.77812020359767 ], [ -95.283859982402419, 29.778121203499019 ], [ -95.281256981763661, 29.778149203342053 ], [ -95.280420981091083, 29.778152203575939 ], [ -95.279602980533681, 29.778168204074923 ], [ -95.278880980563017, 29.778118203416561 ], [ -95.278233980743977, 29.778063203740505 ], [ -95.277425979952412, 29.777922203872123 ], [ -95.275475979632873, 29.777594204224975 ], [ -95.272130978720725, 29.777026203582047 ], [ -95.27191897897535, 29.776990203508017 ], [ -95.271315978660738, 29.776888204205829 ], [ -95.270578978419721, 29.776766204107449 ], [ -95.266885977509702, 29.776152203738565 ], [ -95.266062977873091, 29.776031204039235 ], [ -95.264999976911483, 29.77587520405454 ], [ -95.264379977467499, 29.775774204155034 ], [ -95.264342976662817, 29.775768203456654 ], [ -95.264296976504781, 29.775760203379331 ], [ -95.264266977328262, 29.775755203934366 ], [ -95.264083977155778, 29.775726203865656 ], [ -95.264053976512329, 29.775867204230238 ], [ -95.264041977053822, 29.77592120342532 ], [ -95.263738976507639, 29.777358204545216 ], [ -95.263555976571524, 29.778228204256724 ], [ -95.263491976628359, 29.77861720425096 ], [ -95.263462976930214, 29.779007204399115 ], [ -95.263426976664519, 29.779599204995908 ], [ -95.263466977081663, 29.780205204720176 ], [ -95.263544977112986, 29.780691205271925 ], [ -95.263670976597311, 29.781185204787953 ], [ -95.263793977213965, 29.781528204781274 ], [ -95.263865976707933, 29.781736205071333 ], [ -95.264067977078611, 29.782315205515584 ], [ -95.264703977688754, 29.783936205507413 ], [ -95.264899977736633, 29.784393205856137 ], [ -95.264953977115837, 29.784523205350325 ], [ -95.265588977680736, 29.786012206109081 ], [ -95.266108978298291, 29.787365205951602 ], [ -95.266571977864558, 29.788571206212868 ], [ -95.266959978747352, 29.789475206703429 ], [ -95.267225978299422, 29.790161206690957 ], [ -95.267641978442654, 29.791019207165448 ], [ -95.267912978478904, 29.791577206800422 ], [ -95.267960978093953, 29.791676207301325 ], [ -95.268025979101623, 29.791811207151607 ], [ -95.268416978526631, 29.792617207070073 ], [ -95.268688979088481, 29.79319020709789 ], [ -95.269341978838483, 29.794563207696363 ], [ -95.269549978897572, 29.794858207904166 ], [ -95.270248978878257, 29.795799207626775 ], [ -95.27066797999008, 29.796168207649195 ], [ -95.271661979506604, 29.7968712081693 ], [ -95.27194197993866, 29.797047207846219 ], [ -95.272037980245656, 29.797108208147343 ], [ -95.275191981097933, 29.799162208190793 ], [ -95.277350981179822, 29.800607208446372 ], [ -95.279156981639048, 29.801803208437526 ], [ -95.279591981750997, 29.802101208901608 ], [ -95.279948982536084, 29.802346209025817 ], [ -95.280001982272239, 29.802381208872756 ], [ -95.280146982194665, 29.802478208428866 ], [ -95.284342983587337, 29.801029208558308 ], [ -95.288549983892338, 29.799378207739746 ], [ -95.288752983872357, 29.799296208161845 ], [ -95.288776984516403, 29.799286207532393 ], [ -95.289948984330621, 29.798794207671072 ], [ -95.292028985020508, 29.797838207008759 ], [ -95.292290984828739, 29.797718207702854 ], [ -95.296944986679861, 29.795657206757095 ], [ -95.297955986812994, 29.795272206255714 ], [ -95.299459987304431, 29.794642206142704 ], [ -95.300120986653539, 29.79435520657848 ], [ -95.301821987088559, 29.793622206104548 ], [ -95.302926987629505, 29.793158205826725 ], [ -95.30716598844306, 29.791342205942573 ], [ -95.310392989755428, 29.789993204825173 ], [ -95.314098990487153, 29.788375204295281 ], [ -95.315811990913673, 29.787660204614376 ], [ -95.315925990753797, 29.787619204682908 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 16, "Tract": "48157675300", "Area_SqMi": 3.6491726809183307, "total_2009": 1142, "total_2010": 987, "total_2011": 880, "total_2012": 888, "total_2013": 932, "total_2014": 1003, "total_2015": 1004, "total_2016": 949, "total_2017": 924, "total_2018": 908, "total_2019": 966, "total_2020": 1100, "age1": 225, "age2": 531, "age3": 250, "earn1": 173, "earn2": 361, "earn3": 472, "naics_s01": 5, "naics_s02": 18, "naics_s03": 0, "naics_s04": 117, "naics_s05": 121, "naics_s06": 99, "naics_s07": 219, "naics_s08": 4, "naics_s09": 0, "naics_s10": 17, "naics_s11": 40, "naics_s12": 4, "naics_s13": 0, "naics_s14": 52, "naics_s15": 4, "naics_s16": 93, "naics_s17": 0, "naics_s18": 145, "naics_s19": 45, "naics_s20": 23, "race1": 795, "race2": 119, "race3": 9, "race4": 74, "race5": 1, "race6": 8, "ethnicity1": 645, "ethnicity2": 361, "edu1": 185, "edu2": 207, "edu3": 248, "edu4": 141, "Shape_Length": 58715.612174906011, "Shape_Area": 101732688.72254001, "total_2021": 1030, "total_2022": 1006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.856760117378244, 29.535105134715455 ], [ -95.856742117859426, 29.534976134200594 ], [ -95.856725117598145, 29.534880134845057 ], [ -95.856685118139737, 29.534659134204276 ], [ -95.856378117612635, 29.534743134809716 ], [ -95.854980117275986, 29.53502913473331 ], [ -95.853378116711539, 29.535259135157023 ], [ -95.85250811694921, 29.535336134693832 ], [ -95.85181011615802, 29.535367135268775 ], [ -95.851046116590723, 29.535341135098594 ], [ -95.845718114443258, 29.534685134537483 ], [ -95.835932112086581, 29.533486135281052 ], [ -95.835343111837048, 29.53341413459373 ], [ -95.826400110103876, 29.532318134728801 ], [ -95.826333110026752, 29.532310134874418 ], [ -95.826149110050878, 29.532286135205652 ], [ -95.825838109969865, 29.532247135304388 ], [ -95.825083109358587, 29.532146134675124 ], [ -95.823228109447044, 29.532014135163173 ], [ -95.822395108988147, 29.532002134897862 ], [ -95.821668108917137, 29.531991134771168 ], [ -95.821279108394663, 29.532000134926339 ], [ -95.820308107808899, 29.532023134970697 ], [ -95.819326108201111, 29.532046135289828 ], [ -95.819257108094476, 29.532048134921776 ], [ -95.818972107702919, 29.532054135393114 ], [ -95.818861108070053, 29.532057134834787 ], [ -95.818421107970252, 29.532068135567947 ], [ -95.814919106532784, 29.532152135085898 ], [ -95.813863106308432, 29.532177135149837 ], [ -95.813484106067904, 29.53218613525161 ], [ -95.812647106565109, 29.532206135609858 ], [ -95.81032310602356, 29.532261135221077 ], [ -95.808325105150033, 29.532308135544106 ], [ -95.808137105156874, 29.532312135674715 ], [ -95.808144105723841, 29.532551135607406 ], [ -95.808251105216087, 29.534232136354113 ], [ -95.808257105063632, 29.535515135992465 ], [ -95.808286105031911, 29.536403136582841 ], [ -95.808376105387907, 29.539150136798103 ], [ -95.808394105338593, 29.539603136781327 ], [ -95.808453105996207, 29.540677137252029 ], [ -95.808451105200689, 29.541602137901268 ], [ -95.808473105339701, 29.542061138015324 ], [ -95.808473105464429, 29.542786137504869 ], [ -95.808514105784297, 29.54339313804136 ], [ -95.808509105531328, 29.54415713824844 ], [ -95.808601105507606, 29.545930138081999 ], [ -95.80858210634797, 29.546243138657264 ], [ -95.808607106384216, 29.547283138550242 ], [ -95.808644106121491, 29.549129139408148 ], [ -95.808649105670938, 29.549354138927253 ], [ -95.80866110569427, 29.550116139296605 ], [ -95.808671106216238, 29.550657138967189 ], [ -95.808707106281048, 29.551096139891911 ], [ -95.808720105898018, 29.55207713987306 ], [ -95.808731106409738, 29.552726140200537 ], [ -95.808731106780158, 29.553093139547361 ], [ -95.80875310664463, 29.553765139964611 ], [ -95.808754106579968, 29.554060139898745 ], [ -95.808762106305707, 29.554806139933106 ], [ -95.808769106154386, 29.555127140155307 ], [ -95.808791106477202, 29.555888140677403 ], [ -95.808805106144362, 29.556179140703325 ], [ -95.808784106766197, 29.557223140306835 ], [ -95.808821106156742, 29.55822814075858 ], [ -95.809389106614418, 29.558200140616247 ], [ -95.809925106563526, 29.558194141339776 ], [ -95.809940106365843, 29.559253141249002 ], [ -95.809965106536808, 29.560470141668787 ], [ -95.809968107245382, 29.560622140976562 ], [ -95.809974107281533, 29.560923141064848 ], [ -95.809978107038418, 29.561094141611875 ], [ -95.81001110663739, 29.561750141323937 ], [ -95.810042106881468, 29.563037141796439 ], [ -95.810100107336439, 29.564467142173374 ], [ -95.810130106834194, 29.56537814236513 ], [ -95.810228106976638, 29.566248142867575 ], [ -95.810352106927525, 29.56667014285696 ], [ -95.810424107084103, 29.566916142630365 ], [ -95.810429106991734, 29.567003142700546 ], [ -95.810467107303779, 29.566977142996876 ], [ -95.810638107454011, 29.566876142500902 ], [ -95.810851107502842, 29.566766142356226 ], [ -95.811128107547489, 29.566609142574634 ], [ -95.811497107426021, 29.566378142561597 ], [ -95.811571107671753, 29.566347142851033 ], [ -95.811686107417842, 29.566307142124334 ], [ -95.81176510794576, 29.566285142298852 ], [ -95.811970107178666, 29.566265142184275 ], [ -95.812092107881185, 29.566249142337075 ], [ -95.812381107757972, 29.566255142413407 ], [ -95.812463107354546, 29.566253142402974 ], [ -95.812477108123716, 29.566251142834666 ], [ -95.812545107585194, 29.566243142518058 ], [ -95.812789108277798, 29.566203142716322 ], [ -95.812983107541228, 29.566196142785401 ], [ -95.812995107996542, 29.566196142618509 ], [ -95.813242108096603, 29.56620014262867 ], [ -95.813572108521328, 29.56622114272405 ], [ -95.813593107636834, 29.566223142257993 ], [ -95.813776108157185, 29.566246142765021 ], [ -95.813898107839194, 29.566265142684205 ], [ -95.814099108278995, 29.566306142662416 ], [ -95.814303108660198, 29.566334142186939 ], [ -95.814374108478262, 29.566347142139055 ], [ -95.814446108772088, 29.566360142414648 ], [ -95.814585108128426, 29.566386141975141 ], [ -95.814906108177951, 29.566457142019104 ], [ -95.815024108302367, 29.566488142433336 ], [ -95.815403108534952, 29.566632142771322 ], [ -95.815525108638823, 29.566687142702992 ], [ -95.816246109307613, 29.567014142217165 ], [ -95.816496108587032, 29.567139142834453 ], [ -95.817191109119875, 29.567529142245487 ], [ -95.817354109557968, 29.567639142739637 ], [ -95.817512109044273, 29.567755142816296 ], [ -95.817603109069935, 29.56782914229737 ], [ -95.817784109147325, 29.568002143015331 ], [ -95.818198109341353, 29.567687142633687 ], [ -95.818305109187861, 29.56768714274094 ], [ -95.818882109251192, 29.567391142833646 ], [ -95.819253109488727, 29.567165142772119 ], [ -95.819304109317756, 29.567105142492789 ], [ -95.819310109064702, 29.56703314233032 ], [ -95.819279110037897, 29.566967141957516 ], [ -95.819216109229842, 29.566923142500524 ], [ -95.819165109951939, 29.56690114251407 ], [ -95.81905810992437, 29.56690114216812 ], [ -95.818908109597004, 29.566940142496755 ], [ -95.818813109888353, 29.566934142510402 ], [ -95.818775109930257, 29.566896142318484 ], [ -95.818763109321154, 29.566841142500351 ], [ -95.818763109654483, 29.566665142703116 ], [ -95.818788109084394, 29.566616142556946 ], [ -95.818889109832966, 29.566583142743891 ], [ -95.819134109372513, 29.566583142569094 ], [ -95.819203109879695, 29.566561142453036 ], [ -95.819247109335166, 29.566522141895664 ], [ -95.819260109412227, 29.566456142676387 ], [ -95.819247109421227, 29.566385142045512 ], [ -95.819140109618047, 29.566209141950281 ], [ -95.818939109808582, 29.565956141978614 ], [ -95.818945109741122, 29.565912142566681 ], [ -95.818977109476066, 29.565846142152747 ], [ -95.819033109014214, 29.56575814189161 ], [ -95.819115109623908, 29.56565914251815 ], [ -95.819222109777826, 29.565549141829777 ], [ -95.819379109843723, 29.565461142512802 ], [ -95.819480109982052, 29.56542314180566 ], [ -95.819574109716314, 29.565401142094856 ], [ -95.819706109318233, 29.56540114171543 ], [ -95.819806109172632, 29.565390142009413 ], [ -95.819894109422009, 29.565351142284346 ], [ -95.820064109960768, 29.565236141951029 ], [ -95.820448110031478, 29.565070141877211 ], [ -95.820844109391857, 29.565119142267736 ], [ -95.821070109451043, 29.565075141519443 ], [ -95.821121109582649, 29.565086141624754 ], [ -95.821165110332018, 29.565108141525954 ], [ -95.821240110060145, 29.565119141562377 ], [ -95.821611109597171, 29.565119142162054 ], [ -95.822026110381074, 29.565103141517636 ], [ -95.822114110107108, 29.565130141822458 ], [ -95.822321110489057, 29.56525614160914 ], [ -95.822428110782241, 29.565311141671863 ], [ -95.822523110229383, 29.565344141565241 ], [ -95.822611109993346, 29.565355141889814 ], [ -95.822743110631848, 29.565344142056233 ], [ -95.822975110179115, 29.565278142339551 ], [ -95.823126110191041, 29.565256142056249 ], [ -95.823812110720112, 29.565251141799354 ], [ -95.824745110661539, 29.56573214219901 ], [ -95.826201111732061, 29.565964141739066 ], [ -95.826280110905714, 29.565980142210385 ], [ -95.827280111517652, 29.566174141600612 ], [ -95.828666111934439, 29.566343142004399 ], [ -95.82946411233047, 29.566398141600768 ], [ -95.829936112584804, 29.566337142129871 ], [ -95.830024112465154, 29.566304141760682 ], [ -95.831417112148117, 29.565979141870201 ], [ -95.831486112396178, 29.565961142154052 ], [ -95.831916112573438, 29.565850141830236 ], [ -95.832149113091148, 29.565750141616647 ], [ -95.832218112452495, 29.565706141919492 ], [ -95.832350112836878, 29.565656141808354 ], [ -95.832539113191842, 29.565618141371388 ], [ -95.8327841127727, 29.565613141988514 ], [ -95.832847112871505, 29.56559714137509 ], [ -95.832910113164274, 29.565558141416702 ], [ -95.832976112850474, 29.565504141631106 ], [ -95.833005112870424, 29.565480142050614 ], [ -95.833051112505132, 29.565444141382589 ], [ -95.833142113258106, 29.565370141453712 ], [ -95.833218112673194, 29.565233141750792 ], [ -95.833299112565101, 29.56518314171155 ], [ -95.8316001122747, 29.564752141730228 ], [ -95.830008112450443, 29.56440014114418 ], [ -95.829617111928357, 29.564315141488464 ], [ -95.829185111859587, 29.564197141413459 ], [ -95.826841111126697, 29.563636141700204 ], [ -95.826001110663043, 29.563435141309849 ], [ -95.823853110863638, 29.562920141564899 ], [ -95.823151110381232, 29.562714141343836 ], [ -95.822596110562799, 29.56253714126176 ], [ -95.822165109927141, 29.562360140966646 ], [ -95.821578109662994, 29.562043141409042 ], [ -95.821510109791788, 29.56199114163778 ], [ -95.821059109681016, 29.561554141229411 ], [ -95.820652109782273, 29.561087140820565 ], [ -95.820465109291575, 29.560775140624916 ], [ -95.819920109716875, 29.559869140557968 ], [ -95.819878109732386, 29.55979814078464 ], [ -95.819514109669484, 29.559226140989395 ], [ -95.818868108706525, 29.558854141126272 ], [ -95.81868410949545, 29.558729141097604 ], [ -95.818416109065609, 29.558568141049196 ], [ -95.818288108802477, 29.558485140715661 ], [ -95.817929108903314, 29.558300140452328 ], [ -95.817860108604307, 29.558269140302173 ], [ -95.817613108612278, 29.55817814024125 ], [ -95.817198108786783, 29.55808214049301 ], [ -95.817982108556137, 29.558031140754263 ], [ -95.818419108463303, 29.558002140730466 ], [ -95.818897108585944, 29.558007140197173 ], [ -95.819371108826715, 29.557906140377288 ], [ -95.819802109206194, 29.557797140080073 ], [ -95.82020410937163, 29.557615140714052 ], [ -95.820691109905169, 29.55731014033196 ], [ -95.821118109876394, 29.557053139865349 ], [ -95.821409110130645, 29.556883140550031 ], [ -95.821793110031123, 29.556661140036589 ], [ -95.821981109266531, 29.556551140524387 ], [ -95.823604110472715, 29.555522140102202 ], [ -95.827417111036155, 29.553136139448799 ], [ -95.828803111698136, 29.552295138716779 ], [ -95.830359111190219, 29.551371139240761 ], [ -95.831300111868245, 29.550800138505664 ], [ -95.832218112063714, 29.550243138346271 ], [ -95.832367111793204, 29.550149138233397 ], [ -95.832855112670515, 29.54984513841999 ], [ -95.833186112313157, 29.549639138468315 ], [ -95.833519112245, 29.549432138058592 ], [ -95.835036112704884, 29.548508137872499 ], [ -95.837372113135686, 29.54708813812859 ], [ -95.838993113725323, 29.546103137539294 ], [ -95.84034811443054, 29.545278137488147 ], [ -95.843758114789807, 29.543199136885306 ], [ -95.845559114820347, 29.542103136451956 ], [ -95.845810115201886, 29.541950136223516 ], [ -95.847014115344493, 29.541234135872916 ], [ -95.847258116008092, 29.541089136549544 ], [ -95.853328116708653, 29.537303134853989 ], [ -95.853810117392001, 29.537009135171278 ], [ -95.856397118120583, 29.535409134691442 ], [ -95.856694117228045, 29.535224134473403 ], [ -95.856760117378244, 29.535105134715455 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 17, "Tract": "48157675600", "Area_SqMi": 105.13294124274539, "total_2009": 260, "total_2010": 316, "total_2011": 355, "total_2012": 250, "total_2013": 244, "total_2014": 274, "total_2015": 414, "total_2016": 474, "total_2017": 488, "total_2018": 485, "total_2019": 495, "total_2020": 531, "age1": 188, "age2": 295, "age3": 119, "earn1": 154, "earn2": 229, "earn3": 219, "naics_s01": 22, "naics_s02": 49, "naics_s03": 0, "naics_s04": 71, "naics_s05": 13, "naics_s06": 38, "naics_s07": 47, "naics_s08": 2, "naics_s09": 5, "naics_s10": 2, "naics_s11": 7, "naics_s12": 17, "naics_s13": 0, "naics_s14": 54, "naics_s15": 0, "naics_s16": 145, "naics_s17": 4, "naics_s18": 113, "naics_s19": 13, "naics_s20": 0, "race1": 489, "race2": 76, "race3": 1, "race4": 24, "race5": 4, "race6": 8, "ethnicity1": 424, "ethnicity2": 178, "edu1": 97, "edu2": 119, "edu3": 113, "edu4": 85, "Shape_Length": 328201.26543996256, "Shape_Area": 2930926465.0204892, "total_2021": 513, "total_2022": 602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.835371106460627, 29.405317108840212 ], [ -95.835309106432177, 29.404755108790695 ], [ -95.835206106990711, 29.403987108847822 ], [ -95.834788106078889, 29.402075108119522 ], [ -95.834144106301054, 29.399752107801149 ], [ -95.833323105623464, 29.396773106854518 ], [ -95.833051105620854, 29.395791106889511 ], [ -95.832817105611539, 29.395361106870784 ], [ -95.832627105176897, 29.395074106927197 ], [ -95.831390104851465, 29.393894106163479 ], [ -95.831187105055918, 29.393736106334515 ], [ -95.830345104948648, 29.393032106627174 ], [ -95.829996104340964, 29.392740106481739 ], [ -95.8299341043342, 29.392687106435815 ], [ -95.829851105143575, 29.39261710663687 ], [ -95.828751104586033, 29.391686106263556 ], [ -95.828652104424691, 29.39159110615272 ], [ -95.828596104104307, 29.391546106321346 ], [ -95.828476104657554, 29.391449106170899 ], [ -95.826696103423728, 29.390007105637899 ], [ -95.826118103395103, 29.389524106035918 ], [ -95.825915103471033, 29.389355106241254 ], [ -95.8258061030199, 29.389263105688055 ], [ -95.825049102935097, 29.388628105831028 ], [ -95.824281103107324, 29.387986105150034 ], [ -95.824130102675156, 29.387859105261466 ], [ -95.823659103313744, 29.387464105111263 ], [ -95.822793102125416, 29.386739105563343 ], [ -95.822648102805815, 29.386621105210796 ], [ -95.820501102369406, 29.384875104931321 ], [ -95.81978110207568, 29.384282104879841 ], [ -95.817083101198435, 29.38206110458221 ], [ -95.816606101134852, 29.381641104946421 ], [ -95.816302100490461, 29.381374104813734 ], [ -95.815249100472073, 29.380490104320884 ], [ -95.813742100286262, 29.379246103885759 ], [ -95.812661099402149, 29.378382103685759 ], [ -95.812138099633771, 29.377931103960048 ], [ -95.81101509901454, 29.377026104002937 ], [ -95.81060709864073, 29.376692103502211 ], [ -95.809270099072535, 29.375597103434384 ], [ -95.808767098265193, 29.375183103070679 ], [ -95.807730097870675, 29.374281103532002 ], [ -95.806350097609027, 29.37313710356289 ], [ -95.806119098118771, 29.372958102724311 ], [ -95.803997097224084, 29.371197102577504 ], [ -95.802830097293963, 29.370201102906716 ], [ -95.802614097120227, 29.370018102312883 ], [ -95.80215409714414, 29.369656102221914 ], [ -95.801978096339454, 29.369488102170443 ], [ -95.801934096453877, 29.369451102789945 ], [ -95.80191209690831, 29.369433102267138 ], [ -95.801773096899311, 29.369317102606729 ], [ -95.800308096357867, 29.368118102477034 ], [ -95.799452095544012, 29.367417102197596 ], [ -95.797603095703394, 29.365823102274415 ], [ -95.79657009539531, 29.364980101360921 ], [ -95.795133094950643, 29.363807101489918 ], [ -95.79501409445615, 29.363707101901937 ], [ -95.794153094791383, 29.362985101386268 ], [ -95.79276109426138, 29.361832100837677 ], [ -95.792521093459555, 29.361652101348387 ], [ -95.792348093471276, 29.361507101546586 ], [ -95.792253093526199, 29.361430101563023 ], [ -95.791975093956154, 29.36120210104831 ], [ -95.791567093364478, 29.360865101289047 ], [ -95.789683092673442, 29.359340101005287 ], [ -95.787609092538574, 29.35759810013019 ], [ -95.787264092468163, 29.357309100083615 ], [ -95.786318091594794, 29.356526100594198 ], [ -95.784346091021064, 29.354889099767341 ], [ -95.781336090654264, 29.352404099938244 ], [ -95.777639089048662, 29.349351099005766 ], [ -95.776549089221703, 29.348463099290598 ], [ -95.775190088471405, 29.347312098680998 ], [ -95.773369087817755, 29.345771098588948 ], [ -95.771044087742197, 29.343871097890883 ], [ -95.765573086230916, 29.339317097232048 ], [ -95.761974085048138, 29.336332097220385 ], [ -95.761064085010503, 29.335577096796982 ], [ -95.758255084147279, 29.333213096848915 ], [ -95.758197083522674, 29.333165096855641 ], [ -95.756281083537075, 29.331586096012575 ], [ -95.754248082531944, 29.329911095690232 ], [ -95.750882081578936, 29.327127095659719 ], [ -95.75078508187346, 29.327047095418756 ], [ -95.750337081298781, 29.326640094997185 ], [ -95.750091081009955, 29.326415095296714 ], [ -95.749378081342442, 29.325721095616306 ], [ -95.748955081020469, 29.325236095277344 ], [ -95.748421081045137, 29.32453409491638 ], [ -95.7480830814077, 29.32406409458417 ], [ -95.747726080623181, 29.32351909527549 ], [ -95.747359080846877, 29.322935095189475 ], [ -95.747220080747951, 29.322716094954966 ], [ -95.746098080142943, 29.322372095127779 ], [ -95.745425079861235, 29.322166094827065 ], [ -95.736072077854828, 29.319230094195763 ], [ -95.735851077897138, 29.319161094378526 ], [ -95.735619077570831, 29.319089094459617 ], [ -95.719690073645253, 29.314121093753229 ], [ -95.719151073420718, 29.313953094245385 ], [ -95.718898072875859, 29.313874094062292 ], [ -95.718843072762525, 29.313857093514788 ], [ -95.718718072748274, 29.313818093608806 ], [ -95.718651073026237, 29.313797094172056 ], [ -95.718383072412081, 29.313713094233375 ], [ -95.717740072950505, 29.313513093573285 ], [ -95.716867072231636, 29.313241093977393 ], [ -95.716365072390133, 29.313092093944693 ], [ -95.716319072399259, 29.313078094094806 ], [ -95.716068071954425, 29.313000093591061 ], [ -95.715796072268901, 29.31292209377731 ], [ -95.715758072700282, 29.312911093485738 ], [ -95.715744072079573, 29.312907093887425 ], [ -95.714280071591716, 29.312484093371374 ], [ -95.714261072078443, 29.312485094067906 ], [ -95.707705069619166, 29.310431093420437 ], [ -95.707310069505667, 29.310313093809143 ], [ -95.707162069811048, 29.310267093520064 ], [ -95.700984068703335, 29.308348093381554 ], [ -95.694600066334331, 29.306347092652501 ], [ -95.694410066673839, 29.306288092952467 ], [ -95.688069065193332, 29.304325092911768 ], [ -95.688033064324316, 29.304314092659741 ], [ -95.686025063868271, 29.303696092615596 ], [ -95.679561062856763, 29.30166209219097 ], [ -95.674383061008157, 29.300033092099703 ], [ -95.674305060574582, 29.300008092827696 ], [ -95.672792060543614, 29.299532092752063 ], [ -95.672471060301021, 29.299631092222302 ], [ -95.671739060303395, 29.299601092728896 ], [ -95.671350060751465, 29.299447092660909 ], [ -95.671049060119856, 29.299375092198677 ], [ -95.670679060519959, 29.299232092317752 ], [ -95.670359060456704, 29.299062092687809 ], [ -95.670008060318736, 29.298902092790883 ], [ -95.669789059932114, 29.298836092101197 ], [ -95.669475060056214, 29.298765092212516 ], [ -95.669343059597111, 29.298759092671791 ], [ -95.66912405961466, 29.298831092474391 ], [ -95.669036059737024, 29.298913091985927 ], [ -95.668917059611616, 29.299067092644446 ], [ -95.668776059166532, 29.299283092619092 ], [ -95.66876605912951, 29.299298092837649 ], [ -95.668685059736518, 29.299342092408189 ], [ -95.668622059523429, 29.299347092322957 ], [ -95.668540059747059, 29.299342092543235 ], [ -95.668497059281208, 29.299353092874146 ], [ -95.668340059514094, 29.29932009240807 ], [ -95.668221059488218, 29.299276092087844 ], [ -95.668103059794632, 29.299163092818159 ], [ -95.66808305947653, 29.299144092688127 ], [ -95.66795105939643, 29.298979092800188 ], [ -95.667800058854397, 29.298852092361372 ], [ -95.667650059373742, 29.298776092297246 ], [ -95.667474059214456, 29.298754092838983 ], [ -95.667167058676554, 29.298797092793087 ], [ -95.666791058995344, 29.298792092555708 ], [ -95.666659058764466, 29.298808092421673 ], [ -95.66643905934751, 29.298797092537079 ], [ -95.666157058854552, 29.298808092816749 ], [ -95.665875058813683, 29.298830092642255 ], [ -95.665574058893583, 29.298880092135708 ], [ -95.665298058955997, 29.298884092241725 ], [ -95.665260059051647, 29.298885092927438 ], [ -95.665154058245335, 29.298896092305601 ], [ -95.665097058811611, 29.298896092563965 ], [ -95.664997058654393, 29.298847092268105 ], [ -95.6649340584773, 29.298797092489643 ], [ -95.664884058985791, 29.298720092534797 ], [ -95.664846058798872, 29.298605092521854 ], [ -95.664841058476881, 29.298491092745742 ], [ -95.66484005833486, 29.29847809252875 ], [ -95.664821058132105, 29.298385092124732 ], [ -95.664815058810888, 29.297890092297923 ], [ -95.664790058957678, 29.297511091839919 ], [ -95.664728058394516, 29.297340091979301 ], [ -95.664646058814085, 29.297203091758739 ], [ -95.664596058785435, 29.29708209200286 ], [ -95.664546058683314, 29.296895092310887 ], [ -95.664427058859445, 29.296626092102127 ], [ -95.664282058751567, 29.296472091913948 ], [ -95.664044058526443, 29.296285092323902 ], [ -95.663843058187226, 29.296010092268389 ], [ -95.663649057843301, 29.295713091566927 ], [ -95.663436058085395, 29.29549909212961 ], [ -95.663229058019851, 29.295317091915923 ], [ -95.663060058265188, 29.29520209165835 ], [ -95.662790057687545, 29.294960091750756 ], [ -95.662495057754114, 29.294740091564485 ], [ -95.662226057649619, 29.294597091503796 ], [ -95.6618620578665, 29.294509091739748 ], [ -95.66171205712584, 29.294448091829199 ], [ -95.661580057282066, 29.294366091739942 ], [ -95.661404057134021, 29.29428309126116 ], [ -95.66122905746451, 29.294272091365109 ], [ -95.660953057665594, 29.294283091550689 ], [ -95.660727057436517, 29.294344091692235 ], [ -95.660250056897368, 29.294448091736523 ], [ -95.660131057529611, 29.294497091473833 ], [ -95.660025057482898, 29.294525091532371 ], [ -95.65990505666484, 29.294525091579857 ], [ -95.659876057332283, 29.294517091519921 ], [ -95.659780056811854, 29.294481092097438 ], [ -95.659712057195662, 29.294437091935691 ], [ -95.659667057244135, 29.294409091962571 ], [ -95.659492057388803, 29.294134091525091 ], [ -95.659429057155052, 29.294057091386581 ], [ -95.659354057431571, 29.293909091259678 ], [ -95.659191057343023, 29.293684092008846 ], [ -95.659059056756732, 29.293612092008154 ], [ -95.658908057287192, 29.293552092007832 ], [ -95.658783056742323, 29.293519091683844 ], [ -95.658632056932618, 29.29351309195922 ], [ -95.65840005635188, 29.293488091297128 ], [ -95.658175056533466, 29.293464091593922 ], [ -95.65804905631002, 29.293392091963359 ], [ -95.657922056363958, 29.29328409142164 ], [ -95.657798057050201, 29.293178091374944 ], [ -95.657629056711158, 29.293073091151381 ], [ -95.65738505657967, 29.293018091347225 ], [ -95.657309056560578, 29.292986091943504 ], [ -95.657084056189632, 29.292892091373769 ], [ -95.656864055929873, 29.292771091756858 ], [ -95.656754056047689, 29.292675091328263 ], [ -95.656663056555857, 29.292595091520383 ], [ -95.656588056034622, 29.29250109120408 ], [ -95.656401056361631, 29.292404091838726 ], [ -95.656344056066729, 29.292375091176634 ], [ -95.656225056521947, 29.292331091531043 ], [ -95.656124056266052, 29.292281091518827 ], [ -95.656030055882681, 29.292182091148309 ], [ -95.655990056486758, 29.291936091328012 ], [ -95.655943056205729, 29.291643091676836 ], [ -95.655892056364266, 29.291511090989967 ], [ -95.655755056026905, 29.291330091606618 ], [ -95.655698055767928, 29.29128609156556 ], [ -95.655479056303179, 29.29116509113512 ], [ -95.65532405601877, 29.291132091635852 ], [ -95.655247056027989, 29.291116091361161 ], [ -95.655052056002148, 29.291104091480619 ], [ -95.654852055310045, 29.291055091040537 ], [ -95.654745055499973, 29.291008091644738 ], [ -95.654626055723966, 29.290956090869745 ], [ -95.654568055199647, 29.290945091026789 ], [ -95.654507056090893, 29.290934090867069 ], [ -95.654444055482458, 29.29093409119621 ], [ -95.6543620559397, 29.290950091707877 ], [ -95.654231055229346, 29.29106009127371 ], [ -95.654162055597197, 29.291165091653749 ], [ -95.654118055128365, 29.291341090989505 ], [ -95.653986055617608, 29.29172009106059 ], [ -95.653867055972427, 29.291890091622655 ], [ -95.653779055376674, 29.292066091865681 ], [ -95.653741055249625, 29.292242091774469 ], [ -95.653722055370707, 29.292742091291899 ], [ -95.653653055940325, 29.293061091964365 ], [ -95.653626055229509, 29.293111091507498 ], [ -95.653496055753052, 29.293347092127121 ], [ -95.653349055647297, 29.293488092213266 ], [ -95.653157055617925, 29.293644092230497 ], [ -95.652837055027135, 29.294260092140913 ], [ -95.652825054917813, 29.294277091939271 ], [ -95.652737055060271, 29.294402092318204 ], [ -95.652605055301265, 29.294501092227378 ], [ -95.652336055577052, 29.294639091692154 ], [ -95.652235055515959, 29.294727091909504 ], [ -95.652066054955768, 29.294787091677446 ], [ -95.651972055203558, 29.294793091992588 ], [ -95.651928054798262, 29.294804091675942 ], [ -95.651671055414525, 29.294771092207046 ], [ -95.651577055377885, 29.294776092057027 ], [ -95.651207055294265, 29.294743091984298 ], [ -95.651107054555737, 29.294740091956808 ], [ -95.651094054597067, 29.294740092328269 ], [ -95.651006054929823, 29.29473709204882 ], [ -95.6509120553239, 29.294710091997349 ], [ -95.650824055116757, 29.294660092145129 ], [ -95.650809055012886, 29.294640091921138 ], [ -95.650668054993332, 29.294457092092916 ], [ -95.650624054757628, 29.294363092289458 ], [ -95.650486054291804, 29.294226091909554 ], [ -95.650153054830611, 29.294061092438888 ], [ -95.649971054140664, 29.294028092012805 ], [ -95.649896055051641, 29.294006091825761 ], [ -95.649771054294732, 29.293945092385982 ], [ -95.649464053968089, 29.293912091903991 ], [ -95.649257054104538, 29.293967092220765 ], [ -95.649094054707959, 29.294028092045451 ], [ -95.648987054286764, 29.29401709184263 ], [ -95.648711054159662, 29.293769092115284 ], [ -95.648611053875314, 29.293703092353226 ], [ -95.64849805376025, 29.293665092277489 ], [ -95.648354054142203, 29.293654091615309 ], [ -95.648266054434472, 29.293676092218284 ], [ -95.648040054336548, 29.293703091961987 ], [ -95.647965053636128, 29.293697091721359 ], [ -95.647864053779756, 29.293714092117145 ], [ -95.647526053633243, 29.293818092002077 ], [ -95.647256054313331, 29.293967092533329 ], [ -95.647106053408947, 29.294196092368523 ], [ -95.647087053753452, 29.29422509211194 ], [ -95.646992054040311, 29.294291091793642 ], [ -95.646892053972877, 29.294302092047825 ], [ -95.646804053851099, 29.294291092036872 ], [ -95.646735054149758, 29.294258091756149 ], [ -95.646707053548411, 29.2942320925997 ], [ -95.646560053669035, 29.294098092495211 ], [ -95.646416053181483, 29.293912092307497 ], [ -95.646303053860422, 29.293835092333985 ], [ -95.646165053950938, 29.293812091754607 ], [ -95.646064054097977, 29.29384009189058 ], [ -95.645914053841182, 29.293906092492506 ], [ -95.645675053106629, 29.294082092574534 ], [ -95.645563053211617, 29.294181092172401 ], [ -95.645513053838712, 29.294215091997891 ], [ -95.645418053875588, 29.294280092201735 ], [ -95.645268053295055, 29.294312092238972 ], [ -95.645073053595667, 29.294279092150525 ], [ -95.644879053730648, 29.294093091841585 ], [ -95.644870053171488, 29.29408209181695 ], [ -95.644678052874738, 29.293834092310718 ], [ -95.644472053009949, 29.293713091966175 ], [ -95.644352053205594, 29.293696092086122 ], [ -95.644258052819524, 29.293707092360094 ], [ -95.643857052804734, 29.293828092518982 ], [ -95.643700052702329, 29.293949092441931 ], [ -95.643461052945497, 29.294236092631483 ], [ -95.643411052954448, 29.294296091889699 ], [ -95.643317052621924, 29.294372092515243 ], [ -95.643060053371656, 29.294504091958846 ], [ -95.64282205306796, 29.294548092731524 ], [ -95.642703052503052, 29.294526092158296 ], [ -95.642690052784445, 29.294522092793112 ], [ -95.642596052924759, 29.294493092769837 ], [ -95.642514052529634, 29.294482092001751 ], [ -95.642163052706977, 29.294334092579181 ], [ -95.642088052781602, 29.294317092468525 ], [ -95.641956052591979, 29.294300092531639 ], [ -95.64177705288246, 29.294330092091645 ], [ -95.641762052650947, 29.294333092287584 ], [ -95.641724052856034, 29.294361092063816 ], [ -95.641643052252505, 29.29448209216239 ], [ -95.641599052527894, 29.294603092296107 ], [ -95.641624052057097, 29.294773091995122 ], [ -95.641628052610386, 29.294789092735829 ], [ -95.641645052327704, 29.294856092473818 ], [ -95.641718052206585, 29.295136092216779 ], [ -95.641674052883786, 29.295438092872132 ], [ -95.641624052278402, 29.295565092854872 ], [ -95.641556052828264, 29.295636092497556 ], [ -95.641435052885271, 29.295763092912971 ], [ -95.641103051927445, 29.296016092572366 ], [ -95.641021052424477, 29.29611409275773 ], [ -95.640864052755177, 29.296439092380833 ], [ -95.64078905228348, 29.29654909305513 ], [ -95.640657052226445, 29.296642093009662 ], [ -95.640406052774921, 29.296680093312148 ], [ -95.640149052734429, 29.2966530926197 ], [ -95.639980052271582, 29.29657009274861 ], [ -95.63981105193615, 29.296400093023678 ], [ -95.639641051981982, 29.296328093002362 ], [ -95.639516052119944, 29.296317093047492 ], [ -95.639334051768074, 29.296356093104457 ], [ -95.639209052142803, 29.296455093108417 ], [ -95.639139052279759, 29.296614093350499 ], [ -95.639070052414425, 29.297032092953916 ], [ -95.639015051579037, 29.297123093060257 ], [ -95.638844051469846, 29.297191093327534 ], [ -95.638753051464079, 29.297191093000624 ], [ -95.638631052158615, 29.297191093137368 ], [ -95.63841205142397, 29.297059093249061 ], [ -95.638337051291373, 29.29694909301648 ], [ -95.638236051953683, 29.296867093418992 ], [ -95.638111051511174, 29.296801092917583 ], [ -95.638004051745469, 29.296801093204458 ], [ -95.637891052117297, 29.296834092639486 ], [ -95.637760051839948, 29.296905092920607 ], [ -95.637609051698263, 29.296949093086521 ], [ -95.63746505202981, 29.296943093412498 ], [ -95.637346051490539, 29.296905093304591 ], [ -95.637277050987251, 29.296844092893608 ], [ -95.637220051120721, 29.296734092649533 ], [ -95.637214051975548, 29.296723092844413 ], [ -95.637176051551876, 29.296580092525705 ], [ -95.637214051159958, 29.296427092760982 ], [ -95.63726405103499, 29.296311092684011 ], [ -95.637553051528528, 29.296124092881804 ], [ -95.637642051261395, 29.296050093262267 ], [ -95.637704051824457, 29.295998093136113 ], [ -95.637722051677713, 29.295893092548521 ], [ -95.637641051664417, 29.295728093030117 ], [ -95.637390051806946, 29.295563092847097 ], [ -95.637039051850792, 29.295420092521574 ], [ -95.636820050966492, 29.295387092653634 ], [ -95.636675051023275, 29.295415092945071 ], [ -95.636625051124099, 29.295404092987805 ], [ -95.636531050800272, 29.295343092717122 ], [ -95.636475050853093, 29.295244093146845 ], [ -95.636450051455668, 29.295112092942418 ], [ -95.636393050864626, 29.295052092407161 ], [ -95.636324051373862, 29.295024093013684 ], [ -95.636218051252087, 29.295008092428155 ], [ -95.636117050793274, 29.295063092779333 ], [ -95.635985051527456, 29.295189092465467 ], [ -95.635760050677632, 29.295574093030844 ], [ -95.635691050866029, 29.295634093225676 ], [ -95.635571050780854, 29.295623092886235 ], [ -95.635365050742436, 29.295480093238442 ], [ -95.635308050959267, 29.295348092557287 ], [ -95.635333051061778, 29.295172092373381 ], [ -95.635402050434436, 29.294985092472778 ], [ -95.635402050544712, 29.294870092995868 ], [ -95.635359050393532, 29.294667092997948 ], [ -95.635196050673841, 29.294436092758243 ], [ -95.635026050840111, 29.29428709236446 ], [ -95.634895050293508, 29.294199092144481 ], [ -95.634751050882571, 29.294188092134089 ], [ -95.634625050913201, 29.294194092492564 ], [ -95.634418050708192, 29.294237092152294 ], [ -95.634249050361362, 29.294254092371997 ], [ -95.634105050311803, 29.29421009278888 ], [ -95.633967050556848, 29.294116092632358 ], [ -95.633904050557689, 29.293973092169121 ], [ -95.63385405057106, 29.293792092294485 ], [ -95.633798050664524, 29.29364309220194 ], [ -95.633704050825543, 29.293528092530003 ], [ -95.633547050803216, 29.293500092126873 ], [ -95.633365050857378, 29.293539092122021 ], [ -95.633189050694995, 29.293643092835893 ], [ -95.633005050423819, 29.293732092610675 ], [ -95.632995049744892, 29.29373709292847 ], [ -95.632838050293415, 29.293737092366484 ], [ -95.632706050269505, 29.293649092676777 ], [ -95.632537050340375, 29.293418092744847 ], [ -95.632518049904377, 29.293363092126445 ], [ -95.632468050097089, 29.293220092356954 ], [ -95.632355050236868, 29.293077092437379 ], [ -95.632186050336543, 29.292972092733855 ], [ -95.631929049469804, 29.292906092138818 ], [ -95.631697049621607, 29.292829092106192 ], [ -95.63150904948057, 29.292735092145069 ], [ -95.63134004963527, 29.292675092441641 ], [ -95.63123304927052, 29.292680092613907 ], [ -95.631082049712276, 29.292730092776807 ], [ -95.630562049656334, 29.293164092482741 ], [ -95.63040504995385, 29.293246092491312 ], [ -95.630340049134631, 29.293237092461851 ], [ -95.629972049811798, 29.293186092123609 ], [ -95.629878049374867, 29.293143092136592 ], [ -95.629790049673204, 29.293103092612842 ], [ -95.629615049412081, 29.292993092304709 ], [ -95.629414049723849, 29.292911092570261 ], [ -95.629251049439659, 29.292856092894727 ], [ -95.629113049675766, 29.292861092385525 ], [ -95.628825049264393, 29.292993092818058 ], [ -95.628517048742339, 29.293103092120965 ], [ -95.627858048447024, 29.293383092290298 ], [ -95.627727049174851, 29.293449092745988 ], [ -95.627664049335237, 29.293526093001596 ], [ -95.627614048845004, 29.293636092244714 ], [ -95.627501048513054, 29.293745092493687 ], [ -95.627369048635245, 29.293811092586953 ], [ -95.627332048879609, 29.293814092748939 ], [ -95.627181049172037, 29.293828092710388 ], [ -95.627074049043586, 29.293778092894339 ], [ -95.626918048984578, 29.293624092809814 ], [ -95.626824048978449, 29.293470092564736 ], [ -95.626782048382168, 29.293413093039227 ], [ -95.626686048871818, 29.293283092620719 ], [ -95.626542048813931, 29.29315109273163 ], [ -95.626441048134154, 29.293074092851498 ], [ -95.626379048218894, 29.293058092360557 ], [ -95.62632204902792, 29.293047092884393 ], [ -95.626190048009022, 29.293047093023983 ], [ -95.626065047981101, 29.2930960924079 ], [ -95.625946048019998, 29.293201092319467 ], [ -95.625870048459106, 29.293354093018333 ], [ -95.62568104799908, 29.294051093165379 ], [ -95.625657048497075, 29.294140092955381 ], [ -95.625642048581781, 29.294171092965865 ], [ -95.625186048659842, 29.295113092750647 ], [ -95.625092048619322, 29.295256093380605 ], [ -95.625004048233322, 29.295323093484424 ], [ -95.624897048689391, 29.29537209326239 ], [ -95.624766048096944, 29.295394093501663 ], [ -95.62446404798014, 29.295406092698347 ], [ -95.624270048287002, 29.295477093260459 ], [ -95.624088048276377, 29.295604093573068 ], [ -95.62402604815658, 29.295664093560209 ], [ -95.623988048319333, 29.29579609337306 ], [ -95.623957048485195, 29.296055093646281 ], [ -95.623954047830324, 29.296069093425729 ], [ -95.623932048548511, 29.296181093686783 ], [ -95.623888048374141, 29.296280093409667 ], [ -95.62380704828368, 29.296379093569971 ], [ -95.623637047843857, 29.296550093820027 ], [ -95.623481047718016, 29.296671093216943 ], [ -95.623368047856772, 29.296792093269108 ], [ -95.623343048109959, 29.296929093460857 ], [ -95.623362048152856, 29.297088093192258 ], [ -95.623412047661432, 29.297248093415707 ], [ -95.623418047484705, 29.297407093510767 ], [ -95.623393048409497, 29.297506093855258 ], [ -95.623345048086065, 29.297563093538795 ], [ -95.62324304757135, 29.297682093548431 ], [ -95.622842047411979, 29.297842093833417 ], [ -95.622729047484512, 29.297875094107408 ], [ -95.622616047470515, 29.297946094154526 ], [ -95.622578048104018, 29.298012093925905 ], [ -95.622578048058656, 29.298061094041039 ], [ -95.622666048311572, 29.298282094124659 ], [ -95.622736047660382, 29.298562093485266 ], [ -95.622729047989864, 29.298656093561256 ], [ -95.622685047613786, 29.298716093756507 ], [ -95.622598047727323, 29.298788094248728 ], [ -95.622485047654976, 29.298854094172384 ], [ -95.622309047621258, 29.298920093741298 ], [ -95.622234048174406, 29.298933093507394 ], [ -95.62218404783313, 29.298942093673407 ], [ -95.622115048023133, 29.298975093774828 ], [ -95.621958047669523, 29.299074093648276 ], [ -95.621557047608917, 29.299189094468353 ], [ -95.62141304752339, 29.299244094322795 ], [ -95.621149047331869, 29.299343093769348 ], [ -95.621030047363632, 29.299443093998644 ], [ -95.620986047766479, 29.299498094551947 ], [ -95.620974047498777, 29.299662093798549 ], [ -95.620892047123604, 29.299756093991491 ], [ -95.62084204777581, 29.299794094595086 ], [ -95.62082304740855, 29.299844093791208 ], [ -95.620830047804333, 29.299926094178637 ], [ -95.620874047727028, 29.300102094393257 ], [ -95.620924047130103, 29.30019009383307 ], [ -95.620980046983789, 29.300245094665708 ], [ -95.621040047504891, 29.300323094593107 ], [ -95.621087047650306, 29.300383094002289 ], [ -95.621238047058014, 29.300641094558532 ], [ -95.621307047727399, 29.300729094006279 ], [ -95.621388047930466, 29.300762094623405 ], [ -95.621501047248955, 29.300833094023414 ], [ -95.621608048089556, 29.300976094736843 ], [ -95.621677047797007, 29.301113094057364 ], [ -95.621659048028519, 29.30163609491321 ], [ -95.621671047308766, 29.301806094688789 ], [ -95.621728047471692, 29.302081094674669 ], [ -95.621810047940187, 29.302350094768038 ], [ -95.621835047545389, 29.302521094447687 ], [ -95.621829047930547, 29.30259809495012 ], [ -95.621779048202583, 29.302801095025409 ], [ -95.621764047530633, 29.302875094484385 ], [ -95.621710047840097, 29.30315309474895 ], [ -95.621748048190952, 29.303714094539412 ], [ -95.621748048213533, 29.30405509477222 ], [ -95.621779048248925, 29.304220095415918 ], [ -95.621836047894135, 29.304379095310043 ], [ -95.621912047860263, 29.304846095575407 ], [ -95.62196804802457, 29.305006095535116 ], [ -95.622031047941718, 29.305099095083335 ], [ -95.622173047886307, 29.305200095296293 ], [ -95.622326048381723, 29.305308095360797 ], [ -95.623016047817018, 29.305769095032062 ], [ -95.623198047781813, 29.305863095311643 ], [ -95.62331704799378, 29.305945095243654 ], [ -95.623424048374844, 29.306082095783797 ], [ -95.623480048337711, 29.306225095461052 ], [ -95.623493048488996, 29.306313095090854 ], [ -95.623499048185593, 29.30650609584114 ], [ -95.623525048585279, 29.306555095041578 ], [ -95.623625048000605, 29.306632095733619 ], [ -95.623688048643345, 29.306654095733382 ], [ -95.62392604879868, 29.306654095766881 ], [ -95.624070048623736, 29.306676095533259 ], [ -95.624359048245651, 29.30676909556194 ], [ -95.624660048732622, 29.306961095551568 ], [ -95.624817048780329, 29.307137095334639 ], [ -95.624949049268395, 29.307407095403679 ], [ -95.625005048347589, 29.307478095466553 ], [ -95.62509104894923, 29.307549095374956 ], [ -95.625392049206638, 29.307752095623638 ], [ -95.625536048832828, 29.307813095531714 ], [ -95.625718048851752, 29.307851095409635 ], [ -95.626044048867712, 29.308006095687762 ], [ -95.626188048639975, 29.308050095352542 ], [ -95.626514049503811, 29.308193095865807 ], [ -95.626765048958802, 29.308330095367147 ], [ -95.627185049486172, 29.308798095458307 ], [ -95.627286049918226, 29.308880096016384 ], [ -95.627405049118536, 29.308930096116299 ], [ -95.627950049181592, 29.309067095862364 ], [ -95.628070049359351, 29.309183095769455 ], [ -95.628193049785409, 29.309410096090971 ], [ -95.628201049371043, 29.309507095841688 ], [ -95.628019049646525, 29.309645095676469 ], [ -95.6278620500957, 29.309864095788281 ], [ -95.627753050114691, 29.310039095952249 ], [ -95.627649050024317, 29.310233095930709 ], [ -95.627561049556078, 29.310359096058168 ], [ -95.627404049854519, 29.310486095912992 ], [ -95.627260049979995, 29.310573096460431 ], [ -95.627230049817186, 29.310598096309104 ], [ -95.627147049499584, 29.310667096581746 ], [ -95.62707804932505, 29.310788096554134 ], [ -95.62701504965041, 29.310986096261281 ], [ -95.62695204936135, 29.311348096254243 ], [ -95.626882049659557, 29.311575096642166 ], [ -95.626845049272447, 29.311695096627993 ], [ -95.626506049039961, 29.312129096605002 ], [ -95.625784049510372, 29.312986096751992 ], [ -95.625414048924796, 29.313321097007773 ], [ -95.625157049576686, 29.313519097188792 ], [ -95.625009049127428, 29.313602097293906 ], [ -95.624533048635399, 29.313888097202376 ], [ -95.62421304895544, 29.31405909706314 ], [ -95.623925048304883, 29.31419709741429 ], [ -95.623624048889837, 29.314268097061028 ], [ -95.623348048966591, 29.314362096644111 ], [ -95.623047048802007, 29.314488096995735 ], [ -95.622895048913364, 29.314613097004816 ], [ -95.622771048855114, 29.31471409715752 ], [ -95.622639048623157, 29.314780097641716 ], [ -95.622276048497596, 29.315077097273406 ], [ -95.622163048347588, 29.315231097198048 ], [ -95.622132048394207, 29.315277097072286 ], [ -95.62189904872541, 29.315627097712945 ], [ -95.621367047839612, 29.316106097102402 ], [ -95.621260048388351, 29.316232097778585 ], [ -95.621185048478878, 29.316386097954148 ], [ -95.621160047763539, 29.316485097744842 ], [ -95.62108504865472, 29.316567097252708 ], [ -95.620990048563613, 29.31659509741883 ], [ -95.620840048449665, 29.316601097722341 ], [ -95.620633047646777, 29.316506097718538 ], [ -95.620457048044031, 29.316425097251987 ], [ -95.620275047509708, 29.316403098034584 ], [ -95.620144048021203, 29.316414097790048 ], [ -95.620068047916618, 29.316458097771182 ], [ -95.619880048369239, 29.316711097905173 ], [ -95.618802047375866, 29.317520097636017 ], [ -95.618357048065263, 29.317883098066332 ], [ -95.617767047710444, 29.318229098212477 ], [ -95.61749804712521, 29.318460098368075 ], [ -95.617341046947701, 29.318625098395856 ], [ -95.616971047422794, 29.318917098043965 ], [ -95.616582046982501, 29.319153098240744 ], [ -95.616344047255012, 29.319236098512995 ], [ -95.616124046986926, 29.319368098194559 ], [ -95.616012047256163, 29.319522098684647 ], [ -95.615968046818125, 29.319621098617574 ], [ -95.615949046716139, 29.31973109831868 ], [ -95.615943047417403, 29.319846098326888 ], [ -95.615946046748377, 29.320068098152856 ], [ -95.615946046618944, 29.320101098841857 ], [ -95.615949047378464, 29.320286098166683 ], [ -95.615943046617403, 29.320407098336943 ], [ -95.615918046927064, 29.32052309860752 ], [ -95.615830047270791, 29.32073209865608 ], [ -95.615780047515685, 29.320825098696357 ], [ -95.615467046542932, 29.321122098644189 ], [ -95.615240046697323, 29.321286098634634 ], [ -95.615003046737456, 29.32145809876636 ], [ -95.614833046544092, 29.321612099016107 ], [ -95.614758046288955, 29.321793098988859 ], [ -95.614714046591303, 29.321947098803005 ], [ -95.614702046533665, 29.32224909936156 ], [ -95.614732047226312, 29.322448099446071 ], [ -95.614753046478654, 29.322591099066173 ], [ -95.614758046912712, 29.322625098637339 ], [ -95.614790047144098, 29.322838098758528 ], [ -95.614778046815729, 29.323025098766806 ], [ -95.614728046524178, 29.323151099108308 ], [ -95.614652046532555, 29.32328309888684 ], [ -95.614546047224962, 29.323365099049038 ], [ -95.614401046424604, 29.323415099184714 ], [ -95.614207046590991, 29.323454099385611 ], [ -95.613815046958052, 29.323505098950516 ], [ -95.613486046318229, 29.323547098852881 ], [ -95.613322046434533, 29.32358009898541 ], [ -95.613197046332687, 29.323657099609104 ], [ -95.613015046481408, 29.323811099056829 ], [ -95.612438046649231, 29.324268099599216 ], [ -95.612150046203567, 29.324554099296765 ], [ -95.611912046702571, 29.324763100032744 ], [ -95.611749045922508, 29.324928099393386 ], [ -95.61146604636447, 29.325115099803387 ], [ -95.611059046454741, 29.325341099521701 ], [ -95.611036045847612, 29.325355100125812 ], [ -95.61045004566077, 29.325709100141111 ], [ -95.610244046003942, 29.325929099691031 ], [ -95.610218046263682, 29.325979100152779 ], [ -95.610203045521715, 29.326109099731106 ], [ -95.61020004600617, 29.32613310019385 ], [ -95.610137046251708, 29.326331099777629 ], [ -95.610018045503196, 29.326561099634347 ], [ -95.609930046227632, 29.32664409974652 ], [ -95.609830046052764, 29.326710100432738 ], [ -95.609704045730851, 29.326776100244437 ], [ -95.609566046219285, 29.326820099660885 ], [ -95.60942204588649, 29.326842100327099 ], [ -95.609058045455541, 29.326947100131477 ], [ -95.608638045919676, 29.32704609980761 ], [ -95.608475045917999, 29.327073100394568 ], [ -95.608312045542775, 29.327139099903377 ], [ -95.608142045439223, 29.327233099795933 ], [ -95.608000045124882, 29.32733109983943 ], [ -95.607967045049875, 29.327354100143914 ], [ -95.607791045062612, 29.327574100495319 ], [ -95.607718045510566, 29.327673099895897 ], [ -95.607497045713998, 29.327975100275005 ], [ -95.607359045625273, 29.328322100564904 ], [ -95.607165045124475, 29.328883100332913 ], [ -95.607133044821339, 29.329020101031279 ], [ -95.607089045019151, 29.329119100944403 ], [ -95.607046045564374, 29.329190100313216 ], [ -95.606933045229383, 29.32927310096861 ], [ -95.60683204505311, 29.329268100578471 ], [ -95.606707045299729, 29.329246100420004 ], [ -95.606669044887866, 29.329237100895153 ], [ -95.606293045434981, 29.329147100383782 ], [ -95.606192044804118, 29.329152100452909 ], [ -95.605854044605465, 29.32921310039838 ], [ -95.605490044498879, 29.329285100849109 ], [ -95.605414044558955, 29.329318100688067 ], [ -95.605251044785987, 29.32945010076984 ], [ -95.605233044655705, 29.32948310118984 ], [ -95.605214044440203, 29.329642100547215 ], [ -95.605189044607059, 29.330181101096041 ], [ -95.605151044245986, 29.330285100532901 ], [ -95.605083044946284, 29.330604100673629 ], [ -95.604982044530033, 29.330742101172568 ], [ -95.604644044908014, 29.33073610106716 ], [ -95.604531044128393, 29.330725101189866 ], [ -95.604380044791768, 29.330687101353018 ], [ -95.604236044401773, 29.330632101176111 ], [ -95.604123044479167, 29.330566100643768 ], [ -95.603947044154665, 29.330396101046414 ], [ -95.603853044419125, 29.330214100952791 ], [ -95.603696044527069, 29.329953100932528 ], [ -95.603671044316911, 29.32991210052532 ], [ -95.603532044416255, 29.329555100920174 ], [ -95.603438044013629, 29.329390100924325 ], [ -95.603350044511913, 29.329203100562005 ], [ -95.603256044072708, 29.328862100909411 ], [ -95.603228043973601, 29.328672100881111 ], [ -95.603212043676962, 29.328565100501724 ], [ -95.603212043925751, 29.328466100949246 ], [ -95.603168044319077, 29.328307101063224 ], [ -95.602955044390484, 29.328109100571101 ], [ -95.602729044252243, 29.328021100720903 ], [ -95.602534043727971, 29.327961100722618 ], [ -95.602279044211699, 29.327940100872866 ], [ -95.6020510437925, 29.327922100843637 ], [ -95.60170004404651, 29.327845100696614 ], [ -95.601543043649343, 29.327835100652237 ], [ -95.601417043865766, 29.327835100293758 ], [ -95.601116043741314, 29.32790610097836 ], [ -95.600959043497738, 29.327934100161901 ], [ -95.600822043698969, 29.327983100822898 ], [ -95.600652043214879, 29.328082100426766 ], [ -95.600608043077784, 29.328088100758158 ], [ -95.600476042980176, 29.328038100640793 ], [ -95.600307043323298, 29.327868100969486 ], [ -95.600156043214753, 29.327742100398265 ], [ -95.600025043347571, 29.327681100668251 ], [ -95.599700042953742, 29.327618100493325 ], [ -95.599604042798134, 29.327599100219206 ], [ -95.599272043112208, 29.327604100396886 ], [ -95.599052043440452, 29.327632100173783 ], [ -95.598726043324362, 29.327715100514318 ], [ -95.598371042719691, 29.327780100232115 ], [ -95.598067043274483, 29.327836100552499 ], [ -95.597829043111915, 29.327869100684151 ], [ -95.597647042778377, 29.32788010073282 ], [ -95.597421042189922, 29.327880101122837 ], [ -95.597098042375194, 29.32779510083634 ], [ -95.596919042989697, 29.327748100490467 ], [ -95.596524042075131, 29.327660100535613 ], [ -95.596373042722433, 29.327638100771797 ], [ -95.596254042705027, 29.32763810077989 ], [ -95.596135042152369, 29.327660100310819 ], [ -95.595940042293577, 29.327732101075217 ], [ -95.595533041658655, 29.328078100626513 ], [ -95.595420042539715, 29.328210101046523 ], [ -95.595313042332421, 29.328293100762263 ], [ -95.595232042179148, 29.328304101231247 ], [ -95.595114041638041, 29.328304100472284 ], [ -95.59510004213989, 29.328304100680402 ], [ -95.594924041945589, 29.328293100667967 ], [ -95.594836041601127, 29.32826010078276 ], [ -95.594673041864837, 29.328128100612112 ], [ -95.594535041479119, 29.327963101080012 ], [ -95.594523042136245, 29.327897100970144 ], [ -95.594435041854169, 29.327787100674431 ], [ -95.594372041450697, 29.327727100675308 ], [ -95.594265041717279, 29.327688100848029 ], [ -95.594083041497214, 29.327683101134774 ], [ -95.593600041541634, 29.327711100404084 ], [ -95.593186041668119, 29.327705101216086 ], [ -95.592873041628138, 29.32766710119191 ], [ -95.592653041380402, 29.327612100880099 ], [ -95.592478041319723, 29.327592100674782 ], [ -95.592402041033907, 29.327584100740285 ], [ -95.591919040888953, 29.327557100624134 ], [ -95.591619040979978, 29.327566101027369 ], [ -95.591361041584221, 29.327574101187651 ], [ -95.591150040547973, 29.327542100661663 ], [ -95.590800040769082, 29.32749010100375 ], [ -95.59049804092335, 29.327868100856417 ], [ -95.589772040785761, 29.329066101215151 ], [ -95.589667040970738, 29.329375101299469 ], [ -95.589510040358192, 29.329838101299714 ], [ -95.589399040297025, 29.330474101172896 ], [ -95.589435041114115, 29.332430102229246 ], [ -95.589113040448126, 29.334625102433918 ], [ -95.588307040682679, 29.3359131028886 ], [ -95.587194040927642, 29.336909102931788 ], [ -95.585817040065621, 29.337447102998436 ], [ -95.585593039687211, 29.337522103295857 ], [ -95.585014039533178, 29.337716103074165 ], [ -95.584432039893258, 29.337930103245878 ], [ -95.583808039717582, 29.338159103625937 ], [ -95.583029039277989, 29.33844510307463 ], [ -95.58118903900781, 29.339124103998785 ], [ -95.579605038145374, 29.340134104190032 ], [ -95.579207038147274, 29.340625104090137 ], [ -95.578962038746624, 29.341114103767424 ], [ -95.578770038269695, 29.342122104081273 ], [ -95.578844038975944, 29.342868104616748 ], [ -95.579217038532832, 29.343732104316665 ], [ -95.581350039194035, 29.346186104604119 ], [ -95.582178039405918, 29.347523105554814 ], [ -95.582617039292757, 29.348575105659744 ], [ -95.582646040159617, 29.349867105875362 ], [ -95.582647040330585, 29.349910105308091 ], [ -95.582658039861499, 29.350378106167131 ], [ -95.582450039677568, 29.350942105598229 ], [ -95.58210904, 29.351551105671984 ], [ -95.581604039653357, 29.352011106097631 ], [ -95.581070039686864, 29.352337106454659 ], [ -95.580273039090528, 29.352543106052675 ], [ -95.578855038478054, 29.352631106784841 ], [ -95.578499038747481, 29.352660106546306 ], [ -95.577661038449307, 29.35269910648918 ], [ -95.577589038763065, 29.352703106877801 ], [ -95.577573038567039, 29.352704106571956 ], [ -95.577117038092283, 29.352720106545902 ], [ -95.576799038071272, 29.352767106722315 ], [ -95.576108038773214, 29.35286010632273 ], [ -95.575601038036794, 29.35305610694606 ], [ -95.575436038171119, 29.353121106417206 ], [ -95.574851037664217, 29.353460106829079 ], [ -95.574595038139748, 29.353794106586317 ], [ -95.574068037670841, 29.354668107260629 ], [ -95.57386303743553, 29.355545107263055 ], [ -95.573975037868664, 29.356399107275756 ], [ -95.574233037873441, 29.356629107366548 ], [ -95.574491038453274, 29.356858107648296 ], [ -95.574542037741566, 29.356903107232611 ], [ -95.574740038515714, 29.357210107358036 ], [ -95.575490038223705, 29.357899108056596 ], [ -95.575798038210635, 29.358070107460666 ], [ -95.576188038663503, 29.358272107835166 ], [ -95.577122038994801, 29.35865410754673 ], [ -95.577467039124755, 29.358962107341675 ], [ -95.577606039050124, 29.359081107826086 ], [ -95.577782038932725, 29.359232107881166 ], [ -95.578343039200931, 29.359734107884545 ], [ -95.578965038940964, 29.360006108200217 ], [ -95.579807039983805, 29.360375108126238 ], [ -95.579946039442845, 29.360474107674513 ], [ -95.580490039896716, 29.360868108008553 ], [ -95.580632040192782, 29.361271108038245 ], [ -95.580582039561904, 29.361357107844334 ], [ -95.580486039957236, 29.361520108040501 ], [ -95.58065803967483, 29.361588107838017 ], [ -95.580827039642415, 29.361876107920068 ], [ -95.580844039909508, 29.362089108546691 ], [ -95.580710040166863, 29.362335108725134 ], [ -95.58068203973113, 29.362479108036602 ], [ -95.580643040346118, 29.362682108325849 ], [ -95.580306039352365, 29.363209108879094 ], [ -95.579953039347728, 29.363497108827644 ], [ -95.579432039883883, 29.363759108892651 ], [ -95.57925003938854, 29.363854108451843 ], [ -95.578764039847556, 29.364107108551501 ], [ -95.578318038874485, 29.364519108752202 ], [ -95.577947038902195, 29.365107109190316 ], [ -95.577449039525831, 29.366887109770417 ], [ -95.577084039486707, 29.36809210936795 ], [ -95.577531039730417, 29.368167109805547 ], [ -95.577813039043306, 29.368221109884416 ], [ -95.577945039763918, 29.368256109313759 ], [ -95.578010039694036, 29.368273109865907 ], [ -95.578091039917894, 29.368285109825518 ], [ -95.578173039295237, 29.368291109854493 ], [ -95.578294039684948, 29.368313109744104 ], [ -95.578375039150714, 29.368315109444804 ], [ -95.57865703932552, 29.368261109207321 ], [ -95.578780039231759, 29.368256109724257 ], [ -95.578901039946132, 29.368234109870603 ], [ -95.579024039477645, 29.368225109406573 ], [ -95.579103039879627, 29.368207109659867 ], [ -95.57914403986473, 29.368202109687733 ], [ -95.579431039506602, 29.368221109685951 ], [ -95.579718039698349, 29.368207109234302 ], [ -95.579841039573694, 29.368219109242339 ], [ -95.579880040188456, 29.368229109359834 ], [ -95.580163039747319, 29.368277109991958 ], [ -95.580204040303556, 29.368278109926639 ], [ -95.580367040053218, 29.368264109383777 ], [ -95.580407040167003, 29.368257109213175 ], [ -95.580602040012295, 29.368198109195426 ], [ -95.580676040090609, 29.36816710979511 ], [ -95.580747040255417, 29.368131109302325 ], [ -95.580785040614373, 29.368120109402792 ], [ -95.581029040426117, 29.368090109230167 ], [ -95.581224040184097, 29.368032109406524 ], [ -95.581261040160442, 29.36801510971268 ], [ -95.581363040527819, 29.36795610966912 ], [ -95.581460040773848, 29.367889109082519 ], [ -95.581489040124268, 29.367863109456692 ], [ -95.581787040330354, 29.36752010926967 ], [ -95.581865039928687, 29.367448109230939 ], [ -95.581947040461799, 29.367442109261447 ], [ -95.582029040583535, 29.367450109131546 ], [ -95.582220040910656, 29.367515109629483 ], [ -95.582323040714797, 29.367574109500804 ], [ -95.58248404075951, 29.367686109353293 ], [ -95.582511040374641, 29.367713109701111 ], [ -95.582714040992116, 29.367984109321185 ], [ -95.582887040591487, 29.368271109904157 ], [ -95.58296604042576, 29.368436109402172 ], [ -95.582992040306252, 29.368504109723467 ], [ -95.583029040372892, 29.368718109153932 ], [ -95.583034040436701, 29.368862109555042 ], [ -95.582987040248895, 29.369038109855225 ], [ -95.582960041007965, 29.369216109808811 ], [ -95.582883040333797, 29.369421109311318 ], [ -95.582798040310706, 29.36962311013674 ], [ -95.582690041001129, 29.369857110265077 ], [ -95.582643040968719, 29.369914110007308 ], [ -95.582604040386215, 29.369978110027308 ], [ -95.582505040434441, 29.370093109792993 ], [ -95.582474040161742, 29.37011710949098 ], [ -95.582440040435102, 29.370137110175865 ], [ -95.582327040579258, 29.370180109896559 ], [ -95.582287040104816, 29.370189110115721 ], [ -95.582206040368206, 29.370197110166661 ], [ -95.582124040897057, 29.370187110110415 ], [ -95.582044040653955, 29.370172109717029 ], [ -95.582005040520997, 29.370161110085601 ], [ -95.581933040241765, 29.37012610946153 ], [ -95.581868040017994, 29.370082109454373 ], [ -95.581800040346764, 29.370042110074841 ], [ -95.581684040452799, 29.370005109625804 ], [ -95.581609040477176, 29.369975109658643 ], [ -95.581569040024462, 29.36996610992556 ], [ -95.581488040427033, 29.369956109803724 ], [ -95.581447040458997, 29.369957109765593 ], [ -95.581406040534731, 29.369963109743573 ], [ -95.581167040495913, 29.370014109981359 ], [ -95.580973040266116, 29.370073110314213 ], [ -95.580813040245701, 29.370101109869935 ], [ -95.580603039902499, 29.370216110135587 ], [ -95.580511040056976, 29.3702861097204 ], [ -95.58045204061915, 29.370336109639702 ], [ -95.580342040410244, 29.370529110485812 ], [ -95.580305039983713, 29.370669110272996 ], [ -95.580311040579247, 29.370777109897386 ], [ -95.5803440397885, 29.370955110139871 ], [ -95.580341040495384, 29.3710631102748 ], [ -95.580359039832189, 29.3711691099993 ], [ -95.580396039742524, 29.37131011013572 ], [ -95.580401040030026, 29.371345110249099 ], [ -95.580436040575094, 29.371449110034135 ], [ -95.58050704003297, 29.371578110516989 ], [ -95.580600040329756, 29.371697110319094 ], [ -95.580773040134659, 29.371899110302515 ], [ -95.580860040657043, 29.371976109988143 ], [ -95.58088404074401, 29.372044110019772 ], [ -95.580892040821965, 29.372080110401935 ], [ -95.5809210406983, 29.372147110125411 ], [ -95.581004040226659, 29.372271110736733 ], [ -95.581157040274945, 29.372440110803321 ], [ -95.58135104078606, 29.372626110474002 ], [ -95.581429040876998, 29.372709110539923 ], [ -95.581451040983666, 29.372739110848858 ], [ -95.581506040233791, 29.372836110243558 ], [ -95.581547040778361, 29.372898110204414 ], [ -95.581572040364549, 29.372927110392176 ], [ -95.581615040704918, 29.372988110806926 ], [ -95.581715040765289, 29.373103110425649 ], [ -95.581779040472099, 29.373195110869979 ], [ -95.581827040617313, 29.37325311050397 ], [ -95.581949041079895, 29.373350110299047 ], [ -95.58216604090957, 29.373451110455385 ], [ -95.582432040455075, 29.373547110932286 ], [ -95.582513040759835, 29.373560110974264 ], [ -95.582758041216096, 29.373583110283899 ], [ -95.582840040909147, 29.373581110366491 ], [ -95.582962040525175, 29.373564110642587 ], [ -95.583041040685885, 29.373542110455165 ], [ -95.583114040830793, 29.373509110764243 ], [ -95.583375040894879, 29.37333411085871 ], [ -95.583488041341894, 29.373292110395258 ], [ -95.583523041151707, 29.37327311084146 ], [ -95.583614041363361, 29.373199110857616 ], [ -95.583678040784974, 29.37310711060541 ], [ -95.583733040875302, 29.373010110165239 ], [ -95.583806041342811, 29.372923110057553 ], [ -95.583836041437394, 29.372899110628207 ], [ -95.58394204123735, 29.372844110568622 ], [ -95.583981041626544, 29.372833110049118 ], [ -95.5841020410368, 29.372809110401256 ], [ -95.584179040735862, 29.372785110352211 ], [ -95.584234041027372, 29.372757110746015 ], [ -95.584357041138034, 29.372762110559677 ], [ -95.584480041076347, 29.372773110461651 ], [ -95.584725041034702, 29.372782109921051 ], [ -95.58488904156296, 29.372771110001018 ], [ -95.585053040947315, 29.372777110282978 ], [ -95.585500041166952, 29.372834110680309 ], [ -95.585787041790937, 29.372854110389518 ], [ -95.585950041373565, 29.372835110071925 ], [ -95.586065041369977, 29.372802110619162 ], [ -95.586185041984663, 29.372826110457282 ], [ -95.586226041912909, 29.372831110118135 ], [ -95.586350041518358, 29.372831110163748 ], [ -95.586432041438854, 29.372835110071861 ], [ -95.586473042139303, 29.372832110006925 ], [ -95.586513041829079, 29.372824110490182 ], [ -95.586622041881725, 29.372875110720877 ], [ -95.586864042243931, 29.37291911000764 ], [ -95.587069042290068, 29.372914110645315 ], [ -95.587109041995376, 29.372906110048167 ], [ -95.587221042042756, 29.37286010994768 ], [ -95.587378041617072, 29.372819110215278 ], [ -95.587619041995396, 29.372774110415069 ], [ -95.587660041924821, 29.372770110686048 ], [ -95.587740041776797, 29.372755110228766 ], [ -95.587781042376875, 29.372752110664038 ], [ -95.587904042218909, 29.372758110091123 ], [ -95.588273041973693, 29.372760110169828 ], [ -95.58860104261646, 29.372776110214261 ], [ -95.588744042527892, 29.372774110319703 ], [ -95.588888042087859, 29.372772110542627 ], [ -95.588970042030184, 29.372776109793982 ], [ -95.589172042904707, 29.372811110133117 ], [ -95.589366042906832, 29.372870110535018 ], [ -95.589546042905454, 29.372957110140565 ], [ -95.589650042206884, 29.373014110273502 ], [ -95.589774042313493, 29.373109110133125 ], [ -95.589953042427624, 29.373257110155002 ], [ -95.590087042285901, 29.37343811012558 ], [ -95.590115042992466, 29.373465110021527 ], [ -95.590214043234639, 29.37353011073175 ], [ -95.590286042759629, 29.37356411014575 ], [ -95.59043604275557, 29.373623110639695 ], [ -95.590503042864142, 29.373664110794319 ], [ -95.59053004272937, 29.373692110492449 ], [ -95.590622043267828, 29.373811110789848 ], [ -95.590766042599384, 29.373986110660788 ], [ -95.590869043004119, 29.374099110776854 ], [ -95.590978043026098, 29.374251110486057 ], [ -95.591053043163981, 29.374419110410763 ], [ -95.591064043238447, 29.374454110678972 ], [ -95.591079042704266, 29.374597110972811 ], [ -95.591104043246659, 29.374703110756741 ], [ -95.591179042646274, 29.374922110862865 ], [ -95.59119804280482, 29.374979110913586 ], [ -95.591225043278584, 29.375047110557233 ], [ -95.591244042921417, 29.375079110529885 ], [ -95.591420043447144, 29.375321110353557 ], [ -95.59146804268903, 29.375379110827001 ], [ -95.591623043020107, 29.375548110516618 ], [ -95.591777043544113, 29.375760110384064 ], [ -95.591796043461599, 29.375792111176366 ], [ -95.591840042761277, 29.375893111100382 ], [ -95.591854042863616, 29.375964110499847 ], [ -95.591851043232637, 29.376000110893024 ], [ -95.591828042889816, 29.376069110352979 ], [ -95.591763043166054, 29.376202110711787 ], [ -95.591720043206095, 29.37630311085951 ], [ -95.591711043573184, 29.376338111327559 ], [ -95.59168204342015, 29.37640511066364 ], [ -95.591615043161397, 29.376537111144813 ], [ -95.591573043458666, 29.37659811053269 ], [ -95.591500043588354, 29.37672711067642 ], [ -95.591459042810897, 29.376790110626615 ], [ -95.591315042722172, 29.376964111289531 ], [ -95.591248043199485, 29.377054111173251 ], [ -95.591118042905705, 29.377193110697551 ], [ -95.590995042774225, 29.377287110953347 ], [ -95.590901042967033, 29.377405111390122 ], [ -95.590756042879093, 29.37751811091584 ], [ -95.590663043027362, 29.377637110735996 ], [ -95.590575043452517, 29.377799111553227 ], [ -95.590550043438128, 29.377868111185013 ], [ -95.590549042731638, 29.377904111152223 ], [ -95.590564042981072, 29.378011111199211 ], [ -95.590564043045845, 29.378083111700629 ], [ -95.590552042799217, 29.378190110878091 ], [ -95.590482043036303, 29.378508111469309 ], [ -95.590438042631789, 29.378758111041481 ], [ -95.590440043396299, 29.378793111658023 ], [ -95.590435042716265, 29.378865111704485 ], [ -95.590434042992811, 29.378973111280263 ], [ -95.590416043364513, 29.379223111455889 ], [ -95.590407042715583, 29.379295111335008 ], [ -95.590357042991812, 29.379543111624052 ], [ -95.590349042618797, 29.379675111874267 ], [ -95.590335042803133, 29.379794111776519 ], [ -95.59029904323431, 29.379934111439479 ], [ -95.590246043137029, 29.380070112122656 ], [ -95.590115043462788, 29.380334111594895 ], [ -95.590048042521815, 29.380541111428855 ], [ -95.590029042929729, 29.380720111858711 ], [ -95.590026043264459, 29.380828111776378 ], [ -95.590030043424903, 29.380863112009518 ], [ -95.590058043378264, 29.380931112059582 ], [ -95.590093042542563, 29.380996111609115 ], [ -95.590119043433873, 29.381024111970945 ], [ -95.590242043608754, 29.381119111649443 ], [ -95.590472042996979, 29.381196111989734 ], [ -95.590590043381269, 29.381227111905904 ], [ -95.590630043682054, 29.381233111848474 ], [ -95.59070804270192, 29.381255112045718 ], [ -95.590814043233323, 29.381309111879148 ], [ -95.590950043671967, 29.381389111572116 ], [ -95.591042043457733, 29.381461111705697 ], [ -95.59109604302796, 29.381515112132149 ], [ -95.591281043839061, 29.381656111862473 ], [ -95.591378043645193, 29.381722111956314 ], [ -95.591521043562096, 29.381791111738451 ], [ -95.591558043461646, 29.381805112065486 ], [ -95.591678043373008, 29.381829112027503 ], [ -95.591716043358744, 29.381842112386742 ], [ -95.59174804318485, 29.381864111927474 ], [ -95.591803043390613, 29.381917112139949 ], [ -95.591860043654137, 29.381941112089084 ], [ -95.591964043422223, 29.381952111664187 ], [ -95.592330043898201, 29.381964111582462 ], [ -95.592696044054179, 29.381928111714675 ], [ -95.592817043961574, 29.381910112304457 ], [ -95.592899044201474, 29.381910111839677 ], [ -95.593021043640903, 29.381921112320466 ], [ -95.593140044257296, 29.381945111630451 ], [ -95.593221043462108, 29.381953112144771 ], [ -95.593260043726829, 29.381965112128835 ], [ -95.593380044411646, 29.381981111824626 ], [ -95.593668043513674, 29.3819721122949 ], [ -95.593912044504236, 29.381995111965765 ], [ -95.594197044023844, 29.382013111861131 ], [ -95.594358044115751, 29.382036111720961 ], [ -95.594641044070215, 29.382066112371859 ], [ -95.594880044495412, 29.382116112151682 ], [ -95.595003043997863, 29.382116111763871 ], [ -95.595043043975522, 29.382110111802465 ], [ -95.595124043979581, 29.382116111716869 ], [ -95.595204044691556, 29.382128111551253 ], [ -95.595285044479979, 29.382131111722703 ], [ -95.595367044595136, 29.382128111900936 ], [ -95.595447044784379, 29.382115111574421 ], [ -95.595488044398337, 29.382117112240937 ], [ -95.595529044339713, 29.382114112000426 ], [ -95.595649044413761, 29.382134112155207 ], [ -95.595689044256829, 29.38214411217788 ], [ -95.59580404477704, 29.382183111793022 ], [ -95.595909044672183, 29.382238111932967 ], [ -95.596058044257035, 29.382360112237485 ], [ -95.596083044257782, 29.382388112037862 ], [ -95.596150044731147, 29.38247811162395 ], [ -95.596187044639578, 29.382543111717144 ], [ -95.596227044868357, 29.382644111741957 ], [ -95.596245045083847, 29.382714112114822 ], [ -95.596279044518994, 29.382928112178249 ], [ -95.596290044926135, 29.383144112029306 ], [ -95.596320044504139, 29.383394112248642 ], [ -95.596317044447176, 29.383717111992695 ], [ -95.596333044655665, 29.384038111954293 ], [ -95.596370044302517, 29.384323112741775 ], [ -95.596431045278678, 29.384607112318111 ], [ -95.59648904524137, 29.384927112219156 ], [ -95.596517045188236, 29.385032112871915 ], [ -95.596549045029093, 29.38509811279242 ], [ -95.59660504441284, 29.385194112501225 ], [ -95.596652044942459, 29.385253112623911 ], [ -95.596679044594268, 29.385280112524956 ], [ -95.596813045078207, 29.38536311236599 ], [ -95.596849044608049, 29.385379112203029 ], [ -95.597119045264549, 29.385469112600841 ], [ -95.597400044883003, 29.385518112806519 ], [ -95.597523045291339, 29.385518112724483 ], [ -95.597687045540113, 29.385508112141206 ], [ -95.597848044784172, 29.385479112711238 ], [ -95.598012045228003, 29.385472112274368 ], [ -95.598134045003434, 29.385458112506608 ], [ -95.598254045567188, 29.385438112965389 ], [ -95.598333045450858, 29.385419112278598 ], [ -95.598519045694687, 29.385344112574007 ], [ -95.598626045852427, 29.385293112604739 ], [ -95.598802045603591, 29.385201112837617 ], [ -95.598940045768288, 29.385124112420691 ], [ -95.599203045444767, 29.384951112383799 ], [ -95.599413046023969, 29.384781112774533 ], [ -95.599644045571864, 29.384578111930004 ], [ -95.599784045311381, 29.3844481123908 ], [ -95.599914046100778, 29.384308112617845 ], [ -95.599988045521286, 29.384221112260725 ], [ -95.600124045540269, 29.384043112044306 ], [ -95.600321045431997, 29.383728112367258 ], [ -95.600470046096618, 29.383513112203012 ], [ -95.600549045534848, 29.383387111834942 ], [ -95.600617045562146, 29.383298112374906 ], [ -95.600720045372938, 29.383142111983894 ], [ -95.600913045485214, 29.382867111574885 ], [ -95.601033046094813, 29.382771112258556 ], [ -95.601066045640209, 29.38275011191276 ], [ -95.601095046160836, 29.382724111751688 ], [ -95.601185046445821, 29.382604111455048 ], [ -95.601203045456089, 29.382573111914077 ], [ -95.601223046311958, 29.382467111993655 ], [ -95.601285045544103, 29.382334111326216 ], [ -95.601320046140216, 29.382270111739526 ], [ -95.601341046262661, 29.382200112095038 ], [ -95.60135404630276, 29.382130111877842 ], [ -95.601357046126182, 29.382058112166018 ], [ -95.601334046172909, 29.381952111517542 ], [ -95.601298045788212, 29.3818491117019 ], [ -95.601216046101015, 29.38171011138472 ], [ -95.60116404562784, 29.38161311144232 ], [ -95.601098045480128, 29.381522111763914 ], [ -95.601023045466917, 29.38143711145025 ], [ -95.600683045818329, 29.38123511160132 ], [ -95.600563046129693, 29.381138111183752 ], [ -95.600506045295745, 29.381086111752261 ], [ -95.600466046039429, 29.38107811174083 ], [ -95.600428045733068, 29.381063111718539 ], [ -95.600321045847878, 29.38101011151754 ], [ -95.600266045960666, 29.38095711130298 ], [ -95.600121045620611, 29.380891111208918 ], [ -95.599980045159981, 29.380817111191789 ], [ -95.599809045960413, 29.380718111523827 ], [ -95.599579045032698, 29.380569111718671 ], [ -95.599511045200757, 29.380529111847714 ], [ -95.599392045646766, 29.380502111374582 ], [ -95.599351045807012, 29.380499111706033 ], [ -95.599245045737518, 29.38044611170594 ], [ -95.59921504579188, 29.380422111315895 ], [ -95.599116045507884, 29.380358111528054 ], [ -95.599080045801827, 29.380340111888504 ], [ -95.599041044853436, 29.380331111417199 ], [ -95.598966045505847, 29.380303111116387 ], [ -95.598713044772921, 29.380184111413456 ], [ -95.598610045471588, 29.380127111703665 ], [ -95.598547044876142, 29.38008311160581 ], [ -95.598510045399408, 29.380066111787507 ], [ -95.598384044909949, 29.379976111118452 ], [ -95.598244045447984, 29.379799111620503 ], [ -95.598209045314647, 29.379697111231589 ], [ -95.59818404512302, 29.37955411093348 ], [ -95.598192044550814, 29.379375110995756 ], [ -95.59827704485825, 29.37921111082737 ], [ -95.598374044574712, 29.379095110899701 ], [ -95.598436045263668, 29.379002111468953 ], [ -95.598447045351278, 29.378967111039707 ], [ -95.598464045220425, 29.378843111135122 ], [ -95.598480044939024, 29.378773110827794 ], [ -95.598471044740847, 29.378558110803581 ], [ -95.598486045427265, 29.378524111390799 ], [ -95.598536045010832, 29.378313110690534 ], [ -95.598550044902169, 29.378279111044574 ], [ -95.598614045170152, 29.378187111213887 ], [ -95.598626045604959, 29.378153111163595 ], [ -95.598651045433243, 29.377974111067235 ], [ -95.59868504469172, 29.377909110799184 ], [ -95.598763044627475, 29.377826110869666 ], [ -95.598842045423908, 29.377764111300991 ], [ -95.598931045024017, 29.377681110800889 ], [ -95.599059045312842, 29.377594111108085 ], [ -95.599095044902214, 29.377577110787374 ], [ -95.59914304523052, 29.377519110913482 ], [ -95.599221045527926, 29.377436110737353 ], [ -95.59940104542801, 29.377290110513258 ], [ -95.599625045756071, 29.377132111204048 ], [ -95.599847044897444, 29.377039111095694 ], [ -95.599924045846478, 29.377015111055041 ], [ -95.600043045363591, 29.376992110278735 ], [ -95.600206045220133, 29.376987110346132 ], [ -95.600369045076008, 29.376996110932357 ], [ -95.600448045844971, 29.377012110958994 ], [ -95.600603045943913, 29.377060110435508 ], [ -95.600675045421752, 29.377092110936896 ], [ -95.600713045761808, 29.377105110575851 ], [ -95.601039045705676, 29.377324110374964 ], [ -95.601162046056643, 29.377419110743762 ], [ -95.601248045818252, 29.377496110802237 ], [ -95.601450045921823, 29.377721110996333 ], [ -95.601506045629577, 29.377773110779295 ], [ -95.601538045984739, 29.377796110868619 ], [ -95.60159304607447, 29.377848110438514 ], [ -95.601715045563623, 29.377944111138145 ], [ -95.601916046004916, 29.378173111107174 ], [ -95.602028046414674, 29.378277111152592 ], [ -95.602254046392829, 29.378433110966885 ], [ -95.602398046305268, 29.378502110980879 ], [ -95.602496045812686, 29.378567111039963 ], [ -95.602552046311402, 29.378620110551257 ], [ -95.602784045804029, 29.378767110653126 ], [ -95.603178046160807, 29.37908011101193 ], [ -95.603226046659643, 29.379137111374845 ], [ -95.60330704606551, 29.379217111490579 ], [ -95.603481046547458, 29.379369111292196 ], [ -95.603513046814925, 29.379392110876012 ], [ -95.603584046455069, 29.379427111007285 ], [ -95.603793046132012, 29.379541111228434 ], [ -95.603905046467219, 29.379585111492073 ], [ -95.603943046430544, 29.379596110707897 ], [ -95.604024046213951, 29.379611111380971 ], [ -95.604064046054319, 29.379614111261951 ], [ -95.604103046608913, 29.379626110789495 ], [ -95.604250046701893, 29.379688111573575 ], [ -95.60428804671055, 29.379699111592938 ], [ -95.604369046704932, 29.37970811098587 ], [ -95.604724046498248, 29.379797110728529 ], [ -95.604925046324283, 29.379833111071171 ], [ -95.605007047215352, 29.379836110987139 ], [ -95.605129047025883, 29.379824110784924 ], [ -95.605249047327248, 29.379800110739886 ], [ -95.605286047181266, 29.37978411090835 ], [ -95.605389046611279, 29.379725110862193 ], [ -95.60546504704638, 29.379697111250646 ], [ -95.605545047108464, 29.379683111087147 ], [ -95.605586046691045, 29.379680111391401 ], [ -95.605668046621375, 29.379682110701246 ], [ -95.605831046953739, 29.379697110993199 ], [ -95.605909047459647, 29.379721110781951 ], [ -95.60606604663856, 29.379760111425316 ], [ -95.606294047546726, 29.379842111114524 ], [ -95.606401047393305, 29.379893111550526 ], [ -95.60688904778695, 29.380153111126646 ], [ -95.607056046865253, 29.380256110756747 ], [ -95.607227047574384, 29.380350110973989 ], [ -95.607299046912956, 29.380384110835308 ], [ -95.607624047521838, 29.380560111323401 ], [ -95.607852047183044, 29.380685111362176 ], [ -95.607926047148425, 29.380714111173333 ], [ -95.607998047855304, 29.380749110855753 ], [ -95.608196047566025, 29.380877111295362 ], [ -95.608225047749144, 29.380902111465289 ], [ -95.608370048097981, 29.381077111146723 ], [ -95.608415047569878, 29.38113711144576 ], [ -95.608495047549567, 29.381262111601721 ], [ -95.608562047318472, 29.381392110894986 ], [ -95.608586047296029, 29.381422111210409 ], [ -95.608652047372345, 29.381553111407609 ], [ -95.608694047375906, 29.381625111547287 ], [ -95.608775047960748, 29.381749111474026 ], [ -95.608790047921104, 29.381782111123979 ], [ -95.608830047922979, 29.381844110989366 ], [ -95.608846047628106, 29.381877111655779 ], [ -95.608945047616544, 29.382151111445665 ], [ -95.609064048302045, 29.382456111944663 ], [ -95.609127047788263, 29.382700111612184 ], [ -95.609148048201689, 29.382806111359887 ], [ -95.609159048366976, 29.382948111704128 ], [ -95.609172048344945, 29.383018111278375 ], [ -95.609209047862336, 29.383157111603246 ], [ -95.609266048420395, 29.383331111591033 ], [ -95.60928504807444, 29.383362111302006 ], [ -95.609363048406365, 29.383446111453161 ], [ -95.609452047674182, 29.383519111835465 ], [ -95.609550048174469, 29.383583111692644 ], [ -95.609799047979024, 29.383706112130163 ], [ -95.609913048236507, 29.3837451119139 ], [ -95.609990048041112, 29.383767111417828 ], [ -95.610192048722766, 29.383778111925754 ], [ -95.61023204843768, 29.383771111752381 ], [ -95.610388048005049, 29.383727112183262 ], [ -95.610460048668116, 29.38369211162388 ], [ -95.610535048750762, 29.383664111689331 ], [ -95.610616047992551, 29.383657111570887 ], [ -95.610698048902719, 29.383660111519365 ], [ -95.610820048509666, 29.383655111770203 ], [ -95.610941048249757, 29.383642111292477 ], [ -95.611102048419255, 29.383614111589353 ], [ -95.611265048439662, 29.38361011162916 ], [ -95.611387048162086, 29.383603111916983 ], [ -95.611428048632476, 29.383595111340032 ], [ -95.611509048413396, 29.383591112128144 ], [ -95.611630048727989, 29.383571111615868 ], [ -95.611706048965004, 29.383545111496389 ], [ -95.611867048438143, 29.383520111390791 ], [ -95.612071048993982, 29.38353411160422 ], [ -95.612111048748005, 29.383544112064559 ], [ -95.612147048878754, 29.383560111363721 ], [ -95.612493048920953, 29.383666111820467 ], [ -95.612869048520508, 29.383882111959231 ], [ -95.612948048629988, 29.38390311156958 ], [ -95.613023049117999, 29.383930111813687 ], [ -95.613130048929705, 29.383984111670109 ], [ -95.613379048826573, 29.384173111478617 ], [ -95.613592049347488, 29.384342112127801 ], [ -95.613648049391671, 29.384394111938203 ], [ -95.613778048744024, 29.38453211183807 ], [ -95.613834049078889, 29.38458311139561 ], [ -95.613895049686491, 29.384630111581309 ], [ -95.614024049039486, 29.384717112108362 ], [ -95.614099049197705, 29.384746112064857 ], [ -95.614138049851874, 29.384756111834097 ], [ -95.614278049206533, 29.384830111687034 ], [ -95.614431049476238, 29.384948112111598 ], [ -95.614529049100739, 29.385013111949888 ], [ -95.61456504992519, 29.385031111841609 ], [ -95.614791049026181, 29.385282112347038 ], [ -95.614909049939627, 29.385428112413383 ], [ -95.615090049775063, 29.385616112111968 ], [ -95.615157049215028, 29.385705112266002 ], [ -95.61530304931199, 29.385921111959242 ], [ -95.615333049369255, 29.385945112189944 ], [ -95.615380049618622, 29.386002112294999 ], [ -95.61546905012726, 29.386075112113247 ], [ -95.615599049302659, 29.386162111993226 ], [ -95.615636049593974, 29.386178112193271 ], [ -95.615774050210291, 29.386253112244226 ], [ -95.615807049979409, 29.386275112229111 ], [ -95.615878050144019, 29.386310111888257 ], [ -95.61597804958744, 29.386373112191311 ], [ -95.616177049927998, 29.386550112409829 ], [ -95.616226049542291, 29.386606112145014 ], [ -95.616297050371969, 29.386735111755584 ], [ -95.616318049927216, 29.386804112639865 ], [ -95.616333049623819, 29.38687511254702 ], [ -95.616336049919241, 29.386910112558194 ], [ -95.616333050363792, 29.386946112325081 ], [ -95.616291050286662, 29.387085111964115 ], [ -95.616242050421434, 29.387143112302592 ], [ -95.616085050086028, 29.387307112534675 ], [ -95.615960049732948, 29.387398112115054 ], [ -95.615903049680725, 29.387447111979 ], [ -95.615747049580463, 29.387559112758787 ], [ -95.6155540501491, 29.387688112637598 ], [ -95.615487050199519, 29.387729112883051 ], [ -95.615451049941939, 29.387746112183013 ], [ -95.615301049635832, 29.3878031123337 ], [ -95.615217049340146, 29.387892112278188 ], [ -95.615114049657123, 29.387951112662453 ], [ -95.615006049449988, 29.388001112788736 ], [ -95.614843050145197, 29.388110112386499 ], [ -95.61475404916456, 29.388185112791721 ], [ -95.614730049487761, 29.388214112289784 ], [ -95.614672050102257, 29.388309112401519 ], [ -95.614645050102411, 29.388414112274827 ], [ -95.614651049982442, 29.388558112657755 ], [ -95.614659050087866, 29.388629113089834 ], [ -95.614693049990635, 29.388733112394835 ], [ -95.614708049677262, 29.388767112337995 ], [ -95.614798049319262, 29.388887112666083 ], [ -95.615003049627191, 29.389061112646193 ], [ -95.615198050306873, 29.389194112484969 ], [ -95.615403050306682, 29.389419112572842 ], [ -95.615478050368012, 29.389547112648362 ], [ -95.615522049794379, 29.389648112826091 ], [ -95.615541049739718, 29.389718112927085 ], [ -95.615545049592015, 29.389754113182963 ], [ -95.615568049542503, 29.38985911245965 ], [ -95.615606050155066, 29.389961113253442 ], [ -95.615660049472908, 29.390058112518911 ], [ -95.615728050004051, 29.390148112511081 ], [ -95.615779049712941, 29.390204112490007 ], [ -95.615800050216322, 29.390234112956549 ], [ -95.615812049912364, 29.390269112705955 ], [ -95.615841049856371, 29.390410113210372 ], [ -95.615846049647445, 29.390554113370666 ], [ -95.615843050213314, 29.39066111283887 ], [ -95.615818050330574, 29.390875113061007 ], [ -95.615801050500608, 29.390945113171025 ], [ -95.615719049835391, 29.391109113090778 ], [ -95.615661049683069, 29.391205112856497 ], [ -95.615646049855783, 29.391238112974722 ], [ -95.615616049546048, 29.391343112756047 ], [ -95.615609049876312, 29.391414112863277 ], [ -95.61561804960084, 29.391486113420662 ], [ -95.615638049865069, 29.391555113384797 ], [ -95.615660050471746, 29.391585113034971 ], [ -95.615739049625304, 29.391669113613471 ], [ -95.615822049661048, 29.391748113585706 ], [ -95.615973049688435, 29.391870113246554 ], [ -95.616059049866948, 29.391913113340042 ], [ -95.616100050396099, 29.391917113351955 ], [ -95.616306050611925, 29.39190811360605 ], [ -95.616508050773291, 29.391876112885448 ], [ -95.616626050527387, 29.391845113645758 ], [ -95.616741050043998, 29.391808113057003 ], [ -95.616781050425303, 29.391799113240683 ], [ -95.616862050626537, 29.391788113033886 ], [ -95.616981050886309, 29.391760113181682 ], [ -95.617129050406973, 29.391698112751985 ], [ -95.617613050758919, 29.391613113314811 ], [ -95.617735050670092, 29.391595112899786 ], [ -95.617816050417176, 29.391587113532246 ], [ -95.617897050415166, 29.391574113254979 ], [ -95.618052050302438, 29.391528113202579 ], [ -95.618086050927261, 29.391507113295514 ], [ -95.618136050541921, 29.391451112692316 ], [ -95.618153050270635, 29.391418113326669 ], [ -95.61816105053596, 29.391383113125492 ], [ -95.618264051170684, 29.391149113459313 ], [ -95.618335051184758, 29.391020113022343 ], [ -95.618414050833621, 29.390937112824311 ], [ -95.618472050462529, 29.390886113399592 ], [ -95.618581050777024, 29.390835113050027 ], [ -95.618731050444765, 29.390779112945591 ], [ -95.618813051256865, 29.390774112686383 ], [ -95.618894050943382, 29.390775113338183 ], [ -95.619016050502879, 29.390789112804548 ], [ -95.619095050953945, 29.390808112762855 ], [ -95.619207051158284, 29.390853113341009 ], [ -95.619283050927223, 29.39087911333451 ], [ -95.619362050428961, 29.390899113280756 ], [ -95.619511051414491, 29.390960112695719 ], [ -95.619642050673988, 29.391046112713152 ], [ -95.619727050767722, 29.391124112828727 ], [ -95.619806050820259, 29.391206113317082 ], [ -95.619854050628618, 29.391263112608197 ], [ -95.61996705068168, 29.391492112793713 ], [ -95.620089050915595, 29.39163711315787 ], [ -95.620134051474253, 29.391697112749341 ], [ -95.620150051181525, 29.391730112778816 ], [ -95.620225051707422, 29.39193711277737 ], [ -95.620338051272952, 29.392165113300926 ], [ -95.620374051410465, 29.392230113297355 ], [ -95.620385050997839, 29.392264113267043 ], [ -95.620438050971742, 29.392361113103757 ], [ -95.620460051040297, 29.392392112980851 ], [ -95.620489051326004, 29.392459113021779 ], [ -95.620500050948863, 29.392494113152665 ], [ -95.6205320508586, 29.392560113112896 ], [ -95.620572051729866, 29.392622113598676 ], [ -95.620636051763412, 29.392754113473433 ], [ -95.620714051871644, 29.392996112936469 ], [ -95.620844051195647, 29.393338113337286 ], [ -95.620889051920898, 29.393512113326874 ], [ -95.621021051000056, 29.393927113496087 ], [ -95.621049051196167, 29.393994113342011 ], [ -95.621084051506145, 29.394059113973139 ], [ -95.621096051396265, 29.394094113173171 ], [ -95.621113051642183, 29.394126113833696 ], [ -95.621198051639425, 29.39424911340382 ], [ -95.621209051717187, 29.394283113294122 ], [ -95.621240051718331, 29.394349113912188 ], [ -95.621305052056769, 29.394440113583343 ], [ -95.621387051417855, 29.394520113628943 ], [ -95.621406051588721, 29.39455211340255 ], [ -95.621582051858852, 29.394750113910639 ], [ -95.621628051409672, 29.394810113816948 ], [ -95.621656051632343, 29.394836113681272 ], [ -95.621726052017877, 29.394924113653765 ], [ -95.621763051817453, 29.394987113777137 ], [ -95.62178805211434, 29.395056113699642 ], [ -95.62180605166381, 29.395198113314301 ], [ -95.621797051881998, 29.39541311391336 ], [ -95.621753051571758, 29.395588113876759 ], [ -95.621705051315672, 29.39568611402532 ], [ -95.621647052198128, 29.39578111428953 ], [ -95.621599052204218, 29.395839113854915 ], [ -95.621488051861149, 29.395944114205303 ], [ -95.621439051837939, 29.39600111351367 ], [ -95.621384051437801, 29.39605511390338 ], [ -95.621215051288914, 29.396155114118169 ], [ -95.621071051531132, 29.396223113967064 ], [ -95.62100405138581, 29.396264114294265 ], [ -95.620949051674742, 29.396318113626645 ], [ -95.620878052063247, 29.396405114457856 ], [ -95.620848051948983, 29.396430114117383 ], [ -95.620781051559675, 29.396473113771883 ], [ -95.620697051862322, 29.396627113839493 ], [ -95.620587051740173, 29.396778114199087 ], [ -95.620456050992829, 29.39700011415006 ], [ -95.620414051104191, 29.397060113877579 ], [ -95.620377051513088, 29.3971251146477 ], [ -95.620300051754867, 29.39729011392145 ], [ -95.620268051594479, 29.397394114320647 ], [ -95.620255051245053, 29.397465114280532 ], [ -95.620240051742371, 29.397509114056433 ], [ -95.620152050938415, 29.397738114768284 ], [ -95.620130051376677, 29.397768114558549 ], [ -95.620054051693984, 29.397852114259678 ], [ -95.619969051861034, 29.397931114497961 ], [ -95.619850051642743, 29.398028114562052 ], [ -95.619649051115374, 29.39815311403925 ], [ -95.619542051574896, 29.398206114026703 ], [ -95.619352051061526, 29.398275114753684 ], [ -95.619232051493626, 29.398296114728321 ], [ -95.619110051295763, 29.39831011418541 ], [ -95.618947051312517, 29.398310114582465 ], [ -95.618825050695591, 29.398306114283375 ], [ -95.618745051580419, 29.398293114448688 ], [ -95.618705051373439, 29.398290114647796 ], [ -95.618547050964949, 29.398264114831665 ], [ -95.618425050674048, 29.398254114043191 ], [ -95.618384051312844, 29.39825811441764 ], [ -95.618264050820898, 29.398248114483611 ], [ -95.61822405081395, 29.398241114756551 ], [ -95.61781305085249, 29.398263114905397 ], [ -95.617772050355754, 29.398269114505887 ], [ -95.617697051054378, 29.398295114721872 ], [ -95.617580050305975, 29.398326114184634 ], [ -95.617375050587555, 29.398336114649698 ], [ -95.617013050411089, 29.398397114771651 ], [ -95.616858050897989, 29.398444114924907 ], [ -95.616785050661093, 29.398477114143141 ], [ -95.616660050491603, 29.398571115060314 ], [ -95.61660805096578, 29.398626114851002 ], [ -95.616575051046325, 29.398692115052039 ], [ -95.616540051060298, 29.398796114447567 ], [ -95.616532050691873, 29.398831114534055 ], [ -95.61652105033572, 29.39893811511061 ], [ -95.616515050418201, 29.399082114285395 ], [ -95.616520050956169, 29.399117114348279 ], [ -95.616557050723955, 29.399256114577053 ], [ -95.616619050924641, 29.399389114495239 ], [ -95.616661050695129, 29.399490114775841 ], [ -95.616731051024914, 29.399579114788235 ], [ -95.616747050349375, 29.399639114406206 ], [ -95.616763050142268, 29.399673114967982 ], [ -95.616893050495804, 29.399898115066922 ], [ -95.617030050996078, 29.400158115162156 ], [ -95.617089050502528, 29.400254114557502 ], [ -95.617192050829672, 29.400409115039967 ], [ -95.617326050874837, 29.400670114751218 ], [ -95.617423051151562, 29.400829115354195 ], [ -95.617468051154233, 29.400888115502177 ], [ -95.617509051295698, 29.400951115189269 ], [ -95.617556051317834, 29.401050115076096 ], [ -95.617595050784303, 29.40115211498475 ], [ -95.617659051189136, 29.401245114781016 ], [ -95.617725050747922, 29.401376114844332 ], [ -95.617772051086874, 29.401434114823424 ], [ -95.617836050768915, 29.401527115406168 ], [ -95.617850051377744, 29.401561114817067 ], [ -95.617881050676402, 29.401665115419455 ], [ -95.617894050669477, 29.401736114788466 ], [ -95.617897051192088, 29.401808115595589 ], [ -95.617916051221826, 29.401915115152839 ], [ -95.617919051166254, 29.402022115631912 ], [ -95.61790505072041, 29.40209311530618 ], [ -95.617884050743299, 29.402162115164852 ], [ -95.617864050932866, 29.402269115283197 ], [ -95.617845051376321, 29.402412115319056 ], [ -95.617840051300533, 29.40248411566224 ], [ -95.61782605073671, 29.402555115322603 ], [ -95.617795051568379, 29.4026581150504 ], [ -95.61778205114301, 29.402766115696785 ], [ -95.617763050840338, 29.402835115637092 ], [ -95.617603050691855, 29.403165115394593 ], [ -95.617518050691174, 29.403366115226852 ], [ -95.617458050582911, 29.403461115421926 ], [ -95.617365050644068, 29.403578115635479 ], [ -95.617258050490037, 29.403687115384979 ], [ -95.616945050608933, 29.403973115738935 ], [ -95.616811051056217, 29.404110115590989 ], [ -95.616762051325935, 29.404208115798188 ], [ -95.616739051151313, 29.404314115380956 ], [ -95.616745050791693, 29.404422116224776 ], [ -95.616758051377161, 29.404493115697015 ], [ -95.616784050680366, 29.404561115434884 ], [ -95.616825050874937, 29.40462311599838 ], [ -95.616944051100901, 29.404769115905765 ], [ -95.617067051251851, 29.4048641162208 ], [ -95.617199050882007, 29.40494911612673 ], [ -95.617303050965688, 29.40500611578938 ], [ -95.617378051429625, 29.405034115949725 ], [ -95.6176300506134, 29.405152116234763 ], [ -95.617841050749476, 29.405264115501179 ], [ -95.61794905074855, 29.40531211602476 ], [ -95.618061051066121, 29.405353116383122 ], [ -95.618100051685147, 29.405363115653714 ], [ -95.618250051522935, 29.405419115883408 ], [ -95.618500051416831, 29.405542116142112 ], [ -95.618574051550141, 29.405571115722989 ], [ -95.61879305188009, 29.405667115606153 ], [ -95.619111051045905, 29.405832116009883 ], [ -95.619259052020595, 29.405891116424179 ], [ -95.619339051784365, 29.40591011591982 ], [ -95.619619051449263, 29.405966115603011 ], [ -95.619823051293793, 29.405969116213878 ], [ -95.61998705138663, 29.405956115874627 ], [ -95.620103051878758, 29.405923116464503 ], [ -95.620329052178448, 29.405840116023356 ], [ -95.620366051753948, 29.4058231162408 ], [ -95.620442051689807, 29.405798115561101 ], [ -95.620479052233932, 29.405782115942824 ], [ -95.620547051528845, 29.405743116135934 ], [ -95.6206890517565, 29.405672116049082 ], [ -95.620855051745025, 29.405571115981239 ], [ -95.620918052026212, 29.405526115737079 ], [ -95.621057051803831, 29.405451116288724 ], [ -95.621292051837131, 29.405309116213623 ], [ -95.621462052532237, 29.405211116058595 ], [ -95.621562052488713, 29.405149115435528 ], [ -95.621654052605862, 29.405079115882 ], [ -95.621803052372925, 29.404957116065372 ], [ -95.621888052431686, 29.404881116061624 ], [ -95.62198205218624, 29.404791115634506 ], [ -95.622178052691311, 29.40466211534828 ], [ -95.622581052768098, 29.404419115779927 ], [ -95.6227180519179, 29.404341115898081 ], [ -95.623080052343965, 29.404176115652824 ], [ -95.623185052134758, 29.40412011585056 ], [ -95.623549052381748, 29.403884115865448 ], [ -95.623815052648339, 29.403790115514944 ], [ -95.624085052342309, 29.403704115120195 ], [ -95.624165052719775, 29.403687115583757 ], [ -95.624730052862944, 29.403591115043181 ], [ -95.625016052871004, 29.403567115252677 ], [ -95.62518005294902, 29.403579115593519 ], [ -95.625383052848335, 29.40361011528649 ], [ -95.625547052942466, 29.403619115568425 ], [ -95.625793052874741, 29.403641115693215 ], [ -95.626039053397861, 29.403646115205657 ], [ -95.626080053552258, 29.403644115504761 ], [ -95.626201053609563, 29.40362311559694 ], [ -95.626324053267354, 29.403624115667874 ], [ -95.626365053317429, 29.403619115369285 ], [ -95.626483053050606, 29.403588115338952 ], [ -95.6265980536227, 29.403550114976703 ], [ -95.626701053811075, 29.403491115603305 ], [ -95.626763053189336, 29.403443114872179 ], [ -95.626940053641121, 29.403280114889707 ], [ -95.626993053933631, 29.403225114817129 ], [ -95.627172053232769, 29.40298411482566 ], [ -95.627340052969132, 29.402736115413056 ], [ -95.627377053198458, 29.402671114657881 ], [ -95.627439053252104, 29.402500115396119 ], [ -95.627468053934464, 29.402394115043244 ], [ -95.627496053304171, 29.402216115117987 ], [ -95.627497053368927, 29.40210811487416 ], [ -95.627492053388622, 29.402036115407437 ], [ -95.627506053072693, 29.401893115323357 ], [ -95.627526053712756, 29.401823114881136 ], [ -95.627570053373162, 29.401722115065112 ], [ -95.627607053060444, 29.401657115136945 ], [ -95.627710053298983, 29.401502115022904 ], [ -95.627813053300954, 29.401390114887192 ], [ -95.627967053344037, 29.401271115176439 ], [ -95.62811005312652, 29.401198115186258 ], [ -95.628367053885569, 29.401085114731689 ], [ -95.628592053656547, 29.400997114285893 ], [ -95.6287470542092, 29.400949114873423 ], [ -95.628819054198374, 29.400914114281715 ], [ -95.628898053543153, 29.400895114347282 ], [ -95.629205053632774, 29.400791114261416 ], [ -95.629478054220314, 29.400713114450571 ], [ -95.629740054386076, 29.400608114398739 ], [ -95.62997105435754, 29.4005331145827 ], [ -95.630042054549818, 29.400496114854839 ], [ -95.630140053624132, 29.400430114601516 ], [ -95.630195053765391, 29.400377114476285 ], [ -95.630371054573644, 29.400226114913917 ], [ -95.630439054364018, 29.40018511441026 ], [ -95.630511054278884, 29.400151114902368 ], [ -95.630629054679005, 29.400118114613047 ], [ -95.630670054013834, 29.400112114649112 ], [ -95.630752054486635, 29.4001101146123 ], [ -95.630915054420754, 29.400131114110533 ], [ -95.631075054492896, 29.400163114494809 ], [ -95.631273054188171, 29.400213114211454 ], [ -95.631792054695765, 29.400324114118511 ], [ -95.631950054227048, 29.400365114136346 ], [ -95.632229054547309, 29.40042611473163 ], [ -95.632384054169577, 29.400473114492559 ], [ -95.632494054366177, 29.400521114882974 ], [ -95.632670055049346, 29.400614114617923 ], [ -95.632702054760841, 29.400636114733484 ], [ -95.632760054341873, 29.400687114652644 ], [ -95.632892055042348, 29.400825114175749 ], [ -95.632987054699242, 29.40094311411492 ], [ -95.633051055198408, 29.401035114147046 ], [ -95.633104054844537, 29.401171114942183 ], [ -95.633126055166571, 29.401240114420979 ], [ -95.633160055392892, 29.401306114484271 ], [ -95.633188055255729, 29.401374114317598 ], [ -95.633250055403522, 29.401467114514148 ], [ -95.633262054559424, 29.401587114973793 ], [ -95.633274055310181, 29.401912114687537 ], [ -95.633275054635703, 29.402056114413568 ], [ -95.6332690544629, 29.40209111522962 ], [ -95.633265054917601, 29.40216311493031 ], [ -95.633259054862108, 29.402199115013605 ], [ -95.633224055192571, 29.402302114550814 ], [ -95.633190054673022, 29.402368115009132 ], [ -95.633111054598743, 29.402494114665775 ], [ -95.633063055075283, 29.402553114769763 ], [ -95.632946055239316, 29.402653114909519 ], [ -95.632844054623106, 29.402714114749784 ], [ -95.632540055115072, 29.402823114881361 ], [ -95.632306054783427, 29.402893114894077 ], [ -95.632107055220303, 29.402939115006291 ], [ -95.631906054763846, 29.402976115196818 ], [ -95.63182705443117, 29.402995115099866 ], [ -95.631745054561065, 29.403006114673456 ], [ -95.631665055062683, 29.403023115118451 ], [ -95.63147605440507, 29.403093115118619 ], [ -95.631329054033685, 29.403158114810743 ], [ -95.631168054840117, 29.403269115516522 ], [ -95.630984054019848, 29.403414115490847 ], [ -95.630821053993174, 29.403575115243171 ], [ -95.630693054498892, 29.403717115598543 ], [ -95.630637054882769, 29.403769114920635 ], [ -95.630534054535232, 29.403880115188795 ], [ -95.630412054672462, 29.403976115421564 ], [ -95.630345054402923, 29.404017114995252 ], [ -95.630199054082652, 29.404084115589441 ], [ -95.630002054603082, 29.404136115380254 ], [ -95.629771053737173, 29.404211115385767 ], [ -95.629567054047584, 29.404232114976772 ], [ -95.629528054255786, 29.40424311540642 ], [ -95.629400053856401, 29.404333115720689 ], [ -95.629344054306316, 29.404386115593017 ], [ -95.629320053993865, 29.40441511580379 ], [ -95.629175053720303, 29.40463411560556 ], [ -95.629100054087942, 29.404762115042338 ], [ -95.629017053898096, 29.404964115386225 ], [ -95.629002053594874, 29.405035115133561 ], [ -95.628957053897878, 29.405135115223644 ], [ -95.628945054335844, 29.40517011515319 ], [ -95.628874053779285, 29.405451115722126 ], [ -95.628843053713624, 29.405556115310272 ], [ -95.628788053876406, 29.405691116095703 ], [ -95.628760053702464, 29.405833115488893 ], [ -95.628750054150402, 29.406012116114947 ], [ -95.628743054363213, 29.406048116051512 ], [ -95.628653053703815, 29.406287115353003 ], [ -95.628622054106742, 29.406391115633141 ], [ -95.628557053720627, 29.406562115409226 ], [ -95.62849705401851, 29.406696116039782 ], [ -95.628417054025817, 29.406822115792146 ], [ -95.628373053877979, 29.406883116312375 ], [ -95.628185054220523, 29.407073115791558 ], [ -95.628125053366873, 29.40712211637414 ], [ -95.627962053622809, 29.407232115956521 ], [ -95.627926053864584, 29.407250116157165 ], [ -95.627865053346071, 29.407289115876672 ], [ -95.627827053435311, 29.407304115584427 ], [ -95.627757053878653, 29.407342116200713 ], [ -95.627618054232912, 29.407474115888899 ], [ -95.627594053737965, 29.407503115800061 ], [ -95.627578053386799, 29.407537116401734 ], [ -95.627535053681001, 29.407712115981344 ], [ -95.627526053995197, 29.407784116540224 ], [ -95.627519053556625, 29.407928116521301 ], [ -95.627472053635444, 29.408393116189767 ], [ -95.627461053291967, 29.408609116605991 ], [ -95.627464054118121, 29.409005116359982 ], [ -95.627486053329804, 29.409184116233586 ], [ -95.627502053698009, 29.409255116142223 ], [ -95.627570054151207, 29.409425116346686 ], [ -95.627661053745044, 29.409545116654243 ], [ -95.627688053390742, 29.409573116292126 ], [ -95.627805053708784, 29.409674116401657 ], [ -95.627907054031425, 29.409734116166565 ], [ -95.628233054541752, 29.409887116263402 ], [ -95.62856805426685, 29.410025116369994 ], [ -95.628644054086365, 29.41005311628474 ], [ -95.628837053881057, 29.410115116712603 ], [ -95.628994054156109, 29.410158116579133 ], [ -95.629115054434962, 29.410177116970829 ], [ -95.629197054392847, 29.41018511664171 ], [ -95.629238053983784, 29.410183116797569 ], [ -95.629318054240315, 29.410164116457448 ], [ -95.629431054568727, 29.410122116538947 ], [ -95.629575054418154, 29.410051116913966 ], [ -95.629642054853392, 29.410010116763114 ], [ -95.629888054846106, 29.409819116595006 ], [ -95.630004054372918, 29.409716116697602 ], [ -95.63002905478433, 29.409688116496042 ], [ -95.630113054189025, 29.40956411600045 ], [ -95.630294055020741, 29.409281116660651 ], [ -95.630529055037897, 29.408901116664222 ], [ -95.630665054147826, 29.408720115866764 ], [ -95.630729054411901, 29.408628115807783 ], [ -95.630833055103324, 29.408516116065133 ], [ -95.630924054638697, 29.408444116263446 ], [ -95.631062054536969, 29.408365115833053 ], [ -95.631324054301317, 29.408190115983253 ], [ -95.631392054848661, 29.408149115848218 ], [ -95.631500054277296, 29.408097116395361 ], [ -95.631576054681389, 29.408068115980303 ], [ -95.63161505481267, 29.408059116174467 ], [ -95.631697054652392, 29.408048115684409 ], [ -95.63182005510096, 29.408046116394775 ], [ -95.631901054733575, 29.408056115725934 ], [ -95.631939054918135, 29.408071116280446 ], [ -95.631973054486366, 29.408090115879286 ], [ -95.632069055357803, 29.408159116095252 ], [ -95.632175054975335, 29.408269116203705 ], [ -95.632480054825493, 29.408563116135085 ], [ -95.632682055591673, 29.408790116427451 ], [ -95.632754055225163, 29.40887811611525 ], [ -95.632890054930556, 29.409014116395245 ], [ -95.632940054727086, 29.40907111661625 ], [ -95.633121055661121, 29.409312116147692 ], [ -95.633140054943723, 29.409344116695021 ], [ -95.633237055673959, 29.409543115937232 ], [ -95.633243055308583, 29.409579116138644 ], [ -95.633228055359851, 29.409722116514796 ], [ -95.633209055059922, 29.409792116700785 ], [ -95.633145055197247, 29.409964116783332 ], [ -95.633036055454326, 29.410116116232555 ], [ -95.632827055481073, 29.410340116356025 ], [ -95.632784055499471, 29.410401116404056 ], [ -95.632731054742848, 29.410499116845497 ], [ -95.632708055039402, 29.410528116700903 ], [ -95.632474055151576, 29.41073211622097 ], [ -95.632310055093001, 29.410893116975334 ], [ -95.632231054669717, 29.410976117071733 ], [ -95.63211805527142, 29.411081116327452 ], [ -95.632037055434182, 29.411163116269694 ], [ -95.631960054810179, 29.411248116434585 ], [ -95.631927055364997, 29.411276116527059 ], [ -95.631873055028379, 29.411324116501412 ], [ -95.631860055208477, 29.411365116791149 ], [ -95.631833054772088, 29.411392116358428 ], [ -95.631680054534684, 29.411512117090933 ], [ -95.631315054565718, 29.41185511640543 ], [ -95.630905055315864, 29.412208116673547 ], [ -95.630659054702519, 29.412400117078299 ], [ -95.63019605414874, 29.412701116947769 ], [ -95.630161054927584, 29.412718116676604 ], [ -95.630083054312095, 29.41274211740415 ], [ -95.630012054848962, 29.412778117141389 ], [ -95.629844054756148, 29.412882117368433 ], [ -95.629781054083821, 29.412928117424403 ], [ -95.629642054828139, 29.41306211685238 ], [ -95.629618054626832, 29.413091117125202 ], [ -95.62957205400258, 29.413191117369717 ], [ -95.629529055020129, 29.413330116821673 ], [ -95.629517054701182, 29.413474116885318 ], [ -95.629535054847594, 29.413618117714645 ], [ -95.629726054934125, 29.414319117614443 ], [ -95.629811054414077, 29.414597117442934 ], [ -95.629851054680472, 29.414699117592015 ], [ -95.629903054547185, 29.414798117661984 ], [ -95.630005054613392, 29.414911117206238 ], [ -95.630067054821936, 29.414959117360191 ], [ -95.630377055112177, 29.41513611800508 ], [ -95.63048105468647, 29.415175117393556 ], [ -95.630662055123054, 29.415264117163776 ], [ -95.630772054906515, 29.415311117390218 ], [ -95.630866054491065, 29.415381117554407 ], [ -95.630894055384445, 29.415407117914011 ], [ -95.630913055057277, 29.415438117674217 ], [ -95.631000054865851, 29.415514117254677 ], [ -95.63102605480708, 29.415542117985296 ], [ -95.631117054633108, 29.415663117548693 ], [ -95.631207054886218, 29.415825117588554 ], [ -95.631554055463226, 29.416519118080245 ], [ -95.631840055268171, 29.417118117609839 ], [ -95.63207305488497, 29.417619118432516 ], [ -95.632406055141161, 29.418318117781677 ], [ -95.632778056023909, 29.419157117906998 ], [ -95.63284305534728, 29.419290118725101 ], [ -95.632898055368514, 29.419387118713352 ], [ -95.632958055732345, 29.419481118780791 ], [ -95.633035056149765, 29.419566118074691 ], [ -95.633123055816753, 29.419641118566162 ], [ -95.633175056006166, 29.419698118342641 ], [ -95.633314055698378, 29.419876118870796 ], [ -95.633376055956489, 29.42001011886391 ], [ -95.633466055303842, 29.420172118854321 ], [ -95.633552055610963, 29.420413118529108 ], [ -95.633589055727555, 29.42062611861828 ], [ -95.633560055790966, 29.42105911869389 ], [ -95.633462055656778, 29.421665118377707 ], [ -95.633351055599164, 29.422161118785755 ], [ -95.633304055414555, 29.42241011855365 ], [ -95.633271055391205, 29.422624118862444 ], [ -95.633268056187418, 29.422696119172642 ], [ -95.633274055766464, 29.422804119361793 ], [ -95.633298055967288, 29.422983119214972 ], [ -95.633350055463225, 29.423195119002116 ], [ -95.633386055911842, 29.423298119100192 ], [ -95.633446055978268, 29.423432119053011 ], [ -95.633496056159089, 29.423570119400047 ], [ -95.633704055645651, 29.424192119691373 ], [ -95.633790055619201, 29.424470119580395 ], [ -95.633798055611365, 29.424506119505743 ], [ -95.633813056382252, 29.424758119140026 ], [ -95.633798056504858, 29.424829119180771 ], [ -95.633740056530726, 29.425002119049406 ], [ -95.633671056121912, 29.425132119819306 ], [ -95.633600055949543, 29.425220119235895 ], [ -95.633544056480972, 29.42527311910592 ], [ -95.633513055944576, 29.425297119708596 ], [ -95.633377056470323, 29.425379119722741 ], [ -95.633190055929077, 29.425455119225553 ], [ -95.633074055808265, 29.425492119270412 ], [ -95.632875055995427, 29.425538119632797 ], [ -95.63259305566072, 29.425586119679931 ], [ -95.632393056012646, 29.425629119809397 ], [ -95.632189055268313, 29.425658119356136 ], [ -95.631870056096787, 29.425728120057688 ], [ -95.631800055529695, 29.425774119724114 ], [ -95.631765055279445, 29.425792120078345 ], [ -95.631630056032577, 29.425875119376414 ], [ -95.631490055079681, 29.425951119419288 ], [ -95.631345055558683, 29.426020119367521 ], [ -95.6312330554195, 29.426065119852062 ], [ -95.631125055340178, 29.42611612012896 ], [ -95.631056055894788, 29.426156120215801 ], [ -95.630670055045314, 29.426426119918837 ], [ -95.630615055609809, 29.426479119461401 ], [ -95.630574055214737, 29.426542119957524 ], [ -95.630563054835363, 29.426576119719932 ], [ -95.630550054829072, 29.426647120244048 ], [ -95.630548055865063, 29.42671911955053 ], [ -95.630575055400215, 29.426825120360959 ], [ -95.630589055397223, 29.426859119882323 ], [ -95.630663055069959, 29.42698811956144 ], [ -95.630685055211075, 29.42701811984827 ], [ -95.630713055192587, 29.427045120254402 ], [ -95.630804055933027, 29.427118119806874 ], [ -95.630994055162333, 29.427188120237513 ], [ -95.631310055281347, 29.427357120262155 ], [ -95.631528055959834, 29.427458119965127 ], [ -95.631598055897868, 29.427497119891889 ], [ -95.631662055357722, 29.427543120338889 ], [ -95.631750055783314, 29.427618119695051 ], [ -95.631855055492665, 29.427729120306442 ], [ -95.631897055673619, 29.427792120148212 ], [ -95.631930055406812, 29.42785711989676 ], [ -95.63193705613044, 29.427965120047208 ], [ -95.631926055341708, 29.428037119796215 ], [ -95.631868055508733, 29.428210119785124 ], [ -95.631816056185443, 29.428308119791257 ], [ -95.631774055517042, 29.428370120520192 ], [ -95.631702055362211, 29.42845811993357 ], [ -95.63167505549805, 29.428485120419538 ], [ -95.631455055969184, 29.428647119991084 ], [ -95.631178055994809, 29.428863120133904 ], [ -95.631119055474883, 29.428913120475826 ], [ -95.630981055046547, 29.429047120439794 ], [ -95.630851055309407, 29.429187120877373 ], [ -95.630783055757092, 29.429277120867418 ], [ -95.630707055359622, 29.429405120185166 ], [ -95.630694055332071, 29.429439120051853 ], [ -95.630666055616871, 29.429544120526387 ], [ -95.630682055978369, 29.429652120304269 ], [ -95.630702055259093, 29.429722120861161 ], [ -95.630735055885964, 29.429787120908429 ], [ -95.630896056076494, 29.430039120913317 ], [ -95.631024055097399, 29.430265120784163 ], [ -95.631047055410107, 29.430335120245225 ], [ -95.631076055673375, 29.430477120331531 ], [ -95.631079056075052, 29.430765120314362 ], [ -95.631069055979239, 29.430981120904239 ], [ -95.631050055144229, 29.431124120833235 ], [ -95.631045055740771, 29.431196121126494 ], [ -95.630965055389368, 29.431696121041494 ], [ -95.630957055643307, 29.431876121043732 ], [ -95.630942055833287, 29.43194712075147 ], [ -95.630938055337666, 29.431978120582688 ], [ -95.630935055848298, 29.43201912111838 ], [ -95.630941055841205, 29.432053120950435 ], [ -95.63096505548333, 29.432082120858471 ], [ -95.630982055894577, 29.432115120884262 ], [ -95.631030055524121, 29.432253121101514 ], [ -95.631155056020631, 29.432481121195675 ], [ -95.63133505622541, 29.4327641208716 ], [ -95.631454055851748, 29.432911121274572 ], [ -95.631589055426375, 29.43309212079631 ], [ -95.631607055389978, 29.433125121563418 ], [ -95.631634055467359, 29.43319312121076 ], [ -95.631691056175967, 29.433550121095248 ], [ -95.631692055504061, 29.43362212100423 ], [ -95.631679055451656, 29.433729121089208 ], [ -95.631646056411569, 29.43383412108691 ], [ -95.631655055904204, 29.433909121038425 ], [ -95.6316550560134, 29.433946121644315 ], [ -95.631641055628606, 29.434053121768912 ], [ -95.631615056240918, 29.434159121519091 ], [ -95.631607056363976, 29.434267121478978 ], [ -95.631577055893828, 29.434445121388524 ], [ -95.631556055751076, 29.434733121530584 ], [ -95.631520055470247, 29.434910121592587 ], [ -95.631494055658948, 29.434979121605984 ], [ -95.631324056144948, 29.435266121538557 ], [ -95.63125405545334, 29.435355121677627 ], [ -95.631192056154433, 29.435449121304448 ], [ -95.631159055917436, 29.435515122028953 ], [ -95.631131056127927, 29.435583121917478 ], [ -95.631133055942087, 29.435763122171245 ], [ -95.631143056298768, 29.435835121618293 ], [ -95.631171055957196, 29.435940121846784 ], [ -95.631203055678057, 29.436007122002433 ], [ -95.631282055565322, 29.436133121998644 ], [ -95.63140605604417, 29.436277121524135 ], [ -95.631700056430674, 29.436579121644495 ], [ -95.631819055720626, 29.436678121828965 ], [ -95.632009055889625, 29.436817121508426 ], [ -95.632107056147319, 29.436883121851874 ], [ -95.632136056188983, 29.436908122354527 ], [ -95.632212056158394, 29.436935122127764 ], [ -95.632330055987239, 29.436967121883104 ], [ -95.632442056363871, 29.437011122059275 ], [ -95.632517056260241, 29.437179121975298 ], [ -95.63260005659491, 29.437304121601098 ], [ -95.632721056522584, 29.437450122099555 ], [ -95.632976056410996, 29.437777122106006 ], [ -95.633165056879648, 29.437968122180678 ], [ -95.633325056089006, 29.438082122344813 ], [ -95.633571056446613, 29.438084122521069 ], [ -95.633695056958373, 29.438090121828555 ], [ -95.633857057016399, 29.438114122032285 ], [ -95.633912056966608, 29.438128122046027 ], [ -95.634172056698532, 29.438198122003666 ], [ -95.634323056761403, 29.438257121793047 ], [ -95.634439056610304, 29.43829412238879 ], [ -95.634639056695562, 29.438334122149815 ], [ -95.634711057067037, 29.43836912206763 ], [ -95.634842057296837, 29.438457122110208 ], [ -95.63508905670713, 29.438587121918005 ], [ -95.635648057422983, 29.438891122493189 ], [ -95.635762057203848, 29.438931122560497 ], [ -95.635842057673315, 29.438950122182742 ], [ -95.635959057696425, 29.438984122659658 ], [ -95.636039056810276, 29.4390001225483 ], [ -95.636121056925461, 29.439011122331827 ], [ -95.636162057814147, 29.439011122244537 ], [ -95.636202057489399, 29.439004121983508 ], [ -95.636281057509237, 29.438982122054959 ], [ -95.636432057738531, 29.438925122432689 ], [ -95.636741057694366, 29.438826122611275 ], [ -95.637035057572362, 29.438696122183245 ], [ -95.637452057499189, 29.438464122252903 ], [ -95.637585057276397, 29.438379122271638 ], [ -95.637723058147841, 29.438300121737544 ], [ -95.63791005746603, 29.43815812209456 ], [ -95.638211058126643, 29.4379681223623 ], [ -95.638438057773328, 29.437883122392549 ], [ -95.638477058000092, 29.437872121847072 ], [ -95.638559057881423, 29.437866121935638 ], [ -95.638721057517046, 29.437890121628268 ], [ -95.638839058364866, 29.437923122054929 ], [ -95.639029057873941, 29.437992121860432 ], [ -95.639109057509032, 29.438007121579542 ], [ -95.639150057555227, 29.438011122107273 ], [ -95.639643058277869, 29.437987122140829 ], [ -95.63997305772898, 29.437990121601871 ], [ -95.640137058755485, 29.437998122218765 ], [ -95.640334058646346, 29.438052122327619 ], [ -95.640408058502459, 29.43808312184791 ], [ -95.640514058368211, 29.438138122122535 ], [ -95.640605058373964, 29.438212121791604 ], [ -95.640629058016842, 29.438241121631414 ], [ -95.640649058066842, 29.438273121550303 ], [ -95.64081305866803, 29.438603122158252 ], [ -95.640835058239176, 29.438634121621103 ], [ -95.640964058259115, 29.43877512241119 ], [ -95.641044058993941, 29.438901122428792 ], [ -95.641142058158252, 29.439016121902348 ], [ -95.64129405809048, 29.438960122292197 ], [ -95.641527058955262, 29.438886121717072 ], [ -95.641563058411933, 29.438870121653778 ], [ -95.64166805826369, 29.438813122211901 ], [ -95.6417910591489, 29.438717122234472 ], [ -95.641871059104673, 29.438635121979498 ], [ -95.641957058320102, 29.438557122395206 ], [ -95.64209405842719, 29.438422122162294 ], [ -95.642127058917978, 29.438401121586953 ], [ -95.642378058807893, 29.43827812193901 ], [ -95.642572058834844, 29.438217121569664 ], [ -95.642735059132491, 29.438194122292764 ], [ -95.642816058955049, 29.438179122085337 ], [ -95.642979059127754, 29.438161121500666 ], [ -95.643349058606191, 29.438141122231137 ], [ -95.64347105918128, 29.438123121560867 ], [ -95.643629058719512, 29.438085122232721 ], [ -95.643971059712229, 29.437959122084379 ], [ -95.644049059503104, 29.437935121959612 ], [ -95.644246059711378, 29.437884122146745 ], [ -95.644407059287204, 29.437855121987763 ], [ -95.644611059270275, 29.437829121834071 ], [ -95.644693059460536, 29.437822121627416 ], [ -95.644757059530747, 29.437776121576846 ], [ -95.644844059596423, 29.43770012128207 ], [ -95.644964059607858, 29.437553121653057 ], [ -95.645015059880009, 29.437455121585163 ], [ -95.645009059653432, 29.437419121317912 ], [ -95.644977059833579, 29.437314121396177 ], [ -95.644899059838281, 29.437148121654481 ], [ -95.644879059739566, 29.437116121489254 ], [ -95.644765059747499, 29.436966121672057 ], [ -95.644663058951977, 29.436853121245708 ], [ -95.644563059626265, 29.436695121432958 ], [ -95.644514059198173, 29.43659612130055 ], [ -95.64450405953464, 29.436562121942703 ], [ -95.644486058989997, 29.436529121233569 ], [ -95.644422059203691, 29.436437121769892 ], [ -95.643937058790357, 29.43556112100104 ], [ -95.64387305907222, 29.435469121232398 ], [ -95.643856059561372, 29.435438121521592 ], [ -95.643836059301492, 29.435367121270971 ], [ -95.643762059114437, 29.435199121615213 ], [ -95.64362405864712, 29.434821121207211 ], [ -95.643563059007789, 29.434575121517124 ], [ -95.643539058866637, 29.43439612078976 ], [ -95.64351005858309, 29.43432912150616 ], [ -95.643497058471453, 29.434258121072286 ], [ -95.643500059062632, 29.434186120888519 ], [ -95.64351205877783, 29.434114121185193 ], [ -95.643520059478078, 29.434006120846664 ], [ -95.643522058655222, 29.433898121336163 ], [ -95.643536058935496, 29.433791121176689 ], [ -95.643559058596693, 29.433721121093633 ], [ -95.643580058651111, 29.433691121379709 ], [ -95.643608058968979, 29.433664121131518 ], [ -95.643735058731224, 29.43357212131113 ], [ -95.643804059244218, 29.433533121233211 ], [ -95.643913058893531, 29.433483120667027 ], [ -95.644138059337266, 29.433392120599088 ], [ -95.64421505948485, 29.433368120604136 ], [ -95.644590059087591, 29.433218121198074 ], [ -95.644700059680574, 29.433170121098104 ], [ -95.644844059399531, 29.433100121157391 ], [ -95.644912059536992, 29.433059120348222 ], [ -95.645026058866662, 29.432955120328991 ], [ -95.645157059439043, 29.43281612102691 ], [ -95.645325058947137, 29.432611120552178 ], [ -95.645459059110223, 29.432429120843274 ], [ -95.64557905919483, 29.432240120318497 ], [ -95.645579059234251, 29.432097120969939 ], [ -95.645583059560934, 29.432025120583511 ], [ -95.64560005934726, 29.431882120313336 ], [ -95.645608058888797, 29.43173812040855 ], [ -95.645601059382386, 29.431521120291048 ], [ -95.645605059048506, 29.431377120116956 ], [ -95.645639059286168, 29.431054119964436 ], [ -95.6456570588727, 29.430984120334656 ], [ -95.645670059030465, 29.430949119887611 ], [ -95.645719059797358, 29.430850120609232 ], [ -95.645758059220654, 29.430787120515099 ], [ -95.645878059397262, 29.430760120338014 ], [ -95.646245059552982, 29.430713119827825 ], [ -95.646532059244961, 29.430704120560932 ], [ -95.646734059650029, 29.430666120445615 ], [ -95.646810059521457, 29.430640119754685 ], [ -95.646880059337704, 29.430602119925432 ], [ -95.647074059617609, 29.430468119783004 ], [ -95.647273059786187, 29.430340120365621 ], [ -95.647414060094235, 29.430265120204471 ], [ -95.647532060082838, 29.430235120233771 ], [ -95.647614059401008, 29.430225119687744 ], [ -95.647737059996814, 29.430219119798789 ], [ -95.647860059629593, 29.430205120303192 ], [ -95.647983060150935, 29.430203119921526 ], [ -95.648065059997393, 29.430208119697951 ], [ -95.648146059790733, 29.430222120131969 ], [ -95.648310060515485, 29.430236120095955 ], [ -95.648392060179191, 29.430236119772552 ], [ -95.648514059789349, 29.430219120281425 ], [ -95.648707060240341, 29.430155120131207 ], [ -95.648744059781208, 29.430139119837904 ], [ -95.648837060299428, 29.430069119652405 ], [ -95.648866059674688, 29.430043120101661 ], [ -95.648891060552998, 29.430014119938392 ], [ -95.649033060525397, 29.429795120271521 ], [ -95.649119059888463, 29.429592119854778 ], [ -95.649191059722128, 29.429463120240349 ], [ -95.649245060154072, 29.429327120138627 ], [ -95.649425060342168, 29.429130120100954 ], [ -95.649448060175317, 29.429100120028274 ], [ -95.649567060780427, 29.428910119743783 ], [ -95.649636060223756, 29.42882111960224 ], [ -95.649767060462651, 29.428682119568844 ], [ -95.649824060644306, 29.428637119611551 ], [ -95.649852060661559, 29.428531119967023 ], [ -95.649865060363609, 29.428497119287993 ], [ -95.649915060189386, 29.428398119246559 ], [ -95.649978060884962, 29.428305119478271 ], [ -95.650160060097477, 29.428065119366263 ], [ -95.65030406012842, 29.427846119828956 ], [ -95.650337060857709, 29.427780119182778 ], [ -95.650450060558668, 29.427675119280305 ], [ -95.650574060623484, 29.427580119634559 ], [ -95.65070906059276, 29.427497119619321 ], [ -95.650747060389435, 29.4274861194008 ], [ -95.651077060461375, 29.427489119377586 ], [ -95.6512820606156, 29.427500119751503 ], [ -95.651364060297141, 29.427497118987677 ], [ -95.651403060938051, 29.427485119147331 ], [ -95.651552060566715, 29.427424118956942 ], [ -95.651661060470758, 29.4273721191826 ], [ -95.651773061019014, 29.427328119091904 ], [ -95.651812060517301, 29.427316119105914 ], [ -95.652014060376004, 29.427282119044026 ], [ -95.652178061242225, 29.427265119381001 ], [ -95.652424060688318, 29.427253119351832 ], [ -95.652711060809253, 29.427229119134964 ], [ -95.652872060616247, 29.42719711956175 ], [ -95.652909061498548, 29.427181119085908 ], [ -95.653012061404709, 29.427122119302716 ], [ -95.653043060836154, 29.427098119672269 ], [ -95.653070060733029, 29.427071119526094 ], [ -95.653102060931403, 29.427049119101802 ], [ -95.653176061445805, 29.427017118887619 ], [ -95.653246061455505, 29.426979119435053 ], [ -95.653407061482469, 29.426867119184823 ], [ -95.653465061499844, 29.426816119260234 ], [ -95.653595061622497, 29.42667611928459 ], [ -95.653785061716135, 29.426486118848867 ], [ -95.653843061329383, 29.426435118756679 ], [ -95.653908061101276, 29.426391119112708 ], [ -95.654087061176313, 29.426241118909136 ], [ -95.654159061812379, 29.426153118763388 ], [ -95.654212061330824, 29.426099119151399 ], [ -95.654455061260947, 29.425904118724027 ], [ -95.654707061416715, 29.425718119070837 ], [ -95.654939061202867, 29.425567119130815 ], [ -95.655123062004463, 29.425423119224593 ], [ -95.65518706113474, 29.425378119035223 ], [ -95.655346061853791, 29.425339118644096 ], [ -95.655466061721441, 29.425314118485016 ], [ -95.655585061502023, 29.425283118402731 ], [ -95.655665061872213, 29.425267118886094 ], [ -95.655858062223345, 29.42520511893791 ], [ -95.655937062078706, 29.425185118849651 ], [ -95.656099061442575, 29.425155119162042 ], [ -95.656303062049545, 29.425134118859539 ], [ -95.656342061504787, 29.425123118640503 ], [ -95.656413061887463, 29.425087118567365 ], [ -95.656514062134136, 29.425024118727396 ], [ -95.656632061612598, 29.424923118623433 ], [ -95.65673606226251, 29.424811118284019 ], [ -95.656900062191283, 29.424704118539363 ], [ -95.657104062095513, 29.424675118464322 ], [ -95.657184062423042, 29.424658118797627 ], [ -95.657262061773963, 29.424636118759551 ], [ -95.657376062214766, 29.424595118579408 ], [ -95.657597062468369, 29.424497118929466 ], [ -95.657704061924704, 29.424442118876115 ], [ -95.65776606240901, 29.424395118604881 ], [ -95.657877061951424, 29.424288118235488 ], [ -95.657976061859046, 29.424173118627412 ], [ -95.658007062311782, 29.424152118383457 ], [ -95.65812706177033, 29.424126118419665 ], [ -95.658324062090827, 29.424073118109096 ], [ -95.658438062107564, 29.424031118681743 ], [ -95.658660062663571, 29.423937118607068 ], [ -95.658778062041975, 29.423907118848543 ], [ -95.658935062399749, 29.423861118179648 ], [ -95.659049062279053, 29.423820118395852 ], [ -95.659225062406009, 29.423726118442548 ], [ -95.65932206266028, 29.423659118754887 ], [ -95.659467063086112, 29.423591118034484 ], [ -95.659715062651316, 29.423461118186445 ], [ -95.659849062729407, 29.423378118488372 ], [ -95.659980063088483, 29.423289118517324 ], [ -95.660345063208354, 29.422997117791354 ], [ -95.660483062436668, 29.422863118278073 ], [ -95.660534063056488, 29.422807118308175 ], [ -95.660579062370658, 29.422747118372179 ], [ -95.660635062820475, 29.422650117773234 ], [ -95.660665062582382, 29.422583118059809 ], [ -95.660710063342307, 29.422444118305116 ], [ -95.660775063251648, 29.422124117962618 ], [ -95.660788062770621, 29.422035117547139 ], [ -95.660782063052949, 29.421999118017997 ], [ -95.660723063271405, 29.421789118034297 ], [ -95.660659062578432, 29.421469118230391 ], [ -95.660632062949489, 29.42121711825212 ], [ -95.660627062782666, 29.421037117359713 ], [ -95.660618062925451, 29.420965117448812 ], [ -95.660622062789301, 29.420930118062447 ], [ -95.66075306263761, 29.420625117573444 ], [ -95.660862063322753, 29.420353117328059 ], [ -95.660944062294689, 29.420188117724091 ], [ -95.661071063217634, 29.419961117728157 ], [ -95.661421063211975, 29.419388117296158 ], [ -95.661546062527606, 29.419160117220013 ], [ -95.66162106316493, 29.418993117069299 ], [ -95.661648063237223, 29.418924117656225 ], [ -95.661690063203551, 29.418748117032486 ], [ -95.661703062824529, 29.418714117075396 ], [ -95.661831062930986, 29.418529117309404 ], [ -95.662046062854571, 29.418139116698619 ], [ -95.662253062703286, 29.417827116789795 ], [ -95.662411062598736, 29.417574117166502 ], [ -95.66246406295086, 29.417476117414957 ], [ -95.662543063332606, 29.417349116535451 ], [ -95.662556063522871, 29.417315116512786 ], [ -95.662572063315835, 29.417245117160334 ], [ -95.662600062849791, 29.417066117026611 ], [ -95.662716063389055, 29.416424117100977 ], [ -95.662796063450344, 29.415743116590402 ], [ -95.662842063479189, 29.41527511696744 ], [ -95.662846062847478, 29.414878116124058 ], [ -95.662814063542982, 29.414700116003573 ], [ -95.662794062903799, 29.414630115998648 ], [ -95.662769062811392, 29.414562115934991 ], [ -95.662571063078218, 29.414126116443725 ], [ -95.662498062647614, 29.413919115929318 ], [ -95.662251062554787, 29.413118115901661 ], [ -95.662211062691497, 29.412978115680829 ], [ -95.662164062395448, 29.412765115711977 ], [ -95.662151062552297, 29.412622115568286 ], [ -95.662161063091474, 29.412478116075576 ], [ -95.662174062984576, 29.412407115598981 ], [ -95.662211062356221, 29.412266116230565 ], [ -95.662265062813788, 29.412092115902826 ], [ -95.66232806268178, 29.41195911592742 ], [ -95.662413062336256, 29.411835115688344 ], [ -95.662439062472316, 29.411807115671575 ], [ -95.66276606280266, 29.411533116157216 ], [ -95.663013063138379, 29.411341115634816 ], [ -95.66325006328772, 29.411141115362181 ], [ -95.663478063106908, 29.410987115558132 ], [ -95.663678063311124, 29.410860115162553 ], [ -95.663740062618203, 29.410812115703141 ], [ -95.664035063004448, 29.410561115312245 ], [ -95.664547063499086, 29.410091115585054 ], [ -95.664762063121543, 29.40987211531565 ], [ -95.664836063282493, 29.409786115708421 ], [ -95.664911063134042, 29.409757114877738 ], [ -95.665020063877876, 29.409705115534766 ], [ -95.665223063936764, 29.409581115189436 ], [ -95.665286063608576, 29.409535115064571 ], [ -95.665370063965554, 29.409456115077983 ], [ -95.665434063476837, 29.409410115482274 ], [ -95.665536063261101, 29.409229115404049 ], [ -95.665623063825265, 29.409090114765423 ], [ -95.665630063570447, 29.409055115198349 ], [ -95.665648063964568, 29.409024114740745 ], [ -95.665700063027344, 29.408968115270699 ], [ -95.66577206399451, 29.408880115479416 ], [ -95.665881063502184, 29.408772114664647 ], [ -95.665925063336502, 29.408711114978491 ], [ -95.665943063748458, 29.408678115068778 ], [ -95.666015063436461, 29.408644114664774 ], [ -95.666083063196211, 29.40860311524624 ], [ -95.666358063892361, 29.408386115161392 ], [ -95.666875063565882, 29.408027114787892 ], [ -95.66696606333953, 29.407955114546958 ], [ -95.667137064218153, 29.407798114421691 ], [ -95.667243064352604, 29.407688114989114 ], [ -95.667265064367513, 29.407658115015387 ], [ -95.66730606425763, 29.40755511459988 ], [ -95.667328063728306, 29.407486114736123 ], [ -95.667345064222943, 29.407379114963479 ], [ -95.667353063391474, 29.407271115137632 ], [ -95.667344063495179, 29.407091114707654 ], [ -95.667332064354596, 29.407019114323546 ], [ -95.667292064076833, 29.406879114677597 ], [ -95.667211063942048, 29.406675114184136 ], [ -95.667088063732962, 29.406408114122435 ], [ -95.666918063563514, 29.406079114275734 ], [ -95.66685506356194, 29.405986114686733 ], [ -95.666804063670625, 29.405925114603637 ], [ -95.666791063907169, 29.40589111416379 ], [ -95.666593063819107, 29.40553411449784 ], [ -95.666476063428135, 29.405265114268165 ], [ -95.666462063532038, 29.405194114522093 ], [ -95.666447063569834, 29.405014113973035 ], [ -95.666450063892825, 29.404834114175809 ], [ -95.666501063218803, 29.404512113885517 ], [ -95.666517063955624, 29.404313114253963 ], [ -95.666533063938147, 29.404081113850449 ], [ -95.666562063210407, 29.403866113907682 ], [ -95.666576063697903, 29.40372211370542 ], [ -95.666604063854095, 29.403507114077048 ], [ -95.666612063866211, 29.403472114139426 ], [ -95.66674806375174, 29.403209113901486 ], [ -95.666826063226907, 29.403082113579281 ], [ -95.666958063850103, 29.402899113619867 ], [ -95.667103063549845, 29.402724113420263 ], [ -95.667396063602055, 29.402422113877037 ], [ -95.667514064189319, 29.402274113463776 ], [ -95.667569063855822, 29.402190113329045 ], [ -95.667680063366262, 29.402143113920197 ], [ -95.667749064101528, 29.402104113757538 ], [ -95.668064064073562, 29.401872113350084 ], [ -95.668217064189008, 29.401751113531958 ], [ -95.668578064130884, 29.401405113284302 ], [ -95.668859064181277, 29.401142113549106 ], [ -95.668904064014754, 29.401081113504191 ], [ -95.668922063601272, 29.401049113345927 ], [ -95.668941063987148, 29.40100311335593 ], [ -95.669009063652496, 29.400962113450234 ], [ -95.669068064058706, 29.400912113241858 ], [ -95.66922006410438, 29.400742112965382 ], [ -95.669438064474619, 29.400480113085219 ], [ -95.669564064461056, 29.400337113591526 ], [ -95.669745064174094, 29.400097112732432 ], [ -95.669778064431824, 29.400030112746197 ], [ -95.669799064337397, 29.399960113555785 ], [ -95.669865064278852, 29.399917113587385 ], [ -95.669922063947169, 29.399865113348561 ], [ -95.67024206400869, 29.399489113199628 ], [ -95.670264064473756, 29.399459112766973 ], [ -95.670418063816626, 29.399204113209315 ], [ -95.670548064301045, 29.398939112822838 ], [ -95.670603064326187, 29.398843113206159 ], [ -95.670685064402477, 29.398718112424188 ], [ -95.670887063920475, 29.398446113202745 ], [ -95.671737064862114, 29.397612112271869 ], [ -95.671829064628156, 29.397539112912579 ], [ -95.672019064909549, 29.397401112305609 ], [ -95.672352064425212, 29.397189112628027 ], [ -95.672727064933156, 29.39696711285584 ], [ -95.672994065039177, 29.396798112065731 ], [ -95.673316064889391, 29.396638112326922 ], [ -95.673499064835568, 29.396555111903261 ], [ -95.674067065001225, 29.396342112486966 ], [ -95.674382064722224, 29.396174112421235 ], [ -95.674451065475139, 29.396136111787683 ], [ -95.6746540648587, 29.396012112202232 ], [ -95.675013065831422, 29.395771111797302 ], [ -95.675775065082817, 29.395222111615222 ], [ -95.67607906605248, 29.395036111698438 ], [ -95.676187065922491, 29.394984112124455 ], [ -95.676267065315329, 29.394967111505132 ], [ -95.676308065662781, 29.394965111843785 ], [ -95.676473066017209, 29.394969111859371 ], [ -95.676596065660149, 29.394976111965612 ], [ -95.676758065646638, 29.394998112008679 ], [ -95.676922065334224, 29.395014111930539 ], [ -95.677123066376922, 29.395052111692944 ], [ -95.677338065969707, 29.395112111865803 ], [ -95.677527065559772, 29.395184111987902 ], [ -95.677706066150066, 29.395274112300402 ], [ -95.677773066529042, 29.395315111521732 ], [ -95.677804065840718, 29.395339112179304 ], [ -95.678003066459695, 29.395521111557208 ], [ -95.678102066174603, 29.395637111647861 ], [ -95.678219066685401, 29.395827111739713 ], [ -95.678329066043815, 29.39602011222167 ], [ -95.678382066522261, 29.396157111955262 ], [ -95.678451066593567, 29.396365111989429 ], [ -95.678457066303196, 29.396400112414216 ], [ -95.678418066551998, 29.396577112499887 ], [ -95.678397066007307, 29.396901112349646 ], [ -95.678404066149909, 29.397009112164458 ], [ -95.678471066227161, 29.397365111893652 ], [ -95.678602066269576, 29.397745112413286 ], [ -95.678620066212687, 29.39777711208308 ], [ -95.678685066750901, 29.397869112391128 ], [ -95.678741066669843, 29.397922112812033 ], [ -95.678772065996796, 29.397946112306801 ], [ -95.679003066589672, 29.398096112870874 ], [ -95.679107066283578, 29.398154112677268 ], [ -95.679144066878393, 29.398170112050018 ], [ -95.679221066959258, 29.398195112036085 ], [ -95.679252066452065, 29.398219112320319 ], [ -95.679357066768176, 29.39827611228155 ], [ -95.679581066833919, 29.398367112563065 ], [ -95.679740066962225, 29.39840411240543 ], [ -95.679827066715461, 29.398415112071813 ], [ -95.679950066741995, 29.398404112477049 ], [ -95.68036206732441, 29.398408112870047 ], [ -95.680649066971355, 29.398388112169922 ], [ -95.681178067143534, 29.398320112542422 ], [ -95.681583067621716, 29.39825511211847 ], [ -95.681828067241568, 29.3982301122503 ], [ -95.68219706726174, 29.398212112686206 ], [ -95.682444066947753, 29.398218112085754 ], [ -95.682649067288892, 29.398233112420559 ], [ -95.683019067009866, 29.398250112014306 ], [ -95.683225067465401, 29.398246112575841 ], [ -95.68343006737426, 29.398227112702639 ], [ -95.683704067224355, 29.398150112146361 ], [ -95.684131067422939, 29.398019112110436 ], [ -95.684171067778735, 29.398010112064984 ], [ -95.684497068326408, 29.397970112653603 ], [ -95.684577067466876, 29.397953112451038 ], [ -95.684732068070247, 29.397905111999957 ], [ -95.684845067522431, 29.39786111262293 ], [ -95.684987067566411, 29.397788111951527 ], [ -95.685116067804515, 29.397698112497 ], [ -95.685187067854997, 29.397661111962513 ], [ -95.685265067910535, 29.39763911239713 ], [ -95.685387067860958, 29.397627111732572 ], [ -95.685470068358001, 29.39762711234005 ], [ -95.685511067634692, 29.397632111799375 ], [ -95.685751068434612, 29.397681112283593 ], [ -95.68603606874845, 29.397719111839265 ], [ -95.686404068606052, 29.397760112151428 ], [ -95.687391068287084, 29.39780211174795 ], [ -95.68759706872234, 29.397800112220992 ], [ -95.687720068227449, 29.397804112338033 ], [ -95.688214068466152, 29.397785111672572 ], [ -95.68879006885993, 29.397780112167347 ], [ -95.689364068888551, 29.397741112180348 ], [ -95.690262069735439, 29.39763411192903 ], [ -95.690303069730419, 29.397632111554302 ], [ -95.690591068988041, 29.397636111760225 ], [ -95.690961069569823, 29.397652111807247 ], [ -95.691208070002574, 29.397635112246441 ], [ -95.69141206942038, 29.397612111783864 ], [ -95.691983070009641, 29.397499112329665 ], [ -95.692054069496038, 29.397485111743222 ], [ -95.692330069633215, 29.397413111523559 ], [ -95.692486070154374, 29.397366111759599 ], [ -95.692872069617863, 29.397240111780178 ], [ -95.692985070134242, 29.397195111806699 ], [ -95.693347069833962, 29.397025111338696 ], [ -95.693461070106082, 29.396982111667935 ], [ -95.693538070579066, 29.396958112050346 ], [ -95.693620070497587, 29.396955112153321 ], [ -95.693909069744805, 29.396965111979824 ], [ -95.694361070380211, 29.396946112055019 ], [ -95.694523070450686, 29.396921112028377 ], [ -95.694686070424098, 29.396902111305966 ], [ -95.694851070400389, 29.396904111671635 ], [ -95.695013070189205, 29.396930111664702 ], [ -95.695051070080979, 29.396944112055781 ], [ -95.69513707033434, 29.397021111512924 ], [ -95.695160070103285, 29.397051111325879 ], [ -95.695258070711944, 29.397209111463479 ], [ -95.695444070946905, 29.397570111881098 ], [ -95.695497070454692, 29.397690111495628 ], [ -95.695903070382187, 29.398749112366573 ], [ -95.696151071383809, 29.399244111966926 ], [ -95.696188070835845, 29.399309112202157 ], [ -95.696360071051785, 29.399555112619318 ], [ -95.696411071450072, 29.39965311220935 ], [ -95.696431071116635, 29.39968411261086 ], [ -95.696739071319215, 29.400068112529599 ], [ -95.697248071531362, 29.400680112305704 ], [ -95.697548071764658, 29.401069112509671 ], [ -95.698136071582752, 29.401851112375656 ], [ -95.698217071708086, 29.401976112428923 ], [ -95.698519071697859, 29.402405112450168 ], [ -95.698714071784494, 29.40272211300508 ], [ -95.698797071939708, 29.402887113110452 ], [ -95.698920071300961, 29.403075112604395 ], [ -95.699151071828879, 29.403612113262827 ], [ -95.699177072238555, 29.403681112938092 ], [ -95.699252071885141, 29.40403311294321 ], [ -95.69931607230879, 29.40420411326226 ], [ -95.699467071735384, 29.404538113276939 ], [ -95.699544071852443, 29.404622112911845 ], [ -95.699931072411857, 29.404944113381042 ], [ -95.700164071785821, 29.405129113541676 ], [ -95.700267072322617, 29.405188113308959 ], [ -95.700525072186025, 29.405299112855516 ], [ -95.701117072467483, 29.405446113663384 ], [ -95.70131507197955, 29.405492113395301 ], [ -95.702020072908951, 29.405690112895019 ], [ -95.703691073482076, 29.406059113716747 ], [ -95.704175073235973, 29.406144113406352 ], [ -95.704583072866058, 29.406192113112841 ], [ -95.704747073573174, 29.40618811322685 ], [ -95.704829073454405, 29.406179113502649 ], [ -95.705193073093838, 29.406122112853037 ], [ -95.705520073668879, 29.406084112898547 ], [ -95.705724073904676, 29.406069113152423 ], [ -95.705888073952295, 29.406062113211892 ], [ -95.706217073692088, 29.406073113139769 ], [ -95.706627074229729, 29.406060113436379 ], [ -95.706831073912483, 29.406076113007781 ], [ -95.707071074003963, 29.406123112866673 ], [ -95.70714707423241, 29.406152112961252 ], [ -95.707293074032961, 29.406215112925526 ], [ -95.707480074078205, 29.406290113609575 ], [ -95.707730074360043, 29.406415113207899 ], [ -95.707991074199697, 29.406590112927852 ], [ -95.708161074632599, 29.406714113327553 ], [ -95.708230074532736, 29.406776113014519 ], [ -95.708291074420174, 29.406824112855986 ], [ -95.708342073963919, 29.406881113011231 ], [ -95.708463074776361, 29.407069113346459 ], [ -95.708491074425339, 29.407093112961842 ], [ -95.708556074027697, 29.407138113331239 ], [ -95.708670074308159, 29.407242113455908 ], [ -95.708696074375823, 29.407270113076585 ], [ -95.708824074595597, 29.407455113617054 ], [ -95.708877074158764, 29.407553112966568 ], [ -95.708905074112891, 29.407620113464876 ], [ -95.708977074625139, 29.407826113284603 ], [ -95.70914407469634, 29.408383113447837 ], [ -95.70918907450293, 29.408595113824923 ], [ -95.709199074826032, 29.408703113613353 ], [ -95.709226074758618, 29.408845114029937 ], [ -95.709273074240812, 29.408983113853242 ], [ -95.709302074175767, 29.409087113670353 ], [ -95.709317074911397, 29.409121113771278 ], [ -95.709331074995589, 29.409142113462295 ], [ -95.709350074747491, 29.409170113730958 ], [ -95.709359074311593, 29.409183113572794 ], [ -95.709386074171263, 29.409210114053472 ], [ -95.709418074763448, 29.409233113501909 ], [ -95.709490074792583, 29.409268113780652 ], [ -95.709509074918302, 29.409300113723297 ], [ -95.709554074808381, 29.409439113943243 ], [ -95.709558075239883, 29.409583113780528 ], [ -95.709552075064309, 29.409618113728587 ], [ -95.709497074976355, 29.409671113955799 ], [ -95.709449074716588, 29.409730114229358 ], [ -95.709388074224677, 29.409824113434176 ], [ -95.709357074331237, 29.409891114054567 ], [ -95.709262074825276, 29.410129113589335 ], [ -95.709236074904695, 29.410234113941346 ], [ -95.709204074796418, 29.410301114249961 ], [ -95.708993074930405, 29.410809113815112 ], [ -95.70897707502958, 29.410879114380524 ], [ -95.708970074814971, 29.410951114083783 ], [ -95.708957074507751, 29.410985113742651 ], [ -95.708886075139276, 29.411115114440118 ], [ -95.708859074389821, 29.411183114365784 ], [ -95.708788074537537, 29.41139011465393 ], [ -95.708780074152443, 29.411462114065944 ], [ -95.708786074305408, 29.411678114256002 ], [ -95.708808075051024, 29.411784114322554 ], [ -95.708821074780616, 29.411819114031484 ], [ -95.708886074437075, 29.411951114345896 ], [ -95.708977074920043, 29.412071114560614 ], [ -95.709016074882044, 29.412135114805693 ], [ -95.709040075015963, 29.412164114808778 ], [ -95.70914807518291, 29.412273114286524 ], [ -95.709303074850851, 29.41239111417871 ], [ -95.709378074914227, 29.412477114659328 ], [ -95.709427074901413, 29.412494114148284 ], [ -95.709498074965168, 29.412530114224985 ], [ -95.709657075011975, 29.412645114325404 ], [ -95.709780075075884, 29.412740114304768 ], [ -95.709814075171309, 29.412761114744615 ], [ -95.709960074913027, 29.412828114744975 ], [ -95.710072074982108, 29.412872114836176 ], [ -95.710187075074955, 29.412911114886978 ], [ -95.710365075347482, 29.413000114392748 ], [ -95.710482075058735, 29.41303711440391 ], [ -95.710555075380924, 29.413070114887979 ], [ -95.710594075403279, 29.413082114198573 ], [ -95.710796075169597, 29.413115114731607 ], [ -95.710960075206231, 29.413129114098286 ], [ -95.711041075387072, 29.413141114187351 ], [ -95.71108207514024, 29.413143114196792 ], [ -95.711161075312546, 29.413124114556521 ], [ -95.711325075368151, 29.413107114333851 ], [ -95.711531074941021, 29.413112114261935 ], [ -95.711654074949081, 29.413107114009371 ], [ -95.7119800759463, 29.413065114115508 ], [ -95.712225075831483, 29.413041114880901 ], [ -95.712306075711808, 29.413029114282381 ], [ -95.712545075201277, 29.412972114443722 ], [ -95.712738075959663, 29.412911114104872 ], [ -95.712813076146602, 29.412881114516871 ], [ -95.713334075590467, 29.412774114086925 ], [ -95.713574076395602, 29.412721114194831 ], [ -95.713687075516248, 29.412680114330893 ], [ -95.713806076201863, 29.412650114736827 ], [ -95.713886075951365, 29.412635114317343 ], [ -95.713925075526731, 29.412622114394978 ], [ -95.714163076012554, 29.412566114345534 ], [ -95.714367075914126, 29.412545114685091 ], [ -95.714450076119334, 29.412541114445371 ], [ -95.714531076176627, 29.412530114468627 ], [ -95.714694076618898, 29.412552113821796 ], [ -95.714776076467956, 29.412558114602959 ], [ -95.714938076453848, 29.41258411399971 ], [ -95.715053076005361, 29.412622114179243 ], [ -95.715201076242749, 29.412685114574643 ], [ -95.71531807629782, 29.412721114693415 ], [ -95.715469076896525, 29.412776114300719 ], [ -95.715503076081362, 29.412797114143633 ], [ -95.715561076332932, 29.412847114584277 ], [ -95.715640076042789, 29.412931114706758 ], [ -95.71573707654251, 29.413047114445387 ], [ -95.71585407637977, 29.413149114673814 ], [ -95.715953076306462, 29.413214114452643 ], [ -95.715998076304672, 29.413353113957612 ], [ -95.716044076117086, 29.413529114536551 ], [ -95.716096076823092, 29.413666114357323 ], [ -95.716130076870002, 29.413770114407388 ], [ -95.716321076189303, 29.414472114825525 ], [ -95.716390077146443, 29.414753114771351 ], [ -95.71644307628334, 29.415038114437738 ], [ -95.716445076285837, 29.415110114507836 ], [ -95.716455076813929, 29.415145114553965 ], [ -95.716524076916258, 29.415315114472833 ], [ -95.716554076601895, 29.415420114536076 ], [ -95.716579077246777, 29.415488114478162 ], [ -95.716680077066286, 29.415724114517907 ], [ -95.71673207690641, 29.415822114625062 ], [ -95.716796076735264, 29.415899115127747 ], [ -95.716805077010491, 29.415910115044664 ], [ -95.71688607733941, 29.415992114454575 ], [ -95.716947077358526, 29.416040114547751 ], [ -95.716995076635953, 29.416098115090374 ], [ -95.717073076862263, 29.416182114930201 ], [ -95.717103076940631, 29.416206114830512 ], [ -95.717305076960926, 29.41633011488787 ], [ -95.717525077128727, 29.416428114610277 ], [ -95.717633076818032, 29.416481114937415 ], [ -95.717672077226169, 29.416489115162669 ], [ -95.717713077253478, 29.416492115056379 ], [ -95.718277077444824, 29.416595114523872 ], [ -95.718521077400652, 29.416628115238634 ], [ -95.718807077316853, 29.416657115147004 ], [ -95.718929077915874, 29.416674114708638 ], [ -95.719089077569137, 29.416704115359376 ], [ -95.719249077939565, 29.41673911475047 ], [ -95.71940607758718, 29.416781115260576 ], [ -95.719674077838448, 29.416874114532138 ], [ -95.719826077337743, 29.416931114835673 ], [ -95.71997407729495, 29.41699411507912 ], [ -95.720079077250048, 29.417051115196898 ], [ -95.720172077514164, 29.417122114995941 ], [ -95.720222078295862, 29.417179114579952 ], [ -95.720384077731055, 29.417388115434186 ], [ -95.720620078421462, 29.417726114962854 ], [ -95.7206790777891, 29.417776114976508 ], [ -95.720847077903343, 29.417979115460231 ], [ -95.720948078058854, 29.418093115096379 ], [ -95.721073077569471, 29.418186115063051 ], [ -95.721103078189842, 29.418253114796798 ], [ -95.721163078119773, 29.418348114921329 ], [ -95.721426078547793, 29.418669115273765 ], [ -95.721637077880615, 29.418935115097781 ], [ -95.721924077976027, 29.419242115685407 ], [ -95.722073078017019, 29.419414115720183 ], [ -95.722178078352229, 29.41952511550031 ], [ -95.722236078248898, 29.41957711579574 ], [ -95.722341077960465, 29.419687115277675 ], [ -95.722435078092502, 29.419758115344486 ], [ -95.72256907817399, 29.419841115724903 ], [ -95.723064078527713, 29.420100115760793 ], [ -95.723363078392254, 29.420291115576173 ], [ -95.723392078889106, 29.420316115775794 ], [ -95.723496078443461, 29.420425115781825 ], [ -95.723482078615902, 29.42048111518578 ], [ -95.723476078764207, 29.420553115465292 ], [ -95.723498078296743, 29.420696115972717 ], [ -95.723502078791313, 29.420804115799545 ], [ -95.723496078632706, 29.420839115302165 ], [ -95.723454079153441, 29.42097911582465 ], [ -95.723394078306526, 29.421150115981497 ], [ -95.723335079007995, 29.421245115400097 ], [ -95.723217079035322, 29.421393115358114 ], [ -95.723070078462626, 29.421566115777882 ], [ -95.722887078515981, 29.421761115904907 ], [ -95.722829078757158, 29.42181211620877 ], [ -95.722577079002207, 29.421998115729178 ], [ -95.721797078038193, 29.422466116113235 ], [ -95.721724078801785, 29.422499116189439 ], [ -95.721572078076292, 29.422555116390708 ], [ -95.721161078319597, 29.422721115712299 ], [ -95.720941078336423, 29.422817115945104 ], [ -95.72080607778507, 29.422900115917496 ], [ -95.720564078271224, 29.423095115776476 ], [ -95.720431078149403, 29.423180116046609 ], [ -95.720402077805161, 29.423205116055314 ], [ -95.720381077954244, 29.423236116604755 ], [ -95.720330078562938, 29.42329311621948 ], [ -95.720191077635334, 29.423425116432206 ], [ -95.719945077893129, 29.423713116027972 ], [ -95.719631078087119, 29.424135116897968 ], [ -95.719591077746557, 29.424198116465739 ], [ -95.719556077754277, 29.424264116512887 ], [ -95.719481078082254, 29.42443111612268 ], [ -95.719481078027997, 29.424575116856378 ], [ -95.719531078318539, 29.424712116234929 ], [ -95.719571078466657, 29.42477511663904 ], [ -95.719645078375805, 29.424861116856707 ], [ -95.719674078169078, 29.424887117056777 ], [ -95.719890078212785, 29.424991116835766 ], [ -95.719964077946656, 29.425021116985981 ], [ -95.720080077869781, 29.425059117075847 ], [ -95.720198078652558, 29.425091116599617 ], [ -95.720280078311532, 29.425099116722826 ], [ -95.720526078018054, 29.425101116376126 ], [ -95.720567077930156, 29.425097117009201 ], [ -95.720649078018937, 29.425100116202529 ], [ -95.720855078059515, 29.425090116160131 ], [ -95.720977078810009, 29.4250761163769 ], [ -95.721461078056109, 29.425001116243116 ], [ -95.721701078028588, 29.424949116729387 ], [ -95.7220230788961, 29.424897116541104 ], [ -95.722268079020225, 29.424880116450861 ], [ -95.722514078676284, 29.424872116447915 ], [ -95.722555079053862, 29.424875116579017 ], [ -95.722595078967572, 29.424884116468402 ], [ -95.7227040791538, 29.424932116316167 ], [ -95.722737078369107, 29.424955116962991 ], [ -95.722791078966964, 29.425008116375789 ], [ -95.722825078477456, 29.425029116889259 ], [ -95.722873079059511, 29.425087116879947 ], [ -95.722958078743474, 29.425165116771215 ], [ -95.722982078525646, 29.425195116872221 ], [ -95.72298707851337, 29.425249116341885 ], [ -95.722996079010812, 29.425284116493227 ], [ -95.723141078688769, 29.42562011674222 ], [ -95.723194078796297, 29.425794116718365 ], [ -95.723242079070545, 29.425932117064168 ], [ -95.723261079317112, 29.425964116583827 ], [ -95.723344078820332, 29.426167116436268 ], [ -95.723392079230791, 29.426267116742277 ], [ -95.723495078572739, 29.426462116771042 ], [ -95.723857078722602, 29.426986117003903 ], [ -95.723912079215381, 29.427083116869436 ], [ -95.723924079674035, 29.427117117266217 ], [ -95.723931078771756, 29.427189116799635 ], [ -95.723930079121516, 29.42722511722987 ], [ -95.723913079007772, 29.427332117043697 ], [ -95.7238820793131, 29.427399117119833 ], [ -95.723790079660077, 29.427518116685132 ], [ -95.723736078670527, 29.42757211662304 ], [ -95.72367007921973, 29.427615116718499 ], [ -95.723598079065198, 29.427650117381205 ], [ -95.723518078583552, 29.427663117211065 ], [ -95.723313078923937, 29.427655117294705 ], [ -95.723273078870008, 29.42764711688832 ], [ -95.722999078464639, 29.427572117415536 ], [ -95.72295907846771, 29.427564116914951 ], [ -95.722882079316221, 29.427541117208271 ], [ -95.722763078772331, 29.427512116813077 ], [ -95.722643078808417, 29.427489117007411 ], [ -95.722438079009706, 29.427490117010375 ], [ -95.722397079118352, 29.427496117255636 ], [ -95.722322078481909, 29.427525116772753 ], [ -95.72228907901399, 29.427546116869028 ], [ -95.722180078237287, 29.42765411721356 ], [ -95.72213107902877, 29.427711116943712 ], [ -95.721998078597366, 29.4278931172224 ], [ -95.721894078201643, 29.428047117514396 ], [ -95.721824078188092, 29.42813611712312 ], [ -95.721746079038184, 29.428220117326788 ], [ -95.721661079017764, 29.42829711705734 ], [ -95.721513078216134, 29.428421116854231 ], [ -95.721457078387445, 29.428473117102573 ], [ -95.7212480784994, 29.428645117217052 ], [ -95.72105707850838, 29.428781116931937 ], [ -95.720653077947262, 29.429028117036943 ], [ -95.720547078465657, 29.42908211713819 ], [ -95.72025507810234, 29.42921511759091 ], [ -95.720151078431016, 29.429271117132075 ], [ -95.719886078042364, 29.429439117748196 ], [ -95.719764078477624, 29.42953511750104 ], [ -95.719697077916379, 29.429578117280435 ], [ -95.71967607869415, 29.429608117594608 ], [ -95.719662078362745, 29.429642117964864 ], [ -95.719624078251613, 29.429706117156204 ], [ -95.719609077797685, 29.429739117186653 ], [ -95.719515078489025, 29.429898117437876 ], [ -95.719357078246858, 29.430149117543962 ], [ -95.719340078272367, 29.430182118077344 ], [ -95.719235078613664, 29.430335117881626 ], [ -95.719196077855287, 29.430398117508801 ], [ -95.71916207783147, 29.430463117487616 ], [ -95.719140077988428, 29.430494117655321 ], [ -95.719093078466273, 29.430593118146529 ], [ -95.719062078481045, 29.430697117900653 ], [ -95.719049077836601, 29.430767118090312 ], [ -95.719036077703578, 29.430911117965536 ], [ -95.719038078565674, 29.431054117912801 ], [ -95.719047077976839, 29.431126118123583 ], [ -95.719097077860496, 29.431262118190855 ], [ -95.719181077808457, 29.431465118030516 ], [ -95.719273078286392, 29.431626117905189 ], [ -95.719315078407817, 29.431688117583558 ], [ -95.719332078065165, 29.43172011813887 ], [ -95.719421077729265, 29.431841117949958 ], [ -95.719519077849611, 29.431957117800611 ], [ -95.71979507837095, 29.432223118146354 ], [ -95.719911078403413, 29.432371118358972 ], [ -95.719975078376279, 29.43246311802277 ], [ -95.720006078548991, 29.432530117922912 ], [ -95.720017078054696, 29.432565118585892 ], [ -95.720048077944114, 29.43259811817143 ], [ -95.720109078384354, 29.432692118401388 ], [ -95.720221078389386, 29.432842117850363 ], [ -95.720439078999505, 29.433102118727735 ], [ -95.720542078756054, 29.433214118081789 ], [ -95.72059707866822, 29.433267118388933 ], [ -95.720745078593737, 29.433391118390329 ], [ -95.720842078828468, 29.433458118198715 ], [ -95.72105607877117, 29.433566118370855 ], [ -95.721171079260728, 29.433604117946565 ], [ -95.721292079170169, 29.433626118012377 ], [ -95.721373079248409, 29.433635118160556 ], [ -95.721414079124145, 29.433636118257706 ], [ -95.721578078459018, 29.433627118490104 ], [ -95.721701079046326, 29.433631118719482 ], [ -95.721783079074413, 29.433629118143262 ], [ -95.721905078578047, 29.433614118018582 ], [ -95.722028078863673, 29.433606118055653 ], [ -95.722192079059894, 29.433615118285829 ], [ -95.722311079415505, 29.433643117939774 ], [ -95.722388078657715, 29.433670118405914 ], [ -95.722488079019485, 29.433733118731848 ], [ -95.722518079299306, 29.433757118091421 ], [ -95.722573079406487, 29.433811118595685 ], [ -95.722618079057256, 29.433871118248867 ], [ -95.722699079308853, 29.433995118407523 ], [ -95.722796079471351, 29.434154118836567 ], [ -95.722885078928812, 29.434317118417386 ], [ -95.722951079085732, 29.434448118724998 ], [ -95.723036079134985, 29.434571118250329 ], [ -95.723189079597262, 29.434741118162588 ], [ -95.723329079364902, 29.4348721184361 ], [ -95.723449079433863, 29.434969118729214 ], [ -95.723583079560598, 29.435053118402649 ], [ -95.723691079292138, 29.43510411823409 ], [ -95.723879079804277, 29.435176119010023 ], [ -95.724041079612718, 29.435196119023029 ], [ -95.724123079941677, 29.435190118234303 ], [ -95.724164079362893, 29.435192118502783 ], [ -95.724368079262277, 29.435178118921677 ], [ -95.72452907961663, 29.43515111884788 ], [ -95.724608079672024, 29.435130118814815 ], [ -95.724760079658537, 29.43507711887986 ], [ -95.724800080124595, 29.43507111861398 ], [ -95.72487907998682, 29.435052118698152 ], [ -95.7250420802485, 29.435032118384743 ], [ -95.725083079739193, 29.435030118717606 ], [ -95.725370079761419, 29.435036118162749 ], [ -95.725490079891372, 29.435056118451445 ], [ -95.725608080352799, 29.435086118846652 ], [ -95.725877080462681, 29.435174118844412 ], [ -95.725912080178958, 29.435192118163215 ], [ -95.726060080166633, 29.43525411870505 ], [ -95.726092080162729, 29.435276118120417 ], [ -95.726181080358202, 29.435351118411322 ], [ -95.726251079948725, 29.435388118822065 ], [ -95.726324080424249, 29.435421118169419 ], [ -95.726459080600037, 29.435502118210607 ], [ -95.726644079760646, 29.435643118777509 ], [ -95.726701080476658, 29.435694118256194 ], [ -95.726842080373302, 29.435870118378464 ], [ -95.726884080522126, 29.435932119086097 ], [ -95.726895080200975, 29.436003118693247 ], [ -95.726918080816318, 29.436072118739236 ], [ -95.726932080234775, 29.436143118733831 ], [ -95.726937080037544, 29.436250118935774 ], [ -95.726928079942567, 29.43632111858653 ], [ -95.726872080061909, 29.436418118301283 ], [ -95.726790080325856, 29.43654111903346 ], [ -95.726684080722038, 29.436651119192256 ], [ -95.726654079958209, 29.436676118603575 ], [ -95.726620080269612, 29.436697118742497 ], [ -95.726509080182851, 29.436742118965643 ], [ -95.726365080382578, 29.436813119103892 ], [ -95.726209080489582, 29.436930119318024 ], [ -95.726130080183935, 29.437012118871486 ], [ -95.726054080433983, 29.437098118466082 ], [ -95.726019080280551, 29.437162118874731 ], [ -95.725960080510234, 29.437297118583565 ], [ -95.725925080353036, 29.437400118979461 ], [ -95.725913079686379, 29.437471119034392 ], [ -95.72589508021602, 29.43768711858819 ], [ -95.725851079638176, 29.437786118936554 ], [ -95.72584108027857, 29.437821118801953 ], [ -95.725837080414706, 29.43785711873592 ], [ -95.725843080271645, 29.437929118759474 ], [ -95.725853080030319, 29.437963119473675 ], [ -95.725856079994841, 29.437998119346208 ], [ -95.725780080458335, 29.438203119097683 ], [ -95.72562708017746, 29.438495119045442 ], [ -95.725581080557575, 29.438554118899244 ], [ -95.725505080234996, 29.43863911894643 ], [ -95.725441080041904, 29.438685118867738 ], [ -95.725336079586768, 29.438741119645154 ], [ -95.725137080383377, 29.438786119605972 ], [ -95.724976079727398, 29.438811119342578 ], [ -95.724897079998058, 29.438832119655025 ], [ -95.724744079427765, 29.438884119542493 ], [ -95.724558080048524, 29.438960119481454 ], [ -95.724488079948685, 29.43899711951525 ], [ -95.724397079821756, 29.439070119542293 ], [ -95.724290079892498, 29.439179119385265 ], [ -95.724243079922189, 29.439238119539496 ], [ -95.724153080200423, 29.439400119322556 ], [ -95.724131080067522, 29.439429119083901 ], [ -95.724098079407185, 29.439495119583704 ], [ -95.723964079337534, 29.439798119465319 ], [ -95.723885079579915, 29.439964119522468 ], [ -95.723847079355792, 29.440027119682956 ], [ -95.72366007956731, 29.440385119594424 ], [ -95.723409079487922, 29.440996119953464 ], [ -95.723406079286974, 29.441068119559251 ], [ -95.723433079217585, 29.441173119475394 ], [ -95.723532079982334, 29.44136911992889 ], [ -95.723575079755918, 29.441430119812328 ], [ -95.723701079307347, 29.441571120292245 ], [ -95.723732079345481, 29.441595120334476 ], [ -95.723758079777113, 29.441623120156748 ], [ -95.723777079977168, 29.441655120338659 ], [ -95.723798079571694, 29.441715120188231 ], [ -95.723836080137403, 29.441730120053453 ], [ -95.724011079797052, 29.441824120371862 ], [ -95.724078079898717, 29.441866120228664 ], [ -95.724172079994304, 29.441935119788639 ], [ -95.724232079836213, 29.441985119600801 ], [ -95.724306079499385, 29.44207112017331 ], [ -95.724386079666118, 29.442196119803221 ], [ -95.724419079674135, 29.442300120233707 ], [ -95.724432080288864, 29.442444120498699 ], [ -95.724425079904535, 29.442479119774415 ], [ -95.724422080345889, 29.442551120285479 ], [ -95.724409079786739, 29.442622120031366 ], [ -95.724337080235969, 29.442828120586704 ], [ -95.724232080284807, 29.44306012059717 ], [ -95.724206080217655, 29.443088120529445 ], [ -95.724108079823111, 29.443246120273006 ], [ -95.724037079687619, 29.443375120071003 ], [ -95.724005080070526, 29.443441120711558 ], [ -95.723985079593461, 29.443472120122166 ], [ -95.723920079949892, 29.443603120166653 ], [ -95.72389208035861, 29.443671120771171 ], [ -95.723844079530451, 29.443808120588017 ], [ -95.723836079988317, 29.443880120307941 ], [ -95.723842079869385, 29.443951120230235 ], [ -95.723871080200581, 29.44401812044682 ], [ -95.723989080103706, 29.4442471206211 ], [ -95.724036079653757, 29.444306120618069 ], [ -95.724087079660876, 29.444362120802431 ], [ -95.72419608026506, 29.444470120726734 ], [ -95.724243080036771, 29.444529120648465 ], [ -95.724372080194684, 29.44466912062958 ], [ -95.724508080514141, 29.444849120728957 ], [ -95.724543080532527, 29.444914120479712 ], [ -95.724553080529475, 29.444949120482956 ], [ -95.724553080438028, 29.445092120369093 ], [ -95.724546079843989, 29.445128120673193 ], [ -95.724533080398672, 29.445162120738395 ], [ -95.724484079780169, 29.445261120769821 ], [ -95.724417080537719, 29.445351120492319 ], [ -95.724389080315589, 29.445378120922832 ], [ -95.72429107956367, 29.445444120707407 ], [ -95.724220079839412, 29.445479120250461 ], [ -95.724067080250606, 29.445532120616338 ], [ -95.723948079859468, 29.445558120467318 ], [ -95.723907080222872, 29.445560120785345 ], [ -95.72362507966308, 29.445612120490171 ], [ -95.723547079845787, 29.445634120405376 ], [ -95.723403079950515, 29.445702120786667 ], [ -95.723167079630727, 29.445844121159983 ], [ -95.72307507943114, 29.445915120832993 ], [ -95.723021079638372, 29.445970120716915 ], [ -95.72295507993114, 29.446061120927009 ], [ -95.722936079938734, 29.446093120496666 ], [ -95.722924080177421, 29.446127120568253 ], [ -95.722915079436049, 29.446199120935269 ], [ -95.722921079721559, 29.446233121191444 ], [ -95.723030079885802, 29.446385120860231 ], [ -95.72313507963014, 29.446442121098986 ], [ -95.72330408016353, 29.446543121211736 ], [ -95.723395079745302, 29.446615121095046 ], [ -95.723478080389782, 29.446695120791631 ], [ -95.723529080251424, 29.446751121139137 ], [ -95.723616079564209, 29.446873120810395 ], [ -95.723672079499465, 29.446970121212857 ], [ -95.723700080224489, 29.447037121265907 ], [ -95.72373008027904, 29.447251121112362 ], [ -95.723739079626512, 29.447430120984965 ], [ -95.72371408032167, 29.447536120921683 ], [ -95.723670079799589, 29.447675121529617 ], [ -95.723624080028642, 29.447735120873443 ], [ -95.723537080008811, 29.447811121439685 ], [ -95.723473080432896, 29.447856121283355 ], [ -95.72340507957, 29.447896121555363 ], [ -95.723331079958058, 29.447928121583878 ], [ -95.72325507982147, 29.447955121457273 ], [ -95.723093080355056, 29.447980120924569 ], [ -95.722929079451276, 29.447977121395546 ], [ -95.722807079891339, 29.447966121049191 ], [ -95.722730079912964, 29.447942121557432 ], [ -95.722610079916706, 29.447916121077288 ], [ -95.722493079395846, 29.44788312090165 ], [ -95.722226079385777, 29.447792121280514 ], [ -95.721992079952159, 29.447726121079789 ], [ -95.721871079539753, 29.447707121616929 ], [ -95.721584079487798, 29.447710121293369 ], [ -95.72150307935857, 29.44772012148902 ], [ -95.721423079240878, 29.447735121596754 ], [ -95.721113079578416, 29.447832121212265 ], [ -95.720994079798402, 29.447858121228332 ], [ -95.720831078787228, 29.447878121571812 ], [ -95.720791079111109, 29.447886121060261 ], [ -95.720715079465705, 29.44791112104528 ], [ -95.720603079576478, 29.447956120972904 ], [ -95.720273079596154, 29.448102120996367 ], [ -95.7202070787922, 29.448145121353555 ], [ -95.720062078851441, 29.44821312167285 ], [ -95.71996407877765, 29.448278120970539 ], [ -95.719637079415008, 29.448552121521086 ], [ -95.719503078798539, 29.448688121861633 ], [ -95.719482078719494, 29.448718121215062 ], [ -95.719420079089232, 29.448851121807341 ], [ -95.719364079102633, 29.449024121805547 ], [ -95.719364079062345, 29.449060121377968 ], [ -95.71938107921558, 29.449167121327608 ], [ -95.719411078505189, 29.449234121741416 ], [ -95.719451078887559, 29.449297121673677 ], [ -95.719499078661826, 29.449355121466454 ], [ -95.719644079549255, 29.449482121667092 ], [ -95.719740079509847, 29.449549121530772 ], [ -95.719848079224249, 29.44960112143497 ], [ -95.719885078758523, 29.449615121997862 ], [ -95.71991707876802, 29.449638121992809 ], [ -95.719973079428286, 29.449690121348823 ], [ -95.720036079142503, 29.449736121999315 ], [ -95.720120079181541, 29.449815121960988 ], [ -95.720292079714667, 29.449913121371065 ], [ -95.720357079600717, 29.449957121948206 ], [ -95.720605079472094, 29.450144121520459 ], [ -95.72073407948119, 29.450232122148968 ], [ -95.720867079594768, 29.450315121756372 ], [ -95.720896079744236, 29.450340122159879 ], [ -95.721024079744836, 29.450430121691184 ], [ -95.721144079438318, 29.450527121569849 ], [ -95.721207079163392, 29.450573121635809 ], [ -95.721378079675773, 29.450729121980977 ], [ -95.721423079880509, 29.450789121699309 ], [ -95.721459079356805, 29.450854121439683 ], [ -95.721520079216901, 29.451062121655351 ], [ -95.721533079263935, 29.451170121585793 ], [ -95.721503079383879, 29.451423122432054 ], [ -95.721513080107528, 29.451457121608239 ], [ -95.721568079615508, 29.451594121802305 ], [ -95.72161907924486, 29.451691122109604 ], [ -95.721689079904422, 29.45186012198435 ], [ -95.721794080018398, 29.452053121945372 ], [ -95.721961079687119, 29.452300122396583 ], [ -95.722126079777226, 29.452506122075448 ], [ -95.722225079399095, 29.452621122568299 ], [ -95.722339079896784, 29.452725122139991 ], [ -95.722477079652137, 29.452802122688546 ], [ -95.722551079489293, 29.452834121921484 ], [ -95.722691080484964, 29.452909122319948 ], [ -95.722907079633558, 29.453013122364219 ], [ -95.723053079970768, 29.453079122074421 ], [ -95.723204079968241, 29.453135121929545 ], [ -95.723243080184574, 29.453145122196453 ], [ -95.723388079947, 29.453158122228754 ], [ -95.723676080327394, 29.453149122161118 ], [ -95.72379208045048, 29.453116121851952 ], [ -95.723868080126437, 29.453089122499769 ], [ -95.724189080749056, 29.453023122167714 ], [ -95.724267080818478, 29.453003122052614 ], [ -95.724344080679202, 29.452977121821775 ], [ -95.724384079977128, 29.452969122128685 ], [ -95.724653080767212, 29.452883121991199 ], [ -95.724851080465726, 29.452836121785143 ], [ -95.72496308065702, 29.452790121733873 ], [ -95.725035080451875, 29.452755121870304 ], [ -95.725073081009441, 29.452742121938336 ], [ -95.725182080929187, 29.452691122394587 ], [ -95.725257080582438, 29.452663121987722 ], [ -95.725297080784571, 29.452653121774819 ], [ -95.725378080238073, 29.452643121893185 ], [ -95.725459080573856, 29.452638121764171 ], [ -95.725539080787996, 29.452621122514273 ], [ -95.725580081193229, 29.452617122278141 ], [ -95.725785080441071, 29.452622122446328 ], [ -95.726112080678917, 29.452651122295322 ], [ -95.726193080641465, 29.452662122088242 ], [ -95.726311081013819, 29.452690121891191 ], [ -95.726389080546838, 29.45271512215654 ], [ -95.72654608135143, 29.452755122263039 ], [ -95.726587080620618, 29.452758121740363 ], [ -95.726705081142441, 29.452788122368151 ], [ -95.726819081033113, 29.452825122404811 ], [ -95.726930080665255, 29.452872122406408 ], [ -95.726994080684648, 29.452915122060897 ], [ -95.727031081284167, 29.452932121919975 ], [ -95.727096080748609, 29.452974122404523 ], [ -95.727242080895124, 29.453100122015556 ], [ -95.727311081134545, 29.453148121925409 ], [ -95.727434080811321, 29.453234121986743 ], [ -95.727493081158343, 29.453284122624087 ], [ -95.727560080869296, 29.453325122087122 ], [ -95.72764408123227, 29.453405122611322 ], [ -95.727682081215988, 29.45346812231751 ], [ -95.727704080941393, 29.453496122504966 ], [ -95.727744081108838, 29.453504122196435 ], [ -95.727782081419107, 29.453519122584375 ], [ -95.72784608116153, 29.453563121935886 ], [ -95.727928081121917, 29.453642121878097 ], [ -95.727991081567922, 29.453689122361155 ], [ -95.728074081126664, 29.453768122317811 ], [ -95.728180081184831, 29.453877121827659 ], [ -95.728252081529789, 29.453964122355309 ], [ -95.728336081931602, 29.454043122274332 ], [ -95.728370081868718, 29.454062122546187 ], [ -95.728462081703313, 29.454132122091142 ], [ -95.728600081722377, 29.454263122552877 ], [ -95.728757082100088, 29.454426122166161 ], [ -95.728863081694044, 29.454579122514549 ], [ -95.728880081927286, 29.454612122606481 ], [ -95.728938082017663, 29.454783122552396 ], [ -95.728961081447622, 29.454925122685886 ], [ -95.728980081636109, 29.455280122277468 ], [ -95.7289800812961, 29.455387122284336 ], [ -95.728984081182801, 29.455422122949432 ], [ -95.728986081406347, 29.455635122165642 ], [ -95.728971081452514, 29.455706122838212 ], [ -95.728960081431183, 29.455813122502565 ], [ -95.728975081497978, 29.45591912226562 ], [ -95.728974081280143, 29.455955122494206 ], [ -95.728953081732513, 29.456025122358412 ], [ -95.728938081696882, 29.456095122886985 ], [ -95.728966082155011, 29.456163122608448 ], [ -95.728983081878482, 29.456233123137732 ], [ -95.729044081793347, 29.456327122834598 ], [ -95.72906808133034, 29.456356123113487 ], [ -95.72909908191977, 29.45637912248565 ], [ -95.729177082295081, 29.456463122679988 ], [ -95.729211082161555, 29.456482122704081 ], [ -95.729403081912167, 29.456546122741294 ], [ -95.729641081662749, 29.456595122738797 ], [ -95.729802081865103, 29.456620122626394 ], [ -95.729881082413073, 29.456636122368486 ], [ -95.729922082246333, 29.456639122599096 ], [ -95.729962081748909, 29.456649122743247 ], [ -95.730038082195534, 29.456675122515819 ], [ -95.730075082358056, 29.456680122556488 ], [ -95.730156082383928, 29.456670122441519 ], [ -95.730237081709518, 29.456680123146729 ], [ -95.730598081831133, 29.45673912280164 ], [ -95.730882082306607, 29.456778122957743 ], [ -95.731082082318096, 29.456815123123395 ], [ -95.7311230822352, 29.456817122850534 ], [ -95.731244082479222, 29.456836122619716 ], [ -95.731609081947965, 29.45688312278428 ], [ -95.731850082432345, 29.456924122536822 ], [ -95.732054082208833, 29.456946123189955 ], [ -95.732113082348775, 29.456956122596132 ], [ -95.732274082777394, 29.456986122858684 ], [ -95.732355082496056, 29.456995123046614 ], [ -95.732554082179121, 29.457038122595037 ], [ -95.732727082714575, 29.45705912303664 ], [ -95.732757083033661, 29.457063122507215 ], [ -95.732798082867419, 29.457061122984854 ], [ -95.732879082611035, 29.457068122585355 ], [ -95.733125082917496, 29.457061123031405 ], [ -95.73320608280244, 29.457049122602577 ], [ -95.733324083070642, 29.457021122968456 ], [ -95.733440082969551, 29.456984122762744 ], [ -95.733636082988227, 29.456933122334306 ], [ -95.733827082714413, 29.456865122571187 ], [ -95.733934082520904, 29.456813122858808 ], [ -95.734102082957037, 29.456710122625992 ], [ -95.734165082726022, 29.456664122957541 ], [ -95.734223083097277, 29.456614122372567 ], [ -95.734642083092055, 29.456324122857538 ], [ -95.73470008300886, 29.456274122964302 ], [ -95.734926083421016, 29.456119122447632 ], [ -95.735020083278798, 29.456050122341864 ], [ -95.735133082909428, 29.455947122510732 ], [ -95.735167082974513, 29.455925122749946 ], [ -95.735283082816863, 29.455825122499814 ], [ -95.735336083731895, 29.45577012227038 ], [ -95.735408083448164, 29.455683122565294 ], [ -95.735465083092834, 29.455631122013394 ], [ -95.735584083810579, 29.455534122127407 ], [ -95.735683083127569, 29.455470122544316 ], [ -95.735754083628436, 29.4554351223365 ], [ -95.735835083403956, 29.45543012218365 ], [ -95.735876083901658, 29.455433122417254 ], [ -95.735949083094951, 29.45546712237936 ], [ -95.73600808354982, 29.455516122582864 ], [ -95.736052083522907, 29.455576122409372 ], [ -95.736068083715566, 29.455609122361484 ], [ -95.736106083312734, 29.455711121982571 ], [ -95.736143083729459, 29.455775122801985 ], [ -95.736189083662268, 29.455834122560425 ], [ -95.736203083611301, 29.455941122302505 ], [ -95.736263083169789, 29.456260122282437 ], [ -95.736309083933634, 29.456617122873549 ], [ -95.736344083259453, 29.457080122408087 ], [ -95.736373084003347, 29.457330123044059 ], [ -95.736394083360992, 29.457724122448838 ], [ -95.736421084076568, 29.457903122515955 ], [ -95.736436083851629, 29.458438123103758 ], [ -95.736432083816794, 29.458474123142167 ], [ -95.736419083889956, 29.458512122938153 ], [ -95.736461083572451, 29.45861312336671 ], [ -95.736459083465164, 29.458649122613025 ], [ -95.736474083691704, 29.458862122841001 ], [ -95.736507083601907, 29.45900312263252 ], [ -95.736536084006161, 29.459070123218162 ], [ -95.736608083916963, 29.459275122793802 ], [ -95.736696083853957, 29.459397123022054 ], [ -95.736734083471291, 29.459500123378106 ], [ -95.736816084161887, 29.459624123472263 ], [ -95.736911083447339, 29.459741123233695 ], [ -95.736940083887518, 29.459766123567636 ], [ -95.737237084167404, 29.460062122941672 ], [ -95.737307084291558, 29.460151122866815 ], [ -95.737359084189279, 29.460206123683221 ], [ -95.737432083726731, 29.460293123404568 ], [ -95.73751608368282, 29.460416122961874 ], [ -95.737627084487997, 29.46060712371083 ], [ -95.737691084285331, 29.460739123378399 ], [ -95.737776083742375, 29.460900123281647 ], [ -95.737820084656065, 29.461001123303021 ], [ -95.737898084186199, 29.461206123179959 ], [ -95.737961084123398, 29.461414123637159 ], [ -95.738013084446351, 29.461659123937967 ], [ -95.738031084458157, 29.461837123810021 ], [ -95.73804908448885, 29.462123123452287 ], [ -95.738062084563055, 29.462229123535028 ], [ -95.738091084595638, 29.462369123365818 ], [ -95.738121083804927, 29.46247312388628 ], [ -95.738130084825215, 29.462544123711627 ], [ -95.738141084329513, 29.462578124131795 ], [ -95.738160084705811, 29.462611123879849 ], [ -95.738247084613548, 29.462732123622544 ], [ -95.738272084583869, 29.462761123970974 ], [ -95.738287084050071, 29.462794123508314 ], [ -95.738294083862726, 29.462830124015913 ], [ -95.73831008469503, 29.462861123361872 ], [ -95.738405084512905, 29.462978123693048 ], [ -95.73844508414129, 29.46304012352865 ], [ -95.738471084749847, 29.463069123890993 ], [ -95.738618084375659, 29.463132123556349 ], [ -95.738652084098007, 29.463152123893323 ], [ -95.738765084055927, 29.463194123827531 ], [ -95.739160084415289, 29.463293124194887 ], [ -95.739321084840554, 29.463319124139371 ], [ -95.739645084591814, 29.463359123708774 ], [ -95.73976808428904, 29.463366123915161 ], [ -95.739848085293431, 29.463378123415612 ], [ -95.739968084386007, 29.463402123753834 ], [ -95.740007085075163, 29.4634141237599 ], [ -95.740126084878355, 29.463439124073652 ], [ -95.740767084640794, 29.463547123793546 ], [ -95.740846085070018, 29.463565123437192 ], [ -95.741286085291364, 29.463642123675964 ], [ -95.741451084925586, 29.463646123626337 ], [ -95.741654085075353, 29.463623124097527 ], [ -95.741736085129503, 29.463617123727737 ], [ -95.742139085329157, 29.463546123813117 ], [ -95.742293085213205, 29.463496123674926 ], [ -95.742440085961064, 29.463427123540939 ], [ -95.742475085599835, 29.463407123995594 ], [ -95.7426250853688, 29.463285123982065 ], [ -95.74277008522769, 29.463111123307776 ], [ -95.74287808552603, 29.463003123609443 ], [ -95.743143086016914, 29.462784123840752 ], [ -95.743296086019214, 29.462658123504678 ], [ -95.743430085684281, 29.462576123247601 ], [ -95.743690086173302, 29.462348123950779 ], [ -95.743745086123113, 29.462295123429385 ], [ -95.744057086267873, 29.462060123468497 ], [ -95.744091085656933, 29.462040123509087 ], [ -95.744199085347148, 29.461991123230995 ], [ -95.744318086030589, 29.461967123404552 ], [ -95.744400086299947, 29.461959122984553 ], [ -95.74451808606652, 29.461933123605746 ], [ -95.744599085952046, 29.461926123190089 ], [ -95.744681085592532, 29.461934123763097 ], [ -95.744920085924321, 29.461981123745009 ], [ -95.745039086495368, 29.462008123591449 ], [ -95.745154085930793, 29.462046122965294 ], [ -95.745194085609839, 29.462055123742282 ], [ -95.745378086271714, 29.462129123324036 ], [ -95.745484086027218, 29.462182123560517 ], [ -95.745517086412235, 29.462203123190179 ], [ -95.745599085948086, 29.462282123382813 ], [ -95.745695086444996, 29.46234912360222 ], [ -95.745898086108852, 29.462471123872305 ], [ -95.7460600861112, 29.462580123722631 ], [ -95.746301086408707, 29.462715123522017 ], [ -95.746338086199174, 29.462731123105826 ], [ -95.746371086907743, 29.462752123424359 ], [ -95.746415086954883, 29.462802123655276 ], [ -95.746455086867343, 29.462810123919802 ], [ -95.746491086558152, 29.46282812373558 ], [ -95.746522086695649, 29.462851123396685 ], [ -95.746720086308869, 29.462976123747666 ], [ -95.746756086104654, 29.46299412349142 ], [ -95.746787086352001, 29.463017123090356 ], [ -95.746841086308208, 29.463071123466435 ], [ -95.746901086389968, 29.463120123940847 ], [ -95.74693808642057, 29.463136123357312 ], [ -95.747006086778484, 29.463175123212871 ], [ -95.747251087109916, 29.463302123702086 ], [ -95.747282086712104, 29.46332612329342 ], [ -95.747315086384276, 29.463345123985999 ], [ -95.747346086412591, 29.463360123311627 ], [ -95.747706087324914, 29.463535123379842 ], [ -95.747973086429369, 29.463631123242077 ], [ -95.748169087151567, 29.463676123756827 ], [ -95.748208086759348, 29.463688124024511 ], [ -95.748244086876852, 29.46370512323152 ], [ -95.748660087424, 29.463860123425764 ], [ -95.748734087269995, 29.463891123817096 ], [ -95.748839087315915, 29.463946123394642 ], [ -95.748938087409499, 29.464011123501773 ], [ -95.749016087640015, 29.464094123961232 ], [ -95.749089087206201, 29.464262123752629 ], [ -95.749100087642617, 29.464297123317827 ], [ -95.749113086924709, 29.464367123665472 ], [ -95.749117087121732, 29.464439123744867 ], [ -95.749127087159508, 29.464510123451952 ], [ -95.74910108711849, 29.464795124115181 ], [ -95.749098086772904, 29.464867123550906 ], [ -95.749104086885211, 29.464974123526687 ], [ -95.749127086969054, 29.465042124129123 ], [ -95.749163087150762, 29.465107123820982 ], [ -95.749232086940381, 29.465196124331221 ], [ -95.749312087136076, 29.465278123458056 ], [ -95.749361087748852, 29.465336124370129 ], [ -95.749444087050591, 29.465415123781181 ], [ -95.749475087576002, 29.465438123622857 ], [ -95.749745087037653, 29.465709124016541 ], [ -95.749874087104502, 29.4658491243984 ], [ -95.749903087231161, 29.465874123568728 ], [ -95.749969087971778, 29.46591612411541 ], [ -95.750178087690259, 29.466030124327375 ], [ -95.750330087553607, 29.466083123723337 ], [ -95.750679087376469, 29.466181124054938 ], [ -95.75104508815194, 29.466230124415521 ], [ -95.751167087322074, 29.466238124122409 ], [ -95.751411088066902, 29.466228124451746 ], [ -95.751615088424444, 29.466211123986916 ], [ -95.751775087908428, 29.466181124179236 ], [ -95.751925088098361, 29.466124124073282 ], [ -95.751992087671567, 29.466083123746472 ], [ -95.752039087779522, 29.466024124148895 ], [ -95.752102087696016, 29.465932123835643 ], [ -95.752138087637476, 29.465867124120681 ], [ -95.752168088253967, 29.465801123759771 ], [ -95.752191088507971, 29.465732124344484 ], [ -95.752250087762846, 29.465599123480139 ], [ -95.752289087880598, 29.465498123457728 ], [ -95.752321087875785, 29.465395123613053 ], [ -95.75235208765028, 29.465254123480662 ], [ -95.752398088568327, 29.465155124154226 ], [ -95.752420087676953, 29.46512412417119 ], [ -95.752518088262235, 29.465009123899275 ], [ -95.752708088416, 29.464821123470344 ], [ -95.752883087872874, 29.464670123994768 ], [ -95.752977087992818, 29.464600123988525 ], [ -95.753112088307674, 29.464520123409436 ], [ -95.753308087920587, 29.464393123194213 ], [ -95.753346088709094, 29.464379123234902 ], [ -95.753424087827625, 29.464358123974062 ], [ -95.753464088493942, 29.46435212395296 ], [ -95.753934088431706, 29.464237123270308 ], [ -95.75404908796628, 29.464200123327753 ], [ -95.75420008800711, 29.46414512363091 ], [ -95.75443308861874, 29.46407712376298 ], [ -95.754669088906908, 29.464019123615248 ], [ -95.75483008884774, 29.463990123910452 ], [ -95.754924089173954, 29.46398412350517 ], [ -95.754965088588634, 29.463988123296961 ], [ -95.755046088665239, 29.463987123616718 ], [ -95.755087088859298, 29.463990123262626 ], [ -95.755125088309143, 29.464004123628712 ], [ -95.755204088496043, 29.46402312386093 ], [ -95.755242088261497, 29.464038123425215 ], [ -95.755305088408335, 29.464084123882792 ], [ -95.755385089105175, 29.464165123692567 ], [ -95.755486088681209, 29.464321123903677 ], [ -95.755492088975203, 29.464357123449343 ], [ -95.75548908872608, 29.464428123702703 ], [ -95.755450089147246, 29.464568123243371 ], [ -95.755414089178188, 29.46467012399183 ], [ -95.75532808923316, 29.464871123578231 ], [ -95.755117088362596, 29.465261123448613 ], [ -95.75506408878924, 29.46539712355348 ], [ -95.755045088517605, 29.46546612398382 ], [ -95.755030089042137, 29.465609123561229 ], [ -95.755048088337446, 29.46571612387714 ], [ -95.75508308844492, 29.465819124066631 ], [ -95.75512808904675, 29.465919123927229 ], [ -95.755180088819102, 29.466017123799517 ], [ -95.755328089107408, 29.466231123773198 ], [ -95.755379089191891, 29.466288123866743 ], [ -95.755441088955095, 29.466333124156332 ], [ -95.755551088793041, 29.46638212430474 ], [ -95.755631088585005, 29.466398123751539 ], [ -95.75567208868155, 29.466397123586329 ], [ -95.755712088690316, 29.46639012363854 ], [ -95.755869089206556, 29.466347123918812 ], [ -95.75594508940506, 29.466319124297055 ], [ -95.75598008860436, 29.466300124089887 ], [ -95.756054088720362, 29.466272123685872 ], [ -95.756273089054432, 29.466176123702585 ], [ -95.756651089520901, 29.466040123829448 ], [ -95.756807089024136, 29.465995123748961 ], [ -95.756965089052684, 29.465956124063236 ], [ -95.757080089337251, 29.465919124230425 ], [ -95.757161089317691, 29.465905123391643 ], [ -95.757242088856032, 29.465897124154552 ], [ -95.757447089753938, 29.465894123728244 ], [ -95.757488089723012, 29.465897123513351 ], [ -95.757568089663067, 29.465914123739193 ], [ -95.757645088998672, 29.465938124194814 ], [ -95.757752089712966, 29.465990124134212 ], [ -95.757786089857902, 29.466010124001855 ], [ -95.757841089344453, 29.466064124119953 ], [ -95.757878089117838, 29.466127123648601 ], [ -95.757891089370119, 29.466161123863188 ], [ -95.757908089063932, 29.466232123794335 ], [ -95.757927089767094, 29.466374123464195 ], [ -95.757938090018555, 29.466408123883621 ], [ -95.757948089124795, 29.466479123630776 ], [ -95.757971089608176, 29.466584123605308 ], [ -95.757991089708781, 29.466654123984128 ], [ -95.758020089711522, 29.46672112391898 ], [ -95.758057089088226, 29.466785123498141 ], [ -95.758103089081331, 29.466845124316762 ], [ -95.758216089511293, 29.466948124203427 ], [ -95.758308090022553, 29.467019124057256 ], [ -95.758376089454799, 29.467060123575912 ], [ -95.758413089178802, 29.46707512410514 ], [ -95.758533089358409, 29.467096124344401 ], [ -95.758615090005478, 29.467101124003452 ], [ -95.758738090056838, 29.467095123933177 ], [ -95.758933090074947, 29.467041123981911 ], [ -95.759007089385889, 29.46700812401285 ], [ -95.759050090160656, 29.466981123837659 ], [ -95.759067089455058, 29.466948124039284 ], [ -95.759115090011491, 29.466812123998626 ], [ -95.759134089609347, 29.466780124094807 ], [ -95.759177089915141, 29.466680123713878 ], [ -95.759241090290146, 29.466509123690148 ], [ -95.759312089511312, 29.466360123755212 ], [ -95.759365090065259, 29.46622412394456 ], [ -95.7593860897627, 29.46611812348927 ], [ -95.759386090115129, 29.4659731233013 ], [ -95.759376089454193, 29.465866123621343 ], [ -95.759356090022095, 29.465760123455055 ], [ -95.759325090258002, 29.465655123778404 ], [ -95.75930009035406, 29.465549123264765 ], [ -95.75928909032497, 29.465442123697944 ], [ -95.75930208940909, 29.465372123275582 ], [ -95.759313089736551, 29.465337123913908 ], [ -95.759371089605352, 29.465202123615725 ], [ -95.759390089854989, 29.465170123690793 ], [ -95.759472090245552, 29.465091123102845 ], [ -95.759567089692041, 29.465021123849159 ], [ -95.759667089985754, 29.464959123159776 ], [ -95.759738089468087, 29.46492412382625 ], [ -95.759994090384836, 29.464812123190065 ], [ -95.760171089818797, 29.464723123802141 ], [ -95.760209089733877, 29.464709123696057 ], [ -95.760281089716599, 29.464675123193786 ], [ -95.760658090356273, 29.464531123067079 ], [ -95.760761090204497, 29.464473123500532 ], [ -95.760855089737063, 29.464403123487259 ], [ -95.760987090551325, 29.464318122995255 ], [ -95.761022090134546, 29.464299123314362 ], [ -95.76118009055206, 29.464262123509513 ], [ -95.761221090394955, 29.464260123336942 ], [ -95.761301090271132, 29.464247122991456 ], [ -95.761383089910026, 29.464243123461522 ], [ -95.761464090100475, 29.464255123330179 ], [ -95.761503090342615, 29.464267123299528 ], [ -95.761539090347469, 29.464283123249452 ], [ -95.761569090192424, 29.464308123308385 ], [ -95.76159409082895, 29.464337123644622 ], [ -95.761628090311532, 29.464402123660808 ], [ -95.76165609049599, 29.464507123190963 ], [ -95.761669090440208, 29.464578123149554 ], [ -95.761671090807525, 29.464614123801876 ], [ -95.761665090639838, 29.464794123734045 ], [ -95.761669090524535, 29.46497412322713 ], [ -95.761695090143022, 29.465042123759186 ], [ -95.761776090139023, 29.465206123531228 ], [ -95.761854090804079, 29.465332123412551 ], [ -95.761985090507892, 29.465514123929914 ], [ -95.76215109032367, 29.465720123404193 ], [ -95.762239090307972, 29.465841123717137 ], [ -95.762356090477311, 29.465990123442054 ], [ -95.762476090697291, 29.466087123348384 ], [ -95.762574090694969, 29.466153123259087 ], [ -95.762681090903556, 29.46620512368478 ], [ -95.762791090445717, 29.466253123980877 ], [ -95.762911090444618, 29.466277123372468 ], [ -95.763034091151823, 29.466280123225879 ], [ -95.763232090785095, 29.46623212371199 ], [ -95.763303090595954, 29.466196123286842 ], [ -95.763335090491552, 29.466173123851142 ], [ -95.763390091342018, 29.466120123626098 ], [ -95.763462090523959, 29.466033123808547 ], [ -95.763472091054169, 29.465998123391376 ], [ -95.763475090977565, 29.465891123121491 ], [ -95.763467090868545, 29.465855123411771 ], [ -95.763430090945292, 29.465753123339429 ], [ -95.763346091051972, 29.465630123910056 ], [ -95.763292090541796, 29.46557612323905 ], [ -95.763262091272068, 29.465552123731122 ], [ -95.763130090993087, 29.465413123714409 ], [ -95.763005090647539, 29.465271123074064 ], [ -95.762965090958147, 29.465209123776091 ], [ -95.76295309036523, 29.465174123810037 ], [ -95.762936091004335, 29.465068123823592 ], [ -95.762936091206939, 29.465032123834309 ], [ -95.762960090763301, 29.464890123363542 ], [ -95.762971090818709, 29.464855123722565 ], [ -95.76305209054965, 29.46473012349681 ], [ -95.763125090958411, 29.464644122962905 ], [ -95.76320209121954, 29.464561123085023 ], [ -95.763272090718885, 29.464523123482454 ], [ -95.763424091286311, 29.46447012352213 ], [ -95.763583090843667, 29.464434123557627 ], [ -95.763703090851436, 29.464413122980954 ], [ -95.763866090603642, 29.464393123192377 ], [ -95.76398909141686, 29.464388123029295 ], [ -95.764112090887537, 29.46439112281854 ], [ -95.764153090667747, 29.46438912355044 ], [ -95.764193091315832, 29.464382122915485 ], [ -95.764267090804964, 29.464413123597208 ], [ -95.764384091595431, 29.46444612332154 ], [ -95.764498090978861, 29.464488123593668 ], [ -95.764634091595141, 29.464568123310208 ], [ -95.764686090937303, 29.464624123076309 ], [ -95.764731090852806, 29.46468312340232 ], [ -95.764758090729472, 29.464710123441993 ], [ -95.764779091007313, 29.464741123121389 ], [ -95.76486209083987, 29.464906123433138 ], [ -95.764893091516612, 29.464958123242063 ], [ -95.764894090819936, 29.464995123170088 ], [ -95.764933091745249, 29.465134123535098 ], [ -95.764959090822188, 29.46527512343949 ], [ -95.764998090941504, 29.465558123648464 ], [ -95.76503309150587, 29.465698123809254 ], [ -95.765046090852096, 29.465769123348359 ], [ -95.765091090980548, 29.465907123437923 ], [ -95.765113090856246, 29.466012123970362 ], [ -95.765123091809286, 29.466083123111073 ], [ -95.765169091118437, 29.466294123941459 ], [ -95.765209091390687, 29.466433123994442 ], [ -95.765240091213499, 29.466498123483351 ], [ -95.765252091713151, 29.466533123210279 ], [ -95.765315091323117, 29.466624123460942 ], [ -95.765374091942164, 29.46667512389023 ], [ -95.765444091423689, 29.466712123445667 ], [ -95.765561091401764, 29.466746123962235 ], [ -95.765601091039315, 29.466751123452919 ], [ -95.765683091893038, 29.466754123946323 ], [ -95.765724091197299, 29.466751124039241 ], [ -95.765803091096288, 29.466736123596181 ], [ -95.765841091962002, 29.466722123722967 ], [ -95.765911091263362, 29.466685123763728 ], [ -95.765975091931836, 29.466641123930941 ], [ -95.766055091617687, 29.46656012400102 ], [ -95.766075091572418, 29.466528123906958 ], [ -95.766126091367056, 29.466473123886182 ], [ -95.76622009115988, 29.466356123366836 ], [ -95.76627409171391, 29.466302123832595 ], [ -95.766361091980741, 29.466225123960065 ], [ -95.766395091315204, 29.466205123828864 ], [ -95.766470091574064, 29.466176123755961 ], [ -95.766590091254685, 29.466156123382941 ], [ -95.766714091413078, 29.46615112318667 ], [ -95.766919091976447, 29.466156123651999 ], [ -95.76736709224987, 29.46618912337054 ], [ -95.76760909237619, 29.466230123389785 ], [ -95.767688091597662, 29.466250123458131 ], [ -95.767764091960402, 29.466277123107101 ], [ -95.767838092164894, 29.466309123687392 ], [ -95.76787009195516, 29.466331123342759 ], [ -95.768000091921337, 29.466474123832491 ], [ -95.768061092593683, 29.466567123367494 ], [ -95.768111092486521, 29.466665123670918 ], [ -95.768157092503245, 29.466803123312584 ], [ -95.768244091810089, 29.467226123537319 ], [ -95.768246092084482, 29.467298123947291 ], [ -95.768241092312977, 29.467369123710878 ], [ -95.768239092712903, 29.467513123818204 ], [ -95.76821309224421, 29.467834123976267 ], [ -95.768155092638565, 29.468081123572595 ], [ -95.768139092450525, 29.468188123450314 ], [ -95.768161091930125, 29.468402124145577 ], [ -95.768188092110762, 29.468470123977617 ], [ -95.768252092319017, 29.468562123575172 ], [ -95.768277092353173, 29.468590124234154 ], [ -95.768370091990278, 29.468660123827021 ], [ -95.768443091871831, 29.468693124311685 ], [ -95.768483091874018, 29.468702124320426 ], [ -95.768564092802421, 29.468713124177938 ], [ -95.768646092668263, 29.468712124100811 ], [ -95.768724092083261, 29.468692124177789 ], [ -95.768952092754887, 29.468608124184023 ], [ -95.769106092762286, 29.468559124145873 ], [ -95.769264092821814, 29.468523123866007 ], [ -95.769427093077667, 29.468504123632187 ], [ -95.769590092755877, 29.468517123511567 ], [ -95.769672092594845, 29.46851912407978 ], [ -95.769835092273667, 29.46853712427351 ], [ -95.769998092683991, 29.46854912354754 ], [ -95.770487093004519, 29.468565124012496 ], [ -95.770610092753685, 29.468574123851774 ], [ -95.770814092715085, 29.468597124223781 ], [ -95.770935092701492, 29.468619123963006 ], [ -95.771050092977234, 29.468657124081052 ], [ -95.771197092540547, 29.468722123511832 ], [ -95.771301093407629, 29.468778124281958 ], [ -95.771368093297482, 29.468819123558454 ], [ -95.771587093332357, 29.468982124128409 ], [ -95.771707092904748, 29.469093124312888 ], [ -95.771761093660089, 29.46904312402178 ], [ -95.777134093882921, 29.464138122601476 ], [ -95.777649094299733, 29.463669122897585 ], [ -95.778873094994196, 29.462565122658081 ], [ -95.779738094718724, 29.461798122133334 ], [ -95.782764095409576, 29.459013121552349 ], [ -95.783684095363796, 29.458138121466938 ], [ -95.784237095853044, 29.457663121390262 ], [ -95.784684096380388, 29.457256120839247 ], [ -95.785321096329724, 29.456674121172984 ], [ -95.785661096310221, 29.456340120514586 ], [ -95.785792096523537, 29.45622512077502 ], [ -95.786045096159043, 29.456002120971675 ], [ -95.786202095930463, 29.455859121000067 ], [ -95.787126096184252, 29.45501712070152 ], [ -95.788079097201546, 29.454147120290759 ], [ -95.79042509672017, 29.45199411937741 ], [ -95.790484096699828, 29.451941119614588 ], [ -95.792110097688607, 29.450477119711316 ], [ -95.792332098066694, 29.450276119507983 ], [ -95.792640097802249, 29.449997119008646 ], [ -95.793537097489235, 29.449184119052134 ], [ -95.797398098917498, 29.445689118009877 ], [ -95.80078909968401, 29.448509119196604 ], [ -95.802692100227659, 29.450045119361565 ], [ -95.804288100313258, 29.451380119491809 ], [ -95.804741100914157, 29.451756119224786 ], [ -95.809587102280474, 29.455787119731511 ], [ -95.810245102552202, 29.456341119695164 ], [ -95.812036102716718, 29.457815119867071 ], [ -95.815321104237256, 29.460575120449228 ], [ -95.816327104146097, 29.461366121224604 ], [ -95.817067104137394, 29.461697121197332 ], [ -95.819034105424294, 29.462460121251279 ], [ -95.8210451057206, 29.457867120187011 ], [ -95.821542105655823, 29.456706119615855 ], [ -95.82162310579406, 29.456520119302247 ], [ -95.823985105987646, 29.450990118151502 ], [ -95.825034105615572, 29.448615118347245 ], [ -95.825446106424138, 29.447649117341697 ], [ -95.828225106220486, 29.441141116546696 ], [ -95.828972106956641, 29.439378115747449 ], [ -95.830689106368439, 29.435370115194722 ], [ -95.831347107037658, 29.433834115064794 ], [ -95.834120107502471, 29.427353112989941 ], [ -95.834405107024963, 29.426499112749415 ], [ -95.834434106861437, 29.426354112686262 ], [ -95.834599107797473, 29.425568112589335 ], [ -95.834685107316446, 29.424096112817502 ], [ -95.834806106619595, 29.420619112268028 ], [ -95.834835107104624, 29.419366111887374 ], [ -95.834894106516728, 29.416815111571641 ], [ -95.835090106464989, 29.411363109752312 ], [ -95.835228106855809, 29.409203109290303 ], [ -95.835298107083133, 29.407443109100914 ], [ -95.835299106493522, 29.40740610943957 ], [ -95.835371106460627, 29.405317108840212 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 18, "Tract": "48157673700", "Area_SqMi": 3.4681128504451118, "total_2009": null, "total_2010": 45, "total_2011": 57, "total_2012": 166, "total_2013": 161, "total_2014": 147, "total_2015": 163, "total_2016": 74, "total_2017": 75, "total_2018": 58, "total_2019": 47, "total_2020": 56, "age1": 865, "age2": 887, "age3": 190, "earn1": 570, "earn2": 974, "earn3": 398, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 23, "naics_s07": 2, "naics_s08": 1799, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 0, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 15, "naics_s17": 23, "naics_s18": 33, "naics_s19": 21, "naics_s20": 13, "race1": 953, "race2": 725, "race3": 27, "race4": 185, "race5": 6, "race6": 46, "ethnicity1": 1354, "ethnicity2": 588, "edu1": 247, "edu2": 288, "edu3": 329, "edu4": 213, "Shape_Length": 54427.289554195529, "Shape_Area": 96685050.535943568, "total_2021": 143, "total_2022": 1942 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.714806086778609, 29.658557164327071 ], [ -95.71479708665467, 29.658240164507365 ], [ -95.71478608682493, 29.657831164670245 ], [ -95.714774087011861, 29.657420164428917 ], [ -95.714761086950006, 29.656932163901253 ], [ -95.714747086735329, 29.655843163919013 ], [ -95.714741086496431, 29.655545164382062 ], [ -95.714722086924922, 29.654573163478492 ], [ -95.714654086651976, 29.65217216340556 ], [ -95.714575086940428, 29.649456162900027 ], [ -95.714554086727688, 29.648603162563873 ], [ -95.714474086640848, 29.645912161728806 ], [ -95.714451086119027, 29.64526516228749 ], [ -95.714434086233496, 29.644618162002097 ], [ -95.714417086048499, 29.644095162002543 ], [ -95.714375086456542, 29.642840161531883 ], [ -95.714352086101272, 29.641842161323709 ], [ -95.714310086197244, 29.640049161087394 ], [ -95.714285086339146, 29.638152160859576 ], [ -95.714284085719981, 29.636948160021149 ], [ -95.714284086163474, 29.636572160460545 ], [ -95.714273085887783, 29.635460160252247 ], [ -95.714228085423628, 29.635271159405761 ], [ -95.714248086232402, 29.635158159846174 ], [ -95.714244085917286, 29.635045159540734 ], [ -95.714264085672212, 29.634902159652032 ], [ -95.714242086226747, 29.634751159531366 ], [ -95.714263085582104, 29.634470159512322 ], [ -95.714256086146406, 29.633976159259834 ], [ -95.714259085680467, 29.633074159424087 ], [ -95.714263085325101, 29.631457158750241 ], [ -95.714257086021775, 29.630912158577637 ], [ -95.714256085251108, 29.630835158715367 ], [ -95.714255085762275, 29.630771159295335 ], [ -95.714249085345301, 29.630190158967491 ], [ -95.714231085414781, 29.629302158637643 ], [ -95.714219085369862, 29.628368158129074 ], [ -95.714217084992768, 29.628236158767727 ], [ -95.714182085392991, 29.62631415764778 ], [ -95.714175084871798, 29.625997158236405 ], [ -95.714127085490887, 29.625004157864794 ], [ -95.714066085081711, 29.623604157165044 ], [ -95.714064085078775, 29.623545157043004 ], [ -95.714030085118495, 29.622624156970687 ], [ -95.713969084945461, 29.620964157338705 ], [ -95.713894085115456, 29.618904156091986 ], [ -95.713891085184059, 29.618795156825989 ], [ -95.71384908526629, 29.617181155763213 ], [ -95.713846084710781, 29.616918155681859 ], [ -95.713786084990417, 29.611629154965854 ], [ -95.713697084427707, 29.603428153226393 ], [ -95.71368408370256, 29.60195915285415 ], [ -95.713666083913907, 29.599942152954469 ], [ -95.713656084213028, 29.599361152908983 ], [ -95.713641083609318, 29.599102152524342 ], [ -95.713634084396602, 29.599050152755051 ], [ -95.7136040838828, 29.598814152849585 ], [ -95.713567084230107, 29.598584152237379 ], [ -95.710340083585152, 29.598940152517748 ], [ -95.71024008299581, 29.598951152622632 ], [ -95.708575082858488, 29.599125152669505 ], [ -95.703723081321854, 29.599634152801695 ], [ -95.70235708132013, 29.599784152933971 ], [ -95.699240079937113, 29.600125153510419 ], [ -95.69916407988714, 29.60013315318945 ], [ -95.697909080042209, 29.600271152920548 ], [ -95.697652079667691, 29.600299153595056 ], [ -95.694865079777045, 29.600605153609802 ], [ -95.691342077989603, 29.60094215364548 ], [ -95.691299078529866, 29.600941153421214 ], [ -95.69061807848243, 29.601006154099089 ], [ -95.690580078447667, 29.601015153885644 ], [ -95.689722078431004, 29.601138154160427 ], [ -95.689065077972842, 29.60122315366706 ], [ -95.688080077152719, 29.601248153891706 ], [ -95.686762076793215, 29.601252153693441 ], [ -95.685696077245268, 29.60132515425596 ], [ -95.684764077099231, 29.601413154156688 ], [ -95.684446076718771, 29.601463154155944 ], [ -95.684139076422596, 29.601512154229283 ], [ -95.683979076136907, 29.601537154072748 ], [ -95.684084076285473, 29.601722153895139 ], [ -95.68423507677133, 29.602014154243076 ], [ -95.68431607643025, 29.602167153783551 ], [ -95.684585076783534, 29.602673154593074 ], [ -95.685236077331538, 29.603899154073613 ], [ -95.685337076548961, 29.604089154334147 ], [ -95.685493077264226, 29.604383154276494 ], [ -95.685997077670919, 29.605336154397801 ], [ -95.686884077579521, 29.606875155266728 ], [ -95.6871230775253, 29.607290154818923 ], [ -95.687497077283155, 29.607855155379834 ], [ -95.688111078099723, 29.608940155380193 ], [ -95.688268078176776, 29.609077155734262 ], [ -95.688357077896853, 29.609228155109562 ], [ -95.68844207808047, 29.609369155394567 ], [ -95.688539078538511, 29.609525155531294 ], [ -95.688647078211943, 29.609678155771803 ], [ -95.688756077975029, 29.609834155724762 ], [ -95.688876078303409, 29.609997155995625 ], [ -95.68899907782, 29.61017315599749 ], [ -95.689127078558613, 29.61035115528432 ], [ -95.689229077940979, 29.610492155901166 ], [ -95.689382077954775, 29.610689155510808 ], [ -95.689515078662311, 29.610861155559725 ], [ -95.689628078059769, 29.610991155970982 ], [ -95.68976207885666, 29.611151155676495 ], [ -95.689948078492179, 29.611368155410741 ], [ -95.690102078606429, 29.61154415572824 ], [ -95.690257078424537, 29.611722155526216 ], [ -95.690449078202377, 29.611926156131812 ], [ -95.690645078557182, 29.612124156325667 ], [ -95.690866078643779, 29.612350155685437 ], [ -95.691028078640201, 29.612513156256576 ], [ -95.691186079085753, 29.612680155636131 ], [ -95.691429078728177, 29.612926155931383 ], [ -95.69177107936703, 29.613278156495287 ], [ -95.692005079339836, 29.613527156410498 ], [ -95.692602079766473, 29.614123156376852 ], [ -95.692856079253744, 29.614372156165743 ], [ -95.692976079023296, 29.614499156437937 ], [ -95.693163080007835, 29.614695156501188 ], [ -95.693382079835715, 29.614921156018784 ], [ -95.693526079905823, 29.615077156291676 ], [ -95.693653079606193, 29.615217156088558 ], [ -95.693743079758804, 29.615317156918607 ], [ -95.693816079203444, 29.615392156403828 ], [ -95.694800080337998, 29.616607156625292 ], [ -95.695614080164759, 29.617899157185292 ], [ -95.696525080867289, 29.619754156857066 ], [ -95.697885081365925, 29.622680157745044 ], [ -95.697991080931004, 29.622933157556883 ], [ -95.698267081238228, 29.62359215827161 ], [ -95.700896081624151, 29.629385159540828 ], [ -95.704527083636563, 29.637384160992408 ], [ -95.704564083647867, 29.637462160214273 ], [ -95.704608083698687, 29.63755816031054 ], [ -95.704650083175281, 29.637651160468607 ], [ -95.704886083177385, 29.638173160708298 ], [ -95.706710084394956, 29.642221161357227 ], [ -95.706794084477593, 29.642438161263456 ], [ -95.706893084172535, 29.642683161972794 ], [ -95.70694308379538, 29.642965162097479 ], [ -95.708209084328416, 29.647404162395912 ], [ -95.709033084940188, 29.649210162869565 ], [ -95.709098084822401, 29.649353162889589 ], [ -95.709117085163285, 29.649395162972024 ], [ -95.710652085684913, 29.652762163946072 ], [ -95.711506085866532, 29.654636163589036 ], [ -95.711771086191732, 29.655154163822139 ], [ -95.712219086415431, 29.656029163858268 ], [ -95.712741086642012, 29.656744164207215 ], [ -95.712910085985911, 29.656975164269774 ], [ -95.713575086548943, 29.65764716428691 ], [ -95.714245086692401, 29.658204164219548 ], [ -95.714806086778609, 29.658557164327071 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 19, "Tract": "48201250701", "Area_SqMi": 7.6379934776463996, "total_2009": 6510, "total_2010": 7229, "total_2011": 7498, "total_2012": 7219, "total_2013": 7305, "total_2014": 7558, "total_2015": 7564, "total_2016": 8032, "total_2017": 7914, "total_2018": 7843, "total_2019": 8270, "total_2020": 7946, "age1": 1482, "age2": 5481, "age3": 1778, "earn1": 1095, "earn2": 2573, "earn3": 5073, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 139, "naics_s05": 73, "naics_s06": 25, "naics_s07": 652, "naics_s08": 107, "naics_s09": 0, "naics_s10": 136, "naics_s11": 26, "naics_s12": 51, "naics_s13": 0, "naics_s14": 109, "naics_s15": 6525, "naics_s16": 209, "naics_s17": 9, "naics_s18": 552, "naics_s19": 126, "naics_s20": 0, "race1": 6572, "race2": 1768, "race3": 58, "race4": 192, "race5": 10, "race6": 141, "ethnicity1": 6486, "ethnicity2": 2255, "edu1": 1179, "edu2": 1737, "edu3": 2131, "edu4": 2212, "Shape_Length": 76502.724539138173, "Shape_Area": 212934185.60029557, "total_2021": 8432, "total_2022": 8741 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.268175988521705, 30.005222251040859 ], [ -95.268249987913862, 30.005023250771576 ], [ -95.268056988687349, 30.005017250688351 ], [ -95.267841988441859, 30.005010250915706 ], [ -95.267449988502946, 30.005017250593291 ], [ -95.266272987449966, 30.005035250734149 ], [ -95.265594987739178, 30.005041250613079 ], [ -95.265007987258159, 30.005035250594755 ], [ -95.264869987745868, 30.005032251002739 ], [ -95.263281987006906, 30.005053250421184 ], [ -95.263118986748836, 30.005055250897858 ], [ -95.262897986896746, 30.005058250658156 ], [ -95.262575987348868, 30.005062250782277 ], [ -95.261206986289423, 30.005080251155032 ], [ -95.260490985981548, 30.005090251159785 ], [ -95.259461986085782, 30.005104250523733 ], [ -95.258392985412058, 30.005123251203617 ], [ -95.257744985863326, 30.005120250975903 ], [ -95.256876985676655, 30.005128250842663 ], [ -95.256191985572613, 30.005097250683786 ], [ -95.25559198507392, 30.005029251232131 ], [ -95.254946984569159, 30.004902250881113 ], [ -95.254387985021907, 30.004772251442688 ], [ -95.253288984872626, 30.004421251043144 ], [ -95.252764984733503, 30.004175250664982 ], [ -95.25201898386409, 30.003806250604772 ], [ -95.251964983676402, 30.003774250452757 ], [ -95.251112984184559, 30.003267250991623 ], [ -95.250703983772055, 30.003024250430098 ], [ -95.250481983530378, 30.002893251140076 ], [ -95.249450983631974, 30.002286250430377 ], [ -95.248379983001698, 30.001622250597741 ], [ -95.247828982637898, 30.001280250502251 ], [ -95.246967983047853, 30.000762250325671 ], [ -95.246613983020467, 30.000574250389214 ], [ -95.245803982180007, 30.000161250269919 ], [ -95.245108982558861, 29.999838250386794 ], [ -95.244496982122769, 29.999632249990956 ], [ -95.244166981564106, 29.99953925074357 ], [ -95.243594981239468, 29.999412250644337 ], [ -95.243100981851384, 29.999326250070741 ], [ -95.242668981286457, 29.999306250094502 ], [ -95.24211298151468, 29.999255250273023 ], [ -95.241756981431408, 29.999259250679863 ], [ -95.241268981240367, 29.999265250097348 ], [ -95.241111981137209, 29.999268249943988 ], [ -95.240222980827539, 29.999280250476676 ], [ -95.238792980400405, 29.999298250005143 ], [ -95.237856980283112, 29.999310250157805 ], [ -95.237181979707742, 29.999319250486412 ], [ -95.237026979595925, 29.999319250703287 ], [ -95.236575980064387, 29.999325250613996 ], [ -95.236440979550594, 29.999327250218201 ], [ -95.236105979818618, 29.999333250250558 ], [ -95.235365979962992, 29.999341250426856 ], [ -95.234957979342809, 29.999348250597762 ], [ -95.234036979200951, 29.999361250294719 ], [ -95.23190997873877, 29.999341250297967 ], [ -95.23184597857626, 29.999343250404014 ], [ -95.231830979082616, 29.999343251132878 ], [ -95.231268978317431, 29.999361250849454 ], [ -95.231163978774717, 29.999364250312052 ], [ -95.231113978327556, 29.999366251149596 ], [ -95.230629977985217, 29.999381250321115 ], [ -95.228142978107726, 29.99940925127083 ], [ -95.22782997813944, 29.99943025088923 ], [ -95.226496977033605, 29.999428250875265 ], [ -95.222394976758167, 29.999421250632128 ], [ -95.21939697543776, 29.999458251482036 ], [ -95.218957975267031, 29.999456251080311 ], [ -95.217523975110865, 29.999456250865368 ], [ -95.212430974172392, 29.999453251272914 ], [ -95.210504973016299, 29.999472251237282 ], [ -95.209169972750757, 29.999413251549953 ], [ -95.208494972245518, 29.999384251236492 ], [ -95.207355972388413, 29.999335251265826 ], [ -95.206801972178056, 29.999311251266228 ], [ -95.2063419726516, 29.999291251626445 ], [ -95.206076972174827, 29.999280251748417 ], [ -95.20414697159012, 29.999186252012432 ], [ -95.20360797194796, 29.99915925165072 ], [ -95.203497971280555, 29.999154251444619 ], [ -95.203419971213421, 29.999150251363005 ], [ -95.202718971527972, 29.999116251854144 ], [ -95.201795970730203, 29.999080251383496 ], [ -95.201462971035156, 29.999067251764583 ], [ -95.200887970896389, 29.999045251961189 ], [ -95.20003897102491, 29.999012251365443 ], [ -95.199615970224244, 29.998996251362069 ], [ -95.197024969438203, 29.998886251906679 ], [ -95.196542969937539, 29.998866251922887 ], [ -95.196378969789649, 29.998859251873814 ], [ -95.193323968770429, 29.998807252275988 ], [ -95.19340196924253, 30.00003425240509 ], [ -95.19342096904262, 30.000337252353955 ], [ -95.193434968848379, 30.000466251986197 ], [ -95.19342096855722, 30.000552252399988 ], [ -95.193431968937617, 30.000713252291717 ], [ -95.193435968832802, 30.000727251876576 ], [ -95.193451969077259, 30.000787252542235 ], [ -95.193451968471123, 30.000865252430568 ], [ -95.193463969075239, 30.001146252437476 ], [ -95.193475968796434, 30.001496252045769 ], [ -95.193489968944036, 30.001581252405831 ], [ -95.19350996870034, 30.001832252298424 ], [ -95.193528969405946, 30.001906252159053 ], [ -95.193513968763256, 30.001985252198001 ], [ -95.193513968641284, 30.002127252883898 ], [ -95.193520969349308, 30.002176252531655 ], [ -95.193523968974972, 30.002198252744488 ], [ -95.19351796892272, 30.002362252235205 ], [ -95.193534969393156, 30.002490252717369 ], [ -95.193559968818192, 30.002618252403941 ], [ -95.193538968514375, 30.002685252403225 ], [ -95.193570969385021, 30.002910252330281 ], [ -95.193568969189215, 30.003019252631614 ], [ -95.193570969533411, 30.003191253232597 ], [ -95.193581968722214, 30.003418253048142 ], [ -95.193596969446133, 30.003582252751201 ], [ -95.19361296860167, 30.003750253253191 ], [ -95.193614968943933, 30.003838253239206 ], [ -95.193624968854763, 30.003918253252237 ], [ -95.193638968693364, 30.004114252921809 ], [ -95.193627969564531, 30.004169253192799 ], [ -95.193631968655694, 30.004225252554441 ], [ -95.193706968931579, 30.005515253076236 ], [ -95.193780968975432, 30.006896253890844 ], [ -95.193793969774021, 30.006960253800354 ], [ -95.193796968865826, 30.00697825345371 ], [ -95.19379296966882, 30.007038253170531 ], [ -95.193644969541452, 30.00704325370701 ], [ -95.193353969472014, 30.007049253781524 ], [ -95.193143969049473, 30.007064253611841 ], [ -95.192088969286075, 30.00711225357837 ], [ -95.191154968855656, 30.007152253394842 ], [ -95.19023796861336, 30.007194253457712 ], [ -95.189829968134163, 30.007216253925385 ], [ -95.189730968560909, 30.007215253753891 ], [ -95.189329968578619, 30.007226254035377 ], [ -95.189244968630405, 30.007228253870021 ], [ -95.189054967829833, 30.007242254047046 ], [ -95.188869967528191, 30.007242254171452 ], [ -95.188463967835958, 30.00726625336349 ], [ -95.187672968212851, 30.007306253652697 ], [ -95.187595967514667, 30.007307253688335 ], [ -95.18666396763804, 30.007343254292071 ], [ -95.186269967648968, 30.007364254082376 ], [ -95.185679967238798, 30.00738425372316 ], [ -95.184834966492048, 30.007424253777103 ], [ -95.184476967081494, 30.007451254298871 ], [ -95.184251966953411, 30.007487253756931 ], [ -95.183793966276781, 30.0075502542031 ], [ -95.183579966870028, 30.007589254044372 ], [ -95.183266966768684, 30.007665254302534 ], [ -95.183020966254659, 30.007735254163929 ], [ -95.182635966897266, 30.007859254004309 ], [ -95.182261966310293, 30.007994254440256 ], [ -95.182143966670779, 30.008044254031205 ], [ -95.18191596643085, 30.008149254342293 ], [ -95.181499966305111, 30.008360254618243 ], [ -95.181267966601283, 30.008486254754928 ], [ -95.181150966493874, 30.008553254278166 ], [ -95.180755966199868, 30.008815254626455 ], [ -95.18041896555134, 30.009067254465641 ], [ -95.180275965455195, 30.009184254134681 ], [ -95.180053966189348, 30.009382254178153 ], [ -95.180000965579552, 30.009431254284028 ], [ -95.179916966085599, 30.009534254326208 ], [ -95.179797965585209, 30.009654254889831 ], [ -95.17973996567622, 30.009713254799866 ], [ -95.179628965740179, 30.009826254396295 ], [ -95.179350965716679, 30.010119254994784 ], [ -95.179243965982891, 30.01020425438621 ], [ -95.179167965584654, 30.01028325459357 ], [ -95.178835966022305, 30.010632255278978 ], [ -95.178596965810215, 30.010920254660114 ], [ -95.178462965363863, 30.011075255130105 ], [ -95.178322965066656, 30.011158255286077 ], [ -95.17886096556407, 30.011608254920247 ], [ -95.179228966193207, 30.012003255510241 ], [ -95.179546966222773, 30.012371254814344 ], [ -95.179644966073752, 30.012485255352335 ], [ -95.179835966396283, 30.012797255445456 ], [ -95.17989296565986, 30.012890255171424 ], [ -95.180252965942003, 30.013660255229009 ], [ -95.180533965748609, 30.014348255088169 ], [ -95.180611966631133, 30.014864255298352 ], [ -95.180673966078928, 30.015309255531442 ], [ -95.180660966401291, 30.015959255621834 ], [ -95.18062396684175, 30.016385255814637 ], [ -95.18057496663225, 30.016650255841032 ], [ -95.180535965997905, 30.016786256058985 ], [ -95.180471966594027, 30.01701325632548 ], [ -95.18035296649289, 30.01746425587212 ], [ -95.180267965985067, 30.01768425647629 ], [ -95.180179966753784, 30.017918256528954 ], [ -95.179698965693092, 30.019152256637803 ], [ -95.179415966598228, 30.019900256785302 ], [ -95.179384966435251, 30.01998325644038 ], [ -95.179253966265904, 30.020347256626046 ], [ -95.178827965761769, 30.021525257053447 ], [ -95.178198966067683, 30.023100257156752 ], [ -95.177630966220022, 30.02454625783454 ], [ -95.176904965479949, 30.02633125830846 ], [ -95.176734966295086, 30.026793258157372 ], [ -95.176537965960932, 30.027329258353173 ], [ -95.176817966293598, 30.027132258371996 ], [ -95.177118965415758, 30.026920257765624 ], [ -95.177557965927619, 30.026612258251461 ], [ -95.179100966378442, 30.023158257565079 ], [ -95.180903966707262, 30.021805256607077 ], [ -95.183305967465571, 30.021629256712039 ], [ -95.184307967148442, 30.021756257316529 ], [ -95.187029967851672, 30.022100256858408 ], [ -95.187794968054206, 30.022240256937863 ], [ -95.192888970294561, 30.023174256781182 ], [ -95.196478970993027, 30.024236257076488 ], [ -95.197776971600035, 30.024620256744573 ], [ -95.198739971235256, 30.025066256756304 ], [ -95.200848971595363, 30.026042257600402 ], [ -95.204603972926094, 30.026086257198209 ], [ -95.205338973234177, 30.025816257161537 ], [ -95.206729973488834, 30.025304256518766 ], [ -95.210946974129584, 30.024097256633691 ], [ -95.211051974168541, 30.024091256590651 ], [ -95.211801975123961, 30.024049256344025 ], [ -95.212740975307881, 30.023996256719432 ], [ -95.213939975246518, 30.024093256201571 ], [ -95.215274975272209, 30.024202256703568 ], [ -95.217767976691505, 30.024337256070396 ], [ -95.219666977177781, 30.023933256471068 ], [ -95.222773977569631, 30.02267925576562 ], [ -95.223215977461962, 30.022275255226813 ], [ -95.226183977943236, 30.019568254870244 ], [ -95.227611978410991, 30.019118254457975 ], [ -95.230709978857902, 30.018820254598968 ], [ -95.231399979701294, 30.018754254579044 ], [ -95.233368979527086, 30.019321254789684 ], [ -95.234661979940441, 30.019731254900613 ], [ -95.236062980237307, 30.020176254368536 ], [ -95.239324982057326, 30.022023255075677 ], [ -95.242226982006727, 30.024155255040906 ], [ -95.245235983011341, 30.026178255541623 ], [ -95.245292983866989, 30.026225255710887 ], [ -95.247008983318437, 30.026249256057682 ], [ -95.24990498471584, 30.026289255422114 ], [ -95.250008984587225, 30.026285255905705 ], [ -95.250226984318786, 30.026278255115368 ], [ -95.252220985305613, 30.026211255236099 ], [ -95.253074985661044, 30.02618225530205 ], [ -95.253797985177215, 30.026333255623737 ], [ -95.254470985609487, 30.02647325517837 ], [ -95.254612986075358, 30.026482255808506 ], [ -95.254709986310473, 30.026488255296172 ], [ -95.256588986450055, 30.026595255083716 ], [ -95.258019986599919, 30.026508255465622 ], [ -95.258099986863868, 30.026503255418831 ], [ -95.258398986955868, 30.0264852550028 ], [ -95.25857798663327, 30.026525254989256 ], [ -95.258799986752521, 30.026575255333608 ], [ -95.258999986421955, 30.026620255103907 ], [ -95.25904498700551, 30.026505255648086 ], [ -95.259133986947518, 30.026275254983751 ], [ -95.259178986426818, 30.026184255111001 ], [ -95.259191987381541, 30.026147255099563 ], [ -95.259195986991287, 30.026134255055851 ], [ -95.259215987392437, 30.026075255493879 ], [ -95.259354986732433, 30.025664255089488 ], [ -95.259942987308733, 30.02425225495821 ], [ -95.261471987016392, 30.02055525382621 ], [ -95.262106986948694, 30.019019253341387 ], [ -95.262445987408782, 30.018199253110648 ], [ -95.263130987939135, 30.016543253347251 ], [ -95.264143987804502, 30.014255252195603 ], [ -95.264754987512447, 30.012876252661961 ], [ -95.26603398745263, 30.010140251700257 ], [ -95.267102988285373, 30.007734251035252 ], [ -95.267284988253252, 30.007264251328092 ], [ -95.268175988521705, 30.005222251040859 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 20, "Tract": "48201250702", "Area_SqMi": 1.1714028922904625, "total_2009": 1575, "total_2010": 1752, "total_2011": 1976, "total_2012": 1938, "total_2013": 2002, "total_2014": 2064, "total_2015": 2063, "total_2016": 2276, "total_2017": 2312, "total_2018": 2412, "total_2019": 2442, "total_2020": 2349, "age1": 1156, "age2": 956, "age3": 385, "earn1": 912, "earn2": 1027, "earn3": 558, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 4, "naics_s05": 19, "naics_s06": 3, "naics_s07": 1296, "naics_s08": 16, "naics_s09": 0, "naics_s10": 66, "naics_s11": 12, "naics_s12": 28, "naics_s13": 1, "naics_s14": 1, "naics_s15": 88, "naics_s16": 226, "naics_s17": 219, "naics_s18": 459, "naics_s19": 53, "naics_s20": 0, "race1": 1801, "race2": 490, "race3": 20, "race4": 125, "race5": 5, "race6": 56, "ethnicity1": 1607, "ethnicity2": 890, "edu1": 296, "edu2": 405, "edu3": 402, "edu4": 238, "Shape_Length": 25737.251499917591, "Shape_Area": 32656707.760970909, "total_2021": 2348, "total_2022": 2497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.193796968865826, 30.00697825345371 ], [ -95.193793969774021, 30.006960253800354 ], [ -95.193780968975432, 30.006896253890844 ], [ -95.193706968931579, 30.005515253076236 ], [ -95.193631968655694, 30.004225252554441 ], [ -95.193627969564531, 30.004169253192799 ], [ -95.193638968693364, 30.004114252921809 ], [ -95.193624968854763, 30.003918253252237 ], [ -95.193614968943933, 30.003838253239206 ], [ -95.19361296860167, 30.003750253253191 ], [ -95.193596969446133, 30.003582252751201 ], [ -95.193581968722214, 30.003418253048142 ], [ -95.193570969533411, 30.003191253232597 ], [ -95.193568969189215, 30.003019252631614 ], [ -95.193570969385021, 30.002910252330281 ], [ -95.193538968514375, 30.002685252403225 ], [ -95.193559968818192, 30.002618252403941 ], [ -95.193534969393156, 30.002490252717369 ], [ -95.19351796892272, 30.002362252235205 ], [ -95.193523968974972, 30.002198252744488 ], [ -95.193520969349308, 30.002176252531655 ], [ -95.193513968641284, 30.002127252883898 ], [ -95.193513968763256, 30.001985252198001 ], [ -95.193528969405946, 30.001906252159053 ], [ -95.19350996870034, 30.001832252298424 ], [ -95.193489968944036, 30.001581252405831 ], [ -95.193475968796434, 30.001496252045769 ], [ -95.193463969075239, 30.001146252437476 ], [ -95.193451968471123, 30.000865252430568 ], [ -95.193451969077259, 30.000787252542235 ], [ -95.193435968832802, 30.000727251876576 ], [ -95.193431968937617, 30.000713252291717 ], [ -95.19342096855722, 30.000552252399988 ], [ -95.193434968848379, 30.000466251986197 ], [ -95.19342096904262, 30.000337252353955 ], [ -95.19340196924253, 30.00003425240509 ], [ -95.193323968770429, 29.998807252275988 ], [ -95.19319196895853, 29.998805252348305 ], [ -95.190177967469225, 29.99875225172379 ], [ -95.189531967662333, 29.998739252073328 ], [ -95.188640967612329, 29.998723251811878 ], [ -95.188053967214856, 29.998712252292489 ], [ -95.187410967702391, 29.99869925175777 ], [ -95.187156967295863, 29.998694252167599 ], [ -95.184907966722932, 29.998646252249841 ], [ -95.184771966291734, 29.998643252132933 ], [ -95.184583966201245, 29.998640252384835 ], [ -95.184218966302382, 29.998631251905895 ], [ -95.183534966656879, 29.998615251882889 ], [ -95.179658965318893, 29.998523252690148 ], [ -95.178304965281768, 29.998490252419767 ], [ -95.178151965023531, 29.998487252023274 ], [ -95.176849964534, 29.998456252847419 ], [ -95.175499964021938, 29.998423252350342 ], [ -95.174827963875146, 29.998407252628699 ], [ -95.17476096412291, 29.998405252435262 ], [ -95.174747963951745, 29.998405252277241 ], [ -95.173963963376906, 29.998387252619157 ], [ -95.172857963140586, 29.998360252430167 ], [ -95.171894963683528, 29.998338252224968 ], [ -95.17160896334272, 29.998329252986 ], [ -95.17095596253256, 29.998315252137246 ], [ -95.170063963168786, 29.99829425278816 ], [ -95.167772962071169, 29.99823925274389 ], [ -95.166939961976055, 29.998261252750027 ], [ -95.165705962010762, 29.998250252702796 ], [ -95.165035961460887, 29.998227252847098 ], [ -95.164132961015426, 29.998234253069676 ], [ -95.163561960997725, 29.998317253204 ], [ -95.162995960982983, 29.998421253096712 ], [ -95.162815960573084, 29.998462252451144 ], [ -95.162564961177338, 29.998518252483255 ], [ -95.162435961000071, 29.998547252641448 ], [ -95.162280960501704, 29.99858925261746 ], [ -95.162097960768733, 29.998637252929154 ], [ -95.162128960752639, 29.998724253285683 ], [ -95.162160960890077, 29.998810253188488 ], [ -95.163005961331052, 30.000820253412101 ], [ -95.1633239610738, 30.001615253290403 ], [ -95.163451961488363, 30.001933253949627 ], [ -95.163515961121504, 30.002093253877767 ], [ -95.163531961490776, 30.002134253322879 ], [ -95.163927961467024, 30.003163253629783 ], [ -95.16404396141597, 30.003464254165152 ], [ -95.164240961506124, 30.003923253557737 ], [ -95.16436996145174, 30.004223253791963 ], [ -95.164631961354971, 30.004699253995977 ], [ -95.165099961492189, 30.005346254303774 ], [ -95.16565596238371, 30.005938254412616 ], [ -95.16635796185686, 30.006515254724189 ], [ -95.167093962483719, 30.006984254764699 ], [ -95.167849962696181, 30.007366254550561 ], [ -95.168688962820838, 30.007671254901052 ], [ -95.169618963270352, 30.00788525497045 ], [ -95.170276963549369, 30.008015254764999 ], [ -95.172324963475305, 30.008457254807844 ], [ -95.172689964240249, 30.008538254393414 ], [ -95.174015963772362, 30.008818254734152 ], [ -95.174925964726853, 30.009052255073662 ], [ -95.175351964187996, 30.009204254854154 ], [ -95.175873965182305, 30.009433254804584 ], [ -95.176493965155956, 30.009807255181059 ], [ -95.177930965146984, 30.010808254466415 ], [ -95.178202965407564, 30.011050254940855 ], [ -95.178322965066656, 30.011158255286077 ], [ -95.178462965363863, 30.011075255130105 ], [ -95.178596965810215, 30.010920254660114 ], [ -95.178835966022305, 30.010632255278978 ], [ -95.179167965584654, 30.01028325459357 ], [ -95.179243965982891, 30.01020425438621 ], [ -95.179350965716679, 30.010119254994784 ], [ -95.179628965740179, 30.009826254396295 ], [ -95.17973996567622, 30.009713254799866 ], [ -95.179797965585209, 30.009654254889831 ], [ -95.179916966085599, 30.009534254326208 ], [ -95.180000965579552, 30.009431254284028 ], [ -95.180053966189348, 30.009382254178153 ], [ -95.180275965455195, 30.009184254134681 ], [ -95.18041896555134, 30.009067254465641 ], [ -95.180755966199868, 30.008815254626455 ], [ -95.181150966493874, 30.008553254278166 ], [ -95.181267966601283, 30.008486254754928 ], [ -95.181499966305111, 30.008360254618243 ], [ -95.18191596643085, 30.008149254342293 ], [ -95.182143966670779, 30.008044254031205 ], [ -95.182261966310293, 30.007994254440256 ], [ -95.182635966897266, 30.007859254004309 ], [ -95.183020966254659, 30.007735254163929 ], [ -95.183266966768684, 30.007665254302534 ], [ -95.183579966870028, 30.007589254044372 ], [ -95.183793966276781, 30.0075502542031 ], [ -95.184251966953411, 30.007487253756931 ], [ -95.184476967081494, 30.007451254298871 ], [ -95.184834966492048, 30.007424253777103 ], [ -95.185679967238798, 30.00738425372316 ], [ -95.186269967648968, 30.007364254082376 ], [ -95.18666396763804, 30.007343254292071 ], [ -95.187595967514667, 30.007307253688335 ], [ -95.187672968212851, 30.007306253652697 ], [ -95.188463967835958, 30.00726625336349 ], [ -95.188869967528191, 30.007242254171452 ], [ -95.189054967829833, 30.007242254047046 ], [ -95.189244968630405, 30.007228253870021 ], [ -95.189329968578619, 30.007226254035377 ], [ -95.189730968560909, 30.007215253753891 ], [ -95.189829968134163, 30.007216253925385 ], [ -95.19023796861336, 30.007194253457712 ], [ -95.191154968855656, 30.007152253394842 ], [ -95.192088969286075, 30.00711225357837 ], [ -95.193143969049473, 30.007064253611841 ], [ -95.193353969472014, 30.007049253781524 ], [ -95.193644969541452, 30.00704325370701 ], [ -95.19379296966882, 30.007038253170531 ], [ -95.193796968865826, 30.00697825345371 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 21, "Tract": "48201251503", "Area_SqMi": 0.3572982655489938, "total_2009": 28, "total_2010": 13, "total_2011": 8, "total_2012": 16, "total_2013": 14, "total_2014": 9, "total_2015": 20, "total_2016": 18, "total_2017": 17, "total_2018": 25, "total_2019": 24, "total_2020": 20, "age1": 5, "age2": 9, "age3": 3, "earn1": 5, "earn2": 7, "earn3": 5, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 4, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 7, "naics_s19": 0, "naics_s20": 0, "race1": 13, "race2": 1, "race3": 0, "race4": 3, "race5": 0, "race6": 0, "ethnicity1": 16, "ethnicity2": 1, "edu1": 2, "edu2": 3, "edu3": 4, "edu4": 3, "Shape_Length": 14962.903070429331, "Shape_Area": 9960864.1214128174, "total_2021": 17, "total_2022": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.19198097234927, 30.079079268277155 ], [ -95.191953972078906, 30.078408268096524 ], [ -95.191791971678597, 30.078058268492832 ], [ -95.191561972321438, 30.07725926828001 ], [ -95.191456972042616, 30.076683267494484 ], [ -95.191369971955822, 30.076083267733299 ], [ -95.191278971395008, 30.075716267800953 ], [ -95.191126971267664, 30.07529626794506 ], [ -95.190043971173196, 30.073541267171766 ], [ -95.189953971801614, 30.073420267455003 ], [ -95.18962497093483, 30.073000267531139 ], [ -95.189231971468288, 30.072468266958357 ], [ -95.188926970597279, 30.071878266572014 ], [ -95.18884897113908, 30.071684266624477 ], [ -95.188778970606307, 30.071511267182867 ], [ -95.188639971134549, 30.070967266460229 ], [ -95.188619970804965, 30.070853267214652 ], [ -95.188481971088763, 30.069651266954711 ], [ -95.188416970317036, 30.069121266720327 ], [ -95.188212971100199, 30.06799526628393 ], [ -95.187555970957135, 30.068103266507773 ], [ -95.186292970183942, 30.068374265979209 ], [ -95.186149970560791, 30.068398266438322 ], [ -95.18417196961903, 30.06905626672874 ], [ -95.184043969224263, 30.06911026697297 ], [ -95.183834969794276, 30.069199266418273 ], [ -95.183114969335676, 30.069506267123764 ], [ -95.182990969692469, 30.069564266682988 ], [ -95.181719968563513, 30.070159266929583 ], [ -95.179834968142316, 30.071580266959703 ], [ -95.179615968327141, 30.071746267227844 ], [ -95.17937096869737, 30.071930267442578 ], [ -95.178622968406799, 30.072655267676769 ], [ -95.178435968239043, 30.072864267726466 ], [ -95.177253968140832, 30.074189267874864 ], [ -95.1761839675749, 30.07548526821159 ], [ -95.177119967650356, 30.076062268386732 ], [ -95.178455968477436, 30.076851268347657 ], [ -95.179015968928923, 30.076484268590288 ], [ -95.179237968750996, 30.076338268141271 ], [ -95.180008968412849, 30.075865268197536 ], [ -95.180590968538837, 30.075606268272171 ], [ -95.181184969419306, 30.07540826825894 ], [ -95.181930969479936, 30.075276268160177 ], [ -95.182626969479671, 30.075227267792435 ], [ -95.183068969215995, 30.075243268303264 ], [ -95.183871969771133, 30.075326267786103 ], [ -95.184516970481937, 30.075502267741726 ], [ -95.184940970047776, 30.075672267642432 ], [ -95.18543396995122, 30.075903268115646 ], [ -95.185901970235179, 30.076195267531425 ], [ -95.186017970003604, 30.076287268171697 ], [ -95.186267970059546, 30.07648626774365 ], [ -95.186571971052459, 30.076750268135953 ], [ -95.186811970183101, 30.076997268396955 ], [ -95.187797971189099, 30.078196268450508 ], [ -95.188088971106751, 30.078498268313879 ], [ -95.188366971202583, 30.078696268564581 ], [ -95.188986971133858, 30.079015268816654 ], [ -95.189523971238955, 30.079158268090943 ], [ -95.189669971471673, 30.079175268879894 ], [ -95.189997971182279, 30.079197268268558 ], [ -95.190832971516031, 30.079169268119152 ], [ -95.19198097234927, 30.079079268277155 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 22, "Tract": "48201251402", "Area_SqMi": 1.0307755417453777, "total_2009": 744, "total_2010": 650, "total_2011": 625, "total_2012": 626, "total_2013": 694, "total_2014": 688, "total_2015": 643, "total_2016": 910, "total_2017": 891, "total_2018": 872, "total_2019": 840, "total_2020": 654, "age1": 214, "age2": 296, "age3": 119, "earn1": 237, "earn2": 237, "earn3": 155, "naics_s01": 0, "naics_s02": 39, "naics_s03": 0, "naics_s04": 18, "naics_s05": 0, "naics_s06": 1, "naics_s07": 122, "naics_s08": 3, "naics_s09": 25, "naics_s10": 10, "naics_s11": 6, "naics_s12": 11, "naics_s13": 0, "naics_s14": 113, "naics_s15": 22, "naics_s16": 58, "naics_s17": 35, "naics_s18": 143, "naics_s19": 23, "naics_s20": 0, "race1": 510, "race2": 71, "race3": 2, "race4": 36, "race5": 1, "race6": 9, "ethnicity1": 429, "ethnicity2": 200, "edu1": 100, "edu2": 120, "edu3": 117, "edu4": 78, "Shape_Length": 26341.233968056291, "Shape_Area": 28736257.913889855, "total_2021": 683, "total_2022": 629 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.21901897889289, 30.068533265376832 ], [ -95.219066978737189, 30.068484265187834 ], [ -95.218968978713519, 30.068484265026957 ], [ -95.218689978967802, 30.068484265494739 ], [ -95.218626978443893, 30.068484264950623 ], [ -95.218436978846583, 30.06848626503772 ], [ -95.21837097839547, 30.068487264912861 ], [ -95.21776097812041, 30.0684932650387 ], [ -95.216877978390471, 30.068502264891197 ], [ -95.216320977992879, 30.068524265125394 ], [ -95.216194977653302, 30.068523265324458 ], [ -95.215979978294968, 30.068521265440815 ], [ -95.21461697759888, 30.068508265302111 ], [ -95.214151977201325, 30.068504265350445 ], [ -95.213870976972728, 30.068501265077987 ], [ -95.212685977204558, 30.068490265246311 ], [ -95.211358976128963, 30.068478265373702 ], [ -95.21123897691372, 30.068477265803352 ], [ -95.209774976533552, 30.068491265936583 ], [ -95.208144976160042, 30.068352265794811 ], [ -95.207056975785449, 30.068236265286526 ], [ -95.206859975197972, 30.068273265176529 ], [ -95.20621897487824, 30.068308266100747 ], [ -95.204688974515093, 30.06852926556461 ], [ -95.20391097471412, 30.068554265532992 ], [ -95.202316974321619, 30.068571265414135 ], [ -95.202154974517569, 30.068568265899845 ], [ -95.200929973992842, 30.068551265480632 ], [ -95.200179973608755, 30.068563265861229 ], [ -95.198569973687015, 30.068555265681258 ], [ -95.197134972680558, 30.068448265643969 ], [ -95.19662497228407, 30.068359266411949 ], [ -95.19648397230786, 30.068334266263335 ], [ -95.196406972380515, 30.068313265925262 ], [ -95.195102972303758, 30.067961266203831 ], [ -95.193958972458773, 30.067653265769522 ], [ -95.193458971997714, 30.067560266284094 ], [ -95.192815972068672, 30.067500266087119 ], [ -95.192495971530946, 30.067474265738664 ], [ -95.192209971946625, 30.067451265984772 ], [ -95.19075697076191, 30.067546265788106 ], [ -95.190385971061318, 30.067581266399898 ], [ -95.190316970729285, 30.067588266470057 ], [ -95.188448970765236, 30.067766265852899 ], [ -95.188346970944679, 30.067776266351807 ], [ -95.188185970724291, 30.067804266157442 ], [ -95.188212971100199, 30.06799526628393 ], [ -95.188416970317036, 30.069121266720327 ], [ -95.188481971088763, 30.069651266954711 ], [ -95.188619970804965, 30.070853267214652 ], [ -95.188639971134549, 30.070967266460229 ], [ -95.188778970606307, 30.071511267182867 ], [ -95.18884897113908, 30.071684266624477 ], [ -95.188926970597279, 30.071878266572014 ], [ -95.189231971468288, 30.072468266958357 ], [ -95.18962497093483, 30.073000267531139 ], [ -95.189953971801614, 30.073420267455003 ], [ -95.190043971173196, 30.073541267171766 ], [ -95.191126971267664, 30.07529626794506 ], [ -95.191278971395008, 30.075716267800953 ], [ -95.191369971955822, 30.076083267733299 ], [ -95.191456972042616, 30.076683267494484 ], [ -95.191561972321438, 30.07725926828001 ], [ -95.191791971678597, 30.078058268492832 ], [ -95.191953972078906, 30.078408268096524 ], [ -95.19198097234927, 30.079079268277155 ], [ -95.192342972057943, 30.07905026875649 ], [ -95.193999972967234, 30.078883267896451 ], [ -95.194732972631854, 30.078839268612377 ], [ -95.195624973157464, 30.078734268031926 ], [ -95.19650497366608, 30.078503268195842 ], [ -95.196901973772455, 30.078399268348218 ], [ -95.197135973848631, 30.078371267746867 ], [ -95.197369973645579, 30.078374267922388 ], [ -95.197546973389052, 30.078377268314849 ], [ -95.198285973711833, 30.078498268447625 ], [ -95.198817974208495, 30.078684268183999 ], [ -95.199348973667369, 30.079009267911154 ], [ -95.199803974206304, 30.079476267894833 ], [ -95.200157974667022, 30.07999326821497 ], [ -95.20027197394765, 30.080416268762711 ], [ -95.200360974744314, 30.081043268751458 ], [ -95.200351974051003, 30.081633268742205 ], [ -95.20034897430601, 30.081810268371189 ], [ -95.200335974826118, 30.082627268611382 ], [ -95.200342974131743, 30.083451268582937 ], [ -95.201150974295032, 30.082740269013268 ], [ -95.20284397455535, 30.081249268787488 ], [ -95.203752975358171, 30.080449267939684 ], [ -95.203770975493214, 30.080433268396124 ], [ -95.204006974869287, 30.080227268433294 ], [ -95.20730997641634, 30.077644267640022 ], [ -95.209057976176283, 30.076277267209797 ], [ -95.211324977298617, 30.074478266944766 ], [ -95.211879977295638, 30.074066266547543 ], [ -95.211898976581566, 30.074051266216077 ], [ -95.212055976631845, 30.073929266245734 ], [ -95.212345977415865, 30.073700266984886 ], [ -95.212812977449076, 30.073332266756907 ], [ -95.214124977806534, 30.072311266108407 ], [ -95.214855977398102, 30.071742265876246 ], [ -95.215136977711111, 30.071523266395502 ], [ -95.218307978437281, 30.069043265263375 ], [ -95.218470978697027, 30.068916265687093 ], [ -95.218656978723487, 30.068770264901708 ], [ -95.218691979006053, 30.068744265052224 ], [ -95.218716978125528, 30.068727265400923 ], [ -95.21901897889289, 30.068533265376832 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 23, "Tract": "48201251902", "Area_SqMi": 6.7468574697886732, "total_2009": 358, "total_2010": 1515, "total_2011": 1471, "total_2012": 303, "total_2013": 315, "total_2014": 388, "total_2015": 1441, "total_2016": 443, "total_2017": 479, "total_2018": 566, "total_2019": 1591, "total_2020": 1415, "age1": 372, "age2": 896, "age3": 331, "earn1": 321, "earn2": 457, "earn3": 821, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 3, "naics_s06": 6, "naics_s07": 21, "naics_s08": 20, "naics_s09": 6, "naics_s10": 65, "naics_s11": 5, "naics_s12": 52, "naics_s13": 0, "naics_s14": 17, "naics_s15": 1095, "naics_s16": 74, "naics_s17": 10, "naics_s18": 173, "naics_s19": 27, "naics_s20": 0, "race1": 1290, "race2": 255, "race3": 11, "race4": 17, "race5": 2, "race6": 24, "ethnicity1": 1200, "ethnicity2": 399, "edu1": 199, "edu2": 333, "edu3": 399, "edu4": 296, "Shape_Length": 67844.661594256395, "Shape_Area": 188090838.89574262, "total_2021": 1636, "total_2022": 1599 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.133509949858137, 29.920040237856504 ], [ -95.133135949926398, 29.91968123776342 ], [ -95.13293094970679, 29.919484237824026 ], [ -95.132904949597631, 29.91945923810577 ], [ -95.132798949299229, 29.919525237909831 ], [ -95.132517949496432, 29.919348237925064 ], [ -95.131706948964975, 29.918836237263964 ], [ -95.12869794872627, 29.917497237410995 ], [ -95.12590594736109, 29.915865237070594 ], [ -95.125776947766326, 29.91558523750243 ], [ -95.125457947501744, 29.915451237183426 ], [ -95.124992947672112, 29.914992236995442 ], [ -95.124783947786639, 29.914681237114575 ], [ -95.124018946944844, 29.913281236734154 ], [ -95.1238339467196, 29.912802237015057 ], [ -95.123802947516964, 29.912264236401739 ], [ -95.123896946916716, 29.911512236620581 ], [ -95.124034947434993, 29.910864235933118 ], [ -95.124168947127146, 29.910236235827082 ], [ -95.124802947021351, 29.908035235293614 ], [ -95.125051946762895, 29.906646235439833 ], [ -95.12505794658955, 29.906464235598428 ], [ -95.125075946971378, 29.905964235178391 ], [ -95.124864946551028, 29.905605235380325 ], [ -95.124336946777518, 29.905051235253183 ], [ -95.123443946578959, 29.903840234645532 ], [ -95.122847946072142, 29.903393234965929 ], [ -95.122317946559306, 29.902888234629053 ], [ -95.122188945748235, 29.902795234299205 ], [ -95.121616945919513, 29.902385234757499 ], [ -95.121409945548734, 29.902168234296948 ], [ -95.120985946132066, 29.901721234279165 ], [ -95.120561945432698, 29.901275234698513 ], [ -95.120370945642591, 29.901136234299699 ], [ -95.119346944974254, 29.900655234368163 ], [ -95.11900494545057, 29.9004512345949 ], [ -95.118719944982175, 29.900196234146058 ], [ -95.118340945469967, 29.899857234571414 ], [ -95.11789194497365, 29.899600234618571 ], [ -95.117533944686485, 29.899252234580466 ], [ -95.117260944223574, 29.898891233690442 ], [ -95.117125944745268, 29.898589233985156 ], [ -95.116952944231002, 29.897558233510974 ], [ -95.116822944403353, 29.897066234037744 ], [ -95.11663294487839, 29.89640323395324 ], [ -95.116335944363414, 29.895769233293944 ], [ -95.116003944623657, 29.894468233431983 ], [ -95.115612944146008, 29.893754233365129 ], [ -95.114907944056924, 29.892864232637077 ], [ -95.11414494361712, 29.891791232596749 ], [ -95.113471943101985, 29.891191232344088 ], [ -95.113242943652239, 29.890987232427825 ], [ -95.112899943587195, 29.890859232810097 ], [ -95.112154942657412, 29.890861232833917 ], [ -95.111286943173667, 29.890983232792003 ], [ -95.110891942872016, 29.891039232781154 ], [ -95.109960942798367, 29.891429232649109 ], [ -95.109388942719988, 29.891841233094297 ], [ -95.109141941834878, 29.892081232812984 ], [ -95.108675941717507, 29.892315232595628 ], [ -95.107486942428949, 29.892724233083399 ], [ -95.106674941528226, 29.893003232896575 ], [ -95.105159941483763, 29.893373233782807 ], [ -95.104708940889495, 29.89342323382472 ], [ -95.10369394067348, 29.893372233388522 ], [ -95.103440941007491, 29.893307233449935 ], [ -95.101892939993647, 29.892591232872793 ], [ -95.099373939523673, 29.890660232592488 ], [ -95.097405938923202, 29.888508232408597 ], [ -95.097019938828367, 29.887681232100153 ], [ -95.096853938936547, 29.885823232473733 ], [ -95.096809938617241, 29.88329223175057 ], [ -95.096521938572508, 29.881675230957875 ], [ -95.096410938933033, 29.881420231290214 ], [ -95.096346938846025, 29.881271231301085 ], [ -95.096173937990855, 29.881026230940154 ], [ -95.095542938248613, 29.880349231434167 ], [ -95.09538193815456, 29.880240230961672 ], [ -95.095300937900248, 29.8802552313973 ], [ -95.095220938269293, 29.880271231315248 ], [ -95.094077938013584, 29.880533230801372 ], [ -95.09211593723677, 29.880918231616008 ], [ -95.090853937419681, 29.88156923106207 ], [ -95.090192936789521, 29.881934231834371 ], [ -95.089760936796992, 29.882256231377077 ], [ -95.089262936796999, 29.882781231902964 ], [ -95.088673936854903, 29.883399231591635 ], [ -95.088136936331296, 29.884225232075902 ], [ -95.087202936322782, 29.887382232821523 ], [ -95.086650936162101, 29.889091232894824 ], [ -95.086578936063404, 29.889286233219934 ], [ -95.086493936310333, 29.889545233210093 ], [ -95.086211936210333, 29.890406233227633 ], [ -95.08452793656609, 29.895864234969537 ], [ -95.08384193637599, 29.897471235339893 ], [ -95.083668935647822, 29.897877234970657 ], [ -95.077613934740398, 29.902693235856763 ], [ -95.072289933722814, 29.906698237641987 ], [ -95.072257933593022, 29.906723237373214 ], [ -95.07191593308211, 29.907010237426231 ], [ -95.071422933203294, 29.907465237191943 ], [ -95.070336933272827, 29.908240237928915 ], [ -95.069365933358313, 29.908998237441534 ], [ -95.068367932238147, 29.909759237628563 ], [ -95.066508931991521, 29.911170238241105 ], [ -95.06590093179399, 29.911696238121873 ], [ -95.06378893169159, 29.913250239027423 ], [ -95.063791931941637, 29.913533238918639 ], [ -95.063802931922467, 29.913785239078639 ], [ -95.063799932129299, 29.913862239029758 ], [ -95.063795931833155, 29.91390423900457 ], [ -95.063801932159734, 29.914434238930703 ], [ -95.063796931792709, 29.914560239255067 ], [ -95.063800931324181, 29.914621239207658 ], [ -95.063810932077473, 29.914831238904778 ], [ -95.063820931482226, 29.915233239311654 ], [ -95.063820931636144, 29.915611239659885 ], [ -95.063825931588241, 29.915855239045349 ], [ -95.063828931385387, 29.915959239557651 ], [ -95.063857931566361, 29.917604239787082 ], [ -95.063859932006267, 29.917760239823458 ], [ -95.063867932241934, 29.918151239569479 ], [ -95.063874931870416, 29.918316239878685 ], [ -95.063890931764234, 29.919114240396574 ], [ -95.063892932413751, 29.919414239828193 ], [ -95.063899932324574, 29.919555240011832 ], [ -95.063899932041394, 29.919838239761035 ], [ -95.063895931839738, 29.91997324022558 ], [ -95.063910932043342, 29.920103240032464 ], [ -95.063908932029136, 29.92023424061496 ], [ -95.063912931953226, 29.920429240678693 ], [ -95.063918931699476, 29.920628240564547 ], [ -95.063924931838542, 29.921219240036578 ], [ -95.063935932312859, 29.921473240811729 ], [ -95.063939931705448, 29.922013240363611 ], [ -95.063945932244536, 29.922146240281009 ], [ -95.063943932522363, 29.922545241051061 ], [ -95.06394593167802, 29.922632240347511 ], [ -95.064494932092941, 29.922921240365987 ], [ -95.064588932633271, 29.9229432405056 ], [ -95.065005932388402, 29.923207240836362 ], [ -95.066400932524246, 29.924031241007473 ], [ -95.067423933362861, 29.924675241191331 ], [ -95.067663932919316, 29.924790241247369 ], [ -95.067846933452103, 29.924845241355566 ], [ -95.068161932824211, 29.924851240985138 ], [ -95.071497934572861, 29.924338240959216 ], [ -95.071633933633365, 29.924317240549719 ], [ -95.078135935943394, 29.923354240373158 ], [ -95.078186935522638, 29.923357239978856 ], [ -95.078228936096849, 29.923359240004039 ], [ -95.0783509356542, 29.923365240405882 ], [ -95.084246937787697, 29.922973240207011 ], [ -95.085619937184362, 29.923318240110667 ], [ -95.085925937889442, 29.923396240461063 ], [ -95.088147938343212, 29.923990239830637 ], [ -95.08870993897041, 29.924116240408484 ], [ -95.088747938530616, 29.924138240611803 ], [ -95.088797938053403, 29.924166240454991 ], [ -95.088848938399792, 29.924182240181093 ], [ -95.09086593947967, 29.924711240138759 ], [ -95.092557939525889, 29.925156240303426 ], [ -95.092863939906522, 29.925199240721934 ], [ -95.093103939871511, 29.925259240470158 ], [ -95.09312993962709, 29.925266240319178 ], [ -95.09447494027539, 29.925635240503496 ], [ -95.096194940066468, 29.926109240155274 ], [ -95.096473940999942, 29.926127240382002 ], [ -95.09705294122773, 29.925872240695913 ], [ -95.098238941239742, 29.925115240163052 ], [ -95.099754941116842, 29.924147239814676 ], [ -95.100380941952054, 29.923409240122027 ], [ -95.100513941997875, 29.923266239815614 ], [ -95.101957942126418, 29.92143523928809 ], [ -95.102334942002969, 29.920957239272404 ], [ -95.102747941866284, 29.920677238590912 ], [ -95.103396942581512, 29.920494238764498 ], [ -95.106363942685988, 29.919788239016015 ], [ -95.106704942944617, 29.919707238425097 ], [ -95.110352943909859, 29.918787238119297 ], [ -95.112365944089106, 29.918220237846121 ], [ -95.115148945470992, 29.9173662377246 ], [ -95.115640944935123, 29.917190237959748 ], [ -95.115842944883781, 29.917157237420195 ], [ -95.116392945360062, 29.917157237708711 ], [ -95.11667694532035, 29.917294237679343 ], [ -95.118080946286128, 29.918159238335381 ], [ -95.119555945791646, 29.9190692377551 ], [ -95.119667946462769, 29.919139237809667 ], [ -95.120243946553259, 29.919498238439449 ], [ -95.120357946711636, 29.919575238231211 ], [ -95.120749946763041, 29.919822238031227 ], [ -95.121052946746659, 29.91995923853711 ], [ -95.121784946307514, 29.919997238507445 ], [ -95.122062946376488, 29.920058238519626 ], [ -95.122232947168513, 29.920178238338174 ], [ -95.122320947157476, 29.920287238104724 ], [ -95.122396946958276, 29.920382237993596 ], [ -95.122883946930557, 29.921300238912735 ], [ -95.122927946826948, 29.921531238401816 ], [ -95.122959947395458, 29.921668238734899 ], [ -95.122934947414763, 29.921916238239355 ], [ -95.122852946770095, 29.922411238704459 ], [ -95.122909947299362, 29.922570238361651 ], [ -95.122972946827829, 29.922675238570648 ], [ -95.123143947156692, 29.922823239087435 ], [ -95.123458947403677, 29.923015238661684 ], [ -95.123692947921612, 29.923098238842659 ], [ -95.123869947342669, 29.923229238998957 ], [ -95.123976947941159, 29.923361238619471 ], [ -95.124077947676597, 29.923504239144854 ], [ -95.124305947476074, 29.923867238515061 ], [ -95.12475394767219, 29.92427423897287 ], [ -95.124842947714512, 29.924301238927196 ], [ -95.125006948059308, 29.924246239110083 ], [ -95.125385948176557, 29.92409123935559 ], [ -95.128792949162388, 29.922392238407554 ], [ -95.133509949858137, 29.920040237856504 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 24, "Tract": "48201511001", "Area_SqMi": 0.88061209906437266, "total_2009": 4295, "total_2010": 4202, "total_2011": 4170, "total_2012": 2739, "total_2013": 2650, "total_2014": 4998, "total_2015": 4905, "total_2016": 5024, "total_2017": 5569, "total_2018": 5877, "total_2019": 7746, "total_2020": 9440, "age1": 2204, "age2": 6996, "age3": 3192, "earn1": 909, "earn2": 3802, "earn3": 7681, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 424, "naics_s05": 9595, "naics_s06": 778, "naics_s07": 86, "naics_s08": 36, "naics_s09": 7, "naics_s10": 52, "naics_s11": 49, "naics_s12": 288, "naics_s13": 19, "naics_s14": 120, "naics_s15": 0, "naics_s16": 546, "naics_s17": 3, "naics_s18": 319, "naics_s19": 70, "naics_s20": 0, "race1": 6724, "race2": 2838, "race3": 115, "race4": 2485, "race5": 23, "race6": 207, "ethnicity1": 8726, "ethnicity2": 3666, "edu1": 2582, "edu2": 2692, "edu3": 2769, "edu4": 2145, "Shape_Length": 23107.939227055384, "Shape_Area": 24549958.139244154, "total_2021": 12542, "total_2022": 12392 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.450660025682325, 29.794567201114166 ], [ -95.450532025317486, 29.794473201259777 ], [ -95.450446025588988, 29.794409201531938 ], [ -95.450312025588119, 29.79431020172699 ], [ -95.450018025205281, 29.794101201350777 ], [ -95.449684024847045, 29.793855201361019 ], [ -95.449177025140358, 29.793499201261955 ], [ -95.448941024683009, 29.793334201250776 ], [ -95.448605025094963, 29.793083200760389 ], [ -95.448105024592806, 29.79271620077261 ], [ -95.447905024956199, 29.7925682008051 ], [ -95.44643402474297, 29.791504200837828 ], [ -95.44527602362632, 29.790642200539128 ], [ -95.444976023667394, 29.7904192007612 ], [ -95.444910023461773, 29.790370200606944 ], [ -95.444876024068265, 29.790345201028366 ], [ -95.443825023377102, 29.789563200140634 ], [ -95.443779023479678, 29.789531200521257 ], [ -95.443674023229534, 29.789457200741541 ], [ -95.443598023167354, 29.789403200217855 ], [ -95.443306023177158, 29.789176200578293 ], [ -95.442812023556584, 29.789187200770634 ], [ -95.441883023125826, 29.78920820019929 ], [ -95.441816022829357, 29.789210200956404 ], [ -95.441732023469157, 29.789212200823727 ], [ -95.441658023342143, 29.789213200590918 ], [ -95.441256022692102, 29.78921820038882 ], [ -95.439448022704099, 29.789224200532658 ], [ -95.438606021919909, 29.789227200527645 ], [ -95.438006022572281, 29.78922220058266 ], [ -95.437844022151182, 29.789221200815867 ], [ -95.437853021786864, 29.790436201277373 ], [ -95.437857022065231, 29.79102420137334 ], [ -95.437860021786491, 29.791466201267809 ], [ -95.437862022002292, 29.791624201484087 ], [ -95.437867022522951, 29.791974201216512 ], [ -95.437880022112125, 29.792749201349196 ], [ -95.437887022098252, 29.792835201546005 ], [ -95.437920022715829, 29.793240201238888 ], [ -95.438024022640576, 29.794003201399324 ], [ -95.438044021979238, 29.794384201689919 ], [ -95.438070021919586, 29.795504202191484 ], [ -95.438075022245357, 29.795995202157702 ], [ -95.438073022739431, 29.796390202514999 ], [ -95.43807602257742, 29.797276202582061 ], [ -95.438064022763712, 29.798321202939459 ], [ -95.438068022822165, 29.799092202928435 ], [ -95.438077022476492, 29.799854202676531 ], [ -95.438082022938772, 29.800627202970503 ], [ -95.438083022400207, 29.800763203194926 ], [ -95.438091022878481, 29.801611202984812 ], [ -95.436589022696154, 29.801609203076829 ], [ -95.435108022089352, 29.801620203032876 ], [ -95.43399502165741, 29.801618203792103 ], [ -95.43358102196342, 29.801621203623903 ], [ -95.433393021680786, 29.801622203474412 ], [ -95.430040020566494, 29.801646203181985 ], [ -95.430031020516935, 29.801966203538811 ], [ -95.429979020684968, 29.802326203832109 ], [ -95.429929020396841, 29.802559203349336 ], [ -95.429791020322227, 29.802896203881701 ], [ -95.429702020838278, 29.803089203940765 ], [ -95.42966302035326, 29.803174204083895 ], [ -95.429957020716529, 29.803187203429051 ], [ -95.432573021186514, 29.803697203759306 ], [ -95.433206021882839, 29.803857203438099 ], [ -95.433463021742739, 29.803987203670719 ], [ -95.433704021822876, 29.804109203694779 ], [ -95.434090021623362, 29.804371203715057 ], [ -95.435254022381301, 29.805669204170151 ], [ -95.435628022188595, 29.805995204150999 ], [ -95.436043022185203, 29.806279204621326 ], [ -95.436592022583213, 29.806590204446682 ], [ -95.439222023041808, 29.807782204003392 ], [ -95.440550023140389, 29.808656204400044 ], [ -95.44088902366471, 29.808879204575252 ], [ -95.440983023228114, 29.808841204147587 ], [ -95.44106302333438, 29.808808204510221 ], [ -95.441588023371025, 29.808577204633949 ], [ -95.44178202355171, 29.80849120466037 ], [ -95.44227502366661, 29.808274204812808 ], [ -95.443095024145208, 29.807902204406446 ], [ -95.443765024552036, 29.807563203866859 ], [ -95.444232024421851, 29.8072772038655 ], [ -95.444583024692008, 29.807034203697203 ], [ -95.444919024412329, 29.806802204242377 ], [ -95.445267024995545, 29.806464204229531 ], [ -95.445550024963495, 29.80615920345538 ], [ -95.446099024960688, 29.80556720390533 ], [ -95.44664202492477, 29.804975203804627 ], [ -95.447341024925208, 29.80421320367963 ], [ -95.448020024942352, 29.803448203185688 ], [ -95.448607025233386, 29.802683202840466 ], [ -95.44886502581754, 29.802284203035278 ], [ -95.449048025772967, 29.80190020278766 ], [ -95.449107024937362, 29.801723203255786 ], [ -95.449146025043973, 29.801604202741402 ], [ -95.449167024977356, 29.801541202517459 ], [ -95.449088025952619, 29.801543202500699 ], [ -95.44913802542905, 29.801115202935176 ], [ -95.449196025242699, 29.800802202698065 ], [ -95.449308025335966, 29.800042202535462 ], [ -95.44945902542581, 29.799064202008694 ], [ -95.449699025220639, 29.798033202248391 ], [ -95.450415025436783, 29.795348201502602 ], [ -95.450660025682325, 29.794567201114166 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 25, "Tract": "48201522302", "Area_SqMi": 0.50000227242069184, "total_2009": 2248, "total_2010": 2444, "total_2011": 2910, "total_2012": 2860, "total_2013": 2950, "total_2014": 2895, "total_2015": 3249, "total_2016": 3260, "total_2017": 3048, "total_2018": 2958, "total_2019": 3016, "total_2020": 3094, "age1": 1128, "age2": 1652, "age3": 505, "earn1": 567, "earn2": 1088, "earn3": 1630, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 14, "naics_s06": 54, "naics_s07": 1118, "naics_s08": 0, "naics_s09": 1, "naics_s10": 1232, "naics_s11": 31, "naics_s12": 38, "naics_s13": 32, "naics_s14": 18, "naics_s15": 7, "naics_s16": 140, "naics_s17": 0, "naics_s18": 380, "naics_s19": 205, "naics_s20": 0, "race1": 2030, "race2": 659, "race3": 35, "race4": 484, "race5": 4, "race6": 73, "ethnicity1": 2122, "ethnicity2": 1163, "edu1": 430, "edu2": 501, "edu3": 628, "edu4": 598, "Shape_Length": 14907.145106795904, "Shape_Area": 13939207.592647023, "total_2021": 3162, "total_2022": 3285 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.544675049903134, 29.794287198338388 ], [ -95.544639049516135, 29.792671197754174 ], [ -95.54462804977382, 29.791993197484668 ], [ -95.544628049119908, 29.791975197470272 ], [ -95.544620049871796, 29.791388197789779 ], [ -95.544607049100307, 29.790854197155998 ], [ -95.544583049063675, 29.790377197530301 ], [ -95.544577049603788, 29.789993197365856 ], [ -95.544562049132892, 29.789191197328698 ], [ -95.544540048941968, 29.788866196676416 ], [ -95.544487049001376, 29.788570196756567 ], [ -95.544412048918346, 29.788310196482286 ], [ -95.544303048888565, 29.788041196899993 ], [ -95.544227048788017, 29.787788196661758 ], [ -95.544127048726082, 29.787402196784289 ], [ -95.544096049437584, 29.787044196948585 ], [ -95.544045049351752, 29.786468196215715 ], [ -95.544004049120318, 29.785460196053254 ], [ -95.543995048637782, 29.785197196141876 ], [ -95.543993049409195, 29.785145196138465 ], [ -95.543992049242803, 29.78509919633267 ], [ -95.543990048998012, 29.785055196217382 ], [ -95.543984049044369, 29.78474319641364 ], [ -95.543773048515732, 29.784748196211051 ], [ -95.54231304877581, 29.784748196338381 ], [ -95.54155204862883, 29.784742196413202 ], [ -95.539991047465577, 29.784731195967119 ], [ -95.536918047208999, 29.784731196706399 ], [ -95.536059046891467, 29.784731196624325 ], [ -95.535396046752069, 29.784731196603332 ], [ -95.533113046529806, 29.784731196107469 ], [ -95.532086045737842, 29.784748196332988 ], [ -95.531787045466743, 29.78474819611241 ], [ -95.531791045825258, 29.785072196592861 ], [ -95.531791046344026, 29.785142196762845 ], [ -95.531791046131843, 29.785170197000113 ], [ -95.531787046053537, 29.785231196502615 ], [ -95.531790045860021, 29.785305197074408 ], [ -95.531770046029663, 29.785438196329153 ], [ -95.531543046048625, 29.78620519695696 ], [ -95.531336045591942, 29.786703197215225 ], [ -95.531316045474128, 29.787046196747543 ], [ -95.531319045592994, 29.78742919722265 ], [ -95.531320045751642, 29.787555197500716 ], [ -95.531321045757508, 29.787695197431695 ], [ -95.531319045653447, 29.788252197663212 ], [ -95.531334046311017, 29.788665197580745 ], [ -95.531354046150753, 29.789237197178032 ], [ -95.531402046126161, 29.789734197660355 ], [ -95.531481045516685, 29.790096197280331 ], [ -95.531609045586123, 29.790567197955198 ], [ -95.531712045650224, 29.790994197768832 ], [ -95.532008045767512, 29.791793198260883 ], [ -95.532519046348256, 29.792615198322235 ], [ -95.533014046942384, 29.793375198254886 ], [ -95.53325004625691, 29.793756197922175 ], [ -95.53340504685066, 29.793988198335807 ], [ -95.533507046537522, 29.794328198300732 ], [ -95.533527047005478, 29.794511198081459 ], [ -95.53353404673058, 29.794675198185143 ], [ -95.533543047114335, 29.795169198858563 ], [ -95.534466046745948, 29.794926198979937 ], [ -95.535942046935816, 29.794514198169718 ], [ -95.536915047289341, 29.794247198694336 ], [ -95.537250047595592, 29.794162198287285 ], [ -95.537435047411265, 29.794133198521269 ], [ -95.53811304789825, 29.79412019838357 ], [ -95.539479047967575, 29.794119198470575 ], [ -95.540170048092506, 29.794248198447516 ], [ -95.544675049903134, 29.794287198338388 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 26, "Tract": "48201522202", "Area_SqMi": 0.68267303136931945, "total_2009": 535, "total_2010": 564, "total_2011": 598, "total_2012": 610, "total_2013": 670, "total_2014": 642, "total_2015": 653, "total_2016": 552, "total_2017": 513, "total_2018": 542, "total_2019": 619, "total_2020": 593, "age1": 238, "age2": 465, "age3": 137, "earn1": 175, "earn2": 332, "earn3": 333, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 28, "naics_s06": 33, "naics_s07": 72, "naics_s08": 0, "naics_s09": 0, "naics_s10": 42, "naics_s11": 31, "naics_s12": 186, "naics_s13": 0, "naics_s14": 63, "naics_s15": 78, "naics_s16": 9, "naics_s17": 0, "naics_s18": 268, "naics_s19": 4, "naics_s20": 0, "race1": 628, "race2": 108, "race3": 5, "race4": 89, "race5": 1, "race6": 9, "ethnicity1": 538, "ethnicity2": 302, "edu1": 137, "edu2": 163, "edu3": 162, "edu4": 140, "Shape_Length": 17265.768806404794, "Shape_Area": 19031755.708006211, "total_2021": 754, "total_2022": 840 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.545150050366587, 29.806014200037065 ], [ -95.545151050642829, 29.805890200379473 ], [ -95.545148049760186, 29.805644200523119 ], [ -95.54514704965959, 29.805330200544162 ], [ -95.545146049838095, 29.805078200189627 ], [ -95.545116050042708, 29.804515200550004 ], [ -95.545079050047107, 29.804177200067016 ], [ -95.54495805045768, 29.803584199761247 ], [ -95.544931049947039, 29.803427199956822 ], [ -95.544850049701324, 29.802635200058418 ], [ -95.544839049730868, 29.801807199890831 ], [ -95.544824049963239, 29.800948199008094 ], [ -95.544781049558139, 29.799249199104992 ], [ -95.544783049939682, 29.798553198635016 ], [ -95.544783050188883, 29.798353198852844 ], [ -95.544773049856886, 29.797641198702234 ], [ -95.544755049350911, 29.796938198871466 ], [ -95.544741049683324, 29.796207198152583 ], [ -95.544719049823513, 29.795341197908371 ], [ -95.544714049975894, 29.795107198360451 ], [ -95.544675049903134, 29.794287198338388 ], [ -95.540170048092506, 29.794248198447516 ], [ -95.539479047967575, 29.794119198470575 ], [ -95.53811304789825, 29.79412019838357 ], [ -95.537435047411265, 29.794133198521269 ], [ -95.537250047595592, 29.794162198287285 ], [ -95.536915047289341, 29.794247198694336 ], [ -95.535942046935816, 29.794514198169718 ], [ -95.534466046745948, 29.794926198979937 ], [ -95.533543047114335, 29.795169198858563 ], [ -95.531882046082458, 29.79562219892556 ], [ -95.530651045816043, 29.79596219920785 ], [ -95.530672046409933, 29.796809199444844 ], [ -95.530687046189513, 29.797242199561143 ], [ -95.530698046070953, 29.798216199088877 ], [ -95.530714046649265, 29.799970199291863 ], [ -95.530745046496946, 29.801291200069365 ], [ -95.530812046461548, 29.804472201019657 ], [ -95.53086004686115, 29.806484201375973 ], [ -95.531407046953362, 29.806483201078414 ], [ -95.532019046866637, 29.806469200766703 ], [ -95.533033046654324, 29.806459201166881 ], [ -95.534969047727486, 29.806462200775659 ], [ -95.537454048518853, 29.806421201242522 ], [ -95.537630048413035, 29.806417200897595 ], [ -95.538008048550694, 29.806408201110994 ], [ -95.539554048733876, 29.806399200543872 ], [ -95.53992704921842, 29.806398200665097 ], [ -95.540066049045919, 29.806373200508055 ], [ -95.540173048642018, 29.806321200336967 ], [ -95.540261048992392, 29.806236200294336 ], [ -95.540294049350123, 29.806177200456684 ], [ -95.540320049080663, 29.806104200916433 ], [ -95.540339048490907, 29.806009200907411 ], [ -95.541361049416608, 29.806008200506447 ], [ -95.541983049175059, 29.806005200861119 ], [ -95.542823049138164, 29.806004200831726 ], [ -95.544626050182146, 29.806001200621264 ], [ -95.545150050366587, 29.806014200037065 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 27, "Tract": "48201522301", "Area_SqMi": 0.53497321248972185, "total_2009": 3797, "total_2010": 4024, "total_2011": 4175, "total_2012": 4302, "total_2013": 4607, "total_2014": 4773, "total_2015": 5152, "total_2016": 5103, "total_2017": 4759, "total_2018": 4430, "total_2019": 4394, "total_2020": 4409, "age1": 1082, "age2": 1962, "age3": 885, "earn1": 572, "earn2": 1331, "earn3": 2026, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 54, "naics_s05": 65, "naics_s06": 115, "naics_s07": 1142, "naics_s08": 5, "naics_s09": 4, "naics_s10": 82, "naics_s11": 1459, "naics_s12": 80, "naics_s13": 9, "naics_s14": 225, "naics_s15": 9, "naics_s16": 381, "naics_s17": 0, "naics_s18": 272, "naics_s19": 26, "naics_s20": 0, "race1": 2412, "race2": 1013, "race3": 35, "race4": 407, "race5": 6, "race6": 56, "ethnicity1": 2728, "ethnicity2": 1201, "edu1": 629, "edu2": 786, "edu3": 853, "edu4": 579, "Shape_Length": 16192.201799192406, "Shape_Area": 14914137.548409469, "total_2021": 3737, "total_2022": 3929 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.533543047114335, 29.795169198858563 ], [ -95.53353404673058, 29.794675198185143 ], [ -95.533527047005478, 29.794511198081459 ], [ -95.533507046537522, 29.794328198300732 ], [ -95.53340504685066, 29.793988198335807 ], [ -95.53325004625691, 29.793756197922175 ], [ -95.533014046942384, 29.793375198254886 ], [ -95.532519046348256, 29.792615198322235 ], [ -95.532008045767512, 29.791793198260883 ], [ -95.531712045650224, 29.790994197768832 ], [ -95.531609045586123, 29.790567197955198 ], [ -95.531481045516685, 29.790096197280331 ], [ -95.531402046126161, 29.789734197660355 ], [ -95.531354046150753, 29.789237197178032 ], [ -95.531334046311017, 29.788665197580745 ], [ -95.531319045653447, 29.788252197663212 ], [ -95.531321045757508, 29.787695197431695 ], [ -95.531320045751642, 29.787555197500716 ], [ -95.531319045592994, 29.78742919722265 ], [ -95.531316045474128, 29.787046196747543 ], [ -95.531336045591942, 29.786703197215225 ], [ -95.531543046048625, 29.78620519695696 ], [ -95.531770046029663, 29.785438196329153 ], [ -95.531790045860021, 29.785305197074408 ], [ -95.531787046053537, 29.785231196502615 ], [ -95.531791046131843, 29.785170197000113 ], [ -95.531791046344026, 29.785142196762845 ], [ -95.531791045825258, 29.785072196592861 ], [ -95.531787045466743, 29.78474819611241 ], [ -95.531784046279256, 29.784487196567259 ], [ -95.531783045338869, 29.784271196597739 ], [ -95.531785046051311, 29.783818195972827 ], [ -95.531285045891138, 29.783820196215437 ], [ -95.530605045159049, 29.783823196639116 ], [ -95.530479045069512, 29.783824196342152 ], [ -95.529627045431866, 29.783829196696754 ], [ -95.52770804486741, 29.78383519637811 ], [ -95.527468044259919, 29.783836196822985 ], [ -95.525848044144297, 29.783811196346434 ], [ -95.524885043998538, 29.783791196697646 ], [ -95.523991043930351, 29.78378319642357 ], [ -95.523528043981443, 29.783778196853557 ], [ -95.523162043297219, 29.783769196797639 ], [ -95.522244042883955, 29.78375519707765 ], [ -95.52188004361139, 29.78374919703159 ], [ -95.521713043324837, 29.783749196735869 ], [ -95.521267043103705, 29.783739196715231 ], [ -95.521268042948833, 29.784023196591932 ], [ -95.521268043283683, 29.784198196607452 ], [ -95.521268042984616, 29.78435619656215 ], [ -95.52126904270547, 29.784554197007402 ], [ -95.521270043627396, 29.784673197049862 ], [ -95.52127104322247, 29.784895197360857 ], [ -95.521271043557462, 29.784959197068066 ], [ -95.521274042866267, 29.785085197367707 ], [ -95.521290043613419, 29.785420196627957 ], [ -95.521343043050663, 29.785766196903236 ], [ -95.521552043793065, 29.786409196968709 ], [ -95.521664043428757, 29.78672519767008 ], [ -95.52172404286911, 29.787017197459772 ], [ -95.521767042958075, 29.787181197239889 ], [ -95.521782043483114, 29.78735919762061 ], [ -95.521784043619533, 29.788723197918603 ], [ -95.521784043083485, 29.788808197963206 ], [ -95.521785043377662, 29.788946198047253 ], [ -95.52178604342248, 29.789932198307849 ], [ -95.521795043289416, 29.790105198442738 ], [ -95.521788043050208, 29.790843198202172 ], [ -95.521778043424604, 29.791842198195098 ], [ -95.521787043375966, 29.791916198575205 ], [ -95.521787043155882, 29.79198419855355 ], [ -95.521817043447257, 29.792286198445261 ], [ -95.521865043525466, 29.792531198090764 ], [ -95.52198004362721, 29.792801198554514 ], [ -95.522171043492904, 29.793255198992103 ], [ -95.523110043594002, 29.794764199129528 ], [ -95.523284044217476, 29.79536519888536 ], [ -95.52333404400521, 29.796106199321024 ], [ -95.523445044389035, 29.796896199020424 ], [ -95.523496044494635, 29.797055199661418 ], [ -95.523928044558659, 29.798005199624189 ], [ -95.52453404427834, 29.797799199166427 ], [ -95.525369045091693, 29.797490199305798 ], [ -95.525979044443076, 29.79726919888645 ], [ -95.526629044660709, 29.797062199268559 ], [ -95.529061045856722, 29.796400199311183 ], [ -95.529220045697585, 29.796359198794931 ], [ -95.52943204577339, 29.796294198568695 ], [ -95.52993004605311, 29.796158198610769 ], [ -95.530651045816043, 29.79596219920785 ], [ -95.531882046082458, 29.79562219892556 ], [ -95.533543047114335, 29.795169198858563 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 28, "Tract": "48201522201", "Area_SqMi": 0.62868289820241663, "total_2009": 1492, "total_2010": 1473, "total_2011": 1377, "total_2012": 1487, "total_2013": 1380, "total_2014": 1671, "total_2015": 1663, "total_2016": 1605, "total_2017": 1663, "total_2018": 1616, "total_2019": 1671, "total_2020": 1668, "age1": 325, "age2": 806, "age3": 347, "earn1": 182, "earn2": 436, "earn3": 860, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 431, "naics_s05": 46, "naics_s06": 91, "naics_s07": 76, "naics_s08": 5, "naics_s09": 22, "naics_s10": 9, "naics_s11": 22, "naics_s12": 67, "naics_s13": 7, "naics_s14": 372, "naics_s15": 1, "naics_s16": 110, "naics_s17": 6, "naics_s18": 136, "naics_s19": 74, "naics_s20": 1, "race1": 1092, "race2": 147, "race3": 20, "race4": 188, "race5": 3, "race6": 28, "ethnicity1": 894, "ethnicity2": 584, "edu1": 281, "edu2": 316, "edu3": 297, "edu4": 259, "Shape_Length": 24159.216162548233, "Shape_Area": 17526603.200349383, "total_2021": 1468, "total_2022": 1478 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.54521605102579, 29.8126922015011 ], [ -95.545200050747255, 29.811429201962792 ], [ -95.54519705047737, 29.811209201376329 ], [ -95.545196050742433, 29.810379200983029 ], [ -95.545198050127851, 29.809445201010373 ], [ -95.545195050095828, 29.809260200914842 ], [ -95.545200050494699, 29.809086201323083 ], [ -95.545194050833928, 29.808904200915766 ], [ -95.545174049969418, 29.807991200629083 ], [ -95.545169049856057, 29.807457200446997 ], [ -95.545166050133147, 29.806800200248222 ], [ -95.545150050366587, 29.806014200037065 ], [ -95.544626050182146, 29.806001200621264 ], [ -95.542823049138164, 29.806004200831726 ], [ -95.541983049175059, 29.806005200861119 ], [ -95.541361049416608, 29.806008200506447 ], [ -95.540339048490907, 29.806009200907411 ], [ -95.540320049080663, 29.806104200916433 ], [ -95.540294049350123, 29.806177200456684 ], [ -95.540261048992392, 29.806236200294336 ], [ -95.540173048642018, 29.806321200336967 ], [ -95.540066049045919, 29.806373200508055 ], [ -95.53992704921842, 29.806398200665097 ], [ -95.539554048733876, 29.806399200543872 ], [ -95.538008048550694, 29.806408201110994 ], [ -95.537630048413035, 29.806417200897595 ], [ -95.537454048518853, 29.806421201242522 ], [ -95.534969047727486, 29.806462200775659 ], [ -95.533033046654324, 29.806459201166881 ], [ -95.532019046866637, 29.806469200766703 ], [ -95.531407046953362, 29.806483201078414 ], [ -95.53086004686115, 29.806484201375973 ], [ -95.530812046461548, 29.804472201019657 ], [ -95.530745046496946, 29.801291200069365 ], [ -95.530714046649265, 29.799970199291863 ], [ -95.530698046070953, 29.798216199088877 ], [ -95.530687046189513, 29.797242199561143 ], [ -95.530672046409933, 29.796809199444844 ], [ -95.530651045816043, 29.79596219920785 ], [ -95.52993004605311, 29.796158198610769 ], [ -95.52943204577339, 29.796294198568695 ], [ -95.529220045697585, 29.796359198794931 ], [ -95.529061045856722, 29.796400199311183 ], [ -95.526629044660709, 29.797062199268559 ], [ -95.525979044443076, 29.79726919888645 ], [ -95.525369045091693, 29.797490199305798 ], [ -95.52453404427834, 29.797799199166427 ], [ -95.523928044558659, 29.798005199624189 ], [ -95.524024044217299, 29.798276199638035 ], [ -95.524058044624979, 29.798435199629218 ], [ -95.524183044649661, 29.799015199908663 ], [ -95.524190044873862, 29.799441199735782 ], [ -95.52421404463233, 29.79996119955878 ], [ -95.524223044410249, 29.800683200309177 ], [ -95.524239044664171, 29.801921200619343 ], [ -95.524324044718497, 29.804632200592327 ], [ -95.524341044391704, 29.805669201352782 ], [ -95.524422044979417, 29.806590201143919 ], [ -95.524423045108719, 29.806732201696757 ], [ -95.524427044582239, 29.807101201809587 ], [ -95.524773044781142, 29.807149201553859 ], [ -95.52513404482572, 29.80725920098514 ], [ -95.525417044790359, 29.807423201547465 ], [ -95.525593045426334, 29.807550201237927 ], [ -95.525694045010241, 29.807641201249638 ], [ -95.525948045336776, 29.807954201453857 ], [ -95.526111045624049, 29.808310201455232 ], [ -95.526179045306577, 29.808484201804809 ], [ -95.526164045840929, 29.809806202332645 ], [ -95.526680045425366, 29.80975120200155 ], [ -95.527168045388763, 29.809654202248318 ], [ -95.528030045507691, 29.809360201280388 ], [ -95.528406045959372, 29.809271201937783 ], [ -95.528923046698765, 29.809210201249524 ], [ -95.529849046818086, 29.809219201402296 ], [ -95.530734046792247, 29.809209201909535 ], [ -95.531382046580035, 29.809205201545758 ], [ -95.531978047214295, 29.80923520117862 ], [ -95.53241004713108, 29.809285201544487 ], [ -95.532861047711805, 29.809360201518288 ], [ -95.533509047067895, 29.809541201724773 ], [ -95.533989047723225, 29.809708201187117 ], [ -95.534289047308491, 29.809846201407115 ], [ -95.534663047253432, 29.810029201837736 ], [ -95.534990048162513, 29.810216201786847 ], [ -95.535676048331794, 29.810708201635951 ], [ -95.536336048192766, 29.811235201843331 ], [ -95.536708048321543, 29.811509202121282 ], [ -95.537105048729103, 29.811779202182692 ], [ -95.537472048949397, 29.811971202172273 ], [ -95.537892049140012, 29.812172202255088 ], [ -95.538295048963576, 29.812325202406889 ], [ -95.538747048804439, 29.812469201823077 ], [ -95.539250049285528, 29.812584201901476 ], [ -95.539700049609053, 29.812661202310352 ], [ -95.540152049440906, 29.812711202380964 ], [ -95.540702049198529, 29.812729201910084 ], [ -95.541233049694682, 29.812715201530239 ], [ -95.541894049924878, 29.812715202158198 ], [ -95.542251050158953, 29.812711201953132 ], [ -95.544098049887978, 29.812686202073419 ], [ -95.54521605102579, 29.8126922015011 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 29, "Tract": "48201532502", "Area_SqMi": 1.0429405547332065, "total_2009": 108, "total_2010": 132, "total_2011": 188, "total_2012": 244, "total_2013": 208, "total_2014": 134, "total_2015": 165, "total_2016": 181, "total_2017": 177, "total_2018": 166, "total_2019": 186, "total_2020": 203, "age1": 42, "age2": 109, "age3": 48, "earn1": 31, "earn2": 78, "earn3": 90, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 31, "naics_s05": 10, "naics_s06": 37, "naics_s07": 7, "naics_s08": 8, "naics_s09": 0, "naics_s10": 19, "naics_s11": 12, "naics_s12": 32, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 9, "naics_s19": 32, "naics_s20": 0, "race1": 153, "race2": 16, "race3": 5, "race4": 18, "race5": 2, "race6": 5, "ethnicity1": 92, "ethnicity2": 107, "edu1": 47, "edu2": 47, "edu3": 41, "edu4": 22, "Shape_Length": 25982.11598164582, "Shape_Area": 29075397.65536271, "total_2021": 191, "total_2022": 199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.507007043163497, 29.874870215987748 ], [ -95.507006043283866, 29.874434215319116 ], [ -95.507006043970492, 29.874157215321151 ], [ -95.502655041988447, 29.873488215787358 ], [ -95.502374042575141, 29.873422215984153 ], [ -95.502025042318664, 29.873339215543044 ], [ -95.50152604256489, 29.87336621577116 ], [ -95.501242042296667, 29.87346521547838 ], [ -95.501066042322762, 29.873548215785998 ], [ -95.500807042057204, 29.873767215413061 ], [ -95.500764042165613, 29.873817215557935 ], [ -95.50071504176772, 29.873872215752872 ], [ -95.500643041847184, 29.873954215851018 ], [ -95.500460041926743, 29.87430621581958 ], [ -95.500352042239115, 29.874641215569891 ], [ -95.500333041747211, 29.874757216425159 ], [ -95.500289041975492, 29.874867216274616 ], [ -95.500150041539442, 29.875369215795388 ], [ -95.500093042268148, 29.875528216427725 ], [ -95.50000704168383, 29.875722216199925 ], [ -95.499717042067445, 29.876145215977076 ], [ -95.499528042211097, 29.876299216143639 ], [ -95.499314041769892, 29.876426216650291 ], [ -95.498999041678502, 29.87653021655181 ], [ -95.498836041714384, 29.876529216607327 ], [ -95.498488041913049, 29.876641216782613 ], [ -95.495011040519387, 29.876644216862008 ], [ -95.49446304015342, 29.876645216665118 ], [ -95.494462040810845, 29.876672216375241 ], [ -95.494461040125898, 29.876746216539082 ], [ -95.494458040823389, 29.876933216749741 ], [ -95.494450040806484, 29.877519216682987 ], [ -95.49444404017909, 29.87793821724869 ], [ -95.494465040394871, 29.879108217491261 ], [ -95.494465040920289, 29.880075217026342 ], [ -95.494465040625741, 29.880730217422951 ], [ -95.494450040231627, 29.88190321762033 ], [ -95.494454040337018, 29.884699218091896 ], [ -95.494466041362401, 29.886027218714901 ], [ -95.494440041036555, 29.888473219319042 ], [ -95.494437041461794, 29.888801218861012 ], [ -95.494427040650152, 29.889079219022431 ], [ -95.494423040997887, 29.889199219289015 ], [ -95.494419040563884, 29.889327219293801 ], [ -95.49445104074519, 29.890102218965389 ], [ -95.494526041562267, 29.890615219018688 ], [ -95.494619041169571, 29.890943219858247 ], [ -95.494681041316369, 29.891309219889678 ], [ -95.494697040896185, 29.891402219519676 ], [ -95.494745041476918, 29.891530219520565 ], [ -95.494813040973526, 29.89168321959221 ], [ -95.495067040816252, 29.892192220087583 ], [ -95.495172041297351, 29.892429219428831 ], [ -95.495273041501449, 29.89268621960732 ], [ -95.495324041667118, 29.892845219869265 ], [ -95.495411041805824, 29.89315022007926 ], [ -95.495456041206168, 29.893354219737027 ], [ -95.495595041783886, 29.893578220118165 ], [ -95.495622041365309, 29.894157220570957 ], [ -95.49562604109353, 29.894464220020279 ], [ -95.495636041070966, 29.895053220305577 ], [ -95.495657041692326, 29.89622322074506 ], [ -95.495668041167235, 29.897224220352911 ], [ -95.495675041917394, 29.897855220956011 ], [ -95.495684041445898, 29.898759221428232 ], [ -95.495694042086726, 29.899686221625199 ], [ -95.498610042759893, 29.899655221090821 ], [ -95.500291042807504, 29.899638221193594 ], [ -95.500330042886631, 29.899636220956712 ], [ -95.500360042838224, 29.899652221166576 ], [ -95.500601043544009, 29.899637221255979 ], [ -95.500755042643618, 29.89962122122418 ], [ -95.500895042832767, 29.899607220783714 ], [ -95.501230043366732, 29.899562220693774 ], [ -95.502371043989172, 29.899406220561666 ], [ -95.503146044163714, 29.899304220843639 ], [ -95.503416043714466, 29.899263221330816 ], [ -95.504103043772901, 29.899169220765934 ], [ -95.504098043738793, 29.898939220677448 ], [ -95.504054043568885, 29.898801220760713 ], [ -95.504048043518566, 29.898559220730672 ], [ -95.503928043507145, 29.898312220629304 ], [ -95.503903043953599, 29.897762220490041 ], [ -95.503910043797148, 29.897212220874387 ], [ -95.503891044221362, 29.896734220034084 ], [ -95.503855043925455, 29.894738219726278 ], [ -95.503767043974008, 29.893941219458256 ], [ -95.503774043636355, 29.891781219781798 ], [ -95.503763043962849, 29.891582219600124 ], [ -95.503749043772913, 29.891335219506626 ], [ -95.503680043758848, 29.891154219438395 ], [ -95.5036500438312, 29.891107219192282 ], [ -95.503447043457356, 29.890791219259402 ], [ -95.503352043075452, 29.890533219373765 ], [ -95.503339043518267, 29.890435219302585 ], [ -95.503327043145703, 29.890340219332245 ], [ -95.503327043753515, 29.890306219314816 ], [ -95.503327043611094, 29.890270219116168 ], [ -95.503327043183958, 29.890236219071017 ], [ -95.50332704304158, 29.890200218871506 ], [ -95.50332704293757, 29.890171219237338 ], [ -95.503334043342605, 29.889702219388163 ], [ -95.503353043694702, 29.889367219010261 ], [ -95.50334504361345, 29.888865218976814 ], [ -95.503335043580378, 29.888273218997551 ], [ -95.503339042908962, 29.888154218777522 ], [ -95.503354043125356, 29.887756218980552 ], [ -95.50332304351862, 29.887481218174099 ], [ -95.503324043371393, 29.887412218748054 ], [ -95.503337042870868, 29.886632218533624 ], [ -95.503342042769688, 29.886327218271038 ], [ -95.503355043457944, 29.886168218224935 ], [ -95.503311042649997, 29.885970217807252 ], [ -95.503305043362957, 29.885918217851973 ], [ -95.503703043042705, 29.885843218292319 ], [ -95.50439504372477, 29.885753217953194 ], [ -95.506269044286427, 29.885553218045722 ], [ -95.506966043711387, 29.885527218067011 ], [ -95.50696304430457, 29.884748217412902 ], [ -95.506970043944676, 29.883932217528514 ], [ -95.506971044314881, 29.883505217671019 ], [ -95.506946043879296, 29.883039217273041 ], [ -95.506949044256629, 29.882245217527881 ], [ -95.507003043455356, 29.881403217297983 ], [ -95.506969043828775, 29.880608216816839 ], [ -95.506981043745228, 29.879561216745074 ], [ -95.506985044150312, 29.879437216720824 ], [ -95.506974044191352, 29.878704216783852 ], [ -95.506977043556986, 29.878016216668925 ], [ -95.506977043417535, 29.877139216329169 ], [ -95.506967043323655, 29.876355215930719 ], [ -95.507007043154331, 29.875621216248099 ], [ -95.507007043163497, 29.874870215987748 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 30, "Tract": "48201522500", "Area_SqMi": 1.4879604342657842, "total_2009": 2597, "total_2010": 2384, "total_2011": 2574, "total_2012": 3191, "total_2013": 3411, "total_2014": 3793, "total_2015": 3988, "total_2016": 4161, "total_2017": 4253, "total_2018": 3908, "total_2019": 4144, "total_2020": 4128, "age1": 824, "age2": 2253, "age3": 1070, "earn1": 653, "earn2": 1177, "earn3": 2317, "naics_s01": 4, "naics_s02": 19, "naics_s03": 0, "naics_s04": 72, "naics_s05": 116, "naics_s06": 296, "naics_s07": 281, "naics_s08": 0, "naics_s09": 25, "naics_s10": 234, "naics_s11": 120, "naics_s12": 304, "naics_s13": 10, "naics_s14": 672, "naics_s15": 75, "naics_s16": 1387, "naics_s17": 110, "naics_s18": 168, "naics_s19": 144, "naics_s20": 110, "race1": 2925, "race2": 742, "race3": 44, "race4": 345, "race5": 8, "race6": 83, "ethnicity1": 2859, "ethnicity2": 1288, "edu1": 687, "edu2": 765, "edu3": 949, "edu4": 922, "Shape_Length": 32633.550442942946, "Shape_Area": 41481790.237595022, "total_2021": 3981, "total_2022": 4147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.520325042847119, 29.78891519794735 ], [ -95.520325043435804, 29.788862197695984 ], [ -95.520314043612572, 29.788829197435813 ], [ -95.520197043259273, 29.788463197754645 ], [ -95.520004042463327, 29.787981198024919 ], [ -95.520094042688243, 29.785585197451628 ], [ -95.520131042575059, 29.785138197121004 ], [ -95.520137042480926, 29.785033197098013 ], [ -95.520136042378994, 29.784974197232266 ], [ -95.520135042821877, 29.784896197125004 ], [ -95.520132042593701, 29.784563196842189 ], [ -95.519666043122967, 29.784553196768432 ], [ -95.51716504199284, 29.784548197008402 ], [ -95.516513041545565, 29.784533197310534 ], [ -95.514528041711387, 29.784557197173552 ], [ -95.51446504137391, 29.784558197218619 ], [ -95.514275041307243, 29.784577197325245 ], [ -95.514229040890157, 29.784582197524927 ], [ -95.514186041289278, 29.78458719722402 ], [ -95.513970041152575, 29.784623196836527 ], [ -95.513597040933689, 29.784625197492552 ], [ -95.512716041311933, 29.784630197334156 ], [ -95.51143104069628, 29.784669196935106 ], [ -95.509569040666648, 29.784748197048525 ], [ -95.508356039555864, 29.784761197066615 ], [ -95.506278039033148, 29.784748197040152 ], [ -95.50582503908042, 29.784739197161787 ], [ -95.501854038125032, 29.784663197539729 ], [ -95.501287038405806, 29.784661197225972 ], [ -95.500536037438465, 29.784624197535944 ], [ -95.499748037355303, 29.784572197816136 ], [ -95.499271037343107, 29.784536197612979 ], [ -95.499046037482543, 29.784518197476835 ], [ -95.498855037125438, 29.784510198048956 ], [ -95.498621037036258, 29.784503198030631 ], [ -95.498477037777519, 29.784495197415609 ], [ -95.4972820372775, 29.784447197627525 ], [ -95.49644003634873, 29.784400197471058 ], [ -95.494422036062403, 29.78431819738708 ], [ -95.488255034574294, 29.78434419770511 ], [ -95.488249034503511, 29.784071198171905 ], [ -95.488244034876828, 29.783853197860047 ], [ -95.488237034920076, 29.78376219788132 ], [ -95.488226034169728, 29.78352819820466 ], [ -95.488093035012298, 29.783524197955735 ], [ -95.487634034102115, 29.783512198174037 ], [ -95.486407034245872, 29.783581197756881 ], [ -95.486402033739836, 29.783746197965382 ], [ -95.486400033739542, 29.7838441976551 ], [ -95.486397034243538, 29.783928198382043 ], [ -95.486393034415968, 29.784069197621559 ], [ -95.48639103456884, 29.784163197740043 ], [ -95.486388034402026, 29.784273197879372 ], [ -95.485031034180281, 29.784152198294159 ], [ -95.484860034211465, 29.784146198154644 ], [ -95.484855033683544, 29.784342198379552 ], [ -95.484850033783147, 29.784536198375147 ], [ -95.484847033947702, 29.784643198168212 ], [ -95.484827034125047, 29.785351198163003 ], [ -95.484857034379431, 29.786060198823137 ], [ -95.484871033602914, 29.786356198041286 ], [ -95.484904033444764, 29.787045198978419 ], [ -95.484904034051027, 29.787309199132295 ], [ -95.484905033555606, 29.788159198996837 ], [ -95.484904033880639, 29.788263198432865 ], [ -95.484909033999813, 29.789262199337493 ], [ -95.48491103450408, 29.790750199579499 ], [ -95.484915034290907, 29.791609199785121 ], [ -95.484922034093373, 29.79221219929256 ], [ -95.484926034243031, 29.792921199929687 ], [ -95.484933034502887, 29.794146200236018 ], [ -95.484932034195452, 29.794453200190858 ], [ -95.484934034221993, 29.794915199969047 ], [ -95.487160035096679, 29.794929200626829 ], [ -95.487182034416719, 29.79492920036877 ], [ -95.487551034633853, 29.794936200009619 ], [ -95.488022035285184, 29.794949199984295 ], [ -95.488462035138966, 29.794941199776847 ], [ -95.488940035323324, 29.794959199929426 ], [ -95.489202035362254, 29.794961199818253 ], [ -95.489624035087232, 29.794928199913389 ], [ -95.489980035153508, 29.794912200032037 ], [ -95.490804036299039, 29.794886200338201 ], [ -95.491110036164216, 29.794882200459682 ], [ -95.491578035892687, 29.794873199871663 ], [ -95.492201036124811, 29.794877199879988 ], [ -95.492405036376383, 29.794871200255905 ], [ -95.493208036924173, 29.794865199965248 ], [ -95.493288036754024, 29.7948641995354 ], [ -95.493418036281923, 29.794863200041313 ], [ -95.495350037336308, 29.794839199497744 ], [ -95.495444036754776, 29.794838200046897 ], [ -95.495485037242048, 29.794838199661697 ], [ -95.495886036694642, 29.794803199506191 ], [ -95.496347037247958, 29.794749200100785 ], [ -95.496581036852845, 29.794671199375131 ], [ -95.496634036880508, 29.794654199861281 ], [ -95.496675037034251, 29.794640199348578 ], [ -95.496755037533376, 29.794731199914882 ], [ -95.496856037260258, 29.794850199938352 ], [ -95.496981037714789, 29.795001199720311 ], [ -95.497142037853635, 29.795161199675285 ], [ -95.497382037543716, 29.795395199497754 ], [ -95.49757003746177, 29.795530200270228 ], [ -95.497622038015876, 29.795556199784883 ], [ -95.497741038139836, 29.795600199812391 ], [ -95.497802037877008, 29.795616200390697 ], [ -95.497892037992898, 29.795632200405539 ], [ -95.497977037453339, 29.795638200388495 ], [ -95.498165037896428, 29.795662199723964 ], [ -95.498521038172839, 29.795703199706701 ], [ -95.498597037703973, 29.795752200038315 ], [ -95.498881037563109, 29.795857200158956 ], [ -95.499158037816827, 29.795923200287799 ], [ -95.499713037993743, 29.795966199729847 ], [ -95.500009038008344, 29.796010199847256 ], [ -95.500068038285335, 29.796048200144519 ], [ -95.500436038208449, 29.796149199885761 ], [ -95.500566038116574, 29.796185200214069 ], [ -95.500761038590028, 29.796268200062563 ], [ -95.50123403842278, 29.796406200390837 ], [ -95.501740038953898, 29.796577200049256 ], [ -95.501770038742904, 29.79658719967119 ], [ -95.502242039107657, 29.796714199757766 ], [ -95.502595038923261, 29.796791200170148 ], [ -95.502721038860415, 29.796774200125896 ], [ -95.50293603939582, 29.796725200417793 ], [ -95.503125038760118, 29.796665199655845 ], [ -95.503535038778466, 29.796429199804269 ], [ -95.503724039470001, 29.796352200003774 ], [ -95.50385003950143, 29.796313200124843 ], [ -95.504203039583828, 29.796330199703888 ], [ -95.504423039374785, 29.796302199433811 ], [ -95.504581039857143, 29.796253200044099 ], [ -95.504852039108272, 29.796143199450007 ], [ -95.505148039602815, 29.796048200091601 ], [ -95.505262040075465, 29.796011199483491 ], [ -95.505382039457174, 29.795984200108347 ], [ -95.505483039167615, 29.795995199583743 ], [ -95.505703039937487, 29.796083199964571 ], [ -95.505760039819421, 29.796121199711745 ], [ -95.505798040027528, 29.796171200114252 ], [ -95.50610003946116, 29.797018200120149 ], [ -95.506125040024301, 29.797067199949588 ], [ -95.506163039545285, 29.79710020016487 ], [ -95.50621304022205, 29.797128200312628 ], [ -95.506320039514662, 29.797166199557314 ], [ -95.506768039986397, 29.797276199697649 ], [ -95.506784040433516, 29.797276199647275 ], [ -95.506944039703669, 29.797276199805932 ], [ -95.507070039686681, 29.797266200049524 ], [ -95.507234040232078, 29.797293199631444 ], [ -95.507322040398705, 29.79732120018604 ], [ -95.508123040166737, 29.797667199723804 ], [ -95.508469040886382, 29.797827199711424 ], [ -95.50877204042466, 29.797904200001106 ], [ -95.508936040632264, 29.797964200093435 ], [ -95.509546040434429, 29.798358200459788 ], [ -95.509704040314546, 29.798460200378141 ], [ -95.510019040672134, 29.798729200415245 ], [ -95.510067040807357, 29.798783200308243 ], [ -95.510134041326083, 29.798859199844546 ], [ -95.510137041421757, 29.79838520016116 ], [ -95.510134041303147, 29.798226199806585 ], [ -95.510119040812526, 29.797244199507666 ], [ -95.511379041254486, 29.797263199515136 ], [ -95.511581041120067, 29.797266199862239 ], [ -95.512112041854465, 29.797284200091337 ], [ -95.512812041201997, 29.797279200089662 ], [ -95.51281204140956, 29.797093200103259 ], [ -95.512812041808715, 29.796994199473314 ], [ -95.512820041836306, 29.796486199865573 ], [ -95.512816041758697, 29.796106199574176 ], [ -95.512827041748693, 29.79514419940508 ], [ -95.512812041572232, 29.794708199231263 ], [ -95.512815041918472, 29.794316199041756 ], [ -95.512990041724223, 29.794317198838971 ], [ -95.51332604172525, 29.79431919916334 ], [ -95.513359041309741, 29.794319199125923 ], [ -95.513924041412452, 29.794312198713548 ], [ -95.513926041288173, 29.793491198661137 ], [ -95.513926041203661, 29.793463199259016 ], [ -95.513926041295321, 29.793401198913084 ], [ -95.513926041447789, 29.793277199119665 ], [ -95.513927041351423, 29.793061199174012 ], [ -95.513928041562494, 29.792747198596061 ], [ -95.513923041998396, 29.792515198822027 ], [ -95.513930041875327, 29.792150198891548 ], [ -95.513924041592716, 29.791890198911428 ], [ -95.513940041079977, 29.791353198652118 ], [ -95.513939041205106, 29.79076019873958 ], [ -95.513943041961994, 29.789796198255242 ], [ -95.513944042015382, 29.789694197843442 ], [ -95.514001041745786, 29.789687198306737 ], [ -95.514047041337264, 29.789683198219603 ], [ -95.514370041149249, 29.789653197753964 ], [ -95.514443042114749, 29.789646198027338 ], [ -95.514457042099494, 29.789645198218473 ], [ -95.514533041954792, 29.789638197898192 ], [ -95.5146470412014, 29.789627197720566 ], [ -95.515085041395039, 29.789587197940325 ], [ -95.515234041992159, 29.789573198008327 ], [ -95.515254041820469, 29.789571197839908 ], [ -95.515303042240873, 29.789566198508926 ], [ -95.5154180419364, 29.789556198524057 ], [ -95.515471041953617, 29.789549198188272 ], [ -95.51548204203614, 29.789547197803344 ], [ -95.515500041600532, 29.789543197734364 ], [ -95.515536041736496, 29.78953619772377 ], [ -95.515610042405569, 29.789514198262449 ], [ -95.515678042304287, 29.789486198275753 ], [ -95.515704042105753, 29.789473198470784 ], [ -95.515949042344289, 29.789343198442669 ], [ -95.516116041886349, 29.789252197622655 ], [ -95.51624804165472, 29.789180197929358 ], [ -95.516543042494575, 29.78902019788033 ], [ -95.516575041876095, 29.789004198255846 ], [ -95.516610042209621, 29.788987197976763 ], [ -95.516630041959701, 29.788977197642012 ], [ -95.516646042139655, 29.788969198284626 ], [ -95.516696041991324, 29.788944197892803 ], [ -95.516721041898009, 29.788931198086853 ], [ -95.517223042632565, 29.788926197554773 ], [ -95.517322042242498, 29.788924198093703 ], [ -95.517682041975903, 29.788920198015699 ], [ -95.518032042344757, 29.788917198179018 ], [ -95.518394042267786, 29.788916197926845 ], [ -95.518529042648879, 29.788916197783035 ], [ -95.518751043025262, 29.788916197846262 ], [ -95.519108042718031, 29.78891619769006 ], [ -95.519464042753228, 29.788916197704033 ], [ -95.519820042757672, 29.788916197674581 ], [ -95.520167043050549, 29.788916197734995 ], [ -95.52023904356767, 29.788916197633942 ], [ -95.520325042847119, 29.78891519794735 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 31, "Tract": "48201314001", "Area_SqMi": 0.54464028502191597, "total_2009": 1370, "total_2010": 1859, "total_2011": 1300, "total_2012": 5505, "total_2013": 5791, "total_2014": 6526, "total_2015": 6655, "total_2016": 6553, "total_2017": 6526, "total_2018": 7031, "total_2019": 7299, "total_2020": 7242, "age1": 490, "age2": 4966, "age3": 2218, "earn1": 221, "earn2": 652, "earn3": 6801, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 23, "naics_s06": 13, "naics_s07": 50, "naics_s08": 0, "naics_s09": 28, "naics_s10": 23, "naics_s11": 13, "naics_s12": 5, "naics_s13": 0, "naics_s14": 189, "naics_s15": 0, "naics_s16": 6138, "naics_s17": 0, "naics_s18": 79, "naics_s19": 125, "naics_s20": 974, "race1": 2099, "race2": 3590, "race3": 138, "race4": 1390, "race5": 26, "race6": 431, "ethnicity1": 6961, "ethnicity2": 713, "edu1": 282, "edu2": 801, "edu3": 2192, "edu4": 3909, "Shape_Length": 22768.320173279535, "Shape_Area": 15183638.985247046, "total_2021": 7306, "total_2022": 7674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.402118008566063, 29.701400183512018 ], [ -95.402023008395545, 29.701023184206381 ], [ -95.401964008717925, 29.700785183447373 ], [ -95.401906009109609, 29.700547183332958 ], [ -95.4017500086442, 29.69982118324446 ], [ -95.401699008370883, 29.699576183934379 ], [ -95.401595008859289, 29.699098183073961 ], [ -95.401512008340902, 29.69870018345086 ], [ -95.401444008359178, 29.698375183483385 ], [ -95.401317008609794, 29.697818183102516 ], [ -95.401282009001804, 29.697654183448137 ], [ -95.401129008311642, 29.696959182678405 ], [ -95.400983008383108, 29.69634918321832 ], [ -95.400866008551361, 29.695857182459587 ], [ -95.400841008308177, 29.695787182377348 ], [ -95.39968700767588, 29.696099182530652 ], [ -95.398405008152849, 29.696412183247251 ], [ -95.39837700735886, 29.696418183057812 ], [ -95.397331007851321, 29.696659183100156 ], [ -95.397227007855804, 29.696695182977511 ], [ -95.396654007695005, 29.696848183128083 ], [ -95.395760007477477, 29.697060183453161 ], [ -95.395584007300371, 29.697116183689371 ], [ -95.394782006577799, 29.697316183071976 ], [ -95.393069006582976, 29.697709183297864 ], [ -95.393002006435069, 29.697538183680635 ], [ -95.392885006180521, 29.697102183460309 ], [ -95.392702006434774, 29.696502183347917 ], [ -95.39252500666872, 29.695994182810288 ], [ -95.39240700625453, 29.695618182965433 ], [ -95.39238200646983, 29.695538183105022 ], [ -95.392306006100043, 29.695295183092536 ], [ -95.392229006023484, 29.69490818268963 ], [ -95.392189006422058, 29.694664182845717 ], [ -95.392168006122915, 29.694530183295825 ], [ -95.392157005990427, 29.694324183023099 ], [ -95.392145005778644, 29.69407718236511 ], [ -95.3921710058206, 29.693576182914008 ], [ -95.392209006436687, 29.693152182869223 ], [ -95.392373006411333, 29.692517182515672 ], [ -95.392691006359158, 29.691781182282924 ], [ -95.393212006208117, 29.690921181957837 ], [ -95.393439005969569, 29.690554181572299 ], [ -95.393701005930495, 29.690121181769818 ], [ -95.394428006729953, 29.689016182040135 ], [ -95.393493005804601, 29.689018181264608 ], [ -95.392578005954576, 29.689020182043247 ], [ -95.392099005849744, 29.689022181362649 ], [ -95.39201900625109, 29.68902318152929 ], [ -95.391577005915266, 29.68901818182901 ], [ -95.391203005200666, 29.688973181439597 ], [ -95.390475005520088, 29.688806181981086 ], [ -95.38993300570624, 29.690306182385356 ], [ -95.389682005658187, 29.690992182136736 ], [ -95.389470005786478, 29.691742182172792 ], [ -95.389232004834412, 29.692438182943082 ], [ -95.388972005504201, 29.693174182563421 ], [ -95.388899005605765, 29.693444182797283 ], [ -95.388726004756037, 29.69388918284119 ], [ -95.388321004728226, 29.694938182811164 ], [ -95.388289004650517, 29.695038183158616 ], [ -95.388255005086478, 29.695151183194362 ], [ -95.388182004818461, 29.695444183212388 ], [ -95.387992005293853, 29.696040183178926 ], [ -95.387491004879024, 29.697464183790146 ], [ -95.38744800460573, 29.697676183869365 ], [ -95.387174005359654, 29.698391183968248 ], [ -95.387050004476066, 29.698765183852419 ], [ -95.38700000484431, 29.698927184270975 ], [ -95.386929005037558, 29.699093183812536 ], [ -95.386590004410579, 29.700150184619307 ], [ -95.38573500516091, 29.702560184769482 ], [ -95.384623004797831, 29.705704185109681 ], [ -95.386443005156721, 29.706368185046376 ], [ -95.387207005159993, 29.706582185705646 ], [ -95.387691005811476, 29.706647185076807 ], [ -95.388114005554954, 29.706651185709163 ], [ -95.388523005988731, 29.70661418529907 ], [ -95.38886800587413, 29.706529185005696 ], [ -95.389254005620302, 29.706396185534516 ], [ -95.39023300656406, 29.705909185287318 ], [ -95.390424006540812, 29.705424185381389 ], [ -95.390525005765866, 29.70516618521372 ], [ -95.390556006514075, 29.705088184715244 ], [ -95.390836006455473, 29.704392185076518 ], [ -95.39130100603704, 29.703172184305831 ], [ -95.391625006327317, 29.702339184348038 ], [ -95.391943006049559, 29.701508184706832 ], [ -95.393798007304611, 29.702072184138242 ], [ -95.393932007044057, 29.702101184741618 ], [ -95.394063006848739, 29.702139184438408 ], [ -95.395391006825022, 29.702591183970529 ], [ -95.396612007458032, 29.703004183981722 ], [ -95.396869007268108, 29.702731184167995 ], [ -95.396944007170688, 29.702671184727595 ], [ -95.397132008077392, 29.702521184086386 ], [ -95.397499007397215, 29.702296184072381 ], [ -95.397938007603756, 29.702071184423417 ], [ -95.398393008043286, 29.701919184167643 ], [ -95.399238008554676, 29.701766183668664 ], [ -95.40091100841336, 29.701528184054713 ], [ -95.402118008566063, 29.701400183512018 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 32, "Tract": "48201320602", "Area_SqMi": 0.58670452652338689, "total_2009": 1035, "total_2010": 1428, "total_2011": 1466, "total_2012": 1196, "total_2013": 1254, "total_2014": 1315, "total_2015": 1698, "total_2016": 1522, "total_2017": 1505, "total_2018": 1595, "total_2019": 1426, "total_2020": 1238, "age1": 422, "age2": 697, "age3": 260, "earn1": 181, "earn2": 444, "earn3": 754, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 53, "naics_s05": 0, "naics_s06": 12, "naics_s07": 72, "naics_s08": 5, "naics_s09": 5, "naics_s10": 6, "naics_s11": 21, "naics_s12": 10, "naics_s13": 0, "naics_s14": 875, "naics_s15": 0, "naics_s16": 105, "naics_s17": 0, "naics_s18": 195, "naics_s19": 20, "naics_s20": 0, "race1": 1103, "race2": 156, "race3": 28, "race4": 71, "race5": 3, "race6": 18, "ethnicity1": 452, "ethnicity2": 927, "edu1": 391, "edu2": 259, "edu3": 187, "edu4": 120, "Shape_Length": 22252.345436330324, "Shape_Area": 16356318.044639211, "total_2021": 1378, "total_2022": 1379 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.267861973580722, 29.675670183482275 ], [ -95.268002973209065, 29.67556318342417 ], [ -95.267837972942928, 29.675394182812198 ], [ -95.267208973239406, 29.674742182617031 ], [ -95.266418972650015, 29.673948182624034 ], [ -95.265141973008639, 29.672659182396696 ], [ -95.264788972128514, 29.672250182949089 ], [ -95.264532972874989, 29.671953182435413 ], [ -95.264385972746709, 29.671770182673185 ], [ -95.264021972112744, 29.671359182316319 ], [ -95.263701972447009, 29.670929182688049 ], [ -95.263295971938774, 29.670361182309165 ], [ -95.263147971683736, 29.670136182280377 ], [ -95.263058971931756, 29.670001182194891 ], [ -95.262623971353165, 29.669340182003957 ], [ -95.262491972017543, 29.669139182352883 ], [ -95.262405971343028, 29.66900718215301 ], [ -95.262330972216006, 29.66889418156584 ], [ -95.261003970801198, 29.666876181256168 ], [ -95.26095997095652, 29.667051181308217 ], [ -95.260895971010171, 29.667303181308444 ], [ -95.26081997080955, 29.667493181597333 ], [ -95.260797971109753, 29.667548181587687 ], [ -95.260327971670662, 29.668394182242295 ], [ -95.260057971016195, 29.668818182439789 ], [ -95.259941970803396, 29.668969182294585 ], [ -95.259858970758373, 29.669102182223906 ], [ -95.259646970713817, 29.669185181926146 ], [ -95.259538970767935, 29.669185182116902 ], [ -95.259442970581148, 29.669246181787702 ], [ -95.259587971335563, 29.669654182080933 ], [ -95.259581971110023, 29.669760181855629 ], [ -95.259472971062436, 29.669866182473285 ], [ -95.25941397118882, 29.670056182150308 ], [ -95.259342971128291, 29.670147182436878 ], [ -95.259223970570687, 29.670287182223653 ], [ -95.259191970583984, 29.670313182632597 ], [ -95.259020971220394, 29.670472182033532 ], [ -95.259016970961881, 29.670530182532257 ], [ -95.259041971343152, 29.670604182521089 ], [ -95.259146971429601, 29.670704182877515 ], [ -95.259172970827578, 29.670793182278942 ], [ -95.259157970826578, 29.671027182858747 ], [ -95.259160971208686, 29.671176182163691 ], [ -95.259179971408756, 29.671261182830985 ], [ -95.259163971245883, 29.671384182896539 ], [ -95.25908597098875, 29.671475182426658 ], [ -95.258587971214666, 29.671825182394528 ], [ -95.257705970348638, 29.672423182975013 ], [ -95.257470971019387, 29.672582183308137 ], [ -95.257407970743017, 29.67267018265067 ], [ -95.257426970558086, 29.672775183206856 ], [ -95.257394970552625, 29.673071182533775 ], [ -95.257394971083642, 29.67316518315349 ], [ -95.257193970887272, 29.673247183168915 ], [ -95.256960970401238, 29.67348918268728 ], [ -95.256853970962922, 29.673670183295677 ], [ -95.256752970229783, 29.673912182795736 ], [ -95.256632970918361, 29.674055182856605 ], [ -95.256456970737574, 29.674209183586342 ], [ -95.25626797049776, 29.674286183676251 ], [ -95.256021970209318, 29.674352183172413 ], [ -95.25595897017395, 29.674401183677258 ], [ -95.255883970421692, 29.674522183108902 ], [ -95.255750970438527, 29.674836183003652 ], [ -95.255735970496843, 29.674898183515591 ], [ -95.255706970610476, 29.675017183476392 ], [ -95.255460970669958, 29.675781183683636 ], [ -95.255454970402752, 29.675886183932185 ], [ -95.255548970286327, 29.675974183678065 ], [ -95.255548969890114, 29.676029183364964 ], [ -95.255517969940001, 29.676084183532282 ], [ -95.255378970741134, 29.676243183415632 ], [ -95.25532897040442, 29.676315183717637 ], [ -95.255290969793677, 29.676540184036824 ], [ -95.255208970257499, 29.676837183651514 ], [ -95.254911970089935, 29.677464183812948 ], [ -95.254861969674124, 29.677596183763935 ], [ -95.254634970349116, 29.677782183988111 ], [ -95.254559970592908, 29.67785418424679 ], [ -95.25450296987762, 29.677925184089123 ], [ -95.254470969866361, 29.678052184533612 ], [ -95.254477969661892, 29.678178184456538 ], [ -95.254508970174683, 29.678404184196701 ], [ -95.25458396973896, 29.678552184477525 ], [ -95.254621970257631, 29.678651183932686 ], [ -95.254728970712293, 29.678800184051937 ], [ -95.25469696969607, 29.678970184383029 ], [ -95.254652970347394, 29.679108184546401 ], [ -95.254501970452026, 29.679421183973613 ], [ -95.254463970500666, 29.679547184225495 ], [ -95.254287969765656, 29.679685184329752 ], [ -95.254098969705268, 29.679712184760099 ], [ -95.254066970375305, 29.679866184376934 ], [ -95.254085970204642, 29.67989418465972 ], [ -95.254167970348718, 29.680169184315904 ], [ -95.253801970247125, 29.680900184928163 ], [ -95.253763970234615, 29.681120184576621 ], [ -95.253763969551798, 29.681230184764555 ], [ -95.253738969724253, 29.681455184485895 ], [ -95.25374896984232, 29.681895185230655 ], [ -95.253750970090593, 29.682010184645126 ], [ -95.253738970355855, 29.682192185322226 ], [ -95.253360970300506, 29.682351184660117 ], [ -95.253206970073094, 29.682514184980249 ], [ -95.253146969849624, 29.682577185325485 ], [ -95.253089970066284, 29.682675184776567 ], [ -95.252884970382965, 29.682858185205482 ], [ -95.252459970272, 29.683236184824121 ], [ -95.252093969942464, 29.683461185399075 ], [ -95.251659969713998, 29.683654185730216 ], [ -95.251060969001429, 29.683934185688504 ], [ -95.250746969525665, 29.683983185006877 ], [ -95.250387968917266, 29.683994185579706 ], [ -95.250010969082936, 29.684034185380966 ], [ -95.249821969445904, 29.684105185528281 ], [ -95.249759969461024, 29.68419318594464 ], [ -95.249645969194262, 29.684386185963355 ], [ -95.249589969075245, 29.684463185983613 ], [ -95.249520969590847, 29.684501185680631 ], [ -95.249397969083716, 29.68451218541561 ], [ -95.249003969218194, 29.684518185735254 ], [ -95.248575969021687, 29.684568185631491 ], [ -95.24843696889161, 29.684590185327707 ], [ -95.248304968799573, 29.684661185383234 ], [ -95.248241968525477, 29.684738185509815 ], [ -95.248323968783922, 29.684848186082689 ], [ -95.248349968954741, 29.684909186150552 ], [ -95.248355969037533, 29.684997185677354 ], [ -95.248349968430631, 29.685096186130338 ], [ -95.248324969273213, 29.685184185457786 ], [ -95.248261968974674, 29.685255186151771 ], [ -95.248166969180133, 29.685294186221256 ], [ -95.247832968327842, 29.685320185923118 ], [ -95.247751969138037, 29.685327185952751 ], [ -95.247681968412806, 29.685360185421501 ], [ -95.247555968827044, 29.685464185560519 ], [ -95.247467968995792, 29.685558186025194 ], [ -95.247367968686163, 29.685646185559648 ], [ -95.247058968821193, 29.685734185616205 ], [ -95.246989968948299, 29.685773186049612 ], [ -95.246945969006362, 29.685839185993959 ], [ -95.246844968349436, 29.68603718627848 ], [ -95.246748968125559, 29.686075186005841 ], [ -95.247236969128664, 29.686911185991558 ], [ -95.247407969071091, 29.687205186615714 ], [ -95.247573968362332, 29.687407186648905 ], [ -95.247754968975997, 29.687841186361617 ], [ -95.247911968802839, 29.688051186304438 ], [ -95.24813996881737, 29.68820218639701 ], [ -95.248383969079811, 29.688215186103758 ], [ -95.248658969241788, 29.6881461865913 ], [ -95.248869969545282, 29.687887185897907 ], [ -95.249082969452047, 29.687720185891585 ], [ -95.24948596959409, 29.687549186372113 ], [ -95.250850969496852, 29.687332185811169 ], [ -95.251259969836781, 29.687341185781644 ], [ -95.251411969541863, 29.687394186055226 ], [ -95.251561970026813, 29.687499186031069 ], [ -95.251642969421923, 29.6874401864943 ], [ -95.252893970216562, 29.686547185564319 ], [ -95.253568970215113, 29.686134185799784 ], [ -95.255243970665376, 29.685057185153632 ], [ -95.255442970302582, 29.684911185309709 ], [ -95.255464970245853, 29.68489818587312 ], [ -95.255652971165233, 29.68478418530859 ], [ -95.257497971384169, 29.683408184801383 ], [ -95.257996971671517, 29.683055184892257 ], [ -95.25980297209928, 29.681700184731032 ], [ -95.261743972533949, 29.680248184255888 ], [ -95.264164972509178, 29.678432184303805 ], [ -95.266688973427918, 29.676537183595503 ], [ -95.267575973198319, 29.675886183064257 ], [ -95.26774197295552, 29.675760183079085 ], [ -95.267861973580722, 29.675670183482275 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 33, "Tract": "48201533902", "Area_SqMi": 0.74769649404173677, "total_2009": 1665, "total_2010": 1082, "total_2011": 1139, "total_2012": 1737, "total_2013": 3290, "total_2014": 3449, "total_2015": 3206, "total_2016": 2334, "total_2017": 2565, "total_2018": 2895, "total_2019": 3101, "total_2020": 3187, "age1": 637, "age2": 2459, "age3": 569, "earn1": 254, "earn2": 463, "earn3": 2948, "naics_s01": 0, "naics_s02": 1071, "naics_s03": 2, "naics_s04": 537, "naics_s05": 344, "naics_s06": 728, "naics_s07": 118, "naics_s08": 28, "naics_s09": 20, "naics_s10": 239, "naics_s11": 163, "naics_s12": 282, "naics_s13": 0, "naics_s14": 9, "naics_s15": 2, "naics_s16": 54, "naics_s17": 0, "naics_s18": 61, "naics_s19": 7, "naics_s20": 0, "race1": 2820, "race2": 512, "race3": 29, "race4": 241, "race5": 10, "race6": 53, "ethnicity1": 2513, "ethnicity2": 1152, "edu1": 567, "edu2": 843, "edu3": 947, "edu4": 671, "Shape_Length": 21817.797550263651, "Shape_Area": 20844498.558544606, "total_2021": 3202, "total_2022": 3665 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.515230048738886, 29.936916228296376 ], [ -95.515322048141911, 29.936908227797517 ], [ -95.515186048625893, 29.936810228444902 ], [ -95.514951048172577, 29.936629227729767 ], [ -95.514789048211682, 29.93650522823804 ], [ -95.514568047769316, 29.936349228105218 ], [ -95.514442047931595, 29.936252227699349 ], [ -95.513116047677798, 29.935232227466944 ], [ -95.512870047812228, 29.935054227927623 ], [ -95.512786048091158, 29.934993227966288 ], [ -95.512507047285254, 29.934784227688727 ], [ -95.512111047081831, 29.934477227653069 ], [ -95.511780047396201, 29.934250227355342 ], [ -95.511487047189291, 29.933992227922268 ], [ -95.511094047653572, 29.933640227521263 ], [ -95.510669047464447, 29.933214227733554 ], [ -95.510272046664412, 29.932801227728799 ], [ -95.510116046651376, 29.932638227558254 ], [ -95.509930047047504, 29.932451227266444 ], [ -95.509511047009369, 29.931975227197714 ], [ -95.50886804640588, 29.931409227423789 ], [ -95.508709046302428, 29.93121422742859 ], [ -95.507448045984873, 29.930195226935723 ], [ -95.507066045981858, 29.929886227338233 ], [ -95.504901045578777, 29.928163226436183 ], [ -95.504742045397663, 29.928051226841873 ], [ -95.504725045797144, 29.928038226456962 ], [ -95.504187045158247, 29.927633226971295 ], [ -95.503026044496906, 29.926776226397678 ], [ -95.502746044953767, 29.926547226402185 ], [ -95.502008044946436, 29.925980226525233 ], [ -95.501763044209099, 29.925798226249249 ], [ -95.501636044052162, 29.925703226610274 ], [ -95.501606044431199, 29.925681226618703 ], [ -95.501521044829801, 29.925618226238569 ], [ -95.501488044906836, 29.925593226333067 ], [ -95.501277044606965, 29.925430226298637 ], [ -95.500667044098378, 29.924983226417584 ], [ -95.500557043976258, 29.924892225999862 ], [ -95.500333044290954, 29.924724226272687 ], [ -95.499910043712532, 29.924521226173095 ], [ -95.499536043664477, 29.924237226060566 ], [ -95.499493043819825, 29.924204226018055 ], [ -95.498794043213266, 29.923662225936887 ], [ -95.498561043826925, 29.923482225706788 ], [ -95.497854043090953, 29.922936226170901 ], [ -95.497689043086694, 29.92281622566534 ], [ -95.497441042791095, 29.92263622543339 ], [ -95.49734304294212, 29.922559225840661 ], [ -95.497224042758461, 29.922464225598315 ], [ -95.497203042679715, 29.922449226146863 ], [ -95.497020043264982, 29.922317226206289 ], [ -95.496666042523827, 29.922063226216302 ], [ -95.496086043327452, 29.921635225744687 ], [ -95.495040042867998, 29.920821225475809 ], [ -95.494617042694941, 29.920498225163417 ], [ -95.494475042067222, 29.9204022253336 ], [ -95.494327042310474, 29.920302225406189 ], [ -95.494023041869156, 29.920096225892561 ], [ -95.493851042421326, 29.919998225028099 ], [ -95.493724042652417, 29.920188225639034 ], [ -95.49351804266486, 29.920518225875725 ], [ -95.493435041891289, 29.920659225828064 ], [ -95.493293042205792, 29.920884225720073 ], [ -95.493127042235443, 29.92114922589451 ], [ -95.493087041697081, 29.921213226108712 ], [ -95.493035042277356, 29.921295225502536 ], [ -95.492626041798985, 29.921922225495901 ], [ -95.492281042101339, 29.922454226474301 ], [ -95.492119041810724, 29.922731226104485 ], [ -95.49202904182863, 29.922906226153916 ], [ -95.491950041510435, 29.923077226321325 ], [ -95.491840042092178, 29.923353226253909 ], [ -95.49181504213459, 29.923415226292441 ], [ -95.491715041461049, 29.923710226181242 ], [ -95.49170704153687, 29.923741226024049 ], [ -95.491635041887761, 29.924008226406695 ], [ -95.491585041347378, 29.924266226173021 ], [ -95.491549041500107, 29.924520226035629 ], [ -95.49152504168994, 29.924818226826158 ], [ -95.491511041462147, 29.925086226855345 ], [ -95.491517042247423, 29.925324226714498 ], [ -95.491543041580172, 29.925615226913038 ], [ -95.491592041667772, 29.925918227121738 ], [ -95.491644042325845, 29.926207227074542 ], [ -95.491739042050824, 29.926556226931748 ], [ -95.491829041915665, 29.926818226945251 ], [ -95.491944042052751, 29.92710022731908 ], [ -95.492088041732245, 29.927397227437943 ], [ -95.492209041806433, 29.927613227057087 ], [ -95.492395042015431, 29.927906227441113 ], [ -95.492541042268513, 29.928105227118614 ], [ -95.492733042189599, 29.928359227510143 ], [ -95.492929042453952, 29.928585227224378 ], [ -95.493088042428639, 29.928744227273629 ], [ -95.493346043022839, 29.928983226928956 ], [ -95.493518042715664, 29.929129227543871 ], [ -95.494098042253086, 29.929583227313227 ], [ -95.495619043624473, 29.930750227276206 ], [ -95.495880043349445, 29.930961227573647 ], [ -95.495963042991733, 29.931034227708633 ], [ -95.49624604351979, 29.931286227636125 ], [ -95.496560043048149, 29.931618227366162 ], [ -95.496707043436643, 29.931790228111939 ], [ -95.496898043494056, 29.932041227975478 ], [ -95.49699904313259, 29.932188227467407 ], [ -95.497212043851391, 29.932546227908457 ], [ -95.497327044166141, 29.932767228345366 ], [ -95.497411043887951, 29.932941227968115 ], [ -95.497524043542086, 29.93321722846456 ], [ -95.497645044265937, 29.933581227844876 ], [ -95.497677043440433, 29.933703228014252 ], [ -95.497750043671672, 29.934040228484918 ], [ -95.497800044106967, 29.934366228275778 ], [ -95.497822043478251, 29.934595228326195 ], [ -95.497836043835861, 29.935032228643202 ], [ -95.497843043641723, 29.935242228645482 ], [ -95.497841043987762, 29.935667228521318 ], [ -95.497839043634869, 29.935994228968966 ], [ -95.497847043685482, 29.936924229132657 ], [ -95.497848044094383, 29.937157229257263 ], [ -95.498196043692502, 29.937151229175505 ], [ -95.49892004436505, 29.937125229109547 ], [ -95.504835046217039, 29.937095228264226 ], [ -95.507237046869761, 29.937088228775313 ], [ -95.507493046114021, 29.937074228331451 ], [ -95.507715046687665, 29.937074228342837 ], [ -95.509464046762446, 29.936995228264678 ], [ -95.513266048309504, 29.936962228141581 ], [ -95.514678048588266, 29.936941228440354 ], [ -95.515142048487803, 29.936923227789606 ], [ -95.515185048040365, 29.936920228281416 ], [ -95.515230048738886, 29.936916228296376 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 34, "Tract": "48201321401", "Area_SqMi": 0.79908835666622546, "total_2009": 379, "total_2010": 890, "total_2011": 395, "total_2012": 291, "total_2013": 318, "total_2014": 306, "total_2015": 317, "total_2016": 329, "total_2017": 323, "total_2018": 324, "total_2019": 369, "total_2020": 338, "age1": 63, "age2": 153, "age3": 74, "earn1": 45, "earn2": 120, "earn3": 125, "naics_s01": 0, "naics_s02": 0, "naics_s03": 20, "naics_s04": 20, "naics_s05": 9, "naics_s06": 22, "naics_s07": 124, "naics_s08": 1, "naics_s09": 4, "naics_s10": 8, "naics_s11": 3, "naics_s12": 21, "naics_s13": 0, "naics_s14": 17, "naics_s15": 1, "naics_s16": 3, "naics_s17": 6, "naics_s18": 19, "naics_s19": 12, "naics_s20": 0, "race1": 250, "race2": 17, "race3": 5, "race4": 15, "race5": 0, "race6": 3, "ethnicity1": 137, "ethnicity2": 153, "edu1": 58, "edu2": 54, "edu3": 69, "edu4": 46, "Shape_Length": 23020.575020461885, "Shape_Area": 22277215.7304634, "total_2021": 384, "total_2022": 290 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.242111966373102, 29.670200183256945 ], [ -95.241957966592807, 29.670027182603626 ], [ -95.241305966439754, 29.669303183141292 ], [ -95.240587966069924, 29.668508182807447 ], [ -95.239886965391449, 29.667728182222703 ], [ -95.239194965629252, 29.666961182218149 ], [ -95.238475965674496, 29.666162182652553 ], [ -95.237772964778074, 29.665368181728716 ], [ -95.237099965454505, 29.664656181915344 ], [ -95.236362965032782, 29.663874181853043 ], [ -95.235636965028505, 29.663104181382455 ], [ -95.235317964206885, 29.663341181397662 ], [ -95.235118963968873, 29.663489181971432 ], [ -95.234944964374534, 29.663613181534394 ], [ -95.234194963891667, 29.664145181908182 ], [ -95.234072964443612, 29.664203181861822 ], [ -95.23392396409163, 29.664275181586117 ], [ -95.233715963992751, 29.664374181724011 ], [ -95.233644964541313, 29.664300182033713 ], [ -95.233562964343591, 29.664213182300823 ], [ -95.232813964200417, 29.663424181895152 ], [ -95.23257396402424, 29.663136181341748 ], [ -95.231994963171587, 29.662439181305281 ], [ -95.231255963154737, 29.661685181315402 ], [ -95.230999963583713, 29.661423181448257 ], [ -95.230717963669136, 29.661134181433518 ], [ -95.23067396318821, 29.661093181035401 ], [ -95.230522962706857, 29.660953181746006 ], [ -95.230118963368596, 29.660535181197634 ], [ -95.229089962325006, 29.660548180996184 ], [ -95.227632961974564, 29.660543181712249 ], [ -95.226194961641653, 29.660592181498004 ], [ -95.224708962174617, 29.66059018116492 ], [ -95.223288961174489, 29.660628181993935 ], [ -95.221818960579924, 29.660634181195537 ], [ -95.220418960847866, 29.660635181696907 ], [ -95.218926959779083, 29.660692182007832 ], [ -95.217511959626464, 29.660711181978897 ], [ -95.216032959901057, 29.660745181987757 ], [ -95.2145399595329, 29.660740181727487 ], [ -95.213151959132361, 29.660788181702213 ], [ -95.213144958614109, 29.660459181866326 ], [ -95.212346958528656, 29.660497182342262 ], [ -95.212571958913784, 29.660807181679591 ], [ -95.213118959105728, 29.661535182254656 ], [ -95.213299959230113, 29.661767181795724 ], [ -95.214041959122738, 29.662745181899506 ], [ -95.214470958740776, 29.663268182730388 ], [ -95.214573958987145, 29.663394182427442 ], [ -95.214790959122325, 29.663722182689874 ], [ -95.215591959531878, 29.664656182213424 ], [ -95.216145959755735, 29.665445183135851 ], [ -95.216262960148526, 29.6656081826508 ], [ -95.216489959414204, 29.665936182475569 ], [ -95.216909960109177, 29.666538182992532 ], [ -95.217549960105401, 29.667285183445692 ], [ -95.217815960471938, 29.667648183617668 ], [ -95.218019959816687, 29.667927183297952 ], [ -95.21860596010518, 29.668668182988004 ], [ -95.219533960503895, 29.669960183533203 ], [ -95.221508960818923, 29.669934183802308 ], [ -95.224487962099857, 29.669886183668993 ], [ -95.225973962582387, 29.669859183577291 ], [ -95.226080962818202, 29.669864183340938 ], [ -95.227972962655699, 29.669832183638256 ], [ -95.22825496283167, 29.669828183473687 ], [ -95.228546963495788, 29.669823183491541 ], [ -95.229022962705997, 29.669815182867008 ], [ -95.230541963560682, 29.669789183598688 ], [ -95.232412964380188, 29.669757183531456 ], [ -95.232663964550156, 29.669778183573104 ], [ -95.232876964390925, 29.66984018335204 ], [ -95.233164964766232, 29.669918183346102 ], [ -95.233391963915523, 29.669763182785228 ], [ -95.233531964865676, 29.669754183115046 ], [ -95.234137964682475, 29.669746182998797 ], [ -95.235503964739664, 29.670288182836913 ], [ -95.235543964903869, 29.670318182986097 ], [ -95.236169965176742, 29.670328182883775 ], [ -95.236362965529011, 29.670358182889434 ], [ -95.237949965070015, 29.670341183228942 ], [ -95.239058966050877, 29.670324182848912 ], [ -95.239554965938453, 29.670381183413344 ], [ -95.239765966390735, 29.670324183467194 ], [ -95.240233966583773, 29.670259183236901 ], [ -95.240709966330058, 29.670235182777628 ], [ -95.241173966704963, 29.670221182561747 ], [ -95.241664966082567, 29.670206182934692 ], [ -95.24173396665249, 29.670205182614215 ], [ -95.242111966373102, 29.670200183256945 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 35, "Tract": "48201323702", "Area_SqMi": 0.40912423308293738, "total_2009": 521, "total_2010": 648, "total_2011": 681, "total_2012": 981, "total_2013": 897, "total_2014": 893, "total_2015": 423, "total_2016": 404, "total_2017": 371, "total_2018": 370, "total_2019": 333, "total_2020": 323, "age1": 103, "age2": 175, "age3": 52, "earn1": 77, "earn2": 139, "earn3": 114, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 2, "naics_s06": 4, "naics_s07": 70, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 13, "naics_s12": 43, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 109, "naics_s17": 0, "naics_s18": 37, "naics_s19": 45, "naics_s20": 0, "race1": 260, "race2": 45, "race3": 0, "race4": 21, "race5": 0, "race6": 4, "ethnicity1": 203, "ethnicity2": 127, "edu1": 36, "edu2": 56, "edu3": 79, "edu4": 56, "Shape_Length": 14190.113489763355, "Shape_Area": 11405683.395229239, "total_2021": 284, "total_2022": 330 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.183014950890481, 29.650809180474646 ], [ -95.183411950202569, 29.650807180832242 ], [ -95.182991950247427, 29.6501991805101 ], [ -95.182619950208533, 29.649503181045596 ], [ -95.182548950408858, 29.64936018067398 ], [ -95.182282949927441, 29.648760180897192 ], [ -95.181939950155424, 29.647943180642926 ], [ -95.181761950112943, 29.647555180450802 ], [ -95.181526950487765, 29.646937180446244 ], [ -95.181477950010134, 29.646728180263992 ], [ -95.181482949593843, 29.646448180171344 ], [ -95.181499949702527, 29.645659180307895 ], [ -95.181417949613163, 29.644715179839018 ], [ -95.181413949479094, 29.644169179540928 ], [ -95.181371949620768, 29.643166179362968 ], [ -95.181356949916349, 29.642676178866122 ], [ -95.181305949350147, 29.640912178866596 ], [ -95.181301949491498, 29.640784178814418 ], [ -95.180997949486624, 29.640794179139455 ], [ -95.18041694981288, 29.640814179196809 ], [ -95.180226948928379, 29.640802178946323 ], [ -95.179758948857938, 29.640786179030183 ], [ -95.179304949647005, 29.640699179345916 ], [ -95.178312948815872, 29.6403831791934 ], [ -95.177928949078819, 29.640334178635502 ], [ -95.17588394828681, 29.640370178739591 ], [ -95.171651947052865, 29.640443178922297 ], [ -95.171432947291194, 29.640496179103785 ], [ -95.171353947025736, 29.640515179567739 ], [ -95.171118947064485, 29.640639179086694 ], [ -95.171209947362371, 29.644315179690203 ], [ -95.171312947140621, 29.647758181027029 ], [ -95.171339947393889, 29.648653180774232 ], [ -95.171364947179129, 29.649523181229206 ], [ -95.171606947957798, 29.649521180936823 ], [ -95.172673947918256, 29.649511181194768 ], [ -95.173168947501367, 29.649507181165873 ], [ -95.175480948982297, 29.649486181045287 ], [ -95.176087949120245, 29.64947218066149 ], [ -95.176734948498876, 29.649544180444746 ], [ -95.176938948927287, 29.649563180478683 ], [ -95.17717194856678, 29.649593180565681 ], [ -95.177652949276109, 29.649754181305312 ], [ -95.178218949775996, 29.649943181134208 ], [ -95.17917094924104, 29.650262181155913 ], [ -95.179977949960758, 29.650550181179781 ], [ -95.180359949456061, 29.650679180567845 ], [ -95.180581949966083, 29.650724181101001 ], [ -95.180751949519674, 29.650757181402 ], [ -95.181135949987279, 29.650802180689904 ], [ -95.181169950214496, 29.650806181287557 ], [ -95.181548949869665, 29.650818180612482 ], [ -95.181705950611885, 29.650817180916903 ], [ -95.183014950890481, 29.650809180474646 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 36, "Tract": "48201340203", "Area_SqMi": 4.5433128191277072, "total_2009": 408, "total_2010": 388, "total_2011": 228, "total_2012": 215, "total_2013": 330, "total_2014": 307, "total_2015": 350, "total_2016": 336, "total_2017": 362, "total_2018": 402, "total_2019": 504, "total_2020": 534, "age1": 42, "age2": 111, "age3": 67, "earn1": 24, "earn2": 42, "earn3": 154, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 0, "naics_s06": 1, "naics_s07": 16, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 16, "naics_s12": 127, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 173, "race2": 24, "race3": 2, "race4": 17, "race5": 0, "race6": 4, "ethnicity1": 160, "ethnicity2": 60, "edu1": 31, "edu2": 40, "edu3": 49, "edu4": 58, "Shape_Length": 63960.705948815761, "Shape_Area": 126659785.43967646, "total_2021": 572, "total_2022": 220 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.12255093390209, 29.631201178535065 ], [ -95.122557933785103, 29.631106179194521 ], [ -95.12252993402187, 29.630722178591054 ], [ -95.122506933966093, 29.630520178971608 ], [ -95.122484934199164, 29.630360178460702 ], [ -95.122470933653489, 29.630259178401136 ], [ -95.122366933577027, 29.629719178728788 ], [ -95.122244933587666, 29.629245178834974 ], [ -95.122107933710822, 29.628815178736826 ], [ -95.121915933552472, 29.628316178128919 ], [ -95.12178893409677, 29.628031177836075 ], [ -95.121761933403292, 29.627972178152749 ], [ -95.121736933964968, 29.627920178682349 ], [ -95.121634933800365, 29.62771517854225 ], [ -95.121605933641789, 29.627659178510839 ], [ -95.121526933534881, 29.627513178492141 ], [ -95.121413933937959, 29.627312178122331 ], [ -95.12132793342407, 29.627168177778717 ], [ -95.121170933253083, 29.626921178129702 ], [ -95.121146934058473, 29.626883177717428 ], [ -95.121040934042952, 29.626726178145304 ], [ -95.120885933168211, 29.626510178139185 ], [ -95.120724933518673, 29.626297178115077 ], [ -95.120556933097419, 29.62608817814688 ], [ -95.120381932959873, 29.625883178238812 ], [ -95.120269933370778, 29.625757178109424 ], [ -95.120013933426975, 29.625486178169389 ], [ -95.119820933255298, 29.625295178194836 ], [ -95.119626932702673, 29.625113177406813 ], [ -95.119415933550442, 29.624926177651119 ], [ -95.119204933411567, 29.624749177380757 ], [ -95.118766932920821, 29.624411178002479 ], [ -95.118707933011621, 29.624369177311515 ], [ -95.118226932554919, 29.624042177395523 ], [ -95.117758932372695, 29.62376217772665 ], [ -95.117330932574205, 29.623530177707423 ], [ -95.116413932443677, 29.623111177649264 ], [ -95.115408931584838, 29.622757177131714 ], [ -95.115107932217541, 29.62267217737379 ], [ -95.114672932102877, 29.622563177817355 ], [ -95.114209931526446, 29.622466177464805 ], [ -95.114159931379803, 29.622471177441476 ], [ -95.114085932061244, 29.621190177010686 ], [ -95.114079931812668, 29.62109417721636 ], [ -95.114006931027689, 29.619816177159791 ], [ -95.114000931818566, 29.619708176929798 ], [ -95.113943931195266, 29.618727176175128 ], [ -95.113872931708997, 29.617487176500145 ], [ -95.113809930925711, 29.616400176167907 ], [ -95.113748931130033, 29.615327175894492 ], [ -95.113688930925534, 29.614284176087562 ], [ -95.113636930941453, 29.61338517537337 ], [ -95.113605930679967, 29.612852175635403 ], [ -95.11360093095486, 29.612759175664301 ], [ -95.113565931493099, 29.612150175073097 ], [ -95.113529930717888, 29.611532175415846 ], [ -95.113505930750321, 29.611112174694519 ], [ -95.113460930782153, 29.610331174690401 ], [ -95.113445931133782, 29.610068175159906 ], [ -95.113428931214557, 29.609769174810442 ], [ -95.113392931223515, 29.609146174328949 ], [ -95.113369930977029, 29.608747174500404 ], [ -95.113365930840828, 29.60867817458686 ], [ -95.11335893066196, 29.608546174699971 ], [ -95.113354930942677, 29.608416174935964 ], [ -95.113338930710015, 29.608233174543791 ], [ -95.113318930306889, 29.607548174446421 ], [ -95.113139930773016, 29.607554174639606 ], [ -95.112985930553819, 29.607559173948594 ], [ -95.112653930512465, 29.607569174325391 ], [ -95.109763929460513, 29.607718174129548 ], [ -95.108119928962395, 29.607790174942668 ], [ -95.108079929445182, 29.607188174764016 ], [ -95.1080219294047, 29.606280174246287 ], [ -95.107919928798495, 29.604698173589945 ], [ -95.107882929474101, 29.604112174124353 ], [ -95.107588929391298, 29.599633173165582 ], [ -95.107478928690043, 29.598715172345212 ], [ -95.107141928877368, 29.597171172729716 ], [ -95.106870929055219, 29.596286172296963 ], [ -95.106522928903416, 29.595401172297993 ], [ -95.106070928064455, 29.594411172108341 ], [ -95.105255928375726, 29.592960171856493 ], [ -95.104761928022981, 29.592262171271575 ], [ -95.103949927230246, 29.591224170891415 ], [ -95.102902927723335, 29.590122171105563 ], [ -95.102546927545745, 29.589748171002071 ], [ -95.102664926918393, 29.588684170485209 ], [ -95.102502926742048, 29.587345170522006 ], [ -95.102524926666518, 29.586976170419952 ], [ -95.102511927164741, 29.585816170061815 ], [ -95.102515927525701, 29.585775169837209 ], [ -95.102639927105201, 29.585325170328968 ], [ -95.102858927507882, 29.584782169884601 ], [ -95.102951927122092, 29.584551169694567 ], [ -95.102997927495295, 29.584437169876992 ], [ -95.10303492695688, 29.584342170264758 ], [ -95.103056926790643, 29.584305170121258 ], [ -95.10313492667197, 29.584166169518827 ], [ -95.103348926857507, 29.583784169403394 ], [ -95.103441927595512, 29.583604170176518 ], [ -95.103482927116829, 29.583528169379299 ], [ -95.103534927262842, 29.583427169868379 ], [ -95.103566926869618, 29.583368169685951 ], [ -95.103503927342288, 29.583324169444019 ], [ -95.103428927519744, 29.583270169822654 ], [ -95.103412926855583, 29.583258169842559 ], [ -95.102805927467443, 29.582823169491117 ], [ -95.10242092736263, 29.58254716916575 ], [ -95.102326927114277, 29.582456169319528 ], [ -95.102221927084642, 29.582331169063234 ], [ -95.102106927091398, 29.582171169242613 ], [ -95.102023927110153, 29.582021169378219 ], [ -95.101924926746037, 29.581793169293263 ], [ -95.101875926613573, 29.581610168979253 ], [ -95.101858926331644, 29.581502169375472 ], [ -95.101832927066511, 29.581331169207481 ], [ -95.101837926382572, 29.581092169176479 ], [ -95.101865926137748, 29.580895169394129 ], [ -95.101825926137465, 29.580630168738509 ], [ -95.101713927111319, 29.580379168701647 ], [ -95.101491926188473, 29.580122169011613 ], [ -95.101338926717474, 29.580028169347255 ], [ -95.101147926096701, 29.579909168897856 ], [ -95.100898926023845, 29.579830169245643 ], [ -95.100435926038827, 29.579797168852991 ], [ -95.097826925574452, 29.579687169399765 ], [ -95.097620925498731, 29.579629169037677 ], [ -95.097409925791865, 29.579569169067643 ], [ -95.097108925434213, 29.579332168620088 ], [ -95.096883925354405, 29.57918316895497 ], [ -95.096599924746798, 29.579057168557309 ], [ -95.096530925098349, 29.579019169208632 ], [ -95.096047925318061, 29.57897916908064 ], [ -95.095643925073531, 29.579048168914877 ], [ -95.095298924614653, 29.579055169416343 ], [ -95.095108925189209, 29.579059169076395 ], [ -95.094264924794743, 29.578904168987862 ], [ -95.093651924935799, 29.579117169348059 ], [ -95.093218924235586, 29.579676168968618 ], [ -95.09305092444221, 29.579778169203937 ], [ -95.092817924372568, 29.579846169436628 ], [ -95.092532924682899, 29.579854169110856 ], [ -95.092412923910175, 29.57981816951748 ], [ -95.091562924355628, 29.579566169714703 ], [ -95.091239924239147, 29.579519169360751 ], [ -95.090999924040432, 29.579616169416397 ], [ -95.090754923833032, 29.579807169024495 ], [ -95.090680924153105, 29.580082169489703 ], [ -95.09085292422489, 29.580894169331355 ], [ -95.090791924321579, 29.581139169512831 ], [ -95.090483924056997, 29.58168516970613 ], [ -95.089698923663462, 29.582605170235226 ], [ -95.089617923474066, 29.582766170394393 ], [ -95.089619923943076, 29.582946170358674 ], [ -95.089679923944345, 29.583078169947576 ], [ -95.090141924065037, 29.583427170552405 ], [ -95.090426923901688, 29.58402017021395 ], [ -95.090440924238592, 29.584414170067721 ], [ -95.090277923399853, 29.585116170046447 ], [ -95.090284923795068, 29.585258170118024 ], [ -95.090166924346448, 29.585637170223869 ], [ -95.089986923782519, 29.585915170655621 ], [ -95.089199923215517, 29.586426170438923 ], [ -95.088967923539116, 29.586846170732489 ], [ -95.088380923749867, 29.587393171082709 ], [ -95.087778923026491, 29.587238170988531 ], [ -95.087397922959724, 29.587030170724436 ], [ -95.087181923379589, 29.586728171128115 ], [ -95.087119922825849, 29.586017171161014 ], [ -95.086998923516816, 29.585828171191519 ], [ -95.086735922951675, 29.585604170508557 ], [ -95.086421923227292, 29.585535170757698 ], [ -95.08613892329474, 29.585573170842146 ], [ -95.085957922645548, 29.585659170370821 ], [ -95.08580592245761, 29.585780170403361 ], [ -95.085663922566212, 29.585998171135813 ], [ -95.085552922875152, 29.586528170572063 ], [ -95.085632923103574, 29.587850171341799 ], [ -95.085584923176441, 29.588025171018035 ], [ -95.085447922787694, 29.588157171251769 ], [ -95.085102922859519, 29.588272170861327 ], [ -95.084900923126881, 29.588293171112657 ], [ -95.084657922604535, 29.5882631710023 ], [ -95.084370922573768, 29.588128171368968 ], [ -95.084189922739839, 29.587982171176346 ], [ -95.084024922418152, 29.587734171208666 ], [ -95.083786922130386, 29.587048170916596 ], [ -95.083543922531206, 29.586863170825751 ], [ -95.083389921818494, 29.586904171391435 ], [ -95.083006922398567, 29.587367171431122 ], [ -95.082684922364379, 29.587517171006201 ], [ -95.082498922185124, 29.587603171248833 ], [ -95.082653922343411, 29.588562171539966 ], [ -95.082621921921486, 29.588812171260976 ], [ -95.082506921581199, 29.5890021717845 ], [ -95.082236922313257, 29.589317171929942 ], [ -95.08175292164556, 29.58940017150822 ], [ -95.080832922100186, 29.589715171594822 ], [ -95.080094921804815, 29.590279171604237 ], [ -95.079724921448673, 29.590667171631097 ], [ -95.079480921555145, 29.591040171801161 ], [ -95.079371921402469, 29.591493172227423 ], [ -95.079395921348009, 29.591812172515628 ], [ -95.079650921303198, 29.592091172116348 ], [ -95.079878921719938, 29.592167172213465 ], [ -95.080183921109963, 29.591932171814655 ], [ -95.080408921671733, 29.59184317186023 ], [ -95.080530921662941, 29.591824171898168 ], [ -95.080842922193156, 29.591914171892565 ], [ -95.081463922169235, 29.592265172418948 ], [ -95.082436921696015, 29.593085172213023 ], [ -95.083560922085667, 29.593727172363401 ], [ -95.08404992242906, 29.593750172557627 ], [ -95.084397922394004, 29.593394172208239 ], [ -95.084738923027714, 29.592623172131468 ], [ -95.085011922309491, 29.592355172223261 ], [ -95.08519592328598, 29.59227617229601 ], [ -95.085440922717964, 29.592297172064857 ], [ -95.085749922959536, 29.59247617209952 ], [ -95.085954922727908, 29.592822172386036 ], [ -95.086106923014341, 29.592878172088565 ], [ -95.086349923114341, 29.593071172545191 ], [ -95.086975923740255, 29.593238171912958 ], [ -95.087625923574947, 29.593334171820796 ], [ -95.088203923572181, 29.593330172381943 ], [ -95.089662923949447, 29.59315317198844 ], [ -95.089860924114987, 29.593278172313937 ], [ -95.090018924387152, 29.593609171819963 ], [ -95.090021924254685, 29.593860172134818 ], [ -95.089883923907166, 29.594679172426183 ], [ -95.089941924142593, 29.594998172220148 ], [ -95.09044192432728, 29.595777172575005 ], [ -95.090558924173237, 29.59592417280599 ], [ -95.090805924119394, 29.596109172762048 ], [ -95.091069924571386, 29.596455173144772 ], [ -95.09119892427087, 29.596625173085904 ], [ -95.091409925081678, 29.596828172925807 ], [ -95.091693925049356, 29.597102173292228 ], [ -95.092127925079666, 29.597628173148365 ], [ -95.092247925137997, 29.597773173045031 ], [ -95.09235892512622, 29.598118172949313 ], [ -95.092326925023144, 29.598401172904836 ], [ -95.092009924968252, 29.598625173598631 ], [ -95.091817924463172, 29.598684173105337 ], [ -95.090623924930469, 29.598701173221379 ], [ -95.090015924141525, 29.598780173477891 ], [ -95.089836924380961, 29.598922172909663 ], [ -95.089746924442679, 29.599343173111912 ], [ -95.089516924063332, 29.59951917387945 ], [ -95.089502924031564, 29.599533173790274 ], [ -95.088834923744827, 29.600943173891391 ], [ -95.088556924416494, 29.601424173703847 ], [ -95.086901924105135, 29.603389174359961 ], [ -95.086220923860623, 29.604694174647332 ], [ -95.085859923270874, 29.605912175195883 ], [ -95.085675923276497, 29.608390175167386 ], [ -95.085599923756206, 29.608669175084906 ], [ -95.085533923997474, 29.608839175196749 ], [ -95.085071923404243, 29.609436175386509 ], [ -95.084756923085749, 29.609940176181912 ], [ -95.084596923267867, 29.610232175421164 ], [ -95.084529923491132, 29.610476175833455 ], [ -95.08447292353155, 29.61119617571525 ], [ -95.084393923202839, 29.612195176081187 ], [ -95.084249923139197, 29.613115176202538 ], [ -95.084379923673211, 29.613214176463096 ], [ -95.088125924707185, 29.61606417722362 ], [ -95.08825592519112, 29.616166176946148 ], [ -95.088465924614283, 29.616333176632086 ], [ -95.08879692496329, 29.616606176710821 ], [ -95.08927492535031, 29.617018176756964 ], [ -95.089734924793532, 29.617438177321031 ], [ -95.090188925251041, 29.617878176842144 ], [ -95.090661925069668, 29.618360177731795 ], [ -95.091200925282749, 29.618889177470471 ], [ -95.09157092545054, 29.619233177386715 ], [ -95.091947926183948, 29.619570177464379 ], [ -95.092333925679213, 29.619901177591764 ], [ -95.092727925879515, 29.620225178070452 ], [ -95.093128925669532, 29.620541177318572 ], [ -95.093232925782871, 29.620619178053559 ], [ -95.097955927567028, 29.624161178359905 ], [ -95.098639927227111, 29.62467317867009 ], [ -95.099954928373251, 29.625859178171336 ], [ -95.101453929048986, 29.627476178835945 ], [ -95.103502929190086, 29.629833179196876 ], [ -95.105432930227607, 29.632038180030367 ], [ -95.105834930169109, 29.632505180090355 ], [ -95.106281929857957, 29.63297618019643 ], [ -95.106558929864008, 29.633271179996918 ], [ -95.106642929964025, 29.633360179859654 ], [ -95.106756930657113, 29.63348018035833 ], [ -95.107313930559386, 29.634047179872898 ], [ -95.108240930283017, 29.634911179767812 ], [ -95.108797931108086, 29.63486217993459 ], [ -95.109989931182497, 29.634782180350793 ], [ -95.111536931078348, 29.634628179996259 ], [ -95.112514931377703, 29.634529179989219 ], [ -95.114237932034911, 29.634040180083467 ], [ -95.115677932648282, 29.633632179190197 ], [ -95.115889932161735, 29.633597179500704 ], [ -95.117759933149983, 29.633565179575609 ], [ -95.121602933692245, 29.633500179522354 ], [ -95.122057934538091, 29.633492178998434 ], [ -95.122382934475965, 29.633482179401252 ], [ -95.12242593445805, 29.632899179519164 ], [ -95.122479934489675, 29.632165178909158 ], [ -95.12255093390209, 29.631201178535065 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 37, "Tract": "48201342002", "Area_SqMi": 1.4067406543263135, "total_2009": 871, "total_2010": 811, "total_2011": 1085, "total_2012": 986, "total_2013": 1149, "total_2014": 1199, "total_2015": 1779, "total_2016": 1932, "total_2017": 1976, "total_2018": 2236, "total_2019": 2202, "total_2020": 2104, "age1": 857, "age2": 985, "age3": 313, "earn1": 680, "earn2": 770, "earn3": 705, "naics_s01": 0, "naics_s02": 0, "naics_s03": 17, "naics_s04": 23, "naics_s05": 106, "naics_s06": 41, "naics_s07": 574, "naics_s08": 0, "naics_s09": 20, "naics_s10": 10, "naics_s11": 107, "naics_s12": 9, "naics_s13": 77, "naics_s14": 389, "naics_s15": 22, "naics_s16": 299, "naics_s17": 0, "naics_s18": 425, "naics_s19": 36, "naics_s20": 0, "race1": 1647, "race2": 349, "race3": 25, "race4": 98, "race5": 2, "race6": 34, "ethnicity1": 1189, "ethnicity2": 966, "edu1": 306, "edu2": 362, "edu3": 389, "edu4": 241, "Shape_Length": 27997.731506659693, "Shape_Area": 39217521.781925224, "total_2021": 2043, "total_2022": 2155 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.17006394610236, 29.630799176989317 ], [ -95.170314946584639, 29.630586177221087 ], [ -95.16961594630385, 29.630595176786137 ], [ -95.168819946287016, 29.630620177253729 ], [ -95.166999945590362, 29.630676177068295 ], [ -95.165669945056507, 29.630709177197911 ], [ -95.165495945577135, 29.630710177458347 ], [ -95.164882944786029, 29.630727177565198 ], [ -95.162631944480665, 29.630775177740457 ], [ -95.161809944163693, 29.630797177473681 ], [ -95.160691943753136, 29.630825177202219 ], [ -95.16065794361451, 29.630826177817145 ], [ -95.160532944054268, 29.630829177820637 ], [ -95.159850943865123, 29.630847177710418 ], [ -95.158981943049156, 29.630869177176777 ], [ -95.157484942975003, 29.630908177932039 ], [ -95.156006942652851, 29.630935177600801 ], [ -95.154503942728994, 29.630970177566329 ], [ -95.154005942020589, 29.630981177697883 ], [ -95.151666941756574, 29.631028177985087 ], [ -95.15063494146753, 29.631051178052971 ], [ -95.150007940942771, 29.631061177853052 ], [ -95.147640940515984, 29.631113178319801 ], [ -95.147120940387197, 29.631124177652897 ], [ -95.146517940014661, 29.631140178385614 ], [ -95.145930940224503, 29.631152178552288 ], [ -95.144941940032552, 29.631173178413395 ], [ -95.143315939292918, 29.63120117826594 ], [ -95.142741939216606, 29.631226178576206 ], [ -95.142776939951204, 29.633524178660849 ], [ -95.142791939429344, 29.63448917846954 ], [ -95.142841939449411, 29.637394179593564 ], [ -95.142870939426516, 29.638730179477342 ], [ -95.142920939695742, 29.639519179854158 ], [ -95.14293493945263, 29.640430180205904 ], [ -95.143232940069538, 29.64141417991765 ], [ -95.14337394041506, 29.641878180231338 ], [ -95.143384939611096, 29.642270180768168 ], [ -95.14341393975657, 29.644444180802584 ], [ -95.143418939929219, 29.645610181135268 ], [ -95.143485939839294, 29.647375181497853 ], [ -95.143575940471649, 29.649732182108355 ], [ -95.144126940710933, 29.649712181996229 ], [ -95.148488941451902, 29.649655181385128 ], [ -95.149565941523306, 29.649631181522917 ], [ -95.150435942584622, 29.649617181785487 ], [ -95.151842942325047, 29.649594181578081 ], [ -95.152107942182724, 29.649590181271371 ], [ -95.155508943760722, 29.64968118148278 ], [ -95.156146944023163, 29.649673182014258 ], [ -95.15614694313534, 29.649592181338264 ], [ -95.156183943128681, 29.649421181552981 ], [ -95.156264943774005, 29.648881181568665 ], [ -95.156368943801439, 29.648312181376767 ], [ -95.156442943241899, 29.6479051811841 ], [ -95.156619944141681, 29.647224180880286 ], [ -95.156791944026168, 29.646463180673035 ], [ -95.156952943150031, 29.645995180975142 ], [ -95.157751943270313, 29.643872180095599 ], [ -95.158181943571762, 29.642884180226073 ], [ -95.158392943967527, 29.642401179577213 ], [ -95.158712944119046, 29.64186417960374 ], [ -95.159060943480767, 29.641354180183903 ], [ -95.159504944105549, 29.64076817925752 ], [ -95.159862944324175, 29.640356179938745 ], [ -95.160600943898288, 29.639596178895996 ], [ -95.160735943880326, 29.639474179190664 ], [ -95.160840944, 29.639390179274134 ], [ -95.161047944179046, 29.639213179424161 ], [ -95.161151944466127, 29.639105179058785 ], [ -95.161578944701716, 29.638700179296162 ], [ -95.162813944476667, 29.637593178507981 ], [ -95.163245944387683, 29.637191178713092 ], [ -95.163812945166598, 29.636660178642966 ], [ -95.164063945214778, 29.636428178258306 ], [ -95.16511594565641, 29.635436178067394 ], [ -95.166134945035466, 29.63449117839243 ], [ -95.167318946199785, 29.633385178202282 ], [ -95.1675279458115, 29.633189178063834 ], [ -95.167645945729575, 29.633078177673962 ], [ -95.17006394610236, 29.630799176989317 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 38, "Tract": "48201534001", "Area_SqMi": 1.5009248852337786, "total_2009": 592, "total_2010": 625, "total_2011": 1792, "total_2012": 814, "total_2013": 974, "total_2014": 1190, "total_2015": 1362, "total_2016": 1333, "total_2017": 1250, "total_2018": 1416, "total_2019": 1438, "total_2020": 1391, "age1": 389, "age2": 714, "age3": 326, "earn1": 240, "earn2": 595, "earn3": 594, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 112, "naics_s05": 142, "naics_s06": 99, "naics_s07": 481, "naics_s08": 49, "naics_s09": 0, "naics_s10": 49, "naics_s11": 47, "naics_s12": 35, "naics_s13": 0, "naics_s14": 129, "naics_s15": 0, "naics_s16": 33, "naics_s17": 0, "naics_s18": 151, "naics_s19": 96, "naics_s20": 0, "race1": 1055, "race2": 210, "race3": 17, "race4": 121, "race5": 1, "race6": 25, "ethnicity1": 837, "ethnicity2": 592, "edu1": 292, "edu2": 259, "edu3": 287, "edu4": 202, "Shape_Length": 30113.120820060583, "Shape_Area": 41843216.941703118, "total_2021": 1331, "total_2022": 1429 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.49582004199668, 29.913604224302979 ], [ -95.495865042496533, 29.912090223924551 ], [ -95.495782042484947, 29.909908223508953 ], [ -95.49575804255791, 29.908690223116988 ], [ -95.495761041936575, 29.907848223270356 ], [ -95.495751041941531, 29.906849222736216 ], [ -95.495751042030264, 29.906341222280037 ], [ -95.495753041998569, 29.905507222488595 ], [ -95.495754042232264, 29.904760222098478 ], [ -95.495755041833547, 29.903861222265885 ], [ -95.495748042311334, 29.903254222123021 ], [ -95.495741041566902, 29.902803221445705 ], [ -95.495704041422215, 29.901807222036879 ], [ -95.495694042086726, 29.899686221625199 ], [ -95.495577042097466, 29.899708221354608 ], [ -95.495486041767876, 29.899726220935769 ], [ -95.495009041301074, 29.899723221690731 ], [ -95.494908042012227, 29.899727221248046 ], [ -95.494841041111584, 29.899726221166187 ], [ -95.494547041765415, 29.899722221060852 ], [ -95.494274041933551, 29.899713221563864 ], [ -95.494139041160523, 29.899717221288196 ], [ -95.4938610413855, 29.89970622103484 ], [ -95.493724040892062, 29.899707221104958 ], [ -95.493583041008421, 29.899702221651655 ], [ -95.492878040887518, 29.899698221117649 ], [ -95.492442040886189, 29.899702221629848 ], [ -95.49170804037503, 29.89969922147861 ], [ -95.490529040856984, 29.899698221631308 ], [ -95.490090040575637, 29.899690221715741 ], [ -95.489225040293476, 29.899688221267155 ], [ -95.48850803989788, 29.89969322120881 ], [ -95.48837603969173, 29.89970122178061 ], [ -95.488085040359721, 29.899711221273499 ], [ -95.487925040024578, 29.899711221748539 ], [ -95.487092039662485, 29.899742221906017 ], [ -95.486953039781895, 29.899742221313161 ], [ -95.486814039047928, 29.899731221459188 ], [ -95.486563039611525, 29.899749221246385 ], [ -95.486307039570249, 29.899740221900441 ], [ -95.485946039114964, 29.899741221623177 ], [ -95.485828039398541, 29.899732221192941 ], [ -95.485380039503028, 29.899744221843687 ], [ -95.485184038947736, 29.899748221484153 ], [ -95.485073038667593, 29.899724221973308 ], [ -95.484929039129838, 29.899731221580023 ], [ -95.484814039293767, 29.899726221544128 ], [ -95.484537038655802, 29.899724221648562 ], [ -95.484239038871024, 29.899740221261577 ], [ -95.482996038538005, 29.899739221314778 ], [ -95.482530038515719, 29.899745222174982 ], [ -95.48218703815354, 29.899734221402731 ], [ -95.482034038383532, 29.899740221969981 ], [ -95.481232038557664, 29.899750221464892 ], [ -95.481109038173756, 29.899748221716859 ], [ -95.480993038222849, 29.899753221892528 ], [ -95.480441037727886, 29.899755221730985 ], [ -95.48035203792648, 29.899750221959671 ], [ -95.480066038157844, 29.899747222218664 ], [ -95.479992038194595, 29.89975222207514 ], [ -95.479814037241795, 29.899743221924822 ], [ -95.479716037952144, 29.899750222225698 ], [ -95.479355038102881, 29.899742221539032 ], [ -95.479255037140319, 29.899733221802325 ], [ -95.478064037649006, 29.89972622224446 ], [ -95.477748036835592, 29.899721221548948 ], [ -95.477281037558541, 29.899729222358825 ], [ -95.476565036411728, 29.899730222331705 ], [ -95.476430036368768, 29.899734222334935 ], [ -95.476204036436542, 29.899730221958677 ], [ -95.476019036473005, 29.899722221697711 ], [ -95.475994036541039, 29.899721222163649 ], [ -95.475899036819527, 29.899731221991185 ], [ -95.475600036513214, 29.899729221594971 ], [ -95.474797036411545, 29.899726222072168 ], [ -95.47467003626268, 29.899719221937687 ], [ -95.474491036537998, 29.899733222021034 ], [ -95.473858035950499, 29.899723221933613 ], [ -95.473190036361913, 29.899722222217569 ], [ -95.47301403588925, 29.899716221639338 ], [ -95.472845036017389, 29.899720222469398 ], [ -95.47267503622389, 29.899734222027398 ], [ -95.472517035476699, 29.89973222222951 ], [ -95.472354035883441, 29.899724222097333 ], [ -95.472212036292603, 29.899729221677728 ], [ -95.471895035998628, 29.899723222353305 ], [ -95.471754035903729, 29.899726222284727 ], [ -95.471588035823743, 29.899719221841874 ], [ -95.471143035966506, 29.899724221710716 ], [ -95.470853035183325, 29.899723221842375 ], [ -95.47043203544159, 29.899711221790241 ], [ -95.470164035256772, 29.899687222181591 ], [ -95.470034035350395, 29.899662222034845 ], [ -95.46989903470346, 29.899631222369422 ], [ -95.469773035365165, 29.899609221864505 ], [ -95.469519034833397, 29.899531221754277 ], [ -95.469395034869464, 29.899483222505761 ], [ -95.46927403534761, 29.899428222052645 ], [ -95.469174035044304, 29.899376221903207 ], [ -95.468990034520075, 29.899279222394021 ], [ -95.468621035019453, 29.899089221925692 ], [ -95.468589034450645, 29.899075222481393 ], [ -95.468432034599374, 29.89900822229864 ], [ -95.468115034568939, 29.898895221839538 ], [ -95.467992035160094, 29.898863221895933 ], [ -95.467871034194289, 29.898850221938392 ], [ -95.467742035002857, 29.898826222483041 ], [ -95.467342034490144, 29.898782221955628 ], [ -95.467203034508984, 29.89877522192559 ], [ -95.466647034515105, 29.898764221843845 ], [ -95.466501034788763, 29.898757221802246 ], [ -95.466376034570743, 29.898758222004432 ], [ -95.466241033916546, 29.898754221853537 ], [ -95.465988033915067, 29.898755222000144 ], [ -95.465858034101075, 29.898740222231432 ], [ -95.465731034060312, 29.898744221775477 ], [ -95.465616033617238, 29.898739222369453 ], [ -95.465116033693278, 29.898737222291089 ], [ -95.46482403391029, 29.89874422235096 ], [ -95.464739033584451, 29.898736222513374 ], [ -95.464573033686904, 29.898750222408736 ], [ -95.464298033252874, 29.898797222330305 ], [ -95.464051033360803, 29.8989082223314 ], [ -95.463834033255736, 29.899002222096794 ], [ -95.463711033506215, 29.899102222586244 ], [ -95.463552034041967, 29.899215222181105 ], [ -95.464229033352041, 29.899916222785052 ], [ -95.464806033716357, 29.9005342225161 ], [ -95.46580603474969, 29.901594222285922 ], [ -95.467264034292924, 29.903141223281459 ], [ -95.467506034934971, 29.903342222589949 ], [ -95.468259035434698, 29.903852223494148 ], [ -95.468757035564465, 29.904194222705343 ], [ -95.469871035402221, 29.904868223512015 ], [ -95.470457035078468, 29.9052502236366 ], [ -95.470867035677045, 29.905513222905373 ], [ -95.472350035967153, 29.906462223894074 ], [ -95.473372036455373, 29.907117223527141 ], [ -95.474566036393895, 29.907883223324475 ], [ -95.475965037564123, 29.908776223452634 ], [ -95.476645037788373, 29.909209224086219 ], [ -95.478296037506922, 29.91023922382427 ], [ -95.478742038245699, 29.910517223718905 ], [ -95.479999038001097, 29.911301224558212 ], [ -95.481596038487581, 29.912315224024841 ], [ -95.482655038834139, 29.912979223969515 ], [ -95.48338203955727, 29.913435224264273 ], [ -95.48422703933241, 29.913965224193685 ], [ -95.485114040051869, 29.91452522506502 ], [ -95.487392040241204, 29.915965225018279 ], [ -95.487456040821883, 29.916005225196439 ], [ -95.489087041094407, 29.917019224758828 ], [ -95.490487041536113, 29.917890225038242 ], [ -95.491334041631859, 29.918429225086314 ], [ -95.492562041790066, 29.919209225485606 ], [ -95.493851042421326, 29.919998225028099 ], [ -95.493948042269096, 29.919844225812234 ], [ -95.494297042727752, 29.919315225084031 ], [ -95.49440404190176, 29.919166225339531 ], [ -95.494506042149808, 29.919023225359417 ], [ -95.49477004284067, 29.918631224719338 ], [ -95.494873042249068, 29.918477225377689 ], [ -95.494970042290959, 29.918332225189872 ], [ -95.495077042900419, 29.918158224913888 ], [ -95.495097042970784, 29.918126224957728 ], [ -95.495198041975527, 29.917947225439917 ], [ -95.495312042174362, 29.917724224531568 ], [ -95.495398042135363, 29.9175332249288 ], [ -95.495507042120934, 29.917248224991017 ], [ -95.495593042330881, 29.916966224849926 ], [ -95.495664042947467, 29.916686224863458 ], [ -95.495699042551848, 29.916508224757418 ], [ -95.495715042458954, 29.916429225087839 ], [ -95.495749042523528, 29.916186224727884 ], [ -95.495755042978345, 29.916131224783353 ], [ -95.495774042042328, 29.915821224881892 ], [ -95.495775042077099, 29.915617224099222 ], [ -95.495775042555465, 29.915547224322133 ], [ -95.495764042725781, 29.915313224777698 ], [ -95.495745042231448, 29.914915224316484 ], [ -95.49574104257033, 29.914820224717197 ], [ -95.495745042743707, 29.914758224349598 ], [ -95.495744042281984, 29.91473222426659 ], [ -95.495743042855935, 29.914706224210402 ], [ -95.495739042135042, 29.914645224407934 ], [ -95.495736042658251, 29.914336224089126 ], [ -95.495734042865564, 29.914100224618327 ], [ -95.495732042363073, 29.913853224286147 ], [ -95.495814042042781, 29.913706224217584 ], [ -95.49582004199668, 29.913604224302979 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 39, "Tract": "48201550603", "Area_SqMi": 0.67312183005997872, "total_2009": 798, "total_2010": 750, "total_2011": 786, "total_2012": 801, "total_2013": 821, "total_2014": 832, "total_2015": 743, "total_2016": 785, "total_2017": 670, "total_2018": 615, "total_2019": 590, "total_2020": 587, "age1": 181, "age2": 292, "age3": 188, "earn1": 253, "earn2": 281, "earn3": 127, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 1, "naics_s07": 381, "naics_s08": 2, "naics_s09": 0, "naics_s10": 16, "naics_s11": 6, "naics_s12": 10, "naics_s13": 18, "naics_s14": 1, "naics_s15": 0, "naics_s16": 50, "naics_s17": 0, "naics_s18": 114, "naics_s19": 56, "naics_s20": 0, "race1": 409, "race2": 104, "race3": 5, "race4": 137, "race5": 0, "race6": 6, "ethnicity1": 376, "ethnicity2": 285, "edu1": 189, "edu2": 105, "edu3": 120, "edu4": 66, "Shape_Length": 20478.766557402887, "Shape_Area": 18765484.562546205, "total_2021": 607, "total_2022": 661 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.480318041093142, 29.964327235353711 ], [ -95.48050304034038, 29.964321234572402 ], [ -95.480026041054188, 29.963697234545165 ], [ -95.479608040401828, 29.963151234528322 ], [ -95.47934204059267, 29.96280123514104 ], [ -95.4791890408694, 29.962602234590364 ], [ -95.479024040077064, 29.96238723493623 ], [ -95.47874703990513, 29.962021234432566 ], [ -95.478308039889882, 29.961450234294396 ], [ -95.477999040525745, 29.961045234139299 ], [ -95.477828039932419, 29.960822234636979 ], [ -95.477784039904577, 29.960772234343171 ], [ -95.477691039428464, 29.960646234451353 ], [ -95.477239040092357, 29.960073233883858 ], [ -95.47717803928073, 29.959973234495948 ], [ -95.477089039774853, 29.95987723451249 ], [ -95.477034039833924, 29.959790234476774 ], [ -95.476601039259009, 29.959233233602703 ], [ -95.476129039570324, 29.958612234160782 ], [ -95.476003038924318, 29.958450233645777 ], [ -95.475620039465966, 29.957958234187 ], [ -95.475432039317766, 29.957711233717845 ], [ -95.47533203921769, 29.957581233836208 ], [ -95.475261039256551, 29.957496233645209 ], [ -95.475149038726656, 29.957346234064214 ], [ -95.474915039192254, 29.957039233355435 ], [ -95.474638039013115, 29.956668233439697 ], [ -95.474506039114644, 29.95648523393951 ], [ -95.474371038529739, 29.956308233510644 ], [ -95.474040039220725, 29.955859233285238 ], [ -95.473946038568286, 29.955737233232174 ], [ -95.473911038280903, 29.955697233821642 ], [ -95.473865039257419, 29.95562923340821 ], [ -95.473846039222849, 29.955602233547882 ], [ -95.473738039169717, 29.955465233815715 ], [ -95.473198038681929, 29.954781233703002 ], [ -95.473004038403843, 29.954527233642121 ], [ -95.47281703860908, 29.954287233076283 ], [ -95.472776038080013, 29.954235232837039 ], [ -95.472700038279683, 29.954136233266894 ], [ -95.472547038650291, 29.95393423270442 ], [ -95.472503038307266, 29.953876233478493 ], [ -95.472295037934202, 29.9536002329626 ], [ -95.471717038492997, 29.952852233144512 ], [ -95.471112037726485, 29.952057232345279 ], [ -95.470855038154269, 29.951725232673461 ], [ -95.470310038074473, 29.95101023260743 ], [ -95.469699037275745, 29.950206232074187 ], [ -95.469567037305225, 29.950033232071423 ], [ -95.469525037668944, 29.949977232104711 ], [ -95.469396036983596, 29.949810232669538 ], [ -95.469221037611845, 29.949583232262949 ], [ -95.468385037022301, 29.948469231815533 ], [ -95.468041036424083, 29.948011231733844 ], [ -95.468004036920249, 29.947964231612474 ], [ -95.467776036610161, 29.947667232285188 ], [ -95.467483037212006, 29.947292231600962 ], [ -95.467365036346806, 29.947138232319254 ], [ -95.467149036489673, 29.94684923218627 ], [ -95.466778036526279, 29.946323231421086 ], [ -95.466397036750863, 29.945822231583183 ], [ -95.466258036211769, 29.945843231661758 ], [ -95.466013036577024, 29.945858231696466 ], [ -95.465334036388938, 29.945865231377535 ], [ -95.464788036083974, 29.945867232097612 ], [ -95.464513035638589, 29.945869231821213 ], [ -95.464610036348631, 29.945949231450719 ], [ -95.464611035676114, 29.946289231774507 ], [ -95.464613036203289, 29.946408231664883 ], [ -95.464629035510356, 29.947292231916499 ], [ -95.464644035812995, 29.948001231879552 ], [ -95.464649035716931, 29.948182232078665 ], [ -95.464658035777418, 29.948898232264956 ], [ -95.464675036475015, 29.949530232100386 ], [ -95.464684036039429, 29.949791232182527 ], [ -95.464691036203618, 29.950124232528509 ], [ -95.464694036535249, 29.950256232428959 ], [ -95.464703035884156, 29.950719233172659 ], [ -95.464704036194391, 29.950984233089269 ], [ -95.46472203656495, 29.951696232812914 ], [ -95.464743036398232, 29.953151233315616 ], [ -95.464760036589368, 29.953950232965742 ], [ -95.464768036292483, 29.954449233652671 ], [ -95.464774036797323, 29.954812233576597 ], [ -95.464786036410331, 29.955479233691978 ], [ -95.464798036767419, 29.956009234175056 ], [ -95.464807036661938, 29.95630523425945 ], [ -95.464832036495267, 29.95775623456024 ], [ -95.464838036338861, 29.958221234667825 ], [ -95.464864036305144, 29.959518234572773 ], [ -95.464867036613001, 29.959653234236125 ], [ -95.464874036976468, 29.960018234681311 ], [ -95.464894036950284, 29.96054323428795 ], [ -95.464933036997607, 29.961305234530656 ], [ -95.464937036665702, 29.961422234842736 ], [ -95.464958036479459, 29.961957234987601 ], [ -95.465006036778377, 29.963622235592606 ], [ -95.465009037147624, 29.963968235458172 ], [ -95.465010037031206, 29.964037235649212 ], [ -95.46502503737193, 29.964565235728664 ], [ -95.465028036403453, 29.96464723523555 ], [ -95.464974036745403, 29.964749235575802 ], [ -95.466262037549143, 29.964716235867719 ], [ -95.467446037149699, 29.964674235558629 ], [ -95.469649037669612, 29.964625235541039 ], [ -95.470560037827184, 29.96460323560343 ], [ -95.470959038560821, 29.964588235609884 ], [ -95.471107038939124, 29.964575235228086 ], [ -95.471271038419289, 29.964550235569398 ], [ -95.471621038068932, 29.96454123514193 ], [ -95.473482039460947, 29.964495235550359 ], [ -95.473550039222374, 29.964500235542442 ], [ -95.473805039464935, 29.964500235170629 ], [ -95.474449039260989, 29.964487234964729 ], [ -95.476207039655776, 29.964441235270328 ], [ -95.476498040311341, 29.964434235420441 ], [ -95.477136039792242, 29.964414235045954 ], [ -95.47828404020072, 29.964389234853552 ], [ -95.478327040671999, 29.964388235259207 ], [ -95.478407040797464, 29.964386234794304 ], [ -95.47951704015928, 29.964354235180984 ], [ -95.480318041093142, 29.964327235353711 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 40, "Tract": "48039660705", "Area_SqMi": 1.2963084437653598, "total_2009": 290, "total_2010": 386, "total_2011": 421, "total_2012": 356, "total_2013": 387, "total_2014": 515, "total_2015": 540, "total_2016": 655, "total_2017": 644, "total_2018": 966, "total_2019": 544, "total_2020": 514, "age1": 170, "age2": 267, "age3": 113, "earn1": 139, "earn2": 232, "earn3": 179, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 7, "naics_s07": 121, "naics_s08": 2, "naics_s09": 0, "naics_s10": 10, "naics_s11": 14, "naics_s12": 45, "naics_s13": 0, "naics_s14": 49, "naics_s15": 16, "naics_s16": 138, "naics_s17": 17, "naics_s18": 19, "naics_s19": 101, "naics_s20": 0, "race1": 361, "race2": 127, "race3": 7, "race4": 43, "race5": 1, "race6": 11, "ethnicity1": 386, "ethnicity2": 164, "edu1": 90, "edu2": 90, "edu3": 122, "edu4": 78, "Shape_Length": 24784.076101902869, "Shape_Area": 36138860.75810317, "total_2021": 563, "total_2022": 550 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.350348989483606, 29.558986156411923 ], [ -95.350323989218566, 29.558122156522739 ], [ -95.350290989801849, 29.557758156107401 ], [ -95.350186989727931, 29.557323156320393 ], [ -95.349913989439642, 29.55664115576862 ], [ -95.349738988924443, 29.556277156028674 ], [ -95.349498989345051, 29.555867155637664 ], [ -95.349179988677136, 29.555400155961301 ], [ -95.348913988888569, 29.555068156024113 ], [ -95.348698988790829, 29.554832155618133 ], [ -95.348278988194053, 29.554248155698925 ], [ -95.348153988973792, 29.554068155928874 ], [ -95.348016988216685, 29.55374315502943 ], [ -95.347802988862881, 29.553139155614872 ], [ -95.347698988103744, 29.5527031555166 ], [ -95.347653988717568, 29.552254155468191 ], [ -95.347652988293845, 29.552099154840569 ], [ -95.347648988460676, 29.551809154667463 ], [ -95.347592987969946, 29.550047154574266 ], [ -95.347587988392917, 29.549893154974615 ], [ -95.347547987794115, 29.547949154252464 ], [ -95.34753698852694, 29.547414154111848 ], [ -95.347502987925921, 29.546421153644623 ], [ -95.347468988371645, 29.544717153574776 ], [ -95.347471987932508, 29.544560153201317 ], [ -95.347475987655713, 29.544400153324649 ], [ -95.34744198774311, 29.543461152902548 ], [ -95.347476988073112, 29.54221115343519 ], [ -95.347464988363214, 29.541510152862845 ], [ -95.347456987831677, 29.540959152801392 ], [ -95.343018986453984, 29.540988152511154 ], [ -95.339140985624027, 29.541102153524076 ], [ -95.337250985081567, 29.541136153016105 ], [ -95.330712983705709, 29.541254153508731 ], [ -95.330721983459654, 29.541836153300665 ], [ -95.33076198367948, 29.543033153404998 ], [ -95.330760983495466, 29.543175153388759 ], [ -95.330758983383703, 29.543533154175279 ], [ -95.330758983745142, 29.543650153571765 ], [ -95.330758983545039, 29.543662153479982 ], [ -95.330755983543526, 29.544249154233583 ], [ -95.330762983504073, 29.544345154252767 ], [ -95.330771984207956, 29.544856154422579 ], [ -95.330790984364, 29.54599415401993 ], [ -95.330853984438107, 29.547876155056379 ], [ -95.330873983843475, 29.548462155176686 ], [ -95.330858983765822, 29.549400155045547 ], [ -95.330861984304761, 29.549542155387293 ], [ -95.330901983799734, 29.551939155306219 ], [ -95.330910983857521, 29.552029155462218 ], [ -95.330928984504922, 29.552832156179257 ], [ -95.330948984757029, 29.554117156059661 ], [ -95.330959984453855, 29.555301156710108 ], [ -95.330972984578437, 29.555781156643384 ], [ -95.330986984098843, 29.556969156971 ], [ -95.330993984321722, 29.557244156451777 ], [ -95.331001983976179, 29.55780315694685 ], [ -95.331013984204034, 29.558169156982153 ], [ -95.331035984081112, 29.559300157188837 ], [ -95.332298984835106, 29.559298157053536 ], [ -95.332489984920997, 29.559297156838813 ], [ -95.333274984741124, 29.559270157221516 ], [ -95.334586985815264, 29.559256156730562 ], [ -95.334733985247652, 29.559254156670161 ], [ -95.33601498625201, 29.559238156874123 ], [ -95.33680898577532, 29.559229156792743 ], [ -95.337567986027679, 29.559222157077368 ], [ -95.338134986343803, 29.559214157266318 ], [ -95.339577986499648, 29.559195157118261 ], [ -95.33979798687065, 29.559192157212156 ], [ -95.339811986907193, 29.559192156754474 ], [ -95.340151986735592, 29.559187157122153 ], [ -95.341264987168245, 29.559174156882083 ], [ -95.342049987198806, 29.559165156623767 ], [ -95.342609987035146, 29.559158156913917 ], [ -95.343452987500115, 29.559146157057221 ], [ -95.344618987520008, 29.559130156627752 ], [ -95.344849987820353, 29.559127156625003 ], [ -95.345203988417779, 29.559121156527873 ], [ -95.347769988633047, 29.559085156499997 ], [ -95.350348989483606, 29.558986156411923 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 41, "Tract": "48039660609", "Area_SqMi": 0.97868838190868834, "total_2009": 118, "total_2010": 82, "total_2011": 47, "total_2012": 63, "total_2013": 69, "total_2014": 62, "total_2015": 87, "total_2016": 88, "total_2017": 91, "total_2018": 68, "total_2019": 86, "total_2020": 53, "age1": 121, "age2": 56, "age3": 19, "earn1": 93, "earn2": 76, "earn3": 27, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 2, "naics_s10": 1, "naics_s11": 3, "naics_s12": 9, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 6, "naics_s17": 0, "naics_s18": 163, "naics_s19": 1, "naics_s20": 0, "race1": 150, "race2": 22, "race3": 3, "race4": 12, "race5": 0, "race6": 9, "ethnicity1": 119, "ethnicity2": 77, "edu1": 12, "edu2": 19, "edu3": 20, "edu4": 24, "Shape_Length": 28527.317667875963, "Shape_Area": 27284157.045707978, "total_2021": 117, "total_2022": 196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.384310998711356, 29.570835157925078 ], [ -95.384298998363334, 29.570693157389467 ], [ -95.384267999106243, 29.570534157986163 ], [ -95.383992998869772, 29.570530157750284 ], [ -95.383773998441001, 29.570536157487602 ], [ -95.381458998307977, 29.570610157484495 ], [ -95.380867998080518, 29.570628158153916 ], [ -95.380627997203291, 29.57063515787852 ], [ -95.379900997056282, 29.570653157646081 ], [ -95.377481996398132, 29.570716157591445 ], [ -95.376934996749739, 29.570728157998936 ], [ -95.375934996743069, 29.570751157990273 ], [ -95.375701996524242, 29.570757157854135 ], [ -95.374352995771986, 29.570765157855408 ], [ -95.373645995859263, 29.570771157952173 ], [ -95.372766995557612, 29.570792157751391 ], [ -95.370752994973003, 29.570836158168785 ], [ -95.368145994296015, 29.570894158597376 ], [ -95.366501993597467, 29.570931158724765 ], [ -95.365776993908085, 29.570946158170738 ], [ -95.365527993683955, 29.570949158114455 ], [ -95.364517994024354, 29.570961158187497 ], [ -95.364263993933676, 29.570921158256215 ], [ -95.363900993907706, 29.570837158085698 ], [ -95.363574993575, 29.570771158286767 ], [ -95.363359993605755, 29.570714158295026 ], [ -95.363078993194762, 29.570637158179142 ], [ -95.362590993502295, 29.570551158816215 ], [ -95.362139992500559, 29.570487158415638 ], [ -95.361807993302435, 29.570464158733593 ], [ -95.36170599317218, 29.570457158341934 ], [ -95.361187993162687, 29.570438158390019 ], [ -95.360232992175938, 29.570474158593992 ], [ -95.359818992655036, 29.570488158652157 ], [ -95.359070992371983, 29.570492158701978 ], [ -95.358524992332761, 29.570495158878664 ], [ -95.35843999151399, 29.570496158301982 ], [ -95.358055992147001, 29.570503158604488 ], [ -95.357105991647714, 29.570518158255283 ], [ -95.355879991716463, 29.570535158299204 ], [ -95.354580990617563, 29.570556158543948 ], [ -95.353936990981751, 29.570563158753295 ], [ -95.352395990800204, 29.570577159171592 ], [ -95.350686989694097, 29.570591158905373 ], [ -95.350787989947364, 29.574933159357947 ], [ -95.35082599053095, 29.57637616030927 ], [ -95.350917990452857, 29.578481160554098 ], [ -95.350979990800894, 29.578726160173602 ], [ -95.351077990802537, 29.579069160881584 ], [ -95.351221991026563, 29.579641160743233 ], [ -95.351474990574701, 29.58040816037883 ], [ -95.351643990745885, 29.580967160848694 ], [ -95.351686990641809, 29.581126161159325 ], [ -95.351813990576886, 29.581672161239073 ], [ -95.35221099119299, 29.581668160984528 ], [ -95.352910991260501, 29.581626161436194 ], [ -95.353189991379551, 29.581619160970991 ], [ -95.354128991126714, 29.581700160617771 ], [ -95.362549993899592, 29.581568160626937 ], [ -95.362586993826369, 29.581489160628617 ], [ -95.362926993336103, 29.580759160749619 ], [ -95.363608993975177, 29.579296159891975 ], [ -95.363477993804025, 29.576455159870882 ], [ -95.363480993740581, 29.576350159684907 ], [ -95.363497993178257, 29.576264159428735 ], [ -95.363538993399501, 29.576145159604714 ], [ -95.363590993622722, 29.576046159585264 ], [ -95.363693993454675, 29.575955159380733 ], [ -95.363773994094657, 29.575875159817095 ], [ -95.363875994111737, 29.575830159669891 ], [ -95.364002993547217, 29.575800159663959 ], [ -95.364140994110528, 29.575770159804016 ], [ -95.364267993941027, 29.575770159317464 ], [ -95.365840994045953, 29.575727159751466 ], [ -95.367856994453547, 29.575655159257668 ], [ -95.368208994995072, 29.57564615921806 ], [ -95.368290994507888, 29.575643159138988 ], [ -95.371894995935634, 29.575545159327834 ], [ -95.37637699653078, 29.575465158976399 ], [ -95.37951999778754, 29.575387158524681 ], [ -95.383989998933586, 29.575286158566016 ], [ -95.383992998379327, 29.575101158906627 ], [ -95.383980998640851, 29.574648158457606 ], [ -95.383955998813335, 29.57407315879319 ], [ -95.383941998407735, 29.57347815819724 ], [ -95.38392299906522, 29.572655157762821 ], [ -95.383918998534952, 29.572256158343961 ], [ -95.383947998869388, 29.572041157823946 ], [ -95.384011999097936, 29.571831157639465 ], [ -95.384107998884517, 29.571608157915769 ], [ -95.384193998352529, 29.571442158131532 ], [ -95.384274998356332, 29.571219158072363 ], [ -95.384297998893615, 29.571047158136643 ], [ -95.384310998711356, 29.570835157925078 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 42, "Tract": "48039661902", "Area_SqMi": 56.792499520465839, "total_2009": 809, "total_2010": 764, "total_2011": 835, "total_2012": 801, "total_2013": 874, "total_2014": 887, "total_2015": 2372, "total_2016": 2441, "total_2017": 1700, "total_2018": 2075, "total_2019": 2641, "total_2020": 4375, "age1": 1053, "age2": 3118, "age3": 688, "earn1": 323, "earn2": 427, "earn3": 4109, "naics_s01": 0, "naics_s02": 62, "naics_s03": 0, "naics_s04": 4179, "naics_s05": 241, "naics_s06": 43, "naics_s07": 32, "naics_s08": 17, "naics_s09": 0, "naics_s10": 5, "naics_s11": 7, "naics_s12": 14, "naics_s13": 0, "naics_s14": 20, "naics_s15": 42, "naics_s16": 19, "naics_s17": 4, "naics_s18": 38, "naics_s19": 125, "naics_s20": 11, "race1": 4154, "race2": 418, "race3": 84, "race4": 139, "race5": 8, "race6": 56, "ethnicity1": 2450, "ethnicity2": 2409, "edu1": 1114, "edu2": 1135, "edu3": 1048, "edu4": 509, "Shape_Length": 210428.03321410014, "Shape_Area": 1583277685.2962139, "total_2021": 2699, "total_2022": 4859 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.582658039861499, 29.350378106167131 ], [ -95.582647040330585, 29.349910105308091 ], [ -95.582464039313891, 29.349913105462932 ], [ -95.582322039492254, 29.349915105383094 ], [ -95.582261040157803, 29.349916105941713 ], [ -95.581394039031466, 29.349928105756618 ], [ -95.578716038993434, 29.350005105676551 ], [ -95.574816038145855, 29.350089106109742 ], [ -95.57037103695113, 29.350211105986272 ], [ -95.566873035999379, 29.350299106642424 ], [ -95.564030035199409, 29.350353106462659 ], [ -95.558122033590848, 29.350458106833532 ], [ -95.55741403351351, 29.350456106985256 ], [ -95.556240032837351, 29.350490106343553 ], [ -95.555441033102142, 29.350498106647024 ], [ -95.554827033202812, 29.350523107162154 ], [ -95.553769032936131, 29.350586107097698 ], [ -95.5525220326127, 29.350863106794264 ], [ -95.55210803226035, 29.350972107138322 ], [ -95.551521032089198, 29.35118710709159 ], [ -95.55114103168286, 29.35135210671422 ], [ -95.550805032170459, 29.351498106799152 ], [ -95.549909031738963, 29.351912106903534 ], [ -95.549257031064172, 29.35220010739733 ], [ -95.548790031286813, 29.352407106917546 ], [ -95.548295030825585, 29.352631107048285 ], [ -95.547797030899829, 29.352859107125802 ], [ -95.546992030761302, 29.353195107696976 ], [ -95.54618203019335, 29.353496108031052 ], [ -95.545331030885166, 29.353747107500197 ], [ -95.544693030408155, 29.35391510807835 ], [ -95.543371030155313, 29.354112108063156 ], [ -95.542960030089318, 29.354151108298804 ], [ -95.541989030044618, 29.354199108264059 ], [ -95.541538029128745, 29.354210108344759 ], [ -95.540478029024897, 29.354221108035368 ], [ -95.539523028636225, 29.35422610813621 ], [ -95.537313028416023, 29.354270107799525 ], [ -95.535780028245355, 29.354274108335289 ], [ -95.534787027296332, 29.354277107819986 ], [ -95.53370402710361, 29.354166108215544 ], [ -95.53138102680343, 29.353929108112315 ], [ -95.527552025736938, 29.35349010830042 ], [ -95.522480024344134, 29.352952108349601 ], [ -95.520907024559094, 29.352802108703425 ], [ -95.519495024121639, 29.352744108788848 ], [ -95.518514023546786, 29.352703108472557 ], [ -95.518282023369167, 29.352694108592786 ], [ -95.516845023300093, 29.35268510820541 ], [ -95.513307022534207, 29.352751108181483 ], [ -95.51042502175406, 29.35284410911876 ], [ -95.509730021543263, 29.352846109056518 ], [ -95.50779102039067, 29.352855108847486 ], [ -95.507093020880973, 29.352870108640985 ], [ -95.506790020353833, 29.352876108501956 ], [ -95.505481020340994, 29.352903109283542 ], [ -95.505227020308268, 29.352909108633341 ], [ -95.503507019526225, 29.352947109024825 ], [ -95.498386018020184, 29.353034109527755 ], [ -95.49754701845518, 29.353050108975552 ], [ -95.493991016812203, 29.353127109714222 ], [ -95.491670016913304, 29.353192109679878 ], [ -95.490995016868297, 29.353211109122856 ], [ -95.489683016227062, 29.353237109907987 ], [ -95.488131015753851, 29.353269109905714 ], [ -95.487547015680178, 29.353281109155851 ], [ -95.485224015075275, 29.353328109560692 ], [ -95.483470014536579, 29.353365109265109 ], [ -95.480934013828232, 29.353424109358929 ], [ -95.478259013632737, 29.353486109583905 ], [ -95.476567013267541, 29.353520109643981 ], [ -95.476269012929976, 29.353535110185231 ], [ -95.475966012330048, 29.353572110048002 ], [ -95.475587012265436, 29.353583109630744 ], [ -95.47397501180302, 29.353632110272759 ], [ -95.472366012233891, 29.353680110114553 ], [ -95.471513011477839, 29.353706109955276 ], [ -95.470202010831116, 29.353755109880701 ], [ -95.468448010876642, 29.353819110705974 ], [ -95.467551010603302, 29.353859110159171 ], [ -95.4666890100155, 29.353888110691354 ], [ -95.463551009866606, 29.354005110285609 ], [ -95.462837009674331, 29.354029110584161 ], [ -95.462676009664662, 29.354010110767646 ], [ -95.462440009621005, 29.354025110718823 ], [ -95.462392008748765, 29.354028110914712 ], [ -95.46225000947905, 29.354002110805808 ], [ -95.462077009247324, 29.35398511034413 ], [ -95.460884008790927, 29.354036110823703 ], [ -95.459579008913508, 29.354083110299481 ], [ -95.459060008032793, 29.354088111031288 ], [ -95.457271008392425, 29.354145110287543 ], [ -95.455508007805335, 29.354195111099965 ], [ -95.455443007158351, 29.354197111147098 ], [ -95.455140007113442, 29.354196110681052 ], [ -95.454900007291215, 29.354180110636754 ], [ -95.454690007174364, 29.354161111162107 ], [ -95.454447007117608, 29.354089111205788 ], [ -95.454179007089451, 29.353997111060654 ], [ -95.454062007507773, 29.353943111166039 ], [ -95.453924007346998, 29.353880110849595 ], [ -95.453646007060087, 29.353723111155958 ], [ -95.45342100704292, 29.353560110692641 ], [ -95.453139006720562, 29.353290110372626 ], [ -95.45295200686634, 29.353111110731987 ], [ -95.452296006668774, 29.352433110795303 ], [ -95.452025006804504, 29.35222311034526 ], [ -95.45172300634853, 29.352053110897387 ], [ -95.451313006128203, 29.351889110892113 ], [ -95.450958006328023, 29.351806110726741 ], [ -95.450736006009606, 29.351778110525522 ], [ -95.450311005920355, 29.351759110786691 ], [ -95.448686006106001, 29.351789110095822 ], [ -95.448333005442237, 29.351795110920779 ], [ -95.447981005625095, 29.351802110593656 ], [ -95.445504005333135, 29.351849110236856 ], [ -95.445478004352381, 29.351850110309098 ], [ -95.441686004087543, 29.351931111064875 ], [ -95.440659003453661, 29.351940110580067 ], [ -95.433360002182752, 29.352067111378531 ], [ -95.432131001606621, 29.35209911143647 ], [ -95.43114000077297, 29.352125111312944 ], [ -95.431112001520304, 29.352126111122452 ], [ -95.430995001422048, 29.352128111455077 ], [ -95.42915200117362, 29.352167111326633 ], [ -95.428891001065594, 29.352173111301525 ], [ -95.428520000716958, 29.352159111601839 ], [ -95.427920000359151, 29.352135111407943 ], [ -95.427706999869358, 29.352127111497289 ], [ -95.427295999946381, 29.352119111465171 ], [ -95.426762999606964, 29.352109111015949 ], [ -95.426792999885308, 29.352675111028066 ], [ -95.426806999595627, 29.35292711190133 ], [ -95.42681199983852, 29.353028111764147 ], [ -95.426880000612343, 29.353792111773217 ], [ -95.426903000251826, 29.354049111854394 ], [ -95.427174000775963, 29.357848112412395 ], [ -95.427116000806492, 29.360108113239622 ], [ -95.427103000973574, 29.36058911275401 ], [ -95.427099000525729, 29.360745113289124 ], [ -95.427098000564882, 29.360790112982855 ], [ -95.427096000648262, 29.360887113055483 ], [ -95.42709200020964, 29.360982113281047 ], [ -95.426877000416496, 29.366201114124831 ], [ -95.426858001013159, 29.36664911393575 ], [ -95.426857000468146, 29.367333114489593 ], [ -95.426897000982805, 29.370430115117287 ], [ -95.426914001334751, 29.374731115862478 ], [ -95.426921001351644, 29.375129116463235 ], [ -95.426977001731075, 29.378150116234671 ], [ -95.426977001121756, 29.378242116986328 ], [ -95.426986001465039, 29.380319117292387 ], [ -95.42701100123719, 29.381516117258812 ], [ -95.427075001443342, 29.386194118667149 ], [ -95.427070002089479, 29.386758118664321 ], [ -95.42707400162088, 29.386936118216518 ], [ -95.427087001692087, 29.387467118600366 ], [ -95.427120001362994, 29.390220119212209 ], [ -95.427127002186083, 29.391025118878357 ], [ -95.427140001400346, 29.392047119489259 ], [ -95.427142002387058, 29.392455120021193 ], [ -95.427145002031367, 29.392963119774659 ], [ -95.427153002021242, 29.393876120079863 ], [ -95.427174002130286, 29.396237120555377 ], [ -95.427222001718476, 29.399453121305552 ], [ -95.427271002854141, 29.404355122375875 ], [ -95.427272002513988, 29.404440121765159 ], [ -95.427280002081616, 29.40525012197417 ], [ -95.427289002536639, 29.405870122492196 ], [ -95.427351002610663, 29.409976122871072 ], [ -95.427353003231786, 29.411733123603451 ], [ -95.427355002770327, 29.4119031239671 ], [ -95.42741900357575, 29.418426124942862 ], [ -95.427432002816644, 29.419761125306078 ], [ -95.427442003145998, 29.420019125658403 ], [ -95.427467002943104, 29.422770126031281 ], [ -95.427469003113785, 29.422968125812762 ], [ -95.427511003864211, 29.424578126227207 ], [ -95.427502003840317, 29.425207126125901 ], [ -95.427498003896758, 29.426381126424648 ], [ -95.427498003738478, 29.426400126910821 ], [ -95.427519003094361, 29.426829126760701 ], [ -95.427524003602116, 29.42694412645859 ], [ -95.427520003214411, 29.427849127067244 ], [ -95.427623003960903, 29.433352128154208 ], [ -95.427622003695248, 29.434439127816312 ], [ -95.427622004285993, 29.435497128867159 ], [ -95.427651003665218, 29.437598129120623 ], [ -95.427649004506421, 29.43916012954649 ], [ -95.427649004404714, 29.439225128978599 ], [ -95.427656004334196, 29.440583129334605 ], [ -95.427648004209999, 29.440693129298744 ], [ -95.427626003748117, 29.440979129955611 ], [ -95.427545003730927, 29.442052129449202 ], [ -95.427415004509839, 29.443112129767997 ], [ -95.427407004097986, 29.44316312975144 ], [ -95.427312004625279, 29.443772130474454 ], [ -95.427097004435723, 29.444983130288218 ], [ -95.426738003709417, 29.446517130379721 ], [ -95.426696004305825, 29.446698130370436 ], [ -95.426610004064713, 29.44702413050496 ], [ -95.426033004229666, 29.448858131338405 ], [ -95.425434004117889, 29.450408131549043 ], [ -95.424657004181128, 29.452099131531899 ], [ -95.424644003688243, 29.452128131850898 ], [ -95.424595003545605, 29.452223132278224 ], [ -95.424547003447941, 29.452315131737837 ], [ -95.424512004157563, 29.452381132422406 ], [ -95.424411003404131, 29.452575132238913 ], [ -95.424062004020129, 29.45324113191263 ], [ -95.423953003512906, 29.453450132568758 ], [ -95.423625003558271, 29.453985132040859 ], [ -95.423263003811087, 29.454540132789027 ], [ -95.423214003988761, 29.454623132907312 ], [ -95.422603003138263, 29.455567132460665 ], [ -95.421721003695438, 29.456835133146654 ], [ -95.418877003044173, 29.460428133610286 ], [ -95.418256002211081, 29.461192133946565 ], [ -95.417314002712246, 29.462387133931799 ], [ -95.415391002398138, 29.464787134932482 ], [ -95.415210001672534, 29.465013135091986 ], [ -95.415185002033766, 29.46504513457613 ], [ -95.414878001591291, 29.465395135070182 ], [ -95.414264001392226, 29.466167134881239 ], [ -95.413670001372566, 29.46694513573954 ], [ -95.413135001427122, 29.467621135647406 ], [ -95.412450001604398, 29.468464135750583 ], [ -95.412384001071175, 29.468549135498822 ], [ -95.411941001284504, 29.469122135751647 ], [ -95.410050000801434, 29.471490136216381 ], [ -95.409522000551874, 29.472175136306952 ], [ -95.407142000216794, 29.475181137318248 ], [ -95.406491000529471, 29.475994137881049 ], [ -95.405034999727889, 29.477802138032832 ], [ -95.404437000195159, 29.478576138506245 ], [ -95.404003999425953, 29.479109137772042 ], [ -95.403879999766559, 29.479267138076771 ], [ -95.403664000036287, 29.47953913811849 ], [ -95.403647999756416, 29.479560138013589 ], [ -95.403505999345924, 29.479737138679795 ], [ -95.402163998984662, 29.481413138835411 ], [ -95.401251998960817, 29.482534138795529 ], [ -95.401187999444815, 29.482614139167076 ], [ -95.401711998770011, 29.482795139013593 ], [ -95.402523999283162, 29.483062139255836 ], [ -95.403722999763474, 29.483457139379944 ], [ -95.403733000042266, 29.483436138680531 ], [ -95.404895000180474, 29.48383413938431 ], [ -95.413423002520247, 29.486751139438095 ], [ -95.415429002546034, 29.487393139335978 ], [ -95.415756003106964, 29.487504139366564 ], [ -95.415786003579896, 29.487514139988846 ], [ -95.41589300298007, 29.48755113968932 ], [ -95.41823800400833, 29.488350139508611 ], [ -95.419937003956051, 29.488931139711081 ], [ -95.421000004838277, 29.489295139388968 ], [ -95.425903006348648, 29.490970139598144 ], [ -95.426052005420345, 29.491021139528755 ], [ -95.426645006416422, 29.491223140094551 ], [ -95.426697006441771, 29.491241139522593 ], [ -95.427128006220926, 29.491389139751409 ], [ -95.428882006773478, 29.491984139753832 ], [ -95.429384006979248, 29.492154140392255 ], [ -95.429527006741068, 29.492202139735241 ], [ -95.432883008019346, 29.493338140418604 ], [ -95.435394008809808, 29.494212140005612 ], [ -95.435448008257751, 29.494234140423309 ], [ -95.435922008735957, 29.494430140635739 ], [ -95.436088009057997, 29.494499140162343 ], [ -95.436829008500951, 29.494844140260035 ], [ -95.436976009307259, 29.494912140095934 ], [ -95.437274008950169, 29.495069140827535 ], [ -95.439389009508687, 29.496157140590554 ], [ -95.440538010039148, 29.4967521404499 ], [ -95.441250009929377, 29.497110140547196 ], [ -95.44152501001922, 29.497248140739359 ], [ -95.441792010288466, 29.497381140299208 ], [ -95.441926009857255, 29.497452140972346 ], [ -95.443350010911345, 29.498062140561107 ], [ -95.443918010513713, 29.498372140415018 ], [ -95.444199011116552, 29.498502141311384 ], [ -95.444585011164548, 29.4987191411401 ], [ -95.445407011150337, 29.499156140764956 ], [ -95.445992011181701, 29.499464140848971 ], [ -95.446148011324766, 29.499554140951474 ], [ -95.44624501159015, 29.499606140669297 ], [ -95.446307011820323, 29.499642140810408 ], [ -95.446877011966535, 29.497558140304005 ], [ -95.447017011710926, 29.496687140032293 ], [ -95.447089011884358, 29.496421140262875 ], [ -95.447099011588563, 29.496385139917926 ], [ -95.447414011694221, 29.495223140047507 ], [ -95.447562011696022, 29.494678139929459 ], [ -95.447604011113157, 29.494523139744139 ], [ -95.447800011560943, 29.493795139652295 ], [ -95.447818011979138, 29.493728139959678 ], [ -95.447888011478028, 29.49347113977062 ], [ -95.448349011929452, 29.49176313938635 ], [ -95.448373011941115, 29.491671139745382 ], [ -95.448440011373904, 29.491423138921 ], [ -95.448510011472464, 29.491165139092683 ], [ -95.44857301190261, 29.490934139098457 ], [ -95.449301012178111, 29.488244138183429 ], [ -95.449704011936987, 29.486760138090368 ], [ -95.450392011689047, 29.484233137495874 ], [ -95.450999012265598, 29.482003137027458 ], [ -95.451049012135471, 29.48181513754712 ], [ -95.452272012309265, 29.477265135847251 ], [ -95.453469011977433, 29.472865135188087 ], [ -95.458832012468861, 29.453178131070903 ], [ -95.46080701318381, 29.445915129841161 ], [ -95.461060012865929, 29.444976129596217 ], [ -95.46109801253445, 29.444835129086226 ], [ -95.461173012925599, 29.444561129374961 ], [ -95.462443013168553, 29.439868128442338 ], [ -95.462459013232845, 29.439807128102405 ], [ -95.462487013145946, 29.439700128348896 ], [ -95.462512012778291, 29.439605128310749 ], [ -95.462609012589439, 29.439243128196381 ], [ -95.469404014471792, 29.439142127574971 ], [ -95.476485016271738, 29.439037127732529 ], [ -95.476618016263018, 29.439044127891449 ], [ -95.476642016536005, 29.439043127994928 ], [ -95.476739016326718, 29.439038127427523 ], [ -95.476974016154827, 29.439031127588336 ], [ -95.477345016741566, 29.43902112717856 ], [ -95.479905017733145, 29.438996127719424 ], [ -95.501200022592712, 29.438787126508579 ], [ -95.501610023367803, 29.438783126516316 ], [ -95.501629022565879, 29.438782126556859 ], [ -95.50173502260175, 29.438781126839189 ], [ -95.502141022984588, 29.43877712696332 ], [ -95.502381022972358, 29.438775126850441 ], [ -95.502683022887581, 29.438772126467018 ], [ -95.502824023051261, 29.438771126980416 ], [ -95.502934023349454, 29.438770126336767 ], [ -95.503203023652077, 29.438767126470122 ], [ -95.503316023867811, 29.43876612641759 ], [ -95.503498023076517, 29.438765126220698 ], [ -95.503534023691486, 29.438764126919708 ], [ -95.503566023912072, 29.438764126894405 ], [ -95.503588023934967, 29.43876412686917 ], [ -95.503600023760058, 29.438764126849005 ], [ -95.510729024762014, 29.43871412600323 ], [ -95.511041025762268, 29.438712126271369 ], [ -95.511353025752555, 29.438709126495581 ], [ -95.51362102593076, 29.438694125917934 ], [ -95.513731025702256, 29.438693126305804 ], [ -95.513794025617003, 29.43869312594153 ], [ -95.513817025891242, 29.438693125966704 ], [ -95.513959025765544, 29.438692126384456 ], [ -95.51500002664983, 29.438685126482625 ], [ -95.515538026470651, 29.438681125856313 ], [ -95.523842028590821, 29.438625126164236 ], [ -95.526042028786392, 29.43860812613406 ], [ -95.526074028693429, 29.43860712593893 ], [ -95.526085029141726, 29.438607125890879 ], [ -95.526112029583629, 29.438607125834004 ], [ -95.526129028874223, 29.438607125635933 ], [ -95.535710031641131, 29.438532125209555 ], [ -95.536678031944916, 29.438225125123186 ], [ -95.537980031998771, 29.437809124876708 ], [ -95.538956032609818, 29.437767124916871 ], [ -95.540070032737404, 29.438122125481787 ], [ -95.540999033332071, 29.438495125076148 ], [ -95.54749603458427, 29.438458124803365 ], [ -95.547539034713083, 29.438458125060947 ], [ -95.549828035186152, 29.438445124638747 ], [ -95.550001035599649, 29.438444124759197 ], [ -95.550271035294415, 29.43840412508591 ], [ -95.550629035745345, 29.438311124806493 ], [ -95.55061903527843, 29.43825612462971 ], [ -95.550099035121463, 29.437494124999642 ], [ -95.549913034699813, 29.43719612458138 ], [ -95.549880035295288, 29.43651912441517 ], [ -95.54989203537616, 29.436463124467824 ], [ -95.550095035521267, 29.435216123922466 ], [ -95.550341035124035, 29.434612124356818 ], [ -95.550707035355771, 29.433545123789081 ], [ -95.550783034893897, 29.433303123999835 ], [ -95.550931035184576, 29.432976123773976 ], [ -95.550950035026347, 29.432923123590516 ], [ -95.551308035801185, 29.431935123334743 ], [ -95.551381035309873, 29.431524123114936 ], [ -95.551456035485757, 29.431103123018236 ], [ -95.551641035370466, 29.429852123571013 ], [ -95.551782035059958, 29.428822123210452 ], [ -95.551869035182989, 29.42855612253512 ], [ -95.552260035450189, 29.427879122356476 ], [ -95.552334035549038, 29.427807122897136 ], [ -95.552790035419008, 29.427283122972302 ], [ -95.553309035138156, 29.426897122657692 ], [ -95.553994036040024, 29.426555122247283 ], [ -95.555491035830599, 29.425635121796688 ], [ -95.555686035839997, 29.425557122289938 ], [ -95.555943036001636, 29.425349122401862 ], [ -95.55640803659648, 29.424618121628843 ], [ -95.556329035808645, 29.423596121566902 ], [ -95.555967036525288, 29.422784121319005 ], [ -95.554847035315774, 29.42178812116725 ], [ -95.553594035262421, 29.42114412144263 ], [ -95.552281035042554, 29.420058120747331 ], [ -95.552041034966919, 29.419783121080055 ], [ -95.55200503484572, 29.419742120996791 ], [ -95.551984035260418, 29.419718121391714 ], [ -95.551932034943675, 29.419649120934395 ], [ -95.551764034755607, 29.419347120579307 ], [ -95.551717035292967, 29.419235121130239 ], [ -95.551521034576382, 29.41886112064519 ], [ -95.550774034972036, 29.417439120650915 ], [ -95.550035034035503, 29.416033120302401 ], [ -95.549671034013983, 29.415509119987529 ], [ -95.549607034133587, 29.415417120090478 ], [ -95.54895603443471, 29.413484119533837 ], [ -95.547674033563354, 29.411634119566909 ], [ -95.547188033453182, 29.410934119619409 ], [ -95.546992033419542, 29.410650119012956 ], [ -95.546985032859197, 29.410635119315366 ], [ -95.546814033304742, 29.410267119020538 ], [ -95.54603503310517, 29.408589119374138 ], [ -95.545986033006116, 29.408417119339916 ], [ -95.545832032825956, 29.407740118847194 ], [ -95.545852032389334, 29.406906118588783 ], [ -95.546076032827301, 29.406234118955183 ], [ -95.546419033166657, 29.40576211857665 ], [ -95.546930033056938, 29.405145118021927 ], [ -95.547481033422656, 29.404713117853611 ], [ -95.547791033464975, 29.404470118297677 ], [ -95.548389033170622, 29.404185118009849 ], [ -95.549128033458004, 29.403811118228923 ], [ -95.54957303324818, 29.403336117953376 ], [ -95.54987003333855, 29.402624117266022 ], [ -95.549751033310002, 29.401406117223239 ], [ -95.549365033004079, 29.400308116982615 ], [ -95.548860032795346, 29.399417117021066 ], [ -95.547257032638967, 29.397136116678656 ], [ -95.547228032344606, 29.396656116722628 ], [ -95.547435032907785, 29.39581011651455 ], [ -95.547506032635965, 29.39551711663167 ], [ -95.547584032917158, 29.39520211661463 ], [ -95.548356032786771, 29.39484511571521 ], [ -95.549740033621688, 29.394396115661646 ], [ -95.551889033904004, 29.39386611558033 ], [ -95.553041033965727, 29.393549116048074 ], [ -95.553800034658735, 29.393079115557224 ], [ -95.553843034296619, 29.393036115156974 ], [ -95.555259034613783, 29.392140115399439 ], [ -95.556211034747832, 29.391494114800615 ], [ -95.556882035180266, 29.391219115525693 ], [ -95.557245035197411, 29.391070114822774 ], [ -95.557865034726703, 29.390803114986408 ], [ -95.55886403577675, 29.390493114630619 ], [ -95.559894035223905, 29.390463115258964 ], [ -95.561439036620101, 29.390801115051602 ], [ -95.562891036304094, 29.391103114872546 ], [ -95.564045036890363, 29.391063114413562 ], [ -95.56444103682125, 29.391046114442158 ], [ -95.565575036799345, 29.390797114904323 ], [ -95.565797036956212, 29.390681114345025 ], [ -95.566659037180443, 29.390229114618819 ], [ -95.567297037220555, 29.389700114808456 ], [ -95.567962037963113, 29.388975114325188 ], [ -95.56861503773662, 29.388152114356711 ], [ -95.568814037801602, 29.387713113883525 ], [ -95.569482038345669, 29.38709011383326 ], [ -95.569732038208016, 29.386824113399943 ], [ -95.570039038302141, 29.386497113223804 ], [ -95.570347038250333, 29.386170113688404 ], [ -95.570676038735726, 29.385789113907812 ], [ -95.571872038894028, 29.384405113534743 ], [ -95.572183038259041, 29.384030113061286 ], [ -95.572348038519493, 29.3838311133443 ], [ -95.572405038774178, 29.383668113063138 ], [ -95.572520038817373, 29.383335113318797 ], [ -95.572704039155184, 29.382815112483144 ], [ -95.572802039098164, 29.382459113177884 ], [ -95.573133038405956, 29.381254112933885 ], [ -95.573459039274482, 29.380506112031185 ], [ -95.573810039123586, 29.37944911215618 ], [ -95.573938038424672, 29.379123112148498 ], [ -95.573987039090298, 29.379020112055283 ], [ -95.573996039019434, 29.378976111868226 ], [ -95.574102039202671, 29.378704112326872 ], [ -95.574590038413419, 29.377632112079304 ], [ -95.574996039186658, 29.376974111824179 ], [ -95.575561038630241, 29.376193111574068 ], [ -95.575612039483289, 29.376122111324502 ], [ -95.575747039251127, 29.375935111164296 ], [ -95.575748039319819, 29.375851111221426 ], [ -95.575747038960316, 29.375767111414845 ], [ -95.575745038737494, 29.375562111226696 ], [ -95.575741039523308, 29.375273110875661 ], [ -95.575759038738468, 29.374941110744533 ], [ -95.575702039000276, 29.374539110763887 ], [ -95.575717039190096, 29.374144111262048 ], [ -95.575729039102328, 29.372693110860013 ], [ -95.575866039373992, 29.371765110839117 ], [ -95.575998038757405, 29.371398109922659 ], [ -95.576564039445856, 29.369910110056139 ], [ -95.576858039346007, 29.368862109616146 ], [ -95.577084039486707, 29.36809210936795 ], [ -95.577449039525831, 29.366887109770417 ], [ -95.577947038902195, 29.365107109190316 ], [ -95.578318038874485, 29.364519108752202 ], [ -95.578764039847556, 29.364107108551501 ], [ -95.57925003938854, 29.363854108451843 ], [ -95.579432039883883, 29.363759108892651 ], [ -95.579953039347728, 29.363497108827644 ], [ -95.580306039352365, 29.363209108879094 ], [ -95.580643040346118, 29.362682108325849 ], [ -95.58068203973113, 29.362479108036602 ], [ -95.580710040166863, 29.362335108725134 ], [ -95.580844039909508, 29.362089108546691 ], [ -95.580827039642415, 29.361876107920068 ], [ -95.58065803967483, 29.361588107838017 ], [ -95.580486039957236, 29.361520108040501 ], [ -95.580582039561904, 29.361357107844334 ], [ -95.580632040192782, 29.361271108038245 ], [ -95.580490039896716, 29.360868108008553 ], [ -95.579946039442845, 29.360474107674513 ], [ -95.579807039983805, 29.360375108126238 ], [ -95.578965038940964, 29.360006108200217 ], [ -95.578343039200931, 29.359734107884545 ], [ -95.577782038932725, 29.359232107881166 ], [ -95.577606039050124, 29.359081107826086 ], [ -95.577467039124755, 29.358962107341675 ], [ -95.577122038994801, 29.35865410754673 ], [ -95.576188038663503, 29.358272107835166 ], [ -95.575798038210635, 29.358070107460666 ], [ -95.575490038223705, 29.357899108056596 ], [ -95.574740038515714, 29.357210107358036 ], [ -95.574542037741566, 29.356903107232611 ], [ -95.574491038453274, 29.356858107648296 ], [ -95.574233037873441, 29.356629107366548 ], [ -95.573975037868664, 29.356399107275756 ], [ -95.57386303743553, 29.355545107263055 ], [ -95.574068037670841, 29.354668107260629 ], [ -95.574595038139748, 29.353794106586317 ], [ -95.574851037664217, 29.353460106829079 ], [ -95.575436038171119, 29.353121106417206 ], [ -95.575601038036794, 29.35305610694606 ], [ -95.576108038773214, 29.35286010632273 ], [ -95.576799038071272, 29.352767106722315 ], [ -95.577117038092283, 29.352720106545902 ], [ -95.577573038567039, 29.352704106571956 ], [ -95.577589038763065, 29.352703106877801 ], [ -95.577661038449307, 29.35269910648918 ], [ -95.578499038747481, 29.352660106546306 ], [ -95.578855038478054, 29.352631106784841 ], [ -95.580273039090528, 29.352543106052675 ], [ -95.581070039686864, 29.352337106454659 ], [ -95.581604039653357, 29.352011106097631 ], [ -95.58210904, 29.351551105671984 ], [ -95.582450039677568, 29.350942105598229 ], [ -95.582658039861499, 29.350378106167131 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 43, "Tract": "48039660806", "Area_SqMi": 0.96519834152595418, "total_2009": 156, "total_2010": 128, "total_2011": 77, "total_2012": 90, "total_2013": 89, "total_2014": 101, "total_2015": 207, "total_2016": 175, "total_2017": 189, "total_2018": 189, "total_2019": 121, "total_2020": 116, "age1": 58, "age2": 71, "age3": 22, "earn1": 50, "earn2": 49, "earn3": 52, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 45, "naics_s06": 31, "naics_s07": 35, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 10, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 24, "naics_s19": 0, "naics_s20": 0, "race1": 120, "race2": 19, "race3": 1, "race4": 6, "race5": 1, "race6": 4, "ethnicity1": 95, "ethnicity2": 56, "edu1": 17, "edu2": 30, "edu3": 30, "edu4": 16, "Shape_Length": 27080.17777112863, "Shape_Area": 26908077.808272213, "total_2021": 147, "total_2022": 151 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.2977709756331, 29.549413156443407 ], [ -95.297765975647778, 29.549032155698587 ], [ -95.297744975828024, 29.547871155483556 ], [ -95.297699975639745, 29.545294155787658 ], [ -95.297654975388554, 29.542620155075817 ], [ -95.297617975470288, 29.540899154779982 ], [ -95.29761097477521, 29.540766154465871 ], [ -95.2975799752885, 29.538882154183273 ], [ -95.297565975438744, 29.538045153841534 ], [ -95.297540975046303, 29.536966153508423 ], [ -95.297525975001577, 29.53630715323774 ], [ -95.297530975101694, 29.536176153378662 ], [ -95.297511974624541, 29.535030153536873 ], [ -95.297502974908241, 29.53447915345793 ], [ -95.297500975218114, 29.534395152830047 ], [ -95.297484974958977, 29.533362153249779 ], [ -95.297459975065266, 29.532325152419766 ], [ -95.29742997488097, 29.531160152212799 ], [ -95.297427974265958, 29.531088152452366 ], [ -95.297420974270352, 29.530787151990907 ], [ -95.295998974145235, 29.53080515266652 ], [ -95.294445974006521, 29.530823152423366 ], [ -95.291997973212204, 29.530856152247303 ], [ -95.291013972642503, 29.530869152840239 ], [ -95.289143972059605, 29.53089015233099 ], [ -95.289143972668342, 29.530936153109586 ], [ -95.289151972155224, 29.531338152619742 ], [ -95.289209973205928, 29.534387153552224 ], [ -95.289244973203552, 29.536441154256245 ], [ -95.289247973262036, 29.537142154025965 ], [ -95.289252973202707, 29.538155153954477 ], [ -95.28925897243488, 29.539156154255799 ], [ -95.289260972611714, 29.539460154400334 ], [ -95.289291973094521, 29.541104155051418 ], [ -95.289303973397537, 29.5416941544865 ], [ -95.289325973029221, 29.542846155243421 ], [ -95.289348973426797, 29.543961155118126 ], [ -95.289382973375226, 29.544186155555295 ], [ -95.289468973215236, 29.544403155576298 ], [ -95.289745972902011, 29.544784155619411 ], [ -95.290056973599377, 29.545257155405004 ], [ -95.29010497334545, 29.545393155292466 ], [ -95.288608972748619, 29.545419155666114 ], [ -95.287284973139194, 29.54543915587481 ], [ -95.285397972186388, 29.545471155365291 ], [ -95.284690971765258, 29.54550415540497 ], [ -95.28416797197022, 29.545609155444303 ], [ -95.283650972045763, 29.545772155779503 ], [ -95.282898971665119, 29.546126155953544 ], [ -95.282407971477596, 29.54631515641324 ], [ -95.282142970912943, 29.546390156302099 ], [ -95.281589970966081, 29.546538156313041 ], [ -95.281197971178088, 29.546590155812964 ], [ -95.280137970491225, 29.546636156305674 ], [ -95.277052969929429, 29.546666156725596 ], [ -95.279005970627907, 29.549617156680128 ], [ -95.279332971108502, 29.550110156914943 ], [ -95.280907971029123, 29.552372157144383 ], [ -95.281382971045502, 29.553084157534762 ], [ -95.284092972443872, 29.552998156993333 ], [ -95.284346972198563, 29.552990157761144 ], [ -95.290033973479424, 29.551481156566421 ], [ -95.290275974030521, 29.551416156860377 ], [ -95.294606975263932, 29.55025815656392 ], [ -95.2977709756331, 29.549413156443407 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 44, "Tract": "48039660603", "Area_SqMi": 1.1492018600570932, "total_2009": 351, "total_2010": 660, "total_2011": 1249, "total_2012": 1311, "total_2013": 1508, "total_2014": 1479, "total_2015": 2175, "total_2016": 2594, "total_2017": 3228, "total_2018": 3119, "total_2019": 3210, "total_2020": 3264, "age1": 756, "age2": 1641, "age3": 550, "earn1": 600, "earn2": 868, "earn3": 1479, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 18, "naics_s07": 434, "naics_s08": 0, "naics_s09": 0, "naics_s10": 52, "naics_s11": 46, "naics_s12": 182, "naics_s13": 0, "naics_s14": 85, "naics_s15": 113, "naics_s16": 1527, "naics_s17": 12, "naics_s18": 428, "naics_s19": 39, "naics_s20": 0, "race1": 1602, "race2": 930, "race3": 18, "race4": 347, "race5": 2, "race6": 48, "ethnicity1": 2152, "ethnicity2": 795, "edu1": 390, "edu2": 536, "edu3": 747, "edu4": 518, "Shape_Length": 31404.06998819096, "Shape_Area": 32037780.979750995, "total_2021": 3320, "total_2022": 2947 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.424569009535645, 29.579307158568994 ], [ -95.42450800977781, 29.579275158575562 ], [ -95.424395008794988, 29.579223158464149 ], [ -95.424185008737268, 29.579126158269258 ], [ -95.424044008765094, 29.579060157747282 ], [ -95.423005009191399, 29.578580157657029 ], [ -95.422369009226898, 29.578315157904822 ], [ -95.421298008732762, 29.577930157996331 ], [ -95.420586008162346, 29.577716157490386 ], [ -95.420066008279321, 29.577569157662619 ], [ -95.419400007799126, 29.577415158278765 ], [ -95.418490007486184, 29.577237157545401 ], [ -95.417801007921767, 29.577130157782108 ], [ -95.417469007199401, 29.577085157593263 ], [ -95.417642007628743, 29.574222157191322 ], [ -95.417654007270897, 29.574030157099166 ], [ -95.417688007426506, 29.573343157189555 ], [ -95.415033006322105, 29.573655156987488 ], [ -95.413742006532559, 29.573742157793067 ], [ -95.413376005929337, 29.573768156995563 ], [ -95.410406005426566, 29.574195157767537 ], [ -95.40953900491013, 29.574009157812004 ], [ -95.406768004535039, 29.574325157248868 ], [ -95.399003002818148, 29.575216158319133 ], [ -95.393550001613562, 29.575842158425452 ], [ -95.392387000423497, 29.575976158834017 ], [ -95.392063000356586, 29.57535515794811 ], [ -95.391631000645688, 29.574896158188526 ], [ -95.391532000894571, 29.574816158027687 ], [ -95.391280000555241, 29.575085158245429 ], [ -95.390928000452874, 29.575193158815448 ], [ -95.389766999802973, 29.57535515881812 ], [ -95.38844299953405, 29.575598158639288 ], [ -95.387976000268438, 29.57567115818453 ], [ -95.387855999751395, 29.575689158893827 ], [ -95.387655000232897, 29.575719158744217 ], [ -95.387041000051326, 29.575812158696859 ], [ -95.386787999454043, 29.575850158709006 ], [ -95.386687999197846, 29.57586515828261 ], [ -95.386520999581748, 29.575884158377534 ], [ -95.38636199904505, 29.575903158641111 ], [ -95.386315999306589, 29.577895159203194 ], [ -95.386378999764787, 29.580232159913251 ], [ -95.386484999617466, 29.584331160442602 ], [ -95.386503999371953, 29.585056160350955 ], [ -95.38649799984627, 29.585446160781764 ], [ -95.386491000215415, 29.585582160616514 ], [ -95.386684999470248, 29.585591161068869 ], [ -95.386782000283475, 29.585595160672725 ], [ -95.386864999707285, 29.585599160234551 ], [ -95.387046999953185, 29.585626160902027 ], [ -95.387373999723508, 29.585648160666665 ], [ -95.387884000690605, 29.585698161097046 ], [ -95.388002999734681, 29.58569816090759 ], [ -95.388133999826152, 29.585675160652649 ], [ -95.388159999961047, 29.58567116054115 ], [ -95.388412000208078, 29.585572160965711 ], [ -95.388449000522272, 29.585554160811988 ], [ -95.388826999989632, 29.585368160406048 ], [ -95.389110000582008, 29.585204160609216 ], [ -95.389231000741759, 29.585048160565503 ], [ -95.389293000420096, 29.584967160232676 ], [ -95.389482000984955, 29.584791160094483 ], [ -95.389935000342206, 29.584528160354605 ], [ -95.389991000687104, 29.584467160544943 ], [ -95.389998000931698, 29.584335160509447 ], [ -95.389991000266392, 29.584187160440926 ], [ -95.390023000612032, 29.584055159899613 ], [ -95.390098000645125, 29.5839781605982 ], [ -95.390275000297436, 29.583901159802775 ], [ -95.390507000365858, 29.583819159780166 ], [ -95.390577001093888, 29.583758160207811 ], [ -95.390797000609481, 29.583516160532813 ], [ -95.391061001242775, 29.583082159575824 ], [ -95.391156000634766, 29.582961159996444 ], [ -95.391294000823493, 29.582895160352976 ], [ -95.391546001235483, 29.582807159922663 ], [ -95.391778000981191, 29.582703159820156 ], [ -95.391974001230167, 29.582532160135091 ], [ -95.392112000782689, 29.582318159881321 ], [ -95.392257001622127, 29.582186160202717 ], [ -95.392559001632279, 29.581944159668534 ], [ -95.392659001709561, 29.5818291596939 ], [ -95.392722000819731, 29.581735159708717 ], [ -95.392817001261889, 29.581669159748149 ], [ -95.392899001644295, 29.581647159782019 ], [ -95.393012001759914, 29.581636159259734 ], [ -95.393106001631125, 29.581647159659511 ], [ -95.393282001018065, 29.581692159774391 ], [ -95.393811002026084, 29.581879159684419 ], [ -95.393892001788004, 29.581939159718932 ], [ -95.394194001641011, 29.582231159467963 ], [ -95.394270001802923, 29.582264160083653 ], [ -95.394854001724013, 29.582341160151525 ], [ -95.395175001898735, 29.582396159983279 ], [ -95.395609002095512, 29.582577160134214 ], [ -95.396049002393582, 29.582715159660253 ], [ -95.396144002193793, 29.582726159553875 ], [ -95.396295002383653, 29.582726159437659 ], [ -95.396315002278428, 29.58272116020721 ], [ -95.396377001738216, 29.582704160023003 ], [ -95.396578002134831, 29.582622159401172 ], [ -95.396987001908556, 29.582479159374589 ], [ -95.397509002879261, 29.58236915957719 ], [ -95.397880003107176, 29.582298160084946 ], [ -95.398408002878043, 29.582287159554614 ], [ -95.398553003231612, 29.582254159628302 ], [ -95.398742002603839, 29.582171159270597 ], [ -95.398987002587432, 29.582017159631725 ], [ -95.399069003162808, 29.581984159224724 ], [ -95.39923300256126, 29.581990159392777 ], [ -95.399358002609532, 29.582056159138574 ], [ -95.399516002657691, 29.58207315934434 ], [ -95.399987003660982, 29.582001159253277 ], [ -95.400403003547794, 29.581974159188412 ], [ -95.400509003211553, 29.581971159566304 ], [ -95.400612003691663, 29.581969159683975 ], [ -95.400720003771923, 29.581966159564374 ], [ -95.400840003253393, 29.581963159075926 ], [ -95.401333003073134, 29.581952159414922 ], [ -95.401981003830954, 29.581980159095565 ], [ -95.40247800379278, 29.581963159668724 ], [ -95.402893003514691, 29.581941159337553 ], [ -95.403239003753328, 29.581881159138817 ], [ -95.403529004476511, 29.581859158968609 ], [ -95.403862004273336, 29.581821159349044 ], [ -95.404107003779501, 29.581832159426355 ], [ -95.404460004041837, 29.581870158946973 ], [ -95.404623004511834, 29.581908159730954 ], [ -95.40464800462118, 29.581914159462741 ], [ -95.404812004259185, 29.582008159618383 ], [ -95.405183004000534, 29.582255159010199 ], [ -95.405365004309274, 29.58234915928972 ], [ -95.405592004815063, 29.582371159734805 ], [ -95.406063004737916, 29.582365158972109 ], [ -95.406525005180484, 29.582339159220567 ], [ -95.40691900460692, 29.582355159009708 ], [ -95.407340005536469, 29.582410159098487 ], [ -95.407527005379649, 29.582480159731229 ], [ -95.407617005481995, 29.582514159641324 ], [ -95.408083005020799, 29.582745158928667 ], [ -95.40835900508209, 29.582872159757759 ], [ -95.408617004970836, 29.582899159676547 ], [ -95.408730004929552, 29.582866159779254 ], [ -95.408851005507216, 29.582870159525019 ], [ -95.408925005842505, 29.582872159819932 ], [ -95.409297005192329, 29.582828158965093 ], [ -95.409554006145186, 29.5827231594761 ], [ -95.409661005216634, 29.582696159536727 ], [ -95.409856005852959, 29.582701158934444 ], [ -95.410794005901423, 29.582949159454703 ], [ -95.41153000588784, 29.58307015890291 ], [ -95.412435006486234, 29.583202159510357 ], [ -95.413096006164935, 29.583301159227961 ], [ -95.413530007115753, 29.583323158883605 ], [ -95.413794006586599, 29.583312158954449 ], [ -95.413970007113534, 29.583285159559011 ], [ -95.414027007154758, 29.583263158922311 ], [ -95.414108006411709, 29.583208159059218 ], [ -95.41429700711069, 29.583026159118262 ], [ -95.414498006905731, 29.582894159564113 ], [ -95.414612006824242, 29.582834159338105 ], [ -95.414788006667152, 29.582785159259824 ], [ -95.415058007497521, 29.58276315950609 ], [ -95.415316007267393, 29.582757159235491 ], [ -95.41569400708218, 29.58279015884818 ], [ -95.415983007754008, 29.582834158777668 ], [ -95.416272007321936, 29.582895159422886 ], [ -95.416618007080771, 29.583054159401073 ], [ -95.417008007115768, 29.583214159264848 ], [ -95.417115007482067, 29.583282159459607 ], [ -95.424125009514185, 29.580238158238465 ], [ -95.424293009022662, 29.580317157953463 ], [ -95.424569009535645, 29.579307158568994 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 45, "Tract": "48039660608", "Area_SqMi": 1.3053335634549696, "total_2009": 226, "total_2010": 326, "total_2011": 251, "total_2012": 198, "total_2013": 257, "total_2014": 213, "total_2015": 234, "total_2016": 264, "total_2017": 263, "total_2018": 346, "total_2019": 392, "total_2020": 396, "age1": 110, "age2": 237, "age3": 101, "earn1": 123, "earn2": 142, "earn3": 183, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 6, "naics_s07": 12, "naics_s08": 0, "naics_s09": 0, "naics_s10": 35, "naics_s11": 1, "naics_s12": 16, "naics_s13": 0, "naics_s14": 0, "naics_s15": 44, "naics_s16": 163, "naics_s17": 77, "naics_s18": 60, "naics_s19": 19, "naics_s20": 0, "race1": 300, "race2": 101, "race3": 1, "race4": 35, "race5": 1, "race6": 10, "ethnicity1": 328, "ethnicity2": 120, "edu1": 65, "edu2": 94, "edu3": 115, "edu4": 64, "Shape_Length": 33638.554806709057, "Shape_Area": 36390465.648402765, "total_2021": 415, "total_2022": 448 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.386563999013546, 29.57279415825424 ], [ -95.386757999529792, 29.570840157217571 ], [ -95.386542999304879, 29.57085815730192 ], [ -95.386284998964854, 29.570881157946843 ], [ -95.386256999467506, 29.570884157548459 ], [ -95.386005999485661, 29.570873157738372 ], [ -95.385913999238568, 29.570869157807877 ], [ -95.385752999086776, 29.570863157756488 ], [ -95.385466998889285, 29.57082115729051 ], [ -95.385023998980472, 29.57069515767386 ], [ -95.384768998641121, 29.570623158074604 ], [ -95.384646998641145, 29.570588158024329 ], [ -95.384525998337509, 29.570549157913852 ], [ -95.384387998783367, 29.570534157849405 ], [ -95.384267999106243, 29.570534157986163 ], [ -95.384298998363334, 29.570693157389467 ], [ -95.384310998711356, 29.570835157925078 ], [ -95.384297998893615, 29.571047158136643 ], [ -95.384274998356332, 29.571219158072363 ], [ -95.384193998352529, 29.571442158131532 ], [ -95.384107998884517, 29.571608157915769 ], [ -95.384011999097936, 29.571831157639465 ], [ -95.383947998869388, 29.572041157823946 ], [ -95.383918998534952, 29.572256158343961 ], [ -95.38392299906522, 29.572655157762821 ], [ -95.383941998407735, 29.57347815819724 ], [ -95.383955998813335, 29.57407315879319 ], [ -95.383980998640851, 29.574648158457606 ], [ -95.383992998379327, 29.575101158906627 ], [ -95.383989998933586, 29.575286158566016 ], [ -95.37951999778754, 29.575387158524681 ], [ -95.37637699653078, 29.575465158976399 ], [ -95.371894995935634, 29.575545159327834 ], [ -95.368290994507888, 29.575643159138988 ], [ -95.368208994995072, 29.57564615921806 ], [ -95.367856994453547, 29.575655159257668 ], [ -95.365840994045953, 29.575727159751466 ], [ -95.364267993941027, 29.575770159317464 ], [ -95.364140994110528, 29.575770159804016 ], [ -95.364002993547217, 29.575800159663959 ], [ -95.363875994111737, 29.575830159669891 ], [ -95.363773994094657, 29.575875159817095 ], [ -95.363693993454675, 29.575955159380733 ], [ -95.363590993622722, 29.576046159585264 ], [ -95.363538993399501, 29.576145159604714 ], [ -95.363497993178257, 29.576264159428735 ], [ -95.363480993740581, 29.576350159684907 ], [ -95.363477993804025, 29.576455159870882 ], [ -95.363608993975177, 29.579296159891975 ], [ -95.362926993336103, 29.580759160749619 ], [ -95.362586993826369, 29.581489160628617 ], [ -95.362549993899592, 29.581568160626937 ], [ -95.354128991126714, 29.581700160617771 ], [ -95.353189991379551, 29.581619160970991 ], [ -95.352910991260501, 29.581626161436194 ], [ -95.35221099119299, 29.581668160984528 ], [ -95.351813990576886, 29.581672161239073 ], [ -95.351831990311453, 29.581755160930257 ], [ -95.351891990519348, 29.582176161110617 ], [ -95.351958990402096, 29.582860161195413 ], [ -95.35195799101021, 29.58325716172596 ], [ -95.351957990985738, 29.584031161660782 ], [ -95.351931991393627, 29.584417161354011 ], [ -95.35190399052253, 29.584924161778268 ], [ -95.351902990928963, 29.584952161885447 ], [ -95.351908990772046, 29.585172161812885 ], [ -95.351913991229125, 29.585312161510384 ], [ -95.351913991401815, 29.58546016186364 ], [ -95.352207991101508, 29.585380162007549 ], [ -95.35255999110008, 29.585358161635632 ], [ -95.352936991196444, 29.585457161581495 ], [ -95.353188991644885, 29.585572161706775 ], [ -95.353496990941721, 29.585786161731978 ], [ -95.353893991859977, 29.586127161996867 ], [ -95.354604991966468, 29.586534161827768 ], [ -95.355151992334271, 29.58674216225598 ], [ -95.355485992497904, 29.58680816165667 ], [ -95.355994992030119, 29.586923162322293 ], [ -95.356227992429666, 29.586989161578991 ], [ -95.356397992221034, 29.586967161559087 ], [ -95.356529991776497, 29.586934162154652 ], [ -95.356818992327845, 29.586786162050782 ], [ -95.357038992693035, 29.586588162328283 ], [ -95.357233992784103, 29.586395162168898 ], [ -95.357692992026003, 29.58609816218102 ], [ -95.357982992429527, 29.585938161880868 ], [ -95.358610992633785, 29.585526161234686 ], [ -95.358812992907673, 29.585427161680439 ], [ -95.359113992470895, 29.585350161925227 ], [ -95.359384992972807, 29.585306161390051 ], [ -95.359541992460095, 29.585262161174949 ], [ -95.359642993239504, 29.585218161423526 ], [ -95.359786993419675, 29.585124161756056 ], [ -95.360038992551381, 29.585003161686146 ], [ -95.360290992995289, 29.584909161214835 ], [ -95.360497992749657, 29.584887161787041 ], [ -95.36073699292038, 29.584942161746337 ], [ -95.361189993059114, 29.585080161115084 ], [ -95.362536993214363, 29.585552161884934 ], [ -95.363039994144657, 29.585695161479251 ], [ -95.363423993615967, 29.585903161376553 ], [ -95.36380099403948, 29.585953161173368 ], [ -95.364053994148634, 29.585947161454829 ], [ -95.364392994590162, 29.585941161660163 ], [ -95.364605994648159, 29.585897161073888 ], [ -95.364939994113328, 29.58576016116179 ], [ -95.365039994465135, 29.585677161217447 ], [ -95.365310994039461, 29.585512161512007 ], [ -95.366473995114518, 29.585132161349453 ], [ -95.366926994382453, 29.584967160864647 ], [ -95.367366994760644, 29.584835160889821 ], [ -95.367781994679689, 29.584758161396156 ], [ -95.368102995132219, 29.584736161334948 ], [ -95.368228994859976, 29.584719161445783 ], [ -95.368411995459709, 29.584746161543457 ], [ -95.368574995503494, 29.58478516150846 ], [ -95.368763994841473, 29.584878161102047 ], [ -95.369027995770125, 29.585043161591905 ], [ -95.369745995895954, 29.585587161489276 ], [ -95.370135995619691, 29.585730160807906 ], [ -95.37055699611831, 29.585856160847925 ], [ -95.370663996152231, 29.585894161347721 ], [ -95.370965995881193, 29.586103161260525 ], [ -95.371437996061616, 29.586449161234157 ], [ -95.37175299570076, 29.586708161628888 ], [ -95.371934996593836, 29.586823161523853 ], [ -95.372060996180551, 29.586867161025452 ], [ -95.372595996428629, 29.587004161234233 ], [ -95.372740996738941, 29.587070161542179 ], [ -95.373426996321086, 29.58744416175341 ], [ -95.37422599697021, 29.587773161305552 ], [ -95.375005997352005, 29.588112162041298 ], [ -95.37523799670123, 29.588200161841812 ], [ -95.375420997578829, 29.588283161331894 ], [ -95.375621997068677, 29.588338161592919 ], [ -95.375766996913399, 29.588366161846132 ], [ -95.375948997363508, 29.588382161840812 ], [ -95.376068997297423, 29.588371161929881 ], [ -95.376187997343976, 29.58828916149346 ], [ -95.37637699774946, 29.588058161188467 ], [ -95.376508997073316, 29.587937161932153 ], [ -95.376659997729519, 29.58784916107242 ], [ -95.376785997444586, 29.587805161307543 ], [ -95.37711999784247, 29.587794161513084 ], [ -95.377754997864599, 29.587916161541028 ], [ -95.378049998059055, 29.587932161156651 ], [ -95.378307998113343, 29.587894161484762 ], [ -95.378779998098679, 29.587757161761768 ], [ -95.379978998513195, 29.587331161194445 ], [ -95.380327998767214, 29.58720716084569 ], [ -95.380906998418666, 29.587026160942706 ], [ -95.381136998235021, 29.586980161343945 ], [ -95.381264998978807, 29.586955161122383 ], [ -95.381906998511639, 29.586878161079998 ], [ -95.382460998702499, 29.586834161367673 ], [ -95.382875998878205, 29.58679016134624 ], [ -95.382929998668573, 29.586793160676567 ], [ -95.383152999538794, 29.586807160631491 ], [ -95.383699999458415, 29.586857160874871 ], [ -95.383919999556639, 29.586923160763259 ], [ -95.383988999153843, 29.586928161139948 ], [ -95.384158999476369, 29.58687316112702 ], [ -95.384429999544679, 29.586725161120231 ], [ -95.38471899946363, 29.586549161388664 ], [ -95.38488899897547, 29.586379160633626 ], [ -95.384970999607276, 29.586192161274578 ], [ -95.385152999954315, 29.585939160552215 ], [ -95.385310999845188, 29.585741160838751 ], [ -95.385505999152826, 29.585637160803607 ], [ -95.385719999246689, 29.585565161078542 ], [ -95.385782000097109, 29.585561161066337 ], [ -95.385889999667398, 29.585554160278207 ], [ -95.386050999976803, 29.585561160621005 ], [ -95.386491000215415, 29.585582160616514 ], [ -95.38649799984627, 29.585446160781764 ], [ -95.386503999371953, 29.585056160350955 ], [ -95.386484999617466, 29.584331160442602 ], [ -95.386378999764787, 29.580232159913251 ], [ -95.386315999306589, 29.577895159203194 ], [ -95.38636199904505, 29.575903158641111 ], [ -95.386371999878023, 29.575514158262699 ], [ -95.386376999582723, 29.575341158209955 ], [ -95.386396998852007, 29.574492158626544 ], [ -95.386505999397244, 29.573384158231981 ], [ -95.386563999013546, 29.57279415825424 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 46, "Tract": "48039660610", "Area_SqMi": 2.0500058264816303, "total_2009": 1923, "total_2010": 1678, "total_2011": 2323, "total_2012": 2274, "total_2013": 2655, "total_2014": 2701, "total_2015": 3078, "total_2016": 2855, "total_2017": 3146, "total_2018": 3534, "total_2019": 3523, "total_2020": 3529, "age1": 1478, "age2": 1711, "age3": 638, "earn1": 1363, "earn2": 1589, "earn3": 875, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 21, "naics_s06": 20, "naics_s07": 951, "naics_s08": 84, "naics_s09": 3, "naics_s10": 99, "naics_s11": 57, "naics_s12": 131, "naics_s13": 0, "naics_s14": 34, "naics_s15": 63, "naics_s16": 912, "naics_s17": 42, "naics_s18": 1238, "naics_s19": 129, "naics_s20": 0, "race1": 2473, "race2": 910, "race3": 32, "race4": 338, "race5": 2, "race6": 72, "ethnicity1": 2611, "ethnicity2": 1216, "edu1": 502, "edu2": 642, "edu3": 739, "edu4": 466, "Shape_Length": 33315.973497399216, "Shape_Area": 57150653.822270162, "total_2021": 3736, "total_2022": 3827 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.387920998592378, 29.557684154623285 ], [ -95.387921999285751, 29.556910154787825 ], [ -95.387903998755448, 29.555876154497131 ], [ -95.38769399905965, 29.555883154901828 ], [ -95.387455999219753, 29.555887154408953 ], [ -95.386904998554712, 29.555897154462084 ], [ -95.386768998803859, 29.555899154151586 ], [ -95.385984998136749, 29.5559131543035 ], [ -95.384559998012378, 29.555962154223078 ], [ -95.384286998295011, 29.555971154260341 ], [ -95.38393499801802, 29.555973154549307 ], [ -95.383733997367571, 29.555974154380188 ], [ -95.382032996962721, 29.55598215459268 ], [ -95.381543997664636, 29.555990155019568 ], [ -95.381107996890435, 29.555997155167905 ], [ -95.378691996756231, 29.556035154547274 ], [ -95.377687996125346, 29.556051155152744 ], [ -95.377354996357298, 29.55605715535016 ], [ -95.37624299567311, 29.556089155406333 ], [ -95.374910995680153, 29.556128155243268 ], [ -95.374781995512421, 29.556132155087926 ], [ -95.373161995607916, 29.556181155308195 ], [ -95.372898995184556, 29.556190155105032 ], [ -95.372405994600044, 29.5562051549926 ], [ -95.370832994191048, 29.556257155132357 ], [ -95.37007199394607, 29.55628215512953 ], [ -95.369913994352459, 29.556287154966469 ], [ -95.369442993763741, 29.556327155042293 ], [ -95.368896994401808, 29.556400154839483 ], [ -95.368501994369439, 29.556506155385343 ], [ -95.367853993612087, 29.5566821553269 ], [ -95.367722993751897, 29.556721155440137 ], [ -95.367630994100111, 29.556765155162712 ], [ -95.367255993932943, 29.556949155349749 ], [ -95.366906993698962, 29.557119155714915 ], [ -95.366573993288114, 29.557321155098272 ], [ -95.366186993899461, 29.557562155836369 ], [ -95.365799993683225, 29.557833155332375 ], [ -95.365504993220881, 29.558012155545303 ], [ -95.365313992986074, 29.558105155889894 ], [ -95.364923992853335, 29.558295155801048 ], [ -95.364516993028857, 29.558458156287465 ], [ -95.364317993090509, 29.558520156144066 ], [ -95.364177993353536, 29.558563155448226 ], [ -95.363862992725629, 29.558648155863576 ], [ -95.363713992513198, 29.558677156214557 ], [ -95.363427992876254, 29.558737155509618 ], [ -95.363301992574875, 29.558751155810757 ], [ -95.362828992698425, 29.558804156195372 ], [ -95.362149992817308, 29.558823156174913 ], [ -95.360887991654693, 29.558856155652713 ], [ -95.360643992071232, 29.558865155762522 ], [ -95.360463992426361, 29.558871156256473 ], [ -95.360412992298791, 29.558871155662906 ], [ -95.359002991873012, 29.558885155731858 ], [ -95.357449991359204, 29.558902156092181 ], [ -95.356701990552693, 29.558908156348703 ], [ -95.355596990543958, 29.558928155946905 ], [ -95.354267990153048, 29.558940156618235 ], [ -95.352453990230103, 29.558958156314663 ], [ -95.351184989670543, 29.558972156540406 ], [ -95.350536989778576, 29.558981156064693 ], [ -95.350451989370413, 29.558983156696321 ], [ -95.35046098928477, 29.56014115687125 ], [ -95.350469989631861, 29.561121156493702 ], [ -95.350483989673691, 29.562622157582425 ], [ -95.350531989575813, 29.564099157521802 ], [ -95.350554989885694, 29.56512015778657 ], [ -95.350577989923934, 29.565776157581379 ], [ -95.350591989901801, 29.566365157701139 ], [ -95.350596990331837, 29.566599157822246 ], [ -95.350599990308766, 29.567072158497115 ], [ -95.350620989775479, 29.567965158081162 ], [ -95.350623989533915, 29.568105158005878 ], [ -95.350637990096658, 29.568732158488856 ], [ -95.350647989597746, 29.569018158546722 ], [ -95.350640990326497, 29.569122158859056 ], [ -95.350667990149176, 29.569714158194589 ], [ -95.350686989694097, 29.570591158905373 ], [ -95.352395990800204, 29.570577159171592 ], [ -95.353936990981751, 29.570563158753295 ], [ -95.354580990617563, 29.570556158543948 ], [ -95.355879991716463, 29.570535158299204 ], [ -95.357105991647714, 29.570518158255283 ], [ -95.358055992147001, 29.570503158604488 ], [ -95.35843999151399, 29.570496158301982 ], [ -95.358524992332761, 29.570495158878664 ], [ -95.359070992371983, 29.570492158701978 ], [ -95.359818992655036, 29.570488158652157 ], [ -95.360232992175938, 29.570474158593992 ], [ -95.361187993162687, 29.570438158390019 ], [ -95.36170599317218, 29.570457158341934 ], [ -95.361807993302435, 29.570464158733593 ], [ -95.362139992500559, 29.570487158415638 ], [ -95.362590993502295, 29.570551158816215 ], [ -95.363078993194762, 29.570637158179142 ], [ -95.363359993605755, 29.570714158295026 ], [ -95.363574993575, 29.570771158286767 ], [ -95.363900993907706, 29.570837158085698 ], [ -95.364263993933676, 29.570921158256215 ], [ -95.364517994024354, 29.570961158187497 ], [ -95.365527993683955, 29.570949158114455 ], [ -95.365776993908085, 29.570946158170738 ], [ -95.366501993597467, 29.570931158724765 ], [ -95.368145994296015, 29.570894158597376 ], [ -95.370752994973003, 29.570836158168785 ], [ -95.372766995557612, 29.570792157751391 ], [ -95.373645995859263, 29.570771157952173 ], [ -95.374352995771986, 29.570765157855408 ], [ -95.375701996524242, 29.570757157854135 ], [ -95.375934996743069, 29.570751157990273 ], [ -95.376934996749739, 29.570728157998936 ], [ -95.377481996398132, 29.570716157591445 ], [ -95.379900997056282, 29.570653157646081 ], [ -95.380627997203291, 29.57063515787852 ], [ -95.380867998080518, 29.570628158153916 ], [ -95.381458998307977, 29.570610157484495 ], [ -95.383773998441001, 29.570536157487602 ], [ -95.383992998869772, 29.570530157750284 ], [ -95.384267999106243, 29.570534157986163 ], [ -95.384387998783367, 29.570534157849405 ], [ -95.384525998337509, 29.570549157913852 ], [ -95.384646998641145, 29.570588158024329 ], [ -95.384768998641121, 29.570623158074604 ], [ -95.385023998980472, 29.57069515767386 ], [ -95.385466998889285, 29.57082115729051 ], [ -95.385752999086776, 29.570863157756488 ], [ -95.385913999238568, 29.570869157807877 ], [ -95.386005999485661, 29.570873157738372 ], [ -95.386256999467506, 29.570884157548459 ], [ -95.386284998964854, 29.570881157946843 ], [ -95.386542999304879, 29.57085815730192 ], [ -95.386757999529792, 29.570840157217571 ], [ -95.386768999741449, 29.570706158011372 ], [ -95.3867869989799, 29.57049215785209 ], [ -95.386818999388339, 29.570147157078534 ], [ -95.387194999584977, 29.566164156415827 ], [ -95.387345999308394, 29.564677155943532 ], [ -95.387398999367392, 29.564119156027456 ], [ -95.387513998866538, 29.562936155539784 ], [ -95.387558998651002, 29.562467155614147 ], [ -95.387603998609166, 29.562013155923438 ], [ -95.38784499854637, 29.559557155459835 ], [ -95.38789799876821, 29.55858915501376 ], [ -95.387920998592378, 29.557684154623285 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 47, "Tract": "48039660704", "Area_SqMi": 1.4520930216325265, "total_2009": 645, "total_2010": 777, "total_2011": 818, "total_2012": 1096, "total_2013": 1176, "total_2014": 549, "total_2015": 513, "total_2016": 567, "total_2017": 572, "total_2018": 638, "total_2019": 589, "total_2020": 835, "age1": 224, "age2": 512, "age3": 183, "earn1": 184, "earn2": 243, "earn3": 492, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 0, "naics_s06": 22, "naics_s07": 93, "naics_s08": 0, "naics_s09": 0, "naics_s10": 18, "naics_s11": 29, "naics_s12": 319, "naics_s13": 1, "naics_s14": 18, "naics_s15": 36, "naics_s16": 253, "naics_s17": 0, "naics_s18": 83, "naics_s19": 25, "naics_s20": 0, "race1": 645, "race2": 168, "race3": 6, "race4": 81, "race5": 2, "race6": 17, "ethnicity1": 679, "ethnicity2": 240, "edu1": 118, "edu2": 165, "edu3": 213, "edu4": 199, "Shape_Length": 25160.084004128308, "Shape_Area": 40481868.161070041, "total_2021": 903, "total_2022": 919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.368143993576098, 29.540733152468672 ], [ -95.368150992994074, 29.540456151964328 ], [ -95.368141993583549, 29.540210152124718 ], [ -95.368117993095026, 29.539965152107783 ], [ -95.368078992666995, 29.539721151933588 ], [ -95.368025993317218, 29.539479151907262 ], [ -95.368008993444178, 29.539379152106321 ], [ -95.367067993054917, 29.539322151617785 ], [ -95.366842992723278, 29.539290152191594 ], [ -95.366593992482606, 29.539255152194038 ], [ -95.365618992355124, 29.538996151757125 ], [ -95.365221991886429, 29.538905151995696 ], [ -95.36481499255521, 29.538849151933789 ], [ -95.364005991995327, 29.538809152006817 ], [ -95.363761991558604, 29.538826151878105 ], [ -95.363706991581495, 29.538829151538209 ], [ -95.363327991619386, 29.538856151407526 ], [ -95.362839991859204, 29.538949151693107 ], [ -95.36273199130197, 29.538970151827002 ], [ -95.359966991309662, 29.53978415227202 ], [ -95.359781991045111, 29.539846152139457 ], [ -95.356772989994766, 29.540900152562344 ], [ -95.356635990644904, 29.540948152361644 ], [ -95.355435989693405, 29.541366152495886 ], [ -95.354400989725008, 29.541727152532587 ], [ -95.353729989733964, 29.541922152934884 ], [ -95.353350989301703, 29.542003152625334 ], [ -95.35301498937271, 29.542063152503044 ], [ -95.352530989560393, 29.542126152600289 ], [ -95.351789988698258, 29.54215515274003 ], [ -95.350078989014648, 29.542165153175596 ], [ -95.349770988280369, 29.542168153291264 ], [ -95.347476988073112, 29.54221115343519 ], [ -95.34744198774311, 29.543461152902548 ], [ -95.347475987655713, 29.544400153324649 ], [ -95.347471987932508, 29.544560153201317 ], [ -95.347468988371645, 29.544717153574776 ], [ -95.347502987925921, 29.546421153644623 ], [ -95.34753698852694, 29.547414154111848 ], [ -95.347547987794115, 29.547949154252464 ], [ -95.347587988392917, 29.549893154974615 ], [ -95.347592987969946, 29.550047154574266 ], [ -95.347648988460676, 29.551809154667463 ], [ -95.347652988293845, 29.552099154840569 ], [ -95.347653988717568, 29.552254155468191 ], [ -95.347698988103744, 29.5527031555166 ], [ -95.347802988862881, 29.553139155614872 ], [ -95.348016988216685, 29.55374315502943 ], [ -95.348153988973792, 29.554068155928874 ], [ -95.348278988194053, 29.554248155698925 ], [ -95.348698988790829, 29.554832155618133 ], [ -95.348913988888569, 29.555068156024113 ], [ -95.349179988677136, 29.555400155961301 ], [ -95.349498989345051, 29.555867155637664 ], [ -95.349738988924443, 29.556277156028674 ], [ -95.349913989439642, 29.55664115576862 ], [ -95.350186989727931, 29.557323156320393 ], [ -95.350290989801849, 29.557758156107401 ], [ -95.350323989218566, 29.558122156522739 ], [ -95.350348989483606, 29.558986156411923 ], [ -95.350451989370413, 29.558983156696321 ], [ -95.350536989778576, 29.558981156064693 ], [ -95.351184989670543, 29.558972156540406 ], [ -95.352453990230103, 29.558958156314663 ], [ -95.354267990153048, 29.558940156618235 ], [ -95.355596990543958, 29.558928155946905 ], [ -95.356701990552693, 29.558908156348703 ], [ -95.357449991359204, 29.558902156092181 ], [ -95.359002991873012, 29.558885155731858 ], [ -95.360412992298791, 29.558871155662906 ], [ -95.360463992426361, 29.558871156256473 ], [ -95.360643992071232, 29.558865155762522 ], [ -95.360887991654693, 29.558856155652713 ], [ -95.362149992817308, 29.558823156174913 ], [ -95.362828992698425, 29.558804156195372 ], [ -95.363301992574875, 29.558751155810757 ], [ -95.363427992876254, 29.558737155509618 ], [ -95.363713992513198, 29.558677156214557 ], [ -95.363862992725629, 29.558648155863576 ], [ -95.364177993353536, 29.558563155448226 ], [ -95.364317993090509, 29.558520156144066 ], [ -95.364516993028857, 29.558458156287465 ], [ -95.364923992853335, 29.558295155801048 ], [ -95.365313992986074, 29.558105155889894 ], [ -95.365504993220881, 29.558012155545303 ], [ -95.365799993683225, 29.557833155332375 ], [ -95.366186993899461, 29.557562155836369 ], [ -95.366573993288114, 29.557321155098272 ], [ -95.366906993698962, 29.557119155714915 ], [ -95.367255993932943, 29.556949155349749 ], [ -95.367630994100111, 29.556765155162712 ], [ -95.367722993751897, 29.556721155440137 ], [ -95.367667993309212, 29.556600154911074 ], [ -95.367605994230786, 29.556461155522573 ], [ -95.367462994062933, 29.556089155485726 ], [ -95.367362993359848, 29.555644155553743 ], [ -95.367320993238778, 29.555415155331726 ], [ -95.367311993554182, 29.555226155320298 ], [ -95.367304993325789, 29.555050155428518 ], [ -95.367336993234289, 29.554754154856155 ], [ -95.367373993200118, 29.554508155076938 ], [ -95.367407993258411, 29.554356154570783 ], [ -95.367517993326103, 29.553551154703779 ], [ -95.367489993855187, 29.553009155025599 ], [ -95.36745299390445, 29.552314154446872 ], [ -95.367440993136924, 29.551714154746175 ], [ -95.367429993639377, 29.551487154680956 ], [ -95.367314993749659, 29.549006154067285 ], [ -95.367275993393179, 29.548152153851326 ], [ -95.367243993275508, 29.54475115266651 ], [ -95.367218993269233, 29.544535153253367 ], [ -95.367207993335072, 29.544319153262162 ], [ -95.367209993466815, 29.544102152401162 ], [ -95.367225993171658, 29.543888152484854 ], [ -95.367238993599798, 29.543779152564454 ], [ -95.367257992844856, 29.543680152519439 ], [ -95.367271992935216, 29.54358215226026 ], [ -95.367319992778462, 29.543372152371063 ], [ -95.36738199264073, 29.54316115257858 ], [ -95.367456993014898, 29.542954152933348 ], [ -95.367543993078314, 29.542752152613005 ], [ -95.367592993441662, 29.542652152221795 ], [ -95.367681993654941, 29.542486152288006 ], [ -95.367727993298189, 29.542363152183764 ], [ -95.367795993267407, 29.542182152657283 ], [ -95.36786399318855, 29.542003152609706 ], [ -95.367869993000369, 29.541989151991388 ], [ -95.367899993695119, 29.541910152476035 ], [ -95.368025993674124, 29.541498151858995 ], [ -95.36807599286891, 29.541273152298192 ], [ -95.368115993520789, 29.541029152466731 ], [ -95.368143993576098, 29.540733152468672 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 48, "Tract": "48039660501", "Area_SqMi": 2.6717316798902275, "total_2009": 790, "total_2010": 721, "total_2011": 794, "total_2012": 874, "total_2013": 904, "total_2014": 1023, "total_2015": 1018, "total_2016": 1065, "total_2017": 1122, "total_2018": 998, "total_2019": 1018, "total_2020": 1097, "age1": 339, "age2": 476, "age3": 259, "earn1": 308, "earn2": 428, "earn3": 338, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 74, "naics_s05": 47, "naics_s06": 12, "naics_s07": 216, "naics_s08": 0, "naics_s09": 2, "naics_s10": 38, "naics_s11": 27, "naics_s12": 57, "naics_s13": 13, "naics_s14": 184, "naics_s15": 86, "naics_s16": 47, "naics_s17": 0, "naics_s18": 202, "naics_s19": 69, "naics_s20": 0, "race1": 766, "race2": 171, "race3": 9, "race4": 108, "race5": 1, "race6": 19, "ethnicity1": 679, "ethnicity2": 395, "edu1": 176, "edu2": 209, "edu3": 196, "edu4": 154, "Shape_Length": 43285.756028058808, "Shape_Area": 74483306.520869032, "total_2021": 1124, "total_2022": 1074 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.35195799101021, 29.58325716172596 ], [ -95.351958990402096, 29.582860161195413 ], [ -95.351891990519348, 29.582176161110617 ], [ -95.351831990311453, 29.581755160930257 ], [ -95.351813990576886, 29.581672161239073 ], [ -95.351686990641809, 29.581126161159325 ], [ -95.351643990745885, 29.580967160848694 ], [ -95.351474990574701, 29.58040816037883 ], [ -95.351221991026563, 29.579641160743233 ], [ -95.351077990802537, 29.579069160881584 ], [ -95.350979990800894, 29.578726160173602 ], [ -95.350917990452857, 29.578481160554098 ], [ -95.35082599053095, 29.57637616030927 ], [ -95.350787989947364, 29.574933159357947 ], [ -95.350686989694097, 29.570591158905373 ], [ -95.350667990149176, 29.569714158194589 ], [ -95.350640990326497, 29.569122158859056 ], [ -95.350647989597746, 29.569018158546722 ], [ -95.350637990096658, 29.568732158488856 ], [ -95.350623989533915, 29.568105158005878 ], [ -95.350620989775479, 29.567965158081162 ], [ -95.350599990308766, 29.567072158497115 ], [ -95.350596990331837, 29.566599157822246 ], [ -95.350591989901801, 29.566365157701139 ], [ -95.350577989923934, 29.565776157581379 ], [ -95.350554989885694, 29.56512015778657 ], [ -95.350531989575813, 29.564099157521802 ], [ -95.350483989673691, 29.562622157582425 ], [ -95.350469989631861, 29.561121156493702 ], [ -95.35046098928477, 29.56014115687125 ], [ -95.350451989370413, 29.558983156696321 ], [ -95.350348989483606, 29.558986156411923 ], [ -95.347769988633047, 29.559085156499997 ], [ -95.345203988417779, 29.559121156527873 ], [ -95.344849987820353, 29.559127156625003 ], [ -95.344618987520008, 29.559130156627752 ], [ -95.343452987500115, 29.559146157057221 ], [ -95.342609987035146, 29.559158156913917 ], [ -95.342049987198806, 29.559165156623767 ], [ -95.341264987168245, 29.559174156882083 ], [ -95.340151986735592, 29.559187157122153 ], [ -95.339811986907193, 29.559192156754474 ], [ -95.33979798687065, 29.559192157212156 ], [ -95.339577986499648, 29.559195157118261 ], [ -95.338134986343803, 29.559214157266318 ], [ -95.337567986027679, 29.559222157077368 ], [ -95.33680898577532, 29.559229156792743 ], [ -95.33601498625201, 29.559238156874123 ], [ -95.334733985247652, 29.559254156670161 ], [ -95.334586985815264, 29.559256156730562 ], [ -95.333274984741124, 29.559270157221516 ], [ -95.332489984920997, 29.559297156838813 ], [ -95.332298984835106, 29.559298157053536 ], [ -95.331035984081112, 29.559300157188837 ], [ -95.329247984527555, 29.559260156977203 ], [ -95.328316983640676, 29.5592801570502 ], [ -95.327580983569845, 29.559289156836872 ], [ -95.326963983812149, 29.559295157254947 ], [ -95.326962983616497, 29.559489157263869 ], [ -95.326973983693662, 29.560195157836922 ], [ -95.327032983917093, 29.561461157640739 ], [ -95.327083983739044, 29.563923158578628 ], [ -95.327132984176146, 29.565975158742432 ], [ -95.327184984207264, 29.568062159311548 ], [ -95.327204984123441, 29.56900915929215 ], [ -95.327210984030984, 29.569316159536616 ], [ -95.327214983808403, 29.569468159254608 ], [ -95.327249984331317, 29.571134159287645 ], [ -95.327271983632016, 29.572186160044346 ], [ -95.327308984373005, 29.573813160494936 ], [ -95.327367984282901, 29.574931160649008 ], [ -95.327372984614627, 29.575120160292133 ], [ -95.327380984767984, 29.575656160748448 ], [ -95.327391984171129, 29.576327161115977 ], [ -95.327395984649854, 29.576733161228532 ], [ -95.327438984582585, 29.577625160780062 ], [ -95.327441983873385, 29.577780161339195 ], [ -95.327445984074728, 29.577911160820587 ], [ -95.327519984271817, 29.580782161398282 ], [ -95.327525984402911, 29.581038161748697 ], [ -95.32754198439045, 29.582535162219042 ], [ -95.327560985158456, 29.582983161773779 ], [ -95.32756798417158, 29.583160161940427 ], [ -95.327570984393446, 29.583431162376403 ], [ -95.327766984439506, 29.583422162442542 ], [ -95.330668985871284, 29.583389162436706 ], [ -95.330692985338928, 29.582344161857332 ], [ -95.3306509854891, 29.581033161339068 ], [ -95.330638985027079, 29.580650161388103 ], [ -95.330786985465139, 29.580662161834493 ], [ -95.330792985850636, 29.580273161546213 ], [ -95.33365298632279, 29.580295161012998 ], [ -95.333758986229583, 29.580545161687834 ], [ -95.333781986653293, 29.581924161973053 ], [ -95.336897986728317, 29.581880161785442 ], [ -95.336888987427756, 29.581925161214826 ], [ -95.33686998670278, 29.582021161860681 ], [ -95.336862987342158, 29.582061161757451 ], [ -95.336887987048812, 29.583107161574759 ], [ -95.337093986911782, 29.583113161405361 ], [ -95.337132987577718, 29.58801816307879 ], [ -95.337005987726087, 29.588020163010953 ], [ -95.336804986747836, 29.588023163066342 ], [ -95.336637987596433, 29.588024162920206 ], [ -95.33673698783511, 29.591669163834677 ], [ -95.336837987570959, 29.595445164566755 ], [ -95.336898987982778, 29.595410164069545 ], [ -95.337011987850985, 29.595336163953167 ], [ -95.337119987873166, 29.595257163930089 ], [ -95.337222987716316, 29.595172164700617 ], [ -95.33726098816588, 29.59513616417561 ], [ -95.337290987378779, 29.595102164334993 ], [ -95.337324987434002, 29.595056164144111 ], [ -95.337349987760931, 29.595013164591215 ], [ -95.337359987794457, 29.594988164247795 ], [ -95.337366987687403, 29.594961164399731 ], [ -95.337367987233321, 29.594933164352263 ], [ -95.337364987170815, 29.594894164474145 ], [ -95.337359987993537, 29.594806163889707 ], [ -95.33733998759628, 29.594733164581534 ], [ -95.337319987696944, 29.594658163968393 ], [ -95.337270987266322, 29.594511164245102 ], [ -95.337232987422411, 29.594341163981262 ], [ -95.337244987603114, 29.594216164455748 ], [ -95.337257987210975, 29.594144164369567 ], [ -95.337277987675961, 29.594072163691227 ], [ -95.337301987646143, 29.594011163745257 ], [ -95.337327988086571, 29.593963164369864 ], [ -95.337358988056906, 29.593923163601005 ], [ -95.337389987920432, 29.59389316397537 ], [ -95.337427987159984, 29.593865164115769 ], [ -95.337449987278831, 29.593851164186965 ], [ -95.337698987801232, 29.593693164162911 ], [ -95.337920987330349, 29.593562163971452 ], [ -95.337978987269409, 29.593532164041434 ], [ -95.338038988078367, 29.593506163714618 ], [ -95.338119988168813, 29.593480164081271 ], [ -95.33819398747805, 29.593464163483137 ], [ -95.338265987533006, 29.593456163924618 ], [ -95.338340987916936, 29.593454163735391 ], [ -95.338353987644354, 29.593454163904678 ], [ -95.338724988211666, 29.593467164018545 ], [ -95.339032987741234, 29.593496163685291 ], [ -95.339161988038256, 29.593495164239926 ], [ -95.339190988263169, 29.593499164308991 ], [ -95.339224987925121, 29.593504164180089 ], [ -95.339258987590341, 29.593509164042494 ], [ -95.339327987854475, 29.59351616343525 ], [ -95.33939598793468, 29.593522164103987 ], [ -95.339476987836079, 29.593525164185117 ], [ -95.339533988635807, 29.593527163578489 ], [ -95.339584987771559, 29.593527163507545 ], [ -95.339723988514805, 29.593539163601388 ], [ -95.339864987881327, 29.593551164072263 ], [ -95.340094988592298, 29.593565163456883 ], [ -95.340108988444427, 29.593569163653939 ], [ -95.340136987827037, 29.593576163829844 ], [ -95.340155987884927, 29.593574164187732 ], [ -95.340185987936181, 29.593584163736466 ], [ -95.340207988796635, 29.593586163955734 ], [ -95.340224988177795, 29.593587163442468 ], [ -95.340257988117898, 29.593586164257939 ], [ -95.340271988411601, 29.593585163425377 ], [ -95.340300988418676, 29.593582163617281 ], [ -95.340325988459611, 29.593577164093485 ], [ -95.340442988041815, 29.593558163606932 ], [ -95.34045898862405, 29.593556164012082 ], [ -95.340470988568001, 29.59355316399396 ], [ -95.340487988021735, 29.593545163411264 ], [ -95.340499988680961, 29.593538163493548 ], [ -95.340512988834632, 29.593527163919546 ], [ -95.340521988348797, 29.593515163924419 ], [ -95.34053098823513, 29.593501163529243 ], [ -95.340541988772159, 29.593487163701173 ], [ -95.340549988424016, 29.593478164047543 ], [ -95.340565988401963, 29.593465163976038 ], [ -95.340584988223824, 29.593447163698222 ], [ -95.340610988379183, 29.593446163414004 ], [ -95.34060098895398, 29.593231163584203 ], [ -95.340582988561593, 29.592742164036039 ], [ -95.340725988285001, 29.592521163371021 ], [ -95.340783988780103, 29.592433163922717 ], [ -95.340807988048027, 29.592429163323622 ], [ -95.340885988029044, 29.592427163440863 ], [ -95.341062988806499, 29.592422163639952 ], [ -95.341677988503818, 29.592125163550193 ], [ -95.341866989218488, 29.591939163133492 ], [ -95.342140989195158, 29.591434163752844 ], [ -95.342207989160485, 29.591308163703967 ], [ -95.342242989047008, 29.591237163773933 ], [ -95.342321989094415, 29.591078163674599 ], [ -95.34256898857393, 29.590896162949534 ], [ -95.342852989008577, 29.590640163440273 ], [ -95.343198988563131, 29.590413163484239 ], [ -95.343247989045679, 29.590383163564901 ], [ -95.343272989342708, 29.590367163071704 ], [ -95.343296988787785, 29.59035116319826 ], [ -95.343320988901098, 29.59033416313417 ], [ -95.343344989006383, 29.590317163065638 ], [ -95.343362988724948, 29.590304163176143 ], [ -95.343384989225228, 29.590287163504758 ], [ -95.343413989158279, 29.590264163463537 ], [ -95.343436989095522, 29.590246162915399 ], [ -95.343458988856042, 29.590227162802503 ], [ -95.343480988608434, 29.590208162685869 ], [ -95.343501988541945, 29.590189163219826 ], [ -95.343522989173678, 29.590169162662139 ], [ -95.343545988604362, 29.590147163068398 ], [ -95.343563989538254, 29.590129163064905 ], [ -95.343583988945127, 29.59010816290921 ], [ -95.343598989154842, 29.590092163434296 ], [ -95.343616988601482, 29.590070163466866 ], [ -95.343636989017725, 29.590049163331177 ], [ -95.343658988854415, 29.590022163355982 ], [ -95.343673989352482, 29.590004163471356 ], [ -95.343695989201947, 29.58997716258791 ], [ -95.343705988837954, 29.589965162643292 ], [ -95.343980989624114, 29.589661163186779 ], [ -95.34399898943667, 29.589632162649323 ], [ -95.344156989692465, 29.589445162892087 ], [ -95.344261989681812, 29.589302162422442 ], [ -95.344288989576029, 29.589268163059963 ], [ -95.344309989668986, 29.589242162945943 ], [ -95.344340989139667, 29.589201163119924 ], [ -95.3443659894441, 29.589167163258352 ], [ -95.344385989659614, 29.589127162729739 ], [ -95.344405988769878, 29.589109163062655 ], [ -95.344411988868416, 29.589099162500688 ], [ -95.344425989027314, 29.589072163143815 ], [ -95.344435989078079, 29.589045162794406 ], [ -95.344434989228759, 29.589020162847664 ], [ -95.34444998946725, 29.588991162425078 ], [ -95.344451989016306, 29.588969162914363 ], [ -95.34445098918782, 29.588933162520366 ], [ -95.344451989165151, 29.58890616265268 ], [ -95.344453989009594, 29.588882162739921 ], [ -95.344457988783319, 29.58885916262107 ], [ -95.344455989337064, 29.588840162763933 ], [ -95.34446898885696, 29.588819162561474 ], [ -95.344485988973645, 29.588780162381898 ], [ -95.3444929888677, 29.588762163126827 ], [ -95.344502989045083, 29.588741163101719 ], [ -95.344515989310594, 29.588722162422144 ], [ -95.344523989535261, 29.588711163049553 ], [ -95.344534989569382, 29.58869316297654 ], [ -95.344543989304057, 29.588673162894796 ], [ -95.34455198890366, 29.588652162357633 ], [ -95.344552989127877, 29.588612162539899 ], [ -95.344552988821022, 29.588515162517893 ], [ -95.344548989614864, 29.588424162767957 ], [ -95.344544989497393, 29.588380162692658 ], [ -95.344540989679118, 29.588334162215052 ], [ -95.344526989320286, 29.588231162920472 ], [ -95.344500988910227, 29.588112162795195 ], [ -95.344494988710593, 29.588094163035084 ], [ -95.344487989419633, 29.58807516284751 ], [ -95.344481989327321, 29.588060162801849 ], [ -95.344475989604121, 29.588046162970898 ], [ -95.344470989007689, 29.588033162665049 ], [ -95.344464989654895, 29.588020163048583 ], [ -95.344458989671267, 29.588008162716893 ], [ -95.3444509894086, 29.587994162375431 ], [ -95.344445989552085, 29.587983162498645 ], [ -95.344438988752088, 29.587971162798933 ], [ -95.344431989017821, 29.587959162225207 ], [ -95.34441898914983, 29.587943162953422 ], [ -95.344415989211072, 29.587933162870261 ], [ -95.344408988817037, 29.587922162482094 ], [ -95.344400989301235, 29.58791016256756 ], [ -95.344392989520927, 29.587900162152657 ], [ -95.344384989343411, 29.587889162423977 ], [ -95.344374988890962, 29.587876162684243 ], [ -95.344363989350825, 29.587862162515567 ], [ -95.344352989514348, 29.587850162747998 ], [ -95.34434498871164, 29.587840162301873 ], [ -95.344337988763968, 29.587833162742022 ], [ -95.344326989397828, 29.587825162902615 ], [ -95.344321989197056, 29.587813162805698 ], [ -95.344312989579151, 29.587800162428945 ], [ -95.344305989571026, 29.587790162250194 ], [ -95.344298988898117, 29.587781162257965 ], [ -95.344289988888136, 29.587767162566347 ], [ -95.344283989305467, 29.587756162441181 ], [ -95.344277989057687, 29.587746162502633 ], [ -95.344267989503791, 29.587727162450079 ], [ -95.344262989378848, 29.587718162967931 ], [ -95.344256989071468, 29.587705162411158 ], [ -95.344250988733322, 29.587692162755921 ], [ -95.344240989395615, 29.587668162583633 ], [ -95.344233989101141, 29.587635162187148 ], [ -95.344228989301214, 29.587613162752945 ], [ -95.344226988985412, 29.587597162574255 ], [ -95.344223989140289, 29.587565162487103 ], [ -95.344218989441032, 29.587546162767648 ], [ -95.344215988758094, 29.587520162082779 ], [ -95.344213988923244, 29.587497162285537 ], [ -95.344211989089303, 29.587474162488142 ], [ -95.344213989534055, 29.587446162668648 ], [ -95.34421198865175, 29.587434162391702 ], [ -95.344212988722788, 29.587421162682915 ], [ -95.344210989237752, 29.587410162649302 ], [ -95.344218989441572, 29.58738816284087 ], [ -95.344226989213936, 29.587362162199167 ], [ -95.344235988700461, 29.587336162700854 ], [ -95.344242989334404, 29.587320162079671 ], [ -95.344251989005329, 29.587300162011331 ], [ -95.344263989351987, 29.587281162009781 ], [ -95.344342989042175, 29.587182162216546 ], [ -95.344354989524007, 29.587169162539688 ], [ -95.344365988955275, 29.587158162092752 ], [ -95.344379989327379, 29.587146162209393 ], [ -95.344399989183273, 29.587131162279032 ], [ -95.3444209895477, 29.587118162115168 ], [ -95.344433989298309, 29.587112162290421 ], [ -95.344446989047384, 29.587106162464444 ], [ -95.344463989516413, 29.587099162538351 ], [ -95.344475989249176, 29.58709516196955 ], [ -95.344486989568139, 29.58709216227653 ], [ -95.344581989544849, 29.587060162005439 ], [ -95.344761988734518, 29.586999162116854 ], [ -95.34477398907309, 29.586994162236003 ], [ -95.344784989260759, 29.586988162802541 ], [ -95.344796989226424, 29.586982162704313 ], [ -95.344811989383246, 29.58697316272908 ], [ -95.344821989480963, 29.586966161937525 ], [ -95.344829989358217, 29.586960162660574 ], [ -95.34484698958191, 29.586947162351965 ], [ -95.344898989604005, 29.586888162050407 ], [ -95.344953989345854, 29.586825162535174 ], [ -95.344987989646441, 29.586788162333026 ], [ -95.344996989159455, 29.586779162664509 ], [ -95.345005988957553, 29.586768162592872 ], [ -95.345014989126298, 29.586758162736004 ], [ -95.345022989175817, 29.586747162426843 ], [ -95.345029989192824, 29.586738162283424 ], [ -95.345035989463952, 29.586729161903481 ], [ -95.345041989701798, 29.586720162425035 ], [ -95.345048988969282, 29.586709161849896 ], [ -95.345053989087432, 29.586699161919448 ], [ -95.345060989231925, 29.586685162557533 ], [ -95.345066989289521, 29.58667016184209 ], [ -95.345076989352592, 29.586655162098147 ], [ -95.345085989669045, 29.586640162117483 ], [ -95.345095989473776, 29.586627161872716 ], [ -95.345104989215528, 29.586616162695915 ], [ -95.345115989790614, 29.586603162713406 ], [ -95.345127989106601, 29.586590162035471 ], [ -95.345139989792983, 29.586578162501851 ], [ -95.345151988819197, 29.586567162224284 ], [ -95.345163988874603, 29.586556161973768 ], [ -95.345176989702054, 29.586545161985498 ], [ -95.345186989700665, 29.586538162067821 ], [ -95.345197989066108, 29.586530162168994 ], [ -95.345205988919375, 29.586524161967063 ], [ -95.345217989430736, 29.586517162545107 ], [ -95.345228989823283, 29.586509162671859 ], [ -95.345240989174854, 29.58650716243654 ], [ -95.345253989581892, 29.586503162060296 ], [ -95.345264989814311, 29.586500162302897 ], [ -95.345288989137586, 29.586495162539364 ], [ -95.345299989775839, 29.586493162092662 ], [ -95.345310989757422, 29.586492161832251 ], [ -95.345326989106127, 29.586490162553911 ], [ -95.345622989689502, 29.586450162202727 ], [ -95.345639989831412, 29.586448162245116 ], [ -95.345650989393675, 29.586446162643142 ], [ -95.345662989382348, 29.586443162182746 ], [ -95.345676989885632, 29.586440162212256 ], [ -95.345689989614556, 29.586437161980832 ], [ -95.34570298893108, 29.586433162434563 ], [ -95.345715989310634, 29.586429162013314 ], [ -95.345727989915304, 29.586425162261655 ], [ -95.345744989151527, 29.586418162143609 ], [ -95.345756989373825, 29.586413162173912 ], [ -95.345770989349589, 29.586406162261898 ], [ -95.345782989189047, 29.586400162074405 ], [ -95.345792989512219, 29.586394162326645 ], [ -95.345805989361253, 29.586386161964946 ], [ -95.345816989042376, 29.586379162230397 ], [ -95.345827989373163, 29.58637116230766 ], [ -95.345851989781565, 29.58635316251689 ], [ -95.345861989858449, 29.586349162264764 ], [ -95.345870989399415, 29.58634316225292 ], [ -95.34588098998141, 29.586335162095775 ], [ -95.345892989280642, 29.586325161966599 ], [ -95.345902989714602, 29.586314162091469 ], [ -95.345909989355519, 29.586307162303903 ], [ -95.345924989943825, 29.58628916217986 ], [ -95.345930989459632, 29.58628116194609 ], [ -95.345936989210699, 29.586271162211162 ], [ -95.345941990016328, 29.586263161775641 ], [ -95.345946989375335, 29.586254161998088 ], [ -95.345951989115278, 29.586246162435806 ], [ -95.34595598976459, 29.586237162456655 ], [ -95.346053989537623, 29.586096162092147 ], [ -95.346060989652983, 29.5860851623925 ], [ -95.34606798979911, 29.586074161790663 ], [ -95.346073989524626, 29.586064162049102 ], [ -95.346079989897646, 29.586053162119978 ], [ -95.346084989882911, 29.586043162149494 ], [ -95.346090989870333, 29.586031162004272 ], [ -95.346095989470186, 29.586020161817874 ], [ -95.346099989682486, 29.58601016252031 ], [ -95.346102989156904, 29.586000162064376 ], [ -95.34610598921121, 29.58598116248692 ], [ -95.346110989989427, 29.585973162044539 ], [ -95.34611098980254, 29.585962162491985 ], [ -95.346116989933009, 29.585953162061944 ], [ -95.346120989757111, 29.585942162548118 ], [ -95.346123989875792, 29.585931161904178 ], [ -95.34613198947666, 29.58592216192957 ], [ -95.346137989570622, 29.585913162400331 ], [ -95.346147989322148, 29.585903161791407 ], [ -95.346155989950461, 29.585894161843456 ], [ -95.346161989272915, 29.585883161881998 ], [ -95.346165989889528, 29.585874161895862 ], [ -95.346169989089688, 29.585864161665913 ], [ -95.346167989808436, 29.585854161873176 ], [ -95.34617098923944, 29.58584416231723 ], [ -95.346179989656989, 29.585814161901542 ], [ -95.346192989231454, 29.585774162155904 ], [ -95.346200989461423, 29.585764161989424 ], [ -95.34620998904056, 29.585753161834266 ], [ -95.346215989380738, 29.585742161898221 ], [ -95.346221989181245, 29.585727162029603 ], [ -95.346223989131374, 29.585715161841875 ], [ -95.346224989314237, 29.585703162328588 ], [ -95.346224989640689, 29.585688161969372 ], [ -95.346224989704368, 29.585675162013079 ], [ -95.346227989880489, 29.585659162148275 ], [ -95.346232989062841, 29.585647161740198 ], [ -95.346238989624567, 29.585634162301687 ], [ -95.346248989414306, 29.585619162466571 ], [ -95.346259989121933, 29.585607161672701 ], [ -95.3462699898311, 29.585597161983969 ], [ -95.346284989884353, 29.585586162339595 ], [ -95.346297989592102, 29.585578161928616 ], [ -95.346310990068474, 29.585572161947599 ], [ -95.346326989357465, 29.5855651624294 ], [ -95.346343989598878, 29.585561161978891 ], [ -95.34635999007358, 29.585557162201692 ], [ -95.346373989789214, 29.585555162345106 ], [ -95.346390989767585, 29.585553162291653 ], [ -95.346407989099802, 29.585552162423433 ], [ -95.346419989734159, 29.585551162325803 ], [ -95.346439989102578, 29.585552161758638 ], [ -95.346453990008456, 29.585553161638703 ], [ -95.346468990002791, 29.585555161930206 ], [ -95.346487989349498, 29.585558162435262 ], [ -95.346501990031513, 29.585561161811537 ], [ -95.346520989542995, 29.585567162028774 ], [ -95.346537989202531, 29.585572161577694 ], [ -95.346776989573243, 29.58562216213533 ], [ -95.34702299005319, 29.585671161852076 ], [ -95.34719598961621, 29.585691162042696 ], [ -95.347308989659709, 29.585707162071245 ], [ -95.347487989829332, 29.585732161571617 ], [ -95.347509989904523, 29.585736161926899 ], [ -95.347525989681245, 29.585738162317529 ], [ -95.347561989670183, 29.585743162402522 ], [ -95.347578989850248, 29.585744161914914 ], [ -95.347602989637437, 29.585746162286316 ], [ -95.347635990232519, 29.585748161983574 ], [ -95.347653990149141, 29.58574916170322 ], [ -95.347674989904277, 29.585749161882475 ], [ -95.347710989940509, 29.585749161807641 ], [ -95.347731989695646, 29.585749161977994 ], [ -95.347749989814119, 29.585748162183549 ], [ -95.347788989719163, 29.585747161646232 ], [ -95.347873989654872, 29.585765161675731 ], [ -95.347962990428925, 29.585785162065996 ], [ -95.348095989642999, 29.585816161676874 ], [ -95.348174989775345, 29.585833161794703 ], [ -95.348196990527171, 29.585836161849599 ], [ -95.348239989991342, 29.585854162321933 ], [ -95.348263989599317, 29.585873162434499 ], [ -95.348323989924893, 29.585921161930685 ], [ -95.348389990408151, 29.58598816208298 ], [ -95.348416990568793, 29.58601516176309 ], [ -95.348540990581, 29.586156162500927 ], [ -95.348608990693663, 29.58623016167984 ], [ -95.348716989833036, 29.586358162407141 ], [ -95.348837990274873, 29.586511161942926 ], [ -95.348951989951047, 29.586529162065077 ], [ -95.349120989842334, 29.586531162413525 ], [ -95.349248990861838, 29.586504162429112 ], [ -95.349371990806034, 29.586479162551363 ], [ -95.349482990728561, 29.586464162082354 ], [ -95.349565989981414, 29.586448161758856 ], [ -95.349690990235032, 29.586418161901427 ], [ -95.349803990460657, 29.586398162379787 ], [ -95.349925990354535, 29.586385162432222 ], [ -95.350064990681815, 29.586371162068936 ], [ -95.350192990781494, 29.586355162507598 ], [ -95.350303991024063, 29.58633916207167 ], [ -95.350384990777243, 29.586326162365921 ], [ -95.350453990497556, 29.586294161721728 ], [ -95.350517991007138, 29.586273162294741 ], [ -95.350611990713162, 29.58623216208392 ], [ -95.350707990334286, 29.586159162006417 ], [ -95.35077999049085, 29.586109161756369 ], [ -95.350873990993819, 29.586061161767809 ], [ -95.351005990548643, 29.585972161796221 ], [ -95.351114991096452, 29.585863162127161 ], [ -95.351255991143901, 29.585751161735196 ], [ -95.351366990364525, 29.585681162047486 ], [ -95.351413990743922, 29.585651161545776 ], [ -95.351539990911192, 29.585611161764497 ], [ -95.351656991186871, 29.585550162166232 ], [ -95.351752991138497, 29.585504161456928 ], [ -95.351913991401815, 29.58546016186364 ], [ -95.351913991229125, 29.585312161510384 ], [ -95.351908990772046, 29.585172161812885 ], [ -95.351902990928963, 29.584952161885447 ], [ -95.35190399052253, 29.584924161778268 ], [ -95.351931991393627, 29.584417161354011 ], [ -95.351957990985738, 29.584031161660782 ], [ -95.35195799101021, 29.58325716172596 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 49, "Tract": "48039660503", "Area_SqMi": 2.6057048785531762, "total_2009": 2201, "total_2010": 2180, "total_2011": 2413, "total_2012": 2587, "total_2013": 2621, "total_2014": 5674, "total_2015": 6039, "total_2016": 5845, "total_2017": 5764, "total_2018": 5769, "total_2019": 5987, "total_2020": 5500, "age1": 859, "age2": 3534, "age3": 1402, "earn1": 881, "earn2": 1419, "earn3": 3495, "naics_s01": 0, "naics_s02": 34, "naics_s03": 0, "naics_s04": 285, "naics_s05": 753, "naics_s06": 138, "naics_s07": 167, "naics_s08": 104, "naics_s09": 0, "naics_s10": 28, "naics_s11": 51, "naics_s12": 76, "naics_s13": 1, "naics_s14": 112, "naics_s15": 3517, "naics_s16": 88, "naics_s17": 7, "naics_s18": 271, "naics_s19": 71, "naics_s20": 92, "race1": 4641, "race2": 734, "race3": 47, "race4": 307, "race5": 4, "race6": 62, "ethnicity1": 3966, "ethnicity2": 1829, "edu1": 988, "edu2": 1172, "edu3": 1501, "edu4": 1275, "Shape_Length": 41046.842789531125, "Shape_Area": 72642592.305591926, "total_2021": 5571, "total_2022": 5795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.308266980254274, 29.584710162948344 ], [ -95.308263979352333, 29.584581163355409 ], [ -95.308248979602197, 29.58395616255337 ], [ -95.308243979514998, 29.583738162582055 ], [ -95.308207979903159, 29.581964162534813 ], [ -95.308175979460998, 29.580663162382404 ], [ -95.308154979544852, 29.57998916259173 ], [ -95.308095979090439, 29.578177161441218 ], [ -95.308063979082135, 29.577036161462413 ], [ -95.308063979640821, 29.577011161461822 ], [ -95.308065979611698, 29.576337161335321 ], [ -95.308022979664713, 29.574610161088177 ], [ -95.307992979001099, 29.573594160434052 ], [ -95.307984978896528, 29.573258160588431 ], [ -95.307977979696162, 29.572933160956868 ], [ -95.307940979484798, 29.571161160715263 ], [ -95.307920979157657, 29.570113160175978 ], [ -95.307908979317801, 29.569434159575998 ], [ -95.307874979408197, 29.568336160158232 ], [ -95.307827979115856, 29.56683715942123 ], [ -95.30778397877539, 29.566094158942818 ], [ -95.307772979113835, 29.565307158837829 ], [ -95.307721979136289, 29.563597158937995 ], [ -95.30771097867428, 29.562977159071181 ], [ -95.307702978685626, 29.562536158681652 ], [ -95.307700978359321, 29.562453158261153 ], [ -95.307607978552682, 29.562345158349039 ], [ -95.307569978437101, 29.562301158299757 ], [ -95.307487978739317, 29.562186158064488 ], [ -95.307428978958612, 29.56210315808897 ], [ -95.307241978399446, 29.561913158434326 ], [ -95.307020978381345, 29.561723158407734 ], [ -95.306794978633192, 29.561557158814363 ], [ -95.306528978003143, 29.561302158219341 ], [ -95.30645597797924, 29.561203158421289 ], [ -95.306382978090298, 29.56109315795241 ], [ -95.306331977937589, 29.560994158191388 ], [ -95.306280977854797, 29.560879158477157 ], [ -95.306246977790479, 29.560727157923392 ], [ -95.306226978038353, 29.560487158077297 ], [ -95.306226978290383, 29.559780157631693 ], [ -95.306234978208892, 29.559625158293866 ], [ -95.305009977896518, 29.559642157866616 ], [ -95.304580977942166, 29.559650157873282 ], [ -95.304221977989712, 29.559655157732347 ], [ -95.302979977522824, 29.559673158394922 ], [ -95.302531977675571, 29.559669158297186 ], [ -95.300887976969406, 29.559702158529248 ], [ -95.300386976345962, 29.559700157912406 ], [ -95.299965976358806, 29.559709157960913 ], [ -95.299593976470831, 29.559736158039033 ], [ -95.299074976064574, 29.559736158591647 ], [ -95.298921976486085, 29.559831158388338 ], [ -95.29853897651013, 29.559908158380896 ], [ -95.298407976225192, 29.559953158652839 ], [ -95.298076976068145, 29.560035157994008 ], [ -95.297914975778198, 29.560099158745086 ], [ -95.297636975786332, 29.560201158217396 ], [ -95.297391975818556, 29.560311158169494 ], [ -95.296990975947892, 29.560509158254519 ], [ -95.296746976201177, 29.560640158765825 ], [ -95.296371976022741, 29.56087615887369 ], [ -95.296143975368366, 29.561036158364963 ], [ -95.295670975490481, 29.561360158374075 ], [ -95.295377975503257, 29.561573158947919 ], [ -95.295166975475951, 29.561718158631113 ], [ -95.294999975421547, 29.561845158846218 ], [ -95.294693975444886, 29.562060159342312 ], [ -95.294311975509942, 29.562324159392539 ], [ -95.293925975216567, 29.56259015901146 ], [ -95.293605974759586, 29.56278315866135 ], [ -95.293358974805415, 29.562913159190447 ], [ -95.292892975128709, 29.563136159497027 ], [ -95.292474974618941, 29.563292159554276 ], [ -95.292117974418261, 29.563397159163497 ], [ -95.291709974338801, 29.563508159551617 ], [ -95.291443974231854, 29.563562159737742 ], [ -95.291001974737853, 29.563604159214737 ], [ -95.290400974385037, 29.563632159710302 ], [ -95.28938197439075, 29.563638159454854 ], [ -95.288341973392477, 29.563667159619044 ], [ -95.287709973793199, 29.563675159701607 ], [ -95.287276973316423, 29.563681159310942 ], [ -95.287136973523587, 29.563685159579425 ], [ -95.286799972891998, 29.563694159678455 ], [ -95.286069972842753, 29.563682159791643 ], [ -95.286069973075016, 29.56561915974061 ], [ -95.286109973471298, 29.5674431600543 ], [ -95.286144973239587, 29.569240160881439 ], [ -95.286181973724624, 29.571761161471059 ], [ -95.28618597321676, 29.571936161042885 ], [ -95.286264974082911, 29.57531416210221 ], [ -95.286284973685895, 29.575765161963272 ], [ -95.286315973344543, 29.577045162118502 ], [ -95.286329973453931, 29.578786162714856 ], [ -95.286332973749722, 29.57904116290063 ], [ -95.286407973697848, 29.581374163517708 ], [ -95.286411974206672, 29.582008163546043 ], [ -95.286412973815928, 29.58219616352849 ], [ -95.286417974020367, 29.582777163185543 ], [ -95.286431974339649, 29.584267163638057 ], [ -95.286435974595747, 29.584464163968285 ], [ -95.286458974408092, 29.585669163792932 ], [ -95.286467974132705, 29.586357164066147 ], [ -95.286473974160913, 29.586720164420008 ], [ -95.286506974238961, 29.58886916466966 ], [ -95.286524974697812, 29.589299165172214 ], [ -95.286536973999432, 29.589570164408357 ], [ -95.286563974419138, 29.590990164935658 ], [ -95.286568974912583, 29.592520165181451 ], [ -95.286598975165958, 29.595387166024008 ], [ -95.286508974311019, 29.597498166799884 ], [ -95.286512975187151, 29.597593166818079 ], [ -95.286512975017416, 29.597610166916112 ], [ -95.286499974307617, 29.59789116620253 ], [ -95.286783974754812, 29.597940166842985 ], [ -95.286850974754103, 29.597990166125459 ], [ -95.287662975294779, 29.598305166570341 ], [ -95.288034975345298, 29.598336167038472 ], [ -95.288752975619346, 29.598024166465247 ], [ -95.289006975129851, 29.597954166240932 ], [ -95.28960497507461, 29.597956166653805 ], [ -95.289899975177903, 29.59785216614695 ], [ -95.28990097537897, 29.597707165961186 ], [ -95.289960975575724, 29.597691166402061 ], [ -95.290042975641256, 29.597678166447174 ], [ -95.290111975885992, 29.597661166146622 ], [ -95.290177975424271, 29.597644166549099 ], [ -95.290361975504624, 29.59760116658051 ], [ -95.290512975880006, 29.597562166632486 ], [ -95.290678975963218, 29.597539166143545 ], [ -95.290841976004472, 29.597525166372016 ], [ -95.291013976184885, 29.597537166116208 ], [ -95.291184976084324, 29.597573166589477 ], [ -95.291431975731754, 29.597660166148632 ], [ -95.291610976040758, 29.597703166404571 ], [ -95.291807976175946, 29.59772516611816 ], [ -95.292060976548015, 29.597755165902694 ], [ -95.292303976662438, 29.597797165970725 ], [ -95.292483975985903, 29.597758165925732 ], [ -95.292583976711327, 29.597736166658617 ], [ -95.292614975902183, 29.597713165898604 ], [ -95.292726976327017, 29.597642166188599 ], [ -95.292776976400432, 29.597530166240393 ], [ -95.292852976776643, 29.597413166241374 ], [ -95.292934975942799, 29.597242166363749 ], [ -95.293051976436942, 29.597095166610142 ], [ -95.293179976486641, 29.596962165856578 ], [ -95.293261976122736, 29.596862165845373 ], [ -95.293349976447814, 29.596757165773624 ], [ -95.293428976475539, 29.596671165927429 ], [ -95.293438976928883, 29.596648166312406 ], [ -95.293454976498765, 29.596634166060273 ], [ -95.293579976475229, 29.596521165590662 ], [ -95.293641976956451, 29.596498165958046 ], [ -95.29369497639469, 29.596485166429201 ], [ -95.29375897670522, 29.596478166038835 ], [ -95.293803976698143, 29.596478166115524 ], [ -95.293857976934433, 29.596483165653034 ], [ -95.293916976424455, 29.596497165697606 ], [ -95.294051977056526, 29.596544165993105 ], [ -95.294118976624063, 29.59657516557624 ], [ -95.29418797650483, 29.59660116619396 ], [ -95.294259976844899, 29.596620166228934 ], [ -95.294333976601976, 29.596633166147669 ], [ -95.294408976921687, 29.596640166262915 ], [ -95.29448397691786, 29.596641165930571 ], [ -95.294558976665584, 29.596635165839277 ], [ -95.294632977219891, 29.596623165617942 ], [ -95.294862976382049, 29.596561165744365 ], [ -95.295020977132793, 29.596497166018207 ], [ -95.295209976846934, 29.596420166023758 ], [ -95.295358976474773, 29.596394165873171 ], [ -95.295481976751816, 29.596356166057106 ], [ -95.295869977448874, 29.596201165920544 ], [ -95.296069977312712, 29.596178165954274 ], [ -95.296113977198175, 29.596179165767186 ], [ -95.296181977133898, 29.596208166298936 ], [ -95.296263977308413, 29.596247165699392 ], [ -95.29635397718711, 29.596310166033636 ], [ -95.296463977752978, 29.596392166250759 ], [ -95.296732977769437, 29.596568165939519 ], [ -95.296878977040308, 29.596639166075533 ], [ -95.297005976993546, 29.596595165965883 ], [ -95.297012977206691, 29.596582165556445 ], [ -95.297163977546177, 29.59655316577976 ], [ -95.297189977493716, 29.596548165808663 ], [ -95.297232977243254, 29.596542165844689 ], [ -95.297246977555872, 29.59654016566537 ], [ -95.297304977449357, 29.596532166090537 ], [ -95.29737397746625, 29.596529166012914 ], [ -95.297417977762166, 29.596527165659278 ], [ -95.297019976874012, 29.595290166020799 ], [ -95.296509976857777, 29.593648165467066 ], [ -95.296322977347302, 29.593031165105518 ], [ -95.296274976914219, 29.592843164756815 ], [ -95.296050977177643, 29.592105164763236 ], [ -95.295676976727307, 29.590874164921669 ], [ -95.295501976992369, 29.590283164895339 ], [ -95.295461976797057, 29.59010416460594 ], [ -95.295206976916802, 29.589316164095678 ], [ -95.295089976202675, 29.588917164857012 ], [ -95.295040976695702, 29.588780164378822 ], [ -95.295025976549994, 29.588041164459909 ], [ -95.294998976232137, 29.586487163900593 ], [ -95.295000976643578, 29.585597163603602 ], [ -95.298015977584129, 29.585531163217571 ], [ -95.30145697757635, 29.585457163074395 ], [ -95.301571978097414, 29.585455163067905 ], [ -95.301563978191766, 29.58510416353527 ], [ -95.301555978306837, 29.584777163772365 ], [ -95.304939978773163, 29.584741163467346 ], [ -95.30815297953113, 29.584707162702333 ], [ -95.308236979718103, 29.584711162936578 ], [ -95.308266980254274, 29.584710162948344 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 50, "Tract": "48039660804", "Area_SqMi": 1.0438837866097253, "total_2009": 320, "total_2010": 392, "total_2011": 414, "total_2012": 467, "total_2013": 485, "total_2014": 467, "total_2015": 474, "total_2016": 431, "total_2017": 540, "total_2018": 587, "total_2019": 612, "total_2020": 572, "age1": 173, "age2": 306, "age3": 170, "earn1": 153, "earn2": 242, "earn3": 254, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 64, "naics_s05": 58, "naics_s06": 33, "naics_s07": 62, "naics_s08": 0, "naics_s09": 0, "naics_s10": 34, "naics_s11": 25, "naics_s12": 64, "naics_s13": 0, "naics_s14": 38, "naics_s15": 12, "naics_s16": 29, "naics_s17": 4, "naics_s18": 191, "naics_s19": 35, "naics_s20": 0, "race1": 535, "race2": 78, "race3": 10, "race4": 19, "race5": 0, "race6": 7, "ethnicity1": 419, "ethnicity2": 230, "edu1": 110, "edu2": 126, "edu3": 132, "edu4": 108, "Shape_Length": 24122.724352586956, "Shape_Area": 29101693.345722564, "total_2021": 535, "total_2022": 649 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.306234978208892, 29.559625158293866 ], [ -95.306220977974746, 29.558623157812832 ], [ -95.306206977938814, 29.557558157560386 ], [ -95.306204977725926, 29.557333157948761 ], [ -95.306160978334134, 29.555793157353907 ], [ -95.306116978258828, 29.555177157070776 ], [ -95.306123977503091, 29.554875156790342 ], [ -95.306083978180951, 29.552954156411843 ], [ -95.306071977798439, 29.55283715626905 ], [ -95.306076978172854, 29.552354156802473 ], [ -95.306046977647028, 29.550848156038764 ], [ -95.30601297773535, 29.548806156203284 ], [ -95.305998977932063, 29.547865155201684 ], [ -95.305995977917803, 29.547671155190848 ], [ -95.305990977215188, 29.547340155822255 ], [ -95.305985977569492, 29.547038155745234 ], [ -95.305979977686889, 29.546625155449949 ], [ -95.305804977325579, 29.546588155297378 ], [ -95.304940977061307, 29.546630154953782 ], [ -95.304751976835504, 29.546647155099379 ], [ -95.30456597725285, 29.546696155739106 ], [ -95.304228976614979, 29.546833155669038 ], [ -95.303871976627264, 29.547044155696621 ], [ -95.303531976739791, 29.547182155186995 ], [ -95.301748976110943, 29.548762156294163 ], [ -95.300831976607199, 29.549105156393864 ], [ -95.298499975595234, 29.549218156245175 ], [ -95.2977709756331, 29.549413156443407 ], [ -95.294606975263932, 29.55025815656392 ], [ -95.290275974030521, 29.551416156860377 ], [ -95.290033973479424, 29.551481156566421 ], [ -95.284346972198563, 29.552990157761144 ], [ -95.284092972443872, 29.552998156993333 ], [ -95.281382971045502, 29.553084157534762 ], [ -95.28186297217168, 29.553803157592426 ], [ -95.282350971656058, 29.554548157375486 ], [ -95.282906972482181, 29.555398158330114 ], [ -95.283429971966839, 29.556160158056525 ], [ -95.283710972738092, 29.556571158337256 ], [ -95.284049972685963, 29.55708115832925 ], [ -95.284748972494512, 29.558113158304756 ], [ -95.284881972910526, 29.558316158761695 ], [ -95.285408973192801, 29.559153158486961 ], [ -95.285497972766208, 29.559267158769277 ], [ -95.285688972428972, 29.559613158872864 ], [ -95.28582797274747, 29.559956158967477 ], [ -95.285871972848184, 29.560065159137384 ], [ -95.285987972827144, 29.560620158670567 ], [ -95.286053972836598, 29.561772159507473 ], [ -95.286049972991123, 29.561923159373386 ], [ -95.286069972842753, 29.563682159791643 ], [ -95.286799972891998, 29.563694159678455 ], [ -95.287136973523587, 29.563685159579425 ], [ -95.287276973316423, 29.563681159310942 ], [ -95.287709973793199, 29.563675159701607 ], [ -95.288341973392477, 29.563667159619044 ], [ -95.28938197439075, 29.563638159454854 ], [ -95.290400974385037, 29.563632159710302 ], [ -95.291001974737853, 29.563604159214737 ], [ -95.291443974231854, 29.563562159737742 ], [ -95.291709974338801, 29.563508159551617 ], [ -95.292117974418261, 29.563397159163497 ], [ -95.292474974618941, 29.563292159554276 ], [ -95.292892975128709, 29.563136159497027 ], [ -95.293358974805415, 29.562913159190447 ], [ -95.293605974759586, 29.56278315866135 ], [ -95.293925975216567, 29.56259015901146 ], [ -95.294311975509942, 29.562324159392539 ], [ -95.294693975444886, 29.562060159342312 ], [ -95.294999975421547, 29.561845158846218 ], [ -95.295166975475951, 29.561718158631113 ], [ -95.295377975503257, 29.561573158947919 ], [ -95.295670975490481, 29.561360158374075 ], [ -95.296143975368366, 29.561036158364963 ], [ -95.296371976022741, 29.56087615887369 ], [ -95.296746976201177, 29.560640158765825 ], [ -95.296990975947892, 29.560509158254519 ], [ -95.297391975818556, 29.560311158169494 ], [ -95.297636975786332, 29.560201158217396 ], [ -95.297914975778198, 29.560099158745086 ], [ -95.298076976068145, 29.560035157994008 ], [ -95.298407976225192, 29.559953158652839 ], [ -95.29853897651013, 29.559908158380896 ], [ -95.298921976486085, 29.559831158388338 ], [ -95.299074976064574, 29.559736158591647 ], [ -95.299593976470831, 29.559736158039033 ], [ -95.299965976358806, 29.559709157960913 ], [ -95.300386976345962, 29.559700157912406 ], [ -95.300887976969406, 29.559702158529248 ], [ -95.302531977675571, 29.559669158297186 ], [ -95.302979977522824, 29.559673158394922 ], [ -95.304221977989712, 29.559655157732347 ], [ -95.304580977942166, 29.559650157873282 ], [ -95.305009977896518, 29.559642157866616 ], [ -95.306234978208892, 29.559625158293866 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 51, "Tract": "48201550601", "Area_SqMi": 0.78575421641456544, "total_2009": 115, "total_2010": 126, "total_2011": 228, "total_2012": 288, "total_2013": 274, "total_2014": 174, "total_2015": 208, "total_2016": 236, "total_2017": 297, "total_2018": 303, "total_2019": 345, "total_2020": 414, "age1": 142, "age2": 344, "age3": 96, "earn1": 41, "earn2": 91, "earn3": 450, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 32, "naics_s05": 0, "naics_s06": 0, "naics_s07": 8, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 3, "naics_s13": 0, "naics_s14": 504, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 10, "naics_s19": 4, "naics_s20": 0, "race1": 497, "race2": 49, "race3": 9, "race4": 17, "race5": 2, "race6": 8, "ethnicity1": 107, "ethnicity2": 475, "edu1": 207, "edu2": 111, "edu3": 73, "edu4": 49, "Shape_Length": 18349.918565364347, "Shape_Area": 21905482.721856244, "total_2021": 529, "total_2022": 582 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465028036403453, 29.96464723523555 ], [ -95.46502503737193, 29.964565235728664 ], [ -95.465010037031206, 29.964037235649212 ], [ -95.465009037147624, 29.963968235458172 ], [ -95.465006036778377, 29.963622235592606 ], [ -95.464958036479459, 29.961957234987601 ], [ -95.464937036665702, 29.961422234842736 ], [ -95.464933036997607, 29.961305234530656 ], [ -95.464894036950284, 29.96054323428795 ], [ -95.464874036976468, 29.960018234681311 ], [ -95.464867036613001, 29.959653234236125 ], [ -95.464864036305144, 29.959518234572773 ], [ -95.464838036338861, 29.958221234667825 ], [ -95.464832036495267, 29.95775623456024 ], [ -95.464807036661938, 29.95630523425945 ], [ -95.464798036767419, 29.956009234175056 ], [ -95.464786036410331, 29.955479233691978 ], [ -95.464774036797323, 29.954812233576597 ], [ -95.464768036292483, 29.954449233652671 ], [ -95.464760036589368, 29.953950232965742 ], [ -95.464743036398232, 29.953151233315616 ], [ -95.46472203656495, 29.951696232812914 ], [ -95.464704036194391, 29.950984233089269 ], [ -95.464703035884156, 29.950719233172659 ], [ -95.464694036535249, 29.950256232428959 ], [ -95.464691036203618, 29.950124232528509 ], [ -95.464684036039429, 29.949791232182527 ], [ -95.464675036475015, 29.949530232100386 ], [ -95.463270035617796, 29.949543232159584 ], [ -95.46242603568966, 29.949557232830056 ], [ -95.462010035731538, 29.949559232789174 ], [ -95.460579035472435, 29.949582232418113 ], [ -95.459441035156274, 29.949595232569887 ], [ -95.458327034025942, 29.949612232793907 ], [ -95.456849033654933, 29.949632232489076 ], [ -95.456520033728438, 29.949625232670055 ], [ -95.45575903349247, 29.949575232880264 ], [ -95.455647033651147, 29.94957323284412 ], [ -95.455574033856607, 29.94957223256948 ], [ -95.455351033319872, 29.949590233012419 ], [ -95.455271033925712, 29.949588232724246 ], [ -95.455201034176639, 29.949581232491109 ], [ -95.454559033414839, 29.94945323280556 ], [ -95.454467033647418, 29.949679232484371 ], [ -95.454384033992795, 29.949860232700559 ], [ -95.45423703319284, 29.950132232592534 ], [ -95.454121033498055, 29.950327233114731 ], [ -95.454046033923717, 29.950452232695024 ], [ -95.453916033823035, 29.950639232734915 ], [ -95.453482033388497, 29.951192233561272 ], [ -95.453174033530786, 29.951573233034857 ], [ -95.452672033518297, 29.952187233669154 ], [ -95.452489032633082, 29.952427233054291 ], [ -95.452399032718006, 29.952555233626946 ], [ -95.452229033491548, 29.952822233397704 ], [ -95.452148033533291, 29.952960234072005 ], [ -95.452073033374219, 29.953100233634945 ], [ -95.451935033185208, 29.95338623338715 ], [ -95.451870033123441, 29.95353323405779 ], [ -95.451811033309085, 29.953683233728057 ], [ -95.451706033031385, 29.953994233449734 ], [ -95.451662032515003, 29.954151233723756 ], [ -95.451593032761792, 29.954461234272031 ], [ -95.451565032548189, 29.954613233693667 ], [ -95.451526032606282, 29.954909234455425 ], [ -95.451505032957073, 29.955174233913038 ], [ -95.451502033285948, 29.955498234077748 ], [ -95.451559033265482, 29.958905235157552 ], [ -95.451568033507499, 29.959156234554701 ], [ -95.451572033720822, 29.959512234708832 ], [ -95.451590032782789, 29.959740234662185 ], [ -95.451623033237141, 29.960006234791134 ], [ -95.451676032773406, 29.960276234766159 ], [ -95.451736033618502, 29.960493235445632 ], [ -95.451815033488785, 29.960730235005943 ], [ -95.451861033153421, 29.960852235271187 ], [ -95.45197003335042, 29.961098235623865 ], [ -95.452101033554186, 29.961350235425169 ], [ -95.45217603373041, 29.961479235123338 ], [ -95.452259033311023, 29.961608235828507 ], [ -95.452447033245136, 29.961868235399365 ], [ -95.452847033381801, 29.962379235200814 ], [ -95.452942033401385, 29.962509235686593 ], [ -95.453033033438714, 29.962644235476731 ], [ -95.453116033508437, 29.962782235283054 ], [ -95.453264033639073, 29.963065235395614 ], [ -95.453331033459662, 29.963208236054694 ], [ -95.453392033719553, 29.963351235250084 ], [ -95.453444033756853, 29.963495235939032 ], [ -95.453490034143968, 29.963639236083655 ], [ -95.453565034072142, 29.963927235855852 ], [ -95.453594034195987, 29.964070235440591 ], [ -95.453634034144613, 29.964341235589661 ], [ -95.45366003359922, 29.964657236375526 ], [ -95.453667034392168, 29.964925235696825 ], [ -95.457687034807449, 29.964851236040612 ], [ -95.459539035996883, 29.964813235751883 ], [ -95.460715035834895, 29.964797235311522 ], [ -95.461924035925591, 29.964793235663187 ], [ -95.462594035761668, 29.964790236032663 ], [ -95.463362036675306, 29.964782235301172 ], [ -95.463811036819436, 29.964774235335305 ], [ -95.463851036799554, 29.964773235360383 ], [ -95.464009036596465, 29.964766235725133 ], [ -95.464169036418411, 29.964770236043879 ], [ -95.464602036392037, 29.964762235420643 ], [ -95.464974036745403, 29.964749235575802 ], [ -95.465028036403453, 29.96464723523555 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 52, "Tract": "48157674404", "Area_SqMi": 4.0340126441045348, "total_2009": 10, "total_2010": 13, "total_2011": 16, "total_2012": 36, "total_2013": 76, "total_2014": 62, "total_2015": 57, "total_2016": 113, "total_2017": 103, "total_2018": 110, "total_2019": 235, "total_2020": 313, "age1": 154, "age2": 302, "age3": 80, "earn1": 161, "earn2": 232, "earn3": 143, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 24, "naics_s07": 29, "naics_s08": 77, "naics_s09": 2, "naics_s10": 12, "naics_s11": 8, "naics_s12": 114, "naics_s13": 0, "naics_s14": 2, "naics_s15": 28, "naics_s16": 145, "naics_s17": 30, "naics_s18": 37, "naics_s19": 21, "naics_s20": 0, "race1": 235, "race2": 133, "race3": 1, "race4": 154, "race5": 1, "race6": 12, "ethnicity1": 416, "ethnicity2": 120, "edu1": 75, "edu2": 83, "edu3": 97, "edu4": 127, "Shape_Length": 85377.342734781341, "Shape_Area": 112461368.23599164, "total_2021": 416, "total_2022": 536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.597846051326385, 29.528494141612626 ], [ -95.59764105160815, 29.528149141645688 ], [ -95.597456051717899, 29.527826141880059 ], [ -95.597226051152617, 29.527324141580372 ], [ -95.597126051279986, 29.527087141572657 ], [ -95.596976051536643, 29.526751141657932 ], [ -95.596813051428683, 29.526304141089863 ], [ -95.596756050531042, 29.526169141575611 ], [ -95.596649051486907, 29.525934141051181 ], [ -95.596615050654492, 29.525868141817956 ], [ -95.596431050734552, 29.525546141531972 ], [ -95.596342051357567, 29.525306141442318 ], [ -95.596313051053642, 29.525238140942307 ], [ -95.596246050470754, 29.525106141563622 ], [ -95.596189051174889, 29.525010141457042 ], [ -95.596121051215931, 29.524920141069117 ], [ -95.596057050549248, 29.524827140913985 ], [ -95.595793050645426, 29.524504141521867 ], [ -95.59571405036138, 29.52442114078211 ], [ -95.595509050979857, 29.524244141098261 ], [ -95.595456050837257, 29.524188141225601 ], [ -95.59539905028403, 29.524136141163957 ], [ -95.595151050914097, 29.523946141411557 ], [ -95.59497705015788, 29.523850141296862 ], [ -95.594902050923025, 29.523818141498058 ], [ -95.594670050590068, 29.523745141227753 ], [ -95.594590050512622, 29.523726141339509 ], [ -95.594267050061106, 29.523669140919328 ], [ -95.59401905050963, 29.523667140947882 ], [ -95.593854050541495, 29.523657140937061 ], [ -95.593689049929964, 29.523653140730772 ], [ -95.593649050045514, 29.523656141079336 ], [ -95.593568049969193, 29.523670140958338 ], [ -95.593328050277265, 29.523725141150024 ], [ -95.593206050072951, 29.523742140838664 ], [ -95.593106050390631, 29.523797141010192 ], [ -95.592997049769295, 29.523848141274883 ], [ -95.59280604943622, 29.523917141294042 ], [ -95.592688050373667, 29.523948140856344 ], [ -95.592473050204646, 29.524055141177175 ], [ -95.592180049456161, 29.524189141058759 ], [ -95.592048049324177, 29.524275141009916 ], [ -95.591887049627303, 29.524389141539164 ], [ -95.591826049945936, 29.524437141016929 ], [ -95.591587049529892, 29.524685141181148 ], [ -95.591338049811924, 29.525017141810658 ], [ -95.591197049786018, 29.525237141660039 ], [ -95.590816049207845, 29.525795141287844 ], [ -95.59053904929047, 29.526358141930906 ], [ -95.590321049510564, 29.526865141528255 ], [ -95.590273049625239, 29.527003141906821 ], [ -95.590162049489777, 29.527350141996944 ], [ -95.590024049000107, 29.527690141848435 ], [ -95.589997049420006, 29.527905141770415 ], [ -95.589977049824924, 29.527975141640599 ], [ -95.5897050495727, 29.528732141931094 ], [ -95.589675049736073, 29.528800141801241 ], [ -95.589538049491352, 29.529062141960974 ], [ -95.589494048830275, 29.529163142669315 ], [ -95.589376049148342, 29.52935414250706 ], [ -95.589334049571534, 29.529455142762259 ], [ -95.589316049267296, 29.529488142684148 ], [ -95.589252048939571, 29.52958014260361 ], [ -95.589156049131347, 29.529698142513602 ], [ -95.589028049537575, 29.529883142357477 ], [ -95.588954049700362, 29.529970142597875 ], [ -95.588759049073317, 29.530156142491375 ], [ -95.588540049601818, 29.530321143000556 ], [ -95.588474048671983, 29.530364142612225 ], [ -95.588258049480942, 29.530469142260472 ], [ -95.5881800485204, 29.530493143075724 ], [ -95.5881040489719, 29.530523142594038 ], [ -95.587922049022509, 29.530606143039492 ], [ -95.587786048568475, 29.530689142925429 ], [ -95.587722048784457, 29.530734143011944 ], [ -95.587631049043338, 29.530807142474522 ], [ -95.587291048333668, 29.530937142328884 ], [ -95.587095048360467, 29.530994143151467 ], [ -95.586874048630932, 29.531040142842684 ], [ -95.586814048827421, 29.531053143085284 ], [ -95.586733049067291, 29.531064143032722 ], [ -95.586404048124322, 29.531090142719286 ], [ -95.585992048344096, 29.531111142636718 ], [ -95.585827048475352, 29.531123142756286 ], [ -95.585456048702298, 29.531135143181064 ], [ -95.585374048505017, 29.531132142569234 ], [ -95.585212048544321, 29.531106143149053 ], [ -95.584931047847547, 29.531047142469493 ], [ -95.584698048153129, 29.530973142890478 ], [ -95.584545048309536, 29.530919142548495 ], [ -95.584433047711059, 29.530873142729362 ], [ -95.584145048492047, 29.53073314304163 ], [ -95.583669047652933, 29.530446142355505 ], [ -95.583381047815223, 29.530241142540312 ], [ -95.583112047320753, 29.530017142667042 ], [ -95.582829048128787, 29.529755142245211 ], [ -95.582747047104846, 29.529633143053495 ], [ -95.582699047848479, 29.529574142676715 ], [ -95.582671047140039, 29.529543142425918 ], [ -95.582597047557641, 29.52946114268175 ], [ -95.582508048007, 29.529339142250979 ], [ -95.582292047824978, 29.528990142616443 ], [ -95.582164047025529, 29.528764142293323 ], [ -95.582080047597287, 29.528566142826421 ], [ -95.5820490477427, 29.52849414237652 ], [ -95.582038047592974, 29.528459142709622 ], [ -95.582024046897899, 29.528388142832966 ], [ -95.581995047192606, 29.528283142298093 ], [ -95.581947047491866, 29.528145142760202 ], [ -95.581899047217689, 29.528045141916419 ], [ -95.581840046855163, 29.527949142058809 ], [ -95.581802047741093, 29.527809142377723 ], [ -95.581782047440086, 29.527702142283594 ], [ -95.581774047277406, 29.527594141947898 ], [ -95.581773047043768, 29.527499142094037 ], [ -95.581788047047397, 29.527247142177931 ], [ -95.581814047435316, 29.526923142315546 ], [ -95.581878047431658, 29.526530141842276 ], [ -95.581966047522101, 29.526177142 ], [ -95.582073046811189, 29.525644141904674 ], [ -95.58221304683876, 29.525080141943448 ], [ -95.582344046777166, 29.524588141492167 ], [ -95.582480047525266, 29.52402414186367 ], [ -95.582617047129702, 29.523533141186288 ], [ -95.582676047067991, 29.523286140976239 ], [ -95.582754047054706, 29.523043141420448 ], [ -95.582787047117591, 29.522901141184285 ], [ -95.582885047747951, 29.522004140803258 ], [ -95.582961046914846, 29.521576141106795 ], [ -95.583013047130009, 29.521327141090119 ], [ -95.583064047082658, 29.521115141178704 ], [ -95.583157047293554, 29.520764141225655 ], [ -95.58328904743766, 29.520347140971058 ], [ -95.583319047038373, 29.520279140557406 ], [ -95.583371047370264, 29.520181140762642 ], [ -95.583487047710349, 29.519990140780365 ], [ -95.583594047273408, 29.519836140374903 ], [ -95.583805047111426, 29.519569140456909 ], [ -95.584153047269538, 29.519215140311736 ], [ -95.584262047485652, 29.519104140440824 ], [ -95.584324047739202, 29.519056140129582 ], [ -95.584791047593427, 29.518759140584528 ], [ -95.58494304769377, 29.518702140604564 ], [ -95.585370047920904, 29.518569140543139 ], [ -95.585971047984344, 29.518440139944524 ], [ -95.586424048570095, 29.518416139882586 ], [ -95.586671048007901, 29.518421140038072 ], [ -95.586835048324346, 29.518434140352674 ], [ -95.586999048290721, 29.518454140655351 ], [ -95.587160048479134, 29.518485139918521 ], [ -95.58724004838372, 29.518504139894524 ], [ -95.587589048870512, 29.518613140122351 ], [ -95.587762048799306, 29.518681140269269 ], [ -95.588238048489401, 29.518897140486089 ], [ -95.588601048629627, 29.519069140514837 ], [ -95.58878004851185, 29.519158140453403 ], [ -95.589192049007309, 29.519325140050235 ], [ -95.589421048416881, 29.519406139927675 ], [ -95.58953904933847, 29.51943914075914 ], [ -95.589619048667871, 29.519457140009223 ], [ -95.590027048650072, 29.519510140728265 ], [ -95.59031504932679, 29.519531139895417 ], [ -95.590436049492922, 29.519552140529932 ], [ -95.590483048762351, 29.519564140610804 ], [ -95.590594049280057, 29.519592139893852 ], [ -95.590718048736008, 29.519590140055911 ], [ -95.590964048963045, 29.519568140413426 ], [ -95.591288049556482, 29.519514140261197 ], [ -95.591407049201109, 29.51948314045891 ], [ -95.591521049756267, 29.519441140450997 ], [ -95.591599049354457, 29.519418140696001 ], [ -95.591788049439401, 29.519345140554464 ], [ -95.591859049607578, 29.519308140542982 ], [ -95.592100049297727, 29.519170140382773 ], [ -95.592561049915943, 29.518865139711341 ], [ -95.592667049824911, 29.518809140242521 ], [ -95.592815049199814, 29.518745140287766 ], [ -95.592875049395815, 29.518696140044653 ], [ -95.592957049753082, 29.518615140373427 ], [ -95.593031049988994, 29.518529139980071 ], [ -95.593126050245544, 29.518368140420986 ], [ -95.593189049543682, 29.518275140112831 ], [ -95.593287049918303, 29.518159139971473 ], [ -95.593370050330464, 29.518079139522289 ], [ -95.593429050089327, 29.518029139566469 ], [ -95.593493049926408, 29.517983139449846 ], [ -95.593547049434008, 29.517929139575212 ], [ -95.593620050188292, 29.517841140167331 ], [ -95.593669049773638, 29.517742139413926 ], [ -95.593707050115555, 29.517678140034089 ], [ -95.593796049598353, 29.51755613941889 ], [ -95.593894049596898, 29.517440139743606 ], [ -95.593949049673526, 29.517386139933677 ], [ -95.594037049780084, 29.517311139983565 ], [ -95.594152050312701, 29.517109140144299 ], [ -95.594236050147316, 29.516985139729911 ], [ -95.59430404958502, 29.516815139666761 ], [ -95.594419050035583, 29.516468139555265 ], [ -95.594520050095554, 29.516118139651333 ], [ -95.594623050529222, 29.515622138950761 ], [ -95.59463005015958, 29.515579139051287 ], [ -95.594684049919138, 29.515228139311908 ], [ -95.594677049666942, 29.515157139450384 ], [ -95.59460504974146, 29.514728139199075 ], [ -95.594582050211486, 29.514549139096037 ], [ -95.594515049754207, 29.514379138702797 ], [ -95.594413049845372, 29.514143138911024 ], [ -95.594376049925756, 29.514078139284742 ], [ -95.593962050031536, 29.513454139132158 ], [ -95.593760049800352, 29.513226139162089 ], [ -95.593520049378142, 29.513027139041323 ], [ -95.593407049264115, 29.512923138676022 ], [ -95.593289049542818, 29.512822138532862 ], [ -95.593100049138329, 29.512682138691215 ], [ -95.592836049910801, 29.51250913896396 ], [ -95.592758049156629, 29.512467139013481 ], [ -95.592655049191805, 29.512423138728465 ], [ -95.592502049447603, 29.512369138560977 ], [ -95.591992049172148, 29.512225138432029 ], [ -95.591912049678669, 29.512208138789386 ], [ -95.591140048798124, 29.512088138460197 ], [ -95.590728048593988, 29.512076138635148 ], [ -95.590317048765556, 29.512115138612995 ], [ -95.589549048698942, 29.512247139131947 ], [ -95.58923104875602, 29.512325138948672 ], [ -95.588760048559578, 29.512460139333868 ], [ -95.588684048097036, 29.512487139352327 ], [ -95.588537048193928, 29.512553138812727 ], [ -95.588461048634571, 29.51258013873019 ], [ -95.588064048314166, 29.512678139233788 ], [ -95.587948047939491, 29.512716138675401 ], [ -95.587845048511966, 29.512775139233241 ], [ -95.587441048388911, 29.512955139219226 ], [ -95.587328048110436, 29.513000139109518 ], [ -95.5871730479588, 29.513050138831918 ], [ -95.58677404794085, 29.513141139373158 ], [ -95.586580047366269, 29.513202139024663 ], [ -95.586505048116535, 29.513231139341752 ], [ -95.586345047292241, 29.513269139402372 ], [ -95.586264048158981, 29.513280138763925 ], [ -95.585976047833299, 29.513297139122798 ], [ -95.585854047926063, 29.513315139241591 ], [ -95.585734047153736, 29.513341139228942 ], [ -95.5856670475752, 29.513353139422097 ], [ -95.58561204810843, 29.513362139627642 ], [ -95.585489047991459, 29.513366139626864 ], [ -95.585200047520772, 29.513357139334197 ], [ -95.584789047396043, 29.513323138861523 ], [ -95.584707047277206, 29.513322139589718 ], [ -95.584542047094999, 29.513331139661538 ], [ -95.584501047253156, 29.513330138979562 ], [ -95.58438104739227, 29.513303139280868 ], [ -95.583971047671326, 29.513133139283187 ], [ -95.583901047403145, 29.51309513879486 ], [ -95.583633047109174, 29.512926138980419 ], [ -95.583505046680301, 29.512835139526274 ], [ -95.583335046788832, 29.512679139243385 ], [ -95.583253046524646, 29.512597138776592 ], [ -95.583127046988864, 29.512455139515485 ], [ -95.583108047084835, 29.512423138871792 ], [ -95.58294904663596, 29.512253138968266 ], [ -95.58279904650874, 29.512086139248296 ], [ -95.582748046319367, 29.5117921388272 ], [ -95.582799047316428, 29.511490138788435 ], [ -95.582780047078529, 29.511383138719989 ], [ -95.582772046430705, 29.511311139306464 ], [ -95.58276404715491, 29.51116713924095 ], [ -95.58276404714934, 29.511022138609881 ], [ -95.582775046879533, 29.510951138564792 ], [ -95.582805047160875, 29.510809139010011 ], [ -95.582855047095904, 29.510672138821583 ], [ -95.582894046632688, 29.510531138385637 ], [ -95.582976046888461, 29.510327138513496 ], [ -95.583068046974219, 29.510013138304107 ], [ -95.583103047163007, 29.509909138978337 ], [ -95.583131046964482, 29.509841138867092 ], [ -95.583166046405822, 29.509776138529968 ], [ -95.583400046671997, 29.5094471386167 ], [ -95.583686046925777, 29.509139138416138 ], [ -95.584143047027325, 29.508673137920297 ], [ -95.584560047377508, 29.508324138132384 ], [ -95.585041047171686, 29.507983137887948 ], [ -95.585134047279766, 29.507912138484333 ], [ -95.58549604743915, 29.507740138296043 ], [ -95.585882047188704, 29.507425137863571 ], [ -95.586395047222197, 29.507071137614425 ], [ -95.586622047391984, 29.506950137527838 ], [ -95.586999047683562, 29.506746137636632 ], [ -95.587188047495133, 29.506572138105579 ], [ -95.58784804803679, 29.506235137943104 ], [ -95.587999048159801, 29.506112137609527 ], [ -95.588111047856756, 29.506006137213109 ], [ -95.588182048179206, 29.50593013754542 ], [ -95.588215047805292, 29.505894137375506 ], [ -95.588306048364728, 29.505773137294668 ], [ -95.588364048455503, 29.505678137554295 ], [ -95.588386048413497, 29.505649137522742 ], [ -95.588478048473078, 29.505528137566845 ], [ -95.588537048524415, 29.505432137843076 ], [ -95.588585048227898, 29.505333137579559 ], [ -95.588717048211194, 29.504991137381985 ], [ -95.588740047734802, 29.504922137460209 ], [ -95.588743047939502, 29.50477813776968 ], [ -95.588761047942612, 29.504631137693377 ], [ -95.588761048285377, 29.504599137101824 ], [ -95.588740048510232, 29.50452913696888 ], [ -95.588686047836831, 29.504281137176921 ], [ -95.588656048220443, 29.504176137320563 ], [ -95.588596047865536, 29.504041136907716 ], [ -95.588505048051246, 29.50387913705681 ], [ -95.588465047928452, 29.503816136839976 ], [ -95.588330047505792, 29.503635137231655 ], [ -95.588205048260832, 29.503492137078002 ], [ -95.58803104731409, 29.503338137028869 ], [ -95.58787904731912, 29.503216136657223 ], [ -95.587620047504757, 29.503037136576914 ], [ -95.587517048103123, 29.502977136619567 ], [ -95.587299048012554, 29.502874136947796 ], [ -95.586997047360711, 29.502759137425773 ], [ -95.586716047587515, 29.502699137151058 ], [ -95.586432046855933, 29.502655137125579 ], [ -95.586309047841567, 29.502643136818762 ], [ -95.586144046917184, 29.502648136878499 ], [ -95.585856047566338, 29.502668136759187 ], [ -95.585651047124145, 29.502688136870439 ], [ -95.585166047083618, 29.502773137273962 ], [ -95.584807046491619, 29.502855137068714 ], [ -95.584255046794482, 29.50300413675415 ], [ -95.584101046628021, 29.503054137462733 ], [ -95.583862047168097, 29.50311213681147 ], [ -95.583746046361611, 29.503148137526232 ], [ -95.583559047108722, 29.503224136931991 ], [ -95.583451047060848, 29.503277137036903 ], [ -95.583383046806262, 29.5033181376165 ], [ -95.583285046842221, 29.503384137155898 ], [ -95.583195047030017, 29.503458137528831 ], [ -95.582955046569637, 29.503552137175959 ], [ -95.582813046606162, 29.503624137165765 ], [ -95.5826670466667, 29.50369113773661 ], [ -95.582494046640974, 29.503790137172693 ], [ -95.582429046266668, 29.503834137743937 ], [ -95.58215304610043, 29.503827137026867 ], [ -95.581965045788849, 29.50392813706879 ], [ -95.581568046091945, 29.504142137433409 ], [ -95.580963046218059, 29.504550137965687 ], [ -95.580528045835692, 29.504919137935925 ], [ -95.579990046185287, 29.505543137510887 ], [ -95.579504045507989, 29.506263138091487 ], [ -95.579187045592761, 29.506752138227018 ], [ -95.578991045473074, 29.507369138425393 ], [ -95.578846045521288, 29.508203138305596 ], [ -95.578817045315958, 29.508809138400654 ], [ -95.578837045416904, 29.509739138699835 ], [ -95.578800045417395, 29.510075138581094 ], [ -95.578789046181981, 29.510177138875545 ], [ -95.578767045507107, 29.510374139175333 ], [ -95.578764045662751, 29.51040513869847 ], [ -95.578745045565753, 29.510538138681667 ], [ -95.578735045360773, 29.510606139199844 ], [ -95.578723045972851, 29.510689138803652 ], [ -95.578663045815148, 29.511113139062161 ], [ -95.57838404590936, 29.512092138992529 ], [ -95.577973045663541, 29.512740139553845 ], [ -95.57774804548832, 29.512995139490897 ], [ -95.577321045360691, 29.513430139244292 ], [ -95.576930045744859, 29.513760139144601 ], [ -95.576169044858418, 29.513769139902863 ], [ -95.57615804513091, 29.513793140042019 ], [ -95.575921044773906, 29.513891139246077 ], [ -95.575760044613844, 29.513918140010478 ], [ -95.575557044839712, 29.51394513969408 ], [ -95.575392045231595, 29.513928139687277 ], [ -95.57525104455793, 29.513943139380991 ], [ -95.575095045236651, 29.513939139713298 ], [ -95.574646044492653, 29.513995140037199 ], [ -95.574448044701242, 29.513794139991056 ], [ -95.574176045144256, 29.513549139714847 ], [ -95.574116045182649, 29.513463139742147 ], [ -95.574085044489962, 29.513440139445049 ], [ -95.57404704467848, 29.513376139975396 ], [ -95.573960044808842, 29.513212139375984 ], [ -95.573932045096953, 29.513144139171708 ], [ -95.573912044338542, 29.513074139655849 ], [ -95.573847044707676, 29.512682139690295 ], [ -95.573826044108245, 29.512612139798158 ], [ -95.573808044981433, 29.512580139039983 ], [ -95.573732044356589, 29.512495139599974 ], [ -95.57359504465812, 29.512314139706366 ], [ -95.573501044483322, 29.512154139565901 ], [ -95.573451044927268, 29.512055138929693 ], [ -95.573435044131031, 29.511984139687925 ], [ -95.573423044222622, 29.511877139680056 ], [ -95.573394044152934, 29.511698139006281 ], [ -95.573377044539583, 29.511518138886558 ], [ -95.573364044622451, 29.511266139339682 ], [ -95.573341044781671, 29.510978139348499 ], [ -95.573285044176103, 29.510612139081118 ], [ -95.573254044394034, 29.510406138627637 ], [ -95.573219044254969, 29.510265139138117 ], [ -95.573170044258362, 29.510165139419232 ], [ -95.57309604461652, 29.510036138527912 ], [ -95.573010044261039, 29.509833139217086 ], [ -95.572812044155683, 29.509476138868319 ], [ -95.572714043841472, 29.509318138648595 ], [ -95.572621044149798, 29.509199138425352 ], [ -95.572490043838386, 29.509059138761813 ], [ -95.572251044217651, 29.508836138789214 ], [ -95.572073044325052, 29.508686138619847 ], [ -95.571948043981976, 29.508592139082541 ], [ -95.571687044127884, 29.508415138238014 ], [ -95.571585043532096, 29.508354138789141 ], [ -95.571408043596492, 29.508261138334795 ], [ -95.571083043696021, 29.508103138721317 ], [ -95.570717043937506, 29.507938138654815 ], [ -95.570451043688976, 29.507838138744265 ], [ -95.570017043285972, 29.507724138792653 ], [ -95.569611042851449, 29.507659138308586 ], [ -95.569282043080463, 29.507642138604854 ], [ -95.568705042939428, 29.507626138465039 ], [ -95.568417042462656, 29.507611138755344 ], [ -95.568046042986822, 29.50761313861798 ], [ -95.567430042625929, 29.507561138445261 ], [ -95.567141042184019, 29.507556139023304 ], [ -95.566648042908426, 29.507521138597056 ], [ -95.566195042787342, 29.507535138463091 ], [ -95.566031042366532, 29.507555138488836 ], [ -95.56558304179741, 29.507495138785956 ], [ -95.565380041873127, 29.507462139064522 ], [ -95.565220042221355, 29.507427138845664 ], [ -95.564904041570401, 29.507345138410891 ], [ -95.564464042073084, 29.507247138380333 ], [ -95.564348041437498, 29.507211138609303 ], [ -95.564050042129622, 29.507086138570902 ], [ -95.563766041507847, 29.506940138604985 ], [ -95.563556041946057, 29.506826138576777 ], [ -95.563427041683411, 29.506783138392052 ], [ -95.562934041369957, 29.506537138760965 ], [ -95.56243504155448, 29.506188138244241 ], [ -95.562149041693743, 29.50600713884069 ], [ -95.56169904162897, 29.505750138261163 ], [ -95.561181041312722, 29.505393138255371 ], [ -95.560620041200423, 29.505043138375228 ], [ -95.560610040385399, 29.505037138190346 ], [ -95.560268040971891, 29.504835137897437 ], [ -95.559822040199847, 29.504648137884466 ], [ -95.559529040565963, 29.504515138273788 ], [ -95.559195040460523, 29.504374138197889 ], [ -95.559118040768411, 29.504348138363156 ], [ -95.55899804089006, 29.504321137957636 ], [ -95.558932040254959, 29.504292138145352 ], [ -95.558856040599224, 29.504266138627614 ], [ -95.558696039888886, 29.504229138154678 ], [ -95.558172039993096, 29.504129138176342 ], [ -95.557928040218968, 29.504095137871047 ], [ -95.557108040321793, 29.504014138494771 ], [ -95.556369040021494, 29.503951137966101 ], [ -95.55628703977338, 29.503947138608165 ], [ -95.556040040016001, 29.503948138339545 ], [ -95.555507039038787, 29.503894138308901 ], [ -95.555260039581611, 29.503879138423731 ], [ -95.555178039529181, 29.503878137990412 ], [ -95.555013039035828, 29.503886138146608 ], [ -95.555005039196431, 29.50394913844038 ], [ -95.554961039844287, 29.504277138271473 ], [ -95.554948039454459, 29.504374138154798 ], [ -95.554898039582184, 29.504552138572517 ], [ -95.554899039347504, 29.504588138807392 ], [ -95.554921039903874, 29.504731138696929 ], [ -95.554921039235751, 29.504802138891137 ], [ -95.554894038899121, 29.504908138684627 ], [ -95.554863039526708, 29.504974138790647 ], [ -95.554845039674191, 29.505044138843562 ], [ -95.55484003967355, 29.50511613851992 ], [ -95.554841039731286, 29.505223138965871 ], [ -95.554854039579666, 29.505511138839832 ], [ -95.554850038965128, 29.50569113909631 ], [ -95.554855039540769, 29.505943138832979 ], [ -95.554843039328432, 29.506193138713652 ], [ -95.554847039278457, 29.506373138453508 ], [ -95.55483903983847, 29.506480138891373 ], [ -95.554829039160197, 29.506516139008557 ], [ -95.554776039963045, 29.506651138754933 ], [ -95.554757039267017, 29.506683139099387 ], [ -95.554639039635077, 29.506783139117989 ], [ -95.554537039485936, 29.506825139136225 ], [ -95.554490039188209, 29.50684613886763 ], [ -95.554423038868663, 29.50688713908859 ], [ -95.554132038954052, 29.507036139068468 ], [ -95.553857039045468, 29.507178139065456 ], [ -95.553724039110747, 29.507262138819758 ], [ -95.553696039342213, 29.507288138872049 ], [ -95.553625039145743, 29.507377139322621 ], [ -95.553590039241442, 29.507428139081323 ], [ -95.553520039677167, 29.50753113874659 ], [ -95.55349303966014, 29.507583139118058 ], [ -95.553470038728605, 29.507630138858005 ], [ -95.553445039079463, 29.507698139328877 ], [ -95.553439039076707, 29.507878139426257 ], [ -95.553445039226744, 29.507949139077212 ], [ -95.553490038929027, 29.508087139191073 ], [ -95.5535400393332, 29.508262139036759 ], [ -95.553617039698466, 29.508323138889988 ], [ -95.553656039138005, 29.508363139274721 ], [ -95.553695039339601, 29.508405139099661 ], [ -95.553736039776481, 29.508468138945727 ], [ -95.553753039611294, 29.508501139582439 ], [ -95.553764039019057, 29.508535139128981 ], [ -95.553766039435644, 29.508571138974968 ], [ -95.553728039428833, 29.508634139251971 ], [ -95.553703039220011, 29.508663139520333 ], [ -95.553615038819785, 29.50873813889152 ], [ -95.553622039689373, 29.508773139324678 ], [ -95.553624039729385, 29.508811139498018 ], [ -95.55360003903273, 29.508836139573617 ], [ -95.553561039709479, 29.508852139552204 ], [ -95.553527038856984, 29.508899139107069 ], [ -95.55347803964932, 29.508967139078585 ], [ -95.553464039589841, 29.508989139233407 ], [ -95.553568039026217, 29.50908313942606 ], [ -95.553656039790994, 29.509121139183598 ], [ -95.55377503952073, 29.50919313954649 ], [ -95.55389503979687, 29.509292139428471 ], [ -95.55394503929989, 29.509369139753588 ], [ -95.554002039266848, 29.509436139229589 ], [ -95.554020039155432, 29.509457139219428 ], [ -95.554240039519698, 29.509567139739072 ], [ -95.554385039879762, 29.509583139672557 ], [ -95.554485039378932, 29.509622139620369 ], [ -95.554567040042059, 29.509677139482619 ], [ -95.554724039427967, 29.5098201392071 ], [ -95.554800039777277, 29.509963139789033 ], [ -95.554818039802271, 29.510023139869045 ], [ -95.554887040102827, 29.510089139359749 ], [ -95.555019039346803, 29.510155139513845 ], [ -95.555101039829381, 29.510177139823597 ], [ -95.555164039551897, 29.51018213950735 ], [ -95.555334039423144, 29.510270139361165 ], [ -95.555485039672419, 29.510512139963435 ], [ -95.555648039643103, 29.510705139910982 ], [ -95.55573603965658, 29.510760139242578 ], [ -95.555931040177128, 29.51075413946436 ], [ -95.556025040134685, 29.510727139608129 ], [ -95.556132039611128, 29.510721139617957 ], [ -95.556421040542446, 29.510776139369053 ], [ -95.556547040047178, 29.510776139385115 ], [ -95.557081040300076, 29.510661139981284 ], [ -95.557647040805364, 29.510611139343645 ], [ -95.557791040119909, 29.510617139677709 ], [ -95.557912039951063, 29.510639139691389 ], [ -95.557950040882233, 29.51065313939279 ], [ -95.558237040373967, 29.510659139604449 ], [ -95.558765040749577, 29.510721139331682 ], [ -95.559130040274098, 29.510777139255488 ], [ -95.559413040964316, 29.510825139352143 ], [ -95.559454041074432, 29.510819139384072 ], [ -95.559645041243812, 29.510753139522183 ], [ -95.559715041050978, 29.510715139482059 ], [ -95.559813041135257, 29.510649139599511 ], [ -95.560035040562227, 29.510490139894472 ], [ -95.560070041356127, 29.510471139351502 ], [ -95.560294041130902, 29.51038113986462 ], [ -95.560413041144329, 29.510354139407202 ], [ -95.56049304148371, 29.51034113958449 ], [ -95.560780041506661, 29.510331139843963 ], [ -95.560903040948048, 29.510342139833881 ], [ -95.561288041457047, 29.510469139393255 ], [ -95.561473041225014, 29.510547139111313 ], [ -95.561511041090611, 29.510560139401729 ], [ -95.561729041579127, 29.510659139032967 ], [ -95.56234304180991, 29.510949139361177 ], [ -95.563240042006768, 29.51138413922958 ], [ -95.563395041790571, 29.511432139810509 ], [ -95.56343604202651, 29.51144013912635 ], [ -95.563517041736858, 29.511443139637461 ], [ -95.563681042039832, 29.511435139998394 ], [ -95.563879041839627, 29.511388139387066 ], [ -95.564040042186789, 29.511360139236864 ], [ -95.5640780420852, 29.511347139916396 ], [ -95.564197042102364, 29.511320139703916 ], [ -95.564525042019014, 29.511297139205663 ], [ -95.564607041741198, 29.511298139157066 ], [ -95.564648042591045, 29.511294139753062 ], [ -95.564771041928552, 29.511295139910924 ], [ -95.564810042008517, 29.511307139510158 ], [ -95.566098042642139, 29.511832139472553 ], [ -95.566592042308031, 29.512011139207601 ], [ -95.566865042879684, 29.51208613989315 ], [ -95.566944043218072, 29.512104139965444 ], [ -95.567186043309817, 29.512141140029065 ], [ -95.567265042716059, 29.512159139884982 ], [ -95.567335043262773, 29.512194139754452 ], [ -95.567367043167664, 29.512217139348468 ], [ -95.567438043228819, 29.512253139718439 ], [ -95.567500042617255, 29.512298139668051 ], [ -95.567620042896223, 29.512397139371057 ], [ -95.567663042591747, 29.512457139444546 ], [ -95.567760043276635, 29.512573139741637 ], [ -95.567850042926636, 29.512772139849208 ], [ -95.567873042902917, 29.512878139325821 ], [ -95.567871043519901, 29.513021139328441 ], [ -95.567866042987333, 29.513093140038347 ], [ -95.567844042660752, 29.51327213965957 ], [ -95.567774042663558, 29.51347813973381 ], [ -95.56769104280292, 29.513681139463593 ], [ -95.567682043424611, 29.513716139761435 ], [ -95.567653043050754, 29.513894139966229 ], [ -95.567654043383968, 29.514217139822041 ], [ -95.567672043113035, 29.514469140327098 ], [ -95.567698042855199, 29.51457413992841 ], [ -95.567805043507974, 29.514846139750766 ], [ -95.567852043601135, 29.514946139714354 ], [ -95.568137043019533, 29.515463140256241 ], [ -95.568265043488296, 29.515727140359285 ], [ -95.56827604377338, 29.51576214050824 ], [ -95.568290043076473, 29.515832140295242 ], [ -95.568291043540611, 29.515868140241146 ], [ -95.568301043213324, 29.515939140411135 ], [ -95.568305043196659, 29.516011140169017 ], [ -95.5682970432606, 29.516082140409225 ], [ -95.568259042983755, 29.516258140357703 ], [ -95.568174043143983, 29.516383140370849 ], [ -95.568002042873388, 29.516627140256823 ], [ -95.567751043170816, 29.516998140621187 ], [ -95.567733043704308, 29.51703014041221 ], [ -95.567626043370694, 29.517452140688004 ], [ -95.567509043583854, 29.517983141009029 ], [ -95.567492043395333, 29.518016140411802 ], [ -95.567401042992685, 29.518135141055126 ], [ -95.567311043126466, 29.518209141068439 ], [ -95.567213042946875, 29.518273140662803 ], [ -95.566458042751137, 29.518699141011751 ], [ -95.566132042961328, 29.518915141108387 ], [ -95.566065042766439, 29.518954141407352 ], [ -95.56600204305245, 29.51900014086992 ], [ -95.565952043163279, 29.519057141157941 ], [ -95.565894043242508, 29.519152140674752 ], [ -95.56587904291591, 29.519186140871621 ], [ -95.5658210423112, 29.519432141413397 ], [ -95.56582304305951, 29.519468140892418 ], [ -95.565945042588453, 29.519813141025598 ], [ -95.56596204306139, 29.519846140802496 ], [ -95.56604104264278, 29.519928140769661 ], [ -95.566169043197462, 29.520017141313136 ], [ -95.566247042647419, 29.520038141665065 ], [ -95.566488042802177, 29.520086141122043 ], [ -95.566650042881648, 29.520099140987657 ], [ -95.566770043529033, 29.520124140827519 ], [ -95.566806043093777, 29.520143141432982 ], [ -95.566871042675444, 29.520185141324998 ], [ -95.566965043244039, 29.520254141131904 ], [ -95.567077043272675, 29.520359141354582 ], [ -95.567106043140569, 29.520426141401845 ], [ -95.567131043236657, 29.520530141304956 ], [ -95.567147043615634, 29.520636141495501 ], [ -95.567159043736027, 29.520778141369505 ], [ -95.567172043373674, 29.520849140968657 ], [ -95.567211043559595, 29.521168141589698 ], [ -95.567199043166426, 29.52123914099128 ], [ -95.56714804362116, 29.521376141621165 ], [ -95.567107042902208, 29.52147314158842 ], [ -95.567050043136817, 29.521520141432333 ], [ -95.566974043265049, 29.521545141708689 ], [ -95.566894043202609, 29.521564141145113 ], [ -95.566813042989679, 29.521566141885387 ], [ -95.566529042747504, 29.52158914152427 ], [ -95.56644804306346, 29.521590141895878 ], [ -95.566285042728467, 29.521603141129045 ], [ -95.566245043266846, 29.521601141509215 ], [ -95.56612404340926, 29.521605141941965 ], [ -95.566043043504024, 29.521612141229618 ], [ -95.565475042616058, 29.521635141938699 ], [ -95.56539404298637, 29.521634141350031 ], [ -95.564931042423822, 29.52165114201965 ], [ -95.56436304219126, 29.521661141338466 ], [ -95.56428204261411, 29.521658141558223 ], [ -95.563510042174073, 29.521671141782754 ], [ -95.563410042781584, 29.521670141716754 ], [ -95.562861041709752, 29.521666141486591 ], [ -95.56265804234539, 29.521668141434937 ], [ -95.562577041594253, 29.521674142056451 ], [ -95.56245504249739, 29.521676142040334 ], [ -95.5622930416163, 29.521673141464007 ], [ -95.562212041871007, 29.521679141890878 ], [ -95.562136042102495, 29.521705141421105 ], [ -95.562029041479633, 29.521757141319853 ], [ -95.561963041696117, 29.521800141636984 ], [ -95.561936042413635, 29.52182414171067 ], [ -95.561878042089404, 29.521876141574818 ], [ -95.561855041636846, 29.521906141649602 ], [ -95.56180804166388, 29.522004142144954 ], [ -95.561798041711072, 29.522075142049204 ], [ -95.561798041911899, 29.522182141438851 ], [ -95.561813042027779, 29.522572142143815 ], [ -95.561874042293027, 29.523464142032953 ], [ -95.561891042376104, 29.523857142182205 ], [ -95.561910041775931, 29.524680142611391 ], [ -95.561911041589639, 29.524710142506127 ], [ -95.561917041575256, 29.524824142014062 ], [ -95.56195304248952, 29.525288142136802 ], [ -95.561969041848187, 29.525742142516414 ], [ -95.561977041817485, 29.525966142660483 ], [ -95.562006041976645, 29.52652814276491 ], [ -95.562030041675001, 29.526965142898337 ], [ -95.56206304193968, 29.527680143200307 ], [ -95.562062041966641, 29.527751142508475 ], [ -95.562111042301069, 29.528751143413658 ], [ -95.56212404230223, 29.529066143139733 ], [ -95.562127042590788, 29.529129142904647 ], [ -95.562128042481291, 29.529159143671791 ], [ -95.562131042011146, 29.529232143224515 ], [ -95.562198042251069, 29.530860143629191 ], [ -95.562221042080083, 29.531540144041013 ], [ -95.562229042414657, 29.531671143364289 ], [ -95.5623000423506, 29.533533144190486 ], [ -95.562388042996844, 29.535036144710521 ], [ -95.562387042115802, 29.535107144786721 ], [ -95.562441042564103, 29.53625314500648 ], [ -95.562469042314305, 29.536758144935419 ], [ -95.56249404322466, 29.537185144608724 ], [ -95.562495042617854, 29.537477144695448 ], [ -95.562498042651271, 29.537795145285578 ], [ -95.562476042278988, 29.538082145355649 ], [ -95.562403042457689, 29.538545144920828 ], [ -95.562384042645036, 29.538615145085661 ], [ -95.562324042856389, 29.538749144770264 ], [ -95.562305042714442, 29.538781145178394 ], [ -95.562255043005422, 29.538837144897396 ], [ -95.562342042623612, 29.538869145565616 ], [ -95.563085043461541, 29.539562145697715 ], [ -95.563172043524318, 29.539639145741443 ], [ -95.563228043396549, 29.541490145892819 ], [ -95.563229043523179, 29.541547145432261 ], [ -95.563231043380483, 29.541612145758702 ], [ -95.563238043412952, 29.541844145814661 ], [ -95.56327204345898, 29.543657145830394 ], [ -95.563276043259393, 29.543835145882458 ], [ -95.563278042776474, 29.54392214603125 ], [ -95.563369043638204, 29.548320147469596 ], [ -95.563402043763247, 29.549907147801381 ], [ -95.563438043374589, 29.552144147486057 ], [ -95.565566044576116, 29.552110147738688 ], [ -95.567177044726947, 29.552085147771688 ], [ -95.568015044721392, 29.552075147741949 ], [ -95.56879504506675, 29.552066147395905 ], [ -95.571172045742202, 29.552038147860575 ], [ -95.572091045420507, 29.552020147180585 ], [ -95.572952046538376, 29.5520091478759 ], [ -95.573179045841272, 29.552034147892812 ], [ -95.573361046615247, 29.552065147145257 ], [ -95.573718045934342, 29.552148147435677 ], [ -95.573910046684716, 29.552231147466664 ], [ -95.574239045930824, 29.552441147988674 ], [ -95.574275045997595, 29.552464147655385 ], [ -95.574382046018243, 29.552500147504038 ], [ -95.575398046968203, 29.553304147680905 ], [ -95.575478046741296, 29.553369147403011 ], [ -95.575583046657073, 29.553460147665888 ], [ -95.577367047642696, 29.551952147442609 ], [ -95.577431047161937, 29.551890147650315 ], [ -95.577581046892561, 29.551741147593191 ], [ -95.577730046987028, 29.551594147370789 ], [ -95.577771047505223, 29.551551147540749 ], [ -95.577811047356789, 29.551518147085847 ], [ -95.578078047408852, 29.551302147209036 ], [ -95.578170047768424, 29.551232147492502 ], [ -95.578443047843109, 29.551020147608778 ], [ -95.578566047108922, 29.550921147459562 ], [ -95.578857047942833, 29.550707146676022 ], [ -95.579258047578492, 29.550414147164293 ], [ -95.579985048062056, 29.550044146889679 ], [ -95.581123048541187, 29.549646146880121 ], [ -95.581588047975558, 29.549573146802786 ], [ -95.581918048741173, 29.549523146925811 ], [ -95.583107048742193, 29.549467146370333 ], [ -95.583724048846619, 29.54941514647513 ], [ -95.584375049054998, 29.549330147003083 ], [ -95.584932049374785, 29.549243146290927 ], [ -95.585094049302569, 29.549218146522485 ], [ -95.585255048803873, 29.549193146286175 ], [ -95.585427048718884, 29.549166146635621 ], [ -95.585386049502134, 29.548983146148107 ], [ -95.585181049340491, 29.548068145961295 ], [ -95.585129048952325, 29.547883146610449 ], [ -95.585070048740306, 29.547700146587587 ], [ -95.585004049082897, 29.54751814664321 ], [ -95.584932048593032, 29.547339146397338 ], [ -95.584853048721598, 29.547161146209771 ], [ -95.584768049105108, 29.546986145726091 ], [ -95.584677049082956, 29.546813145668455 ], [ -95.584579049010742, 29.546643145917031 ], [ -95.584486048474602, 29.546463145891174 ], [ -95.584178049063013, 29.546075146230798 ], [ -95.583845048134691, 29.545722146023934 ], [ -95.583732048578469, 29.545593145899762 ], [ -95.583715048681285, 29.545573146301603 ], [ -95.58366504891238, 29.545517145668267 ], [ -95.583635048724489, 29.545487145458164 ], [ -95.583443048301717, 29.545296146277735 ], [ -95.583326048478185, 29.54520714625334 ], [ -95.582940047914278, 29.544915145385662 ], [ -95.581733048226567, 29.544278145498318 ], [ -95.580090047741379, 29.543621145252253 ], [ -95.579199047304613, 29.543245145974517 ], [ -95.578942047332532, 29.543140145708392 ], [ -95.578808047153288, 29.543081145366667 ], [ -95.578417047210834, 29.542886145114601 ], [ -95.578290047102584, 29.54281414533779 ], [ -95.577930046760898, 29.54259114545189 ], [ -95.577708047292631, 29.54243514510717 ], [ -95.577502047220079, 29.542276145438681 ], [ -95.577378046750795, 29.542175145731189 ], [ -95.577308046700125, 29.542118144947157 ], [ -95.57726604675679, 29.542079145160894 ], [ -95.577122046903725, 29.541944145197547 ], [ -95.576939046301035, 29.541759145323127 ], [ -95.576761046996737, 29.541562144985935 ], [ -95.576515046769444, 29.541260145362763 ], [ -95.576439046903403, 29.541158145050602 ], [ -95.576295046613552, 29.540952144801569 ], [ -95.576103046400561, 29.540648144749905 ], [ -95.576045046690439, 29.540547144918133 ], [ -95.575944045863267, 29.540351144760141 ], [ -95.575819046758141, 29.540084145310072 ], [ -95.575784045796482, 29.540005144710047 ], [ -95.575722046078397, 29.539874145010113 ], [ -95.575659046600265, 29.539740145378502 ], [ -95.575618046269753, 29.53965014461534 ], [ -95.575553045966046, 29.539515144971855 ], [ -95.57546804605866, 29.539337144468135 ], [ -95.575376046081985, 29.539138144564589 ], [ -95.575327046488255, 29.539034145129122 ], [ -95.575278046554772, 29.538931144915491 ], [ -95.575182046001942, 29.538726144336984 ], [ -95.57509004559698, 29.538517144414971 ], [ -95.575051046269635, 29.538428144293707 ], [ -95.574976045608992, 29.538232144876982 ], [ -95.574944046261237, 29.538134144799205 ], [ -95.574916046010102, 29.538038144565181 ], [ -95.574837045949366, 29.537765144278431 ], [ -95.57481004585641, 29.53767414423659 ], [ -95.574722046369288, 29.537416144921071 ], [ -95.574692046008437, 29.537342144659718 ], [ -95.574662046326921, 29.537271144876478 ], [ -95.574633045549831, 29.537203144065735 ], [ -95.574607045766655, 29.537141144344876 ], [ -95.574584045966247, 29.537085144787667 ], [ -95.574549045871933, 29.536993144457167 ], [ -95.57451304630591, 29.536882144415266 ], [ -95.57465204633462, 29.536834144298332 ], [ -95.575545045976895, 29.53653314410861 ], [ -95.576106045986336, 29.536340144610083 ], [ -95.577901046844275, 29.535726143868533 ], [ -95.578155047012885, 29.535628143969113 ], [ -95.578470047124156, 29.535482143709856 ], [ -95.578710046330315, 29.535381144171158 ], [ -95.578905046630695, 29.535306144120405 ], [ -95.578994047257552, 29.53527614386676 ], [ -95.579085047320362, 29.535253144353657 ], [ -95.579220047309718, 29.535190144120023 ], [ -95.579685046637849, 29.535041143849163 ], [ -95.580412047186854, 29.534824144124531 ], [ -95.581064047314712, 29.534624143418878 ], [ -95.581449047016037, 29.534500143371112 ], [ -95.581498047420538, 29.534484143592646 ], [ -95.581661047787378, 29.53443114353114 ], [ -95.582635047759581, 29.534115143593723 ], [ -95.583145048133304, 29.533937143511164 ], [ -95.583242048382203, 29.533903143916671 ], [ -95.583381047714468, 29.533859143631989 ], [ -95.583754048103287, 29.533714143106689 ], [ -95.584226047768553, 29.533553143681708 ], [ -95.586462048791034, 29.532808142831158 ], [ -95.58679704888587, 29.532689143552521 ], [ -95.586960049263098, 29.532640143189621 ], [ -95.587125048881532, 29.532579143069832 ], [ -95.587443048935924, 29.532482143108115 ], [ -95.587610049061254, 29.532416143046401 ], [ -95.588120049548152, 29.532237143169873 ], [ -95.588295048710108, 29.532188143220601 ], [ -95.588470049327597, 29.532128143192502 ], [ -95.588644048807922, 29.532061142492719 ], [ -95.588813049326177, 29.53200914270867 ], [ -95.589482049755844, 29.53178414258344 ], [ -95.589654048949626, 29.531719143134481 ], [ -95.590361049470474, 29.531474142705207 ], [ -95.590545049333826, 29.531407142783493 ], [ -95.590915049272226, 29.531281142978614 ], [ -95.591096050233872, 29.531223143051466 ], [ -95.592451050291928, 29.530753142934149 ], [ -95.592879050465953, 29.530598142110854 ], [ -95.594033050319013, 29.530205142621643 ], [ -95.594105050220548, 29.530175142597198 ], [ -95.596784051657366, 29.529226142509842 ], [ -95.597387051174422, 29.528810141881483 ], [ -95.597603051726992, 29.528662142011704 ], [ -95.597846051326385, 29.528494141612626 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 53, "Tract": "48157674403", "Area_SqMi": 1.4989333293435956, "total_2009": 1, "total_2010": 2, "total_2011": 2, "total_2012": 1, "total_2013": 2, "total_2014": 17, "total_2015": 26, "total_2016": 59, "total_2017": 99, "total_2018": 176, "total_2019": 243, "total_2020": 336, "age1": 102, "age2": 191, "age3": 76, "earn1": 90, "earn2": 150, "earn3": 129, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 4, "naics_s07": 70, "naics_s08": 0, "naics_s09": 0, "naics_s10": 2, "naics_s11": 24, "naics_s12": 61, "naics_s13": 0, "naics_s14": 41, "naics_s15": 15, "naics_s16": 77, "naics_s17": 1, "naics_s18": 20, "naics_s19": 51, "naics_s20": 0, "race1": 170, "race2": 55, "race3": 2, "race4": 136, "race5": 3, "race6": 3, "ethnicity1": 283, "ethnicity2": 86, "edu1": 50, "edu2": 62, "edu3": 52, "edu4": 103, "Shape_Length": 27121.692036244818, "Shape_Area": 41787695.772066787, "total_2021": 337, "total_2022": 369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.60156505193558, 29.530830142512158 ], [ -95.601577052617088, 29.530787142282829 ], [ -95.601470052350322, 29.530784142496511 ], [ -95.600893051792283, 29.53076114200363 ], [ -95.600605051721217, 29.530742142474566 ], [ -95.600461051809546, 29.530718142088013 ], [ -95.600382051676377, 29.53069914240011 ], [ -95.600059052466335, 29.530576142206055 ], [ -95.599663052085702, 29.530425142453485 ], [ -95.599424052368036, 29.53028314212829 ], [ -95.599335051781438, 29.530162141838204 ], [ -95.599213051447478, 29.53001714239371 ], [ -95.599161051660971, 29.529961142551564 ], [ -95.59910505161838, 29.52990814248119 ], [ -95.598871051615646, 29.529704142412346 ], [ -95.598743051205261, 29.529613142494451 ], [ -95.598608052132249, 29.529530142524784 ], [ -95.598503051314907, 29.529419142258821 ], [ -95.598285051687995, 29.529156142021002 ], [ -95.598154051698259, 29.528972142166609 ], [ -95.597965051893567, 29.528693142048184 ], [ -95.597846051326385, 29.528494141612626 ], [ -95.597603051726992, 29.528662142011704 ], [ -95.597387051174422, 29.528810141881483 ], [ -95.596784051657366, 29.529226142509842 ], [ -95.594105050220548, 29.530175142597198 ], [ -95.594033050319013, 29.530205142621643 ], [ -95.592879050465953, 29.530598142110854 ], [ -95.592451050291928, 29.530753142934149 ], [ -95.591096050233872, 29.531223143051466 ], [ -95.590915049272226, 29.531281142978614 ], [ -95.590545049333826, 29.531407142783493 ], [ -95.590361049470474, 29.531474142705207 ], [ -95.589654048949626, 29.531719143134481 ], [ -95.589482049755844, 29.53178414258344 ], [ -95.588813049326177, 29.53200914270867 ], [ -95.588644048807922, 29.532061142492719 ], [ -95.588470049327597, 29.532128143192502 ], [ -95.588295048710108, 29.532188143220601 ], [ -95.588120049548152, 29.532237143169873 ], [ -95.587610049061254, 29.532416143046401 ], [ -95.587443048935924, 29.532482143108115 ], [ -95.587125048881532, 29.532579143069832 ], [ -95.586960049263098, 29.532640143189621 ], [ -95.58679704888587, 29.532689143552521 ], [ -95.586462048791034, 29.532808142831158 ], [ -95.584226047768553, 29.533553143681708 ], [ -95.583754048103287, 29.533714143106689 ], [ -95.583381047714468, 29.533859143631989 ], [ -95.583242048382203, 29.533903143916671 ], [ -95.583145048133304, 29.533937143511164 ], [ -95.582635047759581, 29.534115143593723 ], [ -95.581661047787378, 29.53443114353114 ], [ -95.581498047420538, 29.534484143592646 ], [ -95.581449047016037, 29.534500143371112 ], [ -95.581064047314712, 29.534624143418878 ], [ -95.580412047186854, 29.534824144124531 ], [ -95.579685046637849, 29.535041143849163 ], [ -95.579220047309718, 29.535190144120023 ], [ -95.579085047320362, 29.535253144353657 ], [ -95.578994047257552, 29.53527614386676 ], [ -95.578905046630695, 29.535306144120405 ], [ -95.578710046330315, 29.535381144171158 ], [ -95.578470047124156, 29.535482143709856 ], [ -95.578155047012885, 29.535628143969113 ], [ -95.577901046844275, 29.535726143868533 ], [ -95.576106045986336, 29.536340144610083 ], [ -95.575545045976895, 29.53653314410861 ], [ -95.57465204633462, 29.536834144298332 ], [ -95.57451304630591, 29.536882144415266 ], [ -95.574549045871933, 29.536993144457167 ], [ -95.574584045966247, 29.537085144787667 ], [ -95.574607045766655, 29.537141144344876 ], [ -95.574633045549831, 29.537203144065735 ], [ -95.574662046326921, 29.537271144876478 ], [ -95.574692046008437, 29.537342144659718 ], [ -95.574722046369288, 29.537416144921071 ], [ -95.57481004585641, 29.53767414423659 ], [ -95.574837045949366, 29.537765144278431 ], [ -95.574916046010102, 29.538038144565181 ], [ -95.574944046261237, 29.538134144799205 ], [ -95.574976045608992, 29.538232144876982 ], [ -95.575051046269635, 29.538428144293707 ], [ -95.57509004559698, 29.538517144414971 ], [ -95.575182046001942, 29.538726144336984 ], [ -95.575278046554772, 29.538931144915491 ], [ -95.575327046488255, 29.539034145129122 ], [ -95.575376046081985, 29.539138144564589 ], [ -95.57546804605866, 29.539337144468135 ], [ -95.575553045966046, 29.539515144971855 ], [ -95.575618046269753, 29.53965014461534 ], [ -95.575659046600265, 29.539740145378502 ], [ -95.575722046078397, 29.539874145010113 ], [ -95.575784045796482, 29.540005144710047 ], [ -95.575819046758141, 29.540084145310072 ], [ -95.575944045863267, 29.540351144760141 ], [ -95.576045046690439, 29.540547144918133 ], [ -95.576103046400561, 29.540648144749905 ], [ -95.576295046613552, 29.540952144801569 ], [ -95.576439046903403, 29.541158145050602 ], [ -95.576515046769444, 29.541260145362763 ], [ -95.576761046996737, 29.541562144985935 ], [ -95.576939046301035, 29.541759145323127 ], [ -95.577122046903725, 29.541944145197547 ], [ -95.57726604675679, 29.542079145160894 ], [ -95.577308046700125, 29.542118144947157 ], [ -95.577378046750795, 29.542175145731189 ], [ -95.577502047220079, 29.542276145438681 ], [ -95.577708047292631, 29.54243514510717 ], [ -95.577930046760898, 29.54259114545189 ], [ -95.578290047102584, 29.54281414533779 ], [ -95.578417047210834, 29.542886145114601 ], [ -95.578808047153288, 29.543081145366667 ], [ -95.578942047332532, 29.543140145708392 ], [ -95.579199047304613, 29.543245145974517 ], [ -95.580090047741379, 29.543621145252253 ], [ -95.581733048226567, 29.544278145498318 ], [ -95.582940047914278, 29.544915145385662 ], [ -95.583326048478185, 29.54520714625334 ], [ -95.583443048301717, 29.545296146277735 ], [ -95.583635048724489, 29.545487145458164 ], [ -95.58366504891238, 29.545517145668267 ], [ -95.583715048681285, 29.545573146301603 ], [ -95.583732048578469, 29.545593145899762 ], [ -95.583845048134691, 29.545722146023934 ], [ -95.584178049063013, 29.546075146230798 ], [ -95.584486048474602, 29.546463145891174 ], [ -95.584579049010742, 29.546643145917031 ], [ -95.584677049082956, 29.546813145668455 ], [ -95.584768049105108, 29.546986145726091 ], [ -95.584853048721598, 29.547161146209771 ], [ -95.584932048593032, 29.547339146397338 ], [ -95.585004049082897, 29.54751814664321 ], [ -95.585070048740306, 29.547700146587587 ], [ -95.585129048952325, 29.547883146610449 ], [ -95.585181049340491, 29.548068145961295 ], [ -95.585386049502134, 29.548983146148107 ], [ -95.585427048718884, 29.549166146635621 ], [ -95.585443049468111, 29.549236146984686 ], [ -95.585622049527245, 29.550016146353247 ], [ -95.585642049449419, 29.550093146928386 ], [ -95.585676049433843, 29.550221147098448 ], [ -95.58573004936828, 29.550401146741361 ], [ -95.585844049651328, 29.550719146562617 ], [ -95.585964049626213, 29.551003147166259 ], [ -95.586134048921792, 29.551375146575726 ], [ -95.586166049395317, 29.551439147251276 ], [ -95.586242049883296, 29.55159314740985 ], [ -95.58628404957814, 29.551679146667862 ], [ -95.586300049171228, 29.55167414726429 ], [ -95.586323049082296, 29.551667146636071 ], [ -95.586343049155914, 29.551662147353031 ], [ -95.586358049072416, 29.551658146944956 ], [ -95.586372049617765, 29.551654147200335 ], [ -95.586384049058438, 29.551651147069524 ], [ -95.586403049816283, 29.551646146638895 ], [ -95.586417049326755, 29.551642146863209 ], [ -95.586431049867571, 29.551638147112396 ], [ -95.586448049487942, 29.551634147193173 ], [ -95.586633049025522, 29.551583147382235 ], [ -95.586707049082463, 29.551563146731624 ], [ -95.586767049506832, 29.551556147205105 ], [ -95.586840050056836, 29.551548147146754 ], [ -95.586945049665047, 29.551536147185743 ], [ -95.587075049459202, 29.551521146590567 ], [ -95.587263049701235, 29.551532146979572 ], [ -95.58755905029409, 29.551550146662745 ], [ -95.587772050104931, 29.55156314732443 ], [ -95.587917049380692, 29.551593147278933 ], [ -95.588127050079592, 29.551637146808623 ], [ -95.588292050275356, 29.551672147420092 ], [ -95.588426050485893, 29.551700146613602 ], [ -95.588523050222292, 29.551706147114796 ], [ -95.588709050447576, 29.55171314709095 ], [ -95.588771050313227, 29.551716146819079 ], [ -95.588930050533691, 29.551689146758452 ], [ -95.589015049980489, 29.551679147098131 ], [ -95.589092050199994, 29.551670146590258 ], [ -95.589421050265969, 29.551657146977007 ], [ -95.589643050356528, 29.551649147197711 ], [ -95.590439050651611, 29.551659147327911 ], [ -95.591043051074323, 29.551667146602256 ], [ -95.591321051244279, 29.551670147089624 ], [ -95.592661051181764, 29.551687147054519 ], [ -95.593833051785325, 29.551652146896068 ], [ -95.594475051043148, 29.551633146777363 ], [ -95.594485051281168, 29.551493146872247 ], [ -95.594561051680344, 29.550493146467598 ], [ -95.59502005135549, 29.549541146669483 ], [ -95.59517505208872, 29.549262146178435 ], [ -95.595343051956476, 29.54895014662214 ], [ -95.595407051367829, 29.548832146421109 ], [ -95.595476051181464, 29.548703146396623 ], [ -95.595632051758159, 29.548393146370572 ], [ -95.595967051267365, 29.547755145461551 ], [ -95.596264052108523, 29.547174145397285 ], [ -95.596556052325397, 29.546616145401355 ], [ -95.59658205224315, 29.546565146050785 ], [ -95.596883051900733, 29.545958145960093 ], [ -95.596923052033844, 29.545882145290793 ], [ -95.597259051502334, 29.545221145180271 ], [ -95.597541052387299, 29.54467414480429 ], [ -95.597683051754643, 29.544393145227108 ], [ -95.597936051629915, 29.543893145165431 ], [ -95.598275052013165, 29.543220144902723 ], [ -95.598655052403899, 29.542508144702026 ], [ -95.59871505189129, 29.542395144852936 ], [ -95.598890051813214, 29.541727144822712 ], [ -95.599021052680555, 29.54116214473456 ], [ -95.599202051895105, 29.540361144214451 ], [ -95.599340052356737, 29.539804144245497 ], [ -95.599403052141028, 29.539552144495229 ], [ -95.599634052563601, 29.53872514374596 ], [ -95.599994052148304, 29.537229143380046 ], [ -95.600095052729927, 29.536785143780641 ], [ -95.600132052068886, 29.536645143783652 ], [ -95.600277051946733, 29.536094143732058 ], [ -95.601275052111873, 29.531925142853765 ], [ -95.601393051996808, 29.53139314206852 ], [ -95.601508051973696, 29.530857141916712 ], [ -95.601514052428129, 29.530825142476196 ], [ -95.60156505193558, 29.530830142512158 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 54, "Tract": "48201540502", "Area_SqMi": 1.6050782036718731, "total_2009": 59, "total_2010": 90, "total_2011": 82, "total_2012": 89, "total_2013": 93, "total_2014": 128, "total_2015": 139, "total_2016": 150, "total_2017": 123, "total_2018": 127, "total_2019": 118, "total_2020": 96, "age1": 19, "age2": 52, "age3": 30, "earn1": 26, "earn2": 29, "earn3": 46, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 28, "naics_s07": 15, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 3, "naics_s12": 7, "naics_s13": 0, "naics_s14": 3, "naics_s15": 18, "naics_s16": 3, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 84, "race2": 9, "race3": 1, "race4": 7, "race5": 0, "race6": 0, "ethnicity1": 75, "ethnicity2": 26, "edu1": 18, "edu2": 20, "edu3": 25, "edu4": 19, "Shape_Length": 29873.360942477015, "Shape_Area": 44746833.199571125, "total_2021": 80, "total_2022": 101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.641246076827812, 29.840664204103774 ], [ -95.641250076124336, 29.840414204017407 ], [ -95.641230076666815, 29.840166204110012 ], [ -95.641201076090667, 29.84000320422729 ], [ -95.641151075836618, 29.839805204224891 ], [ -95.64095607643732, 29.839062204016489 ], [ -95.640747075700148, 29.838277203756657 ], [ -95.640594076141781, 29.837694204078577 ], [ -95.640558076183396, 29.837509203177838 ], [ -95.640519075751499, 29.837219203533238 ], [ -95.640513075500834, 29.837129203713349 ], [ -95.640501075990215, 29.836906203189741 ], [ -95.640500075685864, 29.836844203112527 ], [ -95.640499076355141, 29.836703203500168 ], [ -95.640497075782775, 29.836555203630386 ], [ -95.640497076016658, 29.836514203760036 ], [ -95.640492075732666, 29.836011202899698 ], [ -95.640224076251528, 29.836015203411051 ], [ -95.64017907570755, 29.836013203182173 ], [ -95.640043075835422, 29.836018203362517 ], [ -95.639934076304414, 29.836023202982027 ], [ -95.639641075348706, 29.836020203653266 ], [ -95.637676075483071, 29.836001203346527 ], [ -95.633094073825831, 29.835979203443898 ], [ -95.632403073791778, 29.835989203967227 ], [ -95.630131072867499, 29.835957203409517 ], [ -95.628011072291869, 29.835977203513259 ], [ -95.627736073053768, 29.835976204023435 ], [ -95.625616072178573, 29.835985203463267 ], [ -95.625624072579456, 29.836025203462459 ], [ -95.625882072674841, 29.836157203508218 ], [ -95.625977072155777, 29.836316203430417 ], [ -95.626014071874494, 29.836448203531685 ], [ -95.626122072619836, 29.836712204358975 ], [ -95.626134072252171, 29.836778203761181 ], [ -95.626065071984911, 29.836844204256082 ], [ -95.625718072005554, 29.836882204195664 ], [ -95.625440072014939, 29.836877203717599 ], [ -95.625239072296637, 29.836998203728985 ], [ -95.625007072432808, 29.837081204188856 ], [ -95.624925072255579, 29.837136203854133 ], [ -95.624919072498216, 29.83722920437204 ], [ -95.625007071547941, 29.837306203816297 ], [ -95.625289071874207, 29.837498204539582 ], [ -95.625680072103975, 29.837707204553258 ], [ -95.625755072019814, 29.837855204222024 ], [ -95.625711072605938, 29.837921204478821 ], [ -95.625553071794215, 29.838064204317767 ], [ -95.625288071647361, 29.838251204067372 ], [ -95.625093072464395, 29.838366204654733 ], [ -95.625030071943613, 29.838647204682307 ], [ -95.625067072433438, 29.838784204408206 ], [ -95.625206072521777, 29.838889204594977 ], [ -95.625256072586666, 29.839037204468983 ], [ -95.625212072484672, 29.839208204250276 ], [ -95.62520607251497, 29.839383204704625 ], [ -95.625269072100394, 29.839444204621696 ], [ -95.625597072547151, 29.839675204699368 ], [ -95.625830072312525, 29.839807204516653 ], [ -95.626107072112859, 29.840027204641899 ], [ -95.626202072380025, 29.840252204845143 ], [ -95.62617007231519, 29.840351205077205 ], [ -95.626082072783703, 29.840445205092138 ], [ -95.625987072141598, 29.840566204876904 ], [ -95.625867072433081, 29.840632204752495 ], [ -95.625735072397745, 29.840659205113901 ], [ -95.625596072737082, 29.840522204424584 ], [ -95.62548307205887, 29.840483204407164 ], [ -95.625344072083067, 29.840494205008259 ], [ -95.625237071936468, 29.840593205064302 ], [ -95.625205071981085, 29.840796204677051 ], [ -95.625268072588696, 29.840912204561409 ], [ -95.625293072633966, 29.84108220484282 ], [ -95.625236072602306, 29.841165204723097 ], [ -95.625104072191419, 29.84126920499304 ], [ -95.625010072280475, 29.841308204972602 ], [ -95.624896072126177, 29.841341204803026 ], [ -95.624386071908063, 29.841457204950228 ], [ -95.624272072467576, 29.841495204603635 ], [ -95.62418407168208, 29.841539204615437 ], [ -95.624102071670535, 29.84160520543179 ], [ -95.624014071732162, 29.841759205341404 ], [ -95.6239260719572, 29.841963204859397 ], [ -95.623806072010581, 29.842133205225423 ], [ -95.623705071887059, 29.842315205322222 ], [ -95.623548071889303, 29.842694205561436 ], [ -95.623535071697276, 29.842766205190493 ], [ -95.623548071439672, 29.842821205720131 ], [ -95.623573071605151, 29.842865205286408 ], [ -95.623643072140212, 29.842914205341366 ], [ -95.623687071625284, 29.842964205219747 ], [ -95.623693071556076, 29.843002205306618 ], [ -95.62367407160508, 29.843057205325277 ], [ -95.623649071954077, 29.843304205801086 ], [ -95.623710071820355, 29.843371205126182 ], [ -95.623691071748752, 29.843418205521623 ], [ -95.623643071994778, 29.843447205763599 ], [ -95.623744072318885, 29.843579205416745 ], [ -95.623782071509382, 29.843651205449092 ], [ -95.623801072298463, 29.843706205370424 ], [ -95.623807071676964, 29.843799205388127 ], [ -95.623794072221415, 29.843826205724952 ], [ -95.62368707223844, 29.843931205865896 ], [ -95.623492071572215, 29.844008205351194 ], [ -95.623366072402874, 29.844025205885561 ], [ -95.623145071870468, 29.844008205752218 ], [ -95.623019071667358, 29.843948205439776 ], [ -95.622975072052753, 29.84393720518721 ], [ -95.622943071920744, 29.843942205748036 ], [ -95.622893071449354, 29.843975205252267 ], [ -95.622786071361745, 29.844091205410322 ], [ -95.622723072143657, 29.844113205348581 ], [ -95.622647072213368, 29.844124205691735 ], [ -95.622590071672505, 29.844146205898916 ], [ -95.622552071549507, 29.844179206020168 ], [ -95.622534072033616, 29.84421720559628 ], [ -95.622515071230978, 29.844272205430375 ], [ -95.622515071663599, 29.844382205378938 ], [ -95.622553072037647, 29.844514206076642 ], [ -95.622641072200594, 29.844668205499605 ], [ -95.622660071895567, 29.844888205424986 ], [ -95.622679072170456, 29.844976205815474 ], [ -95.622711071449118, 29.84501420536888 ], [ -95.62282407191816, 29.845086206089363 ], [ -95.623026071988505, 29.845152206197582 ], [ -95.623064072309759, 29.845190206031479 ], [ -95.623077072141285, 29.845229205532249 ], [ -95.623070072139754, 29.845350205883594 ], [ -95.623045071542748, 29.845432206275611 ], [ -95.622957071857186, 29.845592205828662 ], [ -95.62289407168889, 29.845652205581967 ], [ -95.622654071408675, 29.845795205995827 ], [ -95.622325071607079, 29.845905206302447 ], [ -95.621459071782155, 29.846325205700179 ], [ -95.61980307135002, 29.847281206603164 ], [ -95.619617070614481, 29.847398206190032 ], [ -95.618831071367524, 29.847895206621615 ], [ -95.618186071234689, 29.848597206890812 ], [ -95.617961070498822, 29.848982206706445 ], [ -95.617841071124445, 29.849327206852319 ], [ -95.617834071116292, 29.849382207186313 ], [ -95.617782071135849, 29.8497922067613 ], [ -95.617798071235441, 29.852206207401586 ], [ -95.617938070554089, 29.853062207974386 ], [ -95.618063071007555, 29.853368207591156 ], [ -95.618358071090881, 29.853802207708295 ], [ -95.61913307172351, 29.854576207481401 ], [ -95.619256071559818, 29.85469820783263 ], [ -95.620213071522059, 29.855875208045884 ], [ -95.620590071658086, 29.856258208547366 ], [ -95.621450072043899, 29.856238208351208 ], [ -95.622314072203352, 29.856313208121467 ], [ -95.62760807317494, 29.856288207984516 ], [ -95.628015073599926, 29.856225207638527 ], [ -95.628828074250933, 29.855964207958927 ], [ -95.62942007407699, 29.85588620737072 ], [ -95.629923074450616, 29.855959207368336 ], [ -95.629958074586398, 29.855970207393028 ], [ -95.630183074315823, 29.856039207970962 ], [ -95.630390074742166, 29.856104207943815 ], [ -95.631234074811047, 29.856611207603674 ], [ -95.631546074693219, 29.856799208199678 ], [ -95.631809074332892, 29.856901208162359 ], [ -95.631889074530349, 29.857048207507624 ], [ -95.631931074562502, 29.857126207998853 ], [ -95.632777074524867, 29.857787207860753 ], [ -95.632777075331887, 29.857545208182049 ], [ -95.632769074925235, 29.85708320774631 ], [ -95.63276107477688, 29.856623207366045 ], [ -95.632764075193251, 29.8565652079761 ], [ -95.632772074970077, 29.856443207574582 ], [ -95.632777074737277, 29.856351207633313 ], [ -95.632792075138838, 29.856272207689493 ], [ -95.632821074521758, 29.85620020757457 ], [ -95.632867074820965, 29.856137207842689 ], [ -95.632927074750057, 29.856088207442451 ], [ -95.633002074824077, 29.856056207277909 ], [ -95.633086074796282, 29.856043207556112 ], [ -95.633180075285424, 29.856052207377502 ], [ -95.633282074487056, 29.856080207744203 ], [ -95.633391075045907, 29.856124207796334 ], [ -95.633888075138501, 29.856361207973972 ], [ -95.634022074962715, 29.856421207606008 ], [ -95.634159074915218, 29.856474207962307 ], [ -95.634298075454026, 29.856517208148073 ], [ -95.634438075385674, 29.856551207465078 ], [ -95.634578075389527, 29.856576207915325 ], [ -95.634718075376, 29.856591207634288 ], [ -95.634858075614417, 29.856599207707205 ], [ -95.634999075530885, 29.856602208051999 ], [ -95.635506075541059, 29.856599207925491 ], [ -95.635775075259374, 29.856597207311534 ], [ -95.636325076057986, 29.856589207347234 ], [ -95.637427076405686, 29.85658620729092 ], [ -95.638954076947826, 29.856568207966799 ], [ -95.639121076566013, 29.856567207190064 ], [ -95.639614076849099, 29.856567207380131 ], [ -95.639864076819975, 29.856567207371345 ], [ -95.639913077149913, 29.856563207135064 ], [ -95.639948077199378, 29.856560207329441 ], [ -95.639984076471606, 29.856557207273152 ], [ -95.640009076316574, 29.856543207234829 ], [ -95.640039077062696, 29.856527207793462 ], [ -95.640078076301293, 29.85648220735786 ], [ -95.640093076264606, 29.856422207814752 ], [ -95.640099076819681, 29.856317207723635 ], [ -95.640095077140629, 29.856207207761326 ], [ -95.640089076786083, 29.855686207286027 ], [ -95.640078076169218, 29.854605207222427 ], [ -95.64007607689382, 29.854494206706917 ], [ -95.640072076938239, 29.854214206795305 ], [ -95.640069076935191, 29.853752206942882 ], [ -95.640058076279459, 29.852631206599376 ], [ -95.640061077051456, 29.852464207061136 ], [ -95.640084076045852, 29.852379206912467 ], [ -95.640146076421274, 29.852309206226078 ], [ -95.640229076620727, 29.852274206478896 ], [ -95.640318076534427, 29.852267206964388 ], [ -95.640463076478412, 29.852264206792359 ], [ -95.640453076851514, 29.851379206145189 ], [ -95.640451076825116, 29.850816206107794 ], [ -95.640439076901217, 29.850064206113988 ], [ -95.640429076855185, 29.849302205801418 ], [ -95.640430076834036, 29.849021206097383 ], [ -95.640440076664618, 29.848748205730654 ], [ -95.640465076409143, 29.84849020558347 ], [ -95.640488076017192, 29.848325205970482 ], [ -95.640601076313772, 29.847720206025116 ], [ -95.640749076407303, 29.846946205966887 ], [ -95.6408990761214, 29.846175205335353 ], [ -95.641042076793667, 29.845434205122888 ], [ -95.641112076246628, 29.845070205175684 ], [ -95.641168076148517, 29.844722204820727 ], [ -95.64117407675397, 29.844610204828864 ], [ -95.641177075993426, 29.844551205074971 ], [ -95.641201076960542, 29.844451205315934 ], [ -95.641152076649917, 29.8443052049439 ], [ -95.641116076884998, 29.844146205326798 ], [ -95.641065076384422, 29.843993204928445 ], [ -95.641000076693615, 29.84384820456728 ], [ -95.640878076400483, 29.843639205007772 ], [ -95.64077107596718, 29.843505204695862 ], [ -95.640713075985374, 29.843439204676791 ], [ -95.640589076118644, 29.843312204842587 ], [ -95.640390076446948, 29.843128204526487 ], [ -95.640088075708647, 29.842833204374188 ], [ -95.640191075793084, 29.842749204569397 ], [ -95.640366076704822, 29.842585204641619 ], [ -95.640509075979892, 29.842430204905604 ], [ -95.640658075850709, 29.842247204687069 ], [ -95.64075007655488, 29.842120204305136 ], [ -95.64087507649387, 29.841922204701305 ], [ -95.640952076687128, 29.841781204881645 ], [ -95.641015076410611, 29.841641204622533 ], [ -95.641086076456517, 29.841464204769874 ], [ -95.641135076721113, 29.841308203944685 ], [ -95.641188076348499, 29.841089204619191 ], [ -95.641223076031451, 29.840893204457775 ], [ -95.641246076827812, 29.840664204103774 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 55, "Tract": "48201331602", "Area_SqMi": 2.3342611897457317, "total_2009": 921, "total_2010": 789, "total_2011": 717, "total_2012": 779, "total_2013": 836, "total_2014": 885, "total_2015": 903, "total_2016": 839, "total_2017": 1111, "total_2018": 1081, "total_2019": 1025, "total_2020": 1096, "age1": 228, "age2": 671, "age3": 320, "earn1": 123, "earn2": 341, "earn3": 755, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 666, "naics_s05": 112, "naics_s06": 32, "naics_s07": 30, "naics_s08": 3, "naics_s09": 4, "naics_s10": 1, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 61, "naics_s15": 141, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 167, "naics_s20": 0, "race1": 871, "race2": 237, "race3": 19, "race4": 67, "race5": 3, "race6": 22, "ethnicity1": 769, "ethnicity2": 450, "edu1": 258, "edu2": 257, "edu3": 273, "edu4": 203, "Shape_Length": 34199.512715673161, "Shape_Area": 65075206.842156857, "total_2021": 1223, "total_2022": 1219 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.340872990055672, 29.621220169549172 ], [ -95.340913989222386, 29.621006169550807 ], [ -95.339940989652789, 29.620996169078154 ], [ -95.339630989385398, 29.620995169928218 ], [ -95.338685988806191, 29.620984169585185 ], [ -95.337708988699319, 29.620974169789271 ], [ -95.337519988929145, 29.620973169953778 ], [ -95.335469988704773, 29.62096617004784 ], [ -95.331571987474177, 29.62094716982115 ], [ -95.330679986815667, 29.620940169358651 ], [ -95.330658986956578, 29.620940169415761 ], [ -95.330633986715739, 29.620940169898059 ], [ -95.327494985922684, 29.620949170165389 ], [ -95.327231985970997, 29.620942169973858 ], [ -95.326729985759457, 29.620946169735813 ], [ -95.325422986155743, 29.620940170413672 ], [ -95.325087986114923, 29.62093516968044 ], [ -95.323911985494078, 29.620926169871606 ], [ -95.323446985642192, 29.620927170313553 ], [ -95.319628983906867, 29.620922169865178 ], [ -95.318855984388662, 29.620915169880117 ], [ -95.317751984115318, 29.620905170117634 ], [ -95.314408982563961, 29.620898170612303 ], [ -95.31217298256243, 29.620888170213824 ], [ -95.311872982653682, 29.620888170446761 ], [ -95.310664981779254, 29.620882170288041 ], [ -95.309179981774008, 29.620877170558629 ], [ -95.30804698143551, 29.620874170580638 ], [ -95.306936980969255, 29.620868170510679 ], [ -95.305791980996574, 29.620863170988851 ], [ -95.304670979972244, 29.620863171023913 ], [ -95.304375980157332, 29.620857170326818 ], [ -95.304527980936541, 29.621350170433086 ], [ -95.304987980352976, 29.622806170916917 ], [ -95.305403981145645, 29.624221171525164 ], [ -95.305609980543963, 29.624906171176725 ], [ -95.305904981213573, 29.625908171576764 ], [ -95.306003980700183, 29.626277171508594 ], [ -95.306885981308227, 29.629559172586877 ], [ -95.308189982375552, 29.634015173453488 ], [ -95.308362982373609, 29.634557173642655 ], [ -95.308747981695063, 29.635761173598137 ], [ -95.3089089825651, 29.636265173421553 ], [ -95.309430982793984, 29.63789617386302 ], [ -95.309801982973553, 29.63905217416297 ], [ -95.310107982832832, 29.639041174204838 ], [ -95.311643983329915, 29.639003173896644 ], [ -95.312107982640228, 29.638995174181897 ], [ -95.316459984120456, 29.638921174181927 ], [ -95.317243984856475, 29.638910173726302 ], [ -95.319523985052356, 29.638876173957236 ], [ -95.319616985244195, 29.638875173954908 ], [ -95.321336985025397, 29.638851173954286 ], [ -95.323992986280317, 29.638825173458113 ], [ -95.324002986274365, 29.637927173145705 ], [ -95.32399898589189, 29.637528173502918 ], [ -95.325684986250891, 29.637541172968465 ], [ -95.326875986853736, 29.637548173241207 ], [ -95.327555986726509, 29.637558173604134 ], [ -95.327721986698208, 29.637558173706925 ], [ -95.328002986869592, 29.637557172969878 ], [ -95.328616986844978, 29.637569173657763 ], [ -95.329964987919439, 29.637581172851235 ], [ -95.331182988270015, 29.637591173491558 ], [ -95.331335988146265, 29.637596172984789 ], [ -95.331946988562493, 29.637596173092437 ], [ -95.332610988638152, 29.637575173441675 ], [ -95.333267989009713, 29.637532172997556 ], [ -95.3335409889266, 29.637505172848016 ], [ -95.333789988833843, 29.637482173530209 ], [ -95.334222988918853, 29.637464173297658 ], [ -95.334810989235351, 29.637404173047585 ], [ -95.335085988888281, 29.637381172960936 ], [ -95.335539988651476, 29.637350173215953 ], [ -95.335971989518754, 29.637318173357571 ], [ -95.336505989574178, 29.637261172790232 ], [ -95.33685598934737, 29.637241172703458 ], [ -95.337603989144341, 29.637158173296907 ], [ -95.337738989872449, 29.637142172518431 ], [ -95.339396989889053, 29.636964172690519 ], [ -95.339379989776646, 29.635568172907796 ], [ -95.339374989601126, 29.635183172191145 ], [ -95.339372990389933, 29.635066172284802 ], [ -95.339367989579856, 29.634644172395465 ], [ -95.339361989935668, 29.634277172143037 ], [ -95.339359989836922, 29.634119172291758 ], [ -95.339369990284681, 29.633891171960638 ], [ -95.339374989413884, 29.633408171764977 ], [ -95.33936698948844, 29.633124171755259 ], [ -95.339358990131927, 29.632339171967338 ], [ -95.339361989373757, 29.631565171740213 ], [ -95.339365989598235, 29.631083171228504 ], [ -95.339354989488925, 29.630440171026272 ], [ -95.339336989469558, 29.629527171674066 ], [ -95.33932699009442, 29.628181171187514 ], [ -95.339331989639348, 29.627378170439567 ], [ -95.339335989429514, 29.626828170457799 ], [ -95.339361990024301, 29.626516171109614 ], [ -95.339463989716393, 29.625858170282715 ], [ -95.339603989851653, 29.625165170093517 ], [ -95.340395989763849, 29.623049170014777 ], [ -95.340698989207709, 29.622139170032916 ], [ -95.340872990055672, 29.621220169549172 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 56, "Tract": "48201552602", "Area_SqMi": 2.0334105266256892, "total_2009": 7069, "total_2010": 1494, "total_2011": 4611, "total_2012": 2698, "total_2013": 2718, "total_2014": 2520, "total_2015": 3020, "total_2016": 3497, "total_2017": 3419, "total_2018": 4571, "total_2019": 5026, "total_2020": 4945, "age1": 889, "age2": 2528, "age3": 1082, "earn1": 615, "earn2": 1239, "earn3": 2645, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 152, "naics_s05": 3, "naics_s06": 792, "naics_s07": 253, "naics_s08": 445, "naics_s09": 17, "naics_s10": 392, "naics_s11": 32, "naics_s12": 316, "naics_s13": 0, "naics_s14": 1383, "naics_s15": 43, "naics_s16": 309, "naics_s17": 3, "naics_s18": 132, "naics_s19": 117, "naics_s20": 110, "race1": 2853, "race2": 1135, "race3": 24, "race4": 422, "race5": 4, "race6": 61, "ethnicity1": 3637, "ethnicity2": 862, "edu1": 550, "edu2": 976, "edu3": 1088, "edu4": 996, "Shape_Length": 39460.823494979923, "Shape_Area": 56688005.265426099, "total_2021": 4744, "total_2022": 4499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.598663071725312, 29.973581232318278 ], [ -95.598607071599687, 29.973533233154821 ], [ -95.598111071010351, 29.973092232556787 ], [ -95.597639071307213, 29.972691232702463 ], [ -95.597333070652553, 29.972423232635101 ], [ -95.597266071446597, 29.97237723220665 ], [ -95.59700207056386, 29.972156232821646 ], [ -95.59696707131755, 29.972116232824384 ], [ -95.596890071172524, 29.972049232651827 ], [ -95.596844071167894, 29.972021232182993 ], [ -95.596807070769245, 29.97197923281168 ], [ -95.596745070771334, 29.971933232437692 ], [ -95.596529071346311, 29.971749232089564 ], [ -95.596460071251741, 29.971679232143785 ], [ -95.596318070802141, 29.971567232670832 ], [ -95.59625707042953, 29.971502232448394 ], [ -95.596195071177689, 29.971459232811309 ], [ -95.596102071058013, 29.971386232558707 ], [ -95.595884070169916, 29.971194232452213 ], [ -95.595826071162293, 29.971122232069206 ], [ -95.595738070193065, 29.971076232733811 ], [ -95.595652070672529, 29.970997232529459 ], [ -95.595109070123328, 29.970549232088516 ], [ -95.594997070613658, 29.970452232295901 ], [ -95.594915070417201, 29.970388232359877 ], [ -95.594847070460673, 29.97032623183723 ], [ -95.594761069907719, 29.970259232255977 ], [ -95.594678070132858, 29.970186231808484 ], [ -95.594367070110494, 29.96993023244006 ], [ -95.594238069993196, 29.969816232594432 ], [ -95.594054070059272, 29.969670231979237 ], [ -95.593603069877744, 29.969285231724218 ], [ -95.593326070396117, 29.969091232245042 ], [ -95.59324606981238, 29.968999232307382 ], [ -95.593170070301269, 29.968933231759681 ], [ -95.593037069650649, 29.968790232029821 ], [ -95.592792069623755, 29.968589231602429 ], [ -95.592741069233867, 29.96856923207212 ], [ -95.592690070131184, 29.968531231977725 ], [ -95.592595069934163, 29.968442231981342 ], [ -95.592562069824297, 29.968410232052879 ], [ -95.592534070094572, 29.968365232225775 ], [ -95.592177069730909, 29.968056231675462 ], [ -95.592088069110744, 29.967964231814037 ], [ -95.591840069440636, 29.967734231849366 ], [ -95.591582069368783, 29.967522231750955 ], [ -95.591489069175822, 29.967461232031233 ], [ -95.591429069195001, 29.967390232016431 ], [ -95.591349069375255, 29.967335232050637 ], [ -95.591191069250243, 29.967236231641024 ], [ -95.591113069101155, 29.967198231401831 ], [ -95.591035069497721, 29.967165231293883 ], [ -95.590875068859347, 29.967113231799789 ], [ -95.590790068869154, 29.967091231986061 ], [ -95.590706068917527, 29.967083231796202 ], [ -95.590510068822852, 29.967050231871159 ], [ -95.59031106948035, 29.967025231579136 ], [ -95.590193069176166, 29.967011232168673 ], [ -95.589598069322065, 29.966958231722945 ], [ -95.589514068758618, 29.966943231435401 ], [ -95.589481068426437, 29.966941231692999 ], [ -95.588760068919925, 29.966935232018713 ], [ -95.587638068451156, 29.966893231951946 ], [ -95.587546068062608, 29.96688923148259 ], [ -95.587458067885535, 29.96687923222197 ], [ -95.586920068307194, 29.966854231598941 ], [ -95.586578067937225, 29.966826231752947 ], [ -95.586466067888438, 29.966824232160821 ], [ -95.5863230683875, 29.966811231968695 ], [ -95.586271068117028, 29.966807232120388 ], [ -95.58616606823135, 29.966805231531371 ], [ -95.586019068178118, 29.96679323223314 ], [ -95.585973067693388, 29.966792231476791 ], [ -95.585888068306787, 29.966783231694468 ], [ -95.585802067754614, 29.966782231949008 ], [ -95.585727068310362, 29.966793231584575 ], [ -95.585377067864684, 29.966821232064046 ], [ -95.585204067609581, 29.966838231481013 ], [ -95.585091067538528, 29.966849231934109 ], [ -95.585040067289768, 29.966879232040146 ], [ -95.584945067886125, 29.966881232246724 ], [ -95.58421606777253, 29.966932232308793 ], [ -95.584009067351829, 29.966934232145238 ], [ -95.58390506712793, 29.966944232172484 ], [ -95.583325067749627, 29.966967231599757 ], [ -95.582909067439971, 29.966983231904621 ], [ -95.582514066653047, 29.966993231747018 ], [ -95.580219066410535, 29.967100231964036 ], [ -95.578510065567485, 29.967182232537841 ], [ -95.578388065918375, 29.967185232445356 ], [ -95.578297066335523, 29.967189232475466 ], [ -95.578062066155297, 29.967201232088968 ], [ -95.577770065674741, 29.967217231884948 ], [ -95.577674066216517, 29.967217232087904 ], [ -95.577545065993689, 29.967223232530763 ], [ -95.577400065418615, 29.967230232119419 ], [ -95.576635065572901, 29.967268232559377 ], [ -95.576552065495775, 29.967276232420225 ], [ -95.576285065172939, 29.967283232440412 ], [ -95.575853065538567, 29.96729123234682 ], [ -95.575739064903487, 29.967301231910387 ], [ -95.575686065572484, 29.967301232415288 ], [ -95.575627064909298, 29.967302232425716 ], [ -95.57551806479276, 29.967312232062284 ], [ -95.575459065157247, 29.967313232025305 ], [ -95.57513506567156, 29.967323232055051 ], [ -95.575033065157015, 29.967323232555191 ], [ -95.574420064496195, 29.967339232539945 ], [ -95.573802065131517, 29.967357232232633 ], [ -95.57248606419644, 29.967373232752426 ], [ -95.57207106474624, 29.967379232868254 ], [ -95.571818064405292, 29.967383232010217 ], [ -95.571005063841213, 29.967394232152447 ], [ -95.570901064065993, 29.967395232655214 ], [ -95.570762063970591, 29.967405232226756 ], [ -95.570484063622345, 29.967405232884353 ], [ -95.570346064313526, 29.967410232124863 ], [ -95.570210063535569, 29.967409232400982 ], [ -95.570104064144388, 29.967404232430745 ], [ -95.569572063454714, 29.967389232863006 ], [ -95.569107063764605, 29.967370232574861 ], [ -95.568822063921246, 29.967359232847066 ], [ -95.568295063682072, 29.967339232139221 ], [ -95.566799063484154, 29.967267232345282 ], [ -95.566297062763198, 29.967241232720866 ], [ -95.566041062777501, 29.967220232649126 ], [ -95.565793062489945, 29.967184233012681 ], [ -95.565549062364752, 29.967132232605593 ], [ -95.56514606272853, 29.967043232880346 ], [ -95.564844063002568, 29.966988233047115 ], [ -95.564623062937244, 29.966961232736967 ], [ -95.564513061954784, 29.966954232382779 ], [ -95.563956062210025, 29.966935232318505 ], [ -95.563874062683325, 29.966932232380675 ], [ -95.563809062550064, 29.966934232566693 ], [ -95.563435062411941, 29.966927232901465 ], [ -95.563048061722753, 29.966921232526218 ], [ -95.56282206159797, 29.96692223234928 ], [ -95.562071062334311, 29.966929232670775 ], [ -95.561688061637554, 29.966937232971169 ], [ -95.561361061855919, 29.966937232665362 ], [ -95.561207061915155, 29.966948232703508 ], [ -95.560874061966956, 29.966945232673439 ], [ -95.56056206149654, 29.966947232874752 ], [ -95.560338061165695, 29.966949232850236 ], [ -95.560271060894024, 29.966950232399554 ], [ -95.560116061442258, 29.966951233158778 ], [ -95.560099061200376, 29.966951232694932 ], [ -95.560075061196741, 29.966952232563585 ], [ -95.560058060924248, 29.966952232996313 ], [ -95.559964061315, 29.966953232997295 ], [ -95.559792061613322, 29.966954232899568 ], [ -95.559561060969045, 29.966913232794013 ], [ -95.559413061011384, 29.966887233166489 ], [ -95.559163061339774, 29.966832232374731 ], [ -95.559078060533679, 29.966805232842848 ], [ -95.558764060693051, 29.966735232425155 ], [ -95.558445060745328, 29.966691232346371 ], [ -95.558229060972153, 29.966648232517265 ], [ -95.55800006112257, 29.966654232373717 ], [ -95.557834060308977, 29.966670232516524 ], [ -95.557634060320183, 29.966729232719697 ], [ -95.557526060546735, 29.966783232620358 ], [ -95.557472061039533, 29.966831232967863 ], [ -95.557321060710336, 29.966970233145787 ], [ -95.557242060493309, 29.967040233262079 ], [ -95.557175060805307, 29.967107233117112 ], [ -95.557040060919789, 29.967260233134891 ], [ -95.556985060853961, 29.967322232585758 ], [ -95.556856060453654, 29.967489233394396 ], [ -95.556648060836764, 29.967770232992052 ], [ -95.556962060501036, 29.967985233427164 ], [ -95.557461060276552, 29.968278233504222 ], [ -95.558105060522777, 29.968698233117752 ], [ -95.558305060986825, 29.968839233070451 ], [ -95.559381061320039, 29.969655232907307 ], [ -95.559998060996591, 29.970152233554181 ], [ -95.560317061611755, 29.970450233338447 ], [ -95.56065406206811, 29.970787233626602 ], [ -95.56095106176943, 29.971090233447665 ], [ -95.561685062035821, 29.971915233661264 ], [ -95.562013062226185, 29.97238323396865 ], [ -95.56214606231481, 29.972571233544983 ], [ -95.562577061785532, 29.973132233498351 ], [ -95.56286406242782, 29.973579234344278 ], [ -95.563172062476298, 29.974184234458935 ], [ -95.563369062856395, 29.974517234160739 ], [ -95.564772062866254, 29.977129234950144 ], [ -95.565445062764297, 29.978194235007841 ], [ -95.565713063692144, 29.978853234535524 ], [ -95.56625006299555, 29.97978923539322 ], [ -95.566699063727171, 29.980629235223766 ], [ -95.567073063983557, 29.981287235877886 ], [ -95.567300063525565, 29.981672235138344 ], [ -95.567955064451283, 29.982685236069113 ], [ -95.56828206409871, 29.983095235334201 ], [ -95.568502064119599, 29.983371235585949 ], [ -95.568561063831226, 29.983457235895408 ], [ -95.569024064731565, 29.984122235919276 ], [ -95.569571064755763, 29.984971236510045 ], [ -95.570087065171549, 29.985771236322115 ], [ -95.570246064960088, 29.985642236592849 ], [ -95.57032806519031, 29.98557523634787 ], [ -95.570411065286621, 29.985507236282967 ], [ -95.570476065096486, 29.985454236405019 ], [ -95.57063006453366, 29.985329235934305 ], [ -95.570674064577418, 29.98529323640896 ], [ -95.570771064925822, 29.985215235875948 ], [ -95.570846064703645, 29.985177236205423 ], [ -95.571114064600124, 29.985111236088819 ], [ -95.571780065520997, 29.985231235622877 ], [ -95.571856065101557, 29.985247236443371 ], [ -95.572216065149462, 29.985279236135391 ], [ -95.572493064946585, 29.985279235800093 ], [ -95.572607065550642, 29.985252236194743 ], [ -95.572709065447981, 29.985206235625419 ], [ -95.572963065190251, 29.985172235702354 ], [ -95.573050065012822, 29.985161235900023 ], [ -95.573178065323418, 29.985262235996938 ], [ -95.573231065298486, 29.985303235729241 ], [ -95.573382065737945, 29.985557236024235 ], [ -95.573492065780798, 29.985646236468174 ], [ -95.573647065164579, 29.985666236449635 ], [ -95.573708066101815, 29.985648236102488 ], [ -95.573872065257063, 29.985603235970075 ], [ -95.574183065427917, 29.98552523603173 ], [ -95.574208066265967, 29.985519236351525 ], [ -95.574321065692274, 29.985575235778654 ], [ -95.574399065668644, 29.985613236297077 ], [ -95.574612066374812, 29.985778236066643 ], [ -95.574829065972281, 29.985951235708757 ], [ -95.574957065958841, 29.986054235870043 ], [ -95.575115065674623, 29.986098236461324 ], [ -95.575218065600339, 29.98609423641372 ], [ -95.575497065935323, 29.986086236374057 ], [ -95.575667065768698, 29.986130236316352 ], [ -95.575683066116284, 29.986131236341535 ], [ -95.575734065715679, 29.98614723653133 ], [ -95.575910066319551, 29.986203236081497 ], [ -95.576365066288602, 29.986342236244685 ], [ -95.576502065998284, 29.986478236016715 ], [ -95.576525066820409, 29.986522236057002 ], [ -95.576638066099548, 29.986751235891372 ], [ -95.576799066942257, 29.986902236494117 ], [ -95.576884066345713, 29.98700823630551 ], [ -95.577012066246141, 29.987267236272967 ], [ -95.577152066189711, 29.987454236528624 ], [ -95.577366066783839, 29.987581236127941 ], [ -95.577579066659652, 29.987661236475581 ], [ -95.577766067079949, 29.987701236215894 ], [ -95.577952067268853, 29.987708236324597 ], [ -95.578100067198079, 29.987781236566274 ], [ -95.578300066495046, 29.987868235952888 ], [ -95.578467066930472, 29.987921236391401 ], [ -95.578687066693519, 29.987961236105477 ], [ -95.578847066946821, 29.987945236269816 ], [ -95.579013067148395, 29.987941235979942 ], [ -95.579174067420524, 29.987981236659838 ], [ -95.579307067505425, 29.98804823600053 ], [ -95.579447066955638, 29.98809423596137 ], [ -95.579554066912479, 29.988094236152413 ], [ -95.579736067217667, 29.987986236030572 ], [ -95.579935067764481, 29.987829236649898 ], [ -95.579995066933421, 29.987780235945408 ], [ -95.580253067491782, 29.987524236484308 ], [ -95.580413067815684, 29.987365236140505 ], [ -95.580519067312423, 29.987106236100612 ], [ -95.580630067631688, 29.98683523568004 ], [ -95.580958067448378, 29.986769236288485 ], [ -95.581042067947578, 29.986756236123473 ], [ -95.581641067623991, 29.986963235752953 ], [ -95.581768067766475, 29.987010236442583 ], [ -95.582561068448499, 29.986311235513767 ], [ -95.582826068127162, 29.986330235721312 ], [ -95.582837067910958, 29.986355235602094 ], [ -95.582851068387512, 29.986369235701833 ], [ -95.58328606829555, 29.987196236135535 ], [ -95.583350068338063, 29.987248235677988 ], [ -95.58336806793109, 29.987262236361438 ], [ -95.583409068345944, 29.987336236256652 ], [ -95.583569067908584, 29.987418236250047 ], [ -95.584019067941142, 29.987398236397144 ], [ -95.584113068397116, 29.987280235737451 ], [ -95.584155068236797, 29.987080236075091 ], [ -95.584135068769726, 29.986863235857268 ], [ -95.584291068164532, 29.986449235896188 ], [ -95.584471067969062, 29.986359235986619 ], [ -95.584990068438259, 29.986409235994476 ], [ -95.585009068118637, 29.986394235812909 ], [ -95.585073068350979, 29.986344236227406 ], [ -95.585092068545947, 29.986311235547678 ], [ -95.585161068733257, 29.986190235623305 ], [ -95.585243068089525, 29.986041235956922 ], [ -95.585243068871293, 29.985975235944721 ], [ -95.585224068485687, 29.98592023599582 ], [ -95.585047068890745, 29.985799235983329 ], [ -95.584946069027481, 29.985706235731744 ], [ -95.584839068437532, 29.98555823560104 ], [ -95.584757068367594, 29.985294236049143 ], [ -95.584706068862744, 29.984859235573317 ], [ -95.584719068001903, 29.984689235482971 ], [ -95.584750068790768, 29.984513235384171 ], [ -95.584744068065049, 29.984392235483561 ], [ -95.584643068110893, 29.984238234974413 ], [ -95.584472067863189, 29.984084234931341 ], [ -95.584946068088783, 29.983831234911769 ], [ -95.585085068072885, 29.983771234994933 ], [ -95.585356068699738, 29.983650235458725 ], [ -95.585546068527833, 29.983540235131859 ], [ -95.586006068212072, 29.983182235334855 ], [ -95.586310068966625, 29.982896235000073 ], [ -95.586424068604188, 29.982790235058893 ], [ -95.586480068373504, 29.982737235357611 ], [ -95.58675806903878, 29.982407235305381 ], [ -95.586985068533849, 29.982044234617536 ], [ -95.587023068635872, 29.981819234414676 ], [ -95.587029068377703, 29.981670234563421 ], [ -95.586985068942212, 29.981440234326126 ], [ -95.586915068900822, 29.981214234966519 ], [ -95.586776068672464, 29.98102723492336 ], [ -95.586650068710313, 29.980906234917811 ], [ -95.586498069083731, 29.980764234904814 ], [ -95.586378069120059, 29.98061523466567 ], [ -95.586290068122082, 29.980472234653966 ], [ -95.586271069095517, 29.980346234477704 ], [ -95.586296069014367, 29.980214234253289 ], [ -95.58641606891166, 29.98004923434091 ], [ -95.586498068570179, 29.979955234497073 ], [ -95.586782069027905, 29.979626234266497 ], [ -95.587028068799768, 29.97942823463714 ], [ -95.587230069301214, 29.979312234457439 ], [ -95.587773068962235, 29.979169234092172 ], [ -95.587906069012675, 29.979048234156235 ], [ -95.587994069062916, 29.978900234450478 ], [ -95.58802606869682, 29.978773234086198 ], [ -95.588057068815345, 29.97852023435615 ], [ -95.588164068494123, 29.977949234378642 ], [ -95.58838506930438, 29.977546233684247 ], [ -95.588423068638207, 29.977476233881482 ], [ -95.588612068609407, 29.977305233716976 ], [ -95.588726069365961, 29.977124234123352 ], [ -95.588808068622285, 29.97684323356529 ], [ -95.588820068777579, 29.976673233602465 ], [ -95.588795068919964, 29.97648623374317 ], [ -95.588700068589503, 29.976211233812521 ], [ -95.588694069468744, 29.976079233551459 ], [ -95.588719068937976, 29.975942233525512 ], [ -95.588707069286116, 29.975832233129239 ], [ -95.588694068651904, 29.975794233868339 ], [ -95.588511068631604, 29.975546233867625 ], [ -95.588258069253214, 29.975348233904711 ], [ -95.588056069151264, 29.97503023299835 ], [ -95.587993068696662, 29.974777233744302 ], [ -95.588018068455241, 29.974656233373537 ], [ -95.588169068460118, 29.974441233564157 ], [ -95.588554068965024, 29.974018232910087 ], [ -95.588618069262637, 29.973842233147131 ], [ -95.588681068805982, 29.973749233085247 ], [ -95.58875006923212, 29.973721233123126 ], [ -95.589413069301713, 29.973682232887874 ], [ -95.589564069507773, 29.973616233480286 ], [ -95.589665068792414, 29.973495233214798 ], [ -95.589703069619446, 29.973199233232705 ], [ -95.589779069344488, 29.973056232721088 ], [ -95.589918069054647, 29.97296823255958 ], [ -95.589949069632283, 29.972957233302818 ], [ -95.590082069658166, 29.972940232661934 ], [ -95.59016406913031, 29.972946232789575 ], [ -95.590410069284374, 29.973110232936726 ], [ -95.590884069030039, 29.973589233457947 ], [ -95.591162069875594, 29.973979232789326 ], [ -95.591206069110655, 29.974193233409721 ], [ -95.591225069310681, 29.974364233526753 ], [ -95.591308069240156, 29.974496233260098 ], [ -95.591396069445096, 29.974561233267483 ], [ -95.591503070117881, 29.974572232776811 ], [ -95.591674070098932, 29.974528232970943 ], [ -95.591895070124622, 29.974418233606894 ], [ -95.591989069568342, 29.974325233584182 ], [ -95.592002070227167, 29.974187233516187 ], [ -95.591793069663524, 29.973654232839134 ], [ -95.591812069289844, 29.973544233326802 ], [ -95.591907069977438, 29.973429232819175 ], [ -95.59211506950588, 29.973330232950673 ], [ -95.592267069662441, 29.973319233239099 ], [ -95.592545070297405, 29.973401232911943 ], [ -95.592841070227919, 29.973572232866864 ], [ -95.593246070314606, 29.973907233254842 ], [ -95.593631070388483, 29.974346233536455 ], [ -95.59389007031173, 29.974627233494797 ], [ -95.594073070763642, 29.974891232756974 ], [ -95.594181070582437, 29.974901232862909 ], [ -95.594275070263933, 29.974896232994443 ], [ -95.594749070804411, 29.974709232819851 ], [ -95.594951070728854, 29.974390233363877 ], [ -95.595398070772632, 29.973076233205315 ], [ -95.595424071069147, 29.972966232944561 ], [ -95.595367070411967, 29.972823233049734 ], [ -95.595373070693, 29.97272423238925 ], [ -95.595398071084134, 29.972631232551983 ], [ -95.595550070352701, 29.97248823240324 ], [ -95.595644070426943, 29.972427232670796 ], [ -95.595739070743932, 29.97241623265182 ], [ -95.595834070597562, 29.972449232968348 ], [ -95.595916070700596, 29.972510233051665 ], [ -95.596023070652734, 29.972680232830086 ], [ -95.596124070387035, 29.972801232392946 ], [ -95.596219071007823, 29.972872232665082 ], [ -95.596459070520595, 29.972927232246224 ], [ -95.596990071349879, 29.973098232778714 ], [ -95.597072070754351, 29.973130233047769 ], [ -95.597293071255777, 29.973251232659965 ], [ -95.597495071568972, 29.973400232361303 ], [ -95.597602070753226, 29.97355423296187 ], [ -95.597823071736286, 29.973916233219228 ], [ -95.597956071283861, 29.973933232979483 ], [ -95.598391071153898, 29.973751233222966 ], [ -95.598663071725312, 29.973581232318278 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 57, "Tract": "48201320601", "Area_SqMi": 0.54597403173111825, "total_2009": 1601, "total_2010": 1217, "total_2011": 1954, "total_2012": 1877, "total_2013": 2006, "total_2014": 1892, "total_2015": 1867, "total_2016": 1854, "total_2017": 1887, "total_2018": 2422, "total_2019": 2483, "total_2020": 2280, "age1": 773, "age2": 1691, "age3": 700, "earn1": 563, "earn2": 1026, "earn3": 1575, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1438, "naics_s05": 0, "naics_s06": 13, "naics_s07": 84, "naics_s08": 9, "naics_s09": 0, "naics_s10": 5, "naics_s11": 1, "naics_s12": 107, "naics_s13": 0, "naics_s14": 958, "naics_s15": 48, "naics_s16": 434, "naics_s17": 0, "naics_s18": 28, "naics_s19": 19, "naics_s20": 20, "race1": 2067, "race2": 931, "race3": 20, "race4": 107, "race5": 3, "race6": 36, "ethnicity1": 2337, "ethnicity2": 827, "edu1": 468, "edu2": 695, "edu3": 743, "edu4": 485, "Shape_Length": 18825.555443180776, "Shape_Area": 15220821.560769299, "total_2021": 2541, "total_2022": 3164 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.272544975298288, 29.680415183914409 ], [ -95.272679974676251, 29.680351184045065 ], [ -95.272544975074084, 29.680215184103883 ], [ -95.271398974001187, 29.67906418416732 ], [ -95.270393974619623, 29.678054183404814 ], [ -95.269896973522293, 29.677517183043012 ], [ -95.269750974249277, 29.677360183380532 ], [ -95.268096973724383, 29.675660183156527 ], [ -95.268002973209065, 29.67556318342417 ], [ -95.267861973580722, 29.675670183482275 ], [ -95.26774197295552, 29.675760183079085 ], [ -95.267575973198319, 29.675886183064257 ], [ -95.266688973427918, 29.676537183595503 ], [ -95.264164972509178, 29.678432184303805 ], [ -95.261743972533949, 29.680248184255888 ], [ -95.25980297209928, 29.681700184731032 ], [ -95.257996971671517, 29.683055184892257 ], [ -95.257497971384169, 29.683408184801383 ], [ -95.255652971165233, 29.68478418530859 ], [ -95.255464970245853, 29.68489818587312 ], [ -95.255442970302582, 29.684911185309709 ], [ -95.255243970665376, 29.685057185153632 ], [ -95.253568970215113, 29.686134185799784 ], [ -95.252893970216562, 29.686547185564319 ], [ -95.251642969421923, 29.6874401864943 ], [ -95.251561970026813, 29.687499186031069 ], [ -95.251794969353682, 29.687662185926197 ], [ -95.252401970084875, 29.688551186358794 ], [ -95.252624970143799, 29.688758186449544 ], [ -95.253184970425664, 29.688976186639128 ], [ -95.254076970461497, 29.689235186098109 ], [ -95.254443970337121, 29.689244186360323 ], [ -95.255132970705688, 29.689168186125517 ], [ -95.255652970954117, 29.689375186774303 ], [ -95.255985971405721, 29.689582186010018 ], [ -95.256547971167123, 29.69019718680039 ], [ -95.256652971408528, 29.690542186614131 ], [ -95.2567239712278, 29.69163118709 ], [ -95.256730971612896, 29.691725187077012 ], [ -95.257300971823696, 29.691683186449037 ], [ -95.258028971489082, 29.691439186984745 ], [ -95.258288972146829, 29.69126518666415 ], [ -95.259016971444879, 29.690585186359325 ], [ -95.259410971809189, 29.690393186799906 ], [ -95.260047972206522, 29.690201186168828 ], [ -95.260225972584564, 29.690147186484872 ], [ -95.260329972188913, 29.69014418652711 ], [ -95.260919971797193, 29.690126186257544 ], [ -95.26156697218596, 29.689915186710639 ], [ -95.261871972623055, 29.68957818615073 ], [ -95.262058972458945, 29.688994186172383 ], [ -95.262225972180488, 29.688835185904061 ], [ -95.262368973058273, 29.688766186430676 ], [ -95.262811973112818, 29.688707186230552 ], [ -95.264199972939281, 29.688809186015416 ], [ -95.264420973116714, 29.688825186007605 ], [ -95.264708972669226, 29.688388185721092 ], [ -95.265557972900567, 29.686319185453243 ], [ -95.266024973672046, 29.685436185516402 ], [ -95.266257973520027, 29.685077184997603 ], [ -95.266812973259249, 29.684225184525179 ], [ -95.26685997360326, 29.684152184816313 ], [ -95.266920973851896, 29.684076184854202 ], [ -95.267353973400034, 29.68353018445023 ], [ -95.267587973578458, 29.683361184909561 ], [ -95.267729973909454, 29.683102184837878 ], [ -95.268448973596804, 29.682359184809169 ], [ -95.269642973748006, 29.681313184453494 ], [ -95.269998974661846, 29.681068183951218 ], [ -95.270763973885749, 29.680801184107906 ], [ -95.271460974519144, 29.680741184186807 ], [ -95.271831974704455, 29.680752184445772 ], [ -95.272210974515531, 29.680573183851404 ], [ -95.272383974475588, 29.680491184318512 ], [ -95.272544975298288, 29.680415183914409 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 58, "Tract": "48201350601", "Area_SqMi": 5.152480252497238, "total_2009": 4305, "total_2010": 4543, "total_2011": 5353, "total_2012": 5157, "total_2013": 5369, "total_2014": 5487, "total_2015": 5169, "total_2016": 5480, "total_2017": 5619, "total_2018": 5718, "total_2019": 5815, "total_2020": 5313, "age1": 2752, "age2": 2436, "age3": 997, "earn1": 1942, "earn2": 2417, "earn3": 1826, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 184, "naics_s05": 22, "naics_s06": 88, "naics_s07": 3311, "naics_s08": 10, "naics_s09": 19, "naics_s10": 182, "naics_s11": 103, "naics_s12": 51, "naics_s13": 1, "naics_s14": 104, "naics_s15": 12, "naics_s16": 207, "naics_s17": 10, "naics_s18": 1670, "naics_s19": 180, "naics_s20": 31, "race1": 4609, "race2": 972, "race3": 62, "race4": 405, "race5": 6, "race6": 131, "ethnicity1": 3935, "ethnicity2": 2250, "edu1": 752, "edu2": 960, "edu3": 1073, "edu4": 648, "Shape_Length": 69244.137234399415, "Shape_Area": 143642330.88153687, "total_2021": 5658, "total_2022": 6185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.199907951026063, 29.554133160516507 ], [ -95.199970951035652, 29.554111160643217 ], [ -95.199907950506471, 29.553710160417364 ], [ -95.199737950206483, 29.553523160295317 ], [ -95.199549950929608, 29.553435159915725 ], [ -95.199561950763922, 29.553320160520702 ], [ -95.199618950805686, 29.553028160500553 ], [ -95.199681950664441, 29.552951160436233 ], [ -95.19989595052904, 29.55273715989188 ], [ -95.199926950688706, 29.552671160325772 ], [ -95.199927950510926, 29.55261116006097 ], [ -95.19993295014838, 29.552385160263267 ], [ -95.199850950178885, 29.552247160199379 ], [ -95.199618950176045, 29.552055160435653 ], [ -95.199517950934492, 29.551923159690901 ], [ -95.199341949927216, 29.55177415952355 ], [ -95.199310950868977, 29.551736159807188 ], [ -95.199285949959759, 29.551666159997481 ], [ -95.199253950090906, 29.55157616020308 ], [ -95.199198950251073, 29.551513159809026 ], [ -95.199077950261255, 29.551413159754485 ], [ -95.198947950068501, 29.551328160292968 ], [ -95.198840950337427, 29.55127115992584 ], [ -95.198714950719534, 29.551226159492057 ], [ -95.198519949970844, 29.551194159467968 ], [ -95.198324950432266, 29.551158159983547 ], [ -95.198244950022783, 29.551129160196439 ], [ -95.198189950504656, 29.551089159771443 ], [ -95.19816195046424, 29.551048160321244 ], [ -95.198147949890114, 29.551008160155135 ], [ -95.198161950357388, 29.550919160160536 ], [ -95.198203949732616, 29.550826159925055 ], [ -95.198258950412168, 29.550716159421174 ], [ -95.198310950111022, 29.550579159717646 ], [ -95.198328950210666, 29.550441159906121 ], [ -95.198316949831749, 29.550388160067662 ], [ -95.198278950159647, 29.550312159945342 ], [ -95.198163949879586, 29.550177160003816 ], [ -95.19800994981432, 29.550061159886642 ], [ -95.197902950441971, 29.549980159850669 ], [ -95.197679949671837, 29.549870159534233 ], [ -95.197567950002878, 29.549806159450558 ], [ -95.197469950244113, 29.549725159499619 ], [ -95.19742394941143, 29.549628159137423 ], [ -95.197417950186235, 29.549578160002195 ], [ -95.197341949557597, 29.549498159326916 ], [ -95.197297950248583, 29.549421159521021 ], [ -95.197246949794689, 29.549185159458816 ], [ -95.197240949502131, 29.549141159091906 ], [ -95.197253949279414, 29.54910815933858 ], [ -95.197297949671793, 29.54904715938321 ], [ -95.197316949411075, 29.549003159561288 ], [ -95.197328949900637, 29.548866159147604 ], [ -95.197316950115024, 29.548783159707224 ], [ -95.197253950100574, 29.548663159238924 ], [ -95.197253949992842, 29.548602159093978 ], [ -95.197265949935471, 29.548547159619826 ], [ -95.197334950181485, 29.54841515932219 ], [ -95.197353949922942, 29.548333159773158 ], [ -95.19732895002592, 29.54813515950217 ], [ -95.197303950021379, 29.548074159710364 ], [ -95.197303949372809, 29.547997159089551 ], [ -95.19731594957851, 29.547898159268861 ], [ -95.197398949974129, 29.547577158817123 ], [ -95.197517949898824, 29.547370159374218 ], [ -95.197573949891805, 29.547332158874575 ], [ -95.197781949350571, 29.546996158621564 ], [ -95.197894949616028, 29.546859158597677 ], [ -95.197969949940131, 29.546831159131916 ], [ -95.198183949952337, 29.546798158548217 ], [ -95.198359950022791, 29.546754158587305 ], [ -95.198454949847658, 29.546710159216893 ], [ -95.198661950053889, 29.546589158587068 ], [ -95.198862950423447, 29.546457158513963 ], [ -95.198925950247073, 29.546358158624319 ], [ -95.199152950341613, 29.546094158708541 ], [ -95.19919594975805, 29.545726159163436 ], [ -95.199177949805886, 29.545457158707833 ], [ -95.199183950090728, 29.545391159043511 ], [ -95.19920895040886, 29.545303158574075 ], [ -95.199214949845683, 29.544978158965353 ], [ -95.199271949805237, 29.544901158249743 ], [ -95.199327950244523, 29.544824158889124 ], [ -95.19942295047565, 29.544731158170006 ], [ -95.199466950070089, 29.544637158151819 ], [ -95.199459950309844, 29.5445331584352 ], [ -95.199422950073668, 29.544478158850346 ], [ -95.199346950510076, 29.544412158239442 ], [ -95.199259949987024, 29.544313158748782 ], [ -95.199207949905599, 29.544265158768177 ], [ -95.199170949672776, 29.544229158519734 ], [ -95.198990950479811, 29.544007158628396 ], [ -95.198748949910993, 29.543711158009117 ], [ -95.198588949561469, 29.543525158395912 ], [ -95.19843595003411, 29.543314158068046 ], [ -95.198327949431715, 29.543104158114662 ], [ -95.198319949817019, 29.543082157955027 ], [ -95.198227949447684, 29.542982157916612 ], [ -95.198157950048312, 29.542823158122012 ], [ -95.198107949503566, 29.54266315798132 ], [ -95.198101949333548, 29.542526158255949 ], [ -95.198048949376584, 29.542431157970519 ], [ -95.197867949938654, 29.542298157806467 ], [ -95.197769950029809, 29.542213157624801 ], [ -95.19770294911244, 29.542121157890836 ], [ -95.197712949947373, 29.542082157918077 ], [ -95.19767394987386, 29.542058158457667 ], [ -95.19759094963662, 29.542021158226326 ], [ -95.197496949465517, 29.541979157975799 ], [ -95.197329949564903, 29.541983157748639 ], [ -95.197291949232351, 29.5419841577834 ], [ -95.19724194900634, 29.541997158093952 ], [ -95.197197949098225, 29.542072158015337 ], [ -95.197161949603483, 29.542133158024281 ], [ -95.196733949696323, 29.542866158435519 ], [ -95.196299949043492, 29.543609158186943 ], [ -95.195469948728274, 29.54453015822968 ], [ -95.194900948617104, 29.544907158308032 ], [ -95.19342694902285, 29.545654158700795 ], [ -95.192489948091762, 29.546125159119235 ], [ -95.191874948716517, 29.546566159487767 ], [ -95.191797948188892, 29.546628158765497 ], [ -95.190971948100298, 29.547377159638536 ], [ -95.190866948407077, 29.547472159110129 ], [ -95.190766948180979, 29.547561159473716 ], [ -95.190363947919408, 29.547942159692532 ], [ -95.189999948199755, 29.548259159563212 ], [ -95.189821947501628, 29.548415159169579 ], [ -95.189598947501338, 29.548609159676786 ], [ -95.188730947341242, 29.549364159806572 ], [ -95.187330947091397, 29.550655160353251 ], [ -95.187264946839676, 29.550606159793286 ], [ -95.187160947724962, 29.550529159888463 ], [ -95.186358947082397, 29.549857159941947 ], [ -95.185909947329719, 29.549482159563205 ], [ -95.185594946526109, 29.549220160034267 ], [ -95.185358947171508, 29.5490231599039 ], [ -95.185173947038408, 29.548869160289957 ], [ -95.184861946607015, 29.548611159764512 ], [ -95.1846119464076, 29.548403159413485 ], [ -95.184348946149001, 29.54818415937773 ], [ -95.183173946415778, 29.547232159882515 ], [ -95.182079945356733, 29.546327159681159 ], [ -95.181309945801502, 29.545690159700758 ], [ -95.180458945732738, 29.544987159278985 ], [ -95.179807945127436, 29.544448158786846 ], [ -95.179741945063526, 29.544394159258086 ], [ -95.178656944506997, 29.543498158988552 ], [ -95.177978944998827, 29.542933158538936 ], [ -95.176815944334052, 29.541969158727948 ], [ -95.176236943867593, 29.54154115817639 ], [ -95.175936944301625, 29.541452158737997 ], [ -95.175507943940161, 29.541324158728756 ], [ -95.174898944001669, 29.540937158647115 ], [ -95.174591943100552, 29.540687158263658 ], [ -95.172952943137417, 29.539317158084422 ], [ -95.170903942822989, 29.540609158999271 ], [ -95.170325942270409, 29.539894158910741 ], [ -95.169476942677051, 29.538863157919305 ], [ -95.168795941768195, 29.538193158607207 ], [ -95.16840094222853, 29.537868158208873 ], [ -95.167493941426841, 29.537324157954071 ], [ -95.16686694190409, 29.536801157802742 ], [ -95.166280941624436, 29.536310157851229 ], [ -95.165680941092461, 29.535813158232248 ], [ -95.164815941301256, 29.535096157985794 ], [ -95.164229940665834, 29.534640157611957 ], [ -95.163945940343623, 29.534440157131385 ], [ -95.163597940279629, 29.534168157235829 ], [ -95.163010939912937, 29.533680157232869 ], [ -95.162419939681413, 29.53319215698178 ], [ -95.16182393958394, 29.53270615714014 ], [ -95.161401940300976, 29.532354157312273 ], [ -95.159869939707676, 29.533793157581705 ], [ -95.159673939642474, 29.533978157749118 ], [ -95.159615939741528, 29.534032157218586 ], [ -95.159221939611555, 29.534394157454312 ], [ -95.158955939500146, 29.534639157596807 ], [ -95.157310938663684, 29.536152158346589 ], [ -95.156487939107564, 29.536712158071268 ], [ -95.156226938374672, 29.536890158739251 ], [ -95.155949939040255, 29.53701915882554 ], [ -95.155470938466792, 29.537243158165488 ], [ -95.155236938133655, 29.537318158311663 ], [ -95.154715938387341, 29.537486158115389 ], [ -95.15444893876608, 29.537533158091364 ], [ -95.154066938236042, 29.537600158820492 ], [ -95.152608937914152, 29.537856159033556 ], [ -95.152067938041498, 29.537941158387852 ], [ -95.150684937702621, 29.538157158837929 ], [ -95.150559937156018, 29.538177159012022 ], [ -95.148143936764768, 29.538561159358224 ], [ -95.145866936354551, 29.538922158892948 ], [ -95.14505593638502, 29.539063159552846 ], [ -95.144654935380714, 29.539134159290356 ], [ -95.14452893535011, 29.539159158922708 ], [ -95.144488936052298, 29.53916815887499 ], [ -95.143951935425278, 29.539398159402378 ], [ -95.143616935335373, 29.53955115900979 ], [ -95.141993934979538, 29.540340159619344 ], [ -95.141830934838168, 29.540419159938846 ], [ -95.145035936211769, 29.543820159870915 ], [ -95.145818936235116, 29.54465016067854 ], [ -95.145909936880187, 29.54474716040551 ], [ -95.146019936286095, 29.544862160061886 ], [ -95.150140937622041, 29.549172161283082 ], [ -95.15419993844371, 29.553410161974394 ], [ -95.154694939498029, 29.553927162112444 ], [ -95.156938939471132, 29.556269162092622 ], [ -95.158683940274926, 29.5580911628672 ], [ -95.16228894131946, 29.561847162845975 ], [ -95.165512941963883, 29.565550164199561 ], [ -95.168891943642308, 29.569469165087014 ], [ -95.169022943659769, 29.569621164420106 ], [ -95.171901944021172, 29.572960165047764 ], [ -95.172232944372794, 29.573346164891205 ], [ -95.177026946268512, 29.578945166527742 ], [ -95.17888694694642, 29.581117166450035 ], [ -95.18094394678549, 29.58347416736942 ], [ -95.182045947652654, 29.584537167181214 ], [ -95.18237194746267, 29.584865167497448 ], [ -95.184410948324597, 29.586629167684958 ], [ -95.18451594858557, 29.586550167759476 ], [ -95.185170948547295, 29.585981167062741 ], [ -95.185482948009877, 29.585707167120791 ], [ -95.185930948878251, 29.585314167506517 ], [ -95.186463948685486, 29.584752167294742 ], [ -95.186480948147818, 29.584736166822665 ], [ -95.186670948624737, 29.584595167447972 ], [ -95.187260948924489, 29.584058166925772 ], [ -95.187173948419144, 29.583970167416314 ], [ -95.187063949041217, 29.583970166950511 ], [ -95.187073948607576, 29.583893167430961 ], [ -95.186897948364717, 29.583744166560351 ], [ -95.185505948431484, 29.582914166477089 ], [ -95.185328948160063, 29.582765166472779 ], [ -95.185009947635706, 29.582305166612787 ], [ -95.184853947475474, 29.58178316700031 ], [ -95.184723947760318, 29.581559166336252 ], [ -95.184282947976541, 29.581086166565296 ], [ -95.184169947342866, 29.580995166260628 ], [ -95.183466947245307, 29.580429166187699 ], [ -95.182826946976746, 29.579256166520199 ], [ -95.182291946999896, 29.578081166251458 ], [ -95.182159947459468, 29.577784165696336 ], [ -95.182008946768036, 29.577323166232141 ], [ -95.181738947282284, 29.577163165448621 ], [ -95.181631946668716, 29.577075165966772 ], [ -95.181587946995123, 29.576960165414885 ], [ -95.181587946710764, 29.576839165600465 ], [ -95.181637946699468, 29.576641165581378 ], [ -95.181662946893098, 29.576426165209416 ], [ -95.181644946663113, 29.576250165729054 ], [ -95.181574947101254, 29.576129165201053 ], [ -95.181430946614469, 29.575986165924263 ], [ -95.18128594686462, 29.575876165231307 ], [ -95.18107794628493, 29.575744165397179 ], [ -95.181002947057436, 29.575640165082007 ], [ -95.180964946875619, 29.575530165304471 ], [ -95.180952946895772, 29.575447165490115 ], [ -95.180952947059225, 29.575360165186577 ], [ -95.18097794681519, 29.575261165251636 ], [ -95.18111594647084, 29.574964165164502 ], [ -95.181241947180524, 29.574568165637938 ], [ -95.181300946488022, 29.574482165649794 ], [ -95.181467946608535, 29.574243165639427 ], [ -95.18166294683914, 29.574095165431579 ], [ -95.182027946935236, 29.573985165521059 ], [ -95.182373947244855, 29.573974165464822 ], [ -95.182631947451952, 29.573880164921516 ], [ -95.182788947062221, 29.573853165229561 ], [ -95.182952946897117, 29.573847164619309 ], [ -95.183078947638222, 29.573715165140225 ], [ -95.183109947459698, 29.573638164694238 ], [ -95.183229947491611, 29.573440164937612 ], [ -95.183147947025105, 29.573330164874985 ], [ -95.183128947524992, 29.573231164575851 ], [ -95.183229947017537, 29.573199164578337 ], [ -95.183292947574998, 29.573193164533443 ], [ -95.183386947461742, 29.573209164549645 ], [ -95.18351894778354, 29.573270165226262 ], [ -95.183663946952151, 29.573319165346788 ], [ -95.183782947561269, 29.573413165125952 ], [ -95.183833947834458, 29.573358164822235 ], [ -95.183883947119753, 29.573336165024667 ], [ -95.183927947374812, 29.573352165211841 ], [ -95.184072947718647, 29.573479164719611 ], [ -95.184141947276757, 29.573506165012628 ], [ -95.184178947359101, 29.573506165373438 ], [ -95.184273947193034, 29.573484164746514 ], [ -95.18461394730484, 29.573281165062316 ], [ -95.184833947765824, 29.573182164648472 ], [ -95.184896948080095, 29.573143164556633 ], [ -95.184971947368368, 29.573050164508775 ], [ -95.184977947869783, 29.572979165221767 ], [ -95.18491494724752, 29.572940164641402 ], [ -95.184883947133699, 29.572935164659192 ], [ -95.184807947834912, 29.572896165152368 ], [ -95.184776947673498, 29.572858164949679 ], [ -95.18478294746464, 29.572786164489692 ], [ -95.184839948011231, 29.572737164980435 ], [ -95.185279948144029, 29.572550164959772 ], [ -95.185330947573178, 29.572506165052566 ], [ -95.18533694753053, 29.572451164349033 ], [ -95.185311947636251, 29.572390164415232 ], [ -95.185311947274343, 29.572330164629264 ], [ -95.185342948152723, 29.572280165121104 ], [ -95.185393948006663, 29.572253164974889 ], [ -95.18548194746127, 29.572247164685646 ], [ -95.185657947917207, 29.572302164610534 ], [ -95.185688947550815, 29.57230216495061 ], [ -95.185776947434661, 29.57228616466795 ], [ -95.185839948086453, 29.572231164642893 ], [ -95.185864947672727, 29.572181164486441 ], [ -95.185896947927063, 29.572066164344605 ], [ -95.185996947616246, 29.571846164968026 ], [ -95.185965947614918, 29.571741164406383 ], [ -95.18596594780081, 29.571631164676134 ], [ -95.185977947449132, 29.57160416426288 ], [ -95.186072948003684, 29.571532164274924 ], [ -95.186110947718447, 29.571527164286763 ], [ -95.186173947560718, 29.571576164117182 ], [ -95.18619894808144, 29.571620164140409 ], [ -95.186210948020204, 29.571686164578743 ], [ -95.186330947602187, 29.571780164420918 ], [ -95.186393948067447, 29.571774164746952 ], [ -95.186449948099508, 29.571714164874365 ], [ -95.186474947744017, 29.571653164549645 ], [ -95.186481947914586, 29.571604164044849 ], [ -95.186462948378804, 29.571439164788821 ], [ -95.186468947664494, 29.57138416402146 ], [ -95.186525948463881, 29.571329164125025 ], [ -95.186594948104513, 29.57121316417917 ], [ -95.186625948013386, 29.571125164717582 ], [ -95.186594948091894, 29.571054164741803 ], [ -95.186411948052637, 29.571004164450084 ], [ -95.186361947572706, 29.570928163891924 ], [ -95.1863809481803, 29.57086716403203 ], [ -95.186418948342862, 29.570812164010853 ], [ -95.186556947957044, 29.570724164379666 ], [ -95.186569947685257, 29.570669164611196 ], [ -95.186500947827412, 29.570526164249731 ], [ -95.186518948034802, 29.570477164145281 ], [ -95.186556948313068, 29.570427164447548 ], [ -95.18649394823548, 29.570301164304738 ], [ -95.186386948100193, 29.56969616437555 ], [ -95.186443947492009, 29.569525164095239 ], [ -95.186512947777203, 29.569366164176962 ], [ -95.18661994781796, 29.56923916442507 ], [ -95.186751947432001, 29.569036164026013 ], [ -95.186751948181907, 29.568931163726329 ], [ -95.186726947919979, 29.56882716397698 ], [ -95.186682947495854, 29.568755164050305 ], [ -95.186669948297023, 29.568618164133579 ], [ -95.186776947653968, 29.568420163468268 ], [ -95.18690894781011, 29.568272164181408 ], [ -95.186990948288155, 29.568101163334539 ], [ -95.187022947571691, 29.56801316336303 ], [ -95.187040948131681, 29.567909163745114 ], [ -95.187040948350074, 29.567837163622478 ], [ -95.187015947818963, 29.567766164105642 ], [ -95.187009947563595, 29.567700163224469 ], [ -95.186984948299553, 29.56761216395336 ], [ -95.186927948073631, 29.56746316395639 ], [ -95.186940948252868, 29.567408163239772 ], [ -95.186996947814094, 29.567331163362077 ], [ -95.187091948225458, 29.567287163467427 ], [ -95.187154948150493, 29.567232163752145 ], [ -95.18730494748165, 29.567155163488504 ], [ -95.187330948057934, 29.56711116332098 ], [ -95.187336947604194, 29.567040163863926 ], [ -95.187141947830497, 29.566864163212571 ], [ -95.187116947863117, 29.566798163168954 ], [ -95.18710394807691, 29.566655163516494 ], [ -95.187191948419283, 29.566446163300661 ], [ -95.187185947875477, 29.566358163157627 ], [ -95.187172947448829, 29.566259163774529 ], [ -95.187040948172665, 29.565891163712124 ], [ -95.18704094796901, 29.565830163620191 ], [ -95.187059948316133, 29.565753163188834 ], [ -95.187172948285735, 29.565605163574883 ], [ -95.187235947474193, 29.565484163360953 ], [ -95.187235948185716, 29.565423163292905 ], [ -95.187141947430618, 29.565291163466622 ], [ -95.18698494797826, 29.565099163027291 ], [ -95.186852947922105, 29.564884163437824 ], [ -95.186814947980935, 29.564725162649818 ], [ -95.186801947543586, 29.564538163452685 ], [ -95.186808948037495, 29.564351163121799 ], [ -95.186889947969689, 29.564219162584148 ], [ -95.187002948126832, 29.564082163189607 ], [ -95.18709194741497, 29.564043163222706 ], [ -95.187153947498985, 29.564038163033096 ], [ -95.18734294808894, 29.564098163016215 ], [ -95.187424948309214, 29.564082163200585 ], [ -95.18748794808657, 29.564060162677315 ], [ -95.187569948035645, 29.564005162819726 ], [ -95.187657947452422, 29.563966162866461 ], [ -95.187889948449467, 29.563884163057146 ], [ -95.187984947727287, 29.563862162718255 ], [ -95.188052947636592, 29.563836162626259 ], [ -95.18818594849634, 29.563785162872165 ], [ -95.188235948585174, 29.563735162621573 ], [ -95.188267948234454, 29.563675163116098 ], [ -95.188292947705662, 29.563521162353236 ], [ -95.188374947819284, 29.563405162831732 ], [ -95.188443947815074, 29.563345162587432 ], [ -95.188594948505937, 29.563301162689065 ], [ -95.18870194859791, 29.563301162809783 ], [ -95.188870947809349, 29.563218162870832 ], [ -95.189160948312804, 29.562954162717094 ], [ -95.189776948857912, 29.56243216233262 ], [ -95.189808947897021, 29.562316162737268 ], [ -95.189877948278919, 29.562217162760668 ], [ -95.190047948242508, 29.56220616208061 ], [ -95.190154948413934, 29.562173162657373 ], [ -95.190216948143032, 29.562107162795861 ], [ -95.190242948522069, 29.562019162686134 ], [ -95.190248948436434, 29.561942162480378 ], [ -95.190311948059843, 29.561788162482703 ], [ -95.190367948352105, 29.561678161958341 ], [ -95.1904369486289, 29.561591162031906 ], [ -95.19055694824938, 29.561464162198078 ], [ -95.190600948088345, 29.561431162384778 ], [ -95.190701948094429, 29.561321162621709 ], [ -95.191216948762246, 29.561052162044501 ], [ -95.191342949106058, 29.560903161684674 ], [ -95.191430948441166, 29.560887162445415 ], [ -95.191575949132272, 29.560876161959726 ], [ -95.191688948599008, 29.56082116234985 ], [ -95.191738948502831, 29.560760161672349 ], [ -95.191789948863672, 29.560639161660706 ], [ -95.191845948908153, 29.560590162427161 ], [ -95.192084948776511, 29.560496162297696 ], [ -95.192242948557251, 29.560414162154405 ], [ -95.192380949248133, 29.560304162159881 ], [ -95.192600948917999, 29.560045161602634 ], [ -95.192663949117829, 29.55999616184376 ], [ -95.193002948956789, 29.559616161764016 ], [ -95.193160949465963, 29.559523161432587 ], [ -95.193200949027499, 29.559381162007277 ], [ -95.193342948759721, 29.558885162007758 ], [ -95.193512949326916, 29.558040161103271 ], [ -95.193552949565216, 29.557842161855842 ], [ -95.193600949504827, 29.557604161723837 ], [ -95.193644949322476, 29.557532161020031 ], [ -95.193711948836324, 29.557479161687535 ], [ -95.193776949182535, 29.557428160991716 ], [ -95.193926948848684, 29.557377161177641 ], [ -95.193939948904088, 29.55737316096365 ], [ -95.194059948939568, 29.557384161453363 ], [ -95.194147949666288, 29.557422161569249 ], [ -95.194367949176197, 29.55748316151163 ], [ -95.19453794960512, 29.557494160925724 ], [ -95.194631949136266, 29.557488161428331 ], [ -95.194675949076625, 29.557472161020144 ], [ -95.194759949791603, 29.557404160936965 ], [ -95.194864949261628, 29.557318161597074 ], [ -95.194904949691448, 29.55725216105559 ], [ -95.194914949797791, 29.557235161469098 ], [ -95.194827949122768, 29.557167161069763 ], [ -95.194788949521453, 29.557136161040347 ], [ -95.194713949367724, 29.557120161323787 ], [ -95.194644949328421, 29.557087161008891 ], [ -95.194581949026954, 29.557043161609961 ], [ -95.194468949392956, 29.556938160997543 ], [ -95.194386948978533, 29.55685016122133 ], [ -95.194342949681371, 29.5567571610596 ], [ -95.194285949685224, 29.556597161199136 ], [ -95.19426694923574, 29.556372161117171 ], [ -95.194461949729714, 29.555965160683805 ], [ -95.194511948945319, 29.55591616113465 ], [ -95.19458194953657, 29.555899161121364 ], [ -95.194656949074528, 29.55591016056221 ], [ -95.19474494990888, 29.555982160808394 ], [ -95.194820949136016, 29.556064161428043 ], [ -95.194876949293302, 29.556240161033045 ], [ -95.194964949461792, 29.55642716129022 ], [ -95.195103949081897, 29.55663616117462 ], [ -95.195210949572484, 29.556729160845642 ], [ -95.195323950113192, 29.556867161059976 ], [ -95.195411949361414, 29.556955161201401 ], [ -95.195480949580272, 29.557092161211084 ], [ -95.19549994919403, 29.557307161164722 ], [ -95.195518949935604, 29.557395161569364 ], [ -95.19554395018092, 29.557455161291358 ], [ -95.195549949411699, 29.55751616140984 ], [ -95.195586949406419, 29.557588161606791 ], [ -95.19559894964307, 29.557611161268859 ], [ -95.195657949725131, 29.557630161012447 ], [ -95.195790949795722, 29.55764616092193 ], [ -95.195894949534477, 29.557642161171149 ], [ -95.195930949590363, 29.557638161485638 ], [ -95.195942949355455, 29.557627161549245 ], [ -95.195952950025003, 29.557618161216862 ], [ -95.196160949780747, 29.557433160972277 ], [ -95.196487950392168, 29.557076160872597 ], [ -95.19657494947522, 29.556944161120317 ], [ -95.19674495012616, 29.556872161192729 ], [ -95.196820949994432, 29.556856161171481 ], [ -95.196926950066839, 29.556848161457943 ], [ -95.196947949976305, 29.556847160840242 ], [ -95.196975950373101, 29.556849161468786 ], [ -95.197040950333061, 29.556869160882894 ], [ -95.197082949663169, 29.556911160759583 ], [ -95.197140950323984, 29.557047160931877 ], [ -95.197178949581371, 29.557249161373125 ], [ -95.197211949682753, 29.557316160731332 ], [ -95.19725694987396, 29.557357160771968 ], [ -95.197325949969141, 29.557386161410307 ], [ -95.197406950537584, 29.557411161024458 ], [ -95.197480950002401, 29.557416161386183 ], [ -95.197543950237574, 29.557405160863226 ], [ -95.19759395007334, 29.557378161245566 ], [ -95.197688950173713, 29.557284161378448 ], [ -95.197699950603479, 29.557259160943438 ], [ -95.197725950655709, 29.557202160985479 ], [ -95.197770949771368, 29.557021160862128 ], [ -95.197769950714488, 29.556889161484783 ], [ -95.197858950589989, 29.556658161291779 ], [ -95.197952950015988, 29.556493160942903 ], [ -95.197988950557303, 29.556367160677301 ], [ -95.197996950314248, 29.556339160807134 ], [ -95.198028950492372, 29.556306160502 ], [ -95.198074950081775, 29.556259161101007 ], [ -95.198087950031294, 29.556246160928545 ], [ -95.198095950321061, 29.55623816069205 ], [ -95.198104950121035, 29.556228161286885 ], [ -95.198157950700462, 29.556163160479407 ], [ -95.198165949945775, 29.556154160859901 ], [ -95.198175950338069, 29.556141161157587 ], [ -95.198197950168165, 29.556113161209531 ], [ -95.198203950450932, 29.556104160724651 ], [ -95.198279950683755, 29.555987160630291 ], [ -95.198398950745599, 29.555860160859165 ], [ -95.198411950404974, 29.555756161184487 ], [ -95.198407949852182, 29.555583160919067 ], [ -95.19840495063967, 29.555470160910094 ], [ -95.198411949912824, 29.555382160775515 ], [ -95.198415950211114, 29.555368160839485 ], [ -95.198485950076048, 29.55512616073705 ], [ -95.198492950077778, 29.555101160252448 ], [ -95.198587949973941, 29.554969161028808 ], [ -95.198750950793851, 29.5545841605778 ], [ -95.198851950118225, 29.554436160682116 ], [ -95.198864949987623, 29.554408160263907 ], [ -95.198989950507666, 29.554144160605073 ], [ -95.199065950240026, 29.554040160637896 ], [ -95.199134950697697, 29.553991160610586 ], [ -95.199310949989197, 29.553974160496757 ], [ -95.199423950760774, 29.554024160355311 ], [ -95.199480950212731, 29.554068160264656 ], [ -95.199624950233456, 29.554128160653342 ], [ -95.199694950490439, 29.554139160550754 ], [ -95.19987095085628, 29.554138160147524 ], [ -95.199907951026063, 29.554133160516507 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 59, "Tract": "48201431401", "Area_SqMi": 0.14080382658264182, "total_2009": 5532, "total_2010": 5784, "total_2011": 6939, "total_2012": 5776, "total_2013": 6863, "total_2014": 8263, "total_2015": 8068, "total_2016": 6528, "total_2017": 5079, "total_2018": 6020, "total_2019": 6198, "total_2020": 6800, "age1": 1994, "age2": 4061, "age3": 1743, "earn1": 1414, "earn2": 2449, "earn3": 3935, "naics_s01": 0, "naics_s02": 640, "naics_s03": 126, "naics_s04": 510, "naics_s05": 0, "naics_s06": 88, "naics_s07": 381, "naics_s08": 45, "naics_s09": 192, "naics_s10": 536, "naics_s11": 145, "naics_s12": 1099, "naics_s13": 0, "naics_s14": 2294, "naics_s15": 241, "naics_s16": 274, "naics_s17": 1, "naics_s18": 1187, "naics_s19": 39, "naics_s20": 0, "race1": 5483, "race2": 1526, "race3": 68, "race4": 574, "race5": 7, "race6": 140, "ethnicity1": 5587, "ethnicity2": 2211, "edu1": 1070, "edu2": 1342, "edu3": 1714, "edu4": 1678, "Shape_Length": 10644.383415348804, "Shape_Area": 3925369.6969663864, "total_2021": 6470, "total_2022": 7798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.486041032617734, 29.749943190691877 ], [ -95.486038032224656, 29.749844190591922 ], [ -95.486022032458351, 29.749126190569935 ], [ -95.486002032407086, 29.748470190867256 ], [ -95.485983032251866, 29.747853190645269 ], [ -95.485979032252416, 29.747722190871396 ], [ -95.485933032801782, 29.747333190294935 ], [ -95.485831032517211, 29.747163190337972 ], [ -95.485731032652808, 29.747001190524486 ], [ -95.485564031946566, 29.74662019052057 ], [ -95.485480032463329, 29.746284190717383 ], [ -95.485484031785973, 29.746015189829166 ], [ -95.485423031921911, 29.742902189304051 ], [ -95.485440032237364, 29.742196189310043 ], [ -95.485322031807598, 29.741535189084779 ], [ -95.485076031573712, 29.741039188897609 ], [ -95.484661032085228, 29.740194189130641 ], [ -95.484589031890707, 29.740047188921018 ], [ -95.484566032001126, 29.739921189116568 ], [ -95.484525032001443, 29.739275189004314 ], [ -95.484477032034448, 29.738957188677727 ], [ -95.484315031328123, 29.738426189103077 ], [ -95.484296031978289, 29.737885188457785 ], [ -95.484292031134501, 29.737723188642534 ], [ -95.483794031425305, 29.737739188399829 ], [ -95.48275603101375, 29.737758188215796 ], [ -95.482500031620475, 29.737762188468086 ], [ -95.482487031273422, 29.737908188535158 ], [ -95.482488030788758, 29.738454188914002 ], [ -95.482491031083214, 29.738627188367492 ], [ -95.482495030802014, 29.738920189152775 ], [ -95.482496031409624, 29.739073188522365 ], [ -95.482513031460925, 29.740352189205773 ], [ -95.482514031673574, 29.740485189503634 ], [ -95.482520031228219, 29.74088918942217 ], [ -95.482521031455221, 29.741022189700377 ], [ -95.482533031503138, 29.741858189426644 ], [ -95.482536031601185, 29.742029189350216 ], [ -95.482540030961317, 29.742230189615341 ], [ -95.4825440313831, 29.74264918934394 ], [ -95.482552031238754, 29.743263189354956 ], [ -95.482554031375756, 29.743391189873847 ], [ -95.482556031474004, 29.743504190246984 ], [ -95.482565031092591, 29.744147190325855 ], [ -95.482567031957771, 29.744270190184206 ], [ -95.482570031287722, 29.744486190378364 ], [ -95.482578031793693, 29.745005190443351 ], [ -95.482586031225921, 29.745585190155897 ], [ -95.482589031271445, 29.745790190673642 ], [ -95.482594031902025, 29.746207190707867 ], [ -95.482595031365506, 29.746273190253525 ], [ -95.482605031260576, 29.746987190925594 ], [ -95.482611031476821, 29.747373190507236 ], [ -95.482614031599994, 29.747569190668095 ], [ -95.482626031559263, 29.748446190484916 ], [ -95.482631031379938, 29.748854190834393 ], [ -95.482636031500249, 29.749243191418646 ], [ -95.482647031420825, 29.749917190959177 ], [ -95.482649031433397, 29.750040191494843 ], [ -95.484101031627148, 29.750030190719496 ], [ -95.485251032453817, 29.749995191501991 ], [ -95.485703032446366, 29.749958190579218 ], [ -95.486041032617734, 29.749943190691877 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 60, "Tract": "48201511301", "Area_SqMi": 0.69784641741135922, "total_2009": 1737, "total_2010": 1923, "total_2011": 1904, "total_2012": 1835, "total_2013": 1928, "total_2014": 1901, "total_2015": 1888, "total_2016": 2168, "total_2017": 2279, "total_2018": 2129, "total_2019": 2122, "total_2020": 2308, "age1": 824, "age2": 1332, "age3": 508, "earn1": 624, "earn2": 906, "earn3": 1134, "naics_s01": 3, "naics_s02": 71, "naics_s03": 0, "naics_s04": 209, "naics_s05": 37, "naics_s06": 35, "naics_s07": 600, "naics_s08": 13, "naics_s09": 16, "naics_s10": 79, "naics_s11": 50, "naics_s12": 187, "naics_s13": 6, "naics_s14": 136, "naics_s15": 130, "naics_s16": 189, "naics_s17": 33, "naics_s18": 679, "naics_s19": 189, "naics_s20": 2, "race1": 2151, "race2": 276, "race3": 25, "race4": 159, "race5": 5, "race6": 48, "ethnicity1": 1709, "ethnicity2": 955, "edu1": 389, "edu2": 503, "edu3": 543, "edu4": 405, "Shape_Length": 17939.161373777581, "Shape_Area": 19454763.741348524, "total_2021": 2491, "total_2022": 2664 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412263016385126, 29.803769204908129 ], [ -95.412244015956929, 29.802744203940062 ], [ -95.412230015785255, 29.801729204200065 ], [ -95.412188016074424, 29.800997204210262 ], [ -95.412114016314845, 29.800714203767715 ], [ -95.412046015572813, 29.800476203663553 ], [ -95.411808016108367, 29.800018204152558 ], [ -95.411705015986229, 29.799707204170367 ], [ -95.41165101529289, 29.797865203565621 ], [ -95.411621015956385, 29.796012202972992 ], [ -95.411582015193758, 29.794166202311622 ], [ -95.411575015416346, 29.794105202634032 ], [ -95.411563015507312, 29.793298202058473 ], [ -95.411561015166754, 29.792337201884408 ], [ -95.411597015714847, 29.791761201850299 ], [ -95.411776015195414, 29.791138201766248 ], [ -95.411816015736278, 29.790702201995984 ], [ -95.411807014904738, 29.790384201612742 ], [ -95.411281015676209, 29.790432201868008 ], [ -95.410840015376706, 29.790458202111481 ], [ -95.410570015251508, 29.790472202247752 ], [ -95.409903014882914, 29.790511202007913 ], [ -95.408924014933731, 29.790527201573422 ], [ -95.407974014683575, 29.790551202283972 ], [ -95.407018014489921, 29.790559202060518 ], [ -95.406153013454613, 29.790566202178073 ], [ -95.405652014104049, 29.790577202111191 ], [ -95.405627014125031, 29.790578202512886 ], [ -95.405555013374439, 29.790579201704688 ], [ -95.404476013946436, 29.790601202213963 ], [ -95.403362012964038, 29.790624201872017 ], [ -95.402288012660122, 29.790643202087058 ], [ -95.401168012509828, 29.790652202023864 ], [ -95.400084012037382, 29.790663202043419 ], [ -95.398978012530321, 29.790687202537427 ], [ -95.399020011841372, 29.792525202269577 ], [ -95.399043012362043, 29.793769203072472 ], [ -95.399049011897887, 29.794358203099559 ], [ -95.399082012626295, 29.796218203049261 ], [ -95.399124012645487, 29.798041203977604 ], [ -95.399171012147079, 29.7998872040889 ], [ -95.399173012658935, 29.800907204406712 ], [ -95.399193012881454, 29.801914205049993 ], [ -95.399201012363562, 29.802934205220705 ], [ -95.399212013000778, 29.803459204794844 ], [ -95.399223013101789, 29.803964205196763 ], [ -95.401432013791776, 29.80393720512491 ], [ -95.403647013528271, 29.803902204907427 ], [ -95.40589801427997, 29.8038702049327 ], [ -95.408047014699932, 29.803837204277915 ], [ -95.408620015547328, 29.803813204633872 ], [ -95.409955015371253, 29.803820204789076 ], [ -95.410156015388878, 29.803815204361847 ], [ -95.412263016385126, 29.803769204908129 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 61, "Tract": "48201223001", "Area_SqMi": 1.2116358002365935, "total_2009": 449, "total_2010": 302, "total_2011": 349, "total_2012": 398, "total_2013": 486, "total_2014": 421, "total_2015": 327, "total_2016": 491, "total_2017": 389, "total_2018": 336, "total_2019": 358, "total_2020": 335, "age1": 44, "age2": 134, "age3": 104, "earn1": 55, "earn2": 90, "earn3": 137, "naics_s01": 0, "naics_s02": 0, "naics_s03": 5, "naics_s04": 5, "naics_s05": 0, "naics_s06": 0, "naics_s07": 44, "naics_s08": 0, "naics_s09": 0, "naics_s10": 8, "naics_s11": 0, "naics_s12": 8, "naics_s13": 0, "naics_s14": 72, "naics_s15": 0, "naics_s16": 6, "naics_s17": 0, "naics_s18": 0, "naics_s19": 134, "naics_s20": 0, "race1": 185, "race2": 80, "race3": 1, "race4": 15, "race5": 0, "race6": 1, "ethnicity1": 171, "ethnicity2": 111, "edu1": 52, "edu2": 72, "edu3": 69, "edu4": 45, "Shape_Length": 26225.780614950312, "Shape_Area": 33778332.375198901, "total_2021": 286, "total_2022": 282 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.331459000159342, 29.916199229827235 ], [ -95.331587000005413, 29.914789229629811 ], [ -95.33138500032328, 29.911232229041936 ], [ -95.330754999755783, 29.911239229158262 ], [ -95.329428000220403, 29.911282229251579 ], [ -95.327428998778259, 29.911296229690848 ], [ -95.327056998962377, 29.911289229688666 ], [ -95.326795999103865, 29.911270229009396 ], [ -95.326442998820596, 29.911213229537161 ], [ -95.326041998564691, 29.911134229336092 ], [ -95.324380998416331, 29.910806229750673 ], [ -95.324135998737063, 29.910771229591251 ], [ -95.323811997780851, 29.910752229517382 ], [ -95.323623997889968, 29.91074122938079 ], [ -95.323633998506153, 29.910558229337116 ], [ -95.32361999765908, 29.909671229170655 ], [ -95.323604998169117, 29.909276228770374 ], [ -95.323609998110683, 29.90891822920916 ], [ -95.323586998066517, 29.908183228925047 ], [ -95.32357199808385, 29.907925228787754 ], [ -95.323573998242196, 29.907441228970267 ], [ -95.323559998029495, 29.907145228940738 ], [ -95.323555997937007, 29.906701228375962 ], [ -95.32354499781917, 29.906427228311383 ], [ -95.323541998143497, 29.9059372286419 ], [ -95.323471997982651, 29.902817227955591 ], [ -95.323374998095346, 29.902810227676788 ], [ -95.322943997988915, 29.902821227613348 ], [ -95.322405997610375, 29.902834227542378 ], [ -95.321766996966232, 29.902846227798989 ], [ -95.320205997076314, 29.902860227555337 ], [ -95.319681997215639, 29.902879227570324 ], [ -95.318783996331561, 29.902885228237501 ], [ -95.318144996644818, 29.902899227796254 ], [ -95.317166996138539, 29.902905227735737 ], [ -95.316533995797855, 29.902913228281776 ], [ -95.316393995831618, 29.902912228501833 ], [ -95.316260995461846, 29.902903228365187 ], [ -95.316130996186303, 29.902913228026179 ], [ -95.315687996002211, 29.902925228315148 ], [ -95.314484995668494, 29.902932228488758 ], [ -95.313547994914828, 29.902951228566931 ], [ -95.313278994953691, 29.902946228406456 ], [ -95.312990995566722, 29.902926228204208 ], [ -95.312358994835776, 29.902862228317762 ], [ -95.312023994910234, 29.902824228292886 ], [ -95.311750995217096, 29.902760228595223 ], [ -95.311723994342145, 29.902815228181893 ], [ -95.311675994353081, 29.902950228489409 ], [ -95.311237994662136, 29.904459228128758 ], [ -95.310810994422454, 29.906268228599274 ], [ -95.310318994590119, 29.908351229046769 ], [ -95.309797994325507, 29.910604229589243 ], [ -95.309748994437001, 29.910803230294032 ], [ -95.309695994201107, 29.911008230033808 ], [ -95.309513994308929, 29.911712230517697 ], [ -95.309477994763014, 29.911851229988226 ], [ -95.309400994600566, 29.912185230114609 ], [ -95.308684994685137, 29.915373231071822 ], [ -95.308527994679366, 29.915870230941984 ], [ -95.308405994402236, 29.916148231164915 ], [ -95.308308994209483, 29.916391231351067 ], [ -95.308089994695138, 29.916852231223103 ], [ -95.307832994517668, 29.917358231578064 ], [ -95.307214994471778, 29.918310231323012 ], [ -95.307128993816647, 29.918437231960535 ], [ -95.307432994334988, 29.918439231987541 ], [ -95.309470994441668, 29.918454231167221 ], [ -95.310043994837372, 29.91850323164142 ], [ -95.310609995750241, 29.918639231095117 ], [ -95.311727995754424, 29.919092231814297 ], [ -95.312213995579981, 29.919162231908263 ], [ -95.314676996809865, 29.919137231693664 ], [ -95.315164996071033, 29.919132231693279 ], [ -95.316130996474726, 29.919311231042279 ], [ -95.317095997069458, 29.919491231223546 ], [ -95.317138997047735, 29.919505231325761 ], [ -95.317460997279014, 29.919552231287085 ], [ -95.325559999118923, 29.919257231529148 ], [ -95.325893999109965, 29.919263230701223 ], [ -95.326712999074957, 29.919279231289231 ], [ -95.327320999793926, 29.91936523084869 ], [ -95.327808999959458, 29.919558230665888 ], [ -95.329313000385469, 29.920450231205049 ], [ -95.329722999829016, 29.920617231139222 ], [ -95.33045200025397, 29.920737230832984 ], [ -95.330978000915238, 29.920721231546011 ], [ -95.330977000300194, 29.920662230750349 ], [ -95.330977000840292, 29.920604231262285 ], [ -95.330977000961155, 29.920583231538668 ], [ -95.330924000601996, 29.919537230828727 ], [ -95.330977999943741, 29.917757230446473 ], [ -95.331313000680964, 29.916878230404379 ], [ -95.331459000159342, 29.916199229827235 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 62, "Tract": "48201330303", "Area_SqMi": 2.053809898769686, "total_2009": 332, "total_2010": 395, "total_2011": 452, "total_2012": 404, "total_2013": 442, "total_2014": 686, "total_2015": 950, "total_2016": 961, "total_2017": 1232, "total_2018": 1035, "total_2019": 958, "total_2020": 1065, "age1": 291, "age2": 562, "age3": 270, "earn1": 221, "earn2": 343, "earn3": 559, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 87, "naics_s05": 84, "naics_s06": 176, "naics_s07": 300, "naics_s08": 7, "naics_s09": 20, "naics_s10": 10, "naics_s11": 12, "naics_s12": 0, "naics_s13": 21, "naics_s14": 256, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 120, "naics_s19": 20, "naics_s20": 0, "race1": 791, "race2": 223, "race3": 7, "race4": 92, "race5": 3, "race6": 7, "ethnicity1": 699, "ethnicity2": 424, "edu1": 200, "edu2": 195, "edu3": 259, "edu4": 178, "Shape_Length": 34149.653001613842, "Shape_Area": 57256704.846926369, "total_2021": 1004, "total_2022": 1123 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.520928036439557, 29.625538164723807 ], [ -95.521056036286723, 29.625484164383344 ], [ -95.520792036144371, 29.625360163986283 ], [ -95.520595036055511, 29.625269164361292 ], [ -95.5203970362533, 29.625179164767708 ], [ -95.519505035489317, 29.624766164011241 ], [ -95.518548035395753, 29.624325164217652 ], [ -95.515801034627628, 29.623052164007962 ], [ -95.515480034348982, 29.622903164089045 ], [ -95.515227034363704, 29.62278516433647 ], [ -95.514159034491925, 29.622292164286609 ], [ -95.513188033515732, 29.621842163899132 ], [ -95.510343033428953, 29.620524164131499 ], [ -95.509981032738168, 29.620358163641065 ], [ -95.508738032402718, 29.619782163970449 ], [ -95.508634032987146, 29.61973416365873 ], [ -95.503343031052538, 29.617310163417766 ], [ -95.502093030751823, 29.616734163177959 ], [ -95.500684030030484, 29.616092163415743 ], [ -95.500054030634772, 29.615802163460312 ], [ -95.499938030722888, 29.615749162793751 ], [ -95.49928703013704, 29.615437163205787 ], [ -95.496504029391346, 29.61409816241375 ], [ -95.49627702920499, 29.613989163164948 ], [ -95.495899029582006, 29.613806162734438 ], [ -95.495812028911672, 29.613764163121953 ], [ -95.495740029399627, 29.61373016314182 ], [ -95.495045028925531, 29.613395163137703 ], [ -95.49494102833215, 29.61354216303365 ], [ -95.494728029309456, 29.613860162769164 ], [ -95.49464102892199, 29.613991162939964 ], [ -95.494609029224549, 29.614039162722303 ], [ -95.494402029244327, 29.614310162676375 ], [ -95.494197028382047, 29.614589162721128 ], [ -95.493612028352103, 29.615336162930856 ], [ -95.493156028165544, 29.615768163246642 ], [ -95.492780028561967, 29.616264163316227 ], [ -95.492583028813442, 29.61652516382339 ], [ -95.49251902789193, 29.616604163288784 ], [ -95.492352027929542, 29.616815163779371 ], [ -95.492248028304417, 29.616953163856671 ], [ -95.491792027894078, 29.617565164048269 ], [ -95.490925028113665, 29.618982163992079 ], [ -95.490514027603595, 29.619551164262344 ], [ -95.490043027696771, 29.620428164082387 ], [ -95.48955602831866, 29.621403164347022 ], [ -95.489166027977802, 29.622280164784623 ], [ -95.488857028025535, 29.622848165100372 ], [ -95.488386027816603, 29.623384165419726 ], [ -95.487980027953242, 29.623725165554479 ], [ -95.487655026985223, 29.623969165598336 ], [ -95.487113027763471, 29.624295165618932 ], [ -95.486741027365611, 29.624469165129128 ], [ -95.486259027017837, 29.624692165317615 ], [ -95.484746026767922, 29.625392165393901 ], [ -95.484050027099329, 29.62574716541377 ], [ -95.483562026017566, 29.626096165723066 ], [ -95.483312026481002, 29.626282165578992 ], [ -95.482897026393644, 29.626728165745639 ], [ -95.48278302604092, 29.62687616558695 ], [ -95.482630026773435, 29.627074165561456 ], [ -95.482393026534595, 29.627493166228547 ], [ -95.482263026714477, 29.6278101665132 ], [ -95.482199025805443, 29.627998165981673 ], [ -95.482157026270272, 29.628126166437124 ], [ -95.482076026599216, 29.628417165982501 ], [ -95.48206002657642, 29.628549166298896 ], [ -95.482052025835017, 29.628647166573142 ], [ -95.482036026422293, 29.628825166105244 ], [ -95.482012026272585, 29.629280166425669 ], [ -95.482028026586548, 29.629767166318725 ], [ -95.482028026502761, 29.630587166765679 ], [ -95.482030025812492, 29.630895167175002 ], [ -95.482036026625465, 29.631416166661143 ], [ -95.482068026426518, 29.63197616698119 ], [ -95.482062026166844, 29.632501167414752 ], [ -95.482227026367809, 29.633043167509229 ], [ -95.482378026839172, 29.633975166970853 ], [ -95.482426026435888, 29.635257167806916 ], [ -95.482460026826885, 29.637395167799493 ], [ -95.482423026205524, 29.638245168331583 ], [ -95.482426026965257, 29.639225168067959 ], [ -95.482372026694222, 29.639869168490485 ], [ -95.482364027104893, 29.6399711682846 ], [ -95.48235002689151, 29.64014316845563 ], [ -95.482348026334762, 29.640273168722587 ], [ -95.482749027333099, 29.640125168491213 ], [ -95.485507027161887, 29.639107168634862 ], [ -95.486230027458419, 29.638814168086913 ], [ -95.48726302796932, 29.638396168006047 ], [ -95.48870302796314, 29.637847167990937 ], [ -95.489752029059431, 29.637436167424113 ], [ -95.492561029075631, 29.636346167536303 ], [ -95.492832029363512, 29.636256167945469 ], [ -95.493173029320772, 29.636106167586355 ], [ -95.493392029191853, 29.636022167340077 ], [ -95.495101029505619, 29.635368166797186 ], [ -95.496142030096891, 29.634976167014521 ], [ -95.496795030193951, 29.634776167122276 ], [ -95.497264030858503, 29.634616166645323 ], [ -95.498567030906585, 29.634137167047591 ], [ -95.499184030898149, 29.633907166942588 ], [ -95.499784031441095, 29.633646166912385 ], [ -95.500431031349848, 29.633399166914035 ], [ -95.500592031359005, 29.633338166573754 ], [ -95.501954031135838, 29.632836166476448 ], [ -95.502890031640803, 29.63246416664294 ], [ -95.503553031892864, 29.632187166423801 ], [ -95.504093031875726, 29.631977166448809 ], [ -95.504623031681547, 29.631771166436263 ], [ -95.505975032934117, 29.631245165683051 ], [ -95.506938033037144, 29.630872165946524 ], [ -95.507315032532617, 29.630719166007246 ], [ -95.507549033292463, 29.63062416554569 ], [ -95.507761033340614, 29.630543165885079 ], [ -95.510204033559774, 29.629610165748975 ], [ -95.511405033671124, 29.629202165837004 ], [ -95.511455033696592, 29.629185165052263 ], [ -95.512050033416031, 29.628948165098251 ], [ -95.512565034210724, 29.628753165690398 ], [ -95.514348034533313, 29.628082165279675 ], [ -95.515841034683802, 29.627543164857393 ], [ -95.516138034766556, 29.627442165156058 ], [ -95.517537034889557, 29.626913164761863 ], [ -95.517804035591894, 29.626813164404712 ], [ -95.51816103583019, 29.626646164488513 ], [ -95.518328035167016, 29.626591164872572 ], [ -95.518709035934776, 29.62641716498009 ], [ -95.519000035959166, 29.626290164241912 ], [ -95.519157035252576, 29.626229164352683 ], [ -95.519408036026618, 29.626124164569017 ], [ -95.520928036439557, 29.625538164723807 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 63, "Tract": "48201334003", "Area_SqMi": 1.0701644456822685, "total_2009": 437, "total_2010": 291, "total_2011": 284, "total_2012": 367, "total_2013": 506, "total_2014": 402, "total_2015": 394, "total_2016": 400, "total_2017": 416, "total_2018": 339, "total_2019": 372, "total_2020": 337, "age1": 106, "age2": 165, "age3": 88, "earn1": 126, "earn2": 157, "earn3": 76, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 0, "naics_s06": 0, "naics_s07": 96, "naics_s08": 0, "naics_s09": 0, "naics_s10": 22, "naics_s11": 18, "naics_s12": 22, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 45, "naics_s17": 0, "naics_s18": 108, "naics_s19": 23, "naics_s20": 0, "race1": 231, "race2": 35, "race3": 4, "race4": 84, "race5": 0, "race6": 5, "ethnicity1": 218, "ethnicity2": 141, "edu1": 67, "edu2": 63, "edu3": 76, "edu4": 47, "Shape_Length": 24996.348729495614, "Shape_Area": 29834353.140867531, "total_2021": 362, "total_2022": 359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.247688964806002, 29.600743168689981 ], [ -95.24781296541839, 29.600617168598024 ], [ -95.247521964621626, 29.600638168194049 ], [ -95.247337964653795, 29.600638168671598 ], [ -95.244671964091083, 29.60063916830331 ], [ -95.244401964386043, 29.600640168329292 ], [ -95.242846963297865, 29.600601168517009 ], [ -95.241438963436138, 29.600641168944346 ], [ -95.237675962569682, 29.60064516918349 ], [ -95.237007961927816, 29.600664168424142 ], [ -95.23578696189648, 29.600700168732228 ], [ -95.232959961339091, 29.60072216889489 ], [ -95.232702961202875, 29.600732168627918 ], [ -95.232279961431715, 29.600751169202852 ], [ -95.228913959976836, 29.600792169397341 ], [ -95.228701960092536, 29.600785169398787 ], [ -95.228540960228145, 29.600785169540856 ], [ -95.228376959595167, 29.60080416876756 ], [ -95.226404959327326, 29.600833168878516 ], [ -95.222681958979479, 29.600894169065526 ], [ -95.219328958161242, 29.600932169307864 ], [ -95.218718957931941, 29.600939169113968 ], [ -95.217522957018531, 29.600952169800415 ], [ -95.216297956682979, 29.601040169837276 ], [ -95.215996956809136, 29.601048169982093 ], [ -95.216022957202924, 29.601261169607902 ], [ -95.216037956343555, 29.601392169921223 ], [ -95.216049956944673, 29.601490169676033 ], [ -95.216356956862882, 29.60381117045311 ], [ -95.216481957564767, 29.604535170018931 ], [ -95.216756957673297, 29.605254170761636 ], [ -95.217353957803596, 29.606223170570761 ], [ -95.2180479571619, 29.607008170437901 ], [ -95.218520957408757, 29.607424170490784 ], [ -95.218829957388024, 29.607696170710746 ], [ -95.219490957572049, 29.608249170935018 ], [ -95.219694958384764, 29.608405170914683 ], [ -95.220025957851618, 29.608686170777762 ], [ -95.220145958685265, 29.608781171056343 ], [ -95.220311958337064, 29.608916171143736 ], [ -95.220804958234012, 29.609318170791017 ], [ -95.221096958602004, 29.609571170874453 ], [ -95.22143195817165, 29.609856170751247 ], [ -95.221994959067402, 29.610462171708296 ], [ -95.222201958610057, 29.610754171081801 ], [ -95.222484959264477, 29.611153171592942 ], [ -95.222663959174611, 29.611409171920432 ], [ -95.223030959256477, 29.612186171463311 ], [ -95.22439395910429, 29.611741171590374 ], [ -95.225131959557416, 29.611585171520588 ], [ -95.22574796027331, 29.611491171563454 ], [ -95.226480959824769, 29.611438171520813 ], [ -95.227349960085022, 29.61141717147348 ], [ -95.227637960207218, 29.611412170919884 ], [ -95.227833960608294, 29.611429170942873 ], [ -95.227961960730866, 29.611440171363888 ], [ -95.22821796034107, 29.611402171487825 ], [ -95.229186960966615, 29.611388170957614 ], [ -95.229540960643575, 29.611373170821413 ], [ -95.230390961294788, 29.611351171475466 ], [ -95.231665961548131, 29.611319171591052 ], [ -95.232675961050489, 29.611302171483924 ], [ -95.23321996219272, 29.611294170826216 ], [ -95.233727961576236, 29.611287171212297 ], [ -95.23449996217704, 29.611278171067791 ], [ -95.234934962291049, 29.611273171018677 ], [ -95.235816962857214, 29.611261170741763 ], [ -95.238084963110268, 29.611225171044964 ], [ -95.238852962985646, 29.610488170367439 ], [ -95.239463963054007, 29.609936170447277 ], [ -95.239884963731782, 29.609555170712685 ], [ -95.240100963353726, 29.609359170647075 ], [ -95.240393963858281, 29.609093170486673 ], [ -95.240654963495246, 29.608847170595073 ], [ -95.241246963182945, 29.60830217040532 ], [ -95.241302963428041, 29.608060170057772 ], [ -95.241195963224229, 29.607854169876909 ], [ -95.240732963249258, 29.607456170364134 ], [ -95.240610963024622, 29.607192169998235 ], [ -95.240670963035512, 29.607129169709779 ], [ -95.240885962983924, 29.606901170053778 ], [ -95.241206963352994, 29.606636169806375 ], [ -95.243717963795092, 29.604345168991763 ], [ -95.244628964127671, 29.603516169415972 ], [ -95.245737964289702, 29.602471168989592 ], [ -95.246024964608537, 29.602231168824041 ], [ -95.246275964864424, 29.60200916860293 ], [ -95.246296964178384, 29.601990168511517 ], [ -95.246384964713982, 29.601913169174644 ], [ -95.246832964645364, 29.601516168500169 ], [ -95.247278965163474, 29.601139168128132 ], [ -95.247434964863174, 29.601001168651461 ], [ -95.247609965302843, 29.600824168568742 ], [ -95.247688964806002, 29.600743168689981 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 64, "Tract": "48201343301", "Area_SqMi": 4.4592136145404799, "total_2009": 4669, "total_2010": 4919, "total_2011": 2513, "total_2012": 2710, "total_2013": 2752, "total_2014": 2314, "total_2015": 2751, "total_2016": 3088, "total_2017": 3143, "total_2018": 3859, "total_2019": 4108, "total_2020": 4064, "age1": 779, "age2": 2570, "age3": 829, "earn1": 200, "earn2": 426, "earn3": 3552, "naics_s01": 0, "naics_s02": 731, "naics_s03": 0, "naics_s04": 729, "naics_s05": 237, "naics_s06": 567, "naics_s07": 18, "naics_s08": 194, "naics_s09": 0, "naics_s10": 49, "naics_s11": 29, "naics_s12": 1103, "naics_s13": 10, "naics_s14": 484, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 2, "naics_s19": 18, "naics_s20": 0, "race1": 3556, "race2": 358, "race3": 41, "race4": 161, "race5": 8, "race6": 54, "ethnicity1": 2533, "ethnicity2": 1645, "edu1": 743, "edu2": 961, "edu3": 1023, "edu4": 672, "Shape_Length": 55630.887962422501, "Shape_Area": 124315243.55301176, "total_2021": 3354, "total_2022": 4178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.088440928904632, 29.703181194440081 ], [ -95.088432928924249, 29.702967194833118 ], [ -95.088420928836868, 29.702665194685313 ], [ -95.088409928324339, 29.70238519485698 ], [ -95.088332928414658, 29.700380194267172 ], [ -95.088293928473732, 29.698338193811207 ], [ -95.088237928488738, 29.695336193483627 ], [ -95.088234928468736, 29.695158193183136 ], [ -95.088130928413165, 29.690159192626563 ], [ -95.088088927428615, 29.688693192227674 ], [ -95.088077928297764, 29.688488192136084 ], [ -95.087895927218455, 29.68499719097036 ], [ -95.087820927516304, 29.679822190000365 ], [ -95.08771892711836, 29.67460218933736 ], [ -95.08582092692356, 29.674648188879505 ], [ -95.085029926917798, 29.674663189044406 ], [ -95.084205926612242, 29.674678188848446 ], [ -95.080516925395997, 29.67474718952565 ], [ -95.079229924927731, 29.674772189690927 ], [ -95.075193923883717, 29.674849189694115 ], [ -95.072450923212003, 29.674898189881031 ], [ -95.061077920370366, 29.675139189628563 ], [ -95.059634919873602, 29.675168190192611 ], [ -95.059604920286787, 29.675169190359306 ], [ -95.053617918600025, 29.675237190086289 ], [ -95.046567917023893, 29.675373190526763 ], [ -95.046475916019219, 29.670180189900506 ], [ -95.046468916453833, 29.668881188838121 ], [ -95.046391916332553, 29.665007188209586 ], [ -95.046306916419013, 29.665010188165464 ], [ -95.045349916077839, 29.665045188282654 ], [ -95.045327915750605, 29.66504618858049 ], [ -95.044316915135397, 29.665064188301887 ], [ -95.043298914795685, 29.665082188357403 ], [ -95.042138915303894, 29.665089188856623 ], [ -95.042017915068712, 29.665090188188522 ], [ -95.041783914693966, 29.665095188277395 ], [ -95.039840914441768, 29.66513218826724 ], [ -95.039491914291006, 29.665139188788732 ], [ -95.039180913878553, 29.665145188578446 ], [ -95.039204913779415, 29.665323188733904 ], [ -95.039296914132521, 29.671624189632421 ], [ -95.039301915047417, 29.671903189911255 ], [ -95.039325914239868, 29.672974190373495 ], [ -95.039326914276202, 29.672996190683527 ], [ -95.039369915002723, 29.678057191457629 ], [ -95.039369915022817, 29.678093191185752 ], [ -95.039432914526387, 29.68064019156936 ], [ -95.039434914561923, 29.680730191764887 ], [ -95.039441915487302, 29.681148192020519 ], [ -95.039602915556145, 29.683757192551816 ], [ -95.039626915599484, 29.684403192751489 ], [ -95.039456915437256, 29.684816192335102 ], [ -95.039326915070902, 29.68506419263943 ], [ -95.03915591469169, 29.6853981926585 ], [ -95.038993915571027, 29.685675192608482 ], [ -95.038872914991799, 29.685848193204968 ], [ -95.038384915085231, 29.686258193414076 ], [ -95.038120914379732, 29.686451193213578 ], [ -95.037592914276033, 29.686697192850474 ], [ -95.037153914818035, 29.686745193648196 ], [ -95.03662991500849, 29.686749192861591 ], [ -95.037225914397865, 29.686941193157999 ], [ -95.039453915567506, 29.687615193177706 ], [ -95.042181915847209, 29.688431193677399 ], [ -95.043392916825411, 29.688800193691648 ], [ -95.04501691672165, 29.689305193201424 ], [ -95.046944917278267, 29.689886193798351 ], [ -95.04695591741212, 29.690160193415267 ], [ -95.046975916912629, 29.690579193493722 ], [ -95.046975917479912, 29.690738193774596 ], [ -95.048993918213682, 29.691279193928281 ], [ -95.051682918463783, 29.692084193649247 ], [ -95.053828919424291, 29.692714193825232 ], [ -95.055882919583425, 29.693363193576733 ], [ -95.057161919657489, 29.693767194332338 ], [ -95.05830592047829, 29.694114193890162 ], [ -95.059907921060017, 29.694564194280947 ], [ -95.061893921319637, 29.69514319369928 ], [ -95.064703922413187, 29.696089194256341 ], [ -95.067154922663775, 29.696827194315073 ], [ -95.068186922863546, 29.697161194201779 ], [ -95.070434923606811, 29.697827194663514 ], [ -95.076113925621073, 29.699453194191427 ], [ -95.076799925385231, 29.699661194697388 ], [ -95.082253927021128, 29.701310194474189 ], [ -95.084641927619757, 29.702032194647732 ], [ -95.088440928904632, 29.703181194440081 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 65, "Tract": "48201341501", "Area_SqMi": 1.6437775669906469, "total_2009": 294, "total_2010": 258, "total_2011": 268, "total_2012": 325, "total_2013": 348, "total_2014": 382, "total_2015": 358, "total_2016": 360, "total_2017": 409, "total_2018": 546, "total_2019": 496, "total_2020": 281, "age1": 56, "age2": 149, "age3": 87, "earn1": 70, "earn2": 96, "earn3": 126, "naics_s01": 0, "naics_s02": 0, "naics_s03": 14, "naics_s04": 20, "naics_s05": 2, "naics_s06": 0, "naics_s07": 22, "naics_s08": 11, "naics_s09": 1, "naics_s10": 8, "naics_s11": 49, "naics_s12": 36, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 65, "naics_s19": 23, "naics_s20": 28, "race1": 248, "race2": 18, "race3": 1, "race4": 24, "race5": 0, "race6": 1, "ethnicity1": 213, "ethnicity2": 79, "edu1": 47, "edu2": 57, "edu3": 79, "edu4": 53, "Shape_Length": 32112.355714118381, "Shape_Area": 45825705.214276262, "total_2021": 465, "total_2022": 292 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.054124913568657, 29.565503168070194 ], [ -95.054226914066049, 29.565432168003166 ], [ -95.053923913427113, 29.565230167415645 ], [ -95.053396914027104, 29.564878167143682 ], [ -95.052851912918001, 29.564578167560988 ], [ -95.052402913129342, 29.564387167813692 ], [ -95.051645912569171, 29.564236167416407 ], [ -95.05080891317121, 29.564118167851984 ], [ -95.050071912947004, 29.564120167253698 ], [ -95.048611912693048, 29.564190167992503 ], [ -95.04673391214979, 29.564280167600018 ], [ -95.044910910991007, 29.564368167306483 ], [ -95.044659910897053, 29.564370167605741 ], [ -95.044409911684895, 29.56433616750294 ], [ -95.044165911456901, 29.564281167589979 ], [ -95.043928911520211, 29.564204167431097 ], [ -95.043700911232449, 29.56410716811747 ], [ -95.043575910856191, 29.564039167535828 ], [ -95.043482910473173, 29.563996167636297 ], [ -95.043275910431703, 29.563874167651399 ], [ -95.043081910326407, 29.563733167236059 ], [ -95.042905910317302, 29.563577167526997 ], [ -95.042748911083024, 29.563406167511978 ], [ -95.042361910135014, 29.562909167040804 ], [ -95.0412689107132, 29.56566816832326 ], [ -95.039712910167125, 29.568040168789718 ], [ -95.038725910398583, 29.569529168928291 ], [ -95.038385910009438, 29.570044168752037 ], [ -95.037873909405093, 29.570818169523559 ], [ -95.035896908928109, 29.5738081699261 ], [ -95.035487909241851, 29.574359170218568 ], [ -95.035184909451672, 29.574713169959036 ], [ -95.034955909433179, 29.574964170508235 ], [ -95.034430908926936, 29.57540117070554 ], [ -95.034162909237907, 29.575639170715498 ], [ -95.034077909036213, 29.575702170306641 ], [ -95.033617908566796, 29.576101170763899 ], [ -95.033177909223639, 29.576598170690836 ], [ -95.032925908349725, 29.576964170478707 ], [ -95.032687908637058, 29.577343170982701 ], [ -95.031823908196941, 29.576970170669483 ], [ -95.031048908178306, 29.576599170255388 ], [ -95.030390907617601, 29.57632317038038 ], [ -95.029888908034891, 29.576142170564697 ], [ -95.029017907640636, 29.576004170219349 ], [ -95.028200908011797, 29.575960170658707 ], [ -95.027832907669733, 29.575970170704458 ], [ -95.028353907263622, 29.579275170887144 ], [ -95.028357907870813, 29.579298170990324 ], [ -95.028463908171432, 29.579971171570726 ], [ -95.028569907687, 29.58064117191881 ], [ -95.028593907944, 29.580790171965269 ], [ -95.028662908115621, 29.581230172058589 ], [ -95.028995907830122, 29.582961172445803 ], [ -95.02903990800796, 29.583186171843447 ], [ -95.029072908218382, 29.583674172029852 ], [ -95.029097908080217, 29.583872172587974 ], [ -95.029103907805123, 29.583922172213509 ], [ -95.029248908408846, 29.584075172369904 ], [ -95.029252908372641, 29.584196172297492 ], [ -95.029275907991078, 29.584513172735065 ], [ -95.029293908277111, 29.584747172782802 ], [ -95.029285907720336, 29.585221172856073 ], [ -95.029228908581615, 29.586046172722554 ], [ -95.029164908197288, 29.586424172933473 ], [ -95.029118907764271, 29.586829172820558 ], [ -95.029077908596093, 29.587171172670921 ], [ -95.028930908385647, 29.588140173076908 ], [ -95.028903908513342, 29.588320173532345 ], [ -95.029012908549134, 29.588347172890163 ], [ -95.029302908089988, 29.588423172862864 ], [ -95.030280908273951, 29.588679173094626 ], [ -95.032895909295519, 29.589363173567179 ], [ -95.035195909664509, 29.589937173653428 ], [ -95.036566910504462, 29.590319173387087 ], [ -95.037608910651471, 29.5906111731666 ], [ -95.039947910891087, 29.591086173743026 ], [ -95.041029911750329, 29.591307173442321 ], [ -95.041134911728761, 29.591313173680039 ], [ -95.041299911359772, 29.591322173752719 ], [ -95.041498911708359, 29.591328173274107 ], [ -95.041482911069522, 29.59079817326376 ], [ -95.041298911328312, 29.590693172861609 ], [ -95.041344912036109, 29.590606173024035 ], [ -95.041352911359212, 29.590503173275305 ], [ -95.041463911172002, 29.590315172930044 ], [ -95.041382911296424, 29.590232173038974 ], [ -95.042200912190339, 29.589967173274545 ], [ -95.04254391183882, 29.589872173355598 ], [ -95.042558911680814, 29.589512172861138 ], [ -95.042156911154478, 29.58716017235384 ], [ -95.042181911866663, 29.586837172246728 ], [ -95.042317912033255, 29.58638317221239 ], [ -95.04291091153766, 29.585937172638026 ], [ -95.043519911562825, 29.585634172448504 ], [ -95.044007911590356, 29.585439171805419 ], [ -95.044497911779203, 29.585377172245369 ], [ -95.044847911685238, 29.585268172103913 ], [ -95.045231912744114, 29.585081171642098 ], [ -95.045928912355322, 29.584741171878534 ], [ -95.046674912782905, 29.584431172114869 ], [ -95.0470309122137, 29.58398917176914 ], [ -95.047178912856239, 29.583386171944714 ], [ -95.047221912935299, 29.583213171321596 ], [ -95.047742913059636, 29.582231171501508 ], [ -95.04767691264199, 29.581804171478634 ], [ -95.047500912658734, 29.581135171158124 ], [ -95.047540912669433, 29.581056171211333 ], [ -95.047548912778652, 29.580983170748667 ], [ -95.047548912629964, 29.58009517109652 ], [ -95.047513912651254, 29.579714171202674 ], [ -95.047510912532317, 29.57967817052176 ], [ -95.047472912397041, 29.579255170857149 ], [ -95.047442912497914, 29.578928170865218 ], [ -95.047386912513602, 29.578258170592282 ], [ -95.047350912822353, 29.577833170587166 ], [ -95.047396912412324, 29.577383169942493 ], [ -95.047654912802315, 29.576597170076958 ], [ -95.047882913072669, 29.576114170088768 ], [ -95.048005912795688, 29.575854169615091 ], [ -95.048356912616512, 29.574946169999663 ], [ -95.048479912914814, 29.574713169734693 ], [ -95.048707912932926, 29.574281169638681 ], [ -95.049523912523995, 29.573245169614271 ], [ -95.050183912549613, 29.572621169471415 ], [ -95.050902913303673, 29.572164169448701 ], [ -95.051254913560683, 29.57192716936666 ], [ -95.05268791373291, 29.570819169108464 ], [ -95.053046913517036, 29.570513168727608 ], [ -95.053384913554339, 29.570195168946022 ], [ -95.053499913500389, 29.57008716850202 ], [ -95.053572913518565, 29.569992168237704 ], [ -95.053805913634378, 29.569688168573403 ], [ -95.053925913774847, 29.56947516842218 ], [ -95.053991914102369, 29.569249168062811 ], [ -95.054071913499399, 29.568504168364555 ], [ -95.054111913906269, 29.567918168358034 ], [ -95.054124913557757, 29.567530168455423 ], [ -95.054124913633331, 29.567292167958868 ], [ -95.054088914130517, 29.567173168054413 ], [ -95.054085913474125, 29.567043168144654 ], [ -95.054075913843903, 29.56694016816822 ], [ -95.054052913966657, 29.566821168136286 ], [ -95.054025913928101, 29.566701168035245 ], [ -95.053978914002954, 29.566514167679891 ], [ -95.053865913255734, 29.56622516805675 ], [ -95.053822913960246, 29.566129167679463 ], [ -95.053799914156002, 29.56605216804725 ], [ -95.053827913788439, 29.565940168180518 ], [ -95.053845913404729, 29.565868167419953 ], [ -95.053871913831358, 29.565789167797714 ], [ -95.053991913545829, 29.565622167365923 ], [ -95.054124913568657, 29.565503168070194 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 66, "Tract": "48201341502", "Area_SqMi": 1.8588985586831868, "total_2009": 1388, "total_2010": 1213, "total_2011": 1323, "total_2012": 1112, "total_2013": 1203, "total_2014": 1155, "total_2015": 1363, "total_2016": 1439, "total_2017": 1537, "total_2018": 1489, "total_2019": 1290, "total_2020": 1335, "age1": 447, "age2": 842, "age3": 363, "earn1": 252, "earn2": 462, "earn3": 938, "naics_s01": 0, "naics_s02": 52, "naics_s03": 0, "naics_s04": 81, "naics_s05": 276, "naics_s06": 28, "naics_s07": 236, "naics_s08": 10, "naics_s09": 0, "naics_s10": 35, "naics_s11": 37, "naics_s12": 240, "naics_s13": 7, "naics_s14": 21, "naics_s15": 0, "naics_s16": 62, "naics_s17": 106, "naics_s18": 395, "naics_s19": 66, "naics_s20": 0, "race1": 1380, "race2": 170, "race3": 19, "race4": 59, "race5": 0, "race6": 24, "ethnicity1": 1213, "ethnicity2": 439, "edu1": 220, "edu2": 366, "edu3": 378, "edu4": 241, "Shape_Length": 38027.208660113603, "Shape_Area": 51822910.279407315, "total_2021": 1535, "total_2022": 1652 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.056887913962655, 29.560086166301275 ], [ -95.057219914136212, 29.559119166184249 ], [ -95.05624591352391, 29.559099166042682 ], [ -95.05598091406938, 29.559087166551606 ], [ -95.055896914118975, 29.559083165918665 ], [ -95.053796913556567, 29.558987166504028 ], [ -95.051668912508276, 29.558747166016488 ], [ -95.051380912802102, 29.558711166339688 ], [ -95.050219912830471, 29.558564166348724 ], [ -95.050132912154609, 29.558554166471662 ], [ -95.049889912567053, 29.558482165971263 ], [ -95.048886912014879, 29.558186166385521 ], [ -95.048180911462808, 29.557978166026125 ], [ -95.046772911163728, 29.55737016589368 ], [ -95.046125910884086, 29.556788166027658 ], [ -95.04587791119836, 29.556565166007715 ], [ -95.045188910951353, 29.555946165844752 ], [ -95.044994911250072, 29.555853165540729 ], [ -95.044877911008811, 29.555796165519627 ], [ -95.044802910386778, 29.555759165994019 ], [ -95.04472591076977, 29.555722165974878 ], [ -95.043764910874842, 29.555258165456319 ], [ -95.043365910154904, 29.555118166113129 ], [ -95.043328910437324, 29.555105166105651 ], [ -95.041892909631727, 29.554602166121043 ], [ -95.039940909391419, 29.554266165982224 ], [ -95.039001909419326, 29.554111165815726 ], [ -95.038292909206277, 29.553994165462058 ], [ -95.037323908510047, 29.553667165611706 ], [ -95.035456908745047, 29.553075165414462 ], [ -95.03401990778778, 29.552618165733008 ], [ -95.033295907833732, 29.552358165200825 ], [ -95.033009908085319, 29.552256165644351 ], [ -95.032947907840196, 29.552234165757746 ], [ -95.031839907061695, 29.552139165619494 ], [ -95.031309907056254, 29.552115165604704 ], [ -95.030356906633912, 29.552293165614632 ], [ -95.029566906834944, 29.552198165766885 ], [ -95.029110906311132, 29.551808166016404 ], [ -95.028830907087524, 29.551348165432561 ], [ -95.028755906985864, 29.550834165471294 ], [ -95.028699906460403, 29.550447164932422 ], [ -95.028776906960687, 29.549040165173643 ], [ -95.028805906760454, 29.548517165403403 ], [ -95.028814906619047, 29.548339165020671 ], [ -95.028737906518174, 29.547768164766953 ], [ -95.028725906029962, 29.547656164503096 ], [ -95.028501906468094, 29.547454164933701 ], [ -95.028348906766666, 29.547497165137599 ], [ -95.027742905758657, 29.547634164832122 ], [ -95.027285906199552, 29.547896164506035 ], [ -95.026682905534969, 29.548304165422891 ], [ -95.026054905564834, 29.548705165191393 ], [ -95.025074905590373, 29.549247165123472 ], [ -95.023799905404431, 29.549375165231282 ], [ -95.023286905058157, 29.549425165285058 ], [ -95.02322290496528, 29.549461164915215 ], [ -95.023153904595077, 29.549451165244882 ], [ -95.023086904548762, 29.549442165755245 ], [ -95.023184904722953, 29.549878165018125 ], [ -95.023254905466743, 29.550189165585582 ], [ -95.023293904849155, 29.550369165816107 ], [ -95.023340905310064, 29.550592165140106 ], [ -95.02343990517187, 29.551109165943984 ], [ -95.023944905711346, 29.55325516617976 ], [ -95.024051905986283, 29.553707165856146 ], [ -95.024215905587212, 29.554740166833867 ], [ -95.024248905612211, 29.554949166597957 ], [ -95.024329906116733, 29.555460166157708 ], [ -95.024373905861509, 29.555736166430751 ], [ -95.024954905590008, 29.55897616701526 ], [ -95.025137905990107, 29.560167167162724 ], [ -95.025351905702891, 29.561283168157921 ], [ -95.025404906354339, 29.561557168199052 ], [ -95.025547906271839, 29.562298168302558 ], [ -95.025641906051874, 29.562781168289391 ], [ -95.025722906611975, 29.563357168055791 ], [ -95.025811906493246, 29.563914168606026 ], [ -95.025909906802227, 29.564424168732387 ], [ -95.025926906058956, 29.564512168509619 ], [ -95.026030906177738, 29.565180168298387 ], [ -95.026205906820493, 29.566396169121862 ], [ -95.026536906650193, 29.568292169300189 ], [ -95.026792906697665, 29.569878169846994 ], [ -95.027061907046431, 29.571527169601648 ], [ -95.027181907415724, 29.572259170251073 ], [ -95.027348907301004, 29.573264169939648 ], [ -95.027468906816338, 29.573980170571797 ], [ -95.027550907206802, 29.574472170219714 ], [ -95.027832907669733, 29.575970170704458 ], [ -95.028200908011797, 29.575960170658707 ], [ -95.029017907640636, 29.576004170219349 ], [ -95.029888908034891, 29.576142170564697 ], [ -95.030390907617601, 29.57632317038038 ], [ -95.031048908178306, 29.576599170255388 ], [ -95.031823908196941, 29.576970170669483 ], [ -95.032687908637058, 29.577343170982701 ], [ -95.032925908349725, 29.576964170478707 ], [ -95.033177909223639, 29.576598170690836 ], [ -95.033617908566796, 29.576101170763899 ], [ -95.034077909036213, 29.575702170306641 ], [ -95.034162909237907, 29.575639170715498 ], [ -95.034430908926936, 29.57540117070554 ], [ -95.034955909433179, 29.574964170508235 ], [ -95.035184909451672, 29.574713169959036 ], [ -95.035487909241851, 29.574359170218568 ], [ -95.035896908928109, 29.5738081699261 ], [ -95.037873909405093, 29.570818169523559 ], [ -95.038385910009438, 29.570044168752037 ], [ -95.038725910398583, 29.569529168928291 ], [ -95.039712910167125, 29.568040168789718 ], [ -95.0412689107132, 29.56566816832326 ], [ -95.042361910135014, 29.562909167040804 ], [ -95.042748911083024, 29.563406167511978 ], [ -95.042905910317302, 29.563577167526997 ], [ -95.043081910326407, 29.563733167236059 ], [ -95.043275910431703, 29.563874167651399 ], [ -95.043482910473173, 29.563996167636297 ], [ -95.043575910856191, 29.564039167535828 ], [ -95.043700911232449, 29.56410716811747 ], [ -95.043928911520211, 29.564204167431097 ], [ -95.044165911456901, 29.564281167589979 ], [ -95.044409911684895, 29.56433616750294 ], [ -95.044659910897053, 29.564370167605741 ], [ -95.044910910991007, 29.564368167306483 ], [ -95.04673391214979, 29.564280167600018 ], [ -95.048611912693048, 29.564190167992503 ], [ -95.050071912947004, 29.564120167253698 ], [ -95.05080891317121, 29.564118167851984 ], [ -95.051645912569171, 29.564236167416407 ], [ -95.052402913129342, 29.564387167813692 ], [ -95.052851912918001, 29.564578167560988 ], [ -95.053396914027104, 29.564878167143682 ], [ -95.053923913427113, 29.565230167415645 ], [ -95.054226914066049, 29.565432168003166 ], [ -95.054277913451855, 29.565396167319435 ], [ -95.054424913438581, 29.565356167745005 ], [ -95.054630913773138, 29.565332167398957 ], [ -95.054703913663616, 29.565323167168547 ], [ -95.054877913637625, 29.565317167371461 ], [ -95.055169913943203, 29.565350167691083 ], [ -95.055496914429654, 29.565357167555767 ], [ -95.055788913644022, 29.565310167629281 ], [ -95.056074914353545, 29.565210167069043 ], [ -95.056427914151527, 29.564997167043852 ], [ -95.056507914064326, 29.564911167559988 ], [ -95.056607914114963, 29.564804167613897 ], [ -95.056766914037155, 29.56460616747642 ], [ -95.056591914375204, 29.564371167748106 ], [ -95.055974914622141, 29.563908167244932 ], [ -95.055360913716498, 29.563603167200764 ], [ -95.055762914306285, 29.562791167261533 ], [ -95.056136914130747, 29.562103167253685 ], [ -95.0564739140151, 29.561294166555225 ], [ -95.056887913962655, 29.560086166301275 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 67, "Tract": "48201340302", "Area_SqMi": 1.3307606161514163, "total_2009": 133, "total_2010": 147, "total_2011": 297, "total_2012": 1278, "total_2013": 1278, "total_2014": 1187, "total_2015": 1220, "total_2016": 1093, "total_2017": 340, "total_2018": 302, "total_2019": 370, "total_2020": 483, "age1": 125, "age2": 285, "age3": 119, "earn1": 107, "earn2": 111, "earn3": 311, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 16, "naics_s07": 27, "naics_s08": 0, "naics_s09": 1, "naics_s10": 18, "naics_s11": 5, "naics_s12": 376, "naics_s13": 0, "naics_s14": 8, "naics_s15": 1, "naics_s16": 28, "naics_s17": 4, "naics_s18": 24, "naics_s19": 6, "naics_s20": 0, "race1": 417, "race2": 49, "race3": 5, "race4": 49, "race5": 0, "race6": 9, "ethnicity1": 409, "ethnicity2": 120, "edu1": 53, "edu2": 109, "edu3": 119, "edu4": 123, "Shape_Length": 27831.372007703107, "Shape_Area": 37099328.358744077, "total_2021": 506, "total_2022": 529 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.124234933960125, 29.605126173443253 ], [ -95.124166933361849, 29.605003173504016 ], [ -95.123385932719572, 29.603660173000481 ], [ -95.122466932999856, 29.60178217278245 ], [ -95.122029932590067, 29.601065173015122 ], [ -95.12166793226568, 29.600336172512581 ], [ -95.121316932767343, 29.599613172629326 ], [ -95.120688932184336, 29.598411172492153 ], [ -95.119774931431039, 29.596663171943771 ], [ -95.119066931498537, 29.595273171522603 ], [ -95.118723931303634, 29.594469171290886 ], [ -95.118473931613465, 29.59380817120698 ], [ -95.118216930884145, 29.592961171449442 ], [ -95.118026930921815, 29.592188170676291 ], [ -95.117961931517186, 29.591822171014673 ], [ -95.117877931112574, 29.591410170878056 ], [ -95.117763931106836, 29.590616170264084 ], [ -95.117718930609087, 29.58981817043308 ], [ -95.117691931260453, 29.588984170504325 ], [ -95.117717931010318, 29.588152170010403 ], [ -95.117787931381287, 29.587397169801104 ], [ -95.117893930523579, 29.586588169763477 ], [ -95.118075931101927, 29.585762169830275 ], [ -95.11827093101806, 29.584953169528013 ], [ -95.118499931115409, 29.584297169256129 ], [ -95.118524930782314, 29.584224169203171 ], [ -95.116813930714287, 29.584079169165481 ], [ -95.116039930534981, 29.584142169840266 ], [ -95.115606930490188, 29.584256169225139 ], [ -95.113814929552049, 29.585191170021801 ], [ -95.113604929882456, 29.585259169533771 ], [ -95.113276929305215, 29.585367169376486 ], [ -95.112622929423154, 29.585372169792628 ], [ -95.112578929281952, 29.585363169583559 ], [ -95.110808928707897, 29.5850271701506 ], [ -95.110482929185025, 29.585011169830377 ], [ -95.110336928903848, 29.584960169577112 ], [ -95.1099249286016, 29.584947170171993 ], [ -95.109526928744202, 29.585036170091097 ], [ -95.10889192900126, 29.585288169585183 ], [ -95.10852892905217, 29.585352169627946 ], [ -95.106562928190044, 29.585208170399991 ], [ -95.106204927727745, 29.585129169774223 ], [ -95.105910928280352, 29.585038170350142 ], [ -95.105395927301259, 29.584740170023903 ], [ -95.104488927594758, 29.584102170009036 ], [ -95.103646927715573, 29.583433169855248 ], [ -95.103566926869618, 29.583368169685951 ], [ -95.103534927262842, 29.583427169868379 ], [ -95.103482927116829, 29.583528169379299 ], [ -95.103441927595512, 29.583604170176518 ], [ -95.103348926857507, 29.583784169403394 ], [ -95.10313492667197, 29.584166169518827 ], [ -95.103056926790643, 29.584305170121258 ], [ -95.10303492695688, 29.584342170264758 ], [ -95.102997927495295, 29.584437169876992 ], [ -95.102951927122092, 29.584551169694567 ], [ -95.102858927507882, 29.584782169884601 ], [ -95.102639927105201, 29.585325170328968 ], [ -95.102515927525701, 29.585775169837209 ], [ -95.102511927164741, 29.585816170061815 ], [ -95.102524926666518, 29.586976170419952 ], [ -95.102502926742048, 29.587345170522006 ], [ -95.102664926918393, 29.588684170485209 ], [ -95.102546927545745, 29.589748171002071 ], [ -95.102902927723335, 29.590122171105563 ], [ -95.103949927230246, 29.591224170891415 ], [ -95.104761928022981, 29.592262171271575 ], [ -95.105255928375726, 29.592960171856493 ], [ -95.106070928064455, 29.594411172108341 ], [ -95.106522928903416, 29.595401172297993 ], [ -95.106870929055219, 29.596286172296963 ], [ -95.107141928877368, 29.597171172729716 ], [ -95.107478928690043, 29.598715172345212 ], [ -95.107588929391298, 29.599633173165582 ], [ -95.107882929474101, 29.604112174124353 ], [ -95.107919928798495, 29.604698173589945 ], [ -95.1080219294047, 29.606280174246287 ], [ -95.108079929445182, 29.607188174764016 ], [ -95.108119928962395, 29.607790174942668 ], [ -95.109763929460513, 29.607718174129548 ], [ -95.112653930512465, 29.607569174325391 ], [ -95.112985930553819, 29.607559173948594 ], [ -95.113139930773016, 29.607554174639606 ], [ -95.113318930306889, 29.607548174446421 ], [ -95.113464930514951, 29.607544174622564 ], [ -95.115935931368426, 29.607426174568996 ], [ -95.116967932155973, 29.607336174568143 ], [ -95.117882931711435, 29.607240174318477 ], [ -95.119184931776601, 29.606977173635293 ], [ -95.120122932622394, 29.606741173907281 ], [ -95.121070932981979, 29.606383173770077 ], [ -95.124234933960125, 29.605126173443253 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 68, "Tract": "48201551702", "Area_SqMi": 0.80215550081047848, "total_2009": 332, "total_2010": 468, "total_2011": 386, "total_2012": 446, "total_2013": 436, "total_2014": 529, "total_2015": 1076, "total_2016": 971, "total_2017": 859, "total_2018": 1051, "total_2019": 1167, "total_2020": 1033, "age1": 176, "age2": 489, "age3": 262, "earn1": 108, "earn2": 151, "earn3": 668, "naics_s01": 2, "naics_s02": 14, "naics_s03": 0, "naics_s04": 33, "naics_s05": 8, "naics_s06": 84, "naics_s07": 24, "naics_s08": 14, "naics_s09": 2, "naics_s10": 379, "naics_s11": 78, "naics_s12": 75, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 74, "naics_s17": 1, "naics_s18": 116, "naics_s19": 15, "naics_s20": 0, "race1": 682, "race2": 111, "race3": 3, "race4": 118, "race5": 0, "race6": 13, "ethnicity1": 702, "ethnicity2": 225, "edu1": 104, "edu2": 162, "edu3": 247, "edu4": 238, "Shape_Length": 20853.973818516792, "Shape_Area": 22362722.459735509, "total_2021": 983, "total_2022": 927 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.570739060622458, 29.901875219365877 ], [ -95.570739061432548, 29.901815219406995 ], [ -95.570689060759292, 29.90143521948491 ], [ -95.570569060921116, 29.90113321876942 ], [ -95.570569061220581, 29.901034219143096 ], [ -95.570455061354281, 29.9003252188825 ], [ -95.570379060497544, 29.900138218357014 ], [ -95.570329060860161, 29.900050218601226 ], [ -95.570272060761098, 29.899764218345808 ], [ -95.570222060433849, 29.899610219023167 ], [ -95.570140060916088, 29.899478219045069 ], [ -95.569976060995387, 29.899346218792285 ], [ -95.569932060290327, 29.899317218729131 ], [ -95.569799060227211, 29.899231218270675 ], [ -95.569565060889218, 29.899132219026111 ], [ -95.569061060105469, 29.898978218480622 ], [ -95.568859060450066, 29.898929218750155 ], [ -95.568789060190227, 29.898923218299419 ], [ -95.568707060549428, 29.898945218669692 ], [ -95.568638060849651, 29.898945218820913 ], [ -95.568493060771004, 29.898918218853098 ], [ -95.568266059890959, 29.898819218441961 ], [ -95.568108060683898, 29.898736218827516 ], [ -95.567931060011944, 29.898615218982332 ], [ -95.567843059740852, 29.898562218680194 ], [ -95.567666059807181, 29.898456218504844 ], [ -95.567635060154885, 29.898428218114745 ], [ -95.567616060432343, 29.898379218295418 ], [ -95.567635060072277, 29.89823621889316 ], [ -95.567704060603859, 29.898186218910347 ], [ -95.567698059723568, 29.898104218301672 ], [ -95.567729059783403, 29.897912218630029 ], [ -95.567780059917936, 29.897714218370858 ], [ -95.567868060443573, 29.897450218079552 ], [ -95.567900060388155, 29.897312218382066 ], [ -95.567931060213567, 29.897257218098645 ], [ -95.567988060373963, 29.897065218133498 ], [ -95.567994060187146, 29.896933218077105 ], [ -95.567950060505282, 29.896884217889276 ], [ -95.567944060521313, 29.896779218561036 ], [ -95.568051060388171, 29.896405217930269 ], [ -95.568076060634411, 29.896207217714743 ], [ -95.568064059756068, 29.896031218414336 ], [ -95.568019059824536, 29.895867217956717 ], [ -95.567912059856567, 29.895724217923583 ], [ -95.567748060383948, 29.895575218020394 ], [ -95.567223060236742, 29.895760218402824 ], [ -95.566529059867747, 29.895865218095974 ], [ -95.565541059430331, 29.895880217756368 ], [ -95.564240059171084, 29.895941218554771 ], [ -95.561177058092809, 29.896043218489851 ], [ -95.558964057456407, 29.896089218302677 ], [ -95.557851057715936, 29.896113218401091 ], [ -95.557660057722629, 29.896118218194946 ], [ -95.556308057351401, 29.896123218461053 ], [ -95.553645056782074, 29.896170218228409 ], [ -95.55018605567804, 29.896349218296908 ], [ -95.549905055761315, 29.896364218916545 ], [ -95.549688055363148, 29.896374218853534 ], [ -95.549407055379021, 29.89638621913404 ], [ -95.549407055469686, 29.896436218873848 ], [ -95.549419055068839, 29.897566219289956 ], [ -95.549483055875271, 29.898148219514248 ], [ -95.549579055012927, 29.898761219459796 ], [ -95.549644055105929, 29.899060219137503 ], [ -95.549715055825715, 29.899363218956722 ], [ -95.549786055215506, 29.899631219067867 ], [ -95.549956055444568, 29.900129219861668 ], [ -95.550095055297845, 29.900462219440001 ], [ -95.550212055631846, 29.900684220038055 ], [ -95.550379055972456, 29.901000219493412 ], [ -95.550705056186956, 29.901505219425125 ], [ -95.551184056106166, 29.902152220083209 ], [ -95.551544056610282, 29.902564219842823 ], [ -95.55165705654764, 29.902684219637848 ], [ -95.551782056072867, 29.902813219563022 ], [ -95.552148056840082, 29.90279921979845 ], [ -95.552553056850641, 29.902794219653376 ], [ -95.554494056923161, 29.902781219864107 ], [ -95.554824057117997, 29.902788219462806 ], [ -95.555077057444521, 29.902804219705445 ], [ -95.555368057221045, 29.902836220213601 ], [ -95.555464057621364, 29.902847220179662 ], [ -95.555851057337478, 29.902910219879381 ], [ -95.556106057331576, 29.90296421954276 ], [ -95.556352057133637, 29.903026220220724 ], [ -95.556598057584623, 29.903097220119832 ], [ -95.556757057667895, 29.903151220083004 ], [ -95.556952057786873, 29.903217220032243 ], [ -95.55716405815518, 29.903299219999763 ], [ -95.557533057334638, 29.903459220248106 ], [ -95.557748058189077, 29.903571219584709 ], [ -95.558050057890512, 29.903737219504336 ], [ -95.558225057770528, 29.903845219838651 ], [ -95.558509058479913, 29.904035219749449 ], [ -95.55870305789098, 29.904179219711718 ], [ -95.558893058274094, 29.90433422040385 ], [ -95.559269057880385, 29.904672220242063 ], [ -95.561051058895117, 29.906319220011749 ], [ -95.561098059122116, 29.906362220293474 ], [ -95.561385058937148, 29.906632220437551 ], [ -95.561836059437454, 29.907045220699452 ], [ -95.562457059109079, 29.907623220803252 ], [ -95.562974059362489, 29.908094220388652 ], [ -95.563235059655057, 29.908317220817032 ], [ -95.563415058987218, 29.908455220948415 ], [ -95.563595059460397, 29.90858322115724 ], [ -95.563881059957993, 29.908769220973817 ], [ -95.564179059458226, 29.908939220420478 ], [ -95.564469059721077, 29.909084220509371 ], [ -95.564738060062083, 29.909205220723027 ], [ -95.565085060248052, 29.909339221073655 ], [ -95.565290060032581, 29.909409220816599 ], [ -95.565612059596276, 29.909506221273055 ], [ -95.565953060448848, 29.909588220690448 ], [ -95.566311059881144, 29.909653220822076 ], [ -95.566804060437434, 29.909721220588075 ], [ -95.566925060117129, 29.90973222076676 ], [ -95.567273060341748, 29.909749220563512 ], [ -95.567596060389775, 29.909751220908475 ], [ -95.56787506053729, 29.909742221000837 ], [ -95.568046060632284, 29.909728221182554 ], [ -95.568378061200804, 29.909692221070642 ], [ -95.568691061133293, 29.909646221147639 ], [ -95.568887060876108, 29.909607220792619 ], [ -95.569127061216207, 29.909554220515517 ], [ -95.569584060654194, 29.909432221011581 ], [ -95.57002506090295, 29.909298221045994 ], [ -95.570559061548082, 29.90914422041914 ], [ -95.57051906155796, 29.909043220465207 ], [ -95.570538061209746, 29.908912220989198 ], [ -95.57053206155922, 29.908824220552926 ], [ -95.570431061623538, 29.908637220918308 ], [ -95.570260061619138, 29.908252220519394 ], [ -95.570210061167472, 29.908202220522128 ], [ -95.570084061452945, 29.908109220689649 ], [ -95.570077061327851, 29.90806522064673 ], [ -95.570166061168777, 29.907939220713246 ], [ -95.570191060983007, 29.907867220054708 ], [ -95.570166060967111, 29.907515220458333 ], [ -95.570178060818222, 29.906987220219015 ], [ -95.570235061065659, 29.906454219816634 ], [ -95.570235061421272, 29.906174219690126 ], [ -95.570197060837259, 29.906042220048523 ], [ -95.570191061231867, 29.905877220403532 ], [ -95.570304061465421, 29.904986220135417 ], [ -95.570343061089304, 29.904617219407026 ], [ -95.570380060982828, 29.904266220034788 ], [ -95.570462061007191, 29.903854219876791 ], [ -95.570474060903834, 29.903739219176359 ], [ -95.570443061234002, 29.903414219065244 ], [ -95.570468060572011, 29.903172218996083 ], [ -95.570550061200933, 29.902656219707275 ], [ -95.57058206078716, 29.902320219560512 ], [ -95.570739060622458, 29.901875219365877 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 69, "Tract": "48201540602", "Area_SqMi": 1.0669257694371617, "total_2009": 1226, "total_2010": 1228, "total_2011": 1423, "total_2012": 1407, "total_2013": 1485, "total_2014": 1243, "total_2015": 1320, "total_2016": 1263, "total_2017": 1254, "total_2018": 1307, "total_2019": 1193, "total_2020": 1235, "age1": 429, "age2": 524, "age3": 283, "earn1": 343, "earn2": 535, "earn3": 358, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 62, "naics_s05": 11, "naics_s06": 3, "naics_s07": 612, "naics_s08": 3, "naics_s09": 33, "naics_s10": 93, "naics_s11": 25, "naics_s12": 39, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 138, "naics_s17": 13, "naics_s18": 150, "naics_s19": 50, "naics_s20": 0, "race1": 858, "race2": 251, "race3": 7, "race4": 96, "race5": 5, "race6": 19, "ethnicity1": 800, "ethnicity2": 436, "edu1": 189, "edu2": 235, "edu3": 229, "edu4": 154, "Shape_Length": 24617.263832536446, "Shape_Area": 29744064.390203748, "total_2021": 1197, "total_2022": 1236 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.645320078951244, 29.877788211410323 ], [ -95.64532007933829, 29.87761421190832 ], [ -95.645317078554854, 29.875991211117846 ], [ -95.645296078832985, 29.875150210989027 ], [ -95.645291079193171, 29.874700210610676 ], [ -95.645280079272268, 29.874108210946837 ], [ -95.645267078689855, 29.873116210451546 ], [ -95.64524807927873, 29.872130210661162 ], [ -95.645254078887092, 29.871974210151187 ], [ -95.645250078955272, 29.871834210403609 ], [ -95.645247078935569, 29.871725210157326 ], [ -95.645254078810211, 29.871378210450423 ], [ -95.645248078893374, 29.87129421045838 ], [ -95.645228078225642, 29.870688209980319 ], [ -95.645222079205212, 29.870374209909176 ], [ -95.645196078755063, 29.868536210207196 ], [ -95.645185079076271, 29.868212209795495 ], [ -95.645168078412226, 29.867678209865201 ], [ -95.644915078858148, 29.867685209866458 ], [ -95.644092078771507, 29.867692209969846 ], [ -95.644005078474962, 29.86769220959269 ], [ -95.643297077969066, 29.867698209707616 ], [ -95.642972078476902, 29.867702209397525 ], [ -95.642581077852114, 29.867706209963291 ], [ -95.64253107741412, 29.867706209515916 ], [ -95.641766078092928, 29.867709209897161 ], [ -95.641670077565777, 29.867709210143325 ], [ -95.640364077244939, 29.867713209856205 ], [ -95.638750077337434, 29.86772821007597 ], [ -95.638164076986769, 29.867733209960335 ], [ -95.637339076939213, 29.867739209651468 ], [ -95.637110076276571, 29.867736210218002 ], [ -95.636395076261167, 29.867740209558402 ], [ -95.63548707579676, 29.867748209868385 ], [ -95.635023075983796, 29.867748210293779 ], [ -95.634588075557318, 29.867732210091564 ], [ -95.634374075663999, 29.867715209687557 ], [ -95.634073075408807, 29.867680210158252 ], [ -95.633833075947052, 29.867647210005774 ], [ -95.633280075561188, 29.867516210336174 ], [ -95.632876075388637, 29.867407210233292 ], [ -95.632782075828416, 29.86737621020011 ], [ -95.63222407509349, 29.867150209784686 ], [ -95.631983075371323, 29.867039210211168 ], [ -95.631755075056347, 29.866921209465122 ], [ -95.631480074993789, 29.866764210115594 ], [ -95.631349075050849, 29.866686209658816 ], [ -95.631220074541503, 29.866603210259495 ], [ -95.631034075228754, 29.866471209797588 ], [ -95.630762074524384, 29.866261209938756 ], [ -95.630458074757044, 29.866002209855001 ], [ -95.629645074587799, 29.86530320943255 ], [ -95.629263074719802, 29.864975209424177 ], [ -95.628592074461409, 29.864410209896935 ], [ -95.628421073972959, 29.864279209795153 ], [ -95.628144074307329, 29.864088209622146 ], [ -95.627957073500625, 29.863972209206608 ], [ -95.627686073898701, 29.863817209302983 ], [ -95.627504073491821, 29.863722209687079 ], [ -95.627448073830521, 29.863696209188205 ], [ -95.627241073857917, 29.863597209529726 ], [ -95.626885074018674, 29.863451209447764 ], [ -95.626810073582647, 29.863422209069228 ], [ -95.626617074056071, 29.863352209252533 ], [ -95.626351073615012, 29.863267209065402 ], [ -95.626107073024599, 29.863205209739096 ], [ -95.625679073156519, 29.863116209311158 ], [ -95.625241073287057, 29.863047208904881 ], [ -95.625106073275873, 29.863031209722983 ], [ -95.624838073232937, 29.863011209625878 ], [ -95.624499073549103, 29.863002209228675 ], [ -95.624413073003595, 29.863003209530934 ], [ -95.624326073188087, 29.863003208942072 ], [ -95.624281073337769, 29.863452209462938 ], [ -95.624285072566465, 29.863542209787401 ], [ -95.624301073318975, 29.863954209686298 ], [ -95.624722072949638, 29.864927209861722 ], [ -95.624865072951707, 29.86548220995995 ], [ -95.624685073446017, 29.866161209672764 ], [ -95.624680073000121, 29.86618021040875 ], [ -95.624178072862946, 29.86694520980037 ], [ -95.624106072643315, 29.867333210037344 ], [ -95.624130072945732, 29.867940210772268 ], [ -95.623794073628844, 29.869013210204265 ], [ -95.623835073595387, 29.869299210495218 ], [ -95.623971073134541, 29.86959921052167 ], [ -95.624207072778589, 29.869800211154775 ], [ -95.624703073646671, 29.8700562110098 ], [ -95.625050073591254, 29.870150210562826 ], [ -95.625145073956787, 29.870080211089952 ], [ -95.625177073058751, 29.870085210379067 ], [ -95.625358073746597, 29.870260211043121 ], [ -95.62573807346736, 29.870679210537798 ], [ -95.625927074077794, 29.870926210716586 ], [ -95.626072073451184, 29.87124021064734 ], [ -95.626084074326684, 29.871460210650397 ], [ -95.626021073539675, 29.871630210641793 ], [ -95.626008073706657, 29.871784210878825 ], [ -95.625945073886925, 29.871889210842291 ], [ -95.625813074080256, 29.871927210849623 ], [ -95.625573073941993, 29.871976211536904 ], [ -95.625365073568403, 29.872042210808864 ], [ -95.625074073664578, 29.872189211213076 ], [ -95.625006073406638, 29.872224211021408 ], [ -95.624767073265005, 29.872444211595937 ], [ -95.624590073429644, 29.872626210879471 ], [ -95.624471073409637, 29.87282421164792 ], [ -95.624414073146724, 29.872956211744196 ], [ -95.62439507352623, 29.873038211190945 ], [ -95.624401073904963, 29.873115211217176 ], [ -95.62442007304081, 29.873154211273995 ], [ -95.62452107360842, 29.873280211640765 ], [ -95.625007073553192, 29.873709211282691 ], [ -95.625086074032353, 29.873768211791553 ], [ -95.625200073891435, 29.873873211617216 ], [ -95.625326073948983, 29.874027211736511 ], [ -95.625376073651466, 29.874263211644756 ], [ -95.625483074343862, 29.874675211757456 ], [ -95.6254830737806, 29.874829212071475 ], [ -95.625546074360827, 29.875005211544043 ], [ -95.625546073970497, 29.875335211544119 ], [ -95.625577074247005, 29.875682212366033 ], [ -95.625628073941925, 29.875885211909587 ], [ -95.625760073959029, 29.87629221184234 ], [ -95.625829073875366, 29.876446211837241 ], [ -95.6258800739745, 29.876594211853782 ], [ -95.625949073643909, 29.876726212370482 ], [ -95.625999074178822, 29.876858212491477 ], [ -95.626005074406663, 29.876952212329609 ], [ -95.625961074024048, 29.877100212181215 ], [ -95.625766073984778, 29.87734221202204 ], [ -95.625507074208642, 29.877529212666374 ], [ -95.625324073465791, 29.877809212478933 ], [ -95.625248073725814, 29.878023212220075 ], [ -95.625204074405758, 29.878199212444873 ], [ -95.625166074252562, 29.878304212617749 ], [ -95.625172074404134, 29.878479212309465 ], [ -95.625197074273373, 29.878606212592487 ], [ -95.625235074371574, 29.878694212857834 ], [ -95.625292074237095, 29.878782212665733 ], [ -95.625355073796669, 29.878958212831524 ], [ -95.62536707415623, 29.879277212245679 ], [ -95.625386074286368, 29.879433212913611 ], [ -95.625584074252814, 29.879438212952916 ], [ -95.626100073940293, 29.879450212741208 ], [ -95.626893074174077, 29.879434213014569 ], [ -95.627532074884769, 29.8794222125481 ], [ -95.628015075171618, 29.879412212784626 ], [ -95.628255075071294, 29.879407212456243 ], [ -95.628615074340601, 29.87940021252556 ], [ -95.628691074470709, 29.879399212419045 ], [ -95.628987075134958, 29.879393212627946 ], [ -95.62948207556083, 29.879383212163525 ], [ -95.631257075442264, 29.879349212299832 ], [ -95.631314075671455, 29.879348212898496 ], [ -95.633030076105968, 29.879321212233538 ], [ -95.634578075996728, 29.879307211958785 ], [ -95.634595076840768, 29.879307212403489 ], [ -95.634613076097907, 29.879307212618638 ], [ -95.635711076309533, 29.879296212732655 ], [ -95.636964077196552, 29.879284211837394 ], [ -95.637302077160641, 29.879281212314314 ], [ -95.637473077513206, 29.87927921179989 ], [ -95.637506076639866, 29.879279212098975 ], [ -95.637715077429021, 29.879277212357987 ], [ -95.638039076862242, 29.879274212111195 ], [ -95.639195077113399, 29.879263211978145 ], [ -95.640490077719491, 29.879253212276087 ], [ -95.640629078313665, 29.879252212492965 ], [ -95.641363077812414, 29.879246211936657 ], [ -95.641571077797678, 29.879244211827174 ], [ -95.642376078557902, 29.879238212209529 ], [ -95.643808078897479, 29.879226211685211 ], [ -95.644474078575314, 29.879221211576791 ], [ -95.644673079196551, 29.879219211735474 ], [ -95.644934079110953, 29.879217212343526 ], [ -95.644953078804349, 29.879217211821182 ], [ -95.645012078788781, 29.879217211535519 ], [ -95.645132079447762, 29.879216212128103 ], [ -95.64519907884312, 29.8792152122763 ], [ -95.645320078974635, 29.879214211518555 ], [ -95.645320079447743, 29.878817212073415 ], [ -95.645320079089458, 29.87839721143413 ], [ -95.645320078795834, 29.878139211450264 ], [ -95.645320078951244, 29.877788211410323 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 70, "Tract": "48339692010", "Area_SqMi": 22.165043140510871, "total_2009": 49, "total_2010": 76, "total_2011": 120, "total_2012": 131, "total_2013": 171, "total_2014": 191, "total_2015": 235, "total_2016": 270, "total_2017": 306, "total_2018": 457, "total_2019": 542, "total_2020": 601, "age1": 165, "age2": 311, "age3": 116, "earn1": 152, "earn2": 186, "earn3": 254, "naics_s01": 2, "naics_s02": 1, "naics_s03": 0, "naics_s04": 122, "naics_s05": 1, "naics_s06": 28, "naics_s07": 21, "naics_s08": 12, "naics_s09": 12, "naics_s10": 16, "naics_s11": 13, "naics_s12": 36, "naics_s13": 0, "naics_s14": 81, "naics_s15": 3, "naics_s16": 34, "naics_s17": 64, "naics_s18": 98, "naics_s19": 48, "naics_s20": 0, "race1": 492, "race2": 56, "race3": 2, "race4": 29, "race5": 0, "race6": 13, "ethnicity1": 420, "ethnicity2": 172, "edu1": 76, "edu2": 98, "edu3": 137, "edu4": 116, "Shape_Length": 135526.0063970105, "Shape_Area": 617923466.90697157, "total_2021": 557, "total_2022": 592 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.38201402206866, 30.11580426953801 ], [ -95.381821022813568, 30.11565526916845 ], [ -95.381563022162467, 30.115456268867604 ], [ -95.381522022316801, 30.115424269373726 ], [ -95.381467022443829, 30.115373268909273 ], [ -95.381197022240741, 30.115119268997901 ], [ -95.380651022601612, 30.114593268672348 ], [ -95.379735021964635, 30.113794268836248 ], [ -95.378151021693512, 30.112459268302846 ], [ -95.375556020905748, 30.109999268378573 ], [ -95.370347018860357, 30.105402267939191 ], [ -95.369079019003792, 30.104244266964862 ], [ -95.368144018220079, 30.1034102675487 ], [ -95.367615017789817, 30.102963267340712 ], [ -95.367249018266349, 30.102495266983688 ], [ -95.367170018198962, 30.102386267198494 ], [ -95.366924017999736, 30.102048266668032 ], [ -95.366568017877, 30.101333266758701 ], [ -95.366355018349836, 30.100828266962065 ], [ -95.36621201809254, 30.100218266742811 ], [ -95.366151017447379, 30.09954726664245 ], [ -95.366131017344273, 30.099128266024803 ], [ -95.363732016773398, 30.099039266636751 ], [ -95.363060017355878, 30.098977266266672 ], [ -95.362614016661183, 30.098937266227693 ], [ -95.361958017095958, 30.098812266172079 ], [ -95.361859016780855, 30.098783266787219 ], [ -95.36191401643346, 30.098380266018367 ], [ -95.362021016533802, 30.098028266426688 ], [ -95.362106016926546, 30.097741266453369 ], [ -95.36221301656002, 30.097421266263375 ], [ -95.362320016621595, 30.097122266011432 ], [ -95.362341016322603, 30.096781265680974 ], [ -95.362373016349068, 30.096387266309726 ], [ -95.362447016737292, 30.096088265705784 ], [ -95.362597016260324, 30.095811266044535 ], [ -95.362853017105493, 30.095502265769934 ], [ -95.363172017199403, 30.095299265332891 ], [ -95.363801016489106, 30.095139265445123 ], [ -95.365624017320968, 30.095161265633241 ], [ -95.365966016990981, 30.095065265110364 ], [ -95.366275017959026, 30.094926265341392 ], [ -95.366584017704341, 30.094596265402853 ], [ -95.366786017823372, 30.094137265790234 ], [ -95.366914017200159, 30.093540265558232 ], [ -95.367000017728486, 30.092517264563725 ], [ -95.366990017795004, 30.092117265116176 ], [ -95.367000017748779, 30.09171726449971 ], [ -95.367010017994147, 30.091547265263397 ], [ -95.367032017802558, 30.091365264795286 ], [ -95.367128017612487, 30.091205264803524 ], [ -95.36727701746301, 30.090918264968106 ], [ -95.367362018065819, 30.09073626444733 ], [ -95.367426017711111, 30.090640264478061 ], [ -95.367437017887553, 30.09051226431448 ], [ -95.367437017430163, 30.090075264148229 ], [ -95.367394017935823, 30.08946826399707 ], [ -95.367309017311641, 30.089244263910867 ], [ -95.367096017734667, 30.088935264240863 ], [ -95.36704201790667, 30.088849264121571 ], [ -95.366968017683249, 30.088668264239971 ], [ -95.366744017526642, 30.087805263796479 ], [ -95.366275017596337, 30.087634264076552 ], [ -95.365870017169911, 30.087506263586953 ], [ -95.365347016868625, 30.087378264114005 ], [ -95.364889017257369, 30.087272263867124 ], [ -95.364729016462519, 30.087208264116857 ], [ -95.364398016530657, 30.087090264025733 ], [ -95.364207016662832, 30.086941264264777 ], [ -95.363908016772655, 30.08665326360779 ], [ -95.363791016574254, 30.086515264120134 ], [ -95.363588016946025, 30.086205264098506 ], [ -95.363460015975932, 30.085992263635656 ], [ -95.363375016256427, 30.08579026335191 ], [ -95.363328016249724, 30.085769263574544 ], [ -95.362851016440331, 30.085154263274788 ], [ -95.362568015828003, 30.08532926348261 ], [ -95.36226401559837, 30.085520263387018 ], [ -95.360145015252684, 30.083295263621178 ], [ -95.359846014883061, 30.082996263193387 ], [ -95.359416015156512, 30.082490262830838 ], [ -95.359362015214558, 30.082433263330284 ], [ -95.358973014965798, 30.082017263367977 ], [ -95.358394015179215, 30.081403263419002 ], [ -95.357860015078217, 30.080833262733712 ], [ -95.353640013190912, 30.076342261755279 ], [ -95.352648013300467, 30.076300262051479 ], [ -95.351111012838558, 30.076600261938463 ], [ -95.350539012379357, 30.076656262489355 ], [ -95.35025801312824, 30.076659262216943 ], [ -95.349940012126254, 30.076599262229308 ], [ -95.349681012687498, 30.076484262146554 ], [ -95.349546012926112, 30.076403262420822 ], [ -95.349335012227229, 30.076097261904359 ], [ -95.349364011995959, 30.075848262003451 ], [ -95.349377011832431, 30.074940261598286 ], [ -95.34949201186113, 30.074338262040833 ], [ -95.349524012676724, 30.073943262070728 ], [ -95.349363012031333, 30.073611261860936 ], [ -95.349161011843464, 30.073340261511731 ], [ -95.348858011788181, 30.073152261553215 ], [ -95.348336012432256, 30.072933261537557 ], [ -95.347921012084967, 30.072947261917321 ], [ -95.346813011548861, 30.072821261246261 ], [ -95.346036010954194, 30.072572261580785 ], [ -95.345019011008347, 30.071989261256075 ], [ -95.344700011047678, 30.071759261667378 ], [ -95.344358011150788, 30.071352261618316 ], [ -95.343962011092287, 30.070679261655275 ], [ -95.343555010390062, 30.069660261559051 ], [ -95.343355010938794, 30.068888261261566 ], [ -95.343137010575191, 30.068307260576976 ], [ -95.342881010284245, 30.06797926075475 ], [ -95.342554009734613, 30.067703260414834 ], [ -95.341649009787602, 30.067195261072602 ], [ -95.341095010081887, 30.066949261149222 ], [ -95.340176009360945, 30.066732261060835 ], [ -95.33931500946845, 30.066623260530104 ], [ -95.338478008937315, 30.066313260211981 ], [ -95.338150009112539, 30.066083260287304 ], [ -95.337870009309754, 30.065522260282474 ], [ -95.33787800919103, 30.065128260223776 ], [ -95.337746008606814, 30.064674260603045 ], [ -95.33769900899361, 30.064208260048705 ], [ -95.33757300838667, 30.063827260308265 ], [ -95.337322008674064, 30.063335259693385 ], [ -95.337120008344982, 30.063154259895352 ], [ -95.33687700879716, 30.063016259828345 ], [ -95.33630200805429, 30.062814259598508 ], [ -95.335432008095324, 30.062820260502345 ], [ -95.335023007703171, 30.062881260323007 ], [ -95.334313008056853, 30.063060260406974 ], [ -95.33287400780641, 30.06342226025539 ], [ -95.332060007695432, 30.063308260315051 ], [ -95.331428007107561, 30.063136260498041 ], [ -95.330880007099537, 30.062883260088892 ], [ -95.329329007070825, 30.062491260294255 ], [ -95.328790006599817, 30.062224260340241 ], [ -95.328475006262906, 30.061941260296337 ], [ -95.328095006373488, 30.061303259585898 ], [ -95.328071006058494, 30.060657259877349 ], [ -95.328128005702681, 30.060230260181331 ], [ -95.328006006509767, 30.059757259908331 ], [ -95.327383005865585, 30.058620259414226 ], [ -95.32703700572695, 30.058047259180665 ], [ -95.32634000547246, 30.057539259439316 ], [ -95.325532005635537, 30.057100259495002 ], [ -95.324312004791537, 30.056656259190635 ], [ -95.324008004865675, 30.056469258823082 ], [ -95.323745004800145, 30.056239258799199 ], [ -95.323409005130131, 30.055875259144376 ], [ -95.322960004897368, 30.054602258775638 ], [ -95.322337004520534, 30.053629258324204 ], [ -95.321831004244316, 30.053154258428354 ], [ -95.321522004500764, 30.052973258890493 ], [ -95.32118100372405, 30.052841258060074 ], [ -95.320775003880144, 30.052768258358288 ], [ -95.319781003277711, 30.052730258842903 ], [ -95.318183002864302, 30.053959258992769 ], [ -95.317838003104313, 30.054158258992853 ], [ -95.31744100301546, 30.054262258775807 ], [ -95.31710900305886, 30.054266258688717 ], [ -95.316576002837152, 30.054200258722524 ], [ -95.316212002710216, 30.054028259157135 ], [ -95.315958003091538, 30.053845258513114 ], [ -95.315622002939548, 30.053478258619442 ], [ -95.314988002153498, 30.052550259112763 ], [ -95.31391600246117, 30.051602258823614 ], [ -95.313244002285998, 30.050783258121108 ], [ -95.313120001826505, 30.050555258182449 ], [ -95.312740001336266, 30.049454258253142 ], [ -95.312594001947815, 30.048529258134725 ], [ -95.312346001687914, 30.0480742581986 ], [ -95.31202800182983, 30.047653258186354 ], [ -95.31139800123627, 30.046985257565197 ], [ -95.310571001178531, 30.046397257962642 ], [ -95.309761000829624, 30.04589825729229 ], [ -95.30955500077539, 30.045630257556539 ], [ -95.309247000901166, 30.044586257407701 ], [ -95.309315000828079, 30.043941257363436 ], [ -95.309418001082761, 30.043668256700268 ], [ -95.30977100097671, 30.043269257244312 ], [ -95.310346000877473, 30.042800257215603 ], [ -95.310583000801444, 30.042655256939948 ], [ -95.311053000744735, 30.042519256786122 ], [ -95.311286001141724, 30.042316256468695 ], [ -95.31137400137159, 30.042154256595975 ], [ -95.311511000599637, 30.041890256842226 ], [ -95.312030001046622, 30.040449255935979 ], [ -95.3124250014545, 30.038660255538282 ], [ -95.312476001268365, 30.038015255968524 ], [ -95.312775001055513, 30.036823255552317 ], [ -95.312813001012827, 30.035999255305224 ], [ -95.312566001462869, 30.035104255512174 ], [ -95.31220400105866, 30.034340254850672 ], [ -95.311461000455466, 30.033304254858351 ], [ -95.311001000405014, 30.032892255035449 ], [ -95.310763000471283, 30.03289525468135 ], [ -95.310440000348436, 30.03283025472216 ], [ -95.309504000443852, 30.032541255153497 ], [ -95.308009999218555, 30.031918254646573 ], [ -95.307278999260532, 30.031447255044377 ], [ -95.306922999102397, 30.031066254316585 ], [ -95.306625999072423, 30.030748254071309 ], [ -95.306254999276035, 30.030271254229774 ], [ -95.305916998651568, 30.029954254280117 ], [ -95.305609998727448, 30.029772254369732 ], [ -95.305141998710198, 30.029630254326403 ], [ -95.304728998312697, 30.029637254370023 ], [ -95.30442499898578, 30.029754254073055 ], [ -95.304356999024037, 30.029806254735732 ], [ -95.304235998934985, 30.030068254181913 ], [ -95.303870999091743, 30.030775254182927 ], [ -95.303661998199345, 30.031042254374924 ], [ -95.303417999028483, 30.031337255027641 ], [ -95.30319499891246, 30.031640255116756 ], [ -95.302989998195429, 30.03194625481996 ], [ -95.302932998132448, 30.032023254484333 ], [ -95.302850998404338, 30.032094255315037 ], [ -95.302742997986243, 30.032160255080402 ], [ -95.302388998806606, 30.032292254946697 ], [ -95.301693998347446, 30.032303255131779 ], [ -95.300948997659802, 30.032264254650638 ], [ -95.300278998072713, 30.032204255480913 ], [ -95.299937998079088, 30.032198254828444 ], [ -95.299443997645383, 30.032053255431368 ], [ -95.297580996646531, 30.031505255378221 ], [ -95.297383996457796, 30.031412255142893 ], [ -95.297225996871632, 30.031377254904633 ], [ -95.296565997044794, 30.031025255227608 ], [ -95.296422996803685, 30.030940255118534 ], [ -95.296004996603585, 30.030681255260927 ], [ -95.295777996742856, 30.030551254514478 ], [ -95.295140996637599, 30.030295254505319 ], [ -95.294778995775317, 30.030176254528325 ], [ -95.294337995721037, 30.029946254737975 ], [ -95.29412499560074, 30.029836254424442 ], [ -95.294035995838925, 30.029763254612433 ], [ -95.293713995867677, 30.029496254274019 ], [ -95.293470996332573, 30.029048254727414 ], [ -95.293385996184611, 30.028890254345857 ], [ -95.293327996344402, 30.028763254168037 ], [ -95.293298995358938, 30.028700254532254 ], [ -95.293270995479844, 30.028589254782158 ], [ -95.293107996018335, 30.028214254673546 ], [ -95.293003995736711, 30.027910254719615 ], [ -95.292918996090449, 30.027753254034181 ], [ -95.292831995587932, 30.027758254032197 ], [ -95.29268799538977, 30.027766254707785 ], [ -95.292569995702223, 30.027791254823999 ], [ -95.289685994832382, 30.028400254672075 ], [ -95.28792699461917, 30.028738254382244 ], [ -95.287498994684299, 30.028820255002739 ], [ -95.287070994026763, 30.02890225515949 ], [ -95.286902994576224, 30.028974254775218 ], [ -95.286755993870727, 30.02904225468923 ], [ -95.28619299391444, 30.02920825463595 ], [ -95.285409993611779, 30.029614254699617 ], [ -95.285352993376222, 30.02964325469225 ], [ -95.285076994128588, 30.029834255531004 ], [ -95.28474599402719, 30.029910255390838 ], [ -95.284676993930447, 30.029943254908289 ], [ -95.284458993394139, 30.030038255581722 ], [ -95.283932993012101, 30.030252255630288 ], [ -95.283922993191425, 30.030257254809001 ], [ -95.283912993336912, 30.030262254888637 ], [ -95.283900993729191, 30.030266255530112 ], [ -95.283887993354369, 30.030269255479126 ], [ -95.283876993377518, 30.030270255513301 ], [ -95.283757993537208, 30.030309255013854 ], [ -95.28356299375983, 30.03038225481048 ], [ -95.283351992871317, 30.030469255260567 ], [ -95.283334993004601, 30.030479255277285 ], [ -95.283307993567334, 30.030497255607528 ], [ -95.283291992986307, 30.030510255552539 ], [ -95.283271992932029, 30.030521255700496 ], [ -95.283251992906386, 30.030532254943772 ], [ -95.283231993076328, 30.030542255001418 ], [ -95.283210993250293, 30.030552255374385 ], [ -95.283188993460953, 30.030562255160525 ], [ -95.283166992864537, 30.030571254830107 ], [ -95.283143993275146, 30.030580255744255 ], [ -95.283120992912444, 30.030588255639874 ], [ -95.283097992780242, 30.030595255447217 ], [ -95.283061993004523, 30.030606255232318 ], [ -95.283036993113697, 30.030612255579385 ], [ -95.282951992859438, 30.030629255135658 ], [ -95.282687993615312, 30.030682255635696 ], [ -95.282306992980466, 30.030757255261445 ], [ -95.282244993234187, 30.030769255796887 ], [ -95.282186993353889, 30.030777255597194 ], [ -95.282145992865139, 30.030782255225624 ], [ -95.282115992633393, 30.030785255770049 ], [ -95.282023993318646, 30.030793255221564 ], [ -95.281984993016607, 30.030797254999303 ], [ -95.281956992677138, 30.030796255426186 ], [ -95.281927992921595, 30.030797255451258 ], [ -95.281905992483559, 30.03079625581805 ], [ -95.281885992825025, 30.030796255677107 ], [ -95.281871993067341, 30.030796255486546 ], [ -95.281856992525306, 30.03079525548991 ], [ -95.281840993025469, 30.030794255828411 ], [ -95.281827992472898, 30.030793255212238 ], [ -95.281811992973587, 30.030792255547304 ], [ -95.281795992685346, 30.030790255767595 ], [ -95.281762993185566, 30.030786255636993 ], [ -95.281745992937857, 30.030784255257231 ], [ -95.281721992796449, 30.030782255222881 ], [ -95.281705993299894, 30.030781255545303 ], [ -95.281675993011945, 30.030780255626123 ], [ -95.281663992424129, 30.030779255588854 ], [ -95.281630992974925, 30.030779255791284 ], [ -95.281597993309774, 30.030780255168022 ], [ -95.28157099326171, 30.030782255489349 ], [ -95.281479993263389, 30.030784255503395 ], [ -95.281463992515327, 30.030784254950799 ], [ -95.281450993256215, 30.030786255509739 ], [ -95.281433992798085, 30.030789255540054 ], [ -95.281407992488013, 30.030792255607665 ], [ -95.281382992421939, 30.030794255281336 ], [ -95.281357992354899, 30.030796254950332 ], [ -95.281338992657865, 30.030796255325122 ], [ -95.281320992955301, 30.030796255393014 ], [ -95.28129599257305, 30.030795255671048 ], [ -95.281277992870656, 30.030795255733125 ], [ -95.281262992586875, 30.030793255586055 ], [ -95.281243993142823, 30.030792255863243 ], [ -95.281230992848933, 30.030790255105174 ], [ -95.281217992522571, 30.030788255247536 ], [ -95.281196992340739, 30.030786255110549 ], [ -95.28116699252972, 30.030783255811173 ], [ -95.281152993027121, 30.030782255461499 ], [ -95.281125992947878, 30.030780255327997 ], [ -95.281098992615824, 30.030779255273263 ], [ -95.281087992810427, 30.030779254994805 ], [ -95.281071992284325, 30.030778255213093 ], [ -95.281045992729517, 30.030778254958172 ], [ -95.28100599235033, 30.030778255290421 ], [ -95.280973992640625, 30.030779255113739 ], [ -95.280938992947384, 30.030780255833751 ], [ -95.280885992851651, 30.030784255003436 ], [ -95.280832992205902, 30.030790255222215 ], [ -95.280776992904876, 30.030799255729001 ], [ -95.280735992859505, 30.030806255124244 ], [ -95.280676993069861, 30.030813255390282 ], [ -95.280626992606258, 30.030818255446871 ], [ -95.280601992744209, 30.030819255792746 ], [ -95.280576992655696, 30.030821255316479 ], [ -95.280551992792397, 30.030822255653145 ], [ -95.280514992347079, 30.030822255845251 ], [ -95.280497992377605, 30.030819255223509 ], [ -95.280424992492726, 30.030815255835286 ], [ -95.280384992881537, 30.030812255730236 ], [ -95.280314992989858, 30.030808255390376 ], [ -95.280269992408606, 30.030805255804516 ], [ -95.280242992078342, 30.030804255577841 ], [ -95.280198992269078, 30.030802255784849 ], [ -95.280135992533346, 30.030801255364658 ], [ -95.280123992994504, 30.030800255218619 ], [ -95.280046992169275, 30.030800255339763 ], [ -95.2799709923748, 30.030800255151288 ], [ -95.279861992293363, 30.030803255842091 ], [ -95.279844992051736, 30.030805255587179 ], [ -95.27982399290039, 30.030807255629743 ], [ -95.27980299244534, 30.030810255724472 ], [ -95.27978299275324, 30.030814255635971 ], [ -95.279769992956346, 30.030818255298943 ], [ -95.279749992727119, 30.03082425537383 ], [ -95.279729992228241, 30.030831255529858 ], [ -95.279710992490251, 30.030839255503441 ], [ -95.279692992744302, 30.030847255182159 ], [ -95.279679992136238, 30.030854255088826 ], [ -95.279637992196797, 30.030864255623893 ], [ -95.27961399203592, 30.030870255041943 ], [ -95.279589992376572, 30.030874255189143 ], [ -95.279565992446464, 30.030879255416217 ], [ -95.279538992830155, 30.03088325552617 ], [ -95.279517992351003, 30.030886255576277 ], [ -95.2794639923424, 30.030893255658668 ], [ -95.279416992769569, 30.030898255323986 ], [ -95.279346992489721, 30.030903255294621 ], [ -95.279310992742367, 30.030904255880277 ], [ -95.279291992175956, 30.030915255145096 ], [ -95.279270992378429, 30.030927255098078 ], [ -95.279257992223535, 30.030936255160597 ], [ -95.279243992562542, 30.030947255707595 ], [ -95.279220991923737, 30.03096625594597 ], [ -95.279201992227939, 30.030966255117004 ], [ -95.278984992261584, 30.030962255780668 ], [ -95.278950991995615, 30.030961255499093 ], [ -95.278928992312487, 30.030961255491455 ], [ -95.278910991819799, 30.030960255123812 ], [ -95.278893992602363, 30.030958255313784 ], [ -95.278882991983963, 30.030957255643781 ], [ -95.278870992163277, 30.030957255470067 ], [ -95.278859992305655, 30.030957255910941 ], [ -95.278848992481002, 30.030957255449266 ], [ -95.278832992156836, 30.030959255682109 ], [ -95.278817991828149, 30.030961255627368 ], [ -95.278796992347921, 30.030964255593403 ], [ -95.278786991688946, 30.030967255093515 ], [ -95.278769992608176, 30.030972255913934 ], [ -95.278742991860824, 30.03098025529858 ], [ -95.278730992242302, 30.030983255393313 ], [ -95.278719992619443, 30.030986255202059 ], [ -95.278695992342676, 30.030992255357656 ], [ -95.27868399196268, 30.030994255335383 ], [ -95.27867199234079, 30.030997255424804 ], [ -95.278659991959771, 30.030999255400456 ], [ -95.278646992618022, 30.031001255688018 ], [ -95.278634992235979, 30.031003255661375 ], [ -95.278622992131716, 30.031004255549554 ], [ -95.278609992030638, 30.031005255720796 ], [ -95.278597991647416, 30.031007255690842 ], [ -95.278577991668769, 30.031008255141753 ], [ -95.278560992649773, 30.031009255570677 ], [ -95.278547991790106, 30.031009255623115 ], [ -95.278535991963295, 30.031009255419459 ], [ -95.27851999246235, 30.031008255362696 ], [ -95.278500991968841, 30.031007255223585 ], [ -95.278486992428697, 30.031006255497989 ], [ -95.278439991624367, 30.031000255585084 ], [ -95.278402992483095, 30.030995255677055 ], [ -95.278359991922073, 30.030988255423402 ], [ -95.278337992287788, 30.0309842558556 ], [ -95.27831299225852, 30.030978255129639 ], [ -95.278295992543363, 30.030974255948799 ], [ -95.278280992010252, 30.030973255553143 ], [ -95.278269992432527, 30.030972255861663 ], [ -95.278253991621966, 30.030972255828637 ], [ -95.278240991803301, 30.030972255880094 ], [ -95.278229991694985, 30.03097325545188 ], [ -95.278208991723233, 30.030974255129152 ], [ -95.278190992427596, 30.030976255876439 ], [ -95.278175991801163, 30.030979255834161 ], [ -95.278158992250582, 30.030982255478683 ], [ -95.278130991706234, 30.030989255838698 ], [ -95.278116991542475, 30.030994255706165 ], [ -95.27787599199219, 30.03108525561392 ], [ -95.277852991818676, 30.031094255620978 ], [ -95.277832991886584, 30.031102255606786 ], [ -95.277813992235025, 30.031109255227381 ], [ -95.27779399180028, 30.03111525591229 ], [ -95.277774992143605, 30.031122255527347 ], [ -95.277754991737012, 30.031128255304697 ], [ -95.27773499158198, 30.031133255896709 ], [ -95.277713991460161, 30.03113825586146 ], [ -95.277692991623567, 30.031142255738875 ], [ -95.277631991606441, 30.031152255502782 ], [ -95.27735899151557, 30.031171255808033 ], [ -95.277165992198377, 30.031302255791253 ], [ -95.27692099212922, 30.031471255964849 ], [ -95.276917991373338, 30.03136025556072 ], [ -95.276919992166825, 30.031279255699641 ], [ -95.276912991904453, 30.031170255668776 ], [ -95.276913991237365, 30.031119255189335 ], [ -95.276735991762067, 30.03116725547493 ], [ -95.276513991865784, 30.031228255899922 ], [ -95.275964991820857, 30.031355255946867 ], [ -95.275483991250013, 30.031545255410865 ], [ -95.274834990786317, 30.031808256145634 ], [ -95.274513990803442, 30.031836255730219 ], [ -95.274220991262439, 30.031956256048531 ], [ -95.273932991260466, 30.032072255916432 ], [ -95.273709991226909, 30.032096255826932 ], [ -95.273088991283487, 30.032247256249104 ], [ -95.272471990139266, 30.032368256386061 ], [ -95.272350990740748, 30.032372255817801 ], [ -95.272021990929815, 30.032422256176044 ], [ -95.271407990455501, 30.032411255642224 ], [ -95.27099998999887, 30.032404256458229 ], [ -95.270245990520422, 30.032198256074945 ], [ -95.27013698986093, 30.03216825574842 ], [ -95.269296989540805, 30.031920255927318 ], [ -95.269139989567435, 30.0318732562816 ], [ -95.268740989703034, 30.031778256225277 ], [ -95.268322989210802, 30.031695256411592 ], [ -95.268292989548101, 30.03168925576286 ], [ -95.268074989430332, 30.031700255808165 ], [ -95.267522988824908, 30.031729256376568 ], [ -95.26742298955358, 30.031755256424653 ], [ -95.267237988886194, 30.031804255672721 ], [ -95.266369988605476, 30.031976256495817 ], [ -95.26603098848166, 30.032063255798754 ], [ -95.265907988517625, 30.032081256537186 ], [ -95.265105988957245, 30.032176256542975 ], [ -95.264192988683732, 30.032079255894057 ], [ -95.264144988637085, 30.03207425668408 ], [ -95.264002988413608, 30.032218256610886 ], [ -95.26385398854373, 30.032370256580808 ], [ -95.263776988258286, 30.032439256714792 ], [ -95.263730988442674, 30.032480255989487 ], [ -95.263683988120377, 30.032522256406065 ], [ -95.26371698851915, 30.032551256163533 ], [ -95.263838988076586, 30.035201256814581 ], [ -95.265549989401507, 30.038871257302041 ], [ -95.266703989741018, 30.039762257958259 ], [ -95.269752989854439, 30.04016125767351 ], [ -95.271051990859917, 30.04117925809204 ], [ -95.271337990977344, 30.041685258138152 ], [ -95.271330991191888, 30.042442258203401 ], [ -95.271250990837459, 30.042578258303148 ], [ -95.271075990946258, 30.042877257947008 ], [ -95.271035990972578, 30.042945257931347 ], [ -95.270792990752341, 30.043182258309773 ], [ -95.268983990466566, 30.044950258653948 ], [ -95.268833990106273, 30.045453259166706 ], [ -95.268969990860271, 30.046463259212874 ], [ -95.269168990402775, 30.047098259588129 ], [ -95.269385990979018, 30.047787259380677 ], [ -95.270680990731279, 30.049339259375344 ], [ -95.271614991604409, 30.052246260115904 ], [ -95.271689991776285, 30.052533260583324 ], [ -95.271990991299461, 30.053457260281167 ], [ -95.272200991288145, 30.054236260520163 ], [ -95.272320991437326, 30.054663260381226 ], [ -95.27268199129621, 30.055809260648218 ], [ -95.27296099161812, 30.056708260790185 ], [ -95.27332199246554, 30.05757526099875 ], [ -95.273632991801435, 30.058266261465082 ], [ -95.274113992140201, 30.059275261504922 ], [ -95.274480992306366, 30.060130261912413 ], [ -95.27483599220777, 30.060799261456395 ], [ -95.275183992500914, 30.061408262170247 ], [ -95.27565899258542, 30.062027261639056 ], [ -95.276013992991338, 30.062614262320388 ], [ -95.276488992618837, 30.063431262464515 ], [ -95.27671699305678, 30.064001262003917 ], [ -95.276950993381263, 30.064725262544648 ], [ -95.277299993486395, 30.065695262884102 ], [ -95.277559993793034, 30.066550262839392 ], [ -95.277914993453237, 30.067296262926412 ], [ -95.278066993667423, 30.067477262957183 ], [ -95.278598994263007, 30.067959262746399 ], [ -95.279308994065872, 30.068496262733582 ], [ -95.280132993803747, 30.068940263597884 ], [ -95.281050994164687, 30.069615262912187 ], [ -95.281589994848375, 30.070229263105649 ], [ -95.28180499432581, 30.070519263879252 ], [ -95.281969994408882, 30.071123263537377 ], [ -95.281811995256064, 30.071961263907575 ], [ -95.281272995212788, 30.073052263708739 ], [ -95.280759994309136, 30.073792264575662 ], [ -95.280576994968342, 30.074159264303947 ], [ -95.280278994682945, 30.074801264852479 ], [ -95.280227995061125, 30.075552264681562 ], [ -95.280360994942171, 30.076440264631671 ], [ -95.280531994680516, 30.076999264886958 ], [ -95.281126994472373, 30.077454264824222 ], [ -95.281982995468098, 30.077948264993889 ], [ -95.283331996004165, 30.078255265279608 ], [ -95.28446599597406, 30.078397265319865 ], [ -95.285055996208214, 30.078567265025235 ], [ -95.285923996261815, 30.078968265258485 ], [ -95.286246995823959, 30.079181265033732 ], [ -95.287158996439757, 30.079773264924313 ], [ -95.288337997360813, 30.080338265244119 ], [ -95.289566997225464, 30.080694265302412 ], [ -95.291333997770082, 30.081018265524737 ], [ -95.292360997964806, 30.081144265582726 ], [ -95.29384399864702, 30.081467265208268 ], [ -95.29483199889026, 30.081857264939245 ], [ -95.295414998627294, 30.082295265311963 ], [ -95.295877998716904, 30.08288726506407 ], [ -95.296567999385147, 30.083847265720713 ], [ -95.297049999437249, 30.084389265397988 ], [ -95.29745499915785, 30.084751265945457 ], [ -95.298284999881176, 30.085349265643359 ], [ -95.29928600006707, 30.085755265544758 ], [ -95.30033199982698, 30.085837266332405 ], [ -95.301441000546745, 30.08567826608471 ], [ -95.302562000584288, 30.085365265390855 ], [ -95.303082000427423, 30.085239265448791 ], [ -95.304045001384779, 30.085146266020001 ], [ -95.305103001112442, 30.085119265643335 ], [ -95.305870001161381, 30.085184265595604 ], [ -95.306414001713463, 30.085365265970001 ], [ -95.306807002299792, 30.085634265333194 ], [ -95.307149001666332, 30.08599026615855 ], [ -95.307295001633477, 30.086330265379761 ], [ -95.307403001811949, 30.08675226560457 ], [ -95.307346002269696, 30.087300266278561 ], [ -95.307231001815268, 30.087788265681368 ], [ -95.307441002142539, 30.088462266091913 ], [ -95.307702002391466, 30.088847266736963 ], [ -95.308064002649971, 30.089193266131481 ], [ -95.309130002994692, 30.0895982663633 ], [ -95.310227002495822, 30.089783266573896 ], [ -95.310985003451066, 30.089815266084795 ], [ -95.311805003829406, 30.08978426599138 ], [ -95.312633003253382, 30.089815266540665 ], [ -95.313153003726711, 30.089935265958079 ], [ -95.313437003998615, 30.090093265972818 ], [ -95.31404400446722, 30.090544266471735 ], [ -95.314758004280534, 30.091190266202187 ], [ -95.314747004342877, 30.091808266770695 ], [ -95.31407600449073, 30.092730266705416 ], [ -95.313044003513781, 30.093651267133041 ], [ -95.312687003520367, 30.093826267385445 ], [ -95.312282004017177, 30.094025267548041 ], [ -95.31172900388647, 30.094483267252595 ], [ -95.311620003508224, 30.094672267645215 ], [ -95.311386003506925, 30.095078267721416 ], [ -95.311175003113462, 30.095765267781378 ], [ -95.31104200381499, 30.096773268248896 ], [ -95.311147003140363, 30.097254268089912 ], [ -95.311569003531716, 30.097988268160581 ], [ -95.312043003343049, 30.098354268177321 ], [ -95.313386003703698, 30.099088268399107 ], [ -95.314097004016446, 30.099799267941201 ], [ -95.314492004099506, 30.100486268100703 ], [ -95.314754004865051, 30.101540268557581 ], [ -95.314806005058813, 30.104472269175954 ], [ -95.314672004440368, 30.107840269884566 ], [ -95.314381004479912, 30.109512270256644 ], [ -95.314197004406452, 30.110199270514027 ], [ -95.314117004952308, 30.111024270752765 ], [ -95.314301004566602, 30.111642270970282 ], [ -95.314828005635192, 30.112169270454032 ], [ -95.317120005419071, 30.112743271019998 ], [ -95.318121005609683, 30.113064270680628 ], [ -95.318753006481586, 30.113385270670989 ], [ -95.319306006084943, 30.113866271231036 ], [ -95.31975400668226, 30.114966271120821 ], [ -95.319833006282622, 30.115310271106125 ], [ -95.319937006527141, 30.117051271857633 ], [ -95.320043006865376, 30.117142271526152 ], [ -95.320227007044963, 30.117944271484905 ], [ -95.320622007132997, 30.118403271940871 ], [ -95.321333007235083, 30.118792271754103 ], [ -95.321834007311168, 30.11893027172145 ], [ -95.322387007458588, 30.118884271577251 ], [ -95.323072007701157, 30.118632271935251 ], [ -95.324469007807721, 30.11737327191727 ], [ -95.324917007607539, 30.117121271269088 ], [ -95.325524008334853, 30.117121271496867 ], [ -95.327078008150465, 30.117511271705521 ], [ -95.327658008420016, 30.11780927135365 ], [ -95.32818400893234, 30.118359271238024 ], [ -95.328474008992174, 30.118955271451231 ], [ -95.32857900892219, 30.119367271952132 ], [ -95.328421008771315, 30.120696271658133 ], [ -95.32807800919467, 30.121566271846135 ], [ -95.328020008761584, 30.121982272548539 ], [ -95.32794600857757, 30.122528272544599 ], [ -95.328288009400282, 30.123720272574978 ], [ -95.328973009276339, 30.125232273356904 ], [ -95.329130009736545, 30.126102273103271 ], [ -95.329209009640849, 30.12685827322548 ], [ -95.329551009935557, 30.128714273751314 ], [ -95.329841009992293, 30.129493274106711 ], [ -95.33039401042619, 30.130432274046978 ], [ -95.331000010058219, 30.131234274546848 ], [ -95.331658010918417, 30.13189927400872 ], [ -95.332211010834342, 30.132357274099856 ], [ -95.33308101079848, 30.132724274291757 ], [ -95.335005011635388, 30.132426274131799 ], [ -95.336244012005437, 30.132404273808493 ], [ -95.336433011482612, 30.132430273786987 ], [ -95.337510011533084, 30.132454274314931 ], [ -95.337740011995351, 30.132454274166339 ], [ -95.33785401225127, 30.132498274081399 ], [ -95.338154012402299, 30.132674274034361 ], [ -95.338339012324127, 30.132798274355192 ], [ -95.338578012372082, 30.132992274007279 ], [ -95.338675012027608, 30.133107274224553 ], [ -95.338763011830693, 30.133243273843508 ], [ -95.338798011973367, 30.133323274588125 ], [ -95.338833012794581, 30.133418274082793 ], [ -95.338909012611879, 30.133396274198208 ], [ -95.339248012405022, 30.13329827427955 ], [ -95.339907012557447, 30.133275273871394 ], [ -95.340539013092638, 30.133390274441822 ], [ -95.341725013148704, 30.133779274478091 ], [ -95.342357012916494, 30.13368827434175 ], [ -95.34285801294692, 30.133848274438279 ], [ -95.343781013528542, 30.133780273983572 ], [ -95.344255013281185, 30.133917274142338 ], [ -95.344940013377169, 30.133688274277091 ], [ -95.345283014361726, 30.133734273760012 ], [ -95.345757014143231, 30.13403227415035 ], [ -95.345889014209888, 30.134513273840145 ], [ -95.346258013936605, 30.134880274082274 ], [ -95.346758014422448, 30.135223274400765 ], [ -95.347259015072694, 30.13595727416125 ], [ -95.34762401430801, 30.136238274206381 ], [ -95.347669014319891, 30.136273274312845 ], [ -95.347733014544971, 30.136323274549337 ], [ -95.350086015289847, 30.135006274585447 ], [ -95.350469015092955, 30.134800274517389 ], [ -95.352368015871789, 30.133781274181462 ], [ -95.358575017663313, 30.13032027300078 ], [ -95.358944017381674, 30.130114272872884 ], [ -95.359831017328872, 30.129614273225449 ], [ -95.360865018262416, 30.129034272437853 ], [ -95.361539018328799, 30.128671272941762 ], [ -95.362228018354443, 30.128303272251532 ], [ -95.364310018973384, 30.127155271793072 ], [ -95.366561018923676, 30.125869272134043 ], [ -95.369136019471767, 30.124494271488629 ], [ -95.37093201996818, 30.123419270713164 ], [ -95.371299020529349, 30.123190271262462 ], [ -95.371781019870582, 30.122858270609779 ], [ -95.37224202039944, 30.122540270902622 ], [ -95.372524020686143, 30.122348270818733 ], [ -95.374912020552486, 30.120679270573891 ], [ -95.377546021130712, 30.118891270182345 ], [ -95.378097021500054, 30.118508269503696 ], [ -95.379078021535236, 30.117846269747286 ], [ -95.379904021804137, 30.117291269342967 ], [ -95.38201402206866, 30.11580426953801 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 71, "Tract": "48339694203", "Area_SqMi": 5.4146091331286037, "total_2009": 170, "total_2010": 264, "total_2011": 263, "total_2012": 165, "total_2013": 230, "total_2014": 281, "total_2015": 312, "total_2016": 430, "total_2017": 539, "total_2018": 603, "total_2019": 599, "total_2020": 648, "age1": 282, "age2": 372, "age3": 124, "earn1": 189, "earn2": 274, "earn3": 315, "naics_s01": 0, "naics_s02": 0, "naics_s03": 76, "naics_s04": 38, "naics_s05": 0, "naics_s06": 85, "naics_s07": 189, "naics_s08": 24, "naics_s09": 0, "naics_s10": 31, "naics_s11": 8, "naics_s12": 83, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 17, "naics_s17": 15, "naics_s18": 152, "naics_s19": 58, "naics_s20": 0, "race1": 633, "race2": 90, "race3": 2, "race4": 41, "race5": 4, "race6": 8, "ethnicity1": 617, "ethnicity2": 161, "edu1": 98, "edu2": 151, "edu3": 147, "edu4": 100, "Shape_Length": 57229.649325669816, "Shape_Area": 150950035.43547639, "total_2021": 650, "total_2022": 778 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.566250085006814, 30.432226326621102 ], [ -95.565991084709438, 30.432153326358762 ], [ -95.565366083843699, 30.432005326937535 ], [ -95.564050084484904, 30.431691326974782 ], [ -95.563018083459625, 30.431464327167976 ], [ -95.562281083245409, 30.431321327110357 ], [ -95.5622380836746, 30.431311326724892 ], [ -95.561964083684629, 30.431248326489264 ], [ -95.561644083552125, 30.431173326553118 ], [ -95.561521083155782, 30.431145326597623 ], [ -95.560610083588344, 30.430943327003391 ], [ -95.559853082612662, 30.430759326908742 ], [ -95.558745082441405, 30.430519327011222 ], [ -95.557930081992708, 30.430322326594027 ], [ -95.557269081818234, 30.430179326316924 ], [ -95.55524308175886, 30.429725326972239 ], [ -95.554190080939961, 30.429512326567032 ], [ -95.554076081178749, 30.429489326836531 ], [ -95.553269080988898, 30.429301326554565 ], [ -95.551968081219698, 30.429048327035247 ], [ -95.551386080580414, 30.42891532689746 ], [ -95.550474080021658, 30.428714326652468 ], [ -95.549916080359921, 30.428591326711732 ], [ -95.549147079578759, 30.428403326418959 ], [ -95.548483079566168, 30.428252326812299 ], [ -95.547704079766106, 30.428064326732621 ], [ -95.547063079140486, 30.427916326934184 ], [ -95.545970079199833, 30.427640326998166 ], [ -95.545746079332361, 30.427589326205364 ], [ -95.545404079155588, 30.427512326850611 ], [ -95.543919078440993, 30.427175326404516 ], [ -95.542027078273932, 30.426733326991112 ], [ -95.541704078345191, 30.42666232683246 ], [ -95.540823078307639, 30.426466326721865 ], [ -95.539892077354665, 30.426252326921951 ], [ -95.53872807687523, 30.425999326173059 ], [ -95.53725607698091, 30.425640326936762 ], [ -95.535179076683974, 30.42518532628246 ], [ -95.533108075467482, 30.424697326505495 ], [ -95.532325075998386, 30.424503326176808 ], [ -95.531799074991213, 30.424372326333728 ], [ -95.531081075140222, 30.42418632622811 ], [ -95.530782074946416, 30.424106326731625 ], [ -95.530186075085055, 30.423945326764564 ], [ -95.528963075135579, 30.423628326303266 ], [ -95.527967074802348, 30.423358326077626 ], [ -95.527832073908527, 30.423321326549328 ], [ -95.527110074125687, 30.423137326147184 ], [ -95.526087074130373, 30.422943326194652 ], [ -95.525467073707901, 30.422792326219721 ], [ -95.524833073066333, 30.422641326368741 ], [ -95.524061073414586, 30.422465326013011 ], [ -95.522719072750832, 30.422188326540873 ], [ -95.521915072904534, 30.422027326031156 ], [ -95.520591072364084, 30.421718325916007 ], [ -95.51848907198908, 30.421246326178338 ], [ -95.517183071952218, 30.42097332657028 ], [ -95.514158070918626, 30.420311326103846 ], [ -95.513317070456552, 30.420119325975289 ], [ -95.512653070233469, 30.419964325906911 ], [ -95.512219070197247, 30.419864326541244 ], [ -95.509253069520085, 30.419186326612728 ], [ -95.508420068743987, 30.419005325845614 ], [ -95.507614069145944, 30.418822326074004 ], [ -95.507292068639856, 30.418797325840515 ], [ -95.506839069062082, 30.418747326481295 ], [ -95.50646306837838, 30.418731326215454 ], [ -95.506111068741319, 30.418728326640121 ], [ -95.505649067944248, 30.41874932619109 ], [ -95.504633068572076, 30.418819326390917 ], [ -95.504047068209871, 30.418861326380306 ], [ -95.503628068167714, 30.418875326144388 ], [ -95.503581067748001, 30.41887532624412 ], [ -95.503430067491536, 30.418875326270975 ], [ -95.503265067800143, 30.41887532602674 ], [ -95.502739067733245, 30.418876326127041 ], [ -95.502337068091506, 30.418900326333972 ], [ -95.501710067837706, 30.41893832667829 ], [ -95.500980067471119, 30.419038326429394 ], [ -95.500006066585044, 30.419194326797722 ], [ -95.498750066785902, 30.419522326452714 ], [ -95.497865066370721, 30.419770327167189 ], [ -95.497773066841091, 30.419796326789715 ], [ -95.496897066002234, 30.420035326848456 ], [ -95.495992065903735, 30.420289326848419 ], [ -95.495016066309205, 30.420533326579207 ], [ -95.49418106572351, 30.420660326951218 ], [ -95.493553065136751, 30.42072832750188 ], [ -95.493279064971702, 30.420758326949912 ], [ -95.49262206534263, 30.420878326970424 ], [ -95.491966064967627, 30.421065327563728 ], [ -95.49207206524278, 30.421400327676015 ], [ -95.4922770647227, 30.42204432747014 ], [ -95.492759065184345, 30.423587327264872 ], [ -95.493100065445859, 30.424679327940684 ], [ -95.493219065849658, 30.425059328062499 ], [ -95.494075065944358, 30.42789932837038 ], [ -95.494610066154053, 30.429715328708546 ], [ -95.494825066153879, 30.430741328961346 ], [ -95.495004065856079, 30.431587328927524 ], [ -95.495108066814993, 30.432299329400479 ], [ -95.495162066273252, 30.4326643296641 ], [ -95.49527406699228, 30.43365232994212 ], [ -95.495366066148023, 30.434702329440157 ], [ -95.495371066737945, 30.434781330248285 ], [ -95.495391066277506, 30.435138329530936 ], [ -95.495443066237584, 30.436035330060896 ], [ -95.495771066371162, 30.436096330078339 ], [ -95.496241066777472, 30.436202329673154 ], [ -95.496614067111437, 30.436294330471455 ], [ -95.497329067290337, 30.436450330274802 ], [ -95.500214067807079, 30.437234330416249 ], [ -95.500908068217868, 30.437423330061055 ], [ -95.50228206887553, 30.437796330671421 ], [ -95.503777068464217, 30.438202329816541 ], [ -95.505042068974149, 30.438625329867726 ], [ -95.505487069112689, 30.43875533053264 ], [ -95.506068069280758, 30.438979330375581 ], [ -95.506411069255407, 30.43901833010592 ], [ -95.506686069193435, 30.439086330339368 ], [ -95.507099069977272, 30.439157330312405 ], [ -95.508443070286773, 30.439282330527963 ], [ -95.510367070689043, 30.439659330561348 ], [ -95.515275072416117, 30.440777330012875 ], [ -95.517449072100192, 30.441284330576366 ], [ -95.51843107275549, 30.441518330564715 ], [ -95.520156072747682, 30.441879330736654 ], [ -95.520791073720133, 30.442027330237305 ], [ -95.521383074024399, 30.442175330802002 ], [ -95.522377073593333, 30.442409330206107 ], [ -95.522755073958109, 30.442491330773169 ], [ -95.523475074207738, 30.442666330792441 ], [ -95.524193074286956, 30.442827330695287 ], [ -95.524610074660572, 30.442926330881615 ], [ -95.525037074765692, 30.443036330253992 ], [ -95.526656075021052, 30.443419330904494 ], [ -95.527128074639833, 30.443519330062138 ], [ -95.528346075974341, 30.443805330512596 ], [ -95.529001075381927, 30.443963330782786 ], [ -95.529465075468067, 30.444061330916863 ], [ -95.530143076188594, 30.44421833071106 ], [ -95.53061207631022, 30.444340330853841 ], [ -95.531751076863515, 30.444601330911979 ], [ -95.532432076372174, 30.44476433017488 ], [ -95.533180076684033, 30.444929330656063 ], [ -95.533964076856364, 30.445109330684033 ], [ -95.534602077210849, 30.445265330731988 ], [ -95.534879077505991, 30.445308330289819 ], [ -95.535431077339283, 30.445452330604304 ], [ -95.535796077860212, 30.445530330788365 ], [ -95.536856077888885, 30.445771330154358 ], [ -95.537518077853747, 30.445929330774415 ], [ -95.538000078334306, 30.446040330464069 ], [ -95.538430078567885, 30.446147330632833 ], [ -95.53894807802331, 30.446260330482879 ], [ -95.539430078538146, 30.446357330740465 ], [ -95.540475078614762, 30.446585330877475 ], [ -95.541179079286294, 30.446732330462513 ], [ -95.541546078907629, 30.446802330301438 ], [ -95.542412078822082, 30.447002330360185 ], [ -95.542830079326237, 30.447099330677499 ], [ -95.543404079371825, 30.447218331035089 ], [ -95.543846079972141, 30.44732633028012 ], [ -95.545592080294483, 30.447714330977675 ], [ -95.545716079936966, 30.447753330774987 ], [ -95.546392080241503, 30.447903330832332 ], [ -95.549106080914981, 30.448536330511271 ], [ -95.549444080811213, 30.448619330977284 ], [ -95.550388081548988, 30.44884633074485 ], [ -95.552087081997172, 30.44923133074494 ], [ -95.552166081368952, 30.449062330351168 ], [ -95.55222408204483, 30.44892433080819 ], [ -95.552253082011447, 30.448770330987244 ], [ -95.553427082411943, 30.444917329517935 ], [ -95.55351008206047, 30.444641329804551 ], [ -95.553627082406962, 30.444460329820313 ], [ -95.553836082307896, 30.444289329721808 ], [ -95.554112082544748, 30.444178329858438 ], [ -95.554458082536385, 30.444167329736604 ], [ -95.55553708198542, 30.444398329198158 ], [ -95.555831082859754, 30.444406329838337 ], [ -95.556105082374813, 30.444317329171859 ], [ -95.556962083146828, 30.444031329331768 ], [ -95.558413083497058, 30.443696329271283 ], [ -95.558896082796721, 30.443585329154043 ], [ -95.560073083177272, 30.443235329636188 ], [ -95.560680083232043, 30.443174328833649 ], [ -95.561389084267617, 30.443258328965538 ], [ -95.562394084112569, 30.443377329493178 ], [ -95.562716084080961, 30.443292329474126 ], [ -95.563025084757712, 30.443013328899838 ], [ -95.563303083894965, 30.442660328554478 ], [ -95.563419084805517, 30.442429329054864 ], [ -95.563515084052327, 30.442030328546892 ], [ -95.564348084620264, 30.438547327930785 ], [ -95.564640084062859, 30.437512327579217 ], [ -95.566250085006814, 30.432226326621102 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 72, "Tract": "48339694209", "Area_SqMi": 7.6433352017082488, "total_2009": 228, "total_2010": 289, "total_2011": 264, "total_2012": 333, "total_2013": 341, "total_2014": 603, "total_2015": 579, "total_2016": 468, "total_2017": 619, "total_2018": 712, "total_2019": 764, "total_2020": 761, "age1": 161, "age2": 259, "age3": 85, "earn1": 122, "earn2": 186, "earn3": 197, "naics_s01": 9, "naics_s02": 0, "naics_s03": 0, "naics_s04": 46, "naics_s05": 11, "naics_s06": 97, "naics_s07": 84, "naics_s08": 0, "naics_s09": 3, "naics_s10": 13, "naics_s11": 17, "naics_s12": 7, "naics_s13": 0, "naics_s14": 32, "naics_s15": 0, "naics_s16": 84, "naics_s17": 2, "naics_s18": 79, "naics_s19": 21, "naics_s20": 0, "race1": 424, "race2": 48, "race3": 0, "race4": 26, "race5": 1, "race6": 6, "ethnicity1": 422, "ethnicity2": 83, "edu1": 58, "edu2": 106, "edu3": 111, "edu4": 69, "Shape_Length": 69593.257667094556, "Shape_Area": 213083103.72468781, "total_2021": 479, "total_2022": 505 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.550968080015025, 30.411969323288385 ], [ -95.551951079975879, 30.408861322184354 ], [ -95.550331078978772, 30.408487322824705 ], [ -95.547648079061716, 30.407795322879434 ], [ -95.547576078603313, 30.4077763226874 ], [ -95.545721078660023, 30.407335322602968 ], [ -95.544403077460572, 30.407019322846139 ], [ -95.543829077629113, 30.40688232287426 ], [ -95.542258077287556, 30.406509322259332 ], [ -95.542393077290882, 30.40638032249684 ], [ -95.542763077787512, 30.406174322128475 ], [ -95.543714077935363, 30.40626632255232 ], [ -95.544375077594609, 30.406083322438906 ], [ -95.544522077712969, 30.40604132200497 ], [ -95.544653077364018, 30.406060321941137 ], [ -95.544727077331657, 30.406072322685553 ], [ -95.545021077805359, 30.40582132199755 ], [ -95.545169078050094, 30.405317321825532 ], [ -95.545903077658267, 30.404564322329641 ], [ -95.546054077776873, 30.403682321845178 ], [ -95.546348077784444, 30.403305321744398 ], [ -95.546351078087213, 30.402801321414643 ], [ -95.54624707764296, 30.402618321772234 ], [ -95.546010077625496, 30.402204321496821 ], [ -95.545484077358466, 30.401285321720124 ], [ -95.545486077277843, 30.40078132136194 ], [ -95.544473077508258, 30.3992643212916 ], [ -95.54449307681665, 30.395735320617337 ], [ -95.544787077356759, 30.395358320235008 ], [ -95.544799077009401, 30.393215320081488 ], [ -95.545646077544703, 30.391948319792963 ], [ -95.543516076689315, 30.39059631926165 ], [ -95.543417076922353, 30.390657318885548 ], [ -95.542853076455927, 30.39016431903601 ], [ -95.541102075989301, 30.389960319413365 ], [ -95.540072075579545, 30.389672319101216 ], [ -95.539807076087186, 30.389608319030625 ], [ -95.539581075469087, 30.389555318731649 ], [ -95.538578075928257, 30.389317319115072 ], [ -95.538434075340717, 30.38928531889583 ], [ -95.537341075381278, 30.389041318857863 ], [ -95.535661074808544, 30.388660318767926 ], [ -95.534421074141179, 30.388380319352432 ], [ -95.534259074014273, 30.388332318796735 ], [ -95.534181074536718, 30.388302318699594 ], [ -95.533961074016219, 30.388195319046254 ], [ -95.53389007391084, 30.388152318902748 ], [ -95.533761074532705, 30.388057318977491 ], [ -95.533725073837502, 30.388025319028714 ], [ -95.533643074372094, 30.387953319399941 ], [ -95.53355907406781, 30.3878583189829 ], [ -95.533537073929892, 30.387834318687872 ], [ -95.533510073661319, 30.387799319378093 ], [ -95.533490074023092, 30.387774319182601 ], [ -95.533451074035156, 30.387724319199947 ], [ -95.531273073284396, 30.384937318751067 ], [ -95.530726073719151, 30.384238318227855 ], [ -95.529111072364046, 30.382170317589107 ], [ -95.529043072445305, 30.382083317735109 ], [ -95.528963072427146, 30.381974317539569 ], [ -95.528919072820941, 30.381898317685994 ], [ -95.528856072523737, 30.381762317859135 ], [ -95.528813072515035, 30.381618317596136 ], [ -95.528790072893216, 30.381488317878087 ], [ -95.527443072675453, 30.381195317914006 ], [ -95.526928072624017, 30.381077317667526 ], [ -95.526355071891047, 30.380935317751291 ], [ -95.526239072261134, 30.380910317831216 ], [ -95.52584207209128, 30.380837318195329 ], [ -95.525676071692629, 30.380811317472535 ], [ -95.525501071351044, 30.380889317700113 ], [ -95.525348071434095, 30.380973318051737 ], [ -95.524755071839309, 30.38135631809908 ], [ -95.52461107184979, 30.381457318322472 ], [ -95.523858071706471, 30.381985318357223 ], [ -95.523594071596492, 30.382179318272815 ], [ -95.523327070773902, 30.382291317798181 ], [ -95.523214071540721, 30.382340317951193 ], [ -95.522731071494135, 30.382512317902734 ], [ -95.522288071244063, 30.382663318753874 ], [ -95.522013071007976, 30.382840318246469 ], [ -95.521830070637733, 30.383014318002196 ], [ -95.521414070761892, 30.383391318549197 ], [ -95.521052070760632, 30.383822318341405 ], [ -95.520803070243403, 30.38424431880135 ], [ -95.520688070564802, 30.38461531873071 ], [ -95.520244070925358, 30.385498319402167 ], [ -95.519879071044556, 30.386259318821391 ], [ -95.519765070587511, 30.386592319248063 ], [ -95.519657070026412, 30.386913319717276 ], [ -95.519574070994508, 30.387282319690957 ], [ -95.519364070405274, 30.388008319467804 ], [ -95.519105070414625, 30.388849319690429 ], [ -95.518912070125239, 30.38944631987934 ], [ -95.518819070810792, 30.389928319692704 ], [ -95.518662070527554, 30.39043831977672 ], [ -95.518291070064734, 30.391933320775365 ], [ -95.518213069955152, 30.392297320790735 ], [ -95.518104070322636, 30.39271232087394 ], [ -95.518059069960955, 30.392959320754073 ], [ -95.518025070353204, 30.393203320720243 ], [ -95.517983070322686, 30.393587320615886 ], [ -95.517941070249123, 30.393880320856489 ], [ -95.517855070270443, 30.39431532074633 ], [ -95.517742070530147, 30.39474732133267 ], [ -95.517651070011269, 30.395030320803393 ], [ -95.517587070893754, 30.395210320870593 ], [ -95.517551070640948, 30.395311320902561 ], [ -95.517370070556382, 30.395749321462485 ], [ -95.517211070418426, 30.396092321409665 ], [ -95.517038069841618, 30.396431321055609 ], [ -95.51678807063557, 30.396870320994545 ], [ -95.516698070111957, 30.397016321068456 ], [ -95.516413070285182, 30.397444321911088 ], [ -95.516205070036463, 30.397722321932505 ], [ -95.515877070373847, 30.398129321704872 ], [ -95.515641070385939, 30.398389321723418 ], [ -95.515308069978389, 30.398524321524164 ], [ -95.515198070360285, 30.398444322159342 ], [ -95.514938069686863, 30.398242321728475 ], [ -95.514428069418656, 30.397835321773442 ], [ -95.514178070113232, 30.397623321360719 ], [ -95.513935069545155, 30.39741032187645 ], [ -95.512297069357658, 30.396003321797519 ], [ -95.511869068520895, 30.395687321415533 ], [ -95.511420068895461, 30.395392321592897 ], [ -95.510957069149597, 30.395116321141622 ], [ -95.510639068460989, 30.394945321673262 ], [ -95.510314068533063, 30.394783321500981 ], [ -95.509814068346103, 30.394558321598605 ], [ -95.509431068549176, 30.394405321482743 ], [ -95.503246066718802, 30.392196321078941 ], [ -95.502049065981907, 30.39175832136176 ], [ -95.501893066047231, 30.391711320853791 ], [ -95.501649066498032, 30.391640320764591 ], [ -95.501224066192634, 30.391528321198095 ], [ -95.501072066171545, 30.391488320685106 ], [ -95.500856065604481, 30.39142732060682 ], [ -95.500426065511462, 30.391325321125315 ], [ -95.499989065398168, 30.391237321025791 ], [ -95.499552065547775, 30.391157321260511 ], [ -95.49904106536853, 30.39108632109291 ], [ -95.498738065840655, 30.391053320897328 ], [ -95.49828206482411, 30.391027320886824 ], [ -95.49782606472256, 30.391018320971259 ], [ -95.497072064775281, 30.391034321307615 ], [ -95.496670064612019, 30.391042321121457 ], [ -95.496213064910023, 30.391053320840776 ], [ -95.495751064908006, 30.391066320609163 ], [ -95.494608064184021, 30.391092321196645 ], [ -95.493351063556773, 30.391092320894824 ], [ -95.492459063880119, 30.39110932131036 ], [ -95.490135063044136, 30.391165320828904 ], [ -95.488490062708806, 30.391202321316555 ], [ -95.487942062736124, 30.391221321338346 ], [ -95.486699062071111, 30.391252321428599 ], [ -95.486782062344389, 30.393577322198308 ], [ -95.486783062386678, 30.393672321933813 ], [ -95.486853062901972, 30.395894322649323 ], [ -95.486969062495675, 30.39953132324807 ], [ -95.487037062738153, 30.401655323074024 ], [ -95.487224063224048, 30.404050324387349 ], [ -95.487361062821989, 30.404980324486399 ], [ -95.487413063647779, 30.405339323968445 ], [ -95.487428062757701, 30.405411324113008 ], [ -95.487897062995572, 30.407537324995424 ], [ -95.487997063512083, 30.407992324514655 ], [ -95.489995064242649, 30.414525326063103 ], [ -95.490621064135638, 30.416571326412789 ], [ -95.490957064340492, 30.417646326843837 ], [ -95.490980064146484, 30.417719326485088 ], [ -95.491300065276576, 30.41878132679135 ], [ -95.491841065078205, 30.420668326763728 ], [ -95.491966064967627, 30.421065327563728 ], [ -95.49262206534263, 30.420878326970424 ], [ -95.493279064971702, 30.420758326949912 ], [ -95.493553065136751, 30.42072832750188 ], [ -95.49418106572351, 30.420660326951218 ], [ -95.495016066309205, 30.420533326579207 ], [ -95.495992065903735, 30.420289326848419 ], [ -95.496897066002234, 30.420035326848456 ], [ -95.497773066841091, 30.419796326789715 ], [ -95.497865066370721, 30.419770327167189 ], [ -95.498750066785902, 30.419522326452714 ], [ -95.500006066585044, 30.419194326797722 ], [ -95.500980067471119, 30.419038326429394 ], [ -95.501710067837706, 30.41893832667829 ], [ -95.502337068091506, 30.418900326333972 ], [ -95.502739067733245, 30.418876326127041 ], [ -95.503265067800143, 30.41887532602674 ], [ -95.503430067491536, 30.418875326270975 ], [ -95.503581067748001, 30.41887532624412 ], [ -95.503628068167714, 30.418875326144388 ], [ -95.504047068209871, 30.418861326380306 ], [ -95.504633068572076, 30.418819326390917 ], [ -95.505649067944248, 30.41874932619109 ], [ -95.506111068741319, 30.418728326640121 ], [ -95.50646306837838, 30.418731326215454 ], [ -95.506839069062082, 30.418747326481295 ], [ -95.507292068639856, 30.418797325840515 ], [ -95.507614069145944, 30.418822326074004 ], [ -95.508420068743987, 30.419005325845614 ], [ -95.509253069520085, 30.419186326612728 ], [ -95.512219070197247, 30.419864326541244 ], [ -95.512653070233469, 30.419964325906911 ], [ -95.513317070456552, 30.420119325975289 ], [ -95.514158070918626, 30.420311326103846 ], [ -95.517183071952218, 30.42097332657028 ], [ -95.51848907198908, 30.421246326178338 ], [ -95.520591072364084, 30.421718325916007 ], [ -95.521915072904534, 30.422027326031156 ], [ -95.522719072750832, 30.422188326540873 ], [ -95.524061073414586, 30.422465326013011 ], [ -95.524833073066333, 30.422641326368741 ], [ -95.525467073707901, 30.422792326219721 ], [ -95.526087074130373, 30.422943326194652 ], [ -95.527110074125687, 30.423137326147184 ], [ -95.527832073908527, 30.423321326549328 ], [ -95.527967074802348, 30.423358326077626 ], [ -95.528963075135579, 30.423628326303266 ], [ -95.530186075085055, 30.423945326764564 ], [ -95.530782074946416, 30.424106326731625 ], [ -95.531081075140222, 30.42418632622811 ], [ -95.531799074991213, 30.424372326333728 ], [ -95.532325075998386, 30.424503326176808 ], [ -95.533108075467482, 30.424697326505495 ], [ -95.535179076683974, 30.42518532628246 ], [ -95.53725607698091, 30.425640326936762 ], [ -95.53872807687523, 30.425999326173059 ], [ -95.539892077354665, 30.426252326921951 ], [ -95.540823078307639, 30.426466326721865 ], [ -95.541704078345191, 30.42666232683246 ], [ -95.54272307839031, 30.423275325759771 ], [ -95.543397078389532, 30.421050325567144 ], [ -95.543430077757549, 30.420979325764808 ], [ -95.54350907820394, 30.420857325213738 ], [ -95.543562078601241, 30.420798325355296 ], [ -95.543620077960895, 30.420739325411848 ], [ -95.546626078884785, 30.418454324443896 ], [ -95.547933078721726, 30.417461324039714 ], [ -95.548068079714454, 30.41735732457807 ], [ -95.548127078815469, 30.417318324693777 ], [ -95.548240079253063, 30.417230324730699 ], [ -95.548316079256452, 30.417160324718974 ], [ -95.548460079514143, 30.417010324353438 ], [ -95.548511079115613, 30.416948324141291 ], [ -95.549880079944316, 30.415156323802009 ], [ -95.550094079813121, 30.414796324300351 ], [ -95.550447079753681, 30.413625323659311 ], [ -95.550968080015025, 30.411969323288385 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 73, "Tract": "48339692004", "Area_SqMi": 1.6208891683563476, "total_2009": 54, "total_2010": 73, "total_2011": 97, "total_2012": 91, "total_2013": 85, "total_2014": 89, "total_2015": 123, "total_2016": 436, "total_2017": 365, "total_2018": 441, "total_2019": 499, "total_2020": 478, "age1": 101, "age2": 230, "age3": 126, "earn1": 55, "earn2": 126, "earn3": 276, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 278, "naics_s05": 56, "naics_s06": 4, "naics_s07": 12, "naics_s08": 9, "naics_s09": 7, "naics_s10": 1, "naics_s11": 3, "naics_s12": 8, "naics_s13": 0, "naics_s14": 6, "naics_s15": 24, "naics_s16": 3, "naics_s17": 36, "naics_s18": 1, "naics_s19": 9, "naics_s20": 0, "race1": 393, "race2": 25, "race3": 9, "race4": 26, "race5": 1, "race6": 3, "ethnicity1": 322, "ethnicity2": 135, "edu1": 91, "edu2": 88, "edu3": 110, "edu4": 67, "Shape_Length": 30095.77970658159, "Shape_Area": 45187615.834237769, "total_2021": 530, "total_2022": 457 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.427939035805196, 30.153428275151654 ], [ -95.427892035621667, 30.153407275308425 ], [ -95.427739036403736, 30.152147274579363 ], [ -95.427760035576171, 30.151053275191074 ], [ -95.427767035800798, 30.14549527384035 ], [ -95.427428034909695, 30.138625272676613 ], [ -95.426196035029477, 30.138768272592973 ], [ -95.425491035165209, 30.138782272266447 ], [ -95.42418903401483, 30.138808272300654 ], [ -95.420704033678106, 30.138724272518136 ], [ -95.419373033507171, 30.13869227215098 ], [ -95.418602032937017, 30.138673272636545 ], [ -95.41844403290402, 30.138627272803653 ], [ -95.41804103331701, 30.138228272084646 ], [ -95.417732032662457, 30.137917272790204 ], [ -95.413535032168184, 30.137764272602379 ], [ -95.411781031693309, 30.13785827263354 ], [ -95.410660031445445, 30.137843272327121 ], [ -95.410660030416452, 30.13796927248913 ], [ -95.410646031214398, 30.13820227264387 ], [ -95.41061603142748, 30.138372272629422 ], [ -95.410600030755589, 30.138441272737158 ], [ -95.410576030753319, 30.138544272911737 ], [ -95.410486031304245, 30.138776272931693 ], [ -95.410414030599881, 30.138919272567591 ], [ -95.410337031117209, 30.139047273009659 ], [ -95.410230030356061, 30.139212272982366 ], [ -95.410133030778255, 30.139344273021457 ], [ -95.410037030379357, 30.139454273145088 ], [ -95.40990603102901, 30.139583273523321 ], [ -95.409777030984742, 30.139684273458879 ], [ -95.409465030973763, 30.139887272948862 ], [ -95.409199030550639, 30.140040273262432 ], [ -95.408837030588387, 30.140223272946869 ], [ -95.408669030083402, 30.140325273084819 ], [ -95.408537030951919, 30.140454273448071 ], [ -95.408415030893281, 30.140596273710226 ], [ -95.408328030887759, 30.140748273521176 ], [ -95.408258030402166, 30.140903273253148 ], [ -95.408212030549876, 30.141034273537358 ], [ -95.408178029992328, 30.141179273114741 ], [ -95.408176030921297, 30.141207273410597 ], [ -95.408172030649141, 30.141341273319796 ], [ -95.408179029978257, 30.141484273741529 ], [ -95.408209030041945, 30.141636273816129 ], [ -95.408257030788747, 30.141775273264464 ], [ -95.408344030331904, 30.141951273895856 ], [ -95.408454030451864, 30.142124273884246 ], [ -95.409039030643925, 30.142932274234287 ], [ -95.409200030749915, 30.143170273904563 ], [ -95.40588603040608, 30.144992274426695 ], [ -95.402066029366338, 30.147597275273117 ], [ -95.398357028166203, 30.149902275769843 ], [ -95.397645028548013, 30.150305275663836 ], [ -95.397064028249417, 30.150645275797334 ], [ -95.397338028548234, 30.150935275741784 ], [ -95.397760028707538, 30.151027275870074 ], [ -95.398181028121741, 30.15093527599058 ], [ -95.398867028052805, 30.150591275810733 ], [ -95.399394028749356, 30.150729276134818 ], [ -95.400305029080556, 30.15181027608898 ], [ -95.400341028771663, 30.151853275994711 ], [ -95.400396028823138, 30.151919275546195 ], [ -95.400415029033866, 30.151934275995153 ], [ -95.400765029290071, 30.152217275655328 ], [ -95.401529029340537, 30.152538275960289 ], [ -95.401768029073139, 30.152724276374524 ], [ -95.402531029368021, 30.153316276096735 ], [ -95.402953029943987, 30.153499275876644 ], [ -95.403004029740416, 30.153511275873729 ], [ -95.403353029733438, 30.153595276268138 ], [ -95.403428029823701, 30.153614276108637 ], [ -95.403905029880292, 30.153442276102354 ], [ -95.40403102981233, 30.153397276183991 ], [ -95.404640030062964, 30.153178275997345 ], [ -95.404778029640227, 30.153189276312784 ], [ -95.405429030692559, 30.1532442762324 ], [ -95.405457030631311, 30.153247276191159 ], [ -95.406119030006266, 30.153157276220522 ], [ -95.40663503100798, 30.153088276262672 ], [ -95.406828030584876, 30.153063275606069 ], [ -95.407408030803964, 30.153223275957146 ], [ -95.40755003054386, 30.153290276136484 ], [ -95.40827803063425, 30.153635276136491 ], [ -95.40993903129737, 30.154642276155219 ], [ -95.410040031047728, 30.154723276186829 ], [ -95.410025031307455, 30.154581276234378 ], [ -95.409995031710451, 30.154129275601434 ], [ -95.410001031923542, 30.154061276221164 ], [ -95.410046031461107, 30.15396027568012 ], [ -95.410235031448366, 30.153921276080531 ], [ -95.41062603152757, 30.153904276042159 ], [ -95.41082703217441, 30.153896275690229 ], [ -95.411376031980708, 30.153924275996687 ], [ -95.411568032243508, 30.153951275754988 ], [ -95.411709031494482, 30.153988276054672 ], [ -95.41180203225548, 30.154026275827533 ], [ -95.4118910324745, 30.154084276418963 ], [ -95.411965031974304, 30.154154275904876 ], [ -95.412022031527826, 30.154222275919579 ], [ -95.412057032554017, 30.154294275902597 ], [ -95.412095031710777, 30.154449276240801 ], [ -95.412130032343782, 30.154761276481526 ], [ -95.412193032409505, 30.155305276240135 ], [ -95.41222703164577, 30.155438276106064 ], [ -95.412266031703609, 30.155508276114237 ], [ -95.412316032294456, 30.155567276045968 ], [ -95.412469032643216, 30.155675276583036 ], [ -95.412549032368688, 30.155716276579202 ], [ -95.412799032162937, 30.155811276445469 ], [ -95.412941032517608, 30.155853275905613 ], [ -95.413182032765661, 30.155950276078816 ], [ -95.413263032151249, 30.15599927617405 ], [ -95.413332031972828, 30.156048276715214 ], [ -95.414096032550177, 30.15606527596416 ], [ -95.423197035113191, 30.156274275841728 ], [ -95.426673035800178, 30.156228276131149 ], [ -95.426740036074435, 30.156281276092923 ], [ -95.42679103641288, 30.156306276045104 ], [ -95.426816035419236, 30.156318275787754 ], [ -95.426929035937405, 30.156341276118187 ], [ -95.427065036096351, 30.156353276102763 ], [ -95.427546035608856, 30.156354275765693 ], [ -95.427558036201461, 30.154924275974313 ], [ -95.4275620364959, 30.154534275677918 ], [ -95.427939035805196, 30.153428275151654 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 74, "Tract": "48339693402", "Area_SqMi": 0.32784784525178962, "total_2009": 818, "total_2010": 733, "total_2011": 1280, "total_2012": 1031, "total_2013": 1167, "total_2014": 1488, "total_2015": 1374, "total_2016": 1403, "total_2017": 1353, "total_2018": 732, "total_2019": 727, "total_2020": 716, "age1": 145, "age2": 439, "age3": 210, "earn1": 159, "earn2": 249, "earn3": 386, "naics_s01": 8, "naics_s02": 0, "naics_s03": 0, "naics_s04": 75, "naics_s05": 5, "naics_s06": 157, "naics_s07": 74, "naics_s08": 101, "naics_s09": 0, "naics_s10": 0, "naics_s11": 72, "naics_s12": 8, "naics_s13": 0, "naics_s14": 93, "naics_s15": 0, "naics_s16": 105, "naics_s17": 19, "naics_s18": 14, "naics_s19": 63, "naics_s20": 0, "race1": 641, "race2": 100, "race3": 9, "race4": 28, "race5": 0, "race6": 16, "ethnicity1": 583, "ethnicity2": 211, "edu1": 135, "edu2": 193, "edu3": 194, "edu4": 127, "Shape_Length": 14173.046059964317, "Shape_Area": 9139836.8084248584, "total_2021": 794, "total_2022": 794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.464169051409243, 30.293129302089362 ], [ -95.464376052373865, 30.293077302276668 ], [ -95.463744051265309, 30.291167301800215 ], [ -95.463696052158909, 30.291021301840889 ], [ -95.463422052059769, 30.290204301469998 ], [ -95.463291051812334, 30.289814301608896 ], [ -95.463203051569096, 30.289604302052354 ], [ -95.462739051527478, 30.288495301865836 ], [ -95.462286050776342, 30.287557301621327 ], [ -95.461895051286447, 30.286871301566091 ], [ -95.461825050872605, 30.286749300663814 ], [ -95.461192051168965, 30.285690300546563 ], [ -95.460547050759232, 30.284800300783584 ], [ -95.460393050570829, 30.284588301065096 ], [ -95.459604050623426, 30.283481300862253 ], [ -95.458803049986074, 30.282280299928026 ], [ -95.458677049518528, 30.282049300319496 ], [ -95.458122049236437, 30.281032300372107 ], [ -95.457807049966107, 30.280235299580529 ], [ -95.457758049597771, 30.280110299619491 ], [ -95.457553049086926, 30.279529300199268 ], [ -95.457531049053472, 30.279462299362798 ], [ -95.457288049464097, 30.279547300005706 ], [ -95.456944049070103, 30.279688300244928 ], [ -95.456312049279163, 30.279970300293616 ], [ -95.455987049225556, 30.280107300019182 ], [ -95.455980049280825, 30.28082930035848 ], [ -95.45598004934935, 30.280851300033675 ], [ -95.455993048960522, 30.281399299993883 ], [ -95.455992049651556, 30.283573300473844 ], [ -95.455991049285515, 30.284535301169882 ], [ -95.455991049170237, 30.287212301778425 ], [ -95.455927049157538, 30.289761301871327 ], [ -95.455905050064885, 30.295041302815363 ], [ -95.456160049572745, 30.294999303149247 ], [ -95.456441049988527, 30.294956302855592 ], [ -95.457071050124895, 30.294811302778768 ], [ -95.457700050585416, 30.294665302452845 ], [ -95.461399050904546, 30.29378830216881 ], [ -95.462333051791958, 30.293565302616337 ], [ -95.464040051522375, 30.293159302469316 ], [ -95.464169051409243, 30.293129302089362 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 75, "Tract": "48339694603", "Area_SqMi": 36.747468662284895, "total_2009": 258, "total_2010": 377, "total_2011": 432, "total_2012": 440, "total_2013": 442, "total_2014": 398, "total_2015": 568, "total_2016": 692, "total_2017": 809, "total_2018": 1001, "total_2019": 1548, "total_2020": 1662, "age1": 542, "age2": 907, "age3": 279, "earn1": 324, "earn2": 521, "earn3": 883, "naics_s01": 4, "naics_s02": 381, "naics_s03": 1, "naics_s04": 106, "naics_s05": 16, "naics_s06": 44, "naics_s07": 329, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 34, "naics_s12": 202, "naics_s13": 0, "naics_s14": 81, "naics_s15": 0, "naics_s16": 56, "naics_s17": 173, "naics_s18": 253, "naics_s19": 45, "naics_s20": 0, "race1": 1463, "race2": 147, "race3": 7, "race4": 79, "race5": 4, "race6": 28, "ethnicity1": 1258, "ethnicity2": 470, "edu1": 227, "edu2": 312, "edu3": 394, "edu4": 253, "Shape_Length": 160486.1477568018, "Shape_Area": 1024456532.3833163, "total_2021": 1494, "total_2022": 1728 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.805717142119192, 30.354683302452184 ], [ -95.805602141787475, 30.353241302653306 ], [ -95.805296141321563, 30.350382301798746 ], [ -95.805277142066217, 30.350205301846156 ], [ -95.805234141221433, 30.34984430186071 ], [ -95.805227141795982, 30.349763301606419 ], [ -95.80517714189611, 30.34922530160285 ], [ -95.805161141917964, 30.34904730149232 ], [ -95.805089141912717, 30.348270301147796 ], [ -95.804735140978053, 30.342944299903031 ], [ -95.804714141363888, 30.342623300588311 ], [ -95.804676141115223, 30.342204300162916 ], [ -95.804597141560478, 30.341728300258605 ], [ -95.804452141041466, 30.339349299739396 ], [ -95.80444614086565, 30.339222299757239 ], [ -95.804432141408384, 30.339005299405521 ], [ -95.804414141151184, 30.338721299346759 ], [ -95.804400141417204, 30.338679299362063 ], [ -95.804409140753535, 30.338629299108039 ], [ -95.804404140723349, 30.338501299495714 ], [ -95.804358140891509, 30.337805299225369 ], [ -95.804335141063419, 30.334610298873301 ], [ -95.804368141072047, 30.330960297577327 ], [ -95.80433214039364, 30.32542129690345 ], [ -95.804347140086762, 30.323270296312128 ], [ -95.804369140191099, 30.320123295433348 ], [ -95.804345139620821, 30.31647329474486 ], [ -95.804344139875596, 30.31596029498786 ], [ -95.804342139773709, 30.314433294254595 ], [ -95.804349140093478, 30.313737293979237 ], [ -95.804364139315467, 30.312281293940373 ], [ -95.804364139659, 30.311019293404577 ], [ -95.804357139849202, 30.307894293362452 ], [ -95.804353139150393, 30.307070293447175 ], [ -95.804310139320222, 30.302018291904087 ], [ -95.804309139500759, 30.301950292002527 ], [ -95.804296138818245, 30.298462291340588 ], [ -95.804306138596615, 30.296322290685964 ], [ -95.80432213864934, 30.292864290602264 ], [ -95.804312138949214, 30.288700289113596 ], [ -95.804294138881843, 30.28474728819624 ], [ -95.804294138889048, 30.284681288637543 ], [ -95.804317138027386, 30.280388287967909 ], [ -95.804274137728271, 30.274133286058191 ], [ -95.804205138050023, 30.270029285942794 ], [ -95.804204137548979, 30.269369285707363 ], [ -95.804204138086803, 30.269111285765526 ], [ -95.804254137439287, 30.267791284706721 ], [ -95.804252137234059, 30.264857284156946 ], [ -95.804252137744768, 30.261515284253907 ], [ -95.804246137725968, 30.260935284065301 ], [ -95.80421513717404, 30.257856283438091 ], [ -95.804222137483364, 30.254590282448198 ], [ -95.804222137259373, 30.253575282637552 ], [ -95.804210137186246, 30.251688281710447 ], [ -95.804222136522398, 30.251383281793384 ], [ -95.80427213702896, 30.250101281268467 ], [ -95.804274136681769, 30.249862281759885 ], [ -95.804299136453537, 30.247135280840563 ], [ -95.804313136644168, 30.245575280971007 ], [ -95.804090136566913, 30.245614280326645 ], [ -95.80340413629051, 30.246186280852992 ], [ -95.802956136305085, 30.24620928084078 ], [ -95.80269213617234, 30.246140281080041 ], [ -95.802481135669979, 30.245911280655257 ], [ -95.802376135982215, 30.24510928079247 ], [ -95.802165136151729, 30.244903280441164 ], [ -95.801981136403782, 30.244560280229102 ], [ -95.801954136395054, 30.244170280785038 ], [ -95.802456135928679, 30.243621280535081 ], [ -95.802667136038181, 30.243186280457714 ], [ -95.802589135471734, 30.242224280187056 ], [ -95.802325135814982, 30.241857280308132 ], [ -95.801481135714923, 30.241262279590913 ], [ -95.801244135923156, 30.24080428009955 ], [ -95.80090113510748, 30.240414279339593 ], [ -95.800242134950324, 30.240139279488659 ], [ -95.799715135220751, 30.239612279590705 ], [ -95.799320134611051, 30.238902279729491 ], [ -95.798687134295648, 30.238398279670349 ], [ -95.797579134937479, 30.238237279811603 ], [ -95.797131134042772, 30.238054279292164 ], [ -95.796577134602856, 30.237389279422569 ], [ -95.796367133747196, 30.236817278873907 ], [ -95.796077133856002, 30.23656527871924 ], [ -95.795813134019156, 30.236542278801792 ], [ -95.79470513382924, 30.237274279746469 ], [ -95.793728133633451, 30.238762279260026 ], [ -95.793121133142407, 30.239334279356147 ], [ -95.792752133135068, 30.239495280247496 ], [ -95.792303133178748, 30.239471280237275 ], [ -95.791908133512791, 30.239173279875729 ], [ -95.791565132655052, 30.238624279546837 ], [ -95.791038133202022, 30.238188279204081 ], [ -95.79077513264393, 30.237249279423352 ], [ -95.790248132108644, 30.236768279019625 ], [ -95.789826132055495, 30.236699279554887 ], [ -95.789246132066793, 30.236745279825779 ], [ -95.788691132512483, 30.23706527992309 ], [ -95.787768131631438, 30.23779727985097 ], [ -95.787082131744029, 30.238186279674153 ], [ -95.786818131965362, 30.23853027983245 ], [ -95.786712131328969, 30.238873279612132 ], [ -95.786316131945512, 30.239148280237412 ], [ -95.785288131050891, 30.239124279696814 ], [ -95.784628131329896, 30.239284279903806 ], [ -95.784074131022564, 30.23923827997724 ], [ -95.783837131354147, 30.239559280372262 ], [ -95.783230131288846, 30.239581280014104 ], [ -95.782755130453921, 30.239215280334328 ], [ -95.781621130275639, 30.239191280321624 ], [ -95.781331129946167, 30.239741280330396 ], [ -95.781014130685278, 30.239809280672702 ], [ -95.780751129907031, 30.239694280737748 ], [ -95.780355129665764, 30.239671280472823 ], [ -95.780197130368833, 30.239763280190406 ], [ -95.779880130494618, 30.239763280487168 ], [ -95.779643130270287, 30.239465280070636 ], [ -95.778851129307739, 30.239579280016176 ], [ -95.778113129965945, 30.239189280244194 ], [ -95.777876129994482, 30.239166280324653 ], [ -95.777111129204201, 30.239257280787296 ], [ -95.776688129742098, 30.239829280155998 ], [ -95.776214129047602, 30.239921280404207 ], [ -95.776002129394456, 30.240104280336055 ], [ -95.775528129363991, 30.24019528104548 ], [ -95.774737128656781, 30.239828280407586 ], [ -95.774314128414815, 30.239965281016488 ], [ -95.772969128298101, 30.240010280539792 ], [ -95.771756128268507, 30.239300280112865 ], [ -95.770992127342595, 30.238704280858613 ], [ -95.770728127801945, 30.238566280273073 ], [ -95.770488128097426, 30.238551280142541 ], [ -95.769621127437389, 30.238497280271517 ], [ -95.768883127561068, 30.237970280519239 ], [ -95.768092126628673, 30.23787728033901 ], [ -95.767538127091441, 30.237579280543926 ], [ -95.766853126496187, 30.236754280238955 ], [ -95.76659012609872, 30.236113280074239 ], [ -95.766537126392066, 30.235609280074485 ], [ -95.766696126511462, 30.235334280352713 ], [ -95.767382126862785, 30.234900280189883 ], [ -95.767382126787126, 30.234602279579281 ], [ -95.76701412602975, 30.233823279456832 ], [ -95.766513126438326, 30.233342279629511 ], [ -95.765722126309569, 30.233158279150867 ], [ -95.764588125595907, 30.233226279781448 ], [ -95.76443012627945, 30.23306627957199 ], [ -95.764509125461359, 30.232653279192483 ], [ -95.764377125325439, 30.232562279546265 ], [ -95.762637125833095, 30.232446279430818 ], [ -95.762373125771617, 30.232560279511564 ], [ -95.762161125381851, 30.233018279359005 ], [ -95.762267125408911, 30.23313327962752 ], [ -95.762900125535737, 30.233225279184886 ], [ -95.763058125974666, 30.233317279808954 ], [ -95.763031125608649, 30.233500279938575 ], [ -95.762609125434679, 30.233751279605539 ], [ -95.762451125145745, 30.233980279700035 ], [ -95.762371125570141, 30.234347279801764 ], [ -95.76229212491323, 30.234392280252422 ], [ -95.762291125352519, 30.235194280223926 ], [ -95.762185125047623, 30.235675280107323 ], [ -95.76184212569045, 30.235812280245728 ], [ -95.760866125116337, 30.235811279893866 ], [ -95.760602124727313, 30.236361280089291 ], [ -95.760180125334784, 30.236589280281599 ], [ -95.759442124945309, 30.236085280228163 ], [ -95.759310124961033, 30.235558280171666 ], [ -95.759021124299224, 30.235260280219226 ], [ -95.758704124575843, 30.235100279714349 ], [ -95.757649124553595, 30.23487028012034 ], [ -95.756912124089581, 30.234159279662677 ], [ -95.756332124299917, 30.233976279895209 ], [ -95.756094123480409, 30.233815280083498 ], [ -95.755752123747143, 30.233723279822296 ], [ -95.755119123199819, 30.233815279659179 ], [ -95.754697123680032, 30.233631280154064 ], [ -95.753642122774266, 30.233447280397254 ], [ -95.751690122667398, 30.233216280474018 ], [ -95.751005122019876, 30.233033279924985 ], [ -95.75028812170693, 30.233035280350997 ], [ -95.750238122497464, 30.233035280183714 ], [ -95.74968412189105, 30.232898279972705 ], [ -95.749499122289976, 30.232693279830322 ], [ -95.748919122018421, 30.232854279903236 ], [ -95.748814121858246, 30.232785279807093 ], [ -95.74878712168271, 30.232533280403317 ], [ -95.748681122091057, 30.232442280077759 ], [ -95.748339121818674, 30.23248828010685 ], [ -95.748049122096234, 30.232786279851677 ], [ -95.747785121790457, 30.232924279831554 ], [ -95.746809121381062, 30.232902280273336 ], [ -95.746667121648855, 30.233014280177365 ], [ -95.746019120826091, 30.233521280698586 ], [ -95.745808120676145, 30.233544280449202 ], [ -95.745491120866546, 30.233292280522008 ], [ -95.745280121138222, 30.23327028066203 ], [ -95.745149121227811, 30.233384280257997 ], [ -95.74501812131362, 30.234163280545165 ], [ -95.744781121125101, 30.23425528081146 ], [ -95.744358120514008, 30.234164280235536 ], [ -95.744174120741377, 30.234233280108164 ], [ -95.743542121031737, 30.23498928074897 ], [ -95.742804120467213, 30.23549428078627 ], [ -95.742462120623102, 30.236135280655642 ], [ -95.741777120666811, 30.236777280953451 ], [ -95.741672119954515, 30.236984280807544 ], [ -95.741303120081156, 30.237350281178934 ], [ -95.740644120183219, 30.237649281420921 ], [ -95.740460120123529, 30.238084281019887 ], [ -95.74027612021645, 30.238176281321106 ], [ -95.739774120026894, 30.238062281745979 ], [ -95.739168119769857, 30.238521281921333 ], [ -95.738456119079885, 30.238544281349395 ], [ -95.738298119405016, 30.238659281783853 ], [ -95.738298119270013, 30.239025282005617 ], [ -95.738114119749639, 30.239140281443692 ], [ -95.736795119394415, 30.2390042812908 ], [ -95.736003118549831, 30.23859328165894 ], [ -95.736081119112313, 30.237745281359974 ], [ -95.73592911841294, 30.237326281175925 ], [ -95.735552119031752, 30.236280281291023 ], [ -95.735077118241691, 30.235914280810775 ], [ -95.734549118072394, 30.235731281543792 ], [ -95.733230117788324, 30.235824281437324 ], [ -95.732623118010949, 30.235527281255198 ], [ -95.731674117268909, 30.235711280893469 ], [ -95.729616117418843, 30.235690281162473 ], [ -95.729116117052939, 30.236194281146769 ], [ -95.728509116567849, 30.23617228135215 ], [ -95.728325116741246, 30.236310281536451 ], [ -95.728167116802069, 30.23656228134265 ], [ -95.728063116973516, 30.237799281540902 ], [ -95.727852116459331, 30.23807428201442 ], [ -95.726244116847624, 30.23848728158816 ], [ -95.725980116205434, 30.238396281606661 ], [ -95.725505116280445, 30.238053281721282 ], [ -95.725030115501752, 30.237939282304914 ], [ -95.724291115507626, 30.238077281812334 ], [ -95.723315115125786, 30.237872281954555 ], [ -95.722814115146207, 30.238101282299098 ], [ -95.72231311525141, 30.238170282081136 ], [ -95.721970114716541, 30.238102281782105 ], [ -95.720756114781452, 30.237416281840638 ], [ -95.72057111487986, 30.237141281730398 ], [ -95.720544114745991, 30.236385282094318 ], [ -95.720253114287061, 30.235882281443768 ], [ -95.720253114558858, 30.235676281757602 ], [ -95.720437114865902, 30.235469281337338 ], [ -95.720410115117744, 30.235126281430556 ], [ -95.720199114283801, 30.234943281198387 ], [ -95.718854114210302, 30.234784281724696 ], [ -95.718616114670283, 30.234624281058089 ], [ -95.718378114051674, 30.234028281600029 ], [ -95.718246113958315, 30.233914281478857 ], [ -95.716769113628317, 30.233457281582872 ], [ -95.716663113633416, 30.233343281183039 ], [ -95.716610113364126, 30.23286228147116 ], [ -95.716547113720509, 30.232768281554996 ], [ -95.716425113051187, 30.232587280962868 ], [ -95.715897113399151, 30.232198280876627 ], [ -95.715897113670025, 30.231924281105389 ], [ -95.716081113701037, 30.231534280988228 ], [ -95.715870113468497, 30.231374280979121 ], [ -95.715869113392131, 30.230778280509803 ], [ -95.71568411317827, 30.230412280379486 ], [ -95.71586811310037, 30.23000028071397 ], [ -95.715921112773344, 30.229702280755724 ], [ -95.715657112894505, 30.229450280706537 ], [ -95.715129113315157, 30.229313280751388 ], [ -95.713098112853004, 30.22910928046311 ], [ -95.711779111767655, 30.228721280859908 ], [ -95.710935111791031, 30.228561280872672 ], [ -95.710249112139664, 30.228539280125453 ], [ -95.709748111950717, 30.228608280329375 ], [ -95.709484111891456, 30.228562280214607 ], [ -95.7091381112443, 30.228157280930663 ], [ -95.708874111378279, 30.228232280565489 ], [ -95.707832110945134, 30.228470280231239 ], [ -95.706967110619615, 30.22860028058377 ], [ -95.706027110804897, 30.228646280628258 ], [ -95.704538110256777, 30.228570280829825 ], [ -95.703404109940209, 30.22851328074054 ], [ -95.700980109371784, 30.228389281254273 ], [ -95.698673108360452, 30.228271280668356 ], [ -95.695251107958114, 30.228096281200301 ], [ -95.693029106884808, 30.228003281279967 ], [ -95.691813106779762, 30.22785728101162 ], [ -95.691895106948209, 30.22813328134934 ], [ -95.692262106793478, 30.229354281434972 ], [ -95.692729107178849, 30.230907281910881 ], [ -95.69402710763174, 30.235223282675797 ], [ -95.695204108132216, 30.239139283502126 ], [ -95.695278108606686, 30.23938528333727 ], [ -95.695741108580407, 30.240755283576192 ], [ -95.696285108328581, 30.241883283510496 ], [ -95.700943110671147, 30.25017228505051 ], [ -95.702819110848836, 30.253441285974954 ], [ -95.704736112191384, 30.256792286471267 ], [ -95.705340111862327, 30.257855286664579 ], [ -95.705503111965768, 30.258167286590758 ], [ -95.705721111855908, 30.258642286349282 ], [ -95.706191112230343, 30.259812286885669 ], [ -95.706862112197769, 30.261701287016677 ], [ -95.707259112402227, 30.262816287847254 ], [ -95.707585113221498, 30.263733287908888 ], [ -95.707999113407126, 30.265047287710075 ], [ -95.708165113083666, 30.26557328804806 ], [ -95.708719113407156, 30.267457288665096 ], [ -95.708869113533027, 30.267920288931531 ], [ -95.709092113227968, 30.268605288362163 ], [ -95.709992113496313, 30.27118828916543 ], [ -95.710893114211402, 30.273751289526736 ], [ -95.711072113942819, 30.274267289915233 ], [ -95.71182711405983, 30.276442290591639 ], [ -95.713283114841033, 30.280659291215748 ], [ -95.713384114512621, 30.280940291347182 ], [ -95.714196115052459, 30.283176291366257 ], [ -95.714242114947325, 30.28327829184532 ], [ -95.714395115601349, 30.283582291958986 ], [ -95.714507114969692, 30.283777291530434 ], [ -95.714689115503901, 30.284071291260574 ], [ -95.714841115753941, 30.284283291970308 ], [ -95.715032115485428, 30.28453329124515 ], [ -95.715179115281344, 30.284710292064553 ], [ -95.71541711595016, 30.284968291448141 ], [ -95.715638115319067, 30.2851832917531 ], [ -95.716294115502251, 30.285855292315965 ], [ -95.717707116559851, 30.287300292494351 ], [ -95.718102116125536, 30.287705292154904 ], [ -95.720768117517409, 30.290429292431725 ], [ -95.72498011836241, 30.294677293438625 ], [ -95.725498119245202, 30.295228293167764 ], [ -95.727261119341065, 30.297103293674766 ], [ -95.727409119626387, 30.297252293631523 ], [ -95.727864119139625, 30.297713294167373 ], [ -95.728235119200207, 30.298087294262874 ], [ -95.72940511980471, 30.299243294184954 ], [ -95.730147120705396, 30.299962293866841 ], [ -95.730304119825647, 30.300120294465277 ], [ -95.730577120510432, 30.300396294637245 ], [ -95.730673120268236, 30.300517294089524 ], [ -95.730782120751968, 30.300633294618386 ], [ -95.730903120502632, 30.300740294085955 ], [ -95.731104120521053, 30.300929293996781 ], [ -95.731315120131342, 30.301146294176736 ], [ -95.731529120421214, 30.301385294345454 ], [ -95.731749121124551, 30.301616294545795 ], [ -95.731967120482125, 30.301833294599572 ], [ -95.732496120806445, 30.302443294403357 ], [ -95.732640120491212, 30.302639294647388 ], [ -95.733000120965158, 30.303112294966809 ], [ -95.733238121140289, 30.30346229491817 ], [ -95.733399121235806, 30.303730295043579 ], [ -95.733502120938354, 30.303889295168361 ], [ -95.733564120854766, 30.30399529482273 ], [ -95.733680121496604, 30.304210294633204 ], [ -95.733816121349051, 30.304436294797892 ], [ -95.73392012144123, 30.304653294657271 ], [ -95.735156122218029, 30.307054295631623 ], [ -95.735313121711414, 30.307393295298713 ], [ -95.735352121823141, 30.307477295543709 ], [ -95.735421121578426, 30.307608295986501 ], [ -95.735501122007193, 30.307739295770748 ], [ -95.735587121941904, 30.307859295254246 ], [ -95.735686121577956, 30.307980295407223 ], [ -95.735754121688387, 30.308048295427604 ], [ -95.735795121766827, 30.308090295589125 ], [ -95.735911122323657, 30.308194295511207 ], [ -95.735984122521913, 30.308251295305528 ], [ -95.739414123029604, 30.311156295746414 ], [ -95.740824123658598, 30.312346296235397 ], [ -95.740926123107315, 30.312432296423765 ], [ -95.744406124559077, 30.315370297167089 ], [ -95.744823125220634, 30.315718296654794 ], [ -95.745629125020898, 30.316392296965201 ], [ -95.746837125691997, 30.317406297266714 ], [ -95.747190125146318, 30.317717297629336 ], [ -95.747547125690843, 30.318020297233602 ], [ -95.748450125502927, 30.318747297664924 ], [ -95.749013125788323, 30.319200297833095 ], [ -95.750603126141783, 30.320459297547416 ], [ -95.750677126497166, 30.320513297870438 ], [ -95.751400126284935, 30.321042297424064 ], [ -95.754729127313993, 30.323559298326128 ], [ -95.754991127975899, 30.323766297960809 ], [ -95.755384128006526, 30.324045297902131 ], [ -95.755461128156639, 30.324111298129846 ], [ -95.75560212780492, 30.324221298296813 ], [ -95.75687112787125, 30.325131298376419 ], [ -95.757031128128219, 30.325246298574719 ], [ -95.757209128203215, 30.3253522980513 ], [ -95.757451128409599, 30.325479298000101 ], [ -95.757706128139375, 30.325589298746788 ], [ -95.757768128295055, 30.32561229872557 ], [ -95.757967128891764, 30.325686298215835 ], [ -95.75817112881208, 30.325752298841227 ], [ -95.758306129074043, 30.325788298203889 ], [ -95.758444128995933, 30.325819298137088 ], [ -95.758654128458971, 30.325860298094181 ], [ -95.759004128579363, 30.325907298430078 ], [ -95.75914712849206, 30.325918298166645 ], [ -95.759381129198971, 30.325927298707025 ], [ -95.759771129162004, 30.325925298841391 ], [ -95.765600130610281, 30.325746297994389 ], [ -95.765808130545722, 30.333433299842813 ], [ -95.765796130586651, 30.33354829984588 ], [ -95.76583513109648, 30.334185299448833 ], [ -95.765862131226896, 30.33449130015337 ], [ -95.765912130847752, 30.334904299830626 ], [ -95.765898130808338, 30.335196299779486 ], [ -95.76597813120965, 30.335318300534073 ], [ -95.766037130754981, 30.335554300122666 ], [ -95.766083131510001, 30.335709300131203 ], [ -95.766165130885668, 30.335945300056331 ], [ -95.766227131053881, 30.336097299877768 ], [ -95.766334131572776, 30.336323300020243 ], [ -95.766389131658869, 30.336429300584264 ], [ -95.766819131507518, 30.337209300482691 ], [ -95.768350131519284, 30.339914300496414 ], [ -95.768623131604102, 30.340371300984909 ], [ -95.768796131647633, 30.340686300700781 ], [ -95.768994131597907, 30.341120300913406 ], [ -95.769279132498298, 30.341923301536422 ], [ -95.769534132259622, 30.342640301737983 ], [ -95.769611131976063, 30.342898301456099 ], [ -95.769675132129649, 30.343158301479463 ], [ -95.769703132180084, 30.343291301230913 ], [ -95.769716132718287, 30.343460301175831 ], [ -95.769725132862376, 30.34357430167816 ], [ -95.769739132560304, 30.343822301917321 ], [ -95.769747132250103, 30.344307302204495 ], [ -95.769745132142504, 30.344689301474631 ], [ -95.769727132860581, 30.348139302599712 ], [ -95.769723132481019, 30.348888303092146 ], [ -95.769722132662409, 30.348982302491198 ], [ -95.769710132253763, 30.349306302772362 ], [ -95.769711132552104, 30.349628302627799 ], [ -95.769725132380643, 30.349950302599765 ], [ -95.769750132323907, 30.350270302929239 ], [ -95.769771132210167, 30.350432302921362 ], [ -95.769767133229081, 30.350595302921327 ], [ -95.769778133238859, 30.350757303313895 ], [ -95.769803133097312, 30.350917302878766 ], [ -95.769839133062561, 30.351080302901202 ], [ -95.769889132875718, 30.351233303398878 ], [ -95.769952132348806, 30.351388302771603 ], [ -95.770027133322031, 30.351539303344886 ], [ -95.770106133386392, 30.351670302820303 ], [ -95.770211133240835, 30.351876303581829 ], [ -95.770269132874404, 30.35197430340413 ], [ -95.77039713283402, 30.352166303243312 ], [ -95.770469132770515, 30.352262302991555 ], [ -95.770619132600359, 30.352439303282626 ], [ -95.770852133029678, 30.352670303558391 ], [ -95.771053132981805, 30.352845303369406 ], [ -95.771463132996303, 30.353182303544099 ], [ -95.771889133104295, 30.353506303223831 ], [ -95.772180133814814, 30.353714303905917 ], [ -95.772666133224035, 30.354044303454234 ], [ -95.772961133622587, 30.354252303320234 ], [ -95.773521133930316, 30.354673304065688 ], [ -95.774255133990451, 30.355196303806341 ], [ -95.774393134341025, 30.355299303588016 ], [ -95.774463134253978, 30.355358303517544 ], [ -95.774616134511149, 30.355469304134097 ], [ -95.77469613463758, 30.355520303586442 ], [ -95.774867134210979, 30.355610303991789 ], [ -95.77495713417872, 30.355650304316153 ], [ -95.775135133944175, 30.355715303681521 ], [ -95.775209134658269, 30.355738303902704 ], [ -95.775863134516399, 30.355944304016028 ], [ -95.776072134210096, 30.356024303666885 ], [ -95.776239134275215, 30.356063303683641 ], [ -95.776306134506456, 30.356101303906794 ], [ -95.776368134854806, 30.356143303884618 ], [ -95.776480134331067, 30.356245304322833 ], [ -95.776532134993857, 30.356304304088233 ], [ -95.77661813435185, 30.356422303584008 ], [ -95.776657134700642, 30.356483304356871 ], [ -95.776692134615487, 30.356558303654932 ], [ -95.776771134661118, 30.356627303719485 ], [ -95.776783134407609, 30.356830304409925 ], [ -95.776799134721301, 30.35689930434819 ], [ -95.776810134513468, 30.357195304113535 ], [ -95.776969135086276, 30.36141930470156 ], [ -95.776979135460991, 30.361816304957479 ], [ -95.776976135283633, 30.361882304904547 ], [ -95.776965134950871, 30.361961305383037 ], [ -95.776938135191969, 30.362090305518816 ], [ -95.776886134785485, 30.362229305456996 ], [ -95.776806135005373, 30.362381305156209 ], [ -95.776715135324281, 30.362505305641502 ], [ -95.776488135034313, 30.36274230536932 ], [ -95.776317134646931, 30.362917305273843 ], [ -95.776223135242347, 30.363044305373919 ], [ -95.776149135031375, 30.363185305630179 ], [ -95.776101134770485, 30.363330305094301 ], [ -95.776085135258185, 30.363406305565011 ], [ -95.776069135306926, 30.36356030519249 ], [ -95.776071135140356, 30.363634305043316 ], [ -95.776076135391691, 30.363675305630132 ], [ -95.776080134739004, 30.363714305188289 ], [ -95.776095134919174, 30.363786305808802 ], [ -95.776128134659686, 30.363899305602189 ], [ -95.776154135275519, 30.363969305181868 ], [ -95.776258135068787, 30.364301305188544 ], [ -95.776454135481899, 30.364867305585189 ], [ -95.776676135289435, 30.36548330564279 ], [ -95.777252135542781, 30.365038305471767 ], [ -95.778122135241489, 30.364351305722042 ], [ -95.779065135974648, 30.363618305312112 ], [ -95.780932136094634, 30.362135305260022 ], [ -95.781019136382341, 30.362066305321914 ], [ -95.782412136051505, 30.360944304865427 ], [ -95.78277313700849, 30.360681304853955 ], [ -95.783147136434522, 30.360423304544987 ], [ -95.78319613632992, 30.36039130426861 ], [ -95.783337136441943, 30.360298304962029 ], [ -95.784081136822223, 30.359851304838887 ], [ -95.784543136876792, 30.359612304720567 ], [ -95.78486113692388, 30.359463304336867 ], [ -95.785021137445284, 30.359392304110351 ], [ -95.78560613719543, 30.359150303845485 ], [ -95.785829137348756, 30.359065304611853 ], [ -95.786281137026066, 30.358911304521655 ], [ -95.786690137918498, 30.358783304161893 ], [ -95.786902137853019, 30.358722303962296 ], [ -95.787330137865681, 30.35861130394925 ], [ -95.789022138399531, 30.358252303879429 ], [ -95.789522137833927, 30.358149303936791 ], [ -95.791729138569337, 30.357678304144319 ], [ -95.795161139056034, 30.356946303851842 ], [ -95.795510139397976, 30.356873303075975 ], [ -95.799849140313896, 30.355960302666023 ], [ -95.802113140793509, 30.355471303308299 ], [ -95.802664141816763, 30.35534730268704 ], [ -95.803584141821176, 30.355152302852286 ], [ -95.805717142119192, 30.354683302452184 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 76, "Tract": "48339694205", "Area_SqMi": 17.281863205104923, "total_2009": 98, "total_2010": 136, "total_2011": 139, "total_2012": 97, "total_2013": 103, "total_2014": 99, "total_2015": 117, "total_2016": 155, "total_2017": 145, "total_2018": 124, "total_2019": 172, "total_2020": 163, "age1": 91, "age2": 160, "age3": 92, "earn1": 49, "earn2": 68, "earn3": 226, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 223, "naics_s05": 8, "naics_s06": 2, "naics_s07": 24, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 68, "naics_s17": 1, "naics_s18": 6, "naics_s19": 2, "naics_s20": 0, "race1": 293, "race2": 37, "race3": 1, "race4": 8, "race5": 0, "race6": 4, "ethnicity1": 250, "ethnicity2": 93, "edu1": 61, "edu2": 78, "edu3": 74, "edu4": 39, "Shape_Length": 108227.40033796338, "Shape_Area": 481788767.95384073, "total_2021": 163, "total_2022": 343 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.599164096965026, 30.50655134054686 ], [ -95.599053096301105, 30.505044340020316 ], [ -95.598958096215284, 30.504826340220234 ], [ -95.598916096902499, 30.504728340398078 ], [ -95.598278095938412, 30.503312340206101 ], [ -95.59722709579593, 30.502433339892075 ], [ -95.59650109533878, 30.501816339830171 ], [ -95.594782094791483, 30.500219339736976 ], [ -95.590060093684443, 30.494390338829081 ], [ -95.588248092968726, 30.492212337677334 ], [ -95.588048092910697, 30.491972337815202 ], [ -95.587301092607319, 30.491102337486943 ], [ -95.586320092621662, 30.489929337987263 ], [ -95.586302092110742, 30.489909337767827 ], [ -95.586346091986471, 30.489798337837755 ], [ -95.585909092019349, 30.489418337644594 ], [ -95.585961091920765, 30.479210335643128 ], [ -95.585531091587015, 30.477444335057982 ], [ -95.585396091425807, 30.47530133442465 ], [ -95.58496309183262, 30.474291334635179 ], [ -95.584990091298195, 30.468872333267544 ], [ -95.585736091168897, 30.465850332927744 ], [ -95.585897091388574, 30.462826331887399 ], [ -95.586192091346661, 30.462449332011037 ], [ -95.586194091475832, 30.461945332258917 ], [ -95.58663509139997, 30.461443331774678 ], [ -95.586637090707995, 30.460938331973047 ], [ -95.587814091058235, 30.459304331498632 ], [ -95.58972109190573, 30.45767333098264 ], [ -95.589870092162755, 30.457169330751221 ], [ -95.590604092201559, 30.456416330773603 ], [ -95.590459092248551, 30.456163330568362 ], [ -95.583489090394423, 30.462125331771151 ], [ -95.582244090305011, 30.463190332107516 ], [ -95.577420089379572, 30.463802332884029 ], [ -95.575809088318337, 30.464678333168084 ], [ -95.573608087902855, 30.466560333803002 ], [ -95.573310088335418, 30.467567333598701 ], [ -95.572279088202748, 30.469328334199044 ], [ -95.569489086870234, 30.471963334398705 ], [ -95.569341086822391, 30.472341334642476 ], [ -95.569189087161519, 30.473475335165919 ], [ -95.569156086853113, 30.473517335445667 ], [ -95.568837086740672, 30.473439334875746 ], [ -95.568716087174806, 30.47341033489672 ], [ -95.566372087075123, 30.472792335172713 ], [ -95.565407086708205, 30.472579334789213 ], [ -95.564034085739223, 30.472276334996018 ], [ -95.562281085673419, 30.471833334760646 ], [ -95.56181308574682, 30.471714334723906 ], [ -95.559437084653581, 30.471113335116968 ], [ -95.559191084623933, 30.471051334761707 ], [ -95.556675083536021, 30.470433334416644 ], [ -95.552896082523105, 30.46951433485707 ], [ -95.551241082800004, 30.469112335205555 ], [ -95.551018082712986, 30.469048334649802 ], [ -95.550634082244059, 30.468926334900068 ], [ -95.550506082051157, 30.46887833476486 ], [ -95.550341082689656, 30.468804334438719 ], [ -95.546866080944056, 30.467240334810647 ], [ -95.546713081734168, 30.467183334446297 ], [ -95.546472080843287, 30.467125334719679 ], [ -95.546308080713629, 30.467107334668828 ], [ -95.545974081258393, 30.467109334740716 ], [ -95.545450081155565, 30.46717033503673 ], [ -95.544111080779274, 30.467326335056754 ], [ -95.543563080779208, 30.467298334733371 ], [ -95.542370079954807, 30.467012335034603 ], [ -95.540277079652341, 30.466495334416528 ], [ -95.536876078850881, 30.465655334403685 ], [ -95.535819077926064, 30.465394334710272 ], [ -95.535269077968948, 30.465266334798351 ], [ -95.529011076822215, 30.463811334419397 ], [ -95.525800075712368, 30.463024334202156 ], [ -95.523835075626451, 30.462542334294547 ], [ -95.51937307355783, 30.46145133443304 ], [ -95.514406072291479, 30.460236333894208 ], [ -95.51274507242195, 30.459829334648031 ], [ -95.50194306950462, 30.45718833422055 ], [ -95.499402068575776, 30.456566334116172 ], [ -95.498422068566072, 30.456337334251273 ], [ -95.497255068110832, 30.456089334075312 ], [ -95.496997068145006, 30.456038334459027 ], [ -95.496762068445705, 30.455992334175765 ], [ -95.495899067280703, 30.45577433439022 ], [ -95.495894067813197, 30.456153334335955 ], [ -95.495942067539701, 30.457472334321967 ], [ -95.495949067774418, 30.457663334227032 ], [ -95.495949067417811, 30.457674334383828 ], [ -95.495955067870995, 30.457836334290558 ], [ -95.495985068133947, 30.458642335065857 ], [ -95.496017067675709, 30.459529334658583 ], [ -95.496061067864787, 30.461243334993561 ], [ -95.49609206771504, 30.463205335883444 ], [ -95.496232068640026, 30.465043335543264 ], [ -95.496379068276696, 30.466466335905004 ], [ -95.496462068819142, 30.467213336278238 ], [ -95.496498068547467, 30.467529336861915 ], [ -95.496597068266468, 30.468502336287216 ], [ -95.496568069009243, 30.469513336697151 ], [ -95.496538068830432, 30.471259336954251 ], [ -95.496505068818465, 30.472125336938198 ], [ -95.496349068922854, 30.473248337745403 ], [ -95.49630606906544, 30.473533337341145 ], [ -95.496001068433998, 30.475539337640491 ], [ -95.495904068390459, 30.476112337831903 ], [ -95.495680069006141, 30.477450338656773 ], [ -95.495652068500831, 30.477654338242598 ], [ -95.495598069194429, 30.478045338773281 ], [ -95.495441068691619, 30.479048338790879 ], [ -95.495026069174301, 30.481969339770139 ], [ -95.494701068648013, 30.484199340210594 ], [ -95.494327068536975, 30.486340340422284 ], [ -95.494002068716952, 30.488509340534968 ], [ -95.493289068800394, 30.493000341792033 ], [ -95.493169069108589, 30.493817342123407 ], [ -95.492801068941404, 30.496322342231167 ], [ -95.492717068383286, 30.496896342361499 ], [ -95.492676068780781, 30.497164342213026 ], [ -95.49225806860845, 30.499652343349702 ], [ -95.492018068865079, 30.501642343364097 ], [ -95.491796069418399, 30.503996344134379 ], [ -95.491725068863104, 30.505035344326618 ], [ -95.491636069335527, 30.506687344540591 ], [ -95.49152106924204, 30.508836344985003 ], [ -95.491646069448549, 30.508837345034578 ], [ -95.49180606871434, 30.508838344699143 ], [ -95.491872068796354, 30.508839344763189 ], [ -95.493322069940959, 30.508856344668928 ], [ -95.498600070761142, 30.508885344814953 ], [ -95.498648070752225, 30.508885345117324 ], [ -95.499001070922716, 30.508883344824209 ], [ -95.500227071801888, 30.508876344783673 ], [ -95.504253072091004, 30.508870344334351 ], [ -95.509042073477062, 30.508911344462931 ], [ -95.511577074591941, 30.508915343852426 ], [ -95.523343077790599, 30.508935344016315 ], [ -95.525877078028415, 30.508944343381895 ], [ -95.533236079338039, 30.508935343789357 ], [ -95.535540080771526, 30.508931343659228 ], [ -95.535561080190931, 30.508931343731458 ], [ -95.536123080801815, 30.508930343117434 ], [ -95.537567081290661, 30.508927342928541 ], [ -95.54310608266232, 30.508917342871303 ], [ -95.547780084050856, 30.508888343201463 ], [ -95.547821083335279, 30.508888342857997 ], [ -95.555038085228688, 30.508852342535956 ], [ -95.555151085446809, 30.508852342388785 ], [ -95.561971087571735, 30.508878342681708 ], [ -95.562704086946582, 30.508880342665851 ], [ -95.562861087472783, 30.508880342617058 ], [ -95.564150088208947, 30.508883342712821 ], [ -95.564554087339019, 30.50888434208078 ], [ -95.56469808805636, 30.508884342122546 ], [ -95.564738088174337, 30.508885342614441 ], [ -95.564751087928272, 30.508885342172764 ], [ -95.564797088289723, 30.508885342088888 ], [ -95.564859087686429, 30.50888534204109 ], [ -95.564921088124365, 30.508885341991327 ], [ -95.564967088455248, 30.508885342751118 ], [ -95.566178088635581, 30.508889342244018 ], [ -95.567998088775113, 30.508900342336133 ], [ -95.568297088751194, 30.508902342447943 ], [ -95.568352089048219, 30.508902342487193 ], [ -95.576455091391097, 30.508915341754857 ], [ -95.58126109235846, 30.50892934185304 ], [ -95.581501092251031, 30.508930341395768 ], [ -95.588208093584683, 30.508952341673268 ], [ -95.591847095252348, 30.508962341307075 ], [ -95.592062095097248, 30.508962340970577 ], [ -95.593973095412252, 30.508963341434395 ], [ -95.594969095270912, 30.508964341169669 ], [ -95.595072095137709, 30.508964341489193 ], [ -95.59510009612616, 30.508965340819074 ], [ -95.595128095280415, 30.508965341199012 ], [ -95.595180095962647, 30.508965341301565 ], [ -95.595360095372314, 30.50896534108044 ], [ -95.595676096050781, 30.508965341458698 ], [ -95.595881096372281, 30.508965341011557 ], [ -95.595996095427083, 30.508965340838227 ], [ -95.596055096143047, 30.508965341110375 ], [ -95.596084095752673, 30.508965341246554 ], [ -95.596098095850451, 30.508965341348414 ], [ -95.598135096243468, 30.508966341505868 ], [ -95.598885096978478, 30.50898534081605 ], [ -95.598935097015087, 30.508331340897467 ], [ -95.599164096965026, 30.50655134054686 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 77, "Tract": "48339693703", "Area_SqMi": 4.3558041450670038, "total_2009": 1159, "total_2010": 719, "total_2011": 784, "total_2012": 668, "total_2013": 738, "total_2014": 914, "total_2015": 890, "total_2016": 1136, "total_2017": 1061, "total_2018": 1202, "total_2019": 1525, "total_2020": 1425, "age1": 566, "age2": 660, "age3": 311, "earn1": 348, "earn2": 612, "earn3": 577, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 83, "naics_s05": 43, "naics_s06": 39, "naics_s07": 685, "naics_s08": 0, "naics_s09": 90, "naics_s10": 169, "naics_s11": 55, "naics_s12": 28, "naics_s13": 3, "naics_s14": 11, "naics_s15": 41, "naics_s16": 145, "naics_s17": 9, "naics_s18": 64, "naics_s19": 67, "naics_s20": 0, "race1": 1255, "race2": 192, "race3": 11, "race4": 58, "race5": 1, "race6": 20, "ethnicity1": 1110, "ethnicity2": 427, "edu1": 185, "edu2": 256, "edu3": 311, "edu4": 219, "Shape_Length": 60167.780212971775, "Shape_Area": 121432364.53116709, "total_2021": 1480, "total_2022": 1537 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.542651074571552, 30.342294309872074 ], [ -95.542704074366014, 30.341927309240244 ], [ -95.542176073830447, 30.341538309081248 ], [ -95.542071073867533, 30.341377309103517 ], [ -95.541730073988745, 30.341169309333686 ], [ -95.541543074425263, 30.341056309055233 ], [ -95.541173074039264, 30.341010309304956 ], [ -95.540302073599875, 30.341422309290419 ], [ -95.539747073774407, 30.34139930980049 ], [ -95.539166073009142, 30.340940309526879 ], [ -95.538427072664959, 30.340482309063638 ], [ -95.538137072937943, 30.340184309446514 ], [ -95.538111073383462, 30.339795309171617 ], [ -95.538693072625648, 30.338718308642129 ], [ -95.538640073453905, 30.338466309236171 ], [ -95.538508072859955, 30.338375308463799 ], [ -95.537663072992146, 30.33830530853405 ], [ -95.537400073254872, 30.338191309184428 ], [ -95.537215072639796, 30.337710308472015 ], [ -95.53679307299123, 30.337457309002346 ], [ -95.536740072997247, 30.337228308907818 ], [ -95.536212072789084, 30.336907308925639 ], [ -95.53610407221656, 30.336377308137621 ], [ -95.535949072380873, 30.336243308138567 ], [ -95.535447071876121, 30.336059308513228 ], [ -95.535210072250706, 30.335853308022589 ], [ -95.535210072116371, 30.335716308301315 ], [ -95.534972071508577, 30.335464308787859 ], [ -95.534311071783094, 30.335361308803424 ], [ -95.534233072148254, 30.335349308747169 ], [ -95.534075071440185, 30.335074308381248 ], [ -95.533996071426913, 30.334730308487021 ], [ -95.53362607138115, 30.33459230814713 ], [ -95.533495071928826, 30.334455308033746 ], [ -95.533468071527196, 30.334180307951748 ], [ -95.533627072038541, 30.333997308423577 ], [ -95.534234072150596, 30.333951308351306 ], [ -95.534472071304194, 30.334020307873637 ], [ -95.534657071751553, 30.333929307699758 ], [ -95.534683072097394, 30.333723308176051 ], [ -95.534657071583069, 30.33344830785434 ], [ -95.534314071343417, 30.332852308019628 ], [ -95.533681071076202, 30.332577307670118 ], [ -95.533523070983179, 30.33237130747548 ], [ -95.533523071937807, 30.332027308096677 ], [ -95.533655071479927, 30.331798308002931 ], [ -95.533655071761018, 30.331500307606873 ], [ -95.532837071637928, 30.331385307555262 ], [ -95.532626071471384, 30.331202307640147 ], [ -95.532310070843593, 30.330744307664645 ], [ -95.53180807075212, 30.330377307414718 ], [ -95.53167607070624, 30.329964307096855 ], [ -95.53125407082311, 30.329575307720926 ], [ -95.530991070913288, 30.328750307477225 ], [ -95.530814070494472, 30.328560307401997 ], [ -95.530332070944937, 30.328040306981094 ], [ -95.529804070780884, 30.327696307179714 ], [ -95.529435069775289, 30.327283307291417 ], [ -95.528987069957083, 30.326389306447307 ], [ -95.528301069906078, 30.325839306860118 ], [ -95.527667069302865, 30.325449306944986 ], [ -95.527245069841712, 30.325083306532132 ], [ -95.527034069295908, 30.32467030656894 ], [ -95.52655906948533, 30.324212306521719 ], [ -95.526005069607265, 30.323982306379083 ], [ -95.52566206870668, 30.323478306468278 ], [ -95.52542506906056, 30.32320330625609 ], [ -95.525029068845555, 30.323157306185426 ], [ -95.52442206859476, 30.323340305867351 ], [ -95.523629068752328, 30.323408305960211 ], [ -95.523181068722891, 30.323225306465183 ], [ -95.522993067986462, 30.32302030590338 ], [ -95.522970067943547, 30.32299530590867 ], [ -95.522416068360045, 30.322606305990703 ], [ -95.521703067940265, 30.322720306186746 ], [ -95.521492067776251, 30.32253630618472 ], [ -95.521360067399172, 30.322284306237979 ], [ -95.520885067444709, 30.321871305928742 ], [ -95.520595067437441, 30.321848306072283 ], [ -95.520410067913645, 30.322054306567598 ], [ -95.520409068092391, 30.322467306364608 ], [ -95.520488067376192, 30.322650306066251 ], [ -95.520382068170463, 30.323016306433079 ], [ -95.519960067269565, 30.323314306137021 ], [ -95.519511067130082, 30.323382306914944 ], [ -95.519167067770695, 30.323680306129862 ], [ -95.518438067269798, 30.3239623065333 ], [ -95.518401067350368, 30.323977306828755 ], [ -95.518031066780324, 30.323977306627967 ], [ -95.517398066631046, 30.323839306654712 ], [ -95.516902067095629, 30.32384930697993 ], [ -95.516342066488477, 30.323861306955468 ], [ -95.515814066595794, 30.323311306433904 ], [ -95.515471065914042, 30.323310306884117 ], [ -95.515313065884683, 30.323425306573501 ], [ -95.515286066874339, 30.323654307059456 ], [ -95.515391066492214, 30.32395230664283 ], [ -95.515840066076407, 30.324479307028067 ], [ -95.515813066403155, 30.324868306458487 ], [ -95.515522066480173, 30.325074306996434 ], [ -95.515294066002056, 30.325074306730528 ], [ -95.514318066415839, 30.325073307214407 ], [ -95.513832065941386, 30.325073306843151 ], [ -95.513648065668079, 30.324981306868292 ], [ -95.513489065545812, 30.324752306969543 ], [ -95.513426066458194, 30.324381307082007 ], [ -95.513253065870771, 30.323354306854377 ], [ -95.512831065506418, 30.322804306496554 ], [ -95.512805065890035, 30.322461306880246 ], [ -95.512911065572112, 30.322346306503501 ], [ -95.513527065463379, 30.322037306234947 ], [ -95.513730065632913, 30.321935306454211 ], [ -95.513970065887278, 30.321726306468417 ], [ -95.514074066186694, 30.321637306209027 ], [ -95.514180065756193, 30.321385306210406 ], [ -95.514127065797751, 30.321202306173358 ], [ -95.513731065795511, 30.321087306642475 ], [ -95.512939065805369, 30.321293306026419 ], [ -95.512807065524115, 30.321132306069668 ], [ -95.512807065406463, 30.320897306094139 ], [ -95.512807065185626, 30.320743306158192 ], [ -95.513045065678767, 30.32042230647955 ], [ -95.513705065874774, 30.320217305764288 ], [ -95.513864065496406, 30.3200793059818 ], [ -95.513917066035518, 30.31987330631193 ], [ -95.513899065942198, 30.319802306294466 ], [ -95.513865065883209, 30.319667305927151 ], [ -95.513258065404713, 30.319208305709378 ], [ -95.512994066018877, 30.319163305985043 ], [ -95.512018065632873, 30.317765305296081 ], [ -95.511913065261922, 30.317421305791729 ], [ -95.51194106553875, 30.316207305068733 ], [ -95.511651064655211, 30.315382305481464 ], [ -95.511671065271344, 30.314629304561723 ], [ -95.510409064943104, 30.314514304585465 ], [ -95.509283064068114, 30.314342305443898 ], [ -95.508933064811316, 30.314261305251712 ], [ -95.508586064489535, 30.314162304836195 ], [ -95.508237064536871, 30.314042304898329 ], [ -95.507961063882831, 30.313931305237141 ], [ -95.50634006413101, 30.313220304672662 ], [ -95.505572063620363, 30.312873304834078 ], [ -95.505478063144267, 30.313074305213345 ], [ -95.504878063715537, 30.314305305170155 ], [ -95.504754063352323, 30.314560304812314 ], [ -95.504639063092085, 30.314798305458034 ], [ -95.504519062945249, 30.315046305419443 ], [ -95.504298063177558, 30.315692305188584 ], [ -95.504245063547117, 30.315832305673275 ], [ -95.504160063255469, 30.316058305347607 ], [ -95.504088063302135, 30.316363305266893 ], [ -95.50391506306191, 30.317526305410688 ], [ -95.503680062786614, 30.318861306073419 ], [ -95.503668062865174, 30.318927305885996 ], [ -95.503451063325855, 30.319731306237948 ], [ -95.503199063507935, 30.320326306515387 ], [ -95.502799063242534, 30.320938306864715 ], [ -95.502441062784726, 30.321410307045067 ], [ -95.501885062662339, 30.321932306661701 ], [ -95.501819063117622, 30.321979306837402 ], [ -95.501693063161298, 30.322078307167519 ], [ -95.501263063174832, 30.322380307125872 ], [ -95.500948063003463, 30.32256830706261 ], [ -95.499555061931957, 30.323370307169093 ], [ -95.498883061877791, 30.323761307110825 ], [ -95.498309062017796, 30.324094307482124 ], [ -95.497996062023901, 30.324301307670506 ], [ -95.497787061462816, 30.324463307183848 ], [ -95.49770306224201, 30.324543307675182 ], [ -95.497647062445736, 30.324589307695351 ], [ -95.497433062136139, 30.324792307668414 ], [ -95.497166062155102, 30.325085307305603 ], [ -95.4969210616281, 30.325412307661431 ], [ -95.496827062041348, 30.325555307552133 ], [ -95.496642062245087, 30.325836307918774 ], [ -95.496390061329777, 30.3262743079259 ], [ -95.495835061615466, 30.327240308294879 ], [ -95.495706061667377, 30.327427307706039 ], [ -95.495406061052449, 30.327829308039881 ], [ -95.495219061544731, 30.328052308161752 ], [ -95.495008061254595, 30.328275308355831 ], [ -95.494880061742407, 30.328401308519805 ], [ -95.494582061510769, 30.328674308017078 ], [ -95.494424061380201, 30.328800308080691 ], [ -95.494229061138455, 30.328956308536739 ], [ -95.493893061335484, 30.329192308608548 ], [ -95.493658061408055, 30.329343308655073 ], [ -95.49340006125135, 30.329490308563958 ], [ -95.493120060895635, 30.329640308346377 ], [ -95.492683060891437, 30.329840308509326 ], [ -95.492303060555798, 30.32999230860133 ], [ -95.492077060673964, 30.330069308389522 ], [ -95.49157506103046, 30.330213308418831 ], [ -95.489910060578183, 30.330612308974189 ], [ -95.490148060254882, 30.331350308753571 ], [ -95.49025106000515, 30.331688309100059 ], [ -95.490326060592807, 30.332018309187355 ], [ -95.490579060199266, 30.33339130911877 ], [ -95.49067406030214, 30.333666309977318 ], [ -95.490755060179993, 30.333866309328315 ], [ -95.49094306021334, 30.334210309244053 ], [ -95.491210060247226, 30.334566309459188 ], [ -95.491454060727094, 30.334822309478476 ], [ -95.491719061214965, 30.335047309681205 ], [ -95.491979061170355, 30.335238309454052 ], [ -95.492303061205916, 30.335417310309104 ], [ -95.492726061127499, 30.335601309515226 ], [ -95.493100061814218, 30.335724309523123 ], [ -95.493514060935823, 30.335809310134533 ], [ -95.493991061066367, 30.335865310192958 ], [ -95.494587061200335, 30.335823309706569 ], [ -95.494751061257105, 30.335802309907802 ], [ -95.496344061850792, 30.335518309759941 ], [ -95.49700806218992, 30.3354763100733 ], [ -95.497239062614838, 30.335471309878191 ], [ -95.49750906201713, 30.335475309337088 ], [ -95.498029062830469, 30.335513309537713 ], [ -95.498286062947599, 30.335553309334561 ], [ -95.498513062418567, 30.335600309256975 ], [ -95.498895062285769, 30.335704309426813 ], [ -95.499048063298702, 30.3357543100275 ], [ -95.49926706299641, 30.335840309366322 ], [ -95.499624062566213, 30.335980309964974 ], [ -95.499681063473233, 30.336002310020053 ], [ -95.500271063603975, 30.336218309725947 ], [ -95.50079506361304, 30.336410310222792 ], [ -95.501035063105689, 30.336491309852505 ], [ -95.501212063861388, 30.336517309561412 ], [ -95.501392063945929, 30.336519309694314 ], [ -95.501426063819665, 30.336520309520818 ], [ -95.501789063624983, 30.336510309610247 ], [ -95.502227063399772, 30.336571309969042 ], [ -95.502805064047749, 30.336688310177713 ], [ -95.503237064199908, 30.336798309423354 ], [ -95.504348064612088, 30.337171309664011 ], [ -95.504700064354338, 30.337307309727919 ], [ -95.505253064311304, 30.337508309918363 ], [ -95.505725064224293, 30.337696310064363 ], [ -95.505935064673253, 30.337798309801983 ], [ -95.506309064751619, 30.338006309492314 ], [ -95.50645006470144, 30.338097309589724 ], [ -95.506590065084794, 30.338206309894623 ], [ -95.506778065360578, 30.338331309831176 ], [ -95.506993065419024, 30.338497310396978 ], [ -95.507351065359941, 30.338784309909574 ], [ -95.507436065185658, 30.338862310195591 ], [ -95.507490064843509, 30.338911310424816 ], [ -95.507667065424357, 30.339083310115591 ], [ -95.50780506530856, 30.339236309862521 ], [ -95.507974064973183, 30.339471310565422 ], [ -95.508019065701376, 30.339550310087972 ], [ -95.508196064892971, 30.339862309968186 ], [ -95.508771065374631, 30.340993310541155 ], [ -95.509341065724954, 30.342100310543337 ], [ -95.509561065511534, 30.342538311029909 ], [ -95.509663065855548, 30.342741310818433 ], [ -95.509814066091266, 30.342979310581789 ], [ -95.510083066313939, 30.34341531091729 ], [ -95.510279065865674, 30.34370131071196 ], [ -95.510439066116618, 30.343922310531287 ], [ -95.510704066622523, 30.344232311130757 ], [ -95.511119066555693, 30.344674310799405 ], [ -95.512372066899403, 30.345969311686449 ], [ -95.512662066794135, 30.346320311618335 ], [ -95.512865066432028, 30.346598311051107 ], [ -95.513325066673985, 30.347306311340546 ], [ -95.513547066647178, 30.347581311240607 ], [ -95.513863066909352, 30.347933311745251 ], [ -95.51447306754244, 30.348540311619733 ], [ -95.514842067186535, 30.348962311859239 ], [ -95.514958067012074, 30.349128312227904 ], [ -95.515235067302299, 30.34960231167657 ], [ -95.516220067589288, 30.35139131202174 ], [ -95.516433067597177, 30.351740312348578 ], [ -95.516805068268994, 30.35221831284349 ], [ -95.517027068671808, 30.352474312366169 ], [ -95.517284068287438, 30.35271731275623 ], [ -95.517689068364874, 30.35300831247687 ], [ -95.518251068382483, 30.353319312657209 ], [ -95.519391069004655, 30.353949312662092 ], [ -95.519486069362401, 30.35401031244384 ], [ -95.519691069275737, 30.35414131272325 ], [ -95.520026069365898, 30.354399312452951 ], [ -95.520061068634291, 30.354438312953373 ], [ -95.520269069036729, 30.354670313179536 ], [ -95.520691069363181, 30.355254312940588 ], [ -95.521228069128796, 30.355996312601576 ], [ -95.521425069160685, 30.356298312686462 ], [ -95.521528069059087, 30.356463313043495 ], [ -95.521722069680948, 30.356792313519627 ], [ -95.522584069957375, 30.358175313617924 ], [ -95.522725069831409, 30.358138313087 ], [ -95.524146070075034, 30.357770313376534 ], [ -95.524784070419116, 30.357601313242345 ], [ -95.528501071154224, 30.356624312456756 ], [ -95.529407071327114, 30.356386312495832 ], [ -95.529559071877244, 30.356355313116641 ], [ -95.529658071128495, 30.356334312640506 ], [ -95.53248707272617, 30.357018313143634 ], [ -95.533256073017924, 30.357185312648163 ], [ -95.533425072875474, 30.356691312449247 ], [ -95.533997072996527, 30.355580312652759 ], [ -95.534040072978371, 30.35553431230046 ], [ -95.534049072566361, 30.355525312733239 ], [ -95.534473072396494, 30.355086312524918 ], [ -95.535426073313914, 30.35470231198401 ], [ -95.535452072779691, 30.35466431199626 ], [ -95.535554073055366, 30.3545943121348 ], [ -95.53574407327234, 30.354297312549154 ], [ -95.53604707317885, 30.353928311942759 ], [ -95.536257073095129, 30.353688312095272 ], [ -95.536434072942868, 30.353657312081047 ], [ -95.536702072869289, 30.353553312211609 ], [ -95.536933073194362, 30.353314311964795 ], [ -95.537036073045087, 30.353014312186477 ], [ -95.53720007350023, 30.352792312183691 ], [ -95.537276073489295, 30.352716311638154 ], [ -95.537543073304306, 30.352449311268312 ], [ -95.537886073479086, 30.351729311773262 ], [ -95.537950073229212, 30.351469311460825 ], [ -95.537887073698826, 30.351264311335484 ], [ -95.537678073122095, 30.350945311697522 ], [ -95.537706073102328, 30.350011311630322 ], [ -95.537609073459237, 30.349684311141385 ], [ -95.537308073561391, 30.348669311010429 ], [ -95.53701907275638, 30.348093310999623 ], [ -95.53671507346256, 30.34777431069427 ], [ -95.534703072131478, 30.346625310647187 ], [ -95.53434907287965, 30.346335310186795 ], [ -95.534086071976887, 30.346012310973716 ], [ -95.533950072396294, 30.345695310172051 ], [ -95.533905072260183, 30.345383310306232 ], [ -95.533835072249204, 30.342841309774681 ], [ -95.533831071844901, 30.342707310148906 ], [ -95.533827072357838, 30.342545309829855 ], [ -95.536194072673325, 30.342534309537257 ], [ -95.542577074693924, 30.342404309775407 ], [ -95.542651074571552, 30.342294309872074 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 78, "Tract": "48339693303", "Area_SqMi": 0.85793298254826478, "total_2009": 2940, "total_2010": 3285, "total_2011": 3055, "total_2012": 3164, "total_2013": 3021, "total_2014": 2727, "total_2015": 3042, "total_2016": 3197, "total_2017": 3392, "total_2018": 3286, "total_2019": 3595, "total_2020": 3636, "age1": 841, "age2": 2271, "age3": 801, "earn1": 657, "earn2": 1054, "earn3": 2202, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 15, "naics_s07": 169, "naics_s08": 160, "naics_s09": 0, "naics_s10": 15, "naics_s11": 34, "naics_s12": 20, "naics_s13": 6, "naics_s14": 402, "naics_s15": 5, "naics_s16": 2862, "naics_s17": 0, "naics_s18": 218, "naics_s19": 2, "naics_s20": 0, "race1": 3002, "race2": 566, "race3": 31, "race4": 243, "race5": 3, "race6": 68, "ethnicity1": 3061, "ethnicity2": 852, "edu1": 462, "edu2": 755, "edu3": 1051, "edu4": 804, "Shape_Length": 21139.229823546146, "Shape_Area": 23917703.186470915, "total_2021": 3721, "total_2022": 3913 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.482936056601687, 30.285671299970605 ], [ -95.483130056145896, 30.284647299490274 ], [ -95.48218005617511, 30.284536299823692 ], [ -95.481644056087461, 30.284474299863685 ], [ -95.480944055931516, 30.284334300109752 ], [ -95.480122055148939, 30.284104299577233 ], [ -95.479491055256005, 30.283887300330235 ], [ -95.479060055630114, 30.283738299485503 ], [ -95.476952054670519, 30.283058299599062 ], [ -95.475808054697993, 30.282674300154245 ], [ -95.473582053665638, 30.281969299351832 ], [ -95.472034052854042, 30.28148030011906 ], [ -95.471412052774895, 30.281202300018823 ], [ -95.470794053238521, 30.280984299777948 ], [ -95.47016505287236, 30.280757299487412 ], [ -95.469887052575388, 30.28065829992584 ], [ -95.469757052737165, 30.280611299191786 ], [ -95.469274052967251, 30.28043529926823 ], [ -95.468719052249028, 30.280216299740015 ], [ -95.468295052357092, 30.280072299495668 ], [ -95.467726052453628, 30.279880299855567 ], [ -95.46704805236385, 30.279682299363056 ], [ -95.466575051904897, 30.279545299454142 ], [ -95.465870051918515, 30.279325299798437 ], [ -95.465194051641703, 30.279120299286649 ], [ -95.465054051186101, 30.279078299200165 ], [ -95.4648760508978, 30.279024299664432 ], [ -95.464205051650751, 30.27888029907982 ], [ -95.463540051339962, 30.278791299643938 ], [ -95.462917050957074, 30.278729299872133 ], [ -95.462575051050607, 30.278708299257364 ], [ -95.462479050712915, 30.278702299193654 ], [ -95.462430051224459, 30.278701299402471 ], [ -95.461506050609643, 30.27868629925533 ], [ -95.460586049879524, 30.278756299233617 ], [ -95.459808050093727, 30.27885629962099 ], [ -95.459432050180226, 30.27893629972241 ], [ -95.459156049946429, 30.278994299678722 ], [ -95.458166050166923, 30.279270299918341 ], [ -95.457854049428036, 30.279360300113506 ], [ -95.457531049053472, 30.279462299362798 ], [ -95.457553049086926, 30.279529300199268 ], [ -95.457758049597771, 30.280110299619491 ], [ -95.457807049966107, 30.280235299580529 ], [ -95.458122049236437, 30.281032300372107 ], [ -95.458677049518528, 30.282049300319496 ], [ -95.458803049986074, 30.282280299928026 ], [ -95.459604050623426, 30.283481300862253 ], [ -95.460393050570829, 30.284588301065096 ], [ -95.460547050759232, 30.284800300783584 ], [ -95.461192051168965, 30.285690300546563 ], [ -95.461825050872605, 30.286749300663814 ], [ -95.461895051286447, 30.286871301566091 ], [ -95.462286050776342, 30.287557301621327 ], [ -95.462739051527478, 30.288495301865836 ], [ -95.463203051569096, 30.289604302052354 ], [ -95.463291051812334, 30.289814301608896 ], [ -95.463422052059769, 30.290204301469998 ], [ -95.463696052158909, 30.291021301840889 ], [ -95.463744051265309, 30.291167301800215 ], [ -95.464376052373865, 30.293077302276668 ], [ -95.464596052080481, 30.293022302311623 ], [ -95.466409052362323, 30.292545302482136 ], [ -95.466888053022544, 30.292421302253643 ], [ -95.469755053662908, 30.291678302259236 ], [ -95.472529053834648, 30.290988301742999 ], [ -95.474878054570979, 30.290406301558555 ], [ -95.475759054740436, 30.290189301256284 ], [ -95.476468054502263, 30.290014301082401 ], [ -95.476602054751439, 30.289981300809462 ], [ -95.481441055905094, 30.288773301209094 ], [ -95.482162055867136, 30.287436300369592 ], [ -95.482936056601687, 30.285671299970605 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 79, "Tract": "48339692603", "Area_SqMi": 13.745823531334803, "total_2009": 896, "total_2010": 824, "total_2011": 895, "total_2012": 1511, "total_2013": 1564, "total_2014": 1705, "total_2015": 1762, "total_2016": 1367, "total_2017": 1384, "total_2018": 1324, "total_2019": 1578, "total_2020": 1534, "age1": 509, "age2": 836, "age3": 381, "earn1": 228, "earn2": 900, "earn3": 598, "naics_s01": 1, "naics_s02": 24, "naics_s03": 0, "naics_s04": 137, "naics_s05": 183, "naics_s06": 33, "naics_s07": 25, "naics_s08": 1226, "naics_s09": 0, "naics_s10": 0, "naics_s11": 11, "naics_s12": 5, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 69, "naics_s17": 2, "naics_s18": 3, "naics_s19": 6, "naics_s20": 0, "race1": 1291, "race2": 329, "race3": 11, "race4": 71, "race5": 1, "race6": 23, "ethnicity1": 1114, "ethnicity2": 612, "edu1": 288, "edu2": 371, "edu3": 369, "edu4": 189, "Shape_Length": 99790.026365144528, "Shape_Area": 383210033.84151602, "total_2021": 1641, "total_2022": 1726 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.319551009407149, 30.170670282481531 ], [ -95.318976008690399, 30.169848282264986 ], [ -95.315114007545858, 30.164334281615311 ], [ -95.314510007130394, 30.163631280902599 ], [ -95.313446007229516, 30.162469281282142 ], [ -95.311799007092631, 30.160703281078302 ], [ -95.310945005929355, 30.159772281007058 ], [ -95.310199006304373, 30.158970280827621 ], [ -95.309230005730583, 30.157897280139839 ], [ -95.306544005540076, 30.154880279599855 ], [ -95.305810004439735, 30.154106279670266 ], [ -95.304931004915431, 30.153163279194843 ], [ -95.304499004602093, 30.152706279538087 ], [ -95.300621003453571, 30.14853327845444 ], [ -95.299538002798784, 30.147373278715875 ], [ -95.298991002205597, 30.14678827882593 ], [ -95.29901600236326, 30.148199278263242 ], [ -95.299026002760428, 30.148750279250436 ], [ -95.299033002591642, 30.149143278620436 ], [ -95.295592001666904, 30.149168278871404 ], [ -95.292245001565391, 30.14919427929761 ], [ -95.28747100021657, 30.149232279479111 ], [ -95.284113998992694, 30.14925327901129 ], [ -95.284105998753972, 30.149143279603607 ], [ -95.283481999293244, 30.149149279170693 ], [ -95.282925998398127, 30.149152279085524 ], [ -95.282316998926092, 30.149159279808462 ], [ -95.278540997229953, 30.149194279763854 ], [ -95.278316997077582, 30.149199279208322 ], [ -95.277452997484843, 30.149219279699562 ], [ -95.271437995320781, 30.146450279681989 ], [ -95.271420995267306, 30.145855278868467 ], [ -95.269891994823297, 30.145881279191112 ], [ -95.269928994880956, 30.148799279679899 ], [ -95.269892995639424, 30.148706279664417 ], [ -95.269576995612823, 30.148454279462747 ], [ -95.269234995098685, 30.147950279553083 ], [ -95.268733994619211, 30.147858280009665 ], [ -95.268391994640297, 30.147399279937261 ], [ -95.267706994169117, 30.147238279953768 ], [ -95.267495994282754, 30.147009279822058 ], [ -95.267364994591716, 30.146230279793965 ], [ -95.266811994406723, 30.14579527899123 ], [ -95.265994994406569, 30.145748279493883 ], [ -95.265546993784767, 30.145610279670475 ], [ -95.26530999385264, 30.145839279802274 ], [ -95.265019993730817, 30.145954279590089 ], [ -95.264887993397608, 30.145931279535979 ], [ -95.264650993346876, 30.145541278978801 ], [ -95.264360993472906, 30.145541279512077 ], [ -95.264017993698147, 30.145953279318025 ], [ -95.263700993345239, 30.146044279734479 ], [ -95.263173993081679, 30.145700279168583 ], [ -95.262857993526197, 30.145585279284511 ], [ -95.262462993260215, 30.145883279610544 ], [ -95.262198993222484, 30.14599727911034 ], [ -95.261908993010451, 30.145905279485529 ], [ -95.261566993300818, 30.145584279692063 ], [ -95.261013993127392, 30.14528627947929 ], [ -95.260459993244226, 30.144805279035367 ], [ -95.260302993146453, 30.144392279717387 ], [ -95.259880992986794, 30.144231279071015 ], [ -95.259373991983438, 30.143880279601991 ], [ -95.258721992524556, 30.143429278899976 ], [ -95.258616992005372, 30.143154278676715 ], [ -95.258406992359284, 30.14299327930771 ], [ -95.257905992057104, 30.143107279387138 ], [ -95.257720991824243, 30.143015278659401 ], [ -95.25758999182122, 30.142809279124705 ], [ -95.25780099222564, 30.14260327940671 ], [ -95.257932991975153, 30.142328279239578 ], [ -95.257853992418831, 30.142030279108667 ], [ -95.257642992039166, 30.141824278736273 ], [ -95.25743299195949, 30.141801278956837 ], [ -95.256905991945189, 30.141549278846099 ], [ -95.256872991314111, 30.141465279192815 ], [ -95.256702991845074, 30.141469279075547 ], [ -95.255553991480312, 30.141501279152184 ], [ -95.25114998997168, 30.141560279359197 ], [ -95.250544989612919, 30.141587279301305 ], [ -95.247599989753013, 30.141607279194663 ], [ -95.24616498904669, 30.141625278872613 ], [ -95.246621988757411, 30.142476278947466 ], [ -95.246642989316342, 30.144392279545542 ], [ -95.246657989232631, 30.145184280305774 ], [ -95.246657989152055, 30.145286279794494 ], [ -95.246657989519321, 30.146488280253692 ], [ -95.247790989262398, 30.146479280491224 ], [ -95.248237990032891, 30.146477279850735 ], [ -95.247809989246875, 30.147420280050106 ], [ -95.247844989572627, 30.150753281004462 ], [ -95.248279990288225, 30.150743281225338 ], [ -95.247715990006682, 30.151984281409732 ], [ -95.247719989904169, 30.15321128197742 ], [ -95.247709989610939, 30.154438281359621 ], [ -95.237864987695346, 30.154523282104748 ], [ -95.237847986841473, 30.153315281601877 ], [ -95.237843987459584, 30.152096281541276 ], [ -95.236843987513993, 30.152104281472379 ], [ -95.234062986347482, 30.152145281524248 ], [ -95.233939986221472, 30.152180281753527 ], [ -95.23389898627353, 30.152261282195628 ], [ -95.233882985755471, 30.152351281707819 ], [ -95.231416985277107, 30.1523242819686 ], [ -95.229445985573761, 30.152340282440942 ], [ -95.229410984794427, 30.153814282194471 ], [ -95.229428984906207, 30.153927282423233 ], [ -95.229506985636249, 30.154188282385093 ], [ -95.229529984829043, 30.154320282086672 ], [ -95.229534984996093, 30.154463282497048 ], [ -95.229531985463581, 30.156041283082502 ], [ -95.229530985271353, 30.156485283174295 ], [ -95.229360985068439, 30.156503282496704 ], [ -95.229053985716419, 30.156505282948377 ], [ -95.22888498520301, 30.156495282816742 ], [ -95.228769985066904, 30.156478283105269 ], [ -95.228713985322528, 30.156385282962518 ], [ -95.228705985043945, 30.156286283164683 ], [ -95.22874098507954, 30.155643282279797 ], [ -95.228744985399615, 30.155250282352771 ], [ -95.228728984841439, 30.15494428271905 ], [ -95.228709984866427, 30.154707282396696 ], [ -95.228307985214499, 30.154767282892433 ], [ -95.228205984479956, 30.154790282962256 ], [ -95.228142985203291, 30.154804282908643 ], [ -95.227825985179081, 30.154938283004011 ], [ -95.227458985019581, 30.15509028301496 ], [ -95.227132984370428, 30.155166282966437 ], [ -95.226973984440235, 30.155187282835197 ], [ -95.226842984268686, 30.155191282490549 ], [ -95.226679984421253, 30.155195282560722 ], [ -95.226376984385013, 30.155189282900164 ], [ -95.226385984936144, 30.156788282776244 ], [ -95.226263984248021, 30.156922282844715 ], [ -95.226609984628311, 30.157336282923165 ], [ -95.226714984648552, 30.157441283432455 ], [ -95.227773985442482, 30.158643283596643 ], [ -95.229219985604288, 30.16036728353523 ], [ -95.229633985901813, 30.160821283645195 ], [ -95.230360985812766, 30.161674284288992 ], [ -95.230909986011042, 30.162318283725703 ], [ -95.231197985934742, 30.162656283769557 ], [ -95.232073985818971, 30.1636432838852 ], [ -95.233346987216549, 30.165121284093125 ], [ -95.236272987691109, 30.168531285125962 ], [ -95.2370539878128, 30.169411285421187 ], [ -95.237527987808363, 30.169963285089388 ], [ -95.238081987972947, 30.170609285795752 ], [ -95.238629988505082, 30.171251285626866 ], [ -95.238786988428231, 30.171436285161004 ], [ -95.240520989362395, 30.173470285556526 ], [ -95.240669989481333, 30.173667286132165 ], [ -95.240864989153252, 30.173925285613947 ], [ -95.242905990046808, 30.176587286608431 ], [ -95.2438129902729, 30.177922286811988 ], [ -95.244536990026262, 30.177637286183767 ], [ -95.245116990112038, 30.177637286310382 ], [ -95.245617989950347, 30.17779728640625 ], [ -95.246223990238249, 30.177636286154399 ], [ -95.246619990826872, 30.177658286960426 ], [ -95.246803991186113, 30.177314286567654 ], [ -95.247092990904122, 30.177039286783632 ], [ -95.247382990387294, 30.176924286110211 ], [ -95.247408991180819, 30.176535286477211 ], [ -95.247276990702801, 30.176374285990438 ], [ -95.247249991303121, 30.176077286137751 ], [ -95.247381990823698, 30.175985286283318 ], [ -95.247592990538351, 30.175985285767464 ], [ -95.247750991311662, 30.176168286307309 ], [ -95.248700990724217, 30.176442286650239 ], [ -95.249069991277779, 30.176396286454882 ], [ -95.249754991879882, 30.176028285827154 ], [ -95.249965991961574, 30.176120286511917 ], [ -95.250229991913756, 30.176326285838694 ], [ -95.250750991805049, 30.176686285885015 ], [ -95.251488991649637, 30.176732286373102 ], [ -95.252278991882221, 30.177352286139683 ], [ -95.252753991998162, 30.17742128599097 ], [ -95.252990992285078, 30.177558286517456 ], [ -95.254098993080817, 30.177490286397326 ], [ -95.254440992790677, 30.177628286556153 ], [ -95.25473099277535, 30.177972286665266 ], [ -95.254809993035352, 30.178224286412007 ], [ -95.25504699298142, 30.178499286117049 ], [ -95.255362992930984, 30.17863728672479 ], [ -95.255916993622378, 30.178660286568949 ], [ -95.256100993403138, 30.178752286836364 ], [ -95.256179993553388, 30.179256286798481 ], [ -95.256495992897143, 30.179577286556832 ], [ -95.2564949935539, 30.179990287125023 ], [ -95.25609899369141, 30.180562287248851 ], [ -95.255834993062592, 30.180768287162753 ], [ -95.25580899279143, 30.180974286806112 ], [ -95.25557099354387, 30.18129528679987 ], [ -95.255570993293389, 30.181592286895945 ], [ -95.255675993279738, 30.181753287027881 ], [ -95.255754993216243, 30.182326287524372 ], [ -95.256149993649956, 30.182784286871208 ], [ -95.256491993950476, 30.182876287291663 ], [ -95.25746799319397, 30.182785287318339 ], [ -95.258574994128836, 30.182901286936723 ], [ -95.258785994258403, 30.18310728721492 ], [ -95.258917993744248, 30.183474287563538 ], [ -95.259312994616693, 30.183726287159185 ], [ -95.26012999400767, 30.183635287612027 ], [ -95.260419994288981, 30.183750287582736 ], [ -95.260540994451446, 30.183882287493873 ], [ -95.260701994171285, 30.184056287457913 ], [ -95.260841994719897, 30.184208287766452 ], [ -95.261394994666858, 30.184117287150418 ], [ -95.261790995204819, 30.184392287031237 ], [ -95.262396994825451, 30.184576287164479 ], [ -95.263003995345869, 30.184576287523061 ], [ -95.2632409954455, 30.184783287541588 ], [ -95.263319994850832, 30.184989287286985 ], [ -95.263846994981833, 30.184944287366996 ], [ -95.264014995820304, 30.185049287241583 ], [ -95.264689995854468, 30.185471287423123 ], [ -95.265428995845269, 30.185632287240587 ], [ -95.265452996290477, 30.185623287774067 ], [ -95.265744995974202, 30.185518287460233 ], [ -95.266377996409958, 30.185747287143066 ], [ -95.267247996227482, 30.185610286985831 ], [ -95.267722996043062, 30.185634287715054 ], [ -95.268276996620969, 30.185451287005698 ], [ -95.268912996814251, 30.185728287260506 ], [ -95.269119996819683, 30.185818287244082 ], [ -95.269541997264085, 30.185795287142351 ], [ -95.269910997138098, 30.185864287373395 ], [ -95.270780997400053, 30.185865287237192 ], [ -95.271018997455741, 30.185934286955632 ], [ -95.271370997185997, 30.186255287164233 ], [ -95.271571997359032, 30.186438287115283 ], [ -95.271966997630571, 30.18662228732456 ], [ -95.272531998027219, 30.186428287486326 ], [ -95.272705997938658, 30.186370287074705 ], [ -95.273153998308445, 30.186485287262837 ], [ -95.27323299784598, 30.186852287548053 ], [ -95.273469997782229, 30.187058287555761 ], [ -95.273574997633929, 30.187585287916459 ], [ -95.273838998234496, 30.187722287955804 ], [ -95.274128997874783, 30.187791287539081 ], [ -95.274523998197566, 30.188250287749582 ], [ -95.274971998368187, 30.188388287651023 ], [ -95.275076998300349, 30.188502287716219 ], [ -95.275155998717096, 30.188960287411462 ], [ -95.27531399906826, 30.189121288087463 ], [ -95.275761998379139, 30.189213288231251 ], [ -95.275972999191055, 30.189373288082358 ], [ -95.276605999305104, 30.189305287510489 ], [ -95.27726499908222, 30.189626287653017 ], [ -95.277844999735791, 30.189649288187944 ], [ -95.279057999840063, 30.190085287618793 ], [ -95.279373999227872, 30.190429287752476 ], [ -95.280006999836033, 30.190727288205011 ], [ -95.280323000281115, 30.191003288436008 ], [ -95.280495999692732, 30.191285288180833 ], [ -95.280533000171985, 30.191346288147226 ], [ -95.28056000033925, 30.191621287766903 ], [ -95.280902000475379, 30.192103287911131 ], [ -95.281245000572824, 30.192332288515821 ], [ -95.281376000242417, 30.192973288072555 ], [ -95.28179800028127, 30.193409288727548 ], [ -95.281876000356974, 30.193890288998738 ], [ -95.28237700053748, 30.194165288632149 ], [ -95.282509000428959, 30.194669288603002 ], [ -95.282667000990202, 30.194853288449995 ], [ -95.28322000057814, 30.195151289140011 ], [ -95.283352000838576, 30.19540328848937 ], [ -95.28369500054599, 30.195724289001259 ], [ -95.28390500161251, 30.196182288838539 ], [ -95.28440600080927, 30.196663289083773 ], [ -95.285197001709221, 30.196939289175834 ], [ -95.285566001778562, 30.197283289606755 ], [ -95.286304001355305, 30.197420288764352 ], [ -95.287174002141157, 30.198269289156379 ], [ -95.287807002695999, 30.19838328888623 ], [ -95.288413002805413, 30.198979289849582 ], [ -95.288967002256101, 30.198957289018463 ], [ -95.289309002272461, 30.19911728954764 ], [ -95.289758003205989, 30.199141289769877 ], [ -95.290021002639847, 30.199255289232934 ], [ -95.290232003198895, 30.199530289169189 ], [ -95.290997002779093, 30.199737289200975 ], [ -95.291999003702983, 30.199737289650837 ], [ -95.292395003860861, 30.19941728970732 ], [ -95.293423004068131, 30.199624289201655 ], [ -95.293581004107665, 30.200082289200399 ], [ -95.293792003647098, 30.200403289531561 ], [ -95.294108004178838, 30.200586289451028 ], [ -95.294213004078216, 30.201228289713068 ], [ -95.29437100396278, 30.201525289448291 ], [ -95.294529003986881, 30.201640289657465 ], [ -95.294608004210744, 30.202304289622415 ], [ -95.294793004404923, 30.202442289514757 ], [ -95.294871004396128, 30.203175289972716 ], [ -95.295082004705407, 30.20342728983232 ], [ -95.295451004486623, 30.203634290444885 ], [ -95.295451003953119, 30.204138290432844 ], [ -95.295846004778525, 30.204665290479884 ], [ -95.296743004638671, 30.205100289917819 ], [ -95.297217005396661, 30.205192290144275 ], [ -95.297454004627866, 30.205444290704431 ], [ -95.297692005633365, 30.205582290075636 ], [ -95.297850005492577, 30.205834290219432 ], [ -95.298034005381666, 30.205971290117986 ], [ -95.298483004975267, 30.206063290352674 ], [ -95.29874600554308, 30.206293290929136 ], [ -95.29930000515661, 30.206293290327547 ], [ -95.300170006085779, 30.206614290541754 ], [ -95.30030200600811, 30.206729290703546 ], [ -95.300434005915065, 30.207095290492767 ], [ -95.300618006047571, 30.207370290770339 ], [ -95.301066006109991, 30.207531290982871 ], [ -95.301541006246254, 30.207829290983021 ], [ -95.301989005929769, 30.207852291160478 ], [ -95.302517006960642, 30.208150290551472 ], [ -95.303413006661089, 30.208402290576341 ], [ -95.303835007231243, 30.208723290854003 ], [ -95.304204006555267, 30.209296291390007 ], [ -95.3044070074384, 30.209892291528259 ], [ -95.304424007188302, 30.209923291188456 ], [ -95.304831007243436, 30.208871290761856 ], [ -95.305912007264482, 30.207388290790551 ], [ -95.307701007282972, 30.204933289764391 ], [ -95.307830008046153, 30.204703290351048 ], [ -95.30792600716407, 30.204521289797022 ], [ -95.308496007973574, 30.203343289726767 ], [ -95.309424007923639, 30.201470289441552 ], [ -95.310368008553013, 30.199466288965723 ], [ -95.311464008718019, 30.197034288377331 ], [ -95.312943008676541, 30.193677287305096 ], [ -95.313191007991705, 30.19310628754355 ], [ -95.313317008743226, 30.192829286944612 ], [ -95.31382100869584, 30.191718286707548 ], [ -95.313952008532453, 30.19144128699109 ], [ -95.314144008455827, 30.19097028690571 ], [ -95.314337008568458, 30.190392286464387 ], [ -95.314427008589874, 30.190088286503254 ], [ -95.314520008524923, 30.189770286193816 ], [ -95.314635009203329, 30.189327286411991 ], [ -95.314698009162129, 30.189057286692353 ], [ -95.314752008836038, 30.188764286380696 ], [ -95.314838008439253, 30.188144286282917 ], [ -95.314879008272442, 30.187799286167401 ], [ -95.314910008700622, 30.187486286338874 ], [ -95.314952008695784, 30.186896285695376 ], [ -95.314978008243457, 30.186465286154107 ], [ -95.314980009099159, 30.186425285923484 ], [ -95.314984009119158, 30.186363285804447 ], [ -95.315091009090878, 30.184584285645787 ], [ -95.315099008845621, 30.184460285305533 ], [ -95.315139008529542, 30.18418628504153 ], [ -95.315209008379625, 30.183819285476041 ], [ -95.315339008788627, 30.183275285634156 ], [ -95.315407008218799, 30.183040285569234 ], [ -95.315446009089655, 30.182912285473115 ], [ -95.315478008210391, 30.182812284737434 ], [ -95.315572008226951, 30.182522284876384 ], [ -95.315604008197553, 30.182447284703173 ], [ -95.318137009477454, 30.176540283660721 ], [ -95.318259008649548, 30.17621628414803 ], [ -95.318307008670331, 30.175978283721495 ], [ -95.31837600885504, 30.175485283706269 ], [ -95.31845400851563, 30.173586283366113 ], [ -95.31843800912435, 30.173357282806382 ], [ -95.318397009190619, 30.173087283052705 ], [ -95.3183270089731, 30.172815283054391 ], [ -95.318301008691265, 30.172567282628691 ], [ -95.318310008407451, 30.172465283390157 ], [ -95.318334009354757, 30.172367283147164 ], [ -95.318350009110873, 30.172337283293192 ], [ -95.318387008775147, 30.172264282856322 ], [ -95.31848400872336, 30.17209628249887 ], [ -95.318906008879154, 30.171486282542418 ], [ -95.319551009407149, 30.170670282481531 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 80, "Tract": "48339690501", "Area_SqMi": 4.1864131020925388, "total_2009": 334, "total_2010": 536, "total_2011": 525, "total_2012": 435, "total_2013": 412, "total_2014": 502, "total_2015": 468, "total_2016": 441, "total_2017": 447, "total_2018": 553, "total_2019": 732, "total_2020": 881, "age1": 341, "age2": 605, "age3": 228, "earn1": 260, "earn2": 430, "earn3": 484, "naics_s01": 6, "naics_s02": 0, "naics_s03": 3, "naics_s04": 81, "naics_s05": 0, "naics_s06": 82, "naics_s07": 61, "naics_s08": 0, "naics_s09": 5, "naics_s10": 28, "naics_s11": 12, "naics_s12": 147, "naics_s13": 0, "naics_s14": 191, "naics_s15": 16, "naics_s16": 318, "naics_s17": 18, "naics_s18": 75, "naics_s19": 131, "naics_s20": 0, "race1": 930, "race2": 190, "race3": 5, "race4": 34, "race5": 3, "race6": 12, "ethnicity1": 888, "ethnicity2": 286, "edu1": 172, "edu2": 204, "edu3": 262, "edu4": 195, "Shape_Length": 55699.483327971429, "Shape_Area": 116710032.16870651, "total_2021": 1118, "total_2022": 1174 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.579041079187505, 30.253619290021906 ], [ -95.579011079728772, 30.252243289997605 ], [ -95.578981078796616, 30.251052289811089 ], [ -95.578962079143864, 30.250285289904145 ], [ -95.578894078882058, 30.247602288705899 ], [ -95.578876078634067, 30.247453288964181 ], [ -95.578846079073529, 30.24733228917594 ], [ -95.578800078805017, 30.247179288594317 ], [ -95.578729079344484, 30.247001289104844 ], [ -95.5786330791057, 30.246828288448889 ], [ -95.578516078971575, 30.246660288952363 ], [ -95.578388079333337, 30.246500289040036 ], [ -95.578164078729614, 30.246261288351441 ], [ -95.578032078418175, 30.246147288672645 ], [ -95.577847078998332, 30.24600828848536 ], [ -95.577699078381485, 30.245905288966252 ], [ -95.577612079125061, 30.245845288790441 ], [ -95.5766140781475, 30.245256288476959 ], [ -95.575511078525111, 30.244683288515287 ], [ -95.574885078452965, 30.244375288127134 ], [ -95.574797078159165, 30.244332288241363 ], [ -95.573917078143197, 30.24388328837777 ], [ -95.573722077830936, 30.243788288146849 ], [ -95.5734470777914, 30.243638288167265 ], [ -95.573174077380003, 30.243490288707672 ], [ -95.572965077345813, 30.243364288785695 ], [ -95.572738077704813, 30.243237288028318 ], [ -95.572555076834064, 30.243125288466981 ], [ -95.57237707677082, 30.242997287984387 ], [ -95.572230077147694, 30.242870288448533 ], [ -95.571959077415684, 30.242601287877374 ], [ -95.571694077401034, 30.242322288513311 ], [ -95.571575076482674, 30.242182288041835 ], [ -95.57146907725388, 30.242039288387009 ], [ -95.571155076797368, 30.241453288496217 ], [ -95.571108076326425, 30.241336288207201 ], [ -95.571010076666013, 30.241125287949856 ], [ -95.570981077238187, 30.240995288409675 ], [ -95.570938076612407, 30.240760287780187 ], [ -95.570878076281247, 30.240392288253325 ], [ -95.570811077195486, 30.240094287976927 ], [ -95.570795076379085, 30.239975287405535 ], [ -95.57079507689636, 30.239694287383962 ], [ -95.570786076390633, 30.239359287344051 ], [ -95.570661076722516, 30.23920728722192 ], [ -95.570028076120067, 30.23850928779316 ], [ -95.56988907664747, 30.238368287780034 ], [ -95.569757076675586, 30.238227287226536 ], [ -95.568837075623776, 30.237337287209481 ], [ -95.567681075383518, 30.236397287339521 ], [ -95.567548076037511, 30.236333287271311 ], [ -95.567484075420197, 30.234100287111698 ], [ -95.56746007522716, 30.232452286514221 ], [ -95.567426075663718, 30.231167285917284 ], [ -95.567387075010799, 30.2276362858297 ], [ -95.567460075592237, 30.226193284707886 ], [ -95.567510074681636, 30.22546628491008 ], [ -95.567573075567992, 30.224832284979456 ], [ -95.567635075329534, 30.224554284934911 ], [ -95.567709074819547, 30.224255284268391 ], [ -95.567935075511087, 30.223366284140543 ], [ -95.568124075327333, 30.222740283948252 ], [ -95.568163075145279, 30.222543284415028 ], [ -95.56819907546911, 30.222190284416971 ], [ -95.568217074717182, 30.221850284102011 ], [ -95.568210074686164, 30.221581283974679 ], [ -95.568198074685583, 30.220918284180055 ], [ -95.56813207512036, 30.220940283610283 ], [ -95.567314075151486, 30.221217283717767 ], [ -95.562544073444357, 30.222980284376419 ], [ -95.56173507324732, 30.223295284712947 ], [ -95.560578072890934, 30.223735285255685 ], [ -95.560273073421456, 30.223829285142511 ], [ -95.559975073214815, 30.22390728452087 ], [ -95.559798072839726, 30.223958284818117 ], [ -95.559292072504775, 30.224068284984785 ], [ -95.558946072526183, 30.224137285110075 ], [ -95.558613073274088, 30.224189284636143 ], [ -95.558286072728038, 30.22422728498184 ], [ -95.558178073144092, 30.224235285199779 ], [ -95.557916072414017, 30.224256284933489 ], [ -95.557437072549121, 30.224280284849186 ], [ -95.557297072923774, 30.224280285127332 ], [ -95.555353071996365, 30.22428728546101 ], [ -95.554206072051585, 30.22429328508424 ], [ -95.553682071938098, 30.224296285312381 ], [ -95.553560071281353, 30.224295284939043 ], [ -95.552773071184163, 30.224295285179711 ], [ -95.552662071090964, 30.224295284929866 ], [ -95.551965071126986, 30.224304284887992 ], [ -95.551405071226924, 30.224312285358785 ], [ -95.549185070120046, 30.224341285782504 ], [ -95.547562070172631, 30.224357285371589 ], [ -95.547362069904565, 30.22436028518867 ], [ -95.54516306954541, 30.224386285188697 ], [ -95.544566069187098, 30.224387285534018 ], [ -95.54369606901524, 30.22439428520444 ], [ -95.543232068886184, 30.224397285176966 ], [ -95.54249106905884, 30.224403285218628 ], [ -95.542383068724405, 30.224407285635767 ], [ -95.542191068917134, 30.224414285387986 ], [ -95.541883068703854, 30.224434285592174 ], [ -95.541558068102688, 30.224461285721741 ], [ -95.541397068833831, 30.224826285412153 ], [ -95.54106806880381, 30.225530286152214 ], [ -95.540838068579816, 30.225989286094336 ], [ -95.539973068296163, 30.227823286371521 ], [ -95.538512068115395, 30.230866287027322 ], [ -95.538059068317196, 30.231851287102405 ], [ -95.537723067841327, 30.232549287708988 ], [ -95.536432067378811, 30.23523628835132 ], [ -95.535388067251148, 30.237435288340283 ], [ -95.535107067159657, 30.237969288507784 ], [ -95.534995067366168, 30.238162288692784 ], [ -95.534944067457786, 30.23823828863927 ], [ -95.534875067109468, 30.238324288643273 ], [ -95.535054067707236, 30.238386288692887 ], [ -95.535317067662263, 30.238867288558897 ], [ -95.535528067982099, 30.239074288840442 ], [ -95.535851068021543, 30.239149289004303 ], [ -95.535924068136296, 30.239166288873147 ], [ -95.536135068136872, 30.239326289060056 ], [ -95.53624006767447, 30.239532288634582 ], [ -95.536425067674415, 30.239693289078524 ], [ -95.53724306774042, 30.239716289109708 ], [ -95.537849067836405, 30.240289288968505 ], [ -95.538323068508049, 30.240358288670087 ], [ -95.538640068120301, 30.240404289152007 ], [ -95.540460069448528, 30.241275288907477 ], [ -95.540882068958965, 30.241619289510666 ], [ -95.541198069216961, 30.241573288992132 ], [ -95.541858069710514, 30.241230289052663 ], [ -95.541997069434558, 30.241208288905693 ], [ -95.54230606947651, 30.241162289260728 ], [ -95.542755069461876, 30.241482289147353 ], [ -95.543071069633612, 30.241964288982437 ], [ -95.54328506955963, 30.242183289362032 ], [ -95.54351906967608, 30.242422288898762 ], [ -95.5439730701804, 30.242628288852213 ], [ -95.544016070199163, 30.244737290143611 ], [ -95.545525070791129, 30.244732289695438 ], [ -95.547521070846642, 30.244733289187984 ], [ -95.548140071291442, 30.244724289339 ], [ -95.5485430712435, 30.244713289190138 ], [ -95.548577070973437, 30.245859289410809 ], [ -95.548590071042284, 30.246300290063179 ], [ -95.544904070829233, 30.24637129007748 ], [ -95.545409071264189, 30.258144292317269 ], [ -95.546147071349353, 30.258740292230737 ], [ -95.546517071539284, 30.258695292155579 ], [ -95.547414071922475, 30.258146292712876 ], [ -95.548602071749684, 30.257894291767872 ], [ -95.548971072338404, 30.257551291879125 ], [ -95.54928807160853, 30.257368292201374 ], [ -95.549763072459385, 30.257368291958045 ], [ -95.550396072382412, 30.257643291946582 ], [ -95.550634071844556, 30.257643292467257 ], [ -95.550898071919676, 30.257392291923615 ], [ -95.550977072272843, 30.256842292231322 ], [ -95.551136072261585, 30.256682291510078 ], [ -95.552429072580026, 30.256247292160126 ], [ -95.552534073083876, 30.256339291443979 ], [ -95.552534073220286, 30.25677429171003 ], [ -95.552851072642056, 30.256797291943617 ], [ -95.55308807265817, 30.256591291485375 ], [ -95.553378072692396, 30.256523291732606 ], [ -95.553669072620451, 30.256592291990113 ], [ -95.553985073012726, 30.256431291372476 ], [ -95.554460073413139, 30.256432291745217 ], [ -95.554988073183793, 30.256592292075162 ], [ -95.555436073786197, 30.25659329143345 ], [ -95.555489073095828, 30.256180291726249 ], [ -95.555410073212499, 30.255974291896141 ], [ -95.555754073480884, 30.255447291778108 ], [ -95.556044074072432, 30.255425291283647 ], [ -95.556176073569063, 30.255516291410377 ], [ -95.556519073315386, 30.255425291777346 ], [ -95.556678073471446, 30.254967291227437 ], [ -95.557654073663613, 30.254807291538988 ], [ -95.557997073770395, 30.254510291003555 ], [ -95.558340074535252, 30.254487291080707 ], [ -95.559342073973141, 30.25506029166382 ], [ -95.559342074607201, 30.255266291484201 ], [ -95.559237074271223, 30.255335291572067 ], [ -95.558709074138761, 30.255334291111151 ], [ -95.558550073880014, 30.255426290884554 ], [ -95.558577073949365, 30.25565529132518 ], [ -95.559236074546831, 30.255838291583864 ], [ -95.559500074947451, 30.256022291447088 ], [ -95.55955207433243, 30.256388291382216 ], [ -95.559658075100359, 30.256503291695605 ], [ -95.55994807480252, 30.256434291516452 ], [ -95.560344074805286, 30.255747291586665 ], [ -95.56066107451521, 30.255679291746546 ], [ -95.560740075262345, 30.255771291036581 ], [ -95.560740075347795, 30.25650329171301 ], [ -95.560502074874279, 30.256801291111181 ], [ -95.560502074715444, 30.257007291598288 ], [ -95.560792075150317, 30.257007291852268 ], [ -95.561399074846548, 30.256801291698604 ], [ -95.561742075156999, 30.256573291452174 ], [ -95.562138074784116, 30.256458291312565 ], [ -95.562323074938561, 30.25671029170725 ], [ -95.562639075387935, 30.257535291521993 ], [ -95.562823075674359, 30.257627291634524 ], [ -95.563377076107002, 30.257604292001197 ], [ -95.563793075572022, 30.257719291352011 ], [ -95.564037075913348, 30.257788291694631 ], [ -95.565066076342504, 30.257605291486549 ], [ -95.565435076352699, 30.257949292064389 ], [ -95.566438076004289, 30.258041291985311 ], [ -95.566675076562831, 30.257720291331296 ], [ -95.566649076642904, 30.256918291473781 ], [ -95.566755076746773, 30.256598290892974 ], [ -95.566966076389448, 30.256438290927345 ], [ -95.567283076401026, 30.256415291232177 ], [ -95.567547076491408, 30.256575291070337 ], [ -95.5683910768321, 30.256576291316136 ], [ -95.568418076359592, 30.256415290849922 ], [ -95.568787077415266, 30.256186291273934 ], [ -95.568972076549258, 30.256158291109159 ], [ -95.569236077488824, 30.256118290691649 ], [ -95.56955207731491, 30.256553291247599 ], [ -95.570132076767209, 30.256874291479473 ], [ -95.570396077824199, 30.256874291201001 ], [ -95.570634077532773, 30.256531291035813 ], [ -95.570898077607069, 30.256485291394757 ], [ -95.571109077250085, 30.256577290682358 ], [ -95.571425077374528, 30.256898291448969 ], [ -95.571557077617086, 30.257218291389453 ], [ -95.571847077742447, 30.25731029159752 ], [ -95.572005078213493, 30.257219291525516 ], [ -95.572137078085106, 30.256738291390704 ], [ -95.572269077786913, 30.256623290734428 ], [ -95.572850077700537, 30.256509291138009 ], [ -95.573087077882462, 30.256326290901534 ], [ -95.573457078094336, 30.256257291318359 ], [ -95.573721078164994, 30.256486290787731 ], [ -95.573773077731417, 30.2567382906396 ], [ -95.574011078420313, 30.256922291114069 ], [ -95.574301077903058, 30.256945291215494 ], [ -95.574433078151088, 30.256807291158786 ], [ -95.574697078766988, 30.255937291208465 ], [ -95.575014078589632, 30.255639290478669 ], [ -95.575515078165409, 30.255594291141357 ], [ -95.576095078494106, 30.255731291146464 ], [ -95.576518078896584, 30.255502290860456 ], [ -95.576703078689889, 30.255021290883228 ], [ -95.576993078654453, 30.254724290505031 ], [ -95.576993079077027, 30.25444929044609 ], [ -95.576914078829134, 30.254311290913758 ], [ -95.576914079411821, 30.253853290076645 ], [ -95.576994079322446, 30.253624290194846 ], [ -95.57744207926666, 30.253556290440006 ], [ -95.577891079211085, 30.253877289933303 ], [ -95.578260078962629, 30.253946290323771 ], [ -95.578603079192106, 30.253739290713575 ], [ -95.579041079187505, 30.253619290021906 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 81, "Tract": "48339690405", "Area_SqMi": 12.016807107311724, "total_2009": 397, "total_2010": 529, "total_2011": 595, "total_2012": 707, "total_2013": 676, "total_2014": 720, "total_2015": 643, "total_2016": 697, "total_2017": 671, "total_2018": 691, "total_2019": 839, "total_2020": 908, "age1": 311, "age2": 630, "age3": 321, "earn1": 168, "earn2": 361, "earn3": 733, "naics_s01": 0, "naics_s02": 93, "naics_s03": 32, "naics_s04": 348, "naics_s05": 165, "naics_s06": 49, "naics_s07": 317, "naics_s08": 43, "naics_s09": 0, "naics_s10": 3, "naics_s11": 4, "naics_s12": 76, "naics_s13": 0, "naics_s14": 49, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 47, "naics_s19": 32, "naics_s20": 0, "race1": 1083, "race2": 100, "race3": 11, "race4": 53, "race5": 3, "race6": 12, "ethnicity1": 862, "ethnicity2": 400, "edu1": 222, "edu2": 280, "edu3": 235, "edu4": 214, "Shape_Length": 129185.09310415134, "Shape_Area": 335008015.18093735, "total_2021": 916, "total_2022": 1262 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.691498107044183, 30.227800281089046 ], [ -95.691813106779762, 30.22785728101162 ], [ -95.691167106978057, 30.225652280426253 ], [ -95.690818106488408, 30.22451928057367 ], [ -95.690282105988501, 30.222780280356279 ], [ -95.689575105765059, 30.220483279576033 ], [ -95.688557105806552, 30.217143278671326 ], [ -95.688333106011882, 30.216533278600888 ], [ -95.687994105097033, 30.215870278889586 ], [ -95.685902105035311, 30.212498277797987 ], [ -95.683508103921369, 30.20864027750649 ], [ -95.681849103511198, 30.205975276755492 ], [ -95.680737102771715, 30.204141276274243 ], [ -95.680616102688944, 30.203915276813166 ], [ -95.680524102673374, 30.203723276732614 ], [ -95.680412103480805, 30.20345127610755 ], [ -95.680290102880377, 30.203068276587828 ], [ -95.680244102909654, 30.202943276424463 ], [ -95.680173103349148, 30.20272727598482 ], [ -95.68008910306132, 30.202419276110408 ], [ -95.68003610252498, 30.202168276389305 ], [ -95.679985103311111, 30.201831275849937 ], [ -95.679961102412136, 30.201566275835674 ], [ -95.679927102431932, 30.200947276029382 ], [ -95.679921102253672, 30.200129275485747 ], [ -95.679821102720581, 30.197131275549069 ], [ -95.679803102768744, 30.19640827549345 ], [ -95.679678102644829, 30.191654274388977 ], [ -95.679683101818156, 30.191489274538295 ], [ -95.679701102248131, 30.191322274284218 ], [ -95.679741102499861, 30.19118527395419 ], [ -95.679842102446898, 30.190951273923421 ], [ -95.679891102138711, 30.190878274236745 ], [ -95.679973102651743, 30.190737274161478 ], [ -95.680073102119252, 30.190583274058174 ], [ -95.680178102219031, 30.19044027368167 ], [ -95.680360101987176, 30.190155274166742 ], [ -95.680427102852164, 30.190063273856826 ], [ -95.680468102183923, 30.189993274047826 ], [ -95.680517102653511, 30.189923273925906 ], [ -95.680558101955924, 30.189855273940861 ], [ -95.680736102558754, 30.18953227371323 ], [ -95.680834102621745, 30.189300273648982 ], [ -95.680861102118357, 30.189210273754213 ], [ -95.680957102934144, 30.188822273584968 ], [ -95.681221102525356, 30.187880273538553 ], [ -95.681473102003878, 30.186887272926832 ], [ -95.681691102860498, 30.185965272877269 ], [ -95.681835102959099, 30.185359272391164 ], [ -95.681862102349939, 30.185227272502875 ], [ -95.681950102901524, 30.184864272483043 ], [ -95.681999102606639, 30.184705272701507 ], [ -95.682115102606105, 30.184439272720745 ], [ -95.682249102755335, 30.184158272532333 ], [ -95.682350102217342, 30.183974272090335 ], [ -95.682609102373789, 30.183537272226182 ], [ -95.68279110232406, 30.183248272083958 ], [ -95.682926103025949, 30.183055272423914 ], [ -95.682988103111754, 30.182966272714246 ], [ -95.683194103000815, 30.182688272550607 ], [ -95.683302102388311, 30.182553272541348 ], [ -95.683360102429518, 30.18246927208968 ], [ -95.683463102925188, 30.182299272168905 ], [ -95.683554102991152, 30.182125271826163 ], [ -95.683629103268771, 30.181945271941075 ], [ -95.683708103162971, 30.181689272164725 ], [ -95.683738103087762, 30.181541271952405 ], [ -95.683781102698376, 30.181242271526884 ], [ -95.683815103103584, 30.180640271897367 ], [ -95.683829102391385, 30.180355271408832 ], [ -95.683867103190963, 30.179819271659092 ], [ -95.683958103030946, 30.17894127138582 ], [ -95.68398410317883, 30.178595271040091 ], [ -95.683993102423642, 30.178073270955053 ], [ -95.683978103009224, 30.177462271258417 ], [ -95.683951102663812, 30.177038271438871 ], [ -95.68392910246321, 30.17682827082459 ], [ -95.683888102900269, 30.176502271135075 ], [ -95.683686102284256, 30.174712270754291 ], [ -95.683355102006857, 30.171791270224055 ], [ -95.683348102242917, 30.171609269559458 ], [ -95.683350102134298, 30.171527270161953 ], [ -95.683351102569432, 30.171478270104 ], [ -95.683353102225198, 30.171422269869833 ], [ -95.683373102016859, 30.171266269606356 ], [ -95.680881101523042, 30.169862269821568 ], [ -95.679320100614717, 30.168982269695572 ], [ -95.676630100179764, 30.167466269534074 ], [ -95.676127100066168, 30.167181269511506 ], [ -95.675522100269376, 30.166814269592685 ], [ -95.675367100117654, 30.16670226892089 ], [ -95.675151100320036, 30.166485269067234 ], [ -95.674974100144681, 30.166297269612041 ], [ -95.674832100162618, 30.166174268919502 ], [ -95.674673100156426, 30.166048269576688 ], [ -95.67434109980536, 30.16572326900787 ], [ -95.674268099915437, 30.165636268746187 ], [ -95.674185099172931, 30.165538269204905 ], [ -95.674084099914737, 30.165407268971588 ], [ -95.674053099729221, 30.165367268671321 ], [ -95.673910099497576, 30.165168269425788 ], [ -95.673807099631375, 30.165014268741004 ], [ -95.673793099981168, 30.164990268890186 ], [ -95.67339309892337, 30.164316268414023 ], [ -95.672947098747088, 30.163626268924194 ], [ -95.672283099246883, 30.162506268275955 ], [ -95.667923097185167, 30.155508267101627 ], [ -95.66739009736547, 30.154639267019949 ], [ -95.667222096999325, 30.154364266785219 ], [ -95.667177097104826, 30.154291267065066 ], [ -95.66698009726295, 30.15397026719759 ], [ -95.665222096872711, 30.151102266320503 ], [ -95.66398209612133, 30.149078266453945 ], [ -95.66126909492661, 30.144707265139353 ], [ -95.660483094719623, 30.143440265465628 ], [ -95.658449094515348, 30.140129264228996 ], [ -95.656209094026892, 30.136482263579797 ], [ -95.655974093336624, 30.136096263979681 ], [ -95.655283093146139, 30.134972263979233 ], [ -95.655055092805583, 30.134601263388809 ], [ -95.654857092765837, 30.134279263456751 ], [ -95.654813093326837, 30.134208263512118 ], [ -95.654657093639983, 30.133955263168858 ], [ -95.654288092993667, 30.133356263219731 ], [ -95.65328409228448, 30.131722262959379 ], [ -95.652694092014514, 30.130766262985631 ], [ -95.65211809224256, 30.129833262543073 ], [ -95.651471092631709, 30.128623261969778 ], [ -95.650895092022338, 30.127536262125545 ], [ -95.64967309164436, 30.125027261524068 ], [ -95.649421091611273, 30.124592261845052 ], [ -95.64852009153924, 30.12303126143993 ], [ -95.648201090711268, 30.122506261450557 ], [ -95.647085090628309, 30.120994260693912 ], [ -95.64602009020949, 30.119569260445104 ], [ -95.64581709005958, 30.11933326042428 ], [ -95.645701090091961, 30.119186260700452 ], [ -95.645683090400553, 30.11922626065904 ], [ -95.645533090655903, 30.11956426058288 ], [ -95.645506090380422, 30.119624260914996 ], [ -95.645437090643668, 30.119619261139292 ], [ -95.645412090171263, 30.119513260545776 ], [ -95.645242089755584, 30.119534261106345 ], [ -95.645140089669425, 30.119562260782605 ], [ -95.645090089753282, 30.119595260480015 ], [ -95.644944090503969, 30.119732260404369 ], [ -95.644755089763365, 30.119892260523606 ], [ -95.644533090086966, 30.120057260883183 ], [ -95.644356090103742, 30.120172260974812 ], [ -95.644103089859655, 30.120315261397355 ], [ -95.643932089722952, 30.12037526104216 ], [ -95.643908089476042, 30.12037826129405 ], [ -95.643806089470786, 30.120392261395185 ], [ -95.643711089818481, 30.120386260858105 ], [ -95.64366108962038, 30.120370260911788 ], [ -95.643540090132191, 30.120293261080796 ], [ -95.64330708977495, 30.120062261024472 ], [ -95.643218089583286, 30.120012260742552 ], [ -95.643136089280489, 30.120003261254471 ], [ -95.6431170890598, 30.120002260860645 ], [ -95.643104089260675, 30.120001261322354 ], [ -95.643047089217234, 30.120012260531077 ], [ -95.642953089991991, 30.1200782610597 ], [ -95.642848089424263, 30.120274261080077 ], [ -95.64280108909243, 30.120364261458324 ], [ -95.64272508971969, 30.120446261119803 ], [ -95.642642089038688, 30.120501261124218 ], [ -95.642592089881475, 30.120523261232844 ], [ -95.642522089909406, 30.120529260780021 ], [ -95.642364089276271, 30.120512260866999 ], [ -95.642168089609896, 30.120479261161737 ], [ -95.642156089688655, 30.120479261191001 ], [ -95.642045089265878, 30.120474260659936 ], [ -95.642020089128081, 30.12047126109826 ], [ -95.641991089104437, 30.120474260720773 ], [ -95.641953089537466, 30.120512260897939 ], [ -95.641948089586393, 30.120562261505235 ], [ -95.641947089665024, 30.12057826123122 ], [ -95.641950089623151, 30.1206222614443 ], [ -95.641953089789268, 30.120650261337346 ], [ -95.641966089079816, 30.120699261042379 ], [ -95.642061089150815, 30.120853261068461 ], [ -95.642092088925509, 30.120930261526613 ], [ -95.642096089075537, 30.120976261358081 ], [ -95.642098089130613, 30.120996260930593 ], [ -95.642067089506838, 30.121084260809237 ], [ -95.64197808933946, 30.121161261440946 ], [ -95.641890089068866, 30.12118826082008 ], [ -95.641808089599394, 30.121194260926217 ], [ -95.641744089616438, 30.121177260914941 ], [ -95.641719089063258, 30.121161260860923 ], [ -95.64170008893872, 30.12113326125392 ], [ -95.641618088715248, 30.12089726095752 ], [ -95.641586088939292, 30.1208342610758 ], [ -95.641567089579098, 30.120798260849316 ], [ -95.641523089244359, 30.120743261523081 ], [ -95.641466088904565, 30.120715261471599 ], [ -95.641403088912625, 30.120715261277997 ], [ -95.641346089262584, 30.12072626159237 ], [ -95.641270088858548, 30.120781261403 ], [ -95.641250088646757, 30.120803261119999 ], [ -95.641106088770627, 30.120974261470376 ], [ -95.640891089243851, 30.121254261475727 ], [ -95.640644089187575, 30.121551261736379 ], [ -95.640525089232767, 30.121679261130264 ], [ -95.640385088926763, 30.121831261126246 ], [ -95.640163089355056, 30.122029261361785 ], [ -95.640125088611782, 30.12205526143639 ], [ -95.639986088816855, 30.122155261729187 ], [ -95.639860089294942, 30.12222726188724 ], [ -95.63972708899685, 30.122265261530174 ], [ -95.639256088435204, 30.122338261637623 ], [ -95.639202088662117, 30.122347261190892 ], [ -95.639132089143558, 30.122386261435924 ], [ -95.639044088829834, 30.122452261186417 ], [ -95.638924088641375, 30.122584262033143 ], [ -95.638898088702035, 30.122638261933755 ], [ -95.638867088338287, 30.122770261294214 ], [ -95.638892088715806, 30.123194261497737 ], [ -95.638885088195721, 30.123282262043688 ], [ -95.638866089020155, 30.123326262160216 ], [ -95.638835088951495, 30.123359261489146 ], [ -95.638769088665796, 30.12339126157261 ], [ -95.638759088829062, 30.12339726143632 ], [ -95.638689088637236, 30.123403261739377 ], [ -95.638632088149024, 30.123386261935206 ], [ -95.638494088489367, 30.123308261498277 ], [ -95.638449088065727, 30.12328226133069 ], [ -95.63837308850087, 30.123254261666581 ], [ -95.63827808872098, 30.123243262048987 ], [ -95.638215088560457, 30.123260261586449 ], [ -95.638190088225116, 30.123281261358716 ], [ -95.638177088901998, 30.123336262044699 ], [ -95.638190088632442, 30.123391261893278 ], [ -95.638228088693054, 30.123446262104757 ], [ -95.638398088357349, 30.123589261548609 ], [ -95.638462088884708, 30.123666261841354 ], [ -95.638499088560124, 30.123743261428153 ], [ -95.638518088887082, 30.123831261989871 ], [ -95.638506088132303, 30.123919262076651 ], [ -95.638507088200214, 30.123956262253497 ], [ -95.638512089028154, 30.124123261996107 ], [ -95.638468088570136, 30.124227262225332 ], [ -95.638379088845042, 30.124260262142673 ], [ -95.638310088556338, 30.124271261800306 ], [ -95.638107088148303, 30.124257262101651 ], [ -95.637993088082425, 30.124249261980548 ], [ -95.637943088783388, 30.124254261920694 ], [ -95.63781608869381, 30.124320261586575 ], [ -95.637696088355554, 30.12439726244089 ], [ -95.637665088588079, 30.124430262414005 ], [ -95.637627088211531, 30.124529261843893 ], [ -95.637614088145625, 30.124634262415899 ], [ -95.637633088686201, 30.124683261814212 ], [ -95.637715087922018, 30.124771261632969 ], [ -95.637810088714033, 30.124831262539914 ], [ -95.638006088617246, 30.124859262236217 ], [ -95.638063088789337, 30.124876262269883 ], [ -95.638107088133054, 30.124903261842835 ], [ -95.638120088496663, 30.12494726208169 ], [ -95.638113088352739, 30.12500726178417 ], [ -95.638088088259622, 30.1251122620498 ], [ -95.637993088728706, 30.125216262554225 ], [ -95.6378880880781, 30.125298261990313 ], [ -95.637861088662461, 30.12531226252549 ], [ -95.637563087918252, 30.125430262262647 ], [ -95.637171088398318, 30.125551262058636 ], [ -95.637051088809315, 30.125617261870758 ], [ -95.636994087963856, 30.125667262542702 ], [ -95.636956088081277, 30.125716262717546 ], [ -95.636930088504442, 30.125771262189698 ], [ -95.636924088172719, 30.125837262240573 ], [ -95.63693008868286, 30.125952262728422 ], [ -95.637012088479267, 30.126134262160548 ], [ -95.637025088164265, 30.126183262289395 ], [ -95.637006087883265, 30.126260262679661 ], [ -95.636982088042245, 30.126286262690424 ], [ -95.636955088180272, 30.126315262480126 ], [ -95.636873087937147, 30.126365262537014 ], [ -95.636759088495296, 30.126403262450093 ], [ -95.636620087893249, 30.126425262199305 ], [ -95.636279087982999, 30.126436262727683 ], [ -95.636116087855953, 30.126432262873266 ], [ -95.635963088001745, 30.126430262877001 ], [ -95.635855087558653, 30.126397262174507 ], [ -95.635754088230001, 30.126342262228231 ], [ -95.635506087946567, 30.126109262065956 ], [ -95.6352920873952, 30.125908262440326 ], [ -95.635021088096636, 30.125677262554962 ], [ -95.634907088136032, 30.125600262367922 ], [ -95.634850087670742, 30.125589262578711 ], [ -95.634787087681076, 30.125589262069941 ], [ -95.634730087804982, 30.12561126194894 ], [ -95.634546087845322, 30.12572626197646 ], [ -95.634224087977216, 30.125874262011699 ], [ -95.634142087220454, 30.125929262048235 ], [ -95.634097088047369, 30.12599526256183 ], [ -95.634078087787898, 30.126083262199931 ], [ -95.634072087308724, 30.126314262473379 ], [ -95.634047087835668, 30.126369262981473 ], [ -95.63399008706071, 30.126418262451647 ], [ -95.633926087548502, 30.126446262593472 ], [ -95.633680087301144, 30.126457262262459 ], [ -95.6336170878307, 30.126468262637342 ], [ -95.633421087653829, 30.126564262930618 ], [ -95.633370087035118, 30.126589262485542 ], [ -95.633319087085539, 30.126600262546997 ], [ -95.633104087738189, 30.126583262925166 ], [ -95.633041087677867, 30.126589262297376 ], [ -95.632775087564326, 30.126698262412617 ], [ -95.63231408747103, 30.126792262705912 ], [ -95.632194087096323, 30.126808262764669 ], [ -95.631713087025105, 30.126841262415471 ], [ -95.631656086921922, 30.126852262308656 ], [ -95.631612086659658, 30.126868262663166 ], [ -95.631460086557439, 30.127006263116044 ], [ -95.63136508717794, 30.12707726297776 ], [ -95.631232086508604, 30.127143262395094 ], [ -95.631099086629163, 30.12718126271206 ], [ -95.630859087295846, 30.127209262568062 ], [ -95.630752086467453, 30.127236262591296 ], [ -95.630644086728381, 30.127291262673065 ], [ -95.630404086828918, 30.12748326303797 ], [ -95.630309086891984, 30.127533262911697 ], [ -95.630005086838835, 30.127648262955109 ], [ -95.629815086035521, 30.127763263327211 ], [ -95.629663086352366, 30.127818262983936 ], [ -95.629505086685228, 30.12784026311704 ], [ -95.629366085913787, 30.127835262729004 ], [ -95.629221086760069, 30.127802262687705 ], [ -95.628955086746487, 30.127708262638098 ], [ -95.628911086603168, 30.127703262876263 ], [ -95.628822086768139, 30.1277562630837 ], [ -95.628745085893428, 30.127775262861448 ], [ -95.628672086192978, 30.127792262780517 ], [ -95.62859808591287, 30.127713262660762 ], [ -95.628418086564608, 30.127785263333724 ], [ -95.628038086552181, 30.127856263312644 ], [ -95.627823085697131, 30.12785126296334 ], [ -95.627703085517311, 30.127823263330697 ], [ -95.627438085507393, 30.127702262810338 ], [ -95.627229086303984, 30.127570263042347 ], [ -95.627027085787006, 30.127424262944292 ], [ -95.626818085992895, 30.127273263145966 ], [ -95.626774085637734, 30.127190262692181 ], [ -95.626742086069882, 30.127075262880549 ], [ -95.626698085738099, 30.126828262689362 ], [ -95.626684085892066, 30.126778262575346 ], [ -95.626667085304049, 30.126718262453291 ], [ -95.62655308578141, 30.126564263185529 ], [ -95.626401085747176, 30.126399263175081 ], [ -95.626224085313638, 30.126316262982456 ], [ -95.626106085653703, 30.126318263167075 ], [ -95.625965085569561, 30.126322262893723 ], [ -95.625894085132828, 30.126346262478016 ], [ -95.625548085665613, 30.126464262866484 ], [ -95.625315085087408, 30.126510262651898 ], [ -95.625015085572059, 30.126569262674877 ], [ -95.624892085443037, 30.126565262881883 ], [ -95.624831085299249, 30.126564262819006 ], [ -95.62475608518038, 30.126586262590862 ], [ -95.624673085386263, 30.126591262503482 ], [ -95.624591085184107, 30.126580262727732 ], [ -95.624458085087781, 30.126586263034362 ], [ -95.624370085314098, 30.126597262518494 ], [ -95.624079085347233, 30.12668026260388 ], [ -95.623940084505634, 30.126746263165366 ], [ -95.623460085221026, 30.127180262884004 ], [ -95.623409084805004, 30.127257263273062 ], [ -95.623403084950311, 30.127329262711292 ], [ -95.623422084375562, 30.127389262916935 ], [ -95.623466085234767, 30.127444262791069 ], [ -95.623713084947312, 30.127680263122549 ], [ -95.623764085103417, 30.12784026349129 ], [ -95.623802085450961, 30.127906262950308 ], [ -95.623865085289921, 30.127977263403697 ], [ -95.623903084680933, 30.128037263011141 ], [ -95.623935085347796, 30.128120262858243 ], [ -95.623986084772227, 30.12842026363565 ], [ -95.624004084854903, 30.128466263490392 ], [ -95.624042085430432, 30.128510263627089 ], [ -95.624093085616252, 30.128532263190735 ], [ -95.624194084691851, 30.128516263585741 ], [ -95.624245085533872, 30.128487263079922 ], [ -95.624327084673411, 30.128444263071337 ], [ -95.624409084926398, 30.128417263386602 ], [ -95.624472084703768, 30.128411263500066 ], [ -95.624567085281427, 30.128444262987735 ], [ -95.624643085265532, 30.128482263735421 ], [ -95.624744085653802, 30.128576263515598 ], [ -95.625010085689397, 30.128625263551783 ], [ -95.625133085167178, 30.128627263224882 ], [ -95.625304085289287, 30.128631263134142 ], [ -95.625445085659024, 30.128635263748418 ], [ -95.625862085254383, 30.128707263649769 ], [ -95.626001085240162, 30.128839263116141 ], [ -95.626008085346356, 30.12893326300475 ], [ -95.625869085233532, 30.129059263437266 ], [ -95.625796085157887, 30.129166263132504 ], [ -95.625685085548596, 30.129328263284641 ], [ -95.625520085755483, 30.129548263874906 ], [ -95.625498085258599, 30.129591263619201 ], [ -95.625432085890452, 30.129729263464071 ], [ -95.62531208553942, 30.129889263179599 ], [ -95.625185085731431, 30.129977263917517 ], [ -95.625160085941232, 30.129985263604055 ], [ -95.625004085031236, 30.130038263364774 ], [ -95.624802085797896, 30.1301202637631 ], [ -95.624720085125432, 30.130214264010888 ], [ -95.624739085079511, 30.130373264019138 ], [ -95.62497708536209, 30.130643263689166 ], [ -95.625005085473617, 30.13067526387767 ], [ -95.625138085029192, 30.130753263483825 ], [ -95.625210085620367, 30.130796263477048 ], [ -95.625330085134209, 30.130857264023518 ], [ -95.625488085406275, 30.130939264037792 ], [ -95.625532085550091, 30.131082263501931 ], [ -95.625557085858162, 30.131285264234524 ], [ -95.625291085707573, 30.131956263719808 ], [ -95.625006085074119, 30.132253264314816 ], [ -95.62483508537612, 30.132567264309277 ], [ -95.624602085934129, 30.132874264410908 ], [ -95.62455108532744, 30.132924264290409 ], [ -95.624469085792754, 30.132968264401185 ], [ -95.624368085651838, 30.133006264363797 ], [ -95.624184085615312, 30.133062264406767 ], [ -95.624077085281911, 30.133133263976266 ], [ -95.624007084997203, 30.133221264630226 ], [ -95.623919085497036, 30.133414264488408 ], [ -95.623780085688907, 30.133760264604636 ], [ -95.623786085160717, 30.133831264568052 ], [ -95.623894084807418, 30.134326264880933 ], [ -95.623913085617303, 30.134551264135546 ], [ -95.623901085418026, 30.134639264715009 ], [ -95.623800085187327, 30.134881264800537 ], [ -95.623717085146396, 30.135013264954061 ], [ -95.623566085669182, 30.135189264974631 ], [ -95.623414084753264, 30.135299264715105 ], [ -95.623206084684696, 30.135426264852843 ], [ -95.62317408511953, 30.13547526472923 ], [ -95.623193084795929, 30.135574265093013 ], [ -95.623225085184913, 30.135651265034401 ], [ -95.6232370847098, 30.135744264961577 ], [ -95.623212085294966, 30.135799265263184 ], [ -95.623161085656022, 30.135844264823636 ], [ -95.623117085261967, 30.135860265178479 ], [ -95.623073084918815, 30.135860265217499 ], [ -95.622883085240389, 30.135833264963551 ], [ -95.622826085244611, 30.135844264839871 ], [ -95.622744084625694, 30.135893264614698 ], [ -95.622656084630975, 30.135934264724639 ], [ -95.622637084562186, 30.135943264754207 ], [ -95.622308085138044, 30.135948265063785 ], [ -95.621916084681729, 30.135993264802256 ], [ -95.621758085218815, 30.13599326507364 ], [ -95.621517084705047, 30.135976264991132 ], [ -95.621302084882487, 30.135943264749095 ], [ -95.621106084375043, 30.135899265302992 ], [ -95.620290084586543, 30.135685265271135 ], [ -95.62021208472359, 30.135660264788211 ], [ -95.620031083955283, 30.135603264766527 ], [ -95.619892084541974, 30.135526264747508 ], [ -95.619765084010382, 30.135477264551412 ], [ -95.619683084165871, 30.13547126452373 ], [ -95.61963608432238, 30.135498264686515 ], [ -95.619850084386428, 30.135695264490138 ], [ -95.619895084154891, 30.135737264715267 ], [ -95.62513008614053, 30.138645265779349 ], [ -95.625260085958686, 30.138717265539164 ], [ -95.625944086559301, 30.139097265171998 ], [ -95.629690087338716, 30.141199265552718 ], [ -95.63731308966635, 30.145485266281881 ], [ -95.637520089207172, 30.145615265994095 ], [ -95.637430089788609, 30.145683265995697 ], [ -95.638901089368602, 30.148844267333132 ], [ -95.639463089522053, 30.150114267031828 ], [ -95.642086090780722, 30.155852268380411 ], [ -95.64412409202447, 30.160254269131698 ], [ -95.644193091339474, 30.160407269161894 ], [ -95.644254091557329, 30.160543269076303 ], [ -95.645711092371386, 30.163760270010368 ], [ -95.645837092692005, 30.16402926935675 ], [ -95.646977093170179, 30.166473269806083 ], [ -95.647131092337787, 30.166802270537385 ], [ -95.648596093034541, 30.169970270886438 ], [ -95.651498094697089, 30.176268271946508 ], [ -95.652840094944324, 30.17920927236726 ], [ -95.655580095701453, 30.185054273243832 ], [ -95.656284096212062, 30.186591273541314 ], [ -95.656607096003427, 30.187354274103097 ], [ -95.657034096344063, 30.188121274602924 ], [ -95.657545096451031, 30.188826274464699 ], [ -95.658207096238883, 30.189584274360779 ], [ -95.65872309632897, 30.190053274715694 ], [ -95.659493097104473, 30.19061527454453 ], [ -95.660308096761085, 30.191078274902107 ], [ -95.661414097098685, 30.1915402745412 ], [ -95.661311097592531, 30.191819274905363 ], [ -95.661365098079713, 30.191900274963682 ], [ -95.661401097810582, 30.191969275132518 ], [ -95.66142409739156, 30.192033274442501 ], [ -95.661452097776731, 30.192149275043164 ], [ -95.661472097431229, 30.192375275262719 ], [ -95.661467097645101, 30.192576275286811 ], [ -95.661462097656425, 30.195885276103009 ], [ -95.661466097369555, 30.196235275450501 ], [ -95.661466097795753, 30.196264276098336 ], [ -95.661479098072363, 30.197574276350462 ], [ -95.661505097473622, 30.198219276400213 ], [ -95.66156009840941, 30.198393276120395 ], [ -95.661642097739261, 30.198651276025412 ], [ -95.661702098013265, 30.198738275990159 ], [ -95.662702098750813, 30.20030927669853 ], [ -95.662928098024651, 30.200950276252186 ], [ -95.66301409801288, 30.203293277024819 ], [ -95.663017098977207, 30.203676276757268 ], [ -95.663027098728989, 30.2048422773561 ], [ -95.662471098366339, 30.204771276996684 ], [ -95.662128097862691, 30.204634277257419 ], [ -95.661548097674469, 30.20406227760115 ], [ -95.660968097580877, 30.203856277719161 ], [ -95.660519097603427, 30.20346727739858 ], [ -95.659781098130509, 30.203215276884894 ], [ -95.659121097937401, 30.202620276828675 ], [ -95.658462097530617, 30.202345277326764 ], [ -95.657565096725278, 30.201727276527958 ], [ -95.657117096837609, 30.201201277054952 ], [ -95.656853096574395, 30.200720277191881 ], [ -95.656088097098902, 30.199895276583607 ], [ -95.652580096040097, 30.19808727685594 ], [ -95.651973095250582, 30.197629276473403 ], [ -95.651577095756423, 30.196988276430158 ], [ -95.651208095139609, 30.195683275776705 ], [ -95.650944095280281, 30.195133275924107 ], [ -95.650538094869574, 30.194867276248058 ], [ -95.650522095191448, 30.194857275853909 ], [ -95.64944109456269, 30.194149275505616 ], [ -95.647278093947548, 30.193050275944707 ], [ -95.647146094380886, 30.192890275250967 ], [ -95.646698094332166, 30.192776275450427 ], [ -95.646303094117485, 30.192844275937077 ], [ -95.645591093775153, 30.193234275687139 ], [ -95.644905092936284, 30.193257275409014 ], [ -95.644431093787361, 30.193463275690068 ], [ -95.644158092831873, 30.193671275378268 ], [ -95.644174093541722, 30.197254276959068 ], [ -95.643705093340856, 30.197267276233767 ], [ -95.643718093934979, 30.200617277323602 ], [ -95.642779093634132, 30.201530277875843 ], [ -95.633692090876565, 30.201426278120557 ], [ -95.6336760911243, 30.202604278303223 ], [ -95.634124090959546, 30.20269627841034 ], [ -95.635574091362741, 30.202741277937747 ], [ -95.636840092115676, 30.203199277897109 ], [ -95.63723509187902, 30.203199277986791 ], [ -95.637921092406842, 30.203038278234008 ], [ -95.638580092228352, 30.203176277857956 ], [ -95.63897609265733, 30.203199278200408 ], [ -95.640452092416567, 30.202648278132546 ], [ -95.641138092679782, 30.202671277439382 ], [ -95.641269092921192, 30.202747277703232 ], [ -95.641613093024404, 30.202946278187451 ], [ -95.642905093614729, 30.204091277675303 ], [ -95.644593094266284, 30.204571277756422 ], [ -95.645041094049901, 30.204777278041156 ], [ -95.64570109372869, 30.205373277805457 ], [ -95.646598094703819, 30.206792278394406 ], [ -95.647073094881463, 30.207182278205835 ], [ -95.648048095348258, 30.207594278233099 ], [ -95.648470095354654, 30.207960278670708 ], [ -95.648629095072181, 30.208212278684904 ], [ -95.649236095599946, 30.208830279140404 ], [ -95.650396095620991, 30.209700279161268 ], [ -95.650897095419268, 30.210181279050683 ], [ -95.651181096335549, 30.210776278731789 ], [ -95.65139909643942, 30.211234278690128 ], [ -95.652452096688464, 30.212147278908546 ], [ -95.652560096381663, 30.212241278846282 ], [ -95.6528240962094, 30.212791279304653 ], [ -95.652824096254264, 30.213173279054736 ], [ -95.652824096644352, 30.213387279865579 ], [ -95.652561096873214, 30.21412027952849 ], [ -95.652561096202149, 30.21462327969952 ], [ -95.652719096668477, 30.214921279570859 ], [ -95.65353709625991, 30.215264279607482 ], [ -95.65364409700318, 30.215423280163996 ], [ -95.653362096909817, 30.215577280248965 ], [ -95.652832096980021, 30.215924279923293 ], [ -95.652781096034346, 30.215989280205189 ], [ -95.652669095992536, 30.216135279952443 ], [ -95.652518096321728, 30.216412279778041 ], [ -95.652483096055008, 30.216680280294998 ], [ -95.652533096173315, 30.217133279911216 ], [ -95.652677096138234, 30.21746428068138 ], [ -95.652943096699261, 30.218031280829592 ], [ -95.653126096886567, 30.218407280463456 ], [ -95.653401096441129, 30.219102280890944 ], [ -95.653499096793155, 30.21926128038529 ], [ -95.65442709686819, 30.220194280472565 ], [ -95.65477109718644, 30.220385280514961 ], [ -95.655103097087476, 30.220528280424471 ], [ -95.655709097556397, 30.220611280945395 ], [ -95.656603097350285, 30.220620280621297 ], [ -95.658069097743052, 30.22057928092217 ], [ -95.658048098303738, 30.221209280863366 ], [ -95.657993098164425, 30.22129828101108 ], [ -95.657963098018257, 30.221432280798918 ], [ -95.657940097837823, 30.221723280960795 ], [ -95.657957098479812, 30.222403281270712 ], [ -95.661570098668207, 30.222385281041781 ], [ -95.663790099430869, 30.222383281277146 ], [ -95.664084099245642, 30.222393280832407 ], [ -95.664229099811607, 30.222402281037002 ], [ -95.66454010006062, 30.222431280490841 ], [ -95.664696099508689, 30.222448281279231 ], [ -95.664807099386309, 30.222460281188607 ], [ -95.665096099932029, 30.222503280985457 ], [ -95.665382099510097, 30.22255128121628 ], [ -95.665664099941765, 30.2226102810436 ], [ -95.665946100489236, 30.222681281075978 ], [ -95.666785100038865, 30.222869280473383 ], [ -95.666960100785275, 30.222910281356317 ], [ -95.667161101006343, 30.2229582806828 ], [ -95.667787101009111, 30.223095280817521 ], [ -95.668165100482554, 30.223157281179542 ], [ -95.668423100790577, 30.223190280810424 ], [ -95.6686721008343, 30.223216280741489 ], [ -95.668922101112756, 30.223236281097041 ], [ -95.669191101052107, 30.223240281305046 ], [ -95.67003610101645, 30.223234280651884 ], [ -95.671820101901261, 30.223222280526443 ], [ -95.673179101901638, 30.223214280623317 ], [ -95.675184102446053, 30.223204280891483 ], [ -95.677936103276281, 30.223185280672311 ], [ -95.678002103026344, 30.223185280254654 ], [ -95.680072104134723, 30.223156280890738 ], [ -95.680672104125264, 30.223144280212164 ], [ -95.680816104342654, 30.223141280389985 ], [ -95.681135104175866, 30.223136280890927 ], [ -95.681367104212356, 30.223125280034569 ], [ -95.681659104056124, 30.223124280325944 ], [ -95.68195010470815, 30.223142280767856 ], [ -95.682094103914537, 30.223159280509034 ], [ -95.682308104638849, 30.223192280020282 ], [ -95.682474104459416, 30.223225280423023 ], [ -95.682591104676462, 30.223249280639589 ], [ -95.6830981045524, 30.223382280513782 ], [ -95.683591104348295, 30.223546280095622 ], [ -95.68406910456747, 30.223739280351783 ], [ -95.684305104805361, 30.223847280279369 ], [ -95.684599104933937, 30.224000280883008 ], [ -95.68494410512352, 30.224192280501725 ], [ -95.685165104963403, 30.224330280453785 ], [ -95.685276104879435, 30.224404280418362 ], [ -95.688809106694663, 30.226859280524192 ], [ -95.689003106513212, 30.226977281173511 ], [ -95.689207106362403, 30.227084281158067 ], [ -95.689400105949005, 30.227171281091238 ], [ -95.69007210628925, 30.227423281319759 ], [ -95.690293106573677, 30.227506280977668 ], [ -95.691195106509525, 30.227746280827489 ], [ -95.691498107044183, 30.227800281089046 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 82, "Tract": "48339690407", "Area_SqMi": 6.5875767934424339, "total_2009": 303, "total_2010": 371, "total_2011": 590, "total_2012": 693, "total_2013": 722, "total_2014": 786, "total_2015": 387, "total_2016": 340, "total_2017": 431, "total_2018": 431, "total_2019": 440, "total_2020": 358, "age1": 160, "age2": 378, "age3": 128, "earn1": 60, "earn2": 173, "earn3": 433, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 280, "naics_s05": 36, "naics_s06": 8, "naics_s07": 23, "naics_s08": 3, "naics_s09": 7, "naics_s10": 10, "naics_s11": 131, "naics_s12": 66, "naics_s13": 0, "naics_s14": 20, "naics_s15": 6, "naics_s16": 46, "naics_s17": 6, "naics_s18": 0, "naics_s19": 24, "naics_s20": 0, "race1": 574, "race2": 56, "race3": 4, "race4": 21, "race5": 1, "race6": 10, "ethnicity1": 439, "ethnicity2": 227, "edu1": 135, "edu2": 137, "edu3": 143, "edu4": 91, "Shape_Length": 94889.204814750439, "Shape_Area": 183650366.25081155, "total_2021": 454, "total_2022": 666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.663027098728989, 30.2048422773561 ], [ -95.663017098977207, 30.203676276757268 ], [ -95.66301409801288, 30.203293277024819 ], [ -95.662928098024651, 30.200950276252186 ], [ -95.662702098750813, 30.20030927669853 ], [ -95.661702098013265, 30.198738275990159 ], [ -95.661642097739261, 30.198651276025412 ], [ -95.66156009840941, 30.198393276120395 ], [ -95.661505097473622, 30.198219276400213 ], [ -95.661479098072363, 30.197574276350462 ], [ -95.661466097795753, 30.196264276098336 ], [ -95.661466097369555, 30.196235275450501 ], [ -95.661462097656425, 30.195885276103009 ], [ -95.661467097645101, 30.192576275286811 ], [ -95.661472097431229, 30.192375275262719 ], [ -95.661452097776731, 30.192149275043164 ], [ -95.66142409739156, 30.192033274442501 ], [ -95.661401097810582, 30.191969275132518 ], [ -95.661365098079713, 30.191900274963682 ], [ -95.661311097592531, 30.191819274905363 ], [ -95.661233097863033, 30.191748274411268 ], [ -95.661161097513357, 30.191699274969306 ], [ -95.661084097332093, 30.191656274672283 ], [ -95.660948097449662, 30.191595274766872 ], [ -95.660795097538596, 30.191542274747015 ], [ -95.660594097130314, 30.191498275122182 ], [ -95.658900096850687, 30.191269274480156 ], [ -95.656988096403282, 30.191044274776011 ], [ -95.65648409666224, 30.190984274714499 ], [ -95.655882096140076, 30.190923274511412 ], [ -95.655255096138347, 30.190859275036097 ], [ -95.653148095077725, 30.190648274526119 ], [ -95.652592095580928, 30.190587275326852 ], [ -95.652193094742159, 30.190539275094061 ], [ -95.648379093658392, 30.190125274915985 ], [ -95.645878093856581, 30.189853275086175 ], [ -95.644396093599696, 30.18973627540856 ], [ -95.643668093083377, 30.189669274673427 ], [ -95.643072093030625, 30.189608275259058 ], [ -95.6425620927876, 30.189641275511615 ], [ -95.6401620917391, 30.189481275168106 ], [ -95.638288091940439, 30.189425275329661 ], [ -95.638124091603956, 30.189417274755844 ], [ -95.636520091226529, 30.18933527525958 ], [ -95.636269091499415, 30.189302275596663 ], [ -95.636051090842329, 30.189251275623334 ], [ -95.635968091417311, 30.189221275001078 ], [ -95.635878090787088, 30.189196274995656 ], [ -95.635451090319123, 30.189017274862078 ], [ -95.634780090594859, 30.188709274905545 ], [ -95.631203089485197, 30.186805275141424 ], [ -95.630470089097102, 30.186431275005575 ], [ -95.630191089294939, 30.186270275168837 ], [ -95.629990089219504, 30.186144274663324 ], [ -95.629887089657089, 30.186068274743022 ], [ -95.629783089251347, 30.185982274635045 ], [ -95.629670089681895, 30.185878274857831 ], [ -95.62754308897064, 30.18381427423807 ], [ -95.625496088089534, 30.18188427435058 ], [ -95.624291087672205, 30.182096274619095 ], [ -95.604592082768136, 30.182084274524822 ], [ -95.604776082705555, 30.181649275156083 ], [ -95.604618083083466, 30.181443274879804 ], [ -95.604487082768557, 30.180871274890414 ], [ -95.604276082080176, 30.18064127459186 ], [ -95.603854082685444, 30.180481274872477 ], [ -95.603327082450434, 30.180046274508914 ], [ -95.602483081744992, 30.179588274328616 ], [ -95.602088082130081, 30.17919827423195 ], [ -95.602035081443432, 30.178717273851237 ], [ -95.602140081510285, 30.178603273820908 ], [ -95.602246081593691, 30.178191273975742 ], [ -95.602140081753376, 30.177939274114912 ], [ -95.60185008135727, 30.177549274332545 ], [ -95.601534081639826, 30.176519273756004 ], [ -95.601086081831426, 30.175602273408284 ], [ -95.600979081126226, 30.175509273621817 ], [ -95.600964081810076, 30.175707273322494 ], [ -95.600936081293227, 30.175954273463265 ], [ -95.600869081340406, 30.176282273691442 ], [ -95.600826081730204, 30.176452274044411 ], [ -95.600770081396959, 30.176640273609458 ], [ -95.600711081738851, 30.176820273573426 ], [ -95.600572081203694, 30.17718227434522 ], [ -95.6004750816154, 30.177395273785873 ], [ -95.600355080818986, 30.177617273735059 ], [ -95.600191081323217, 30.17788527431404 ], [ -95.600055081487213, 30.178085274262539 ], [ -95.599901081477583, 30.178277274518344 ], [ -95.599756081115913, 30.178449274642581 ], [ -95.599230080995852, 30.17900527475113 ], [ -95.597588080564407, 30.180749274526253 ], [ -95.596877080895467, 30.181647274975322 ], [ -95.596635080236084, 30.182004275223751 ], [ -95.59617308061901, 30.18274527540661 ], [ -95.595801080874708, 30.183342275362406 ], [ -95.595724080494861, 30.183469275128171 ], [ -95.595298079909199, 30.184116276015484 ], [ -95.594234079669192, 30.185792275616016 ], [ -95.593658079721465, 30.186767276058674 ], [ -95.593133079893008, 30.187680276665901 ], [ -95.592817080184574, 30.18823027656471 ], [ -95.592436079578405, 30.188890276744551 ], [ -95.592286079574009, 30.189152276548903 ], [ -95.591226079543986, 30.190998277175634 ], [ -95.591019080046323, 30.191358277035707 ], [ -95.590970079910804, 30.191443276914825 ], [ -95.590665079083053, 30.191974277630571 ], [ -95.590189079225837, 30.192803277177397 ], [ -95.589629078871752, 30.193779277671482 ], [ -95.589564078919238, 30.193893277994025 ], [ -95.589246079405228, 30.194361277785234 ], [ -95.588978079032259, 30.194722278016425 ], [ -95.588836079325191, 30.194903277769274 ], [ -95.588103079375699, 30.195701278081923 ], [ -95.585454078702071, 30.198580279325878 ], [ -95.582701077820758, 30.20157127994068 ], [ -95.582083078291177, 30.202242279917222 ], [ -95.581379077883909, 30.203007279905183 ], [ -95.581161078043536, 30.203244280433037 ], [ -95.579769077636598, 30.204755280389858 ], [ -95.579594077678749, 30.204934280345949 ], [ -95.579218076981917, 30.205288280564634 ], [ -95.579033076808415, 30.205445280467803 ], [ -95.578749077109848, 30.20566128043437 ], [ -95.578411077138895, 30.205906280987858 ], [ -95.578484077340818, 30.205970280242575 ], [ -95.578985077351859, 30.20617628025802 ], [ -95.579433077524484, 30.20626828075995 ], [ -95.581269078116463, 30.205881280141096 ], [ -95.581385077890261, 30.205856280098963 ], [ -95.581807078048683, 30.205879280447533 ], [ -95.582229077751677, 30.206062280446272 ], [ -95.582492077863478, 30.206269280567628 ], [ -95.582808078586027, 30.206841280229742 ], [ -95.582914078745929, 30.207345280311642 ], [ -95.582940078526661, 30.208009280825038 ], [ -95.5831510784149, 30.208605280887795 ], [ -95.583731078055393, 30.209430280878575 ], [ -95.58382707849529, 30.209707281637197 ], [ -95.583994078816602, 30.210186280875757 ], [ -95.58402107878203, 30.211010281792987 ], [ -95.585316079206336, 30.211292281336167 ], [ -95.58531607909967, 30.212190281557941 ], [ -95.591344080808753, 30.212134281693412 ], [ -95.591381080988882, 30.212902281974362 ], [ -95.595462081642452, 30.212883281870148 ], [ -95.595368081963585, 30.208559280642483 ], [ -95.605853084223597, 30.208559280251659 ], [ -95.611654085990153, 30.208559279878823 ], [ -95.613719086264183, 30.208559279761111 ], [ -95.618031087019347, 30.208559279997445 ], [ -95.618842087465794, 30.208559279583355 ], [ -95.618861087902147, 30.20891427941271 ], [ -95.624146089240568, 30.208794279703501 ], [ -95.625681089637069, 30.208759279795171 ], [ -95.633715091795821, 30.208578278772773 ], [ -95.63372009155205, 30.209322279617137 ], [ -95.631869090934018, 30.210928279879877 ], [ -95.63225609071398, 30.211296279827543 ], [ -95.632263091655346, 30.214264279976639 ], [ -95.63225609135263, 30.215161280385484 ], [ -95.634584091996814, 30.215145280323412 ], [ -95.634575091266356, 30.213703280620912 ], [ -95.634584092049877, 30.213007280450132 ], [ -95.634583091649077, 30.211329279650986 ], [ -95.634587091482885, 30.21120927987786 ], [ -95.634616092100586, 30.210962279693433 ], [ -95.634672091946044, 30.210660279689993 ], [ -95.634709091532073, 30.210494279646717 ], [ -95.634795091489778, 30.210199279079987 ], [ -95.634837091614457, 30.210079279806795 ], [ -95.635005091939917, 30.209734279343909 ], [ -95.635320092064177, 30.20919727902352 ], [ -95.635455091302703, 30.209013279251767 ], [ -95.635621091485106, 30.208797279373687 ], [ -95.635703092074365, 30.20870927914369 ], [ -95.63578709146104, 30.208628278690014 ], [ -95.635970091716075, 30.208476279099305 ], [ -95.63619009148313, 30.208338278731627 ], [ -95.636451091843284, 30.208221279425803 ], [ -95.636656091643914, 30.20814627902185 ], [ -95.636888092605105, 30.208086278606228 ], [ -95.637196091722828, 30.208025278537438 ], [ -95.637612092452983, 30.207964278939105 ], [ -95.637993092483313, 30.207924278727109 ], [ -95.638308092932718, 30.207902278585333 ], [ -95.638668092222247, 30.207889278957101 ], [ -95.639342093127539, 30.207889279083709 ], [ -95.640744093096387, 30.207899278585202 ], [ -95.641211093287055, 30.207911279178898 ], [ -95.641391093502747, 30.20792427874408 ], [ -95.641522092816899, 30.207938279214044 ], [ -95.641686093724545, 30.207967278763377 ], [ -95.641857093038794, 30.208004278852471 ], [ -95.642112093842343, 30.208076278825626 ], [ -95.642526094024333, 30.208219279003846 ], [ -95.643532094060049, 30.208577278420922 ], [ -95.644524093915138, 30.208912279256175 ], [ -95.644710093603848, 30.2089802790946 ], [ -95.644861093974527, 30.209042278562013 ], [ -95.64503809411076, 30.20912627898095 ], [ -95.645566093993367, 30.209395278577436 ], [ -95.645803093906025, 30.209524278896392 ], [ -95.645924094420934, 30.209602279291541 ], [ -95.646045094612944, 30.209687279050264 ], [ -95.646173094771541, 30.209789278571925 ], [ -95.646316094277381, 30.209911279261984 ], [ -95.646600094204913, 30.210210278640456 ], [ -95.646710094226464, 30.210314279380729 ], [ -95.646774095147109, 30.210368279512902 ], [ -95.646965094938537, 30.210500279502362 ], [ -95.647181095216027, 30.210610278998082 ], [ -95.647352095329808, 30.210677278733421 ], [ -95.647558095316313, 30.210743279069753 ], [ -95.647677095144175, 30.210768278809866 ], [ -95.647836094927612, 30.210780279154399 ], [ -95.648126094916435, 30.210787279167722 ], [ -95.648404095052967, 30.210808279272221 ], [ -95.648597095354035, 30.210837279263284 ], [ -95.64878309505437, 30.210889278967834 ], [ -95.649035095075206, 30.210989278898293 ], [ -95.649153095374871, 30.211049279606822 ], [ -95.649259095023567, 30.211123279171161 ], [ -95.64945909529213, 30.211274278776841 ], [ -95.649547095497852, 30.211356278928644 ], [ -95.649958095719541, 30.211845279389422 ], [ -95.650029095163305, 30.211918279139237 ], [ -95.650174095367262, 30.212029279119815 ], [ -95.650353095529695, 30.212124279634907 ], [ -95.650460095522519, 30.2121662793014 ], [ -95.650584095668265, 30.212199279281705 ], [ -95.650771095322796, 30.212228279273855 ], [ -95.651072096163972, 30.212247279391711 ], [ -95.651686095974043, 30.21224627935889 ], [ -95.652023095842111, 30.212235278856735 ], [ -95.652188095868368, 30.212214279513542 ], [ -95.652332096040169, 30.212182279305686 ], [ -95.652452096688464, 30.212147278908546 ], [ -95.65139909643942, 30.211234278690128 ], [ -95.651181096335549, 30.210776278731789 ], [ -95.650897095419268, 30.210181279050683 ], [ -95.650396095620991, 30.209700279161268 ], [ -95.649236095599946, 30.208830279140404 ], [ -95.648629095072181, 30.208212278684904 ], [ -95.648470095354654, 30.207960278670708 ], [ -95.648048095348258, 30.207594278233099 ], [ -95.647073094881463, 30.207182278205835 ], [ -95.646598094703819, 30.206792278394406 ], [ -95.64570109372869, 30.205373277805457 ], [ -95.645041094049901, 30.204777278041156 ], [ -95.644593094266284, 30.204571277756422 ], [ -95.642905093614729, 30.204091277675303 ], [ -95.641613093024404, 30.202946278187451 ], [ -95.641269092921192, 30.202747277703232 ], [ -95.641138092679782, 30.202671277439382 ], [ -95.640452092416567, 30.202648278132546 ], [ -95.63897609265733, 30.203199278200408 ], [ -95.638580092228352, 30.203176277857956 ], [ -95.637921092406842, 30.203038278234008 ], [ -95.63723509187902, 30.203199277986791 ], [ -95.636840092115676, 30.203199277897109 ], [ -95.635574091362741, 30.202741277937747 ], [ -95.634124090959546, 30.20269627841034 ], [ -95.6336760911243, 30.202604278303223 ], [ -95.633692090876565, 30.201426278120557 ], [ -95.642779093634132, 30.201530277875843 ], [ -95.643718093934979, 30.200617277323602 ], [ -95.643705093340856, 30.197267276233767 ], [ -95.644174093541722, 30.197254276959068 ], [ -95.644158092831873, 30.193671275378268 ], [ -95.644431093787361, 30.193463275690068 ], [ -95.644905092936284, 30.193257275409014 ], [ -95.645591093775153, 30.193234275687139 ], [ -95.646303094117485, 30.192844275937077 ], [ -95.646698094332166, 30.192776275450427 ], [ -95.647146094380886, 30.192890275250967 ], [ -95.647278093947548, 30.193050275944707 ], [ -95.64944109456269, 30.194149275505616 ], [ -95.650522095191448, 30.194857275853909 ], [ -95.650538094869574, 30.194867276248058 ], [ -95.650944095280281, 30.195133275924107 ], [ -95.651208095139609, 30.195683275776705 ], [ -95.651577095756423, 30.196988276430158 ], [ -95.651973095250582, 30.197629276473403 ], [ -95.652580096040097, 30.19808727685594 ], [ -95.656088097098902, 30.199895276583607 ], [ -95.656853096574395, 30.200720277191881 ], [ -95.657117096837609, 30.201201277054952 ], [ -95.657565096725278, 30.201727276527958 ], [ -95.658462097530617, 30.202345277326764 ], [ -95.659121097937401, 30.202620276828675 ], [ -95.659781098130509, 30.203215276884894 ], [ -95.660519097603427, 30.20346727739858 ], [ -95.660968097580877, 30.203856277719161 ], [ -95.661548097674469, 30.20406227760115 ], [ -95.662128097862691, 30.204634277257419 ], [ -95.662471098366339, 30.204771276996684 ], [ -95.663027098728989, 30.2048422773561 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 83, "Tract": "48339690406", "Area_SqMi": 4.2905509334902048, "total_2009": 403, "total_2010": 534, "total_2011": 653, "total_2012": 724, "total_2013": 814, "total_2014": 926, "total_2015": 557, "total_2016": 651, "total_2017": 732, "total_2018": 752, "total_2019": 935, "total_2020": 979, "age1": 302, "age2": 571, "age3": 256, "earn1": 270, "earn2": 364, "earn3": 495, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 171, "naics_s05": 70, "naics_s06": 47, "naics_s07": 113, "naics_s08": 0, "naics_s09": 4, "naics_s10": 45, "naics_s11": 33, "naics_s12": 111, "naics_s13": 24, "naics_s14": 24, "naics_s15": 21, "naics_s16": 136, "naics_s17": 58, "naics_s18": 139, "naics_s19": 132, "naics_s20": 0, "race1": 973, "race2": 75, "race3": 13, "race4": 39, "race5": 3, "race6": 26, "ethnicity1": 890, "ethnicity2": 239, "edu1": 125, "edu2": 256, "edu3": 250, "edu4": 196, "Shape_Length": 73636.465114715407, "Shape_Area": 119613216.6743937, "total_2021": 959, "total_2022": 1129 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.658048098303738, 30.221209280863366 ], [ -95.658069097743052, 30.22057928092217 ], [ -95.656603097350285, 30.220620280621297 ], [ -95.655709097556397, 30.220611280945395 ], [ -95.655103097087476, 30.220528280424471 ], [ -95.65477109718644, 30.220385280514961 ], [ -95.65442709686819, 30.220194280472565 ], [ -95.653499096793155, 30.21926128038529 ], [ -95.653401096441129, 30.219102280890944 ], [ -95.653126096886567, 30.218407280463456 ], [ -95.652943096699261, 30.218031280829592 ], [ -95.652677096138234, 30.21746428068138 ], [ -95.652533096173315, 30.217133279911216 ], [ -95.652483096055008, 30.216680280294998 ], [ -95.652518096321728, 30.216412279778041 ], [ -95.652669095992536, 30.216135279952443 ], [ -95.652781096034346, 30.215989280205189 ], [ -95.652832096980021, 30.215924279923293 ], [ -95.653362096909817, 30.215577280248965 ], [ -95.65364409700318, 30.215423280163996 ], [ -95.65353709625991, 30.215264279607482 ], [ -95.652719096668477, 30.214921279570859 ], [ -95.652561096202149, 30.21462327969952 ], [ -95.652561096873214, 30.21412027952849 ], [ -95.652824096644352, 30.213387279865579 ], [ -95.652824096254264, 30.213173279054736 ], [ -95.6528240962094, 30.212791279304653 ], [ -95.652560096381663, 30.212241278846282 ], [ -95.652452096688464, 30.212147278908546 ], [ -95.652332096040169, 30.212182279305686 ], [ -95.652188095868368, 30.212214279513542 ], [ -95.652023095842111, 30.212235278856735 ], [ -95.651686095974043, 30.21224627935889 ], [ -95.651072096163972, 30.212247279391711 ], [ -95.650771095322796, 30.212228279273855 ], [ -95.650584095668265, 30.212199279281705 ], [ -95.650460095522519, 30.2121662793014 ], [ -95.650353095529695, 30.212124279634907 ], [ -95.650174095367262, 30.212029279119815 ], [ -95.650029095163305, 30.211918279139237 ], [ -95.649958095719541, 30.211845279389422 ], [ -95.649547095497852, 30.211356278928644 ], [ -95.64945909529213, 30.211274278776841 ], [ -95.649259095023567, 30.211123279171161 ], [ -95.649153095374871, 30.211049279606822 ], [ -95.649035095075206, 30.210989278898293 ], [ -95.64878309505437, 30.210889278967834 ], [ -95.648597095354035, 30.210837279263284 ], [ -95.648404095052967, 30.210808279272221 ], [ -95.648126094916435, 30.210787279167722 ], [ -95.647836094927612, 30.210780279154399 ], [ -95.647677095144175, 30.210768278809866 ], [ -95.647558095316313, 30.210743279069753 ], [ -95.647352095329808, 30.210677278733421 ], [ -95.647181095216027, 30.210610278998082 ], [ -95.646965094938537, 30.210500279502362 ], [ -95.646774095147109, 30.210368279512902 ], [ -95.646710094226464, 30.210314279380729 ], [ -95.646600094204913, 30.210210278640456 ], [ -95.646316094277381, 30.209911279261984 ], [ -95.646173094771541, 30.209789278571925 ], [ -95.646045094612944, 30.209687279050264 ], [ -95.645924094420934, 30.209602279291541 ], [ -95.645803093906025, 30.209524278896392 ], [ -95.645566093993367, 30.209395278577436 ], [ -95.64503809411076, 30.20912627898095 ], [ -95.644861093974527, 30.209042278562013 ], [ -95.644710093603848, 30.2089802790946 ], [ -95.644524093915138, 30.208912279256175 ], [ -95.643532094060049, 30.208577278420922 ], [ -95.642526094024333, 30.208219279003846 ], [ -95.642112093842343, 30.208076278825626 ], [ -95.641857093038794, 30.208004278852471 ], [ -95.641686093724545, 30.207967278763377 ], [ -95.641522092816899, 30.207938279214044 ], [ -95.641391093502747, 30.20792427874408 ], [ -95.641211093287055, 30.207911279178898 ], [ -95.640744093096387, 30.207899278585202 ], [ -95.639342093127539, 30.207889279083709 ], [ -95.638668092222247, 30.207889278957101 ], [ -95.638308092932718, 30.207902278585333 ], [ -95.637993092483313, 30.207924278727109 ], [ -95.637612092452983, 30.207964278939105 ], [ -95.637196091722828, 30.208025278537438 ], [ -95.636888092605105, 30.208086278606228 ], [ -95.636656091643914, 30.20814627902185 ], [ -95.636451091843284, 30.208221279425803 ], [ -95.63619009148313, 30.208338278731627 ], [ -95.635970091716075, 30.208476279099305 ], [ -95.63578709146104, 30.208628278690014 ], [ -95.635703092074365, 30.20870927914369 ], [ -95.635621091485106, 30.208797279373687 ], [ -95.635455091302703, 30.209013279251767 ], [ -95.635320092064177, 30.20919727902352 ], [ -95.635005091939917, 30.209734279343909 ], [ -95.634837091614457, 30.210079279806795 ], [ -95.634795091489778, 30.210199279079987 ], [ -95.634709091532073, 30.210494279646717 ], [ -95.634672091946044, 30.210660279689993 ], [ -95.634616092100586, 30.210962279693433 ], [ -95.634587091482885, 30.21120927987786 ], [ -95.634583091649077, 30.211329279650986 ], [ -95.634584092049877, 30.213007280450132 ], [ -95.634575091266356, 30.213703280620912 ], [ -95.634584091996814, 30.215145280323412 ], [ -95.63225609135263, 30.215161280385484 ], [ -95.632263091655346, 30.214264279976639 ], [ -95.63225609071398, 30.211296279827543 ], [ -95.631869090934018, 30.210928279879877 ], [ -95.63372009155205, 30.209322279617137 ], [ -95.633715091795821, 30.208578278772773 ], [ -95.625681089637069, 30.208759279795171 ], [ -95.624146089240568, 30.208794279703501 ], [ -95.618861087902147, 30.20891427941271 ], [ -95.618842087465794, 30.208559279583355 ], [ -95.618031087019347, 30.208559279997445 ], [ -95.613719086264183, 30.208559279761111 ], [ -95.611654085990153, 30.208559279878823 ], [ -95.605853084223597, 30.208559280251659 ], [ -95.595368081963585, 30.208559280642483 ], [ -95.595462081642452, 30.212883281870148 ], [ -95.591381080988882, 30.212902281974362 ], [ -95.591344080808753, 30.212134281693412 ], [ -95.58531607909967, 30.212190281557941 ], [ -95.585316079206336, 30.211292281336167 ], [ -95.58402107878203, 30.211010281792987 ], [ -95.583994078816602, 30.210186280875757 ], [ -95.58382707849529, 30.209707281637197 ], [ -95.583731078055393, 30.209430280878575 ], [ -95.5831510784149, 30.208605280887795 ], [ -95.582940078526661, 30.208009280825038 ], [ -95.582914078745929, 30.207345280311642 ], [ -95.582808078586027, 30.206841280229742 ], [ -95.582492077863478, 30.206269280567628 ], [ -95.582229077751677, 30.206062280446272 ], [ -95.581807078048683, 30.205879280447533 ], [ -95.581385077890261, 30.205856280098963 ], [ -95.581269078116463, 30.205881280141096 ], [ -95.579433077524484, 30.20626828075995 ], [ -95.578985077351859, 30.20617628025802 ], [ -95.578484077340818, 30.205970280242575 ], [ -95.578411077138895, 30.205906280987858 ], [ -95.578316076587896, 30.205975281011831 ], [ -95.57813307662046, 30.206091280451545 ], [ -95.574439076123866, 30.208272280979326 ], [ -95.571164074988147, 30.210208281872529 ], [ -95.57088307561348, 30.210374281574982 ], [ -95.57066707521156, 30.210522281516283 ], [ -95.570356074890057, 30.210765281448186 ], [ -95.570058075592286, 30.211021281817089 ], [ -95.569696075530828, 30.211378282219275 ], [ -95.569510074865079, 30.211585281661396 ], [ -95.569222074894512, 30.211943282127205 ], [ -95.569062075005718, 30.212159282481274 ], [ -95.568993075348729, 30.212262282557607 ], [ -95.568895074713083, 30.212422282118876 ], [ -95.568740074888794, 30.212701282401852 ], [ -95.56863807459078, 30.212902282238868 ], [ -95.568570074432131, 30.21306328269452 ], [ -95.568326074442368, 30.213725282143642 ], [ -95.568209075285679, 30.214129282340977 ], [ -95.568163074281031, 30.214337283001317 ], [ -95.568103075096758, 30.214762282843449 ], [ -95.568088074710573, 30.214982282488798 ], [ -95.568080074809032, 30.215322283265166 ], [ -95.568097075241809, 30.21606828291246 ], [ -95.568098074871045, 30.216148283113302 ], [ -95.568135075205873, 30.218132283859322 ], [ -95.568198074685583, 30.220918284180055 ], [ -95.568621075367588, 30.220887284277364 ], [ -95.569016075692957, 30.220864283763749 ], [ -95.569946075523589, 30.220847284244837 ], [ -95.572294076226797, 30.220816284136639 ], [ -95.573038076497141, 30.220788284240793 ], [ -95.573711076726156, 30.220756283925695 ], [ -95.575192076559375, 30.220698284089995 ], [ -95.575559077194981, 30.220684283519223 ], [ -95.577006077565656, 30.220639283503701 ], [ -95.577893078056903, 30.22063128330419 ], [ -95.578673077789063, 30.220634283795739 ], [ -95.580383077790799, 30.220697283859071 ], [ -95.582482079227219, 30.22076128323107 ], [ -95.583769079609297, 30.220805283037013 ], [ -95.584808079597593, 30.220831283619532 ], [ -95.587068079874683, 30.220913283659868 ], [ -95.592248081680822, 30.221102282814964 ], [ -95.592831081327205, 30.221121283628388 ], [ -95.594329081431241, 30.221170282856654 ], [ -95.597505082340106, 30.221274283070329 ], [ -95.599719083416076, 30.221343283064769 ], [ -95.602019083594797, 30.221415282629103 ], [ -95.605794084835424, 30.221524283116207 ], [ -95.610344086341001, 30.221658283014548 ], [ -95.611776085806667, 30.221700282868401 ], [ -95.611867085871722, 30.221705282203992 ], [ -95.614286087146652, 30.221776282522658 ], [ -95.616820087663285, 30.221851282533056 ], [ -95.618092087891128, 30.221886282102744 ], [ -95.618912087848813, 30.221914282451156 ], [ -95.619027088369364, 30.221918282311417 ], [ -95.619297087715097, 30.22192728251915 ], [ -95.625602090153251, 30.221838281941618 ], [ -95.627105090117439, 30.221818281847113 ], [ -95.628468090717888, 30.22179128193785 ], [ -95.630246091052854, 30.221872282390031 ], [ -95.632690091255469, 30.222112282238466 ], [ -95.633275091521824, 30.222195281889775 ], [ -95.633869092092937, 30.222248281555135 ], [ -95.634197092084122, 30.222270282325216 ], [ -95.634675092327754, 30.222288281518658 ], [ -95.635381092608213, 30.22228928214653 ], [ -95.637504092762597, 30.222287281475133 ], [ -95.63779509317007, 30.222287281494516 ], [ -95.638085092947151, 30.222288281993148 ], [ -95.641260093690804, 30.222284282094883 ], [ -95.644733094498349, 30.222289281299894 ], [ -95.645074094385151, 30.222297281876074 ], [ -95.64635109508545, 30.222326281807629 ], [ -95.650541096143002, 30.222433281445031 ], [ -95.651821096614427, 30.222429281425207 ], [ -95.657704097596408, 30.222405280729376 ], [ -95.657957098479812, 30.222403281270712 ], [ -95.657940097837823, 30.221723280960795 ], [ -95.657963098018257, 30.221432280798918 ], [ -95.657993098164425, 30.22129828101108 ], [ -95.658048098303738, 30.221209280863366 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 84, "Tract": "48339690403", "Area_SqMi": 10.955040708856192, "total_2009": 365, "total_2010": 355, "total_2011": 308, "total_2012": 270, "total_2013": 259, "total_2014": 226, "total_2015": 253, "total_2016": 320, "total_2017": 301, "total_2018": 306, "total_2019": 307, "total_2020": 300, "age1": 120, "age2": 339, "age3": 110, "earn1": 76, "earn2": 121, "earn3": 372, "naics_s01": 18, "naics_s02": 5, "naics_s03": 8, "naics_s04": 293, "naics_s05": 8, "naics_s06": 28, "naics_s07": 17, "naics_s08": 4, "naics_s09": 0, "naics_s10": 8, "naics_s11": 11, "naics_s12": 37, "naics_s13": 0, "naics_s14": 97, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 27, "naics_s19": 1, "naics_s20": 0, "race1": 506, "race2": 28, "race3": 2, "race4": 25, "race5": 0, "race6": 8, "ethnicity1": 399, "ethnicity2": 170, "edu1": 111, "edu2": 119, "edu3": 117, "edu4": 102, "Shape_Length": 102253.57444527681, "Shape_Area": 305407785.22334975, "total_2021": 487, "total_2022": 569 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.710636114077204, 30.273950289845729 ], [ -95.710893114211402, 30.273751289526736 ], [ -95.709992113496313, 30.27118828916543 ], [ -95.709092113227968, 30.268605288362163 ], [ -95.708869113533027, 30.267920288931531 ], [ -95.708719113407156, 30.267457288665096 ], [ -95.708165113083666, 30.26557328804806 ], [ -95.707999113407126, 30.265047287710075 ], [ -95.707585113221498, 30.263733287908888 ], [ -95.707259112402227, 30.262816287847254 ], [ -95.706862112197769, 30.261701287016677 ], [ -95.706191112230343, 30.259812286885669 ], [ -95.705721111855908, 30.258642286349282 ], [ -95.705503111965768, 30.258167286590758 ], [ -95.705340111862327, 30.257855286664579 ], [ -95.704736112191384, 30.256792286471267 ], [ -95.702819110848836, 30.253441285974954 ], [ -95.700943110671147, 30.25017228505051 ], [ -95.696285108328581, 30.241883283510496 ], [ -95.695741108580407, 30.240755283576192 ], [ -95.695278108606686, 30.23938528333727 ], [ -95.695204108132216, 30.239139283502126 ], [ -95.69402710763174, 30.235223282675797 ], [ -95.692729107178849, 30.230907281910881 ], [ -95.692262106793478, 30.229354281434972 ], [ -95.691895106948209, 30.22813328134934 ], [ -95.691813106779762, 30.22785728101162 ], [ -95.691498107044183, 30.227800281089046 ], [ -95.691195106509525, 30.227746280827489 ], [ -95.690293106573677, 30.227506280977668 ], [ -95.69007210628925, 30.227423281319759 ], [ -95.689400105949005, 30.227171281091238 ], [ -95.689207106362403, 30.227084281158067 ], [ -95.689003106513212, 30.226977281173511 ], [ -95.688809106694663, 30.226859280524192 ], [ -95.685276104879435, 30.224404280418362 ], [ -95.685165104963403, 30.224330280453785 ], [ -95.68494410512352, 30.224192280501725 ], [ -95.684599104933937, 30.224000280883008 ], [ -95.684305104805361, 30.223847280279369 ], [ -95.68406910456747, 30.223739280351783 ], [ -95.683591104348295, 30.223546280095622 ], [ -95.6830981045524, 30.223382280513782 ], [ -95.682591104676462, 30.223249280639589 ], [ -95.682474104459416, 30.223225280423023 ], [ -95.682308104638849, 30.223192280020282 ], [ -95.682094103914537, 30.223159280509034 ], [ -95.68195010470815, 30.223142280767856 ], [ -95.681659104056124, 30.223124280325944 ], [ -95.681367104212356, 30.223125280034569 ], [ -95.681135104175866, 30.223136280890927 ], [ -95.680816104342654, 30.223141280389985 ], [ -95.680672104125264, 30.223144280212164 ], [ -95.680072104134723, 30.223156280890738 ], [ -95.678002103026344, 30.223185280254654 ], [ -95.677936103276281, 30.223185280672311 ], [ -95.675184102446053, 30.223204280891483 ], [ -95.673179101901638, 30.223214280623317 ], [ -95.671820101901261, 30.223222280526443 ], [ -95.67003610101645, 30.223234280651884 ], [ -95.669191101052107, 30.223240281305046 ], [ -95.668922101112756, 30.223236281097041 ], [ -95.6686721008343, 30.223216280741489 ], [ -95.668423100790577, 30.223190280810424 ], [ -95.668165100482554, 30.223157281179542 ], [ -95.667787101009111, 30.223095280817521 ], [ -95.667161101006343, 30.2229582806828 ], [ -95.666960100785275, 30.222910281356317 ], [ -95.666785100038865, 30.222869280473383 ], [ -95.665946100489236, 30.222681281075978 ], [ -95.665664099941765, 30.2226102810436 ], [ -95.665382099510097, 30.22255128121628 ], [ -95.665096099932029, 30.222503280985457 ], [ -95.664807099386309, 30.222460281188607 ], [ -95.664696099508689, 30.222448281279231 ], [ -95.66454010006062, 30.222431280490841 ], [ -95.664229099811607, 30.222402281037002 ], [ -95.664084099245642, 30.222393280832407 ], [ -95.663790099430869, 30.222383281277146 ], [ -95.661570098668207, 30.222385281041781 ], [ -95.657957098479812, 30.222403281270712 ], [ -95.657704097596408, 30.222405280729376 ], [ -95.651821096614427, 30.222429281425207 ], [ -95.650541096143002, 30.222433281445031 ], [ -95.64635109508545, 30.222326281807629 ], [ -95.645074094385151, 30.222297281876074 ], [ -95.644733094498349, 30.222289281299894 ], [ -95.641260093690804, 30.222284282094883 ], [ -95.638085092947151, 30.222288281993148 ], [ -95.63779509317007, 30.222287281494516 ], [ -95.637504092762597, 30.222287281475133 ], [ -95.635381092608213, 30.22228928214653 ], [ -95.634675092327754, 30.222288281518658 ], [ -95.634197092084122, 30.222270282325216 ], [ -95.633869092092937, 30.222248281555135 ], [ -95.633275091521824, 30.222195281889775 ], [ -95.632690091255469, 30.222112282238466 ], [ -95.630246091052854, 30.221872282390031 ], [ -95.628468090717888, 30.22179128193785 ], [ -95.627105090117439, 30.221818281847113 ], [ -95.625602090153251, 30.221838281941618 ], [ -95.619297087715097, 30.22192728251915 ], [ -95.619027088369364, 30.221918282311417 ], [ -95.618912087848813, 30.221914282451156 ], [ -95.618092087891128, 30.221886282102744 ], [ -95.616820087663285, 30.221851282533056 ], [ -95.616913087985907, 30.22383728258129 ], [ -95.617053088350474, 30.226839283787076 ], [ -95.617071087664058, 30.22739828347186 ], [ -95.61712908834852, 30.228739283548776 ], [ -95.617103088071303, 30.229739284238335 ], [ -95.617091087658125, 30.230768283927187 ], [ -95.617082087703778, 30.231466284225267 ], [ -95.617100087825236, 30.232779284399879 ], [ -95.617106088676039, 30.233238284795796 ], [ -95.61716308821444, 30.234477284847081 ], [ -95.617246088150125, 30.237200285487571 ], [ -95.61724508825678, 30.237351285621937 ], [ -95.617158088707342, 30.2373682853218 ], [ -95.616999088816613, 30.237571285452894 ], [ -95.616968088493408, 30.237630285342931 ], [ -95.616946088231671, 30.237699285853516 ], [ -95.616936088561133, 30.237764285853512 ], [ -95.616939088836105, 30.237833285463264 ], [ -95.61694008850219, 30.241324286702675 ], [ -95.616921088554278, 30.241387286266253 ], [ -95.616818088516609, 30.241478286749771 ], [ -95.616029087900131, 30.241598286152353 ], [ -95.616434088139684, 30.242207286453166 ], [ -95.616724088879067, 30.241978286707869 ], [ -95.618280088935833, 30.241565286016183 ], [ -95.618887089049124, 30.241565286811348 ], [ -95.61909808890465, 30.241359286512239 ], [ -95.619204089017515, 30.24062628638179 ], [ -95.619731088950346, 30.24026028594432 ], [ -95.620259089009863, 30.240214285779111 ], [ -95.620628089155829, 30.240420286443332 ], [ -95.620997089187725, 30.240443286260216 ], [ -95.62112908917635, 30.240351285750279 ], [ -95.621525089241018, 30.240305285794477 ], [ -95.621657089866048, 30.240695285823577 ], [ -95.6221580900866, 30.240947286138816 ], [ -95.622184089396583, 30.241313286100375 ], [ -95.622079089716706, 30.24151928608967 ], [ -95.622053089481113, 30.241863286501022 ], [ -95.622264089645569, 30.242138286674312 ], [ -95.622554090005067, 30.242756286176 ], [ -95.622686089720077, 30.242871286267185 ], [ -95.623293089710316, 30.242870286943909 ], [ -95.623530089799189, 30.242962286704348 ], [ -95.62405809002756, 30.242870286894206 ], [ -95.624638090778149, 30.243008286317533 ], [ -95.624823090370469, 30.243557286485551 ], [ -95.624981090589358, 30.24369528691831 ], [ -95.625614090803651, 30.243695286924687 ], [ -95.625746090489045, 30.24374028693288 ], [ -95.625746091384158, 30.243878286372873 ], [ -95.625482091346313, 30.244153286719115 ], [ -95.625482090625184, 30.244336286887268 ], [ -95.625641091344946, 30.244450286435534 ], [ -95.626142091194225, 30.244611286494134 ], [ -95.626379090590973, 30.244519286370153 ], [ -95.62674909096387, 30.244221286551678 ], [ -95.627141091168554, 30.24427228702093 ], [ -95.627276090996375, 30.244290287069155 ], [ -95.627540091263143, 30.244565287137192 ], [ -95.627804091190839, 30.244748287084953 ], [ -95.627936091312847, 30.244702287075434 ], [ -95.628120091789498, 30.243877286815888 ], [ -95.628305091065869, 30.243717286488558 ], [ -95.628403091587273, 30.243649286689642 ], [ -95.628674091346809, 30.243465286014732 ], [ -95.628964092010051, 30.243488286577914 ], [ -95.629149091774295, 30.243602286646251 ], [ -95.629255091629432, 30.243900286250202 ], [ -95.629360091841221, 30.243992286964289 ], [ -95.629782092407979, 30.243969286917444 ], [ -95.630050091997873, 30.243887286545842 ], [ -95.630310092034321, 30.243808286469548 ], [ -95.631233091848401, 30.243098286036506 ], [ -95.63165509252886, 30.243144286165457 ], [ -95.631972092165952, 30.243304286203092 ], [ -95.632315092599924, 30.243671286553301 ], [ -95.632605092301063, 30.244266286857552 ], [ -95.632843093112612, 30.244518286768532 ], [ -95.633106092529118, 30.244609286859717 ], [ -95.633792092597275, 30.244472286416482 ], [ -95.634056092554744, 30.244472286703029 ], [ -95.634293092928957, 30.244632286611459 ], [ -95.634478093404667, 30.245067286929235 ], [ -95.634795093336692, 30.245250286994199 ], [ -95.635665093304937, 30.244998286826021 ], [ -95.63579709339605, 30.245067286490752 ], [ -95.635745093696158, 30.245296286258522 ], [ -95.635112093412459, 30.245708287056065 ], [ -95.635006093428032, 30.246029286585177 ], [ -95.635191093686814, 30.246350287214781 ], [ -95.635771093434016, 30.246487286412197 ], [ -95.635982093781067, 30.246693286497781 ], [ -95.636062093860133, 30.247334287315368 ], [ -95.636220093387777, 30.247517287032355 ], [ -95.636616094055384, 30.247517287071471 ], [ -95.636721094205598, 30.247449286538018 ], [ -95.636721093397313, 30.247242286461191 ], [ -95.636431093698249, 30.246968286840076 ], [ -95.636431093610511, 30.246762286637054 ], [ -95.636615093956848, 30.246601286525486 ], [ -95.637961094630583, 30.246761286815925 ], [ -95.638515094742544, 30.24712728720122 ], [ -95.638911094403511, 30.24717328641422 ], [ -95.639254094768077, 30.247081286948369 ], [ -95.639465094904693, 30.246875286671585 ], [ -95.640071094776971, 30.246486286906208 ], [ -95.640520095081015, 30.246325286284339 ], [ -95.640836095194643, 30.246027286988348 ], [ -95.641179095210418, 30.246050286188829 ], [ -95.641997094776031, 30.246623286583358 ], [ -95.642841095281781, 30.246920286385766 ], [ -95.643000095829208, 30.247218286367659 ], [ -95.643211095800453, 30.247378286846423 ], [ -95.643448095908383, 30.247447287001577 ], [ -95.643791095416859, 30.247332287115583 ], [ -95.644582096338638, 30.246530286837761 ], [ -95.644952095521475, 30.246690286277978 ], [ -95.645057096414163, 30.246942286205194 ], [ -95.645348095714965, 30.247148286801139 ], [ -95.645954095706927, 30.247080286716248 ], [ -95.646956096880558, 30.246530286687701 ], [ -95.647616097114494, 30.24655228642683 ], [ -95.648038096817956, 30.246804286564291 ], [ -95.647959096476583, 30.247102286089678 ], [ -95.647616097061686, 30.247285286765944 ], [ -95.647748097146817, 30.247606286969624 ], [ -95.647986097152923, 30.247743286995274 ], [ -95.648962097304974, 30.247743286757871 ], [ -95.649358097299995, 30.247926286934199 ], [ -95.650070097317027, 30.24799428615249 ], [ -95.650334097029116, 30.248132286925667 ], [ -95.650545097101471, 30.248384287026745 ], [ -95.651046097466391, 30.248498286346994 ], [ -95.651020097669829, 30.249025286687164 ], [ -95.650915097445207, 30.249139286707099 ], [ -95.650994097667166, 30.249506286594642 ], [ -95.65117909783703, 30.249643286518616 ], [ -95.651680097384116, 30.249643286449935 ], [ -95.652181097971294, 30.249551286661529 ], [ -95.652551097690022, 30.250032287306883 ], [ -95.652551098256282, 30.250238287319032 ], [ -95.652658098431345, 30.250515287155451 ], [ -95.653529097812381, 30.250652287409718 ], [ -95.654399098371044, 30.251087287253132 ], [ -95.654663099060116, 30.250973287115389 ], [ -95.654899098221279, 30.250237286672519 ], [ -95.655110098686336, 30.249848286961008 ], [ -95.655294098854057, 30.249756286443894 ], [ -95.655479098308533, 30.24980228689595 ], [ -95.655690098784859, 30.249916286644755 ], [ -95.655796099266169, 30.250237286498173 ], [ -95.655982098656523, 30.250400286643181 ], [ -95.656325099322927, 30.250537286723372 ], [ -95.656721099096828, 30.25108728701959 ], [ -95.656985099262116, 30.251201287235478 ], [ -95.657328099522829, 30.251109287096831 ], [ -95.657829099708678, 30.251178287308452 ], [ -95.65843609931153, 30.251544287023648 ], [ -95.659306099618107, 30.251498287038757 ], [ -95.660019100206881, 30.252162286962346 ], [ -95.660309100439633, 30.252162287210314 ], [ -95.660826100152804, 30.251999286933536 ], [ -95.661470100433846, 30.251795286534929 ], [ -95.661522100575638, 30.251681286894691 ], [ -95.661850100923601, 30.251643287310447 ], [ -95.662314100595935, 30.251589286634875 ], [ -95.662366100556014, 30.251314286625473 ], [ -95.662102100432875, 30.250994286857917 ], [ -95.662182100438045, 30.250581286366216 ], [ -95.662458100953586, 30.250487286940245 ], [ -95.662656100705604, 30.250421286210749 ], [ -95.663606100801545, 30.250787287109429 ], [ -95.663976101502641, 30.25071828627339 ], [ -95.664686100956615, 30.250233286284505 ], [ -95.664818101168663, 30.250096286201888 ], [ -95.665504101200966, 30.249958286359185 ], [ -95.666190101776024, 30.249935286562366 ], [ -95.667140101545854, 30.250094286704883 ], [ -95.667324101432015, 30.250232286833224 ], [ -95.667722101769385, 30.250465286402576 ], [ -95.668091102246834, 30.25094628612738 ], [ -95.66838110251129, 30.251106286171837 ], [ -95.668777102378584, 30.250900286951211 ], [ -95.668881102436032, 30.250231286832815 ], [ -95.66893310255017, 30.249956286393445 ], [ -95.669118101849037, 30.249796285905393 ], [ -95.670147102314289, 30.250116286417118 ], [ -95.670305102301711, 30.250230286159574 ], [ -95.67075510250632, 30.250647286472919 ], [ -95.670861102413809, 30.251174286590476 ], [ -95.671099102911526, 30.251357286160811 ], [ -95.67141510323016, 30.25147128681348 ], [ -95.672154102906148, 30.251380286091461 ], [ -95.672259102604002, 30.251105286710356 ], [ -95.672497102842456, 30.250944286538854 ], [ -95.672840103456764, 30.250944286150332 ], [ -95.673262102894753, 30.2512652864886 ], [ -95.673499103105698, 30.25135628673128 ], [ -95.673921103706391, 30.25124228681279 ], [ -95.674238103345473, 30.251264286482463 ], [ -95.674581103490979, 30.251493286272776 ], [ -95.674555103567386, 30.25169928647146 ], [ -95.673922104048131, 30.252203286918711 ], [ -95.673500103581404, 30.25279928650658 ], [ -95.67247110318057, 30.253074287085635 ], [ -95.672313103028159, 30.253212287125532 ], [ -95.672340103024681, 30.254128286598828 ], [ -95.672472103446097, 30.254357287509336 ], [ -95.673079103663341, 30.254494286760607 ], [ -95.673633103294549, 30.255043286990926 ], [ -95.674477104269897, 30.255204287439913 ], [ -95.674926103858255, 30.255570287534269 ], [ -95.675111104237672, 30.25591328762086 ], [ -95.67587610446293, 30.256302287551833 ], [ -95.676299104247178, 30.256691287473913 ], [ -95.676246103959201, 30.257058287180186 ], [ -95.676088104777818, 30.257447287803426 ], [ -95.676009104687651, 30.257883287536178 ], [ -95.676220104879917, 30.25840928781836 ], [ -95.676458104636708, 30.258592287501241 ], [ -95.677144104517239, 30.258684287504217 ], [ -95.678200104638904, 30.259370288023813 ], [ -95.678569105528425, 30.259347287860162 ], [ -95.678885104816544, 30.259233287685561 ], [ -95.679096105454548, 30.259026287461225 ], [ -95.679228105554301, 30.258614287652517 ], [ -95.679703104971324, 30.258431287283646 ], [ -95.680151105371138, 30.258408287445068 ], [ -95.681127105307212, 30.258132287474961 ], [ -95.681813105424638, 30.258338287191204 ], [ -95.681998106185318, 30.258521287760537 ], [ -95.681999105938161, 30.259827287844459 ], [ -95.682184105729476, 30.260239287690691 ], [ -95.682448106241893, 30.260605287727632 ], [ -95.682923106132534, 30.260880288035569 ], [ -95.683741106692352, 30.26113128806 ], [ -95.684005106268913, 30.261498288190698 ], [ -95.684032106913349, 30.261887288636334 ], [ -95.684243106298965, 30.262482288597241 ], [ -95.684217106313767, 30.262940288017155 ], [ -95.683848107127048, 30.263330288775318 ], [ -95.683743106778749, 30.263628288314763 ], [ -95.683796106762387, 30.264086288693637 ], [ -95.684112106881457, 30.264383288769007 ], [ -95.684297107257976, 30.264681288466072 ], [ -95.684192107079525, 30.265185288870139 ], [ -95.683876107095585, 30.265574289409749 ], [ -95.68377010658628, 30.265895288734896 ], [ -95.683876107251393, 30.266399289073654 ], [ -95.684166106569819, 30.266536289088787 ], [ -95.684720107426713, 30.266330288816654 ], [ -95.684984107073603, 30.265940289115985 ], [ -95.685881107064333, 30.266238288807045 ], [ -95.685881107786912, 30.266490288891728 ], [ -95.68543310715495, 30.26665028935178 ], [ -95.684985107303746, 30.267063289218832 ], [ -95.684985107411435, 30.267383289169928 ], [ -95.68543410759176, 30.267772289093418 ], [ -95.685381107155393, 30.268070289265005 ], [ -95.685038107472451, 30.268162289658157 ], [ -95.684880106766158, 30.268414289581756 ], [ -95.684827107257661, 30.268803289625499 ], [ -95.685065107537966, 30.269559289697572 ], [ -95.68559410714316, 30.270360290239562 ], [ -95.685541107381326, 30.270727289875033 ], [ -95.685093107222968, 30.271093290402664 ], [ -95.685093107424251, 30.271483290261497 ], [ -95.685463107879116, 30.27207829043315 ], [ -95.686861107687108, 30.272261290093319 ], [ -95.687099108086286, 30.272558290351839 ], [ -95.687100107573471, 30.274093290594013 ], [ -95.68728510825062, 30.274207290260208 ], [ -95.687786107846861, 30.274070290870895 ], [ -95.688340108683974, 30.274115290090307 ], [ -95.688763108501973, 30.274321290505902 ], [ -95.689027108575203, 30.274779290710875 ], [ -95.689528108379946, 30.274802290462006 ], [ -95.689898109030139, 30.275053290825905 ], [ -95.690241109018231, 30.274824290512459 ], [ -95.690636109112191, 30.274870290707735 ], [ -95.690769109233685, 30.275007290378976 ], [ -95.690795109246039, 30.275717290764653 ], [ -95.69127110951932, 30.276289291031162 ], [ -95.691245109304305, 30.276564290967983 ], [ -95.691113108995324, 30.27667929074207 ], [ -95.690084108554643, 30.27677129138111 ], [ -95.690005109337278, 30.276977290730699 ], [ -95.690110109153565, 30.277252291178868 ], [ -95.690612109504173, 30.277824291411974 ], [ -95.691721109232958, 30.278282290886381 ], [ -95.692459109769061, 30.278121291589073 ], [ -95.692829109674548, 30.278166291201465 ], [ -95.693409109536262, 30.278600291485049 ], [ -95.693990110004137, 30.278624291120529 ], [ -95.694333109787152, 30.278715290943669 ], [ -95.695336110741593, 30.278669291282014 ], [ -95.695468110814247, 30.278554291129428 ], [ -95.695468109885979, 30.278325291220991 ], [ -95.695125110158315, 30.27814229127096 ], [ -95.69515110979431, 30.277913291159599 ], [ -95.695309110143327, 30.277844291138756 ], [ -95.696259110863394, 30.278050291284476 ], [ -95.696682111143019, 30.278347291328874 ], [ -95.697130111290733, 30.278279290682853 ], [ -95.697526110706491, 30.278072291356331 ], [ -95.698766111459662, 30.278140291176648 ], [ -95.699162111016548, 30.278415290990388 ], [ -95.699558111689214, 30.278369290659086 ], [ -95.700138111402183, 30.278094291043146 ], [ -95.700983111954685, 30.27816229052635 ], [ -95.701458112239379, 30.278642291056482 ], [ -95.701801112106267, 30.278551291085218 ], [ -95.701880111883938, 30.278161290678987 ], [ -95.702117111866144, 30.278001290876187 ], [ -95.702355111919033, 30.2781382905467 ], [ -95.702540112103691, 30.278527290569759 ], [ -95.702672112050564, 30.279260291084135 ], [ -95.703095111897994, 30.27958029101406 ], [ -95.703280112433944, 30.279626291066194 ], [ -95.703939112153279, 30.279557291150986 ], [ -95.704150112292794, 30.27944229077367 ], [ -95.704678112656481, 30.279648291422898 ], [ -95.704916112862648, 30.280106290920056 ], [ -95.705262113090228, 30.280456290897853 ], [ -95.707010113041818, 30.278761290911017 ], [ -95.707077113397474, 30.278689291149515 ], [ -95.707204113340651, 30.278535290335029 ], [ -95.707441112884439, 30.278219290689858 ], [ -95.707551113204559, 30.278054290452467 ], [ -95.707749113178579, 30.277718290565613 ], [ -95.707836113318763, 30.277544290334347 ], [ -95.707956113719561, 30.277283290918835 ], [ -95.708036113264328, 30.27707629027854 ], [ -95.708095113300772, 30.276898290106754 ], [ -95.708168113027511, 30.276705289938121 ], [ -95.708367113354598, 30.276259290271543 ], [ -95.708381113546352, 30.276232289897035 ], [ -95.708457113257623, 30.276088290339448 ], [ -95.708565113654004, 30.275906290163537 ], [ -95.708646113462464, 30.275795290591088 ], [ -95.708771113117649, 30.275636290496237 ], [ -95.708842113888167, 30.275539290328034 ], [ -95.708986113164258, 30.275372290411525 ], [ -95.709129113881161, 30.275226289666335 ], [ -95.709270114002891, 30.275084289967261 ], [ -95.709556113843647, 30.274827289923604 ], [ -95.710122114361141, 30.274362290124429 ], [ -95.710446114340755, 30.274098289396573 ], [ -95.710636114077204, 30.273950289845729 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 85, "Tract": "48339690205", "Area_SqMi": 6.0728501807747799, "total_2009": 119, "total_2010": 114, "total_2011": 98, "total_2012": 88, "total_2013": 79, "total_2014": 82, "total_2015": 145, "total_2016": 159, "total_2017": 114, "total_2018": 136, "total_2019": 154, "total_2020": 187, "age1": 49, "age2": 68, "age3": 41, "earn1": 50, "earn2": 47, "earn3": 61, "naics_s01": 2, "naics_s02": 5, "naics_s03": 0, "naics_s04": 29, "naics_s05": 0, "naics_s06": 4, "naics_s07": 2, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 25, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 10, "naics_s17": 54, "naics_s18": 0, "naics_s19": 12, "naics_s20": 7, "race1": 144, "race2": 3, "race3": 2, "race4": 2, "race5": 0, "race6": 7, "ethnicity1": 124, "ethnicity2": 34, "edu1": 25, "edu2": 23, "edu3": 28, "edu4": 33, "Shape_Length": 68282.516728202725, "Shape_Area": 169300669.25303942, "total_2021": 143, "total_2022": 158 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.753566120713543, 30.181156269078429 ], [ -95.753577120682223, 30.18089726915527 ], [ -95.753540120406612, 30.179672269163884 ], [ -95.753366120709728, 30.178626269046433 ], [ -95.753099120802887, 30.176977268943912 ], [ -95.752919119903936, 30.175898268374421 ], [ -95.75286211979045, 30.175556268507695 ], [ -95.752818120412471, 30.175295268571301 ], [ -95.752615119906352, 30.173898268236876 ], [ -95.752697119471961, 30.171510267400468 ], [ -95.752827119659173, 30.167291266677118 ], [ -95.752842119374733, 30.163347265593551 ], [ -95.752849119742564, 30.162225265830838 ], [ -95.752852119615923, 30.161475265042707 ], [ -95.752857119605522, 30.159911265345105 ], [ -95.752858119830989, 30.159708264804909 ], [ -95.752859118929337, 30.15931926525165 ], [ -95.752859119731909, 30.159141264759544 ], [ -95.752819118907837, 30.155050263897575 ], [ -95.752818118788852, 30.15308326412028 ], [ -95.75285111931386, 30.148946263313636 ], [ -95.752859118666422, 30.147918262530133 ], [ -95.752885118407193, 30.144140262327536 ], [ -95.752446118995692, 30.144289262184973 ], [ -95.752076119024309, 30.144541262162154 ], [ -95.751892118416464, 30.144792262441413 ], [ -95.751812118453259, 30.145411262484338 ], [ -95.751390118755694, 30.1458682626754 ], [ -95.751494118479485, 30.146876262215198 ], [ -95.751230117949092, 30.147517262273226 ], [ -95.75080811868186, 30.147860262568592 ], [ -95.750223118730972, 30.148069262434188 ], [ -95.749644118347987, 30.148161262585685 ], [ -95.749538118105249, 30.148093263181444 ], [ -95.749432117531796, 30.147749263037699 ], [ -95.748773117776707, 30.147659262830715 ], [ -95.748713117453377, 30.147607263216017 ], [ -95.74845711751469, 30.14738426242139 ], [ -95.747297117448255, 30.147019262429552 ], [ -95.746558117231928, 30.146149262554111 ], [ -95.746505117198623, 30.145920262415906 ], [ -95.746135117370883, 30.145554262473098 ], [ -95.746082116785587, 30.145302262801625 ], [ -95.745555117311753, 30.14505126199391 ], [ -95.745344117150793, 30.144753262067113 ], [ -95.744685117053166, 30.14473126254617 ], [ -95.744316116065647, 30.144617262716185 ], [ -95.744163116567037, 30.144628261951532 ], [ -95.744000116626879, 30.1446402625667 ], [ -95.743763116257782, 30.144915262785375 ], [ -95.743714116196742, 30.145098262332006 ], [ -95.743579116356443, 30.145603262901634 ], [ -95.74313211622983, 30.145947262690978 ], [ -95.74313311682117, 30.147115262838717 ], [ -95.742950116768952, 30.147870263067826 ], [ -95.74247711578046, 30.149039263461951 ], [ -95.742109116409054, 30.149612263782622 ], [ -95.741740115756144, 30.14991026310404 ], [ -95.74110811596762, 30.15030026388062 ], [ -95.740793116397299, 30.150804263380429 ], [ -95.740582115838322, 30.15094226406903 ], [ -95.740213115853919, 30.150965263735774 ], [ -95.739765116153563, 30.15073626397449 ], [ -95.739659115479697, 30.150233263522249 ], [ -95.739474115773348, 30.150050263969305 ], [ -95.739158115213641, 30.14991326330923 ], [ -95.73894611566773, 30.149409263983109 ], [ -95.738762115629314, 30.149226263188527 ], [ -95.737839115298584, 30.149044263287671 ], [ -95.737654114633287, 30.148860263768185 ], [ -95.737363115394615, 30.148128263264692 ], [ -95.737020115213909, 30.147670262954819 ], [ -95.736572115201, 30.147373262778931 ], [ -95.73554411465625, 30.147282263298223 ], [ -95.734833113996899, 30.147123263091505 ], [ -95.73446311375848, 30.146802263308672 ], [ -95.734331113801872, 30.146413263465771 ], [ -95.734304113792916, 30.145543263277752 ], [ -95.734198113617367, 30.145291263060489 ], [ -95.73377511367319, 30.144696262691298 ], [ -95.733011113302837, 30.144376262281028 ], [ -95.732773113230493, 30.144147262651902 ], [ -95.732193113879987, 30.143942262830279 ], [ -95.731772112873472, 30.144125262675939 ], [ -95.731087112691597, 30.144194262556436 ], [ -95.730218113090004, 30.144951263027188 ], [ -95.727189111874736, 30.145641263125746 ], [ -95.72613511218789, 30.145733262967941 ], [ -95.725581111889582, 30.145596263632822 ], [ -95.72534411176477, 30.14536726324468 ], [ -95.724762111324324, 30.144108262656037 ], [ -95.724525111310442, 30.143925262971855 ], [ -95.723866110805744, 30.143857262602786 ], [ -95.723576111658886, 30.143697263113481 ], [ -95.723339110787322, 30.143285262529563 ], [ -95.723338111102365, 30.142644262495534 ], [ -95.723416111186054, 30.142071262584256 ], [ -95.722994110720165, 30.141865262116074 ], [ -95.722783110449384, 30.141568262504389 ], [ -95.722678110909897, 30.141224262414863 ], [ -95.722676111056487, 30.139850262217358 ], [ -95.722359110399168, 30.139095261891921 ], [ -95.721252110796883, 30.138477262127218 ], [ -95.720118109575139, 30.138112261913726 ], [ -95.718282109121617, 30.137821261938846 ], [ -95.718247109483414, 30.137816262123746 ], [ -95.717694109872426, 30.138297262000652 ], [ -95.717167109279984, 30.138297262170607 ], [ -95.717019109389554, 30.138354262060773 ], [ -95.716746108861358, 30.138458261990532 ], [ -95.716403108878609, 30.138252262016803 ], [ -95.715955109462826, 30.138184262299404 ], [ -95.715874108887363, 30.138169262108207 ], [ -95.715454109133972, 30.138093262500984 ], [ -95.715375108950056, 30.138253262293812 ], [ -95.715059109112048, 30.13829926199622 ], [ -95.714585108463893, 30.138139261867487 ], [ -95.714515108576677, 30.138134261789322 ], [ -95.714007108959606, 30.138095262058407 ], [ -95.713814108970013, 30.138196262067964 ], [ -95.713662108199799, 30.138277262001687 ], [ -95.71321510814154, 30.138369262456628 ], [ -95.713051108521881, 30.138320262471204 ], [ -95.712450107954055, 30.138141262514356 ], [ -95.712279107856119, 30.138123261889337 ], [ -95.711581107537612, 30.138050262471619 ], [ -95.711449108104063, 30.138577261877678 ], [ -95.71155510795468, 30.138737262494374 ], [ -95.711555108382356, 30.138989262670382 ], [ -95.711239107348518, 30.139035262481734 ], [ -95.711081108147496, 30.138920262774693 ], [ -95.710712108070098, 30.138944262816356 ], [ -95.710739108164489, 30.139814262354832 ], [ -95.710897107814688, 30.140043262730533 ], [ -95.710896107827878, 30.140061262459913 ], [ -95.710872107361652, 30.140478263134973 ], [ -95.711346107899615, 30.140844262616479 ], [ -95.711979107888936, 30.140866262730366 ], [ -95.712084107791085, 30.140958263183354 ], [ -95.712006107884136, 30.141599263170882 ], [ -95.711795108532982, 30.141806263335372 ], [ -95.711453108492805, 30.142012262840904 ], [ -95.711322107595194, 30.14258526315443 ], [ -95.711164108105379, 30.142653263394063 ], [ -95.711005107616643, 30.142585262697477 ], [ -95.710716107844377, 30.142608263355061 ], [ -95.710640108033587, 30.14266926309336 ], [ -95.710559107540504, 30.142735262939613 ], [ -95.710347107395023, 30.142906262980446 ], [ -95.710238107421858, 30.142982263201109 ], [ -95.71009910766044, 30.143228262841742 ], [ -95.709875107869479, 30.143623263521629 ], [ -95.709870107390259, 30.145262263354223 ], [ -95.710162107577361, 30.145536264113748 ], [ -95.7112911080429, 30.146598263702074 ], [ -95.711755108368422, 30.147033263960509 ], [ -95.712276108792096, 30.147125264050718 ], [ -95.712482108982442, 30.147161263758491 ], [ -95.714102108947088, 30.148574264156927 ], [ -95.714223109420445, 30.148679264317956 ], [ -95.714511109145789, 30.149689264341699 ], [ -95.715091109492093, 30.150195264320228 ], [ -95.715859109988585, 30.150530264150987 ], [ -95.715958110093695, 30.150538264370706 ], [ -95.716111109327812, 30.150640264206494 ], [ -95.716253109565201, 30.15070226426494 ], [ -95.715958110172025, 30.151963264760823 ], [ -95.715614109517489, 30.152414264542692 ], [ -95.71557511003698, 30.152590264575828 ], [ -95.715601109478129, 30.153231265348552 ], [ -95.715813109203296, 30.153712265142047 ], [ -95.716841109861861, 30.15442126570667 ], [ -95.717158110595165, 30.154719265608243 ], [ -95.717266109679244, 30.155208265696238 ], [ -95.717370110455548, 30.155680265749279 ], [ -95.717607110419223, 30.155978265330688 ], [ -95.717792109856958, 30.156459265700523 ], [ -95.718056109909853, 30.156619265577497 ], [ -95.71839911090467, 30.156733265509157 ], [ -95.718373110942593, 30.157122265985819 ], [ -95.718241110539623, 30.157306266248611 ], [ -95.717714110106769, 30.1575122657549 ], [ -95.717688109948099, 30.157924266251825 ], [ -95.717899110483359, 30.158062266248052 ], [ -95.718822110717667, 30.158221266456497 ], [ -95.718796110180236, 30.158473266378063 ], [ -95.718533110282323, 30.158840265759466 ], [ -95.718454110475847, 30.159298266212563 ], [ -95.718957110932124, 30.160786266716951 ], [ -95.718984110535899, 30.161611266433638 ], [ -95.718958110717494, 30.162229267051735 ], [ -95.719248110921427, 30.162618266856875 ], [ -95.719249111543206, 30.163511266869648 ], [ -95.719645111570102, 30.164038267105017 ], [ -95.719673111176775, 30.165183267468965 ], [ -95.719199110957831, 30.165641267112303 ], [ -95.719173110987512, 30.166306267831697 ], [ -95.71898911122598, 30.166626267561547 ], [ -95.71906911135784, 30.166901267733284 ], [ -95.719491111440533, 30.16751926744265 ], [ -95.719516110942237, 30.16758326755874 ], [ -95.719650111097295, 30.167931267943381 ], [ -95.720467111356299, 30.16843426776876 ], [ -95.72070511145219, 30.168709268351396 ], [ -95.720652111574665, 30.169053267784737 ], [ -95.720389111224947, 30.169488268248418 ], [ -95.719889111677361, 30.169901268638696 ], [ -95.719836111492469, 30.170038268700083 ], [ -95.720021111390707, 30.170404268312108 ], [ -95.719916111103899, 30.170908268354061 ], [ -95.719970111794638, 30.17132026855915 ], [ -95.72004911150519, 30.17150426889733 ], [ -95.72039211212531, 30.171847268835908 ], [ -95.720367111621812, 30.17303326897245 ], [ -95.72028811154108, 30.173244268700493 ], [ -95.720350111681341, 30.173388268917709 ], [ -95.720367111330191, 30.173427268735452 ], [ -95.72086811189682, 30.173610269154974 ], [ -95.721422111958191, 30.173701269149927 ], [ -95.722292112479948, 30.173998269281377 ], [ -95.722503112540664, 30.174158269317179 ], [ -95.722635112322749, 30.17445626921182 ], [ -95.722952112689725, 30.174639269025956 ], [ -95.72292611263444, 30.174914268857105 ], [ -95.722715112443538, 30.175189269287973 ], [ -95.722689112146156, 30.17537226894607 ], [ -95.72284811235815, 30.175555269824812 ], [ -95.723428112670845, 30.175738269013952 ], [ -95.723428112254197, 30.176104269333582 ], [ -95.723269112359986, 30.176322269524736 ], [ -95.723244112161822, 30.176356269088345 ], [ -95.723297112472679, 30.176654269259608 ], [ -95.723455112845315, 30.176791269266403 ], [ -95.723456112745836, 30.177158269336928 ], [ -95.723350113189923, 30.177341269529069 ], [ -95.72345611324711, 30.177547269459616 ], [ -95.723292112262982, 30.177868269680626 ], [ -95.723246112964077, 30.177959269640589 ], [ -95.723272112663082, 30.178166270012532 ], [ -95.723510113312059, 30.17839427023975 ], [ -95.723484112339108, 30.178715269689835 ], [ -95.723247112264062, 30.179127270251097 ], [ -95.723274112339084, 30.179448270482744 ], [ -95.723934112988857, 30.180409269903951 ], [ -95.724013113002698, 30.180684270435556 ], [ -95.724567112907792, 30.181073270178697 ], [ -95.724601113101713, 30.181191270578612 ], [ -95.724697113192477, 30.181524270826987 ], [ -95.725069113114415, 30.181782270371922 ], [ -95.725175113740363, 30.182103270815318 ], [ -95.725382113111579, 30.182259270236891 ], [ -95.725597113297297, 30.182423271107556 ], [ -95.725703113812372, 30.182629270415777 ], [ -95.726177114027408, 30.182743270985902 ], [ -95.726573114283511, 30.183132270632964 ], [ -95.727391114238017, 30.183498270596626 ], [ -95.72799811439701, 30.184162271312033 ], [ -95.728552114665604, 30.184344271302248 ], [ -95.728710113989251, 30.184528271158893 ], [ -95.728741114900416, 30.184662270875055 ], [ -95.728975114908437, 30.185672271155266 ], [ -95.729289114991801, 30.186093271374556 ], [ -95.729444114540215, 30.18663327119982 ], [ -95.729657114966074, 30.186782271717014 ], [ -95.729708115135622, 30.186974271125557 ], [ -95.729829114457388, 30.187191271735362 ], [ -95.729943114612297, 30.187382271289945 ], [ -95.730134114859567, 30.187389271808026 ], [ -95.730292115113301, 30.187626271257091 ], [ -95.730499115378478, 30.18776427165723 ], [ -95.730713115534272, 30.187953271384238 ], [ -95.730805114878478, 30.188016271736323 ], [ -95.730869114896436, 30.18806127118653 ], [ -95.730922114802922, 30.188098271219946 ], [ -95.731128115507175, 30.188239271316938 ], [ -95.731254115431952, 30.188476271955473 ], [ -95.731177114909187, 30.188612271862276 ], [ -95.731359115209742, 30.188805271694761 ], [ -95.731604115609542, 30.188957271413138 ], [ -95.73180211507453, 30.189069271660063 ], [ -95.732093115278374, 30.189269271511215 ], [ -95.732291115403996, 30.189367272211776 ], [ -95.732737115862491, 30.189512271668619 ], [ -95.733007115293177, 30.189613271696295 ], [ -95.73312611591632, 30.189657272221641 ], [ -95.733396115903318, 30.189850271659797 ], [ -95.733442116002067, 30.189937271505915 ], [ -95.734565116294817, 30.190381271633083 ], [ -95.735175116803589, 30.190503271940539 ], [ -95.735516116056957, 30.190550271843303 ], [ -95.735894116388863, 30.190589271891916 ], [ -95.736127116331403, 30.190604271776206 ], [ -95.736123116619979, 30.189305271293392 ], [ -95.736779117014848, 30.189281271833956 ], [ -95.740826117238413, 30.189477271699975 ], [ -95.74263111829778, 30.191455272213251 ], [ -95.745201119166424, 30.191523271391713 ], [ -95.745194118511634, 30.19115827195003 ], [ -95.745185119117195, 30.190884271939346 ], [ -95.745170118965049, 30.19040427149417 ], [ -95.745168118988474, 30.19008227166502 ], [ -95.745191118812514, 30.189854271493903 ], [ -95.745217118827995, 30.189764271126567 ], [ -95.745251118926575, 30.189688271652898 ], [ -95.745295118964819, 30.189607271678231 ], [ -95.745346118873499, 30.189528271121691 ], [ -95.74540011922231, 30.189458271008217 ], [ -95.745527119187756, 30.189321271423712 ], [ -95.745689118509645, 30.1891952714242 ], [ -95.74578011932519, 30.189145271513624 ], [ -95.745875118944667, 30.189104270865883 ], [ -95.7460961187859, 30.189037271209035 ], [ -95.746203119177935, 30.189018271538561 ], [ -95.746508118683764, 30.1889762710227 ], [ -95.746666118872369, 30.188958270991069 ], [ -95.746814119305739, 30.188934271458283 ], [ -95.746908119511062, 30.188914271141464 ], [ -95.747124119587767, 30.188848271614717 ], [ -95.747212119026841, 30.188814270790512 ], [ -95.747290119859628, 30.188769271100657 ], [ -95.747369119573008, 30.188716270949872 ], [ -95.747455119480833, 30.188650271420876 ], [ -95.747797119262017, 30.188391270922647 ], [ -95.748413119142313, 30.187839270910153 ], [ -95.748809119336528, 30.187491270957498 ], [ -95.749248119391495, 30.187161270857167 ], [ -95.74951511957731, 30.186922271187079 ], [ -95.749703120271718, 30.18677527088715 ], [ -95.749928120203663, 30.186613270822388 ], [ -95.750087120123581, 30.186518270762281 ], [ -95.750177120100332, 30.186493270427157 ], [ -95.750355120121398, 30.186403270863593 ], [ -95.750451120370911, 30.186370270643916 ], [ -95.750637119888594, 30.186325270352899 ], [ -95.750832120234335, 30.186294270178777 ], [ -95.751034120099177, 30.186274270767203 ], [ -95.751150120093641, 30.186271270994073 ], [ -95.751273120771444, 30.186274270818238 ], [ -95.751654120557461, 30.186305270257062 ], [ -95.751777120252967, 30.186322270154104 ], [ -95.751881119943675, 30.186355270211276 ], [ -95.751989120467996, 30.186399271002745 ], [ -95.752318120776636, 30.186592270700427 ], [ -95.752429120406433, 30.186657270326098 ], [ -95.75255812097123, 30.186729270402754 ], [ -95.752701120797937, 30.186771270585414 ], [ -95.752811120934865, 30.186798270823846 ], [ -95.753033120990963, 30.186834270346658 ], [ -95.753163120933436, 30.18555227048375 ], [ -95.753201120523656, 30.185176270392745 ], [ -95.753305120380674, 30.183691270355425 ], [ -95.753440120173039, 30.182407269517189 ], [ -95.753522120367847, 30.181628269181264 ], [ -95.753552121094202, 30.18135626945552 ], [ -95.753566120713543, 30.181156269078429 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 86, "Tract": "48339690204", "Area_SqMi": 7.1040516802484674, "total_2009": 3022, "total_2010": 2945, "total_2011": 2737, "total_2012": 2656, "total_2013": 2793, "total_2014": 2948, "total_2015": 2961, "total_2016": 2969, "total_2017": 2983, "total_2018": 3159, "total_2019": 3148, "total_2020": 3175, "age1": 641, "age2": 2276, "age3": 962, "earn1": 553, "earn2": 1042, "earn3": 2284, "naics_s01": 2, "naics_s02": 49, "naics_s03": 0, "naics_s04": 270, "naics_s05": 389, "naics_s06": 80, "naics_s07": 82, "naics_s08": 31, "naics_s09": 0, "naics_s10": 23, "naics_s11": 30, "naics_s12": 80, "naics_s13": 8, "naics_s14": 75, "naics_s15": 2593, "naics_s16": 59, "naics_s17": 0, "naics_s18": 65, "naics_s19": 43, "naics_s20": 0, "race1": 3588, "race2": 147, "race3": 36, "race4": 73, "race5": 1, "race6": 34, "ethnicity1": 3061, "ethnicity2": 818, "edu1": 497, "edu2": 779, "edu3": 999, "edu4": 963, "Shape_Length": 81856.961727965361, "Shape_Area": 198048802.13936064, "total_2021": 3697, "total_2022": 3879 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.785772129299062, 30.191226270388075 ], [ -95.785600129654966, 30.19105427051905 ], [ -95.785481129699775, 30.190886270610608 ], [ -95.785259129401126, 30.190611270230455 ], [ -95.785063129084435, 30.190406269919798 ], [ -95.784956129304945, 30.190310270160357 ], [ -95.784772128663406, 30.190181270583171 ], [ -95.784548129099392, 30.190047270420543 ], [ -95.78424012834202, 30.189837270130617 ], [ -95.78418912934157, 30.189802269728045 ], [ -95.784065128731285, 30.1897082697994 ], [ -95.783906128678765, 30.189520270172601 ], [ -95.783802128862675, 30.189341269805698 ], [ -95.783741128909085, 30.189216270057599 ], [ -95.783576128541, 30.188822270326046 ], [ -95.783507128163336, 30.188627270158626 ], [ -95.783425128738358, 30.188254269887477 ], [ -95.783407128760757, 30.188113269440287 ], [ -95.78331012865398, 30.187553269758151 ], [ -95.783291128296753, 30.187464270078113 ], [ -95.783215128883484, 30.187226269841972 ], [ -95.783179127927738, 30.18714527002259 ], [ -95.782792128820745, 30.186390269461572 ], [ -95.782596127851519, 30.185968269508045 ], [ -95.782524128373211, 30.185730269535792 ], [ -95.782506128575577, 30.18567126903433 ], [ -95.782405128091312, 30.185366269719715 ], [ -95.782378127735925, 30.185264269299477 ], [ -95.782335128120906, 30.185136269676942 ], [ -95.782291128537651, 30.184951269626882 ], [ -95.782207128004458, 30.18469626921852 ], [ -95.78218712834466, 30.184616268855855 ], [ -95.782151128025404, 30.184364268724661 ], [ -95.782093127834628, 30.183527269282489 ], [ -95.782057128409463, 30.183174268679608 ], [ -95.782013128416807, 30.182892268517421 ], [ -95.781988127624018, 30.182782268630131 ], [ -95.781962128182798, 30.182699268467502 ], [ -95.781917127990567, 30.182576268959892 ], [ -95.781865127804252, 30.182407268831334 ], [ -95.78160712776922, 30.181670268331281 ], [ -95.781588127361829, 30.181592268901824 ], [ -95.781564127255777, 30.181435268332876 ], [ -95.781559128180504, 30.181283268659829 ], [ -95.781572128260876, 30.18112726843227 ], [ -95.781710127269122, 30.180427268149575 ], [ -95.781864127281906, 30.179646267914059 ], [ -95.781912127978799, 30.179306267989531 ], [ -95.781985128254121, 30.178562268086917 ], [ -95.782155128061433, 30.177059267948682 ], [ -95.782217127977674, 30.176703267214997 ], [ -95.782303128016594, 30.176410267727491 ], [ -95.782381127748494, 30.176220267730876 ], [ -95.78254212814997, 30.175918267162384 ], [ -95.782684127937429, 30.175710267335539 ], [ -95.783015127662935, 30.175294267247835 ], [ -95.783229128003214, 30.175041267592178 ], [ -95.78326912794364, 30.174992267140258 ], [ -95.783041127534972, 30.174862266955959 ], [ -95.782435127755662, 30.174839267066201 ], [ -95.782330127518151, 30.174747267377754 ], [ -95.782199127929601, 30.173693267034711 ], [ -95.781909127273863, 30.173098266542624 ], [ -95.78156712711268, 30.172800267118372 ], [ -95.780671126665183, 30.172502266614444 ], [ -95.780408126780699, 30.172204266977637 ], [ -95.78040812678627, 30.171631266150264 ], [ -95.780725127275105, 30.170807266007426 ], [ -95.780541126773926, 30.170578266684544 ], [ -95.779855127193727, 30.170348266723003 ], [ -95.779645126989919, 30.170028266546463 ], [ -95.779013126320891, 30.169707266547306 ], [ -95.778723126289194, 30.169477265851548 ], [ -95.778776126112518, 30.168424265793767 ], [ -95.778645126836452, 30.168172266305429 ], [ -95.778355126748778, 30.167897265790504 ], [ -95.778065125771775, 30.167759266092258 ], [ -95.777952126319221, 30.167577265607694 ], [ -95.777881125796654, 30.167462265829641 ], [ -95.77782912657743, 30.166729265989272 ], [ -95.777434126213919, 30.166339265779442 ], [ -95.776934125468102, 30.166041265418663 ], [ -95.776538125495193, 30.165606265733683 ], [ -95.776486125412887, 30.165193265847311 ], [ -95.776592125993943, 30.164987265431815 ], [ -95.777146125880847, 30.16439226511838 ], [ -95.777331125617749, 30.164095265332918 ], [ -95.777041125724452, 30.163705264722733 ], [ -95.777042125738717, 30.162949264966286 ], [ -95.776936125700246, 30.16265226459571 ], [ -95.77651512569085, 30.162308264687223 ], [ -95.775672125112081, 30.16201026493253 ], [ -95.775160125402962, 30.161497264504305 ], [ -95.774803124815321, 30.161139264227799 ], [ -95.774355124779461, 30.160955264207136 ], [ -95.773195124583296, 30.1610002643543 ], [ -95.772958124655162, 30.160909264447366 ], [ -95.772300124249369, 30.160290264652989 ], [ -95.772010123820792, 30.160221264894222 ], [ -95.771694124224794, 30.160495264647196 ], [ -95.771193124107697, 30.16070126465333 ], [ -95.770929123776881, 30.160587264847752 ], [ -95.770718124194545, 30.160380264600754 ], [ -95.770613123900077, 30.159899264265555 ], [ -95.770060124323436, 30.159487264193061 ], [ -95.770034124212231, 30.159212264625317 ], [ -95.769877124178862, 30.158891264457452 ], [ -95.769613123768664, 30.158616264209311 ], [ -95.769165123981253, 30.158616264573773 ], [ -95.76861112388282, 30.158959264355047 ], [ -95.768163123350959, 30.159096264636506 ], [ -95.767873123171043, 30.159004264885901 ], [ -95.767663122875774, 30.15884426431731 ], [ -95.76750512264384, 30.158477264321824 ], [ -95.76726812330206, 30.158271264304325 ], [ -95.766477122412496, 30.158408263992758 ], [ -95.766319123039779, 30.158293264589414 ], [ -95.766056123089555, 30.157858264229194 ], [ -95.765424122190922, 30.157811264148783 ], [ -95.76531812294229, 30.157628264663202 ], [ -95.76539812227341, 30.156964264069941 ], [ -95.765056122245738, 30.156574264455955 ], [ -95.764819122750566, 30.156574264020882 ], [ -95.764423122713765, 30.156826263871391 ], [ -95.763711122092531, 30.157604264615124 ], [ -95.763315121600954, 30.157672264265226 ], [ -95.76294712237538, 30.157466264374129 ], [ -95.762420121684698, 30.157397264673222 ], [ -95.762314121711796, 30.157305264405615 ], [ -95.762077121159379, 30.157282264599203 ], [ -95.76170812200894, 30.15744226396642 ], [ -95.76155012145513, 30.157419264040133 ], [ -95.761313121778642, 30.157213263919683 ], [ -95.761234121770428, 30.156709264005443 ], [ -95.761024121768216, 30.15654926430296 ], [ -95.760312121656256, 30.156502264251614 ], [ -95.760075121231395, 30.156136264416961 ], [ -95.759680121247087, 30.155838263766764 ], [ -95.759443120513978, 30.155746263715479 ], [ -95.758758120620811, 30.155699263940967 ], [ -95.758178120925095, 30.155791263779669 ], [ -95.758046120133287, 30.155653264263751 ], [ -95.758100120196119, 30.155172263686442 ], [ -95.758021120245985, 30.155058264134691 ], [ -95.75683512028688, 30.154621263743046 ], [ -95.756625119770774, 30.15434626383125 ], [ -95.756467119848878, 30.153820264035666 ], [ -95.756257120031123, 30.153499263335004 ], [ -95.756178119659651, 30.152812263990377 ], [ -95.755599119752645, 30.152307263435588 ], [ -95.755468120167862, 30.151872263489672 ], [ -95.755336119218185, 30.151780263712176 ], [ -95.754546119190408, 30.151528263505945 ], [ -95.754335119125969, 30.151184263025876 ], [ -95.753835118871706, 30.150772263204779 ], [ -95.753783119004794, 30.150565263122544 ], [ -95.75386211925489, 30.150039262983636 ], [ -95.753837118773561, 30.14907726306328 ], [ -95.753626118974339, 30.148939262810288 ], [ -95.752968118578195, 30.148870262706449 ], [ -95.75285111931386, 30.148946263313636 ], [ -95.752818118788852, 30.15308326412028 ], [ -95.752819118907837, 30.155050263897575 ], [ -95.752859119731909, 30.159141264759544 ], [ -95.752859118929337, 30.15931926525165 ], [ -95.752858119830989, 30.159708264804909 ], [ -95.752857119605522, 30.159911265345105 ], [ -95.752852119615923, 30.161475265042707 ], [ -95.752849119742564, 30.162225265830838 ], [ -95.752842119374733, 30.163347265593551 ], [ -95.752827119659173, 30.167291266677118 ], [ -95.752697119471961, 30.171510267400468 ], [ -95.752615119906352, 30.173898268236876 ], [ -95.752818120412471, 30.175295268571301 ], [ -95.75286211979045, 30.175556268507695 ], [ -95.752919119903936, 30.175898268374421 ], [ -95.753099120802887, 30.176977268943912 ], [ -95.753366120709728, 30.178626269046433 ], [ -95.753540120406612, 30.179672269163884 ], [ -95.753577120682223, 30.18089726915527 ], [ -95.753566120713543, 30.181156269078429 ], [ -95.753552121094202, 30.18135626945552 ], [ -95.753522120367847, 30.181628269181264 ], [ -95.753440120173039, 30.182407269517189 ], [ -95.753305120380674, 30.183691270355425 ], [ -95.753201120523656, 30.185176270392745 ], [ -95.753163120933436, 30.18555227048375 ], [ -95.753033120990963, 30.186834270346658 ], [ -95.752811120934865, 30.186798270823846 ], [ -95.752701120797937, 30.186771270585414 ], [ -95.75255812097123, 30.186729270402754 ], [ -95.752429120406433, 30.186657270326098 ], [ -95.752318120776636, 30.186592270700427 ], [ -95.751989120467996, 30.186399271002745 ], [ -95.751881119943675, 30.186355270211276 ], [ -95.751777120252967, 30.186322270154104 ], [ -95.751654120557461, 30.186305270257062 ], [ -95.751273120771444, 30.186274270818238 ], [ -95.751150120093641, 30.186271270994073 ], [ -95.751034120099177, 30.186274270767203 ], [ -95.750832120234335, 30.186294270178777 ], [ -95.750637119888594, 30.186325270352899 ], [ -95.750451120370911, 30.186370270643916 ], [ -95.750355120121398, 30.186403270863593 ], [ -95.750177120100332, 30.186493270427157 ], [ -95.750087120123581, 30.186518270762281 ], [ -95.749928120203663, 30.186613270822388 ], [ -95.749703120271718, 30.18677527088715 ], [ -95.74951511957731, 30.186922271187079 ], [ -95.749248119391495, 30.187161270857167 ], [ -95.748809119336528, 30.187491270957498 ], [ -95.748413119142313, 30.187839270910153 ], [ -95.747797119262017, 30.188391270922647 ], [ -95.747455119480833, 30.188650271420876 ], [ -95.747369119573008, 30.188716270949872 ], [ -95.747290119859628, 30.188769271100657 ], [ -95.747212119026841, 30.188814270790512 ], [ -95.747124119587767, 30.188848271614717 ], [ -95.746908119511062, 30.188914271141464 ], [ -95.746814119305739, 30.188934271458283 ], [ -95.746666118872369, 30.188958270991069 ], [ -95.746508118683764, 30.1889762710227 ], [ -95.746203119177935, 30.189018271538561 ], [ -95.7460961187859, 30.189037271209035 ], [ -95.745875118944667, 30.189104270865883 ], [ -95.74578011932519, 30.189145271513624 ], [ -95.745689118509645, 30.1891952714242 ], [ -95.745527119187756, 30.189321271423712 ], [ -95.74540011922231, 30.189458271008217 ], [ -95.745346118873499, 30.189528271121691 ], [ -95.745295118964819, 30.189607271678231 ], [ -95.745251118926575, 30.189688271652898 ], [ -95.745217118827995, 30.189764271126567 ], [ -95.745191118812514, 30.189854271493903 ], [ -95.745168118988474, 30.19008227166502 ], [ -95.745170118965049, 30.19040427149417 ], [ -95.745185119117195, 30.190884271939346 ], [ -95.745194118511634, 30.19115827195003 ], [ -95.745201119166424, 30.191523271391713 ], [ -95.74263111829778, 30.191455272213251 ], [ -95.740826117238413, 30.189477271699975 ], [ -95.736779117014848, 30.189281271833956 ], [ -95.736123116619979, 30.189305271293392 ], [ -95.736127116331403, 30.190604271776206 ], [ -95.735894116388863, 30.190589271891916 ], [ -95.735516116056957, 30.190550271843303 ], [ -95.735175116803589, 30.190503271940539 ], [ -95.734565116294817, 30.190381271633083 ], [ -95.733442116002067, 30.189937271505915 ], [ -95.733396115903318, 30.189850271659797 ], [ -95.73312611591632, 30.189657272221641 ], [ -95.733007115293177, 30.189613271696295 ], [ -95.732737115862491, 30.189512271668619 ], [ -95.732291115403996, 30.189367272211776 ], [ -95.732093115278374, 30.189269271511215 ], [ -95.73180211507453, 30.189069271660063 ], [ -95.731604115609542, 30.188957271413138 ], [ -95.731359115209742, 30.188805271694761 ], [ -95.731177114909187, 30.188612271862276 ], [ -95.731254115431952, 30.188476271955473 ], [ -95.731128115507175, 30.188239271316938 ], [ -95.730922114802922, 30.188098271219946 ], [ -95.730869114896436, 30.18806127118653 ], [ -95.730805114878478, 30.188016271736323 ], [ -95.730713115534272, 30.187953271384238 ], [ -95.730499115378478, 30.18776427165723 ], [ -95.730292115113301, 30.187626271257091 ], [ -95.730134114859567, 30.187389271808026 ], [ -95.729943114612297, 30.187382271289945 ], [ -95.729829114457388, 30.187191271735362 ], [ -95.729708115135622, 30.186974271125557 ], [ -95.729657114966074, 30.186782271717014 ], [ -95.729444114540215, 30.18663327119982 ], [ -95.729289114991801, 30.186093271374556 ], [ -95.728975114908437, 30.185672271155266 ], [ -95.728990114789724, 30.186196271628869 ], [ -95.728525114419654, 30.186707271282192 ], [ -95.72832911402962, 30.186793271780008 ], [ -95.728287113980173, 30.186831271890156 ], [ -95.728183114626574, 30.186925271704069 ], [ -95.728241114668492, 30.187118271244092 ], [ -95.72813011483855, 30.187285271598977 ], [ -95.728144114844298, 30.187874271930774 ], [ -95.72815011430059, 30.188077271660529 ], [ -95.728120114387963, 30.188305272198448 ], [ -95.727994114156587, 30.188516272222806 ], [ -95.72764311424153, 30.188946271951647 ], [ -95.727060113978212, 30.189434271819902 ], [ -95.726559114095721, 30.189814271995782 ], [ -95.725787114303628, 30.190519272650903 ], [ -95.725666113865543, 30.190629272515462 ], [ -95.725369113989132, 30.190842272723653 ], [ -95.725045113558281, 30.19107427247982 ], [ -95.724564113628745, 30.191565272424391 ], [ -95.724152113672943, 30.192040272866933 ], [ -95.723973113314884, 30.192463272404652 ], [ -95.723975113571626, 30.192995273140649 ], [ -95.72411011363107, 30.193284272886675 ], [ -95.724210113922211, 30.193418273137635 ], [ -95.724539113795927, 30.193859272725462 ], [ -95.724567113966458, 30.193896273214765 ], [ -95.724671113871224, 30.194035273401116 ], [ -95.724728113816255, 30.19411027327795 ], [ -95.72476611386567, 30.1941592732679 ], [ -95.724851114216605, 30.194375272709422 ], [ -95.72485311425757, 30.194546273285113 ], [ -95.724802113582456, 30.194743273336034 ], [ -95.724780114140714, 30.194868273231986 ], [ -95.724769113928431, 30.19500327368646 ], [ -95.728748115274726, 30.197262273933088 ], [ -95.729594115110672, 30.197740273532929 ], [ -95.730306115068089, 30.198152273503727 ], [ -95.730994115627666, 30.198524274088442 ], [ -95.731174115816629, 30.198621273556615 ], [ -95.731732115898922, 30.198922273420305 ], [ -95.735151116999461, 30.200833273641791 ], [ -95.738344117320807, 30.202702273869491 ], [ -95.74005211866745, 30.203703274568884 ], [ -95.741202118663423, 30.204376274421037 ], [ -95.746092120195371, 30.207089274607331 ], [ -95.750548121421858, 30.209620275549817 ], [ -95.75154812122382, 30.210155275802034 ], [ -95.753979122141487, 30.211554275797958 ], [ -95.754599122692412, 30.211875275509531 ], [ -95.755325123025202, 30.212216275706801 ], [ -95.756202122854006, 30.212510275557555 ], [ -95.758119123678711, 30.213015275788102 ], [ -95.759551123839344, 30.213405275814942 ], [ -95.766500125095007, 30.215302275909163 ], [ -95.766605125066874, 30.214072275705171 ], [ -95.766455125155119, 30.213720275950127 ], [ -95.766303125796526, 30.213645275882936 ], [ -95.766196125632064, 30.213596275467641 ], [ -95.766198125437469, 30.213467275525623 ], [ -95.766199125004206, 30.213285275093213 ], [ -95.766155124867879, 30.213157275531895 ], [ -95.766308125634069, 30.212953275519034 ], [ -95.766311125513738, 30.212378275294213 ], [ -95.766252125341708, 30.212135275609018 ], [ -95.766102125287233, 30.211931275164098 ], [ -95.766011125329882, 30.211708275218054 ], [ -95.766013125073144, 30.211484275017373 ], [ -95.765952125203725, 30.211402275468693 ], [ -95.765710124916779, 30.211152275459405 ], [ -95.765559124845183, 30.210879275361005 ], [ -95.76534912546272, 30.210584274681459 ], [ -95.765152125158096, 30.210244274717351 ], [ -95.764940125082774, 30.2100142745076 ], [ -95.764485124622013, 30.20984127475942 ], [ -95.76418212448219, 30.209646274519784 ], [ -95.763714124075264, 30.209429274489946 ], [ -95.763399124612619, 30.209301274933527 ], [ -95.763100124428959, 30.209020275021572 ], [ -95.762496124284667, 30.208874274446512 ], [ -95.761984123646826, 30.208719274902901 ], [ -95.761488123752144, 30.208611274550346 ], [ -95.76123212338976, 30.208505274577675 ], [ -95.761082123682101, 30.208379274476762 ], [ -95.760993123771669, 30.208197274769002 ], [ -95.760996124187358, 30.207988274964613 ], [ -95.760893123241374, 30.207760274968273 ], [ -95.760697124083549, 30.207654274611816 ], [ -95.760229123950666, 30.207429274425181 ], [ -95.760033123810814, 30.207336274442866 ], [ -95.759723123318722, 30.207032274696274 ], [ -95.759559123275423, 30.206696274249413 ], [ -95.759559123681782, 30.206507274074035 ], [ -95.7596211233882, 30.206154274618022 ], [ -95.759578122886424, 30.20563627445091 ], [ -95.760039123460999, 30.205467274184333 ], [ -95.760106123036991, 30.205442273881051 ], [ -95.763464123771399, 30.204288273898594 ], [ -95.764289123897157, 30.203988273685813 ], [ -95.7655891248573, 30.203522273432089 ], [ -95.766233124937955, 30.20329227312596 ], [ -95.767448125339712, 30.202868273774904 ], [ -95.767879124758096, 30.202705273242007 ], [ -95.769016125401095, 30.202300273071256 ], [ -95.770462126132273, 30.201796272883819 ], [ -95.770671126393964, 30.201720272648366 ], [ -95.771338125860368, 30.201478273348339 ], [ -95.771700126552304, 30.201358272781288 ], [ -95.771868126576607, 30.20129027295738 ], [ -95.77218812644557, 30.201147273249415 ], [ -95.772716126501649, 30.20087127281559 ], [ -95.772940126004471, 30.20072727275431 ], [ -95.773197126437665, 30.200547272893612 ], [ -95.773427127098572, 30.200376272402298 ], [ -95.773490126748356, 30.200331272737408 ], [ -95.7738051265964, 30.200102272611524 ], [ -95.775356127137371, 30.198948271863056 ], [ -95.776572127169601, 30.198034271660102 ], [ -95.776918127158339, 30.197770272049599 ], [ -95.777732127316156, 30.197170271439944 ], [ -95.778157127893081, 30.196850272167708 ], [ -95.780774128333022, 30.194930271052538 ], [ -95.78319412893201, 30.193120271158236 ], [ -95.784946129482748, 30.191839270935173 ], [ -95.785772129299062, 30.191226270388075 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 87, "Tract": "48339690206", "Area_SqMi": 6.0281166786988516, "total_2009": 172, "total_2010": 104, "total_2011": 94, "total_2012": 172, "total_2013": 156, "total_2014": 229, "total_2015": 222, "total_2016": 341, "total_2017": 358, "total_2018": 222, "total_2019": 316, "total_2020": 283, "age1": 60, "age2": 153, "age3": 63, "earn1": 38, "earn2": 71, "earn3": 167, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 115, "naics_s05": 14, "naics_s06": 15, "naics_s07": 24, "naics_s08": 2, "naics_s09": 5, "naics_s10": 9, "naics_s11": 4, "naics_s12": 41, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 21, "naics_s17": 0, "naics_s18": 0, "naics_s19": 11, "naics_s20": 0, "race1": 250, "race2": 15, "race3": 2, "race4": 8, "race5": 0, "race6": 1, "ethnicity1": 213, "ethnicity2": 63, "edu1": 39, "edu2": 56, "edu3": 63, "edu4": 58, "Shape_Length": 78503.663972725219, "Shape_Area": 168053575.77731651, "total_2021": 265, "total_2022": 276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.728990114789724, 30.186196271628869 ], [ -95.728975114908437, 30.185672271155266 ], [ -95.728741114900416, 30.184662270875055 ], [ -95.728710113989251, 30.184528271158893 ], [ -95.728552114665604, 30.184344271302248 ], [ -95.72799811439701, 30.184162271312033 ], [ -95.727391114238017, 30.183498270596626 ], [ -95.726573114283511, 30.183132270632964 ], [ -95.726177114027408, 30.182743270985902 ], [ -95.725703113812372, 30.182629270415777 ], [ -95.725597113297297, 30.182423271107556 ], [ -95.725382113111579, 30.182259270236891 ], [ -95.725175113740363, 30.182103270815318 ], [ -95.725069113114415, 30.181782270371922 ], [ -95.724697113192477, 30.181524270826987 ], [ -95.724601113101713, 30.181191270578612 ], [ -95.724567112907792, 30.181073270178697 ], [ -95.724013113002698, 30.180684270435556 ], [ -95.723934112988857, 30.180409269903951 ], [ -95.723274112339084, 30.179448270482744 ], [ -95.723247112264062, 30.179127270251097 ], [ -95.723484112339108, 30.178715269689835 ], [ -95.723510113312059, 30.17839427023975 ], [ -95.723272112663082, 30.178166270012532 ], [ -95.723246112964077, 30.177959269640589 ], [ -95.723292112262982, 30.177868269680626 ], [ -95.72345611324711, 30.177547269459616 ], [ -95.723350113189923, 30.177341269529069 ], [ -95.723456112745836, 30.177158269336928 ], [ -95.723455112845315, 30.176791269266403 ], [ -95.723297112472679, 30.176654269259608 ], [ -95.723244112161822, 30.176356269088345 ], [ -95.723269112359986, 30.176322269524736 ], [ -95.723428112254197, 30.176104269333582 ], [ -95.723428112670845, 30.175738269013952 ], [ -95.72284811235815, 30.175555269824812 ], [ -95.722689112146156, 30.17537226894607 ], [ -95.722715112443538, 30.175189269287973 ], [ -95.72292611263444, 30.174914268857105 ], [ -95.722952112689725, 30.174639269025956 ], [ -95.722635112322749, 30.17445626921182 ], [ -95.722503112540664, 30.174158269317179 ], [ -95.722292112479948, 30.173998269281377 ], [ -95.721422111958191, 30.173701269149927 ], [ -95.72086811189682, 30.173610269154974 ], [ -95.720367111330191, 30.173427268735452 ], [ -95.720350111681341, 30.173388268917709 ], [ -95.72028811154108, 30.173244268700493 ], [ -95.720367111621812, 30.17303326897245 ], [ -95.72039211212531, 30.171847268835908 ], [ -95.72004911150519, 30.17150426889733 ], [ -95.719970111794638, 30.17132026855915 ], [ -95.719916111103899, 30.170908268354061 ], [ -95.720021111390707, 30.170404268312108 ], [ -95.719836111492469, 30.170038268700083 ], [ -95.719889111677361, 30.169901268638696 ], [ -95.720389111224947, 30.169488268248418 ], [ -95.720652111574665, 30.169053267784737 ], [ -95.72070511145219, 30.168709268351396 ], [ -95.720467111356299, 30.16843426776876 ], [ -95.719650111097295, 30.167931267943381 ], [ -95.719516110942237, 30.16758326755874 ], [ -95.719491111440533, 30.16751926744265 ], [ -95.71906911135784, 30.166901267733284 ], [ -95.71898911122598, 30.166626267561547 ], [ -95.719173110987512, 30.166306267831697 ], [ -95.719199110957831, 30.165641267112303 ], [ -95.719673111176775, 30.165183267468965 ], [ -95.719645111570102, 30.164038267105017 ], [ -95.719249111543206, 30.163511266869648 ], [ -95.719248110921427, 30.162618266856875 ], [ -95.718958110717494, 30.162229267051735 ], [ -95.718984110535899, 30.161611266433638 ], [ -95.718957110932124, 30.160786266716951 ], [ -95.718454110475847, 30.159298266212563 ], [ -95.718533110282323, 30.158840265759466 ], [ -95.718796110180236, 30.158473266378063 ], [ -95.718822110717667, 30.158221266456497 ], [ -95.717899110483359, 30.158062266248052 ], [ -95.717688109948099, 30.157924266251825 ], [ -95.717714110106769, 30.1575122657549 ], [ -95.718241110539623, 30.157306266248611 ], [ -95.718373110942593, 30.157122265985819 ], [ -95.71839911090467, 30.156733265509157 ], [ -95.718056109909853, 30.156619265577497 ], [ -95.717792109856958, 30.156459265700523 ], [ -95.717607110419223, 30.155978265330688 ], [ -95.717370110455548, 30.155680265749279 ], [ -95.717266109679244, 30.155208265696238 ], [ -95.717158110595165, 30.154719265608243 ], [ -95.716841109861861, 30.15442126570667 ], [ -95.715813109203296, 30.153712265142047 ], [ -95.715601109478129, 30.153231265348552 ], [ -95.71557511003698, 30.152590264575828 ], [ -95.715614109517489, 30.152414264542692 ], [ -95.715958110172025, 30.151963264760823 ], [ -95.716253109565201, 30.15070226426494 ], [ -95.716111109327812, 30.150640264206494 ], [ -95.715958110093695, 30.150538264370706 ], [ -95.715859109988585, 30.150530264150987 ], [ -95.715091109492093, 30.150195264320228 ], [ -95.714511109145789, 30.149689264341699 ], [ -95.714223109420445, 30.148679264317956 ], [ -95.714102108947088, 30.148574264156927 ], [ -95.712482108982442, 30.147161263758491 ], [ -95.712276108792096, 30.147125264050718 ], [ -95.711755108368422, 30.147033263960509 ], [ -95.7112911080429, 30.146598263702074 ], [ -95.710162107577361, 30.145536264113748 ], [ -95.709870107390259, 30.145262263354223 ], [ -95.709875107869479, 30.143623263521629 ], [ -95.71009910766044, 30.143228262841742 ], [ -95.710238107421858, 30.142982263201109 ], [ -95.710347107395023, 30.142906262980446 ], [ -95.710559107540504, 30.142735262939613 ], [ -95.710640108033587, 30.14266926309336 ], [ -95.709887107712646, 30.142028263262404 ], [ -95.710004107242753, 30.141747263000422 ], [ -95.710086107383773, 30.14150726333019 ], [ -95.710136107413717, 30.141324262692528 ], [ -95.710156107395534, 30.141181263245066 ], [ -95.710158108054429, 30.141014262759104 ], [ -95.710141107368244, 30.140829262530822 ], [ -95.710105107966015, 30.14067426240991 ], [ -95.710052107486078, 30.140494263128684 ], [ -95.709973107558255, 30.140280262622341 ], [ -95.709881108000744, 30.140083262548441 ], [ -95.709744107605218, 30.139925263090429 ], [ -95.709652107004487, 30.139825262370262 ], [ -95.70963610773569, 30.139807262883302 ], [ -95.70952410790639, 30.13969226292506 ], [ -95.709366107047913, 30.139547262970435 ], [ -95.709262107380709, 30.139457262938514 ], [ -95.709152107575576, 30.139377262537938 ], [ -95.709027106794963, 30.139289262833515 ], [ -95.708907107334838, 30.139214262754241 ], [ -95.708727107592551, 30.139119262267652 ], [ -95.70858310724536, 30.139052262590653 ], [ -95.708442107091699, 30.138999262231319 ], [ -95.70827710738692, 30.13894626285887 ], [ -95.708087107090563, 30.13889426238941 ], [ -95.707741107439375, 30.138831262782457 ], [ -95.707590107285085, 30.138811262086758 ], [ -95.707499107210708, 30.138806262392855 ], [ -95.707185106596043, 30.138803262162693 ], [ -95.706085106425633, 30.138793262701991 ], [ -95.704706105900215, 30.138781262574739 ], [ -95.704527106170033, 30.138769262444715 ], [ -95.704209106157734, 30.138731262212989 ], [ -95.703324105556106, 30.138555262141654 ], [ -95.703177105508715, 30.138529262787529 ], [ -95.702941105446854, 30.138507262953318 ], [ -95.701109104936819, 30.138473262545197 ], [ -95.698721104133369, 30.138453263151714 ], [ -95.698526104807868, 30.138459262928009 ], [ -95.698380104092422, 30.138470262670907 ], [ -95.698161104942912, 30.138497262793578 ], [ -95.697119104045115, 30.138675262722725 ], [ -95.696888104501511, 30.138711262545264 ], [ -95.696632104468989, 30.138746262684553 ], [ -95.696425104500264, 30.138765262717293 ], [ -95.696215103792937, 30.138774263303141 ], [ -95.695889104008558, 30.138774263113454 ], [ -95.695554103579326, 30.13876626259124 ], [ -95.694956103771744, 30.138707262546255 ], [ -95.694714103647954, 30.138668263329134 ], [ -95.693839103164393, 30.13849626274019 ], [ -95.693691103660413, 30.138475263313797 ], [ -95.693405103751871, 30.138460262778757 ], [ -95.692883103254545, 30.138456263010088 ], [ -95.692214103466682, 30.138431263089434 ], [ -95.691927102689874, 30.138405263378132 ], [ -95.691700102969321, 30.138374262536001 ], [ -95.691480103202352, 30.138333262554656 ], [ -95.691145103091259, 30.138261262664578 ], [ -95.690796102626507, 30.138195262831225 ], [ -95.690535103028495, 30.138153262588524 ], [ -95.690360102314187, 30.138129263166011 ], [ -95.689901102599862, 30.138088263317929 ], [ -95.689642102046378, 30.138079262687437 ], [ -95.689076102203742, 30.13807626266469 ], [ -95.688647102063427, 30.138082263342064 ], [ -95.68842110233885, 30.138104263316556 ], [ -95.68809410190903, 30.138151263029798 ], [ -95.687498101854999, 30.138254262873257 ], [ -95.686903101429778, 30.138347262701302 ], [ -95.686700101208032, 30.138367263229931 ], [ -95.686286100950539, 30.138398263532782 ], [ -95.685914101233479, 30.138400262846616 ], [ -95.685530101544458, 30.138390263018994 ], [ -95.685023101044536, 30.13838926284123 ], [ -95.684726100740221, 30.138401262788001 ], [ -95.684454101141853, 30.138441263106621 ], [ -95.684243100699831, 30.138504263516076 ], [ -95.684071100968126, 30.138582263046324 ], [ -95.683879101142807, 30.138685263448124 ], [ -95.683643100510011, 30.138866263032128 ], [ -95.683387100928229, 30.139077262985833 ], [ -95.683255100954398, 30.139192263820235 ], [ -95.683095101105081, 30.139298263196991 ], [ -95.682931100813889, 30.139366263243087 ], [ -95.682824100175637, 30.139391263119297 ], [ -95.682778100081322, 30.139398263717414 ], [ -95.682721100080428, 30.139407263676912 ], [ -95.682423100650269, 30.1394282632779 ], [ -95.680943100224027, 30.13944126380601 ], [ -95.678426099091098, 30.139442263784552 ], [ -95.677835099828272, 30.139433263904056 ], [ -95.677641098867213, 30.139436263715524 ], [ -95.677479099254342, 30.13944326378062 ], [ -95.677319099522819, 30.139458263897737 ], [ -95.676637099176091, 30.139543264075044 ], [ -95.676470099219571, 30.139553263781366 ], [ -95.676227098549205, 30.139561263604691 ], [ -95.673451098114157, 30.139509264218415 ], [ -95.673439098059546, 30.141670264586267 ], [ -95.671629097746916, 30.141703264694943 ], [ -95.669459097194547, 30.14171226467068 ], [ -95.667702097200163, 30.141333264448434 ], [ -95.667734096727628, 30.14252826445863 ], [ -95.668026097311724, 30.142564264743353 ], [ -95.668131096721794, 30.142701264658427 ], [ -95.668131097484604, 30.142953264387174 ], [ -95.66847409715443, 30.143182265112021 ], [ -95.668501096983647, 30.143571264811367 ], [ -95.668290096749402, 30.144144264734678 ], [ -95.668396096828999, 30.144304265333783 ], [ -95.669476097827385, 30.144533265278614 ], [ -95.669951097950161, 30.144968264642671 ], [ -95.670372097667823, 30.144945264705697 ], [ -95.670899097392052, 30.144761265325442 ], [ -95.671163098297683, 30.144738264605962 ], [ -95.67150609813514, 30.144899265238195 ], [ -95.672165097821804, 30.145975264967312 ], [ -95.672429098305699, 30.146135265418831 ], [ -95.672824098336662, 30.146272264814115 ], [ -95.673509098271921, 30.146226264814771 ], [ -95.673957098940477, 30.14636326548414 ], [ -95.674695098947069, 30.146340265365311 ], [ -95.675038099187788, 30.146225265321238 ], [ -95.675275098513893, 30.14592826460991 ], [ -95.675485099317868, 30.145836264729773 ], [ -95.67611809956702, 30.145835265419109 ], [ -95.676592099344759, 30.145629264979309 ], [ -95.676687098851019, 30.145415265313392 ], [ -95.676724099417797, 30.145331265201882 ], [ -95.677013099795687, 30.145171265246521 ], [ -95.677387099295643, 30.145171265209505 ], [ -95.678146099390389, 30.14517026478152 ], [ -95.678762099428809, 30.145424265186861 ], [ -95.679702099719037, 30.145811264567445 ], [ -95.680071100723367, 30.145696264552438 ], [ -95.680808100684118, 30.145719265190618 ], [ -95.68084110011489, 30.145703264426405 ], [ -95.681151100594235, 30.145558264940817 ], [ -95.681493100767227, 30.145283264455394 ], [ -95.681731100126868, 30.145306265098782 ], [ -95.682416101010759, 30.146016264414389 ], [ -95.682838101167164, 30.146267264507646 ], [ -95.683392101191288, 30.146885264998438 ], [ -95.683603100821117, 30.146885264809896 ], [ -95.684077101326494, 30.146725264632895 ], [ -95.684551101393936, 30.14642726521781 ], [ -95.684815101786342, 30.146449264913208 ], [ -95.685184101303918, 30.146632264686026 ], [ -95.685684101353814, 30.146609264517728 ], [ -95.686054101809106, 30.146861264500671 ], [ -95.686447101775101, 30.146800264852008 ], [ -95.68650110205563, 30.146792265113451 ], [ -95.686986102005989, 30.14653226433003 ], [ -95.68718610235986, 30.14642526454665 ], [ -95.687503102615594, 30.14644826445705 ], [ -95.687951102074379, 30.146654264568589 ], [ -95.68889910294989, 30.146264264314638 ], [ -95.689400102329515, 30.146424264409784 ], [ -95.689901102850371, 30.146882265149035 ], [ -95.690244103256148, 30.146881264334205 ], [ -95.691666103022655, 30.146239264766859 ], [ -95.69237810291132, 30.146239264366873 ], [ -95.692905103787751, 30.146445264257896 ], [ -95.693187103138854, 30.146387264169061 ], [ -95.693353103821437, 30.146353264578213 ], [ -95.693616103626141, 30.146192264728583 ], [ -95.694012103524301, 30.146238264546547 ], [ -95.694354103698799, 30.146535264371696 ], [ -95.694829103652282, 30.146741264822623 ], [ -95.694935103680365, 30.146970264420137 ], [ -95.69508210376388, 30.147055264420729 ], [ -95.695172104590682, 30.14710726483781 ], [ -95.695514103893245, 30.147107264726724 ], [ -95.69591010431698, 30.147107264302413 ], [ -95.696121103924426, 30.147039264782929 ], [ -95.696350104221978, 30.146967264106035 ], [ -95.696489104238822, 30.146923264223151 ], [ -95.696653104099582, 30.146933264762708 ], [ -95.696858104354774, 30.14694626445857 ], [ -95.697017104570619, 30.147038264127211 ], [ -95.697149104792615, 30.147381264299476 ], [ -95.697123104917964, 30.147839264415325 ], [ -95.696912104240013, 30.14850326466934 ], [ -95.696807104899577, 30.149168265289099 ], [ -95.696650104346503, 30.149534265124533 ], [ -95.696600104948175, 30.149743264690933 ], [ -95.696308104487485, 30.150977264984551 ], [ -95.696256104859089, 30.151756265860058 ], [ -95.696125104336758, 30.152077265339791 ], [ -95.696205104661004, 30.152924265990389 ], [ -95.696073104127052, 30.153291265866535 ], [ -95.696205104695252, 30.153909265958038 ], [ -95.696231104675192, 30.154261265992165 ], [ -95.69624310427173, 30.154435266364896 ], [ -95.696258105133595, 30.154638266401886 ], [ -95.6961551045584, 30.154686266425855 ], [ -95.695170104913416, 30.155514266703481 ], [ -95.695015104603513, 30.15599426631994 ], [ -95.694519103908107, 30.15653026607427 ], [ -95.69447710459643, 30.156647266473144 ], [ -95.694274104513369, 30.156790266860952 ], [ -95.694130103947558, 30.156671266679808 ], [ -95.693820103911264, 30.156917266867694 ], [ -95.692609103679942, 30.158040267075677 ], [ -95.691929103843037, 30.158667266983969 ], [ -95.691188103196694, 30.159421266941621 ], [ -95.690598103710741, 30.159907267792548 ], [ -95.689349102770549, 30.160819267224131 ], [ -95.68888610276862, 30.161158267836029 ], [ -95.687859103296006, 30.161928267634138 ], [ -95.687535102674957, 30.162167267674775 ], [ -95.687273103082973, 30.162367268072082 ], [ -95.686733102903602, 30.162769268502789 ], [ -95.686382103092853, 30.163041268500869 ], [ -95.685477102141505, 30.163745268291116 ], [ -95.684978101987753, 30.1641182682825 ], [ -95.683871101816308, 30.165040269065269 ], [ -95.68323110147962, 30.165599269186856 ], [ -95.681390101806542, 30.16710226909019 ], [ -95.680470101104476, 30.167836269137233 ], [ -95.6802841010647, 30.167994269243717 ], [ -95.680067101445431, 30.168200269167734 ], [ -95.679320100614717, 30.168982269695572 ], [ -95.680881101523042, 30.169862269821568 ], [ -95.683373102016859, 30.171266269606356 ], [ -95.687163102878657, 30.173376269902139 ], [ -95.690453104375706, 30.175231270558633 ], [ -95.69445610524744, 30.177497270457959 ], [ -95.695743105343297, 30.178227271003085 ], [ -95.696650105578769, 30.17874227124479 ], [ -95.697352106367305, 30.179141271215268 ], [ -95.69899810701348, 30.180078270795349 ], [ -95.701254106885088, 30.18134727111903 ], [ -95.701783107401567, 30.181632271488809 ], [ -95.704938108297114, 30.183393271265921 ], [ -95.708804109256818, 30.185682271573231 ], [ -95.710320110131462, 30.186534271853322 ], [ -95.713654110381555, 30.188414272474564 ], [ -95.71485111127194, 30.189117272785417 ], [ -95.716786111597855, 30.190216272745669 ], [ -95.717581112157546, 30.190667272530014 ], [ -95.720535112739043, 30.19233427273625 ], [ -95.724190113625411, 30.194396273013975 ], [ -95.724446114058594, 30.194541272998652 ], [ -95.724802113582456, 30.194743273336034 ], [ -95.72485311425757, 30.194546273285113 ], [ -95.724851114216605, 30.194375272709422 ], [ -95.72476611386567, 30.1941592732679 ], [ -95.724728113816255, 30.19411027327795 ], [ -95.724671113871224, 30.194035273401116 ], [ -95.724567113966458, 30.193896273214765 ], [ -95.724539113795927, 30.193859272725462 ], [ -95.724210113922211, 30.193418273137635 ], [ -95.72411011363107, 30.193284272886675 ], [ -95.723975113571626, 30.192995273140649 ], [ -95.723973113314884, 30.192463272404652 ], [ -95.724152113672943, 30.192040272866933 ], [ -95.724564113628745, 30.191565272424391 ], [ -95.725045113558281, 30.19107427247982 ], [ -95.725369113989132, 30.190842272723653 ], [ -95.725666113865543, 30.190629272515462 ], [ -95.725787114303628, 30.190519272650903 ], [ -95.726559114095721, 30.189814271995782 ], [ -95.727060113978212, 30.189434271819902 ], [ -95.72764311424153, 30.188946271951647 ], [ -95.727994114156587, 30.188516272222806 ], [ -95.728120114387963, 30.188305272198448 ], [ -95.72815011430059, 30.188077271660529 ], [ -95.728144114844298, 30.187874271930774 ], [ -95.72813011483855, 30.187285271598977 ], [ -95.728241114668492, 30.187118271244092 ], [ -95.728183114626574, 30.186925271704069 ], [ -95.728287113980173, 30.186831271890156 ], [ -95.72832911402962, 30.186793271780008 ], [ -95.728525114419654, 30.186707271282192 ], [ -95.728990114789724, 30.186196271628869 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 88, "Tract": "48339690207", "Area_SqMi": 9.4334030889488805, "total_2009": 497, "total_2010": 568, "total_2011": 676, "total_2012": 639, "total_2013": 681, "total_2014": 735, "total_2015": 824, "total_2016": 794, "total_2017": 811, "total_2018": 976, "total_2019": 957, "total_2020": 1004, "age1": 274, "age2": 580, "age3": 274, "earn1": 204, "earn2": 346, "earn3": 578, "naics_s01": 2, "naics_s02": 0, "naics_s03": 26, "naics_s04": 301, "naics_s05": 231, "naics_s06": 26, "naics_s07": 10, "naics_s08": 9, "naics_s09": 0, "naics_s10": 54, "naics_s11": 32, "naics_s12": 91, "naics_s13": 0, "naics_s14": 73, "naics_s15": 0, "naics_s16": 87, "naics_s17": 1, "naics_s18": 160, "naics_s19": 25, "naics_s20": 0, "race1": 1001, "race2": 77, "race3": 15, "race4": 25, "race5": 0, "race6": 10, "ethnicity1": 807, "ethnicity2": 321, "edu1": 169, "edu2": 238, "edu3": 250, "edu4": 197, "Shape_Length": 113025.28721585397, "Shape_Area": 262987132.68914825, "total_2021": 1130, "total_2022": 1128 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.712006107884136, 30.141599263170882 ], [ -95.712084107791085, 30.140958263183354 ], [ -95.711979107888936, 30.140866262730366 ], [ -95.711346107899615, 30.140844262616479 ], [ -95.710872107361652, 30.140478263134973 ], [ -95.710896107827878, 30.140061262459913 ], [ -95.710897107814688, 30.140043262730533 ], [ -95.710739108164489, 30.139814262354832 ], [ -95.710712108070098, 30.138944262816356 ], [ -95.711081108147496, 30.138920262774693 ], [ -95.711239107348518, 30.139035262481734 ], [ -95.711555108382356, 30.138989262670382 ], [ -95.71155510795468, 30.138737262494374 ], [ -95.711449108104063, 30.138577261877678 ], [ -95.711581107537612, 30.138050262471619 ], [ -95.711475107837131, 30.137706261989205 ], [ -95.710710108024713, 30.136882261991111 ], [ -95.710445107019453, 30.135463262041238 ], [ -95.710444107091419, 30.134432261703903 ], [ -95.710312107433666, 30.134020261267302 ], [ -95.71044310692966, 30.133653261705543 ], [ -95.710443107603737, 30.133296261607295 ], [ -95.710443107380996, 30.13305826089573 ], [ -95.71034010713727, 30.13293926126639 ], [ -95.710205107729237, 30.132783260798238 ], [ -95.70967810741044, 30.132577260801956 ], [ -95.709414106653071, 30.132325260785034 ], [ -95.709256107137691, 30.131799260967416 ], [ -95.70874910671445, 30.131308260731259 ], [ -95.708570106431779, 30.13113526117624 ], [ -95.708280106213763, 30.13079226107773 ], [ -95.708121106190603, 30.130036260425317 ], [ -95.707910106522945, 30.129464260594602 ], [ -95.705774105910592, 30.127633260137522 ], [ -95.705299105861158, 30.126717260395267 ], [ -95.704534105747129, 30.125962259886332 ], [ -95.704043105819551, 30.125642259664055 ], [ -95.704007105230602, 30.125619259504131 ], [ -95.703638105499735, 30.125230260130731 ], [ -95.703252105307087, 30.124447259832905 ], [ -95.703242105279571, 30.124428259386637 ], [ -95.702914104608453, 30.124153259404196 ], [ -95.702451105211935, 30.123765259570256 ], [ -95.701923105077526, 30.12298625915048 ], [ -95.701080104406742, 30.12266625906015 ], [ -95.700618104272451, 30.122265259477679 ], [ -95.700386104210736, 30.122061259497656 ], [ -95.700069104576329, 30.121796259610988 ], [ -95.699916104494534, 30.121765259660346 ], [ -95.699498104394976, 30.121682259024514 ], [ -95.699077103864539, 30.121683259515926 ], [ -95.698497103501296, 30.121843259113344 ], [ -95.698366103450837, 30.122004259809934 ], [ -95.698393104039823, 30.122714259515547 ], [ -95.697919103527838, 30.123378259307508 ], [ -95.697735103798166, 30.123859259480987 ], [ -95.696681103569603, 30.12386026015448 ], [ -95.696496103570468, 30.12372326008251 ], [ -95.696417102840783, 30.123196259537213 ], [ -95.696101103220727, 30.12308226000815 ], [ -95.695442102624483, 30.123128259284503 ], [ -95.695240103329411, 30.123017259861086 ], [ -95.695152102541243, 30.122968259633566 ], [ -95.694862103372188, 30.122647259248208 ], [ -95.694493103195995, 30.122441259324603 ], [ -95.693939102218494, 30.121755259658897 ], [ -95.69391310217614, 30.12148025948488 ], [ -95.694176102549704, 30.121090258981067 ], [ -95.694149102136294, 30.120770258966392 ], [ -95.693807102577765, 30.120426259361935 ], [ -95.693411102499255, 30.12040425933964 ], [ -95.69304310275038, 30.120518259560708 ], [ -95.692832102160509, 30.120381259062516 ], [ -95.69209310171172, 30.119076258810054 ], [ -95.691829102275733, 30.118916259090565 ], [ -95.691566101943835, 30.118870259032686 ], [ -95.691303101603296, 30.118962259122789 ], [ -95.690645101563049, 30.118942259404218 ], [ -95.689827101731126, 30.118917259038383 ], [ -95.689406101123922, 30.11873425928998 ], [ -95.689063101472598, 30.118414258952679 ], [ -95.689010101128531, 30.118093258791717 ], [ -95.689510101210132, 30.117635258883826 ], [ -95.689536100817506, 30.11733725842047 ], [ -95.68920510093642, 30.11694225828402 ], [ -95.690474101795544, 30.116676258640748 ], [ -95.690726101757392, 30.116611259028399 ], [ -95.69093910167301, 30.116545258753394 ], [ -95.691101101540838, 30.116480258677708 ], [ -95.69124810188724, 30.116412258640036 ], [ -95.691361101755675, 30.11634625848772 ], [ -95.691596101966766, 30.116198258049049 ], [ -95.692034102107883, 30.115914257978559 ], [ -95.692144102048672, 30.115856258829783 ], [ -95.692400102374862, 30.115766258224912 ], [ -95.692834102504989, 30.115661258094878 ], [ -95.693292102111585, 30.115565257834085 ], [ -95.694342102941604, 30.115322258420829 ], [ -95.694613102607292, 30.115246257990535 ], [ -95.694758102335697, 30.115200258133402 ], [ -95.695001102707081, 30.115101258471633 ], [ -95.695105102110375, 30.115049258111714 ], [ -95.695349103012447, 30.114939257666407 ], [ -95.695488102828932, 30.114868257880961 ], [ -95.695772102971901, 30.114691258048627 ], [ -95.695890102358916, 30.114606257862665 ], [ -95.69695710295062, 30.113807257944522 ], [ -95.697125103429968, 30.1136602575708 ], [ -95.697189103202788, 30.113593257664331 ], [ -95.697244103543071, 30.11351425748153 ], [ -95.697302103145489, 30.113417257771243 ], [ -95.697357103070004, 30.113302257409472 ], [ -95.697731103010156, 30.11242925709848 ], [ -95.69792410304224, 30.112018257343912 ], [ -95.698001102994823, 30.111841257360574 ], [ -95.698076103213509, 30.111692257470999 ], [ -95.698116103393659, 30.111602257338721 ], [ -95.698195102726501, 30.111395257169288 ], [ -95.69822710358963, 30.111274256966425 ], [ -95.698251103237865, 30.111115256997607 ], [ -95.698286103611437, 30.110709256893085 ], [ -95.698294103458721, 30.110355257467543 ], [ -95.698311103037994, 30.109887256733721 ], [ -95.698374103619372, 30.10894825692565 ], [ -95.698394103341869, 30.1083492569912 ], [ -95.69841310294548, 30.10796225624091 ], [ -95.698422102606457, 30.106972256160311 ], [ -95.698405103321122, 30.106094255905511 ], [ -95.698392102798948, 30.105796255815882 ], [ -95.698331102402861, 30.103679255726057 ], [ -95.698286103332578, 30.102454255839124 ], [ -95.698306102378552, 30.102320255346562 ], [ -95.698319102838113, 30.10224025578302 ], [ -95.698342103224761, 30.102145255106947 ], [ -95.698378103262158, 30.102069255121449 ], [ -95.698426102882564, 30.10199325553819 ], [ -95.698489102749789, 30.101879254925919 ], [ -95.698580102775622, 30.101776255377942 ], [ -95.69870810250373, 30.101661254948386 ], [ -95.698875103012938, 30.101558255611309 ], [ -95.699025102780581, 30.101487255219595 ], [ -95.699174103157077, 30.101436255451734 ], [ -95.699314103362553, 30.10139625524133 ], [ -95.699493103461037, 30.101361255295551 ], [ -95.700945103543177, 30.101119255259228 ], [ -95.701129103028222, 30.101066254751306 ], [ -95.701259103043071, 30.101020254746995 ], [ -95.701430103181266, 30.100936254843116 ], [ -95.70151010321861, 30.100888254623214 ], [ -95.701576104105058, 30.100838254896892 ], [ -95.701632103259044, 30.100781254679003 ], [ -95.701684103497016, 30.100719254934958 ], [ -95.701720104092729, 30.100649254745637 ], [ -95.701791104004499, 30.100441255252864 ], [ -95.701884103715912, 30.100072255290819 ], [ -95.702045103624201, 30.099359254546886 ], [ -95.702121103321815, 30.099046254644275 ], [ -95.701938103100488, 30.098889254647766 ], [ -95.701290103878009, 30.098484254730295 ], [ -95.700759103276724, 30.098468254170275 ], [ -95.70034210271271, 30.098402254326885 ], [ -95.699981103399267, 30.098374254213986 ], [ -95.699330102470668, 30.09836325470831 ], [ -95.698900103282242, 30.098336254564575 ], [ -95.698780102362036, 30.09836925463226 ], [ -95.698692102635178, 30.098435254655982 ], [ -95.698597103021555, 30.09848425493476 ], [ -95.698211102163782, 30.098523254367134 ], [ -95.698123102942148, 30.098589254941867 ], [ -95.698028102910484, 30.09863825481585 ], [ -95.697965102464508, 30.09866025458637 ], [ -95.697807102219727, 30.098682254268905 ], [ -95.697725102231658, 30.098682254825103 ], [ -95.697453102348106, 30.0987102545242 ], [ -95.69735810216595, 30.098748254382045 ], [ -95.697181102819997, 30.098836255073184 ], [ -95.697073102328844, 30.098908254394132 ], [ -95.696909102310642, 30.098996254563424 ], [ -95.696814102640914, 30.099067254505528 ], [ -95.696719102113946, 30.099232255006584 ], [ -95.696631101853015, 30.099293254806209 ], [ -95.696574102776935, 30.09930925451259 ], [ -95.696435102177333, 30.099315255253575 ], [ -95.69624510223386, 30.099293254822797 ], [ -95.695487102081898, 30.099161255304729 ], [ -95.694627101703247, 30.099051254885069 ], [ -95.693830101084259, 30.098881255310772 ], [ -95.693635101747887, 30.098859254580027 ], [ -95.693533101006963, 30.098853254682869 ], [ -95.693413101116249, 30.0988642545334 ], [ -95.693299100911403, 30.098897254732488 ], [ -95.693192101629592, 30.098941255091695 ], [ -95.692648101401815, 30.098831254969884 ], [ -95.692505101609243, 30.098815255232015 ], [ -95.692250100690899, 30.098788255049609 ], [ -95.691359101239314, 30.098733254875093 ], [ -95.691220101113345, 30.098733254977983 ], [ -95.691011101325543, 30.098766254799518 ], [ -95.690916100556535, 30.098793255100297 ], [ -95.690840100620392, 30.098826255219862 ], [ -95.69073910034578, 30.098898254879675 ], [ -95.690575101049134, 30.099046255030604 ], [ -95.690246100979991, 30.099387255382808 ], [ -95.690132100909111, 30.099486254829941 ], [ -95.690006100211377, 30.099574255227807 ], [ -95.689665100751881, 30.099728255017336 ], [ -95.689380100445305, 30.099871255037652 ], [ -95.68881809996644, 30.100217255696595 ], [ -95.688729100105945, 30.100261255378943 ], [ -95.688647100434252, 30.100288255687893 ], [ -95.687964100260842, 30.100459255491305 ], [ -95.687749100457665, 30.100536255137811 ], [ -95.687585100119236, 30.100618255204946 ], [ -95.687446099820576, 30.100739255716327 ], [ -95.687218100389572, 30.100987255136324 ], [ -95.686965099961284, 30.101283255403846 ], [ -95.686820099803825, 30.101459255989504 ], [ -95.686757100049149, 30.101564255439481 ], [ -95.686732100006139, 30.101652255964595 ], [ -95.686725100364697, 30.101729255521725 ], [ -95.686738099376669, 30.101817255546475 ], [ -95.686763100141093, 30.10190525617098 ], [ -95.686814100065391, 30.10200925598231 ], [ -95.686839100183633, 30.102124255490917 ], [ -95.686833099544046, 30.102240255533918 ], [ -95.686706100398084, 30.102625256135994 ], [ -95.686687099430031, 30.102773255832076 ], [ -95.686694099995705, 30.102889255809046 ], [ -95.68672510019276, 30.103015255590599 ], [ -95.686808099889461, 30.103229256012323 ], [ -95.686902099581175, 30.103427256373614 ], [ -95.686978100309631, 30.103532256472125 ], [ -95.687048100193635, 30.103598256459637 ], [ -95.687105099783196, 30.103631256040551 ], [ -95.687168099538567, 30.103642256300848 ], [ -95.687219100164953, 30.103631256027818 ], [ -95.687591100069255, 30.103489255585814 ], [ -95.687667099846394, 30.103460256180838 ], [ -95.687781100634325, 30.103438255697586 ], [ -95.687933100403086, 30.103433256290622 ], [ -95.688021100226436, 30.103460255766208 ], [ -95.688085100738789, 30.103499255641864 ], [ -95.688123099926855, 30.103565255669643 ], [ -95.688129100624593, 30.103598255912932 ], [ -95.688122100167206, 30.103625255675851 ], [ -95.687958099937546, 30.103878256462565 ], [ -95.687781099891779, 30.104076255862427 ], [ -95.687655099848286, 30.10420225616533 ], [ -95.687402100220595, 30.104411256119899 ], [ -95.687256100233881, 30.104604256095691 ], [ -95.687225099755537, 30.104686256146284 ], [ -95.687042100367236, 30.104922255943034 ], [ -95.686985099602794, 30.105021256342432 ], [ -95.686928100389707, 30.105214256503913 ], [ -95.686865099697698, 30.105351256372749 ], [ -95.686757100307062, 30.105538256411247 ], [ -95.686656099594543, 30.105780256867074 ], [ -95.686618100335821, 30.105939256219443 ], [ -95.686574100142138, 30.106066257022775 ], [ -95.68643509976495, 30.106313256647887 ], [ -95.68618210039007, 30.106604256351929 ], [ -95.685910099437848, 30.106791256391649 ], [ -95.685815100122127, 30.106835257067683 ], [ -95.685708099963847, 30.106912256551912 ], [ -95.68559409948702, 30.106940256919728 ], [ -95.685499099951343, 30.106945257181906 ], [ -95.685115099325571, 30.106866256846942 ], [ -95.684886099501526, 30.10681925686886 ], [ -95.684842099932254, 30.106819256961945 ], [ -95.684734099460172, 30.106841256759978 ], [ -95.684665099296083, 30.106885256835302 ], [ -95.68446909989629, 30.107077256675634 ], [ -95.684386099522214, 30.107231257059709 ], [ -95.684311099101862, 30.107292257224302 ], [ -95.68425409909851, 30.107314256963047 ], [ -95.684165099123305, 30.107330256663701 ], [ -95.683817099017048, 30.107363256693208 ], [ -95.683659099302787, 30.10733625655892 ], [ -95.68357009897062, 30.107285256807863 ], [ -95.683400099770736, 30.107187256653035 ], [ -95.682762099559071, 30.106879256590876 ], [ -95.682610099008386, 30.106846257222607 ], [ -95.682515098746336, 30.106841256670016 ], [ -95.682028099227111, 30.106555257121396 ], [ -95.681775099293915, 30.10631925655974 ], [ -95.6816360991115, 30.106247257128381 ], [ -95.681358098553986, 30.106209257168238 ], [ -95.680840098133643, 30.106231256374596 ], [ -95.680566097985505, 30.106163257237952 ], [ -95.680549098685006, 30.106159256530539 ], [ -95.68047309817976, 30.106148257171078 ], [ -95.680157098346342, 30.106132257101354 ], [ -95.680094098726201, 30.106121257200638 ], [ -95.680030098145082, 30.106100256419989 ], [ -95.679961098523378, 30.106077256809264 ], [ -95.679689097737736, 30.105972257049526 ], [ -95.679626098072092, 30.105940256853312 ], [ -95.679569098101382, 30.105895256374982 ], [ -95.679544097941147, 30.105857256970047 ], [ -95.679512097708752, 30.105742256518049 ], [ -95.679506098246307, 30.10560325645541 ], [ -95.679480098099717, 30.105549256435026 ], [ -95.679247097991436, 30.105247256307226 ], [ -95.679044097901425, 30.105076256848172 ], [ -95.678926098371363, 30.10496025681655 ], [ -95.678747098330334, 30.10478525681334 ], [ -95.678532097678016, 30.104604256515699 ], [ -95.678387097379272, 30.104461256119787 ], [ -95.678248098320338, 30.104411256703081 ], [ -95.678153097494487, 30.104362256494841 ], [ -95.677988097297089, 30.104213256369757 ], [ -95.677824097966791, 30.104147256799717 ], [ -95.677723098111485, 30.104131256607506 ], [ -95.67731109728517, 30.104024256654714 ], [ -95.677255097724952, 30.104010256081388 ], [ -95.677160097871649, 30.103977256360359 ], [ -95.677021097945314, 30.103862256290192 ], [ -95.676762097489373, 30.103647256261073 ], [ -95.676301097735362, 30.103136255948126 ], [ -95.676073097570267, 30.102982256688879 ], [ -95.676003097693339, 30.102982256431051 ], [ -95.675934096780722, 30.103015256126625 ], [ -95.675839097647213, 30.103015256010121 ], [ -95.675801096986291, 30.102999256700944 ], [ -95.675681097084919, 30.102889256247273 ], [ -95.675498097053804, 30.102790256319324 ], [ -95.675359096871858, 30.102751256062366 ], [ -95.67524509648338, 30.102707256664548 ], [ -95.675080097170152, 30.102630256365941 ], [ -95.674707096437743, 30.102432256504226 ], [ -95.674625097016275, 30.102405256700496 ], [ -95.67451809693118, 30.102383256589398 ], [ -95.674417096401129, 30.102322256396032 ], [ -95.674031097139888, 30.102152256069175 ], [ -95.673740097073434, 30.102059256167966 ], [ -95.673386096610344, 30.101872256393833 ], [ -95.673051095874186, 30.101723255952717 ], [ -95.672843095914942, 30.101619256611777 ], [ -95.672545096636142, 30.101520256158658 ], [ -95.672432095774255, 30.101503256389847 ], [ -95.672204095770454, 30.101492255918288 ], [ -95.671995096196412, 30.101498256306321 ], [ -95.671875095557724, 30.101481256103575 ], [ -95.671654096107261, 30.101421256445356 ], [ -95.671427096081771, 30.101327256203842 ], [ -95.671243095673759, 30.10126725658737 ], [ -95.671098096327654, 30.101245256118162 ], [ -95.670933095749632, 30.101256256407854 ], [ -95.670832095555227, 30.101289256389869 ], [ -95.670624095971263, 30.101311256265461 ], [ -95.670276096042173, 30.101305256623085 ], [ -95.669916095760414, 30.101311256287662 ], [ -95.669625095215991, 30.101382255926904 ], [ -95.669220095891845, 30.101421256251246 ], [ -95.66902409543485, 30.101448256497928 ], [ -95.668702095342567, 30.101586256420621 ], [ -95.668310094884731, 30.10172825656581 ], [ -95.668063094840861, 30.101849256503218 ], [ -95.667817094831463, 30.102020256454786 ], [ -95.667728095223467, 30.102102256484166 ], [ -95.667690094878651, 30.102157256857318 ], [ -95.667652095404932, 30.102245256077744 ], [ -95.6676330949347, 30.102322256306017 ], [ -95.667633094802866, 30.102751256471937 ], [ -95.667642094838484, 30.102808256375372 ], [ -95.667659094932404, 30.102921256700508 ], [ -95.667743094956791, 30.10309025657045 ], [ -95.667760095416824, 30.103125256948196 ], [ -95.667779094681748, 30.103202256622385 ], [ -95.667760095509564, 30.10325625679253 ], [ -95.667680094789105, 30.103340256789327 ], [ -95.667545094534375, 30.103482257143469 ], [ -95.667519095481964, 30.103520256753633 ], [ -95.66751309459697, 30.103586256395463 ], [ -95.667538095403515, 30.103790256781092 ], [ -95.667576094844591, 30.103889257243001 ], [ -95.667677094679945, 30.104092256574436 ], [ -95.667703095178069, 30.104169256446475 ], [ -95.667722095177709, 30.104345257053648 ], [ -95.667722095117327, 30.104521257011985 ], [ -95.667684095106523, 30.104636256996944 ], [ -95.667576095596957, 30.104834256577487 ], [ -95.667462094894688, 30.104955257242388 ], [ -95.667404094907084, 30.105006257477047 ], [ -95.667279094637962, 30.105070257300937 ], [ -95.667102095087415, 30.105109256979532 ], [ -95.667159094774988, 30.105268256953376 ], [ -95.667159094586765, 30.105323256756112 ], [ -95.667178094684502, 30.105378257271465 ], [ -95.667292095588152, 30.105532256772097 ], [ -95.667311095282599, 30.105593257032634 ], [ -95.667298094900076, 30.105642257046078 ], [ -95.667260095533322, 30.105686256784246 ], [ -95.667228095542171, 30.105708257091866 ], [ -95.66715909541081, 30.105730257300699 ], [ -95.666811094853358, 30.105763257565325 ], [ -95.666735095414893, 30.10580225762909 ], [ -95.666685095079117, 30.105840256872479 ], [ -95.666482094914684, 30.105944256881934 ], [ -95.666082094780705, 30.106332257414444 ], [ -95.66587509425564, 30.106532257635386 ], [ -95.66571709516468, 30.106703257038443 ], [ -95.665496094856593, 30.106906257812394 ], [ -95.665376095116173, 30.107005257691231 ], [ -95.66519209507689, 30.107137257533079 ], [ -95.665098095026707, 30.107247258046442 ], [ -95.664933094906687, 30.107280257635253 ], [ -95.664864094856185, 30.107329257512497 ], [ -95.66474309450831, 30.107362257898487 ], [ -95.664668094672152, 30.107406257964243 ], [ -95.664434094575824, 30.107472257280776 ], [ -95.664345094488255, 30.107533257644516 ], [ -95.664225094144342, 30.107643257906997 ], [ -95.664124094787468, 30.107692257833452 ], [ -95.663890094647712, 30.107698257505579 ], [ -95.663795094556718, 30.107676257891161 ], [ -95.663662093973059, 30.107659257441927 ], [ -95.663599094281437, 30.107670258024402 ], [ -95.663567094005089, 30.107687257654106 ], [ -95.663466094047394, 30.107796257604601 ], [ -95.663422094366311, 30.107829257620605 ], [ -95.663340094547408, 30.107879258144028 ], [ -95.663176094003404, 30.107956258053324 ], [ -95.663081094106914, 30.107956258046606 ], [ -95.662942093662053, 30.107934258006559 ], [ -95.662872094288389, 30.107934258232117 ], [ -95.662676094232609, 30.108005257855428 ], [ -95.662556094485808, 30.10807725806103 ], [ -95.662361093652137, 30.108170257770034 ], [ -95.662316093754811, 30.108192258276112 ], [ -95.662259093743785, 30.108253258232494 ], [ -95.662214094065817, 30.108330257617872 ], [ -95.662214093548954, 30.108538258171162 ], [ -95.662157094293136, 30.108637257621012 ], [ -95.662088094380678, 30.108687257876571 ], [ -95.662031093466624, 30.108703257545361 ], [ -95.66188609357215, 30.108769257746395 ], [ -95.66181009386564, 30.108824258105926 ], [ -95.661759093811369, 30.108912257799872 ], [ -95.661614093414556, 30.109105258491574 ], [ -95.661418093852205, 30.109258257864255 ], [ -95.661323094153531, 30.109401257755003 ], [ -95.661298093841779, 30.109500257982333 ], [ -95.661304093399792, 30.109555257818528 ], [ -95.66134809396479, 30.109704258164687 ], [ -95.661342093629372, 30.109786257811624 ], [ -95.661241094116377, 30.11000625837077 ], [ -95.661215093887577, 30.110116258605448 ], [ -95.661203093489803, 30.110248258146665 ], [ -95.661221093566311, 30.11030825790813 ], [ -95.661247093235829, 30.11034725849894 ], [ -95.661278094103665, 30.110369258428808 ], [ -95.661424093865804, 30.110363258003332 ], [ -95.661645094229684, 30.110325258620314 ], [ -95.661721094092101, 30.110325258133599 ], [ -95.661809093462779, 30.110341257958286 ], [ -95.661866094329255, 30.110369258546502 ], [ -95.66193009440947, 30.110429258382219 ], [ -95.661986093756738, 30.110501258598031 ], [ -95.662024093459493, 30.11058925815027 ], [ -95.662031094291052, 30.110710258660504 ], [ -95.662005093528805, 30.110825258801782 ], [ -95.661936094120009, 30.110968258233541 ], [ -95.661860093891164, 30.111078258357427 ], [ -95.661733094128707, 30.111182258882256 ], [ -95.661696094193502, 30.111243258678329 ], [ -95.661664094229678, 30.111353258918019 ], [ -95.661626094190751, 30.111402258682165 ], [ -95.66131609430694, 30.111551258231916 ], [ -95.661215094058662, 30.111573258821082 ], [ -95.661089093245593, 30.111589258855524 ], [ -95.660842093638024, 30.111595258294567 ], [ -95.660671093492198, 30.11157225843175 ], [ -95.660336093336113, 30.111567258893871 ], [ -95.660229093088176, 30.111578259064583 ], [ -95.660140093203594, 30.111605258868259 ], [ -95.660039093574909, 30.111644258869845 ], [ -95.6597920932509, 30.111814258419418 ], [ -95.659529093039851, 30.11203825879921 ], [ -95.659451093847693, 30.112106259141999 ], [ -95.659350093296908, 30.112215258726351 ], [ -95.659274093476, 30.112281259071498 ], [ -95.659236093803926, 30.112303259191137 ], [ -95.659084093036725, 30.112347258437403 ], [ -95.658945092915246, 30.112347259040138 ], [ -95.658857092838275, 30.112303258405184 ], [ -95.658724092880874, 30.112160258807283 ], [ -95.65859109296396, 30.111962258379446 ], [ -95.658572093452733, 30.111929258619554 ], [ -95.658559093557841, 30.111820259103638 ], [ -95.658534093141412, 30.111754258549663 ], [ -95.658364093244685, 30.111506259060782 ], [ -95.65826209263588, 30.111325258957372 ], [ -95.658237092877613, 30.111260258307563 ], [ -95.658224093172407, 30.111226258700334 ], [ -95.658225092673391, 30.111165258684739 ], [ -95.658243092583575, 30.111105258716531 ], [ -95.658288092727659, 30.111044258261856 ], [ -95.658357092659656, 30.111017258176258 ], [ -95.658395093386062, 30.111011258647618 ], [ -95.658743093195113, 30.111171258205662 ], [ -95.658895092994641, 30.111215258829009 ], [ -95.658958092765431, 30.111226258691584 ], [ -95.659027092732771, 30.111220258399801 ], [ -95.659097092753711, 30.111165258540208 ], [ -95.659110093714304, 30.11112225820089 ], [ -95.659110092757089, 30.11107225820232 ], [ -95.659084093284065, 30.111023258466723 ], [ -95.658914092743331, 30.110913258168281 ], [ -95.658654092876318, 30.110781258683208 ], [ -95.65856009335586, 30.110698258150595 ], [ -95.658541092717471, 30.110610258526723 ], [ -95.658566093224536, 30.110566258596901 ], [ -95.658610092623078, 30.110539258106208 ], [ -95.658800093196319, 30.110500258463262 ], [ -95.658851092992734, 30.110467258762434 ], [ -95.658863092936002, 30.110423258870725 ], [ -95.65885709330837, 30.110379258512086 ], [ -95.65880609363623, 30.110302258594867 ], [ -95.658484092930749, 30.110159258301561 ], [ -95.65840209294177, 30.110170258181885 ], [ -95.658149093098757, 30.110269258086227 ], [ -95.658054093204413, 30.110297258086529 ], [ -95.65796509249752, 30.110308258812026 ], [ -95.657833092369899, 30.110286258768596 ], [ -95.657782092447619, 30.110258258477501 ], [ -95.65764909249863, 30.110115258501693 ], [ -95.657599093303006, 30.110022258262269 ], [ -95.657580093037936, 30.109747257928902 ], [ -95.657555092350393, 30.109714258634607 ], [ -95.657498092444598, 30.109703258298882 ], [ -95.657232092249217, 30.109742258591329 ], [ -95.656935092837244, 30.109796258838742 ], [ -95.656701092766937, 30.10979125825553 ], [ -95.656613092155453, 30.109774258668622 ], [ -95.656366092472467, 30.10967525801782 ], [ -95.656227092428594, 30.109571258494618 ], [ -95.656170092626127, 30.109505258630403 ], [ -95.656006092517913, 30.109357258785703 ], [ -95.655930092481839, 30.109335258599383 ], [ -95.655841092628179, 30.109285258266581 ], [ -95.655557092527474, 30.109049258565676 ], [ -95.655458092501604, 30.10900825803305 ], [ -95.655437092482373, 30.108999258604289 ], [ -95.655241092342706, 30.108988258523166 ], [ -95.655140092569994, 30.108988258027576 ], [ -95.655083091823741, 30.108999258569785 ], [ -95.655007092521146, 30.109038258450845 ], [ -95.654861092585378, 30.10918025797028 ], [ -95.654735091786478, 30.109224258264788 ], [ -95.654640092347407, 30.109230258446193 ], [ -95.654515092443177, 30.109221258204283 ], [ -95.65420409221737, 30.109197258800631 ], [ -95.654077092178611, 30.10920225844103 ], [ -95.654008091547325, 30.109230258100776 ], [ -95.653919091359555, 30.109307258381481 ], [ -95.653856091572493, 30.109422258059457 ], [ -95.653837092080693, 30.109483258802243 ], [ -95.653831092059619, 30.109614258382482 ], [ -95.653812092019606, 30.109708258860067 ], [ -95.653780091934564, 30.109796258252356 ], [ -95.653729091584864, 30.109884258656066 ], [ -95.653673092237725, 30.110060258830458 ], [ -95.653647091665832, 30.110186258139226 ], [ -95.653673091406574, 30.110329258440167 ], [ -95.653710092234348, 30.11039525900431 ], [ -95.653818091637802, 30.110505258474909 ], [ -95.653995091748669, 30.11060425852838 ], [ -95.654134092189366, 30.110609258419331 ], [ -95.65426009226141, 30.110604259075593 ], [ -95.654317092381277, 30.11061525897604 ], [ -95.65436209195984, 30.11063725863524 ], [ -95.654393091708727, 30.110670258865778 ], [ -95.654475091908196, 30.110857258931297 ], [ -95.65448809256138, 30.110956258465141 ], [ -95.654444092044812, 30.111055258665832 ], [ -95.65438709184545, 30.111082258381526 ], [ -95.654311092061988, 30.11108825904056 ], [ -95.654235092355023, 30.111060259057535 ], [ -95.654165091650015, 30.111022258824136 ], [ -95.654109092407509, 30.110978258762284 ], [ -95.654045092382589, 30.110956258284517 ], [ -95.653970091607974, 30.110939259147276 ], [ -95.653887091829233, 30.11095025849848 ], [ -95.653653091973155, 30.111049258946409 ], [ -95.653471091430774, 30.111179258638344 ], [ -95.653400091579385, 30.111230258883069 ], [ -95.65318509175124, 30.111335259140624 ], [ -95.653146091705551, 30.111365258565947 ], [ -95.653129091494819, 30.111379259154042 ], [ -95.65303409221255, 30.111489259098985 ], [ -95.653002091243096, 30.111621258505586 ], [ -95.653002091982799, 30.111841258867965 ], [ -95.652989091824239, 30.111978258970883 ], [ -95.652964091638509, 30.112022258819167 ], [ -95.652907091400976, 30.112088259244235 ], [ -95.652831091343799, 30.112225258943226 ], [ -95.652825091844022, 30.112302259405297 ], [ -95.652787092032696, 30.112368258878007 ], [ -95.652724091439424, 30.112423259179721 ], [ -95.652692092085204, 30.11247325873267 ], [ -95.652669091906375, 30.11252425932112 ], [ -95.65263509207702, 30.112599258716713 ], [ -95.652616091694497, 30.112676259555009 ], [ -95.6526290912077, 30.112791259541119 ], [ -95.65264009163252, 30.112820258859504 ], [ -95.652717091202959, 30.113022259415697 ], [ -95.65273009150161, 30.113132259571305 ], [ -95.652723091191817, 30.113209259462145 ], [ -95.652635091668955, 30.113435259490085 ], [ -95.652572091876195, 30.113687258966788 ], [ -95.652540091405911, 30.113753259671473 ], [ -95.652432091201447, 30.11388025893401 ], [ -95.652331091784475, 30.113968259604558 ], [ -95.651933092060503, 30.114248259136257 ], [ -95.651844091530947, 30.114297259043948 ], [ -95.651718090984701, 30.114407259655845 ], [ -95.651579091723434, 30.114627259238237 ], [ -95.651319091894365, 30.114886259630591 ], [ -95.651269091494825, 30.114924259579634 ], [ -95.651193091855504, 30.114957259376364 ], [ -95.651085091272634, 30.114968259952928 ], [ -95.651016091523502, 30.114929259673126 ], [ -95.650927091250054, 30.114841259424651 ], [ -95.650896091760899, 30.11482525965133 ], [ -95.650763090827951, 30.114808259300759 ], [ -95.650643091709924, 30.114825259215706 ], [ -95.650548091075962, 30.114863259962206 ], [ -95.650523091364988, 30.114896259759085 ], [ -95.650327090990814, 30.115067259798845 ], [ -95.650003090959643, 30.115264259660464 ], [ -95.649922091455821, 30.115314259943258 ], [ -95.649745091512145, 30.115501259876158 ], [ -95.649542091502127, 30.115941259723041 ], [ -95.64934609061271, 30.116210260210977 ], [ -95.649005090827501, 30.116562259957295 ], [ -95.648891091096928, 30.116726259916902 ], [ -95.648840090930136, 30.116825259831675 ], [ -95.648777090688426, 30.117051260224748 ], [ -95.648739090853667, 30.117139260447221 ], [ -95.648619091141342, 30.11734225994935 ], [ -95.648246090418581, 30.117699260654714 ], [ -95.648031090293998, 30.117848260294355 ], [ -95.647626091032677, 30.118045260018157 ], [ -95.647476090398584, 30.118112260208612 ], [ -95.647392090561667, 30.118150260455607 ], [ -95.647303090562332, 30.11819926014471 ], [ -95.647025090014509, 30.118386260217026 ], [ -95.646962090329836, 30.118457260910418 ], [ -95.646943090782926, 30.118507260107691 ], [ -95.646924089987095, 30.118655260201468 ], [ -95.646930090154896, 30.118699260177792 ], [ -95.64692409096881, 30.118749260396953 ], [ -95.646709090356694, 30.118842260906071 ], [ -95.646386090115655, 30.118886260199041 ], [ -95.646317090696925, 30.118908260786437 ], [ -95.64626108999623, 30.11893626036704 ], [ -95.646171090176324, 30.119018260260496 ], [ -95.646109090613507, 30.119244260881565 ], [ -95.645844089989652, 30.119174260929238 ], [ -95.645783089826267, 30.119157260913646 ], [ -95.645721090202755, 30.119141260273445 ], [ -95.645701090091961, 30.119186260700452 ], [ -95.64581709005958, 30.11933326042428 ], [ -95.64602009020949, 30.119569260445104 ], [ -95.647085090628309, 30.120994260693912 ], [ -95.648201090711268, 30.122506261450557 ], [ -95.64852009153924, 30.12303126143993 ], [ -95.649421091611273, 30.124592261845052 ], [ -95.64967309164436, 30.125027261524068 ], [ -95.650895092022338, 30.127536262125545 ], [ -95.651471092631709, 30.128623261969778 ], [ -95.65211809224256, 30.129833262543073 ], [ -95.652694092014514, 30.130766262985631 ], [ -95.65328409228448, 30.131722262959379 ], [ -95.654288092993667, 30.133356263219731 ], [ -95.654657093639983, 30.133955263168858 ], [ -95.654813093326837, 30.134208263512118 ], [ -95.654857092765837, 30.134279263456751 ], [ -95.655055092805583, 30.134601263388809 ], [ -95.655283093146139, 30.134972263979233 ], [ -95.655974093336624, 30.136096263979681 ], [ -95.656209094026892, 30.136482263579797 ], [ -95.658449094515348, 30.140129264228996 ], [ -95.660483094719623, 30.143440265465628 ], [ -95.66126909492661, 30.144707265139353 ], [ -95.66398209612133, 30.149078266453945 ], [ -95.665222096872711, 30.151102266320503 ], [ -95.66698009726295, 30.15397026719759 ], [ -95.667177097104826, 30.154291267065066 ], [ -95.667222096999325, 30.154364266785219 ], [ -95.66739009736547, 30.154639267019949 ], [ -95.667923097185167, 30.155508267101627 ], [ -95.672283099246883, 30.162506268275955 ], [ -95.672947098747088, 30.163626268924194 ], [ -95.67339309892337, 30.164316268414023 ], [ -95.673793099981168, 30.164990268890186 ], [ -95.673807099631375, 30.165014268741004 ], [ -95.673910099497576, 30.165168269425788 ], [ -95.674053099729221, 30.165367268671321 ], [ -95.674084099914737, 30.165407268971588 ], [ -95.674185099172931, 30.165538269204905 ], [ -95.674268099915437, 30.165636268746187 ], [ -95.67434109980536, 30.16572326900787 ], [ -95.674673100156426, 30.166048269576688 ], [ -95.674832100162618, 30.166174268919502 ], [ -95.674974100144681, 30.166297269612041 ], [ -95.675151100320036, 30.166485269067234 ], [ -95.675367100117654, 30.16670226892089 ], [ -95.675522100269376, 30.166814269592685 ], [ -95.676127100066168, 30.167181269511506 ], [ -95.676630100179764, 30.167466269534074 ], [ -95.679320100614717, 30.168982269695572 ], [ -95.680067101445431, 30.168200269167734 ], [ -95.6802841010647, 30.167994269243717 ], [ -95.680470101104476, 30.167836269137233 ], [ -95.681390101806542, 30.16710226909019 ], [ -95.68323110147962, 30.165599269186856 ], [ -95.683871101816308, 30.165040269065269 ], [ -95.684978101987753, 30.1641182682825 ], [ -95.685477102141505, 30.163745268291116 ], [ -95.686382103092853, 30.163041268500869 ], [ -95.686733102903602, 30.162769268502789 ], [ -95.687273103082973, 30.162367268072082 ], [ -95.687535102674957, 30.162167267674775 ], [ -95.687859103296006, 30.161928267634138 ], [ -95.68888610276862, 30.161158267836029 ], [ -95.689349102770549, 30.160819267224131 ], [ -95.690598103710741, 30.159907267792548 ], [ -95.691188103196694, 30.159421266941621 ], [ -95.691929103843037, 30.158667266983969 ], [ -95.692609103679942, 30.158040267075677 ], [ -95.693820103911264, 30.156917266867694 ], [ -95.694130103947558, 30.156671266679808 ], [ -95.694274104513369, 30.156790266860952 ], [ -95.69447710459643, 30.156647266473144 ], [ -95.694519103908107, 30.15653026607427 ], [ -95.695015104603513, 30.15599426631994 ], [ -95.695170104913416, 30.155514266703481 ], [ -95.6961551045584, 30.154686266425855 ], [ -95.696258105133595, 30.154638266401886 ], [ -95.69624310427173, 30.154435266364896 ], [ -95.696231104675192, 30.154261265992165 ], [ -95.696205104695252, 30.153909265958038 ], [ -95.696073104127052, 30.153291265866535 ], [ -95.696205104661004, 30.152924265990389 ], [ -95.696125104336758, 30.152077265339791 ], [ -95.696256104859089, 30.151756265860058 ], [ -95.696308104487485, 30.150977264984551 ], [ -95.696600104948175, 30.149743264690933 ], [ -95.696650104346503, 30.149534265124533 ], [ -95.696807104899577, 30.149168265289099 ], [ -95.696912104240013, 30.14850326466934 ], [ -95.697123104917964, 30.147839264415325 ], [ -95.697149104792615, 30.147381264299476 ], [ -95.697017104570619, 30.147038264127211 ], [ -95.696858104354774, 30.14694626445857 ], [ -95.696653104099582, 30.146933264762708 ], [ -95.696489104238822, 30.146923264223151 ], [ -95.696350104221978, 30.146967264106035 ], [ -95.696121103924426, 30.147039264782929 ], [ -95.69591010431698, 30.147107264302413 ], [ -95.695514103893245, 30.147107264726724 ], [ -95.695172104590682, 30.14710726483781 ], [ -95.69508210376388, 30.147055264420729 ], [ -95.694935103680365, 30.146970264420137 ], [ -95.694829103652282, 30.146741264822623 ], [ -95.694354103698799, 30.146535264371696 ], [ -95.694012103524301, 30.146238264546547 ], [ -95.693616103626141, 30.146192264728583 ], [ -95.693353103821437, 30.146353264578213 ], [ -95.693187103138854, 30.146387264169061 ], [ -95.692905103787751, 30.146445264257896 ], [ -95.69237810291132, 30.146239264366873 ], [ -95.691666103022655, 30.146239264766859 ], [ -95.690244103256148, 30.146881264334205 ], [ -95.689901102850371, 30.146882265149035 ], [ -95.689400102329515, 30.146424264409784 ], [ -95.68889910294989, 30.146264264314638 ], [ -95.687951102074379, 30.146654264568589 ], [ -95.687503102615594, 30.14644826445705 ], [ -95.68718610235986, 30.14642526454665 ], [ -95.686986102005989, 30.14653226433003 ], [ -95.68650110205563, 30.146792265113451 ], [ -95.686447101775101, 30.146800264852008 ], [ -95.686054101809106, 30.146861264500671 ], [ -95.685684101353814, 30.146609264517728 ], [ -95.685184101303918, 30.146632264686026 ], [ -95.684815101786342, 30.146449264913208 ], [ -95.684551101393936, 30.14642726521781 ], [ -95.684077101326494, 30.146725264632895 ], [ -95.683603100821117, 30.146885264809896 ], [ -95.683392101191288, 30.146885264998438 ], [ -95.682838101167164, 30.146267264507646 ], [ -95.682416101010759, 30.146016264414389 ], [ -95.681731100126868, 30.145306265098782 ], [ -95.681493100767227, 30.145283264455394 ], [ -95.681151100594235, 30.145558264940817 ], [ -95.68084110011489, 30.145703264426405 ], [ -95.680808100684118, 30.145719265190618 ], [ -95.680071100723367, 30.145696264552438 ], [ -95.679702099719037, 30.145811264567445 ], [ -95.678762099428809, 30.145424265186861 ], [ -95.678146099390389, 30.14517026478152 ], [ -95.677387099295643, 30.145171265209505 ], [ -95.677013099795687, 30.145171265246521 ], [ -95.676724099417797, 30.145331265201882 ], [ -95.676687098851019, 30.145415265313392 ], [ -95.676592099344759, 30.145629264979309 ], [ -95.67611809956702, 30.145835265419109 ], [ -95.675485099317868, 30.145836264729773 ], [ -95.675275098513893, 30.14592826460991 ], [ -95.675038099187788, 30.146225265321238 ], [ -95.674695098947069, 30.146340265365311 ], [ -95.673957098940477, 30.14636326548414 ], [ -95.673509098271921, 30.146226264814771 ], [ -95.672824098336662, 30.146272264814115 ], [ -95.672429098305699, 30.146135265418831 ], [ -95.672165097821804, 30.145975264967312 ], [ -95.67150609813514, 30.144899265238195 ], [ -95.671163098297683, 30.144738264605962 ], [ -95.670899097392052, 30.144761265325442 ], [ -95.670372097667823, 30.144945264705697 ], [ -95.669951097950161, 30.144968264642671 ], [ -95.669476097827385, 30.144533265278614 ], [ -95.668396096828999, 30.144304265333783 ], [ -95.668290096749402, 30.144144264734678 ], [ -95.668501096983647, 30.143571264811367 ], [ -95.66847409715443, 30.143182265112021 ], [ -95.668131097484604, 30.142953264387174 ], [ -95.668131096721794, 30.142701264658427 ], [ -95.668026097311724, 30.142564264743353 ], [ -95.667734096727628, 30.14252826445863 ], [ -95.667702097200163, 30.141333264448434 ], [ -95.669459097194547, 30.14171226467068 ], [ -95.671629097746916, 30.141703264694943 ], [ -95.673439098059546, 30.141670264586267 ], [ -95.673451098114157, 30.139509264218415 ], [ -95.676227098549205, 30.139561263604691 ], [ -95.676470099219571, 30.139553263781366 ], [ -95.676637099176091, 30.139543264075044 ], [ -95.677319099522819, 30.139458263897737 ], [ -95.677479099254342, 30.13944326378062 ], [ -95.677641098867213, 30.139436263715524 ], [ -95.677835099828272, 30.139433263904056 ], [ -95.678426099091098, 30.139442263784552 ], [ -95.680943100224027, 30.13944126380601 ], [ -95.682423100650269, 30.1394282632779 ], [ -95.682721100080428, 30.139407263676912 ], [ -95.682778100081322, 30.139398263717414 ], [ -95.682824100175637, 30.139391263119297 ], [ -95.682931100813889, 30.139366263243087 ], [ -95.683095101105081, 30.139298263196991 ], [ -95.683255100954398, 30.139192263820235 ], [ -95.683387100928229, 30.139077262985833 ], [ -95.683643100510011, 30.138866263032128 ], [ -95.683879101142807, 30.138685263448124 ], [ -95.684071100968126, 30.138582263046324 ], [ -95.684243100699831, 30.138504263516076 ], [ -95.684454101141853, 30.138441263106621 ], [ -95.684726100740221, 30.138401262788001 ], [ -95.685023101044536, 30.13838926284123 ], [ -95.685530101544458, 30.138390263018994 ], [ -95.685914101233479, 30.138400262846616 ], [ -95.686286100950539, 30.138398263532782 ], [ -95.686700101208032, 30.138367263229931 ], [ -95.686903101429778, 30.138347262701302 ], [ -95.687498101854999, 30.138254262873257 ], [ -95.68809410190903, 30.138151263029798 ], [ -95.68842110233885, 30.138104263316556 ], [ -95.688647102063427, 30.138082263342064 ], [ -95.689076102203742, 30.13807626266469 ], [ -95.689642102046378, 30.138079262687437 ], [ -95.689901102599862, 30.138088263317929 ], [ -95.690360102314187, 30.138129263166011 ], [ -95.690535103028495, 30.138153262588524 ], [ -95.690796102626507, 30.138195262831225 ], [ -95.691145103091259, 30.138261262664578 ], [ -95.691480103202352, 30.138333262554656 ], [ -95.691700102969321, 30.138374262536001 ], [ -95.691927102689874, 30.138405263378132 ], [ -95.692214103466682, 30.138431263089434 ], [ -95.692883103254545, 30.138456263010088 ], [ -95.693405103751871, 30.138460262778757 ], [ -95.693691103660413, 30.138475263313797 ], [ -95.693839103164393, 30.13849626274019 ], [ -95.694714103647954, 30.138668263329134 ], [ -95.694956103771744, 30.138707262546255 ], [ -95.695554103579326, 30.13876626259124 ], [ -95.695889104008558, 30.138774263113454 ], [ -95.696215103792937, 30.138774263303141 ], [ -95.696425104500264, 30.138765262717293 ], [ -95.696632104468989, 30.138746262684553 ], [ -95.696888104501511, 30.138711262545264 ], [ -95.697119104045115, 30.138675262722725 ], [ -95.698161104942912, 30.138497262793578 ], [ -95.698380104092422, 30.138470262670907 ], [ -95.698526104807868, 30.138459262928009 ], [ -95.698721104133369, 30.138453263151714 ], [ -95.701109104936819, 30.138473262545197 ], [ -95.702941105446854, 30.138507262953318 ], [ -95.703177105508715, 30.138529262787529 ], [ -95.703324105556106, 30.138555262141654 ], [ -95.704209106157734, 30.138731262212989 ], [ -95.704527106170033, 30.138769262444715 ], [ -95.704706105900215, 30.138781262574739 ], [ -95.706085106425633, 30.138793262701991 ], [ -95.707185106596043, 30.138803262162693 ], [ -95.707499107210708, 30.138806262392855 ], [ -95.707590107285085, 30.138811262086758 ], [ -95.707741107439375, 30.138831262782457 ], [ -95.708087107090563, 30.13889426238941 ], [ -95.70827710738692, 30.13894626285887 ], [ -95.708442107091699, 30.138999262231319 ], [ -95.70858310724536, 30.139052262590653 ], [ -95.708727107592551, 30.139119262267652 ], [ -95.708907107334838, 30.139214262754241 ], [ -95.709027106794963, 30.139289262833515 ], [ -95.709152107575576, 30.139377262537938 ], [ -95.709262107380709, 30.139457262938514 ], [ -95.709366107047913, 30.139547262970435 ], [ -95.70952410790639, 30.13969226292506 ], [ -95.70963610773569, 30.139807262883302 ], [ -95.709652107004487, 30.139825262370262 ], [ -95.709744107605218, 30.139925263090429 ], [ -95.709881108000744, 30.140083262548441 ], [ -95.709973107558255, 30.140280262622341 ], [ -95.710052107486078, 30.140494263128684 ], [ -95.710105107966015, 30.14067426240991 ], [ -95.710141107368244, 30.140829262530822 ], [ -95.710158108054429, 30.141014262759104 ], [ -95.710156107395534, 30.141181263245066 ], [ -95.710136107413717, 30.141324262692528 ], [ -95.710086107383773, 30.14150726333019 ], [ -95.710004107242753, 30.141747263000422 ], [ -95.709887107712646, 30.142028263262404 ], [ -95.710640108033587, 30.14266926309336 ], [ -95.710716107844377, 30.142608263355061 ], [ -95.711005107616643, 30.142585262697477 ], [ -95.711164108105379, 30.142653263394063 ], [ -95.711322107595194, 30.14258526315443 ], [ -95.711453108492805, 30.142012262840904 ], [ -95.711795108532982, 30.141806263335372 ], [ -95.712006107884136, 30.141599263170882 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 89, "Tract": "48339694308", "Area_SqMi": 1.9662179835467295, "total_2009": 118, "total_2010": 115, "total_2011": 116, "total_2012": 130, "total_2013": 135, "total_2014": 126, "total_2015": 186, "total_2016": 236, "total_2017": 304, "total_2018": 245, "total_2019": 240, "total_2020": 464, "age1": 83, "age2": 134, "age3": 57, "earn1": 88, "earn2": 93, "earn3": 93, "naics_s01": 0, "naics_s02": 0, "naics_s03": 4, "naics_s04": 24, "naics_s05": 6, "naics_s06": 21, "naics_s07": 26, "naics_s08": 3, "naics_s09": 0, "naics_s10": 4, "naics_s11": 20, "naics_s12": 30, "naics_s13": 0, "naics_s14": 11, "naics_s15": 29, "naics_s16": 43, "naics_s17": 6, "naics_s18": 40, "naics_s19": 7, "naics_s20": 0, "race1": 233, "race2": 31, "race3": 1, "race4": 7, "race5": 0, "race6": 2, "ethnicity1": 231, "ethnicity2": 43, "edu1": 19, "edu2": 54, "edu3": 85, "edu4": 33, "Shape_Length": 35489.831062440804, "Shape_Area": 54814792.165571518, "total_2021": 441, "total_2022": 274 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.656708106213557, 30.391497315592677 ], [ -95.656713106023716, 30.391376315061294 ], [ -95.656674106159898, 30.391081315012631 ], [ -95.656347105922976, 30.389840314734933 ], [ -95.656087105917464, 30.388863314934767 ], [ -95.655789105468344, 30.388322314738719 ], [ -95.655668105021093, 30.388197315138939 ], [ -95.655431105338465, 30.387950314603533 ], [ -95.655144105725398, 30.387668314299038 ], [ -95.653323104930806, 30.385882314663927 ], [ -95.653093104826013, 30.38558231443848 ], [ -95.652912104340857, 30.385228314514254 ], [ -95.6528481050089, 30.385045314347341 ], [ -95.65280510463964, 30.384857314508633 ], [ -95.652775104412271, 30.384559313918931 ], [ -95.652822104235781, 30.38371031423905 ], [ -95.65287210395698, 30.38331831371881 ], [ -95.652945104790234, 30.382934313369255 ], [ -95.652970104214319, 30.382803313969724 ], [ -95.652721104144376, 30.382724313572119 ], [ -95.652345104741329, 30.382604313893914 ], [ -95.651787104018254, 30.382411313911629 ], [ -95.651491104365988, 30.38230231378877 ], [ -95.651054104055461, 30.38213131403749 ], [ -95.650327103876776, 30.381822313653551 ], [ -95.649759103613874, 30.381552313682267 ], [ -95.645152102627478, 30.378975313010503 ], [ -95.642311101950099, 30.377387312809464 ], [ -95.640729101258955, 30.376502312840639 ], [ -95.639131100607742, 30.375608312695775 ], [ -95.636703099647349, 30.374247312732567 ], [ -95.636336099307769, 30.374041312217539 ], [ -95.636210099480408, 30.373971312285459 ], [ -95.635585099473147, 30.373621312765568 ], [ -95.635280099429707, 30.373454312865981 ], [ -95.634663098785396, 30.373145312167892 ], [ -95.63454209910131, 30.37308831260335 ], [ -95.634350099325601, 30.372997312537077 ], [ -95.633889099297406, 30.372795312528385 ], [ -95.633647099203642, 30.372687312767223 ], [ -95.633280099123525, 30.372538312526203 ], [ -95.632713098465189, 30.37231831277261 ], [ -95.631754098078204, 30.371899312244363 ], [ -95.631105098139557, 30.371616311810278 ], [ -95.630382098323963, 30.371299311811509 ], [ -95.629865097775451, 30.371075312490483 ], [ -95.629373097925424, 30.370861312001054 ], [ -95.62908909787572, 30.370737311884778 ], [ -95.629040098213736, 30.370779311875545 ], [ -95.627356097787967, 30.372222312290191 ], [ -95.627634098015307, 30.37537531349524 ], [ -95.626315097138416, 30.376505313226804 ], [ -95.625874096750991, 30.377260313486115 ], [ -95.624227097121278, 30.378624313481229 ], [ -95.621480096389178, 30.380900314732298 ], [ -95.620020095498219, 30.381021314527185 ], [ -95.620894096529994, 30.381276314394295 ], [ -95.622202096579556, 30.382415314909174 ], [ -95.625261097294214, 30.383686314923978 ], [ -95.630203098940513, 30.388115315859594 ], [ -95.632390099321228, 30.388626315578172 ], [ -95.634429099862373, 30.389516316133395 ], [ -95.639243101168049, 30.390036315987611 ], [ -95.640262101820525, 30.390669316182017 ], [ -95.641367101858336, 30.391631315799408 ], [ -95.642152102216386, 30.392314316396117 ], [ -95.643166102206862, 30.394082316769627 ], [ -95.643309102888708, 30.394713316371043 ], [ -95.644181102619811, 30.395598316322811 ], [ -95.644615102738982, 30.396482316922178 ], [ -95.646796103758803, 30.39838031690174 ], [ -95.648255103801773, 30.398636317312558 ], [ -95.651579105221302, 30.401780317209255 ], [ -95.651598104651399, 30.401798317634274 ], [ -95.653106105688764, 30.401797317712596 ], [ -95.653055105277247, 30.401495317254348 ], [ -95.652830105553377, 30.400437317322965 ], [ -95.652540105109864, 30.399121317251794 ], [ -95.65219710505275, 30.39736931641335 ], [ -95.652120105076008, 30.396911316878203 ], [ -95.652152104661582, 30.39641631609085 ], [ -95.652285105303193, 30.39592831604844 ], [ -95.652696104929916, 30.39542931668953 ], [ -95.653117105106617, 30.395074315893101 ], [ -95.653616104793244, 30.394864315854683 ], [ -95.653694104716365, 30.394830316364921 ], [ -95.65454310528628, 30.394568316376848 ], [ -95.654926105324776, 30.394445316196069 ], [ -95.655272105171775, 30.394242316010857 ], [ -95.655540105623558, 30.393982315491584 ], [ -95.655731105304767, 30.393679315972381 ], [ -95.656039105951947, 30.393094315323545 ], [ -95.656551106214692, 30.392120315076895 ], [ -95.656647105627698, 30.391880315170464 ], [ -95.656701105313644, 30.391623315356874 ], [ -95.656708106213557, 30.391497315592677 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 90, "Tract": "48339692303", "Area_SqMi": 6.6156030493939895, "total_2009": 2396, "total_2010": 2050, "total_2011": 2590, "total_2012": 2564, "total_2013": 2776, "total_2014": 3395, "total_2015": 3516, "total_2016": 3787, "total_2017": 4175, "total_2018": 3873, "total_2019": 4014, "total_2020": 4047, "age1": 944, "age2": 2182, "age3": 830, "earn1": 538, "earn2": 1178, "earn3": 2240, "naics_s01": 0, "naics_s02": 41, "naics_s03": 0, "naics_s04": 167, "naics_s05": 31, "naics_s06": 8, "naics_s07": 513, "naics_s08": 14, "naics_s09": 0, "naics_s10": 417, "naics_s11": 59, "naics_s12": 31, "naics_s13": 211, "naics_s14": 262, "naics_s15": 0, "naics_s16": 1990, "naics_s17": 0, "naics_s18": 196, "naics_s19": 16, "naics_s20": 0, "race1": 2790, "race2": 703, "race3": 34, "race4": 344, "race5": 10, "race6": 75, "ethnicity1": 2711, "ethnicity2": 1245, "edu1": 604, "edu2": 748, "edu3": 928, "edu4": 732, "Shape_Length": 116771.00929308141, "Shape_Area": 184431690.29932448, "total_2021": 4036, "total_2022": 3956 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.314747004342877, 30.091808266770695 ], [ -95.314758004280534, 30.091190266202187 ], [ -95.31404400446722, 30.090544266471735 ], [ -95.313437003998615, 30.090093265972818 ], [ -95.313153003726711, 30.089935265958079 ], [ -95.312633003253382, 30.089815266540665 ], [ -95.311805003829406, 30.08978426599138 ], [ -95.310985003451066, 30.089815266084795 ], [ -95.310227002495822, 30.089783266573896 ], [ -95.309130002994692, 30.0895982663633 ], [ -95.308064002649971, 30.089193266131481 ], [ -95.307702002391466, 30.088847266736963 ], [ -95.307441002142539, 30.088462266091913 ], [ -95.307231001815268, 30.087788265681368 ], [ -95.307346002269696, 30.087300266278561 ], [ -95.307403001811949, 30.08675226560457 ], [ -95.307295001633477, 30.086330265379761 ], [ -95.307149001666332, 30.08599026615855 ], [ -95.306807002299792, 30.085634265333194 ], [ -95.306414001713463, 30.085365265970001 ], [ -95.305870001161381, 30.085184265595604 ], [ -95.305103001112442, 30.085119265643335 ], [ -95.304045001384779, 30.085146266020001 ], [ -95.303082000427423, 30.085239265448791 ], [ -95.302562000584288, 30.085365265390855 ], [ -95.301441000546745, 30.08567826608471 ], [ -95.30033199982698, 30.085837266332405 ], [ -95.29928600006707, 30.085755265544758 ], [ -95.298284999881176, 30.085349265643359 ], [ -95.29745499915785, 30.084751265945457 ], [ -95.297049999437249, 30.084389265397988 ], [ -95.296567999385147, 30.083847265720713 ], [ -95.295877998716904, 30.08288726506407 ], [ -95.295414998627294, 30.082295265311963 ], [ -95.29483199889026, 30.081857264939245 ], [ -95.29384399864702, 30.081467265208268 ], [ -95.292360997964806, 30.081144265582726 ], [ -95.291333997770082, 30.081018265524737 ], [ -95.289566997225464, 30.080694265302412 ], [ -95.288337997360813, 30.080338265244119 ], [ -95.287158996439757, 30.079773264924313 ], [ -95.286246995823959, 30.079181265033732 ], [ -95.285923996261815, 30.078968265258485 ], [ -95.285055996208214, 30.078567265025235 ], [ -95.28446599597406, 30.078397265319865 ], [ -95.283331996004165, 30.078255265279608 ], [ -95.281982995468098, 30.077948264993889 ], [ -95.281126994472373, 30.077454264824222 ], [ -95.280531994680516, 30.076999264886958 ], [ -95.280360994942171, 30.076440264631671 ], [ -95.280227995061125, 30.075552264681562 ], [ -95.280278994682945, 30.074801264852479 ], [ -95.280576994968342, 30.074159264303947 ], [ -95.280759994309136, 30.073792264575662 ], [ -95.281272995212788, 30.073052263708739 ], [ -95.281811995256064, 30.071961263907575 ], [ -95.281969994408882, 30.071123263537377 ], [ -95.28180499432581, 30.070519263879252 ], [ -95.281589994848375, 30.070229263105649 ], [ -95.281050994164687, 30.069615262912187 ], [ -95.280132993803747, 30.068940263597884 ], [ -95.279308994065872, 30.068496262733582 ], [ -95.278598994263007, 30.067959262746399 ], [ -95.278066993667423, 30.067477262957183 ], [ -95.277914993453237, 30.067296262926412 ], [ -95.277559993793034, 30.066550262839392 ], [ -95.277299993486395, 30.065695262884102 ], [ -95.276950993381263, 30.064725262544648 ], [ -95.27671699305678, 30.064001262003917 ], [ -95.276488992618837, 30.063431262464515 ], [ -95.276013992991338, 30.062614262320388 ], [ -95.27565899258542, 30.062027261639056 ], [ -95.275183992500914, 30.061408262170247 ], [ -95.27483599220777, 30.060799261456395 ], [ -95.274480992306366, 30.060130261912413 ], [ -95.274113992140201, 30.059275261504922 ], [ -95.273632991801435, 30.058266261465082 ], [ -95.27332199246554, 30.05757526099875 ], [ -95.27296099161812, 30.056708260790185 ], [ -95.27268199129621, 30.055809260648218 ], [ -95.272320991437326, 30.054663260381226 ], [ -95.272200991288145, 30.054236260520163 ], [ -95.271990991299461, 30.053457260281167 ], [ -95.271689991776285, 30.052533260583324 ], [ -95.271614991604409, 30.052246260115904 ], [ -95.270680990731279, 30.049339259375344 ], [ -95.269385990979018, 30.047787259380677 ], [ -95.269168990402775, 30.047098259588129 ], [ -95.268969990860271, 30.046463259212874 ], [ -95.268833990106273, 30.045453259166706 ], [ -95.268983990466566, 30.044950258653948 ], [ -95.270792990752341, 30.043182258309773 ], [ -95.271035990972578, 30.042945257931347 ], [ -95.271075990946258, 30.042877257947008 ], [ -95.271250990837459, 30.042578258303148 ], [ -95.271330991191888, 30.042442258203401 ], [ -95.271337990977344, 30.041685258138152 ], [ -95.271051990859917, 30.04117925809204 ], [ -95.269752989854439, 30.04016125767351 ], [ -95.266703989741018, 30.039762257958259 ], [ -95.265549989401507, 30.038871257302041 ], [ -95.263838988076586, 30.035201256814581 ], [ -95.26371698851915, 30.032551256163533 ], [ -95.263683988120377, 30.032522256406065 ], [ -95.263668988346495, 30.032536256735973 ], [ -95.263618988187972, 30.032580256040159 ], [ -95.263567987940604, 30.032624256398858 ], [ -95.263486988041322, 30.03269625645521 ], [ -95.263328988601842, 30.032836256273608 ], [ -95.263111988117899, 30.033027256298364 ], [ -95.263010988315713, 30.033104256327757 ], [ -95.262734987980835, 30.033319256247587 ], [ -95.262459988103487, 30.033535256462333 ], [ -95.260982988069983, 30.034691256937752 ], [ -95.260831987916731, 30.034809257026325 ], [ -95.260680987995102, 30.034928257051611 ], [ -95.260420987260574, 30.035132256987172 ], [ -95.260161987562213, 30.035336257217196 ], [ -95.259864987691529, 30.035569257140789 ], [ -95.255470986230421, 30.039083258121607 ], [ -95.255417986154981, 30.039123258032351 ], [ -95.255276986634826, 30.039217257674455 ], [ -95.255149986178168, 30.039302258337024 ], [ -95.255142986317168, 30.039313258364487 ], [ -95.255127986316054, 30.039317257711712 ], [ -95.2550289862927, 30.039413258000273 ], [ -95.254993986011414, 30.03943725783385 ], [ -95.254958986361075, 30.03947425801065 ], [ -95.254834986009897, 30.039605257919785 ], [ -95.253767985997882, 30.044522259465161 ], [ -95.252884986342622, 30.048317259647245 ], [ -95.252560986494601, 30.049640260403045 ], [ -95.251890986182573, 30.052330260728592 ], [ -95.251854986394179, 30.052474260900564 ], [ -95.251824986054132, 30.052573260908613 ], [ -95.251796986027415, 30.052674260918135 ], [ -95.251757986722652, 30.052827261255274 ], [ -95.251170986245796, 30.055125261737587 ], [ -95.250855986180696, 30.056141261228657 ], [ -95.250641986402016, 30.05696126179711 ], [ -95.249743986109252, 30.06007126256727 ], [ -95.24963898619265, 30.060435262391678 ], [ -95.249040986442083, 30.062451262623302 ], [ -95.24883998553085, 30.063123263213797 ], [ -95.248323985724653, 30.06479626378604 ], [ -95.24757498558327, 30.067260264244489 ], [ -95.246892986266758, 30.069532264102499 ], [ -95.246818986186483, 30.069792264650079 ], [ -95.24675098623041, 30.070048264455352 ], [ -95.246274986221394, 30.071590264676473 ], [ -95.246082985850606, 30.072211264950404 ], [ -95.245419985292571, 30.074351265276423 ], [ -95.244969985645923, 30.075940265801457 ], [ -95.244145985319193, 30.078690266057627 ], [ -95.243738985779331, 30.080044266732141 ], [ -95.242780985707924, 30.083273267345621 ], [ -95.242339984899616, 30.084738268065518 ], [ -95.241815985601178, 30.086501267995221 ], [ -95.241224985224164, 30.088416268971038 ], [ -95.240885985520052, 30.089538268731093 ], [ -95.240650984935669, 30.090318268841614 ], [ -95.239501985069708, 30.094226269828162 ], [ -95.238727985181953, 30.096772269995963 ], [ -95.237637984602827, 30.100318270849893 ], [ -95.237028984789433, 30.102303271085948 ], [ -95.236486984399832, 30.104157271929797 ], [ -95.236414985185306, 30.104404271950006 ], [ -95.236545985009954, 30.104422271811412 ], [ -95.236614984845687, 30.104431272171741 ], [ -95.236802984623736, 30.104456271863434 ], [ -95.237071984406981, 30.104492271633433 ], [ -95.237474985368735, 30.104528272104666 ], [ -95.237878985228448, 30.104564272230544 ], [ -95.23849998566584, 30.104548271567619 ], [ -95.240645985357077, 30.104586271873391 ], [ -95.241090985978673, 30.104599271456468 ], [ -95.242750985971227, 30.104629271423178 ], [ -95.243364986344517, 30.104638272077697 ], [ -95.244283987026279, 30.104644271409619 ], [ -95.244945986656603, 30.104641271515099 ], [ -95.245476986545057, 30.104636271335075 ], [ -95.245831987241061, 30.104633271842022 ], [ -95.248315987784054, 30.104614271840493 ], [ -95.248344988147423, 30.103241271721753 ], [ -95.248371988162873, 30.101977270923708 ], [ -95.248396987863828, 30.100404271175368 ], [ -95.247844987009685, 30.100402270646441 ], [ -95.246769986848648, 30.100416270382503 ], [ -95.246760987055168, 30.099076270091135 ], [ -95.24684398760175, 30.099010270505929 ], [ -95.246978986923054, 30.099017270113119 ], [ -95.248031987134297, 30.099022270383283 ], [ -95.248042987233589, 30.098241270682635 ], [ -95.24687798718665, 30.098234270384506 ], [ -95.246895986619776, 30.097235270472481 ], [ -95.245950986905527, 30.097208269928917 ], [ -95.245955986625091, 30.097544269852182 ], [ -95.245893986348875, 30.097583270147723 ], [ -95.24327498622074, 30.097611270101023 ], [ -95.243195985743284, 30.097571270115061 ], [ -95.24314698583342, 30.097025269849684 ], [ -95.243185985643123, 30.096803270243274 ], [ -95.243321986545766, 30.096677270620109 ], [ -95.243162985950136, 30.096430270413556 ], [ -95.243162986448311, 30.096303269668446 ], [ -95.243145985576632, 30.095837269534623 ], [ -95.24228398532297, 30.095834270372929 ], [ -95.242189985458793, 30.095807270314001 ], [ -95.242086985967973, 30.095715269939362 ], [ -95.242057986144545, 30.095632269786119 ], [ -95.242063985537825, 30.095554269851846 ], [ -95.242264985926766, 30.094923269727364 ], [ -95.242534985891126, 30.094075269867339 ], [ -95.242850986010936, 30.093069269774769 ], [ -95.242953985928878, 30.092927269436416 ], [ -95.243079985970112, 30.092916269429221 ], [ -95.243537986333223, 30.092905269056228 ], [ -95.243885985635046, 30.092929269154194 ], [ -95.24445798605754, 30.093037269117321 ], [ -95.24457998585585, 30.093165269690839 ], [ -95.244594986695844, 30.093289269623586 ], [ -95.244532986151327, 30.093505269522147 ], [ -95.245405986614202, 30.093697269781281 ], [ -95.245514986538197, 30.093356268996175 ], [ -95.245537986389905, 30.093288269673987 ], [ -95.245593986882213, 30.093254269371744 ], [ -95.245807986147128, 30.093181269706108 ], [ -95.246447986338381, 30.093177269292099 ], [ -95.247443987209493, 30.093173269673933 ], [ -95.247472987143723, 30.093173269467737 ], [ -95.249656987339506, 30.093164269163971 ], [ -95.249933987651914, 30.093209269363442 ], [ -95.249952987807589, 30.092623268899469 ], [ -95.249497987630818, 30.092616268675798 ], [ -95.249342987665884, 30.09256726886592 ], [ -95.249139987207968, 30.092406268684623 ], [ -95.249097987791941, 30.092291268686381 ], [ -95.249077987243965, 30.091943268752903 ], [ -95.249063987328782, 30.090507268862325 ], [ -95.249060987514056, 30.090304268677603 ], [ -95.248978987658859, 30.09021326907504 ], [ -95.249049986815407, 30.090078268206984 ], [ -95.249054987334759, 30.089932268185244 ], [ -95.249046986922565, 30.088361267819522 ], [ -95.249009987076818, 30.086467267616143 ], [ -95.249581987641321, 30.086461267692982 ], [ -95.250525987819444, 30.086437267853032 ], [ -95.250554987825822, 30.086800267642619 ], [ -95.250874987271985, 30.086843267817965 ], [ -95.251240987193384, 30.086840268259351 ], [ -95.251515988091612, 30.086857268295759 ], [ -95.251998988363425, 30.086817267645785 ], [ -95.252412987577074, 30.086850268238965 ], [ -95.252662988466511, 30.087000268080626 ], [ -95.252768987716323, 30.087163267652979 ], [ -95.253018988402047, 30.087068267556148 ], [ -95.253345988257337, 30.08708726820208 ], [ -95.253760988306254, 30.087176267957865 ], [ -95.254314988104042, 30.087265268033164 ], [ -95.254928988988951, 30.087414267593413 ], [ -95.255582988650502, 30.087567267568396 ], [ -95.25646298898279, 30.08785026748976 ], [ -95.257075989189332, 30.088027268310356 ], [ -95.257579988938673, 30.088284268144008 ], [ -95.258202989836093, 30.087760267592078 ], [ -95.258277989590127, 30.087701268237065 ], [ -95.258715989479754, 30.087364268084663 ], [ -95.258014989154276, 30.086702267557921 ], [ -95.257472989701824, 30.086264267710693 ], [ -95.25714798955471, 30.086050267131643 ], [ -95.256600989273849, 30.085747267368475 ], [ -95.256338989034234, 30.08562426773215 ], [ -95.256069989061686, 30.085511267459538 ], [ -95.255727988308877, 30.085386267862841 ], [ -95.255359988487768, 30.085281267714134 ], [ -95.255015988278146, 30.085203267478345 ], [ -95.254166988535104, 30.085066267599231 ], [ -95.253536988654872, 30.084946267201218 ], [ -95.253823988622202, 30.083424267321856 ], [ -95.254151987734389, 30.081904266991053 ], [ -95.254453988181652, 30.080534266823104 ], [ -95.254294988594879, 30.080504266830363 ], [ -95.253838988488823, 30.080409266501881 ], [ -95.253452988272571, 30.080338266040137 ], [ -95.253073988143797, 30.080278266393787 ], [ -95.252782987595992, 30.080242266470052 ], [ -95.252452987540082, 30.08022726622027 ], [ -95.252012988028795, 30.080237266460422 ], [ -95.251554987546413, 30.080271266202747 ], [ -95.251316987719918, 30.080300266873945 ], [ -95.25121598783187, 30.080314266681487 ], [ -95.250380987475523, 30.080474266856498 ], [ -95.250482986658582, 30.076571266081825 ], [ -95.250402986396594, 30.071897264625463 ], [ -95.255361987990128, 30.071878264664136 ], [ -95.255359987999256, 30.071500264191236 ], [ -95.255359987626846, 30.071439264523256 ], [ -95.258337989006819, 30.071425264881757 ], [ -95.262811989491723, 30.071406263876913 ], [ -95.262824989625599, 30.069152263643598 ], [ -95.262826989607547, 30.068860263700603 ], [ -95.262880989394247, 30.069147264135573 ], [ -95.26291099002313, 30.06924126382383 ], [ -95.262959989781436, 30.069392263859378 ], [ -95.263101989644937, 30.069662264187563 ], [ -95.26353398960228, 30.070218263895217 ], [ -95.263949990702201, 30.070753264172737 ], [ -95.264897990089224, 30.071929264322154 ], [ -95.265131990380496, 30.072219264769011 ], [ -95.26554799065309, 30.07273526491845 ], [ -95.267067990989972, 30.074505264841889 ], [ -95.26817499177713, 30.075793264945695 ], [ -95.268528991557403, 30.07625426540443 ], [ -95.268734991957089, 30.076587265372876 ], [ -95.268912991982702, 30.076911265109452 ], [ -95.269962992455433, 30.079135265509322 ], [ -95.270922992722362, 30.081088265778124 ], [ -95.272109992692947, 30.083605266363385 ], [ -95.272652992799166, 30.084731266602635 ], [ -95.27322299292014, 30.085949267157254 ], [ -95.273652993679818, 30.086872267223846 ], [ -95.273842993959306, 30.087280267471794 ], [ -95.273867993873708, 30.087335267544255 ], [ -95.273921993329793, 30.087450266961572 ], [ -95.273962993147805, 30.087539267027889 ], [ -95.274166993228235, 30.087976267719295 ], [ -95.274439994066441, 30.088533267091208 ], [ -95.274581994070829, 30.088821267481652 ], [ -95.274767993477781, 30.089324267408269 ], [ -95.274851993398627, 30.089753267825039 ], [ -95.274987993608661, 30.091633267654341 ], [ -95.274994994202174, 30.091734268326139 ], [ -95.275215994280771, 30.094789268260687 ], [ -95.277185995087308, 30.094805268789099 ], [ -95.278288994548817, 30.094789268274059 ], [ -95.279657995853483, 30.094752268349634 ], [ -95.280852995772136, 30.094708268837842 ], [ -95.283404996640229, 30.094639268790846 ], [ -95.287051997177429, 30.094515268472225 ], [ -95.289059998058761, 30.094446268042162 ], [ -95.289172997459559, 30.094438267957891 ], [ -95.289356997338587, 30.094418267946381 ], [ -95.289540997443424, 30.094390268072711 ], [ -95.289638998289291, 30.094368267951751 ], [ -95.289835998080136, 30.094307267760083 ], [ -95.289903998210818, 30.094279267745279 ], [ -95.290733997818464, 30.093884268213397 ], [ -95.29180499814926, 30.093415267625772 ], [ -95.292013998796037, 30.093339267595351 ], [ -95.292178998835226, 30.093307267913957 ], [ -95.292305998907807, 30.093305268139702 ], [ -95.292436998561314, 30.09332326791445 ], [ -95.292569998588661, 30.093362268120121 ], [ -95.293422998574087, 30.093738267493702 ], [ -95.293818998954322, 30.093919268238615 ], [ -95.293958998839187, 30.093978268111883 ], [ -95.294099998723254, 30.094018268005637 ], [ -95.294255998664042, 30.094039267492747 ], [ -95.294620998918361, 30.094033267678775 ], [ -95.301853001435177, 30.094226267719073 ], [ -95.306939002625697, 30.094379267417739 ], [ -95.311113003496374, 30.094640267617482 ], [ -95.311620003508224, 30.094672267645215 ], [ -95.31172900388647, 30.094483267252595 ], [ -95.312282004017177, 30.094025267548041 ], [ -95.312687003520367, 30.093826267385445 ], [ -95.313044003513781, 30.093651267133041 ], [ -95.31407600449073, 30.092730266705416 ], [ -95.314747004342877, 30.091808266770695 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 91, "Tract": "48339694501", "Area_SqMi": 20.101612408964421, "total_2009": 164, "total_2010": 339, "total_2011": 287, "total_2012": 219, "total_2013": 252, "total_2014": 230, "total_2015": 175, "total_2016": 157, "total_2017": 198, "total_2018": 185, "total_2019": 209, "total_2020": 313, "age1": 177, "age2": 216, "age3": 103, "earn1": 150, "earn2": 140, "earn3": 206, "naics_s01": 5, "naics_s02": 7, "naics_s03": 16, "naics_s04": 83, "naics_s05": 18, "naics_s06": 5, "naics_s07": 31, "naics_s08": 34, "naics_s09": 0, "naics_s10": 30, "naics_s11": 11, "naics_s12": 4, "naics_s13": 0, "naics_s14": 16, "naics_s15": 0, "naics_s16": 20, "naics_s17": 34, "naics_s18": 158, "naics_s19": 24, "naics_s20": 0, "race1": 432, "race2": 34, "race3": 7, "race4": 13, "race5": 1, "race6": 9, "ethnicity1": 410, "ethnicity2": 86, "edu1": 58, "edu2": 85, "edu3": 103, "edu4": 73, "Shape_Length": 132939.95229932456, "Shape_Area": 560398549.70844889, "total_2021": 409, "total_2022": 496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.705262113090228, 30.280456290897853 ], [ -95.704916112862648, 30.280106290920056 ], [ -95.704678112656481, 30.279648291422898 ], [ -95.704150112292794, 30.27944229077367 ], [ -95.703939112153279, 30.279557291150986 ], [ -95.703280112433944, 30.279626291066194 ], [ -95.703095111897994, 30.27958029101406 ], [ -95.702672112050564, 30.279260291084135 ], [ -95.702540112103691, 30.278527290569759 ], [ -95.702355111919033, 30.2781382905467 ], [ -95.702117111866144, 30.278001290876187 ], [ -95.701880111883938, 30.278161290678987 ], [ -95.701801112106267, 30.278551291085218 ], [ -95.701458112239379, 30.278642291056482 ], [ -95.700983111954685, 30.27816229052635 ], [ -95.700138111402183, 30.278094291043146 ], [ -95.699558111689214, 30.278369290659086 ], [ -95.699162111016548, 30.278415290990388 ], [ -95.698766111459662, 30.278140291176648 ], [ -95.697526110706491, 30.278072291356331 ], [ -95.697130111290733, 30.278279290682853 ], [ -95.696682111143019, 30.278347291328874 ], [ -95.696259110863394, 30.278050291284476 ], [ -95.695309110143327, 30.277844291138756 ], [ -95.69515110979431, 30.277913291159599 ], [ -95.695125110158315, 30.27814229127096 ], [ -95.695468109885979, 30.278325291220991 ], [ -95.695468110814247, 30.278554291129428 ], [ -95.695336110741593, 30.278669291282014 ], [ -95.694333109787152, 30.278715290943669 ], [ -95.693990110004137, 30.278624291120529 ], [ -95.693409109536262, 30.278600291485049 ], [ -95.692829109674548, 30.278166291201465 ], [ -95.692459109769061, 30.278121291589073 ], [ -95.691721109232958, 30.278282290886381 ], [ -95.690612109504173, 30.277824291411974 ], [ -95.690110109153565, 30.277252291178868 ], [ -95.690005109337278, 30.276977290730699 ], [ -95.690084108554643, 30.27677129138111 ], [ -95.691113108995324, 30.27667929074207 ], [ -95.691245109304305, 30.276564290967983 ], [ -95.69127110951932, 30.276289291031162 ], [ -95.690795109246039, 30.275717290764653 ], [ -95.690769109233685, 30.275007290378976 ], [ -95.690636109112191, 30.274870290707735 ], [ -95.690241109018231, 30.274824290512459 ], [ -95.689898109030139, 30.275053290825905 ], [ -95.689528108379946, 30.274802290462006 ], [ -95.689027108575203, 30.274779290710875 ], [ -95.688763108501973, 30.274321290505902 ], [ -95.688340108683974, 30.274115290090307 ], [ -95.687786107846861, 30.274070290870895 ], [ -95.68728510825062, 30.274207290260208 ], [ -95.687100107573471, 30.274093290594013 ], [ -95.687099108086286, 30.272558290351839 ], [ -95.686861107687108, 30.272261290093319 ], [ -95.685463107879116, 30.27207829043315 ], [ -95.685093107424251, 30.271483290261497 ], [ -95.685093107222968, 30.271093290402664 ], [ -95.685541107381326, 30.270727289875033 ], [ -95.68559410714316, 30.270360290239562 ], [ -95.685065107537966, 30.269559289697572 ], [ -95.684827107257661, 30.268803289625499 ], [ -95.684880106766158, 30.268414289581756 ], [ -95.685038107472451, 30.268162289658157 ], [ -95.685381107155393, 30.268070289265005 ], [ -95.68543410759176, 30.267772289093418 ], [ -95.684985107411435, 30.267383289169928 ], [ -95.684985107303746, 30.267063289218832 ], [ -95.68543310715495, 30.26665028935178 ], [ -95.685881107786912, 30.266490288891728 ], [ -95.685881107064333, 30.266238288807045 ], [ -95.684984107073603, 30.265940289115985 ], [ -95.684720107426713, 30.266330288816654 ], [ -95.684166106569819, 30.266536289088787 ], [ -95.683876107251393, 30.266399289073654 ], [ -95.68377010658628, 30.265895288734896 ], [ -95.683876107095585, 30.265574289409749 ], [ -95.684192107079525, 30.265185288870139 ], [ -95.684297107257976, 30.264681288466072 ], [ -95.684112106881457, 30.264383288769007 ], [ -95.683796106762387, 30.264086288693637 ], [ -95.683743106778749, 30.263628288314763 ], [ -95.683848107127048, 30.263330288775318 ], [ -95.684217106313767, 30.262940288017155 ], [ -95.684243106298965, 30.262482288597241 ], [ -95.684032106913349, 30.261887288636334 ], [ -95.684005106268913, 30.261498288190698 ], [ -95.683741106692352, 30.26113128806 ], [ -95.682923106132534, 30.260880288035569 ], [ -95.682448106241893, 30.260605287727632 ], [ -95.682184105729476, 30.260239287690691 ], [ -95.681999105938161, 30.259827287844459 ], [ -95.681998106185318, 30.258521287760537 ], [ -95.681813105424638, 30.258338287191204 ], [ -95.681127105307212, 30.258132287474961 ], [ -95.680151105371138, 30.258408287445068 ], [ -95.679703104971324, 30.258431287283646 ], [ -95.679228105554301, 30.258614287652517 ], [ -95.679096105454548, 30.259026287461225 ], [ -95.678885104816544, 30.259233287685561 ], [ -95.678569105528425, 30.259347287860162 ], [ -95.678200104638904, 30.259370288023813 ], [ -95.677144104517239, 30.258684287504217 ], [ -95.676458104636708, 30.258592287501241 ], [ -95.676220104879917, 30.25840928781836 ], [ -95.676009104687651, 30.257883287536178 ], [ -95.676088104777818, 30.257447287803426 ], [ -95.676246103959201, 30.257058287180186 ], [ -95.676299104247178, 30.256691287473913 ], [ -95.67587610446293, 30.256302287551833 ], [ -95.675111104237672, 30.25591328762086 ], [ -95.674926103858255, 30.255570287534269 ], [ -95.674477104269897, 30.255204287439913 ], [ -95.673633103294549, 30.255043286990926 ], [ -95.673079103663341, 30.254494286760607 ], [ -95.672472103446097, 30.254357287509336 ], [ -95.672340103024681, 30.254128286598828 ], [ -95.672313103028159, 30.253212287125532 ], [ -95.67247110318057, 30.253074287085635 ], [ -95.673500103581404, 30.25279928650658 ], [ -95.673922104048131, 30.252203286918711 ], [ -95.674555103567386, 30.25169928647146 ], [ -95.674581103490979, 30.251493286272776 ], [ -95.674238103345473, 30.251264286482463 ], [ -95.673921103706391, 30.25124228681279 ], [ -95.673499103105698, 30.25135628673128 ], [ -95.673262102894753, 30.2512652864886 ], [ -95.672840103456764, 30.250944286150332 ], [ -95.672497102842456, 30.250944286538854 ], [ -95.672259102604002, 30.251105286710356 ], [ -95.672154102906148, 30.251380286091461 ], [ -95.67141510323016, 30.25147128681348 ], [ -95.671099102911526, 30.251357286160811 ], [ -95.670861102413809, 30.251174286590476 ], [ -95.67075510250632, 30.250647286472919 ], [ -95.670305102301711, 30.250230286159574 ], [ -95.670147102314289, 30.250116286417118 ], [ -95.669118101849037, 30.249796285905393 ], [ -95.66893310255017, 30.249956286393445 ], [ -95.668881102436032, 30.250231286832815 ], [ -95.668777102378584, 30.250900286951211 ], [ -95.66838110251129, 30.251106286171837 ], [ -95.668091102246834, 30.25094628612738 ], [ -95.667722101769385, 30.250465286402576 ], [ -95.667324101432015, 30.250232286833224 ], [ -95.667140101545854, 30.250094286704883 ], [ -95.666190101776024, 30.249935286562366 ], [ -95.665504101200966, 30.249958286359185 ], [ -95.664818101168663, 30.250096286201888 ], [ -95.664686100956615, 30.250233286284505 ], [ -95.663976101502641, 30.25071828627339 ], [ -95.663606100801545, 30.250787287109429 ], [ -95.662656100705604, 30.250421286210749 ], [ -95.662458100953586, 30.250487286940245 ], [ -95.662182100438045, 30.250581286366216 ], [ -95.662102100432875, 30.250994286857917 ], [ -95.662366100556014, 30.251314286625473 ], [ -95.662314100595935, 30.251589286634875 ], [ -95.661850100923601, 30.251643287310447 ], [ -95.661522100575638, 30.251681286894691 ], [ -95.661470100433846, 30.251795286534929 ], [ -95.662130100450682, 30.252072287384902 ], [ -95.66296310077287, 30.253362287376067 ], [ -95.663172101375764, 30.254026287004905 ], [ -95.663409101436045, 30.254416287845732 ], [ -95.66356710081601, 30.254530287163796 ], [ -95.663593101063029, 30.254691287619373 ], [ -95.664173101761563, 30.255286287167149 ], [ -95.664513101678267, 30.25602028730453 ], [ -95.664724101414478, 30.256410287474157 ], [ -95.665202101526944, 30.256825287579478 ], [ -95.665277101838953, 30.256891288149404 ], [ -95.665989102319656, 30.257189287741824 ], [ -95.666280102422448, 30.257509287871756 ], [ -95.6665431023184, 30.258746288650148 ], [ -95.666543101888379, 30.259433288103452 ], [ -95.666305101804895, 30.260006288317864 ], [ -95.666411102466398, 30.260554288953127 ], [ -95.666437102200263, 30.262020289187937 ], [ -95.666701102236573, 30.262662288732585 ], [ -95.666700101797787, 30.263555289215972 ], [ -95.666648102356049, 30.263784289466525 ], [ -95.666779102668528, 30.264815289781513 ], [ -95.666515102475373, 30.265456289598188 ], [ -95.666700101998174, 30.26616628951124 ], [ -95.666700102804867, 30.266670290198022 ], [ -95.66648910231757, 30.267220290242001 ], [ -95.666383102885604, 30.26951029012826 ], [ -95.666012102337902, 30.273610290759507 ], [ -95.665880102451737, 30.274182291409669 ], [ -95.665880102828723, 30.275007291580877 ], [ -95.666012102521421, 30.275144291738538 ], [ -95.666065103019818, 30.275556291785698 ], [ -95.665827102849363, 30.275969291628112 ], [ -95.665458102476393, 30.276243292042356 ], [ -95.664824102143783, 30.276541291550402 ], [ -95.664112102550675, 30.277526292169284 ], [ -95.663558101974161, 30.2779382919338 ], [ -95.662581101858308, 30.279404292218366 ], [ -95.662976101670452, 30.28038929304175 ], [ -95.664427102379861, 30.280326292221627 ], [ -95.664355102885182, 30.280517292771364 ], [ -95.66387110236731, 30.280742292806 ], [ -95.663772102341369, 30.280935292870666 ], [ -95.663566102226966, 30.28260329292717 ], [ -95.663518102073681, 30.282746293304967 ], [ -95.663090102176909, 30.283204293105296 ], [ -95.662844102223573, 30.283659293658893 ], [ -95.662193102015976, 30.28447829314204 ], [ -95.661924102521198, 30.28505229384033 ], [ -95.661547102344258, 30.285462294203732 ], [ -95.661166102401253, 30.285755293854628 ], [ -95.660975101985116, 30.286139293618401 ], [ -95.660770101525273, 30.286582294245143 ], [ -95.660496101456104, 30.286919294210936 ], [ -95.658498101250501, 30.288085294620526 ], [ -95.656655101356748, 30.288870294746914 ], [ -95.656359101003943, 30.289070294312097 ], [ -95.656141100957285, 30.289744294549397 ], [ -95.655878100847389, 30.292466295732467 ], [ -95.655723100776626, 30.292684295540298 ], [ -95.653559100299731, 30.293337295424799 ], [ -95.653047100180004, 30.293882296142531 ], [ -95.652459099921899, 30.29425429575392 ], [ -95.651026099566295, 30.294641296011619 ], [ -95.647874099090814, 30.298258297144312 ], [ -95.646457099265362, 30.299776297502472 ], [ -95.646139098369829, 30.300337297733684 ], [ -95.645741098370323, 30.301722297327355 ], [ -95.645623098373079, 30.302151297428296 ], [ -95.645504098621146, 30.302390297613893 ], [ -95.64529209918652, 30.30279729784667 ], [ -95.645104098215313, 30.30313429765053 ], [ -95.645025098338309, 30.303275298205044 ], [ -95.64481909856039, 30.303734297612838 ], [ -95.644567098167471, 30.304251297861274 ], [ -95.644356098429057, 30.30495229866624 ], [ -95.644296098336071, 30.305276297977507 ], [ -95.644261098824089, 30.30561329838303 ], [ -95.644079098346154, 30.307009298311552 ], [ -95.644022098193673, 30.307714299203521 ], [ -95.643973098593591, 30.30840929903859 ], [ -95.643854098529431, 30.312144300009503 ], [ -95.643870098276125, 30.312284299441064 ], [ -95.643886098651237, 30.312354299870943 ], [ -95.643908098663545, 30.312420299480138 ], [ -95.643968098990541, 30.312548299656548 ], [ -95.644006098283782, 30.312610300191004 ], [ -95.644048099198713, 30.312668299765299 ], [ -95.644147098359568, 30.312778299445423 ], [ -95.644263098842075, 30.312875299799469 ], [ -95.644324098582644, 30.312917299588783 ], [ -95.644385099145225, 30.312968300114317 ], [ -95.644411098986239, 30.312999299554054 ], [ -95.644430099289011, 30.313022299804764 ], [ -95.64447509942967, 30.313086300104491 ], [ -95.644536099383558, 30.313209300174517 ], [ -95.644557098548574, 30.31328130017911 ], [ -95.644577098701035, 30.313411300045626 ], [ -95.644577098764046, 30.313477300381965 ], [ -95.644570098813432, 30.313553300309412 ], [ -95.644554098711552, 30.313619300213492 ], [ -95.644528098837711, 30.313690300503414 ], [ -95.644500099035938, 30.313752299880225 ], [ -95.64450209927297, 30.314097299888097 ], [ -95.644503098559952, 30.314344300057648 ], [ -95.644499099014141, 30.314429300501946 ], [ -95.644471099073328, 30.314593300405555 ], [ -95.644448099003654, 30.31468130024049 ], [ -95.644419098593971, 30.314765300032782 ], [ -95.644393098955788, 30.314839299919758 ], [ -95.644329098535025, 30.314972300413828 ], [ -95.644266098977354, 30.315430300744712 ], [ -95.644375099423954, 30.316945300397055 ], [ -95.644385099527625, 30.317083300979473 ], [ -95.64437209867377, 30.317226300366631 ], [ -95.644356098873331, 30.317292301065301 ], [ -95.64432209874002, 30.317351301083651 ], [ -95.644268098831446, 30.317402301276953 ], [ -95.644144099255172, 30.31748430083476 ], [ -95.644007098787185, 30.317552301267334 ], [ -95.643865098594148, 30.31761230073861 ], [ -95.643791099268498, 30.317627300617076 ], [ -95.643717099392759, 30.317650301289159 ], [ -95.643571098847332, 30.3177073013557 ], [ -95.643489098881872, 30.317756300784133 ], [ -95.64344009845405, 30.317786301345414 ], [ -95.643381098841303, 30.317837301197745 ], [ -95.643248099295846, 30.31796130087244 ], [ -95.642923099008911, 30.318265300652229 ], [ -95.643174099205794, 30.318445301068035 ], [ -95.643434099450246, 30.318655301348272 ], [ -95.64367909887217, 30.318873301032603 ], [ -95.643837099341397, 30.31902530110856 ], [ -95.644060099325117, 30.319262301245868 ], [ -95.644333099724605, 30.319596301555585 ], [ -95.644520098769121, 30.319856301328784 ], [ -95.644694099738828, 30.320122301322286 ], [ -95.644800099826412, 30.320306301050692 ], [ -95.645533099991454, 30.321653301335349 ], [ -95.645979099897247, 30.322470302199363 ], [ -95.64604809994114, 30.322615301453087 ], [ -95.646216100121492, 30.323007301986618 ], [ -95.646314099963192, 30.323273302148291 ], [ -95.646441099948547, 30.323675302285736 ], [ -95.646541099852271, 30.324082302072835 ], [ -95.646598099591657, 30.324356302226846 ], [ -95.646642100291331, 30.324632302604044 ], [ -95.646657099798347, 30.324767302669787 ], [ -95.646752099915858, 30.326601302789552 ], [ -95.646841100245325, 30.327410302750675 ], [ -95.646878099946534, 30.327741302949679 ], [ -95.646922100016326, 30.328000303062218 ], [ -95.647027100742463, 30.328517302959419 ], [ -95.647184100865246, 30.329151302746126 ], [ -95.647405100607244, 30.329880302869061 ], [ -95.647421100549252, 30.329926303403418 ], [ -95.647533101032948, 30.330254303610605 ], [ -95.647617100182458, 30.330474303083502 ], [ -95.647900100204922, 30.331119303286663 ], [ -95.648001100333531, 30.331330303122389 ], [ -95.648213100715708, 30.331737303997055 ], [ -95.648577100800736, 30.332464303559536 ], [ -95.649056101468616, 30.333318303798084 ], [ -95.64915610108676, 30.33348330422222 ], [ -95.649372101351346, 30.333804303937608 ], [ -95.649601100861403, 30.33412130379736 ], [ -95.649762101808491, 30.334334304038048 ], [ -95.649821101165315, 30.33440330420715 ], [ -95.651664101756268, 30.336590304518197 ], [ -95.651777102085205, 30.336741304275446 ], [ -95.651827101831714, 30.33681730456129 ], [ -95.651898102327493, 30.336923304567623 ], [ -95.652044102153866, 30.337177304428664 ], [ -95.652140101936808, 30.337372304445982 ], [ -95.652222102274337, 30.337572304348157 ], [ -95.652291102014985, 30.337774304996248 ], [ -95.652351102474029, 30.33798230509414 ], [ -95.652389101676405, 30.338132305083068 ], [ -95.652456102500636, 30.338499304661237 ], [ -95.652487101733342, 30.338775304587095 ], [ -95.652499102269786, 30.339053305252836 ], [ -95.65249810210338, 30.339334304786782 ], [ -95.652479102098525, 30.339611305399064 ], [ -95.652407102611861, 30.340896304907872 ], [ -95.65238710196374, 30.34124230561795 ], [ -95.65226410213549, 30.343385305698028 ], [ -95.652239102613933, 30.343832305532601 ], [ -95.652147102234295, 30.345464306080448 ], [ -95.652133102969586, 30.345538305811157 ], [ -95.65211910211768, 30.345692306468607 ], [ -95.652118102710389, 30.345846306043981 ], [ -95.65213010219712, 30.346002306008195 ], [ -95.652170102298655, 30.346232306447558 ], [ -95.652213102651174, 30.346382306418569 ], [ -95.652266102121658, 30.346529306020216 ], [ -95.652333102315112, 30.346673306251159 ], [ -95.652424102923177, 30.346850306894108 ], [ -95.652535102228924, 30.34706630606799 ], [ -95.652620102870131, 30.347209306527187 ], [ -95.652759102808105, 30.347421306431222 ], [ -95.652911102969952, 30.347626306825379 ], [ -95.653007103005862, 30.347746307064838 ], [ -95.654669103542446, 30.349661306875834 ], [ -95.656524103350463, 30.351506307430235 ], [ -95.662260106018039, 30.357182308213154 ], [ -95.662384106111759, 30.357295308211008 ], [ -95.662772105778913, 30.357618308705316 ], [ -95.663038106191536, 30.357820307992792 ], [ -95.663252106009011, 30.357971308435179 ], [ -95.666934107386183, 30.360466308778292 ], [ -95.667042106604512, 30.36054430885488 ], [ -95.669951107743316, 30.362646308698988 ], [ -95.671672108126629, 30.363889309007536 ], [ -95.672220107997404, 30.364284309701251 ], [ -95.672263108741191, 30.36431630956319 ], [ -95.67232910847234, 30.364363309013381 ], [ -95.673085108350776, 30.364909309341545 ], [ -95.673393108943941, 30.365112309333067 ], [ -95.673528108553498, 30.365206309734749 ], [ -95.673919109338627, 30.365499309639386 ], [ -95.674172108798089, 30.365706309324413 ], [ -95.674535109344163, 30.366028309831965 ], [ -95.674877108898045, 30.366369309190269 ], [ -95.674986109369073, 30.366485309654351 ], [ -95.675272109526517, 30.366815310115864 ], [ -95.67529810898759, 30.366845309617087 ], [ -95.677287110069997, 30.369430310561494 ], [ -95.677453109709376, 30.369662310512343 ], [ -95.677655110002007, 30.369975310525458 ], [ -95.677780110470906, 30.370190310328457 ], [ -95.677952110255575, 30.370516310385138 ], [ -95.678181110596014, 30.371025310308593 ], [ -95.678270110545071, 30.371283310304534 ], [ -95.678295110341281, 30.371374310358284 ], [ -95.67833010985683, 30.371557310752188 ], [ -95.678350110283645, 30.37173931086431 ], [ -95.678355110397973, 30.371827310474529 ], [ -95.67838911009396, 30.372182310357598 ], [ -95.678399110044637, 30.372367310852066 ], [ -95.678398110446508, 30.372650310489831 ], [ -95.678381110771866, 30.372933311202765 ], [ -95.678390110327356, 30.373668310666357 ], [ -95.678394110428812, 30.373957311444904 ], [ -95.678395110915076, 30.374089311232641 ], [ -95.678387110332963, 30.374320311347578 ], [ -95.678401110607098, 30.374620311221083 ], [ -95.678422110193921, 30.37479331087594 ], [ -95.678441110687785, 30.375306311555587 ], [ -95.678422110644334, 30.379450311802668 ], [ -95.678438110301443, 30.379654312062289 ], [ -95.678450111109996, 30.379987312675279 ], [ -95.678450110594255, 30.380320312710079 ], [ -95.678437111012684, 30.380652312116045 ], [ -95.678426111256968, 30.380817312112224 ], [ -95.678356110517839, 30.381338312456862 ], [ -95.67827811097284, 30.38210631306584 ], [ -95.678241110644663, 30.382361312512579 ], [ -95.67815911139175, 30.382917312736698 ], [ -95.678063110796955, 30.383457313335224 ], [ -95.677958110649158, 30.383996313304348 ], [ -95.677897110651315, 30.384203312732232 ], [ -95.677837110605225, 30.384408312705062 ], [ -95.677692110590215, 30.384845313194152 ], [ -95.677612110549916, 30.385063313656239 ], [ -95.677438111004832, 30.385491313670837 ], [ -95.677337110594692, 30.385689313184404 ], [ -95.67725811090412, 30.385825313204858 ], [ -95.677174110777287, 30.385971313806898 ], [ -95.676996110767263, 30.386244313316588 ], [ -95.676802111183946, 30.386504313840717 ], [ -95.676696110227596, 30.386666313574768 ], [ -95.676644110394221, 30.386753314098563 ], [ -95.676598111083351, 30.386840313578599 ], [ -95.676484110825285, 30.38710931367746 ], [ -95.676420110792705, 30.3873193136411 ], [ -95.677160111276251, 30.387456313582859 ], [ -95.677936110602005, 30.387557313996879 ], [ -95.678585111197691, 30.387642313364488 ], [ -95.679580111606711, 30.387798314187037 ], [ -95.680790112147648, 30.388018313604871 ], [ -95.683050112549637, 30.388433313464152 ], [ -95.683133112818467, 30.388443313804128 ], [ -95.683373112546604, 30.388470313825486 ], [ -95.683780113056855, 30.388541314194274 ], [ -95.684523113146227, 30.388664314042806 ], [ -95.685390112591804, 30.388824313932833 ], [ -95.685792112967874, 30.388886313962349 ], [ -95.686232113228925, 30.388958313592386 ], [ -95.687078113326152, 30.38909131339696 ], [ -95.687535113628741, 30.38914631400921 ], [ -95.687969114158676, 30.389198313613296 ], [ -95.688315113403632, 30.389232314170716 ], [ -95.688660113884794, 30.389255313673381 ], [ -95.689177113803012, 30.389272313571105 ], [ -95.689352114316435, 30.389273314062873 ], [ -95.689672114474035, 30.389263313589101 ], [ -95.690259114570864, 30.389238313556035 ], [ -95.691028114718435, 30.389233313684507 ], [ -95.692104114989021, 30.389234313752436 ], [ -95.692871114561612, 30.389248313441701 ], [ -95.692996115337792, 30.38925131363607 ], [ -95.693320114852327, 30.389247313163658 ], [ -95.693380114872241, 30.389246313537594 ], [ -95.693956115109003, 30.389216313725768 ], [ -95.694240115658033, 30.389190313236103 ], [ -95.694540115322383, 30.389140313904694 ], [ -95.694932115211586, 30.389053313291512 ], [ -95.695029115715371, 30.389020313564835 ], [ -95.695125115271452, 30.388995313185799 ], [ -95.695412115216669, 30.388905313113423 ], [ -95.695978115185383, 30.388694313409147 ], [ -95.696077115928361, 30.388663313786623 ], [ -95.696471116148061, 30.388544313424408 ], [ -95.696577115588994, 30.388519313332111 ], [ -95.696574116037098, 30.388167313383356 ], [ -95.696586115556158, 30.387460313408358 ], [ -95.696599116199891, 30.387053312701273 ], [ -95.69664011600193, 30.386064312844105 ], [ -95.696652115811517, 30.385777312788342 ], [ -95.696666115695919, 30.385462313035223 ], [ -95.696667115688072, 30.385395312417938 ], [ -95.69670311566442, 30.384116312511768 ], [ -95.696698115209912, 30.383884312729268 ], [ -95.696710115839579, 30.383632312109043 ], [ -95.696727115590534, 30.38346731234601 ], [ -95.696759115829892, 30.38325631210181 ], [ -95.696765115791621, 30.383215312341665 ], [ -95.696815115475943, 30.382966312454808 ], [ -95.696858115285835, 30.382802312230304 ], [ -95.696935115774863, 30.382581312122337 ], [ -95.697018115452209, 30.382382311836398 ], [ -95.697159115496888, 30.382083311683644 ], [ -95.697184115412398, 30.382038312248262 ], [ -95.697315115470005, 30.381795312371281 ], [ -95.697433115986144, 30.381606311897443 ], [ -95.697534115795207, 30.381413311631022 ], [ -95.697626115305354, 30.381217311545708 ], [ -95.697752115455913, 30.380920312116526 ], [ -95.697858115497823, 30.380618311806309 ], [ -95.69792211601532, 30.38041331132947 ], [ -95.697973115729098, 30.380208311913705 ], [ -95.698030115875312, 30.379934311725883 ], [ -95.698063115364775, 30.379798311530994 ], [ -95.698141115546349, 30.379417311226565 ], [ -95.698195116072412, 30.379025311522252 ], [ -95.698227115290877, 30.378633310862423 ], [ -95.698245115416498, 30.377682310818646 ], [ -95.698247115189687, 30.376916311256331 ], [ -95.698248115363668, 30.376403310533068 ], [ -95.69825311588113, 30.376166311169513 ], [ -95.698243115986031, 30.375002310832869 ], [ -95.698249115820772, 30.374455310241991 ], [ -95.698259115368614, 30.374128310216111 ], [ -95.698257115768072, 30.37396631046699 ], [ -95.698244115576486, 30.373638310450101 ], [ -95.698194115799282, 30.371753309502267 ], [ -95.69816811587971, 30.370831309991857 ], [ -95.698164115605806, 30.37069530924224 ], [ -95.698158114872612, 30.370475309706634 ], [ -95.698143114975963, 30.369948309456895 ], [ -95.698130115519064, 30.369485309221929 ], [ -95.698018115558909, 30.366259308634657 ], [ -95.697925115304969, 30.363987308247854 ], [ -95.697871115156445, 30.361777307974037 ], [ -95.697869115061948, 30.361710308049258 ], [ -95.697860114455565, 30.361332307872871 ], [ -95.697839114957247, 30.360514307406543 ], [ -95.697816114873774, 30.358837306915774 ], [ -95.697786115089272, 30.356666306521841 ], [ -95.697789114835416, 30.355785306855527 ], [ -95.697746114685643, 30.353244306319301 ], [ -95.697745114593005, 30.353201306282148 ], [ -95.697707114097369, 30.348436305342918 ], [ -95.697640113645974, 30.345929305019837 ], [ -95.697623114323122, 30.3453043044255 ], [ -95.69754211419783, 30.341715303581346 ], [ -95.697507113616979, 30.340138303888992 ], [ -95.697465113226983, 30.338376303121962 ], [ -95.697408113651704, 30.335954302728108 ], [ -95.697387113090755, 30.335064302489165 ], [ -95.697368113499522, 30.33428330222446 ], [ -95.697361113634273, 30.333987302166992 ], [ -95.697376113185641, 30.333751302091088 ], [ -95.697376113478256, 30.333611301849515 ], [ -95.697363113063943, 30.333239302465785 ], [ -95.697322113437892, 30.332892301997568 ], [ -95.697273113657147, 30.332332302069084 ], [ -95.697240113115257, 30.331828301794001 ], [ -95.697217113103278, 30.331321301404117 ], [ -95.697167112600923, 30.327550300603537 ], [ -95.697159113572837, 30.326966301029152 ], [ -95.697151113253128, 30.326416301130951 ], [ -95.697135112790136, 30.325119300660063 ], [ -95.697101113059531, 30.322583300138469 ], [ -95.69709011231825, 30.321810299827376 ], [ -95.697048112505314, 30.318635299115424 ], [ -95.697039112454831, 30.317922298759232 ], [ -95.697031112514949, 30.317306299001789 ], [ -95.697021112075092, 30.316534298634416 ], [ -95.696995112284441, 30.314518298668975 ], [ -95.696984112008593, 30.313837297893883 ], [ -95.696815111953057, 30.303919296645937 ], [ -95.696749112205154, 30.301001295502083 ], [ -95.696727111886361, 30.300005295640958 ], [ -95.696731111413627, 30.299791295823351 ], [ -95.696745111933097, 30.299500295364869 ], [ -95.696771111491785, 30.299212295373895 ], [ -95.69681111182976, 30.298924295660083 ], [ -95.69685911128532, 30.298636295274775 ], [ -95.697495111265255, 30.296556294494255 ], [ -95.697846111862376, 30.295426294763061 ], [ -95.698159111689023, 30.294418294176481 ], [ -95.698780111934497, 30.292522293589268 ], [ -95.699113111963797, 30.291504293893791 ], [ -95.699378111627723, 30.290694293144774 ], [ -95.699447111642655, 30.290462293400864 ], [ -95.699546112400142, 30.290170293108773 ], [ -95.699719112402462, 30.289731293079242 ], [ -95.700361112319229, 30.288333293231744 ], [ -95.700409111747561, 30.288175293010518 ], [ -95.70042611196817, 30.288095293045103 ], [ -95.700447111924959, 30.287936293140497 ], [ -95.700472111978428, 30.287145292844464 ], [ -95.700484112535477, 30.286947292817075 ], [ -95.700527112175877, 30.286717292348673 ], [ -95.700598112021922, 30.286491292168691 ], [ -95.701304112316905, 30.284728292060151 ], [ -95.701367111656452, 30.284609292094661 ], [ -95.701474112234067, 30.284422291915057 ], [ -95.701649111764013, 30.284142291737375 ], [ -95.701840112474684, 30.283875291669819 ], [ -95.701947111982946, 30.28374029211659 ], [ -95.702253112085344, 30.283393291620065 ], [ -95.702576112454736, 30.283059291684424 ], [ -95.705262113090228, 30.280456290897853 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 92, "Tract": "48339692502", "Area_SqMi": 2.8967286191657204, "total_2009": 1250, "total_2010": 359, "total_2011": 366, "total_2012": 1545, "total_2013": 1617, "total_2014": 1510, "total_2015": 1576, "total_2016": 1552, "total_2017": 1527, "total_2018": 1549, "total_2019": 1427, "total_2020": 1432, "age1": 468, "age2": 670, "age3": 345, "earn1": 299, "earn2": 643, "earn3": 541, "naics_s01": 0, "naics_s02": 0, "naics_s03": 21, "naics_s04": 23, "naics_s05": 172, "naics_s06": 9, "naics_s07": 756, "naics_s08": 0, "naics_s09": 0, "naics_s10": 27, "naics_s11": 28, "naics_s12": 1, "naics_s13": 0, "naics_s14": 102, "naics_s15": 4, "naics_s16": 59, "naics_s17": 3, "naics_s18": 196, "naics_s19": 82, "naics_s20": 0, "race1": 1103, "race2": 270, "race3": 14, "race4": 73, "race5": 0, "race6": 23, "ethnicity1": 1020, "ethnicity2": 463, "edu1": 197, "edu2": 293, "edu3": 325, "edu4": 200, "Shape_Length": 56866.54090753803, "Shape_Area": 80755836.101759598, "total_2021": 1475, "total_2022": 1483 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.236360984767643, 30.10461427197211 ], [ -95.236414985185306, 30.104404271950006 ], [ -95.235981984921537, 30.104346271655967 ], [ -95.235650984006071, 30.104283272070219 ], [ -95.235543984096836, 30.10426227239055 ], [ -95.235439984710624, 30.104239271635226 ], [ -95.235113984310289, 30.104168272000987 ], [ -95.234734983826797, 30.104069271859494 ], [ -95.234189984232927, 30.103889271901586 ], [ -95.233097984005141, 30.103496271545847 ], [ -95.232270983567091, 30.103199271527835 ], [ -95.229747983326547, 30.102336272160667 ], [ -95.23043698311379, 30.100384270976821 ], [ -95.231279982839908, 30.097999271277587 ], [ -95.230973983263524, 30.09793327123678 ], [ -95.229118982216306, 30.097537270999158 ], [ -95.227802982256321, 30.097261271096919 ], [ -95.22759798256277, 30.097233271210133 ], [ -95.227352982370277, 30.097215270452015 ], [ -95.22711698234545, 30.09720327046449 ], [ -95.226817981998281, 30.097200270980455 ], [ -95.226401982196919, 30.097180271167922 ], [ -95.226190982180754, 30.097152271301958 ], [ -95.226010982076929, 30.097117270585997 ], [ -95.225859981729585, 30.097080271172061 ], [ -95.225770982002516, 30.097050270602299 ], [ -95.22571898121582, 30.097032270693408 ], [ -95.225501981752771, 30.096947270861314 ], [ -95.225359981311286, 30.09689227113596 ], [ -95.224472981718918, 30.096488270840659 ], [ -95.224222980947388, 30.096390270749723 ], [ -95.224008981504156, 30.096313271186538 ], [ -95.223803981005076, 30.096213270297756 ], [ -95.223623980871224, 30.096219270588847 ], [ -95.223527981279062, 30.096204270782248 ], [ -95.223480980484467, 30.096196270440426 ], [ -95.223289980939157, 30.096180270904178 ], [ -95.223100980672115, 30.096188270572267 ], [ -95.221753980050934, 30.096194270968443 ], [ -95.221597980664171, 30.096195271057955 ], [ -95.221440980636743, 30.096196270825352 ], [ -95.221074980137274, 30.09619727039161 ], [ -95.21923397960343, 30.096228271130517 ], [ -95.218724980244971, 30.096236271044091 ], [ -95.218100979939663, 30.096254270912052 ], [ -95.217685979594819, 30.096256271232992 ], [ -95.216565979643107, 30.096260270839561 ], [ -95.215769979434882, 30.096306270832585 ], [ -95.213949978332948, 30.096291271092309 ], [ -95.213437978313991, 30.096296270966079 ], [ -95.212421978096927, 30.096308271072733 ], [ -95.210797978078261, 30.096327271495117 ], [ -95.210721977779016, 30.096328271511876 ], [ -95.2088949768752, 30.096349270947041 ], [ -95.207722976468503, 30.096369271000782 ], [ -95.207441977268743, 30.096374271046436 ], [ -95.205998976140009, 30.096389271375536 ], [ -95.205644975928465, 30.096393271817693 ], [ -95.203585976316376, 30.096420271887695 ], [ -95.202585976140313, 30.096430271179802 ], [ -95.200057974992816, 30.096458271675047 ], [ -95.198300974597814, 30.096474272095588 ], [ -95.197339974448468, 30.096485271994343 ], [ -95.196113974008711, 30.096500271540659 ], [ -95.195949973607839, 30.096484272148658 ], [ -95.195792974347128, 30.096436271901499 ], [ -95.195694973731577, 30.096378271956326 ], [ -95.195596974120789, 30.096304271422735 ], [ -95.19551797425963, 30.096197272026391 ], [ -95.195465973981342, 30.09608027208343 ], [ -95.195432973388762, 30.09595027153172 ], [ -95.195419974176403, 30.095768271734467 ], [ -95.195424974112711, 30.095144271842837 ], [ -95.195415973866886, 30.094420271798143 ], [ -95.195427973351741, 30.093697271078636 ], [ -95.195440973569603, 30.092987270788363 ], [ -95.195434973701325, 30.092715271051393 ], [ -95.195430973599457, 30.092285270951479 ], [ -95.195428973819133, 30.090024270258674 ], [ -95.195446973312031, 30.088943270347166 ], [ -95.195459973493286, 30.088591270588768 ], [ -95.19547797392201, 30.088322270201953 ], [ -95.19551597325956, 30.088089270461559 ], [ -95.195609973823494, 30.087690270305661 ], [ -95.195730973476984, 30.087326270122134 ], [ -95.191704972585896, 30.090526270323284 ], [ -95.190674972064173, 30.091349270486546 ], [ -95.180803969674685, 30.099241273077265 ], [ -95.180629970005569, 30.099380272526879 ], [ -95.180533970564895, 30.099457273102782 ], [ -95.18056196971925, 30.099915272607674 ], [ -95.180942970246193, 30.100573273491772 ], [ -95.181033969992399, 30.101215272978585 ], [ -95.181465970929978, 30.101734273343425 ], [ -95.181837970407813, 30.101889273240676 ], [ -95.181928970630892, 30.102460273232055 ], [ -95.182115971049669, 30.102640273397139 ], [ -95.182172971047876, 30.102870273791151 ], [ -95.182019970592805, 30.103170273969219 ], [ -95.182025970571473, 30.103469273969825 ], [ -95.182134971095152, 30.103628274030978 ], [ -95.182037970492772, 30.104112273444827 ], [ -95.182362971153822, 30.104541274211257 ], [ -95.182863970800724, 30.104509273464483 ], [ -95.183314971439813, 30.104638274264996 ], [ -95.183576971495725, 30.104541273725179 ], [ -95.183862971466539, 30.104307273522938 ], [ -95.184633971567223, 30.104590273417703 ], [ -95.185184971136167, 30.104351274160123 ], [ -95.185375971347284, 30.104329273547151 ], [ -95.185657971377111, 30.104302274071806 ], [ -95.186052972176157, 30.104141273861366 ], [ -95.186315971840699, 30.104187274072089 ], [ -95.18638297212479, 30.10425827355208 ], [ -95.186816972131112, 30.104714273550545 ], [ -95.187317972537002, 30.104759273959747 ], [ -95.187423971906298, 30.10496527422136 ], [ -95.187713971717727, 30.105126273887379 ], [ -95.188161972733084, 30.105194274193888 ], [ -95.188504972453302, 30.105836273741247 ], [ -95.188846972885983, 30.105927273688078 ], [ -95.189506973082459, 30.106797274111287 ], [ -95.189769972854421, 30.106980273892354 ], [ -95.189822972480954, 30.107278274622669 ], [ -95.190086972980026, 30.107392274357164 ], [ -95.190955973638594, 30.10748427432873 ], [ -95.19137797330896, 30.107346274415018 ], [ -95.191561973065191, 30.107369274545277 ], [ -95.191772973556482, 30.107529273900639 ], [ -95.192105973621224, 30.107547273892575 ], [ -95.192615974082045, 30.107574274497075 ], [ -95.192800973526673, 30.107643274514025 ], [ -95.193169973599936, 30.107528274136115 ], [ -95.194091973831704, 30.107597273745043 ], [ -95.195276974198094, 30.107023273920362 ], [ -95.195276974627475, 30.106908273947941 ], [ -95.194854974348175, 30.106542273951455 ], [ -95.19485497382658, 30.106199274036037 ], [ -95.195328974128103, 30.105901273690613 ], [ -95.195723974121989, 30.105992273531786 ], [ -95.196224974440184, 30.105946274115837 ], [ -95.196540974485842, 30.105854273809083 ], [ -95.196672974010767, 30.105693274026535 ], [ -95.197014974350878, 30.10557927324993 ], [ -95.197172974473432, 30.105441273824944 ], [ -95.197383975034285, 30.105441273140404 ], [ -95.197489975142503, 30.105513273155324 ], [ -95.197620974678387, 30.105601273765856 ], [ -95.198121974743415, 30.105532273495179 ], [ -95.198226974810311, 30.105349273259929 ], [ -95.198278975234842, 30.104822273834134 ], [ -95.198621975145912, 30.104891273372164 ], [ -95.198832975524425, 30.104799273357923 ], [ -95.198858974892104, 30.104570272871733 ], [ -95.198963974830718, 30.104524273026037 ], [ -95.199543975188035, 30.104592273247579 ], [ -95.199753975609028, 30.104409273645576 ], [ -95.200070975418399, 30.104409273392665 ], [ -95.200307975873898, 30.104179272861526 ], [ -95.200781975536458, 30.103996273567837 ], [ -95.201334975897865, 30.103995273560507 ], [ -95.201518976072933, 30.103881272858324 ], [ -95.202256975727749, 30.103789273065644 ], [ -95.202414975845031, 30.103880272794733 ], [ -95.202862976049218, 30.103811272814301 ], [ -95.203099976634846, 30.1039482726489 ], [ -95.204048975891311, 30.103742273234072 ], [ -95.204206976426704, 30.103764273090658 ], [ -95.204443976707438, 30.103970272745574 ], [ -95.204575976984671, 30.104131272974701 ], [ -95.205444977188989, 30.104153273235301 ], [ -95.206129977134552, 30.103924273097022 ], [ -95.206577977144335, 30.103923272851752 ], [ -95.206762977111353, 30.103831272636874 ], [ -95.206867976983006, 30.10362527310706 ], [ -95.207341977329435, 30.103533273185764 ], [ -95.207420977016469, 30.103465272656781 ], [ -95.208079977860294, 30.103418273140282 ], [ -95.208289977083311, 30.103212273105573 ], [ -95.208447977612934, 30.103235272579074 ], [ -95.208579977484177, 30.103418272411755 ], [ -95.208975977389684, 30.103624272988704 ], [ -95.209107977645431, 30.103807273148117 ], [ -95.209449977992662, 30.103944273029455 ], [ -95.20963497811529, 30.104173273134087 ], [ -95.210082978345696, 30.103990273125767 ], [ -95.210872977593127, 30.10408127288407 ], [ -95.211109977653905, 30.103783272715408 ], [ -95.211320978122572, 30.104012272864814 ], [ -95.211742977870983, 30.104172272638284 ], [ -95.211821978583899, 30.104584273193566 ], [ -95.212138978306115, 30.104790273190222 ], [ -95.21216497886499, 30.10515727314273 ], [ -95.212665978769621, 30.105523272753668 ], [ -95.212718978875017, 30.105637272984531 ], [ -95.213166979002679, 30.105774272695704 ], [ -95.213640979387293, 30.105637273035782 ], [ -95.213904979333279, 30.105797273422329 ], [ -95.213904978479491, 30.106163273409326 ], [ -95.214221979460405, 30.10630127345955 ], [ -95.214669979275016, 30.106392273279873 ], [ -95.214564979511934, 30.106759273300153 ], [ -95.215091979656606, 30.106919273588748 ], [ -95.215170978945551, 30.107079273513822 ], [ -95.215750979473043, 30.107445273061519 ], [ -95.216014979487539, 30.107765273674595 ], [ -95.216488979562499, 30.107971273307669 ], [ -95.216726979960441, 30.108223273694275 ], [ -95.216700979867923, 30.109025273936851 ], [ -95.216863979368327, 30.109244274051054 ], [ -95.216938979427937, 30.10934627379244 ], [ -95.216938979408638, 30.109781273937966 ], [ -95.217070979467096, 30.109895274202714 ], [ -95.217044980339978, 30.110376273939771 ], [ -95.217518980212631, 30.11042227389181 ], [ -95.217624980436653, 30.110513274193568 ], [ -95.217492979765751, 30.110766273595797 ], [ -95.217545980446502, 30.111201274094885 ], [ -95.217414979761145, 30.111430274359286 ], [ -95.217388979741756, 30.111774273937602 ], [ -95.217309980067171, 30.111957273742096 ], [ -95.217415979712214, 30.112094274079404 ], [ -95.217757980552221, 30.112254273862987 ], [ -95.217810980574001, 30.112483274160383 ], [ -95.218338980715686, 30.112964274597857 ], [ -95.218707980049984, 30.113078274720849 ], [ -95.218918980879906, 30.113353274590462 ], [ -95.218918981091662, 30.11349127441003 ], [ -95.219129980294369, 30.113743274756537 ], [ -95.220157980909448, 30.11406327414505 ], [ -95.2201329806648, 30.11477327464516 ], [ -95.220579980615028, 30.114976274318945 ], [ -95.220685981008174, 30.115024274891166 ], [ -95.220896980721093, 30.115299274764833 ], [ -95.22116098134029, 30.115459274646625 ], [ -95.221108981176428, 30.115642275020491 ], [ -95.220818981086794, 30.115803274540568 ], [ -95.220396980590579, 30.115849275288681 ], [ -95.220449980719181, 30.116032275040322 ], [ -95.221135981245666, 30.116284275314893 ], [ -95.221741981422753, 30.116261274562792 ], [ -95.221846981213432, 30.116490274979313 ], [ -95.222242981294031, 30.116970275451049 ], [ -95.222928981843538, 30.117382275402608 ], [ -95.223033982048264, 30.117542274979876 ], [ -95.2234299817042, 30.117611275288446 ], [ -95.223930982217794, 30.117977275257733 ], [ -95.224050982462941, 30.117992275538629 ], [ -95.224483982418334, 30.118045275107843 ], [ -95.224554981970314, 30.118081275427151 ], [ -95.225380982776485, 30.118503275149255 ], [ -95.225538982687553, 30.118732275029672 ], [ -95.226065982223417, 30.118869275491448 ], [ -95.226698983192975, 30.119166275776539 ], [ -95.226935983077212, 30.119395275455727 ], [ -95.22709498304674, 30.119716275520592 ], [ -95.227333983385279, 30.119754275182231 ], [ -95.227674983412626, 30.119807275492995 ], [ -95.227885983213156, 30.119990275407257 ], [ -95.227964983228205, 30.120311275957473 ], [ -95.228333983473718, 30.120700275274491 ], [ -95.22843998372835, 30.120906275254949 ], [ -95.229230983829012, 30.121409275829649 ], [ -95.229441983676395, 30.121776276154151 ], [ -95.229574983449623, 30.122302275758603 ], [ -95.229917984073197, 30.122600275740151 ], [ -95.229891983514221, 30.122898276386689 ], [ -95.230207983777206, 30.123172275957366 ], [ -95.230393983894388, 30.123240275590035 ], [ -95.230454984266558, 30.123262275623141 ], [ -95.230537984344863, 30.123293276409917 ], [ -95.230708984058751, 30.123355276241611 ], [ -95.231245984024326, 30.121566275867401 ], [ -95.232011984695603, 30.118978275251862 ], [ -95.232246984005769, 30.118199275343926 ], [ -95.233184984323984, 30.115091274461385 ], [ -95.23424198439173, 30.11153727376319 ], [ -95.234821984848864, 30.109570272888629 ], [ -95.235148984956837, 30.108549272668167 ], [ -95.236360984767643, 30.10461427197211 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 93, "Tract": "48339691202", "Area_SqMi": 1.2353491692725409, "total_2009": 239, "total_2010": 239, "total_2011": 266, "total_2012": 271, "total_2013": 224, "total_2014": 253, "total_2015": 265, "total_2016": 314, "total_2017": 351, "total_2018": 195, "total_2019": 198, "total_2020": 154, "age1": 18, "age2": 97, "age3": 48, "earn1": 18, "earn2": 27, "earn3": 118, "naics_s01": 0, "naics_s02": 27, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 3, "naics_s09": 0, "naics_s10": 10, "naics_s11": 6, "naics_s12": 26, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 56, "naics_s17": 0, "naics_s18": 0, "naics_s19": 21, "naics_s20": 0, "race1": 149, "race2": 8, "race3": 1, "race4": 4, "race5": 0, "race6": 1, "ethnicity1": 127, "ethnicity2": 36, "edu1": 22, "edu2": 29, "edu3": 60, "edu4": 34, "Shape_Length": 27805.534189862094, "Shape_Area": 34439420.518084392, "total_2021": 167, "total_2022": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.504030056297466, 30.165329274795443 ], [ -95.503806055584405, 30.165078275121449 ], [ -95.503572056004614, 30.164827275112874 ], [ -95.503089055968033, 30.164341275230541 ], [ -95.502587055271889, 30.163872274670634 ], [ -95.50206905523244, 30.16341527463377 ], [ -95.501612054907042, 30.163040274908735 ], [ -95.500817055219841, 30.162354274895705 ], [ -95.500015055191582, 30.161670274401587 ], [ -95.499663054320479, 30.161419274705921 ], [ -95.499305054841827, 30.161170274044686 ], [ -95.498940054762414, 30.160927274209353 ], [ -95.498575054881528, 30.160692274093837 ], [ -95.498215054112706, 30.160469273784059 ], [ -95.498081054841691, 30.160385273855542 ], [ -95.497613053910399, 30.160149274105976 ], [ -95.497398054518627, 30.160042274406031 ], [ -95.496457054105861, 30.159589274049043 ], [ -95.495511053612489, 30.159151274436478 ], [ -95.493592052675396, 30.158254273928392 ], [ -95.492475052367453, 30.157796273916698 ], [ -95.490397052221709, 30.156831273719121 ], [ -95.488619051737743, 30.156014273482771 ], [ -95.487630051234134, 30.155579273355443 ], [ -95.486863051716497, 30.155281273592891 ], [ -95.486143051418338, 30.155023273516139 ], [ -95.485353050805045, 30.154782273620011 ], [ -95.484724050703136, 30.154623273785027 ], [ -95.48435705079703, 30.154539273167565 ], [ -95.483991050451692, 30.154480273942077 ], [ -95.483287050051302, 30.154401273875862 ], [ -95.483024050157454, 30.154391273470996 ], [ -95.482828050209974, 30.154378273294494 ], [ -95.482715050518834, 30.15437227399028 ], [ -95.482706049884868, 30.154731273517601 ], [ -95.48280604980107, 30.155828274187257 ], [ -95.482888050753786, 30.156225273988479 ], [ -95.4829830503365, 30.156539274078032 ], [ -95.483188050332075, 30.157127273841382 ], [ -95.483312050071191, 30.157674274541129 ], [ -95.48331205086383, 30.157989274701308 ], [ -95.483298049970955, 30.158303274369437 ], [ -95.483202050546424, 30.158823274498683 ], [ -95.483052050096333, 30.159261274475963 ], [ -95.482915050721687, 30.159493274445634 ], [ -95.482554050499388, 30.160151275123635 ], [ -95.482035050498709, 30.160548274813408 ], [ -95.481597050037237, 30.160904274828333 ], [ -95.480930049723924, 30.161406275055207 ], [ -95.480519050412482, 30.161706275459224 ], [ -95.479478049438825, 30.162682275193117 ], [ -95.478914049352369, 30.163242275891065 ], [ -95.478709049674137, 30.163560275257009 ], [ -95.478303049489526, 30.164342275725435 ], [ -95.477954049303506, 30.165110276174481 ], [ -95.477560049371291, 30.16559327627299 ], [ -95.476505048985217, 30.166645276585662 ], [ -95.47575504933738, 30.167448276395856 ], [ -95.475249049133126, 30.16818127695484 ], [ -95.47474304858649, 30.169054276417693 ], [ -95.474670048396931, 30.169189277179587 ], [ -95.474590048414967, 30.169336276649769 ], [ -95.475303048999038, 30.169533277178964 ], [ -95.475526048993359, 30.169594276558303 ], [ -95.476147049052713, 30.16971227710706 ], [ -95.4765350488059, 30.169769276425935 ], [ -95.476904049146, 30.169790276755677 ], [ -95.476965049234394, 30.169788276485306 ], [ -95.477291049686187, 30.169781276635128 ], [ -95.477632049515165, 30.169759277169579 ], [ -95.477989049773925, 30.16971727717786 ], [ -95.478336049990702, 30.16964927662843 ], [ -95.478579049887458, 30.169597277038388 ], [ -95.478691049636453, 30.169573277076594 ], [ -95.479060049435802, 30.16947227688874 ], [ -95.479409050344955, 30.169358276996554 ], [ -95.479549050447773, 30.169304276542398 ], [ -95.480285050195022, 30.168984276829057 ], [ -95.480553050226803, 30.168868276111123 ], [ -95.480890050709277, 30.168722276722196 ], [ -95.481113050598879, 30.168629276328559 ], [ -95.48155705050111, 30.168487276559123 ], [ -95.482081050434715, 30.168338275945711 ], [ -95.482740051112785, 30.168199276043644 ], [ -95.482915050361626, 30.168180276763547 ], [ -95.483167050579297, 30.168152276472192 ], [ -95.483666051127173, 30.168143276675451 ], [ -95.48406005145084, 30.168167276329527 ], [ -95.484786050900169, 30.16824727643138 ], [ -95.485084051871965, 30.168298276341801 ], [ -95.485456051288352, 30.168382276527826 ], [ -95.485868051352682, 30.168487276717116 ], [ -95.486198051792883, 30.168592275950729 ], [ -95.486582051276272, 30.168742276601485 ], [ -95.487152051548449, 30.169029276202608 ], [ -95.487642051629336, 30.169287276635753 ], [ -95.487885052679715, 30.169414276351805 ], [ -95.48870805282057, 30.169873276680306 ], [ -95.489822052331917, 30.170513276231254 ], [ -95.490437053292951, 30.170853276245214 ], [ -95.490719052679864, 30.171009276384503 ], [ -95.490850053151931, 30.171081276387117 ], [ -95.491139052734027, 30.171260276326972 ], [ -95.49140405269867, 30.171448276902399 ], [ -95.491661052783172, 30.171655276460815 ], [ -95.491905052856183, 30.171860276846523 ], [ -95.492147053402405, 30.172073276814594 ], [ -95.492339052955742, 30.17226727649701 ], [ -95.492649053433126, 30.17261127659172 ], [ -95.492780053931185, 30.172793276948703 ], [ -95.492909053976859, 30.173006276751547 ], [ -95.493102054010578, 30.173344276753394 ], [ -95.493382053995077, 30.173901277511327 ], [ -95.493749053581695, 30.17465327692701 ], [ -95.493973054262696, 30.175080277078237 ], [ -95.494224053947647, 30.175502277183316 ], [ -95.494473054597194, 30.175899277493013 ], [ -95.495016054750423, 30.176595277316775 ], [ -95.495516054955957, 30.177142278027656 ], [ -95.4955980541108, 30.177084277615354 ], [ -95.495771054471049, 30.176942277886912 ], [ -95.495935055033684, 30.176793277492653 ], [ -95.496096054902054, 30.176621277791195 ], [ -95.49654305497603, 30.176107277050111 ], [ -95.496688054317389, 30.175913277505511 ], [ -95.496896055160278, 30.175649277782302 ], [ -95.497059055194143, 30.175422276953217 ], [ -95.497257055027021, 30.175133276789605 ], [ -95.497436055278826, 30.174859276945291 ], [ -95.497528054499, 30.174713276740828 ], [ -95.497715055311716, 30.174399277136615 ], [ -95.497981055331849, 30.173933276970683 ], [ -95.498099054816436, 30.173710276876573 ], [ -95.498194055212096, 30.173520276718957 ], [ -95.498397055138071, 30.173088277109603 ], [ -95.498670054952839, 30.172330276936712 ], [ -95.498970054860521, 30.171461276010067 ], [ -95.499082055496586, 30.171134276240124 ], [ -95.499476054993082, 30.170019276039913 ], [ -95.499603054724119, 30.169631276364321 ], [ -95.499833054941263, 30.169029276068549 ], [ -95.499974055079548, 30.168755275992449 ], [ -95.500138055101445, 30.168515275870792 ], [ -95.500284055377691, 30.168334275529958 ], [ -95.500482055499276, 30.168108275478286 ], [ -95.500703054968909, 30.167888275694253 ], [ -95.501245055953291, 30.167407275172337 ], [ -95.501664055129794, 30.16708827532128 ], [ -95.502545055463756, 30.166433275284842 ], [ -95.504030056297466, 30.165329274795443 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 94, "Tract": "48339691801", "Area_SqMi": 1.2723565361367519, "total_2009": 909, "total_2010": 796, "total_2011": 913, "total_2012": 1111, "total_2013": 1211, "total_2014": 1347, "total_2015": 1380, "total_2016": 1308, "total_2017": 1237, "total_2018": 1214, "total_2019": 1718, "total_2020": 2111, "age1": 428, "age2": 981, "age3": 357, "earn1": 258, "earn2": 573, "earn3": 935, "naics_s01": 0, "naics_s02": 7, "naics_s03": 9, "naics_s04": 157, "naics_s05": 3, "naics_s06": 61, "naics_s07": 94, "naics_s08": 34, "naics_s09": 18, "naics_s10": 59, "naics_s11": 34, "naics_s12": 488, "naics_s13": 0, "naics_s14": 151, "naics_s15": 16, "naics_s16": 314, "naics_s17": 4, "naics_s18": 233, "naics_s19": 84, "naics_s20": 0, "race1": 1395, "race2": 231, "race3": 18, "race4": 86, "race5": 0, "race6": 36, "ethnicity1": 1246, "ethnicity2": 520, "edu1": 292, "edu2": 309, "edu3": 428, "edu4": 309, "Shape_Length": 27856.159312811484, "Shape_Area": 35471122.567517191, "total_2021": 2061, "total_2022": 1766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446500040487621, 30.143835272893881 ], [ -95.446732040119912, 30.143779272811507 ], [ -95.446245039750238, 30.141384272410885 ], [ -95.446106039801137, 30.140742271840782 ], [ -95.446089040237368, 30.140658271715076 ], [ -95.445529039646459, 30.137869271334203 ], [ -95.445257040164037, 30.136480271351772 ], [ -95.445220040043125, 30.136290271373799 ], [ -95.444873039598704, 30.134556271038196 ], [ -95.444593039509641, 30.133192270978636 ], [ -95.444165039411345, 30.130903270327288 ], [ -95.444128039057574, 30.130696270249771 ], [ -95.443811038545618, 30.128924269858992 ], [ -95.443459038983633, 30.127258269831305 ], [ -95.44340703894116, 30.127005269127562 ], [ -95.443361038565754, 30.12677726937568 ], [ -95.442999038598117, 30.12679226952562 ], [ -95.442675038602118, 30.126806269241204 ], [ -95.441505037978686, 30.126855269021732 ], [ -95.440142038204215, 30.126942269262781 ], [ -95.438929037456958, 30.127031269753591 ], [ -95.438223037173671, 30.12707826912855 ], [ -95.437419036839927, 30.127132269312714 ], [ -95.437099037687716, 30.127153269655381 ], [ -95.436746037540473, 30.12717626952956 ], [ -95.436099037060188, 30.127221269397097 ], [ -95.43529403703802, 30.127274270147566 ], [ -95.434598036205841, 30.127320270104939 ], [ -95.433689036840235, 30.127382269827617 ], [ -95.433444036770751, 30.1273952698767 ], [ -95.433374036340254, 30.127399270189027 ], [ -95.432388036276876, 30.127410269961075 ], [ -95.431361035640634, 30.127422269439034 ], [ -95.431170035552256, 30.127424270158414 ], [ -95.430346035832954, 30.127434270023706 ], [ -95.429544035709085, 30.127444270336362 ], [ -95.429368035425085, 30.127446269576083 ], [ -95.429275035244359, 30.127452270016658 ], [ -95.429226035691457, 30.127456269755235 ], [ -95.429137034930065, 30.127462269781802 ], [ -95.429065034666266, 30.127467269832863 ], [ -95.42907703529518, 30.127519269739008 ], [ -95.429491035015886, 30.129287270356741 ], [ -95.429985035420515, 30.131367271132447 ], [ -95.430975036324369, 30.135290271138143 ], [ -95.431049035692766, 30.135601271548257 ], [ -95.431156036232878, 30.136050271755064 ], [ -95.43137803618616, 30.136929271511406 ], [ -95.431415036024049, 30.137082271912377 ], [ -95.431595036262578, 30.137815272404069 ], [ -95.431762036247051, 30.138498271779227 ], [ -95.431936035958543, 30.139207272511459 ], [ -95.432203036256169, 30.140294272772646 ], [ -95.434706037580028, 30.150267274188035 ], [ -95.435117037672754, 30.15180927432689 ], [ -95.435320037516078, 30.152647274670052 ], [ -95.435635038496912, 30.153947274734229 ], [ -95.435816038239622, 30.15394127489688 ], [ -95.438622038535868, 30.153929274772867 ], [ -95.440206038799985, 30.153922274588933 ], [ -95.441784039253321, 30.153939274910158 ], [ -95.441760039094206, 30.152717274536268 ], [ -95.441730039955061, 30.151459274538432 ], [ -95.441723039243612, 30.15089127392049 ], [ -95.441672039097369, 30.146875273437868 ], [ -95.441663038753731, 30.145961273281774 ], [ -95.44165803954418, 30.145212272926507 ], [ -95.441656039599451, 30.144946272879956 ], [ -95.441658039160245, 30.144768273444562 ], [ -95.441661038708077, 30.14450727295031 ], [ -95.441667039253687, 30.143904273293632 ], [ -95.443102039633104, 30.143928272991477 ], [ -95.444985039608227, 30.14391727243844 ], [ -95.445533040073769, 30.143917272417688 ], [ -95.44615704080438, 30.143918272591332 ], [ -95.446329039847996, 30.143877272953358 ], [ -95.446500040487621, 30.143835272893881 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 95, "Tract": "48339694303", "Area_SqMi": 5.4432788113811403, "total_2009": 627, "total_2010": 540, "total_2011": 625, "total_2012": 802, "total_2013": 834, "total_2014": 905, "total_2015": 1039, "total_2016": 1408, "total_2017": 1403, "total_2018": 1526, "total_2019": 1304, "total_2020": 1452, "age1": 564, "age2": 809, "age3": 356, "earn1": 409, "earn2": 678, "earn3": 642, "naics_s01": 0, "naics_s02": 11, "naics_s03": 0, "naics_s04": 151, "naics_s05": 57, "naics_s06": 82, "naics_s07": 332, "naics_s08": 1, "naics_s09": 4, "naics_s10": 49, "naics_s11": 26, "naics_s12": 94, "naics_s13": 24, "naics_s14": 24, "naics_s15": 22, "naics_s16": 161, "naics_s17": 14, "naics_s18": 535, "naics_s19": 54, "naics_s20": 88, "race1": 1494, "race2": 122, "race3": 20, "race4": 68, "race5": 1, "race6": 24, "ethnicity1": 1314, "ethnicity2": 415, "edu1": 215, "edu2": 339, "edu3": 366, "edu4": 245, "Shape_Length": 57401.323536893098, "Shape_Area": 151749296.99651238, "total_2021": 1759, "total_2022": 1729 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.69964111714593, 30.402024316177979 ], [ -95.699642117740737, 30.401892315607267 ], [ -95.699599116936625, 30.401522316230071 ], [ -95.699525117301221, 30.400742315478112 ], [ -95.699484116924879, 30.40033431536575 ], [ -95.699433116610038, 30.400030315204852 ], [ -95.699393117006053, 30.399785315073728 ], [ -95.699334116779525, 30.399486315782084 ], [ -95.699205117237426, 30.399032315544101 ], [ -95.69893811723432, 30.398096315370157 ], [ -95.698772116954544, 30.397583314850845 ], [ -95.698613116576439, 30.397067315258976 ], [ -95.698350116865228, 30.396183314358773 ], [ -95.69817511710967, 30.395593314560479 ], [ -95.697420116377145, 30.392819314038885 ], [ -95.697405116489151, 30.39274731433936 ], [ -95.69736411648762, 30.392606313964777 ], [ -95.697336116035132, 30.392536314100724 ], [ -95.697269115785048, 30.392403313630208 ], [ -95.697187115799721, 30.39227131379041 ], [ -95.697139115700395, 30.392210314388361 ], [ -95.69703311594688, 30.392097313673816 ], [ -95.696853115622289, 30.391933313780036 ], [ -95.696802116468405, 30.391877313948065 ], [ -95.696757115981057, 30.391815314026601 ], [ -95.696722116364469, 30.391757313821124 ], [ -95.696665115718787, 30.391626313908276 ], [ -95.696646116355268, 30.391554313563905 ], [ -95.696634116042972, 30.391482314093558 ], [ -95.696628116253976, 30.391411314337425 ], [ -95.696621115871594, 30.391028314092246 ], [ -95.696597115982982, 30.389812313767226 ], [ -95.69657711548696, 30.388906313362309 ], [ -95.696577115588994, 30.388519313332111 ], [ -95.696471116148061, 30.388544313424408 ], [ -95.696077115928361, 30.388663313786623 ], [ -95.695978115185383, 30.388694313409147 ], [ -95.695412115216669, 30.388905313113423 ], [ -95.695125115271452, 30.388995313185799 ], [ -95.695029115715371, 30.389020313564835 ], [ -95.694932115211586, 30.389053313291512 ], [ -95.694540115322383, 30.389140313904694 ], [ -95.694240115658033, 30.389190313236103 ], [ -95.693956115109003, 30.389216313725768 ], [ -95.693380114872241, 30.389246313537594 ], [ -95.693320114852327, 30.389247313163658 ], [ -95.692996115337792, 30.38925131363607 ], [ -95.692871114561612, 30.389248313441701 ], [ -95.692104114989021, 30.389234313752436 ], [ -95.691028114718435, 30.389233313684507 ], [ -95.690259114570864, 30.389238313556035 ], [ -95.689672114474035, 30.389263313589101 ], [ -95.689352114316435, 30.389273314062873 ], [ -95.689177113803012, 30.389272313571105 ], [ -95.688660113884794, 30.389255313673381 ], [ -95.688315113403632, 30.389232314170716 ], [ -95.687969114158676, 30.389198313613296 ], [ -95.687535113628741, 30.38914631400921 ], [ -95.687078113326152, 30.38909131339696 ], [ -95.686232113228925, 30.388958313592386 ], [ -95.685792112967874, 30.388886313962349 ], [ -95.685390112591804, 30.388824313932833 ], [ -95.684523113146227, 30.388664314042806 ], [ -95.683780113056855, 30.388541314194274 ], [ -95.683373112546604, 30.388470313825486 ], [ -95.683133112818467, 30.388443313804128 ], [ -95.683050112549637, 30.388433313464152 ], [ -95.680790112147648, 30.388018313604871 ], [ -95.679580111606711, 30.387798314187037 ], [ -95.678585111197691, 30.387642313364488 ], [ -95.677936110602005, 30.387557313996879 ], [ -95.677160111276251, 30.387456313582859 ], [ -95.676420110792705, 30.3873193136411 ], [ -95.676261110413179, 30.387290313384742 ], [ -95.676032110216994, 30.387248314197315 ], [ -95.675435110680354, 30.387141313678299 ], [ -95.675150110639464, 30.387085313554376 ], [ -95.674780110412144, 30.387012314186926 ], [ -95.674428109990089, 30.386934313569657 ], [ -95.674131110038275, 30.386870313509611 ], [ -95.671713109259557, 30.386414313892654 ], [ -95.67141910905552, 30.386359313597186 ], [ -95.671398108860132, 30.386355313880291 ], [ -95.6709111091522, 30.386263313799365 ], [ -95.670314109441264, 30.386151313635473 ], [ -95.668636108209327, 30.385835314045309 ], [ -95.66467710778636, 30.385093313646131 ], [ -95.663832106808542, 30.384918313807958 ], [ -95.662944106753457, 30.384761313830612 ], [ -95.662632107080171, 30.384696314090519 ], [ -95.662465106933766, 30.384675313794762 ], [ -95.662215106370184, 30.384631313730615 ], [ -95.662108106799167, 30.38460731404238 ], [ -95.661841106752519, 30.384550314145269 ], [ -95.661737106873531, 30.384531313638171 ], [ -95.65682810515456, 30.383613313705983 ], [ -95.656747105578162, 30.383598313974062 ], [ -95.656379105424648, 30.383529314148529 ], [ -95.656091104872203, 30.383475313956133 ], [ -95.655628105438439, 30.383389313353835 ], [ -95.655172104928312, 30.383312313708021 ], [ -95.654543104686269, 30.383192313829255 ], [ -95.654232104580785, 30.383124313297046 ], [ -95.653610104197512, 30.38297331412895 ], [ -95.652970104214319, 30.382803313969724 ], [ -95.652945104790234, 30.382934313369255 ], [ -95.65287210395698, 30.38331831371881 ], [ -95.652822104235781, 30.38371031423905 ], [ -95.652775104412271, 30.384559313918931 ], [ -95.65280510463964, 30.384857314508633 ], [ -95.6528481050089, 30.385045314347341 ], [ -95.652912104340857, 30.385228314514254 ], [ -95.653093104826013, 30.38558231443848 ], [ -95.653323104930806, 30.385882314663927 ], [ -95.655144105725398, 30.387668314299038 ], [ -95.655431105338465, 30.387950314603533 ], [ -95.655668105021093, 30.388197315138939 ], [ -95.655789105468344, 30.388322314738719 ], [ -95.656087105917464, 30.388863314934767 ], [ -95.656347105922976, 30.389840314734933 ], [ -95.656674106159898, 30.391081315012631 ], [ -95.656713106023716, 30.391376315061294 ], [ -95.656708106213557, 30.391497315592677 ], [ -95.656701105313644, 30.391623315356874 ], [ -95.656647105627698, 30.391880315170464 ], [ -95.656551106214692, 30.392120315076895 ], [ -95.656039105951947, 30.393094315323545 ], [ -95.655731105304767, 30.393679315972381 ], [ -95.655540105623558, 30.393982315491584 ], [ -95.655272105171775, 30.394242316010857 ], [ -95.654926105324776, 30.394445316196069 ], [ -95.65454310528628, 30.394568316376848 ], [ -95.653694104716365, 30.394830316364921 ], [ -95.653616104793244, 30.394864315854683 ], [ -95.653117105106617, 30.395074315893101 ], [ -95.652696104929916, 30.39542931668953 ], [ -95.652285105303193, 30.39592831604844 ], [ -95.652152104661582, 30.39641631609085 ], [ -95.652120105076008, 30.396911316878203 ], [ -95.65219710505275, 30.39736931641335 ], [ -95.652540105109864, 30.399121317251794 ], [ -95.652830105553377, 30.400437317322965 ], [ -95.653055105277247, 30.401495317254348 ], [ -95.653106105688764, 30.401797317712596 ], [ -95.653116105232286, 30.40184231764777 ], [ -95.653242105621558, 30.402470317977386 ], [ -95.653255105124416, 30.402786317852375 ], [ -95.653157105659702, 30.403179317779323 ], [ -95.652966104967916, 30.403579317937968 ], [ -95.652655105323817, 30.403989317961827 ], [ -95.652253105616282, 30.404290317930212 ], [ -95.651755105044117, 30.404531318540815 ], [ -95.65131610499968, 30.404642317853096 ], [ -95.65086110479956, 30.404682318007218 ], [ -95.650385104956044, 30.404642317948486 ], [ -95.649695104879243, 30.40448131846539 ], [ -95.649458104464131, 30.404424318046861 ], [ -95.649065104067901, 30.404330318111338 ], [ -95.648629104511599, 30.404226317787447 ], [ -95.648343104455137, 30.404192317842487 ], [ -95.647984104049655, 30.404175317847351 ], [ -95.646555103616251, 30.404178318434315 ], [ -95.646583104223069, 30.410431319944554 ], [ -95.646160103867473, 30.410402319323264 ], [ -95.646028103692842, 30.410333319780623 ], [ -95.645922103550959, 30.410150319255351 ], [ -95.645684103905538, 30.409944319338173 ], [ -95.64513010422877, 30.409876319123196 ], [ -95.644768103473865, 30.409729319026141 ], [ -95.644709103299206, 30.412986319924933 ], [ -95.644700104003576, 30.413468319968796 ], [ -95.645373104079525, 30.413472320598956 ], [ -95.64639710418767, 30.413981320550409 ], [ -95.650491105250637, 30.417658320943225 ], [ -95.651807106205666, 30.418547321252454 ], [ -95.655908107252088, 30.420080321219441 ], [ -95.657079107498404, 30.420716321109357 ], [ -95.658546107825288, 30.420724321465421 ], [ -95.659865107730354, 30.420982320985189 ], [ -95.661328108703231, 30.421998321172744 ], [ -95.663525108617193, 30.42301732132448 ], [ -95.664551109314687, 30.423022321043121 ], [ -95.667042110220976, 30.423791321753633 ], [ -95.668069110140621, 30.423922321472876 ], [ -95.669681111164735, 30.425075321366833 ], [ -95.669895110803864, 30.425243321343764 ], [ -95.6699771111968, 30.425280322001605 ], [ -95.670041111015081, 30.425339322011233 ], [ -95.671612111644947, 30.423377321174826 ], [ -95.671780111555719, 30.423137320993039 ], [ -95.671935110735717, 30.422888320908925 ], [ -95.672080111484036, 30.422633321402373 ], [ -95.672214111595409, 30.422375320715766 ], [ -95.67239811108341, 30.421983320563076 ], [ -95.672508111549675, 30.421708320717293 ], [ -95.672590111200492, 30.421479320521438 ], [ -95.672849110994818, 30.420668320778194 ], [ -95.67332211173769, 30.419173320758585 ], [ -95.673697111323875, 30.417988319695016 ], [ -95.674055111627041, 30.416867320059861 ], [ -95.674146111639814, 30.416633319345529 ], [ -95.674255111758114, 30.416407319662643 ], [ -95.674352111269442, 30.416236319511817 ], [ -95.674418110971402, 30.416130319871659 ], [ -95.674567111065386, 30.415922319272173 ], [ -95.6746481113165, 30.415820319524396 ], [ -95.67477911141259, 30.415669319909497 ], [ -95.675013112102206, 30.415438319941185 ], [ -95.675182111708551, 30.415294319550032 ], [ -95.675357111357741, 30.415163319289604 ], [ -95.675824111873894, 30.414828319059559 ], [ -95.676067111680624, 30.414661319516075 ], [ -95.676559112138861, 30.414349318791015 ], [ -95.677746112699865, 30.413569318661892 ], [ -95.67838111270035, 30.413170318922607 ], [ -95.679751112602972, 30.412356318470035 ], [ -95.680111112286582, 30.412134318756518 ], [ -95.68055011264488, 30.411845318241603 ], [ -95.68171711276635, 30.411016317970624 ], [ -95.68185411311849, 30.410868318764123 ], [ -95.68204611317843, 30.410641317856296 ], [ -95.682099113492924, 30.410568318397338 ], [ -95.68222311361437, 30.410404318546561 ], [ -95.682431113122419, 30.410095317749565 ], [ -95.682566113528637, 30.409942318213652 ], [ -95.682742112863551, 30.409778318012851 ], [ -95.682798113355588, 30.40973331774827 ], [ -95.682913113010699, 30.409651318223901 ], [ -95.683417113294894, 30.409333318258586 ], [ -95.683682113293685, 30.409180317609675 ], [ -95.683835113763095, 30.409095318107852 ], [ -95.683976113336371, 30.40901731819574 ], [ -95.6842611141644, 30.408845317771778 ], [ -95.684542113668428, 30.408667317799967 ], [ -95.684851113409451, 30.408460317363872 ], [ -95.685074113451464, 30.408298317482984 ], [ -95.68511711410811, 30.408265317787279 ], [ -95.685180113598307, 30.408216317780909 ], [ -95.685367113782689, 30.408050317773032 ], [ -95.685382113473636, 30.408036317885504 ], [ -95.685569114004494, 30.407846317222873 ], [ -95.685687114164011, 30.407705318022543 ], [ -95.685791114204179, 30.407587317300244 ], [ -95.686807114516768, 30.406435317724338 ], [ -95.687549114376822, 30.405593317522772 ], [ -95.688018114082084, 30.40506231677071 ], [ -95.688177114156971, 30.404901316630013 ], [ -95.688261114457092, 30.404823316913241 ], [ -95.688440114022683, 30.404673316519116 ], [ -95.688532115036821, 30.40460131711783 ], [ -95.688729114741335, 30.404471317173105 ], [ -95.688849114274888, 30.404417316897202 ], [ -95.689023114434704, 30.404358316412925 ], [ -95.68929311426524, 30.404290316535171 ], [ -95.689479114645806, 30.404261317016797 ], [ -95.6897561149909, 30.404238317002882 ], [ -95.689848114716412, 30.404238316995308 ], [ -95.690902115172847, 30.404170316256341 ], [ -95.69194011536753, 30.404113316386017 ], [ -95.692316115898706, 30.404102316836422 ], [ -95.693435115693944, 30.404070316666175 ], [ -95.694393115958661, 30.40406331617562 ], [ -95.69529511661429, 30.404071316758692 ], [ -95.695515116668048, 30.404074316176217 ], [ -95.696713116906864, 30.404092316069921 ], [ -95.698131116717349, 30.404108316658142 ], [ -95.698364116545434, 30.403742316346776 ], [ -95.698474117341235, 30.403591316102805 ], [ -95.698650117022169, 30.403364316384906 ], [ -95.698784117389778, 30.403211316176481 ], [ -95.698841117499143, 30.403146316543516 ], [ -95.698975117544123, 30.40300631659564 ], [ -95.69952511760232, 30.402390315779765 ], [ -95.699557117365956, 30.402330315953574 ], [ -95.69958511690858, 30.402265315656468 ], [ -95.699611116989843, 30.402188316326008 ], [ -95.699635117187356, 30.402090315895602 ], [ -95.69964111714593, 30.402024316177979 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 96, "Tract": "48339690702", "Area_SqMi": 1.8822484117593543, "total_2009": 1099, "total_2010": 907, "total_2011": 1731, "total_2012": 1759, "total_2013": 1668, "total_2014": 1944, "total_2015": 1733, "total_2016": 1732, "total_2017": 1875, "total_2018": 2201, "total_2019": 2324, "total_2020": 2479, "age1": 612, "age2": 1744, "age3": 574, "earn1": 413, "earn2": 859, "earn3": 1658, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 10, "naics_s05": 31, "naics_s06": 14, "naics_s07": 146, "naics_s08": 0, "naics_s09": 90, "naics_s10": 483, "naics_s11": 27, "naics_s12": 439, "naics_s13": 13, "naics_s14": 14, "naics_s15": 24, "naics_s16": 1045, "naics_s17": 0, "naics_s18": 429, "naics_s19": 76, "naics_s20": 86, "race1": 2146, "race2": 489, "race3": 14, "race4": 219, "race5": 10, "race6": 52, "ethnicity1": 2270, "ethnicity2": 660, "edu1": 363, "edu2": 550, "edu3": 757, "edu4": 648, "Shape_Length": 33387.418778406209, "Shape_Area": 52473864.219497919, "total_2021": 2611, "total_2022": 2930 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.479542050928288, 30.19127228123202 ], [ -95.479950050910318, 30.19138928071245 ], [ -95.479012050283032, 30.187526280545022 ], [ -95.479486050570728, 30.184636279401744 ], [ -95.479461050985876, 30.183840280025606 ], [ -95.479274051021449, 30.183475279790645 ], [ -95.47851305039768, 30.182151279045627 ], [ -95.478424050524879, 30.181895279071441 ], [ -95.478469049989982, 30.181475278910796 ], [ -95.478883050183256, 30.177335278671578 ], [ -95.478489049971046, 30.177138278737264 ], [ -95.478029049639446, 30.176961278168619 ], [ -95.477544049569005, 30.176824277912363 ], [ -95.477004050122176, 30.176703277912889 ], [ -95.476439050057863, 30.176630278199262 ], [ -95.476246049610907, 30.176611277900889 ], [ -95.47600804985062, 30.176600278345788 ], [ -95.475551049418755, 30.176588278129444 ], [ -95.474707048668037, 30.176618278406931 ], [ -95.472511048129164, 30.176699278171604 ], [ -95.471359048368242, 30.176742278661855 ], [ -95.46914404777614, 30.176823278646012 ], [ -95.468432047814488, 30.176726278200583 ], [ -95.468065047865451, 30.176709278883948 ], [ -95.467585046993648, 30.176648278590207 ], [ -95.467062047552275, 30.17653427838761 ], [ -95.466782046606568, 30.176464278827734 ], [ -95.466608046790682, 30.176447278863002 ], [ -95.466460046852262, 30.176439278973106 ], [ -95.466346046871365, 30.176447278939833 ], [ -95.466058047376492, 30.176464278675144 ], [ -95.465761046982038, 30.176499278504842 ], [ -95.465610046726653, 30.176534278600467 ], [ -95.465569047273277, 30.176543278310003 ], [ -95.465343047065303, 30.176604278907128 ], [ -95.46508304676837, 30.176667278543476 ], [ -95.464697046225041, 30.176761278371988 ], [ -95.46440004626335, 30.176822278491137 ], [ -95.464077046158266, 30.176874279003453 ], [ -95.463215046400478, 30.176976278561209 ], [ -95.46295904621482, 30.176983278956669 ], [ -95.459773045690199, 30.177070279142931 ], [ -95.459277045237982, 30.177109279119637 ], [ -95.458891045235248, 30.177146279443093 ], [ -95.458628044758868, 30.177178279331169 ], [ -95.458398044487907, 30.177216278938122 ], [ -95.458158044397877, 30.177267279233 ], [ -95.457801044749999, 30.177348279290335 ], [ -95.457460044903712, 30.17744127889728 ], [ -95.456749044905962, 30.177656278745992 ], [ -95.456386044472751, 30.177782279003722 ], [ -95.45598504436289, 30.177898279445795 ], [ -95.455743044269838, 30.177960279547829 ], [ -95.455484044740302, 30.178011279236319 ], [ -95.45519304431815, 30.178050279457878 ], [ -95.454796043978575, 30.178086278933808 ], [ -95.454422044034175, 30.178112279595062 ], [ -95.454128044418326, 30.178127279113944 ], [ -95.453668043317023, 30.178161279451871 ], [ -95.452941044134661, 30.178208279287183 ], [ -95.452611043260916, 30.17822727955846 ], [ -95.452254043972559, 30.17824827930308 ], [ -95.451979043749517, 30.17826827950735 ], [ -95.45200104362516, 30.178493279407849 ], [ -95.452297044068388, 30.181476280498252 ], [ -95.452631044093522, 30.184750280745305 ], [ -95.452783044311033, 30.186236281307771 ], [ -95.452866044143434, 30.186986280963197 ], [ -95.452984044579381, 30.188052281855438 ], [ -95.453065043707525, 30.188777281662482 ], [ -95.453151044496337, 30.189324281381811 ], [ -95.453217043928447, 30.189692281965492 ], [ -95.453234044143272, 30.189797281532464 ], [ -95.453367044288839, 30.190590281606806 ], [ -95.453478043984134, 30.191259282110742 ], [ -95.453618044167868, 30.191955282479782 ], [ -95.453958044118281, 30.193650282529457 ], [ -95.454006044480948, 30.193889282957127 ], [ -95.454026044838642, 30.193987282854959 ], [ -95.454097044363678, 30.194339282396996 ], [ -95.454457044510235, 30.196129283433269 ], [ -95.454642045262489, 30.197059283139055 ], [ -95.454434045237733, 30.194422282863613 ], [ -95.455164045600455, 30.197626282944785 ], [ -95.45519404507489, 30.197759283385416 ], [ -95.455776045591307, 30.197757282940913 ], [ -95.45605404566183, 30.197789283111188 ], [ -95.456283045573315, 30.197824283123289 ], [ -95.457624045247528, 30.198082283549148 ], [ -95.457819045561223, 30.198108283363947 ], [ -95.458002045472909, 30.198122283221952 ], [ -95.458206045707215, 30.198109283674899 ], [ -95.458404045788924, 30.198080283312006 ], [ -95.458889045846831, 30.197976283146243 ], [ -95.459498046663825, 30.197805282894443 ], [ -95.45983904598161, 30.197709283523885 ], [ -95.460148046728079, 30.197632283375778 ], [ -95.460619046336106, 30.197556282789005 ], [ -95.462019047014337, 30.197513282941877 ], [ -95.462798047097507, 30.197457282792556 ], [ -95.463460047488397, 30.197394282585279 ], [ -95.464124047220011, 30.197307282562306 ], [ -95.466302048349206, 30.197369282788607 ], [ -95.466297047719038, 30.197271282791217 ], [ -95.466303048201297, 30.197166282975125 ], [ -95.466332047763217, 30.197046282641459 ], [ -95.466269047550782, 30.194959282362152 ], [ -95.466266047804737, 30.193763281721854 ], [ -95.466266047930731, 30.193485282216137 ], [ -95.466247047202003, 30.192337282100343 ], [ -95.469009048164665, 30.192303281902358 ], [ -95.472888049784871, 30.192255281705904 ], [ -95.473170049074511, 30.192252281155497 ], [ -95.473552049205608, 30.192248281211235 ], [ -95.473514049971143, 30.190525281347409 ], [ -95.475418049988875, 30.19051228092512 ], [ -95.476853050737006, 30.19049228105758 ], [ -95.477142050254173, 30.190610281334195 ], [ -95.477775050954904, 30.190678281073119 ], [ -95.478487050998012, 30.190906280760551 ], [ -95.479147050788072, 30.190997281331889 ], [ -95.479542050928288, 30.19127228123202 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 97, "Tract": "48339691802", "Area_SqMi": 3.6875157488161423, "total_2009": 3675, "total_2010": 4105, "total_2011": 3974, "total_2012": 3896, "total_2013": 4067, "total_2014": 4234, "total_2015": 4615, "total_2016": 4729, "total_2017": 4964, "total_2018": 5311, "total_2019": 5412, "total_2020": 4841, "age1": 1548, "age2": 2735, "age3": 1129, "earn1": 1172, "earn2": 2008, "earn3": 2232, "naics_s01": 0, "naics_s02": 50, "naics_s03": 7, "naics_s04": 206, "naics_s05": 64, "naics_s06": 164, "naics_s07": 1730, "naics_s08": 66, "naics_s09": 35, "naics_s10": 350, "naics_s11": 33, "naics_s12": 917, "naics_s13": 45, "naics_s14": 71, "naics_s15": 191, "naics_s16": 216, "naics_s17": 146, "naics_s18": 916, "naics_s19": 89, "naics_s20": 116, "race1": 4146, "race2": 800, "race3": 57, "race4": 285, "race5": 8, "race6": 116, "ethnicity1": 3985, "ethnicity2": 1427, "edu1": 709, "edu2": 1042, "edu3": 1208, "edu4": 905, "Shape_Length": 59803.488694403095, "Shape_Area": 102801627.83071442, "total_2021": 4693, "total_2022": 5412 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.453234044143272, 30.189797281532464 ], [ -95.453217043928447, 30.189692281965492 ], [ -95.453151044496337, 30.189324281381811 ], [ -95.453065043707525, 30.188777281662482 ], [ -95.452984044579381, 30.188052281855438 ], [ -95.452866044143434, 30.186986280963197 ], [ -95.452783044311033, 30.186236281307771 ], [ -95.452631044093522, 30.184750280745305 ], [ -95.452297044068388, 30.181476280498252 ], [ -95.45200104362516, 30.178493279407849 ], [ -95.451979043749517, 30.17826827950735 ], [ -95.451963043079616, 30.178078279426405 ], [ -95.451909043280537, 30.177462279373106 ], [ -95.451790042771833, 30.176082278943902 ], [ -95.451272042761971, 30.170579278014262 ], [ -95.451258042787458, 30.170429278194987 ], [ -95.451230042830062, 30.170134277580043 ], [ -95.451211043012449, 30.169936277994552 ], [ -95.45116404298993, 30.169433277734388 ], [ -95.451119043195064, 30.16895827755096 ], [ -95.450967042106683, 30.167481277646928 ], [ -95.450944042208363, 30.167258277129584 ], [ -95.450411041884223, 30.162090276059043 ], [ -95.450365042138102, 30.161731276060461 ], [ -95.450117042509234, 30.160295276200721 ], [ -95.450089041804873, 30.160130276230309 ], [ -95.449739041724541, 30.158100275130142 ], [ -95.449644042123381, 30.157617275667164 ], [ -95.449513042140779, 30.156957274872202 ], [ -95.449502041545458, 30.15690027528672 ], [ -95.449403042213262, 30.156433275374777 ], [ -95.449011041644198, 30.154590274659657 ], [ -95.448435041121385, 30.151762274490395 ], [ -95.448382041059205, 30.151500274086235 ], [ -95.447649041385517, 30.148180273590931 ], [ -95.447428040834126, 30.147119273552715 ], [ -95.447367040969212, 30.146829272886446 ], [ -95.447209040399841, 30.146075273108249 ], [ -95.446947040714562, 30.144828272509812 ], [ -95.44688704010585, 30.144540272417622 ], [ -95.446732040119912, 30.143779272811507 ], [ -95.446500040487621, 30.143835272893881 ], [ -95.446329039847996, 30.143877272953358 ], [ -95.44615704080438, 30.143918272591332 ], [ -95.445533040073769, 30.143917272417688 ], [ -95.444985039608227, 30.14391727243844 ], [ -95.443102039633104, 30.143928272991477 ], [ -95.441667039253687, 30.143904273293632 ], [ -95.441661038708077, 30.14450727295031 ], [ -95.441658039160245, 30.144768273444562 ], [ -95.441656039599451, 30.144946272879956 ], [ -95.44165803954418, 30.145212272926507 ], [ -95.441663038753731, 30.145961273281774 ], [ -95.441672039097369, 30.146875273437868 ], [ -95.441723039243612, 30.15089127392049 ], [ -95.441730039955061, 30.151459274538432 ], [ -95.441760039094206, 30.152717274536268 ], [ -95.441784039253321, 30.153939274910158 ], [ -95.440206038799985, 30.153922274588933 ], [ -95.438622038535868, 30.153929274772867 ], [ -95.435816038239622, 30.15394127489688 ], [ -95.435635038496912, 30.153947274734229 ], [ -95.435851037848934, 30.154838274909171 ], [ -95.43618203881438, 30.156204275602693 ], [ -95.43643003880031, 30.157178275901796 ], [ -95.436584038214633, 30.15778227616801 ], [ -95.436671038820265, 30.158189275794459 ], [ -95.437009039005275, 30.159534275989206 ], [ -95.437037038815703, 30.159642276542542 ], [ -95.4370580392047, 30.159727275836246 ], [ -95.437268039237836, 30.160563276405092 ], [ -95.438018038831018, 30.163540276835693 ], [ -95.438073038686198, 30.163769276729312 ], [ -95.438327039603124, 30.164835277529299 ], [ -95.438570039201593, 30.165861277676775 ], [ -95.43930603999074, 30.168841278238045 ], [ -95.439083039969361, 30.168845278421813 ], [ -95.438056039091194, 30.168863278468439 ], [ -95.438003039735051, 30.168661277820952 ], [ -95.436929039081093, 30.168656277792831 ], [ -95.436918039542363, 30.168975277834974 ], [ -95.436874039217869, 30.169405278092675 ], [ -95.436753039195708, 30.169518278310154 ], [ -95.436652039142984, 30.169566278527956 ], [ -95.436524039004325, 30.169614278421051 ], [ -95.436439039024606, 30.169566278380962 ], [ -95.436285039175672, 30.169566278270114 ], [ -95.436099039079537, 30.169593278688939 ], [ -95.435897038962565, 30.169603278388966 ], [ -95.435849038491781, 30.169603278600473 ], [ -95.435689038570132, 30.169524277992647 ], [ -95.435365039060045, 30.169663278435937 ], [ -95.43467903895899, 30.16965527827336 ], [ -95.434685038729583, 30.170252278220705 ], [ -95.433196038343965, 30.170255278142978 ], [ -95.43078703735371, 30.170289278707912 ], [ -95.428642037021575, 30.173086279110411 ], [ -95.426227036631261, 30.176627279639533 ], [ -95.424434036151411, 30.179224280569951 ], [ -95.422112036376689, 30.18234228130969 ], [ -95.413229034164786, 30.194266284364687 ], [ -95.418492035145491, 30.194266283587858 ], [ -95.418464035200969, 30.190591282927869 ], [ -95.425580037285911, 30.190544283004325 ], [ -95.43237603941661, 30.19050628288737 ], [ -95.432384038500047, 30.190878282270496 ], [ -95.432432038893666, 30.19308228323932 ], [ -95.4398540411228, 30.192975282494206 ], [ -95.445306042671149, 30.192955282828901 ], [ -95.444918041677724, 30.191402282544502 ], [ -95.444688042114464, 30.190477282543227 ], [ -95.444420041979711, 30.189395281713285 ], [ -95.44468704197935, 30.189494281761217 ], [ -95.44478804224056, 30.189534282381928 ], [ -95.445962042611086, 30.189748282167997 ], [ -95.447658042363841, 30.189670281839934 ], [ -95.447696042837293, 30.189815281823197 ], [ -95.447867042756982, 30.189819281689502 ], [ -95.448269042762689, 30.189822282187055 ], [ -95.448960042885588, 30.189830281760397 ], [ -95.449213043544873, 30.189834281991054 ], [ -95.449417043655657, 30.189842282263378 ], [ -95.450151043304672, 30.189820281544161 ], [ -95.451895044226532, 30.189810281734637 ], [ -95.452653044252727, 30.189806281615848 ], [ -95.452957044046627, 30.189801281652421 ], [ -95.453234044143272, 30.189797281532464 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 98, "Tract": "48339692604", "Area_SqMi": 6.3070829775951056, "total_2009": 452, "total_2010": 1551, "total_2011": 1871, "total_2012": 468, "total_2013": 498, "total_2014": 562, "total_2015": 577, "total_2016": 532, "total_2017": 530, "total_2018": 559, "total_2019": 609, "total_2020": 530, "age1": 257, "age2": 380, "age3": 138, "earn1": 204, "earn2": 280, "earn3": 291, "naics_s01": 0, "naics_s02": 13, "naics_s03": 0, "naics_s04": 129, "naics_s05": 31, "naics_s06": 0, "naics_s07": 188, "naics_s08": 4, "naics_s09": 0, "naics_s10": 20, "naics_s11": 6, "naics_s12": 11, "naics_s13": 1, "naics_s14": 32, "naics_s15": 3, "naics_s16": 196, "naics_s17": 0, "naics_s18": 119, "naics_s19": 22, "naics_s20": 0, "race1": 610, "race2": 127, "race3": 6, "race4": 22, "race5": 0, "race6": 10, "ethnicity1": 519, "ethnicity2": 256, "edu1": 121, "edu2": 141, "edu3": 147, "edu4": 109, "Shape_Length": 67116.53596303903, "Shape_Area": 175830678.73495176, "total_2021": 595, "total_2022": 775 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.299033002591642, 30.149143278620436 ], [ -95.299026002760428, 30.148750279250436 ], [ -95.29901600236326, 30.148199278263242 ], [ -95.298991002205597, 30.14678827882593 ], [ -95.297982002415083, 30.145706278669405 ], [ -95.295345001723263, 30.142881277786884 ], [ -95.294906001576777, 30.14236227765452 ], [ -95.293976001609352, 30.14138227747458 ], [ -95.290880000286762, 30.138058276593338 ], [ -95.290587000108445, 30.137744276806909 ], [ -95.290517000018738, 30.137669276962349 ], [ -95.290402999597248, 30.137547277100239 ], [ -95.290110000257599, 30.137233277055792 ], [ -95.288167999636983, 30.135148276072531 ], [ -95.28722999914234, 30.134142276037998 ], [ -95.286703998935621, 30.133597276526437 ], [ -95.286381998560344, 30.133252276422418 ], [ -95.285416998542459, 30.132194275643197 ], [ -95.283728998461257, 30.13039827594082 ], [ -95.28158799748401, 30.128091274851258 ], [ -95.279571996960925, 30.12593327495405 ], [ -95.27886399632844, 30.125193274682317 ], [ -95.277091995922945, 30.123309274501334 ], [ -95.273245995306453, 30.119211274121167 ], [ -95.27307199486323, 30.119017273801212 ], [ -95.272855995107221, 30.118781273731173 ], [ -95.272130994554246, 30.118013273931023 ], [ -95.27151199442882, 30.11740827347462 ], [ -95.270765994147041, 30.116625273390223 ], [ -95.270562993892298, 30.116435273233197 ], [ -95.27020699379591, 30.116120272738076 ], [ -95.270027993857639, 30.11595227349915 ], [ -95.269827993616488, 30.11577927333877 ], [ -95.269626993549394, 30.115625273377624 ], [ -95.269403993916839, 30.115445273117324 ], [ -95.26874999372825, 30.114948272686384 ], [ -95.268530993736093, 30.114791273156751 ], [ -95.268249993656525, 30.114569272564118 ], [ -95.267541993585127, 30.114052273287157 ], [ -95.267530993023698, 30.114044272522648 ], [ -95.267258993310591, 30.113845272744971 ], [ -95.267152993102201, 30.113768272384839 ], [ -95.264641992594989, 30.11190727258812 ], [ -95.263505992224921, 30.111061272244115 ], [ -95.262892992150626, 30.110596272098213 ], [ -95.262822991633968, 30.110544271913454 ], [ -95.262274991266651, 30.110139272154292 ], [ -95.261642991070289, 30.109692272333632 ], [ -95.261007991490089, 30.109253272194586 ], [ -95.260547990776232, 30.108946272279514 ], [ -95.260406991155079, 30.108852271922615 ], [ -95.259883991341226, 30.108504272100152 ], [ -95.258456990802003, 30.107576271716788 ], [ -95.256846990459863, 30.106499271965028 ], [ -95.256408990186742, 30.106206271867354 ], [ -95.256084990205593, 30.105980272000558 ], [ -95.255963989674413, 30.105902271319835 ], [ -95.255919990229785, 30.105872271606366 ], [ -95.255755989671329, 30.105759271397609 ], [ -95.255192989131061, 30.105427271140957 ], [ -95.254821989025857, 30.105224271229456 ], [ -95.254608989233972, 30.105138271367867 ], [ -95.25418998902208, 30.104981271681886 ], [ -95.253733989407024, 30.104836271412935 ], [ -95.253142988962978, 30.104712271234241 ], [ -95.252726988975795, 30.104648271336316 ], [ -95.252505989078486, 30.104623271476839 ], [ -95.252271989135494, 30.10460827156572 ], [ -95.251902988822863, 30.104601271671967 ], [ -95.250963988414199, 30.104604271060936 ], [ -95.250525988609596, 30.104606271215392 ], [ -95.24987098764484, 30.104608271645009 ], [ -95.249336988322284, 30.10461027116791 ], [ -95.248315987784054, 30.104614271840493 ], [ -95.245831987241061, 30.104633271842022 ], [ -95.245476986545057, 30.104636271335075 ], [ -95.244945986656603, 30.104641271515099 ], [ -95.244283987026279, 30.104644271409619 ], [ -95.243364986344517, 30.104638272077697 ], [ -95.242750985971227, 30.104629271423178 ], [ -95.241090985978673, 30.104599271456468 ], [ -95.240645985357077, 30.104586271873391 ], [ -95.23849998566584, 30.104548271567619 ], [ -95.237878985228448, 30.104564272230544 ], [ -95.237474985368735, 30.104528272104666 ], [ -95.237071984406981, 30.104492271633433 ], [ -95.236802984623736, 30.104456271863434 ], [ -95.236614984845687, 30.104431272171741 ], [ -95.236545985009954, 30.104422271811412 ], [ -95.236414985185306, 30.104404271950006 ], [ -95.236360984767643, 30.10461427197211 ], [ -95.235148984956837, 30.108549272668167 ], [ -95.234821984848864, 30.109570272888629 ], [ -95.23424198439173, 30.11153727376319 ], [ -95.233184984323984, 30.115091274461385 ], [ -95.232246984005769, 30.118199275343926 ], [ -95.232011984695603, 30.118978275251862 ], [ -95.231245984024326, 30.121566275867401 ], [ -95.230708984058751, 30.123355276241611 ], [ -95.230833983721027, 30.123360276071139 ], [ -95.230904984379407, 30.123362275865819 ], [ -95.230980984669671, 30.123365275907165 ], [ -95.231199984356209, 30.123373276183159 ], [ -95.231262983979775, 30.123375276315645 ], [ -95.231699984327946, 30.121712275317023 ], [ -95.232037984065627, 30.120592275342631 ], [ -95.233919984433754, 30.121010275095266 ], [ -95.2350459854391, 30.121075275454373 ], [ -95.235841984973092, 30.121352275623103 ], [ -95.236476985332004, 30.121924275340813 ], [ -95.236825985775042, 30.122542275615949 ], [ -95.237094986028453, 30.123317275567278 ], [ -95.237752985751143, 30.123161275610663 ], [ -95.238178986371778, 30.123132276103437 ], [ -95.238706986034842, 30.12314727607923 ], [ -95.238971985758852, 30.123181275713637 ], [ -95.239042986162531, 30.123191275358003 ], [ -95.23966598632741, 30.123383275753731 ], [ -95.240212986451496, 30.123681275824886 ], [ -95.240956986546976, 30.124128276057867 ], [ -95.241685986439492, 30.124374276210592 ], [ -95.241774987261607, 30.12441427575525 ], [ -95.242303987168782, 30.124529276136556 ], [ -95.242493987240636, 30.124525275438458 ], [ -95.242541987162554, 30.124524276101308 ], [ -95.242970987166842, 30.124518276233697 ], [ -95.243546987458146, 30.124469275903401 ], [ -95.244003987185408, 30.124469275378328 ], [ -95.244613987625925, 30.124503275987074 ], [ -95.245104987414777, 30.124621275716954 ], [ -95.245392988109757, 30.124706276222653 ], [ -95.245658988061649, 30.124813276226938 ], [ -95.245998987653365, 30.124978275407859 ], [ -95.246405988091553, 30.125235275900717 ], [ -95.24672298835516, 30.12549227623148 ], [ -95.247041988065163, 30.125800276163361 ], [ -95.247338988973596, 30.126012276223602 ], [ -95.246438988783837, 30.127240276633646 ], [ -95.246217988686823, 30.12758327624541 ], [ -95.246066988197512, 30.127884276138392 ], [ -95.24587798861721, 30.128295276437431 ], [ -95.245765988030271, 30.128589276497724 ], [ -95.24570798864211, 30.128807276205677 ], [ -95.245605988397088, 30.129156277145039 ], [ -95.245425987681031, 30.129621276820483 ], [ -95.245211987791421, 30.130060276728457 ], [ -95.245018987680169, 30.130412276694088 ], [ -95.244842987679775, 30.130707277165332 ], [ -95.244684988411663, 30.131045277268697 ], [ -95.244551988280108, 30.131243276795061 ], [ -95.244339988166473, 30.131552276852126 ], [ -95.244005988149951, 30.1320792771158 ], [ -95.243496987856986, 30.132960277944793 ], [ -95.244134988143415, 30.133011277924354 ], [ -95.24445198806967, 30.133377277348124 ], [ -95.245057988325215, 30.133445277567859 ], [ -95.24550698810431, 30.133674277365365 ], [ -95.24579698854113, 30.133742277496477 ], [ -95.246191988073519, 30.133627277218473 ], [ -95.246824988672657, 30.133718277928644 ], [ -95.247509989421701, 30.133740277137729 ], [ -95.247825989430737, 30.133969277870943 ], [ -95.248511988748376, 30.133991277215593 ], [ -95.248985988811725, 30.134197277715788 ], [ -95.249618989790761, 30.134059277414977 ], [ -95.250224989521499, 30.13426527779335 ], [ -95.251114990287661, 30.134854277951113 ], [ -95.251852990294481, 30.134901277617995 ], [ -95.252062990216203, 30.13519927769077 ], [ -95.252193989656263, 30.135611277962543 ], [ -95.252905990637061, 30.136001277797448 ], [ -95.253089990082728, 30.136391278218792 ], [ -95.25335299098505, 30.136551277576149 ], [ -95.2541959905477, 30.136781277720008 ], [ -95.254327990927351, 30.136942277819522 ], [ -95.254300991194938, 30.137515278552186 ], [ -95.254589990482671, 30.13790427779896 ], [ -95.254532991185329, 30.138197277999151 ], [ -95.254457991290991, 30.138591278224339 ], [ -95.254904991155499, 30.13916427844644 ], [ -95.254904990539472, 30.139267277991163 ], [ -95.254904991203404, 30.139691278702912 ], [ -95.255037991345844, 30.139807278693404 ], [ -95.255536990919438, 30.14024227843003 ], [ -95.255878991062644, 30.140311278370323 ], [ -95.25601099178752, 30.140494278541638 ], [ -95.25600999124535, 30.140861278539521 ], [ -95.256589991646962, 30.141090278574396 ], [ -95.256826991773906, 30.141342278460893 ], [ -95.256872991314111, 30.141465279192815 ], [ -95.256905991945189, 30.141549278846099 ], [ -95.25743299195949, 30.141801278956837 ], [ -95.257642992039166, 30.141824278736273 ], [ -95.257853992418831, 30.142030279108667 ], [ -95.257932991975153, 30.142328279239578 ], [ -95.25780099222564, 30.14260327940671 ], [ -95.25758999182122, 30.142809279124705 ], [ -95.257720991824243, 30.143015278659401 ], [ -95.257905992057104, 30.143107279387138 ], [ -95.258406992359284, 30.14299327930771 ], [ -95.258616992005372, 30.143154278676715 ], [ -95.258721992524556, 30.143429278899976 ], [ -95.259373991983438, 30.143880279601991 ], [ -95.259880992986794, 30.144231279071015 ], [ -95.260302993146453, 30.144392279717387 ], [ -95.260459993244226, 30.144805279035367 ], [ -95.261013993127392, 30.14528627947929 ], [ -95.261566993300818, 30.145584279692063 ], [ -95.261908993010451, 30.145905279485529 ], [ -95.262198993222484, 30.14599727911034 ], [ -95.262462993260215, 30.145883279610544 ], [ -95.262857993526197, 30.145585279284511 ], [ -95.263173993081679, 30.145700279168583 ], [ -95.263700993345239, 30.146044279734479 ], [ -95.264017993698147, 30.145953279318025 ], [ -95.264360993472906, 30.145541279512077 ], [ -95.264650993346876, 30.145541278978801 ], [ -95.264887993397608, 30.145931279535979 ], [ -95.265019993730817, 30.145954279590089 ], [ -95.26530999385264, 30.145839279802274 ], [ -95.265546993784767, 30.145610279670475 ], [ -95.265994994406569, 30.145748279493883 ], [ -95.266811994406723, 30.14579527899123 ], [ -95.267364994591716, 30.146230279793965 ], [ -95.267495994282754, 30.147009279822058 ], [ -95.267706994169117, 30.147238279953768 ], [ -95.268391994640297, 30.147399279937261 ], [ -95.268733994619211, 30.147858280009665 ], [ -95.269234995098685, 30.147950279553083 ], [ -95.269576995612823, 30.148454279462747 ], [ -95.269892995639424, 30.148706279664417 ], [ -95.269928994880956, 30.148799279679899 ], [ -95.269891994823297, 30.145881279191112 ], [ -95.271420995267306, 30.145855278868467 ], [ -95.271437995320781, 30.146450279681989 ], [ -95.277452997484843, 30.149219279699562 ], [ -95.278316997077582, 30.149199279208322 ], [ -95.278540997229953, 30.149194279763854 ], [ -95.282316998926092, 30.149159279808462 ], [ -95.282925998398127, 30.149152279085524 ], [ -95.283481999293244, 30.149149279170693 ], [ -95.284105998753972, 30.149143279603607 ], [ -95.284113998992694, 30.14925327901129 ], [ -95.28747100021657, 30.149232279479111 ], [ -95.292245001565391, 30.14919427929761 ], [ -95.295592001666904, 30.149168278871404 ], [ -95.299033002591642, 30.149143278620436 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 99, "Tract": "48339690203", "Area_SqMi": 8.7792605154475218, "total_2009": 173, "total_2010": 196, "total_2011": 183, "total_2012": 246, "total_2013": 248, "total_2014": 215, "total_2015": 257, "total_2016": 203, "total_2017": 194, "total_2018": 185, "total_2019": 188, "total_2020": 144, "age1": 39, "age2": 94, "age3": 50, "earn1": 22, "earn2": 57, "earn3": 104, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 42, "naics_s05": 21, "naics_s06": 39, "naics_s07": 26, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 10, "naics_s12": 27, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 6, "naics_s19": 3, "naics_s20": 0, "race1": 180, "race2": 2, "race3": 0, "race4": 1, "race5": 0, "race6": 0, "ethnicity1": 147, "ethnicity2": 36, "edu1": 30, "edu2": 52, "edu3": 40, "edu4": 22, "Shape_Length": 101657.50195334913, "Shape_Area": 244750757.3161341, "total_2021": 107, "total_2022": 183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.80413013584311, 30.226124276765393 ], [ -95.804111135404796, 30.222444276069403 ], [ -95.804100135498246, 30.220295275933854 ], [ -95.804054135189787, 30.211407273447502 ], [ -95.804035135069952, 30.207728273156661 ], [ -95.804025134742531, 30.205978273112358 ], [ -95.803996134471191, 30.200730271653754 ], [ -95.803987134485197, 30.198981271161124 ], [ -95.803986134488341, 30.198838271676927 ], [ -95.803980134328427, 30.197857271397197 ], [ -95.803962134069678, 30.194488270373334 ], [ -95.803956133509416, 30.19336527047242 ], [ -95.803968133502451, 30.192599269654494 ], [ -95.803999133894408, 30.190624269882917 ], [ -95.804002134324818, 30.190302269628109 ], [ -95.804009133728641, 30.189764269178664 ], [ -95.804007133754808, 30.189537269368287 ], [ -95.803984133943757, 30.187369268779836 ], [ -95.803915133774638, 30.180865267857961 ], [ -95.803895133658344, 30.178909267434172 ], [ -95.803894133647617, 30.178774266873713 ], [ -95.803893133769549, 30.178697266932193 ], [ -95.803547133502605, 30.178612266995511 ], [ -95.803258132797652, 30.178357266889538 ], [ -95.803101132799171, 30.177941267224313 ], [ -95.802837133160295, 30.177663266617909 ], [ -95.802602132622553, 30.177155266588993 ], [ -95.80255213337297, 30.176763266419719 ], [ -95.802632133079769, 30.17651026682762 ], [ -95.803247133340435, 30.175707266285055 ], [ -95.803328132573881, 30.175431266930957 ], [ -95.80320113292926, 30.174579266124013 ], [ -95.802912133281552, 30.174140266030125 ], [ -95.802384133203461, 30.173722266046685 ], [ -95.801591132891147, 30.173395265866592 ], [ -95.800239131779023, 30.173341265984696 ], [ -95.799685132490424, 30.172969265856647 ], [ -95.799502132019427, 30.17266826571085 ], [ -95.799478131699615, 30.172185265802245 ], [ -95.800091131814511, 30.171590266145568 ], [ -95.800383132303907, 30.171477265889525 ], [ -95.800650132687778, 30.171248265457546 ], [ -95.80062713187678, 30.170649265989248 ], [ -95.800393131533355, 30.169888265103758 ], [ -95.799919131840909, 30.169378265080432 ], [ -95.798940131445264, 30.16914226572349 ], [ -95.798677131380913, 30.168956264957114 ], [ -95.798466131898635, 30.168679265740394 ], [ -95.798467131921925, 30.168425265268169 ], [ -95.798362131233574, 30.168287265138755 ], [ -95.797490131358344, 30.167774265059808 ], [ -95.797360131465567, 30.167475265091348 ], [ -95.796834130734666, 30.16673426480304 ], [ -95.796862130966275, 30.166504264749467 ], [ -95.797103131193708, 30.166091264531566 ], [ -95.79784813096046, 30.165704264698341 ], [ -95.797955131321373, 30.165497264283552 ], [ -95.797932130805492, 30.165037264316943 ], [ -95.797326131460537, 30.164296264502326 ], [ -95.797302131369946, 30.163996264644052 ], [ -95.797648131314887, 30.16374626409252 ], [ -95.797835131295329, 30.163378264464381 ], [ -95.797864131523269, 30.163056264497005 ], [ -95.797786131337034, 30.162779264303424 ], [ -95.79715413050981, 30.162153264359095 ], [ -95.797155130815142, 30.161969264089628 ], [ -95.797742130510798, 30.161328263662 ], [ -95.797797130826225, 30.161052263549063 ], [ -95.797614130393043, 30.16052226386163 ], [ -95.79761913037801, 30.159600263802325 ], [ -95.797093130975099, 30.159113263138217 ], [ -95.796883130487629, 30.158813263001214 ], [ -95.796858130227136, 30.158537263479872 ], [ -95.796993131051551, 30.158215263272993 ], [ -95.796995130423056, 30.157801263441133 ], [ -95.796863130295648, 30.15766126301655 ], [ -95.796838130740724, 30.157384263459917 ], [ -95.796972130209966, 30.157247262782317 ], [ -95.796973130690972, 30.156948263214613 ], [ -95.796869130962591, 30.156786263418208 ], [ -95.797086131011994, 30.155913262542313 ], [ -95.797062130112351, 30.155383262639983 ], [ -95.796958130074771, 30.155105262934239 ], [ -95.796695130568395, 30.154804262676784 ], [ -95.795797130557517, 30.154246262443486 ], [ -95.795033130209362, 30.153575262123457 ], [ -95.794928129955167, 30.153367262223984 ], [ -95.794880130064513, 30.152744262283658 ], [ -95.794961129786955, 30.152377262250809 ], [ -95.794886129366432, 30.15177726213134 ], [ -95.793910129929415, 30.150942262113631 ], [ -95.793487129560702, 30.150802261636485 ], [ -95.792611128799919, 30.151004261554014 ], [ -95.792479128776549, 30.150957261796545 ], [ -95.792375129025572, 30.150634262343377 ], [ -95.792138129261858, 30.150425262264946 ], [ -95.791372128531989, 30.150098261687024 ], [ -95.791213129189444, 30.150098261637904 ], [ -95.790946128222288, 30.150303261822774 ], [ -95.790838128421044, 30.150510262027506 ], [ -95.790121128712187, 30.150874261662441 ], [ -95.789854128011513, 30.151241262403417 ], [ -95.78948212871218, 30.151330262075319 ], [ -95.789218128011612, 30.151214261685769 ], [ -95.78866112828544, 30.151302262380586 ], [ -95.787974128283054, 30.150907262120711 ], [ -95.787577127774853, 30.150858262228219 ], [ -95.787339127594862, 30.150949262463222 ], [ -95.786805127200864, 30.151429262254361 ], [ -95.786010127142504, 30.151471262323135 ], [ -95.785452127571787, 30.151790262741702 ], [ -95.784868126784275, 30.151855262521401 ], [ -95.784657127592894, 30.151670261982645 ], [ -95.78455612729816, 30.150909261835782 ], [ -95.784371126591751, 30.150793261832305 ], [ -95.783549126897356, 30.15094926220187 ], [ -95.783390127027587, 30.150856262370294 ], [ -95.783238126637144, 30.149888262162463 ], [ -95.782920126921496, 30.149794262015018 ], [ -95.782683126226971, 30.149585261827777 ], [ -95.782633126098887, 30.149009261750376 ], [ -95.781999125912847, 30.148822262024876 ], [ -95.78139112625432, 30.148518261716827 ], [ -95.781127126605128, 30.148470262034643 ], [ -95.780860125974755, 30.148745262357085 ], [ -95.780804126375187, 30.149275262150219 ], [ -95.780562126462144, 30.149779262171638 ], [ -95.78026912552221, 30.149962262035981 ], [ -95.779872125734798, 30.14998226253066 ], [ -95.779581126232245, 30.149865261794805 ], [ -95.779397125680447, 30.149634261772498 ], [ -95.779320125697907, 30.149196262275971 ], [ -95.779428126068311, 30.148943261756852 ], [ -95.779349125719691, 30.148759261560102 ], [ -95.778979125146918, 30.148664262408374 ], [ -95.778688125146445, 30.148479262288848 ], [ -95.778692125819589, 30.147903261528906 ], [ -95.778327125291966, 30.147003261904477 ], [ -95.777559125324501, 30.146929261589257 ], [ -95.776581124898271, 30.146555261240163 ], [ -95.775868124429437, 30.14622826130098 ], [ -95.775523124511238, 30.146294261217978 ], [ -95.773111124251898, 30.146302261323115 ], [ -95.771688123426358, 30.146459261753506 ], [ -95.77131112386104, 30.146502261855684 ], [ -95.770626123497337, 30.146754261703993 ], [ -95.768754123371039, 30.14705026228151 ], [ -95.767648122238242, 30.146729261920701 ], [ -95.766489122191103, 30.1465222620334 ], [ -95.766120122459881, 30.146292262204483 ], [ -95.765751121903037, 30.145903261632082 ], [ -95.76538312152843, 30.145765262244606 ], [ -95.764829121770703, 30.145833262276604 ], [ -95.764434121462642, 30.145604262186694 ], [ -95.76388112166444, 30.145466261793651 ], [ -95.763670121744866, 30.145329261818393 ], [ -95.763513121700541, 30.144367261571333 ], [ -95.763144121133138, 30.144092261786319 ], [ -95.763118121650564, 30.143931261891712 ], [ -95.763303121686036, 30.143656261885667 ], [ -95.76325012110479, 30.14354226132733 ], [ -95.762961121559172, 30.143450261587351 ], [ -95.76275012137603, 30.143221261333338 ], [ -95.762408121503626, 30.143106261825785 ], [ -95.762135121135159, 30.14313026128962 ], [ -95.76164312100255, 30.143174261051438 ], [ -95.76095812048888, 30.143013261461913 ], [ -95.760886120779205, 30.143060261648827 ], [ -95.760747120912157, 30.14315126158472 ], [ -95.759983120615601, 30.143127261495785 ], [ -95.759895119936317, 30.143203261711491 ], [ -95.759634120784611, 30.143072261446388 ], [ -95.7590801203079, 30.143086261414727 ], [ -95.758808119805749, 30.143336261682336 ], [ -95.758808120707869, 30.143700262075793 ], [ -95.758981120511478, 30.143942261884693 ], [ -95.758954120599341, 30.144271262219824 ], [ -95.758506119658037, 30.144500261934461 ], [ -95.758269119674949, 30.144683261966343 ], [ -95.758084119594741, 30.145049262133846 ], [ -95.757741119511351, 30.145209262444546 ], [ -95.757346120041944, 30.145232262218684 ], [ -95.757109119924309, 30.145072262037807 ], [ -95.757241119694982, 30.144476262304693 ], [ -95.75689911988313, 30.144087261639498 ], [ -95.756214119059109, 30.143880262028159 ], [ -95.755477119816959, 30.143811261784975 ], [ -95.755292119262691, 30.143719261947062 ], [ -95.755319118907181, 30.143536261326531 ], [ -95.755477119028228, 30.14333026148504 ], [ -95.755952119788063, 30.14314726157119 ], [ -95.756031119930213, 30.143032261729843 ], [ -95.75605811947149, 30.142071261229226 ], [ -95.756001118893153, 30.14202826154154 ], [ -95.755681119471106, 30.141820261102463 ], [ -95.755550119186481, 30.141773260996992 ], [ -95.755347119362284, 30.141772261732875 ], [ -95.755083119505755, 30.141864261421354 ], [ -95.75501911932254, 30.141956261453949 ], [ -95.754767119464461, 30.142321261442337 ], [ -95.754371118935808, 30.142527261881369 ], [ -95.754160118617563, 30.142733261423601 ], [ -95.754133119291851, 30.143122261520116 ], [ -95.753738118924176, 30.143603261724664 ], [ -95.753658119309563, 30.143878261589482 ], [ -95.752885118407193, 30.144140262327536 ], [ -95.752859118666422, 30.147918262530133 ], [ -95.75285111931386, 30.148946263313636 ], [ -95.752968118578195, 30.148870262706449 ], [ -95.753626118974339, 30.148939262810288 ], [ -95.753837118773561, 30.14907726306328 ], [ -95.75386211925489, 30.150039262983636 ], [ -95.753783119004794, 30.150565263122544 ], [ -95.753835118871706, 30.150772263204779 ], [ -95.754335119125969, 30.151184263025876 ], [ -95.754546119190408, 30.151528263505945 ], [ -95.755336119218185, 30.151780263712176 ], [ -95.755468120167862, 30.151872263489672 ], [ -95.755599119752645, 30.152307263435588 ], [ -95.756178119659651, 30.152812263990377 ], [ -95.756257120031123, 30.153499263335004 ], [ -95.756467119848878, 30.153820264035666 ], [ -95.756625119770774, 30.15434626383125 ], [ -95.75683512028688, 30.154621263743046 ], [ -95.758021120245985, 30.155058264134691 ], [ -95.758100120196119, 30.155172263686442 ], [ -95.758046120133287, 30.155653264263751 ], [ -95.758178120925095, 30.155791263779669 ], [ -95.758758120620811, 30.155699263940967 ], [ -95.759443120513978, 30.155746263715479 ], [ -95.759680121247087, 30.155838263766764 ], [ -95.760075121231395, 30.156136264416961 ], [ -95.760312121656256, 30.156502264251614 ], [ -95.761024121768216, 30.15654926430296 ], [ -95.761234121770428, 30.156709264005443 ], [ -95.761313121778642, 30.157213263919683 ], [ -95.76155012145513, 30.157419264040133 ], [ -95.76170812200894, 30.15744226396642 ], [ -95.762077121159379, 30.157282264599203 ], [ -95.762314121711796, 30.157305264405615 ], [ -95.762420121684698, 30.157397264673222 ], [ -95.76294712237538, 30.157466264374129 ], [ -95.763315121600954, 30.157672264265226 ], [ -95.763711122092531, 30.157604264615124 ], [ -95.764423122713765, 30.156826263871391 ], [ -95.764819122750566, 30.156574264020882 ], [ -95.765056122245738, 30.156574264455955 ], [ -95.76539812227341, 30.156964264069941 ], [ -95.76531812294229, 30.157628264663202 ], [ -95.765424122190922, 30.157811264148783 ], [ -95.766056123089555, 30.157858264229194 ], [ -95.766319123039779, 30.158293264589414 ], [ -95.766477122412496, 30.158408263992758 ], [ -95.76726812330206, 30.158271264304325 ], [ -95.76750512264384, 30.158477264321824 ], [ -95.767663122875774, 30.15884426431731 ], [ -95.767873123171043, 30.159004264885901 ], [ -95.768163123350959, 30.159096264636506 ], [ -95.76861112388282, 30.158959264355047 ], [ -95.769165123981253, 30.158616264573773 ], [ -95.769613123768664, 30.158616264209311 ], [ -95.769877124178862, 30.158891264457452 ], [ -95.770034124212231, 30.159212264625317 ], [ -95.770060124323436, 30.159487264193061 ], [ -95.770613123900077, 30.159899264265555 ], [ -95.770718124194545, 30.160380264600754 ], [ -95.770929123776881, 30.160587264847752 ], [ -95.771193124107697, 30.16070126465333 ], [ -95.771694124224794, 30.160495264647196 ], [ -95.772010123820792, 30.160221264894222 ], [ -95.772300124249369, 30.160290264652989 ], [ -95.772958124655162, 30.160909264447366 ], [ -95.773195124583296, 30.1610002643543 ], [ -95.774355124779461, 30.160955264207136 ], [ -95.774803124815321, 30.161139264227799 ], [ -95.775160125402962, 30.161497264504305 ], [ -95.775672125112081, 30.16201026493253 ], [ -95.77651512569085, 30.162308264687223 ], [ -95.776936125700246, 30.16265226459571 ], [ -95.777042125738717, 30.162949264966286 ], [ -95.777041125724452, 30.163705264722733 ], [ -95.777331125617749, 30.164095265332918 ], [ -95.777146125880847, 30.16439226511838 ], [ -95.776592125993943, 30.164987265431815 ], [ -95.776486125412887, 30.165193265847311 ], [ -95.776538125495193, 30.165606265733683 ], [ -95.776934125468102, 30.166041265418663 ], [ -95.777434126213919, 30.166339265779442 ], [ -95.77782912657743, 30.166729265989272 ], [ -95.777881125796654, 30.167462265829641 ], [ -95.777952126319221, 30.167577265607694 ], [ -95.778065125771775, 30.167759266092258 ], [ -95.778355126748778, 30.167897265790504 ], [ -95.778645126836452, 30.168172266305429 ], [ -95.778776126112518, 30.168424265793767 ], [ -95.778723126289194, 30.169477265851548 ], [ -95.779013126320891, 30.169707266547306 ], [ -95.779645126989919, 30.170028266546463 ], [ -95.779855127193727, 30.170348266723003 ], [ -95.780541126773926, 30.170578266684544 ], [ -95.780725127275105, 30.170807266007426 ], [ -95.78040812678627, 30.171631266150264 ], [ -95.780408126780699, 30.172204266977637 ], [ -95.780671126665183, 30.172502266614444 ], [ -95.78156712711268, 30.172800267118372 ], [ -95.781909127273863, 30.173098266542624 ], [ -95.782199127929601, 30.173693267034711 ], [ -95.782330127518151, 30.174747267377754 ], [ -95.782435127755662, 30.174839267066201 ], [ -95.783041127534972, 30.174862266955959 ], [ -95.78326912794364, 30.174992267140258 ], [ -95.783229128003214, 30.175041267592178 ], [ -95.783015127662935, 30.175294267247835 ], [ -95.782684127937429, 30.175710267335539 ], [ -95.78254212814997, 30.175918267162384 ], [ -95.782381127748494, 30.176220267730876 ], [ -95.782303128016594, 30.176410267727491 ], [ -95.782217127977674, 30.176703267214997 ], [ -95.782155128061433, 30.177059267948682 ], [ -95.781985128254121, 30.178562268086917 ], [ -95.781912127978799, 30.179306267989531 ], [ -95.781864127281906, 30.179646267914059 ], [ -95.781710127269122, 30.180427268149575 ], [ -95.781572128260876, 30.18112726843227 ], [ -95.781559128180504, 30.181283268659829 ], [ -95.781564127255777, 30.181435268332876 ], [ -95.781588127361829, 30.181592268901824 ], [ -95.78160712776922, 30.181670268331281 ], [ -95.781865127804252, 30.182407268831334 ], [ -95.781917127990567, 30.182576268959892 ], [ -95.781962128182798, 30.182699268467502 ], [ -95.781988127624018, 30.182782268630131 ], [ -95.782013128416807, 30.182892268517421 ], [ -95.782057128409463, 30.183174268679608 ], [ -95.782093127834628, 30.183527269282489 ], [ -95.782151128025404, 30.184364268724661 ], [ -95.78218712834466, 30.184616268855855 ], [ -95.782207128004458, 30.18469626921852 ], [ -95.782291128537651, 30.184951269626882 ], [ -95.782335128120906, 30.185136269676942 ], [ -95.782378127735925, 30.185264269299477 ], [ -95.782405128091312, 30.185366269719715 ], [ -95.782506128575577, 30.18567126903433 ], [ -95.782524128373211, 30.185730269535792 ], [ -95.782596127851519, 30.185968269508045 ], [ -95.782792128820745, 30.186390269461572 ], [ -95.783179127927738, 30.18714527002259 ], [ -95.783215128883484, 30.187226269841972 ], [ -95.783291128296753, 30.187464270078113 ], [ -95.78331012865398, 30.187553269758151 ], [ -95.783407128760757, 30.188113269440287 ], [ -95.783425128738358, 30.188254269887477 ], [ -95.783507128163336, 30.188627270158626 ], [ -95.783576128541, 30.188822270326046 ], [ -95.783741128909085, 30.189216270057599 ], [ -95.783802128862675, 30.189341269805698 ], [ -95.783906128678765, 30.189520270172601 ], [ -95.784065128731285, 30.1897082697994 ], [ -95.78418912934157, 30.189802269728045 ], [ -95.78424012834202, 30.189837270130617 ], [ -95.784548129099392, 30.190047270420543 ], [ -95.784772128663406, 30.190181270583171 ], [ -95.784956129304945, 30.190310270160357 ], [ -95.785063129084435, 30.190406269919798 ], [ -95.785259129401126, 30.190611270230455 ], [ -95.785481129699775, 30.190886270610608 ], [ -95.785600129654966, 30.19105427051905 ], [ -95.785772129299062, 30.191226270388075 ], [ -95.784946129482748, 30.191839270935173 ], [ -95.78319412893201, 30.193120271158236 ], [ -95.780774128333022, 30.194930271052538 ], [ -95.778157127893081, 30.196850272167708 ], [ -95.777732127316156, 30.197170271439944 ], [ -95.776918127158339, 30.197770272049599 ], [ -95.776572127169601, 30.198034271660102 ], [ -95.775356127137371, 30.198948271863056 ], [ -95.7738051265964, 30.200102272611524 ], [ -95.773490126748356, 30.200331272737408 ], [ -95.773427127098572, 30.200376272402298 ], [ -95.773197126437665, 30.200547272893612 ], [ -95.772940126004471, 30.20072727275431 ], [ -95.772716126501649, 30.20087127281559 ], [ -95.77218812644557, 30.201147273249415 ], [ -95.771868126576607, 30.20129027295738 ], [ -95.771700126552304, 30.201358272781288 ], [ -95.771338125860368, 30.201478273348339 ], [ -95.770671126393964, 30.201720272648366 ], [ -95.770462126132273, 30.201796272883819 ], [ -95.769016125401095, 30.202300273071256 ], [ -95.767879124758096, 30.202705273242007 ], [ -95.767448125339712, 30.202868273774904 ], [ -95.766233124937955, 30.20329227312596 ], [ -95.7655891248573, 30.203522273432089 ], [ -95.764289123897157, 30.203988273685813 ], [ -95.763464123771399, 30.204288273898594 ], [ -95.760106123036991, 30.205442273881051 ], [ -95.760039123460999, 30.205467274184333 ], [ -95.759578122886424, 30.20563627445091 ], [ -95.7596211233882, 30.206154274618022 ], [ -95.759559123681782, 30.206507274074035 ], [ -95.759559123275423, 30.206696274249413 ], [ -95.759723123318722, 30.207032274696274 ], [ -95.760033123810814, 30.207336274442866 ], [ -95.760229123950666, 30.207429274425181 ], [ -95.760697124083549, 30.207654274611816 ], [ -95.760893123241374, 30.207760274968273 ], [ -95.760996124187358, 30.207988274964613 ], [ -95.760993123771669, 30.208197274769002 ], [ -95.761082123682101, 30.208379274476762 ], [ -95.76123212338976, 30.208505274577675 ], [ -95.761488123752144, 30.208611274550346 ], [ -95.761984123646826, 30.208719274902901 ], [ -95.762496124284667, 30.208874274446512 ], [ -95.763100124428959, 30.209020275021572 ], [ -95.763399124612619, 30.209301274933527 ], [ -95.763714124075264, 30.209429274489946 ], [ -95.76418212448219, 30.209646274519784 ], [ -95.764485124622013, 30.20984127475942 ], [ -95.764940125082774, 30.2100142745076 ], [ -95.765152125158096, 30.210244274717351 ], [ -95.76534912546272, 30.210584274681459 ], [ -95.765559124845183, 30.210879275361005 ], [ -95.765710124916779, 30.211152275459405 ], [ -95.765952125203725, 30.211402275468693 ], [ -95.766013125073144, 30.211484275017373 ], [ -95.766011125329882, 30.211708275218054 ], [ -95.766102125287233, 30.211931275164098 ], [ -95.766252125341708, 30.212135275609018 ], [ -95.766311125513738, 30.212378275294213 ], [ -95.766308125634069, 30.212953275519034 ], [ -95.766155124867879, 30.213157275531895 ], [ -95.766199125004206, 30.213285275093213 ], [ -95.766198125437469, 30.213467275525623 ], [ -95.766196125632064, 30.213596275467641 ], [ -95.766303125796526, 30.213645275882936 ], [ -95.766455125155119, 30.213720275950127 ], [ -95.766605125066874, 30.214072275705171 ], [ -95.766500125095007, 30.215302275909163 ], [ -95.771975126864845, 30.216788275913135 ], [ -95.788373131691799, 30.221439276456746 ], [ -95.795564132994883, 30.223343276348878 ], [ -95.802772135020291, 30.225270276300346 ], [ -95.80413013584311, 30.226124276765393 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 100, "Tract": "48201330301", "Area_SqMi": 1.2306779446481886, "total_2009": 170, "total_2010": 175, "total_2011": 149, "total_2012": 179, "total_2013": 240, "total_2014": 222, "total_2015": 251, "total_2016": 283, "total_2017": 294, "total_2018": 333, "total_2019": 519, "total_2020": 448, "age1": 99, "age2": 440, "age3": 183, "earn1": 162, "earn2": 202, "earn3": 358, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 168, "naics_s06": 11, "naics_s07": 58, "naics_s08": 8, "naics_s09": 0, "naics_s10": 2, "naics_s11": 5, "naics_s12": 6, "naics_s13": 0, "naics_s14": 261, "naics_s15": 0, "naics_s16": 69, "naics_s17": 0, "naics_s18": 121, "naics_s19": 2, "naics_s20": 0, "race1": 394, "race2": 220, "race3": 7, "race4": 89, "race5": 0, "race6": 12, "ethnicity1": 493, "ethnicity2": 229, "edu1": 149, "edu2": 149, "edu3": 167, "edu4": 158, "Shape_Length": 23659.083455756543, "Shape_Area": 34309194.770438299, "total_2021": 482, "total_2022": 722 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.482460026826885, 29.637395167799493 ], [ -95.482426026435888, 29.635257167806916 ], [ -95.482378026839172, 29.633975166970853 ], [ -95.482227026367809, 29.633043167509229 ], [ -95.482062026166844, 29.632501167414752 ], [ -95.482068026426518, 29.63197616698119 ], [ -95.482036026625465, 29.631416166661143 ], [ -95.482030025812492, 29.630895167175002 ], [ -95.482028026502761, 29.630587166765679 ], [ -95.482028026586548, 29.629767166318725 ], [ -95.482012026272585, 29.629280166425669 ], [ -95.482036026422293, 29.628825166105244 ], [ -95.482052025835017, 29.628647166573142 ], [ -95.48206002657642, 29.628549166298896 ], [ -95.482076026599216, 29.628417165982501 ], [ -95.481922026287322, 29.628422165844633 ], [ -95.480936025718833, 29.628457166480544 ], [ -95.479874025310636, 29.628446166323826 ], [ -95.478120025368909, 29.628427166638193 ], [ -95.475936024215429, 29.628404166799694 ], [ -95.475409024532013, 29.628344166426906 ], [ -95.473496023756866, 29.627908166403902 ], [ -95.471316023408349, 29.627412166405225 ], [ -95.470684023746387, 29.627309166091443 ], [ -95.468881022662544, 29.62730116689994 ], [ -95.468754022707955, 29.627300166208858 ], [ -95.46643402204208, 29.627290166391468 ], [ -95.465407021581754, 29.627286166735981 ], [ -95.465192021485592, 29.627285166255689 ], [ -95.465027021346827, 29.628713167062962 ], [ -95.464751022270249, 29.629291166841945 ], [ -95.4646040213063, 29.629574166939374 ], [ -95.464387021311737, 29.629880167235694 ], [ -95.464111022051725, 29.630350166990887 ], [ -95.463872021445781, 29.630945167738997 ], [ -95.463720022135192, 29.631417167711181 ], [ -95.463631021415083, 29.631594167369101 ], [ -95.463565021634864, 29.631703167911709 ], [ -95.463489021952554, 29.63198516803282 ], [ -95.463489021666888, 29.632168167234944 ], [ -95.463486021673035, 29.632826167418163 ], [ -95.46348602144964, 29.632846167968435 ], [ -95.46348602150222, 29.632891168092449 ], [ -95.463481021820897, 29.633983168000135 ], [ -95.463484021658985, 29.634759167826658 ], [ -95.463481021486359, 29.63487016798986 ], [ -95.463477021364668, 29.635106168379263 ], [ -95.463539022286142, 29.636044168333935 ], [ -95.463551021455487, 29.636225168178033 ], [ -95.463565021891228, 29.636428168500231 ], [ -95.463574022225487, 29.639283169184736 ], [ -95.463578022076746, 29.64072116943785 ], [ -95.46357902200532, 29.640812169011227 ], [ -95.463611021565598, 29.641689169239388 ], [ -95.463650021953455, 29.64358016963682 ], [ -95.463704022265702, 29.645248170460896 ], [ -95.463722022676677, 29.646053170088027 ], [ -95.463726022295972, 29.646572170976505 ], [ -95.463728022193735, 29.646727170951994 ], [ -95.463737022033243, 29.647168170451437 ], [ -95.463741022709726, 29.647370171190119 ], [ -95.463743021857454, 29.647495170840486 ], [ -95.464073022523749, 29.647365170321422 ], [ -95.4665070231122, 29.646457170483135 ], [ -95.467268022796318, 29.646156170712256 ], [ -95.467587023075268, 29.646031170047941 ], [ -95.469808023407595, 29.645223169938497 ], [ -95.470249024335644, 29.645057169885259 ], [ -95.470535023674714, 29.64494917031293 ], [ -95.471330024275815, 29.644649170036491 ], [ -95.471611024551592, 29.644542170170535 ], [ -95.472857024745409, 29.644048169661932 ], [ -95.475392024865329, 29.643023169853375 ], [ -95.475956025570781, 29.642792169455319 ], [ -95.478012025522915, 29.641955168741934 ], [ -95.47812302534264, 29.641909169536248 ], [ -95.479669026427928, 29.641300168578336 ], [ -95.480191026293085, 29.641096168632025 ], [ -95.481905026284863, 29.640451168826733 ], [ -95.482158026729351, 29.640355168543437 ], [ -95.482348026334762, 29.640273168722587 ], [ -95.48235002689151, 29.64014316845563 ], [ -95.482364027104893, 29.6399711682846 ], [ -95.482372026694222, 29.639869168490485 ], [ -95.482426026965257, 29.639225168067959 ], [ -95.482423026205524, 29.638245168331583 ], [ -95.482460026826885, 29.637395167799493 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 101, "Tract": "48201334001", "Area_SqMi": 0.5199686095846886, "total_2009": 1260, "total_2010": 1198, "total_2011": 1308, "total_2012": 1224, "total_2013": 1276, "total_2014": 1379, "total_2015": 1382, "total_2016": 1221, "total_2017": 1221, "total_2018": 1201, "total_2019": 1095, "total_2020": 1104, "age1": 357, "age2": 516, "age3": 253, "earn1": 414, "earn2": 447, "earn3": 265, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 5, "naics_s06": 17, "naics_s07": 513, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 12, "naics_s12": 6, "naics_s13": 0, "naics_s14": 0, "naics_s15": 2, "naics_s16": 198, "naics_s17": 24, "naics_s18": 267, "naics_s19": 78, "naics_s20": 0, "race1": 753, "race2": 237, "race3": 7, "race4": 108, "race5": 0, "race6": 21, "ethnicity1": 687, "ethnicity2": 439, "edu1": 208, "edu2": 261, "edu3": 196, "edu4": 104, "Shape_Length": 16789.122121400818, "Shape_Area": 14495834.900051672, "total_2021": 1089, "total_2022": 1126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.237850963407084, 29.611404170706965 ], [ -95.238084963110268, 29.611225171044964 ], [ -95.235816962857214, 29.611261170741763 ], [ -95.234934962291049, 29.611273171018677 ], [ -95.23449996217704, 29.611278171067791 ], [ -95.233727961576236, 29.611287171212297 ], [ -95.23321996219272, 29.611294170826216 ], [ -95.232675961050489, 29.611302171483924 ], [ -95.231665961548131, 29.611319171591052 ], [ -95.230390961294788, 29.611351171475466 ], [ -95.229540960643575, 29.611373170821413 ], [ -95.229186960966615, 29.611388170957614 ], [ -95.22821796034107, 29.611402171487825 ], [ -95.227961960730866, 29.611440171363888 ], [ -95.227833960608294, 29.611429170942873 ], [ -95.227637960207218, 29.611412170919884 ], [ -95.227349960085022, 29.61141717147348 ], [ -95.226480959824769, 29.611438171520813 ], [ -95.22574796027331, 29.611491171563454 ], [ -95.225131959557416, 29.611585171520588 ], [ -95.22439395910429, 29.611741171590374 ], [ -95.223030959256477, 29.612186171463311 ], [ -95.221909959272864, 29.612584171354257 ], [ -95.220852958204659, 29.612951171553203 ], [ -95.220025958665573, 29.613240171940127 ], [ -95.219243957958042, 29.613571172237215 ], [ -95.218245957951467, 29.614224171986972 ], [ -95.217994958174984, 29.614442172100855 ], [ -95.217828958098849, 29.614585172053896 ], [ -95.217725957877562, 29.61467017257856 ], [ -95.216387957810483, 29.615780172207081 ], [ -95.216302957403457, 29.615851172792464 ], [ -95.216128957477125, 29.615996172447471 ], [ -95.219322958933589, 29.618851173066425 ], [ -95.220539959171731, 29.619988172910485 ], [ -95.221177959253481, 29.62058717342379 ], [ -95.221313959507356, 29.620499173512766 ], [ -95.221367959537858, 29.620463173583168 ], [ -95.222043959747751, 29.620433173288269 ], [ -95.222754958947959, 29.620425173284776 ], [ -95.223171959664654, 29.620420173470215 ], [ -95.223531959238883, 29.620412173357902 ], [ -95.224914960073136, 29.620396172916394 ], [ -95.225207960517167, 29.620391173524833 ], [ -95.225419960345434, 29.620392172893954 ], [ -95.226400960339788, 29.620380173431027 ], [ -95.226616960824643, 29.620374172895669 ], [ -95.227028960399196, 29.620378172860381 ], [ -95.227177960356045, 29.620376173375707 ], [ -95.227372960926928, 29.620372173046075 ], [ -95.227513960983899, 29.620370173311677 ], [ -95.227700960870621, 29.620367172844201 ], [ -95.228055961197342, 29.620360173330294 ], [ -95.229100960581931, 29.620343173288841 ], [ -95.229433960744373, 29.620338173450342 ], [ -95.229757960794274, 29.61921817321511 ], [ -95.229903961526873, 29.618794172874608 ], [ -95.229962960886326, 29.618592173123439 ], [ -95.230362961106195, 29.618227172851768 ], [ -95.230692960903269, 29.617930172156655 ], [ -95.231015961511403, 29.617634172352844 ], [ -95.2312609617845, 29.617413172057539 ], [ -95.231666961319007, 29.617048172733497 ], [ -95.232320961648938, 29.616444171912104 ], [ -95.232973962053563, 29.615849171723784 ], [ -95.23364096164876, 29.615244172092524 ], [ -95.233795961956289, 29.615104171894256 ], [ -95.234301962026706, 29.614651171981283 ], [ -95.235091962114524, 29.613905171799185 ], [ -95.235253961819737, 29.613753171913398 ], [ -95.235380962762335, 29.613638171390427 ], [ -95.236263962949479, 29.612836171344167 ], [ -95.236637962570796, 29.612499171016736 ], [ -95.236786962915275, 29.61236317116197 ], [ -95.237850963407084, 29.611404170706965 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 102, "Tract": "48201533702", "Area_SqMi": 0.3793900264920681, "total_2009": 122, "total_2010": 59, "total_2011": 146, "total_2012": 291, "total_2013": 363, "total_2014": 372, "total_2015": 243, "total_2016": 275, "total_2017": 216, "total_2018": 89, "total_2019": 60, "total_2020": 66, "age1": 74, "age2": 110, "age3": 50, "earn1": 49, "earn2": 62, "earn3": 123, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 96, "naics_s06": 5, "naics_s07": 95, "naics_s08": 2, "naics_s09": 0, "naics_s10": 3, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 5, "naics_s15": 1, "naics_s16": 0, "naics_s17": 0, "naics_s18": 7, "naics_s19": 0, "naics_s20": 0, "race1": 175, "race2": 30, "race3": 5, "race4": 22, "race5": 0, "race6": 2, "ethnicity1": 121, "ethnicity2": 113, "edu1": 47, "edu2": 48, "edu3": 48, "edu4": 17, "Shape_Length": 13519.595605119452, "Shape_Area": 10576744.606078992, "total_2021": 67, "total_2022": 234 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446462030018239, 29.920716226860719 ], [ -95.446845030157121, 29.920643227066222 ], [ -95.445861029697582, 29.919383227218674 ], [ -95.445755029399066, 29.91924122675961 ], [ -95.445695030135269, 29.919162226837251 ], [ -95.444621029399343, 29.91777922688367 ], [ -95.444436029300519, 29.917535226605782 ], [ -95.444162029717603, 29.917182226992477 ], [ -95.443922028938204, 29.916871226839497 ], [ -95.443687028874507, 29.916570226889515 ], [ -95.443634029255193, 29.916503226484757 ], [ -95.442920028934438, 29.915575226405743 ], [ -95.442167028788958, 29.914593225745843 ], [ -95.442001028916181, 29.914575226275659 ], [ -95.441665029107483, 29.91457522584383 ], [ -95.439708028645342, 29.914611225985016 ], [ -95.439252027643775, 29.91462022662666 ], [ -95.438813027656053, 29.914628226357209 ], [ -95.438539027923682, 29.914633226393004 ], [ -95.435795026644698, 29.914683225990125 ], [ -95.435447027137286, 29.914689226729557 ], [ -95.434400027127793, 29.914709226116475 ], [ -95.433131026325967, 29.914732226049704 ], [ -95.432775026704036, 29.914739226672619 ], [ -95.432724026769876, 29.914740226884987 ], [ -95.432776026797768, 29.914842226514761 ], [ -95.43278902611199, 29.915749226503976 ], [ -95.432836026127404, 29.919108227471433 ], [ -95.432810026863763, 29.919488227524191 ], [ -95.432804026350126, 29.919960227518331 ], [ -95.432905026320938, 29.92005922736033 ], [ -95.432829026358007, 29.920532228081786 ], [ -95.432851026251768, 29.920573227946829 ], [ -95.432867026794042, 29.920604228131555 ], [ -95.432842026825725, 29.921302227749671 ], [ -95.432867026895664, 29.921456228001894 ], [ -95.432868026323419, 29.921631227658114 ], [ -95.432880027055589, 29.923322228463174 ], [ -95.432883027065387, 29.923698228460832 ], [ -95.432954026510359, 29.923700228217648 ], [ -95.433158027140323, 29.923704228067077 ], [ -95.433531027057839, 29.92372822786783 ], [ -95.434492027273023, 29.92354522844974 ], [ -95.436541027191225, 29.922915228359205 ], [ -95.43657702804073, 29.922909227790484 ], [ -95.436970028270807, 29.922845227846818 ], [ -95.436952027508852, 29.922785227647601 ], [ -95.439546028942829, 29.922220227804637 ], [ -95.439878028580551, 29.922144227592206 ], [ -95.440793028451296, 29.921952227268001 ], [ -95.440913028659494, 29.921922227867469 ], [ -95.441203028432128, 29.921862227683814 ], [ -95.441406029311324, 29.921815227505075 ], [ -95.441612029084183, 29.921773227533933 ], [ -95.443272029042987, 29.921407227818264 ], [ -95.444556029781182, 29.921126227175122 ], [ -95.444988029880236, 29.921033227373908 ], [ -95.446462030018239, 29.920716226860719 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 103, "Tract": "48201554501", "Area_SqMi": 4.78382649055981, "total_2009": 354, "total_2010": 366, "total_2011": 421, "total_2012": 460, "total_2013": 603, "total_2014": 600, "total_2015": 694, "total_2016": 776, "total_2017": 805, "total_2018": 716, "total_2019": 830, "total_2020": 856, "age1": 431, "age2": 509, "age3": 213, "earn1": 280, "earn2": 422, "earn3": 451, "naics_s01": 1, "naics_s02": 0, "naics_s03": 12, "naics_s04": 118, "naics_s05": 146, "naics_s06": 43, "naics_s07": 380, "naics_s08": 56, "naics_s09": 0, "naics_s10": 8, "naics_s11": 2, "naics_s12": 34, "naics_s13": 0, "naics_s14": 74, "naics_s15": 7, "naics_s16": 168, "naics_s17": 40, "naics_s18": 34, "naics_s19": 30, "naics_s20": 0, "race1": 890, "race2": 157, "race3": 13, "race4": 75, "race5": 1, "race6": 17, "ethnicity1": 745, "ethnicity2": 408, "edu1": 146, "edu2": 210, "edu3": 201, "edu4": 165, "Shape_Length": 56854.810731724916, "Shape_Area": 133364894.95594083, "total_2021": 1016, "total_2022": 1153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.697335098192909, 30.016651238025158 ], [ -95.697428098182044, 30.016044238116521 ], [ -95.697150099051001, 30.016011238318136 ], [ -95.693379097345726, 30.015159238330618 ], [ -95.691446096729365, 30.014670237678974 ], [ -95.691093097439961, 30.014549238090122 ], [ -95.690834097315701, 30.014478237529065 ], [ -95.690682096487237, 30.014412237657947 ], [ -95.690354097084153, 30.014225237792154 ], [ -95.687777096419396, 30.012669237613768 ], [ -95.68769409606459, 30.012603237718821 ], [ -95.687650096207918, 30.012543237222339 ], [ -95.687480096124574, 30.012411237870694 ], [ -95.687417096365635, 30.012345237258803 ], [ -95.687322095991902, 30.01227923725267 ], [ -95.687271095476589, 30.012252237964276 ], [ -95.687113095379431, 30.012230237269815 ], [ -95.686520095831909, 30.012235237274798 ], [ -95.686097095088826, 30.012268237571114 ], [ -95.685812095408295, 30.012307237547617 ], [ -95.684012094918415, 30.01238923798336 ], [ -95.683842095078987, 30.012312238102556 ], [ -95.683747095010531, 30.012213237510828 ], [ -95.683570094528349, 30.011966237791611 ], [ -95.683141094316127, 30.011477237813562 ], [ -95.683021094653114, 30.011416237446166 ], [ -95.682875094532221, 30.011388237408219 ], [ -95.68275509466126, 30.011383237404402 ], [ -95.682572094843394, 30.011405237423627 ], [ -95.682143094291817, 30.011493237445311 ], [ -95.682016094188, 30.011493237160003 ], [ -95.681871094114584, 30.01146023728602 ], [ -95.681783094587004, 30.011399237350115 ], [ -95.681341094137011, 30.010998237360653 ], [ -95.68127709421104, 30.010921237039064 ], [ -95.68119509380206, 30.010844237846417 ], [ -95.681044094651128, 30.010767237054431 ], [ -95.680943094689653, 30.010740237396661 ], [ -95.680709094102212, 30.010718237660686 ], [ -95.680456094076206, 30.010723237243393 ], [ -95.680355093778246, 30.010745237820409 ], [ -95.680254093654, 30.010784237350652 ], [ -95.68017209436492, 30.010828237917767 ], [ -95.680090093840306, 30.010894237407729 ], [ -95.680014094135061, 30.010993237891157 ], [ -95.679707093416823, 30.012041238064366 ], [ -95.679698094181731, 30.012058237591752 ], [ -95.679673093638073, 30.012092237775438 ], [ -95.679629094049488, 30.01210823778387 ], [ -95.67955309376832, 30.012109237535938 ], [ -95.679458094259047, 30.012086237974998 ], [ -95.678783093299288, 30.011757238024828 ], [ -95.677267093216926, 30.010883237353781 ], [ -95.676951093572086, 30.010723237712092 ], [ -95.676888093219532, 30.010657237330157 ], [ -95.676863093332074, 30.010591237384336 ], [ -95.676875093115029, 30.010399237937342 ], [ -95.67686909266645, 30.010300237854086 ], [ -95.676724092587833, 30.009943236984707 ], [ -95.676559093179591, 30.00976723696882 ], [ -95.676477092912535, 30.009662237549691 ], [ -95.676218093424509, 30.009415237540406 ], [ -95.673061091844559, 30.007111237125393 ], [ -95.671400092017464, 30.005836236525479 ], [ -95.668205090711183, 30.003510236094051 ], [ -95.667365090405525, 30.002872235897222 ], [ -95.667030090659949, 30.002636236346166 ], [ -95.666948089751159, 30.002554235901105 ], [ -95.666923090096958, 30.002515236470167 ], [ -95.666897090332199, 30.002482236597814 ], [ -95.666973090581891, 30.002026236070499 ], [ -95.66698609023328, 30.001779235906362 ], [ -95.666974090351729, 30.001278235798722 ], [ -95.666948089691104, 30.001119235598704 ], [ -95.666879089878094, 30.001020236284106 ], [ -95.666778090548675, 30.000976236357637 ], [ -95.666544089835739, 30.000937235568532 ], [ -95.666222090421002, 30.000948235596656 ], [ -95.666070090432683, 30.000921235677239 ], [ -95.6658620898707, 30.000860236328336 ], [ -95.665767089962344, 30.000767236384512 ], [ -95.665673089641501, 30.000574235623489 ], [ -95.665578089566509, 30.000497235568098 ], [ -95.665477090225153, 30.000388236241282 ], [ -95.665452090022256, 30.00030023631901 ], [ -95.665445089246916, 30.000201235518507 ], [ -95.665553089521381, 30.000003236255822 ], [ -95.665843089834453, 29.999684236028511 ], [ -95.665888089892775, 29.999519236024888 ], [ -95.665894089322535, 29.999442235772722 ], [ -95.665888090148641, 29.99937623557339 ], [ -95.665843089450661, 29.999294235674178 ], [ -95.665780089698174, 29.999228235794636 ], [ -95.665717089275319, 29.999195235975549 ], [ -95.665622090107846, 29.999167236070456 ], [ -95.665490090004837, 29.999156235524932 ], [ -95.665237089949386, 29.999206235718013 ], [ -95.665117089395025, 29.999272236038422 ], [ -95.664991089599951, 29.999382235474364 ], [ -95.664890089897995, 29.999420236122955 ], [ -95.664795089409083, 29.999437235758741 ], [ -95.664662089058467, 29.999420235724475 ], [ -95.664031089178238, 29.999382236104147 ], [ -95.663747089518509, 29.999393236070205 ], [ -95.663602088786533, 29.999414235809844 ], [ -95.663298089146622, 29.999425235365404 ], [ -95.663166089549264, 29.999392236077114 ], [ -95.662983089428423, 29.999294235678057 ], [ -95.66290708950369, 29.999222235431699 ], [ -95.662793088648243, 29.99906323564327 ], [ -95.66274308915014, 29.998881235477551 ], [ -95.662743089326085, 29.998804236062309 ], [ -95.66280008882336, 29.998452235508811 ], [ -95.662762089286645, 29.998304235745628 ], [ -95.662629089105906, 29.99810623555517 ], [ -95.662143088805109, 29.997518235579715 ], [ -95.662067088638381, 29.997386235370605 ], [ -95.662004088891308, 29.99719923569787 ], [ -95.661909088672559, 29.996825234916539 ], [ -95.661834088627515, 29.99658323534095 ], [ -95.661796088846557, 29.996270235177331 ], [ -95.661808088504586, 29.996111234708053 ], [ -95.66192908821813, 29.99572623513658 ], [ -95.661922088668021, 29.995555235336578 ], [ -95.661853089113094, 29.995352235161011 ], [ -95.661708088661968, 29.995110234869131 ], [ -95.661524088552667, 29.994962234941944 ], [ -95.661455088619661, 29.99496223477653 ], [ -95.661158087984873, 29.99502823469561 ], [ -95.660943088320565, 29.995044235123324 ], [ -95.660274088240101, 29.995011234576424 ], [ -95.660154087899826, 29.994956235193492 ], [ -95.65996508778224, 29.994786234952265 ], [ -95.659788087746236, 29.994610234957932 ], [ -95.659630087644103, 29.994434235185434 ], [ -95.659422088164703, 29.994142234631326 ], [ -95.659289087724503, 29.994071235005975 ], [ -95.659087087992532, 29.993923235142262 ], [ -95.658733088033031, 29.99372523520908 ], [ -95.657805087717591, 29.993367234344543 ], [ -95.65745808746, 29.993153234375523 ], [ -95.657420086913106, 29.993004234354718 ], [ -95.657471087539193, 29.992768234579732 ], [ -95.657824087533598, 29.992020234833877 ], [ -95.657831087229397, 29.991718234252989 ], [ -95.657768087333324, 29.991201234699055 ], [ -95.657774087870763, 29.990915234570899 ], [ -95.657604086846973, 29.990685234330002 ], [ -95.657427087036112, 29.99059723414512 ], [ -95.657111087400381, 29.990542233986751 ], [ -95.656297086746108, 29.990503233834584 ], [ -95.655722087283422, 29.990497234195917 ], [ -95.655577086543943, 29.99048123466606 ], [ -95.655368087155423, 29.990415233858492 ], [ -95.655242086389435, 29.990327234414742 ], [ -95.655141086239297, 29.99019523429461 ], [ -95.655078086671153, 29.989964234586431 ], [ -95.655103086483265, 29.989332233967673 ], [ -95.655148086167372, 29.98915123377185 ], [ -95.655141086251845, 29.989090233963843 ], [ -95.655103086635265, 29.989041233928084 ], [ -95.655034086725379, 29.989002233604321 ], [ -95.65489508673447, 29.988958233532308 ], [ -95.654125086257068, 29.988628234304752 ], [ -95.653792086388833, 29.988510234291994 ], [ -95.653754086737337, 29.988586234191782 ], [ -95.653552086155315, 29.989034233890614 ], [ -95.65345508578676, 29.989274233705689 ], [ -95.653381086350109, 29.989496234164122 ], [ -95.653330086582812, 29.989702234388822 ], [ -95.653274086052534, 29.99005923417689 ], [ -95.653256086298796, 29.990134234048885 ], [ -95.65324308635995, 29.99029123382897 ], [ -95.653252085795728, 29.990368234071507 ], [ -95.653251086649604, 29.99043623418855 ], [ -95.653239086584676, 29.990496234486013 ], [ -95.653255086072946, 29.990564233968126 ], [ -95.653298086464275, 29.990994234505767 ], [ -95.653273086262033, 29.991035234707855 ], [ -95.653247086597233, 29.991055234175708 ], [ -95.653149086160425, 29.991094234870729 ], [ -95.65299108608454, 29.991127234016194 ], [ -95.652939086045919, 29.991144234414154 ], [ -95.652729085695469, 29.991194234530266 ], [ -95.652483085793548, 29.9912342341444 ], [ -95.650751085783327, 29.991630234240823 ], [ -95.650282085698564, 29.991748234834819 ], [ -95.650014085569865, 29.991830234976327 ], [ -95.64998008508006, 29.991843234572869 ], [ -95.649891085120103, 29.991877234438483 ], [ -95.649772085679729, 29.991928234346876 ], [ -95.649656085391626, 29.99198623502242 ], [ -95.649543085074455, 29.992050234678587 ], [ -95.649434084953128, 29.992119234797986 ], [ -95.649219085346544, 29.992267234821725 ], [ -95.649019084695226, 29.992426235166491 ], [ -95.648931085659157, 29.99251023460053 ], [ -95.648724084784305, 29.992679235057558 ], [ -95.648649085567229, 29.992777234787571 ], [ -95.648560084995438, 29.992868235236102 ], [ -95.648366085257294, 29.993043234697392 ], [ -95.648261085281661, 29.993124235443521 ], [ -95.648164085161127, 29.993208235408161 ], [ -95.648056085348301, 29.993285235107319 ], [ -95.647878085282414, 29.993433234873059 ], [ -95.647304085253182, 29.993925234844163 ], [ -95.647183084401334, 29.994035235477398 ], [ -95.647140084832955, 29.994096234937491 ], [ -95.646890084831853, 29.994316235601271 ], [ -95.646755084910325, 29.994437235775571 ], [ -95.646326085130909, 29.994805235609235 ], [ -95.64630208457136, 29.9948222358145 ], [ -95.646220084735688, 29.994879235021354 ], [ -95.646150084786356, 29.994970235393023 ], [ -95.6457280840051, 29.995345235798887 ], [ -95.645196084721988, 29.995817235882978 ], [ -95.645134084248298, 29.995867235676574 ], [ -95.645038084799509, 29.995947235824307 ], [ -95.644925084287934, 29.996045235618983 ], [ -95.644795084475774, 29.996170236050794 ], [ -95.64405308371893, 29.996818235878248 ], [ -95.643967084022918, 29.996861235662184 ], [ -95.643946084318245, 29.996888235616218 ], [ -95.643921083999729, 29.996934235972493 ], [ -95.642946084040091, 29.997778235827965 ], [ -95.642838083379559, 29.997854235910332 ], [ -95.642759084353159, 29.997940236122165 ], [ -95.641321083744913, 29.999209236063908 ], [ -95.641242083605391, 29.999267236917916 ], [ -95.641185083378687, 29.99933023643122 ], [ -95.641163083504011, 29.999349236145395 ], [ -95.640782083121294, 29.999685236258152 ], [ -95.640719082938503, 29.999749236264297 ], [ -95.640227083328725, 30.000176236837842 ], [ -95.63938608329974, 30.000930237157231 ], [ -95.639173082985153, 30.001122236696656 ], [ -95.638774082488382, 30.001471236781423 ], [ -95.638489083050075, 30.001730237532747 ], [ -95.637868082962086, 30.002276237205447 ], [ -95.637728083159914, 30.002412237070789 ], [ -95.637510082368806, 30.002595236946512 ], [ -95.637445082269593, 30.002660237743392 ], [ -95.636700082057814, 30.003312237404892 ], [ -95.636646082647218, 30.003374237949718 ], [ -95.636439082591593, 30.003546237990829 ], [ -95.636310082128318, 30.003665237299682 ], [ -95.63602308254076, 30.003918237846662 ], [ -95.63560508233472, 30.004291237800643 ], [ -95.636215082286526, 30.004543238063924 ], [ -95.636499083014712, 30.004655237391532 ], [ -95.636588082418356, 30.004693237734127 ], [ -95.63669608249549, 30.004741238184906 ], [ -95.636911083039067, 30.004827238075006 ], [ -95.63702308222949, 30.004877238207744 ], [ -95.637131082383704, 30.004915238214657 ], [ -95.637783082439782, 30.005179237484676 ], [ -95.637914083266381, 30.005232237724545 ], [ -95.638034082734876, 30.005276237704816 ], [ -95.638147082590322, 30.00532623754156 ], [ -95.638250083305522, 30.005378237969435 ], [ -95.63838708335706, 30.005416237925775 ], [ -95.638489083339337, 30.005473237528275 ], [ -95.638875083583258, 30.005625238260556 ], [ -95.639004083183153, 30.005685237923966 ], [ -95.639155082818533, 30.005748238245019 ], [ -95.639279083682126, 30.005783237839076 ], [ -95.639707083054546, 30.005956238217735 ], [ -95.639859083375683, 30.006014238347362 ], [ -95.640256083160807, 30.006181237653358 ], [ -95.641246084352971, 30.0065902375758 ], [ -95.641320083678366, 30.006626237777862 ], [ -95.641378084138864, 30.006666237789883 ], [ -95.641417083981963, 30.00671223841114 ], [ -95.641441083943789, 30.006764237694931 ], [ -95.6414510842596, 30.006820238079886 ], [ -95.641447084295834, 30.00738723831229 ], [ -95.641453084045182, 30.007484238203531 ], [ -95.641454084300506, 30.007963238221297 ], [ -95.641458084111164, 30.009054238221818 ], [ -95.641456083701314, 30.010626238348266 ], [ -95.641465084590891, 30.01072223913744 ], [ -95.641486083666209, 30.010805239264513 ], [ -95.64151808403345, 30.010879239093935 ], [ -95.64156308449131, 30.010958239018066 ], [ -95.641623084368902, 30.011030239303576 ], [ -95.641695084363292, 30.011105239010867 ], [ -95.64205508376007, 30.01143523937785 ], [ -95.642216084562108, 30.01159323900308 ], [ -95.642279084753355, 30.011667239047576 ], [ -95.642324083890969, 30.011745238633509 ], [ -95.642355084371786, 30.011830239449218 ], [ -95.642372084371502, 30.011923238755834 ], [ -95.642380084594919, 30.012246238878291 ], [ -95.64237808456835, 30.012414239265045 ], [ -95.642358084865918, 30.01430323976156 ], [ -95.642356084237676, 30.015386239549134 ], [ -95.642355084497893, 30.015740240069313 ], [ -95.642354084577946, 30.016906240168559 ], [ -95.642350084434199, 30.017857240106608 ], [ -95.642340084951698, 30.018052240664364 ], [ -95.642343085109843, 30.018289240370503 ], [ -95.642360084824531, 30.018386240340512 ], [ -95.642374084469154, 30.018429240121737 ], [ -95.642452084504015, 30.018481240061085 ], [ -95.642563084685037, 30.018497240536988 ], [ -95.642872084382688, 30.018489239954448 ], [ -95.642952085114487, 30.018492240752469 ], [ -95.643125084618674, 30.018487240232243 ], [ -95.643236084550409, 30.018480240098498 ], [ -95.643573084990607, 30.018478240754334 ], [ -95.643688085035507, 30.018466239990044 ], [ -95.643796084736465, 30.018460240259529 ], [ -95.643909084882239, 30.018467239924199 ], [ -95.644025085390709, 30.018464240414225 ], [ -95.644123085074668, 30.018467240647915 ], [ -95.644205085570093, 30.018481240127159 ], [ -95.644287085635895, 30.018503240461033 ], [ -95.644361084898947, 30.018537240391773 ], [ -95.644510085253245, 30.01863423992209 ], [ -95.646010085503448, 30.019861240671833 ], [ -95.646208086032615, 30.020023240326928 ], [ -95.647205085794184, 30.020845240590354 ], [ -95.64732508556412, 30.0209372405035 ], [ -95.647436086610867, 30.021030240487079 ], [ -95.648261086504519, 30.021718240772095 ], [ -95.648372086069273, 30.021815240777205 ], [ -95.648489086281771, 30.021906240550916 ], [ -95.64859908649764, 30.021999240696285 ], [ -95.649037087004956, 30.02235224096404 ], [ -95.65012108725314, 30.02324424125154 ], [ -95.650286087178742, 30.023379241053863 ], [ -95.650541086504177, 30.02359924134899 ], [ -95.650806086968331, 30.023799241353835 ], [ -95.650924087112898, 30.023901241172652 ], [ -95.651048087600202, 30.023996241534924 ], [ -95.651152087097415, 30.024100241438926 ], [ -95.651933087081972, 30.024734241571792 ], [ -95.652143087413393, 30.024910240994746 ], [ -95.652242088034214, 30.02498624093797 ], [ -95.652338087095487, 30.025047240967204 ], [ -95.652436088028892, 30.025090241209025 ], [ -95.65254008776914, 30.025114241062585 ], [ -95.652651087347493, 30.025127241064062 ], [ -95.652837088021826, 30.025130241190489 ], [ -95.653022088119258, 30.025134241402451 ], [ -95.653168087978514, 30.025143241006372 ], [ -95.653357087433207, 30.025140241119463 ], [ -95.653887088088567, 30.02513924174723 ], [ -95.654036088456152, 30.02513424116642 ], [ -95.654647087889714, 30.025130241431981 ], [ -95.655669088504283, 30.025130241245265 ], [ -95.657612089217281, 30.025120241236852 ], [ -95.658145089396839, 30.025115241045409 ], [ -95.659082089598087, 30.025117241525642 ], [ -95.659660089455954, 30.025113241424823 ], [ -95.660833089517112, 30.025112241069511 ], [ -95.661756090289586, 30.025108241445814 ], [ -95.661907089965339, 30.025104241204133 ], [ -95.662050089752597, 30.025094240637628 ], [ -95.662186090066456, 30.025077241164123 ], [ -95.662319090253689, 30.02505324107052 ], [ -95.662575090611966, 30.024993241259544 ], [ -95.662828089909198, 30.024919240508527 ], [ -95.663312089835557, 30.02474424107109 ], [ -95.663767090623097, 30.024573240960649 ], [ -95.66390609064122, 30.024528241295446 ], [ -95.664042090542083, 30.024492240960125 ], [ -95.664174090359253, 30.024462240423244 ], [ -95.664432090388758, 30.024419240652733 ], [ -95.664691090926851, 30.024391240778179 ], [ -95.664960091121657, 30.024377240343874 ], [ -95.667808091520698, 30.024358240692287 ], [ -95.671430092301094, 30.024339240297824 ], [ -95.67169509201014, 30.024330240083604 ], [ -95.671976092334972, 30.024335240267426 ], [ -95.672329093008017, 30.024329240688921 ], [ -95.672370092846521, 30.024329240774168 ], [ -95.672460092532745, 30.024347240346785 ], [ -95.672622092390981, 30.024328240714198 ], [ -95.677133093913767, 30.024297240390403 ], [ -95.679630094387079, 30.024279240669909 ], [ -95.679810094866568, 30.024272240315298 ], [ -95.680963094734608, 30.024268239986821 ], [ -95.682704095177201, 30.024261240467585 ], [ -95.683070095018735, 30.024266240213052 ], [ -95.683211095833116, 30.024278239844683 ], [ -95.683347095619993, 30.024299240337424 ], [ -95.683480095447706, 30.024326239685358 ], [ -95.683630094993021, 30.024363240529368 ], [ -95.684297095211832, 30.024538240160624 ], [ -95.684568095387533, 30.024596240123866 ], [ -95.684703096211408, 30.024619239824514 ], [ -95.684839095349773, 30.024636239714258 ], [ -95.685061095546388, 30.024653240370366 ], [ -95.685259095738132, 30.024661239817874 ], [ -95.685566095546989, 30.024665240160235 ], [ -95.685860095636073, 30.02466924044953 ], [ -95.686328096039219, 30.024659240133559 ], [ -95.686470096242914, 30.024659240340799 ], [ -95.686959096799654, 30.024649240380725 ], [ -95.687415096660359, 30.02465023989371 ], [ -95.687581096775702, 30.024647240410697 ], [ -95.688710096814276, 30.024645239767221 ], [ -95.688873096752317, 30.024641239671812 ], [ -95.689047096592915, 30.024648239558619 ], [ -95.689567096704991, 30.02463924039278 ], [ -95.6906220975834, 30.024633239842704 ], [ -95.690801097293715, 30.024638239690915 ], [ -95.690982097815876, 30.024651239744287 ], [ -95.691145097354493, 30.024628239820153 ], [ -95.691348097626118, 30.024628239799519 ], [ -95.692230097663952, 30.02462123981709 ], [ -95.69241509732916, 30.024623239954746 ], [ -95.692808097720302, 30.024618239850117 ], [ -95.692880098363943, 30.024620239491671 ], [ -95.693008098058584, 30.024622240146453 ], [ -95.694083097768271, 30.024608239963747 ], [ -95.694288098577374, 30.024614239523689 ], [ -95.696835099331366, 30.024604239438034 ], [ -95.697371099408485, 30.024603239622046 ], [ -95.697363099035755, 30.024136239640917 ], [ -95.69732709877978, 30.02150523946144 ], [ -95.69728409854774, 30.01867123842975 ], [ -95.697271098321565, 30.017404237907225 ], [ -95.697275098156112, 30.01726423846846 ], [ -95.697283098896179, 30.017091238452345 ], [ -95.697292098859279, 30.017000237746391 ], [ -95.697335098192909, 30.016651238025158 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 104, "Tract": "48201222402", "Area_SqMi": 1.5756027897985856, "total_2009": 618, "total_2010": 441, "total_2011": 654, "total_2012": 701, "total_2013": 827, "total_2014": 919, "total_2015": 1057, "total_2016": 865, "total_2017": 853, "total_2018": 952, "total_2019": 947, "total_2020": 989, "age1": 202, "age2": 598, "age3": 286, "earn1": 105, "earn2": 358, "earn3": 623, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 472, "naics_s05": 246, "naics_s06": 45, "naics_s07": 141, "naics_s08": 5, "naics_s09": 0, "naics_s10": 4, "naics_s11": 2, "naics_s12": 7, "naics_s13": 0, "naics_s14": 61, "naics_s15": 0, "naics_s16": 63, "naics_s17": 0, "naics_s18": 3, "naics_s19": 30, "naics_s20": 2, "race1": 872, "race2": 121, "race3": 6, "race4": 61, "race5": 2, "race6": 24, "ethnicity1": 584, "ethnicity2": 502, "edu1": 250, "edu2": 241, "edu3": 256, "edu4": 137, "Shape_Length": 28302.172294411452, "Shape_Area": 43925109.108458899, "total_2021": 1059, "total_2022": 1086 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.405140018997571, 29.915416227498511 ], [ -95.40505001977246, 29.915385227301488 ], [ -95.405027019669987, 29.915315227147016 ], [ -95.404800019485492, 29.914620227603955 ], [ -95.404620018782467, 29.914056227699348 ], [ -95.4045580189443, 29.913878227108313 ], [ -95.40420001891556, 29.912876226950516 ], [ -95.40407101887638, 29.912522226727589 ], [ -95.403424018793785, 29.910729226455313 ], [ -95.403054018193544, 29.909694226136772 ], [ -95.402963018527302, 29.909454226168233 ], [ -95.402244018160985, 29.907467226459087 ], [ -95.401861017774152, 29.906407225674432 ], [ -95.401724017521389, 29.906029226196889 ], [ -95.401311018037603, 29.904867225977501 ], [ -95.401190017427808, 29.904532225877933 ], [ -95.40090001752327, 29.903729225721914 ], [ -95.400783017691197, 29.903402224873435 ], [ -95.40066201784829, 29.903063225458524 ], [ -95.40048201717056, 29.902559224726577 ], [ -95.400392017058678, 29.902574224763811 ], [ -95.400141017421859, 29.902594225290482 ], [ -95.399463017688731, 29.902609225268975 ], [ -95.398950017118608, 29.9026122248052 ], [ -95.398584017394938, 29.902621224804218 ], [ -95.397430016951503, 29.902635225002694 ], [ -95.39681501656321, 29.902651225084856 ], [ -95.396615016826217, 29.902649225011814 ], [ -95.395136016595217, 29.902675225521858 ], [ -95.394733015822339, 29.902676225712138 ], [ -95.394330015517284, 29.90268622564982 ], [ -95.393956015473847, 29.902691225118605 ], [ -95.393348015967163, 29.902701225344103 ], [ -95.393164015292967, 29.902691225068466 ], [ -95.393102015209621, 29.902686225182485 ], [ -95.392979016025947, 29.902675225046725 ], [ -95.392793015180715, 29.902647225463898 ], [ -95.392610015174824, 29.902600225760693 ], [ -95.392429015313596, 29.902545225476565 ], [ -95.391581015661274, 29.902229225110737 ], [ -95.3913890149298, 29.902168225695696 ], [ -95.391301015421959, 29.902146225319409 ], [ -95.391147015271969, 29.902119225710663 ], [ -95.391080014719307, 29.902115224991785 ], [ -95.390974014603657, 29.90210022572953 ], [ -95.39075801476514, 29.902089225191343 ], [ -95.390112014373443, 29.902092224931263 ], [ -95.389509014720218, 29.902094225801552 ], [ -95.389299015006273, 29.902094225758407 ], [ -95.388467014084199, 29.902102225391261 ], [ -95.387638014015437, 29.902106225308831 ], [ -95.387348013700148, 29.902108225141731 ], [ -95.386792014201291, 29.902114225840524 ], [ -95.385554013275907, 29.90212422550945 ], [ -95.384687013530993, 29.902127225176621 ], [ -95.383653013287002, 29.902137225362132 ], [ -95.38277901329964, 29.90213822602562 ], [ -95.382645013282172, 29.902138226104935 ], [ -95.380983012647889, 29.902159225690092 ], [ -95.37884701216899, 29.902166225572742 ], [ -95.378446011395596, 29.902172225917024 ], [ -95.377301011225555, 29.902176226213058 ], [ -95.375757010908529, 29.902186226082211 ], [ -95.374756010650131, 29.90219822608179 ], [ -95.373139010496374, 29.902211226012277 ], [ -95.373068010436683, 29.902212226080781 ], [ -95.372978010657476, 29.902212226044952 ], [ -95.373063010373983, 29.902549225714399 ], [ -95.373504011014333, 29.904314226853781 ], [ -95.373946010716097, 29.906069226652114 ], [ -95.374301011496897, 29.907618227306685 ], [ -95.374727010787936, 29.909391227503772 ], [ -95.375068011247421, 29.910818227862602 ], [ -95.375199011237726, 29.911236227736779 ], [ -95.375351011546599, 29.911643227477555 ], [ -95.37541601108245, 29.911774227921939 ], [ -95.375884011320707, 29.912633228237834 ], [ -95.376119011916671, 29.913144228095856 ], [ -95.376235011758098, 29.913572228636976 ], [ -95.376292011590081, 29.914061228289423 ], [ -95.37629001217384, 29.914645228029681 ], [ -95.376291012103735, 29.914692228410235 ], [ -95.376186011983989, 29.915631228299766 ], [ -95.376160012110574, 29.915829228619369 ], [ -95.376130012362168, 29.916069229146686 ], [ -95.376099012088844, 29.916384228586068 ], [ -95.376073012189593, 29.916672229292484 ], [ -95.376310011691118, 29.916665229221078 ], [ -95.376343011697116, 29.916665228448387 ], [ -95.376375011794366, 29.916665228651237 ], [ -95.376484012520748, 29.916665229098122 ], [ -95.3766520117222, 29.916651228620985 ], [ -95.376730012564522, 29.916644228824424 ], [ -95.377361012668104, 29.916622228908889 ], [ -95.377784012743419, 29.916573228330705 ], [ -95.378220012056232, 29.916551228940509 ], [ -95.378409012759946, 29.916529228957202 ], [ -95.379223013138514, 29.916474228511071 ], [ -95.379848012548152, 29.916447228739596 ], [ -95.380056013133057, 29.916409228213457 ], [ -95.380353012714281, 29.916403228310205 ], [ -95.38042901276485, 29.916381228618917 ], [ -95.381009013054637, 29.916360228992762 ], [ -95.381243013615062, 29.916360228556638 ], [ -95.381691013474594, 29.916338228309357 ], [ -95.381912012949243, 29.916305228398485 ], [ -95.382437013222031, 29.916270228641533 ], [ -95.382903013516923, 29.916239228442912 ], [ -95.383080013950973, 29.916239228425127 ], [ -95.383326013871695, 29.916201228806596 ], [ -95.383755013867969, 29.916190228923458 ], [ -95.384541013759247, 29.916141228694187 ], [ -95.386361014745205, 29.916026228389043 ], [ -95.386655014174281, 29.916031227900135 ], [ -95.386683014274382, 29.91603222817875 ], [ -95.386892014272064, 29.915993228608187 ], [ -95.387635015304042, 29.915957228361474 ], [ -95.388141015183081, 29.91593322864188 ], [ -95.388343015100062, 29.915895228092982 ], [ -95.38853901474225, 29.915879227789574 ], [ -95.388658015436732, 29.915877228214484 ], [ -95.388987014686251, 29.915873228394272 ], [ -95.389643015707378, 29.915807228070566 ], [ -95.389858015421098, 29.915786228296163 ], [ -95.390085015047873, 29.915791227757467 ], [ -95.390281015906936, 29.915786227880094 ], [ -95.390520015620666, 29.915758228290638 ], [ -95.391002015980561, 29.915738228070129 ], [ -95.391562016161018, 29.915715228061494 ], [ -95.392010016113503, 29.915671228291693 ], [ -95.39225001570631, 29.915676227882397 ], [ -95.392464015752694, 29.915649228066691 ], [ -95.392729016498834, 29.915640227684104 ], [ -95.392853016547988, 29.915635228494885 ], [ -95.392944016565934, 29.915633228028092 ], [ -95.393469016795464, 29.915607227744513 ], [ -95.393499016035392, 29.9156052276712 ], [ -95.393720015984428, 29.915616228256535 ], [ -95.39396001614486, 29.915611228311647 ], [ -95.394156016755701, 29.915627227608393 ], [ -95.394356016855468, 29.915601227843215 ], [ -95.395163017288155, 29.915578227932286 ], [ -95.395342016534528, 29.915573227957882 ], [ -95.395434016952748, 29.915573227603428 ], [ -95.395803017360507, 29.915573228006114 ], [ -95.396027016735786, 29.915559227915843 ], [ -95.396238016698405, 29.915546227802114 ], [ -95.396842017190863, 29.91553522776859 ], [ -95.397191016936233, 29.915529227450868 ], [ -95.397658017704003, 29.915535227553598 ], [ -95.39774701736259, 29.915528227410956 ], [ -95.398081017652274, 29.915502228165764 ], [ -95.399129017435754, 29.915486227448422 ], [ -95.399437017816652, 29.915493228244088 ], [ -95.39960201743223, 29.91549722790467 ], [ -95.400610018066715, 29.915463227524327 ], [ -95.400902018416218, 29.915453227411575 ], [ -95.401155018061374, 29.915453227959883 ], [ -95.401483018561606, 29.915470227919819 ], [ -95.402089018761288, 29.915440228068217 ], [ -95.402739018696309, 29.915440228102344 ], [ -95.403300019057923, 29.915440227270725 ], [ -95.403999019364576, 29.91543422771883 ], [ -95.404998019489895, 29.91543922788777 ], [ -95.405140018997571, 29.915416227498511 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 105, "Tract": "48201251501", "Area_SqMi": 7.1665501632563284, "total_2009": 672, "total_2010": 87, "total_2011": 89, "total_2012": 90, "total_2013": 94, "total_2014": 116, "total_2015": 130, "total_2016": 128, "total_2017": 147, "total_2018": 161, "total_2019": 131, "total_2020": 115, "age1": 41, "age2": 122, "age3": 37, "earn1": 51, "earn2": 58, "earn3": 91, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 13, "naics_s07": 22, "naics_s08": 2, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 34, "naics_s13": 0, "naics_s14": 31, "naics_s15": 25, "naics_s16": 38, "naics_s17": 6, "naics_s18": 18, "naics_s19": 6, "naics_s20": 0, "race1": 163, "race2": 11, "race3": 0, "race4": 21, "race5": 2, "race6": 3, "ethnicity1": 153, "ethnicity2": 47, "edu1": 26, "edu2": 33, "edu3": 44, "edu4": 56, "Shape_Length": 87646.628654762346, "Shape_Area": 199791152.87839708, "total_2021": 157, "total_2022": 200 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.195730973476984, 30.087326270122134 ], [ -95.19571497299647, 30.087283270036192 ], [ -95.195670973340214, 30.087241270205592 ], [ -95.194038973231955, 30.08627826974222 ], [ -95.193755973151909, 30.086111269519854 ], [ -95.190206972032684, 30.08401726954391 ], [ -95.19014997135514, 30.083983269241571 ], [ -95.188633971881501, 30.083054269296241 ], [ -95.187671971509005, 30.082464269350016 ], [ -95.184050969833919, 30.080212268634334 ], [ -95.181249969684103, 30.078531268572263 ], [ -95.179259968859, 30.077326268735636 ], [ -95.178455968477436, 30.076851268347657 ], [ -95.177119967650356, 30.076062268386732 ], [ -95.1761839675749, 30.07548526821159 ], [ -95.176035968034157, 30.075393268226833 ], [ -95.174494967397521, 30.074441267682825 ], [ -95.174307967714867, 30.074327268170869 ], [ -95.173171967319945, 30.07362726752995 ], [ -95.172708966480371, 30.073341267650768 ], [ -95.172522966619837, 30.073221268056756 ], [ -95.172009966805732, 30.07289126790527 ], [ -95.171593966720877, 30.0726222674509 ], [ -95.17144596617922, 30.072515267680298 ], [ -95.170945966576241, 30.072156267529476 ], [ -95.170025966522061, 30.071498267996464 ], [ -95.169976965693081, 30.071465267306515 ], [ -95.169164966212392, 30.070925267118184 ], [ -95.168086965375508, 30.070209266950751 ], [ -95.167559965731712, 30.069858266936276 ], [ -95.166718965596473, 30.069299266819087 ], [ -95.166381965456225, 30.069075267530373 ], [ -95.165572964319963, 30.068537267532346 ], [ -95.165306965149355, 30.068051267376887 ], [ -95.165117964951364, 30.067792266973523 ], [ -95.16498696498212, 30.067614267404466 ], [ -95.164731964850958, 30.067264266918308 ], [ -95.164553965026585, 30.067084266808116 ], [ -95.164080963968289, 30.066603266592946 ], [ -95.163431964098692, 30.066087266378346 ], [ -95.16293096412582, 30.065749266294088 ], [ -95.162157963814096, 30.065495266962508 ], [ -95.161935963429173, 30.065422266889403 ], [ -95.16040396362132, 30.065126266666617 ], [ -95.159949963539503, 30.065039266366838 ], [ -95.159775963696589, 30.06518626685066 ], [ -95.159617962959885, 30.065348266503946 ], [ -95.159524963405545, 30.065446266668012 ], [ -95.159455963248035, 30.065561266638294 ], [ -95.159417962989323, 30.065655266359503 ], [ -95.159400963522216, 30.065740266710399 ], [ -95.159383963277833, 30.065842267132307 ], [ -95.159404963031136, 30.066008266560356 ], [ -95.159447962887043, 30.066158266397096 ], [ -95.15949096275358, 30.066260267164559 ], [ -95.15960596348377, 30.066430266682893 ], [ -95.159664963231421, 30.066550267108905 ], [ -95.159694963346595, 30.066712266799673 ], [ -95.159681963567749, 30.066827267432611 ], [ -95.159634963119501, 30.066933266803421 ], [ -95.159545962725019, 30.067117267151051 ], [ -95.159498963584838, 30.067181267246525 ], [ -95.159234962717207, 30.067505266804581 ], [ -95.158347963372165, 30.068604267485494 ], [ -95.157964962752928, 30.069086267551807 ], [ -95.157503963142261, 30.069700267362371 ], [ -95.157392963267299, 30.070002267846373 ], [ -95.157367963141255, 30.070143267399999 ], [ -95.157371962812093, 30.070314268009358 ], [ -95.157486962400469, 30.070736268018436 ], [ -95.157507962459633, 30.070923268022046 ], [ -95.157448962621601, 30.071277267770114 ], [ -95.157400962625246, 30.071588267575009 ], [ -95.157332962796858, 30.071818267939754 ], [ -95.157273963300696, 30.071882268077388 ], [ -95.157204963201949, 30.071911268166197 ], [ -95.157105963116791, 30.071925268173267 ], [ -95.1571059623558, 30.071898267882204 ], [ -95.157023962359176, 30.071799268417728 ], [ -95.156941962683931, 30.071585267940701 ], [ -95.156777963007983, 30.071260268211393 ], [ -95.156694962255486, 30.0711782679419 ], [ -95.156549963001069, 30.071084268061263 ], [ -95.155936962814849, 30.07098526811966 ], [ -95.155430962636103, 30.07095226788724 ], [ -95.1551339620232, 30.070946268311847 ], [ -95.155082961933005, 30.070902267716324 ], [ -95.155013961723071, 30.07073226801446 ], [ -95.154924962532519, 30.070732267497842 ], [ -95.154899962148605, 30.070765268168731 ], [ -95.154943961805003, 30.070968267701911 ], [ -95.15493196189982, 30.071078267926172 ], [ -95.154848962206273, 30.071150268277723 ], [ -95.154747962157543, 30.071172267985766 ], [ -95.154343962113884, 30.071166268248284 ], [ -95.154121962292948, 30.071139267984268 ], [ -95.153907962365963, 30.071095267804502 ], [ -95.153553962365194, 30.070974268219803 ], [ -95.153478961519809, 30.070914267994862 ], [ -95.152758961480913, 30.071681268603211 ], [ -95.153513961672118, 30.072080268535064 ], [ -95.154186962595517, 30.072497268533525 ], [ -95.154689962200649, 30.072970268551941 ], [ -95.155143962742855, 30.073445268711055 ], [ -95.155504962943894, 30.073931268485914 ], [ -95.155663962425749, 30.074475268707264 ], [ -95.155697962410315, 30.074881268345351 ], [ -95.155571963057113, 30.075311269095558 ], [ -95.155392962823626, 30.075571268765035 ], [ -95.155250962998167, 30.075852269122279 ], [ -95.155008962185704, 30.076038268868796 ], [ -95.154252962173871, 30.076393268822248 ], [ -95.15357496191568, 30.077175269578209 ], [ -95.153409962559465, 30.077531269790239 ], [ -95.153284961606303, 30.07801526939884 ], [ -95.15323296178066, 30.078455269867668 ], [ -95.153265961703909, 30.078818269852775 ], [ -95.153397962615102, 30.079255269331977 ], [ -95.153539961960817, 30.079542269438406 ], [ -95.153804962327882, 30.079827270077427 ], [ -95.154070962083537, 30.080176269521285 ], [ -95.154272962090886, 30.080397269483289 ], [ -95.154523962814153, 30.080650269814136 ], [ -95.154718963040153, 30.080835269795404 ], [ -95.154768962721406, 30.081149269727415 ], [ -95.154773962327994, 30.081406269740437 ], [ -95.154765962582317, 30.081599270126226 ], [ -95.154782962758233, 30.081791270621427 ], [ -95.154871962672786, 30.081950269957066 ], [ -95.155012963092858, 30.082102270104638 ], [ -95.155105962381683, 30.082328269851462 ], [ -95.155162962433508, 30.082417270487717 ], [ -95.15527596255869, 30.082491269877508 ], [ -95.15542796272905, 30.082537270427945 ], [ -95.155588962529563, 30.082611270302586 ], [ -95.155717962653625, 30.082712270310893 ], [ -95.155775962957236, 30.082808270216251 ], [ -95.155783963434544, 30.082842270649991 ], [ -95.155780962534948, 30.083036270478146 ], [ -95.155743962864562, 30.083161270047786 ], [ -95.155665962593588, 30.083252270506449 ], [ -95.155571962578989, 30.083330270510537 ], [ -95.155431962468398, 30.083457270721851 ], [ -95.155242962843289, 30.083556270898153 ], [ -95.155006962662938, 30.08365027088464 ], [ -95.154801963239635, 30.083737270985228 ], [ -95.154683963058829, 30.083780270673667 ], [ -95.154519962549998, 30.083921270926734 ], [ -95.154316962967528, 30.084083270508838 ], [ -95.154173962834761, 30.084230270601829 ], [ -95.153292962169331, 30.08514127101191 ], [ -95.152953962267162, 30.085560271110836 ], [ -95.152473962400862, 30.085673271477773 ], [ -95.151378962415677, 30.085950271028526 ], [ -95.150211961966164, 30.086246271686811 ], [ -95.149918961604172, 30.086320271269937 ], [ -95.149132961447378, 30.086496271659627 ], [ -95.148820961160794, 30.086915271522891 ], [ -95.148606961731645, 30.087310271285752 ], [ -95.148556961670224, 30.087403271308911 ], [ -95.148584961603547, 30.087816271792583 ], [ -95.148755961885655, 30.08797027134478 ], [ -95.150222961358438, 30.088447271967954 ], [ -95.15045396160744, 30.088583271400463 ], [ -95.150538962440535, 30.088809271394545 ], [ -95.150637962452848, 30.089029271649473 ], [ -95.15063296196081, 30.089442272240106 ], [ -95.150537961606702, 30.089671272336858 ], [ -95.15035296200152, 30.089779272139385 ], [ -95.150032961680495, 30.089877272384509 ], [ -95.149692962036468, 30.089924272306391 ], [ -95.149573961871241, 30.089990272154044 ], [ -95.14937796216168, 30.090243272372703 ], [ -95.148981962100024, 30.090675272321167 ], [ -95.148808961543409, 30.091010272131996 ], [ -95.148636961641088, 30.09179327258299 ], [ -95.148517962033793, 30.09242427220369 ], [ -95.14828796149321, 30.092777273044646 ], [ -95.147862961352985, 30.093685273067898 ], [ -95.147880961621269, 30.093867272591726 ], [ -95.147976961129942, 30.093924272502296 ], [ -95.148352961194803, 30.094594273377275 ], [ -95.148572961201594, 30.09498627299379 ], [ -95.148721961489798, 30.095373273231971 ], [ -95.148719961375576, 30.095572273575399 ], [ -95.148612961936479, 30.095899273364104 ], [ -95.148589961645513, 30.096063273231671 ], [ -95.148658961891755, 30.096155273564531 ], [ -95.148943961398075, 30.096348273157069 ], [ -95.149385962049067, 30.096626273420608 ], [ -95.149583962213953, 30.096792273713902 ], [ -95.149652962522907, 30.096862273917651 ], [ -95.149719961584893, 30.096930273429916 ], [ -95.149787962421968, 30.09710927328365 ], [ -95.149791961615549, 30.09730527344777 ], [ -95.149790962219697, 30.097323273754618 ], [ -95.149767961976266, 30.097412273214921 ], [ -95.149625962295133, 30.097677274001146 ], [ -95.149422962197363, 30.097866273620628 ], [ -95.14922796240532, 30.098155274037893 ], [ -95.149216961783935, 30.098233273854124 ], [ -95.149198962424776, 30.098354273489743 ], [ -95.149196962284421, 30.098569273418832 ], [ -95.149246961759289, 30.098743273637854 ], [ -95.149468962494069, 30.098944274311616 ], [ -95.149492961650822, 30.098966274263688 ], [ -95.150068962026126, 30.099240273496541 ], [ -95.150226962355319, 30.099319273626595 ], [ -95.150557962508117, 30.099490273518889 ], [ -95.150667962894516, 30.099547273988414 ], [ -95.150745962669276, 30.099726274118684 ], [ -95.150735962219031, 30.09991827446358 ], [ -95.150698962029423, 30.100065274405981 ], [ -95.150580961966497, 30.100189274517078 ], [ -95.150436962444942, 30.100308274285656 ], [ -95.150123962140199, 30.100412274138513 ], [ -95.149796961793712, 30.100487273804685 ], [ -95.149659962388441, 30.10062327456378 ], [ -95.149535962536461, 30.100806274034955 ], [ -95.149525962213048, 30.100946274428829 ], [ -95.14952296219316, 30.101132274150597 ], [ -95.149559961862963, 30.1012952743142 ], [ -95.149686962006157, 30.101488274230785 ], [ -95.149983962721407, 30.101696274735193 ], [ -95.150912962762916, 30.102344274536513 ], [ -95.15104196284841, 30.102651274874702 ], [ -95.151194962565128, 30.103015274512885 ], [ -95.151213962665906, 30.104366275354113 ], [ -95.151075962381867, 30.104462274602788 ], [ -95.1509539631178, 30.104571275429947 ], [ -95.15093696270111, 30.104582274572156 ], [ -95.150725962738491, 30.104694274892303 ], [ -95.150598963008875, 30.104720274727367 ], [ -95.150370963011142, 30.104718274700598 ], [ -95.150137962561971, 30.104757275106628 ], [ -95.149929962591415, 30.104772275511564 ], [ -95.149864962298736, 30.104843275352469 ], [ -95.149858962640593, 30.104889275128663 ], [ -95.149781962655624, 30.105042275276485 ], [ -95.149810962006313, 30.10514627478781 ], [ -95.149826962592982, 30.105257275554219 ], [ -95.149916962892462, 30.105401275544871 ], [ -95.149950962192648, 30.105443274806394 ], [ -95.150223963018959, 30.105792275173727 ], [ -95.151114962524233, 30.106750275514401 ], [ -95.151346962918538, 30.107218275685831 ], [ -95.151411962472139, 30.107438275798746 ], [ -95.151421963483727, 30.107613275963256 ], [ -95.151357962657329, 30.107736275883571 ], [ -95.151285962440156, 30.107813276069056 ], [ -95.151159963055804, 30.107902275224429 ], [ -95.151000962777317, 30.107957275837101 ], [ -95.150800963155476, 30.107992275852734 ], [ -95.150776963238954, 30.107996276105109 ], [ -95.150568962929498, 30.10798227570805 ], [ -95.150279962469625, 30.107917276080943 ], [ -95.150136963112416, 30.107814275953203 ], [ -95.14972296223614, 30.107582275659865 ], [ -95.14937996214897, 30.107525275654115 ], [ -95.149358961979914, 30.107524275313732 ], [ -95.149152962894561, 30.107533275410528 ], [ -95.148677962070579, 30.107588275424408 ], [ -95.148264962520642, 30.107670276159372 ], [ -95.14813796195692, 30.107715275624624 ], [ -95.148038962291878, 30.107750275503143 ], [ -95.147774961583707, 30.107934275650152 ], [ -95.147420961940298, 30.108156275658008 ], [ -95.147145962436142, 30.108417275800981 ], [ -95.147123961747155, 30.10867327552138 ], [ -95.14707696157771, 30.108959275826859 ], [ -95.147028961927973, 30.109205275993347 ], [ -95.146929961737996, 30.109290276405023 ], [ -95.146863962043085, 30.109347276384501 ], [ -95.14657796208823, 30.109433275925479 ], [ -95.14636296166951, 30.109379275749312 ], [ -95.14625996151662, 30.109299276496124 ], [ -95.146069961817616, 30.109168276161828 ], [ -95.14598096181912, 30.109065275795725 ], [ -95.145831961550755, 30.109015275819441 ], [ -95.145690961406515, 30.108988276203519 ], [ -95.145509961084969, 30.108991276418358 ], [ -95.145282961609468, 30.109000276153267 ], [ -95.145128961029698, 30.109044275879366 ], [ -95.144963961651342, 30.109128276387455 ], [ -95.144765961725483, 30.109259275749924 ], [ -95.144635961404077, 30.109442276424058 ], [ -95.144064960773591, 30.110162276478277 ], [ -95.143660961436055, 30.110704276526782 ], [ -95.143464960844724, 30.110900276438787 ], [ -95.143173960808767, 30.111075276939992 ], [ -95.143067960770736, 30.111139276631906 ], [ -95.142728960709363, 30.111278276835847 ], [ -95.142487960621338, 30.111462276787975 ], [ -95.142438960568583, 30.111499276542762 ], [ -95.14232896033586, 30.111687277017815 ], [ -95.142318961318949, 30.111838276826859 ], [ -95.142262960549488, 30.112020276895027 ], [ -95.142098960359604, 30.112180276798028 ], [ -95.141915960316638, 30.112312276493483 ], [ -95.141898961121754, 30.112324276464957 ], [ -95.14170796097963, 30.112396276891591 ], [ -95.141434960255836, 30.112447276939672 ], [ -95.141241960513426, 30.112386276547571 ], [ -95.140988960576877, 30.112200277306137 ], [ -95.140969960963318, 30.112187276842985 ], [ -95.140593960490321, 30.112146276980077 ], [ -95.140132960020594, 30.112200277318038 ], [ -95.139597959930384, 30.112541277090109 ], [ -95.139093960382525, 30.112805277157207 ], [ -95.138873959497104, 30.112856277393753 ], [ -95.138501960018218, 30.112996277421303 ], [ -95.138021959484888, 30.1133942774781 ], [ -95.137866960059128, 30.113682277382594 ], [ -95.137881959641021, 30.113908277588905 ], [ -95.137887959302532, 30.113935277484678 ], [ -95.137933959970923, 30.114158277748082 ], [ -95.138030960099982, 30.114582277819459 ], [ -95.138044960234694, 30.11493727734895 ], [ -95.138122960055171, 30.115431277306453 ], [ -95.138200959618999, 30.116111277397838 ], [ -95.138215959763627, 30.116192277484316 ], [ -95.138213959612386, 30.11623327824466 ], [ -95.138201960088296, 30.116472277630507 ], [ -95.13807595983954, 30.116852278147388 ], [ -95.137792960001775, 30.117393277660927 ], [ -95.137605959863379, 30.11771627843066 ], [ -95.1373169595185, 30.117977278368105 ], [ -95.136872959342455, 30.118206278187458 ], [ -95.136476959676656, 30.118346278524761 ], [ -95.135619959026755, 30.118704278573233 ], [ -95.135316959253586, 30.118918278118471 ], [ -95.135060959419533, 30.119185278180929 ], [ -95.134632959470309, 30.11983827858603 ], [ -95.134360958893538, 30.119953279080928 ], [ -95.134180958995884, 30.120014278306545 ], [ -95.133936959544272, 30.120164278492773 ], [ -95.133771959306884, 30.120306278588867 ], [ -95.133645958836894, 30.120518279258491 ], [ -95.133405959327675, 30.121186279157925 ], [ -95.133274958841824, 30.121334279263493 ], [ -95.132989958503799, 30.121455279374597 ], [ -95.132885958764845, 30.121608278851351 ], [ -95.132778958586073, 30.121953279368292 ], [ -95.132648959372233, 30.122130278914113 ], [ -95.131910958601466, 30.122998279155382 ], [ -95.131741958600472, 30.123263279397918 ], [ -95.131261958923545, 30.124043279653481 ], [ -95.131147958082522, 30.124351279580303 ], [ -95.131109958745029, 30.124560279982479 ], [ -95.131109958509825, 30.124714279618182 ], [ -95.13118595829917, 30.124813279519437 ], [ -95.1312299586059, 30.125000279938241 ], [ -95.131230958732672, 30.125312280327641 ], [ -95.131122959068904, 30.12575728009455 ], [ -95.131040958435307, 30.125972279708751 ], [ -95.130976958362339, 30.126092279750438 ], [ -95.130945958741918, 30.126191280270998 ], [ -95.130824958854902, 30.126846279813623 ], [ -95.130754958636871, 30.127060280456249 ], [ -95.130824958840904, 30.127143280484219 ], [ -95.130950959136641, 30.127341280593093 ], [ -95.13102695854603, 30.127550280171469 ], [ -95.130975958801812, 30.127945280727975 ], [ -95.131007958303456, 30.128116280790291 ], [ -95.131007959163, 30.128193280080659 ], [ -95.130981958614541, 30.128259280383464 ], [ -95.130931958606723, 30.128308280935325 ], [ -95.130836958934353, 30.128336280121761 ], [ -95.130665958795092, 30.128330280097483 ], [ -95.130595958472583, 30.128297280330589 ], [ -95.130545958887168, 30.12824828037073 ], [ -95.13056495815681, 30.127995280072241 ], [ -95.130539958074408, 30.127912280316085 ], [ -95.130488958117141, 30.127846280592511 ], [ -95.130431958873302, 30.127802280043507 ], [ -95.130343958730336, 30.127753280597126 ], [ -95.130229958053448, 30.127841280888667 ], [ -95.130045958809717, 30.12806628028731 ], [ -95.129748958288815, 30.128352280219818 ], [ -95.129564958463604, 30.128429280960269 ], [ -95.129318958076709, 30.128511280227713 ], [ -95.129096957853562, 30.128709280566945 ], [ -95.128938958601296, 30.128868280316727 ], [ -95.128862958306613, 30.128929280279394 ], [ -95.128691958670586, 30.129017280521069 ], [ -95.128533958437387, 30.129138280634571 ], [ -95.128387958005277, 30.129374280540553 ], [ -95.128254958418722, 30.129775280484495 ], [ -95.128134957651554, 30.130385280992009 ], [ -95.128076958090091, 30.13083628099114 ], [ -95.127956958103397, 30.131557280943689 ], [ -95.127962958336411, 30.131617281600061 ], [ -95.128006957644047, 30.131722281125182 ], [ -95.12805195821241, 30.131782281694711 ], [ -95.128234957814882, 30.131892280973137 ], [ -95.12834195801706, 30.131931281556742 ], [ -95.128449958020767, 30.131953281233102 ], [ -95.128538958523848, 30.131953281520929 ], [ -95.128753957958352, 30.13193128149312 ], [ -95.128885958706391, 30.132547281574503 ], [ -95.128942958371027, 30.13264028187989 ], [ -95.129106958480662, 30.132794281465014 ], [ -95.12919595809943, 30.132915281889463 ], [ -95.128961958597714, 30.133031281773281 ], [ -95.12837995842419, 30.133437281815972 ], [ -95.128233958605804, 30.133569281451251 ], [ -95.128011958644095, 30.133992281407657 ], [ -95.127929958523723, 30.134267281780907 ], [ -95.127935958078766, 30.134344282149968 ], [ -95.127960957807687, 30.134421281618629 ], [ -95.12799895830905, 30.134487281532436 ], [ -95.128163958495364, 30.134685281648355 ], [ -95.128175958140432, 30.134729281913597 ], [ -95.128144958560767, 30.134845282304571 ], [ -95.12793595844758, 30.135169282272042 ], [ -95.127871958290683, 30.135345282325726 ], [ -95.127852958223301, 30.135444281693033 ], [ -95.127840957750621, 30.135653281686842 ], [ -95.127852958120044, 30.136060282640095 ], [ -95.127814958209015, 30.136214282617008 ], [ -95.127782958751155, 30.136274282247498 ], [ -95.127706957769107, 30.136379282048679 ], [ -95.127377958531724, 30.136642282091582 ], [ -95.127124957596365, 30.136884282479873 ], [ -95.126953957578735, 30.136989282245072 ], [ -95.126858958117808, 30.137011282749075 ], [ -95.126789958177326, 30.137005282801407 ], [ -95.126694958508082, 30.136972282545109 ], [ -95.126295957804956, 30.13676828281605 ], [ -95.126175957755208, 30.136735282444718 ], [ -95.126087957568387, 30.136719282748587 ], [ -95.126011957839864, 30.136724282201545 ], [ -95.125966957409489, 30.136741282019965 ], [ -95.125922957862088, 30.136768282708623 ], [ -95.125840957775409, 30.136867282349339 ], [ -95.125802958203082, 30.137016282247881 ], [ -95.125802957722527, 30.13715828293223 ], [ -95.125852957839399, 30.137219282855224 ], [ -95.1259099574483, 30.137340282389115 ], [ -95.125915957696932, 30.137389282896162 ], [ -95.125909958185105, 30.137510283002069 ], [ -95.125833957558044, 30.137598282901479 ], [ -95.125687957690005, 30.1377302825302 ], [ -95.125523958202294, 30.137945283070035 ], [ -95.125517957632781, 30.138011282480207 ], [ -95.125535957818158, 30.138115282691768 ], [ -95.125573957946258, 30.138198282973562 ], [ -95.125643958087423, 30.138297283115993 ], [ -95.125788957997031, 30.138467282950867 ], [ -95.125896957997583, 30.138544282346594 ], [ -95.126003957747074, 30.138599282379584 ], [ -95.126123957572744, 30.138676282399118 ], [ -95.126168957589158, 30.138731282894955 ], [ -95.126193957691839, 30.138786283235497 ], [ -95.126180958166501, 30.138852283254369 ], [ -95.126149958087481, 30.138902283258787 ], [ -95.126047957464436, 30.138973282922699 ], [ -95.125845958224602, 30.139088283018225 ], [ -95.125718957462055, 30.139154283082071 ], [ -95.125528957958409, 30.139226283160085 ], [ -95.12542195771691, 30.139231282935395 ], [ -95.125263957883078, 30.139215282781027 ], [ -95.125007957782231, 30.139123282675691 ], [ -95.124558957231244, 30.13898028302269 ], [ -95.124508957770658, 30.139079283203433 ], [ -95.124470957836635, 30.139123282780638 ], [ -95.124362957111487, 30.139200283084538 ], [ -95.124293957437388, 30.139233282846636 ], [ -95.124242957632703, 30.139277283263773 ], [ -95.124147957774568, 30.13942628294043 ], [ -95.124065957657976, 30.139799282720272 ], [ -95.124103957682195, 30.139854283471028 ], [ -95.124116957276243, 30.139909283192342 ], [ -95.124116957070854, 30.139975283022711 ], [ -95.124078957263251, 30.140129282816019 ], [ -95.124085957426558, 30.140206283201401 ], [ -95.124078957708363, 30.140294282854907 ], [ -95.124104957277893, 30.14050928303292 ], [ -95.124142957323144, 30.140663283025383 ], [ -95.124243957637717, 30.140894283094855 ], [ -95.124268957639643, 30.140943283200681 ], [ -95.124344957442773, 30.141026283787294 ], [ -95.124465957339936, 30.141119282969406 ], [ -95.124680957882561, 30.141240283265383 ], [ -95.12474995732741, 30.141289283657276 ], [ -95.124819957307082, 30.141361283372131 ], [ -95.124838957298593, 30.14142128300535 ], [ -95.12481995729442, 30.141542283858385 ], [ -95.124668958181445, 30.141790283553931 ], [ -95.124655957651711, 30.141861283819019 ], [ -95.124649957502427, 30.142219283884597 ], [ -95.12458695800089, 30.142389283373259 ], [ -95.124554957480925, 30.142554283717001 ], [ -95.124510957852721, 30.142686283700929 ], [ -95.124497957775731, 30.142774283704043 ], [ -95.124497957862374, 30.142928283430468 ], [ -95.124529957786365, 30.143060283333003 ], [ -95.124555957642428, 30.143241283636566 ], [ -95.124580957635857, 30.14331328392322 ], [ -95.1245749582407, 30.143412283530822 ], [ -95.124542957653873, 30.143483284218547 ], [ -95.124378958194868, 30.143736283984676 ], [ -95.124334957826392, 30.143868283848867 ], [ -95.124340957875432, 30.144039283742849 ], [ -95.124359957989242, 30.144176284105036 ], [ -95.124429957585676, 30.144347283904843 ], [ -95.124476957875444, 30.144510283695531 ], [ -95.125140958166526, 30.144044283779024 ], [ -95.125733958090422, 30.143551283976183 ], [ -95.126042957856129, 30.143262283605956 ], [ -95.1260739578818, 30.143235283968338 ], [ -95.127016958194488, 30.142437283391221 ], [ -95.128269958132037, 30.141409283541858 ], [ -95.128325958676157, 30.14136228361097 ], [ -95.128962958948847, 30.140916283406114 ], [ -95.129037959292134, 30.140863283355813 ], [ -95.129112958845198, 30.140811283333655 ], [ -95.129872959120618, 30.140279283317543 ], [ -95.130184958695395, 30.140057283087156 ], [ -95.130511959151107, 30.139839282616684 ], [ -95.130654959616834, 30.139686282721172 ], [ -95.130692959450926, 30.139646282744138 ], [ -95.130956959382061, 30.139348283037133 ], [ -95.131577959004758, 30.138646282615568 ], [ -95.131725959270227, 30.138545282138271 ], [ -95.133030960157399, 30.137573282048724 ], [ -95.134191960057706, 30.13664028198545 ], [ -95.134587959754043, 30.136362281813707 ], [ -95.134619959996371, 30.136339282292401 ], [ -95.13564596004943, 30.135570282024585 ], [ -95.135686959920591, 30.135539281944215 ], [ -95.154684964847434, 30.120279278073642 ], [ -95.165215966805093, 30.111821276065665 ], [ -95.166569967283237, 30.110737275921871 ], [ -95.17266996823497, 30.105862274090192 ], [ -95.172721967989105, 30.10581727425939 ], [ -95.172859968459491, 30.105673274200775 ], [ -95.172881968442482, 30.105654274007502 ], [ -95.17292096793642, 30.105619274176608 ], [ -95.17310296855517, 30.105475274295387 ], [ -95.173130968819677, 30.105452274773988 ], [ -95.175145969202816, 30.103820273899828 ], [ -95.177477969605846, 30.101932273925041 ], [ -95.180533970564895, 30.099457273102782 ], [ -95.180629970005569, 30.099380272526879 ], [ -95.180803969674685, 30.099241273077265 ], [ -95.190674972064173, 30.091349270486546 ], [ -95.191704972585896, 30.090526270323284 ], [ -95.195730973476984, 30.087326270122134 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 106, "Tract": "48201222501", "Area_SqMi": 0.35108817708918194, "total_2009": 984, "total_2010": 1102, "total_2011": 570, "total_2012": 730, "total_2013": 747, "total_2014": 699, "total_2015": 715, "total_2016": 485, "total_2017": 454, "total_2018": 344, "total_2019": 406, "total_2020": 439, "age1": 97, "age2": 307, "age3": 83, "earn1": 44, "earn2": 79, "earn3": 364, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 0, "naics_s06": 21, "naics_s07": 148, "naics_s08": 0, "naics_s09": 237, "naics_s10": 1, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 48, "naics_s19": 8, "naics_s20": 0, "race1": 336, "race2": 109, "race3": 2, "race4": 30, "race5": 1, "race6": 9, "ethnicity1": 303, "ethnicity2": 184, "edu1": 63, "edu2": 97, "edu3": 139, "edu4": 91, "Shape_Length": 13373.307624604677, "Shape_Area": 9787737.4838258866, "total_2021": 431, "total_2022": 487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412319021699176, 29.924681229317891 ], [ -95.412160021426331, 29.924670229419473 ], [ -95.412018021246865, 29.924665229426317 ], [ -95.411860020955913, 29.924660229383264 ], [ -95.411756021742576, 29.924652229286309 ], [ -95.411352021183518, 29.924626228969117 ], [ -95.41116602157723, 29.924615228989634 ], [ -95.411051020942907, 29.924613228991902 ], [ -95.410834021022353, 29.924606229488496 ], [ -95.410341020748461, 29.924579228937773 ], [ -95.409982021468508, 29.924590229208967 ], [ -95.409663020528257, 29.924659228902271 ], [ -95.409436020467211, 29.924717229294199 ], [ -95.408563020708229, 29.924954228990853 ], [ -95.408078020372173, 29.925094229686323 ], [ -95.407795020924155, 29.92513522905378 ], [ -95.407184019825991, 29.925142229249765 ], [ -95.405661019646132, 29.925160229894949 ], [ -95.405031019702122, 29.925170229903507 ], [ -95.404606020128611, 29.925173229988172 ], [ -95.4035220194245, 29.925186229975122 ], [ -95.402707019630526, 29.925196229788256 ], [ -95.402459019464473, 29.925196229619107 ], [ -95.401995019175573, 29.925200229532386 ], [ -95.401726019019833, 29.925230229358419 ], [ -95.401616018523285, 29.925277230050444 ], [ -95.401480019320289, 29.925313229380368 ], [ -95.401153019147515, 29.925529229793373 ], [ -95.40084201824294, 29.925695229445445 ], [ -95.400680018853862, 29.925772229713736 ], [ -95.400493018252433, 29.925812230024775 ], [ -95.400082018687783, 29.925914229826237 ], [ -95.399740018778516, 29.925954230131474 ], [ -95.397882018137324, 29.92598523003263 ], [ -95.397864018318728, 29.926495230229499 ], [ -95.397863017449652, 29.926509229988927 ], [ -95.397861017599567, 29.926568229832085 ], [ -95.397885017836899, 29.92675423019768 ], [ -95.397892017645347, 29.926806229889653 ], [ -95.398053017561736, 29.92712323037841 ], [ -95.398325018404577, 29.927396229984296 ], [ -95.398902017977008, 29.927994230354749 ], [ -95.399462018230594, 29.928584230612135 ], [ -95.399702018905316, 29.928830230830297 ], [ -95.399883018145104, 29.929077230447518 ], [ -95.399984018988249, 29.929332230455053 ], [ -95.400046019132105, 29.929599230712114 ], [ -95.400057018222029, 29.930407231059391 ], [ -95.400069018621011, 29.931232230753757 ], [ -95.400085018963836, 29.931795230773918 ], [ -95.402130019243884, 29.931771231046159 ], [ -95.403285019278343, 29.931768231217688 ], [ -95.404106019420709, 29.931749231171469 ], [ -95.404549019888307, 29.931745231124705 ], [ -95.406227020696292, 29.931746231210624 ], [ -95.407353020532156, 29.931726230745788 ], [ -95.409762021658864, 29.931695230823106 ], [ -95.410316021817721, 29.931723231125492 ], [ -95.411127021198254, 29.931767230653492 ], [ -95.411229021385083, 29.931776230924402 ], [ -95.411456022194301, 29.931784230554136 ], [ -95.411683021965231, 29.931793230764718 ], [ -95.411820021649561, 29.931798230749223 ], [ -95.411991021786179, 29.931804230611121 ], [ -95.411989021880302, 29.931625230408564 ], [ -95.411976021597425, 29.930417230611713 ], [ -95.412057021474951, 29.928800229707353 ], [ -95.412319021699176, 29.924681229317891 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 107, "Tract": "48201222401", "Area_SqMi": 1.9555419415796886, "total_2009": 2242, "total_2010": 2023, "total_2011": 1986, "total_2012": 2094, "total_2013": 2101, "total_2014": 2036, "total_2015": 2123, "total_2016": 2552, "total_2017": 2455, "total_2018": 2494, "total_2019": 2367, "total_2020": 2516, "age1": 411, "age2": 1282, "age3": 624, "earn1": 822, "earn2": 419, "earn3": 1076, "naics_s01": 4, "naics_s02": 0, "naics_s03": 0, "naics_s04": 717, "naics_s05": 69, "naics_s06": 224, "naics_s07": 245, "naics_s08": 3, "naics_s09": 0, "naics_s10": 18, "naics_s11": 44, "naics_s12": 9, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 907, "naics_s17": 0, "naics_s18": 14, "naics_s19": 63, "naics_s20": 0, "race1": 1337, "race2": 859, "race3": 27, "race4": 57, "race5": 5, "race6": 32, "ethnicity1": 1597, "ethnicity2": 720, "edu1": 474, "edu2": 599, "edu3": 589, "edu4": 244, "Shape_Length": 40924.546433496951, "Shape_Area": 54517162.387758859, "total_2021": 2422, "total_2022": 2317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412702021324648, 29.915076227597989 ], [ -95.412698020968847, 29.914927227301476 ], [ -95.412641021409911, 29.912501226902908 ], [ -95.412519020368677, 29.902488224311558 ], [ -95.412477020305971, 29.900601224137663 ], [ -95.412460020113784, 29.89965122427272 ], [ -95.412281020294301, 29.899595223890387 ], [ -95.41212902074443, 29.899547223921019 ], [ -95.411886020037926, 29.899471223758297 ], [ -95.411452020213375, 29.899336224478244 ], [ -95.410991020255864, 29.899122223777514 ], [ -95.410808019750377, 29.899017224013971 ], [ -95.410550020255457, 29.898896224468146 ], [ -95.410392019743526, 29.898748224146679 ], [ -95.410291020242212, 29.898555223930479 ], [ -95.41023402004879, 29.898341224270027 ], [ -95.410220020240629, 29.898110224181917 ], [ -95.410216019790738, 29.898032223814845 ], [ -95.410260019939201, 29.897632223612611 ], [ -95.410260019743376, 29.897522224076713 ], [ -95.41021501985513, 29.897401223630911 ], [ -95.410077019978104, 29.897296223416149 ], [ -95.409824019812248, 29.897082223716563 ], [ -95.409597019918948, 29.896977223663662 ], [ -95.409351019282383, 29.896999223358819 ], [ -95.408991019798023, 29.897049223711821 ], [ -95.40863201924239, 29.897016224145275 ], [ -95.408455019816643, 29.896999223641377 ], [ -95.408222019656748, 29.89691122393485 ], [ -95.407938019194106, 29.896872223838471 ], [ -95.407780019520317, 29.896768223826253 ], [ -95.407540018744527, 29.896394223425762 ], [ -95.407503018802245, 29.896273223996154 ], [ -95.407357018632254, 29.896031223505187 ], [ -95.407288018750265, 29.895971223791921 ], [ -95.407194018899858, 29.895960223151878 ], [ -95.406998018411116, 29.896009223305587 ], [ -95.406689019174337, 29.896163223703159 ], [ -95.406474018946398, 29.896141223222095 ], [ -95.406222018965934, 29.896097223828122 ], [ -95.406073018625619, 29.896144223896393 ], [ -95.405963018229755, 29.896179223748991 ], [ -95.405780018238858, 29.896267223303983 ], [ -95.405685018864119, 29.896284223926244 ], [ -95.405540018650171, 29.896267223715267 ], [ -95.40530001894976, 29.8961902237989 ], [ -95.405086018594687, 29.896091223601772 ], [ -95.404922018553208, 29.896064223513683 ], [ -95.404474018285114, 29.896085223873392 ], [ -95.404360018185415, 29.896058223406616 ], [ -95.404045018031496, 29.895876223179638 ], [ -95.403843017639048, 29.89578822325414 ], [ -95.403616018438044, 29.895717223601299 ], [ -95.403364018385787, 29.89566222393757 ], [ -95.403143018196801, 29.895574223621825 ], [ -95.402991017934696, 29.895541223547994 ], [ -95.40282101771345, 29.895519223899193 ], [ -95.402518017458291, 29.895618223669707 ], [ -95.402314018191106, 29.89569622405887 ], [ -95.402291017880543, 29.8957052238957 ], [ -95.402127017391408, 29.895749223292832 ], [ -95.401982017816536, 29.895727224105912 ], [ -95.401603017483652, 29.895617223470264 ], [ -95.40131901790626, 29.89548522377877 ], [ -95.401168017846146, 29.895375224075217 ], [ -95.401092017702084, 29.895232224017526 ], [ -95.400979017066888, 29.894974223927317 ], [ -95.400783017754534, 29.894633223470255 ], [ -95.400607017185635, 29.894474223308173 ], [ -95.400222017488687, 29.894303223556719 ], [ -95.399849016739253, 29.894220223593571 ], [ -95.399654016575994, 29.894088223364697 ], [ -95.399477016558848, 29.893890223146386 ], [ -95.399432017409552, 29.893845223058666 ], [ -95.39934301660503, 29.893698223671525 ], [ -95.399274017062069, 29.893577223061492 ], [ -95.399210017259051, 29.893519223392232 ], [ -95.399049016669608, 29.893335223733008 ], [ -95.398892016475585, 29.893246223122535 ], [ -95.398594017099086, 29.893077223020128 ], [ -95.398052016233152, 29.892714223433348 ], [ -95.397781016839971, 29.892680223272912 ], [ -95.397547015956249, 29.892664223173341 ], [ -95.39741501680615, 29.89266422278433 ], [ -95.397314015801626, 29.89269122346251 ], [ -95.397112016522968, 29.892768223527934 ], [ -95.396892016562731, 29.892864223052197 ], [ -95.396714016437997, 29.892939223209268 ], [ -95.396392015629871, 29.893142223698465 ], [ -95.396102016096279, 29.893268223524053 ], [ -95.395881015697455, 29.893323223546478 ], [ -95.395641016227472, 29.893323223224431 ], [ -95.395465016053137, 29.893268223577913 ], [ -95.395023015746688, 29.892965223599028 ], [ -95.394834015459821, 29.892932223696235 ], [ -95.394430015035994, 29.892778223461978 ], [ -95.394064015330017, 29.892718223520152 ], [ -95.393717014968914, 29.892602223489771 ], [ -95.393313014963056, 29.892388223224916 ], [ -95.393036015208779, 29.892190222952042 ], [ -95.392689014607143, 29.892063223474285 ], [ -95.392342015123347, 29.892085223082073 ], [ -95.392014014778653, 29.892085223017052 ], [ -95.391509014414979, 29.892041223083268 ], [ -95.39125001504928, 29.891936223119639 ], [ -95.391042014811362, 29.891881223362841 ], [ -95.390897014439304, 29.891859223673805 ], [ -95.390619014962184, 29.891991222921192 ], [ -95.390418014344689, 29.891985223589995 ], [ -95.390298013986921, 29.891958223707245 ], [ -95.390108014900093, 29.891936222973353 ], [ -95.389888014227807, 29.891930223444625 ], [ -95.389572014173595, 29.891985223170995 ], [ -95.389493014263365, 29.892005223450205 ], [ -95.389332014441678, 29.892045223474071 ], [ -95.388884013814916, 29.892210223340836 ], [ -95.388613014401756, 29.892260223699768 ], [ -95.38846801357937, 29.892271223197639 ], [ -95.388253013946169, 29.892254223527758 ], [ -95.387957013853168, 29.892265223178654 ], [ -95.387862013427224, 29.892314223705682 ], [ -95.38776101365049, 29.892391223693014 ], [ -95.387212013391633, 29.892974223919829 ], [ -95.387054013764924, 29.893100223949844 ], [ -95.38692601317284, 29.893113223973067 ], [ -95.386884013860922, 29.893117223539846 ], [ -95.386713013344348, 29.893100223820337 ], [ -95.386469013820331, 29.892990223545784 ], [ -95.386385013315703, 29.892952223578316 ], [ -95.386032013718733, 29.892687224039907 ], [ -95.385572013493189, 29.892379223885271 ], [ -95.385338012720496, 29.892148223765087 ], [ -95.385200013618686, 29.891846223846834 ], [ -95.385099012646364, 29.891741223333995 ], [ -95.384575012946144, 29.891604223765619 ], [ -95.384241013049632, 29.891648223903932 ], [ -95.383995012612075, 29.891758223765276 ], [ -95.383780013283598, 29.891884223767459 ], [ -95.383464012808744, 29.891994223431354 ], [ -95.383086012732093, 29.892104223634885 ], [ -95.382846012049399, 29.892224223617497 ], [ -95.382606012527702, 29.892417223219176 ], [ -95.382448012268284, 29.892510223314009 ], [ -95.382215012711995, 29.892576223515388 ], [ -95.381988012259441, 29.892735223948392 ], [ -95.381704012176272, 29.892862224133889 ], [ -95.381230011892626, 29.89297722416033 ], [ -95.38095301244806, 29.893010224196185 ], [ -95.380606012390203, 29.893015224191018 ], [ -95.379552011874708, 29.893295223520393 ], [ -95.379381011270311, 29.893306223885681 ], [ -95.378915011623306, 29.893245224270927 ], [ -95.378731011860211, 29.893201224264672 ], [ -95.378456011680754, 29.893031224183321 ], [ -95.378366011906735, 29.8929212242147 ], [ -95.378094011214557, 29.892800224060885 ], [ -95.377293010953991, 29.892530224094912 ], [ -95.377233010795976, 29.892479223965175 ], [ -95.377117010933958, 29.892381223771224 ], [ -95.377022011207998, 29.892282223551852 ], [ -95.376921010786091, 29.892222223586053 ], [ -95.376713011003204, 29.892211223569287 ], [ -95.376006010494336, 29.892265223625248 ], [ -95.375861011077347, 29.892293224139017 ], [ -95.375672010905603, 29.892397224293763 ], [ -95.375419010961394, 29.892590224002323 ], [ -95.375217010587576, 29.892699224036008 ], [ -95.375010010896531, 29.892690224276485 ], [ -95.374890010998953, 29.892712224224745 ], [ -95.374745010612287, 29.892723224309258 ], [ -95.37452401037956, 29.892701224053365 ], [ -95.374340010413121, 29.892676223702953 ], [ -95.374278010903865, 29.892668223617928 ], [ -95.374077010692375, 29.892627223844734 ], [ -95.373710010577767, 29.892553224279673 ], [ -95.373527010625267, 29.892476224055901 ], [ -95.373413009732261, 29.892459224235996 ], [ -95.373092009779214, 29.892471224119863 ], [ -95.372858010033994, 29.892454224100959 ], [ -95.372606010170841, 29.892366223587786 ], [ -95.372341010349899, 29.892158223879722 ], [ -95.372227010172352, 29.892114223582247 ], [ -95.372139009376909, 29.89210322408448 ], [ -95.371918009613907, 29.892158223781163 ], [ -95.371451009861417, 29.892378223822242 ], [ -95.371293009251929, 29.89242222440263 ], [ -95.371114009481133, 29.892449224472823 ], [ -95.370852009984631, 29.892488223766684 ], [ -95.370662009118504, 29.89253222369102 ], [ -95.370542009128897, 29.892552224054924 ], [ -95.371309009380894, 29.895670224391772 ], [ -95.371485009883344, 29.896387225205959 ], [ -95.371947009731798, 29.89826222542618 ], [ -95.372102010290035, 29.898904225166863 ], [ -95.372879010492241, 29.90183922565349 ], [ -95.372978010657476, 29.902212226044952 ], [ -95.373068010436683, 29.902212226080781 ], [ -95.373139010496374, 29.902211226012277 ], [ -95.374756010650131, 29.90219822608179 ], [ -95.375757010908529, 29.902186226082211 ], [ -95.377301011225555, 29.902176226213058 ], [ -95.378446011395596, 29.902172225917024 ], [ -95.37884701216899, 29.902166225572742 ], [ -95.380983012647889, 29.902159225690092 ], [ -95.382645013282172, 29.902138226104935 ], [ -95.38277901329964, 29.90213822602562 ], [ -95.383653013287002, 29.902137225362132 ], [ -95.384687013530993, 29.902127225176621 ], [ -95.385554013275907, 29.90212422550945 ], [ -95.386792014201291, 29.902114225840524 ], [ -95.387348013700148, 29.902108225141731 ], [ -95.387638014015437, 29.902106225308831 ], [ -95.388467014084199, 29.902102225391261 ], [ -95.389299015006273, 29.902094225758407 ], [ -95.389509014720218, 29.902094225801552 ], [ -95.390112014373443, 29.902092224931263 ], [ -95.39075801476514, 29.902089225191343 ], [ -95.390974014603657, 29.90210022572953 ], [ -95.391080014719307, 29.902115224991785 ], [ -95.391147015271969, 29.902119225710663 ], [ -95.391301015421959, 29.902146225319409 ], [ -95.3913890149298, 29.902168225695696 ], [ -95.391581015661274, 29.902229225110737 ], [ -95.392429015313596, 29.902545225476565 ], [ -95.392610015174824, 29.902600225760693 ], [ -95.392793015180715, 29.902647225463898 ], [ -95.392979016025947, 29.902675225046725 ], [ -95.393102015209621, 29.902686225182485 ], [ -95.393164015292967, 29.902691225068466 ], [ -95.393348015967163, 29.902701225344103 ], [ -95.393956015473847, 29.902691225118605 ], [ -95.394330015517284, 29.90268622564982 ], [ -95.394733015822339, 29.902676225712138 ], [ -95.395136016595217, 29.902675225521858 ], [ -95.396615016826217, 29.902649225011814 ], [ -95.39681501656321, 29.902651225084856 ], [ -95.397430016951503, 29.902635225002694 ], [ -95.398584017394938, 29.902621224804218 ], [ -95.398950017118608, 29.9026122248052 ], [ -95.399463017688731, 29.902609225268975 ], [ -95.400141017421859, 29.902594225290482 ], [ -95.400392017058678, 29.902574224763811 ], [ -95.40048201717056, 29.902559224726577 ], [ -95.40066201784829, 29.903063225458524 ], [ -95.400783017691197, 29.903402224873435 ], [ -95.40090001752327, 29.903729225721914 ], [ -95.401190017427808, 29.904532225877933 ], [ -95.401311018037603, 29.904867225977501 ], [ -95.401724017521389, 29.906029226196889 ], [ -95.401861017774152, 29.906407225674432 ], [ -95.402244018160985, 29.907467226459087 ], [ -95.402963018527302, 29.909454226168233 ], [ -95.403054018193544, 29.909694226136772 ], [ -95.403424018793785, 29.910729226455313 ], [ -95.40407101887638, 29.912522226727589 ], [ -95.40420001891556, 29.912876226950516 ], [ -95.4045580189443, 29.913878227108313 ], [ -95.404620018782467, 29.914056227699348 ], [ -95.404800019485492, 29.914620227603955 ], [ -95.405027019669987, 29.915315227147016 ], [ -95.40505001977246, 29.915385227301488 ], [ -95.405140018997571, 29.915416227498511 ], [ -95.405771019734047, 29.915319227901467 ], [ -95.406325019621633, 29.915252227118994 ], [ -95.406814019506641, 29.91521622706507 ], [ -95.40796901968065, 29.915193227021483 ], [ -95.408583020016479, 29.915171227813016 ], [ -95.40885302019025, 29.915168227143585 ], [ -95.409640020779676, 29.915158227476539 ], [ -95.410952021115023, 29.915134227180875 ], [ -95.411565021123835, 29.915123227480922 ], [ -95.412178020904975, 29.915112227687228 ], [ -95.412403021097745, 29.91509622692152 ], [ -95.412560021122047, 29.915085227345173 ], [ -95.412702021324648, 29.915076227597989 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 108, "Tract": "48201341302", "Area_SqMi": 0.78684776706479531, "total_2009": 9333, "total_2010": 9358, "total_2011": 7282, "total_2012": 6663, "total_2013": 6185, "total_2014": 5839, "total_2015": 5726, "total_2016": 5684, "total_2017": 5166, "total_2018": 5084, "total_2019": 5051, "total_2020": 5034, "age1": 1144, "age2": 2957, "age3": 1368, "earn1": 766, "earn2": 1271, "earn3": 3432, "naics_s01": 0, "naics_s02": 78, "naics_s03": 16, "naics_s04": 132, "naics_s05": 142, "naics_s06": 112, "naics_s07": 120, "naics_s08": 44, "naics_s09": 72, "naics_s10": 405, "naics_s11": 85, "naics_s12": 1820, "naics_s13": 32, "naics_s14": 840, "naics_s15": 105, "naics_s16": 776, "naics_s17": 320, "naics_s18": 262, "naics_s19": 68, "naics_s20": 40, "race1": 4114, "race2": 821, "race3": 23, "race4": 405, "race5": 7, "race6": 99, "ethnicity1": 4238, "ethnicity2": 1231, "edu1": 616, "edu2": 989, "edu3": 1357, "edu4": 1363, "Shape_Length": 21283.313468664521, "Shape_Area": 21935969.04235401, "total_2021": 5153, "total_2022": 5469 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.120344930085707, 29.554872163548634 ], [ -95.12020593033985, 29.554719163597664 ], [ -95.11955193050278, 29.55408716270723 ], [ -95.118598929591897, 29.553355162534356 ], [ -95.117999929724206, 29.553006163065959 ], [ -95.116674929310662, 29.552423162406164 ], [ -95.116634929536517, 29.552409163214683 ], [ -95.116400929005167, 29.552324162997344 ], [ -95.116373929194182, 29.552312162694793 ], [ -95.116102929335383, 29.552200163161963 ], [ -95.114391928520334, 29.551491162590551 ], [ -95.114061928143343, 29.551358162680856 ], [ -95.113484928740874, 29.551124162395645 ], [ -95.113315927813503, 29.55105616294064 ], [ -95.113200928109663, 29.551010162902806 ], [ -95.112789927906476, 29.550844163044644 ], [ -95.112052928430387, 29.550545163032606 ], [ -95.111929927460693, 29.550496162188782 ], [ -95.111781927861017, 29.550436162463008 ], [ -95.111726927980726, 29.55041416298161 ], [ -95.110918927360075, 29.550088162425844 ], [ -95.110859927657032, 29.55006416213617 ], [ -95.110428927640811, 29.549861162183834 ], [ -95.110165927842019, 29.54972216234356 ], [ -95.109962927416873, 29.549600162743246 ], [ -95.109845927316542, 29.549530162544205 ], [ -95.109603927175385, 29.549364162852743 ], [ -95.109349927198565, 29.549176162179695 ], [ -95.109068926847272, 29.548946162513111 ], [ -95.108792927447041, 29.548696162244244 ], [ -95.108535926748019, 29.548436162633241 ], [ -95.108124926571392, 29.547959162135143 ], [ -95.107824926423945, 29.547598162199478 ], [ -95.106593925958137, 29.546113161467709 ], [ -95.106545926696157, 29.546066161594268 ], [ -95.106419925912064, 29.545943161974797 ], [ -95.106293926419923, 29.54598716209593 ], [ -95.10508792585604, 29.546381162389146 ], [ -95.104904925478607, 29.546441161789229 ], [ -95.104720925434705, 29.54650116161168 ], [ -95.103235925795744, 29.546987162292581 ], [ -95.103146925132592, 29.547017162314937 ], [ -95.102545925458159, 29.547218162410481 ], [ -95.10224292571246, 29.547320162136366 ], [ -95.101698925580422, 29.5475091620076 ], [ -95.101316924934281, 29.547642162563985 ], [ -95.100093924603158, 29.548060162509806 ], [ -95.099342924222015, 29.548307162813234 ], [ -95.098766924494527, 29.548495162404919 ], [ -95.098421924880725, 29.548607162395854 ], [ -95.097687924093123, 29.548846162620936 ], [ -95.096534923935351, 29.549306162491565 ], [ -95.095435923713111, 29.549680163397689 ], [ -95.092814923365196, 29.550511162838333 ], [ -95.092986922950686, 29.550989162914949 ], [ -95.093020922649956, 29.551040163321684 ], [ -95.093053922891642, 29.551092163685706 ], [ -95.093120923002033, 29.551195163518855 ], [ -95.093191923109174, 29.551305162999803 ], [ -95.093237923641738, 29.551376163048026 ], [ -95.093604923716867, 29.551767163773988 ], [ -95.093935923720778, 29.552028163760923 ], [ -95.094272923922347, 29.55220116344157 ], [ -95.097517924471305, 29.553572163901325 ], [ -95.098834924553358, 29.55410516365432 ], [ -95.107671927061631, 29.557682164491464 ], [ -95.107960926803116, 29.557804164033282 ], [ -95.108426927352923, 29.558001163972829 ], [ -95.108879927908021, 29.558187164570377 ], [ -95.110319928024381, 29.558779164325646 ], [ -95.112377928813657, 29.55964116437368 ], [ -95.113393928516146, 29.560061164350412 ], [ -95.115482928815922, 29.560909164336454 ], [ -95.115728929791246, 29.5610101645348 ], [ -95.116736929578451, 29.559138164295305 ], [ -95.117405929385853, 29.557896163696146 ], [ -95.117626930071125, 29.557493164027079 ], [ -95.117812929409141, 29.557193163714722 ], [ -95.117912929614889, 29.557046163955722 ], [ -95.118017929904227, 29.556902163859743 ], [ -95.118169930169742, 29.556708163856094 ], [ -95.118357929916783, 29.55648616375689 ], [ -95.118479929762188, 29.556354163564773 ], [ -95.118736929997226, 29.556097163880921 ], [ -95.118871929597859, 29.555973163713777 ], [ -95.119009930427111, 29.555853163151138 ], [ -95.119151929640893, 29.55573616376719 ], [ -95.119446930564237, 29.555513163697473 ], [ -95.120344930085707, 29.554872163548634 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 109, "Tract": "48201350801", "Area_SqMi": 0.72935070565459037, "total_2009": 169, "total_2010": 193, "total_2011": 197, "total_2012": 217, "total_2013": 200, "total_2014": 200, "total_2015": 187, "total_2016": 203, "total_2017": 207, "total_2018": 254, "total_2019": 197, "total_2020": 188, "age1": 73, "age2": 181, "age3": 85, "earn1": 78, "earn2": 97, "earn3": 164, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 7, "naics_s06": 1, "naics_s07": 47, "naics_s08": 0, "naics_s09": 3, "naics_s10": 41, "naics_s11": 102, "naics_s12": 7, "naics_s13": 0, "naics_s14": 9, "naics_s15": 5, "naics_s16": 65, "naics_s17": 0, "naics_s18": 22, "naics_s19": 24, "naics_s20": 0, "race1": 265, "race2": 47, "race3": 2, "race4": 21, "race5": 0, "race6": 4, "ethnicity1": 216, "ethnicity2": 123, "edu1": 51, "edu2": 91, "edu3": 77, "edu4": 47, "Shape_Length": 24145.776799369894, "Shape_Area": 20333049.377441596, "total_2021": 263, "total_2022": 339 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.186262945764639, 29.523479154301981 ], [ -95.186294945882054, 29.523430154365627 ], [ -95.18605294619411, 29.523324154368652 ], [ -95.185825945574393, 29.523264154324877 ], [ -95.185702945513583, 29.523237154700453 ], [ -95.185560945117956, 29.523207154547595 ], [ -95.185470945415261, 29.523190154725082 ], [ -95.185311945707014, 29.523181154989114 ], [ -95.185159945949422, 29.523203154437386 ], [ -95.185007945902072, 29.523233154905256 ], [ -95.1848989453228, 29.523237154171639 ], [ -95.184848944933393, 29.523232154880084 ], [ -95.184802945769178, 29.523218154559835 ], [ -95.184724945144055, 29.523177154566536 ], [ -95.184671944927729, 29.523154154229619 ], [ -95.184634945092071, 29.523130154406694 ], [ -95.184605945034235, 29.523105154247723 ], [ -95.184580945574524, 29.52305515427107 ], [ -95.18457394504361, 29.522996154705606 ], [ -95.184575945220359, 29.522938154120141 ], [ -95.184628945349289, 29.522821154707724 ], [ -95.184728945682522, 29.522677154480458 ], [ -95.184751945078304, 29.522651154103897 ], [ -95.184782944989223, 29.522605154734237 ], [ -95.185063945745938, 29.52219015467043 ], [ -95.185181945647173, 29.522016154387785 ], [ -95.185192945038949, 29.522000154443152 ], [ -95.185191945467679, 29.521982154586492 ], [ -95.185176945716833, 29.521644154014577 ], [ -95.185173945437541, 29.521635154493534 ], [ -95.185056945801705, 29.521381153796344 ], [ -95.184778945619499, 29.520971154199778 ], [ -95.184526945564244, 29.520651154242177 ], [ -95.184404944794721, 29.520514153759912 ], [ -95.184291945484006, 29.520419153957381 ], [ -95.184237945175497, 29.520379153765784 ], [ -95.184160945120567, 29.520344153703803 ], [ -95.184092945023778, 29.52032615410409 ], [ -95.184026945546961, 29.520313154221 ], [ -95.1839219446898, 29.520310153904408 ], [ -95.183755944982138, 29.520321154415274 ], [ -95.183409945259768, 29.520391154119949 ], [ -95.183097944649788, 29.520445153608946 ], [ -95.183033944870289, 29.520442154294418 ], [ -95.182970945116779, 29.520428154423264 ], [ -95.182897944621615, 29.520396153974517 ], [ -95.182827944523993, 29.520347154334114 ], [ -95.182793944794497, 29.520298154481765 ], [ -95.182784944436321, 29.520249154449836 ], [ -95.182780944492322, 29.520185154230219 ], [ -95.182788944430413, 29.520134154367309 ], [ -95.182792944855038, 29.520112153566867 ], [ -95.18279994490166, 29.520095153984567 ], [ -95.182839944503144, 29.520013154281024 ], [ -95.182935944287124, 29.519867154293966 ], [ -95.183019944870097, 29.519769153776434 ], [ -95.183179944835587, 29.519581153728808 ], [ -95.183245944948681, 29.519495154115006 ], [ -95.183264944486879, 29.519456153702137 ], [ -95.183271944885107, 29.519424153757804 ], [ -95.183270945206004, 29.519415153531224 ], [ -95.183264944385186, 29.519377153608477 ], [ -95.18325894462879, 29.51934515349387 ], [ -95.183254945231781, 29.51932515408263 ], [ -95.183223944998872, 29.519234153954713 ], [ -95.183145944560607, 29.519110153558593 ], [ -95.183110945109604, 29.519066153623289 ], [ -95.183048945112375, 29.519023153886245 ], [ -95.18289994492099, 29.518933153426484 ], [ -95.18271894482524, 29.518825154096142 ], [ -95.18243794441014, 29.518698153437125 ], [ -95.182280944210731, 29.518635153891434 ], [ -95.182130944567945, 29.518588153413777 ], [ -95.181973944125431, 29.518551154047213 ], [ -95.181847944317212, 29.518539153803349 ], [ -95.181791944517855, 29.518533154085315 ], [ -95.181451944034862, 29.518498154071665 ], [ -95.181330944019933, 29.518470153811371 ], [ -95.18108994412961, 29.518415153809812 ], [ -95.181056944414493, 29.518407154063265 ], [ -95.180608943773251, 29.518371153385193 ], [ -95.180523943740255, 29.518364153847699 ], [ -95.180128943912877, 29.518384153392006 ], [ -95.180029943703204, 29.518413153886652 ], [ -95.179980944195293, 29.518448153987208 ], [ -95.179969943693422, 29.518493153961099 ], [ -95.179915944480854, 29.518753153849143 ], [ -95.179976944227292, 29.518995153956279 ], [ -95.180068944548012, 29.519107154203635 ], [ -95.18012094391041, 29.519170153815203 ], [ -95.180158944325569, 29.519247154278155 ], [ -95.18026694441248, 29.519465153982214 ], [ -95.180262944207328, 29.51949915429762 ], [ -95.18028194377429, 29.519544153950633 ], [ -95.18029094414571, 29.51961815359174 ], [ -95.180290944391203, 29.519669153560155 ], [ -95.180268944211576, 29.51976015382327 ], [ -95.180233943842836, 29.519835153897066 ], [ -95.180203943645367, 29.519877153602323 ], [ -95.180159943779316, 29.51991515390409 ], [ -95.180059943879186, 29.519960154496591 ], [ -95.179894944008311, 29.519983153975765 ], [ -95.179799943850895, 29.519987153701688 ], [ -95.179673944489934, 29.519975154177171 ], [ -95.179529943796936, 29.519949154502939 ], [ -95.179405944075683, 29.519891153647862 ], [ -95.17929394385348, 29.519856154192418 ], [ -95.179064943552106, 29.519610154091822 ], [ -95.17898294389822, 29.51940315383866 ], [ -95.178931943497219, 29.519275154255684 ], [ -95.1789109439963, 29.519016154202266 ], [ -95.178900943720492, 29.51889715362816 ], [ -95.178890943876254, 29.518776153434096 ], [ -95.178930944108757, 29.518547153729923 ], [ -95.178945943433561, 29.518464153336236 ], [ -95.178956943835246, 29.51840215343282 ], [ -95.17880494362916, 29.518043153593105 ], [ -95.178794943735625, 29.517996154054615 ], [ -95.178671943481092, 29.518104153751345 ], [ -95.177963943213982, 29.518720154027264 ], [ -95.176481942661439, 29.52001115388958 ], [ -95.175513943383052, 29.520527154455706 ], [ -95.173428942443039, 29.521134154921263 ], [ -95.172781941857849, 29.521198154475165 ], [ -95.169650941504983, 29.521510155167753 ], [ -95.169461941801728, 29.521530154828483 ], [ -95.164818940291639, 29.522024155015245 ], [ -95.164320940604654, 29.522077154646382 ], [ -95.164270940042584, 29.522082154810384 ], [ -95.16371293950877, 29.522136154989543 ], [ -95.163081939398708, 29.52221415474769 ], [ -95.162527939191847, 29.522268154707575 ], [ -95.161870939632394, 29.522358154924856 ], [ -95.161907939491996, 29.522633154784078 ], [ -95.16191593980399, 29.522694155369326 ], [ -95.16199393922183, 29.523279155559283 ], [ -95.16213593959823, 29.524295155461473 ], [ -95.16224594004197, 29.525094155613253 ], [ -95.162313939779381, 29.525596155490931 ], [ -95.1623519396869, 29.52583915613458 ], [ -95.162440939569152, 29.526482155595179 ], [ -95.16267594023509, 29.528191156738909 ], [ -95.162728940270114, 29.528687156206352 ], [ -95.162682940181952, 29.529667157067248 ], [ -95.163051940453613, 29.529709156978676 ], [ -95.163618940722372, 29.529767156876211 ], [ -95.164202940214466, 29.529813156838443 ], [ -95.164571940141869, 29.529474156378384 ], [ -95.166136940675642, 29.528040156013795 ], [ -95.166508941378211, 29.527699156534695 ], [ -95.167160940936867, 29.527100156009702 ], [ -95.168361940913542, 29.526003155402542 ], [ -95.16884894171352, 29.52578115553262 ], [ -95.169171941272182, 29.525787156054918 ], [ -95.169507941649528, 29.525913155876115 ], [ -95.170461941857624, 29.526691155781275 ], [ -95.173414943137715, 29.529149156413009 ], [ -95.1738629426264, 29.529519156215198 ], [ -95.17638894342511, 29.531524156103401 ], [ -95.176787943819434, 29.531935156624797 ], [ -95.177183943526146, 29.531567156687402 ], [ -95.177848943590803, 29.530938156234807 ], [ -95.177938944166883, 29.530860156797541 ], [ -95.178513944147497, 29.530364156273798 ], [ -95.17981494456285, 29.529140155758419 ], [ -95.180359944898939, 29.52867315559563 ], [ -95.181630944289381, 29.527459155687648 ], [ -95.182135944606216, 29.526995155151003 ], [ -95.184576945514237, 29.524919155058758 ], [ -95.184734945893396, 29.52483915516871 ], [ -95.18528994597105, 29.524571154733206 ], [ -95.185860946127335, 29.524104154675967 ], [ -95.186068946068787, 29.523780154539736 ], [ -95.186248946063685, 29.523500154900557 ], [ -95.186262945764639, 29.523479154301981 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 110, "Tract": "48201341201", "Area_SqMi": 3.2558065338604378, "total_2009": 1748, "total_2010": 1857, "total_2011": 2452, "total_2012": 1980, "total_2013": 1764, "total_2014": 1774, "total_2015": 2138, "total_2016": 2448, "total_2017": 2552, "total_2018": 2552, "total_2019": 2733, "total_2020": 2466, "age1": 1035, "age2": 1161, "age3": 478, "earn1": 759, "earn2": 902, "earn3": 1013, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 71, "naics_s06": 76, "naics_s07": 323, "naics_s08": 214, "naics_s09": 53, "naics_s10": 8, "naics_s11": 46, "naics_s12": 136, "naics_s13": 0, "naics_s14": 93, "naics_s15": 5, "naics_s16": 305, "naics_s17": 373, "naics_s18": 635, "naics_s19": 62, "naics_s20": 240, "race1": 2047, "race2": 403, "race3": 19, "race4": 147, "race5": 0, "race6": 58, "ethnicity1": 1930, "ethnicity2": 744, "edu1": 302, "edu2": 444, "edu3": 539, "edu4": 354, "Shape_Length": 42297.87142490298, "Shape_Area": 90766313.795455232, "total_2021": 2711, "total_2022": 2674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.13079693131408, 29.528623157732863 ], [ -95.130721931814392, 29.528542157336876 ], [ -95.130120932070781, 29.527893157451949 ], [ -95.12761693039721, 29.525233157023457 ], [ -95.126837930576002, 29.524235156390702 ], [ -95.125948930623224, 29.522908156806363 ], [ -95.125041930144235, 29.521318156083872 ], [ -95.12495292998041, 29.521162155795555 ], [ -95.124856930296431, 29.52099415588912 ], [ -95.123439929236213, 29.518511155544104 ], [ -95.119806928395207, 29.512468154568378 ], [ -95.119458927847532, 29.511889154521644 ], [ -95.117280927544726, 29.508267153298597 ], [ -95.11715992718635, 29.508059153801312 ], [ -95.117092927029191, 29.508116153677648 ], [ -95.117025927383864, 29.508171153869597 ], [ -95.116992927397249, 29.508188153296018 ], [ -95.116854927786918, 29.508256153551958 ], [ -95.11677792683092, 29.508300153312192 ], [ -95.116689927576516, 29.508347153908293 ], [ -95.116481926951707, 29.508464153344544 ], [ -95.116267926868105, 29.508544153557608 ], [ -95.11605992756401, 29.50860215363031 ], [ -95.116000926688827, 29.508622153709933 ], [ -95.1158399275497, 29.508688153860195 ], [ -95.115693926978267, 29.508767153776816 ], [ -95.115503927002422, 29.508900154032872 ], [ -95.115186927250832, 29.509224154433657 ], [ -95.114857927192261, 29.50964215439269 ], [ -95.114697926709795, 29.50985715434058 ], [ -95.114428926455815, 29.51013915423405 ], [ -95.114177926777529, 29.510362154568178 ], [ -95.113902926933889, 29.510548154758322 ], [ -95.113578926414078, 29.510702154050477 ], [ -95.113425926232978, 29.51074515444877 ], [ -95.113120926448659, 29.510830154654034 ], [ -95.112753926255579, 29.510889154510597 ], [ -95.11238192626881, 29.510931154752885 ], [ -95.111977926615864, 29.510905154295138 ], [ -95.111629926526774, 29.510851154202594 ], [ -95.111305925928306, 29.510750154613529 ], [ -95.110999926307173, 29.510639154235712 ], [ -95.110676925974715, 29.510484154088282 ], [ -95.110388925494192, 29.510298154415711 ], [ -95.110064926092363, 29.510102154329047 ], [ -95.109747925553876, 29.50994215439249 ], [ -95.109362925647773, 29.50978315431766 ], [ -95.108928925360473, 29.509655154612311 ], [ -95.108512925009848, 29.509591154260992 ], [ -95.108274925364881, 29.50958015457482 ], [ -95.108054925549254, 29.509602154549317 ], [ -95.107742925030749, 29.509682153908482 ], [ -95.107418925354949, 29.509783153980656 ], [ -95.10705292475761, 29.509926154430048 ], [ -95.106778924968708, 29.510031154296016 ], [ -95.106345925000696, 29.510156154160679 ], [ -95.106120924283886, 29.510219154325803 ], [ -95.105912924576558, 29.510268154314502 ], [ -95.105795924697418, 29.510296154236372 ], [ -95.10568892447391, 29.510292154545315 ], [ -95.10547692418713, 29.5103331541643 ], [ -95.10520592488335, 29.510386154728021 ], [ -95.105131924400368, 29.510428154467501 ], [ -95.104983923960219, 29.510467154429662 ], [ -95.104741924579201, 29.510526155016883 ], [ -95.10452592388809, 29.5106101545718 ], [ -95.104348924570829, 29.510701155083471 ], [ -95.104204923809618, 29.510819154508603 ], [ -95.104068924492282, 29.510959155024374 ], [ -95.103967924104225, 29.511128154811185 ], [ -95.103896923829183, 29.511275155133603 ], [ -95.103880923762773, 29.51129515490404 ], [ -95.103858923951435, 29.511562154737035 ], [ -95.103839924402649, 29.511794155200167 ], [ -95.104042924692223, 29.512567155302733 ], [ -95.10446492450005, 29.513584154976549 ], [ -95.104472924811375, 29.513598155644139 ], [ -95.104825924315193, 29.51419215539168 ], [ -95.105931924865459, 29.515659155875078 ], [ -95.106026924623336, 29.515786155905243 ], [ -95.106165925115533, 29.516126155367807 ], [ -95.106186925205051, 29.516593156071245 ], [ -95.10607992479467, 29.51686515555728 ], [ -95.105635925226125, 29.517238156260799 ], [ -95.105512925028322, 29.517291156382303 ], [ -95.10524992441141, 29.517387156406475 ], [ -95.104865924628456, 29.517491155747905 ], [ -95.104561924164841, 29.517568155808515 ], [ -95.104200924251586, 29.517665156216626 ], [ -95.103832924928469, 29.517791155861126 ], [ -95.103559924470147, 29.517909156348516 ], [ -95.103327924467337, 29.518063155784048 ], [ -95.103259924237264, 29.518135155771869 ], [ -95.103218923900457, 29.518172156439597 ], [ -95.103174923748327, 29.51821815617938 ], [ -95.1031379242865, 29.518270155891031 ], [ -95.103108924488694, 29.518326156144383 ], [ -95.103062923766927, 29.518397156153217 ], [ -95.103021924289308, 29.518551156039862 ], [ -95.103006923854664, 29.518607156363174 ], [ -95.102998923930187, 29.518823156596675 ], [ -95.103054923877238, 29.519053156168777 ], [ -95.103142923926015, 29.519269156553587 ], [ -95.103222924004427, 29.519436156054653 ], [ -95.103456924741025, 29.520150156752845 ], [ -95.103407924869245, 29.520544156503458 ], [ -95.103281924820209, 29.520746156837617 ], [ -95.103211924562331, 29.520858156904183 ], [ -95.10302292457024, 29.521029156780084 ], [ -95.102958924050341, 29.521075156562208 ], [ -95.10285892413863, 29.521148157188392 ], [ -95.102799924646476, 29.521182156628825 ], [ -95.102772924291827, 29.521198156702951 ], [ -95.102715923949432, 29.521230156946768 ], [ -95.102642924273809, 29.521275156623609 ], [ -95.102633923775031, 29.521280156532143 ], [ -95.102546923920357, 29.521336156453575 ], [ -95.10246992400792, 29.521392157205273 ], [ -95.102443924211542, 29.521400157015439 ], [ -95.102286924635322, 29.52145615686684 ], [ -95.102085923978535, 29.521487157245858 ], [ -95.102073924520468, 29.521487156705387 ], [ -95.102055923828331, 29.52148815658667 ], [ -95.101874924133426, 29.521487156565779 ], [ -95.101645924504794, 29.521440156996508 ], [ -95.101324924081183, 29.521312157013398 ], [ -95.101077924288134, 29.521161156826192 ], [ -95.100793924241884, 29.520913156714485 ], [ -95.100555923925242, 29.520650156565019 ], [ -95.100270924084739, 29.520340157014619 ], [ -95.100087923403265, 29.520084156488331 ], [ -95.099968923647623, 29.51988515714449 ], [ -95.099812923095485, 29.519574156271709 ], [ -95.099666922935043, 29.519255156690264 ], [ -95.099629923795675, 29.519160156545059 ], [ -95.099446923317416, 29.518849156303187 ], [ -95.099409923729823, 29.518783156286538 ], [ -95.099331923598413, 29.518643156322558 ], [ -95.099330923686892, 29.518602156869413 ], [ -95.099033922865317, 29.518347156633546 ], [ -95.098831923438908, 29.518177156125695 ], [ -95.098635923070404, 29.518218156460986 ], [ -95.098443923164211, 29.518256156862897 ], [ -95.098096923422716, 29.518327156687999 ], [ -95.097585922588038, 29.518950156242468 ], [ -95.097559922711937, 29.519629157092453 ], [ -95.097385923141971, 29.520389156529141 ], [ -95.096778923239754, 29.521006157134334 ], [ -95.096420922623011, 29.521271157471599 ], [ -95.096186922381634, 29.521463157066073 ], [ -95.095931922883139, 29.521660157375123 ], [ -95.094876922535263, 29.522398156966325 ], [ -95.094363922371187, 29.523147157978752 ], [ -95.093990921676976, 29.523988157941016 ], [ -95.093760921617019, 29.524918158074428 ], [ -95.093746922148227, 29.525017157571611 ], [ -95.093739921882118, 29.52506615761099 ], [ -95.093697922322249, 29.525349158335253 ], [ -95.093630922170107, 29.525806158350015 ], [ -95.093887922263008, 29.526665158047741 ], [ -95.093937922677156, 29.526724158213739 ], [ -95.093998921867353, 29.52679715786617 ], [ -95.094333922868799, 29.527196158279661 ], [ -95.094955922296336, 29.52801115818729 ], [ -95.095072922260812, 29.528165158941199 ], [ -95.095086922211792, 29.528246158720073 ], [ -95.095100922178318, 29.528324158537576 ], [ -95.095160922389269, 29.528664158980597 ], [ -95.095141922266606, 29.528730158258714 ], [ -95.095120922561463, 29.528804158294761 ], [ -95.095228923043194, 29.528928159100353 ], [ -95.095255922714884, 29.528959158596241 ], [ -95.095268922514578, 29.529007158474865 ], [ -95.095339922501495, 29.529274158501931 ], [ -95.095367922898731, 29.529381158436088 ], [ -95.095355922474667, 29.529631158551673 ], [ -95.095334923126501, 29.530064158603277 ], [ -95.0954279231904, 29.530706159215342 ], [ -95.095432922857952, 29.53074315876033 ], [ -95.095566922443396, 29.531038159528681 ], [ -95.095645923361744, 29.531212159539347 ], [ -95.095980923040898, 29.531776159580001 ], [ -95.096158923182358, 29.532076159540992 ], [ -95.096514923047607, 29.53251615981992 ], [ -95.096827923290746, 29.533183159151317 ], [ -95.096908923596672, 29.533471159767419 ], [ -95.09696092286201, 29.534070159766152 ], [ -95.096852923136893, 29.534387160163281 ], [ -95.096742923052176, 29.53470115989176 ], [ -95.096588923503148, 29.534890159946297 ], [ -95.096479922777704, 29.5350241598764 ], [ -95.096437923353051, 29.535076159890398 ], [ -95.096264923218627, 29.535185159744834 ], [ -95.096584923155945, 29.535530159739846 ], [ -95.096666923665566, 29.535618160510637 ], [ -95.097163923514515, 29.536152159874902 ], [ -95.099161923917734, 29.538259160323395 ], [ -95.099084923842824, 29.538316160534855 ], [ -95.101535924403194, 29.540974160675145 ], [ -95.104020925232646, 29.543660161411573 ], [ -95.105085926329096, 29.544677161458761 ], [ -95.106091925715432, 29.54549416167411 ], [ -95.106192925712293, 29.545655161894459 ], [ -95.106280926321332, 29.545797161806473 ], [ -95.106419925912064, 29.545943161974797 ], [ -95.106976925967643, 29.545644161550904 ], [ -95.107047926492513, 29.54559716190812 ], [ -95.107278926601836, 29.545457161658454 ], [ -95.107437926148577, 29.545344161398081 ], [ -95.10806592624165, 29.544850161329467 ], [ -95.108419927048587, 29.544595161331532 ], [ -95.109672926943759, 29.543911161676455 ], [ -95.110488927024051, 29.543333160923158 ], [ -95.11054992681008, 29.543290161266508 ], [ -95.110640927660185, 29.543225161524798 ], [ -95.111499927631471, 29.542617161452856 ], [ -95.113031927961885, 29.541470160291265 ], [ -95.113935928298673, 29.540826160607924 ], [ -95.114433928346116, 29.54049016087529 ], [ -95.115100928482306, 29.54003316067136 ], [ -95.115482928500981, 29.539760160468234 ], [ -95.115792928426472, 29.539527160354915 ], [ -95.116215928923225, 29.539174159742981 ], [ -95.116326928900847, 29.539079160152884 ], [ -95.116659928180638, 29.538816159743824 ], [ -95.117276928872428, 29.538356160252171 ], [ -95.117434928365981, 29.538239159947526 ], [ -95.117899928798764, 29.53789416015119 ], [ -95.118048929011564, 29.537783159500702 ], [ -95.118107929332339, 29.537629159645761 ], [ -95.118861929592526, 29.537089160035091 ], [ -95.119947929624928, 29.536312159717156 ], [ -95.121000929195617, 29.53555915883749 ], [ -95.122086930110527, 29.534782159019919 ], [ -95.12423593010115, 29.533222158782984 ], [ -95.124717930729815, 29.532881158971502 ], [ -95.1250709309342, 29.532632158834371 ], [ -95.125244930040537, 29.53250915857846 ], [ -95.126698930463917, 29.531445158203464 ], [ -95.127410931128594, 29.530939157900118 ], [ -95.127971931549325, 29.530538158142786 ], [ -95.128070931299845, 29.530466158289546 ], [ -95.128252931627571, 29.530337157762531 ], [ -95.128408931324813, 29.530256157562313 ], [ -95.128820931727134, 29.529996158176118 ], [ -95.129269931570207, 29.52971215787748 ], [ -95.12952293201343, 29.529532157994698 ], [ -95.130037931377174, 29.529165157220632 ], [ -95.130382931927059, 29.528919157509218 ], [ -95.130621931767891, 29.528748157287492 ], [ -95.13079693131408, 29.528623157732863 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 111, "Tract": "48201540601", "Area_SqMi": 0.62279911404563659, "total_2009": 105, "total_2010": 71, "total_2011": 48, "total_2012": 173, "total_2013": 181, "total_2014": 175, "total_2015": 204, "total_2016": 174, "total_2017": 189, "total_2018": 185, "total_2019": 172, "total_2020": 147, "age1": 19, "age2": 92, "age3": 46, "earn1": 24, "earn2": 33, "earn3": 100, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 93, "naics_s05": 23, "naics_s06": 0, "naics_s07": 1, "naics_s08": 1, "naics_s09": 0, "naics_s10": 2, "naics_s11": 6, "naics_s12": 18, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 115, "race2": 23, "race3": 2, "race4": 15, "race5": 0, "race6": 2, "ethnicity1": 119, "ethnicity2": 38, "edu1": 24, "edu2": 34, "edu3": 42, "edu4": 38, "Shape_Length": 20085.970326484476, "Shape_Area": 17362573.368255585, "total_2021": 69, "total_2022": 157 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.645168078412226, 29.867678209865201 ], [ -95.645164078411426, 29.867565209524162 ], [ -95.645160078599602, 29.867429209784977 ], [ -95.645156078689112, 29.867302209605956 ], [ -95.645153078407134, 29.867186209725613 ], [ -95.645151078851143, 29.867086209532541 ], [ -95.645145078567253, 29.86681220935678 ], [ -95.64514007813365, 29.866617209435791 ], [ -95.645133078979711, 29.866316208988891 ], [ -95.645133078775643, 29.866272209372571 ], [ -95.645130078582341, 29.865974208875731 ], [ -95.644939078320945, 29.865965209703592 ], [ -95.644901078306575, 29.865963209594103 ], [ -95.644794078313353, 29.865980209499554 ], [ -95.644642078144599, 29.865952209576683 ], [ -95.644573078366392, 29.865923209660885 ], [ -95.644187078060824, 29.865891208833592 ], [ -95.6439530777035, 29.865735209620109 ], [ -95.643621077762745, 29.86567620913792 ], [ -95.643464077873048, 29.86561820932809 ], [ -95.643163077957638, 29.865471209673078 ], [ -95.642820077753925, 29.865188209622737 ], [ -95.642468077817483, 29.864934208763245 ], [ -95.642390077308661, 29.864582208697286 ], [ -95.642605077808966, 29.864446208752472 ], [ -95.642389077886591, 29.86397420860995 ], [ -95.642287077427625, 29.863449209279359 ], [ -95.64205807733579, 29.863196208978859 ], [ -95.641882077585606, 29.863000208691908 ], [ -95.641163077081387, 29.862675208311249 ], [ -95.64056907739004, 29.862466208986834 ], [ -95.639831076597005, 29.862336209092756 ], [ -95.63930407634885, 29.862239208848113 ], [ -95.638671076614571, 29.862251209092033 ], [ -95.638269076260059, 29.862122208681619 ], [ -95.637585076169245, 29.86180920897915 ], [ -95.637214076552283, 29.861536208928861 ], [ -95.636944075723321, 29.861200208351324 ], [ -95.636341076341949, 29.860623208681314 ], [ -95.635922075574541, 29.860293208183048 ], [ -95.635493075931961, 29.859991207989481 ], [ -95.635426076210479, 29.859947208234242 ], [ -95.635436076032164, 29.859845208640664 ], [ -95.635096075699082, 29.859533208572714 ], [ -95.633614074710607, 29.858500208378619 ], [ -95.633403075423843, 29.858278207916513 ], [ -95.633245074823066, 29.858026207921306 ], [ -95.63307807528065, 29.857960208375001 ], [ -95.632914074703194, 29.857894208078871 ], [ -95.632777074524867, 29.857787207860753 ], [ -95.631931074562502, 29.857126207998853 ], [ -95.631889074530349, 29.857048207507624 ], [ -95.631809074332892, 29.856901208162359 ], [ -95.631546074693219, 29.856799208199678 ], [ -95.631234074811047, 29.856611207603674 ], [ -95.630390074742166, 29.856104207943815 ], [ -95.630183074315823, 29.856039207970962 ], [ -95.629958074586398, 29.855970207393028 ], [ -95.629923074450616, 29.855959207368336 ], [ -95.62942007407699, 29.85588620737072 ], [ -95.628828074250933, 29.855964207958927 ], [ -95.628015073599926, 29.856225207638527 ], [ -95.62760807317494, 29.856288207984516 ], [ -95.622314072203352, 29.856313208121467 ], [ -95.621450072043899, 29.856238208351208 ], [ -95.620590071658086, 29.856258208547366 ], [ -95.620655071353625, 29.85670320842058 ], [ -95.620693072102412, 29.856957208496361 ], [ -95.620711071816501, 29.857082208459637 ], [ -95.620913071581228, 29.857489208425743 ], [ -95.620989072104692, 29.857642208103485 ], [ -95.621069072362488, 29.857717208027626 ], [ -95.622185072447948, 29.858773208416007 ], [ -95.622892072272734, 29.859442208632672 ], [ -95.623938072712733, 29.86091120890816 ], [ -95.624239072607878, 29.861463209303725 ], [ -95.624377072777065, 29.861840208835282 ], [ -95.624393072714241, 29.862342208818589 ], [ -95.624326073188087, 29.863003208942072 ], [ -95.624413073003595, 29.863003209530934 ], [ -95.624499073549103, 29.863002209228675 ], [ -95.624838073232937, 29.863011209625878 ], [ -95.625106073275873, 29.863031209722983 ], [ -95.625241073287057, 29.863047208904881 ], [ -95.625679073156519, 29.863116209311158 ], [ -95.626107073024599, 29.863205209739096 ], [ -95.626351073615012, 29.863267209065402 ], [ -95.626617074056071, 29.863352209252533 ], [ -95.626810073582647, 29.863422209069228 ], [ -95.626885074018674, 29.863451209447764 ], [ -95.627241073857917, 29.863597209529726 ], [ -95.627448073830521, 29.863696209188205 ], [ -95.627504073491821, 29.863722209687079 ], [ -95.627686073898701, 29.863817209302983 ], [ -95.627957073500625, 29.863972209206608 ], [ -95.628144074307329, 29.864088209622146 ], [ -95.628421073972959, 29.864279209795153 ], [ -95.628592074461409, 29.864410209896935 ], [ -95.629263074719802, 29.864975209424177 ], [ -95.629645074587799, 29.86530320943255 ], [ -95.630458074757044, 29.866002209855001 ], [ -95.630762074524384, 29.866261209938756 ], [ -95.631034075228754, 29.866471209797588 ], [ -95.631220074541503, 29.866603210259495 ], [ -95.631349075050849, 29.866686209658816 ], [ -95.631480074993789, 29.866764210115594 ], [ -95.631755075056347, 29.866921209465122 ], [ -95.631983075371323, 29.867039210211168 ], [ -95.63222407509349, 29.867150209784686 ], [ -95.632782075828416, 29.86737621020011 ], [ -95.632876075388637, 29.867407210233292 ], [ -95.633280075561188, 29.867516210336174 ], [ -95.633833075947052, 29.867647210005774 ], [ -95.634073075408807, 29.867680210158252 ], [ -95.634374075663999, 29.867715209687557 ], [ -95.634588075557318, 29.867732210091564 ], [ -95.635023075983796, 29.867748210293779 ], [ -95.63548707579676, 29.867748209868385 ], [ -95.636395076261167, 29.867740209558402 ], [ -95.637110076276571, 29.867736210218002 ], [ -95.637339076939213, 29.867739209651468 ], [ -95.638164076986769, 29.867733209960335 ], [ -95.638750077337434, 29.86772821007597 ], [ -95.640364077244939, 29.867713209856205 ], [ -95.641670077565777, 29.867709210143325 ], [ -95.641766078092928, 29.867709209897161 ], [ -95.64253107741412, 29.867706209515916 ], [ -95.642581077852114, 29.867706209963291 ], [ -95.642972078476902, 29.867702209397525 ], [ -95.643297077969066, 29.867698209707616 ], [ -95.644005078474962, 29.86769220959269 ], [ -95.644092078771507, 29.867692209969846 ], [ -95.644915078858148, 29.867685209866458 ], [ -95.645168078412226, 29.867678209865201 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 112, "Tract": "48201541203", "Area_SqMi": 0.59113580123653175, "total_2009": 849, "total_2010": 948, "total_2011": 1110, "total_2012": 1032, "total_2013": 1056, "total_2014": 1046, "total_2015": 1012, "total_2016": 995, "total_2017": 1048, "total_2018": 1028, "total_2019": 964, "total_2020": 984, "age1": 206, "age2": 452, "age3": 258, "earn1": 297, "earn2": 311, "earn3": 308, "naics_s01": 0, "naics_s02": 6, "naics_s03": 2, "naics_s04": 26, "naics_s05": 2, "naics_s06": 18, "naics_s07": 306, "naics_s08": 17, "naics_s09": 0, "naics_s10": 65, "naics_s11": 6, "naics_s12": 75, "naics_s13": 3, "naics_s14": 101, "naics_s15": 4, "naics_s16": 134, "naics_s17": 1, "naics_s18": 92, "naics_s19": 58, "naics_s20": 0, "race1": 665, "race2": 174, "race3": 4, "race4": 58, "race5": 0, "race6": 15, "ethnicity1": 662, "ethnicity2": 254, "edu1": 129, "edu2": 184, "edu3": 207, "edu4": 190, "Shape_Length": 18466.144581442215, "Shape_Area": 16479854.399439219, "total_2021": 940, "total_2022": 916 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.656806082930743, 29.895666215127754 ], [ -95.656810083059426, 29.895408214973159 ], [ -95.656803082360639, 29.895043214348206 ], [ -95.656789082300548, 29.894392214427391 ], [ -95.656781082759721, 29.894261214634319 ], [ -95.656752082691753, 29.894020214179839 ], [ -95.656710082584937, 29.893787214138914 ], [ -95.656675083093376, 29.893643214354736 ], [ -95.656645082909307, 29.893544214614547 ], [ -95.656582082601886, 29.893348214443701 ], [ -95.656487082446574, 29.893113214018346 ], [ -95.656347082493738, 29.892802214501096 ], [ -95.656241081994807, 29.892615214289897 ], [ -95.655514082378716, 29.891426214362255 ], [ -95.655466082011131, 29.891351214264997 ], [ -95.655296082418602, 29.891086213935665 ], [ -95.655192082146243, 29.890960213702609 ], [ -95.655086081835677, 29.890860214264581 ], [ -95.655039082504871, 29.890821214297048 ], [ -95.654904081740654, 29.890723213880101 ], [ -95.654653081700459, 29.890564214091228 ], [ -95.65455408219529, 29.890494214023335 ], [ -95.654423081790497, 29.890380213765944 ], [ -95.654366082064854, 29.890320214209922 ], [ -95.654311081974541, 29.890248214331734 ], [ -95.654268081425826, 29.890182214242937 ], [ -95.654228082186847, 29.890111213848861 ], [ -95.65419008139186, 29.890031214147196 ], [ -95.654106082016, 29.889811213955031 ], [ -95.653921081975781, 29.889834213700659 ], [ -95.653700081603716, 29.889839213551021 ], [ -95.653570081594083, 29.889826213725026 ], [ -95.653408081677725, 29.889809214246 ], [ -95.653225082081036, 29.889704214066736 ], [ -95.653069081678012, 29.889574213603602 ], [ -95.652909081588973, 29.889363213443378 ], [ -95.652886081244191, 29.889304213861312 ], [ -95.652860080985207, 29.889251213709947 ], [ -95.652803081538963, 29.889080214013557 ], [ -95.65272108178867, 29.88884921345732 ], [ -95.652672081402244, 29.888729213280971 ], [ -95.652608080891881, 29.888616213731005 ], [ -95.652436081508171, 29.888372213531099 ], [ -95.652209081472932, 29.888071213764256 ], [ -95.652125081085458, 29.887947213552973 ], [ -95.652090081695619, 29.887883213823557 ], [ -95.652061081578111, 29.88781921304869 ], [ -95.652018081129569, 29.887690213854299 ], [ -95.652006081374893, 29.887623213824767 ], [ -95.651993080933451, 29.887486213700672 ], [ -95.651994081638549, 29.887417213048195 ], [ -95.65198708138594, 29.887353213339939 ], [ -95.651982081645102, 29.886976213538262 ], [ -95.651976081017025, 29.886733213642863 ], [ -95.65198108080348, 29.886675213068443 ], [ -95.65197408082129, 29.886619212803829 ], [ -95.651968080613699, 29.886242213218239 ], [ -95.651965080866063, 29.885868212776227 ], [ -95.651972081368797, 29.885809213328102 ], [ -95.651971080767254, 29.88569921320828 ], [ -95.65196608081213, 29.885650212601892 ], [ -95.651966080893985, 29.885471212683129 ], [ -95.651957081135336, 29.885390212814084 ], [ -95.651934081485521, 29.885017213264515 ], [ -95.651921081207959, 29.884956212834311 ], [ -95.651907081347261, 29.884836212771937 ], [ -95.651854080870706, 29.884544212775502 ], [ -95.651812080595889, 29.884338213144261 ], [ -95.651736081173226, 29.884024213037737 ], [ -95.651655081211032, 29.883797212961206 ], [ -95.651610081319689, 29.883662212884346 ], [ -95.651436080689678, 29.883252212774938 ], [ -95.651352081290696, 29.883084212480597 ], [ -95.651110080936647, 29.882661212654874 ], [ -95.650905080227062, 29.882336212572586 ], [ -95.650825080324708, 29.882210212551389 ], [ -95.65037408031975, 29.88149921255954 ], [ -95.650134080206072, 29.881122212113446 ], [ -95.65004108013494, 29.880977211874026 ], [ -95.649883080314197, 29.880732212058426 ], [ -95.649758080000339, 29.88052421194968 ], [ -95.649704080242543, 29.880411212033607 ], [ -95.649665080599561, 29.880306212481898 ], [ -95.649639080609788, 29.880207211998439 ], [ -95.649614079816004, 29.880091212187679 ], [ -95.649594079903892, 29.879945212180125 ], [ -95.649584080112831, 29.879729212173913 ], [ -95.649573079905267, 29.879162212012233 ], [ -95.649529080126598, 29.879163211679554 ], [ -95.649230079614185, 29.879166211452443 ], [ -95.649075080496814, 29.879168211412313 ], [ -95.649010080093149, 29.879169211680036 ], [ -95.648869080314313, 29.879171211769229 ], [ -95.648714080117756, 29.879173212188146 ], [ -95.648634079878107, 29.879174212154716 ], [ -95.648417079391095, 29.879176212267893 ], [ -95.648262080212874, 29.879178212190602 ], [ -95.64722307918025, 29.879191211529786 ], [ -95.646404079483602, 29.879201211790871 ], [ -95.646106079012142, 29.879204211554434 ], [ -95.645753078783159, 29.87920921211758 ], [ -95.645320078974635, 29.879214211518555 ], [ -95.645320078839944, 29.879280212013462 ], [ -95.645320078733633, 29.879617212112919 ], [ -95.64532007929256, 29.879862212256182 ], [ -95.645319079481936, 29.880117212219211 ], [ -95.645319079149573, 29.880239211783081 ], [ -95.64533907916308, 29.88095021267889 ], [ -95.64531907941462, 29.881386212781802 ], [ -95.645300079211836, 29.881747212573629 ], [ -95.645243079681393, 29.88240021295751 ], [ -95.645198079104404, 29.882832213021093 ], [ -95.645174079743526, 29.882987212365581 ], [ -95.64513807950452, 29.883210212688635 ], [ -95.645118078894825, 29.883341212481412 ], [ -95.645105079158071, 29.88340221252567 ], [ -95.645033079064973, 29.88375721329658 ], [ -95.644995078998448, 29.88388721330217 ], [ -95.64475107909206, 29.884743212740304 ], [ -95.644724079726345, 29.8848232128218 ], [ -95.644558078699077, 29.88531921305238 ], [ -95.644345079425648, 29.885903213259002 ], [ -95.644157078793029, 29.886331213709255 ], [ -95.64406607915592, 29.886528213176902 ], [ -95.643988078658538, 29.886698213346328 ], [ -95.643724078961853, 29.887240213798819 ], [ -95.643582078711404, 29.887511214120345 ], [ -95.643030078760802, 29.888423213632226 ], [ -95.642851079305458, 29.888707214103459 ], [ -95.642415078606248, 29.88939721401654 ], [ -95.641840078850009, 29.890288214257193 ], [ -95.641824079088522, 29.890312214758371 ], [ -95.641685078624263, 29.890527214246664 ], [ -95.64137307861094, 29.891009214364079 ], [ -95.641317078866209, 29.891097214730021 ], [ -95.641402078179496, 29.891148214627812 ], [ -95.641680078856666, 29.891284214901059 ], [ -95.641771078585677, 29.891333214818321 ], [ -95.642089078871592, 29.89148421414426 ], [ -95.642514078664178, 29.891690214680221 ], [ -95.642632079021595, 29.891730214978487 ], [ -95.642677078578302, 29.891755214748557 ], [ -95.64269907868993, 29.891768214332814 ], [ -95.642768079336406, 29.891794214436302 ], [ -95.642892079275725, 29.891839215010503 ], [ -95.643153079030355, 29.891929214300664 ], [ -95.643327079570582, 29.891981214699552 ], [ -95.643464079682644, 29.892027215065461 ], [ -95.643891079025607, 29.892160214504763 ], [ -95.644328079033102, 29.892322214841951 ], [ -95.644445079194128, 29.892372214206389 ], [ -95.644586079856253, 29.892434214870608 ], [ -95.644705079218127, 29.892493214752918 ], [ -95.644919079683476, 29.892598214665288 ], [ -95.645180079722863, 29.892735214695918 ], [ -95.645277079879506, 29.892794214584061 ], [ -95.645314079460107, 29.892827215048687 ], [ -95.645375079994409, 29.89285921439123 ], [ -95.645540079264507, 29.89297021504585 ], [ -95.645871080219976, 29.893223215051467 ], [ -95.646100080274508, 29.89339321441182 ], [ -95.646236080270342, 29.89351021523278 ], [ -95.646530080486542, 29.893826214752977 ], [ -95.646688080569348, 29.893974214774975 ], [ -95.646717080591969, 29.894013214632253 ], [ -95.646773080102079, 29.894076215125658 ], [ -95.646881079856172, 29.8941972151604 ], [ -95.646982079791456, 29.894292215056453 ], [ -95.647221079909443, 29.894484214969516 ], [ -95.647448080247784, 29.894683215467488 ], [ -95.647574080500064, 29.894779214970072 ], [ -95.647878079987308, 29.894979215070453 ], [ -95.648026080923088, 29.895069214711043 ], [ -95.648121080599907, 29.895120215339016 ], [ -95.648248080757938, 29.895200214992467 ], [ -95.648677080287285, 29.895414214988925 ], [ -95.648744080737202, 29.895437215057786 ], [ -95.648898080776192, 29.895503215376682 ], [ -95.649155080594554, 29.895604215013517 ], [ -95.649422081020077, 29.895697215311905 ], [ -95.649761081066302, 29.895802215313367 ], [ -95.650017081385272, 29.895870214885097 ], [ -95.650322081055648, 29.895934214899203 ], [ -95.650633081420494, 29.895989215593112 ], [ -95.650728081064372, 29.896009214812576 ], [ -95.650919081588427, 29.896032214760755 ], [ -95.651123081550267, 29.89604921549401 ], [ -95.651304081016278, 29.896057215579813 ], [ -95.6516280812628, 29.896064215051709 ], [ -95.651959081053775, 29.896061215579174 ], [ -95.652077082035262, 29.896055215331533 ], [ -95.652246081701875, 29.896054214930782 ], [ -95.652947081475446, 29.896053214878982 ], [ -95.653458082218663, 29.896048214703683 ], [ -95.653779082535266, 29.896055215393901 ], [ -95.654076081807347, 29.896078215005303 ], [ -95.654501082059497, 29.896125214832761 ], [ -95.6547260819153, 29.896160215395245 ], [ -95.65504708235639, 29.896229214670218 ], [ -95.655446082404836, 29.896341214932878 ], [ -95.655596082710218, 29.896389215290206 ], [ -95.655998082552117, 29.89652621473919 ], [ -95.656225082868403, 29.896615215140468 ], [ -95.656344082497029, 29.896672215090994 ], [ -95.656425082251161, 29.896566215523691 ], [ -95.656573083232857, 29.896324214631932 ], [ -95.656650083184573, 29.896187215104611 ], [ -95.656721082895118, 29.896030215051798 ], [ -95.65675108290651, 29.89594421531898 ], [ -95.656776082526164, 29.895854215385938 ], [ -95.656795082513455, 29.895761214768676 ], [ -95.656806082930743, 29.895666215127754 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 113, "Tract": "48201233701", "Area_SqMi": 2.8640624378021684, "total_2009": 1708, "total_2010": 1577, "total_2011": 1768, "total_2012": 2229, "total_2013": 2606, "total_2014": 2851, "total_2015": 2775, "total_2016": 2344, "total_2017": 2280, "total_2018": 2262, "total_2019": 2522, "total_2020": 2061, "age1": 326, "age2": 1162, "age3": 448, "earn1": 115, "earn2": 203, "earn3": 1618, "naics_s01": 0, "naics_s02": 138, "naics_s03": 0, "naics_s04": 22, "naics_s05": 495, "naics_s06": 182, "naics_s07": 35, "naics_s08": 812, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 4, "naics_s13": 0, "naics_s14": 59, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 54, "naics_s19": 127, "naics_s20": 0, "race1": 1511, "race2": 277, "race3": 25, "race4": 98, "race5": 4, "race6": 21, "ethnicity1": 1229, "ethnicity2": 707, "edu1": 344, "edu2": 422, "edu3": 527, "edu4": 317, "Shape_Length": 52361.240672929787, "Shape_Area": 79845158.874071926, "total_2021": 1716, "total_2022": 1936 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.266815975329664, 29.727724194167568 ], [ -95.266799975468459, 29.727205194198962 ], [ -95.266738975714091, 29.726660193346678 ], [ -95.266639975649085, 29.725766193783215 ], [ -95.266531975369887, 29.724944193353696 ], [ -95.266444975222981, 29.724950193262245 ], [ -95.266312975256568, 29.724987193152504 ], [ -95.266202974822221, 29.725017193693223 ], [ -95.265932975515142, 29.725092193724343 ], [ -95.265804975214607, 29.725182193847786 ], [ -95.265338975097833, 29.725331193086507 ], [ -95.264805975203203, 29.725378193038203 ], [ -95.264233974838675, 29.725556193566579 ], [ -95.263987974512261, 29.725632193981536 ], [ -95.26326397472674, 29.725897194008084 ], [ -95.262706974218105, 29.726206194044654 ], [ -95.262089974527257, 29.726313193692622 ], [ -95.261636973888884, 29.726311193467161 ], [ -95.260726973576155, 29.726547193568187 ], [ -95.25932797359404, 29.726879193575797 ], [ -95.25846397376344, 29.72695419439227 ], [ -95.256619972341767, 29.726858193729061 ], [ -95.255795973058667, 29.726815194494616 ], [ -95.25471997248691, 29.726278193779439 ], [ -95.254032972534645, 29.726027193906109 ], [ -95.252611971807454, 29.724981193516737 ], [ -95.251423971068675, 29.723828193709036 ], [ -95.251079970875168, 29.72342119362699 ], [ -95.25083597154665, 29.723131193773547 ], [ -95.250424970820916, 29.722726193489844 ], [ -95.250002971280935, 29.722494193321985 ], [ -95.249937970801199, 29.722458193442165 ], [ -95.249914970499461, 29.722418193344801 ], [ -95.249706970558591, 29.72205819321368 ], [ -95.248467970535629, 29.72113919279942 ], [ -95.247929970494525, 29.720645193035384 ], [ -95.247790970479002, 29.7206061928728 ], [ -95.247458970172502, 29.720513192766905 ], [ -95.246333969827845, 29.719977193304871 ], [ -95.245550969690996, 29.719681192528721 ], [ -95.245460970091983, 29.71964719320091 ], [ -95.244522969137265, 29.719366192490192 ], [ -95.243027968749757, 29.719092193040698 ], [ -95.242538968480616, 29.719256193382378 ], [ -95.242479968875017, 29.719276193251044 ], [ -95.24171296896661, 29.719421193133115 ], [ -95.241128968329761, 29.719373192804809 ], [ -95.240731968493833, 29.719341192645672 ], [ -95.240490968246959, 29.719321192656249 ], [ -95.240232967928264, 29.719300193253861 ], [ -95.239990967708408, 29.719312193283336 ], [ -95.239327967763273, 29.719346192701593 ], [ -95.238918967420474, 29.719520193131853 ], [ -95.238405968055872, 29.719986192817295 ], [ -95.237899968129099, 29.720298193754292 ], [ -95.237844967639674, 29.720342193228117 ], [ -95.237535967665593, 29.720591193442282 ], [ -95.237504967618335, 29.720616193343655 ], [ -95.237130967946541, 29.721018193891538 ], [ -95.236491967460964, 29.721704193366786 ], [ -95.236412967190276, 29.72179019346575 ], [ -95.235684967025193, 29.722375193863112 ], [ -95.23438796698585, 29.723079194090246 ], [ -95.23375996698843, 29.723600194385288 ], [ -95.232109965913196, 29.724269194051384 ], [ -95.23138496614699, 29.724403194175643 ], [ -95.229846966113911, 29.72502619416823 ], [ -95.22869496509945, 29.725349194750962 ], [ -95.228297965922508, 29.725461194733803 ], [ -95.228301964979323, 29.725475194628359 ], [ -95.228452965582917, 29.726044195194721 ], [ -95.228577965094217, 29.726194194749901 ], [ -95.228645965960055, 29.726274194658931 ], [ -95.228713965481091, 29.726443195320041 ], [ -95.228810965705762, 29.727273195309262 ], [ -95.228876965909507, 29.728266195507469 ], [ -95.229131966316032, 29.728432195205528 ], [ -95.229352966074927, 29.728514195297326 ], [ -95.22961096587062, 29.728668195710643 ], [ -95.229661965852642, 29.728690194945987 ], [ -95.229686966478425, 29.728800194995536 ], [ -95.229711965969344, 29.729015195352723 ], [ -95.229718965736325, 29.729498195165554 ], [ -95.229753966091067, 29.730313195713318 ], [ -95.229756966464592, 29.730389196116111 ], [ -95.229636965866945, 29.730840195732732 ], [ -95.229643965793059, 29.731153195545609 ], [ -95.229662966145227, 29.731351195913859 ], [ -95.229673965735131, 29.731660195518472 ], [ -95.229675965885662, 29.731725196231544 ], [ -95.229651966436364, 29.731909195797883 ], [ -95.229643965636697, 29.731973195555408 ], [ -95.229643965980515, 29.732204195780483 ], [ -95.229660966083401, 29.732511195903456 ], [ -95.230329966781426, 29.732524196340044 ], [ -95.230802966830382, 29.732516196193192 ], [ -95.231467966952508, 29.732502195754048 ], [ -95.23276096666558, 29.732483196060418 ], [ -95.234070967486474, 29.732499195809044 ], [ -95.235229967611673, 29.732488196191749 ], [ -95.236361968010655, 29.732499196016139 ], [ -95.237809967930886, 29.732470195503584 ], [ -95.238291968162557, 29.732466195932144 ], [ -95.240137969102591, 29.732444195716401 ], [ -95.24014496863694, 29.73318119625193 ], [ -95.240152968453813, 29.733934196266784 ], [ -95.240159969030486, 29.734633196275325 ], [ -95.240167968555625, 29.735382196093763 ], [ -95.240174969507507, 29.736135196497305 ], [ -95.240181969319323, 29.736834196957677 ], [ -95.240189969009151, 29.737596197060252 ], [ -95.240196968887275, 29.738300197312284 ], [ -95.24021996905644, 29.739032196995673 ], [ -95.240266968697426, 29.73976019767824 ], [ -95.240267968770809, 29.740480197420524 ], [ -95.240275968860445, 29.741230197112433 ], [ -95.240266969656247, 29.741964197596786 ], [ -95.240267968823161, 29.742647197808221 ], [ -95.240289969392492, 29.74320919777816 ], [ -95.240297969042018, 29.74339719791428 ], [ -95.240300968991633, 29.744128198317089 ], [ -95.240294969449153, 29.744859197868205 ], [ -95.240296969758575, 29.745605198102279 ], [ -95.240301969856759, 29.746468198470826 ], [ -95.240302969144025, 29.746724198371162 ], [ -95.240314969700137, 29.747870198589606 ], [ -95.240363970005944, 29.748325199039886 ], [ -95.240398969178116, 29.748639199092992 ], [ -95.240593969777805, 29.749475199117136 ], [ -95.240846969474475, 29.749915198967692 ], [ -95.241386969604775, 29.750792199622467 ], [ -95.242964970807179, 29.752338200107349 ], [ -95.245792970888502, 29.755138199886595 ], [ -95.246362970938776, 29.755909200703535 ], [ -95.246590971625125, 29.756353200414853 ], [ -95.246820971580306, 29.756803200794902 ], [ -95.24701597186926, 29.757352200371269 ], [ -95.247139971645751, 29.758009200926665 ], [ -95.247196972252183, 29.759434201329608 ], [ -95.251513973146317, 29.75968320084559 ], [ -95.251713973038775, 29.759702200826943 ], [ -95.251631972416618, 29.757614200479935 ], [ -95.253155972833724, 29.757610200035945 ], [ -95.253804973681426, 29.75760820067029 ], [ -95.254296973539141, 29.757601200822904 ], [ -95.254296973238965, 29.757561200579186 ], [ -95.254310973422236, 29.757501200737689 ], [ -95.254079973366984, 29.749945198987994 ], [ -95.253957972978185, 29.746483198013369 ], [ -95.253997972500841, 29.746193198062716 ], [ -95.253950973139439, 29.746194198433802 ], [ -95.253913972810309, 29.744445197444044 ], [ -95.253856972309762, 29.742382197477649 ], [ -95.253829972639622, 29.741697197293497 ], [ -95.253810972227754, 29.740998196815934 ], [ -95.253788972944832, 29.74032419655504 ], [ -95.253771972461323, 29.739623197174836 ], [ -95.253711972602844, 29.738960196740493 ], [ -95.253730972806608, 29.738255196553268 ], [ -95.253714972807273, 29.737567196532197 ], [ -95.253706972165716, 29.736884196269759 ], [ -95.25368397210849, 29.736192196233088 ], [ -95.253670972317821, 29.735498195500515 ], [ -95.253646972600748, 29.734810195978529 ], [ -95.253628972798893, 29.734125195887586 ], [ -95.253602971800916, 29.733444195628188 ], [ -95.253607972357216, 29.733148195210678 ], [ -95.253612972757878, 29.732760195022472 ], [ -95.255130972449223, 29.732723195137115 ], [ -95.255099972463057, 29.731986195354125 ], [ -95.255599972521452, 29.732032195125512 ], [ -95.256007972965904, 29.732133195066893 ], [ -95.256422973366682, 29.732327195163286 ], [ -95.256647973341302, 29.732469195022912 ], [ -95.256974973443562, 29.732676195601083 ], [ -95.257789973743328, 29.733210195279739 ], [ -95.261026973839719, 29.735391195717487 ], [ -95.263071975053265, 29.736769195556104 ], [ -95.263525974942482, 29.73706419632736 ], [ -95.26444697551085, 29.737630196193805 ], [ -95.264746975260863, 29.737807196156911 ], [ -95.265179975456306, 29.738087195685573 ], [ -95.26543197566221, 29.738250196380449 ], [ -95.265472975378884, 29.737971196227601 ], [ -95.265521975179837, 29.737636196356288 ], [ -95.265630975716761, 29.736897195839802 ], [ -95.265844976048456, 29.735446195237703 ], [ -95.265931975153578, 29.7348531952881 ], [ -95.266067975237007, 29.733934194838518 ], [ -95.266421975532936, 29.73155219507688 ], [ -95.2664729750243, 29.731208194304884 ], [ -95.266498975170876, 29.730987194457974 ], [ -95.266578975263542, 29.730308194250657 ], [ -95.266700975171304, 29.729351193889933 ], [ -95.266759975733549, 29.728876194059353 ], [ -95.266797975765726, 29.72826319363233 ], [ -95.266815975329664, 29.727724194167568 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 114, "Tract": "48201233703", "Area_SqMi": 2.8351561247869461, "total_2009": 994, "total_2010": 918, "total_2011": 2793, "total_2012": 3262, "total_2013": 615, "total_2014": 704, "total_2015": 756, "total_2016": 1990, "total_2017": 1671, "total_2018": 1338, "total_2019": 1390, "total_2020": 1148, "age1": 76, "age2": 243, "age3": 116, "earn1": 29, "earn2": 68, "earn3": 338, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 362, "naics_s06": 10, "naics_s07": 39, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 10, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 345, "race2": 45, "race3": 7, "race4": 27, "race5": 1, "race6": 10, "ethnicity1": 213, "ethnicity2": 222, "edu1": 97, "edu2": 75, "edu3": 113, "edu4": 74, "Shape_Length": 38061.94962400174, "Shape_Area": 79039300.340856701, "total_2021": 1364, "total_2022": 435 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.233571968656378, 29.75903720173293 ], [ -95.233454968127575, 29.753128199981276 ], [ -95.233212967359307, 29.746767198920796 ], [ -95.233204967591689, 29.746597198980911 ], [ -95.233185967603234, 29.746190199113464 ], [ -95.233155967378252, 29.745519198459007 ], [ -95.233145967439384, 29.74482919841962 ], [ -95.233150967201581, 29.744150198780492 ], [ -95.233100967665251, 29.743402198010855 ], [ -95.233079967889793, 29.742678198427654 ], [ -95.23307496738056, 29.74198619808346 ], [ -95.233014967569289, 29.741247198110511 ], [ -95.233014967003257, 29.740523197264611 ], [ -95.232993967035526, 29.739811197617009 ], [ -95.232950967719049, 29.73905819758258 ], [ -95.23292496710252, 29.738319196997637 ], [ -95.232920966762279, 29.737600196903863 ], [ -95.232921967380904, 29.736864196720568 ], [ -95.23290496683633, 29.736248196910392 ], [ -95.232901966678753, 29.736138196355459 ], [ -95.232847967062057, 29.735404196814951 ], [ -95.232833967062021, 29.734687196055525 ], [ -95.232819967271027, 29.7339341961206 ], [ -95.232772967399583, 29.733206196412297 ], [ -95.23276096666558, 29.732483196060418 ], [ -95.231467966952508, 29.732502195754048 ], [ -95.230802966830382, 29.732516196193192 ], [ -95.230329966781426, 29.732524196340044 ], [ -95.229660966083401, 29.732511195903456 ], [ -95.229643965980515, 29.732204195780483 ], [ -95.229643965636697, 29.731973195555408 ], [ -95.229651966436364, 29.731909195797883 ], [ -95.229675965885662, 29.731725196231544 ], [ -95.229673965735131, 29.731660195518472 ], [ -95.229662966145227, 29.731351195913859 ], [ -95.229643965793059, 29.731153195545609 ], [ -95.229636965866945, 29.730840195732732 ], [ -95.229756966464592, 29.730389196116111 ], [ -95.229753966091067, 29.730313195713318 ], [ -95.229718965736325, 29.729498195165554 ], [ -95.229711965969344, 29.729015195352723 ], [ -95.229686966478425, 29.728800194995536 ], [ -95.229661965852642, 29.728690194945987 ], [ -95.22961096587062, 29.728668195710643 ], [ -95.229352966074927, 29.728514195297326 ], [ -95.229131966316032, 29.728432195205528 ], [ -95.228876965909507, 29.728266195507469 ], [ -95.228810965705762, 29.727273195309262 ], [ -95.228713965481091, 29.726443195320041 ], [ -95.228645965960055, 29.726274194658931 ], [ -95.228577965094217, 29.726194194749901 ], [ -95.228452965582917, 29.726044195194721 ], [ -95.228301964979323, 29.725475194628359 ], [ -95.227001965002501, 29.725823194387818 ], [ -95.226714964876408, 29.725804195134682 ], [ -95.22605496467709, 29.725854195308653 ], [ -95.225030964306654, 29.72564319458888 ], [ -95.224536964362926, 29.725588195243578 ], [ -95.223718964433445, 29.725333195303978 ], [ -95.223548963992883, 29.725280194921929 ], [ -95.223429964524215, 29.725243194837606 ], [ -95.222811964473323, 29.725099195215815 ], [ -95.222618963671536, 29.725076194775671 ], [ -95.219317963135254, 29.724133194550777 ], [ -95.217643963126037, 29.724296195246939 ], [ -95.217340962136447, 29.724325195056618 ], [ -95.217038962252118, 29.724355194681692 ], [ -95.215217962536954, 29.724533195221568 ], [ -95.213607961976322, 29.725500194820423 ], [ -95.211948961429187, 29.726496195148485 ], [ -95.211891961299969, 29.726531195403389 ], [ -95.211896961221953, 29.727674195489175 ], [ -95.211897960911401, 29.72780219600677 ], [ -95.211899961843002, 29.727968195662076 ], [ -95.211899961597396, 29.727994195601397 ], [ -95.211912961513164, 29.729012196226428 ], [ -95.211904961710687, 29.729712196251675 ], [ -95.211901961511515, 29.730044195959863 ], [ -95.21191396104517, 29.730446196401914 ], [ -95.211915961693904, 29.730496196457345 ], [ -95.211931961251409, 29.731671196980574 ], [ -95.212018961164475, 29.731850196158458 ], [ -95.212034961513979, 29.73194919681362 ], [ -95.212083962031485, 29.732061196293284 ], [ -95.212139962098092, 29.73215719631407 ], [ -95.212215961433131, 29.73222319689452 ], [ -95.21226596141868, 29.732253196910804 ], [ -95.212415961911191, 29.732328196490702 ], [ -95.21258096166676, 29.732496196708158 ], [ -95.212638961590102, 29.732564196746829 ], [ -95.212705962272821, 29.732738196710198 ], [ -95.212706961380064, 29.732808196861441 ], [ -95.212685961921039, 29.73296919668288 ], [ -95.212626961841522, 29.733116197062728 ], [ -95.212355961554223, 29.733407196860064 ], [ -95.212263961792686, 29.733528196596009 ], [ -95.212191961682024, 29.73367819721539 ], [ -95.212144962196462, 29.733810196940937 ], [ -95.212115961625926, 29.733948196802459 ], [ -95.212067962079331, 29.734102197092085 ], [ -95.212106961239996, 29.734997197367282 ], [ -95.212114961297956, 29.735177197661571 ], [ -95.212269961966783, 29.73873919764911 ], [ -95.212278961993988, 29.738957197618504 ], [ -95.212282961567212, 29.739054197710679 ], [ -95.212287962312274, 29.739150197920313 ], [ -95.212364961865546, 29.740953198685844 ], [ -95.212370962237046, 29.74106919865374 ], [ -95.212555962783881, 29.745924199238292 ], [ -95.21261896264545, 29.747828199847913 ], [ -95.212655962243488, 29.748957200195669 ], [ -95.212670962087785, 29.749415200481469 ], [ -95.212676962073971, 29.749600200397957 ], [ -95.212681962951578, 29.749769200454615 ], [ -95.212695962574855, 29.750182200367064 ], [ -95.212740963041185, 29.750296200747357 ], [ -95.212745962212381, 29.750923200144914 ], [ -95.21277996222905, 29.751764200718558 ], [ -95.212808962388934, 29.753150200785409 ], [ -95.212825962680398, 29.75379520125054 ], [ -95.212871962720087, 29.754591200943715 ], [ -95.212895963004271, 29.755016200944009 ], [ -95.212918963019149, 29.755631201279421 ], [ -95.212962963066289, 29.756499201555457 ], [ -95.212977963167702, 29.757645201522266 ], [ -95.212994962991701, 29.758039202036155 ], [ -95.213018962843051, 29.758544202012498 ], [ -95.213034962616575, 29.759110201780576 ], [ -95.21305496332262, 29.759445202168738 ], [ -95.213617963181875, 29.759436201904833 ], [ -95.213641963390884, 29.759672202654908 ], [ -95.213651962843031, 29.75977120232174 ], [ -95.213656963539577, 29.759816202648725 ], [ -95.213730963755779, 29.760011202666636 ], [ -95.213852962922616, 29.760187202028987 ], [ -95.214142963822653, 29.760492202738579 ], [ -95.214746963630347, 29.760118201911983 ], [ -95.215253963728657, 29.759866202428157 ], [ -95.21567096418849, 29.759718201818028 ], [ -95.216032963350401, 29.759589202163429 ], [ -95.216861963650715, 29.759413201863559 ], [ -95.217311963985409, 29.759354202105715 ], [ -95.217724964276712, 29.759347202012815 ], [ -95.21773596403257, 29.759639202331474 ], [ -95.21773596413648, 29.759652202173132 ], [ -95.218280964907166, 29.759629202276205 ], [ -95.219201964611031, 29.759606201639382 ], [ -95.219240964735064, 29.759602201820275 ], [ -95.219271964612034, 29.759605202394027 ], [ -95.222513965337058, 29.759524201745069 ], [ -95.223299966067302, 29.759505201577571 ], [ -95.22330496584857, 29.759452202209413 ], [ -95.223325965866096, 29.759452201947152 ], [ -95.224336965902808, 29.759432202026499 ], [ -95.22749296728567, 29.759331201405001 ], [ -95.229380967584774, 29.759306201564691 ], [ -95.231332967748742, 29.759231201765267 ], [ -95.232522967858131, 29.759224201519903 ], [ -95.232972968357601, 29.759144201402606 ], [ -95.233571968656378, 29.75903720173293 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 115, "Tract": "48201222502", "Area_SqMi": 1.3029677021786155, "total_2009": 1682, "total_2010": 1737, "total_2011": 2042, "total_2012": 2200, "total_2013": 2101, "total_2014": 2302, "total_2015": 2368, "total_2016": 2553, "total_2017": 2358, "total_2018": 2668, "total_2019": 2821, "total_2020": 2765, "age1": 413, "age2": 1304, "age3": 597, "earn1": 177, "earn2": 333, "earn3": 1804, "naics_s01": 13, "naics_s02": 84, "naics_s03": 0, "naics_s04": 739, "naics_s05": 703, "naics_s06": 243, "naics_s07": 201, "naics_s08": 40, "naics_s09": 0, "naics_s10": 0, "naics_s11": 56, "naics_s12": 22, "naics_s13": 0, "naics_s14": 173, "naics_s15": 0, "naics_s16": 19, "naics_s17": 0, "naics_s18": 8, "naics_s19": 13, "naics_s20": 0, "race1": 1893, "race2": 265, "race3": 31, "race4": 94, "race5": 2, "race6": 29, "ethnicity1": 1171, "ethnicity2": 1143, "edu1": 565, "edu2": 518, "edu3": 466, "edu4": 352, "Shape_Length": 30787.679805842803, "Shape_Area": 36324509.485230058, "total_2021": 2381, "total_2022": 2314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.404347019507469, 29.91554322761883 ], [ -95.404998019489895, 29.91543922788777 ], [ -95.403999019364576, 29.91543422771883 ], [ -95.403300019057923, 29.915440227270725 ], [ -95.402739018696309, 29.915440228102344 ], [ -95.402089018761288, 29.915440228068217 ], [ -95.401483018561606, 29.915470227919819 ], [ -95.401155018061374, 29.915453227959883 ], [ -95.400902018416218, 29.915453227411575 ], [ -95.400610018066715, 29.915463227524327 ], [ -95.39960201743223, 29.91549722790467 ], [ -95.399437017816652, 29.915493228244088 ], [ -95.399129017435754, 29.915486227448422 ], [ -95.398081017652274, 29.915502228165764 ], [ -95.39774701736259, 29.915528227410956 ], [ -95.397658017704003, 29.915535227553598 ], [ -95.397191016936233, 29.915529227450868 ], [ -95.396842017190863, 29.91553522776859 ], [ -95.396238016698405, 29.915546227802114 ], [ -95.396027016735786, 29.915559227915843 ], [ -95.395803017360507, 29.915573228006114 ], [ -95.395434016952748, 29.915573227603428 ], [ -95.395342016534528, 29.915573227957882 ], [ -95.395163017288155, 29.915578227932286 ], [ -95.394356016855468, 29.915601227843215 ], [ -95.394156016755701, 29.915627227608393 ], [ -95.39396001614486, 29.915611228311647 ], [ -95.393720015984428, 29.915616228256535 ], [ -95.393499016035392, 29.9156052276712 ], [ -95.393469016795464, 29.915607227744513 ], [ -95.392944016565934, 29.915633228028092 ], [ -95.392853016547988, 29.915635228494885 ], [ -95.392729016498834, 29.915640227684104 ], [ -95.392464015752694, 29.915649228066691 ], [ -95.39225001570631, 29.915676227882397 ], [ -95.392010016113503, 29.915671228291693 ], [ -95.391562016161018, 29.915715228061494 ], [ -95.391002015980561, 29.915738228070129 ], [ -95.390520015620666, 29.915758228290638 ], [ -95.390281015906936, 29.915786227880094 ], [ -95.390085015047873, 29.915791227757467 ], [ -95.389858015421098, 29.915786228296163 ], [ -95.389643015707378, 29.915807228070566 ], [ -95.388987014686251, 29.915873228394272 ], [ -95.388658015436732, 29.915877228214484 ], [ -95.38853901474225, 29.915879227789574 ], [ -95.388343015100062, 29.915895228092982 ], [ -95.388141015183081, 29.91593322864188 ], [ -95.387635015304042, 29.915957228361474 ], [ -95.386892014272064, 29.915993228608187 ], [ -95.386683014274382, 29.91603222817875 ], [ -95.386655014174281, 29.916031227900135 ], [ -95.386361014745205, 29.916026228389043 ], [ -95.384541013759247, 29.916141228694187 ], [ -95.383755013867969, 29.916190228923458 ], [ -95.383326013871695, 29.916201228806596 ], [ -95.383080013950973, 29.916239228425127 ], [ -95.382903013516923, 29.916239228442912 ], [ -95.382437013222031, 29.916270228641533 ], [ -95.381912012949243, 29.916305228398485 ], [ -95.381691013474594, 29.916338228309357 ], [ -95.381243013615062, 29.916360228556638 ], [ -95.381009013054637, 29.916360228992762 ], [ -95.38042901276485, 29.916381228618917 ], [ -95.380353012714281, 29.916403228310205 ], [ -95.380056013133057, 29.916409228213457 ], [ -95.379848012548152, 29.916447228739596 ], [ -95.379223013138514, 29.916474228511071 ], [ -95.378409012759946, 29.916529228957202 ], [ -95.378220012056232, 29.916551228940509 ], [ -95.377784012743419, 29.916573228330705 ], [ -95.377361012668104, 29.916622228908889 ], [ -95.376730012564522, 29.916644228824424 ], [ -95.3766520117222, 29.916651228620985 ], [ -95.376484012520748, 29.916665229098122 ], [ -95.376375011794366, 29.916665228651237 ], [ -95.376343011697116, 29.916665228448387 ], [ -95.376310011691118, 29.916665229221078 ], [ -95.376073012189593, 29.916672229292484 ], [ -95.376058011853388, 29.916828228782364 ], [ -95.37603301243432, 29.917228229413691 ], [ -95.376035011487602, 29.917362228865461 ], [ -95.376033011873602, 29.917602228942698 ], [ -95.376107012015524, 29.918053229040179 ], [ -95.376245011711248, 29.918452229417372 ], [ -95.376475012211529, 29.919026229712376 ], [ -95.376687012369231, 29.919509229546438 ], [ -95.376847012475949, 29.919916229848255 ], [ -95.376994011949634, 29.92032622945262 ], [ -95.377194011977878, 29.921106230098143 ], [ -95.377447012016148, 29.922106230143608 ], [ -95.378163013062405, 29.925039230908006 ], [ -95.378364013406468, 29.926277231181054 ], [ -95.378464013403914, 29.927075231064773 ], [ -95.378623013139006, 29.927825230823988 ], [ -95.378882012710989, 29.928850231531985 ], [ -95.379120013180938, 29.929792231441922 ], [ -95.379903013399968, 29.93260323157963 ], [ -95.379941013795573, 29.932740231964395 ], [ -95.380356013441883, 29.932672231589553 ], [ -95.380595014237457, 29.932632232183892 ], [ -95.38071701435301, 29.93261323167539 ], [ -95.381278013801563, 29.932511231713473 ], [ -95.381744014053879, 29.932425231885116 ], [ -95.382898014627486, 29.932220231355451 ], [ -95.383403014986698, 29.932145231723997 ], [ -95.383499014107215, 29.932123231898782 ], [ -95.383941014800499, 29.932023231840425 ], [ -95.384037014725109, 29.932001231657615 ], [ -95.385834015309754, 29.931939231698902 ], [ -95.38676901584455, 29.931895231878123 ], [ -95.386819015545484, 29.931892231695873 ], [ -95.389062016258094, 29.931910231556774 ], [ -95.389337016485314, 29.931915231827809 ], [ -95.389564016017331, 29.931919231078105 ], [ -95.390977015982003, 29.931919231803615 ], [ -95.392354016314755, 29.931911231383236 ], [ -95.393142016884283, 29.931894231126428 ], [ -95.39339701690561, 29.931886231391864 ], [ -95.395365017175408, 29.931827230934584 ], [ -95.400085018963836, 29.931795230773918 ], [ -95.400069018621011, 29.931232230753757 ], [ -95.400057018222029, 29.930407231059391 ], [ -95.400046019132105, 29.929599230712114 ], [ -95.399984018988249, 29.929332230455053 ], [ -95.399883018145104, 29.929077230447518 ], [ -95.399702018905316, 29.928830230830297 ], [ -95.399462018230594, 29.928584230612135 ], [ -95.398902017977008, 29.927994230354749 ], [ -95.398325018404577, 29.927396229984296 ], [ -95.398053017561736, 29.92712323037841 ], [ -95.397892017645347, 29.926806229889653 ], [ -95.397885017836899, 29.92675423019768 ], [ -95.397861017599567, 29.926568229832085 ], [ -95.397863017449652, 29.926509229988927 ], [ -95.397864018318728, 29.926495230229499 ], [ -95.397882018137324, 29.92598523003263 ], [ -95.397697018384861, 29.925948230337053 ], [ -95.39735501803213, 29.925580230311731 ], [ -95.397071017302579, 29.925290229553305 ], [ -95.396797017458113, 29.925008230205293 ], [ -95.395638016839385, 29.923812229481719 ], [ -95.395360017321437, 29.923508229211436 ], [ -95.394814017371814, 29.922924229584307 ], [ -95.394326016747016, 29.922426228942573 ], [ -95.394275017017705, 29.922357229432063 ], [ -95.393942016944976, 29.922020228892123 ], [ -95.393796016856029, 29.921795229227182 ], [ -95.393678017132302, 29.921599229116449 ], [ -95.393591016671053, 29.921355229394774 ], [ -95.393543016379127, 29.921031228915691 ], [ -95.393526016033633, 29.919342228766244 ], [ -95.393525016107674, 29.919325229085246 ], [ -95.393975016142463, 29.919322228786694 ], [ -95.394335016745927, 29.919292229063892 ], [ -95.394522016556579, 29.919257228950094 ], [ -95.394857016721772, 29.919206228386312 ], [ -95.395190016475965, 29.919125228955131 ], [ -95.395408017448432, 29.919065228297924 ], [ -95.395676017490743, 29.918988228887773 ], [ -95.3959240169183, 29.91890022872855 ], [ -95.396151017030945, 29.918813228479678 ], [ -95.396417016957216, 29.918703228404762 ], [ -95.396735017433201, 29.918567228612893 ], [ -95.397077016931689, 29.918413228804855 ], [ -95.3977640171275, 29.918027228158273 ], [ -95.398538017559531, 29.917706228294563 ], [ -95.399662018283493, 29.917219228202391 ], [ -95.400074018040883, 29.917049227873015 ], [ -95.400558017705194, 29.916848228108147 ], [ -95.400879018063108, 29.916707228280309 ], [ -95.401611018324189, 29.916385228260509 ], [ -95.401971018205558, 29.916238227517905 ], [ -95.402523018366594, 29.916046227781198 ], [ -95.403088018780124, 29.915853227538978 ], [ -95.403701019050516, 29.915677227556152 ], [ -95.404347019507469, 29.91554322761883 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 116, "Tract": "48201533802", "Area_SqMi": 2.1434496191932229, "total_2009": 863, "total_2010": 999, "total_2011": 928, "total_2012": 1204, "total_2013": 1192, "total_2014": 1136, "total_2015": 1396, "total_2016": 1324, "total_2017": 1886, "total_2018": 1851, "total_2019": 1478, "total_2020": 1517, "age1": 250, "age2": 824, "age3": 330, "earn1": 116, "earn2": 352, "earn3": 936, "naics_s01": 0, "naics_s02": 40, "naics_s03": 0, "naics_s04": 662, "naics_s05": 104, "naics_s06": 120, "naics_s07": 216, "naics_s08": 4, "naics_s09": 0, "naics_s10": 5, "naics_s11": 9, "naics_s12": 14, "naics_s13": 0, "naics_s14": 3, "naics_s15": 90, "naics_s16": 37, "naics_s17": 0, "naics_s18": 21, "naics_s19": 79, "naics_s20": 0, "race1": 1156, "race2": 104, "race3": 12, "race4": 106, "race5": 5, "race6": 21, "ethnicity1": 757, "ethnicity2": 647, "edu1": 313, "edu2": 278, "edu3": 337, "edu4": 226, "Shape_Length": 32536.283618317411, "Shape_Area": 59755706.832419768, "total_2021": 1474, "total_2022": 1404 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.483260039800442, 29.937357229804185 ], [ -95.483255040447787, 29.937124229553476 ], [ -95.483256040667612, 29.936374229016121 ], [ -95.483247039751518, 29.935829229025156 ], [ -95.483241040583863, 29.935221229083666 ], [ -95.483240039861442, 29.935134229175137 ], [ -95.483227040583074, 29.934916228725424 ], [ -95.483195039722489, 29.934680229189652 ], [ -95.483149040094446, 29.934391229145877 ], [ -95.483075040216718, 29.934038228289065 ], [ -95.483027040494051, 29.933867228397755 ], [ -95.483016040350236, 29.93381222869106 ], [ -95.482988039951849, 29.933751229014234 ], [ -95.482913040328157, 29.933534228677676 ], [ -95.482729040383347, 29.933104228943925 ], [ -95.482371040237894, 29.932357228755329 ], [ -95.481818039206843, 29.931186228590512 ], [ -95.481744039539251, 29.931005228152543 ], [ -95.481643039579822, 29.930721228179625 ], [ -95.481526039733836, 29.930325228331412 ], [ -95.481483039723017, 29.930120227960277 ], [ -95.481425039626842, 29.929730227856052 ], [ -95.481412039760642, 29.929541227929615 ], [ -95.481404039752462, 29.9293902282628 ], [ -95.481405039119807, 29.929313228040836 ], [ -95.481396039766224, 29.929038227338602 ], [ -95.481375039293752, 29.927637227757518 ], [ -95.481375039765013, 29.927356227700756 ], [ -95.481372039790656, 29.927100227539416 ], [ -95.481356039766865, 29.926025227217785 ], [ -95.481354039393835, 29.92547922695481 ], [ -95.481366039289014, 29.925244226993541 ], [ -95.481394039228803, 29.924988226980645 ], [ -95.481445039335654, 29.924700227261056 ], [ -95.481562039571173, 29.92408322700766 ], [ -95.481608039111364, 29.923804226730326 ], [ -95.48163003948342, 29.92356322658059 ], [ -95.481638039467114, 29.923203226813538 ], [ -95.481636039100735, 29.922826226228516 ], [ -95.481627039491798, 29.922126226140108 ], [ -95.481618039368811, 29.921595226087412 ], [ -95.481610038808057, 29.920681225643357 ], [ -95.481610038864574, 29.920628226112505 ], [ -95.481605039460518, 29.919930225821034 ], [ -95.481597038974058, 29.919553225485263 ], [ -95.481397038782319, 29.919557225839661 ], [ -95.479089038045956, 29.919615225727981 ], [ -95.477416037592363, 29.919598225690681 ], [ -95.473414036824821, 29.919565226012914 ], [ -95.471374036903526, 29.919478225929264 ], [ -95.469383036011621, 29.919532225938916 ], [ -95.466630035377122, 29.919532226293594 ], [ -95.466030035277868, 29.919527225953026 ], [ -95.465566034646329, 29.919523226640631 ], [ -95.464916035301556, 29.919430226105117 ], [ -95.464431035176332, 29.919246226474542 ], [ -95.463169034149388, 29.918945226401579 ], [ -95.462607034477259, 29.918746225895244 ], [ -95.462028034016214, 29.918638226354915 ], [ -95.461286033687685, 29.918529226538144 ], [ -95.460634033555365, 29.918529226677368 ], [ -95.460121033287109, 29.918554226482652 ], [ -95.459090032920258, 29.918798226233097 ], [ -95.458370033160165, 29.918969226317728 ], [ -95.457769032481664, 29.919114226455715 ], [ -95.457488032680772, 29.919183226823328 ], [ -95.456229032627078, 29.919491226841302 ], [ -95.455343032024999, 29.91970422689711 ], [ -95.454098031688858, 29.920003226898608 ], [ -95.452810032236087, 29.920309226883223 ], [ -95.452511031306216, 29.920380226992119 ], [ -95.45228103159306, 29.920427226918722 ], [ -95.45210603207461, 29.920456226570877 ], [ -95.452043031438578, 29.920466227306825 ], [ -95.451668031054197, 29.920512227197573 ], [ -95.451418031262307, 29.920531227082058 ], [ -95.451113030850479, 29.92054422668425 ], [ -95.451012031748306, 29.920545226924428 ], [ -95.450217030930858, 29.920555226912796 ], [ -95.44994803102891, 29.920550226776438 ], [ -95.449671030884389, 29.92052822695144 ], [ -95.449475030697869, 29.920504227311746 ], [ -95.449031030930215, 29.920450227366246 ], [ -95.448674030827348, 29.92042322683778 ], [ -95.448453030135269, 29.920415227142996 ], [ -95.448424030856856, 29.920414226895808 ], [ -95.448050030996654, 29.920420227156146 ], [ -95.447815030953535, 29.920436227127635 ], [ -95.447423030516021, 29.920483227494596 ], [ -95.447335030667588, 29.920498227254143 ], [ -95.44722403012436, 29.920516227622841 ], [ -95.446845030157121, 29.920643227066222 ], [ -95.447408030602546, 29.921368227079597 ], [ -95.447754030160297, 29.921816227253188 ], [ -95.448045030569318, 29.922194227188033 ], [ -95.448795030781156, 29.923162228027213 ], [ -95.449581030677365, 29.924140227568248 ], [ -95.450409031581415, 29.925234228359574 ], [ -95.450535031446009, 29.925394227785642 ], [ -95.451084031901743, 29.926106228481608 ], [ -95.451540031984052, 29.9266902278525 ], [ -95.452315032057541, 29.927675228190665 ], [ -95.453304032324638, 29.928941228924863 ], [ -95.453595031993061, 29.929317229116084 ], [ -95.453675032094154, 29.929423228413587 ], [ -95.454131032471054, 29.930032228598318 ], [ -95.456395033173052, 29.932946228970099 ], [ -95.457188033672097, 29.933968229737442 ], [ -95.457379033706971, 29.934210229612756 ], [ -95.457639034114237, 29.93453722984399 ], [ -95.458335033742713, 29.935422230036789 ], [ -95.458915034233584, 29.936159229838655 ], [ -95.459197034135428, 29.936522230211381 ], [ -95.459243034483507, 29.936574229963227 ], [ -95.45948903431082, 29.936878230461168 ], [ -95.45971203430291, 29.937153229989704 ], [ -95.46000303459742, 29.937526230053535 ], [ -95.460248034519537, 29.93752522988521 ], [ -95.461044034545523, 29.937520229914931 ], [ -95.462388034988948, 29.937513229902542 ], [ -95.465942036060156, 29.937564230076237 ], [ -95.466706036080097, 29.937576229961003 ], [ -95.467515036676019, 29.937554230184794 ], [ -95.469429037223705, 29.937531229804506 ], [ -95.471584036971393, 29.93749322946919 ], [ -95.473499037342663, 29.937473230121277 ], [ -95.476726038699169, 29.937440229389974 ], [ -95.478776039057252, 29.937418229236446 ], [ -95.482988039952943, 29.937357229691749 ], [ -95.483260039800442, 29.937357229804185 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 117, "Tract": "48201410401", "Area_SqMi": 0.33933090102477054, "total_2009": 847, "total_2010": 854, "total_2011": 910, "total_2012": 984, "total_2013": 1026, "total_2014": 1061, "total_2015": 1216, "total_2016": 1174, "total_2017": 1158, "total_2018": 1046, "total_2019": 1129, "total_2020": 1137, "age1": 420, "age2": 708, "age3": 271, "earn1": 303, "earn2": 552, "earn3": 544, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 8, "naics_s06": 21, "naics_s07": 131, "naics_s08": 0, "naics_s09": 92, "naics_s10": 42, "naics_s11": 3, "naics_s12": 146, "naics_s13": 0, "naics_s14": 30, "naics_s15": 1, "naics_s16": 69, "naics_s17": 6, "naics_s18": 701, "naics_s19": 149, "naics_s20": 0, "race1": 1092, "race2": 159, "race3": 13, "race4": 102, "race5": 5, "race6": 28, "ethnicity1": 946, "ethnicity2": 453, "edu1": 199, "edu2": 230, "edu3": 296, "edu4": 254, "Shape_Length": 12410.432169515532, "Shape_Area": 9459964.7499291915, "total_2021": 1220, "total_2022": 1399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.410742012843585, 29.743415192086438 ], [ -95.410744013132884, 29.743145192062201 ], [ -95.41073601322735, 29.742586191680481 ], [ -95.410252012848431, 29.74262919252028 ], [ -95.40970201241538, 29.742673192282474 ], [ -95.409331012559761, 29.742702192044682 ], [ -95.408730012760685, 29.742751191952571 ], [ -95.408272012067087, 29.74277319256969 ], [ -95.407845012046351, 29.742770192268495 ], [ -95.407057012371808, 29.742748192339274 ], [ -95.406264012091555, 29.742738192630657 ], [ -95.405452011210201, 29.742734192042981 ], [ -95.404607011845997, 29.742745192338514 ], [ -95.403749010797569, 29.742761191997584 ], [ -95.402895010617783, 29.742772192643709 ], [ -95.40207501101834, 29.742791192289403 ], [ -95.402093010585801, 29.743770192248505 ], [ -95.402092010858198, 29.744760192461005 ], [ -95.402112011039335, 29.745743192941671 ], [ -95.402112010998664, 29.745830193353228 ], [ -95.402113011073666, 29.746255192760483 ], [ -95.402115011121552, 29.746336192714907 ], [ -95.402122011302851, 29.746527193579858 ], [ -95.402125010571396, 29.746793193001235 ], [ -95.402129011310592, 29.747003192862525 ], [ -95.402143011463153, 29.748009193888016 ], [ -95.402146011424051, 29.748225193874354 ], [ -95.4021480107766, 29.748423193175867 ], [ -95.40215601074604, 29.748959193699203 ], [ -95.402160011219749, 29.749206193521278 ], [ -95.402162011200602, 29.749365193292423 ], [ -95.402183010703254, 29.75080019442365 ], [ -95.402186011603419, 29.7509751944913 ], [ -95.402195011099693, 29.751469194468122 ], [ -95.402213011683585, 29.752432194159585 ], [ -95.40239901129263, 29.752422194409711 ], [ -95.402828011466681, 29.752413194296235 ], [ -95.403031011758344, 29.752410194385625 ], [ -95.403886012173473, 29.752399194114265 ], [ -95.404749011988557, 29.7523841939385 ], [ -95.405599011749175, 29.752361193933226 ], [ -95.406415011966871, 29.752344194643999 ], [ -95.407208012996108, 29.752341194054733 ], [ -95.407991012971024, 29.752329193746057 ], [ -95.40835701269053, 29.752327194019259 ], [ -95.409476012650799, 29.75230019431876 ], [ -95.409504013451937, 29.752299194421838 ], [ -95.409601013373916, 29.752271194519089 ], [ -95.409963013624761, 29.752095194108527 ], [ -95.410126013159541, 29.752040193585543 ], [ -95.410279012865573, 29.752021193790544 ], [ -95.410443013744228, 29.752018193914871 ], [ -95.410709013100984, 29.752020193767901 ], [ -95.410705012855303, 29.751103193604941 ], [ -95.410705013202517, 29.750706193294025 ], [ -95.410674013165121, 29.749080193183559 ], [ -95.410684013491846, 29.748133192832643 ], [ -95.410666013423437, 29.746899193233062 ], [ -95.410650013573701, 29.744674192263769 ], [ -95.410644013267358, 29.744399192073892 ], [ -95.410664012873823, 29.744232192239362 ], [ -95.410738012540918, 29.743926192297305 ], [ -95.410742012843585, 29.743415192086438 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 118, "Tract": "48201431801", "Area_SqMi": 0.4753248098411158, "total_2009": 10525, "total_2010": 7792, "total_2011": 8364, "total_2012": 9597, "total_2013": 9633, "total_2014": 10076, "total_2015": 10889, "total_2016": 11119, "total_2017": 11269, "total_2018": 11744, "total_2019": 10694, "total_2020": 10584, "age1": 1354, "age2": 6316, "age3": 2061, "earn1": 583, "earn2": 996, "earn3": 8152, "naics_s01": 4, "naics_s02": 1112, "naics_s03": 11, "naics_s04": 103, "naics_s05": 38, "naics_s06": 146, "naics_s07": 215, "naics_s08": 1176, "naics_s09": 1053, "naics_s10": 1177, "naics_s11": 164, "naics_s12": 3135, "naics_s13": 304, "naics_s14": 185, "naics_s15": 93, "naics_s16": 262, "naics_s17": 7, "naics_s18": 249, "naics_s19": 295, "naics_s20": 2, "race1": 7080, "race2": 1249, "race3": 64, "race4": 1161, "race5": 15, "race6": 162, "ethnicity1": 7569, "ethnicity2": 2162, "edu1": 1117, "edu2": 1727, "edu3": 2390, "edu4": 3143, "Shape_Length": 14429.544594583469, "Shape_Area": 13251242.171827761, "total_2021": 9315, "total_2022": 9731 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.477253029948457, 29.746905191092225 ], [ -95.477287029825945, 29.745925190160296 ], [ -95.477220029683622, 29.744991190403553 ], [ -95.477125030086484, 29.7440481903845 ], [ -95.4771040294995, 29.743210189982765 ], [ -95.477103029820697, 29.743151190256409 ], [ -95.477116029719468, 29.742273189331716 ], [ -95.477181029609568, 29.741397189214108 ], [ -95.47720602941618, 29.740562189556837 ], [ -95.477173029441673, 29.740037189479541 ], [ -95.477123029468302, 29.739754189476859 ], [ -95.477007029900733, 29.739425188976522 ], [ -95.476765029593963, 29.738888188763489 ], [ -95.476609029443523, 29.738370189402648 ], [ -95.476583029548209, 29.737989188892463 ], [ -95.47658502919893, 29.737820189258944 ], [ -95.476358029944407, 29.737831188626846 ], [ -95.474735029131764, 29.737897188837067 ], [ -95.474220029269034, 29.737930189106095 ], [ -95.47408902856894, 29.737956189313959 ], [ -95.47368402918292, 29.738080189132997 ], [ -95.473319028703855, 29.738215188799199 ], [ -95.472518028907686, 29.738483189406676 ], [ -95.471676028326286, 29.738764189502039 ], [ -95.470670028232632, 29.739085189472707 ], [ -95.47003202789719, 29.739320189261964 ], [ -95.467966027151903, 29.740058189228183 ], [ -95.466944027220848, 29.740411190148226 ], [ -95.46697202700436, 29.740550189931191 ], [ -95.46699302765802, 29.742144189672484 ], [ -95.466997027299357, 29.742316190028923 ], [ -95.46700702739183, 29.743118190156633 ], [ -95.467008027110865, 29.743163190045738 ], [ -95.467014027509833, 29.743567190188948 ], [ -95.467011027846496, 29.74365519054815 ], [ -95.467039027006933, 29.744604190874252 ], [ -95.467042027397667, 29.744678190502814 ], [ -95.467065028057078, 29.746065191021589 ], [ -95.467071027124859, 29.746267191027496 ], [ -95.467092028009574, 29.746817191432836 ], [ -95.46711402715016, 29.74744519140225 ], [ -95.467131027235283, 29.747901191008609 ], [ -95.467160027214859, 29.748259191610988 ], [ -95.467164028098949, 29.748480190952598 ], [ -95.467177028003476, 29.749145191080991 ], [ -95.467191028077636, 29.749903191808741 ], [ -95.467219027564141, 29.750139191241082 ], [ -95.467238028001915, 29.750288191941074 ], [ -95.468162027990019, 29.750264191743785 ], [ -95.469623027955762, 29.750235191597632 ], [ -95.470881029091814, 29.750211192010063 ], [ -95.471840029419837, 29.750201191189547 ], [ -95.472783028756652, 29.750203191694304 ], [ -95.474495030040089, 29.750155191269094 ], [ -95.474739030000336, 29.750151191262361 ], [ -95.475247030129083, 29.750151191769081 ], [ -95.475845029750786, 29.750139191136512 ], [ -95.476223030452275, 29.750135191744075 ], [ -95.476974030767806, 29.750131191468714 ], [ -95.476979029917018, 29.750001191471139 ], [ -95.476992030159337, 29.749699190944529 ], [ -95.477110029914755, 29.749257190883988 ], [ -95.477146029847759, 29.748918190886762 ], [ -95.477155030767364, 29.748526190786105 ], [ -95.47718203046351, 29.747905190963611 ], [ -95.477253029948457, 29.746905191092225 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 119, "Tract": "48039663400", "Area_SqMi": 4.4663797994678243, "total_2009": 2356, "total_2010": 2600, "total_2011": 2400, "total_2012": 1984, "total_2013": 2057, "total_2014": 2053, "total_2015": 2244, "total_2016": 2447, "total_2017": 2490, "total_2018": 2619, "total_2019": 2351, "total_2020": 2197, "age1": 560, "age2": 1313, "age3": 609, "earn1": 677, "earn2": 809, "earn3": 996, "naics_s01": 0, "naics_s02": 19, "naics_s03": 54, "naics_s04": 100, "naics_s05": 6, "naics_s06": 3, "naics_s07": 225, "naics_s08": 5, "naics_s09": 3, "naics_s10": 95, "naics_s11": 57, "naics_s12": 29, "naics_s13": 29, "naics_s14": 54, "naics_s15": 7, "naics_s16": 1320, "naics_s17": 66, "naics_s18": 370, "naics_s19": 40, "naics_s20": 0, "race1": 1996, "race2": 338, "race3": 21, "race4": 99, "race5": 3, "race6": 25, "ethnicity1": 1708, "ethnicity2": 774, "edu1": 392, "edu2": 525, "edu3": 644, "edu4": 361, "Shape_Length": 52070.302722509201, "Shape_Area": 124515024.52373804, "total_2021": 2354, "total_2022": 2482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476609999401688, 29.027319042471561 ], [ -95.476721999681942, 29.027106042542432 ], [ -95.47625299903585, 29.026444042436474 ], [ -95.475153999180591, 29.025628042333732 ], [ -95.47350299849721, 29.02489104256345 ], [ -95.47074299779041, 29.02479704266538 ], [ -95.469458997612023, 29.02479104230239 ], [ -95.46498099576759, 29.025519042540814 ], [ -95.464420995642897, 29.025567042893258 ], [ -95.463451996189406, 29.025642043013725 ], [ -95.462185995626712, 29.02504404294784 ], [ -95.462016995399338, 29.024963042311335 ], [ -95.461963995454667, 29.024902042642925 ], [ -95.461617995636402, 29.024744042746782 ], [ -95.461338994643839, 29.024325042748071 ], [ -95.460751994792432, 29.023442042309288 ], [ -95.45989699515485, 29.021301041773658 ], [ -95.458789994757396, 29.018557041257182 ], [ -95.458733994398884, 29.018417041235899 ], [ -95.458697994271375, 29.018380041113371 ], [ -95.458682994480029, 29.018343041282073 ], [ -95.457250993746143, 29.016581040576689 ], [ -95.456268993365399, 29.015203040424609 ], [ -95.455122992975319, 29.013554039947827 ], [ -95.455084993412967, 29.013450040532732 ], [ -95.454893992978171, 29.013179040593702 ], [ -95.454179993279254, 29.011203039823343 ], [ -95.45327499222698, 29.009233039556147 ], [ -95.453065992249904, 29.008792039251343 ], [ -95.451917992105109, 29.007151039134431 ], [ -95.450034991505916, 29.004461038585951 ], [ -95.449897991403788, 29.004211038358804 ], [ -95.448650990720907, 29.00242903788163 ], [ -95.448349990867399, 29.002067038368025 ], [ -95.448388990688443, 29.001996037803035 ], [ -95.447168990081565, 29.000613038172894 ], [ -95.44542398956672, 29.000270038065235 ], [ -95.445370990007177, 29.000130037718353 ], [ -95.444483989532685, 28.999627037859003 ], [ -95.4435979900082, 28.999375038050069 ], [ -95.442007988907932, 28.999445037762786 ], [ -95.441304988498615, 28.999652038347669 ], [ -95.440575988473441, 28.999996037740434 ], [ -95.440367988358673, 29.000270037926583 ], [ -95.439565988426907, 29.000547038512277 ], [ -95.439008988392658, 29.001032038124482 ], [ -95.438302988643187, 29.001927038610823 ], [ -95.437569988003119, 29.002591038355892 ], [ -95.436152987910745, 29.002560038917501 ], [ -95.43611698780802, 29.003292038423695 ], [ -95.436135987842249, 29.003651039315006 ], [ -95.436215988373945, 29.003861038858798 ], [ -95.43664398835368, 29.004289039194262 ], [ -95.436618987638838, 29.004393039290576 ], [ -95.436592988005216, 29.004599039275639 ], [ -95.436143987795973, 29.004869039537123 ], [ -95.435881987626317, 29.005340039695522 ], [ -95.435421987747048, 29.006639040014189 ], [ -95.433510987553205, 29.010587040430735 ], [ -95.433193987089183, 29.011240040480612 ], [ -95.433187987850928, 29.011252040723384 ], [ -95.432583987329139, 29.012505040550877 ], [ -95.432114987006173, 29.013307041165135 ], [ -95.431984987523578, 29.013720041169194 ], [ -95.431672987159487, 29.013995041453519 ], [ -95.431481987541886, 29.014023041378355 ], [ -95.431417986877449, 29.014321040913728 ], [ -95.43131498670661, 29.014711041005306 ], [ -95.431277987551198, 29.01485304155397 ], [ -95.431233987142903, 29.014937041253653 ], [ -95.431318986968137, 29.015008041140852 ], [ -95.431625986668564, 29.01535504157782 ], [ -95.431968987516697, 29.015770041698485 ], [ -95.432250987163016, 29.016122041987245 ], [ -95.432633987166895, 29.016725042014603 ], [ -95.43268298773593, 29.016804041695874 ], [ -95.433877988067863, 29.018708042537138 ], [ -95.434274988143343, 29.019350041806351 ], [ -95.434995988171366, 29.020558042483991 ], [ -95.435195988662343, 29.020933042335301 ], [ -95.43587598894392, 29.022098042483872 ], [ -95.436520988271639, 29.023449043196621 ], [ -95.437104989138533, 29.024522043041983 ], [ -95.437265989259814, 29.024856042959438 ], [ -95.437451989131134, 29.025244043738631 ], [ -95.438361989592494, 29.027150044029643 ], [ -95.438734989394746, 29.027973043634006 ], [ -95.438847989114976, 29.02817904377423 ], [ -95.439059989746085, 29.028561043982489 ], [ -95.439147989314094, 29.028698043707472 ], [ -95.439234989818942, 29.02884704411181 ], [ -95.439483989587259, 29.029216043822704 ], [ -95.43968098968692, 29.029486043893058 ], [ -95.439781990079766, 29.029624043793987 ], [ -95.439852989670698, 29.029713044117656 ], [ -95.440076989596363, 29.029970044151806 ], [ -95.440311990095893, 29.030221044088979 ], [ -95.440704989656382, 29.030595044579666 ], [ -95.441141990608827, 29.030979044555536 ], [ -95.441262990481533, 29.031070044304347 ], [ -95.441632989920024, 29.031365044393016 ], [ -95.441988990666971, 29.031608044633359 ], [ -95.442615990974858, 29.032023044697667 ], [ -95.443042990651122, 29.032280044751591 ], [ -95.443434990498403, 29.032554044607526 ], [ -95.444301990936111, 29.03308904493645 ], [ -95.4450399911034, 29.033546045055942 ], [ -95.446159991572287, 29.034280044896235 ], [ -95.447016992128653, 29.03476404528757 ], [ -95.447251991785564, 29.034916044610249 ], [ -95.447549991749298, 29.035058045018157 ], [ -95.448590992250871, 29.035579044798094 ], [ -95.44893199263997, 29.03576804551783 ], [ -95.449031992436858, 29.035822045574282 ], [ -95.449842992186504, 29.036276045420657 ], [ -95.450301992615891, 29.036533045480443 ], [ -95.450769993088883, 29.036836045707357 ], [ -95.451062993360893, 29.037042045524331 ], [ -95.45122099298878, 29.037157045801678 ], [ -95.45136899266474, 29.037264045218137 ], [ -95.451777993417181, 29.037584045812388 ], [ -95.451966992896104, 29.037753045270115 ], [ -95.452256993344037, 29.037990045158931 ], [ -95.452714993393698, 29.038457045390196 ], [ -95.453160993602935, 29.0389890457257 ], [ -95.453641993880851, 29.039752045977899 ], [ -95.453728993853943, 29.039944046046276 ], [ -95.453757994188322, 29.040007046109164 ], [ -95.453789993391055, 29.040068046146441 ], [ -95.453865993482538, 29.040217046175108 ], [ -95.453992993758973, 29.040521045713767 ], [ -95.454103993753122, 29.040830046037904 ], [ -95.454212993975133, 29.041195046034659 ], [ -95.454277993707791, 29.041461046013634 ], [ -95.454322994018824, 29.041672046018398 ], [ -95.454387994057825, 29.042102046167166 ], [ -95.454408994060771, 29.042318046038865 ], [ -95.454481994426686, 29.042792046627486 ], [ -95.454593994639069, 29.043690046931854 ], [ -95.45497599432646, 29.045934047481669 ], [ -95.45513299453809, 29.046761047080551 ], [ -95.455155994695829, 29.046954047206615 ], [ -95.455171994125806, 29.047088047126302 ], [ -95.455690994906888, 29.047177047076325 ], [ -95.457116995193488, 29.047467047695729 ], [ -95.459120995183298, 29.047890047078809 ], [ -95.460601995678857, 29.04820304755555 ], [ -95.461139995737128, 29.048294047108637 ], [ -95.461814996137647, 29.048389046985694 ], [ -95.462391995950583, 29.048464047139657 ], [ -95.463012996969994, 29.048532047252493 ], [ -95.463590996608943, 29.048568047182695 ], [ -95.463724996433925, 29.048574047025401 ], [ -95.463971996327288, 29.048579047063924 ], [ -95.464279997371619, 29.048593047701743 ], [ -95.4647249971202, 29.048585047779987 ], [ -95.465295997309411, 29.048555047147499 ], [ -95.465811997163939, 29.048517047215711 ], [ -95.466512997096601, 29.04841704725974 ], [ -95.466791997631177, 29.048395047373734 ], [ -95.466928997385807, 29.048369047012308 ], [ -95.467547997922352, 29.048172047128389 ], [ -95.467979997912735, 29.048018047328206 ], [ -95.46845499812089, 29.04785404662136 ], [ -95.468572997550226, 29.047822047025246 ], [ -95.468953998062574, 29.047731046891297 ], [ -95.469193998180444, 29.047675046581798 ], [ -95.46943399793372, 29.047628047187761 ], [ -95.469676998661157, 29.047596046792247 ], [ -95.469922997791514, 29.047578046863141 ], [ -95.470168998645008, 29.047574047322467 ], [ -95.470413998212123, 29.04758504708715 ], [ -95.470535998280226, 29.047596047106893 ], [ -95.470708998191327, 29.047600046655702 ], [ -95.471003998436956, 29.047626046519959 ], [ -95.471219998992325, 29.047658047325676 ], [ -95.47125499886647, 29.047554046831547 ], [ -95.471343998682173, 29.047354047081097 ], [ -95.471462998747413, 29.047045046501896 ], [ -95.471532999086733, 29.046838046562495 ], [ -95.471647998379424, 29.046527046667229 ], [ -95.471763999205734, 29.046070046685799 ], [ -95.471858998868385, 29.045572046402292 ], [ -95.471885999090475, 29.045055046370454 ], [ -95.471864998484847, 29.044599046242904 ], [ -95.471173998057864, 29.040446045264517 ], [ -95.471154998174114, 29.040334044983918 ], [ -95.471055998006221, 29.039765045273949 ], [ -95.471003998619267, 29.039191045122312 ], [ -95.470991998280653, 29.038711045277147 ], [ -95.471033998606615, 29.038335045038384 ], [ -95.471064997677075, 29.038058044996788 ], [ -95.47114099796265, 29.037667044588506 ], [ -95.471159998413853, 29.03756704505534 ], [ -95.471312998167264, 29.036996044947006 ], [ -95.471441998221664, 29.036693044938847 ], [ -95.471598998540259, 29.036305044845726 ], [ -95.472436998141362, 29.034983043867395 ], [ -95.472822998258877, 29.034385044102713 ], [ -95.474562998628372, 29.031107043316517 ], [ -95.476417999637334, 29.027674042346874 ], [ -95.476609999401688, 29.027319042471561 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 120, "Tract": "48039663500", "Area_SqMi": 1.4055604223361742, "total_2009": 1149, "total_2010": 1223, "total_2011": 1154, "total_2012": 1088, "total_2013": 1109, "total_2014": 1040, "total_2015": 960, "total_2016": 1043, "total_2017": 1020, "total_2018": 902, "total_2019": 887, "total_2020": 803, "age1": 321, "age2": 392, "age3": 171, "earn1": 235, "earn2": 380, "earn3": 269, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 2, "naics_s06": 5, "naics_s07": 291, "naics_s08": 0, "naics_s09": 0, "naics_s10": 13, "naics_s11": 28, "naics_s12": 32, "naics_s13": 0, "naics_s14": 66, "naics_s15": 13, "naics_s16": 281, "naics_s17": 5, "naics_s18": 115, "naics_s19": 22, "naics_s20": 0, "race1": 746, "race2": 87, "race3": 7, "race4": 27, "race5": 1, "race6": 16, "ethnicity1": 576, "ethnicity2": 308, "edu1": 114, "edu2": 157, "edu3": 203, "edu4": 89, "Shape_Length": 28907.980075092328, "Shape_Area": 39184618.934027381, "total_2021": 889, "total_2022": 884 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436332988663978, 29.023521043028964 ], [ -95.436520988271639, 29.023449043196621 ], [ -95.43587598894392, 29.022098042483872 ], [ -95.435195988662343, 29.020933042335301 ], [ -95.434995988171366, 29.020558042483991 ], [ -95.434274988143343, 29.019350041806351 ], [ -95.433877988067863, 29.018708042537138 ], [ -95.43268298773593, 29.016804041695874 ], [ -95.432633987166895, 29.016725042014603 ], [ -95.432250987163016, 29.016122041987245 ], [ -95.431968987516697, 29.015770041698485 ], [ -95.431625986668564, 29.01535504157782 ], [ -95.431318986968137, 29.015008041140852 ], [ -95.431233987142903, 29.014937041253653 ], [ -95.430580986877644, 29.01439504109932 ], [ -95.430144986925555, 29.014055041563932 ], [ -95.429464986345977, 29.01363704133875 ], [ -95.42910298609182, 29.013454041046543 ], [ -95.428563986040601, 29.013200041363262 ], [ -95.427852985631475, 29.012911041178537 ], [ -95.427313986047125, 29.012709040944198 ], [ -95.427103986306477, 29.012634041422707 ], [ -95.426698985926734, 29.012482041164112 ], [ -95.42640198540613, 29.012361040900025 ], [ -95.426143985846593, 29.012259041207255 ], [ -95.425128984926246, 29.011901040610937 ], [ -95.424810985696993, 29.011789040705601 ], [ -95.423433984943884, 29.011291041096765 ], [ -95.422706984431485, 29.011035040695258 ], [ -95.422195984163508, 29.010839040789492 ], [ -95.421679984502163, 29.010645041210278 ], [ -95.421563984881487, 29.010597041078139 ], [ -95.421327984516211, 29.010498040380913 ], [ -95.421343984428276, 29.01071504090276 ], [ -95.421360983890267, 29.010966041212225 ], [ -95.421426984088683, 29.014302041180418 ], [ -95.42145398477588, 29.015618041780851 ], [ -95.421459984882389, 29.015840041705793 ], [ -95.421503984705055, 29.017517042552488 ], [ -95.421513984937789, 29.018037042043499 ], [ -95.421520984553922, 29.018321042794117 ], [ -95.421542984274566, 29.019248043028266 ], [ -95.421566984753838, 29.019744042619827 ], [ -95.420906984679519, 29.019530042936733 ], [ -95.420587984440246, 29.019432042765324 ], [ -95.420244984184933, 29.019337043086662 ], [ -95.420285984223099, 29.019539042649917 ], [ -95.420327984283844, 29.019676042865676 ], [ -95.420392984730555, 29.019833042619702 ], [ -95.420427984703622, 29.019938042743103 ], [ -95.420518984095011, 29.020245042426318 ], [ -95.420589984742463, 29.020590042948701 ], [ -95.420606984589682, 29.020675042635411 ], [ -95.420970984660755, 29.02227604325039 ], [ -95.421107984545714, 29.022786043718401 ], [ -95.42123498462793, 29.023424043518993 ], [ -95.42128998441477, 29.023675043141971 ], [ -95.42141698460668, 29.024693043799452 ], [ -95.421438984868445, 29.025010044154154 ], [ -95.421465985061189, 29.025376043896216 ], [ -95.421557984835189, 29.02663404442989 ], [ -95.421628985224544, 29.02738304421424 ], [ -95.421651984640235, 29.027623044680539 ], [ -95.421817985362978, 29.029144044628588 ], [ -95.421826984864765, 29.029229044620006 ], [ -95.421834984939437, 29.029304044879733 ], [ -95.421840985506861, 29.029535045160205 ], [ -95.421882985599993, 29.031459044828708 ], [ -95.42189998540556, 29.032312045446439 ], [ -95.421949985253477, 29.034061045848603 ], [ -95.421975985673683, 29.034814046264763 ], [ -95.422017985976751, 29.037004046641204 ], [ -95.422019985684258, 29.037100046265433 ], [ -95.422008986030363, 29.037202046324186 ], [ -95.422002985431774, 29.037418046552492 ], [ -95.422006985512709, 29.037527046523639 ], [ -95.422010985601446, 29.0375760460389 ], [ -95.422016985451179, 29.037632046111174 ], [ -95.42205198609463, 29.037848046758139 ], [ -95.422131985255902, 29.038063046692596 ], [ -95.422514985554102, 29.038947046448644 ], [ -95.422597985560287, 29.039147046954465 ], [ -95.422665986131037, 29.039371046704442 ], [ -95.422695986055857, 29.039467047182178 ], [ -95.422719986061992, 29.039641046768885 ], [ -95.422714985912805, 29.039778046761935 ], [ -95.422715985718654, 29.040220047272626 ], [ -95.422707985965033, 29.040461047223708 ], [ -95.423894986309307, 29.040433046651142 ], [ -95.424546986570817, 29.040426046968491 ], [ -95.428031986805166, 29.040383047113409 ], [ -95.42813198728804, 29.040383047120294 ], [ -95.428622987947094, 29.040367046654794 ], [ -95.430384988172548, 29.040351046920378 ], [ -95.431986988175552, 29.040295046768183 ], [ -95.433395988438946, 29.040273046955132 ], [ -95.433483989127751, 29.039441046391289 ], [ -95.433579989062409, 29.038172046247261 ], [ -95.43435098874447, 29.036282045830234 ], [ -95.434594989062688, 29.035500045366323 ], [ -95.434045988080086, 29.034099045713965 ], [ -95.433389988142309, 29.032722045381458 ], [ -95.433235987988425, 29.03205604452781 ], [ -95.433313988252294, 29.031031044946708 ], [ -95.433509987870195, 29.028481044161726 ], [ -95.433509987691281, 29.028265043774965 ], [ -95.433387988165379, 29.027420044231619 ], [ -95.433320987952726, 29.026544044072502 ], [ -95.433942988579531, 29.026510043336295 ], [ -95.433949987865034, 29.026352043502701 ], [ -95.433974988711299, 29.026137043744249 ], [ -95.434012988407005, 29.025924043598721 ], [ -95.434058988423217, 29.025716043453176 ], [ -95.434120987788489, 29.025507043110366 ], [ -95.434324988103683, 29.025116043494513 ], [ -95.43443698852478, 29.024935043683708 ], [ -95.43470198829047, 29.024610043741486 ], [ -95.434806988487026, 29.024487043575444 ], [ -95.435020988354651, 29.024275043510492 ], [ -95.435207988336145, 29.024134043127024 ], [ -95.435402988084249, 29.024002043451819 ], [ -95.435603988880132, 29.023879043252169 ], [ -95.43581298849719, 29.023765042766264 ], [ -95.436028988329682, 29.023659042925591 ], [ -95.43613698852181, 29.023610043024483 ], [ -95.436186988303092, 29.023587043235505 ], [ -95.436332988663978, 29.023521043028964 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 121, "Tract": "48039663600", "Area_SqMi": 2.2664571067637964, "total_2009": 117, "total_2010": 82, "total_2011": 107, "total_2012": 130, "total_2013": 118, "total_2014": 122, "total_2015": 263, "total_2016": 359, "total_2017": 362, "total_2018": 367, "total_2019": 400, "total_2020": 385, "age1": 217, "age2": 164, "age3": 74, "earn1": 139, "earn2": 204, "earn3": 112, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 3, "naics_s05": 0, "naics_s06": 2, "naics_s07": 322, "naics_s08": 5, "naics_s09": 0, "naics_s10": 1, "naics_s11": 4, "naics_s12": 2, "naics_s13": 0, "naics_s14": 5, "naics_s15": 3, "naics_s16": 0, "naics_s17": 11, "naics_s18": 87, "naics_s19": 9, "naics_s20": 0, "race1": 365, "race2": 63, "race3": 0, "race4": 19, "race5": 1, "race6": 7, "ethnicity1": 272, "ethnicity2": 183, "edu1": 56, "edu2": 76, "edu3": 66, "edu4": 40, "Shape_Length": 41510.864832128311, "Shape_Area": 63184945.056468315, "total_2021": 408, "total_2022": 455 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.441024990903799, 29.059971050706043 ], [ -95.441024991405357, 29.059880050803308 ], [ -95.440993991374413, 29.059566050053903 ], [ -95.440972991496039, 29.05842504996949 ], [ -95.440713991483619, 29.058431049901671 ], [ -95.440318990711688, 29.058075050059472 ], [ -95.438295990285255, 29.058123050201754 ], [ -95.438288990326598, 29.058045050359159 ], [ -95.438275991022934, 29.057381050270529 ], [ -95.438252990624491, 29.056945049791633 ], [ -95.438217990456863, 29.056811049733515 ], [ -95.438076990513252, 29.056503049852854 ], [ -95.437980990625661, 29.056327049906347 ], [ -95.43789799003342, 29.056150050052967 ], [ -95.437868990132927, 29.056049049302587 ], [ -95.43785799052263, 29.055958050026209 ], [ -95.437867990804193, 29.055759049714638 ], [ -95.437928990055298, 29.055102049728347 ], [ -95.437971990462344, 29.054021049720209 ], [ -95.437950990261271, 29.053246049349845 ], [ -95.437927990803772, 29.052757049417611 ], [ -95.437890989816779, 29.052243049129686 ], [ -95.437868990672968, 29.052066049098944 ], [ -95.43752199030537, 29.051314048987091 ], [ -95.437168989841538, 29.050574048220241 ], [ -95.436707989610326, 29.049808048818701 ], [ -95.436668990320214, 29.04970804827359 ], [ -95.43664299023294, 29.049611048161523 ], [ -95.436626989937849, 29.049511048760905 ], [ -95.436618990038198, 29.049399048365323 ], [ -95.436619990311812, 29.049280047963517 ], [ -95.436609989828867, 29.048081048405447 ], [ -95.436592989879458, 29.047086047731359 ], [ -95.436548989617307, 29.046087047720793 ], [ -95.43653198946518, 29.045365047209447 ], [ -95.436483989960053, 29.04506904718188 ], [ -95.436387989762565, 29.044621047315594 ], [ -95.436379989113078, 29.044131047253778 ], [ -95.436339989963344, 29.043151047057613 ], [ -95.436337989766258, 29.042867047129434 ], [ -95.436359989176282, 29.042666047125707 ], [ -95.436386989825962, 29.042492047247979 ], [ -95.436510989109124, 29.042084047093873 ], [ -95.43656998928968, 29.041891047132292 ], [ -95.436677989778602, 29.041599046530873 ], [ -95.436727989090386, 29.041464047069276 ], [ -95.436750989650733, 29.041403046934054 ], [ -95.436776989477792, 29.041307046729933 ], [ -95.436800989553461, 29.04121704687935 ], [ -95.436797989479686, 29.041099046973414 ], [ -95.436786989742103, 29.040997046405138 ], [ -95.436796989950949, 29.040891046614284 ], [ -95.436932990071796, 29.040568046526356 ], [ -95.436874989959932, 29.040554046816368 ], [ -95.436911989318631, 29.040469046119636 ], [ -95.436341989352073, 29.040334046114992 ], [ -95.436104989207863, 29.040296046805324 ], [ -95.435845989765767, 29.040266046586453 ], [ -95.434560989433123, 29.040264046340141 ], [ -95.43417398929715, 29.040261046350537 ], [ -95.433395988438946, 29.040273046955132 ], [ -95.431986988175552, 29.040295046768183 ], [ -95.430384988172548, 29.040351046920378 ], [ -95.428622987947094, 29.040367046654794 ], [ -95.42813198728804, 29.040383047120294 ], [ -95.428031986805166, 29.040383047113409 ], [ -95.424546986570817, 29.040426046968491 ], [ -95.423894986309307, 29.040433046651142 ], [ -95.422707985965033, 29.040461047223708 ], [ -95.421255985103699, 29.040487046762681 ], [ -95.420872985151973, 29.040469046757586 ], [ -95.420497985036619, 29.040442047264197 ], [ -95.42026098552077, 29.04041704740753 ], [ -95.41981498500941, 29.040359046659376 ], [ -95.419210985196798, 29.040243046738976 ], [ -95.418153984334381, 29.039979046610704 ], [ -95.417492984412036, 29.039832046912458 ], [ -95.41742998420159, 29.039818046639773 ], [ -95.417068984645596, 29.039750046968258 ], [ -95.416979984735562, 29.039732046666881 ], [ -95.416717983971154, 29.039679046696925 ], [ -95.416578984628629, 29.039651047332182 ], [ -95.416207983951026, 29.039615047091896 ], [ -95.415843983631177, 29.03963204712376 ], [ -95.415593984374169, 29.039655047131529 ], [ -95.415345983851822, 29.039699047411759 ], [ -95.415132983564945, 29.039765047368611 ], [ -95.414965984022373, 29.039834046971812 ], [ -95.414643983398989, 29.039986046730885 ], [ -95.414432983455043, 29.040097047340129 ], [ -95.414251983721172, 29.040232047368459 ], [ -95.414133983281417, 29.04032804758284 ], [ -95.413931983950363, 29.04051004705752 ], [ -95.413472983478059, 29.040974047830577 ], [ -95.413203983389195, 29.041230047171879 ], [ -95.413232983696901, 29.041264047212731 ], [ -95.413076983293024, 29.041430047243207 ], [ -95.412449983038982, 29.042099047373863 ], [ -95.411224983093561, 29.043247047991454 ], [ -95.410633982584869, 29.043800047756644 ], [ -95.410211983009603, 29.044209048388794 ], [ -95.410122983230409, 29.044281048571573 ], [ -95.410024983092725, 29.044337048040418 ], [ -95.409911982779647, 29.044389047860918 ], [ -95.409828982766001, 29.044428048401283 ], [ -95.40974698250335, 29.044455048300929 ], [ -95.409658982637936, 29.044477048318427 ], [ -95.407983982383371, 29.044820048659549 ], [ -95.405188981671543, 29.045456048425301 ], [ -95.40452598181696, 29.045604048512537 ], [ -95.404393980995224, 29.045633048643506 ], [ -95.405199981535887, 29.046879048866373 ], [ -95.405657981910906, 29.047503048862644 ], [ -95.406205981936282, 29.048281049208462 ], [ -95.406559981719084, 29.048814048798572 ], [ -95.407003982199555, 29.04941304976149 ], [ -95.407172982178423, 29.049731049779439 ], [ -95.40736798205667, 29.050343049925637 ], [ -95.407651982662216, 29.051156049756695 ], [ -95.407775982825186, 29.051479049445508 ], [ -95.40803998297126, 29.051916050048348 ], [ -95.409026982541306, 29.053082050014524 ], [ -95.409147982963617, 29.053177050192108 ], [ -95.40943098320713, 29.053401049784757 ], [ -95.410357983122324, 29.054008049971465 ], [ -95.410542983584122, 29.054095049872892 ], [ -95.411074983571353, 29.054349050439228 ], [ -95.411952983811958, 29.054664050108642 ], [ -95.412345983849178, 29.054821050414656 ], [ -95.412883983830369, 29.055074050654728 ], [ -95.413815983831114, 29.05580405041308 ], [ -95.414588984148438, 29.05641105080614 ], [ -95.414867984580553, 29.05658205097269 ], [ -95.415535984555675, 29.056918050934076 ], [ -95.416347985194008, 29.057184050643585 ], [ -95.4174889854106, 29.05730705028526 ], [ -95.418759985423861, 29.057211050814331 ], [ -95.419781986345839, 29.056953050914764 ], [ -95.42055898649582, 29.056743050272569 ], [ -95.421031986291553, 29.056474050473547 ], [ -95.421194985847293, 29.056381050704932 ], [ -95.421226986187591, 29.056363049926237 ], [ -95.421310986105937, 29.056263050342132 ], [ -95.421650986435097, 29.055856049834979 ], [ -95.422058986593456, 29.055035050478846 ], [ -95.422083986270451, 29.054550050227512 ], [ -95.422063986293935, 29.054292049610584 ], [ -95.421964985892814, 29.053768049470705 ], [ -95.421854986638721, 29.053322049250372 ], [ -95.421675986441954, 29.052973049545159 ], [ -95.421495985773248, 29.052593049719395 ], [ -95.420394986159948, 29.05098504929374 ], [ -95.419522985339597, 29.050085049343615 ], [ -95.419573985404597, 29.05005204897763 ], [ -95.420082985684942, 29.049700048596186 ], [ -95.420124986056393, 29.049674048763695 ], [ -95.420302985410459, 29.049565048855143 ], [ -95.42073498556806, 29.050062049275954 ], [ -95.421025985657081, 29.050409049261596 ], [ -95.423010986023201, 29.052723049624753 ], [ -95.423211986288621, 29.05295604960941 ], [ -95.424100987195345, 29.053989049568713 ], [ -95.42420798661486, 29.054114050000809 ], [ -95.424642986568813, 29.054620050028774 ], [ -95.424819986717139, 29.054842049580373 ], [ -95.425092986956074, 29.055201049537221 ], [ -95.425297986835844, 29.055492050433177 ], [ -95.425474987261197, 29.05575504981493 ], [ -95.425710987307184, 29.056134049949463 ], [ -95.425788987241063, 29.056268050532626 ], [ -95.425924987042507, 29.056570050433024 ], [ -95.426045987506029, 29.056877050334382 ], [ -95.426153987530995, 29.057186049921018 ], [ -95.426248987411441, 29.057500050018419 ], [ -95.426330987796916, 29.057817050152405 ], [ -95.42639798763885, 29.058134050895198 ], [ -95.426497987159024, 29.058675051052973 ], [ -95.426490987850158, 29.05877905090809 ], [ -95.426513988151484, 29.059201051039825 ], [ -95.426660987936458, 29.061208051454482 ], [ -95.426836988366148, 29.064088051706513 ], [ -95.426842987965074, 29.064183051574908 ], [ -95.426846988190007, 29.064245051453387 ], [ -95.426866988086218, 29.064533052298664 ], [ -95.429306988915357, 29.064390051538844 ], [ -95.42955698878815, 29.064378051522493 ], [ -95.430862989400339, 29.064253051758371 ], [ -95.431375989277143, 29.064198052008564 ], [ -95.431811989222979, 29.064145051691515 ], [ -95.43332298989553, 29.06398605141732 ], [ -95.433481989700113, 29.063975051747253 ], [ -95.43589999018937, 29.063810051304515 ], [ -95.439429991276512, 29.063595051586226 ], [ -95.439531991135809, 29.063588051689447 ], [ -95.439920991468938, 29.063552051045082 ], [ -95.440447991310194, 29.063531051365128 ], [ -95.440775991925932, 29.063504051037381 ], [ -95.440757991632822, 29.063208051466795 ], [ -95.440764991228178, 29.062899050979468 ], [ -95.440726991068246, 29.062691050925068 ], [ -95.440735991774488, 29.062564051406589 ], [ -95.440748991827476, 29.062474051004987 ], [ -95.441024990903799, 29.059971050706043 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 122, "Tract": "48039663700", "Area_SqMi": 1.4486651273197397, "total_2009": 868, "total_2010": 713, "total_2011": 180, "total_2012": 266, "total_2013": 305, "total_2014": 276, "total_2015": 301, "total_2016": 402, "total_2017": 417, "total_2018": 436, "total_2019": 563, "total_2020": 388, "age1": 83, "age2": 266, "age3": 93, "earn1": 50, "earn2": 138, "earn3": 254, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 55, "naics_s06": 70, "naics_s07": 110, "naics_s08": 0, "naics_s09": 0, "naics_s10": 37, "naics_s11": 30, "naics_s12": 9, "naics_s13": 0, "naics_s14": 0, "naics_s15": 18, "naics_s16": 15, "naics_s17": 0, "naics_s18": 3, "naics_s19": 21, "naics_s20": 49, "race1": 394, "race2": 31, "race3": 2, "race4": 11, "race5": 0, "race6": 4, "ethnicity1": 311, "ethnicity2": 131, "edu1": 60, "edu2": 110, "edu3": 117, "edu4": 72, "Shape_Length": 44919.975255018144, "Shape_Area": 40386304.334529296, "total_2021": 462, "total_2022": 442 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.426866988086218, 29.064533052298664 ], [ -95.426846988190007, 29.064245051453387 ], [ -95.426842987965074, 29.064183051574908 ], [ -95.426836988366148, 29.064088051706513 ], [ -95.426660987936458, 29.061208051454482 ], [ -95.426513988151484, 29.059201051039825 ], [ -95.426490987850158, 29.05877905090809 ], [ -95.426497987159024, 29.058675051052973 ], [ -95.42639798763885, 29.058134050895198 ], [ -95.426330987796916, 29.057817050152405 ], [ -95.426248987411441, 29.057500050018419 ], [ -95.426153987530995, 29.057186049921018 ], [ -95.426045987506029, 29.056877050334382 ], [ -95.425924987042507, 29.056570050433024 ], [ -95.425788987241063, 29.056268050532626 ], [ -95.425710987307184, 29.056134049949463 ], [ -95.425474987261197, 29.05575504981493 ], [ -95.425297986835844, 29.055492050433177 ], [ -95.425092986956074, 29.055201049537221 ], [ -95.424819986717139, 29.054842049580373 ], [ -95.424642986568813, 29.054620050028774 ], [ -95.42420798661486, 29.054114050000809 ], [ -95.424100987195345, 29.053989049568713 ], [ -95.423211986288621, 29.05295604960941 ], [ -95.423010986023201, 29.052723049624753 ], [ -95.421025985657081, 29.050409049261596 ], [ -95.42073498556806, 29.050062049275954 ], [ -95.420302985410459, 29.049565048855143 ], [ -95.420124986056393, 29.049674048763695 ], [ -95.420082985684942, 29.049700048596186 ], [ -95.419573985404597, 29.05005204897763 ], [ -95.419522985339597, 29.050085049343615 ], [ -95.420394986159948, 29.05098504929374 ], [ -95.421495985773248, 29.052593049719395 ], [ -95.421675986441954, 29.052973049545159 ], [ -95.421854986638721, 29.053322049250372 ], [ -95.421964985892814, 29.053768049470705 ], [ -95.422063986293935, 29.054292049610584 ], [ -95.422083986270451, 29.054550050227512 ], [ -95.422058986593456, 29.055035050478846 ], [ -95.421650986435097, 29.055856049834979 ], [ -95.421310986105937, 29.056263050342132 ], [ -95.421226986187591, 29.056363049926237 ], [ -95.421194985847293, 29.056381050704932 ], [ -95.421031986291553, 29.056474050473547 ], [ -95.42055898649582, 29.056743050272569 ], [ -95.419781986345839, 29.056953050914764 ], [ -95.418759985423861, 29.057211050814331 ], [ -95.4174889854106, 29.05730705028526 ], [ -95.416347985194008, 29.057184050643585 ], [ -95.415535984555675, 29.056918050934076 ], [ -95.414867984580553, 29.05658205097269 ], [ -95.414588984148438, 29.05641105080614 ], [ -95.413815983831114, 29.05580405041308 ], [ -95.412883983830369, 29.055074050654728 ], [ -95.412345983849178, 29.054821050414656 ], [ -95.411952983811958, 29.054664050108642 ], [ -95.411074983571353, 29.054349050439228 ], [ -95.410542983584122, 29.054095049872892 ], [ -95.410357983122324, 29.054008049971465 ], [ -95.40943098320713, 29.053401049784757 ], [ -95.409147982963617, 29.053177050192108 ], [ -95.409026982541306, 29.053082050014524 ], [ -95.40803998297126, 29.051916050048348 ], [ -95.407775982825186, 29.051479049445508 ], [ -95.407651982662216, 29.051156049756695 ], [ -95.40736798205667, 29.050343049925637 ], [ -95.407172982178423, 29.049731049779439 ], [ -95.407003982199555, 29.04941304976149 ], [ -95.406559981719084, 29.048814048798572 ], [ -95.406205981936282, 29.048281049208462 ], [ -95.405657981910906, 29.047503048862644 ], [ -95.405199981535887, 29.046879048866373 ], [ -95.404393980995224, 29.045633048643506 ], [ -95.403739981202946, 29.04441004835866 ], [ -95.403385981458015, 29.04353204810436 ], [ -95.403101981029849, 29.042654047874464 ], [ -95.402911981401786, 29.041737047479778 ], [ -95.402797980727783, 29.040147047794694 ], [ -95.402817980634808, 29.039552047064635 ], [ -95.402941981273216, 29.038198047436612 ], [ -95.403464981145717, 29.036765047276663 ], [ -95.403843981405217, 29.035848046789695 ], [ -95.403926981097456, 29.03558204696926 ], [ -95.404028981131773, 29.035262046073871 ], [ -95.404018981219807, 29.034288046222965 ], [ -95.403744981103401, 29.033484045827311 ], [ -95.403190981043508, 29.032816046493643 ], [ -95.40277298027884, 29.032755045843896 ], [ -95.402034980458694, 29.032750045910468 ], [ -95.401556980558055, 29.032978046462542 ], [ -95.400419980094497, 29.033729046314939 ], [ -95.399836980042693, 29.034070045956355 ], [ -95.398793979330364, 29.034809046236756 ], [ -95.398745979670764, 29.034865046625509 ], [ -95.39868197930285, 29.034907047014745 ], [ -95.398702979218584, 29.034982046209528 ], [ -95.398813979881325, 29.035377046553656 ], [ -95.399006980104019, 29.036100047280769 ], [ -95.399067979419087, 29.036306046765038 ], [ -95.399236979434662, 29.036879046711089 ], [ -95.399449979929116, 29.037631046822138 ], [ -95.399558979546256, 29.037968046971919 ], [ -95.400047980349328, 29.03965404768552 ], [ -95.400300979976194, 29.040549047340967 ], [ -95.400722980878754, 29.042039047918838 ], [ -95.400994980665686, 29.043000048524839 ], [ -95.401041980371545, 29.043166048253042 ], [ -95.401319980614176, 29.044148048004338 ], [ -95.401435980305592, 29.044557048961906 ], [ -95.401850980566863, 29.046137049216963 ], [ -95.402131980821551, 29.047280049072835 ], [ -95.402380980881787, 29.048149049212217 ], [ -95.402658981568067, 29.049035049253867 ], [ -95.403385981391565, 29.051594050096405 ], [ -95.40417198179864, 29.054370050429579 ], [ -95.405011982523931, 29.057314051428705 ], [ -95.405891982757424, 29.060401051499095 ], [ -95.40778898338047, 29.067085052735553 ], [ -95.408635983176268, 29.070068053203382 ], [ -95.40923598359845, 29.072183054315683 ], [ -95.409588983838447, 29.073392054157615 ], [ -95.409704983987893, 29.073768054691101 ], [ -95.409776984105534, 29.07400105448173 ], [ -95.409874983618565, 29.074372054482794 ], [ -95.409937984007783, 29.074639054174575 ], [ -95.409997983703391, 29.074853054574632 ], [ -95.410134983716659, 29.074585054705413 ], [ -95.410344984554044, 29.074464054812587 ], [ -95.41079898396228, 29.074054054550562 ], [ -95.411010983948202, 29.073872054456835 ], [ -95.411745984347547, 29.073218054303499 ], [ -95.414636984629098, 29.070636053767373 ], [ -95.415060984952504, 29.070227053338257 ], [ -95.415672985028536, 29.069667053508493 ], [ -95.417519986091719, 29.067990052454995 ], [ -95.419182985789917, 29.066487052718127 ], [ -95.419375985853421, 29.066300052870602 ], [ -95.419604985705604, 29.066078052527704 ], [ -95.420122986390197, 29.065665052513101 ], [ -95.420521986480608, 29.065403052554164 ], [ -95.420852985993832, 29.065241052439639 ], [ -95.421295986283454, 29.065070052306311 ], [ -95.421698986546374, 29.064934052284315 ], [ -95.421720986428099, 29.064927052515316 ], [ -95.422306987113345, 29.064758051686603 ], [ -95.422713986764506, 29.064714052045101 ], [ -95.422913987017552, 29.06468605226646 ], [ -95.423251987120793, 29.064668051880894 ], [ -95.423389987534691, 29.064673051941952 ], [ -95.423716987334984, 29.064669051778246 ], [ -95.423839987526719, 29.064663051617408 ], [ -95.424095987324819, 29.064664052223396 ], [ -95.424266987087819, 29.064645051659646 ], [ -95.424599987738731, 29.064627051646433 ], [ -95.424938987373807, 29.064620052340917 ], [ -95.42558998748855, 29.064587052219867 ], [ -95.426464987395519, 29.064550051851558 ], [ -95.426641987938581, 29.064543051831787 ], [ -95.426866988086218, 29.064533052298664 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 123, "Tract": "48201422702", "Area_SqMi": 0.49645168487594071, "total_2009": 10, "total_2010": 7, "total_2011": 10, "total_2012": 11, "total_2013": 16, "total_2014": 18, "total_2015": 35, "total_2016": 29, "total_2017": 43, "total_2018": 38, "total_2019": 29, "total_2020": 15, "age1": 3, "age2": 9, "age3": 15, "earn1": 8, "earn2": 9, "earn3": 10, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 6, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 3, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 2, "naics_s19": 1, "naics_s20": 0, "race1": 22, "race2": 1, "race3": 0, "race4": 4, "race5": 0, "race6": 0, "ethnicity1": 15, "ethnicity2": 12, "edu1": 6, "edu2": 3, "edu3": 6, "edu4": 9, "Shape_Length": 15192.698671600137, "Shape_Area": 13840223.288790679, "total_2021": 23, "total_2022": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.517863038071965, 29.700385179760492 ], [ -95.517770038940711, 29.700296179713284 ], [ -95.517646038263507, 29.700178180182348 ], [ -95.517490038570813, 29.700028180011117 ], [ -95.516803038637008, 29.699434179579356 ], [ -95.516070037866484, 29.698803179593444 ], [ -95.515537038074882, 29.698367179111475 ], [ -95.51534103727127, 29.698201179413118 ], [ -95.513997037370572, 29.697004179571593 ], [ -95.512711037169353, 29.695964179276366 ], [ -95.512003036436653, 29.695263179335385 ], [ -95.511574036751469, 29.694759178752903 ], [ -95.511166036918226, 29.69423217903751 ], [ -95.510588035986885, 29.693341178479308 ], [ -95.509969036628263, 29.692016178248085 ], [ -95.509230035803128, 29.692097178269911 ], [ -95.508712035351635, 29.692094178711788 ], [ -95.508358035247369, 29.692060178011193 ], [ -95.507073035683703, 29.691933178525673 ], [ -95.506926034920113, 29.691897177983261 ], [ -95.506725034786385, 29.691849178678027 ], [ -95.506148035472833, 29.691711178466814 ], [ -95.505782035134558, 29.692602179026494 ], [ -95.505470034828591, 29.693389178899256 ], [ -95.505147034655238, 29.694168178679742 ], [ -95.504830035288123, 29.694946178885395 ], [ -95.504516035146281, 29.695743178862571 ], [ -95.504205035097797, 29.69649517982365 ], [ -95.503930035289812, 29.697294179437019 ], [ -95.50390603487682, 29.697372180022867 ], [ -95.503791034679693, 29.697829179993843 ], [ -95.503675034769671, 29.698409179540992 ], [ -95.503541034674697, 29.699216180379988 ], [ -95.503476035168802, 29.700032180296429 ], [ -95.503481035130363, 29.700830180092186 ], [ -95.503552034860078, 29.701656180828813 ], [ -95.503582035317791, 29.701892180987592 ], [ -95.503671034773802, 29.702468180624017 ], [ -95.503859034914385, 29.703276180999602 ], [ -95.504106035177358, 29.704075180776034 ], [ -95.504421035112003, 29.704989181140238 ], [ -95.504789035856859, 29.704919181356882 ], [ -95.504997035488159, 29.704843180870455 ], [ -95.505209035248413, 29.70476618141662 ], [ -95.505639035459495, 29.704598180959309 ], [ -95.50633303539901, 29.704337181165858 ], [ -95.506546035447244, 29.704265181130651 ], [ -95.507075035482842, 29.70410918133129 ], [ -95.507873035755622, 29.703958181223342 ], [ -95.508769036092588, 29.703828180441278 ], [ -95.509691037091898, 29.703800180763483 ], [ -95.510050036631682, 29.703811180317995 ], [ -95.510677036752938, 29.703844181031414 ], [ -95.511242037492408, 29.703883181132671 ], [ -95.512751037756885, 29.704244180834284 ], [ -95.512938037435845, 29.704311181001817 ], [ -95.513136037364347, 29.704382180795001 ], [ -95.513274037403235, 29.704431180465619 ], [ -95.513407037593439, 29.704315180536181 ], [ -95.515471037964531, 29.702524180205792 ], [ -95.515825037902317, 29.702213180373047 ], [ -95.517734038067161, 29.700500179535769 ], [ -95.517863038071965, 29.700385179760492 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 124, "Tract": "48201422701", "Area_SqMi": 0.7093469374196314, "total_2009": 377, "total_2010": 408, "total_2011": 435, "total_2012": 279, "total_2013": 248, "total_2014": 282, "total_2015": 327, "total_2016": 354, "total_2017": 324, "total_2018": 206, "total_2019": 241, "total_2020": 220, "age1": 51, "age2": 82, "age3": 42, "earn1": 53, "earn2": 63, "earn3": 59, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 44, "naics_s08": 3, "naics_s09": 13, "naics_s10": 11, "naics_s11": 12, "naics_s12": 6, "naics_s13": 0, "naics_s14": 3, "naics_s15": 16, "naics_s16": 23, "naics_s17": 24, "naics_s18": 17, "naics_s19": 3, "naics_s20": 0, "race1": 111, "race2": 42, "race3": 3, "race4": 16, "race5": 0, "race6": 3, "ethnicity1": 114, "ethnicity2": 61, "edu1": 26, "edu2": 16, "edu3": 38, "edu4": 44, "Shape_Length": 21455.989306394073, "Shape_Area": 19775378.555842441, "total_2021": 211, "total_2022": 175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.509969036628263, 29.692016178248085 ], [ -95.509397035495624, 29.690376178326826 ], [ -95.509338035626726, 29.690212177615184 ], [ -95.509131035331379, 29.689564177789507 ], [ -95.508969035817174, 29.68892517759998 ], [ -95.5089620356664, 29.688879177424361 ], [ -95.50880503541255, 29.687909177661968 ], [ -95.508747035506431, 29.686789177197692 ], [ -95.507517035154436, 29.687426177175396 ], [ -95.505964034468619, 29.688206177857275 ], [ -95.505925034863751, 29.688225177402373 ], [ -95.505836034473973, 29.688268178021676 ], [ -95.505723035381308, 29.688323177711922 ], [ -95.504438034629388, 29.688988178319608 ], [ -95.503828034072313, 29.689293178053934 ], [ -95.502904033865946, 29.689793178137116 ], [ -95.502394034252916, 29.690033178104471 ], [ -95.501919033619942, 29.690281178116358 ], [ -95.501504033700456, 29.690491178163096 ], [ -95.500955033955023, 29.690775178142051 ], [ -95.500039033997425, 29.691264178756921 ], [ -95.499620033035569, 29.691488178808356 ], [ -95.496951033171428, 29.692792179362254 ], [ -95.494821032448272, 29.693890179181768 ], [ -95.494088031958611, 29.694273179180978 ], [ -95.493696032065685, 29.694474179776265 ], [ -95.493608032519049, 29.694519179105669 ], [ -95.493000032248759, 29.694808179131304 ], [ -95.492956032277135, 29.697299180065951 ], [ -95.492968031930232, 29.698223179829714 ], [ -95.492978031742666, 29.698608180246463 ], [ -95.492996031716913, 29.699427180525124 ], [ -95.492996031658336, 29.700250180975996 ], [ -95.493007032131672, 29.701079180406147 ], [ -95.493046032662264, 29.701825181105782 ], [ -95.493045032462447, 29.702829180713227 ], [ -95.493027031934901, 29.703634181361927 ], [ -95.493051032252424, 29.704470181118587 ], [ -95.493057032668915, 29.705458181521834 ], [ -95.493074032060463, 29.705458181660518 ], [ -95.494308033120205, 29.705459181872481 ], [ -95.495178032623201, 29.705468181914625 ], [ -95.497243033533834, 29.705420181807686 ], [ -95.498581033980585, 29.70541518192724 ], [ -95.499366033877934, 29.705411181893872 ], [ -95.501155034400185, 29.70540218123746 ], [ -95.502703034681701, 29.70531018162216 ], [ -95.503811035167246, 29.705145180941862 ], [ -95.504421035112003, 29.704989181140238 ], [ -95.504106035177358, 29.704075180776034 ], [ -95.503859034914385, 29.703276180999602 ], [ -95.503671034773802, 29.702468180624017 ], [ -95.503582035317791, 29.701892180987592 ], [ -95.503552034860078, 29.701656180828813 ], [ -95.503481035130363, 29.700830180092186 ], [ -95.503476035168802, 29.700032180296429 ], [ -95.503541034674697, 29.699216180379988 ], [ -95.503675034769671, 29.698409179540992 ], [ -95.503791034679693, 29.697829179993843 ], [ -95.50390603487682, 29.697372180022867 ], [ -95.503930035289812, 29.697294179437019 ], [ -95.504205035097797, 29.69649517982365 ], [ -95.504516035146281, 29.695743178862571 ], [ -95.504830035288123, 29.694946178885395 ], [ -95.505147034655238, 29.694168178679742 ], [ -95.505470034828591, 29.693389178899256 ], [ -95.505782035134558, 29.692602179026494 ], [ -95.506148035472833, 29.691711178466814 ], [ -95.506725034786385, 29.691849178678027 ], [ -95.506926034920113, 29.691897177983261 ], [ -95.507073035683703, 29.691933178525673 ], [ -95.508358035247369, 29.692060178011193 ], [ -95.508712035351635, 29.692094178711788 ], [ -95.509230035803128, 29.692097178269911 ], [ -95.509969036628263, 29.692016178248085 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 125, "Tract": "48201553002", "Area_SqMi": 1.7884080486802962, "total_2009": 1423, "total_2010": 1323, "total_2011": 1921, "total_2012": 2107, "total_2013": 2113, "total_2014": 1922, "total_2015": 2053, "total_2016": 1095, "total_2017": 1070, "total_2018": 1085, "total_2019": 1013, "total_2020": 920, "age1": 246, "age2": 457, "age3": 223, "earn1": 237, "earn2": 345, "earn3": 344, "naics_s01": 0, "naics_s02": 0, "naics_s03": 11, "naics_s04": 19, "naics_s05": 12, "naics_s06": 12, "naics_s07": 181, "naics_s08": 2, "naics_s09": 0, "naics_s10": 16, "naics_s11": 42, "naics_s12": 156, "naics_s13": 0, "naics_s14": 80, "naics_s15": 2, "naics_s16": 37, "naics_s17": 84, "naics_s18": 214, "naics_s19": 58, "naics_s20": 0, "race1": 638, "race2": 209, "race3": 9, "race4": 61, "race5": 0, "race6": 9, "ethnicity1": 652, "ethnicity2": 274, "edu1": 153, "edu2": 179, "edu3": 218, "edu4": 130, "Shape_Length": 33045.770731396486, "Shape_Area": 49857755.506240346, "total_2021": 887, "total_2022": 926 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.495096047000445, 30.016073244995297 ], [ -95.495060047181482, 30.015949244922666 ], [ -95.494975046483091, 30.01554824506724 ], [ -95.49490404694086, 30.015214244836216 ], [ -95.494744047055306, 30.01473524512155 ], [ -95.494522046870031, 30.014278244698712 ], [ -95.494198046349695, 30.013829244918394 ], [ -95.493955046856428, 30.013472244565619 ], [ -95.493755046252588, 30.013214244534595 ], [ -95.493508046723164, 30.01293524404625 ], [ -95.493267046175745, 30.012694244170657 ], [ -95.493069045942661, 30.012510244116474 ], [ -95.492751045733755, 30.012267243976009 ], [ -95.492665046272634, 30.012202244309393 ], [ -95.492608045699868, 30.012175244236115 ], [ -95.49242604590367, 30.012044244328074 ], [ -95.49202204548061, 30.011799244181141 ], [ -95.491487045595903, 30.01152324454754 ], [ -95.491195045416447, 30.011363244309127 ], [ -95.490831046107687, 30.011126243940168 ], [ -95.490490045977353, 30.01088324379932 ], [ -95.49033204569254, 30.010752244160102 ], [ -95.489980045696228, 30.01041424446969 ], [ -95.489722045548064, 30.010138244136421 ], [ -95.489548045725982, 30.009924244193474 ], [ -95.489022045279668, 30.009213243504316 ], [ -95.488781045196021, 30.008899244179165 ], [ -95.488687045394755, 30.008760244175381 ], [ -95.488499045255026, 30.00853024333864 ], [ -95.48820604453077, 30.008196243700638 ], [ -95.488134044373808, 30.00813024396766 ], [ -95.487770044303105, 30.007669243436318 ], [ -95.486443044342252, 30.005895243341101 ], [ -95.48606804363007, 30.005387243565433 ], [ -95.485959044244154, 30.005231243465634 ], [ -95.485812043563627, 30.004997242849768 ], [ -95.4856850435458, 30.004762242656099 ], [ -95.485405043531316, 30.004197243059576 ], [ -95.485290043853766, 30.004013242840699 ], [ -95.485242043406117, 30.003915243203952 ], [ -95.48512204380755, 30.003712242864999 ], [ -95.484955043966494, 30.003464242408192 ], [ -95.484934043702268, 30.00341624299266 ], [ -95.484853043406261, 30.003319242548024 ], [ -95.484717043743871, 30.003128242428428 ], [ -95.484681043971122, 30.003047242392913 ], [ -95.484638044050101, 30.002974242750419 ], [ -95.484562043505292, 30.002868242545578 ], [ -95.484338043554615, 30.002613242851353 ], [ -95.484262044033898, 30.002493242710802 ], [ -95.484174043503657, 30.002383242978912 ], [ -95.484072043911866, 30.002270242160993 ], [ -95.483984043600771, 30.00217324291274 ], [ -95.482825042937009, 30.000282242203195 ], [ -95.482786042662198, 30.000219242348571 ], [ -95.482766043454632, 30.000193241801203 ], [ -95.482660043462431, 30.000054242013114 ], [ -95.481007042363302, 29.99763324214603 ], [ -95.480919042401808, 29.997557241613599 ], [ -95.480016042317033, 29.998058241613435 ], [ -95.479778042241989, 29.998191241576041 ], [ -95.479673042420927, 29.998250241954931 ], [ -95.4796070418125, 29.99828724156151 ], [ -95.479202041826724, 29.998511242009876 ], [ -95.47879404145111, 29.998737242139217 ], [ -95.478582041578093, 29.998854242078462 ], [ -95.478447041770835, 29.998931242079053 ], [ -95.478331042002011, 29.998994242070307 ], [ -95.47816504220259, 29.999087242152054 ], [ -95.477871041477712, 29.999250242310886 ], [ -95.477611042105792, 29.999393242529667 ], [ -95.477242042106212, 29.999597242463917 ], [ -95.476988041953504, 29.99975024229829 ], [ -95.47627204176213, 30.00017824283881 ], [ -95.476120041330603, 30.000286242013789 ], [ -95.475791041542365, 30.000519242810441 ], [ -95.47518504080773, 30.000855242522828 ], [ -95.475076041245842, 30.000916242848078 ], [ -95.474143040816188, 30.001436242967578 ], [ -95.473467040373308, 30.001812242779607 ], [ -95.47342104050739, 30.001837243117482 ], [ -95.472569041022908, 30.002311242979264 ], [ -95.472503040254495, 30.002348242786031 ], [ -95.472422040037742, 30.002393242585956 ], [ -95.471682040789318, 30.002864242854095 ], [ -95.470776040543385, 30.003342243071685 ], [ -95.469639040198317, 30.003942243398722 ], [ -95.469553039669023, 30.003990243827968 ], [ -95.469321039347648, 30.004119243294838 ], [ -95.468850039300591, 30.004381243194082 ], [ -95.468058039695421, 30.004822243663071 ], [ -95.467681039455059, 30.005031243443202 ], [ -95.466911039423039, 30.005459243815569 ], [ -95.465891039077249, 30.006027244379908 ], [ -95.465377038831136, 30.0063002443218 ], [ -95.464039038912048, 30.006915244369992 ], [ -95.463798038732506, 30.00703824462531 ], [ -95.463875038082691, 30.007137244025781 ], [ -95.463954038998025, 30.007238244717538 ], [ -95.464097038478499, 30.007446243975274 ], [ -95.464198038247915, 30.007593244636556 ], [ -95.464354038618026, 30.007790244031938 ], [ -95.464481038722795, 30.007963244129648 ], [ -95.464533038943173, 30.008033244346766 ], [ -95.464706038628592, 30.008318244730383 ], [ -95.464894038689181, 30.008600244103427 ], [ -95.466021039294716, 30.010169244572864 ], [ -95.466287038990643, 30.010521244526025 ], [ -95.467028039682901, 30.0115542451496 ], [ -95.467272039848069, 30.01187624492723 ], [ -95.467627040002782, 30.012381245619522 ], [ -95.467936040299733, 30.012816245464727 ], [ -95.468003040300488, 30.012925245010013 ], [ -95.468081039790306, 30.013015244865802 ], [ -95.468222040268699, 30.013215245500227 ], [ -95.468286040433398, 30.013322245339957 ], [ -95.468362040377855, 30.013411245642857 ], [ -95.468642040176491, 30.013790245679449 ], [ -95.468949039957138, 30.014234245646382 ], [ -95.469023040173624, 30.014313245731039 ], [ -95.469159040287636, 30.014502245925673 ], [ -95.469521040082554, 30.015017245475622 ], [ -95.469951040113202, 30.015605246070535 ], [ -95.470025040090476, 30.015706245633602 ], [ -95.470034040372767, 30.015719245349722 ], [ -95.470762041044466, 30.016725245989548 ], [ -95.470839040284815, 30.016832245563162 ], [ -95.47088004072495, 30.016912245901818 ], [ -95.470961040383898, 30.016992246346394 ], [ -95.471004040490115, 30.017070245822776 ], [ -95.471024041224169, 30.017098246282426 ], [ -95.471119040720694, 30.017234245967707 ], [ -95.471170040754657, 30.017325245806934 ], [ -95.471231040738928, 30.017396246525866 ], [ -95.471409041308632, 30.017659245820447 ], [ -95.471612040665747, 30.017964246212678 ], [ -95.471624040564762, 30.017982246283477 ], [ -95.472193040860006, 30.018800246537971 ], [ -95.47244804140486, 30.01916624621731 ], [ -95.473258041312079, 30.020325246930671 ], [ -95.473626042074642, 30.02084424654543 ], [ -95.473677041880322, 30.020928246701473 ], [ -95.473831041865765, 30.021129246691768 ], [ -95.47388504192287, 30.021212246928823 ], [ -95.474032041429453, 30.021409246866515 ], [ -95.474304041698389, 30.02174424668058 ], [ -95.47453604157819, 30.021991246647428 ], [ -95.47492004210882, 30.022374247218064 ], [ -95.475231042491203, 30.022703247083104 ], [ -95.475370042310473, 30.022866247013059 ], [ -95.475507042437528, 30.023040247137093 ], [ -95.475714042427569, 30.023337247268479 ], [ -95.476332042293635, 30.024303247446461 ], [ -95.476378042859295, 30.024376247474674 ], [ -95.476548042727146, 30.024316247289285 ], [ -95.476993042479535, 30.02416224712919 ], [ -95.477297042778176, 30.023978247078936 ], [ -95.477413042440318, 30.023748247126072 ], [ -95.477578042359923, 30.023120246953411 ], [ -95.477545042589952, 30.022627247377077 ], [ -95.477819043098975, 30.022318246845572 ], [ -95.478184042731101, 30.022080246868029 ], [ -95.47878004314353, 30.021841246791226 ], [ -95.478864043162943, 30.021763246359246 ], [ -95.478888043128535, 30.021639246453322 ], [ -95.478925042828095, 30.021355246529659 ], [ -95.479083043259223, 30.020986246944258 ], [ -95.479469042849544, 30.020613246647208 ], [ -95.479605042966455, 30.020482246841876 ], [ -95.480043043655925, 30.019917246408038 ], [ -95.480177043710142, 30.019836246300784 ], [ -95.480415043167341, 30.019782245975442 ], [ -95.480658042950949, 30.01981524632475 ], [ -95.481130043798785, 30.020001246033029 ], [ -95.48144004334749, 30.020123246209668 ], [ -95.482535044351962, 30.020014246315164 ], [ -95.48307004439998, 30.020036246184162 ], [ -95.483714043899766, 30.020158246068775 ], [ -95.484070044181166, 30.020405246057138 ], [ -95.484635044062244, 30.020916245998098 ], [ -95.484816044854426, 30.021349246577273 ], [ -95.48481704418613, 30.0215272465718 ], [ -95.48471804421682, 30.021912246975376 ], [ -95.484134044564016, 30.023359246857467 ], [ -95.484335044733953, 30.023827247098282 ], [ -95.484468044062311, 30.023963246917418 ], [ -95.484769045104585, 30.024149246895131 ], [ -95.484948044651063, 30.024339246928637 ], [ -95.485227044327317, 30.024486247205182 ], [ -95.485500044624402, 30.0245642469798 ], [ -95.485734044477994, 30.024519247470042 ], [ -95.48579804503521, 30.0244772473614 ], [ -95.486034045063363, 30.023870246823606 ], [ -95.486584045289348, 30.023067247071676 ], [ -95.487163044868211, 30.022077246711316 ], [ -95.48747404541011, 30.021796246263705 ], [ -95.48759604578477, 30.021778246301192 ], [ -95.487749045695011, 30.021822246779607 ], [ -95.487863045476615, 30.021782246846779 ], [ -95.488174045485948, 30.021500246574877 ], [ -95.488303045503471, 30.021126245979229 ], [ -95.488003044926501, 30.020656245847306 ], [ -95.488083045214182, 30.020494246526813 ], [ -95.488211045849113, 30.020405245695077 ], [ -95.488445045830176, 30.020336246134057 ], [ -95.488815045039615, 30.020309246072248 ], [ -95.489485045602606, 30.020132245731439 ], [ -95.489937045503723, 30.020125246026648 ], [ -95.490328045723274, 30.019933246005859 ], [ -95.490581045638649, 30.018667245377554 ], [ -95.490759046249181, 30.018266245926533 ], [ -95.49108304553846, 30.017726245068225 ], [ -95.491004045632266, 30.017047245415458 ], [ -95.491148046205481, 30.016561245547052 ], [ -95.491736045618197, 30.016014244726161 ], [ -95.492110046117176, 30.01533424517071 ], [ -95.492214046464866, 30.015223244838424 ], [ -95.492540046064704, 30.015070245274941 ], [ -95.492911045942904, 30.015091244450957 ], [ -95.493161046417612, 30.015215244635851 ], [ -95.493319046765563, 30.015545244947184 ], [ -95.493618046724436, 30.015838244785215 ], [ -95.495096047000445, 30.016073244995297 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 126, "Tract": "48201553001", "Area_SqMi": 1.8276905180783598, "total_2009": 2347, "total_2010": 1610, "total_2011": 1513, "total_2012": 1368, "total_2013": 1463, "total_2014": 1414, "total_2015": 1724, "total_2016": 1611, "total_2017": 1703, "total_2018": 1712, "total_2019": 1454, "total_2020": 2167, "age1": 471, "age2": 1120, "age3": 500, "earn1": 250, "earn2": 668, "earn3": 1173, "naics_s01": 2, "naics_s02": 3, "naics_s03": 20, "naics_s04": 61, "naics_s05": 73, "naics_s06": 632, "naics_s07": 747, "naics_s08": 12, "naics_s09": 17, "naics_s10": 52, "naics_s11": 106, "naics_s12": 83, "naics_s13": 7, "naics_s14": 4, "naics_s15": 3, "naics_s16": 93, "naics_s17": 14, "naics_s18": 124, "naics_s19": 38, "naics_s20": 0, "race1": 1417, "race2": 339, "race3": 15, "race4": 277, "race5": 0, "race6": 43, "ethnicity1": 1519, "ethnicity2": 572, "edu1": 295, "edu2": 431, "edu3": 446, "edu4": 448, "Shape_Length": 31363.998192770847, "Shape_Area": 50952883.520440049, "total_2021": 2131, "total_2022": 2091 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.512035050756026, 30.006700242882104 ], [ -95.511997051161558, 30.0066472424556 ], [ -95.511654050229581, 30.006175242838861 ], [ -95.51137705080771, 30.005803242643445 ], [ -95.511295050807604, 30.005713242267191 ], [ -95.511222050790764, 30.00561224227911 ], [ -95.510985050870289, 30.005331242020137 ], [ -95.510916049983564, 30.005232241991948 ], [ -95.51051605042899, 30.004691242249194 ], [ -95.510028050723946, 30.004012241762634 ], [ -95.509598049642264, 30.003426241831491 ], [ -95.509353049878413, 30.0030902420127 ], [ -95.509020049643382, 30.002619241646457 ], [ -95.508549049754166, 30.001920241607657 ], [ -95.508260049131351, 30.00150624144587 ], [ -95.507301049326216, 30.000181241701554 ], [ -95.506879049599789, 29.999636240882442 ], [ -95.506493049438347, 29.999112241556091 ], [ -95.506346049397862, 29.998907240798612 ], [ -95.50601504860407, 29.998455241076378 ], [ -95.505800048368656, 29.998143240560722 ], [ -95.505596048929988, 29.997833240698121 ], [ -95.505437048788252, 29.997604240512867 ], [ -95.505226049146117, 29.997311240918755 ], [ -95.504154047995769, 29.995824240305549 ], [ -95.503915048489489, 29.995495240794288 ], [ -95.502713047411888, 29.993840240603106 ], [ -95.502322047668144, 29.993338240534978 ], [ -95.501795047119998, 29.992618240339958 ], [ -95.501596048007443, 29.992339240322924 ], [ -95.501340047637683, 29.991965239949462 ], [ -95.50112904732778, 29.991647239655059 ], [ -95.501062047315685, 29.991556240066014 ], [ -95.500954047458066, 29.991397239569284 ], [ -95.500835046898985, 29.991231239961145 ], [ -95.500564047141097, 29.990860239804594 ], [ -95.500138046983878, 29.990312239671979 ], [ -95.50004104740421, 29.990179239173035 ], [ -95.499765046701754, 29.989800239093501 ], [ -95.499311046966767, 29.989177239071608 ], [ -95.499165047061396, 29.988977239053867 ], [ -95.498897046548578, 29.988622238970081 ], [ -95.498782046264211, 29.988468239180545 ], [ -95.498658046098711, 29.98830023953931 ], [ -95.498578046405186, 29.98819323907906 ], [ -95.498349046323568, 29.987870238816623 ], [ -95.497847046482192, 29.988156239418878 ], [ -95.49752304606487, 29.98834123958639 ], [ -95.496830045983316, 29.988736239402272 ], [ -95.496434045753247, 29.988960239188547 ], [ -95.496157045921578, 29.989118239674976 ], [ -95.495463046277123, 29.989492239793538 ], [ -95.494989046146642, 29.989748239734805 ], [ -95.494923045695444, 29.989784239420466 ], [ -95.494497045209286, 29.99001623995748 ], [ -95.49432804525911, 29.990107239798284 ], [ -95.494098045606663, 29.990230239987987 ], [ -95.492810045400915, 29.990928239758624 ], [ -95.492265045074177, 29.991228239594967 ], [ -95.491724044799028, 29.991528239764826 ], [ -95.491538044656792, 29.99163024034841 ], [ -95.490762044377007, 29.992058239977183 ], [ -95.490258044799916, 29.992337240631528 ], [ -95.489405044206237, 29.992805240628503 ], [ -95.489346043909705, 29.992837240792863 ], [ -95.488898044593213, 29.993084240925775 ], [ -95.48851104409556, 29.993299240622328 ], [ -95.488328044639516, 29.993400240352948 ], [ -95.487987044431875, 29.993590240487446 ], [ -95.487432043699712, 29.993902240993638 ], [ -95.487003043416678, 29.994145240613758 ], [ -95.486495044191003, 29.994434240710142 ], [ -95.485889043199862, 29.99474324106469 ], [ -95.485431043345685, 29.994977241096791 ], [ -95.485033043354832, 29.995194241145015 ], [ -95.484948043284874, 29.995244241370706 ], [ -95.484694042897814, 29.995395240872963 ], [ -95.483918043287886, 29.995856241485445 ], [ -95.483458042832254, 29.996133241595061 ], [ -95.482071042647476, 29.996910241648774 ], [ -95.481813042880205, 29.997054241754721 ], [ -95.48156604251605, 29.997194241379617 ], [ -95.481269042711475, 29.997360241691474 ], [ -95.480919042401808, 29.997557241613599 ], [ -95.481007042363302, 29.99763324214603 ], [ -95.482660043462431, 30.000054242013114 ], [ -95.482766043454632, 30.000193241801203 ], [ -95.482786042662198, 30.000219242348571 ], [ -95.482825042937009, 30.000282242203195 ], [ -95.483984043600771, 30.00217324291274 ], [ -95.484072043911866, 30.002270242160993 ], [ -95.484174043503657, 30.002383242978912 ], [ -95.484262044033898, 30.002493242710802 ], [ -95.484338043554615, 30.002613242851353 ], [ -95.484562043505292, 30.002868242545578 ], [ -95.484638044050101, 30.002974242750419 ], [ -95.484681043971122, 30.003047242392913 ], [ -95.484717043743871, 30.003128242428428 ], [ -95.484853043406261, 30.003319242548024 ], [ -95.484934043702268, 30.00341624299266 ], [ -95.484955043966494, 30.003464242408192 ], [ -95.48512204380755, 30.003712242864999 ], [ -95.485242043406117, 30.003915243203952 ], [ -95.485290043853766, 30.004013242840699 ], [ -95.485405043531316, 30.004197243059576 ], [ -95.4856850435458, 30.004762242656099 ], [ -95.485812043563627, 30.004997242849768 ], [ -95.485959044244154, 30.005231243465634 ], [ -95.48606804363007, 30.005387243565433 ], [ -95.486443044342252, 30.005895243341101 ], [ -95.487770044303105, 30.007669243436318 ], [ -95.488134044373808, 30.00813024396766 ], [ -95.48820604453077, 30.008196243700638 ], [ -95.488499045255026, 30.00853024333864 ], [ -95.488687045394755, 30.008760244175381 ], [ -95.488781045196021, 30.008899244179165 ], [ -95.489022045279668, 30.009213243504316 ], [ -95.489548045725982, 30.009924244193474 ], [ -95.489722045548064, 30.010138244136421 ], [ -95.489980045696228, 30.01041424446969 ], [ -95.49033204569254, 30.010752244160102 ], [ -95.490490045977353, 30.01088324379932 ], [ -95.490831046107687, 30.011126243940168 ], [ -95.491195045416447, 30.011363244309127 ], [ -95.491487045595903, 30.01152324454754 ], [ -95.49202204548061, 30.011799244181141 ], [ -95.49242604590367, 30.012044244328074 ], [ -95.492608045699868, 30.012175244236115 ], [ -95.492665046272634, 30.012202244309393 ], [ -95.492751045733755, 30.012267243976009 ], [ -95.493069045942661, 30.012510244116474 ], [ -95.493267046175745, 30.012694244170657 ], [ -95.493508046723164, 30.01293524404625 ], [ -95.493755046252588, 30.013214244534595 ], [ -95.493955046856428, 30.013472244565619 ], [ -95.494198046349695, 30.013829244918394 ], [ -95.494522046870031, 30.014278244698712 ], [ -95.494744047055306, 30.01473524512155 ], [ -95.49490404694086, 30.015214244836216 ], [ -95.494975046483091, 30.01554824506724 ], [ -95.495060047181482, 30.015949244922666 ], [ -95.495096047000445, 30.016073244995297 ], [ -95.495382046567713, 30.015810244866966 ], [ -95.495435046658073, 30.015761244566654 ], [ -95.495903047517515, 30.015042245063217 ], [ -95.496303047134987, 30.013831244876169 ], [ -95.496369047518257, 30.013635244261216 ], [ -95.496743047170639, 30.013328244686669 ], [ -95.496892046885606, 30.013156243895519 ], [ -95.49709804680532, 30.012726243938673 ], [ -95.497319047306505, 30.012467244596017 ], [ -95.498290047149496, 30.011790244319723 ], [ -95.498736047589659, 30.011481244083729 ], [ -95.498854047382324, 30.011454244202149 ], [ -95.499137048004485, 30.011507244030813 ], [ -95.499394047960422, 30.011730244123644 ], [ -95.499609047908535, 30.01183424384978 ], [ -95.500536047997841, 30.011944243825226 ], [ -95.500733048209099, 30.01189724423703 ], [ -95.501240048141938, 30.011601244005014 ], [ -95.501308048425003, 30.011398244159992 ], [ -95.501300048554342, 30.011256244027749 ], [ -95.501093048054756, 30.010568244068576 ], [ -95.50107404834543, 30.01035724340116 ], [ -95.501217047788685, 30.010066243803305 ], [ -95.501451048497742, 30.009920243455504 ], [ -95.501722048006016, 30.009658243874302 ], [ -95.501727047991849, 30.009418243384701 ], [ -95.501470048502412, 30.009139243471335 ], [ -95.501433048491791, 30.009037243254603 ], [ -95.501498047986161, 30.00868824298901 ], [ -95.501702048164759, 30.008519243401754 ], [ -95.502174048477883, 30.008390243170425 ], [ -95.502462048330699, 30.008426242958375 ], [ -95.502746048888596, 30.008678243375236 ], [ -95.503204049111247, 30.00898124367858 ], [ -95.503308048453349, 30.009176243720788 ], [ -95.503468049268875, 30.009338243215424 ], [ -95.503773049128412, 30.009444243130531 ], [ -95.504424048806015, 30.00948624309234 ], [ -95.504580049432363, 30.009442243504562 ], [ -95.504799048605818, 30.009283242825159 ], [ -95.505003049381244, 30.009273242930629 ], [ -95.505291049441567, 30.009283243646607 ], [ -95.506023049742595, 30.00950024338545 ], [ -95.506927049905116, 30.009590243370322 ], [ -95.507624050001098, 30.009576242939367 ], [ -95.507988049684016, 30.009525243624338 ], [ -95.508609050058951, 30.009336243145732 ], [ -95.508922049940537, 30.009112243102308 ], [ -95.509154050581813, 30.009045243010075 ], [ -95.509551050689055, 30.009119242670838 ], [ -95.510324050993304, 30.009514243048976 ], [ -95.510523050702957, 30.009549242878791 ], [ -95.510783050520587, 30.009450243096961 ], [ -95.510922050325078, 30.009275242707961 ], [ -95.511330051059261, 30.008128242944075 ], [ -95.51178705106399, 30.007054242497304 ], [ -95.512035050756026, 30.006700242882104 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 127, "Tract": "48201232304", "Area_SqMi": 4.7652089399335242, "total_2009": 333, "total_2010": 301, "total_2011": 354, "total_2012": 413, "total_2013": 440, "total_2014": 478, "total_2015": 510, "total_2016": 565, "total_2017": 539, "total_2018": 452, "total_2019": 546, "total_2020": 503, "age1": 118, "age2": 242, "age3": 69, "earn1": 76, "earn2": 84, "earn3": 269, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 140, "naics_s05": 77, "naics_s06": 5, "naics_s07": 59, "naics_s08": 7, "naics_s09": 1, "naics_s10": 0, "naics_s11": 12, "naics_s12": 21, "naics_s13": 0, "naics_s14": 29, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 69, "naics_s19": 9, "naics_s20": 0, "race1": 325, "race2": 48, "race3": 8, "race4": 43, "race5": 1, "race6": 4, "ethnicity1": 253, "ethnicity2": 176, "edu1": 93, "edu2": 90, "edu3": 74, "edu4": 54, "Shape_Length": 60120.25096891007, "Shape_Area": 132845869.50873631, "total_2021": 498, "total_2022": 429 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.238655975136538, 29.874484224902783 ], [ -95.238655975151175, 29.874188224774585 ], [ -95.238414975146711, 29.873312224868961 ], [ -95.238340975060012, 29.872600224647041 ], [ -95.238302974173806, 29.872259224912231 ], [ -95.237892974520292, 29.871138224267771 ], [ -95.237645974018321, 29.870621223730634 ], [ -95.237626974343243, 29.870605224499787 ], [ -95.237310974201918, 29.86990722443722 ], [ -95.236900974013096, 29.869351223823649 ], [ -95.236660974318639, 29.86910422353353 ], [ -95.236439974279776, 29.868978223460125 ], [ -95.236218973776204, 29.868879223654215 ], [ -95.235859973449251, 29.868736223761182 ], [ -95.23570797341911, 29.868621224163444 ], [ -95.235657973296014, 29.868566224070321 ], [ -95.235594973824789, 29.868461224019399 ], [ -95.235581973735393, 29.868412224218215 ], [ -95.235575973358792, 29.8680212239409 ], [ -95.2354739734552, 29.867571223569879 ], [ -95.2351649737396, 29.867252223878396 ], [ -95.234615973416581, 29.866999223697757 ], [ -95.234268973201765, 29.866873223894281 ], [ -95.233959973605877, 29.86666422341608 ], [ -95.233687973018576, 29.866444223029141 ], [ -95.233492973226731, 29.866059223026806 ], [ -95.232608973213516, 29.864911223626667 ], [ -95.231844972783009, 29.863861222999045 ], [ -95.231617972796414, 29.863509223222302 ], [ -95.231566972396763, 29.863415223096691 ], [ -95.231042972584575, 29.862635223183609 ], [ -95.230676972183431, 29.862124222836169 ], [ -95.230531971653448, 29.861777222334069 ], [ -95.230423971887745, 29.861431222674884 ], [ -95.23041797179809, 29.861282222133816 ], [ -95.230436971919843, 29.861156222040236 ], [ -95.23047497246759, 29.861073222208123 ], [ -95.230556972420388, 29.861002222379746 ], [ -95.230726972594795, 29.860974222852317 ], [ -95.230909972641285, 29.860914222154424 ], [ -95.231054972557118, 29.860815222183756 ], [ -95.231457972650531, 29.860226222689718 ], [ -95.231690972013311, 29.859759221920253 ], [ -95.231690972618225, 29.859566222172578 ], [ -95.231633972647714, 29.859204221896729 ], [ -95.231387971874653, 29.858764221560556 ], [ -95.231027972615522, 29.858390221709396 ], [ -95.23064297169779, 29.85821422205623 ], [ -95.230296971585886, 29.858079221947985 ], [ -95.229412971227873, 29.857736221941348 ], [ -95.229002971089216, 29.857544221479078 ], [ -95.228794971887424, 29.857423221695292 ], [ -95.228573971387874, 29.857214221572942 ], [ -95.22847597092877, 29.857020221462854 ], [ -95.228403971794521, 29.856879221847016 ], [ -95.22834697139271, 29.856417222007067 ], [ -95.228339971216386, 29.856038221888454 ], [ -95.228503971119082, 29.855438221542951 ], [ -95.228503971453065, 29.85527922154365 ], [ -95.228559971654931, 29.854245221238262 ], [ -95.228540971128353, 29.854179221264179 ], [ -95.22854097157483, 29.853712220892845 ], [ -95.22848397106911, 29.85354722097399 ], [ -95.228483971438337, 29.853514220946703 ], [ -95.228505970811639, 29.853401220629934 ], [ -95.228527971137311, 29.853288221236355 ], [ -95.228533971557511, 29.853107221030456 ], [ -95.228485971149581, 29.852999220911247 ], [ -95.228420970866893, 29.852942220538043 ], [ -95.228338971425273, 29.852893220918716 ], [ -95.228262971652725, 29.852816221051086 ], [ -95.228249971450808, 29.852750220938571 ], [ -95.228300971152038, 29.852684220736641 ], [ -95.228338971348776, 29.852601220418698 ], [ -95.228350970987933, 29.852574221218564 ], [ -95.228394971140105, 29.852304220531703 ], [ -95.228413971492472, 29.851996220885056 ], [ -95.22843297125506, 29.851820220515371 ], [ -95.228343970850318, 29.851166220564195 ], [ -95.228305970964556, 29.85105622046019 ], [ -95.228292971076328, 29.850952220325926 ], [ -95.228311971069544, 29.850869220029157 ], [ -95.228456971117481, 29.850550220639313 ], [ -95.228475970628324, 29.850424220375274 ], [ -95.228481971495313, 29.850264219907515 ], [ -95.228507970904928, 29.850077220383355 ], [ -95.228507971075231, 29.849967220144169 ], [ -95.228491971515226, 29.849883220208948 ], [ -95.228456970830365, 29.849693219811375 ], [ -95.2284129706577, 29.849583219735113 ], [ -95.228399971398133, 29.849462220358983 ], [ -95.228544971507446, 29.8486262203816 ], [ -95.228556971445158, 29.848560220064996 ], [ -95.228534970996947, 29.848383219969381 ], [ -95.228481970738031, 29.847471220063856 ], [ -95.22850997047631, 29.847404219985293 ], [ -95.228517971485388, 29.847312219290206 ], [ -95.228523970560545, 29.8471962196626 ], [ -95.228493970981333, 29.847086219662074 ], [ -95.228410970669714, 29.846696219508928 ], [ -95.228379970562656, 29.846427219757761 ], [ -95.228360971200672, 29.846394219699121 ], [ -95.22839797134877, 29.845800219244047 ], [ -95.228473971371969, 29.845706219570086 ], [ -95.228523971207281, 29.845613219092829 ], [ -95.228574971023505, 29.845470219376832 ], [ -95.228599971125817, 29.845360219758479 ], [ -95.228618971403819, 29.845222219118767 ], [ -95.22858097040158, 29.844964219239024 ], [ -95.228580971125496, 29.844826219559273 ], [ -95.228599970779669, 29.844705219031365 ], [ -95.22878197040896, 29.844376218813906 ], [ -95.22889597075465, 29.844244218674596 ], [ -95.229002971409855, 29.844199219473044 ], [ -95.229128970481355, 29.844177219364724 ], [ -95.229286970865701, 29.844166219012696 ], [ -95.229475970931503, 29.844161219089841 ], [ -95.229708971480619, 29.84419421934345 ], [ -95.229866970761051, 29.844183219181051 ], [ -95.230049971513722, 29.844106219151726 ], [ -95.230144970905513, 29.844040219367503 ], [ -95.23025797139465, 29.84392421887167 ], [ -95.230380971170916, 29.843777218842046 ], [ -95.230547970813831, 29.843578219104973 ], [ -95.230673971572088, 29.843495219122456 ], [ -95.230913971903661, 29.843396218617372 ], [ -95.231102971342892, 29.843335218771127 ], [ -95.231196971315754, 29.843280219102528 ], [ -95.231335971026667, 29.84315921909759 ], [ -95.231424971921598, 29.84309121832834 ], [ -95.231486971830094, 29.843044218703433 ], [ -95.231619971975817, 29.842890218501303 ], [ -95.231839971660392, 29.84260421877028 ], [ -95.231909971325891, 29.842389218780077 ], [ -95.231890971364734, 29.842131218430442 ], [ -95.231826971540556, 29.841939218504027 ], [ -95.231593971723967, 29.841636218861129 ], [ -95.231536971998111, 29.841543218162403 ], [ -95.231473971015234, 29.841405218144597 ], [ -95.231429971614318, 29.841262218655746 ], [ -95.231435971879733, 29.841076218775655 ], [ -95.231443971222504, 29.841020218411717 ], [ -95.231460970964662, 29.840911218334291 ], [ -95.231585971631404, 29.84046121791275 ], [ -95.231624971627156, 29.840322218067616 ], [ -95.231794971210462, 29.840042217943925 ], [ -95.231876971675177, 29.839943218062135 ], [ -95.232279971722789, 29.839701218173637 ], [ -95.2324379717586, 29.839596218315666 ], [ -95.232639972006311, 29.839552218093541 ], [ -95.233122972013078, 29.83951821806766 ], [ -95.233157971557347, 29.839515217686188 ], [ -95.233301971833029, 29.83947521815972 ], [ -95.233503971946831, 29.839381218166952 ], [ -95.233686972264408, 29.839271217749094 ], [ -95.233850971946197, 29.839117217665734 ], [ -95.234076972244296, 29.83878221755819 ], [ -95.234183971715879, 29.838094218035511 ], [ -95.23393197154094, 29.837759217454447 ], [ -95.233450971501128, 29.837315217324839 ], [ -95.232852971252555, 29.836764217773002 ], [ -95.232805971612365, 29.83672721717792 ], [ -95.232051971823424, 29.836138217086443 ], [ -95.231123971606934, 29.835368217159342 ], [ -95.230877970907116, 29.83508821747311 ], [ -95.230754970746219, 29.834924217417004 ], [ -95.230674971438944, 29.834818217247463 ], [ -95.230593970547602, 29.834742217450152 ], [ -95.230438971131903, 29.834629217186134 ], [ -95.230205971135291, 29.834214217317374 ], [ -95.23014597121751, 29.834006217294657 ], [ -95.230242970541141, 29.83316121642688 ], [ -95.230273970501372, 29.832889216365885 ], [ -95.230263970509156, 29.832639216512248 ], [ -95.230481970488256, 29.832101216751315 ], [ -95.231793970871692, 29.83032121650972 ], [ -95.231816971473208, 29.829968215607806 ], [ -95.231609970771132, 29.829817216218284 ], [ -95.230904971082992, 29.828895215933965 ], [ -95.230566970736831, 29.828325215298367 ], [ -95.230451970230874, 29.827690215386003 ], [ -95.230422970444565, 29.826843215138201 ], [ -95.230389970014912, 29.825861215107658 ], [ -95.230370970498512, 29.825763215510406 ], [ -95.230292970239489, 29.825348215450191 ], [ -95.229931970670336, 29.824565214591338 ], [ -95.229822970673013, 29.824608215415683 ], [ -95.226990969806536, 29.825724215435642 ], [ -95.226805970028636, 29.825787215352435 ], [ -95.224721969487405, 29.826707215445975 ], [ -95.219207967566973, 29.829093216149602 ], [ -95.216133967145495, 29.83041921646273 ], [ -95.213043966331043, 29.831730217080597 ], [ -95.210992965993896, 29.832588217067489 ], [ -95.211356966347211, 29.833127217310576 ], [ -95.212582966498772, 29.834597217534171 ], [ -95.213404966216842, 29.835844217795813 ], [ -95.213566966358016, 29.83614221814641 ], [ -95.213700966973889, 29.836473217849026 ], [ -95.213820967073119, 29.836877218430242 ], [ -95.21391796707951, 29.837320218045804 ], [ -95.214052966479287, 29.838784218625268 ], [ -95.214012966686397, 29.838876218312055 ], [ -95.213942966988938, 29.839038218131613 ], [ -95.213947967031018, 29.839232218780509 ], [ -95.213955967385118, 29.839552218579197 ], [ -95.213962966430401, 29.839863218302053 ], [ -95.214021966816844, 29.842357218780034 ], [ -95.214077967124013, 29.845838219944973 ], [ -95.214117967136758, 29.847601220473873 ], [ -95.214122967178895, 29.847797220025868 ], [ -95.214143967036421, 29.848845220085764 ], [ -95.214170967189503, 29.850108220881236 ], [ -95.214176967602299, 29.850216220894911 ], [ -95.214257967441853, 29.85157022090106 ], [ -95.214205967841977, 29.852187220834413 ], [ -95.214187967693064, 29.852404221633488 ], [ -95.214149967553467, 29.852774220883781 ], [ -95.214105967232101, 29.853208221326913 ], [ -95.213926967067877, 29.854103221379603 ], [ -95.213915967274204, 29.854158221658381 ], [ -95.213494967052654, 29.855643222002627 ], [ -95.213448967062533, 29.855800221686401 ], [ -95.213379967220305, 29.856035222449403 ], [ -95.213063967940087, 29.856796221848743 ], [ -95.211469966729553, 29.859616222808675 ], [ -95.211412967047394, 29.85971622281572 ], [ -95.211406966841139, 29.859727223077975 ], [ -95.211296967150659, 29.859922223222107 ], [ -95.211125966862483, 29.860213223209009 ], [ -95.211061966779837, 29.860323222877824 ], [ -95.211031967189243, 29.860375222741872 ], [ -95.210433967138258, 29.861796223261969 ], [ -95.209724967322032, 29.863485223610716 ], [ -95.209356967292536, 29.864363223696248 ], [ -95.209182967011557, 29.865008224425019 ], [ -95.209122967165428, 29.865226224251881 ], [ -95.208835966852803, 29.866289224696335 ], [ -95.208702966406875, 29.867105224855042 ], [ -95.208319966409434, 29.869455224610249 ], [ -95.208241966463589, 29.871299225303293 ], [ -95.208254966598048, 29.873349226023628 ], [ -95.208486967493556, 29.883012228119764 ], [ -95.208733967994121, 29.883018227323547 ], [ -95.210031967660996, 29.883016227224136 ], [ -95.210402968259785, 29.883004227362829 ], [ -95.211008968586668, 29.88299522777633 ], [ -95.211956967943763, 29.882989227994873 ], [ -95.212162968451423, 29.882993227337476 ], [ -95.213052968201566, 29.882984227320588 ], [ -95.213289969076271, 29.882969227676906 ], [ -95.213522968586332, 29.882972227690715 ], [ -95.215475968764835, 29.882956227160605 ], [ -95.216222969559539, 29.882942227035237 ], [ -95.217469969683378, 29.882932227331612 ], [ -95.218984970533427, 29.882914227297178 ], [ -95.220002970494008, 29.88290722702072 ], [ -95.220254970574402, 29.882913227625775 ], [ -95.220516970789788, 29.882898227231969 ], [ -95.223073971108192, 29.882872227529784 ], [ -95.223288970747134, 29.882844227016573 ], [ -95.223489971099553, 29.882845227507747 ], [ -95.22368397183233, 29.882853226748647 ], [ -95.224003971059233, 29.88285322697519 ], [ -95.224310971300454, 29.882843227317384 ], [ -95.233332973764007, 29.882748226485372 ], [ -95.236568974753013, 29.883081226928255 ], [ -95.236759974464988, 29.883101226885628 ], [ -95.236552974520521, 29.882650226302275 ], [ -95.236650974470123, 29.882045226600976 ], [ -95.236776974212574, 29.881780226916199 ], [ -95.237036975116311, 29.881459226578038 ], [ -95.237030975001716, 29.881066226047977 ], [ -95.236702974760561, 29.880062226470322 ], [ -95.236584974816637, 29.879873226000107 ], [ -95.236504974503887, 29.879796226478806 ], [ -95.235999974540391, 29.879314226030981 ], [ -95.235883973885905, 29.879047225498436 ], [ -95.235899973769406, 29.878833225975303 ], [ -95.236086974777962, 29.878644226019571 ], [ -95.236341974532365, 29.878526225498462 ], [ -95.236479974754005, 29.878496226261134 ], [ -95.23670097436262, 29.878450225688528 ], [ -95.236821974369548, 29.878424225531656 ], [ -95.237191974820774, 29.87840422576182 ], [ -95.237667974779015, 29.878290226099939 ], [ -95.237916974936923, 29.878102225879513 ], [ -95.23822397429457, 29.877675225859587 ], [ -95.238285975138126, 29.877503225406418 ], [ -95.238278975229576, 29.876820225533145 ], [ -95.238403974653153, 29.876478225692775 ], [ -95.238655975136538, 29.874484224902783 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 128, "Tract": "48201333905", "Area_SqMi": 1.103562156240687, "total_2009": 878, "total_2010": 1321, "total_2011": 2453, "total_2012": 1066, "total_2013": 1190, "total_2014": 1633, "total_2015": 1131, "total_2016": 1118, "total_2017": 1452, "total_2018": 1447, "total_2019": 1517, "total_2020": 1436, "age1": 233, "age2": 666, "age3": 350, "earn1": 101, "earn2": 341, "earn3": 807, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 696, "naics_s05": 313, "naics_s06": 82, "naics_s07": 41, "naics_s08": 5, "naics_s09": 0, "naics_s10": 28, "naics_s11": 15, "naics_s12": 4, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 15, "naics_s17": 0, "naics_s18": 10, "naics_s19": 25, "naics_s20": 0, "race1": 1013, "race2": 108, "race3": 13, "race4": 92, "race5": 2, "race6": 21, "ethnicity1": 678, "ethnicity2": 571, "edu1": 284, "edu2": 282, "edu3": 289, "edu4": 161, "Shape_Length": 22536.092378057794, "Shape_Area": 30765424.150483344, "total_2021": 1263, "total_2022": 1249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.266799970926897, 29.624511173134724 ], [ -95.266794971299888, 29.624114172960724 ], [ -95.266793970891257, 29.623069172094102 ], [ -95.266790970901667, 29.622832172166284 ], [ -95.266784970764377, 29.622010172207162 ], [ -95.266762970763594, 29.620977171598124 ], [ -95.266744970749514, 29.619922171894732 ], [ -95.266729971151065, 29.618873171184347 ], [ -95.266724970400418, 29.617811171008448 ], [ -95.266713970883416, 29.616753171066243 ], [ -95.266698970203819, 29.615698170903876 ], [ -95.266682970920314, 29.614402170852156 ], [ -95.266679970408077, 29.613344170258163 ], [ -95.26660697037056, 29.612793170346059 ], [ -95.266588970410012, 29.6118391700135 ], [ -95.266353970639159, 29.611837170148025 ], [ -95.264895969681405, 29.611823170441564 ], [ -95.264374969272382, 29.611778170243856 ], [ -95.263960969255777, 29.611703170295797 ], [ -95.262476968929079, 29.611293169878497 ], [ -95.261909969333686, 29.611102170465234 ], [ -95.261219969112503, 29.610956169971644 ], [ -95.260543968646701, 29.610896170055927 ], [ -95.259985968342548, 29.610902169724863 ], [ -95.256983967394035, 29.610935170078786 ], [ -95.25483096714521, 29.610958169963414 ], [ -95.252661966972624, 29.61098217028783 ], [ -95.250341966178823, 29.61100617081738 ], [ -95.24982796612187, 29.611006170167364 ], [ -95.249976966193486, 29.612213170574904 ], [ -95.25025996647291, 29.613126171326527 ], [ -95.250622966693385, 29.613751170992842 ], [ -95.250748966279588, 29.614381170905155 ], [ -95.250846966725234, 29.616126171066931 ], [ -95.25078196691976, 29.617170172103016 ], [ -95.250650966931772, 29.617996172283451 ], [ -95.250346966621777, 29.618691172382103 ], [ -95.249976966300011, 29.619517172115927 ], [ -95.249940966139363, 29.619599172660113 ], [ -95.249778966262184, 29.61997017275143 ], [ -95.249761966167782, 29.620040172293219 ], [ -95.24965296671995, 29.620321172492446 ], [ -95.249529965809373, 29.620543172305531 ], [ -95.249373965825512, 29.620804172903654 ], [ -95.249004966599458, 29.62142317261571 ], [ -95.248370966122579, 29.623536172820142 ], [ -95.248328966343934, 29.623768173537655 ], [ -95.248445966082002, 29.625358173298029 ], [ -95.248535966444379, 29.627163173474766 ], [ -95.24936496695311, 29.627127174158225 ], [ -95.249908966419525, 29.627103173804269 ], [ -95.253007967017396, 29.626967173283919 ], [ -95.255963968309402, 29.626838173082643 ], [ -95.258182968469271, 29.626753173136507 ], [ -95.258686968646074, 29.626737173244635 ], [ -95.258805968751261, 29.626733173837163 ], [ -95.259138969308424, 29.626714173239009 ], [ -95.259739969566454, 29.626687173210748 ], [ -95.261059969526769, 29.626629173633102 ], [ -95.264689970477633, 29.626545173545875 ], [ -95.266740970567454, 29.626442173444307 ], [ -95.266763970730125, 29.6251761727383 ], [ -95.26676497120792, 29.625143172715468 ], [ -95.266799970926897, 29.624511173134724 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 129, "Tract": "48201454505", "Area_SqMi": 1.1686024179205141, "total_2009": 1570, "total_2010": 1946, "total_2011": 1821, "total_2012": 1837, "total_2013": 1942, "total_2014": 1851, "total_2015": 1771, "total_2016": 2175, "total_2017": 2118, "total_2018": 2240, "total_2019": 2267, "total_2020": 2451, "age1": 828, "age2": 1210, "age3": 532, "earn1": 701, "earn2": 948, "earn3": 921, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 20, "naics_s06": 144, "naics_s07": 878, "naics_s08": 15, "naics_s09": 27, "naics_s10": 38, "naics_s11": 85, "naics_s12": 164, "naics_s13": 19, "naics_s14": 223, "naics_s15": 9, "naics_s16": 277, "naics_s17": 2, "naics_s18": 494, "naics_s19": 156, "naics_s20": 0, "race1": 1687, "race2": 588, "race3": 17, "race4": 227, "race5": 0, "race6": 51, "ethnicity1": 1829, "ethnicity2": 741, "edu1": 366, "edu2": 442, "edu3": 511, "edu4": 423, "Shape_Length": 26392.245955990289, "Shape_Area": 32578635.328596536, "total_2021": 2467, "total_2022": 2570 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.718939093295731, 29.785183190073596 ], [ -95.718937093384937, 29.78491819041113 ], [ -95.718934094132308, 29.784520189961619 ], [ -95.718922093409688, 29.78349418983947 ], [ -95.718916093943065, 29.783038189934235 ], [ -95.718916093992235, 29.782808189712014 ], [ -95.718914093183045, 29.782357189519601 ], [ -95.718912093630593, 29.782166189578959 ], [ -95.71890709305265, 29.782111189321231 ], [ -95.718908093281527, 29.781983189868722 ], [ -95.718907093907049, 29.781949189535222 ], [ -95.718903093150544, 29.781716189501903 ], [ -95.71890909299519, 29.781664189737199 ], [ -95.718902093697807, 29.781388189505492 ], [ -95.718907093246145, 29.781268189128511 ], [ -95.718898093681446, 29.780951189771013 ], [ -95.718891092989679, 29.78039618970816 ], [ -95.718893093249605, 29.780317189663037 ], [ -95.71888909377536, 29.780235189679356 ], [ -95.71889109338683, 29.780152189372224 ], [ -95.718899093653619, 29.78007318908346 ], [ -95.718887093676159, 29.779909189536848 ], [ -95.718893093067067, 29.779839189546713 ], [ -95.718885092963944, 29.779677188744508 ], [ -95.718883093123296, 29.778760188635541 ], [ -95.718883093127715, 29.778738189097851 ], [ -95.718877093027814, 29.778413189333193 ], [ -95.718881093021338, 29.778358189122653 ], [ -95.718874093575252, 29.778239189201301 ], [ -95.718877093649326, 29.778178188511699 ], [ -95.718873092825049, 29.777926188859674 ], [ -95.718871093385786, 29.777681188972544 ], [ -95.718859093764351, 29.777604188334397 ], [ -95.718874093144208, 29.777525188752868 ], [ -95.718863093352397, 29.777444188875528 ], [ -95.7188610935968, 29.77736618837972 ], [ -95.718868093423055, 29.777121188536373 ], [ -95.718891092880128, 29.777038188689954 ], [ -95.718885093796501, 29.776954188289501 ], [ -95.718867093367393, 29.776866188975518 ], [ -95.718870093111548, 29.776699188944413 ], [ -95.71886609279683, 29.776606188172462 ], [ -95.718866092873895, 29.776344188256726 ], [ -95.71886709361975, 29.776080188326063 ], [ -95.718860093311008, 29.775874188335298 ], [ -95.718862093682858, 29.775456187955076 ], [ -95.718858093249693, 29.77532118815116 ], [ -95.718856092859923, 29.775250188025673 ], [ -95.718749092805169, 29.775254187964279 ], [ -95.718725092788858, 29.775255188020985 ], [ -95.717994092566215, 29.775260188487135 ], [ -95.717715093246355, 29.77526318871498 ], [ -95.717459092440947, 29.775265188376935 ], [ -95.717333092968218, 29.775266188294456 ], [ -95.716875092433554, 29.775274188299282 ], [ -95.716631092451138, 29.775290187897063 ], [ -95.716289092457529, 29.775325188049422 ], [ -95.71602809272575, 29.775364188478022 ], [ -95.715730092568933, 29.775422188189591 ], [ -95.715480092788937, 29.775482188562858 ], [ -95.715277092137114, 29.775535188227359 ], [ -95.713719091491143, 29.775990188442076 ], [ -95.712732092051084, 29.776278188295461 ], [ -95.712541091166244, 29.776336188787276 ], [ -95.71161709176279, 29.776598188916463 ], [ -95.711527091294556, 29.7766241891389 ], [ -95.711178091730631, 29.776713188593302 ], [ -95.710919090775349, 29.776767188578912 ], [ -95.710651090852309, 29.776812188674594 ], [ -95.710269091336386, 29.776860189206253 ], [ -95.709969091255658, 29.776885189166077 ], [ -95.709691091105569, 29.7768951887562 ], [ -95.709548091324265, 29.776896189167974 ], [ -95.708982090517409, 29.776870189345768 ], [ -95.708811091100713, 29.776852188887482 ], [ -95.708688091180122, 29.776835189151743 ], [ -95.707955090688841, 29.776708188582436 ], [ -95.707907090829437, 29.776699188658256 ], [ -95.707509089959217, 29.776595189194126 ], [ -95.707194090676253, 29.776492188911394 ], [ -95.706072090463962, 29.776076188679241 ], [ -95.70596508994312, 29.776037189182791 ], [ -95.705691090104949, 29.775937188564626 ], [ -95.705378089626734, 29.775828188413726 ], [ -95.705057090204704, 29.775732188471846 ], [ -95.704699089610486, 29.775643189150262 ], [ -95.704435089355499, 29.775583188875238 ], [ -95.704097089458671, 29.775505188532676 ], [ -95.703894089495932, 29.775464188426678 ], [ -95.703573089499898, 29.775414188768842 ], [ -95.70336108969714, 29.775390188736367 ], [ -95.703054089524898, 29.775365189040496 ], [ -95.702749088965504, 29.77535418911263 ], [ -95.70215408866288, 29.775353188518359 ], [ -95.702013088832217, 29.775353188468603 ], [ -95.701873088699003, 29.7753521884358 ], [ -95.701048088935593, 29.775353189332186 ], [ -95.700555088926862, 29.775365188503439 ], [ -95.700234088848077, 29.775381188798434 ], [ -95.699964088702501, 29.775406189202599 ], [ -95.699487088755262, 29.775479188959988 ], [ -95.69920908781053, 29.775535188751501 ], [ -95.698743087598288, 29.775651188888624 ], [ -95.698282087950204, 29.775766188702772 ], [ -95.698061088260729, 29.775811188826147 ], [ -95.697895087602376, 29.775840188726679 ], [ -95.69763808770081, 29.775875189553279 ], [ -95.6973730872743, 29.775902188969503 ], [ -95.696960087348387, 29.77592018903065 ], [ -95.696117086902831, 29.775927189424479 ], [ -95.695532087563635, 29.775928189572252 ], [ -95.695437087587493, 29.775930189585306 ], [ -95.694989087147022, 29.77593418883508 ], [ -95.693791086843561, 29.775942189495268 ], [ -95.69373208661294, 29.775944189123678 ], [ -95.693219087133954, 29.775961189166303 ], [ -95.692937086796789, 29.775986188999358 ], [ -95.692657086124484, 29.776023189666631 ], [ -95.692265086459329, 29.77609318891345 ], [ -95.692239086530734, 29.776098189309455 ], [ -95.69193108667028, 29.77617118947547 ], [ -95.691905086373396, 29.776177188964109 ], [ -95.691878086240678, 29.776184189109525 ], [ -95.691728086139889, 29.776220189638085 ], [ -95.69157608601401, 29.776256189369693 ], [ -95.691322086134178, 29.776305189093172 ], [ -95.690953086230508, 29.776361189072912 ], [ -95.6905830865486, 29.776400189271559 ], [ -95.690333085963616, 29.776415189691935 ], [ -95.689626085306941, 29.776427189285531 ], [ -95.689317085956162, 29.776441189963229 ], [ -95.688956085776312, 29.776474189159419 ], [ -95.688645085056336, 29.776520189797328 ], [ -95.688421085150011, 29.776564189325118 ], [ -95.688333085892481, 29.776589189201449 ], [ -95.68828808504459, 29.776598189860628 ], [ -95.688118085366497, 29.776624189744872 ], [ -95.688209085716267, 29.777037189682385 ], [ -95.688241085832288, 29.777226190124782 ], [ -95.688260085367673, 29.777424189441614 ], [ -95.688261085526193, 29.777472189477223 ], [ -95.688267085556419, 29.777689190190319 ], [ -95.688276085953007, 29.778116190082905 ], [ -95.688280086055414, 29.778603189616963 ], [ -95.688284085727261, 29.779644189870957 ], [ -95.688292085939722, 29.780773190833582 ], [ -95.688291085990457, 29.780879190464368 ], [ -95.688287085748684, 29.781283190298804 ], [ -95.688286086036143, 29.781446190166044 ], [ -95.688280085194165, 29.782087190798645 ], [ -95.688279085699932, 29.782197190670999 ], [ -95.68828308569644, 29.782399191198561 ], [ -95.688279086034697, 29.782707190733191 ], [ -95.688404085859318, 29.782709190686457 ], [ -95.688398086029395, 29.782913190645896 ], [ -95.688389085963038, 29.78302419055083 ], [ -95.688356085340089, 29.783407190658291 ], [ -95.688350086319176, 29.784241191236244 ], [ -95.688351086088858, 29.784369191093479 ], [ -95.688353085686842, 29.784533190974233 ], [ -95.688355085669784, 29.784717191287776 ], [ -95.688355085626299, 29.784767191010335 ], [ -95.688358085340539, 29.785045191584743 ], [ -95.688504086274278, 29.785040191696989 ], [ -95.688618086296913, 29.785038191029326 ], [ -95.689701086527052, 29.785031191033031 ], [ -95.69067908610549, 29.785038191164741 ], [ -95.690957086175516, 29.785038191373133 ], [ -95.694877087897623, 29.7851351914973 ], [ -95.695297087641933, 29.785154191438423 ], [ -95.698338088844736, 29.785218190744608 ], [ -95.698864088350518, 29.78523219072763 ], [ -95.700035088440316, 29.785242190624256 ], [ -95.701972089836332, 29.7852711909402 ], [ -95.702753089529054, 29.785270191233874 ], [ -95.703842089854277, 29.785272190840683 ], [ -95.705148089728866, 29.785257190600053 ], [ -95.705871090098839, 29.785254191006306 ], [ -95.706140090826523, 29.785254190367613 ], [ -95.70634909031233, 29.785254190529212 ], [ -95.707245090385754, 29.785254190738218 ], [ -95.710208091896078, 29.785193190905414 ], [ -95.714069092545202, 29.785242190120723 ], [ -95.716815093118569, 29.7852141905901 ], [ -95.717386093286521, 29.78519318998935 ], [ -95.718423093335133, 29.785179190293643 ], [ -95.718746093311381, 29.785183190533115 ], [ -95.718939093295731, 29.785183190073596 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 130, "Tract": "48201311702", "Area_SqMi": 0.42805556683580853, "total_2009": 1725, "total_2010": 1900, "total_2011": 1940, "total_2012": 1977, "total_2013": 1986, "total_2014": 2057, "total_2015": 2241, "total_2016": 2450, "total_2017": 2464, "total_2018": 2221, "total_2019": 1964, "total_2020": 1902, "age1": 723, "age2": 757, "age3": 321, "earn1": 524, "earn2": 672, "earn3": 605, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 49, "naics_s05": 10, "naics_s06": 172, "naics_s07": 894, "naics_s08": 2, "naics_s09": 11, "naics_s10": 62, "naics_s11": 7, "naics_s12": 61, "naics_s13": 0, "naics_s14": 123, "naics_s15": 12, "naics_s16": 59, "naics_s17": 0, "naics_s18": 300, "naics_s19": 39, "naics_s20": 0, "race1": 1315, "race2": 323, "race3": 16, "race4": 109, "race5": 2, "race6": 36, "ethnicity1": 1001, "ethnicity2": 800, "edu1": 256, "edu2": 292, "edu3": 310, "edu4": 220, "Shape_Length": 16600.991528171715, "Shape_Area": 11933456.578957746, "total_2021": 1982, "total_2022": 1801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.308980985295193, 29.706337187961434 ], [ -95.308521985334565, 29.706088187679626 ], [ -95.308400984804862, 29.706015187726614 ], [ -95.308157984680491, 29.705832188261837 ], [ -95.307574985399782, 29.705407188035895 ], [ -95.306842985144584, 29.704840187579681 ], [ -95.306343984835792, 29.704466187641923 ], [ -95.305225984379462, 29.703587187396362 ], [ -95.304362984303381, 29.702752187133026 ], [ -95.303525983823647, 29.70153818708317 ], [ -95.302801983327953, 29.700443187218184 ], [ -95.30215898302184, 29.699468187225513 ], [ -95.301754983337887, 29.698817186509928 ], [ -95.30164098324299, 29.698634186334324 ], [ -95.301508982537328, 29.698384187106001 ], [ -95.30087698271268, 29.696972186561506 ], [ -95.300736983263121, 29.696706186217735 ], [ -95.300614983139923, 29.696439186272613 ], [ -95.300546982932687, 29.696235186146914 ], [ -95.300523982561245, 29.696193186340551 ], [ -95.300390982406057, 29.695877186122413 ], [ -95.299844982173042, 29.695826186087189 ], [ -95.298456981732969, 29.695696185819667 ], [ -95.298053981546659, 29.695653186196825 ], [ -95.297864982013579, 29.695633186537382 ], [ -95.297625981814079, 29.695607185938393 ], [ -95.29673398153497, 29.695535186076437 ], [ -95.296109981846755, 29.695534186019088 ], [ -95.295396981304691, 29.695544186397104 ], [ -95.295298981100245, 29.695557186620242 ], [ -95.29469598160189, 29.695651186158173 ], [ -95.293791980681348, 29.695926186594544 ], [ -95.292835981046096, 29.696277186901259 ], [ -95.292655980362326, 29.696343186510834 ], [ -95.292436980200719, 29.696413186490307 ], [ -95.292221981014379, 29.696483186772852 ], [ -95.291967980074972, 29.696565186861648 ], [ -95.291806980900787, 29.696616186872969 ], [ -95.291548980465521, 29.696695186784787 ], [ -95.29104498068763, 29.696815187056071 ], [ -95.290264979634529, 29.697054186689204 ], [ -95.289975979748618, 29.697131186520455 ], [ -95.289319980088962, 29.697306187164624 ], [ -95.288919979401626, 29.697413186501514 ], [ -95.288761979405564, 29.697448187119299 ], [ -95.288738979449619, 29.697454187244343 ], [ -95.28897497992925, 29.697638187132377 ], [ -95.289109980254594, 29.697744187253249 ], [ -95.289556980244015, 29.698147187042078 ], [ -95.290125980222925, 29.698610187084224 ], [ -95.291189979986811, 29.699392187407611 ], [ -95.291309980630501, 29.699480186903916 ], [ -95.29153698077981, 29.699632187395366 ], [ -95.293030981245536, 29.700572187045552 ], [ -95.293597980816827, 29.700930187875535 ], [ -95.295324981616019, 29.702044188016309 ], [ -95.295459981672707, 29.702131187579141 ], [ -95.29561398211105, 29.702231187887381 ], [ -95.297519982155478, 29.703460188066359 ], [ -95.297798982458701, 29.703634188340924 ], [ -95.299200982202066, 29.704511188340284 ], [ -95.301137982870799, 29.705769188146665 ], [ -95.301560983311731, 29.706044188156223 ], [ -95.302034983918375, 29.706373187912213 ], [ -95.302296983259666, 29.706555188730967 ], [ -95.304325984511536, 29.707909188201747 ], [ -95.30500098466517, 29.708359188850959 ], [ -95.305106984801114, 29.708430188321454 ], [ -95.305221984728192, 29.708360188617039 ], [ -95.305335984503614, 29.708298188890659 ], [ -95.305440984855167, 29.708239188698712 ], [ -95.3059859841226, 29.707926188659577 ], [ -95.30689698504591, 29.707404188744309 ], [ -95.308980985295193, 29.706337187961434 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 131, "Tract": "48201221502", "Area_SqMi": 0.20134898323472947, "total_2009": 572, "total_2010": 594, "total_2011": 473, "total_2012": 582, "total_2013": 601, "total_2014": 535, "total_2015": 550, "total_2016": 464, "total_2017": 436, "total_2018": 275, "total_2019": 226, "total_2020": 270, "age1": 54, "age2": 117, "age3": 45, "earn1": 34, "earn2": 49, "earn3": 133, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 48, "naics_s05": 16, "naics_s06": 8, "naics_s07": 54, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 9, "naics_s12": 17, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 28, "naics_s17": 0, "naics_s18": 18, "naics_s19": 1, "naics_s20": 0, "race1": 173, "race2": 23, "race3": 3, "race4": 12, "race5": 0, "race6": 5, "ethnicity1": 93, "ethnicity2": 123, "edu1": 41, "edu2": 46, "edu3": 45, "edu4": 30, "Shape_Length": 9785.1871451536535, "Shape_Area": 5613265.0403553462, "total_2021": 228, "total_2022": 216 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.407930018077266, 29.869871218485002 ], [ -95.407838017930914, 29.869690217786733 ], [ -95.406823018083458, 29.867668217457904 ], [ -95.406397016936964, 29.866855217803938 ], [ -95.405400016802574, 29.864922217369649 ], [ -95.405068017125586, 29.864270216841962 ], [ -95.404920016811033, 29.864268217113668 ], [ -95.404789017037416, 29.864264216823734 ], [ -95.404531016745722, 29.864259216890485 ], [ -95.403286016419131, 29.864257216767207 ], [ -95.40325601614002, 29.864257217489982 ], [ -95.403006016093897, 29.864261217153416 ], [ -95.402525016187283, 29.864267217151621 ], [ -95.399267015511029, 29.864310217403521 ], [ -95.397813015284271, 29.864323217255873 ], [ -95.397740014608871, 29.864324217466798 ], [ -95.397737015489611, 29.864717217795111 ], [ -95.397749015260331, 29.865309217907843 ], [ -95.397833015149715, 29.869589218479192 ], [ -95.39783501561223, 29.86991321814191 ], [ -95.39880401531974, 29.869902218218112 ], [ -95.399719016226911, 29.86989321821812 ], [ -95.400635016596254, 29.869880218487779 ], [ -95.400820016448634, 29.869875218149609 ], [ -95.401212015745244, 29.869872218288204 ], [ -95.401452016618151, 29.869872218291164 ], [ -95.401737016735524, 29.86987221810741 ], [ -95.402554016159229, 29.86986621863679 ], [ -95.402622016362429, 29.869865218804453 ], [ -95.403773016930757, 29.869853218227419 ], [ -95.404146017314304, 29.869855218234253 ], [ -95.40467501682177, 29.869850218404991 ], [ -95.405141017132522, 29.869848218286609 ], [ -95.405500017080016, 29.869839218108591 ], [ -95.406496017785656, 29.869832217789789 ], [ -95.407408017906604, 29.869856217779954 ], [ -95.40762901795884, 29.869862218449605 ], [ -95.407800017740186, 29.869867218313509 ], [ -95.407930018077266, 29.869871218485002 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 132, "Tract": "48201411302", "Area_SqMi": 0.20990028823786303, "total_2009": 3470, "total_2010": 3321, "total_2011": 3514, "total_2012": 4131, "total_2013": 4355, "total_2014": 3698, "total_2015": 2702, "total_2016": 2362, "total_2017": 4413, "total_2018": 5194, "total_2019": 5205, "total_2020": 5091, "age1": 1195, "age2": 2684, "age3": 929, "earn1": 736, "earn2": 1406, "earn3": 2666, "naics_s01": 3, "naics_s02": 457, "naics_s03": 125, "naics_s04": 14, "naics_s05": 8, "naics_s06": 133, "naics_s07": 570, "naics_s08": 4, "naics_s09": 115, "naics_s10": 413, "naics_s11": 437, "naics_s12": 713, "naics_s13": 3, "naics_s14": 315, "naics_s15": 4, "naics_s16": 185, "naics_s17": 102, "naics_s18": 1043, "naics_s19": 163, "naics_s20": 1, "race1": 3411, "race2": 902, "race3": 43, "race4": 361, "race5": 9, "race6": 82, "ethnicity1": 3361, "ethnicity2": 1447, "edu1": 645, "edu2": 931, "edu3": 1099, "edu4": 938, "Shape_Length": 10349.381713252109, "Shape_Area": 5851660.7881379249, "total_2021": 4295, "total_2022": 4808 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.458283024699739, 29.741076190192228 ], [ -95.458314025409564, 29.740948189788948 ], [ -95.458098024835337, 29.740962190564186 ], [ -95.457749025021471, 29.740984190523214 ], [ -95.457729025215855, 29.741083189771647 ], [ -95.455688024126346, 29.741189190446367 ], [ -95.454597023843647, 29.741247190339884 ], [ -95.453937023769498, 29.741289190139682 ], [ -95.45344602432499, 29.741323190536804 ], [ -95.452622023556529, 29.741383190137725 ], [ -95.451725023736955, 29.741434190775728 ], [ -95.45093902325894, 29.741491190478374 ], [ -95.450150022898441, 29.741528190890595 ], [ -95.448273022152932, 29.741629190343787 ], [ -95.448166022627262, 29.741635190607202 ], [ -95.448218022846262, 29.744081190850963 ], [ -95.448263023217507, 29.746662192084937 ], [ -95.448390022521423, 29.746658191300146 ], [ -95.448578023348361, 29.746652191377837 ], [ -95.449794023511714, 29.746658191385951 ], [ -95.449987023475543, 29.746666191189508 ], [ -95.45065102335748, 29.746662191130575 ], [ -95.450731023238191, 29.74666219193271 ], [ -95.451871023759878, 29.746675191661023 ], [ -95.452762023508427, 29.746673191085975 ], [ -95.453806024451197, 29.746657191287916 ], [ -95.453944024077643, 29.746648191389774 ], [ -95.454442024487221, 29.746633191357724 ], [ -95.454930024017784, 29.746745191254181 ], [ -95.455047024545351, 29.746812191015515 ], [ -95.455273024954906, 29.746890191182434 ], [ -95.45553902486742, 29.746995191310347 ], [ -95.455735025001488, 29.747096191748149 ], [ -95.455926024742823, 29.747191191490369 ], [ -95.45612602443461, 29.74729419178928 ], [ -95.456337025368612, 29.747435191826529 ], [ -95.456422025179194, 29.747523191654185 ], [ -95.456598025450063, 29.747677191599152 ], [ -95.456645024905242, 29.747487191221619 ], [ -95.456683024605326, 29.747334191602171 ], [ -95.457253024970882, 29.745271191125248 ], [ -95.45753402555107, 29.744129190845015 ], [ -95.458041024750258, 29.742061190372599 ], [ -95.458239024950799, 29.741253190317209 ], [ -95.458283024699739, 29.741076190192228 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 133, "Tract": "48201521502", "Area_SqMi": 0.59366259109690467, "total_2009": 367, "total_2010": 271, "total_2011": 301, "total_2012": 340, "total_2013": 352, "total_2014": 345, "total_2015": 374, "total_2016": 324, "total_2017": 313, "total_2018": 303, "total_2019": 323, "total_2020": 327, "age1": 62, "age2": 207, "age3": 100, "earn1": 58, "earn2": 87, "earn3": 224, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 85, "naics_s05": 102, "naics_s06": 25, "naics_s07": 12, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 2, "naics_s12": 21, "naics_s13": 0, "naics_s14": 2, "naics_s15": 29, "naics_s16": 29, "naics_s17": 12, "naics_s18": 29, "naics_s19": 17, "naics_s20": 0, "race1": 282, "race2": 20, "race3": 4, "race4": 59, "race5": 1, "race6": 3, "ethnicity1": 264, "ethnicity2": 105, "edu1": 66, "edu2": 82, "edu3": 85, "edu4": 74, "Shape_Length": 19431.008042201316, "Shape_Area": 16550296.97610235, "total_2021": 300, "total_2022": 369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.526398046402221, 29.832524206499773 ], [ -95.526382046105354, 29.831031206509124 ], [ -95.526376046257212, 29.83045220647422 ], [ -95.525389046167319, 29.830473206308959 ], [ -95.523625045431984, 29.830482206222623 ], [ -95.523618045378967, 29.829690205582132 ], [ -95.523604045868069, 29.829443205653096 ], [ -95.523571045896361, 29.829209206255577 ], [ -95.52354004614142, 29.829045205732516 ], [ -95.523484045936939, 29.828841205826553 ], [ -95.523462046135478, 29.828724205659203 ], [ -95.523332045341576, 29.828494205347514 ], [ -95.522996045746382, 29.827792205406052 ], [ -95.522797045039496, 29.827199205757584 ], [ -95.522694045234374, 29.826479205463542 ], [ -95.522659044853, 29.825399205377678 ], [ -95.522667045459201, 29.824904204713135 ], [ -95.520574044711154, 29.824961205333413 ], [ -95.52001804452442, 29.824961205631357 ], [ -95.519401044192364, 29.824977204936339 ], [ -95.519021044209993, 29.824981205452506 ], [ -95.518163044628807, 29.824989205701289 ], [ -95.517201044387406, 29.824999205392757 ], [ -95.516539044127555, 29.825013204929839 ], [ -95.516529043708701, 29.8244292049358 ], [ -95.517330043985723, 29.824421205157243 ], [ -95.517429043946848, 29.824374204878495 ], [ -95.517458044073777, 29.824276204779736 ], [ -95.517456044159744, 29.824184205242041 ], [ -95.517463044036205, 29.823809205127553 ], [ -95.517451043836473, 29.82292320486248 ], [ -95.517438043889271, 29.822062204311532 ], [ -95.517409044160985, 29.821134204688089 ], [ -95.516917043999584, 29.821086204597943 ], [ -95.516863043376773, 29.821081204862335 ], [ -95.516497043470707, 29.821061204451844 ], [ -95.516246043263891, 29.821054204691048 ], [ -95.515057043320311, 29.821068204186606 ], [ -95.514228043238901, 29.821087204838804 ], [ -95.513935043139938, 29.821094204212915 ], [ -95.513052042740924, 29.821113204393196 ], [ -95.511334042392804, 29.821119204614281 ], [ -95.510867042279386, 29.8211272047024 ], [ -95.509633041506902, 29.8211462050464 ], [ -95.509644041802417, 29.821604205212374 ], [ -95.509606042193624, 29.822056204564067 ], [ -95.509506041617627, 29.822475204923226 ], [ -95.50930504200204, 29.822993205120572 ], [ -95.509249041397069, 29.823223205353472 ], [ -95.509205042238889, 29.823401205018893 ], [ -95.509196041654263, 29.823896205135522 ], [ -95.509195042168912, 29.823928205773967 ], [ -95.509206042240905, 29.825056205492388 ], [ -95.509210041602515, 29.825483205796637 ], [ -95.509212042342639, 29.825588206023031 ], [ -95.509225041795645, 29.826715205670425 ], [ -95.509238041620833, 29.827342206176773 ], [ -95.50924304243506, 29.82751120591082 ], [ -95.50924704214269, 29.827617205856662 ], [ -95.509278041886148, 29.829341206670716 ], [ -95.509302042528006, 29.830317206744802 ], [ -95.509338042648039, 29.832177206870117 ], [ -95.509330042550346, 29.832716207120065 ], [ -95.509498042085312, 29.832713206756676 ], [ -95.51015304233232, 29.832714207082095 ], [ -95.510944042625624, 29.832708206644451 ], [ -95.511744043381555, 29.832697206830687 ], [ -95.512328042977998, 29.832693206675668 ], [ -95.512988043466294, 29.832681207328157 ], [ -95.51335104325085, 29.832674206885301 ], [ -95.514182043056792, 29.832676207299411 ], [ -95.515550044125092, 29.832639206513942 ], [ -95.51598004419229, 29.832653207106432 ], [ -95.517020044317874, 29.832633206646921 ], [ -95.517755044643977, 29.832619206405393 ], [ -95.519002045159795, 29.832600207146207 ], [ -95.520272044937471, 29.83258220652203 ], [ -95.521541045209901, 29.832574206807397 ], [ -95.5220200459094, 29.83257620694215 ], [ -95.522954045848195, 29.832556206610665 ], [ -95.523628046014821, 29.832541206286894 ], [ -95.525180046415201, 29.832540206997407 ], [ -95.526398046402221, 29.832524206499773 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 134, "Tract": "48201551602", "Area_SqMi": 0.65071097008101175, "total_2009": 507, "total_2010": 511, "total_2011": 525, "total_2012": 461, "total_2013": 488, "total_2014": 474, "total_2015": 536, "total_2016": 575, "total_2017": 561, "total_2018": 743, "total_2019": 776, "total_2020": 753, "age1": 126, "age2": 444, "age3": 156, "earn1": 139, "earn2": 279, "earn3": 308, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 14, "naics_s05": 119, "naics_s06": 92, "naics_s07": 12, "naics_s08": 2, "naics_s09": 0, "naics_s10": 72, "naics_s11": 13, "naics_s12": 19, "naics_s13": 3, "naics_s14": 10, "naics_s15": 14, "naics_s16": 316, "naics_s17": 4, "naics_s18": 27, "naics_s19": 8, "naics_s20": 0, "race1": 408, "race2": 239, "race3": 7, "race4": 64, "race5": 0, "race6": 8, "ethnicity1": 496, "ethnicity2": 230, "edu1": 155, "edu2": 145, "edu3": 160, "edu4": 140, "Shape_Length": 18530.759054777442, "Shape_Area": 18140708.142902803, "total_2021": 689, "total_2022": 726 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.584803066212174, 29.932993225386724 ], [ -95.584801066041024, 29.932138225244405 ], [ -95.584781065740344, 29.930518224813323 ], [ -95.584781065943261, 29.930490224407716 ], [ -95.584779065851563, 29.930287224462575 ], [ -95.584772065899244, 29.929518224047907 ], [ -95.584772065516376, 29.929486224331683 ], [ -95.584772065629537, 29.929439223918834 ], [ -95.584753066011999, 29.927454223676239 ], [ -95.584775066184733, 29.927353223520726 ], [ -95.584744065955618, 29.92655222389152 ], [ -95.58473906532376, 29.926118223714479 ], [ -95.584722065485124, 29.924625223108201 ], [ -95.583414065055393, 29.92464022341083 ], [ -95.582932065246425, 29.92464522326874 ], [ -95.5823150650061, 29.924646223489635 ], [ -95.581635064431083, 29.92465322328648 ], [ -95.581087064846486, 29.924645223704864 ], [ -95.580693064978263, 29.924618223366505 ], [ -95.580207064436578, 29.924556223702879 ], [ -95.579575064697195, 29.924470223724164 ], [ -95.579230064627865, 29.924434223528838 ], [ -95.579027064506661, 29.924420223502722 ], [ -95.578855064443445, 29.924413223018469 ], [ -95.578595063942871, 29.924411223213365 ], [ -95.577775063940294, 29.924427223781787 ], [ -95.577008063212119, 29.924441223321235 ], [ -95.576814063536744, 29.924454223399977 ], [ -95.576546063726255, 29.924479223681104 ], [ -95.576205063644778, 29.924527223616462 ], [ -95.575935063009652, 29.924578223520733 ], [ -95.575798063086808, 29.924614223339724 ], [ -95.575661063304281, 29.92464522367143 ], [ -95.575390063328015, 29.924720223497438 ], [ -95.575122062993387, 29.92480322391814 ], [ -95.574862063406385, 29.924895223554916 ], [ -95.57473806366049, 29.924948223676669 ], [ -95.574615063363652, 29.924993223510064 ], [ -95.574499063314732, 29.925051223842789 ], [ -95.574387063413042, 29.925099223664436 ], [ -95.574176062896427, 29.925204224035301 ], [ -95.573980063340954, 29.925314223640729 ], [ -95.573574062398052, 29.925561224288511 ], [ -95.573433062401008, 29.925657223795046 ], [ -95.573151062579655, 29.925868224257819 ], [ -95.572882062379009, 29.926092223676985 ], [ -95.572695062312988, 29.926239223880145 ], [ -95.572601062889504, 29.926312223745125 ], [ -95.572368062377961, 29.926474223907089 ], [ -95.572052062082861, 29.926676224387396 ], [ -95.571832062979198, 29.926801224341173 ], [ -95.571492062576084, 29.92697422462798 ], [ -95.571129062099345, 29.927136224439931 ], [ -95.570992062618345, 29.927181224442908 ], [ -95.570854062097212, 29.927238224624201 ], [ -95.570571062099106, 29.927328224125663 ], [ -95.570290062447555, 29.927406224795142 ], [ -95.570013061630917, 29.927471224408897 ], [ -95.569749062187782, 29.927523224704462 ], [ -95.569390061708461, 29.927581224687994 ], [ -95.569191062217698, 29.927602224637109 ], [ -95.568920061921105, 29.927620224034587 ], [ -95.568394061839456, 29.927633224712885 ], [ -95.568116061716694, 29.927628224660573 ], [ -95.567843061551358, 29.927611224894491 ], [ -95.567603061040217, 29.927585224053527 ], [ -95.567393061277727, 29.927554224354672 ], [ -95.56730506098198, 29.927541224216871 ], [ -95.567216061373585, 29.927525224481489 ], [ -95.56700006092926, 29.927487224670077 ], [ -95.566770061097046, 29.927435224020677 ], [ -95.566308061471204, 29.927310224310084 ], [ -95.566249061260407, 29.927290224849216 ], [ -95.56601306079925, 29.927208224838459 ], [ -95.565894060839483, 29.927166224314838 ], [ -95.565865060817288, 29.927225224681585 ], [ -95.56585806118558, 29.927240224196211 ], [ -95.565704060445924, 29.927551224829561 ], [ -95.565599060762466, 29.927763224681797 ], [ -95.565549060745838, 29.927866224297897 ], [ -95.564981061325099, 29.929049224711036 ], [ -95.564861061137577, 29.92932322511512 ], [ -95.564766060834444, 29.929594225127527 ], [ -95.56472606104154, 29.929718225111664 ], [ -95.564644060964497, 29.93000822476559 ], [ -95.564582060943565, 29.930301225524495 ], [ -95.56454406093539, 29.930572225592385 ], [ -95.56451806120964, 29.930926225679233 ], [ -95.564515060574877, 29.931379225582866 ], [ -95.564517060728562, 29.931690225140123 ], [ -95.56452106126639, 29.932011225832234 ], [ -95.564523060883474, 29.933698226184351 ], [ -95.565052060956589, 29.93369822615054 ], [ -95.565449061169645, 29.933694225765564 ], [ -95.565581061427608, 29.933688226244072 ], [ -95.565786061229034, 29.933691225430938 ], [ -95.565998061182114, 29.933688226175139 ], [ -95.567838061332012, 29.933671225287778 ], [ -95.568114061470567, 29.933672225598745 ], [ -95.568176061601392, 29.933665225428101 ], [ -95.568496062373143, 29.933664226055448 ], [ -95.571552062214607, 29.933655225647794 ], [ -95.571799062881865, 29.933655225899368 ], [ -95.572129063215812, 29.93365422594195 ], [ -95.572488063163391, 29.933649225338549 ], [ -95.572578062749159, 29.933648225330739 ], [ -95.572774062769255, 29.933646225698933 ], [ -95.572882062700799, 29.933646225702521 ], [ -95.573217062869858, 29.933645225264012 ], [ -95.573607063450325, 29.933644225308257 ], [ -95.57385706339295, 29.933643225175409 ], [ -95.574087063044885, 29.93364322504026 ], [ -95.57474306320438, 29.933641225617592 ], [ -95.575228064095029, 29.933639225188145 ], [ -95.575371063566621, 29.933639225299306 ], [ -95.575626063293612, 29.933638225776587 ], [ -95.575876063650213, 29.933638225554368 ], [ -95.576176063420561, 29.933638225739664 ], [ -95.577273064260751, 29.933634225273728 ], [ -95.577649063923175, 29.933632225687578 ], [ -95.577931064667126, 29.933630225083284 ], [ -95.578465064291109, 29.933626225468512 ], [ -95.578776064161929, 29.933625224896712 ], [ -95.579014064847811, 29.933624225241086 ], [ -95.579047064458749, 29.933624225037377 ], [ -95.579071064151051, 29.933624225622015 ], [ -95.579162064544974, 29.933623225046816 ], [ -95.579296064900632, 29.933628225647311 ], [ -95.579690065201547, 29.933621225729176 ], [ -95.580146064444691, 29.933617224835679 ], [ -95.58084406508577, 29.933617225066396 ], [ -95.581394065393525, 29.933612225091547 ], [ -95.582301065340602, 29.93360922485903 ], [ -95.582350065222599, 29.933618225480096 ], [ -95.582683065462149, 29.933617225424232 ], [ -95.582709065621572, 29.93362122502495 ], [ -95.582740065687517, 29.933625225544795 ], [ -95.582814065760019, 29.933646224868554 ], [ -95.582872065575756, 29.933676225223302 ], [ -95.582917065141785, 29.933715225376272 ], [ -95.582947065801676, 29.933757225632089 ], [ -95.582967066142132, 29.933816224822802 ], [ -95.582969065527251, 29.933891225031928 ], [ -95.582958065821472, 29.933964225491419 ], [ -95.582940065745987, 29.934046225069032 ], [ -95.582892065303824, 29.934132225617944 ], [ -95.583724066228598, 29.933628224821213 ], [ -95.584247065974523, 29.933334224817479 ], [ -95.584803066212174, 29.932993225386724 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 135, "Tract": "48201250202", "Area_SqMi": 0.5258144379243519, "total_2009": 84, "total_2010": 97, "total_2011": 102, "total_2012": 89, "total_2013": 92, "total_2014": 90, "total_2015": 101, "total_2016": 111, "total_2017": 157, "total_2018": 176, "total_2019": 206, "total_2020": 179, "age1": 54, "age2": 83, "age3": 50, "earn1": 60, "earn2": 98, "earn3": 29, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 4, "naics_s05": 1, "naics_s06": 0, "naics_s07": 0, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 1, "naics_s15": 55, "naics_s16": 27, "naics_s17": 0, "naics_s18": 79, "naics_s19": 10, "naics_s20": 0, "race1": 126, "race2": 41, "race3": 1, "race4": 19, "race5": 0, "race6": 0, "ethnicity1": 134, "ethnicity2": 53, "edu1": 18, "edu2": 32, "edu3": 47, "edu4": 36, "Shape_Length": 18211.784297835027, "Shape_Area": 14658806.588926287, "total_2021": 177, "total_2022": 187 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.283191989138757, 29.94068423701755 ], [ -95.283335988777083, 29.940552237207591 ], [ -95.282908989606668, 29.940607237280158 ], [ -95.282083988495415, 29.940717236773917 ], [ -95.28123198830788, 29.940792237220617 ], [ -95.280578988775147, 29.940799237251909 ], [ -95.280125988112331, 29.940779237234441 ], [ -95.279596988531424, 29.940779236810847 ], [ -95.278819988311426, 29.940744237161969 ], [ -95.278001988362448, 29.940682237422656 ], [ -95.277225987225265, 29.940600236856671 ], [ -95.276558987297122, 29.940504236900487 ], [ -95.275681986914947, 29.940382237071635 ], [ -95.274668986918968, 29.940227237030609 ], [ -95.274117986617185, 29.940119237191642 ], [ -95.273984986770827, 29.940093236838987 ], [ -95.27346698699202, 29.939988237179954 ], [ -95.272897986721404, 29.939877236758015 ], [ -95.272226986054363, 29.939673237514739 ], [ -95.271519986530834, 29.939451237321819 ], [ -95.270960985973943, 29.939275237227385 ], [ -95.270720985651025, 29.939200237237142 ], [ -95.270210985493051, 29.93901523742602 ], [ -95.269331985595812, 29.938727237175698 ], [ -95.26895998531073, 29.93863023719911 ], [ -95.268733985144507, 29.938564236598438 ], [ -95.268527985317263, 29.938504237218243 ], [ -95.268322985493839, 29.93839823690714 ], [ -95.268299985519135, 29.938587237108727 ], [ -95.268267985627105, 29.938977237350663 ], [ -95.268270984856613, 29.939085236936023 ], [ -95.268291985408666, 29.939817237364831 ], [ -95.268290985065192, 29.939848236946137 ], [ -95.268292985554609, 29.939980237042572 ], [ -95.268331985301117, 29.94201623753321 ], [ -95.268291985558122, 29.942803238133735 ], [ -95.26819898500375, 29.943206237985088 ], [ -95.268112985365434, 29.943517237598385 ], [ -95.267974985454714, 29.943908238523704 ], [ -95.26782298557616, 29.944268237928842 ], [ -95.267700985214162, 29.944556238100095 ], [ -95.266796985242095, 29.946687239156706 ], [ -95.266660984936038, 29.947019238993068 ], [ -95.266546984961835, 29.947325238904263 ], [ -95.266477985191813, 29.947547238629483 ], [ -95.266418985356211, 29.947721238758678 ], [ -95.266374985465688, 29.947900238729176 ], [ -95.266313985084338, 29.948265239387855 ], [ -95.266285985058445, 29.948473239281132 ], [ -95.26626698525088, 29.948651239329575 ], [ -95.266254985624911, 29.949105239005529 ], [ -95.266283985361198, 29.950308239392594 ], [ -95.266301985095311, 29.951204239438038 ], [ -95.266319985749789, 29.952101240251054 ], [ -95.266340985663135, 29.9528532396156 ], [ -95.266326985739582, 29.95360024056475 ], [ -95.266548985037701, 29.95360724015654 ], [ -95.266794985921734, 29.953629239769128 ], [ -95.267053985849145, 29.953684239731089 ], [ -95.267192985997227, 29.953750240280868 ], [ -95.267375985598008, 29.953854240125452 ], [ -95.267546986258225, 29.953964239928318 ], [ -95.267678985952855, 29.954096240217908 ], [ -95.267923986192343, 29.95430324054799 ], [ -95.268178985469234, 29.95451724026093 ], [ -95.26969198603831, 29.953109239567645 ], [ -95.270184986423004, 29.952651239609008 ], [ -95.270992986977262, 29.951901239903773 ], [ -95.272226987330171, 29.950758239461159 ], [ -95.272297987286251, 29.950694238976425 ], [ -95.274103987038586, 29.949022238912907 ], [ -95.278563988692738, 29.944911238245336 ], [ -95.279114988040718, 29.944394238273546 ], [ -95.279520988863737, 29.944056238128162 ], [ -95.280011988166592, 29.943596237693534 ], [ -95.280669988586013, 29.942994237311652 ], [ -95.281681989160205, 29.942069237363551 ], [ -95.281752989097825, 29.942006237562303 ], [ -95.281794988992729, 29.941968237266277 ], [ -95.282303988691382, 29.941500237065561 ], [ -95.282511988814022, 29.941322236682076 ], [ -95.282794989041847, 29.941056236856081 ], [ -95.283191989138757, 29.94068423701755 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 136, "Tract": "48201241202", "Area_SqMi": 1.2666414163315185, "total_2009": 271, "total_2010": 190, "total_2011": 231, "total_2012": 145, "total_2013": 158, "total_2014": 143, "total_2015": 139, "total_2016": 102, "total_2017": 107, "total_2018": 183, "total_2019": 301, "total_2020": 262, "age1": 120, "age2": 118, "age3": 51, "earn1": 108, "earn2": 145, "earn3": 36, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 20, "naics_s05": 1, "naics_s06": 0, "naics_s07": 106, "naics_s08": 20, "naics_s09": 1, "naics_s10": 3, "naics_s11": 2, "naics_s12": 23, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 111, "naics_s19": 0, "naics_s20": 0, "race1": 191, "race2": 73, "race3": 1, "race4": 17, "race5": 2, "race6": 5, "ethnicity1": 181, "ethnicity2": 108, "edu1": 63, "edu2": 42, "edu3": 41, "edu4": 23, "Shape_Length": 42370.480393902217, "Shape_Area": 35311794.808872588, "total_2021": 286, "total_2022": 289 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.411698028632529, 30.072530259016698 ], [ -95.411706028441458, 30.072119258990757 ], [ -95.411686027810731, 30.071684259580941 ], [ -95.411543027783296, 30.071031259189645 ], [ -95.411368027871333, 30.070529258833432 ], [ -95.411055027501035, 30.069903258962828 ], [ -95.410640027524053, 30.069288258843873 ], [ -95.409371026988779, 30.067633258875691 ], [ -95.408085026846322, 30.065880258222581 ], [ -95.40798502696191, 30.065744257759704 ], [ -95.406824026859383, 30.064162257585757 ], [ -95.40659802675701, 30.063835258026714 ], [ -95.40639002631454, 30.063498257731421 ], [ -95.406219026669078, 30.063163257235967 ], [ -95.406046026332518, 30.062763257729941 ], [ -95.405908026552225, 30.062339257665997 ], [ -95.404929025575925, 30.058681257019582 ], [ -95.404580026102224, 30.057077256911544 ], [ -95.403592025405516, 30.052984255734859 ], [ -95.403574025553098, 30.052225255667324 ], [ -95.403617024881072, 30.051750254975406 ], [ -95.403655024970732, 30.051548255241531 ], [ -95.403709025478406, 30.05126925552706 ], [ -95.403714025301952, 30.051243255319584 ], [ -95.403832024737625, 30.050862255245359 ], [ -95.405246025121386, 30.047748254778238 ], [ -95.407430025472479, 30.04294225329188 ], [ -95.407460025433934, 30.042876253040522 ], [ -95.407554025575152, 30.042604253266799 ], [ -95.407600026261335, 30.042472253020517 ], [ -95.407676025882807, 30.042146253738629 ], [ -95.407710025258822, 30.04197225349975 ], [ -95.407743025334739, 30.041802252918679 ], [ -95.407774025683096, 30.041524253571978 ], [ -95.40778002571173, 30.041364252880921 ], [ -95.407791026086457, 30.041081252904355 ], [ -95.40778302591896, 30.040716253234411 ], [ -95.407710025961478, 30.040213253140184 ], [ -95.407703025806839, 30.040163252850519 ], [ -95.407652025419111, 30.039961253167679 ], [ -95.405920025174964, 30.033048251895956 ], [ -95.405456024688689, 30.031194251253492 ], [ -95.405438025169516, 30.031121251093545 ], [ -95.405243024882921, 30.031213251054471 ], [ -95.405078024902181, 30.031291251098946 ], [ -95.404526023926948, 30.031550251571847 ], [ -95.404419023963413, 30.031772251513754 ], [ -95.404393024328229, 30.032879251399368 ], [ -95.404342024558659, 30.033124251883894 ], [ -95.404264024197516, 30.033249251289288 ], [ -95.403521024308176, 30.033542251503366 ], [ -95.40235802362804, 30.033881251811909 ], [ -95.40110702378648, 30.034579251846285 ], [ -95.400747023572819, 30.034876252401901 ], [ -95.40056102401941, 30.035113252414845 ], [ -95.400339023599841, 30.035458252505048 ], [ -95.400157023991852, 30.035968252061981 ], [ -95.400001023163057, 30.036093252461157 ], [ -95.399737023457476, 30.036193252204239 ], [ -95.399285023210695, 30.036227252677651 ], [ -95.399081023574112, 30.036200252260631 ], [ -95.398859023630223, 30.036112252093883 ], [ -95.398711023323358, 30.03599225273015 ], [ -95.39864402322722, 30.035656252671686 ], [ -95.398128022633884, 30.035541252753813 ], [ -95.397531022579713, 30.035669252378991 ], [ -95.396974022243697, 30.035976251998541 ], [ -95.397041022654562, 30.036093252895963 ], [ -95.397136022828661, 30.03624225271172 ], [ -95.39721202229228, 30.036291252560751 ], [ -95.398803022876393, 30.038419252724854 ], [ -95.399239023886352, 30.039057252912446 ], [ -95.400117023321911, 30.040223252851316 ], [ -95.400370023649728, 30.040602253278308 ], [ -95.400559023826474, 30.040861253386453 ], [ -95.400850024430895, 30.041350253162818 ], [ -95.402517024375513, 30.043632253981336 ], [ -95.402592024957968, 30.04374225406681 ], [ -95.40235302424027, 30.043878254266332 ], [ -95.402013024280109, 30.044074253649271 ], [ -95.40182602433859, 30.044168253877906 ], [ -95.401767024599678, 30.044209254023958 ], [ -95.40135002465388, 30.044429253670966 ], [ -95.401276024272008, 30.044480254088203 ], [ -95.401180023939688, 30.044522254196146 ], [ -95.401014023719569, 30.044611254028428 ], [ -95.40077902361719, 30.044753254265313 ], [ -95.40061202449948, 30.044834254406652 ], [ -95.40047202351181, 30.044914254490358 ], [ -95.400170023711183, 30.045033253929223 ], [ -95.399832023862132, 30.04509325442833 ], [ -95.399348023979897, 30.045092254325304 ], [ -95.398879023519243, 30.045066254125526 ], [ -95.398525023747851, 30.045053254568238 ], [ -95.398261023966853, 30.045033254217937 ], [ -95.398170023896299, 30.045018254049175 ], [ -95.398085023357609, 30.045018253884319 ], [ -95.398001023798415, 30.045004254457954 ], [ -95.397932023696484, 30.045004254345795 ], [ -95.3974980234117, 30.044960254113573 ], [ -95.397414022843364, 30.044961254210111 ], [ -95.397322023569231, 30.04494125438022 ], [ -95.396978023320955, 30.044899254563525 ], [ -95.396815022781837, 30.044880254297137 ], [ -95.39654002285728, 30.044825254227717 ], [ -95.39646702294759, 30.044822254249695 ], [ -95.396302023028682, 30.044799254576922 ], [ -95.396183022940576, 30.04477125420998 ], [ -95.396072022917679, 30.044754254079432 ], [ -95.395596022831342, 30.044645254019755 ], [ -95.395269022907442, 30.044557254622681 ], [ -95.395152022870789, 30.044533253945847 ], [ -95.39456902262566, 30.044424254541479 ], [ -95.39441102293155, 30.044403254509582 ], [ -95.394178022514538, 30.044385253862568 ], [ -95.394097021910781, 30.044378254302092 ], [ -95.393635022092639, 30.044368253834815 ], [ -95.393216021735228, 30.044392254294063 ], [ -95.392904021914248, 30.044423253998762 ], [ -95.392594021736372, 30.044477254706415 ], [ -95.392527022302872, 30.044492254012304 ], [ -95.392465022347153, 30.044517254479594 ], [ -95.39229302221581, 30.044546254396042 ], [ -95.392329022285352, 30.044918254389231 ], [ -95.392364021467543, 30.045173254277 ], [ -95.392418022086034, 30.045463254427784 ], [ -95.392537021751664, 30.04594925482262 ], [ -95.39261802216339, 30.04623825474776 ], [ -95.392752021670717, 30.0466512544238 ], [ -95.392857022275223, 30.046921254634974 ], [ -95.392586021722991, 30.047014254752785 ], [ -95.39241102186395, 30.047061254806412 ], [ -95.392272022342382, 30.047121255166434 ], [ -95.392004022429774, 30.047207254872834 ], [ -95.392176022111656, 30.047599255056088 ], [ -95.392218021895303, 30.047652254600042 ], [ -95.392345021580098, 30.047896254895672 ], [ -95.392363021710636, 30.047965255425698 ], [ -95.392414021680068, 30.04802425494475 ], [ -95.39246802219769, 30.048109255187669 ], [ -95.392414022141764, 30.048155254945655 ], [ -95.391496021677028, 30.048657254767864 ], [ -95.390835022113407, 30.049028255090033 ], [ -95.390641021538386, 30.049129255564196 ], [ -95.390064021781612, 30.049444255886122 ], [ -95.38990802125717, 30.049519255629075 ], [ -95.389660021285536, 30.049617255304511 ], [ -95.389551021196141, 30.049647255711346 ], [ -95.389447021746903, 30.049677255896203 ], [ -95.38856502089925, 30.049877255181936 ], [ -95.388377021619306, 30.049937255315307 ], [ -95.38800702071147, 30.050072255276604 ], [ -95.387902021073032, 30.050120255479243 ], [ -95.387995021170113, 30.050259255422311 ], [ -95.388251021453812, 30.050703255510967 ], [ -95.388290021259564, 30.050795255389115 ], [ -95.388740021188084, 30.051549256251452 ], [ -95.389204021819978, 30.052335255842703 ], [ -95.389675021640727, 30.053134256205244 ], [ -95.389722021925962, 30.053212255783258 ], [ -95.390039021671313, 30.053729255943605 ], [ -95.390152022012316, 30.053888256202267 ], [ -95.390341021846453, 30.054130256793115 ], [ -95.390562021543431, 30.054361256651951 ], [ -95.390788021551018, 30.054575256803702 ], [ -95.390934021784034, 30.054705256446088 ], [ -95.391073021873723, 30.054816256475874 ], [ -95.391431021796322, 30.05505825611516 ], [ -95.39161402247737, 30.055172256545355 ], [ -95.391872022656557, 30.055322256665459 ], [ -95.391980022026758, 30.055384256625725 ], [ -95.392090021865144, 30.055441256683142 ], [ -95.392157022550293, 30.055462256671916 ], [ -95.392262022173895, 30.055516256680011 ], [ -95.392309022890331, 30.055549256470719 ], [ -95.392401022072235, 30.055593256160805 ], [ -95.392890022078873, 30.055844256565937 ], [ -95.393601022550811, 30.056186256481809 ], [ -95.393635023235888, 30.056203256313591 ], [ -95.39475602290662, 30.056762256977045 ], [ -95.395183023040047, 30.05697625696115 ], [ -95.397214023265064, 30.057987257202353 ], [ -95.397826023953797, 30.058301257310809 ], [ -95.397939023613432, 30.058357256882466 ], [ -95.399231024797757, 30.059002257518461 ], [ -95.399564024653301, 30.059191256814398 ], [ -95.39977302486399, 30.059329257222551 ], [ -95.400157025004475, 30.059598257597717 ], [ -95.400294024445756, 30.05970925703771 ], [ -95.400577025070803, 30.059960256953637 ], [ -95.400608024379338, 30.059976257542242 ], [ -95.400865025050209, 30.060249257440361 ], [ -95.401118024971566, 30.060542257122261 ], [ -95.401252024432722, 30.060715257560041 ], [ -95.401318025200482, 30.060801257123515 ], [ -95.401951024831703, 30.061618257600411 ], [ -95.403307025310383, 30.063469257592388 ], [ -95.40430802612363, 30.064834258509947 ], [ -95.404825026082463, 30.065548257939234 ], [ -95.405064026466036, 30.06587025850175 ], [ -95.405125026156398, 30.065939258522448 ], [ -95.405263026148489, 30.066141258743652 ], [ -95.405348025984779, 30.066257258183519 ], [ -95.405746026490888, 30.066796258116092 ], [ -95.408391026742763, 30.070417258756223 ], [ -95.408489027141584, 30.070547259016738 ], [ -95.409333027170902, 30.071694259536333 ], [ -95.409960027565816, 30.072565259590331 ], [ -95.410463027408369, 30.073364259855246 ], [ -95.410639027926635, 30.073616259343247 ], [ -95.410697028428046, 30.073696259808898 ], [ -95.411205028327643, 30.074355259972005 ], [ -95.411341028219752, 30.074532259660419 ], [ -95.411369028141522, 30.074568259477285 ], [ -95.411377028399343, 30.074525260127615 ], [ -95.411413027976835, 30.074339259691076 ], [ -95.411620028521099, 30.073242259156775 ], [ -95.411670027995555, 30.072887259896383 ], [ -95.411698028632529, 30.072530259016698 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 137, "Tract": "48201550902", "Area_SqMi": 0.58812521932538719, "total_2009": 72, "total_2010": 79, "total_2011": 83, "total_2012": 76, "total_2013": 107, "total_2014": 101, "total_2015": 113, "total_2016": 126, "total_2017": 144, "total_2018": 142, "total_2019": 158, "total_2020": 126, "age1": 30, "age2": 67, "age3": 34, "earn1": 20, "earn2": 53, "earn3": 58, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 6, "naics_s06": 0, "naics_s07": 11, "naics_s08": 8, "naics_s09": 0, "naics_s10": 17, "naics_s11": 11, "naics_s12": 23, "naics_s13": 13, "naics_s14": 0, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 17, "naics_s19": 0, "naics_s20": 0, "race1": 89, "race2": 21, "race3": 0, "race4": 19, "race5": 1, "race6": 1, "ethnicity1": 72, "ethnicity2": 59, "edu1": 34, "edu2": 19, "edu3": 23, "edu4": 25, "Shape_Length": 21246.67257288449, "Shape_Area": 16395924.528418947, "total_2021": 128, "total_2022": 131 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.49848104508466, 29.961161233977375 ], [ -95.498466045589268, 29.960707233269307 ], [ -95.49844704521945, 29.960258233141516 ], [ -95.498431045346337, 29.959784232996117 ], [ -95.498421045515244, 29.959467233334294 ], [ -95.498412045045285, 29.959210233457572 ], [ -95.498353044887367, 29.957390232989859 ], [ -95.498340044565722, 29.956872233025933 ], [ -95.49809004472246, 29.956876233234286 ], [ -95.498022044907842, 29.956883232731144 ], [ -95.497948045175519, 29.956882233169349 ], [ -95.497694044577287, 29.956890233228979 ], [ -95.497605044810356, 29.956887232898946 ], [ -95.497520044412312, 29.956892232619872 ], [ -95.49735104517724, 29.956895233238676 ], [ -95.497271045271475, 29.956893232860313 ], [ -95.496902044192652, 29.956901233210225 ], [ -95.496036044892804, 29.956925233290853 ], [ -95.495304044592203, 29.956950232683148 ], [ -95.495186044329188, 29.956960232709719 ], [ -95.495028043883323, 29.956979233273788 ], [ -95.494846044369837, 29.957019232993112 ], [ -95.494737044656745, 29.957054232640296 ], [ -95.49464704422455, 29.957089232711169 ], [ -95.494497044026204, 29.95715523317751 ], [ -95.494326043897033, 29.957243233474966 ], [ -95.493856044265371, 29.95751023336679 ], [ -95.491843043608156, 29.958627233318484 ], [ -95.491789043648737, 29.958650233623974 ], [ -95.491779043622941, 29.958636233232873 ], [ -95.491361042855701, 29.958056233569323 ], [ -95.491217043711259, 29.957838233554124 ], [ -95.49116404334184, 29.957745233652378 ], [ -95.49110504319998, 29.957626233280457 ], [ -95.491064043696667, 29.957518232837259 ], [ -95.491002043070196, 29.957288232896218 ], [ -95.490989043228893, 29.957208233003144 ], [ -95.490982043305948, 29.957122233396998 ], [ -95.4909810432992, 29.957034233422672 ], [ -95.490994042969078, 29.956865233291609 ], [ -95.491035042830248, 29.956657233231613 ], [ -95.491054043589614, 29.956580233140148 ], [ -95.491062042987465, 29.956526233071536 ], [ -95.491109043589077, 29.956399233251318 ], [ -95.491200043204543, 29.956235232893842 ], [ -95.491303043734973, 29.956065232523756 ], [ -95.491355042939887, 29.955990232879639 ], [ -95.491812042800845, 29.955342233029494 ], [ -95.492265043410328, 29.954689232440074 ], [ -95.492600043280717, 29.954205232488292 ], [ -95.492094043117177, 29.953939232723886 ], [ -95.491852042977925, 29.953813232479014 ], [ -95.491308043448072, 29.953505232327508 ], [ -95.490797042695164, 29.953247232642742 ], [ -95.490393042913794, 29.953110232243088 ], [ -95.490020043059459, 29.953000232224809 ], [ -95.489925042414924, 29.952997232289459 ], [ -95.489761042420469, 29.952994232571413 ], [ -95.486870041521769, 29.953089232255998 ], [ -95.485813041333557, 29.953114232137935 ], [ -95.485431041754111, 29.953123232345902 ], [ -95.485102041629176, 29.953112232237434 ], [ -95.485096041400837, 29.953310232342403 ], [ -95.485097041093695, 29.953344232726604 ], [ -95.48510504102228, 29.95387523265622 ], [ -95.485116041627094, 29.954497232935939 ], [ -95.485148041266967, 29.954887232755787 ], [ -95.485142041271388, 29.954977233069538 ], [ -95.485135041933347, 29.955074232938259 ], [ -95.485162041162454, 29.955612233045123 ], [ -95.485186041942015, 29.956069233341214 ], [ -95.485186041610604, 29.956353233310193 ], [ -95.485186042118627, 29.956449233093583 ], [ -95.485199042048578, 29.956641233567982 ], [ -95.485180041880014, 29.956790233005762 ], [ -95.48519804131513, 29.957072233733175 ], [ -95.485231041668669, 29.957565233357204 ], [ -95.485238041552606, 29.957763233206173 ], [ -95.48526804144592, 29.958553233248583 ], [ -95.485289042188072, 29.959132233431806 ], [ -95.485270042005197, 29.959632233890851 ], [ -95.485289041615758, 29.959995233940202 ], [ -95.485270042326619, 29.960182233811143 ], [ -95.485284042319819, 29.960406234199173 ], [ -95.485309041501026, 29.960786234292083 ], [ -95.485302042292119, 29.961045234074909 ], [ -95.485321041889819, 29.961210234352155 ], [ -95.485341041571004, 29.962441234286217 ], [ -95.485366041838262, 29.962859234632784 ], [ -95.485351042400808, 29.963049234522856 ], [ -95.485341042486382, 29.963183234581901 ], [ -95.485380041561754, 29.963596234483862 ], [ -95.485151042498671, 29.9636302345553 ], [ -95.48470704233209, 29.963636234283648 ], [ -95.484715041386892, 29.96399923478177 ], [ -95.484715041457804, 29.964034235111185 ], [ -95.484696041934541, 29.964072234635772 ], [ -95.484493041502944, 29.96408023482994 ], [ -95.483313041818079, 29.964109234485949 ], [ -95.482555041503957, 29.964119234843043 ], [ -95.482250041334694, 29.96413823466904 ], [ -95.481873041545612, 29.964177234994533 ], [ -95.481688041583482, 29.964198234949961 ], [ -95.481539041446837, 29.964216234592715 ], [ -95.481389041272166, 29.964233234881622 ], [ -95.481293041481337, 29.964244234489687 ], [ -95.480986041081877, 29.964280235152334 ], [ -95.480670040478813, 29.964311235391712 ], [ -95.48050304034038, 29.964321234572402 ], [ -95.480687040386897, 29.964563235316984 ], [ -95.480922041415027, 29.964870235172206 ], [ -95.481125041313192, 29.965135235448003 ], [ -95.481300041571387, 29.965362234913542 ], [ -95.482435041547461, 29.966849235478882 ], [ -95.48265604195376, 29.967138235798505 ], [ -95.4832160419773, 29.967872235514857 ], [ -95.483357041242741, 29.968057236004157 ], [ -95.483729041538837, 29.968550235855179 ], [ -95.483803041650575, 29.968635235408769 ], [ -95.483951042136383, 29.968824235513605 ], [ -95.484051041547161, 29.968953235944735 ], [ -95.484361041925979, 29.969362235430435 ], [ -95.484452042449021, 29.969255235964496 ], [ -95.484548042590006, 29.96920223603907 ], [ -95.484659042357194, 29.969141235625052 ], [ -95.485867042209478, 29.968478235688789 ], [ -95.488516042871865, 29.967025235350771 ], [ -95.490372043546316, 29.965999234969928 ], [ -95.490689043670443, 29.965824234940367 ], [ -95.491303043956435, 29.965484235072537 ], [ -95.49221304405286, 29.964988234668972 ], [ -95.492856043884601, 29.964632234461714 ], [ -95.493092043954491, 29.96448823430778 ], [ -95.493308044584396, 29.964343234889107 ], [ -95.493507043743662, 29.964197234260187 ], [ -95.493793044579178, 29.963970234049995 ], [ -95.493965044724362, 29.963818234122055 ], [ -95.494286044523335, 29.963506234663782 ], [ -95.494655044242037, 29.963153234168388 ], [ -95.494987044587248, 29.96284823454717 ], [ -95.495163045018657, 29.962702234100107 ], [ -95.495350044548942, 29.962563233906305 ], [ -95.495546044493977, 29.962427233871203 ], [ -95.495791044808854, 29.962271234041477 ], [ -95.495946044560398, 29.962177233635366 ], [ -95.496269045195774, 29.962002233850679 ], [ -95.496495044323098, 29.961895233530427 ], [ -95.496851044875896, 29.961747233949687 ], [ -95.497490044596887, 29.961516234213967 ], [ -95.49848104508466, 29.961161233977375 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 138, "Tract": "48201550404", "Area_SqMi": 1.1711250956758528, "total_2009": 157, "total_2010": 182, "total_2011": 143, "total_2012": 93, "total_2013": 81, "total_2014": 101, "total_2015": 115, "total_2016": 254, "total_2017": 254, "total_2018": 301, "total_2019": 276, "total_2020": 418, "age1": 132, "age2": 239, "age3": 70, "earn1": 149, "earn2": 146, "earn3": 146, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 24, "naics_s05": 0, "naics_s06": 0, "naics_s07": 54, "naics_s08": 99, "naics_s09": 0, "naics_s10": 1, "naics_s11": 1, "naics_s12": 8, "naics_s13": 0, "naics_s14": 0, "naics_s15": 73, "naics_s16": 81, "naics_s17": 0, "naics_s18": 46, "naics_s19": 54, "naics_s20": 0, "race1": 217, "race2": 191, "race3": 2, "race4": 28, "race5": 0, "race6": 3, "ethnicity1": 343, "ethnicity2": 98, "edu1": 72, "edu2": 82, "edu3": 96, "edu4": 59, "Shape_Length": 33059.308298454285, "Shape_Area": 32648963.266809247, "total_2021": 486, "total_2022": 441 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.472149039727896, 29.976569237748233 ], [ -95.47212003975261, 29.976536237520691 ], [ -95.471934038901907, 29.976304237290272 ], [ -95.471815039625142, 29.976130237837047 ], [ -95.471706038648691, 29.975945237635806 ], [ -95.47161203891676, 29.97575423758537 ], [ -95.47153603893436, 29.975563237438386 ], [ -95.471386038559103, 29.975140237373129 ], [ -95.471259039428702, 29.974820237563019 ], [ -95.471200038520251, 29.974695237437455 ], [ -95.471113038985919, 29.974544237349715 ], [ -95.471003038390762, 29.974375237278988 ], [ -95.471140038843657, 29.974299236964789 ], [ -95.471259038744179, 29.974221237241846 ], [ -95.471311038716493, 29.974134237264281 ], [ -95.471326038934222, 29.974072236830235 ], [ -95.471333039273787, 29.973991237130921 ], [ -95.471335039206977, 29.973895236896567 ], [ -95.471339038465004, 29.973048236962516 ], [ -95.471292039356641, 29.972358236742512 ], [ -95.471289038749205, 29.971107236808979 ], [ -95.47124503840088, 29.970575236249555 ], [ -95.471240038726677, 29.97037023653138 ], [ -95.47122003851878, 29.969447236442214 ], [ -95.471217039167712, 29.969300235975393 ], [ -95.471191038291593, 29.968963236497309 ], [ -95.471205038952689, 29.968650236380551 ], [ -95.471190038120341, 29.968163235746395 ], [ -95.471170039002146, 29.967294235663758 ], [ -95.471169038071196, 29.967209235568248 ], [ -95.471178038267766, 29.967045236056553 ], [ -95.471173038202693, 29.966887235439668 ], [ -95.47115203847639, 29.966596235522658 ], [ -95.471145038130885, 29.966444235944859 ], [ -95.471147038351432, 29.96615923607423 ], [ -95.471136038442808, 29.965647235654359 ], [ -95.471127038615833, 29.965259235170901 ], [ -95.471108038538233, 29.964631235310701 ], [ -95.471107038939124, 29.964575235228086 ], [ -95.470959038560821, 29.964588235609884 ], [ -95.470560037827184, 29.96460323560343 ], [ -95.469649037669612, 29.964625235541039 ], [ -95.467446037149699, 29.964674235558629 ], [ -95.466262037549143, 29.964716235867719 ], [ -95.464974036745403, 29.964749235575802 ], [ -95.464602036392037, 29.964762235420643 ], [ -95.464169036418411, 29.964770236043879 ], [ -95.464009036596465, 29.964766235725133 ], [ -95.463851036799554, 29.964773235360383 ], [ -95.463811036819436, 29.964774235335305 ], [ -95.463362036675306, 29.964782235301172 ], [ -95.462594035761668, 29.964790236032663 ], [ -95.461924035925591, 29.964793235663187 ], [ -95.460715035834895, 29.964797235311522 ], [ -95.459539035996883, 29.964813235751883 ], [ -95.457687034807449, 29.964851236040612 ], [ -95.453667034392168, 29.964925235696825 ], [ -95.452255034053792, 29.964956235817453 ], [ -95.451970034031731, 29.964975236107392 ], [ -95.451782033637414, 29.964994235690224 ], [ -95.451266032959538, 29.965045236532081 ], [ -95.451106033512232, 29.965054236193165 ], [ -95.450599033359026, 29.965073236381212 ], [ -95.450248033180088, 29.965077236560465 ], [ -95.449548033162174, 29.965093236171253 ], [ -95.449375033242958, 29.965102236616776 ], [ -95.448690032582476, 29.965121235972529 ], [ -95.448518032386929, 29.9651202357865 ], [ -95.448358033103943, 29.965128236630783 ], [ -95.448194033105992, 29.965126236362764 ], [ -95.448040032303922, 29.965130236362938 ], [ -95.447896032394226, 29.965139236641363 ], [ -95.447750032795255, 29.96513623627586 ], [ -95.447526032279072, 29.96514223608304 ], [ -95.447568032106261, 29.966774236463067 ], [ -95.447580032560268, 29.96787623689044 ], [ -95.446497032304492, 29.96790323666696 ], [ -95.446176031845852, 29.967911237190862 ], [ -95.446178032399146, 29.968499237108823 ], [ -95.445155031577841, 29.968502237474254 ], [ -95.444312031866176, 29.968505237189895 ], [ -95.443491031638672, 29.968508237537307 ], [ -95.44265303121206, 29.968511237404059 ], [ -95.441871030746412, 29.968512237352403 ], [ -95.440869031322023, 29.968516237238855 ], [ -95.440046030967736, 29.968517237391158 ], [ -95.438129030092199, 29.968524237389918 ], [ -95.43752103024012, 29.968521237441259 ], [ -95.437310030117814, 29.968515237723466 ], [ -95.43684402968384, 29.968483237158555 ], [ -95.436499029643784, 29.968470236971253 ], [ -95.435660029496177, 29.968473237079053 ], [ -95.434949029073493, 29.96847923770795 ], [ -95.43483902958107, 29.968481237263678 ], [ -95.434726029021704, 29.968488237740114 ], [ -95.434651028804723, 29.968499237389622 ], [ -95.434577028847869, 29.968519237130288 ], [ -95.434493029688198, 29.968536237371371 ], [ -95.434414029136619, 29.968562237358842 ], [ -95.434262028788424, 29.968627237727102 ], [ -95.43419602894835, 29.968673237669385 ], [ -95.434095029640076, 29.968724237276064 ], [ -95.434009029607722, 29.968785237817311 ], [ -95.433563028872129, 29.969162237865948 ], [ -95.433473028811179, 29.969248237442269 ], [ -95.433376029048986, 29.969329237515655 ], [ -95.433243028851251, 29.969454237607252 ], [ -95.433110028734163, 29.969581237717406 ], [ -95.433009028746596, 29.96964623752535 ], [ -95.432403028990905, 29.970181238099507 ], [ -95.432666029078149, 29.970425237838121 ], [ -95.433224028900241, 29.970923237859225 ], [ -95.433678028710275, 29.971326238378019 ], [ -95.433847028954403, 29.97148523766834 ], [ -95.434021029551559, 29.97163923827755 ], [ -95.434278029688102, 29.971855238380449 ], [ -95.434566029080884, 29.972119238566478 ], [ -95.434605029592618, 29.97215823796823 ], [ -95.435200029977096, 29.972697238573197 ], [ -95.43546302931027, 29.972524237978853 ], [ -95.435835029627967, 29.972419238407639 ], [ -95.436119030267463, 29.972496238486318 ], [ -95.436700030183843, 29.972480238503532 ], [ -95.437079030203421, 29.972546238334697 ], [ -95.437799030347335, 29.97252923800756 ], [ -95.437906030641429, 29.972645237739687 ], [ -95.438481030726379, 29.97272223804897 ], [ -95.438967030280907, 29.972755238370659 ], [ -95.439062030107578, 29.972788238044302 ], [ -95.439592031233204, 29.972870238359793 ], [ -95.439851030750376, 29.972936238315864 ], [ -95.440148031340058, 29.973046238212007 ], [ -95.440287030560313, 29.973013238088313 ], [ -95.440470031199652, 29.973051238441638 ], [ -95.440565030629955, 29.973106238541259 ], [ -95.440735030918759, 29.97319423856905 ], [ -95.441268030917854, 29.973412237994069 ], [ -95.441638030861682, 29.973563238513655 ], [ -95.442219031823512, 29.973760238193758 ], [ -95.442674031903408, 29.973881238226021 ], [ -95.44312903132591, 29.97394223798608 ], [ -95.444057031474543, 29.973947238528812 ], [ -95.444726032572248, 29.973986237844912 ], [ -95.445296032685107, 29.974005238385317 ], [ -95.445383032780043, 29.974008238125638 ], [ -95.445459032733396, 29.974012238243237 ], [ -95.445762032198317, 29.974028237980512 ], [ -95.445894032776636, 29.974035238184335 ], [ -95.445977032505553, 29.974073237822946 ], [ -95.446141032449916, 29.974106237987662 ], [ -95.447164032607219, 29.974095238003123 ], [ -95.447917032836813, 29.974077238473257 ], [ -95.449828033929705, 29.974034238308398 ], [ -95.452443033848624, 29.973963238274717 ], [ -95.452594034578397, 29.973924237983567 ], [ -95.452701034053845, 29.973759237567183 ], [ -95.452682033699404, 29.973281237569505 ], [ -95.452777034358363, 29.973193237494648 ], [ -95.453011034072063, 29.973171237920546 ], [ -95.45443803413572, 29.973171237800791 ], [ -95.456705035581422, 29.973132237525252 ], [ -95.459606035509125, 29.973040237828059 ], [ -95.459662035525213, 29.973038237472498 ], [ -95.460064036322777, 29.973026237242351 ], [ -95.460346035684182, 29.973022237720702 ], [ -95.461441035881307, 29.973010237272629 ], [ -95.464272037138159, 29.972937236925965 ], [ -95.464873036872319, 29.972921237372674 ], [ -95.46587303727685, 29.972899237343981 ], [ -95.466259037222969, 29.973289236935436 ], [ -95.467484038187294, 29.974410237647657 ], [ -95.468179038533663, 29.975031237525858 ], [ -95.468577038423419, 29.976163237696468 ], [ -95.468653038503959, 29.976647237561796 ], [ -95.468634038859705, 29.977109238008438 ], [ -95.468653038517175, 29.977433238241968 ], [ -95.468729038224865, 29.977763238451878 ], [ -95.468887038698568, 29.977999238215748 ], [ -95.469121038667026, 29.978186238326401 ], [ -95.46929103830108, 29.97819223776709 ], [ -95.469449038225036, 29.978153238337249 ], [ -95.469512038783733, 29.978153238359088 ], [ -95.470055038920904, 29.978098238378415 ], [ -95.470251038472981, 29.978049237990003 ], [ -95.470523038970143, 29.977944237638475 ], [ -95.470662038443407, 29.977872238197648 ], [ -95.470819038531317, 29.977746238196438 ], [ -95.471072039267483, 29.977433237680334 ], [ -95.471192038959188, 29.977251238197184 ], [ -95.471343038887809, 29.977059237542758 ], [ -95.471577038901444, 29.976866237722657 ], [ -95.471823039490445, 29.976762237703475 ], [ -95.472149039727896, 29.976569237748233 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 139, "Tract": "48201313201", "Area_SqMi": 0.55244433244642088, "total_2009": 546, "total_2010": 610, "total_2011": 458, "total_2012": 506, "total_2013": 494, "total_2014": 495, "total_2015": 454, "total_2016": 450, "total_2017": 484, "total_2018": 437, "total_2019": 499, "total_2020": 394, "age1": 167, "age2": 267, "age3": 112, "earn1": 148, "earn2": 190, "earn3": 208, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 1, "naics_s07": 153, "naics_s08": 1, "naics_s09": 0, "naics_s10": 18, "naics_s11": 12, "naics_s12": 13, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 131, "naics_s17": 0, "naics_s18": 122, "naics_s19": 95, "naics_s20": 0, "race1": 261, "race2": 235, "race3": 4, "race4": 35, "race5": 1, "race6": 10, "ethnicity1": 374, "ethnicity2": 172, "edu1": 75, "edu2": 111, "edu3": 111, "edu4": 82, "Shape_Length": 18805.088143076107, "Shape_Area": 15401202.470681585, "total_2021": 475, "total_2022": 546 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.361270998940114, 29.706585186300472 ], [ -95.361619998687559, 29.705728185865755 ], [ -95.360859998869245, 29.705494186203694 ], [ -95.361155999089817, 29.70473718633971 ], [ -95.361257998567751, 29.704467186188666 ], [ -95.361330999013475, 29.704204185478098 ], [ -95.361373999008535, 29.703985185974613 ], [ -95.361380998245323, 29.703635185925403 ], [ -95.361351998918906, 29.702941185658947 ], [ -95.361305998513046, 29.702272185281672 ], [ -95.36030599807394, 29.702342185857898 ], [ -95.359422997751594, 29.702380185790016 ], [ -95.358533997413133, 29.702430185842214 ], [ -95.358090997667688, 29.702453185758344 ], [ -95.357325997360434, 29.70249418592639 ], [ -95.355219997225731, 29.702605185922224 ], [ -95.35492399726067, 29.702621185990548 ], [ -95.354766996526962, 29.702629185407062 ], [ -95.354607997044141, 29.702637186198249 ], [ -95.354154997028104, 29.702661185445137 ], [ -95.354031996610971, 29.702672185819424 ], [ -95.353305996550276, 29.702773185564148 ], [ -95.352903996600901, 29.702834185701157 ], [ -95.352409996262537, 29.702932185706786 ], [ -95.352373996050602, 29.702920186069672 ], [ -95.352205996454956, 29.702869185835496 ], [ -95.351986995830288, 29.70280818627834 ], [ -95.351611996159662, 29.70269718568467 ], [ -95.350847996145347, 29.702454186042079 ], [ -95.350264995832489, 29.702297186065664 ], [ -95.350088995575106, 29.702237185543744 ], [ -95.349331994980901, 29.702011185741419 ], [ -95.348552994984615, 29.70177318619891 ], [ -95.348350994816457, 29.701709185912403 ], [ -95.345679994117887, 29.700872185979211 ], [ -95.345486994081398, 29.701317185697931 ], [ -95.345433994935107, 29.701440185562628 ], [ -95.34528399458523, 29.701799185977514 ], [ -95.345196994766141, 29.702019185795802 ], [ -95.344932994198771, 29.702651186499178 ], [ -95.344595994384463, 29.703473186508131 ], [ -95.344563994685544, 29.703564186674164 ], [ -95.34446599469203, 29.703832186685752 ], [ -95.344277994424004, 29.704302186489798 ], [ -95.343921993934302, 29.705134186870239 ], [ -95.34357999451089, 29.705992186782293 ], [ -95.343491994258343, 29.706205186688749 ], [ -95.343356993952654, 29.706513187351863 ], [ -95.342851993793388, 29.707751186822335 ], [ -95.34268899363029, 29.708130187515923 ], [ -95.342174994483244, 29.709412187345929 ], [ -95.342095993650531, 29.709598187238608 ], [ -95.341921994234752, 29.710020187476911 ], [ -95.341817993788553, 29.710273187724901 ], [ -95.341718993765468, 29.710619188250977 ], [ -95.34163399415398, 29.711081187978355 ], [ -95.34157399353829, 29.711436188259437 ], [ -95.341533993741578, 29.711687187639381 ], [ -95.341515993812749, 29.711804187655918 ], [ -95.341751994027703, 29.711866188117476 ], [ -95.342065993727118, 29.712091187847506 ], [ -95.343892994146955, 29.712514188013866 ], [ -95.344464995080799, 29.712550187841934 ], [ -95.344863994588025, 29.712469188016524 ], [ -95.345157995310885, 29.712341187688949 ], [ -95.346429994869126, 29.711457187687209 ], [ -95.346692994878893, 29.71127518744234 ], [ -95.346940995461495, 29.711149188107797 ], [ -95.348660995839452, 29.710805187642304 ], [ -95.350025996340406, 29.710434187374339 ], [ -95.350149996185763, 29.710394187368852 ], [ -95.350526996205687, 29.710275187709382 ], [ -95.351753996664172, 29.709762187149362 ], [ -95.353014996851002, 29.709454187294856 ], [ -95.353643996727371, 29.709377187030864 ], [ -95.354584996985139, 29.709347186977027 ], [ -95.355359997684829, 29.709409186793945 ], [ -95.356086997288017, 29.709529186821321 ], [ -95.35655299779593, 29.709710187340182 ], [ -95.356585997215973, 29.709624187477825 ], [ -95.356800997656478, 29.709071186662879 ], [ -95.357075998091233, 29.708376187271856 ], [ -95.357478997731761, 29.70736018688245 ], [ -95.357643997590472, 29.706956186327066 ], [ -95.357809997449934, 29.706518186136243 ], [ -95.358141997942639, 29.70565018650262 ], [ -95.361270998940114, 29.706585186300472 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 140, "Tract": "48201454303", "Area_SqMi": 0.55398055424344383, "total_2009": 808, "total_2010": 588, "total_2011": 669, "total_2012": 893, "total_2013": 866, "total_2014": 974, "total_2015": 856, "total_2016": 921, "total_2017": 860, "total_2018": 758, "total_2019": 717, "total_2020": 699, "age1": 186, "age2": 316, "age3": 177, "earn1": 120, "earn2": 408, "earn3": 151, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 5, "naics_s07": 541, "naics_s08": 2, "naics_s09": 0, "naics_s10": 11, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 111, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 394, "race2": 217, "race3": 4, "race4": 53, "race5": 1, "race6": 10, "ethnicity1": 458, "ethnicity2": 221, "edu1": 113, "edu2": 172, "edu3": 136, "edu4": 72, "Shape_Length": 16245.032323885742, "Shape_Area": 15444029.705112703, "total_2021": 691, "total_2022": 679 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.660526075429516, 29.713438177620262 ], [ -95.660521075839199, 29.712589177727057 ], [ -95.660515075397072, 29.711442177114254 ], [ -95.660498075746546, 29.709657176708578 ], [ -95.659988075708242, 29.709700176734287 ], [ -95.658079075106315, 29.709830177422578 ], [ -95.654845074302756, 29.710100177242545 ], [ -95.652762073136898, 29.710269177664561 ], [ -95.65200307350716, 29.710339177496955 ], [ -95.651297073411101, 29.710425177399735 ], [ -95.649002072500707, 29.710627177365012 ], [ -95.646268072170358, 29.710842177613525 ], [ -95.645481071098246, 29.710909177590619 ], [ -95.644326070902764, 29.711044177600126 ], [ -95.644261071158567, 29.711056177638696 ], [ -95.644069071193798, 29.711056177888398 ], [ -95.644078070872183, 29.711735178233194 ], [ -95.644071071266197, 29.712392177995227 ], [ -95.64407607089791, 29.712773177928405 ], [ -95.644086071729987, 29.713622178047203 ], [ -95.644091071884134, 29.713985177923 ], [ -95.64409607138407, 29.714175178113255 ], [ -95.644131071909442, 29.714834178418062 ], [ -95.644162071143825, 29.715428178560732 ], [ -95.644183071399468, 29.715817179068289 ], [ -95.644186071414609, 29.715873178404074 ], [ -95.644203071096427, 29.716192178382709 ], [ -95.644202071277675, 29.716580179009121 ], [ -95.644206071639275, 29.716648179277886 ], [ -95.644199071936015, 29.717834179366132 ], [ -95.644183071838512, 29.718509179038197 ], [ -95.644149071709833, 29.719877179283845 ], [ -95.644148071583217, 29.719926179666171 ], [ -95.644462071558323, 29.719922179463797 ], [ -95.645740071595782, 29.71990517965838 ], [ -95.646065072011879, 29.719893179627512 ], [ -95.646388072317606, 29.71986717975599 ], [ -95.646705072629217, 29.719827179213677 ], [ -95.647017072716395, 29.719773179604296 ], [ -95.647323072801797, 29.719706179503422 ], [ -95.647624072224815, 29.719624179405418 ], [ -95.647918072992695, 29.719531179367475 ], [ -95.648198073078035, 29.719430179612907 ], [ -95.648950073172102, 29.719110178829276 ], [ -95.649184073154615, 29.719018178805484 ], [ -95.649536073060091, 29.718901178838461 ], [ -95.649687072963772, 29.718859178917899 ], [ -95.649899073321649, 29.718803178686287 ], [ -95.650155073068518, 29.718745178941848 ], [ -95.650557073412898, 29.718673179106688 ], [ -95.650796072947657, 29.718643179006776 ], [ -95.650976073409637, 29.718625179346859 ], [ -95.651265073080523, 29.718605179378471 ], [ -95.651553073705827, 29.718596179219521 ], [ -95.652353073297562, 29.718594179044818 ], [ -95.653585074492966, 29.718590178564991 ], [ -95.653889073896949, 29.71858217874632 ], [ -95.654245074448809, 29.718556179328825 ], [ -95.654626073897944, 29.718506179197735 ], [ -95.654922074268214, 29.718451178675352 ], [ -95.655072074697628, 29.718417179226854 ], [ -95.655368074800535, 29.718340178382043 ], [ -95.655656074538939, 29.718252179203017 ], [ -95.655946074312226, 29.718150178401348 ], [ -95.656234074582429, 29.718032178834175 ], [ -95.656921074886938, 29.717706178885734 ], [ -95.657362074748491, 29.717492178497743 ], [ -95.657876074695949, 29.717244178075855 ], [ -95.658521075421959, 29.71693117850489 ], [ -95.658853074954564, 29.716770178536084 ], [ -95.660427075763209, 29.716009178406271 ], [ -95.660428075181059, 29.715895178331039 ], [ -95.660429075750173, 29.715463177702539 ], [ -95.660438075848276, 29.715156177767998 ], [ -95.660443075574548, 29.714999177740005 ], [ -95.660467075590333, 29.7146431780426 ], [ -95.660513075840328, 29.713966177976587 ], [ -95.660526075429516, 29.713438177620262 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 141, "Tract": "48201510803", "Area_SqMi": 0.32637303031496356, "total_2009": 1342, "total_2010": 1333, "total_2011": 1535, "total_2012": 1483, "total_2013": 1638, "total_2014": 1786, "total_2015": 1775, "total_2016": 1467, "total_2017": 1432, "total_2018": 1559, "total_2019": 1719, "total_2020": 1537, "age1": 387, "age2": 985, "age3": 376, "earn1": 280, "earn2": 406, "earn3": 1062, "naics_s01": 1, "naics_s02": 8, "naics_s03": 0, "naics_s04": 14, "naics_s05": 4, "naics_s06": 38, "naics_s07": 103, "naics_s08": 0, "naics_s09": 16, "naics_s10": 124, "naics_s11": 285, "naics_s12": 346, "naics_s13": 55, "naics_s14": 72, "naics_s15": 0, "naics_s16": 381, "naics_s17": 4, "naics_s18": 245, "naics_s19": 51, "naics_s20": 1, "race1": 1290, "race2": 302, "race3": 11, "race4": 119, "race5": 3, "race6": 23, "ethnicity1": 1215, "ethnicity2": 533, "edu1": 239, "edu2": 333, "edu3": 412, "edu4": 377, "Shape_Length": 20806.492109894298, "Shape_Area": 9098721.4921571389, "total_2021": 1645, "total_2022": 1748 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.428302017785185, 29.760640195350266 ], [ -95.428323018439258, 29.760547195187051 ], [ -95.428175018123753, 29.76054619552572 ], [ -95.427861018640925, 29.760465195041544 ], [ -95.427542018405418, 29.76014019528915 ], [ -95.427185017864232, 29.759575195058677 ], [ -95.426826017636955, 29.758398194634726 ], [ -95.426681017883766, 29.758272194365858 ], [ -95.426184018161919, 29.758100194379249 ], [ -95.425914017160096, 29.757936194586691 ], [ -95.425695017457983, 29.757513195018305 ], [ -95.42561901699068, 29.757250194143975 ], [ -95.425474016938793, 29.756750194850408 ], [ -95.425334017271794, 29.756620193996564 ], [ -95.425175017512842, 29.75658719439847 ], [ -95.424867017526736, 29.756657194471707 ], [ -95.424673017707121, 29.756839194288489 ], [ -95.424512016909333, 29.757322194309971 ], [ -95.424415017402055, 29.758071194606721 ], [ -95.424234017666649, 29.758302194669803 ], [ -95.424009017449507, 29.758390195222155 ], [ -95.423639016965993, 29.758401195028274 ], [ -95.423217016935027, 29.758260195190406 ], [ -95.422992017042205, 29.75805519515778 ], [ -95.422735017175299, 29.757527194713784 ], [ -95.422483016598193, 29.757347194911318 ], [ -95.422319016315868, 29.757350194405099 ], [ -95.422098016553321, 29.757445194858061 ], [ -95.421739016624642, 29.757741194854869 ], [ -95.421292016617869, 29.758317194961062 ], [ -95.421001016340128, 29.758692195174063 ], [ -95.420747016225576, 29.758941194947848 ], [ -95.420646015778871, 29.759040195494418 ], [ -95.420291016704937, 29.759285194817387 ], [ -95.420085016217726, 29.7592211947637 ], [ -95.419713015927286, 29.759106194685994 ], [ -95.419460016054842, 29.758924194752495 ], [ -95.419294015755739, 29.758720195362201 ], [ -95.419027016203302, 29.758197195336503 ], [ -95.418815015492541, 29.757892194477925 ], [ -95.418483016006121, 29.757623194460045 ], [ -95.418357015678353, 29.757577194992429 ], [ -95.418296015334803, 29.757555195103709 ], [ -95.41811901540548, 29.757704194964578 ], [ -95.417990015757951, 29.757928194968983 ], [ -95.417826015200575, 29.758090195391599 ], [ -95.417309015626458, 29.758388195370145 ], [ -95.416998014993894, 29.758675195111568 ], [ -95.416429015560908, 29.759711195443323 ], [ -95.416158014873702, 29.760071195671426 ], [ -95.416034014868259, 29.760164195180518 ], [ -95.415589014697375, 29.760205195863509 ], [ -95.415466014928583, 29.760167195733349 ], [ -95.414620014715055, 29.759906195537326 ], [ -95.414173014940374, 29.759844195496431 ], [ -95.413691014788412, 29.759929195316353 ], [ -95.413462014151577, 29.760081195186629 ], [ -95.413292014369389, 29.760283195165094 ], [ -95.413181014745462, 29.760553195312102 ], [ -95.413248014659828, 29.7613011955141 ], [ -95.413245014604939, 29.761695195805597 ], [ -95.413244014302663, 29.762087196039747 ], [ -95.413197013997348, 29.762222195654559 ], [ -95.41298401428881, 29.762384195733304 ], [ -95.412625014648398, 29.762331196347052 ], [ -95.412107014350042, 29.762123196113137 ], [ -95.411744014379138, 29.762058195624235 ], [ -95.410883013511963, 29.761565195762714 ], [ -95.409294013623537, 29.760817196112821 ], [ -95.408842013425613, 29.760619196243351 ], [ -95.408632013000044, 29.760527195431958 ], [ -95.408657012890586, 29.760654195958828 ], [ -95.408710013446765, 29.76093019572393 ], [ -95.408894013306721, 29.761525195688829 ], [ -95.408923013363307, 29.761616196141567 ], [ -95.408957013922048, 29.761729195650179 ], [ -95.408977013023915, 29.761798196322303 ], [ -95.409153013922221, 29.76242219582052 ], [ -95.409300013759889, 29.763130196194165 ], [ -95.409368013223911, 29.763922196384492 ], [ -95.409390013654061, 29.76442819658541 ], [ -95.409487013614282, 29.765337196701992 ], [ -95.409395013529391, 29.765420196850641 ], [ -95.409391013288953, 29.766079197120096 ], [ -95.409717013926922, 29.766073196892251 ], [ -95.409949014050738, 29.766055196982393 ], [ -95.410067014253897, 29.766059196796917 ], [ -95.410511013932521, 29.766054196601491 ], [ -95.411468014548944, 29.766047196828438 ], [ -95.412418014666983, 29.766032196648343 ], [ -95.413354015081026, 29.766015196578749 ], [ -95.415101015078747, 29.765977196499492 ], [ -95.416316015704723, 29.765934196916316 ], [ -95.416298015676631, 29.765335196300676 ], [ -95.416293015831769, 29.765152196582964 ], [ -95.416284015194719, 29.764489196395672 ], [ -95.416283015831041, 29.764394195983808 ], [ -95.416257015332818, 29.763470196067946 ], [ -95.416256015777336, 29.763346196035599 ], [ -95.416255015438651, 29.763324195959285 ], [ -95.416247015813767, 29.763148196328025 ], [ -95.416246015764017, 29.763084195732656 ], [ -95.416223015392788, 29.762070196135632 ], [ -95.416217014939804, 29.761487195775768 ], [ -95.416943015497012, 29.761417195532932 ], [ -95.417570015647371, 29.76138319542385 ], [ -95.418386015762138, 29.761375195804217 ], [ -95.41921101625941, 29.761368195381234 ], [ -95.420085016703794, 29.761359195270483 ], [ -95.420927016324399, 29.761364195123416 ], [ -95.421466016172388, 29.761327195368249 ], [ -95.422175016455455, 29.761380195941491 ], [ -95.422687016862582, 29.761506195506929 ], [ -95.422756016869641, 29.761522195686055 ], [ -95.423638017526841, 29.761987195918014 ], [ -95.424191017613879, 29.762556195701734 ], [ -95.424609017850898, 29.762966195669485 ], [ -95.425056017398731, 29.763217195638383 ], [ -95.425800017756416, 29.763541195692678 ], [ -95.427319018549383, 29.763511196240085 ], [ -95.427304017858731, 29.763200195524394 ], [ -95.427242018453995, 29.762974195522421 ], [ -95.42708501791877, 29.762792195965115 ], [ -95.42704301767283, 29.762659195875024 ], [ -95.427038018056223, 29.762446195480855 ], [ -95.427166018359529, 29.762498195485655 ], [ -95.427491018033407, 29.762161195287788 ], [ -95.427763018413941, 29.761903195129516 ], [ -95.428221017907319, 29.760998195520255 ], [ -95.428302017785185, 29.760640195350266 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 142, "Tract": "48201552004", "Area_SqMi": 0.6743543055721648, "total_2009": 992, "total_2010": 807, "total_2011": 1032, "total_2012": 1809, "total_2013": 2177, "total_2014": 1746, "total_2015": 1857, "total_2016": 1681, "total_2017": 1360, "total_2018": 1330, "total_2019": 1655, "total_2020": 1660, "age1": 282, "age2": 789, "age3": 328, "earn1": 142, "earn2": 300, "earn3": 957, "naics_s01": 0, "naics_s02": 0, "naics_s03": 29, "naics_s04": 343, "naics_s05": 144, "naics_s06": 24, "naics_s07": 236, "naics_s08": 1, "naics_s09": 0, "naics_s10": 107, "naics_s11": 40, "naics_s12": 233, "naics_s13": 4, "naics_s14": 46, "naics_s15": 9, "naics_s16": 76, "naics_s17": 0, "naics_s18": 81, "naics_s19": 26, "naics_s20": 0, "race1": 1054, "race2": 204, "race3": 15, "race4": 95, "race5": 1, "race6": 30, "ethnicity1": 1035, "ethnicity2": 364, "edu1": 189, "edu2": 323, "edu3": 326, "edu4": 279, "Shape_Length": 19805.988066693746, "Shape_Area": 18799843.870423034, "total_2021": 1729, "total_2022": 1399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.603543069829627, 29.912725219806525 ], [ -95.603510069987536, 29.910666219972235 ], [ -95.603508069503675, 29.910268219400088 ], [ -95.603507070166586, 29.910040219953341 ], [ -95.603526069727479, 29.909216219875315 ], [ -95.603524069499244, 29.908838219207308 ], [ -95.603515069811209, 29.908542219598562 ], [ -95.603514069242607, 29.908498219175311 ], [ -95.603511070134601, 29.908363219623915 ], [ -95.603489069632118, 29.908149219019947 ], [ -95.603451069452532, 29.907940218956135 ], [ -95.603395069384703, 29.907719219392934 ], [ -95.603326069196214, 29.907529219022045 ], [ -95.603222069192626, 29.907288219196829 ], [ -95.603129069779627, 29.907110219258389 ], [ -95.603082069856356, 29.907034218980762 ], [ -95.603023069210181, 29.906937218927499 ], [ -95.602681069845289, 29.90645621915213 ], [ -95.602570069814263, 29.90627421863439 ], [ -95.602469069504949, 29.906081218796178 ], [ -95.602413069615508, 29.90595121870664 ], [ -95.602384068873562, 29.905884218482353 ], [ -95.602320069693434, 29.905692218458 ], [ -95.602296069397653, 29.905601219036665 ], [ -95.602245069714613, 29.905440218410813 ], [ -95.602202069410438, 29.905261219006423 ], [ -95.602172068918833, 29.905075218930619 ], [ -95.602152069235558, 29.904861218808065 ], [ -95.602147069332489, 29.904551218987898 ], [ -95.602171069316825, 29.904390218222833 ], [ -95.602206069361159, 29.904232218126587 ], [ -95.602244068825385, 29.904102218675554 ], [ -95.602346069558095, 29.903833218727375 ], [ -95.602470069247147, 29.903548217951375 ], [ -95.602515069229071, 29.903458218091366 ], [ -95.602544069177199, 29.903408218643484 ], [ -95.60255906905806, 29.90337521852631 ], [ -95.602623069601208, 29.903262218318943 ], [ -95.602689068937622, 29.903146217984368 ], [ -95.602796069366889, 29.902948217923928 ], [ -95.602502069165482, 29.902706218481185 ], [ -95.600020068313569, 29.90096121760455 ], [ -95.599602068125847, 29.900667217643502 ], [ -95.599423068548319, 29.900847217628112 ], [ -95.599341067933622, 29.900933218275096 ], [ -95.599255068658209, 29.901023217934789 ], [ -95.599109068174556, 29.90118121773904 ], [ -95.598700068127599, 29.901576217844838 ], [ -95.598500068674795, 29.90174521809428 ], [ -95.598188068408035, 29.901980218236599 ], [ -95.597922067947025, 29.902162218552398 ], [ -95.597728068271508, 29.902281218216391 ], [ -95.597415068034408, 29.902450218447221 ], [ -95.597186068299067, 29.902564218656547 ], [ -95.596836067727281, 29.90272121826947 ], [ -95.596590067726993, 29.902820218794737 ], [ -95.596365067304461, 29.902925218400831 ], [ -95.595977067762576, 29.903129218472074 ], [ -95.595800067714364, 29.903233218919901 ], [ -95.595512067836893, 29.903429218646938 ], [ -95.595297067674025, 29.903592218764238 ], [ -95.595052067069503, 29.903799218746883 ], [ -95.594882067237876, 29.90395421872903 ], [ -95.594733067796923, 29.904105218665325 ], [ -95.594628066831518, 29.90421221884737 ], [ -95.594224067068652, 29.904641218837767 ], [ -95.592966066958354, 29.905972219481832 ], [ -95.592655067348744, 29.906300219368273 ], [ -95.592628066617351, 29.906328219440155 ], [ -95.592133066609094, 29.906850219111615 ], [ -95.591982066884455, 29.907010219897781 ], [ -95.591488066325681, 29.907538219473977 ], [ -95.591281066910227, 29.907752219756127 ], [ -95.591196066098206, 29.907844219990018 ], [ -95.590961066850397, 29.908087219521274 ], [ -95.590751066363467, 29.908290219811001 ], [ -95.590589066809613, 29.908432219375864 ], [ -95.590315065893861, 29.908648220165329 ], [ -95.590031066425283, 29.908848220036596 ], [ -95.589715066039346, 29.909047220201867 ], [ -95.589464066693637, 29.909186220288561 ], [ -95.589324065942222, 29.909255220299379 ], [ -95.58918306562424, 29.909326220140652 ], [ -95.588799065678998, 29.909488220029814 ], [ -95.588373065589352, 29.909641220220959 ], [ -95.588355065602613, 29.909645220451285 ], [ -95.588084066370797, 29.909725220028658 ], [ -95.587737065842745, 29.90980521998554 ], [ -95.587490065368073, 29.909854220401453 ], [ -95.587143065113651, 29.909910220282846 ], [ -95.586821065134941, 29.909941220171383 ], [ -95.586642065589018, 29.909950220637111 ], [ -95.58656906568828, 29.909945220249629 ], [ -95.586491065316281, 29.909962220165532 ], [ -95.586260065848876, 29.909963220224377 ], [ -95.585014064899354, 29.909973220567228 ], [ -95.58496006546018, 29.90997122007807 ], [ -95.584569064824947, 29.909980220271304 ], [ -95.584596065429253, 29.912458220898284 ], [ -95.584604065620553, 29.91312122121828 ], [ -95.584612065247711, 29.914098221589498 ], [ -95.584623065324706, 29.915185221587382 ], [ -95.584627064902591, 29.91548022136114 ], [ -95.584687064993133, 29.915474221657512 ], [ -95.586201065670153, 29.915463221705096 ], [ -95.586485065740348, 29.91546122096435 ], [ -95.58652906554812, 29.915461221760054 ], [ -95.586827065567817, 29.915527221536067 ], [ -95.587101066186136, 29.915576221424985 ], [ -95.587299065717531, 29.915617221123128 ], [ -95.588056065771198, 29.915868221594422 ], [ -95.588597065912367, 29.916025221255126 ], [ -95.589057066740764, 29.916146221601043 ], [ -95.589477066778315, 29.916248221007809 ], [ -95.589782066097555, 29.916299221523857 ], [ -95.589863067087563, 29.916339221110849 ], [ -95.590156066612806, 29.916356221032096 ], [ -95.590305067189135, 29.916359221281088 ], [ -95.590574066721643, 29.916348221097934 ], [ -95.590770067115685, 29.916334221623199 ], [ -95.591075067008717, 29.916297221108412 ], [ -95.591367067199798, 29.916246221194665 ], [ -95.59162806691549, 29.916184221682965 ], [ -95.591888067406501, 29.916109220920276 ], [ -95.592125066786934, 29.916030221193747 ], [ -95.592344066733858, 29.915942221203629 ], [ -95.592583067456047, 29.915834221314494 ], [ -95.592772067722919, 29.915737221217093 ], [ -95.593061067901687, 29.915567221333546 ], [ -95.593234067759099, 29.915454220694048 ], [ -95.593402067670198, 29.915332221546119 ], [ -95.593591067196442, 29.915178221078179 ], [ -95.593757067220068, 29.915036221189091 ], [ -95.593889067360195, 29.91491222107506 ], [ -95.594083067513722, 29.914696221005279 ], [ -95.594229068101583, 29.914510220769252 ], [ -95.594363067209059, 29.914325220951898 ], [ -95.594497067973109, 29.914114220649445 ], [ -95.594540067693316, 29.91403922040265 ], [ -95.594628067523217, 29.913889220982959 ], [ -95.594705067612509, 29.913727220702082 ], [ -95.594740067619384, 29.913641220842727 ], [ -95.59479006751566, 29.913514220429288 ], [ -95.594815067602511, 29.913461220292309 ], [ -95.594836067632428, 29.913400220250306 ], [ -95.594866067994801, 29.913271220416643 ], [ -95.594934068059388, 29.913027220396053 ], [ -95.594973067275532, 29.912823220339885 ], [ -95.594977067367921, 29.912797220336973 ], [ -95.595407068267633, 29.912788220425821 ], [ -95.597972068448755, 29.912775220795659 ], [ -95.598260068156122, 29.912774220057024 ], [ -95.599379069216198, 29.912768220424216 ], [ -95.599957069103667, 29.912765220504703 ], [ -95.603187069565664, 29.912714220576941 ], [ -95.603314070098861, 29.912720220258031 ], [ -95.603543069829627, 29.912725219806525 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 143, "Tract": "48201551902", "Area_SqMi": 0.54565009114496765, "total_2009": 1321, "total_2010": 1137, "total_2011": 1253, "total_2012": 1240, "total_2013": 1302, "total_2014": 1323, "total_2015": 1305, "total_2016": 1275, "total_2017": 889, "total_2018": 808, "total_2019": 793, "total_2020": 743, "age1": 262, "age2": 425, "age3": 165, "earn1": 111, "earn2": 309, "earn3": 432, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 14, "naics_s06": 13, "naics_s07": 648, "naics_s08": 0, "naics_s09": 0, "naics_s10": 15, "naics_s11": 107, "naics_s12": 11, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 32, "naics_s19": 0, "naics_s20": 0, "race1": 626, "race2": 137, "race3": 12, "race4": 65, "race5": 1, "race6": 11, "ethnicity1": 511, "ethnicity2": 341, "edu1": 129, "edu2": 167, "edu3": 172, "edu4": 122, "Shape_Length": 20366.789887550985, "Shape_Area": 15211790.651657276, "total_2021": 793, "total_2022": 852 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.599423068548319, 29.900847217628112 ], [ -95.599602068125847, 29.900667217643502 ], [ -95.599219068794497, 29.900390217896689 ], [ -95.595885067766616, 29.898016217272044 ], [ -95.595139066739222, 29.897489217230174 ], [ -95.589654065716388, 29.893632217251753 ], [ -95.588678065064229, 29.892949216884343 ], [ -95.588081065205145, 29.892567216680625 ], [ -95.585322064791939, 29.890628216319364 ], [ -95.585032063919144, 29.8904252166299 ], [ -95.584980064282391, 29.890388215932301 ], [ -95.584812063839252, 29.89058221626129 ], [ -95.584729064119344, 29.890669216394443 ], [ -95.584625063742976, 29.890776216547181 ], [ -95.584517063760643, 29.890886216080087 ], [ -95.584406063836269, 29.891064216344333 ], [ -95.584381064600862, 29.892883216392253 ], [ -95.584409064173428, 29.895588217380386 ], [ -95.584488064563359, 29.897088217942756 ], [ -95.584510064638792, 29.897345217855566 ], [ -95.584516064909607, 29.897415217581965 ], [ -95.584511064299932, 29.897692218222659 ], [ -95.585124064739759, 29.89772821799739 ], [ -95.585465065011491, 29.897827217564373 ], [ -95.586096064764291, 29.898069217845492 ], [ -95.587364065107238, 29.898646218185345 ], [ -95.587610065683293, 29.898728217653854 ], [ -95.587793065616353, 29.898767217913637 ], [ -95.587925064861722, 29.898783217713511 ], [ -95.588678065329773, 29.898791217540108 ], [ -95.588854065138477, 29.898793217718023 ], [ -95.588669065829222, 29.898995217761886 ], [ -95.588400065044283, 29.899295218434727 ], [ -95.588223065685895, 29.899520217674244 ], [ -95.588080065767713, 29.899728218246892 ], [ -95.587972064948218, 29.89991121814947 ], [ -95.587860065086673, 29.900133217749559 ], [ -95.587804065107733, 29.90026021795796 ], [ -95.587753065002772, 29.900391218241168 ], [ -95.587709065175176, 29.900523217856822 ], [ -95.587671065597306, 29.900654218346681 ], [ -95.587614064997908, 29.900913218457735 ], [ -95.587595065762216, 29.90103921801968 ], [ -95.587574065634257, 29.901285218520563 ], [ -95.587570065580053, 29.901654218602129 ], [ -95.587574065240801, 29.902046218460892 ], [ -95.587579065559908, 29.90255421855198 ], [ -95.587583065345086, 29.902925218942048 ], [ -95.58758706498368, 29.903442219207612 ], [ -95.587606065250029, 29.903763219100483 ], [ -95.587629065215722, 29.903942218995997 ], [ -95.587674066006485, 29.904186218672603 ], [ -95.587693065874959, 29.9042742192335 ], [ -95.587724065939184, 29.904381219089906 ], [ -95.587766065109307, 29.904526219086719 ], [ -95.587794065931234, 29.904595219098557 ], [ -95.587815065778955, 29.904664218896947 ], [ -95.587843065280182, 29.90473721907858 ], [ -95.587938065267281, 29.904955219441621 ], [ -95.588040065690507, 29.905155218911229 ], [ -95.588191066111222, 29.905405219415687 ], [ -95.588339065952908, 29.905619219098689 ], [ -95.588625066326316, 29.905967219317461 ], [ -95.588788065680703, 29.906138219218139 ], [ -95.588756066347216, 29.906166219643644 ], [ -95.588689066340592, 29.906207219185916 ], [ -95.58828906550707, 29.906450219484366 ], [ -95.586850065600487, 29.907244219261724 ], [ -95.586761065771753, 29.907297219481087 ], [ -95.586680065016282, 29.907352220125276 ], [ -95.586607065472933, 29.907409219457644 ], [ -95.586543065418681, 29.90746921946991 ], [ -95.586487065812889, 29.907533220088965 ], [ -95.586437064861414, 29.907599219939517 ], [ -95.586395065130617, 29.907667219422443 ], [ -95.586358064960308, 29.907738219867223 ], [ -95.586326065816181, 29.907811219455695 ], [ -95.586299065522155, 29.90788922010287 ], [ -95.586279065729457, 29.907969220216824 ], [ -95.586268065186417, 29.90805322020708 ], [ -95.586263065448506, 29.908139219510431 ], [ -95.586272064971894, 29.909170220424368 ], [ -95.586257065171253, 29.909861220591008 ], [ -95.586260065848876, 29.909963220224377 ], [ -95.586491065316281, 29.909962220165532 ], [ -95.58656906568828, 29.909945220249629 ], [ -95.586642065589018, 29.909950220637111 ], [ -95.586821065134941, 29.909941220171383 ], [ -95.587143065113651, 29.909910220282846 ], [ -95.587490065368073, 29.909854220401453 ], [ -95.587737065842745, 29.90980521998554 ], [ -95.588084066370797, 29.909725220028658 ], [ -95.588355065602613, 29.909645220451285 ], [ -95.588373065589352, 29.909641220220959 ], [ -95.588799065678998, 29.909488220029814 ], [ -95.58918306562424, 29.909326220140652 ], [ -95.589324065942222, 29.909255220299379 ], [ -95.589464066693637, 29.909186220288561 ], [ -95.589715066039346, 29.909047220201867 ], [ -95.590031066425283, 29.908848220036596 ], [ -95.590315065893861, 29.908648220165329 ], [ -95.590589066809613, 29.908432219375864 ], [ -95.590751066363467, 29.908290219811001 ], [ -95.590961066850397, 29.908087219521274 ], [ -95.591196066098206, 29.907844219990018 ], [ -95.591281066910227, 29.907752219756127 ], [ -95.591488066325681, 29.907538219473977 ], [ -95.591982066884455, 29.907010219897781 ], [ -95.592133066609094, 29.906850219111615 ], [ -95.592628066617351, 29.906328219440155 ], [ -95.592655067348744, 29.906300219368273 ], [ -95.592966066958354, 29.905972219481832 ], [ -95.594224067068652, 29.904641218837767 ], [ -95.594628066831518, 29.90421221884737 ], [ -95.594733067796923, 29.904105218665325 ], [ -95.594882067237876, 29.90395421872903 ], [ -95.595052067069503, 29.903799218746883 ], [ -95.595297067674025, 29.903592218764238 ], [ -95.595512067836893, 29.903429218646938 ], [ -95.595800067714364, 29.903233218919901 ], [ -95.595977067762576, 29.903129218472074 ], [ -95.596365067304461, 29.902925218400831 ], [ -95.596590067726993, 29.902820218794737 ], [ -95.596836067727281, 29.90272121826947 ], [ -95.597186068299067, 29.902564218656547 ], [ -95.597415068034408, 29.902450218447221 ], [ -95.597728068271508, 29.902281218216391 ], [ -95.597922067947025, 29.902162218552398 ], [ -95.598188068408035, 29.901980218236599 ], [ -95.598500068674795, 29.90174521809428 ], [ -95.598700068127599, 29.901576217844838 ], [ -95.599109068174556, 29.90118121773904 ], [ -95.599255068658209, 29.901023217934789 ], [ -95.599341067933622, 29.900933218275096 ], [ -95.599423068548319, 29.900847217628112 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 144, "Tract": "48201250101", "Area_SqMi": 3.1486407770071558, "total_2009": 674, "total_2010": 611, "total_2011": 707, "total_2012": 968, "total_2013": 906, "total_2014": 1021, "total_2015": 898, "total_2016": 777, "total_2017": 800, "total_2018": 888, "total_2019": 1054, "total_2020": 1013, "age1": 235, "age2": 707, "age3": 274, "earn1": 134, "earn2": 237, "earn3": 845, "naics_s01": 78, "naics_s02": 2, "naics_s03": 24, "naics_s04": 179, "naics_s05": 546, "naics_s06": 46, "naics_s07": 32, "naics_s08": 47, "naics_s09": 0, "naics_s10": 0, "naics_s11": 80, "naics_s12": 7, "naics_s13": 0, "naics_s14": 101, "naics_s15": 1, "naics_s16": 0, "naics_s17": 0, "naics_s18": 56, "naics_s19": 17, "naics_s20": 0, "race1": 897, "race2": 202, "race3": 11, "race4": 84, "race5": 2, "race6": 20, "ethnicity1": 770, "ethnicity2": 446, "edu1": 212, "edu2": 298, "edu3": 303, "edu4": 168, "Shape_Length": 42318.584685491791, "Shape_Area": 87778715.910411671, "total_2021": 911, "total_2022": 1216 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.295891992887945, 29.940136236503132 ], [ -95.295987992361859, 29.939967235980316 ], [ -95.295748992338176, 29.939971236158019 ], [ -95.295513992782546, 29.939975236188612 ], [ -95.295301992495055, 29.93998323647158 ], [ -95.295162992592708, 29.939985236697456 ], [ -95.293794991403175, 29.94003223686045 ], [ -95.292542991620365, 29.940072236224058 ], [ -95.291318991622376, 29.940072236301351 ], [ -95.288332989990622, 29.940121236739678 ], [ -95.287927990131806, 29.940138236223913 ], [ -95.287679990704575, 29.94016523684606 ], [ -95.287485990044374, 29.940174237096201 ], [ -95.286592990534331, 29.940242236902762 ], [ -95.283801989514401, 29.940483236947745 ], [ -95.283335988777083, 29.940552237207591 ], [ -95.283191989138757, 29.94068423701755 ], [ -95.282794989041847, 29.941056236856081 ], [ -95.282511988814022, 29.941322236682076 ], [ -95.282303988691382, 29.941500237065561 ], [ -95.281794988992729, 29.941968237266277 ], [ -95.281752989097825, 29.942006237562303 ], [ -95.281681989160205, 29.942069237363551 ], [ -95.280669988586013, 29.942994237311652 ], [ -95.280011988166592, 29.943596237693534 ], [ -95.279520988863737, 29.944056238128162 ], [ -95.279114988040718, 29.944394238273546 ], [ -95.278563988692738, 29.944911238245336 ], [ -95.274103987038586, 29.949022238912907 ], [ -95.272297987286251, 29.950694238976425 ], [ -95.272226987330171, 29.950758239461159 ], [ -95.270992986977262, 29.951901239903773 ], [ -95.270184986423004, 29.952651239609008 ], [ -95.26969198603831, 29.953109239567645 ], [ -95.268178985469234, 29.95451724026093 ], [ -95.26811798595952, 29.954573240333378 ], [ -95.266774985900199, 29.955780240982893 ], [ -95.266368985072177, 29.955970240795494 ], [ -95.266354985557513, 29.956174240937688 ], [ -95.26631498512829, 29.956760240436523 ], [ -95.266313985996049, 29.956778241011289 ], [ -95.265451985811652, 29.960227241565661 ], [ -95.265298985805117, 29.960893241504632 ], [ -95.265076985460041, 29.961853241756899 ], [ -95.264564985928544, 29.964074242360685 ], [ -95.264290985091421, 29.965259242403075 ], [ -95.264097985917971, 29.966078243157895 ], [ -95.263978985459815, 29.966581243095401 ], [ -95.263831985954212, 29.967208243018035 ], [ -95.263556985837525, 29.968372242968258 ], [ -95.263274985419031, 29.969566243952105 ], [ -95.263213984921052, 29.969833243176534 ], [ -95.263183985809576, 29.969964243336385 ], [ -95.263136985349163, 29.970166243555212 ], [ -95.263096984974212, 29.970338243674387 ], [ -95.262917985871255, 29.971114243687683 ], [ -95.26282798542799, 29.971506243623256 ], [ -95.262776985869536, 29.97172524355824 ], [ -95.26263698526995, 29.972332244370474 ], [ -95.261832985166308, 29.97561224523961 ], [ -95.261683984862373, 29.976221245181925 ], [ -95.260938985442365, 29.979310245443902 ], [ -95.262753985943263, 29.979634245655181 ], [ -95.268673987388993, 29.980692245333572 ], [ -95.269818987180102, 29.980896245190333 ], [ -95.270098988144696, 29.980870246012199 ], [ -95.270652988190022, 29.980816246004494 ], [ -95.271375988244927, 29.980804245334895 ], [ -95.272083988022075, 29.980805245547295 ], [ -95.272419988120319, 29.980852245352263 ], [ -95.272689988475264, 29.980890245628657 ], [ -95.272950988008461, 29.980926245360529 ], [ -95.27341298822715, 29.980990245514604 ], [ -95.273923988152447, 29.981109245840159 ], [ -95.274314988291678, 29.981254245953377 ], [ -95.274625988379086, 29.981388245814781 ], [ -95.275099988527771, 29.981637245861606 ], [ -95.275241989465542, 29.981684245169447 ], [ -95.275473988742817, 29.981743245942237 ], [ -95.276122988783428, 29.982041245753994 ], [ -95.276219989684037, 29.982079245317163 ], [ -95.27636398979142, 29.982136245775024 ], [ -95.276418989323886, 29.982158245931227 ], [ -95.276584988969418, 29.982244245520029 ], [ -95.276789989662703, 29.982322245753771 ], [ -95.276965989109797, 29.982358245820105 ], [ -95.277170989289232, 29.982400246011615 ], [ -95.278056989712354, 29.980059245148265 ], [ -95.27833898976013, 29.979371244804174 ], [ -95.278607990077333, 29.978659244673864 ], [ -95.279298990334055, 29.97731424460806 ], [ -95.279855990426881, 29.976357244545962 ], [ -95.280587990463744, 29.974726244093347 ], [ -95.280842990242817, 29.974117243708228 ], [ -95.281287990160763, 29.97311424349563 ], [ -95.2822129906139, 29.971032242996142 ], [ -95.284515990835359, 29.965911242403724 ], [ -95.284601990416675, 29.965719241780377 ], [ -95.284700990754075, 29.965477242235664 ], [ -95.285436990911492, 29.963685241838935 ], [ -95.285869990890689, 29.962726241386719 ], [ -95.287334991101275, 29.95945124102105 ], [ -95.287699991157695, 29.958721240524447 ], [ -95.289136991034965, 29.955474239860013 ], [ -95.289545991809078, 29.954535239132706 ], [ -95.289866991323038, 29.95382323973849 ], [ -95.289933991023531, 29.953678239385024 ], [ -95.290454991883379, 29.952508239478089 ], [ -95.290592991766673, 29.952198238907812 ], [ -95.290670991185877, 29.952025239154761 ], [ -95.291542991841396, 29.95005423857296 ], [ -95.291764991872412, 29.949553238460862 ], [ -95.292075992111805, 29.948804238147517 ], [ -95.292361992342023, 29.948067238528246 ], [ -95.292489992196479, 29.947784238157617 ], [ -95.292850991445164, 29.946980238256966 ], [ -95.292936991804865, 29.946838237827709 ], [ -95.29315599179742, 29.946337238161146 ], [ -95.294009992377966, 29.944316237422413 ], [ -95.294674991991513, 29.942805236666242 ], [ -95.295230992550202, 29.941598236299821 ], [ -95.295460992243889, 29.941057236275668 ], [ -95.295692992566231, 29.940577236902584 ], [ -95.295793991968509, 29.940353236175426 ], [ -95.295891992887945, 29.940136236503132 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 145, "Tract": "48201553602", "Area_SqMi": 0.73392892422674905, "total_2009": 811, "total_2010": 744, "total_2011": 622, "total_2012": 647, "total_2013": 690, "total_2014": 769, "total_2015": 739, "total_2016": 694, "total_2017": 637, "total_2018": 693, "total_2019": 702, "total_2020": 626, "age1": 151, "age2": 312, "age3": 140, "earn1": 147, "earn2": 253, "earn3": 203, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 44, "naics_s06": 13, "naics_s07": 19, "naics_s08": 5, "naics_s09": 6, "naics_s10": 2, "naics_s11": 48, "naics_s12": 31, "naics_s13": 0, "naics_s14": 44, "naics_s15": 60, "naics_s16": 160, "naics_s17": 17, "naics_s18": 119, "naics_s19": 22, "naics_s20": 0, "race1": 418, "race2": 121, "race3": 8, "race4": 43, "race5": 1, "race6": 12, "ethnicity1": 422, "ethnicity2": 181, "edu1": 93, "edu2": 124, "edu3": 160, "edu4": 75, "Shape_Length": 30552.525212252789, "Shape_Area": 20460682.275533982, "total_2021": 735, "total_2022": 603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.496397047870531, 30.020087245609655 ], [ -95.496328047863585, 30.01996824588602 ], [ -95.495874047619409, 30.018895245427149 ], [ -95.495430047588798, 30.017481245626772 ], [ -95.495174046780221, 30.016489244950133 ], [ -95.495118047215016, 30.016200244578371 ], [ -95.495096047000445, 30.016073244995297 ], [ -95.493618046724436, 30.015838244785215 ], [ -95.493319046765563, 30.015545244947184 ], [ -95.493161046417612, 30.015215244635851 ], [ -95.492911045942904, 30.015091244450957 ], [ -95.492540046064704, 30.015070245274941 ], [ -95.492214046464866, 30.015223244838424 ], [ -95.492110046117176, 30.01533424517071 ], [ -95.491736045618197, 30.016014244726161 ], [ -95.491148046205481, 30.016561245547052 ], [ -95.491004045632266, 30.017047245415458 ], [ -95.49108304553846, 30.017726245068225 ], [ -95.490759046249181, 30.018266245926533 ], [ -95.490581045638649, 30.018667245377554 ], [ -95.490328045723274, 30.019933246005859 ], [ -95.489937045503723, 30.020125246026648 ], [ -95.489485045602606, 30.020132245731439 ], [ -95.488815045039615, 30.020309246072248 ], [ -95.488445045830176, 30.020336246134057 ], [ -95.488211045849113, 30.020405245695077 ], [ -95.488083045214182, 30.020494246526813 ], [ -95.488003044926501, 30.020656245847306 ], [ -95.488303045503471, 30.021126245979229 ], [ -95.488174045485948, 30.021500246574877 ], [ -95.487863045476615, 30.021782246846779 ], [ -95.487749045695011, 30.021822246779607 ], [ -95.48759604578477, 30.021778246301192 ], [ -95.48747404541011, 30.021796246263705 ], [ -95.487163044868211, 30.022077246711316 ], [ -95.486584045289348, 30.023067247071676 ], [ -95.486034045063363, 30.023870246823606 ], [ -95.48579804503521, 30.0244772473614 ], [ -95.485734044477994, 30.024519247470042 ], [ -95.485500044624402, 30.0245642469798 ], [ -95.485227044327317, 30.024486247205182 ], [ -95.484948044651063, 30.024339246928637 ], [ -95.484769045104585, 30.024149246895131 ], [ -95.484468044062311, 30.023963246917418 ], [ -95.484335044733953, 30.023827247098282 ], [ -95.484134044564016, 30.023359246857467 ], [ -95.48471804421682, 30.021912246975376 ], [ -95.48481704418613, 30.0215272465718 ], [ -95.484816044854426, 30.021349246577273 ], [ -95.484635044062244, 30.020916245998098 ], [ -95.484070044181166, 30.020405246057138 ], [ -95.483714043899766, 30.020158246068775 ], [ -95.48307004439998, 30.020036246184162 ], [ -95.482535044351962, 30.020014246315164 ], [ -95.48144004334749, 30.020123246209668 ], [ -95.481130043798785, 30.020001246033029 ], [ -95.480658042950949, 30.01981524632475 ], [ -95.480415043167341, 30.019782245975442 ], [ -95.480177043710142, 30.019836246300784 ], [ -95.480043043655925, 30.019917246408038 ], [ -95.479605042966455, 30.020482246841876 ], [ -95.479469042849544, 30.020613246647208 ], [ -95.479083043259223, 30.020986246944258 ], [ -95.478925042828095, 30.021355246529659 ], [ -95.478888043128535, 30.021639246453322 ], [ -95.478864043162943, 30.021763246359246 ], [ -95.47878004314353, 30.021841246791226 ], [ -95.478184042731101, 30.022080246868029 ], [ -95.477819043098975, 30.022318246845572 ], [ -95.477545042589952, 30.022627247377077 ], [ -95.477578042359923, 30.023120246953411 ], [ -95.477413042440318, 30.023748247126072 ], [ -95.477297042778176, 30.023978247078936 ], [ -95.476993042479535, 30.02416224712919 ], [ -95.476548042727146, 30.024316247289285 ], [ -95.476378042859295, 30.024376247474674 ], [ -95.476425042729318, 30.024448247474599 ], [ -95.476852042845181, 30.025117247665989 ], [ -95.477026042411694, 30.025409247155316 ], [ -95.477202042471575, 30.025738247985977 ], [ -95.477406042947322, 30.026121247442358 ], [ -95.477572043088031, 30.026401247918933 ], [ -95.478393043660446, 30.027576247929471 ], [ -95.478589042881069, 30.027845248371605 ], [ -95.478820043249129, 30.028124248233873 ], [ -95.478931043698807, 30.028242248357923 ], [ -95.479091043586138, 30.028413248346453 ], [ -95.479960043565768, 30.029222248529731 ], [ -95.480722044279418, 30.029918248029094 ], [ -95.480819043454403, 30.030008248655353 ], [ -95.481179044515727, 30.030355248703746 ], [ -95.481212044038671, 30.030390248694335 ], [ -95.481321043598925, 30.030508248364001 ], [ -95.481459043607643, 30.030672248250898 ], [ -95.481597044289387, 30.030847248411536 ], [ -95.482410044210624, 30.031949248579842 ], [ -95.483126044456156, 30.032935248708807 ], [ -95.483389044389369, 30.033278249099979 ], [ -95.483703044604269, 30.033712249245927 ], [ -95.483770044821796, 30.033818249128309 ], [ -95.484117045116363, 30.034280248947173 ], [ -95.486531045728015, 30.037570249288954 ], [ -95.487127045791325, 30.038385249451345 ], [ -95.488056046638206, 30.039655249909018 ], [ -95.488499046844467, 30.040292250068443 ], [ -95.488569045915497, 30.040391250281591 ], [ -95.48981404640783, 30.039706250330948 ], [ -95.491527046862828, 30.038765249892414 ], [ -95.492150046880639, 30.038421250037224 ], [ -95.493072047350765, 30.037915249414883 ], [ -95.492720047279533, 30.037417249535899 ], [ -95.492646046997891, 30.037311249653147 ], [ -95.492334047170061, 30.036893249189518 ], [ -95.492260047547205, 30.036775249574802 ], [ -95.49192804749741, 30.036335249557503 ], [ -95.491852047013296, 30.036220248981234 ], [ -95.491692047012606, 30.036009248860125 ], [ -95.491392046640684, 30.035582249213508 ], [ -95.491160046563792, 30.035279248845878 ], [ -95.49096204642872, 30.034997249404725 ], [ -95.490893047116103, 30.034916248951937 ], [ -95.490834046877083, 30.034818249069161 ], [ -95.490457046218765, 30.034309248618126 ], [ -95.490308046138964, 30.034126248708382 ], [ -95.490278046110348, 30.034069248367139 ], [ -95.489956046659458, 30.033616248827883 ], [ -95.489878046251249, 30.033505248961042 ], [ -95.489798046269854, 30.03319724855373 ], [ -95.489790046614331, 30.033046249071447 ], [ -95.489798046092488, 30.03285024896719 ], [ -95.489835045882373, 30.032598248116116 ], [ -95.489860045883958, 30.032434248262973 ], [ -95.489830045936046, 30.03219424849852 ], [ -95.489812045906135, 30.03211124826451 ], [ -95.489776046177184, 30.03201224836797 ], [ -95.489684045740489, 30.031819248770372 ], [ -95.489428045943029, 30.031450247976249 ], [ -95.489396046617898, 30.031388248185348 ], [ -95.489347045801736, 30.031317247916217 ], [ -95.489301046223389, 30.031267248274347 ], [ -95.489126046284781, 30.031076248502341 ], [ -95.488869045788888, 30.030683248305355 ], [ -95.488397045928835, 30.030035247752235 ], [ -95.487744045605737, 30.029116247827101 ], [ -95.487478045833129, 30.028768248234375 ], [ -95.486792045483782, 30.027835247865955 ], [ -95.48584404474299, 30.026531247080964 ], [ -95.485772045066369, 30.02641724768251 ], [ -95.485158044523544, 30.025590247350671 ], [ -95.485047045194094, 30.025420247653333 ], [ -95.485162045326987, 30.025398247021258 ], [ -95.485901045176263, 30.025262247273261 ], [ -95.486025045325391, 30.02523524734471 ], [ -95.486240045031167, 30.025189247276383 ], [ -95.48646204495121, 30.025132247182249 ], [ -95.4871080450216, 30.024915247135255 ], [ -95.487613045309345, 30.024708247242206 ], [ -95.48789704544977, 30.02457724716335 ], [ -95.488268045336298, 30.024379247021297 ], [ -95.488773045975748, 30.024087246800551 ], [ -95.489235045544689, 30.023858246330057 ], [ -95.489625045540294, 30.023698246771126 ], [ -95.490296045638019, 30.02345324659813 ], [ -95.490455045564246, 30.023391246699649 ], [ -95.490787046190462, 30.023262246303883 ], [ -95.490996046308197, 30.023169246320418 ], [ -95.491100045886967, 30.023124246734692 ], [ -95.491418046544595, 30.022956246828439 ], [ -95.491589046217172, 30.022862246365317 ], [ -95.491843046384858, 30.022699246858352 ], [ -95.492080046804006, 30.02253424611175 ], [ -95.492352046791495, 30.022329246488503 ], [ -95.492565047035171, 30.022173245948959 ], [ -95.493325046487016, 30.021577246560256 ], [ -95.493643046738399, 30.02133924603605 ], [ -95.493975047000035, 30.021111245867715 ], [ -95.494316046518307, 30.020909246052476 ], [ -95.494670046670379, 30.020734246261625 ], [ -95.494919046953754, 30.020625246285896 ], [ -95.49530604703979, 30.020476245732855 ], [ -95.496397047870531, 30.020087245609655 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 146, "Tract": "48201432804", "Area_SqMi": 0.74946817053375481, "total_2009": 6625, "total_2010": 8083, "total_2011": 9062, "total_2012": 9412, "total_2013": 9514, "total_2014": 8618, "total_2015": 8640, "total_2016": 8792, "total_2017": 8935, "total_2018": 8676, "total_2019": 8561, "total_2020": 8447, "age1": 1589, "age2": 4499, "age3": 2223, "earn1": 2564, "earn2": 2922, "earn3": 2825, "naics_s01": 0, "naics_s02": 23, "naics_s03": 51, "naics_s04": 145, "naics_s05": 365, "naics_s06": 896, "naics_s07": 676, "naics_s08": 89, "naics_s09": 90, "naics_s10": 191, "naics_s11": 89, "naics_s12": 867, "naics_s13": 23, "naics_s14": 1115, "naics_s15": 244, "naics_s16": 2418, "naics_s17": 11, "naics_s18": 464, "naics_s19": 150, "naics_s20": 404, "race1": 4170, "race2": 1964, "race3": 67, "race4": 1937, "race5": 12, "race6": 161, "ethnicity1": 6270, "ethnicity2": 2041, "edu1": 1457, "edu2": 1597, "edu3": 1840, "edu4": 1828, "Shape_Length": 23458.525775178063, "Shape_Area": 20893889.866887446, "total_2021": 8497, "total_2022": 8311 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.52025803965202, 29.721245184386884 ], [ -95.520146039642384, 29.720860184102023 ], [ -95.520095039949155, 29.720533183539096 ], [ -95.520033040098568, 29.720260183774744 ], [ -95.52001403992854, 29.719635183342664 ], [ -95.519998039934265, 29.717757182935397 ], [ -95.519077039953402, 29.717653183714368 ], [ -95.518597039287556, 29.717633183054872 ], [ -95.5178390397854, 29.717629183127919 ], [ -95.517612039503575, 29.717640183428596 ], [ -95.51665403907684, 29.717665183287963 ], [ -95.515789038291459, 29.717675183561955 ], [ -95.51533303844532, 29.717672183007821 ], [ -95.515103038896967, 29.717679183566386 ], [ -95.514877038477508, 29.717672183088357 ], [ -95.514772038739437, 29.717676183787599 ], [ -95.51459703886519, 29.717682183774201 ], [ -95.5141430381628, 29.717699183215533 ], [ -95.513556038416155, 29.717724183739147 ], [ -95.513521038177061, 29.717551183743538 ], [ -95.513690038424073, 29.71674018341746 ], [ -95.513670037805838, 29.715877183258062 ], [ -95.51365003768835, 29.714840182938786 ], [ -95.513640038280272, 29.714646182764032 ], [ -95.513646038274373, 29.713985182845825 ], [ -95.513624037531102, 29.713070182774548 ], [ -95.512303038117722, 29.713080182198265 ], [ -95.512120037359182, 29.713084182271015 ], [ -95.511953037238371, 29.713088182678295 ], [ -95.510919036926595, 29.71309518258683 ], [ -95.510595037092401, 29.713096182574727 ], [ -95.510330037066353, 29.713070182807854 ], [ -95.510035037067667, 29.713010182554477 ], [ -95.509873037111234, 29.712977183053301 ], [ -95.509718036976906, 29.712926182878682 ], [ -95.509419036555244, 29.712819182762768 ], [ -95.509168036883281, 29.71269518245975 ], [ -95.508834037184883, 29.712496182811591 ], [ -95.508671036361989, 29.712379182604671 ], [ -95.508508036522827, 29.712243182421183 ], [ -95.507603036444578, 29.711453182798031 ], [ -95.507335036195997, 29.711219182291572 ], [ -95.506588036349427, 29.710595182333169 ], [ -95.506470035891397, 29.710489181927528 ], [ -95.501494035236135, 29.714895183004529 ], [ -95.499366034990501, 29.716783183708429 ], [ -95.499295034446661, 29.716846184099055 ], [ -95.499088033977188, 29.717030184187081 ], [ -95.494993033928495, 29.720662184856177 ], [ -95.494103033032147, 29.721452184870053 ], [ -95.493383032988419, 29.722083184781244 ], [ -95.493187032688596, 29.72225418518736 ], [ -95.491989032614867, 29.7233071851544 ], [ -95.491652032814528, 29.72360218538601 ], [ -95.492031032637058, 29.723568185113454 ], [ -95.4956250336908, 29.723246185181456 ], [ -95.496405034138974, 29.723195185605665 ], [ -95.497351034011956, 29.723134184756312 ], [ -95.498531034327115, 29.723064184968546 ], [ -95.500296034876015, 29.722896184970111 ], [ -95.501049035578745, 29.722798185276918 ], [ -95.502741036109754, 29.722665185299554 ], [ -95.504359035557115, 29.722553184406646 ], [ -95.506068036203473, 29.722378184582901 ], [ -95.507756037317861, 29.722259184280777 ], [ -95.50928903757324, 29.722153184377657 ], [ -95.51096303762337, 29.721992184301925 ], [ -95.51190203769734, 29.721915184779512 ], [ -95.513945038612249, 29.721733184684062 ], [ -95.515866039270406, 29.721607184551203 ], [ -95.517939039172589, 29.721425183890492 ], [ -95.52025803965202, 29.721245184386884 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 147, "Tract": "48201556100", "Area_SqMi": 0.82038255853681075, "total_2009": 464, "total_2010": 484, "total_2011": 475, "total_2012": 578, "total_2013": 567, "total_2014": 502, "total_2015": 468, "total_2016": 564, "total_2017": 561, "total_2018": 526, "total_2019": 498, "total_2020": 442, "age1": 139, "age2": 188, "age3": 95, "earn1": 136, "earn2": 145, "earn3": 141, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 14, "naics_s07": 92, "naics_s08": 5, "naics_s09": 0, "naics_s10": 14, "naics_s11": 16, "naics_s12": 30, "naics_s13": 0, "naics_s14": 5, "naics_s15": 7, "naics_s16": 90, "naics_s17": 9, "naics_s18": 120, "naics_s19": 3, "naics_s20": 0, "race1": 292, "race2": 90, "race3": 5, "race4": 30, "race5": 0, "race6": 5, "ethnicity1": 310, "ethnicity2": 112, "edu1": 54, "edu2": 66, "edu3": 81, "edu4": 82, "Shape_Length": 25463.444092147602, "Shape_Area": 22870861.633224577, "total_2021": 424, "total_2022": 422 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557375063149166, 30.030404245989942 ], [ -95.557325063501779, 30.030329246025758 ], [ -95.557178063440901, 30.030106245256878 ], [ -95.556649063002382, 30.029300245747805 ], [ -95.556617063476125, 30.029146245801748 ], [ -95.556573063611282, 30.029031245933012 ], [ -95.554476062279647, 30.026244245375217 ], [ -95.554236062034718, 30.02595224520601 ], [ -95.552990061650249, 30.024233244222767 ], [ -95.552950062515407, 30.024179244820175 ], [ -95.55121606205293, 30.021785244467591 ], [ -95.551109061668129, 30.021483244318112 ], [ -95.551090061406086, 30.021301244130619 ], [ -95.551065061440539, 30.021224244050913 ], [ -95.550983061022009, 30.021082243990946 ], [ -95.550932061284612, 30.021032244062624 ], [ -95.550855061689205, 30.020923244014458 ], [ -95.550623061737809, 30.020592243927108 ], [ -95.55045206169315, 30.020389244054272 ], [ -95.549807061469096, 30.019514243814772 ], [ -95.549195060960329, 30.018685243899558 ], [ -95.549031060451199, 30.018432243537148 ], [ -95.548873060485946, 30.018223243857879 ], [ -95.548703060295622, 30.018030243868534 ], [ -95.548671060407415, 30.018008243482047 ], [ -95.548621061219734, 30.018003243237608 ], [ -95.548545060424118, 30.018019243420579 ], [ -95.548204060383327, 30.018217243410376 ], [ -95.548052060468578, 30.018305243852083 ], [ -95.547894060217672, 30.018371243718583 ], [ -95.547692060222062, 30.018492243285507 ], [ -95.547597060139552, 30.018520243318758 ], [ -95.547521060024636, 30.018519243415732 ], [ -95.547458060197712, 30.018514243505368 ], [ -95.547370060912712, 30.018486244038993 ], [ -95.547288060090096, 30.018421243377251 ], [ -95.54716106003842, 30.018283244060221 ], [ -95.547067059879168, 30.018135243182922 ], [ -95.546808059786983, 30.017893243568192 ], [ -95.546447060163203, 30.017508243210557 ], [ -95.546397059661658, 30.017442243190551 ], [ -95.546296060586741, 30.017249243788719 ], [ -95.546227060345103, 30.017183243545258 ], [ -95.546176059623249, 30.017118243012348 ], [ -95.545936060172153, 30.016903243319586 ], [ -95.545519059455344, 30.016667243047966 ], [ -95.545304059471476, 30.016485243214451 ], [ -95.54519705933707, 30.016364243012681 ], [ -95.545144060003594, 30.016291243679476 ], [ -95.54507705992809, 30.016199242972505 ], [ -95.544995059623332, 30.016062243335362 ], [ -95.544900059417216, 30.015820243084903 ], [ -95.544818059454954, 30.015655243449213 ], [ -95.544749059717361, 30.015556243266342 ], [ -95.544597059929131, 30.015386243575886 ], [ -95.544490059112192, 30.015314243149014 ], [ -95.544448059200533, 30.015296242719973 ], [ -95.543138058819835, 30.01472024276514 ], [ -95.542449058875519, 30.014385243237417 ], [ -95.542386058429543, 30.014302243138371 ], [ -95.542317058922507, 30.014242242696621 ], [ -95.542235058894406, 30.014192242742098 ], [ -95.542127058635145, 30.014170243115483 ], [ -95.542058058389514, 30.014132243144683 ], [ -95.541660058987475, 30.01382424329983 ], [ -95.541557058666868, 30.013765242674928 ], [ -95.541186058185275, 30.013555242435817 ], [ -95.54084505821136, 30.01332924324571 ], [ -95.540822058328274, 30.013308242487167 ], [ -95.540656057985743, 30.013159242697391 ], [ -95.540612058539153, 30.013065243246427 ], [ -95.540542058917922, 30.01297224306985 ], [ -95.540521058679758, 30.012928242523842 ], [ -95.540511058429246, 30.012906242485641 ], [ -95.540441058159104, 30.012526242743245 ], [ -95.54044105820725, 30.012438242836353 ], [ -95.540479057987213, 30.012329242493479 ], [ -95.54062405827807, 30.012147242541701 ], [ -95.540795058362519, 30.011883242482014 ], [ -95.540827057983833, 30.011746242838466 ], [ -95.540844058798413, 30.011601242128972 ], [ -95.540639057907882, 30.011712242138668 ], [ -95.540529058763937, 30.011772242659756 ], [ -95.539980058233638, 30.012060243042917 ], [ -95.538472057397271, 30.012888242879416 ], [ -95.538037058306998, 30.013131242725791 ], [ -95.536978057412568, 30.013713243121877 ], [ -95.53686905795017, 30.013774243048232 ], [ -95.536531056929022, 30.013966243231167 ], [ -95.534794057001648, 30.014926243409334 ], [ -95.534671057173469, 30.014987243304432 ], [ -95.534561057314122, 30.015055243788527 ], [ -95.534353056966538, 30.015169243792638 ], [ -95.534255056859422, 30.015217243401047 ], [ -95.534161057151607, 30.015274243523265 ], [ -95.533816056725158, 30.015459243080869 ], [ -95.533501057104715, 30.015629243739596 ], [ -95.533383056300778, 30.015702243672273 ], [ -95.532905056532414, 30.015964243770927 ], [ -95.532791056642708, 30.016020243942574 ], [ -95.53238205673847, 30.016252244005138 ], [ -95.532577056037695, 30.016527243639352 ], [ -95.532666056647386, 30.016645243615649 ], [ -95.532883056791235, 30.016941243461556 ], [ -95.532965056203878, 30.017050243667541 ], [ -95.533242056444948, 30.017420243730783 ], [ -95.533754056696566, 30.018118243673857 ], [ -95.533854056468954, 30.018254243630501 ], [ -95.534084056795862, 30.018564243949644 ], [ -95.534130056818711, 30.018635244038176 ], [ -95.534181056687416, 30.018698243790141 ], [ -95.534252057217444, 30.018796244220276 ], [ -95.5343550572818, 30.01894224380279 ], [ -95.534506056802343, 30.019147243910449 ], [ -95.534650057413259, 30.019328244017228 ], [ -95.534708056874578, 30.019424244514003 ], [ -95.534811057530632, 30.019566244484128 ], [ -95.534849056866719, 30.019618244064493 ], [ -95.534912056928874, 30.019715244391126 ], [ -95.534991057019084, 30.019811243934392 ], [ -95.535743057296742, 30.020836244894575 ], [ -95.536017057882944, 30.021208244855131 ], [ -95.536077057235943, 30.021298244585942 ], [ -95.536401057719672, 30.021743244980048 ], [ -95.536928057522857, 30.022466245223406 ], [ -95.536980058384955, 30.022516244813257 ], [ -95.537040057930156, 30.022544245071252 ], [ -95.537104057490595, 30.022559245156934 ], [ -95.537183058233353, 30.022555245041747 ], [ -95.537366058469615, 30.022519244674118 ], [ -95.538325058062597, 30.02229624433426 ], [ -95.538701058573366, 30.022212244870602 ], [ -95.538769058329549, 30.022201244537293 ], [ -95.538838058500701, 30.022198244883509 ], [ -95.538904057946382, 30.022209244982928 ], [ -95.538965058070332, 30.022239244933097 ], [ -95.539020058639593, 30.022286245094282 ], [ -95.539122058863555, 30.022403244735084 ], [ -95.539164058304806, 30.02246824435279 ], [ -95.539426058344091, 30.022833245103985 ], [ -95.539565059147918, 30.023029244534989 ], [ -95.540524058935958, 30.024314244767009 ], [ -95.54172505912635, 30.025951245237771 ], [ -95.541992059287864, 30.026296245522079 ], [ -95.542027059526845, 30.026355245194861 ], [ -95.542121059280205, 30.026491245239576 ], [ -95.542234059938536, 30.026644245420766 ], [ -95.542627059561582, 30.027167245457854 ], [ -95.54268605972112, 30.027256245852389 ], [ -95.543248060090647, 30.028023245947832 ], [ -95.543449060291053, 30.028298245399789 ], [ -95.543744059819659, 30.028695245561455 ], [ -95.543800060085189, 30.028780245730559 ], [ -95.543898060129109, 30.028901245762505 ], [ -95.543938060246148, 30.028962246222864 ], [ -95.543986059627343, 30.029019245644189 ], [ -95.544021060377318, 30.029076245555657 ], [ -95.544068059656752, 30.029132246272937 ], [ -95.544324060449796, 30.029485246292136 ], [ -95.544587060092425, 30.02934624587089 ], [ -95.545129059917628, 30.029042245494928 ], [ -95.54519606067052, 30.029009246340856 ], [ -95.545577060539642, 30.028800245678887 ], [ -95.545745060147695, 30.028701245620866 ], [ -95.545844060654147, 30.028651246197015 ], [ -95.545941060894776, 30.028592245621681 ], [ -95.546376060548639, 30.028352245685284 ], [ -95.546662060213151, 30.02819924550354 ], [ -95.546845060325111, 30.028115245487324 ], [ -95.54702606085668, 30.028022245986083 ], [ -95.547237060589012, 30.027907245876534 ], [ -95.547547060832301, 30.027739245628098 ], [ -95.547631060521098, 30.027683245626644 ], [ -95.547726060925314, 30.027613245411697 ], [ -95.547921060571696, 30.027511245906844 ], [ -95.548022061242477, 30.0274492454915 ], [ -95.548227061511582, 30.027324245644401 ], [ -95.548444060864156, 30.02719924505875 ], [ -95.548675061327629, 30.027092244963285 ], [ -95.548907061383218, 30.026935245569106 ], [ -95.550353061659067, 30.026134245163732 ], [ -95.550422061757104, 30.026108245310471 ], [ -95.55050906139094, 30.026233245177604 ], [ -95.550616061134392, 30.026369245125274 ], [ -95.550822062170283, 30.026656245506707 ], [ -95.550974061318158, 30.02685924559453 ], [ -95.550985061419979, 30.026873244869584 ], [ -95.55161006229406, 30.027729245464393 ], [ -95.551664061762921, 30.02779024542426 ], [ -95.551748061656198, 30.027906245680754 ], [ -95.552256062472082, 30.028611245885699 ], [ -95.552266062016059, 30.028622245474725 ], [ -95.55249706186207, 30.028923245560613 ], [ -95.55258406224479, 30.029048245654121 ], [ -95.552757062676349, 30.029322245738669 ], [ -95.552792062465556, 30.029386246057452 ], [ -95.552838061890654, 30.029449246044489 ], [ -95.552950062414311, 30.029669245654322 ], [ -95.553019062322164, 30.02982324540228 ], [ -95.553059062355175, 30.029912245347933 ], [ -95.553128062275064, 30.030086245421586 ], [ -95.553169062394559, 30.030172245644213 ], [ -95.553225062442948, 30.030330245784629 ], [ -95.553318062999608, 30.030549245840589 ], [ -95.553352063000389, 30.030620245729985 ], [ -95.553438063036182, 30.030852245960066 ], [ -95.553457062371805, 30.03091124618792 ], [ -95.553526062423643, 30.031055246273912 ], [ -95.553612063102193, 30.031216245862247 ], [ -95.553628062996211, 30.031246246171552 ], [ -95.553785062742449, 30.031499246202209 ], [ -95.553979062389587, 30.031781245995088 ], [ -95.554136062550967, 30.031987246435683 ], [ -95.554324063309693, 30.032205245808164 ], [ -95.554536062455043, 30.032427246586707 ], [ -95.554646062898669, 30.032533245984904 ], [ -95.554866063043491, 30.032727245929657 ], [ -95.555051062980979, 30.032875246233576 ], [ -95.555233062631899, 30.033009246703514 ], [ -95.555360063137798, 30.033095246784335 ], [ -95.555526063652863, 30.032866246044751 ], [ -95.555557062804255, 30.032822246527282 ], [ -95.55561806297878, 30.032725246086788 ], [ -95.555691063282922, 30.03263124640926 ], [ -95.555762062710187, 30.032529245798337 ], [ -95.555826063540636, 30.032416246065154 ], [ -95.556079063676592, 30.032077245968885 ], [ -95.556906063314983, 30.030930245434789 ], [ -95.556996063588855, 30.030806245972862 ], [ -95.557061063215514, 30.030726245688101 ], [ -95.55710906385589, 30.030653245870077 ], [ -95.557169063682863, 30.030605246191627 ], [ -95.557289063092213, 30.0304822453352 ], [ -95.557320063854661, 30.030454245756058 ], [ -95.557375063149166, 30.030404245989942 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 148, "Tract": "48201554806", "Area_SqMi": 1.7340735372934164, "total_2009": 184, "total_2010": 136, "total_2011": 171, "total_2012": 192, "total_2013": 191, "total_2014": 230, "total_2015": 216, "total_2016": 136, "total_2017": 141, "total_2018": 180, "total_2019": 181, "total_2020": 408, "age1": 77, "age2": 215, "age3": 78, "earn1": 43, "earn2": 94, "earn3": 233, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 89, "naics_s06": 137, "naics_s07": 19, "naics_s08": 32, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 43, "naics_s17": 0, "naics_s18": 5, "naics_s19": 7, "naics_s20": 0, "race1": 281, "race2": 72, "race3": 1, "race4": 14, "race5": 1, "race6": 1, "ethnicity1": 263, "ethnicity2": 107, "edu1": 58, "edu2": 82, "edu3": 96, "edu4": 57, "Shape_Length": 30257.970182872647, "Shape_Area": 48343002.323219776, "total_2021": 272, "total_2022": 370 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.622539081917438, 30.066853250467616 ], [ -95.622326081311385, 30.066582250442202 ], [ -95.622236082137604, 30.066466250928126 ], [ -95.621756082062674, 30.065895250830142 ], [ -95.621358081824908, 30.065315250449235 ], [ -95.620950081753321, 30.064600250353877 ], [ -95.620289080865192, 30.063450250526202 ], [ -95.620079081121517, 30.063027249941495 ], [ -95.619773080792854, 30.062454250217318 ], [ -95.619093080452743, 30.061303249754111 ], [ -95.618489080818648, 30.060491249353159 ], [ -95.618115080312251, 30.059940249638689 ], [ -95.617690079949455, 30.059315249175228 ], [ -95.617128080419917, 30.058446249118703 ], [ -95.616793080270085, 30.057830249485018 ], [ -95.616395079552007, 30.05692424920824 ], [ -95.616014079477765, 30.055838248421548 ], [ -95.61554607917877, 30.054357248200489 ], [ -95.615494079950579, 30.054206248969123 ], [ -95.615479079605919, 30.054159248681835 ], [ -95.615471079643555, 30.05413224860138 ], [ -95.615426079076514, 30.05413324893799 ], [ -95.615422079752221, 30.054118248467628 ], [ -95.615414079885667, 30.054090248389478 ], [ -95.615397079234242, 30.054031248307822 ], [ -95.615366079010755, 30.053931248725664 ], [ -95.61536207939136, 30.053920248227907 ], [ -95.615356079155418, 30.053900248828935 ], [ -95.615346079306221, 30.053869248931093 ], [ -95.615337079432479, 30.053840248936041 ], [ -95.615262079250044, 30.053608248265103 ], [ -95.615184079813275, 30.053379248691268 ], [ -95.61517307890999, 30.053348248831448 ], [ -95.615159079437575, 30.053308248395641 ], [ -95.615080079456106, 30.053090248755119 ], [ -95.615010079757866, 30.052911248145641 ], [ -95.614981079563094, 30.052835248159436 ], [ -95.614953078952951, 30.052766248044044 ], [ -95.614878079599691, 30.052581248685556 ], [ -95.614857079379846, 30.052531247899189 ], [ -95.614824078958691, 30.052455248190228 ], [ -95.61477007937431, 30.052330248589758 ], [ -95.614763078932299, 30.052314248308548 ], [ -95.614658079107883, 30.052081247787331 ], [ -95.614598079196412, 30.051957248568893 ], [ -95.614486079382885, 30.051724248432151 ], [ -95.614453079115762, 30.051724248365684 ], [ -95.613528078445157, 30.051726247967657 ], [ -95.6067300771671, 30.051736248084932 ], [ -95.60499507666394, 30.051761248211974 ], [ -95.604483076265865, 30.051769248614328 ], [ -95.601929075543225, 30.051791248592849 ], [ -95.601221075206183, 30.051766248321915 ], [ -95.600350075506398, 30.051736248508782 ], [ -95.599900075798274, 30.05170324832433 ], [ -95.599133075579999, 30.05161524884883 ], [ -95.597521074661984, 30.051374248353561 ], [ -95.596644074733746, 30.051210248299199 ], [ -95.595548074711203, 30.051078248341469 ], [ -95.594945073744498, 30.051012249056395 ], [ -95.594276074092647, 30.050979248853981 ], [ -95.593619073489648, 30.050958248924012 ], [ -95.592873073612807, 30.050947248603524 ], [ -95.590459073209686, 30.050984249069167 ], [ -95.586719072367615, 30.051040249253877 ], [ -95.586778071534013, 30.051143248966095 ], [ -95.586840072439117, 30.051251249085627 ], [ -95.58841707234599, 30.053967249125705 ], [ -95.588682072848329, 30.054421249222656 ], [ -95.588750073069193, 30.0545392498009 ], [ -95.588795073166708, 30.054618249523308 ], [ -95.588860072337127, 30.054754249712644 ], [ -95.589942072602611, 30.05674724951594 ], [ -95.592164073285034, 30.06059225100481 ], [ -95.592247074136083, 30.060734250580982 ], [ -95.592568073569907, 30.061298250870841 ], [ -95.593412073815998, 30.062773251208583 ], [ -95.594657074524562, 30.064955251847266 ], [ -95.596708074895048, 30.068557252426604 ], [ -95.597885075176407, 30.068356252118395 ], [ -95.598023075876995, 30.068332252155596 ], [ -95.59843507549715, 30.068262252185445 ], [ -95.598488075349948, 30.06825325226465 ], [ -95.598640075848948, 30.068227252163165 ], [ -95.599344076363124, 30.06810725194422 ], [ -95.601204076784711, 30.067789251885877 ], [ -95.60134807624469, 30.067732251499329 ], [ -95.605461077933555, 30.067031251102861 ], [ -95.605506077219871, 30.067059251931749 ], [ -95.606992077405621, 30.06702325155754 ], [ -95.608482078025176, 30.066987251787168 ], [ -95.608626078728634, 30.066984251479049 ], [ -95.608652078073746, 30.066984251308096 ], [ -95.608812078529525, 30.066982251037015 ], [ -95.609102078749402, 30.066980251217984 ], [ -95.610595079250302, 30.066967251216639 ], [ -95.610731078677091, 30.066965250862722 ], [ -95.611250078549261, 30.066954251460146 ], [ -95.611395079071002, 30.066944250888699 ], [ -95.611663078676628, 30.066941251398347 ], [ -95.614719079437492, 30.06691225144781 ], [ -95.616979080386713, 30.066892250728991 ], [ -95.618704080798125, 30.066880251334794 ], [ -95.622539081917438, 30.066853250467616 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 149, "Tract": "48201554803", "Area_SqMi": 6.1306964911894681, "total_2009": 1021, "total_2010": 1060, "total_2011": 1310, "total_2012": 1451, "total_2013": 1413, "total_2014": 1564, "total_2015": 1660, "total_2016": 926, "total_2017": 1249, "total_2018": 1607, "total_2019": 1683, "total_2020": 1824, "age1": 518, "age2": 1020, "age3": 408, "earn1": 314, "earn2": 702, "earn3": 930, "naics_s01": 2, "naics_s02": 4, "naics_s03": 8, "naics_s04": 287, "naics_s05": 181, "naics_s06": 354, "naics_s07": 111, "naics_s08": 60, "naics_s09": 10, "naics_s10": 10, "naics_s11": 18, "naics_s12": 165, "naics_s13": 25, "naics_s14": 168, "naics_s15": 1, "naics_s16": 14, "naics_s17": 13, "naics_s18": 78, "naics_s19": 437, "naics_s20": 0, "race1": 1626, "race2": 197, "race3": 9, "race4": 89, "race5": 7, "race6": 18, "ethnicity1": 1380, "ethnicity2": 566, "edu1": 307, "edu2": 407, "edu3": 431, "edu4": 283, "Shape_Length": 67894.357927724399, "Shape_Area": 170913325.38245118, "total_2021": 1795, "total_2022": 1946 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.595733075083629, 30.068667252416397 ], [ -95.596708074895048, 30.068557252426604 ], [ -95.594657074524562, 30.064955251847266 ], [ -95.593412073815998, 30.062773251208583 ], [ -95.592568073569907, 30.061298250870841 ], [ -95.592247074136083, 30.060734250580982 ], [ -95.592164073285034, 30.06059225100481 ], [ -95.592095073346286, 30.06057525065836 ], [ -95.591911073244262, 30.060570250422661 ], [ -95.591557073876572, 30.060493250493607 ], [ -95.591425073817703, 30.060504250535665 ], [ -95.591343073591702, 30.060520250417966 ], [ -95.591260073132233, 30.060559251043244 ], [ -95.591096073862914, 30.060685250533371 ], [ -95.59096707398092, 30.060742250383544 ], [ -95.590578073088238, 30.060916250787344 ], [ -95.590490073455996, 30.061015250457199 ], [ -95.5903250735131, 30.061329250601261 ], [ -95.590288072920458, 30.061378250570723 ], [ -95.59024307287055, 30.06141725067291 ], [ -95.589637072860853, 30.061752251362066 ], [ -95.589586073245115, 30.061791250648536 ], [ -95.589447073240422, 30.061857250748723 ], [ -95.589377073627816, 30.061865250719922 ], [ -95.589346073415271, 30.061868251098794 ], [ -95.589144073216332, 30.061873250666228 ], [ -95.589049072647796, 30.061862251421235 ], [ -95.588600073042926, 30.061769250814912 ], [ -95.588512073292989, 30.061730251082377 ], [ -95.588430073102657, 30.061681251045524 ], [ -95.587880072605145, 30.061329251190852 ], [ -95.587823072821934, 30.061313250938959 ], [ -95.587734073108024, 30.061302250558089 ], [ -95.587538072949769, 30.061313251093338 ], [ -95.587336072114951, 30.061384250615625 ], [ -95.587039072528228, 30.061588251020165 ], [ -95.586938072259329, 30.061632251358311 ], [ -95.58674907257128, 30.061687250728344 ], [ -95.586540072116151, 30.061709250924419 ], [ -95.5863700719364, 30.061698251217049 ], [ -95.586079072498123, 30.061489251108313 ], [ -95.586022072083026, 30.061478250977167 ], [ -95.585668072629417, 30.061451250899193 ], [ -95.585567071688402, 30.061434251078161 ], [ -95.585497071743987, 30.061412250812559 ], [ -95.585371072562566, 30.061335251140132 ], [ -95.58531407198376, 30.061286250677437 ], [ -95.585061072003668, 30.061022250583704 ], [ -95.585023072449147, 30.061006250817048 ], [ -95.584821071500627, 30.060956251008335 ], [ -95.584650072271188, 30.060962250792635 ], [ -95.584581071992105, 30.060989251110342 ], [ -95.584518071634733, 30.061022251335675 ], [ -95.584271072327155, 30.061215250962128 ], [ -95.584176071523274, 30.061237250973683 ], [ -95.583949071509423, 30.061182250821009 ], [ -95.583797072000166, 30.061160251335409 ], [ -95.583728071494733, 30.061160251188834 ], [ -95.583646071451469, 30.061176250934281 ], [ -95.583431071423121, 30.061242250885851 ], [ -95.583279072028901, 30.061341250951511 ], [ -95.582875071189832, 30.061743250893528 ], [ -95.58285607170734, 30.061776251656415 ], [ -95.582761071826894, 30.062072250980158 ], [ -95.58253407100554, 30.062518251634195 ], [ -95.582521071549039, 30.062595251505613 ], [ -95.582603071316782, 30.062793251672655 ], [ -95.582648071283387, 30.063194251626566 ], [ -95.582635071539229, 30.063238251464657 ], [ -95.582483071213517, 30.063441251585036 ], [ -95.582471071854499, 30.063474251565051 ], [ -95.582471071454023, 30.063568251599296 ], [ -95.582490071384044, 30.063628251856588 ], [ -95.582559071530426, 30.063716251719018 ], [ -95.583292071874979, 30.064156251747125 ], [ -95.583362072023107, 30.064205251302507 ], [ -95.583413071649062, 30.064260251611422 ], [ -95.58343807136518, 30.064310251680098 ], [ -95.583444072119235, 30.064354251678065 ], [ -95.583438072087176, 30.064414251689829 ], [ -95.583141071257501, 30.065030251692193 ], [ -95.583097072079013, 30.065085252334939 ], [ -95.583040071285865, 30.065123251877548 ], [ -95.58297707189314, 30.06515125233603 ], [ -95.582743071869373, 30.065217252060496 ], [ -95.582212071891902, 30.065239252222021 ], [ -95.582092071473554, 30.065255252349804 ], [ -95.581991071632245, 30.06533225177413 ], [ -95.581700071550856, 30.065739252388422 ], [ -95.581587071492592, 30.065959252269231 ], [ -95.58148607169494, 30.066124252204059 ], [ -95.581422071282645, 30.066174251757015 ], [ -95.581346071398428, 30.066190252059954 ], [ -95.58122607112476, 30.066190252350818 ], [ -95.58082207120701, 30.065970252524107 ], [ -95.580588070819104, 30.065888252157713 ], [ -95.580455071296356, 30.065899252291199 ], [ -95.580392070558489, 30.065915252427768 ], [ -95.57976007055953, 30.06630625206661 ], [ -95.57962707111669, 30.066465252316281 ], [ -95.579602070698968, 30.066509252438212 ], [ -95.579369070961732, 30.067268252875508 ], [ -95.579280070924966, 30.067614252369552 ], [ -95.579129070584571, 30.06776325250501 ], [ -95.578604071109652, 30.067922252449311 ], [ -95.578086070781836, 30.068137252552699 ], [ -95.577915070424041, 30.068175253064837 ], [ -95.577770070652363, 30.068181252872055 ], [ -95.577643070482893, 30.068148252318991 ], [ -95.577479070301067, 30.068049252709962 ], [ -95.577372070636599, 30.068032253014263 ], [ -95.577296069890679, 30.068043252851112 ], [ -95.577207070523613, 30.068082252884061 ], [ -95.577169069900719, 30.068104252756832 ], [ -95.577068070794738, 30.068192253099916 ], [ -95.576853069877473, 30.068692252760034 ], [ -95.57646807070708, 30.069187252814288 ], [ -95.576291069748635, 30.06935225279214 ], [ -95.576114070507501, 30.069445252597369 ], [ -95.575811070285155, 30.069473252827947 ], [ -95.575495070052852, 30.069539253321132 ], [ -95.575299069722803, 30.069649252658294 ], [ -95.575147070036081, 30.069731252758455 ], [ -95.575027069456709, 30.069847253028957 ], [ -95.574983069926915, 30.069913252877335 ], [ -95.574970070083481, 30.069968252869085 ], [ -95.575002069420535, 30.070072253209212 ], [ -95.57527406971505, 30.070600253615055 ], [ -95.575280070038232, 30.070814252967196 ], [ -95.575255069475801, 30.071133253038582 ], [ -95.575204070396012, 30.071276253261633 ], [ -95.575122069853748, 30.071358253351377 ], [ -95.574889069796797, 30.071529253426746 ], [ -95.574718069647133, 30.07161725358495 ], [ -95.574667069999109, 30.071655253656967 ], [ -95.574598070180627, 30.071738253484536 ], [ -95.574522070000754, 30.071804253600842 ], [ -95.574446069591716, 30.071853253680239 ], [ -95.574275070237789, 30.071903253332096 ], [ -95.574206070217869, 30.071908253908926 ], [ -95.574105070076257, 30.071897253899571 ], [ -95.573921069724861, 30.071859253943153 ], [ -95.573782069960757, 30.071853253592664 ], [ -95.573707069331434, 30.071881253485191 ], [ -95.573656069539737, 30.071914253181703 ], [ -95.573555069369831, 30.072007253611872 ], [ -95.573169069989802, 30.072502254035197 ], [ -95.572967068994956, 30.072821254002402 ], [ -95.572929069123262, 30.072903253588866 ], [ -95.572910069461443, 30.072980253811611 ], [ -95.572898069907808, 30.073145253729493 ], [ -95.572904068938385, 30.073222254085369 ], [ -95.572891069225506, 30.073305253828082 ], [ -95.572797069706084, 30.073514254275398 ], [ -95.572708069485742, 30.073629254036224 ], [ -95.572418069048865, 30.07390425413557 ], [ -95.572266068884574, 30.073986253764318 ], [ -95.572203069437293, 30.074030253793602 ], [ -95.572133068977621, 30.074096253949939 ], [ -95.57204506959593, 30.074228254415882 ], [ -95.572019069086167, 30.074327253749402 ], [ -95.57202606969264, 30.074388254411243 ], [ -95.572013069390366, 30.07445425405696 ], [ -95.571994069472737, 30.07450925414652 ], [ -95.571931068983446, 30.074624253950084 ], [ -95.571862069750495, 30.074806254100952 ], [ -95.571817069430708, 30.07484425448256 ], [ -95.571773069250057, 30.074866254199769 ], [ -95.571691069335415, 30.074866254142187 ], [ -95.571628068806731, 30.074833253963025 ], [ -95.571596069489772, 30.074800254689269 ], [ -95.571546069375742, 30.074773253890516 ], [ -95.571381069233695, 30.074696254178868 ], [ -95.571331069318234, 30.074685254189053 ], [ -95.571122068557727, 30.074696254544293 ], [ -95.570875069520184, 30.074751254559214 ], [ -95.570673069412948, 30.074773254091472 ], [ -95.570313069022305, 30.074734253955139 ], [ -95.56997206844305, 30.074718253874881 ], [ -95.569750068641994, 30.074734254354439 ], [ -95.569675068694764, 30.074778254766304 ], [ -95.569485068622029, 30.075048254447058 ], [ -95.569296068762995, 30.075619254799665 ], [ -95.569220068868447, 30.075883254537434 ], [ -95.569201068409456, 30.076037255048728 ], [ -95.56922006870056, 30.076092254346353 ], [ -95.569308068825293, 30.076246254529298 ], [ -95.569346068277156, 30.076290254921972 ], [ -95.569397068430632, 30.076318254962946 ], [ -95.569454068414473, 30.076323254689928 ], [ -95.569593068643343, 30.076312254873116 ], [ -95.569738068788538, 30.076252254639865 ], [ -95.569782068879618, 30.076246254650609 ], [ -95.569808068715915, 30.076252254715911 ], [ -95.569852068495166, 30.076290254644956 ], [ -95.569896069199828, 30.076350254555496 ], [ -95.570073068618584, 30.076400254430826 ], [ -95.570136068539725, 30.076449254368438 ], [ -95.570168068908231, 30.076482254897197 ], [ -95.570301069128817, 30.076889254997951 ], [ -95.570440068672028, 30.077126254782922 ], [ -95.570446068662974, 30.077208255190421 ], [ -95.570440069476277, 30.077318254483501 ], [ -95.570402069472848, 30.077389255132118 ], [ -95.569972068873184, 30.078621254971786 ], [ -95.569922069156092, 30.078703255233879 ], [ -95.569701068652634, 30.078923254728871 ], [ -95.569612069379119, 30.078989255252029 ], [ -95.569384069251399, 30.07909925546096 ], [ -95.569258068764569, 30.079099254794315 ], [ -95.569132068556911, 30.079077254964179 ], [ -95.569087068832616, 30.079050255494785 ], [ -95.569005068936292, 30.078962254962747 ], [ -95.568961069196916, 30.078934254798003 ], [ -95.568923068879641, 30.078923255178442 ], [ -95.568797068198421, 30.07894525492997 ], [ -95.568721068158524, 30.078978255497919 ], [ -95.568209068093282, 30.07929725515309 ], [ -95.567981068863944, 30.079424255725304 ], [ -95.567887068545488, 30.079495255609825 ], [ -95.567375068522551, 30.079940255531763 ], [ -95.567235068791774, 30.080111255321633 ], [ -95.567122068310454, 30.080298255749813 ], [ -95.56700206849284, 30.080435255242179 ], [ -95.566919068009156, 30.080485255618733 ], [ -95.56681206827588, 30.080507255931657 ], [ -95.566540068349767, 30.080540256065309 ], [ -95.566294068568041, 30.080639255355756 ], [ -95.566231068546415, 30.080683255340478 ], [ -95.566205067642144, 30.080716255417574 ], [ -95.566186067801382, 30.080837255441665 ], [ -95.566066067770535, 30.080958255950605 ], [ -95.565636067950109, 30.08134825557616 ], [ -95.565428067906709, 30.081628256193092 ], [ -95.56523206814397, 30.081985256061085 ], [ -95.56513706780521, 30.082200256176467 ], [ -95.565072067759729, 30.082470256364147 ], [ -95.564960067708711, 30.082931256413918 ], [ -95.564922068253267, 30.083025256373706 ], [ -95.564878067383376, 30.083079256505606 ], [ -95.564809067539272, 30.083129255947554 ], [ -95.564480067430623, 30.083272256518114 ], [ -95.56431606797517, 30.083294255883501 ], [ -95.564063067401094, 30.083299256644761 ], [ -95.563968067650308, 30.083272256512711 ], [ -95.56386706763783, 30.083211256459013 ], [ -95.563576067580939, 30.082992255768101 ], [ -95.563506067530156, 30.082970256219774 ], [ -95.563412067688489, 30.082964255925109 ], [ -95.563146067565171, 30.082997256519327 ], [ -95.563013067079936, 30.083036256113587 ], [ -95.56292506731964, 30.083310256679745 ], [ -95.562900067435336, 30.083360256415162 ], [ -95.562571067541953, 30.083613256678458 ], [ -95.562520067785599, 30.083635256784241 ], [ -95.562438067516382, 30.08364625664797 ], [ -95.562015067289352, 30.083624255993072 ], [ -95.561945067415181, 30.08362925649417 ], [ -95.561756067189762, 30.083701256816585 ], [ -95.561553066940363, 30.083761256236997 ], [ -95.561326067094811, 30.08387125602847 ], [ -95.561136066604831, 30.083987256903892 ], [ -95.560984067259596, 30.084146256594028 ], [ -95.560896066693388, 30.084306256988565 ], [ -95.560864066597318, 30.084525256552016 ], [ -95.560852067200017, 30.084762256865162 ], [ -95.560814066453219, 30.084817256666131 ], [ -95.560757066643319, 30.084850256937791 ], [ -95.560378066751497, 30.084965256543349 ], [ -95.560005067151366, 30.08505925704679 ], [ -95.55975206662859, 30.085174256815961 ], [ -95.559625066886582, 30.085196256900925 ], [ -95.559480067060051, 30.085240256471717 ], [ -95.559265066899172, 30.085350256699677 ], [ -95.559050066689807, 30.085438256632372 ], [ -95.558633066486124, 30.085652256958426 ], [ -95.558367065980264, 30.0858002570865 ], [ -95.558058066766122, 30.085971256914345 ], [ -95.557767065718508, 30.086180257409964 ], [ -95.557641066647037, 30.086252256815179 ], [ -95.557482066351696, 30.086400257516782 ], [ -95.557388066404215, 30.086532257339829 ], [ -95.557337066243193, 30.086768256897706 ], [ -95.557198066196506, 30.087038257422115 ], [ -95.557078066529044, 30.087175257282286 ], [ -95.557021066228756, 30.087208256895629 ], [ -95.556888065815954, 30.087252256879925 ], [ -95.556800065460735, 30.087258257671703 ], [ -95.556307065918517, 30.087225257197233 ], [ -95.556231065783905, 30.08723625722153 ], [ -95.556149065915477, 30.087280257787768 ], [ -95.555978065760058, 30.087730257439933 ], [ -95.555757065637891, 30.088209257469124 ], [ -95.555662066167741, 30.088357257530031 ], [ -95.555624065392536, 30.088440257638123 ], [ -95.555611065852744, 30.088511257477659 ], [ -95.555611066055917, 30.088654258062995 ], [ -95.555618065520321, 30.088797257449013 ], [ -95.555573065249433, 30.0890002575312 ], [ -95.555434065379899, 30.089314257901073 ], [ -95.55520006563421, 30.089698258008855 ], [ -95.555179065410456, 30.089700257844065 ], [ -95.554815065568192, 30.089929257992097 ], [ -95.554707066024093, 30.090017258325364 ], [ -95.554575065313372, 30.090270257703885 ], [ -95.554575065538188, 30.090397258274063 ], [ -95.554505065178134, 30.090809258399911 ], [ -95.554455065109607, 30.090985258140268 ], [ -95.554417065118528, 30.091067257897389 ], [ -95.554379065928487, 30.091111257774124 ], [ -95.554296065963044, 30.091144257821231 ], [ -95.553955065718952, 30.091155258212044 ], [ -95.553867065628395, 30.091166258061939 ], [ -95.553683064971807, 30.091216258215162 ], [ -95.553587065846031, 30.091274258492632 ], [ -95.553443064906872, 30.091364258265997 ], [ -95.553399065077457, 30.091633258651438 ], [ -95.553411065184264, 30.092194258645858 ], [ -95.55340506542862, 30.092337258732904 ], [ -95.553424065053861, 30.092376258290376 ], [ -95.553506065699466, 30.092458258052329 ], [ -95.55359506549361, 30.092524258519788 ], [ -95.553892065609801, 30.092678258780726 ], [ -95.554031065486313, 30.092766258810563 ], [ -95.554189065609634, 30.093041258509039 ], [ -95.554202065116243, 30.093096258435022 ], [ -95.554195065589596, 30.093244259013179 ], [ -95.55413806578639, 30.093343259013352 ], [ -95.553936065287331, 30.093574258773543 ], [ -95.553740065434809, 30.093821258549859 ], [ -95.553721065938433, 30.093854258799791 ], [ -95.553715065084376, 30.093893259170954 ], [ -95.553734065582518, 30.093948258611999 ], [ -95.553860065599793, 30.094069258430043 ], [ -95.55386906603789, 30.094086258906213 ], [ -95.554018065688552, 30.094360258988736 ], [ -95.55415706578529, 30.094651258831412 ], [ -95.554423065547368, 30.094932258598469 ], [ -95.554543065278196, 30.095185258556157 ], [ -95.554575065598627, 30.09539925900312 ], [ -95.554575065288347, 30.095536259263589 ], [ -95.554499066199796, 30.095608259083694 ], [ -95.55419506573898, 30.095789259240071 ], [ -95.553633065789427, 30.09602025944341 ], [ -95.553557065203123, 30.096070258807195 ], [ -95.553481065679847, 30.096147258934316 ], [ -95.553437065109009, 30.096218258892218 ], [ -95.553399065382607, 30.09638325969285 ], [ -95.553399065093828, 30.096575259681721 ], [ -95.553386065058319, 30.096652259110122 ], [ -95.553355065578529, 30.09671825928968 ], [ -95.553304065533339, 30.096773259453926 ], [ -95.55271606504725, 30.097285259557299 ], [ -95.552496065007716, 30.097507259552366 ], [ -95.552185065652921, 30.097823259272566 ], [ -95.552084064796574, 30.097961259825187 ], [ -95.552065065666056, 30.098076259423188 ], [ -95.552065065769071, 30.09825225944277 ], [ -95.552109065711406, 30.098620259477389 ], [ -95.552160064871771, 30.09873625974835 ], [ -95.552166065295751, 30.098813259774943 ], [ -95.552160065789153, 30.099126259490212 ], [ -95.55219106577394, 30.099269260287766 ], [ -95.552223065713918, 30.099330260086578 ], [ -95.552299065040046, 30.099417259765328 ], [ -95.552514065231165, 30.099577259764505 ], [ -95.552887065854691, 30.099764260266429 ], [ -95.552912065655391, 30.099868259765472 ], [ -95.552899065177982, 30.099907260185642 ], [ -95.552804065077808, 30.100055259739712 ], [ -95.552507065675172, 30.100336259988936 ], [ -95.552343065286038, 30.100418260342799 ], [ -95.552204064921497, 30.100429260264274 ], [ -95.551926065250868, 30.100374260156929 ], [ -95.551749065610693, 30.100396259834351 ], [ -95.551654065057818, 30.100440260099447 ], [ -95.551319065053718, 30.100704259880779 ], [ -95.551249065127692, 30.10073126038268 ], [ -95.551173065065768, 30.100737260503038 ], [ -95.550794064652464, 30.100682260423852 ], [ -95.550655065333274, 30.100682260650931 ], [ -95.550206064951766, 30.100764260258469 ], [ -95.550010065278116, 30.100819260091427 ], [ -95.549574064779549, 30.101039260077197 ], [ -95.549498064546455, 30.101089260817371 ], [ -95.54940906463716, 30.101122260142034 ], [ -95.548828064880169, 30.101281260866287 ], [ -95.548733065085969, 30.101314260088355 ], [ -95.548670064086565, 30.101358260119024 ], [ -95.548632064129251, 30.101424260026807 ], [ -95.548423064768841, 30.101869260231567 ], [ -95.548315064741558, 30.101996260681933 ], [ -95.548240064084737, 30.102040260246195 ], [ -95.548094064943342, 30.102100261066358 ], [ -95.548025064080932, 30.102100260448619 ], [ -95.5479550643675, 30.102078260446838 ], [ -95.547595064214121, 30.101858260892321 ], [ -95.547538064097225, 30.101842260466071 ], [ -95.547494064143294, 30.101842260691598 ], [ -95.547468063882334, 30.101853260916609 ], [ -95.547437064130733, 30.101919260634819 ], [ -95.54744306446095, 30.102018260744615 ], [ -95.547519064582346, 30.102463261149122 ], [ -95.547544064361958, 30.10252326100386 ], [ -95.547557064732572, 30.102589260490813 ], [ -95.547557064289236, 30.102655261011602 ], [ -95.547525064529282, 30.102738261136228 ], [ -95.547481064146339, 30.102809260955159 ], [ -95.547411064497325, 30.102892260995862 ], [ -95.547399064709893, 30.102947261235308 ], [ -95.547411064312314, 30.103002261266624 ], [ -95.547487064848738, 30.103183261257943 ], [ -95.547481064681079, 30.103238261210912 ], [ -95.547456064179542, 30.10326526083988 ], [ -95.547392064766655, 30.103337260658542 ], [ -95.547373064765353, 30.103403260685543 ], [ -95.547378063851497, 30.103682261038873 ], [ -95.547380064770294, 30.103788261238211 ], [ -95.547364064820599, 30.103973260849148 ], [ -95.549998064918228, 30.104476260606425 ], [ -95.553785066237751, 30.105138261358068 ], [ -95.554824066762791, 30.105315261088773 ], [ -95.561355067595315, 30.106477261310573 ], [ -95.565331069460385, 30.107183261474631 ], [ -95.566932069569972, 30.107480261241896 ], [ -95.569288070590972, 30.107920261136474 ], [ -95.570390069977037, 30.108149260904696 ], [ -95.571291070552363, 30.108377261171487 ], [ -95.571577071165109, 30.108473261219352 ], [ -95.571956071159534, 30.108621260693969 ], [ -95.572268070507874, 30.108761260725043 ], [ -95.573084070735007, 30.109188261407276 ], [ -95.57461707207716, 30.110066261215067 ], [ -95.577893072858629, 30.111898261316824 ], [ -95.577983072726937, 30.111961261690318 ], [ -95.580881073120352, 30.113595262057618 ], [ -95.582685073721279, 30.114612261543062 ], [ -95.585758074531967, 30.116345262139458 ], [ -95.591830076607735, 30.119764262735341 ], [ -95.591863076948826, 30.119782262863612 ], [ -95.592271076536235, 30.12002626287709 ], [ -95.592247076185117, 30.118848262577544 ], [ -95.592191075988907, 30.117359262028469 ], [ -95.592228076784949, 30.116787262086714 ], [ -95.592270076122091, 30.116434261987536 ], [ -95.592275076626649, 30.116397262262304 ], [ -95.592298076029934, 30.116214261561147 ], [ -95.592311076057655, 30.116113261977031 ], [ -95.592598076601732, 30.114579261618871 ], [ -95.592669076310273, 30.114115261858458 ], [ -95.592682076856633, 30.113914261610397 ], [ -95.592667076718058, 30.113731261795817 ], [ -95.592641076790471, 30.112406260775288 ], [ -95.592640076345432, 30.11233326130537 ], [ -95.592566075959141, 30.108464260253104 ], [ -95.592576076253565, 30.106724260311875 ], [ -95.592576075840995, 30.106698259879522 ], [ -95.592760076491928, 30.105510259890984 ], [ -95.59302507631439, 30.104240259707176 ], [ -95.593512076423622, 30.102345259048775 ], [ -95.593819076074269, 30.100986258517942 ], [ -95.593967075699453, 30.100332258401373 ], [ -95.593973075630572, 30.100111258758602 ], [ -95.593985076363538, 30.099691258182762 ], [ -95.593989076379515, 30.099584258342126 ], [ -95.593995075751138, 30.099458258906022 ], [ -95.593995076077533, 30.099324258352389 ], [ -95.593995076254117, 30.098824258179462 ], [ -95.59399607602279, 30.098683258652134 ], [ -95.594003075559655, 30.095090257186616 ], [ -95.594023075694423, 30.094497257839329 ], [ -95.594032075732287, 30.09402425781666 ], [ -95.59403807621031, 30.093785257009419 ], [ -95.594046075481259, 30.09369425693653 ], [ -95.594061075406145, 30.093534257354332 ], [ -95.594134075905643, 30.092671257331027 ], [ -95.594099076043108, 30.090210256477921 ], [ -95.594103075962636, 30.089178256802594 ], [ -95.594088075230218, 30.087836256433057 ], [ -95.594065075548073, 30.086126256236849 ], [ -95.5940530757088, 30.085862255654071 ], [ -95.594015075192502, 30.085586255310936 ], [ -95.593900075141789, 30.085164255151213 ], [ -95.593727075196739, 30.084730255634895 ], [ -95.59329807548302, 30.083645255639546 ], [ -95.592714074540638, 30.082245255024091 ], [ -95.592139074675757, 30.080763254856219 ], [ -95.591802074683017, 30.079897254878876 ], [ -95.591744074984689, 30.079754254906661 ], [ -95.591286074288021, 30.078504254115007 ], [ -95.590812074718954, 30.077329254392211 ], [ -95.590551074212783, 30.076685254017328 ], [ -95.590502074153918, 30.076564253917052 ], [ -95.590078073664131, 30.075518254098451 ], [ -95.589360074083402, 30.073535253126163 ], [ -95.58934407322846, 30.073491253510799 ], [ -95.589076073397706, 30.07274725313998 ], [ -95.589015073389973, 30.072487253422675 ], [ -95.589068073250317, 30.070815252442092 ], [ -95.589107073504195, 30.06942725254973 ], [ -95.589165073590934, 30.069420252277968 ], [ -95.589885073337996, 30.069336252114205 ], [ -95.590525073760872, 30.069263252375443 ], [ -95.592911074786741, 30.068986252427951 ], [ -95.59384407410127, 30.068879252698313 ], [ -95.594430074915763, 30.068814252406284 ], [ -95.594692075079863, 30.068786252052078 ], [ -95.594853074602369, 30.068768252181545 ], [ -95.595007075240815, 30.068750252628462 ], [ -95.595226074870084, 30.068725252223967 ], [ -95.595468075277097, 30.068697251906787 ], [ -95.595499075529574, 30.068693251886632 ], [ -95.595733075083629, 30.068667252416397 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 150, "Tract": "48201554702", "Area_SqMi": 1.2002804543158032, "total_2009": 562, "total_2010": 874, "total_2011": 667, "total_2012": 800, "total_2013": 863, "total_2014": 760, "total_2015": 863, "total_2016": 757, "total_2017": 620, "total_2018": 689, "total_2019": 915, "total_2020": 920, "age1": 169, "age2": 375, "age3": 168, "earn1": 169, "earn2": 221, "earn3": 322, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 64, "naics_s05": 3, "naics_s06": 13, "naics_s07": 39, "naics_s08": 6, "naics_s09": 1, "naics_s10": 42, "naics_s11": 29, "naics_s12": 134, "naics_s13": 0, "naics_s14": 31, "naics_s15": 2, "naics_s16": 156, "naics_s17": 6, "naics_s18": 105, "naics_s19": 81, "naics_s20": 0, "race1": 547, "race2": 70, "race3": 7, "race4": 75, "race5": 1, "race6": 12, "ethnicity1": 574, "ethnicity2": 138, "edu1": 85, "edu2": 139, "edu3": 163, "edu4": 156, "Shape_Length": 25770.580420548911, "Shape_Area": 33461764.765796047, "total_2021": 961, "total_2022": 712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.614134076220409, 29.996138237089411 ], [ -95.614132076895118, 29.995990236506231 ], [ -95.614105076280254, 29.995634236599319 ], [ -95.614058076677054, 29.995323236906504 ], [ -95.613992076107834, 29.995007236430482 ], [ -95.613937076252569, 29.994791236974336 ], [ -95.613868076198585, 29.99457123645578 ], [ -95.61382907676338, 29.994467236120062 ], [ -95.613782075849343, 29.994341236728278 ], [ -95.613603076085411, 29.993929236522195 ], [ -95.613495076688011, 29.993711236271878 ], [ -95.61346407665981, 29.993657236203767 ], [ -95.613292076529447, 29.993378236534596 ], [ -95.613238076126436, 29.993303236415667 ], [ -95.613092076448368, 29.993137236143461 ], [ -95.612839076359705, 29.992847236445968 ], [ -95.61239307607633, 29.992378236329944 ], [ -95.6123190754099, 29.99229023653287 ], [ -95.612176076228792, 29.992133236069122 ], [ -95.612052076229006, 29.991979236374782 ], [ -95.611947076186397, 29.991830235758183 ], [ -95.611804075881849, 29.991592235961956 ], [ -95.611791075696857, 29.991567236066416 ], [ -95.611750076024819, 29.991484236327807 ], [ -95.610975075665294, 29.992177236430368 ], [ -95.609743075477908, 29.993282236757441 ], [ -95.609311075469435, 29.993661236708078 ], [ -95.609213075209396, 29.993754236627488 ], [ -95.60889707541547, 29.994017236224725 ], [ -95.608391074877176, 29.994461236304275 ], [ -95.608288074669829, 29.994558236647752 ], [ -95.608071075001988, 29.99474923636598 ], [ -95.607646074398843, 29.995137236522716 ], [ -95.607288074438657, 29.995454236794266 ], [ -95.607044074698905, 29.995671236629882 ], [ -95.60695507456991, 29.995745237187002 ], [ -95.606859074988634, 29.995815236790229 ], [ -95.606797075028425, 29.995870236622245 ], [ -95.606713074064231, 29.995927236631989 ], [ -95.606589074562834, 29.995994237134891 ], [ -95.606530074872282, 29.996025237276367 ], [ -95.606065074202064, 29.996278237483843 ], [ -95.605989073894392, 29.996312237500671 ], [ -95.605924074411149, 29.996349237521688 ], [ -95.605877073935204, 29.996394236691319 ], [ -95.6058390739462, 29.996449236929589 ], [ -95.605824074668305, 29.996471237400545 ], [ -95.605808074472051, 29.996495236984313 ], [ -95.605762074236026, 29.996523237600027 ], [ -95.604223074183054, 29.996553237497018 ], [ -95.604048073457705, 29.996550237416983 ], [ -95.603752074105827, 29.996556237582737 ], [ -95.603179073968704, 29.996585237493836 ], [ -95.60290707371486, 29.996594237157261 ], [ -95.602547073382823, 29.99659823695794 ], [ -95.60224907393291, 29.996602237341868 ], [ -95.601465072815259, 29.996586237265923 ], [ -95.601218073468132, 29.996587237738662 ], [ -95.600613072627382, 29.996597237030109 ], [ -95.600524072802088, 29.996598237383523 ], [ -95.600056072643284, 29.996606237368027 ], [ -95.599340072697728, 29.996613237162997 ], [ -95.598953072151673, 29.996617237821908 ], [ -95.598634072247108, 29.996616237172258 ], [ -95.596595072131265, 29.996624237378207 ], [ -95.596497071934749, 29.996625237165677 ], [ -95.595534071428858, 29.99662823767774 ], [ -95.594601071790407, 29.996636237471787 ], [ -95.594223070873852, 29.996636237783608 ], [ -95.593903070813525, 29.996650237875912 ], [ -95.593523071638643, 29.996668237389937 ], [ -95.593347070843862, 29.996669237807147 ], [ -95.59334407067675, 29.996787237424808 ], [ -95.59335507128587, 29.997362237502209 ], [ -95.593475071139835, 30.003480238680126 ], [ -95.593491071341035, 30.00393823911044 ], [ -95.593485071420858, 30.004048238918806 ], [ -95.593100071220746, 30.005032238954637 ], [ -95.593106072071876, 30.007315239913275 ], [ -95.593098071728832, 30.007703239961156 ], [ -95.593131071987088, 30.008237239957456 ], [ -95.593134071817985, 30.00835723967224 ], [ -95.59317607141368, 30.009906240106663 ], [ -95.593198071737078, 30.010732240065682 ], [ -95.593200072228825, 30.010788240309235 ], [ -95.593208071481797, 30.011369240931312 ], [ -95.593255072255317, 30.012868241069665 ], [ -95.593257071784251, 30.012924241243287 ], [ -95.593261071619992, 30.013037240720291 ], [ -95.5933140722871, 30.013035240801138 ], [ -95.593619071535741, 30.013030240645836 ], [ -95.594361072137801, 30.013013240569499 ], [ -95.594644072468583, 30.013010240923204 ], [ -95.594686072422647, 30.013010240534236 ], [ -95.595038072204161, 30.012997240639059 ], [ -95.595154072435349, 30.01299424100263 ], [ -95.595863072964249, 30.012977241058451 ], [ -95.596056073095681, 30.012969241251096 ], [ -95.596187072533283, 30.012965240781206 ], [ -95.596226072734083, 30.012967240654945 ], [ -95.596284072377415, 30.012971240862122 ], [ -95.59637407234645, 30.012972241252903 ], [ -95.596457072475644, 30.012964241004539 ], [ -95.596834073168935, 30.012955240789459 ], [ -95.597396073287115, 30.012944241012004 ], [ -95.597521072693141, 30.012942240739893 ], [ -95.597773073198098, 30.012933240824033 ], [ -95.597887073555711, 30.01293524060905 ], [ -95.598138073515543, 30.012929240891186 ], [ -95.598333072789373, 30.012925240668157 ], [ -95.598675072791181, 30.012918240793478 ], [ -95.598821072931941, 30.012910241128537 ], [ -95.599079073442866, 30.012906240922774 ], [ -95.599292073611466, 30.012903241039183 ], [ -95.599593073650965, 30.012890240613089 ], [ -95.599949074097211, 30.012890240883035 ], [ -95.60010407400307, 30.012885241104708 ], [ -95.600228073469594, 30.012883240990639 ], [ -95.600555073420367, 30.012879240361858 ], [ -95.600772073328116, 30.012876240967604 ], [ -95.601502074319015, 30.012846240679178 ], [ -95.601647073841079, 30.012850240788936 ], [ -95.601775074169097, 30.012848240272653 ], [ -95.601916074404201, 30.012839240732653 ], [ -95.602128074475402, 30.012836240846941 ], [ -95.602290074681491, 30.012834240555243 ], [ -95.602774074489602, 30.012824240205219 ], [ -95.604113075168087, 30.012800240775757 ], [ -95.604144074857899, 30.012800240964758 ], [ -95.604967074417601, 30.012778240562163 ], [ -95.605025075073797, 30.012777240559597 ], [ -95.60574807457796, 30.012763240896746 ], [ -95.606003074686029, 30.012760240069273 ], [ -95.60661507543594, 30.012741240120647 ], [ -95.606694075693909, 30.012738240008513 ], [ -95.606800074852842, 30.012740240427743 ], [ -95.607014074973193, 30.012736240024193 ], [ -95.607136075830013, 30.012745240068959 ], [ -95.607223075894211, 30.012742240415438 ], [ -95.60736207525018, 30.012737240654506 ], [ -95.607461075592127, 30.012724240512952 ], [ -95.607552075242879, 30.012723240588574 ], [ -95.607631075110419, 30.012729240031977 ], [ -95.607833075523104, 30.012717240271844 ], [ -95.607963075662497, 30.012723240241009 ], [ -95.607985075579506, 30.012724240664745 ], [ -95.6080210752841, 30.012472240245653 ], [ -95.608023075987802, 30.011577240356093 ], [ -95.608013075662413, 30.011391239929658 ], [ -95.608020075663561, 30.011218240195639 ], [ -95.608017075931826, 30.010869240137175 ], [ -95.608018075564829, 30.010184239888584 ], [ -95.608019075574362, 30.009164239331788 ], [ -95.608019075599842, 30.008949239928757 ], [ -95.608020074925861, 30.007774239373646 ], [ -95.608022074922431, 30.006689238758906 ], [ -95.608019075743016, 30.006233239248932 ], [ -95.608018074977551, 30.006095238978777 ], [ -95.608027075290977, 30.005795238773135 ], [ -95.608062074916106, 30.005473238538805 ], [ -95.608098075794928, 30.005250238893776 ], [ -95.608171074971693, 30.00492123854972 ], [ -95.608230075346682, 30.004699238337761 ], [ -95.608387075238483, 30.004258238733417 ], [ -95.608596075473912, 30.003824238659686 ], [ -95.608642075754375, 30.003719238578395 ], [ -95.608850075320376, 30.003372238566406 ], [ -95.608906075708347, 30.003288238460829 ], [ -95.609106075248974, 30.003017238564297 ], [ -95.60930907579008, 30.002768238657755 ], [ -95.609446075346071, 30.002612238338735 ], [ -95.609584075729828, 30.002467238046886 ], [ -95.609709075522787, 30.002345238392881 ], [ -95.609921075654739, 30.002154238198898 ], [ -95.610579076099043, 30.0015812384108 ], [ -95.611194076380244, 30.00103723780234 ], [ -95.611223076296866, 30.001011237928022 ], [ -95.611278075644037, 30.000973237603237 ], [ -95.611752076533222, 30.000545237985278 ], [ -95.61180807646987, 30.000494238109081 ], [ -95.612256075671795, 30.000099237577238 ], [ -95.612400076323823, 29.999965237939907 ], [ -95.612439076267577, 29.999924237948946 ], [ -95.612504076123287, 29.999862238040453 ], [ -95.612572076335326, 29.999804238015077 ], [ -95.612838075969563, 29.999509237759206 ], [ -95.612948076258164, 29.99937823765168 ], [ -95.612999076698841, 29.999330237630417 ], [ -95.613041076438591, 29.999274237049796 ], [ -95.613073076266758, 29.999216237897294 ], [ -95.61309507632069, 29.999187237077116 ], [ -95.613135076542278, 29.999133237528351 ], [ -95.613169076099609, 29.999100237735707 ], [ -95.613207076508218, 29.999052237480623 ], [ -95.613412076136044, 29.998734237432213 ], [ -95.613455075895956, 29.998679237582468 ], [ -95.613524076721234, 29.998531237371498 ], [ -95.613561076404594, 29.998469237730845 ], [ -95.613575076330434, 29.998419236966061 ], [ -95.613585076843535, 29.998402236998135 ], [ -95.613642076121067, 29.998298237228507 ], [ -95.613664076236716, 29.998242237677189 ], [ -95.613714076157578, 29.998139237432202 ], [ -95.613748076128545, 29.998085237158616 ], [ -95.613761076296257, 29.99802423715985 ], [ -95.613789076772392, 29.997980237423082 ], [ -95.613837076128931, 29.997856236891128 ], [ -95.613856075953422, 29.997770236986536 ], [ -95.61394207617704, 29.997524237449007 ], [ -95.61400607678388, 29.997260237143653 ], [ -95.614097076943509, 29.99675123724948 ], [ -95.614124076397644, 29.996394236682072 ], [ -95.614134076220409, 29.996138237089411 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 151, "Tract": "48201553102", "Area_SqMi": 0.58242031285076801, "total_2009": 1854, "total_2010": 1823, "total_2011": 1918, "total_2012": 2381, "total_2013": 2560, "total_2014": 2639, "total_2015": 2112, "total_2016": 1995, "total_2017": 2028, "total_2018": 1643, "total_2019": 1383, "total_2020": 1278, "age1": 391, "age2": 450, "age3": 260, "earn1": 384, "earn2": 410, "earn3": 307, "naics_s01": 0, "naics_s02": 0, "naics_s03": 5, "naics_s04": 1, "naics_s05": 2, "naics_s06": 28, "naics_s07": 265, "naics_s08": 7, "naics_s09": 1, "naics_s10": 16, "naics_s11": 12, "naics_s12": 74, "naics_s13": 1, "naics_s14": 128, "naics_s15": 4, "naics_s16": 110, "naics_s17": 2, "naics_s18": 417, "naics_s19": 28, "naics_s20": 0, "race1": 807, "race2": 217, "race3": 16, "race4": 45, "race5": 2, "race6": 14, "ethnicity1": 659, "ethnicity2": 442, "edu1": 204, "edu2": 197, "edu3": 201, "edu4": 108, "Shape_Length": 22653.71670850692, "Shape_Area": 16236881.499951579, "total_2021": 1092, "total_2022": 1101 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.469025040587397, 30.014580245946341 ], [ -95.469159040287636, 30.014502245925673 ], [ -95.469023040173624, 30.014313245731039 ], [ -95.468949039957138, 30.014234245646382 ], [ -95.468642040176491, 30.013790245679449 ], [ -95.468362040377855, 30.013411245642857 ], [ -95.468286040433398, 30.013322245339957 ], [ -95.468222040268699, 30.013215245500227 ], [ -95.468081039790306, 30.013015244865802 ], [ -95.468003040300488, 30.012925245010013 ], [ -95.467936040299733, 30.012816245464727 ], [ -95.467627040002782, 30.012381245619522 ], [ -95.467272039848069, 30.01187624492723 ], [ -95.467028039682901, 30.0115542451496 ], [ -95.466287038990643, 30.010521244526025 ], [ -95.466021039294716, 30.010169244572864 ], [ -95.464894038689181, 30.008600244103427 ], [ -95.464706038628592, 30.008318244730383 ], [ -95.464533038943173, 30.008033244346766 ], [ -95.464481038722795, 30.007963244129648 ], [ -95.464354038618026, 30.007790244031938 ], [ -95.464198038247915, 30.007593244636556 ], [ -95.464097038478499, 30.007446243975274 ], [ -95.463954038998025, 30.007238244717538 ], [ -95.463875038082691, 30.007137244025781 ], [ -95.463798038732506, 30.00703824462531 ], [ -95.463694038490615, 30.007095244584558 ], [ -95.459088037882125, 30.009607244793465 ], [ -95.457651037001696, 30.010390245290832 ], [ -95.457463037204562, 30.010491245423118 ], [ -95.457411036827153, 30.010520244843406 ], [ -95.457377036546305, 30.010539245461544 ], [ -95.457304037167845, 30.010579244919953 ], [ -95.45610603653185, 30.011232245071135 ], [ -95.455816036232875, 30.011390245630029 ], [ -95.455345036595332, 30.011647245097624 ], [ -95.454928036879565, 30.011875245810828 ], [ -95.454356036727035, 30.012187245613848 ], [ -95.454312036734308, 30.012211245361911 ], [ -95.45374103619956, 30.012522245473704 ], [ -95.453490036397341, 30.012659246037597 ], [ -95.453158035708512, 30.012840245368235 ], [ -95.452628035470013, 30.013129245427759 ], [ -95.450512035204852, 30.014283246015157 ], [ -95.450565035327386, 30.014345246059175 ], [ -95.450654035081342, 30.014449246265624 ], [ -95.45096903589598, 30.014768245920813 ], [ -95.451062035802764, 30.014870246693018 ], [ -95.451144035113686, 30.014988246448581 ], [ -95.451245035230073, 30.015175246182803 ], [ -95.451317035167165, 30.015323246767323 ], [ -95.451496035809342, 30.015684246869938 ], [ -95.451512035631197, 30.015711246657368 ], [ -95.451658035855729, 30.015967246729058 ], [ -95.451844035873918, 30.016239246934013 ], [ -95.45209903619488, 30.016558246450259 ], [ -95.452148036389232, 30.016618246531188 ], [ -95.452246035630779, 30.016761246866373 ], [ -95.452325035804321, 30.016854246507954 ], [ -95.452381035960954, 30.016943246878121 ], [ -95.452408035832192, 30.016985246237216 ], [ -95.452453036124453, 30.017024246907482 ], [ -95.452554036211524, 30.017192246248161 ], [ -95.452695036149336, 30.01739424646324 ], [ -95.452765036537187, 30.017455246641369 ], [ -95.452937036709244, 30.017686246996508 ], [ -95.453487036890465, 30.018423247260522 ], [ -95.45402203618896, 30.019165247220648 ], [ -95.454161036268871, 30.019368247025103 ], [ -95.454315036989698, 30.019570247170236 ], [ -95.454403037143919, 30.019717247287353 ], [ -95.454454036741879, 30.019787247291159 ], [ -95.454572036312555, 30.019904246842763 ], [ -95.454762036907724, 30.020208247375127 ], [ -95.454955036721742, 30.02047924748473 ], [ -95.455006036587136, 30.020538247613541 ], [ -95.455035036847335, 30.020604247035831 ], [ -95.455059036659094, 30.020635247289576 ], [ -95.455114036604783, 30.020720247675715 ], [ -95.455512037544111, 30.021246247202161 ], [ -95.455558036788617, 30.021322247755911 ], [ -95.455720036584651, 30.021526247726211 ], [ -95.455810037181223, 30.021654247132339 ], [ -95.455944037636883, 30.021857247320934 ], [ -95.455967037657615, 30.021923247961098 ], [ -95.456051037569708, 30.022029247582065 ], [ -95.456332037253745, 30.02239524788499 ], [ -95.45650503696389, 30.022645247531269 ], [ -95.456566037783858, 30.022705248137054 ], [ -95.456611036885178, 30.022758247859358 ], [ -95.456689037855568, 30.022878247414543 ], [ -95.457070037202683, 30.023398247712421 ], [ -95.457152037417259, 30.023527248129032 ], [ -95.457340037125761, 30.023747248005332 ], [ -95.457446037508006, 30.023924247879215 ], [ -95.457572038006319, 30.024083247932886 ], [ -95.457601037287645, 30.024127248300051 ], [ -95.457650038047689, 30.024173248098052 ], [ -95.457711037324287, 30.024277248316679 ], [ -95.457938037622185, 30.024598247624784 ], [ -95.457975037792991, 30.024634248152811 ], [ -95.458034038246723, 30.024741247985013 ], [ -95.458071038120124, 30.024783247850408 ], [ -95.458170038254764, 30.024902248435176 ], [ -95.45829603835044, 30.025087247980665 ], [ -95.45849003796576, 30.025340247713022 ], [ -95.458527037697692, 30.025415248046265 ], [ -95.458575037555903, 30.025477247986441 ], [ -95.458734038516113, 30.025660248517543 ], [ -95.458821038371639, 30.025799248164603 ], [ -95.458870038594085, 30.025859248081137 ], [ -95.458955037972132, 30.025998248149417 ], [ -95.45907603846122, 30.026161248530478 ], [ -95.459384037931017, 30.025991247940574 ], [ -95.459715038815432, 30.025843248120054 ], [ -95.459775038191765, 30.025814248247471 ], [ -95.460635038739852, 30.025538247779764 ], [ -95.46072603866115, 30.025523247940182 ], [ -95.460918038601264, 30.02545924819967 ], [ -95.461618038792054, 30.025252247766868 ], [ -95.461896039186371, 30.025138248297527 ], [ -95.462170038972502, 30.024985247661434 ], [ -95.461951038960564, 30.024693247684706 ], [ -95.461913038401889, 30.024627247659776 ], [ -95.461819038774593, 30.024508248033136 ], [ -95.461671038781745, 30.024299248173666 ], [ -95.461157038486746, 30.02359924787876 ], [ -95.460665038515671, 30.022922247336989 ], [ -95.460497038000085, 30.022683247472827 ], [ -95.46015203794046, 30.022219247018604 ], [ -95.460008038227997, 30.022033247656427 ], [ -95.459651037873186, 30.021535247406618 ], [ -95.459428038393085, 30.021216246915952 ], [ -95.459151037983844, 30.020844247238351 ], [ -95.459129038067232, 30.020814247255604 ], [ -95.459103037770248, 30.020739247101936 ], [ -95.459041037613446, 30.020692247165918 ], [ -95.458995038143442, 30.020634246894694 ], [ -95.458905037644797, 30.020497247424327 ], [ -95.458795037512274, 30.020362247028157 ], [ -95.458643038014301, 30.020142247366504 ], [ -95.458602038200482, 30.020075247418777 ], [ -95.458560037589606, 30.020033246643649 ], [ -95.458367037695467, 30.019783246588823 ], [ -95.458324037629907, 30.019698247097335 ], [ -95.458146037468993, 30.019462246526988 ], [ -95.458050037384581, 30.019328247199056 ], [ -95.458002037169663, 30.019288247001327 ], [ -95.457981038077222, 30.019238246941729 ], [ -95.457941037420582, 30.019177247207587 ], [ -95.457630037180522, 30.01874424703616 ], [ -95.457539037564558, 30.018617246783499 ], [ -95.457502037176312, 30.018552246380374 ], [ -95.457444036963494, 30.018481247021725 ], [ -95.457337037689911, 30.018326246657015 ], [ -95.457266037492161, 30.018249247091582 ], [ -95.457093037637037, 30.018007246464546 ], [ -95.457919037628415, 30.017547246618285 ], [ -95.45823503746567, 30.017982246496587 ], [ -95.458441037718757, 30.018219246998914 ], [ -95.458638037814353, 30.018493246363651 ], [ -95.458673037759056, 30.018532246600312 ], [ -95.458716037261709, 30.018580246921388 ], [ -95.458855037573613, 30.018503247096199 ], [ -95.458948038129179, 30.018431247106225 ], [ -95.459018037967184, 30.018407246976746 ], [ -95.459082038313028, 30.018366246716383 ], [ -95.459149037809667, 30.018347247110665 ], [ -95.45955503800505, 30.018120246823639 ], [ -95.459697037469184, 30.018054246290404 ], [ -95.460230037792272, 30.01776124612163 ], [ -95.46027803831241, 30.017729246581418 ], [ -95.460300038160781, 30.01768524644822 ], [ -95.460158037618783, 30.017485246426151 ], [ -95.460120038253393, 30.017398246438862 ], [ -95.460142037719152, 30.017318246374188 ], [ -95.460225037770286, 30.017256246057993 ], [ -95.460500037681555, 30.017108246596131 ], [ -95.460811037748499, 30.01692524647498 ], [ -95.460890037941255, 30.016887246249386 ], [ -95.461032038236297, 30.016798245958643 ], [ -95.461165038224408, 30.016703246430669 ], [ -95.462456039035459, 30.015598245809425 ], [ -95.462696038357777, 30.015414246426506 ], [ -95.462879038592689, 30.015296245586601 ], [ -95.463086038774435, 30.015181245608439 ], [ -95.463604038763364, 30.015889246001763 ], [ -95.463769039317043, 30.016098246203224 ], [ -95.463926039062869, 30.016258246239374 ], [ -95.464112038540961, 30.016412246367693 ], [ -95.464203039124371, 30.016458246384076 ], [ -95.464302039589342, 30.016525245775089 ], [ -95.464314038769245, 30.016510245854359 ], [ -95.46431403893979, 30.016480246231211 ], [ -95.464482038918732, 30.016291245826508 ], [ -95.464724038841936, 30.016087245875383 ], [ -95.464911039043002, 30.015957245924199 ], [ -95.465071038852685, 30.015864245564455 ], [ -95.46570103892256, 30.015513245569625 ], [ -95.466211039556612, 30.015241245431962 ], [ -95.466358039853546, 30.01544824627522 ], [ -95.466489039445335, 30.015580245821642 ], [ -95.4664990393197, 30.015644245619054 ], [ -95.466570039578002, 30.015737245516096 ], [ -95.467324039810634, 30.015325245413649 ], [ -95.46747403976515, 30.01526324612669 ], [ -95.467611040099854, 30.015231245656853 ], [ -95.467801039611999, 30.015200245905824 ], [ -95.467927039592539, 30.015169245666421 ], [ -95.468030039597522, 30.015129245830508 ], [ -95.468116040045146, 30.015085245585144 ], [ -95.468480039567453, 30.014890245363535 ], [ -95.468576040255655, 30.014840245679828 ], [ -95.468644040212737, 30.014800245971308 ], [ -95.469025040587397, 30.014580245946341 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 152, "Tract": "48201980400", "Area_SqMi": 0.51635179779710616, "total_2009": 14458, "total_2010": 13655, "total_2011": 14008, "total_2012": 14713, "total_2013": 15142, "total_2014": 711, "total_2015": 681, "total_2016": 645, "total_2017": 538, "total_2018": 452, "total_2019": 361, "total_2020": 133, "age1": 77, "age2": 57, "age3": 40, "earn1": 103, "earn2": 41, "earn3": 30, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 13, "naics_s06": 1, "naics_s07": 69, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 0, "naics_s17": 22, "naics_s18": 56, "naics_s19": 0, "naics_s20": 0, "race1": 112, "race2": 53, "race3": 2, "race4": 3, "race5": 0, "race6": 4, "ethnicity1": 110, "ethnicity2": 64, "edu1": 27, "edu2": 28, "edu3": 24, "edu4": 18, "Shape_Length": 15094.182726048282, "Shape_Area": 14395004.377649114, "total_2021": 133, "total_2022": 174 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.352243997143262, 29.720455189815503 ], [ -95.352565996844746, 29.719649189318638 ], [ -95.351229996521653, 29.71923118883938 ], [ -95.350825996122794, 29.71911618907799 ], [ -95.348432995899387, 29.718389188978954 ], [ -95.347009995259043, 29.717961189095185 ], [ -95.346373995300553, 29.717767189147352 ], [ -95.345876995610183, 29.717621189133393 ], [ -95.344629994698423, 29.717244189500082 ], [ -95.343072994385039, 29.716773189483469 ], [ -95.342187994129972, 29.716511189144182 ], [ -95.34158999460665, 29.716332188998866 ], [ -95.341172993984173, 29.716202188971192 ], [ -95.340187993345168, 29.715897188948045 ], [ -95.339995993838855, 29.715868189111017 ], [ -95.340003993600718, 29.716096189354701 ], [ -95.339997993717361, 29.716337189318768 ], [ -95.339955993352405, 29.716582189212208 ], [ -95.339880993812727, 29.716861189599193 ], [ -95.339702993276163, 29.71737418893423 ], [ -95.339040993741563, 29.71899818963837 ], [ -95.338669993755644, 29.719909189859361 ], [ -95.338387993177562, 29.720626189921031 ], [ -95.33831899307495, 29.720794189625895 ], [ -95.338164993707409, 29.721117189775928 ], [ -95.337929993732587, 29.721735190113442 ], [ -95.337600993538928, 29.722508190461788 ], [ -95.337115993444755, 29.72378319048785 ], [ -95.337444993785795, 29.725077190822603 ], [ -95.337735993315675, 29.725591191444899 ], [ -95.337811993072307, 29.725654191397528 ], [ -95.338034993487554, 29.725710191148384 ], [ -95.338312993951718, 29.725784191477469 ], [ -95.3386529942902, 29.72582719077856 ], [ -95.339036993478999, 29.725864191059539 ], [ -95.339518994362905, 29.726001191115703 ], [ -95.33971099369785, 29.726038191508529 ], [ -95.34075799392312, 29.726288191463851 ], [ -95.341756994512281, 29.726579190804038 ], [ -95.341857994335925, 29.726609191170041 ], [ -95.342869994741363, 29.726943191436963 ], [ -95.343968995425982, 29.727280191241185 ], [ -95.344746995074587, 29.727529190792477 ], [ -95.345813995413522, 29.727872191096793 ], [ -95.345880996093626, 29.727891191451519 ], [ -95.345955995817945, 29.727908191189705 ], [ -95.346175996021188, 29.727960191166513 ], [ -95.346442995723422, 29.727998191236264 ], [ -95.346873995824026, 29.728036191622195 ], [ -95.347263995918325, 29.728009190825638 ], [ -95.347633996505095, 29.727966191511847 ], [ -95.348096996626225, 29.72787219142927 ], [ -95.348492996221609, 29.727815191212581 ], [ -95.348897996685309, 29.727774191446876 ], [ -95.349353996306561, 29.727764190983883 ], [ -95.349558996203328, 29.727772190678309 ], [ -95.349738996230315, 29.727791191272651 ], [ -95.349898996546287, 29.72784919122007 ], [ -95.349816996504956, 29.72745619131685 ], [ -95.349786997149451, 29.727326191358994 ], [ -95.349769997097312, 29.727184190652917 ], [ -95.349765997011843, 29.726976190927321 ], [ -95.349819996368467, 29.726660190912508 ], [ -95.349872996203615, 29.726426191031148 ], [ -95.349944997074047, 29.726213190697155 ], [ -95.350092996489977, 29.725836190679292 ], [ -95.350523996397271, 29.72480019004421 ], [ -95.350941996900985, 29.723733190549527 ], [ -95.351418997091187, 29.722536189648178 ], [ -95.35166499735621, 29.721920189903546 ], [ -95.351801997058516, 29.721566190086435 ], [ -95.351936996508329, 29.721246189263841 ], [ -95.35213399659699, 29.720764189310611 ], [ -95.352243997143262, 29.720455189815503 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 153, "Tract": "48201980200", "Area_SqMi": 0.26981233612921746, "total_2009": 1873, "total_2010": 1604, "total_2011": 1641, "total_2012": 1816, "total_2013": 1868, "total_2014": 2011, "total_2015": 2029, "total_2016": 2300, "total_2017": 2346, "total_2018": 2184, "total_2019": 2035, "total_2020": 2269, "age1": 568, "age2": 1620, "age3": 722, "earn1": 1045, "earn2": 832, "earn3": 1033, "naics_s01": 0, "naics_s02": 0, "naics_s03": 164, "naics_s04": 12, "naics_s05": 19, "naics_s06": 47, "naics_s07": 23, "naics_s08": 19, "naics_s09": 0, "naics_s10": 12, "naics_s11": 0, "naics_s12": 213, "naics_s13": 30, "naics_s14": 2104, "naics_s15": 19, "naics_s16": 34, "naics_s17": 14, "naics_s18": 179, "naics_s19": 8, "naics_s20": 13, "race1": 2108, "race2": 439, "race3": 47, "race4": 250, "race5": 7, "race6": 59, "ethnicity1": 1915, "ethnicity2": 995, "edu1": 626, "edu2": 543, "edu3": 585, "edu4": 588, "Shape_Length": 15033.406734628395, "Shape_Area": 7521906.1428541159, "total_2021": 2710, "total_2022": 2910 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.359311001029212, 29.767268198881069 ], [ -95.359342000497548, 29.76726819889554 ], [ -95.359026000947338, 29.767098198409535 ], [ -95.358731000549867, 29.766941198384206 ], [ -95.358437000998308, 29.766783198543067 ], [ -95.358169000124491, 29.766639199087052 ], [ -95.357791000145383, 29.766310199005215 ], [ -95.357712000005591, 29.76615019860656 ], [ -95.357719000551313, 29.766124198878423 ], [ -95.357794000315323, 29.765838198760804 ], [ -95.357927000722185, 29.76565619894982 ], [ -95.357986000479684, 29.76560319831033 ], [ -95.358274000588025, 29.765347198209295 ], [ -95.358330000888003, 29.765260198157687 ], [ -95.358411000482079, 29.765137198447025 ], [ -95.358491000984941, 29.765013198461801 ], [ -95.358548000867515, 29.764925198248594 ], [ -95.358605000651721, 29.764837198008959 ], [ -95.358004000811476, 29.763731197953049 ], [ -95.357903000217334, 29.763615198596099 ], [ -95.357755000293494, 29.76344519769837 ], [ -95.357497000521064, 29.763273198560949 ], [ -95.357264000534883, 29.763118197862237 ], [ -95.357140000020351, 29.763055198370903 ], [ -95.356835999695818, 29.762900198379867 ], [ -95.356335999820175, 29.762730197920426 ], [ -95.354578999859555, 29.762195197923599 ], [ -95.353815999212998, 29.762049198168611 ], [ -95.353619999607574, 29.762106197672846 ], [ -95.353484998847037, 29.762220197780731 ], [ -95.353383999269212, 29.762527197689952 ], [ -95.353434999049227, 29.763112198628811 ], [ -95.35346499953279, 29.763458198637132 ], [ -95.353692999008516, 29.764166198764581 ], [ -95.353865998975323, 29.76470319854236 ], [ -95.353794999686713, 29.7650571990429 ], [ -95.353533999041133, 29.765585198273524 ], [ -95.353331999340014, 29.765708198957192 ], [ -95.353051999554054, 29.765772198467108 ], [ -95.3526409988213, 29.765752198553443 ], [ -95.352036999488377, 29.765515198896775 ], [ -95.351287999154792, 29.765221198391146 ], [ -95.35086099832921, 29.765184198705612 ], [ -95.350630998501245, 29.765164198300656 ], [ -95.349943998638949, 29.765290198455926 ], [ -95.349526998609136, 29.765444198412677 ], [ -95.349165998226042, 29.76568319902626 ], [ -95.348749998479633, 29.766127199435971 ], [ -95.348337998169669, 29.766398198927824 ], [ -95.348155997890686, 29.766453199052815 ], [ -95.347872997637239, 29.766541199277199 ], [ -95.347684998145013, 29.766517198760347 ], [ -95.347589998062062, 29.766591199224049 ], [ -95.347411997808209, 29.766710199286418 ], [ -95.347287997393607, 29.766788199536489 ], [ -95.347062997607409, 29.766902199010367 ], [ -95.346814997514613, 29.767016199347303 ], [ -95.346551997178295, 29.767123198975938 ], [ -95.346506997296629, 29.767142199141286 ], [ -95.345062996813354, 29.767664199225617 ], [ -95.344798996927821, 29.767764199611275 ], [ -95.344659996981477, 29.767803199188631 ], [ -95.343992997208844, 29.768038199768537 ], [ -95.343887996598184, 29.768082199899595 ], [ -95.343775996728084, 29.768118199976382 ], [ -95.343687996887965, 29.768150199727192 ], [ -95.343254996817279, 29.768289199329669 ], [ -95.34260399673704, 29.768563199966788 ], [ -95.342508996266105, 29.768617200058799 ], [ -95.342265996699965, 29.768726199682011 ], [ -95.341958996059788, 29.768908200200542 ], [ -95.341744996858168, 29.769066199492464 ], [ -95.341608996806812, 29.769169199614272 ], [ -95.341492995940143, 29.769274199803338 ], [ -95.341408996315991, 29.769366199527955 ], [ -95.3413049962668, 29.769481200222828 ], [ -95.341170996716613, 29.769646200333316 ], [ -95.341261995974691, 29.769671200198406 ], [ -95.341345996180493, 29.769685200330766 ], [ -95.341496996947996, 29.769709199668601 ], [ -95.341815997005781, 29.769766200224247 ], [ -95.342259996779973, 29.769786200275608 ], [ -95.342602996497575, 29.769794199901987 ], [ -95.343475996767026, 29.769816200011711 ], [ -95.343689996866701, 29.7698192001418 ], [ -95.344724997422006, 29.769813199904327 ], [ -95.345023997735112, 29.769811200256267 ], [ -95.345094996969593, 29.769814200044856 ], [ -95.345293997312666, 29.769846200206917 ], [ -95.345638997879377, 29.769888199646115 ], [ -95.345730997569532, 29.769899199842584 ], [ -95.345979997132915, 29.769942200205051 ], [ -95.346069997430078, 29.76994920007888 ], [ -95.346442997311939, 29.76998819944664 ], [ -95.346652997878522, 29.770015199707906 ], [ -95.347066998032844, 29.770089199483813 ], [ -95.347834998424105, 29.770177199686977 ], [ -95.34840499813096, 29.770182199609881 ], [ -95.348794998822612, 29.770176199932621 ], [ -95.349093998556739, 29.770171199719147 ], [ -95.350448998736766, 29.77014820005898 ], [ -95.350974999272296, 29.770139199969865 ], [ -95.351273998517286, 29.770122199325119 ], [ -95.351436998585598, 29.770113199310369 ], [ -95.35181999894759, 29.770058199291196 ], [ -95.352087999461929, 29.769995199666539 ], [ -95.352119999264033, 29.769988199481357 ], [ -95.352335999574876, 29.769927199538511 ], [ -95.352785999537332, 29.769742199338591 ], [ -95.354521999511377, 29.768933199412533 ], [ -95.355313999717168, 29.768620199282449 ], [ -95.355664999760208, 29.768445199363867 ], [ -95.355981999844474, 29.768305199269495 ], [ -95.356210000569732, 29.768205199334002 ], [ -95.356986999930882, 29.767938198630883 ], [ -95.357290000403268, 29.767834198749728 ], [ -95.357996000935444, 29.767592198814242 ], [ -95.358244000209439, 29.767520199065398 ], [ -95.358906001130293, 29.76733919877784 ], [ -95.359195000832045, 29.767288198898989 ], [ -95.359311001029212, 29.767268198881069 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 154, "Tract": "48201453202", "Area_SqMi": 0.50846583117493216, "total_2009": 864, "total_2010": 828, "total_2011": 890, "total_2012": 887, "total_2013": 1060, "total_2014": 1111, "total_2015": 1074, "total_2016": 1021, "total_2017": 1121, "total_2018": 1322, "total_2019": 1277, "total_2020": 1253, "age1": 377, "age2": 681, "age3": 297, "earn1": 299, "earn2": 640, "earn3": 416, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 0, "naics_s06": 110, "naics_s07": 440, "naics_s08": 88, "naics_s09": 0, "naics_s10": 9, "naics_s11": 41, "naics_s12": 157, "naics_s13": 119, "naics_s14": 111, "naics_s15": 0, "naics_s16": 115, "naics_s17": 0, "naics_s18": 112, "naics_s19": 30, "naics_s20": 0, "race1": 899, "race2": 311, "race3": 12, "race4": 116, "race5": 2, "race6": 15, "ethnicity1": 795, "ethnicity2": 560, "edu1": 275, "edu2": 263, "edu3": 279, "edu4": 161, "Shape_Length": 15440.331167074997, "Shape_Area": 14175157.125189666, "total_2021": 1326, "total_2022": 1355 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.570669050731311, 29.677528173095975 ], [ -95.57062305135787, 29.676681173531456 ], [ -95.570599050745955, 29.676395172907611 ], [ -95.57053705123711, 29.675950172825598 ], [ -95.570434051356372, 29.675325173072082 ], [ -95.570392050630218, 29.674760172627192 ], [ -95.570396050956759, 29.67422517267449 ], [ -95.569818050877259, 29.67417517306982 ], [ -95.569515050981991, 29.674168172420995 ], [ -95.569161050458675, 29.674152172775738 ], [ -95.568637049955427, 29.67413717247144 ], [ -95.562852049358483, 29.674470172794571 ], [ -95.561424048353345, 29.674572173158047 ], [ -95.560852048096535, 29.674613173271556 ], [ -95.560482048371355, 29.674632172950218 ], [ -95.560479048767945, 29.674681173475332 ], [ -95.560453048023405, 29.674863173303837 ], [ -95.56040404863073, 29.675209172830588 ], [ -95.560261048205476, 29.676219173720092 ], [ -95.560140047868714, 29.676887173240942 ], [ -95.559919048361394, 29.677776174182704 ], [ -95.559677047767735, 29.678854173588324 ], [ -95.559579048358117, 29.679290174209772 ], [ -95.559502048519647, 29.679681174262967 ], [ -95.559253048315341, 29.680873174192531 ], [ -95.559230048150823, 29.680983174776504 ], [ -95.558461048167672, 29.684667175411391 ], [ -95.558730048115322, 29.684675175058498 ], [ -95.559377048486397, 29.684694174928079 ], [ -95.561543048604207, 29.684771174796893 ], [ -95.562710049220527, 29.68480017481463 ], [ -95.56271304932487, 29.685124174955124 ], [ -95.562713049603062, 29.685248175098025 ], [ -95.562723049732071, 29.685636175129872 ], [ -95.562726049299513, 29.685954175339663 ], [ -95.562732049147868, 29.686524175605332 ], [ -95.563602049537764, 29.686514175269526 ], [ -95.563997049537335, 29.686509175557031 ], [ -95.564101050159834, 29.686511175412157 ], [ -95.564369050188986, 29.686501175418623 ], [ -95.565918049887586, 29.686483175413063 ], [ -95.566630050252527, 29.686473174977166 ], [ -95.567216050270034, 29.686469175458097 ], [ -95.567347051005456, 29.686466175658015 ], [ -95.567669050373866, 29.686460175547275 ], [ -95.568137050757088, 29.686444174983581 ], [ -95.568464051062307, 29.686417174892345 ], [ -95.569217050520123, 29.686274175094329 ], [ -95.569656051243626, 29.686178175510562 ], [ -95.569597051527197, 29.685906174987018 ], [ -95.569545051436933, 29.685569175143804 ], [ -95.569494050865146, 29.684816174880211 ], [ -95.569502050805923, 29.684589174942822 ], [ -95.569515051088374, 29.684160174377826 ], [ -95.569521051091456, 29.684031174977957 ], [ -95.569548050967441, 29.683859174826342 ], [ -95.569768050985516, 29.682980174734272 ], [ -95.569970050682471, 29.682230174029772 ], [ -95.570042050917749, 29.681820174160471 ], [ -95.570061051529521, 29.681682174429074 ], [ -95.57006905151853, 29.681454174190954 ], [ -95.570069050539772, 29.680629173814037 ], [ -95.570164050790311, 29.679955174107175 ], [ -95.570214051090687, 29.679839174107773 ], [ -95.570437050799399, 29.679111173240781 ], [ -95.570606050980615, 29.678384173609611 ], [ -95.570669050731311, 29.677528173095975 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 155, "Tract": "48015760502", "Area_SqMi": 83.856170648924603, "total_2009": 2060, "total_2010": 2042, "total_2011": 2329, "total_2012": 2155, "total_2013": 2238, "total_2014": 1918, "total_2015": 1972, "total_2016": 1919, "total_2017": 1892, "total_2018": 1817, "total_2019": 1870, "total_2020": 1830, "age1": 351, "age2": 1090, "age3": 531, "earn1": 306, "earn2": 569, "earn3": 1097, "naics_s01": 25, "naics_s02": 5, "naics_s03": 85, "naics_s04": 114, "naics_s05": 525, "naics_s06": 27, "naics_s07": 250, "naics_s08": 7, "naics_s09": 0, "naics_s10": 75, "naics_s11": 8, "naics_s12": 50, "naics_s13": 0, "naics_s14": 49, "naics_s15": 438, "naics_s16": 82, "naics_s17": 15, "naics_s18": 49, "naics_s19": 39, "naics_s20": 129, "race1": 1694, "race2": 190, "race3": 18, "race4": 43, "race5": 2, "race6": 25, "ethnicity1": 1547, "ethnicity2": 425, "edu1": 290, "edu2": 471, "edu3": 503, "edu4": 357, "Shape_Length": 332646.89096196881, "Shape_Area": 2337766516.4215794, "total_2021": 1889, "total_2022": 1972 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.320858254733466, 29.958903204389866 ], [ -96.320845254014259, 29.958782204890035 ], [ -96.320801254706865, 29.95867820471728 ], [ -96.320618254265995, 29.95848020437009 ], [ -96.320536254242356, 29.958403204978353 ], [ -96.320372254218924, 29.958293204982734 ], [ -96.320195253976379, 29.958084204202489 ], [ -96.319848254616758, 29.957787204506253 ], [ -96.319772254437453, 29.957694204549274 ], [ -96.319721254421964, 29.957562204916684 ], [ -96.319677254584917, 29.957391204606008 ], [ -96.319671254412299, 29.957276204002021 ], [ -96.319696254182233, 29.957205204788032 ], [ -96.319702253964806, 29.957144204080919 ], [ -96.31969625411412, 29.957078204528333 ], [ -96.319652254555962, 29.957029204175264 ], [ -96.31960825425034, 29.956957203977154 ], [ -96.319595253679026, 29.956897204695011 ], [ -96.319595254246337, 29.95683120398191 ], [ -96.319627253690257, 29.956759204743605 ], [ -96.319709253902232, 29.95672120389721 ], [ -96.319949254138649, 29.956699204193896 ], [ -96.320239254226294, 29.956534204657896 ], [ -96.320460254653028, 29.956320204581893 ], [ -96.320517254432104, 29.956215204609258 ], [ -96.320555253958716, 29.95611620373969 ], [ -96.320555254143272, 29.956001203756397 ], [ -96.320529254348628, 29.955896204396318 ], [ -96.320460254564622, 29.955792204143066 ], [ -96.32033425389892, 29.955566204272827 ], [ -96.320012254248155, 29.955347203686575 ], [ -96.319968254635683, 29.955297204422891 ], [ -96.319917253963794, 29.955204204352455 ], [ -96.319848253939384, 29.954918203954271 ], [ -96.319734254406072, 29.954676203998702 ], [ -96.319526253605218, 29.954467203997911 ], [ -96.319437253821093, 29.954302204052258 ], [ -96.319336254281538, 29.954082204160379 ], [ -96.319292254087244, 29.954038203876099 ], [ -96.319204253948115, 29.953994204095554 ], [ -96.319134253416323, 29.953989204108836 ], [ -96.318850254143626, 29.954016203855566 ], [ -96.318762254182687, 29.954016203715991 ], [ -96.318661253502597, 29.953978204031124 ], [ -96.318490254145189, 29.953851203612533 ], [ -96.318396254089549, 29.953752204021651 ], [ -96.31837125395846, 29.953681203597593 ], [ -96.318352253531359, 29.953582203741274 ], [ -96.318364254128895, 29.95351120407156 ], [ -96.318421253380691, 29.953445203625705 ], [ -96.318648253425607, 29.953318203461968 ], [ -96.318838253969517, 29.9532582039093 ], [ -96.31894525405643, 29.953252203309443 ], [ -96.319141253338699, 29.953192203988532 ], [ -96.319261254311641, 29.953115203519886 ], [ -96.319381253921719, 29.953021203228499 ], [ -96.31941825364504, 29.952889203865418 ], [ -96.319418254103766, 29.952769203454899 ], [ -96.319362253958161, 29.952664203107314 ], [ -96.319115253634862, 29.952472203932679 ], [ -96.318775253624395, 29.952307203806257 ], [ -96.318655253532853, 29.95223020311332 ], [ -96.318491253524641, 29.952109203518791 ], [ -96.318345254008534, 29.951971203443716 ], [ -96.318175253647155, 29.951790203828899 ], [ -96.318112253558411, 29.951653203303888 ], [ -96.318093253084115, 29.951570203155583 ], [ -96.318055252956938, 29.951251203715891 ], [ -96.318049252982803, 29.951119203054038 ], [ -96.318004253684165, 29.951010202969762 ], [ -96.317929253367481, 29.950916203667248 ], [ -96.317796252937441, 29.950850202790146 ], [ -96.317645253692461, 29.9508392036219 ], [ -96.3174992533405, 29.950878203232158 ], [ -96.317380253162611, 29.950949203040185 ], [ -96.317266253711239, 29.95099920327338 ], [ -96.317133252866881, 29.951031203182648 ], [ -96.317007253013571, 29.951037203475373 ], [ -96.316925253028643, 29.951031203589849 ], [ -96.316868252868133, 29.950955202879769 ], [ -96.31687525348066, 29.950867202907613 ], [ -96.316994253537956, 29.950614203390192 ], [ -96.31702025317729, 29.950504203118481 ], [ -96.31701325333988, 29.950410202962281 ], [ -96.316837253538282, 29.950190202786441 ], [ -96.316729253457851, 29.950119202863156 ], [ -96.316628252780021, 29.95007520314639 ], [ -96.316414253060202, 29.950070203453546 ], [ -96.316149253433352, 29.950108203000209 ], [ -96.316016252854723, 29.95007020317539 ], [ -96.315928252792602, 29.949954202708557 ], [ -96.315903252636474, 29.949811203291002 ], [ -96.315877253114124, 29.949525203213017 ], [ -96.315846252897273, 29.949360202923632 ], [ -96.315795252880747, 29.949262203395833 ], [ -96.315726253019321, 29.949174202842151 ], [ -96.315600252243314, 29.949064203313316 ], [ -96.315385252281942, 29.948976202915048 ], [ -96.315316252256252, 29.94893720245646 ], [ -96.315215252691317, 29.948838202951162 ], [ -96.315139252949706, 29.948673203257623 ], [ -96.315107252483926, 29.948541203057935 ], [ -96.315114252154487, 29.948404202721157 ], [ -96.315164252348922, 29.948256202651333 ], [ -96.315290253098993, 29.948146202412271 ], [ -96.315511253032923, 29.948014202725474 ], [ -96.315732253064439, 29.947860202657953 ], [ -96.315890253239999, 29.947634202373951 ], [ -96.316142253210728, 29.947228202307805 ], [ -96.316433253144908, 29.946788202078046 ], [ -96.316679253169056, 29.946480202690733 ], [ -96.316698253326948, 29.946403201928145 ], [ -96.31670425320462, 29.946321202761432 ], [ -96.316666253329842, 29.946260202469137 ], [ -96.316546253364805, 29.946216202770984 ], [ -96.316382253173174, 29.946178202658139 ], [ -96.316269253195387, 29.946106202533013 ], [ -96.316199252480018, 29.946040201978189 ], [ -96.31604125243264, 29.945848201989694 ], [ -96.315814252469409, 29.945650202017937 ], [ -96.315739252165855, 29.945601202067202 ], [ -96.315669252446554, 29.945573202041889 ], [ -96.31559325282376, 29.945557202394898 ], [ -96.315511252432856, 29.945480202013336 ], [ -96.315448252616378, 29.945370201948386 ], [ -96.315429252192615, 29.94527620251192 ], [ -96.315454252836759, 29.945210202308434 ], [ -96.315530252615389, 29.945166202085176 ], [ -96.315732252232579, 29.945100202202518 ], [ -96.316042252779624, 29.944869201623163 ], [ -96.316187252324994, 29.944798201984277 ], [ -96.316401252972426, 29.944716201987809 ], [ -96.31655925258903, 29.944600201923542 ], [ -96.316711252674764, 29.944518202195027 ], [ -96.316887252926293, 29.944457201992439 ], [ -96.317064252966247, 29.944424201907914 ], [ -96.31722225264447, 29.944364201518638 ], [ -96.317443253288459, 29.944182202056783 ], [ -96.317582253296948, 29.944028202107372 ], [ -96.31774625263408, 29.943875201379765 ], [ -96.317834253517816, 29.943781202020038 ], [ -96.31790325260242, 29.943644201819613 ], [ -96.317853252617695, 29.943457202017434 ], [ -96.317790252582569, 29.943347202094955 ], [ -96.317708253118795, 29.943242201883205 ], [ -96.317443253347719, 29.942858201377771 ], [ -96.317373252450082, 29.942687201351614 ], [ -96.317291252756903, 29.942528201928088 ], [ -96.317266252891258, 29.942429201627874 ], [ -96.317171252885998, 29.942352201397227 ], [ -96.317051252395899, 29.942291201332402 ], [ -96.316950252727693, 29.942187201606384 ], [ -96.31691325273755, 29.942066201393413 ], [ -96.316906252668744, 29.941967201546444 ], [ -96.316944253223767, 29.941351201085638 ], [ -96.31688125284218, 29.940868201098578 ], [ -96.316812252318229, 29.940582200989091 ], [ -96.316786252314799, 29.940516200944366 ], [ -96.316793252567749, 29.940390200706148 ], [ -96.3167802522036, 29.94029620120055 ], [ -96.316828252197112, 29.940277200784443 ], [ -96.31680025249328, 29.940246200803614 ], [ -96.316712252158453, 29.940129201330748 ], [ -96.316616252788734, 29.940024201114724 ], [ -96.316604252143094, 29.939989200973795 ], [ -96.31657125208568, 29.939972201299415 ], [ -96.316493252317187, 29.939901201128862 ], [ -96.31639625232512, 29.939794200830541 ], [ -96.316365252893121, 29.939773200960122 ], [ -96.316286252516676, 29.939695201346161 ], [ -96.316238252672548, 29.939638200710398 ], [ -96.316210252248041, 29.939614200646005 ], [ -96.316112252525016, 29.9395012007048 ], [ -96.316058252921167, 29.939450201170214 ], [ -96.315886252360258, 29.939254200705275 ], [ -96.315610252258864, 29.938950200917485 ], [ -96.315556252615465, 29.938898201278846 ], [ -96.315230252130632, 29.938534200659031 ], [ -96.315173252363621, 29.938466200509939 ], [ -96.315158251859231, 29.93843320044228 ], [ -96.315072251817668, 29.938311200642538 ], [ -96.314942252267215, 29.938174200649414 ], [ -96.314842251765782, 29.938020200609774 ], [ -96.314779251924733, 29.937888200647659 ], [ -96.314663252181717, 29.937620200759504 ], [ -96.31462425183615, 29.937483200327993 ], [ -96.314619252212211, 29.93744820102194 ], [ -96.314600252192406, 29.937378201051896 ], [ -96.314595252326484, 29.937308200459981 ], [ -96.314597252403047, 29.937236200242229 ], [ -96.314606252033158, 29.93716520093875 ], [ -96.314606252212144, 29.937129200682254 ], [ -96.314625251730419, 29.937024200560398 ], [ -96.31464225174642, 29.93699220055176 ], [ -96.31466825179929, 29.936888200451754 ], [ -96.314679251649864, 29.936818200417807 ], [ -96.314689251485021, 29.936784200497065 ], [ -96.314693252220891, 29.93671220057686 ], [ -96.314691252333489, 29.936641200536354 ], [ -96.31465025189631, 29.936432200128333 ], [ -96.314640252043674, 29.936397200061268 ], [ -96.314622251416836, 29.936364200354614 ], [ -96.314568251980887, 29.936231200758645 ], [ -96.314507251705336, 29.93609820006613 ], [ -96.314381252297323, 29.935916200741971 ], [ -96.314311251523606, 29.935830200261101 ], [ -96.314280251551381, 29.935807200073146 ], [ -96.314175251819393, 29.935702200065162 ], [ -96.314119251922506, 29.935652200100314 ], [ -96.314097251382208, 29.935623200131488 ], [ -96.313939252230298, 29.935465199840486 ], [ -96.313909251231578, 29.935442200596388 ], [ -96.313800251382133, 29.935338200431719 ], [ -96.313777251164026, 29.935309200255315 ], [ -96.313646251198605, 29.935222199950335 ], [ -96.313540251861468, 29.935167200609328 ], [ -96.313433251472702, 29.935117200416183 ], [ -96.313358251052819, 29.935089199930847 ], [ -96.313323251835953, 29.935071200106808 ], [ -96.313245251150491, 29.935049200176483 ], [ -96.313205251805627, 29.93504620047074 ], [ -96.313164251926622, 29.935038200265375 ], [ -96.313039251904726, 29.935050200442603 ], [ -96.312920251062934, 29.935081200137201 ], [ -96.312845251744861, 29.935109200046977 ], [ -96.312748251578128, 29.935176199865175 ], [ -96.312690251195932, 29.935226199865895 ], [ -96.312651251214021, 29.935288200657901 ], [ -96.31260225137467, 29.935385200211734 ], [ -96.312574251274853, 29.935452200393627 ], [ -96.312556250956575, 29.935482200228595 ], [ -96.312529251627026, 29.935547199911948 ], [ -96.312429251146355, 29.935857200299456 ], [ -96.312346251392896, 29.936057200091934 ], [ -96.312324251016051, 29.936088200012957 ], [ -96.312263251803614, 29.936135200607797 ], [ -96.312226251646877, 29.936151200679106 ], [ -96.312185251251918, 29.936156200454732 ], [ -96.312104251041134, 29.936156200418541 ], [ -96.31206625175848, 29.936143200087429 ], [ -96.311966251164975, 29.936080200541788 ], [ -96.31187325107858, 29.936012199993822 ], [ -96.311815251372309, 29.935962200523491 ], [ -96.311656250831447, 29.935855200358549 ], [ -96.311321251051851, 29.935654200399725 ], [ -96.311260251381057, 29.935610200354425 ], [ -96.311155251212227, 29.935556200063171 ], [ -96.311079251209094, 29.935528199941153 ], [ -96.310926250659506, 29.935486200448874 ], [ -96.31088625113388, 29.935479200518444 ], [ -96.310805251350175, 29.935473200397293 ], [ -96.310722250947052, 29.935473200059867 ], [ -96.310642250413281, 29.935462200587111 ], [ -96.310400250988465, 29.935444200714688 ], [ -96.310358250390337, 29.935446200095143 ], [ -96.310279250790302, 29.935435200604488 ], [ -96.310119250495902, 29.935420200278607 ], [ -96.309882250821147, 29.935379200351502 ], [ -96.309845250871305, 29.935364200683683 ], [ -96.309653250443461, 29.935307200577888 ], [ -96.30957525085951, 29.935288199982555 ], [ -96.309498250070902, 29.935263200203369 ], [ -96.309426250577559, 29.935230200471477 ], [ -96.309360250701658, 29.935190199930535 ], [ -96.30922025028687, 29.935118199896294 ], [ -96.309161250959249, 29.93506920073499 ], [ -96.309127250253709, 29.93505119996221 ], [ -96.309013250685013, 29.93495420034937 ], [ -96.308888250517839, 29.934868199937313 ], [ -96.308863250020835, 29.934841200067286 ], [ -96.308800250631435, 29.934800199938923 ], [ -96.308777250382477, 29.934770199887922 ], [ -96.308714250527999, 29.93473020049364 ], [ -96.308689250630962, 29.934702200716536 ], [ -96.308567250014377, 29.934617200442222 ], [ -96.308457249776765, 29.93451820041685 ], [ -96.30833525008623, 29.934434199820817 ], [ -96.308311250717324, 29.93440520028976 ], [ -96.308248249711696, 29.934366200524813 ], [ -96.308225249723364, 29.934336200374897 ], [ -96.308192250266316, 29.934318200477257 ], [ -96.308104249758387, 29.93425119986307 ], [ -96.308079250146562, 29.934223199967931 ], [ -96.308049250286686, 29.93420120018056 ], [ -96.308016250377875, 29.934184200112458 ], [ -96.307994249815309, 29.934153200221882 ], [ -96.307931250122479, 29.934114200325649 ], [ -96.307907250416292, 29.934086200592965 ], [ -96.307819250296276, 29.934019199786775 ], [ -96.307785249601793, 29.934002200345461 ], [ -96.307763250184408, 29.933971200435959 ], [ -96.307700249657017, 29.933932200408208 ], [ -96.307676250081045, 29.933904199730538 ], [ -96.307642249954156, 29.933888200146811 ], [ -96.307560249745279, 29.933814200273563 ], [ -96.307463249822504, 29.933702199896256 ], [ -96.307409249746485, 29.93365220012091 ], [ -96.307387249483583, 29.933621200125387 ], [ -96.307186250074011, 29.933406200158071 ], [ -96.307158250341033, 29.933382199897775 ], [ -96.30710824994739, 29.933328200363043 ], [ -96.306973249833646, 29.933200199934085 ], [ -96.306884249302939, 29.933127199846751 ], [ -96.30670024949714, 29.932989200041234 ], [ -96.306604249907593, 29.932923200214788 ], [ -96.306502249307187, 29.932863200148827 ], [ -96.306156249152281, 29.932672200378061 ], [ -96.30611924920855, 29.93265619975433 ], [ -96.306040249325392, 29.932637199522933 ], [ -96.305796249953275, 29.932614200357161 ], [ -96.305467249036468, 29.932598200363838 ], [ -96.305224249383969, 29.932570200037475 ], [ -96.305186248992598, 29.932561199925452 ], [ -96.30510524929295, 29.932552200262204 ], [ -96.305026249503058, 29.93253719987371 ], [ -96.304913249221087, 29.932499199933456 ], [ -96.304843249335491, 29.932461199556538 ], [ -96.304778249206208, 29.932420199693716 ], [ -96.304671249016621, 29.932371200339634 ], [ -96.30459524884985, 29.932345199811788 ], [ -96.304446248878051, 29.932286200109562 ], [ -96.304142249066714, 29.932178199491567 ], [ -96.303729249108528, 29.932015200072403 ], [ -96.303320249109888, 29.931844200293558 ], [ -96.302726249059887, 29.931589199993368 ], [ -96.302691248710644, 29.931571199999727 ], [ -96.301967248176155, 29.931281199790408 ], [ -96.301897247969976, 29.931245199394443 ], [ -96.301833248229869, 29.931201199545804 ], [ -96.301681248781435, 29.931081200181016 ], [ -96.301568248571442, 29.930976199540833 ], [ -96.301503248589071, 29.930935199834533 ], [ -96.30136024795074, 29.930871199545404 ], [ -96.301285248164476, 29.930842199493103 ], [ -96.30110824777087, 29.930760199706931 ], [ -96.301039248588907, 29.930723200131215 ], [ -96.300966248013381, 29.930695199366266 ], [ -96.300931247819022, 29.930676199914856 ], [ -96.300748247786572, 29.930605199594552 ], [ -96.300673248022832, 29.930580199640573 ], [ -96.300639248172942, 29.930562199355766 ], [ -96.300527248035053, 29.930521199828728 ], [ -96.300298247519592, 29.93044519942222 ], [ -96.299869247567543, 29.930317199561088 ], [ -96.299790248069328, 29.930297199308153 ], [ -96.299669247734315, 29.930279199517091 ], [ -96.299628247893594, 29.930279199618379 ], [ -96.299548247901953, 29.930267199851478 ], [ -96.299184248176061, 29.930232199814039 ], [ -96.298860247908991, 29.930215199334018 ], [ -96.298779247424335, 29.930216200070774 ], [ -96.298658247143621, 29.930210199816706 ], [ -96.298618247747456, 29.930204199660505 ], [ -96.298414247193989, 29.93021119969443 ], [ -96.29833224756895, 29.930206199680999 ], [ -96.298009247852534, 29.930160199785906 ], [ -96.297685247694375, 29.930145199848578 ], [ -96.297603246839316, 29.930147199478739 ], [ -96.297482247067535, 29.930142199864424 ], [ -96.297442247113011, 29.930137200134645 ], [ -96.297319247158214, 29.930133199700528 ], [ -96.297074247289942, 29.930136199344901 ], [ -96.296910247494864, 29.930145199993547 ], [ -96.296829247122176, 29.930141200116811 ], [ -96.296584247350921, 29.930147199435424 ], [ -96.296297246804443, 29.930182200149375 ], [ -96.296134246794168, 29.930194199798887 ], [ -96.295725246424155, 29.930243199547906 ], [ -96.295567246757457, 29.930278200103555 ], [ -96.295392246650707, 29.930303200209153 ], [ -96.295269247059721, 29.930314199836548 ], [ -96.295191246811342, 29.930304199628367 ], [ -96.29507524640519, 29.930273199512321 ], [ -96.294889247138798, 29.930204199931161 ], [ -96.294815246467849, 29.930170199757523 ], [ -96.294643246980726, 29.930074199789196 ], [ -96.294553246980016, 29.930002199843827 ], [ -96.294529246976978, 29.929972199610525 ], [ -96.294463246854164, 29.929821199374146 ], [ -96.294444246855264, 29.929752199565449 ], [ -96.294393246651651, 29.929617200194514 ], [ -96.294386246145223, 29.929581199387673 ], [ -96.294364246107719, 29.9291871997054 ], [ -96.294361246878125, 29.929101199377438 ], [ -96.294346246044825, 29.928611199768557 ], [ -96.294317246666097, 29.928325199377898 ], [ -96.294299246777996, 29.928281199739502 ], [ -96.294199246297353, 29.928124199573134 ], [ -96.29413324621207, 29.928033199606311 ], [ -96.294059246813049, 29.927947199337794 ], [ -96.293837245866186, 29.927736199308129 ], [ -96.293712246504455, 29.927645199134613 ], [ -96.293610246436984, 29.927586199639599 ], [ -96.293452246031791, 29.92754719953275 ], [ -96.293370246651946, 29.927542199148615 ], [ -96.293123245809099, 29.927539199611005 ], [ -96.29300024569639, 29.927543199676514 ], [ -96.292919245612893, 29.927554199348695 ], [ -96.292716246152537, 29.927569199106305 ], [ -96.292354245542171, 29.927609199672755 ], [ -96.292313246047513, 29.927610199220002 ], [ -96.292109246024481, 29.927582199779316 ], [ -96.292075246217138, 29.92756319917353 ], [ -96.292018245383133, 29.9275111993576 ], [ -96.291913245238362, 29.927402199499365 ], [ -96.291857245394866, 29.92735019904627 ], [ -96.291792245288491, 29.927306199304795 ], [ -96.291706245997403, 29.927229199143962 ], [ -96.291548245221534, 29.927020199251693 ], [ -96.291462245383642, 29.926898199351658 ], [ -96.291391245632568, 29.926768199715045 ], [ -96.291293245259411, 29.926653199531803 ], [ -96.291117245101162, 29.926501199591982 ], [ -96.290888245223087, 29.926350199084411 ], [ -96.290826245796552, 29.926304199153485 ], [ -96.290645245807667, 29.926216198914542 ], [ -96.290570245082961, 29.926187198999628 ], [ -96.290341245727575, 29.9261111992274 ], [ -96.290184245738914, 29.926073199024742 ], [ -96.290068244713396, 29.926037199458818 ], [ -96.289993244988167, 29.926007199343641 ], [ -96.289927245366954, 29.925965199004775 ], [ -96.289865245218465, 29.925918199608038 ], [ -96.28984724540868, 29.925886198880594 ], [ -96.289635244766657, 29.925580198925456 ], [ -96.289586245553863, 29.925481198643404 ], [ -96.289513244625738, 29.925128198975017 ], [ -96.289427244517398, 29.924852199064411 ], [ -96.289421244767297, 29.924816199156371 ], [ -96.289374245035532, 29.924244198604178 ], [ -96.289329244491299, 29.923814198491129 ], [ -96.289291244538845, 29.923638198377002 ], [ -96.289261245012497, 29.923534198569218 ], [ -96.289103244739962, 29.92316419835916 ], [ -96.289086245349012, 29.923132198738404 ], [ -96.289036244969637, 29.923075198638156 ], [ -96.288982244630432, 29.923021198627268 ], [ -96.288948245225669, 29.923000198285692 ], [ -96.288835244667197, 29.92295919821548 ], [ -96.288795245272894, 29.922949198189933 ], [ -96.288634244802481, 29.922925198538014 ], [ -96.288352244614259, 29.922871198774654 ], [ -96.287824244603513, 29.922777198669326 ], [ -96.287622244881334, 29.922737198662581 ], [ -96.28746624403415, 29.922694198696121 ], [ -96.287431244892858, 29.922675198297473 ], [ -96.287354244523016, 29.922651198849767 ], [ -96.287253244285154, 29.922588198645023 ], [ -96.287228244582337, 29.922559198301801 ], [ -96.287153243820853, 29.922432198812199 ], [ -96.287124243922676, 29.922364198513275 ], [ -96.287066244810617, 29.922192198171278 ], [ -96.287018244654135, 29.921908198055966 ], [ -96.287022244391665, 29.921766198512465 ], [ -96.28703624421901, 29.921696198406764 ], [ -96.287071244313765, 29.921592198631213 ], [ -96.287116243994859, 29.921493198257405 ], [ -96.287158244743395, 29.921474198148331 ], [ -96.287226244304108, 29.921435198581502 ], [ -96.287267244476013, 29.921427198693618 ], [ -96.287369244465509, 29.921371198542317 ], [ -96.2874322445508, 29.921326198655883 ], [ -96.287508244372361, 29.9212011983984 ], [ -96.287518243915713, 29.92113119862087 ], [ -96.287530244002795, 29.92099019816159 ], [ -96.28752024392972, 29.920919198635904 ], [ -96.287489244802373, 29.920817198627994 ], [ -96.287440244650199, 29.920721197879963 ], [ -96.287368244111761, 29.920635197790045 ], [ -96.287306243797786, 29.920590197724049 ], [ -96.287230244564881, 29.920562198061177 ], [ -96.287189244701736, 29.920563197787146 ], [ -96.287107243882772, 29.920558197929761 ], [ -96.286985244625427, 29.920539197874472 ], [ -96.286745244129335, 29.920491198093281 ], [ -96.286708244242732, 29.920475198223368 ], [ -96.286611243713466, 29.920410198184662 ], [ -96.286506243829905, 29.920300198201524 ], [ -96.286449244212136, 29.920250198274804 ], [ -96.286264244447423, 29.920060198408152 ], [ -96.285940243698704, 29.919739198429191 ], [ -96.285798244183582, 29.919611197952154 ], [ -96.285678244001545, 29.919514197580181 ], [ -96.28565524353877, 29.919484197717285 ], [ -96.285641243297292, 29.919450197984851 ], [ -96.285575244031506, 29.91942119842852 ], [ -96.285351243571952, 29.919266198015144 ], [ -96.284354243708435, 29.918406197789565 ], [ -96.284021243316062, 29.918088198087801 ], [ -96.283970243603051, 29.918032198133169 ], [ -96.283300243042902, 29.917354197730415 ], [ -96.283197242676437, 29.917243197585119 ], [ -96.282851243348048, 29.916888197199906 ], [ -96.282626242631665, 29.916633197507824 ], [ -96.28258124263489, 29.916574197820015 ], [ -96.282529242983216, 29.91651919766586 ], [ -96.282410242846908, 29.916373197864086 ], [ -96.282283242320887, 29.916148197646965 ], [ -96.282126242491842, 29.915895197400985 ], [ -96.281960242716252, 29.91560619713141 ], [ -96.281498242362503, 29.914684196875172 ], [ -96.281325242679614, 29.914319197123717 ], [ -96.281219242632545, 29.91412419735974 ], [ -96.28102424196706, 29.913808196695506 ], [ -96.280837242187147, 29.913529196921729 ], [ -96.280125242099857, 29.912566196457465 ], [ -96.280054242562585, 29.912435197043713 ], [ -96.279923241744541, 29.912172196361354 ], [ -96.279813242108702, 29.911978197116408 ], [ -96.279352242131267, 29.911214196237946 ], [ -96.279135241266815, 29.910952196544336 ], [ -96.278950241852712, 29.910758196646512 ], [ -96.278835241675708, 29.910655196757673 ], [ -96.278751241190449, 29.910596196297213 ], [ -96.278644241432602, 29.910541196509907 ], [ -96.27856924163531, 29.910515196370152 ], [ -96.278529241229521, 29.910507196510583 ], [ -96.27832324122555, 29.910489196791403 ], [ -96.27828124130528, 29.910489196103661 ], [ -96.278163241392406, 29.910518196208344 ], [ -96.278093241936872, 29.91055619681612 ], [ -96.278020241932055, 29.910586196913329 ], [ -96.277938240994146, 29.910590196663239 ], [ -96.277897241021563, 29.910587196588654 ], [ -96.277858241689998, 29.910576196382028 ], [ -96.277779241789318, 29.910561196571059 ], [ -96.27770224091411, 29.910540196358784 ], [ -96.277664241219483, 29.910524196124129 ], [ -96.277525240894519, 29.910447196550617 ], [ -96.277289241568695, 29.910302196175397 ], [ -96.277097241030617, 29.910168196164552 ], [ -96.276945241034483, 29.910052196102217 ], [ -96.276889240956407, 29.910002196674881 ], [ -96.27685424166043, 29.909982196117163 ], [ -96.276753241544853, 29.909898196720881 ], [ -96.276630240794987, 29.909807196445215 ], [ -96.276454240517722, 29.909714196491429 ], [ -96.276228240775666, 29.909630195951713 ], [ -96.276150240899156, 29.909607196409709 ], [ -96.275806241330571, 29.909488196253658 ], [ -96.275737241186462, 29.909449196657537 ], [ -96.275539240558203, 29.909321196448545 ], [ -96.275393241075804, 29.909255196674366 ], [ -96.275316240527829, 29.909228196570222 ], [ -96.274915240716069, 29.909047196483645 ], [ -96.274666240390431, 29.908921196133488 ], [ -96.274284240494708, 29.908712196479001 ], [ -96.271421239813762, 29.907032196291389 ], [ -96.271314239625738, 29.906979195647899 ], [ -96.271240239789165, 29.906947195975761 ], [ -96.270632239239347, 29.906653195808381 ], [ -96.270563238923287, 29.906615196042033 ], [ -96.269740239239269, 29.906216195554563 ], [ -96.269667238966449, 29.906184195466377 ], [ -96.269169239148667, 29.905938196019051 ], [ -96.269100238700247, 29.905899195566921 ], [ -96.268922239021265, 29.905813195407127 ], [ -96.268607238540611, 29.905646196207318 ], [ -96.268535238455613, 29.90561319608225 ], [ -96.268114238500118, 29.905391196068063 ], [ -96.267278238380342, 29.904939195746497 ], [ -96.266848237936756, 29.90473119557441 ], [ -96.266775238552512, 29.904699195680958 ], [ -96.266465238767921, 29.904524195509985 ], [ -96.266400238045776, 29.904481196053155 ], [ -96.266218238038363, 29.904335195969011 ], [ -96.266025238298624, 29.904199195276252 ], [ -96.265646238102917, 29.903984195592884 ], [ -96.265520238366776, 29.903910195857794 ], [ -96.264991237358657, 29.903566195298438 ], [ -96.264575237647534, 29.903333195528241 ], [ -96.264320237944474, 29.903215195640847 ], [ -96.264215237851943, 29.903158195078504 ], [ -96.264017237481227, 29.903029195220018 ], [ -96.263923237774264, 29.902958195322277 ], [ -96.263673237013336, 29.902718195061059 ], [ -96.263439237569415, 29.902515195728967 ], [ -96.26339223699145, 29.902455195214493 ], [ -96.263253237106113, 29.902235194920717 ], [ -96.263151237602756, 29.902122195084985 ], [ -96.263122237233645, 29.902096195479526 ], [ -96.262649236723334, 29.901747195065475 ], [ -96.26237023759569, 29.901532194798452 ], [ -96.262154236797073, 29.90142119490114 ], [ -96.262081236928765, 29.901387195231401 ], [ -96.261839236684835, 29.901253195425468 ], [ -96.261454236742736, 29.901051195007128 ], [ -96.261352236734865, 29.900991194934331 ], [ -96.261281236414675, 29.900956195102658 ], [ -96.26114923662665, 29.900872195002215 ], [ -96.260893236233002, 29.900689194842961 ], [ -96.26063223640854, 29.900514195135656 ], [ -96.260162236965002, 29.900204195173085 ], [ -96.260068236304548, 29.900134194995527 ], [ -96.2599052365386, 29.900027194594035 ], [ -96.259745236501146, 29.899916195150954 ], [ -96.259311235896419, 29.899644195212812 ], [ -96.259131236320442, 29.8995561949978 ], [ -96.258810236383937, 29.899391195223743 ], [ -96.258565236188346, 29.899257194748085 ], [ -96.258366236352998, 29.899130195265197 ], [ -96.258173235947879, 29.898996195070207 ], [ -96.257954236317815, 29.898832195019256 ], [ -96.257817235497228, 29.898698195073077 ], [ -96.257286235651662, 29.898195194335795 ], [ -96.256896235137745, 29.897873194861909 ], [ -96.25659423516278, 29.89768619459895 ], [ -96.255721235300797, 29.897211194849056 ], [ -96.255190234748241, 29.896873194206709 ], [ -96.255037234555061, 29.896777194338153 ], [ -96.254998234652319, 29.896755194611064 ], [ -96.254968235148866, 29.89673819441218 ], [ -96.254751235045404, 29.896635194263723 ], [ -96.254600234912459, 29.896577194259692 ], [ -96.25452823520159, 29.896544194430771 ], [ -96.254192234354718, 29.896408194792116 ], [ -96.254078234572603, 29.896366194408902 ], [ -96.254001234471161, 29.89634319482624 ], [ -96.253363235043849, 29.89620119453707 ], [ -96.252921234465703, 29.896118194798973 ], [ -96.252641234365299, 29.896060194157567 ], [ -96.252519234798669, 29.896041194381098 ], [ -96.25223123451579, 29.896025194869594 ], [ -96.251859234604552, 29.896031194429284 ], [ -96.251532233824008, 29.896072194476655 ], [ -96.251004234433765, 29.896163194256491 ], [ -96.25076723372986, 29.896223194213352 ], [ -96.250340233639335, 29.896358194350974 ], [ -96.250031233280893, 29.896460194812214 ], [ -96.249874233677573, 29.896503194379676 ], [ -96.249394233752867, 29.896614195057719 ], [ -96.24923323368219, 29.896642194484834 ], [ -96.249191233890045, 29.89664419432458 ], [ -96.249026233304974, 29.896635194312871 ], [ -96.248741233837833, 29.896597194919558 ], [ -96.248662233293857, 29.89657919500414 ], [ -96.248544232893209, 29.896544194754995 ], [ -96.248235233087868, 29.89644119456625 ], [ -96.248121233507831, 29.896399194493256 ], [ -96.247888233321817, 29.896325194355931 ], [ -96.247482233457589, 29.896150195050915 ], [ -96.247410233236693, 29.896116195036409 ], [ -96.24706123341258, 29.896000194927119 ], [ -96.247021232744373, 29.895991194584195 ], [ -96.246599232768659, 29.895999194176213 ], [ -96.246331232672119, 29.896090194545359 ], [ -96.246256233231804, 29.896120195119845 ], [ -96.246216232753738, 29.896130194616042 ], [ -96.246106233232268, 29.896180194317076 ], [ -96.245863232947769, 29.896316194615697 ], [ -96.245713232506503, 29.896375194365028 ], [ -96.245298233030809, 29.896527195041756 ], [ -96.245216232638242, 29.896537194837403 ], [ -96.245094232669075, 29.896546194768291 ], [ -96.244970231955151, 29.896543195215308 ], [ -96.244809232070139, 29.896513194634203 ], [ -96.244770232225562, 29.89650119458836 ], [ -96.244571232457218, 29.896456194609922 ], [ -96.244495232154449, 29.896429195081968 ], [ -96.243698232008327, 29.896054195125547 ], [ -96.243661231666351, 29.896040194486009 ], [ -96.243589231837618, 29.896005194296272 ], [ -96.243320232474431, 29.895911194836472 ], [ -96.243247232091576, 29.895878194479661 ], [ -96.243058231462967, 29.895805194388377 ], [ -96.243023232029586, 29.895785194606407 ], [ -96.242950231679089, 29.89575319489575 ], [ -96.242567232219557, 29.895538194560203 ], [ -96.242426231936818, 29.895464194455482 ], [ -96.242274232141511, 29.89540819485693 ], [ -96.24215723148356, 29.895373195012088 ], [ -96.241799231933115, 29.895288194525616 ], [ -96.241635231598508, 29.895270195001 ], [ -96.24138823147868, 29.895273194655019 ], [ -96.241020231746433, 29.895320194853912 ], [ -96.240937231076217, 29.895318195100657 ], [ -96.240813231774666, 29.895309194947302 ], [ -96.240690231687253, 29.895295194916521 ], [ -96.240609231683607, 29.895282194667999 ], [ -96.240529230900478, 29.895264194608806 ], [ -96.240452231697887, 29.895239194582633 ], [ -96.240333230753919, 29.895211194686713 ], [ -96.240132230936041, 29.89517419490236 ], [ -96.240012231565998, 29.895147194851141 ], [ -96.239774231004489, 29.895086194635219 ], [ -96.239578231347338, 29.895028194951692 ], [ -96.239541231023068, 29.895013195047067 ], [ -96.239363230714474, 29.894921194716797 ], [ -96.239189230424671, 29.894824194756968 ], [ -96.239128231230495, 29.894776194877181 ], [ -96.239048231392005, 29.894653194272337 ], [ -96.239038230358759, 29.894618194678834 ], [ -96.239034231249576, 29.894583194933947 ], [ -96.2390362308916, 29.894512194569753 ], [ -96.23907523123313, 29.89437319443438 ], [ -96.239107231011474, 29.894308194378489 ], [ -96.239167230512493, 29.894215194387751 ], [ -96.239308231313316, 29.894040194935197 ], [ -96.239364230938023, 29.893945194869161 ], [ -96.239376231039984, 29.893874194460651 ], [ -96.239376230858582, 29.893838194048328 ], [ -96.239348230751659, 29.893733194102566 ], [ -96.239300230398797, 29.893634194579132 ], [ -96.23927823126516, 29.893492194103999 ], [ -96.239250231159147, 29.893425194359299 ], [ -96.239232231027572, 29.893393194179946 ], [ -96.239149230475491, 29.893314194705528 ], [ -96.238744230246922, 29.893009194004563 ], [ -96.238637230434961, 29.892900193946602 ], [ -96.238416230417926, 29.892640193978931 ], [ -96.238259230933238, 29.892430194207908 ], [ -96.238184230713671, 29.892344194200451 ], [ -96.23814023012288, 29.892284194549266 ], [ -96.238078230222385, 29.892237194183817 ], [ -96.238044230334978, 29.892217193753879 ], [ -96.237936230400479, 29.892166194456987 ], [ -96.237822230287435, 29.892124194406829 ], [ -96.237743230335724, 29.892103194521216 ], [ -96.237629230190819, 29.892062194214542 ], [ -96.237507230326827, 29.892050194429959 ], [ -96.237394230232439, 29.8920731944397 ], [ -96.237316230073631, 29.892095193954848 ], [ -96.237234230351376, 29.892099193884594 ], [ -96.237154229773424, 29.892085194091553 ], [ -96.236958230505465, 29.892030193730879 ], [ -96.236658230599872, 29.891916194564942 ], [ -96.236585229770768, 29.891884193952023 ], [ -96.23639222957874, 29.891823194569021 ], [ -96.235917230070029, 29.891701193742485 ], [ -96.235484229518875, 29.891578193793848 ], [ -96.235028230027538, 29.891419193658852 ], [ -96.234916230116355, 29.891375193671305 ], [ -96.234634229294883, 29.891236193828302 ], [ -96.234566229197654, 29.891197193773753 ], [ -96.234366229138374, 29.891017193781927 ], [ -96.23423522906387, 29.89088019414379 ], [ -96.234177229270102, 29.890829194375407 ], [ -96.234077229407205, 29.890767194383731 ], [ -96.234003229486873, 29.890736194202074 ], [ -96.233963229845827, 29.890727194419469 ], [ -96.23384322944932, 29.890749194325334 ], [ -96.233768229496874, 29.890777194448187 ], [ -96.233736229714069, 29.89079919437749 ], [ -96.233666228945069, 29.89083619383948 ], [ -96.23360422914466, 29.890880194258788 ], [ -96.233502229405403, 29.890939194446769 ], [ -96.233394229207263, 29.890992194101003 ], [ -96.233319228952581, 29.891020193970757 ], [ -96.233242228858614, 29.891043194512818 ], [ -96.233161228724342, 29.89104919432846 ], [ -96.233082228928524, 29.891062194123677 ], [ -96.233003228986661, 29.891080194338418 ], [ -96.232882229454319, 29.891098193896564 ], [ -96.232762229302949, 29.89110719397933 ], [ -96.232720228677039, 29.891107194199197 ], [ -96.232642228970548, 29.891090194400224 ], [ -96.232570228775259, 29.891056194316835 ], [ -96.232518228779909, 29.891003194091677 ], [ -96.232487229553016, 29.890979193981746 ], [ -96.232448229155381, 29.890918194492141 ], [ -96.232433229226828, 29.890849194327334 ], [ -96.232432228735973, 29.890814193868668 ], [ -96.232439228960956, 29.890743193677572 ], [ -96.232458228954911, 29.890674194427561 ], [ -96.232483229284995, 29.890646194449857 ], [ -96.232513228864406, 29.890622194345276 ], [ -96.232590228804796, 29.890599194218382 ], [ -96.232631228908431, 29.890594193696398 ], [ -96.232702229192398, 29.890562194190387 ], [ -96.232731229504097, 29.890537194273676 ], [ -96.232747228888499, 29.890504194064125 ], [ -96.232744229451853, 29.890469193896571 ], [ -96.232711229067078, 29.890402194185423 ], [ -96.232641228914616, 29.890316193838078 ], [ -96.232500228521971, 29.890188193862933 ], [ -96.232409229416405, 29.890116194072878 ], [ -96.232339229288357, 29.890080193749533 ], [ -96.232266228962558, 29.89004819433374 ], [ -96.232065228891159, 29.89000519347854 ], [ -96.231726228779465, 29.889883194110475 ], [ -96.231588229144023, 29.889807193699721 ], [ -96.231476228275952, 29.889763193439258 ], [ -96.231398228683176, 29.889742194133191 ], [ -96.23128322850836, 29.889703193664623 ], [ -96.231134228359551, 29.889645193472333 ], [ -96.231058228737808, 29.889620194063145 ], [ -96.230985228896728, 29.889589193854931 ], [ -96.230812228256909, 29.889496193777497 ], [ -96.230751228580175, 29.889449194277919 ], [ -96.23069922878048, 29.889394193459776 ], [ -96.230537228806355, 29.889283194159951 ], [ -96.230501228908949, 29.889265193618193 ], [ -96.230385228893311, 29.889231193853458 ], [ -96.23026422832514, 29.889199193479723 ], [ -96.230188228469245, 29.889173193643774 ], [ -96.230069228124449, 29.889144193511299 ], [ -96.229906227898994, 29.889128193529366 ], [ -96.229865227990615, 29.889130193472333 ], [ -96.229783228428886, 29.889125194095236 ], [ -96.229701228348432, 29.889130193802721 ], [ -96.229623228634523, 29.889152194279372 ], [ -96.229555228307007, 29.889193193777245 ], [ -96.229463228285752, 29.88926319430626 ], [ -96.229429227685515, 29.889283193602061 ], [ -96.229354228297595, 29.889312193907848 ], [ -96.229277228550259, 29.889335193991592 ], [ -96.229236228235536, 29.889342194211174 ], [ -96.229154228243857, 29.889342194017146 ], [ -96.229114228201922, 29.889338194134861 ], [ -96.229074227978359, 29.889327193932097 ], [ -96.228846228397259, 29.889244193589626 ], [ -96.228806227678064, 29.889235194026941 ], [ -96.228550227750262, 29.889121194222806 ], [ -96.228517227543563, 29.889099194067846 ], [ -96.228432227880617, 29.889022193984108 ], [ -96.228268228047369, 29.888862193537459 ], [ -96.228245228339901, 29.888832193896896 ], [ -96.228162228187657, 29.888754193500652 ], [ -96.227896227587777, 29.888530193691491 ], [ -96.227831227786552, 29.888484194016744 ], [ -96.227727227440752, 29.888428193502719 ], [ -96.227499227955832, 29.888348194141354 ], [ -96.22738322739616, 29.888312193692883 ], [ -96.227346227349813, 29.888296194007044 ], [ -96.2273122277048, 29.888276193475026 ], [ -96.227239227822238, 29.888245193879047 ], [ -96.22681722766103, 29.888032193566175 ], [ -96.226785227841418, 29.88800919386788 ], [ -96.226642227739234, 29.887941193374104 ], [ -96.226609226976947, 29.887920193531802 ], [ -96.226312226854958, 29.887798193568639 ], [ -96.226241227581866, 29.887763193589876 ], [ -96.226018226782699, 29.887672193918277 ], [ -96.225255227353173, 29.887409193780687 ], [ -96.225135227244735, 29.887382193612648 ], [ -96.225096226829379, 29.887370194000532 ], [ -96.224736227349226, 29.887301193552986 ], [ -96.224655226875356, 29.88728919330315 ], [ -96.224374227246685, 29.887236193727844 ], [ -96.224131227020905, 29.88720719341206 ], [ -96.224050226847751, 29.887201193200237 ], [ -96.223848226204581, 29.887176193705521 ], [ -96.2237672271078, 29.887170193344339 ], [ -96.223149226768896, 29.88717519397531 ], [ -96.222943226946711, 29.887181193498702 ], [ -96.222490226660796, 29.887211193342203 ], [ -96.2223672265971, 29.887223193917002 ], [ -96.222247225816091, 29.887244193448279 ], [ -96.222169225804038, 29.887263193463227 ], [ -96.222128225752499, 29.887267193569237 ], [ -96.221778225936305, 29.887367193976846 ], [ -96.22147022602185, 29.887469193938713 ], [ -96.221307226450008, 29.887486194225648 ], [ -96.221144226520892, 29.887480193514278 ], [ -96.220980225443569, 29.887482193766481 ], [ -96.220856225463194, 29.887491194165555 ], [ -96.220734225610897, 29.887505193949096 ], [ -96.220613225755429, 29.887526193899646 ], [ -96.220497225456512, 29.88756019424536 ], [ -96.22030722570058, 29.887623194254491 ], [ -96.220008225710799, 29.887744193461838 ], [ -96.219894225730584, 29.887784193626349 ], [ -96.21985422539484, 29.887792193569563 ], [ -96.219776226144873, 29.887815193696991 ], [ -96.219613225263629, 29.887836194290294 ], [ -96.219572226000579, 29.887834194135735 ], [ -96.219509225587032, 29.88783219381888 ], [ -96.219427225092602, 29.887822193890504 ], [ -96.219350225634301, 29.887798194021627 ], [ -96.219231225878971, 29.887771193943191 ], [ -96.219108225121644, 29.887762194179221 ], [ -96.218987225533681, 29.887772193592227 ], [ -96.218710225639427, 29.887823194148929 ], [ -96.218628225434443, 29.887818194225101 ], [ -96.218506225250351, 29.887803194389395 ], [ -96.218385225710378, 29.887782194022378 ], [ -96.218350224973221, 29.887766193557471 ], [ -96.218272225568313, 29.887747193580278 ], [ -96.217946225105337, 29.887721193864081 ], [ -96.217915225694654, 29.887698193795057 ], [ -96.217843225414995, 29.88767219398531 ], [ -96.217813225435521, 29.88764919385698 ], [ -96.217737225575291, 29.887623194087428 ], [ -96.217640225406043, 29.887558194322953 ], [ -96.21752022505693, 29.88746019406101 ], [ -96.217434225132337, 29.887383194005832 ], [ -96.21738322489179, 29.887327194192348 ], [ -96.217113225253499, 29.887061193941943 ], [ -96.2168042252584, 29.886824194000461 ], [ -96.216673224774297, 29.886740193739897 ], [ -96.21660422480474, 29.886703194103898 ], [ -96.216539224776412, 29.886660193967888 ], [ -96.216433225045947, 29.886607194221988 ], [ -96.21602222511234, 29.886448193506791 ], [ -96.21571822476426, 29.886342193709837 ], [ -96.215636224971462, 29.886334193986407 ], [ -96.21542522412831, 29.886332193437607 ], [ -96.215350224221808, 29.886347193432055 ], [ -96.215156223927067, 29.886407193661483 ], [ -96.21508122487073, 29.886435193366246 ], [ -96.215003224245947, 29.886456193572602 ], [ -96.214883223868966, 29.886474194010233 ], [ -96.214842224592473, 29.886471193380402 ], [ -96.214720224322178, 29.886479193588798 ], [ -96.214569223913045, 29.886536194149539 ], [ -96.214462224528248, 29.886587194274597 ], [ -96.214433223865882, 29.886612193947368 ], [ -96.214326224547221, 29.886665193804106 ], [ -96.214288224605923, 29.886679193422403 ], [ -96.21424722461856, 29.886685193668747 ], [ -96.214125223835396, 29.8866911934944 ], [ -96.214044223655407, 29.886677194190874 ], [ -96.213901223618862, 29.886608193497473 ], [ -96.213867223947446, 29.886588193994019 ], [ -96.213816224517473, 29.886548194183778 ], [ -96.213615224031201, 29.886369193542709 ], [ -96.213536224199842, 29.886288193979876 ], [ -96.21349022435767, 29.886230193732821 ], [ -96.213449224368972, 29.886170193678737 ], [ -96.213354224070471, 29.886058193630582 ], [ -96.213288223693581, 29.885970193701084 ], [ -96.213216223598849, 29.885844194040555 ], [ -96.21311622431837, 29.885692193390909 ], [ -96.212973223648774, 29.885442193640905 ], [ -96.21291322365569, 29.885312193371227 ], [ -96.212874223700595, 29.885253193960452 ], [ -96.212844223390917, 29.885189193263027 ], [ -96.212826224299832, 29.885119193248705 ], [ -96.212806223964705, 29.884946193363167 ], [ -96.21280422411111, 29.884876193567663 ], [ -96.212776223530639, 29.884735193662117 ], [ -96.212744223801863, 29.884632193343176 ], [ -96.212703224005381, 29.88453319344557 ], [ -96.212638223504783, 29.884445193135033 ], [ -96.212576223229931, 29.884398193155668 ], [ -96.212541223731733, 29.884379193187463 ], [ -96.212502223958111, 29.884369193311809 ], [ -96.212422223465779, 29.884359193568024 ], [ -96.212382223135265, 29.884359193725565 ], [ -96.212341223198493, 29.88435019368162 ], [ -96.212230223565655, 29.884305193356102 ], [ -96.212198223538266, 29.88428319358513 ], [ -96.212174223950939, 29.884253193717068 ], [ -96.212161223223191, 29.884219193462641 ], [ -96.212152223935092, 29.884078193786511 ], [ -96.212125223151773, 29.883798193117777 ], [ -96.212099223410746, 29.883693193780772 ], [ -96.212089223486117, 29.883622192945062 ], [ -96.212043223371737, 29.883524193503231 ], [ -96.2119772232396, 29.883437193627831 ], [ -96.211945223564044, 29.883415192888521 ], [ -96.21190722367048, 29.883400193247571 ], [ -96.211829223534508, 29.883381192999643 ], [ -96.211788223037473, 29.883379193105718 ], [ -96.211749223883814, 29.883371192851573 ], [ -96.211673223487082, 29.883345193112945 ], [ -96.211604223256714, 29.883306193642579 ], [ -96.211575223503544, 29.883280193203415 ], [ -96.211530223389985, 29.883222193099176 ], [ -96.211509223496009, 29.883154193488892 ], [ -96.211495223074337, 29.883084193297922 ], [ -96.211495222963592, 29.883049193381751 ], [ -96.211428223166479, 29.882880193411246 ], [ -96.211380222822598, 29.882783193562304 ], [ -96.211341222961863, 29.882721192958432 ], [ -96.211331223250468, 29.88268619277807 ], [ -96.211292222991617, 29.882625192971247 ], [ -96.211213223743968, 29.882544192760264 ], [ -96.211145223574533, 29.882505193057987 ], [ -96.211105223368548, 29.882497193458814 ], [ -96.2109832227775, 29.882490193178707 ], [ -96.210919223298049, 29.882532193367201 ], [ -96.21089922363376, 29.882563193017209 ], [ -96.210873222873502, 29.88258919285801 ], [ -96.210838223285009, 29.882607193080624 ], [ -96.210799222649769, 29.882617192883348 ], [ -96.210721223442491, 29.882630193054705 ], [ -96.210681223319611, 29.882631193518382 ], [ -96.210569223179888, 29.882592193026248 ], [ -96.210499223055649, 29.882554192849327 ], [ -96.210439222991738, 29.882506192862273 ], [ -96.210389222542545, 29.882449192989334 ], [ -96.210332223001004, 29.882398193301004 ], [ -96.21029222352449, 29.882336193244527 ], [ -96.210266223347475, 29.882269193141283 ], [ -96.210255222954828, 29.882199192885963 ], [ -96.210253222703244, 29.882127193103955 ], [ -96.210240223447272, 29.882094193475293 ], [ -96.21015922327237, 29.881991193354832 ], [ -96.210093223322701, 29.881948193489226 ], [ -96.209990223263901, 29.881891193333917 ], [ -96.209951223204257, 29.881882192598944 ], [ -96.209849223057219, 29.881824193348084 ], [ -96.209734222830889, 29.881722193377726 ], [ -96.209657223007653, 29.88163919331345 ], [ -96.20954722293466, 29.881492193310724 ], [ -96.209514222389984, 29.881469192877525 ], [ -96.209497222566014, 29.881437192910283 ], [ -96.209446222895053, 29.881382193364956 ], [ -96.209351223036109, 29.881315192907952 ], [ -96.20931322232822, 29.881302193226229 ], [ -96.209249222448435, 29.881289193348767 ], [ -96.20916822219796, 29.881288192657014 ], [ -96.209127222881548, 29.881292193287052 ], [ -96.209009222931542, 29.881319193199065 ], [ -96.208934222263466, 29.881348192968915 ], [ -96.208854222292217, 29.881367193271988 ], [ -96.208731222510949, 29.881365193195958 ], [ -96.208690222109794, 29.88135819273165 ], [ -96.20861222238176, 29.881336192606117 ], [ -96.208507222054052, 29.881281192818811 ], [ -96.208474222921865, 29.881260192896608 ], [ -96.208401222041019, 29.881227192825076 ], [ -96.20813622243341, 29.881126192958348 ], [ -96.20786422216824, 29.881046193230464 ], [ -96.207710221814963, 29.880992192824731 ], [ -96.207455222106972, 29.88088219282222 ], [ -96.207420222651564, 29.880863193258062 ], [ -96.207334222296808, 29.880786192602969 ], [ -96.207292222513075, 29.880726193097658 ], [ -96.207281221958226, 29.880691192485486 ], [ -96.207278222671306, 29.880655193338285 ], [ -96.207262221974275, 29.880623193101428 ], [ -96.207233221997527, 29.880597192560664 ], [ -96.207195222283246, 29.880583193266329 ], [ -96.207116222270272, 29.880567192616567 ], [ -96.207034222405127, 29.880557193081412 ], [ -96.206994222210184, 29.880564192863069 ], [ -96.206875221756945, 29.880596193146104 ], [ -96.206804222073927, 29.880630192507866 ], [ -96.206729222271051, 29.880659192877221 ], [ -96.206697221726188, 29.880681192787033 ], [ -96.206628222196784, 29.880718192852022 ], [ -96.20659022230636, 29.880732193001506 ], [ -96.206431222191171, 29.880769192714354 ], [ -96.206351221464388, 29.88078119296209 ], [ -96.206191222295956, 29.880815192582904 ], [ -96.206028221890946, 29.880826192680445 ], [ -96.205784221793465, 29.880800192655375 ], [ -96.205706222055397, 29.880780193366341 ], [ -96.205664221323829, 29.880780193150727 ], [ -96.205583221583808, 29.88078719328319 ], [ -96.205511221985972, 29.880821192804849 ], [ -96.205478221238664, 29.880842193334992 ], [ -96.205455222071834, 29.880863192794749 ], [ -96.205420221245262, 29.880893193368824 ], [ -96.205315221238976, 29.880949193224488 ], [ -96.205240221848328, 29.880980192625287 ], [ -96.20507922142184, 29.881004193417112 ], [ -96.205038221525854, 29.881007192865095 ], [ -96.204998222089372, 29.881018192664214 ], [ -96.204841221439366, 29.881084192904158 ], [ -96.204776221782197, 29.881112193031541 ], [ -96.204705221520101, 29.881147193014332 ], [ -96.204571221280943, 29.881228193541443 ], [ -96.204513221142207, 29.88128019311025 ], [ -96.204490221736805, 29.881309192682796 ], [ -96.204428221164378, 29.881442192808642 ], [ -96.204408221760119, 29.881473193349077 ], [ -96.20433222167398, 29.881558193368065 ], [ -96.204271221120806, 29.881606192898694 ], [ -96.204165221920164, 29.881659192943655 ], [ -96.204126221457003, 29.8816721932936 ], [ -96.204046221283861, 29.881685193020395 ], [ -96.203720221188803, 29.881717193423238 ], [ -96.203680221331368, 29.881728192827062 ], [ -96.203644221379221, 29.88174419306764 ], [ -96.203566220780147, 29.881765192950258 ], [ -96.203446221047997, 29.881786192822684 ], [ -96.203364221516068, 29.881788192843263 ], [ -96.203241220677441, 29.881781193525434 ], [ -96.20316222080757, 29.881762193504077 ], [ -96.203049221388, 29.881718193278157 ], [ -96.202980221320388, 29.881679192875289 ], [ -96.202947221382729, 29.881614193168929 ], [ -96.202901220809721, 29.881478193266879 ], [ -96.202885221596929, 29.881410193507875 ], [ -96.202878221098345, 29.881341192801436 ], [ -96.202836221176369, 29.881203193389471 ], [ -96.202773221075333, 29.881112192919801 ], [ -96.202673221182891, 29.881001193289382 ], [ -96.202503220823132, 29.88084719311038 ], [ -96.202457221312059, 29.880789193318702 ], [ -96.20237322074324, 29.880711193272344 ], [ -96.202339221087129, 29.88069119343049 ], [ -96.202216221113517, 29.880685193082577 ], [ -96.202107220903088, 29.880722193350394 ], [ -96.201995220430391, 29.880767193520562 ], [ -96.201962221046074, 29.880788193229577 ], [ -96.201934220792339, 29.880814193012753 ], [ -96.20177722060464, 29.880928193233739 ], [ -96.201722220774982, 29.880981192754071 ], [ -96.20170322100104, 29.881012193002174 ], [ -96.201657220614862, 29.881072192833756 ], [ -96.201605220641753, 29.881127193349183 ], [ -96.201576220375117, 29.88115219303608 ], [ -96.201478220790548, 29.881217193556797 ], [ -96.201375220473608, 29.88127419320077 ], [ -96.20125922092457, 29.881309193154141 ], [ -96.20111122071971, 29.88137119302792 ], [ -96.200848220654407, 29.88147419288148 ], [ -96.200810220724847, 29.881486193371778 ], [ -96.200769220355681, 29.881493193008275 ], [ -96.20064822054357, 29.881475193285429 ], [ -96.200577220174338, 29.881439192975577 ], [ -96.20052522016465, 29.881385193358408 ], [ -96.20050422008137, 29.881354193484249 ], [ -96.200490220584996, 29.881321193624999 ], [ -96.200445220300963, 29.881263193224612 ], [ -96.200418220003996, 29.881236193275615 ], [ -96.200241220363154, 29.881149193308374 ], [ -96.200091220081276, 29.881091192950397 ], [ -96.200013219969833, 29.881075193630444 ], [ -96.199972220465696, 29.881075193577896 ], [ -96.199731220004722, 29.881118192901319 ], [ -96.199693220003226, 29.881132192921573 ], [ -96.199477220028399, 29.881229193208249 ], [ -96.199328220193735, 29.881286193218546 ], [ -96.199250220411272, 29.881310193101079 ], [ -96.199178220385392, 29.881342193025553 ], [ -96.199111220188769, 29.881383193710814 ], [ -96.19908222027253, 29.881408192878283 ], [ -96.199036220295838, 29.881466192904323 ], [ -96.199002219942571, 29.881606193452367 ], [ -96.198988220422009, 29.881640193698715 ], [ -96.198927219802385, 29.88173319371165 ], [ -96.198714219649403, 29.881997193853262 ], [ -96.198703220087665, 29.882031193528167 ], [ -96.198642220204434, 29.88231019355846 ], [ -96.198633220512079, 29.882382193248304 ], [ -96.198632220081308, 29.882488193982024 ], [ -96.198648219997352, 29.882625193491826 ], [ -96.198647219927722, 29.882661193302575 ], [ -96.198652219593399, 29.882696193911954 ], [ -96.198780219947608, 29.882989193994138 ], [ -96.198779220012128, 29.883023193957964 ], [ -96.198800219696608, 29.883124194089962 ], [ -96.198870219647887, 29.88332819392809 ], [ -96.198904220583216, 29.883392193959068 ], [ -96.198928219890689, 29.88341919381288 ], [ -96.198992220631808, 29.883462193592194 ], [ -96.199132220155192, 29.883538193393232 ], [ -96.199311220488184, 29.883679193458647 ], [ -96.199391220660118, 29.883757193973011 ], [ -96.199512220203175, 29.883895193567469 ], [ -96.19953222011678, 29.883926193449199 ], [ -96.199583220580109, 29.883978193442132 ], [ -96.199599219897479, 29.884011193590752 ], [ -96.199723219940964, 29.884101193445719 ], [ -96.199780220471453, 29.884150194269331 ], [ -96.19999922003781, 29.8843061939519 ], [ -96.200028220308923, 29.884332194242827 ], [ -96.200078220701243, 29.884388193607688 ], [ -96.200108220442203, 29.884412194134768 ], [ -96.200174220542522, 29.884454193598057 ], [ -96.200230220478645, 29.884506193860574 ], [ -96.200307221087996, 29.884591193818277 ], [ -96.200359220221728, 29.884687193746537 ], [ -96.200363220662894, 29.88472319408535 ], [ -96.200384220190543, 29.884792193663202 ], [ -96.200388220644669, 29.884828194000036 ], [ -96.200387221005073, 29.884934193740758 ], [ -96.200341220692962, 29.885072194224016 ], [ -96.200324221029561, 29.885104194401631 ], [ -96.200297220549174, 29.88513219378823 ], [ -96.200164220451157, 29.885310194252636 ], [ -96.200145220431253, 29.885341194259066 ], [ -96.200117221083076, 29.885366193758337 ], [ -96.200081220231112, 29.885384193790333 ], [ -96.199968220181731, 29.885424194422416 ], [ -96.199927220171901, 29.885433193678242 ], [ -96.19988922061637, 29.885434193891182 ], [ -96.199810220631562, 29.885454194328087 ], [ -96.199773220394221, 29.885470194335841 ], [ -96.199733220827838, 29.885477193811006 ], [ -96.199612220035803, 29.885473193962156 ], [ -96.199535220410979, 29.88545119414513 ], [ -96.199394220342342, 29.885383194120791 ], [ -96.199283220783045, 29.885340193681291 ], [ -96.199201220636894, 29.885334194536142 ], [ -96.199158220692723, 29.88536919400488 ], [ -96.199136220707672, 29.88539919450491 ], [ -96.199101220572814, 29.885464194351769 ], [ -96.199029220763592, 29.885551194440286 ], [ -96.198974220651422, 29.88560319381298 ], [ -96.198912219821082, 29.885651194434875 ], [ -96.198878220418777, 29.885671194260631 ], [ -96.198730220165231, 29.88573219436935 ], [ -96.198612220163781, 29.8857631939775 ], [ -96.198490220299988, 29.885767194202845 ], [ -96.198367219800303, 29.88575519452689 ], [ -96.198327220000678, 29.88576219448419 ], [ -96.198289220245485, 29.88577419428745 ], [ -96.198228220458489, 29.885822193842305 ], [ -96.198173219741733, 29.885874194686057 ], [ -96.198133220551455, 29.885936193919751 ], [ -96.198042220264867, 29.886055194032764 ], [ -96.197979219998928, 29.886147194294924 ], [ -96.197873219615047, 29.886379194415031 ], [ -96.197793219820056, 29.886621194268205 ], [ -96.197725220445577, 29.88690119443255 ], [ -96.197537220270576, 29.887525194616469 ], [ -96.197486220125739, 29.887661194531958 ], [ -96.197423219592949, 29.887792195062314 ], [ -96.197365219947699, 29.887925194266543 ], [ -96.197347220488098, 29.887957194844333 ], [ -96.197304219812949, 29.88801719445604 ], [ -96.197233220300305, 29.888102194775627 ], [ -96.197081220362392, 29.88826919510397 ], [ -96.197022220266902, 29.888319195117962 ], [ -96.196866220323599, 29.888434195150651 ], [ -96.196794219666501, 29.888466194733507 ], [ -96.196659220290925, 29.888542195000184 ], [ -96.196552219366467, 29.88859219462752 ], [ -96.196512220102818, 29.888603194663077 ], [ -96.196404220063201, 29.888654194880754 ], [ -96.196302219917058, 29.888713195207927 ], [ -96.196278219702052, 29.888741195117202 ], [ -96.196196220015963, 29.888821194673501 ], [ -96.196163219295528, 29.888843194680558 ], [ -96.196087219880511, 29.888869194735889 ], [ -96.196008219542335, 29.888889194781559 ], [ -96.195886220022842, 29.888905195391366 ], [ -96.195724219733137, 29.888915195192379 ], [ -96.195602220003295, 29.888900195265073 ], [ -96.195406219167353, 29.888851195342102 ], [ -96.195244219835146, 29.888856194974743 ], [ -96.195163219595869, 29.888862195334259 ], [ -96.195123219204106, 29.888871195093294 ], [ -96.195041219271246, 29.888862194609242 ], [ -96.194623219434206, 29.888716194515883 ], [ -96.194545218933655, 29.888694195328874 ], [ -96.194395219752792, 29.888638195092458 ], [ -96.194299218757564, 29.88857019480249 ], [ -96.194253218892655, 29.888511195094921 ], [ -96.19423621953122, 29.888479195005608 ], [ -96.19418321916578, 29.888343194778127 ], [ -96.194129218719524, 29.888249194702961 ], [ -96.194101219222858, 29.888223195136828 ], [ -96.194084218922171, 29.888191195003646 ], [ -96.194043219471524, 29.888132195087721 ], [ -96.194008219365728, 29.888070194500646 ], [ -96.193980218978851, 29.888005195214905 ], [ -96.193882218888518, 29.887814194841727 ], [ -96.193859219464997, 29.88778519442608 ], [ -96.193838219573436, 29.887716194708609 ], [ -96.193837218888135, 29.887681194549621 ], [ -96.193843219154459, 29.887646194600283 ], [ -96.193855219326053, 29.887612194604309 ], [ -96.193926219269557, 29.887527195113179 ], [ -96.193983219622396, 29.887477194315743 ], [ -96.194082219597206, 29.887413194744674 ], [ -96.194166219492757, 29.887335194784612 ], [ -96.194214218970487, 29.887278194836757 ], [ -96.194379219090919, 29.887030194170951 ], [ -96.194412219281418, 29.886966194231064 ], [ -96.194433219109953, 29.886935194406789 ], [ -96.194481218728328, 29.886838194760522 ], [ -96.194505218877609, 29.886771194567007 ], [ -96.194549219350918, 29.886673194384386 ], [ -96.194571219591211, 29.886606194779535 ], [ -96.194590219066342, 29.886574194698063 ], [ -96.194609219042832, 29.886507194628106 ], [ -96.194651219505417, 29.886409194106857 ], [ -96.194673218958656, 29.886379194308443 ], [ -96.194700219515354, 29.886313194456605 ], [ -96.194698219219021, 29.886242194231372 ], [ -96.194660219369311, 29.886142194461666 ], [ -96.194438218638595, 29.885800194539161 ], [ -96.194389218623812, 29.885702194644182 ], [ -96.194330218741158, 29.885570194017632 ], [ -96.194293219053876, 29.88546819442022 ], [ -96.194263219447947, 29.88540319393578 ], [ -96.194136218944976, 29.885066194000558 ], [ -96.194078219498238, 29.884974193921106 ], [ -96.194053219222539, 29.884946193998207 ], [ -96.193971219060828, 29.884826194082393 ], [ -96.193847218760055, 29.884684193732923 ], [ -96.193790218803215, 29.884633194119541 ], [ -96.193576218548273, 29.884470194477473 ], [ -96.193380218896948, 29.884292194003987 ], [ -96.193272218817896, 29.884184193939216 ], [ -96.193206218484718, 29.884097194448525 ], [ -96.193197218823755, 29.884064193717521 ], [ -96.193160218559129, 29.884004194114478 ], [ -96.193128218263652, 29.883939193886075 ], [ -96.193060218465519, 29.883852193997686 ], [ -96.19297021837518, 29.883780193840238 ], [ -96.192934218480488, 29.883762193841203 ], [ -96.192854218639653, 29.883746193681436 ], [ -96.19277421879427, 29.883735193994692 ], [ -96.192609218964591, 29.88373519377333 ], [ -96.192486218230187, 29.883743194325934 ], [ -96.192406218672076, 29.883758194250689 ], [ -96.192206218797992, 29.883787194482089 ], [ -96.192125218650418, 29.883794193765532 ], [ -96.19204521818736, 29.883807193609968 ], [ -96.191848218454652, 29.883852194413461 ], [ -96.191732218859627, 29.88389019412617 ], [ -96.191620218381189, 29.883935193882927 ], [ -96.19155021843892, 29.883971194333814 ], [ -96.191518218653385, 29.883993194316858 ], [ -96.191412218619107, 29.884143194193257 ], [ -96.191391218637676, 29.884211194372131 ], [ -96.191387217885236, 29.884247194527468 ], [ -96.191392218526232, 29.884280193807871 ], [ -96.191393218790751, 29.884350194076287 ], [ -96.191416217846722, 29.884452193923948 ], [ -96.191436218536865, 29.88448319416975 ], [ -96.191461217979935, 29.88451119458426 ], [ -96.191519218394319, 29.884560194648095 ], [ -96.191655218608275, 29.884641194024702 ], [ -96.19176221884203, 29.884694194013672 ], [ -96.191916218571961, 29.884742194209245 ], [ -96.191957218701035, 29.884750194289431 ], [ -96.192108218379943, 29.884803194267374 ], [ -96.192140218497698, 29.88482519440154 ], [ -96.192194219011128, 29.884877194156072 ], [ -96.19225721835241, 29.884968194200852 ], [ -96.192298218491302, 29.88507019420177 ], [ -96.192316218256394, 29.885138194724188 ], [ -96.192328218246814, 29.885243194113926 ], [ -96.192334218147849, 29.885420194192243 ], [ -96.192347218163547, 29.885524194717096 ], [ -96.192347218943482, 29.885559194756841 ], [ -96.192358218581987, 29.885664194855497 ], [ -96.192372218299226, 29.885733194606654 ], [ -96.192386218779717, 29.885875194179572 ], [ -96.192419218319003, 29.886013194498663 ], [ -96.192440218968969, 29.886082194518991 ], [ -96.192457218811569, 29.886115194813673 ], [ -96.192515218476586, 29.886321194931494 ], [ -96.192531218816129, 29.886427194851294 ], [ -96.192537218263254, 29.886498194880105 ], [ -96.192526218417129, 29.886568194883498 ], [ -96.192513219179475, 29.886710194430052 ], [ -96.19248921852811, 29.886850194972702 ], [ -96.192500219070453, 29.886992194881362 ], [ -96.192513218231795, 29.887098194255501 ], [ -96.192526219248464, 29.887168194638964 ], [ -96.192528218460424, 29.887240194806907 ], [ -96.192521218592276, 29.88731119447856 ], [ -96.192502218722254, 29.887415195019162 ], [ -96.19242921896425, 29.887579194563664 ], [ -96.192395218321465, 29.887644194682363 ], [ -96.192357218532194, 29.887746194888045 ], [ -96.192351218784722, 29.887781194791451 ], [ -96.192366219161556, 29.887888194436478 ], [ -96.192369218705707, 29.887960194766233 ], [ -96.192363218949723, 29.887995194667809 ], [ -96.192313218666897, 29.888132194637894 ], [ -96.192261218323054, 29.888228194720938 ], [ -96.192161218560599, 29.888342195249081 ], [ -96.192075218732157, 29.888418194699419 ], [ -96.191994219068235, 29.888497194714724 ], [ -96.19190021904285, 29.888564195195901 ], [ -96.191788219080436, 29.888610195064917 ], [ -96.191709218911967, 29.888627194636285 ], [ -96.191627218134315, 29.888633195387047 ], [ -96.191547218324246, 29.888621195141873 ], [ -96.191467218436401, 29.888601195466777 ], [ -96.191269218616583, 29.888569195021379 ], [ -96.191228218969641, 29.88856619529728 ], [ -96.191105218593052, 29.888569195090646 ], [ -96.190874218245099, 29.888641194620302 ], [ -96.190838218275346, 29.888658195015637 ], [ -96.190762218326981, 29.888686195526699 ], [ -96.190565218417348, 29.888735195175517 ], [ -96.190484218451473, 29.888745195118897 ], [ -96.189921218434506, 29.888838195028065 ], [ -96.189843218167965, 29.888855195497957 ], [ -96.189801218216388, 29.888858195586842 ], [ -96.189684218218076, 29.88888619508408 ], [ -96.189299218053208, 29.889000195037905 ], [ -96.189259218074767, 29.889009194874383 ], [ -96.189218218105822, 29.889011195049093 ], [ -96.18913721796082, 29.889005195416463 ], [ -96.189029217933168, 29.888954194937224 ], [ -96.188946218023275, 29.888876194943421 ], [ -96.188898217810546, 29.888819195505647 ], [ -96.188778217395367, 29.888722195132399 ], [ -96.188697217334123, 29.888643195431758 ], [ -96.188674217476816, 29.888615194924714 ], [ -96.188562217712004, 29.88850919479788 ], [ -96.188524217488364, 29.888495194761955 ], [ -96.188445217350093, 29.888477195111783 ], [ -96.188364217675087, 29.88847119501159 ], [ -96.188243217859565, 29.888493194737659 ], [ -96.188202218053334, 29.888495195504269 ], [ -96.188038217211727, 29.888487195127457 ], [ -96.187956217581998, 29.888488194947886 ], [ -96.187874217406005, 29.888479195473888 ], [ -96.187794217993996, 29.888461195252635 ], [ -96.18755321757385, 29.88841919493554 ], [ -96.187391217548267, 29.888396195335716 ], [ -96.187235217288602, 29.888356195358458 ], [ -96.187195217206138, 29.88835019482342 ], [ -96.18707821712195, 29.88832319535949 ], [ -96.186964217674486, 29.888288195233695 ], [ -96.186685217461275, 29.888133194997412 ], [ -96.186558217559224, 29.888044195004145 ], [ -96.186524216742654, 29.88802519469796 ], [ -96.186427216823844, 29.887960195444798 ], [ -96.186370217303619, 29.887911195258177 ], [ -96.186305217479884, 29.887868194689585 ], [ -96.186151217488032, 29.887754194971066 ], [ -96.186131217390766, 29.887722194940864 ], [ -96.18607721735377, 29.887670195478211 ], [ -96.186029217243615, 29.887613194949008 ], [ -96.185890217561777, 29.887485194678987 ], [ -96.185801217215257, 29.88741219455682 ], [ -96.185769216568758, 29.887390194711518 ], [ -96.185699216848931, 29.887352195078556 ], [ -96.185626216561602, 29.887319195266709 ], [ -96.185586216963486, 29.887310195379786 ], [ -96.185462217021396, 29.887312195256552 ], [ -96.18538121687817, 29.887326195414282 ], [ -96.185105216643564, 29.887399194979587 ], [ -96.184878217036868, 29.887483195070004 ], [ -96.184808216341523, 29.887519194756237 ], [ -96.184518217183822, 29.887648194806982 ], [ -96.184406216834105, 29.887691195114158 ], [ -96.184366216887511, 29.887700195300027 ], [ -96.184294217095129, 29.887733195417823 ], [ -96.184109217005087, 29.887805194734558 ], [ -96.184003216276807, 29.887859195240974 ], [ -96.183964216603684, 29.887871195316613 ], [ -96.183924216603799, 29.887877195598477 ], [ -96.183842216723846, 29.88787619484717 ], [ -96.183684216932747, 29.887837195577717 ], [ -96.183614216971463, 29.88780019477219 ], [ -96.183575216500472, 29.887787194803899 ], [ -96.183539216062371, 29.887770194923039 ], [ -96.183410215940981, 29.887683194861939 ], [ -96.183082216045349, 29.887414194922577 ], [ -96.182937216202944, 29.887288195345423 ], [ -96.18268021587717, 29.887078195000644 ], [ -96.182649216431528, 29.887056194657337 ], [ -96.18251621602316, 29.886925195120124 ], [ -96.18249621566099, 29.886898195033844 ], [ -96.182418216582406, 29.886818194890388 ], [ -96.182360215743287, 29.886768194539833 ], [ -96.182314216233806, 29.8867091950641 ], [ -96.182254216319166, 29.886503195060023 ], [ -96.182254216315798, 29.88646619512425 ], [ -96.182274215947444, 29.886397195209039 ], [ -96.182301216022864, 29.886330195041108 ], [ -96.182342215937069, 29.886267195246138 ], [ -96.182397215777641, 29.886215195289932 ], [ -96.182473215931822, 29.886129194805232 ], [ -96.182526216563346, 29.886076194406051 ], [ -96.182587215851768, 29.885905194781241 ], [ -96.182591215637729, 29.885869194820405 ], [ -96.182584216321928, 29.885834194867407 ], [ -96.182555216540536, 29.885767194712798 ], [ -96.182545215991539, 29.885732194911075 ], [ -96.182498216366966, 29.885636194382226 ], [ -96.182408215997555, 29.885518194999296 ], [ -96.182389216162292, 29.885487194527315 ], [ -96.182363216420995, 29.885459194843421 ], [ -96.182301215949309, 29.885413194974873 ], [ -96.182233215942674, 29.885373194985149 ], [ -96.182195216363723, 29.885358194993408 ], [ -96.18215521636094, 29.885351194800691 ], [ -96.182114216022427, 29.885351194725789 ], [ -96.182033215585363, 29.885364194721852 ], [ -96.181917215676236, 29.885399194384643 ], [ -96.181841215582651, 29.885427194382729 ], [ -96.181800215985831, 29.885433194683717 ], [ -96.181657215426824, 29.885500195003438 ], [ -96.18155221635601, 29.885558194477419 ], [ -96.181454215925925, 29.885623195062539 ], [ -96.181301215584057, 29.885741195044968 ], [ -96.181204215552313, 29.885807194732109 ], [ -96.181147216248505, 29.885858194700557 ], [ -96.180954215583128, 29.885992194780695 ], [ -96.180673215240276, 29.886142194499598 ], [ -96.180449215505718, 29.886232194684212 ], [ -96.180176215725098, 29.886316194939297 ], [ -96.1798992155409, 29.886388195392232 ], [ -96.17970321577657, 29.886444195136686 ], [ -96.179268215464987, 29.886558194863593 ], [ -96.17914821567409, 29.886582194635817 ], [ -96.179067215064748, 29.886592194889381 ], [ -96.17898721521108, 29.886607195005841 ], [ -96.178906215601089, 29.886617195183895 ], [ -96.178823215231532, 29.88661619467527 ], [ -96.178743214907726, 29.886603194910904 ], [ -96.17858021472162, 29.886587195500518 ], [ -96.178334215370327, 29.886578195413755 ], [ -96.178254215116411, 29.886561194751305 ], [ -96.1781772150172, 29.886536195455509 ], [ -96.177961215223377, 29.886434195304449 ], [ -96.177787215260082, 29.886337195187842 ], [ -96.177461214661463, 29.886121194765252 ], [ -96.177120215065457, 29.885916194820247 ], [ -96.176853214648446, 29.885748195047526 ], [ -96.176510214289124, 29.885546195381085 ], [ -96.176438214413096, 29.885513195269489 ], [ -96.17615521445434, 29.885369194930401 ], [ -96.175784214347246, 29.885141195280251 ], [ -96.175723214261552, 29.885095195308352 ], [ -96.175626214505513, 29.885030195207705 ], [ -96.175354213814771, 29.884867194984356 ], [ -96.175282214284962, 29.884832195283103 ], [ -96.17520721446995, 29.884805194968404 ], [ -96.175089214268027, 29.884776194644861 ], [ -96.175007214194252, 29.884764194652433 ], [ -96.174760214168629, 29.884739195081174 ], [ -96.174719214145824, 29.884744195091944 ], [ -96.174637213597265, 29.884743194963804 ], [ -96.17443321450105, 29.884762194562828 ], [ -96.174394214113207, 29.884771194778729 ], [ -96.174357214306809, 29.884788195017421 ], [ -96.174293213806664, 29.884832195034878 ], [ -96.174189214270697, 29.884943195198364 ], [ -96.174167214198008, 29.884973194467097 ], [ -96.174138213591846, 29.88507719523643 ], [ -96.174127213886976, 29.885148194858257 ], [ -96.174139214322366, 29.885219195143325 ], [ -96.17417221421799, 29.885322194937174 ], [ -96.174233214177036, 29.885415194900713 ], [ -96.174322214022965, 29.885533195145339 ], [ -96.174505213854673, 29.885807195062032 ], [ -96.174672214387812, 29.886091195497588 ], [ -96.174688214586013, 29.886125195091331 ], [ -96.174712214397502, 29.886227194791555 ], [ -96.174715214328614, 29.88633219521105 ], [ -96.174688214339312, 29.886474194776671 ], [ -96.174662214080158, 29.886578195609072 ], [ -96.174623213984646, 29.886640195627535 ], [ -96.174597214375794, 29.886667194890002 ], [ -96.174501213997786, 29.886735195383217 ], [ -96.174426214527927, 29.886764195084158 ], [ -96.174386214558709, 29.886771195162737 ], [ -96.174305213935952, 29.88677519570194 ], [ -96.173979213555825, 29.886763195249497 ], [ -96.17389721439099, 29.886757195099385 ], [ -96.173775213827156, 29.886738195328569 ], [ -96.17361921353006, 29.886697195654623 ], [ -96.173539213894287, 29.886680194888054 ], [ -96.173424213510259, 29.886643195560023 ], [ -96.173351213835616, 29.886612195153681 ], [ -96.173280213734827, 29.886575194852533 ], [ -96.173212214077466, 29.886534194841424 ], [ -96.173155213847593, 29.886483195318018 ], [ -96.1729982135341, 29.886317195593339 ], [ -96.172977213462985, 29.886286194916355 ], [ -96.172916213350447, 29.886156195283178 ], [ -96.17287921333093, 29.886094195459652 ], [ -96.172847213779562, 29.886029195611432 ], [ -96.172767213682079, 29.885790195169832 ], [ -96.1726832135965, 29.885591195004668 ], [ -96.172618213443613, 29.885460194907971 ], [ -96.1725962134485, 29.885430194673539 ], [ -96.172464213718214, 29.885211195109171 ], [ -96.172380213327571, 29.88508919542992 ], [ -96.172354213580761, 29.885023194689875 ], [ -96.172319213870367, 29.884960195386014 ], [ -96.17225921353446, 29.884829194847047 ], [ -96.172240213759821, 29.884798194669958 ], [ -96.17215321387377, 29.88460219471061 ], [ -96.172143213056941, 29.884568194867867 ], [ -96.172113213203417, 29.884503194520985 ], [ -96.172033212896267, 29.884304195087942 ], [ -96.172000213842736, 29.884238194740739 ], [ -96.171930213842444, 29.884034195172365 ], [ -96.171860213777506, 29.883793194597793 ], [ -96.171819213315771, 29.883684194684683 ], [ -96.171802213241435, 29.883651194303845 ], [ -96.171777213149866, 29.883583194766182 ], [ -96.171773213561821, 29.883512194978223 ], [ -96.171786213483472, 29.883441194323691 ], [ -96.171823213157211, 29.883338194639734 ], [ -96.171836213204401, 29.883268194811023 ], [ -96.171847213449794, 29.883233194539468 ], [ -96.171833212894626, 29.883091194801533 ], [ -96.171825213294795, 29.882947194437534 ], [ -96.171806213277463, 29.882842194951579 ], [ -96.171755212957933, 29.882705194672109 ], [ -96.171732213613964, 29.882676194774827 ], [ -96.171650212886703, 29.882595194891145 ], [ -96.171573213637771, 29.882511194106062 ], [ -96.171526212681997, 29.882453194768228 ], [ -96.171424212649683, 29.882340194171224 ], [ -96.17136121331248, 29.882294194173568 ], [ -96.171326213642274, 29.882275194094049 ], [ -96.171247212985094, 29.882258194866893 ], [ -96.171165212636652, 29.882248194121765 ], [ -96.171125212585849, 29.882247194676747 ], [ -96.170965212714378, 29.882218194052552 ], [ -96.170849213071079, 29.88218319459255 ], [ -96.170642212946134, 29.882074194643629 ], [ -96.170577213101595, 29.882032194210392 ], [ -96.1704352132639, 29.881965194371681 ], [ -96.170333213352137, 29.881909194263478 ], [ -96.170234212696386, 29.881848194510475 ], [ -96.170203212930176, 29.88182419400821 ], [ -96.170167212589035, 29.88180719402872 ], [ -96.169974212694342, 29.881746194279799 ], [ -96.169713212258287, 29.881641194299593 ], [ -96.169421212296101, 29.881509194225263 ], [ -96.169235212109086, 29.881432194177766 ], [ -96.168947212219805, 29.881297194613623 ], [ -96.168878212747515, 29.88125919438361 ], [ -96.168611211890706, 29.881163194003012 ], [ -96.16852921278192, 29.8811541942829 ], [ -96.168447212489369, 29.881150194135508 ], [ -96.168324212548342, 29.881153194551487 ], [ -96.168119212531408, 29.881141194382245 ], [ -96.168001212558579, 29.881108194263849 ], [ -96.167888211806002, 29.881065194674701 ], [ -96.167819211682485, 29.881026193942233 ], [ -96.16746121216184, 29.880787194544116 ], [ -96.167366212375256, 29.880718194589026 ], [ -96.167153211623145, 29.88055219451897 ], [ -96.16705721222786, 29.880485193843079 ], [ -96.166988212444764, 29.880444194612917 ], [ -96.166882211769078, 29.880391194638737 ], [ -96.166806211607636, 29.880363194593951 ], [ -96.166697211838724, 29.880315193964261 ], [ -96.166630211860323, 29.880273194425168 ], [ -96.166571211873332, 29.880225194545648 ], [ -96.16651921167761, 29.880172193900815 ], [ -96.166475211598851, 29.880114193769572 ], [ -96.166398211273744, 29.880031194239553 ], [ -96.166231211969603, 29.879875194154408 ], [ -96.166143211322677, 29.879800194415477 ], [ -96.166108211386728, 29.879781193818388 ], [ -96.165912211643004, 29.879652194390811 ], [ -96.165877211950075, 29.879634193666355 ], [ -96.165812211236698, 29.879591194479225 ], [ -96.165744211454665, 29.879554193761482 ], [ -96.165517211964229, 29.879404193729744 ], [ -96.165363211447698, 29.879358194159778 ], [ -96.16532821103641, 29.879341194104398 ], [ -96.165252211596766, 29.879317193785951 ], [ -96.165071210988259, 29.879241194051154 ], [ -96.164867211352302, 29.879124193734604 ], [ -96.164836211697278, 29.879101193665907 ], [ -96.164700211609414, 29.879021194274866 ], [ -96.164594211346795, 29.878967194295655 ], [ -96.16455421126166, 29.878956194452826 ], [ -96.164484210861147, 29.878921193972502 ], [ -96.16437121097141, 29.878879193966412 ], [ -96.164216210737337, 29.878836194272015 ], [ -96.164136210913483, 29.87882319373286 ], [ -96.163975211049873, 29.878806194214157 ], [ -96.163693210695882, 29.878802194292771 ], [ -96.163573210833761, 29.878793194077069 ], [ -96.163372211018199, 29.878755194368029 ], [ -96.163294210833939, 29.878732193868029 ], [ -96.163111211237691, 29.878650193791206 ], [ -96.16301421089392, 29.878585194057244 ], [ -96.162953210885235, 29.87853819436792 ], [ -96.162886210607738, 29.878497193706433 ], [ -96.16260121025995, 29.878351193684061 ], [ -96.16217221033385, 29.878138194190981 ], [ -96.161681210314342, 29.877874193751161 ], [ -96.161572210106968, 29.877824193452525 ], [ -96.161497210656805, 29.877798194194785 ], [ -96.161164210309096, 29.877663193653582 ], [ -96.161021210224177, 29.87759119426271 ], [ -96.160858210673055, 29.877486194294132 ], [ -96.160786209967569, 29.877400193550667 ], [ -96.160678210417089, 29.877247193554833 ], [ -96.160611209722646, 29.877043193665717 ], [ -96.160590209835092, 29.876901193812159 ], [ -96.160609210369728, 29.876797194104487 ], [ -96.160634209758797, 29.876693194094738 ], [ -96.160684210250551, 29.876558193691118 ], [ -96.160723209797723, 29.876420193503506 ], [ -96.160727209689512, 29.876384193933134 ], [ -96.160772210386838, 29.876175193733307 ], [ -96.160845210310455, 29.875899193972923 ], [ -96.16087120999542, 29.875831193699248 ], [ -96.160947209996323, 29.875593193433616 ], [ -96.160952210110921, 29.875557193355423 ], [ -96.160946210466733, 29.875486193894513 ], [ -96.16093221056353, 29.875417193769163 ], [ -96.16093120981418, 29.875381193053343 ], [ -96.160910209756793, 29.875312193702396 ], [ -96.16076720983358, 29.875014193685452 ], [ -96.160703209953155, 29.874924193609793 ], [ -96.160676210254593, 29.874897193488948 ], [ -96.160528209807822, 29.874684193567173 ], [ -96.160510210496639, 29.874652192900264 ], [ -96.160460210322967, 29.874596193409463 ], [ -96.160417210043278, 29.874537193340537 ], [ -96.160358209863873, 29.874443193568187 ], [ -96.160335210402238, 29.874414193336253 ], [ -96.160281210449654, 29.874360192910068 ], [ -96.160209210233063, 29.874194193432455 ], [ -96.160203210454711, 29.874160193239216 ], [ -96.160142209727951, 29.874028193239056 ], [ -96.160122209767266, 29.873959193227645 ], [ -96.160057210208137, 29.873828193298227 ], [ -96.160003209760447, 29.873752193285522 ], [ -96.159878210144342, 29.873658193197404 ], [ -96.159806209840028, 29.873572192660333 ], [ -96.159763210256642, 29.873512193328967 ], [ -96.159661209337131, 29.87331719291814 ], [ -96.159647209388865, 29.873102193198775 ], [ -96.159610210244864, 29.872890192781409 ], [ -96.159594209890329, 29.872820192563601 ], [ -96.159567209587053, 29.872752193066415 ], [ -96.159553209783894, 29.872681192843768 ], [ -96.159563209864601, 29.872575193139237 ], [ -96.159575209373088, 29.87250419284808 ], [ -96.159585209283435, 29.872469192976286 ], [ -96.159698209452259, 29.872319192778839 ], [ -96.159752209361145, 29.872222192602472 ], [ -96.159772210122156, 29.872153192783312 ], [ -96.159795209596808, 29.872048192926968 ], [ -96.159795209467177, 29.872011192647044 ], [ -96.159782209934434, 29.871905192441794 ], [ -96.159757209372984, 29.871838192813502 ], [ -96.159702209220498, 29.871742192606888 ], [ -96.159679209431815, 29.871712192279652 ], [ -96.159627209642707, 29.871657192403493 ], [ -96.159593209623665, 29.871636192321976 ], [ -96.159515209603612, 29.871615192922757 ], [ -96.15944120999886, 29.871585193030963 ], [ -96.159408209216849, 29.871563192463324 ], [ -96.159370209666051, 29.871548192983742 ], [ -96.159288209981767, 29.871543192549787 ], [ -96.159246209611851, 29.871544193010291 ], [ -96.159210209145542, 29.871561193109127 ], [ -96.159179209617562, 29.871585193043995 ], [ -96.159152209387088, 29.87161219262736 ], [ -96.159114210059542, 29.871676192424339 ], [ -96.159055209317742, 29.871810192347535 ], [ -96.158994209727368, 29.871903193211175 ], [ -96.158970209418953, 29.871933192914366 ], [ -96.158916209658301, 29.871987192909288 ], [ -96.15885520943003, 29.872035193033341 ], [ -96.158822209894495, 29.872056193145728 ], [ -96.158714209774644, 29.872107193107247 ], [ -96.158674209570819, 29.872119192616491 ], [ -96.158594209523272, 29.872135193033536 ], [ -96.158390209125301, 29.872153193158184 ], [ -96.158350209680492, 29.872148192797692 ], [ -96.158268209148602, 29.872152192948906 ], [ -96.158227209409219, 29.872147193023437 ], [ -96.158112208896895, 29.872110192571451 ], [ -96.158030209687666, 29.87210319242109 ], [ -96.157953208990136, 29.872084193301426 ], [ -96.157821208765611, 29.871999192991659 ], [ -96.157724209171235, 29.871910192477952 ], [ -96.157706209110216, 29.871878193166964 ], [ -96.157671208882732, 29.871776192926735 ], [ -96.157664209659245, 29.871740193188788 ], [ -96.157673208913067, 29.871706192930787 ], [ -96.157761208997428, 29.871507193067039 ], [ -96.157769208894479, 29.871472192451634 ], [ -96.157773209274481, 29.87140019254052 ], [ -96.157786209629407, 29.871367193041291 ], [ -96.157821208821659, 29.871348192995185 ], [ -96.157981209489876, 29.871235192916298 ], [ -96.158006209253742, 29.871206192828133 ], [ -96.158058209651969, 29.871109192435156 ], [ -96.15809820943781, 29.871008192573264 ], [ -96.158137209327776, 29.870870192873802 ], [ -96.158151209217593, 29.870800192546902 ], [ -96.158160209128596, 29.870692192557936 ], [ -96.158165209752028, 29.870335192586168 ], [ -96.158118209460923, 29.87016019203055 ], [ -96.15807420955241, 29.870021192208526 ], [ -96.157998209174849, 29.869862192625639 ], [ -96.1579392092316, 29.869775192002127 ], [ -96.157912209534203, 29.869748192139383 ], [ -96.157851208741945, 29.869700192593442 ], [ -96.157798208619496, 29.869645192398508 ], [ -96.15776620904613, 29.869623192749287 ], [ -96.157576209254813, 29.869552192466866 ], [ -96.157496208959287, 29.869536192454586 ], [ -96.157379209104207, 29.869500192169134 ], [ -96.157260209234593, 29.869471192268858 ], [ -96.157178209140937, 29.869465192365279 ], [ -96.15709620881556, 29.869472192472816 ], [ -96.157015209101573, 29.869485192591885 ], [ -96.156829208504419, 29.869564192336888 ], [ -96.156762208814243, 29.869605192091193 ], [ -96.156723208612775, 29.869618192286751 ], [ -96.156641209226393, 29.869626192074819 ], [ -96.156606208310578, 29.869645192681503 ], [ -96.156578208612714, 29.869671192307781 ], [ -96.156543209206518, 29.869736192680985 ], [ -96.156521209249206, 29.869767192789702 ], [ -96.156469208866525, 29.869822192638082 ], [ -96.156401208639608, 29.869864192603998 ], [ -96.156375208382812, 29.869891192087341 ], [ -96.156331209265019, 29.869952192327791 ], [ -96.156304208687558, 29.869979192253908 ], [ -96.156169208960833, 29.870060192636746 ], [ -96.156091208977003, 29.870084192816307 ], [ -96.156050208661199, 29.870090192385625 ], [ -96.155887208741845, 29.870075192613083 ], [ -96.155768208824838, 29.870051192882972 ], [ -96.155692208852457, 29.870022192610147 ], [ -96.155625208737405, 29.869982192484457 ], [ -96.155588208565504, 29.869968192269283 ], [ -96.15554620844874, 29.869962192916102 ], [ -96.155537208675355, 29.869929192836302 ], [ -96.155519208593546, 29.869896192351273 ], [ -96.155471208848766, 29.86984119254819 ], [ -96.155439208681258, 29.869819192323487 ], [ -96.155402208986089, 29.869814192390475 ], [ -96.155328208141469, 29.869747192503393 ], [ -96.155293208506066, 29.869683192698961 ], [ -96.155263208054663, 29.86966419222291 ], [ -96.155227207942119, 29.869642192863687 ], [ -96.155190208806076, 29.869624192811333 ], [ -96.155150208547468, 29.869622192161987 ], [ -96.155027208363904, 29.869626192680567 ], [ -96.154946208502807, 29.869620192769556 ], [ -96.154870208436975, 29.869601192277035 ], [ -96.154764208679538, 29.869553192707034 ], [ -96.154662208749286, 29.869497192657185 ], [ -96.154552208267972, 29.869395192729947 ], [ -96.154505208406817, 29.869337192295507 ], [ -96.154475207980568, 29.869312192018743 ], [ -96.154404207938157, 29.869278192670727 ], [ -96.154320208243888, 29.86919919205441 ], [ -96.154166207988212, 29.868988192256896 ], [ -96.1541312082404, 29.868922192237768 ], [ -96.154126207772308, 29.86885119265304 ], [ -96.154131207786122, 29.868779192284496 ], [ -96.154226208554945, 29.868663192402266 ], [ -96.154255207832705, 29.868637191892866 ], [ -96.154657208564984, 29.868333192266366 ], [ -96.154716207985132, 29.868282192367413 ], [ -96.154848208824959, 29.868146191977608 ], [ -96.155055208795005, 29.867974192236336 ], [ -96.155067208262636, 29.867939191711926 ], [ -96.155092208029117, 29.867835192378667 ], [ -96.155091208356822, 29.867799192413443 ], [ -96.155066208273453, 29.867695192286877 ], [ -96.155033207840134, 29.867629192460541 ], [ -96.155001207796872, 29.867489192348842 ], [ -96.154973208695012, 29.867423192070333 ], [ -96.154952208626455, 29.867393191735843 ], [ -96.154846207820313, 29.867287192181347 ], [ -96.154712208693326, 29.867205191943075 ], [ -96.154552208432449, 29.867172192014451 ], [ -96.154511207824015, 29.867169191657371 ], [ -96.154430208653196, 29.867156191844099 ], [ -96.154266208152421, 29.867140192288218 ], [ -96.154143207654684, 29.867139192244942 ], [ -96.154102208282822, 29.86714219231331 ], [ -96.154062208291592, 29.86715019159551 ], [ -96.153981207786146, 29.867159191901578 ], [ -96.153816208441995, 29.867153191634916 ], [ -96.153777208067837, 29.867141191638634 ], [ -96.153740208030882, 29.867124191968134 ], [ -96.153708208000154, 29.867101192254086 ], [ -96.153667207859954, 29.86711319160743 ], [ -96.153464207796105, 29.867149192437513 ], [ -96.153340208182783, 29.867152191867046 ], [ -96.153264208142701, 29.867177192154873 ], [ -96.153142208294554, 29.867197192157921 ], [ -96.152980207304125, 29.867179192069827 ], [ -96.152816207338063, 29.867183192202457 ], [ -96.152775207703627, 29.867176192487864 ], [ -96.152661207616134, 29.867138192195995 ], [ -96.152401207827552, 29.867030191854003 ], [ -96.152298207264337, 29.866973192169091 ], [ -96.152266207606431, 29.866950192110025 ], [ -96.152215207166506, 29.866896192244319 ], [ -96.152170207086328, 29.866835192017696 ], [ -96.152147208029234, 29.866767191768666 ], [ -96.152141207183917, 29.86673119207401 ], [ -96.152119207342594, 29.866662192333987 ], [ -96.152051207421138, 29.86653119190234 ], [ -96.152026207465738, 29.866503191777092 ], [ -96.151903207763638, 29.866408191925718 ], [ -96.151877207646493, 29.866381192133883 ], [ -96.151830207544862, 29.866321191667698 ], [ -96.151713207496073, 29.866220192127766 ], [ -96.15163520747771, 29.866136191905095 ], [ -96.151580207602251, 29.866040191585935 ], [ -96.151536207460438, 29.86597919158843 ], [ -96.151488207495717, 29.865921192194648 ], [ -96.151432207415112, 29.865785191996917 ], [ -96.151434206865261, 29.865606191393617 ], [ -96.151421207692579, 29.865536191352895 ], [ -96.151409206879279, 29.865501191390091 ], [ -96.151394207266975, 29.865431192185703 ], [ -96.151382207156445, 29.865323191333108 ], [ -96.151381207585999, 29.865251191705941 ], [ -96.15141520689231, 29.865074191770315 ], [ -96.15148520752976, 29.864867191902317 ], [ -96.151539207515057, 29.864656191826899 ], [ -96.151556206832183, 29.864623191109164 ], [ -96.151579207424945, 29.864593191281205 ], [ -96.151633207230944, 29.864539191407875 ], [ -96.151655207556033, 29.864509191988375 ], [ -96.151689207064706, 29.864443191441897 ], [ -96.15171520685638, 29.864375191729703 ], [ -96.151738207427428, 29.864234191489185 ], [ -96.151737206905338, 29.864198191414467 ], [ -96.151694207054774, 29.864061191159454 ], [ -96.15166520708415, 29.863920191462899 ], [ -96.151602207471953, 29.86378719134105 ], [ -96.151583207444048, 29.863755191483399 ], [ -96.151528207116044, 29.863702191103087 ], [ -96.151412207460069, 29.863601191632551 ], [ -96.151378207644754, 29.863582191010302 ], [ -96.151303207639216, 29.86355119137065 ], [ -96.151148206818505, 29.863507191154273 ], [ -96.150862207327734, 29.863468191559448 ], [ -96.150780207168992, 29.863466190988277 ], [ -96.1506592072502, 29.863490191616489 ], [ -96.150620206516322, 29.863501191043294 ], [ -96.150518207190004, 29.863562191256708 ], [ -96.150495206519409, 29.863591190973562 ], [ -96.150431206627019, 29.863637191463937 ], [ -96.150406206541916, 29.863665191172743 ], [ -96.150371206497496, 29.863680191335163 ], [ -96.15033020735946, 29.863679191378797 ], [ -96.150216206853742, 29.863639191686303 ], [ -96.150153206612543, 29.863593191824126 ], [ -96.150054206438398, 29.863529191734042 ], [ -96.149982206490066, 29.863494191248385 ], [ -96.149945207328244, 29.863480191208684 ], [ -96.149839206882092, 29.863427191371617 ], [ -96.149753207185995, 29.863307191798807 ], [ -96.149639207078138, 29.863115190920208 ], [ -96.149613206798918, 29.863048191253046 ], [ -96.149605206670003, 29.86301219131558 ], [ -96.149546206932001, 29.862879191179843 ], [ -96.149496206586647, 29.86278019155549 ], [ -96.149472206927271, 29.862711191163005 ], [ -96.149437207125203, 29.862647191362221 ], [ -96.149384206830661, 29.862592191154523 ], [ -96.14929220644747, 29.862521191610874 ], [ -96.149225206469112, 29.862480190808316 ], [ -96.149084206131064, 29.862407191399612 ], [ -96.148989206545224, 29.862339190889774 ], [ -96.148890206182202, 29.862276191615003 ], [ -96.148833206610405, 29.862223190887196 ], [ -96.14877420655445, 29.862176191474088 ], [ -96.148752206077702, 29.862145191417721 ], [ -96.148717206939068, 29.862130191172543 ], [ -96.148622206755888, 29.862064191155653 ], [ -96.148546206325179, 29.862037190975453 ], [ -96.148351206837319, 29.861978190962446 ], [ -96.148315206602319, 29.861962191048093 ], [ -96.148254206607874, 29.861913191416829 ], [ -96.148189206810557, 29.861870191198111 ], [ -96.14807520611501, 29.861827190681694 ], [ -96.14795120669767, 29.861821190961152 ], [ -96.147828205906222, 29.861833191423358 ], [ -96.147788206449064, 29.861840190691005 ], [ -96.147710206462349, 29.861865191323609 ], [ -96.14763920640145, 29.861901191180348 ], [ -96.147571206659578, 29.861943191263347 ], [ -96.14741720653771, 29.861970191016116 ], [ -96.147279206510859, 29.86204919110126 ], [ -96.147253205722038, 29.862077191528225 ], [ -96.147204206307464, 29.862175191421283 ], [ -96.147187205707326, 29.862245191192383 ], [ -96.147167205914045, 29.86227619088768 ], [ -96.147132205705617, 29.862295190870707 ], [ -96.147058205729152, 29.862327190944423 ], [ -96.146849206398912, 29.862333191251739 ], [ -96.146811205713561, 29.862321191465838 ], [ -96.146738206403839, 29.86228719133366 ], [ -96.146697205884038, 29.862283191306911 ], [ -96.146576206189167, 29.862261191011541 ], [ -96.146538205562791, 29.862249191148138 ], [ -96.146503205817922, 29.862230191448688 ], [ -96.146474205475698, 29.862204191622038 ], [ -96.146400206372121, 29.862118191192533 ], [ -96.146382206395856, 29.862086191056445 ], [ -96.146337205602606, 29.862026191295129 ], [ -96.146259205835761, 29.861943191230409 ], [ -96.14620320589836, 29.861890190757581 ], [ -96.146107206236792, 29.861825191058102 ], [ -96.146039205677624, 29.861784190796708 ], [ -96.145953205511475, 29.861708191386562 ], [ -96.145887205557358, 29.86166519130974 ], [ -96.14586220535891, 29.86163719082937 ], [ -96.145746205241451, 29.861598191553341 ], [ -96.145604205188178, 29.861526191425199 ], [ -96.14541220516864, 29.861458190965365 ], [ -96.145103205211427, 29.8613581912477 ], [ -96.144737205779506, 29.861309191133383 ], [ -96.144573205351705, 29.861296191025016 ], [ -96.144366205128563, 29.86128619121369 ], [ -96.144284205566109, 29.861286191038122 ], [ -96.144162205797301, 29.86130319110179 ], [ -96.143999205241926, 29.861280191409321 ], [ -96.143839205624374, 29.861313190738507 ], [ -96.14361020531689, 29.861393190747918 ], [ -96.143570205388059, 29.861404191223031 ], [ -96.143406205523533, 29.861411191229362 ], [ -96.143324204656508, 29.861399191148472 ], [ -96.143245204952962, 29.861379191323767 ], [ -96.142896205267405, 29.861276191275252 ], [ -96.142591204625191, 29.861165191205828 ], [ -96.142552204498656, 29.861155191345418 ], [ -96.142402204860758, 29.861094190893105 ], [ -96.142079204762965, 29.861035191227721 ], [ -96.141997205023529, 29.861027191017047 ], [ -96.141837204608038, 29.860995190849486 ], [ -96.14176020506919, 29.860972191412198 ], [ -96.141556204848143, 29.860943190906255 ], [ -96.141402204239256, 29.860894190898911 ], [ -96.141323204152386, 29.860875190758989 ], [ -96.141162204421164, 29.860849191594621 ], [ -96.141051204437289, 29.860802191432384 ], [ -96.140971204107174, 29.860785191307553 ], [ -96.140930204271612, 29.860782191260316 ], [ -96.140811204271515, 29.860754190755763 ], [ -96.140694204633888, 29.860716190946341 ], [ -96.140542204670126, 29.860661191410117 ], [ -96.140423203958392, 29.860632191500528 ], [ -96.140230204140195, 29.860568190831735 ], [ -96.140194204670024, 29.860551191475412 ], [ -96.140069204492647, 29.860509191349308 ], [ -96.14000120408889, 29.860487191355467 ], [ -96.139963204637056, 29.860477191306778 ], [ -96.139816203838251, 29.860416191366156 ], [ -96.139746204624302, 29.860381190888766 ], [ -96.139515204570202, 29.860304191005209 ], [ -96.139327203625697, 29.860231191431502 ], [ -96.139070203863682, 29.860118190708988 ], [ -96.1389442040944, 29.860026190923481 ], [ -96.138890204191839, 29.859972191170876 ], [ -96.138742204160323, 29.8598011912704 ], [ -96.138608204182091, 29.859619190824127 ], [ -96.138489203829963, 29.859473191354848 ], [ -96.138435203492335, 29.859376191144555 ], [ -96.13839020353798, 29.859238191218861 ], [ -96.138372203455148, 29.859206190815293 ], [ -96.138316203447332, 29.859072190612206 ], [ -96.138221203159375, 29.858723190988844 ], [ -96.138160203738082, 29.858590190470579 ], [ -96.138046203154445, 29.858442190809075 ], [ -96.138013203576335, 29.858422190929698 ], [ -96.13797520351811, 29.858408190505514 ], [ -96.13792820380246, 29.858380191079423 ], [ -96.137907203419331, 29.858349190603789 ], [ -96.137894203637046, 29.858315190428158 ], [ -96.137873203910303, 29.858287190692124 ], [ -96.137726203838668, 29.858222190373564 ], [ -96.137661203568484, 29.858178190321983 ], [ -96.137626203567734, 29.858160190863142 ], [ -96.137477203122017, 29.858098190726622 ], [ -96.137382203659371, 29.858030190684406 ], [ -96.13729320318987, 29.857954190894102 ], [ -96.137157203622209, 29.857873190945 ], [ -96.136972203061291, 29.857792191001128 ], [ -96.136939203139022, 29.85777019095017 ], [ -96.136881203440524, 29.857719190500049 ], [ -96.136817202954731, 29.857675190600233 ], [ -96.136642203352736, 29.857580190547079 ], [ -96.136533203547486, 29.857529190592626 ], [ -96.136378203379067, 29.857477190511343 ], [ -96.136268203094119, 29.85743019041162 ], [ -96.136189202692549, 29.857409190866214 ], [ -96.136151203237148, 29.857395190822992 ], [ -96.136031202932642, 29.857375190304115 ], [ -96.135990203240425, 29.857374190407516 ], [ -96.135910203094184, 29.857358190729244 ], [ -96.135836202816094, 29.857328190840629 ], [ -96.135721202940474, 29.857290190422344 ], [ -96.135681202548014, 29.857281190556915 ], [ -96.135574202767174, 29.857230190993626 ], [ -96.135540202877124, 29.857210190778968 ], [ -96.13542420279164, 29.85717419028877 ], [ -96.135351203219244, 29.857142190849689 ], [ -96.135222202555198, 29.857051190878636 ], [ -96.135117203125944, 29.856996190561613 ], [ -96.135050203093073, 29.85695419058839 ], [ -96.135012202596329, 29.856942190982259 ], [ -96.134931203053384, 29.856931190743236 ], [ -96.13485320289638, 29.856907190265275 ], [ -96.134818203104217, 29.856887190162865 ], [ -96.13478020242168, 29.856883190942369 ], [ -96.134739202626932, 29.85688419054523 ], [ -96.134657202222684, 29.856878190141558 ], [ -96.134538202993582, 29.856851190183566 ], [ -96.134500202595476, 29.856839190432066 ], [ -96.134463202117516, 29.856822190648565 ], [ -96.134300203092721, 29.85680719026173 ], [ -96.134220202985617, 29.856795190238778 ], [ -96.134063202593339, 29.856756190896647 ], [ -96.133983202010697, 29.856741190887142 ], [ -96.133906202511071, 29.856716190527486 ], [ -96.133868202897162, 29.856700190832523 ], [ -96.133837202532305, 29.856676190407111 ], [ -96.13381020218894, 29.856649190775489 ], [ -96.133739202172606, 29.856645190995938 ], [ -96.133658202636028, 29.856630190201134 ], [ -96.13354120227973, 29.856596190930517 ], [ -96.133460202448134, 29.856583190799991 ], [ -96.133381202221315, 29.856562190475564 ], [ -96.133266202150224, 29.856523190664568 ], [ -96.133231202801213, 29.856503190145748 ], [ -96.133144201778094, 29.856427190494195 ], [ -96.133118202002962, 29.856399190495701 ], [ -96.133098202551366, 29.856368190745812 ], [ -96.133071202485297, 29.856341190962898 ], [ -96.133006202268774, 29.856297190368082 ], [ -96.132977202668201, 29.856272190134892 ], [ -96.132875201834025, 29.856209190266465 ], [ -96.132736201828806, 29.856032190897157 ], [ -96.132619201883045, 29.8558451901906 ], [ -96.132591201870724, 29.855778190075689 ], [ -96.132588201704777, 29.85574219019183 ], [ -96.132620202381773, 29.855565189950635 ], [ -96.132593201928842, 29.855461190662215 ], [ -96.132562202511465, 29.855395190435804 ], [ -96.132495201812745, 29.855305189930572 ], [ -96.132468202187923, 29.85527819001738 ], [ -96.132437201525022, 29.855254190137764 ], [ -96.132402201535029, 29.855235190216099 ], [ -96.132363202035364, 29.855222190190783 ], [ -96.132329201530183, 29.855201190066225 ], [ -96.132245202174943, 29.855122190021284 ], [ -96.132206201526444, 29.855059189948125 ], [ -96.132173202216407, 29.854993190178554 ], [ -96.132096201833534, 29.854909190124317 ], [ -96.132078202370636, 29.854877190593012 ], [ -96.132042202431123, 29.854774190015778 ], [ -96.131969202331035, 29.854687189832859 ], [ -96.131944201698488, 29.8546181906081 ], [ -96.131928201841916, 29.854512190000527 ], [ -96.131930202350972, 29.854477190456354 ], [ -96.131899201872841, 29.854337190430222 ], [ -96.131896201809425, 29.854302190456639 ], [ -96.131839202289385, 29.854130190359729 ], [ -96.131843201308229, 29.854060190319206 ], [ -96.131840202306918, 29.854025190363469 ], [ -96.131862201385644, 29.853849190169949 ], [ -96.131893202133824, 29.853708190119317 ], [ -96.132003201508965, 29.853515189816356 ], [ -96.132016201975603, 29.853481189849866 ], [ -96.132053202305357, 29.853417190226661 ], [ -96.132138202081705, 29.853294190293717 ], [ -96.132258202067007, 29.853195190037379 ], [ -96.132482201752438, 29.85303718974744 ], [ -96.132503202293066, 29.85300619002459 ], [ -96.132518201515623, 29.852973190266749 ], [ -96.132548202038677, 29.852832189426575 ], [ -96.132599201806116, 29.852776189766413 ], [ -96.132651201685007, 29.852679190214836 ], [ -96.132662201811584, 29.852644189894345 ], [ -96.132674202239528, 29.852573189433478 ], [ -96.132679201918094, 29.852502190035143 ], [ -96.132680202442202, 29.85239519011721 ], [ -96.132666201700687, 29.852252190038548 ], [ -96.132623201997845, 29.852192190101498 ], [ -96.132574202092883, 29.852136189818872 ], [ -96.132403201361882, 29.852037190066991 ], [ -96.132330202252064, 29.852005189746798 ], [ -96.132224201977451, 29.851951189851682 ], [ -96.132167201948064, 29.851899189625005 ], [ -96.132136202201607, 29.851876189593227 ], [ -96.132080201665431, 29.851822190046185 ], [ -96.132045202090723, 29.851757189750614 ], [ -96.132023201630787, 29.851726189402285 ], [ -96.131902201344261, 29.851628189447883 ], [ -96.131870201456124, 29.851606189570525 ], [ -96.131653201309618, 29.851501189248161 ], [ -96.131464201388411, 29.85143218980658 ], [ -96.131424201575527, 29.851423189513397 ], [ -96.131302201093206, 29.851406189453908 ], [ -96.131220201273464, 29.85139918961417 ], [ -96.131056201016818, 29.851415189977804 ], [ -96.130936201903978, 29.851440189542913 ], [ -96.13067220091456, 29.851539189417963 ], [ -96.130360200908825, 29.85162918941521 ], [ -96.130102201721328, 29.851742189494317 ], [ -96.130001201148772, 29.851805189288974 ], [ -96.12988820154068, 29.851847189684886 ], [ -96.129853201157289, 29.85186818961655 ], [ -96.129775201634473, 29.851890189927477 ], [ -96.129478200839003, 29.852016190173309 ], [ -96.129320200992169, 29.852056190129787 ], [ -96.129121200553698, 29.85209918943168 ], [ -96.128915200494916, 29.852112190021749 ], [ -96.12883320145815, 29.852109189440498 ], [ -96.128668200482167, 29.852111189699734 ], [ -96.128421200369658, 29.852101189396976 ], [ -96.128379201001778, 29.852103189933104 ], [ -96.128263200365197, 29.852139190026666 ], [ -96.128189201338685, 29.852172189657963 ], [ -96.128109201307097, 29.852188189816889 ], [ -96.127945201260701, 29.852204190025706 ], [ -96.127780200290104, 29.852196189724694 ], [ -96.127615200258262, 29.852193189878818 ], [ -96.127532200484097, 29.852197190168461 ], [ -96.127409200116688, 29.852209189809326 ], [ -96.127248200263139, 29.852180189910417 ], [ -96.127130200249951, 29.852148189504359 ], [ -96.126859200798563, 29.85205918997848 ], [ -96.126670200276706, 29.851988190157495 ], [ -96.126591199945167, 29.851966190261614 ], [ -96.126441200641636, 29.85190719015262 ], [ -96.126232200338094, 29.851791189572225 ], [ -96.1261532007819, 29.851771190226234 ], [ -96.125990200539519, 29.851747189892929 ], [ -96.125911200298603, 29.851726189537501 ], [ -96.125870200501822, 29.851722190260375 ], [ -96.125787200193983, 29.851721189714016 ], [ -96.125746200674001, 29.851716189554512 ], [ -96.12566719974599, 29.851698189784756 ], [ -96.125631199772542, 29.851680190006682 ], [ -96.125598200061191, 29.851658189741872 ], [ -96.125492199669125, 29.851603189902583 ], [ -96.125418200521466, 29.851572189550666 ], [ -96.125282199673933, 29.851492189575673 ], [ -96.125212200466933, 29.851455189407588 ], [ -96.125145199726461, 29.851413189650422 ], [ -96.125119200021501, 29.851386189738417 ], [ -96.125060200055529, 29.851336189457083 ], [ -96.124994199804263, 29.851293189456101 ], [ -96.124936200023967, 29.85124318979701 ], [ -96.124816199861627, 29.851096190109708 ], [ -96.124703199366323, 29.850946189787134 ], [ -96.124613199785898, 29.850745189596356 ], [ -96.124594199637983, 29.850675189320707 ], [ -96.124567199733661, 29.850497190083683 ], [ -96.124552200016822, 29.85017418932128 ], [ -96.12455719997179, 29.849995189301875 ], [ -96.124568199441498, 29.849924189595555 ], [ -96.124585200143102, 29.849854189430186 ], [ -96.124598199794008, 29.849819189232619 ], [ -96.124646199882889, 29.849720189049332 ], [ -96.124656200288399, 29.849685189530131 ], [ -96.124666199601194, 29.849614189128257 ], [ -96.124675199950815, 29.849470189106626 ], [ -96.12467220004757, 29.849255189071343 ], [ -96.124667199536759, 29.849183189351724 ], [ -96.124638199655621, 29.849078189459103 ], [ -96.124547200188275, 29.848839189432155 ], [ -96.124543199891022, 29.848803189445224 ], [ -96.124486199695411, 29.848593189330089 ], [ -96.124426200067958, 29.848421188814079 ], [ -96.124352199763464, 29.848253189320356 ], [ -96.124300200124026, 29.848156189463587 ], [ -96.124239199558772, 29.848061188728224 ], [ -96.124203199666539, 29.847997189046115 ], [ -96.124180199958644, 29.847967189296835 ], [ -96.124102199896925, 29.847883188956068 ], [ -96.123976199354317, 29.847791189478681 ], [ -96.123874199685574, 29.847729189495471 ], [ -96.123798199028187, 29.847700189344472 ], [ -96.123639199092139, 29.847663189382398 ], [ -96.123151199226982, 29.847583189108395 ], [ -96.122991199351532, 29.847547189432692 ], [ -96.122873199454574, 29.847516188655256 ], [ -96.12284119913663, 29.847492189325884 ], [ -96.122732199281387, 29.847384189510858 ], [ -96.122560198698281, 29.847182189292681 ], [ -96.122380198793067, 29.846986189281779 ], [ -96.122242198638418, 29.846852189055785 ], [ -96.122182199220674, 29.846803189323495 ], [ -96.12208619943523, 29.846735188796249 ], [ -96.12198619872936, 29.846670188836352 ], [ -96.121773199401588, 29.846561189387518 ], [ -96.121661198574657, 29.846514188878889 ], [ -96.12115019912369, 29.846282188780933 ], [ -96.121008198569001, 29.846207188664426 ], [ -96.120940198482032, 29.846166188592711 ], [ -96.120864198970068, 29.846101188528742 ], [ -96.120782198561628, 29.846021188495527 ], [ -96.120660198376996, 29.845876188491449 ], [ -96.12048719848562, 29.845631188607161 ], [ -96.120449198596816, 29.845567189085507 ], [ -96.120334198173566, 29.845337188873025 ], [ -96.120289198713763, 29.845237188790815 ], [ -96.12027019839725, 29.845167188597369 ], [ -96.120265198683654, 29.845131188608544 ], [ -96.120262198870947, 29.844916188890171 ], [ -96.120268198006485, 29.844809188464382 ], [ -96.120293198039178, 29.844666188926865 ], [ -96.120365198707887, 29.844386188979428 ], [ -96.120370198197023, 29.844350188875243 ], [ -96.120364198893412, 29.844278188129653 ], [ -96.120353198017384, 29.844242188345138 ], [ -96.120342198325744, 29.84420918843821 ], [ -96.120293198242905, 29.84410918815469 ], [ -96.120253198694044, 29.844046188869818 ], [ -96.120160198472291, 29.843927188729719 ], [ -96.120083198852811, 29.843842188388109 ], [ -96.119972198556951, 29.84380918820041 ], [ -96.119856198595983, 29.843969188503941 ], [ -96.119787198652091, 29.844063188624556 ], [ -96.118805197640057, 29.84539318872261 ], [ -96.118125197476573, 29.845974188816044 ], [ -96.117819197867561, 29.846236189045836 ], [ -96.116252197169615, 29.847511189295481 ], [ -96.115569197234706, 29.847929189647637 ], [ -96.114741197523017, 29.848278189949948 ], [ -96.11352319695466, 29.848605189890048 ], [ -96.112561196425375, 29.84905718966872 ], [ -96.111898196981358, 29.849358190065551 ], [ -96.111390195950634, 29.849598189988527 ], [ -96.11124119672958, 29.849668189660552 ], [ -96.111086196300562, 29.849734190068901 ], [ -96.110460195884286, 29.85002519026574 ], [ -96.110046196077846, 29.850047190145354 ], [ -96.109409195993919, 29.849892190268708 ], [ -96.107472195512798, 29.849892190360244 ], [ -96.106982194963791, 29.850009189743187 ], [ -96.106282195135478, 29.850179190446653 ], [ -96.10466519434992, 29.850441190115177 ], [ -96.104522194937431, 29.850465190481046 ], [ -96.103750194399424, 29.850779190058347 ], [ -96.10363219472427, 29.850827190271868 ], [ -96.10351519399569, 29.850875190295074 ], [ -96.103350193952778, 29.85094319058037 ], [ -96.102901194815047, 29.851127190208636 ], [ -96.102742193843383, 29.851192190416075 ], [ -96.102644194713818, 29.851232190770084 ], [ -96.102131194444411, 29.8516211909605 ], [ -96.100946194406262, 29.852519191052139 ], [ -96.10085719360967, 29.85331219101165 ], [ -96.101664194582128, 29.853968191226087 ], [ -96.104835195378044, 29.855509191208295 ], [ -96.10743519613672, 29.85659719125869 ], [ -96.107867196029019, 29.85686719153302 ], [ -96.108091196012964, 29.857008191818796 ], [ -96.108510196123305, 29.857271191583241 ], [ -96.109153196445419, 29.857674192056859 ], [ -96.109596196127427, 29.857948191386711 ], [ -96.1102091963362, 29.858677192204052 ], [ -96.110768196518194, 29.86070819234342 ], [ -96.111251196578124, 29.862495192741267 ], [ -96.11159919706806, 29.863793192831753 ], [ -96.111947197436237, 29.86509019315838 ], [ -96.11210719716739, 29.865688193215423 ], [ -96.112190197415615, 29.866361192880628 ], [ -96.112674197668539, 29.870262193990513 ], [ -96.112341197202724, 29.872037194296588 ], [ -96.112234197446924, 29.872562194838046 ], [ -96.11088819747296, 29.873433195104269 ], [ -96.110287197152374, 29.873821195060664 ], [ -96.108239196779095, 29.87417619526072 ], [ -96.107908197084427, 29.874176194656261 ], [ -96.106768196122161, 29.874177194638779 ], [ -96.106416196416163, 29.874178194994521 ], [ -96.105612195960205, 29.874164195225973 ], [ -96.104690195738499, 29.874261194864598 ], [ -96.103485195944515, 29.874427195622111 ], [ -96.101903194875689, 29.874721194951345 ], [ -96.10073519535328, 29.875043195776211 ], [ -96.100078194594161, 29.875233195048288 ], [ -96.099551194629143, 29.875426195628734 ], [ -96.098995194170442, 29.875601195310907 ], [ -96.098813194855879, 29.87566119601297 ], [ -96.098727194732859, 29.875690195689749 ], [ -96.098632194143406, 29.875722195450553 ], [ -96.098558194800134, 29.875747195741926 ], [ -96.098484194385605, 29.875772195969933 ], [ -96.098184194674118, 29.875877195474185 ], [ -96.097715193902928, 29.876036196168467 ], [ -96.097532194240969, 29.876097196026858 ], [ -96.095815193710962, 29.876681196237595 ], [ -96.093505193159089, 29.87885519616006 ], [ -96.09294419285925, 29.879384196339984 ], [ -96.092913193267734, 29.879556196766675 ], [ -96.092862193520446, 29.879835196653232 ], [ -96.092828192726543, 29.880023197028994 ], [ -96.092811193493958, 29.880114196495708 ], [ -96.092787193512393, 29.880227196498026 ], [ -96.092718192813066, 29.880596196647602 ], [ -96.092653192725891, 29.880944197018344 ], [ -96.092609192643721, 29.881177196569205 ], [ -96.092483193164171, 29.881826196964525 ], [ -96.092746193026215, 29.882770197217528 ], [ -96.094167193759418, 29.883950197746586 ], [ -96.094707193932038, 29.884084197528782 ], [ -96.098114194890073, 29.883682197429412 ], [ -96.099831194916192, 29.883166197269425 ], [ -96.099993195409127, 29.883117197184944 ], [ -96.100668195703676, 29.882916197396497 ], [ -96.100731194911646, 29.882898196967854 ], [ -96.10079319521536, 29.882879196642577 ], [ -96.101123195403588, 29.882777196579308 ], [ -96.101679195251521, 29.882760196764437 ], [ -96.102533195705064, 29.882724196557763 ], [ -96.104347196187675, 29.882646197203279 ], [ -96.10569219616707, 29.883693196653699 ], [ -96.107314197280971, 29.886102197378637 ], [ -96.108314197335858, 29.887499197691962 ], [ -96.108605197888835, 29.887905198166873 ], [ -96.108808197446209, 29.888179197744485 ], [ -96.109014197792305, 29.888457198204964 ], [ -96.109052198014751, 29.888509197938557 ], [ -96.109157197215723, 29.888659197533382 ], [ -96.109263197571224, 29.888808197903536 ], [ -96.109319197409562, 29.888887198324568 ], [ -96.109571197491277, 29.888929197681129 ], [ -96.109701197998589, 29.888951198004474 ], [ -96.109830198095793, 29.888973198312325 ], [ -96.111109198480591, 29.889189197966708 ], [ -96.112360198952544, 29.889411197873009 ], [ -96.113150198741266, 29.889574197940355 ], [ -96.113292198695518, 29.889614198197052 ], [ -96.113393198884651, 29.889638198120203 ], [ -96.113482198812136, 29.889687198198153 ], [ -96.11735419970671, 29.8908971981371 ], [ -96.122570201025397, 29.893926198726291 ], [ -96.123440201317379, 29.894527198386427 ], [ -96.123520201801767, 29.894586198319036 ], [ -96.123795202050914, 29.894787198239509 ], [ -96.124157201958624, 29.895051198822028 ], [ -96.12524520162637, 29.896538199320613 ], [ -96.125417201858298, 29.896826198878866 ], [ -96.125956202530205, 29.8977141995917 ], [ -96.12627420197191, 29.898855198940971 ], [ -96.126263202129564, 29.899009199406692 ], [ -96.126251202508541, 29.899164199144717 ], [ -96.126239202106206, 29.899322199558267 ], [ -96.126281202228967, 29.900513199919519 ], [ -96.12623520227271, 29.90191120009478 ], [ -96.12622120306429, 29.902122199979598 ], [ -96.126161202973734, 29.903014200603202 ], [ -96.126141202857966, 29.903234200343341 ], [ -96.125792202122994, 29.903918200590397 ], [ -96.125722202378341, 29.904089200394456 ], [ -96.125637202668798, 29.904293200609715 ], [ -96.125377202828176, 29.904664200651542 ], [ -96.124731202000206, 29.90552320094606 ], [ -96.12435420273664, 29.906210201019718 ], [ -96.124069202428188, 29.906730201198695 ], [ -96.123837202663012, 29.907154200716768 ], [ -96.120793201497051, 29.908870201140726 ], [ -96.116465200561876, 29.910861201760181 ], [ -96.115145200225086, 29.911404202628571 ], [ -96.115139200114911, 29.911558202015676 ], [ -96.115127200032589, 29.911886202094923 ], [ -96.114963199695609, 29.912011202359921 ], [ -96.114865200304862, 29.912091202031053 ], [ -96.114725200187777, 29.912196202188944 ], [ -96.114649200296071, 29.912255202286261 ], [ -96.114573199635402, 29.912313202393932 ], [ -96.114288200516654, 29.912532202164115 ], [ -96.114003200147152, 29.912751202215471 ], [ -96.113878200170618, 29.912848202416466 ], [ -96.11317719991861, 29.914361203248827 ], [ -96.113256200163875, 29.914863203279129 ], [ -96.113316200377355, 29.915243202848078 ], [ -96.113326199875615, 29.915306203231061 ], [ -96.113327200252911, 29.915321202941321 ], [ -96.11333220020083, 29.915359203133004 ], [ -96.113364199416125, 29.915570203336433 ], [ -96.113664200462978, 29.916144203618025 ], [ -96.11372520055383, 29.916260203149346 ], [ -96.113937199831241, 29.916663203010742 ], [ -96.114148200694942, 29.917067203472712 ], [ -96.114171199723742, 29.917111203909322 ], [ -96.114555200417044, 29.917843203279105 ], [ -96.116324200847004, 29.921211204420434 ], [ -96.118854201757557, 29.927165204937928 ], [ -96.118994201561819, 29.927493205155987 ], [ -96.119134202416106, 29.927691205044553 ], [ -96.119186202391447, 29.927765205407798 ], [ -96.119238202133744, 29.927840205667316 ], [ -96.119483202535989, 29.928189205304193 ], [ -96.119683201957528, 29.928459205946808 ], [ -96.120118201949566, 29.928570205349029 ], [ -96.122652202810144, 29.929216205643279 ], [ -96.125255203113454, 29.930461206049831 ], [ -96.126621204262847, 29.930792206010594 ], [ -96.128562204966983, 29.931464205632963 ], [ -96.130060204485872, 29.9324432059115 ], [ -96.131078204846617, 29.933602206096719 ], [ -96.131199205000414, 29.933739206257314 ], [ -96.131259205762575, 29.93392320671207 ], [ -96.131398205133607, 29.934363206090907 ], [ -96.131537205492236, 29.934804206078915 ], [ -96.131562205546999, 29.934885206721752 ], [ -96.131589205219058, 29.934967206683559 ], [ -96.13166920526821, 29.935862206977102 ], [ -96.131746205160411, 29.936734206955844 ], [ -96.131657206065114, 29.937509207372539 ], [ -96.131132205096279, 29.938736207564094 ], [ -96.130582205484245, 29.939570207725104 ], [ -96.129790204740075, 29.940385207465308 ], [ -96.129772204999895, 29.940390207592866 ], [ -96.129221205346241, 29.940969207936195 ], [ -96.128376205447211, 29.941793207917382 ], [ -96.12821520456859, 29.941918207649422 ], [ -96.127947204695388, 29.942155207688394 ], [ -96.127641205226453, 29.942416208085195 ], [ -96.127556205091921, 29.942490208245481 ], [ -96.127413204844345, 29.942644208037898 ], [ -96.127168205158114, 29.942908208211609 ], [ -96.126714204149138, 29.943464208250198 ], [ -96.126550205065371, 29.943757208379704 ], [ -96.126038204497135, 29.944281208312777 ], [ -96.125509204287695, 29.944946208886805 ], [ -96.12524420454794, 29.945840209157591 ], [ -96.124278204463153, 29.947961209808302 ], [ -96.123722204354877, 29.948552209511163 ], [ -96.122912203978586, 29.949031209231286 ], [ -96.121494203095352, 29.949194209573918 ], [ -96.119195203196114, 29.948110209688132 ], [ -96.118668202566766, 29.947785209534487 ], [ -96.118608202759702, 29.947748209146489 ], [ -96.118548202987185, 29.94772420947298 ], [ -96.118373202204339, 29.947654209108538 ], [ -96.11829720237229, 29.947624209345218 ], [ -96.118082202816979, 29.947519209386684 ], [ -96.117798202576608, 29.947459209655769 ], [ -96.117438202057272, 29.947338209763494 ], [ -96.117331202757228, 29.947261209224465 ], [ -96.117211202677623, 29.947190209631785 ], [ -96.117122201960512, 29.947118209606529 ], [ -96.117021202532186, 29.94705220949206 ], [ -96.116586202365696, 29.946855209335052 ], [ -96.116479201744596, 29.946822208998846 ], [ -96.116113201689473, 29.946750209805529 ], [ -96.11586020195837, 29.946646209298596 ], [ -96.115683202392304, 29.946547208950246 ], [ -96.115595202209974, 29.946487209435748 ], [ -96.115235201468536, 29.946141208957769 ], [ -96.114875202119364, 29.945751209181456 ], [ -96.114642201637551, 29.945481208937654 ], [ -96.114149201587011, 29.944959209212094 ], [ -96.114073201723244, 29.944789209115733 ], [ -96.114048201291808, 29.94464620927674 ], [ -96.114041201605062, 29.94445420859498 ], [ -96.114010201231523, 29.944366208941723 ], [ -96.113816201298192, 29.944103209119369 ], [ -96.113783201166257, 29.944058209014148 ], [ -96.11374520139708, 29.943899208848844 ], [ -96.113737200990983, 29.943881208854453 ], [ -96.11343820088058, 29.943549209116778 ], [ -96.113320201245713, 29.943417208524959 ], [ -96.113073201544339, 29.943141208749857 ], [ -96.112888201177284, 29.94303520890444 ], [ -96.112778201511304, 29.942972208318569 ], [ -96.112668200920197, 29.942909208520888 ], [ -96.11221920054021, 29.942651208445469 ], [ -96.11204820081177, 29.942557208871143 ], [ -96.111493200673706, 29.942253208435467 ], [ -96.11022120059981, 29.941554208642977 ], [ -96.108443199440387, 29.940635208809169 ], [ -96.106952199072239, 29.940333208754659 ], [ -96.106840199213167, 29.940312208218494 ], [ -96.106625199138051, 29.940272208439872 ], [ -96.10584319960104, 29.940310208049876 ], [ -96.105752199565444, 29.940310208263103 ], [ -96.105010199395551, 29.940344208297883 ], [ -96.103123198794478, 29.940437208740338 ], [ -96.102279198633667, 29.940910208372678 ], [ -96.101380198178632, 29.941414208742216 ], [ -96.100803198090887, 29.943531209456726 ], [ -96.102059198741742, 29.944953209932866 ], [ -96.102378198488253, 29.945313209278638 ], [ -96.102700198801003, 29.945672209430384 ], [ -96.102762199064884, 29.945744209718484 ], [ -96.102832198555575, 29.945822209748624 ], [ -96.102969198750486, 29.945974209366636 ], [ -96.103515198514245, 29.946595209920186 ], [ -96.103552198547717, 29.946991210031449 ], [ -96.103623198468398, 29.947745209681429 ], [ -96.103659199027973, 29.948126209968517 ], [ -96.103664199238523, 29.94817721003179 ], [ -96.103075198741976, 29.949692210091893 ], [ -96.10364019894368, 29.951373210418861 ], [ -96.103758199444357, 29.952407211095739 ], [ -96.104856199637553, 29.953685210750955 ], [ -96.105185199902238, 29.954070211204638 ], [ -96.105726199670343, 29.954701211254967 ], [ -96.105970199842488, 29.955011211817411 ], [ -96.106214199890843, 29.955320211048384 ], [ -96.106359199822393, 29.955505211789848 ], [ -96.107312200225977, 29.955631211597279 ], [ -96.107777200104422, 29.955692211378814 ], [ -96.109351200552965, 29.955897211903689 ], [ -96.111910201369056, 29.955715211460578 ], [ -96.114142201497771, 29.955557210879689 ], [ -96.118009202677911, 29.954918210771169 ], [ -96.119194202974668, 29.955004211145699 ], [ -96.119467202942786, 29.955022211308812 ], [ -96.120909203838792, 29.955958210910872 ], [ -96.121781204055068, 29.956523211292222 ], [ -96.123138204569202, 29.957815210938101 ], [ -96.124138204618205, 29.958967211569242 ], [ -96.12420320482471, 29.959203211434691 ], [ -96.124495205149373, 29.960403211722138 ], [ -96.125252204579098, 29.962371212256357 ], [ -96.125302204917617, 29.962456212060257 ], [ -96.125718205757806, 29.963161212365222 ], [ -96.125961205277292, 29.963829212829328 ], [ -96.126004205343051, 29.964411212304917 ], [ -96.126045204987662, 29.964974212938714 ], [ -96.125864205189643, 29.965732212480034 ], [ -96.125579205799042, 29.966342212596416 ], [ -96.125189205650855, 29.966916212840072 ], [ -96.12472920527027, 29.967469213157656 ], [ -96.124537205392187, 29.967728213052933 ], [ -96.124336205293019, 29.967989213793494 ], [ -96.124334204858727, 29.968005213738927 ], [ -96.124249204870054, 29.968118213580855 ], [ -96.123003205027771, 29.968480213189494 ], [ -96.122761204443293, 29.968550213148571 ], [ -96.12061020467192, 29.967358213019789 ], [ -96.12015220378396, 29.967104213463244 ], [ -96.11728420332544, 29.96459321284777 ], [ -96.115236203053058, 29.963094212488095 ], [ -96.114421201945916, 29.962499212899566 ], [ -96.11103320100105, 29.961742212720768 ], [ -96.110184200739639, 29.961163212535013 ], [ -96.110068201379974, 29.960882212613186 ], [ -96.109199200533936, 29.960182212348322 ], [ -96.108378200254378, 29.959716212076547 ], [ -96.107699200434908, 29.959330211845014 ], [ -96.107332200184985, 29.9593842119634 ], [ -96.105265200050667, 29.959177212260069 ], [ -96.10524819949984, 29.959183212573873 ], [ -96.105141200191909, 29.959248212599135 ], [ -96.103944199999844, 29.96000421284365 ], [ -96.103764199343317, 29.960753212242821 ], [ -96.103450199068547, 29.96095521274772 ], [ -96.103466199442451, 29.961070212612793 ], [ -96.103505199673364, 29.961359213095324 ], [ -96.103123199656068, 29.961365212625076 ], [ -96.102746199780526, 29.961372212378038 ], [ -96.102415199448259, 29.961341213216571 ], [ -96.102085199458656, 29.961310213163753 ], [ -96.100580199112542, 29.961210212640616 ], [ -96.099048198009143, 29.961109213002068 ], [ -96.098198197901795, 29.960549212360014 ], [ -96.096914198141079, 29.959845213052009 ], [ -96.094953197496011, 29.959825212851424 ], [ -96.092775197091257, 29.961493213173998 ], [ -96.093038197081796, 29.963245213297995 ], [ -96.094670197778726, 29.964310213718235 ], [ -96.098044198639073, 29.965121214132154 ], [ -96.100386198526223, 29.965950214061746 ], [ -96.101154198820069, 29.966227214020037 ], [ -96.101861199015374, 29.966609213457723 ], [ -96.102185199492141, 29.966787214297732 ], [ -96.102455199944089, 29.967002213826657 ], [ -96.102705199451535, 29.967073214049627 ], [ -96.10290520012019, 29.967183213894593 ], [ -96.102950199830971, 29.967552213791485 ], [ -96.102930200143618, 29.967567214239914 ], [ -96.102904199559063, 29.96757721380207 ], [ -96.10289019978778, 29.967766214232999 ], [ -96.100409198994129, 29.971646214962217 ], [ -96.09746219883057, 29.974855215326883 ], [ -96.09621519822177, 29.976459216475202 ], [ -96.096061198476434, 29.976624216005483 ], [ -96.095987198033669, 29.976704216252635 ], [ -96.09594519862091, 29.976922215969385 ], [ -96.095921198720646, 29.97704321623058 ], [ -96.09585519793221, 29.977382216113782 ], [ -96.095710198346879, 29.978144216064859 ], [ -96.09672819837256, 29.979487216240543 ], [ -96.098992198917799, 29.982129217347651 ], [ -96.100308199469637, 29.983815216991708 ], [ -96.101761200417215, 29.986181218020871 ], [ -96.101968199876069, 29.986515218294567 ], [ -96.101992200445537, 29.986559217700709 ], [ -96.102019200653544, 29.986645217506439 ], [ -96.102177200612402, 29.987145217932149 ], [ -96.102249200644664, 29.987373217942945 ], [ -96.102542200460277, 29.988301218134264 ], [ -96.102835200411505, 29.989229218174589 ], [ -96.102968201136775, 29.989654218154982 ], [ -96.103275200686355, 29.992931218975034 ], [ -96.103401200513545, 29.99375821932772 ], [ -96.103825201250856, 29.995028219568532 ], [ -96.104541200876184, 29.996214219989142 ], [ -96.104523201137795, 29.996383220148971 ], [ -96.104129201248625, 29.997215219703058 ], [ -96.10270320152145, 30.000227220438557 ], [ -96.102492200771508, 30.000988220961631 ], [ -96.102478201069047, 30.001048220926258 ], [ -96.1022512013149, 30.00191422121074 ], [ -96.102163200987135, 30.00217722143687 ], [ -96.10214420078573, 30.00223622097084 ], [ -96.102120201558535, 30.002311221208366 ], [ -96.102073201445577, 30.002433221559823 ], [ -96.102025200699273, 30.002555221062494 ], [ -96.101977200927877, 30.0026792212741 ], [ -96.101928201048082, 30.002804221451843 ], [ -96.101870201144749, 30.002953220943649 ], [ -96.101840201425745, 30.003030221427888 ], [ -96.10181220104586, 30.003102221304399 ], [ -96.101783201464826, 30.00316922086115 ], [ -96.101762201448324, 30.003218221477614 ], [ -96.10173520124205, 30.003282221131961 ], [ -96.101715200648329, 30.003329220935576 ], [ -96.101708200976176, 30.003346221681291 ], [ -96.101603201219319, 30.003615221423452 ], [ -96.101556201474523, 30.003738221474276 ], [ -96.101261201280479, 30.003963221080191 ], [ -96.101131200470007, 30.004062221896419 ], [ -96.100521200700825, 30.004235221934902 ], [ -96.099696200113229, 30.004301221334799 ], [ -96.098831200349721, 30.004230221636856 ], [ -96.098446200508505, 30.004052221191195 ], [ -96.097388199506639, 30.002801221170746 ], [ -96.096347199662091, 30.001777220825208 ], [ -96.095105198792382, 30.000739220934598 ], [ -96.094612199244096, 30.000212221334699 ], [ -96.094239199070842, 29.999909220455919 ], [ -96.09362019900594, 29.999406220777214 ], [ -96.093184198363588, 29.999154220616287 ], [ -96.091574197971795, 29.998223220450662 ], [ -96.090784197869297, 29.998288221019514 ], [ -96.090121197530863, 29.998393220871652 ], [ -96.08923019751343, 29.998607220708095 ], [ -96.088429197718909, 29.998943221005312 ], [ -96.087658197173127, 29.999333221217363 ], [ -96.086983197274762, 29.999734221300656 ], [ -96.086635196984432, 29.999965221008384 ], [ -96.086413197330387, 29.999955220857334 ], [ -96.086293196951601, 29.999950221255538 ], [ -96.086194196913581, 30.000079221489766 ], [ -96.084822196800445, 30.001868221948715 ], [ -96.084591196853054, 30.002851222210264 ], [ -96.084613196956937, 30.00410522181139 ], [ -96.084555196701217, 30.005034221974256 ], [ -96.084548196847521, 30.00514222230392 ], [ -96.084640197172959, 30.005294222686366 ], [ -96.085193197213883, 30.006206222454107 ], [ -96.086754197332056, 30.008456223148222 ], [ -96.087759198180422, 30.009863223099096 ], [ -96.087987197445273, 30.010181223232841 ], [ -96.088391198352213, 30.010745223111901 ], [ -96.090524198403756, 30.014043223833568 ], [ -96.090906199119772, 30.014797223924656 ], [ -96.092173199109951, 30.017913224459562 ], [ -96.092441198840788, 30.018669224706869 ], [ -96.092979199432918, 30.020337224884603 ], [ -96.09363119961175, 30.022357225566036 ], [ -96.094717200105762, 30.025389226215669 ], [ -96.094910200550913, 30.025656226354631 ], [ -96.09584820021098, 30.026950225850339 ], [ -96.096637200531575, 30.027618226428082 ], [ -96.096963201310743, 30.027753226528823 ], [ -96.09751220102099, 30.027980226713598 ], [ -96.097664201534258, 30.027988226840581 ], [ -96.098843201297598, 30.028053226690236 ], [ -96.099045201944392, 30.028072226077477 ], [ -96.099924202164431, 30.028157226795162 ], [ -96.10062220174558, 30.027542226038861 ], [ -96.101630201829195, 30.026659225616154 ], [ -96.102981202322511, 30.02569922587351 ], [ -96.104693202764736, 30.025143226002488 ], [ -96.106308203287568, 30.024911225523351 ], [ -96.108350204168175, 30.024855225180932 ], [ -96.110735204112316, 30.02584122565839 ], [ -96.11208220454246, 30.026102225624836 ], [ -96.113228205134888, 30.027002225870767 ], [ -96.113296205271212, 30.028578225790714 ], [ -96.113296204657573, 30.029033225774199 ], [ -96.113071205476615, 30.029281226416877 ], [ -96.112846204937469, 30.029538226574015 ], [ -96.112122204902846, 30.029949226377674 ], [ -96.110154204852094, 30.031080227049795 ], [ -96.108677204113562, 30.032006226757744 ], [ -96.107718204118243, 30.033257226718874 ], [ -96.10723620386058, 30.034724227684222 ], [ -96.107064203776815, 30.036154228102248 ], [ -96.107364204299401, 30.03797022805945 ], [ -96.107472203635865, 30.038623228388758 ], [ -96.107729204301734, 30.039093228609659 ], [ -96.10960520510649, 30.04252022877197 ], [ -96.109801204468639, 30.042818229199604 ], [ -96.109999204633482, 30.043119228651463 ], [ -96.110196204996001, 30.043420228815947 ], [ -96.110398205567478, 30.043730229531679 ], [ -96.110423204757197, 30.043768229362986 ], [ -96.110587205459836, 30.043805228956984 ], [ -96.110636205653051, 30.043770228758472 ], [ -96.110697205556548, 30.043725229563318 ], [ -96.11082720498456, 30.043605228704202 ], [ -96.111015205096663, 30.043445229217777 ], [ -96.112567206025133, 30.042125228337905 ], [ -96.112897205370118, 30.041845228727809 ], [ -96.11336820569781, 30.041456228168382 ], [ -96.116647206855575, 30.038745227849869 ], [ -96.117247206832985, 30.038229228187809 ], [ -96.118077206284113, 30.037515227374612 ], [ -96.118897206426325, 30.036865227293053 ], [ -96.120027206839978, 30.035905226846129 ], [ -96.120394207139796, 30.035605227288684 ], [ -96.12117720731203, 30.034965227189186 ], [ -96.121487207367139, 30.034685226835833 ], [ -96.124177207761946, 30.032456226372041 ], [ -96.124227208379679, 30.032415226230931 ], [ -96.125257208003319, 30.031545225972067 ], [ -96.126187208890968, 30.030815225858635 ], [ -96.126427208522841, 30.030645226327593 ], [ -96.126484208461463, 30.030610226359247 ], [ -96.126977208291507, 30.030305225509544 ], [ -96.127607209261072, 30.029945225619592 ], [ -96.128247208944714, 30.029625225348699 ], [ -96.13116721003118, 30.02835522506005 ], [ -96.132327210303529, 30.027825225645433 ], [ -96.132657209570965, 30.027675224925666 ], [ -96.132904210194354, 30.02756622478153 ], [ -96.133878209834876, 30.027136225406885 ], [ -96.134767210842597, 30.026739224967862 ], [ -96.135877211189396, 30.026245224329656 ], [ -96.142297212288341, 30.02340522366547 ], [ -96.143777212753491, 30.022755223610581 ], [ -96.145437213047231, 30.022005223896372 ], [ -96.147439213772017, 30.021120223018194 ], [ -96.150217214492457, 30.019885223014043 ], [ -96.156497215622707, 30.017115221976663 ], [ -96.158027215746969, 30.016425222250781 ], [ -96.159627216280469, 30.015725221716544 ], [ -96.159792216468318, 30.015652222080103 ], [ -96.164446217799068, 30.01359122094313 ], [ -96.165657217174612, 30.013055221141094 ], [ -96.166187218194267, 30.012825220920764 ], [ -96.1679362182592, 30.012045220916058 ], [ -96.167981217771128, 30.012023220820115 ], [ -96.168137218543052, 30.011955221162609 ], [ -96.168497218573094, 30.011785220650225 ], [ -96.168797218240812, 30.011625220687243 ], [ -96.168877217937606, 30.01159522057478 ], [ -96.169077218809534, 30.011475220763522 ], [ -96.170257218523744, 30.010805220022991 ], [ -96.173003219489942, 30.009225220003305 ], [ -96.17303721982455, 30.009205220295517 ], [ -96.177137220139997, 30.006865219296714 ], [ -96.177567220403816, 30.006605219473666 ], [ -96.180627221059964, 30.004855218775671 ], [ -96.183686221903201, 30.00307321884927 ], [ -96.183957221665551, 30.002915218127232 ], [ -96.183999221637819, 30.002891218690834 ], [ -96.186817222857584, 30.001275217916341 ], [ -96.186862222292874, 30.00124921837228 ], [ -96.187327222763116, 30.000985218202842 ], [ -96.187807222640956, 30.000685217813679 ], [ -96.188397222870179, 30.000285217444368 ], [ -96.189694223636195, 29.999286217685309 ], [ -96.191007223394038, 29.998275217530558 ], [ -96.192237223723154, 29.997315216642441 ], [ -96.196192224858251, 29.994259215763847 ], [ -96.197737224878324, 29.993065215667027 ], [ -96.198187224897296, 29.992705215832498 ], [ -96.20306622610272, 29.988941214438114 ], [ -96.205858226675375, 29.986779214799622 ], [ -96.208627227480221, 29.984635213994441 ], [ -96.210870227597425, 29.982905213405484 ], [ -96.211627227554956, 29.982305213395584 ], [ -96.21409722872265, 29.98041521286283 ], [ -96.214307228117676, 29.980235212956536 ], [ -96.215357228364837, 29.979435212703287 ], [ -96.216126229341668, 29.978820212599537 ], [ -96.217617229590971, 29.977655211926269 ], [ -96.217777229472176, 29.977515212259089 ], [ -96.218217229546411, 29.977105211865471 ], [ -96.218234229116376, 29.977088212121437 ], [ -96.218617229294892, 29.976705211688671 ], [ -96.219067229440313, 29.976235212107671 ], [ -96.221617229824759, 29.973375211492993 ], [ -96.222847229964984, 29.971985210595388 ], [ -96.224117230415885, 29.970575210784865 ], [ -96.224577230411569, 29.970085210438306 ], [ -96.226838230961619, 29.967824209893525 ], [ -96.226867231055735, 29.967795210036702 ], [ -96.226946231506545, 29.967713209829821 ], [ -96.227667231146711, 29.966965209398271 ], [ -96.22831723161579, 29.966325209603525 ], [ -96.22842323193214, 29.966217209159883 ], [ -96.228807231344149, 29.965825209612465 ], [ -96.229146231724826, 29.965493209690734 ], [ -96.229297231243933, 29.965345209247289 ], [ -96.22974723141219, 29.964875209295275 ], [ -96.230207231421446, 29.964415209042695 ], [ -96.230637231722071, 29.963925209142207 ], [ -96.230984232264461, 29.963514208664726 ], [ -96.231017231933222, 29.963475208469305 ], [ -96.233366232207572, 29.960379208460033 ], [ -96.233907232501807, 29.95966520832178 ], [ -96.235727232871852, 29.957255207763691 ], [ -96.236037232870899, 29.9568752070026 ], [ -96.236139233206842, 29.956773206843188 ], [ -96.236747232941582, 29.956165207207821 ], [ -96.236868233359303, 29.956061206956214 ], [ -96.237097233503775, 29.955865207148531 ], [ -96.237727233194519, 29.955405206497812 ], [ -96.238137233029818, 29.955135206540792 ], [ -96.239242233606674, 29.954387206234919 ], [ -96.239498233970394, 29.954214206339294 ], [ -96.239747233543653, 29.954045206907203 ], [ -96.240457233671833, 29.953575206750852 ], [ -96.241817234225778, 29.952635206440377 ], [ -96.243230234736203, 29.951689205685618 ], [ -96.243627234720435, 29.951425205945068 ], [ -96.244037234714085, 29.951145205596486 ], [ -96.244060234697514, 29.951130205529189 ], [ -96.2442662345548, 29.950992206210366 ], [ -96.244757234783947, 29.950665205309214 ], [ -96.246697234967513, 29.94934520577246 ], [ -96.246722235463039, 29.949327205092725 ], [ -96.246828235331733, 29.949253205507894 ], [ -96.247037235703402, 29.949105205057176 ], [ -96.247107235510356, 29.94906520523438 ], [ -96.247167235383159, 29.949025205206112 ], [ -96.247657235066356, 29.94873520543176 ], [ -96.24809723575639, 29.948535205360049 ], [ -96.24856723620006, 29.948375205136387 ], [ -96.249307236308383, 29.948195205194562 ], [ -96.249877236425377, 29.948095204827805 ], [ -96.250877236066941, 29.947995204631688 ], [ -96.251167236783758, 29.947995204958421 ], [ -96.251327236839614, 29.948025205010815 ], [ -96.251387236585344, 29.948045204696243 ], [ -96.251577236739891, 29.948105205256766 ], [ -96.252327236524181, 29.948425205210032 ], [ -96.252437236664122, 29.948475204579633 ], [ -96.252887237362074, 29.948665204680267 ], [ -96.25329723737093, 29.948815205142726 ], [ -96.254347237101072, 29.949215204683934 ], [ -96.255237237433349, 29.949555204912308 ], [ -96.256037237899321, 29.949865205051811 ], [ -96.256580237379907, 29.950082204747449 ], [ -96.256847237903187, 29.950175205147218 ], [ -96.256907238023928, 29.950235205088415 ], [ -96.25693823820113, 29.950284204869071 ], [ -96.257021237810832, 29.950232205162184 ], [ -96.257068237590374, 29.950208205070449 ], [ -96.257146238367909, 29.950194205434748 ], [ -96.257302238104018, 29.950201204808995 ], [ -96.257465237980014, 29.950225205215521 ], [ -96.257596238520449, 29.95029720529481 ], [ -96.257643238305661, 29.95037420550026 ], [ -96.257677237658456, 29.950495205098104 ], [ -96.258244238764718, 29.950716204832894 ], [ -96.258547238882059, 29.950835205692311 ], [ -96.259367238644913, 29.951155205514709 ], [ -96.26098723949886, 29.951795205011084 ], [ -96.262107239209385, 29.952245205426536 ], [ -96.262209238998409, 29.952284205214813 ], [ -96.262807239873297, 29.952515205140106 ], [ -96.26283823926812, 29.95252920558454 ], [ -96.26322723992223, 29.952705205046414 ], [ -96.263273239511875, 29.952731205642579 ], [ -96.263407240176647, 29.952805205715329 ], [ -96.263537239290869, 29.952885205539907 ], [ -96.263967240133653, 29.953185205771632 ], [ -96.264207240303975, 29.953365205932638 ], [ -96.265755240632984, 29.954586205536359 ], [ -96.265817240287788, 29.954635206221141 ], [ -96.266287240841663, 29.954985205950805 ], [ -96.267087240362144, 29.955635205545423 ], [ -96.267270240597242, 29.955787206197048 ], [ -96.267617240983199, 29.956075206350025 ], [ -96.268217241073216, 29.956355206284595 ], [ -96.268777241188005, 29.956585206019991 ], [ -96.26908724157478, 29.956685205912414 ], [ -96.269287241256393, 29.95674520628636 ], [ -96.269847241944703, 29.956835205946767 ], [ -96.2700572417573, 29.956855206458432 ], [ -96.270197241961498, 29.956855206364331 ], [ -96.272457242020934, 29.956705206173424 ], [ -96.274717242231546, 29.956535205613299 ], [ -96.275257242578292, 29.956495206138225 ], [ -96.275387242847017, 29.956485205554095 ], [ -96.275607242899085, 29.956475206169589 ], [ -96.275867243242985, 29.956455206001603 ], [ -96.276197243330728, 29.956425206015911 ], [ -96.276666243369647, 29.956394206203523 ], [ -96.276807243086296, 29.956385206118611 ], [ -96.278937243969622, 29.956215205640646 ], [ -96.28048724368611, 29.956115205429331 ], [ -96.280934244014063, 29.95607720536966 ], [ -96.281667244385446, 29.956016205736816 ], [ -96.283357244955909, 29.955875205812784 ], [ -96.284777245290812, 29.955775205445121 ], [ -96.286107245566328, 29.955675204892646 ], [ -96.287943245927508, 29.955522205546071 ], [ -96.28893724639623, 29.95544520546694 ], [ -96.29088224689059, 29.955310205102368 ], [ -96.29152724665343, 29.955265204596035 ], [ -96.292947247354093, 29.955155205095849 ], [ -96.293201246993547, 29.955132205198428 ], [ -96.294267247459302, 29.955035204588988 ], [ -96.294587247568529, 29.955025204767427 ], [ -96.295607248305657, 29.955005205038212 ], [ -96.296967248434726, 29.955055205149055 ], [ -96.297477248615493, 29.955085204563176 ], [ -96.298317248882853, 29.955185204389007 ], [ -96.299247249294396, 29.955335204545367 ], [ -96.29967724949968, 29.955405205097101 ], [ -96.300267249498262, 29.955535204917272 ], [ -96.301177249464928, 29.955765204752204 ], [ -96.302409249997936, 29.956134204526791 ], [ -96.305087250144368, 29.956935204514206 ], [ -96.307877251268621, 29.957775205024966 ], [ -96.31015725150651, 29.958455204698193 ], [ -96.31086825246426, 29.958653205399397 ], [ -96.311017252267092, 29.958695205036459 ], [ -96.311757252347022, 29.958935205164739 ], [ -96.313577252681768, 29.959465205465271 ], [ -96.314987253048116, 29.959885204704541 ], [ -96.315139252781293, 29.959926204742548 ], [ -96.315287253209533, 29.959965205216101 ], [ -96.315727253248326, 29.960065205410796 ], [ -96.3161372537283, 29.960135204852012 ], [ -96.316567253219063, 29.960175204884269 ], [ -96.317197253809027, 29.960195205094024 ], [ -96.317857254094093, 29.960155205419397 ], [ -96.318157253928547, 29.960115204711105 ], [ -96.318777253895647, 29.959985205394233 ], [ -96.319687253920421, 29.959725204953106 ], [ -96.320126254062743, 29.959615204575559 ], [ -96.320119254655268, 29.959519205204675 ], [ -96.320151254587174, 29.959442204736746 ], [ -96.320245253976964, 29.959370204578814 ], [ -96.320372254592471, 29.959326205094285 ], [ -96.320555254770426, 29.959288204938154 ], [ -96.320713254209338, 29.959183205122674 ], [ -96.320782254098361, 29.959096204926567 ], [ -96.320832254302204, 29.959002204623552 ], [ -96.320858254733466, 29.958903204389866 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 156, "Tract": "48015760501", "Area_SqMi": 111.21778816615424, "total_2009": 1178, "total_2010": 965, "total_2011": 1100, "total_2012": 1069, "total_2013": 1032, "total_2014": 1070, "total_2015": 1182, "total_2016": 1135, "total_2017": 1087, "total_2018": 1245, "total_2019": 1316, "total_2020": 1441, "age1": 338, "age2": 857, "age3": 476, "earn1": 279, "earn2": 443, "earn3": 949, "naics_s01": 7, "naics_s02": 0, "naics_s03": 5, "naics_s04": 350, "naics_s05": 240, "naics_s06": 9, "naics_s07": 110, "naics_s08": 6, "naics_s09": 9, "naics_s10": 91, "naics_s11": 25, "naics_s12": 93, "naics_s13": 0, "naics_s14": 74, "naics_s15": 131, "naics_s16": 229, "naics_s17": 1, "naics_s18": 114, "naics_s19": 21, "naics_s20": 156, "race1": 1435, "race2": 183, "race3": 9, "race4": 26, "race5": 0, "race6": 18, "ethnicity1": 1252, "ethnicity2": 419, "edu1": 251, "edu2": 401, "edu3": 412, "edu4": 269, "Shape_Length": 303523.06946130778, "Shape_Area": 3100561582.9255362, "total_2021": 1509, "total_2022": 1671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.436232289535027, 30.076492224766294 ], [ -96.436236289020712, 30.076422224173285 ], [ -96.436204289619141, 30.076329224590957 ], [ -96.436148289303489, 30.076280224521732 ], [ -96.435971289260493, 30.076203224158743 ], [ -96.435926289359813, 30.076159224380458 ], [ -96.4357562886251, 30.075917224467958 ], [ -96.435730289061866, 30.075856223886678 ], [ -96.435749289109637, 30.075730224096162 ], [ -96.435781288995599, 30.075697224401331 ], [ -96.435832289292691, 30.07566922427937 ], [ -96.435964288735164, 30.075625224417802 ], [ -96.436116289066632, 30.0755982245166 ], [ -96.436179288809853, 30.07555422424004 ], [ -96.436211288689066, 30.075460224347854 ], [ -96.436217288759295, 30.075389224170156 ], [ -96.436148289210124, 30.075202224473525 ], [ -96.436097289515402, 30.074955223888789 ], [ -96.436009289374809, 30.074669224379171 ], [ -96.435971288916335, 30.074619223852523 ], [ -96.435756289034614, 30.074553223595888 ], [ -96.435686288685446, 30.074498223593615 ], [ -96.4356232892859, 30.074427223875361 ], [ -96.435554289093716, 30.074333224123951 ], [ -96.435522289224664, 30.074262223699264 ], [ -96.435509289022889, 30.07419122383499 ], [ -96.435320288775387, 30.073861223917561 ], [ -96.435181288839999, 30.07371822345565 ], [ -96.435105288888835, 30.07359722405668 ], [ -96.435105288938843, 30.073558223338477 ], [ -96.435029288782047, 30.073393224107818 ], [ -96.434928289183532, 30.073294223508565 ], [ -96.434827288393706, 30.073151223926491 ], [ -96.434783289113653, 30.073108223632698 ], [ -96.434669288821183, 30.072921223339407 ], [ -96.434644288120822, 30.072849223743631 ], [ -96.43465028862758, 30.072690223980473 ], [ -96.434682288391386, 30.072662223571591 ], [ -96.43473228819353, 30.072657223873065 ], [ -96.434808288284074, 30.072668223632103 ], [ -96.434852288678826, 30.0726622233048 ], [ -96.434884288650551, 30.072646223287023 ], [ -96.43489628883583, 30.072618223839502 ], [ -96.434915288524394, 30.072459223929823 ], [ -96.434909288553428, 30.072376223523687 ], [ -96.434884288371777, 30.072283223431224 ], [ -96.43484628840902, 30.072223223513639 ], [ -96.434808288980463, 30.072184223229243 ], [ -96.434713288946213, 30.07217322367061 ], [ -96.43461828826517, 30.072212223596626 ], [ -96.434549288938754, 30.072228223167503 ], [ -96.434422288544837, 30.072228223379113 ], [ -96.434366288745323, 30.072190223971297 ], [ -96.434309288580252, 30.072096223256139 ], [ -96.434309288516857, 30.072074223805387 ], [ -96.434309287998914, 30.07202522313402 ], [ -96.43433428823765, 30.071926223561025 ], [ -96.434296288680429, 30.071882223161957 ], [ -96.434252288944592, 30.071849223467662 ], [ -96.43423928832236, 30.071805223697467 ], [ -96.434252288213216, 30.071728223759159 ], [ -96.434283288268645, 30.071695223351529 ], [ -96.434315288899413, 30.071689223395396 ], [ -96.434353288385836, 30.071695223753533 ], [ -96.434416288751905, 30.071733223224935 ], [ -96.434486288427621, 30.0717442232746 ], [ -96.43453028903123, 30.071733223104481 ], [ -96.434568288201646, 30.071689223821259 ], [ -96.434618288591395, 30.071585223039971 ], [ -96.434625288015042, 30.071535223477046 ], [ -96.434612288096147, 30.071447223041865 ], [ -96.434549288317555, 30.071398223037985 ], [ -96.434454288524122, 30.071414223598204 ], [ -96.434347288628459, 30.071502223316926 ], [ -96.434277288553787, 30.071458223098322 ], [ -96.434258288792194, 30.071403223703829 ], [ -96.434220287951334, 30.071392223331859 ], [ -96.434176288068656, 30.07139822345518 ], [ -96.43406228858646, 30.071447223056488 ], [ -96.434005288594534, 30.071458223109353 ], [ -96.433911288402697, 30.071447223100456 ], [ -96.433866288483316, 30.07138722371154 ], [ -96.433866288091281, 30.07133222325583 ], [ -96.433885287916496, 30.071233222899057 ], [ -96.433866287961692, 30.071145223345106 ], [ -96.433803288676685, 30.071040223621118 ], [ -96.433784288421762, 30.070810222840006 ], [ -96.433734287981395, 30.070667222983818 ], [ -96.433664288243307, 30.070612223592825 ], [ -96.433588287782797, 30.070573223000629 ], [ -96.433449288695869, 30.070562223569372 ], [ -96.433304288409431, 30.070562222849954 ], [ -96.433253288617607, 30.070551223068836 ], [ -96.433209287721908, 30.070518222977096 ], [ -96.433171288300258, 30.070452223654716 ], [ -96.433159287983088, 30.07028722320652 ], [ -96.433209288117737, 30.0699472230555 ], [ -96.433184288371905, 30.069859223393792 ], [ -96.433140288199439, 30.069782223429655 ], [ -96.433076287681743, 30.069743223341202 ], [ -96.433013288555088, 30.069743223280689 ], [ -96.432912287958203, 30.069815223057965 ], [ -96.432843287731586, 30.069886223116921 ], [ -96.432691287782987, 30.069946222960269 ], [ -96.432590288410211, 30.069974223573876 ], [ -96.432286288242921, 30.070018223268661 ], [ -96.432255288201645, 30.069985223009361 ], [ -96.432229288060725, 30.069924223339456 ], [ -96.432217287629399, 30.069749222815361 ], [ -96.432173287610425, 30.069644223265414 ], [ -96.432097288198236, 30.069567223531131 ], [ -96.432053287372483, 30.069545222774899 ], [ -96.43194528800062, 30.069545223486706 ], [ -96.431812287986631, 30.069584222867142 ], [ -96.431743288094296, 30.069617223201249 ], [ -96.43169928732496, 30.069683222959089 ], [ -96.43165428723853, 30.069858222852076 ], [ -96.431610287321348, 30.069924223496493 ], [ -96.431572288036506, 30.069946223406557 ], [ -96.431534287448116, 30.069957223541717 ], [ -96.431465287270299, 30.069952222743169 ], [ -96.431338287323584, 30.069880223585407 ], [ -96.43126228737394, 30.069858222971416 ], [ -96.431242287642903, 30.069866222831664 ], [ -96.431199287949127, 30.069902222822751 ], [ -96.431105287414084, 30.070067222964347 ], [ -96.431086288010221, 30.070155223287816 ], [ -96.430959287647568, 30.070205223425877 ], [ -96.430928287473861, 30.070205222974487 ], [ -96.430890287395016, 30.07019422346028 ], [ -96.43082028779159, 30.07009522358539 ], [ -96.430833287289758, 30.070040223356326 ], [ -96.430858287160916, 30.069996222996718 ], [ -96.430947287925861, 30.069919222855351 ], [ -96.430959287858926, 30.069891222808767 ], [ -96.430934287329364, 30.069710222974095 ], [ -96.430896287853471, 30.069583223563793 ], [ -96.430826287444091, 30.069496223201199 ], [ -96.430782286995552, 30.069468223154491 ], [ -96.43067528754257, 30.069463223039147 ], [ -96.430593286967408, 30.069485222730254 ], [ -96.430169287515142, 30.069721223451094 ], [ -96.429663286972058, 30.069979222875414 ], [ -96.429657287576021, 30.07003422329154 ], [ -96.429714287211397, 30.070293223178606 ], [ -96.42970828692269, 30.070381223699833 ], [ -96.429651287011737, 30.070392223715292 ], [ -96.429569287630784, 30.070386223555538 ], [ -96.429392287004774, 30.070287223598136 ], [ -96.429297287159102, 30.070210223511829 ], [ -96.429253287480009, 30.070161223311146 ], [ -96.429139287073625, 30.070078223645272 ], [ -96.429082287338815, 30.070056223287946 ], [ -96.429025287563434, 30.070056223295655 ], [ -96.428968286673609, 30.070078223648643 ], [ -96.428924286820603, 30.07013922347938 ], [ -96.428905286644579, 30.070205223124127 ], [ -96.428829286675224, 30.070238223460617 ], [ -96.428791287141721, 30.070237223290857 ], [ -96.428741287111151, 30.070177223014031 ], [ -96.428715286553839, 30.070117223336748 ], [ -96.42872228704222, 30.069974223388204 ], [ -96.428709287194394, 30.069924223237802 ], [ -96.428633287158192, 30.069798223447989 ], [ -96.428595286668596, 30.069754223127156 ], [ -96.428551286699772, 30.069726223255032 ], [ -96.428482286907084, 30.069726223600657 ], [ -96.428374286999883, 30.069759223384924 ], [ -96.428305287085735, 30.069770223384687 ], [ -96.4281592866338, 30.069770223229003 ], [ -96.428052286799868, 30.069792223191943 ], [ -96.427869286300535, 30.069891223649972 ], [ -96.427786286431328, 30.069919223059337 ], [ -96.427711287014475, 30.069924223689636 ], [ -96.427660286278567, 30.069886223188675 ], [ -96.427420286487617, 30.069589223387744 ], [ -96.427256286762173, 30.069369223000429 ], [ -96.427123286177135, 30.069275222743979 ], [ -96.427034286640406, 30.069226223206638 ], [ -96.426933286705122, 30.069209223470239 ], [ -96.426801285972871, 30.06921522335907 ], [ -96.426674286594945, 30.069242222893251 ], [ -96.426554286132017, 30.069286223172991 ], [ -96.426478286308722, 30.069303223376675 ], [ -96.426308286557827, 30.069297223101948 ], [ -96.426219286396389, 30.069253222976315 ], [ -96.426124285993211, 30.069127223362379 ], [ -96.426099286368, 30.069077223275421 ], [ -96.426036285845157, 30.069028222727894 ], [ -96.425966286105847, 30.069011222941217 ], [ -96.425903285922274, 30.069017222914212 ], [ -96.425802286563169, 30.069055222910137 ], [ -96.425707286522965, 30.069121223307153 ], [ -96.425372285825659, 30.069489222936859 ], [ -96.425290286236006, 30.069528223484596 ], [ -96.425246286555591, 30.069539223365833 ], [ -96.425132285869552, 30.069533222995112 ], [ -96.424980286250843, 30.069451223532102 ], [ -96.424886285732128, 30.069346222926892 ], [ -96.424854285885004, 30.069237223125985 ], [ -96.424867286352935, 30.06916022299982 ], [ -96.424873285887287, 30.068753223279423 ], [ -96.424854286035753, 30.068709223052245 ], [ -96.424791286207579, 30.068643223269483 ], [ -96.424595285618281, 30.068538223008776 ], [ -96.424507285870106, 30.068472223308373 ], [ -96.424481285590119, 30.068428223358776 ], [ -96.424456285537545, 30.06815922300985 ], [ -96.42441828539701, 30.068110223272807 ], [ -96.424165286077368, 30.067972222882428 ], [ -96.423951285948164, 30.067763222689312 ], [ -96.423812285707015, 30.067609222543961 ], [ -96.423774285389044, 30.06757622324443 ], [ -96.423736286006203, 30.067565222579621 ], [ -96.42362228529521, 30.067466222777778 ], [ -96.42356528543327, 30.067400222746379 ], [ -96.423534285709962, 30.067164222794045 ], [ -96.423477285300876, 30.06696622277909 ], [ -96.423470285109474, 30.066884222905777 ], [ -96.423521285105366, 30.066625223197956 ], [ -96.423527285210881, 30.066389223028175 ], [ -96.4235652854655, 30.066306223116971 ], [ -96.423578285405, 30.066246222573412 ], [ -96.423553285711264, 30.066136223084577 ], [ -96.423515285630486, 30.066092223011847 ], [ -96.423508284954238, 30.066059223073051 ], [ -96.423508284977999, 30.066004222408154 ], [ -96.423534285237764, 30.065883222410744 ], [ -96.42352728507494, 30.065801222507087 ], [ -96.4234202855978, 30.065636222612241 ], [ -96.423357284987816, 30.065564222217304 ], [ -96.423300285561425, 30.065526222258043 ], [ -96.423243285828363, 30.065465222901928 ], [ -96.423174285387688, 30.065295222940893 ], [ -96.423174285752054, 30.065223222691337 ], [ -96.42315528503164, 30.06511322256107 ], [ -96.423117285831026, 30.06500922259702 ], [ -96.423003284901782, 30.064838222737972 ], [ -96.422902284989746, 30.06474522211813 ], [ -96.422795285198319, 30.064569222736647 ], [ -96.422700284908089, 30.064333222513536 ], [ -96.422701285651556, 30.064315222452571 ], [ -96.42272528556876, 30.064278221960969 ], [ -96.422782285549175, 30.064228222158114 ], [ -96.422782284905651, 30.064173222337502 ], [ -96.422712285343749, 30.064014222505122 ], [ -96.422605285306759, 30.063909222481598 ], [ -96.422523285496283, 30.063865222170939 ], [ -96.422460285140147, 30.063871222286537 ], [ -96.422352284879167, 30.063970222233095 ], [ -96.422321284601324, 30.06398622223249 ], [ -96.422283284883861, 30.063986222694957 ], [ -96.422213285307151, 30.063915222648323 ], [ -96.422220285418447, 30.063876222375225 ], [ -96.422264285200356, 30.063788222309938 ], [ -96.422289284613626, 30.063629221953587 ], [ -96.422295284647262, 30.063448222253015 ], [ -96.422283284969652, 30.063288221849252 ], [ -96.42220128508977, 30.062744221878891 ], [ -96.422144284732738, 30.062585221850487 ], [ -96.42191028486458, 30.062046222127805 ], [ -96.421917284417475, 30.061969221566713 ], [ -96.421974284631332, 30.061831221940892 ], [ -96.421992285198201, 30.061699222229155 ], [ -96.421999284526052, 30.061546222011049 ], [ -96.42202428488082, 30.061491221531504 ], [ -96.422106285373602, 30.061392222212579 ], [ -96.422220284927093, 30.061359221624567 ], [ -96.422296284645881, 30.061326221385798 ], [ -96.422340285151677, 30.06127122153309 ], [ -96.422372284870335, 30.061012221932707 ], [ -96.422403285443551, 30.060935221339705 ], [ -96.422441284869848, 30.060870221904278 ], [ -96.422473285381287, 30.060842221591106 ], [ -96.422561285081557, 30.06079222159223 ], [ -96.422631285388988, 30.060782221949431 ], [ -96.422688285086238, 30.060787222032278 ], [ -96.422757284830013, 30.0608372219573 ], [ -96.422852284661531, 30.06103422150742 ], [ -96.42291528488181, 30.061062221334478 ], [ -96.423023284987949, 30.061078221527669 ], [ -96.423086285198863, 30.061073221892599 ], [ -96.423174285108573, 30.061046221809036 ], [ -96.42334528557177, 30.060859221248677 ], [ -96.423446285158505, 30.060644221188241 ], [ -96.423585285253225, 30.060435221874716 ], [ -96.423592285635877, 30.060408221111771 ], [ -96.423579285025653, 30.060342221318042 ], [ -96.423528285414477, 30.060292221205113 ], [ -96.423427285438649, 30.060237221925881 ], [ -96.423358284860242, 30.060182221424135 ], [ -96.423364284783645, 30.060056221369084 ], [ -96.423408285419811, 30.059979221570529 ], [ -96.423567285370865, 30.059886221671068 ], [ -96.423642284911665, 30.059869221152006 ], [ -96.423743285290584, 30.059908221405635 ], [ -96.423863285475647, 30.059919221744472 ], [ -96.423901285211045, 30.05991322105794 ], [ -96.423927285484439, 30.059891221625652 ], [ -96.423952285290326, 30.059759221290655 ], [ -96.423946285106936, 30.059699221027767 ], [ -96.423901285726586, 30.05964422143774 ], [ -96.423895285043741, 30.059578221351973 ], [ -96.423914285726298, 30.059550221522418 ], [ -96.423952284998762, 30.059523221036169 ], [ -96.423990285594968, 30.059517221245432 ], [ -96.424217285191915, 30.059512221746115 ], [ -96.424255285828281, 30.059484221384299 ], [ -96.42433128563215, 30.059402221735283 ], [ -96.424363285279966, 30.059342221383361 ], [ -96.424407284913585, 30.059177221047765 ], [ -96.424350284986289, 30.059116221054737 ], [ -96.424255285219218, 30.059089221232348 ], [ -96.42419928487017, 30.059056221684159 ], [ -96.424135285231614, 30.058990221024381 ], [ -96.424129285321428, 30.058951221443497 ], [ -96.424135285379947, 30.058929221316571 ], [ -96.424230285298904, 30.058858221045607 ], [ -96.424331285512665, 30.058764220758938 ], [ -96.424382284907196, 30.058616221484684 ], [ -96.424432285087562, 30.058566221284551 ], [ -96.424515285617531, 30.0585612207114 ], [ -96.424666285611565, 30.058561220753571 ], [ -96.424767284955507, 30.058583221547817 ], [ -96.424932285957183, 30.058704221115427 ], [ -96.425014285589953, 30.058731221392986 ], [ -96.425109285107823, 30.058726221101811 ], [ -96.425153285750454, 30.058704221529936 ], [ -96.425184285446676, 30.058677221075403 ], [ -96.425197285620584, 30.058567221240537 ], [ -96.425147285972784, 30.058341221502122 ], [ -96.425071285413566, 30.05811622068196 ], [ -96.425020285516894, 30.058028220781061 ], [ -96.424850285889448, 30.057852221246105 ], [ -96.424780285438572, 30.057720220774765 ], [ -96.424774285689097, 30.057599220785082 ], [ -96.424787285587456, 30.05745122062509 ], [ -96.424768285162671, 30.057187220430521 ], [ -96.424755285807066, 30.057159221016533 ], [ -96.424755285687723, 30.057115220887535 ], [ -96.424711285357731, 30.057000220860637 ], [ -96.424711285806666, 30.056967220546479 ], [ -96.424761284942477, 30.056895220577935 ], [ -96.424761285263131, 30.056813221036762 ], [ -96.424730285320067, 30.056763220941804 ], [ -96.424648285179401, 30.056692221197597 ], [ -96.424622285219058, 30.056642220315435 ], [ -96.424622285713582, 30.056604220904578 ], [ -96.424692285222363, 30.05647822051197 ], [ -96.424774285725064, 30.056373220596786 ], [ -96.424844284863852, 30.056247221016129 ], [ -96.424888285285846, 30.056043220241442 ], [ -96.42487528572812, 30.055922220535535 ], [ -96.424894285619501, 30.055785220435638 ], [ -96.425135285598429, 30.055301220804964 ], [ -96.425160285077254, 30.055213220220399 ], [ -96.425135285645354, 30.055142220718093 ], [ -96.425071285339456, 30.055087220173327 ], [ -96.425052285272045, 30.055032220786568 ], [ -96.425059285273903, 30.054900219949463 ], [ -96.425071285522165, 30.054856220467709 ], [ -96.425122284826486, 30.05476322073212 ], [ -96.425103285662772, 30.054510220168545 ], [ -96.425090284936275, 30.054476220007931 ], [ -96.425077285407411, 30.054335220257489 ], [ -96.425063285802892, 30.054301219906257 ], [ -96.425037284885278, 30.054274220292385 ], [ -96.425023284865503, 30.054241220649558 ], [ -96.425022285208399, 30.05422322009165 ], [ -96.425011285218019, 30.054098220541718 ], [ -96.424996284836141, 30.054029219961713 ], [ -96.424944285285704, 30.053975219834978 ], [ -96.424920285454576, 30.053938220629746 ], [ -96.424895285437174, 30.053877220126022 ], [ -96.424901285679823, 30.053767220478644 ], [ -96.4248952853915, 30.053729219765877 ], [ -96.424831285461039, 30.053636220507379 ], [ -96.424724285428752, 30.053537220515196 ], [ -96.424692285527343, 30.053487220122555 ], [ -96.424661285619393, 30.053405220285921 ], [ -96.424642285483586, 30.053322220428534 ], [ -96.424591284791319, 30.053240219960834 ], [ -96.424484285350204, 30.053124220117571 ], [ -96.424478284663024, 30.052992220054701 ], [ -96.424516285403371, 30.052904219578377 ], [ -96.424525284906196, 30.052872220011597 ], [ -96.424507285077169, 30.052840220172929 ], [ -96.424506284845037, 30.052804220122475 ], [ -96.424514284968922, 30.052734219978024 ], [ -96.424515285371811, 30.052520219910168 ], [ -96.42450728489338, 30.052378220297324 ], [ -96.424490285231428, 30.052309220099104 ], [ -96.424487285158548, 30.052273219621519 ], [ -96.424466285361177, 30.052205220193652 ], [ -96.424451284591257, 30.052136219484542 ], [ -96.424389284843244, 30.051926219730525 ], [ -96.424358285076821, 30.051860219598066 ], [ -96.424453284980842, 30.051624219874611 ], [ -96.424478284601491, 30.051464219600344 ], [ -96.424453285048116, 30.051184219453177 ], [ -96.424503285180009, 30.051052219431849 ], [ -96.424535285099864, 30.051002219823825 ], [ -96.42454128510775, 30.050969219791909 ], [ -96.424510285065338, 30.050931220054721 ], [ -96.424478285098132, 30.050920219768962 ], [ -96.424453284518052, 30.050892219483835 ], [ -96.424421284773317, 30.050607219578342 ], [ -96.424377284912069, 30.050513219861688 ], [ -96.424371285483801, 30.050469219261338 ], [ -96.424289284587445, 30.050310219435939 ], [ -96.424131285341957, 30.049875219301004 ], [ -96.424099284670135, 30.049738219778742 ], [ -96.424087285268072, 30.049589219489846 ], [ -96.42406828477543, 30.049529218903039 ], [ -96.424004284948538, 30.049463219632234 ], [ -96.423967284771379, 30.049392218922542 ], [ -96.423922285213592, 30.049249219417952 ], [ -96.423865284345652, 30.0491172189097 ], [ -96.423853284918849, 30.048875218913455 ], [ -96.42377128514066, 30.048622219184132 ], [ -96.423638284629916, 30.048485219133223 ], [ -96.423379284851777, 30.048309218946191 ], [ -96.42318328472858, 30.048215219419838 ], [ -96.423088284396442, 30.048199219200054 ], [ -96.422918284721419, 30.048193219327807 ], [ -96.422804284297925, 30.048215218713882 ], [ -96.422741284886911, 30.0482152189937 ], [ -96.42259528435396, 30.0481162189919 ], [ -96.422090284446782, 30.047896218706658 ], [ -96.422040283780532, 30.047896218912982 ], [ -96.421995284099751, 30.047918219069953 ], [ -96.421970284678125, 30.047946219161009 ], [ -96.421976284731571, 30.048127219045995 ], [ -96.421970284189968, 30.048303218831151 ], [ -96.42195728450001, 30.048347218835861 ], [ -96.421926283841302, 30.048402219019767 ], [ -96.421856283983701, 30.048462219217779 ], [ -96.421780284168378, 30.04848421933454 ], [ -96.421667283855626, 30.048495219053976 ], [ -96.421622284407434, 30.048479219536112 ], [ -96.421395284141767, 30.048336218853787 ], [ -96.421332284589582, 30.048270219377041 ], [ -96.42128128431888, 30.048187219391153 ], [ -96.421161283674195, 30.047824219391174 ], [ -96.421142283623084, 30.04751121901138 ], [ -96.421155283510686, 30.047374219328347 ], [ -96.421237284194575, 30.047247218876478 ], [ -96.421332283905386, 30.046961218932566 ], [ -96.421326283990112, 30.046714218884969 ], [ -96.42128828411515, 30.046560219150319 ], [ -96.421231284012407, 30.046478218386692 ], [ -96.421214283879948, 30.046467219014108 ], [ -96.421193284444655, 30.046467218561649 ], [ -96.421149283881164, 30.046478218801486 ], [ -96.421060284296061, 30.046549218474826 ], [ -96.421003283723806, 30.046577218879492 ], [ -96.420921284328031, 30.046582219187847 ], [ -96.420726284300542, 30.046621218777886 ], [ -96.420593283802361, 30.046615218467384 ], [ -96.420536283394924, 30.046593218506324 ], [ -96.420447283439898, 30.046516218700472 ], [ -96.420296283588428, 30.046351218402851 ], [ -96.42020128324711, 30.046324218937134 ], [ -96.420144283198255, 30.046324218529062 ], [ -96.419993283659039, 30.046346219104581 ], [ -96.419923283887059, 30.046340219178379 ], [ -96.419866283948082, 30.046258218711326 ], [ -96.419860283489712, 30.046170219237755 ], [ -96.419765284058272, 30.045994218725163 ], [ -96.419639283827863, 30.045829218391187 ], [ -96.419595283101486, 30.045801218688062 ], [ -96.419544283588948, 30.045790218758693 ], [ -96.41936128307259, 30.045774219124226 ], [ -96.419197283498903, 30.045801219166293 ], [ -96.419146283766892, 30.04584521839989 ], [ -96.419095283654968, 30.045944218729186 ], [ -96.419045282988904, 30.045972219178175 ], [ -96.419007283463429, 30.045977218609252 ], [ -96.418950283015093, 30.045950218838591 ], [ -96.418868283015655, 30.045851219079992 ], [ -96.418798283210052, 30.045807218944503 ], [ -96.418641282946808, 30.045790218818684 ], [ -96.4185292832465, 30.045822218741861 ], [ -96.418527283120781, 30.045840218660974 ], [ -96.418506283233484, 30.045839218856312 ], [ -96.418413283141675, 30.045785218870932 ], [ -96.418280283228626, 30.045746218465048 ], [ -96.417958283137352, 30.04569721917775 ], [ -96.417712283309115, 30.045691218923334 ], [ -96.417566283305149, 30.045707219132666 ], [ -96.417516282982689, 30.045740219049669 ], [ -96.41741528306666, 30.045834219060058 ], [ -96.417295282688769, 30.045900218863512 ], [ -96.417181282569359, 30.045905219180518 ], [ -96.417092283276943, 30.045883219133003 ], [ -96.416909283368128, 30.045812218631571 ], [ -96.416638283206694, 30.045674218469941 ], [ -96.416075282608062, 30.045218218821287 ], [ -96.415816282953699, 30.045026218883976 ], [ -96.415797282280479, 30.044949218994759 ], [ -96.415804282168963, 30.044817218830588 ], [ -96.415791282092286, 30.044778218455107 ], [ -96.415747282328283, 30.044751219100331 ], [ -96.415639282555688, 30.044756218859625 ], [ -96.415532282818006, 30.04478921841358 ], [ -96.415437281983017, 30.044756218360629 ], [ -96.415349282366662, 30.044630218484802 ], [ -96.415210282009653, 30.044514218651901 ], [ -96.414989282780837, 30.044283218307221 ], [ -96.414761281894428, 30.044085218780975 ], [ -96.41468528189246, 30.043975218126707 ], [ -96.414351281934302, 30.043612218167951 ], [ -96.414319282384099, 30.043563218406614 ], [ -96.41431328172753, 30.043469218644653 ], [ -96.414376282120017, 30.043321218460999 ], [ -96.41441428199407, 30.043195218022106 ], [ -96.414534281704917, 30.042947218216412 ], [ -96.414559281728202, 30.042826218535918 ], [ -96.414559282405406, 30.042777218074434 ], [ -96.414541281898664, 30.042700218207855 ], [ -96.414376282138974, 30.04245321830328 ], [ -96.414250281723355, 30.042321218428466 ], [ -96.41413028160467, 30.04205721789122 ], [ -96.414117281783064, 30.041903218369601 ], [ -96.414067281738411, 30.041793218466321 ], [ -96.414004282020187, 30.041738217821944 ], [ -96.413858281584595, 30.041672218258093 ], [ -96.413751281979714, 30.041600218399765 ], [ -96.41370128174276, 30.041556217688882 ], [ -96.413675281541558, 30.041512217696539 ], [ -96.413663282043046, 30.041380218172037 ], [ -96.41368228193808, 30.04119421817223 ], [ -96.413675281800792, 30.041089218107828 ], [ -96.4136252813353, 30.0410012177719 ], [ -96.413505281773155, 30.040853218024882 ], [ -96.413315281188403, 30.040704218314634 ], [ -96.413082281819953, 30.04063821819426 ], [ -96.412930281617818, 30.040622217928316 ], [ -96.412835281757594, 30.040567217922209 ], [ -96.412797281374097, 30.040517217871415 ], [ -96.412778281907705, 30.04045721805479 ], [ -96.41278528153272, 30.040413217850254 ], [ -96.412829281314799, 30.040358218038904 ], [ -96.413000281117235, 30.040325218157516 ], [ -96.413113281793088, 30.040314217732679 ], [ -96.413170282133379, 30.040286217923292 ], [ -96.413328282131744, 30.040177217905814 ], [ -96.413448281569941, 30.040072217496149 ], [ -96.413518281374095, 30.039962217534899 ], [ -96.413543281518173, 30.039869217566249 ], [ -96.413537281515275, 30.039797217436412 ], [ -96.413423281933134, 30.039605217884368 ], [ -96.413278281973092, 30.039484217468235 ], [ -96.413136281615479, 30.039433217394897 ], [ -96.413019281593648, 30.03939021785736 ], [ -96.412968281792573, 30.039352217287668 ], [ -96.412734281413023, 30.039104217820736 ], [ -96.412267281518055, 30.03853821729378 ], [ -96.412002281314372, 30.038340217288965 ], [ -96.411768280827914, 30.038197217723454 ], [ -96.411585280817548, 30.038120217686288 ], [ -96.411143280852173, 30.038005217921715 ], [ -96.411079281525787, 30.037966217207973 ], [ -96.410991281056937, 30.037884217192815 ], [ -96.410770280758712, 30.037471217582251 ], [ -96.410618280771715, 30.037284217787533 ], [ -96.410454280696953, 30.037136217205518 ], [ -96.409684280343612, 30.036509216946865 ], [ -96.409380280540262, 30.036124217229066 ], [ -96.409317280253376, 30.036075216729831 ], [ -96.409128280554782, 30.035959216984988 ], [ -96.409065280574083, 30.035899217343832 ], [ -96.408995279961161, 30.035690217344001 ], [ -96.408976279971668, 30.035541216671849 ], [ -96.409002279960831, 30.035311216687461 ], [ -96.408995280072574, 30.035283217354934 ], [ -96.408913280102297, 30.035201216908124 ], [ -96.408781280583966, 30.035162216880021 ], [ -96.408635280007729, 30.035102217430229 ], [ -96.408490279785184, 30.03498621687573 ], [ -96.408433280572524, 30.034915217180128 ], [ -96.408389280216738, 30.034766217025211 ], [ -96.408383279875537, 30.034541217239052 ], [ -96.408389280384924, 30.034486216890016 ], [ -96.408377280094996, 30.034381217209312 ], [ -96.40835128021078, 30.034299217051107 ], [ -96.408244280437245, 30.034128216595736 ], [ -96.40796027976468, 30.033821216457955 ], [ -96.407669279740801, 30.033524217001471 ], [ -96.407423279823774, 30.033370217011321 ], [ -96.407183279966347, 30.033260216564393 ], [ -96.406501279512653, 30.032853216289034 ], [ -96.406418279410218, 30.032754216696809 ], [ -96.40639327913496, 30.032710216300668 ], [ -96.406292279558897, 30.032484216477808 ], [ -96.406204279511869, 30.032369216781706 ], [ -96.406166279908504, 30.032347216182735 ], [ -96.406122279040275, 30.032352216092224 ], [ -96.406084279799614, 30.032374216159841 ], [ -96.405970279627098, 30.032550216603187 ], [ -96.405850279455109, 30.032622216169543 ], [ -96.405743279156439, 30.032627216226157 ], [ -96.405717279560605, 30.032622216882331 ], [ -96.405667278890178, 30.032583216544669 ], [ -96.405648279881433, 30.032506216514083 ], [ -96.405673279216899, 30.031907216471271 ], [ -96.405654279087841, 30.031643216369901 ], [ -96.405623279446189, 30.031462216032402 ], [ -96.405509278847546, 30.031165216465112 ], [ -96.405446279128299, 30.030714215802721 ], [ -96.405434278914299, 30.030472216141984 ], [ -96.405510279522062, 30.030285216086309 ], [ -96.405630279376268, 30.030126216094668 ], [ -96.405724279519518, 30.030065216459391 ], [ -96.405788279443811, 30.030066216446485 ], [ -96.405876279108099, 30.030087216119483 ], [ -96.40594627949389, 30.030093216420635 ], [ -96.406002279247602, 30.030033215612441 ], [ -96.406015278854895, 30.029983215970461 ], [ -96.406015279145095, 30.029890216274023 ], [ -96.40599627890191, 30.029824216144217 ], [ -96.405889279491774, 30.029670215933042 ], [ -96.405788279781007, 30.029620215615768 ], [ -96.405706279506489, 30.029620216271471 ], [ -96.405586278853704, 30.029642215883861 ], [ -96.40553527893789, 30.029620215838282 ], [ -96.40548527918321, 30.029582216112587 ], [ -96.405169279636411, 30.02939521552123 ], [ -96.404859278828354, 30.029246216243092 ], [ -96.404676278932499, 30.029109216195454 ], [ -96.40462627931305, 30.029065216237839 ], [ -96.404556279262792, 30.02896621547918 ], [ -96.404543278804155, 30.028911215438029 ], [ -96.404537279396195, 30.028861216224549 ], [ -96.404550279293758, 30.028773215842076 ], [ -96.404531278544198, 30.028713216246469 ], [ -96.404449279115312, 30.028641215556956 ], [ -96.404407279341896, 30.028634215837251 ], [ -96.404386278729206, 30.028630216042018 ], [ -96.404215279337393, 30.028669215514952 ], [ -96.403912278647582, 30.028658215989346 ], [ -96.403741278856998, 30.028608216205711 ], [ -96.403564278267552, 30.028597215556534 ], [ -96.403495279059442, 30.028625215918165 ], [ -96.403185278166731, 30.028839216035397 ], [ -96.403027278316046, 30.02897121594777 ], [ -96.402869278824042, 30.029180216338936 ], [ -96.402768278375248, 30.029279215838795 ], [ -96.402673278453307, 30.029405215730826 ], [ -96.402364278093017, 30.02955321638165 ], [ -96.402180278328515, 30.029614216396247 ], [ -96.402111278619032, 30.029625216185032 ], [ -96.401934278483196, 30.029630216170936 ], [ -96.401896278101688, 30.029625215958724 ], [ -96.401871278431216, 30.029581216435172 ], [ -96.401871278724428, 30.029526215712245 ], [ -96.401991278306909, 30.029383216152983 ], [ -96.401997278575621, 30.02932221602121 ], [ -96.401991278625559, 30.029278215664466 ], [ -96.40194727814287, 30.029223216105187 ], [ -96.40189027794662, 30.029196215890323 ], [ -96.401827278655546, 30.029196216069739 ], [ -96.401745278689233, 30.029212216146803 ], [ -96.401637278737041, 30.029278215841508 ], [ -96.401524278230923, 30.029366216147757 ], [ -96.401353278658078, 30.029427216456281 ], [ -96.401321278623271, 30.029454215773089 ], [ -96.401302278323072, 30.029509216347925 ], [ -96.401227278332073, 30.029558216023009 ], [ -96.401157278456935, 30.029668216434551 ], [ -96.401043278625863, 30.029789215862458 ], [ -96.400898277836149, 30.02987721578965 ], [ -96.400753277711914, 30.029932216579706 ], [ -96.400443277503811, 30.029998216260264 ], [ -96.40015927748442, 30.030113216459235 ], [ -96.400102277955995, 30.030124216377697 ], [ -96.39873127746543, 30.030096216607358 ], [ -96.398617277443847, 30.030096216158917 ], [ -96.398497277264028, 30.030030216042789 ], [ -96.398447277793807, 30.029992216370307 ], [ -96.398434277901657, 30.029953216650423 ], [ -96.398447277526145, 30.029849215840606 ], [ -96.398428276970151, 30.029783216343674 ], [ -96.39839627765005, 30.02973921599509 ], [ -96.398339276958424, 30.029706216159152 ], [ -96.398175276853763, 30.029717216436286 ], [ -96.397897277180448, 30.029799216263864 ], [ -96.397821277054675, 30.029805216303082 ], [ -96.397758277631766, 30.029794216411887 ], [ -96.397663277579639, 30.029761215882818 ], [ -96.397543277649561, 30.029678215917052 ], [ -96.397455277107198, 30.02963421636041 ], [ -96.397322276770296, 30.029640216707378 ], [ -96.397284276936333, 30.029651216144817 ], [ -96.397259276813756, 30.029684216440632 ], [ -96.397234276653009, 30.029816216497849 ], [ -96.397196277015354, 30.029909216703764 ], [ -96.397114277336826, 30.029975216487259 ], [ -96.397006276682703, 30.030002216287969 ], [ -96.396861277141241, 30.030008216576302 ], [ -96.396634277111986, 30.029975216516021 ], [ -96.396450277383209, 30.029914216420327 ], [ -96.396330277242555, 30.029865216019473 ], [ -96.396255276990658, 30.029804215909579 ], [ -96.39623627695299, 30.029760216036536 ], [ -96.396236277182226, 30.029634216228633 ], [ -96.396255276804169, 30.0295072165382 ], [ -96.396242276352822, 30.029167216025662 ], [ -96.396230276862468, 30.029084216580863 ], [ -96.396192276656663, 30.029007215869754 ], [ -96.396078276477112, 30.028941216070141 ], [ -96.395939277061331, 30.028886216290243 ], [ -96.39583227669246, 30.028831216540627 ], [ -96.395611276875201, 30.02864421571104 ], [ -96.395459276848001, 30.028545216190672 ], [ -96.395339276329892, 30.028479215843248 ], [ -96.395232276192914, 30.028397216458092 ], [ -96.395194276426338, 30.028347216379863 ], [ -96.395055276817132, 30.028105215901505 ], [ -96.395011276397994, 30.028050215771714 ], [ -96.394967276740957, 30.028039216485944 ], [ -96.394897276067084, 30.028039215741256 ], [ -96.394847276413913, 30.028061216464085 ], [ -96.394783275972159, 30.02806121647885 ], [ -96.394733276288463, 30.02802821632601 ], [ -96.394550276563663, 30.027726215850262 ], [ -96.394525276073466, 30.027577215939626 ], [ -96.394550275935103, 30.027347216148176 ], [ -96.394550276597585, 30.027154215520294 ], [ -96.39456927666771, 30.027033215843613 ], [ -96.39459427683822, 30.026967216040823 ], [ -96.394626276095096, 30.02691821557784 ], [ -96.394752276107539, 30.026808215797036 ], [ -96.394771275864173, 30.026758216103005 ], [ -96.394803276561362, 30.026643215675929 ], [ -96.394828276165839, 30.02648921587771 ], [ -96.394809275948646, 30.026231215779532 ], [ -96.394848276065829, 30.026022215799774 ], [ -96.394904276094863, 30.025901215953322 ], [ -96.395081276856089, 30.025753215497208 ], [ -96.395132276829131, 30.025676215159393 ], [ -96.395163276548303, 30.025604215209547 ], [ -96.395183276543307, 30.025522215732664 ], [ -96.395214276179487, 30.025450215767048 ], [ -96.395258276016918, 30.025395215936094 ], [ -96.395581276617506, 30.025132215795523 ], [ -96.395619276656276, 30.025082215145794 ], [ -96.395676276370622, 30.024956215309011 ], [ -96.395682276507756, 30.024774215323244 ], [ -96.395644276737229, 30.024774215190895 ], [ -96.395252276608673, 30.024659215174978 ], [ -96.395025276005953, 30.024554215776323 ], [ -96.394892276534122, 30.024488215507986 ], [ -96.394633275995986, 30.024279214886413 ], [ -96.394608276586851, 30.024235215650208 ], [ -96.394602276647461, 30.024125215705528 ], [ -96.394691275903256, 30.023971215002124 ], [ -96.394697275784964, 30.023922214829454 ], [ -96.394665275879433, 30.023872215305921 ], [ -96.394577276451187, 30.023812215390297 ], [ -96.394501275889922, 30.023735215332707 ], [ -96.39445727623476, 30.023669214902618 ], [ -96.394438275801633, 30.023608215610128 ], [ -96.394432276304215, 30.023515215562782 ], [ -96.3943942759159, 30.023394214998646 ], [ -96.394337276374728, 30.023356215037936 ], [ -96.394293276253777, 30.02335021554773 ], [ -96.394267276505644, 30.023355214984171 ], [ -96.39423027561655, 30.023410214891022 ], [ -96.39422327600785, 30.023443215431211 ], [ -96.394242276386592, 30.023652214909607 ], [ -96.394229276212684, 30.02368021540849 ], [ -96.394204276383121, 30.023696215278793 ], [ -96.394147275589944, 30.023707215322844 ], [ -96.394084276310096, 30.023713215337306 ], [ -96.394021276363688, 30.023707215468111 ], [ -96.393964275910875, 30.023696215431389 ], [ -96.393907275520007, 30.023652215355234 ], [ -96.393869275882494, 30.023608215595427 ], [ -96.393895276362514, 30.023333215276431 ], [ -96.393889275903064, 30.023295215202097 ], [ -96.393832275769199, 30.023251215087747 ], [ -96.393750275487392, 30.023245214744065 ], [ -96.393693275486228, 30.023278215525949 ], [ -96.39367427575506, 30.023311215199595 ], [ -96.393661275837331, 30.023427214807963 ], [ -96.393503275625221, 30.023669215647637 ], [ -96.393433275955431, 30.023740215126274 ], [ -96.393364275562348, 30.023773214899965 ], [ -96.393282275387179, 30.023789215196448 ], [ -96.393238275451466, 30.023784215204291 ], [ -96.393143275671335, 30.023729214872645 ], [ -96.393124276320918, 30.023652215309337 ], [ -96.393143275708155, 30.023454215593578 ], [ -96.393137276313055, 30.023405215494595 ], [ -96.393118276257994, 30.023339215012474 ], [ -96.393055275392697, 30.0232782155256 ], [ -96.392916275802492, 30.023113214933968 ], [ -96.392872275525846, 30.023075214778618 ], [ -96.392802276102103, 30.02296521550517 ], [ -96.392790276153306, 30.022855215380517 ], [ -96.392859275917544, 30.022811214973455 ], [ -96.392954276147677, 30.022717215487383 ], [ -96.39299827581732, 30.022651215424219 ], [ -96.392986275554506, 30.022602215284511 ], [ -96.392992275619264, 30.022558215240192 ], [ -96.392859275518362, 30.02238821533129 ], [ -96.392853276150376, 30.022311215246575 ], [ -96.392891275782574, 30.022245215202613 ], [ -96.392935276184474, 30.022223215219192 ], [ -96.393188275876227, 30.022179214634058 ], [ -96.393415275690288, 30.022052214545759 ], [ -96.393453276154531, 30.021997215277185 ], [ -96.393561275383831, 30.021899214596544 ], [ -96.393649276124407, 30.021800215017723 ], [ -96.393674276142022, 30.02173921445733 ], [ -96.393687276143922, 30.021624214620214 ], [ -96.393574275826666, 30.021145214987431 ], [ -96.393561275639087, 30.021035214419314 ], [ -96.393612275324557, 30.02070021496003 ], [ -96.393656276030413, 30.020568214570144 ], [ -96.39372627543581, 30.020497214934274 ], [ -96.39403527571659, 30.020365214202084 ], [ -96.39408627636557, 30.020316214126048 ], [ -96.394111276202764, 30.020184214160313 ], [ -96.394004275990667, 30.019975214119857 ], [ -96.393764275902541, 30.019645214024866 ], [ -96.393713275347196, 30.01955721453718 ], [ -96.393701275826587, 30.019507214582653 ], [ -96.393701275985777, 30.019364214291716 ], [ -96.393783275726975, 30.019112214097323 ], [ -96.393815275871603, 30.018903214378714 ], [ -96.393796275497778, 30.018848213896096 ], [ -96.393695275637185, 30.018738214578047 ], [ -96.393644275318607, 30.018639214101807 ], [ -96.393600275591055, 30.018430213772366 ], [ -96.393537275813841, 30.018320214167566 ], [ -96.393474275944612, 30.018226213744761 ], [ -96.393101275309178, 30.0180782141686 ], [ -96.393044275541143, 30.018045214513009 ], [ -96.392893275082656, 30.017913214415582 ], [ -96.3927412759178, 30.017731213645455 ], [ -96.392640274903542, 30.017627214262077 ], [ -96.392615275456308, 30.017578214403724 ], [ -96.392615275735608, 30.017534214279838 ], [ -96.392640275785581, 30.017440213728868 ], [ -96.392697274931152, 30.017314213906168 ], [ -96.3927352757932, 30.017165213675028 ], [ -96.392679275114091, 30.017011213902794 ], [ -96.392653275112963, 30.016879214294619 ], [ -96.392603275480539, 30.016753213618546 ], [ -96.392559274937966, 30.016670214132514 ], [ -96.392350274937883, 30.016429213412565 ], [ -96.392256275684034, 30.016363213497655 ], [ -96.392193275189953, 30.016357213556969 ], [ -96.392167275029152, 30.01636221346147 ], [ -96.392136275432321, 30.016390213700117 ], [ -96.392129275439729, 30.016626214081654 ], [ -96.392142275382312, 30.016665213777728 ], [ -96.392116274915963, 30.016736213888006 ], [ -96.392091274928163, 30.016775214190432 ], [ -96.391965274706592, 30.016852214283464 ], [ -96.391820274742315, 30.016879213541991 ], [ -96.391756274971044, 30.016868213759778 ], [ -96.391624275205331, 30.016818214040175 ], [ -96.391586275563824, 30.016769214260954 ], [ -96.391567274872145, 30.016736213459311 ], [ -96.39150427519273, 30.016522214131552 ], [ -96.391555275120652, 30.016208214163662 ], [ -96.39169427498733, 30.015922213366593 ], [ -96.391719275439755, 30.015835213613872 ], [ -96.391719275528658, 30.01572521410559 ], [ -96.39166927524164, 30.015516213649352 ], [ -96.391599275234654, 30.015378213284901 ], [ -96.391454275375665, 30.015219213931019 ], [ -96.391277275027349, 30.015092213330714 ], [ -96.391195275364652, 30.015054213703678 ], [ -96.391044275058164, 30.015059213713943 ], [ -96.390987274605266, 30.015081213319235 ], [ -96.390936274655161, 30.01511421395961 ], [ -96.390904274887774, 30.015169213647923 ], [ -96.39086727513633, 30.015290213963603 ], [ -96.390816274667458, 30.015373213768129 ], [ -96.390639274773903, 30.015449213249511 ], [ -96.390588274586193, 30.015460213665001 ], [ -96.390399274858524, 30.015460213933252 ], [ -96.390349274338064, 30.015449213731006 ], [ -96.390285274690655, 30.015416214035575 ], [ -96.390254274552774, 30.015323213338835 ], [ -96.390241274649625, 30.01495521366115 ], [ -96.39027927496079, 30.014768213686331 ], [ -96.39033027423713, 30.014669213889245 ], [ -96.390374274575763, 30.014608213743227 ], [ -96.390444274577121, 30.014564213205922 ], [ -96.390519275015876, 30.01453721318607 ], [ -96.390804274359112, 30.014476213445654 ], [ -96.390943274469834, 30.014433213265836 ], [ -96.391006275025219, 30.014378213637386 ], [ -96.391044275314371, 30.014284213030361 ], [ -96.391044275213346, 30.014240213736162 ], [ -96.391025274519762, 30.014048212924177 ], [ -96.391006274425564, 30.013982213664612 ], [ -96.390974275324893, 30.013943213053071 ], [ -96.390779274958973, 30.013789212976988 ], [ -96.390532274634495, 30.013740212877362 ], [ -96.390387274663212, 30.013734213092015 ], [ -96.390065274381044, 30.013756213193847 ], [ -96.389932275011532, 30.013745213105793 ], [ -96.389844274269691, 30.013718213392213 ], [ -96.389762274936601, 30.013679213005787 ], [ -96.389490273916536, 30.013657213685075 ], [ -96.389327274325325, 30.013595213043757 ], [ -96.389288274075753, 30.013580212929668 ], [ -96.389042274328176, 30.013464213086614 ], [ -96.389010274092186, 30.013437213662392 ], [ -96.388985274247247, 30.013376213095846 ], [ -96.388973274501254, 30.013145213328489 ], [ -96.388827274411142, 30.012948212807085 ], [ -96.388758273777043, 30.012887213416395 ], [ -96.388701274132487, 30.012854213580503 ], [ -96.388613273715364, 30.012832213146226 ], [ -96.388253273794845, 30.012667212842135 ], [ -96.387962274400493, 30.01249621298907 ], [ -96.387887273655508, 30.012441212837885 ], [ -96.387855274372725, 30.012403213072432 ], [ -96.387849273680445, 30.012365213420477 ], [ -96.387861274146132, 30.012331212980662 ], [ -96.387925274013526, 30.012249213184582 ], [ -96.387956273986489, 30.012178213473678 ], [ -96.387963273720217, 30.012112212913589 ], [ -96.387944273674407, 30.012090213385854 ], [ -96.38788727378865, 30.011947213437335 ], [ -96.387729274398822, 30.011831212724577 ], [ -96.387647274024289, 30.011787212648585 ], [ -96.387489274079186, 30.011754212945664 ], [ -96.387287273884624, 30.011776213228536 ], [ -96.387211273351497, 30.011771213299927 ], [ -96.387066273347131, 30.011715213255222 ], [ -96.387009274079176, 30.01166621339415 ], [ -96.386940273645124, 30.01147921304932 ], [ -96.386959273870744, 30.011325212540836 ], [ -96.387003273993372, 30.011193212882151 ], [ -96.387003273589656, 30.01114921259704 ], [ -96.386971274006797, 30.011111212583288 ], [ -96.386933273876267, 30.011089213351827 ], [ -96.386820273958151, 30.011056212699891 ], [ -96.386630273370798, 30.010957212672128 ], [ -96.386561273772301, 30.010885212909198 ], [ -96.386517273701358, 30.01078621275267 ], [ -96.386479273058441, 30.010588213120609 ], [ -96.386485273852841, 30.010374212839139 ], [ -96.386517273569936, 30.010220212523176 ], [ -96.38656127373109, 30.010105212989036 ], [ -96.386625273773731, 30.009995212746567 ], [ -96.386941273374489, 30.009753212967709 ], [ -96.386991273496918, 30.009682212970482 ], [ -96.386997273520592, 30.009588212692357 ], [ -96.38696627359306, 30.009396212975705 ], [ -96.386928273809914, 30.009275212130689 ], [ -96.38689727318156, 30.009126212826349 ], [ -96.386897273249033, 30.008714212516757 ], [ -96.386859273073327, 30.008505212773887 ], [ -96.38677127328495, 30.008302212327312 ], [ -96.386600273874919, 30.008049212316191 ], [ -96.386626273748902, 30.007900212585991 ], [ -96.386714273095421, 30.007560212424423 ], [ -96.386759273313345, 30.007329212433802 ], [ -96.386809273583921, 30.007263212587144 ], [ -96.386910273149809, 30.007219212194663 ], [ -96.38698627337827, 30.0072242123621 ], [ -96.387043273708329, 30.00724121196971 ], [ -96.387112273450981, 30.007356212116161 ], [ -96.387251273406349, 30.007697212553168 ], [ -96.387301273538228, 30.007769212580595 ], [ -96.387346274107983, 30.007774212486819 ], [ -96.387478273962586, 30.007763211958672 ], [ -96.387567274154208, 30.00773021244607 ], [ -96.387586273448477, 30.007703212520926 ], [ -96.387605273671781, 30.007626212320968 ], [ -96.387580274000683, 30.007230212327517 ], [ -96.38753627396764, 30.006818211677935 ], [ -96.387567273913959, 30.006620211939705 ], [ -96.387612273298757, 30.006581212303949 ], [ -96.387864273342871, 30.006422211713868 ], [ -96.38795927352156, 30.006345211854462 ], [ -96.387978274034396, 30.006312211926243 ], [ -96.387984273908387, 30.006230212342551 ], [ -96.387959273221867, 30.00613621200667 ], [ -96.387820274135223, 30.005828211497423 ], [ -96.387814273796081, 30.005757211487396 ], [ -96.387890274092683, 30.005603211604093 ], [ -96.387941273716208, 30.005449211991728 ], [ -96.387972273935432, 30.005383211370553 ], [ -96.387979273254871, 30.005240211822763 ], [ -96.387941273187323, 30.005141211254671 ], [ -96.387903273733954, 30.005081211827296 ], [ -96.387751273506311, 30.004965211783496 ], [ -96.387297273743926, 30.004784211761461 ], [ -96.387240273261256, 30.004740211904988 ], [ -96.387057273880643, 30.004547211203409 ], [ -96.386943273271527, 30.004382211482323 ], [ -96.386899273184994, 30.004256211756687 ], [ -96.386868273690382, 30.004003211166662 ], [ -96.386817273322364, 30.003838211225919 ], [ -96.386805273304802, 30.003756211616249 ], [ -96.38677927307748, 30.003706211752046 ], [ -96.386628273585472, 30.003530211106995 ], [ -96.386558272903656, 30.003426210976198 ], [ -96.386552272738371, 30.003261210953124 ], [ -96.386571272723145, 30.003222211206388 ], [ -96.386634272726482, 30.003162211552851 ], [ -96.386957273341508, 30.003052210900396 ], [ -96.387108273262811, 30.002986211708073 ], [ -96.387133272871097, 30.002964211333897 ], [ -96.387140273728562, 30.002882211296303 ], [ -96.387134273153961, 30.002799211217255 ], [ -96.387083273207267, 30.002673211593301 ], [ -96.387045273318691, 30.002618211060831 ], [ -96.386982272884694, 30.002568210772697 ], [ -96.386603273503496, 30.00240321144063 ], [ -96.386426273403259, 30.002337211044441 ], [ -96.38618627336362, 30.002106211252769 ], [ -96.386123272849318, 30.002057211284892 ], [ -96.385612273334829, 30.001914210949469 ], [ -96.384942272486484, 30.001743211409313 ], [ -96.384507273034785, 30.0016332110742 ], [ -96.384071272113303, 30.001567211015438 ], [ -96.383869272441459, 30.001506211412519 ], [ -96.383831272905752, 30.001462210929336 ], [ -96.38364227248816, 30.001308211299701 ], [ -96.38345927255331, 30.001209210620058 ], [ -96.382581271611073, 30.000956211210394 ], [ -96.382366272500718, 30.000835210665887 ], [ -96.382240272448115, 30.00074721087185 ], [ -96.382114272286174, 30.000631210725039 ], [ -96.382038271474244, 30.000576210819183 ], [ -96.381861272021339, 30.000472210975619 ], [ -96.381703271501834, 30.000406210798062 ], [ -96.381568271407275, 30.000334211157025 ], [ -96.381558272012853, 30.000329211038714 ], [ -96.381470272193127, 30.000246211312277 ], [ -96.381413271271938, 30.000037210550129 ], [ -96.381350272164966, 30.000048210834162 ], [ -96.38111627170214, 30.000032210700525 ], [ -96.380971271812925, 30.000037211290319 ], [ -96.380933271710518, 30.00008121092408 ], [ -96.380939271286209, 30.00014221119168 ], [ -96.381167272149469, 30.000378210860799 ], [ -96.381185272221472, 30.000444210558996 ], [ -96.381179271494048, 30.000560211210132 ], [ -96.381154272097319, 30.000609210897004 ], [ -96.381097271188423, 30.000675211299431 ], [ -96.380939271292164, 30.000796211426987 ], [ -96.38081927155271, 30.000845210654095 ], [ -96.380547272051231, 30.000840211513513 ], [ -96.380175271694384, 30.000751211097292 ], [ -96.379840271566295, 30.000685211269179 ], [ -96.379707271094645, 30.000636210945849 ], [ -96.37958827144783, 30.000559210819414 ], [ -96.379562271386007, 30.000515211212086 ], [ -96.379550271397719, 30.000421210762287 ], [ -96.379556271812874, 30.00038321087532 ], [ -96.379575270851433, 30.000350211102951 ], [ -96.379590271473461, 30.000343210586955 ], [ -96.37963827172689, 30.00032321141228 ], [ -96.379714271047675, 30.000306211028327 ], [ -96.380023271864417, 30.000317210673014 ], [ -96.380112271084883, 30.000295210783833 ], [ -96.380156271221978, 30.000268211188583 ], [ -96.380207270983803, 30.000180211197936 ], [ -96.380232271912149, 30.000004211220325 ], [ -96.380194271489771, 29.999920211213091 ], [ -96.380119271350978, 29.999875211021887 ], [ -96.380005271733879, 29.99987021113985 ], [ -96.379752270860493, 29.999881211145819 ], [ -96.379247271433741, 29.999952210994554 ], [ -96.379089271601714, 29.99991921079312 ], [ -96.379014271142708, 29.999776211349236 ], [ -96.379045270673657, 29.999644210873377 ], [ -96.37902027067058, 29.999545211040729 ], [ -96.379001271188756, 29.999507210706355 ], [ -96.378963271098556, 29.999474210685722 ], [ -96.378906270625492, 29.999441210824958 ], [ -96.378767271310053, 29.999397210822227 ], [ -96.378546270594413, 29.999479211207881 ], [ -96.378357271197217, 29.999512210610359 ], [ -96.378218271046464, 29.999462210933267 ], [ -96.378243270711508, 29.999264210924032 ], [ -96.378224270747808, 29.999149210419318 ], [ -96.37824427076211, 29.998968210402293 ], [ -96.377953270899241, 29.998665210561896 ], [ -96.377802270458631, 29.998264210739833 ], [ -96.377663270959744, 29.998104210846464 ], [ -96.377303270118603, 29.997901210877128 ], [ -96.377101271009892, 29.997846210732074 ], [ -96.377025270383555, 29.997873210795941 ], [ -96.376830270068581, 29.998087210586206 ], [ -96.37667827034025, 29.998076210298088 ], [ -96.376621270216617, 29.997977210377332 ], [ -96.376501270502885, 29.997675210954782 ], [ -96.376375269966516, 29.997587210791973 ], [ -96.376047270614265, 29.997548210207029 ], [ -96.375775270307557, 29.997564210675289 ], [ -96.37561126981845, 29.997526210716032 ], [ -96.375459270433694, 29.997542210379734 ], [ -96.375289270599353, 29.997592210402672 ], [ -96.375200270004385, 29.997658210361344 ], [ -96.375181270386562, 29.997718210898153 ], [ -96.375257270009172, 29.997872210731149 ], [ -96.375251270336278, 29.997927210646324 ], [ -96.375213269646252, 29.998004210958626 ], [ -96.375150269734689, 29.998053210706427 ], [ -96.375004270150683, 29.998086210834192 ], [ -96.374866270519362, 29.99805821029128 ], [ -96.374816269754433, 29.998064210497699 ], [ -96.374740270431175, 29.998058210673051 ], [ -96.374645269983176, 29.998086210643645 ], [ -96.374607269476925, 29.998135210503353 ], [ -96.374595269694765, 29.998399210505642 ], [ -96.37453226983321, 29.998470211161468 ], [ -96.374488270097245, 29.998498210607941 ], [ -96.374431270392577, 29.998498211054521 ], [ -96.374386270314744, 29.998476211092825 ], [ -96.374361269610858, 29.998443211119959 ], [ -96.374311269599147, 29.998190210499931 ], [ -96.374279269616906, 29.998102211033931 ], [ -96.374209269407743, 29.998014210573643 ], [ -96.374134269362742, 29.997954210997957 ], [ -96.374045270287169, 29.997910210555457 ], [ -96.373843269905862, 29.997866211017055 ], [ -96.373761269855436, 29.997866210637348 ], [ -96.373679269884562, 29.997894210507496 ], [ -96.373628269191258, 29.997932211174533 ], [ -96.373256269443388, 29.998361210702949 ], [ -96.373003269678136, 29.998608211162637 ], [ -96.372846269287407, 29.998724210554599 ], [ -96.372700269070165, 29.998768211047182 ], [ -96.372612269803184, 29.998779211014369 ], [ -96.372366268922633, 29.998774210960317 ], [ -96.372132269161767, 29.998631210603797 ], [ -96.372044269773511, 29.998598210498535 ], [ -96.371721269722116, 29.998548211316624 ], [ -96.371627269440225, 29.998565210542463 ], [ -96.371532269638976, 29.998626210603707 ], [ -96.371507269611186, 29.998658211154318 ], [ -96.371431268993419, 29.998686210644088 ], [ -96.371387269365329, 29.998692210596207 ], [ -96.371311268692551, 29.998686210616967 ], [ -96.371140268632857, 29.998703210687921 ], [ -96.370919269048386, 29.998736211439216 ], [ -96.370831268822712, 29.99877421067966 ], [ -96.370787269254706, 29.998818211044661 ], [ -96.370667269443686, 29.99902221138187 ], [ -96.370604269126446, 29.999088210984116 ], [ -96.370522268704178, 29.999121210898441 ], [ -96.370446268530472, 29.999137210748554 ], [ -96.370332269371801, 29.999137210914196 ], [ -96.370162268824245, 29.999115210816417 ], [ -96.369979268603245, 29.999066210924241 ], [ -96.369896269244364, 29.99902721074081 ], [ -96.369770268245446, 29.998923211251864 ], [ -96.369726269000466, 29.998868210802616 ], [ -96.369701268471246, 29.998819211441567 ], [ -96.369675268768731, 29.998731210995725 ], [ -96.369606268211797, 29.998236211065954 ], [ -96.369593268848249, 29.998197210535224 ], [ -96.369542268338193, 29.998148210985601 ], [ -96.36942926856085, 29.998104211254496 ], [ -96.3693282682991, 29.99809321135438 ], [ -96.369246268419502, 29.998099210937497 ], [ -96.369176268866681, 29.998137210578843 ], [ -96.369088269069962, 29.99821421097931 ], [ -96.369037268390571, 29.998280211158178 ], [ -96.368987268738351, 29.998401210954384 ], [ -96.368968268206615, 29.998473210660627 ], [ -96.368917268090399, 29.998566211269999 ], [ -96.368854268545647, 29.998610210683157 ], [ -96.368785268254172, 29.998638211340594 ], [ -96.3686212684879, 29.99864921086229 ], [ -96.368368268541218, 29.998638210762319 ], [ -96.368292268709624, 29.998643211050101 ], [ -96.36817926864488, 29.998698210789996 ], [ -96.368096268020423, 29.998709210984277 ], [ -96.367806268125335, 29.998649211480537 ], [ -96.367547268159484, 29.998610211062807 ], [ -96.367440267755384, 29.998556211404388 ], [ -96.367370268037831, 29.998531211412985 ], [ -96.36721226849852, 29.998473210778702 ], [ -96.367124267888016, 29.998424210684618 ], [ -96.367080268210231, 29.998391211446084 ], [ -96.367010267954498, 29.998308210890595 ], [ -96.366947267995641, 29.998121211425616 ], [ -96.366915268451834, 29.998061211322625 ], [ -96.366770268416801, 29.997891210924625 ], [ -96.36666926769135, 29.997814210727196 ], [ -96.366599268308875, 29.997781210610754 ], [ -96.366536267851558, 29.99777021082452 ], [ -96.366435267619863, 29.997770210706395 ], [ -96.366347267845185, 29.997792211237908 ], [ -96.365867267398073, 29.998045211409799 ], [ -96.365785267664634, 29.99806121100606 ], [ -96.365715267324006, 29.998056210750477 ], [ -96.365551267566559, 29.998023211266034 ], [ -96.365330267534148, 29.997930210765897 ], [ -96.36522326771653, 29.997869211247817 ], [ -96.365153268035797, 29.997847211434372 ], [ -96.365096267913685, 29.997858210780315 ], [ -96.365065267379222, 29.997886211292112 ], [ -96.365014267730615, 29.998001210847271 ], [ -96.36499526769235, 29.998150211233273 ], [ -96.364951267552129, 29.998254210720134 ], [ -96.364882267609204, 29.998326210967758 ], [ -96.364800267924949, 29.998359211047184 ], [ -96.364724267952695, 29.998359210960935 ], [ -96.36465426761356, 29.998320210707245 ], [ -96.364604267605188, 29.99826521081004 ], [ -96.364585267393622, 29.998183211235681 ], [ -96.364578267714634, 29.997946211155142 ], [ -96.364622267877024, 29.997627211258127 ], [ -96.364610267379092, 29.997529210588283 ], [ -96.364502267137169, 29.99739121130812 ], [ -96.364477267123078, 29.997243211167572 ], [ -96.364420267785206, 29.997188211014699 ], [ -96.364325267666942, 29.997144210821549 ], [ -96.364193267081291, 29.997105211172357 ], [ -96.364029267639779, 29.997039211071264 ], [ -96.363972266698454, 29.996990210698456 ], [ -96.363902267125781, 29.99686921045172 ], [ -96.36383326754968, 29.996715211211587 ], [ -96.363599266826753, 29.996457210766589 ], [ -96.363555267046067, 29.996424211212016 ], [ -96.363504266838135, 29.996424211042829 ], [ -96.363340267140288, 29.996463210754623 ], [ -96.363207266822286, 29.996468211041783 ], [ -96.363144267270954, 29.996435211104863 ], [ -96.363100267383146, 29.996375210877876 ], [ -96.363087267380337, 29.996314211075038 ], [ -96.363113267230815, 29.996221210891331 ], [ -96.363113266596045, 29.996160210874361 ], [ -96.363030266875995, 29.996006210667701 ], [ -96.362955267389893, 29.995935210799331 ], [ -96.362872266905029, 29.995891210456968 ], [ -96.36265126658023, 29.995803210914282 ], [ -96.362373266302157, 29.995715210805535 ], [ -96.362253267090466, 29.995644210407516 ], [ -96.362140266862568, 29.995600210698907 ], [ -96.362020266882212, 29.995567210783673 ], [ -96.361919266659569, 29.995572211002997 ], [ -96.361862266353612, 29.995594210952145 ], [ -96.361837267048401, 29.995655210936167 ], [ -96.361837266944875, 29.995704210929063 ], [ -96.361805266642321, 29.995787210944819 ], [ -96.361723266784892, 29.995864210784955 ], [ -96.361647266483544, 29.99588021106775 ], [ -96.3615462660498, 29.995864210495245 ], [ -96.361445266837592, 29.995820210388047 ], [ -96.361193266088449, 29.995732210439019 ], [ -96.361060265902623, 29.995699210575786 ], [ -96.360965266018198, 29.995699210476914 ], [ -96.360908266870069, 29.995683211132498 ], [ -96.360706266461946, 29.995584210534748 ], [ -96.360605266041773, 29.995523210452074 ], [ -96.360314266613443, 29.995205210932522 ], [ -96.360112266255584, 29.995073210633837 ], [ -96.359809265562447, 29.994902210583106 ], [ -96.359670265930731, 29.994803210264656 ], [ -96.359544266395261, 29.994677210294807 ], [ -96.359399266089142, 29.994490210205452 ], [ -96.359304266275473, 29.99425921026296 ], [ -96.359272265939012, 29.994056210113541 ], [ -96.359171265826248, 29.993627210364043 ], [ -96.359127265378191, 29.993528210786284 ], [ -96.359070265528445, 29.99344621032434 ], [ -96.358975266074324, 29.993363210081338 ], [ -96.358779265431991, 29.993287209983233 ], [ -96.358546266006755, 29.993265210540322 ], [ -96.358451265202788, 29.993237209979785 ], [ -96.358388265162105, 29.993199210230319 ], [ -96.358343265948974, 29.993138210446268 ], [ -96.358350265182892, 29.992951210219125 ], [ -96.358369265252321, 29.992814210383909 ], [ -96.358362265201151, 29.992710210609641 ], [ -96.35829926531045, 29.992622209969714 ], [ -96.358230265858751, 29.992600209835427 ], [ -96.35817926542407, 29.992600210309977 ], [ -96.358091265712318, 29.992633210137537 ], [ -96.35799626588782, 29.992754210114647 ], [ -96.357901265287637, 29.992990210398109 ], [ -96.357863265055826, 29.993056210477942 ], [ -96.35781926561927, 29.993094210330742 ], [ -96.35775626496951, 29.993127210746273 ], [ -96.357680265443122, 29.993133210245194 ], [ -96.357592265709329, 29.993128210776955 ], [ -96.357503264994008, 29.993067210547281 ], [ -96.357415265405947, 29.992924210306761 ], [ -96.357390264919687, 29.992853210708464 ], [ -96.35738326495391, 29.992792210022543 ], [ -96.357402265192064, 29.992611210380051 ], [ -96.357333265079987, 29.99247321039757 ], [ -96.357251265709451, 29.992369210479396 ], [ -96.357194265657853, 29.992314210631623 ], [ -96.35711226544511, 29.992276210034394 ], [ -96.356903265570523, 29.992254210612792 ], [ -96.356600265045799, 29.992237210308627 ], [ -96.356461265324995, 29.992072210607176 ], [ -96.356335264743521, 29.991836209759462 ], [ -96.35605026530942, 29.991413209783179 ], [ -96.355918265397676, 29.991105209980045 ], [ -96.355829264813735, 29.990968209611353 ], [ -96.355703265319349, 29.990726209814461 ], [ -96.355583264466077, 29.990599210281477 ], [ -96.355419264458192, 29.990434209874984 ], [ -96.355229265013492, 29.990325209954449 ], [ -96.355008264815893, 29.990231209898589 ], [ -96.354932264622931, 29.990215210066211 ], [ -96.354863264901951, 29.990171209498932 ], [ -96.354831264165185, 29.990116209928541 ], [ -96.354749264748108, 29.989814209755348 ], [ -96.354680264283886, 29.989742209487744 ], [ -96.354522264620513, 29.989654209386433 ], [ -96.354414264228794, 29.989643209980969 ], [ -96.354320263967452, 29.989671209903086 ], [ -96.354181264025058, 29.989682209308818 ], [ -96.354073264145569, 29.989638209873103 ], [ -96.353972264194326, 29.989550210177743 ], [ -96.353732264768084, 29.989231209816687 ], [ -96.353694264590658, 29.989116209552424 ], [ -96.353713263863412, 29.989006209800809 ], [ -96.353770264554882, 29.988791209412039 ], [ -96.353770264100291, 29.988720209660823 ], [ -96.353757264425269, 29.988659209570564 ], [ -96.353618264304586, 29.988500209275188 ], [ -96.353574264526415, 29.98848420920654 ], [ -96.353511263921618, 29.988484209678443 ], [ -96.353416264082398, 29.988500209939325 ], [ -96.353372263905371, 29.988489209982113 ], [ -96.353271264581366, 29.988390209472808 ], [ -96.353107264120169, 29.988159209091933 ], [ -96.352999264041941, 29.988082209835756 ], [ -96.352923263628398, 29.988055209483644 ], [ -96.352734264108435, 29.988050209737033 ], [ -96.352570264167298, 29.988055209210703 ], [ -96.352229264075632, 29.988094209756493 ], [ -96.352159263361415, 29.988083209439431 ], [ -96.352090263671272, 29.98804420935636 ], [ -96.352033264126092, 29.987973209428176 ], [ -96.35197026390604, 29.987857209499914 ], [ -96.351907263562666, 29.987775209191344 ], [ -96.351812264186222, 29.987687209628177 ], [ -96.351610264130599, 29.987549209182163 ], [ -96.351162262995999, 29.987379209797385 ], [ -96.351004263627644, 29.987330209732367 ], [ -96.35095926363158, 29.987302209716404 ], [ -96.35090926337476, 29.987242209476079 ], [ -96.350858262946602, 29.987115208950492 ], [ -96.350820263180765, 29.986929209693987 ], [ -96.350770263193709, 29.986841208863535 ], [ -96.350618263487092, 29.986665209334394 ], [ -96.350498262874893, 29.986560208958515 ], [ -96.350404262951926, 29.986500209615844 ], [ -96.350265262926001, 29.986428209466943 ], [ -96.350220263419516, 29.98640120905042 ], [ -96.350088263444178, 29.986280209368182 ], [ -96.35005026294742, 29.986247208849047 ], [ -96.349803263115732, 29.985879209411131 ], [ -96.349620263343567, 29.985637209135245 ], [ -96.349462262755509, 29.985533209502094 ], [ -96.349323262878059, 29.985318208685069 ], [ -96.349210262895895, 29.985076209345266 ], [ -96.34907726278206, 29.984895209020891 ], [ -96.348850262437381, 29.984664209314261 ], [ -96.348767263055962, 29.984560209167665 ], [ -96.348723262496534, 29.984521208861942 ], [ -96.348502262857153, 29.98442820914708 ], [ -96.348389262236665, 29.984406208668734 ], [ -96.348250262437517, 29.984417209051195 ], [ -96.348199262680765, 29.984411209222042 ], [ -96.348086262384768, 29.984357208487122 ], [ -96.348003262221638, 29.984296208988415 ], [ -96.347896262071203, 29.984159209188746 ], [ -96.347744262024975, 29.983724209073987 ], [ -96.347694262580049, 29.983603208855357 ], [ -96.347656261951016, 29.983532208414932 ], [ -96.347631262229513, 29.983505208546106 ], [ -96.347568262922493, 29.983466208964046 ], [ -96.347365261933604, 29.983422208402981 ], [ -96.347252262803877, 29.983356208623984 ], [ -96.347176262677621, 29.983290208547228 ], [ -96.347094262472623, 29.983241208455119 ], [ -96.346993262618327, 29.983158208689588 ], [ -96.346835261989639, 29.983049208252307 ], [ -96.346747261910195, 29.983010208943295 ], [ -96.346557262571707, 29.98295520831336 ], [ -96.346336261795102, 29.982823208508179 ], [ -96.346267261622344, 29.982757209015816 ], [ -96.346203262084742, 29.982664208285389 ], [ -96.346172262381259, 29.982576208200889 ], [ -96.346172261512649, 29.982515208589561 ], [ -96.346197262272312, 29.982438208870807 ], [ -96.346279261665885, 29.982318208784811 ], [ -96.346487262223945, 29.982120208285306 ], [ -96.346525261943924, 29.982059208591945 ], [ -96.346538262563357, 29.981971208799859 ], [ -96.346532262572993, 29.981905208675652 ], [ -96.346513262439416, 29.981856208341124 ], [ -96.346456262560537, 29.981801208019963 ], [ -96.346329261523707, 29.981696208725218 ], [ -96.346247261803441, 29.981608208090648 ], [ -96.34592526216224, 29.981339208203263 ], [ -96.345786262357549, 29.981147208072006 ], [ -96.345470261610856, 29.980663208344549 ], [ -96.345432261534455, 29.980592208063236 ], [ -96.345413261336944, 29.980383208103877 ], [ -96.345382261631855, 29.980278208295523 ], [ -96.345268261518527, 29.980201208276966 ], [ -96.345205261553858, 29.980190208096726 ], [ -96.344738262036316, 29.980163208469246 ], [ -96.344574261821492, 29.980125208420898 ], [ -96.344454261879946, 29.980108207995997 ], [ -96.344340261839307, 29.980119208510388 ], [ -96.344283261895441, 29.980136208041625 ], [ -96.344214261157319, 29.980174208289156 ], [ -96.344170261162432, 29.980235207854356 ], [ -96.344132261328298, 29.980257207826181 ], [ -96.344081261881016, 29.980268208541169 ], [ -96.344005261522526, 29.98025720791145 ], [ -96.34370526134866, 29.980155208200337 ], [ -96.343633261616532, 29.9801302081014 ], [ -96.343595261365948, 29.980108208592888 ], [ -96.343551261607331, 29.980103208081541 ], [ -96.343488261096027, 29.980119207854667 ], [ -96.343399260762894, 29.980174208636729 ], [ -96.343355261079864, 29.980191208627502 ], [ -96.343323261603601, 29.980191208278129 ], [ -96.343235261022187, 29.980119208403771 ], [ -96.343197261617689, 29.980037208074673 ], [ -96.343134260810999, 29.97995420783397 ], [ -96.342957260974941, 29.979850207732653 ], [ -96.342875261323158, 29.979768208580531 ], [ -96.342831260807856, 29.979647208499411 ], [ -96.342825261372838, 29.979586208328772 ], [ -96.342806261371976, 29.979548207674934 ], [ -96.342768260582147, 29.979520207835627 ], [ -96.342705261180356, 29.979504208070466 ], [ -96.342635261091417, 29.979509208546066 ], [ -96.342578261242949, 29.979542207856692 ], [ -96.342553260521939, 29.979608208539219 ], [ -96.342515260456622, 29.979636208130145 ], [ -96.342439260532032, 29.97966920775265 ], [ -96.342364260619675, 29.979762208006594 ], [ -96.342326260421359, 29.979790208444484 ], [ -96.342300260572003, 29.979801207732848 ], [ -96.342263260863831, 29.97980120835399 ], [ -96.342231260657343, 29.979784208270051 ], [ -96.342199260536574, 29.979740208297567 ], [ -96.342187260687055, 29.979696207931752 ], [ -96.342225261358934, 29.979575207742709 ], [ -96.342225260575304, 29.979531208384124 ], [ -96.342187261010423, 29.979487207901283 ], [ -96.342098261253696, 29.979443207967844 ], [ -96.342023260360904, 29.979361207791424 ], [ -96.341991260463018, 29.979317207762872 ], [ -96.341941261067277, 29.979157207707122 ], [ -96.341921261035367, 29.979125207954631 ], [ -96.341896260979354, 29.979097207959153 ], [ -96.341808260858244, 29.979048208437401 ], [ -96.341776261087745, 29.979020207953067 ], [ -96.341764260345201, 29.978987207805613 ], [ -96.341783260402792, 29.978866207957324 ], [ -96.341852260356134, 29.978806208344043 ], [ -96.341877260298617, 29.978740207753074 ], [ -96.341877260701438, 29.978696208402219 ], [ -96.34185226056151, 29.978575207650017 ], [ -96.341820260865887, 29.978542207858112 ], [ -96.341726260428018, 29.978531207912972 ], [ -96.341562260846956, 29.978575208169964 ], [ -96.341372260286633, 29.978646207823061 ], [ -96.34129626084632, 29.978663208110135 ], [ -96.341246260238492, 29.97866320827427 ], [ -96.340880260190914, 29.978548207614804 ], [ -96.340741260569587, 29.978542207860983 ], [ -96.340678259977921, 29.978531208216143 ], [ -96.340488260883689, 29.978465208323009 ], [ -96.340242260192099, 29.978432208209458 ], [ -96.339932260451988, 29.978300208057188 ], [ -96.339718259899087, 29.978174208263386 ], [ -96.339655260679734, 29.978130208166736 ], [ -96.339598260281193, 29.978075208349079 ], [ -96.339516259896158, 29.977954207827011 ], [ -96.339478260475374, 29.977861207814033 ], [ -96.339484260036343, 29.977795207548422 ], [ -96.339471260023487, 29.97766820744965 ], [ -96.339408260164362, 29.977624208110818 ], [ -96.339339259893023, 29.977608207869494 ], [ -96.339206259911066, 29.977547207434668 ], [ -96.339168259641355, 29.977492207516484 ], [ -96.33915625974663, 29.977432208097476 ], [ -96.339156260379923, 29.977360208021562 ], [ -96.339187260479108, 29.977283208223721 ], [ -96.339313260290766, 29.977080208051785 ], [ -96.339364260192156, 29.977025207954497 ], [ -96.33939625992052, 29.976959207454723 ], [ -96.339414259592388, 29.9767612075239 ], [ -96.339478259953367, 29.976558208066908 ], [ -96.339528260326716, 29.976442207253314 ], [ -96.339559260380938, 29.975832207792863 ], [ -96.339547259538193, 29.97567320739487 ], [ -96.339496259723902, 29.975497207425374 ], [ -96.339414260476744, 29.975376207614133 ], [ -96.339294260394013, 29.975272207028958 ], [ -96.33918025943268, 29.975239207243373 ], [ -96.338972260182217, 29.975228207283859 ], [ -96.338890259894697, 29.975211207418447 ], [ -96.338776259809833, 29.975107207016816 ], [ -96.338707259899493, 29.97497520771465 ], [ -96.338486259623366, 29.974667207129862 ], [ -96.338448259204824, 29.974601207509501 ], [ -96.338397259314078, 29.974409207370108 ], [ -96.338366260119741, 29.974354206906426 ], [ -96.338309259265543, 29.97430420753286 ], [ -96.338240259296143, 29.974266206937738 ], [ -96.338183259217956, 29.974222207612712 ], [ -96.338132259977257, 29.974145207128995 ], [ -96.338075259982048, 29.97396920756216 ], [ -96.338025259619485, 29.973859206921318 ], [ -96.337981259694203, 29.973810206850537 ], [ -96.337924260045881, 29.973722207038897 ], [ -96.337911259322681, 29.973639206919856 ], [ -96.337905259788428, 29.973496207483166 ], [ -96.337962259036132, 29.973436207440418 ], [ -96.338044259691728, 29.973392207135063 ], [ -96.338252260050808, 29.973342206949503 ], [ -96.33832825978844, 29.973309206979124 ], [ -96.338385259774597, 29.973271207413074 ], [ -96.338448259184901, 29.97320520686776 ], [ -96.338511260156253, 29.973051207377026 ], [ -96.338637259882432, 29.972809206563127 ], [ -96.338662259877339, 29.972628206595818 ], [ -96.338669259388396, 29.972320207248238 ], [ -96.338656259411479, 29.9722592069269 ], [ -96.338675259977862, 29.972160206940941 ], [ -96.338757259675589, 29.97207820679596 ], [ -96.338839259906422, 29.972034206907118 ], [ -96.339079259777222, 29.971940206561211 ], [ -96.33912926006829, 29.971913206388674 ], [ -96.339211259319825, 29.97179820679785 ], [ -96.339237259821829, 29.971721207087288 ], [ -96.339237259628916, 29.971583206716602 ], [ -96.339237260293601, 29.971506206267165 ], [ -96.339186260062093, 29.971325206538577 ], [ -96.339211259405445, 29.97127520681774 ], [ -96.339350259905217, 29.97123720618405 ], [ -96.339382259703868, 29.971209206797194 ], [ -96.339388259292846, 29.971132206968079 ], [ -96.339274259944304, 29.970978206279618 ], [ -96.33923626021658, 29.970885206813804 ], [ -96.339224259924436, 29.970770206509602 ], [ -96.339236259414463, 29.970583206762409 ], [ -96.339274259335809, 29.970401206174191 ], [ -96.339255260165416, 29.97019220614273 ], [ -96.339173259387692, 29.969978206580741 ], [ -96.339167259732079, 29.969681206025637 ], [ -96.339148259568333, 29.969621205799282 ], [ -96.339003259964556, 29.969307205749594 ], [ -96.338902259789236, 29.969027206482831 ], [ -96.338927259654511, 29.968813206152689 ], [ -96.338920259687754, 29.968785205650594 ], [ -96.338826259292702, 29.968637206412978 ], [ -96.338762259533382, 29.968477205799179 ], [ -96.3387182598468, 29.968422205742659 ], [ -96.338579259032088, 29.968324205777314 ], [ -96.338535259264049, 29.968279206124286 ], [ -96.338510258984471, 29.968236206415686 ], [ -96.338491259624433, 29.968126206418102 ], [ -96.338447259199967, 29.968071206245632 ], [ -96.338264259012917, 29.967944205902263 ], [ -96.338238259141363, 29.967895206072146 ], [ -96.338226259545095, 29.967801206358395 ], [ -96.3381822594597, 29.967675205617656 ], [ -96.338137259100549, 29.967625205598882 ], [ -96.338068259018428, 29.967576206197879 ], [ -96.337961259295085, 29.967554206158379 ], [ -96.33789725972369, 29.967581206340949 ], [ -96.337841258966691, 29.967653205659587 ], [ -96.337790259717579, 29.96769120574961 ], [ -96.337740258897213, 29.9676972055045 ], [ -96.337557259401066, 29.967582206178943 ], [ -96.33750625934087, 29.967494205748906 ], [ -96.337437259474058, 29.967450206256107 ], [ -96.337342259167499, 29.967439205725395 ], [ -96.337127259379471, 29.967483206256848 ], [ -96.337045258959904, 29.967472206095358 ], [ -96.336868258516489, 29.967428206137928 ], [ -96.336679259399361, 29.967422205695282 ], [ -96.336622258702192, 29.967411205635639 ], [ -96.336565258550479, 29.967373205534848 ], [ -96.336527259115044, 29.967323205730668 ], [ -96.336464258804085, 29.967142205712072 ], [ -96.336433259034251, 29.967098205837523 ], [ -96.336313258671723, 29.966988205534697 ], [ -96.336142258982136, 29.966900205809214 ], [ -96.336041258451885, 29.96696620597735 ], [ -96.336003258801583, 29.96703220598555 ], [ -96.335978258368385, 29.967153205692892 ], [ -96.33593425885789, 29.967263206265208 ], [ -96.335852258668879, 29.967345205683955 ], [ -96.335732258277787, 29.967433205702839 ], [ -96.335669258560273, 29.967455206383043 ], [ -96.335536259093928, 29.967455206356085 ], [ -96.335391258959334, 29.96741120583664 ], [ -96.335044258693983, 29.967417205943029 ], [ -96.334936258730025, 29.967406205634223 ], [ -96.334816258047283, 29.967356205962254 ], [ -96.33472825874064, 29.967269206377448 ], [ -96.334741258386543, 29.967208206228719 ], [ -96.334766258531815, 29.967175205911037 ], [ -96.334962258968616, 29.967065206319582 ], [ -96.335018258504363, 29.967016205989395 ], [ -96.335088258680017, 29.966933205502439 ], [ -96.335119258971957, 29.966851206130276 ], [ -96.33511925874825, 29.966746205567162 ], [ -96.335082258048928, 29.966603205846848 ], [ -96.335044258975159, 29.966356205442121 ], [ -96.335069258592938, 29.966175205637956 ], [ -96.335113258710592, 29.966037205395079 ], [ -96.335075258179842, 29.965608205444799 ], [ -96.334968258143945, 29.965367205619629 ], [ -96.334671258567397, 29.964487205190107 ], [ -96.33464625829869, 29.964438205443329 ], [ -96.334582257887249, 29.964372205416126 ], [ -96.334513257947421, 29.964333205454256 ], [ -96.33445625794316, 29.964273205452891 ], [ -96.334324258639711, 29.963987205545582 ], [ -96.334122258505388, 29.96361320536403 ], [ -96.334008258376187, 29.963487204828073 ], [ -96.333913257536651, 29.963421205350333 ], [ -96.333800258063562, 29.963377204741345 ], [ -96.333667258177869, 29.963349205507523 ], [ -96.333560257978334, 29.963344205006333 ], [ -96.333446257731737, 29.963377204842459 ], [ -96.333294258299986, 29.963399204961284 ], [ -96.333004257639629, 29.963465205482947 ], [ -96.332954258110476, 29.963498205342514 ], [ -96.332922257421401, 29.963553205128846 ], [ -96.332909257300514, 29.963657204976602 ], [ -96.332973257708289, 29.963932205593085 ], [ -96.332979258167612, 29.964031205328038 ], [ -96.332966257722987, 29.964147205392432 ], [ -96.332891258212328, 29.964295205341639 ], [ -96.332846257964064, 29.964454205833672 ], [ -96.332771257672263, 29.964625205387403 ], [ -96.332670258059849, 29.964713205621795 ], [ -96.332569257541778, 29.964757205210095 ], [ -96.332341258146442, 29.964795205934461 ], [ -96.332127257341881, 29.964801205205884 ], [ -96.331975257493909, 29.96479520572111 ], [ -96.331874257893048, 29.964768205981478 ], [ -96.331779257217931, 29.964702205925356 ], [ -96.331666257768305, 29.964597205210783 ], [ -96.331577257092022, 29.964531205101437 ], [ -96.331495257482914, 29.964520205107156 ], [ -96.331407257210415, 29.964526205423887 ], [ -96.331199257729693, 29.964713205861877 ], [ -96.331098257710124, 29.96470220523787 ], [ -96.330908257839738, 29.964603205967556 ], [ -96.330839257011007, 29.96453720579979 ], [ -96.330769257714266, 29.964449205765039 ], [ -96.33058025760117, 29.964290205730283 ], [ -96.330460257535421, 29.964213205530609 ], [ -96.330283256773541, 29.964180205163792 ], [ -96.329759256876514, 29.964114205833756 ], [ -96.329582257276101, 29.964059205616142 ], [ -96.329412256478093, 29.964053205311892 ], [ -96.329355256832045, 29.964092205543604 ], [ -96.329336256436278, 29.964141205733149 ], [ -96.329330257052504, 29.964224205566733 ], [ -96.329399256988353, 29.964328205184053 ], [ -96.329469256730519, 29.964482205493741 ], [ -96.329456256963681, 29.964554205614125 ], [ -96.329393257199044, 29.964587205539338 ], [ -96.329317257081186, 29.964603205396585 ], [ -96.329229257004172, 29.964598205727214 ], [ -96.328894256849253, 29.964543205348427 ], [ -96.328566256244756, 29.964411205388778 ], [ -96.328351256285032, 29.964268205350191 ], [ -96.328301256492551, 29.964202205540609 ], [ -96.328295256863541, 29.964158205601333 ], [ -96.328313256500905, 29.964125205218394 ], [ -96.328427256257584, 29.964026205630383 ], [ -96.328459256880706, 29.963976205319412 ], [ -96.328452256753181, 29.96393320520443 ], [ -96.328358256977666, 29.96383920544222 ], [ -96.328282256308242, 29.963839205874176 ], [ -96.328029256892137, 29.964015205582864 ], [ -96.327966257073996, 29.96402620589809 ], [ -96.327903256792496, 29.964026205798074 ], [ -96.327834256315256, 29.964009205795442 ], [ -96.327689256167872, 29.963955205262341 ], [ -96.327468255933155, 29.963927205692201 ], [ -96.32718325673379, 29.963856205452959 ], [ -96.327051256692755, 29.963856205091115 ], [ -96.326148255792162, 29.964032205319622 ], [ -96.326022256508466, 29.96403720547017 ], [ -96.325921256564456, 29.964026205439783 ], [ -96.325832256261748, 29.96398820593248 ], [ -96.325744256357495, 29.963900205682446 ], [ -96.325529256401708, 29.963603205564208 ], [ -96.325454256061718, 29.963548205250351 ], [ -96.325378255562072, 29.963548205842983 ], [ -96.325264255803276, 29.963597205756759 ], [ -96.324961255694717, 29.963757205835616 ], [ -96.324879255773055, 29.963790206010447 ], [ -96.324702255290092, 29.963839205699113 ], [ -96.324551255207837, 29.963861205953688 ], [ -96.324399255997918, 29.963911205981088 ], [ -96.324071255137, 29.964092205899533 ], [ -96.323825255595196, 29.964202205959609 ], [ -96.323604255666652, 29.964339205805953 ], [ -96.32350325538367, 29.964367206137723 ], [ -96.323434255191401, 29.964345205420098 ], [ -96.323383255180048, 29.964312205695144 ], [ -96.323339255015057, 29.964219206116439 ], [ -96.323326255851129, 29.964109205761776 ], [ -96.323339255880455, 29.963933206015366 ], [ -96.323326254912971, 29.963806205999088 ], [ -96.322783254842903, 29.963174205499612 ], [ -96.322411254621031, 29.962822205768589 ], [ -96.322329255445553, 29.962789205663785 ], [ -96.3222472546897, 29.962800205245458 ], [ -96.322152254952982, 29.962855205231776 ], [ -96.321975255082933, 29.962982205779856 ], [ -96.321792255178977, 29.963004205490467 ], [ -96.321672254963488, 29.962971205133517 ], [ -96.32142625494285, 29.962817205795709 ], [ -96.321350255190922, 29.962723205327105 ], [ -96.321344254511146, 29.962570205395352 ], [ -96.321382255326725, 29.962482205800256 ], [ -96.321502255030424, 29.96236120538644 ], [ -96.321603254414327, 29.962350205276966 ], [ -96.321735254524256, 29.96236120511259 ], [ -96.322019254795507, 29.962449205837505 ], [ -96.322101255269416, 29.962454205245223 ], [ -96.322215254871267, 29.96243820556424 ], [ -96.322297255306395, 29.962366205696934 ], [ -96.32234825555031, 29.96227820515173 ], [ -96.322392255283233, 29.962064205675535 ], [ -96.322442254679046, 29.961948204963001 ], [ -96.322562255568585, 29.961728205485652 ], [ -96.322569254750832, 29.961657205224025 ], [ -96.322556255117831, 29.961602204848255 ], [ -96.322493255064984, 29.96152520481634 ], [ -96.322404255192922, 29.961492205012341 ], [ -96.322291254893926, 29.961465204993846 ], [ -96.322139254688125, 29.961476205616329 ], [ -96.321962254958393, 29.961564204831024 ], [ -96.321887255328264, 29.961613205384214 ], [ -96.321824255225692, 29.961624205512752 ], [ -96.321729254394953, 29.961608205232938 ], [ -96.321634254418328, 29.961569205133571 ], [ -96.321451255261067, 29.961525205566215 ], [ -96.321281254944864, 29.961503205045567 ], [ -96.321192255209581, 29.961481204833458 ], [ -96.321104255092195, 29.961437205652352 ], [ -96.321016254603492, 29.961371205600972 ], [ -96.320934254652627, 29.961272204875712 ], [ -96.320845254614952, 29.961195205115242 ], [ -96.320750254353854, 29.961184205308481 ], [ -96.32065625495548, 29.961212205092401 ], [ -96.320567255010374, 29.961278204968952 ], [ -96.320523254426249, 29.961371204945962 ], [ -96.320454254392956, 29.961454205483587 ], [ -96.320391254230003, 29.961503205510443 ], [ -96.320327254607292, 29.961525205250016 ], [ -96.320214254393946, 29.961509205683409 ], [ -96.320113254482507, 29.961470205684758 ], [ -96.320050254121909, 29.96142120540393 ], [ -96.320018254201116, 29.961333205171371 ], [ -96.320012254047441, 29.961234205420233 ], [ -96.320050254382238, 29.961096205284736 ], [ -96.320302254780245, 29.960866205431628 ], [ -96.320353255004775, 29.960783204942746 ], [ -96.320391254299949, 29.960684205134658 ], [ -96.320391253995666, 29.960558204911351 ], [ -96.320283254762586, 29.960255205379614 ], [ -96.320138253920248, 29.959794204769377 ], [ -96.320126254062743, 29.959615204575559 ], [ -96.319687253920421, 29.959725204953106 ], [ -96.318777253895647, 29.959985205394233 ], [ -96.318157253928547, 29.960115204711105 ], [ -96.317857254094093, 29.960155205419397 ], [ -96.317197253809027, 29.960195205094024 ], [ -96.316567253219063, 29.960175204884269 ], [ -96.3161372537283, 29.960135204852012 ], [ -96.315727253248326, 29.960065205410796 ], [ -96.315287253209533, 29.959965205216101 ], [ -96.315139252781293, 29.959926204742548 ], [ -96.314987253048116, 29.959885204704541 ], [ -96.313577252681768, 29.959465205465271 ], [ -96.311757252347022, 29.958935205164739 ], [ -96.311017252267092, 29.958695205036459 ], [ -96.31086825246426, 29.958653205399397 ], [ -96.31015725150651, 29.958455204698193 ], [ -96.307877251268621, 29.957775205024966 ], [ -96.305087250144368, 29.956935204514206 ], [ -96.302409249997936, 29.956134204526791 ], [ -96.301177249464928, 29.955765204752204 ], [ -96.300267249498262, 29.955535204917272 ], [ -96.29967724949968, 29.955405205097101 ], [ -96.299247249294396, 29.955335204545367 ], [ -96.298317248882853, 29.955185204389007 ], [ -96.297477248615493, 29.955085204563176 ], [ -96.296967248434726, 29.955055205149055 ], [ -96.295607248305657, 29.955005205038212 ], [ -96.294587247568529, 29.955025204767427 ], [ -96.294267247459302, 29.955035204588988 ], [ -96.293201246993547, 29.955132205198428 ], [ -96.292947247354093, 29.955155205095849 ], [ -96.29152724665343, 29.955265204596035 ], [ -96.29088224689059, 29.955310205102368 ], [ -96.28893724639623, 29.95544520546694 ], [ -96.287943245927508, 29.955522205546071 ], [ -96.286107245566328, 29.955675204892646 ], [ -96.284777245290812, 29.955775205445121 ], [ -96.283357244955909, 29.955875205812784 ], [ -96.281667244385446, 29.956016205736816 ], [ -96.280934244014063, 29.95607720536966 ], [ -96.28048724368611, 29.956115205429331 ], [ -96.278937243969622, 29.956215205640646 ], [ -96.276807243086296, 29.956385206118611 ], [ -96.276666243369647, 29.956394206203523 ], [ -96.276197243330728, 29.956425206015911 ], [ -96.275867243242985, 29.956455206001603 ], [ -96.275607242899085, 29.956475206169589 ], [ -96.275387242847017, 29.956485205554095 ], [ -96.275257242578292, 29.956495206138225 ], [ -96.274717242231546, 29.956535205613299 ], [ -96.272457242020934, 29.956705206173424 ], [ -96.270197241961498, 29.956855206364331 ], [ -96.2700572417573, 29.956855206458432 ], [ -96.269847241944703, 29.956835205946767 ], [ -96.269287241256393, 29.95674520628636 ], [ -96.26908724157478, 29.956685205912414 ], [ -96.268777241188005, 29.956585206019991 ], [ -96.268217241073216, 29.956355206284595 ], [ -96.267617240983199, 29.956075206350025 ], [ -96.267270240597242, 29.955787206197048 ], [ -96.267087240362144, 29.955635205545423 ], [ -96.266287240841663, 29.954985205950805 ], [ -96.265817240287788, 29.954635206221141 ], [ -96.265755240632984, 29.954586205536359 ], [ -96.264207240303975, 29.953365205932638 ], [ -96.263967240133653, 29.953185205771632 ], [ -96.263537239290869, 29.952885205539907 ], [ -96.263407240176647, 29.952805205715329 ], [ -96.263273239511875, 29.952731205642579 ], [ -96.26322723992223, 29.952705205046414 ], [ -96.26283823926812, 29.95252920558454 ], [ -96.262807239873297, 29.952515205140106 ], [ -96.262209238998409, 29.952284205214813 ], [ -96.262107239209385, 29.952245205426536 ], [ -96.26098723949886, 29.951795205011084 ], [ -96.259367238644913, 29.951155205514709 ], [ -96.258547238882059, 29.950835205692311 ], [ -96.258244238764718, 29.950716204832894 ], [ -96.257677237658456, 29.950495205098104 ], [ -96.257643238305661, 29.95037420550026 ], [ -96.257596238520449, 29.95029720529481 ], [ -96.257465237980014, 29.950225205215521 ], [ -96.257302238104018, 29.950201204808995 ], [ -96.257146238367909, 29.950194205434748 ], [ -96.257068237590374, 29.950208205070449 ], [ -96.257021237810832, 29.950232205162184 ], [ -96.25693823820113, 29.950284204869071 ], [ -96.256907238023928, 29.950235205088415 ], [ -96.256847237903187, 29.950175205147218 ], [ -96.256580237379907, 29.950082204747449 ], [ -96.256037237899321, 29.949865205051811 ], [ -96.255237237433349, 29.949555204912308 ], [ -96.254347237101072, 29.949215204683934 ], [ -96.25329723737093, 29.948815205142726 ], [ -96.252887237362074, 29.948665204680267 ], [ -96.252437236664122, 29.948475204579633 ], [ -96.252327236524181, 29.948425205210032 ], [ -96.251577236739891, 29.948105205256766 ], [ -96.251387236585344, 29.948045204696243 ], [ -96.251327236839614, 29.948025205010815 ], [ -96.251167236783758, 29.947995204958421 ], [ -96.250877236066941, 29.947995204631688 ], [ -96.249877236425377, 29.948095204827805 ], [ -96.249307236308383, 29.948195205194562 ], [ -96.24856723620006, 29.948375205136387 ], [ -96.24809723575639, 29.948535205360049 ], [ -96.247657235066356, 29.94873520543176 ], [ -96.247167235383159, 29.949025205206112 ], [ -96.247107235510356, 29.94906520523438 ], [ -96.247037235703402, 29.949105205057176 ], [ -96.246828235331733, 29.949253205507894 ], [ -96.246722235463039, 29.949327205092725 ], [ -96.246697234967513, 29.94934520577246 ], [ -96.244757234783947, 29.950665205309214 ], [ -96.2442662345548, 29.950992206210366 ], [ -96.244060234697514, 29.951130205529189 ], [ -96.244037234714085, 29.951145205596486 ], [ -96.243627234720435, 29.951425205945068 ], [ -96.243230234736203, 29.951689205685618 ], [ -96.241817234225778, 29.952635206440377 ], [ -96.240457233671833, 29.953575206750852 ], [ -96.239747233543653, 29.954045206907203 ], [ -96.239498233970394, 29.954214206339294 ], [ -96.239242233606674, 29.954387206234919 ], [ -96.238137233029818, 29.955135206540792 ], [ -96.237727233194519, 29.955405206497812 ], [ -96.237097233503775, 29.955865207148531 ], [ -96.236868233359303, 29.956061206956214 ], [ -96.236747232941582, 29.956165207207821 ], [ -96.236139233206842, 29.956773206843188 ], [ -96.236037232870899, 29.9568752070026 ], [ -96.235727232871852, 29.957255207763691 ], [ -96.233907232501807, 29.95966520832178 ], [ -96.233366232207572, 29.960379208460033 ], [ -96.231017231933222, 29.963475208469305 ], [ -96.230984232264461, 29.963514208664726 ], [ -96.230637231722071, 29.963925209142207 ], [ -96.230207231421446, 29.964415209042695 ], [ -96.22974723141219, 29.964875209295275 ], [ -96.229297231243933, 29.965345209247289 ], [ -96.229146231724826, 29.965493209690734 ], [ -96.228807231344149, 29.965825209612465 ], [ -96.22842323193214, 29.966217209159883 ], [ -96.22831723161579, 29.966325209603525 ], [ -96.227667231146711, 29.966965209398271 ], [ -96.226946231506545, 29.967713209829821 ], [ -96.226867231055735, 29.967795210036702 ], [ -96.226838230961619, 29.967824209893525 ], [ -96.224577230411569, 29.970085210438306 ], [ -96.224117230415885, 29.970575210784865 ], [ -96.222847229964984, 29.971985210595388 ], [ -96.221617229824759, 29.973375211492993 ], [ -96.219067229440313, 29.976235212107671 ], [ -96.218617229294892, 29.976705211688671 ], [ -96.218234229116376, 29.977088212121437 ], [ -96.218217229546411, 29.977105211865471 ], [ -96.217777229472176, 29.977515212259089 ], [ -96.217617229590971, 29.977655211926269 ], [ -96.216126229341668, 29.978820212599537 ], [ -96.215357228364837, 29.979435212703287 ], [ -96.214307228117676, 29.980235212956536 ], [ -96.21409722872265, 29.98041521286283 ], [ -96.211627227554956, 29.982305213395584 ], [ -96.210870227597425, 29.982905213405484 ], [ -96.208627227480221, 29.984635213994441 ], [ -96.205858226675375, 29.986779214799622 ], [ -96.20306622610272, 29.988941214438114 ], [ -96.198187224897296, 29.992705215832498 ], [ -96.197737224878324, 29.993065215667027 ], [ -96.196192224858251, 29.994259215763847 ], [ -96.192237223723154, 29.997315216642441 ], [ -96.191007223394038, 29.998275217530558 ], [ -96.189694223636195, 29.999286217685309 ], [ -96.188397222870179, 30.000285217444368 ], [ -96.187807222640956, 30.000685217813679 ], [ -96.187327222763116, 30.000985218202842 ], [ -96.186862222292874, 30.00124921837228 ], [ -96.186817222857584, 30.001275217916341 ], [ -96.183999221637819, 30.002891218690834 ], [ -96.183957221665551, 30.002915218127232 ], [ -96.183686221903201, 30.00307321884927 ], [ -96.180627221059964, 30.004855218775671 ], [ -96.177567220403816, 30.006605219473666 ], [ -96.177137220139997, 30.006865219296714 ], [ -96.17303721982455, 30.009205220295517 ], [ -96.173003219489942, 30.009225220003305 ], [ -96.170257218523744, 30.010805220022991 ], [ -96.169077218809534, 30.011475220763522 ], [ -96.168877217937606, 30.01159522057478 ], [ -96.168797218240812, 30.011625220687243 ], [ -96.168497218573094, 30.011785220650225 ], [ -96.168137218543052, 30.011955221162609 ], [ -96.167981217771128, 30.012023220820115 ], [ -96.1679362182592, 30.012045220916058 ], [ -96.166187218194267, 30.012825220920764 ], [ -96.165657217174612, 30.013055221141094 ], [ -96.164446217799068, 30.01359122094313 ], [ -96.159792216468318, 30.015652222080103 ], [ -96.159627216280469, 30.015725221716544 ], [ -96.158027215746969, 30.016425222250781 ], [ -96.156497215622707, 30.017115221976663 ], [ -96.150217214492457, 30.019885223014043 ], [ -96.147439213772017, 30.021120223018194 ], [ -96.145437213047231, 30.022005223896372 ], [ -96.143777212753491, 30.022755223610581 ], [ -96.142297212288341, 30.02340522366547 ], [ -96.135877211189396, 30.026245224329656 ], [ -96.134767210842597, 30.026739224967862 ], [ -96.133878209834876, 30.027136225406885 ], [ -96.132904210194354, 30.02756622478153 ], [ -96.132657209570965, 30.027675224925666 ], [ -96.132327210303529, 30.027825225645433 ], [ -96.13116721003118, 30.02835522506005 ], [ -96.128247208944714, 30.029625225348699 ], [ -96.127607209261072, 30.029945225619592 ], [ -96.126977208291507, 30.030305225509544 ], [ -96.126484208461463, 30.030610226359247 ], [ -96.126427208522841, 30.030645226327593 ], [ -96.126187208890968, 30.030815225858635 ], [ -96.125257208003319, 30.031545225972067 ], [ -96.124227208379679, 30.032415226230931 ], [ -96.124177207761946, 30.032456226372041 ], [ -96.121487207367139, 30.034685226835833 ], [ -96.12117720731203, 30.034965227189186 ], [ -96.120394207139796, 30.035605227288684 ], [ -96.120027206839978, 30.035905226846129 ], [ -96.118897206426325, 30.036865227293053 ], [ -96.118077206284113, 30.037515227374612 ], [ -96.117247206832985, 30.038229228187809 ], [ -96.116647206855575, 30.038745227849869 ], [ -96.11336820569781, 30.041456228168382 ], [ -96.112897205370118, 30.041845228727809 ], [ -96.112567206025133, 30.042125228337905 ], [ -96.111015205096663, 30.043445229217777 ], [ -96.11082720498456, 30.043605228704202 ], [ -96.110697205556548, 30.043725229563318 ], [ -96.110636205653051, 30.043770228758472 ], [ -96.110587205459836, 30.043805228956984 ], [ -96.110423204757197, 30.043768229362986 ], [ -96.110709205298534, 30.044202229170274 ], [ -96.111152205055404, 30.044879228992283 ], [ -96.112057205209652, 30.046263229323266 ], [ -96.11467820608496, 30.048813230244331 ], [ -96.115364206642951, 30.049261230401822 ], [ -96.115937206351148, 30.049625230470124 ], [ -96.116410207239255, 30.049811230496054 ], [ -96.116439206401267, 30.049823230379413 ], [ -96.116540207315595, 30.049863230340172 ], [ -96.116830207031072, 30.049976230493264 ], [ -96.117144207184495, 30.050100230016266 ], [ -96.117221207116984, 30.050131230091285 ], [ -96.117935206924088, 30.050305230283779 ], [ -96.119749207264633, 30.050620230074859 ], [ -96.120344208127136, 30.050645230546184 ], [ -96.120814208027753, 30.050719230512868 ], [ -96.121840207983183, 30.050881229898696 ], [ -96.125139209715968, 30.052622230574272 ], [ -96.125239209436145, 30.052535230327234 ], [ -96.125971209549661, 30.05287323008595 ], [ -96.12675520959057, 30.053305230411056 ], [ -96.129087210081479, 30.0540202306961 ], [ -96.129925210318916, 30.054278230491498 ], [ -96.133800211218428, 30.055158230614495 ], [ -96.134696211841216, 30.055361230821216 ], [ -96.135620212180541, 30.055654230268321 ], [ -96.137007212695309, 30.056088231120047 ], [ -96.138956213137007, 30.056944230718475 ], [ -96.140636213092307, 30.058230231203698 ], [ -96.142298214165692, 30.059990231276359 ], [ -96.143533214613072, 30.061180231213378 ], [ -96.144122214885428, 30.061471231486248 ], [ -96.144527214494431, 30.062225231956639 ], [ -96.144785215054597, 30.062706231687905 ], [ -96.145649215241136, 30.063492232011061 ], [ -96.146448215311381, 30.064491232139282 ], [ -96.146628215291713, 30.065148232034243 ], [ -96.146269215420688, 30.065805231916343 ], [ -96.145600215086091, 30.066176232791317 ], [ -96.144997215372143, 30.066647232157997 ], [ -96.144151214662628, 30.06689423226792 ], [ -96.144132214512325, 30.067317233085291 ], [ -96.144161214626649, 30.067511232906227 ], [ -96.144209215169283, 30.067832232705406 ], [ -96.144291214804383, 30.068057232617342 ], [ -96.144373214435021, 30.068161232862071 ], [ -96.144733215000656, 30.068530233274917 ], [ -96.144973214723606, 30.068794232698046 ], [ -96.145087215149729, 30.068953232594726 ], [ -96.145125215497302, 30.069063232914257 ], [ -96.145188215311251, 30.069376233123698 ], [ -96.145257215598079, 30.069613233462995 ], [ -96.145320215164332, 30.069723233039245 ], [ -96.145503215396076, 30.069926233624706 ], [ -96.145800215734099, 30.070118232826076 ], [ -96.145933215230968, 30.070185233110148 ], [ -96.146059214897491, 30.070229232962731 ], [ -96.146287215536589, 30.070234232804125 ], [ -96.146451215522418, 30.070229233205687 ], [ -96.147096215383328, 30.070081232780449 ], [ -96.148107215802227, 30.069608232915893 ], [ -96.148373215514496, 30.069427233216761 ], [ -96.14846721581965, 30.069334233319971 ], [ -96.148569215554829, 30.069180233275191 ], [ -96.148727216056741, 30.06871323294892 ], [ -96.148935215680453, 30.068262233074968 ], [ -96.1490622158002, 30.068125232710386 ], [ -96.149182216510894, 30.068053232290275 ], [ -96.149315216485448, 30.067998232666536 ], [ -96.149429216151461, 30.067982232791888 ], [ -96.149561215832833, 30.067993232840397 ], [ -96.149966216232912, 30.068130232515173 ], [ -96.150079216362371, 30.068163232437826 ], [ -96.150256216320145, 30.068196232663837 ], [ -96.150401216189636, 30.068196232772433 ], [ -96.150534216522573, 30.068180232252018 ], [ -96.150686216512412, 30.068125232447809 ], [ -96.15114121633286, 30.067922232964769 ], [ -96.151280216858439, 30.067839232318939 ], [ -96.15188721685972, 30.067587232538763 ], [ -96.152582217042493, 30.067323232163666 ], [ -96.152790216539572, 30.067252232494049 ], [ -96.15298021689857, 30.067202232073445 ], [ -96.153233216952998, 30.067197232158524 ], [ -96.154029217661176, 30.067219231945977 ], [ -96.154313217217023, 30.067203232579054 ], [ -96.154629217697419, 30.067214232296639 ], [ -96.155072217883145, 30.067187232151333 ], [ -96.155230217884849, 30.067137232668188 ], [ -96.155312218006131, 30.067082232624244 ], [ -96.155375217432677, 30.067022232695379 ], [ -96.155394217190491, 30.066934232153585 ], [ -96.155394217100863, 30.066835232582481 ], [ -96.15536921718008, 30.066692232290325 ], [ -96.155192217861128, 30.066494232543338 ], [ -96.15500221727109, 30.066313232181141 ], [ -96.154769217277959, 30.066159232017394 ], [ -96.154630217798058, 30.066093232372079 ], [ -96.154440216878697, 30.065944232353914 ], [ -96.154364217397429, 30.065856232405935 ], [ -96.154352217507324, 30.065807232081884 ], [ -96.154346217506017, 30.0656692323833 ], [ -96.154384216930112, 30.065548232370698 ], [ -96.154421216932064, 30.065450231632443 ], [ -96.154472217526433, 30.065356231632006 ], [ -96.154554217767597, 30.065274231970463 ], [ -96.154826217800206, 30.06506523216153 ], [ -96.154952217122698, 30.064955232280894 ], [ -96.155035216946203, 30.064851232004056 ], [ -96.155180217389216, 30.064373231968954 ], [ -96.155205216941127, 30.064197231799326 ], [ -96.155364217790662, 30.063713231663339 ], [ -96.155579217744446, 30.06329023152723 ], [ -96.15590721710501, 30.062856231019172 ], [ -96.156021217125385, 30.062735231263346 ], [ -96.156166217226314, 30.062630231813294 ], [ -96.15633721709537, 30.062543231210395 ], [ -96.156716217185433, 30.062411231336725 ], [ -96.15686821794894, 30.062328231057769 ], [ -96.15698221784379, 30.062235231353949 ], [ -96.157077217715084, 30.062136231175181 ], [ -96.157171217400361, 30.062004231229949 ], [ -96.157216217809207, 30.061900230905152 ], [ -96.157399217290674, 30.061229231306562 ], [ -96.157469218149345, 30.060883230671298 ], [ -96.157475218173545, 30.060762230715603 ], [ -96.157431217309664, 30.060614230930462 ], [ -96.157343217760499, 30.060531230722304 ], [ -96.157096217697429, 30.06038323048946 ], [ -96.156900217719894, 30.060295230437774 ], [ -96.156622217860388, 30.060240231143595 ], [ -96.156426217453884, 30.060190230859639 ], [ -96.156306217038249, 30.060146231040445 ], [ -96.156199217692674, 30.060064230438531 ], [ -96.156054217608073, 30.059800230815554 ], [ -96.155965217841882, 30.059591231098658 ], [ -96.155757217773512, 30.058970231056801 ], [ -96.155713216825404, 30.058794230542215 ], [ -96.15573221692469, 30.05859623037734 ], [ -96.155814217156049, 30.058431230649859 ], [ -96.155941217024079, 30.058266230050368 ], [ -96.156048217286184, 30.058135230451434 ], [ -96.156288217556977, 30.057904230193657 ], [ -96.156364217144613, 30.057799230805678 ], [ -96.156415217790084, 30.057695230305104 ], [ -96.156567216965314, 30.057288230514004 ], [ -96.156623217304997, 30.057184230105864 ], [ -96.156687217710754, 30.057079230277033 ], [ -96.156781217584083, 30.056969230326992 ], [ -96.156883217146245, 30.056871230127438 ], [ -96.157028217717738, 30.056579230289184 ], [ -96.157091217861165, 30.056431229968215 ], [ -96.157218217768943, 30.056189229899697 ], [ -96.157312217993265, 30.056074230220549 ], [ -96.157357217347524, 30.055931230146406 ], [ -96.157357217790207, 30.055771229921223 ], [ -96.157332217501974, 30.055623230037526 ], [ -96.157338217050992, 30.055480229955485 ], [ -96.157357217810798, 30.055387229500358 ], [ -96.157433217558207, 30.055233229433902 ], [ -96.15749621727295, 30.055150229573506 ], [ -96.157572217084962, 30.055084229891907 ], [ -96.157641217500057, 30.055046230176377 ], [ -96.157742217207669, 30.055024230025253 ], [ -96.157995217915101, 30.055008229512026 ], [ -96.158153218108282, 30.054986229531416 ], [ -96.158280218154928, 30.05495322963132 ], [ -96.158362217904511, 30.054909229912262 ], [ -96.158438217763361, 30.054854230147519 ], [ -96.15873521754996, 30.05440322959619 ], [ -96.158836217897118, 30.054293229987504 ], [ -96.159063218069278, 30.054074229994963 ], [ -96.159449217743258, 30.053837229810064 ], [ -96.159563218237324, 30.053782229342719 ], [ -96.159645218326574, 30.053760229655591 ], [ -96.159967217644521, 30.053711229472 ], [ -96.16008721814876, 30.053673229536784 ], [ -96.160175218163673, 30.053618229674264 ], [ -96.160289218302736, 30.053475229027761 ], [ -96.160479217975436, 30.053414229694955 ], [ -96.160542218672447, 30.053436229446678 ], [ -96.160643218173661, 30.053447229237204 ], [ -96.160883218218231, 30.053524229207 ], [ -96.161085218188603, 30.053711229620284 ], [ -96.16139521870187, 30.054080229380041 ], [ -96.161452218598086, 30.054129229338805 ], [ -96.161534218707175, 30.054179229180789 ], [ -96.161622218160574, 30.054212229701154 ], [ -96.16190021874128, 30.05428922979252 ], [ -96.162083218663923, 30.054283229441737 ], [ -96.162165218406827, 30.054250229632611 ], [ -96.162235218936559, 30.054206229629902 ], [ -96.162286218646344, 30.054146229370136 ], [ -96.162323218473063, 30.054069228998983 ], [ -96.162374219061164, 30.053860229834893 ], [ -96.162455219184778, 30.053640229174587 ], [ -96.162570218583511, 30.053327228982571 ], [ -96.162665218377214, 30.053140228893202 ], [ -96.162823218865825, 30.052887228777688 ], [ -96.162886219024358, 30.052832229177312 ], [ -96.16295621850702, 30.052799229174855 ], [ -96.163050218876151, 30.052794229482434 ], [ -96.163158219184766, 30.052816229360012 ], [ -96.163215218605785, 30.052860229222993 ], [ -96.163278218578824, 30.052926229246683 ], [ -96.163373218490008, 30.053096228845391 ], [ -96.163385218814511, 30.053151229579154 ], [ -96.163448219396784, 30.053228229011136 ], [ -96.163543219112597, 30.053316229074504 ], [ -96.163625218805379, 30.053360229313721 ], [ -96.163878219348632, 30.053410229182212 ], [ -96.164270218838212, 30.053448228972478 ], [ -96.164484219451822, 30.053454229039165 ], [ -96.164939219139967, 30.053448229613327 ], [ -96.165066218922604, 30.053399229038121 ], [ -96.165407219916048, 30.053223228770932 ], [ -96.165508219584936, 30.053212229546524 ], [ -96.165761219644892, 30.053234229465108 ], [ -96.165786219374539, 30.053262228703616 ], [ -96.165818219363985, 30.053278229097735 ], [ -96.165849219212987, 30.053300229278602 ], [ -96.165938219107417, 30.053410229100027 ], [ -96.166051219555911, 30.053432229174838 ], [ -96.166266219181907, 30.053383229305219 ], [ -96.166361219373201, 30.053416229020996 ], [ -96.166449220013249, 30.053465228840974 ], [ -96.166538220061398, 30.053537229549082 ], [ -96.166784219633669, 30.053938229419533 ], [ -96.166854220206289, 30.054009229305169 ], [ -96.166961219761291, 30.054053229200793 ], [ -96.167271220211973, 30.054141229687612 ], [ -96.167523219994848, 30.054158229256512 ], [ -96.167745219913655, 30.054182229699872 ], [ -96.167877220286712, 30.05419622893012 ], [ -96.168610220724844, 30.054345229123889 ], [ -96.168844220195354, 30.054416228936358 ], [ -96.168901220541073, 30.054482228862653 ], [ -96.168913220768601, 30.054554229500557 ], [ -96.16887522077954, 30.054620229081664 ], [ -96.168660220118738, 30.054796229208279 ], [ -96.16855322070198, 30.054900229490798 ], [ -96.168464219806182, 30.055026229674993 ], [ -96.168420219978401, 30.055169229868078 ], [ -96.168414219832897, 30.055296229497809 ], [ -96.168420220404485, 30.055900229283576 ], [ -96.168426220823036, 30.056005229175469 ], [ -96.168458220353031, 30.056120229491047 ], [ -96.168515220647137, 30.05623023008928 ], [ -96.168584220662893, 30.056318230020242 ], [ -96.168679220678442, 30.056390230102927 ], [ -96.168850220496722, 30.056456229907312 ], [ -96.168938220782849, 30.056511229876403 ], [ -96.169014220240015, 30.056533229513356 ], [ -96.169071220521289, 30.056527229691334 ], [ -96.16914622059096, 30.056500229962001 ], [ -96.169292220962788, 30.056379229819726 ], [ -96.169374220274761, 30.056296229482754 ], [ -96.169494220881774, 30.056148229281852 ], [ -96.169677220987452, 30.056027229984593 ], [ -96.169812220594935, 30.055955229467202 ], [ -96.170088220620542, 30.055807229459919 ], [ -96.170233220902759, 30.055763229662638 ], [ -96.170385221299185, 30.055747229925018 ], [ -96.170688220838485, 30.055763229646743 ], [ -96.170846220473607, 30.055791229883098 ], [ -96.171036220927945, 30.055857229777441 ], [ -96.171333221037386, 30.055994229377845 ], [ -96.171491220942343, 30.05609322945504 ], [ -96.171611221277104, 30.056181229822283 ], [ -96.171712221455238, 30.056269229149926 ], [ -96.171807221143467, 30.05631922986252 ], [ -96.171933221230091, 30.056352229837177 ], [ -96.172091221680148, 30.056363229928113 ], [ -96.172634221079704, 30.056374229560344 ], [ -96.172994221851795, 30.056390229132916 ], [ -96.173184221356053, 30.056412229896324 ], [ -96.173285221421281, 30.056445229832761 ], [ -96.173399221774545, 30.056506229562501 ], [ -96.173588221455134, 30.0566822299207 ], [ -96.173689221433747, 30.056792229304424 ], [ -96.173734221413113, 30.056852229972673 ], [ -96.173765222175376, 30.056940229470595 ], [ -96.173765221455142, 30.057039229915716 ], [ -96.173816221654405, 30.057154229420341 ], [ -96.173885222315164, 30.057259229671303 ], [ -96.17390922178221, 30.057318229232212 ], [ -96.173948221518543, 30.057413229874715 ], [ -96.173942221422763, 30.057501230151964 ], [ -96.173917222131465, 30.057600230187219 ], [ -96.17385322220909, 30.05769322950184 ], [ -96.173815221544942, 30.057770229791448 ], [ -96.173797222010634, 30.057863229771112 ], [ -96.173803221805656, 30.057940230215319 ], [ -96.173841221699377, 30.05801223003451 ], [ -96.173910221705881, 30.058056230174461 ], [ -96.174062221508677, 30.058094229892568 ], [ -96.174194221725614, 30.05815523007599 ], [ -96.17439722238818, 30.058309229458679 ], [ -96.174485222305819, 30.058397230297963 ], [ -96.174687222373393, 30.058567229513624 ], [ -96.174915222518067, 30.058743229900141 ], [ -96.175009222123933, 30.058803230238528 ], [ -96.175174222342648, 30.058869230137063 ], [ -96.175325221912303, 30.05890822978726 ], [ -96.175502222098373, 30.058996230347589 ], [ -96.175742222460613, 30.05900722996952 ], [ -96.175825222609134, 30.058996230061325 ], [ -96.175951222063176, 30.058919229957837 ], [ -96.176039222937959, 30.058902230199021 ], [ -96.176159221993814, 30.058897229608526 ], [ -96.176216222440544, 30.058880230017987 ], [ -96.176317222114406, 30.058831229473036 ], [ -96.176393222098653, 30.058809229823865 ], [ -96.176545222273319, 30.058820230288937 ], [ -96.176646222091804, 30.058859229499486 ], [ -96.176760222321164, 30.05893023030297 ], [ -96.177120222337962, 30.059210230260557 ], [ -96.177290223134904, 30.059326230186006 ], [ -96.177467222851575, 30.059403229556025 ], [ -96.177878222515687, 30.05954022998322 ], [ -96.177922222851024, 30.059568229554106 ], [ -96.177992222638466, 30.05972223016034 ], [ -96.178049223095044, 30.059810230163929 ], [ -96.178055223421481, 30.059892229633412 ], [ -96.178049223339457, 30.059936230426086 ], [ -96.178030223049916, 30.059974229822938 ], [ -96.177960222834528, 30.060035230207809 ], [ -96.177783223161214, 30.060161230494067 ], [ -96.177739222635907, 30.06021622968181 ], [ -96.17770122303817, 30.060321229929553 ], [ -96.177707223229035, 30.060546230064944 ], [ -96.177758223386377, 30.060590230105596 ], [ -96.177890222518812, 30.060662230403295 ], [ -96.177903223211217, 30.060689229900664 ], [ -96.178093222772176, 30.060744229896354 ], [ -96.178307222823975, 30.060837230187673 ], [ -96.178446222838559, 30.060881229940271 ], [ -96.178661222766237, 30.060887229858153 ], [ -96.178750223669056, 30.060854229795545 ], [ -96.178914223421103, 30.060739230097344 ], [ -96.178996223060736, 30.060700229936451 ], [ -96.179085223267975, 30.060673229735997 ], [ -96.179173223685893, 30.060651230384138 ], [ -96.179274223044118, 30.060656230296125 ], [ -96.179394223049599, 30.060700230131705 ], [ -96.17950822368266, 30.060788229801378 ], [ -96.179552223762855, 30.060882229835215 ], [ -96.17952722336058, 30.061079230094268 ], [ -96.179546223161523, 30.061233229881044 ], [ -96.179560223612356, 30.061272230512103 ], [ -96.179578223867992, 30.061324230289383 ], [ -96.179622223323037, 30.061448230725905 ], [ -96.17967822371871, 30.061734230040983 ], [ -96.179780223408727, 30.062052230794276 ], [ -96.17983622313271, 30.062146230656936 ], [ -96.179893223764822, 30.062184230188521 ], [ -96.179994223258049, 30.06220623083632 ], [ -96.180121223375465, 30.06221223034369 ], [ -96.180500223464833, 30.062140230862141 ], [ -96.180620223473696, 30.062162230705901 ], [ -96.180727223867024, 30.062217230367803 ], [ -96.180854223804516, 30.062410230906309 ], [ -96.180892223817324, 30.062520230541534 ], [ -96.180942223917469, 30.062602230236941 ], [ -96.181024223881877, 30.062685230353321 ], [ -96.181176224112704, 30.062756230827286 ], [ -96.181359223695509, 30.062805230776323 ], [ -96.181437224227849, 30.062799230142925 ], [ -96.181492224151057, 30.062794230759181 ], [ -96.181580223603873, 30.062761230393424 ], [ -96.181738223844803, 30.06267423039521 ], [ -96.181808223765998, 30.062624230222116 ], [ -96.181884224103143, 30.062509230178655 ], [ -96.181940224564883, 30.062448230318989 ], [ -96.181991223730378, 30.06243223047559 ], [ -96.182269224690288, 30.062465230401404 ], [ -96.182433223870646, 30.062437230016059 ], [ -96.182591224471963, 30.062382230103804 ], [ -96.182768224215067, 30.062360230257408 ], [ -96.182882224285933, 30.062355230521533 ], [ -96.18300222465416, 30.062366230627195 ], [ -96.183116224801552, 30.062404230260238 ], [ -96.183217224542261, 30.062470230605921 ], [ -96.183280224504955, 30.062536230548819 ], [ -96.183291224885338, 30.062577230771169 ], [ -96.18330522413882, 30.062630230832404 ], [ -96.183343224022934, 30.06276723054037 ], [ -96.183350224256415, 30.062877230483267 ], [ -96.18337522487117, 30.062954230368952 ], [ -96.183451224098008, 30.063026230145592 ], [ -96.183539224821715, 30.063031230574509 ], [ -96.183647224199973, 30.06302023070198 ], [ -96.183811224700548, 30.062927230303771 ], [ -96.183912224549729, 30.06283323025955 ], [ -96.183994224783774, 30.062784230266384 ], [ -96.184146224860285, 30.062663230050966 ], [ -96.184310224714949, 30.062492230648623 ], [ -96.184398224423546, 30.062492230282999 ], [ -96.184468224595221, 30.062542230463972 ], [ -96.184544224966885, 30.0626132306869 ], [ -96.184670225212983, 30.062784230250241 ], [ -96.184765224365222, 30.062855230276814 ], [ -96.184847224463809, 30.062888230303514 ], [ -96.184929224957131, 30.062894230365252 ], [ -96.184980224475112, 30.062883230525127 ], [ -96.185163224635957, 30.062696230428887 ], [ -96.185264225220635, 30.062547230599726 ], [ -96.185372224872879, 30.06245922994599 ], [ -96.185504225098555, 30.062377230067881 ], [ -96.185618225213929, 30.062333230632657 ], [ -96.18573222468865, 30.062333230495792 ], [ -96.185845225374862, 30.062355230713116 ], [ -96.186250224988427, 30.062641230382852 ], [ -96.186364225545546, 30.062679229941949 ], [ -96.186446225594196, 30.062690230192004 ], [ -96.186547225526141, 30.062723230693432 ], [ -96.186591225501473, 30.062778229928735 ], [ -96.186667225580806, 30.06296523016454 ], [ -96.186749225536289, 30.063108230183605 ], [ -96.186850225839649, 30.063229230116871 ], [ -96.186932225576811, 30.063273230038106 ], [ -96.187027225659648, 30.063300230856321 ], [ -96.187160225068652, 30.063301230784667 ], [ -96.187261225685702, 30.063284230380656 ], [ -96.187387225425752, 30.06327923063461 ], [ -96.187457226005719, 30.063284229973245 ], [ -96.18753322572033, 30.063317230025074 ], [ -96.187577225321391, 30.063366230627352 ], [ -96.187602225468524, 30.063421230850146 ], [ -96.187678225518866, 30.063515230564349 ], [ -96.187773225491128, 30.063575230819115 ], [ -96.187981225401089, 30.063658230123753 ], [ -96.188082226225532, 30.063718230246931 ], [ -96.188120225816746, 30.063790230123587 ], [ -96.188133226045792, 30.063850230301448 ], [ -96.188183225793424, 30.063905230836099 ], [ -96.188247226255527, 30.06394423041467 ], [ -96.188436225327067, 30.064004230865528 ], [ -96.18870822603337, 30.064114230112711 ], [ -96.188878225685613, 30.064257230830549 ], [ -96.189087226322215, 30.064394231002016 ], [ -96.189194226249015, 30.064427230371308 ], [ -96.189295225677427, 30.064427230570551 ], [ -96.189504226434778, 30.064400230159702 ], [ -96.18956122571268, 30.064400230678086 ], [ -96.189656226560274, 30.064460230462696 ], [ -96.189877225968104, 30.064625230888275 ], [ -96.189997225955167, 30.064724230539944 ], [ -96.190130225844143, 30.064889230977744 ], [ -96.190186226509326, 30.064911230769258 ], [ -96.190281226735223, 30.064900230875782 ], [ -96.190566226175207, 30.064768230940711 ], [ -96.190698226534749, 30.064735231009013 ], [ -96.190875226691503, 30.064730230748424 ], [ -96.191033226024715, 30.06474123076557 ], [ -96.19116622627989, 30.064779230605318 ], [ -96.191242227075492, 30.064851230329843 ], [ -96.191412226837301, 30.064917230263639 ], [ -96.19157022615444, 30.064961230478175 ], [ -96.191842226815311, 30.065010230785362 ], [ -96.19209522709987, 30.065070230993481 ], [ -96.192253227247988, 30.065125230685819 ], [ -96.192486227403961, 30.065186230982082 ], [ -96.192588226933736, 30.065197230904143 ], [ -96.192878226629801, 30.065186230708413 ], [ -96.193011226941564, 30.065191230574769 ], [ -96.193283227565971, 30.065147230949879 ], [ -96.193447227205823, 30.065098230891959 ], [ -96.193712227566593, 30.064972230126806 ], [ -96.193807227393478, 30.064961230447938 ], [ -96.193933226747433, 30.064971230559344 ], [ -96.194148227773709, 30.065015230915371 ], [ -96.194565227170813, 30.065004230205904 ], [ -96.194667227560686, 30.064988230526822 ], [ -96.19491922710705, 30.064906230617346 ], [ -96.195014227262476, 30.06488923003019 ], [ -96.195140227459873, 30.064889230422015 ], [ -96.195431227256293, 30.064988230264667 ], [ -96.195539227830423, 30.064988230150135 ], [ -96.195987227590535, 30.064873230244572 ], [ -96.196853227804169, 30.064741230165286 ], [ -96.196897228449259, 30.064719230308725 ], [ -96.197030228266485, 30.064708230239543 ], [ -96.197093228025125, 30.064719230219438 ], [ -96.197207227810978, 30.06473523070067 ], [ -96.197529227946958, 30.064818230249816 ], [ -96.197687227695098, 30.064867230656688 ], [ -96.197820227860618, 30.064922230499647 ], [ -96.197927228775271, 30.064993230174903 ], [ -96.198097228293378, 30.0651592301008 ], [ -96.198136228096217, 30.065197230001765 ], [ -96.198332228040286, 30.065466230074136 ], [ -96.19850922849777, 30.065576230684176 ], [ -96.198787228982212, 30.065609230407368 ], [ -96.199279228598371, 30.065620230772648 ], [ -96.199576228387713, 30.065664230601204 ], [ -96.199659228672843, 30.065735230586039 ], [ -96.199703228959876, 30.065884230120329 ], [ -96.199810228338407, 30.066038230943207 ], [ -96.20006922839238, 30.066252230812346 ], [ -96.200234228818275, 30.066356230824379 ], [ -96.200354228904757, 30.066450230646822 ], [ -96.200575229468271, 30.066593230481569 ], [ -96.200796228642105, 30.066681230454048 ], [ -96.201049229310243, 30.066675231035841 ], [ -96.201232229075302, 30.066648230506644 ], [ -96.201333228897184, 30.06667023024665 ], [ -96.201365229114046, 30.066686230923377 ], [ -96.201428229226664, 30.066686230391308 ], [ -96.201655229212989, 30.066543230408218 ], [ -96.201820229819958, 30.066477230806836 ], [ -96.202382229153272, 30.066202230062508 ], [ -96.20247722960714, 30.066186230392873 ], [ -96.202610229732102, 30.066202230896565 ], [ -96.20271122915625, 30.066246230096837 ], [ -96.202831229277891, 30.066285230038215 ], [ -96.203014229803841, 30.066329230604882 ], [ -96.203273229214858, 30.066477230754675 ], [ -96.20341823006595, 30.066521230693173 ], [ -96.2036972298866, 30.066549230835509 ], [ -96.203829230039503, 30.066582230367768 ], [ -96.203930229800349, 30.06663123063214 ], [ -96.204050230294058, 30.066669230512801 ], [ -96.204158229507016, 30.066719230750529 ], [ -96.204259229480527, 30.066746230277751 ], [ -96.204360229851417, 30.066746230863192 ], [ -96.20469523044305, 30.066669230795217 ], [ -96.204853230338571, 30.066642230709824 ], [ -96.205030230382022, 30.066625230612555 ], [ -96.205308229958518, 30.06663623067373 ], [ -96.2054152306725, 30.066653230067875 ], [ -96.205535230760276, 30.06669723045626 ], [ -96.205624230125196, 30.066752230883207 ], [ -96.205706230451753, 30.066785230571909 ], [ -96.205883230551166, 30.066818230356251 ], [ -96.206104230604993, 30.06684523019662 ], [ -96.206363230227993, 30.066983230186267 ], [ -96.206445230463871, 30.066977230457393 ], [ -96.206528230393744, 30.06695523027064 ], [ -96.206591230961251, 30.066950230745306 ], [ -96.206679230418729, 30.066966230575698 ], [ -96.206749231075136, 30.06697123062122 ], [ -96.206793230440724, 30.066966230532792 ], [ -96.206843230904497, 30.066939230115949 ], [ -96.206945230908076, 30.066851230490069 ], [ -96.20717823090979, 30.066730230070913 ], [ -96.207336230972686, 30.066697230646408 ], [ -96.207545230727305, 30.066554230470643 ], [ -96.207652230523067, 30.066444229926187 ], [ -96.20777923036826, 30.066191230142763 ], [ -96.20798723074779, 30.065993229901665 ], [ -96.208082231379166, 30.065861230188467 ], [ -96.208271230910981, 30.065553230455706 ], [ -96.208373230630471, 30.065471229797719 ], [ -96.208455230681651, 30.065377229659152 ], [ -96.20851823133529, 30.065229229750695 ], [ -96.208530230801472, 30.064822229993517 ], [ -96.208499230742206, 30.064300229810978 ], [ -96.208448231098643, 30.063750229655927 ], [ -96.20844823131857, 30.063618229414317 ], [ -96.208499231197848, 30.063465229995042 ], [ -96.208555230470964, 30.063360230111762 ], [ -96.208581230869143, 30.06325622977657 ], [ -96.208846231437036, 30.062673229959081 ], [ -96.208947230531322, 30.062503229535167 ], [ -96.209099231462687, 30.062294229520102 ], [ -96.209181230914481, 30.062250229035818 ], [ -96.20933423070295, 30.062207229645182 ], [ -96.209396231011468, 30.062189229785194 ], [ -96.209490230680302, 30.062184229075861 ], [ -96.20958523128084, 30.062195229671232 ], [ -96.209705231172578, 30.06226122968447 ], [ -96.209971230887646, 30.062310229396626 ], [ -96.210046231006402, 30.062376229080918 ], [ -96.210061231726016, 30.062404229639057 ], [ -96.210078231372137, 30.062437229463882 ], [ -96.210059231591202, 30.062590229472136 ], [ -96.210065231629017, 30.062634229555208 ], [ -96.21007223099744, 30.062750229349128 ], [ -96.210121230903667, 30.062847229099823 ], [ -96.210160231051987, 30.062926229592435 ], [ -96.210175230950512, 30.062947229300363 ], [ -96.210296231198882, 30.063120229813066 ], [ -96.210325231035071, 30.063162229194614 ], [ -96.210382231106934, 30.063261229427333 ], [ -96.210432230903436, 30.063371229891043 ], [ -96.210470231255627, 30.063503229968131 ], [ -96.210596231012843, 30.063699229559774 ], [ -96.210622231750321, 30.063739230081612 ], [ -96.210716231733244, 30.063826229852371 ], [ -96.210736231580725, 30.063844229883077 ], [ -96.210837231257059, 30.06391522998647 ], [ -96.210878231777144, 30.063938230061098 ], [ -96.210954231033867, 30.063980229845438 ], [ -96.21109623152573, 30.064058229357403 ], [ -96.211191231101765, 30.064129230130661 ], [ -96.211437231334628, 30.064426229536242 ], [ -96.211525231743991, 30.064509230239658 ], [ -96.211647231226053, 30.064543230206308 ], [ -96.211759232217716, 30.064574229752477 ], [ -96.211873231559892, 30.064640229558925 ], [ -96.211993232021825, 30.06475023013115 ], [ -96.212063231695154, 30.06484923023492 ], [ -96.212286231652158, 30.065275229674793 ], [ -96.212391231675994, 30.065476229701133 ], [ -96.212524232281041, 30.065657230153665 ], [ -96.212726231591901, 30.065888229949923 ], [ -96.212846231843628, 30.065992229613851 ], [ -96.212954232278136, 30.066064230421105 ], [ -96.213055232636208, 30.066113230089051 ], [ -96.213162232268445, 30.066146230010276 ], [ -96.213302231998753, 30.066163230410965 ], [ -96.213554232049319, 30.066174230340692 ], [ -96.213569232507339, 30.066167230044975 ], [ -96.213662232798498, 30.066124230049684 ], [ -96.213725231898977, 30.066135230282939 ], [ -96.213794232803195, 30.066168229895688 ], [ -96.213908232685682, 30.06624022972867 ], [ -96.214066232771899, 30.066393229991174 ], [ -96.214142232277368, 30.066586230507969 ], [ -96.214161232733943, 30.066712229822251 ], [ -96.214148232300687, 30.067075230270504 ], [ -96.214092232779421, 30.06721223034862 ], [ -96.213997232377849, 30.067394230509663 ], [ -96.213953232584956, 30.06755923061862 ], [ -96.213883232594668, 30.067625230428018 ], [ -96.213833231979834, 30.067713230033423 ], [ -96.213814232472828, 30.067795230501261 ], [ -96.213807232447792, 30.067867230240257 ], [ -96.213833232276713, 30.067927230733527 ], [ -96.213864232239686, 30.068097230526252 ], [ -96.213858232605745, 30.068240230807241 ], [ -96.213814232079898, 30.068356230679338 ], [ -96.213883232866934, 30.068729230641178 ], [ -96.213845232869588, 30.068823230812555 ], [ -96.213831232750465, 30.068957230782004 ], [ -96.213827232648711, 30.068993230198998 ], [ -96.213839232418721, 30.069032230506057 ], [ -96.213864232134824, 30.069068230854331 ], [ -96.213877232183947, 30.06908723041921 ], [ -96.214004232347463, 30.069230231079207 ], [ -96.21411123230898, 30.0693182302882 ], [ -96.214237232848319, 30.069389230356077 ], [ -96.214351232702029, 30.069438230273853 ], [ -96.214560232858361, 30.069499230447526 ], [ -96.214813232668661, 30.069559230601524 ], [ -96.215305233168564, 30.069559230343554 ], [ -96.215729233161582, 30.069598231031129 ], [ -96.215931233457425, 30.069620230518172 ], [ -96.216051233582746, 30.069647230998459 ], [ -96.216159232897709, 30.069685230320353 ], [ -96.21621523361209, 30.069740230500365 ], [ -96.216266232801544, 30.069894230887513 ], [ -96.216329232660541, 30.070004230767537 ], [ -96.216424233019325, 30.070125231052817 ], [ -96.216481233230965, 30.07023023097538 ], [ -96.216576233698774, 30.070328230882161 ], [ -96.216923233262904, 30.0705262309272 ], [ -96.217309233619844, 30.070620230434255 ], [ -96.21772623353111, 30.070675230874119 ], [ -96.217865233906423, 30.070708230399191 ], [ -96.21806723385339, 30.070713230897571 ], [ -96.218213233371515, 30.070658230754439 ], [ -96.218421233925341, 30.070647230895421 ], [ -96.218554233737976, 30.070685231151579 ], [ -96.218693233544514, 30.07076223057917 ], [ -96.218743234196964, 30.070845230450754 ], [ -96.218769234177046, 30.071026231069432 ], [ -96.218762233392184, 30.071081230679891 ], [ -96.218706233621305, 30.071224230603189 ], [ -96.218428234290272, 30.071708231085683 ], [ -96.218415233321338, 30.071763231052202 ], [ -96.218421233502227, 30.071790231218269 ], [ -96.218459233376876, 30.071818230965366 ], [ -96.218636233703393, 30.071867231139951 ], [ -96.21886423436392, 30.071955230928062 ], [ -96.219053233442125, 30.072087231036821 ], [ -96.219136233740699, 30.072180231444516 ], [ -96.219426234032497, 30.072417231029444 ], [ -96.219477233735233, 30.072450231500838 ], [ -96.219679233967028, 30.072521231516927 ], [ -96.219780233878424, 30.072609230887529 ], [ -96.219844233872465, 30.072625230946606 ], [ -96.219970234443025, 30.072620231175975 ], [ -96.220096234042487, 30.072609231249579 ], [ -96.220153234333111, 30.072592231157454 ], [ -96.220292234315821, 30.072554231321167 ], [ -96.220406233971204, 30.072493231300975 ], [ -96.220513234523793, 30.072455231081843 ], [ -96.220621234440671, 30.072466230677836 ], [ -96.220829234667704, 30.072548231351295 ], [ -96.220962234197955, 30.072620231323537 ], [ -96.221025234393693, 30.072680230725368 ], [ -96.221114234408361, 30.072691231516409 ], [ -96.221171234545238, 30.07268623102545 ], [ -96.221209234200586, 30.072664231025861 ], [ -96.221246234757814, 30.07260323146442 ], [ -96.221303234974997, 30.072460231441173 ], [ -96.221417234248619, 30.072383231125393 ], [ -96.221518235019019, 30.072361230986335 ], [ -96.221594234358989, 30.07236723062174 ], [ -96.221746234490269, 30.07240523136808 ], [ -96.222163234550109, 30.072383230995928 ], [ -96.222321234990872, 30.072433231472029 ], [ -96.222434234938348, 30.072487230905036 ], [ -96.222523234425253, 30.072515230947005 ], [ -96.222637235110966, 30.072515230891771 ], [ -96.222744235142741, 30.072504231226638 ], [ -96.223060235274971, 30.072405231156058 ], [ -96.223212234857698, 30.072399231317654 ], [ -96.223363234679354, 30.072487231036096 ], [ -96.223591235412528, 30.072575230798194 ], [ -96.223800235634656, 30.072646231052385 ], [ -96.223888235258542, 30.072652230839552 ], [ -96.223951235440865, 30.072630231061648 ], [ -96.224002235563361, 30.072592231289999 ], [ -96.224103234979268, 30.07248223140332 ], [ -96.224141234943104, 30.072421230959165 ], [ -96.224210235202293, 30.072372230811499 ], [ -96.224299234804462, 30.072355230927581 ], [ -96.224356235789131, 30.072333230727157 ], [ -96.224400235249746, 30.072240230679203 ], [ -96.224438235588252, 30.07219023123637 ], [ -96.224501235547081, 30.072174231214223 ], [ -96.224583235348277, 30.072185230476734 ], [ -96.224867235669564, 30.07227223104454 ], [ -96.224975235040731, 30.072322231270071 ], [ -96.22502523568923, 30.072377230983747 ], [ -96.225051235460114, 30.072432230688442 ], [ -96.225101235182947, 30.072564230654415 ], [ -96.225114235060929, 30.072652230540289 ], [ -96.225158235064441, 30.072740231380436 ], [ -96.225285235879227, 30.072916231217434 ], [ -96.225380235216548, 30.073080230986029 ], [ -96.225367235244548, 30.073157230978669 ], [ -96.225323235204741, 30.073240230971408 ], [ -96.225234236044557, 30.073570231007007 ], [ -96.225247235386277, 30.073647231565651 ], [ -96.225323236082602, 30.073767231070221 ], [ -96.225392235618827, 30.073806230748872 ], [ -96.225854236147512, 30.073866231144191 ], [ -96.225993236284921, 30.073905231109556 ], [ -96.226119235389817, 30.073971231176575 ], [ -96.226227236086274, 30.074042230818229 ], [ -96.226359236007198, 30.074103231577443 ], [ -96.22661923600046, 30.074185231052496 ], [ -96.22689023585491, 30.074322231212964 ], [ -96.227282235781828, 30.07464123110055 ], [ -96.227447236234809, 30.074745231726016 ], [ -96.228034236663078, 30.075157230931808 ], [ -96.228597236537439, 30.075597231091283 ], [ -96.228869236567206, 30.075723231281707 ], [ -96.228983236797504, 30.07574523147785 ], [ -96.229077236550197, 30.075712231001404 ], [ -96.229204236581907, 30.075652231534573 ], [ -96.229311236856731, 30.075657231420475 ], [ -96.229450236348086, 30.075685231154939 ], [ -96.229602237270896, 30.075745231246113 ], [ -96.229747237115021, 30.075828231428993 ], [ -96.229849236495909, 30.075932231137017 ], [ -96.229880237292292, 30.075937231150103 ], [ -96.230032236616722, 30.075926231477037 ], [ -96.230259237275504, 30.075860231173365 ], [ -96.230379237517099, 30.075844231373523 ], [ -96.230588236974398, 30.075844231443114 ], [ -96.230708236820703, 30.075866231027089 ], [ -96.230815237579051, 30.075866231376143 ], [ -96.230898237403252, 30.075904231490856 ], [ -96.230992237317977, 30.07592623131924 ], [ -96.231049237276665, 30.075943231417838 ], [ -96.23122623684047, 30.075959231366951 ], [ -96.23138423714289, 30.075986231608962 ], [ -96.231656236921495, 30.07600823183034 ], [ -96.231852237164489, 30.076008231170967 ], [ -96.232016237002398, 30.076030231321596 ], [ -96.23246523800654, 30.076129231107974 ], [ -96.23257323763697, 30.076140231804864 ], [ -96.232851237637433, 30.076200231846975 ], [ -96.233034238089701, 30.076189231566815 ], [ -96.233185237744394, 30.076189231357205 ], [ -96.233318237422694, 30.076200231582952 ], [ -96.233615237825802, 30.076255231057825 ], [ -96.233938237985811, 30.076299231344681 ], [ -96.234051238347462, 30.076266231215314 ], [ -96.234190237715211, 30.076200231228189 ], [ -96.234273237664681, 30.076178231105924 ], [ -96.234746238619536, 30.076095231084807 ], [ -96.235075238219693, 30.075941231388413 ], [ -96.235239237894717, 30.075892231147794 ], [ -96.235663238638992, 30.075787231567624 ], [ -96.235682238658725, 30.075765231228136 ], [ -96.235688238045199, 30.075683230766082 ], [ -96.235890238438941, 30.075628231421856 ], [ -96.236175238193439, 30.075512230987989 ], [ -96.236326238998203, 30.07548523139414 ], [ -96.236427238182628, 30.075474231016202 ], [ -96.236547238876852, 30.075474231440488 ], [ -96.237091238392239, 30.075589231254689 ], [ -96.237255238639065, 30.075594231212211 ], [ -96.237375238434666, 30.075561231381659 ], [ -96.237571238386309, 30.075479231257251 ], [ -96.237811238610504, 30.075429231220184 ], [ -96.237906238382934, 30.075424230994134 ], [ -96.238007239422132, 30.075424231408434 ], [ -96.238070239429405, 30.07544623100242 ], [ -96.238532239189652, 30.075506230793124 ], [ -96.238709239569005, 30.075583231465519 ], [ -96.238829238753979, 30.07561023112082 ], [ -96.239347239297061, 30.075621230621127 ], [ -96.239568239344251, 30.075577230739285 ], [ -96.239663239207161, 30.075478230972937 ], [ -96.239758238964242, 30.075341230613375 ], [ -96.239884239206347, 30.07528023059491 ], [ -96.239909239127215, 30.075253230890397 ], [ -96.239966238927195, 30.075220231199662 ], [ -96.240036239929793, 30.075214230774044 ], [ -96.240124239403244, 30.075181231221379 ], [ -96.240181239754776, 30.075099230800078 ], [ -96.240181239512182, 30.075049231196825 ], [ -96.240130239699809, 30.074994231297079 ], [ -96.240111239578255, 30.074934231204768 ], [ -96.240118239454162, 30.074879230776471 ], [ -96.240219239819922, 30.074725230424463 ], [ -96.240225239610837, 30.074643230714855 ], [ -96.240219239823134, 30.074538230922702 ], [ -96.240200239254619, 30.074423231071503 ], [ -96.240162239027669, 30.074291230894698 ], [ -96.240187239499036, 30.074175231146913 ], [ -96.240237239668815, 30.07407623034041 ], [ -96.240263239605468, 30.073983230446959 ], [ -96.240326239046993, 30.073889230384065 ], [ -96.240376239149256, 30.073834230953846 ], [ -96.240459239495934, 30.073834230944058 ], [ -96.240585239235514, 30.07390023081517 ], [ -96.240673239650803, 30.073972230305362 ], [ -96.240737239862355, 30.074038230772352 ], [ -96.240813239170606, 30.074071230723991 ], [ -96.240907239252095, 30.074060230457537 ], [ -96.241021239291513, 30.074005230357024 ], [ -96.241059239900892, 30.073944230791557 ], [ -96.241084239430407, 30.07389523059798 ], [ -96.241090240084532, 30.073680230331505 ], [ -96.241021239564105, 30.073312230155679 ], [ -96.240964239032337, 30.073109230923514 ], [ -96.240957239732964, 30.072982230187119 ], [ -96.240976239343965, 30.072938230636531 ], [ -96.241040239194078, 30.072922230800692 ], [ -96.241299239985324, 30.072982230602953 ], [ -96.241393240161486, 30.072977230909505 ], [ -96.241545239844541, 30.072916230440249 ], [ -96.24165924023842, 30.072911230342761 ], [ -96.241842239954536, 30.072834230019442 ], [ -96.241962239893624, 30.072795230682402 ], [ -96.242076239994276, 30.072740230605692 ], [ -96.242240240358129, 30.072646230598107 ], [ -96.24242324022552, 30.072509230491555 ], [ -96.242505239725105, 30.072476229967965 ], [ -96.242733239968771, 30.072454229881487 ], [ -96.242790240266984, 30.072437230198471 ], [ -96.242872239565031, 30.072404230352095 ], [ -96.243036239534973, 30.072311230130271 ], [ -96.243099239637345, 30.072294230632547 ], [ -96.243188239921793, 30.072300230171372 ], [ -96.243321239969532, 30.072355230163375 ], [ -96.243649240068635, 30.072410230601982 ], [ -96.243788240537199, 30.072415229907396 ], [ -96.243921240072837, 30.072486230457791 ], [ -96.244010240035593, 30.072580230482824 ], [ -96.244092240049, 30.07265723030989 ], [ -96.244155240233852, 30.072767229925489 ], [ -96.244218240347735, 30.072904230802063 ], [ -96.244225240773631, 30.072970230685314 ], [ -96.24421824056256, 30.07312423065493 ], [ -96.244250240848416, 30.073184230439018 ], [ -96.244377240804397, 30.073349230330024 ], [ -96.244933240766187, 30.07399223026783 ], [ -96.245003240169822, 30.074053230529639 ], [ -96.245085240763729, 30.074096230372021 ], [ -96.245104241174687, 30.074086230516684 ], [ -96.245205240569874, 30.074069230827039 ], [ -96.245565240765487, 30.074102230359554 ], [ -96.245660240651688, 30.074118230495984 ], [ -96.245736241123979, 30.074184230720068 ], [ -96.245774240870887, 30.074300230719363 ], [ -96.245812240427412, 30.074360230257707 ], [ -96.245888240770839, 30.07441023102983 ], [ -96.246071241024168, 30.074492230411309 ], [ -96.246191240675941, 30.074580230387426 ], [ -96.246273241319088, 30.074662230712129 ], [ -96.246362240944904, 30.074717230488805 ], [ -96.24653924151481, 30.074783230598896 ], [ -96.246791240867239, 30.074838230396946 ], [ -96.246874241387005, 30.074887230614536 ], [ -96.247089241549816, 30.075074230623621 ], [ -96.247424241640147, 30.075261230892757 ], [ -96.247512240890117, 30.075261230492774 ], [ -96.247594241511706, 30.075244230764532 ], [ -96.247639241702899, 30.07522223047453 ], [ -96.247639240887239, 30.075184230894326 ], [ -96.247461241017291, 30.075035230900863 ], [ -96.247436241140505, 30.074981230897102 ], [ -96.247474241444436, 30.074838230487941 ], [ -96.247518241768717, 30.074799230429512 ], [ -96.247626241103106, 30.074777230423948 ], [ -96.247992240950566, 30.074766230256952 ], [ -96.248163241769831, 30.074766230152573 ], [ -96.24820724181437, 30.074777230293769 ], [ -96.24826424131146, 30.074837230865583 ], [ -96.24829624103586, 30.074914230568385 ], [ -96.248359241295518, 30.07513423090565 ], [ -96.248397241082529, 30.075162230983793 ], [ -96.248447241932595, 30.075167230253072 ], [ -96.248492242038978, 30.075156230691519 ], [ -96.248530241696486, 30.075134230313335 ], [ -96.248574241080149, 30.075090230670732 ], [ -96.248593241104047, 30.075030230807499 ], [ -96.248631241383137, 30.074986230194344 ], [ -96.248681241930754, 30.074980231067343 ], [ -96.248744241751083, 30.07500223103289 ], [ -96.24891524195715, 30.075029230301318 ], [ -96.248972241694318, 30.075024230656279 ], [ -96.24902224204935, 30.075007230387431 ], [ -96.249105241394275, 30.074947230641854 ], [ -96.24916124120189, 30.074881230690274 ], [ -96.249206242201026, 30.074798230278425 ], [ -96.249243242055044, 30.074623230115222 ], [ -96.24927524129663, 30.074557230846349 ], [ -96.249326241831113, 30.074507230748075 ], [ -96.249401242142085, 30.074463230734523 ], [ -96.249464242251278, 30.074375230175754 ], [ -96.249502242146704, 30.074238230096327 ], [ -96.249559241966494, 30.074210230144402 ], [ -96.24964824145998, 30.074210230780778 ], [ -96.249742241741302, 30.074243230216197 ], [ -96.2498252422413, 30.074259230078148 ], [ -96.250008241849031, 30.07426523033131 ], [ -96.250129241987196, 30.074249230744879 ], [ -96.250426242401986, 30.074189230642151 ], [ -96.250818241985584, 30.074073230232571 ], [ -96.250888242372767, 30.07406823033417 ], [ -96.251115242287682, 30.074151230796812 ], [ -96.251248242375894, 30.074250230421132 ], [ -96.251368242530759, 30.074387230777489 ], [ -96.25165224265605, 30.074810230453188 ], [ -96.25174024189792, 30.074887230725849 ], [ -96.251911242523192, 30.074893230333124 ], [ -96.252126242650917, 30.074838230677763 ], [ -96.252278242296015, 30.074855230486349 ], [ -96.252410242236905, 30.074926230835047 ], [ -96.252473242985033, 30.07502023054079 ], [ -96.252537242079299, 30.075163230388522 ], [ -96.252562242159556, 30.075333230359796 ], [ -96.252631242744783, 30.075657230277745 ], [ -96.252681242861172, 30.075745230408796 ], [ -96.252764243096337, 30.075784230251976 ], [ -96.252915242995812, 30.075801230531749 ], [ -96.253210242652244, 30.075771231053938 ], [ -96.253262242634193, 30.075766230310389 ], [ -96.253307243251896, 30.075762230775624 ], [ -96.253522242582832, 30.075768230219921 ], [ -96.253693242589307, 30.075812230632291 ], [ -96.253876242749428, 30.075828230329602 ], [ -96.254009243165626, 30.075735230751505 ], [ -96.254085242980366, 30.075587230457412 ], [ -96.254110242900481, 30.075279230335326 ], [ -96.254110242623099, 30.075163230293978 ], [ -96.253876242412261, 30.075064230770174 ], [ -96.253857243437182, 30.075009230230993 ], [ -96.253883243221139, 30.074889230366921 ], [ -96.254054242764141, 30.074608230224591 ], [ -96.254167243205075, 30.074548230163032 ], [ -96.254344242505695, 30.074499230494233 ], [ -96.254610242679547, 30.074537230720107 ], [ -96.254736242976662, 30.074592230557158 ], [ -96.254780243079239, 30.074691230219941 ], [ -96.254768242717333, 30.074818230766496 ], [ -96.254698242624912, 30.074960230374103 ], [ -96.254578242910654, 30.075015230396023 ], [ -96.254508243517634, 30.075103230182567 ], [ -96.254496242767516, 30.075230230685083 ], [ -96.254502243600996, 30.075296230177518 ], [ -96.254597243590737, 30.075373230705722 ], [ -96.254723243469556, 30.07545023069699 ], [ -96.254786243406386, 30.075609230854102 ], [ -96.254837243661399, 30.07568623062377 ], [ -96.254925243547262, 30.075725230137337 ], [ -96.25503924327765, 30.075769230862221 ], [ -96.255209242909302, 30.07579623050573 ], [ -96.255683243409663, 30.075774230380304 ], [ -96.255816243958193, 30.075840230444317 ], [ -96.255905243034093, 30.075945230385706 ], [ -96.256012243002488, 30.076005230186759 ], [ -96.256220243539218, 30.076016230571412 ], [ -96.256480244071241, 30.075973230878702 ], [ -96.256511243980739, 30.075960230222755 ], [ -96.256732243770458, 30.075868230514512 ], [ -96.256947244144897, 30.075797230196319 ], [ -96.257105243738025, 30.075775230276914 ], [ -96.257257243632012, 30.075830230208876 ], [ -96.257339243572758, 30.075902230505537 ], [ -96.257421243864968, 30.0760012301463 ], [ -96.257630243525483, 30.076204230446727 ], [ -96.257775243591141, 30.076226230209794 ], [ -96.257946244386773, 30.076221230127022 ], [ -96.25811624435606, 30.076177230858097 ], [ -96.258584243726986, 30.076007230448081 ], [ -96.258995244346337, 30.075902230194799 ], [ -96.259185244583179, 30.075836230207106 ], [ -96.259343243992532, 30.075749230619166 ], [ -96.259469244750932, 30.075754230141175 ], [ -96.259513243938656, 30.075826230512224 ], [ -96.259532244191746, 30.07588623031512 ], [ -96.259526244547686, 30.076155230110974 ], [ -96.25966524460847, 30.076414230795326 ], [ -96.259639244946499, 30.076634230327656 ], [ -96.259664244288658, 30.076788230228782 ], [ -96.259671244995204, 30.076936230568748 ], [ -96.259746244757849, 30.077134231071849 ], [ -96.259828244720936, 30.077282230445487 ], [ -96.260233244856778, 30.077645230780476 ], [ -96.260485244605562, 30.077838230656941 ], [ -96.260954245302898, 30.078122230413729 ], [ -96.260965245347506, 30.078140230590595 ], [ -96.261060244749117, 30.078129231165367 ], [ -96.261275245116892, 30.078069231240093 ], [ -96.261446244532948, 30.077954230444558 ], [ -96.261654244550442, 30.077888230853798 ], [ -96.261762245253962, 30.07791523076078 ], [ -96.261901245387861, 30.077981230399832 ], [ -96.262008245111176, 30.078108230923846 ], [ -96.26207124511366, 30.078201230453306 ], [ -96.262166245378637, 30.078245230598355 ], [ -96.262331244773364, 30.078240230806117 ], [ -96.262849245804318, 30.078141230838249 ], [ -96.26297524586947, 30.078136230378963 ], [ -96.263032245062803, 30.078141230384919 ], [ -96.263095244929346, 30.078185230846636 ], [ -96.263152245353552, 30.078257231053648 ], [ -96.263120245228265, 30.078477230636064 ], [ -96.263152245200772, 30.078609231275827 ], [ -96.2632402450825, 30.078658230823169 ], [ -96.263449245926239, 30.078675231178064 ], [ -96.26350024580924, 30.078598231048929 ], [ -96.263462245703963, 30.078306231166835 ], [ -96.26350624554091, 30.078284230540401 ], [ -96.263854245502998, 30.078295230433692 ], [ -96.263967245374204, 30.078411230455785 ], [ -96.263904245285275, 30.078559230668258 ], [ -96.263923245245167, 30.078702230998694 ], [ -96.263967245875492, 30.078719231274277 ], [ -96.264043245744389, 30.078713231228537 ], [ -96.264182245414261, 30.07861423113642 ], [ -96.264233245291663, 30.078614231162518 ], [ -96.264296246177324, 30.078647230997884 ], [ -96.26435324601465, 30.078724230757839 ], [ -96.264416246181398, 30.079219231164601 ], [ -96.264442246241643, 30.079345231215413 ], [ -96.264516245763716, 30.079708230790139 ], [ -96.264523245983852, 30.079890231462784 ], [ -96.264516245853471, 30.080016231415165 ], [ -96.264447245932203, 30.080187231493568 ], [ -96.264352245930084, 30.080373230721474 ], [ -96.264232245469245, 30.080555230754417 ], [ -96.264206245359205, 30.080665231022699 ], [ -96.264213245328165, 30.080753231294395 ], [ -96.264244245343221, 30.080819231619092 ], [ -96.264314246160637, 30.080879231452929 ], [ -96.2643702453488, 30.080907231202946 ], [ -96.264522245372689, 30.080951231556465 ], [ -96.264705246427482, 30.081028230910309 ], [ -96.26475624609175, 30.081088231058246 ], [ -96.264762246222574, 30.081149231490144 ], [ -96.264718246416464, 30.081209230968863 ], [ -96.264629245544597, 30.081253231573825 ], [ -96.26458524608725, 30.081319230960542 ], [ -96.264566246190967, 30.081407231009884 ], [ -96.264566246459722, 30.081649231156359 ], [ -96.264585245723083, 30.081698231768161 ], [ -96.264610245752991, 30.081737231530123 ], [ -96.264743245921778, 30.081748231125019 ], [ -96.264794245849089, 30.081742230964327 ], [ -96.264831245556053, 30.08172623182605 ], [ -96.264964245651953, 30.081572231412832 ], [ -96.265027246492323, 30.081517231357935 ], [ -96.265116246511397, 30.081512231460177 ], [ -96.265179245947152, 30.081528231687027 ], [ -96.265236246179157, 30.081583231761236 ], [ -96.265249246145601, 30.081654231257538 ], [ -96.265305245689703, 30.081836231230977 ], [ -96.265356245837012, 30.081929231259586 ], [ -96.265507246717206, 30.082094231351579 ], [ -96.265533245747761, 30.082232231775315 ], [ -96.265602246291579, 30.082331231349169 ], [ -96.26565324575482, 30.082364231817618 ], [ -96.265722246385067, 30.082369231052613 ], [ -96.265798246350329, 30.082347231634628 ], [ -96.265836245882284, 30.082314231817953 ], [ -96.265912246451137, 30.082095231437972 ], [ -96.265956246420117, 30.082029231657589 ], [ -96.266019246430062, 30.081979231237035 ], [ -96.266083246675919, 30.081963231240263 ], [ -96.266260246445611, 30.081990231682262 ], [ -96.266373246805315, 30.082051230989791 ], [ -96.266386246544641, 30.082111231202997 ], [ -96.26637324642553, 30.082166231492984 ], [ -96.266323246745714, 30.082238231178163 ], [ -96.266240246230524, 30.082326231370676 ], [ -96.266209246463802, 30.08240223136859 ], [ -96.266203245954515, 30.082468231423416 ], [ -96.266209245997587, 30.082529231737698 ], [ -96.266266246795411, 30.082611231521497 ], [ -96.266322246413239, 30.082639231321011 ], [ -96.266392245991014, 30.082650231506857 ], [ -96.266626246842634, 30.082661231534061 ], [ -96.266815246248171, 30.082650231302512 ], [ -96.266872246356641, 30.082617231227886 ], [ -96.266980246541593, 30.082496231579011 ], [ -96.267043247020808, 30.082463231580725 ], [ -96.267106246103182, 30.082447231501696 ], [ -96.267157246841279, 30.082447231299625 ], [ -96.267220246743605, 30.082469231396754 ], [ -96.26723924669551, 30.082491231429234 ], [ -96.267264246475193, 30.082546231694945 ], [ -96.267271246192493, 30.082694231063101 ], [ -96.267327246835464, 30.082788231577329 ], [ -96.267397246501346, 30.0828372314426 ], [ -96.26749224624669, 30.082854231945252 ], [ -96.267719247234098, 30.082859231340194 ], [ -96.267808246518925, 30.082876231501473 ], [ -96.267884246833461, 30.082914231187363 ], [ -96.26790924651354, 30.082936231210745 ], [ -96.267953246791421, 30.083030231236275 ], [ -96.267985246391717, 30.083118232005912 ], [ -96.267985246725232, 30.083195231342025 ], [ -96.267953247164584, 30.08326623203844 ], [ -96.267871246677757, 30.083337231886354 ], [ -96.267826246955437, 30.083392231751212 ], [ -96.26780124697359, 30.083519232067609 ], [ -96.267750246890657, 30.083596231859346 ], [ -96.267668246808185, 30.083684231557864 ], [ -96.267567247200319, 30.083816231437098 ], [ -96.267523247142861, 30.083898231819688 ], [ -96.267573247158523, 30.084041231358093 ], [ -96.267579247265573, 30.084200231987452 ], [ -96.267794246513049, 30.08454123171957 ], [ -96.267824246634191, 30.084598232041539 ], [ -96.267965246457251, 30.084866232054399 ], [ -96.26804724705066, 30.085053231948475 ], [ -96.26814824729945, 30.085223231630259 ], [ -96.268249247199051, 30.085360232043929 ], [ -96.268382247591404, 30.085437231671438 ], [ -96.268451247002474, 30.085520232132161 ], [ -96.268476246598766, 30.085597232120765 ], [ -96.268464247497135, 30.085679232242125 ], [ -96.268419247119127, 30.085806232314507 ], [ -96.268425247005439, 30.086031231984943 ], [ -96.268446246949225, 30.086040232126482 ], [ -96.268489247274488, 30.086059231806313 ], [ -96.268507247484393, 30.086122231718353 ], [ -96.268520246722218, 30.086136231833173 ], [ -96.268596247123583, 30.086152231880487 ], [ -96.268710247546863, 30.086196232228552 ], [ -96.2688232473146, 30.086262232040408 ], [ -96.268830247362501, 30.086323232573495 ], [ -96.268779247133168, 30.086378232647423 ], [ -96.268672246898191, 30.086460232277442 ], [ -96.268571246702052, 30.086608231993832 ], [ -96.268551247357607, 30.086691231838753 ], [ -96.268558246856074, 30.086828232646596 ], [ -96.268583247553991, 30.086955232581815 ], [ -96.268621246889126, 30.087054232203396 ], [ -96.26864624759861, 30.087180232276193 ], [ -96.268697246927729, 30.087323232502825 ], [ -96.26872824690814, 30.087548232706812 ], [ -96.268766247118208, 30.08768623223779 ], [ -96.268823247036124, 30.087763232375575 ], [ -96.268974247311576, 30.088054232622138 ], [ -96.269410247314909, 30.088791232993081 ], [ -96.269435246995059, 30.08887323276279 ], [ -96.269480247335352, 30.088950232525232 ], [ -96.269511247745697, 30.089071233147916 ], [ -96.269505247436058, 30.089141232496409 ], [ -96.269498247912722, 30.089220232638489 ], [ -96.269429247253512, 30.089302232943009 ], [ -96.269378247181521, 30.089417232409698 ], [ -96.269403247095624, 30.089500232906499 ], [ -96.269511247581235, 30.089544232413381 ], [ -96.269839247167724, 30.089560233131166 ], [ -96.269978247201919, 30.089616232555446 ], [ -96.270029248157897, 30.08969323301012 ], [ -96.270073247353182, 30.089797233046038 ], [ -96.270080247683808, 30.089923232680761 ], [ -96.270023247223577, 30.090055233175011 ], [ -96.269827247689435, 30.090281233097041 ], [ -96.269744247628651, 30.090544232698832 ], [ -96.269662247636731, 30.090671233371602 ], [ -96.269535247563311, 30.090764232692273 ], [ -96.269327247598326, 30.091006232812816 ], [ -96.269308247841224, 30.091110233241199 ], [ -96.269308247096362, 30.091237233104575 ], [ -96.269352247242892, 30.091374233322874 ], [ -96.26940224729978, 30.091501233377581 ], [ -96.269491248165025, 30.09164923324218 ], [ -96.269573247485212, 30.091737233391846 ], [ -96.269764247664156, 30.091776233136734 ], [ -96.269788247363763, 30.091781233227636 ], [ -96.269952248018086, 30.092029232989972 ], [ -96.270053247718465, 30.092111233352608 ], [ -96.270205248196433, 30.092210232982445 ], [ -96.270470247768344, 30.092364233249494 ], [ -96.270641248425548, 30.09248523360705 ], [ -96.270723247564277, 30.092672233778604 ], [ -96.270773248492162, 30.092848233251974 ], [ -96.270944248552482, 30.093310233594401 ], [ -96.271013247795736, 30.09353023311202 ], [ -96.271064247685018, 30.093887233504944 ], [ -96.271108248004822, 30.094008233790419 ], [ -96.27122824820573, 30.094118233294267 ], [ -96.271398247983598, 30.094195233959383 ], [ -96.27160124840448, 30.094233233686758 ], [ -96.271790248615417, 30.094255233256408 ], [ -96.272005247895393, 30.094316233760974 ], [ -96.272157248060822, 30.094393233743013 ], [ -96.272328248524602, 30.094431233815104 ], [ -96.272486248586006, 30.094437233373323 ], [ -96.272644248346722, 30.094349233931705 ], [ -96.272852248172043, 30.094107233521353 ], [ -96.272941248394432, 30.094025233836529 ], [ -96.27310524886353, 30.094030233618007 ], [ -96.273276248450571, 30.094058233237835 ], [ -96.273434248764545, 30.094069233574604 ], [ -96.273876248599905, 30.093981233792558 ], [ -96.274028249189968, 30.093910233727271 ], [ -96.274167249448922, 30.093800233626638 ], [ -96.274294249298023, 30.093679233799644 ], [ -96.274509248958125, 30.093393232989222 ], [ -96.274616248931409, 30.093278233458452 ], [ -96.27480024881784, 30.093031233562023 ], [ -96.275179248983576, 30.092811233525687 ], [ -96.275381249005093, 30.09276723358618 ], [ -96.275464248770234, 30.09273423337217 ], [ -96.275660249637056, 30.092569233543504 ], [ -96.276001249536762, 30.092421233520273 ], [ -96.276178249007643, 30.092383232981653 ], [ -96.276273249612956, 30.092416233390118 ], [ -96.276443249393438, 30.092526233049004 ], [ -96.276671249506336, 30.092652233214668 ], [ -96.276911249924652, 30.092724233222665 ], [ -96.277101249670579, 30.092746232983419 ], [ -96.277259249592873, 30.092779233313795 ], [ -96.2773792499992, 30.09285023287643 ], [ -96.277549249566775, 30.093081233460943 ], [ -96.278169249888492, 30.093515233240815 ], [ -96.278510250270102, 30.093647233379411 ], [ -96.278990250600131, 30.093901233041898 ], [ -96.279635249832509, 30.094071233474825 ], [ -96.280096250024556, 30.094137233538067 ], [ -96.28036225033037, 30.093978233291907 ], [ -96.28082325102045, 30.093632233188572 ], [ -96.281279251016556, 30.093385232938772 ], [ -96.281500251219384, 30.093291232871966 ], [ -96.281835250561457, 30.093297233516957 ], [ -96.282021250991292, 30.093353233579759 ], [ -96.282088250469187, 30.09337423343398 ], [ -96.282619251080447, 30.093621233233399 ], [ -96.283680251161087, 30.094072233184438 ], [ -96.283927251939744, 30.094276233158585 ], [ -96.284053251675161, 30.094540233123226 ], [ -96.284167251885549, 30.094732233736401 ], [ -96.284211251911714, 30.094870233717145 ], [ -96.284255251596903, 30.095117233310273 ], [ -96.28431825125692, 30.09528723344101 ], [ -96.284432251523455, 30.095425233852509 ], [ -96.284432251942661, 30.095491233533366 ], [ -96.284476251796974, 30.095535233923769 ], [ -96.284748252066237, 30.095590233426826 ], [ -96.284894252087554, 30.095672233901862 ], [ -96.284963251358221, 30.09574923338446 ], [ -96.285033251614038, 30.095865233801234 ], [ -96.285165251472506, 30.096030233218222 ], [ -96.285304252156664, 30.096139233514936 ], [ -96.285418251970455, 30.096249233225297 ], [ -96.285563251939777, 30.09632723326596 ], [ -96.285753251522607, 30.096392233153946 ], [ -96.285936251751167, 30.096360233388936 ], [ -96.28613925228656, 30.09634923370113 ], [ -96.286556251786266, 30.096371234007371 ], [ -96.28708025212093, 30.096574233198758 ], [ -96.287156252208163, 30.096613233900641 ], [ -96.28753625208256, 30.096745233912177 ], [ -96.287795252701031, 30.096789233885669 ], [ -96.288264252183396, 30.09681523381111 ], [ -96.288383252673981, 30.096822233784955 ], [ -96.288901253073135, 30.096838233173113 ], [ -96.289005252474269, 30.096834233426009 ], [ -96.289147252761552, 30.09682823389441 ], [ -96.289356252683902, 30.096745233521251 ], [ -96.28948325275806, 30.096619233269582 ], [ -96.289584252493455, 30.09645423344897 ], [ -96.2896912530978, 30.096311233440179 ], [ -96.289837252644972, 30.096240233737603 ], [ -96.290039252597026, 30.096234233326928 ], [ -96.290203253081614, 30.096262233511897 ], [ -96.290374252891652, 30.096317233669279 ], [ -96.29067125319888, 30.096449233424728 ], [ -96.290934253026407, 30.096537233634159 ], [ -96.291252253796301, 30.096502233381024 ], [ -96.291655253142793, 30.096373233240417 ], [ -96.292856254232831, 30.096155233398036 ], [ -96.311878258031584, 30.09361523247156 ], [ -96.312106258252754, 30.093585232084756 ], [ -96.312328258787971, 30.093556232139839 ], [ -96.330857263137787, 30.091081231374162 ], [ -96.334068264362458, 30.090651230905287 ], [ -96.33620626406038, 30.090352230541328 ], [ -96.33748726458218, 30.09005523093111 ], [ -96.338487264958061, 30.0898652305243 ], [ -96.339997265280289, 30.089595230313609 ], [ -96.340717265794993, 30.089475230188761 ], [ -96.34073726542708, 30.089472230113948 ], [ -96.34272726597375, 30.089165230452871 ], [ -96.342752266193543, 30.089161229820196 ], [ -96.345917266405706, 30.088623229797879 ], [ -96.345991266919526, 30.088611229840527 ], [ -96.346638267181774, 30.088509229508404 ], [ -96.346727267168021, 30.08849522951569 ], [ -96.346789266819954, 30.088484229458889 ], [ -96.348247267005746, 30.088235230025251 ], [ -96.350270267590759, 30.087914229611226 ], [ -96.350376267824331, 30.087896229973566 ], [ -96.35158226863814, 30.087694229269307 ], [ -96.35407726878357, 30.087275229017717 ], [ -96.355926269280019, 30.086935229145812 ], [ -96.356527269267559, 30.086825229536853 ], [ -96.356813269377142, 30.086749229464978 ], [ -96.356827269405258, 30.086745229269631 ], [ -96.357077269461811, 30.086665229133729 ], [ -96.35724726949698, 30.086605229028375 ], [ -96.35779926958682, 30.086550228969404 ], [ -96.361994270758302, 30.086139228871026 ], [ -96.362354270494748, 30.08610422855644 ], [ -96.363136271598293, 30.08602822837565 ], [ -96.370098273164075, 30.085388228457589 ], [ -96.370436273344978, 30.085377228536842 ], [ -96.370797272558647, 30.085381228092967 ], [ -96.374477273650186, 30.085118228375251 ], [ -96.374582273563121, 30.085103228500937 ], [ -96.375243273835835, 30.084792227908565 ], [ -96.37802527474976, 30.084423227736512 ], [ -96.378131274954782, 30.084410228008839 ], [ -96.379237274957177, 30.084269227805006 ], [ -96.38207727553025, 30.083892227710471 ], [ -96.382091276119326, 30.083893227609853 ], [ -96.382271275949904, 30.083869227262724 ], [ -96.382435275423433, 30.083843227770757 ], [ -96.382449276213649, 30.083845227453143 ], [ -96.383263276222479, 30.083736227266737 ], [ -96.383280276493437, 30.083737227670063 ], [ -96.384105276463316, 30.083624227879831 ], [ -96.384121276710545, 30.083626227486899 ], [ -96.385115276943935, 30.083495227185765 ], [ -96.386275276974317, 30.083322227492982 ], [ -96.386289276800042, 30.083320227494163 ], [ -96.394049278652275, 30.082156227057585 ], [ -96.394457278800843, 30.082105227210107 ], [ -96.397817279407846, 30.081658226577783 ], [ -96.398780279629747, 30.081532227024038 ], [ -96.40956428233352, 30.080121225620292 ], [ -96.409684282152512, 30.080105226010946 ], [ -96.409804282970811, 30.08008922631441 ], [ -96.411938282770009, 30.079810225467014 ], [ -96.416077283808335, 30.079243225221205 ], [ -96.418697285308212, 30.078965225692137 ], [ -96.419208284741899, 30.078892225180581 ], [ -96.421091285114059, 30.078621224974505 ], [ -96.421139285014377, 30.078614225677626 ], [ -96.421283285307297, 30.0785942257024 ], [ -96.421391285167687, 30.078578225576987 ], [ -96.42143628506102, 30.078572225297115 ], [ -96.42552028620112, 30.077996224790144 ], [ -96.427686286825448, 30.077690225208944 ], [ -96.430259287389688, 30.077328224650081 ], [ -96.430370287938786, 30.077312225081549 ], [ -96.430474287541955, 30.077298224790724 ], [ -96.430576287786934, 30.077284225011759 ], [ -96.430648287501228, 30.077274224975895 ], [ -96.436096289426729, 30.076506224719807 ], [ -96.436232289535027, 30.076492224766294 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 157, "Tract": "48201333100", "Area_SqMi": 0.48151182960520111, "total_2009": 480, "total_2010": 499, "total_2011": 398, "total_2012": 454, "total_2013": 448, "total_2014": 333, "total_2015": 459, "total_2016": 468, "total_2017": 456, "total_2018": 528, "total_2019": 508, "total_2020": 525, "age1": 128, "age2": 327, "age3": 183, "earn1": 147, "earn2": 253, "earn3": 238, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 14, "naics_s06": 1, "naics_s07": 80, "naics_s08": 0, "naics_s09": 0, "naics_s10": 19, "naics_s11": 0, "naics_s12": 120, "naics_s13": 0, "naics_s14": 49, "naics_s15": 1, "naics_s16": 219, "naics_s17": 4, "naics_s18": 87, "naics_s19": 37, "naics_s20": 0, "race1": 352, "race2": 207, "race3": 5, "race4": 66, "race5": 3, "race6": 5, "ethnicity1": 435, "ethnicity2": 203, "edu1": 101, "edu2": 126, "edu3": 176, "edu4": 107, "Shape_Length": 17339.292392899435, "Shape_Area": 13423725.693660304, "total_2021": 566, "total_2022": 638 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.289088978787831, 29.674029181931608 ], [ -95.28908697867918, 29.673942182275947 ], [ -95.289084978323771, 29.673869181790472 ], [ -95.289068978257276, 29.673182181761636 ], [ -95.288403978786533, 29.67293418208445 ], [ -95.287790978515403, 29.672746182233531 ], [ -95.287525978388942, 29.672676182303626 ], [ -95.286224978221071, 29.672414181919791 ], [ -95.285631977717614, 29.672362181736304 ], [ -95.284341977306482, 29.672291182299052 ], [ -95.283744977805441, 29.672286182304202 ], [ -95.283102977191092, 29.672261181883488 ], [ -95.281452976824951, 29.672287182379325 ], [ -95.280372976427728, 29.67231718172895 ], [ -95.279103975821826, 29.672370182405238 ], [ -95.277119975872722, 29.672411182187428 ], [ -95.276252975390562, 29.672431181957261 ], [ -95.275682975687943, 29.672438181821224 ], [ -95.275172974985253, 29.672456182670555 ], [ -95.273401974808664, 29.672491182084798 ], [ -95.272655974413496, 29.672553182670239 ], [ -95.272006974752287, 29.67273818286866 ], [ -95.271453973937383, 29.672996182114222 ], [ -95.271276973828577, 29.673112182323479 ], [ -95.270907973730999, 29.673352182931971 ], [ -95.270545973750615, 29.673611182850383 ], [ -95.270211974009413, 29.673858183127415 ], [ -95.269975974093171, 29.674056183185879 ], [ -95.269447973839902, 29.674462182662086 ], [ -95.268632973472464, 29.675085183119663 ], [ -95.268214973796049, 29.675403182696623 ], [ -95.268002973209065, 29.67556318342417 ], [ -95.268096973724383, 29.675660183156527 ], [ -95.269750974249277, 29.677360183380532 ], [ -95.269896973522293, 29.677517183043012 ], [ -95.270393974619623, 29.678054183404814 ], [ -95.271398974001187, 29.67906418416732 ], [ -95.272544975074084, 29.680215184103883 ], [ -95.272679974676251, 29.680351184045065 ], [ -95.272878975348092, 29.680256183847082 ], [ -95.273420974579381, 29.68000018381872 ], [ -95.273505975401946, 29.67976318369811 ], [ -95.273513975288225, 29.679477183383451 ], [ -95.273422974981216, 29.679166183803144 ], [ -95.273500975267041, 29.678662183942539 ], [ -95.273883975574691, 29.678534183126946 ], [ -95.274208975111875, 29.678555183340048 ], [ -95.274627975368986, 29.678778183450952 ], [ -95.274696975117038, 29.679013183834446 ], [ -95.274835975177439, 29.679093183224339 ], [ -95.275408975246847, 29.679294184070212 ], [ -95.276018975828563, 29.679390183896349 ], [ -95.276450975736509, 29.679506184097811 ], [ -95.276805976263645, 29.679495183473577 ], [ -95.276821976031187, 29.679494184077626 ], [ -95.277294975548358, 29.679353184036685 ], [ -95.277555975926205, 29.67927518381163 ], [ -95.277740975890765, 29.679198183573767 ], [ -95.278059976293804, 29.678918183592824 ], [ -95.278485975769328, 29.678785183375958 ], [ -95.278723975860743, 29.678849183052417 ], [ -95.27903397621904, 29.678932183191272 ], [ -95.279159976922131, 29.679113183623162 ], [ -95.279310976712239, 29.679234183269596 ], [ -95.279441977052528, 29.679267183438071 ], [ -95.279894977110018, 29.679381183303146 ], [ -95.280114976277133, 29.679296183913831 ], [ -95.280166977088541, 29.67929318378177 ], [ -95.280478977182028, 29.67927318383931 ], [ -95.280715976430102, 29.679177183257778 ], [ -95.280918976998777, 29.679002183410262 ], [ -95.281096977342116, 29.678719183058792 ], [ -95.281487977054852, 29.678403182842139 ], [ -95.281594976890446, 29.678374183455134 ], [ -95.281644977433174, 29.678360183682358 ], [ -95.282035976874639, 29.678355183660347 ], [ -95.282180977700207, 29.678354183120884 ], [ -95.282440976829889, 29.678250182955054 ], [ -95.282642977625116, 29.678229183614992 ], [ -95.282893977290627, 29.67794818348716 ], [ -95.282895977223234, 29.677850183311811 ], [ -95.282901977103649, 29.677628182731087 ], [ -95.282966977038711, 29.677535183221206 ], [ -95.283255977430386, 29.677281183092049 ], [ -95.283443977059605, 29.677210182901742 ], [ -95.283728977460257, 29.677216183207054 ], [ -95.284316978002167, 29.677540183271255 ], [ -95.284796977639331, 29.677619183238129 ], [ -95.285056977559975, 29.677723182589201 ], [ -95.286101978601963, 29.677555182807868 ], [ -95.286617978619248, 29.677665182632399 ], [ -95.287316978942982, 29.677694183181963 ], [ -95.287684978340337, 29.677678183010727 ], [ -95.288126979077248, 29.677596183023105 ], [ -95.288262978226413, 29.677463182694684 ], [ -95.288494979100605, 29.677043182355199 ], [ -95.288557978403688, 29.676884183010554 ], [ -95.288577978263831, 29.676649182532305 ], [ -95.288577978360024, 29.676421182358915 ], [ -95.288528978366557, 29.676065182178291 ], [ -95.288417978510537, 29.675708182565963 ], [ -95.288288978791002, 29.675425182357909 ], [ -95.288165979063507, 29.675191182070321 ], [ -95.288134978628236, 29.675018182685768 ], [ -95.288171979024952, 29.674803182652553 ], [ -95.288257979047472, 29.674588182544124 ], [ -95.288430978629435, 29.674342182456488 ], [ -95.288688978549814, 29.67416918258137 ], [ -95.288916978304243, 29.674083182200562 ], [ -95.289088978787831, 29.674029181931608 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 158, "Tract": "48201350300", "Area_SqMi": 0.88066859239837136, "total_2009": 154, "total_2010": 412, "total_2011": 332, "total_2012": 188, "total_2013": 174, "total_2014": 188, "total_2015": 207, "total_2016": 170, "total_2017": 214, "total_2018": 182, "total_2019": 195, "total_2020": 191, "age1": 43, "age2": 128, "age3": 58, "earn1": 90, "earn2": 84, "earn3": 55, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 7, "naics_s06": 2, "naics_s07": 14, "naics_s08": 5, "naics_s09": 0, "naics_s10": 6, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 73, "naics_s15": 0, "naics_s16": 78, "naics_s17": 0, "naics_s18": 21, "naics_s19": 11, "naics_s20": 0, "race1": 176, "race2": 27, "race3": 2, "race4": 19, "race5": 1, "race6": 4, "ethnicity1": 141, "ethnicity2": 88, "edu1": 39, "edu2": 53, "edu3": 61, "edu4": 33, "Shape_Length": 20054.206327679622, "Shape_Area": 24551533.07670673, "total_2021": 210, "total_2022": 229 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.235146960777158, 29.585460165257835 ], [ -95.234832960815055, 29.584660165767172 ], [ -95.234669961092862, 29.583929165166058 ], [ -95.234520960607171, 29.583131165135899 ], [ -95.234378960611693, 29.58235816551068 ], [ -95.234231960762287, 29.581556165059737 ], [ -95.234033960335609, 29.5805101645288 ], [ -95.233796960940197, 29.579722164478962 ], [ -95.233410960505338, 29.578954164785287 ], [ -95.232997960395821, 29.578371163948734 ], [ -95.232383959908177, 29.577725163803194 ], [ -95.23162395960901, 29.577082164177934 ], [ -95.231387960089279, 29.576892163989335 ], [ -95.231303959959376, 29.576825164322042 ], [ -95.231258959843174, 29.576788163953783 ], [ -95.230950959112477, 29.576541164250354 ], [ -95.230153959351185, 29.576055164182641 ], [ -95.229255958775184, 29.575673163796459 ], [ -95.228382958441316, 29.575355163435169 ], [ -95.227645958877815, 29.574975163459232 ], [ -95.22692395837079, 29.574478163415623 ], [ -95.226268958268179, 29.573939163770625 ], [ -95.225904958119429, 29.573573163386595 ], [ -95.224913958245324, 29.574478164183098 ], [ -95.223571957473567, 29.575699164279676 ], [ -95.221250957425539, 29.577700164343891 ], [ -95.220666957543358, 29.57831216482375 ], [ -95.220038957192841, 29.578881164697691 ], [ -95.2189479567772, 29.579872164916448 ], [ -95.218322956812415, 29.580447164804795 ], [ -95.218011956055122, 29.58073016528801 ], [ -95.217382956800492, 29.581305165242817 ], [ -95.217181956240694, 29.581488165063799 ], [ -95.216735956193148, 29.581894165710278 ], [ -95.216576956134688, 29.582039165423339 ], [ -95.216106955634487, 29.582468165962162 ], [ -95.215921955811211, 29.58263816573778 ], [ -95.215615956366108, 29.582918166247595 ], [ -95.215300955649823, 29.583207166326737 ], [ -95.215058955825839, 29.583429166085889 ], [ -95.215002956027874, 29.583480166288126 ], [ -95.214953955700707, 29.583525166297253 ], [ -95.214772955478395, 29.583690166393335 ], [ -95.214460956058304, 29.58397616573885 ], [ -95.213955955309942, 29.584439166069018 ], [ -95.213825955674494, 29.584558166588689 ], [ -95.21368495547614, 29.584687165836336 ], [ -95.213621955733061, 29.584745166722978 ], [ -95.213584955178604, 29.584779166564601 ], [ -95.213380955386967, 29.584966166351233 ], [ -95.213477955879483, 29.585047165936782 ], [ -95.213559955139388, 29.585115166450098 ], [ -95.213720955610782, 29.585250166160847 ], [ -95.213847956076705, 29.585355166465018 ], [ -95.214363955991644, 29.585785166756676 ], [ -95.214430955928151, 29.585840166040626 ], [ -95.214557956048722, 29.585947166087422 ], [ -95.216063956551963, 29.587202166560218 ], [ -95.217332956232113, 29.588200166489404 ], [ -95.217751956521596, 29.588529166669503 ], [ -95.21812995716904, 29.588841166718289 ], [ -95.218210956477975, 29.588909166570385 ], [ -95.218903957560485, 29.589481166813179 ], [ -95.219219956805134, 29.589742167190099 ], [ -95.219331957474836, 29.589835167445631 ], [ -95.219348956949062, 29.589849167389861 ], [ -95.219762957082139, 29.590191166989491 ], [ -95.220428957674258, 29.590776166952924 ], [ -95.22115495819375, 29.591389167822879 ], [ -95.221539957665868, 29.591696167102899 ], [ -95.221961958190093, 29.59203116790524 ], [ -95.222107957862306, 29.591911167181777 ], [ -95.222236957756621, 29.591805167076245 ], [ -95.222922958529963, 29.59123716700946 ], [ -95.223377958002715, 29.590993166944745 ], [ -95.223994958569662, 29.590441167182547 ], [ -95.224608958240495, 29.589894166941214 ], [ -95.225224958728759, 29.589354167055703 ], [ -95.225829958888838, 29.588768166344739 ], [ -95.226277958601059, 29.588350166290862 ], [ -95.226415958679425, 29.588222166379094 ], [ -95.227079959578603, 29.587699166896211 ], [ -95.2276129594309, 29.587441166027499 ], [ -95.228167959459967, 29.587173166340257 ], [ -95.229026959333808, 29.586874166307332 ], [ -95.229909959537366, 29.586706165996471 ], [ -95.230586960442935, 29.586648166522075 ], [ -95.230838959820915, 29.586621165903331 ], [ -95.231106960413783, 29.586593165878234 ], [ -95.232117960818243, 29.586487165920442 ], [ -95.232946960750922, 29.586290165988178 ], [ -95.235146960777158, 29.585460165257835 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 159, "Tract": "48201350400", "Area_SqMi": 1.0291252740472776, "total_2009": 661, "total_2010": 637, "total_2011": 613, "total_2012": 728, "total_2013": 684, "total_2014": 701, "total_2015": 667, "total_2016": 755, "total_2017": 747, "total_2018": 690, "total_2019": 800, "total_2020": 703, "age1": 192, "age2": 317, "age3": 180, "earn1": 167, "earn2": 326, "earn3": 196, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 8, "naics_s07": 343, "naics_s08": 1, "naics_s09": 0, "naics_s10": 54, "naics_s11": 18, "naics_s12": 64, "naics_s13": 0, "naics_s14": 0, "naics_s15": 4, "naics_s16": 54, "naics_s17": 0, "naics_s18": 135, "naics_s19": 3, "naics_s20": 0, "race1": 442, "race2": 104, "race3": 8, "race4": 129, "race5": 0, "race6": 6, "ethnicity1": 467, "ethnicity2": 222, "edu1": 145, "edu2": 124, "edu3": 130, "edu4": 98, "Shape_Length": 22356.772227300658, "Shape_Area": 28690251.27492822, "total_2021": 720, "total_2022": 689 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.221961958190093, 29.59203116790524 ], [ -95.221539957665868, 29.591696167102899 ], [ -95.22115495819375, 29.591389167822879 ], [ -95.220428957674258, 29.590776166952924 ], [ -95.219762957082139, 29.590191166989491 ], [ -95.219348956949062, 29.589849167389861 ], [ -95.219331957474836, 29.589835167445631 ], [ -95.219219956805134, 29.589742167190099 ], [ -95.218903957560485, 29.589481166813179 ], [ -95.218210956477975, 29.588909166570385 ], [ -95.21812995716904, 29.588841166718289 ], [ -95.217751956521596, 29.588529166669503 ], [ -95.217332956232113, 29.588200166489404 ], [ -95.216063956551963, 29.587202166560218 ], [ -95.214557956048722, 29.585947166087422 ], [ -95.214430955928151, 29.585840166040626 ], [ -95.214363955991644, 29.585785166756676 ], [ -95.213847956076705, 29.585355166465018 ], [ -95.213720955610782, 29.585250166160847 ], [ -95.213559955139388, 29.585115166450098 ], [ -95.213477955879483, 29.585047165936782 ], [ -95.213380955386967, 29.584966166351233 ], [ -95.213277955491549, 29.585060166379357 ], [ -95.213092955164015, 29.585228166426191 ], [ -95.212723955545584, 29.585564166143929 ], [ -95.212344955283939, 29.585906166605518 ], [ -95.211927955464361, 29.586285166762217 ], [ -95.211672954968051, 29.58651716681749 ], [ -95.211477955441012, 29.586694167160747 ], [ -95.211329955362288, 29.586828166483425 ], [ -95.210662954508223, 29.587297167127211 ], [ -95.209972954525199, 29.587748166649213 ], [ -95.209335954514259, 29.588248167189796 ], [ -95.208749954244936, 29.588790167076933 ], [ -95.208545953913202, 29.588978167247518 ], [ -95.208320954189531, 29.589187167334156 ], [ -95.208195953983491, 29.589302167047208 ], [ -95.207856954167283, 29.589615167326897 ], [ -95.206744953532933, 29.590644167636547 ], [ -95.206139954198363, 29.591203168077197 ], [ -95.206070953634253, 29.591268167672983 ], [ -95.205517953269606, 29.591790167947138 ], [ -95.205299954197642, 29.591996167843146 ], [ -95.204863953350653, 29.592408168344186 ], [ -95.204766953369941, 29.592499168199538 ], [ -95.204696953316699, 29.592566168131395 ], [ -95.204620953186918, 29.59263716847078 ], [ -95.204575953397736, 29.592680168631567 ], [ -95.204475953481833, 29.592774167847505 ], [ -95.204371953841928, 29.592893167881225 ], [ -95.204227953286221, 29.593060168310583 ], [ -95.203838953344004, 29.593570168018232 ], [ -95.203491953630419, 29.594102168766092 ], [ -95.203239952929081, 29.594420168211077 ], [ -95.203107953522846, 29.59456916884384 ], [ -95.202580952997153, 29.595164168404139 ], [ -95.202533952685158, 29.595217168606911 ], [ -95.200663953127474, 29.596733169193868 ], [ -95.200386952161722, 29.59694916899717 ], [ -95.199107951917583, 29.597904169566181 ], [ -95.197983952144071, 29.598766170120527 ], [ -95.197866951941947, 29.598856169755823 ], [ -95.197821951887562, 29.598890170065737 ], [ -95.200201952336883, 29.601278170528104 ], [ -95.200624952849552, 29.601676170392526 ], [ -95.202170953248725, 29.603233170027575 ], [ -95.203821953570369, 29.604766170784437 ], [ -95.204421953613803, 29.605334170614032 ], [ -95.205254954040626, 29.606079171179026 ], [ -95.205355954304082, 29.606171170984712 ], [ -95.205554954370498, 29.606355171006221 ], [ -95.205960954385986, 29.606075171063331 ], [ -95.206046954515429, 29.606013171298862 ], [ -95.206885954744962, 29.605376170657745 ], [ -95.208197954885492, 29.604456170240553 ], [ -95.209560955108287, 29.603450170068061 ], [ -95.210299955100979, 29.602987169850596 ], [ -95.211638955424846, 29.602262170025732 ], [ -95.212645955783969, 29.601840170269003 ], [ -95.213410956058468, 29.601561169512387 ], [ -95.214131956241559, 29.601377169585284 ], [ -95.214665956381921, 29.601230169896759 ], [ -95.215181957068381, 29.601154169518779 ], [ -95.215764956969892, 29.601076169813613 ], [ -95.215996956809136, 29.601048169982093 ], [ -95.215980956681932, 29.600916169084876 ], [ -95.215968957219175, 29.600811169485333 ], [ -95.216004957116184, 29.59937116913596 ], [ -95.216014956645438, 29.599278169015584 ], [ -95.216244957007461, 29.598451169041695 ], [ -95.216458956750998, 29.598012169359865 ], [ -95.216728956685586, 29.597460169037248 ], [ -95.217188957169839, 29.596845168428775 ], [ -95.217784957469107, 29.596236168262404 ], [ -95.218368957331833, 29.595675168116959 ], [ -95.218673957162352, 29.595388168351789 ], [ -95.218800956978811, 29.595287168428186 ], [ -95.218908957552628, 29.595172167876765 ], [ -95.219107957452934, 29.594984168107107 ], [ -95.219459957879636, 29.594651167933165 ], [ -95.220069957853283, 29.59410416758972 ], [ -95.220673957602685, 29.593559167955931 ], [ -95.221129957309799, 29.592878167440208 ], [ -95.221527957497557, 29.592451167253547 ], [ -95.221961958190093, 29.59203116790524 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 160, "Tract": "48201350500", "Area_SqMi": 2.2600617530343432, "total_2009": 1472, "total_2010": 1611, "total_2011": 1660, "total_2012": 1601, "total_2013": 1588, "total_2014": 1526, "total_2015": 1683, "total_2016": 1764, "total_2017": 1774, "total_2018": 1848, "total_2019": 1952, "total_2020": 1861, "age1": 702, "age2": 865, "age3": 345, "earn1": 621, "earn2": 676, "earn3": 615, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 8, "naics_s06": 13, "naics_s07": 130, "naics_s08": 3, "naics_s09": 0, "naics_s10": 120, "naics_s11": 38, "naics_s12": 106, "naics_s13": 0, "naics_s14": 624, "naics_s15": 10, "naics_s16": 576, "naics_s17": 0, "naics_s18": 258, "naics_s19": 12, "naics_s20": 0, "race1": 1153, "race2": 360, "race3": 16, "race4": 350, "race5": 2, "race6": 31, "ethnicity1": 1240, "ethnicity2": 672, "edu1": 294, "edu2": 293, "edu3": 357, "edu4": 266, "Shape_Length": 36095.231955863404, "Shape_Area": 63006653.540248469, "total_2021": 1937, "total_2022": 1912 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.213380955386967, 29.584966166351233 ], [ -95.213283955048226, 29.584885166693891 ], [ -95.2127649548016, 29.584458166132894 ], [ -95.212245954663643, 29.584031166106048 ], [ -95.211711954652642, 29.583514165931877 ], [ -95.211458954972358, 29.583301165861553 ], [ -95.211147955283877, 29.583040166305537 ], [ -95.211010954486312, 29.582924166142838 ], [ -95.210179954162442, 29.582249165859132 ], [ -95.210090954476584, 29.582176165742492 ], [ -95.210066954588342, 29.582156166019978 ], [ -95.209029953713966, 29.581300165342018 ], [ -95.208165954325878, 29.580588165931587 ], [ -95.208065953445782, 29.580504165750696 ], [ -95.207146953119548, 29.579608165443688 ], [ -95.20594395292774, 29.578667165315299 ], [ -95.205073952736214, 29.577952165596468 ], [ -95.203933952733678, 29.577012165288245 ], [ -95.202477952461919, 29.575810165097415 ], [ -95.20096695208224, 29.574596165010735 ], [ -95.200648951317064, 29.574340164372508 ], [ -95.199100950824914, 29.573098164099946 ], [ -95.19895895173326, 29.572961163998254 ], [ -95.198334950739635, 29.572360164587245 ], [ -95.193102949698869, 29.568017163114259 ], [ -95.19253694937585, 29.567558163437539 ], [ -95.188464948670656, 29.564179162452032 ], [ -95.188052947636592, 29.563836162626259 ], [ -95.187984947727287, 29.563862162718255 ], [ -95.187889948449467, 29.563884163057146 ], [ -95.187657947452422, 29.563966162866461 ], [ -95.187569948035645, 29.564005162819726 ], [ -95.18748794808657, 29.564060162677315 ], [ -95.187424948309214, 29.564082163200585 ], [ -95.18734294808894, 29.564098163016215 ], [ -95.187153947498985, 29.564038163033096 ], [ -95.18709194741497, 29.564043163222706 ], [ -95.187002948126832, 29.564082163189607 ], [ -95.186889947969689, 29.564219162584148 ], [ -95.186808948037495, 29.564351163121799 ], [ -95.186801947543586, 29.564538163452685 ], [ -95.186814947980935, 29.564725162649818 ], [ -95.186852947922105, 29.564884163437824 ], [ -95.18698494797826, 29.565099163027291 ], [ -95.187141947430618, 29.565291163466622 ], [ -95.187235948185716, 29.565423163292905 ], [ -95.187235947474193, 29.565484163360953 ], [ -95.187172948285735, 29.565605163574883 ], [ -95.187059948316133, 29.565753163188834 ], [ -95.18704094796901, 29.565830163620191 ], [ -95.187040948172665, 29.565891163712124 ], [ -95.187172947448829, 29.566259163774529 ], [ -95.187185947875477, 29.566358163157627 ], [ -95.187191948419283, 29.566446163300661 ], [ -95.18710394807691, 29.566655163516494 ], [ -95.187116947863117, 29.566798163168954 ], [ -95.187141947830497, 29.566864163212571 ], [ -95.187336947604194, 29.567040163863926 ], [ -95.187330948057934, 29.56711116332098 ], [ -95.18730494748165, 29.567155163488504 ], [ -95.187154948150493, 29.567232163752145 ], [ -95.187091948225458, 29.567287163467427 ], [ -95.186996947814094, 29.567331163362077 ], [ -95.186940948252868, 29.567408163239772 ], [ -95.186927948073631, 29.56746316395639 ], [ -95.186984948299553, 29.56761216395336 ], [ -95.187009947563595, 29.567700163224469 ], [ -95.187015947818963, 29.567766164105642 ], [ -95.187040948350074, 29.567837163622478 ], [ -95.187040948131681, 29.567909163745114 ], [ -95.187022947571691, 29.56801316336303 ], [ -95.186990948288155, 29.568101163334539 ], [ -95.18690894781011, 29.568272164181408 ], [ -95.186776947653968, 29.568420163468268 ], [ -95.186669948297023, 29.568618164133579 ], [ -95.186682947495854, 29.568755164050305 ], [ -95.186726947919979, 29.56882716397698 ], [ -95.186751948181907, 29.568931163726329 ], [ -95.186751947432001, 29.569036164026013 ], [ -95.18661994781796, 29.56923916442507 ], [ -95.186512947777203, 29.569366164176962 ], [ -95.186443947492009, 29.569525164095239 ], [ -95.186386948100193, 29.56969616437555 ], [ -95.18649394823548, 29.570301164304738 ], [ -95.186556948313068, 29.570427164447548 ], [ -95.186518948034802, 29.570477164145281 ], [ -95.186500947827412, 29.570526164249731 ], [ -95.186569947685257, 29.570669164611196 ], [ -95.186556947957044, 29.570724164379666 ], [ -95.186418948342862, 29.570812164010853 ], [ -95.1863809481803, 29.57086716403203 ], [ -95.186361947572706, 29.570928163891924 ], [ -95.186411948052637, 29.571004164450084 ], [ -95.186594948091894, 29.571054164741803 ], [ -95.186625948013386, 29.571125164717582 ], [ -95.186594948104513, 29.57121316417917 ], [ -95.186525948463881, 29.571329164125025 ], [ -95.186468947664494, 29.57138416402146 ], [ -95.186462948378804, 29.571439164788821 ], [ -95.186481947914586, 29.571604164044849 ], [ -95.186474947744017, 29.571653164549645 ], [ -95.186449948099508, 29.571714164874365 ], [ -95.186393948067447, 29.571774164746952 ], [ -95.186330947602187, 29.571780164420918 ], [ -95.186210948020204, 29.571686164578743 ], [ -95.18619894808144, 29.571620164140409 ], [ -95.186173947560718, 29.571576164117182 ], [ -95.186110947718447, 29.571527164286763 ], [ -95.186072948003684, 29.571532164274924 ], [ -95.185977947449132, 29.57160416426288 ], [ -95.18596594780081, 29.571631164676134 ], [ -95.185965947614918, 29.571741164406383 ], [ -95.185996947616246, 29.571846164968026 ], [ -95.185896947927063, 29.572066164344605 ], [ -95.185864947672727, 29.572181164486441 ], [ -95.185839948086453, 29.572231164642893 ], [ -95.185776947434661, 29.57228616466795 ], [ -95.185688947550815, 29.57230216495061 ], [ -95.185657947917207, 29.572302164610534 ], [ -95.18548194746127, 29.572247164685646 ], [ -95.185393948006663, 29.572253164974889 ], [ -95.185342948152723, 29.572280165121104 ], [ -95.185311947274343, 29.572330164629264 ], [ -95.185311947636251, 29.572390164415232 ], [ -95.18533694753053, 29.572451164349033 ], [ -95.185330947573178, 29.572506165052566 ], [ -95.185279948144029, 29.572550164959772 ], [ -95.184839948011231, 29.572737164980435 ], [ -95.18478294746464, 29.572786164489692 ], [ -95.184776947673498, 29.572858164949679 ], [ -95.184807947834912, 29.572896165152368 ], [ -95.184883947133699, 29.572935164659192 ], [ -95.18491494724752, 29.572940164641402 ], [ -95.184977947869783, 29.572979165221767 ], [ -95.184971947368368, 29.573050164508775 ], [ -95.184896948080095, 29.573143164556633 ], [ -95.184833947765824, 29.573182164648472 ], [ -95.18461394730484, 29.573281165062316 ], [ -95.184273947193034, 29.573484164746514 ], [ -95.184178947359101, 29.573506165373438 ], [ -95.184141947276757, 29.573506165012628 ], [ -95.184072947718647, 29.573479164719611 ], [ -95.183927947374812, 29.573352165211841 ], [ -95.183883947119753, 29.573336165024667 ], [ -95.183833947834458, 29.573358164822235 ], [ -95.183782947561269, 29.573413165125952 ], [ -95.183663946952151, 29.573319165346788 ], [ -95.18351894778354, 29.573270165226262 ], [ -95.183386947461742, 29.573209164549645 ], [ -95.183292947574998, 29.573193164533443 ], [ -95.183229947017537, 29.573199164578337 ], [ -95.183128947524992, 29.573231164575851 ], [ -95.183147947025105, 29.573330164874985 ], [ -95.183229947491611, 29.573440164937612 ], [ -95.183109947459698, 29.573638164694238 ], [ -95.183078947638222, 29.573715165140225 ], [ -95.182952946897117, 29.573847164619309 ], [ -95.182788947062221, 29.573853165229561 ], [ -95.182631947451952, 29.573880164921516 ], [ -95.182373947244855, 29.573974165464822 ], [ -95.182027946935236, 29.573985165521059 ], [ -95.18166294683914, 29.574095165431579 ], [ -95.181467946608535, 29.574243165639427 ], [ -95.181300946488022, 29.574482165649794 ], [ -95.181241947180524, 29.574568165637938 ], [ -95.18111594647084, 29.574964165164502 ], [ -95.18097794681519, 29.575261165251636 ], [ -95.180952947059225, 29.575360165186577 ], [ -95.180952946895772, 29.575447165490115 ], [ -95.180964946875619, 29.575530165304471 ], [ -95.181002947057436, 29.575640165082007 ], [ -95.18107794628493, 29.575744165397179 ], [ -95.18128594686462, 29.575876165231307 ], [ -95.181430946614469, 29.575986165924263 ], [ -95.181574947101254, 29.576129165201053 ], [ -95.181644946663113, 29.576250165729054 ], [ -95.181662946893098, 29.576426165209416 ], [ -95.181637946699468, 29.576641165581378 ], [ -95.181587946710764, 29.576839165600465 ], [ -95.181587946995123, 29.576960165414885 ], [ -95.181631946668716, 29.577075165966772 ], [ -95.181738947282284, 29.577163165448621 ], [ -95.182008946768036, 29.577323166232141 ], [ -95.182159947459468, 29.577784165696336 ], [ -95.182291946999896, 29.578081166251458 ], [ -95.182826946976746, 29.579256166520199 ], [ -95.183466947245307, 29.580429166187699 ], [ -95.184169947342866, 29.580995166260628 ], [ -95.184282947976541, 29.581086166565296 ], [ -95.184723947760318, 29.581559166336252 ], [ -95.184853947475474, 29.58178316700031 ], [ -95.185009947635706, 29.582305166612787 ], [ -95.185328948160063, 29.582765166472779 ], [ -95.185505948431484, 29.582914166477089 ], [ -95.186897948364717, 29.583744166560351 ], [ -95.187073948607576, 29.583893167430961 ], [ -95.187063949041217, 29.583970166950511 ], [ -95.187173948419144, 29.583970167416314 ], [ -95.187260948924489, 29.584058166925772 ], [ -95.186670948624737, 29.584595167447972 ], [ -95.186480948147818, 29.584736166822665 ], [ -95.186463948685486, 29.584752167294742 ], [ -95.185930948878251, 29.585314167506517 ], [ -95.185482948009877, 29.585707167120791 ], [ -95.185170948547295, 29.585981167062741 ], [ -95.18451594858557, 29.586550167759476 ], [ -95.184410948324597, 29.586629167684958 ], [ -95.186416948973758, 29.58834216818595 ], [ -95.187542948571505, 29.589359168354335 ], [ -95.18822194912066, 29.589977168441649 ], [ -95.190021949327914, 29.591479168223774 ], [ -95.190678950403878, 29.592080168489403 ], [ -95.19180095038179, 29.593022168784238 ], [ -95.193117950518584, 29.59424916866335 ], [ -95.194148951291339, 29.595259168856032 ], [ -95.195820951060881, 29.596900168945776 ], [ -95.197821951887562, 29.598890170065737 ], [ -95.197866951941947, 29.598856169755823 ], [ -95.197983952144071, 29.598766170120527 ], [ -95.199107951917583, 29.597904169566181 ], [ -95.200386952161722, 29.59694916899717 ], [ -95.200663953127474, 29.596733169193868 ], [ -95.202533952685158, 29.595217168606911 ], [ -95.202580952997153, 29.595164168404139 ], [ -95.203107953522846, 29.59456916884384 ], [ -95.203239952929081, 29.594420168211077 ], [ -95.203491953630419, 29.594102168766092 ], [ -95.203838953344004, 29.593570168018232 ], [ -95.204227953286221, 29.593060168310583 ], [ -95.204371953841928, 29.592893167881225 ], [ -95.204475953481833, 29.592774167847505 ], [ -95.204575953397736, 29.592680168631567 ], [ -95.204620953186918, 29.59263716847078 ], [ -95.204696953316699, 29.592566168131395 ], [ -95.204766953369941, 29.592499168199538 ], [ -95.204863953350653, 29.592408168344186 ], [ -95.205299954197642, 29.591996167843146 ], [ -95.205517953269606, 29.591790167947138 ], [ -95.206070953634253, 29.591268167672983 ], [ -95.206139954198363, 29.591203168077197 ], [ -95.206744953532933, 29.590644167636547 ], [ -95.207856954167283, 29.589615167326897 ], [ -95.208195953983491, 29.589302167047208 ], [ -95.208320954189531, 29.589187167334156 ], [ -95.208545953913202, 29.588978167247518 ], [ -95.208749954244936, 29.588790167076933 ], [ -95.209335954514259, 29.588248167189796 ], [ -95.209972954525199, 29.587748166649213 ], [ -95.210662954508223, 29.587297167127211 ], [ -95.211329955362288, 29.586828166483425 ], [ -95.211477955441012, 29.586694167160747 ], [ -95.211672954968051, 29.58651716681749 ], [ -95.211927955464361, 29.586285166762217 ], [ -95.212344955283939, 29.585906166605518 ], [ -95.212723955545584, 29.585564166143929 ], [ -95.213092955164015, 29.585228166426191 ], [ -95.213277955491549, 29.585060166379357 ], [ -95.213380955386967, 29.584966166351233 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 161, "Tract": "48201420300", "Area_SqMi": 0.92877907894225076, "total_2009": 1034, "total_2010": 964, "total_2011": 1020, "total_2012": 1118, "total_2013": 1162, "total_2014": 1127, "total_2015": 1266, "total_2016": 1411, "total_2017": 1443, "total_2018": 1649, "total_2019": 1635, "total_2020": 1544, "age1": 391, "age2": 589, "age3": 289, "earn1": 319, "earn2": 524, "earn3": 426, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 3, "naics_s06": 10, "naics_s07": 493, "naics_s08": 0, "naics_s09": 4, "naics_s10": 40, "naics_s11": 54, "naics_s12": 203, "naics_s13": 0, "naics_s14": 16, "naics_s15": 52, "naics_s16": 147, "naics_s17": 2, "naics_s18": 208, "naics_s19": 33, "naics_s20": 0, "race1": 841, "race2": 274, "race3": 12, "race4": 117, "race5": 3, "race6": 22, "ethnicity1": 814, "ethnicity2": 455, "edu1": 201, "edu2": 217, "edu3": 263, "edu4": 197, "Shape_Length": 21588.819933823306, "Shape_Area": 25892771.099629432, "total_2021": 1492, "total_2022": 1269 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.463827022747722, 29.664977174152821 ], [ -95.46400502271797, 29.664310174201848 ], [ -95.463411022571691, 29.664321173923465 ], [ -95.46250802248268, 29.664318173848724 ], [ -95.460710021854908, 29.664358174618851 ], [ -95.460345022595334, 29.664356174150715 ], [ -95.460219022213209, 29.664357174373773 ], [ -95.459070021525747, 29.664368174555108 ], [ -95.456433021655855, 29.664392174930342 ], [ -95.45479402098907, 29.664387174602414 ], [ -95.452668020692016, 29.664442174211249 ], [ -95.448918019501903, 29.664486174915581 ], [ -95.448383019532471, 29.664486174733334 ], [ -95.448295019430745, 29.664487174462877 ], [ -95.44653001843696, 29.664508175128674 ], [ -95.446565018716598, 29.666249175146984 ], [ -95.446600019226821, 29.668151175577435 ], [ -95.446574018698342, 29.668781175830279 ], [ -95.446693019364801, 29.673231176462163 ], [ -95.446729019182897, 29.674738176647427 ], [ -95.446833019289116, 29.678982177606116 ], [ -95.446838019417982, 29.679178177501633 ], [ -95.446844019717219, 29.679472177689419 ], [ -95.447053019559263, 29.679459177803938 ], [ -95.44911101978002, 29.679413177623896 ], [ -95.449802020286739, 29.679406177758437 ], [ -95.453314021562036, 29.679323177807731 ], [ -95.453686021533386, 29.679348177381776 ], [ -95.45377202140935, 29.679349177972885 ], [ -95.454482021417647, 29.679353177782851 ], [ -95.454762021801244, 29.67936417762435 ], [ -95.454921021330634, 29.679375177547755 ], [ -95.455380021315293, 29.679423177688321 ], [ -95.455798021718024, 29.679512177725194 ], [ -95.456274022122471, 29.679686177451341 ], [ -95.456760021730545, 29.679913177377536 ], [ -95.456896021987717, 29.680001177437259 ], [ -95.457127022245785, 29.68015017759134 ], [ -95.457567022719587, 29.680528178179845 ], [ -95.457808022430655, 29.680760178109161 ], [ -95.458084022811306, 29.681135177493825 ], [ -95.458172022055635, 29.681256177812724 ], [ -95.458331022291048, 29.681282177706219 ], [ -95.458521022266638, 29.681313177610612 ], [ -95.458848022094998, 29.681368177439566 ], [ -95.458953022673256, 29.681385177742108 ], [ -95.459059022893584, 29.681402178221074 ], [ -95.459059023093147, 29.681322177778608 ], [ -95.459057023137049, 29.681077177834361 ], [ -95.459068022940428, 29.680014177566434 ], [ -95.459077022301457, 29.679498177914844 ], [ -95.459081022143167, 29.679385177071438 ], [ -95.459087022993359, 29.679160177727976 ], [ -95.459166022714584, 29.678716177152122 ], [ -95.45920302283487, 29.678395177722855 ], [ -95.459365022379913, 29.67752617751696 ], [ -95.459479022293948, 29.677071177110346 ], [ -95.459577023043309, 29.676645176786323 ], [ -95.460076022287524, 29.675172176745576 ], [ -95.460918023084758, 29.673104176390268 ], [ -95.461006022550734, 29.672819175897096 ], [ -95.461598023125759, 29.671524176025006 ], [ -95.461874022699334, 29.670755175694342 ], [ -95.461952022626207, 29.670540175615201 ], [ -95.462429023374028, 29.669213175176527 ], [ -95.462641022784695, 29.668590175356226 ], [ -95.462748023395662, 29.668276174740139 ], [ -95.462736022716385, 29.668138174808426 ], [ -95.462839023117638, 29.667850175335413 ], [ -95.463217022880471, 29.666824175207022 ], [ -95.463305022712873, 29.666592174966176 ], [ -95.463376023195536, 29.666381174745585 ], [ -95.463641022898514, 29.665675174910103 ], [ -95.463748023594519, 29.665355174303158 ], [ -95.463827022747722, 29.664977174152821 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 162, "Tract": "48201420500", "Area_SqMi": 0.90247574690722243, "total_2009": 1049, "total_2010": 1206, "total_2011": 1309, "total_2012": 1276, "total_2013": 1277, "total_2014": 1227, "total_2015": 1309, "total_2016": 1450, "total_2017": 1164, "total_2018": 1051, "total_2019": 1067, "total_2020": 960, "age1": 135, "age2": 509, "age3": 217, "earn1": 92, "earn2": 285, "earn3": 484, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 23, "naics_s05": 10, "naics_s06": 68, "naics_s07": 40, "naics_s08": 136, "naics_s09": 1, "naics_s10": 0, "naics_s11": 87, "naics_s12": 98, "naics_s13": 0, "naics_s14": 64, "naics_s15": 214, "naics_s16": 107, "naics_s17": 0, "naics_s18": 0, "naics_s19": 8, "naics_s20": 0, "race1": 474, "race2": 321, "race3": 7, "race4": 49, "race5": 0, "race6": 10, "ethnicity1": 623, "ethnicity2": 238, "edu1": 169, "edu2": 183, "edu3": 202, "edu4": 172, "Shape_Length": 22394.920008118985, "Shape_Area": 25159479.221095543, "total_2021": 766, "total_2022": 861 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.482468027194003, 29.642433169551449 ], [ -95.482483026841621, 29.640776168676254 ], [ -95.48246502657409, 29.640679168762905 ], [ -95.48239802643684, 29.640447168745212 ], [ -95.482348026334762, 29.640273168722587 ], [ -95.482158026729351, 29.640355168543437 ], [ -95.481905026284863, 29.640451168826733 ], [ -95.480191026293085, 29.641096168632025 ], [ -95.479669026427928, 29.641300168578336 ], [ -95.47812302534264, 29.641909169536248 ], [ -95.478012025522915, 29.641955168741934 ], [ -95.475956025570781, 29.642792169455319 ], [ -95.475392024865329, 29.643023169853375 ], [ -95.472857024745409, 29.644048169661932 ], [ -95.471611024551592, 29.644542170170535 ], [ -95.471330024275815, 29.644649170036491 ], [ -95.470535023674714, 29.64494917031293 ], [ -95.470249024335644, 29.645057169885259 ], [ -95.469808023407595, 29.645223169938497 ], [ -95.467587023075268, 29.646031170047941 ], [ -95.467268022796318, 29.646156170712256 ], [ -95.4665070231122, 29.646457170483135 ], [ -95.464073022523749, 29.647365170321422 ], [ -95.463743021857454, 29.647495170840486 ], [ -95.46374702210889, 29.647692170753292 ], [ -95.463750022637342, 29.647880170790629 ], [ -95.463760022762088, 29.648483170947411 ], [ -95.463786022566325, 29.649024171328946 ], [ -95.463815022360663, 29.649966171115544 ], [ -95.463840022755818, 29.650915171726982 ], [ -95.463843022879317, 29.651051171468826 ], [ -95.463846022326592, 29.651283171972924 ], [ -95.463841022512796, 29.651601171550858 ], [ -95.463903022718213, 29.653514172449007 ], [ -95.463908022747987, 29.653893172149658 ], [ -95.463914022467293, 29.654303172425273 ], [ -95.463928022290276, 29.65530017234898 ], [ -95.463932022556421, 29.655688172157628 ], [ -95.463939023020203, 29.656416172894939 ], [ -95.463940022538665, 29.656653172485804 ], [ -95.463945023090645, 29.656903172381579 ], [ -95.463980023316765, 29.658028173277728 ], [ -95.464011022513105, 29.659270173118923 ], [ -95.464014023362878, 29.660330173603231 ], [ -95.464022023026075, 29.660482173075128 ], [ -95.464391023423531, 29.660143172964005 ], [ -95.464850023618808, 29.65986817294451 ], [ -95.465209022863831, 29.65960417280542 ], [ -95.465838022888406, 29.659279173410571 ], [ -95.466323023565309, 29.659175173030011 ], [ -95.467160023822231, 29.659152172822491 ], [ -95.467406023545152, 29.658965172744985 ], [ -95.467462023664623, 29.658872172865252 ], [ -95.467638023571752, 29.658674172942913 ], [ -95.468054023891327, 29.658245172503857 ], [ -95.468154023511588, 29.65818517307763 ], [ -95.468293024023851, 29.658157173095933 ], [ -95.46843102427448, 29.658135172791347 ], [ -95.468708024471468, 29.658129172454007 ], [ -95.468834023712134, 29.658096172976428 ], [ -95.468916024541741, 29.658025173089566 ], [ -95.468960024392629, 29.657942172643242 ], [ -95.468979023961438, 29.657761172653945 ], [ -95.469042024647422, 29.657557172529732 ], [ -95.469060024540184, 29.657398173043518 ], [ -95.469105024650958, 29.657332172694147 ], [ -95.469155024584822, 29.65731017295731 ], [ -95.469224024042305, 29.657310172283669 ], [ -95.469344023744512, 29.657376173038873 ], [ -95.469734024047384, 29.657425172700513 ], [ -95.469846024691662, 29.657434172515345 ], [ -95.469942024379151, 29.657442172561215 ], [ -95.470118024275962, 29.657436172273812 ], [ -95.470244024339721, 29.657414172327119 ], [ -95.470346024001628, 29.65738717230721 ], [ -95.470408024255235, 29.657370172479336 ], [ -95.470897025019184, 29.657072172510862 ], [ -95.471049024414654, 29.656980172110401 ], [ -95.47121302473991, 29.656864172764962 ], [ -95.472683025050856, 29.655938172664342 ], [ -95.472753025118294, 29.655895171838814 ], [ -95.474876025786813, 29.654560172324022 ], [ -95.476537026334768, 29.653575171951843 ], [ -95.476726026042982, 29.653441171420269 ], [ -95.477009025863566, 29.653239171724994 ], [ -95.477229026536904, 29.65310217177036 ], [ -95.477512025942019, 29.652904171653717 ], [ -95.477720026244512, 29.652849171091603 ], [ -95.477928026049653, 29.652816171794253 ], [ -95.478354026708914, 29.652875171239792 ], [ -95.478519026582688, 29.652898171267534 ], [ -95.47870002676288, 29.652873171182495 ], [ -95.478796026411516, 29.652860171670781 ], [ -95.47926802683368, 29.652689171133712 ], [ -95.479623026922638, 29.652607171043854 ], [ -95.4798910266055, 29.65255717166508 ], [ -95.480722026988289, 29.652671171704032 ], [ -95.480930027386037, 29.65269917085913 ], [ -95.481257027357742, 29.652722171315656 ], [ -95.481674026672536, 29.652157171526543 ], [ -95.481967026719332, 29.65154917068044 ], [ -95.482160027274247, 29.651000170583025 ], [ -95.482281026722433, 29.650476171072384 ], [ -95.482157027141454, 29.650307170932059 ], [ -95.48220902748082, 29.649666170512866 ], [ -95.482200027007579, 29.649274170446407 ], [ -95.48215502706293, 29.647475170132111 ], [ -95.482154027252179, 29.646381170206432 ], [ -95.482104026536732, 29.64464616982082 ], [ -95.482194026813275, 29.644401169264341 ], [ -95.482307026869037, 29.643966169473398 ], [ -95.482391026954559, 29.643650169718413 ], [ -95.482454026588385, 29.643411169763354 ], [ -95.482461027327105, 29.643045169459381 ], [ -95.482468027194003, 29.642433169551449 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 163, "Tract": "48201980000", "Area_SqMi": 2.1435147598064934, "total_2009": 4545, "total_2010": 4383, "total_2011": 4471, "total_2012": 4840, "total_2013": 5035, "total_2014": 1876, "total_2015": 1875, "total_2016": 4847, "total_2017": 5402, "total_2018": 1702, "total_2019": 1676, "total_2020": 1458, "age1": 418, "age2": 793, "age3": 368, "earn1": 192, "earn2": 435, "earn3": 952, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 62, "naics_s05": 23, "naics_s06": 20, "naics_s07": 163, "naics_s08": 885, "naics_s09": 0, "naics_s10": 0, "naics_s11": 212, "naics_s12": 11, "naics_s13": 5, "naics_s14": 6, "naics_s15": 0, "naics_s16": 20, "naics_s17": 0, "naics_s18": 171, "naics_s19": 0, "naics_s20": 0, "race1": 1151, "race2": 333, "race3": 11, "race4": 57, "race5": 3, "race6": 24, "ethnicity1": 1131, "ethnicity2": 448, "edu1": 223, "edu2": 317, "edu3": 355, "edu4": 266, "Shape_Length": 34482.552488865273, "Shape_Area": 59757522.84122847, "total_2021": 1246, "total_2022": 1579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.288844977623143, 29.63928117493035 ], [ -95.288839977133179, 29.639026174607469 ], [ -95.288812977116919, 29.638702174528937 ], [ -95.288759977355909, 29.638166174775531 ], [ -95.28865797690446, 29.637724174344804 ], [ -95.288566977096622, 29.63738417423076 ], [ -95.288260977165734, 29.636699174652275 ], [ -95.288113976463961, 29.63645417441413 ], [ -95.286650976052911, 29.634330174035256 ], [ -95.285697976537605, 29.634279173744517 ], [ -95.285137975669045, 29.634288174494419 ], [ -95.282880975567267, 29.634343174367814 ], [ -95.281899974978515, 29.634346174106476 ], [ -95.279978974827173, 29.634382174235601 ], [ -95.278557974645324, 29.634398173935725 ], [ -95.277791973862207, 29.634408173921969 ], [ -95.277018974374883, 29.63442117406008 ], [ -95.276907974222581, 29.634423174607086 ], [ -95.275878973643785, 29.634452174304538 ], [ -95.275891973556966, 29.635031174388512 ], [ -95.275895974190576, 29.635189174855551 ], [ -95.275921973582598, 29.635286174234174 ], [ -95.275960973684789, 29.635430174349555 ], [ -95.275025973574586, 29.635455174751385 ], [ -95.274638973100508, 29.635466174834733 ], [ -95.272860972947655, 29.635499174541629 ], [ -95.272445972996167, 29.63559817456651 ], [ -95.271984972312779, 29.635696174425142 ], [ -95.271549972618899, 29.635704174689714 ], [ -95.271231972507621, 29.635633175009286 ], [ -95.268924972311737, 29.63512017518984 ], [ -95.268695972318795, 29.635008174776861 ], [ -95.268263971895678, 29.634653174522139 ], [ -95.266983971544661, 29.633601174233529 ], [ -95.266896971334475, 29.633530174782202 ], [ -95.266672970860981, 29.633354174517411 ], [ -95.266666971316965, 29.63243817441948 ], [ -95.264619970257655, 29.632478174404458 ], [ -95.264608970339552, 29.634237175048497 ], [ -95.264609970782615, 29.6343001750413 ], [ -95.264633971175087, 29.635960175464064 ], [ -95.265575971352106, 29.635964175498749 ], [ -95.26688997120587, 29.636767175102673 ], [ -95.266907971967512, 29.638920175342992 ], [ -95.267019972249102, 29.643181176549685 ], [ -95.267039972143806, 29.643824177063401 ], [ -95.267053972053091, 29.644662177047753 ], [ -95.267073971836624, 29.645528176820555 ], [ -95.26711097246654, 29.647681177715253 ], [ -95.267112971723321, 29.648182177971449 ], [ -95.267132972003367, 29.648874178083418 ], [ -95.267149972251786, 29.649580177697711 ], [ -95.26719697261484, 29.651931178288311 ], [ -95.266789972411473, 29.651936177914486 ], [ -95.266485972191091, 29.65194117877731 ], [ -95.265010971749405, 29.651955178618532 ], [ -95.264999971500075, 29.652539178280829 ], [ -95.264918971453525, 29.653179178980359 ], [ -95.264693971578438, 29.65393817888075 ], [ -95.264236971346335, 29.655040178714017 ], [ -95.263979971137459, 29.65562017899374 ], [ -95.264520971647769, 29.656080179497632 ], [ -95.265321972242788, 29.656715179558603 ], [ -95.266003972410061, 29.657159179228163 ], [ -95.267106972214677, 29.657653179105647 ], [ -95.26733497297927, 29.657755179176888 ], [ -95.26740197216597, 29.657780179591725 ], [ -95.267632972572116, 29.65786917972197 ], [ -95.268443972539359, 29.658031179255769 ], [ -95.269607973089762, 29.658061179162011 ], [ -95.269978972717297, 29.658054179539644 ], [ -95.270249973734664, 29.658047179240139 ], [ -95.272316973507628, 29.657985179309975 ], [ -95.273569974454816, 29.657968179797443 ], [ -95.274468974531089, 29.65794917892541 ], [ -95.276707974453174, 29.657905179155282 ], [ -95.27733597542138, 29.657881179012303 ], [ -95.27811597501514, 29.657867178852527 ], [ -95.278604975068532, 29.657848178696597 ], [ -95.278918975658385, 29.657853178963435 ], [ -95.280204975357634, 29.657825179450093 ], [ -95.281237975784705, 29.657802179395514 ], [ -95.281666975935067, 29.657790178924731 ], [ -95.281998976727181, 29.657776178822829 ], [ -95.282528976334845, 29.657776178685829 ], [ -95.283279976118479, 29.657763179206182 ], [ -95.284275976865644, 29.657682179006947 ], [ -95.284508976770525, 29.657656178892307 ], [ -95.285571977316025, 29.657385179178522 ], [ -95.28577497681033, 29.657602178480264 ], [ -95.28704797753285, 29.657585179203135 ], [ -95.288709977832326, 29.657552178582879 ], [ -95.288756978301819, 29.657531178446302 ], [ -95.28874197786989, 29.656864178327407 ], [ -95.288734977465126, 29.656225178126377 ], [ -95.288731977750345, 29.65588917811823 ], [ -95.288722978281513, 29.654938177813268 ], [ -95.288670977291403, 29.652992177978501 ], [ -95.288650978186297, 29.651554177484087 ], [ -95.288631977772226, 29.650153177447123 ], [ -95.28860397736274, 29.648135176819075 ], [ -95.288584976985035, 29.646987176264421 ], [ -95.288559977421286, 29.646112176386733 ], [ -95.28855397758592, 29.644105175812982 ], [ -95.28849997768414, 29.642300175873526 ], [ -95.288502977552596, 29.641948175249251 ], [ -95.288523977228891, 29.641772175871171 ], [ -95.288559977171005, 29.641483175441735 ], [ -95.288609976758522, 29.641009175470689 ], [ -95.288745976900017, 29.640054174733724 ], [ -95.28882397706505, 29.639584174634859 ], [ -95.288844977623143, 29.63928117493035 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 164, "Tract": "48201333600", "Area_SqMi": 1.4457364164983637, "total_2009": 263, "total_2010": 241, "total_2011": 300, "total_2012": 229, "total_2013": 239, "total_2014": 298, "total_2015": 297, "total_2016": 299, "total_2017": 278, "total_2018": 246, "total_2019": 263, "total_2020": 240, "age1": 100, "age2": 128, "age3": 77, "earn1": 81, "earn2": 95, "earn3": 129, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 7, "naics_s06": 1, "naics_s07": 87, "naics_s08": 17, "naics_s09": 0, "naics_s10": 4, "naics_s11": 9, "naics_s12": 2, "naics_s13": 0, "naics_s14": 19, "naics_s15": 38, "naics_s16": 9, "naics_s17": 0, "naics_s18": 86, "naics_s19": 0, "naics_s20": 0, "race1": 218, "race2": 67, "race3": 2, "race4": 15, "race5": 0, "race6": 3, "ethnicity1": 148, "ethnicity2": 157, "edu1": 68, "edu2": 50, "edu3": 54, "edu4": 33, "Shape_Length": 29366.246493358278, "Shape_Area": 40304656.889367998, "total_2021": 254, "total_2022": 305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.314652984177613, 29.655009177175835 ], [ -95.314629984683606, 29.65494717714266 ], [ -95.314524984871142, 29.654665176948853 ], [ -95.314328984317712, 29.654085177581312 ], [ -95.314152984604902, 29.653460177131162 ], [ -95.313954984461347, 29.652797176752472 ], [ -95.313784984060092, 29.652237176651113 ], [ -95.313493983853633, 29.651285176312374 ], [ -95.312839983563975, 29.649073176124091 ], [ -95.311907983402122, 29.645996175798718 ], [ -95.311766983201409, 29.646080175233596 ], [ -95.311039982695718, 29.646444175552915 ], [ -95.310995982751876, 29.646484175925973 ], [ -95.310229982896104, 29.646833175476896 ], [ -95.310151983487685, 29.64683417559305 ], [ -95.309639982462883, 29.647010175933097 ], [ -95.309480982786894, 29.647060176339114 ], [ -95.309476982453859, 29.64715717574812 ], [ -95.309427982626971, 29.647221176169186 ], [ -95.309306982456079, 29.647300175627752 ], [ -95.305297982254544, 29.649242176848521 ], [ -95.30473898122672, 29.649522176890262 ], [ -95.296867979689068, 29.653423177572687 ], [ -95.291909978928075, 29.655875178553067 ], [ -95.291554978574979, 29.656061178484258 ], [ -95.291376978203928, 29.656186178420601 ], [ -95.291286978815464, 29.656260178680878 ], [ -95.291095978993766, 29.656414178731804 ], [ -95.290868978534192, 29.656536178248302 ], [ -95.289990978415872, 29.656979178936297 ], [ -95.288985977589121, 29.657432178411863 ], [ -95.288756978301819, 29.657531178446302 ], [ -95.288776978355003, 29.658415178827543 ], [ -95.288798978506776, 29.659385178793734 ], [ -95.288805978557022, 29.659714178759483 ], [ -95.28883297861185, 29.661085179803468 ], [ -95.288842978303308, 29.661627179527244 ], [ -95.288852978297598, 29.662119179899978 ], [ -95.288880978118186, 29.663057179902339 ], [ -95.288887978090557, 29.663548179764184 ], [ -95.288896978150646, 29.664234180477788 ], [ -95.288902978566952, 29.664653180388008 ], [ -95.288917978524481, 29.66542118050727 ], [ -95.288960978612877, 29.667578180718177 ], [ -95.288964978461578, 29.667788181225671 ], [ -95.288988978877143, 29.669374180812451 ], [ -95.289005979012316, 29.670309181291451 ], [ -95.289021978185687, 29.67124818167288 ], [ -95.289025979104807, 29.671484181787168 ], [ -95.289029978166113, 29.671725181931699 ], [ -95.289045978365948, 29.67239018145472 ], [ -95.289068978257276, 29.673182181761636 ], [ -95.289266979253782, 29.67325518169423 ], [ -95.289615979101157, 29.673349181975752 ], [ -95.290054979439731, 29.673468181713794 ], [ -95.290137978604477, 29.673490181508321 ], [ -95.290214979568731, 29.673510181639795 ], [ -95.290273979521601, 29.673525182022146 ], [ -95.290331978897655, 29.673540181733461 ], [ -95.290560979096071, 29.673254181884342 ], [ -95.290713979559129, 29.673135181813681 ], [ -95.291033978894447, 29.672951181639061 ], [ -95.291285979690059, 29.672840181926826 ], [ -95.291593979339567, 29.672791181799294 ], [ -95.291789979747762, 29.672778182195433 ], [ -95.292017979305925, 29.67282218173451 ], [ -95.292269979892993, 29.6729141817151 ], [ -95.292473979343711, 29.672930181822345 ], [ -95.292936979876032, 29.673122181414218 ], [ -95.295442979996253, 29.672647181304377 ], [ -95.296383980201199, 29.672299181953051 ], [ -95.296935980492677, 29.671936181188752 ], [ -95.297104981247472, 29.671685181602594 ], [ -95.297262981147369, 29.671230181144253 ], [ -95.2971559803904, 29.668540180411565 ], [ -95.297320980532277, 29.66821118074909 ], [ -95.298396980873136, 29.667198180100016 ], [ -95.300186981133677, 29.666012179762056 ], [ -95.301454981369375, 29.665265179538764 ], [ -95.303080981539807, 29.664375179983445 ], [ -95.304276982002037, 29.663556179574883 ], [ -95.304814982446914, 29.662954179638213 ], [ -95.305090982116056, 29.662811179014227 ], [ -95.307187982904821, 29.66097017889707 ], [ -95.307596983376541, 29.660111178461175 ], [ -95.307863982820507, 29.659358178058511 ], [ -95.308776983602229, 29.657937178351428 ], [ -95.309437982789262, 29.657620178448209 ], [ -95.31051698356309, 29.657385178042894 ], [ -95.311354983470082, 29.657201177478978 ], [ -95.311748983378081, 29.656853177448074 ], [ -95.312229983512964, 29.655795177185656 ], [ -95.31263398419577, 29.655345177284389 ], [ -95.313144984280072, 29.655161177223153 ], [ -95.313753983812788, 29.655181177416864 ], [ -95.314381984521319, 29.655060177358671 ], [ -95.314652984177613, 29.655009177175835 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 165, "Tract": "48201333700", "Area_SqMi": 3.4573142824049072, "total_2009": 3425, "total_2010": 3850, "total_2011": 3778, "total_2012": 3295, "total_2013": 3352, "total_2014": 4046, "total_2015": 4261, "total_2016": 4136, "total_2017": 4533, "total_2018": 4372, "total_2019": 4993, "total_2020": 5074, "age1": 835, "age2": 2681, "age3": 1283, "earn1": 416, "earn2": 1200, "earn3": 3183, "naics_s01": 100, "naics_s02": 0, "naics_s03": 0, "naics_s04": 416, "naics_s05": 1611, "naics_s06": 696, "naics_s07": 449, "naics_s08": 1316, "naics_s09": 44, "naics_s10": 24, "naics_s11": 23, "naics_s12": 6, "naics_s13": 0, "naics_s14": 21, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 76, "naics_s19": 8, "naics_s20": 0, "race1": 3361, "race2": 1004, "race3": 40, "race4": 333, "race5": 7, "race6": 54, "ethnicity1": 2881, "ethnicity2": 1918, "edu1": 1088, "edu2": 1109, "edu3": 1158, "edu4": 609, "Shape_Length": 49863.241536817455, "Shape_Area": 96384004.940916583, "total_2021": 4322, "total_2022": 4799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.311766983201409, 29.646080175233596 ], [ -95.311907983402122, 29.645996175798718 ], [ -95.311733982953712, 29.645485175833812 ], [ -95.311321982859752, 29.644031174908847 ], [ -95.311121983576541, 29.643351175175905 ], [ -95.310735982885475, 29.642040174598243 ], [ -95.310276982537161, 29.640532174469701 ], [ -95.309801982973553, 29.63905217416297 ], [ -95.309430982793984, 29.63789617386302 ], [ -95.3089089825651, 29.636265173421553 ], [ -95.308747981695063, 29.635761173598137 ], [ -95.308362982373609, 29.634557173642655 ], [ -95.308189982375552, 29.634015173453488 ], [ -95.306885981308227, 29.629559172586877 ], [ -95.306003980700183, 29.626277171508594 ], [ -95.305904981213573, 29.625908171576764 ], [ -95.305609980543963, 29.624906171176725 ], [ -95.305403981145645, 29.624221171525164 ], [ -95.304987980352976, 29.622806170916917 ], [ -95.304527980936541, 29.621350170433086 ], [ -95.304375980157332, 29.620857170326818 ], [ -95.304192979888924, 29.620853170239187 ], [ -95.301705979451356, 29.620853171068546 ], [ -95.300457979510981, 29.620848170424139 ], [ -95.298925978770143, 29.620831171238571 ], [ -95.294361978009775, 29.620816171458483 ], [ -95.293234977467279, 29.620817170647229 ], [ -95.293122977547029, 29.620817171455165 ], [ -95.291713977174041, 29.620810170949621 ], [ -95.291402977384749, 29.620813171335492 ], [ -95.291296977181403, 29.620819171172652 ], [ -95.290600976524871, 29.620809170829418 ], [ -95.290223977074731, 29.620806170947176 ], [ -95.289314976226621, 29.620804170984425 ], [ -95.285629975573855, 29.620784171194956 ], [ -95.285347975676473, 29.620789171275241 ], [ -95.285357975104333, 29.621152171531488 ], [ -95.285352975878396, 29.621445171046698 ], [ -95.28536997548072, 29.622187171894311 ], [ -95.28542997566629, 29.623921171775102 ], [ -95.285472975688521, 29.62545417265261 ], [ -95.285138975668389, 29.625465172060419 ], [ -95.282847974549895, 29.625505172224543 ], [ -95.281582974552109, 29.625527172496874 ], [ -95.281020974934123, 29.625536172298613 ], [ -95.280940974348979, 29.625540172197883 ], [ -95.280813974202744, 29.625547172619697 ], [ -95.280456974688136, 29.625566172779759 ], [ -95.280397974129571, 29.625570172028631 ], [ -95.279417973734013, 29.625789172868245 ], [ -95.279063973849361, 29.625861172905125 ], [ -95.278441973963581, 29.625946172558656 ], [ -95.275735973566697, 29.626096173046864 ], [ -95.271227972266459, 29.626244173133454 ], [ -95.266740970567454, 29.626442173444307 ], [ -95.266713971016856, 29.627358173181413 ], [ -95.266640971284247, 29.627835173584838 ], [ -95.266768971391613, 29.628038173249443 ], [ -95.266785971265605, 29.628266173333593 ], [ -95.266785971356015, 29.628566173312265 ], [ -95.266785971567586, 29.628670173268773 ], [ -95.266810970993703, 29.629177173409278 ], [ -95.266825970836635, 29.630081173530449 ], [ -95.26683297169815, 29.630976174034021 ], [ -95.266838970814419, 29.631878174084413 ], [ -95.266826971741281, 29.632435174318783 ], [ -95.266666971316965, 29.63243817441948 ], [ -95.266672970860981, 29.633354174517411 ], [ -95.266896971334475, 29.633530174782202 ], [ -95.266983971544661, 29.633601174233529 ], [ -95.268263971895678, 29.634653174522139 ], [ -95.268695972318795, 29.635008174776861 ], [ -95.268924972311737, 29.63512017518984 ], [ -95.271231972507621, 29.635633175009286 ], [ -95.271549972618899, 29.635704174689714 ], [ -95.271984972312779, 29.635696174425142 ], [ -95.272445972996167, 29.63559817456651 ], [ -95.272860972947655, 29.635499174541629 ], [ -95.274638973100508, 29.635466174834733 ], [ -95.275025973574586, 29.635455174751385 ], [ -95.275960973684789, 29.635430174349555 ], [ -95.275921973582598, 29.635286174234174 ], [ -95.275895974190576, 29.635189174855551 ], [ -95.275891973556966, 29.635031174388512 ], [ -95.275878973643785, 29.634452174304538 ], [ -95.276907974222581, 29.634423174607086 ], [ -95.277018974374883, 29.63442117406008 ], [ -95.277791973862207, 29.634408173921969 ], [ -95.278557974645324, 29.634398173935725 ], [ -95.279978974827173, 29.634382174235601 ], [ -95.281899974978515, 29.634346174106476 ], [ -95.282880975567267, 29.634343174367814 ], [ -95.285137975669045, 29.634288174494419 ], [ -95.285697976537605, 29.634279173744517 ], [ -95.286650976052911, 29.634330174035256 ], [ -95.288113976463961, 29.63645417441413 ], [ -95.288260977165734, 29.636699174652275 ], [ -95.288566977096622, 29.63738417423076 ], [ -95.28865797690446, 29.637724174344804 ], [ -95.288759977355909, 29.638166174775531 ], [ -95.288812977116919, 29.638702174528937 ], [ -95.288839977133179, 29.639026174607469 ], [ -95.288844977623143, 29.63928117493035 ], [ -95.28882397706505, 29.639584174634859 ], [ -95.288745976900017, 29.640054174733724 ], [ -95.288609976758522, 29.641009175470689 ], [ -95.288559977171005, 29.641483175441735 ], [ -95.288523977228891, 29.641772175871171 ], [ -95.288502977552596, 29.641948175249251 ], [ -95.28849997768414, 29.642300175873526 ], [ -95.28855397758592, 29.644105175812982 ], [ -95.288559977421286, 29.646112176386733 ], [ -95.288584976985035, 29.646987176264421 ], [ -95.28860397736274, 29.648135176819075 ], [ -95.288631977772226, 29.650153177447123 ], [ -95.288650978186297, 29.651554177484087 ], [ -95.288670977291403, 29.652992177978501 ], [ -95.288722978281513, 29.654938177813268 ], [ -95.288731977750345, 29.65588917811823 ], [ -95.288734977465126, 29.656225178126377 ], [ -95.28874197786989, 29.656864178327407 ], [ -95.288756978301819, 29.657531178446302 ], [ -95.288985977589121, 29.657432178411863 ], [ -95.289990978415872, 29.656979178936297 ], [ -95.290868978534192, 29.656536178248302 ], [ -95.291095978993766, 29.656414178731804 ], [ -95.291286978815464, 29.656260178680878 ], [ -95.291376978203928, 29.656186178420601 ], [ -95.291554978574979, 29.656061178484258 ], [ -95.291909978928075, 29.655875178553067 ], [ -95.296867979689068, 29.653423177572687 ], [ -95.30473898122672, 29.649522176890262 ], [ -95.305297982254544, 29.649242176848521 ], [ -95.309306982456079, 29.647300175627752 ], [ -95.309427982626971, 29.647221176169186 ], [ -95.309476982453859, 29.64715717574812 ], [ -95.309480982786894, 29.647060176339114 ], [ -95.309639982462883, 29.647010175933097 ], [ -95.310151983487685, 29.64683417559305 ], [ -95.310229982896104, 29.646833175476896 ], [ -95.310995982751876, 29.646484175925973 ], [ -95.311039982695718, 29.646444175552915 ], [ -95.311766983201409, 29.646080175233596 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 166, "Tract": "48201410300", "Area_SqMi": 0.3963581333180492, "total_2009": 5090, "total_2010": 6007, "total_2011": 6098, "total_2012": 4164, "total_2013": 4181, "total_2014": 5913, "total_2015": 3860, "total_2016": 3735, "total_2017": 3695, "total_2018": 3671, "total_2019": 3696, "total_2020": 3339, "age1": 1174, "age2": 1888, "age3": 767, "earn1": 1061, "earn2": 1225, "earn3": 1543, "naics_s01": 0, "naics_s02": 12, "naics_s03": 0, "naics_s04": 35, "naics_s05": 73, "naics_s06": 14, "naics_s07": 1061, "naics_s08": 16, "naics_s09": 7, "naics_s10": 72, "naics_s11": 132, "naics_s12": 302, "naics_s13": 24, "naics_s14": 193, "naics_s15": 53, "naics_s16": 450, "naics_s17": 231, "naics_s18": 969, "naics_s19": 183, "naics_s20": 2, "race1": 2747, "race2": 634, "race3": 33, "race4": 337, "race5": 6, "race6": 72, "ethnicity1": 2621, "ethnicity2": 1208, "edu1": 536, "edu2": 687, "edu3": 737, "edu4": 695, "Shape_Length": 14346.488023555066, "Shape_Area": 11049786.38318227, "total_2021": 3286, "total_2022": 3829 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.410734013795704, 29.754561194645088 ], [ -95.410731013324508, 29.754230194336976 ], [ -95.410728013895067, 29.753993194160063 ], [ -95.41071801386974, 29.753321194042318 ], [ -95.410714013949487, 29.753010194130042 ], [ -95.410709013100984, 29.752020193767901 ], [ -95.410443013744228, 29.752018193914871 ], [ -95.410279012865573, 29.752021193790544 ], [ -95.410126013159541, 29.752040193585543 ], [ -95.409963013624761, 29.752095194108527 ], [ -95.409601013373916, 29.752271194519089 ], [ -95.409504013451937, 29.752299194421838 ], [ -95.409476012650799, 29.75230019431876 ], [ -95.40835701269053, 29.752327194019259 ], [ -95.407991012971024, 29.752329193746057 ], [ -95.407208012996108, 29.752341194054733 ], [ -95.406415011966871, 29.752344194643999 ], [ -95.405599011749175, 29.752361193933226 ], [ -95.404749011988557, 29.7523841939385 ], [ -95.403886012173473, 29.752399194114265 ], [ -95.403031011758344, 29.752410194385625 ], [ -95.402828011466681, 29.752413194296235 ], [ -95.40239901129263, 29.752422194409711 ], [ -95.402213011683585, 29.752432194159585 ], [ -95.402250011329784, 29.75255319461262 ], [ -95.402282010984891, 29.752889194615868 ], [ -95.402291011413851, 29.753159194605328 ], [ -95.40025401075998, 29.753203194377221 ], [ -95.399224010880616, 29.753215194393551 ], [ -95.398024010398998, 29.753234194896709 ], [ -95.39803901069142, 29.753949194616073 ], [ -95.398067010529076, 29.754641195411331 ], [ -95.398084010067734, 29.75534019474971 ], [ -95.39812501034136, 29.757337195391866 ], [ -95.398148010826802, 29.758252196004189 ], [ -95.398156010034711, 29.759567195944047 ], [ -95.39819001081753, 29.761121196438445 ], [ -95.398208010375839, 29.761265195902038 ], [ -95.398219010272157, 29.761354195921268 ], [ -95.398259010249959, 29.761463196668075 ], [ -95.398319011166592, 29.761621196071971 ], [ -95.398358010894711, 29.761707196307096 ], [ -95.39843001117535, 29.76186319652496 ], [ -95.398456010739622, 29.761855196405484 ], [ -95.399033010919055, 29.761806196802926 ], [ -95.400497011709803, 29.762015195959478 ], [ -95.401193011797758, 29.761947196274232 ], [ -95.401751011820537, 29.761828196175831 ], [ -95.402247011663164, 29.761652196175728 ], [ -95.402719012117686, 29.761315196443743 ], [ -95.403593011859641, 29.760927196384323 ], [ -95.404122012597369, 29.760882196216034 ], [ -95.405396012626497, 29.760906195744482 ], [ -95.406993013165774, 29.760763195473121 ], [ -95.407313012983522, 29.76069519595389 ], [ -95.407800013543209, 29.760428195733397 ], [ -95.408088013334336, 29.76038719614991 ], [ -95.408413013527337, 29.760431196212743 ], [ -95.408550013067995, 29.76049119584296 ], [ -95.408632013000044, 29.760527195431958 ], [ -95.408622013761089, 29.760473195859149 ], [ -95.408599013115307, 29.760397195779163 ], [ -95.408539012863699, 29.760202196009619 ], [ -95.408499013384699, 29.759731195964104 ], [ -95.408481013523172, 29.759512195481616 ], [ -95.408457013446593, 29.758766195323574 ], [ -95.408427013072142, 29.757142194747498 ], [ -95.408409013458694, 29.756413194893859 ], [ -95.408520012578322, 29.756126194779515 ], [ -95.408581012989742, 29.755994194862357 ], [ -95.40867801333215, 29.755875194967199 ], [ -95.408832013367046, 29.75574919439148 ], [ -95.408984013351656, 29.755658194779205 ], [ -95.409308012835183, 29.755499194561139 ], [ -95.410337013182954, 29.755051194278945 ], [ -95.410616013546218, 29.754803194684676 ], [ -95.410734013795704, 29.754561194645088 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 167, "Tract": "48201410900", "Area_SqMi": 0.28499115082152265, "total_2009": 1055, "total_2010": 917, "total_2011": 1226, "total_2012": 1205, "total_2013": 1276, "total_2014": 1278, "total_2015": 1454, "total_2016": 1362, "total_2017": 1477, "total_2018": 1293, "total_2019": 1223, "total_2020": 1290, "age1": 349, "age2": 803, "age3": 285, "earn1": 282, "earn2": 468, "earn3": 687, "naics_s01": 7, "naics_s02": 5, "naics_s03": 37, "naics_s04": 8, "naics_s05": 9, "naics_s06": 17, "naics_s07": 45, "naics_s08": 0, "naics_s09": 134, "naics_s10": 53, "naics_s11": 28, "naics_s12": 294, "naics_s13": 2, "naics_s14": 29, "naics_s15": 0, "naics_s16": 131, "naics_s17": 17, "naics_s18": 543, "naics_s19": 78, "naics_s20": 0, "race1": 1102, "race2": 169, "race3": 10, "race4": 112, "race5": 1, "race6": 43, "ethnicity1": 988, "ethnicity2": 449, "edu1": 231, "edu2": 248, "edu3": 315, "edu4": 294, "Shape_Length": 17549.49885432038, "Shape_Area": 7945065.5176746035, "total_2021": 1336, "total_2022": 1437 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.410671013024398, 29.733567190196549 ], [ -95.410717012857788, 29.733412190620246 ], [ -95.410642012505235, 29.733355189898749 ], [ -95.410630012929943, 29.732566190423896 ], [ -95.410616011977822, 29.731716190182652 ], [ -95.41062001218603, 29.731220189636474 ], [ -95.410615012377164, 29.73098318939407 ], [ -95.41045201235363, 29.730983189680835 ], [ -95.407356011859221, 29.731055189850927 ], [ -95.40700701180117, 29.731076189639186 ], [ -95.404434010390403, 29.731170190266223 ], [ -95.402935010589033, 29.731228190292978 ], [ -95.402116010174126, 29.73128618990355 ], [ -95.399493009505349, 29.731395190557091 ], [ -95.398691009452378, 29.731459190294306 ], [ -95.397586008787727, 29.731541190188938 ], [ -95.396155009152494, 29.731635190478549 ], [ -95.394694008246589, 29.731720189939242 ], [ -95.393655008050771, 29.731829190532121 ], [ -95.391095007861622, 29.732017190466397 ], [ -95.39024900692425, 29.732075190235367 ], [ -95.389760007622769, 29.732102190988446 ], [ -95.389520006874719, 29.732118190938319 ], [ -95.388857006427656, 29.732189190317133 ], [ -95.38864600731759, 29.732190190956739 ], [ -95.388245006458533, 29.732296190611851 ], [ -95.38792900677737, 29.732358190422747 ], [ -95.387533006384714, 29.732502190689758 ], [ -95.387257007041896, 29.73263219062472 ], [ -95.38709600666067, 29.732722190962455 ], [ -95.386883006022444, 29.732884190934428 ], [ -95.386678006450808, 29.733077191027874 ], [ -95.386543006457259, 29.733213190689955 ], [ -95.386157006335779, 29.733673191510494 ], [ -95.385976006484057, 29.733898191321032 ], [ -95.38586300600312, 29.734045190704357 ], [ -95.385620006332047, 29.734356190884689 ], [ -95.385538005671876, 29.734458191567914 ], [ -95.385484006404383, 29.734535190972775 ], [ -95.385756006062778, 29.734528190859645 ], [ -95.386163006538609, 29.734498191683997 ], [ -95.386905006519839, 29.734478191114924 ], [ -95.387873007254044, 29.734478191559507 ], [ -95.388448007362868, 29.73451319139366 ], [ -95.38885200748058, 29.73451919096485 ], [ -95.389825007041637, 29.734518190936342 ], [ -95.390297007737175, 29.734507190859397 ], [ -95.391137007096759, 29.734480191405769 ], [ -95.39177300799696, 29.734483191383116 ], [ -95.392509008488034, 29.734487190613024 ], [ -95.392936007760014, 29.734487190596923 ], [ -95.392960008305764, 29.734487191431793 ], [ -95.393110008557841, 29.734487190825746 ], [ -95.39369700829161, 29.734488190722541 ], [ -95.39410000808428, 29.734481190652559 ], [ -95.394654008354877, 29.734460191026546 ], [ -95.396494009338596, 29.734453191232472 ], [ -95.396748009092661, 29.734450190752764 ], [ -95.397002008799888, 29.734447190693448 ], [ -95.397880009168617, 29.734435190406774 ], [ -95.399489009505331, 29.734426190319141 ], [ -95.400616010224851, 29.734394190573987 ], [ -95.402072009944277, 29.734325190621547 ], [ -95.402851010924081, 29.734318190452615 ], [ -95.40334801089584, 29.734313190219265 ], [ -95.404466011366779, 29.734302190518822 ], [ -95.406241011535855, 29.734267190133192 ], [ -95.407054011281801, 29.734271190174027 ], [ -95.408027012058199, 29.734266190167144 ], [ -95.410658012676009, 29.734246189925425 ], [ -95.410671013024398, 29.733567190196549 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 168, "Tract": "48201420600", "Area_SqMi": 0.46522451014576682, "total_2009": 1338, "total_2010": 1367, "total_2011": 1234, "total_2012": 1543, "total_2013": 1769, "total_2014": 1633, "total_2015": 1742, "total_2016": 1838, "total_2017": 1878, "total_2018": 1758, "total_2019": 1717, "total_2020": 671, "age1": 682, "age2": 541, "age3": 248, "earn1": 666, "earn2": 497, "earn3": 308, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 28, "naics_s07": 254, "naics_s08": 17, "naics_s09": 23, "naics_s10": 34, "naics_s11": 6, "naics_s12": 48, "naics_s13": 69, "naics_s14": 1, "naics_s15": 34, "naics_s16": 44, "naics_s17": 0, "naics_s18": 864, "naics_s19": 45, "naics_s20": 0, "race1": 1002, "race2": 360, "race3": 22, "race4": 62, "race5": 0, "race6": 25, "ethnicity1": 890, "ethnicity2": 581, "edu1": 228, "edu2": 216, "edu3": 194, "edu4": 151, "Shape_Length": 19673.163312431796, "Shape_Area": 12969663.103157127, "total_2021": 1632, "total_2022": 1471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.481209026566987, 29.65278617129486 ], [ -95.481257027357742, 29.652722171315656 ], [ -95.480930027386037, 29.65269917085913 ], [ -95.480722026988289, 29.652671171704032 ], [ -95.4798910266055, 29.65255717166508 ], [ -95.479623026922638, 29.652607171043854 ], [ -95.47926802683368, 29.652689171133712 ], [ -95.478796026411516, 29.652860171670781 ], [ -95.47870002676288, 29.652873171182495 ], [ -95.478519026582688, 29.652898171267534 ], [ -95.478354026708914, 29.652875171239792 ], [ -95.477928026049653, 29.652816171794253 ], [ -95.477720026244512, 29.652849171091603 ], [ -95.477512025942019, 29.652904171653717 ], [ -95.477229026536904, 29.65310217177036 ], [ -95.477009025863566, 29.653239171724994 ], [ -95.476726026042982, 29.653441171420269 ], [ -95.476537026334768, 29.653575171951843 ], [ -95.474876025786813, 29.654560172324022 ], [ -95.472753025118294, 29.655895171838814 ], [ -95.472683025050856, 29.655938172664342 ], [ -95.47121302473991, 29.656864172764962 ], [ -95.471049024414654, 29.656980172110401 ], [ -95.470897025019184, 29.657072172510862 ], [ -95.470408024255235, 29.657370172479336 ], [ -95.470346024001628, 29.65738717230721 ], [ -95.470244024339721, 29.657414172327119 ], [ -95.470118024275962, 29.657436172273812 ], [ -95.469942024379151, 29.657442172561215 ], [ -95.469846024691662, 29.657434172515345 ], [ -95.469734024047384, 29.657425172700513 ], [ -95.469344023744512, 29.657376173038873 ], [ -95.469224024042305, 29.657310172283669 ], [ -95.469155024584822, 29.65731017295731 ], [ -95.469105024650958, 29.657332172694147 ], [ -95.469060024540184, 29.657398173043518 ], [ -95.469042024647422, 29.657557172529732 ], [ -95.468979023961438, 29.657761172653945 ], [ -95.468960024392629, 29.657942172643242 ], [ -95.468916024541741, 29.658025173089566 ], [ -95.468834023712134, 29.658096172976428 ], [ -95.468708024471468, 29.658129172454007 ], [ -95.46843102427448, 29.658135172791347 ], [ -95.468293024023851, 29.658157173095933 ], [ -95.468154023511588, 29.65818517307763 ], [ -95.468054023891327, 29.658245172503857 ], [ -95.467638023571752, 29.658674172942913 ], [ -95.467462023664623, 29.658872172865252 ], [ -95.467406023545152, 29.658965172744985 ], [ -95.467160023822231, 29.659152172822491 ], [ -95.466323023565309, 29.659175173030011 ], [ -95.465838022888406, 29.659279173410571 ], [ -95.465209022863831, 29.65960417280542 ], [ -95.464850023618808, 29.65986817294451 ], [ -95.464391023423531, 29.660143172964005 ], [ -95.464022023026075, 29.660482173075128 ], [ -95.464055023022993, 29.661150173311942 ], [ -95.464063023400342, 29.661497173405479 ], [ -95.464075023483872, 29.661977173478235 ], [ -95.464069023234401, 29.662640174254587 ], [ -95.464063022845252, 29.663430173912015 ], [ -95.46400502271797, 29.664310174201848 ], [ -95.463827022747722, 29.664977174152821 ], [ -95.463748023594519, 29.665355174303158 ], [ -95.463641022898514, 29.665675174910103 ], [ -95.463376023195536, 29.666381174745585 ], [ -95.463305022712873, 29.666592174966176 ], [ -95.463217022880471, 29.666824175207022 ], [ -95.462839023117638, 29.667850175335413 ], [ -95.462736022716385, 29.668138174808426 ], [ -95.462748023395662, 29.668276174740139 ], [ -95.462641022784695, 29.668590175356226 ], [ -95.462429023374028, 29.669213175176527 ], [ -95.461952022626207, 29.670540175615201 ], [ -95.461874022699334, 29.670755175694342 ], [ -95.46205402315536, 29.670731175526221 ], [ -95.462511023015324, 29.670646175504071 ], [ -95.46324202350948, 29.670396175080846 ], [ -95.46399502352341, 29.670111175038453 ], [ -95.464774023928086, 29.669645175179131 ], [ -95.465226023327688, 29.669375175274812 ], [ -95.465695023387411, 29.668949175382448 ], [ -95.466064023425034, 29.668613174783136 ], [ -95.466472023696753, 29.66825217513572 ], [ -95.466676023548843, 29.66807217448013 ], [ -95.468420024409966, 29.666526174930784 ], [ -95.469180024022762, 29.665768174659632 ], [ -95.469421024380054, 29.665543173987608 ], [ -95.47185802489328, 29.663269174188152 ], [ -95.474417025996942, 29.66090317315048 ], [ -95.475359025543469, 29.660161173172355 ], [ -95.475580025760181, 29.65999517320952 ], [ -95.476321026515819, 29.659482173091472 ], [ -95.476534026135781, 29.65938417272455 ], [ -95.476713026475707, 29.659301173096519 ], [ -95.476755025865174, 29.658721172276461 ], [ -95.476783026289439, 29.658328172838534 ], [ -95.476857026391968, 29.657934172533874 ], [ -95.477024025900903, 29.657383172016853 ], [ -95.477307025891974, 29.656690171962449 ], [ -95.477721026699342, 29.656164172509047 ], [ -95.478017026718049, 29.655804171617564 ], [ -95.478565026187425, 29.655277172031763 ], [ -95.478724026032083, 29.655132172149596 ], [ -95.479407026193371, 29.654508171702329 ], [ -95.479945027212793, 29.653950171532365 ], [ -95.480397026814657, 29.653583171424838 ], [ -95.480692027309388, 29.653314171501432 ], [ -95.481209026566987, 29.65278617129486 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 169, "Tract": "48201420700", "Area_SqMi": 0.8861372396680931, "total_2009": 366, "total_2010": 353, "total_2011": 303, "total_2012": 335, "total_2013": 295, "total_2014": 308, "total_2015": 335, "total_2016": 324, "total_2017": 344, "total_2018": 336, "total_2019": 363, "total_2020": 348, "age1": 129, "age2": 175, "age3": 106, "earn1": 179, "earn2": 121, "earn3": 110, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 16, "naics_s07": 28, "naics_s08": 0, "naics_s09": 2, "naics_s10": 16, "naics_s11": 7, "naics_s12": 13, "naics_s13": 1, "naics_s14": 11, "naics_s15": 0, "naics_s16": 80, "naics_s17": 2, "naics_s18": 111, "naics_s19": 108, "naics_s20": 0, "race1": 284, "race2": 96, "race3": 3, "race4": 25, "race5": 0, "race6": 2, "ethnicity1": 259, "ethnicity2": 151, "edu1": 62, "edu2": 76, "edu3": 78, "edu4": 65, "Shape_Length": 22900.825317019877, "Shape_Area": 24703989.602903228, "total_2021": 433, "total_2022": 410 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476882026662366, 29.677394176638561 ], [ -95.476878027346658, 29.677321176084824 ], [ -95.476849026889965, 29.676840176352684 ], [ -95.476844027231465, 29.675883175737233 ], [ -95.476840027245743, 29.674991175694661 ], [ -95.476838026482966, 29.674560176012609 ], [ -95.476842027196923, 29.674121175955229 ], [ -95.476846026423047, 29.673743175911614 ], [ -95.476834026619343, 29.673311175486106 ], [ -95.476830027191596, 29.672900175665237 ], [ -95.476826026805071, 29.672515175160679 ], [ -95.476821027116671, 29.672093175263932 ], [ -95.47681302655846, 29.671690175025574 ], [ -95.476804026835865, 29.671268175382284 ], [ -95.476801027058599, 29.670865174870354 ], [ -95.47679802655405, 29.670443175049144 ], [ -95.47679002667212, 29.670018174950915 ], [ -95.476782026942956, 29.669611174813372 ], [ -95.47675402680791, 29.668799174812477 ], [ -95.476775026103184, 29.668321174182925 ], [ -95.476802026719568, 29.667964174605576 ], [ -95.476853026303814, 29.667481174622274 ], [ -95.476841026988851, 29.666536174377711 ], [ -95.476822026807298, 29.664840173539577 ], [ -95.47678902641016, 29.662372173267322 ], [ -95.476762025998269, 29.661296173069765 ], [ -95.476716026006343, 29.659425172661585 ], [ -95.476713026475707, 29.659301173096519 ], [ -95.476534026135781, 29.65938417272455 ], [ -95.476321026515819, 29.659482173091472 ], [ -95.475580025760181, 29.65999517320952 ], [ -95.475359025543469, 29.660161173172355 ], [ -95.474417025996942, 29.66090317315048 ], [ -95.47185802489328, 29.663269174188152 ], [ -95.469421024380054, 29.665543173987608 ], [ -95.469180024022762, 29.665768174659632 ], [ -95.468420024409966, 29.666526174930784 ], [ -95.466676023548843, 29.66807217448013 ], [ -95.466472023696753, 29.66825217513572 ], [ -95.466064023425034, 29.668613174783136 ], [ -95.465695023387411, 29.668949175382448 ], [ -95.465226023327688, 29.669375175274812 ], [ -95.464774023928086, 29.669645175179131 ], [ -95.46399502352341, 29.670111175038453 ], [ -95.46324202350948, 29.670396175080846 ], [ -95.462511023015324, 29.670646175504071 ], [ -95.46205402315536, 29.670731175526221 ], [ -95.461874022699334, 29.670755175694342 ], [ -95.461598023125759, 29.671524176025006 ], [ -95.461006022550734, 29.672819175897096 ], [ -95.460918023084758, 29.673104176390268 ], [ -95.460076022287524, 29.675172176745576 ], [ -95.459577023043309, 29.676645176786323 ], [ -95.459479022293948, 29.677071177110346 ], [ -95.459365022379913, 29.67752617751696 ], [ -95.45920302283487, 29.678395177722855 ], [ -95.459166022714584, 29.678716177152122 ], [ -95.459087022993359, 29.679160177727976 ], [ -95.459081022143167, 29.679385177071438 ], [ -95.459077022301457, 29.679498177914844 ], [ -95.459068022940428, 29.680014177566434 ], [ -95.459057023137049, 29.681077177834361 ], [ -95.459059023093147, 29.681322177778608 ], [ -95.459059022893584, 29.681402178221074 ], [ -95.459208022793604, 29.681427177817934 ], [ -95.459406022525414, 29.681432178243519 ], [ -95.459537022272585, 29.681435177444225 ], [ -95.45998102339243, 29.681356177944124 ], [ -95.460677022987042, 29.681055177566758 ], [ -95.461627023365935, 29.680237177918734 ], [ -95.462143022903675, 29.679944177642057 ], [ -95.462624023392436, 29.67974717701572 ], [ -95.462858023359985, 29.679699177643034 ], [ -95.46381302416367, 29.67950617773171 ], [ -95.467357024715071, 29.678792177062796 ], [ -95.467583024390095, 29.678746177196309 ], [ -95.467816024820308, 29.678707176751736 ], [ -95.468887024949879, 29.678529176947439 ], [ -95.476430027443314, 29.677485176196146 ], [ -95.476623027156435, 29.677458176580693 ], [ -95.476882026662366, 29.677394176638561 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 170, "Tract": "48201420900", "Area_SqMi": 1.3416778281231505, "total_2009": 1290, "total_2010": 1319, "total_2011": 1301, "total_2012": 2277, "total_2013": 2172, "total_2014": 2141, "total_2015": 2150, "total_2016": 2546, "total_2017": 3627, "total_2018": 3177, "total_2019": 3177, "total_2020": 3236, "age1": 484, "age2": 1277, "age3": 500, "earn1": 434, "earn2": 650, "earn3": 1177, "naics_s01": 0, "naics_s02": 1, "naics_s03": 4, "naics_s04": 37, "naics_s05": 29, "naics_s06": 12, "naics_s07": 173, "naics_s08": 19, "naics_s09": 25, "naics_s10": 75, "naics_s11": 27, "naics_s12": 254, "naics_s13": 1, "naics_s14": 216, "naics_s15": 45, "naics_s16": 692, "naics_s17": 77, "naics_s18": 315, "naics_s19": 122, "naics_s20": 137, "race1": 1599, "race2": 367, "race3": 23, "race4": 234, "race5": 2, "race6": 36, "ethnicity1": 1543, "ethnicity2": 718, "edu1": 337, "edu2": 423, "edu3": 520, "edu4": 497, "Shape_Length": 30911.952426874675, "Shape_Area": 37403681.543520994, "total_2021": 3164, "total_2022": 2261 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484579029709337, 29.699199180775651 ], [ -95.484563029430873, 29.698284180369168 ], [ -95.484555029769808, 29.697851180850041 ], [ -95.484540029728123, 29.697087179914543 ], [ -95.484516029709937, 29.695858179857318 ], [ -95.484527030254483, 29.694636179438145 ], [ -95.484500029875448, 29.693461179718476 ], [ -95.484472029315299, 29.692222179416977 ], [ -95.484462030058125, 29.69103517943984 ], [ -95.481890028672467, 29.691048178714215 ], [ -95.481651028775275, 29.691016178881547 ], [ -95.480256028608196, 29.69102417955401 ], [ -95.479405028471433, 29.691038179569251 ], [ -95.476319027481438, 29.691066179283201 ], [ -95.476088026979099, 29.691120179457766 ], [ -95.476124027911979, 29.690339179218 ], [ -95.476240027827842, 29.689906179243042 ], [ -95.476242027874264, 29.689889178851036 ], [ -95.476095027249414, 29.689889179127469 ], [ -95.475914027749511, 29.689894178816978 ], [ -95.475679027115717, 29.689899178651089 ], [ -95.475478027214294, 29.689902179104148 ], [ -95.475275027503514, 29.689906179115006 ], [ -95.475068027532259, 29.689911179270606 ], [ -95.474864027032993, 29.689915179393875 ], [ -95.474661027241183, 29.689919179375945 ], [ -95.474467026745273, 29.689923179497331 ], [ -95.474253027164593, 29.689927179001071 ], [ -95.474048026848564, 29.689931179539855 ], [ -95.473842027256623, 29.689934179481504 ], [ -95.473638027034028, 29.689937179406268 ], [ -95.473434026364501, 29.689941179155245 ], [ -95.473229026989998, 29.689945179369584 ], [ -95.473024027005422, 29.689948179108015 ], [ -95.472818026253933, 29.689951179251274 ], [ -95.472615026216957, 29.689955178837977 ], [ -95.472410026131968, 29.689958179440417 ], [ -95.472204025928207, 29.689962178801395 ], [ -95.471986026642483, 29.689965179289342 ], [ -95.471876026776869, 29.689970179285481 ], [ -95.471800026356462, 29.689967179336207 ], [ -95.471571026253301, 29.689970179042387 ], [ -95.471383026369395, 29.689954179140969 ], [ -95.471178025624226, 29.689972179142632 ], [ -95.471003026073717, 29.689974179140979 ], [ -95.470755025877835, 29.689976179340395 ], [ -95.470550025495868, 29.689977179504584 ], [ -95.470371026096132, 29.689979178859698 ], [ -95.470140025851308, 29.689981179215884 ], [ -95.469934026294695, 29.68998317932515 ], [ -95.469764025596405, 29.689984179359676 ], [ -95.469526025362185, 29.689986179153781 ], [ -95.469321025443449, 29.68998817940275 ], [ -95.469116025993827, 29.689989179203092 ], [ -95.468911026029858, 29.689991179726416 ], [ -95.468707025780276, 29.689993179220931 ], [ -95.468502025250487, 29.689994178956155 ], [ -95.468297025780942, 29.689997179603669 ], [ -95.468091025029494, 29.689999179556718 ], [ -95.46788002578225, 29.690001179130146 ], [ -95.467727024981784, 29.690002179092783 ], [ -95.467590024940918, 29.690000179002361 ], [ -95.467395024815772, 29.689998179545825 ], [ -95.467158025567073, 29.689999179730371 ], [ -95.466946025514986, 29.690001179410544 ], [ -95.466748025358157, 29.690003178978987 ], [ -95.466524024737282, 29.690005179072294 ], [ -95.466312025126157, 29.690008179714752 ], [ -95.466100024976328, 29.690010179859563 ], [ -95.465886024356067, 29.690010179830839 ], [ -95.465671025077242, 29.690010179278033 ], [ -95.465462024466675, 29.690011179808273 ], [ -95.465254025122505, 29.69001117921562 ], [ -95.46505902492666, 29.690013179657686 ], [ -95.464734024614188, 29.690025179246827 ], [ -95.464409024186224, 29.690029179564998 ], [ -95.464094024336333, 29.690032179450313 ], [ -95.463793024278601, 29.690045179710499 ], [ -95.463464023954771, 29.690039179838948 ], [ -95.463161024509361, 29.690042179447751 ], [ -95.462835023654762, 29.69004517916381 ], [ -95.462520024075388, 29.690049179116997 ], [ -95.462205023920831, 29.690052179970852 ], [ -95.461719023298784, 29.690057179752522 ], [ -95.461357023160062, 29.690061179779814 ], [ -95.460900023022845, 29.690064179935412 ], [ -95.460490023686319, 29.690068179923241 ], [ -95.460189023136351, 29.690073179914908 ], [ -95.459881023688197, 29.690076179843064 ], [ -95.459457023191476, 29.690080179307419 ], [ -95.459107022990523, 29.690088179731632 ], [ -95.459111023499773, 29.690230179544702 ], [ -95.459152022683043, 29.691639180342897 ], [ -95.459198023405946, 29.694916180428837 ], [ -95.459198023259759, 29.694938180989261 ], [ -95.459216022883638, 29.696265180682648 ], [ -95.45922502339846, 29.696854181062381 ], [ -95.45922402334692, 29.697824180934077 ], [ -95.459223023520252, 29.698425181101054 ], [ -95.459222023164173, 29.698544181266225 ], [ -95.459222023759125, 29.698670181848087 ], [ -95.459219023675118, 29.700728182192719 ], [ -95.459271023916671, 29.702216181726648 ], [ -95.45927302400284, 29.702773181845384 ], [ -95.45932902379694, 29.704973182711381 ], [ -95.459428023819825, 29.70558218277618 ], [ -95.459460024189838, 29.705779182831161 ], [ -95.459807024109296, 29.705785183162497 ], [ -95.462226024372512, 29.705825182899012 ], [ -95.464377025062859, 29.705743182703866 ], [ -95.466799025498872, 29.705740182790692 ], [ -95.467910025743436, 29.705740182191825 ], [ -95.470334026661945, 29.705683182365011 ], [ -95.471832027342728, 29.705653182001633 ], [ -95.472517027627049, 29.705654182338446 ], [ -95.473699027868378, 29.705623182383164 ], [ -95.474004027066258, 29.705619182264709 ], [ -95.474164027621967, 29.705634182352608 ], [ -95.475033027588069, 29.705615182747668 ], [ -95.475190028303658, 29.705611182095936 ], [ -95.475673027681239, 29.705611182333385 ], [ -95.476283027612325, 29.705608182194712 ], [ -95.476272028501199, 29.704747182450255 ], [ -95.476270027619407, 29.704560181821829 ], [ -95.476261028031431, 29.70381818183991 ], [ -95.476262028296887, 29.703401181416616 ], [ -95.475253027634949, 29.703898181555267 ], [ -95.475050027887164, 29.703997181918918 ], [ -95.474862027551183, 29.704088182107139 ], [ -95.474164027286804, 29.704428182326549 ], [ -95.474130027018333, 29.70198618163375 ], [ -95.474105027079773, 29.701121181296212 ], [ -95.474100027323075, 29.700203181603378 ], [ -95.474102026840768, 29.699303180808123 ], [ -95.474085027745474, 29.698390180484282 ], [ -95.474254026873737, 29.698394180543342 ], [ -95.475013027023607, 29.698382180512411 ], [ -95.476202027809066, 29.698364180698086 ], [ -95.476840027983471, 29.698363180569682 ], [ -95.477817028538098, 29.698350180504093 ], [ -95.47880702842194, 29.698338180386706 ], [ -95.479778028754524, 29.698335180286389 ], [ -95.480362028542388, 29.698329181081444 ], [ -95.480380029294068, 29.699289180560438 ], [ -95.480386028888859, 29.700040181333463 ], [ -95.480388028939714, 29.700250180654653 ], [ -95.480417028740845, 29.701251181148123 ], [ -95.482477029400883, 29.700244180828058 ], [ -95.484579029709337, 29.699199180775651 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 171, "Tract": "48473680100", "Area_SqMi": 24.176917595342271, "total_2009": 1295, "total_2010": 1209, "total_2011": 1426, "total_2012": 2028, "total_2013": 2174, "total_2014": 2099, "total_2015": 2108, "total_2016": 3727, "total_2017": 3776, "total_2018": 4246, "total_2019": 4677, "total_2020": 4722, "age1": 1513, "age2": 3368, "age3": 1327, "earn1": 730, "earn2": 1568, "earn3": 3910, "naics_s01": 1, "naics_s02": 55, "naics_s03": 3, "naics_s04": 349, "naics_s05": 2031, "naics_s06": 933, "naics_s07": 1298, "naics_s08": 760, "naics_s09": 3, "naics_s10": 8, "naics_s11": 2, "naics_s12": 113, "naics_s13": 0, "naics_s14": 227, "naics_s15": 15, "naics_s16": 160, "naics_s17": 2, "naics_s18": 203, "naics_s19": 45, "naics_s20": 0, "race1": 4737, "race2": 960, "race3": 64, "race4": 355, "race5": 13, "race6": 79, "ethnicity1": 3658, "ethnicity2": 2550, "edu1": 1261, "edu2": 1271, "edu3": 1310, "edu4": 853, "Shape_Length": 130457.05368399913, "Shape_Area": 674011083.35012817, "total_2021": 5381, "total_2022": 6208 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.920930144385636, 29.768466179623164 ], [ -95.920932144318186, 29.767783179614177 ], [ -95.920766144387287, 29.760968178716407 ], [ -95.920698143511132, 29.758125177982933 ], [ -95.92068614427437, 29.757487177382544 ], [ -95.920668144180425, 29.756513177238709 ], [ -95.92061514385, 29.753592177398712 ], [ -95.920599144042853, 29.752648176739754 ], [ -95.920599143244544, 29.752619177000604 ], [ -95.920582143693977, 29.752626176381312 ], [ -95.912926141245634, 29.75558717748352 ], [ -95.908139140465678, 29.757436177993167 ], [ -95.907679140469, 29.757614178060336 ], [ -95.902268139238743, 29.75962217923049 ], [ -95.901532138988273, 29.759887179300268 ], [ -95.901408138978965, 29.759936178897775 ], [ -95.898906138565934, 29.760833179420793 ], [ -95.895464137403721, 29.762067179937297 ], [ -95.893406137238856, 29.762805180129838 ], [ -95.892075136332636, 29.76328317965838 ], [ -95.889069136325247, 29.764361180530489 ], [ -95.887455135345704, 29.764939180683591 ], [ -95.885337135649948, 29.7656991805943 ], [ -95.884947135055882, 29.765840180243242 ], [ -95.884821134858015, 29.765882180368646 ], [ -95.882467134411996, 29.766790180694915 ], [ -95.877886133839411, 29.768556181102472 ], [ -95.875668133184973, 29.769411182165854 ], [ -95.875591132924328, 29.769441182145293 ], [ -95.875329132482435, 29.769541181376084 ], [ -95.874125132153338, 29.770005181987536 ], [ -95.873303131874636, 29.770323182374337 ], [ -95.87278413225502, 29.770479182350318 ], [ -95.872115131784597, 29.770719181977935 ], [ -95.871653132309845, 29.77089318259771 ], [ -95.871357131953573, 29.771006182385932 ], [ -95.870666131520963, 29.771267182679409 ], [ -95.869079131754546, 29.7718681822485 ], [ -95.866998130389931, 29.772656183113991 ], [ -95.865640130108829, 29.773171182705315 ], [ -95.863720130013931, 29.773899183076935 ], [ -95.860556129085751, 29.775098183103655 ], [ -95.86054412926751, 29.775103183758535 ], [ -95.858874129390756, 29.775735183659435 ], [ -95.858644129195085, 29.775822183827618 ], [ -95.857912129018956, 29.776100183474497 ], [ -95.857609129091301, 29.776216183489893 ], [ -95.857045128950205, 29.776478183497385 ], [ -95.855550128514864, 29.777047183936268 ], [ -95.855207128418229, 29.77718318392786 ], [ -95.854970127513013, 29.777274184345671 ], [ -95.85457112807984, 29.777431184326602 ], [ -95.853877127717524, 29.777695184552307 ], [ -95.851852127295217, 29.778464184504831 ], [ -95.85135912755338, 29.778652184757949 ], [ -95.850044126842704, 29.77915318419565 ], [ -95.849583126364649, 29.779328185067961 ], [ -95.849559126573794, 29.779337184415102 ], [ -95.849283126281733, 29.779440184648188 ], [ -95.845171125881748, 29.781004185213042 ], [ -95.841918124993953, 29.782199185402742 ], [ -95.841774124507836, 29.78226118527661 ], [ -95.841725124765844, 29.782281185695187 ], [ -95.839721123854318, 29.783107185494707 ], [ -95.839549124179371, 29.783178185621669 ], [ -95.839228124012081, 29.783306185607969 ], [ -95.838632123763517, 29.783543185511526 ], [ -95.838566124461167, 29.783569185674427 ], [ -95.838138123738759, 29.783730185702527 ], [ -95.837184124193243, 29.784087186425594 ], [ -95.836616123310634, 29.784293186489496 ], [ -95.835930123120733, 29.784548186530639 ], [ -95.835853123880568, 29.784577185751854 ], [ -95.834673123267009, 29.785019186748993 ], [ -95.833558122779195, 29.785441186208097 ], [ -95.833453123311045, 29.785489186606227 ], [ -95.833368123344641, 29.78552818617705 ], [ -95.83285312269193, 29.785741186403872 ], [ -95.832651122934351, 29.785814186585252 ], [ -95.832298122953645, 29.785940186651448 ], [ -95.831982122060595, 29.786050186987598 ], [ -95.831899122263039, 29.786083186694704 ], [ -95.831663122532262, 29.786178186693316 ], [ -95.831420122561099, 29.786275186941179 ], [ -95.831173121887815, 29.786375187042751 ], [ -95.830474122383734, 29.786654187077527 ], [ -95.829491121561617, 29.787024186990859 ], [ -95.82902412201139, 29.787205187038836 ], [ -95.829003122228258, 29.787213186920475 ], [ -95.828941121398927, 29.787236186669162 ], [ -95.828921122106806, 29.787245186773209 ], [ -95.826876120884549, 29.788034186756406 ], [ -95.826431120973368, 29.788205187545209 ], [ -95.826313121322372, 29.788251186889472 ], [ -95.826227121152741, 29.788285187056573 ], [ -95.8263131207257, 29.788488187455926 ], [ -95.825982121492956, 29.788621186897622 ], [ -95.826455121243896, 29.789937187799275 ], [ -95.826793121193532, 29.790865187616678 ], [ -95.826924121552366, 29.791222188055482 ], [ -95.827158121343317, 29.791862187545828 ], [ -95.827337121770697, 29.792355187901119 ], [ -95.827991121935426, 29.794246188283321 ], [ -95.82818012184535, 29.794784188498845 ], [ -95.828464122376431, 29.795605189063846 ], [ -95.828754122118994, 29.796445188609436 ], [ -95.82904512201516, 29.797286189235177 ], [ -95.829339122138066, 29.798135188803045 ], [ -95.829494122256548, 29.798546188850807 ], [ -95.830203122275122, 29.800423189145789 ], [ -95.830340122976537, 29.800807189230721 ], [ -95.830793122827899, 29.802078189776619 ], [ -95.831614122900405, 29.804373190324409 ], [ -95.831649123337684, 29.804468190611715 ], [ -95.832365123395746, 29.806445190727352 ], [ -95.832837123940138, 29.807768190891185 ], [ -95.833061123539181, 29.80839419132759 ], [ -95.833383124176891, 29.809298191566665 ], [ -95.835998125201499, 29.816623192587073 ], [ -95.837697125855883, 29.82138319394971 ], [ -95.839961126478514, 29.828342195032636 ], [ -95.840150126376713, 29.828802194749443 ], [ -95.841006127136794, 29.830883195021251 ], [ -95.841101126762808, 29.831142195330731 ], [ -95.842141126944298, 29.833983196284823 ], [ -95.842861127730572, 29.835950196463834 ], [ -95.84629412864831, 29.845328198089902 ], [ -95.846340128633386, 29.845457198133278 ], [ -95.846366128528658, 29.845531198392695 ], [ -95.846452128915317, 29.845776197966849 ], [ -95.851404130566578, 29.859812201352678 ], [ -95.851519130958295, 29.86011320103848 ], [ -95.852574131743481, 29.862960201305363 ], [ -95.855739132560203, 29.871501202806495 ], [ -95.856760133291573, 29.874254203300975 ], [ -95.856789133286711, 29.874350204027238 ], [ -95.856802132841977, 29.874396203529479 ], [ -95.856844133100608, 29.874536203752715 ], [ -95.856858133277171, 29.874583204125148 ], [ -95.856943133292006, 29.874583203615341 ], [ -95.857168133334866, 29.874583203864297 ], [ -95.857200133003204, 29.874583203480103 ], [ -95.857286133368788, 29.874583203623747 ], [ -95.859793133548635, 29.874545203589829 ], [ -95.860608133648981, 29.874540203252117 ], [ -95.870574136084969, 29.874485203479278 ], [ -95.873897136859114, 29.874467203529473 ], [ -95.874987137671468, 29.874461203070933 ], [ -95.878257138282265, 29.874442202705222 ], [ -95.879347138942336, 29.874437202936232 ], [ -95.881581139119433, 29.874424202778624 ], [ -95.888283141356965, 29.874388202180135 ], [ -95.890518141881444, 29.874376202840612 ], [ -95.890570141459477, 29.871651201741198 ], [ -95.890565141511203, 29.871465201770601 ], [ -95.890432140833923, 29.865673200712582 ], [ -95.890477140514506, 29.864794200323608 ], [ -95.890447140546101, 29.862737200090795 ], [ -95.890405140827397, 29.859827199398033 ], [ -95.890397140905861, 29.859173199222845 ], [ -95.890389141086999, 29.858519198914131 ], [ -95.890380140149404, 29.857572199487866 ], [ -95.890366140024454, 29.855895199165879 ], [ -95.890354140814338, 29.854581198654561 ], [ -95.890343140602724, 29.853270198194114 ], [ -95.890340140373922, 29.852949198505009 ], [ -95.890334140271108, 29.851986198411687 ], [ -95.890332140812305, 29.851666198328925 ], [ -95.89032913993158, 29.851212197639676 ], [ -95.890320140536772, 29.84985219796906 ], [ -95.890318140416923, 29.849399197662208 ], [ -95.890312140119988, 29.848576197439534 ], [ -95.890297140052724, 29.846107196490237 ], [ -95.890297140078943, 29.845981196361496 ], [ -95.890286140213661, 29.845285196837551 ], [ -95.890283139545943, 29.845081196495499 ], [ -95.890279139837759, 29.844877196442397 ], [ -95.890238139682282, 29.84242719634149 ], [ -95.890186139866799, 29.839283195321865 ], [ -95.890152139724151, 29.833855194134554 ], [ -95.89014513971955, 29.832559194133619 ], [ -95.89012613902689, 29.830998193620239 ], [ -95.890089139583353, 29.828039192983713 ], [ -95.890068139520494, 29.826236192757793 ], [ -95.889994138449197, 29.819162191259274 ], [ -95.8899641381458, 29.816203190610604 ], [ -95.889962138941357, 29.815780190472214 ], [ -95.889960138953384, 29.815662190705137 ], [ -95.889939139026595, 29.814040190141299 ], [ -95.889932138184577, 29.813500189762667 ], [ -95.88991213800945, 29.812009190252997 ], [ -95.889853138646686, 29.807538189264513 ], [ -95.889840137715069, 29.806468188877684 ], [ -95.889833138183192, 29.80604818887192 ], [ -95.889792138532712, 29.803520188178602 ], [ -95.889767138189356, 29.801971188268421 ], [ -95.889765137487956, 29.800955187567101 ], [ -95.88975813727339, 29.797473187097985 ], [ -95.88973713765408, 29.795938186285873 ], [ -95.889715138045958, 29.794291185880507 ], [ -95.889709137797695, 29.793851186431432 ], [ -95.889703137628644, 29.793411186023938 ], [ -95.889691137362107, 29.792586185979939 ], [ -95.889685137843188, 29.79199318548487 ], [ -95.889649136772022, 29.788123185335564 ], [ -95.88964813768105, 29.788004185228324 ], [ -95.889648136868885, 29.787742184873665 ], [ -95.8896491377171, 29.786539184678031 ], [ -95.889649137436791, 29.786432184453645 ], [ -95.889649137128984, 29.786325185127883 ], [ -95.891744137269541, 29.786335184513288 ], [ -95.898032139453122, 29.786366184743343 ], [ -95.900128139475768, 29.786377184544559 ], [ -95.901380140296666, 29.78638118452395 ], [ -95.905139141454427, 29.786394184454114 ], [ -95.906392141477511, 29.786399184172723 ], [ -95.909222142369856, 29.786410183729807 ], [ -95.913406142811525, 29.786427184009725 ], [ -95.917712144832052, 29.786444184026958 ], [ -95.920420144996527, 29.786456183286401 ], [ -95.920408144542364, 29.786200183394723 ], [ -95.920561144903033, 29.786201183985217 ], [ -95.920713144748333, 29.786202183980151 ], [ -95.920692144937149, 29.785491183060508 ], [ -95.920688145070685, 29.78539018380577 ], [ -95.920632144679118, 29.783806182672784 ], [ -95.920578145031968, 29.782956183033182 ], [ -95.920546144669288, 29.782437182982473 ], [ -95.920540144571191, 29.782146183012461 ], [ -95.920532145286217, 29.78177418294397 ], [ -95.92052214446467, 29.781163182379313 ], [ -95.92048814465501, 29.778886182124975 ], [ -95.920478144451167, 29.778214181985987 ], [ -95.92047014429869, 29.777646182242108 ], [ -95.920467144813003, 29.777290182163963 ], [ -95.920466144216505, 29.777126182051351 ], [ -95.92046314420881, 29.776751181627802 ], [ -95.920452144612355, 29.775455181230903 ], [ -95.920451144418294, 29.775311181343408 ], [ -95.920447144020898, 29.774832181420617 ], [ -95.920420143935289, 29.77157118026863 ], [ -95.920414144192648, 29.771349180498802 ], [ -95.920402144407277, 29.770907180940551 ], [ -95.920434144720375, 29.770427179997121 ], [ -95.920535144318976, 29.769981180144747 ], [ -95.920566144660029, 29.769875180389146 ], [ -95.92074514487129, 29.769256179926927 ], [ -95.920869144798743, 29.768789179850831 ], [ -95.920930144385636, 29.768466179623164 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 172, "Tract": "48201411100", "Area_SqMi": 0.5205414688324238, "total_2009": 1418, "total_2010": 1427, "total_2011": 1089, "total_2012": 1102, "total_2013": 1115, "total_2014": 1132, "total_2015": 1130, "total_2016": 580, "total_2017": 777, "total_2018": 859, "total_2019": 1206, "total_2020": 1204, "age1": 272, "age2": 787, "age3": 318, "earn1": 214, "earn2": 342, "earn3": 821, "naics_s01": 7, "naics_s02": 171, "naics_s03": 0, "naics_s04": 14, "naics_s05": 44, "naics_s06": 3, "naics_s07": 85, "naics_s08": 0, "naics_s09": 0, "naics_s10": 279, "naics_s11": 107, "naics_s12": 101, "naics_s13": 3, "naics_s14": 67, "naics_s15": 77, "naics_s16": 82, "naics_s17": 2, "naics_s18": 142, "naics_s19": 193, "naics_s20": 0, "race1": 1121, "race2": 158, "race3": 13, "race4": 66, "race5": 0, "race6": 19, "ethnicity1": 909, "ethnicity2": 468, "edu1": 218, "edu2": 266, "edu3": 287, "edu4": 334, "Shape_Length": 17311.067696021109, "Shape_Area": 14511805.235420126, "total_2021": 1253, "total_2022": 1377 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418850015440199, 29.749289192868524 ], [ -95.418826015200324, 29.748404193222061 ], [ -95.418832015412448, 29.747429192348829 ], [ -95.418836015267843, 29.746716192988931 ], [ -95.418832015358603, 29.746642192662122 ], [ -95.418812015578212, 29.745722192178324 ], [ -95.418804015165819, 29.744714192451525 ], [ -95.418806014872459, 29.743731191702839 ], [ -95.418791015091543, 29.743285192198254 ], [ -95.418785014585922, 29.742324191653562 ], [ -95.417582015078082, 29.742385191413419 ], [ -95.416397014649689, 29.742399191885855 ], [ -95.415524014124003, 29.742433192294463 ], [ -95.415160013651402, 29.742458191710032 ], [ -95.414722013970945, 29.74248919206854 ], [ -95.41393001364024, 29.7425281922552 ], [ -95.41360201404342, 29.742541191600001 ], [ -95.413122013744783, 29.742540192309178 ], [ -95.412321013060577, 29.742560191973322 ], [ -95.411937013690149, 29.742580192478357 ], [ -95.411538012869329, 29.7425831919419 ], [ -95.411342012687257, 29.742586192236182 ], [ -95.410775012838684, 29.74258319169201 ], [ -95.41073601322735, 29.742586191680481 ], [ -95.410744013132884, 29.743145192062201 ], [ -95.410742012843585, 29.743415192086438 ], [ -95.410738012540918, 29.743926192297305 ], [ -95.410664012873823, 29.744232192239362 ], [ -95.410644013267358, 29.744399192073892 ], [ -95.410650013573701, 29.744674192263769 ], [ -95.410666013423437, 29.746899193233062 ], [ -95.410684013491846, 29.748133192832643 ], [ -95.410674013165121, 29.749080193183559 ], [ -95.410705013202517, 29.750706193294025 ], [ -95.410705012855303, 29.751103193604941 ], [ -95.410709013100984, 29.752020193767901 ], [ -95.410714013949487, 29.753010194130042 ], [ -95.41071801386974, 29.753321194042318 ], [ -95.410728013895067, 29.753993194160063 ], [ -95.410731013324508, 29.754230194336976 ], [ -95.410734013795704, 29.754561194645088 ], [ -95.410616013546218, 29.754803194684676 ], [ -95.410337013182954, 29.755051194278945 ], [ -95.409308012835183, 29.755499194561139 ], [ -95.408984013351656, 29.755658194779205 ], [ -95.408832013367046, 29.75574919439148 ], [ -95.40867801333215, 29.755875194967199 ], [ -95.408581012989742, 29.755994194862357 ], [ -95.408520012578322, 29.756126194779515 ], [ -95.408409013458694, 29.756413194893859 ], [ -95.408427013072142, 29.757142194747498 ], [ -95.408457013446593, 29.758766195323574 ], [ -95.408481013523172, 29.759512195481616 ], [ -95.408499013384699, 29.759731195964104 ], [ -95.408605013129602, 29.75969519570214 ], [ -95.408694013340565, 29.759658195439787 ], [ -95.409789013664607, 29.759224195892184 ], [ -95.41019401359695, 29.759113195215637 ], [ -95.410629013770318, 29.759013195189091 ], [ -95.411028014300612, 29.758949195154329 ], [ -95.411601013424047, 29.758882195637877 ], [ -95.412972014785566, 29.758794195113666 ], [ -95.413600014857522, 29.758713195160979 ], [ -95.413748014222719, 29.758672195015446 ], [ -95.414253014753314, 29.758394195342785 ], [ -95.414808015100533, 29.757908194802539 ], [ -95.415298014869222, 29.757392194532219 ], [ -95.415911014565381, 29.756673194975026 ], [ -95.41661501512543, 29.755728194751335 ], [ -95.416680015252894, 29.755614194455809 ], [ -95.416732015365412, 29.755534194359626 ], [ -95.416821014776119, 29.755386194552603 ], [ -95.417309015608382, 29.754570194453525 ], [ -95.417888015766295, 29.75332419420009 ], [ -95.41830201564801, 29.752166193826159 ], [ -95.418554014996971, 29.751180193188461 ], [ -95.418639015134559, 29.750910193138672 ], [ -95.418701015320934, 29.750413193597925 ], [ -95.418728015778072, 29.750191193619628 ], [ -95.418850015440199, 29.749289192868524 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 173, "Tract": "48201411200", "Area_SqMi": 1.3486936309715467, "total_2009": 464, "total_2010": 518, "total_2011": 528, "total_2012": 578, "total_2013": 561, "total_2014": 542, "total_2015": 507, "total_2016": 2818, "total_2017": 3093, "total_2018": 660, "total_2019": 610, "total_2020": 569, "age1": 152, "age2": 351, "age3": 308, "earn1": 176, "earn2": 272, "earn3": 363, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 1, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 54, "naics_s11": 2, "naics_s12": 19, "naics_s13": 5, "naics_s14": 3, "naics_s15": 9, "naics_s16": 7, "naics_s17": 495, "naics_s18": 0, "naics_s19": 205, "naics_s20": 0, "race1": 677, "race2": 73, "race3": 11, "race4": 34, "race5": 2, "race6": 14, "ethnicity1": 442, "ethnicity2": 369, "edu1": 227, "edu2": 126, "edu3": 157, "edu4": 149, "Shape_Length": 40056.807490682542, "Shape_Area": 37599270.119267702, "total_2021": 729, "total_2022": 811 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.448403023249043, 29.755998193784126 ], [ -95.448413023332634, 29.754787193089609 ], [ -95.448333023351239, 29.750478192603445 ], [ -95.448263023217507, 29.746662192084937 ], [ -95.447442022323614, 29.74667719186715 ], [ -95.446869022118122, 29.746683191317114 ], [ -95.446607022581148, 29.746686191828218 ], [ -95.444271021805605, 29.746713192077927 ], [ -95.44170402138468, 29.746765191718183 ], [ -95.438417020692214, 29.747045192350566 ], [ -95.436124019262309, 29.747238191863961 ], [ -95.434514018988722, 29.747394192525533 ], [ -95.433125019101013, 29.747485192129126 ], [ -95.431249018009453, 29.747655192229807 ], [ -95.430157018177866, 29.747763192381427 ], [ -95.426499017227059, 29.747794192806552 ], [ -95.422881016296415, 29.747795193056479 ], [ -95.422257015865711, 29.747795192674054 ], [ -95.420839015754083, 29.748047192504878 ], [ -95.420253015951559, 29.748150192873162 ], [ -95.419903015916219, 29.748212193314888 ], [ -95.418826015200324, 29.748404193222061 ], [ -95.418850015440199, 29.749289192868524 ], [ -95.418728015778072, 29.750191193619628 ], [ -95.418701015320934, 29.750413193597925 ], [ -95.418639015134559, 29.750910193138672 ], [ -95.418554014996971, 29.751180193188461 ], [ -95.41830201564801, 29.752166193826159 ], [ -95.417888015766295, 29.75332419420009 ], [ -95.417309015608382, 29.754570194453525 ], [ -95.416821014776119, 29.755386194552603 ], [ -95.416732015365412, 29.755534194359626 ], [ -95.416680015252894, 29.755614194455809 ], [ -95.41661501512543, 29.755728194751335 ], [ -95.415911014565381, 29.756673194975026 ], [ -95.415298014869222, 29.757392194532219 ], [ -95.414808015100533, 29.757908194802539 ], [ -95.414253014753314, 29.758394195342785 ], [ -95.413748014222719, 29.758672195015446 ], [ -95.413600014857522, 29.758713195160979 ], [ -95.412972014785566, 29.758794195113666 ], [ -95.411601013424047, 29.758882195637877 ], [ -95.411028014300612, 29.758949195154329 ], [ -95.410629013770318, 29.759013195189091 ], [ -95.41019401359695, 29.759113195215637 ], [ -95.409789013664607, 29.759224195892184 ], [ -95.408694013340565, 29.759658195439787 ], [ -95.408605013129602, 29.75969519570214 ], [ -95.408499013384699, 29.759731195964104 ], [ -95.408539012863699, 29.760202196009619 ], [ -95.408599013115307, 29.760397195779163 ], [ -95.408622013761089, 29.760473195859149 ], [ -95.408632013000044, 29.760527195431958 ], [ -95.408842013425613, 29.760619196243351 ], [ -95.409294013623537, 29.760817196112821 ], [ -95.410883013511963, 29.761565195762714 ], [ -95.411744014379138, 29.762058195624235 ], [ -95.412107014350042, 29.762123196113137 ], [ -95.412625014648398, 29.762331196347052 ], [ -95.41298401428881, 29.762384195733304 ], [ -95.413197013997348, 29.762222195654559 ], [ -95.413244014302663, 29.762087196039747 ], [ -95.413245014604939, 29.761695195805597 ], [ -95.413248014659828, 29.7613011955141 ], [ -95.413181014745462, 29.760553195312102 ], [ -95.413292014369389, 29.760283195165094 ], [ -95.413462014151577, 29.760081195186629 ], [ -95.413691014788412, 29.759929195316353 ], [ -95.414173014940374, 29.759844195496431 ], [ -95.414620014715055, 29.759906195537326 ], [ -95.415466014928583, 29.760167195733349 ], [ -95.415589014697375, 29.760205195863509 ], [ -95.416034014868259, 29.760164195180518 ], [ -95.416158014873702, 29.760071195671426 ], [ -95.416429015560908, 29.759711195443323 ], [ -95.416998014993894, 29.758675195111568 ], [ -95.417309015626458, 29.758388195370145 ], [ -95.417826015200575, 29.758090195391599 ], [ -95.417990015757951, 29.757928194968983 ], [ -95.41811901540548, 29.757704194964578 ], [ -95.418296015334803, 29.757555195103709 ], [ -95.418357015678353, 29.757577194992429 ], [ -95.418483016006121, 29.757623194460045 ], [ -95.418815015492541, 29.757892194477925 ], [ -95.419027016203302, 29.758197195336503 ], [ -95.419294015755739, 29.758720195362201 ], [ -95.419460016054842, 29.758924194752495 ], [ -95.419713015927286, 29.759106194685994 ], [ -95.420085016217726, 29.7592211947637 ], [ -95.420291016704937, 29.759285194817387 ], [ -95.420646015778871, 29.759040195494418 ], [ -95.420747016225576, 29.758941194947848 ], [ -95.421001016340128, 29.758692195174063 ], [ -95.421292016617869, 29.758317194961062 ], [ -95.421739016624642, 29.757741194854869 ], [ -95.422098016553321, 29.757445194858061 ], [ -95.422319016315868, 29.757350194405099 ], [ -95.422483016598193, 29.757347194911318 ], [ -95.422735017175299, 29.757527194713784 ], [ -95.422992017042205, 29.75805519515778 ], [ -95.423217016935027, 29.758260195190406 ], [ -95.423639016965993, 29.758401195028274 ], [ -95.424009017449507, 29.758390195222155 ], [ -95.424234017666649, 29.758302194669803 ], [ -95.424415017402055, 29.758071194606721 ], [ -95.424512016909333, 29.757322194309971 ], [ -95.424673017707121, 29.756839194288489 ], [ -95.424867017526736, 29.756657194471707 ], [ -95.425175017512842, 29.75658719439847 ], [ -95.425334017271794, 29.756620193996564 ], [ -95.425474016938793, 29.756750194850408 ], [ -95.42561901699068, 29.757250194143975 ], [ -95.425695017457983, 29.757513195018305 ], [ -95.425914017160096, 29.757936194586691 ], [ -95.426184018161919, 29.758100194379249 ], [ -95.426681017883766, 29.758272194365858 ], [ -95.426826017636955, 29.758398194634726 ], [ -95.427185017864232, 29.759575195058677 ], [ -95.427542018405418, 29.76014019528915 ], [ -95.427861018640925, 29.760465195041544 ], [ -95.428175018123753, 29.76054619552572 ], [ -95.428323018439258, 29.760547195187051 ], [ -95.429039018289117, 29.760550194721329 ], [ -95.429277018877642, 29.760500195368106 ], [ -95.429532018182087, 29.760321194665547 ], [ -95.42955601859309, 29.760185195181009 ], [ -95.429412018768247, 29.760060195082371 ], [ -95.428905018744359, 29.759913195367027 ], [ -95.428693018354224, 29.759801194700405 ], [ -95.428503017991645, 29.759526195020761 ], [ -95.428467018636226, 29.759349194731904 ], [ -95.428504018660803, 29.758925194815671 ], [ -95.42865301870745, 29.758710194319196 ], [ -95.428962018068887, 29.758423194508264 ], [ -95.429341018518556, 29.75828919419677 ], [ -95.429958018573629, 29.758279194936581 ], [ -95.430277018975715, 29.758349194214908 ], [ -95.43068201867564, 29.758523194471231 ], [ -95.431089018715682, 29.758770194586695 ], [ -95.431930019641925, 29.759670195208258 ], [ -95.432742019031863, 29.759905194471568 ], [ -95.433047019093124, 29.759803194877964 ], [ -95.433202019826425, 29.75968519482856 ], [ -95.433268019214438, 29.759446194583578 ], [ -95.433205019099901, 29.758840194976838 ], [ -95.433247019677339, 29.758159194283625 ], [ -95.433431019153289, 29.757801194306492 ], [ -95.433559019808214, 29.757712194108144 ], [ -95.433758019282763, 29.757670194387362 ], [ -95.43381601946858, 29.757677194586375 ], [ -95.434816019902115, 29.757806194206882 ], [ -95.435528019720877, 29.75798319449391 ], [ -95.436296020427747, 29.758464194869418 ], [ -95.437310020434467, 29.758944194363757 ], [ -95.437924020644004, 29.759365194463687 ], [ -95.438387021119027, 29.759596194193058 ], [ -95.438589021368628, 29.759634194922498 ], [ -95.438786020715099, 29.759589194622258 ], [ -95.438911020706257, 29.759500194522339 ], [ -95.439040021211724, 29.759408194604177 ], [ -95.439191020911551, 29.759205194447151 ], [ -95.439237020915357, 29.75895819432235 ], [ -95.439210021117162, 29.758781194623428 ], [ -95.438916020652783, 29.758435194456183 ], [ -95.438213020892675, 29.757785194531465 ], [ -95.438028020708373, 29.757349194112273 ], [ -95.438028020150469, 29.757137193851094 ], [ -95.4381810210091, 29.757025193647639 ], [ -95.438342020839173, 29.756995194209122 ], [ -95.439357020831622, 29.757137194009015 ], [ -95.439677020972823, 29.757087193623988 ], [ -95.439847020951674, 29.756934194431921 ], [ -95.440100020666563, 29.756330193677815 ], [ -95.440242020773397, 29.756112193992113 ], [ -95.440481021340446, 29.755865193611434 ], [ -95.440754020978588, 29.755705193499733 ], [ -95.440970021457474, 29.75550819384938 ], [ -95.441153021375555, 29.755229193414486 ], [ -95.441358021414388, 29.754427193450557 ], [ -95.441512021790714, 29.754058193447847 ], [ -95.44206302106717, 29.753748192827672 ], [ -95.442448021596533, 29.753617193176773 ], [ -95.442652021263143, 29.753600193041425 ], [ -95.443392021917447, 29.753983193559389 ], [ -95.443916021529802, 29.754075193557508 ], [ -95.445107022408877, 29.754097193458247 ], [ -95.445816022195373, 29.753915193312849 ], [ -95.446057022403892, 29.753947193159089 ], [ -95.446174022232242, 29.75404719320921 ], [ -95.446283022374885, 29.754241193257226 ], [ -95.446381022899942, 29.754880193047292 ], [ -95.446503023047839, 29.755106193539671 ], [ -95.447830022799906, 29.755893193626171 ], [ -95.448408023332149, 29.756106193770037 ], [ -95.448403023249043, 29.755998193784126 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 174, "Tract": "48201411400", "Area_SqMi": 0.66810895453407548, "total_2009": 2605, "total_2010": 2669, "total_2011": 2835, "total_2012": 3208, "total_2013": 3244, "total_2014": 3090, "total_2015": 3024, "total_2016": 2995, "total_2017": 3004, "total_2018": 3236, "total_2019": 3224, "total_2020": 2701, "age1": 965, "age2": 1398, "age3": 696, "earn1": 912, "earn2": 945, "earn3": 1202, "naics_s01": 9, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 7, "naics_s06": 64, "naics_s07": 1045, "naics_s08": 106, "naics_s09": 1, "naics_s10": 19, "naics_s11": 13, "naics_s12": 43, "naics_s13": 3, "naics_s14": 23, "naics_s15": 511, "naics_s16": 15, "naics_s17": 2, "naics_s18": 875, "naics_s19": 297, "naics_s20": 0, "race1": 2396, "race2": 420, "race3": 18, "race4": 153, "race5": 7, "race6": 65, "ethnicity1": 2024, "ethnicity2": 1035, "edu1": 479, "edu2": 483, "edu3": 552, "edu4": 580, "Shape_Length": 22769.376881273791, "Shape_Area": 18625734.172506232, "total_2021": 2740, "total_2022": 3059 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.448263023217507, 29.746662192084937 ], [ -95.448218022846262, 29.744081190850963 ], [ -95.448166022627262, 29.741635190607202 ], [ -95.447355022587658, 29.741679190800092 ], [ -95.445493022333892, 29.741705190331992 ], [ -95.441670020900204, 29.741735190879783 ], [ -95.439866020008651, 29.741684191320221 ], [ -95.439097020008361, 29.741658190825806 ], [ -95.438191020477944, 29.74162519120879 ], [ -95.437075019725754, 29.741585190762752 ], [ -95.436657019610422, 29.741565191421131 ], [ -95.436075019410538, 29.741546190798893 ], [ -95.435282018906676, 29.741521190778585 ], [ -95.434399019029655, 29.741551190671622 ], [ -95.433809019031216, 29.741670190996221 ], [ -95.4330990190074, 29.741820191023034 ], [ -95.432629018718117, 29.741928191317371 ], [ -95.431923018532075, 29.742034191525889 ], [ -95.431444018407987, 29.742063191251102 ], [ -95.430036017952844, 29.74207319088724 ], [ -95.426513016656884, 29.742126191483656 ], [ -95.424943017117982, 29.742139191200565 ], [ -95.424829016610616, 29.742137191607227 ], [ -95.424710016431419, 29.742138191617453 ], [ -95.423823016239638, 29.742151191546711 ], [ -95.422826016332039, 29.742156191871906 ], [ -95.422323015619867, 29.742172191534646 ], [ -95.421875016034662, 29.742173191995498 ], [ -95.421151015451557, 29.742186191179243 ], [ -95.419918015335213, 29.742263191743593 ], [ -95.418785014585922, 29.742324191653562 ], [ -95.418791015091543, 29.743285192198254 ], [ -95.418806014872459, 29.743731191702839 ], [ -95.418804015165819, 29.744714192451525 ], [ -95.418812015578212, 29.745722192178324 ], [ -95.418832015358603, 29.746642192662122 ], [ -95.418836015267843, 29.746716192988931 ], [ -95.418832015412448, 29.747429192348829 ], [ -95.418826015200324, 29.748404193222061 ], [ -95.419903015916219, 29.748212193314888 ], [ -95.420253015951559, 29.748150192873162 ], [ -95.420839015754083, 29.748047192504878 ], [ -95.422257015865711, 29.747795192674054 ], [ -95.422881016296415, 29.747795193056479 ], [ -95.426499017227059, 29.747794192806552 ], [ -95.430157018177866, 29.747763192381427 ], [ -95.431249018009453, 29.747655192229807 ], [ -95.433125019101013, 29.747485192129126 ], [ -95.434514018988722, 29.747394192525533 ], [ -95.436124019262309, 29.747238191863961 ], [ -95.438417020692214, 29.747045192350566 ], [ -95.44170402138468, 29.746765191718183 ], [ -95.444271021805605, 29.746713192077927 ], [ -95.446607022581148, 29.746686191828218 ], [ -95.446869022118122, 29.746683191317114 ], [ -95.447442022323614, 29.74667719186715 ], [ -95.448263023217507, 29.746662192084937 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 175, "Tract": "48201421000", "Area_SqMi": 0.72445509847453082, "total_2009": 6693, "total_2010": 6708, "total_2011": 6672, "total_2012": 6037, "total_2013": 6291, "total_2014": 9138, "total_2015": 8414, "total_2016": 6003, "total_2017": 5491, "total_2018": 5459, "total_2019": 5128, "total_2020": 4617, "age1": 1421, "age2": 3841, "age3": 1236, "earn1": 811, "earn2": 1297, "earn3": 4390, "naics_s01": 0, "naics_s02": 218, "naics_s03": 9, "naics_s04": 125, "naics_s05": 51, "naics_s06": 103, "naics_s07": 573, "naics_s08": 4, "naics_s09": 318, "naics_s10": 217, "naics_s11": 106, "naics_s12": 681, "naics_s13": 107, "naics_s14": 472, "naics_s15": 84, "naics_s16": 2297, "naics_s17": 5, "naics_s18": 740, "naics_s19": 388, "naics_s20": 0, "race1": 4401, "race2": 1364, "race3": 50, "race4": 562, "race5": 8, "race6": 113, "ethnicity1": 4620, "ethnicity2": 1878, "edu1": 890, "edu2": 1139, "edu3": 1517, "edu4": 1531, "Shape_Length": 25244.986997587268, "Shape_Area": 20196568.228176963, "total_2021": 4577, "total_2022": 6498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.47629302831055, 29.707437182897785 ], [ -95.476288028327147, 29.70644718238043 ], [ -95.476283027612325, 29.705608182194712 ], [ -95.475673027681239, 29.705611182333385 ], [ -95.475190028303658, 29.705611182095936 ], [ -95.475033027588069, 29.705615182747668 ], [ -95.474164027621967, 29.705634182352608 ], [ -95.474004027066258, 29.705619182264709 ], [ -95.473699027868378, 29.705623182383164 ], [ -95.472517027627049, 29.705654182338446 ], [ -95.471832027342728, 29.705653182001633 ], [ -95.470334026661945, 29.705683182365011 ], [ -95.467910025743436, 29.705740182191825 ], [ -95.466799025498872, 29.705740182790692 ], [ -95.464377025062859, 29.705743182703866 ], [ -95.462226024372512, 29.705825182899012 ], [ -95.459807024109296, 29.705785183162497 ], [ -95.459460024189838, 29.705779182831161 ], [ -95.459478023651798, 29.705892183208366 ], [ -95.459503023538971, 29.705988182928742 ], [ -95.45989302355008, 29.707692182957782 ], [ -95.460043024169707, 29.708237183044393 ], [ -95.460119023743019, 29.70874318365076 ], [ -95.460167024647902, 29.709141183995587 ], [ -95.460234024416025, 29.709865183833774 ], [ -95.460222023855266, 29.710631184012463 ], [ -95.460233024393517, 29.711367183751371 ], [ -95.460236024183601, 29.711583184040254 ], [ -95.460240024472341, 29.711774183689133 ], [ -95.460253023918909, 29.712634184355569 ], [ -95.460288024414552, 29.716520184910642 ], [ -95.460289024958271, 29.716665185112344 ], [ -95.460289024471848, 29.716738184685617 ], [ -95.460290024219972, 29.716816185227948 ], [ -95.460309024710995, 29.719845185865399 ], [ -95.460315024465416, 29.720243186028959 ], [ -95.460316024705662, 29.720311185994763 ], [ -95.460333024793343, 29.721443186229695 ], [ -95.46037902517385, 29.72453518686741 ], [ -95.460396025413104, 29.725784186840411 ], [ -95.460396024829635, 29.725798186983095 ], [ -95.460396025126158, 29.725816186807247 ], [ -95.460398024781028, 29.725939187390139 ], [ -95.460399025337182, 29.726027187352141 ], [ -95.460402024915922, 29.726217186730612 ], [ -95.46043302461625, 29.726215186891515 ], [ -95.460702025422307, 29.72619918684093 ], [ -95.460733025111352, 29.72619718693241 ], [ -95.460769025059193, 29.726195187345066 ], [ -95.460857024888412, 29.726189187253894 ], [ -95.461055025149975, 29.726178186979794 ], [ -95.463703026125359, 29.725955186570655 ], [ -95.464001025797685, 29.725874187236897 ], [ -95.464043025379411, 29.725865187114355 ], [ -95.464038026001788, 29.725531186431311 ], [ -95.464043025972813, 29.725482187022472 ], [ -95.464024026075847, 29.724774186981112 ], [ -95.464039026057861, 29.724516186769165 ], [ -95.463985026172011, 29.722156185693859 ], [ -95.463972025629531, 29.721137185922007 ], [ -95.463969025767483, 29.720700186086439 ], [ -95.463963025453936, 29.720260185999734 ], [ -95.464882025722403, 29.720261185286873 ], [ -95.465174025781295, 29.720256185856982 ], [ -95.465486026238779, 29.720252185653518 ], [ -95.465609025571354, 29.720250185995045 ], [ -95.465931025899494, 29.720246185952117 ], [ -95.466654026455217, 29.720237185879331 ], [ -95.467621026533536, 29.72021718578727 ], [ -95.468104026699621, 29.720217185335528 ], [ -95.468097026348204, 29.719721185041788 ], [ -95.468096026809008, 29.71906918567068 ], [ -95.4680950261465, 29.718837185455584 ], [ -95.468086026766329, 29.718273185006581 ], [ -95.468074026265441, 29.717549184859084 ], [ -95.468059026040365, 29.716596185172513 ], [ -95.468031026675931, 29.716071184392142 ], [ -95.468030026659704, 29.714790184044887 ], [ -95.467997026479807, 29.71298418392438 ], [ -95.468510026801724, 29.712972184333619 ], [ -95.4693210268874, 29.712955184095925 ], [ -95.46960402664169, 29.712955183623322 ], [ -95.46991502727019, 29.712955184007519 ], [ -95.470429026798186, 29.712950183641038 ], [ -95.472177027789513, 29.712938184197593 ], [ -95.472580027799324, 29.712913183521255 ], [ -95.472601027894385, 29.71290918361391 ], [ -95.472582027133711, 29.712490183924785 ], [ -95.472586027654856, 29.712071183390673 ], [ -95.472583027030851, 29.711597183838375 ], [ -95.472579026952801, 29.711115183853895 ], [ -95.472564027073844, 29.710581183729644 ], [ -95.472550027842601, 29.709683183697511 ], [ -95.472560027475907, 29.709288183581375 ], [ -95.472553027077254, 29.708768182836735 ], [ -95.472532027046782, 29.707884183196629 ], [ -95.472519026931991, 29.707481182557718 ], [ -95.474196027679341, 29.707451183066024 ], [ -95.474669028188288, 29.707443182292167 ], [ -95.475227027756048, 29.707432182450344 ], [ -95.475483027762962, 29.707432182386778 ], [ -95.47629302831055, 29.707437182897785 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 176, "Tract": "48201432200", "Area_SqMi": 0.64641840951483931, "total_2009": 2553, "total_2010": 2224, "total_2011": 2037, "total_2012": 1911, "total_2013": 1972, "total_2014": 2036, "total_2015": 2160, "total_2016": 2083, "total_2017": 1757, "total_2018": 1560, "total_2019": 1506, "total_2020": 1399, "age1": 304, "age2": 1008, "age3": 456, "earn1": 262, "earn2": 374, "earn3": 1132, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 10, "naics_s06": 24, "naics_s07": 179, "naics_s08": 325, "naics_s09": 481, "naics_s10": 27, "naics_s11": 76, "naics_s12": 295, "naics_s13": 0, "naics_s14": 17, "naics_s15": 29, "naics_s16": 39, "naics_s17": 44, "naics_s18": 160, "naics_s19": 47, "naics_s20": 0, "race1": 1187, "race2": 404, "race3": 9, "race4": 140, "race5": 2, "race6": 26, "ethnicity1": 1310, "ethnicity2": 458, "edu1": 235, "edu2": 406, "edu3": 477, "edu4": 346, "Shape_Length": 18068.777570417915, "Shape_Area": 18021038.901108749, "total_2021": 1418, "total_2022": 1768 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.539297045300941, 29.734750185644064 ], [ -95.539296045688786, 29.734574186053933 ], [ -95.539295045911189, 29.734455185938863 ], [ -95.539292045136364, 29.73396118564024 ], [ -95.539291045014522, 29.733715185870238 ], [ -95.539287045145031, 29.733158185621789 ], [ -95.539267045068186, 29.732356185265456 ], [ -95.539242045146977, 29.731565185033769 ], [ -95.539229045702811, 29.731157185355706 ], [ -95.539217044954185, 29.730771185156911 ], [ -95.539212045580001, 29.730345185026184 ], [ -95.53920304524631, 29.729601185354184 ], [ -95.539203045042271, 29.729261184576689 ], [ -95.539198045741784, 29.729077185137331 ], [ -95.539185045247692, 29.728589184621793 ], [ -95.539159045335239, 29.727733185123192 ], [ -95.538654044840499, 29.727731184427032 ], [ -95.538148044497476, 29.727766184791662 ], [ -95.537620045119638, 29.727850184663755 ], [ -95.536948044678098, 29.728048185121196 ], [ -95.535309044087896, 29.728600185256909 ], [ -95.535150044670445, 29.728657184793761 ], [ -95.534537044061437, 29.72885218534125 ], [ -95.533971043943737, 29.728951185362416 ], [ -95.532527043663762, 29.728974185274328 ], [ -95.53192204344974, 29.728994184820365 ], [ -95.53140304279195, 29.729011184932599 ], [ -95.530495042706505, 29.728995185087193 ], [ -95.52959304324807, 29.728989185015553 ], [ -95.52869004287912, 29.728995185084088 ], [ -95.528594042143823, 29.728988185035107 ], [ -95.527788042067485, 29.72899918487672 ], [ -95.526925042166695, 29.729011185216368 ], [ -95.526060041762591, 29.729023184989607 ], [ -95.525093041954591, 29.729041185088366 ], [ -95.524699041470683, 29.729035185564815 ], [ -95.524139041854966, 29.729035185822713 ], [ -95.523490040801136, 29.729041185452576 ], [ -95.522529041261819, 29.729061185831615 ], [ -95.521980040476734, 29.729051185153008 ], [ -95.52180004093195, 29.729052185549872 ], [ -95.521023041102325, 29.729060185169768 ], [ -95.52050104057902, 29.729070185288055 ], [ -95.52048104045474, 29.729522185733238 ], [ -95.520485040426834, 29.730025185788055 ], [ -95.520492040214236, 29.730854185704096 ], [ -95.52049404072811, 29.731139186183942 ], [ -95.520524041053832, 29.731774186191707 ], [ -95.52053204011527, 29.732259186490975 ], [ -95.520544040660056, 29.732978186724395 ], [ -95.520567040749512, 29.733737186761154 ], [ -95.520614041018618, 29.734169186825277 ], [ -95.520709041260474, 29.734632187107454 ], [ -95.520965040411014, 29.735435186526935 ], [ -95.521086040566871, 29.736010187358094 ], [ -95.521113040680092, 29.736226187306631 ], [ -95.521115041315554, 29.736435187088489 ], [ -95.521113041193487, 29.736496186805205 ], [ -95.521127040574783, 29.73662418681872 ], [ -95.521174041412237, 29.737336186899732 ], [ -95.52212204148104, 29.737327187577058 ], [ -95.522607041443663, 29.737322186987612 ], [ -95.523008041030309, 29.73731218740172 ], [ -95.524893042161807, 29.737286186674261 ], [ -95.525514042382596, 29.73727718708388 ], [ -95.525843042499488, 29.737272187060018 ], [ -95.528149042280688, 29.737239187198554 ], [ -95.528336043271153, 29.737236186696723 ], [ -95.528811043136685, 29.737229186813746 ], [ -95.52900004292546, 29.737232187346105 ], [ -95.53144404323956, 29.737221186783302 ], [ -95.532443043413721, 29.73720018696811 ], [ -95.532848044231457, 29.737183186694089 ], [ -95.533686043751104, 29.737192187186004 ], [ -95.534800044386216, 29.737182186879824 ], [ -95.535670045213323, 29.737174186520242 ], [ -95.535873045075661, 29.737179186695439 ], [ -95.537334045063247, 29.737151186733993 ], [ -95.537699044804825, 29.737144187042382 ], [ -95.538878045925216, 29.737122186731085 ], [ -95.5389050457309, 29.736607186697562 ], [ -95.538932045474226, 29.736397186262032 ], [ -95.539003045386224, 29.73615618611263 ], [ -95.539202045493852, 29.735559186047688 ], [ -95.539246045038894, 29.735328186236465 ], [ -95.53927304503587, 29.735100186284836 ], [ -95.539297045300941, 29.734750185644064 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 177, "Tract": "48201521800", "Area_SqMi": 2.77144049626679, "total_2009": 9583, "total_2010": 8681, "total_2011": 9548, "total_2012": 10796, "total_2013": 11363, "total_2014": 13046, "total_2015": 13862, "total_2016": 12773, "total_2017": 13054, "total_2018": 12889, "total_2019": 13173, "total_2020": 12429, "age1": 1649, "age2": 7158, "age3": 2621, "earn1": 844, "earn2": 1761, "earn3": 8823, "naics_s01": 0, "naics_s02": 557, "naics_s03": 0, "naics_s04": 1734, "naics_s05": 2220, "naics_s06": 2089, "naics_s07": 104, "naics_s08": 568, "naics_s09": 141, "naics_s10": 1050, "naics_s11": 52, "naics_s12": 896, "naics_s13": 45, "naics_s14": 594, "naics_s15": 341, "naics_s16": 748, "naics_s17": 0, "naics_s18": 200, "naics_s19": 89, "naics_s20": 0, "race1": 8171, "race2": 1979, "race3": 81, "race4": 997, "race5": 16, "race6": 184, "ethnicity1": 7876, "ethnicity2": 3552, "edu1": 1862, "edu2": 2354, "edu3": 2917, "edu4": 2646, "Shape_Length": 38027.988075235531, "Shape_Area": 77263017.668102831, "total_2021": 11246, "total_2022": 11428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563770057561328, 29.866393212229941 ], [ -95.563767058106777, 29.865739212223573 ], [ -95.56371005699468, 29.861548211135794 ], [ -95.563709057169405, 29.861053210931686 ], [ -95.563687057056669, 29.860478210948362 ], [ -95.563707057542359, 29.857242209957572 ], [ -95.563674057146471, 29.850438209343558 ], [ -95.563673057319079, 29.850297208849568 ], [ -95.563672057362197, 29.850126208715324 ], [ -95.56365505627403, 29.846681208558074 ], [ -95.563671056965077, 29.840021206429242 ], [ -95.563663056156003, 29.838459206592471 ], [ -95.563704055960841, 29.836590206184582 ], [ -95.563709055769422, 29.833582205142257 ], [ -95.563702056262983, 29.832158205131265 ], [ -95.563700056362634, 29.831939205103282 ], [ -95.563261055542625, 29.831948205540542 ], [ -95.560328055499227, 29.832005205686844 ], [ -95.559653055196208, 29.832018205503925 ], [ -95.558564054291296, 29.832040205739581 ], [ -95.55780905488416, 29.832048205205581 ], [ -95.555690054311683, 29.832071205767797 ], [ -95.553270053672492, 29.832117205408366 ], [ -95.552300053394262, 29.83213820594294 ], [ -95.550328052261065, 29.83216520541372 ], [ -95.546781051443446, 29.83223420566004 ], [ -95.546358052140704, 29.832237205856273 ], [ -95.546164051336248, 29.832234205816746 ], [ -95.545328051887708, 29.832244206211886 ], [ -95.545303050985282, 29.832582205637753 ], [ -95.545257051000874, 29.832840205788436 ], [ -95.545201051183227, 29.833105206138594 ], [ -95.545132051350024, 29.833316206164561 ], [ -95.545075051545552, 29.833568205711192 ], [ -95.54503905111109, 29.833945205716894 ], [ -95.545035051720021, 29.834067206328836 ], [ -95.545039050956845, 29.834186206055456 ], [ -95.545040051805557, 29.834442206399981 ], [ -95.545051051596801, 29.836286206449813 ], [ -95.545076051270399, 29.84033320767098 ], [ -95.545101051486398, 29.844425208553197 ], [ -95.545114051814451, 29.84493520826085 ], [ -95.545128052306424, 29.845284208375997 ], [ -95.545087052118376, 29.845362208467002 ], [ -95.545092052110419, 29.846293208742857 ], [ -95.545095052362498, 29.847226208851421 ], [ -95.545098051937742, 29.84816420908988 ], [ -95.5451110518825, 29.848254209373348 ], [ -95.545126052551737, 29.848976208996707 ], [ -95.545117052558169, 29.849109209331363 ], [ -95.545111051814914, 29.850140209609311 ], [ -95.54511905178596, 29.851021209456032 ], [ -95.545123051841074, 29.851955209661849 ], [ -95.545136052762928, 29.852884209971648 ], [ -95.545154052645429, 29.853819210188941 ], [ -95.545160052273957, 29.854748210128434 ], [ -95.545170052385743, 29.855686210672388 ], [ -95.545176052737489, 29.856613210827373 ], [ -95.54518105265474, 29.857562211081802 ], [ -95.545198052643343, 29.858723211254834 ], [ -95.545153052477843, 29.860117211279199 ], [ -95.54508005261458, 29.860374211721552 ], [ -95.544922053071744, 29.860695212074805 ], [ -95.544760052652549, 29.860932211723959 ], [ -95.544578052930575, 29.861148211509466 ], [ -95.544461052267337, 29.861276211456925 ], [ -95.544307052200281, 29.861461212166233 ], [ -95.544138052431279, 29.861664212189091 ], [ -95.546482053516556, 29.863312211902063 ], [ -95.54866105419822, 29.864844212765838 ], [ -95.550813054448085, 29.866367212892499 ], [ -95.550845054555495, 29.866388212325482 ], [ -95.55113405446879, 29.866584212313324 ], [ -95.551257055002793, 29.866663212526234 ], [ -95.552463054366385, 29.867556212650808 ], [ -95.553804055030838, 29.868479212879603 ], [ -95.554306055717859, 29.86883021290361 ], [ -95.554947055543082, 29.869287213346162 ], [ -95.557815056460342, 29.871288213621629 ], [ -95.558419056185457, 29.871715213235543 ], [ -95.558814057005989, 29.871994213188607 ], [ -95.558901056901519, 29.872056213610357 ], [ -95.559183056397103, 29.872256213492864 ], [ -95.559471057208, 29.872128213030859 ], [ -95.55973605682388, 29.872010213123424 ], [ -95.559937056753171, 29.871912213011431 ], [ -95.560435056983735, 29.871668213034422 ], [ -95.560506057527789, 29.87162821364096 ], [ -95.560939057186502, 29.871380212970053 ], [ -95.561326057095542, 29.871076212899425 ], [ -95.561677057569227, 29.870789212735357 ], [ -95.562090057929183, 29.870401212884151 ], [ -95.562608057749017, 29.869806213024876 ], [ -95.562866057341978, 29.869430213110647 ], [ -95.56302405809268, 29.86918421259368 ], [ -95.563281057297317, 29.868725212752711 ], [ -95.563467057205315, 29.868306212491547 ], [ -95.563548057408369, 29.868003212188992 ], [ -95.563648057378629, 29.867648212778153 ], [ -95.563680058179926, 29.867497211950703 ], [ -95.563720057256447, 29.867281212707113 ], [ -95.563744057216255, 29.867069211869776 ], [ -95.563749057529648, 29.867045211851053 ], [ -95.563770057561328, 29.866393212229941 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 178, "Tract": "48201521900", "Area_SqMi": 1.4751881433814362, "total_2009": 1478, "total_2010": 1471, "total_2011": 1612, "total_2012": 1685, "total_2013": 1874, "total_2014": 1797, "total_2015": 1533, "total_2016": 1771, "total_2017": 1753, "total_2018": 1747, "total_2019": 1808, "total_2020": 1891, "age1": 631, "age2": 1021, "age3": 433, "earn1": 498, "earn2": 621, "earn3": 966, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 151, "naics_s05": 0, "naics_s06": 80, "naics_s07": 316, "naics_s08": 4, "naics_s09": 0, "naics_s10": 136, "naics_s11": 115, "naics_s12": 87, "naics_s13": 0, "naics_s14": 23, "naics_s15": 158, "naics_s16": 495, "naics_s17": 4, "naics_s18": 462, "naics_s19": 54, "naics_s20": 0, "race1": 1427, "race2": 477, "race3": 11, "race4": 125, "race5": 7, "race6": 38, "ethnicity1": 1450, "ethnicity2": 635, "edu1": 272, "edu2": 372, "edu3": 435, "edu4": 375, "Shape_Length": 25755.061544245604, "Shape_Area": 41125720.627733722, "total_2021": 1802, "total_2022": 2085 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563700056362634, 29.831939205103282 ], [ -95.563701056432279, 29.83173820491437 ], [ -95.563664055882015, 29.827088204329744 ], [ -95.563628055816167, 29.825805204140586 ], [ -95.563660055922469, 29.824959203640802 ], [ -95.563660055917353, 29.824911204043701 ], [ -95.563660055381533, 29.822893203010103 ], [ -95.563660055742673, 29.82267220290813 ], [ -95.563660055832955, 29.822455203130083 ], [ -95.56366005550116, 29.821750202631357 ], [ -95.563607055449282, 29.819709202280634 ], [ -95.563597055376434, 29.818672201990928 ], [ -95.563594055516418, 29.818358202312357 ], [ -95.563594055200412, 29.817169201723758 ], [ -95.56358405511854, 29.816635201678075 ], [ -95.56358505549602, 29.815079201755506 ], [ -95.563586055188409, 29.812956201101979 ], [ -95.56358605474378, 29.812710200795994 ], [ -95.563305054718697, 29.812719200796195 ], [ -95.562656054627382, 29.812711201057986 ], [ -95.562123055122598, 29.812699201003365 ], [ -95.561103054165585, 29.812692201618667 ], [ -95.55884305379027, 29.812671201745754 ], [ -95.558729053812101, 29.812670200949423 ], [ -95.557578053585488, 29.812679201179744 ], [ -95.556573053081479, 29.812681201283986 ], [ -95.55645105295774, 29.81268220176214 ], [ -95.555611053056751, 29.812681201732559 ], [ -95.55545705269239, 29.812679201191205 ], [ -95.554455052898987, 29.812683201324582 ], [ -95.554061052843679, 29.812684201602185 ], [ -95.553236052187444, 29.812686201516268 ], [ -95.552958052833461, 29.812682201648887 ], [ -95.552349052390213, 29.812681201730502 ], [ -95.550950052220344, 29.812678201987001 ], [ -95.550160052232769, 29.812685202003181 ], [ -95.549467051933973, 29.812687201287261 ], [ -95.547898050946458, 29.812690201435352 ], [ -95.547307050910717, 29.812692201908252 ], [ -95.546587051353811, 29.812695201450452 ], [ -95.54521605102579, 29.8126922015011 ], [ -95.545211050548019, 29.814020202538696 ], [ -95.545210050770237, 29.81430220223886 ], [ -95.54520805054625, 29.8147192022772 ], [ -95.545211050630968, 29.815033202365456 ], [ -95.545205051050019, 29.815401202106582 ], [ -95.545211051074489, 29.815937202596217 ], [ -95.545219050351676, 29.816566202668657 ], [ -95.545235051227323, 29.817276202378601 ], [ -95.545226051052552, 29.817698202663117 ], [ -95.545229050582321, 29.818508203089056 ], [ -95.545233051254684, 29.8190562032072 ], [ -95.545243051064631, 29.819576203600445 ], [ -95.545243050695788, 29.820050202876757 ], [ -95.545253050763719, 29.820886203156022 ], [ -95.54526105133256, 29.821278203235089 ], [ -95.545267051469793, 29.822713204300886 ], [ -95.545268051285504, 29.823351204069294 ], [ -95.545270051063909, 29.823818204063439 ], [ -95.545263051178011, 29.824224203982361 ], [ -95.545271051239098, 29.824997204654835 ], [ -95.54528205105737, 29.825955204303725 ], [ -95.545293051271571, 29.826891204415837 ], [ -95.545308051655837, 29.827736205312 ], [ -95.545320051512746, 29.830517205032521 ], [ -95.545328051887708, 29.832244206211886 ], [ -95.546164051336248, 29.832234205816746 ], [ -95.546358052140704, 29.832237205856273 ], [ -95.546781051443446, 29.83223420566004 ], [ -95.550328052261065, 29.83216520541372 ], [ -95.552300053394262, 29.83213820594294 ], [ -95.553270053672492, 29.832117205408366 ], [ -95.555690054311683, 29.832071205767797 ], [ -95.55780905488416, 29.832048205205581 ], [ -95.558564054291296, 29.832040205739581 ], [ -95.559653055196208, 29.832018205503925 ], [ -95.560328055499227, 29.832005205686844 ], [ -95.563261055542625, 29.831948205540542 ], [ -95.563700056362634, 29.831939205103282 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 179, "Tract": "48201530300", "Area_SqMi": 0.70885830742168077, "total_2009": 464, "total_2010": 453, "total_2011": 444, "total_2012": 839, "total_2013": 952, "total_2014": 915, "total_2015": 958, "total_2016": 965, "total_2017": 950, "total_2018": 652, "total_2019": 712, "total_2020": 438, "age1": 237, "age2": 484, "age3": 129, "earn1": 147, "earn2": 293, "earn3": 410, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 47, "naics_s05": 3, "naics_s06": 159, "naics_s07": 104, "naics_s08": 30, "naics_s09": 3, "naics_s10": 0, "naics_s11": 86, "naics_s12": 180, "naics_s13": 8, "naics_s14": 133, "naics_s15": 1, "naics_s16": 50, "naics_s17": 9, "naics_s18": 30, "naics_s19": 7, "naics_s20": 0, "race1": 626, "race2": 156, "race3": 8, "race4": 42, "race5": 6, "race6": 12, "ethnicity1": 510, "ethnicity2": 340, "edu1": 149, "edu2": 167, "edu3": 164, "edu4": 133, "Shape_Length": 21904.031237086234, "Shape_Area": 19761756.387798175, "total_2021": 926, "total_2022": 850 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399597013754317, 29.820510208446144 ], [ -95.399581013835245, 29.819651208407304 ], [ -95.3995660132626, 29.819192208298787 ], [ -95.399554013989672, 29.818833207813874 ], [ -95.399485013483456, 29.818835208248448 ], [ -95.399507014012272, 29.818370207962886 ], [ -95.39950201305237, 29.818117207795929 ], [ -95.399482013791882, 29.817188207929505 ], [ -95.399473013512818, 29.816458207790749 ], [ -95.399470013270246, 29.816072207739683 ], [ -95.399466013839756, 29.81579920730541 ], [ -95.399455013837667, 29.81512120689386 ], [ -95.399452013049029, 29.814918207158211 ], [ -95.399441013706692, 29.814109207459069 ], [ -95.399437013624976, 29.81385120700573 ], [ -95.399418012767399, 29.81331720700987 ], [ -95.399411013286496, 29.813108207299077 ], [ -95.399406013669264, 29.812907207274385 ], [ -95.39776201240285, 29.812935206852416 ], [ -95.3970070121687, 29.813021207092703 ], [ -95.395698012773153, 29.813306206936055 ], [ -95.394804011959366, 29.813561207319509 ], [ -95.394266012427011, 29.813699206860541 ], [ -95.393496011695831, 29.813808206895576 ], [ -95.393138011220898, 29.813833206972998 ], [ -95.391934011167081, 29.813873206948152 ], [ -95.391625011389195, 29.813881206993635 ], [ -95.391428010753884, 29.813882206966429 ], [ -95.389373011157716, 29.813883207798067 ], [ -95.385883009840285, 29.8139222072049 ], [ -95.382618008575733, 29.813945207412644 ], [ -95.382484009229643, 29.81394620796889 ], [ -95.380003007875587, 29.81397220757513 ], [ -95.379158007763294, 29.813981207329878 ], [ -95.37816100741837, 29.8137942074144 ], [ -95.377669007862124, 29.813665207969287 ], [ -95.377214007244419, 29.813568208019309 ], [ -95.376722007451903, 29.81345520812291 ], [ -95.376521007590426, 29.813407207666373 ], [ -95.37613200700558, 29.813314207386632 ], [ -95.375882006844492, 29.813274207648064 ], [ -95.37576500749374, 29.813260207623948 ], [ -95.37549500722875, 29.813224207730165 ], [ -95.375291007396513, 29.813214208060636 ], [ -95.375341006995797, 29.813290207333246 ], [ -95.375554007591177, 29.813821207819373 ], [ -95.375622007650577, 29.813988207836591 ], [ -95.375635006737156, 29.814019207867826 ], [ -95.375662007207097, 29.814086207725566 ], [ -95.375688007460212, 29.814151208243775 ], [ -95.375959007335013, 29.814832207650973 ], [ -95.376309007058538, 29.815742208299127 ], [ -95.377064007737701, 29.817409208766392 ], [ -95.377911008127185, 29.819106208897875 ], [ -95.377955008448893, 29.81919520909446 ], [ -95.378054008080568, 29.819394208818025 ], [ -95.37859700819152, 29.819331208927998 ], [ -95.37927200795022, 29.819393208553539 ], [ -95.382346009144996, 29.819401208682393 ], [ -95.383137009489417, 29.819387208815638 ], [ -95.383254009755589, 29.81938520907585 ], [ -95.383393009657269, 29.820657209224116 ], [ -95.3836130095616, 29.822196209295182 ], [ -95.38369800918143, 29.823059209068145 ], [ -95.383716010033396, 29.82324620936587 ], [ -95.383872010210794, 29.823229209063083 ], [ -95.384041009289831, 29.823219209842435 ], [ -95.384202009864623, 29.82320020925231 ], [ -95.384770009997197, 29.823109209082737 ], [ -95.385000009774856, 29.82307720949516 ], [ -95.385244009987602, 29.823062209196738 ], [ -95.385226010176737, 29.822892209639569 ], [ -95.385222010362682, 29.822852209345889 ], [ -95.385212010508653, 29.822686209345736 ], [ -95.385215009551999, 29.822480209680062 ], [ -95.385228009561203, 29.822412209053997 ], [ -95.385269009772713, 29.822349209352325 ], [ -95.385335010205239, 29.822307209420089 ], [ -95.385427010061122, 29.822289209475557 ], [ -95.386355010119587, 29.822293209176504 ], [ -95.387029010381639, 29.822290209359515 ], [ -95.389040010639931, 29.822271208847159 ], [ -95.39107201129633, 29.822244208946813 ], [ -95.392544011452998, 29.822228208822125 ], [ -95.394629012837257, 29.822211208546044 ], [ -95.396183012692248, 29.822196209028192 ], [ -95.396160012700818, 29.821376208397872 ], [ -95.396149012717643, 29.820535208734867 ], [ -95.397795012878319, 29.820518208607108 ], [ -95.399456014029738, 29.820503208671518 ], [ -95.399597013754317, 29.820510208446144 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 180, "Tract": "48201455000", "Area_SqMi": 0.50566715838356213, "total_2009": 288, "total_2010": 305, "total_2011": 304, "total_2012": 500, "total_2013": 541, "total_2014": 548, "total_2015": 535, "total_2016": 578, "total_2017": 562, "total_2018": 554, "total_2019": 600, "total_2020": 765, "age1": 195, "age2": 343, "age3": 166, "earn1": 193, "earn2": 297, "earn3": 214, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 0, "naics_s06": 11, "naics_s07": 49, "naics_s08": 0, "naics_s09": 0, "naics_s10": 16, "naics_s11": 2, "naics_s12": 32, "naics_s13": 0, "naics_s14": 271, "naics_s15": 46, "naics_s16": 191, "naics_s17": 1, "naics_s18": 37, "naics_s19": 30, "naics_s20": 0, "race1": 436, "race2": 181, "race3": 8, "race4": 59, "race5": 1, "race6": 19, "ethnicity1": 510, "ethnicity2": 194, "edu1": 121, "edu2": 128, "edu3": 136, "edu4": 124, "Shape_Length": 17789.435102511135, "Shape_Area": 14097134.917742623, "total_2021": 690, "total_2022": 704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.770372105784588, 29.757406182780972 ], [ -95.770672105624115, 29.757355183211416 ], [ -95.769661105090975, 29.756680182451497 ], [ -95.768901105200186, 29.756197182395624 ], [ -95.768847105007012, 29.756163182618575 ], [ -95.768577105506054, 29.755990182355013 ], [ -95.768077104810871, 29.755720182422067 ], [ -95.767682104915551, 29.755505182975917 ], [ -95.767130104548201, 29.755205182409703 ], [ -95.76703310431337, 29.755154182333762 ], [ -95.766887104697787, 29.75507818270032 ], [ -95.76651910405775, 29.754879182157662 ], [ -95.766494104751956, 29.754865182833431 ], [ -95.766483104852171, 29.754859182411238 ], [ -95.766461103994303, 29.754847182441114 ], [ -95.766376104189149, 29.754801182913376 ], [ -95.766159104190635, 29.754684182527608 ], [ -95.765835104611696, 29.754509182754099 ], [ -95.765538104646282, 29.754348182125785 ], [ -95.76471310430361, 29.753904182459991 ], [ -95.764536104035543, 29.753809182408332 ], [ -95.764487104004687, 29.753782182780999 ], [ -95.764450104294724, 29.753762182674468 ], [ -95.764357103921796, 29.753712182445994 ], [ -95.764078104008661, 29.753561182230456 ], [ -95.764064103971094, 29.753553182142795 ], [ -95.763952104065751, 29.753490182355726 ], [ -95.763911103582473, 29.753467181876406 ], [ -95.763842104114417, 29.753428182090463 ], [ -95.763772103413132, 29.753389182455233 ], [ -95.763302103869677, 29.753122181936057 ], [ -95.763097102995459, 29.75300718201424 ], [ -95.762906103501649, 29.752897181838875 ], [ -95.761775102634601, 29.752255181734398 ], [ -95.761623103146277, 29.752169182160966 ], [ -95.761381103028071, 29.752033182118673 ], [ -95.761299103290256, 29.751987182236459 ], [ -95.760500103153191, 29.751533182176999 ], [ -95.759222102330838, 29.750805181804402 ], [ -95.759095102300975, 29.750733181779804 ], [ -95.758499101822181, 29.750394182208225 ], [ -95.757905101836613, 29.750056181389169 ], [ -95.756900102046629, 29.749515181936861 ], [ -95.756790101985786, 29.749456182104318 ], [ -95.754860100858551, 29.748449181997845 ], [ -95.754806101529454, 29.748421181178138 ], [ -95.754360100958792, 29.748173181460633 ], [ -95.754154101088815, 29.748059181890753 ], [ -95.753770100439823, 29.747850181642367 ], [ -95.753656100882239, 29.747786181200187 ], [ -95.753192101191388, 29.747529181223495 ], [ -95.752279100568146, 29.747026181239796 ], [ -95.751453099720749, 29.746477180956152 ], [ -95.751455099801944, 29.746895181471185 ], [ -95.751474099753395, 29.747565181921072 ], [ -95.751477100713331, 29.747898181453007 ], [ -95.751486100695359, 29.748893181349469 ], [ -95.751488100414377, 29.749051181806173 ], [ -95.751488100775433, 29.749094181756568 ], [ -95.751513100190479, 29.751187182382139 ], [ -95.751520100447649, 29.751737182533706 ], [ -95.751554100333962, 29.754578183044 ], [ -95.751546100663518, 29.754708182847466 ], [ -95.75160010061586, 29.758556183746855 ], [ -95.751722101016071, 29.758561183705915 ], [ -95.751858100674553, 29.75855818395209 ], [ -95.751935101314103, 29.758564183309158 ], [ -95.752118101120672, 29.758559183347071 ], [ -95.752227100821045, 29.758551183779971 ], [ -95.752332101267172, 29.75853818348077 ], [ -95.752552101177898, 29.75852218365397 ], [ -95.752871100717243, 29.758485183983442 ], [ -95.753307100792242, 29.758427183964688 ], [ -95.753351101054591, 29.758421183733134 ], [ -95.753580101661328, 29.758403183565257 ], [ -95.753780101210708, 29.758395183244001 ], [ -95.754045101852228, 29.758393183433732 ], [ -95.754141101718162, 29.758386183379368 ], [ -95.754255101172348, 29.758385183643409 ], [ -95.754626101621341, 29.758401183352934 ], [ -95.754941101801933, 29.758432183357556 ], [ -95.755255101627029, 29.758474183402832 ], [ -95.755389101258331, 29.758502183986831 ], [ -95.755505102280452, 29.758520184012649 ], [ -95.755996101753126, 29.758628183438109 ], [ -95.756178102385661, 29.758674183773184 ], [ -95.756371101849297, 29.758722183947828 ], [ -95.756821101912692, 29.758803183662071 ], [ -95.756942102246867, 29.758826183668948 ], [ -95.757143102229861, 29.758854183841478 ], [ -95.757573102442834, 29.758891183671331 ], [ -95.757802102602952, 29.758900183239021 ], [ -95.75809710287686, 29.758905183178108 ], [ -95.758227102758497, 29.758891183709206 ], [ -95.75831710263806, 29.758897183373623 ], [ -95.758636102734243, 29.758877183630577 ], [ -95.758830102381992, 29.758857183383647 ], [ -95.759308102940224, 29.758784183373386 ], [ -95.759586102563361, 29.758730183429773 ], [ -95.760289103249477, 29.758572183227457 ], [ -95.760411102949817, 29.758551183700259 ], [ -95.760522102755502, 29.758521182988559 ], [ -95.761538103033928, 29.758300183628837 ], [ -95.761920102914871, 29.758231183158941 ], [ -95.762255103994292, 29.758184183621086 ], [ -95.762604103210194, 29.758148183595239 ], [ -95.762913103778274, 29.758130183191678 ], [ -95.763121103580502, 29.758127182894196 ], [ -95.763508103600913, 29.7581171828968 ], [ -95.76364110383193, 29.758116182817417 ], [ -95.764114103647984, 29.758114183511253 ], [ -95.764413104312183, 29.758103183169073 ], [ -95.764738104174938, 29.758092183487872 ], [ -95.765260104454896, 29.758058183525918 ], [ -95.765733104336732, 29.75801218328316 ], [ -95.766567104697572, 29.757907183240242 ], [ -95.766627104601241, 29.757899182841985 ], [ -95.76673110460186, 29.757885183228435 ], [ -95.767347104273213, 29.757805183335527 ], [ -95.767828104939881, 29.757737183416381 ], [ -95.768626105313587, 29.7576311831745 ], [ -95.769821105527143, 29.75747218306633 ], [ -95.770372105784588, 29.757406182780972 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 181, "Tract": "48201530400", "Area_SqMi": 0.61429874453958033, "total_2009": 1237, "total_2010": 1223, "total_2011": 1173, "total_2012": 1119, "total_2013": 1134, "total_2014": 1081, "total_2015": 1079, "total_2016": 1063, "total_2017": 1146, "total_2018": 995, "total_2019": 1015, "total_2020": 802, "age1": 128, "age2": 365, "age3": 182, "earn1": 80, "earn2": 230, "earn3": 365, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 0, "naics_s05": 172, "naics_s06": 292, "naics_s07": 63, "naics_s08": 17, "naics_s09": 8, "naics_s10": 6, "naics_s11": 5, "naics_s12": 7, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 83, "naics_s19": 6, "naics_s20": 0, "race1": 542, "race2": 72, "race3": 8, "race4": 46, "race5": 1, "race6": 6, "ethnicity1": 287, "ethnicity2": 388, "edu1": 189, "edu2": 148, "edu3": 137, "edu4": 73, "Shape_Length": 20994.819830714208, "Shape_Area": 17125597.614954546, "total_2021": 672, "total_2022": 675 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.398768014222597, 29.830545210805166 ], [ -95.398303013536236, 29.829634209863364 ], [ -95.398101013209043, 29.829234210387263 ], [ -95.397693013077415, 29.828404210009197 ], [ -95.397443013510951, 29.827890209521563 ], [ -95.397011013670991, 29.826985210064823 ], [ -95.396745013289788, 29.826451209522698 ], [ -95.396421012535583, 29.825796209999254 ], [ -95.396363013118631, 29.825679209504628 ], [ -95.396090013320062, 29.825191209213603 ], [ -95.395920013293591, 29.824887209580048 ], [ -95.395523012814905, 29.824179209609699 ], [ -95.395147012926444, 29.82351220942197 ], [ -95.395096012372861, 29.823443209442996 ], [ -95.394853012847577, 29.822849209007067 ], [ -95.394629012837257, 29.822211208546044 ], [ -95.392544011452998, 29.822228208822125 ], [ -95.39107201129633, 29.822244208946813 ], [ -95.389040010639931, 29.822271208847159 ], [ -95.387029010381639, 29.822290209359515 ], [ -95.386355010119587, 29.822293209176504 ], [ -95.385427010061122, 29.822289209475557 ], [ -95.385335010205239, 29.822307209420089 ], [ -95.385269009772713, 29.822349209352325 ], [ -95.385228009561203, 29.822412209053997 ], [ -95.385215009551999, 29.822480209680062 ], [ -95.385212010508653, 29.822686209345736 ], [ -95.385222010362682, 29.822852209345889 ], [ -95.385226010176737, 29.822892209639569 ], [ -95.385244009987602, 29.823062209196738 ], [ -95.385000009774856, 29.82307720949516 ], [ -95.384770009997197, 29.823109209082737 ], [ -95.384202009864623, 29.82320020925231 ], [ -95.384041009289831, 29.823219209842435 ], [ -95.383872010210794, 29.823229209063083 ], [ -95.383716010033396, 29.82324620936587 ], [ -95.38369800918143, 29.823059209068145 ], [ -95.3836130095616, 29.822196209295182 ], [ -95.383393009657269, 29.820657209224116 ], [ -95.383254009755589, 29.81938520907585 ], [ -95.383137009489417, 29.819387208815638 ], [ -95.382346009144996, 29.819401208682393 ], [ -95.37927200795022, 29.819393208553539 ], [ -95.37859700819152, 29.819331208927998 ], [ -95.378054008080568, 29.819394208818025 ], [ -95.378532008408499, 29.820351209338909 ], [ -95.379288008615433, 29.821866209631157 ], [ -95.379498008061475, 29.822394209372959 ], [ -95.379565008226763, 29.822589209559595 ], [ -95.379808008282396, 29.82321220974416 ], [ -95.380002009165693, 29.82377620993357 ], [ -95.380183009147558, 29.824353209759629 ], [ -95.380250008980127, 29.824694209880022 ], [ -95.380311009185476, 29.825005210054616 ], [ -95.380499009373949, 29.825779210318213 ], [ -95.380759008889768, 29.827024210109201 ], [ -95.38106300913401, 29.828160210321759 ], [ -95.381138008812272, 29.828380210857627 ], [ -95.38120600966765, 29.828579211039944 ], [ -95.381228009340148, 29.828628210958573 ], [ -95.381298009681686, 29.828782210371283 ], [ -95.381329009641817, 29.828842210894774 ], [ -95.381353009104927, 29.828889210332974 ], [ -95.381558009441434, 29.829285210779314 ], [ -95.381778009670981, 29.829721211018313 ], [ -95.382136009621604, 29.830249211102842 ], [ -95.382727009522924, 29.830937210724269 ], [ -95.38420100987787, 29.832803211637643 ], [ -95.384321009931597, 29.832955211195689 ], [ -95.384521010092868, 29.833207211517315 ], [ -95.384518009823097, 29.832849211576708 ], [ -95.38442401067978, 29.830852210746212 ], [ -95.386302010563398, 29.830771210727445 ], [ -95.387002010956849, 29.830741210801332 ], [ -95.387216011039229, 29.830737211025429 ], [ -95.388383010873113, 29.830695210884961 ], [ -95.388655011384202, 29.830686210580019 ], [ -95.390021012109216, 29.83062721064325 ], [ -95.391954012510922, 29.830608210441479 ], [ -95.392217012364753, 29.83060621076876 ], [ -95.392872012312807, 29.830598210757536 ], [ -95.393760012118832, 29.830593210996096 ], [ -95.393979013103774, 29.830592210757942 ], [ -95.394409013130314, 29.830586211070994 ], [ -95.395650013494532, 29.830577210164417 ], [ -95.395997012768092, 29.830575210666677 ], [ -95.396469013547488, 29.83057121060871 ], [ -95.396796013462705, 29.830570210589109 ], [ -95.398768014222597, 29.830545210805166 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 182, "Tract": "48201455200", "Area_SqMi": 1.156615048880391, "total_2009": 669, "total_2010": 769, "total_2011": 956, "total_2012": 935, "total_2013": 1036, "total_2014": 990, "total_2015": 1141, "total_2016": 1066, "total_2017": 1121, "total_2018": 1082, "total_2019": 1174, "total_2020": 1187, "age1": 438, "age2": 585, "age3": 293, "earn1": 388, "earn2": 498, "earn3": 430, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 66, "naics_s05": 27, "naics_s06": 12, "naics_s07": 179, "naics_s08": 8, "naics_s09": 4, "naics_s10": 104, "naics_s11": 38, "naics_s12": 93, "naics_s13": 0, "naics_s14": 31, "naics_s15": 0, "naics_s16": 178, "naics_s17": 7, "naics_s18": 390, "naics_s19": 179, "naics_s20": 0, "race1": 909, "race2": 238, "race3": 6, "race4": 136, "race5": 1, "race6": 26, "ethnicity1": 905, "ethnicity2": 411, "edu1": 202, "edu2": 198, "edu3": 251, "edu4": 227, "Shape_Length": 25260.600634264028, "Shape_Area": 32244447.996345066, "total_2021": 1237, "total_2022": 1316 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.777542108494799, 29.784585187762573 ], [ -95.777546108844561, 29.784426188260881 ], [ -95.777498108642177, 29.78340818823099 ], [ -95.777495108856186, 29.783278187778762 ], [ -95.777445108056313, 29.780140187094581 ], [ -95.777448107914964, 29.779791186941186 ], [ -95.777479108645849, 29.775487186652178 ], [ -95.777467108246398, 29.775271186479198 ], [ -95.777494108068112, 29.774136186103647 ], [ -95.777503108020539, 29.773763185857206 ], [ -95.777494108294633, 29.773664185788057 ], [ -95.777362107548171, 29.772283185593768 ], [ -95.777350108365241, 29.772157186029851 ], [ -95.777056107641798, 29.77218218543894 ], [ -95.776709108165008, 29.772212186039578 ], [ -95.776428107905659, 29.772260185590689 ], [ -95.776013107781779, 29.772350185386998 ], [ -95.775647107571103, 29.772443185987257 ], [ -95.775297107146145, 29.772540185376332 ], [ -95.775082107365648, 29.772612185540737 ], [ -95.774885107755452, 29.772693185738412 ], [ -95.774706107671776, 29.772777185735958 ], [ -95.774484107440529, 29.772889185444019 ], [ -95.774310106968656, 29.772985185802696 ], [ -95.774238106976881, 29.773025185967409 ], [ -95.774166107229988, 29.773068186248722 ], [ -95.774104107504272, 29.773106185958682 ], [ -95.774063106963354, 29.77313118591697 ], [ -95.77403910731033, 29.773146185722844 ], [ -95.774016107624377, 29.773160186077945 ], [ -95.773966106800131, 29.773191186279039 ], [ -95.773686106632894, 29.773381186002574 ], [ -95.773635107225076, 29.773419185857932 ], [ -95.773207106879113, 29.773742186186464 ], [ -95.772909107012183, 29.773958186382853 ], [ -95.772706106867105, 29.774090185905909 ], [ -95.772396107057801, 29.774273185924649 ], [ -95.772186106703117, 29.774386186643799 ], [ -95.771966106710039, 29.774492185931443 ], [ -95.771622106998024, 29.774637186548755 ], [ -95.771278107048602, 29.774764186303038 ], [ -95.771173106996116, 29.774811186279582 ], [ -95.771056106122117, 29.774847186227284 ], [ -95.770927106519451, 29.774872186164885 ], [ -95.77068910688044, 29.774937186336789 ], [ -95.770577105886389, 29.774973186302709 ], [ -95.770219105824978, 29.775038186829281 ], [ -95.769879106028398, 29.775087186201901 ], [ -95.769562106427813, 29.775119186782138 ], [ -95.769287105783334, 29.775137186542381 ], [ -95.769216105841181, 29.775146186766893 ], [ -95.769136105515315, 29.775141186804557 ], [ -95.768836105950129, 29.775144186973392 ], [ -95.768552106302707, 29.775144186695794 ], [ -95.768395105685926, 29.775149186814705 ], [ -95.767898105423669, 29.775151186635778 ], [ -95.767760105710678, 29.775152186426642 ], [ -95.767673105381888, 29.775158187010192 ], [ -95.767572105685389, 29.775158186255023 ], [ -95.76745010569303, 29.77515018666066 ], [ -95.767194105692212, 29.775151186465148 ], [ -95.767071105481719, 29.77516018672555 ], [ -95.766527105818653, 29.775161186735435 ], [ -95.766379104969516, 29.775152187004352 ], [ -95.765947105386417, 29.775160186712473 ], [ -95.76580910533302, 29.775166186547075 ], [ -95.76490710492989, 29.77516218684406 ], [ -95.764777104671978, 29.775169186520777 ], [ -95.764229104894142, 29.775173186402796 ], [ -95.764088104626936, 29.775168186383329 ], [ -95.7632561046251, 29.775175186536043 ], [ -95.763042104552596, 29.775181186612979 ], [ -95.762810104885361, 29.775176186967528 ], [ -95.762695104416906, 29.775181186699676 ], [ -95.762553104021777, 29.775177187132748 ], [ -95.762284104130259, 29.775182186869984 ], [ -95.762134103834597, 29.775180186853731 ], [ -95.762000104217464, 29.775186186454068 ], [ -95.761709104638726, 29.775182186482976 ], [ -95.761447104419034, 29.775186186639761 ], [ -95.760926104153384, 29.775171187231557 ], [ -95.760440103615196, 29.775143187209405 ], [ -95.760092103199653, 29.775117186608739 ], [ -95.759645103969362, 29.775074187044972 ], [ -95.759140103077101, 29.775013186904125 ], [ -95.758775102900884, 29.774963186613288 ], [ -95.758228103011149, 29.774890186576428 ], [ -95.75792010332097, 29.774849186702909 ], [ -95.757548103388118, 29.774811186740539 ], [ -95.757152103055574, 29.774784186866249 ], [ -95.756597102630877, 29.774753186435035 ], [ -95.756478102873245, 29.774756186833685 ], [ -95.756356102930823, 29.774752187252204 ], [ -95.756265102652947, 29.77474418668427 ], [ -95.755449102247852, 29.774740186494235 ], [ -95.755229102067929, 29.774744186676834 ], [ -95.755149102746202, 29.774752187186245 ], [ -95.755041102257593, 29.774753187149685 ], [ -95.754818102484435, 29.774748186659199 ], [ -95.75469210280302, 29.77475218662083 ], [ -95.754506101778205, 29.774753187381084 ], [ -95.75348210229221, 29.774754186552247 ], [ -95.75336210158342, 29.774760187179673 ], [ -95.753233101763456, 29.774761186944431 ], [ -95.753094102121892, 29.774756186794562 ], [ -95.75301110232553, 29.774760187136742 ], [ -95.752841102196768, 29.774756186668 ], [ -95.752058101188481, 29.774754187439697 ], [ -95.751776102076278, 29.774757186701763 ], [ -95.751781101283285, 29.774989186878425 ], [ -95.75178310175329, 29.77527818694827 ], [ -95.751783102060585, 29.775393186866168 ], [ -95.75178710115398, 29.775940187001382 ], [ -95.751788101634702, 29.776281187220782 ], [ -95.751796101487045, 29.776900187858597 ], [ -95.751794101700256, 29.777146187797438 ], [ -95.751797102049338, 29.77722318792302 ], [ -95.751804101654344, 29.778124187331226 ], [ -95.751806101660733, 29.778574187578279 ], [ -95.751813101480778, 29.779380187923394 ], [ -95.751815102293335, 29.779579188286121 ], [ -95.751817101300759, 29.779779187743884 ], [ -95.751819101867881, 29.779886187729289 ], [ -95.751830101676276, 29.780959188628049 ], [ -95.751852101707698, 29.781825188620463 ], [ -95.75187310152387, 29.78227418845438 ], [ -95.751871101718791, 29.782506188186606 ], [ -95.751883101698624, 29.783198189133628 ], [ -95.751877102328422, 29.784678188821342 ], [ -95.751877101536408, 29.784738189181574 ], [ -95.75187610199734, 29.78482418923943 ], [ -95.751876102139789, 29.784888188922803 ], [ -95.751875101819493, 29.785102189213795 ], [ -95.751874102415073, 29.785397189153507 ], [ -95.752110101641989, 29.78539718919092 ], [ -95.75261110233474, 29.785377189253431 ], [ -95.753308102091907, 29.785361188696822 ], [ -95.754668102564679, 29.785375188948134 ], [ -95.755383103066208, 29.785393189146721 ], [ -95.756203103542362, 29.785399188895788 ], [ -95.757028103495102, 29.785397188657541 ], [ -95.758038103420219, 29.785434188648178 ], [ -95.758762104087921, 29.785448188820933 ], [ -95.761948104124727, 29.785515189036246 ], [ -95.762484105297034, 29.785529188912211 ], [ -95.766363105460385, 29.785474188707497 ], [ -95.766452106271984, 29.785473188537651 ], [ -95.767475106293332, 29.785459188442477 ], [ -95.769529106354398, 29.785478188388236 ], [ -95.773785107406397, 29.785499188639065 ], [ -95.774626107764433, 29.78548718857628 ], [ -95.77586510841293, 29.785500188469424 ], [ -95.776485108147583, 29.785508188526066 ], [ -95.776584107948679, 29.785509188424882 ], [ -95.776682107937305, 29.785505188349894 ], [ -95.776810108170565, 29.785499188373063 ], [ -95.777141108351572, 29.785490188194981 ], [ -95.777231108431394, 29.785487188562012 ], [ -95.777524108684077, 29.785488188531716 ], [ -95.777530108144703, 29.785178187882174 ], [ -95.777538109094792, 29.784828188382356 ], [ -95.777540108835851, 29.784754187974343 ], [ -95.777542108494799, 29.784585187762573 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 183, "Tract": "48201455300", "Area_SqMi": 2.0673307039865731, "total_2009": 1695, "total_2010": 2206, "total_2011": 2345, "total_2012": 2306, "total_2013": 2593, "total_2014": 2558, "total_2015": 3089, "total_2016": 3778, "total_2017": 4291, "total_2018": 5378, "total_2019": 6351, "total_2020": 6944, "age1": 3136, "age2": 3779, "age3": 1320, "earn1": 2714, "earn2": 2754, "earn3": 2767, "naics_s01": 0, "naics_s02": 40, "naics_s03": 186, "naics_s04": 135, "naics_s05": 16, "naics_s06": 152, "naics_s07": 3308, "naics_s08": 8, "naics_s09": 61, "naics_s10": 226, "naics_s11": 70, "naics_s12": 444, "naics_s13": 0, "naics_s14": 294, "naics_s15": 20, "naics_s16": 1198, "naics_s17": 308, "naics_s18": 1326, "naics_s19": 443, "naics_s20": 0, "race1": 5732, "race2": 1567, "race3": 79, "race4": 684, "race5": 12, "race6": 161, "ethnicity1": 5599, "ethnicity2": 2636, "edu1": 1048, "edu2": 1298, "edu3": 1571, "edu4": 1182, "Shape_Length": 34276.929932159888, "Shape_Area": 57633641.755283773, "total_2021": 7191, "total_2022": 8235 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.812388117379811, 29.780973186484207 ], [ -95.81220011749437, 29.78086818616022 ], [ -95.811958117662613, 29.780730186034774 ], [ -95.810634116766579, 29.779983185754478 ], [ -95.806010115226542, 29.77737018579878 ], [ -95.80421311524573, 29.776360185300199 ], [ -95.801768114181044, 29.774980185615203 ], [ -95.801690113892235, 29.774936185296507 ], [ -95.799291113501994, 29.773581185592452 ], [ -95.799171113199591, 29.773514185153779 ], [ -95.798465112961011, 29.773116185370231 ], [ -95.797344112805547, 29.772482184871723 ], [ -95.796350112777574, 29.771922184735029 ], [ -95.795935113042148, 29.771688185243278 ], [ -95.795369112482959, 29.771375185045866 ], [ -95.79504511276734, 29.771191184755395 ], [ -95.794822112292877, 29.77106618475251 ], [ -95.793141111453025, 29.770117184658435 ], [ -95.791918111824003, 29.769455184799636 ], [ -95.786746109873619, 29.766559183951884 ], [ -95.785433109848071, 29.765824183707597 ], [ -95.783041108849815, 29.764483184279388 ], [ -95.78247110909895, 29.764164184213385 ], [ -95.777611107568688, 29.761444183419858 ], [ -95.776639106822458, 29.760896183463114 ], [ -95.776387106894987, 29.760755183133991 ], [ -95.776399106910375, 29.763582183945591 ], [ -95.776399107306915, 29.764066183656031 ], [ -95.776379107889042, 29.76550818454977 ], [ -95.776429107369495, 29.767153184805334 ], [ -95.776440107171041, 29.767276184850491 ], [ -95.776520107337589, 29.76809018443296 ], [ -95.776667107920758, 29.76876518531563 ], [ -95.776771107390758, 29.769275184977765 ], [ -95.776927107563083, 29.769751185121851 ], [ -95.77705710748522, 29.770348184885268 ], [ -95.777169107901287, 29.770850185496382 ], [ -95.777281107527031, 29.771452185406016 ], [ -95.77732510809264, 29.771854185558887 ], [ -95.777342107981781, 29.77200118547076 ], [ -95.777350108365241, 29.772157186029851 ], [ -95.777362107548171, 29.772283185593768 ], [ -95.777494108294633, 29.773664185788057 ], [ -95.777503108020539, 29.773763185857206 ], [ -95.777494108068112, 29.774136186103647 ], [ -95.777467108246398, 29.775271186479198 ], [ -95.777479108645849, 29.775487186652178 ], [ -95.777448107914964, 29.779791186941186 ], [ -95.777445108056313, 29.780140187094581 ], [ -95.777495108856186, 29.783278187778762 ], [ -95.777498108642177, 29.78340818823099 ], [ -95.777546108844561, 29.784426188260881 ], [ -95.777542108494799, 29.784585187762573 ], [ -95.777540108835851, 29.784754187974343 ], [ -95.777538109094792, 29.784828188382356 ], [ -95.777530108144703, 29.785178187882174 ], [ -95.777524108684077, 29.785488188531716 ], [ -95.777836109178736, 29.785489187911761 ], [ -95.778020108746503, 29.785488188343333 ], [ -95.778239109241269, 29.785485188529623 ], [ -95.778664108649451, 29.785478188510623 ], [ -95.779345108776567, 29.785467188262363 ], [ -95.780483109314346, 29.785458187966707 ], [ -95.781089109005563, 29.785452188156231 ], [ -95.782879109874742, 29.785480188275599 ], [ -95.785154110614926, 29.78548618805759 ], [ -95.785940110902018, 29.785509188460907 ], [ -95.787671111175101, 29.785542188398036 ], [ -95.78801011150621, 29.785548187703064 ], [ -95.791275111923596, 29.785611187482488 ], [ -95.795357113173125, 29.785570187812688 ], [ -95.795968113023179, 29.785562187870259 ], [ -95.798759114033331, 29.78554218745894 ], [ -95.799196114086669, 29.785540188065539 ], [ -95.801421114282576, 29.785532187484399 ], [ -95.801763115132786, 29.785547187850757 ], [ -95.804903116029649, 29.785512187875213 ], [ -95.805528115598946, 29.785450187199373 ], [ -95.806023115538821, 29.785357187777382 ], [ -95.806952116385418, 29.785113187629388 ], [ -95.807498116255303, 29.784905187502812 ], [ -95.807639116528804, 29.784845186827628 ], [ -95.807825115927358, 29.784766187425699 ], [ -95.807990115851496, 29.784696187147048 ], [ -95.808507116730979, 29.784412187174759 ], [ -95.808885116887339, 29.784194187353194 ], [ -95.809469117151792, 29.783774186945788 ], [ -95.809888116453394, 29.783384187071078 ], [ -95.810577116762403, 29.78274718702 ], [ -95.812388117379811, 29.780973186484207 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 184, "Tract": "48201530800", "Area_SqMi": 1.7757392503502247, "total_2009": 730, "total_2010": 754, "total_2011": 853, "total_2012": 975, "total_2013": 759, "total_2014": 763, "total_2015": 738, "total_2016": 792, "total_2017": 848, "total_2018": 812, "total_2019": 855, "total_2020": 737, "age1": 136, "age2": 382, "age3": 207, "earn1": 120, "earn2": 263, "earn3": 342, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 192, "naics_s05": 172, "naics_s06": 60, "naics_s07": 65, "naics_s08": 27, "naics_s09": 2, "naics_s10": 0, "naics_s11": 19, "naics_s12": 1, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 29, "naics_s17": 0, "naics_s18": 88, "naics_s19": 65, "naics_s20": 0, "race1": 549, "race2": 112, "race3": 10, "race4": 42, "race5": 1, "race6": 11, "ethnicity1": 436, "ethnicity2": 289, "edu1": 162, "edu2": 170, "edu3": 157, "edu4": 100, "Shape_Length": 29825.103724073946, "Shape_Area": 49504571.091662996, "total_2021": 737, "total_2022": 725 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429424022860488, 29.863589216331388 ], [ -95.429386022986492, 29.863079216493233 ], [ -95.429186023155495, 29.862138216004947 ], [ -95.429184023176362, 29.861302215301524 ], [ -95.429190023004395, 29.860657215324096 ], [ -95.429180022509115, 29.859546215756811 ], [ -95.429160022458831, 29.857780215148356 ], [ -95.429146022730947, 29.856960215131537 ], [ -95.42913002282981, 29.855846214874738 ], [ -95.429121022386866, 29.855447214496689 ], [ -95.429111022656144, 29.85467821409809 ], [ -95.429108023110885, 29.854261214278694 ], [ -95.429106022340335, 29.853724214099291 ], [ -95.429101023138273, 29.853503214348532 ], [ -95.429078022754126, 29.851429213316585 ], [ -95.429027022046981, 29.849814213024821 ], [ -95.429016022805655, 29.84943221291983 ], [ -95.42899502284186, 29.848768213435164 ], [ -95.428981022866637, 29.848316212943374 ], [ -95.428943022497876, 29.84700421242994 ], [ -95.428943022066235, 29.846989212522001 ], [ -95.428906022286583, 29.845767212221226 ], [ -95.428857022628435, 29.844117212153417 ], [ -95.428854022234376, 29.843712212287766 ], [ -95.428845022333448, 29.842460211780296 ], [ -95.428861021604035, 29.841990211922511 ], [ -95.428860021590438, 29.841916211984714 ], [ -95.428850022101614, 29.841048211314448 ], [ -95.428272021440705, 29.840959211429716 ], [ -95.427982021613573, 29.840933211782801 ], [ -95.425162021435966, 29.840958211561645 ], [ -95.424617021362678, 29.840966212159717 ], [ -95.42416202050164, 29.84096521190359 ], [ -95.423203021017457, 29.84097821139871 ], [ -95.422973020374883, 29.840985211853919 ], [ -95.422330020774012, 29.840990211872782 ], [ -95.421206020010729, 29.841008212270051 ], [ -95.420772020386892, 29.841014212083312 ], [ -95.420290020095536, 29.841016212285432 ], [ -95.420200019869043, 29.841020212238455 ], [ -95.41981502009952, 29.841022212169609 ], [ -95.419422019094213, 29.841025212310583 ], [ -95.419049019160965, 29.841029212041537 ], [ -95.41897001954311, 29.841033211557892 ], [ -95.417968019045119, 29.841047211577138 ], [ -95.416424019318711, 29.841073212398218 ], [ -95.41179001768208, 29.841126212457407 ], [ -95.410912017480442, 29.841154212633377 ], [ -95.410917017775986, 29.84140821263631 ], [ -95.410914017811322, 29.841665211889381 ], [ -95.410915017152789, 29.841743212775487 ], [ -95.410959018027256, 29.843678212521688 ], [ -95.410969017678923, 29.844118213005824 ], [ -95.410982017876776, 29.845442212770596 ], [ -95.411014017289531, 29.846426213552533 ], [ -95.411153018064383, 29.847164213170128 ], [ -95.411254017802847, 29.847698213168766 ], [ -95.411339017855312, 29.848091213259096 ], [ -95.411641017514683, 29.849305213446314 ], [ -95.411752018438932, 29.849684213803958 ], [ -95.411802017854356, 29.849884213752002 ], [ -95.412082018370356, 29.850999213935054 ], [ -95.412137018408956, 29.851283214591049 ], [ -95.412353018441877, 29.852391214722637 ], [ -95.412424018073651, 29.852888214659487 ], [ -95.412460018842467, 29.853359214938159 ], [ -95.412502018811495, 29.854861214844245 ], [ -95.412512018532126, 29.855227214896786 ], [ -95.412513018708495, 29.855978215254424 ], [ -95.412515018236434, 29.857125215369866 ], [ -95.41254301891783, 29.857515215560014 ], [ -95.412573018168871, 29.85874121571003 ], [ -95.412597018806096, 29.859740215954247 ], [ -95.412615018546035, 29.860696216580816 ], [ -95.412639019094954, 29.862181216085357 ], [ -95.412645018480745, 29.863174216912594 ], [ -95.412636018536858, 29.864181216822061 ], [ -95.412686019399544, 29.865558217342969 ], [ -95.41273401865115, 29.866789217809792 ], [ -95.412738019484024, 29.867234217352976 ], [ -95.412757019470178, 29.869187217620564 ], [ -95.412965018883085, 29.869110218244767 ], [ -95.414257019463193, 29.868612217840745 ], [ -95.414612019147214, 29.868491217630154 ], [ -95.414814019541993, 29.868422217558134 ], [ -95.416161020154547, 29.867935217134814 ], [ -95.416717019673072, 29.867726217288208 ], [ -95.418184020220977, 29.867194217513042 ], [ -95.419194020440017, 29.866835216914531 ], [ -95.421835021523549, 29.865873216979168 ], [ -95.422343021623249, 29.865693216855927 ], [ -95.423157021331036, 29.865396216660976 ], [ -95.423340022242641, 29.86536121649074 ], [ -95.4239230218204, 29.865131216314037 ], [ -95.424694022424603, 29.864835217009109 ], [ -95.425094022467405, 29.86469921669531 ], [ -95.426284022348767, 29.86428321673764 ], [ -95.426473022970569, 29.864216216185863 ], [ -95.42717402240666, 29.86396721607067 ], [ -95.427845022835186, 29.863720216124321 ], [ -95.428177023195119, 29.863594215776235 ], [ -95.429202022838481, 29.863591216437452 ], [ -95.429424022860488, 29.863589216331388 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 185, "Tract": "48201531500", "Area_SqMi": 0.73643225623731345, "total_2009": 911, "total_2010": 718, "total_2011": 712, "total_2012": 807, "total_2013": 760, "total_2014": 589, "total_2015": 610, "total_2016": 666, "total_2017": 818, "total_2018": 940, "total_2019": 1052, "total_2020": 1015, "age1": 337, "age2": 614, "age3": 266, "earn1": 317, "earn2": 472, "earn3": 428, "naics_s01": 0, "naics_s02": 37, "naics_s03": 0, "naics_s04": 149, "naics_s05": 24, "naics_s06": 14, "naics_s07": 153, "naics_s08": 1, "naics_s09": 9, "naics_s10": 25, "naics_s11": 0, "naics_s12": 24, "naics_s13": 0, "naics_s14": 405, "naics_s15": 6, "naics_s16": 77, "naics_s17": 3, "naics_s18": 256, "naics_s19": 34, "naics_s20": 0, "race1": 864, "race2": 265, "race3": 10, "race4": 60, "race5": 1, "race6": 17, "ethnicity1": 771, "ethnicity2": 446, "edu1": 237, "edu2": 267, "edu3": 248, "edu4": 128, "Shape_Length": 22296.680572157038, "Shape_Area": 20530470.887492962, "total_2021": 1154, "total_2022": 1217 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.492547037933605, 29.841432209568595 ], [ -95.492740038468199, 29.841431209629 ], [ -95.491754038537067, 29.840667209353217 ], [ -95.491096038380746, 29.840096209228687 ], [ -95.490882037762091, 29.839910209074056 ], [ -95.490841037860889, 29.839870209070597 ], [ -95.490055037628878, 29.839114209443835 ], [ -95.48918603731147, 29.838318208533465 ], [ -95.488863036978032, 29.838029208471283 ], [ -95.488663037562901, 29.837855208477851 ], [ -95.486342036789935, 29.835702208198374 ], [ -95.483867035734079, 29.833407208179587 ], [ -95.483579035579098, 29.833140207938971 ], [ -95.483389035980807, 29.833119208430666 ], [ -95.483241035967097, 29.833098208022118 ], [ -95.482870035563508, 29.833047208177547 ], [ -95.482541035030906, 29.833038208547606 ], [ -95.482034034764112, 29.833000208325135 ], [ -95.481100035355809, 29.832966208168479 ], [ -95.479300034981733, 29.833002208141504 ], [ -95.478595034093587, 29.83300420854302 ], [ -95.476924034246693, 29.832995208029647 ], [ -95.474495033834813, 29.833011208224647 ], [ -95.472922032568917, 29.832997208214149 ], [ -95.472167032720634, 29.833003208665136 ], [ -95.471787032411086, 29.832989208748693 ], [ -95.471469032612248, 29.832930208790319 ], [ -95.470421032791066, 29.832645208018238 ], [ -95.469877032474727, 29.832513208490827 ], [ -95.469616031796605, 29.832455208137414 ], [ -95.46854103140754, 29.832425208493252 ], [ -95.466496031552936, 29.832421208667981 ], [ -95.463077030074061, 29.832516208443288 ], [ -95.462845030010186, 29.832536208232732 ], [ -95.462797030699122, 29.832535208375631 ], [ -95.465272031466725, 29.836913209890408 ], [ -95.465911031711343, 29.838007209857707 ], [ -95.466521031512258, 29.839097209640371 ], [ -95.467247031867984, 29.840309210278182 ], [ -95.467599031682767, 29.840968209840682 ], [ -95.469070032098841, 29.840960210483562 ], [ -95.469321032629267, 29.840971210157743 ], [ -95.471110032868538, 29.840945209930542 ], [ -95.473202033473797, 29.840960210422374 ], [ -95.473860033076775, 29.840900210016322 ], [ -95.47411803338521, 29.840841209614965 ], [ -95.474745033796836, 29.840669209601085 ], [ -95.475095033862459, 29.840556210129037 ], [ -95.476089034575082, 29.840364209559123 ], [ -95.478153034314872, 29.840357210161727 ], [ -95.478887034359531, 29.840368209878708 ], [ -95.479742034745641, 29.840366209629721 ], [ -95.480711035526937, 29.84035020925117 ], [ -95.482229035880991, 29.840362210015162 ], [ -95.482339035347636, 29.840364209921542 ], [ -95.483171035426636, 29.840339209498104 ], [ -95.483557036465015, 29.840328209334377 ], [ -95.48467203634938, 29.840359209694284 ], [ -95.484830035909425, 29.840374209740194 ], [ -95.484990036403758, 29.840400209900302 ], [ -95.485759036671794, 29.840584209582467 ], [ -95.486707036587703, 29.840855209393119 ], [ -95.486759037111511, 29.84087020932613 ], [ -95.486854036823303, 29.840897209511258 ], [ -95.487952037647148, 29.841217209173788 ], [ -95.488875037424847, 29.841486209940769 ], [ -95.489407038037683, 29.841462209411631 ], [ -95.489889037635237, 29.841464209450301 ], [ -95.489974037690757, 29.841474209336429 ], [ -95.490228037268153, 29.841475209389948 ], [ -95.490871037716957, 29.841466209402729 ], [ -95.490954038355625, 29.841465209414803 ], [ -95.491100038085648, 29.841462209369578 ], [ -95.492025038157891, 29.841443209350395 ], [ -95.492384038011451, 29.841435209729134 ], [ -95.492547037933605, 29.841432209568595 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 186, "Tract": "48201531600", "Area_SqMi": 0.91759512286051037, "total_2009": 1366, "total_2010": 920, "total_2011": 1012, "total_2012": 1084, "total_2013": 1255, "total_2014": 1105, "total_2015": 1300, "total_2016": 1330, "total_2017": 1197, "total_2018": 1117, "total_2019": 1096, "total_2020": 1106, "age1": 189, "age2": 611, "age3": 284, "earn1": 143, "earn2": 274, "earn3": 667, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 182, "naics_s05": 195, "naics_s06": 137, "naics_s07": 15, "naics_s08": 0, "naics_s09": 53, "naics_s10": 81, "naics_s11": 18, "naics_s12": 15, "naics_s13": 0, "naics_s14": 122, "naics_s15": 0, "naics_s16": 67, "naics_s17": 99, "naics_s18": 70, "naics_s19": 30, "naics_s20": 0, "race1": 865, "race2": 127, "race3": 10, "race4": 69, "race5": 1, "race6": 12, "ethnicity1": 697, "ethnicity2": 387, "edu1": 204, "edu2": 224, "edu3": 253, "edu4": 214, "Shape_Length": 21820.194227037147, "Shape_Area": 25580981.545602646, "total_2021": 1012, "total_2022": 1084 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.468304032622598, 29.842303210117535 ], [ -95.46793903249619, 29.841639210283581 ], [ -95.467599031682767, 29.840968209840682 ], [ -95.467247031867984, 29.840309210278182 ], [ -95.466521031512258, 29.839097209640371 ], [ -95.465911031711343, 29.838007209857707 ], [ -95.465272031466725, 29.836913209890408 ], [ -95.462797030699122, 29.832535208375631 ], [ -95.462456030073696, 29.832528208630091 ], [ -95.461500030334619, 29.832541208630754 ], [ -95.460194029658652, 29.832505208693263 ], [ -95.458027029122363, 29.832522208442917 ], [ -95.455682028710299, 29.832546209008701 ], [ -95.453225028367385, 29.832589208741545 ], [ -95.45313002781667, 29.832590208997988 ], [ -95.453044027453259, 29.832590208846685 ], [ -95.452118027401681, 29.832592209507993 ], [ -95.451306027653985, 29.832611208762184 ], [ -95.451176027042479, 29.832618209060133 ], [ -95.450741027244547, 29.832617208999 ], [ -95.449948026685149, 29.832652209172707 ], [ -95.449392027186491, 29.83266320880826 ], [ -95.449239026358356, 29.832663209420122 ], [ -95.449107026681247, 29.832668209619378 ], [ -95.448230026570414, 29.832680209412249 ], [ -95.447854026410198, 29.832689209504892 ], [ -95.447262026173874, 29.832707209660686 ], [ -95.446904025948129, 29.832713208865083 ], [ -95.446313026076936, 29.832724208891037 ], [ -95.446047026043985, 29.832722209504411 ], [ -95.445420025768499, 29.832740209049337 ], [ -95.444800025286284, 29.832757209709445 ], [ -95.444827025678748, 29.833189209194099 ], [ -95.444730025333584, 29.833696209718898 ], [ -95.444436026198801, 29.834290209412014 ], [ -95.444339025441778, 29.834450209984663 ], [ -95.444141025917205, 29.834731209708021 ], [ -95.443667025889042, 29.835294209547666 ], [ -95.443130025672303, 29.835972209687991 ], [ -95.44276502496092, 29.836423209944947 ], [ -95.442583025236431, 29.836701209970332 ], [ -95.442336024862641, 29.837171210268721 ], [ -95.441954025777392, 29.838347210167971 ], [ -95.44194802541368, 29.838468210825084 ], [ -95.441930024777719, 29.838558210926607 ], [ -95.441903024840045, 29.838686210310026 ], [ -95.44185902553663, 29.838771210533015 ], [ -95.441858025504018, 29.838796210282421 ], [ -95.441858025722212, 29.838818210959808 ], [ -95.44185802517805, 29.839162210842296 ], [ -95.441866025327741, 29.839847211240418 ], [ -95.441862025123982, 29.841101211347357 ], [ -95.441865025063109, 29.841618211545587 ], [ -95.441872025456476, 29.842420211482501 ], [ -95.446438026573432, 29.842378211090484 ], [ -95.447127026463249, 29.842372210873769 ], [ -95.448602027536694, 29.842365211120455 ], [ -95.454964029174349, 29.842304210570163 ], [ -95.454964028963843, 29.842360211202667 ], [ -95.456974029506227, 29.842336211215791 ], [ -95.458028029481866, 29.842341211030551 ], [ -95.45854502920443, 29.842342210766606 ], [ -95.458657029388519, 29.842342210456241 ], [ -95.45873702964542, 29.842342210825358 ], [ -95.459000029383148, 29.842343210652146 ], [ -95.461032030461965, 29.842335210785748 ], [ -95.463042031041269, 29.842315210618221 ], [ -95.465069030921839, 29.842302210358021 ], [ -95.467092031959055, 29.842301210792314 ], [ -95.468304032622598, 29.842303210117535 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 187, "Tract": "48201531700", "Area_SqMi": 0.71904131182906728, "total_2009": 1082, "total_2010": 1189, "total_2011": 1196, "total_2012": 1212, "total_2013": 1355, "total_2014": 1367, "total_2015": 1285, "total_2016": 1356, "total_2017": 1415, "total_2018": 1196, "total_2019": 1145, "total_2020": 1177, "age1": 294, "age2": 685, "age3": 279, "earn1": 194, "earn2": 413, "earn3": 651, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 419, "naics_s05": 98, "naics_s06": 33, "naics_s07": 297, "naics_s08": 0, "naics_s09": 0, "naics_s10": 36, "naics_s11": 0, "naics_s12": 38, "naics_s13": 0, "naics_s14": 14, "naics_s15": 13, "naics_s16": 142, "naics_s17": 0, "naics_s18": 44, "naics_s19": 122, "naics_s20": 0, "race1": 951, "race2": 217, "race3": 7, "race4": 69, "race5": 2, "race6": 12, "ethnicity1": 787, "ethnicity2": 471, "edu1": 201, "edu2": 275, "edu3": 333, "edu4": 155, "Shape_Length": 18386.087933043425, "Shape_Area": 20045641.122289889, "total_2021": 1283, "total_2022": 1258 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.444827025678748, 29.833189209194099 ], [ -95.444800025286284, 29.832757209709445 ], [ -95.443781025784759, 29.832753209344411 ], [ -95.443676025196254, 29.83274120972435 ], [ -95.443595024945893, 29.832738209415659 ], [ -95.443208025538397, 29.832671209326179 ], [ -95.442881025424555, 29.832580209246135 ], [ -95.442435024837735, 29.832415209255274 ], [ -95.442217024616752, 29.832302209232008 ], [ -95.44197502529957, 29.832164209154278 ], [ -95.44164502460508, 29.831949209618838 ], [ -95.440884024890465, 29.831465209113066 ], [ -95.440129024529298, 29.830967209136922 ], [ -95.439348024426181, 29.830490208999699 ], [ -95.438594024019991, 29.829992209248676 ], [ -95.437819023976374, 29.829519208765245 ], [ -95.437431024230619, 29.829269208594667 ], [ -95.437047023297296, 29.829023209248259 ], [ -95.436247023680579, 29.828569208662998 ], [ -95.435780023575106, 29.828384209133148 ], [ -95.435497023009802, 29.828317209192651 ], [ -95.435059022960047, 29.82824620880314 ], [ -95.434505022647187, 29.828227208406808 ], [ -95.433486022847489, 29.828239209021813 ], [ -95.432835022644639, 29.828253208899515 ], [ -95.431184022283531, 29.82827720845119 ], [ -95.429628021188577, 29.828290209350929 ], [ -95.429648021462327, 29.829814208849562 ], [ -95.429646021651891, 29.830078209440117 ], [ -95.429653021443727, 29.830635208991264 ], [ -95.429675021481586, 29.831462209153091 ], [ -95.429679021677828, 29.832283209336108 ], [ -95.429695021949968, 29.83310521030565 ], [ -95.429702021759326, 29.833933210424295 ], [ -95.429712021772218, 29.834760210662232 ], [ -95.429730021859314, 29.835570210483255 ], [ -95.429743022435872, 29.836408210228949 ], [ -95.429735021997061, 29.836814210573984 ], [ -95.429728022214931, 29.837259210452039 ], [ -95.429630022025961, 29.837664210905913 ], [ -95.4294750217597, 29.838066210593933 ], [ -95.429133021920904, 29.838731211341759 ], [ -95.428934021717808, 29.839141211286641 ], [ -95.428838021523845, 29.839693210927297 ], [ -95.428850022101614, 29.841048211314448 ], [ -95.428860021590438, 29.841916211984714 ], [ -95.428861021604035, 29.841990211922511 ], [ -95.428845022333448, 29.842460211780296 ], [ -95.428989022646945, 29.842460211908495 ], [ -95.429601022285254, 29.842458212259913 ], [ -95.438272024449532, 29.842437211816474 ], [ -95.441733024881557, 29.842418211390306 ], [ -95.441872025456476, 29.842420211482501 ], [ -95.441865025063109, 29.841618211545587 ], [ -95.441862025123982, 29.841101211347357 ], [ -95.441866025327741, 29.839847211240418 ], [ -95.44185802517805, 29.839162210842296 ], [ -95.441858025722212, 29.838818210959808 ], [ -95.441858025504018, 29.838796210282421 ], [ -95.44185902553663, 29.838771210533015 ], [ -95.441903024840045, 29.838686210310026 ], [ -95.441930024777719, 29.838558210926607 ], [ -95.44194802541368, 29.838468210825084 ], [ -95.441954025777392, 29.838347210167971 ], [ -95.442336024862641, 29.837171210268721 ], [ -95.442583025236431, 29.836701209970332 ], [ -95.44276502496092, 29.836423209944947 ], [ -95.443130025672303, 29.835972209687991 ], [ -95.443667025889042, 29.835294209547666 ], [ -95.444141025917205, 29.834731209708021 ], [ -95.444339025441778, 29.834450209984663 ], [ -95.444436026198801, 29.834290209412014 ], [ -95.444730025333584, 29.833696209718898 ], [ -95.444827025678748, 29.833189209194099 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 188, "Tract": "48201531800", "Area_SqMi": 1.2572170436730685, "total_2009": 468, "total_2010": 240, "total_2011": 230, "total_2012": 277, "total_2013": 268, "total_2014": 308, "total_2015": 307, "total_2016": 224, "total_2017": 199, "total_2018": 249, "total_2019": 291, "total_2020": 276, "age1": 44, "age2": 190, "age3": 91, "earn1": 31, "earn2": 86, "earn3": 208, "naics_s01": 10, "naics_s02": 0, "naics_s03": 0, "naics_s04": 72, "naics_s05": 178, "naics_s06": 1, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 8, "naics_s12": 17, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 0, "naics_s17": 1, "naics_s18": 5, "naics_s19": 0, "naics_s20": 0, "race1": 238, "race2": 54, "race3": 6, "race4": 24, "race5": 0, "race6": 3, "ethnicity1": 205, "ethnicity2": 120, "edu1": 66, "edu2": 82, "edu3": 71, "edu4": 62, "Shape_Length": 25841.925014026696, "Shape_Area": 35049059.42913001, "total_2021": 294, "total_2022": 325 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446410027050234, 29.863483215889474 ], [ -95.44641802737074, 29.863374215237005 ], [ -95.446407027386726, 29.862822215778493 ], [ -95.446389027814675, 29.862588215533993 ], [ -95.446335027545217, 29.862393215120342 ], [ -95.446260027805465, 29.862209215475715 ], [ -95.446106027215862, 29.861892215512057 ], [ -95.445966027525571, 29.861588214860852 ], [ -95.445871026852998, 29.861353214890684 ], [ -95.445814027576418, 29.86117821530555 ], [ -95.445781027401992, 29.861009214980651 ], [ -95.445773027096848, 29.860879215029652 ], [ -95.445760027245925, 29.86079321537883 ], [ -95.445703027211096, 29.860032214653536 ], [ -95.445668027470589, 29.859611215076107 ], [ -95.445660027356297, 29.859180214963413 ], [ -95.445649026805299, 29.858321214677527 ], [ -95.445634027570222, 29.857880214698085 ], [ -95.445084027101331, 29.857882214552454 ], [ -95.444572026774239, 29.857883214721639 ], [ -95.443683026186505, 29.857889214714291 ], [ -95.442813025920117, 29.857891214949628 ], [ -95.442807026069687, 29.85768221409603 ], [ -95.442787026111006, 29.854586213459097 ], [ -95.442784026609573, 29.854087213815738 ], [ -95.442743026203757, 29.85143821301136 ], [ -95.442738026170957, 29.850173212803814 ], [ -95.442738026331639, 29.849810212982522 ], [ -95.442738026103896, 29.849552212829657 ], [ -95.442737025959403, 29.848784212570635 ], [ -95.442738025529394, 29.848751212910159 ], [ -95.442751026293465, 29.848137212555649 ], [ -95.442734025864084, 29.846896212220372 ], [ -95.442748025900428, 29.846650212618869 ], [ -95.442728026171068, 29.846342212401691 ], [ -95.44268302539615, 29.846081212196495 ], [ -95.442537025231815, 29.845608211967324 ], [ -95.442508026128522, 29.845502211809436 ], [ -95.442446026106893, 29.845376212286062 ], [ -95.442268025133203, 29.845011212304058 ], [ -95.442131025230708, 29.844749211749296 ], [ -95.442052025816253, 29.844573212198757 ], [ -95.441949025519492, 29.844239211810827 ], [ -95.441901025853326, 29.84401621157269 ], [ -95.441871025754367, 29.843540211236149 ], [ -95.441870025173245, 29.843521211461614 ], [ -95.441872025456476, 29.842420211482501 ], [ -95.441733024881557, 29.842418211390306 ], [ -95.438272024449532, 29.842437211816474 ], [ -95.429601022285254, 29.842458212259913 ], [ -95.428989022646945, 29.842460211908495 ], [ -95.428845022333448, 29.842460211780296 ], [ -95.428854022234376, 29.843712212287766 ], [ -95.428857022628435, 29.844117212153417 ], [ -95.428906022286583, 29.845767212221226 ], [ -95.428943022066235, 29.846989212522001 ], [ -95.428943022497876, 29.84700421242994 ], [ -95.428981022866637, 29.848316212943374 ], [ -95.42899502284186, 29.848768213435164 ], [ -95.429016022805655, 29.84943221291983 ], [ -95.429027022046981, 29.849814213024821 ], [ -95.429078022754126, 29.851429213316585 ], [ -95.429101023138273, 29.853503214348532 ], [ -95.429106022340335, 29.853724214099291 ], [ -95.429108023110885, 29.854261214278694 ], [ -95.429111022656144, 29.85467821409809 ], [ -95.429121022386866, 29.855447214496689 ], [ -95.42913002282981, 29.855846214874738 ], [ -95.429146022730947, 29.856960215131537 ], [ -95.429160022458831, 29.857780215148356 ], [ -95.429180022509115, 29.859546215756811 ], [ -95.429190023004395, 29.860657215324096 ], [ -95.429184023176362, 29.861302215301524 ], [ -95.429186023155495, 29.862138216004947 ], [ -95.429386022986492, 29.863079216493233 ], [ -95.429424022860488, 29.863589216331388 ], [ -95.429542023421831, 29.863588216090157 ], [ -95.431049024107523, 29.863575216083685 ], [ -95.432774023886211, 29.863554216443209 ], [ -95.433827024837981, 29.863555215611967 ], [ -95.435239024875415, 29.863543216326992 ], [ -95.435425024950248, 29.863539216069455 ], [ -95.436543024832005, 29.863529215884096 ], [ -95.436709025036791, 29.863527216195923 ], [ -95.437826025208636, 29.863518215883825 ], [ -95.439077025150326, 29.863506216010617 ], [ -95.439693026246246, 29.863499215819857 ], [ -95.440397025788513, 29.86350021562334 ], [ -95.440601025860715, 29.863500216020331 ], [ -95.441528026583114, 29.863499215694411 ], [ -95.442314026145226, 29.863493215546733 ], [ -95.443106026503244, 29.863490215885715 ], [ -95.443778026616357, 29.86349321524337 ], [ -95.443826027274426, 29.863488215508283 ], [ -95.443890026803047, 29.863487216090267 ], [ -95.444683027459661, 29.86348521569408 ], [ -95.446303027938228, 29.863483215425216 ], [ -95.446410027050234, 29.863483215889474 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 189, "Tract": "48201531900", "Area_SqMi": 1.6821194566828594, "total_2009": 264, "total_2010": 420, "total_2011": 527, "total_2012": 517, "total_2013": 671, "total_2014": 859, "total_2015": 871, "total_2016": 604, "total_2017": 713, "total_2018": 850, "total_2019": 779, "total_2020": 685, "age1": 101, "age2": 331, "age3": 147, "earn1": 89, "earn2": 203, "earn3": 287, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 104, "naics_s05": 64, "naics_s06": 180, "naics_s07": 30, "naics_s08": 14, "naics_s09": 0, "naics_s10": 2, "naics_s11": 2, "naics_s12": 8, "naics_s13": 0, "naics_s14": 17, "naics_s15": 0, "naics_s16": 154, "naics_s17": 0, "naics_s18": 4, "naics_s19": 0, "naics_s20": 0, "race1": 364, "race2": 183, "race3": 7, "race4": 19, "race5": 5, "race6": 1, "ethnicity1": 362, "ethnicity2": 217, "edu1": 130, "edu2": 131, "edu3": 152, "edu4": 65, "Shape_Length": 30076.255842082821, "Shape_Area": 46894611.476095095, "total_2021": 586, "total_2022": 579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.466852032210866, 29.861901214873768 ], [ -95.466933032405521, 29.861824214226527 ], [ -95.466716032226174, 29.861619214163238 ], [ -95.466524032544427, 29.861347214863073 ], [ -95.465895032779599, 29.86025421438605 ], [ -95.465194031865295, 29.85960821425553 ], [ -95.464616032183926, 29.859206213725962 ], [ -95.464480031944916, 29.859144214303363 ], [ -95.464090032272566, 29.858967214036056 ], [ -95.464002032317481, 29.858927214402875 ], [ -95.463048031371613, 29.858586213609417 ], [ -95.462365031256851, 29.858343213940653 ], [ -95.462060030968189, 29.858110214210143 ], [ -95.461923031629667, 29.857850213485868 ], [ -95.461891031303978, 29.85767321430362 ], [ -95.462004031282078, 29.85733421351452 ], [ -95.462903031601002, 29.856465213279051 ], [ -95.463269031180445, 29.856111213918055 ], [ -95.464560031995475, 29.85485921359718 ], [ -95.464598032178117, 29.854576213413722 ], [ -95.464568031481036, 29.854376212798115 ], [ -95.464551032197221, 29.854258213015974 ], [ -95.464363031932464, 29.8539792130987 ], [ -95.463384031390021, 29.853540212765569 ], [ -95.463137031451055, 29.853354212745508 ], [ -95.463036031540284, 29.853199213286079 ], [ -95.46298903103046, 29.852989213216446 ], [ -95.463016031196375, 29.852634212690958 ], [ -95.463238030900598, 29.852297213079009 ], [ -95.463655031675955, 29.851909212724838 ], [ -95.463736031598032, 29.851671212678912 ], [ -95.463710031609793, 29.851388212877957 ], [ -95.463670031724064, 29.851328212610632 ], [ -95.463503031499343, 29.85108321222808 ], [ -95.463417031646244, 29.851016212235198 ], [ -95.461989030588398, 29.849895211961393 ], [ -95.46175903068054, 29.849714211976167 ], [ -95.461713030467436, 29.849678212303786 ], [ -95.461395031230978, 29.849399212197515 ], [ -95.461209030208423, 29.849165212072567 ], [ -95.461037030628063, 29.84868721170055 ], [ -95.460971030328821, 29.848301212405946 ], [ -95.461036030494697, 29.847943212120207 ], [ -95.461117030687447, 29.847491211606414 ], [ -95.461056030635575, 29.847068212080508 ], [ -95.460848030262696, 29.84664221158771 ], [ -95.46066803084787, 29.846411211985515 ], [ -95.460298030538908, 29.845936211065837 ], [ -95.460182029830136, 29.845472211651821 ], [ -95.460021030332143, 29.844826210888961 ], [ -95.459833030200826, 29.844394211155137 ], [ -95.458743029396231, 29.842759210807248 ], [ -95.458657029388519, 29.842342210456241 ], [ -95.45854502920443, 29.842342210766606 ], [ -95.458028029481866, 29.842341211030551 ], [ -95.456974029506227, 29.842336211215791 ], [ -95.454964028963843, 29.842360211202667 ], [ -95.454964029174349, 29.842304210570163 ], [ -95.448602027536694, 29.842365211120455 ], [ -95.447127026463249, 29.842372210873769 ], [ -95.446438026573432, 29.842378211090484 ], [ -95.441872025456476, 29.842420211482501 ], [ -95.441870025173245, 29.843521211461614 ], [ -95.441871025754367, 29.843540211236149 ], [ -95.441901025853326, 29.84401621157269 ], [ -95.441949025519492, 29.844239211810827 ], [ -95.442052025816253, 29.844573212198757 ], [ -95.442131025230708, 29.844749211749296 ], [ -95.442268025133203, 29.845011212304058 ], [ -95.442446026106893, 29.845376212286062 ], [ -95.442508026128522, 29.845502211809436 ], [ -95.442537025231815, 29.845608211967324 ], [ -95.44268302539615, 29.846081212196495 ], [ -95.442728026171068, 29.846342212401691 ], [ -95.442748025900428, 29.846650212618869 ], [ -95.442734025864084, 29.846896212220372 ], [ -95.442751026293465, 29.848137212555649 ], [ -95.442738025529394, 29.848751212910159 ], [ -95.442737025959403, 29.848784212570635 ], [ -95.442738026103896, 29.849552212829657 ], [ -95.442738026331639, 29.849810212982522 ], [ -95.442738026170957, 29.850173212803814 ], [ -95.442743026203757, 29.85143821301136 ], [ -95.442784026609573, 29.854087213815738 ], [ -95.442787026111006, 29.854586213459097 ], [ -95.442807026069687, 29.85768221409603 ], [ -95.442813025920117, 29.857891214949628 ], [ -95.443683026186505, 29.857889214714291 ], [ -95.444572026774239, 29.857883214721639 ], [ -95.445084027101331, 29.857882214552454 ], [ -95.445634027570222, 29.857880214698085 ], [ -95.445649026805299, 29.858321214677527 ], [ -95.445660027356297, 29.859180214963413 ], [ -95.445668027470589, 29.859611215076107 ], [ -95.445703027211096, 29.860032214653536 ], [ -95.445760027245925, 29.86079321537883 ], [ -95.445773027096848, 29.860879215029652 ], [ -95.445781027401992, 29.861009214980651 ], [ -95.445814027576418, 29.86117821530555 ], [ -95.445871026852998, 29.861353214890684 ], [ -95.445966027525571, 29.861588214860852 ], [ -95.446106027215862, 29.861892215512057 ], [ -95.446260027805465, 29.862209215475715 ], [ -95.446335027545217, 29.862393215120342 ], [ -95.446389027814675, 29.862588215533993 ], [ -95.446407027386726, 29.862822215778493 ], [ -95.44641802737074, 29.863374215237005 ], [ -95.446410027050234, 29.863483215889474 ], [ -95.446736027665352, 29.863481215511236 ], [ -95.446969027734127, 29.863475215606769 ], [ -95.447231028105875, 29.863463215559293 ], [ -95.447549027870537, 29.863417215175737 ], [ -95.447870027670817, 29.863363215037808 ], [ -95.448862028592913, 29.86318221498577 ], [ -95.449099028668485, 29.863149215225466 ], [ -95.450492029042806, 29.863177215683162 ], [ -95.451548028463066, 29.863180215003517 ], [ -95.451868028583576, 29.863218215432838 ], [ -95.452102028782662, 29.863246214911847 ], [ -95.452824029496682, 29.863357215401237 ], [ -95.453318029700043, 29.863422215672632 ], [ -95.453830029945337, 29.863462215358034 ], [ -95.455657030364051, 29.863467215411156 ], [ -95.458841030230516, 29.863457215073304 ], [ -95.459263030399086, 29.86345521471776 ], [ -95.459500030621953, 29.8634542152225 ], [ -95.460444030702618, 29.863456215497287 ], [ -95.461562031645656, 29.863453215267135 ], [ -95.462064031417427, 29.863440214923383 ], [ -95.462944031889293, 29.863437215022163 ], [ -95.464580032077606, 29.863388214582482 ], [ -95.46627503242614, 29.863352214490181 ], [ -95.466835032609126, 29.863327214829368 ], [ -95.466827032735011, 29.863144214435575 ], [ -95.466833033222485, 29.863012215052049 ], [ -95.4668590332316, 29.862935214430774 ], [ -95.466839032227682, 29.862198214141571 ], [ -95.466858032834139, 29.861929214134381 ], [ -95.466852032210866, 29.861901214873768 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 190, "Tract": "48201510100", "Area_SqMi": 0.5607878768394875, "total_2009": 8654, "total_2010": 8578, "total_2011": 8352, "total_2012": 8160, "total_2013": 8300, "total_2014": 8722, "total_2015": 9990, "total_2016": 10465, "total_2017": 10519, "total_2018": 10506, "total_2019": 10663, "total_2020": 10793, "age1": 1207, "age2": 7255, "age3": 2994, "earn1": 365, "earn2": 1889, "earn3": 9202, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 39, "naics_s05": 213, "naics_s06": 12, "naics_s07": 174, "naics_s08": 27, "naics_s09": 0, "naics_s10": 114, "naics_s11": 25, "naics_s12": 113, "naics_s13": 1, "naics_s14": 1, "naics_s15": 34, "naics_s16": 5, "naics_s17": 6, "naics_s18": 48, "naics_s19": 61, "naics_s20": 10583, "race1": 6385, "race2": 3976, "race3": 76, "race4": 818, "race5": 17, "race6": 184, "ethnicity1": 8401, "ethnicity2": 3055, "edu1": 1539, "edu2": 2543, "edu3": 3753, "edu4": 2414, "Shape_Length": 17252.528820426171, "Shape_Area": 15633806.208241336, "total_2021": 11331, "total_2022": 11456 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.377232005256829, 29.76930519823625 ], [ -95.377234006000364, 29.768553198124284 ], [ -95.376005005276838, 29.768426198754085 ], [ -95.375818005460332, 29.76840919836895 ], [ -95.375716005354164, 29.768382198736457 ], [ -95.37562100546198, 29.768338198942008 ], [ -95.375631004890494, 29.767634198046689 ], [ -95.375599005255381, 29.767540198477118 ], [ -95.375597005000316, 29.76698819822824 ], [ -95.375596004809339, 29.766248198309292 ], [ -95.375593004933592, 29.76549019829001 ], [ -95.375558005488358, 29.765414197854465 ], [ -95.375551005125345, 29.764720197544964 ], [ -95.375538004784957, 29.764623197674936 ], [ -95.375536004465218, 29.76441819730319 ], [ -95.375558005330504, 29.763955197612916 ], [ -95.375557005029322, 29.763815198025281 ], [ -95.375557005284051, 29.763730197749666 ], [ -95.37556600520648, 29.763663197204718 ], [ -95.375586004933737, 29.763517197828929 ], [ -95.375575004629269, 29.763414197853457 ], [ -95.375580005308578, 29.763238197116763 ], [ -95.375560005239649, 29.762661197473591 ], [ -95.375496004743269, 29.762062197536132 ], [ -95.375395004635038, 29.76148419726724 ], [ -95.375383004895099, 29.761417197332914 ], [ -95.375372004921886, 29.761349197206911 ], [ -95.374717004861367, 29.761421197274007 ], [ -95.374314004614419, 29.761398196888535 ], [ -95.374100004620772, 29.761386196872916 ], [ -95.373890004316834, 29.761335196777697 ], [ -95.373637004039651, 29.761272197047376 ], [ -95.373212004296462, 29.761165197075417 ], [ -95.373142004603835, 29.761283197162868 ], [ -95.373075004161464, 29.761395197138615 ], [ -95.372975004449231, 29.761525197552807 ], [ -95.37282400399701, 29.761697197658627 ], [ -95.372596004594783, 29.761922197462908 ], [ -95.372345003979731, 29.762130197135086 ], [ -95.372309003768663, 29.762160197479492 ], [ -95.372038003953662, 29.762354197321315 ], [ -95.371938003781651, 29.762408197057084 ], [ -95.371660004033558, 29.762559197720783 ], [ -95.370757003818795, 29.762968197423362 ], [ -95.370664003795639, 29.763008197728379 ], [ -95.370349003927871, 29.763146198074057 ], [ -95.37008200341765, 29.763262197454665 ], [ -95.369551003651011, 29.763512197497434 ], [ -95.369435003749373, 29.763567198074732 ], [ -95.369353003823917, 29.763611197358916 ], [ -95.369107003102869, 29.763744197754843 ], [ -95.368974003486215, 29.763816197579178 ], [ -95.368810003704141, 29.763904198260018 ], [ -95.368713003440405, 29.763956198106921 ], [ -95.368476003559522, 29.764078197685091 ], [ -95.368144003369437, 29.764278197637182 ], [ -95.367862003156333, 29.764470197739445 ], [ -95.367549003074885, 29.764791198210979 ], [ -95.367291002396001, 29.765091198165749 ], [ -95.367044003219704, 29.765504198251442 ], [ -95.36669200240668, 29.766214198473836 ], [ -95.366443002720573, 29.766791198196429 ], [ -95.366226002252688, 29.767273198461396 ], [ -95.366171002994335, 29.76739719832668 ], [ -95.366049002192554, 29.767673199057473 ], [ -95.365934003141149, 29.767926199173221 ], [ -95.36549600265009, 29.768877199109184 ], [ -95.365410002428433, 29.769063198702668 ], [ -95.365280002495496, 29.769410199341699 ], [ -95.365165002786256, 29.769717198902914 ], [ -95.365135002966213, 29.769828199227401 ], [ -95.365089002279788, 29.770002199421441 ], [ -95.365075002850276, 29.770080199012259 ], [ -95.365053002343032, 29.770210198946433 ], [ -95.365050002761237, 29.770226199465586 ], [ -95.365042002985987, 29.770557199179965 ], [ -95.365351003089287, 29.771005199844407 ], [ -95.365827002771923, 29.771752199421872 ], [ -95.366032002749961, 29.772107199834949 ], [ -95.366207002990379, 29.772385199733925 ], [ -95.366257002528229, 29.772464199961583 ], [ -95.366807002590889, 29.773422200169367 ], [ -95.366922003408135, 29.773686200363468 ], [ -95.367027002796959, 29.773841199839776 ], [ -95.367438003426798, 29.774452199771702 ], [ -95.367509003577851, 29.774575200319347 ], [ -95.367864003277688, 29.775153200361324 ], [ -95.367966003907441, 29.775320199830134 ], [ -95.368290003565988, 29.775840199911315 ], [ -95.368559003599785, 29.77623220055419 ], [ -95.368828003511311, 29.776563200421744 ], [ -95.369070003343069, 29.776807200711001 ], [ -95.369129004139509, 29.776844200722095 ], [ -95.369203004220751, 29.776901200256649 ], [ -95.369318004271165, 29.77699020049474 ], [ -95.369593003850454, 29.777201200580219 ], [ -95.369895004250537, 29.777393200130316 ], [ -95.370120004385583, 29.777537200435635 ], [ -95.370554003831643, 29.777732200347934 ], [ -95.370999004074577, 29.777896200497231 ], [ -95.371388004993236, 29.778026200658847 ], [ -95.371786004746355, 29.77818820071537 ], [ -95.372231004574189, 29.778291201101304 ], [ -95.372465005092721, 29.778362200792586 ], [ -95.37245900447985, 29.778159200452134 ], [ -95.372450004655477, 29.777829200213979 ], [ -95.372434004515071, 29.777286200786502 ], [ -95.373072004855004, 29.777281200710547 ], [ -95.373608005318687, 29.777314200008348 ], [ -95.374707005092404, 29.777306200209683 ], [ -95.374801005160123, 29.77729320002679 ], [ -95.375937005220322, 29.777293200167129 ], [ -95.375939005279747, 29.77660020032047 ], [ -95.375927005537704, 29.775928200380275 ], [ -95.375915005854282, 29.775227199607198 ], [ -95.3759140051245, 29.775157200050238 ], [ -95.375902005985665, 29.774452199438883 ], [ -95.375889005730514, 29.773705199646564 ], [ -95.375876005881139, 29.772975199530368 ], [ -95.375868005637258, 29.772515199706099 ], [ -95.375866005712425, 29.772377199013963 ], [ -95.375864005479855, 29.772272199631217 ], [ -95.375864005595801, 29.772216199385195 ], [ -95.375864005035993, 29.772159198970488 ], [ -95.375861005402896, 29.771491199325602 ], [ -95.375850005680974, 29.770759199268728 ], [ -95.375841005203284, 29.770012198515925 ], [ -95.376795005662061, 29.770009198598615 ], [ -95.376988006007309, 29.770012198791335 ], [ -95.377214006110435, 29.770010199148384 ], [ -95.37723200535207, 29.769518198587399 ], [ -95.377232005256829, 29.76930519823625 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 191, "Tract": "48201510400", "Area_SqMi": 0.57365588878401996, "total_2009": 857, "total_2010": 972, "total_2011": 1016, "total_2012": 1244, "total_2013": 1337, "total_2014": 1585, "total_2015": 1777, "total_2016": 1970, "total_2017": 1977, "total_2018": 19285, "total_2019": 17656, "total_2020": 15888, "age1": 3236, "age2": 9520, "age3": 4186, "earn1": 4894, "earn2": 5629, "earn3": 6419, "naics_s01": 9, "naics_s02": 706, "naics_s03": 4, "naics_s04": 431, "naics_s05": 186, "naics_s06": 385, "naics_s07": 267, "naics_s08": 247, "naics_s09": 41, "naics_s10": 163, "naics_s11": 145, "naics_s12": 644, "naics_s13": 99, "naics_s14": 2084, "naics_s15": 7438, "naics_s16": 2388, "naics_s17": 50, "naics_s18": 909, "naics_s19": 422, "naics_s20": 324, "race1": 10629, "race2": 3812, "race3": 114, "race4": 2061, "race5": 19, "race6": 307, "ethnicity1": 12809, "ethnicity2": 4133, "edu1": 2355, "edu2": 3220, "edu3": 3713, "edu4": 4418, "Shape_Length": 16321.751422848502, "Shape_Area": 15992544.357432351, "total_2021": 16860, "total_2022": 16942 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.397702012086526, 29.790693202751978 ], [ -95.39768101140919, 29.789775202553852 ], [ -95.397661011368612, 29.788860202329015 ], [ -95.397625011186847, 29.787013201540432 ], [ -95.397587011804234, 29.785160201112205 ], [ -95.397557011923041, 29.783437200957902 ], [ -95.39755901132385, 29.783325201039805 ], [ -95.397524011423286, 29.781896200899794 ], [ -95.397520011763262, 29.78147220055731 ], [ -95.397491010843623, 29.779644199646754 ], [ -95.397454010755979, 29.777799199648765 ], [ -95.397443010656644, 29.776958199460037 ], [ -95.397442011096871, 29.77667319967339 ], [ -95.397248010639345, 29.776683199744749 ], [ -95.396990010725361, 29.776696199847546 ], [ -95.390535009507815, 29.776845200093916 ], [ -95.389932009114958, 29.776853200096333 ], [ -95.389869009240613, 29.776854200184037 ], [ -95.389810009593077, 29.776855199681709 ], [ -95.389746009142442, 29.776856199837809 ], [ -95.388709009234674, 29.776870199826689 ], [ -95.388459008859328, 29.776873199979807 ], [ -95.388111008429405, 29.777227200018533 ], [ -95.38778600845886, 29.777546200239367 ], [ -95.38776600836951, 29.777572200217765 ], [ -95.387550008468821, 29.777843199853148 ], [ -95.387340008761612, 29.778183200281745 ], [ -95.387175008887851, 29.778597200173181 ], [ -95.387130008563261, 29.778788199906483 ], [ -95.387119009051105, 29.778836200083123 ], [ -95.387106008242654, 29.778893199964195 ], [ -95.387100008659132, 29.778915200278991 ], [ -95.387062008169323, 29.779063200124025 ], [ -95.387036009044337, 29.779438200654212 ], [ -95.387061008950482, 29.779810200795069 ], [ -95.387114008419843, 29.780122200527622 ], [ -95.387456008893949, 29.780980200624459 ], [ -95.387592008846582, 29.781255200530822 ], [ -95.387685008515561, 29.781632200520903 ], [ -95.387699008668847, 29.78254520074923 ], [ -95.387719009144689, 29.783465200974184 ], [ -95.387731008558461, 29.784378200939209 ], [ -95.387747009317849, 29.785214201832787 ], [ -95.387749008919755, 29.785300201195788 ], [ -95.387761009315824, 29.785922201671656 ], [ -95.387766008980819, 29.786213201841008 ], [ -95.387773009062101, 29.786635201419166 ], [ -95.387782009557242, 29.787153201701916 ], [ -95.387785008773477, 29.78734020168239 ], [ -95.387789008829174, 29.787627202202813 ], [ -95.387797009304336, 29.788051201766962 ], [ -95.387808008656137, 29.788826202737173 ], [ -95.387812008696017, 29.788991202110136 ], [ -95.387831008758795, 29.789906202666625 ], [ -95.387834009502711, 29.790833203159181 ], [ -95.388417009232541, 29.790822202725149 ], [ -95.389962010091239, 29.790803202932814 ], [ -95.392017009833197, 29.790782202793711 ], [ -95.393102010910582, 29.790762202438174 ], [ -95.394211011403215, 29.79074920263767 ], [ -95.395310010857415, 29.790740202382572 ], [ -95.396408011624843, 29.790721202798405 ], [ -95.397702012086526, 29.790693202751978 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 192, "Tract": "48201510500", "Area_SqMi": 0.67946285101230208, "total_2009": 1602, "total_2010": 1796, "total_2011": 1660, "total_2012": 1712, "total_2013": 1819, "total_2014": 1722, "total_2015": 1715, "total_2016": 1847, "total_2017": 1580, "total_2018": 1609, "total_2019": 1696, "total_2020": 1550, "age1": 692, "age2": 1048, "age3": 371, "earn1": 432, "earn2": 737, "earn3": 942, "naics_s01": 0, "naics_s02": 36, "naics_s03": 0, "naics_s04": 97, "naics_s05": 136, "naics_s06": 63, "naics_s07": 123, "naics_s08": 0, "naics_s09": 52, "naics_s10": 62, "naics_s11": 249, "naics_s12": 182, "naics_s13": 2, "naics_s14": 128, "naics_s15": 25, "naics_s16": 114, "naics_s17": 1, "naics_s18": 795, "naics_s19": 46, "naics_s20": 0, "race1": 1617, "race2": 281, "race3": 22, "race4": 147, "race5": 4, "race6": 40, "ethnicity1": 1286, "ethnicity2": 825, "edu1": 386, "edu2": 374, "edu3": 365, "edu4": 294, "Shape_Length": 17575.373754125809, "Shape_Area": 18942261.373931158, "total_2021": 1735, "total_2022": 2111 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.409903014882914, 29.790511202007913 ], [ -95.409890015264011, 29.789977202164309 ], [ -95.409876014860131, 29.789456201561791 ], [ -95.409861015093554, 29.788771201484078 ], [ -95.409859014771115, 29.788667201477935 ], [ -95.409849014342569, 29.788246201352287 ], [ -95.409827014412414, 29.787610201622538 ], [ -95.4098170146912, 29.78731920103937 ], [ -95.409797015021439, 29.786754201203109 ], [ -95.409787014656757, 29.786301200974005 ], [ -95.409776014929434, 29.785990200539469 ], [ -95.409715014775287, 29.785145201208 ], [ -95.409703014170887, 29.78346120031809 ], [ -95.409662014023752, 29.783329200450382 ], [ -95.409640014160246, 29.78325920085291 ], [ -95.409512014967618, 29.782578200358625 ], [ -95.409344014030339, 29.78196320031379 ], [ -95.409181014047761, 29.781503200032798 ], [ -95.409166014144844, 29.781312199628672 ], [ -95.409190014753861, 29.780940200015916 ], [ -95.409303014203019, 29.780471200123653 ], [ -95.409458014769527, 29.780005200147738 ], [ -95.409550014242242, 29.779753200001117 ], [ -95.409571014571085, 29.77969519943284 ], [ -95.409598014702453, 29.779617199761503 ], [ -95.409637014433187, 29.779502199589114 ], [ -95.409654014146412, 29.779217199382682 ], [ -95.409637013941918, 29.778491199279159 ], [ -95.40963001467955, 29.777993198952576 ], [ -95.409612013760878, 29.777661199509151 ], [ -95.409066014166115, 29.777649199585706 ], [ -95.408355014114932, 29.777615199165961 ], [ -95.407848013924223, 29.777586199003263 ], [ -95.407257013986964, 29.777524198935577 ], [ -95.406629013152326, 29.777443198940318 ], [ -95.406267013473894, 29.777386199669955 ], [ -95.406029013408727, 29.777348199325282 ], [ -95.404352012857657, 29.777031199470567 ], [ -95.403738012797859, 29.776932199619605 ], [ -95.403423013013978, 29.776886199718245 ], [ -95.402965012995537, 29.776820199011734 ], [ -95.402500012564289, 29.776766199158214 ], [ -95.402427012470369, 29.776757199768426 ], [ -95.401784012373469, 29.776693199036256 ], [ -95.401513012090064, 29.776666199745058 ], [ -95.400566012310904, 29.776620199038881 ], [ -95.40036401153084, 29.776616199778548 ], [ -95.400047012248606, 29.776611199047739 ], [ -95.399942012084097, 29.776610199178144 ], [ -95.399810011402039, 29.776607199351975 ], [ -95.399016011845475, 29.776594199817175 ], [ -95.398844011927693, 29.776603199240352 ], [ -95.398713011686368, 29.776609199415976 ], [ -95.397442011096871, 29.77667319967339 ], [ -95.397443010656644, 29.776958199460037 ], [ -95.397454010755979, 29.777799199648765 ], [ -95.397491010843623, 29.779644199646754 ], [ -95.397520011763262, 29.78147220055731 ], [ -95.397524011423286, 29.781896200899794 ], [ -95.39755901132385, 29.783325201039805 ], [ -95.397557011923041, 29.783437200957902 ], [ -95.397587011804234, 29.785160201112205 ], [ -95.397625011186847, 29.787013201540432 ], [ -95.397661011368612, 29.788860202329015 ], [ -95.39768101140919, 29.789775202553852 ], [ -95.397702012086526, 29.790693202751978 ], [ -95.398978012530321, 29.790687202537427 ], [ -95.400084012037382, 29.790663202043419 ], [ -95.401168012509828, 29.790652202023864 ], [ -95.402288012660122, 29.790643202087058 ], [ -95.403362012964038, 29.790624201872017 ], [ -95.404476013946436, 29.790601202213963 ], [ -95.405555013374439, 29.790579201704688 ], [ -95.405627014125031, 29.790578202512886 ], [ -95.405652014104049, 29.790577202111191 ], [ -95.406153013454613, 29.790566202178073 ], [ -95.407018014489921, 29.790559202060518 ], [ -95.407974014683575, 29.790551202283972 ], [ -95.408924014933731, 29.790527201573422 ], [ -95.409903014882914, 29.790511202007913 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 193, "Tract": "48201532600", "Area_SqMi": 1.0337097016171319, "total_2009": 330, "total_2010": 299, "total_2011": 294, "total_2012": 385, "total_2013": 458, "total_2014": 511, "total_2015": 584, "total_2016": 544, "total_2017": 500, "total_2018": 573, "total_2019": 669, "total_2020": 485, "age1": 77, "age2": 190, "age3": 88, "earn1": 78, "earn2": 121, "earn3": 156, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 56, "naics_s05": 95, "naics_s06": 19, "naics_s07": 83, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 15, "naics_s12": 5, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 30, "naics_s17": 2, "naics_s18": 35, "naics_s19": 12, "naics_s20": 0, "race1": 238, "race2": 51, "race3": 2, "race4": 61, "race5": 0, "race6": 3, "ethnicity1": 204, "ethnicity2": 151, "edu1": 90, "edu2": 65, "edu3": 72, "edu4": 51, "Shape_Length": 22877.034001526361, "Shape_Area": 28818057.269249558, "total_2021": 366, "total_2022": 355 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.495694042086726, 29.899686221625199 ], [ -95.495684041445898, 29.898759221428232 ], [ -95.495675041917394, 29.897855220956011 ], [ -95.495668041167235, 29.897224220352911 ], [ -95.495657041692326, 29.89622322074506 ], [ -95.495636041070966, 29.895053220305577 ], [ -95.49562604109353, 29.894464220020279 ], [ -95.495622041365309, 29.894157220570957 ], [ -95.495595041783886, 29.893578220118165 ], [ -95.495456041206168, 29.893354219737027 ], [ -95.495411041805824, 29.89315022007926 ], [ -95.495324041667118, 29.892845219869265 ], [ -95.495273041501449, 29.89268621960732 ], [ -95.495172041297351, 29.892429219428831 ], [ -95.495067040816252, 29.892192220087583 ], [ -95.494813040973526, 29.89168321959221 ], [ -95.494745041476918, 29.891530219520565 ], [ -95.494697040896185, 29.891402219519676 ], [ -95.494681041316369, 29.891309219889678 ], [ -95.494619041169571, 29.890943219858247 ], [ -95.494526041562267, 29.890615219018688 ], [ -95.49445104074519, 29.890102218965389 ], [ -95.494419040563884, 29.889327219293801 ], [ -95.494423040997887, 29.889199219289015 ], [ -95.494427040650152, 29.889079219022431 ], [ -95.494437041461794, 29.888801218861012 ], [ -95.494440041036555, 29.888473219319042 ], [ -95.494365041087718, 29.888370218815691 ], [ -95.493180040868651, 29.886254219000485 ], [ -95.492752040683385, 29.885489218535991 ], [ -95.492313039901461, 29.884706218757024 ], [ -95.49034003933626, 29.884727218091779 ], [ -95.48920903939765, 29.884739218663423 ], [ -95.488489039353851, 29.884746218689088 ], [ -95.488391039198362, 29.884755218795792 ], [ -95.486684038895191, 29.884769218977805 ], [ -95.485820038139792, 29.884769218703234 ], [ -95.485292038560488, 29.88476921857826 ], [ -95.485256038576225, 29.884675218660689 ], [ -95.485240038828593, 29.884221218480096 ], [ -95.485057038034626, 29.884261218782115 ], [ -95.48490103837382, 29.884309218412856 ], [ -95.484610038463572, 29.884410218112841 ], [ -95.484389038170676, 29.884476218800533 ], [ -95.484153038347941, 29.884536218175562 ], [ -95.483789038343417, 29.884611218892122 ], [ -95.48341603766859, 29.88466521826815 ], [ -95.48304403766987, 29.884702218793354 ], [ -95.482683037393628, 29.884724218319558 ], [ -95.482072038030481, 29.884736218539111 ], [ -95.481152037774251, 29.884739218443258 ], [ -95.480860036944591, 29.884743218650552 ], [ -95.480648037288645, 29.884795218839638 ], [ -95.480614036812639, 29.884800219177876 ], [ -95.480368037176007, 29.884801218843464 ], [ -95.479828037409646, 29.884803218367701 ], [ -95.479155037410791, 29.884813218442126 ], [ -95.478916036321579, 29.884817218850067 ], [ -95.478271036604326, 29.884840218476494 ], [ -95.477968036387821, 29.88482221868167 ], [ -95.47788403700055, 29.884817219098366 ], [ -95.476976036568033, 29.884742218652335 ], [ -95.476843036593763, 29.884731219203356 ], [ -95.47612803604396, 29.884596219171854 ], [ -95.475413035792855, 29.884417218558891 ], [ -95.474823035950351, 29.884347219171932 ], [ -95.473908035680864, 29.884312218754651 ], [ -95.47396103566652, 29.884818219355683 ], [ -95.473961035480173, 29.884833218894386 ], [ -95.473964035073095, 29.885005219316589 ], [ -95.473995035874509, 29.885367219002575 ], [ -95.474045035537131, 29.8857072195235 ], [ -95.474097035568903, 29.88595521918397 ], [ -95.474185035224593, 29.88628821928463 ], [ -95.474240035186398, 29.886437219318722 ], [ -95.474365036011463, 29.88675021946921 ], [ -95.474398035637506, 29.8868362196574 ], [ -95.474553035391793, 29.887147219697578 ], [ -95.474651035714047, 29.88731921954324 ], [ -95.47481603638812, 29.887579219292672 ], [ -95.474936035839448, 29.887752219305749 ], [ -95.475127036190514, 29.887999219967764 ], [ -95.475305035642506, 29.888204219858562 ], [ -95.4755790366019, 29.888488220066513 ], [ -95.475780035781398, 29.888674219688681 ], [ -95.475980036588425, 29.888841219966533 ], [ -95.476310036515187, 29.889083219797559 ], [ -95.476550035943006, 29.889244219355252 ], [ -95.477035036242299, 29.889547219488783 ], [ -95.477099036354119, 29.889594219771954 ], [ -95.477159036592283, 29.889632219818814 ], [ -95.477170036483201, 29.889639219507327 ], [ -95.477247036753596, 29.88968022023742 ], [ -95.477390036750322, 29.889773219836808 ], [ -95.477463036231086, 29.889826220247517 ], [ -95.477547036428874, 29.889879219681269 ], [ -95.477827036975171, 29.890068219667693 ], [ -95.478111037179787, 29.890283219774524 ], [ -95.478288036633145, 29.890434219551707 ], [ -95.478450036888788, 29.890584219756899 ], [ -95.478674037220856, 29.890810219794911 ], [ -95.478862037026289, 29.891021220196755 ], [ -95.479012036750888, 29.891209220311694 ], [ -95.479217037052535, 29.891487219858387 ], [ -95.479384037202351, 29.891745220325333 ], [ -95.479543036932697, 29.892026220211047 ], [ -95.479618037638616, 29.892181220156978 ], [ -95.479690036882033, 29.892327219954709 ], [ -95.479735037890464, 29.892433220094414 ], [ -95.479776037306522, 29.892531220145642 ], [ -95.479856037451512, 29.892757219978854 ], [ -95.479881037739744, 29.892828220345148 ], [ -95.479959037303061, 29.893101220368422 ], [ -95.480017037794482, 29.893354220170288 ], [ -95.480069037072781, 29.893696220834265 ], [ -95.480101037762395, 29.893957220626792 ], [ -95.480113038001392, 29.894147220393307 ], [ -95.480122037744209, 29.8946292204811 ], [ -95.480128037715971, 29.894919221143589 ], [ -95.480129037781197, 29.894963220433077 ], [ -95.480125037639297, 29.895066220840267 ], [ -95.480136038036861, 29.896024220666565 ], [ -95.480135037900723, 29.896124220955329 ], [ -95.480142037245145, 29.896308220667041 ], [ -95.480140038056106, 29.896412221253502 ], [ -95.480145037460289, 29.896516221291666 ], [ -95.48015103751392, 29.897331220953188 ], [ -95.480151037630534, 29.897373220886688 ], [ -95.480156037477201, 29.89756922143253 ], [ -95.480163038202321, 29.897775221136548 ], [ -95.480179037463969, 29.897988221877892 ], [ -95.480185037592761, 29.89803322148634 ], [ -95.480208037545211, 29.898207221140247 ], [ -95.480249037740379, 29.898432221545786 ], [ -95.480323037465126, 29.898765221928876 ], [ -95.480385038344323, 29.89907022197125 ], [ -95.480427038311504, 29.89934822130331 ], [ -95.480438037980235, 29.899504221379694 ], [ -95.480441037727886, 29.899755221730985 ], [ -95.480993038222849, 29.899753221892528 ], [ -95.481109038173756, 29.899748221716859 ], [ -95.481232038557664, 29.899750221464892 ], [ -95.482034038383532, 29.899740221969981 ], [ -95.48218703815354, 29.899734221402731 ], [ -95.482530038515719, 29.899745222174982 ], [ -95.482996038538005, 29.899739221314778 ], [ -95.484239038871024, 29.899740221261577 ], [ -95.484537038655802, 29.899724221648562 ], [ -95.484814039293767, 29.899726221544128 ], [ -95.484929039129838, 29.899731221580023 ], [ -95.485073038667593, 29.899724221973308 ], [ -95.485184038947736, 29.899748221484153 ], [ -95.485380039503028, 29.899744221843687 ], [ -95.485828039398541, 29.899732221192941 ], [ -95.485946039114964, 29.899741221623177 ], [ -95.486307039570249, 29.899740221900441 ], [ -95.486563039611525, 29.899749221246385 ], [ -95.486814039047928, 29.899731221459188 ], [ -95.486953039781895, 29.899742221313161 ], [ -95.487092039662485, 29.899742221906017 ], [ -95.487925040024578, 29.899711221748539 ], [ -95.488085040359721, 29.899711221273499 ], [ -95.48837603969173, 29.89970122178061 ], [ -95.48850803989788, 29.89969322120881 ], [ -95.489225040293476, 29.899688221267155 ], [ -95.490090040575637, 29.899690221715741 ], [ -95.490529040856984, 29.899698221631308 ], [ -95.49170804037503, 29.89969922147861 ], [ -95.492442040886189, 29.899702221629848 ], [ -95.492878040887518, 29.899698221117649 ], [ -95.493583041008421, 29.899702221651655 ], [ -95.493724040892062, 29.899707221104958 ], [ -95.4938610413855, 29.89970622103484 ], [ -95.494139041160523, 29.899717221288196 ], [ -95.494274041933551, 29.899713221563864 ], [ -95.494547041765415, 29.899722221060852 ], [ -95.494841041111584, 29.899726221166187 ], [ -95.494908042012227, 29.899727221248046 ], [ -95.495009041301074, 29.899723221690731 ], [ -95.495486041767876, 29.899726220935769 ], [ -95.495577042097466, 29.899708221354608 ], [ -95.495694042086726, 29.899686221625199 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 194, "Tract": "48201530900", "Area_SqMi": 0.77244800396480628, "total_2009": 505, "total_2010": 442, "total_2011": 553, "total_2012": 580, "total_2013": 431, "total_2014": 476, "total_2015": 518, "total_2016": 553, "total_2017": 546, "total_2018": 578, "total_2019": 565, "total_2020": 577, "age1": 111, "age2": 338, "age3": 166, "earn1": 92, "earn2": 166, "earn3": 357, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 35, "naics_s05": 68, "naics_s06": 77, "naics_s07": 94, "naics_s08": 3, "naics_s09": 0, "naics_s10": 2, "naics_s11": 16, "naics_s12": 34, "naics_s13": 2, "naics_s14": 21, "naics_s15": 15, "naics_s16": 62, "naics_s17": 0, "naics_s18": 18, "naics_s19": 167, "naics_s20": 0, "race1": 486, "race2": 60, "race3": 4, "race4": 52, "race5": 2, "race6": 11, "ethnicity1": 416, "ethnicity2": 199, "edu1": 93, "edu2": 113, "edu3": 144, "edu4": 154, "Shape_Length": 19227.344613992846, "Shape_Area": 21534528.292567171, "total_2021": 564, "total_2022": 615 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429735021997061, 29.836814210573984 ], [ -95.429743022435872, 29.836408210228949 ], [ -95.429730021859314, 29.835570210483255 ], [ -95.429712021772218, 29.834760210662232 ], [ -95.429702021759326, 29.833933210424295 ], [ -95.429695021949968, 29.83310521030565 ], [ -95.429679021677828, 29.832283209336108 ], [ -95.429299022190051, 29.832285209879419 ], [ -95.428953022094817, 29.832307209997541 ], [ -95.428675021943633, 29.832333210073934 ], [ -95.428546021529598, 29.832340209694383 ], [ -95.428540021262094, 29.831546209719239 ], [ -95.428547021039464, 29.830919209114978 ], [ -95.428537021605891, 29.83085620972431 ], [ -95.428509021472564, 29.830807209140332 ], [ -95.428471021904073, 29.830784209768442 ], [ -95.428439021293272, 29.830765209071103 ], [ -95.428339021606646, 29.830742209180904 ], [ -95.424957020997965, 29.830761209658089 ], [ -95.42365401994482, 29.830761209863024 ], [ -95.421374019798677, 29.830771209799906 ], [ -95.419510019655974, 29.830773209585402 ], [ -95.417840019126643, 29.83077720964296 ], [ -95.416394018000616, 29.830783210206796 ], [ -95.416316018024901, 29.830789209648341 ], [ -95.416281017925186, 29.830809210005054 ], [ -95.416264018421856, 29.830819210018177 ], [ -95.416239018723331, 29.830860210301676 ], [ -95.416229018493183, 29.830917209928792 ], [ -95.416219018853809, 29.831334210021215 ], [ -95.412773017008632, 29.831377210074116 ], [ -95.410696016544918, 29.831402210575369 ], [ -95.410719017017371, 29.83252421031743 ], [ -95.410761017088689, 29.834666210934625 ], [ -95.410791017242573, 29.835640210972844 ], [ -95.410834017519136, 29.83726521154658 ], [ -95.410843017511496, 29.837940211902328 ], [ -95.410855016842817, 29.838823211891004 ], [ -95.410912017480442, 29.841154212633377 ], [ -95.41179001768208, 29.841126212457407 ], [ -95.416424019318711, 29.841073212398218 ], [ -95.417968019045119, 29.841047211577138 ], [ -95.41897001954311, 29.841033211557892 ], [ -95.419049019160965, 29.841029212041537 ], [ -95.419422019094213, 29.841025212310583 ], [ -95.41981502009952, 29.841022212169609 ], [ -95.420200019869043, 29.841020212238455 ], [ -95.420290020095536, 29.841016212285432 ], [ -95.420772020386892, 29.841014212083312 ], [ -95.421206020010729, 29.841008212270051 ], [ -95.422330020774012, 29.840990211872782 ], [ -95.422973020374883, 29.840985211853919 ], [ -95.423203021017457, 29.84097821139871 ], [ -95.42416202050164, 29.84096521190359 ], [ -95.424617021362678, 29.840966212159717 ], [ -95.425162021435966, 29.840958211561645 ], [ -95.427982021613573, 29.840933211782801 ], [ -95.428272021440705, 29.840959211429716 ], [ -95.428850022101614, 29.841048211314448 ], [ -95.428838021523845, 29.839693210927297 ], [ -95.428934021717808, 29.839141211286641 ], [ -95.429133021920904, 29.838731211341759 ], [ -95.4294750217597, 29.838066210593933 ], [ -95.429630022025961, 29.837664210905913 ], [ -95.429728022214931, 29.837259210452039 ], [ -95.429735021997061, 29.836814210573984 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 195, "Tract": "48201531100", "Area_SqMi": 0.63747920745346354, "total_2009": 1019, "total_2010": 1132, "total_2011": 1039, "total_2012": 1875, "total_2013": 1920, "total_2014": 2303, "total_2015": 2399, "total_2016": 2496, "total_2017": 2513, "total_2018": 2386, "total_2019": 2287, "total_2020": 2047, "age1": 295, "age2": 617, "age3": 263, "earn1": 197, "earn2": 254, "earn3": 724, "naics_s01": 27, "naics_s02": 6, "naics_s03": 0, "naics_s04": 517, "naics_s05": 14, "naics_s06": 85, "naics_s07": 189, "naics_s08": 0, "naics_s09": 0, "naics_s10": 17, "naics_s11": 10, "naics_s12": 80, "naics_s13": 0, "naics_s14": 57, "naics_s15": 28, "naics_s16": 71, "naics_s17": 0, "naics_s18": 48, "naics_s19": 26, "naics_s20": 0, "race1": 964, "race2": 136, "race3": 16, "race4": 42, "race5": 0, "race6": 17, "ethnicity1": 714, "ethnicity2": 461, "edu1": 207, "edu2": 227, "edu3": 246, "edu4": 200, "Shape_Length": 18009.480299293864, "Shape_Area": 17771829.247234825, "total_2021": 1860, "total_2022": 1175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.444800025286284, 29.832757209709445 ], [ -95.444785025589127, 29.832430209010155 ], [ -95.444771025689391, 29.831774209038866 ], [ -95.444750025692571, 29.830951209162471 ], [ -95.444722025274416, 29.830133209072972 ], [ -95.444715025851508, 29.829308208764054 ], [ -95.444690025425587, 29.828481208221742 ], [ -95.444670025332016, 29.827660208045696 ], [ -95.444663025940912, 29.827243208161015 ], [ -95.444656025118633, 29.826831207858945 ], [ -95.444635025337973, 29.826006208265472 ], [ -95.44461502533278, 29.825176208208724 ], [ -95.444593024814054, 29.824353208053509 ], [ -95.444580025015057, 29.823535207736121 ], [ -95.444555025199065, 29.822699207339703 ], [ -95.444531025105817, 29.821874207436444 ], [ -95.44451202526092, 29.82104620687177 ], [ -95.444499024713039, 29.820553206853361 ], [ -95.444495025136291, 29.820424206596879 ], [ -95.444484024918935, 29.819906206941333 ], [ -95.444487024770538, 29.819718206608883 ], [ -95.440859023731164, 29.819689206776371 ], [ -95.436360023450973, 29.819596207282583 ], [ -95.432772022553962, 29.819503207201532 ], [ -95.43027402154533, 29.819448206701946 ], [ -95.429508021392962, 29.819446206775879 ], [ -95.429521021315679, 29.820716207150394 ], [ -95.429528021177816, 29.821269207828443 ], [ -95.42954802093054, 29.822087207518443 ], [ -95.429567021527234, 29.822914207651881 ], [ -95.42956602140184, 29.82385920819311 ], [ -95.429581021020056, 29.825138207920787 ], [ -95.429595021702042, 29.825961208147245 ], [ -95.429608022064514, 29.826793208777747 ], [ -95.429628021188577, 29.828290209350929 ], [ -95.431184022283531, 29.82827720845119 ], [ -95.432835022644639, 29.828253208899515 ], [ -95.433486022847489, 29.828239209021813 ], [ -95.434505022647187, 29.828227208406808 ], [ -95.435059022960047, 29.82824620880314 ], [ -95.435497023009802, 29.828317209192651 ], [ -95.435780023575106, 29.828384209133148 ], [ -95.436247023680579, 29.828569208662998 ], [ -95.437047023297296, 29.829023209248259 ], [ -95.437431024230619, 29.829269208594667 ], [ -95.437819023976374, 29.829519208765245 ], [ -95.438594024019991, 29.829992209248676 ], [ -95.439348024426181, 29.830490208999699 ], [ -95.440129024529298, 29.830967209136922 ], [ -95.440884024890465, 29.831465209113066 ], [ -95.44164502460508, 29.831949209618838 ], [ -95.44197502529957, 29.832164209154278 ], [ -95.442217024616752, 29.832302209232008 ], [ -95.442435024837735, 29.832415209255274 ], [ -95.442881025424555, 29.832580209246135 ], [ -95.443208025538397, 29.832671209326179 ], [ -95.443595024945893, 29.832738209415659 ], [ -95.443676025196254, 29.83274120972435 ], [ -95.443781025784759, 29.832753209344411 ], [ -95.444800025286284, 29.832757209709445 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 196, "Tract": "48201531300", "Area_SqMi": 0.5973170690006232, "total_2009": 1438, "total_2010": 1222, "total_2011": 1466, "total_2012": 1780, "total_2013": 1616, "total_2014": 1640, "total_2015": 1688, "total_2016": 1543, "total_2017": 1769, "total_2018": 1852, "total_2019": 1943, "total_2020": 1857, "age1": 524, "age2": 1039, "age3": 447, "earn1": 471, "earn2": 724, "earn3": 815, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 259, "naics_s05": 68, "naics_s06": 209, "naics_s07": 238, "naics_s08": 33, "naics_s09": 12, "naics_s10": 86, "naics_s11": 48, "naics_s12": 246, "naics_s13": 0, "naics_s14": 572, "naics_s15": 0, "naics_s16": 52, "naics_s17": 0, "naics_s18": 155, "naics_s19": 30, "naics_s20": 2, "race1": 1512, "race2": 294, "race3": 19, "race4": 145, "race5": 3, "race6": 37, "ethnicity1": 1271, "ethnicity2": 739, "edu1": 350, "edu2": 396, "edu3": 442, "edu4": 298, "Shape_Length": 23679.341161074804, "Shape_Area": 16652177.565356579, "total_2021": 1607, "total_2022": 2010 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476603033107793, 29.826792206858762 ], [ -95.476688033617464, 29.826716207257562 ], [ -95.476287033939002, 29.826343206805461 ], [ -95.476160033458882, 29.826225207120231 ], [ -95.473604032348931, 29.823851206750476 ], [ -95.473311032716836, 29.823579206401511 ], [ -95.473177032966589, 29.823454206498315 ], [ -95.470030031304603, 29.8205062059555 ], [ -95.469076031842661, 29.819619205991923 ], [ -95.4688860311296, 29.819443205727801 ], [ -95.468739031480084, 29.819446205917597 ], [ -95.468555031101857, 29.819445205788067 ], [ -95.468157030657196, 29.819438205575977 ], [ -95.466634030625812, 29.819501206340806 ], [ -95.466257030777086, 29.819508205791426 ], [ -95.465927030703781, 29.819509205757527 ], [ -95.465521030040051, 29.819517206069126 ], [ -95.46524703074904, 29.819509205609421 ], [ -95.464732030513858, 29.819518205767764 ], [ -95.46418303017218, 29.819551206336858 ], [ -95.463985030367539, 29.819552205572315 ], [ -95.463778029531326, 29.819556205750789 ], [ -95.463404029817468, 29.819563205913937 ], [ -95.463173029959862, 29.819568205888423 ], [ -95.46277302973283, 29.819575206228762 ], [ -95.462070029537699, 29.819584206121284 ], [ -95.461568029455705, 29.819593205919194 ], [ -95.460678028844484, 29.819607205741043 ], [ -95.460106028701802, 29.819616206225014 ], [ -95.459455028656848, 29.819628206294098 ], [ -95.458550028162222, 29.819638206152788 ], [ -95.458270028962787, 29.819630206260431 ], [ -95.458141029004736, 29.819621205900642 ], [ -95.457701028233814, 29.819552206212496 ], [ -95.457484027939088, 29.819520206393069 ], [ -95.457253027950017, 29.81947720602583 ], [ -95.456883027734676, 29.81939620598386 ], [ -95.456549027656934, 29.819303206295853 ], [ -95.456004028025973, 29.819124206075852 ], [ -95.455619028014368, 29.818937206307389 ], [ -95.454788027922262, 29.818562205968551 ], [ -95.454655027421609, 29.818493205944296 ], [ -95.454034027769765, 29.818222206272942 ], [ -95.453957027956122, 29.818188205812003 ], [ -95.453830026940224, 29.81812920590307 ], [ -95.453599027716663, 29.818039206315397 ], [ -95.452739026926054, 29.817768205907889 ], [ -95.452584026897313, 29.817721206452156 ], [ -95.451975026490203, 29.81757320556844 ], [ -95.451060026735504, 29.817380206436166 ], [ -95.450111026711369, 29.817283205568096 ], [ -95.449479026233078, 29.817215206447422 ], [ -95.449026026099261, 29.817208206407859 ], [ -95.447810025827266, 29.817210205622676 ], [ -95.446894025890188, 29.817210206485637 ], [ -95.446015025756367, 29.81721020612768 ], [ -95.445445025035866, 29.817222206149047 ], [ -95.445339025308769, 29.817224205990023 ], [ -95.445384024922859, 29.817553205809922 ], [ -95.445606024787267, 29.817933205863358 ], [ -95.44588502588735, 29.818141205981391 ], [ -95.446383025799861, 29.818304206319318 ], [ -95.446876025542295, 29.818313206709004 ], [ -95.447042025349191, 29.818315206553361 ], [ -95.449695026848872, 29.818362205942996 ], [ -95.450093026752143, 29.818449206315066 ], [ -95.450413026084107, 29.81861120631952 ], [ -95.45068902630716, 29.818879206667219 ], [ -95.450928026917708, 29.819292206041322 ], [ -95.450947026326489, 29.819851206065291 ], [ -95.451056026679538, 29.81986920674326 ], [ -95.452199027434972, 29.820060206818294 ], [ -95.453383026982351, 29.820463206536672 ], [ -95.453716027180448, 29.820576206154144 ], [ -95.455131028262656, 29.821249206217214 ], [ -95.456917028373596, 29.822582206879233 ], [ -95.458143028905553, 29.8242332070114 ], [ -95.458914028673135, 29.825619207206135 ], [ -95.459629028789507, 29.826918207410991 ], [ -95.459948029023749, 29.826795208041311 ], [ -95.460332029874706, 29.826635207438294 ], [ -95.460584029052143, 29.826553207969447 ], [ -95.460811029761032, 29.826514207405054 ], [ -95.461019029894231, 29.826498207592834 ], [ -95.461316029952272, 29.826520207361192 ], [ -95.461707030091574, 29.826569207753874 ], [ -95.461858030342185, 29.826596207458934 ], [ -95.462003030298149, 29.826635207961544 ], [ -95.462149029648486, 29.826704207313028 ], [ -95.462539030521668, 29.826888207387043 ], [ -95.462943030168887, 29.827108207650991 ], [ -95.463037029961583, 29.827135207969178 ], [ -95.463113030016274, 29.827140207589121 ], [ -95.463252029695795, 29.827135207843753 ], [ -95.463416030319266, 29.827113207465914 ], [ -95.463630029869577, 29.827025207640304 ], [ -95.463706029997084, 29.827014207867901 ], [ -95.463788029981032, 29.827025207143496 ], [ -95.463882030883241, 29.827058207558149 ], [ -95.464116030249286, 29.827195207723022 ], [ -95.464500030281414, 29.827536207202392 ], [ -95.464576030981775, 29.827684207299832 ], [ -95.46468303081501, 29.827827207225596 ], [ -95.464898030603678, 29.82797020750553 ], [ -95.465087030283669, 29.828047207965767 ], [ -95.465213030929448, 29.828064207983626 ], [ -95.465231030727878, 29.828065207811868 ], [ -95.465472030757638, 29.828075207285163 ], [ -95.465648030439027, 29.828053207235051 ], [ -95.465831030637943, 29.827981207265758 ], [ -95.465970031296891, 29.827898207887465 ], [ -95.466026030550623, 29.827854207680108 ], [ -95.466190030572648, 29.827832207495206 ], [ -95.466348030879587, 29.827838207320141 ], [ -95.46658103108453, 29.827865207971204 ], [ -95.466726031133064, 29.827865208018206 ], [ -95.466827031256329, 29.827849207566949 ], [ -95.466896030759642, 29.82782720715965 ], [ -95.46695303133329, 29.82779420798699 ], [ -95.467287030911834, 29.827552207084125 ], [ -95.467382031411489, 29.827530207265394 ], [ -95.467502031330071, 29.827535207308415 ], [ -95.467729030986561, 29.827596207765957 ], [ -95.467817031005197, 29.827596207059639 ], [ -95.467899031263499, 29.82757420741962 ], [ -95.468277031698875, 29.827359207137093 ], [ -95.468334031647615, 29.827343207426193 ], [ -95.468422031190286, 29.827337207466378 ], [ -95.4685170319256, 29.827348207754302 ], [ -95.468649031303897, 29.827408207470629 ], [ -95.468889031202053, 29.827463207386231 ], [ -95.46899003221472, 29.827500207512752 ], [ -95.469023031884717, 29.827521207757865 ], [ -95.469097031795513, 29.827573207870632 ], [ -95.469223031739986, 29.827727207284077 ], [ -95.469305031880097, 29.827788207695928 ], [ -95.469463031857188, 29.827854207657381 ], [ -95.469627032089647, 29.827898207761578 ], [ -95.470188031744726, 29.828255207169427 ], [ -95.470270032145123, 29.828293207176735 ], [ -95.470453031686944, 29.82831020790076 ], [ -95.470554032036091, 29.828293207254461 ], [ -95.470743032123067, 29.828194207640081 ], [ -95.470888032038204, 29.828161207722296 ], [ -95.471026032044321, 29.828166207162074 ], [ -95.47134803185746, 29.828265207219211 ], [ -95.471462031975037, 29.828276207117611 ], [ -95.471575032029904, 29.828271207757634 ], [ -95.472281032813044, 29.828194207356866 ], [ -95.472571032937992, 29.828188207838746 ], [ -95.47286203245325, 29.828233207886868 ], [ -95.473177032373499, 29.828281207042568 ], [ -95.473233032518678, 29.828259207202159 ], [ -95.473372032557194, 29.828226207479329 ], [ -95.47343503285326, 29.828199206990266 ], [ -95.47370003246597, 29.828017207354605 ], [ -95.474072032579144, 29.827825207223011 ], [ -95.474532032606149, 29.827627207545969 ], [ -95.474702032769727, 29.82761620701492 ], [ -95.474954033210778, 29.827621207340769 ], [ -95.475270033496273, 29.827643207069766 ], [ -95.475541033156716, 29.827643206927721 ], [ -95.475774033543047, 29.827582207404372 ], [ -95.475906033728918, 29.827511207499526 ], [ -95.476026033275986, 29.827390207152746 ], [ -95.476272033386323, 29.827087207472701 ], [ -95.476334033107847, 29.827032207044201 ], [ -95.47650703397693, 29.826877207196446 ], [ -95.476603033107793, 29.826792206858762 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 197, "Tract": "48201531400", "Area_SqMi": 0.41118715465456868, "total_2009": 2042, "total_2010": 1778, "total_2011": 1807, "total_2012": 1625, "total_2013": 1530, "total_2014": 1569, "total_2015": 1034, "total_2016": 625, "total_2017": 497, "total_2018": 462, "total_2019": 478, "total_2020": 470, "age1": 137, "age2": 257, "age3": 133, "earn1": 95, "earn2": 194, "earn3": 238, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 13, "naics_s06": 0, "naics_s07": 9, "naics_s08": 0, "naics_s09": 62, "naics_s10": 0, "naics_s11": 81, "naics_s12": 105, "naics_s13": 0, "naics_s14": 69, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 167, "naics_s19": 2, "naics_s20": 0, "race1": 395, "race2": 81, "race3": 5, "race4": 34, "race5": 1, "race6": 11, "ethnicity1": 335, "ethnicity2": 192, "edu1": 77, "edu2": 92, "edu3": 135, "edu4": 86, "Shape_Length": 18186.701553799703, "Shape_Area": 11463194.117920764, "total_2021": 464, "total_2022": 527 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.483389035980807, 29.833119208430666 ], [ -95.483579035579098, 29.833140207938971 ], [ -95.483282035927871, 29.832865208466743 ], [ -95.481763035561414, 29.831456208128458 ], [ -95.480261034242417, 29.83003420768302 ], [ -95.476688033617464, 29.826716207257562 ], [ -95.476603033107793, 29.826792206858762 ], [ -95.47650703397693, 29.826877207196446 ], [ -95.476334033107847, 29.827032207044201 ], [ -95.476272033386323, 29.827087207472701 ], [ -95.476026033275986, 29.827390207152746 ], [ -95.475906033728918, 29.827511207499526 ], [ -95.475774033543047, 29.827582207404372 ], [ -95.475541033156716, 29.827643206927721 ], [ -95.475270033496273, 29.827643207069766 ], [ -95.474954033210778, 29.827621207340769 ], [ -95.474702032769727, 29.82761620701492 ], [ -95.474532032606149, 29.827627207545969 ], [ -95.474072032579144, 29.827825207223011 ], [ -95.47370003246597, 29.828017207354605 ], [ -95.47343503285326, 29.828199206990266 ], [ -95.473372032557194, 29.828226207479329 ], [ -95.473233032518678, 29.828259207202159 ], [ -95.473177032373499, 29.828281207042568 ], [ -95.47286203245325, 29.828233207886868 ], [ -95.472571032937992, 29.828188207838746 ], [ -95.472281032813044, 29.828194207356866 ], [ -95.471575032029904, 29.828271207757634 ], [ -95.471462031975037, 29.828276207117611 ], [ -95.47134803185746, 29.828265207219211 ], [ -95.471026032044321, 29.828166207162074 ], [ -95.470888032038204, 29.828161207722296 ], [ -95.470743032123067, 29.828194207640081 ], [ -95.470554032036091, 29.828293207254461 ], [ -95.470453031686944, 29.82831020790076 ], [ -95.470270032145123, 29.828293207176735 ], [ -95.470188031744726, 29.828255207169427 ], [ -95.469627032089647, 29.827898207761578 ], [ -95.469463031857188, 29.827854207657381 ], [ -95.469305031880097, 29.827788207695928 ], [ -95.469223031739986, 29.827727207284077 ], [ -95.469097031795513, 29.827573207870632 ], [ -95.469023031884717, 29.827521207757865 ], [ -95.46899003221472, 29.827500207512752 ], [ -95.468889031202053, 29.827463207386231 ], [ -95.468649031303897, 29.827408207470629 ], [ -95.4685170319256, 29.827348207754302 ], [ -95.468422031190286, 29.827337207466378 ], [ -95.468334031647615, 29.827343207426193 ], [ -95.468277031698875, 29.827359207137093 ], [ -95.467899031263499, 29.82757420741962 ], [ -95.467817031005197, 29.827596207059639 ], [ -95.467729030986561, 29.827596207765957 ], [ -95.467502031330071, 29.827535207308415 ], [ -95.467382031411489, 29.827530207265394 ], [ -95.467287030911834, 29.827552207084125 ], [ -95.46695303133329, 29.82779420798699 ], [ -95.466896030759642, 29.82782720715965 ], [ -95.466827031256329, 29.827849207566949 ], [ -95.466726031133064, 29.827865208018206 ], [ -95.46658103108453, 29.827865207971204 ], [ -95.466348030879587, 29.827838207320141 ], [ -95.466190030572648, 29.827832207495206 ], [ -95.466026030550623, 29.827854207680108 ], [ -95.465970031296891, 29.827898207887465 ], [ -95.465831030637943, 29.827981207265758 ], [ -95.465648030439027, 29.828053207235051 ], [ -95.465472030757638, 29.828075207285163 ], [ -95.465231030727878, 29.828065207811868 ], [ -95.465213030929448, 29.828064207983626 ], [ -95.465087030283669, 29.828047207965767 ], [ -95.464898030603678, 29.82797020750553 ], [ -95.46468303081501, 29.827827207225596 ], [ -95.464576030981775, 29.827684207299832 ], [ -95.464500030281414, 29.827536207202392 ], [ -95.464116030249286, 29.827195207723022 ], [ -95.463882030883241, 29.827058207558149 ], [ -95.463788029981032, 29.827025207143496 ], [ -95.463706029997084, 29.827014207867901 ], [ -95.463630029869577, 29.827025207640304 ], [ -95.463416030319266, 29.827113207465914 ], [ -95.463252029695795, 29.827135207843753 ], [ -95.463113030016274, 29.827140207589121 ], [ -95.463037029961583, 29.827135207969178 ], [ -95.462943030168887, 29.827108207650991 ], [ -95.462539030521668, 29.826888207387043 ], [ -95.462149029648486, 29.826704207313028 ], [ -95.462003030298149, 29.826635207961544 ], [ -95.461858030342185, 29.826596207458934 ], [ -95.461707030091574, 29.826569207753874 ], [ -95.461316029952272, 29.826520207361192 ], [ -95.461019029894231, 29.826498207592834 ], [ -95.460811029761032, 29.826514207405054 ], [ -95.460584029052143, 29.826553207969447 ], [ -95.460332029874706, 29.826635207438294 ], [ -95.459948029023749, 29.826795208041311 ], [ -95.459629028789507, 29.826918207410991 ], [ -95.45977402937288, 29.827173207349492 ], [ -95.460613029860653, 29.828645207623772 ], [ -95.461598029602058, 29.830397208084005 ], [ -95.462403029944156, 29.831890208394757 ], [ -95.462797030699122, 29.832535208375631 ], [ -95.462845030010186, 29.832536208232732 ], [ -95.463077030074061, 29.832516208443288 ], [ -95.466496031552936, 29.832421208667981 ], [ -95.46854103140754, 29.832425208493252 ], [ -95.469616031796605, 29.832455208137414 ], [ -95.469877032474727, 29.832513208490827 ], [ -95.470421032791066, 29.832645208018238 ], [ -95.471469032612248, 29.832930208790319 ], [ -95.471787032411086, 29.832989208748693 ], [ -95.472167032720634, 29.833003208665136 ], [ -95.472922032568917, 29.832997208214149 ], [ -95.474495033834813, 29.833011208224647 ], [ -95.476924034246693, 29.832995208029647 ], [ -95.478595034093587, 29.83300420854302 ], [ -95.479300034981733, 29.833002208141504 ], [ -95.481100035355809, 29.832966208168479 ], [ -95.482034034764112, 29.833000208325135 ], [ -95.482541035030906, 29.833038208547606 ], [ -95.482870035563508, 29.833047208177547 ], [ -95.483241035967097, 29.833098208022118 ], [ -95.483389035980807, 29.833119208430666 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 198, "Tract": "48201532400", "Area_SqMi": 1.8100020066284557, "total_2009": 1314, "total_2010": 2873, "total_2011": 2769, "total_2012": 1521, "total_2013": 1717, "total_2014": 1513, "total_2015": 1729, "total_2016": 1818, "total_2017": 1838, "total_2018": 2160, "total_2019": 2165, "total_2020": 2097, "age1": 417, "age2": 1343, "age3": 591, "earn1": 206, "earn2": 519, "earn3": 1626, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 529, "naics_s05": 458, "naics_s06": 333, "naics_s07": 235, "naics_s08": 113, "naics_s09": 0, "naics_s10": 78, "naics_s11": 12, "naics_s12": 103, "naics_s13": 260, "naics_s14": 123, "naics_s15": 22, "naics_s16": 22, "naics_s17": 0, "naics_s18": 36, "naics_s19": 27, "naics_s20": 0, "race1": 1830, "race2": 247, "race3": 24, "race4": 218, "race5": 6, "race6": 26, "ethnicity1": 1350, "ethnicity2": 1001, "edu1": 529, "edu2": 476, "edu3": 517, "edu4": 412, "Shape_Length": 42843.549055608302, "Shape_Area": 50459758.095406637, "total_2021": 2101, "total_2022": 2351 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.524715047752252, 29.873825214718028 ], [ -95.524723047925619, 29.873379214577014 ], [ -95.524710048466147, 29.872939215117501 ], [ -95.524696047484156, 29.872644214904376 ], [ -95.52465204748556, 29.872104214667019 ], [ -95.524641047936669, 29.871837214960635 ], [ -95.52463404800946, 29.871509214609826 ], [ -95.52460504790028, 29.870550213909642 ], [ -95.524602047335392, 29.870351214727165 ], [ -95.52460004795833, 29.870282214165933 ], [ -95.524599048319288, 29.869979214086886 ], [ -95.52459904832979, 29.869635213960155 ], [ -95.524619047381464, 29.869041214110869 ], [ -95.524611047588763, 29.86855321414243 ], [ -95.524608048086847, 29.868383213633653 ], [ -95.524595048010667, 29.867813213556666 ], [ -95.524583047279137, 29.867151213619067 ], [ -95.524570048159532, 29.867071213218498 ], [ -95.524569048181235, 29.866837214012424 ], [ -95.524573047643628, 29.866762213951539 ], [ -95.524571047171278, 29.866676213680851 ], [ -95.524569047388596, 29.866570213576203 ], [ -95.524562047221863, 29.866516213680491 ], [ -95.524558047905629, 29.86618721369933 ], [ -95.524543047798289, 29.865559213439482 ], [ -95.524094047955785, 29.865501212920638 ], [ -95.523018047415562, 29.865504213135114 ], [ -95.522795046843939, 29.865504212975146 ], [ -95.5222380465936, 29.865516213217507 ], [ -95.521904047250217, 29.865514213802658 ], [ -95.52124204630114, 29.865529213464292 ], [ -95.520583046436627, 29.865519213398436 ], [ -95.520029046596363, 29.865529213539521 ], [ -95.518042046437301, 29.865549213805746 ], [ -95.515556045609912, 29.865555213571408 ], [ -95.51152104390134, 29.865588213646976 ], [ -95.511365044513553, 29.865591214100167 ], [ -95.510604044449707, 29.865617214138506 ], [ -95.50981804398414, 29.865600213662152 ], [ -95.506849042770284, 29.865606213674539 ], [ -95.503473042245886, 29.865644214101508 ], [ -95.502312042216573, 29.865648213866514 ], [ -95.502114041994389, 29.865650214012827 ], [ -95.500192041014017, 29.865670214383581 ], [ -95.49607104026822, 29.865694214230562 ], [ -95.494922039771382, 29.865702214760653 ], [ -95.494438039491669, 29.865699214131503 ], [ -95.494287039504002, 29.865698214014625 ], [ -95.493498039324194, 29.86570521406993 ], [ -95.491807039281795, 29.865721214800185 ], [ -95.491719038790848, 29.865722214133367 ], [ -95.491655039078395, 29.865723214720667 ], [ -95.491344038816379, 29.865720214445965 ], [ -95.490995038602108, 29.865721214452787 ], [ -95.490866039047646, 29.865722214827283 ], [ -95.489631038399608, 29.86574321409562 ], [ -95.488621038161568, 29.865740214687836 ], [ -95.486779037943293, 29.865757214204535 ], [ -95.483849036760617, 29.865762215006153 ], [ -95.48188003703433, 29.865765214395289 ], [ -95.481623037066967, 29.865768214776161 ], [ -95.483301037167124, 29.868723215758838 ], [ -95.483327037241025, 29.868767215456586 ], [ -95.483842037120837, 29.869659215305777 ], [ -95.484219038018409, 29.870353215370855 ], [ -95.484609037488113, 29.871091215759083 ], [ -95.485012037725454, 29.871807215760533 ], [ -95.486184038044428, 29.873815215935224 ], [ -95.486229037882723, 29.873893216515302 ], [ -95.486255038544016, 29.873940216695026 ], [ -95.487484039066786, 29.876205216793082 ], [ -95.487785038652916, 29.876726217059783 ], [ -95.488568039238729, 29.878109217087246 ], [ -95.489601039390791, 29.879957217376671 ], [ -95.490510039697284, 29.881580217411159 ], [ -95.492313039901461, 29.884706218757024 ], [ -95.492752040683385, 29.885489218535991 ], [ -95.493180040868651, 29.886254219000485 ], [ -95.494365041087718, 29.888370218815691 ], [ -95.494440041036555, 29.888473219319042 ], [ -95.494466041362401, 29.886027218714901 ], [ -95.494454040337018, 29.884699218091896 ], [ -95.494450040231627, 29.88190321762033 ], [ -95.494465040625741, 29.880730217422951 ], [ -95.494465040920289, 29.880075217026342 ], [ -95.494465040394871, 29.879108217491261 ], [ -95.49444404017909, 29.87793821724869 ], [ -95.494450040806484, 29.877519216682987 ], [ -95.494458040823389, 29.876933216749741 ], [ -95.494461040125898, 29.876746216539082 ], [ -95.494462040810845, 29.876672216375241 ], [ -95.49446304015342, 29.876645216665118 ], [ -95.495011040519387, 29.876644216862008 ], [ -95.498488041913049, 29.876641216782613 ], [ -95.498836041714384, 29.876529216607327 ], [ -95.498999041678502, 29.87653021655181 ], [ -95.499314041769892, 29.876426216650291 ], [ -95.499528042211097, 29.876299216143639 ], [ -95.499717042067445, 29.876145215977076 ], [ -95.50000704168383, 29.875722216199925 ], [ -95.500093042268148, 29.875528216427725 ], [ -95.500150041539442, 29.875369215795388 ], [ -95.500289041975492, 29.874867216274616 ], [ -95.500333041747211, 29.874757216425159 ], [ -95.500352042239115, 29.874641215569891 ], [ -95.500460041926743, 29.87430621581958 ], [ -95.500643041847184, 29.873954215851018 ], [ -95.50071504176772, 29.873872215752872 ], [ -95.500764042165613, 29.873817215557935 ], [ -95.500807042057204, 29.873767215413061 ], [ -95.501066042322762, 29.873548215785998 ], [ -95.501242042296667, 29.87346521547838 ], [ -95.50152604256489, 29.87336621577116 ], [ -95.502025042318664, 29.873339215543044 ], [ -95.502374042575141, 29.873422215984153 ], [ -95.502655041988447, 29.873488215787358 ], [ -95.507006043970492, 29.874157215321151 ], [ -95.507241043446214, 29.874193215495932 ], [ -95.507354043315217, 29.874205216006718 ], [ -95.507506044165225, 29.874221215774469 ], [ -95.507548044053422, 29.874218215873704 ], [ -95.507758043389288, 29.874204215353082 ], [ -95.50788704383065, 29.87416821538638 ], [ -95.508112044037077, 29.874105215245891 ], [ -95.508676043429702, 29.873864215890585 ], [ -95.508742043800424, 29.873836215324502 ], [ -95.508906044346958, 29.8737932157415 ], [ -95.509033043807051, 29.873759215140101 ], [ -95.509342043665484, 29.873715215222234 ], [ -95.509551044046304, 29.873730215456973 ], [ -95.5098290443336, 29.87375021566217 ], [ -95.510397044371217, 29.873791215155613 ], [ -95.510584044475252, 29.873804215381949 ], [ -95.510645044370008, 29.873832215798483 ], [ -95.510824044682707, 29.87391421558403 ], [ -95.510956044808978, 29.874040215853228 ], [ -95.51148004514377, 29.874449215459414 ], [ -95.511505045102041, 29.874469215548611 ], [ -95.511776044916914, 29.874590215858621 ], [ -95.512085044556997, 29.874668215255426 ], [ -95.512394044783463, 29.874640215945629 ], [ -95.512423044628264, 29.874642215446499 ], [ -95.512868044869847, 29.874668215950791 ], [ -95.513120045552526, 29.874805215581663 ], [ -95.513227044999041, 29.87488821538679 ], [ -95.513265045349087, 29.874954215657766 ], [ -95.513271045126146, 29.875001215733917 ], [ -95.513259044815698, 29.875171215796456 ], [ -95.513271044952106, 29.875869215408166 ], [ -95.513288045490967, 29.876048216236075 ], [ -95.513302045277939, 29.87618821617221 ], [ -95.51331504540353, 29.876210215579917 ], [ -95.513359045747947, 29.87630921558663 ], [ -95.513504045315145, 29.876474215679412 ], [ -95.513520045185246, 29.876488215641142 ], [ -95.513649045794963, 29.87660021601722 ], [ -95.513863045489273, 29.876732216214599 ], [ -95.514027045397796, 29.876804216174879 ], [ -95.514122045787147, 29.876832215646477 ], [ -95.514191045773813, 29.876837216346328 ], [ -95.514292045344988, 29.87682121632281 ], [ -95.514425045517498, 29.876815216271524 ], [ -95.514620046082584, 29.876755215810309 ], [ -95.514898045626339, 29.876628215746088 ], [ -95.515144045523968, 29.876464215767207 ], [ -95.515308046205803, 29.876332215503176 ], [ -95.515498046161099, 29.876211216097328 ], [ -95.515737045414127, 29.876134215465886 ], [ -95.515927046370621, 29.876090215485558 ], [ -95.516091045957396, 29.876063215643143 ], [ -95.516311046426026, 29.87609621612749 ], [ -95.516532046232058, 29.876156215520169 ], [ -95.516772045798461, 29.876239216009381 ], [ -95.517024046005588, 29.876382215701643 ], [ -95.517313046048372, 29.876497215475109 ], [ -95.517339046021092, 29.876508216181456 ], [ -95.517484046072411, 29.876530215508641 ], [ -95.517611046829913, 29.876514215523493 ], [ -95.517857046373123, 29.876454215526099 ], [ -95.518009046314617, 29.876400215593531 ], [ -95.518185046919186, 29.87630521587873 ], [ -95.51834904659097, 29.876201216055566 ], [ -95.518513046506285, 29.876047215589882 ], [ -95.51899904624895, 29.875706215199731 ], [ -95.519169046831621, 29.875662215225521 ], [ -95.521137047011123, 29.875614215454569 ], [ -95.521837047493534, 29.875625215411667 ], [ -95.522601047384043, 29.875603215328347 ], [ -95.523061048126721, 29.87557621530523 ], [ -95.523238048143568, 29.875576215545554 ], [ -95.523402048220419, 29.875647215609376 ], [ -95.523490047775823, 29.875713215073464 ], [ -95.523654047528808, 29.87592821550243 ], [ -95.523711047860019, 29.876054215123787 ], [ -95.523761048410947, 29.876219215165534 ], [ -95.523849047449659, 29.876433215334121 ], [ -95.523938047705073, 29.876620215742946 ], [ -95.524039047880763, 29.876791215219839 ], [ -95.524209048283524, 29.876928216065906 ], [ -95.524530048376107, 29.877033215959163 ], [ -95.524706048317682, 29.877077215250697 ], [ -95.524721047797613, 29.875789215172883 ], [ -95.524720048542122, 29.875306215697929 ], [ -95.524720048212458, 29.875257215382135 ], [ -95.524712048184071, 29.875177215658869 ], [ -95.524717047732238, 29.875152215003794 ], [ -95.524707048080359, 29.874943215430701 ], [ -95.524705047813725, 29.874731215230405 ], [ -95.52470904840645, 29.874625215598421 ], [ -95.524702047989109, 29.874517215136667 ], [ -95.524715047752252, 29.873825214718028 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 199, "Tract": "48201452900", "Area_SqMi": 0.50769269542895124, "total_2009": 640, "total_2010": 577, "total_2011": 625, "total_2012": 821, "total_2013": 879, "total_2014": 671, "total_2015": 591, "total_2016": 510, "total_2017": 322, "total_2018": 356, "total_2019": 414, "total_2020": 428, "age1": 80, "age2": 248, "age3": 169, "earn1": 298, "earn2": 164, "earn3": 35, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 42, "naics_s06": 10, "naics_s07": 18, "naics_s08": 0, "naics_s09": 0, "naics_s10": 8, "naics_s11": 6, "naics_s12": 4, "naics_s13": 0, "naics_s14": 1, "naics_s15": 1, "naics_s16": 373, "naics_s17": 0, "naics_s18": 24, "naics_s19": 6, "naics_s20": 0, "race1": 110, "race2": 100, "race3": 0, "race4": 279, "race5": 0, "race6": 8, "ethnicity1": 425, "ethnicity2": 72, "edu1": 149, "edu2": 89, "edu3": 102, "edu4": 77, "Shape_Length": 15951.078888371087, "Shape_Area": 14153603.423826771, "total_2021": 447, "total_2022": 497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.596161058583974, 29.703620178233148 ], [ -95.596155058384312, 29.702849177841983 ], [ -95.596140058781799, 29.702308177421365 ], [ -95.596131058272263, 29.701573177651792 ], [ -95.596130058835612, 29.700989176929042 ], [ -95.596107058328315, 29.70027917679813 ], [ -95.596107058175761, 29.699894176762289 ], [ -95.596088058450519, 29.699053176665583 ], [ -95.596080057971463, 29.698681176809558 ], [ -95.596047058543689, 29.697281176970733 ], [ -95.596052057925476, 29.697141176248387 ], [ -95.596031058228391, 29.696180176029003 ], [ -95.596027058180312, 29.695996176191219 ], [ -95.596019058741376, 29.695410176059688 ], [ -95.596015058060203, 29.694758176083358 ], [ -95.595998057938573, 29.693954175701794 ], [ -95.59598605838616, 29.693523176141831 ], [ -95.59597305806173, 29.693124175513695 ], [ -95.595969058522925, 29.692567175225538 ], [ -95.595950058640881, 29.692444175487783 ], [ -95.595957057863728, 29.692110175197097 ], [ -95.595934058328979, 29.69089217539597 ], [ -95.595923058078526, 29.690543175115923 ], [ -95.595924058437319, 29.690130174630088 ], [ -95.59591505835219, 29.689700175162155 ], [ -95.59591205765436, 29.689093175027317 ], [ -95.594734058101395, 29.689103175283968 ], [ -95.594241057587098, 29.689070175332208 ], [ -95.593994057981533, 29.689054175117469 ], [ -95.592886057432466, 29.688911175210794 ], [ -95.592415056867807, 29.688871175046177 ], [ -95.591504056506523, 29.688871174762028 ], [ -95.589035056290825, 29.688915174984068 ], [ -95.587594055329305, 29.688931174994291 ], [ -95.587606055682429, 29.69102817542699 ], [ -95.587612055513134, 29.691800175836175 ], [ -95.5876360557955, 29.692232175375931 ], [ -95.587636055991027, 29.692372175480013 ], [ -95.587630056253417, 29.692568175445853 ], [ -95.587635055964014, 29.693342175559494 ], [ -95.587652056020062, 29.69410817619378 ], [ -95.587670055704621, 29.694872176633407 ], [ -95.58769205666556, 29.695591176171284 ], [ -95.587705056306191, 29.69604017671287 ], [ -95.587707055719306, 29.696160176561641 ], [ -95.587719056417214, 29.696817176523222 ], [ -95.587784056296655, 29.699560177389465 ], [ -95.587763056543523, 29.699886177090058 ], [ -95.587831057029106, 29.702917177514141 ], [ -95.587841056584097, 29.703204177941089 ], [ -95.587870056833879, 29.703746177857077 ], [ -95.588886056599847, 29.7037201784131 ], [ -95.589222056638647, 29.703709177914295 ], [ -95.589683057271841, 29.703702178404789 ], [ -95.589927057291462, 29.703699178402175 ], [ -95.592578057899203, 29.703663178355509 ], [ -95.593391058179293, 29.703654178076825 ], [ -95.593732058261594, 29.703650177816126 ], [ -95.595014058414733, 29.703636177611287 ], [ -95.596161058583974, 29.703620178233148 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 200, "Tract": "48201453100", "Area_SqMi": 0.85687240451399038, "total_2009": 942, "total_2010": 925, "total_2011": 962, "total_2012": 919, "total_2013": 962, "total_2014": 1103, "total_2015": 1312, "total_2016": 1339, "total_2017": 1309, "total_2018": 1358, "total_2019": 1384, "total_2020": 1215, "age1": 488, "age2": 543, "age3": 235, "earn1": 353, "earn2": 591, "earn3": 322, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 6, "naics_s06": 0, "naics_s07": 753, "naics_s08": 2, "naics_s09": 0, "naics_s10": 46, "naics_s11": 6, "naics_s12": 12, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 61, "naics_s17": 0, "naics_s18": 374, "naics_s19": 5, "naics_s20": 0, "race1": 700, "race2": 235, "race3": 12, "race4": 293, "race5": 3, "race6": 23, "ethnicity1": 843, "ethnicity2": 423, "edu1": 209, "edu2": 194, "edu3": 230, "edu4": 145, "Shape_Length": 19678.509810087879, "Shape_Area": 23888136.086072791, "total_2021": 1226, "total_2022": 1266 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.571219052673612, 29.703931178352409 ], [ -95.571215052232873, 29.703415178473076 ], [ -95.571161051817825, 29.699873178039642 ], [ -95.571149052329631, 29.699109177942173 ], [ -95.571156052484284, 29.69834717788007 ], [ -95.571144051604577, 29.697578177741093 ], [ -95.571127052185687, 29.696805177149805 ], [ -95.571111052339049, 29.696155177020994 ], [ -95.571109051587257, 29.695522177118264 ], [ -95.571091051565375, 29.694758176827467 ], [ -95.571073051672428, 29.693978176256483 ], [ -95.571079051448535, 29.693236176341632 ], [ -95.571068052287487, 29.692449176050495 ], [ -95.571050051610399, 29.692046176370894 ], [ -95.571043052208267, 29.691807175823516 ], [ -95.571019051747484, 29.691485175762164 ], [ -95.570976051382203, 29.691179175781123 ], [ -95.570920052038574, 29.69083517585338 ], [ -95.57065805178992, 29.689832175546393 ], [ -95.570557051551901, 29.689460175671677 ], [ -95.570263051671532, 29.688381175640014 ], [ -95.569537050848922, 29.688516175467775 ], [ -95.5682020504793, 29.688806175934644 ], [ -95.567798050604296, 29.688893176147989 ], [ -95.567569050949444, 29.688938176213554 ], [ -95.567156050554331, 29.689020176065739 ], [ -95.565923050485466, 29.689175176291162 ], [ -95.565587049791233, 29.689200175803567 ], [ -95.564413049567037, 29.689231176237815 ], [ -95.564230050198049, 29.689232175624728 ], [ -95.564159050118818, 29.689232176279408 ], [ -95.563883049726897, 29.689233176325313 ], [ -95.562766049656346, 29.68925917566472 ], [ -95.561983049111603, 29.689382175886536 ], [ -95.560088048663104, 29.689662176032396 ], [ -95.559535048310181, 29.689669176204013 ], [ -95.558838048258849, 29.68963717585309 ], [ -95.557917048717655, 29.689519176562257 ], [ -95.557482048212648, 29.689429176301431 ], [ -95.557441047863605, 29.689628176117925 ], [ -95.557373048568081, 29.689958176041472 ], [ -95.557230047935263, 29.691156176557488 ], [ -95.557200047710637, 29.691452176884948 ], [ -95.557161048384259, 29.69210717645365 ], [ -95.557169048732092, 29.692634176903844 ], [ -95.557192048465211, 29.693865177283374 ], [ -95.557191047911658, 29.694621177521267 ], [ -95.557188048119599, 29.695253177678989 ], [ -95.557187048605385, 29.695341177302296 ], [ -95.557187048110151, 29.695406177199551 ], [ -95.557183048052039, 29.696119177756806 ], [ -95.55723104843679, 29.698846178535145 ], [ -95.55723904870699, 29.699254177888875 ], [ -95.557244048190199, 29.699404178570997 ], [ -95.557279048458881, 29.700481178441663 ], [ -95.557292048775821, 29.700870178360329 ], [ -95.557293049156485, 29.701538179091756 ], [ -95.557352048608323, 29.702432179046617 ], [ -95.557353048845755, 29.703286178621092 ], [ -95.557380048817137, 29.70406217886957 ], [ -95.557383048545134, 29.704295179523051 ], [ -95.557386048354076, 29.704507179425033 ], [ -95.557825048443391, 29.704488179142231 ], [ -95.56020104933927, 29.704373179558072 ], [ -95.563242050697056, 29.704212179246944 ], [ -95.565319051154844, 29.704093179001475 ], [ -95.565820051152116, 29.704068178588866 ], [ -95.566293050878457, 29.704045178946473 ], [ -95.566728050871646, 29.704021179112605 ], [ -95.567264051700477, 29.703992179218485 ], [ -95.567492051132092, 29.703976178453264 ], [ -95.567628051101266, 29.70397417879563 ], [ -95.568206051219207, 29.703963178647296 ], [ -95.568922051695324, 29.703946178879086 ], [ -95.570051052309964, 29.703931178331938 ], [ -95.571219052673612, 29.703931178352409 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 201, "Tract": "48201530600", "Area_SqMi": 1.1934064825255764, "total_2009": 4729, "total_2010": 5327, "total_2011": 4781, "total_2012": 4917, "total_2013": 4957, "total_2014": 4880, "total_2015": 5381, "total_2016": 5287, "total_2017": 4830, "total_2018": 4760, "total_2019": 4622, "total_2020": 4400, "age1": 846, "age2": 2184, "age3": 1076, "earn1": 749, "earn2": 1479, "earn3": 1878, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 927, "naics_s05": 324, "naics_s06": 419, "naics_s07": 202, "naics_s08": 152, "naics_s09": 14, "naics_s10": 7, "naics_s11": 60, "naics_s12": 59, "naics_s13": 3, "naics_s14": 1289, "naics_s15": 0, "naics_s16": 187, "naics_s17": 120, "naics_s18": 236, "naics_s19": 107, "naics_s20": 0, "race1": 3227, "race2": 624, "race3": 49, "race4": 135, "race5": 7, "race6": 64, "ethnicity1": 2114, "ethnicity2": 1992, "edu1": 929, "edu2": 888, "edu3": 914, "edu4": 529, "Shape_Length": 30466.276212140863, "Shape_Area": 33270130.197204821, "total_2021": 4374, "total_2022": 4106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.411427017979065, 29.849125213554135 ], [ -95.411641017514683, 29.849305213446314 ], [ -95.411339017855312, 29.848091213259096 ], [ -95.411254017802847, 29.847698213168766 ], [ -95.411153018064383, 29.847164213170128 ], [ -95.411014017289531, 29.846426213552533 ], [ -95.410982017876776, 29.845442212770596 ], [ -95.410969017678923, 29.844118213005824 ], [ -95.410959018027256, 29.843678212521688 ], [ -95.410915017152789, 29.841743212775487 ], [ -95.410914017811322, 29.841665211889381 ], [ -95.410917017775986, 29.84140821263631 ], [ -95.410912017480442, 29.841154212633377 ], [ -95.410855016842817, 29.838823211891004 ], [ -95.410843017511496, 29.837940211902328 ], [ -95.410834017519136, 29.83726521154658 ], [ -95.410791017242573, 29.835640210972844 ], [ -95.410761017088689, 29.834666210934625 ], [ -95.410719017017371, 29.83252421031743 ], [ -95.410696016544918, 29.831402210575369 ], [ -95.410689016650664, 29.830937209700171 ], [ -95.410650017351841, 29.829632209857255 ], [ -95.410652017185171, 29.829242209775845 ], [ -95.41064601695463, 29.828750209436901 ], [ -95.410632016454528, 29.828018209726405 ], [ -95.410615016400683, 29.8273442089688 ], [ -95.410568016159331, 29.825730209464837 ], [ -95.410557016515241, 29.824623209114886 ], [ -95.410537016856665, 29.823467208631858 ], [ -95.410534016370377, 29.823279208527747 ], [ -95.41050901648147, 29.821963207915285 ], [ -95.410487016698198, 29.820966208196246 ], [ -95.410468016199459, 29.819823207711245 ], [ -95.410446016457655, 29.819095208032344 ], [ -95.409943016683954, 29.819059207843264 ], [ -95.408829015799697, 29.819059207552836 ], [ -95.406749015836752, 29.819105208000263 ], [ -95.406347014930944, 29.819114207892145 ], [ -95.404769014627533, 29.819107208253879 ], [ -95.40398101474868, 29.81910420805303 ], [ -95.3995660132626, 29.819192208298787 ], [ -95.399581013835245, 29.819651208407304 ], [ -95.399597013754317, 29.820510208446144 ], [ -95.399456014029738, 29.820503208671518 ], [ -95.397795012878319, 29.820518208607108 ], [ -95.396149012717643, 29.820535208734867 ], [ -95.396160012700818, 29.821376208397872 ], [ -95.396183012692248, 29.822196209028192 ], [ -95.394629012837257, 29.822211208546044 ], [ -95.394853012847577, 29.822849209007067 ], [ -95.395096012372861, 29.823443209442996 ], [ -95.395147012926444, 29.82351220942197 ], [ -95.395523012814905, 29.824179209609699 ], [ -95.395920013293591, 29.824887209580048 ], [ -95.396090013320062, 29.825191209213603 ], [ -95.396363013118631, 29.825679209504628 ], [ -95.396421012535583, 29.825796209999254 ], [ -95.396745013289788, 29.826451209522698 ], [ -95.397011013670991, 29.826985210064823 ], [ -95.397443013510951, 29.827890209521563 ], [ -95.397693013077415, 29.828404210009197 ], [ -95.398101013209043, 29.829234210387263 ], [ -95.398303013536236, 29.829634209863364 ], [ -95.398768014222597, 29.830545210805166 ], [ -95.399007014262196, 29.830541210140936 ], [ -95.399221013559981, 29.830539210422632 ], [ -95.400428013941436, 29.830526210423393 ], [ -95.401066014623098, 29.830507210068106 ], [ -95.401250014351803, 29.830502210327946 ], [ -95.402792014639317, 29.830492210261287 ], [ -95.402797014808755, 29.831013210170934 ], [ -95.402830015276692, 29.832537210805054 ], [ -95.402729014845931, 29.832719211205951 ], [ -95.402819015043008, 29.833074211005549 ], [ -95.402872015484903, 29.833409211291162 ], [ -95.402883014716934, 29.834174211503111 ], [ -95.402892015567076, 29.834769210865563 ], [ -95.402904014716484, 29.835621211333542 ], [ -95.40292901539128, 29.837400211611417 ], [ -95.402940014996773, 29.838135211702504 ], [ -95.402947015539723, 29.838667212120122 ], [ -95.402955015376037, 29.839280212178387 ], [ -95.40296501525296, 29.840038212206665 ], [ -95.402970015838079, 29.840475212040708 ], [ -95.402974015348576, 29.840958212244281 ], [ -95.402977015023836, 29.841167212607075 ], [ -95.402979015469128, 29.841354212355387 ], [ -95.402984015244414, 29.841778212209537 ], [ -95.402990015012051, 29.842369213117536 ], [ -95.40299301577879, 29.842708212975563 ], [ -95.402997015307633, 29.843075213200038 ], [ -95.403004015936617, 29.843672213459428 ], [ -95.40301001558187, 29.844232212968901 ], [ -95.403020015589661, 29.845258213514438 ], [ -95.403024015299991, 29.845578213195338 ], [ -95.40302301575727, 29.845866213005305 ], [ -95.403137015843413, 29.845995213498057 ], [ -95.403487015736019, 29.846266213599883 ], [ -95.40385401544097, 29.846530213689064 ], [ -95.403973016048724, 29.84662321317931 ], [ -95.404129015603047, 29.846728214029234 ], [ -95.404276016099047, 29.846813213820976 ], [ -95.404546015775338, 29.846939213165623 ], [ -95.404787016129163, 29.847018213316783 ], [ -95.405194016230737, 29.84712421404819 ], [ -95.405459015963089, 29.847164213418349 ], [ -95.405636016552492, 29.847181213282195 ], [ -95.405839016192814, 29.847189213567237 ], [ -95.406999016630209, 29.847187213340188 ], [ -95.408290017424363, 29.847185213769254 ], [ -95.409288017262668, 29.847559213343661 ], [ -95.409396017026637, 29.84757721402292 ], [ -95.409536017587598, 29.84764721366518 ], [ -95.409742017251688, 29.847780213746606 ], [ -95.409967017775614, 29.847957213714096 ], [ -95.411106017347379, 29.848869214177974 ], [ -95.411427017979065, 29.849125213554135 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 202, "Tract": "48201453300", "Area_SqMi": 0.79108059564044064, "total_2009": 6452, "total_2010": 6379, "total_2011": 6546, "total_2012": 5617, "total_2013": 5670, "total_2014": 5871, "total_2015": 6095, "total_2016": 5811, "total_2017": 5955, "total_2018": 5793, "total_2019": 5979, "total_2020": 5965, "age1": 1191, "age2": 3295, "age3": 1694, "earn1": 888, "earn2": 2031, "earn3": 3261, "naics_s01": 0, "naics_s02": 23, "naics_s03": 21, "naics_s04": 593, "naics_s05": 606, "naics_s06": 1007, "naics_s07": 1009, "naics_s08": 23, "naics_s09": 169, "naics_s10": 139, "naics_s11": 113, "naics_s12": 726, "naics_s13": 4, "naics_s14": 653, "naics_s15": 30, "naics_s16": 387, "naics_s17": 0, "naics_s18": 399, "naics_s19": 239, "naics_s20": 39, "race1": 3839, "race2": 997, "race3": 38, "race4": 1206, "race5": 11, "race6": 89, "ethnicity1": 4299, "ethnicity2": 1881, "edu1": 1122, "edu2": 1206, "edu3": 1370, "edu4": 1291, "Shape_Length": 21712.096804439247, "Shape_Area": 22053973.058484491, "total_2021": 5951, "total_2022": 6180 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.570798050199954, 29.656021169149223 ], [ -95.570830049650652, 29.655492169003249 ], [ -95.570701050159357, 29.654476168963484 ], [ -95.570585049924176, 29.654113168106417 ], [ -95.570416049603452, 29.653627168704993 ], [ -95.569963049482212, 29.652909168308607 ], [ -95.56987105017906, 29.652839168348724 ], [ -95.5697070494531, 29.652574167844058 ], [ -95.569257049529483, 29.652041168369085 ], [ -95.568753048979744, 29.651541168327491 ], [ -95.568538049209025, 29.65139216763081 ], [ -95.56841704936889, 29.651513167731018 ], [ -95.568337049532246, 29.651593168195806 ], [ -95.567295049018753, 29.652555167964017 ], [ -95.565919048371754, 29.653830168261234 ], [ -95.565786048913665, 29.653954169120581 ], [ -95.565537048366721, 29.654192168396648 ], [ -95.564963048374906, 29.654728168473618 ], [ -95.564219048157071, 29.655460168629102 ], [ -95.56253804797943, 29.656948169598021 ], [ -95.562333048354105, 29.657104169239762 ], [ -95.561813047387957, 29.65759316928882 ], [ -95.561030047201072, 29.658329169331274 ], [ -95.560938047313215, 29.658415169445036 ], [ -95.560148047861247, 29.659158169750221 ], [ -95.558587046982652, 29.660624170527715 ], [ -95.558522047332914, 29.660685170233215 ], [ -95.558379047113078, 29.660819169967638 ], [ -95.558131047059561, 29.661053170299731 ], [ -95.558224047627107, 29.661188170102854 ], [ -95.558318047286406, 29.661350170196371 ], [ -95.558384047433577, 29.661491170613196 ], [ -95.558455047638532, 29.661616170149685 ], [ -95.558811046838599, 29.662242170366223 ], [ -95.558925047679736, 29.662495170721868 ], [ -95.559142047072726, 29.662983171127227 ], [ -95.559290047213835, 29.663372171007573 ], [ -95.559656047882314, 29.664283171239703 ], [ -95.559809047166922, 29.664869171105021 ], [ -95.559950047490091, 29.665499171365333 ], [ -95.560045047598891, 29.666001171355855 ], [ -95.56008604830842, 29.666270171368677 ], [ -95.560138047939205, 29.666585171106323 ], [ -95.560174047524029, 29.666851171224923 ], [ -95.560209048052229, 29.667184171505923 ], [ -95.560231048275085, 29.667393171823253 ], [ -95.56026704800756, 29.667936171726549 ], [ -95.560287047671366, 29.668519171820627 ], [ -95.560357047882107, 29.669902171756618 ], [ -95.560370048297315, 29.670059172233533 ], [ -95.560484048521559, 29.671409172095224 ], [ -95.560514048352175, 29.67270917234789 ], [ -95.560549048048827, 29.6734751724976 ], [ -95.560495048228205, 29.674409173252933 ], [ -95.560482048371355, 29.674632172950218 ], [ -95.560852048096535, 29.674613173271556 ], [ -95.561424048353345, 29.674572173158047 ], [ -95.562852049358483, 29.674470172794571 ], [ -95.568637049955427, 29.67413717247144 ], [ -95.569161050458675, 29.674152172775738 ], [ -95.569515050981991, 29.674168172420995 ], [ -95.569818050877259, 29.67417517306982 ], [ -95.570396050956759, 29.67422517267449 ], [ -95.570396050393839, 29.673609172796834 ], [ -95.570363051045646, 29.672476172168711 ], [ -95.570364050732408, 29.672329172006844 ], [ -95.570356050394764, 29.672002172199086 ], [ -95.570320050425977, 29.671708172342321 ], [ -95.570273050843781, 29.671210171756687 ], [ -95.570235050572734, 29.67114817249087 ], [ -95.570200050821768, 29.67097217246631 ], [ -95.570121050657548, 29.670735172067314 ], [ -95.570007050560378, 29.670374171750286 ], [ -95.569934050231879, 29.670127171986362 ], [ -95.569851050309978, 29.669892172022784 ], [ -95.569634050651558, 29.669220171716525 ], [ -95.569547050263679, 29.668967171384651 ], [ -95.569287050454903, 29.668221171931389 ], [ -95.569271049875596, 29.668154171276974 ], [ -95.569203049815812, 29.667947171444091 ], [ -95.569133050381808, 29.667710171550969 ], [ -95.568965049734345, 29.667063171082756 ], [ -95.568923049944118, 29.666690170737979 ], [ -95.568828049997208, 29.666245171134534 ], [ -95.568688049477558, 29.664548170528455 ], [ -95.56869205039348, 29.663876170361338 ], [ -95.568706049948432, 29.663618170111061 ], [ -95.56877605034542, 29.662945170677229 ], [ -95.568870049886456, 29.662192170230991 ], [ -95.568890049882981, 29.662054170373519 ], [ -95.568941049727044, 29.661785170044229 ], [ -95.568968049426104, 29.661604169802207 ], [ -95.569033049984711, 29.661395170447019 ], [ -95.569679050020227, 29.659376169954484 ], [ -95.569903050228078, 29.658774169531966 ], [ -95.57003105001391, 29.658462169259057 ], [ -95.57020804957655, 29.658014169149432 ], [ -95.570530050081331, 29.657183169236252 ], [ -95.570613049923182, 29.65696716891388 ], [ -95.570677050327475, 29.656731169333856 ], [ -95.570721050513782, 29.656559169346103 ], [ -95.570777049935671, 29.656310168845682 ], [ -95.570784049918942, 29.656220168567216 ], [ -95.570798050199954, 29.656021169149223 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 203, "Tract": "48201511600", "Area_SqMi": 0.75253106778876688, "total_2009": 1413, "total_2010": 1401, "total_2011": 1484, "total_2012": 1837, "total_2013": 1764, "total_2014": 1665, "total_2015": 1484, "total_2016": 1546, "total_2017": 1454, "total_2018": 1457, "total_2019": 1471, "total_2020": 1375, "age1": 292, "age2": 619, "age3": 359, "earn1": 238, "earn2": 457, "earn3": 575, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 66, "naics_s05": 88, "naics_s06": 351, "naics_s07": 125, "naics_s08": 17, "naics_s09": 4, "naics_s10": 39, "naics_s11": 172, "naics_s12": 36, "naics_s13": 0, "naics_s14": 1, "naics_s15": 33, "naics_s16": 24, "naics_s17": 19, "naics_s18": 279, "naics_s19": 16, "naics_s20": 0, "race1": 1006, "race2": 160, "race3": 17, "race4": 63, "race5": 5, "race6": 19, "ethnicity1": 606, "ethnicity2": 664, "edu1": 333, "edu2": 240, "edu3": 259, "edu4": 146, "Shape_Length": 21133.2155351287, "Shape_Area": 20979278.200156141, "total_2021": 1313, "total_2022": 1270 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.382618008575733, 29.813945207412644 ], [ -95.382583009159106, 29.813696207758671 ], [ -95.382508009030474, 29.813698207193283 ], [ -95.382472008984166, 29.813313207144258 ], [ -95.382458009386795, 29.813263207129641 ], [ -95.38228100895185, 29.812592207733257 ], [ -95.382133008270742, 29.811918207486102 ], [ -95.382068008678942, 29.811487207125079 ], [ -95.382051009132994, 29.811376207105774 ], [ -95.382045009205584, 29.81123720673822 ], [ -95.382024009130589, 29.81054720735187 ], [ -95.3820170083806, 29.80977620714264 ], [ -95.382016008461548, 29.809575206772347 ], [ -95.382011008516088, 29.808790206961259 ], [ -95.382005008449795, 29.808398206922732 ], [ -95.381988008287252, 29.80756820624514 ], [ -95.381975008542582, 29.80679520654353 ], [ -95.381968008762968, 29.806326205665624 ], [ -95.381965008617058, 29.806085206056814 ], [ -95.381953008571458, 29.805363205740445 ], [ -95.381939008196795, 29.804658205986531 ], [ -95.381924008640155, 29.803853205855322 ], [ -95.381931008637878, 29.803711205374594 ], [ -95.381918008687691, 29.803248205425433 ], [ -95.381914008537052, 29.803100205069782 ], [ -95.381910008810209, 29.802662205002534 ], [ -95.381906008698849, 29.80243320508167 ], [ -95.381899008337825, 29.802084204939607 ], [ -95.38189700863748, 29.802000205158219 ], [ -95.381888007953449, 29.801601205388469 ], [ -95.381881008289099, 29.801229204674058 ], [ -95.381868007990576, 29.800530204780127 ], [ -95.381861008236129, 29.799839204438349 ], [ -95.381857008420795, 29.799290204633657 ], [ -95.381855008303177, 29.799148204763505 ], [ -95.381849007893848, 29.798473204471751 ], [ -95.381841007901485, 29.79778820463078 ], [ -95.381826008046673, 29.797362203806248 ], [ -95.381492008384086, 29.797120203966607 ], [ -95.38083600745648, 29.796629204134749 ], [ -95.380710007281692, 29.796534204337586 ], [ -95.380093007567055, 29.796065204260035 ], [ -95.378795007241408, 29.79510020423141 ], [ -95.378664007479458, 29.795010204313336 ], [ -95.377976006459861, 29.794506204058127 ], [ -95.377440007225516, 29.794117203865575 ], [ -95.377237006248535, 29.793972203848153 ], [ -95.377055006928472, 29.793842203719361 ], [ -95.376973006162231, 29.793782203787931 ], [ -95.376277006155021, 29.79330820342841 ], [ -95.376095005926658, 29.793149203137805 ], [ -95.376061006328271, 29.793124203750281 ], [ -95.375427006673974, 29.792640203552846 ], [ -95.374838006041045, 29.792199203868947 ], [ -95.37438300550231, 29.791862203362275 ], [ -95.374208005458698, 29.791714203478524 ], [ -95.373649006026611, 29.791319203072764 ], [ -95.373202005705679, 29.790984202869801 ], [ -95.372756005449645, 29.790642202740816 ], [ -95.372116004868829, 29.79018020342054 ], [ -95.372023005243619, 29.790104203504633 ], [ -95.371899005555647, 29.790002202804221 ], [ -95.371929004887093, 29.790768203655865 ], [ -95.371852005270597, 29.792212203708029 ], [ -95.371823005467249, 29.792756203375848 ], [ -95.371828005458752, 29.793034203814265 ], [ -95.371798005251208, 29.793871204151039 ], [ -95.371854004958067, 29.79705920457797 ], [ -95.371881005560624, 29.798018204448677 ], [ -95.371884005328525, 29.798138204426959 ], [ -95.371888005802973, 29.798274204890141 ], [ -95.371921005432327, 29.799500205388853 ], [ -95.371932005906814, 29.799883204816151 ], [ -95.371945005612233, 29.800045205149083 ], [ -95.37196800562208, 29.800322205469023 ], [ -95.372147005529996, 29.801435205757695 ], [ -95.372588006300475, 29.803724206063961 ], [ -95.372605006176698, 29.803815205932704 ], [ -95.372635006459518, 29.803971205690758 ], [ -95.372668005649871, 29.804142205651765 ], [ -95.373072006639148, 29.806220206487854 ], [ -95.373338006095878, 29.807509207033583 ], [ -95.373360005974632, 29.80761520682913 ], [ -95.373382006550784, 29.807722206775267 ], [ -95.373583006843688, 29.80869420695652 ], [ -95.373802006044627, 29.809340207406706 ], [ -95.374061007124624, 29.810063206816118 ], [ -95.374264006405156, 29.810666206971081 ], [ -95.375291007396513, 29.813214208060636 ], [ -95.37549500722875, 29.813224207730165 ], [ -95.37576500749374, 29.813260207623948 ], [ -95.375882006844492, 29.813274207648064 ], [ -95.37613200700558, 29.813314207386632 ], [ -95.376521007590426, 29.813407207666373 ], [ -95.376722007451903, 29.81345520812291 ], [ -95.377214007244419, 29.813568208019309 ], [ -95.377669007862124, 29.813665207969287 ], [ -95.37816100741837, 29.8137942074144 ], [ -95.379158007763294, 29.813981207329878 ], [ -95.380003007875587, 29.81397220757513 ], [ -95.382484009229643, 29.81394620796889 ], [ -95.382618008575733, 29.813945207412644 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 204, "Tract": "48201520100", "Area_SqMi": 1.1392927070289647, "total_2009": 8743, "total_2010": 7867, "total_2011": 8331, "total_2012": 7398, "total_2013": 7755, "total_2014": 8111, "total_2015": 8164, "total_2016": 8074, "total_2017": 7413, "total_2018": 7151, "total_2019": 7017, "total_2020": 6924, "age1": 1493, "age2": 4180, "age3": 1551, "earn1": 1071, "earn2": 1807, "earn3": 4346, "naics_s01": 0, "naics_s02": 7, "naics_s03": 2, "naics_s04": 889, "naics_s05": 290, "naics_s06": 1075, "naics_s07": 553, "naics_s08": 180, "naics_s09": 81, "naics_s10": 20, "naics_s11": 56, "naics_s12": 1150, "naics_s13": 405, "naics_s14": 1043, "naics_s15": 512, "naics_s16": 75, "naics_s17": 93, "naics_s18": 753, "naics_s19": 40, "naics_s20": 0, "race1": 5289, "race2": 1044, "race3": 83, "race4": 702, "race5": 9, "race6": 97, "ethnicity1": 4618, "ethnicity2": 2606, "edu1": 1324, "edu2": 1395, "edu3": 1567, "edu4": 1445, "Shape_Length": 23357.594493744127, "Shape_Area": 31761530.753011677, "total_2021": 6629, "total_2022": 7224 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.468236030330715, 29.802911202271311 ], [ -95.46822202984022, 29.801982202567853 ], [ -95.468203030221403, 29.801275202477687 ], [ -95.468202030056602, 29.800361201778344 ], [ -95.468176029922532, 29.799512201501898 ], [ -95.468174030431712, 29.798664201624177 ], [ -95.468153030394063, 29.797794201089268 ], [ -95.468151029972134, 29.797704200945731 ], [ -95.468140030430504, 29.797245201731286 ], [ -95.468134029806862, 29.796946201445717 ], [ -95.468151030532567, 29.796091200652491 ], [ -95.468155029971527, 29.795608200920466 ], [ -95.468166030041772, 29.795344201267334 ], [ -95.468149029828737, 29.794576200952243 ], [ -95.4681230299296, 29.793694200670132 ], [ -95.468112029717773, 29.792844200233777 ], [ -95.468102029916963, 29.792166200492936 ], [ -95.468109029789403, 29.791832200533143 ], [ -95.468105030289763, 29.791282199838612 ], [ -95.468070029894832, 29.78947619966068 ], [ -95.468066030015365, 29.788673199641501 ], [ -95.468068030163053, 29.787859199151278 ], [ -95.468052029577379, 29.78701819925687 ], [ -95.468006029862622, 29.786514198711487 ], [ -95.468005029812971, 29.785614199354026 ], [ -95.468006029749887, 29.785054199097363 ], [ -95.468006029790715, 29.784738198525481 ], [ -95.468003029990086, 29.784469198618531 ], [ -95.467777029929735, 29.78447519915105 ], [ -95.464639028528978, 29.784436199210727 ], [ -95.463700028304388, 29.784455199194458 ], [ -95.462679028280817, 29.784460198520073 ], [ -95.462349027678997, 29.78444919874644 ], [ -95.461769028342218, 29.784432198982039 ], [ -95.461605028109773, 29.784421198974176 ], [ -95.460874027663294, 29.78430919844984 ], [ -95.459849027711101, 29.784096198770708 ], [ -95.459463027242137, 29.784002198968558 ], [ -95.459210027374141, 29.783924198826497 ], [ -95.458969026933389, 29.783857198858254 ], [ -95.458634026927115, 29.78374819903825 ], [ -95.45846102653438, 29.783678199115755 ], [ -95.457946027137851, 29.78342919865992 ], [ -95.457421026246536, 29.783127198660146 ], [ -95.456958026581191, 29.782850198555295 ], [ -95.456811026203809, 29.782771198397889 ], [ -95.456658026395132, 29.782687198602726 ], [ -95.456441026271108, 29.78258919903125 ], [ -95.455503025777091, 29.782025199025114 ], [ -95.454129025603848, 29.781117198730765 ], [ -95.454098025410346, 29.781096198214083 ], [ -95.454051026275664, 29.781063198027926 ], [ -95.453943025572883, 29.780986198524076 ], [ -95.453920025419336, 29.78097119826802 ], [ -95.453875026121736, 29.780942198178693 ], [ -95.453802025379829, 29.781038198727327 ], [ -95.453728025232763, 29.781117198623555 ], [ -95.45364702593848, 29.781201198955127 ], [ -95.453491026046066, 29.781363198585833 ], [ -95.453145025563416, 29.781847198755393 ], [ -95.452776025985557, 29.782428199162396 ], [ -95.452535025192816, 29.782926199248127 ], [ -95.452389025041128, 29.783216198657961 ], [ -95.452360025267893, 29.783259199218804 ], [ -95.452322025737459, 29.783361199178472 ], [ -95.452291025856724, 29.783454199130787 ], [ -95.452161025029767, 29.783789198708657 ], [ -95.452083025567489, 29.784113199491784 ], [ -95.452022025095303, 29.784661199130014 ], [ -95.452032025514058, 29.784817199174437 ], [ -95.452030025634741, 29.785812199194467 ], [ -95.452177025567096, 29.787515199571729 ], [ -95.452239026046726, 29.78808320029475 ], [ -95.452311025371259, 29.789332200202853 ], [ -95.452317025477711, 29.789860199986812 ], [ -95.452291026031233, 29.790157200478557 ], [ -95.452263025625214, 29.790866200955396 ], [ -95.452222026129689, 29.79116420071912 ], [ -95.451745025661722, 29.793223201141668 ], [ -95.451740025916862, 29.793246200711639 ], [ -95.451688025698104, 29.793468201062797 ], [ -95.451618025365278, 29.793758200848703 ], [ -95.451377025496285, 29.7947572012094 ], [ -95.451270026111914, 29.795017201430884 ], [ -95.451641025442143, 29.795291201593265 ], [ -95.451906026332338, 29.795486201499244 ], [ -95.451944025958213, 29.795514201615045 ], [ -95.452054026027866, 29.795595201291494 ], [ -95.452280025807312, 29.795762201796286 ], [ -95.452655025786612, 29.796035201810017 ], [ -95.453128026448155, 29.796378201910446 ], [ -95.453894026313236, 29.796916201908218 ], [ -95.455794026985274, 29.798326202099627 ], [ -95.458633028003831, 29.800478201888257 ], [ -95.459379027858944, 29.80098620234093 ], [ -95.459534028294428, 29.801100202767163 ], [ -95.460058028453645, 29.801483202407816 ], [ -95.461059028651619, 29.802204202765541 ], [ -95.461484028933214, 29.802500202829343 ], [ -95.46229002923846, 29.803067202545272 ], [ -95.462539029009562, 29.803239202648893 ], [ -95.462692029078113, 29.803030203095947 ], [ -95.462894029217907, 29.802936202814568 ], [ -95.464583029974008, 29.802939202710778 ], [ -95.464939029583448, 29.802930202525449 ], [ -95.466166029877513, 29.80292520220717 ], [ -95.46648302996492, 29.802924202498442 ], [ -95.466879030450485, 29.802921202472096 ], [ -95.468236030330715, 29.802911202271311 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 205, "Tract": "48201453800", "Area_SqMi": 0.70987318261211974, "total_2009": 319, "total_2010": 425, "total_2011": 378, "total_2012": 324, "total_2013": 320, "total_2014": 300, "total_2015": 340, "total_2016": 289, "total_2017": 299, "total_2018": 413, "total_2019": 489, "total_2020": 332, "age1": 84, "age2": 220, "age3": 83, "earn1": 52, "earn2": 91, "earn3": 244, "naics_s01": 12, "naics_s02": 102, "naics_s03": 0, "naics_s04": 167, "naics_s05": 14, "naics_s06": 9, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 3, "naics_s12": 20, "naics_s13": 0, "naics_s14": 29, "naics_s15": 0, "naics_s16": 3, "naics_s17": 0, "naics_s18": 17, "naics_s19": 3, "naics_s20": 0, "race1": 259, "race2": 72, "race3": 3, "race4": 44, "race5": 0, "race6": 9, "ethnicity1": 205, "ethnicity2": 182, "edu1": 86, "edu2": 65, "edu3": 90, "edu4": 62, "Shape_Length": 24508.477145695688, "Shape_Area": 19790049.371131368, "total_2021": 386, "total_2022": 387 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.623177063957357, 29.674448171282744 ], [ -95.623185063776049, 29.674303170792228 ], [ -95.622894064123685, 29.674144171278847 ], [ -95.621855063643807, 29.673577171010216 ], [ -95.621228063366573, 29.673236170634841 ], [ -95.619446063584235, 29.672226170167292 ], [ -95.619108063552559, 29.672037170536598 ], [ -95.618930063173849, 29.671937170827437 ], [ -95.618860062594536, 29.671900170641884 ], [ -95.618758062814962, 29.671845170773278 ], [ -95.617979062489852, 29.671429170245307 ], [ -95.617779062704287, 29.671321170107177 ], [ -95.617579062279134, 29.671213170543172 ], [ -95.616082062167152, 29.670416169954056 ], [ -95.612766061474375, 29.668569170488961 ], [ -95.612530061694102, 29.668437170096421 ], [ -95.612373061551736, 29.668333170435464 ], [ -95.611930061323775, 29.668037170398684 ], [ -95.610032060290067, 29.666995169933887 ], [ -95.609930061021814, 29.666937169909918 ], [ -95.6091150602917, 29.666540170067162 ], [ -95.608737060540292, 29.666326169462657 ], [ -95.608031059912449, 29.665925169439348 ], [ -95.607577060263779, 29.665666169678882 ], [ -95.605985059416057, 29.664762169095265 ], [ -95.605473059570471, 29.664472169809443 ], [ -95.604731059632599, 29.664130169180897 ], [ -95.60276805856715, 29.66322816959612 ], [ -95.602538058147871, 29.663122168955621 ], [ -95.602062058325856, 29.662903169303522 ], [ -95.60119605783639, 29.662505169561069 ], [ -95.601021058067133, 29.662424169266369 ], [ -95.600715058008348, 29.662283169416451 ], [ -95.60045605843554, 29.662164169086239 ], [ -95.600025057888416, 29.661966168976342 ], [ -95.599180057859698, 29.661577169342699 ], [ -95.598953057176629, 29.661473169258734 ], [ -95.597845057613569, 29.660964168995307 ], [ -95.597846057505024, 29.661042168735161 ], [ -95.597851057520472, 29.661674168980429 ], [ -95.597857056820587, 29.662353169557466 ], [ -95.597919056877942, 29.663019169062188 ], [ -95.598066057681748, 29.663648169398012 ], [ -95.598248057251382, 29.664136169724479 ], [ -95.598415057777416, 29.664487170048751 ], [ -95.598875057816912, 29.66521917031589 ], [ -95.599192057720572, 29.665628169974042 ], [ -95.599317058040569, 29.665759170316957 ], [ -95.599440057434151, 29.66588716989046 ], [ -95.599886058226943, 29.666266169682597 ], [ -95.600561058099615, 29.666801169788226 ], [ -95.601230058533048, 29.667338170324143 ], [ -95.601529057991371, 29.667576170198345 ], [ -95.601911058451236, 29.667884170534762 ], [ -95.602237059056591, 29.668135170514081 ], [ -95.602598058839988, 29.668416170499317 ], [ -95.603166058908869, 29.668967170755373 ], [ -95.603196059269393, 29.669004170905801 ], [ -95.603681058617155, 29.669599170236904 ], [ -95.604054058955597, 29.670311170287853 ], [ -95.60418505885518, 29.670683171189783 ], [ -95.604310059416434, 29.671057170715496 ], [ -95.604401059132712, 29.671475171305818 ], [ -95.604463059678338, 29.67185517106974 ], [ -95.604494059303718, 29.672508171244079 ], [ -95.604468059568148, 29.672820171350761 ], [ -95.604388059095569, 29.673313171647894 ], [ -95.604291059268419, 29.673680171811455 ], [ -95.604214059509829, 29.67392717134226 ], [ -95.604138059604679, 29.674125171479471 ], [ -95.604017059247852, 29.674443171606143 ], [ -95.603897059856465, 29.674727171358352 ], [ -95.603741058857807, 29.675125171942653 ], [ -95.603256059328288, 29.676294171683931 ], [ -95.603027058898405, 29.676844172206781 ], [ -95.602827059658864, 29.677439172371407 ], [ -95.602645058952078, 29.678051172353769 ], [ -95.60372805971096, 29.67835017270389 ], [ -95.60425005967268, 29.678500172362792 ], [ -95.604689059962425, 29.678604172012864 ], [ -95.605394059990971, 29.678804172134129 ], [ -95.608247060721979, 29.679704172511407 ], [ -95.608310060433041, 29.679578172520927 ], [ -95.60833306048697, 29.679514172816745 ], [ -95.608613061221007, 29.678769172587085 ], [ -95.608738060549257, 29.678438172102261 ], [ -95.608787061277781, 29.678303171905984 ], [ -95.608908060987446, 29.677974172175539 ], [ -95.609151060980025, 29.677314172199111 ], [ -95.609218060654797, 29.677132171840324 ], [ -95.609429060788486, 29.676570171941488 ], [ -95.609468060589663, 29.67646417158948 ], [ -95.609758060447277, 29.675679171887282 ], [ -95.609797060885086, 29.675603171304552 ], [ -95.609846060708037, 29.675542172000082 ], [ -95.60987806097522, 29.675517171534764 ], [ -95.609909061445705, 29.675494171251273 ], [ -95.609982060807397, 29.675459171502805 ], [ -95.610066061228039, 29.675439171271545 ], [ -95.610160061480386, 29.675431171918838 ], [ -95.611258061334794, 29.675417171098232 ], [ -95.611869061243212, 29.675414171148816 ], [ -95.612061061847456, 29.675414171821725 ], [ -95.612295062002204, 29.675413171519409 ], [ -95.61308806192892, 29.675410171195484 ], [ -95.613383061553279, 29.675409171286102 ], [ -95.61352506204932, 29.675413171059947 ], [ -95.61364806223915, 29.675407171875914 ], [ -95.614029061740041, 29.675406171250312 ], [ -95.614259061923917, 29.675401171508305 ], [ -95.61433706171097, 29.675399171480169 ], [ -95.614442062534479, 29.675402171459908 ], [ -95.614569061969931, 29.67540617170657 ], [ -95.614797061809014, 29.675404171351193 ], [ -95.615006062424186, 29.675403171476191 ], [ -95.615103062254406, 29.675402171285871 ], [ -95.615234062139209, 29.675402171391024 ], [ -95.615449061889521, 29.675401171748859 ], [ -95.615736062073196, 29.675400171139767 ], [ -95.616119062530316, 29.675397171593644 ], [ -95.616472062902105, 29.675395171128379 ], [ -95.616787062930442, 29.675393171700986 ], [ -95.61843306330546, 29.67538717087476 ], [ -95.618657063637883, 29.675386171364366 ], [ -95.619177063553096, 29.675385171539617 ], [ -95.620322063232678, 29.675376170876582 ], [ -95.620805063261969, 29.675372170945369 ], [ -95.621390063447663, 29.675368170781063 ], [ -95.622125064250469, 29.675362171233008 ], [ -95.622789064103017, 29.675357171251989 ], [ -95.623091064538983, 29.675346171083302 ], [ -95.623109064762303, 29.675164171380249 ], [ -95.623150064757809, 29.674845171320264 ], [ -95.623177064081133, 29.674496171270857 ], [ -95.623177063957357, 29.674448171282744 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 206, "Tract": "48201454000", "Area_SqMi": 0.80687991240838342, "total_2009": 1283, "total_2010": 1284, "total_2011": 1393, "total_2012": 1267, "total_2013": 1272, "total_2014": 902, "total_2015": 953, "total_2016": 876, "total_2017": 927, "total_2018": 993, "total_2019": 958, "total_2020": 998, "age1": 323, "age2": 518, "age3": 227, "earn1": 427, "earn2": 399, "earn3": 242, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 9, "naics_s06": 0, "naics_s07": 448, "naics_s08": 21, "naics_s09": 1, "naics_s10": 5, "naics_s11": 1, "naics_s12": 73, "naics_s13": 0, "naics_s14": 0, "naics_s15": 9, "naics_s16": 235, "naics_s17": 0, "naics_s18": 205, "naics_s19": 53, "naics_s20": 0, "race1": 646, "race2": 265, "race3": 7, "race4": 133, "race5": 3, "race6": 14, "ethnicity1": 709, "ethnicity2": 359, "edu1": 170, "edu2": 241, "edu3": 192, "edu4": 142, "Shape_Length": 22137.694890168776, "Shape_Area": 22494430.969173837, "total_2021": 1047, "total_2022": 1068 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.664700076004877, 29.697539174615631 ], [ -95.664644075984683, 29.697511174433618 ], [ -95.664423075982157, 29.697398174076199 ], [ -95.664155075764484, 29.697261174564083 ], [ -95.663931075187861, 29.697147174339694 ], [ -95.663666075957011, 29.696988174228434 ], [ -95.663023075673664, 29.696598173868601 ], [ -95.66266407522221, 29.696407173873368 ], [ -95.661947074851298, 29.696025174144609 ], [ -95.66182007541282, 29.695940173726381 ], [ -95.661803074779058, 29.695928173902256 ], [ -95.661754075534787, 29.695895174084555 ], [ -95.661491074658798, 29.695716173990022 ], [ -95.660956074827055, 29.695432174374936 ], [ -95.660787074812902, 29.695341173920081 ], [ -95.660183074303376, 29.69498217345981 ], [ -95.659918074225132, 29.694824173759134 ], [ -95.659384074378409, 29.69454517405303 ], [ -95.659048073854095, 29.69437317360601 ], [ -95.658468074168169, 29.694058173339613 ], [ -95.658427074065443, 29.694036173451636 ], [ -95.658333074167743, 29.693985174074275 ], [ -95.657949074317614, 29.693764174007544 ], [ -95.657937073622776, 29.693757173480563 ], [ -95.657566074065414, 29.693544173464179 ], [ -95.656885073397035, 29.693152173713781 ], [ -95.656648074037321, 29.69301617343783 ], [ -95.656561074033235, 29.692966173418334 ], [ -95.656240073756891, 29.692783173472602 ], [ -95.655321073117179, 29.692262173919648 ], [ -95.655270073387186, 29.692233173485587 ], [ -95.655201073297434, 29.692194173727643 ], [ -95.655008073170023, 29.692091173328311 ], [ -95.65466907297494, 29.691905173523619 ], [ -95.654272073070004, 29.691660173704566 ], [ -95.654162072927562, 29.691621173462334 ], [ -95.6540850724395, 29.691593173789318 ], [ -95.652850073113484, 29.691158173381467 ], [ -95.652762073067635, 29.691127172979154 ], [ -95.652730072946724, 29.69111817370143 ], [ -95.652693072923398, 29.691107173792897 ], [ -95.652201072046637, 29.690831173489375 ], [ -95.652118072385377, 29.690784173287138 ], [ -95.651907072244498, 29.690665173315264 ], [ -95.651454072081464, 29.690410173466315 ], [ -95.651022072508781, 29.690168173229555 ], [ -95.649986072125657, 29.689585173462458 ], [ -95.649639071632876, 29.68939317352871 ], [ -95.649249071442824, 29.689174173440513 ], [ -95.649008071807827, 29.689038172651472 ], [ -95.647489070862207, 29.688186172792047 ], [ -95.64725207119352, 29.688050173159578 ], [ -95.647007071454581, 29.68791617244888 ], [ -95.646855070971483, 29.687830172723896 ], [ -95.646055070952642, 29.68736017273336 ], [ -95.645314070579573, 29.686924172709499 ], [ -95.644531070556141, 29.686463172982673 ], [ -95.643961069685346, 29.686127173049758 ], [ -95.643737069944322, 29.68599517269881 ], [ -95.643643070005908, 29.685939172845128 ], [ -95.643640069658119, 29.686013172168121 ], [ -95.643641069791968, 29.686566172861259 ], [ -95.643639069722184, 29.686730172337498 ], [ -95.643629070072208, 29.687116173158653 ], [ -95.643632069774014, 29.687171172845328 ], [ -95.643629070238291, 29.687229173206529 ], [ -95.643647070156234, 29.687924173228378 ], [ -95.643649069829451, 29.688201172726437 ], [ -95.643650070243837, 29.688266172967062 ], [ -95.643652070363601, 29.688372172738568 ], [ -95.643681070499525, 29.689691173551466 ], [ -95.643709070298414, 29.690373173277429 ], [ -95.643741070651544, 29.691164173361763 ], [ -95.643748069984269, 29.692014173727092 ], [ -95.643741070185897, 29.692369173820239 ], [ -95.643730070604533, 29.692983174255318 ], [ -95.643758070350884, 29.693816174391255 ], [ -95.643814070509791, 29.695418174777011 ], [ -95.643814070932066, 29.695506174740309 ], [ -95.643820070108831, 29.696491174527903 ], [ -95.643823070217664, 29.696996174706388 ], [ -95.643840070847503, 29.699441175113122 ], [ -95.643876070231158, 29.700617175900895 ], [ -95.643883070438093, 29.700858175201528 ], [ -95.643923070951857, 29.702180175789991 ], [ -95.643978070790382, 29.703966176547393 ], [ -95.644614070969169, 29.703957175880081 ], [ -95.644821071487769, 29.703950176606778 ], [ -95.645148070995546, 29.703926176555765 ], [ -95.645517071383296, 29.70388617639523 ], [ -95.645797071188213, 29.703844176374986 ], [ -95.646130071530607, 29.703782176041816 ], [ -95.646374071979366, 29.70373017582353 ], [ -95.646526071198437, 29.703692176362587 ], [ -95.646852071921401, 29.703603175929242 ], [ -95.64707807136061, 29.703534176075859 ], [ -95.647284072159806, 29.703467176347562 ], [ -95.647509072233163, 29.703385175649213 ], [ -95.647641071962397, 29.703331176377041 ], [ -95.647932071602042, 29.70320717561124 ], [ -95.648284072279125, 29.70304017574562 ], [ -95.648372072255384, 29.702993175565052 ], [ -95.648767071730092, 29.702775175908275 ], [ -95.649000072014786, 29.702643175749966 ], [ -95.649274072550512, 29.702490175373089 ], [ -95.649622072366768, 29.702295175718419 ], [ -95.649960072507341, 29.702125175734082 ], [ -95.650308072681838, 29.701968175395852 ], [ -95.650457072780128, 29.70190817560874 ], [ -95.650643072469109, 29.701833175250336 ], [ -95.650851072946722, 29.70175817514502 ], [ -95.650980072703391, 29.701716175538923 ], [ -95.651255072537921, 29.701630175726923 ], [ -95.652183073315399, 29.701349175838125 ], [ -95.652556072998763, 29.701236175343077 ], [ -95.654115073575667, 29.700760174871061 ], [ -95.655042073345243, 29.700478175530282 ], [ -95.656964074123977, 29.699893175435953 ], [ -95.657530074045113, 29.699726174546761 ], [ -95.657714074615171, 29.699677174964219 ], [ -95.658127074049318, 29.699576174813725 ], [ -95.65859907469742, 29.699477174478172 ], [ -95.658919074331877, 29.699425175057897 ], [ -95.65949707457888, 29.699351174740755 ], [ -95.659868075244546, 29.699318174395909 ], [ -95.660188074687383, 29.699300174362069 ], [ -95.660505074973045, 29.699291174567374 ], [ -95.660814075052855, 29.699290174797696 ], [ -95.661253075194878, 29.699302174474401 ], [ -95.6616100748722, 29.699322174699557 ], [ -95.661948075779293, 29.699351175153701 ], [ -95.662258075197329, 29.699389174545761 ], [ -95.662663075986984, 29.699448174285905 ], [ -95.663163076017852, 29.699540174602959 ], [ -95.663483075910264, 29.69961217445783 ], [ -95.663659076114044, 29.699656174972514 ], [ -95.664074076118908, 29.699769174662748 ], [ -95.664336075867539, 29.699852174700773 ], [ -95.664412076086421, 29.699549174727711 ], [ -95.664455076427572, 29.699333174377969 ], [ -95.664492075920677, 29.699109174513186 ], [ -95.664516076238584, 29.69891217478748 ], [ -95.664546075517535, 29.698681174069101 ], [ -95.664570075989559, 29.698457174431862 ], [ -95.664587075812236, 29.698303174138339 ], [ -95.664609075522435, 29.697866174539147 ], [ -95.664700076004877, 29.697539174615631 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 207, "Tract": "48201312502", "Area_SqMi": 0.31251569297045267, "total_2009": 1512, "total_2010": 1221, "total_2011": 1174, "total_2012": 1428, "total_2013": 1401, "total_2014": 1599, "total_2015": 1307, "total_2016": 1337, "total_2017": 1369, "total_2018": 1365, "total_2019": 1285, "total_2020": 1138, "age1": 254, "age2": 635, "age3": 388, "earn1": 565, "earn2": 404, "earn3": 308, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 7, "naics_s05": 41, "naics_s06": 16, "naics_s07": 131, "naics_s08": 5, "naics_s09": 14, "naics_s10": 9, "naics_s11": 34, "naics_s12": 66, "naics_s13": 0, "naics_s14": 200, "naics_s15": 0, "naics_s16": 595, "naics_s17": 63, "naics_s18": 64, "naics_s19": 29, "naics_s20": 0, "race1": 648, "race2": 521, "race3": 9, "race4": 75, "race5": 1, "race6": 23, "ethnicity1": 938, "ethnicity2": 339, "edu1": 259, "edu2": 315, "edu3": 283, "edu4": 166, "Shape_Length": 12721.970850815233, "Shape_Area": 8712402.644062072, "total_2021": 1227, "total_2022": 1277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.383893005387094, 29.732983190739539 ], [ -95.384479005639577, 29.732252190426998 ], [ -95.383732005701518, 29.732321190759624 ], [ -95.383077005209628, 29.732388191058881 ], [ -95.382402005178989, 29.732437191339205 ], [ -95.381768005437706, 29.732491190691945 ], [ -95.380471004542315, 29.732603190924699 ], [ -95.380352004684823, 29.73261319061502 ], [ -95.379823004988168, 29.732659191322032 ], [ -95.37916300426852, 29.732698190979168 ], [ -95.379015004539554, 29.73270719079472 ], [ -95.37789300450045, 29.732774190898905 ], [ -95.377718003847662, 29.732789191329299 ], [ -95.376224003572418, 29.732913190997831 ], [ -95.376020003735988, 29.732930191296958 ], [ -95.375302003638055, 29.732991191576204 ], [ -95.375208003858305, 29.732999191272715 ], [ -95.374884002910989, 29.733019190977085 ], [ -95.374175002734233, 29.73307419133684 ], [ -95.373455003285471, 29.733170191065753 ], [ -95.373000002595347, 29.733294191358237 ], [ -95.372817002632388, 29.733367191221937 ], [ -95.372522002775924, 29.733463191119498 ], [ -95.372245002945945, 29.733583191559404 ], [ -95.371945002527227, 29.733731191358508 ], [ -95.371768002822037, 29.733849191690076 ], [ -95.371723002141565, 29.733878191632986 ], [ -95.371652002815779, 29.733938191952447 ], [ -95.37146500222849, 29.734063192046754 ], [ -95.371266002603292, 29.734224191307966 ], [ -95.370999002196143, 29.734591192145331 ], [ -95.370674002235148, 29.734962191524811 ], [ -95.370290002610261, 29.735401192123177 ], [ -95.369707001704242, 29.736050192029435 ], [ -95.369458002634744, 29.73633919214058 ], [ -95.369092002533904, 29.736831192008204 ], [ -95.36936300236377, 29.736990192124548 ], [ -95.369667002326906, 29.737183192358664 ], [ -95.37019800187862, 29.737507192159214 ], [ -95.371036002937075, 29.738006192897089 ], [ -95.371893003287084, 29.738537192344857 ], [ -95.372743002945668, 29.739051192318289 ], [ -95.373599003015002, 29.739573192329704 ], [ -95.374461003115144, 29.740085192993455 ], [ -95.375329004021154, 29.7405991925148 ], [ -95.376187004359664, 29.741103192938279 ], [ -95.377048004562795, 29.741658192792432 ], [ -95.377624004726769, 29.740935192457655 ], [ -95.378061004652665, 29.740370192907754 ], [ -95.378536004891203, 29.739766192142568 ], [ -95.379101004395395, 29.739055192570891 ], [ -95.379555004852108, 29.738483192645365 ], [ -95.379986004937493, 29.737958191858912 ], [ -95.380593005271635, 29.737176192411198 ], [ -95.38103300558474, 29.736602191797434 ], [ -95.381336005224796, 29.736236191372228 ], [ -95.381500005693667, 29.736010191393184 ], [ -95.382066005139151, 29.735298191216121 ], [ -95.382686005942375, 29.734525191192677 ], [ -95.38295000569353, 29.734182191177396 ], [ -95.382983005501131, 29.734131191316834 ], [ -95.383378005518537, 29.73364219122314 ], [ -95.383893005387094, 29.732983190739539 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 208, "Tract": "48201520200", "Area_SqMi": 0.72662754693741338, "total_2009": 1901, "total_2010": 1615, "total_2011": 1942, "total_2012": 2214, "total_2013": 2264, "total_2014": 2099, "total_2015": 1830, "total_2016": 1633, "total_2017": 1828, "total_2018": 2153, "total_2019": 2561, "total_2020": 2344, "age1": 731, "age2": 1477, "age3": 500, "earn1": 388, "earn2": 804, "earn3": 1516, "naics_s01": 3, "naics_s02": 0, "naics_s03": 1, "naics_s04": 78, "naics_s05": 64, "naics_s06": 334, "naics_s07": 646, "naics_s08": 3, "naics_s09": 4, "naics_s10": 29, "naics_s11": 41, "naics_s12": 919, "naics_s13": 1, "naics_s14": 391, "naics_s15": 0, "naics_s16": 68, "naics_s17": 0, "naics_s18": 45, "naics_s19": 81, "naics_s20": 0, "race1": 1779, "race2": 659, "race3": 16, "race4": 195, "race5": 5, "race6": 54, "ethnicity1": 1908, "ethnicity2": 800, "edu1": 355, "edu2": 500, "edu3": 605, "edu4": 517, "Shape_Length": 18286.033282500208, "Shape_Area": 20257132.373139426, "total_2021": 2581, "total_2022": 2708 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484934034221993, 29.794915199969047 ], [ -95.484932034195452, 29.794453200190858 ], [ -95.484933034502887, 29.794146200236018 ], [ -95.484926034243031, 29.792921199929687 ], [ -95.484922034093373, 29.79221219929256 ], [ -95.484915034290907, 29.791609199785121 ], [ -95.48491103450408, 29.790750199579499 ], [ -95.484909033999813, 29.789262199337493 ], [ -95.484904033880639, 29.788263198432865 ], [ -95.484905033555606, 29.788159198996837 ], [ -95.484904034051027, 29.787309199132295 ], [ -95.484904033444764, 29.787045198978419 ], [ -95.484871033602914, 29.786356198041286 ], [ -95.484857034379431, 29.786060198823137 ], [ -95.484827034125047, 29.785351198163003 ], [ -95.484847033947702, 29.784643198168212 ], [ -95.484850033783147, 29.784536198375147 ], [ -95.484855033683544, 29.784342198379552 ], [ -95.484860034211465, 29.784146198154644 ], [ -95.484734033475135, 29.784145197962062 ], [ -95.484562034121481, 29.784148198466365 ], [ -95.481744033481633, 29.784028198482982 ], [ -95.48105003275414, 29.783998198138672 ], [ -95.479826032939883, 29.783971197875196 ], [ -95.478886032565626, 29.784020198299949 ], [ -95.477536032396515, 29.784043198177237 ], [ -95.475715031126398, 29.784005198031817 ], [ -95.475507031925517, 29.78401819830162 ], [ -95.475316031361317, 29.784032198592847 ], [ -95.47477203098731, 29.78405619844796 ], [ -95.474223031270796, 29.78406319884111 ], [ -95.473124031250833, 29.784195198852643 ], [ -95.472047030585472, 29.784294198150597 ], [ -95.470837029907486, 29.784381198484475 ], [ -95.469694029983401, 29.784462198189232 ], [ -95.46852802966842, 29.784464198987049 ], [ -95.468181029226045, 29.784469199076995 ], [ -95.468003029990086, 29.784469198618531 ], [ -95.468006029790715, 29.784738198525481 ], [ -95.468006029749887, 29.785054199097363 ], [ -95.468005029812971, 29.785614199354026 ], [ -95.468006029862622, 29.786514198711487 ], [ -95.468052029577379, 29.78701819925687 ], [ -95.468068030163053, 29.787859199151278 ], [ -95.468066030015365, 29.788673199641501 ], [ -95.468070029894832, 29.78947619966068 ], [ -95.468105030289763, 29.791282199838612 ], [ -95.468109029789403, 29.791832200533143 ], [ -95.468102029916963, 29.792166200492936 ], [ -95.468112029717773, 29.792844200233777 ], [ -95.4681230299296, 29.793694200670132 ], [ -95.468149029828737, 29.794576200952243 ], [ -95.46933703069881, 29.794560200551924 ], [ -95.469719030564065, 29.794555200378735 ], [ -95.470341030687436, 29.794548200371768 ], [ -95.470907030329968, 29.794537200257562 ], [ -95.471004030526871, 29.794538200599934 ], [ -95.47207703065142, 29.794531200216788 ], [ -95.473267031426545, 29.794525200785728 ], [ -95.473685030999789, 29.794524200918957 ], [ -95.474358032023531, 29.79451620059108 ], [ -95.47501503138939, 29.794531200314566 ], [ -95.475672032271035, 29.794545200347031 ], [ -95.477144032422274, 29.794554200648779 ], [ -95.478588032774127, 29.794574200582868 ], [ -95.479283033258355, 29.794588200005087 ], [ -95.480007032934793, 29.794602200032127 ], [ -95.480342033225071, 29.794607200232235 ], [ -95.483601034022001, 29.794654200258325 ], [ -95.483979034055267, 29.794710200550483 ], [ -95.484493034432347, 29.794842200029837 ], [ -95.484934034221993, 29.794915199969047 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 209, "Tract": "48201520700", "Area_SqMi": 0.75930967419891071, "total_2009": 2628, "total_2010": 2198, "total_2011": 2271, "total_2012": 1863, "total_2013": 2059, "total_2014": 2320, "total_2015": 3248, "total_2016": 3112, "total_2017": 3448, "total_2018": 3259, "total_2019": 4270, "total_2020": 2019, "age1": 521, "age2": 990, "age3": 423, "earn1": 408, "earn2": 736, "earn3": 790, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 207, "naics_s05": 94, "naics_s06": 62, "naics_s07": 506, "naics_s08": 74, "naics_s09": 6, "naics_s10": 55, "naics_s11": 36, "naics_s12": 110, "naics_s13": 0, "naics_s14": 177, "naics_s15": 0, "naics_s16": 335, "naics_s17": 9, "naics_s18": 205, "naics_s19": 54, "naics_s20": 0, "race1": 1371, "race2": 389, "race3": 15, "race4": 132, "race5": 2, "race6": 25, "ethnicity1": 1216, "ethnicity2": 718, "edu1": 323, "edu2": 383, "edu3": 379, "edu4": 328, "Shape_Length": 21271.418889893819, "Shape_Area": 21168254.14517013, "total_2021": 1818, "total_2022": 1934 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.51138704124709, 29.801024200830838 ], [ -95.511285041014176, 29.800885200657337 ], [ -95.511248040828974, 29.8007582008985 ], [ -95.511279040831951, 29.800522200060367 ], [ -95.51124204117292, 29.800219200559237 ], [ -95.511230041719713, 29.800161200733093 ], [ -95.511198041283876, 29.799988200690958 ], [ -95.511147041193851, 29.799878200261002 ], [ -95.511103041339354, 29.799818200473435 ], [ -95.511040041598605, 29.799757200692635 ], [ -95.510788040644115, 29.799603199948354 ], [ -95.510134041326083, 29.798859199844546 ], [ -95.510067040807357, 29.798783200308243 ], [ -95.510019040672134, 29.798729200415245 ], [ -95.509704040314546, 29.798460200378141 ], [ -95.509546040434429, 29.798358200459788 ], [ -95.508936040632264, 29.797964200093435 ], [ -95.50877204042466, 29.797904200001106 ], [ -95.508469040886382, 29.797827199711424 ], [ -95.508123040166737, 29.797667199723804 ], [ -95.507322040398705, 29.79732120018604 ], [ -95.507234040232078, 29.797293199631444 ], [ -95.507070039686681, 29.797266200049524 ], [ -95.506944039703669, 29.797276199805932 ], [ -95.506784040433516, 29.797276199647275 ], [ -95.506768039986397, 29.797276199697649 ], [ -95.506320039514662, 29.797166199557314 ], [ -95.50621304022205, 29.797128200312628 ], [ -95.506163039545285, 29.79710020016487 ], [ -95.506125040024301, 29.797067199949588 ], [ -95.50610003946116, 29.797018200120149 ], [ -95.505798040027528, 29.796171200114252 ], [ -95.505760039819421, 29.796121199711745 ], [ -95.505703039937487, 29.796083199964571 ], [ -95.505483039167615, 29.795995199583743 ], [ -95.505382039457174, 29.795984200108347 ], [ -95.505262040075465, 29.796011199483491 ], [ -95.505148039602815, 29.796048200091601 ], [ -95.504852039108272, 29.796143199450007 ], [ -95.504581039857143, 29.796253200044099 ], [ -95.504423039374785, 29.796302199433811 ], [ -95.504203039583828, 29.796330199703888 ], [ -95.50385003950143, 29.796313200124843 ], [ -95.503724039470001, 29.796352200003774 ], [ -95.503535038778466, 29.796429199804269 ], [ -95.503125038760118, 29.796665199655845 ], [ -95.50293603939582, 29.796725200417793 ], [ -95.502721038860415, 29.796774200125896 ], [ -95.502595038923261, 29.796791200170148 ], [ -95.502242039107657, 29.796714199757766 ], [ -95.501770038742904, 29.79658719967119 ], [ -95.501740038953898, 29.796577200049256 ], [ -95.50123403842278, 29.796406200390837 ], [ -95.500761038590028, 29.796268200062563 ], [ -95.500566038116574, 29.796185200214069 ], [ -95.500436038208449, 29.796149199885761 ], [ -95.500068038285335, 29.796048200144519 ], [ -95.500009038008344, 29.796010199847256 ], [ -95.499713037993743, 29.795966199729847 ], [ -95.499158037816827, 29.795923200287799 ], [ -95.498881037563109, 29.795857200158956 ], [ -95.498597037703973, 29.795752200038315 ], [ -95.498521038172839, 29.795703199706701 ], [ -95.498165037896428, 29.795662199723964 ], [ -95.497977037453339, 29.795638200388495 ], [ -95.497892037992898, 29.795632200405539 ], [ -95.497802037877008, 29.795616200390697 ], [ -95.497741038139836, 29.795600199812391 ], [ -95.497622038015876, 29.795556199784883 ], [ -95.49757003746177, 29.795530200270228 ], [ -95.497382037543716, 29.795395199497754 ], [ -95.497142037853635, 29.795161199675285 ], [ -95.496981037714789, 29.795001199720311 ], [ -95.496856037260258, 29.794850199938352 ], [ -95.496755037533376, 29.794731199914882 ], [ -95.496675037034251, 29.794640199348578 ], [ -95.496634036880508, 29.794654199861281 ], [ -95.496581036852845, 29.794671199375131 ], [ -95.496347037247958, 29.794749200100785 ], [ -95.495886036694642, 29.794803199506191 ], [ -95.495485037242048, 29.794838199661697 ], [ -95.495444036754776, 29.794838200046897 ], [ -95.495350037336308, 29.794839199497744 ], [ -95.493418036281923, 29.794863200041313 ], [ -95.493288036754024, 29.7948641995354 ], [ -95.493208036924173, 29.794865199965248 ], [ -95.492405036376383, 29.794871200255905 ], [ -95.492201036124811, 29.794877199879988 ], [ -95.491578035892687, 29.794873199871663 ], [ -95.491110036164216, 29.794882200459682 ], [ -95.490804036299039, 29.794886200338201 ], [ -95.489980035153508, 29.794912200032037 ], [ -95.489624035087232, 29.794928199913389 ], [ -95.489202035362254, 29.794961199818253 ], [ -95.488940035323324, 29.794959199929426 ], [ -95.488462035138966, 29.794941199776847 ], [ -95.488022035285184, 29.794949199984295 ], [ -95.487551034633853, 29.794936200009619 ], [ -95.487182034416719, 29.79492920036877 ], [ -95.487160035096679, 29.794929200626829 ], [ -95.484934034221993, 29.794915199969047 ], [ -95.484919034054556, 29.795420200193078 ], [ -95.484902034192515, 29.79600020070248 ], [ -95.484899034152576, 29.796379200500237 ], [ -95.484897033981682, 29.796537200374225 ], [ -95.48487203428158, 29.798143200592374 ], [ -95.484854034840595, 29.799154200736997 ], [ -95.484845034142154, 29.799400201086936 ], [ -95.484839034140805, 29.800437201636399 ], [ -95.484840034159632, 29.802843201756804 ], [ -95.486535034952894, 29.80283420212352 ], [ -95.487174034960788, 29.802849201585531 ], [ -95.487255034929802, 29.802851201347817 ], [ -95.488613035380766, 29.802883201920363 ], [ -95.48886703587263, 29.802889201341365 ], [ -95.489997035985709, 29.802920202096995 ], [ -95.491138036225593, 29.802946201772308 ], [ -95.491301036321033, 29.80294520131525 ], [ -95.491980035988988, 29.802959201974101 ], [ -95.493258036471204, 29.802980201758118 ], [ -95.493744037400475, 29.80300320131483 ], [ -95.49557103705439, 29.803047201374309 ], [ -95.496889038139756, 29.803042201106461 ], [ -95.497048037785518, 29.803042201157197 ], [ -95.497977038426185, 29.803047201240172 ], [ -95.499743038413158, 29.803027201133109 ], [ -95.500899039022215, 29.803021201679389 ], [ -95.501865038780707, 29.803009200904565 ], [ -95.502442039270719, 29.803028201606931 ], [ -95.503560039910454, 29.803036201128226 ], [ -95.504120039286079, 29.803041200986442 ], [ -95.50468703969598, 29.803049200842668 ], [ -95.505222039554909, 29.803056201592486 ], [ -95.505986039809159, 29.803071200824895 ], [ -95.506528039781642, 29.803081201311134 ], [ -95.50759304016853, 29.802995201247953 ], [ -95.507916040709887, 29.802969201301217 ], [ -95.50833504048957, 29.80294620109175 ], [ -95.508508040661454, 29.802942200674288 ], [ -95.508948040397783, 29.8028802006916 ], [ -95.509206040578732, 29.802825200579814 ], [ -95.509396041179258, 29.802773200657597 ], [ -95.509641040485278, 29.8026692008095 ], [ -95.509831041335588, 29.802565201100169 ], [ -95.509966040812031, 29.802475201360199 ], [ -95.510091041488351, 29.80237120056195 ], [ -95.510321040940113, 29.802057201070806 ], [ -95.510668041663379, 29.80153920038768 ], [ -95.511109040879575, 29.801210200237467 ], [ -95.511262041017829, 29.801103200163446 ], [ -95.51138704124709, 29.801024200830838 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 210, "Tract": "48201454100", "Area_SqMi": 0.67141871329408842, "total_2009": 299, "total_2010": 366, "total_2011": 299, "total_2012": 433, "total_2013": 453, "total_2014": 461, "total_2015": 498, "total_2016": 488, "total_2017": 329, "total_2018": 439, "total_2019": 445, "total_2020": 418, "age1": 137, "age2": 366, "age3": 120, "earn1": 136, "earn2": 241, "earn3": 246, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 6, "naics_s06": 2, "naics_s07": 108, "naics_s08": 11, "naics_s09": 1, "naics_s10": 0, "naics_s11": 9, "naics_s12": 6, "naics_s13": 0, "naics_s14": 13, "naics_s15": 209, "naics_s16": 183, "naics_s17": 0, "naics_s18": 65, "naics_s19": 7, "naics_s20": 0, "race1": 307, "race2": 223, "race3": 2, "race4": 85, "race5": 0, "race6": 6, "ethnicity1": 436, "ethnicity2": 187, "edu1": 97, "edu2": 113, "edu3": 153, "edu4": 123, "Shape_Length": 18506.475482975911, "Shape_Area": 18718004.58202666, "total_2021": 540, "total_2022": 623 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.664399076172373, 29.700068175079839 ], [ -95.664446075896009, 29.699888174922172 ], [ -95.664336075867539, 29.699852174700773 ], [ -95.664074076118908, 29.699769174662748 ], [ -95.663659076114044, 29.699656174972514 ], [ -95.663483075910264, 29.69961217445783 ], [ -95.663163076017852, 29.699540174602959 ], [ -95.662663075986984, 29.699448174285905 ], [ -95.662258075197329, 29.699389174545761 ], [ -95.661948075779293, 29.699351175153701 ], [ -95.6616100748722, 29.699322174699557 ], [ -95.661253075194878, 29.699302174474401 ], [ -95.660814075052855, 29.699290174797696 ], [ -95.660505074973045, 29.699291174567374 ], [ -95.660188074687383, 29.699300174362069 ], [ -95.659868075244546, 29.699318174395909 ], [ -95.65949707457888, 29.699351174740755 ], [ -95.658919074331877, 29.699425175057897 ], [ -95.65859907469742, 29.699477174478172 ], [ -95.658127074049318, 29.699576174813725 ], [ -95.657714074615171, 29.699677174964219 ], [ -95.657530074045113, 29.699726174546761 ], [ -95.656964074123977, 29.699893175435953 ], [ -95.655042073345243, 29.700478175530282 ], [ -95.654115073575667, 29.700760174871061 ], [ -95.652556072998763, 29.701236175343077 ], [ -95.652183073315399, 29.701349175838125 ], [ -95.651255072537921, 29.701630175726923 ], [ -95.650980072703391, 29.701716175538923 ], [ -95.650851072946722, 29.70175817514502 ], [ -95.650643072469109, 29.701833175250336 ], [ -95.650457072780128, 29.70190817560874 ], [ -95.650308072681838, 29.701968175395852 ], [ -95.649960072507341, 29.702125175734082 ], [ -95.649622072366768, 29.702295175718419 ], [ -95.649274072550512, 29.702490175373089 ], [ -95.649000072014786, 29.702643175749966 ], [ -95.648767071730092, 29.702775175908275 ], [ -95.648372072255384, 29.702993175565052 ], [ -95.648284072279125, 29.70304017574562 ], [ -95.647932071602042, 29.70320717561124 ], [ -95.647641071962397, 29.703331176377041 ], [ -95.647509072233163, 29.703385175649213 ], [ -95.647284072159806, 29.703467176347562 ], [ -95.64707807136061, 29.703534176075859 ], [ -95.646852071921401, 29.703603175929242 ], [ -95.646526071198437, 29.703692176362587 ], [ -95.646374071979366, 29.70373017582353 ], [ -95.646130071530607, 29.703782176041816 ], [ -95.645797071188213, 29.703844176374986 ], [ -95.645517071383296, 29.70388617639523 ], [ -95.645148070995546, 29.703926176555765 ], [ -95.644821071487769, 29.703950176606778 ], [ -95.644614070969169, 29.703957175880081 ], [ -95.643978070790382, 29.703966176547393 ], [ -95.643987071114807, 29.705321176877973 ], [ -95.643993070516473, 29.705404176602745 ], [ -95.644040070963939, 29.705961176684507 ], [ -95.644034070993357, 29.706271177133033 ], [ -95.644019071204227, 29.707210176771738 ], [ -95.644008071193625, 29.70783217742467 ], [ -95.644026070866531, 29.708927177688604 ], [ -95.644032071318065, 29.709084177414177 ], [ -95.644037071515257, 29.709244177637359 ], [ -95.644047071381522, 29.709426177121269 ], [ -95.644044071117676, 29.710238177168812 ], [ -95.644062070737036, 29.71074917731687 ], [ -95.644069071193798, 29.711056177888398 ], [ -95.644261071158567, 29.711056177638696 ], [ -95.644326070902764, 29.711044177600126 ], [ -95.645481071098246, 29.710909177590619 ], [ -95.646268072170358, 29.710842177613525 ], [ -95.649002072500707, 29.710627177365012 ], [ -95.651297073411101, 29.710425177399735 ], [ -95.65200307350716, 29.710339177496955 ], [ -95.652762073136898, 29.710269177664561 ], [ -95.654845074302756, 29.710100177242545 ], [ -95.658079075106315, 29.709830177422578 ], [ -95.659988075708242, 29.709700176734287 ], [ -95.660498075746546, 29.709657176708578 ], [ -95.660496075556907, 29.709442176976605 ], [ -95.660498075468183, 29.709347176365114 ], [ -95.660494075331428, 29.709269176679872 ], [ -95.660499075566378, 29.709106176762678 ], [ -95.660499075324978, 29.708650177025014 ], [ -95.660510074871311, 29.708339176383237 ], [ -95.660528075434357, 29.708127176419413 ], [ -95.660573074992755, 29.707757176671958 ], [ -95.660603075753627, 29.707552176879421 ], [ -95.660661075097806, 29.707234176670735 ], [ -95.660728075021566, 29.70695117669344 ], [ -95.660807075313073, 29.706676176059286 ], [ -95.66086107548351, 29.706506175814578 ], [ -95.660956075478524, 29.706246176454382 ], [ -95.661131075236995, 29.705818176056734 ], [ -95.661260075361085, 29.705544176114142 ], [ -95.661464075913528, 29.705165176295328 ], [ -95.661629075678647, 29.704884175523436 ], [ -95.661749075215354, 29.704700175946847 ], [ -95.662346075165217, 29.703884175768181 ], [ -95.662754075301962, 29.703351175926997 ], [ -95.662935075842029, 29.703111175442725 ], [ -95.66320907576457, 29.702715175334674 ], [ -95.663388076247145, 29.702435175663322 ], [ -95.663443075352546, 29.702342174995945 ], [ -95.663628076102427, 29.702015175593857 ], [ -95.663794075831575, 29.701690174854956 ], [ -95.663908076254984, 29.701444175064982 ], [ -95.663943076016224, 29.701369175055692 ], [ -95.663986075590827, 29.701265174771706 ], [ -95.664140076307532, 29.700895174578392 ], [ -95.664240075885559, 29.700612175130296 ], [ -95.664386075858673, 29.700133175222803 ], [ -95.664399076172373, 29.700068175079839 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 211, "Tract": "48201454200", "Area_SqMi": 0.56462410261085072, "total_2009": 126, "total_2010": 121, "total_2011": 131, "total_2012": 139, "total_2013": 143, "total_2014": 128, "total_2015": 118, "total_2016": 156, "total_2017": 139, "total_2018": 159, "total_2019": 264, "total_2020": 285, "age1": 137, "age2": 286, "age3": 64, "earn1": 202, "earn2": 116, "earn3": 169, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 2, "naics_s07": 2, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 7, "naics_s13": 0, "naics_s14": 323, "naics_s15": 0, "naics_s16": 142, "naics_s17": 0, "naics_s18": 4, "naics_s19": 0, "naics_s20": 0, "race1": 324, "race2": 110, "race3": 3, "race4": 40, "race5": 0, "race6": 10, "ethnicity1": 329, "ethnicity2": 158, "edu1": 61, "edu2": 98, "edu3": 122, "edu4": 69, "Shape_Length": 19081.747646602176, "Shape_Area": 15740753.616980916, "total_2021": 327, "total_2022": 487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.683402080903534, 29.708041175555039 ], [ -95.683337081155216, 29.708006175771008 ], [ -95.683240081601511, 29.70795117600909 ], [ -95.682877080877404, 29.707745175604241 ], [ -95.682627080617706, 29.707603175371901 ], [ -95.682320080708877, 29.707421175305026 ], [ -95.679995079859225, 29.70612317581412 ], [ -95.678681079851486, 29.705389175182219 ], [ -95.677907079671201, 29.704957175345701 ], [ -95.677029079811732, 29.704466175534186 ], [ -95.676203078621867, 29.70400617503828 ], [ -95.675885078616361, 29.703829174890011 ], [ -95.675826078559425, 29.70379617507157 ], [ -95.675709079388284, 29.703730174925376 ], [ -95.675630078694255, 29.703685174795119 ], [ -95.675443079294311, 29.703578175068973 ], [ -95.675202078988448, 29.703439175502634 ], [ -95.67492907888203, 29.703285174814514 ], [ -95.674906078447975, 29.703272174816163 ], [ -95.674759078553365, 29.703189174730106 ], [ -95.674416078586461, 29.702987175201137 ], [ -95.674101079028816, 29.702800174693053 ], [ -95.674020078671816, 29.702752175077531 ], [ -95.673308077825681, 29.702330175267274 ], [ -95.673158078284459, 29.702241174989542 ], [ -95.672509078287106, 29.701850175284957 ], [ -95.672491078272671, 29.701839174719304 ], [ -95.672377077739867, 29.701782174656771 ], [ -95.672322077763795, 29.701755174786729 ], [ -95.672241078296054, 29.701714174717225 ], [ -95.672168078336696, 29.701678175268281 ], [ -95.671825077922179, 29.701506175179116 ], [ -95.671669077360391, 29.70142417450753 ], [ -95.671423078044114, 29.701270174848698 ], [ -95.671279077396903, 29.701197174934997 ], [ -95.671195078007869, 29.701155174463604 ], [ -95.671171078165713, 29.701143175221095 ], [ -95.671071077486076, 29.701092175042628 ], [ -95.67098807800852, 29.70105017492051 ], [ -95.670879077281668, 29.70099617443692 ], [ -95.670780077849557, 29.700952174306618 ], [ -95.670396077693553, 29.700771174787853 ], [ -95.670331077795865, 29.700741174283532 ], [ -95.670090077002172, 29.700628174737187 ], [ -95.669236076861722, 29.700139174993343 ], [ -95.668375076937366, 29.699647174736011 ], [ -95.668246077374221, 29.699573174445142 ], [ -95.668218076469302, 29.699557174919548 ], [ -95.668161076617224, 29.69952417439233 ], [ -95.66739107616236, 29.699084174466471 ], [ -95.666845076249842, 29.698791173991125 ], [ -95.666631076816429, 29.698657174568538 ], [ -95.666448076689591, 29.698542174713257 ], [ -95.666134076712837, 29.698343174670896 ], [ -95.666045076094264, 29.698287174054936 ], [ -95.665645076122829, 29.698058174407613 ], [ -95.665505075801207, 29.697978173970441 ], [ -95.665013076325778, 29.697698174720653 ], [ -95.664700076004877, 29.697539174615631 ], [ -95.664609075522435, 29.697866174539147 ], [ -95.664587075812236, 29.698303174138339 ], [ -95.664570075989559, 29.698457174431862 ], [ -95.664546075517535, 29.698681174069101 ], [ -95.664516076238584, 29.69891217478748 ], [ -95.664492075920677, 29.699109174513186 ], [ -95.664455076427572, 29.699333174377969 ], [ -95.664412076086421, 29.699549174727711 ], [ -95.664336075867539, 29.699852174700773 ], [ -95.664446075896009, 29.699888174922172 ], [ -95.664399076172373, 29.700068175079839 ], [ -95.664386075858673, 29.700133175222803 ], [ -95.664240075885559, 29.700612175130296 ], [ -95.664140076307532, 29.700895174578392 ], [ -95.663986075590827, 29.701265174771706 ], [ -95.663943076016224, 29.701369175055692 ], [ -95.663908076254984, 29.701444175064982 ], [ -95.663794075831575, 29.701690174854956 ], [ -95.663628076102427, 29.702015175593857 ], [ -95.663443075352546, 29.702342174995945 ], [ -95.663388076247145, 29.702435175663322 ], [ -95.66320907576457, 29.702715175334674 ], [ -95.662935075842029, 29.703111175442725 ], [ -95.662754075301962, 29.703351175926997 ], [ -95.662346075165217, 29.703884175768181 ], [ -95.661749075215354, 29.704700175946847 ], [ -95.661629075678647, 29.704884175523436 ], [ -95.661464075913528, 29.705165176295328 ], [ -95.661260075361085, 29.705544176114142 ], [ -95.661131075236995, 29.705818176056734 ], [ -95.660956075478524, 29.706246176454382 ], [ -95.66086107548351, 29.706506175814578 ], [ -95.660807075313073, 29.706676176059286 ], [ -95.660728075021566, 29.70695117669344 ], [ -95.660661075097806, 29.707234176670735 ], [ -95.660603075753627, 29.707552176879421 ], [ -95.660573074992755, 29.707757176671958 ], [ -95.660528075434357, 29.708127176419413 ], [ -95.660510074871311, 29.708339176383237 ], [ -95.660499075324978, 29.708650177025014 ], [ -95.660499075566378, 29.709106176762678 ], [ -95.660494075331428, 29.709269176679872 ], [ -95.660498075468183, 29.709347176365114 ], [ -95.660496075556907, 29.709442176976605 ], [ -95.660498075746546, 29.709657176708578 ], [ -95.666107076957331, 29.709194176657686 ], [ -95.670410077895255, 29.709036176336404 ], [ -95.670644077780238, 29.709024176779764 ], [ -95.670840078033621, 29.70900617674868 ], [ -95.674159078454707, 29.708753176458586 ], [ -95.677076079188836, 29.708493176468348 ], [ -95.682510080912195, 29.708125176201698 ], [ -95.683402080903534, 29.708041175555039 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 212, "Tract": "48201521000", "Area_SqMi": 0.4549465507701847, "total_2009": 1645, "total_2010": 1589, "total_2011": 1573, "total_2012": 1759, "total_2013": 1673, "total_2014": 1877, "total_2015": 1869, "total_2016": 2011, "total_2017": 1892, "total_2018": 2050, "total_2019": 2110, "total_2020": 1955, "age1": 390, "age2": 1016, "age3": 519, "earn1": 278, "earn2": 719, "earn3": 928, "naics_s01": 0, "naics_s02": 12, "naics_s03": 0, "naics_s04": 107, "naics_s05": 84, "naics_s06": 46, "naics_s07": 176, "naics_s08": 5, "naics_s09": 9, "naics_s10": 131, "naics_s11": 285, "naics_s12": 177, "naics_s13": 2, "naics_s14": 71, "naics_s15": 2, "naics_s16": 347, "naics_s17": 52, "naics_s18": 316, "naics_s19": 103, "naics_s20": 0, "race1": 1455, "race2": 164, "race3": 25, "race4": 251, "race5": 1, "race6": 29, "ethnicity1": 1232, "ethnicity2": 693, "edu1": 304, "edu2": 342, "edu3": 463, "edu4": 426, "Shape_Length": 19319.194743247972, "Shape_Area": 12683131.186669175, "total_2021": 1893, "total_2022": 1925 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.52368804403757, 29.798083199443028 ], [ -95.523928044558659, 29.798005199624189 ], [ -95.523496044494635, 29.797055199661418 ], [ -95.523445044389035, 29.796896199020424 ], [ -95.52333404400521, 29.796106199321024 ], [ -95.523284044217476, 29.79536519888536 ], [ -95.523110043594002, 29.794764199129528 ], [ -95.522171043492904, 29.793255198992103 ], [ -95.52198004362721, 29.792801198554514 ], [ -95.521865043525466, 29.792531198090764 ], [ -95.521817043447257, 29.792286198445261 ], [ -95.521787043155882, 29.79198419855355 ], [ -95.521787043375966, 29.791916198575205 ], [ -95.521778043424604, 29.791842198195098 ], [ -95.521788043050208, 29.790843198202172 ], [ -95.521795043289416, 29.790105198442738 ], [ -95.52178604342248, 29.789932198307849 ], [ -95.521785043377662, 29.788946198047253 ], [ -95.521784043083485, 29.788808197963206 ], [ -95.521784043619533, 29.788723197918603 ], [ -95.521782043483114, 29.78735919762061 ], [ -95.521767042958075, 29.787181197239889 ], [ -95.52172404286911, 29.787017197459772 ], [ -95.521664043428757, 29.78672519767008 ], [ -95.521552043793065, 29.786409196968709 ], [ -95.521343043050663, 29.785766196903236 ], [ -95.521290043613419, 29.785420196627957 ], [ -95.521274042866267, 29.785085197367707 ], [ -95.521271043557462, 29.784959197068066 ], [ -95.52127104322247, 29.784895197360857 ], [ -95.521270043627396, 29.784673197049862 ], [ -95.52126904270547, 29.784554197007402 ], [ -95.521268042984616, 29.78435619656215 ], [ -95.521268043283683, 29.784198196607452 ], [ -95.521268042948833, 29.784023196591932 ], [ -95.521267043103705, 29.783739196715231 ], [ -95.520793042884065, 29.783738196871298 ], [ -95.520130042717184, 29.783747197086175 ], [ -95.520131042387789, 29.783987196779837 ], [ -95.520131043319978, 29.784062196830526 ], [ -95.520131042651471, 29.78415519698811 ], [ -95.520130042887118, 29.784345197081478 ], [ -95.520132042593701, 29.784563196842189 ], [ -95.520135042821877, 29.784896197125004 ], [ -95.520136042378994, 29.784974197232266 ], [ -95.520137042480926, 29.785033197098013 ], [ -95.520131042575059, 29.785138197121004 ], [ -95.520094042688243, 29.785585197451628 ], [ -95.520004042463327, 29.787981198024919 ], [ -95.520197043259273, 29.788463197754645 ], [ -95.520314043612572, 29.788829197435813 ], [ -95.520325043435804, 29.788862197695984 ], [ -95.520325042847119, 29.78891519794735 ], [ -95.52023904356767, 29.788916197633942 ], [ -95.520167043050549, 29.788916197734995 ], [ -95.519820042757672, 29.788916197674581 ], [ -95.519464042753228, 29.788916197704033 ], [ -95.519108042718031, 29.78891619769006 ], [ -95.518751043025262, 29.788916197846262 ], [ -95.518529042648879, 29.788916197783035 ], [ -95.518394042267786, 29.788916197926845 ], [ -95.518032042344757, 29.788917198179018 ], [ -95.517682041975903, 29.788920198015699 ], [ -95.517322042242498, 29.788924198093703 ], [ -95.517223042632565, 29.788926197554773 ], [ -95.516721041898009, 29.788931198086853 ], [ -95.516696041991324, 29.788944197892803 ], [ -95.516646042139655, 29.788969198284626 ], [ -95.516630041959701, 29.788977197642012 ], [ -95.516610042209621, 29.788987197976763 ], [ -95.516575041876095, 29.789004198255846 ], [ -95.516543042494575, 29.78902019788033 ], [ -95.51624804165472, 29.789180197929358 ], [ -95.516116041886349, 29.789252197622655 ], [ -95.515949042344289, 29.789343198442669 ], [ -95.515704042105753, 29.789473198470784 ], [ -95.515678042304287, 29.789486198275753 ], [ -95.515610042405569, 29.789514198262449 ], [ -95.515536041736496, 29.78953619772377 ], [ -95.515500041600532, 29.789543197734364 ], [ -95.51548204203614, 29.789547197803344 ], [ -95.515471041953617, 29.789549198188272 ], [ -95.5154180419364, 29.789556198524057 ], [ -95.515303042240873, 29.789566198508926 ], [ -95.515254041820469, 29.789571197839908 ], [ -95.515234041992159, 29.789573198008327 ], [ -95.515085041395039, 29.789587197940325 ], [ -95.5146470412014, 29.789627197720566 ], [ -95.514533041954792, 29.789638197898192 ], [ -95.514457042099494, 29.789645198218473 ], [ -95.514443042114749, 29.789646198027338 ], [ -95.514370041149249, 29.789653197753964 ], [ -95.514047041337264, 29.789683198219603 ], [ -95.514001041745786, 29.789687198306737 ], [ -95.513944042015382, 29.789694197843442 ], [ -95.513943041961994, 29.789796198255242 ], [ -95.513939041205106, 29.79076019873958 ], [ -95.513940041079977, 29.791353198652118 ], [ -95.513924041592716, 29.791890198911428 ], [ -95.513930041875327, 29.792150198891548 ], [ -95.513923041998396, 29.792515198822027 ], [ -95.513928041562494, 29.792747198596061 ], [ -95.513927041351423, 29.793061199174012 ], [ -95.513926041447789, 29.793277199119665 ], [ -95.513926041295321, 29.793401198913084 ], [ -95.513926041203661, 29.793463199259016 ], [ -95.513926041288173, 29.793491198661137 ], [ -95.513924041412452, 29.794312198713548 ], [ -95.513359041309741, 29.794319199125923 ], [ -95.51332604172525, 29.79431919916334 ], [ -95.512990041724223, 29.794317198838971 ], [ -95.512815041918472, 29.794316199041756 ], [ -95.512812041572232, 29.794708199231263 ], [ -95.512827041748693, 29.79514419940508 ], [ -95.512816041758697, 29.796106199574176 ], [ -95.512820041836306, 29.796486199865573 ], [ -95.512812041808715, 29.796994199473314 ], [ -95.51281204140956, 29.797093200103259 ], [ -95.512812041201997, 29.797279200089662 ], [ -95.512112041854465, 29.797284200091337 ], [ -95.511581041120067, 29.797266199862239 ], [ -95.511379041254486, 29.797263199515136 ], [ -95.510119040812526, 29.797244199507666 ], [ -95.510134041303147, 29.798226199806585 ], [ -95.510137041421757, 29.79838520016116 ], [ -95.510134041326083, 29.798859199844546 ], [ -95.510788040644115, 29.799603199948354 ], [ -95.511040041598605, 29.799757200692635 ], [ -95.511103041339354, 29.799818200473435 ], [ -95.511147041193851, 29.799878200261002 ], [ -95.511198041283876, 29.799988200690958 ], [ -95.511230041719713, 29.800161200733093 ], [ -95.51124204117292, 29.800219200559237 ], [ -95.511279040831951, 29.800522200060367 ], [ -95.511248040828974, 29.8007582008985 ], [ -95.511285041014176, 29.800885200657337 ], [ -95.51138704124709, 29.801024200830838 ], [ -95.512043041790278, 29.800608200785653 ], [ -95.512214041751307, 29.800495200704844 ], [ -95.512406041496533, 29.80041220023557 ], [ -95.512733041578997, 29.800318200020975 ], [ -95.513258041874025, 29.800220200223016 ], [ -95.513873041565404, 29.80012520054213 ], [ -95.513996042319292, 29.800102200591809 ], [ -95.514594042644447, 29.799985200049289 ], [ -95.515552042687915, 29.799818200287991 ], [ -95.516036042111011, 29.799738199996796 ], [ -95.516359042213736, 29.799685199729385 ], [ -95.51662704253755, 29.799637199797477 ], [ -95.516967042576013, 29.79955620001931 ], [ -95.517711042924702, 29.799425200196161 ], [ -95.518630043579336, 29.799240199909409 ], [ -95.520120043516783, 29.798977199940079 ], [ -95.520709043500219, 29.798869199691332 ], [ -95.520930043460623, 29.798824200133378 ], [ -95.52126004356559, 29.798759199821578 ], [ -95.521422043878076, 29.798729199859277 ], [ -95.521600043380687, 29.79869219982638 ], [ -95.521969044422349, 29.79861719962598 ], [ -95.522229043615596, 29.798554199709915 ], [ -95.52368804403757, 29.798083199443028 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 213, "Tract": "48201521100", "Area_SqMi": 0.23078692703272577, "total_2009": 68, "total_2010": 68, "total_2011": 78, "total_2012": 100, "total_2013": 104, "total_2014": 78, "total_2015": 94, "total_2016": 90, "total_2017": 84, "total_2018": 94, "total_2019": 95, "total_2020": 92, "age1": 24, "age2": 45, "age3": 23, "earn1": 12, "earn2": 32, "earn3": 48, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 6, "naics_s06": 2, "naics_s07": 19, "naics_s08": 0, "naics_s09": 6, "naics_s10": 3, "naics_s11": 20, "naics_s12": 0, "naics_s13": 0, "naics_s14": 18, "naics_s15": 0, "naics_s16": 2, "naics_s17": 3, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 60, "race2": 14, "race3": 0, "race4": 17, "race5": 0, "race6": 1, "ethnicity1": 62, "ethnicity2": 30, "edu1": 14, "edu2": 13, "edu3": 21, "edu4": 20, "Shape_Length": 12183.178735418263, "Shape_Area": 6433944.5298991315, "total_2021": 87, "total_2022": 92 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.524423045108719, 29.806732201696757 ], [ -95.524422044979417, 29.806590201143919 ], [ -95.524341044391704, 29.805669201352782 ], [ -95.524324044718497, 29.804632200592327 ], [ -95.524239044664171, 29.801921200619343 ], [ -95.524223044410249, 29.800683200309177 ], [ -95.52421404463233, 29.79996119955878 ], [ -95.524190044873862, 29.799441199735782 ], [ -95.524183044649661, 29.799015199908663 ], [ -95.524058044624979, 29.798435199629218 ], [ -95.524024044217299, 29.798276199638035 ], [ -95.523928044558659, 29.798005199624189 ], [ -95.52368804403757, 29.798083199443028 ], [ -95.522229043615596, 29.798554199709915 ], [ -95.521969044422349, 29.79861719962598 ], [ -95.521600043380687, 29.79869219982638 ], [ -95.521422043878076, 29.798729199859277 ], [ -95.52126004356559, 29.798759199821578 ], [ -95.520930043460623, 29.798824200133378 ], [ -95.520709043500219, 29.798869199691332 ], [ -95.520120043516783, 29.798977199940079 ], [ -95.518630043579336, 29.799240199909409 ], [ -95.517711042924702, 29.799425200196161 ], [ -95.516967042576013, 29.79955620001931 ], [ -95.51662704253755, 29.799637199797477 ], [ -95.516359042213736, 29.799685199729385 ], [ -95.516036042111011, 29.799738199996796 ], [ -95.515552042687915, 29.799818200287991 ], [ -95.514594042644447, 29.799985200049289 ], [ -95.513996042319292, 29.800102200591809 ], [ -95.513873041565404, 29.80012520054213 ], [ -95.513258041874025, 29.800220200223016 ], [ -95.512733041578997, 29.800318200020975 ], [ -95.512406041496533, 29.80041220023557 ], [ -95.512214041751307, 29.800495200704844 ], [ -95.512043041790278, 29.800608200785653 ], [ -95.51138704124709, 29.801024200830838 ], [ -95.511430041071691, 29.801083200531821 ], [ -95.51183304098889, 29.801533200548878 ], [ -95.512092041953267, 29.801792200936411 ], [ -95.512300042028457, 29.801979200377296 ], [ -95.512520041449037, 29.802133200361723 ], [ -95.512583042005716, 29.802160201199715 ], [ -95.513012041868222, 29.802298200907732 ], [ -95.513163042264623, 29.802309200619707 ], [ -95.513220041574215, 29.802309201078227 ], [ -95.513371041900356, 29.802271200819963 ], [ -95.513406041964075, 29.802259200926482 ], [ -95.513441041964256, 29.8022492003299 ], [ -95.513554041847897, 29.802194200827248 ], [ -95.513617041485659, 29.802172200512814 ], [ -95.513661042121143, 29.802166200580828 ], [ -95.513876041658506, 29.80215520075312 ], [ -95.514128041855216, 29.80215620088633 ], [ -95.514229042350578, 29.802161201085227 ], [ -95.514355042333605, 29.80218320042286 ], [ -95.514507041989688, 29.802243200856601 ], [ -95.514733042338406, 29.802332200994748 ], [ -95.515382042290938, 29.802557200822118 ], [ -95.515861042135356, 29.802640200766959 ], [ -95.516050042143974, 29.802728200866412 ], [ -95.51613204288968, 29.802799201030382 ], [ -95.516226042921033, 29.80295320118638 ], [ -95.516270043204045, 29.802992200559057 ], [ -95.516413043098851, 29.803057200984643 ], [ -95.516586043111033, 29.803135200480266 ], [ -95.516661042462729, 29.803157201015317 ], [ -95.516882043052362, 29.803173200714959 ], [ -95.517210042624072, 29.803261201007974 ], [ -95.517682043403738, 29.80328420121603 ], [ -95.517960043463006, 29.803366200882088 ], [ -95.518098043120233, 29.803449200522614 ], [ -95.518281043074808, 29.803586200944046 ], [ -95.518836042872977, 29.803955201332656 ], [ -95.519252043346853, 29.804263200827922 ], [ -95.519806043725609, 29.804565201114578 ], [ -95.520329043947754, 29.804868201400421 ], [ -95.520827044242949, 29.805132201139255 ], [ -95.520959044357028, 29.805176201351451 ], [ -95.521130044030272, 29.805214201032083 ], [ -95.521281044543485, 29.805236200709285 ], [ -95.521394044604037, 29.805242200909717 ], [ -95.522107044215801, 29.805495201418612 ], [ -95.522586044474565, 29.805693201118292 ], [ -95.522737044760177, 29.8057322008491 ], [ -95.523014044862933, 29.805830201493222 ], [ -95.523178045112743, 29.805875200912105 ], [ -95.52351804476794, 29.806023201167502 ], [ -95.523834044352071, 29.806139201391186 ], [ -95.524086045140947, 29.806309201474551 ], [ -95.524207044959212, 29.806349201617561 ], [ -95.524362045208051, 29.806653200877268 ], [ -95.524423045108719, 29.806732201696757 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 214, "Tract": "48201521300", "Area_SqMi": 1.1425010406723559, "total_2009": 2368, "total_2010": 1461, "total_2011": 1543, "total_2012": 1321, "total_2013": 1093, "total_2014": 1085, "total_2015": 1144, "total_2016": 1212, "total_2017": 1243, "total_2018": 1159, "total_2019": 1177, "total_2020": 1147, "age1": 233, "age2": 609, "age3": 360, "earn1": 182, "earn2": 337, "earn3": 683, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 594, "naics_s05": 89, "naics_s06": 0, "naics_s07": 170, "naics_s08": 2, "naics_s09": 10, "naics_s10": 5, "naics_s11": 10, "naics_s12": 54, "naics_s13": 1, "naics_s14": 52, "naics_s15": 9, "naics_s16": 31, "naics_s17": 0, "naics_s18": 74, "naics_s19": 101, "naics_s20": 0, "race1": 967, "race2": 85, "race3": 18, "race4": 104, "race5": 3, "race6": 25, "ethnicity1": 659, "ethnicity2": 543, "edu1": 232, "edu2": 258, "edu3": 278, "edu4": 201, "Shape_Length": 24684.192525823684, "Shape_Area": 31850973.603871513, "total_2021": 1151, "total_2022": 1202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.526288046140934, 29.821950204236142 ], [ -95.526272046234979, 29.82078620403405 ], [ -95.526270046329529, 29.820076203807727 ], [ -95.526257045786238, 29.818529203804491 ], [ -95.526238045523556, 29.818047203608192 ], [ -95.52624104606771, 29.817948203131014 ], [ -95.526231046073221, 29.817828203164947 ], [ -95.526243045797543, 29.817465203459374 ], [ -95.526247045838602, 29.817145203730327 ], [ -95.526234045458793, 29.816026202700986 ], [ -95.526228045951356, 29.815927202758029 ], [ -95.526221045713996, 29.815794203343877 ], [ -95.526223045845427, 29.815170203095249 ], [ -95.526206045875483, 29.812870202555708 ], [ -95.526190045530527, 29.812208202770773 ], [ -95.526186045445968, 29.812054202135744 ], [ -95.526176045728121, 29.811420202481361 ], [ -95.526177045281244, 29.811283202160489 ], [ -95.52617804526426, 29.811236201746919 ], [ -95.526184045214748, 29.810568202434826 ], [ -95.526184045963888, 29.810504202411604 ], [ -95.526183045797453, 29.810233201899972 ], [ -95.526182045468673, 29.810045201501016 ], [ -95.526164045840929, 29.809806202332645 ], [ -95.524480044721628, 29.809793201647388 ], [ -95.522800044902496, 29.809825202356734 ], [ -95.520094044052655, 29.809834201844637 ], [ -95.51965704435375, 29.809838202569658 ], [ -95.519466044247309, 29.809862201882595 ], [ -95.519283043577445, 29.809883202512207 ], [ -95.518071042951192, 29.810139202501894 ], [ -95.516664042672033, 29.810441202708891 ], [ -95.515643042699509, 29.81064920219492 ], [ -95.51494604232451, 29.810757202215616 ], [ -95.514030042028494, 29.810838202637331 ], [ -95.51383904220198, 29.810843202904366 ], [ -95.513467041882862, 29.810853202711435 ], [ -95.51252304161514, 29.810979202274034 ], [ -95.511732042087246, 29.811049202548499 ], [ -95.511686041984305, 29.811054203061705 ], [ -95.51096604133177, 29.81105620231412 ], [ -95.510283041798374, 29.811072202792229 ], [ -95.509555041617901, 29.811079202491982 ], [ -95.508337040547374, 29.811059203160976 ], [ -95.50749304108254, 29.81102320246103 ], [ -95.506598040541959, 29.811000202930419 ], [ -95.50591504061434, 29.811001203062556 ], [ -95.504823040165178, 29.810984202838519 ], [ -95.504604040121492, 29.810976203292995 ], [ -95.504235040050673, 29.810963202791207 ], [ -95.503826039395051, 29.810964203049224 ], [ -95.503389039549475, 29.810954202684076 ], [ -95.502413039757769, 29.810941202876524 ], [ -95.501559039613738, 29.810931202652256 ], [ -95.500863039375545, 29.810912203056098 ], [ -95.500837039544876, 29.811463202779628 ], [ -95.500822038667039, 29.812528203346162 ], [ -95.500816039328683, 29.813321203261264 ], [ -95.500856039535748, 29.815089203995669 ], [ -95.500854039534516, 29.815135203540699 ], [ -95.500790039198804, 29.81680220442459 ], [ -95.50064403948349, 29.817499204104028 ], [ -95.500396038898884, 29.818169204734254 ], [ -95.500062039372551, 29.818831204872744 ], [ -95.499662039667399, 29.819403204849891 ], [ -95.499126038571575, 29.8200402048729 ], [ -95.499175038954164, 29.820082205107553 ], [ -95.499615039432925, 29.820364204548319 ], [ -95.499921039690562, 29.820525205049627 ], [ -95.500737039707374, 29.820783205038378 ], [ -95.501250039154456, 29.82086120469652 ], [ -95.501939039481528, 29.820859205229478 ], [ -95.504857040330791, 29.820860205055364 ], [ -95.505737041266826, 29.820965204996888 ], [ -95.50666404094126, 29.821167204980863 ], [ -95.507313040735568, 29.821195204700533 ], [ -95.507456041674743, 29.821191205065009 ], [ -95.509633041506902, 29.8211462050464 ], [ -95.510867042279386, 29.8211272047024 ], [ -95.511334042392804, 29.821119204614281 ], [ -95.513052042740924, 29.821113204393196 ], [ -95.513935043139938, 29.821094204212915 ], [ -95.514228043238901, 29.821087204838804 ], [ -95.515057043320311, 29.821068204186606 ], [ -95.516246043263891, 29.821054204691048 ], [ -95.516497043470707, 29.821061204451844 ], [ -95.516863043376773, 29.821081204862335 ], [ -95.516917043999584, 29.821086204597943 ], [ -95.517409044160985, 29.821134204688089 ], [ -95.518544044073352, 29.821403204528167 ], [ -95.519010043749034, 29.821588204923938 ], [ -95.519772043980709, 29.821806204413448 ], [ -95.520691045039015, 29.821971204857576 ], [ -95.521596045287467, 29.821976204680976 ], [ -95.522595045595324, 29.821989204536145 ], [ -95.522671045339877, 29.821988204150447 ], [ -95.523850045556784, 29.82196720463395 ], [ -95.525199046188035, 29.821943204490697 ], [ -95.526288046140934, 29.821950204236142 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 215, "Tract": "48201521600", "Area_SqMi": 2.5787711817481136, "total_2009": 10551, "total_2010": 9902, "total_2011": 9510, "total_2012": 9713, "total_2013": 10139, "total_2014": 10471, "total_2015": 11015, "total_2016": 10715, "total_2017": 10754, "total_2018": 12020, "total_2019": 12530, "total_2020": 13047, "age1": 3545, "age2": 7041, "age3": 2758, "earn1": 1444, "earn2": 3728, "earn3": 8172, "naics_s01": 0, "naics_s02": 5, "naics_s03": 16, "naics_s04": 2118, "naics_s05": 3938, "naics_s06": 2002, "naics_s07": 742, "naics_s08": 3749, "naics_s09": 9, "naics_s10": 4, "naics_s11": 102, "naics_s12": 134, "naics_s13": 43, "naics_s14": 225, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 31, "naics_s19": 226, "naics_s20": 0, "race1": 10246, "race2": 1869, "race3": 157, "race4": 807, "race5": 34, "race6": 231, "ethnicity1": 7152, "ethnicity2": 6192, "edu1": 2671, "edu2": 2740, "edu3": 2728, "edu4": 1660, "Shape_Length": 39867.158172231117, "Shape_Area": 71891726.936149567, "total_2021": 12766, "total_2022": 13344 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.545303050985282, 29.832582205637753 ], [ -95.545328051887708, 29.832244206211886 ], [ -95.543493051248021, 29.832261205723231 ], [ -95.542766051258511, 29.832277205775124 ], [ -95.542166050706214, 29.832289206275085 ], [ -95.539059050328206, 29.83233320643944 ], [ -95.537746049152773, 29.832347205655513 ], [ -95.536849049251501, 29.832359205842991 ], [ -95.535601048472529, 29.832374206553126 ], [ -95.533762048336214, 29.832403206388726 ], [ -95.533134048325564, 29.832413206203555 ], [ -95.531622048326241, 29.832435206639822 ], [ -95.531571047657295, 29.832431206759161 ], [ -95.530790047854822, 29.832451206046535 ], [ -95.529684046957286, 29.832472206441935 ], [ -95.529247047753017, 29.832474206420518 ], [ -95.528435047238119, 29.832483206387508 ], [ -95.528322046888661, 29.832478206727789 ], [ -95.526398046402221, 29.832524206499773 ], [ -95.525180046415201, 29.832540206997407 ], [ -95.523628046014821, 29.832541206286894 ], [ -95.522954045848195, 29.832556206610665 ], [ -95.5220200459094, 29.83257620694215 ], [ -95.521541045209901, 29.832574206807397 ], [ -95.520272044937471, 29.83258220652203 ], [ -95.519002045159795, 29.832600207146207 ], [ -95.517755044643977, 29.832619206405393 ], [ -95.517020044317874, 29.832633206646921 ], [ -95.51598004419229, 29.832653207106432 ], [ -95.515550044125092, 29.832639206513942 ], [ -95.514182043056792, 29.832676207299411 ], [ -95.51335104325085, 29.832674206885301 ], [ -95.512988043466294, 29.832681207328157 ], [ -95.512328042977998, 29.832693206675668 ], [ -95.511744043381555, 29.832697206830687 ], [ -95.510944042625624, 29.832708206644451 ], [ -95.51015304233232, 29.832714207082095 ], [ -95.509498042085312, 29.832713206756676 ], [ -95.509330042550346, 29.832716207120065 ], [ -95.509077041765948, 29.832719206778492 ], [ -95.50825204203278, 29.832739206755747 ], [ -95.507992042323394, 29.832758206913176 ], [ -95.507383041819068, 29.832798207587548 ], [ -95.50722704173667, 29.832810207329615 ], [ -95.506729041785832, 29.832845207344022 ], [ -95.506640041590643, 29.832851207325504 ], [ -95.506272041229096, 29.83297720727963 ], [ -95.505214041129619, 29.833451207176736 ], [ -95.505087041367801, 29.833506207165389 ], [ -95.505056041015322, 29.833519207426512 ], [ -95.504727041349511, 29.833672207791565 ], [ -95.505482041268223, 29.834217207782363 ], [ -95.506304041417565, 29.834810207809607 ], [ -95.507672042484415, 29.835729207517247 ], [ -95.508012041775885, 29.835955207942035 ], [ -95.510055042325618, 29.83743420806972 ], [ -95.510766043020581, 29.837921208084985 ], [ -95.512139043363192, 29.83895520810427 ], [ -95.512496043824967, 29.839209207961652 ], [ -95.51346204398908, 29.839892208156623 ], [ -95.515109044374441, 29.841038208516881 ], [ -95.517974044961292, 29.843099208600886 ], [ -95.518176045302411, 29.843242208543185 ], [ -95.518602045035053, 29.843547208911993 ], [ -95.519695045723822, 29.844277209178966 ], [ -95.520234046032144, 29.844666209652175 ], [ -95.521733046098859, 29.845729209009402 ], [ -95.522404045754811, 29.84620120917403 ], [ -95.523524046253328, 29.847005209548247 ], [ -95.524174046402734, 29.84748621000432 ], [ -95.525629047520511, 29.848502209781607 ], [ -95.527227047839773, 29.849687209550829 ], [ -95.528746048056178, 29.85072920969899 ], [ -95.529923048878075, 29.851593209928367 ], [ -95.530481048066818, 29.852006210449204 ], [ -95.530946048830799, 29.852275210711266 ], [ -95.531906048650384, 29.852955210449505 ], [ -95.532110049256374, 29.853118210698625 ], [ -95.533699049399218, 29.854238211018526 ], [ -95.535611049798334, 29.855597210667725 ], [ -95.536938050121861, 29.856553210720058 ], [ -95.537543050512738, 29.856996211560933 ], [ -95.538298050320194, 29.857525211196588 ], [ -95.540244051641466, 29.858891211398362 ], [ -95.541303051574005, 29.859642211865928 ], [ -95.541822052256236, 29.860010211398095 ], [ -95.542290052410124, 29.860333211905733 ], [ -95.543356052202782, 29.861097211357876 ], [ -95.544138052431279, 29.861664212189091 ], [ -95.544307052200281, 29.861461212166233 ], [ -95.544461052267337, 29.861276211456925 ], [ -95.544578052930575, 29.861148211509466 ], [ -95.544760052652549, 29.860932211723959 ], [ -95.544922053071744, 29.860695212074805 ], [ -95.54508005261458, 29.860374211721552 ], [ -95.545153052477843, 29.860117211279199 ], [ -95.545198052643343, 29.858723211254834 ], [ -95.54518105265474, 29.857562211081802 ], [ -95.545176052737489, 29.856613210827373 ], [ -95.545170052385743, 29.855686210672388 ], [ -95.545160052273957, 29.854748210128434 ], [ -95.545154052645429, 29.853819210188941 ], [ -95.545136052762928, 29.852884209971648 ], [ -95.545123051841074, 29.851955209661849 ], [ -95.54511905178596, 29.851021209456032 ], [ -95.545111051814914, 29.850140209609311 ], [ -95.545117052558169, 29.849109209331363 ], [ -95.545126052551737, 29.848976208996707 ], [ -95.5451110518825, 29.848254209373348 ], [ -95.545098051937742, 29.84816420908988 ], [ -95.545095052362498, 29.847226208851421 ], [ -95.545092052110419, 29.846293208742857 ], [ -95.545087052118376, 29.845362208467002 ], [ -95.545128052306424, 29.845284208375997 ], [ -95.545114051814451, 29.84493520826085 ], [ -95.545101051486398, 29.844425208553197 ], [ -95.545076051270399, 29.84033320767098 ], [ -95.545051051596801, 29.836286206449813 ], [ -95.545040051805557, 29.834442206399981 ], [ -95.545039050956845, 29.834186206055456 ], [ -95.545035051720021, 29.834067206328836 ], [ -95.54503905111109, 29.833945205716894 ], [ -95.545075051545552, 29.833568205711192 ], [ -95.545132051350024, 29.833316206164561 ], [ -95.545201051183227, 29.833105206138594 ], [ -95.545257051000874, 29.832840205788436 ], [ -95.545303050985282, 29.832582205637753 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 216, "Tract": "48201454600", "Area_SqMi": 1.3297092943159021, "total_2009": 2687, "total_2010": 2860, "total_2011": 3173, "total_2012": 3707, "total_2013": 3897, "total_2014": 4018, "total_2015": 4280, "total_2016": 4624, "total_2017": 4354, "total_2018": 4745, "total_2019": 4912, "total_2020": 4498, "age1": 1312, "age2": 2382, "age3": 924, "earn1": 1016, "earn2": 1620, "earn3": 1982, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 142, "naics_s05": 8, "naics_s06": 108, "naics_s07": 1047, "naics_s08": 46, "naics_s09": 22, "naics_s10": 106, "naics_s11": 106, "naics_s12": 204, "naics_s13": 53, "naics_s14": 359, "naics_s15": 5, "naics_s16": 1359, "naics_s17": 18, "naics_s18": 934, "naics_s19": 97, "naics_s20": 0, "race1": 3300, "race2": 780, "race3": 40, "race4": 424, "race5": 8, "race6": 66, "ethnicity1": 3049, "ethnicity2": 1569, "edu1": 674, "edu2": 836, "edu3": 1035, "edu4": 761, "Shape_Length": 28511.284062764709, "Shape_Area": 37070019.305325247, "total_2021": 4301, "total_2022": 4618 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.751877102328422, 29.784678188821342 ], [ -95.751883101698624, 29.783198189133628 ], [ -95.751871101718791, 29.782506188186606 ], [ -95.75187310152387, 29.78227418845438 ], [ -95.751852101707698, 29.781825188620463 ], [ -95.751830101676276, 29.780959188628049 ], [ -95.751819101867881, 29.779886187729289 ], [ -95.751817101300759, 29.779779187743884 ], [ -95.751815102293335, 29.779579188286121 ], [ -95.751813101480778, 29.779380187923394 ], [ -95.751806101660733, 29.778574187578279 ], [ -95.751804101654344, 29.778124187331226 ], [ -95.751797102049338, 29.77722318792302 ], [ -95.751794101700256, 29.777146187797438 ], [ -95.751796101487045, 29.776900187858597 ], [ -95.751788101634702, 29.776281187220782 ], [ -95.75178710115398, 29.775940187001382 ], [ -95.751783102060585, 29.775393186866168 ], [ -95.75178310175329, 29.77527818694827 ], [ -95.751781101283285, 29.774989186878425 ], [ -95.751776102076278, 29.774757186701763 ], [ -95.751671101786386, 29.774758187166352 ], [ -95.751623101749459, 29.774759187254261 ], [ -95.751556101291314, 29.774760187109987 ], [ -95.751249100994116, 29.774763186719664 ], [ -95.75091310159452, 29.774765187471154 ], [ -95.749579101251499, 29.7747741871964 ], [ -95.749447101112153, 29.774776187327472 ], [ -95.749340101037248, 29.774783187436345 ], [ -95.749213101124923, 29.77478518676714 ], [ -95.749118101225079, 29.774776187161301 ], [ -95.748700100619644, 29.77479618719493 ], [ -95.748278100947275, 29.774826186932035 ], [ -95.748000100217553, 29.774852187183114 ], [ -95.747777101024141, 29.774879187590123 ], [ -95.747419100373321, 29.774916187386669 ], [ -95.747306100264623, 29.774934187091642 ], [ -95.74718610010153, 29.774947187118066 ], [ -95.746683100478521, 29.774985187600358 ], [ -95.746563100644366, 29.774989187483328 ], [ -95.74644810020034, 29.775000187164999 ], [ -95.746209100391482, 29.775005187044986 ], [ -95.745850099801373, 29.775003186915324 ], [ -95.745629100288866, 29.775010186982399 ], [ -95.745401099807026, 29.7750061875523 ], [ -95.744964100291128, 29.775010187568675 ], [ -95.744600099264957, 29.775014187537046 ], [ -95.74410609924243, 29.775012187142835 ], [ -95.743865099134965, 29.775023186939475 ], [ -95.743609099680555, 29.775023187691989 ], [ -95.74303409936914, 29.775029187830278 ], [ -95.742755099462769, 29.775043187491416 ], [ -95.742470099068214, 29.775067187510285 ], [ -95.742184098619546, 29.775103187665039 ], [ -95.741905098639577, 29.775151187486177 ], [ -95.741636099123738, 29.775209187635021 ], [ -95.741401098702582, 29.775268187189507 ], [ -95.741255098441883, 29.775305187453561 ], [ -95.741001098714833, 29.775387187777827 ], [ -95.740737099045262, 29.7754861873014 ], [ -95.73963409856843, 29.775938187270093 ], [ -95.739358098740965, 29.776038187406193 ], [ -95.739005098433793, 29.776142187469453 ], [ -95.738656097800487, 29.776231187416276 ], [ -95.738424098563513, 29.776278187388787 ], [ -95.738197098541463, 29.776316188074532 ], [ -95.737879097839624, 29.776359187801575 ], [ -95.737619097932821, 29.776382187648387 ], [ -95.737596098516292, 29.776384187518584 ], [ -95.737245097842262, 29.776400187830653 ], [ -95.736963097665395, 29.7764001874448 ], [ -95.736668097368025, 29.776386187737081 ], [ -95.736411097298713, 29.776367188181801 ], [ -95.736378097880419, 29.776364187746182 ], [ -95.736025097928206, 29.776321187840615 ], [ -95.735747097520729, 29.7762741875244 ], [ -95.735633097712537, 29.776255187990895 ], [ -95.735436097900916, 29.776223187707885 ], [ -95.735322097238111, 29.776205187943766 ], [ -95.734313097363042, 29.776032187817385 ], [ -95.733889096817776, 29.775973187823887 ], [ -95.733616097362997, 29.775945187777552 ], [ -95.733367096745098, 29.775934188227385 ], [ -95.733158096880018, 29.775931188014479 ], [ -95.732648096346225, 29.775935188175595 ], [ -95.732203096540999, 29.775939188140644 ], [ -95.731972096658154, 29.775939187784029 ], [ -95.731814096221697, 29.775940188212701 ], [ -95.731506096243606, 29.775949188183738 ], [ -95.731333096045617, 29.775955188081117 ], [ -95.731210096750431, 29.7759591877576 ], [ -95.730443095731729, 29.776016188145295 ], [ -95.730368096382179, 29.776022188385305 ], [ -95.730187096360766, 29.7760321877427 ], [ -95.729805095815607, 29.776043188188105 ], [ -95.729319096210915, 29.776036188432361 ], [ -95.728998095535687, 29.77603718803806 ], [ -95.728075095860603, 29.776026187713402 ], [ -95.727279095576094, 29.776016188275946 ], [ -95.726852095130397, 29.776009187849915 ], [ -95.725993094863725, 29.775999188291063 ], [ -95.725542095401281, 29.775993187776706 ], [ -95.724404094898816, 29.775976187966148 ], [ -95.723928094195443, 29.775963187918752 ], [ -95.723223094553873, 29.775902187863249 ], [ -95.722906094460328, 29.775850188028969 ], [ -95.722706094623931, 29.775812188164046 ], [ -95.722635093690499, 29.775799188636842 ], [ -95.722285093823089, 29.775717188135275 ], [ -95.721666093411983, 29.775556188305085 ], [ -95.721599093592644, 29.775544187770958 ], [ -95.721189093993232, 29.775432187843592 ], [ -95.720430093142241, 29.775296188455126 ], [ -95.719992093842436, 29.775259188434823 ], [ -95.719895093302625, 29.775252187826737 ], [ -95.719097092751937, 29.775247188471802 ], [ -95.719033093664308, 29.775247188637429 ], [ -95.718958093452997, 29.775248188484824 ], [ -95.718856092859923, 29.775250188025673 ], [ -95.718858093249693, 29.77532118815116 ], [ -95.718862093682858, 29.775456187955076 ], [ -95.718860093311008, 29.775874188335298 ], [ -95.71886709361975, 29.776080188326063 ], [ -95.718866092873895, 29.776344188256726 ], [ -95.71886609279683, 29.776606188172462 ], [ -95.718870093111548, 29.776699188944413 ], [ -95.718867093367393, 29.776866188975518 ], [ -95.718885093796501, 29.776954188289501 ], [ -95.718891092880128, 29.777038188689954 ], [ -95.718868093423055, 29.777121188536373 ], [ -95.7188610935968, 29.77736618837972 ], [ -95.718863093352397, 29.777444188875528 ], [ -95.718874093144208, 29.777525188752868 ], [ -95.718859093764351, 29.777604188334397 ], [ -95.718871093385786, 29.777681188972544 ], [ -95.718873092825049, 29.777926188859674 ], [ -95.718877093649326, 29.778178188511699 ], [ -95.718874093575252, 29.778239189201301 ], [ -95.718881093021338, 29.778358189122653 ], [ -95.718877093027814, 29.778413189333193 ], [ -95.718883093127715, 29.778738189097851 ], [ -95.718883093123296, 29.778760188635541 ], [ -95.718885092963944, 29.779677188744508 ], [ -95.718893093067067, 29.779839189546713 ], [ -95.718887093676159, 29.779909189536848 ], [ -95.718899093653619, 29.78007318908346 ], [ -95.71889109338683, 29.780152189372224 ], [ -95.71888909377536, 29.780235189679356 ], [ -95.718893093249605, 29.780317189663037 ], [ -95.718891092989679, 29.78039618970816 ], [ -95.718898093681446, 29.780951189771013 ], [ -95.718907093246145, 29.781268189128511 ], [ -95.718902093697807, 29.781388189505492 ], [ -95.71890909299519, 29.781664189737199 ], [ -95.718903093150544, 29.781716189501903 ], [ -95.718907093907049, 29.781949189535222 ], [ -95.718908093281527, 29.781983189868722 ], [ -95.71890709305265, 29.782111189321231 ], [ -95.718912093630593, 29.782166189578959 ], [ -95.718914093183045, 29.782357189519601 ], [ -95.718916093992235, 29.782808189712014 ], [ -95.718916093943065, 29.783038189934235 ], [ -95.718922093409688, 29.78349418983947 ], [ -95.718934094132308, 29.784520189961619 ], [ -95.718937093384937, 29.78491819041113 ], [ -95.718939093295731, 29.785183190073596 ], [ -95.719155093785602, 29.785173190329914 ], [ -95.720368094499989, 29.785224190128964 ], [ -95.722159094342928, 29.785244190519929 ], [ -95.725539095647946, 29.785336189989469 ], [ -95.726514095360557, 29.785357190059475 ], [ -95.728665096635822, 29.785356190244116 ], [ -95.729869096232378, 29.785394190371239 ], [ -95.731239097032713, 29.785375190303363 ], [ -95.732611097558461, 29.785397190279639 ], [ -95.732992097636199, 29.78540519018846 ], [ -95.734175097889718, 29.785428189496713 ], [ -95.735471098320005, 29.785422189639096 ], [ -95.735750098385907, 29.785427190169997 ], [ -95.736598098188708, 29.785422189627194 ], [ -95.737810098157979, 29.785421190060713 ], [ -95.738658098508054, 29.78541719009851 ], [ -95.739014098423922, 29.78543018943995 ], [ -95.739415099331922, 29.785417189907427 ], [ -95.743213099645132, 29.785397189536088 ], [ -95.746442100771191, 29.785385189353853 ], [ -95.747205100653147, 29.785376189242744 ], [ -95.749442101853916, 29.785361189559584 ], [ -95.750757101657783, 29.785385189285126 ], [ -95.751601102395909, 29.785417189275019 ], [ -95.751702101770846, 29.785410188813739 ], [ -95.751874102415073, 29.785397189153507 ], [ -95.751875101819493, 29.785102189213795 ], [ -95.751876102139789, 29.784888188922803 ], [ -95.75187610199734, 29.78482418923943 ], [ -95.751877101536408, 29.784738189181574 ], [ -95.751877102328422, 29.784678188821342 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 217, "Tract": "48201454700", "Area_SqMi": 1.3481144061423627, "total_2009": 564, "total_2010": 539, "total_2011": 580, "total_2012": 619, "total_2013": 597, "total_2014": 591, "total_2015": 600, "total_2016": 600, "total_2017": 578, "total_2018": 579, "total_2019": 528, "total_2020": 606, "age1": 126, "age2": 272, "age3": 147, "earn1": 117, "earn2": 226, "earn3": 202, "naics_s01": 2, "naics_s02": 0, "naics_s03": 9, "naics_s04": 29, "naics_s05": 12, "naics_s06": 17, "naics_s07": 47, "naics_s08": 3, "naics_s09": 0, "naics_s10": 46, "naics_s11": 35, "naics_s12": 87, "naics_s13": 0, "naics_s14": 9, "naics_s15": 1, "naics_s16": 72, "naics_s17": 3, "naics_s18": 39, "naics_s19": 134, "naics_s20": 0, "race1": 422, "race2": 54, "race3": 8, "race4": 48, "race5": 0, "race6": 13, "ethnicity1": 406, "ethnicity2": 139, "edu1": 77, "edu2": 102, "edu3": 140, "edu4": 100, "Shape_Length": 24785.921948098876, "Shape_Area": 37583122.322383255, "total_2021": 528, "total_2022": 545 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.735633097712537, 29.776255187990895 ], [ -95.735637097030761, 29.776128187806144 ], [ -95.735624097137872, 29.775845187862732 ], [ -95.735625097363851, 29.775587187358184 ], [ -95.73562609779809, 29.775467187621889 ], [ -95.735626097896855, 29.775349188002394 ], [ -95.735627097236858, 29.775168187398208 ], [ -95.735611096976086, 29.774508187124766 ], [ -95.735606096938355, 29.774421187533818 ], [ -95.735554097000801, 29.773577187624941 ], [ -95.735533097524339, 29.773223187007112 ], [ -95.735528096932498, 29.772853186999505 ], [ -95.735526097345343, 29.772660187424435 ], [ -95.735526097752228, 29.772302187127131 ], [ -95.735517096801232, 29.772012187263844 ], [ -95.735517097432236, 29.771839186999713 ], [ -95.735514097446256, 29.771357186528359 ], [ -95.735509097434488, 29.7712821866584 ], [ -95.735511097632937, 29.771151187007952 ], [ -95.735514097028243, 29.770455186286089 ], [ -95.735515096936837, 29.770387186744433 ], [ -95.735510096959359, 29.770327186842881 ], [ -95.735506097430758, 29.769933186915221 ], [ -95.735497097545917, 29.769746186700246 ], [ -95.735473097475392, 29.769494186357065 ], [ -95.73544609686725, 29.76931218658013 ], [ -95.735392097377982, 29.769062186620413 ], [ -95.735319097182796, 29.768788186236378 ], [ -95.735305097174205, 29.768717186619142 ], [ -95.735271097571527, 29.768648186401911 ], [ -95.735254097588012, 29.768563185961742 ], [ -95.735229097248819, 29.768474186237572 ], [ -95.73516209684901, 29.768275186546369 ], [ -95.735137097131897, 29.768177186267909 ], [ -95.735067096722588, 29.767958186223776 ], [ -95.735001097056383, 29.767721185931194 ], [ -95.734977096806233, 29.767604186239353 ], [ -95.734966096671172, 29.767489185679384 ], [ -95.734935096536375, 29.767267185986601 ], [ -95.73490609739423, 29.766963185830573 ], [ -95.734905096945468, 29.766879186152948 ], [ -95.73491009651265, 29.766808186325459 ], [ -95.734904097296834, 29.76660818598566 ], [ -95.73490009705263, 29.766063186296222 ], [ -95.734889097092861, 29.76568018560711 ], [ -95.734903096452641, 29.765586186108706 ], [ -95.7349170966706, 29.765539185882925 ], [ -95.734913097050693, 29.765519185596876 ], [ -95.734900096646797, 29.765457185485275 ], [ -95.734899097329503, 29.765391185994485 ], [ -95.734909096446316, 29.765334186053707 ], [ -95.734896096741295, 29.765266185588686 ], [ -95.7348930963296, 29.764894185432464 ], [ -95.734896097196824, 29.764757185182425 ], [ -95.734888097157494, 29.764670185312664 ], [ -95.734885097032645, 29.764302185344864 ], [ -95.734890097204357, 29.764209185037185 ], [ -95.734878096711995, 29.763753185061908 ], [ -95.734884096738227, 29.763686185428611 ], [ -95.73486409654852, 29.76351318570438 ], [ -95.73483009626456, 29.763215185542716 ], [ -95.734807096875358, 29.763069185674652 ], [ -95.734710096808897, 29.762683184746262 ], [ -95.734633096622957, 29.76243018555455 ], [ -95.734482096606044, 29.761874184759787 ], [ -95.734420096159297, 29.761563185338392 ], [ -95.734372096253765, 29.761228185269715 ], [ -95.734355096639192, 29.761024185202594 ], [ -95.734335096393806, 29.759967185007326 ], [ -95.734339096514006, 29.759527184490651 ], [ -95.733189096563919, 29.759527184510745 ], [ -95.732826096170086, 29.75951518450405 ], [ -95.732570095983519, 29.759497184636526 ], [ -95.732305095837589, 29.759470184471798 ], [ -95.731895096105418, 29.759415184803224 ], [ -95.731621096003551, 29.759368184546947 ], [ -95.731215095339252, 29.759281184413187 ], [ -95.731084096091379, 29.759245184378379 ], [ -95.73094609586748, 29.759212184199821 ], [ -95.730682095031909, 29.759137184964708 ], [ -95.730334095840817, 29.759021184605782 ], [ -95.730082095154756, 29.758924184927906 ], [ -95.729706095564936, 29.758771184120505 ], [ -95.729497095687449, 29.75866718438224 ], [ -95.72939109496086, 29.75861918456728 ], [ -95.729181095363515, 29.758510184866768 ], [ -95.728964095082702, 29.758388184586614 ], [ -95.728631095393055, 29.758185184586726 ], [ -95.728414094388455, 29.758039184511432 ], [ -95.727376095013298, 29.757281183870887 ], [ -95.725702093728543, 29.756041183957858 ], [ -95.725001094160319, 29.755513184251345 ], [ -95.724436093794665, 29.755095183787304 ], [ -95.724151093391384, 29.754891183637429 ], [ -95.724087093981595, 29.754837184107785 ], [ -95.724025093795802, 29.754791184313177 ], [ -95.723116093063126, 29.754117183927463 ], [ -95.723012093688439, 29.754041183463158 ], [ -95.722361092723446, 29.753565183974114 ], [ -95.72226809348939, 29.753500183738026 ], [ -95.722227092716196, 29.753543183743872 ], [ -95.721860092919172, 29.753931183679025 ], [ -95.721820093471791, 29.7539681841895 ], [ -95.721776093235334, 29.754001184017994 ], [ -95.72174209334419, 29.754052184204973 ], [ -95.721654093243217, 29.754141183550548 ], [ -95.721604092613518, 29.754185183477016 ], [ -95.721558093340008, 29.754239183577276 ], [ -95.721456093290769, 29.754343184253599 ], [ -95.72128909268524, 29.754500183795795 ], [ -95.721180093299708, 29.75461918369805 ], [ -95.72090509310361, 29.754950183679238 ], [ -95.72071709310481, 29.75520218408764 ], [ -95.720663093126305, 29.755278184525732 ], [ -95.720525092212299, 29.755492184547219 ], [ -95.720362092847637, 29.755786184495641 ], [ -95.720144093038215, 29.756237184378499 ], [ -95.720119092368193, 29.756272184031058 ], [ -95.720084092605859, 29.756361184444017 ], [ -95.720012092550206, 29.756512184103588 ], [ -95.719876092158984, 29.756788184231166 ], [ -95.719856093130559, 29.75684218479017 ], [ -95.719814092892051, 29.756908184617853 ], [ -95.719781093067539, 29.756987184495244 ], [ -95.719761092323623, 29.757036184662418 ], [ -95.719610092411941, 29.75732318451762 ], [ -95.719468092468716, 29.757561184636561 ], [ -95.719359092763128, 29.757715184518744 ], [ -95.719282092013529, 29.757823184836642 ], [ -95.719078092777906, 29.758092185024047 ], [ -95.718919092771188, 29.758273185126168 ], [ -95.718841092943265, 29.758359184534982 ], [ -95.718771092508916, 29.758432184853433 ], [ -95.718287092279866, 29.758937184670494 ], [ -95.718115091950423, 29.759105185012903 ], [ -95.717803092070767, 29.75942518526152 ], [ -95.717763092594382, 29.759467184926365 ], [ -95.717722091818217, 29.759508185259183 ], [ -95.717669092044233, 29.759562184975582 ], [ -95.717576092666505, 29.759657185114865 ], [ -95.717172092365416, 29.760084184911527 ], [ -95.717063091746581, 29.760209185524069 ], [ -95.71685109182495, 29.760467185131898 ], [ -95.716643091927224, 29.760762185603301 ], [ -95.716555092240341, 29.760900185864067 ], [ -95.716423091501682, 29.761131185460904 ], [ -95.716288092066719, 29.761398185147478 ], [ -95.716180091714421, 29.76163118516558 ], [ -95.716118092025638, 29.761779185710697 ], [ -95.716028092189958, 29.762043185603265 ], [ -95.715955092090695, 29.76229418598313 ], [ -95.715914092384864, 29.762470185739122 ], [ -95.715903092319579, 29.762515185409725 ], [ -95.715862092225819, 29.762734186180143 ], [ -95.715821092271966, 29.763042185607514 ], [ -95.715799091654986, 29.763407185959785 ], [ -95.715801092325393, 29.76363918624369 ], [ -95.715824091604674, 29.763976186367014 ], [ -95.715846092002522, 29.764153185726592 ], [ -95.71586009181388, 29.764270186326748 ], [ -95.715903091855438, 29.764521186176708 ], [ -95.715982091878743, 29.764848185958371 ], [ -95.716009091927916, 29.764937186449508 ], [ -95.716044092205593, 29.7650491859211 ], [ -95.716092092257298, 29.765186186062103 ], [ -95.716116092109957, 29.765252186406169 ], [ -95.716231092591798, 29.765535186122079 ], [ -95.716399091734019, 29.765890186584482 ], [ -95.716458091685254, 29.765992186616188 ], [ -95.71651409234839, 29.766088186749482 ], [ -95.716678092100381, 29.766352186643989 ], [ -95.717008092612872, 29.766818186480947 ], [ -95.717238092584552, 29.767148186545175 ], [ -95.717396092210166, 29.767367187141975 ], [ -95.717501092354809, 29.767480186761308 ], [ -95.717579092468881, 29.767621186568189 ], [ -95.717914092864675, 29.768096186804183 ], [ -95.718090092978102, 29.768369186689419 ], [ -95.718109092379677, 29.768399187259046 ], [ -95.718293092701813, 29.768723186541344 ], [ -95.718411092404253, 29.768959186610662 ], [ -95.718516093116421, 29.769220186658803 ], [ -95.718608092780073, 29.76949518686223 ], [ -95.718653093109225, 29.769641186915006 ], [ -95.718717092827944, 29.769909186937817 ], [ -95.718755092726695, 29.770097186982806 ], [ -95.71879009331758, 29.770320187095333 ], [ -95.71880409327396, 29.770447187718428 ], [ -95.71880909297127, 29.770494187649664 ], [ -95.718823092787005, 29.770786186978711 ], [ -95.718821093272055, 29.770956187596347 ], [ -95.718828092891599, 29.771035187060704 ], [ -95.718830092980994, 29.771314187776841 ], [ -95.718831093197124, 29.771490187275813 ], [ -95.718836093319197, 29.772130187568237 ], [ -95.718836093051991, 29.77219818732798 ], [ -95.718846093021654, 29.773385188026168 ], [ -95.718847093181608, 29.773714187956802 ], [ -95.718847092930417, 29.773836188351247 ], [ -95.718855093005303, 29.774613188048871 ], [ -95.718857092697334, 29.774702188387604 ], [ -95.718862093170614, 29.774863188140181 ], [ -95.718854093278281, 29.774953188325195 ], [ -95.718854093657811, 29.775047187855577 ], [ -95.718855093148861, 29.775144188562667 ], [ -95.718856092859923, 29.775250188025673 ], [ -95.718958093452997, 29.775248188484824 ], [ -95.719033093664308, 29.775247188637429 ], [ -95.719097092751937, 29.775247188471802 ], [ -95.719895093302625, 29.775252187826737 ], [ -95.719992093842436, 29.775259188434823 ], [ -95.720430093142241, 29.775296188455126 ], [ -95.721189093993232, 29.775432187843592 ], [ -95.721599093592644, 29.775544187770958 ], [ -95.721666093411983, 29.775556188305085 ], [ -95.722285093823089, 29.775717188135275 ], [ -95.722635093690499, 29.775799188636842 ], [ -95.722706094623931, 29.775812188164046 ], [ -95.722906094460328, 29.775850188028969 ], [ -95.723223094553873, 29.775902187863249 ], [ -95.723928094195443, 29.775963187918752 ], [ -95.724404094898816, 29.775976187966148 ], [ -95.725542095401281, 29.775993187776706 ], [ -95.725993094863725, 29.775999188291063 ], [ -95.726852095130397, 29.776009187849915 ], [ -95.727279095576094, 29.776016188275946 ], [ -95.728075095860603, 29.776026187713402 ], [ -95.728998095535687, 29.77603718803806 ], [ -95.729319096210915, 29.776036188432361 ], [ -95.729805095815607, 29.776043188188105 ], [ -95.730187096360766, 29.7760321877427 ], [ -95.730368096382179, 29.776022188385305 ], [ -95.730443095731729, 29.776016188145295 ], [ -95.731210096750431, 29.7759591877576 ], [ -95.731333096045617, 29.775955188081117 ], [ -95.731506096243606, 29.775949188183738 ], [ -95.731814096221697, 29.775940188212701 ], [ -95.731972096658154, 29.775939187784029 ], [ -95.732203096540999, 29.775939188140644 ], [ -95.732648096346225, 29.775935188175595 ], [ -95.733158096880018, 29.775931188014479 ], [ -95.733367096745098, 29.775934188227385 ], [ -95.733616097362997, 29.775945187777552 ], [ -95.733889096817776, 29.775973187823887 ], [ -95.734313097363042, 29.776032187817385 ], [ -95.735322097238111, 29.776205187943766 ], [ -95.735436097900916, 29.776223187707885 ], [ -95.735633097712537, 29.776255187990895 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 218, "Tract": "48201550500", "Area_SqMi": 1.6899832087526601, "total_2009": 758, "total_2010": 842, "total_2011": 780, "total_2012": 619, "total_2013": 666, "total_2014": 861, "total_2015": 787, "total_2016": 547, "total_2017": 533, "total_2018": 3406, "total_2019": 3615, "total_2020": 3332, "age1": 272, "age2": 1814, "age3": 441, "earn1": 95, "earn2": 248, "earn3": 2184, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 212, "naics_s05": 2067, "naics_s06": 71, "naics_s07": 18, "naics_s08": 7, "naics_s09": 22, "naics_s10": 0, "naics_s11": 29, "naics_s12": 16, "naics_s13": 0, "naics_s14": 16, "naics_s15": 0, "naics_s16": 43, "naics_s17": 0, "naics_s18": 10, "naics_s19": 13, "naics_s20": 0, "race1": 1977, "race2": 238, "race3": 15, "race4": 253, "race5": 7, "race6": 37, "ethnicity1": 1803, "ethnicity2": 724, "edu1": 397, "edu2": 585, "edu3": 699, "edu4": 574, "Shape_Length": 30905.501269480559, "Shape_Area": 47113839.424854957, "total_2021": 2429, "total_2022": 2527 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.455024033831663, 29.946179232286589 ], [ -95.455023033431871, 29.945940232240371 ], [ -95.455018033140917, 29.945823232258743 ], [ -95.45499303351707, 29.943545231226903 ], [ -95.454983033565782, 29.942505231367143 ], [ -95.454976033514541, 29.941840231527834 ], [ -95.454970033247221, 29.941484230977306 ], [ -95.454957033440266, 29.940759231244066 ], [ -95.454925032893286, 29.939304230323355 ], [ -95.454885033518593, 29.938196230230403 ], [ -95.454901033174551, 29.938109230836172 ], [ -95.454908032975368, 29.937728230022714 ], [ -95.454912033173144, 29.937553230023155 ], [ -95.454667032786205, 29.937554230375113 ], [ -95.453371032739852, 29.937595230757417 ], [ -95.451779032757713, 29.937672230575107 ], [ -95.451398032264549, 29.937714230169963 ], [ -95.451073031944674, 29.937735230912935 ], [ -95.450910032513491, 29.937912230869387 ], [ -95.450693031991619, 29.938146230708842 ], [ -95.450644031775468, 29.938173230661455 ], [ -95.450213032225449, 29.938410230824925 ], [ -95.450066031471621, 29.938518230430631 ], [ -95.449809031591514, 29.938706230745105 ], [ -95.449708032082384, 29.938822230471409 ], [ -95.449418031486516, 29.938948230625648 ], [ -95.449203031244991, 29.938965230584088 ], [ -95.449084032161267, 29.939003230502664 ], [ -95.448793031763316, 29.939168231227221 ], [ -95.448528031071618, 29.939361230906023 ], [ -95.448288031415672, 29.939493230564935 ], [ -95.448079031819006, 29.939661230617595 ], [ -95.447973031439474, 29.939746231515212 ], [ -95.447653031016614, 29.940036231404445 ], [ -95.447562030862741, 29.940120230804055 ], [ -95.44745503092318, 29.940230231188579 ], [ -95.447158031004022, 29.940395231259014 ], [ -95.446003030447727, 29.940917231338716 ], [ -95.444949030631022, 29.941538231684753 ], [ -95.444735030253327, 29.941681231271215 ], [ -95.443927030066348, 29.942138231450873 ], [ -95.443402030750633, 29.942409232153583 ], [ -95.44313403051035, 29.942548231608068 ], [ -95.442967029881714, 29.942634231757914 ], [ -95.441661029786601, 29.943309231983775 ], [ -95.441105029820889, 29.943507232232889 ], [ -95.440032029990235, 29.943963232363352 ], [ -95.438631029360124, 29.944486232213794 ], [ -95.438220028814598, 29.94459623237654 ], [ -95.438025029267919, 29.944601232689902 ], [ -95.436409028959048, 29.945206232243251 ], [ -95.436333028235325, 29.945321232256383 ], [ -95.436251028743669, 29.945415232872726 ], [ -95.436068028487995, 29.945492232440948 ], [ -95.435777028284818, 29.945574232421418 ], [ -95.435556028935565, 29.945668232907913 ], [ -95.435310028640473, 29.945739232569611 ], [ -95.43498802831806, 29.94580523231965 ], [ -95.434931027878434, 29.94578923282684 ], [ -95.434546028044466, 29.945910232728423 ], [ -95.434381028634832, 29.945994233008886 ], [ -95.434349028492534, 29.946010232813357 ], [ -95.43429402779114, 29.946039232906301 ], [ -95.434169028508478, 29.946127233308175 ], [ -95.434458028133676, 29.946129232764058 ], [ -95.434895028673537, 29.946121233068432 ], [ -95.436155028546196, 29.946111232880977 ], [ -95.436188029014858, 29.946215232653945 ], [ -95.436189028710942, 29.946432233123719 ], [ -95.43619502888032, 29.946547232757698 ], [ -95.436195028952611, 29.94678823294155 ], [ -95.436231028866629, 29.948569233631424 ], [ -95.436230029247426, 29.948733233546054 ], [ -95.436249029240713, 29.949409233217313 ], [ -95.436271029043482, 29.950731233746314 ], [ -95.436275029090993, 29.950981233955538 ], [ -95.436283028992023, 29.95145823341764 ], [ -95.436289029017175, 29.951597233799749 ], [ -95.436289028839099, 29.951871234315249 ], [ -95.436292029421224, 29.952006234178025 ], [ -95.436350029038266, 29.954960234937641 ], [ -95.436387029568408, 29.956824235376306 ], [ -95.436389028922548, 29.956906235094781 ], [ -95.436394029569968, 29.957025235140716 ], [ -95.436396028693267, 29.957067235424944 ], [ -95.436392029037137, 29.957216235333174 ], [ -95.436404029726916, 29.95798323548404 ], [ -95.436407029103606, 29.958168235184736 ], [ -95.436411029196165, 29.95839423564092 ], [ -95.436417029511503, 29.958779235244148 ], [ -95.436443029007222, 29.959961235938646 ], [ -95.436465029841784, 29.961086235883801 ], [ -95.436472029676509, 29.961410235452867 ], [ -95.436489029324335, 29.962097235752982 ], [ -95.436479029791869, 29.962419236098928 ], [ -95.43649702902718, 29.962583235809603 ], [ -95.436498028981077, 29.962906236559874 ], [ -95.436505029336601, 29.963067236554 ], [ -95.436505029104779, 29.963386236586285 ], [ -95.436516029117357, 29.963700236615438 ], [ -95.436539029618373, 29.965010236305378 ], [ -95.436548029377676, 29.965247237018279 ], [ -95.436554030035182, 29.965306236299508 ], [ -95.436576029255008, 29.965423236553683 ], [ -95.436702029232677, 29.965419236809957 ], [ -95.437724029673717, 29.965389237031225 ], [ -95.438273030151848, 29.965379236637986 ], [ -95.439717030226419, 29.965343236692828 ], [ -95.439854030457525, 29.96533923683765 ], [ -95.440171030771893, 29.965331236729241 ], [ -95.441856030839432, 29.965289236450765 ], [ -95.442128030595214, 29.965279236856073 ], [ -95.443009031621912, 29.965253236652867 ], [ -95.443378031052134, 29.965249236601977 ], [ -95.445299031578756, 29.965203236665502 ], [ -95.446449031943445, 29.965169236415889 ], [ -95.446921031922002, 29.965163236444575 ], [ -95.447062032024306, 29.96515423635848 ], [ -95.447526032279072, 29.96514223608304 ], [ -95.447750032795255, 29.96513623627586 ], [ -95.447896032394226, 29.965139236641363 ], [ -95.448040032303922, 29.965130236362938 ], [ -95.448194033105992, 29.965126236362764 ], [ -95.448358033103943, 29.965128236630783 ], [ -95.448518032386929, 29.9651202357865 ], [ -95.448690032582476, 29.965121235972529 ], [ -95.449375033242958, 29.965102236616776 ], [ -95.449548033162174, 29.965093236171253 ], [ -95.450248033180088, 29.965077236560465 ], [ -95.450599033359026, 29.965073236381212 ], [ -95.451106033512232, 29.965054236193165 ], [ -95.451266032959538, 29.965045236532081 ], [ -95.451782033637414, 29.964994235690224 ], [ -95.451970034031731, 29.964975236107392 ], [ -95.452255034053792, 29.964956235817453 ], [ -95.453667034392168, 29.964925235696825 ], [ -95.45366003359922, 29.964657236375526 ], [ -95.453634034144613, 29.964341235589661 ], [ -95.453594034195987, 29.964070235440591 ], [ -95.453565034072142, 29.963927235855852 ], [ -95.453490034143968, 29.963639236083655 ], [ -95.453444033756853, 29.963495235939032 ], [ -95.453392033719553, 29.963351235250084 ], [ -95.453331033459662, 29.963208236054694 ], [ -95.453264033639073, 29.963065235395614 ], [ -95.453116033508437, 29.962782235283054 ], [ -95.453033033438714, 29.962644235476731 ], [ -95.452942033401385, 29.962509235686593 ], [ -95.452847033381801, 29.962379235200814 ], [ -95.452447033245136, 29.961868235399365 ], [ -95.452259033311023, 29.961608235828507 ], [ -95.45217603373041, 29.961479235123338 ], [ -95.452101033554186, 29.961350235425169 ], [ -95.45197003335042, 29.961098235623865 ], [ -95.451861033153421, 29.960852235271187 ], [ -95.451815033488785, 29.960730235005943 ], [ -95.451736033618502, 29.960493235445632 ], [ -95.451676032773406, 29.960276234766159 ], [ -95.451623033237141, 29.960006234791134 ], [ -95.451590032782789, 29.959740234662185 ], [ -95.451572033720822, 29.959512234708832 ], [ -95.451568033507499, 29.959156234554701 ], [ -95.451559033265482, 29.958905235157552 ], [ -95.451502033285948, 29.955498234077748 ], [ -95.451505032957073, 29.955174233913038 ], [ -95.451526032606282, 29.954909234455425 ], [ -95.451565032548189, 29.954613233693667 ], [ -95.451593032761792, 29.954461234272031 ], [ -95.451662032515003, 29.954151233723756 ], [ -95.451706033031385, 29.953994233449734 ], [ -95.451811033309085, 29.953683233728057 ], [ -95.451870033123441, 29.95353323405779 ], [ -95.451935033185208, 29.95338623338715 ], [ -95.452073033374219, 29.953100233634945 ], [ -95.452148033533291, 29.952960234072005 ], [ -95.452229033491548, 29.952822233397704 ], [ -95.452399032718006, 29.952555233626946 ], [ -95.452489032633082, 29.952427233054291 ], [ -95.452672033518297, 29.952187233669154 ], [ -95.453174033530786, 29.951573233034857 ], [ -95.453482033388497, 29.951192233561272 ], [ -95.453916033823035, 29.950639232734915 ], [ -95.454046033923717, 29.950452232695024 ], [ -95.454121033498055, 29.950327233114731 ], [ -95.45423703319284, 29.950132232592534 ], [ -95.454384033992795, 29.949860232700559 ], [ -95.454467033647418, 29.949679232484371 ], [ -95.454559033414839, 29.94945323280556 ], [ -95.454648033855847, 29.949206232633628 ], [ -95.454719033231726, 29.948950232938383 ], [ -95.454798033656232, 29.948578232819624 ], [ -95.454840033965269, 29.948293232305193 ], [ -95.454943033224694, 29.947318232534265 ], [ -95.454979033080875, 29.946992231943529 ], [ -95.45501303376912, 29.946598232124668 ], [ -95.455024033831663, 29.946179232286589 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 219, "Tract": "48201550700", "Area_SqMi": 2.3452011821843288, "total_2009": 1739, "total_2010": 2498, "total_2011": 3448, "total_2012": 4139, "total_2013": 4443, "total_2014": 4746, "total_2015": 4538, "total_2016": 4222, "total_2017": 3717, "total_2018": 4491, "total_2019": 4763, "total_2020": 5184, "age1": 972, "age2": 3119, "age3": 1200, "earn1": 403, "earn2": 1016, "earn3": 3872, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 84, "naics_s05": 1128, "naics_s06": 1929, "naics_s07": 288, "naics_s08": 542, "naics_s09": 16, "naics_s10": 7, "naics_s11": 305, "naics_s12": 161, "naics_s13": 159, "naics_s14": 107, "naics_s15": 168, "naics_s16": 45, "naics_s17": 7, "naics_s18": 187, "naics_s19": 152, "naics_s20": 0, "race1": 3823, "race2": 1028, "race3": 37, "race4": 309, "race5": 4, "race6": 90, "ethnicity1": 3428, "ethnicity2": 1863, "edu1": 959, "edu2": 1154, "edu3": 1402, "edu4": 804, "Shape_Length": 50762.048834458787, "Shape_Area": 65380195.10736075, "total_2021": 4776, "total_2022": 5291 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.533077054168331, 29.9506622301341 ], [ -95.533385054255106, 29.950719230077816 ], [ -95.531716053103125, 29.949435229862324 ], [ -95.530847053435807, 29.948848230053851 ], [ -95.529879052870101, 29.9481442303961 ], [ -95.52899805259473, 29.947404229509814 ], [ -95.528341052609534, 29.946884229996094 ], [ -95.527627051573319, 29.946285229406627 ], [ -95.527306051838721, 29.946013229341514 ], [ -95.527130051473463, 29.945863229782873 ], [ -95.526965051791109, 29.945723229907557 ], [ -95.526783051328664, 29.945580229367881 ], [ -95.526696052103063, 29.945495229306065 ], [ -95.526111051912238, 29.944939229255152 ], [ -95.525619051100421, 29.94455122936224 ], [ -95.525569051877241, 29.944511229183984 ], [ -95.524961050866011, 29.944031229326043 ], [ -95.524078051456016, 29.94346022894705 ], [ -95.524061050774705, 29.943443229143337 ], [ -95.524034050637837, 29.943417228948451 ], [ -95.524015050609577, 29.943397229546513 ], [ -95.524008050530625, 29.943390229310609 ], [ -95.523972051047906, 29.943355229333299 ], [ -95.523958050842424, 29.943340228796949 ], [ -95.523520051268903, 29.943010229525932 ], [ -95.522635050693822, 29.942334228742457 ], [ -95.522303050389013, 29.942082228864347 ], [ -95.521524049816819, 29.941505229008172 ], [ -95.52135405030026, 29.941380229275921 ], [ -95.521324050271744, 29.941358228609513 ], [ -95.521214050197443, 29.941278229153255 ], [ -95.521147049734267, 29.941235228715907 ], [ -95.520219050227439, 29.940577228505365 ], [ -95.519742049631716, 29.940238228900792 ], [ -95.519123049850066, 29.939802228545975 ], [ -95.518409049847378, 29.939264228199114 ], [ -95.517832049143507, 29.938789228837233 ], [ -95.516867048606343, 29.938089227920706 ], [ -95.516402048374331, 29.937731227926612 ], [ -95.516002049187477, 29.9374152280005 ], [ -95.515552048666279, 29.937089228000833 ], [ -95.515322048141911, 29.936908227797517 ], [ -95.515230048738886, 29.936916228296376 ], [ -95.515185048040365, 29.936920228281416 ], [ -95.515142048487803, 29.936923227789606 ], [ -95.514678048588266, 29.936941228440354 ], [ -95.513266048309504, 29.936962228141581 ], [ -95.509464046762446, 29.936995228264678 ], [ -95.507715046687665, 29.937074228342837 ], [ -95.507493046114021, 29.937074228331451 ], [ -95.507237046869761, 29.937088228775313 ], [ -95.504835046217039, 29.937095228264226 ], [ -95.49892004436505, 29.937125229109547 ], [ -95.498196043692502, 29.937151229175505 ], [ -95.497848044094383, 29.937157229257263 ], [ -95.497645043628296, 29.937157228486711 ], [ -95.492456042651582, 29.937236228715253 ], [ -95.488267041575185, 29.937266229148818 ], [ -95.483487040816001, 29.937350229774015 ], [ -95.483260039800442, 29.937357229804185 ], [ -95.482988039952943, 29.937357229691749 ], [ -95.478776039057252, 29.937418229236446 ], [ -95.476726038699169, 29.937440229389974 ], [ -95.473499037342663, 29.937473230121277 ], [ -95.471584036971393, 29.93749322946919 ], [ -95.469429037223705, 29.937531229804506 ], [ -95.467515036676019, 29.937554230184794 ], [ -95.466706036080097, 29.937576229961003 ], [ -95.465942036060156, 29.937564230076237 ], [ -95.462388034988948, 29.937513229902542 ], [ -95.461044034545523, 29.937520229914931 ], [ -95.460248034519537, 29.93752522988521 ], [ -95.46000303459742, 29.937526230053535 ], [ -95.460140034213325, 29.937702230500477 ], [ -95.460396034829543, 29.938030230163324 ], [ -95.460496034947482, 29.938159230321496 ], [ -95.460968034672902, 29.938794230081495 ], [ -95.461265035118259, 29.939171230200188 ], [ -95.461339034873689, 29.939273230864725 ], [ -95.461742034485198, 29.939781230329281 ], [ -95.462474035370832, 29.94073323074678 ], [ -95.46276403487208, 29.941110231163861 ], [ -95.463047035560848, 29.941035230412837 ], [ -95.463274034870182, 29.940997230371003 ], [ -95.463634035191063, 29.940854231036656 ], [ -95.463836035854897, 29.940810230864884 ], [ -95.464164036026958, 29.94083123064528 ], [ -95.464966036023327, 29.941260230755351 ], [ -95.465970036436033, 29.941909230966878 ], [ -95.466065036189718, 29.94201823061659 ], [ -95.467151036025385, 29.942848231468908 ], [ -95.467934036945763, 29.943689230893028 ], [ -95.468237036463989, 29.943920231268713 ], [ -95.46835703672285, 29.943970230903052 ], [ -95.469102037176228, 29.944079231153278 ], [ -95.469676036831885, 29.944211231556146 ], [ -95.469815037024972, 29.944288231392989 ], [ -95.469966037425138, 29.944326231541957 ], [ -95.47062303697524, 29.944409231538042 ], [ -95.470768037517857, 29.944365231467483 ], [ -95.471753038117569, 29.944529231616027 ], [ -95.471961037544119, 29.944557231203049 ], [ -95.472062037476434, 29.944469231015386 ], [ -95.472151038002906, 29.944441231069899 ], [ -95.472334038133027, 29.944458231243946 ], [ -95.472656038055604, 29.944535231291393 ], [ -95.47349803835948, 29.944683231018068 ], [ -95.474059038439876, 29.944658230876868 ], [ -95.474095038748118, 29.944704231007599 ], [ -95.474141038504001, 29.944713231206521 ], [ -95.474201038302866, 29.944726231101836 ], [ -95.474230038285981, 29.94473223136967 ], [ -95.474494038318895, 29.944787231119292 ], [ -95.474941038232942, 29.944880231100608 ], [ -95.475181038632513, 29.944941231530382 ], [ -95.475295038176583, 29.944979231607892 ], [ -95.475787039119922, 29.945034231501133 ], [ -95.476810039427889, 29.945138230768851 ], [ -95.477031039254541, 29.945149231177865 ], [ -95.477195039078779, 29.945121231098952 ], [ -95.477447039535434, 29.945143230930025 ], [ -95.477687038767328, 29.94513823125089 ], [ -95.477870039575421, 29.945121231415818 ], [ -95.478401039184931, 29.945170230811179 ], [ -95.479209040051003, 29.945247230865526 ], [ -95.479392039756164, 29.945274231049439 ], [ -95.479464040084309, 29.945317231230447 ], [ -95.479563039539102, 29.945369231461918 ], [ -95.480667039753854, 29.945505230666829 ], [ -95.481424040482636, 29.945598230755845 ], [ -95.481803040181404, 29.945642230818969 ], [ -95.482100040007339, 29.945724230922767 ], [ -95.482498040158561, 29.945785230717565 ], [ -95.482655040494706, 29.945796230971567 ], [ -95.482788040399683, 29.945790231111776 ], [ -95.483230040592403, 29.94578423065914 ], [ -95.483807041333563, 29.945870230929039 ], [ -95.484076040942796, 29.945910231428499 ], [ -95.485002040962627, 29.946015231427204 ], [ -95.485477041702467, 29.946069231435089 ], [ -95.485686041042825, 29.946124231229319 ], [ -95.486039041456706, 29.946152230755693 ], [ -95.486715041483635, 29.946250230846506 ], [ -95.487100041681828, 29.946437230708927 ], [ -95.487801042346391, 29.946745230803145 ], [ -95.488085041905052, 29.946887231481711 ], [ -95.48816104178556, 29.946964230820218 ], [ -95.488167041911012, 29.947074230746839 ], [ -95.48842004156036, 29.947223231631941 ], [ -95.488780042310395, 29.947404231029189 ], [ -95.48891804242794, 29.94742023091057 ], [ -95.489196042492281, 29.947558230806621 ], [ -95.489474042357344, 29.947733231608137 ], [ -95.489758042520137, 29.947838231589106 ], [ -95.489885042632878, 29.947843230953588 ], [ -95.49013704300269, 29.947832231631867 ], [ -95.491078042706064, 29.947766231639545 ], [ -95.491311042717285, 29.947716231019847 ], [ -95.491520043428878, 29.947705230835382 ], [ -95.49169604339879, 29.947771231290613 ], [ -95.491760042574754, 29.947771231218962 ], [ -95.4918860433052, 29.947826231078658 ], [ -95.492031043344639, 29.947842231029238 ], [ -95.492151042956607, 29.947820231322364 ], [ -95.492290043377125, 29.94783123095732 ], [ -95.492422043131938, 29.94785323147735 ], [ -95.49263104290705, 29.947842231340786 ], [ -95.492921043766245, 29.947842231039807 ], [ -95.493363042878926, 29.947814230782345 ], [ -95.493685043538377, 29.947808231183728 ], [ -95.493805043444127, 29.947836231417668 ], [ -95.493906043641374, 29.947891230798433 ], [ -95.493988043545031, 29.9479132309243 ], [ -95.494038043224592, 29.947902230814773 ], [ -95.494083043889106, 29.947852231226591 ], [ -95.494146043969224, 29.947852231003438 ], [ -95.494373043668858, 29.947929230880138 ], [ -95.494537043712327, 29.948028231314307 ], [ -95.494727044197035, 29.948121231269745 ], [ -95.494885043930751, 29.948248231618997 ], [ -95.49510604374143, 29.948561231174384 ], [ -95.495295044260445, 29.948693231008587 ], [ -95.495459043483976, 29.94875323135307 ], [ -95.495642043512518, 29.948781230817424 ], [ -95.495807043797186, 29.948819231094657 ], [ -95.496280044128454, 29.948769231047699 ], [ -95.496589044550149, 29.948797231166044 ], [ -95.497006044537017, 29.948774231097964 ], [ -95.497157044853267, 29.948736231493264 ], [ -95.49733404469174, 29.948736230987347 ], [ -95.497776044907809, 29.948708231517028 ], [ -95.498065044627495, 29.948697231145623 ], [ -95.49829104437147, 29.948688231590108 ], [ -95.498332044951866, 29.948686231303931 ], [ -95.498616044801324, 29.948647231170604 ], [ -95.498900044915047, 29.948532231109603 ], [ -95.499177044910255, 29.94818523107115 ], [ -95.499379045327672, 29.947850230636764 ], [ -95.49958104536293, 29.947679231144697 ], [ -95.50001004466543, 29.947536231179274 ], [ -95.500082044897411, 29.947535230785583 ], [ -95.500631045676528, 29.947304230578435 ], [ -95.500960044975585, 29.947195230722095 ], [ -95.501193045086453, 29.947096230809347 ], [ -95.501326045257528, 29.947030230498545 ], [ -95.501806045782757, 29.946843230786637 ], [ -95.502292045318228, 29.946766230981058 ], [ -95.502415045328107, 29.946705230233274 ], [ -95.502494046137869, 29.946667230831288 ], [ -95.502627045382283, 29.946689230200672 ], [ -95.502715045593433, 29.946684230690234 ], [ -95.502936046180679, 29.946629230249417 ], [ -95.503157045429759, 29.946596230782397 ], [ -95.503264045851509, 29.946607230385329 ], [ -95.503384045445827, 29.946629230684668 ], [ -95.503555045572668, 29.946690230253036 ], [ -95.503782045546956, 29.946756230612763 ], [ -95.504123045784226, 29.94683823065844 ], [ -95.504432045918065, 29.946899230218296 ], [ -95.504710046641932, 29.946916230689791 ], [ -95.504969046658772, 29.946910230935728 ], [ -95.505240046709261, 29.94688323037861 ], [ -95.505587046880734, 29.946801230167235 ], [ -95.505772046060642, 29.946748230433691 ], [ -95.506029046790403, 29.946674230203534 ], [ -95.506490046607155, 29.946570230023546 ], [ -95.506635046855493, 29.946526230385707 ], [ -95.506888047256226, 29.946389230700582 ], [ -95.507273047236922, 29.94623523030921 ], [ -95.507746047385368, 29.946087230329979 ], [ -95.508138046883559, 29.946054230139474 ], [ -95.508491047121353, 29.946104230498026 ], [ -95.508681047004075, 29.946159229866261 ], [ -95.509091047334962, 29.946241229960417 ], [ -95.50938804700472, 29.946285229950139 ], [ -95.509552047083659, 29.946291230527084 ], [ -95.50981704776369, 29.946258230533733 ], [ -95.509874047070028, 29.946269230083381 ], [ -95.51000004766658, 29.94631323015167 ], [ -95.51010104717875, 29.946329230160675 ], [ -95.510385048043887, 29.946341230163902 ], [ -95.510644047767187, 29.946368230518726 ], [ -95.511199048220391, 29.946407230024352 ], [ -95.511654048276483, 29.946412229882494 ], [ -95.51201404822514, 29.946363229864197 ], [ -95.512180047753915, 29.946368230372762 ], [ -95.512348048553918, 29.946374230376133 ], [ -95.512575048683644, 29.946402230630667 ], [ -95.51306104809278, 29.946578230664461 ], [ -95.513440048179362, 29.94668223029953 ], [ -95.514721048326678, 29.947145230585313 ], [ -95.515062048930091, 29.947288230551134 ], [ -95.515573048722274, 29.947563230641428 ], [ -95.515794049506852, 29.947695230074459 ], [ -95.516425049256185, 29.948195230299373 ], [ -95.51660204938257, 29.948294230043711 ], [ -95.517189049855645, 29.948580230385282 ], [ -95.517303049234727, 29.948624230686445 ], [ -95.517366049331173, 29.948657230492152 ], [ -95.517435049259959, 29.948723230760898 ], [ -95.517618050078553, 29.948811230683926 ], [ -95.517833049857401, 29.948883230819014 ], [ -95.518073049742554, 29.948976230337212 ], [ -95.518275050080405, 29.949026230705289 ], [ -95.518382050203286, 29.949048230502285 ], [ -95.518540049611445, 29.949031230913015 ], [ -95.518685050337652, 29.949037230251374 ], [ -95.518767049832448, 29.949065230752598 ], [ -95.518868049632232, 29.949125230184688 ], [ -95.519007049902172, 29.949158230372554 ], [ -95.519588050364959, 29.94922423043721 ], [ -95.519722050552858, 29.949223230090784 ], [ -95.520231050064922, 29.949219230632881 ], [ -95.520267050646552, 29.949225230804892 ], [ -95.52052805010436, 29.949268230254209 ], [ -95.520585050785755, 29.949235230832635 ], [ -95.520667050820308, 29.949224230661699 ], [ -95.520781050259288, 29.949268230652478 ], [ -95.520907050494756, 29.94934023082773 ], [ -95.521020050258826, 29.949329230469182 ], [ -95.521222050915284, 29.949390230583877 ], [ -95.521652050470848, 29.949450230242167 ], [ -95.522119050776482, 29.949478230286292 ], [ -95.522176051206444, 29.949472230813679 ], [ -95.522258050503268, 29.949445230556844 ], [ -95.522302050964342, 29.949439230039715 ], [ -95.522491050427618, 29.949434230708036 ], [ -95.5227940505563, 29.94945623024347 ], [ -95.52285105093415, 29.949450230484327 ], [ -95.522977051420071, 29.949417230907198 ], [ -95.523059050584379, 29.949412230495966 ], [ -95.523552050945028, 29.949423230037919 ], [ -95.524291051847342, 29.949374230121617 ], [ -95.524467051718005, 29.949379230494568 ], [ -95.525332051280245, 29.94962723033705 ], [ -95.525547051969355, 29.94970423085314 ], [ -95.526961051781498, 29.950243230628494 ], [ -95.527497051843966, 29.950469230392578 ], [ -95.528059052691106, 29.950678230596381 ], [ -95.528791052347017, 29.950705230099864 ], [ -95.529126053012064, 29.950689230905052 ], [ -95.529621053078102, 29.950643230429595 ], [ -95.52983305303195, 29.950623230473692 ], [ -95.529889052578994, 29.950619230845334 ], [ -95.530754053158773, 29.950563230190781 ], [ -95.531158053207548, 29.950541230497269 ], [ -95.531550053262961, 29.950535230021579 ], [ -95.531903053031641, 29.950574230643959 ], [ -95.532503053371428, 29.950667230670806 ], [ -95.532673053479044, 29.950679230805711 ], [ -95.53297605325605, 29.95065123071393 ], [ -95.533077054168331, 29.9506622301341 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 220, "Tract": "48201550800", "Area_SqMi": 0.77244059996485182, "total_2009": 527, "total_2010": 524, "total_2011": 487, "total_2012": 358, "total_2013": 393, "total_2014": 466, "total_2015": 507, "total_2016": 522, "total_2017": 444, "total_2018": 569, "total_2019": 701, "total_2020": 665, "age1": 156, "age2": 286, "age3": 151, "earn1": 137, "earn2": 284, "earn3": 172, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 56, "naics_s06": 44, "naics_s07": 194, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 41, "naics_s12": 0, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 52, "naics_s17": 1, "naics_s18": 126, "naics_s19": 35, "naics_s20": 0, "race1": 392, "race2": 67, "race3": 12, "race4": 111, "race5": 1, "race6": 10, "ethnicity1": 341, "ethnicity2": 252, "edu1": 116, "edu2": 110, "edu3": 127, "edu4": 84, "Shape_Length": 22187.404117843049, "Shape_Area": 21534321.881720513, "total_2021": 596, "total_2022": 593 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.483775041275507, 29.946085231334116 ], [ -95.483807041333563, 29.945870230929039 ], [ -95.483230040592403, 29.94578423065914 ], [ -95.482788040399683, 29.945790231111776 ], [ -95.482655040494706, 29.945796230971567 ], [ -95.482498040158561, 29.945785230717565 ], [ -95.482100040007339, 29.945724230922767 ], [ -95.481803040181404, 29.945642230818969 ], [ -95.481424040482636, 29.945598230755845 ], [ -95.480667039753854, 29.945505230666829 ], [ -95.479563039539102, 29.945369231461918 ], [ -95.479464040084309, 29.945317231230447 ], [ -95.479392039756164, 29.945274231049439 ], [ -95.479209040051003, 29.945247230865526 ], [ -95.478401039184931, 29.945170230811179 ], [ -95.477870039575421, 29.945121231415818 ], [ -95.477687038767328, 29.94513823125089 ], [ -95.477447039535434, 29.945143230930025 ], [ -95.477195039078779, 29.945121231098952 ], [ -95.477031039254541, 29.945149231177865 ], [ -95.476810039427889, 29.945138230768851 ], [ -95.475787039119922, 29.945034231501133 ], [ -95.475295038176583, 29.944979231607892 ], [ -95.475181038632513, 29.944941231530382 ], [ -95.474941038232942, 29.944880231100608 ], [ -95.474494038318895, 29.944787231119292 ], [ -95.474230038285981, 29.94473223136967 ], [ -95.474201038302866, 29.944726231101836 ], [ -95.474141038504001, 29.944713231206521 ], [ -95.474095038748118, 29.944704231007599 ], [ -95.474059038439876, 29.944658230876868 ], [ -95.47349803835948, 29.944683231018068 ], [ -95.472656038055604, 29.944535231291393 ], [ -95.472334038133027, 29.944458231243946 ], [ -95.472151038002906, 29.944441231069899 ], [ -95.472062037476434, 29.944469231015386 ], [ -95.471961037544119, 29.944557231203049 ], [ -95.471753038117569, 29.944529231616027 ], [ -95.470768037517857, 29.944365231467483 ], [ -95.47062303697524, 29.944409231538042 ], [ -95.469966037425138, 29.944326231541957 ], [ -95.469815037024972, 29.944288231392989 ], [ -95.469676036831885, 29.944211231556146 ], [ -95.469102037176228, 29.944079231153278 ], [ -95.46835703672285, 29.943970230903052 ], [ -95.468237036463989, 29.943920231268713 ], [ -95.467934036945763, 29.943689230893028 ], [ -95.467151036025385, 29.942848231468908 ], [ -95.466065036189718, 29.94201823061659 ], [ -95.465970036436033, 29.941909230966878 ], [ -95.464966036023327, 29.941260230755351 ], [ -95.464164036026958, 29.94083123064528 ], [ -95.463836035854897, 29.940810230864884 ], [ -95.463634035191063, 29.940854231036656 ], [ -95.463274034870182, 29.940997230371003 ], [ -95.463047035560848, 29.941035230412837 ], [ -95.46276403487208, 29.941110231163861 ], [ -95.462990035060514, 29.941405230906085 ], [ -95.463178035018572, 29.941663230890306 ], [ -95.463204035455846, 29.941694231325545 ], [ -95.463259035606583, 29.941760231162135 ], [ -95.463415035484573, 29.941964231227342 ], [ -95.463489035217151, 29.942070230795984 ], [ -95.463656036032646, 29.942280231051644 ], [ -95.463734035015008, 29.942391231479348 ], [ -95.464545035345708, 29.943454230996956 ], [ -95.464772035511643, 29.943753231296526 ], [ -95.464853036150544, 29.94383423109478 ], [ -95.464922035497381, 29.943937231420609 ], [ -95.465001035692097, 29.944045230951655 ], [ -95.465025035477339, 29.944079231768956 ], [ -95.465077035647781, 29.94415123161248 ], [ -95.465160035598757, 29.944255231361321 ], [ -95.465238036144257, 29.944363231484427 ], [ -95.465321036396844, 29.944465231882809 ], [ -95.465703036370641, 29.944960231388293 ], [ -95.466397036750863, 29.945822231583183 ], [ -95.466778036526279, 29.946323231421086 ], [ -95.467149036489673, 29.94684923218627 ], [ -95.467365036346806, 29.947138232319254 ], [ -95.467483037212006, 29.947292231600962 ], [ -95.467776036610161, 29.947667232285188 ], [ -95.468004036920249, 29.947964231612474 ], [ -95.468041036424083, 29.948011231733844 ], [ -95.468385037022301, 29.948469231815533 ], [ -95.469221037611845, 29.949583232262949 ], [ -95.469396036983596, 29.949810232669538 ], [ -95.469525037668944, 29.949977232104711 ], [ -95.469567037305225, 29.950033232071423 ], [ -95.469699037275745, 29.950206232074187 ], [ -95.470310038074473, 29.95101023260743 ], [ -95.470855038154269, 29.951725232673461 ], [ -95.471112037726485, 29.952057232345279 ], [ -95.471717038492997, 29.952852233144512 ], [ -95.472295037934202, 29.9536002329626 ], [ -95.472503038307266, 29.953876233478493 ], [ -95.472547038650291, 29.95393423270442 ], [ -95.472700038279683, 29.954136233266894 ], [ -95.472776038080013, 29.954235232837039 ], [ -95.47281703860908, 29.954287233076283 ], [ -95.473004038403843, 29.954527233642121 ], [ -95.473198038681929, 29.954781233703002 ], [ -95.473738039169717, 29.955465233815715 ], [ -95.473846039222849, 29.955602233547882 ], [ -95.473865039257419, 29.95562923340821 ], [ -95.473911038280903, 29.955697233821642 ], [ -95.473946038568286, 29.955737233232174 ], [ -95.474040039220725, 29.955859233285238 ], [ -95.474371038529739, 29.956308233510644 ], [ -95.474506039114644, 29.95648523393951 ], [ -95.474638039013115, 29.956668233439697 ], [ -95.474915039192254, 29.957039233355435 ], [ -95.475149038726656, 29.957346234064214 ], [ -95.475261039256551, 29.957496233645209 ], [ -95.47533203921769, 29.957581233836208 ], [ -95.475432039317766, 29.957711233717845 ], [ -95.475620039465966, 29.957958234187 ], [ -95.476003038924318, 29.958450233645777 ], [ -95.476129039570324, 29.958612234160782 ], [ -95.476601039259009, 29.959233233602703 ], [ -95.477034039833924, 29.959790234476774 ], [ -95.477089039774853, 29.95987723451249 ], [ -95.47717803928073, 29.959973234495948 ], [ -95.477239040092357, 29.960073233883858 ], [ -95.477691039428464, 29.960646234451353 ], [ -95.477784039904577, 29.960772234343171 ], [ -95.477828039932419, 29.960822234636979 ], [ -95.477999040525745, 29.961045234139299 ], [ -95.478178039747533, 29.9609452339981 ], [ -95.478918040300144, 29.960557234046103 ], [ -95.479473040278464, 29.960266234391678 ], [ -95.479855040611255, 29.960062234461606 ], [ -95.480108040895956, 29.959911234404995 ], [ -95.480352040562636, 29.959753233978876 ], [ -95.480584040477851, 29.959589234109799 ], [ -95.480808040878728, 29.959410233531365 ], [ -95.481025040463095, 29.959220234341171 ], [ -95.481328040915244, 29.958923233474433 ], [ -95.48148004036328, 29.958762233344942 ], [ -95.481524041143444, 29.958716233576659 ], [ -95.481609041102104, 29.958626233994615 ], [ -95.481714041079826, 29.958509234121866 ], [ -95.48178304068631, 29.958431233822999 ], [ -95.481928040458655, 29.958248233413439 ], [ -95.482153041303377, 29.957922233966816 ], [ -95.482444040857686, 29.957481233764849 ], [ -95.482667041293567, 29.957142233474553 ], [ -95.482819040722035, 29.956876233275626 ], [ -95.48294004073847, 29.956639233249117 ], [ -95.483065041210665, 29.95635623296306 ], [ -95.483180041550057, 29.956046233342573 ], [ -95.483243041070153, 29.955833233464499 ], [ -95.483318041127418, 29.955512233159411 ], [ -95.483375041594186, 29.955201233134996 ], [ -95.48339604140422, 29.9550062326805 ], [ -95.483403041220882, 29.954894232806222 ], [ -95.483417041028204, 29.954657233114066 ], [ -95.483409041381407, 29.95388623282177 ], [ -95.483405041184625, 29.9534372325307 ], [ -95.483391040805742, 29.952511232515995 ], [ -95.483378040564773, 29.951968232021166 ], [ -95.483374040846357, 29.951512231887378 ], [ -95.483355040795615, 29.950664231789581 ], [ -95.483346041029534, 29.950012231951515 ], [ -95.483343040899797, 29.949820231837478 ], [ -95.483340040691999, 29.949619232015319 ], [ -95.483323040958908, 29.948899231783372 ], [ -95.483317040322177, 29.948292231871381 ], [ -95.483329040848005, 29.948056231722592 ], [ -95.483354041318719, 29.947832231703785 ], [ -95.4834030407591, 29.947532231526434 ], [ -95.483429040393261, 29.947415231400502 ], [ -95.48356104087668, 29.946911231666029 ], [ -95.483727040370553, 29.946305230861917 ], [ -95.483775041275507, 29.946085231334116 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 221, "Tract": "48201540800", "Area_SqMi": 3.7157606373488985, "total_2009": 6395, "total_2010": 5907, "total_2011": 6263, "total_2012": 7805, "total_2013": 8346, "total_2014": 8002, "total_2015": 7974, "total_2016": 9229, "total_2017": 10047, "total_2018": 9630, "total_2019": 10188, "total_2020": 10575, "age1": 1382, "age2": 5604, "age3": 2458, "earn1": 622, "earn2": 1501, "earn3": 7321, "naics_s01": 4, "naics_s02": 334, "naics_s03": 5, "naics_s04": 1094, "naics_s05": 2431, "naics_s06": 1798, "naics_s07": 243, "naics_s08": 701, "naics_s09": 208, "naics_s10": 10, "naics_s11": 442, "naics_s12": 505, "naics_s13": 330, "naics_s14": 1014, "naics_s15": 0, "naics_s16": 57, "naics_s17": 0, "naics_s18": 152, "naics_s19": 116, "naics_s20": 0, "race1": 7187, "race2": 1339, "race3": 71, "race4": 709, "race5": 7, "race6": 131, "ethnicity1": 6137, "ethnicity2": 3307, "edu1": 1737, "edu2": 2130, "edu3": 2524, "edu4": 1671, "Shape_Length": 49877.135459378296, "Shape_Area": 103589046.98139781, "total_2021": 9040, "total_2022": 9444 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.620735073123811, 29.895526216310582 ], [ -95.620734073111123, 29.895455216498711 ], [ -95.620728073627717, 29.893512216023037 ], [ -95.62072807325147, 29.893440216017559 ], [ -95.620728073424488, 29.893345215773884 ], [ -95.620729073303366, 29.893244216033885 ], [ -95.620724073518417, 29.892533215930452 ], [ -95.62072307336102, 29.892427215183432 ], [ -95.620723073347705, 29.892295215744664 ], [ -95.620715073009606, 29.890834215463453 ], [ -95.620715073295997, 29.890735214938918 ], [ -95.62070907299541, 29.889330214823374 ], [ -95.620708072865781, 29.889093214443861 ], [ -95.620708072922653, 29.888959214762181 ], [ -95.620705073682288, 29.888112214592876 ], [ -95.620703073546224, 29.88737221424006 ], [ -95.620705073396095, 29.886289214368819 ], [ -95.620701072907323, 29.88586821427376 ], [ -95.620699072738446, 29.885088213984606 ], [ -95.620698073444558, 29.884643214035567 ], [ -95.620690072993554, 29.883701213448649 ], [ -95.620694073049194, 29.883612213787281 ], [ -95.620687073480795, 29.883397213766845 ], [ -95.620684072683886, 29.882237213307285 ], [ -95.620678072824717, 29.882060213335173 ], [ -95.620674073346549, 29.881607213673821 ], [ -95.620678073051579, 29.880751213110386 ], [ -95.620689072381253, 29.880137213148771 ], [ -95.620679072394125, 29.879455212944826 ], [ -95.613672071328466, 29.879490213395798 ], [ -95.612508070853096, 29.879504213480367 ], [ -95.611888071016025, 29.879512213217442 ], [ -95.611851070700553, 29.879512212981343 ], [ -95.608529069404483, 29.879545213067566 ], [ -95.606039068898596, 29.879600213586354 ], [ -95.603113068335901, 29.879816213626004 ], [ -95.602411068251442, 29.879847213152985 ], [ -95.600941068251302, 29.879918213857767 ], [ -95.600166067274543, 29.879933213222987 ], [ -95.599339066928465, 29.879936213454378 ], [ -95.598148067157524, 29.879957213932961 ], [ -95.596312066790162, 29.879989213513529 ], [ -95.594268066099616, 29.879985213947162 ], [ -95.594022066473414, 29.879990214264271 ], [ -95.592444065620512, 29.880022213757506 ], [ -95.591430065714974, 29.88003121409589 ], [ -95.589189064364973, 29.880075213811264 ], [ -95.587458064055639, 29.880079213814664 ], [ -95.587176064237454, 29.880084213751449 ], [ -95.58556406367434, 29.880114214232872 ], [ -95.584801064204754, 29.880145213887669 ], [ -95.584565063331041, 29.880149213972423 ], [ -95.582515063177041, 29.880226214641635 ], [ -95.582459063214841, 29.880226214243393 ], [ -95.582335063075206, 29.880227214625933 ], [ -95.582077063014438, 29.880229213920106 ], [ -95.579926062564184, 29.880252214221727 ], [ -95.578340062144278, 29.880282214091043 ], [ -95.577434062165452, 29.880289214825726 ], [ -95.576474061316731, 29.880263214792141 ], [ -95.576072061712452, 29.880167214895643 ], [ -95.575274061534444, 29.879977214861299 ], [ -95.575042061139982, 29.87990421492314 ], [ -95.574377061090189, 29.879695214207644 ], [ -95.573633060339859, 29.879502214479491 ], [ -95.572936060575131, 29.879452214813004 ], [ -95.570377059900963, 29.879446214457253 ], [ -95.569932059908481, 29.879467214717653 ], [ -95.569635059974786, 29.879481214578419 ], [ -95.569509059718499, 29.87948721456441 ], [ -95.569458059307266, 29.879489214853841 ], [ -95.569867059578769, 29.879759214279012 ], [ -95.570574059679274, 29.880226214622876 ], [ -95.570697060583086, 29.880308215033061 ], [ -95.571132060366367, 29.880595214464289 ], [ -95.571205059910426, 29.880648214398072 ], [ -95.572538060711864, 29.881602214986504 ], [ -95.574902061047894, 29.883295215352486 ], [ -95.575395061265596, 29.883608214796958 ], [ -95.576253061507316, 29.884225215633688 ], [ -95.578412061991145, 29.885741215237868 ], [ -95.580772063049068, 29.887413215656935 ], [ -95.581248062608182, 29.887749216204519 ], [ -95.584613064213414, 29.890128216090307 ], [ -95.584858064384022, 29.890301215846588 ], [ -95.584980064282391, 29.890388215932301 ], [ -95.585032063919144, 29.8904252166299 ], [ -95.585322064791939, 29.890628216319364 ], [ -95.588081065205145, 29.892567216680625 ], [ -95.588678065064229, 29.892949216884343 ], [ -95.589654065716388, 29.893632217251753 ], [ -95.595139066739222, 29.897489217230174 ], [ -95.595885067766616, 29.898016217272044 ], [ -95.599219068794497, 29.900390217896689 ], [ -95.599602068125847, 29.900667217643502 ], [ -95.600020068313569, 29.90096121760455 ], [ -95.602502069165482, 29.902706218481185 ], [ -95.602796069366889, 29.902948217923928 ], [ -95.603277069001223, 29.903268218318928 ], [ -95.603657069422411, 29.903521217904885 ], [ -95.603850069969639, 29.903658218370513 ], [ -95.606221070497014, 29.905337218720952 ], [ -95.606324070395388, 29.905410218696964 ], [ -95.606811069978079, 29.905755218669011 ], [ -95.60857907065791, 29.907059218813082 ], [ -95.608862071114274, 29.907244219241012 ], [ -95.612082072354269, 29.909472218933509 ], [ -95.612271072509557, 29.909607219096308 ], [ -95.612412072479771, 29.909707219668515 ], [ -95.618510073605592, 29.91403821959458 ], [ -95.618590073614726, 29.914095219585487 ], [ -95.619440074576119, 29.914658220373209 ], [ -95.619488073790066, 29.914690220445102 ], [ -95.619596073743352, 29.914761219863028 ], [ -95.61972307463995, 29.914845219958924 ], [ -95.619806074321886, 29.914901219771551 ], [ -95.619928074010858, 29.9148372199672 ], [ -95.620008074053487, 29.91480421967692 ], [ -95.620096074452917, 29.914770220405014 ], [ -95.620523074247004, 29.914560219890728 ], [ -95.620610074523086, 29.914524220290499 ], [ -95.62055607459223, 29.914438219720235 ], [ -95.620541074613868, 29.914398220262981 ], [ -95.620528074079658, 29.914405219936238 ], [ -95.620529074412005, 29.914384219845534 ], [ -95.620493074233821, 29.914325219664512 ], [ -95.620169074262265, 29.913800219609861 ], [ -95.620124074631079, 29.913697220002188 ], [ -95.620106074351298, 29.913630219556754 ], [ -95.620096074656431, 29.913589219554975 ], [ -95.620085074354691, 29.913472219909949 ], [ -95.620084074127149, 29.913349220022937 ], [ -95.620118074011785, 29.912474219205784 ], [ -95.620145074526633, 29.911613219395864 ], [ -95.620181074550317, 29.910784219071715 ], [ -95.620193073951626, 29.910488219223897 ], [ -95.62031507355222, 29.9072062189021 ], [ -95.620347073784544, 29.906454218605862 ], [ -95.620373073588041, 29.90576621799482 ], [ -95.620374074382198, 29.90572621788359 ], [ -95.620419073593965, 29.904520217505585 ], [ -95.620472073558602, 29.903066217859568 ], [ -95.62054607356545, 29.90135521701097 ], [ -95.620569074004649, 29.900617216789609 ], [ -95.620583073849758, 29.900222217394358 ], [ -95.62060307413185, 29.899721216846544 ], [ -95.620617073874726, 29.899488217022753 ], [ -95.620690074164045, 29.897654216464502 ], [ -95.620725073972224, 29.896579216734619 ], [ -95.620729073318003, 29.896322216374013 ], [ -95.620731074036954, 29.896171216007431 ], [ -95.620733073230952, 29.896084216039949 ], [ -95.620735073123811, 29.895526216310582 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 222, "Tract": "48201541100", "Area_SqMi": 1.3131489107483483, "total_2009": 614, "total_2010": 643, "total_2011": 624, "total_2012": 457, "total_2013": 446, "total_2014": 421, "total_2015": 358, "total_2016": 404, "total_2017": 400, "total_2018": 451, "total_2019": 412, "total_2020": 268, "age1": 169, "age2": 264, "age3": 115, "earn1": 161, "earn2": 203, "earn3": 184, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 76, "naics_s05": 14, "naics_s06": 31, "naics_s07": 30, "naics_s08": 1, "naics_s09": 0, "naics_s10": 6, "naics_s11": 4, "naics_s12": 47, "naics_s13": 0, "naics_s14": 2, "naics_s15": 19, "naics_s16": 76, "naics_s17": 13, "naics_s18": 201, "naics_s19": 23, "naics_s20": 0, "race1": 410, "race2": 79, "race3": 8, "race4": 44, "race5": 1, "race6": 6, "ethnicity1": 360, "ethnicity2": 188, "edu1": 83, "edu2": 85, "edu3": 103, "edu4": 108, "Shape_Length": 29080.599362291432, "Shape_Area": 36608344.154841587, "total_2021": 275, "total_2022": 548 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.669780086816687, 29.904734215895079 ], [ -95.669782086554818, 29.904160215929043 ], [ -95.669778086743619, 29.903284216204025 ], [ -95.669778086817374, 29.903257216166406 ], [ -95.669775086902959, 29.902920215685345 ], [ -95.66975708644685, 29.901862215532006 ], [ -95.66974008665656, 29.901528215957502 ], [ -95.669698086643649, 29.901115215861548 ], [ -95.669670086497305, 29.900907215747896 ], [ -95.669619085860276, 29.900582215532445 ], [ -95.669542086284864, 29.900197214978718 ], [ -95.669400086407776, 29.899671215137388 ], [ -95.669370085962029, 29.899559215600739 ], [ -95.669170086333949, 29.899603215308826 ], [ -95.668468085558516, 29.899761215660536 ], [ -95.667067085129688, 29.900062215396456 ], [ -95.666696085469439, 29.900133215346251 ], [ -95.666192085394968, 29.900196215918463 ], [ -95.665923085455788, 29.900226215471001 ], [ -95.665833085684099, 29.900233215239357 ], [ -95.665614084814962, 29.900250215862243 ], [ -95.665332085283779, 29.900258215333125 ], [ -95.665034084638989, 29.900257215148368 ], [ -95.664879085014746, 29.900253215851492 ], [ -95.664611084972591, 29.900247215543068 ], [ -95.664532084900387, 29.900243215763947 ], [ -95.664473085281116, 29.900240215805951 ], [ -95.664343084814789, 29.900233215300844 ], [ -95.664313084450299, 29.900231215909365 ], [ -95.663858084478719, 29.900191215214587 ], [ -95.663707084577297, 29.900174215132864 ], [ -95.663413084515781, 29.90012821525432 ], [ -95.663276084671395, 29.900100215789312 ], [ -95.662362084248514, 29.8998942152277 ], [ -95.662182084176379, 29.899842215540431 ], [ -95.661902084140365, 29.899751215856529 ], [ -95.661755084564433, 29.899698215121209 ], [ -95.661096083606637, 29.899433215373925 ], [ -95.660605083487539, 29.899198215474151 ], [ -95.659885083488447, 29.898787215759057 ], [ -95.659566083980025, 29.898591215502506 ], [ -95.659449083899602, 29.898511215077569 ], [ -95.659359083691086, 29.898453215158245 ], [ -95.659168083651736, 29.898343214987054 ], [ -95.658079083063313, 29.897685215097731 ], [ -95.657737083427136, 29.897470215224921 ], [ -95.657568082825293, 29.897364215610519 ], [ -95.657332082493838, 29.897208215445303 ], [ -95.657167083202367, 29.897108215025419 ], [ -95.656902083123612, 29.896965215097897 ], [ -95.656605082991646, 29.896794214956646 ], [ -95.656408082420342, 29.896695215017061 ], [ -95.656344082497029, 29.896672215090994 ], [ -95.656225082868403, 29.896615215140468 ], [ -95.655998082552117, 29.89652621473919 ], [ -95.655596082710218, 29.896389215290206 ], [ -95.655446082404836, 29.896341214932878 ], [ -95.65504708235639, 29.896229214670218 ], [ -95.6547260819153, 29.896160215395245 ], [ -95.654501082059497, 29.896125214832761 ], [ -95.654076081807347, 29.896078215005303 ], [ -95.653779082535266, 29.896055215393901 ], [ -95.653458082218663, 29.896048214703683 ], [ -95.652947081475446, 29.896053214878982 ], [ -95.652246081701875, 29.896054214930782 ], [ -95.652077082035262, 29.896055215331533 ], [ -95.651959081053775, 29.896061215579174 ], [ -95.6516280812628, 29.896064215051709 ], [ -95.651304081016278, 29.896057215579813 ], [ -95.651123081550267, 29.89604921549401 ], [ -95.650919081588427, 29.896032214760755 ], [ -95.650728081064372, 29.896009214812576 ], [ -95.650633081420494, 29.895989215593112 ], [ -95.650322081055648, 29.895934214899203 ], [ -95.650017081385272, 29.895870214885097 ], [ -95.649761081066302, 29.895802215313367 ], [ -95.649422081020077, 29.895697215311905 ], [ -95.649155080594554, 29.895604215013517 ], [ -95.648898080776192, 29.895503215376682 ], [ -95.648744080737202, 29.895437215057786 ], [ -95.648677080287285, 29.895414214988925 ], [ -95.648248080757938, 29.895200214992467 ], [ -95.648121080599907, 29.895120215339016 ], [ -95.648026080923088, 29.895069214711043 ], [ -95.647878079987308, 29.894979215070453 ], [ -95.647574080500064, 29.894779214970072 ], [ -95.647448080247784, 29.894683215467488 ], [ -95.647221079909443, 29.894484214969516 ], [ -95.646982079791456, 29.894292215056453 ], [ -95.646881079856172, 29.8941972151604 ], [ -95.646773080102079, 29.894076215125658 ], [ -95.646717080591969, 29.894013214632253 ], [ -95.646688080569348, 29.893974214774975 ], [ -95.646530080486542, 29.893826214752977 ], [ -95.646236080270342, 29.89351021523278 ], [ -95.646100080274508, 29.89339321441182 ], [ -95.645871080219976, 29.893223215051467 ], [ -95.645540079264507, 29.89297021504585 ], [ -95.645375079994409, 29.89285921439123 ], [ -95.645314079460107, 29.892827215048687 ], [ -95.645277079879506, 29.892794214584061 ], [ -95.645180079722863, 29.892735214695918 ], [ -95.644919079683476, 29.892598214665288 ], [ -95.644705079218127, 29.892493214752918 ], [ -95.644586079856253, 29.892434214870608 ], [ -95.644445079194128, 29.892372214206389 ], [ -95.644328079033102, 29.892322214841951 ], [ -95.643891079025607, 29.892160214504763 ], [ -95.643464079682644, 29.892027215065461 ], [ -95.643327079570582, 29.891981214699552 ], [ -95.643153079030355, 29.891929214300664 ], [ -95.642892079275725, 29.891839215010503 ], [ -95.642768079336406, 29.891794214436302 ], [ -95.64269907868993, 29.891768214332814 ], [ -95.642677078578302, 29.891755214748557 ], [ -95.642632079021595, 29.891730214978487 ], [ -95.642514078664178, 29.891690214680221 ], [ -95.642089078871592, 29.89148421414426 ], [ -95.641771078585677, 29.891333214818321 ], [ -95.641680078856666, 29.891284214901059 ], [ -95.641402078179496, 29.891148214627812 ], [ -95.641317078866209, 29.891097214730021 ], [ -95.640893078313383, 29.891753214274225 ], [ -95.640718078326358, 29.892023214803519 ], [ -95.640495078013856, 29.892369214489847 ], [ -95.639967078571971, 29.893186214858197 ], [ -95.63920507860206, 29.894363215620231 ], [ -95.639080077782722, 29.89455821555558 ], [ -95.638011077925142, 29.896210215699185 ], [ -95.637560078022574, 29.896910216164979 ], [ -95.637378077381626, 29.897202215703725 ], [ -95.636140077535273, 29.899146216425954 ], [ -95.635901077994987, 29.899521216645841 ], [ -95.635802077295153, 29.899678216504832 ], [ -95.635656077999002, 29.899906216268647 ], [ -95.635489077180452, 29.900168216112622 ], [ -95.635336077890486, 29.900422216268247 ], [ -95.634783077890319, 29.901249216933547 ], [ -95.634655077464828, 29.901452217294096 ], [ -95.634421077639388, 29.90181721706686 ], [ -95.634342077464595, 29.901940216843414 ], [ -95.63411507702962, 29.902294216951084 ], [ -95.634320076926727, 29.902368217273864 ], [ -95.634591077860748, 29.902459217044193 ], [ -95.634893077626444, 29.902544217126188 ], [ -95.635245077582141, 29.902626217323014 ], [ -95.63550407803973, 29.902677216733398 ], [ -95.635727077323537, 29.902713216807339 ], [ -95.635927077506068, 29.902736217030984 ], [ -95.636342077839657, 29.90277021747637 ], [ -95.636651077859995, 29.902779216940775 ], [ -95.636959077757012, 29.902777217231609 ], [ -95.637117077639871, 29.902770216906546 ], [ -95.637408077638696, 29.902744216938238 ], [ -95.637743078413408, 29.902703217020196 ], [ -95.638376078696439, 29.902599217406465 ], [ -95.638409078716492, 29.902589216888796 ], [ -95.638497077902429, 29.902564217023293 ], [ -95.638562078704894, 29.902568217189639 ], [ -95.639122079050736, 29.902486216836401 ], [ -95.639404078492305, 29.902460217307574 ], [ -95.639865078371415, 29.902441216620943 ], [ -95.640142078940869, 29.902445217109459 ], [ -95.64044507929988, 29.902462216832134 ], [ -95.640759079351525, 29.902474216629422 ], [ -95.640832078872336, 29.902492217049293 ], [ -95.640897079519519, 29.902501217193542 ], [ -95.641213079110329, 29.902560216509286 ], [ -95.641577079545002, 29.90260721726467 ], [ -95.641817078824459, 29.902659217210655 ], [ -95.642063078848821, 29.902730216943514 ], [ -95.642404079600723, 29.90284321669386 ], [ -95.642679079483742, 29.902948216607765 ], [ -95.643000079615106, 29.903097216836596 ], [ -95.643088079937414, 29.903140216831041 ], [ -95.643329079608705, 29.903259216539009 ], [ -95.643558079899961, 29.903390216721583 ], [ -95.643792080124811, 29.903536216701713 ], [ -95.644064079460762, 29.903724216948348 ], [ -95.644233079577432, 29.903852217174176 ], [ -95.644329079543411, 29.903925217215296 ], [ -95.644466080134805, 29.90404321711539 ], [ -95.644793080535933, 29.904345217478539 ], [ -95.644988080557127, 29.904550217297601 ], [ -95.645214080237352, 29.904828217602926 ], [ -95.645666080408731, 29.90544621760467 ], [ -95.645726079995242, 29.905536217235653 ], [ -95.645793079983946, 29.905623217490582 ], [ -95.645901080333545, 29.905799217087559 ], [ -95.645983080590923, 29.905869217801591 ], [ -95.646120080181262, 29.906027217392108 ], [ -95.646336081093082, 29.906256217306542 ], [ -95.646486080876343, 29.906400217681156 ], [ -95.646717080431998, 29.906595217614345 ], [ -95.646931080671919, 29.9067592171691 ], [ -95.647124081310011, 29.906896217739114 ], [ -95.647369081316882, 29.907061217587234 ], [ -95.647543081416217, 29.907168217314446 ], [ -95.647804080547473, 29.907313217183091 ], [ -95.647876080858452, 29.907344217152325 ], [ -95.647951081496146, 29.907384217460525 ], [ -95.648200080866204, 29.907499217987553 ], [ -95.648396080718129, 29.907582217231187 ], [ -95.648644081517716, 29.907677217365904 ], [ -95.648893080999883, 29.907762217211257 ], [ -95.64918608190473, 29.907847217723432 ], [ -95.649498081838203, 29.907919217572275 ], [ -95.64962808175359, 29.907948217703058 ], [ -95.649936081247318, 29.908004218022697 ], [ -95.650199081921173, 29.908039217311753 ], [ -95.650622082176767, 29.908077217487616 ], [ -95.650960081580706, 29.908092217990522 ], [ -95.651793081677013, 29.908109217750543 ], [ -95.652301082462884, 29.908110217171636 ], [ -95.653590082315432, 29.908100217558218 ], [ -95.653681082346864, 29.908099217592614 ], [ -95.655078082593235, 29.908087217761768 ], [ -95.655143082947163, 29.908087217751902 ], [ -95.655219083006685, 29.908086217446463 ], [ -95.655907083468549, 29.908081217812416 ], [ -95.65644208361033, 29.908064217521556 ], [ -95.656509083081332, 29.908060217772729 ], [ -95.656711083620579, 29.908049217154094 ], [ -95.657155083398834, 29.908011217041754 ], [ -95.657612083712095, 29.907956217327083 ], [ -95.657897083581673, 29.907913217645497 ], [ -95.658244083213546, 29.907852217203033 ], [ -95.658372084067807, 29.907825217473452 ], [ -95.658689083335801, 29.907758216885394 ], [ -95.65899808402348, 29.907684217448448 ], [ -95.659457084459063, 29.907557217192039 ], [ -95.659901084017946, 29.907416216999199 ], [ -95.659990083687831, 29.907386217000909 ], [ -95.660058083633473, 29.907363217147743 ], [ -95.660352084337902, 29.907255217374662 ], [ -95.660642084702602, 29.907139217325202 ], [ -95.661065084295686, 29.906955217256705 ], [ -95.661468084190417, 29.90676321717638 ], [ -95.66217008446435, 29.906403217121543 ], [ -95.662262084446908, 29.906356216555064 ], [ -95.662392084207241, 29.906290217150051 ], [ -95.662667084553732, 29.906165216706036 ], [ -95.662942084335967, 29.906051216991031 ], [ -95.663218084808719, 29.905949216761069 ], [ -95.66350008461643, 29.905854216458014 ], [ -95.664051085533629, 29.905695217003135 ], [ -95.664410084901562, 29.905605216522865 ], [ -95.66465008548461, 29.905554216644084 ], [ -95.664714085295302, 29.905541216497145 ], [ -95.665114084977972, 29.905478216915117 ], [ -95.665509085709616, 29.905430217022907 ], [ -95.665948085491365, 29.905391216420352 ], [ -95.666396085563761, 29.905370216566045 ], [ -95.666697085830322, 29.90536921648782 ], [ -95.666991085727005, 29.905379216448718 ], [ -95.667277086364493, 29.905404216194004 ], [ -95.667596086232706, 29.90544121655828 ], [ -95.6676910858083, 29.90545321666805 ], [ -95.667824086294075, 29.905475216553725 ], [ -95.668086086421553, 29.905521216844502 ], [ -95.669616086017413, 29.905849216836984 ], [ -95.669667086374147, 29.905639216255057 ], [ -95.669729086141999, 29.905293216794586 ], [ -95.669760086629296, 29.905048215941779 ], [ -95.669780086816687, 29.904734215895079 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 223, "Tract": "48201551000", "Area_SqMi": 0.42889386741440366, "total_2009": 500, "total_2010": 607, "total_2011": 576, "total_2012": 514, "total_2013": 510, "total_2014": 510, "total_2015": 523, "total_2016": 508, "total_2017": 492, "total_2018": 498, "total_2019": 489, "total_2020": 541, "age1": 127, "age2": 232, "age3": 99, "earn1": 146, "earn2": 202, "earn3": 110, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 10, "naics_s06": 1, "naics_s07": 246, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 0, "naics_s12": 42, "naics_s13": 0, "naics_s14": 25, "naics_s15": 0, "naics_s16": 37, "naics_s17": 0, "naics_s18": 89, "naics_s19": 4, "naics_s20": 0, "race1": 259, "race2": 90, "race3": 1, "race4": 103, "race5": 1, "race6": 4, "ethnicity1": 323, "ethnicity2": 135, "edu1": 78, "edu2": 87, "edu3": 93, "edu4": 73, "Shape_Length": 16540.884216624305, "Shape_Area": 11956826.964323198, "total_2021": 517, "total_2022": 458 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.498486045508855, 29.961695233942727 ], [ -95.498489045006593, 29.961537233465119 ], [ -95.49848104508466, 29.961161233977375 ], [ -95.497490044596887, 29.961516234213967 ], [ -95.496851044875896, 29.961747233949687 ], [ -95.496495044323098, 29.961895233530427 ], [ -95.496269045195774, 29.962002233850679 ], [ -95.495946044560398, 29.962177233635366 ], [ -95.495791044808854, 29.962271234041477 ], [ -95.495546044493977, 29.962427233871203 ], [ -95.495350044548942, 29.962563233906305 ], [ -95.495163045018657, 29.962702234100107 ], [ -95.494987044587248, 29.96284823454717 ], [ -95.494655044242037, 29.963153234168388 ], [ -95.494286044523335, 29.963506234663782 ], [ -95.493965044724362, 29.963818234122055 ], [ -95.493793044579178, 29.963970234049995 ], [ -95.493507043743662, 29.964197234260187 ], [ -95.493308044584396, 29.964343234889107 ], [ -95.493092043954491, 29.96448823430778 ], [ -95.492856043884601, 29.964632234461714 ], [ -95.49221304405286, 29.964988234668972 ], [ -95.491303043956435, 29.965484235072537 ], [ -95.490689043670443, 29.965824234940367 ], [ -95.490372043546316, 29.965999234969928 ], [ -95.488516042871865, 29.967025235350771 ], [ -95.485867042209478, 29.968478235688789 ], [ -95.484659042357194, 29.969141235625052 ], [ -95.484548042590006, 29.96920223603907 ], [ -95.484452042449021, 29.969255235964496 ], [ -95.484361041925979, 29.969362235430435 ], [ -95.484442041590739, 29.969469235911365 ], [ -95.48477604173361, 29.969906236056566 ], [ -95.485387042570935, 29.970708235671012 ], [ -95.485846042885015, 29.971299236008928 ], [ -95.485998043036133, 29.97149523656752 ], [ -95.4860180426422, 29.971521236128709 ], [ -95.486559042991885, 29.972230236281131 ], [ -95.486847042416287, 29.972607236445256 ], [ -95.487081042968839, 29.97293323652368 ], [ -95.487373043095658, 29.973347236531879 ], [ -95.487493042949325, 29.973517236871764 ], [ -95.487526042924358, 29.973562237024158 ], [ -95.487641043340048, 29.973718236517147 ], [ -95.487777043348885, 29.97390223704598 ], [ -95.487828043157407, 29.973970236238131 ], [ -95.487895042805206, 29.97406123636663 ], [ -95.4881370437123, 29.974377237149678 ], [ -95.488216043324286, 29.974480236585642 ], [ -95.488325042910745, 29.974623236582573 ], [ -95.488702043036596, 29.975116237306228 ], [ -95.488817043763078, 29.975265237036698 ], [ -95.489277043477301, 29.975862236586536 ], [ -95.489409043879448, 29.976033237298022 ], [ -95.489787044180972, 29.976527237196304 ], [ -95.489882044132401, 29.976651236982431 ], [ -95.490005044349346, 29.976812236782642 ], [ -95.490601043960694, 29.977589237554916 ], [ -95.491137044644262, 29.978289237495321 ], [ -95.491764044094111, 29.979104237362868 ], [ -95.492038044764868, 29.978433237356946 ], [ -95.492077044475593, 29.978339237403446 ], [ -95.49224404466537, 29.977937237294807 ], [ -95.492330044110105, 29.977689237157382 ], [ -95.492375044880362, 29.977524237461953 ], [ -95.492421044553552, 29.977394236855613 ], [ -95.492545044186727, 29.977087237545017 ], [ -95.492691044091941, 29.97676023665915 ], [ -95.492897044646483, 29.976315237377893 ], [ -95.492961044629297, 29.976172236602203 ], [ -95.493018044573816, 29.976033237333606 ], [ -95.493060044715008, 29.975935236676754 ], [ -95.493162044656344, 29.97568923689434 ], [ -95.49383804489824, 29.974012236502858 ], [ -95.493912044390427, 29.973832236132694 ], [ -95.494064044663645, 29.973443236126741 ], [ -95.494118045004853, 29.973293235942055 ], [ -95.494200044798077, 29.97306723592666 ], [ -95.49423504494068, 29.972969236241539 ], [ -95.494252045089823, 29.972921236035283 ], [ -95.494255045227945, 29.97291223623769 ], [ -95.494291045207802, 29.972807236074779 ], [ -95.4943140446358, 29.972745236457612 ], [ -95.494461045236136, 29.972364235832249 ], [ -95.494686044619542, 29.971809236013552 ], [ -95.494888045044988, 29.971306235865296 ], [ -95.494912045187093, 29.971244236077968 ], [ -95.494968045095334, 29.97110723606993 ], [ -95.495733045073976, 29.969222235718487 ], [ -95.4959910448828, 29.968586235351122 ], [ -95.49641504509934, 29.967542234633857 ], [ -95.496747045024307, 29.966722235004273 ], [ -95.497480045449066, 29.964920234668952 ], [ -95.498001045575577, 29.963629234304854 ], [ -95.498132045429884, 29.96330723405579 ], [ -95.498236044810909, 29.963028234205488 ], [ -95.498304045473432, 29.962809234004901 ], [ -95.498381045613471, 29.962490234307136 ], [ -95.498433044849719, 29.96221223390355 ], [ -95.498466045053064, 29.96194823343415 ], [ -95.498486045508855, 29.961695233942727 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 224, "Tract": "48291700400", "Area_SqMi": 141.45044491929517, "total_2009": 276, "total_2010": 547, "total_2011": 563, "total_2012": 684, "total_2013": 667, "total_2014": 716, "total_2015": 793, "total_2016": 700, "total_2017": 831, "total_2018": 1179, "total_2019": 1089, "total_2020": 1028, "age1": 312, "age2": 580, "age3": 280, "earn1": 236, "earn2": 361, "earn3": 575, "naics_s01": 33, "naics_s02": 40, "naics_s03": 48, "naics_s04": 344, "naics_s05": 13, "naics_s06": 19, "naics_s07": 46, "naics_s08": 29, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 39, "naics_s13": 0, "naics_s14": 21, "naics_s15": 335, "naics_s16": 7, "naics_s17": 0, "naics_s18": 175, "naics_s19": 21, "naics_s20": 0, "race1": 1069, "race2": 59, "race3": 8, "race4": 16, "race5": 1, "race6": 19, "ethnicity1": 980, "ethnicity2": 192, "edu1": 156, "edu2": 271, "edu3": 266, "edu4": 167, "Shape_Length": 431360.84109849459, "Shape_Area": 3943396309.4939384, "total_2021": 1081, "total_2022": 1172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.052993949387329, 30.354590329484825 ], [ -95.052976949014422, 30.354569329474156 ], [ -95.052925949402677, 30.354505329449612 ], [ -95.052909948768786, 30.354485328938893 ], [ -95.05284594905973, 30.354457328965125 ], [ -95.052617949163604, 30.354402329447208 ], [ -95.052560948858599, 30.354380329545677 ], [ -95.05254194943123, 30.354342329237248 ], [ -95.052497949536985, 30.354182328874003 ], [ -95.052465948656135, 30.354144329594259 ], [ -95.052218948562796, 30.354171328897831 ], [ -95.052173949430838, 30.354133329754426 ], [ -95.052116948871344, 30.354028329655396 ], [ -95.052097949388084, 30.35395732945598 ], [ -95.052097949332548, 30.353885329694837 ], [ -95.052161948684557, 30.353720329447448 ], [ -95.052173949034696, 30.353638328916645 ], [ -95.052148949279214, 30.353583329330981 ], [ -95.052123948808074, 30.353561329537559 ], [ -95.052002948544953, 30.353522329225395 ], [ -95.051673948874395, 30.35358832933651 ], [ -95.051641948554575, 30.353588328884605 ], [ -95.051609948843407, 30.353539329168136 ], [ -95.051615948876929, 30.353500328958063 ], [ -95.05184494932162, 30.35335732903954 ], [ -95.051882949053194, 30.353319329227389 ], [ -95.051888948435405, 30.353286329118109 ], [ -95.051882948616637, 30.353253329561909 ], [ -95.05182594871539, 30.353220329082831 ], [ -95.051742948609828, 30.353198329036275 ], [ -95.051654948795559, 30.35319832919533 ], [ -95.051343948327769, 30.353253329258536 ], [ -95.051254948377007, 30.353253328742834 ], [ -95.051089948947421, 30.35318232952687 ], [ -95.050785948335744, 30.353215328899161 ], [ -95.050734948500207, 30.353198328995017 ], [ -95.050684948059171, 30.353143329517106 ], [ -95.050658948596336, 30.35306632871205 ], [ -95.050665948626076, 30.353000329235257 ], [ -95.050791948125891, 30.352764329341902 ], [ -95.050772948174298, 30.352692328843709 ], [ -95.050747948941108, 30.352659329460035 ], [ -95.050715948754046, 30.352643329322699 ], [ -95.050493948311939, 30.352588329396404 ], [ -95.050443948168208, 30.352538329021389 ], [ -95.050417948387917, 30.352467329168928 ], [ -95.050436948248688, 30.35239532914283 ], [ -95.050468948382743, 30.352346328763215 ], [ -95.050620948490902, 30.35219732921357 ], [ -95.050601948694677, 30.352153329313978 ], [ -95.050462948292349, 30.351944328729839 ], [ -95.050468948805388, 30.351900329332786 ], [ -95.050481948869063, 30.351884328982482 ], [ -95.050563948618858, 30.351834328667969 ], [ -95.050588947959199, 30.351801329289994 ], [ -95.0505829480757, 30.351774328872896 ], [ -95.050462948451738, 30.351691329188391 ], [ -95.050451948424922, 30.351675328728827 ], [ -95.050424947906862, 30.351636329148175 ], [ -95.050417948340822, 30.351592328817535 ], [ -95.050449948482878, 30.351554328687985 ], [ -95.050627948765069, 30.35144932837774 ], [ -95.050557948108292, 30.351323328703383 ], [ -95.05050694820369, 30.351197328821183 ], [ -95.050481947926968, 30.351070328917885 ], [ -95.050462948794419, 30.350900328724641 ], [ -95.050329948720204, 30.35073532867969 ], [ -95.050246948035522, 30.350581328974556 ], [ -95.050202948105962, 30.350322328670863 ], [ -95.050145948157777, 30.350234328759392 ], [ -95.050100948244534, 30.35020132887831 ], [ -95.050005948588677, 30.350157328394769 ], [ -95.049929947898676, 30.35014632851254 ], [ -95.049752947730369, 30.350179328414143 ], [ -95.049676948466129, 30.350174328575875 ], [ -95.049631948522929, 30.350146328652187 ], [ -95.049606948048805, 30.350102328686081 ], [ -95.049612947623359, 30.350047328987813 ], [ -95.049644948080783, 30.34999232862446 ], [ -95.049821948578526, 30.349816328118969 ], [ -95.049853947775148, 30.349761328571237 ], [ -95.04982894835382, 30.349701328279966 ], [ -95.049771947647244, 30.349591328508932 ], [ -95.049612947752706, 30.349371328743882 ], [ -95.049486947798869, 30.349239328736896 ], [ -95.049245948272301, 30.349102328064049 ], [ -95.049194948149633, 30.349041328181666 ], [ -95.049400947776903, 30.349041328690525 ], [ -95.049207947919527, 30.348838328692903 ], [ -95.048936947412031, 30.348554327982686 ], [ -95.048723948191025, 30.348331328024024 ], [ -95.04850994822317, 30.348107328100049 ], [ -95.048570947742775, 30.347748328212006 ], [ -95.048451948134129, 30.347723328317947 ], [ -95.048191947315274, 30.347893327833216 ], [ -95.048020947333626, 30.347887327919189 ], [ -95.047821947392691, 30.347880328115558 ], [ -95.047687947893351, 30.347875327802292 ], [ -95.047528947835872, 30.347790327785926 ], [ -95.047452947833136, 30.347686328556552 ], [ -95.047395947480084, 30.347609328438942 ], [ -95.047324947235751, 30.347318328244299 ], [ -95.047266947467477, 30.347249327834401 ], [ -95.047248947504755, 30.347193328317772 ], [ -95.04719994730317, 30.347139327729288 ], [ -95.04719994736837, 30.347128328344631 ], [ -95.047221946858173, 30.346746328014177 ], [ -95.047191946910559, 30.346726327714109 ], [ -95.047165947031232, 30.34670432822934 ], [ -95.047142947534539, 30.346701327878748 ], [ -95.047028947684879, 30.346637327848516 ], [ -95.046768947080082, 30.346820327752653 ], [ -95.046614947680411, 30.346880328144987 ], [ -95.046545947037899, 30.346920328041747 ], [ -95.046415947078273, 30.346921328363379 ], [ -95.046254946923568, 30.347117327898466 ], [ -95.046168946586562, 30.347044327779031 ], [ -95.046119947413928, 30.346951328473004 ], [ -95.046096947082859, 30.346607327817896 ], [ -95.046009947003611, 30.346583328437291 ], [ -95.04600594707118, 30.346572328138127 ], [ -95.045974946498575, 30.346539327638855 ], [ -95.045923947143237, 30.346523327586802 ], [ -95.04583494688265, 30.346531328040037 ], [ -95.045795946594595, 30.346520328077499 ], [ -95.045673946524175, 30.346569328082538 ], [ -95.045640947224953, 30.346720327982624 ], [ -95.045574946536618, 30.346720327680529 ], [ -95.045542947170048, 30.346693327725376 ], [ -95.045545947408911, 30.346653328021365 ], [ -95.045483946413739, 30.346583327597102 ], [ -95.045350946654324, 30.346432327713391 ], [ -95.045242947235465, 30.346310328204972 ], [ -95.045470946960648, 30.34628032790453 ], [ -95.045291946533183, 30.346157327512437 ], [ -95.045208946960258, 30.346069327690568 ], [ -95.045193946654507, 30.3460543276103 ], [ -95.045038947142402, 30.345926327819654 ], [ -95.045031947153291, 30.345882327903475 ], [ -95.045047947222955, 30.345885328127562 ], [ -95.045073946660906, 30.345890327568732 ], [ -95.045181946583824, 30.34591232813926 ], [ -95.045213946478086, 30.345956327778687 ], [ -95.045222946527858, 30.34591732813146 ], [ -95.04550994723526, 30.345835328167006 ], [ -95.045537946885517, 30.34568732785598 ], [ -95.045485946859685, 30.345527327695631 ], [ -95.04548594714592, 30.345516327401235 ], [ -95.045473947103034, 30.345390327470774 ], [ -95.045335947011722, 30.34508032795873 ], [ -95.045327946259079, 30.34505432806256 ], [ -95.045264946363559, 30.344803327396331 ], [ -95.045219946445783, 30.344624327918805 ], [ -95.045155946340003, 30.344636327740542 ], [ -95.044910946492578, 30.344683327278403 ], [ -95.044489946670183, 30.344826327785505 ], [ -95.044275946820179, 30.344681327941682 ], [ -95.044167946209342, 30.344708327954905 ], [ -95.044047946852956, 30.344738327808287 ], [ -95.043873946773502, 30.345024327512306 ], [ -95.043709945934353, 30.344979327738216 ], [ -95.043577946073455, 30.344942327751173 ], [ -95.043539946565005, 30.345076328094098 ], [ -95.043527945854592, 30.345119328145486 ], [ -95.043447946730396, 30.345079328109936 ], [ -95.043442946024214, 30.345042327388381 ], [ -95.043432946770636, 30.345038327991006 ], [ -95.043419945821384, 30.344983327485131 ], [ -95.043427945965846, 30.344963327992179 ], [ -95.043412946437186, 30.344867328123097 ], [ -95.043049946253063, 30.344627328006158 ], [ -95.043000945749426, 30.344594328124405 ], [ -95.042757946122904, 30.344714327732927 ], [ -95.0426909456651, 30.344801328006039 ], [ -95.042652946029904, 30.344854327622599 ], [ -95.042373946320268, 30.344742327946815 ], [ -95.042165946307165, 30.344572327710207 ], [ -95.042052945930777, 30.344208327633453 ], [ -95.042145946227834, 30.344048327219291 ], [ -95.042178946051621, 30.343967327214123 ], [ -95.042284946072385, 30.343976327960711 ], [ -95.042357945911945, 30.344014327150596 ], [ -95.042514946369465, 30.34401632764693 ], [ -95.042516946452423, 30.343785327293968 ], [ -95.042307946221982, 30.343540327172253 ], [ -95.041978945331863, 30.343253327015404 ], [ -95.042114945883782, 30.343217327569015 ], [ -95.042174946072009, 30.343200327125132 ], [ -95.042634945627768, 30.343220327522374 ], [ -95.042616945588833, 30.343113327488179 ], [ -95.042578945700072, 30.342883327772594 ], [ -95.042256945576753, 30.342884327473509 ], [ -95.04208394623231, 30.342836327493274 ], [ -95.042166945675049, 30.342677327593126 ], [ -95.042214945719579, 30.342638327007577 ], [ -95.042331945901196, 30.342536327054439 ], [ -95.043027945712993, 30.342726327226742 ], [ -95.043286945942697, 30.342491326864121 ], [ -95.043290946419759, 30.342426326851918 ], [ -95.043293945834961, 30.342363327294446 ], [ -95.043311945788716, 30.342327327536712 ], [ -95.043305946180169, 30.342178327505881 ], [ -95.043307945657432, 30.342167327209197 ], [ -95.043557946654857, 30.342307326883486 ], [ -95.043789945785832, 30.342739327023551 ], [ -95.043927946326136, 30.342232327320929 ], [ -95.043965946119343, 30.342141327115229 ], [ -95.044016946156532, 30.342163327308292 ], [ -95.04425994604037, 30.34225832733571 ], [ -95.044589945951486, 30.34178932730315 ], [ -95.044593946098047, 30.341725327276503 ], [ -95.044605946291469, 30.341706326879375 ], [ -95.044618946678753, 30.341590326791177 ], [ -95.044637946273724, 30.341535326752837 ], [ -95.044637946393507, 30.341469326606486 ], [ -95.044522946493771, 30.341315327261867 ], [ -95.044529946232018, 30.34126032706871 ], [ -95.04456794598039, 30.34119432652 ], [ -95.044599946765331, 30.341167327072409 ], [ -95.044606946406816, 30.341147327010678 ], [ -95.044463946202455, 30.340942326571906 ], [ -95.044504946792387, 30.340913326757981 ], [ -95.04452394631933, 30.340899327043555 ], [ -95.044694946648505, 30.340776327012779 ], [ -95.044883946375265, 30.341008326728094 ], [ -95.045083946636225, 30.340977327021964 ], [ -95.045210946549048, 30.340986327119978 ], [ -95.045328946553894, 30.340991326458845 ], [ -95.045462946593389, 30.340962326606004 ], [ -95.045256946012685, 30.340734327231338 ], [ -95.045157946355374, 30.340637326616982 ], [ -95.045021946602944, 30.340459327171196 ], [ -95.045288946705782, 30.340590326839639 ], [ -95.045412946827454, 30.340652326969085 ], [ -95.045429947113547, 30.340678326523815 ], [ -95.045480946911894, 30.340733327164596 ], [ -95.045518947054163, 30.340744326851659 ], [ -95.045565946925365, 30.340728327128712 ], [ -95.045632947097388, 30.340761327165914 ], [ -95.045852946612385, 30.340822326445455 ], [ -95.045931946738747, 30.340583326446104 ], [ -95.046271947082161, 30.340251326449099 ], [ -95.045828947022741, 30.340239327078198 ], [ -95.045805946506135, 30.340239326506168 ], [ -95.045351946971095, 30.33994132640623 ], [ -95.046078946560172, 30.33962432670382 ], [ -95.045857946135484, 30.33939132652344 ], [ -95.045723946813979, 30.339108326307688 ], [ -95.045646946416454, 30.339051326363041 ], [ -95.045607946811245, 30.339034326060453 ], [ -95.045531946100056, 30.339028326244193 ], [ -95.045321946340351, 30.339050326179837 ], [ -95.045278946731898, 30.33905032626549 ], [ -95.04508194687152, 30.339040326316638 ], [ -95.045267946481701, 30.338866326394356 ], [ -95.045403946074913, 30.338611326043988 ], [ -95.045359946222362, 30.338320326646834 ], [ -95.045610946949338, 30.338210326541159 ], [ -95.045665946265075, 30.338641326136752 ], [ -95.045867946518626, 30.338802326742801 ], [ -95.046101946170211, 30.338684326726515 ], [ -95.046271946709538, 30.338411326026119 ], [ -95.046289946709237, 30.338229325901732 ], [ -95.046257946446886, 30.338194326568729 ], [ -95.046126946745943, 30.338048325835825 ], [ -95.045942946414343, 30.337740326474762 ], [ -95.045972946200138, 30.337687325857576 ], [ -95.04605494710367, 30.337542326220042 ], [ -95.046566946354659, 30.337531325832398 ], [ -95.046969947336223, 30.337471326496871 ], [ -95.047362947408331, 30.337439325960581 ], [ -95.047448946920497, 30.33782932649472 ], [ -95.047691946641606, 30.338029326626618 ], [ -95.047978947410485, 30.337983326524583 ], [ -95.048376946802506, 30.337534326091319 ], [ -95.048344947300194, 30.337153325763687 ], [ -95.048364947030336, 30.337087326180153 ], [ -95.048358946706614, 30.336900325941237 ], [ -95.048358947052293, 30.336886325522162 ], [ -95.04847394717649, 30.33666132561941 ], [ -95.048444946916561, 30.336503326117974 ], [ -95.048429947278208, 30.336422326093544 ], [ -95.04826694746356, 30.336208325668096 ], [ -95.047630946714818, 30.336072325988049 ], [ -95.048124947346167, 30.335927325831541 ], [ -95.048071946698897, 30.335896325884061 ], [ -95.047959946659589, 30.335828325831809 ], [ -95.04776094658591, 30.335534325218237 ], [ -95.047762947143283, 30.335515325522408 ], [ -95.047769947076304, 30.335490326028111 ], [ -95.048162947007185, 30.335300325616771 ], [ -95.048114946745329, 30.335224325559398 ], [ -95.048060946995264, 30.33513732521163 ], [ -95.04771794712903, 30.335036325657807 ], [ -95.047853946698581, 30.334939325928623 ], [ -95.047858946575019, 30.334910325411769 ], [ -95.048003946845583, 30.334783325876181 ], [ -95.048017947101286, 30.334756325788067 ], [ -95.047998946866144, 30.334753325426089 ], [ -95.047938946741468, 30.334752325074806 ], [ -95.047459947046661, 30.334619325917135 ], [ -95.047353946575583, 30.334520325129557 ], [ -95.047367946397955, 30.334416325327762 ], [ -95.047467947221108, 30.334291325295062 ], [ -95.047524946580651, 30.334165325842957 ], [ -95.047518947032131, 30.333919325191026 ], [ -95.047548947170796, 30.333824325549543 ], [ -95.047707946837974, 30.333783325362798 ], [ -95.047944947157433, 30.333781325563571 ], [ -95.048104946935396, 30.333717325522088 ], [ -95.048122946542136, 30.333655325129442 ], [ -95.048146946886149, 30.333577325077197 ], [ -95.047755947319857, 30.333237325375052 ], [ -95.047654947238343, 30.333167325193745 ], [ -95.047422946724296, 30.333004324885426 ], [ -95.047369946572971, 30.332893325573444 ], [ -95.04740294643598, 30.332776324729021 ], [ -95.047405946769601, 30.332766324846848 ], [ -95.047512946359973, 30.332582324981598 ], [ -95.047504946257064, 30.332377324592315 ], [ -95.04673094622791, 30.332163325043691 ], [ -95.046606946129586, 30.33209532540495 ], [ -95.046436946956703, 30.331999324634463 ], [ -95.046316946621118, 30.331840325272776 ], [ -95.046310946025613, 30.33178332512643 ], [ -95.046293946537162, 30.331639325204542 ], [ -95.046463946035217, 30.331443324503866 ], [ -95.046520946430277, 30.331327324787793 ], [ -95.046465946888489, 30.331138325064199 ], [ -95.04628594611782, 30.330896324394487 ], [ -95.045971946196119, 30.330713324708071 ], [ -95.045841946572679, 30.330012325025098 ], [ -95.045823945686621, 30.329972324385839 ], [ -95.045766946541406, 30.329791324474307 ], [ -95.045551946049827, 30.329400324755532 ], [ -95.045354945759428, 30.32895532469275 ], [ -95.04532594593384, 30.328904324829775 ], [ -95.045284946060946, 30.328796324612231 ], [ -95.045265946037802, 30.328745323940264 ], [ -95.045205945475232, 30.328388324098441 ], [ -95.04516894630062, 30.327981324071267 ], [ -95.045221945879135, 30.32771332374114 ], [ -95.045228946139275, 30.327673323760074 ], [ -95.045365945777647, 30.327398324133888 ], [ -95.045556946260774, 30.327206324319295 ], [ -95.045689945966956, 30.327034324403943 ], [ -95.045828946197929, 30.326835324354086 ], [ -95.045817946135742, 30.326586323858393 ], [ -95.045785945661947, 30.326494323853499 ], [ -95.045718945964396, 30.326292323611511 ], [ -95.045296945753876, 30.326179323907297 ], [ -95.045111945915608, 30.326078323647625 ], [ -95.045063945933265, 30.32583032382059 ], [ -95.045189945919333, 30.32555632363902 ], [ -95.044923945493409, 30.325560323532418 ], [ -95.044724945935897, 30.325192323413543 ], [ -95.044076945029659, 30.32489032388418 ], [ -95.043803945137341, 30.324603323549283 ], [ -95.043834945878771, 30.32402832384042 ], [ -95.043769945571071, 30.323649323670391 ], [ -95.043648945650162, 30.32321832360098 ], [ -95.043406945268018, 30.323062322925221 ], [ -95.043377945003598, 30.323045323721868 ], [ -95.043229945611657, 30.322950323129319 ], [ -95.0430249455937, 30.322770323210012 ], [ -95.04287194537396, 30.322634323585262 ], [ -95.042860945447856, 30.322308322766546 ], [ -95.042970944829449, 30.321887323325114 ], [ -95.043295945412112, 30.321551323070512 ], [ -95.043368944867424, 30.321477322686672 ], [ -95.043543944939685, 30.321258322998684 ], [ -95.043678945635989, 30.321089323126746 ], [ -95.043729944733357, 30.320690322727451 ], [ -95.043727945508891, 30.320469323009018 ], [ -95.043724944877781, 30.320233323058464 ], [ -95.04366294548629, 30.319814322870446 ], [ -95.043569944735609, 30.319380322430398 ], [ -95.043508944566284, 30.318926322828151 ], [ -95.04335794493646, 30.31851932241571 ], [ -95.042987944679837, 30.317877321983669 ], [ -95.04280794433754, 30.317468321872088 ], [ -95.04240194516629, 30.316975322502056 ], [ -95.042106944745541, 30.316562321687766 ], [ -95.041804944185074, 30.316274321874218 ], [ -95.041594944256261, 30.315889322109491 ], [ -95.041435944822197, 30.315632321935926 ], [ -95.041400944845506, 30.315204321623316 ], [ -95.041387944360451, 30.315163321540311 ], [ -95.041368944319032, 30.315099322024579 ], [ -95.041227944576121, 30.314671321259635 ], [ -95.041196944664009, 30.314457321935272 ], [ -95.041164944680276, 30.314242322036225 ], [ -95.041013944656768, 30.313835321254306 ], [ -95.041006943938712, 30.313790321206618 ], [ -95.040939944228853, 30.31342532155298 ], [ -95.040880943851278, 30.313102321290643 ], [ -95.040763943728848, 30.312596320867062 ], [ -95.040633944463295, 30.312340321103701 ], [ -95.040366944131861, 30.311928321001616 ], [ -95.039924943572032, 30.311558320878266 ], [ -95.039843943479013, 30.311499321303859 ], [ -95.040158943605803, 30.311412321094611 ], [ -95.040397944295023, 30.311352320973285 ], [ -95.040293944074861, 30.311249320730894 ], [ -95.040185943937857, 30.31106732115888 ], [ -95.040116944058155, 30.310782321280104 ], [ -95.040033943815601, 30.310529321061871 ], [ -95.039938943966163, 30.31034732058064 ], [ -95.039818943428656, 30.310215320356466 ], [ -95.039552943353982, 30.309786320436764 ], [ -95.03905194353689, 30.309489320608449 ], [ -95.03892594309491, 30.309390320609246 ], [ -95.038639942834891, 30.30902232096895 ], [ -95.03860194367229, 30.308945320308506 ], [ -95.038589943272228, 30.30887932095435 ], [ -95.03862794346216, 30.30816432015164 ], [ -95.038621942769225, 30.307933320703544 ], [ -95.038595943046104, 30.307845320269134 ], [ -95.03855194318416, 30.307746320793758 ], [ -95.038450942776237, 30.307576319921619 ], [ -95.038266943654989, 30.307372320172867 ], [ -95.037975942744808, 30.307086319796753 ], [ -95.037835942606065, 30.306971320401647 ], [ -95.037049942423607, 30.306470320469092 ], [ -95.036923942417843, 30.306371320114444 ], [ -95.036802942237415, 30.306250320331749 ], [ -95.036733942442027, 30.306140319815341 ], [ -95.036701943225125, 30.306069320125488 ], [ -95.036593942200739, 30.305722319757436 ], [ -95.036492942604184, 30.305508319518619 ], [ -95.036403942715737, 30.305403320040384 ], [ -95.036327942229761, 30.3053483199438 ], [ -95.036245942487696, 30.305315320375119 ], [ -95.036171942576587, 30.305304319799529 ], [ -95.036004942495055, 30.305310319569731 ], [ -95.035934942661754, 30.305321320284108 ], [ -95.035598942185544, 30.305464319798965 ], [ -95.035554942640459, 30.305469319678206 ], [ -95.03551094278761, 30.305464319950399 ], [ -95.035472942719466, 30.305447320166476 ], [ -95.035345941919843, 30.305304320010666 ], [ -95.035244942020356, 30.305139320189816 ], [ -95.035180942444157, 30.304974319691592 ], [ -95.035079942656083, 30.304501319923034 ], [ -95.035016942628431, 30.304358319994165 ], [ -95.034883941801624, 30.304210319358074 ], [ -95.034807942427534, 30.304149319865786 ], [ -95.034484941750506, 30.30394632012829 ], [ -95.034376942157223, 30.303858319457703 ], [ -95.034319942238682, 30.303775320001403 ], [ -95.034293942234925, 30.30370931951872 ], [ -95.034287941495577, 30.303654319764938 ], [ -95.034319941774328, 30.30357732005967 ], [ -95.034490941927686, 30.303253319636895 ], [ -95.034522941896398, 30.303152319572497 ], [ -95.034591942095204, 30.302934319564791 ], [ -95.034604941661229, 30.302830319690184 ], [ -95.034598942313337, 30.302714319623618 ], [ -95.03457994183907, 30.302610319286195 ], [ -95.034528941798143, 30.302483319137501 ], [ -95.034427942436707, 30.302329319846496 ], [ -95.034300941862284, 30.302203319212293 ], [ -95.034047941829655, 30.302054319725205 ], [ -95.033857941590583, 30.301961319679869 ], [ -95.033578942189706, 30.301840318885699 ], [ -95.033489941675256, 30.301790319004542 ], [ -95.033400941193008, 30.301708319237626 ], [ -95.033337942086419, 30.301592319628586 ], [ -95.033198941850316, 30.301152319444466 ], [ -95.033141941970555, 30.301004319593112 ], [ -95.033027941890637, 30.300800319083589 ], [ -95.032932941217311, 30.300679318962121 ], [ -95.032824941765696, 30.300580318921565 ], [ -95.032723940945345, 30.300509318726679 ], [ -95.032241941484969, 30.300327318853391 ], [ -95.032102941711202, 30.300267318833981 ], [ -95.031937941351629, 30.300179318608151 ], [ -95.031836940808887, 30.300091318633395 ], [ -95.03175394163739, 30.299986318996805 ], [ -95.031696940939767, 30.29986531885995 ], [ -95.031633941083555, 30.299645319120426 ], [ -95.031551941086121, 30.299189318587413 ], [ -95.031494941361387, 30.2986893190991 ], [ -95.031494941071372, 30.298524318490728 ], [ -95.031437940720693, 30.298342318520273 ], [ -95.031393940760779, 30.298249318983206 ], [ -95.031374940545021, 30.298084318242545 ], [ -95.031380940455094, 30.297941318601428 ], [ -95.031342941320034, 30.297825318567568 ], [ -95.031279940682879, 30.297776318474266 ], [ -95.031152941185226, 30.297743318427255 ], [ -95.031038940702288, 30.297776318433574 ], [ -95.030937941119944, 30.297836318308949 ], [ -95.030810940461137, 30.297941318955569 ], [ -95.030753940401453, 30.297957318356723 ], [ -95.030721940629491, 30.297941318806078 ], [ -95.03066494104462, 30.297864318631575 ], [ -95.030670940423434, 30.297759318288282 ], [ -95.030721940992862, 30.297649318552157 ], [ -95.030810941097641, 30.297572318207241 ], [ -95.030918940469022, 30.297517318225616 ], [ -95.031108941147821, 30.297506318280188 ], [ -95.031228940722315, 30.297473318944942 ], [ -95.031304940597494, 30.297380318049228 ], [ -95.031323940660343, 30.297303318556832 ], [ -95.031285940653845, 30.297215318133599 ], [ -95.031171941230625, 30.29714331806111 ], [ -95.030810940932682, 30.296995318833062 ], [ -95.030538940505124, 30.296923318540198 ], [ -95.030398941067958, 30.296896318616405 ], [ -95.030354940942132, 30.296912318194352 ], [ -95.030322940576795, 30.296978318423687 ], [ -95.03029794080085, 30.297072318840815 ], [ -95.030227940950809, 30.2971103188402 ], [ -95.030132940338632, 30.297110318363309 ], [ -95.029600940114477, 30.296918318056981 ], [ -95.029473940409943, 30.296786318211847 ], [ -95.029467940669818, 30.2967423186109 ], [ -95.029670940027216, 30.296351318544616 ], [ -95.029682940417317, 30.296280318142351 ], [ -95.029670939966593, 30.296230318274876 ], [ -95.029600940887562, 30.296175318324135 ], [ -95.029575940421083, 30.296115318364514 ], [ -95.029638939900025, 30.295983318465854 ], [ -95.029638940279582, 30.295906317883674 ], [ -95.029594940789053, 30.295818317865724 ], [ -95.029423940105318, 30.295598317775855 ], [ -95.029378940386792, 30.295521318574743 ], [ -95.029353940669893, 30.295427318508501 ], [ -95.029385940584262, 30.295235317839921 ], [ -95.029448940083711, 30.295147317700653 ], [ -95.02979794016008, 30.294839317722875 ], [ -95.029886940070014, 30.294718318223104 ], [ -95.029967940773858, 30.294542318183968 ], [ -95.030031940489025, 30.294405318370838 ], [ -95.030095940375219, 30.29430631791891 ], [ -95.030165940732886, 30.294229317663614 ], [ -95.03022294042195, 30.294180317613453 ], [ -95.03032994096769, 30.294114317862682 ], [ -95.030437940232446, 30.294070317983987 ], [ -95.030798941115819, 30.293965317444265 ], [ -95.030862941080414, 30.293921317869405 ], [ -95.030912940442249, 30.29387231797698 ], [ -95.030950940416332, 30.293800317984051 ], [ -95.031008940913466, 30.293465317760131 ], [ -95.031033941152771, 30.293415317748472 ], [ -95.03107194040966, 30.293360317731224 ], [ -95.031128940898384, 30.293305317900348 ], [ -95.031362940867055, 30.293135317289817 ], [ -95.031445940880332, 30.293036317235799 ], [ -95.03148394040295, 30.292921317398605 ], [ -95.03148994060443, 30.292844317495248 ], [ -95.031451940323919, 30.292690317740867 ], [ -95.031344940874234, 30.292475317214148 ], [ -95.031148940642794, 30.292001317404374 ], [ -95.030907940175993, 30.291419317450838 ], [ -95.030843940428781, 30.291298317698455 ], [ -95.030748940665347, 30.291161317018627 ], [ -95.030634940388254, 30.291040316904173 ], [ -95.030520940645744, 30.290946317319264 ], [ -95.030434940322564, 30.290883316775286 ], [ -95.030045940208197, 30.290600317445161 ], [ -95.029881940622744, 30.290468317327413 ], [ -95.029767940167986, 30.290358317011108 ], [ -95.029691940285332, 30.29026431737719 ], [ -95.029564940064361, 30.290061317420378 ], [ -95.029501940502584, 30.289709316868986 ], [ -95.029456940383554, 30.289627317117986 ], [ -95.029393939753845, 30.28954931682793 ], [ -95.029057940247071, 30.289319317120693 ], [ -95.028988940300863, 30.28924731702288 ], [ -95.028918939963475, 30.289093316950421 ], [ -95.028994940394014, 30.288884316752071 ], [ -95.028994940144216, 30.288785316423972 ], [ -95.029038939635456, 30.288675316374 ], [ -95.029089939714936, 30.288631317097867 ], [ -95.029330939855825, 30.28860931638361 ], [ -95.02941993954326, 30.288565316944958 ], [ -95.029457939971863, 30.288510316424045 ], [ -95.029450940060883, 30.288444316578143 ], [ -95.029387939645574, 30.288362316899374 ], [ -95.02926793982482, 30.288246316597601 ], [ -95.028988939511606, 30.28813631663763 ], [ -95.028927939721015, 30.288098316880784 ], [ -95.028899939821102, 30.288081316342645 ], [ -95.028538939950522, 30.287669316509305 ], [ -95.028462939387907, 30.28744331633418 ], [ -95.028450940049524, 30.287339316583818 ], [ -95.028488939486664, 30.287201316810688 ], [ -95.028619939449626, 30.286947316294931 ], [ -95.028660939691335, 30.286866316224128 ], [ -95.028784939545332, 30.286626316680124 ], [ -95.028811939830888, 30.286575316278999 ], [ -95.028840940150005, 30.286560316484245 ], [ -95.028868939637135, 30.286503316291391 ], [ -95.028950939445735, 30.286459316603143 ], [ -95.029109939923842, 30.286421316175886 ], [ -95.029191939358867, 30.286371315979661 ], [ -95.029248940124816, 30.286327316613402 ], [ -95.029293940105333, 30.28627231664354 ], [ -95.02931893954937, 30.28620631585013 ], [ -95.029350939412723, 30.286173316654605 ], [ -95.029432940123897, 30.286146315905324 ], [ -95.029831940266547, 30.286069316374089 ], [ -95.030091939651257, 30.285987315797435 ], [ -95.030269940066091, 30.285910316588499 ], [ -95.030414940648342, 30.285822316130211 ], [ -95.030539940308259, 30.28572831607682 ], [ -95.030592940574593, 30.285690315960956 ], [ -95.030712940264422, 30.285569315751744 ], [ -95.030794940164952, 30.285464315891904 ], [ -95.030890939887314, 30.285277315688983 ], [ -95.031029940069658, 30.28489831556395 ], [ -95.031105940483243, 30.284612315768062 ], [ -95.031334940740621, 30.283628315348885 ], [ -95.031372939947985, 30.283513316056816 ], [ -95.031467940376416, 30.283331316009431 ], [ -95.0315439405191, 30.283227315870082 ], [ -95.031815940220653, 30.282935315559556 ], [ -95.032056940182173, 30.282616315147507 ], [ -95.032227940026175, 30.282435315831538 ], [ -95.032512940166299, 30.282215315079995 ], [ -95.032728940703848, 30.282083314918509 ], [ -95.033463941128062, 30.281687315482198 ], [ -95.033710940968831, 30.281539314961197 ], [ -95.034001941186361, 30.281334315418018 ], [ -95.034040940975558, 30.281308314955567 ], [ -95.034280941313639, 30.281110314641403 ], [ -95.034426941079701, 30.280962315051763 ], [ -95.034508941335915, 30.280830314945216 ], [ -95.034585940690548, 30.280637314640952 ], [ -95.034629940970575, 30.28043931461567 ], [ -95.034629941231984, 30.280280315003285 ], [ -95.034521941392498, 30.279802314555386 ], [ -95.034528940680474, 30.279741314753728 ], [ -95.034574941410426, 30.27963131480201 ], [ -95.03462994144428, 30.279499314880514 ], [ -95.03464294059718, 30.279444315154542 ], [ -95.034636941400024, 30.279373314766914 ], [ -95.034604941021811, 30.279241315130928 ], [ -95.034496941292119, 30.278966315010184 ], [ -95.034395940617458, 30.278779314961671 ], [ -95.034256940981123, 30.278553314675875 ], [ -95.03409794092822, 30.278322314408026 ], [ -95.033926940364665, 30.278102314139868 ], [ -95.0336929402268, 30.277827314448306 ], [ -95.033233940661631, 30.277458314600416 ], [ -95.032843940313057, 30.277145314338121 ], [ -95.032596940315074, 30.276898314024709 ], [ -95.032546939946187, 30.276815314524189 ], [ -95.032501940216449, 30.276706314459719 ], [ -95.032482940043835, 30.27660131417154 ], [ -95.032489940365949, 30.276530313767157 ], [ -95.032520940540195, 30.276436313942011 ], [ -95.032571940611703, 30.276343313888127 ], [ -95.03336394020603, 30.275315313728633 ], [ -95.033490940956142, 30.275188313673109 ], [ -95.033667940967561, 30.275040314241835 ], [ -95.03394694089539, 30.274842313842701 ], [ -95.034136941023078, 30.274710314010957 ], [ -95.03422594013189, 30.274633313975965 ], [ -95.034301940324099, 30.274534313375309 ], [ -95.034352940319735, 30.274375313917467 ], [ -95.034434940280818, 30.27359431338483 ], [ -95.034511940694188, 30.273165313126114 ], [ -95.034904940614155, 30.272054312969612 ], [ -95.034954940461887, 30.271515312754346 ], [ -95.035088940920843, 30.270867313324143 ], [ -95.035138940541358, 30.270729313281386 ], [ -95.035218940626976, 30.27057231331009 ], [ -95.035259940184957, 30.270493312910798 ], [ -95.035861941004995, 30.269690313085288 ], [ -95.035886940598047, 30.269525312587337 ], [ -95.035931941073528, 30.269371312976229 ], [ -95.036007940626789, 30.269267312813714 ], [ -95.036228940584266, 30.268827312636926 ], [ -95.036273940648798, 30.268667312488596 ], [ -95.036254941125094, 30.268486312041755 ], [ -95.035956940502444, 30.268480312387105 ], [ -95.035766940751472, 30.268370312568525 ], [ -95.035513940161621, 30.268299312636557 ], [ -95.035323940227727, 30.26830431242885 ], [ -95.035228940625416, 30.268332312091999 ], [ -95.035177940733092, 30.268326312258438 ], [ -95.035152940497525, 30.268282312638512 ], [ -95.035139940772439, 30.268200312707645 ], [ -95.035152940755083, 30.268106311994529 ], [ -95.035183940220918, 30.26799631209721 ], [ -95.035240940380845, 30.267980312032073 ], [ -95.03537394055806, 30.268040312117471 ], [ -95.035449940500712, 30.268029311983128 ], [ -95.035532940783625, 30.267958312677592 ], [ -95.035671940363741, 30.267947312040651 ], [ -95.035842941120023, 30.268079312063644 ], [ -95.035880941196297, 30.268134312199436 ], [ -95.035944940543814, 30.268167312536356 ], [ -95.035988940870325, 30.26817231269419 ], [ -95.036032940316076, 30.268145312536753 ], [ -95.036077940954328, 30.268090312031649 ], [ -95.036077940962528, 30.268007312049342 ], [ -95.036013940257376, 30.267837312738848 ], [ -95.035855940439006, 30.267612312226525 ], [ -95.035690940170213, 30.267452311860925 ], [ -95.035665940966155, 30.267408312349954 ], [ -95.035665940581808, 30.267342312531785 ], [ -95.035697940838872, 30.267293312560355 ], [ -95.0358369409646, 30.267232312131078 ], [ -95.035937940504468, 30.267221311960874 ], [ -95.0360209411228, 30.267243312135523 ], [ -95.036108940551273, 30.267282312468986 ], [ -95.036159940845621, 30.267359312104066 ], [ -95.036184940339766, 30.267447312594022 ], [ -95.03619194052051, 30.267606312368788 ], [ -95.036216940973048, 30.267689312543105 ], [ -95.036254940893514, 30.267755312390221 ], [ -95.036311940688591, 30.267810311976898 ], [ -95.036406940767932, 30.267865312466373 ], [ -95.036482940461781, 30.267870311885719 ], [ -95.036571940784924, 30.267854312494453 ], [ -95.036640941265787, 30.267804312579639 ], [ -95.036697940907203, 30.267733311927696 ], [ -95.036735940872333, 30.267612312111332 ], [ -95.036723941181549, 30.267557311938919 ], [ -95.036526940921107, 30.267485311771264 ], [ -95.036450940834101, 30.26741931198957 ], [ -95.036431940443293, 30.267353311730442 ], [ -95.036482941193626, 30.267067311923078 ], [ -95.036520940579649, 30.266979312467392 ], [ -95.036584940704074, 30.266919311891836 ], [ -95.03664794135058, 30.266902311763015 ], [ -95.036672941201815, 30.266899311650242 ], [ -95.036742940716309, 30.266891312236773 ], [ -95.036818941389754, 30.266902311910485 ], [ -95.036995940820859, 30.266985312371435 ], [ -95.037078940560022, 30.266996312054989 ], [ -95.037135941077295, 30.266985312445552 ], [ -95.03716094097571, 30.266946311701613 ], [ -95.037166940689872, 30.266892312322074 ], [ -95.037141941403405, 30.26681531183554 ], [ -95.037033941113648, 30.266595312033537 ], [ -95.037033941143719, 30.26644631221415 ], [ -95.037072940569473, 30.266298311921162 ], [ -95.037186940656227, 30.266100311970003 ], [ -95.037376941007381, 30.265863311620215 ], [ -95.037490941159788, 30.265748311441445 ], [ -95.037597941245153, 30.265698311663435 ], [ -95.037705941060324, 30.265627311856758 ], [ -95.038263940913453, 30.265446311838968 ], [ -95.038402941017168, 30.265385311540097 ], [ -95.03850394136586, 30.265319311335777 ], [ -95.038586941376153, 30.265237311269107 ], [ -95.038624941710069, 30.265176312118985 ], [ -95.038630941802595, 30.265094311735911 ], [ -95.038573941352638, 30.264956311199704 ], [ -95.038446940832515, 30.26484131189266 ], [ -95.038383941017713, 30.264808311372516 ], [ -95.038187941073758, 30.264780311449471 ], [ -95.037933941365708, 30.264802311432351 ], [ -95.037845940615156, 30.26479731170177 ], [ -95.037796940538641, 30.264777312044806 ], [ -95.03777594138073, 30.264769311991678 ], [ -95.037686940675343, 30.264720311423172 ], [ -95.037617940810605, 30.264643311617213 ], [ -95.037560940598127, 30.264549311689503 ], [ -95.037566940955813, 30.264439311267257 ], [ -95.037610941434522, 30.264296311986907 ], [ -95.037680941005036, 30.264203311919356 ], [ -95.037731940553272, 30.264159311160892 ], [ -95.037877941206816, 30.264076311028145 ], [ -95.038029941469148, 30.264049311335043 ], [ -95.038092941109269, 30.264021311615991 ], [ -95.038130940994222, 30.263988311710694 ], [ -95.038130940830612, 30.26390631169037 ], [ -95.038073941207941, 30.263873311499623 ], [ -95.037984940592381, 30.263845311582816 ], [ -95.0379159410314, 30.263790311553116 ], [ -95.037896941474983, 30.263702311773077 ], [ -95.037959940855572, 30.263614311735097 ], [ -95.037997940666614, 30.263581310959943 ], [ -95.038048940678991, 30.263570311385941 ], [ -95.038130941308012, 30.263587311307933 ], [ -95.038301940909037, 30.263697311603803 ], [ -95.038409941331054, 30.263703310953474 ], [ -95.03842894140314, 30.263664311276401 ], [ -95.03843494084019, 30.263620311540777 ], [ -95.038421941428524, 30.263532311431515 ], [ -95.038314941111992, 30.263257311001919 ], [ -95.038276941553164, 30.263103311166919 ], [ -95.038301940770523, 30.263037311076555 ], [ -95.038365940647324, 30.262938311564341 ], [ -95.038567941353506, 30.262729311424554 ], [ -95.038599940749705, 30.26265831106279 ], [ -95.038605940873182, 30.262548311435779 ], [ -95.038574941466621, 30.262509311313522 ], [ -95.038498941480881, 30.262449311071894 ], [ -95.038453941489621, 30.262438310727987 ], [ -95.038358941283391, 30.262449311329235 ], [ -95.03828294071198, 30.262515311240413 ], [ -95.03819494136286, 30.262630311610526 ], [ -95.038124941062762, 30.262696311041314 ], [ -95.038042940804303, 30.262707311164096 ], [ -95.037928940762995, 30.262685310816977 ], [ -95.037839940818344, 30.262614311511967 ], [ -95.037814941405898, 30.262520310751512 ], [ -95.037750940752531, 30.262102311452519 ], [ -95.037738941401756, 30.261805311223281 ], [ -95.037712940462569, 30.261701310950659 ], [ -95.037630940980506, 30.261547310540255 ], [ -95.037611941183172, 30.26143731092812 ], [ -95.037624940579988, 30.261333310904938 ], [ -95.03768194058442, 30.261212310910068 ], [ -95.037808940927022, 30.26103631057703 ], [ -95.037877940575157, 30.260909311121885 ], [ -95.037896941072063, 30.260805310707187 ], [ -95.03787794141121, 30.260700310541555 ], [ -95.037479940662848, 30.260040310958257 ], [ -95.037156940848917, 30.259589310824818 ], [ -95.036972940252696, 30.259391310839963 ], [ -95.036681940639653, 30.259166310711201 ], [ -95.036674940039063, 30.259159310895143 ], [ -95.036408940372041, 30.258896310342699 ], [ -95.036345940491188, 30.258819310132431 ], [ -95.036250940786104, 30.258737310890492 ], [ -95.036003940479148, 30.258588310605624 ], [ -95.035864939749374, 30.258489310822238 ], [ -95.035756940659056, 30.258341310276904 ], [ -95.03562994053172, 30.258099310568202 ], [ -95.035477940096513, 30.257890309907527 ], [ -95.035326940148735, 30.25761031007076 ], [ -95.035231939539599, 30.257329310513029 ], [ -95.035174939621868, 30.25694431037132 ], [ -95.035183940119822, 30.256894310104148 ], [ -95.035263940530371, 30.2564273102751 ], [ -95.035301939798828, 30.256092309693312 ], [ -95.035218940456247, 30.255608309512365 ], [ -95.03497894009881, 30.255119310148 ], [ -95.034899939774832, 30.25493130930619 ], [ -95.034858940250913, 30.254833310006731 ], [ -95.034598939821748, 30.254558309213714 ], [ -95.033743939051632, 30.253854309942902 ], [ -95.033256939228181, 30.253078309170903 ], [ -95.033053938809942, 30.252435309127172 ], [ -95.033092939182168, 30.251275309265953 ], [ -95.03325093880342, 30.250004308671659 ], [ -95.033268939241893, 30.249911308573004 ], [ -95.033255938817632, 30.249806308682569 ], [ -95.033217939310262, 30.249696308496752 ], [ -95.03311493938547, 30.24951630897916 ], [ -95.033040939442074, 30.249388308281794 ], [ -95.032698939403303, 30.249014308406107 ], [ -95.03261693918202, 30.248943308818909 ], [ -95.032337939145791, 30.248772309000127 ], [ -95.031894939217736, 30.248596308807748 ], [ -95.031786938874987, 30.24853030825517 ], [ -95.031507939078651, 30.248310308363862 ], [ -95.031419938522788, 30.248239308053147 ], [ -95.031368939086676, 30.248178308627125 ], [ -95.03122993888158, 30.24797530880322 ], [ -95.030957938544873, 30.24762330813099 ], [ -95.03085593796898, 30.247530308269802 ], [ -95.030722938296506, 30.247442308343498 ], [ -95.030488938188356, 30.247343308593845 ], [ -95.030406938433046, 30.247287308673993 ], [ -95.030311938050033, 30.247172308173933 ], [ -95.030266938060677, 30.24700230808584 ], [ -95.030266938399791, 30.246892307872656 ], [ -95.030286938290942, 30.2466943084093 ], [ -95.030210938359943, 30.246534308523884 ], [ -95.030121938293377, 30.246408307882295 ], [ -95.030039938404599, 30.246336308270319 ], [ -95.029937938028425, 30.246270307859536 ], [ -95.029874937887314, 30.246248308016401 ], [ -95.029811938140909, 30.246243308549325 ], [ -95.029766938071134, 30.246254308469211 ], [ -95.029576938057545, 30.2463313081027 ], [ -95.029500938002258, 30.246342308174601 ], [ -95.029456937785298, 30.246331307815002 ], [ -95.029405938542737, 30.246292308316814 ], [ -95.029367938539934, 30.246226308261111 ], [ -95.029336937771006, 30.246094308260613 ], [ -95.029418938069156, 30.245786308137856 ], [ -95.029450937882572, 30.24562730807903 ], [ -95.02945093781392, 30.245511308204925 ], [ -95.029431937781808, 30.245456307834512 ], [ -95.029393938157725, 30.245401307707041 ], [ -95.029216938317489, 30.245258307713637 ], [ -95.029026938260699, 30.245176307861865 ], [ -95.028975937836989, 30.245121307794797 ], [ -95.028918937778101, 30.244989308055388 ], [ -95.028924938308521, 30.244686308197441 ], [ -95.028905938094113, 30.24438930795791 ], [ -95.028925938229534, 30.2442463081731 ], [ -95.029013937809481, 30.243862307604246 ], [ -95.029020937994702, 30.24377430774944 ], [ -95.028988938074264, 30.24361430744375 ], [ -95.028937937373755, 30.243477307237075 ], [ -95.028874937984824, 30.24338930714547 ], [ -95.028785937978881, 30.243312307333444 ], [ -95.028735937461917, 30.243295307960015 ], [ -95.028519937583113, 30.243257307394508 ], [ -95.02848193799322, 30.243229307220783 ], [ -95.028450938061923, 30.24318530735955 ], [ -95.028431937976094, 30.243108307753232 ], [ -95.028431938083514, 30.243053307975398 ], [ -95.028475938112109, 30.24291030752876 ], [ -95.028615937832782, 30.242591307830143 ], [ -95.02860893765174, 30.2425203070122 ], [ -95.028589937354909, 30.242470307708682 ], [ -95.028551937219078, 30.242426307170522 ], [ -95.028406937250423, 30.24235530750915 ], [ -95.028368938029246, 30.242327307292641 ], [ -95.028330937253514, 30.242256307255772 ], [ -95.028311937432463, 30.242179307601912 ], [ -95.028406937239453, 30.241843307030468 ], [ -95.028419937348261, 30.241728306869867 ], [ -95.028412937074009, 30.241601307015213 ], [ -95.028393937685379, 30.241525307440952 ], [ -95.028362937331991, 30.24145930757037 ], [ -95.028267938044877, 30.241343306870302 ], [ -95.02808393728553, 30.24116730697185 ], [ -95.027811937375802, 30.240980307526225 ], [ -95.027767937707111, 30.240975307006892 ], [ -95.027602937464408, 30.241040307457897 ], [ -95.027501937239549, 30.24103530669586 ], [ -95.027387937430944, 30.241013307276155 ], [ -95.027336937593631, 30.240980307261552 ], [ -95.027311937034327, 30.240936307162617 ], [ -95.027311937008207, 30.240765307131191 ], [ -95.027260937171903, 30.24066630725283 ], [ -95.02723593773257, 30.240639306709529 ], [ -95.027127936712517, 30.240623306715325 ], [ -95.027064936989433, 30.240634307117446 ], [ -95.026994937276498, 30.240666307497783 ], [ -95.026905937207118, 30.24075430672854 ], [ -95.026798937170156, 30.240842307275155 ], [ -95.026728936845771, 30.24087030718502 ], [ -95.026576937569288, 30.240859306716093 ], [ -95.02652593677135, 30.24083730722932 ], [ -95.026361937301786, 30.240666306986473 ], [ -95.026278937354746, 30.240600307247473 ], [ -95.026190937061372, 30.240545306973104 ], [ -95.026095937335839, 30.240501306724802 ], [ -95.025987936844444, 30.240468307171049 ], [ -95.02570893637477, 30.240413306669737 ], [ -95.025620936894867, 30.240386307367501 ], [ -95.025512936654934, 30.240320307495079 ], [ -95.02545593716161, 30.240265307482058 ], [ -95.02542493702579, 30.240199306838324 ], [ -95.025398936424082, 30.240089306725501 ], [ -95.025398937133872, 30.239995307325689 ], [ -95.02543693646308, 30.239935306812644 ], [ -95.025582936568213, 30.239753307387474 ], [ -95.025582936497003, 30.239693307077925 ], [ -95.025550936387191, 30.239621307132754 ], [ -95.025500936454833, 30.239566307033513 ], [ -95.025449936883916, 30.239533307154904 ], [ -95.025341936593662, 30.239500307038799 ], [ -95.025297936967277, 30.239478307026982 ], [ -95.025227936598938, 30.239429307174479 ], [ -95.025107936676761, 30.239225307089573 ], [ -95.025044936125255, 30.239165307096901 ], [ -95.024987936993725, 30.239154306786027 ], [ -95.024955936368087, 30.239170306537829 ], [ -95.024892936113659, 30.239269306683749 ], [ -95.024860936270372, 30.239379306803507 ], [ -95.024829936166327, 30.239412306749159 ], [ -95.024797936831064, 30.239423307002028 ], [ -95.024753936516106, 30.239423306757523 ], [ -95.024639936725166, 30.239385307244611 ], [ -95.024556936021085, 30.239335306712345 ], [ -95.024506936140995, 30.239269307134816 ], [ -95.024480936386084, 30.239198307236613 ], [ -95.024474936544749, 30.238983306739136 ], [ -95.02438593602858, 30.238769306982146 ], [ -95.02433593600044, 30.238692306416667 ], [ -95.024284936731348, 30.238642306494484 ], [ -95.024139936114395, 30.238560306379686 ], [ -95.024069936673499, 30.238554306686037 ], [ -95.023841936686807, 30.238598307026379 ], [ -95.023806935998138, 30.238592306382948 ], [ -95.023778935764838, 30.23858730675726 ], [ -95.02372793667881, 30.238565307091271 ], [ -95.023518935655986, 30.238367306699459 ], [ -95.023480935989951, 30.238345306351036 ], [ -95.023341935838971, 30.238312306936496 ], [ -95.023296936092265, 30.238290306478664 ], [ -95.023233936571046, 30.238241306494846 ], [ -95.023144935989237, 30.238065307053514 ], [ -95.023106935758818, 30.2380153069921 ], [ -95.023049936145952, 30.237971306726582 ], [ -95.022986936274805, 30.237949307005916 ], [ -95.022923936268228, 30.237949306344266 ], [ -95.022872936231508, 30.237971306298171 ], [ -95.022707936465054, 30.238114306283126 ], [ -95.022650936405057, 30.23815330631199 ], [ -95.022593936220474, 30.23816930713852 ], [ -95.022536935989351, 30.238175307121075 ], [ -95.022479936103963, 30.238169307009656 ], [ -95.022397935866096, 30.238147307124521 ], [ -95.022327935543117, 30.238114306981604 ], [ -95.022270936212266, 30.238070306388263 ], [ -95.02220793629094, 30.237998306710001 ], [ -95.022201936013118, 30.237938306838672 ], [ -95.022239936150228, 30.237844307081645 ], [ -95.022378935624928, 30.237707306329188 ], [ -95.022397936283767, 30.237636306728572 ], [ -95.022359936183648, 30.237542306429027 ], [ -95.02232193580933, 30.237493306195823 ], [ -95.022277935415204, 30.237454306420073 ], [ -95.022169936207135, 30.237388306366356 ], [ -95.02198693526995, 30.237322306138843 ], [ -95.02163193526458, 30.237234306891605 ], [ -95.021422935453586, 30.2371573066543 ], [ -95.021220935135872, 30.237009306673873 ], [ -95.02117593539738, 30.236953306259945 ], [ -95.021144935724465, 30.236849306706471 ], [ -95.021194935465644, 30.236772306679857 ], [ -95.021277935533689, 30.236563306014435 ], [ -95.02144893563154, 30.236277306163494 ], [ -95.021448935107472, 30.23621130608355 ], [ -95.021435935391594, 30.236151305976872 ], [ -95.021277935499185, 30.235920306747751 ], [ -95.021264935062391, 30.235881306534608 ], [ -95.021271935109382, 30.235837306648907 ], [ -95.021296935637579, 30.235788306654285 ], [ -95.021429935432494, 30.235623305889824 ], [ -95.021442935598614, 30.235546306347512 ], [ -95.02139793587331, 30.23548530644333 ], [ -95.02127793579443, 30.23541430611245 ], [ -95.021239935363326, 30.235364306307929 ], [ -95.021214934939422, 30.235304306228645 ], [ -95.021227934934146, 30.235260305833748 ], [ -95.021258935207243, 30.235221306165244 ], [ -95.021448935735989, 30.235144306607264 ], [ -95.021398935565216, 30.234996305997253 ], [ -95.021265935553757, 30.234831306230422 ], [ -95.021163935848762, 30.234749306046332 ], [ -95.021062935015053, 30.234584305774053 ], [ -95.021018935595478, 30.234419305774573 ], [ -95.020929935067784, 30.234254306198391 ], [ -95.020898935737819, 30.234237305637127 ], [ -95.020853935081973, 30.234232305658001 ], [ -95.020822934826526, 30.234243305600046 ], [ -95.02080393479001, 30.234259305906207 ], [ -95.020752935700315, 30.234380306179023 ], [ -95.020720935019739, 30.234407305855296 ], [ -95.020600935418798, 30.234391305865152 ], [ -95.020473934727875, 30.234308306206692 ], [ -95.020404934930454, 30.234231306412635 ], [ -95.02034093500852, 30.234143306318188 ], [ -95.02030393463329, 30.233781305827996 ], [ -95.020258935336003, 30.233720305466679 ], [ -95.02018993469045, 30.2336703059778 ], [ -95.020119935253746, 30.233659305495031 ], [ -95.020043935139697, 30.23367030545473 ], [ -95.019973934640447, 30.233698305453995 ], [ -95.019910934864924, 30.233747305649967 ], [ -95.019669934591704, 30.23402830634312 ], [ -95.019568935366664, 30.234099305852165 ], [ -95.019460934608887, 30.234154306335491 ], [ -95.019397935357091, 30.234127306208077 ], [ -95.019353935089157, 30.234094305855898 ], [ -95.019308934626068, 30.233984306407887 ], [ -95.019308934425979, 30.233907306203239 ], [ -95.019359935308728, 30.233758305895687 ], [ -95.019365934941959, 30.233692306197682 ], [ -95.019353934653395, 30.233621305513473 ], [ -95.019270935266846, 30.23346730614038 ], [ -95.019195934988375, 30.233368305987934 ], [ -95.019055934565088, 30.233214306204886 ], [ -95.019036935125982, 30.233148305634163 ], [ -95.019024934829744, 30.233010305511574 ], [ -95.019030934639545, 30.232922305739447 ], [ -95.01907493423964, 30.232768305630344 ], [ -95.019081935004891, 30.232680305659784 ], [ -95.019068935022432, 30.232598306003446 ], [ -95.019043935243999, 30.232537305326119 ], [ -95.018980935042933, 30.232433305572233 ], [ -95.018916934324068, 30.232356305579838 ], [ -95.01860093504294, 30.232075306042869 ], [ -95.018492934877955, 30.23193230594979 ], [ -95.018397934960078, 30.231712305424164 ], [ -95.01841093449552, 30.231570305806688 ], [ -95.018454934322179, 30.231438305893512 ], [ -95.018530934735537, 30.231284305411297 ], [ -95.018562934014142, 30.231190305842652 ], [ -95.018575934936109, 30.231080305371549 ], [ -95.018568934139722, 30.231020305283241 ], [ -95.018486934207303, 30.230871305360363 ], [ -95.018423934806464, 30.230618305029346 ], [ -95.018385934274832, 30.230530305451424 ], [ -95.018309934164307, 30.230398305566553 ], [ -95.0182339344409, 30.230327305498069 ], [ -95.018138934490068, 30.230266305706849 ], [ -95.018024934311953, 30.230211304904184 ], [ -95.017967934712374, 30.230189304955779 ], [ -95.01791793453323, 30.230151304832674 ], [ -95.017828934620098, 30.230052305682872 ], [ -95.017758934501529, 30.229925305522581 ], [ -95.017720934771219, 30.229760305359815 ], [ -95.017702934085534, 30.229392305026927 ], [ -95.017664934637452, 30.229304305199697 ], [ -95.017613934703689, 30.229122305232575 ], [ -95.017708934026473, 30.22888630482305 ], [ -95.017721934263349, 30.228825304954388 ], [ -95.017702933774416, 30.22874930492328 ], [ -95.017664933857574, 30.228666304585253 ], [ -95.017613933843137, 30.228606305294459 ], [ -95.017525934175083, 30.228556304502749 ], [ -95.017328934513486, 30.228495304986282 ], [ -95.017271933641808, 30.228468305121449 ], [ -95.017088934438192, 30.228325305161903 ], [ -95.016929934134524, 30.228171304553996 ], [ -95.016892933969729, 30.228116305302105 ], [ -95.016892933630814, 30.228083305101581 ], [ -95.016917934139386, 30.228033304760888 ], [ -95.016961934455352, 30.228000304812479 ], [ -95.017012934245898, 30.227979304486301 ], [ -95.017069934342487, 30.227973305165822 ], [ -95.017252933741133, 30.228045305287253 ], [ -95.017322934571609, 30.228061305182102 ], [ -95.017506933780325, 30.228050304683133 ], [ -95.01760193372364, 30.228012304497359 ], [ -95.017708934688883, 30.227924304648635 ], [ -95.017759934401724, 30.227869304672161 ], [ -95.017880933997162, 30.227808305036355 ], [ -95.018000934475339, 30.227720304966756 ], [ -95.018101934446122, 30.227682304997767 ], [ -95.018240934478953, 30.227671304786721 ], [ -95.018399934818859, 30.227671304805853 ], [ -95.018519934002896, 30.227715304973174 ], [ -95.018836934227849, 30.227864304746358 ], [ -95.018943934202937, 30.227902304994121 ], [ -95.019083934354853, 30.227935304828627 ], [ -95.019146934071742, 30.227919305162967 ], [ -95.019203934995147, 30.227880304797253 ], [ -95.019235935075258, 30.227842304477807 ], [ -95.019241934439592, 30.22777630461913 ], [ -95.019216934300758, 30.227710304272204 ], [ -95.019178934242603, 30.227677305102834 ], [ -95.018981934395313, 30.227561304951127 ], [ -95.018948934477606, 30.227500304899145 ], [ -95.018937934685766, 30.227479304525506 ], [ -95.018918934352854, 30.227358304317605 ], [ -95.018943934729634, 30.227231304995939 ], [ -95.019020934902528, 30.2270393050377 ], [ -95.019267934565065, 30.226824304161262 ], [ -95.019298934718194, 30.226780304415758 ], [ -95.019324934229942, 30.226725304765338 ], [ -95.01936293405322, 30.226588304342098 ], [ -95.019482934375347, 30.226390304158418 ], [ -95.019482934805467, 30.226341304381549 ], [ -95.019552934313268, 30.22614330417419 ], [ -95.019583934135014, 30.226099304350385 ], [ -95.019615935001411, 30.226077304459665 ], [ -95.019508934935573, 30.225730304548819 ], [ -95.019400934287304, 30.22548330447713 ], [ -95.019368934766632, 30.225444304392131 ], [ -95.019343934937325, 30.225439303966013 ], [ -95.019109934474983, 30.225329304177357 ], [ -95.019020933885542, 30.225312304627938 ], [ -95.018919934224513, 30.225312304601808 ], [ -95.018856934372252, 30.225285303935667 ], [ -95.018767933983753, 30.225224303939097 ], [ -95.018710934673919, 30.225164304435229 ], [ -95.018672933853026, 30.225087303842191 ], [ -95.018653934456083, 30.225015304211919 ], [ -95.01867293460414, 30.22497130441678 ], [ -95.018710934324133, 30.224944303889803 ], [ -95.018786934637944, 30.224949304448945 ], [ -95.018982934569536, 30.224988303986819 ], [ -95.019027934189111, 30.224982303730091 ], [ -95.019065934823871, 30.224966304106633 ], [ -95.019109934101877, 30.224911304202919 ], [ -95.019134934413287, 30.224856303892789 ], [ -95.019134934740208, 30.224817304059098 ], [ -95.019109933982207, 30.224779304243043 ], [ -95.019046934094192, 30.224718304247428 ], [ -95.018881934020072, 30.224608304509001 ], [ -95.018761934412154, 30.224487303970555 ], [ -95.018647934042946, 30.224350304207398 ], [ -95.0186289347468, 30.224300303798238 ], [ -95.018634934186252, 30.224163303865303 ], [ -95.018660933765545, 30.224113303835672 ], [ -95.018755933832949, 30.224020304320913 ], [ -95.018881934567602, 30.223932304019652 ], [ -95.019021934435131, 30.223888303595178 ], [ -95.019166934614276, 30.223866303918758 ], [ -95.019394934827787, 30.223872303949562 ], [ -95.019451934270364, 30.22389430434664 ], [ -95.019648934328004, 30.224037303880326 ], [ -95.019724934799754, 30.224059303638413 ], [ -95.019799934013761, 30.224037304145615 ], [ -95.01986993467807, 30.223993303805592 ], [ -95.019907934933741, 30.223949304165625 ], [ -95.019933934332869, 30.22388330428614 ], [ -95.019933934793414, 30.223817303858294 ], [ -95.0199079345347, 30.223784303952712 ], [ -95.019876934983955, 30.223762304335736 ], [ -95.019736934058159, 30.223718304104452 ], [ -95.019686934939458, 30.223657304251184 ], [ -95.019679934563953, 30.223624303741268 ], [ -95.019705934566019, 30.223388304132154 ], [ -95.01973093464926, 30.223349304211499 ], [ -95.019793934805435, 30.223316303701679 ], [ -95.020262934963696, 30.223218303985004 ], [ -95.020306934147712, 30.223185303839337 ], [ -95.020414934131267, 30.222976303501628 ], [ -95.02043393412302, 30.222855303816914 ], [ -95.020414934801209, 30.222800304102456 ], [ -95.020382934271012, 30.222756303725344 ], [ -95.020218934354148, 30.222662303981853 ], [ -95.020104934398645, 30.222646303516218 ], [ -95.019768934166692, 30.222574303478815 ], [ -95.019699934818675, 30.222541303926278 ], [ -95.019591934019644, 30.222420304025828 ], [ -95.019484934291441, 30.222360303884503 ], [ -95.019427934705931, 30.222349303539833 ], [ -95.019186934521528, 30.222376303795649 ], [ -95.019129934567516, 30.222371303850917 ], [ -95.019066934489814, 30.222348303548991 ], [ -95.019009934572679, 30.222299303219245 ], [ -95.018971934561677, 30.222222303518855 ], [ -95.018983934013093, 30.222068303369955 ], [ -95.018578934100603, 30.222002303778059 ], [ -95.018338934310378, 30.221875303786604 ], [ -95.017989933799285, 30.221782303591826 ], [ -95.017787934432562, 30.221760303333383 ], [ -95.017730934413095, 30.221903303500113 ], [ -95.017685934342467, 30.221991303455546 ], [ -95.017571934007506, 30.222128303764002 ], [ -95.017521933997614, 30.222172303420535 ], [ -95.01746493418139, 30.222194303398304 ], [ -95.017394934180601, 30.222205304072865 ], [ -95.017299933343253, 30.222200303753137 ], [ -95.017249934243424, 30.222166303522361 ], [ -95.01719193379347, 30.222111303838659 ], [ -95.017109933593602, 30.222001303952478 ], [ -95.017059933398855, 30.221974303341234 ], [ -95.017008933442909, 30.221979304003309 ], [ -95.016957933844694, 30.22200130348569 ], [ -95.016919933812432, 30.222056303346601 ], [ -95.016900934074201, 30.222150303874542 ], [ -95.016894933827714, 30.222320303257661 ], [ -95.016869933440361, 30.222381303767701 ], [ -95.016818933620854, 30.222419303735652 ], [ -95.016793933344445, 30.222425303783638 ], [ -95.016755933230868, 30.222425304044666 ], [ -95.016698933303758, 30.222392304151281 ], [ -95.016615933573988, 30.222282303275978 ], [ -95.016565933618878, 30.222188303654931 ], [ -95.016527933222406, 30.222018303804223 ], [ -95.016495933575158, 30.221946303533105 ], [ -95.016394933353283, 30.221798303431552 ], [ -95.016248933059757, 30.2216443032518 ], [ -95.016166933011434, 30.221578303118111 ], [ -95.016001933798634, 30.22150130338915 ], [ -95.015932933124915, 30.22148430324917 ], [ -95.015698933444298, 30.221501303134922 ], [ -95.015609933187633, 30.2214953040037 ], [ -95.015546933397815, 30.221468303456518 ], [ -95.015476932779066, 30.221396303675782 ], [ -95.015413933333988, 30.221303303376668 ], [ -95.015375932812148, 30.221220303780449 ], [ -95.015273932962032, 30.221055303173678 ], [ -95.015166933139085, 30.2209073031405 ], [ -95.015141932693084, 30.2208523036157 ], [ -95.015134932723015, 30.220797303489455 ], [ -95.015160933414137, 30.220731303511215 ], [ -95.015381933057952, 30.220423302975053 ], [ -95.015413933581087, 30.220357303629022 ], [ -95.01539493309167, 30.220230303646439 ], [ -95.01536993296628, 30.220197303464349 ], [ -95.015318933600611, 30.220159303153643 ], [ -95.015280933250096, 30.220142303213244 ], [ -95.015217932692849, 30.220142303117029 ], [ -95.015109933099723, 30.220164303394107 ], [ -95.014995933345205, 30.220203303531335 ], [ -95.014894933175569, 30.220219303594405 ], [ -95.014837933141706, 30.220208303038667 ], [ -95.01477493331997, 30.22016430323221 ], [ -95.014704933297949, 30.22005430310503 ], [ -95.014647932878148, 30.219933303173836 ], [ -95.014622932792435, 30.219834303088657 ], [ -95.014628933219171, 30.21969730295265 ], [ -95.014647933442149, 30.219581303295499 ], [ -95.014666933125113, 30.219532303468895 ], [ -95.014736933235596, 30.219433303364447 ], [ -95.014882933377677, 30.219279303298986 ], [ -95.014901933532343, 30.219224302899004 ], [ -95.014926933231067, 30.219009302881133 ], [ -95.014945932966185, 30.218927302674938 ], [ -95.014977932699608, 30.218867303024219 ], [ -95.015021933423796, 30.218828303138736 ], [ -95.015078932787461, 30.218801302826517 ], [ -95.015167933290996, 30.218784302979262 ], [ -95.015464933622212, 30.218762302853925 ], [ -95.015540933664539, 30.218718302679832 ], [ -95.015585933577796, 30.218636302953485 ], [ -95.015616933309204, 30.218548302567019 ], [ -95.015616933054005, 30.218493302901205 ], [ -95.015585933119823, 30.218372302951291 ], [ -95.015553933555523, 30.218289303083427 ], [ -95.015503932912623, 30.218218303122324 ], [ -95.015332933236564, 30.218031303143544 ], [ -95.015028933506457, 30.217778303102754 ], [ -95.014541932487163, 30.217431302931121 ], [ -95.01435193311552, 30.217244303154285 ], [ -95.014262933133523, 30.216964302740926 ], [ -95.014237933141743, 30.216931302272506 ], [ -95.014180933050085, 30.216903302485861 ], [ -95.014136932851514, 30.21689830253386 ], [ -95.014091933108418, 30.216903302787454 ], [ -95.014028932435664, 30.216925302321513 ], [ -95.013984932266851, 30.216969302384033 ], [ -95.013946932812146, 30.21703030299469 ], [ -95.013908933048242, 30.217063302776356 ], [ -95.013756932494019, 30.216997303119321 ], [ -95.0137249324533, 30.216953302732584 ], [ -95.013699932383759, 30.21686530242982 ], [ -95.013699932827038, 30.216777302335903 ], [ -95.013730933127164, 30.21667830307576 ], [ -95.013781932700866, 30.216579303032997 ], [ -95.013997932739642, 30.216249302285348 ], [ -95.014073932846557, 30.21612230237541 ], [ -95.014117932359625, 30.216024302614937 ], [ -95.014123933082047, 30.215957302523186 ], [ -95.014117933151468, 30.215886302334464 ], [ -95.014041932252326, 30.215765302451725 ], [ -95.013997932961885, 30.21563330227066 ], [ -95.013991932177902, 30.215518302416015 ], [ -95.014010932329711, 30.215424302004781 ], [ -95.014231932253679, 30.215116302011165 ], [ -95.014301932685029, 30.214990302202395 ], [ -95.014371932935092, 30.214781302657279 ], [ -95.014383932345766, 30.214671301887144 ], [ -95.014365932873389, 30.214605302476691 ], [ -95.014282932536005, 30.214451302590685 ], [ -95.014194932501411, 30.214319301989704 ], [ -95.01412493309482, 30.214192302271695 ], [ -95.014086932401341, 30.214088301767362 ], [ -95.014074932091802, 30.214005302320309 ], [ -95.014111932346296, 30.213912302412517 ], [ -95.014238932288833, 30.213769301831359 ], [ -95.01421993223002, 30.213527302102296 ], [ -95.014169932945819, 30.213285302378235 ], [ -95.01405593270799, 30.212994301853403 ], [ -95.014156932546868, 30.212570301679847 ], [ -95.014176932664995, 30.212405301433371 ], [ -95.014157932956977, 30.21229530150185 ], [ -95.014119932882068, 30.212235301506915 ], [ -95.014068932489735, 30.212196302142672 ], [ -95.014005932181107, 30.212185302096799 ], [ -95.013884932465317, 30.212185301373609 ], [ -95.013922932879638, 30.211949302081191 ], [ -95.013923932265996, 30.211471301318277 ], [ -95.013912932804985, 30.211373301973904 ], [ -95.013904932640415, 30.211306301445106 ], [ -95.013879932454557, 30.210811301603659 ], [ -95.01391093279949, 30.210547301607296 ], [ -95.013898932453614, 30.210497301565489 ], [ -95.013860932642828, 30.210448301590773 ], [ -95.013771932232927, 30.210426301188523 ], [ -95.013695932042225, 30.210464301580252 ], [ -95.013562931825447, 30.210580301063693 ], [ -95.013511932631417, 30.210596301341887 ], [ -95.013474932390451, 30.21059130169704 ], [ -95.013442932238632, 30.210569301370153 ], [ -95.013423931962834, 30.210497301247816 ], [ -95.013474932130137, 30.210118301264544 ], [ -95.013480932232781, 30.209980301387471 ], [ -95.013423931987575, 30.20960630105662 ], [ -95.013423932370415, 30.209535301426328 ], [ -95.013620932612113, 30.209348301501706 ], [ -95.013696932094163, 30.209243300976876 ], [ -95.013734932304288, 30.20916630150159 ], [ -95.013740932174613, 30.20907830098642 ], [ -95.013728932168064, 30.208804300871581 ], [ -95.013633932336262, 30.208474301272474 ], [ -95.013606931937161, 30.208400301361035 ], [ -95.013532931843656, 30.208199300661086 ], [ -95.013367931966741, 30.207847300470686 ], [ -95.013253931934699, 30.20767630103737 ], [ -95.013133932332195, 30.207539300392931 ], [ -95.013006932071448, 30.207440300858451 ], [ -95.01292493249403, 30.207418300462436 ], [ -95.012823932402441, 30.207407300567926 ], [ -95.012753932371211, 30.207412300732042 ], [ -95.012557931974257, 30.207538300568309 ], [ -95.012462931421268, 30.207533300913546 ], [ -95.012373931756741, 30.207511300400505 ], [ -95.012323932332023, 30.20748330115309 ], [ -95.012253931623988, 30.20742330099527 ], [ -95.012032931641755, 30.207159301058809 ], [ -95.011975931364589, 30.207126300450181 ], [ -95.01158293116886, 30.207021300664493 ], [ -95.011513931125535, 30.206972301035076 ], [ -95.011114931305272, 30.206598300450963 ], [ -95.01103893165525, 30.206488301017309 ], [ -95.010943931757211, 30.206191300330765 ], [ -95.010950931434408, 30.206108301006061 ], [ -95.01096993129056, 30.206048300363523 ], [ -95.011178931364697, 30.205641300109068 ], [ -95.011203931829712, 30.20561930049865 ], [ -95.011247930979053, 30.205608300870107 ], [ -95.011342932005007, 30.205619300243555 ], [ -95.011570931636228, 30.20571330090814 ], [ -95.011602931500093, 30.205713300502563 ], [ -95.011640931185056, 30.205696300188677 ], [ -95.011703931947565, 30.205636300815563 ], [ -95.0117479318872, 30.205570300127278 ], [ -95.011786931443339, 30.205476300128598 ], [ -95.011811931703519, 30.205366300728723 ], [ -95.011817931175869, 30.205245300450823 ], [ -95.011792931432041, 30.205064299959258 ], [ -95.011748931811496, 30.20500330073838 ], [ -95.011495931307167, 30.204827300478183 ], [ -95.011457931843651, 30.204789300713706 ], [ -95.011431931658691, 30.204745300300111 ], [ -95.011425931357266, 30.204690300257287 ], [ -95.011349931513678, 30.204459300583348 ], [ -95.011242931673621, 30.204310300126597 ], [ -95.011229931809751, 30.20426129992013 ], [ -95.011216931632248, 30.204090300191375 ], [ -95.011172931793766, 30.204019299731936 ], [ -95.010938930928958, 30.203793300328833 ], [ -95.010900931396876, 30.203716300088136 ], [ -95.010887931429266, 30.203645300337058 ], [ -95.010894931012217, 30.203562300025492 ], [ -95.010926931652833, 30.20345229966399 ], [ -95.010976930946924, 30.203359300087488 ], [ -95.011154931826781, 30.203166300329269 ], [ -95.011337931855778, 30.202925300174631 ], [ -95.011502931471895, 30.202787300169931 ], [ -95.011559931237429, 30.202716299721949 ], [ -95.011591931347709, 30.202633300074471 ], [ -95.011603931492587, 30.202534300069111 ], [ -95.011584931917611, 30.202457299784847 ], [ -95.011559930878022, 30.202413300061796 ], [ -95.011521931514338, 30.202386299551183 ], [ -95.011363931399487, 30.202320299723741 ], [ -95.011325930845487, 30.202292299921211 ], [ -95.011281930868947, 30.202232299620412 ], [ -95.011255931020315, 30.202111299507891 ], [ -95.011230931258467, 30.202072299348092 ], [ -95.011091931161303, 30.201973299326347 ], [ -95.011059931743375, 30.201924300078577 ], [ -95.010977930754535, 30.201709299601774 ], [ -95.010933931395684, 30.201660299382446 ], [ -95.010787931214679, 30.201550299828682 ], [ -95.010743930792103, 30.201495299805433 ], [ -95.01062993126645, 30.201192299390023 ], [ -95.010585931084464, 30.201137299307025 ], [ -95.010534931553664, 30.201099299247129 ], [ -95.010085930940775, 30.200906299564803 ], [ -95.010021931175046, 30.20090129995269 ], [ -95.009730930570072, 30.200961299666098 ], [ -95.009591930426978, 30.200928299236732 ], [ -95.009490930762738, 30.200862299168019 ], [ -95.009414930915469, 30.200796299224862 ], [ -95.009376930501901, 30.200686299526524 ], [ -95.009389931209085, 30.200620299203614 ], [ -95.00950993092124, 30.20042229974333 ], [ -95.009560930841133, 30.200384299734292 ], [ -95.009693931007519, 30.200345299156073 ], [ -95.009832930989518, 30.200279299380174 ], [ -95.009914930946195, 30.200175299056841 ], [ -95.009965930559801, 30.200153299612573 ], [ -95.010041930872902, 30.20015329979778 ], [ -95.010085931168618, 30.200175299462757 ], [ -95.010294930727909, 30.200323299314434 ], [ -95.010408931066138, 30.200384299154223 ], [ -95.010465931020519, 30.200395299309726 ], [ -95.010509931136383, 30.200384299089173 ], [ -95.010547930933555, 30.200356299793459 ], [ -95.010566931229647, 30.200318299526391 ], [ -95.010573930644753, 30.200203299476442 ], [ -95.010554931073358, 30.200120299230136 ], [ -95.010522931114878, 30.200038299135137 ], [ -95.01046593128028, 30.199933299385567 ], [ -95.01042793058366, 30.19988329973701 ], [ -95.010320930497016, 30.199812299683643 ], [ -95.010085930588204, 30.199790299129642 ], [ -95.009997930358963, 30.199762299601279 ], [ -95.009876931347335, 30.199658299615361 ], [ -95.009725930684056, 30.199564299205541 ], [ -95.009693930544472, 30.199520299127606 ], [ -95.009687930479402, 30.199476299076519 ], [ -95.009699931094957, 30.199388299300082 ], [ -95.009775931219664, 30.199212298843403 ], [ -95.009782930496897, 30.199146299242098 ], [ -95.009744931180308, 30.198965299567238 ], [ -95.00978293064712, 30.19889929929624 ], [ -95.00982693124412, 30.198872299493893 ], [ -95.009902930502875, 30.198850299312635 ], [ -95.010079930327791, 30.198828299407381 ], [ -95.010168930993359, 30.198806299099697 ], [ -95.010245930844079, 30.198779298996566 ], [ -95.010358930712982, 30.198740298821765 ], [ -95.010415930534919, 30.198729299492253 ], [ -95.010491930820592, 30.198729299454264 ], [ -95.010624930689275, 30.198784299459305 ], [ -95.010839931083169, 30.198993299468945 ], [ -95.010890931436691, 30.199009299064603 ], [ -95.010928931168039, 30.199004299295243 ], [ -95.010972931306071, 30.198971299405535 ], [ -95.010997931080993, 30.198938298679277 ], [ -95.011035931569353, 30.198790298784402 ], [ -95.011023931356974, 30.198636299298617 ], [ -95.010985930727628, 30.198443298732521 ], [ -95.01082793099576, 30.198163298697143 ], [ -95.010801931225771, 30.19809129874319 ], [ -95.010802931505239, 30.19791529866302 ], [ -95.010770931099273, 30.197849299258348 ], [ -95.010624931021468, 30.197701298907706 ], [ -95.010599931444673, 30.197646298691332 ], [ -95.010593930694085, 30.19756929886298 ], [ -95.010599930593671, 30.197497298740466 ], [ -95.010637930630608, 30.197393298854099 ], [ -95.010758931382668, 30.197156298598525 ], [ -95.010777930638341, 30.197024298520976 ], [ -95.010770931223547, 30.196865298569481 ], [ -95.010726930584894, 30.196727298862108 ], [ -95.010650931180933, 30.196595298977865 ], [ -95.010581930826604, 30.196507298924669 ], [ -95.010460931086243, 30.196414298531987 ], [ -95.010233930947692, 30.19630929819785 ], [ -95.010169930614055, 30.196260298518702 ], [ -95.010106930637022, 30.19617229826277 ], [ -95.010100930784787, 30.196023298164704 ], [ -95.010112930748306, 30.1959412988484 ], [ -95.010189931188251, 30.195759298155931 ], [ -95.010220931173862, 30.195721298901237 ], [ -95.010252930453333, 30.195655298388569 ], [ -95.010189930586066, 30.195545298575794 ], [ -95.010144930772142, 30.195418298060385 ], [ -95.010125930275223, 30.195303298723491 ], [ -95.010144930338896, 30.195215298689188 ], [ -95.010195930770635, 30.195078298127857 ], [ -95.010195930342192, 30.195039298586146 ], [ -95.010170930654851, 30.19497929858397 ], [ -95.010126930221048, 30.194929298632996 ], [ -95.010081930442382, 30.194896298782446 ], [ -95.010043931151074, 30.194885298435103 ], [ -95.009904930340113, 30.194924298234998 ], [ -95.009714930119699, 30.195033298612167 ], [ -95.009657930285073, 30.195039297985755 ], [ -95.009588930825046, 30.195022298391677 ], [ -95.009499930246832, 30.194973298104834 ], [ -95.009385930350319, 30.194896298219952 ], [ -95.009271930547584, 30.194802298270684 ], [ -95.009233930465371, 30.194753298226562 ], [ -95.009157930359137, 30.194549297894572 ], [ -95.009113930779151, 30.194461298162096 ], [ -95.008942930820183, 30.194197298492025 ], [ -95.008942930127176, 30.194137298526972 ], [ -95.008974930828359, 30.194060298061174 ], [ -95.009018930593243, 30.194005298283887 ], [ -95.009120930236023, 30.193944298351965 ], [ -95.009215930774985, 30.193873298254996 ], [ -95.009227930146224, 30.193813298503365 ], [ -95.00922193041113, 30.193779298463102 ], [ -95.009202930016158, 30.193746298423243 ], [ -95.009139930382304, 30.193686297781099 ], [ -95.009063930813412, 30.193653298028192 ], [ -95.008740930295062, 30.1935482983633 ], [ -95.008664930007214, 30.193504298105641 ], [ -95.00860793028545, 30.19345529847724 ], [ -95.008569929931639, 30.193400298459721 ], [ -95.008506930445492, 30.193257297821919 ], [ -95.008398930430261, 30.193196297880327 ], [ -95.007911930473895, 30.193009298209532 ], [ -95.007803930051935, 30.193020298107491 ], [ -95.007626929893902, 30.193136298349629 ], [ -95.007493930257425, 30.19315229795243 ], [ -95.00745592996121, 30.193136298088238 ], [ -95.007417929732611, 30.193108297854362 ], [ -95.007386930336295, 30.193047297841272 ], [ -95.007373929776961, 30.192987298463844 ], [ -95.007379930009975, 30.192948298164275 ], [ -95.007455930173037, 30.192844298035503 ], [ -95.007468929440179, 30.192811298402962 ], [ -95.007449929766807, 30.19272929835267 ], [ -95.007418929860933, 30.192652297534842 ], [ -95.007386929536182, 30.192613298112729 ], [ -95.007329929431634, 30.192586298396758 ], [ -95.007285929488518, 30.192580297540257 ], [ -95.007139930326474, 30.192618297936221 ], [ -95.006987929380358, 30.192618298415727 ], [ -95.006911930205931, 30.192629298437449 ], [ -95.006778930201932, 30.192684297819248 ], [ -95.006645929339484, 30.19269029818857 ], [ -95.006588929683062, 30.192684297680035 ], [ -95.00655092976578, 30.192662297827479 ], [ -95.006398929475509, 30.19253029814324 ], [ -95.006323929129906, 30.192497297544083 ], [ -95.006139929039264, 30.192481298025758 ], [ -95.00609592950525, 30.192464298331611 ], [ -95.00594392962455, 30.19234929810559 ], [ -95.005747929927097, 30.192266297653077 ], [ -95.005715929216905, 30.192233297527594 ], [ -95.005709929338678, 30.192156298118032 ], [ -95.005715929330663, 30.192030297642308 ], [ -95.005690929664837, 30.191887297743278 ], [ -95.005620929181106, 30.191815297459335 ], [ -95.005538929115787, 30.191766298140529 ], [ -95.005475928890846, 30.191749297483977 ], [ -95.005285929451361, 30.191787297725455 ], [ -95.005120929265743, 30.191859297862045 ], [ -95.005044928788365, 30.19185929832042 ], [ -95.004842928650746, 30.191787298248197 ], [ -95.004778929120647, 30.191793298028724 ], [ -95.004513928739698, 30.19184829825296 ], [ -95.004392929557866, 30.191815298316087 ], [ -95.004285928629386, 30.191760298144871 ], [ -95.004253928553482, 30.191727297664979 ], [ -95.004165929242973, 30.191584297966159 ], [ -95.004120929403626, 30.191496298219281 ], [ -95.004095928906807, 30.19141329799578 ], [ -95.004025929042086, 30.191320298207238 ], [ -95.004000929130228, 30.191309297555815 ], [ -95.003658928986113, 30.191248298029286 ], [ -95.003639928587674, 30.191143297509672 ], [ -95.003652929096233, 30.19108829767584 ], [ -95.00368492841109, 30.191001298068997 ], [ -95.003811928667503, 30.190753297825619 ], [ -95.003830928402039, 30.190682297486369 ], [ -95.003830928950748, 30.190632297552142 ], [ -95.003792928984069, 30.190561297917924 ], [ -95.003754929199275, 30.190522298101381 ], [ -95.003647928636127, 30.190449297224824 ], [ -95.00360892901233, 30.190423297952037 ], [ -95.003273928590701, 30.190351297313786 ], [ -95.003001928326569, 30.190368297348463 ], [ -95.002937928415889, 30.190357298002194 ], [ -95.002887928511427, 30.190329297416977 ], [ -95.002842928226656, 30.190291298010369 ], [ -95.002710928314514, 30.19010929755029 ], [ -95.002659928073896, 30.19006529792652 ], [ -95.002608928952696, 30.190038297441621 ], [ -95.002564928624196, 30.190027298054115 ], [ -95.002507928556241, 30.190021297552601 ], [ -95.002311927916452, 30.19007129801869 ], [ -95.002247928560038, 30.190071297734871 ], [ -95.002051927937714, 30.190043297521754 ], [ -95.001836928619525, 30.190087297276058 ], [ -95.001741928570993, 30.190087297297264 ], [ -95.001665927886975, 30.190065297935355 ], [ -95.001621928308339, 30.190032297683658 ], [ -95.001558928641501, 30.189922297714251 ], [ -95.001513927790924, 30.189817297782593 ], [ -95.001488928018446, 30.18971829793691 ], [ -95.001482928414376, 30.189641297264949 ], [ -95.001488928275592, 30.189515297594166 ], [ -95.001526928497739, 30.189383297617194 ], [ -95.001837928057597, 30.18891029778398 ], [ -95.001887928315725, 30.18875129745442 ], [ -95.001913928421445, 30.188613297612751 ], [ -95.001945928260881, 30.188542297357049 ], [ -95.002014927927476, 30.188421296912395 ], [ -95.002211927987375, 30.188124297045434 ], [ -95.002230928348354, 30.188053296854957 ], [ -95.002230928337895, 30.187948297155337 ], [ -95.002211928109844, 30.187871297479507 ], [ -95.002179928074881, 30.18780529731529 ], [ -95.001983928771409, 30.187563297006893 ], [ -95.001907928224838, 30.187508296813139 ], [ -95.001749928282777, 30.187436297312985 ], [ -95.001464928331202, 30.187343297436609 ], [ -95.001230928025237, 30.187255297460077 ], [ -95.001127928399939, 30.187180297460309 ], [ -95.001116927587191, 30.18717229733458 ], [ -95.000813927440021, 30.186864297166967 ], [ -95.000566928356747, 30.186650296580574 ], [ -95.000541927569699, 30.18660629698163 ], [ -95.000528927521771, 30.186534297139765 ], [ -95.000541927762427, 30.186435297133542 ], [ -95.000566927903634, 30.186331296679768 ], [ -95.000712928262615, 30.185935296619007 ], [ -95.000718927935281, 30.185660296580231 ], [ -95.000699927638379, 30.185407297002261 ], [ -95.000649927322954, 30.185225296466783 ], [ -95.00057992776614, 30.185104296757974 ], [ -95.000497927417683, 30.18501729700904 ], [ -95.000466927951109, 30.184665296177766 ], [ -95.000523927226382, 30.184225296927732 ], [ -95.000314927250614, 30.183834296731472 ], [ -95.000201928060434, 30.183565296518168 ], [ -95.00028392748456, 30.183240296678349 ], [ -95.000011927240607, 30.183004296250637 ], [ -94.999799927861332, 30.18277529608492 ], [ -94.999717927288529, 30.182703296469757 ], [ -94.999653927470376, 30.182549296530482 ], [ -94.999552927692221, 30.182049296010259 ], [ -94.999590927525944, 30.181692296196822 ], [ -94.999589927413965, 30.181461295582 ], [ -94.999513927716336, 30.181296295825621 ], [ -94.999444927662225, 30.18112029617123 ], [ -94.999190927129376, 30.180741295466301 ], [ -94.999051926902226, 30.180488296033488 ], [ -94.998842927090379, 30.180114295385749 ], [ -94.99867792713313, 30.179872295329705 ], [ -94.998639926784108, 30.179768295364923 ], [ -94.998601926623792, 30.179603295692459 ], [ -94.99865192743512, 30.179482295756294 ], [ -94.998658927370883, 30.179366295783364 ], [ -94.998639926507906, 30.17931729565532 ], [ -94.998499927166236, 30.179091295842785 ], [ -94.998271926501005, 30.178877295906002 ], [ -94.998075926743823, 30.178652295570753 ], [ -94.997910926680078, 30.178531295467224 ], [ -94.997834926634724, 30.178503295598691 ], [ -94.99779692716919, 30.178503295456363 ], [ -94.997689926372715, 30.178608295745903 ], [ -94.997689926298861, 30.178663295698946 ], [ -94.997790927070625, 30.178982295255015 ], [ -94.997809927229085, 30.179097295796161 ], [ -94.997784926753269, 30.179141295557141 ], [ -94.997746927044957, 30.17916929588014 ], [ -94.997588926639651, 30.179202295499557 ], [ -94.997525926801501, 30.179196295638345 ], [ -94.997233926675122, 30.179125295700729 ], [ -94.997202927021107, 30.179092295868042 ], [ -94.997170926089709, 30.178987295939265 ], [ -94.997170926281697, 30.178839295304687 ], [ -94.997208926622463, 30.178685295215978 ], [ -94.997176926689477, 30.178608295787843 ], [ -94.99714492676722, 30.178575295057584 ], [ -94.997050926785064, 30.178581295708089 ], [ -94.996993926956691, 30.178619295873506 ], [ -94.996929926494786, 30.178636295659668 ], [ -94.996796925977591, 30.178619295821466 ], [ -94.99629092618855, 30.178427295519832 ], [ -94.996277926303776, 30.178411295008058 ], [ -94.99625892638619, 30.178339295488062 ], [ -94.9963289259898, 30.178108295640779 ], [ -94.996309926836062, 30.17804829571249 ], [ -94.996264926391163, 30.178015295151834 ], [ -94.996131926499714, 30.177976295728595 ], [ -94.99610092624664, 30.177938295013615 ], [ -94.996049926493029, 30.177839295122023 ], [ -94.995992926625718, 30.177822295775016 ], [ -94.995853926480791, 30.177822295300302 ], [ -94.995606926258546, 30.177745295071713 ], [ -94.995549926425213, 30.17774629579953 ], [ -94.995391926279837, 30.177636295315605 ], [ -94.995359926371847, 30.177526295181465 ], [ -94.995435925985447, 30.177432295070819 ], [ -94.995498925674369, 30.17730029538972 ], [ -94.995523925893536, 30.17720129507218 ], [ -94.995504925874016, 30.177152295328881 ], [ -94.995460925840092, 30.177086295160915 ], [ -94.995409926172073, 30.177069295399512 ], [ -94.995352926516574, 30.177025295358352 ], [ -94.995295925790913, 30.176959295426975 ], [ -94.995156926308852, 30.176844295374565 ], [ -94.995061926377019, 30.176723295285196 ], [ -94.995023926470594, 30.176657294818334 ], [ -94.99497992637987, 30.176514295481493 ], [ -94.995004926285617, 30.176228295218372 ], [ -94.994997925604565, 30.176063295186527 ], [ -94.995086926298697, 30.17560729452039 ], [ -94.9950799255368, 30.175293295194862 ], [ -94.995028925740982, 30.175123294607722 ], [ -94.995041925848625, 30.174919294970572 ], [ -94.994864925840702, 30.174820294386357 ], [ -94.994712925419307, 30.174760294902388 ], [ -94.994615925785979, 30.174657294662154 ], [ -94.994535925302046, 30.174573294425876 ], [ -94.994313926022713, 30.174518294509269 ], [ -94.994288925532686, 30.174496295035748 ], [ -94.994256925267322, 30.174452294910115 ], [ -94.994237925843265, 30.174364294874515 ], [ -94.994205925911089, 30.174067294952753 ], [ -94.994161925434796, 30.173935294600124 ], [ -94.993958925876996, 30.173694294521983 ], [ -94.993692925168915, 30.173573294411231 ], [ -94.993059925772215, 30.173326294509543 ], [ -94.992933925432865, 30.173238294834725 ], [ -94.992888925617024, 30.173188294612988 ], [ -94.992863925503954, 30.173117294502351 ], [ -94.992875924991296, 30.173023294189832 ], [ -94.992863925240712, 30.172836294792102 ], [ -94.992723924746997, 30.172166293937622 ], [ -94.992736925113931, 30.171968293965083 ], [ -94.992710925311542, 30.171869294090158 ], [ -94.992641925573281, 30.171775294028695 ], [ -94.992622925594603, 30.171715294202858 ], [ -94.992653925326167, 30.17164929441579 ], [ -94.992723924855625, 30.171599294573706 ], [ -94.992761925321616, 30.171533293856339 ], [ -94.992767925462687, 30.171484294353832 ], [ -94.992754925090438, 30.171434293884897 ], [ -94.992697925385826, 30.171385294603972 ], [ -94.992678925099213, 30.171352294355497 ], [ -94.992134925102704, 30.171159293687047 ], [ -94.992077924810687, 30.171000293675249 ], [ -94.992020924532667, 30.1707202936751 ], [ -94.991950924771146, 30.170511293922925 ], [ -94.991931924890565, 30.17047829355727 ], [ -94.991760924397965, 30.17038429440516 ], [ -94.991748924333095, 30.170681293626327 ], [ -94.991729925215935, 30.170764294429173 ], [ -94.991697924902837, 30.170841294421869 ], [ -94.991571924524024, 30.171039293896897 ], [ -94.991558925021224, 30.171083294563957 ], [ -94.991564924831451, 30.171116294001827 ], [ -94.991615924652649, 30.171176294168362 ], [ -94.991811925250033, 30.171341293838466 ], [ -94.991849924435186, 30.171418294053179 ], [ -94.991837924855062, 30.17149029445223 ], [ -94.991754924695258, 30.171600294582966 ], [ -94.991710924380271, 30.171677294515014 ], [ -94.99169892518934, 30.171781294192439 ], [ -94.991717924797101, 30.171919294374486 ], [ -94.991812924791972, 30.172237294472154 ], [ -94.99179992529038, 30.17234729483161 ], [ -94.99178092447417, 30.172402294034512 ], [ -94.991673925230728, 30.172540294650936 ], [ -94.991467924943279, 30.172719294076789 ], [ -94.991344925060247, 30.172826294272372 ], [ -94.990996925167408, 30.173101294358748 ], [ -94.990458925064431, 30.173464294454568 ], [ -94.990306924188005, 30.173591294788242 ], [ -94.990186924325727, 30.173723295149248 ], [ -94.989933924074663, 30.174080294587238 ], [ -94.989838924553055, 30.174278294737899 ], [ -94.989769924741495, 30.174460295184172 ], [ -94.989731924034757, 30.174603295125966 ], [ -94.98972592424272, 30.174669294691565 ], [ -94.989731924440846, 30.17475729525993 ], [ -94.989788924042927, 30.174971295310716 ], [ -94.989947924435043, 30.175417295435963 ], [ -94.989978924677416, 30.175554294899207 ], [ -94.989991925107049, 30.175702295363859 ], [ -94.989941924720469, 30.175994295469017 ], [ -94.989751925014559, 30.176093294926545 ], [ -94.989624924865367, 30.176148295518576 ], [ -94.989536924994098, 30.176170295573947 ], [ -94.989352924992303, 30.176165295003564 ], [ -94.98923892466982, 30.176176294837049 ], [ -94.98907492398871, 30.176115294920788 ], [ -94.988941924699191, 30.176093295641 ], [ -94.988707924367276, 30.176121295080144 ], [ -94.988624923777579, 30.176121295668349 ], [ -94.98854292395535, 30.176104295154882 ], [ -94.988339924202762, 30.17601129496687 ], [ -94.988194924286361, 30.175967295602458 ], [ -94.988149924374881, 30.175923295426202 ], [ -94.988118924344505, 30.175841295671589 ], [ -94.98807392428975, 30.175555294863173 ], [ -94.988035924180849, 30.175483295139184 ], [ -94.987985924132587, 30.175450295133533 ], [ -94.987807923914602, 30.175401295504962 ], [ -94.987744924383534, 30.175412294794839 ], [ -94.987687924222399, 30.175472295517405 ], [ -94.987554923812468, 30.175742295031956 ], [ -94.987498924275855, 30.175824295620263 ], [ -94.987447923966357, 30.17586329486258 ], [ -94.98738492391513, 30.175879295469862 ], [ -94.987308923747477, 30.175874294906343 ], [ -94.987042923542148, 30.175825295647989 ], [ -94.986776923752672, 30.175803295454852 ], [ -94.986649924183354, 30.17580329490989 ], [ -94.986510923260298, 30.175803295513319 ], [ -94.986434923436775, 30.175819295147186 ], [ -94.986384923353455, 30.175852295141866 ], [ -94.98618892314451, 30.1760722956185 ], [ -94.985846923425129, 30.175853294869086 ], [ -94.985624923595893, 30.175677295088217 ], [ -94.985346923375317, 30.175693295072477 ], [ -94.985225923012521, 30.175831295422419 ], [ -94.985226923063195, 30.175968295508614 ], [ -94.985207923652439, 30.176034295177374 ], [ -94.985156923091523, 30.176078295066805 ], [ -94.985067923432794, 30.176045295577211 ], [ -94.984871923418822, 30.175858295482048 ], [ -94.984820923075901, 30.175837295646051 ], [ -94.984726923155591, 30.175870295371528 ], [ -94.984656923757754, 30.17586429534359 ], [ -94.984605923672731, 30.175820295402449 ], [ -94.984567922754707, 30.175824295539112 ], [ -94.984498923139185, 30.175831295219947 ], [ -94.984390923013009, 30.175991295500786 ], [ -94.984137922957743, 30.176073295087924 ], [ -94.983878922895371, 30.176002295469534 ], [ -94.983618922878378, 30.175848295304146 ], [ -94.983187922494182, 30.175485295407569 ], [ -94.982953922870834, 30.175348294913931 ], [ -94.982827923118236, 30.175045295117854 ], [ -94.982953923085006, 30.174787295383179 ], [ -94.982940922511133, 30.174655294887643 ], [ -94.982725922533646, 30.174199294736017 ], [ -94.982794922604725, 30.174072295108797 ], [ -94.98297292261941, 30.173957295345129 ], [ -94.983079922816827, 30.173836295278374 ], [ -94.983092923054116, 30.173720294840525 ], [ -94.982965923147717, 30.17362729487829 ], [ -94.982395922338853, 30.17352229524445 ], [ -94.982188922636155, 30.173473294896187 ], [ -94.982092922257777, 30.173451294997236 ], [ -94.981674922235911, 30.173286294518839 ], [ -94.981452921942804, 30.173165294837606 ], [ -94.981389922391372, 30.173050294837832 ], [ -94.981376922651776, 30.172934295091611 ], [ -94.981490922061028, 30.172709294977292 ], [ -94.981154922198286, 30.172440294722978 ], [ -94.980996922268332, 30.172423294922154 ], [ -94.980889921701262, 30.172434294497773 ], [ -94.980787922405, 30.172352294879637 ], [ -94.980787921634402, 30.172225294755876 ], [ -94.98083292193968, 30.172077295018862 ], [ -94.980806921670023, 30.171950294496853 ], [ -94.980730922345529, 30.171857294766042 ], [ -94.980414921854546, 30.171731294412599 ], [ -94.980306922135668, 30.171703295006232 ], [ -94.980205922379895, 30.171621294961692 ], [ -94.980116921812836, 30.171494294909639 ], [ -94.980053921801613, 30.171357294135618 ], [ -94.979869921304442, 30.17124729454202 ], [ -94.979635921464578, 30.171197294651851 ], [ -94.97942092169869, 30.171252294581059 ], [ -94.979217921628702, 30.171373294383709 ], [ -94.979059921747989, 30.171373294326514 ], [ -94.978603921071297, 30.171264295009117 ], [ -94.977989921763211, 30.170851294258785 ], [ -94.977888921141684, 30.170841294883058 ], [ -94.977831921135476, 30.1707692943544 ], [ -94.977787921337409, 30.170483294115225 ], [ -94.977616921032833, 30.170412294790609 ], [ -94.977445921198338, 30.170406294247002 ], [ -94.977299920621505, 30.170461294753142 ], [ -94.977059921431135, 30.170571294936583 ], [ -94.976793921010767, 30.170582294796599 ], [ -94.97662992077035, 30.170489294099891 ], [ -94.976546921173451, 30.170374294579421 ], [ -94.976420921180022, 30.170335294805824 ], [ -94.976243920737971, 30.1704232946073 ], [ -94.97612292060731, 30.170528294911502 ], [ -94.975869920569579, 30.170544294234425 ], [ -94.975717920806801, 30.170473294795958 ], [ -94.975673920539634, 30.17031329481134 ], [ -94.975616920234501, 30.170016294244544 ], [ -94.975420920681458, 30.169764294469239 ], [ -94.975141920763235, 30.169791294088608 ], [ -94.975040920518694, 30.16973129444958 ], [ -94.974723920640756, 30.169637294020159 ], [ -94.974603920101558, 30.169566294684728 ], [ -94.974420920363471, 30.169417294315952 ], [ -94.974356919885182, 30.169324294027071 ], [ -94.974318920344828, 30.169198293998978 ], [ -94.974293920632334, 30.169033294432236 ], [ -94.974318920575271, 30.168796294359304 ], [ -94.974369920134578, 30.168505294589963 ], [ -94.974356920550761, 30.168450294107998 ], [ -94.974356920653349, 30.168389294604626 ], [ -94.974368919976044, 30.168296294484339 ], [ -94.974368919989189, 30.168142294165044 ], [ -94.974337920398696, 30.168043293873414 ], [ -94.974115919713995, 30.16804329367487 ], [ -94.974027920414045, 30.167977294204153 ], [ -94.973558920077636, 30.167939294103682 ], [ -94.973457920424039, 30.167911294476436 ], [ -94.973299919759242, 30.167884294010836 ], [ -94.973166920199731, 30.167746293845624 ], [ -94.973039919471105, 30.167686294241431 ], [ -94.972875920268365, 30.167554293669859 ], [ -94.972780920140593, 30.16752129374019 ], [ -94.972710919666397, 30.167521294328207 ], [ -94.972451919992849, 30.167614294066297 ], [ -94.972261919868671, 30.167702293992107 ], [ -94.972217919927033, 30.167713294202724 ], [ -94.972118919426023, 30.167709294141861 ], [ -94.972077919626486, 30.167708294153812 ], [ -94.97179391903677, 30.167609294415165 ], [ -94.97173691919329, 30.167598294217381 ], [ -94.971628920026575, 30.167620293925594 ], [ -94.97155291946703, 30.167653294441884 ], [ -94.971476919007074, 30.167708294085777 ], [ -94.971463919531757, 30.167763294507871 ], [ -94.971407919169977, 30.16779629445065 ], [ -94.971261919847052, 30.167840294321241 ], [ -94.971191919182218, 30.1678902941138 ], [ -94.971033919280103, 30.167939294270184 ], [ -94.970957919325585, 30.167950294407234 ], [ -94.970843919289493, 30.16794529452233 ], [ -94.970717919094156, 30.167906294625645 ], [ -94.970679919155899, 30.167906293916595 ], [ -94.970616918839937, 30.167923293998388 ], [ -94.970552919275747, 30.167961293857836 ], [ -94.970514919006803, 30.168000294411737 ], [ -94.970350918986298, 30.168286293864732 ], [ -94.970274919430679, 30.168511294486816 ], [ -94.970186918813098, 30.169171294643096 ], [ -94.970110919308723, 30.169243294805941 ], [ -94.970021919124761, 30.169292294366326 ], [ -94.969926918691172, 30.169314294876237 ], [ -94.969844919558341, 30.169298294548032 ], [ -94.969629918643108, 30.169303294241985 ], [ -94.969528918993973, 30.169314294804874 ], [ -94.969369919402695, 30.169375294423734 ], [ -94.969268919267762, 30.16947429414861 ], [ -94.969230919275319, 30.169567294849095 ], [ -94.969243918576495, 30.169727294667787 ], [ -94.969205919246107, 30.170018295047775 ], [ -94.969148919454355, 30.170117295016134 ], [ -94.969091918698723, 30.170180294911138 ], [ -94.969053918513552, 30.170222294536647 ], [ -94.968927919384015, 30.170436295166034 ], [ -94.968895919152317, 30.170524294355562 ], [ -94.968889919074641, 30.170612294453349 ], [ -94.968895919434004, 30.170761295291843 ], [ -94.968927919095407, 30.170970294613234 ], [ -94.968927918822942, 30.1710412944986 ], [ -94.968921919176736, 30.171102294811899 ], [ -94.968889918698437, 30.171195294603105 ], [ -94.968611919398654, 30.171481294604103 ], [ -94.968535919080551, 30.171597294880289 ], [ -94.968471918480148, 30.171630294932754 ], [ -94.968415918587326, 30.171646295162521 ], [ -94.968351918502805, 30.171652295395941 ], [ -94.968275918654072, 30.171624294615878 ], [ -94.968231918727525, 30.171591295265255 ], [ -94.968180918628647, 30.171536294585948 ], [ -94.968142919087313, 30.171470294848536 ], [ -94.968123919250246, 30.171399295160452 ], [ -94.968085918307537, 30.171316295026141 ], [ -94.96805491886505, 30.171168295224192 ], [ -94.967990918888759, 30.171008295147505 ], [ -94.967902918861242, 30.170937294668516 ], [ -94.967737919002289, 30.170849295119304 ], [ -94.967655918184661, 30.170827294492632 ], [ -94.967459918552223, 30.170827294602937 ], [ -94.967395918524034, 30.170844294856835 ], [ -94.967149918480004, 30.170998294754391 ], [ -94.966990918474821, 30.171047294629535 ], [ -94.966782918861071, 30.171091295261824 ], [ -94.966402918370363, 30.171135295098285 ], [ -94.966351918222188, 30.171174294722377 ], [ -94.966326917864635, 30.171273295178942 ], [ -94.966199918557223, 30.171372294903268 ], [ -94.966105918090463, 30.171476295205405 ], [ -94.966098918269438, 30.171520294892989 ], [ -94.966111918120149, 30.171592294769255 ], [ -94.966155917858885, 30.171636295313345 ], [ -94.966263918061685, 30.171669295104703 ], [ -94.966326918422823, 30.171674295257954 ], [ -94.966389918601124, 30.171702295568423 ], [ -94.966415918178527, 30.171724295198651 ], [ -94.966427918636128, 30.171757295356798 ], [ -94.966427918104699, 30.171795294715213 ], [ -94.966408918635253, 30.171834295098435 ], [ -94.96636491831859, 30.171867295308857 ], [ -94.966193917862441, 30.171955295067317 ], [ -94.966073917955114, 30.17199929539612 ], [ -94.965883918277555, 30.172087295612641 ], [ -94.965858917939983, 30.17213129535121 ], [ -94.965864918567263, 30.172213295148257 ], [ -94.965883918279758, 30.172235295314223 ], [ -94.966010918781151, 30.172290295463284 ], [ -94.966174918601595, 30.172389295534717 ], [ -94.966339918636095, 30.172548295014529 ], [ -94.966402918360728, 30.172647295179001 ], [ -94.966364917867693, 30.172708295540595 ], [ -94.966415918472691, 30.1727462956751 ], [ -94.966428917906455, 30.172768295497182 ], [ -94.966377918557441, 30.172840295689127 ], [ -94.966333918868514, 30.172873295005438 ], [ -94.966124918418075, 30.172928294971353 ], [ -94.966042918576377, 30.17296629557568 ], [ -94.965808918683265, 30.1731152957144 ], [ -94.96575191853178, 30.173164295196894 ], [ -94.965713918243239, 30.173252295168052 ], [ -94.965700918303909, 30.173362295601773 ], [ -94.965738918646153, 30.17343429587892 ], [ -94.965773918492744, 30.173438295124033 ], [ -94.965820918684855, 30.173445295292375 ], [ -94.9660489186939, 30.173384295086841 ], [ -94.96609291817343, 30.173384295483398 ], [ -94.966143918771223, 30.173445295880967 ], [ -94.966143918742034, 30.173819295836431 ], [ -94.966118918416939, 30.174055295280251 ], [ -94.966137918498106, 30.17420929566881 ], [ -94.966213918158928, 30.174363295289304 ], [ -94.966226918277954, 30.174418295647985 ], [ -94.966226918334556, 30.174506295819878 ], [ -94.966169918271675, 30.174561295318973 ], [ -94.966080918853777, 30.174517296104689 ], [ -94.965998918790973, 30.174402295605326 ], [ -94.965922918590067, 30.174391295687087 ], [ -94.965833918461598, 30.174451295754746 ], [ -94.965789918266097, 30.174556295767939 ], [ -94.965840918855676, 30.174836295637704 ], [ -94.965789918825095, 30.174935296235326 ], [ -94.965821918159747, 30.175237295957814 ], [ -94.965783918342936, 30.175320296188492 ], [ -94.965751918687857, 30.175353295860948 ], [ -94.965701918607692, 30.175375296026751 ], [ -94.965448918658794, 30.175425295733987 ], [ -94.965308918220714, 30.175441296100463 ], [ -94.965239918233493, 30.175469295774953 ], [ -94.96514491831644, 30.175524296293425 ], [ -94.965087918286798, 30.175612295858105 ], [ -94.965055918173519, 30.175738296137666 ], [ -94.965055917694727, 30.175782296200293 ], [ -94.965081918129883, 30.175892296204704 ], [ -94.965119917986186, 30.175947296237208 ], [ -94.965252918119731, 30.176062295632992 ], [ -94.965277918498558, 30.176112296024382 ], [ -94.965283918234434, 30.176150295627792 ], [ -94.965264918109611, 30.176178296232862 ], [ -94.965233918497631, 30.176194295671213 ], [ -94.965125918704999, 30.176200296511414 ], [ -94.965074918270091, 30.176211295774007 ], [ -94.964923918108497, 30.176255296159251 ], [ -94.964866917835252, 30.176283296258575 ], [ -94.964771918078398, 30.176371296130359 ], [ -94.964714918574273, 30.17649129592434 ], [ -94.964707918237551, 30.176558296523485 ], [ -94.964625918216569, 30.176645296094218 ], [ -94.964575917794292, 30.176673296593918 ], [ -94.964480917838642, 30.176673296124378 ], [ -94.964340918492084, 30.176624296486921 ], [ -94.964233917602357, 30.176569296410829 ], [ -94.96408791836933, 30.176453295926326 ], [ -94.964030917686387, 30.175887296356791 ], [ -94.96398691753555, 30.175744296360545 ], [ -94.963935918376407, 30.175694295716355 ], [ -94.963676917640385, 30.175546295837247 ], [ -94.963530917672884, 30.175524295571062 ], [ -94.963448918163209, 30.17554129563408 ], [ -94.9633919177829, 30.175585296217712 ], [ -94.963353918194699, 30.175667295695497 ], [ -94.963239917829441, 30.175733295819871 ], [ -94.963150918153332, 30.175761296482968 ], [ -94.96308191740755, 30.175816295727092 ], [ -94.962929918147921, 30.175997296439327 ], [ -94.96281591743174, 30.176058296480306 ], [ -94.962739917765987, 30.176080296245381 ], [ -94.962619917259943, 30.176041295820617 ], [ -94.962581917249224, 30.176041296524957 ], [ -94.962524917930793, 30.176052296254483 ], [ -94.96245491762663, 30.176052296203121 ], [ -94.962372917475008, 30.176069296508611 ], [ -94.962233916975237, 30.176074296162245 ], [ -94.961967917894881, 30.175992296153105 ], [ -94.961828917787955, 30.175992296574755 ], [ -94.96175291694388, 30.176025296232861 ], [ -94.961714917627859, 30.176030296438988 ], [ -94.961714917758115, 30.176063296078009 ], [ -94.961752916846251, 30.176096296127426 ], [ -94.961771916925258, 30.176146295859986 ], [ -94.961720917697363, 30.176140296275261 ], [ -94.961657917371809, 30.176107295949119 ], [ -94.961562917756908, 30.176074296486419 ], [ -94.961492917406233, 30.176063296355821 ], [ -94.961435917228357, 30.176014296178565 ], [ -94.961460917259743, 30.175860296031114 ], [ -94.961473916852128, 30.175684295774868 ], [ -94.9614679171126, 30.175629296517538 ], [ -94.961441917219176, 30.175601296101792 ], [ -94.961258917219141, 30.175491296400839 ], [ -94.961226917479422, 30.175486295663529 ], [ -94.961157916890656, 30.175519295697399 ], [ -94.961131917393487, 30.175519296051853 ], [ -94.961093917269864, 30.1754912964063 ], [ -94.960960917415946, 30.175437295903443 ], [ -94.960663917441693, 30.175250296217044 ], [ -94.960574917044724, 30.175233295801423 ], [ -94.960511917246777, 30.175244295962798 ], [ -94.960492917150589, 30.17533229630099 ], [ -94.960517917305864, 30.175442296213038 ], [ -94.960511917206205, 30.175497296332502 ], [ -94.960410916510838, 30.175607296392997 ], [ -94.960353916543198, 30.175613296359213 ], [ -94.959960916761858, 30.175772296323888 ], [ -94.959897916822612, 30.175838295930792 ], [ -94.959872917115035, 30.175948296632143 ], [ -94.959802916618798, 30.176394296426789 ], [ -94.959758917001949, 30.176487296712114 ], [ -94.959701916370051, 30.176542296257011 ], [ -94.959663916840427, 30.176564296223994 ], [ -94.959581916883209, 30.176553296742288 ], [ -94.959511917057398, 30.176526296292252 ], [ -94.959480916786845, 30.176482296772527 ], [ -94.959480916789047, 30.176427296150091 ], [ -94.9594929167163, 30.176377296351802 ], [ -94.959524917179564, 30.176339296600915 ], [ -94.959518917053927, 30.176306296396291 ], [ -94.959448917289777, 30.176245296126432 ], [ -94.959378916780935, 30.176245296278662 ], [ -94.959347916414501, 30.176267296027337 ], [ -94.95937891687791, 30.17639929677377 ], [ -94.95942991691382, 30.176509295953608 ], [ -94.959429916494017, 30.176531296009184 ], [ -94.959416916673206, 30.176548295910443 ], [ -94.959378917208284, 30.176542296780735 ], [ -94.959334917196045, 30.176515296222636 ], [ -94.95927791641941, 30.176443296708314 ], [ -94.959264916913398, 30.176394296394989 ], [ -94.959157916701912, 30.176421296249593 ], [ -94.958992916465348, 30.176498296223542 ], [ -94.958796916402022, 30.176432296453179 ], [ -94.958670917005279, 30.176427296233044 ], [ -94.958632916221887, 30.176449296780412 ], [ -94.958606916424614, 30.176476296449046 ], [ -94.958606916328677, 30.176570296596221 ], [ -94.958632916651837, 30.176652296278093 ], [ -94.958695916931276, 30.176784296093782 ], [ -94.958803917065893, 30.176949296706049 ], [ -94.958828916890496, 30.177015296757212 ], [ -94.958898916329389, 30.177125296273864 ], [ -94.958853916456178, 30.177362296113465 ], [ -94.958860916564092, 30.177477296985295 ], [ -94.958891917107337, 30.17752729649002 ], [ -94.958986916289021, 30.17761429646426 ], [ -94.958999916817888, 30.177653296454189 ], [ -94.959018917134784, 30.177675296669861 ], [ -94.959018916909741, 30.177713296931426 ], [ -94.958967916466491, 30.177763297017563 ], [ -94.958885916915904, 30.177812296582417 ], [ -94.958871916535657, 30.177798296779581 ], [ -94.958860916804539, 30.17776329689594 ], [ -94.958815916433082, 30.177768296353516 ], [ -94.958771916936129, 30.177812296464761 ], [ -94.958733916455401, 30.177818296843711 ], [ -94.958708916807467, 30.177845296778258 ], [ -94.95872191668613, 30.177906296834561 ], [ -94.958695916458339, 30.177950296835544 ], [ -94.958626917045265, 30.17796129649124 ], [ -94.958613917066856, 30.178021296304351 ], [ -94.958626916152227, 30.178071296764266 ], [ -94.958651916552938, 30.178082297134363 ], [ -94.958689916202815, 30.178126296720645 ], [ -94.95868991638838, 30.178159296362491 ], [ -94.958632916410565, 30.178247296923182 ], [ -94.958575916393116, 30.17825829680482 ], [ -94.958176916887368, 30.178203296769745 ], [ -94.958100916250544, 30.178203296591811 ], [ -94.958088916790189, 30.178219296503023 ], [ -94.957949916824916, 30.178297296517567 ], [ -94.957873916783171, 30.17835729656484 ], [ -94.957619915948143, 30.178462296605048 ], [ -94.95753791614932, 30.178511297169027 ], [ -94.957455916589907, 30.178643297311236 ], [ -94.957176915800503, 30.178940297149499 ], [ -94.95705691655445, 30.179100297077106 ], [ -94.957082916486243, 30.179325296911173 ], [ -94.957082915887412, 30.179413297124427 ], [ -94.957113916363028, 30.179523297323737 ], [ -94.957139915992855, 30.179561297076528 ], [ -94.957272916377747, 30.17960529721498 ], [ -94.957291915981955, 30.179655296637673 ], [ -94.957278915990528, 30.179699297009659 ], [ -94.957240916045308, 30.179765297312411 ], [ -94.957183916599263, 30.180056297474007 ], [ -94.957151916863367, 30.180111297020257 ], [ -94.957075916147971, 30.180161297158474 ], [ -94.957012915866272, 30.180166296801506 ], [ -94.956715915740645, 30.180271297626696 ], [ -94.956689916638965, 30.180304296798472 ], [ -94.956683915776964, 30.180414297265266 ], [ -94.95665891601908, 30.1804852969241 ], [ -94.95658891573764, 30.180535297476514 ], [ -94.956557916028657, 30.180590297148115 ], [ -94.956531916134949, 30.180672296991759 ], [ -94.956468916059166, 30.180788297671207 ], [ -94.956379915986972, 30.18082629703521 ], [ -94.956354915733826, 30.180810297451416 ], [ -94.956303916537664, 30.18062329756232 ], [ -94.956234915626297, 30.180601297273 ], [ -94.956177916448667, 30.180617297731331 ], [ -94.956000916194768, 30.180738297416934 ], [ -94.955987916172361, 30.180777297037402 ], [ -94.955987916288706, 30.180826297772157 ], [ -94.956025915796232, 30.1808982970588 ], [ -94.95600691584076, 30.180909296987128 ], [ -94.955911916541083, 30.180876297300951 ], [ -94.955582916048215, 30.180579297119682 ], [ -94.955550915557609, 30.180447297149481 ], [ -94.955601915835672, 30.180266297187387 ], [ -94.955588915633015, 30.180238297372899 ], [ -94.955525915727051, 30.180211296821525 ], [ -94.955367915783015, 30.180189297285011 ], [ -94.955025915416726, 30.18017829737747 ], [ -94.954924915792901, 30.18020029681605 ], [ -94.954835915520306, 30.180277297370946 ], [ -94.954816915520539, 30.180315296924714 ], [ -94.954803915332079, 30.180398297474405 ], [ -94.954816916274538, 30.180486297726322 ], [ -94.954872916295557, 30.180664297638529 ], [ -94.954962915961389, 30.180942297737392 ], [ -94.95498191607615, 30.181063297395955 ], [ -94.954968916298839, 30.181112297286866 ], [ -94.954936916033176, 30.181167297215552 ], [ -94.954848916128554, 30.181266297211849 ], [ -94.954835915844598, 30.181349297732297 ], [ -94.954860915914225, 30.18143729760482 ], [ -94.954981915797987, 30.18170629775598 ], [ -94.954987916178595, 30.181756297555403 ], [ -94.954962915912787, 30.181833297642445 ], [ -94.954475915228088, 30.182014297923413 ], [ -94.954367915672478, 30.182064297653831 ], [ -94.954152916096973, 30.182113297950508 ], [ -94.954031915999494, 30.182124297893779 ], [ -94.953880916076656, 30.182064297515026 ], [ -94.953569915340054, 30.182053297413084 ], [ -94.953532915977519, 30.182075297796096 ], [ -94.953424915082593, 30.182245297379264 ], [ -94.953348915354908, 30.182317297363156 ], [ -94.953259915782027, 30.182355297438811 ], [ -94.953209915289563, 30.182355297530982 ], [ -94.952949915727558, 30.182273298142242 ], [ -94.952797915755767, 30.182289297686609 ], [ -94.952734914828156, 30.182328297821435 ], [ -94.952677915339819, 30.182411298029287 ], [ -94.952607915402268, 30.182482297416922 ], [ -94.952506915088989, 30.182526297851496 ], [ -94.952259914833988, 30.182537298170551 ], [ -94.952202915644918, 30.182515297617282 ], [ -94.95217191541937, 30.182466297659218 ], [ -94.95219691500057, 30.182383298168737 ], [ -94.952139914656186, 30.182356297822498 ], [ -94.951924915292125, 30.182372297675233 ], [ -94.951778914819428, 30.182416297759563 ], [ -94.951734915355914, 30.182471297928853 ], [ -94.951734915358088, 30.182504297574372 ], [ -94.951778914631916, 30.182532297929036 ], [ -94.951804915157098, 30.182614297952682 ], [ -94.951747914948314, 30.182647297784509 ], [ -94.951513914727386, 30.182746298163615 ], [ -94.951392914580651, 30.182746297986114 ], [ -94.951310915431094, 30.182719297942924 ], [ -94.951247914637605, 30.182636298270307 ], [ -94.951177915164209, 30.182570297730624 ], [ -94.951057914701352, 30.182543297741486 ], [ -94.950886915292244, 30.182532297735143 ], [ -94.950633914441099, 30.18239429787582 ], [ -94.950512915227833, 30.182350297678422 ], [ -94.950405914800854, 30.182323297472578 ], [ -94.950297914991111, 30.182317297741317 ], [ -94.950215915000911, 30.182328298179986 ], [ -94.95017191495765, 30.182356298041569 ], [ -94.950152914864333, 30.182394297868615 ], [ -94.950164914808155, 30.182537298006565 ], [ -94.950069914511928, 30.182702297555007 ], [ -94.950000914788987, 30.182779297617103 ], [ -94.949823914274219, 30.182911298011671 ], [ -94.949588915042909, 30.182906297921992 ], [ -94.949525914593565, 30.182950298143133 ], [ -94.949448914748231, 30.182984298100539 ], [ -94.949266914366902, 30.183065297886998 ], [ -94.949114914801427, 30.183214298426222 ], [ -94.949038914516009, 30.183247298332837 ], [ -94.948975914572912, 30.183263298387388 ], [ -94.948924914268389, 30.183324297988246 ], [ -94.948835914126448, 30.183362297890429 ], [ -94.948728914485102, 30.183390297949554 ], [ -94.9485329141134, 30.183401297872781 ], [ -94.948474914346377, 30.183329298095384 ], [ -94.948247914498964, 30.183258298008234 ], [ -94.948133914178698, 30.18320829806088 ], [ -94.947943914578232, 30.183148298204827 ], [ -94.947626914004914, 30.182945297838778 ], [ -94.947527913833937, 30.182846297855747 ], [ -94.947455913807914, 30.182774298393507 ], [ -94.947354914446493, 30.182659298303552 ], [ -94.947183914254907, 30.182505297921818 ], [ -94.946854913877274, 30.182241298264842 ], [ -94.946601914003423, 30.182037297569838 ], [ -94.946563913283754, 30.182004297706619 ], [ -94.946284913203712, 30.181680297525833 ], [ -94.945980913361424, 30.181394297541409 ], [ -94.945303913265761, 30.18091629791336 ], [ -94.944658913390427, 30.180509297841422 ], [ -94.944392912860138, 30.18042629730169 ], [ -94.943683912866931, 30.180294298009791 ], [ -94.943202913269801, 30.18022829772211 ], [ -94.942999912649711, 30.180234297983766 ], [ -94.942733912912075, 30.18026729741959 ], [ -94.942689912816903, 30.180239297563674 ], [ -94.942525912203806, 30.180212298061953 ], [ -94.94224691215156, 30.1801852975128 ], [ -94.941968912318103, 30.180218297328565 ], [ -94.941799911932662, 30.180286297497052 ], [ -94.941645912589749, 30.180350298058737 ], [ -94.94153191279689, 30.180438297571392 ], [ -94.941512912519102, 30.180531298016483 ], [ -94.941271912646386, 30.18058629778033 ], [ -94.941100911884391, 30.180674298025778 ], [ -94.940993911798301, 30.180822297593458 ], [ -94.940860911824373, 30.180877297714115 ], [ -94.940784911940128, 30.180894298175009 ], [ -94.94059491175959, 30.180899297865107 ], [ -94.940461912086107, 30.180872297779487 ], [ -94.940069912163793, 30.180685298223441 ], [ -94.939987912388702, 30.180685298227779 ], [ -94.939918912230354, 30.180691297653834 ], [ -94.939867911453817, 30.180696297535523 ], [ -94.939822911972797, 30.180713297711005 ], [ -94.939778911402897, 30.180729298095802 ], [ -94.939702911405405, 30.180790298262654 ], [ -94.93949391193982, 30.18089929808907 ], [ -94.93922191187886, 30.180889298056531 ], [ -94.939183911612176, 30.180960297849051 ], [ -94.939062911452908, 30.181108297695634 ], [ -94.938961911773958, 30.181207298023775 ], [ -94.938949912050006, 30.181328298250722 ], [ -94.938892911593825, 30.181521298249553 ], [ -94.93891191160273, 30.181823298094912 ], [ -94.93903191216323, 30.182016298132467 ], [ -94.939164911793199, 30.182269298247014 ], [ -94.939158911307487, 30.182483298386746 ], [ -94.939157912274396, 30.182538297939249 ], [ -94.939132911814482, 30.182626298654977 ], [ -94.939082911778982, 30.182703298088644 ], [ -94.939037911631146, 30.182742298143555 ], [ -94.938974912053965, 30.182775298482671 ], [ -94.938746912014437, 30.182808297925359 ], [ -94.938126911851427, 30.183088298768524 ], [ -94.937917911269949, 30.183237298690095 ], [ -94.937835912037684, 30.183363298472987 ], [ -94.937727911750585, 30.183737298240565 ], [ -94.937664911772046, 30.183825298785031 ], [ -94.937360911265628, 30.183957298969268 ], [ -94.937297911836382, 30.184105299019528 ], [ -94.937195911601208, 30.184177298634506 ], [ -94.937170911172331, 30.184237298972342 ], [ -94.937043910953278, 30.184292298769918 ], [ -94.936993911413609, 30.184413298652075 ], [ -94.936778911561319, 30.184611298983043 ], [ -94.93652491109367, 30.184787299077357 ], [ -94.93641191098007, 30.184886298911632 ], [ -94.936240911068623, 30.185013299155713 ], [ -94.935784911429607, 30.185288298652448 ], [ -94.935790911103865, 30.185458298789719 ], [ -94.935778911252442, 30.185579298647905 ], [ -94.935746910653251, 30.185717298685262 ], [ -94.935771911070731, 30.185832298693473 ], [ -94.935860911566394, 30.186091298732229 ], [ -94.935828911445327, 30.186261299299531 ], [ -94.935816911287532, 30.186398299374293 ], [ -94.935695910997026, 30.186486299287697 ], [ -94.935297911111903, 30.186514299321491 ], [ -94.935043911138123, 30.186503299623233 ], [ -94.934809910418238, 30.186547299641077 ], [ -94.934543910395632, 30.186624299002432 ], [ -94.934429910819588, 30.18670629912323 ], [ -94.934379911304219, 30.186855298959639 ], [ -94.934371910888572, 30.186870299289229 ], [ -94.934334911019675, 30.186948299051245 ], [ -94.934290910550132, 30.18709729956749 ], [ -94.934252910956658, 30.187311299314292 ], [ -94.934189911049515, 30.187493299574776 ], [ -94.934113910955674, 30.187614299903721 ], [ -94.93394891121612, 30.187801299510799 ], [ -94.933784910996735, 30.187927299583514 ], [ -94.933632910200842, 30.188010299963771 ], [ -94.933531910186474, 30.188026300018731 ], [ -94.933455910255887, 30.188059299458232 ], [ -94.933265910165773, 30.188109299534641 ], [ -94.933189910498399, 30.188169299615524 ], [ -94.933132911047238, 30.188230299919486 ], [ -94.933113910536576, 30.188296299273762 ], [ -94.93305691078568, 30.188422299806735 ], [ -94.932980910585584, 30.188510299761138 ], [ -94.932904910919632, 30.188571299814495 ], [ -94.932853910712879, 30.188604299882243 ], [ -94.932632910841846, 30.188747299388154 ], [ -94.932551910214272, 30.188811300124911 ], [ -94.932530910305402, 30.188829299561458 ], [ -94.932486910595486, 30.18887930026067 ], [ -94.932423910441898, 30.189109299569772 ], [ -94.932398910024972, 30.189467299536741 ], [ -94.932379910098106, 30.189527299824903 ], [ -94.932246910604746, 30.189813299835041 ], [ -94.932250910124168, 30.189840299643315 ], [ -94.932284910173223, 30.190044300253351 ], [ -94.932277910335586, 30.190204299708824 ], [ -94.932212910029335, 30.191049300197989 ], [ -94.932142910059667, 30.191524300473247 ], [ -94.932139910016645, 30.191539300168948 ], [ -94.932131910848213, 30.191607299962964 ], [ -94.93186591008768, 30.192138300085695 ], [ -94.930826910535316, 30.193898300572041 ], [ -94.930701910570747, 30.194423301280587 ], [ -94.930724909907866, 30.194734300652971 ], [ -94.930836910444938, 30.194893300858336 ], [ -94.931077909955889, 30.195033301237135 ], [ -94.931334910308308, 30.19518230132968 ], [ -94.932182910366748, 30.195499301399913 ], [ -94.932283910716038, 30.195598301377476 ], [ -94.93238991070919, 30.195702301370119 ], [ -94.932393911049061, 30.196108301121225 ], [ -94.932101910787154, 30.19647130099893 ], [ -94.931226910305398, 30.19752830143268 ], [ -94.931005910648409, 30.198038302156327 ], [ -94.931006910073521, 30.198570301728221 ], [ -94.93100791072041, 30.198711301837388 ], [ -94.931106910946141, 30.198915302134008 ], [ -94.931336910901479, 30.199006302219058 ], [ -94.93161391058014, 30.199067301780708 ], [ -94.931806911192467, 30.199198302320411 ], [ -94.931820910642045, 30.199538302217334 ], [ -94.93169491104257, 30.20004930230316 ], [ -94.930882910334645, 30.201163302360541 ], [ -94.930703910737122, 30.201405302888027 ], [ -94.930552910181945, 30.201519302521127 ], [ -94.930366910339188, 30.201551302206973 ], [ -94.93028091031843, 30.201736302677936 ], [ -94.930340910580114, 30.202150302699867 ], [ -94.930334910417685, 30.202589303039865 ], [ -94.930184910066501, 30.202855302622527 ], [ -94.929704909856056, 30.203379303318375 ], [ -94.929533909958423, 30.203695303332427 ], [ -94.929481910503924, 30.204076303292716 ], [ -94.92962691035693, 30.204426303461535 ], [ -94.929826910103657, 30.204736303576169 ], [ -94.929814910762659, 30.204891302815042 ], [ -94.929673910455918, 30.205101303417401 ], [ -94.929400910285793, 30.205390303002837 ], [ -94.929210910438812, 30.205844303554581 ], [ -94.929104910055059, 30.206086303659283 ], [ -94.928522909935822, 30.206700304015044 ], [ -94.928416910460442, 30.20695030367548 ], [ -94.928388909815098, 30.207086303756604 ], [ -94.928318910221691, 30.207429303436459 ], [ -94.928333909692611, 30.20768830422103 ], [ -94.928460909777471, 30.207859303713295 ], [ -94.92843091020886, 30.208086304068051 ], [ -94.928241910100866, 30.208361304166257 ], [ -94.928138909776408, 30.208449304029831 ], [ -94.927894910412661, 30.208610303844821 ], [ -94.927295910335587, 30.208965304440724 ], [ -94.926742909928365, 30.209456303937827 ], [ -94.926593909752398, 30.209635304541415 ], [ -94.926398909722124, 30.20986830405343 ], [ -94.926274909531458, 30.210178304268183 ], [ -94.926226909735959, 30.210299304184449 ], [ -94.926231910029813, 30.211031304653751 ], [ -94.926224909540224, 30.211252304715405 ], [ -94.926005910288694, 30.21162730490661 ], [ -94.925989909541613, 30.211941304661618 ], [ -94.925980909864222, 30.212024305010885 ], [ -94.925971910075162, 30.212122304466355 ], [ -94.92611190976055, 30.212231304521676 ], [ -94.926466910137677, 30.212305304455541 ], [ -94.926653909748268, 30.212350305017697 ], [ -94.926904910451455, 30.21231930479831 ], [ -94.927071910025404, 30.212249304861174 ], [ -94.927350910391539, 30.212237304883061 ], [ -94.927691909911346, 30.212418305164448 ], [ -94.92779091066366, 30.21275930501206 ], [ -94.927804910697446, 30.213277305335868 ], [ -94.92768991020381, 30.213796305025021 ], [ -94.927546910642448, 30.214192305589215 ], [ -94.927478910425492, 30.214548305617523 ], [ -94.927591910291895, 30.215224304940538 ], [ -94.927602910023808, 30.215287304969099 ], [ -94.92773991007374, 30.215450305353631 ], [ -94.927998910593558, 30.21559030538209 ], [ -94.928367911107117, 30.215739305313146 ], [ -94.928719910664853, 30.215824305898465 ], [ -94.929098910535771, 30.215957305518565 ], [ -94.929567911405329, 30.216374305377201 ], [ -94.92974091116966, 30.216741306014217 ], [ -94.92978291081927, 30.217261306058116 ], [ -94.929695911029583, 30.217713305735252 ], [ -94.929343910913303, 30.218463306204434 ], [ -94.9292899114525, 30.218562306013013 ], [ -94.92937891069019, 30.218984305692981 ], [ -94.929707911624249, 30.219497306005788 ], [ -94.929916910952059, 30.220059305931091 ], [ -94.930328910832216, 30.22051730618519 ], [ -94.930495911572677, 30.220704306598982 ], [ -94.93091891120946, 30.221096306492704 ], [ -94.930981911912795, 30.221340306630481 ], [ -94.930941911041714, 30.221688306760075 ], [ -94.930488911568062, 30.222584306762965 ], [ -94.93037591171398, 30.222763307063069 ], [ -94.930180911371139, 30.222786306841375 ], [ -94.929940911735955, 30.222672306475221 ], [ -94.929516911484683, 30.222405307054427 ], [ -94.929397910731765, 30.22238130649254 ], [ -94.929303910939694, 30.222363307033881 ], [ -94.929099911076435, 30.222322306381013 ], [ -94.928829910771086, 30.222483306907876 ], [ -94.928716910522454, 30.222718306982202 ], [ -94.928731910577994, 30.223026307144043 ], [ -94.929011911087329, 30.223595307415952 ], [ -94.929196911070946, 30.223970307383638 ], [ -94.929147910872629, 30.224270307149574 ], [ -94.92900791084638, 30.224422307195656 ], [ -94.928765911366739, 30.22457530770469 ], [ -94.928438910968453, 30.224824306983479 ], [ -94.928320910768235, 30.225093307323494 ], [ -94.928211911054959, 30.225359307745595 ], [ -94.927772910834321, 30.225671307201083 ], [ -94.927594910462332, 30.225953307675656 ], [ -94.927518910837094, 30.226123307288308 ], [ -94.927451911124976, 30.226216307601057 ], [ -94.927133910862679, 30.22666430738678 ], [ -94.92700491041613, 30.226862307674448 ], [ -94.926687911147795, 30.227345308211166 ], [ -94.926644910908806, 30.227464307934987 ], [ -94.926474910601129, 30.227952308098551 ], [ -94.926261910175143, 30.228497307704501 ], [ -94.925835910170875, 30.229219307997763 ], [ -94.925791910720235, 30.229388308150064 ], [ -94.92578091065424, 30.229433308040988 ], [ -94.925845910467615, 30.229631308326251 ], [ -94.925984910345633, 30.229868308452165 ], [ -94.926032911025843, 30.230037308073896 ], [ -94.926049911163133, 30.2301003088694 ], [ -94.926027910378167, 30.230224308898297 ], [ -94.925981910784799, 30.23049530884845 ], [ -94.925706910773698, 30.230615308976247 ], [ -94.925692910872996, 30.230622308514395 ], [ -94.925542910278665, 30.230714308711004 ], [ -94.925375910982098, 30.230827308441238 ], [ -94.925192910201389, 30.230952308822395 ], [ -94.9249059099824, 30.231205308575635 ], [ -94.924754910864152, 30.231339308642848 ], [ -94.923959910161813, 30.230465308617983 ], [ -94.923742910471887, 30.230226308424086 ], [ -94.921551909872164, 30.227868307832544 ], [ -94.920748909593897, 30.227003308172385 ], [ -94.92055590912922, 30.226795308059703 ], [ -94.919974909423559, 30.226174307877649 ], [ -94.919524908921161, 30.225692307729418 ], [ -94.918732908918841, 30.224816307709112 ], [ -94.918517908172504, 30.22459930773541 ], [ -94.917669908454684, 30.22367530744086 ], [ -94.917504908136607, 30.223495307157933 ], [ -94.916887907640202, 30.222855306918806 ], [ -94.916602907733179, 30.22254330722113 ], [ -94.916423908266708, 30.222326306886195 ], [ -94.91637790807853, 30.22227030743278 ], [ -94.915965907386152, 30.221735307115402 ], [ -94.915750907518955, 30.221396307249616 ], [ -94.915446907955342, 30.220861306955737 ], [ -94.915300907441363, 30.220550307234689 ], [ -94.915259907190588, 30.220460306884753 ], [ -94.915092907471106, 30.220021306723059 ], [ -94.915053907417089, 30.219893306401229 ], [ -94.914902907177918, 30.219408306473508 ], [ -94.914638907015473, 30.21853130683661 ], [ -94.914508907389049, 30.218098306207676 ], [ -94.914380906623592, 30.217694306377208 ], [ -94.914103906983399, 30.216720306289403 ], [ -94.913497906959535, 30.214765305484956 ], [ -94.913402906300604, 30.214442305772245 ], [ -94.913001906949177, 30.213077305275288 ], [ -94.912689906509954, 30.212034305041669 ], [ -94.911754906503035, 30.208908304326375 ], [ -94.911443905494679, 30.20786630471817 ], [ -94.911333906250036, 30.207489304573265 ], [ -94.91115390554306, 30.206868303788298 ], [ -94.911030905296514, 30.2063543040558 ], [ -94.910940905992177, 30.205973303769564 ], [ -94.910884905528491, 30.205749303989123 ], [ -94.910716905655562, 30.205077303480692 ], [ -94.910661905093207, 30.204854304215434 ], [ -94.910623905516189, 30.204701304249415 ], [ -94.910512905590579, 30.204242304158509 ], [ -94.910475905407367, 30.204090303903772 ], [ -94.910423905579137, 30.203873303399334 ], [ -94.910267905278815, 30.203222303387655 ], [ -94.910216905230158, 30.203006303420651 ], [ -94.910175905492821, 30.202831303017426 ], [ -94.9100549048934, 30.202308303052025 ], [ -94.910014905635137, 30.202134303278324 ], [ -94.909909904840262, 30.201711303093287 ], [ -94.909733904595413, 30.201000303428664 ], [ -94.909600905478143, 30.200441303228533 ], [ -94.909500905493474, 30.200018302665175 ], [ -94.909259904615524, 30.199068302965664 ], [ -94.909006904580977, 30.198064302320706 ], [ -94.908778904174042, 30.197079302209666 ], [ -94.908565904820591, 30.196213301907562 ], [ -94.908333904521825, 30.195262302119549 ], [ -94.90816290425947, 30.194567302145465 ], [ -94.907926904591477, 30.193602301858057 ], [ -94.907822904202348, 30.193261301565602 ], [ -94.907621904297841, 30.192742301640116 ], [ -94.907523904355884, 30.192525301576712 ], [ -94.907250904069954, 30.191922301430342 ], [ -94.907228904535998, 30.191875301177806 ], [ -94.907067904102874, 30.19153330112692 ], [ -94.90696390396009, 30.191284301391256 ], [ -94.906751903984429, 30.190830301419751 ], [ -94.905912903901196, 30.189041300771276 ], [ -94.905905903569149, 30.189025300434309 ], [ -94.905761902975712, 30.188705301144687 ], [ -94.905083902924304, 30.187274300306601 ], [ -94.901981901992471, 30.180534299043185 ], [ -94.900675901452587, 30.177697298352168 ], [ -94.900484901223891, 30.177289298779016 ], [ -94.900071900988422, 30.176407298493324 ], [ -94.899928901296576, 30.176058298469016 ], [ -94.89986490166622, 30.175900298672872 ], [ -94.899786900880798, 30.175632298598028 ], [ -94.899774901493316, 30.175591298009532 ], [ -94.899769901592606, 30.175573298303618 ], [ -94.899752901237179, 30.175465298119253 ], [ -94.899746901608069, 30.175424298022875 ], [ -94.899726900887401, 30.175302298248326 ], [ -94.899687901285773, 30.175066297859054 ], [ -94.89967090106974, 30.174951298433967 ], [ -94.899647901240712, 30.174549298483694 ], [ -94.899628901270205, 30.174104297677463 ], [ -94.899632901554682, 30.172081297865379 ], [ -94.899638900887879, 30.169858297290631 ], [ -94.899653900685536, 30.169345297291795 ], [ -94.89963890116843, 30.169061296686806 ], [ -94.899600900712144, 30.168715297218696 ], [ -94.899547900459737, 30.168438296607285 ], [ -94.899464900670637, 30.168125297011478 ], [ -94.899343900652511, 30.16777629640934 ], [ -94.899207900631197, 30.167434296200287 ], [ -94.899044901138012, 30.167128296833909 ], [ -94.898850900487091, 30.166797296281125 ], [ -94.898677900327584, 30.166544296311883 ], [ -94.898522900239058, 30.16634829633707 ], [ -94.897088900428358, 30.164755295799313 ], [ -94.895801899589557, 30.163348295803988 ], [ -94.895393899806791, 30.162903295808171 ], [ -94.894502899017198, 30.161914295862548 ], [ -94.894256899239991, 30.161653295149829 ], [ -94.893937899270938, 30.161331295214509 ], [ -94.893701898841201, 30.161110295904088 ], [ -94.893490898832241, 30.160928295229066 ], [ -94.893280898807447, 30.160794295013943 ], [ -94.893028899351478, 30.160617295630683 ], [ -94.892740899102918, 30.160464295208637 ], [ -94.892307898294064, 30.160240295239188 ], [ -94.890802898232835, 30.159462294972482 ], [ -94.889979897573127, 30.159053294894875 ], [ -94.889459897738433, 30.158747295541417 ], [ -94.889274897447621, 30.158612295045945 ], [ -94.889060897744955, 30.158427294912151 ], [ -94.888861897783386, 30.1582062949924 ], [ -94.888809897551013, 30.158140295161139 ], [ -94.888383897792764, 30.157601295277022 ], [ -94.888173897251676, 30.157284295088573 ], [ -94.888038897085053, 30.157014295236653 ], [ -94.887938897143755, 30.156729294883803 ], [ -94.887926897405976, 30.156687294349741 ], [ -94.887889897657573, 30.156554294460058 ], [ -94.887852897310594, 30.156400294872999 ], [ -94.887707897690007, 30.155674294168261 ], [ -94.88770389685061, 30.155651294648951 ], [ -94.887647897149876, 30.155334294363286 ], [ -94.887625897721676, 30.155216294846632 ], [ -94.887601897251244, 30.155079294363389 ], [ -94.887563896820893, 30.154863294024018 ], [ -94.887545896994226, 30.154757294046455 ], [ -94.887543897140986, 30.154746294374625 ], [ -94.887529897541555, 30.154680294760837 ], [ -94.887489897431038, 30.154483293969623 ], [ -94.887474897624614, 30.154417294453722 ], [ -94.887430896977804, 30.154233294308877 ], [ -94.887359897249027, 30.153928294623498 ], [ -94.887294897025157, 30.153683294521826 ], [ -94.887247897328493, 30.153501294035884 ], [ -94.887187897507388, 30.153281294471995 ], [ -94.887008896877674, 30.152624293971897 ], [ -94.886949897330055, 30.152405294243717 ], [ -94.88686689722141, 30.152141293694395 ], [ -94.886818897268967, 30.151987293813995 ], [ -94.886613897036241, 30.15138329370804 ], [ -94.886600896421186, 30.151355293422387 ], [ -94.886485896789523, 30.151104293596692 ], [ -94.886372897137562, 30.150737293992609 ], [ -94.886294896316542, 30.150560293410674 ], [ -94.886241896305066, 30.150439293538074 ], [ -94.886036896271136, 30.150113293710994 ], [ -94.885847896516637, 30.149825293336086 ], [ -94.885670896946962, 30.149589293340405 ], [ -94.885547896700089, 30.149445293101856 ], [ -94.885425895955819, 30.149301293517123 ], [ -94.88527889630997, 30.149169293766281 ], [ -94.885017896241479, 30.148936293577066 ], [ -94.884840896255213, 30.148794292853133 ], [ -94.884601896655624, 30.148602293469349 ], [ -94.884190896563837, 30.148301293139092 ], [ -94.883967896346903, 30.148138292952122 ], [ -94.883468895796995, 30.147753292855533 ], [ -94.88243289602471, 30.146832293298392 ], [ -94.882328895288197, 30.146718293031697 ], [ -94.882204895450016, 30.146583292669312 ], [ -94.881799895637656, 30.146098292948562 ], [ -94.881768895702791, 30.146066292786909 ], [ -94.881678895459913, 30.145973292504582 ], [ -94.881662894928397, 30.145956292717837 ], [ -94.881648895761316, 30.145942292406932 ], [ -94.880803895189914, 30.144811292661853 ], [ -94.879578895063815, 30.143170292254329 ], [ -94.87929689460573, 30.142776292277585 ], [ -94.879180894360559, 30.142582292069353 ], [ -94.879114894548977, 30.142458292441376 ], [ -94.878982894760654, 30.142108292563194 ], [ -94.878904893911681, 30.141867292229687 ], [ -94.878816894119169, 30.141365291879705 ], [ -94.878790893940462, 30.141171291973272 ], [ -94.87869589434068, 30.140451291910257 ], [ -94.878628894385329, 30.139770292083103 ], [ -94.878590893955987, 30.139389291455583 ], [ -94.878512894265143, 30.138968291488624 ], [ -94.878432893690771, 30.138707291777774 ], [ -94.87842589440973, 30.13868129143415 ], [ -94.87832089441261, 30.138403291790418 ], [ -94.878190893952393, 30.138079290916707 ], [ -94.878050893837511, 30.137793291196537 ], [ -94.877833894141148, 30.137431290955433 ], [ -94.876793893966465, 30.135917291229113 ], [ -94.876674893946173, 30.135744290665535 ], [ -94.876509893489327, 30.135488291075152 ], [ -94.876378893832069, 30.135270291165202 ], [ -94.876227893494686, 30.134995291130814 ], [ -94.875952893525664, 30.13457829035552 ], [ -94.875779892954398, 30.134274290808381 ], [ -94.875705893262889, 30.134143290548717 ], [ -94.87495589335407, 30.132868290133473 ], [ -94.874499892686359, 30.132075290384858 ], [ -94.874214892252169, 30.131578289737643 ], [ -94.874123892417302, 30.131407289903997 ], [ -94.87408989296523, 30.131334289692315 ], [ -94.874020892559841, 30.131183290154272 ], [ -94.873997892555892, 30.131132289886803 ], [ -94.873937892118249, 30.130998290360285 ], [ -94.873781892620585, 30.130628289589598 ], [ -94.873741892839249, 30.130521289832359 ], [ -94.873665892972909, 30.130314289602254 ], [ -94.873613893013598, 30.130187290091698 ], [ -94.873517892936647, 30.129951289467822 ], [ -94.873461892174234, 30.129805289342094 ], [ -94.873412892834878, 30.129678289709194 ], [ -94.87328889221267, 30.129720289556783 ], [ -94.873035892234554, 30.129742290123957 ], [ -94.872953892535108, 30.129723289922897 ], [ -94.872693892059772, 30.129666289898854 ], [ -94.872541891996377, 30.129754289771409 ], [ -94.872118892409858, 30.129831289916499 ], [ -94.871915892506152, 30.129963290175461 ], [ -94.87173289248048, 30.129974290304155 ], [ -94.871630891501667, 30.129943289804032 ], [ -94.871605892463293, 30.129936290286487 ], [ -94.871453891564158, 30.129963290230208 ], [ -94.871390891985499, 30.130046289527019 ], [ -94.871416891479655, 30.130227289993773 ], [ -94.871397891888336, 30.13040329017737 ], [ -94.871308891624722, 30.130464289959669 ], [ -94.871011891611701, 30.130579289683276 ], [ -94.870986891911286, 30.130662290085155 ], [ -94.870999891871946, 30.130909290029496 ], [ -94.870967891940822, 30.130975290141709 ], [ -94.870429892125344, 30.131476290443061 ], [ -94.870056891172922, 30.131657290138239 ], [ -94.870044891778591, 30.132086290124843 ], [ -94.870000891207965, 30.132268290628044 ], [ -94.869892891639992, 30.132378290335417 ], [ -94.869089891312342, 30.132433290782981 ], [ -94.868810891367616, 30.132191290186736 ], [ -94.86874189112784, 30.132219290425187 ], [ -94.86860289110237, 30.132417290707643 ], [ -94.868380891539744, 30.132555290817749 ], [ -94.867836891438358, 30.13258229095252 ], [ -94.867583891400301, 30.132571290285679 ], [ -94.867387890756433, 30.13260429065037 ], [ -94.867179891387281, 30.132874290304713 ], [ -94.866995890896689, 30.132979290279142 ], [ -94.866824890687326, 30.133133290820712 ], [ -94.866065891230278, 30.133435290529285 ], [ -94.865344890679495, 30.133458290671751 ], [ -94.865243890471717, 30.133425290567928 ], [ -94.86513589011966, 30.133265290762619 ], [ -94.8650668907908, 30.133067290972338 ], [ -94.864983890447107, 30.132968291103882 ], [ -94.864736890496715, 30.132826290880185 ], [ -94.864294890104929, 30.132650290840107 ], [ -94.864129889752164, 30.132628290610924 ], [ -94.863503889526669, 30.132573291102371 ], [ -94.862522889412816, 30.13244129052325 ], [ -94.861953889215812, 30.132326291043373 ], [ -94.861225889921485, 30.132096290439502 ], [ -94.859808889088697, 30.131552290380686 ], [ -94.858523889053458, 30.131101290324107 ], [ -94.857802888875867, 30.130821290509427 ], [ -94.857473888626103, 30.130728290443017 ], [ -94.856739888615479, 30.130552290690314 ], [ -94.856144887813258, 30.130448290184724 ], [ -94.854936888061403, 30.130135290170948 ], [ -94.854050887902844, 30.129618290156799 ], [ -94.853632887399243, 30.129503290498008 ], [ -94.853341887778754, 30.129519290199035 ], [ -94.853069886846455, 30.129464290244254 ], [ -94.852284887068777, 30.129046290242911 ], [ -94.851645886317357, 30.128568290192622 ], [ -94.851443886881199, 30.128359290178246 ], [ -94.851190886615669, 30.128227290006038 ], [ -94.850589886933165, 30.128068290534671 ], [ -94.850177886040512, 30.128030289943226 ], [ -94.848191886300739, 30.128069289962454 ], [ -94.846287885887705, 30.127998290355926 ], [ -94.8456168854689, 30.12802629010784 ], [ -94.843275885027296, 30.127993290191249 ], [ -94.843010884056213, 30.128054290234417 ], [ -94.842605884094965, 30.128296290523078 ], [ -94.842403884462385, 30.128373290975855 ], [ -94.841909883818133, 30.128417290351802 ], [ -94.841656883855791, 30.128521290186672 ], [ -94.841553884054676, 30.128596290926478 ], [ -94.840119883495035, 30.129649291113314 ], [ -94.839986884269265, 30.129776291090174 ], [ -94.839873883483804, 30.130012291064649 ], [ -94.83972788387014, 30.130172290887597 ], [ -94.839588883331089, 30.130221291134202 ], [ -94.839386883294765, 30.130238290771761 ], [ -94.838917883558651, 30.130166290806475 ], [ -94.838696883906408, 30.130249291215403 ], [ -94.838538883117266, 30.130419291273149 ], [ -94.838506883835123, 30.130634291441716 ], [ -94.838576883917227, 30.13077129142162 ], [ -94.838810883282534, 30.130887291580809 ], [ -94.838930883253866, 30.131002290816372 ], [ -94.838943883767087, 30.13107929082172 ], [ -94.838816883334516, 30.131195290947119 ], [ -94.838570883591515, 30.131272291080364 ], [ -94.838317883169395, 30.131255290950651 ], [ -94.837810883055127, 30.130980291455053 ], [ -94.83750088344172, 30.130848291299991 ], [ -94.837399882784851, 30.130837291024154 ], [ -94.837260882845825, 30.130860291444861 ], [ -94.836786883070815, 30.131118291178169 ], [ -94.836627883313284, 30.131267291354622 ], [ -94.836590883218889, 30.131443291736559 ], [ -94.83669188326374, 30.131536291184997 ], [ -94.836843883510937, 30.131585291556807 ], [ -94.836881883432412, 30.131668291334517 ], [ -94.836779883289481, 30.131789291696183 ], [ -94.836463882640004, 30.131981291206483 ], [ -94.835976882634967, 30.131861291183903 ], [ -94.83591388336653, 30.131844291831232 ], [ -94.835889882702077, 30.131829291613538 ], [ -94.83538888305003, 30.131520291047337 ], [ -94.835242882296541, 30.131470291367808 ], [ -94.834976882256925, 30.131465291681089 ], [ -94.83475588227661, 30.13148729181875 ], [ -94.834647882870925, 30.13151429176876 ], [ -94.834344882584546, 30.131597291929719 ], [ -94.834244882155758, 30.131675291328495 ], [ -94.833952882382633, 30.131905291599992 ], [ -94.833838882728969, 30.132097291205255 ], [ -94.833616882425815, 30.13214129141457 ], [ -94.833483881947657, 30.132119291461052 ], [ -94.833439882533, 30.132031291639091 ], [ -94.833445882572761, 30.131916291412562 ], [ -94.833762882529157, 30.131448291283863 ], [ -94.833799881954846, 30.131254291840801 ], [ -94.833888881984322, 30.130800291516771 ], [ -94.8339588821554, 30.130695291510378 ], [ -94.834122882487861, 30.130558291670738 ], [ -94.834185882400348, 30.130431290953428 ], [ -94.833964882680974, 30.129903291393862 ], [ -94.833679882398101, 30.129425291004246 ], [ -94.833559882120596, 30.129100290765436 ], [ -94.833546881667829, 30.12899029122827 ], [ -94.833597882322152, 30.128858290862205 ], [ -94.833679881941649, 30.128809291117978 ], [ -94.834469882380645, 30.128462290777957 ], [ -94.834697882108429, 30.128220290905354 ], [ -94.834685881919555, 30.128173290658307 ], [ -94.834653882898237, 30.12804429056661 ], [ -94.834324881989971, 30.127731290911889 ], [ -94.834134882580017, 30.127451291081957 ], [ -94.833969881914001, 30.12734629046874 ], [ -94.833754881985996, 30.127346290922947 ], [ -94.833666881976157, 30.127346290790186 ], [ -94.833394882043237, 30.127616290380224 ], [ -94.833299882272414, 30.127660290650141 ], [ -94.833217882117808, 30.127660291074896 ], [ -94.833122882401696, 30.127566291146184 ], [ -94.833103881747746, 30.127478291049648 ], [ -94.833141881629345, 30.12691729019258 ], [ -94.833090881933927, 30.126785290670142 ], [ -94.832976881921994, 30.126703290809697 ], [ -94.832299881974279, 30.126455290521481 ], [ -94.832192881598488, 30.126392290129246 ], [ -94.832160881541824, 30.126373290548859 ], [ -94.831989881550825, 30.12615329050864 ], [ -94.831863881395776, 30.126060290294305 ], [ -94.831483881828106, 30.125955290683024 ], [ -94.831205881178292, 30.125796290617579 ], [ -94.831053881105944, 30.125669290643433 ], [ -94.83100288176, 30.125592290427551 ], [ -94.830926881312408, 30.125312289932058 ], [ -94.830806880719862, 30.125196290730962 ], [ -94.83001588132673, 30.125114289911128 ], [ -94.829838881055792, 30.125042290737802 ], [ -94.829787880650244, 30.125004289995189 ], [ -94.82971088102876, 30.12495128990728 ], [ -94.829646881210735, 30.124885290603242 ], [ -94.829627880957247, 30.124847290094429 ], [ -94.829640880660378, 30.124632290376855 ], [ -94.829621881195749, 30.124456290394765 ], [ -94.829583880499428, 30.124396290513989 ], [ -94.829513881097242, 30.124357290624122 ], [ -94.829399881352543, 30.124346289874239 ], [ -94.829197881233924, 30.124407290258691 ], [ -94.829115881076987, 30.124446289947763 ], [ -94.828855881094185, 30.124605290195845 ], [ -94.828767880802403, 30.124710290081136 ], [ -94.828647880642364, 30.12480329075596 ], [ -94.82841388015774, 30.124864290343879 ], [ -94.828204880563135, 30.124891290585072 ], [ -94.828020880840896, 30.124963290031062 ], [ -94.828010880855473, 30.125004290742211 ], [ -94.827921880686915, 30.125114290699024 ], [ -94.827877880956649, 30.125488290662481 ], [ -94.827789880130695, 30.125587290598588 ], [ -94.827675880307567, 30.125637290757922 ], [ -94.827567880707747, 30.125642290779751 ], [ -94.827396880812259, 30.125604290418902 ], [ -94.827219880289292, 30.125499290652062 ], [ -94.827048880513942, 30.125296290666849 ], [ -94.826903880003798, 30.125004290760575 ], [ -94.826819880578029, 30.124847290648045 ], [ -94.82675587969868, 30.124693290585217 ], [ -94.826740880645374, 30.124642290409767 ], [ -94.826717879986163, 30.124561289967083 ], [ -94.826711880365778, 30.124374289985216 ], [ -94.826730880591384, 30.124039290700324 ], [ -94.826717879846342, 30.123940290279126 ], [ -94.826685879890732, 30.123902290283244 ], [ -94.826616880492224, 30.123880290552329 ], [ -94.826287879620764, 30.123830289935523 ], [ -94.82619888036028, 30.12379229002077 ], [ -94.826078880321134, 30.123709289804221 ], [ -94.82602188000682, 30.123687290277427 ], [ -94.825939879563805, 30.123682289734081 ], [ -94.825661879801785, 30.123715290181281 ], [ -94.825439879397621, 30.123764290157837 ], [ -94.824933879668876, 30.123858290687085 ], [ -94.825009880144975, 30.123984289853837 ], [ -94.825134879977597, 30.124150290305426 ], [ -94.825155879694705, 30.124177290142644 ], [ -94.825243880043317, 30.124336290538128 ], [ -94.82532587940976, 30.124540290826616 ], [ -94.825344879463074, 30.124622290304075 ], [ -94.825420879737464, 30.124743290030416 ], [ -94.825553879431041, 30.124749290839514 ], [ -94.825635879419849, 30.124837290858526 ], [ -94.825753879769195, 30.124932290252136 ], [ -94.825838879621287, 30.12500129032815 ], [ -94.825865880081551, 30.125148290204638 ], [ -94.825934879529797, 30.125218290232695 ], [ -94.825787879915609, 30.125225290086519 ], [ -94.82535087973902, 30.125248290426526 ], [ -94.82520487944241, 30.125256290163207 ], [ -94.82541287947555, 30.125844290891457 ], [ -94.827019880281995, 30.127366290529363 ], [ -94.8271118802773, 30.127453290846372 ], [ -94.827392880219946, 30.128119291390938 ], [ -94.827311880825732, 30.12875029079299 ], [ -94.826989880770995, 30.12939229111716 ], [ -94.826383880681362, 30.129683291285556 ], [ -94.825471879637846, 30.129790291730366 ], [ -94.820762878881425, 30.129489291452245 ], [ -94.819972878890169, 30.129379291730032 ], [ -94.818002877905684, 30.128597291461944 ], [ -94.816675877395838, 30.127976291058367 ], [ -94.815735877172088, 30.127786291310674 ], [ -94.814774876754782, 30.127812291463496 ], [ -94.813074877231557, 30.128068291813044 ], [ -94.812606876516426, 30.128316291916356 ], [ -94.81252187625293, 30.128382291829592 ], [ -94.812095876692723, 30.12871029164798 ], [ -94.811751876865287, 30.12971629233256 ], [ -94.811563876557386, 30.130591291773595 ], [ -94.811529876039216, 30.131286292196467 ], [ -94.811938876164305, 30.131919292702516 ], [ -94.81223487689671, 30.132408292665655 ], [ -94.813260877030956, 30.132799292542185 ], [ -94.814348876990167, 30.133027292215644 ], [ -94.815245877406383, 30.132927292359938 ], [ -94.816215878068078, 30.132794292829981 ], [ -94.818010878264076, 30.132658291981983 ], [ -94.819011878828803, 30.132726292594572 ], [ -94.819941878669724, 30.13287629224876 ], [ -94.820570879279316, 30.133304292805832 ], [ -94.820850878978362, 30.133494292746295 ], [ -94.821395879196857, 30.134424292812845 ], [ -94.821548879658437, 30.135133292690327 ], [ -94.821617879495463, 30.135447292554659 ], [ -94.821214878764721, 30.13627629297169 ], [ -94.820498879538945, 30.136648293207784 ], [ -94.819309878623699, 30.136946293292141 ], [ -94.817904878502901, 30.137125293350834 ], [ -94.814450877690604, 30.137250293106629 ], [ -94.812384876834855, 30.137713293447526 ], [ -94.809238876131772, 30.138980294164423 ], [ -94.807747875918864, 30.140081294347826 ], [ -94.80723787542658, 30.140662294408941 ], [ -94.806973875753812, 30.140921294811399 ], [ -94.806571875460833, 30.142220295013718 ], [ -94.806508875828143, 30.143876294884009 ], [ -94.806727876114394, 30.144778295531513 ], [ -94.807196875851062, 30.146161295809325 ], [ -94.807992875930367, 30.148179296037871 ], [ -94.808484876976095, 30.148794295832555 ], [ -94.808796876611353, 30.149080295650254 ], [ -94.810716877261257, 30.150842295950966 ], [ -94.811267877216352, 30.151594296603893 ], [ -94.81160587754448, 30.152389296963538 ], [ -94.811611877985214, 30.153252296359256 ], [ -94.811541877611134, 30.153793296671594 ], [ -94.811310877843169, 30.155582297392886 ], [ -94.810973877989127, 30.157665298073173 ], [ -94.81094287801578, 30.157856297500665 ], [ -94.810153877842851, 30.160919298047713 ], [ -94.810045877481613, 30.161603298112787 ], [ -94.809969877706038, 30.162084298243776 ], [ -94.810071878026804, 30.162691298498565 ], [ -94.810156878086389, 30.163196298957214 ], [ -94.810389877726962, 30.1643482994617 ], [ -94.810861878071847, 30.165368299692133 ], [ -94.811130877986713, 30.166390299862041 ], [ -94.811235878000716, 30.166757299641773 ], [ -94.811348878516299, 30.1671552992043 ], [ -94.811858878546914, 30.167665299703977 ], [ -94.812813878966523, 30.168267300054008 ], [ -94.813668878814255, 30.168193299589586 ], [ -94.814007878755675, 30.168163299986293 ], [ -94.815252879044252, 30.167841299863596 ], [ -94.816518879346276, 30.167163299450721 ], [ -94.816795879555002, 30.167015299820047 ], [ -94.817072879994427, 30.16686729964265 ], [ -94.817447879583526, 30.166666298929002 ], [ -94.817632879767373, 30.166590299643399 ], [ -94.818104880004782, 30.166395299594225 ], [ -94.818576880049704, 30.166199299557313 ], [ -94.818817879605191, 30.166099299157491 ], [ -94.819566879969202, 30.165969298653049 ], [ -94.822613880536565, 30.165874298944885 ], [ -94.82354488163098, 30.166104298789055 ], [ -94.826338881855321, 30.167940299357021 ], [ -94.827456882333053, 30.16880029948048 ], [ -94.828255882968378, 30.169452299193765 ], [ -94.828796883140399, 30.170116299324203 ], [ -94.829349882967932, 30.171029299859391 ], [ -94.829412883425235, 30.171324300035202 ], [ -94.829582883265886, 30.172117299651436 ], [ -94.829818883205988, 30.173497300052095 ], [ -94.829892883004533, 30.173930300591746 ], [ -94.829992883682905, 30.175883300664612 ], [ -94.830363883424738, 30.177477301133386 ], [ -94.831241883869339, 30.178863300965439 ], [ -94.833280884511709, 30.18158930178944 ], [ -94.834137884742489, 30.182735302195979 ], [ -94.835129885518626, 30.183764302613561 ], [ -94.836506885258643, 30.184611302054968 ], [ -94.836854885387865, 30.184751301906196 ], [ -94.838886886322214, 30.185571302161975 ], [ -94.840917887001467, 30.186391302725809 ], [ -94.841063886358512, 30.186450302113421 ], [ -94.842179887158537, 30.186654302647316 ], [ -94.843281886924572, 30.18664830225002 ], [ -94.843388887806213, 30.186626302083049 ], [ -94.845387887745773, 30.186225302341125 ], [ -94.8459898878682, 30.186245302078355 ], [ -94.84713288792986, 30.186283302575131 ], [ -94.847642887945085, 30.186404302069679 ], [ -94.848249888700735, 30.186544302131196 ], [ -94.849631888693452, 30.187140302531873 ], [ -94.849672888791105, 30.187185302191683 ], [ -94.85027488931037, 30.187842302371983 ], [ -94.850551889400137, 30.188712302619944 ], [ -94.850611888954575, 30.189502302659989 ], [ -94.850292889699759, 30.190298302564393 ], [ -94.849417888962748, 30.19111730351613 ], [ -94.848165889123095, 30.191715303072559 ], [ -94.846981888223652, 30.192247303567719 ], [ -94.845130888024585, 30.192933303985509 ], [ -94.8442738874013, 30.193206303896794 ], [ -94.843129888071999, 30.193572303980286 ], [ -94.841256887326651, 30.194574303893276 ], [ -94.84021888712526, 30.195096304667512 ], [ -94.838466886403282, 30.195595304124527 ], [ -94.837206885940361, 30.195683304930601 ], [ -94.835850885548425, 30.195507304654328 ], [ -94.834786885249201, 30.19513330434377 ], [ -94.833711885628603, 30.194969304472785 ], [ -94.832550885337, 30.194778304880558 ], [ -94.832248884706061, 30.194729304416356 ], [ -94.831110884942461, 30.194825304964819 ], [ -94.830384884636999, 30.195189305018904 ], [ -94.829710884695032, 30.19584430475156 ], [ -94.829339884487808, 30.196332304856323 ], [ -94.829177884099209, 30.197150305094294 ], [ -94.829141884487953, 30.19822530553823 ], [ -94.829478884143853, 30.198975305201131 ], [ -94.830280884665754, 30.200762306061776 ], [ -94.830783885196524, 30.201935306472564 ], [ -94.83080088451652, 30.202904306329504 ], [ -94.830634884691847, 30.203956306549898 ], [ -94.830138884523848, 30.204813306865795 ], [ -94.828293884049955, 30.208000307641615 ], [ -94.827074884245391, 30.210196307446147 ], [ -94.826414884093339, 30.211499308212481 ], [ -94.826366884186044, 30.211594308288717 ], [ -94.825036883926884, 30.213555308466937 ], [ -94.82463288329555, 30.214152308492014 ], [ -94.824069883703672, 30.214886309360082 ], [ -94.821777883549373, 30.217871309961701 ], [ -94.821042882706962, 30.219285310367255 ], [ -94.820968883385547, 30.219749310364978 ], [ -94.820851883539461, 30.220499310654212 ], [ -94.820650882654675, 30.222254310453838 ], [ -94.820534882912312, 30.223532310974548 ], [ -94.820239883279569, 30.224674311375352 ], [ -94.819371883158226, 30.225412311093976 ], [ -94.818279882957796, 30.226056311864397 ], [ -94.818215882526516, 30.226078311065095 ], [ -94.815044881723452, 30.227163311691484 ], [ -94.814574881547571, 30.227266312043756 ], [ -94.812855881616926, 30.227643311761184 ], [ -94.812125880889354, 30.2276533121514 ], [ -94.812104881328665, 30.227653312403213 ], [ -94.810985880446026, 30.227336311839966 ], [ -94.809975880076976, 30.226848311733391 ], [ -94.809370880204654, 30.226201311996352 ], [ -94.809145880076599, 30.225401311573616 ], [ -94.808674880613665, 30.224570311112789 ], [ -94.808312879659198, 30.224250311267848 ], [ -94.808269880399635, 30.224212311534043 ], [ -94.807587879352369, 30.223962310953112 ], [ -94.807030879525101, 30.223913311654204 ], [ -94.806662879851217, 30.224071311350215 ], [ -94.806356879206348, 30.224583311408306 ], [ -94.806312880063317, 30.225222311596522 ], [ -94.806355879800677, 30.225410311288968 ], [ -94.806500879321618, 30.226028312194579 ], [ -94.806522879533134, 30.226124311613599 ], [ -94.807077879591304, 30.2275873123038 ], [ -94.807654880307282, 30.228767311988115 ], [ -94.807984880252718, 30.230152312210592 ], [ -94.808147880134939, 30.231498313261874 ], [ -94.808187880787713, 30.232184313060369 ], [ -94.80805587991658, 30.232557313044953 ], [ -94.807604880223067, 30.23383031379549 ], [ -94.807562880797434, 30.233942313279652 ], [ -94.807136879715856, 30.235073314081145 ], [ -94.806898880087218, 30.235778313626266 ], [ -94.806706880075083, 30.236475314380918 ], [ -94.806808879738696, 30.237459314000386 ], [ -94.807048879852815, 30.238451314525072 ], [ -94.80736788026708, 30.23907131439449 ], [ -94.807669880098217, 30.239659314477951 ], [ -94.807972880675095, 30.240248314241025 ], [ -94.808182881239389, 30.240657314367922 ], [ -94.808672880880195, 30.241750315110128 ], [ -94.808808880848673, 30.242054314860205 ], [ -94.808945881450342, 30.242357314721275 ], [ -94.809390880949621, 30.243349315293518 ], [ -94.810381881117891, 30.246858315740457 ], [ -94.81035388182903, 30.248401315932234 ], [ -94.810215882195763, 30.249494316185313 ], [ -94.809851881283691, 30.250220316729678 ], [ -94.809811881934635, 30.250421316960661 ], [ -94.809733881484036, 30.250555316716873 ], [ -94.808955881261369, 30.251055316996712 ], [ -94.808645881829932, 30.251120316460486 ], [ -94.808518881734756, 30.251126316794256 ], [ -94.808375880922739, 30.251134316561561 ], [ -94.808064881475246, 30.251151316553663 ], [ -94.807562880872396, 30.251149316708442 ], [ -94.807291881431127, 30.251114317282266 ], [ -94.806480880473345, 30.250843316585321 ], [ -94.80609488044891, 30.250606317044287 ], [ -94.805880880979458, 30.250298316546157 ], [ -94.805826880926304, 30.250221317023552 ], [ -94.805347880627366, 30.249436316615164 ], [ -94.805197879848464, 30.248291316290373 ], [ -94.805247880202714, 30.246902316244462 ], [ -94.805655879911782, 30.244740315615068 ], [ -94.805848879775212, 30.242453315416391 ], [ -94.806261880553762, 30.241004314735676 ], [ -94.806367880376527, 30.240215314354884 ], [ -94.806409880457451, 30.239905314576408 ], [ -94.80501388011902, 30.239259314881203 ], [ -94.804729880102869, 30.239131314651246 ], [ -94.803603879176393, 30.238622314453512 ], [ -94.80269287888926, 30.238537314401899 ], [ -94.801880879078752, 30.238790314660182 ], [ -94.801472879161508, 30.239215314543095 ], [ -94.801203879015645, 30.239744314492999 ], [ -94.801095878562521, 30.241013314955076 ], [ -94.800972879309413, 30.241903314985013 ], [ -94.801023878754904, 30.242156315074446 ], [ -94.80110587872133, 30.242565315401158 ], [ -94.801362879231306, 30.243442316015607 ], [ -94.801346879116323, 30.244112315423941 ], [ -94.801119879358026, 30.245383315684659 ], [ -94.800527879222244, 30.246563316214981 ], [ -94.799700878942943, 30.247445316839109 ], [ -94.798882878914284, 30.247908317023722 ], [ -94.797487878176398, 30.248650317098949 ], [ -94.794914877273698, 30.24910531704241 ], [ -94.793197876759109, 30.249377317364644 ], [ -94.791675877019799, 30.249882317366865 ], [ -94.791377877323924, 30.250216317062037 ], [ -94.790969876555778, 30.250373317123088 ], [ -94.790324876762284, 30.250683317344173 ], [ -94.789622876125165, 30.251516317328239 ], [ -94.789194876381046, 30.25232631823922 ], [ -94.789014876014122, 30.253131318058035 ], [ -94.789545876401391, 30.254579317873485 ], [ -94.790684876522221, 30.256453318215197 ], [ -94.791071876992319, 30.257724318815196 ], [ -94.790757877512647, 30.259394319312189 ], [ -94.789842877103851, 30.261290320011984 ], [ -94.789821877166702, 30.261334319614754 ], [ -94.788762876411184, 30.263540320517702 ], [ -94.788723876390293, 30.263658319905772 ], [ -94.78855687708851, 30.264168319892804 ], [ -94.788388876746595, 30.264678320801469 ], [ -94.787807877015936, 30.266441321124919 ], [ -94.787543877101655, 30.268757321217706 ], [ -94.787871876953673, 30.270197321653175 ], [ -94.788489876948418, 30.271380321574764 ], [ -94.7886638775541, 30.271713322032113 ], [ -94.789128877526736, 30.271992321867089 ], [ -94.790137877924138, 30.272596321525942 ], [ -94.791166878241768, 30.272604321695159 ], [ -94.791450877490036, 30.272453321797421 ], [ -94.791678877756283, 30.272333321499737 ], [ -94.791905877927533, 30.272212321938092 ], [ -94.791948877659109, 30.272189321887499 ], [ -94.793453878728315, 30.271053321125564 ], [ -94.795011878336851, 30.269919320764629 ], [ -94.796084878605299, 30.269329321065538 ], [ -94.796251879201208, 30.26930632062648 ], [ -94.796863879636334, 30.269221321157772 ], [ -94.797363879791007, 30.269281320677742 ], [ -94.797937878968966, 30.26935032123653 ], [ -94.7981548794384, 30.269424321024463 ], [ -94.799332880296163, 30.269829320656942 ], [ -94.80030688057424, 30.270652321309164 ], [ -94.800639880729776, 30.271647321393829 ], [ -94.800512879777827, 30.27245332161641 ], [ -94.800481880520351, 30.272648321601938 ], [ -94.800147880096688, 30.273591321645391 ], [ -94.799601880192355, 30.274524321569821 ], [ -94.799158880528822, 30.275320321907728 ], [ -94.799002879553569, 30.27549032228772 ], [ -94.798241879383525, 30.276316322710507 ], [ -94.798026879748278, 30.277347322949101 ], [ -94.798045879906198, 30.277557322411507 ], [ -94.798194879435727, 30.277599322251632 ], [ -94.798228879574978, 30.27760832260677 ], [ -94.798342879636138, 30.277641322340589 ], [ -94.798604879966774, 30.277715322541301 ], [ -94.798652880540502, 30.27772932238198 ], [ -94.798778879662564, 30.277764322590862 ], [ -94.798962879678669, 30.277816322406036 ], [ -94.798981880341586, 30.277821322668007 ], [ -94.799342880555002, 30.277919322618111 ], [ -94.800482880687426, 30.278230323154848 ], [ -94.800753881007765, 30.27830432256226 ], [ -94.800863881020447, 30.278334323176093 ], [ -94.804222881928865, 30.279245322861499 ], [ -94.804820881974422, 30.279413322990269 ], [ -94.805184881805715, 30.279515323184604 ], [ -94.808988882514583, 30.280566322683121 ], [ -94.811358883745413, 30.281202322845989 ], [ -94.81250388332441, 30.281520322936039 ], [ -94.813984884560156, 30.281916322753641 ], [ -94.81411888378743, 30.281953323319108 ], [ -94.815152884298257, 30.28223432309548 ], [ -94.815314884634176, 30.282278323130164 ], [ -94.815701884840465, 30.282383323073333 ], [ -94.81623488478337, 30.282529323453115 ], [ -94.816910884825688, 30.282715323084073 ], [ -94.818230885229411, 30.283078322871955 ], [ -94.818903884995834, 30.283263322767116 ], [ -94.819835885710589, 30.283520322666075 ], [ -94.820099885641241, 30.283593322899129 ], [ -94.820162886188811, 30.283610323067876 ], [ -94.820177885705107, 30.28361532337312 ], [ -94.820354885577856, 30.283664322905313 ], [ -94.820418886087339, 30.283682323412542 ], [ -94.820490885446674, 30.283702323200586 ], [ -94.820534885486865, 30.283714323338721 ], [ -94.820708886397284, 30.283761322969518 ], [ -94.820782885859785, 30.283781323275555 ], [ -94.822255885999297, 30.284189323275939 ], [ -94.823312886514174, 30.28447532281659 ], [ -94.825813887813311, 30.285154323592938 ], [ -94.828087888241726, 30.285775323264133 ], [ -94.83090688889763, 30.286547323768865 ], [ -94.831050889127923, 30.286587323574437 ], [ -94.833439889382888, 30.287235323096176 ], [ -94.833552889059291, 30.287266323315794 ], [ -94.833893889666868, 30.287361323247445 ], [ -94.834007889667888, 30.28739332344043 ], [ -94.836141890209547, 30.287985323719848 ], [ -94.837989890720564, 30.288486323494602 ], [ -94.838193891161907, 30.288539323099464 ], [ -94.839394890985488, 30.288850323097492 ], [ -94.840893891733714, 30.289271323578014 ], [ -94.843142892405709, 30.289882323776702 ], [ -94.845399892652452, 30.290489323207595 ], [ -94.846910893430831, 30.290925323420019 ], [ -94.84840689397727, 30.291400323907375 ], [ -94.849790893456557, 30.291906323494231 ], [ -94.850660893949666, 30.292263323611962 ], [ -94.852581894127582, 30.293052324145975 ], [ -94.854145894833735, 30.293707323551949 ], [ -94.854671895425497, 30.29392532371207 ], [ -94.854889895265586, 30.294016324185549 ], [ -94.855798895964838, 30.294393323858525 ], [ -94.856787896008896, 30.294804324261708 ], [ -94.859187896002325, 30.295781324378641 ], [ -94.860318896991231, 30.296242324255449 ], [ -94.861020897022101, 30.296529324375147 ], [ -94.861320896800578, 30.296657324260469 ], [ -94.86242389740201, 30.297127324668672 ], [ -94.864323898155504, 30.297911324595624 ], [ -94.86458789748643, 30.298020324493706 ], [ -94.86491089795949, 30.298138324224023 ], [ -94.865338898331004, 30.298295324673731 ], [ -94.865486898113588, 30.298349324975327 ], [ -94.865616897752915, 30.298386324274446 ], [ -94.866463898636056, 30.298627324385777 ], [ -94.86662189833865, 30.298672324221698 ], [ -94.866747898853703, 30.298705324758128 ], [ -94.867061898746087, 30.29878832468702 ], [ -94.868006898652141, 30.299040324740638 ], [ -94.868071899391168, 30.299058324489145 ], [ -94.868320898630259, 30.299128324875898 ], [ -94.869524898834996, 30.299468324564543 ], [ -94.870989899819236, 30.299870324453629 ], [ -94.871042900118439, 30.299885324707535 ], [ -94.872932899806372, 30.300432324537159 ], [ -94.875119901122375, 30.301041324767525 ], [ -94.879201902074371, 30.302194324526539 ], [ -94.879899901641565, 30.302391324524194 ], [ -94.88192790288592, 30.302943324751084 ], [ -94.88240090285781, 30.303072325145045 ], [ -94.883820903058606, 30.303459325000361 ], [ -94.884294903100852, 30.303588324754351 ], [ -94.886101904164065, 30.304078325201772 ], [ -94.887483904030603, 30.304431325116891 ], [ -94.891269905592679, 30.305481324861688 ], [ -94.89346190617448, 30.306091325398267 ], [ -94.894406905970555, 30.306351324806013 ], [ -94.896065906388088, 30.306792324831306 ], [ -94.896151906438462, 30.306815325248699 ], [ -94.902657907988555, 30.308603324932001 ], [ -94.904213908727598, 30.309022325470171 ], [ -94.904360908472881, 30.309062325033583 ], [ -94.906898909656093, 30.309771325398962 ], [ -94.907670910003375, 30.309984325793163 ], [ -94.909987910474328, 30.310623325558733 ], [ -94.910760910586433, 30.310837325574827 ], [ -94.915227912046745, 30.312068325681746 ], [ -94.915674911793857, 30.312191325503228 ], [ -94.91688691238231, 30.312506326035177 ], [ -94.922361913950397, 30.313984325399598 ], [ -94.92297191369822, 30.314153325627089 ], [ -94.923089914113149, 30.314186326106956 ], [ -94.924186913911498, 30.314491326115292 ], [ -94.928643914809726, 30.315718326079026 ], [ -94.931451916357204, 30.316490326019956 ], [ -94.933112916497706, 30.316948325958425 ], [ -94.933804916359634, 30.317138326099787 ], [ -94.935880917615606, 30.317711325669638 ], [ -94.936573917177384, 30.317902326097293 ], [ -94.936682917460132, 30.317929325933125 ], [ -94.937131917423216, 30.318041325774558 ], [ -94.937171917353055, 30.318051325780228 ], [ -94.938965918541413, 30.318510325654017 ], [ -94.93956491849039, 30.318664325997148 ], [ -94.939651918418477, 30.318687326259354 ], [ -94.939791918393269, 30.318726326091685 ], [ -94.939912918015338, 30.318759326004272 ], [ -94.940000918428154, 30.31878332646577 ], [ -94.941194919198352, 30.319109325775187 ], [ -94.944776919253769, 30.320089326338248 ], [ -94.945970920474821, 30.320416326536417 ], [ -94.94602192037253, 30.320430326516117 ], [ -94.946301920078213, 30.320506325842132 ], [ -94.947298920093999, 30.32077932647119 ], [ -94.947630920257453, 30.320870326412251 ], [ -94.948128920735456, 30.321006326077367 ], [ -94.949087920592589, 30.321268325971435 ], [ -94.949622921189444, 30.321417326549998 ], [ -94.949934921086864, 30.321504326677356 ], [ -94.950120921380304, 30.321556326072894 ], [ -94.950149921526759, 30.322130326768875 ], [ -94.950166921212826, 30.322454326544381 ], [ -94.950228920871879, 30.323419326246789 ], [ -94.950262921384748, 30.32385132659762 ], [ -94.950308921486922, 30.324425326635726 ], [ -94.950315921254372, 30.324544327203785 ], [ -94.950336921101496, 30.324908326626581 ], [ -94.950420921755651, 30.326359326965132 ], [ -94.950448920966025, 30.326843327430211 ], [ -94.950472921450157, 30.327294327362274 ], [ -94.950507921565645, 30.327931327440048 ], [ -94.950546921442893, 30.32837032759036 ], [ -94.950600921345256, 30.328644327499372 ], [ -94.950652921624354, 30.328905327817669 ], [ -94.950704921643649, 30.329085327496241 ], [ -94.950755921778907, 30.32929232766671 ], [ -94.950929921488722, 30.32973132831151 ], [ -94.951264921967521, 30.3304353279675 ], [ -94.952548922203903, 30.333129328564702 ], [ -94.952936922348087, 30.333883328436297 ], [ -94.95306192230197, 30.334149328772742 ], [ -94.953439922845462, 30.334947328612259 ], [ -94.953565922931631, 30.335214328576008 ], [ -94.95363092274448, 30.335350328660422 ], [ -94.953825923179949, 30.335761328849937 ], [ -94.953890922967744, 30.335899328870767 ], [ -94.95406392313707, 30.33624932879798 ], [ -94.954582922714209, 30.337301329491659 ], [ -94.954755923115272, 30.337652329129909 ], [ -94.955050922762837, 30.338262329541386 ], [ -94.955394923229932, 30.338972329501686 ], [ -94.955834923325966, 30.33983132985599 ], [ -94.955956923082098, 30.340083329393011 ], [ -94.956252923366193, 30.340693329914103 ], [ -94.956456923495693, 30.341108330443141 ], [ -94.95707192355539, 30.342353330025745 ], [ -94.957276923793771, 30.342769329967922 ], [ -94.957604924386843, 30.34343333050089 ], [ -94.95787392429456, 30.344001330720637 ], [ -94.958063924482772, 30.344403330550112 ], [ -94.958989925009817, 30.346270330641467 ], [ -94.95938292504637, 30.347105331314314 ], [ -94.959669925055351, 30.347697331098722 ], [ -94.960269925088014, 30.348929331698951 ], [ -94.960803924981747, 30.350003332103846 ], [ -94.961133925839476, 30.350639332053735 ], [ -94.961388925482993, 30.351090331963388 ], [ -94.961517925900097, 30.351317331580113 ], [ -94.961863925937493, 30.351901332029367 ], [ -94.962475925748009, 30.352868332495166 ], [ -94.962958925627802, 30.353586332517462 ], [ -94.963213926335001, 30.353943332473584 ], [ -94.963813926579846, 30.354743332555536 ], [ -94.964363926112867, 30.355423332382266 ], [ -94.965614926817651, 30.357039333066982 ], [ -94.966039927057864, 30.357588333271856 ], [ -94.966781927203527, 30.35852333331486 ], [ -94.966969927446229, 30.358795333465103 ], [ -94.967079927235048, 30.3589833337541 ], [ -94.967207926897643, 30.359229333415346 ], [ -94.967256927345574, 30.359322333086958 ], [ -94.967484927853462, 30.359827333297471 ], [ -94.967542927243258, 30.35999033338943 ], [ -94.967636927252499, 30.360252333320652 ], [ -94.967723926983467, 30.360511333921359 ], [ -94.967750928027655, 30.360591333606692 ], [ -94.967861927313294, 30.361096334122685 ], [ -94.967885927444996, 30.361314333853443 ], [ -94.96791792751759, 30.361587334194809 ], [ -94.96801892730771, 30.362446333622614 ], [ -94.968037928162673, 30.362602334468253 ], [ -94.968194927859685, 30.363349334603644 ], [ -94.968320928251728, 30.363784334693879 ], [ -94.968552927624927, 30.364451334209821 ], [ -94.968709928303795, 30.364943334241183 ], [ -94.968974927569477, 30.365767334628394 ], [ -94.969014927628578, 30.365898334620077 ], [ -94.969134928425902, 30.366291334475754 ], [ -94.969174928686883, 30.366423334421768 ], [ -94.969305927746191, 30.366829334808173 ], [ -94.969698928519364, 30.368050334778335 ], [ -94.969830928692502, 30.36845733530464 ], [ -94.969844928021672, 30.368500334868095 ], [ -94.969971928098786, 30.368896335067813 ], [ -94.970352928166918, 30.370078335000379 ], [ -94.970396928719765, 30.370214335737639 ], [ -94.970538928922451, 30.370654335468295 ], [ -94.970588928662607, 30.370822335179334 ], [ -94.970738928609407, 30.371327335956295 ], [ -94.970789929121182, 30.371496335681236 ], [ -94.970990928626293, 30.372243335545487 ], [ -94.971593928911744, 30.374485336742396 ], [ -94.971683929423875, 30.374820336298093 ], [ -94.971786929595226, 30.375235336118372 ], [ -94.971923929434865, 30.375846336658924 ], [ -94.971936929074758, 30.375924336937221 ], [ -94.972057929159831, 30.376644336698003 ], [ -94.972105929102398, 30.376986336498025 ], [ -94.972170928974407, 30.377589336679314 ], [ -94.972204929764771, 30.378023337260444 ], [ -94.972260929098724, 30.378727336928907 ], [ -94.97226992907413, 30.378937337502855 ], [ -94.972297929679087, 30.379567337391876 ], [ -94.97230792918738, 30.379777337046033 ], [ -94.972325929134627, 30.38009533731449 ], [ -94.972357929835979, 30.380638337960704 ], [ -94.972375929960606, 30.381050337516808 ], [ -94.972389929601675, 30.381369337252021 ], [ -94.972398929539679, 30.381582337635688 ], [ -94.972456930243197, 30.382266338227598 ], [ -94.972567930177718, 30.384367338184678 ], [ -94.97260692964953, 30.385344338657738 ], [ -94.97343892994094, 30.384873338642898 ], [ -94.97461392993543, 30.384202337949983 ], [ -94.976412930790886, 30.383178338220446 ], [ -94.977885931411805, 30.382318337398015 ], [ -94.978131931531209, 30.38217733763285 ], [ -94.9793079314463, 30.381506337712192 ], [ -94.980534931300326, 30.380795336926703 ], [ -94.982301932625205, 30.379772337428655 ], [ -94.983430932697075, 30.379131337038473 ], [ -94.984229932808844, 30.378684336738363 ], [ -94.984786932410572, 30.378373336453091 ], [ -94.984810932685221, 30.378360336846988 ], [ -94.985406932754785, 30.378025336753435 ], [ -94.98546693265034, 30.377990336911594 ], [ -94.985974933011704, 30.37769333638207 ], [ -94.986724933535342, 30.377257336214171 ], [ -94.987509933787734, 30.376816336366741 ], [ -94.988023933185431, 30.376529336552451 ], [ -94.988891934126784, 30.376022336236556 ], [ -94.990435933985836, 30.375123336135854 ], [ -94.991337934019995, 30.37461733604286 ], [ -94.991504934539577, 30.374519335971303 ], [ -94.992373934706606, 30.3740153354717 ], [ -94.992757934592035, 30.373797335113057 ], [ -94.993912934404221, 30.373145335611138 ], [ -94.99425693450317, 30.3729513355599 ], [ -94.994297935104399, 30.372927335440963 ], [ -94.994758934881801, 30.372656334852287 ], [ -94.995458934763391, 30.372245335222878 ], [ -94.996153935129669, 30.371862335137365 ], [ -94.996622935402314, 30.371605334380128 ], [ -94.997275935328616, 30.371242334854546 ], [ -94.998198936211281, 30.370731334797338 ], [ -94.999219936069636, 30.3701253348667 ], [ -94.999759936651841, 30.369806334586396 ], [ -94.999863936523099, 30.369745334449767 ], [ -95.000085936674125, 30.369612334711846 ], [ -95.000102936454056, 30.369603334269684 ], [ -95.000746936589707, 30.369205334614549 ], [ -95.000967935960091, 30.369070334401844 ], [ -95.001185936089485, 30.368936334260209 ], [ -95.001366936686082, 30.368838334080444 ], [ -95.002590936908874, 30.368186333752927 ], [ -95.002670936525604, 30.368144333472475 ], [ -95.003008936463971, 30.367989333453945 ], [ -95.003394937285861, 30.367783333441992 ], [ -95.003460936555754, 30.367748333958154 ], [ -95.004503936990218, 30.367140333389173 ], [ -95.004875937841632, 30.366924333729674 ], [ -95.005403937601017, 30.366608333135449 ], [ -95.005623937789224, 30.366478333027242 ], [ -95.006051937164642, 30.366249333651773 ], [ -95.006744937691266, 30.365935333211059 ], [ -95.006974937841932, 30.365842333098794 ], [ -95.007066937887274, 30.365808333039681 ], [ -95.00764693762909, 30.365600332794319 ], [ -95.007986938561373, 30.365514333122835 ], [ -95.009006938770412, 30.365330332918202 ], [ -95.009348938481395, 30.36526933289452 ], [ -95.009393938202763, 30.365261333414999 ], [ -95.009452938602863, 30.365250333080088 ], [ -95.009826938232294, 30.36518533306046 ], [ -95.009939939050611, 30.365165332988337 ], [ -95.011104938548158, 30.364962332543914 ], [ -95.011714938766374, 30.36486433311055 ], [ -95.011977938756402, 30.364823332998153 ], [ -95.012307939065835, 30.364771332778432 ], [ -95.014015939827203, 30.364502332973245 ], [ -95.014522940218924, 30.364423333086766 ], [ -95.016687939993176, 30.364064332423975 ], [ -95.018183940430305, 30.363806332717658 ], [ -95.019131940527018, 30.363648332276011 ], [ -95.020540941344535, 30.363415332321534 ], [ -95.02083694124174, 30.363356332037714 ], [ -95.021328941386386, 30.363275332471826 ], [ -95.022781942060135, 30.363041332573335 ], [ -95.022807941765493, 30.36303633230829 ], [ -95.023299941478001, 30.362948331756151 ], [ -95.023351941791589, 30.362938331953153 ], [ -95.023454941488225, 30.362919331671012 ], [ -95.023506942486918, 30.36290833180335 ], [ -95.023559941549152, 30.362900331648106 ], [ -95.023784941830485, 30.362863332458698 ], [ -95.024463941777583, 30.362759331637168 ], [ -95.024649941949448, 30.362729331860102 ], [ -95.024689941934326, 30.362723331584057 ], [ -95.025382941981846, 30.362614331836017 ], [ -95.025777942940039, 30.362552332413873 ], [ -95.027462943007123, 30.36230733152097 ], [ -95.028157942871601, 30.362208331713777 ], [ -95.02950294334444, 30.36202533138308 ], [ -95.034819945043409, 30.361312331145768 ], [ -95.036118945087992, 30.361146331642832 ], [ -95.037183945747373, 30.361054331362421 ], [ -95.037212945734183, 30.361049330803997 ], [ -95.03729894528729, 30.361036331319895 ], [ -95.037327945144824, 30.361033330778653 ], [ -95.037403945806972, 30.361022331593102 ], [ -95.037604945436513, 30.360988331635539 ], [ -95.038242945463324, 30.360881331377666 ], [ -95.038388945744131, 30.360849331366335 ], [ -95.038431945514148, 30.360834331069029 ], [ -95.038552946198976, 30.360804330956274 ], [ -95.038699945324581, 30.360750331492316 ], [ -95.038863946239232, 30.360687331223346 ], [ -95.03902394572151, 30.36062333140104 ], [ -95.039203945414101, 30.360548331206939 ], [ -95.039729945877056, 30.360313331125123 ], [ -95.040557946177742, 30.359946330647052 ], [ -95.040951946606796, 30.359759330934381 ], [ -95.041246946529256, 30.359618331043865 ], [ -95.042572946524729, 30.359010330388575 ], [ -95.042777946324648, 30.358904330389759 ], [ -95.043774947415244, 30.35839533046623 ], [ -95.043817946794107, 30.358371330083529 ], [ -95.043949946801646, 30.358302330369721 ], [ -95.04399494693773, 30.358279330002638 ], [ -95.044868946930436, 30.357832330450556 ], [ -95.045565947921219, 30.357503330097977 ], [ -95.045744947152443, 30.357428329928393 ], [ -95.046405947204207, 30.357155330131821 ], [ -95.047251947520181, 30.356805330383381 ], [ -95.048681948267969, 30.356225330048904 ], [ -95.049593948606955, 30.35589532937361 ], [ -95.050232948527082, 30.355673330071856 ], [ -95.050947948601618, 30.355412329532609 ], [ -95.051186948804599, 30.355315329496115 ], [ -95.052993949387329, 30.354590329484825 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 225, "Tract": "48291700900", "Area_SqMi": 65.482738871294387, "total_2009": 153, "total_2010": 133, "total_2011": 174, "total_2012": 564, "total_2013": 472, "total_2014": 461, "total_2015": 492, "total_2016": 433, "total_2017": 419, "total_2018": 394, "total_2019": 417, "total_2020": 369, "age1": 108, "age2": 203, "age3": 135, "earn1": 72, "earn2": 150, "earn3": 224, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 77, "naics_s05": 16, "naics_s06": 63, "naics_s07": 30, "naics_s08": 110, "naics_s09": 0, "naics_s10": 0, "naics_s11": 16, "naics_s12": 6, "naics_s13": 0, "naics_s14": 16, "naics_s15": 12, "naics_s16": 19, "naics_s17": 0, "naics_s18": 10, "naics_s19": 18, "naics_s20": 50, "race1": 360, "race2": 64, "race3": 1, "race4": 14, "race5": 2, "race6": 5, "ethnicity1": 321, "ethnicity2": 125, "edu1": 71, "edu2": 96, "edu3": 111, "edu4": 60, "Shape_Length": 209546.55912112552, "Shape_Area": 1825546684.904017, "total_2021": 425, "total_2022": 446 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.072473942002816, 30.103074277712615 ], [ -95.072609942883474, 30.103059277789868 ], [ -95.072189942615438, 30.101949276851037 ], [ -95.064410939394151, 30.081398273608482 ], [ -95.064383939105738, 30.081331273039183 ], [ -95.064303939219556, 30.081129273376508 ], [ -95.064277939283173, 30.081063273311816 ], [ -95.063927938743674, 30.080182272929534 ], [ -95.062899938538877, 30.077591272233136 ], [ -95.062880938462044, 30.077542272367555 ], [ -95.062548938235281, 30.076656272235368 ], [ -95.062256938117741, 30.075853272326185 ], [ -95.06138093792363, 30.073445272080512 ], [ -95.06108993861254, 30.072643271410495 ], [ -95.060744938095297, 30.071696271149271 ], [ -95.059711937221422, 30.068855270906234 ], [ -95.059367937685124, 30.067908270886573 ], [ -95.059054937153491, 30.0670482707791 ], [ -95.058116937366336, 30.064468270306357 ], [ -95.057804937098908, 30.063609269764719 ], [ -95.056887936649687, 30.06108726959194 ], [ -95.05685393609221, 30.060995268960855 ], [ -95.056850936757613, 30.060985269798071 ], [ -95.049824934376076, 30.042042265663898 ], [ -95.049716933812121, 30.041770265500634 ], [ -95.049606933822005, 30.041495265543691 ], [ -95.048544933021063, 30.038875264940319 ], [ -95.048495933092397, 30.038731265049829 ], [ -95.048397933189463, 30.038769264712052 ], [ -95.047669933462828, 30.039110265028288 ], [ -95.046964933505791, 30.039480265609431 ], [ -95.046549932939001, 30.039721265296844 ], [ -95.044875932795321, 30.04078426551996 ], [ -95.044068932362208, 30.041310266179817 ], [ -95.041847931798202, 30.042848266116351 ], [ -95.04183893228776, 30.042854266424335 ], [ -95.041504931665983, 30.043083266529997 ], [ -95.041119931500006, 30.043348266355459 ], [ -95.040534932044523, 30.043744266745083 ], [ -95.040475931517022, 30.043785266736549 ], [ -95.040137931912739, 30.044026266711274 ], [ -95.040007931863215, 30.044118266300071 ], [ -95.039781931367145, 30.044273266133207 ], [ -95.03871393166159, 30.045010266477853 ], [ -95.038357930825853, 30.045256266593217 ], [ -95.038185931182696, 30.045373266737656 ], [ -95.038055931220939, 30.045464267052338 ], [ -95.037673930426934, 30.04572826705429 ], [ -95.037503930508322, 30.045847266953196 ], [ -95.036521930749799, 30.046528267423131 ], [ -95.036251930861141, 30.046717266991664 ], [ -95.035143930776428, 30.047497267096443 ], [ -95.034508929987638, 30.047928267853301 ], [ -95.034217930531966, 30.048120267065421 ], [ -95.033826929735653, 30.048359267729801 ], [ -95.033466930424694, 30.048565267400122 ], [ -95.032914930093199, 30.048830267834948 ], [ -95.032600930265659, 30.048956267699857 ], [ -95.032338930062082, 30.049049267971981 ], [ -95.032286930038694, 30.04906826738241 ], [ -95.031880929650512, 30.049201268161774 ], [ -95.031490929366612, 30.049320267801949 ], [ -95.031191928953064, 30.0493932677403 ], [ -95.031015929703031, 30.049426267778198 ], [ -95.030872929627876, 30.049461267703254 ], [ -95.030645929737346, 30.049500268350556 ], [ -95.030427929365842, 30.049538268022079 ], [ -95.029901929508739, 30.049609267726684 ], [ -95.0295819291822, 30.049642267579497 ], [ -95.029301929260939, 30.049660268314071 ], [ -95.029060928940225, 30.04966926771089 ], [ -95.029038929237629, 30.049670267694172 ], [ -95.028799928707571, 30.049672267763871 ], [ -95.028412929017549, 30.049666268294903 ], [ -95.027933928249425, 30.04963026792651 ], [ -95.027581928964821, 30.04958826777175 ], [ -95.027135928811973, 30.049525268201652 ], [ -95.026524927984326, 30.049418267622826 ], [ -95.025995927712259, 30.049313267697741 ], [ -95.025463928387182, 30.049195267893914 ], [ -95.024988928048927, 30.049080268102326 ], [ -95.024335927588979, 30.048913267556703 ], [ -95.023684927764705, 30.048728267782867 ], [ -95.023606927276745, 30.04870626798246 ], [ -95.02295992766183, 30.048511267665052 ], [ -95.022106927167115, 30.048225268370484 ], [ -95.021946926700849, 30.048171267822344 ], [ -95.021878926947721, 30.048145268144875 ], [ -95.021776926494155, 30.048108267499202 ], [ -95.021376926540427, 30.047965268031007 ], [ -95.020807926996468, 30.047753268242108 ], [ -95.020190926366539, 30.047499267505707 ], [ -95.020096926909218, 30.047459268234551 ], [ -95.018525925655965, 30.04679526809494 ], [ -95.017949925677584, 30.046562267938583 ], [ -95.017536926048564, 30.046447267625457 ], [ -95.017223925602025, 30.046371267283622 ], [ -95.016723925056752, 30.046261267293566 ], [ -95.01643392558428, 30.046206267828406 ], [ -95.015766925571697, 30.046082267731382 ], [ -95.015217924938085, 30.045993267652069 ], [ -95.014689924810853, 30.045923267443943 ], [ -95.014395924844436, 30.045896267620041 ], [ -95.014198924640155, 30.045879267357154 ], [ -95.013517924399196, 30.045828267659278 ], [ -95.013055924238401, 30.045809267488842 ], [ -95.012416924148965, 30.045805267524784 ], [ -95.01238092395478, 30.045805267975705 ], [ -95.011610923909203, 30.045807268134517 ], [ -95.009570924039139, 30.045815267577716 ], [ -95.009265923164634, 30.045816267429327 ], [ -95.009195923119606, 30.045816268271299 ], [ -95.008981923499036, 30.045817267495785 ], [ -95.008848923026164, 30.045818267490066 ], [ -95.008491923671812, 30.045819268317846 ], [ -95.008391923829748, 30.045820267813429 ], [ -95.007562923038392, 30.045823267879715 ], [ -95.006979923360831, 30.045819267543209 ], [ -95.004272922189529, 30.045801267942636 ], [ -95.004042922101618, 30.045803268418702 ], [ -95.003290922252333, 30.045809268512691 ], [ -95.002743921450573, 30.045814267662873 ], [ -95.002690921860633, 30.045815268205107 ], [ -95.001332921944595, 30.045821268051927 ], [ -95.000463921808276, 30.045820268254602 ], [ -94.998959920546639, 30.045819268056178 ], [ -94.998908921221926, 30.045819267827685 ], [ -94.99785892054058, 30.045816268352091 ], [ -94.997120920218705, 30.045814268641653 ], [ -94.996990920779069, 30.045814268508742 ], [ -94.996725920749569, 30.045813268550155 ], [ -94.996488920470469, 30.045813268380964 ], [ -94.99614992031529, 30.04581226867057 ], [ -94.993628919343848, 30.045805268171257 ], [ -94.992788919451129, 30.045803268107058 ], [ -94.992676919497399, 30.045803268890779 ], [ -94.992626919229011, 30.045802268825142 ], [ -94.992181919121194, 30.045802268255589 ], [ -94.992140918697615, 30.045802268508137 ], [ -94.991979918707614, 30.045802268658321 ], [ -94.990904919302508, 30.045801268413097 ], [ -94.990851918386866, 30.045801268597053 ], [ -94.988391918628849, 30.045809268276567 ], [ -94.987468918487806, 30.045804268700422 ], [ -94.986341918117645, 30.045798268835146 ], [ -94.985564917766652, 30.045794268971562 ], [ -94.985236916943819, 30.045794269015175 ], [ -94.981921916070675, 30.045794268616785 ], [ -94.981313916787073, 30.045794268519149 ], [ -94.980817916659888, 30.045794268519423 ], [ -94.980360916567037, 30.045794268876946 ], [ -94.979881916174321, 30.045801268742373 ], [ -94.979422915713144, 30.045809268817255 ], [ -94.978507915542139, 30.045839268915902 ], [ -94.977078915603428, 30.045912269131502 ], [ -94.976145914977522, 30.045961269103906 ], [ -94.972166914226079, 30.04616526939596 ], [ -94.960587911475201, 30.046184270091807 ], [ -94.960402911273675, 30.046184269225545 ], [ -94.957380910574315, 30.046191269604591 ], [ -94.953351908798211, 30.046201269666035 ], [ -94.949003908127892, 30.046224270280838 ], [ -94.948908907739266, 30.046225269758477 ], [ -94.947761907683244, 30.046238270445883 ], [ -94.94455590702934, 30.046277269940813 ], [ -94.943774906421865, 30.046278269841729 ], [ -94.941433906484747, 30.046282270471877 ], [ -94.940653905885398, 30.046284269990984 ], [ -94.93823790577629, 30.046292270792566 ], [ -94.935086904180892, 30.046303270263785 ], [ -94.930989903444811, 30.046321270869822 ], [ -94.928574902989411, 30.046333270790161 ], [ -94.927783902963483, 30.046334271110481 ], [ -94.925412901572287, 30.046338270638191 ], [ -94.924622901357694, 30.046340271129864 ], [ -94.924056901595137, 30.046340271319526 ], [ -94.923989901610753, 30.046341271147913 ], [ -94.922360901388842, 30.046346270634611 ], [ -94.922296900995363, 30.046347271277305 ], [ -94.92179590149054, 30.046349271448936 ], [ -94.921135900925535, 30.046350270843437 ], [ -94.91915890004293, 30.04635627087589 ], [ -94.919146900603877, 30.046357271337104 ], [ -94.918500900206809, 30.046372271282401 ], [ -94.918310900279707, 30.046372270963616 ], [ -94.917741899925915, 30.046373270964288 ], [ -94.917552900495053, 30.046374271272221 ], [ -94.916631900036847, 30.046377270997716 ], [ -94.914383899671577, 30.046386271638603 ], [ -94.914305899534639, 30.046386271408203 ], [ -94.913867899481474, 30.046389271116084 ], [ -94.912947899290401, 30.046393271703025 ], [ -94.912763899133964, 30.046392271621045 ], [ -94.912461898927077, 30.046389271506907 ], [ -94.912210899132106, 30.046388271762709 ], [ -94.912027898435724, 30.046388271479419 ], [ -94.911722898461875, 30.046381271560254 ], [ -94.910807898647306, 30.046360271256912 ], [ -94.910503898197305, 30.046354271191642 ], [ -94.910111897700489, 30.046346271753524 ], [ -94.908937897369086, 30.046324271009386 ], [ -94.908786897623514, 30.046322271614482 ], [ -94.908546897411014, 30.046317271475932 ], [ -94.908512897235795, 30.046316271421375 ], [ -94.90841189719427, 30.046314271170409 ], [ -94.908378897501137, 30.046314271046285 ], [ -94.907781897978651, 30.046314271596614 ], [ -94.906679897141572, 30.046314271600547 ], [ -94.905993897477302, 30.046314271953893 ], [ -94.905397896969802, 30.046315271785105 ], [ -94.905273896883955, 30.046315271905414 ], [ -94.905211896322854, 30.046315271906973 ], [ -94.904655896878609, 30.046320271341443 ], [ -94.90447089700659, 30.046323271729797 ], [ -94.904249896259856, 30.0463242718412 ], [ -94.903997896649329, 30.046327271285168 ], [ -94.903587896437429, 30.046317271540161 ], [ -94.90345689626335, 30.046315271942181 ], [ -94.903367896374618, 30.046315271240854 ], [ -94.903028896665305, 30.046315271626426 ], [ -94.90214889557015, 30.046315271547272 ], [ -94.902014896038509, 30.046315271537473 ], [ -94.90191189576926, 30.046315271682687 ], [ -94.901676895399376, 30.046315271901335 ], [ -94.901626895642536, 30.046315271578141 ], [ -94.901434896252255, 30.046314271982425 ], [ -94.900711895645557, 30.046313272056043 ], [ -94.90047089580564, 30.046313272194936 ], [ -94.900011895809612, 30.04631527193634 ], [ -94.899756895763858, 30.046316271694433 ], [ -94.898634895577629, 30.046323272072474 ], [ -94.898176894716812, 30.046327272063845 ], [ -94.898071894895125, 30.046327271418505 ], [ -94.897756894408033, 30.046328271862425 ], [ -94.897652894923411, 30.046329271834988 ], [ -94.897418894482371, 30.046329271668181 ], [ -94.896716894199841, 30.046330271659087 ], [ -94.896483895083151, 30.046331271750862 ], [ -94.896277894858073, 30.04632827193727 ], [ -94.895660894780036, 30.046322271961159 ], [ -94.895632894125967, 30.046322271552455 ], [ -94.895455894079333, 30.046322272214965 ], [ -94.89542489454098, 30.046320271842916 ], [ -94.894391894114648, 30.046320272091744 ], [ -94.894282894130413, 30.046319271545396 ], [ -94.894256893908178, 30.046319272394339 ], [ -94.893858894286893, 30.046319272169733 ], [ -94.892675893354081, 30.046315272128751 ], [ -94.892188893176524, 30.046313272246728 ], [ -94.892106893892731, 30.046316271971961 ], [ -94.891948893512762, 30.046348272007474 ], [ -94.891759892853443, 30.046412271898252 ], [ -94.891643892971857, 30.046454272196797 ], [ -94.89163289281133, 30.046461272155376 ], [ -94.89179189387464, 30.046687271725528 ], [ -94.892252893517494, 30.047373272487111 ], [ -94.892406893164505, 30.047602272325921 ], [ -94.892478893580318, 30.047711272175032 ], [ -94.892697893488148, 30.048039272116544 ], [ -94.892770893796651, 30.04814927274219 ], [ -94.893017893329557, 30.048521272594691 ], [ -94.89375989357714, 30.049637272318311 ], [ -94.894007894299293, 30.050009272536506 ], [ -94.894479894281062, 30.050723273275004 ], [ -94.895898894420696, 30.052868273263226 ], [ -94.896371895169352, 30.053583273079123 ], [ -94.896839894898505, 30.054258273829792 ], [ -94.897555894969514, 30.055289273398195 ], [ -94.898236895302546, 30.056290273939769 ], [ -94.898335895350755, 30.056436274211432 ], [ -94.898701895227305, 30.056969274370097 ], [ -94.898734896044346, 30.05701827441877 ], [ -94.898834895337643, 30.057168273904075 ], [ -94.89886889574035, 30.057218273916096 ], [ -94.899000895526186, 30.057413274454809 ], [ -94.899149895436253, 30.05763527427154 ], [ -94.900723895871579, 30.059976274652126 ], [ -94.900887896049682, 30.060221274521787 ], [ -94.9034648973131, 30.064037275379068 ], [ -94.904651898065538, 30.065829275983614 ], [ -94.905046897351355, 30.066410275510652 ], [ -94.905156897954484, 30.066572275552996 ], [ -94.905236897316612, 30.06669027584357 ], [ -94.905333897958101, 30.066832275825981 ], [ -94.905624897963904, 30.067261275755008 ], [ -94.90572289744479, 30.067405275500008 ], [ -94.905883898383507, 30.067646275957109 ], [ -94.905913898427315, 30.067690276287369 ], [ -94.905977897560547, 30.067784276177552 ], [ -94.906084897638635, 30.067941275942221 ], [ -94.906376898613487, 30.068425275686266 ], [ -94.906453898170554, 30.068566276418359 ], [ -94.906619898599217, 30.068868275895085 ], [ -94.906726897917466, 30.069064275855023 ], [ -94.906874897901005, 30.069334275980133 ], [ -94.907002898204425, 30.069579276083999 ], [ -94.907036898203287, 30.069661276707819 ], [ -94.907123898337915, 30.069868276749354 ], [ -94.907138898774804, 30.069903275980437 ], [ -94.907185898330894, 30.070010276200197 ], [ -94.907201898438728, 30.07004627625701 ], [ -94.907300898066467, 30.070273275997835 ], [ -94.907597898491616, 30.070954276438311 ], [ -94.907696899035173, 30.071182276869713 ], [ -94.908042898341662, 30.071977276590918 ], [ -94.90900289925213, 30.074181276840132 ], [ -94.90902289865312, 30.074226277175008 ], [ -94.909082899010997, 30.07436527713952 ], [ -94.909287899170934, 30.074844277054442 ], [ -94.909329898957026, 30.074940277295131 ], [ -94.909375899464791, 30.075047277594766 ], [ -94.909410899080612, 30.075127277606679 ], [ -94.909426899744247, 30.075163277297811 ], [ -94.909462899655637, 30.07524627758341 ], [ -94.909570899497425, 30.075498277096134 ], [ -94.909607899387964, 30.075582277245601 ], [ -94.909626899348098, 30.075625277365948 ], [ -94.909777899033656, 30.075977277186588 ], [ -94.909807899843244, 30.076045277127761 ], [ -94.910408899318057, 30.077435277637502 ], [ -94.910609899509652, 30.077899277491017 ], [ -94.910830899931625, 30.078454277901834 ], [ -94.911021900255207, 30.078933277716242 ], [ -94.911042900234094, 30.078987278068595 ], [ -94.911486899655799, 30.080121278051973 ], [ -94.91162290052408, 30.080469278255574 ], [ -94.911705899666899, 30.080678278062539 ], [ -94.911748900559843, 30.080778278564775 ], [ -94.911880900379941, 30.081078278125759 ], [ -94.911924900398233, 30.081179278418968 ], [ -94.911942900488611, 30.081221278164321 ], [ -94.912195900453099, 30.081835278524178 ], [ -94.912748900474924, 30.083175278999658 ], [ -94.913008900461321, 30.083806278983342 ], [ -94.913108900211711, 30.084049278615321 ], [ -94.913279900161058, 30.084463278697541 ], [ -94.913367901059601, 30.084677279151286 ], [ -94.913554900354782, 30.085130279103289 ], [ -94.913636900824258, 30.085319279344663 ], [ -94.913728900544825, 30.085533279142513 ], [ -94.913749900885733, 30.085701279026967 ], [ -94.913804900763338, 30.085847279463458 ], [ -94.913925900362671, 30.086145279836725 ], [ -94.914053901046884, 30.086461279354314 ], [ -94.914454901062996, 30.087423279513246 ], [ -94.914677901263687, 30.087935279368793 ], [ -94.914731901049947, 30.088057279850517 ], [ -94.91488690135067, 30.088411280263941 ], [ -94.914932901011696, 30.088531279991383 ], [ -94.914977901600793, 30.088649279677984 ], [ -94.915130901293196, 30.089034280242174 ], [ -94.915173901114073, 30.089142279577388 ], [ -94.915635902000858, 30.090301280174316 ], [ -94.915915901915028, 30.090970280232664 ], [ -94.915979901479304, 30.091123280410311 ], [ -94.916077901415477, 30.091192280684506 ], [ -94.916211901816368, 30.091539280610334 ], [ -94.916331901627473, 30.091849280141684 ], [ -94.916381901358534, 30.091980280659108 ], [ -94.916477901728413, 30.092226281044024 ], [ -94.916604901459905, 30.092558280870673 ], [ -94.916704901694359, 30.092775281063446 ], [ -94.916722901698179, 30.092814281147668 ], [ -94.916836902215138, 30.0930812808421 ], [ -94.916895902398764, 30.093219281219547 ], [ -94.91707290187297, 30.09363328118808 ], [ -94.917132902378853, 30.093771281101805 ], [ -94.917250901920752, 30.09405528097783 ], [ -94.91727290172156, 30.094109281328411 ], [ -94.917627902177529, 30.094964281088565 ], [ -94.917690902471264, 30.095125280875042 ], [ -94.917823902778977, 30.095467281427862 ], [ -94.917968902680627, 30.095851281377545 ], [ -94.917998902467787, 30.095929281208207 ], [ -94.918316902460305, 30.09671228168358 ], [ -94.918435902851172, 30.096995281325562 ], [ -94.91859590243395, 30.097375281788594 ], [ -94.918742902796666, 30.097724281989382 ], [ -94.918792902695543, 30.097847281587967 ], [ -94.919370902686993, 30.099270282174771 ], [ -94.919470902824727, 30.099514282116875 ], [ -94.919565903080908, 30.09974428220038 ], [ -94.919606903245324, 30.099843282181705 ], [ -94.919729903180624, 30.100140281996474 ], [ -94.919770902627448, 30.100239281881247 ], [ -94.919902903260919, 30.100569282139602 ], [ -94.920179902831237, 30.101259282544873 ], [ -94.920301902937609, 30.101558282258402 ], [ -94.92039590338301, 30.101786282380246 ], [ -94.920437902869509, 30.101888282114526 ], [ -94.920674903034723, 30.102459282218543 ], [ -94.921015903447, 30.103281282383062 ], [ -94.921394904111523, 30.104170282487374 ], [ -94.921403903424974, 30.104191282752524 ], [ -94.921628903801818, 30.104743283274537 ], [ -94.921803904254617, 30.105171283372453 ], [ -94.921934903387864, 30.105481283032393 ], [ -94.9220129034411, 30.105665283543484 ], [ -94.922848904566877, 30.107701284004428 ], [ -94.923152904230349, 30.108441283382643 ], [ -94.923399904688708, 30.109047283762767 ], [ -94.923858904231764, 30.110169283620262 ], [ -94.924063904456943, 30.110671283679075 ], [ -94.924142905001233, 30.110866283775454 ], [ -94.924389905083999, 30.111473284268914 ], [ -94.924529904333625, 30.111860284724202 ], [ -94.924665905332986, 30.112234284419685 ], [ -94.924842904926734, 30.112756284845773 ], [ -94.924914904911645, 30.112981284541974 ], [ -94.924928905122329, 30.113031284539701 ], [ -94.925044905126853, 30.113427284885855 ], [ -94.925309904924177, 30.114370284799726 ], [ -94.925375905605591, 30.114605285294896 ], [ -94.925500904788933, 30.115132285286254 ], [ -94.925707905222808, 30.116126285454982 ], [ -94.925879905663066, 30.117017285707885 ], [ -94.925920905775484, 30.117247285589137 ], [ -94.926059905070403, 30.118027285784624 ], [ -94.926095905691909, 30.118212285731065 ], [ -94.926193905292223, 30.118722285750181 ], [ -94.926281905326519, 30.119211286211296 ], [ -94.926823906374821, 30.122211286458921 ], [ -94.926955905798337, 30.122938286404462 ], [ -94.92700590582416, 30.123212286755521 ], [ -94.927167905790071, 30.124110286400501 ], [ -94.927358905854518, 30.125166286625007 ], [ -94.927655906025052, 30.126804287254821 ], [ -94.927700906272378, 30.127050287226204 ], [ -94.927810906778632, 30.127704287712234 ], [ -94.927829906377937, 30.127820287056618 ], [ -94.927889906388558, 30.128168287446837 ], [ -94.927909906569894, 30.128285287416951 ], [ -94.927944906344678, 30.128515287848675 ], [ -94.928050906491606, 30.129207287953403 ], [ -94.928071906655518, 30.129340288091843 ], [ -94.928084906291303, 30.129438287911416 ], [ -94.928123906689549, 30.129740287711758 ], [ -94.928142906712068, 30.129882288210734 ], [ -94.928165906314931, 30.130100287909684 ], [ -94.928240906532423, 30.130816288526628 ], [ -94.928243906699649, 30.130862288042756 ], [ -94.928246906440748, 30.130895288253981 ], [ -94.928248907130268, 30.130923288139616 ], [ -94.92825090636012, 30.130950287826902 ], [ -94.928250906612845, 30.130982288240979 ], [ -94.928251906913545, 30.131014288241062 ], [ -94.928255906350742, 30.131080288584432 ], [ -94.92810990733814, 30.138261289338221 ], [ -94.928056906501396, 30.139654290112514 ], [ -94.92805290685952, 30.139765289519648 ], [ -94.928049906908598, 30.139829289557131 ], [ -94.928030907119563, 30.140354289665165 ], [ -94.928024906923369, 30.140530289680765 ], [ -94.928013906911474, 30.140657289838749 ], [ -94.92798190685744, 30.141038289857349 ], [ -94.92797190726948, 30.141166290638768 ], [ -94.927953907018534, 30.141555290461152 ], [ -94.927901907150655, 30.142723290726906 ], [ -94.927884906906968, 30.143113290951216 ], [ -94.927876907410933, 30.14338029074429 ], [ -94.927854906680878, 30.144183291160349 ], [ -94.927848906728357, 30.144451291047947 ], [ -94.927815906829508, 30.145120291215441 ], [ -94.927799907588152, 30.145621290881561 ], [ -94.927781907357613, 30.146243291087856 ], [ -94.92774690708778, 30.147921291355797 ], [ -94.927746906960181, 30.148490291973427 ], [ -94.927781907484018, 30.149014292052424 ], [ -94.927791907251745, 30.149133291790754 ], [ -94.92781590764001, 30.149388292094031 ], [ -94.927867907650182, 30.149808292175674 ], [ -94.927952907808503, 30.150293292362935 ], [ -94.927988907445382, 30.150497291735665 ], [ -94.928092907329827, 30.151051291949639 ], [ -94.928266907953144, 30.151665291966772 ], [ -94.928300907547239, 30.151771292142044 ], [ -94.92863090775252, 30.152780292746503 ], [ -94.92992790836152, 30.156033293600071 ], [ -94.930491908108337, 30.157447293234267 ], [ -94.930637908763302, 30.157813293750177 ], [ -94.931075908603489, 30.15891329405202 ], [ -94.931222909023205, 30.159280294182246 ], [ -94.931457908526198, 30.159878293651207 ], [ -94.932162908773975, 30.161674293977057 ], [ -94.932398909644576, 30.162273294228552 ], [ -94.933030909666243, 30.163849294409662 ], [ -94.934927909891684, 30.168578295201428 ], [ -94.935560910700175, 30.17015529574094 ], [ -94.935742910198371, 30.170650295991805 ], [ -94.935828910520016, 30.170884296120736 ], [ -94.936318910585769, 30.172123296226385 ], [ -94.93651391052552, 30.172614296082351 ], [ -94.937100911112736, 30.17404129673659 ], [ -94.937300911397514, 30.174528296363683 ], [ -94.938353911755087, 30.177136297411082 ], [ -94.938603911654198, 30.177765297556725 ], [ -94.938839911485829, 30.178333297872729 ], [ -94.939129911624462, 30.178978297289898 ], [ -94.939456911757844, 30.179749297828334 ], [ -94.939519912094127, 30.179898297633073 ], [ -94.939709911559859, 30.180345298026193 ], [ -94.939713912261155, 30.180354298064639 ], [ -94.939776912055478, 30.18049329817454 ], [ -94.939794911906006, 30.180533297716863 ], [ -94.939848911544885, 30.180655297488691 ], [ -94.939867911453817, 30.180696297535523 ], [ -94.939918912230354, 30.180691297653834 ], [ -94.939987912388702, 30.180685298227779 ], [ -94.940069912163793, 30.180685298223441 ], [ -94.940461912086107, 30.180872297779487 ], [ -94.94059491175959, 30.180899297865107 ], [ -94.940784911940128, 30.180894298175009 ], [ -94.940860911824373, 30.180877297714115 ], [ -94.940993911798301, 30.180822297593458 ], [ -94.941100911884391, 30.180674298025778 ], [ -94.941271912646386, 30.18058629778033 ], [ -94.941512912519102, 30.180531298016483 ], [ -94.94153191279689, 30.180438297571392 ], [ -94.941645912589749, 30.180350298058737 ], [ -94.941799911932662, 30.180286297497052 ], [ -94.941968912318103, 30.180218297328565 ], [ -94.94224691215156, 30.1801852975128 ], [ -94.942525912203806, 30.180212298061953 ], [ -94.942689912816903, 30.180239297563674 ], [ -94.942733912912075, 30.18026729741959 ], [ -94.942999912649711, 30.180234297983766 ], [ -94.943202913269801, 30.18022829772211 ], [ -94.943683912866931, 30.180294298009791 ], [ -94.944392912860138, 30.18042629730169 ], [ -94.944658913390427, 30.180509297841422 ], [ -94.945303913265761, 30.18091629791336 ], [ -94.945980913361424, 30.181394297541409 ], [ -94.946284913203712, 30.181680297525833 ], [ -94.946563913283754, 30.182004297706619 ], [ -94.946601914003423, 30.182037297569838 ], [ -94.946854913877274, 30.182241298264842 ], [ -94.947183914254907, 30.182505297921818 ], [ -94.947354914446493, 30.182659298303552 ], [ -94.947455913807914, 30.182774298393507 ], [ -94.947527913833937, 30.182846297855747 ], [ -94.947626914004914, 30.182945297838778 ], [ -94.947943914578232, 30.183148298204827 ], [ -94.948133914178698, 30.18320829806088 ], [ -94.948247914498964, 30.183258298008234 ], [ -94.948474914346377, 30.183329298095384 ], [ -94.9485329141134, 30.183401297872781 ], [ -94.948728914485102, 30.183390297949554 ], [ -94.948835914126448, 30.183362297890429 ], [ -94.948924914268389, 30.183324297988246 ], [ -94.948975914572912, 30.183263298387388 ], [ -94.949038914516009, 30.183247298332837 ], [ -94.949114914801427, 30.183214298426222 ], [ -94.949266914366902, 30.183065297886998 ], [ -94.949448914748231, 30.182984298100539 ], [ -94.949525914593565, 30.182950298143133 ], [ -94.949588915042909, 30.182906297921992 ], [ -94.949823914274219, 30.182911298011671 ], [ -94.950000914788987, 30.182779297617103 ], [ -94.950069914511928, 30.182702297555007 ], [ -94.950164914808155, 30.182537298006565 ], [ -94.950152914864333, 30.182394297868615 ], [ -94.95017191495765, 30.182356298041569 ], [ -94.950215915000911, 30.182328298179986 ], [ -94.950297914991111, 30.182317297741317 ], [ -94.950405914800854, 30.182323297472578 ], [ -94.950512915227833, 30.182350297678422 ], [ -94.950633914441099, 30.18239429787582 ], [ -94.950886915292244, 30.182532297735143 ], [ -94.951057914701352, 30.182543297741486 ], [ -94.951177915164209, 30.182570297730624 ], [ -94.951247914637605, 30.182636298270307 ], [ -94.951310915431094, 30.182719297942924 ], [ -94.951392914580651, 30.182746297986114 ], [ -94.951513914727386, 30.182746298163615 ], [ -94.951747914948314, 30.182647297784509 ], [ -94.951804915157098, 30.182614297952682 ], [ -94.951778914631916, 30.182532297929036 ], [ -94.951734915358088, 30.182504297574372 ], [ -94.951734915355914, 30.182471297928853 ], [ -94.951778914819428, 30.182416297759563 ], [ -94.951924915292125, 30.182372297675233 ], [ -94.952139914656186, 30.182356297822498 ], [ -94.95219691500057, 30.182383298168737 ], [ -94.95217191541937, 30.182466297659218 ], [ -94.952202915644918, 30.182515297617282 ], [ -94.952259914833988, 30.182537298170551 ], [ -94.952506915088989, 30.182526297851496 ], [ -94.952607915402268, 30.182482297416922 ], [ -94.952677915339819, 30.182411298029287 ], [ -94.952734914828156, 30.182328297821435 ], [ -94.952797915755767, 30.182289297686609 ], [ -94.952949915727558, 30.182273298142242 ], [ -94.953209915289563, 30.182355297530982 ], [ -94.953259915782027, 30.182355297438811 ], [ -94.953348915354908, 30.182317297363156 ], [ -94.953424915082593, 30.182245297379264 ], [ -94.953532915977519, 30.182075297796096 ], [ -94.953569915340054, 30.182053297413084 ], [ -94.953880916076656, 30.182064297515026 ], [ -94.954031915999494, 30.182124297893779 ], [ -94.954152916096973, 30.182113297950508 ], [ -94.954367915672478, 30.182064297653831 ], [ -94.954475915228088, 30.182014297923413 ], [ -94.954962915912787, 30.181833297642445 ], [ -94.954987916178595, 30.181756297555403 ], [ -94.954981915797987, 30.18170629775598 ], [ -94.954860915914225, 30.18143729760482 ], [ -94.954835915844598, 30.181349297732297 ], [ -94.954848916128554, 30.181266297211849 ], [ -94.954936916033176, 30.181167297215552 ], [ -94.954968916298839, 30.181112297286866 ], [ -94.95498191607615, 30.181063297395955 ], [ -94.954962915961389, 30.180942297737392 ], [ -94.954872916295557, 30.180664297638529 ], [ -94.954816916274538, 30.180486297726322 ], [ -94.954803915332079, 30.180398297474405 ], [ -94.954816915520539, 30.180315296924714 ], [ -94.954835915520306, 30.180277297370946 ], [ -94.954924915792901, 30.18020029681605 ], [ -94.955025915416726, 30.18017829737747 ], [ -94.955367915783015, 30.180189297285011 ], [ -94.955525915727051, 30.180211296821525 ], [ -94.955588915633015, 30.180238297372899 ], [ -94.955601915835672, 30.180266297187387 ], [ -94.955550915557609, 30.180447297149481 ], [ -94.955582916048215, 30.180579297119682 ], [ -94.955911916541083, 30.180876297300951 ], [ -94.95600691584076, 30.180909296987128 ], [ -94.956025915796232, 30.1808982970588 ], [ -94.955987916288706, 30.180826297772157 ], [ -94.955987916172361, 30.180777297037402 ], [ -94.956000916194768, 30.180738297416934 ], [ -94.956177916448667, 30.180617297731331 ], [ -94.956234915626297, 30.180601297273 ], [ -94.956303916537664, 30.18062329756232 ], [ -94.956354915733826, 30.180810297451416 ], [ -94.956379915986972, 30.18082629703521 ], [ -94.956468916059166, 30.180788297671207 ], [ -94.956531916134949, 30.180672296991759 ], [ -94.956557916028657, 30.180590297148115 ], [ -94.95658891573764, 30.180535297476514 ], [ -94.95665891601908, 30.1804852969241 ], [ -94.956683915776964, 30.180414297265266 ], [ -94.956689916638965, 30.180304296798472 ], [ -94.956715915740645, 30.180271297626696 ], [ -94.957012915866272, 30.180166296801506 ], [ -94.957075916147971, 30.180161297158474 ], [ -94.957151916863367, 30.180111297020257 ], [ -94.957183916599263, 30.180056297474007 ], [ -94.957240916045308, 30.179765297312411 ], [ -94.957278915990528, 30.179699297009659 ], [ -94.957291915981955, 30.179655296637673 ], [ -94.957272916377747, 30.17960529721498 ], [ -94.957139915992855, 30.179561297076528 ], [ -94.957113916363028, 30.179523297323737 ], [ -94.957082915887412, 30.179413297124427 ], [ -94.957082916486243, 30.179325296911173 ], [ -94.95705691655445, 30.179100297077106 ], [ -94.957176915800503, 30.178940297149499 ], [ -94.957455916589907, 30.178643297311236 ], [ -94.95753791614932, 30.178511297169027 ], [ -94.957619915948143, 30.178462296605048 ], [ -94.957873916783171, 30.17835729656484 ], [ -94.957949916824916, 30.178297296517567 ], [ -94.958088916790189, 30.178219296503023 ], [ -94.958100916250544, 30.178203296591811 ], [ -94.958176916887368, 30.178203296769745 ], [ -94.958575916393116, 30.17825829680482 ], [ -94.958632916410565, 30.178247296923182 ], [ -94.95868991638838, 30.178159296362491 ], [ -94.958689916202815, 30.178126296720645 ], [ -94.958651916552938, 30.178082297134363 ], [ -94.958626916152227, 30.178071296764266 ], [ -94.958613917066856, 30.178021296304351 ], [ -94.958626917045265, 30.17796129649124 ], [ -94.958695916458339, 30.177950296835544 ], [ -94.95872191668613, 30.177906296834561 ], [ -94.958708916807467, 30.177845296778258 ], [ -94.958733916455401, 30.177818296843711 ], [ -94.958771916936129, 30.177812296464761 ], [ -94.958815916433082, 30.177768296353516 ], [ -94.958860916804539, 30.17776329689594 ], [ -94.958871916535657, 30.177798296779581 ], [ -94.958885916915904, 30.177812296582417 ], [ -94.958967916466491, 30.177763297017563 ], [ -94.959018916909741, 30.177713296931426 ], [ -94.959018917134784, 30.177675296669861 ], [ -94.958999916817888, 30.177653296454189 ], [ -94.958986916289021, 30.17761429646426 ], [ -94.958891917107337, 30.17752729649002 ], [ -94.958860916564092, 30.177477296985295 ], [ -94.958853916456178, 30.177362296113465 ], [ -94.958898916329389, 30.177125296273864 ], [ -94.958828916890496, 30.177015296757212 ], [ -94.958803917065893, 30.176949296706049 ], [ -94.958695916931276, 30.176784296093782 ], [ -94.958632916651837, 30.176652296278093 ], [ -94.958606916328677, 30.176570296596221 ], [ -94.958606916424614, 30.176476296449046 ], [ -94.958632916221887, 30.176449296780412 ], [ -94.958670917005279, 30.176427296233044 ], [ -94.958796916402022, 30.176432296453179 ], [ -94.958992916465348, 30.176498296223542 ], [ -94.959157916701912, 30.176421296249593 ], [ -94.959264916913398, 30.176394296394989 ], [ -94.95927791641941, 30.176443296708314 ], [ -94.959334917196045, 30.176515296222636 ], [ -94.959378917208284, 30.176542296780735 ], [ -94.959416916673206, 30.176548295910443 ], [ -94.959429916494017, 30.176531296009184 ], [ -94.95942991691382, 30.176509295953608 ], [ -94.95937891687791, 30.17639929677377 ], [ -94.959347916414501, 30.176267296027337 ], [ -94.959378916780935, 30.176245296278662 ], [ -94.959448917289777, 30.176245296126432 ], [ -94.959518917053927, 30.176306296396291 ], [ -94.959524917179564, 30.176339296600915 ], [ -94.9594929167163, 30.176377296351802 ], [ -94.959480916789047, 30.176427296150091 ], [ -94.959480916786845, 30.176482296772527 ], [ -94.959511917057398, 30.176526296292252 ], [ -94.959581916883209, 30.176553296742288 ], [ -94.959663916840427, 30.176564296223994 ], [ -94.959701916370051, 30.176542296257011 ], [ -94.959758917001949, 30.176487296712114 ], [ -94.959802916618798, 30.176394296426789 ], [ -94.959872917115035, 30.175948296632143 ], [ -94.959897916822612, 30.175838295930792 ], [ -94.959960916761858, 30.175772296323888 ], [ -94.960353916543198, 30.175613296359213 ], [ -94.960410916510838, 30.175607296392997 ], [ -94.960511917206205, 30.175497296332502 ], [ -94.960517917305864, 30.175442296213038 ], [ -94.960492917150589, 30.17533229630099 ], [ -94.960511917246777, 30.175244295962798 ], [ -94.960574917044724, 30.175233295801423 ], [ -94.960663917441693, 30.175250296217044 ], [ -94.960960917415946, 30.175437295903443 ], [ -94.961093917269864, 30.1754912964063 ], [ -94.961131917393487, 30.175519296051853 ], [ -94.961157916890656, 30.175519295697399 ], [ -94.961226917479422, 30.175486295663529 ], [ -94.961258917219141, 30.175491296400839 ], [ -94.961441917219176, 30.175601296101792 ], [ -94.9614679171126, 30.175629296517538 ], [ -94.961473916852128, 30.175684295774868 ], [ -94.961460917259743, 30.175860296031114 ], [ -94.961435917228357, 30.176014296178565 ], [ -94.961492917406233, 30.176063296355821 ], [ -94.961562917756908, 30.176074296486419 ], [ -94.961657917371809, 30.176107295949119 ], [ -94.961720917697363, 30.176140296275261 ], [ -94.961771916925258, 30.176146295859986 ], [ -94.961752916846251, 30.176096296127426 ], [ -94.961714917758115, 30.176063296078009 ], [ -94.961714917627859, 30.176030296438988 ], [ -94.96175291694388, 30.176025296232861 ], [ -94.961828917787955, 30.175992296574755 ], [ -94.961967917894881, 30.175992296153105 ], [ -94.962233916975237, 30.176074296162245 ], [ -94.962372917475008, 30.176069296508611 ], [ -94.96245491762663, 30.176052296203121 ], [ -94.962524917930793, 30.176052296254483 ], [ -94.962581917249224, 30.176041296524957 ], [ -94.962619917259943, 30.176041295820617 ], [ -94.962739917765987, 30.176080296245381 ], [ -94.96281591743174, 30.176058296480306 ], [ -94.962929918147921, 30.175997296439327 ], [ -94.96308191740755, 30.175816295727092 ], [ -94.963150918153332, 30.175761296482968 ], [ -94.963239917829441, 30.175733295819871 ], [ -94.963353918194699, 30.175667295695497 ], [ -94.9633919177829, 30.175585296217712 ], [ -94.963448918163209, 30.17554129563408 ], [ -94.963530917672884, 30.175524295571062 ], [ -94.963676917640385, 30.175546295837247 ], [ -94.963935918376407, 30.175694295716355 ], [ -94.96398691753555, 30.175744296360545 ], [ -94.964030917686387, 30.175887296356791 ], [ -94.96408791836933, 30.176453295926326 ], [ -94.964233917602357, 30.176569296410829 ], [ -94.964340918492084, 30.176624296486921 ], [ -94.964480917838642, 30.176673296124378 ], [ -94.964575917794292, 30.176673296593918 ], [ -94.964625918216569, 30.176645296094218 ], [ -94.964707918237551, 30.176558296523485 ], [ -94.964714918574273, 30.17649129592434 ], [ -94.964771918078398, 30.176371296130359 ], [ -94.964866917835252, 30.176283296258575 ], [ -94.964923918108497, 30.176255296159251 ], [ -94.965074918270091, 30.176211295774007 ], [ -94.965125918704999, 30.176200296511414 ], [ -94.965233918497631, 30.176194295671213 ], [ -94.965264918109611, 30.176178296232862 ], [ -94.965283918234434, 30.176150295627792 ], [ -94.965277918498558, 30.176112296024382 ], [ -94.965252918119731, 30.176062295632992 ], [ -94.965119917986186, 30.175947296237208 ], [ -94.965081918129883, 30.175892296204704 ], [ -94.965055917694727, 30.175782296200293 ], [ -94.965055918173519, 30.175738296137666 ], [ -94.965087918286798, 30.175612295858105 ], [ -94.96514491831644, 30.175524296293425 ], [ -94.965239918233493, 30.175469295774953 ], [ -94.965308918220714, 30.175441296100463 ], [ -94.965448918658794, 30.175425295733987 ], [ -94.965701918607692, 30.175375296026751 ], [ -94.965751918687857, 30.175353295860948 ], [ -94.965783918342936, 30.175320296188492 ], [ -94.965821918159747, 30.175237295957814 ], [ -94.965789918825095, 30.174935296235326 ], [ -94.965840918855676, 30.174836295637704 ], [ -94.965789918266097, 30.174556295767939 ], [ -94.965833918461598, 30.174451295754746 ], [ -94.965922918590067, 30.174391295687087 ], [ -94.965998918790973, 30.174402295605326 ], [ -94.966080918853777, 30.174517296104689 ], [ -94.966169918271675, 30.174561295318973 ], [ -94.966226918334556, 30.174506295819878 ], [ -94.966226918277954, 30.174418295647985 ], [ -94.966213918158928, 30.174363295289304 ], [ -94.966137918498106, 30.17420929566881 ], [ -94.966118918416939, 30.174055295280251 ], [ -94.966143918742034, 30.173819295836431 ], [ -94.966143918771223, 30.173445295880967 ], [ -94.96609291817343, 30.173384295483398 ], [ -94.9660489186939, 30.173384295086841 ], [ -94.965820918684855, 30.173445295292375 ], [ -94.965773918492744, 30.173438295124033 ], [ -94.965738918646153, 30.17343429587892 ], [ -94.965700918303909, 30.173362295601773 ], [ -94.965713918243239, 30.173252295168052 ], [ -94.96575191853178, 30.173164295196894 ], [ -94.965808918683265, 30.1731152957144 ], [ -94.966042918576377, 30.17296629557568 ], [ -94.966124918418075, 30.172928294971353 ], [ -94.966333918868514, 30.172873295005438 ], [ -94.966377918557441, 30.172840295689127 ], [ -94.966428917906455, 30.172768295497182 ], [ -94.966415918472691, 30.1727462956751 ], [ -94.966364917867693, 30.172708295540595 ], [ -94.966402918360728, 30.172647295179001 ], [ -94.966339918636095, 30.172548295014529 ], [ -94.966174918601595, 30.172389295534717 ], [ -94.966010918781151, 30.172290295463284 ], [ -94.965883918279758, 30.172235295314223 ], [ -94.965864918567263, 30.172213295148257 ], [ -94.965858917939983, 30.17213129535121 ], [ -94.965883918277555, 30.172087295612641 ], [ -94.966073917955114, 30.17199929539612 ], [ -94.966193917862441, 30.171955295067317 ], [ -94.96636491831859, 30.171867295308857 ], [ -94.966408918635253, 30.171834295098435 ], [ -94.966427918104699, 30.171795294715213 ], [ -94.966427918636128, 30.171757295356798 ], [ -94.966415918178527, 30.171724295198651 ], [ -94.966389918601124, 30.171702295568423 ], [ -94.966326918422823, 30.171674295257954 ], [ -94.966263918061685, 30.171669295104703 ], [ -94.966155917858885, 30.171636295313345 ], [ -94.966111918120149, 30.171592294769255 ], [ -94.966098918269438, 30.171520294892989 ], [ -94.966105918090463, 30.171476295205405 ], [ -94.966199918557223, 30.171372294903268 ], [ -94.966326917864635, 30.171273295178942 ], [ -94.966351918222188, 30.171174294722377 ], [ -94.966402918370363, 30.171135295098285 ], [ -94.966782918861071, 30.171091295261824 ], [ -94.966990918474821, 30.171047294629535 ], [ -94.967149918480004, 30.170998294754391 ], [ -94.967395918524034, 30.170844294856835 ], [ -94.967459918552223, 30.170827294602937 ], [ -94.967655918184661, 30.170827294492632 ], [ -94.967737919002289, 30.170849295119304 ], [ -94.967902918861242, 30.170937294668516 ], [ -94.967990918888759, 30.171008295147505 ], [ -94.96805491886505, 30.171168295224192 ], [ -94.968085918307537, 30.171316295026141 ], [ -94.968123919250246, 30.171399295160452 ], [ -94.968142919087313, 30.171470294848536 ], [ -94.968180918628647, 30.171536294585948 ], [ -94.968231918727525, 30.171591295265255 ], [ -94.968275918654072, 30.171624294615878 ], [ -94.968351918502805, 30.171652295395941 ], [ -94.968415918587326, 30.171646295162521 ], [ -94.968471918480148, 30.171630294932754 ], [ -94.968535919080551, 30.171597294880289 ], [ -94.968611919398654, 30.171481294604103 ], [ -94.968889918698437, 30.171195294603105 ], [ -94.968921919176736, 30.171102294811899 ], [ -94.968927918822942, 30.1710412944986 ], [ -94.968927919095407, 30.170970294613234 ], [ -94.968895919434004, 30.170761295291843 ], [ -94.968889919074641, 30.170612294453349 ], [ -94.968895919152317, 30.170524294355562 ], [ -94.968927919384015, 30.170436295166034 ], [ -94.969053918513552, 30.170222294536647 ], [ -94.969091918698723, 30.170180294911138 ], [ -94.969148919454355, 30.170117295016134 ], [ -94.969205919246107, 30.170018295047775 ], [ -94.969243918576495, 30.169727294667787 ], [ -94.969230919275319, 30.169567294849095 ], [ -94.969268919267762, 30.16947429414861 ], [ -94.969369919402695, 30.169375294423734 ], [ -94.969528918993973, 30.169314294804874 ], [ -94.969629918643108, 30.169303294241985 ], [ -94.969844919558341, 30.169298294548032 ], [ -94.969926918691172, 30.169314294876237 ], [ -94.970021919124761, 30.169292294366326 ], [ -94.970110919308723, 30.169243294805941 ], [ -94.970186918813098, 30.169171294643096 ], [ -94.970274919430679, 30.168511294486816 ], [ -94.970350918986298, 30.168286293864732 ], [ -94.970514919006803, 30.168000294411737 ], [ -94.970552919275747, 30.167961293857836 ], [ -94.970616918839937, 30.167923293998388 ], [ -94.970679919155899, 30.167906293916595 ], [ -94.970717919094156, 30.167906294625645 ], [ -94.970843919289493, 30.16794529452233 ], [ -94.970957919325585, 30.167950294407234 ], [ -94.971033919280103, 30.167939294270184 ], [ -94.971191919182218, 30.1678902941138 ], [ -94.971261919847052, 30.167840294321241 ], [ -94.971407919169977, 30.16779629445065 ], [ -94.971463919531757, 30.167763294507871 ], [ -94.971476919007074, 30.167708294085777 ], [ -94.97155291946703, 30.167653294441884 ], [ -94.971628920026575, 30.167620293925594 ], [ -94.97173691919329, 30.167598294217381 ], [ -94.97179391903677, 30.167609294415165 ], [ -94.972077919626486, 30.167708294153812 ], [ -94.972118919426023, 30.167709294141861 ], [ -94.972217919927033, 30.167713294202724 ], [ -94.972261919868671, 30.167702293992107 ], [ -94.972451919992849, 30.167614294066297 ], [ -94.972710919666397, 30.167521294328207 ], [ -94.972780920140593, 30.16752129374019 ], [ -94.972875920268365, 30.167554293669859 ], [ -94.973039919471105, 30.167686294241431 ], [ -94.973166920199731, 30.167746293845624 ], [ -94.973299919759242, 30.167884294010836 ], [ -94.973457920424039, 30.167911294476436 ], [ -94.973558920077636, 30.167939294103682 ], [ -94.974027920414045, 30.167977294204153 ], [ -94.974115919713995, 30.16804329367487 ], [ -94.974337920398696, 30.168043293873414 ], [ -94.974368919989189, 30.168142294165044 ], [ -94.974368919976044, 30.168296294484339 ], [ -94.974356920653349, 30.168389294604626 ], [ -94.974356920550761, 30.168450294107998 ], [ -94.974369920134578, 30.168505294589963 ], [ -94.974318920575271, 30.168796294359304 ], [ -94.974293920632334, 30.169033294432236 ], [ -94.974318920344828, 30.169198293998978 ], [ -94.974356919885182, 30.169324294027071 ], [ -94.974420920363471, 30.169417294315952 ], [ -94.974603920101558, 30.169566294684728 ], [ -94.974723920640756, 30.169637294020159 ], [ -94.975040920518694, 30.16973129444958 ], [ -94.975141920763235, 30.169791294088608 ], [ -94.975420920681458, 30.169764294469239 ], [ -94.975616920234501, 30.170016294244544 ], [ -94.975673920539634, 30.17031329481134 ], [ -94.975717920806801, 30.170473294795958 ], [ -94.975869920569579, 30.170544294234425 ], [ -94.97612292060731, 30.170528294911502 ], [ -94.976243920737971, 30.1704232946073 ], [ -94.976420921180022, 30.170335294805824 ], [ -94.976546921173451, 30.170374294579421 ], [ -94.97662992077035, 30.170489294099891 ], [ -94.976793921010767, 30.170582294796599 ], [ -94.977059921431135, 30.170571294936583 ], [ -94.977299920621505, 30.170461294753142 ], [ -94.977445921198338, 30.170406294247002 ], [ -94.977616921032833, 30.170412294790609 ], [ -94.977787921337409, 30.170483294115225 ], [ -94.977831921135476, 30.1707692943544 ], [ -94.977888921141684, 30.170841294883058 ], [ -94.977989921763211, 30.170851294258785 ], [ -94.978603921071297, 30.171264295009117 ], [ -94.979059921747989, 30.171373294326514 ], [ -94.979217921628702, 30.171373294383709 ], [ -94.97942092169869, 30.171252294581059 ], [ -94.979635921464578, 30.171197294651851 ], [ -94.979869921304442, 30.17124729454202 ], [ -94.980053921801613, 30.171357294135618 ], [ -94.980116921812836, 30.171494294909639 ], [ -94.980205922379895, 30.171621294961692 ], [ -94.980306922135668, 30.171703295006232 ], [ -94.980414921854546, 30.171731294412599 ], [ -94.980730922345529, 30.171857294766042 ], [ -94.980806921670023, 30.171950294496853 ], [ -94.98083292193968, 30.172077295018862 ], [ -94.980787921634402, 30.172225294755876 ], [ -94.980787922405, 30.172352294879637 ], [ -94.980889921701262, 30.172434294497773 ], [ -94.980996922268332, 30.172423294922154 ], [ -94.981154922198286, 30.172440294722978 ], [ -94.981490922061028, 30.172709294977292 ], [ -94.981376922651776, 30.172934295091611 ], [ -94.981389922391372, 30.173050294837832 ], [ -94.981452921942804, 30.173165294837606 ], [ -94.981674922235911, 30.173286294518839 ], [ -94.982092922257777, 30.173451294997236 ], [ -94.982188922636155, 30.173473294896187 ], [ -94.982395922338853, 30.17352229524445 ], [ -94.982965923147717, 30.17362729487829 ], [ -94.983092923054116, 30.173720294840525 ], [ -94.983079922816827, 30.173836295278374 ], [ -94.98297292261941, 30.173957295345129 ], [ -94.982794922604725, 30.174072295108797 ], [ -94.982725922533646, 30.174199294736017 ], [ -94.982940922511133, 30.174655294887643 ], [ -94.982953923085006, 30.174787295383179 ], [ -94.982827923118236, 30.175045295117854 ], [ -94.982953922870834, 30.175348294913931 ], [ -94.983187922494182, 30.175485295407569 ], [ -94.983618922878378, 30.175848295304146 ], [ -94.983878922895371, 30.176002295469534 ], [ -94.984137922957743, 30.176073295087924 ], [ -94.984390923013009, 30.175991295500786 ], [ -94.984498923139185, 30.175831295219947 ], [ -94.984567922754707, 30.175824295539112 ], [ -94.984605923672731, 30.175820295402449 ], [ -94.984656923757754, 30.17586429534359 ], [ -94.984726923155591, 30.175870295371528 ], [ -94.984820923075901, 30.175837295646051 ], [ -94.984871923418822, 30.175858295482048 ], [ -94.985067923432794, 30.176045295577211 ], [ -94.985156923091523, 30.176078295066805 ], [ -94.985207923652439, 30.176034295177374 ], [ -94.985226923063195, 30.175968295508614 ], [ -94.985225923012521, 30.175831295422419 ], [ -94.985346923375317, 30.175693295072477 ], [ -94.985624923595893, 30.175677295088217 ], [ -94.985846923425129, 30.175853294869086 ], [ -94.98618892314451, 30.1760722956185 ], [ -94.986384923353455, 30.175852295141866 ], [ -94.986434923436775, 30.175819295147186 ], [ -94.986510923260298, 30.175803295513319 ], [ -94.986649924183354, 30.17580329490989 ], [ -94.986776923752672, 30.175803295454852 ], [ -94.987042923542148, 30.175825295647989 ], [ -94.987308923747477, 30.175874294906343 ], [ -94.98738492391513, 30.175879295469862 ], [ -94.987447923966357, 30.17586329486258 ], [ -94.987498924275855, 30.175824295620263 ], [ -94.987554923812468, 30.175742295031956 ], [ -94.987687924222399, 30.175472295517405 ], [ -94.987744924383534, 30.175412294794839 ], [ -94.987807923914602, 30.175401295504962 ], [ -94.987985924132587, 30.175450295133533 ], [ -94.988035924180849, 30.175483295139184 ], [ -94.98807392428975, 30.175555294863173 ], [ -94.988118924344505, 30.175841295671589 ], [ -94.988149924374881, 30.175923295426202 ], [ -94.988194924286361, 30.175967295602458 ], [ -94.988339924202762, 30.17601129496687 ], [ -94.98854292395535, 30.176104295154882 ], [ -94.988624923777579, 30.176121295668349 ], [ -94.988707924367276, 30.176121295080144 ], [ -94.988941924699191, 30.176093295641 ], [ -94.98907492398871, 30.176115294920788 ], [ -94.98923892466982, 30.176176294837049 ], [ -94.989352924992303, 30.176165295003564 ], [ -94.989536924994098, 30.176170295573947 ], [ -94.989624924865367, 30.176148295518576 ], [ -94.989751925014559, 30.176093294926545 ], [ -94.989941924720469, 30.175994295469017 ], [ -94.989991925107049, 30.175702295363859 ], [ -94.989978924677416, 30.175554294899207 ], [ -94.989947924435043, 30.175417295435963 ], [ -94.989788924042927, 30.174971295310716 ], [ -94.989731924440846, 30.17475729525993 ], [ -94.98972592424272, 30.174669294691565 ], [ -94.989731924034757, 30.174603295125966 ], [ -94.989769924741495, 30.174460295184172 ], [ -94.989838924553055, 30.174278294737899 ], [ -94.989933924074663, 30.174080294587238 ], [ -94.990186924325727, 30.173723295149248 ], [ -94.990306924188005, 30.173591294788242 ], [ -94.990458925064431, 30.173464294454568 ], [ -94.990996925167408, 30.173101294358748 ], [ -94.991344925060247, 30.172826294272372 ], [ -94.991467924943279, 30.172719294076789 ], [ -94.991673925230728, 30.172540294650936 ], [ -94.99178092447417, 30.172402294034512 ], [ -94.99179992529038, 30.17234729483161 ], [ -94.991812924791972, 30.172237294472154 ], [ -94.991717924797101, 30.171919294374486 ], [ -94.99169892518934, 30.171781294192439 ], [ -94.991710924380271, 30.171677294515014 ], [ -94.991754924695258, 30.171600294582966 ], [ -94.991837924855062, 30.17149029445223 ], [ -94.991849924435186, 30.171418294053179 ], [ -94.991811925250033, 30.171341293838466 ], [ -94.991615924652649, 30.171176294168362 ], [ -94.991564924831451, 30.171116294001827 ], [ -94.991558925021224, 30.171083294563957 ], [ -94.991571924524024, 30.171039293896897 ], [ -94.991697924902837, 30.170841294421869 ], [ -94.991729925215935, 30.170764294429173 ], [ -94.991748924333095, 30.170681293626327 ], [ -94.991760924397965, 30.17038429440516 ], [ -94.991778924599913, 30.170336294177631 ], [ -94.991836924618624, 30.170192293474642 ], [ -94.991859924758444, 30.170152294204197 ], [ -94.991899924913781, 30.170082294113847 ], [ -94.991918924378297, 30.169977294268524 ], [ -94.991918924547349, 30.169867293785916 ], [ -94.991937924318236, 30.169724293916257 ], [ -94.991975924847935, 30.169559294191885 ], [ -94.992044924606006, 30.169433293742216 ], [ -94.99209592446563, 30.169416293614336 ], [ -94.992152924899202, 30.169416293718569 ], [ -94.992209924632633, 30.169433294002907 ], [ -94.992247924928023, 30.169433294042875 ], [ -94.992291925019401, 30.169411294149285 ], [ -94.992323925384127, 30.169378293837809 ], [ -94.99239992445645, 30.169218293645805 ], [ -94.992443925100829, 30.169180293614708 ], [ -94.992481925028713, 30.169169294071793 ], [ -94.992607925213633, 30.169174293589137 ], [ -94.992683925127054, 30.169196293337915 ], [ -94.992728924885427, 30.169235293353122 ], [ -94.992759925103357, 30.169301293923088 ], [ -94.992804924643522, 30.169328293373614 ], [ -94.992842925176078, 30.169339293663324 ], [ -94.993013925451038, 30.169345293643246 ], [ -94.993076925586635, 30.16932829399979 ], [ -94.993171925099347, 30.169256293877837 ], [ -94.99322192524275, 30.169202293447057 ], [ -94.99324092537303, 30.16913529346143 ], [ -94.993234925006718, 30.169097293471495 ], [ -94.993126925076638, 30.168861293954848 ], [ -94.993082925110443, 30.168800293232707 ], [ -94.993044924550688, 30.168674293705653 ], [ -94.99304492506343, 30.168619293466779 ], [ -94.993139924856479, 30.168613293137501 ], [ -94.993215925115194, 30.168624294004104 ], [ -94.993373924969035, 30.168712293493527 ], [ -94.993424924679431, 30.168773293153439 ], [ -94.993462925100616, 30.168849293805625 ], [ -94.993462925396798, 30.168921293376425 ], [ -94.993398925103037, 30.169097293202089 ], [ -94.993392925199529, 30.169141293983472 ], [ -94.993399925686475, 30.169201293873655 ], [ -94.993481925076068, 30.169289293744505 ], [ -94.993550924971004, 30.169322293460208 ], [ -94.993601925057803, 30.169322293898375 ], [ -94.993633925693118, 30.169311294110031 ], [ -94.993671925564286, 30.169240293406979 ], [ -94.993683925165342, 30.169185293947827 ], [ -94.993708925190646, 30.169146293566751 ], [ -94.99375992506404, 30.169113293621663 ], [ -94.993854924816205, 30.169124293896829 ], [ -94.99414592498097, 30.169223293990868 ], [ -94.994227925205522, 30.169212293374148 ], [ -94.9942979258647, 30.169174293295061 ], [ -94.994322925361729, 30.169129293882843 ], [ -94.994322925565896, 30.169058293567446 ], [ -94.994240925761162, 30.168844293646792 ], [ -94.993999925711307, 30.168464293913043 ], [ -94.993980925156379, 30.168338293531036 ], [ -94.993986925359664, 30.168283293219201 ], [ -94.99400592568719, 30.1682392931646 ], [ -94.994056924956766, 30.168178293360931 ], [ -94.99418992531146, 30.16807429368432 ], [ -94.994258925039333, 30.168041293310857 ], [ -94.994284925508026, 30.167991293310752 ], [ -94.994284925018547, 30.167903293618568 ], [ -94.994265924860628, 30.167793293373919 ], [ -94.994309925632351, 30.16763929333192 ], [ -94.994347925095866, 30.167260293477614 ], [ -94.994365925625715, 30.16723829330995 ], [ -94.994378925681502, 30.167199292968796 ], [ -94.994448925774961, 30.167133293065188 ], [ -94.994486925532001, 30.167117293275396 ], [ -94.99453692491555, 30.167111293571018 ], [ -94.994676925253131, 30.167177292895197 ], [ -94.994714925706944, 30.167177293171147 ], [ -94.99473992536484, 30.167150293115089 ], [ -94.994726924994723, 30.166765293278274 ], [ -94.994732925378131, 30.166633292719144 ], [ -94.994720925821781, 30.166578292662606 ], [ -94.994624925684988, 30.16637429324728 ], [ -94.994618925235969, 30.166342293101799 ], [ -94.994643925184846, 30.166232293037648 ], [ -94.994675925836844, 30.166176293035509 ], [ -94.994820925188279, 30.166028292655092 ], [ -94.995048925557953, 30.165731292561411 ], [ -94.995149925830646, 30.165582292571177 ], [ -94.995168925927743, 30.165533292629288 ], [ -94.995174924982251, 30.16547229327605 ], [ -94.995155925353089, 30.165362293079458 ], [ -94.995048925463436, 30.165214292695225 ], [ -94.99498492490217, 30.165038292546711 ], [ -94.994981925850482, 30.164710292833298 ], [ -94.994978925074875, 30.164323292222718 ], [ -94.995053925147872, 30.163971292574477 ], [ -94.995098925862621, 30.163889292677577 ], [ -94.995148925899983, 30.163845292727604 ], [ -94.995294925402717, 30.163834292106912 ], [ -94.995351925386885, 30.163867292213808 ], [ -94.995458925219936, 30.163993292518278 ], [ -94.995591925702172, 30.164098292332703 ], [ -94.995648925315109, 30.164120292770903 ], [ -94.995977925273024, 30.164141292735714 ], [ -94.996028925986835, 30.164125292228238 ], [ -94.996110925456549, 30.164070292468846 ], [ -94.99630092523536, 30.163817292029954 ], [ -94.99655392583459, 30.163509292798761 ], [ -94.996647925550221, 30.163052292621185 ], [ -94.996654925768041, 30.162761292474574 ], [ -94.996679925351415, 30.162645292130989 ], [ -94.996704925360149, 30.162601292372475 ], [ -94.996818925505877, 30.162535292616539 ], [ -94.997065925693732, 30.162486292293714 ], [ -94.997229926075789, 30.16234829177229 ], [ -94.997362925833485, 30.16208429224789 ], [ -94.997526926000035, 30.161644291843249 ], [ -94.997520926280103, 30.161474292248805 ], [ -94.997488925968526, 30.161320291887858 ], [ -94.997425925606663, 30.161210291621515 ], [ -94.997228925683771, 30.160995292221408 ], [ -94.997184925420996, 30.160886292196444 ], [ -94.997171925330477, 30.160792292043347 ], [ -94.997184925804035, 30.160682291798093 ], [ -94.997253926174281, 30.160567291756941 ], [ -94.997412926060264, 30.16049029135257 ], [ -94.997551925881922, 30.160484291989434 ], [ -94.997684925763622, 30.160517292028235 ], [ -94.997810925500573, 30.160561291724736 ], [ -94.997956926464752, 30.160649291378817 ], [ -94.997994925774293, 30.160693291590587 ], [ -94.998063925537934, 30.160715291510652 ], [ -94.998228926381913, 30.160698291804046 ], [ -94.998380926481985, 30.160593291690137 ], [ -94.998519925936719, 30.160456291685602 ], [ -94.998525926307423, 30.160225291407031 ], [ -94.998341925514012, 30.159956291831804 ], [ -94.998215926445539, 30.159835291391143 ], [ -94.998196925533549, 30.159554291361484 ], [ -94.998423926217683, 30.159439291448802 ], [ -94.998423926233528, 30.159312291340605 ], [ -94.99811992626806, 30.159070291503994 ], [ -94.998062925981344, 30.15898329127447 ], [ -94.997974926417868, 30.158790291041733 ], [ -94.997986925446455, 30.158680291561996 ], [ -94.998005926164609, 30.158620291642585 ], [ -94.998132926200014, 30.158350291575832 ], [ -94.99811392573811, 30.158240291511024 ], [ -94.998112925781314, 30.158125291032352 ], [ -94.998030926273003, 30.158037291627704 ], [ -94.997916925375947, 30.15794929154141 ], [ -94.997562925514245, 30.157795291103998 ], [ -94.997568925230013, 30.157471290865644 ], [ -94.997688925940054, 30.157267291346258 ], [ -94.997814925592664, 30.15702029069654 ], [ -94.997916925762908, 30.156871291151468 ], [ -94.998042925642366, 30.1567342911666 ], [ -94.998099925740661, 30.156689290646778 ], [ -94.998339925884821, 30.156590290565976 ], [ -94.998687926238972, 30.156596291098918 ], [ -94.998858926140144, 30.156629291222785 ], [ -94.999029925857698, 30.15670629109826 ], [ -94.999194926008414, 30.156826290894085 ], [ -94.99927692569976, 30.156870290568424 ], [ -94.999358926338601, 30.156821290567446 ], [ -94.999440925654795, 30.15663429072908 ], [ -94.99956092628446, 30.156056290691151 ], [ -94.99964292667201, 30.155891290725592 ], [ -94.999706925900483, 30.155809290944209 ], [ -94.999876925937215, 30.155781290508909 ], [ -95.000103926229244, 30.155631290810113 ], [ -95.000161926543711, 30.155318290797755 ], [ -95.000230926286122, 30.155059290434657 ], [ -95.000224926247853, 30.154823290630443 ], [ -95.000243926123957, 30.154702290054537 ], [ -95.000155926450176, 30.154575290024457 ], [ -94.999945926042258, 30.154495290373646 ], [ -94.999831926563061, 30.154495290869335 ], [ -94.999660925877549, 30.15438529046137 ], [ -94.999629926250691, 30.154291290352134 ], [ -94.999610926545955, 30.154154290645035 ], [ -94.999685926202801, 30.15401629062297 ], [ -94.999685926244609, 30.153917290133052 ], [ -94.999641926292497, 30.153851290494224 ], [ -94.999603926380331, 30.153736289902096 ], [ -94.99959092659094, 30.153615290032111 ], [ -94.999609926439021, 30.153533290683921 ], [ -94.999609926017129, 30.153417289860641 ], [ -94.999679926127001, 30.15332429023038 ], [ -94.999818925704275, 30.15324628981751 ], [ -95.000010925624196, 30.153178290461984 ], [ -95.000250925698836, 30.153421290595276 ], [ -95.00030792599631, 30.153448289941085 ], [ -95.000333926360199, 30.15345429017535 ], [ -95.000415926348879, 30.153421290614109 ], [ -95.000478926514603, 30.15338229042689 ], [ -95.000548926095107, 30.153322289914339 ], [ -95.000624926448467, 30.15321728980917 ], [ -95.00064992593154, 30.153157289986286 ], [ -95.000668925985877, 30.152986290340763 ], [ -95.000649926382962, 30.152931290052745 ], [ -95.00054892674612, 30.152772289647874 ], [ -95.000504925875546, 30.152464290061705 ], [ -95.000510926661093, 30.152337290265802 ], [ -95.000536926560869, 30.152260290102394 ], [ -95.000624926283365, 30.152101289813878 ], [ -95.000682926419643, 30.152071290031618 ], [ -95.000783926292527, 30.152019289531346 ], [ -95.001080925902912, 30.151997290106856 ], [ -95.001251926702778, 30.152008290176656 ], [ -95.001498926965724, 30.151969289892737 ], [ -95.001650926803691, 30.151953289989383 ], [ -95.001700926730535, 30.151958290100886 ], [ -95.001738926957017, 30.151970290040403 ], [ -95.001820926422468, 30.152019289848376 ], [ -95.002099926242565, 30.152360289964719 ], [ -95.002187926390192, 30.152426290336628 ], [ -95.00226992629544, 30.152465289527051 ], [ -95.002503926992418, 30.152448290100558 ], [ -95.002605926733921, 30.152432289912291 ], [ -95.002674927047778, 30.152404289656971 ], [ -95.002712926851359, 30.152377289908021 ], [ -95.002769926663191, 30.152300289831512 ], [ -95.002833927262785, 30.152168289684752 ], [ -95.002852926578413, 30.152080290063761 ], [ -95.00283992663843, 30.152020289932697 ], [ -95.002789926352577, 30.151921289469897 ], [ -95.002725926586692, 30.151833289558883 ], [ -95.002662926799317, 30.15171728969101 ], [ -95.002637926832804, 30.151634289347125 ], [ -95.002624926857251, 30.151547289451461 ], [ -95.002631926488206, 30.15143128994659 ], [ -95.002650927149318, 30.151387289489882 ], [ -95.002688926868274, 30.151354289905992 ], [ -95.002928926931034, 30.151244289600498 ], [ -95.002979926904686, 30.1512502892984 ], [ -95.00302392703891, 30.151277289387824 ], [ -95.00306192677472, 30.151327290030494 ], [ -95.003074926872443, 30.151404289552278 ], [ -95.003080927335262, 30.151585289807258 ], [ -95.003092926921369, 30.151635289655491 ], [ -95.00312492683446, 30.151695290150297 ], [ -95.003206926834608, 30.151745290147748 ], [ -95.003358926662088, 30.151750290018235 ], [ -95.003428926647288, 30.151723289425355 ], [ -95.003510927337885, 30.151651289557574 ], [ -95.003573927151109, 30.151580289421254 ], [ -95.003592926994344, 30.151525289269838 ], [ -95.003624926889785, 30.151294289850121 ], [ -95.003662926571806, 30.151201289814921 ], [ -95.003713927479552, 30.151113289392963 ], [ -95.003744926913356, 30.151030289308178 ], [ -95.00375792650982, 30.150953289586543 ], [ -95.003738926521066, 30.150711289174449 ], [ -95.003675926580598, 30.150574289848407 ], [ -95.00363792740491, 30.150271289660822 ], [ -95.003663926578241, 30.150156289603586 ], [ -95.003815927157092, 30.149776289197021 ], [ -95.003840926493012, 30.149666288894224 ], [ -95.003846927224757, 30.149540289058326 ], [ -95.003834926872685, 30.149293289137475 ], [ -95.003878926581891, 30.149084289456219 ], [ -95.003916926805474, 30.149018289058471 ], [ -95.003980927179256, 30.148941288807393 ], [ -95.004043927133552, 30.14888628952329 ], [ -95.004125926888321, 30.148842289120545 ], [ -95.004328927574704, 30.148765289045784 ], [ -95.004397926986726, 30.148715288804979 ], [ -95.004562926994566, 30.148627289266148 ], [ -95.004644926878143, 30.148529289073064 ], [ -95.004695927324974, 30.148446288857347 ], [ -95.004733926694101, 30.148358289086357 ], [ -95.004803927167316, 30.148138289121981 ], [ -95.004847927479886, 30.148072288851644 ], [ -95.004986927438978, 30.147968289072722 ], [ -95.005056927136764, 30.147946289198121 ], [ -95.005265927575493, 30.147940288823161 ], [ -95.005632927713748, 30.147996288514378 ], [ -95.00574692695254, 30.147996288729814 ], [ -95.005783927715797, 30.147979288599505 ], [ -95.005853927311122, 30.147924288730053 ], [ -95.005897927401293, 30.147875288431937 ], [ -95.005935926961371, 30.147803288525253 ], [ -95.005986927878425, 30.147666289271214 ], [ -95.005999927550221, 30.147583288549576 ], [ -95.005942927641982, 30.147473288418723 ], [ -95.005872927628786, 30.147396289065416 ], [ -95.005777926921965, 30.147314288656702 ], [ -95.005708927053988, 30.147215289087612 ], [ -95.005702926950477, 30.147160289115302 ], [ -95.005714927513793, 30.147110289016023 ], [ -95.005778927532589, 30.147061288694193 ], [ -95.005828927262002, 30.147039288494028 ], [ -95.005980927508631, 30.147012288869259 ], [ -95.006031927339407, 30.146990288503435 ], [ -95.006062927284518, 30.146957288662847 ], [ -95.006094927486018, 30.146885288387068 ], [ -95.006119927671762, 30.146781288400206 ], [ -95.006120927438801, 30.146594288479879 ], [ -95.006132927708919, 30.146478288232082 ], [ -95.006158927239724, 30.146396288144075 ], [ -95.006196927465922, 30.146346288197112 ], [ -95.00625992737848, 30.146302288369007 ], [ -95.006329927618339, 30.146286288623628 ], [ -95.006455927562811, 30.146297288520007 ], [ -95.006594928047505, 30.146324288115096 ], [ -95.0067469271969, 30.146368288337264 ], [ -95.00682892801666, 30.146401288731237 ], [ -95.007170927932293, 30.146391288639986 ], [ -95.007214927248455, 30.146407288757164 ], [ -95.007429927593193, 30.146616288629694 ], [ -95.007518927881009, 30.146655288577993 ], [ -95.007594927718614, 30.146655288609772 ], [ -95.007676927671469, 30.146644288398818 ], [ -95.007853927413791, 30.146550288311619 ], [ -95.008138927569661, 30.146287288531575 ], [ -95.008284927852969, 30.146177288448065 ], [ -95.008360928226438, 30.146078288425414 ], [ -95.008391927481426, 30.145995288158481 ], [ -95.00846192803634, 30.145731288124857 ], [ -95.008499928507504, 30.145627288074547 ], [ -95.008537928460697, 30.145555288362416 ], [ -95.008575928416221, 30.145506287887134 ], [ -95.008676928456083, 30.145429288467003 ], [ -95.008803928137709, 30.145358288518374 ], [ -95.008904927646128, 30.145319288222542 ], [ -95.008999928242616, 30.145319288014896 ], [ -95.009227927745172, 30.145374287876212 ], [ -95.009454928349129, 30.14538028863749 ], [ -95.009524928323543, 30.145396288511851 ], [ -95.009682928386368, 30.145506288409184 ], [ -95.009967928043579, 30.145748288745075 ], [ -95.010277928354441, 30.145606288334328 ], [ -95.010435928340485, 30.145518288084808 ], [ -95.010467928456009, 30.145474288490156 ], [ -95.010498927993453, 30.145402288241502 ], [ -95.010543928109584, 30.145204287758936 ], [ -95.010568928876651, 30.145133288419572 ], [ -95.010613928355681, 30.145072287703268 ], [ -95.010669928647118, 30.145023287965866 ], [ -95.010771928951087, 30.144957288260994 ], [ -95.010992928693014, 30.144831288012991 ], [ -95.011087928586349, 30.144820287669837 ], [ -95.01132192837396, 30.144853287708255 ], [ -95.011543928706658, 30.14484228804951 ], [ -95.011910928534419, 30.144897287934661 ], [ -95.012023928989208, 30.144930288088343 ], [ -95.012099928644417, 30.144974288333618 ], [ -95.012226928750053, 30.145067288332978 ], [ -95.01232792934799, 30.145188288128153 ], [ -95.012447929455931, 30.145463287841554 ], [ -95.012498929083065, 30.145507287781623 ], [ -95.012713928712273, 30.145590287871233 ], [ -95.012820929050122, 30.14555728818414 ], [ -95.012852928823392, 30.145530288329233 ], [ -95.01302392947855, 30.145277288209005 ], [ -95.013263929702575, 30.145128287733094 ], [ -95.013384928724435, 30.145106287750394 ], [ -95.013637929485711, 30.145238287661471 ], [ -95.013807929265184, 30.145282288012147 ], [ -95.013883929441704, 30.145315287682781 ], [ -95.014092929844821, 30.14548628826595 ], [ -95.014200929193848, 30.145547288009418 ], [ -95.014326929481953, 30.145574287928184 ], [ -95.014402929874052, 30.145563288223137 ], [ -95.014459929981953, 30.145541288305516 ], [ -95.014598930001796, 30.145382288395513 ], [ -95.014674929092124, 30.145349287611491 ], [ -95.014725929931146, 30.145343287812651 ], [ -95.014965929838581, 30.145360288453695 ], [ -95.015168930131722, 30.14531628813214 ], [ -95.015307929334469, 30.145239287604237 ], [ -95.015604929889719, 30.145102287833524 ], [ -95.015940930002188, 30.145014287752687 ], [ -95.016041930367493, 30.144975287627201 ], [ -95.01623192989446, 30.144799288008457 ], [ -95.016389929951814, 30.144689288169641 ], [ -95.016591930136457, 30.144657288285789 ], [ -95.016686929839977, 30.144629288246232 ], [ -95.016762930481818, 30.144591287549737 ], [ -95.01686493052992, 30.14443128809128 ], [ -95.016902929717077, 30.144349287633588 ], [ -95.01690893017404, 30.144261287565175 ], [ -95.016902929603262, 30.144195287744623 ], [ -95.01686492992755, 30.144129288131346 ], [ -95.016807930137318, 30.144068287914795 ], [ -95.0166179303136, 30.14397528786402 ], [ -95.016541930015649, 30.143837287671413 ], [ -95.016529929955567, 30.143755287804446 ], [ -95.016535929912735, 30.143612287278337 ], [ -95.016567930067964, 30.143529287828798 ], [ -95.016624929754627, 30.143436287323027 ], [ -95.016700930463898, 30.143370287747192 ], [ -95.016731929845591, 30.14330928749802 ], [ -95.016750930465903, 30.14322728768726 ], [ -95.016801930308716, 30.143123287703531 ], [ -95.016791930077147, 30.143028287695067 ], [ -95.016902929655032, 30.143002287696923 ], [ -95.017238929758122, 30.14279328773247 ], [ -95.017383930643334, 30.14272728727401 ], [ -95.017403930569429, 30.142710287032411 ], [ -95.017605929777005, 30.142556286964126 ], [ -95.017782929801228, 30.142380287551816 ], [ -95.018023930055833, 30.142029287220808 ], [ -95.018086930431664, 30.141963287444185 ], [ -95.01816893071161, 30.141908287300808 ], [ -95.018238930396677, 30.141886287042162 ], [ -95.018333930732254, 30.141864287557681 ], [ -95.018421930566376, 30.141858287648049 ], [ -95.018510930760669, 30.141864287174215 ], [ -95.018775930435638, 30.14200128681232 ], [ -95.018984930883235, 30.142139287671686 ], [ -95.019098930924272, 30.14219928685452 ], [ -95.019174930765814, 30.142266286846819 ], [ -95.019250930637327, 30.142293287310544 ], [ -95.019535931077755, 30.1423102876259 ], [ -95.019617931074876, 30.142288287040675 ], [ -95.01995293066804, 30.142095287124977 ], [ -95.020009931220301, 30.142029286771116 ], [ -95.020072930793006, 30.141919287014183 ], [ -95.020079930779161, 30.141853287479879 ], [ -95.020054930372581, 30.141639286977529 ], [ -95.02002893047451, 30.141589286899503 ], [ -95.019984931129628, 30.141551287340477 ], [ -95.019839930661533, 30.141468286723764 ], [ -95.019794930732431, 30.141364287305013 ], [ -95.01982093041596, 30.141215287390953 ], [ -95.019870930663799, 30.141166286923021 ], [ -95.019940930647522, 30.141127287331869 ], [ -95.020136931163464, 30.141095287124688 ], [ -95.020364931085538, 30.141155286988269 ], [ -95.020547931182392, 30.141227287071306 ], [ -95.020604930616287, 30.141271287271554 ], [ -95.020876931400338, 30.141529287158583 ], [ -95.020908930975423, 30.141595286881035 ], [ -95.020920931309234, 30.141722287324843 ], [ -95.020901930769739, 30.141799287057275 ], [ -95.020857930519639, 30.141876287379752 ], [ -95.020800930896598, 30.141936287372641 ], [ -95.020775931168941, 30.142008286816139 ], [ -95.020825931172439, 30.142096287385947 ], [ -95.020888930519163, 30.142156287257656 ], [ -95.021066931163617, 30.142211287311071 ], [ -95.021154930592985, 30.142217287061982 ], [ -95.021262931483847, 30.142200287077721 ], [ -95.02140193109939, 30.14209028724326 ], [ -95.021527931018227, 30.14195328670252 ], [ -95.021648931497623, 30.141881286913179 ], [ -95.021983931469393, 30.141766287068073 ], [ -95.02208493095479, 30.141749286980325 ], [ -95.022192931272926, 30.141706286692035 ], [ -95.022325930876775, 30.141574287240459 ], [ -95.022375931143628, 30.141535287098183 ], [ -95.022439931376582, 30.141524287331798 ], [ -95.022534931315604, 30.141557287089061 ], [ -95.022825931591385, 30.141706287119888 ], [ -95.022957931948241, 30.141788287157432 ], [ -95.023071931137338, 30.141827286666306 ], [ -95.023324931340866, 30.141838287094981 ], [ -95.023552931830181, 30.141612287345986 ], [ -95.023805932001679, 30.141305287075895 ], [ -95.024343931469886, 30.140810286820173 ], [ -95.024413931472651, 30.140694286426097 ], [ -95.024426931816819, 30.140639286687904 ], [ -95.024476932255027, 30.140546286446927 ], [ -95.024634932381218, 30.140315286854285 ], [ -95.024964931875516, 30.139820286117892 ], [ -95.025033932319431, 30.13974928661068 ], [ -95.025255932002111, 30.139589286237438 ], [ -95.025331932033055, 30.139567286371864 ], [ -95.025419932033415, 30.139557286884887 ], [ -95.02552093216913, 30.13955628625164 ], [ -95.025584931926488, 30.139584286148963 ], [ -95.025628932110195, 30.139639286865382 ], [ -95.025634931926078, 30.139732286810169 ], [ -95.025590931990536, 30.139886286247673 ], [ -95.025533932287559, 30.13998528659695 ], [ -95.025463932198349, 30.140194286213713 ], [ -95.025501932357628, 30.14024428686745 ], [ -95.025571931709266, 30.140271286994924 ], [ -95.025836932110707, 30.140293286708317 ], [ -95.025919932448843, 30.140260286204462 ], [ -95.025982932684187, 30.140194286474919 ], [ -95.0260649318313, 30.140085286798339 ], [ -95.026216931864482, 30.139964286693658 ], [ -95.026317932109094, 30.139837286411868 ], [ -95.026393932302369, 30.139711286871037 ], [ -95.026583932767039, 30.139469286764388 ], [ -95.026919932161263, 30.139150285991626 ], [ -95.026957931953831, 30.139095286118319 ], [ -95.027109932934636, 30.139018286794755 ], [ -95.027260932226426, 30.13888628623997 ], [ -95.027317932586158, 30.138815285897088 ], [ -95.027406932230548, 30.138628285931791 ], [ -95.027440932922971, 30.138586285829156 ], [ -95.027526932281376, 30.138479286323861 ], [ -95.027596932778238, 30.138435285867633 ], [ -95.027741932609516, 30.13840828644528 ], [ -95.027836932505508, 30.138369286423043 ], [ -95.027919932822869, 30.1383032861313 ], [ -95.028045932790235, 30.138139286328123 ], [ -95.028165932853028, 30.137897285690691 ], [ -95.028298932354375, 30.137523286268799 ], [ -95.028400932983118, 30.137358285894557 ], [ -95.028450933082823, 30.137325286090508 ], [ -95.028526932733712, 30.137303286265009 ], [ -95.028602933247583, 30.13730828609857 ], [ -95.028779933330966, 30.137385286322747 ], [ -95.028855933039566, 30.137385286281898 ], [ -95.028893933291712, 30.137352285854789 ], [ -95.028912932511446, 30.137325285687616 ], [ -95.028931933250306, 30.137264285940621 ], [ -95.028950933332652, 30.136984285696165 ], [ -95.028995933330776, 30.136825286105324 ], [ -95.029020932455239, 30.136770285443699 ], [ -95.029058933379588, 30.136726285455598 ], [ -95.029115932374268, 30.136704285778176 ], [ -95.029273933254359, 30.136715285999863 ], [ -95.029374932906919, 30.136742285950849 ], [ -95.029551933258375, 30.136885286002027 ], [ -95.029703933379807, 30.137094286073896 ], [ -95.029773933472143, 30.137155285523118 ], [ -95.029848933090733, 30.137182285762549 ], [ -95.029969933630866, 30.137188285457171 ], [ -95.030133933156023, 30.137182285431383 ], [ -95.030253933568702, 30.137138286294451 ], [ -95.03046893333503, 30.137023285834445 ], [ -95.030677933677609, 30.136935285470329 ], [ -95.031063933533616, 30.136682286046973 ], [ -95.031234932901867, 30.136523285867391 ], [ -95.031304933488158, 30.136479285343022 ], [ -95.031348933187289, 30.136457285687218 ], [ -95.031468933840088, 30.136440286067181 ], [ -95.031525933503573, 30.136457285620107 ], [ -95.031576933815899, 30.136484285363004 ], [ -95.031614933104535, 30.136528285368826 ], [ -95.03165293311551, 30.136594285340117 ], [ -95.031657933432982, 30.136683285687123 ], [ -95.031620933973713, 30.136847285317149 ], [ -95.031645933326232, 30.137007285858157 ], [ -95.031740933150886, 30.137089286034417 ], [ -95.031810933703369, 30.137128285353551 ], [ -95.03186093397089, 30.137144285728194 ], [ -95.031936933828646, 30.137150285584298 ], [ -95.032037933271212, 30.137106285748285 ], [ -95.032120933873159, 30.13704028565925 ], [ -95.032196934180078, 30.136957285465364 ], [ -95.032272933923707, 30.136858285987614 ], [ -95.032442933397618, 30.136666286049284 ], [ -95.032601933423948, 30.136369285434391 ], [ -95.032765933353843, 30.136254285323691 ], [ -95.032828934177729, 30.13622128559345 ], [ -95.032999933862499, 30.136182285126853 ], [ -95.033176934085375, 30.136166285479081 ], [ -95.033360934157159, 30.136166285462487 ], [ -95.033404933826702, 30.136138285325835 ], [ -95.033430933462981, 30.136061285480555 ], [ -95.033423934037714, 30.136012285257241 ], [ -95.033366933627093, 30.135847285745701 ], [ -95.033278933563011, 30.13564928502154 ], [ -95.033234933689741, 30.135522285304937 ], [ -95.0332349342508, 30.135423285067557 ], [ -95.033240933985354, 30.135253285267147 ], [ -95.033278934072342, 30.135181285226569 ], [ -95.033354934012934, 30.135110284927318 ], [ -95.033487934054548, 30.135061285755022 ], [ -95.033537934003533, 30.1350612853991 ], [ -95.033771934395659, 30.135127285286419 ], [ -95.033917933756044, 30.13514328515604 ], [ -95.034005934152034, 30.135138285303981 ], [ -95.034094934394162, 30.135099285489481 ], [ -95.034240934065011, 30.134989285120618 ], [ -95.034309933683176, 30.134896285543125 ], [ -95.034474934168514, 30.134709285242128 ], [ -95.034600934209934, 30.134599285146791 ], [ -95.034664934026011, 30.134494285462765 ], [ -95.034714934130889, 30.134346284815088 ], [ -95.034752934402889, 30.134280285105358 ], [ -95.034803933877456, 30.13424228478469 ], [ -95.034974934042481, 30.134176284961072 ], [ -95.035252934262246, 30.13411528505026 ], [ -95.035663934280734, 30.133983285145945 ], [ -95.036005934911046, 30.133928285243556 ], [ -95.036036934379737, 30.133895285036143 ], [ -95.03607493428467, 30.133796284580651 ], [ -95.036100934871882, 30.133587284531238 ], [ -95.036138934572946, 30.133527285154422 ], [ -95.036271934127257, 30.133384284546779 ], [ -95.036372934221987, 30.133313284626475 ], [ -95.036517934752752, 30.133098284832876 ], [ -95.036562934286451, 30.132961284614936 ], [ -95.036606934853523, 30.132906284731845 ], [ -95.036745934986286, 30.132851284306884 ], [ -95.036828934601772, 30.132768284722776 ], [ -95.036872934339769, 30.132741284511724 ], [ -95.036922934254434, 30.132730284306227 ], [ -95.036979935166073, 30.132757284660897 ], [ -95.037008934246543, 30.132763285073555 ], [ -95.037062935061101, 30.132774284415643 ], [ -95.037137934559496, 30.132768284803507 ], [ -95.037226934420104, 30.132713284640239 ], [ -95.03728993481684, 30.132620284634058 ], [ -95.037359934813097, 30.132515284477936 ], [ -95.037429935310101, 30.132378284938238 ], [ -95.037656934645611, 30.132153284970986 ], [ -95.037954935289434, 30.131806284527269 ], [ -95.038125935074476, 30.131680284367125 ], [ -95.038200935413883, 30.131614284161355 ], [ -95.038422935287684, 30.1315702848668 ], [ -95.038498934621913, 30.131570284009452 ], [ -95.038631935335701, 30.131592283996415 ], [ -95.038865935198899, 30.13170228417005 ], [ -95.03897293483567, 30.131713284832088 ], [ -95.039048935406456, 30.131696284350038 ], [ -95.039276935488758, 30.131597284021655 ], [ -95.039371935203405, 30.131542284057947 ], [ -95.039459935115474, 30.131477284297336 ], [ -95.039668935091711, 30.131350284571024 ], [ -95.039801935366356, 30.13124628441355 ], [ -95.039820935662021, 30.131202284347392 ], [ -95.039814934887332, 30.131158284666316 ], [ -95.039744935324507, 30.131042284618378 ], [ -95.039915935869956, 30.131196284531185 ], [ -95.039966935277477, 30.13121828414198 ], [ -95.04000893536481, 30.131216283941487 ], [ -95.040105934953388, 30.131213284551666 ], [ -95.040301935909838, 30.131158284424075 ], [ -95.040383935642822, 30.131147284538955 ], [ -95.040440935517523, 30.131130284419839 ], [ -95.04057393558918, 30.131009284171565 ], [ -95.040687935854677, 30.130866284148258 ], [ -95.040718936100689, 30.130800284347934 ], [ -95.040896935729009, 30.130570283814912 ], [ -95.041047935867383, 30.130394283713184 ], [ -95.041503935686663, 30.130058283778403 ], [ -95.041703935633663, 30.130001283594908 ], [ -95.041737935832302, 30.129992283967137 ], [ -95.0420229360832, 30.1299872837224 ], [ -95.042053936033639, 30.130075284151424 ], [ -95.042148935969749, 30.130229284028239 ], [ -95.042237935485403, 30.130333284452323 ], [ -95.042313935863888, 30.130333284205882 ], [ -95.042534936186058, 30.130273283906 ], [ -95.042711936182769, 30.130196283627669 ], [ -95.042787936395555, 30.130234284076398 ], [ -95.042939936059369, 30.130410284209191 ], [ -95.043072936699772, 30.130487283734706 ], [ -95.04316093598284, 30.130471283883836 ], [ -95.043217936731622, 30.130366283790888 ], [ -95.043356935978039, 30.130355283755986 ], [ -95.04360993677011, 30.130416283581219 ], [ -95.043818936410631, 30.130399283546833 ], [ -95.044071936355024, 30.130405283992669 ], [ -95.044217936677853, 30.130367283570205 ], [ -95.04427493655065, 30.130284283866789 ], [ -95.044261936349585, 30.129773284249932 ], [ -95.044274936951965, 30.129679283450521 ], [ -95.044451937014301, 30.129630283397958 ], [ -95.044464937020592, 30.129349283550106 ], [ -95.044590936622157, 30.129223283274712 ], [ -95.044742936422068, 30.129157283899641 ], [ -95.044799936479933, 30.129113283246657 ], [ -95.044856936301684, 30.129036284010393 ], [ -95.044887936709614, 30.128986283421931 ], [ -95.044938936932766, 30.128750283550556 ], [ -95.044932937050888, 30.128596283535405 ], [ -95.04495793647223, 30.128525283545066 ], [ -95.045001936864594, 30.128453283470794 ], [ -95.045052936830558, 30.128398283661742 ], [ -95.045153937002382, 30.128327283657072 ], [ -95.045198936737123, 30.128283283784889 ], [ -95.045235936179381, 30.128217283385226 ], [ -95.045286936409354, 30.128140283554394 ], [ -95.045305936675518, 30.128090283828026 ], [ -95.045292937061944, 30.128002283608048 ], [ -95.045254936212658, 30.127914283851062 ], [ -95.045052936437301, 30.12768328316864 ], [ -95.045052936206034, 30.127529283517756 ], [ -95.045084936138593, 30.127485283201924 ], [ -95.045217936490772, 30.127403283211965 ], [ -95.045368937006842, 30.127386283175888 ], [ -95.045444936624008, 30.127364283059869 ], [ -95.045501936502845, 30.127326283738768 ], [ -95.045539936167586, 30.127271283296228 ], [ -95.045584936712913, 30.127068283066947 ], [ -95.045639936587662, 30.126958282976052 ], [ -95.045672936448355, 30.126892283088775 ], [ -95.045666936281464, 30.126595282866656 ], [ -95.045672936651414, 30.12650728346506 ], [ -95.045717936668012, 30.126435282745156 ], [ -95.045773936176843, 30.126386283257641 ], [ -95.045938936633732, 30.126375283377943 ], [ -95.046020936242982, 30.126391283430671 ], [ -95.046431936388629, 30.126639283038699 ], [ -95.046507936662209, 30.126672282680076 ], [ -95.046577936528067, 30.126672283333413 ], [ -95.046653937389152, 30.126650283490868 ], [ -95.046805936549646, 30.126529283338179 ], [ -95.046899937266929, 30.126529283461839 ], [ -95.046937937400472, 30.126512282724175 ], [ -95.047039936530226, 30.12640828325738 ], [ -95.04710293682065, 30.126364282909112 ], [ -95.04725493660159, 30.126292282778831 ], [ -95.04733693691432, 30.126204283038927 ], [ -95.047438936729861, 30.126027282611421 ], [ -95.047500936820754, 30.125919282870928 ], [ -95.047583937331808, 30.125825282769433 ], [ -95.047665937279675, 30.125765282591928 ], [ -95.047722936935969, 30.125737282654988 ], [ -95.047810937530642, 30.12574328256941 ], [ -95.04792493710201, 30.125737283177909 ], [ -95.048114937418475, 30.125556282631564 ], [ -95.048222937109031, 30.125501283104814 ], [ -95.048348937467551, 30.12545128317478 ], [ -95.048588937055158, 30.12543528258557 ], [ -95.048626936979204, 30.12547328259441 ], [ -95.048664936909503, 30.125556282600069 ], [ -95.048633937531008, 30.125682283301167 ], [ -95.048633937612834, 30.125765282471814 ], [ -95.048658937327232, 30.125803283215905 ], [ -95.048987937913139, 30.126045283132488 ], [ -95.04905693782699, 30.126078283275397 ], [ -95.049107937400635, 30.126089282678734 ], [ -95.049139938011663, 30.126084282535594 ], [ -95.049272937534568, 30.125990282590998 ], [ -95.049316937367522, 30.125935283182795 ], [ -95.049404937309376, 30.12571028314122 ], [ -95.049430937993193, 30.125671283118407 ], [ -95.049506937229125, 30.125622282914001 ], [ -95.049575937856957, 30.125605283126863 ], [ -95.049778937352713, 30.125578282611897 ], [ -95.049910937685809, 30.12552828236538 ], [ -95.050050937457584, 30.125369282696802 ], [ -95.049993937580794, 30.125182283011057 ], [ -95.050042937226308, 30.125007283094064 ], [ -95.050042937494325, 30.124886282978267 ], [ -95.050086937916575, 30.124793282372575 ], [ -95.050187937863981, 30.124683283019593 ], [ -95.050339937443027, 30.124589282254775 ], [ -95.050440937719515, 30.124573282312706 ], [ -95.050738937774597, 30.124567282854134 ], [ -95.050858937705755, 30.124551282715309 ], [ -95.05097893780605, 30.124518282236036 ], [ -95.051117937704149, 30.124468282383649 ], [ -95.051408938262242, 30.124325282406183 ], [ -95.051535937785118, 30.124248282179273 ], [ -95.051864937994296, 30.124012282713586 ], [ -95.051914938056697, 30.123984282254469 ], [ -95.052275937942085, 30.123924281983751 ], [ -95.052446938574761, 30.123863282806887 ], [ -95.05251593856795, 30.123819281898772 ], [ -95.052654938162064, 30.123709282306397 ], [ -95.053028938122665, 30.123457282035357 ], [ -95.053148938768288, 30.123358282586487 ], [ -95.053262938489908, 30.123237282097303 ], [ -95.053654938668586, 30.122769282387001 ], [ -95.053780938403364, 30.122670282418156 ], [ -95.053881938266542, 30.122621282293125 ], [ -95.05398393830238, 30.122599282191388 ], [ -95.054046938971723, 30.122599282175688 ], [ -95.0543629386314, 30.122659281983189 ], [ -95.054590938976773, 30.122714282088989 ], [ -95.054672938745554, 30.122720282062055 ], [ -95.054735938781846, 30.122714281886147 ], [ -95.054754938381137, 30.122654282374182 ], [ -95.054748938519467, 30.122593282276817 ], [ -95.054704938822383, 30.122522281833646 ], [ -95.054514939265445, 30.12232428202325 ], [ -95.05448993859639, 30.122280281605736 ], [ -95.054482938397058, 30.122241281856134 ], [ -95.05449593823144, 30.122164282117257 ], [ -95.054533939079676, 30.122071281910497 ], [ -95.05457193904904, 30.122016281721383 ], [ -95.054615938445423, 30.121966282119967 ], [ -95.054906938786417, 30.121746281775007 ], [ -95.054995938731452, 30.121631281928476 ], [ -95.055020938768109, 30.121565281652629 ], [ -95.055033938420067, 30.12148228203143 ], [ -95.055039938508202, 30.121202281729541 ], [ -95.055026938556693, 30.120927281557343 ], [ -95.054995938720097, 30.120784281934295 ], [ -95.054950939037127, 30.120707281231457 ], [ -95.054894938694503, 30.120658281605419 ], [ -95.054849938926566, 30.12064128178168 ], [ -95.054773938734513, 30.120636281980342 ], [ -95.054508938569711, 30.120630281937981 ], [ -95.054622938218685, 30.120482281553649 ], [ -95.054704938521922, 30.120410281185137 ], [ -95.054745938456534, 30.120386281523338 ], [ -95.054995939181126, 30.120245281887502 ], [ -95.055083938636741, 30.120240281238395 ], [ -95.055317939138874, 30.120267281446377 ], [ -95.055482938548366, 30.120256281860328 ], [ -95.055608938684827, 30.12021228145661 ], [ -95.055703939065808, 30.120168281562012 ], [ -95.055837939169649, 30.120092281559085 ], [ -95.055975939406224, 30.12001428116017 ], [ -95.056057938838777, 30.119954281414643 ], [ -95.056089938923066, 30.119915280973022 ], [ -95.056108939419332, 30.119860280969618 ], [ -95.056108938961827, 30.119789281417393 ], [ -95.056095939291012, 30.119728280941573 ], [ -95.056064939243655, 30.119684281742231 ], [ -95.055975938711782, 30.119635281438821 ], [ -95.055893939441503, 30.119618281770784 ], [ -95.055842938503332, 30.119596281664162 ], [ -95.055804939179694, 30.119574281058235 ], [ -95.055779939363205, 30.119536281579727 ], [ -95.055779938683969, 30.119498281480656 ], [ -95.055817938787357, 30.119465280887162 ], [ -95.055887939252088, 30.119437281599751 ], [ -95.055925938722709, 30.119432281633948 ], [ -95.056399939442812, 30.119245281249249 ], [ -95.056558938630275, 30.119175281445035 ], [ -95.056772939344427, 30.119080280945695 ], [ -95.056911939016885, 30.119052281561586 ], [ -95.057025939490856, 30.119019281375504 ], [ -95.057120939174752, 30.118964280967774 ], [ -95.057405939733584, 30.118876281465983 ], [ -95.057468939861849, 30.118838280731737 ], [ -95.057525939774962, 30.118783280730213 ], [ -95.057556938982984, 30.118733280871311 ], [ -95.057613939851365, 30.118689281285821 ], [ -95.057740939870186, 30.118612280806115 ], [ -95.057816939076616, 30.118585281404968 ], [ -95.057898939721866, 30.11852428138689 ], [ -95.057936939621513, 30.118469281163794 ], [ -95.05794293933856, 30.118420281434041 ], [ -95.05793093981967, 30.118381280608755 ], [ -95.057885939174497, 30.118337281194041 ], [ -95.057860938926453, 30.118271281412468 ], [ -95.057860939268366, 30.118189281449673 ], [ -95.057879939042593, 30.118057280900043 ], [ -95.057860939290791, 30.118024281375931 ], [ -95.057816939027944, 30.117996280691639 ], [ -95.057664939528777, 30.117991281300334 ], [ -95.057424939735341, 30.11802428066483 ], [ -95.057373939265474, 30.118002281124905 ], [ -95.057348939664735, 30.117963280903091 ], [ -95.057322938972334, 30.117897280551482 ], [ -95.057322938901819, 30.11784228111274 ], [ -95.057354939616417, 30.117743281249247 ], [ -95.057417939148905, 30.11765528078827 ], [ -95.057569939286878, 30.117496280491967 ], [ -95.05799393962846, 30.117237280418049 ], [ -95.058170938938261, 30.117100281113466 ], [ -95.058492939365948, 30.116941280361644 ], [ -95.058771939267416, 30.116732280730865 ], [ -95.058922939931406, 30.11661128043551 ], [ -95.058979939927383, 30.116550280910872 ], [ -95.058998939365495, 30.116512280713653 ], [ -95.059005939262988, 30.116446280188956 ], [ -95.058986939548191, 30.116358280461384 ], [ -95.058960939525065, 30.116297280127046 ], [ -95.058866939948075, 30.116160280602212 ], [ -95.058834939916551, 30.116033280517158 ], [ -95.058828939892692, 30.11591828026399 ], [ -95.058853940062505, 30.115901280681257 ], [ -95.058891939067834, 30.115896280802765 ], [ -95.058929939673604, 30.115901280368863 ], [ -95.05897393954308, 30.115940280247475 ], [ -95.059030939582669, 30.115973280367921 ], [ -95.059093939557016, 30.115995280756739 ], [ -95.059175940163712, 30.115984280628432 ], [ -95.05922693991289, 30.115951280955212 ], [ -95.059296939868375, 30.115819280867385 ], [ -95.059346939353546, 30.115621280563314 ], [ -95.059346940107204, 30.115549280874017 ], [ -95.059283939788955, 30.115456280086686 ], [ -95.059178939382804, 30.115336279941644 ], [ -95.058967939480837, 30.115093280410754 ], [ -95.058815939100441, 30.114807280443408 ], [ -95.058783939594335, 30.114763280465372 ], [ -95.058745939834935, 30.1147142800192 ], [ -95.058726939013283, 30.11464228029217 ], [ -95.058720939821583, 30.114488280649677 ], [ -95.05878393971463, 30.114307279929847 ], [ -95.05883493943864, 30.114252280427291 ], [ -95.058884939655144, 30.114219280472845 ], [ -95.05894193919832, 30.114219280252236 ], [ -95.059011939790096, 30.114230280563763 ], [ -95.059232939495232, 30.114290280118531 ], [ -95.059378939153476, 30.11427927975614 ], [ -95.059479939588272, 30.114191279881858 ], [ -95.059624939228343, 30.114092279848858 ], [ -95.059650939572577, 30.114043280257587 ], [ -95.059631939782662, 30.113553280242311 ], [ -95.05958793940475, 30.113421279979935 ], [ -95.059504939990674, 30.113289279602185 ], [ -95.059416939080421, 30.113103280339015 ], [ -95.059428939447358, 30.113020279756192 ], [ -95.059504939588706, 30.112910280183105 ], [ -95.059599939715511, 30.112734279553703 ], [ -95.059650939491107, 30.112690280189486 ], [ -95.05969494004016, 30.112674279521073 ], [ -95.059757939640164, 30.112674279687734 ], [ -95.059909939403269, 30.112762279892898 ], [ -95.060004939939375, 30.112778279919425 ], [ -95.0600929398056, 30.112773279798347 ], [ -95.060232940161029, 30.112679279491356 ], [ -95.060238940164879, 30.112613280228956 ], [ -95.060080939234467, 30.112377279611479 ], [ -95.059846939631257, 30.111992279371492 ], [ -95.059669939138061, 30.111794279412113 ], [ -95.0594669400067, 30.11162927956773 ], [ -95.059397939959368, 30.111612280033157 ], [ -95.059359939199098, 30.111612279349373 ], [ -95.059295939787177, 30.111640279294377 ], [ -95.059093939600771, 30.111821279362974 ], [ -95.05891393957161, 30.111910279884903 ], [ -95.058796939596817, 30.11197027995766 ], [ -95.058650939449493, 30.111997279750678 ], [ -95.058543939184389, 30.11199227948212 ], [ -95.058442939277228, 30.111909279331591 ], [ -95.058423939454642, 30.111805280065074 ], [ -95.058429939571425, 30.11163427963594 ], [ -95.058492938929533, 30.111414279482542 ], [ -95.058669939207689, 30.111216279259171 ], [ -95.058808939053733, 30.111139279347263 ], [ -95.058922939137247, 30.111095279070941 ], [ -95.059011939753773, 30.111046279233463 ], [ -95.059061939157104, 30.11100227964592 ], [ -95.059213939096821, 30.110788279688478 ], [ -95.059256939471979, 30.110707279759694 ], [ -95.059352939199854, 30.110524279651862 ], [ -95.059637939387969, 30.109880279479512 ], [ -95.059795939402107, 30.109589279085029 ], [ -95.059858939831514, 30.109534278807697 ], [ -95.06002394004679, 30.109457279540877 ], [ -95.060105939218658, 30.109402278913304 ], [ -95.060200939648979, 30.109308278861278 ], [ -95.060611939498685, 30.109286279408401 ], [ -95.060763940115351, 30.109171279138764 ], [ -95.060788939605715, 30.10913227918201 ], [ -95.060794939471521, 30.109083279207674 ], [ -95.060788939549809, 30.108929279385347 ], [ -95.060794939271048, 30.108841279097788 ], [ -95.060813939932302, 30.108775278778467 ], [ -95.060878939973207, 30.108668278739788 ], [ -95.061003939464626, 30.108467279009513 ], [ -95.061098939988085, 30.108126278476274 ], [ -95.061167939866564, 30.108082278695665 ], [ -95.061332940297632, 30.108022279084928 ], [ -95.061382939687803, 30.107983278371691 ], [ -95.061420939915763, 30.107928278924287 ], [ -95.061433939890435, 30.107851279199775 ], [ -95.061414939591472, 30.107609278500902 ], [ -95.061382939894003, 30.107532278501012 ], [ -95.061313939473862, 30.107422278241195 ], [ -95.061098939656318, 30.107252278474611 ], [ -95.061053939509904, 30.107153278428147 ], [ -95.061066940257675, 30.107059278427698 ], [ -95.06111093969082, 30.106971278294271 ], [ -95.061248939900679, 30.106757278400075 ], [ -95.061262939721004, 30.106735278674915 ], [ -95.061287940046967, 30.106642278244454 ], [ -95.061414939437014, 30.106433278793283 ], [ -95.06147794012567, 30.106180278431577 ], [ -95.061515939809581, 30.106075278119199 ], [ -95.061578939983619, 30.105971278168465 ], [ -95.061679939444616, 30.105877278588643 ], [ -95.061781939555203, 30.105811278330815 ], [ -95.06191394022882, 30.105751278249301 ], [ -95.062179939894548, 30.105652278366737 ], [ -95.062324940378673, 30.105619278347071 ], [ -95.062609940072647, 30.105608278137424 ], [ -95.062944940510789, 30.105635278429677 ], [ -95.06324294031316, 30.10570127805109 ], [ -95.063406940137256, 30.105729278369193 ], [ -95.063507940334375, 30.105712278008436 ], [ -95.063703940390198, 30.105624277942614 ], [ -95.063773940280399, 30.105613278639346 ], [ -95.063842940858308, 30.105624278046427 ], [ -95.063906940416416, 30.105679278185221 ], [ -95.06395094039442, 30.105696278455643 ], [ -95.064045940643155, 30.10569027852965 ], [ -95.06414694073105, 30.105646277957046 ], [ -95.064228940434489, 30.105575278340144 ], [ -95.064620940564964, 30.105344278089014 ], [ -95.064696940776827, 30.105278278330037 ], [ -95.064791940427625, 30.105228277839867 ], [ -95.065189940242519, 30.105074277865441 ], [ -95.065341940629537, 30.105074277767361 ], [ -95.065430941141983, 30.105063278510823 ], [ -95.065645940898378, 30.105058277771001 ], [ -95.065746940500787, 30.105025278273033 ], [ -95.065866941148684, 30.104964277881667 ], [ -95.066397941047953, 30.104568278050955 ], [ -95.066503940538652, 30.104481277690667 ], [ -95.066675940589178, 30.104343278185315 ], [ -95.067245941587146, 30.103952277504465 ], [ -95.067358941481416, 30.103859277411818 ], [ -95.06748594108349, 30.103771277506251 ], [ -95.067580941765726, 30.103688277368363 ], [ -95.067902941758035, 30.103523277651732 ], [ -95.067965941042914, 30.103518278026282 ], [ -95.068060941637881, 30.103479277577765 ], [ -95.068231941877073, 30.10343527747019 ], [ -95.068345941192135, 30.103380277996717 ], [ -95.068535940998458, 30.10321527745883 ], [ -95.068860941402889, 30.102899277794343 ], [ -95.068920941534486, 30.102841277371745 ], [ -95.069034941329122, 30.102808277355813 ], [ -95.069167941523347, 30.102792277902491 ], [ -95.069446941234844, 30.102772277381604 ], [ -95.069556941497794, 30.10276927744416 ], [ -95.069646941593973, 30.102781277731253 ], [ -95.069723941666169, 30.102808277103538 ], [ -95.069793942265662, 30.102845277059849 ], [ -95.070086942257305, 30.103089277380235 ], [ -95.070462941652323, 30.103473277398333 ], [ -95.07053794210097, 30.103533277852289 ], [ -95.070593941769602, 30.103593277191848 ], [ -95.070705942277144, 30.103679277971906 ], [ -95.07076294164797, 30.103710277615999 ], [ -95.070889941740617, 30.103769277282037 ], [ -95.070973942114151, 30.103778277869388 ], [ -95.071209941938449, 30.103769277621812 ], [ -95.07137594179693, 30.103715277854999 ], [ -95.071623942018192, 30.103588277290399 ], [ -95.071713942325573, 30.103497277093552 ], [ -95.071908941970591, 30.103263277790255 ], [ -95.072024942642315, 30.10306027768123 ], [ -95.072072942835646, 30.103000277121911 ], [ -95.072160942080473, 30.10296627751357 ], [ -95.072251942186782, 30.102965277486497 ], [ -95.072360942293784, 30.103005277479582 ], [ -95.072473942002816, 30.103074277712615 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 226, "Tract": "48291700500", "Area_SqMi": 111.04065842865202, "total_2009": 991, "total_2010": 948, "total_2011": 621, "total_2012": 246, "total_2013": 439, "total_2014": 499, "total_2015": 524, "total_2016": 510, "total_2017": 528, "total_2018": 563, "total_2019": 615, "total_2020": 562, "age1": 88, "age2": 243, "age3": 116, "earn1": 30, "earn2": 74, "earn3": 343, "naics_s01": 1, "naics_s02": 3, "naics_s03": 0, "naics_s04": 43, "naics_s05": 117, "naics_s06": 8, "naics_s07": 7, "naics_s08": 260, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 382, "race2": 46, "race3": 2, "race4": 12, "race5": 0, "race6": 5, "ethnicity1": 352, "ethnicity2": 95, "edu1": 74, "edu2": 123, "edu3": 116, "edu4": 46, "Shape_Length": 332657.46144342388, "Shape_Area": 3095623509.00455, "total_2021": 445, "total_2022": 447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.053930950233863, 30.361589330869641 ], [ -95.053942950239161, 30.361479330893374 ], [ -95.053930949566833, 30.361385330852453 ], [ -95.053923949988402, 30.361050330293025 ], [ -95.053879949821052, 30.360896330225785 ], [ -95.053891949720679, 30.360731331029349 ], [ -95.053879949636865, 30.360681330857624 ], [ -95.053834949362638, 30.360615330140504 ], [ -95.053784949470298, 30.360566330477717 ], [ -95.053727949527826, 30.360407330561525 ], [ -95.053695949189205, 30.360357330648554 ], [ -95.053543949892642, 30.3602203308171 ], [ -95.053530949900832, 30.360165330113446 ], [ -95.053536949353017, 30.360134330078552 ], [ -95.053543949594697, 30.360099330385196 ], [ -95.053612950025951, 30.359967330680615 ], [ -95.053614949991214, 30.359953330302929 ], [ -95.053619949240726, 30.359912330581569 ], [ -95.053612949459676, 30.359824330723544 ], [ -95.053562949909065, 30.359758330639757 ], [ -95.053492949301074, 30.359714330268055 ], [ -95.053416950067074, 30.359714330160884 ], [ -95.053365949337561, 30.359730330196676 ], [ -95.053276949715368, 30.359780330320394 ], [ -95.053226949115881, 30.359791330610015 ], [ -95.053207949530119, 30.359780330125567 ], [ -95.053194949347471, 30.359758329983137 ], [ -95.05319494900283, 30.359675330224174 ], [ -95.053143949152087, 30.359615330581253 ], [ -95.053162949402974, 30.359521330024965 ], [ -95.053093949674576, 30.359417330525474 ], [ -95.053074949030247, 30.359362330057277 ], [ -95.053074949823454, 30.359279330313459 ], [ -95.053093949262887, 30.359241329889009 ], [ -95.053118949649473, 30.359230330574299 ], [ -95.053162949574542, 30.359230329948119 ], [ -95.053276949987733, 30.359246330220699 ], [ -95.053315949820131, 30.359180329927678 ], [ -95.053372949392099, 30.359109330302793 ], [ -95.053506949362088, 30.358997330418688 ], [ -95.053638949118792, 30.358889330591474 ], [ -95.053644949739549, 30.358845330323824 ], [ -95.053632950015583, 30.358658330183559 ], [ -95.053638949924107, 30.358394330188798 ], [ -95.053593949496189, 30.358356329821124 ], [ -95.053530950011961, 30.358334329912459 ], [ -95.053435949004722, 30.358356329901987 ], [ -95.053372949886338, 30.358400330300391 ], [ -95.053340949653517, 30.358411330510798 ], [ -95.053283949052755, 30.358389330115195 ], [ -95.053238949147058, 30.358350330523507 ], [ -95.053137949030216, 30.358114330166497 ], [ -95.053067949540377, 30.357982329619752 ], [ -95.053061949028844, 30.357927329756095 ], [ -95.053080949145965, 30.35789933043532 ], [ -95.053175949288786, 30.35786133036278 ], [ -95.053219949627191, 30.357866329845471 ], [ -95.053277949050141, 30.357888329740884 ], [ -95.053410949147406, 30.357965329619802 ], [ -95.05345494906669, 30.357976330030905 ], [ -95.053505949921458, 30.357965330075579 ], [ -95.053530949362468, 30.357943330446815 ], [ -95.053543949530265, 30.357910330412516 ], [ -95.05353694921763, 30.357866330402288 ], [ -95.053410949015671, 30.357668330129272 ], [ -95.053389949196117, 30.357628330088389 ], [ -95.053290949487916, 30.357442329740596 ], [ -95.053207949352213, 30.357283329838456 ], [ -95.053181948933442, 30.357179330092109 ], [ -95.053194949845363, 30.357058330151609 ], [ -95.053219949385237, 30.356959329942814 ], [ -95.053270949089452, 30.356920329491892 ], [ -95.053327949266929, 30.35689932996306 ], [ -95.053365949380947, 30.356904329741155 ], [ -95.053632949965873, 30.357052329613129 ], [ -95.053670949306508, 30.357064329418911 ], [ -95.053739949079002, 30.357053330103632 ], [ -95.053822949799809, 30.356992329859807 ], [ -95.053834949623294, 30.356964329486541 ], [ -95.053828949797904, 30.35690432956228 ], [ -95.053676948941046, 30.356486330161058 ], [ -95.053676949451201, 30.356420329751899 ], [ -95.053746949148518, 30.356024329377956 ], [ -95.053689949166227, 30.35579932949199 ], [ -95.053639949819242, 30.355777329259219 ], [ -95.053575949093414, 30.355749329648717 ], [ -95.053441948943387, 30.355733329724437 ], [ -95.053346949565352, 30.355700329428 ], [ -95.053264948955444, 30.355590329883231 ], [ -95.053055948994498, 30.355419329115442 ], [ -95.052934948764502, 30.355293329742093 ], [ -95.052915948944189, 30.355216329588124 ], [ -95.052972949633116, 30.355155329397729 ], [ -95.053124948909641, 30.355073329483687 ], [ -95.053220948963116, 30.355007329217226 ], [ -95.053251949439954, 30.354958329670225 ], [ -95.053277949634634, 30.354886329449744 ], [ -95.05308694912344, 30.354732329789815 ], [ -95.053079948796665, 30.354721329471495 ], [ -95.053061948941803, 30.354691329804055 ], [ -95.053055949374112, 30.354681329022885 ], [ -95.053043948708634, 30.35466232924092 ], [ -95.053023949292282, 30.354628329601478 ], [ -95.053006948906841, 30.35460732959492 ], [ -95.052993949387329, 30.354590329484825 ], [ -95.051186948804599, 30.355315329496115 ], [ -95.050947948601618, 30.355412329532609 ], [ -95.050232948527082, 30.355673330071856 ], [ -95.049593948606955, 30.35589532937361 ], [ -95.048681948267969, 30.356225330048904 ], [ -95.047251947520181, 30.356805330383381 ], [ -95.046405947204207, 30.357155330131821 ], [ -95.045744947152443, 30.357428329928393 ], [ -95.045565947921219, 30.357503330097977 ], [ -95.044868946930436, 30.357832330450556 ], [ -95.04399494693773, 30.358279330002638 ], [ -95.043949946801646, 30.358302330369721 ], [ -95.043817946794107, 30.358371330083529 ], [ -95.043774947415244, 30.35839533046623 ], [ -95.042777946324648, 30.358904330389759 ], [ -95.042572946524729, 30.359010330388575 ], [ -95.041246946529256, 30.359618331043865 ], [ -95.040951946606796, 30.359759330934381 ], [ -95.040557946177742, 30.359946330647052 ], [ -95.039729945877056, 30.360313331125123 ], [ -95.039203945414101, 30.360548331206939 ], [ -95.03902394572151, 30.36062333140104 ], [ -95.038863946239232, 30.360687331223346 ], [ -95.038699945324581, 30.360750331492316 ], [ -95.038552946198976, 30.360804330956274 ], [ -95.038431945514148, 30.360834331069029 ], [ -95.038388945744131, 30.360849331366335 ], [ -95.038242945463324, 30.360881331377666 ], [ -95.037604945436513, 30.360988331635539 ], [ -95.037403945806972, 30.361022331593102 ], [ -95.037327945144824, 30.361033330778653 ], [ -95.03729894528729, 30.361036331319895 ], [ -95.037212945734183, 30.361049330803997 ], [ -95.037183945747373, 30.361054331362421 ], [ -95.036118945087992, 30.361146331642832 ], [ -95.034819945043409, 30.361312331145768 ], [ -95.02950294334444, 30.36202533138308 ], [ -95.028157942871601, 30.362208331713777 ], [ -95.027462943007123, 30.36230733152097 ], [ -95.025777942940039, 30.362552332413873 ], [ -95.025382941981846, 30.362614331836017 ], [ -95.024689941934326, 30.362723331584057 ], [ -95.024649941949448, 30.362729331860102 ], [ -95.024463941777583, 30.362759331637168 ], [ -95.023784941830485, 30.362863332458698 ], [ -95.023559941549152, 30.362900331648106 ], [ -95.023506942486918, 30.36290833180335 ], [ -95.023454941488225, 30.362919331671012 ], [ -95.023351941791589, 30.362938331953153 ], [ -95.023299941478001, 30.362948331756151 ], [ -95.022807941765493, 30.36303633230829 ], [ -95.022781942060135, 30.363041332573335 ], [ -95.021328941386386, 30.363275332471826 ], [ -95.02083694124174, 30.363356332037714 ], [ -95.020540941344535, 30.363415332321534 ], [ -95.019131940527018, 30.363648332276011 ], [ -95.018183940430305, 30.363806332717658 ], [ -95.016687939993176, 30.364064332423975 ], [ -95.014522940218924, 30.364423333086766 ], [ -95.014015939827203, 30.364502332973245 ], [ -95.012307939065835, 30.364771332778432 ], [ -95.011977938756402, 30.364823332998153 ], [ -95.011714938766374, 30.36486433311055 ], [ -95.011104938548158, 30.364962332543914 ], [ -95.009939939050611, 30.365165332988337 ], [ -95.009826938232294, 30.36518533306046 ], [ -95.009452938602863, 30.365250333080088 ], [ -95.009393938202763, 30.365261333414999 ], [ -95.009348938481395, 30.36526933289452 ], [ -95.009006938770412, 30.365330332918202 ], [ -95.007986938561373, 30.365514333122835 ], [ -95.00764693762909, 30.365600332794319 ], [ -95.007066937887274, 30.365808333039681 ], [ -95.006974937841932, 30.365842333098794 ], [ -95.006744937691266, 30.365935333211059 ], [ -95.006051937164642, 30.366249333651773 ], [ -95.005623937789224, 30.366478333027242 ], [ -95.005403937601017, 30.366608333135449 ], [ -95.004875937841632, 30.366924333729674 ], [ -95.004503936990218, 30.367140333389173 ], [ -95.003460936555754, 30.367748333958154 ], [ -95.003394937285861, 30.367783333441992 ], [ -95.003008936463971, 30.367989333453945 ], [ -95.002670936525604, 30.368144333472475 ], [ -95.002590936908874, 30.368186333752927 ], [ -95.001366936686082, 30.368838334080444 ], [ -95.001185936089485, 30.368936334260209 ], [ -95.000967935960091, 30.369070334401844 ], [ -95.000746936589707, 30.369205334614549 ], [ -95.000102936454056, 30.369603334269684 ], [ -95.000085936674125, 30.369612334711846 ], [ -94.999863936523099, 30.369745334449767 ], [ -94.999759936651841, 30.369806334586396 ], [ -94.999219936069636, 30.3701253348667 ], [ -94.998198936211281, 30.370731334797338 ], [ -94.997275935328616, 30.371242334854546 ], [ -94.996622935402314, 30.371605334380128 ], [ -94.996153935129669, 30.371862335137365 ], [ -94.995458934763391, 30.372245335222878 ], [ -94.994758934881801, 30.372656334852287 ], [ -94.994297935104399, 30.372927335440963 ], [ -94.99425693450317, 30.3729513355599 ], [ -94.993912934404221, 30.373145335611138 ], [ -94.992757934592035, 30.373797335113057 ], [ -94.992373934706606, 30.3740153354717 ], [ -94.991504934539577, 30.374519335971303 ], [ -94.991337934019995, 30.37461733604286 ], [ -94.990435933985836, 30.375123336135854 ], [ -94.988891934126784, 30.376022336236556 ], [ -94.988023933185431, 30.376529336552451 ], [ -94.987509933787734, 30.376816336366741 ], [ -94.986724933535342, 30.377257336214171 ], [ -94.985974933011704, 30.37769333638207 ], [ -94.98546693265034, 30.377990336911594 ], [ -94.985406932754785, 30.378025336753435 ], [ -94.984810932685221, 30.378360336846988 ], [ -94.984786932410572, 30.378373336453091 ], [ -94.984229932808844, 30.378684336738363 ], [ -94.983430932697075, 30.379131337038473 ], [ -94.982301932625205, 30.379772337428655 ], [ -94.980534931300326, 30.380795336926703 ], [ -94.9793079314463, 30.381506337712192 ], [ -94.978131931531209, 30.38217733763285 ], [ -94.977885931411805, 30.382318337398015 ], [ -94.976412930790886, 30.383178338220446 ], [ -94.97461392993543, 30.384202337949983 ], [ -94.97343892994094, 30.384873338642898 ], [ -94.97260692964953, 30.385344338657738 ], [ -94.972567930177718, 30.384367338184678 ], [ -94.972456930243197, 30.382266338227598 ], [ -94.972398929539679, 30.381582337635688 ], [ -94.972389929601675, 30.381369337252021 ], [ -94.972375929960606, 30.381050337516808 ], [ -94.972357929835979, 30.380638337960704 ], [ -94.972325929134627, 30.38009533731449 ], [ -94.97230792918738, 30.379777337046033 ], [ -94.972297929679087, 30.379567337391876 ], [ -94.97226992907413, 30.378937337502855 ], [ -94.972260929098724, 30.378727336928907 ], [ -94.972204929764771, 30.378023337260444 ], [ -94.972170928974407, 30.377589336679314 ], [ -94.972105929102398, 30.376986336498025 ], [ -94.972057929159831, 30.376644336698003 ], [ -94.971936929074758, 30.375924336937221 ], [ -94.971923929434865, 30.375846336658924 ], [ -94.971786929595226, 30.375235336118372 ], [ -94.971683929423875, 30.374820336298093 ], [ -94.971593928911744, 30.374485336742396 ], [ -94.970990928626293, 30.372243335545487 ], [ -94.970789929121182, 30.371496335681236 ], [ -94.970738928609407, 30.371327335956295 ], [ -94.970588928662607, 30.370822335179334 ], [ -94.970538928922451, 30.370654335468295 ], [ -94.970396928719765, 30.370214335737639 ], [ -94.970352928166918, 30.370078335000379 ], [ -94.969971928098786, 30.368896335067813 ], [ -94.969844928021672, 30.368500334868095 ], [ -94.969830928692502, 30.36845733530464 ], [ -94.969698928519364, 30.368050334778335 ], [ -94.969305927746191, 30.366829334808173 ], [ -94.969174928686883, 30.366423334421768 ], [ -94.969134928425902, 30.366291334475754 ], [ -94.969014927628578, 30.365898334620077 ], [ -94.968974927569477, 30.365767334628394 ], [ -94.968709928303795, 30.364943334241183 ], [ -94.968552927624927, 30.364451334209821 ], [ -94.968320928251728, 30.363784334693879 ], [ -94.968194927859685, 30.363349334603644 ], [ -94.968037928162673, 30.362602334468253 ], [ -94.96801892730771, 30.362446333622614 ], [ -94.96791792751759, 30.361587334194809 ], [ -94.967885927444996, 30.361314333853443 ], [ -94.967861927313294, 30.361096334122685 ], [ -94.967750928027655, 30.360591333606692 ], [ -94.967723926983467, 30.360511333921359 ], [ -94.967636927252499, 30.360252333320652 ], [ -94.967542927243258, 30.35999033338943 ], [ -94.967484927853462, 30.359827333297471 ], [ -94.967256927345574, 30.359322333086958 ], [ -94.967207926897643, 30.359229333415346 ], [ -94.967079927235048, 30.3589833337541 ], [ -94.966969927446229, 30.358795333465103 ], [ -94.966781927203527, 30.35852333331486 ], [ -94.966039927057864, 30.357588333271856 ], [ -94.965614926817651, 30.357039333066982 ], [ -94.964363926112867, 30.355423332382266 ], [ -94.963813926579846, 30.354743332555536 ], [ -94.963213926335001, 30.353943332473584 ], [ -94.962958925627802, 30.353586332517462 ], [ -94.962475925748009, 30.352868332495166 ], [ -94.961863925937493, 30.351901332029367 ], [ -94.961517925900097, 30.351317331580113 ], [ -94.961388925482993, 30.351090331963388 ], [ -94.961133925839476, 30.350639332053735 ], [ -94.960803924981747, 30.350003332103846 ], [ -94.960269925088014, 30.348929331698951 ], [ -94.959669925055351, 30.347697331098722 ], [ -94.95938292504637, 30.347105331314314 ], [ -94.958989925009817, 30.346270330641467 ], [ -94.958063924482772, 30.344403330550112 ], [ -94.95787392429456, 30.344001330720637 ], [ -94.957604924386843, 30.34343333050089 ], [ -94.957276923793771, 30.342769329967922 ], [ -94.95707192355539, 30.342353330025745 ], [ -94.956456923495693, 30.341108330443141 ], [ -94.956252923366193, 30.340693329914103 ], [ -94.955956923082098, 30.340083329393011 ], [ -94.955834923325966, 30.33983132985599 ], [ -94.955394923229932, 30.338972329501686 ], [ -94.955050922762837, 30.338262329541386 ], [ -94.954755923115272, 30.337652329129909 ], [ -94.954582922714209, 30.337301329491659 ], [ -94.95406392313707, 30.33624932879798 ], [ -94.953890922967744, 30.335899328870767 ], [ -94.953825923179949, 30.335761328849937 ], [ -94.95363092274448, 30.335350328660422 ], [ -94.953565922931631, 30.335214328576008 ], [ -94.953439922845462, 30.334947328612259 ], [ -94.95306192230197, 30.334149328772742 ], [ -94.952936922348087, 30.333883328436297 ], [ -94.952548922203903, 30.333129328564702 ], [ -94.951264921967521, 30.3304353279675 ], [ -94.950929921488722, 30.32973132831151 ], [ -94.950755921778907, 30.32929232766671 ], [ -94.950704921643649, 30.329085327496241 ], [ -94.950652921624354, 30.328905327817669 ], [ -94.950600921345256, 30.328644327499372 ], [ -94.950546921442893, 30.32837032759036 ], [ -94.950507921565645, 30.327931327440048 ], [ -94.950472921450157, 30.327294327362274 ], [ -94.950448920966025, 30.326843327430211 ], [ -94.950420921755651, 30.326359326965132 ], [ -94.950336921101496, 30.324908326626581 ], [ -94.950315921254372, 30.324544327203785 ], [ -94.950308921486922, 30.324425326635726 ], [ -94.950262921384748, 30.32385132659762 ], [ -94.950228920871879, 30.323419326246789 ], [ -94.950166921212826, 30.322454326544381 ], [ -94.950149921526759, 30.322130326768875 ], [ -94.950120921380304, 30.321556326072894 ], [ -94.949934921086864, 30.321504326677356 ], [ -94.949622921189444, 30.321417326549998 ], [ -94.949087920592589, 30.321268325971435 ], [ -94.948128920735456, 30.321006326077367 ], [ -94.947630920257453, 30.320870326412251 ], [ -94.947298920093999, 30.32077932647119 ], [ -94.946301920078213, 30.320506325842132 ], [ -94.94602192037253, 30.320430326516117 ], [ -94.945970920474821, 30.320416326536417 ], [ -94.944776919253769, 30.320089326338248 ], [ -94.941194919198352, 30.319109325775187 ], [ -94.940000918428154, 30.31878332646577 ], [ -94.939912918015338, 30.318759326004272 ], [ -94.939791918393269, 30.318726326091685 ], [ -94.939651918418477, 30.318687326259354 ], [ -94.93956491849039, 30.318664325997148 ], [ -94.938965918541413, 30.318510325654017 ], [ -94.937171917353055, 30.318051325780228 ], [ -94.937131917423216, 30.318041325774558 ], [ -94.936682917460132, 30.317929325933125 ], [ -94.936573917177384, 30.317902326097293 ], [ -94.935880917615606, 30.317711325669638 ], [ -94.933804916359634, 30.317138326099787 ], [ -94.933112916497706, 30.316948325958425 ], [ -94.931451916357204, 30.316490326019956 ], [ -94.928643914809726, 30.315718326079026 ], [ -94.924186913911498, 30.314491326115292 ], [ -94.923089914113149, 30.314186326106956 ], [ -94.92297191369822, 30.314153325627089 ], [ -94.922361913950397, 30.313984325399598 ], [ -94.91688691238231, 30.312506326035177 ], [ -94.915674911793857, 30.312191325503228 ], [ -94.915227912046745, 30.312068325681746 ], [ -94.910760910586433, 30.310837325574827 ], [ -94.909987910474328, 30.310623325558733 ], [ -94.907670910003375, 30.309984325793163 ], [ -94.906898909656093, 30.309771325398962 ], [ -94.904360908472881, 30.309062325033583 ], [ -94.904213908727598, 30.309022325470171 ], [ -94.902657907988555, 30.308603324932001 ], [ -94.896151906438462, 30.306815325248699 ], [ -94.896065906388088, 30.306792324831306 ], [ -94.894406905970555, 30.306351324806013 ], [ -94.89346190617448, 30.306091325398267 ], [ -94.891269905592679, 30.305481324861688 ], [ -94.887483904030603, 30.304431325116891 ], [ -94.886101904164065, 30.304078325201772 ], [ -94.884294903100852, 30.303588324754351 ], [ -94.883820903058606, 30.303459325000361 ], [ -94.88240090285781, 30.303072325145045 ], [ -94.88192790288592, 30.302943324751084 ], [ -94.879899901641565, 30.302391324524194 ], [ -94.879201902074371, 30.302194324526539 ], [ -94.875119901122375, 30.301041324767525 ], [ -94.872932899806372, 30.300432324537159 ], [ -94.871042900118439, 30.299885324707535 ], [ -94.870989899819236, 30.299870324453629 ], [ -94.869524898834996, 30.299468324564543 ], [ -94.868320898630259, 30.299128324875898 ], [ -94.868071899391168, 30.299058324489145 ], [ -94.868006898652141, 30.299040324740638 ], [ -94.867061898746087, 30.29878832468702 ], [ -94.866747898853703, 30.298705324758128 ], [ -94.86662189833865, 30.298672324221698 ], [ -94.866463898636056, 30.298627324385777 ], [ -94.865616897752915, 30.298386324274446 ], [ -94.865486898113588, 30.298349324975327 ], [ -94.865338898331004, 30.298295324673731 ], [ -94.86491089795949, 30.298138324224023 ], [ -94.86458789748643, 30.298020324493706 ], [ -94.864323898155504, 30.297911324595624 ], [ -94.86242389740201, 30.297127324668672 ], [ -94.861320896800578, 30.296657324260469 ], [ -94.861020897022101, 30.296529324375147 ], [ -94.860318896991231, 30.296242324255449 ], [ -94.859187896002325, 30.295781324378641 ], [ -94.856787896008896, 30.294804324261708 ], [ -94.855798895964838, 30.294393323858525 ], [ -94.854889895265586, 30.294016324185549 ], [ -94.854671895425497, 30.29392532371207 ], [ -94.854145894833735, 30.293707323551949 ], [ -94.852581894127582, 30.293052324145975 ], [ -94.850660893949666, 30.292263323611962 ], [ -94.849790893456557, 30.291906323494231 ], [ -94.84840689397727, 30.291400323907375 ], [ -94.846910893430831, 30.290925323420019 ], [ -94.845399892652452, 30.290489323207595 ], [ -94.843142892405709, 30.289882323776702 ], [ -94.840893891733714, 30.289271323578014 ], [ -94.839394890985488, 30.288850323097492 ], [ -94.838193891161907, 30.288539323099464 ], [ -94.837989890720564, 30.288486323494602 ], [ -94.836141890209547, 30.287985323719848 ], [ -94.834007889667888, 30.28739332344043 ], [ -94.833893889666868, 30.287361323247445 ], [ -94.833552889059291, 30.287266323315794 ], [ -94.833439889382888, 30.287235323096176 ], [ -94.831050889127923, 30.286587323574437 ], [ -94.83090688889763, 30.286547323768865 ], [ -94.828087888241726, 30.285775323264133 ], [ -94.825813887813311, 30.285154323592938 ], [ -94.823312886514174, 30.28447532281659 ], [ -94.822255885999297, 30.284189323275939 ], [ -94.820782885859785, 30.283781323275555 ], [ -94.820708886397284, 30.283761322969518 ], [ -94.820534885486865, 30.283714323338721 ], [ -94.820490885446674, 30.283702323200586 ], [ -94.820418886087339, 30.283682323412542 ], [ -94.820354885577856, 30.283664322905313 ], [ -94.820177885705107, 30.28361532337312 ], [ -94.820162886188811, 30.283610323067876 ], [ -94.820099885641241, 30.283593322899129 ], [ -94.819835885710589, 30.283520322666075 ], [ -94.818903884995834, 30.283263322767116 ], [ -94.818230885229411, 30.283078322871955 ], [ -94.816910884825688, 30.282715323084073 ], [ -94.81623488478337, 30.282529323453115 ], [ -94.815701884840465, 30.282383323073333 ], [ -94.815314884634176, 30.282278323130164 ], [ -94.815152884298257, 30.28223432309548 ], [ -94.81411888378743, 30.281953323319108 ], [ -94.813984884560156, 30.281916322753641 ], [ -94.81250388332441, 30.281520322936039 ], [ -94.811358883745413, 30.281202322845989 ], [ -94.808988882514583, 30.280566322683121 ], [ -94.805184881805715, 30.279515323184604 ], [ -94.804820881974422, 30.279413322990269 ], [ -94.804222881928865, 30.279245322861499 ], [ -94.800863881020447, 30.278334323176093 ], [ -94.800753881007765, 30.27830432256226 ], [ -94.800482880687426, 30.278230323154848 ], [ -94.799342880555002, 30.277919322618111 ], [ -94.798981880341586, 30.277821322668007 ], [ -94.798962879678669, 30.277816322406036 ], [ -94.798778879662564, 30.277764322590862 ], [ -94.798652880540502, 30.27772932238198 ], [ -94.798604879966774, 30.277715322541301 ], [ -94.798342879636138, 30.277641322340589 ], [ -94.798228879574978, 30.27760832260677 ], [ -94.798194879435727, 30.277599322251632 ], [ -94.798045879906198, 30.277557322411507 ], [ -94.798057879787549, 30.277688322312397 ], [ -94.798085879736519, 30.277985322413436 ], [ -94.798357879964826, 30.278470322622891 ], [ -94.79842188047931, 30.278584322989271 ], [ -94.798932879849431, 30.279185322815774 ], [ -94.800065880233902, 30.279774322959472 ], [ -94.801447880975701, 30.280373323422442 ], [ -94.803130881142948, 30.281544322847129 ], [ -94.803396881256177, 30.281754323497175 ], [ -94.805476882520196, 30.283395323714249 ], [ -94.806684882429508, 30.285127324238616 ], [ -94.807350882417452, 30.286084324065538 ], [ -94.807459882497582, 30.287085324347299 ], [ -94.807220882502889, 30.287801323993971 ], [ -94.806871882506854, 30.288069324705788 ], [ -94.806313882634498, 30.28849732427971 ], [ -94.805370881982398, 30.289063325040928 ], [ -94.804926881706976, 30.289292324683718 ], [ -94.803933881737549, 30.289803324987577 ], [ -94.803159882166199, 30.290487325493835 ], [ -94.801795881857544, 30.29199932513108 ], [ -94.801144881118447, 30.293091325917082 ], [ -94.800157880851529, 30.294269326233998 ], [ -94.799560881214163, 30.294710326376201 ], [ -94.799410880682018, 30.294821325940301 ], [ -94.798396880835611, 30.295071326177116 ], [ -94.798291880662404, 30.295094326169853 ], [ -94.796601880365671, 30.295464326543549 ], [ -94.796397879882676, 30.295509326651469 ], [ -94.793691879556661, 30.296392327044458 ], [ -94.791971879496685, 30.297115326519105 ], [ -94.791024879245697, 30.298316326818703 ], [ -94.790748878938544, 30.29888032728125 ], [ -94.790291879176792, 30.299511327518559 ], [ -94.790251879011251, 30.300369327987966 ], [ -94.790229879002808, 30.300838327888112 ], [ -94.790853879410989, 30.302353327678937 ], [ -94.792208879990056, 30.304050327864871 ], [ -94.793306879755477, 30.305503328400722 ], [ -94.794109879941189, 30.307387329060184 ], [ -94.794034880171438, 30.309992329574467 ], [ -94.794062880616906, 30.313458329899053 ], [ -94.794195880235307, 30.316149330688813 ], [ -94.794519880612341, 30.31749733097206 ], [ -94.794833880661699, 30.318804331227238 ], [ -94.795384880696389, 30.32094633183214 ], [ -94.79543288115498, 30.32113433178387 ], [ -94.796157881746751, 30.322729332284212 ], [ -94.796832881618514, 30.323816331888995 ], [ -94.797230882236462, 30.324860332438657 ], [ -94.797155881943155, 30.325909332711689 ], [ -94.796861881746963, 30.326508333032024 ], [ -94.796625881380692, 30.326988332466396 ], [ -94.795960882022669, 30.327620333290014 ], [ -94.795004881119624, 30.327831332676428 ], [ -94.794088880787967, 30.327623333298231 ], [ -94.79332488052502, 30.327094333301449 ], [ -94.792797881191376, 30.326056332923919 ], [ -94.791814879918476, 30.323963332752523 ], [ -94.791374880257365, 30.322997332527109 ], [ -94.790976880601107, 30.322519332115689 ], [ -94.790559880405581, 30.322019331778542 ], [ -94.789622880060477, 30.321285332310644 ], [ -94.788722879985286, 30.321215332036122 ], [ -94.787102878587319, 30.321089331963236 ], [ -94.784609878819921, 30.32114433227423 ], [ -94.78229587829918, 30.321870332033548 ], [ -94.781507877552158, 30.322600332812286 ], [ -94.781371877746665, 30.323203332897993 ], [ -94.78116887748979, 30.324107332646328 ], [ -94.781138877574762, 30.325254332609962 ], [ -94.78224387782582, 30.327878333496184 ], [ -94.783639878251748, 30.330082333702279 ], [ -94.785637879014459, 30.331431333986231 ], [ -94.788342879667439, 30.332716334579452 ], [ -94.790110880888477, 30.333859334361957 ], [ -94.791155880527796, 30.335179334334427 ], [ -94.791384880406738, 30.335467334801912 ], [ -94.793853881906401, 30.337488334841275 ], [ -94.794741881501793, 30.339132334898245 ], [ -94.794591881704889, 30.340219335973106 ], [ -94.794572881384326, 30.340355335938408 ], [ -94.793638881668386, 30.341410335956386 ], [ -94.792498881025367, 30.341312335639341 ], [ -94.790774880747421, 30.340896336030546 ], [ -94.789103880520102, 30.33970833589364 ], [ -94.788961880527751, 30.339607335603588 ], [ -94.787423880183908, 30.33856533548229 ], [ -94.786890880304981, 30.33820433587125 ], [ -94.786232879543491, 30.33794133573377 ], [ -94.785653879197881, 30.337710335631073 ], [ -94.784207878754714, 30.337708335042574 ], [ -94.783382879211217, 30.338109335889612 ], [ -94.78288787836199, 30.338349335200292 ], [ -94.781884878673409, 30.339137335378467 ], [ -94.781324878569919, 30.340441336113681 ], [ -94.780612878191192, 30.342091336625831 ], [ -94.780171878703541, 30.344526337278293 ], [ -94.780102877859392, 30.344768336689569 ], [ -94.779815878353119, 30.345783337533533 ], [ -94.779842878136478, 30.346372337723562 ], [ -94.779883878586205, 30.347278337694739 ], [ -94.780610878718065, 30.348879337767332 ], [ -94.781228878714288, 30.350236338517934 ], [ -94.781390878707413, 30.350478337900629 ], [ -94.78235887941625, 30.351026337864948 ], [ -94.783598879187906, 30.351261338470692 ], [ -94.78514887983637, 30.351078338540628 ], [ -94.786841880160949, 30.350525338203948 ], [ -94.788432880391582, 30.349987337659751 ], [ -94.789708881370927, 30.350026337330899 ], [ -94.789786880859936, 30.35002833775112 ], [ -94.791267881191246, 30.350201337960939 ], [ -94.79197588209604, 30.350771337753066 ], [ -94.792226881848379, 30.351645338171487 ], [ -94.792086881486142, 30.353111338566539 ], [ -94.791570882006582, 30.355081339133243 ], [ -94.791355881603309, 30.357050339168538 ], [ -94.791735882451164, 30.358853339662065 ], [ -94.792703882312367, 30.361194340177352 ], [ -94.793016882723165, 30.363150339893966 ], [ -94.792800882061968, 30.36386834074699 ], [ -94.79258588268344, 30.364585340673532 ], [ -94.792106882049239, 30.366040340554964 ], [ -94.792010882713626, 30.366333341088712 ], [ -94.791992882960841, 30.366589341133235 ], [ -94.79198088254482, 30.366775341355723 ], [ -94.791967882949322, 30.366962341156007 ], [ -94.791889882122518, 30.36810034100186 ], [ -94.792133882481721, 30.368789341378662 ], [ -94.79241888282651, 30.369594341428051 ], [ -94.793200883108668, 30.370880341470368 ], [ -94.79340788303719, 30.371220341588902 ], [ -94.794805883399974, 30.372304341675182 ], [ -94.795628883699919, 30.372625341906382 ], [ -94.797548884648037, 30.373374342102078 ], [ -94.80022888486009, 30.374227341973242 ], [ -94.801709885349837, 30.37459034239388 ], [ -94.803377885954575, 30.374755342447141 ], [ -94.805555886714089, 30.374915342488151 ], [ -94.807265886464663, 30.375209342548835 ], [ -94.810423887970984, 30.376577342802314 ], [ -94.811698888234304, 30.377529342537191 ], [ -94.81238888845715, 30.378392342944526 ], [ -94.813385888699202, 30.379986342813389 ], [ -94.813800888560181, 30.381059343017167 ], [ -94.814290888754712, 30.381962343472097 ], [ -94.815123888939453, 30.383139344042089 ], [ -94.815442889782489, 30.383607343508039 ], [ -94.815771889093327, 30.384090343872586 ], [ -94.815881889035509, 30.384823343774706 ], [ -94.815675889446524, 30.385468343791292 ], [ -94.815035888799727, 30.385878344431823 ], [ -94.813996888763214, 30.386208344348095 ], [ -94.812428888287656, 30.385760344164133 ], [ -94.811078888174677, 30.385374344073998 ], [ -94.809727887913326, 30.384988344132609 ], [ -94.808878887465397, 30.384745343815634 ], [ -94.80603288649246, 30.384557344270199 ], [ -94.80382588683851, 30.384522344174169 ], [ -94.803698886543714, 30.384553344131188 ], [ -94.802451886278192, 30.384859344449257 ], [ -94.801876885908072, 30.385262344953251 ], [ -94.801383885426844, 30.386083344511778 ], [ -94.80165188606459, 30.386800345071752 ], [ -94.80250388664831, 30.387381345156559 ], [ -94.803872886769113, 30.388366345065801 ], [ -94.804075886205041, 30.388512345466491 ], [ -94.80521588711494, 30.389333345446623 ], [ -94.806168887450212, 30.39093734579733 ], [ -94.806332887527276, 30.392943345901639 ], [ -94.806301887574406, 30.394180346316823 ], [ -94.806309887466028, 30.3942133457873 ], [ -94.806633888097593, 30.395538346580178 ], [ -94.807467887864291, 30.396183346863268 ], [ -94.810378889018907, 30.396500346294253 ], [ -94.814595889992617, 30.397035346694739 ], [ -94.816305890436539, 30.39792134646007 ], [ -94.818551890703034, 30.399004347161128 ], [ -94.821840891581346, 30.400763347097804 ], [ -94.822848891751946, 30.401665347087455 ], [ -94.823192892301236, 30.401973347370163 ], [ -94.82383989194642, 30.403230347261658 ], [ -94.824060892352776, 30.404108347323149 ], [ -94.8239568925367, 30.405340347924515 ], [ -94.822301892464594, 30.408087348238997 ], [ -94.821693892447442, 30.408889349094718 ], [ -94.82113589251189, 30.409626348814434 ], [ -94.821305892508391, 30.410559349314124 ], [ -94.821485892099972, 30.411581349486646 ], [ -94.82212789235345, 30.412597349436449 ], [ -94.823127892664701, 30.413356349047394 ], [ -94.823333892563383, 30.41341034941313 ], [ -94.825074893226386, 30.413873349315246 ], [ -94.830200895043262, 30.414747349793622 ], [ -94.833279895786774, 30.41584935003668 ], [ -94.833928895657706, 30.416119350049083 ], [ -94.836089896035816, 30.417018349531151 ], [ -94.838573897357847, 30.418568350351279 ], [ -94.842475898063626, 30.421362350251403 ], [ -94.845083899189135, 30.422574350217197 ], [ -94.849348900494235, 30.424249350926988 ], [ -94.850566900828383, 30.424774350839193 ], [ -94.850664899989539, 30.424816350926349 ], [ -94.850761900445349, 30.424858350907044 ], [ -94.85112890006755, 30.425668350998549 ], [ -94.851136900400078, 30.426264350709669 ], [ -94.850783900248956, 30.426844351444103 ], [ -94.848193900305645, 30.429151351404741 ], [ -94.84813790032193, 30.429202351460269 ], [ -94.847778899946846, 30.429576352327668 ], [ -94.847264899799697, 30.43011235217287 ], [ -94.847059900154676, 30.431220352615011 ], [ -94.847040900085801, 30.431320352627246 ], [ -94.847679900308023, 30.432311352520262 ], [ -94.849597900978438, 30.434302352403051 ], [ -94.85019290095957, 30.435101353053465 ], [ -94.850264900538164, 30.435203352701802 ], [ -94.850336901265024, 30.435305353240086 ], [ -94.850449900713116, 30.435446352847055 ], [ -94.850455900942777, 30.435621353509642 ], [ -94.850490900880587, 30.436726353029229 ], [ -94.850524901211003, 30.437832353708103 ], [ -94.850529901300192, 30.437984353129881 ], [ -94.8504259011345, 30.438457353655004 ], [ -94.850330901272784, 30.438889353888346 ], [ -94.85027090103452, 30.439417354058609 ], [ -94.850241901303022, 30.439667354055327 ], [ -94.849095900474936, 30.441980353985464 ], [ -94.848791900761725, 30.443103354361131 ], [ -94.848589901083002, 30.444051355220232 ], [ -94.848394901002777, 30.444973355018327 ], [ -94.848265901189563, 30.44671435567059 ], [ -94.848307901208443, 30.448094355739013 ], [ -94.848627900588667, 30.449625355729719 ], [ -94.84906690145344, 30.450611355990205 ], [ -94.84947190169521, 30.451439355973548 ], [ -94.849717901857687, 30.451942356091209 ], [ -94.851557901739397, 30.453808356955719 ], [ -94.853925902889515, 30.455085357102043 ], [ -94.855122902541382, 30.455232357149704 ], [ -94.856430903106883, 30.455393356461119 ], [ -94.863097904872134, 30.455266356814008 ], [ -94.863426904804911, 30.455260356647052 ], [ -94.865615905258451, 30.455535356532774 ], [ -94.867470905903616, 30.456422356379537 ], [ -94.875213907872734, 30.460561357272489 ], [ -94.877055909274617, 30.462060357180818 ], [ -94.877504909361548, 30.462492357613332 ], [ -94.877926909680525, 30.462899357837664 ], [ -94.878144908915516, 30.463412357297468 ], [ -94.878277909076488, 30.463729358222427 ], [ -94.878480909073346, 30.464300357450767 ], [ -94.878441909426797, 30.464960358124745 ], [ -94.878328909046431, 30.465983358227216 ], [ -94.87780790940306, 30.466980358780624 ], [ -94.877094909131714, 30.467782359081781 ], [ -94.876942909136318, 30.46795335853929 ], [ -94.875902908942834, 30.468853358604136 ], [ -94.875214909066543, 30.469223358735597 ], [ -94.874631909095683, 30.470183359225615 ], [ -94.873720908467973, 30.472003359924429 ], [ -94.8723559079598, 30.473516360055267 ], [ -94.871464908438469, 30.473919360235037 ], [ -94.870532908046215, 30.474073360323576 ], [ -94.869812908059089, 30.47419236009269 ], [ -94.867890907324309, 30.473643360450275 ], [ -94.865697906139332, 30.472063359681112 ], [ -94.864746905905761, 30.471378359646327 ], [ -94.863977905778128, 30.470885359982137 ], [ -94.863903906384593, 30.470838360159402 ], [ -94.863793905515806, 30.47082535965842 ], [ -94.86361690619465, 30.470805359688924 ], [ -94.863439905902695, 30.470785359455274 ], [ -94.862957905623489, 30.470729359474916 ], [ -94.862279906028249, 30.47065236015403 ], [ -94.861906905895495, 30.470823360076558 ], [ -94.861298905622576, 30.471102360008455 ], [ -94.860691905297955, 30.471381359956332 ], [ -94.860543904866333, 30.471449360099079 ], [ -94.859856904585499, 30.472286359726432 ], [ -94.859632904991713, 30.472560360495564 ], [ -94.856509904263575, 30.477826360994893 ], [ -94.856062904245221, 30.478271361441461 ], [ -94.85522690460887, 30.479106361803382 ], [ -94.85277590381699, 30.480804362286658 ], [ -94.850063902941983, 30.482591362698727 ], [ -94.846748902286876, 30.483894362616834 ], [ -94.84644890217686, 30.484006362916141 ], [ -94.845977902433589, 30.484182363151188 ], [ -94.845506902020247, 30.484358363562627 ], [ -94.843990901720161, 30.484923363337685 ], [ -94.842987901604744, 30.485615363516906 ], [ -94.842596900873033, 30.486517363697871 ], [ -94.842605900965864, 30.486799363921566 ], [ -94.842614900729046, 30.487072363918678 ], [ -94.84262390158159, 30.487345363909597 ], [ -94.842625901685011, 30.487404363466467 ], [ -94.842627901753744, 30.487463363922888 ], [ -94.842670901774724, 30.487442363857145 ], [ -94.842799901312119, 30.487380363582648 ], [ -94.84284390128775, 30.487360363592494 ], [ -94.842864901327346, 30.487350363933853 ], [ -94.843104900864489, 30.487234363808607 ], [ -94.84348290127204, 30.487054363327321 ], [ -94.843828901469521, 30.486895363389351 ], [ -94.844071901791537, 30.486785363842291 ], [ -94.845510901802356, 30.486125363907661 ], [ -94.849829903426951, 30.484147362897719 ], [ -94.851269903089729, 30.483488362658537 ], [ -94.851292903643937, 30.483477362720063 ], [ -94.851328902843292, 30.483461362387555 ], [ -94.851363902964096, 30.483444362908564 ], [ -94.851387903569176, 30.483434363023818 ], [ -94.851478902836689, 30.483391363047701 ], [ -94.851754903186958, 30.483266363052284 ], [ -94.851846903262114, 30.483224362923846 ], [ -94.8519829039885, 30.483161362545466 ], [ -94.852186903194365, 30.483068362599415 ], [ -94.852389904030716, 30.482974362341977 ], [ -94.852526904124034, 30.482912362371987 ], [ -94.856036904001158, 30.481303362509539 ], [ -94.866568906937445, 30.47648036075115 ], [ -94.870079907440456, 30.474873359914724 ], [ -94.870404908324048, 30.474723360437107 ], [ -94.870455907975639, 30.474700359999691 ], [ -94.870874907426781, 30.474510360188678 ], [ -94.871380908116947, 30.474276359994992 ], [ -94.871705908037328, 30.474127360153691 ], [ -94.872387908155119, 30.473815360060968 ], [ -94.873164908598824, 30.473460360003255 ], [ -94.874471908499089, 30.472966360023214 ], [ -94.875173908586817, 30.472701359934575 ], [ -94.877644909966335, 30.47158235932482 ], [ -94.885058911089132, 30.468228358412855 ], [ -94.887530912035771, 30.467110357739571 ], [ -94.88993391213647, 30.466018358058729 ], [ -94.897144913708999, 30.462744356893531 ], [ -94.899548914556306, 30.461653356730203 ], [ -94.900488914672138, 30.461226356788277 ], [ -94.903308915893348, 30.459945356525925 ], [ -94.903937915517815, 30.459660355672458 ], [ -94.904249915719973, 30.459518355931184 ], [ -94.904400915436014, 30.45944835567494 ], [ -94.904856916189715, 30.459240355683189 ], [ -94.905008915555541, 30.459172356246469 ], [ -94.907157917005179, 30.458196355308992 ], [ -94.913607917934456, 30.455268354599067 ], [ -94.915757918308202, 30.454293354849902 ], [ -94.916475919208594, 30.453966354750872 ], [ -94.918630918930361, 30.452987354125042 ], [ -94.919349919149624, 30.452662353998914 ], [ -94.919536918987916, 30.452576354364631 ], [ -94.920099919526933, 30.452320354002747 ], [ -94.920287919891067, 30.452236353846772 ], [ -94.920571919291021, 30.452108353518046 ], [ -94.921681919510945, 30.451609354112396 ], [ -94.925865920637179, 30.449730353545398 ], [ -94.927260921286944, 30.449104353015535 ], [ -94.932828922900129, 30.446601352780277 ], [ -94.933659923037951, 30.446229352110691 ], [ -94.934425923200848, 30.445893352256153 ], [ -94.935399923009882, 30.445469352253514 ], [ -94.936529923009928, 30.444977352328539 ], [ -94.936553923201018, 30.444967352073267 ], [ -94.939020923941499, 30.443892351292472 ], [ -94.940418923913668, 30.443283351648539 ], [ -94.942682924773081, 30.442357350689203 ], [ -94.945438925280257, 30.441231350891538 ], [ -94.945844926135052, 30.4410653506777 ], [ -94.947065925467598, 30.440567350758634 ], [ -94.947409926131442, 30.440427350195627 ], [ -94.947471926255204, 30.440398350234116 ], [ -94.948924926672291, 30.439719350685031 ], [ -94.952392926876811, 30.438102350336766 ], [ -94.953286927929526, 30.43768534945124 ], [ -94.954740927733013, 30.437007349398677 ], [ -94.954760927539596, 30.43699734967808 ], [ -94.954823927777511, 30.43696734931719 ], [ -94.95484592807486, 30.436958350008755 ], [ -94.955686927512673, 30.436565349392197 ], [ -94.958209928767346, 30.435387349409993 ], [ -94.959009929156267, 30.435015348705722 ], [ -94.959052929269987, 30.434997349470432 ], [ -94.960484929541266, 30.434380349053026 ], [ -94.964781929723927, 30.432531348133054 ], [ -94.966214930339248, 30.431915347977274 ], [ -94.967526930993216, 30.431350347604624 ], [ -94.971466932023574, 30.429655347748032 ], [ -94.97277993215954, 30.429091347147036 ], [ -94.973245932372436, 30.428889347709895 ], [ -94.974644932215497, 30.428287347245135 ], [ -94.975111932637688, 30.428087347001629 ], [ -95.00021693870228, 30.416908344086448 ], [ -95.006769939949805, 30.414107343493644 ], [ -95.006651939720683, 30.414003343083575 ], [ -95.02460794477642, 30.406976341116117 ], [ -95.024604944396103, 30.406962341063323 ], [ -95.024597943826862, 30.406921341210548 ], [ -95.024595944438076, 30.406908340882293 ], [ -95.032466946371215, 30.404096340090661 ], [ -95.034233947169881, 30.403334339518775 ], [ -95.034478947228635, 30.403221339886144 ], [ -95.037193947563665, 30.401953339606763 ], [ -95.045340948809525, 30.398151338709447 ], [ -95.048056949562394, 30.39688533818763 ], [ -95.048062950429838, 30.396868337996693 ], [ -95.048106949409046, 30.396755338206876 ], [ -95.048144949949972, 30.396689337847121 ], [ -95.048259949472367, 30.396551338130791 ], [ -95.048284950207886, 30.396485337671269 ], [ -95.048278950289983, 30.396403337620338 ], [ -95.04821495033184, 30.396106337741024 ], [ -95.048202949841397, 30.395979337690186 ], [ -95.048449949871312, 30.39524833739625 ], [ -95.048512950229195, 30.395144337355756 ], [ -95.048531950160566, 30.395083337904619 ], [ -95.048519950136679, 30.395001337997961 ], [ -95.048500949505311, 30.394957337968258 ], [ -95.048392949683745, 30.394880337409283 ], [ -95.048367949945373, 30.394852337621018 ], [ -95.048354950375767, 30.394786337335962 ], [ -95.048367949839275, 30.394704337986223 ], [ -95.048411950148534, 30.394632337305005 ], [ -95.048627949482082, 30.394379337748365 ], [ -95.048677950075046, 30.394192337264531 ], [ -95.04868495012235, 30.39407733795424 ], [ -95.048671949674329, 30.393868337092101 ], [ -95.048633949457951, 30.393576337121001 ], [ -95.048437950315133, 30.393280337453721 ], [ -95.048532950377577, 30.392944337153928 ], [ -95.048741949643016, 30.392526337241666 ], [ -95.048760950381151, 30.39231733703885 ], [ -95.048741949362281, 30.392103337061602 ], [ -95.048747949526316, 30.392042337484273 ], [ -95.048792949954361, 30.391932336868447 ], [ -95.04884394974107, 30.391845337034091 ], [ -95.048849949580642, 30.391789337461976 ], [ -95.048811949909449, 30.391751336720734 ], [ -95.048671950096178, 30.391652337100282 ], [ -95.048659949557404, 30.391614337270383 ], [ -95.048659949325256, 30.391570337041774 ], [ -95.048678949734523, 30.391493337421153 ], [ -95.048735949809029, 30.391427336637534 ], [ -95.048792949919118, 30.391383336845806 ], [ -95.048811949450553, 30.391350337403246 ], [ -95.048792950165947, 30.391311337387016 ], [ -95.04864694931382, 30.391185336820445 ], [ -95.048595950290988, 30.3911243367513 ], [ -95.048576949392469, 30.391042337323398 ], [ -95.04858994979837, 30.390910336682051 ], [ -95.048627950223334, 30.390761336524847 ], [ -95.048735950269887, 30.39050333715355 ], [ -95.048729949833685, 30.390431336930156 ], [ -95.048691949579904, 30.39038233693822 ], [ -95.04861494946212, 30.390338336812064 ], [ -95.048576950126375, 30.390305336900703 ], [ -95.048564950203229, 30.390255336981991 ], [ -95.048570949572905, 30.390178336341492 ], [ -95.048577949478812, 30.390143336376912 ], [ -95.048646950185628, 30.389848336638629 ], [ -95.048659949554619, 30.389662336473936 ], [ -95.048640949212228, 30.389497336508157 ], [ -95.048589949874653, 30.389354336755584 ], [ -95.048551949737003, 30.38928833658397 ], [ -95.048494949223809, 30.389222336496285 ], [ -95.048424949826313, 30.389161336369028 ], [ -95.04823494999647, 30.389035336416001 ], [ -95.048145949424068, 30.388941336854248 ], [ -95.048063949409993, 30.388831336502847 ], [ -95.047898949554977, 30.388545336559812 ], [ -95.047816949089309, 30.388435336007191 ], [ -95.047740949577886, 30.388353336374738 ], [ -95.047499949831391, 30.388188336641473 ], [ -95.047454949605054, 30.388144336845983 ], [ -95.04739794932641, 30.388050336027799 ], [ -95.047359949212392, 30.388006336502446 ], [ -95.047124949552284, 30.387858336031915 ], [ -95.047036949155512, 30.387786336224224 ], [ -95.046966949063872, 30.387698335927283 ], [ -95.04691594931279, 30.387599336542362 ], [ -95.046883949238378, 30.387484336228564 ], [ -95.046871949256158, 30.387237336368571 ], [ -95.04683394947574, 30.387127336165928 ], [ -95.046757949570505, 30.387028336636011 ], [ -95.046497949486323, 30.386835336292076 ], [ -95.046452948581646, 30.38678633604415 ], [ -95.046370948488359, 30.38664333598371 ], [ -95.046256948911591, 30.386505336302097 ], [ -95.046237949149074, 30.3864393364486 ], [ -95.046230948527651, 30.386324336019939 ], [ -95.046237948829926, 30.385961336082495 ], [ -95.046218948927944, 30.385796336265674 ], [ -95.046180948745359, 30.385647336324045 ], [ -95.046059948507221, 30.385351335503508 ], [ -95.046040949210536, 30.385213335858282 ], [ -95.046066948669576, 30.385059336019907 ], [ -95.046205948812485, 30.384680336108335 ], [ -95.046256949318831, 30.384504335305561 ], [ -95.046332948593943, 30.384141335578853 ], [ -95.04629494859519, 30.383965335292775 ], [ -95.046167948670288, 30.383855335221998 ], [ -95.046117948902435, 30.383756335715859 ], [ -95.04602894926667, 30.383646335105997 ], [ -95.046009949148498, 30.383580335100646 ], [ -95.04601594833629, 30.383498335134 ], [ -95.046066948645674, 30.383250335411379 ], [ -95.04611094848282, 30.383151335812119 ], [ -95.046218949266944, 30.382992334961806 ], [ -95.046288949278107, 30.382909335181452 ], [ -95.046491949015603, 30.382711335756255 ], [ -95.046497948807101, 30.382678335347773 ], [ -95.046485949239269, 30.382612335761188 ], [ -95.046491948882675, 30.382541334969169 ], [ -95.046523948984003, 30.382475335711327 ], [ -95.046586949343734, 30.38242533484965 ], [ -95.04678394916111, 30.38234333532359 ], [ -95.046853949096203, 30.382299335638052 ], [ -95.047113949199556, 30.382079335554316 ], [ -95.047271948651058, 30.381925334813182 ], [ -95.047373948709875, 30.381782335091589 ], [ -95.047430949541024, 30.381733334884252 ], [ -95.04794394920745, 30.381507334795437 ], [ -95.04800794886124, 30.381474334765841 ], [ -95.048039948964856, 30.381447334642782 ], [ -95.04809694897483, 30.381370334758575 ], [ -95.048229949601946, 30.381117334812124 ], [ -95.048368948823892, 30.380908334974883 ], [ -95.048400949237788, 30.380831335168647 ], [ -95.048413949021096, 30.380760334545087 ], [ -95.048388949466997, 30.380584334757966 ], [ -95.048343948742414, 30.38050133459399 ], [ -95.048305948869313, 30.380402334540694 ], [ -95.048267948752056, 30.380127334412524 ], [ -95.048172948684325, 30.379874334514497 ], [ -95.048166949518688, 30.379786334641199 ], [ -95.048172948812123, 30.379693334373609 ], [ -95.048254949253092, 30.37942933492057 ], [ -95.048261949297071, 30.379335334171291 ], [ -95.048229949042877, 30.379280334350998 ], [ -95.04809694867663, 30.379148334730349 ], [ -95.048064948577462, 30.379082334743746 ], [ -95.048071949054062, 30.378994334064245 ], [ -95.048140949284161, 30.378709334209674 ], [ -95.048153949300428, 30.378483334497357 ], [ -95.048128949001423, 30.378390334470261 ], [ -95.048090949082138, 30.378313334479994 ], [ -95.047976949286365, 30.378175334594058 ], [ -95.047963949246352, 30.378104334510446 ], [ -95.047988948725205, 30.378027334394012 ], [ -95.048077948661785, 30.377862334502542 ], [ -95.048103949117731, 30.377779333844195 ], [ -95.048103949065748, 30.377691334613139 ], [ -95.048084949002671, 30.377609334533965 ], [ -95.048046949122124, 30.377537334553971 ], [ -95.047976949217215, 30.377488334643665 ], [ -95.047893948788243, 30.377455333796931 ], [ -95.047716949013534, 30.377427334009433 ], [ -95.047697948822986, 30.37739433444154 ], [ -95.047703948404973, 30.377301334089999 ], [ -95.047728949276959, 30.377197334608923 ], [ -95.047849949066844, 30.377070333716528 ], [ -95.047862949405015, 30.377026334270344 ], [ -95.047843949307691, 30.376982333682111 ], [ -95.047786949124543, 30.376911334448675 ], [ -95.047716949302853, 30.376839334092505 ], [ -95.047633948539485, 30.376773334445776 ], [ -95.04755194918998, 30.376729333684306 ], [ -95.047380948451419, 30.376658333631791 ], [ -95.047151948760174, 30.376465333678592 ], [ -95.046987948410347, 30.376350333792686 ], [ -95.046961948419167, 30.376317333747565 ], [ -95.046904948224906, 30.376130333503845 ], [ -95.046866948734149, 30.37607533423369 ], [ -95.046733948508432, 30.375987334372656 ], [ -95.046397948972739, 30.375838333520953 ], [ -95.046346948924977, 30.375772333602082 ], [ -95.046327948137787, 30.375712334321534 ], [ -95.046346948704084, 30.375662333946984 ], [ -95.04645494886536, 30.375585333660588 ], [ -95.047031949022639, 30.375393333412134 ], [ -95.04703894889866, 30.375217334140441 ], [ -95.04706894837031, 30.374999333494028 ], [ -95.047201948176678, 30.374928333675474 ], [ -95.047404948453448, 30.374900334032123 ], [ -95.047429948490986, 30.374845333320664 ], [ -95.047448949038071, 30.37472433364821 ], [ -95.047493949126817, 30.374708333996978 ], [ -95.047550949244737, 30.374713333491364 ], [ -95.047810948629262, 30.374785333949383 ], [ -95.047873948658491, 30.374768333793423 ], [ -95.047911949336893, 30.374746333635461 ], [ -95.047968948780934, 30.374702333187297 ], [ -95.047968948779598, 30.374680333798768 ], [ -95.047949949056886, 30.37464733332223 ], [ -95.047854948599962, 30.374543333451278 ], [ -95.04786194880279, 30.374510333325194 ], [ -95.047899948385478, 30.374455333600494 ], [ -95.047962948503894, 30.374422333195746 ], [ -95.048051948405103, 30.374400333239628 ], [ -95.048216948489028, 30.374384333383915 ], [ -95.048285949289252, 30.374362333761731 ], [ -95.048387948592691, 30.374301333195579 ], [ -95.048463949335925, 30.374186333429041 ], [ -95.04848294871617, 30.37410933326445 ], [ -95.048495949203456, 30.374010333886034 ], [ -95.048495948725758, 30.373889333150174 ], [ -95.048482948722352, 30.37385633348136 ], [ -95.048374949158031, 30.373762333062757 ], [ -95.048336949048888, 30.373713333303751 ], [ -95.048317949247817, 30.373625333013582 ], [ -95.048393948994018, 30.373509333219655 ], [ -95.048430948429456, 30.373470333126228 ], [ -95.048533948434255, 30.373366333214776 ], [ -95.048768949505927, 30.373162332922199 ], [ -95.048784949402261, 30.37314833319974 ], [ -95.04881894921229, 30.373119333681746 ], [ -95.048850949382924, 30.373003333024808 ], [ -95.048837949049542, 30.372888333137418 ], [ -95.048780949076189, 30.372762333382699 ], [ -95.048806949471441, 30.3726463328858 ], [ -95.048863948679482, 30.372514333533214 ], [ -95.048856948711702, 30.372476332741922 ], [ -95.048831949058169, 30.372437333335565 ], [ -95.048761949037214, 30.37236633330982 ], [ -95.048729948631546, 30.372311333366852 ], [ -95.048723948431274, 30.372272332967174 ], [ -95.048736949134579, 30.372234333462345 ], [ -95.048774948429511, 30.372179333462842 ], [ -95.048856949079337, 30.372124333206571 ], [ -95.048939948754992, 30.37208533262088 ], [ -95.049072949106971, 30.372069332707643 ], [ -95.049148949353039, 30.372069333216047 ], [ -95.049192949569687, 30.37205833267279 ], [ -95.049237948734685, 30.372025333098009 ], [ -95.049275948719256, 30.371970332982418 ], [ -95.049446948769187, 30.3716183331011 ], [ -95.049497949163197, 30.371590333359727 ], [ -95.049630948777917, 30.371574332892472 ], [ -95.049725948685833, 30.371579332975401 ], [ -95.049827949284662, 30.371596333393217 ], [ -95.049966949346825, 30.371656332572329 ], [ -95.05002994947607, 30.37164533334434 ], [ -95.050055949413434, 30.371618332934101 ], [ -95.050068948947455, 30.371579333257962 ], [ -95.050036949552833, 30.371530332830034 ], [ -95.049909949195012, 30.371387333014095 ], [ -95.049832948993227, 30.371312333239427 ], [ -95.049712949128903, 30.371194332890383 ], [ -95.04968794883375, 30.371161332784659 ], [ -95.049687949160159, 30.371117333063189 ], [ -95.049814949165921, 30.371095332553281 ], [ -95.050106949650797, 30.371073332847953 ], [ -95.050251949003083, 30.371084332633277 ], [ -95.050340948898494, 30.371112332846778 ], [ -95.050423949510488, 30.371151332505303 ], [ -95.050733948968386, 30.371315332430349 ], [ -95.050886949308648, 30.371332333110452 ], [ -95.050949949171951, 30.371321332549499 ], [ -95.051120949955916, 30.371156332381879 ], [ -95.051196949820721, 30.371134333243088 ], [ -95.051241949649182, 30.371156332900995 ], [ -95.05125394954257, 30.371211333128439 ], [ -95.051323949252804, 30.371332332554832 ], [ -95.05134295007575, 30.371458333005965 ], [ -95.051298949173813, 30.371585333106783 ], [ -95.051272949620056, 30.371744332857656 ], [ -95.051361950052879, 30.371827333127591 ], [ -95.051444949927387, 30.371832332536041 ], [ -95.051551949602455, 30.371744333109543 ], [ -95.051735949305012, 30.371475332398852 ], [ -95.051799949848018, 30.371420333069185 ], [ -95.051856949593997, 30.371398333127857 ], [ -95.051900949502851, 30.371403332826588 ], [ -95.052065949465714, 30.371535333111609 ], [ -95.052135949587381, 30.371552332479133 ], [ -95.052160949471528, 30.371535333217587 ], [ -95.052192949530905, 30.371491332778909 ], [ -95.052223950180007, 30.371416332433604 ], [ -95.052293949518955, 30.37124433274743 ], [ -95.052331950003136, 30.371217333105946 ], [ -95.052465950007957, 30.371162332455999 ], [ -95.052553949422659, 30.371107332358093 ], [ -95.052566949933876, 30.371090332789631 ], [ -95.05257995015846, 30.37103033262655 ], [ -95.052584949597133, 30.37102033265284 ], [ -95.052628950169492, 30.370938332757945 ], [ -95.052680950117164, 30.370843333113225 ], [ -95.052667949778495, 30.370777332464613 ], [ -95.052598950086036, 30.370683332704235 ], [ -95.052287949464912, 30.370408332357929 ], [ -95.052268949242674, 30.370353333020923 ], [ -95.052268950114183, 30.370298332274483 ], [ -95.05228794986391, 30.370243332762371 ], [ -95.052331950120347, 30.370205332645284 ], [ -95.052490949310837, 30.370133332665784 ], [ -95.052534949443483, 30.370095332480506 ], [ -95.052553949461227, 30.370056332261676 ], [ -95.052553949413735, 30.369908332879046 ], [ -95.05257994932083, 30.369842332342277 ], [ -95.052661950141811, 30.369726332577915 ], [ -95.052718949947348, 30.369611332772742 ], [ -95.052731949352463, 30.369562332694485 ], [ -95.052731949432896, 30.369518332068949 ], [ -95.052706950149414, 30.369435332729992 ], [ -95.052561949762051, 30.369133332184084 ], [ -95.052534949645249, 30.36907833237937 ], [ -95.052515949593356, 30.369006331894099 ], [ -95.052522950026997, 30.368951332084087 ], [ -95.052566950157569, 30.368902332624383 ], [ -95.052617949878112, 30.368880332703391 ], [ -95.052667950294989, 30.36888533187873 ], [ -95.052718949414682, 30.368913332631539 ], [ -95.052908950290202, 30.369056332291205 ], [ -95.052966949762776, 30.369083332093666 ], [ -95.053004950273717, 30.369083332654053 ], [ -95.053035949507091, 30.369072332055232 ], [ -95.053061950028649, 30.369045331995345 ], [ -95.053067949957523, 30.369012332075354 ], [ -95.053042949990314, 30.368918332604256 ], [ -95.053010949468359, 30.368858332645754 ], [ -95.052889949921379, 30.368715332455711 ], [ -95.052870949724948, 30.368660332258354 ], [ -95.052889949370012, 30.368572332150627 ], [ -95.052928949872651, 30.368489331914148 ], [ -95.052921949662974, 30.368429331870008 ], [ -95.052883949802521, 30.36831333229204 ], [ -95.052851949587264, 30.368165331874522 ], [ -95.052845949601931, 30.367983332200318 ], [ -95.052845949597852, 30.367939332443839 ], [ -95.052807950100913, 30.367857332429509 ], [ -95.052693949480968, 30.367763331825191 ], [ -95.052630949758267, 30.367687331835249 ], [ -95.05261794975965, 30.367626332059942 ], [ -95.052598949910745, 30.367362332213091 ], [ -95.052617950003196, 30.367324331968547 ], [ -95.052820949902582, 30.367274332338898 ], [ -95.052851949672188, 30.367236332293601 ], [ -95.05284594980499, 30.367181331786551 ], [ -95.05272594964535, 30.366994331872469 ], [ -95.052712949731983, 30.366889332308382 ], [ -95.05272594931651, 30.366812331748509 ], [ -95.052782949489398, 30.366636331771229 ], [ -95.052769950178899, 30.366554331670805 ], [ -95.052744949473635, 30.366537331391878 ], [ -95.052680949548346, 30.366521331900369 ], [ -95.05262395009332, 30.366537332068919 ], [ -95.052572949462544, 30.36657633222217 ], [ -95.052439949545246, 30.366774331951429 ], [ -95.052395949387943, 30.366796331872607 ], [ -95.052350949124488, 30.366779331668553 ], [ -95.05228794960378, 30.366719331715451 ], [ -95.052205949621907, 30.366592332068482 ], [ -95.052180949726178, 30.36654233208689 ], [ -95.052141949513313, 30.366466331473518 ], [ -95.052129949578585, 30.36641633218137 ], [ -95.052129949401092, 30.366378331571479 ], [ -95.052160949235272, 30.366323331400498 ], [ -95.052186949201712, 30.366301331551824 ], [ -95.052211949300926, 30.366295331556337 ], [ -95.0524149492352, 30.366306331733227 ], [ -95.052452949845986, 30.366284332133418 ], [ -95.052458949978956, 30.366224331773747 ], [ -95.052439949175024, 30.365850331722765 ], [ -95.052477949800178, 30.365784331408904 ], [ -95.052566949510805, 30.365696332079676 ], [ -95.052579949981563, 30.365663331325557 ], [ -95.052598949695948, 30.365421331359606 ], [ -95.052655949642258, 30.365344331137788 ], [ -95.052668949475873, 30.365300331979302 ], [ -95.052642949752794, 30.365152331863023 ], [ -95.052661949481546, 30.365036331200056 ], [ -95.052687949554056, 30.365003331077098 ], [ -95.052731949909756, 30.364981331072734 ], [ -95.052869949644133, 30.365053331060125 ], [ -95.052890950109784, 30.365053331273572 ], [ -95.052903949977178, 30.365038331662621 ], [ -95.052909950098154, 30.365009331764274 ], [ -95.052877949292522, 30.364921331159149 ], [ -95.052871949513076, 30.364866331495289 ], [ -95.052877949721946, 30.364761331251319 ], [ -95.052921949335925, 30.364618330975031 ], [ -95.052915949516077, 30.364519331478533 ], [ -95.052902949310649, 30.36448633118944 ], [ -95.052845949564627, 30.364459331612579 ], [ -95.052801949992485, 30.364470331492388 ], [ -95.052668949812201, 30.364552331420914 ], [ -95.052617949255122, 30.36453033148781 ], [ -95.052592949200829, 30.364503331001693 ], [ -95.052572949720286, 30.364448331151085 ], [ -95.052566949222992, 30.364332331316337 ], [ -95.052585949908163, 30.364250331220596 ], [ -95.052636949975764, 30.364212331054745 ], [ -95.052832949452281, 30.364140331054621 ], [ -95.052877949552553, 30.36396433151576 ], [ -95.052902949101849, 30.363904331380617 ], [ -95.0529789497769, 30.36381033104588 ], [ -95.052991949785508, 30.363755331653842 ], [ -95.052959949713269, 30.363541331596984 ], [ -95.052972949150345, 30.363458330804331 ], [ -95.053023950064087, 30.363370331470957 ], [ -95.053111949189017, 30.363299330733742 ], [ -95.053213949914138, 30.36323333108183 ], [ -95.053257950170661, 30.363145330685075 ], [ -95.053264949204731, 30.363079331382622 ], [ -95.053251949907505, 30.362859330621077 ], [ -95.053270949886382, 30.362826331221971 ], [ -95.053308950019172, 30.362809331461143 ], [ -95.05345495014663, 30.362853330970236 ], [ -95.053492949820182, 30.362842331247979 ], [ -95.053517949479357, 30.36281533065425 ], [ -95.053517950040316, 30.362754331426551 ], [ -95.053411949922634, 30.362531331072514 ], [ -95.053314949627577, 30.362326330842791 ], [ -95.053302950082397, 30.362265331379898 ], [ -95.053302949796333, 30.362199331117775 ], [ -95.053333950145358, 30.362111330964076 ], [ -95.053365949938382, 30.362089330533991 ], [ -95.05351795004573, 30.362034330644722 ], [ -95.05356294955817, 30.36200133055646 ], [ -95.053568949891798, 30.361814330531377 ], [ -95.053593950121197, 30.361770330537869 ], [ -95.053834950076322, 30.361704330663819 ], [ -95.053885950024991, 30.361677331124511 ], [ -95.053930950233863, 30.361589330869641 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 227, "Tract": "48201421302", "Area_SqMi": 0.46997375637655825, "total_2009": 4042, "total_2010": 2846, "total_2011": 2786, "total_2012": 2777, "total_2013": 2797, "total_2014": 2932, "total_2015": 2929, "total_2016": 4544, "total_2017": 4575, "total_2018": 4687, "total_2019": 4452, "total_2020": 4454, "age1": 1432, "age2": 3264, "age3": 892, "earn1": 574, "earn2": 1295, "earn3": 3719, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 37, "naics_s05": 17, "naics_s06": 178, "naics_s07": 91, "naics_s08": 51, "naics_s09": 12, "naics_s10": 40, "naics_s11": 102, "naics_s12": 271, "naics_s13": 98, "naics_s14": 411, "naics_s15": 3081, "naics_s16": 804, "naics_s17": 32, "naics_s18": 327, "naics_s19": 36, "naics_s20": 0, "race1": 2998, "race2": 1992, "race3": 35, "race4": 449, "race5": 7, "race6": 107, "ethnicity1": 3895, "ethnicity2": 1693, "edu1": 843, "edu2": 984, "edu3": 1271, "edu4": 1058, "Shape_Length": 16669.590224144929, "Shape_Area": 13102063.959655432, "total_2021": 5070, "total_2022": 5588 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.513274037403235, 29.704431180465619 ], [ -95.513136037364347, 29.704382180795001 ], [ -95.512938037435845, 29.704311181001817 ], [ -95.512751037756885, 29.704244180834284 ], [ -95.511242037492408, 29.703883181132671 ], [ -95.510677036752938, 29.703844181031414 ], [ -95.510050036631682, 29.703811180317995 ], [ -95.509691037091898, 29.703800180763483 ], [ -95.508769036092588, 29.703828180441278 ], [ -95.507873035755622, 29.703958181223342 ], [ -95.507075035482842, 29.70410918133129 ], [ -95.506546035447244, 29.704265181130651 ], [ -95.50633303539901, 29.704337181165858 ], [ -95.505639035459495, 29.704598180959309 ], [ -95.505209035248413, 29.70476618141662 ], [ -95.504997035488159, 29.704843180870455 ], [ -95.504789035856859, 29.704919181356882 ], [ -95.504421035112003, 29.704989181140238 ], [ -95.503811035167246, 29.705145180941862 ], [ -95.502703034681701, 29.70531018162216 ], [ -95.501155034400185, 29.70540218123746 ], [ -95.499366033877934, 29.705411181893872 ], [ -95.498581033980585, 29.70541518192724 ], [ -95.497243033533834, 29.705420181807686 ], [ -95.497198033673399, 29.705989181721897 ], [ -95.497091033567401, 29.706280182083869 ], [ -95.496923033746029, 29.706565181875796 ], [ -95.496838033041897, 29.706826182004757 ], [ -95.496801033872458, 29.707223181621792 ], [ -95.496841033110812, 29.708571182233111 ], [ -95.49684403326043, 29.708887182544498 ], [ -95.496846033632394, 29.710205182885666 ], [ -95.496847033861769, 29.710265182848488 ], [ -95.496834033474386, 29.710644182802117 ], [ -95.496888034037582, 29.711148182865223 ], [ -95.496960033942074, 29.711458182478125 ], [ -95.496297033036726, 29.711716182916767 ], [ -95.495927033315965, 29.711939182527125 ], [ -95.495543033068742, 29.712240182777524 ], [ -95.494997033097803, 29.712717183489502 ], [ -95.494787032709013, 29.712899183191073 ], [ -95.494769032772979, 29.712915182742918 ], [ -95.495454032862511, 29.713511183399355 ], [ -95.495726033521038, 29.71374318340311 ], [ -95.49589803365636, 29.713891182904405 ], [ -95.496178033419667, 29.71412918348393 ], [ -95.496393033848975, 29.714312183580013 ], [ -95.497135034211496, 29.714945183346426 ], [ -95.49760903360999, 29.715354183436197 ], [ -95.497771033799026, 29.715495183278815 ], [ -95.498000034209312, 29.715698183745303 ], [ -95.498392034259638, 29.716042183667817 ], [ -95.49890503430511, 29.716463183600709 ], [ -95.499075033944635, 29.716630183967524 ], [ -95.499177034700367, 29.716731183482914 ], [ -95.499295034446661, 29.716846184099055 ], [ -95.499366034990501, 29.716783183708429 ], [ -95.501494035236135, 29.714895183004529 ], [ -95.506470035891397, 29.710489181927528 ], [ -95.507757036065456, 29.709349182402914 ], [ -95.509422036202338, 29.707874181610975 ], [ -95.510261036525179, 29.707131181236569 ], [ -95.510650037169626, 29.706782180910352 ], [ -95.513064037729379, 29.70461918075134 ], [ -95.513274037403235, 29.704431180465619 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 228, "Tract": "48201421204", "Area_SqMi": 0.090476217818670018, "total_2009": 86, "total_2010": 100, "total_2011": 162, "total_2012": 73, "total_2013": 83, "total_2014": 114, "total_2015": 126, "total_2016": 150, "total_2017": 168, "total_2018": 185, "total_2019": 228, "total_2020": 171, "age1": 22, "age2": 62, "age3": 30, "earn1": 28, "earn2": 42, "earn3": 44, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 6, "naics_s06": 8, "naics_s07": 44, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 37, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 80, "race2": 19, "race3": 0, "race4": 12, "race5": 0, "race6": 3, "ethnicity1": 78, "ethnicity2": 36, "edu1": 16, "edu2": 33, "edu3": 24, "edu4": 19, "Shape_Length": 8181.164963540903, "Shape_Area": 2522322.1011901139, "total_2021": 153, "total_2022": 114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.493187032688596, 29.72225418518736 ], [ -95.493127032902038, 29.722099185126201 ], [ -95.493183032896852, 29.721817184910439 ], [ -95.493182033598302, 29.721548185280291 ], [ -95.49315203334136, 29.720861184918075 ], [ -95.493156033520151, 29.720320185090802 ], [ -95.493159033309837, 29.719968184205531 ], [ -95.491998032923306, 29.719985185034023 ], [ -95.491386032573004, 29.719997184291348 ], [ -95.491183032620583, 29.71999218434852 ], [ -95.490810032475565, 29.720001185009163 ], [ -95.490401032497715, 29.720011184769948 ], [ -95.490228032360022, 29.720005184897548 ], [ -95.489638032265034, 29.720005185085842 ], [ -95.489010031794038, 29.720008184428721 ], [ -95.487999032132564, 29.720029184435013 ], [ -95.486649031525417, 29.720041185042145 ], [ -95.48485703116701, 29.720057184506818 ], [ -95.48485803144311, 29.720228185176708 ], [ -95.484865031312225, 29.721283184844385 ], [ -95.484869030517117, 29.721795185645192 ], [ -95.484850031397883, 29.722019185762321 ], [ -95.484831031571133, 29.722258185162307 ], [ -95.484783031439534, 29.722503185226319 ], [ -95.484863030880049, 29.72249818532363 ], [ -95.485013031356658, 29.722489185807021 ], [ -95.485125030716745, 29.722541185568495 ], [ -95.485119031067981, 29.721928185590706 ], [ -95.485294031044617, 29.721846185647887 ], [ -95.486376030982129, 29.72187518553492 ], [ -95.487392031976967, 29.721851185431177 ], [ -95.488784031624604, 29.721846185503829 ], [ -95.489040031726702, 29.721820184894376 ], [ -95.489036032476065, 29.722733185081161 ], [ -95.4890330322187, 29.723467185535394 ], [ -95.489044031729208, 29.723693185372699 ], [ -95.489048032419063, 29.723769185738561 ], [ -95.490690032622553, 29.723636185567518 ], [ -95.490847032900419, 29.723636185351783 ], [ -95.491153032456523, 29.723635185865337 ], [ -95.491420032635688, 29.723612185738602 ], [ -95.491652032814528, 29.72360218538601 ], [ -95.491989032614867, 29.7233071851544 ], [ -95.493187032688596, 29.72225418518736 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 229, "Tract": "48201421801", "Area_SqMi": 0.12174448791521027, "total_2009": 440, "total_2010": 809, "total_2011": 388, "total_2012": 399, "total_2013": 466, "total_2014": 543, "total_2015": 597, "total_2016": 346, "total_2017": 321, "total_2018": 321, "total_2019": 429, "total_2020": 372, "age1": 92, "age2": 137, "age3": 50, "earn1": 58, "earn2": 126, "earn3": 95, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 0, "naics_s07": 61, "naics_s08": 66, "naics_s09": 0, "naics_s10": 12, "naics_s11": 60, "naics_s12": 14, "naics_s13": 3, "naics_s14": 4, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 30, "naics_s19": 9, "naics_s20": 0, "race1": 181, "race2": 74, "race3": 1, "race4": 19, "race5": 0, "race6": 4, "ethnicity1": 179, "ethnicity2": 100, "edu1": 54, "edu2": 52, "edu3": 43, "edu4": 38, "Shape_Length": 9819.0295312370054, "Shape_Area": 3394027.955302537, "total_2021": 271, "total_2022": 279 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484322029030523, 29.675873175533308 ], [ -95.484309028878329, 29.675805176189787 ], [ -95.484258028416249, 29.675398176140664 ], [ -95.484264029164606, 29.675314176016311 ], [ -95.479947028286645, 29.676550176134654 ], [ -95.477723027293877, 29.677187176462137 ], [ -95.476882026662366, 29.677394176638561 ], [ -95.476888027322545, 29.67748517656559 ], [ -95.476917027344683, 29.677968176486189 ], [ -95.47694402725412, 29.679068176405792 ], [ -95.47696602716087, 29.679981177431433 ], [ -95.47698102753381, 29.680812176910532 ], [ -95.476984027535565, 29.681026177345156 ], [ -95.476997027041648, 29.681684176951414 ], [ -95.477003027763885, 29.681985177052653 ], [ -95.477012027299239, 29.682485177946351 ], [ -95.47701702733174, 29.682768177886757 ], [ -95.477027027823311, 29.683286177873082 ], [ -95.4792980275367, 29.683282177405257 ], [ -95.479296027513328, 29.682366177308463 ], [ -95.479281028244316, 29.6814201773871 ], [ -95.479259028075035, 29.680565177138849 ], [ -95.479258027915847, 29.680536177258553 ], [ -95.479253027408006, 29.679972176592578 ], [ -95.479416027440081, 29.679002176440203 ], [ -95.479795027403497, 29.67900417661324 ], [ -95.480659028536024, 29.678992176641309 ], [ -95.481444027784718, 29.678986176484301 ], [ -95.481847028665555, 29.678983176212352 ], [ -95.482282028617021, 29.678980176890089 ], [ -95.482732028693505, 29.679010176983066 ], [ -95.483093028204593, 29.679075176275745 ], [ -95.483381029128239, 29.67912817637416 ], [ -95.48342302841678, 29.679134176417751 ], [ -95.484203028464066, 29.679133176626454 ], [ -95.484291028566801, 29.678085176546098 ], [ -95.484273028776357, 29.677125175934709 ], [ -95.484263028940916, 29.675884175911222 ], [ -95.484322029030523, 29.675873175533308 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 230, "Tract": "48201541205", "Area_SqMi": 0.52652031003158206, "total_2009": 338, "total_2010": 274, "total_2011": 226, "total_2012": 255, "total_2013": 320, "total_2014": 318, "total_2015": 273, "total_2016": 267, "total_2017": 314, "total_2018": 218, "total_2019": 201, "total_2020": 168, "age1": 47, "age2": 89, "age3": 35, "earn1": 62, "earn2": 46, "earn3": 63, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 8, "naics_s06": 10, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 5, "naics_s12": 28, "naics_s13": 0, "naics_s14": 23, "naics_s15": 0, "naics_s16": 26, "naics_s17": 0, "naics_s18": 0, "naics_s19": 62, "naics_s20": 0, "race1": 113, "race2": 35, "race3": 0, "race4": 18, "race5": 0, "race6": 5, "ethnicity1": 118, "ethnicity2": 53, "edu1": 14, "edu2": 28, "edu3": 43, "edu4": 39, "Shape_Length": 15566.568599959608, "Shape_Area": 14678485.095163677, "total_2021": 129, "total_2022": 171 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.669170086333949, 29.899603215308826 ], [ -95.669370085962029, 29.899559215600739 ], [ -95.668715086290703, 29.897237215120651 ], [ -95.668692085819742, 29.897137214435229 ], [ -95.668641085544138, 29.896913214390413 ], [ -95.668605085341611, 29.896702214432377 ], [ -95.668570085420569, 29.896390214744866 ], [ -95.66855108530379, 29.895966214520691 ], [ -95.668545085558677, 29.895480214249744 ], [ -95.668545086176081, 29.895414214483349 ], [ -95.668506085727969, 29.892944214318991 ], [ -95.668475085698574, 29.890479213314613 ], [ -95.668469085540039, 29.890256213505189 ], [ -95.667739085310444, 29.890270213851124 ], [ -95.667461084934743, 29.890278213555675 ], [ -95.666861085366762, 29.890325213406413 ], [ -95.66638308519029, 29.890350213605881 ], [ -95.666154084877391, 29.89035121376644 ], [ -95.665902085268712, 29.890336213630526 ], [ -95.665741085231289, 29.890318213301782 ], [ -95.665591084940033, 29.890294213314551 ], [ -95.665444084778613, 29.890261213344662 ], [ -95.66526008450181, 29.890214213700634 ], [ -95.665124084908854, 29.890169213714596 ], [ -95.664908084495011, 29.890085213710872 ], [ -95.664750084157603, 29.890010213133174 ], [ -95.664592084754162, 29.889919213542946 ], [ -95.664518084253061, 29.889854213507377 ], [ -95.664365084832554, 29.889765213454758 ], [ -95.664122084681907, 29.889580213740256 ], [ -95.663961084170211, 29.889459213343958 ], [ -95.663632083855674, 29.889226213354441 ], [ -95.663260084362022, 29.888982213182395 ], [ -95.6631880841352, 29.888940213404208 ], [ -95.663027084000888, 29.888857213384433 ], [ -95.662945083615327, 29.888810213665877 ], [ -95.662683084420919, 29.888696213622083 ], [ -95.662470084210597, 29.88862221326195 ], [ -95.662344084036093, 29.888582212887929 ], [ -95.662086083483956, 29.888515212873518 ], [ -95.661516083922493, 29.888416213154816 ], [ -95.66107008350177, 29.888340213636198 ], [ -95.660720083161564, 29.888294213113944 ], [ -95.660595083821704, 29.888283213725021 ], [ -95.660366083600863, 29.888264212986613 ], [ -95.660261082888042, 29.888261213171134 ], [ -95.659768083707831, 29.888263213349763 ], [ -95.659361082839837, 29.888268213039716 ], [ -95.658823083252798, 29.888282213542166 ], [ -95.658749083344247, 29.888288213197093 ], [ -95.658426083328621, 29.888331213102344 ], [ -95.657931082856152, 29.888407213103484 ], [ -95.65739008266705, 29.888523213313526 ], [ -95.657237082269276, 29.888562213042807 ], [ -95.657032082624212, 29.888620213049659 ], [ -95.656541082555165, 29.888771213380657 ], [ -95.656452082839422, 29.888802213642141 ], [ -95.656353081996926, 29.888847213424238 ], [ -95.656278082029672, 29.88886621353938 ], [ -95.65620908228783, 29.888904213229814 ], [ -95.656189082560033, 29.888911213332854 ], [ -95.656143082475111, 29.888924213769187 ], [ -95.656071081834469, 29.888952213990642 ], [ -95.655743082380667, 29.88909421352097 ], [ -95.655389082043101, 29.889247213562712 ], [ -95.655129082041256, 29.889359213928977 ], [ -95.655049082088965, 29.88939921327896 ], [ -95.65492808234778, 29.889452213615748 ], [ -95.654581081793125, 29.889623213558188 ], [ -95.654266081422605, 29.889779213848996 ], [ -95.654106082016, 29.889811213955031 ], [ -95.65419008139186, 29.890031214147196 ], [ -95.654228082186847, 29.890111213848861 ], [ -95.654268081425826, 29.890182214242937 ], [ -95.654311081974541, 29.890248214331734 ], [ -95.654366082064854, 29.890320214209922 ], [ -95.654423081790497, 29.890380213765944 ], [ -95.65455408219529, 29.890494214023335 ], [ -95.654653081700459, 29.890564214091228 ], [ -95.654904081740654, 29.890723213880101 ], [ -95.655039082504871, 29.890821214297048 ], [ -95.655086081835677, 29.890860214264581 ], [ -95.655192082146243, 29.890960213702609 ], [ -95.655296082418602, 29.891086213935665 ], [ -95.655466082011131, 29.891351214264997 ], [ -95.655514082378716, 29.891426214362255 ], [ -95.656241081994807, 29.892615214289897 ], [ -95.656347082493738, 29.892802214501096 ], [ -95.656487082446574, 29.893113214018346 ], [ -95.656582082601886, 29.893348214443701 ], [ -95.656645082909307, 29.893544214614547 ], [ -95.656675083093376, 29.893643214354736 ], [ -95.656710082584937, 29.893787214138914 ], [ -95.656752082691753, 29.894020214179839 ], [ -95.656781082759721, 29.894261214634319 ], [ -95.656789082300548, 29.894392214427391 ], [ -95.656803082360639, 29.895043214348206 ], [ -95.656810083059426, 29.895408214973159 ], [ -95.656806082930743, 29.895666215127754 ], [ -95.656795082513455, 29.895761214768676 ], [ -95.656776082526164, 29.895854215385938 ], [ -95.65675108290651, 29.89594421531898 ], [ -95.656721082895118, 29.896030215051798 ], [ -95.656650083184573, 29.896187215104611 ], [ -95.656573083232857, 29.896324214631932 ], [ -95.656425082251161, 29.896566215523691 ], [ -95.656344082497029, 29.896672215090994 ], [ -95.656408082420342, 29.896695215017061 ], [ -95.656605082991646, 29.896794214956646 ], [ -95.656902083123612, 29.896965215097897 ], [ -95.657167083202367, 29.897108215025419 ], [ -95.657332082493838, 29.897208215445303 ], [ -95.657568082825293, 29.897364215610519 ], [ -95.657737083427136, 29.897470215224921 ], [ -95.658079083063313, 29.897685215097731 ], [ -95.659168083651736, 29.898343214987054 ], [ -95.659359083691086, 29.898453215158245 ], [ -95.659449083899602, 29.898511215077569 ], [ -95.659566083980025, 29.898591215502506 ], [ -95.659885083488447, 29.898787215759057 ], [ -95.660605083487539, 29.899198215474151 ], [ -95.661096083606637, 29.899433215373925 ], [ -95.661755084564433, 29.899698215121209 ], [ -95.661902084140365, 29.899751215856529 ], [ -95.662182084176379, 29.899842215540431 ], [ -95.662362084248514, 29.8998942152277 ], [ -95.663276084671395, 29.900100215789312 ], [ -95.663413084515781, 29.90012821525432 ], [ -95.663707084577297, 29.900174215132864 ], [ -95.663858084478719, 29.900191215214587 ], [ -95.664313084450299, 29.900231215909365 ], [ -95.664343084814789, 29.900233215300844 ], [ -95.664473085281116, 29.900240215805951 ], [ -95.664532084900387, 29.900243215763947 ], [ -95.664611084972591, 29.900247215543068 ], [ -95.664879085014746, 29.900253215851492 ], [ -95.665034084638989, 29.900257215148368 ], [ -95.665332085283779, 29.900258215333125 ], [ -95.665614084814962, 29.900250215862243 ], [ -95.665833085684099, 29.900233215239357 ], [ -95.665923085455788, 29.900226215471001 ], [ -95.666192085394968, 29.900196215918463 ], [ -95.666696085469439, 29.900133215346251 ], [ -95.667067085129688, 29.900062215396456 ], [ -95.668468085558516, 29.899761215660536 ], [ -95.669170086333949, 29.899603215308826 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 231, "Tract": "48201421301", "Area_SqMi": 0.10305230752886181, "total_2009": 843, "total_2010": 754, "total_2011": 693, "total_2012": 968, "total_2013": 728, "total_2014": 493, "total_2015": 517, "total_2016": 582, "total_2017": 592, "total_2018": 587, "total_2019": 680, "total_2020": 642, "age1": 159, "age2": 371, "age3": 109, "earn1": 76, "earn2": 196, "earn3": 367, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 84, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 23, "naics_s12": 12, "naics_s13": 0, "naics_s14": 28, "naics_s15": 0, "naics_s16": 481, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 392, "race2": 160, "race3": 2, "race4": 77, "race5": 0, "race6": 8, "ethnicity1": 364, "ethnicity2": 275, "edu1": 122, "edu2": 115, "edu3": 135, "edu4": 108, "Shape_Length": 7297.1801036662901, "Shape_Area": 2872921.9581176061, "total_2021": 560, "total_2022": 639 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.497198033673399, 29.705989181721897 ], [ -95.497243033533834, 29.705420181807686 ], [ -95.495178032623201, 29.705468181914625 ], [ -95.494308033120205, 29.705459181872481 ], [ -95.493074032060463, 29.705458181660518 ], [ -95.493057032668915, 29.705458181521834 ], [ -95.493064032516884, 29.705823182014615 ], [ -95.493074032672155, 29.706398181493483 ], [ -95.493090032497634, 29.707271181974942 ], [ -95.493100032690037, 29.708186182525036 ], [ -95.493128032682392, 29.70906318231755 ], [ -95.493150032836382, 29.710188183083499 ], [ -95.493287033027414, 29.710837182820299 ], [ -95.49344203286762, 29.711280183291144 ], [ -95.49379103329305, 29.711865183420162 ], [ -95.494078032552082, 29.712234183035338 ], [ -95.494305033369031, 29.712482182927243 ], [ -95.494408032905881, 29.712595183489988 ], [ -95.494769032772979, 29.712915182742918 ], [ -95.494787032709013, 29.712899183191073 ], [ -95.494997033097803, 29.712717183489502 ], [ -95.495543033068742, 29.712240182777524 ], [ -95.495927033315965, 29.711939182527125 ], [ -95.496297033036726, 29.711716182916767 ], [ -95.496960033942074, 29.711458182478125 ], [ -95.496888034037582, 29.711148182865223 ], [ -95.496834033474386, 29.710644182802117 ], [ -95.496847033861769, 29.710265182848488 ], [ -95.496846033632394, 29.710205182885666 ], [ -95.49684403326043, 29.708887182544498 ], [ -95.496841033110812, 29.708571182233111 ], [ -95.496801033872458, 29.707223181621792 ], [ -95.496838033041897, 29.706826182004757 ], [ -95.496923033746029, 29.706565181875796 ], [ -95.497091033567401, 29.706280182083869 ], [ -95.497198033673399, 29.705989181721897 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 232, "Tract": "48201421206", "Area_SqMi": 0.062418200654914852, "total_2009": 168, "total_2010": 160, "total_2011": 152, "total_2012": 141, "total_2013": 142, "total_2014": 151, "total_2015": 146, "total_2016": 153, "total_2017": 179, "total_2018": 214, "total_2019": 222, "total_2020": 235, "age1": 71, "age2": 133, "age3": 82, "earn1": 65, "earn2": 154, "earn3": 67, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 9, "naics_s06": 0, "naics_s07": 127, "naics_s08": 0, "naics_s09": 13, "naics_s10": 37, "naics_s11": 23, "naics_s12": 0, "naics_s13": 2, "naics_s14": 10, "naics_s15": 22, "naics_s16": 1, "naics_s17": 0, "naics_s18": 30, "naics_s19": 12, "naics_s20": 0, "race1": 231, "race2": 25, "race3": 3, "race4": 25, "race5": 0, "race6": 2, "ethnicity1": 120, "ethnicity2": 166, "edu1": 82, "edu2": 43, "edu3": 57, "edu4": 33, "Shape_Length": 5275.32072830378, "Shape_Area": 1740112.6044409322, "total_2021": 273, "total_2022": 286 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.489010031794038, 29.720008184428721 ], [ -95.488981032300558, 29.718328184654514 ], [ -95.488980032389961, 29.718168184700087 ], [ -95.488974031414202, 29.717158184347333 ], [ -95.4889680322744, 29.716387183639792 ], [ -95.488745031813593, 29.716387184245171 ], [ -95.487766032014278, 29.716398184151483 ], [ -95.487021030947986, 29.716405184052203 ], [ -95.486784031176953, 29.716408183808163 ], [ -95.486607031128955, 29.716409184343686 ], [ -95.485068030408726, 29.716426184204717 ], [ -95.484807030509145, 29.716429184293276 ], [ -95.484812031061168, 29.716783184193471 ], [ -95.484818030833807, 29.717175184771058 ], [ -95.484821031230538, 29.717423184467002 ], [ -95.484838030751902, 29.718684184712981 ], [ -95.48485703116701, 29.720057184506818 ], [ -95.486649031525417, 29.720041185042145 ], [ -95.487999032132564, 29.720029184435013 ], [ -95.489010031794038, 29.720008184428721 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 233, "Tract": "48201423203", "Area_SqMi": 0.31837397072905671, "total_2009": 940, "total_2010": 950, "total_2011": 1032, "total_2012": 738, "total_2013": 753, "total_2014": 808, "total_2015": 729, "total_2016": 893, "total_2017": 1004, "total_2018": 878, "total_2019": 862, "total_2020": 724, "age1": 197, "age2": 405, "age3": 172, "earn1": 153, "earn2": 252, "earn3": 369, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 2, "naics_s06": 1, "naics_s07": 181, "naics_s08": 6, "naics_s09": 1, "naics_s10": 25, "naics_s11": 27, "naics_s12": 0, "naics_s13": 0, "naics_s14": 3, "naics_s15": 94, "naics_s16": 227, "naics_s17": 0, "naics_s18": 170, "naics_s19": 27, "naics_s20": 0, "race1": 537, "race2": 164, "race3": 8, "race4": 50, "race5": 0, "race6": 15, "ethnicity1": 512, "ethnicity2": 262, "edu1": 104, "edu2": 139, "edu3": 174, "edu4": 160, "Shape_Length": 12377.263581933992, "Shape_Area": 8875721.4014293626, "total_2021": 717, "total_2022": 774 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.536605041323654, 29.666025172508501 ], [ -95.536603041771443, 29.666005172210991 ], [ -95.536586041719744, 29.665834172147669 ], [ -95.536565042177045, 29.665659171860472 ], [ -95.536552042238526, 29.66473617167307 ], [ -95.536570041365366, 29.664588172106722 ], [ -95.536567041204677, 29.664309171883513 ], [ -95.536565041266627, 29.664188172194557 ], [ -95.536281041971549, 29.663778171756359 ], [ -95.536205041427962, 29.663566172018044 ], [ -95.536154041708045, 29.661724171072841 ], [ -95.536137041488317, 29.661724171677758 ], [ -95.536141041728087, 29.661289171117346 ], [ -95.536138041545371, 29.660728171499965 ], [ -95.536101040848465, 29.658903170884976 ], [ -95.536069040903072, 29.658321170409241 ], [ -95.536063041044358, 29.658211170529572 ], [ -95.536038041511603, 29.657309170434903 ], [ -95.536044040920771, 29.657084169919386 ], [ -95.53602604106544, 29.656457170444295 ], [ -95.536204041579666, 29.656351170069918 ], [ -95.536273041662511, 29.656303169737392 ], [ -95.534262040912566, 29.656330170613906 ], [ -95.533537040967616, 29.656344170325074 ], [ -95.53248004047795, 29.656328170705088 ], [ -95.531937040066737, 29.656271170664958 ], [ -95.531520040133145, 29.656192169859711 ], [ -95.531274039532619, 29.65614617070543 ], [ -95.530177039491704, 29.65589617024548 ], [ -95.529402039710618, 29.655717170122148 ], [ -95.529214039183714, 29.655705170064476 ], [ -95.528031039304224, 29.65568916996116 ], [ -95.528048038998506, 29.65686617016917 ], [ -95.528033038941174, 29.658165170472262 ], [ -95.528041039044425, 29.658934170876822 ], [ -95.528054039029684, 29.660134171596379 ], [ -95.52805803914292, 29.66050317171436 ], [ -95.528064039031648, 29.661058171125621 ], [ -95.528066039795746, 29.661195171749984 ], [ -95.528069039817311, 29.661527171354393 ], [ -95.528074039320046, 29.661944171461222 ], [ -95.52806603983872, 29.662711172007942 ], [ -95.528068039504944, 29.662837171916884 ], [ -95.528091039027046, 29.66382417190059 ], [ -95.528113039914075, 29.66469717232857 ], [ -95.528109039649166, 29.664977172427275 ], [ -95.528237039689145, 29.664974172540393 ], [ -95.528826039720798, 29.664961172447565 ], [ -95.52912704008078, 29.664972172239654 ], [ -95.52922304027264, 29.664976172250672 ], [ -95.529614040440634, 29.665045171730913 ], [ -95.530493040217536, 29.665213172334465 ], [ -95.531462040923131, 29.665433171906024 ], [ -95.532364041088925, 29.66561517207673 ], [ -95.533309040769197, 29.665815171795202 ], [ -95.534160041342048, 29.666016172114102 ], [ -95.535083041448928, 29.666038171808228 ], [ -95.535956041124393, 29.666024172561741 ], [ -95.536588041451282, 29.666025172295583 ], [ -95.536605041323654, 29.666025172508501 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 234, "Tract": "48201421502", "Area_SqMi": 0.25236200864118619, "total_2009": 754, "total_2010": 777, "total_2011": 789, "total_2012": 705, "total_2013": 721, "total_2014": 435, "total_2015": 584, "total_2016": 717, "total_2017": 772, "total_2018": 644, "total_2019": 646, "total_2020": 990, "age1": 143, "age2": 475, "age3": 329, "earn1": 195, "earn2": 419, "earn3": 333, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 29, "naics_s05": 80, "naics_s06": 2, "naics_s07": 98, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 59, "naics_s12": 38, "naics_s13": 0, "naics_s14": 381, "naics_s15": 24, "naics_s16": 196, "naics_s17": 0, "naics_s18": 2, "naics_s19": 37, "naics_s20": 0, "race1": 682, "race2": 198, "race3": 11, "race4": 44, "race5": 3, "race6": 9, "ethnicity1": 535, "ethnicity2": 412, "edu1": 264, "edu2": 200, "edu3": 188, "edu4": 152, "Shape_Length": 10586.533966268738, "Shape_Area": 7035420.8790217899, "total_2021": 1052, "total_2022": 947 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484807030509145, 29.716429184293276 ], [ -95.484798031044164, 29.715444183646635 ], [ -95.484791031077478, 29.714697183863006 ], [ -95.484790031219333, 29.714564183637787 ], [ -95.484782030332894, 29.713746183772539 ], [ -95.484778030398985, 29.713232183359125 ], [ -95.48476803033715, 29.712801183032255 ], [ -95.484732030115254, 29.711909183293965 ], [ -95.48472403102042, 29.710984183465143 ], [ -95.484718030126643, 29.710100182844705 ], [ -95.484726030253839, 29.710029182625743 ], [ -95.484698030682424, 29.709359182800899 ], [ -95.484690030706759, 29.709181182877121 ], [ -95.483352030264243, 29.709186182529631 ], [ -95.482603030137085, 29.709197182937761 ], [ -95.481649029739614, 29.709197183015643 ], [ -95.481413029319071, 29.709186182702176 ], [ -95.481232029893036, 29.709189182946734 ], [ -95.480516029814595, 29.709196182439896 ], [ -95.478426028985581, 29.709235182646793 ], [ -95.47787502818943, 29.709245183196465 ], [ -95.47763902820121, 29.709249182854947 ], [ -95.476350028736221, 29.709272183478291 ], [ -95.476351028159883, 29.709515183438434 ], [ -95.476346028276893, 29.710113182787939 ], [ -95.476358028906787, 29.711876183129249 ], [ -95.476365028648829, 29.712889183857513 ], [ -95.476361028536488, 29.713011184105753 ], [ -95.476395029028239, 29.714708183997359 ], [ -95.476424028955606, 29.716036184502116 ], [ -95.476421028612791, 29.716532184273348 ], [ -95.477593028919586, 29.716506184067583 ], [ -95.478582028925757, 29.716492184256115 ], [ -95.479351029516579, 29.716502184738459 ], [ -95.4806130300463, 29.716490184263758 ], [ -95.481004029352604, 29.716485184770516 ], [ -95.481600029837551, 29.716476184551308 ], [ -95.48217802991995, 29.716467184611894 ], [ -95.482215030627799, 29.716466184116424 ], [ -95.482665030627786, 29.716459184659858 ], [ -95.48317403055178, 29.716453184054206 ], [ -95.483204030157736, 29.716453184638372 ], [ -95.483778030983004, 29.716444183821867 ], [ -95.484346030817491, 29.716435184608049 ], [ -95.484789030342696, 29.716429183967751 ], [ -95.484807030509145, 29.716429184293276 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 235, "Tract": "48201432101", "Area_SqMi": 0.22137223708863557, "total_2009": 926, "total_2010": 916, "total_2011": 961, "total_2012": 838, "total_2013": 822, "total_2014": 956, "total_2015": 765, "total_2016": 871, "total_2017": 790, "total_2018": 802, "total_2019": 654, "total_2020": 659, "age1": 206, "age2": 275, "age3": 127, "earn1": 133, "earn2": 276, "earn3": 199, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 52, "naics_s06": 20, "naics_s07": 183, "naics_s08": 1, "naics_s09": 0, "naics_s10": 32, "naics_s11": 28, "naics_s12": 2, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 19, "naics_s17": 15, "naics_s18": 180, "naics_s19": 32, "naics_s20": 0, "race1": 430, "race2": 98, "race3": 3, "race4": 62, "race5": 1, "race6": 14, "ethnicity1": 388, "ethnicity2": 220, "edu1": 96, "edu2": 114, "edu3": 116, "edu4": 76, "Shape_Length": 10223.11766153403, "Shape_Area": 6171479.0876607765, "total_2021": 660, "total_2022": 608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.521174041412237, 29.737336186899732 ], [ -95.521127040574783, 29.73662418681872 ], [ -95.521113041193487, 29.736496186805205 ], [ -95.521115041315554, 29.736435187088489 ], [ -95.521113040680092, 29.736226187306631 ], [ -95.521086040566871, 29.736010187358094 ], [ -95.520965040411014, 29.735435186526935 ], [ -95.520709041260474, 29.734632187107454 ], [ -95.520614041018618, 29.734169186825277 ], [ -95.520567040749512, 29.733737186761154 ], [ -95.520544040660056, 29.732978186724395 ], [ -95.52053204011527, 29.732259186490975 ], [ -95.520524041053832, 29.731774186191707 ], [ -95.52049404072811, 29.731139186183942 ], [ -95.520492040214236, 29.730854185704096 ], [ -95.520485040426834, 29.730025185788055 ], [ -95.52048104045474, 29.729522185733238 ], [ -95.52050104057902, 29.729070185288055 ], [ -95.519581040703542, 29.729068186024968 ], [ -95.516865039827991, 29.729286185929887 ], [ -95.515673039673075, 29.729293185658943 ], [ -95.515138039332697, 29.729283186246303 ], [ -95.514066039250892, 29.72930818607292 ], [ -95.514069039302797, 29.729883186423013 ], [ -95.514080038621927, 29.730248186214585 ], [ -95.514088039250908, 29.730631186008452 ], [ -95.514101038809713, 29.731190186201037 ], [ -95.514112039066845, 29.731790186333239 ], [ -95.514130038580319, 29.733052186479849 ], [ -95.514152038649669, 29.733708187028547 ], [ -95.514166038876084, 29.734403187220966 ], [ -95.51418303895673, 29.735219187350733 ], [ -95.514189038823929, 29.735478186889605 ], [ -95.514197038667533, 29.736141187313976 ], [ -95.514195039152341, 29.73631418735668 ], [ -95.514189038891303, 29.736493186933806 ], [ -95.514201039357474, 29.737388187185392 ], [ -95.515719039856251, 29.737370187476991 ], [ -95.516865039478049, 29.737380186983088 ], [ -95.51695703976155, 29.737379187731069 ], [ -95.517115039599972, 29.737377187345146 ], [ -95.518349040559769, 29.737365187351369 ], [ -95.519768040371659, 29.73735218712385 ], [ -95.520478040988166, 29.737343186858507 ], [ -95.521174041412237, 29.737336186899732 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 236, "Tract": "48201451501", "Area_SqMi": 0.29475003320104354, "total_2009": 4076, "total_2010": 3756, "total_2011": 4102, "total_2012": 5176, "total_2013": 5056, "total_2014": 5106, "total_2015": 5499, "total_2016": 5259, "total_2017": 5122, "total_2018": 5087, "total_2019": 5293, "total_2020": 6060, "age1": 688, "age2": 4117, "age3": 1520, "earn1": 406, "earn2": 648, "earn3": 5271, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 13, "naics_s06": 179, "naics_s07": 308, "naics_s08": 22, "naics_s09": 3, "naics_s10": 55, "naics_s11": 59, "naics_s12": 2943, "naics_s13": 1985, "naics_s14": 410, "naics_s15": 0, "naics_s16": 47, "naics_s17": 4, "naics_s18": 235, "naics_s19": 56, "naics_s20": 0, "race1": 4047, "race2": 1081, "race3": 29, "race4": 1070, "race5": 11, "race6": 87, "ethnicity1": 5114, "ethnicity2": 1211, "edu1": 623, "edu2": 1142, "edu3": 1739, "edu4": 2133, "Shape_Length": 13200.221313602169, "Shape_Area": 8217126.4559215261, "total_2021": 5835, "total_2022": 6325 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625387068766813, 29.764006188837364 ], [ -95.625365068659306, 29.761470188819146 ], [ -95.625354069045855, 29.761389188946904 ], [ -95.625356068526074, 29.761335188476043 ], [ -95.625332068718976, 29.759551188005606 ], [ -95.625325068178697, 29.758275188231025 ], [ -95.625307068296451, 29.757218187919076 ], [ -95.62526606802389, 29.754914187597521 ], [ -95.624983067822697, 29.754823187505352 ], [ -95.624580068645784, 29.754695187059745 ], [ -95.623535068060249, 29.754448187632203 ], [ -95.622666067430842, 29.754421187305734 ], [ -95.622561068044874, 29.75441818690248 ], [ -95.622107067743954, 29.754420186941005 ], [ -95.621206066927058, 29.754422187234699 ], [ -95.620469066941325, 29.754425187698853 ], [ -95.619671066457457, 29.754434187437155 ], [ -95.619517066929063, 29.754442186972099 ], [ -95.618448066197402, 29.754463187754066 ], [ -95.618515066443905, 29.755328187468436 ], [ -95.618689066955739, 29.756161188021249 ], [ -95.618721066949476, 29.757040187965547 ], [ -95.618724067233003, 29.758145187793431 ], [ -95.618724066804731, 29.758724188232769 ], [ -95.618732066725769, 29.759087188476034 ], [ -95.618734066550701, 29.759479188844704 ], [ -95.618733066527852, 29.760810188673059 ], [ -95.618785066823904, 29.761073188722065 ], [ -95.618884067023188, 29.761301189044065 ], [ -95.619102066889198, 29.761617188529346 ], [ -95.619198066772583, 29.761718188960785 ], [ -95.619405066875274, 29.76187718866225 ], [ -95.619687067347712, 29.762027189099026 ], [ -95.620085066898042, 29.762170188780161 ], [ -95.620370067897468, 29.762290189405839 ], [ -95.620693068037411, 29.762503189309449 ], [ -95.620870067355241, 29.762648188796842 ], [ -95.62109206732687, 29.762905189132191 ], [ -95.621290067677592, 29.76322418880817 ], [ -95.621396067526504, 29.763535189399235 ], [ -95.621412067352011, 29.764004189563462 ], [ -95.621410067656186, 29.764069189156722 ], [ -95.621382067545625, 29.764311188904372 ], [ -95.621411067851014, 29.765812189362673 ], [ -95.621464068206564, 29.766035189584578 ], [ -95.621606068170152, 29.766300189708886 ], [ -95.622133068053145, 29.766937189994096 ], [ -95.622309068483844, 29.76736419035678 ], [ -95.622314068447963, 29.767682189937833 ], [ -95.622334068337736, 29.768036189806889 ], [ -95.622544068565361, 29.768435190279089 ], [ -95.622786068129173, 29.768622190265273 ], [ -95.622969068003869, 29.768721190079006 ], [ -95.62305006869876, 29.768765190657962 ], [ -95.623134068721782, 29.768811190216041 ], [ -95.623199068622441, 29.768722190211371 ], [ -95.623223068531843, 29.768687189861264 ], [ -95.62449206839328, 29.766852189938273 ], [ -95.624639068973877, 29.766602189903143 ], [ -95.624744068531157, 29.766425189766458 ], [ -95.625202069212477, 29.765298189880184 ], [ -95.625361068774097, 29.76416918927848 ], [ -95.625387068766813, 29.764006188837364 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 237, "Tract": "48201432006", "Area_SqMi": 0.13495404259662022, "total_2009": 1650, "total_2010": 1661, "total_2011": 1787, "total_2012": 1761, "total_2013": 1800, "total_2014": 1671, "total_2015": 1965, "total_2016": 2075, "total_2017": 2011, "total_2018": 1845, "total_2019": 1858, "total_2020": 1220, "age1": 396, "age2": 707, "age3": 374, "earn1": 581, "earn2": 619, "earn3": 277, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 24, "naics_s06": 43, "naics_s07": 107, "naics_s08": 28, "naics_s09": 0, "naics_s10": 33, "naics_s11": 13, "naics_s12": 96, "naics_s13": 0, "naics_s14": 438, "naics_s15": 7, "naics_s16": 286, "naics_s17": 27, "naics_s18": 350, "naics_s19": 23, "naics_s20": 0, "race1": 952, "race2": 344, "race3": 16, "race4": 133, "race5": 2, "race6": 30, "ethnicity1": 1040, "ethnicity2": 437, "edu1": 278, "edu2": 282, "edu3": 318, "edu4": 203, "Shape_Length": 7774.5209337387187, "Shape_Area": 3762287.7314414582, "total_2021": 1178, "total_2022": 1477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.501232035486353, 29.73404818684277 ], [ -95.501240035925406, 29.732830187051977 ], [ -95.501193035541377, 29.731667187176104 ], [ -95.500030035785358, 29.731685187235605 ], [ -95.499839035176379, 29.731688187014417 ], [ -95.499392034902016, 29.73169918664663 ], [ -95.499201035067841, 29.731703186568698 ], [ -95.499074035465895, 29.731706187003752 ], [ -95.498427034489637, 29.731719186590929 ], [ -95.497943034399896, 29.731729187174047 ], [ -95.497817034993844, 29.73173118716425 ], [ -95.497425034880465, 29.731734187313837 ], [ -95.496718034905854, 29.731740186799126 ], [ -95.496515034160169, 29.731741187297079 ], [ -95.496463034181843, 29.731741186698383 ], [ -95.495834034651665, 29.731746186808813 ], [ -95.4954430341174, 29.73175018667947 ], [ -95.495456033862524, 29.732926187046537 ], [ -95.49548203409401, 29.735269187290921 ], [ -95.495490034087268, 29.73592918804869 ], [ -95.495522034390902, 29.73667718783301 ], [ -95.495619034470124, 29.737582188315248 ], [ -95.496345034535807, 29.73756218773341 ], [ -95.496476035170801, 29.737558187692624 ], [ -95.497361034552071, 29.737565188258856 ], [ -95.498319034986437, 29.737544188396164 ], [ -95.499194035171598, 29.73752418827263 ], [ -95.500912035980619, 29.737543188367841 ], [ -95.500912035595334, 29.737315188365748 ], [ -95.500887035351695, 29.737063187650509 ], [ -95.500861036271331, 29.736191187740708 ], [ -95.500941036285866, 29.735492187305034 ], [ -95.501075035869988, 29.734903187649461 ], [ -95.501232035486353, 29.73404818684277 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 238, "Tract": "48201521202", "Area_SqMi": 0.53926734046095703, "total_2009": 1539, "total_2010": 1491, "total_2011": 986, "total_2012": 945, "total_2013": 954, "total_2014": 773, "total_2015": 958, "total_2016": 997, "total_2017": 1012, "total_2018": 961, "total_2019": 880, "total_2020": 957, "age1": 261, "age2": 799, "age3": 313, "earn1": 148, "earn2": 364, "earn3": 861, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 444, "naics_s05": 51, "naics_s06": 3, "naics_s07": 48, "naics_s08": 3, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 177, "naics_s13": 0, "naics_s14": 261, "naics_s15": 2, "naics_s16": 358, "naics_s17": 0, "naics_s18": 10, "naics_s19": 13, "naics_s20": 0, "race1": 1068, "race2": 188, "race3": 17, "race4": 71, "race5": 5, "race6": 24, "ethnicity1": 650, "ethnicity2": 723, "edu1": 288, "edu2": 281, "edu3": 326, "edu4": 217, "Shape_Length": 17224.547516798099, "Shape_Area": 15033850.486774031, "total_2021": 1119, "total_2022": 1373 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.526164045840929, 29.809806202332645 ], [ -95.526179045306577, 29.808484201804809 ], [ -95.526111045624049, 29.808310201455232 ], [ -95.525948045336776, 29.807954201453857 ], [ -95.525694045010241, 29.807641201249638 ], [ -95.525593045426334, 29.807550201237927 ], [ -95.525417044790359, 29.807423201547465 ], [ -95.52513404482572, 29.80725920098514 ], [ -95.524773044781142, 29.807149201553859 ], [ -95.524427044582239, 29.807101201809587 ], [ -95.524423045108719, 29.806732201696757 ], [ -95.524362045208051, 29.806653200877268 ], [ -95.524207044959212, 29.806349201617561 ], [ -95.524086045140947, 29.806309201474551 ], [ -95.523834044352071, 29.806139201391186 ], [ -95.52351804476794, 29.806023201167502 ], [ -95.523178045112743, 29.805875200912105 ], [ -95.523014044862933, 29.805830201493222 ], [ -95.522737044760177, 29.8057322008491 ], [ -95.522586044474565, 29.805693201118292 ], [ -95.522107044215801, 29.805495201418612 ], [ -95.521394044604037, 29.805242200909717 ], [ -95.521281044543485, 29.805236200709285 ], [ -95.521130044030272, 29.805214201032083 ], [ -95.520959044357028, 29.805176201351451 ], [ -95.520827044242949, 29.805132201139255 ], [ -95.520329043947754, 29.804868201400421 ], [ -95.519806043725609, 29.804565201114578 ], [ -95.519252043346853, 29.804263200827922 ], [ -95.518836042872977, 29.803955201332656 ], [ -95.518281043074808, 29.803586200944046 ], [ -95.518098043120233, 29.803449200522614 ], [ -95.517960043463006, 29.803366200882088 ], [ -95.517682043403738, 29.80328420121603 ], [ -95.517210042624072, 29.803261201007974 ], [ -95.516882043052362, 29.803173200714959 ], [ -95.516661042462729, 29.803157201015317 ], [ -95.516586043111033, 29.803135200480266 ], [ -95.516413043098851, 29.803057200984643 ], [ -95.516270043204045, 29.802992200559057 ], [ -95.516226042921033, 29.80295320118638 ], [ -95.51613204288968, 29.802799201030382 ], [ -95.516050042143974, 29.802728200866412 ], [ -95.515861042135356, 29.802640200766959 ], [ -95.515382042290938, 29.802557200822118 ], [ -95.514733042338406, 29.802332200994748 ], [ -95.514507041989688, 29.802243200856601 ], [ -95.514355042333605, 29.80218320042286 ], [ -95.514229042350578, 29.802161201085227 ], [ -95.514128041855216, 29.80215620088633 ], [ -95.513876041658506, 29.80215520075312 ], [ -95.513661042121143, 29.802166200580828 ], [ -95.513617041485659, 29.802172200512814 ], [ -95.513554041847897, 29.802194200827248 ], [ -95.513441041964256, 29.8022492003299 ], [ -95.513406041964075, 29.802259200926482 ], [ -95.513371041900356, 29.802271200819963 ], [ -95.513220041574215, 29.802309201078227 ], [ -95.513163042264623, 29.802309200619707 ], [ -95.513012041868222, 29.802298200907732 ], [ -95.512583042005716, 29.802160201199715 ], [ -95.512520041449037, 29.802133200361723 ], [ -95.512300042028457, 29.801979200377296 ], [ -95.512092041953267, 29.801792200936411 ], [ -95.51183304098889, 29.801533200548878 ], [ -95.511430041071691, 29.801083200531821 ], [ -95.51138704124709, 29.801024200830838 ], [ -95.511262041017829, 29.801103200163446 ], [ -95.511109040879575, 29.801210200237467 ], [ -95.510668041663379, 29.80153920038768 ], [ -95.510321040940113, 29.802057201070806 ], [ -95.510091041488351, 29.80237120056195 ], [ -95.509966040812031, 29.802475201360199 ], [ -95.509831041335588, 29.802565201100169 ], [ -95.509641040485278, 29.8026692008095 ], [ -95.509396041179258, 29.802773200657597 ], [ -95.509206040578732, 29.802825200579814 ], [ -95.508948040397783, 29.8028802006916 ], [ -95.508508040661454, 29.802942200674288 ], [ -95.50833504048957, 29.80294620109175 ], [ -95.507916040709887, 29.802969201301217 ], [ -95.50759304016853, 29.802995201247953 ], [ -95.506528039781642, 29.803081201311134 ], [ -95.506533039937722, 29.803850201381856 ], [ -95.506529040570598, 29.804547201917856 ], [ -95.506525040057809, 29.805264201693689 ], [ -95.506530040290002, 29.805705201778466 ], [ -95.506534040812767, 29.806136201775093 ], [ -95.506535040401474, 29.806273201682789 ], [ -95.506540040479038, 29.806697201640965 ], [ -95.506541040219759, 29.806794201822903 ], [ -95.506543039928872, 29.806928202175538 ], [ -95.506545040319651, 29.807162202249476 ], [ -95.50654704064894, 29.807329202469226 ], [ -95.506550040478871, 29.807528202308575 ], [ -95.506550040592941, 29.807585201993778 ], [ -95.506555040023017, 29.808016202503136 ], [ -95.506564040890979, 29.808669202358015 ], [ -95.506566040719548, 29.808851202256658 ], [ -95.506568040108291, 29.80895020245789 ], [ -95.506576040281431, 29.809845202273735 ], [ -95.506598040541959, 29.811000202930419 ], [ -95.50749304108254, 29.81102320246103 ], [ -95.508337040547374, 29.811059203160976 ], [ -95.509555041617901, 29.811079202491982 ], [ -95.510283041798374, 29.811072202792229 ], [ -95.51096604133177, 29.81105620231412 ], [ -95.511686041984305, 29.811054203061705 ], [ -95.511732042087246, 29.811049202548499 ], [ -95.51252304161514, 29.810979202274034 ], [ -95.513467041882862, 29.810853202711435 ], [ -95.51383904220198, 29.810843202904366 ], [ -95.514030042028494, 29.810838202637331 ], [ -95.51494604232451, 29.810757202215616 ], [ -95.515643042699509, 29.81064920219492 ], [ -95.516664042672033, 29.810441202708891 ], [ -95.518071042951192, 29.810139202501894 ], [ -95.519283043577445, 29.809883202512207 ], [ -95.519466044247309, 29.809862201882595 ], [ -95.51965704435375, 29.809838202569658 ], [ -95.520094044052655, 29.809834201844637 ], [ -95.522800044902496, 29.809825202356734 ], [ -95.524480044721628, 29.809793201647388 ], [ -95.526164045840929, 29.809806202332645 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 239, "Tract": "48201552303", "Area_SqMi": 0.44983093637925836, "total_2009": 1168, "total_2010": 1162, "total_2011": 1300, "total_2012": 1267, "total_2013": 1387, "total_2014": 1397, "total_2015": 1711, "total_2016": 1466, "total_2017": 1762, "total_2018": 1843, "total_2019": 1871, "total_2020": 1793, "age1": 332, "age2": 1036, "age3": 476, "earn1": 358, "earn2": 458, "earn3": 1028, "naics_s01": 0, "naics_s02": 2, "naics_s03": 32, "naics_s04": 244, "naics_s05": 16, "naics_s06": 80, "naics_s07": 40, "naics_s08": 26, "naics_s09": 5, "naics_s10": 96, "naics_s11": 33, "naics_s12": 618, "naics_s13": 0, "naics_s14": 180, "naics_s15": 6, "naics_s16": 300, "naics_s17": 30, "naics_s18": 99, "naics_s19": 37, "naics_s20": 0, "race1": 1280, "race2": 343, "race3": 5, "race4": 185, "race5": 4, "race6": 27, "ethnicity1": 1428, "ethnicity2": 416, "edu1": 261, "edu2": 361, "edu3": 443, "edu4": 447, "Shape_Length": 15636.421671233298, "Shape_Area": 12540516.612911683, "total_2021": 1875, "total_2022": 1844 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.594475069853829, 29.963284230715121 ], [ -95.592893069597153, 29.961949230416611 ], [ -95.592996069009232, 29.961871230139096 ], [ -95.593129069962998, 29.961761230855533 ], [ -95.593268069565354, 29.961653230272194 ], [ -95.593898069280513, 29.961167229987616 ], [ -95.594261070283139, 29.960887230178137 ], [ -95.593823069807826, 29.96046323019015 ], [ -95.593644069751647, 29.960296230558161 ], [ -95.593512069488753, 29.960189230157191 ], [ -95.593240069604448, 29.9599902304731 ], [ -95.593165069662589, 29.959935230020989 ], [ -95.592918069418829, 29.959755230108161 ], [ -95.592592069626306, 29.959510229956173 ], [ -95.592545068805265, 29.959472229950261 ], [ -95.592454069533204, 29.959384229841913 ], [ -95.592423069051151, 29.959344230528266 ], [ -95.592347069655347, 29.95922122979718 ], [ -95.592327068949459, 29.959177229685398 ], [ -95.592296069667896, 29.959089230474223 ], [ -95.592287069436651, 29.958977230045061 ], [ -95.59227806886048, 29.958931230136734 ], [ -95.59227806907306, 29.958862230403298 ], [ -95.592278069163754, 29.958814229605284 ], [ -95.592288068757512, 29.958741229888517 ], [ -95.592282069248, 29.958687230042962 ], [ -95.592282069123058, 29.958626229677115 ], [ -95.592295069038684, 29.958561229669879 ], [ -95.592288069218554, 29.958497230251904 ], [ -95.592278069007094, 29.958381229547875 ], [ -95.592275068823255, 29.958352229990467 ], [ -95.592274069245789, 29.958128230023384 ], [ -95.592284069231852, 29.958057229470342 ], [ -95.592272068688047, 29.957985230096629 ], [ -95.592266068982966, 29.957693229825583 ], [ -95.592274069199647, 29.957623229991185 ], [ -95.592272068995712, 29.957298229819429 ], [ -95.59227606945386, 29.957214229946899 ], [ -95.592258069451475, 29.957133229587097 ], [ -95.592255068586439, 29.956929229998206 ], [ -95.592254068815677, 29.956873229676454 ], [ -95.592261069193867, 29.956805229792487 ], [ -95.592253069554076, 29.956730229828448 ], [ -95.592252069517954, 29.956651229565473 ], [ -95.592257069164731, 29.95658422947707 ], [ -95.592257068563327, 29.956545229852868 ], [ -95.592250069508694, 29.95650322939731 ], [ -95.592250068704644, 29.956434229580427 ], [ -95.592256069304014, 29.956385229371584 ], [ -95.592257069523441, 29.956153229173804 ], [ -95.592249069123028, 29.956050229054686 ], [ -95.59224006872553, 29.955769229545147 ], [ -95.592248069076518, 29.9557222296113 ], [ -95.592248069140183, 29.955391229230482 ], [ -95.592240068944577, 29.955250229497924 ], [ -95.592247069366849, 29.955202229412784 ], [ -95.592248069344009, 29.954889228840674 ], [ -95.592255068773426, 29.954793228760934 ], [ -95.592232068443721, 29.954609229378537 ], [ -95.592225069141264, 29.954558229454072 ], [ -95.592230069008153, 29.954490229289728 ], [ -95.59222206935037, 29.953925229140115 ], [ -95.592216069343735, 29.953809228681212 ], [ -95.592214069270867, 29.953791228692719 ], [ -95.592221068548554, 29.953726228827914 ], [ -95.592219069158119, 29.953474229158477 ], [ -95.592209069359953, 29.953413228496032 ], [ -95.592214069116125, 29.953352228565667 ], [ -95.592207068784376, 29.953165228918319 ], [ -95.592198068890553, 29.953105228392623 ], [ -95.592201068570162, 29.953043229099645 ], [ -95.592205069195899, 29.952999228809073 ], [ -95.59219806867668, 29.95294922885877 ], [ -95.592201068555127, 29.95290022915292 ], [ -95.592183069127699, 29.95249322903398 ], [ -95.59155306865695, 29.952490228356922 ], [ -95.59102306830377, 29.952491228683947 ], [ -95.590102068771273, 29.952501229220157 ], [ -95.589668068683935, 29.95250322906573 ], [ -95.589359068130193, 29.95250522862451 ], [ -95.588959067897576, 29.952512229023096 ], [ -95.588350067392028, 29.952521229237714 ], [ -95.587378068057333, 29.952523228983885 ], [ -95.587107067215825, 29.952520228706344 ], [ -95.586600067515405, 29.952528228815371 ], [ -95.586122067113735, 29.952537228835666 ], [ -95.586008067131658, 29.95254022924146 ], [ -95.585776067217409, 29.952544229054155 ], [ -95.585456066922887, 29.952550228894431 ], [ -95.585344067032167, 29.952548228863712 ], [ -95.584964066970329, 29.952556228763683 ], [ -95.584875066866289, 29.95255422939896 ], [ -95.584881067212336, 29.952779229338095 ], [ -95.584890067182968, 29.953012229154801 ], [ -95.584899067099286, 29.953248229067633 ], [ -95.584905066837123, 29.953428228977977 ], [ -95.584911067060958, 29.953626229592626 ], [ -95.584919067327007, 29.953905229169042 ], [ -95.584925067539672, 29.954117229391578 ], [ -95.584941067509504, 29.954779229721247 ], [ -95.58495206689868, 29.95537722930835 ], [ -95.584953067001749, 29.955449229536725 ], [ -95.584960067386035, 29.955667230040142 ], [ -95.584967067474921, 29.955828229237191 ], [ -95.584992066863848, 29.956219229302487 ], [ -95.584997066965443, 29.956484229396224 ], [ -95.584998067693448, 29.956723229647231 ], [ -95.584998067681482, 29.956828230026353 ], [ -95.584999066863034, 29.95703823001319 ], [ -95.584996066976672, 29.957362230059061 ], [ -95.585010066909177, 29.957597230374073 ], [ -95.585015067029715, 29.957666230180223 ], [ -95.585041067580619, 29.959265230148805 ], [ -95.585066067226435, 29.96012623082396 ], [ -95.585066067385696, 29.960538230631773 ], [ -95.585060067459537, 29.961090230916366 ], [ -95.585060067547019, 29.961170231130396 ], [ -95.585062067461095, 29.961263230328804 ], [ -95.58507706782612, 29.96179023115333 ], [ -95.585087067758181, 29.962088230914553 ], [ -95.585092067826679, 29.962216230929798 ], [ -95.585102067354754, 29.962543230775555 ], [ -95.585130067842158, 29.963291231417919 ], [ -95.585148067056238, 29.963900231606015 ], [ -95.585205067510245, 29.964706231314988 ], [ -95.585241067975915, 29.965667231932539 ], [ -95.585247067789865, 29.965931231248142 ], [ -95.585248068185649, 29.966231231913039 ], [ -95.58522806806107, 29.966629231691911 ], [ -95.585204067609581, 29.966838231481013 ], [ -95.585377067864684, 29.966821232064046 ], [ -95.585727068310362, 29.966793231584575 ], [ -95.585802067754614, 29.966782231949008 ], [ -95.585888068306787, 29.966783231694468 ], [ -95.585973067693388, 29.966792231476791 ], [ -95.586019068178118, 29.96679323223314 ], [ -95.58616606823135, 29.966805231531371 ], [ -95.586271068117028, 29.966807232120388 ], [ -95.5863230683875, 29.966811231968695 ], [ -95.586466067888438, 29.966824232160821 ], [ -95.586578067937225, 29.966826231752947 ], [ -95.586920068307194, 29.966854231598941 ], [ -95.587458067885535, 29.96687923222197 ], [ -95.587546068062608, 29.96688923148259 ], [ -95.587638068451156, 29.966893231951946 ], [ -95.588760068919925, 29.966935232018713 ], [ -95.589481068426437, 29.966941231692999 ], [ -95.589514068758618, 29.966943231435401 ], [ -95.589598069322065, 29.966958231722945 ], [ -95.590193069176166, 29.967011232168673 ], [ -95.59031106948035, 29.967025231579136 ], [ -95.590304068759806, 29.966905231247456 ], [ -95.590850068883569, 29.966400231450042 ], [ -95.590920069288956, 29.966339231268311 ], [ -95.591063069282441, 29.966215231958842 ], [ -95.59178806892119, 29.965589231365488 ], [ -95.592074069940438, 29.965343230885644 ], [ -95.592360069089338, 29.965095231502183 ], [ -95.594475069853829, 29.963284230715121 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 240, "Tract": "48201550306", "Area_SqMi": 0.83072036648326286, "total_2009": 48, "total_2010": 41, "total_2011": 41, "total_2012": 364, "total_2013": 345, "total_2014": 42, "total_2015": 36, "total_2016": 81, "total_2017": 75, "total_2018": 71, "total_2019": 279, "total_2020": 56, "age1": 18, "age2": 36, "age3": 5, "earn1": 20, "earn2": 31, "earn3": 8, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 22, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 9, "naics_s12": 0, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 24, "race2": 24, "race3": 1, "race4": 9, "race5": 0, "race6": 1, "ethnicity1": 46, "ethnicity2": 13, "edu1": 9, "edu2": 9, "edu3": 13, "edu4": 10, "Shape_Length": 19648.421137376256, "Shape_Area": 23159062.025436532, "total_2021": 62, "total_2022": 59 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.451954034777799, 29.993660242184525 ], [ -95.450952034654918, 29.992816241720057 ], [ -95.450525034628214, 29.992453242137042 ], [ -95.449885034212201, 29.991911241603258 ], [ -95.449334034205648, 29.991444241202736 ], [ -95.449078033835903, 29.99123024141991 ], [ -95.446613032991976, 29.989150241335942 ], [ -95.446387033706941, 29.988960241418848 ], [ -95.44626203327411, 29.988851241508165 ], [ -95.445973032997415, 29.988611241395681 ], [ -95.445212032752849, 29.987955241425158 ], [ -95.444421032529092, 29.987265240962859 ], [ -95.443232031848993, 29.986228241067376 ], [ -95.441392031930107, 29.984622240113818 ], [ -95.441131031214397, 29.984401240658187 ], [ -95.44016403121276, 29.983550239818477 ], [ -95.440055031637101, 29.983461240216094 ], [ -95.439661031647489, 29.983116240275439 ], [ -95.438698031299381, 29.98227124041577 ], [ -95.437538030867515, 29.981262239480756 ], [ -95.43727403014887, 29.981038239590816 ], [ -95.437094030129643, 29.98125824025534 ], [ -95.435527029787451, 29.983065240658249 ], [ -95.435211029631489, 29.983437240682846 ], [ -95.435023029569535, 29.983645240282176 ], [ -95.434239029488012, 29.984553240914465 ], [ -95.433435030110175, 29.985474241151064 ], [ -95.433004029828723, 29.985969241024996 ], [ -95.43285602998381, 29.9861482411557 ], [ -95.432748029866431, 29.986262241401455 ], [ -95.432671029724276, 29.986350240985278 ], [ -95.432426029536444, 29.986637240995172 ], [ -95.432226029852913, 29.986882240888153 ], [ -95.432099029958863, 29.987058240960312 ], [ -95.432024029668582, 29.987167241452152 ], [ -95.431871029351754, 29.987408241768009 ], [ -95.431773028951341, 29.987585241224377 ], [ -95.431611029544115, 29.987923241463466 ], [ -95.431449029003005, 29.988288241451098 ], [ -95.431394028899604, 29.988440241512613 ], [ -95.431320029109244, 29.988690241424472 ], [ -95.431249029132118, 29.988976241238216 ], [ -95.431223028894678, 29.989120241341968 ], [ -95.431197029138161, 29.98926724164621 ], [ -95.431173029352294, 29.989458242025847 ], [ -95.431152029366942, 29.989811241613527 ], [ -95.431147029100103, 29.990047241614842 ], [ -95.431149029492786, 29.990115241475472 ], [ -95.431157029691633, 29.99030224160072 ], [ -95.431185029896128, 29.99057624181351 ], [ -95.431228029346386, 29.990859242184538 ], [ -95.431280029302187, 29.991104241793551 ], [ -95.431333029682321, 29.991303242368861 ], [ -95.431346028999499, 29.991352242563629 ], [ -95.43139702900956, 29.991510242324505 ], [ -95.431497029239821, 29.991782242617134 ], [ -95.431572029508075, 29.991967242657395 ], [ -95.431698029867363, 29.992229242380564 ], [ -95.431798029324511, 29.992414242101432 ], [ -95.431887029268225, 29.992570242785376 ], [ -95.432014029593773, 29.992773242305333 ], [ -95.432065029720505, 29.99283824200652 ], [ -95.432124029805252, 29.992899242732783 ], [ -95.432170029462256, 29.992987242815893 ], [ -95.432358029431512, 29.993225242609846 ], [ -95.432503030367087, 29.993388242376795 ], [ -95.432737030377254, 29.993638242933617 ], [ -95.432861030275831, 29.993762242496615 ], [ -95.433085029614219, 29.993970243055848 ], [ -95.433174029836849, 29.994031242975232 ], [ -95.433264030577718, 29.994101242897052 ], [ -95.433353030206703, 29.994178242790763 ], [ -95.433390030363142, 29.994203243080076 ], [ -95.433636030382431, 29.994374242320308 ], [ -95.433730029787512, 29.994428242361824 ], [ -95.433916030162777, 29.994543242874602 ], [ -95.434243030706483, 29.994743242462995 ], [ -95.434619030406196, 29.994940242881132 ], [ -95.434954030985139, 29.995134243221852 ], [ -95.435567030500223, 29.995520242992296 ], [ -95.435906031191919, 29.995728243149838 ], [ -95.436084031230479, 29.995843243006252 ], [ -95.436490031356598, 29.996091242827077 ], [ -95.436995031681221, 29.996412242837074 ], [ -95.437100031321009, 29.996487242853522 ], [ -95.437519031790032, 29.996812243283973 ], [ -95.437713031029006, 29.996992243166616 ], [ -95.437901031405616, 29.997181243059341 ], [ -95.438076030980866, 29.997377243114361 ], [ -95.438159031698774, 29.997477243454377 ], [ -95.438316031412668, 29.997679242764434 ], [ -95.438696031598965, 29.99820324336849 ], [ -95.439021031639101, 29.998630243604808 ], [ -95.439327031796111, 29.99905224349979 ], [ -95.439493032103258, 29.999282243196777 ], [ -95.439903032441038, 29.999837243479 ], [ -95.440561032195944, 29.999637243452447 ], [ -95.440867032611536, 29.999498243803853 ], [ -95.441493032279141, 29.999214243811206 ], [ -95.441806032112467, 29.999073243256298 ], [ -95.443130032376175, 29.998406243484965 ], [ -95.44366203245707, 29.998138242826094 ], [ -95.444481033038613, 29.997780243215093 ], [ -95.444736033255339, 29.997627243390635 ], [ -95.444904032855362, 29.997534242880945 ], [ -95.444992032756105, 29.99748524311979 ], [ -95.445347033812567, 29.997325242951597 ], [ -95.445620033118388, 29.997195242626731 ], [ -95.445825033801853, 29.99704124260613 ], [ -95.446019033720503, 29.996802243099378 ], [ -95.446653033243933, 29.996058242337373 ], [ -95.447303034078345, 29.995310242835913 ], [ -95.447442033409885, 29.995200241961982 ], [ -95.447691034241856, 29.99512124217328 ], [ -95.449296034464652, 29.994829241996126 ], [ -95.449887034689397, 29.994730242665646 ], [ -95.450504034276108, 29.994653242275145 ], [ -95.450612035001569, 29.994645241885078 ], [ -95.450711034897537, 29.994584242322606 ], [ -95.451954034777799, 29.993660242184525 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 241, "Tract": "48201555504", "Area_SqMi": 1.1962693385121828, "total_2009": 137, "total_2010": 94, "total_2011": 253, "total_2012": 304, "total_2013": 421, "total_2014": 600, "total_2015": 604, "total_2016": 510, "total_2017": 578, "total_2018": 679, "total_2019": 827, "total_2020": 561, "age1": 127, "age2": 264, "age3": 99, "earn1": 78, "earn2": 136, "earn3": 276, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 47, "naics_s05": 1, "naics_s06": 0, "naics_s07": 211, "naics_s08": 11, "naics_s09": 0, "naics_s10": 3, "naics_s11": 12, "naics_s12": 90, "naics_s13": 0, "naics_s14": 21, "naics_s15": 0, "naics_s16": 46, "naics_s17": 0, "naics_s18": 10, "naics_s19": 36, "naics_s20": 0, "race1": 391, "race2": 52, "race3": 1, "race4": 39, "race5": 1, "race6": 6, "ethnicity1": 369, "ethnicity2": 121, "edu1": 64, "edu2": 98, "edu3": 117, "edu4": 84, "Shape_Length": 34466.149169208438, "Shape_Area": 33349941.722284418, "total_2021": 606, "total_2022": 490 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.642341084962098, 30.022183241487546 ], [ -95.642344084859403, 30.02209724147367 ], [ -95.642338085175155, 30.021378240643411 ], [ -95.642018084888889, 30.02117124117925 ], [ -95.641305084786168, 30.020605240526233 ], [ -95.641153084156556, 30.020473240960314 ], [ -95.640939084121541, 30.020308240730806 ], [ -95.640831084125935, 30.020253240799654 ], [ -95.639997084574162, 30.019950240460915 ], [ -95.639802083991981, 30.019917240840645 ], [ -95.639701084286415, 30.01991224097209 ], [ -95.639536084419035, 30.01992324049613 ], [ -95.639435084043058, 30.019966240523758 ], [ -95.639353083753946, 30.019977240926917 ], [ -95.639063084435449, 30.019966240379169 ], [ -95.638873084046494, 30.019994240991426 ], [ -95.638715083583975, 30.019999240412371 ], [ -95.637098083664, 30.019982240483625 ], [ -95.636593083323248, 30.019998241120135 ], [ -95.635942083513442, 30.019960241187349 ], [ -95.635816083229727, 30.019965240604627 ], [ -95.635361082928227, 30.019943241163769 ], [ -95.634900082377811, 30.019915240594226 ], [ -95.634755082729583, 30.019899240513116 ], [ -95.634571082553677, 30.019849240677562 ], [ -95.63433108240288, 30.019734240952104 ], [ -95.634092082870282, 30.019651240697854 ], [ -95.633946082985645, 30.019547240507507 ], [ -95.633567082832101, 30.019332241105346 ], [ -95.633498082852128, 30.019222240989794 ], [ -95.633391082094406, 30.019195241128717 ], [ -95.633353082857496, 30.019107240748909 ], [ -95.633214081984946, 30.019068241172345 ], [ -95.632986081895908, 30.018958240923954 ], [ -95.632399082087844, 30.018870240628253 ], [ -95.631805082344229, 30.018815241108022 ], [ -95.631742081887666, 30.018826241165829 ], [ -95.631659081898846, 30.018851240760306 ], [ -95.631565081540558, 30.018880240701588 ], [ -95.631527082359412, 30.018913241224773 ], [ -95.631388081922893, 30.018985241167883 ], [ -95.631180081453778, 30.01896824058694 ], [ -95.630896081507856, 30.018869240553858 ], [ -95.630706081987327, 30.018732240580356 ], [ -95.630515082134551, 30.018580240426211 ], [ -95.628948081168744, 30.017764240581567 ], [ -95.627578081317765, 30.017058240582092 ], [ -95.626699080828431, 30.01665824027658 ], [ -95.626299080988986, 30.016471240258614 ], [ -95.625880080031905, 30.016365240706456 ], [ -95.625872080086523, 30.016695240633247 ], [ -95.62588107997891, 30.016857240329415 ], [ -95.625894080157565, 30.017751240624168 ], [ -95.625892080088732, 30.0178512406797 ], [ -95.625887079981453, 30.018246241271033 ], [ -95.625779080138514, 30.018889241414499 ], [ -95.6258100804734, 30.019845241329993 ], [ -95.625778081046903, 30.020686241139121 ], [ -95.62562608043271, 30.021060241612187 ], [ -95.625481080898396, 30.021599241697412 ], [ -95.625524081026143, 30.022550241612212 ], [ -95.625505080660133, 30.023177242103188 ], [ -95.625277080996455, 30.023842242444633 ], [ -95.625008080172364, 30.024332242353605 ], [ -95.624970080254187, 30.024386242037011 ], [ -95.624408080138267, 30.02499124204196 ], [ -95.623612080214286, 30.025404242522018 ], [ -95.622665079762967, 30.02557524240526 ], [ -95.620959079870147, 30.025621242359929 ], [ -95.620001079751574, 30.025646242284814 ], [ -95.619311079188975, 30.025665242289207 ], [ -95.618141079125536, 30.025696243099095 ], [ -95.617918078972679, 30.025702242928354 ], [ -95.61715107862517, 30.025723243125636 ], [ -95.617129078183027, 30.025718242438828 ], [ -95.61710107895243, 30.025725242408551 ], [ -95.612602077770987, 30.025817243062022 ], [ -95.61056207647016, 30.025859242709114 ], [ -95.609911076364469, 30.025872243290532 ], [ -95.609718077181867, 30.026006242859992 ], [ -95.608251076072463, 30.027022243175548 ], [ -95.608256076278252, 30.027044243206177 ], [ -95.608325076486054, 30.027274242977018 ], [ -95.608417076919295, 30.027526243083837 ], [ -95.608528076525715, 30.027791243497109 ], [ -95.608653076794994, 30.02804324326943 ], [ -95.608805076964714, 30.028305243889122 ], [ -95.608838077033553, 30.028363243219726 ], [ -95.608664076824709, 30.028495243356986 ], [ -95.60859907606023, 30.028549243921589 ], [ -95.608120076375783, 30.028896243992111 ], [ -95.60802707592903, 30.028953243272579 ], [ -95.607700076655973, 30.02919724336553 ], [ -95.607603075823462, 30.029256243362894 ], [ -95.607521076336312, 30.029321243925359 ], [ -95.607453076178217, 30.029386244107677 ], [ -95.607359075873617, 30.029444243871929 ], [ -95.607050076697817, 30.029674243737169 ], [ -95.606996076105204, 30.029722244193977 ], [ -95.606948075879401, 30.029757243534728 ], [ -95.606881075685507, 30.029798244152964 ], [ -95.60683807606803, 30.029838244315474 ], [ -95.606776075707955, 30.029889243953786 ], [ -95.606721075899046, 30.02992524425806 ], [ -95.606619075924783, 30.03000624381923 ], [ -95.606348076407954, 30.030193243882383 ], [ -95.606065075767006, 30.030388244489831 ], [ -95.605870075778185, 30.030532244145967 ], [ -95.605750076164952, 30.030632244300516 ], [ -95.605645075486663, 30.030734244197038 ], [ -95.605598076065675, 30.030788244109015 ], [ -95.605547076143466, 30.030835243979421 ], [ -95.60546707584048, 30.030930244384415 ], [ -95.605329075782038, 30.031120244009202 ], [ -95.605239075520615, 30.031247244566497 ], [ -95.605192076034001, 30.03129324428259 ], [ -95.605148075549806, 30.031366244120527 ], [ -95.605040076084322, 30.031513243899841 ], [ -95.604908076234295, 30.031661244593163 ], [ -95.604887075587342, 30.031681244794751 ], [ -95.604811076107254, 30.031751244651449 ], [ -95.604754076065788, 30.031797244236767 ], [ -95.604700075611717, 30.031849244722434 ], [ -95.604632075719593, 30.03189924431587 ], [ -95.604552075581438, 30.031950244797855 ], [ -95.604326075343863, 30.032121244285044 ], [ -95.603837075696802, 30.03246824477727 ], [ -95.603566075588702, 30.032704244179605 ], [ -95.603498075802435, 30.032758245046413 ], [ -95.603351075554883, 30.032852244686516 ], [ -95.603197075020361, 30.03293324492121 ], [ -95.603118075010414, 30.032970244488222 ], [ -95.603016075332462, 30.033014244747942 ], [ -95.602918075252759, 30.033058244963001 ], [ -95.602825075704274, 30.033097245143409 ], [ -95.602797074837738, 30.033107244876781 ], [ -95.602693075419396, 30.033144244833796 ], [ -95.602534075023584, 30.033201245010829 ], [ -95.602517075107201, 30.033207244828411 ], [ -95.60250407508569, 30.03321224468808 ], [ -95.602455075341098, 30.033229245046702 ], [ -95.602411074806824, 30.033243244515511 ], [ -95.602241074758453, 30.033381244747588 ], [ -95.602210075019386, 30.033406244443842 ], [ -95.602553075280539, 30.03400724510254 ], [ -95.602733075412416, 30.034320244739348 ], [ -95.602836074841193, 30.034511245228018 ], [ -95.603394075647159, 30.035550245172885 ], [ -95.60379107550618, 30.036289245578963 ], [ -95.603894075614008, 30.03648124504123 ], [ -95.603933076031097, 30.036535245408626 ], [ -95.604056075521086, 30.03648724533058 ], [ -95.604207075693765, 30.036428245103536 ], [ -95.604266075913159, 30.036407244983828 ], [ -95.604402075871576, 30.036357245491672 ], [ -95.604473076010322, 30.036333245246567 ], [ -95.604552076112455, 30.036307244932726 ], [ -95.604708076259357, 30.036255245076735 ], [ -95.604749075568108, 30.036231245680199 ], [ -95.605218076277993, 30.035985245359136 ], [ -95.605605076149956, 30.035779245389197 ], [ -95.60602607625475, 30.035582244829833 ], [ -95.606278076518592, 30.035412244897095 ], [ -95.60672007584408, 30.035016245399788 ], [ -95.607202076913595, 30.034584245276456 ], [ -95.607513076661519, 30.034283244714757 ], [ -95.607864076137162, 30.034035244450514 ], [ -95.608434076447182, 30.03366824425073 ], [ -95.608460076721499, 30.033653244279733 ], [ -95.608617076637174, 30.033559244254754 ], [ -95.608981077079761, 30.033392244761174 ], [ -95.609031076628227, 30.033368244682492 ], [ -95.609479076462037, 30.03320824451022 ], [ -95.609636077008361, 30.033151244421607 ], [ -95.610001076984545, 30.03302624417881 ], [ -95.610392077181203, 30.032965244809279 ], [ -95.611189077078549, 30.032868244734136 ], [ -95.611308077446751, 30.032826244726063 ], [ -95.611432077843048, 30.03281524449331 ], [ -95.61159207708198, 30.03279724394633 ], [ -95.611649077294018, 30.032790244431641 ], [ -95.611853077387551, 30.032768243878888 ], [ -95.611951077919571, 30.03275524462029 ], [ -95.612286078103651, 30.032735244042964 ], [ -95.612742077292381, 30.0326752439316 ], [ -95.613176078329772, 30.032651243935728 ], [ -95.613338077841519, 30.03264324394808 ], [ -95.613676078117095, 30.032622244231263 ], [ -95.614176078506119, 30.032594244497879 ], [ -95.614711078780516, 30.032565243813831 ], [ -95.615066078062313, 30.032543243783497 ], [ -95.615250078691119, 30.032531244264757 ], [ -95.615529078919209, 30.032525243841345 ], [ -95.615765078065564, 30.032527243800921 ], [ -95.616295079103949, 30.032523244584155 ], [ -95.616468078967159, 30.032518244386662 ], [ -95.616809079125346, 30.032507243797038 ], [ -95.617342079254001, 30.032492243728122 ], [ -95.617886079216873, 30.032477244046071 ], [ -95.617982079312938, 30.032473244244098 ], [ -95.618062078684119, 30.032470244189565 ], [ -95.618246079496032, 30.032463244211286 ], [ -95.618303078757961, 30.032461243686452 ], [ -95.618427079451351, 30.032457244277932 ], [ -95.61860507887846, 30.03244524438902 ], [ -95.618950078909492, 30.032413244208264 ], [ -95.619296079315831, 30.032363243897006 ], [ -95.619465079110881, 30.032327243819751 ], [ -95.619802079366366, 30.032257244075264 ], [ -95.619972079081592, 30.032209244121066 ], [ -95.620000079995833, 30.032199243564033 ], [ -95.620459080021206, 30.032041243924532 ], [ -95.620919079434941, 30.031843243404165 ], [ -95.621069080368216, 30.031768243608298 ], [ -95.621360079553327, 30.031606243662939 ], [ -95.621501079822693, 30.031521243588667 ], [ -95.621892079601153, 30.031242243879184 ], [ -95.6221410805028, 30.03105624321924 ], [ -95.62238707966516, 30.030877243387248 ], [ -95.622511079838688, 30.03078824363882 ], [ -95.622595080695376, 30.030733243894428 ], [ -95.622907080599219, 30.030530243155223 ], [ -95.623052080693299, 30.030443243637496 ], [ -95.623334080012583, 30.030282243477082 ], [ -95.62362208084528, 30.030121243723343 ], [ -95.623767080814162, 30.030041243466108 ], [ -95.624331080453786, 30.02974724333826 ], [ -95.624860080948096, 30.029521242800527 ], [ -95.624891081170759, 30.029506243467093 ], [ -95.625315081029171, 30.029365242874231 ], [ -95.625468081360424, 30.029318243275885 ], [ -95.625766081000378, 30.029244243051217 ], [ -95.626080081440108, 30.029174243238497 ], [ -95.626236081270207, 30.029145243226488 ], [ -95.626707081152162, 30.029067243453301 ], [ -95.627183081728504, 30.029016243078559 ], [ -95.627340080821114, 30.029013243468253 ], [ -95.627649081264892, 30.029021242840876 ], [ -95.627956081614144, 30.029044242780326 ], [ -95.628121081567031, 30.029058242715301 ], [ -95.628607081315323, 30.029132242967989 ], [ -95.629063081669884, 30.029232243389593 ], [ -95.629214081641635, 30.02926324275608 ], [ -95.629508081593542, 30.029323243364914 ], [ -95.629800082406717, 30.029387242822523 ], [ -95.629949082060463, 30.029419242623437 ], [ -95.630381081935951, 30.02952524304807 ], [ -95.630827082059227, 30.029589242883045 ], [ -95.630981082394271, 30.029603243247426 ], [ -95.631297082843432, 30.029612242724717 ], [ -95.631757082465754, 30.029605242900185 ], [ -95.632228082251245, 30.02955724281556 ], [ -95.632371082182047, 30.029539242926713 ], [ -95.632516082700803, 30.029508243378515 ], [ -95.632657082884904, 30.02948024270421 ], [ -95.633064082805816, 30.029386243192821 ], [ -95.633183083047527, 30.02935624304909 ], [ -95.633267082892175, 30.029332243087936 ], [ -95.633348082776465, 30.02930524281761 ], [ -95.633428083271767, 30.029273242728014 ], [ -95.633497083079163, 30.029242243149024 ], [ -95.633550082478237, 30.029208242477971 ], [ -95.633577083151664, 30.029176242946569 ], [ -95.633634082531358, 30.029168243192082 ], [ -95.633686082662692, 30.029151242711769 ], [ -95.633739083255662, 30.02913024290595 ], [ -95.633765083150678, 30.02912024264338 ], [ -95.633883082949765, 30.029060242987093 ], [ -95.634735083117434, 30.028774243100763 ], [ -95.635312083473707, 30.028639242691902 ], [ -95.636063083838849, 30.028492242354627 ], [ -95.636272083950772, 30.02846424268682 ], [ -95.637007083859942, 30.028396242704495 ], [ -95.63845308443203, 30.028398242194928 ], [ -95.640763085137152, 30.028403242835182 ], [ -95.640932084425742, 30.028403242191445 ], [ -95.64091908512718, 30.027236242225353 ], [ -95.640911084191927, 30.026248242122143 ], [ -95.640909085054801, 30.025844241868619 ], [ -95.640892084235333, 30.024721241857861 ], [ -95.640885084485134, 30.024200241758759 ], [ -95.640875084640953, 30.023189241100837 ], [ -95.640870084174097, 30.022677241062226 ], [ -95.640874084425732, 30.022533241645757 ], [ -95.640883084450408, 30.022477240965653 ], [ -95.640911084930551, 30.022433241502817 ], [ -95.640945084439224, 30.02240224130686 ], [ -95.640963084439193, 30.022392240947827 ], [ -95.641006084439624, 30.022374241039653 ], [ -95.641079084879209, 30.022362241132694 ], [ -95.641157084691685, 30.022358241626726 ], [ -95.641658085144456, 30.022361240946342 ], [ -95.642116084600374, 30.022359241333351 ], [ -95.642188085159589, 30.022353241114001 ], [ -95.642249084735099, 30.022336241192075 ], [ -95.642297084475956, 30.022301241263403 ], [ -95.642317084809349, 30.022268241058757 ], [ -95.642328084663319, 30.022251241569347 ], [ -95.642341084962098, 30.022183241487546 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 242, "Tract": "48201543009", "Area_SqMi": 0.4031658965776474, "total_2009": 18, "total_2010": 21, "total_2011": null, "total_2012": 38, "total_2013": 39, "total_2014": 48, "total_2015": 33, "total_2016": 44, "total_2017": 72, "total_2018": 66, "total_2019": 60, "total_2020": 77, "age1": 25, "age2": 54, "age3": 25, "earn1": 27, "earn2": 52, "earn3": 25, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 9, "naics_s06": 1, "naics_s07": 52, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 12, "naics_s15": 7, "naics_s16": 12, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 44, "race2": 31, "race3": 0, "race4": 26, "race5": 0, "race6": 3, "ethnicity1": 79, "ethnicity2": 25, "edu1": 25, "edu2": 16, "edu3": 26, "edu4": 12, "Shape_Length": 15586.278410572471, "Shape_Area": 11239575.171256602, "total_2021": 86, "total_2022": 104 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.704531095249848, 29.893940212856151 ], [ -95.704515094787638, 29.893696212521249 ], [ -95.704468094877726, 29.893472213171325 ], [ -95.704349095133466, 29.893077212948729 ], [ -95.704246094985834, 29.892727212458855 ], [ -95.703980095040052, 29.892103212523885 ], [ -95.703804095084578, 29.891566212354046 ], [ -95.703626094762981, 29.89094921256892 ], [ -95.703543094509982, 29.890425212485859 ], [ -95.703494093924249, 29.889711212203455 ], [ -95.703484094245795, 29.889578212399307 ], [ -95.703480094116202, 29.889515212344481 ], [ -95.703479094528319, 29.889398212117943 ], [ -95.703470094701942, 29.887656211455511 ], [ -95.70346309395336, 29.886798211555696 ], [ -95.703429094146372, 29.88492221087694 ], [ -95.703439093718728, 29.883949210753588 ], [ -95.703332094476508, 29.882966210819099 ], [ -95.703416094584057, 29.882511210787673 ], [ -95.70343409436633, 29.882280210292627 ], [ -95.703460093711897, 29.881953210865532 ], [ -95.703595094076476, 29.881528210153551 ], [ -95.703644094484986, 29.881091210644975 ], [ -95.703657094134854, 29.880565209854282 ], [ -95.703612094270355, 29.879825209909896 ], [ -95.701323093772302, 29.879839209960124 ], [ -95.701175092890821, 29.879840210165508 ], [ -95.700100093492395, 29.879846210060357 ], [ -95.697340092584412, 29.879864210680491 ], [ -95.69733109207651, 29.88000720993557 ], [ -95.697348092428612, 29.881063210119862 ], [ -95.697349092365684, 29.881122210644257 ], [ -95.697355092436609, 29.881539210579497 ], [ -95.697364092589041, 29.881819210908645 ], [ -95.697431092758663, 29.886398211394496 ], [ -95.696937092337478, 29.886398211237143 ], [ -95.696940092323544, 29.886606211772055 ], [ -95.697072092524195, 29.894620213179614 ], [ -95.697058092789945, 29.895229213261516 ], [ -95.69774709287924, 29.895031213175749 ], [ -95.698213093227395, 29.894940213428711 ], [ -95.698764093552001, 29.894851213031853 ], [ -95.700631094206813, 29.894804213316849 ], [ -95.700877094362767, 29.894798213595823 ], [ -95.701774094619978, 29.894784212953628 ], [ -95.702385094902098, 29.894776212824301 ], [ -95.704088094680145, 29.894757213211463 ], [ -95.704319094797015, 29.894741213018264 ], [ -95.704408094724172, 29.894735212730666 ], [ -95.704502095201008, 29.894735213525419 ], [ -95.704503095341821, 29.894689213276695 ], [ -95.704531095249848, 29.893940212856151 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 243, "Tract": "48201555304", "Area_SqMi": 2.5741134722708363, "total_2009": 337, "total_2010": 523, "total_2011": 278, "total_2012": 420, "total_2013": 384, "total_2014": 509, "total_2015": 610, "total_2016": 794, "total_2017": 968, "total_2018": 1139, "total_2019": 1616, "total_2020": 1387, "age1": 641, "age2": 1072, "age3": 466, "earn1": 782, "earn2": 745, "earn3": 652, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 162, "naics_s05": 12, "naics_s06": 115, "naics_s07": 389, "naics_s08": 14, "naics_s09": 12, "naics_s10": 53, "naics_s11": 18, "naics_s12": 71, "naics_s13": 0, "naics_s14": 86, "naics_s15": 31, "naics_s16": 947, "naics_s17": 3, "naics_s18": 225, "naics_s19": 41, "naics_s20": 0, "race1": 1597, "race2": 404, "race3": 19, "race4": 126, "race5": 3, "race6": 30, "ethnicity1": 1575, "ethnicity2": 604, "edu1": 284, "edu2": 417, "edu3": 462, "edu4": 375, "Shape_Length": 37156.398901487119, "Shape_Area": 71761877.967672512, "total_2021": 1759, "total_2022": 2179 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.55463206650964, 30.114331262584841 ], [ -95.554635066574889, 30.114196262534183 ], [ -95.554576067089201, 30.113863263016565 ], [ -95.554508067027314, 30.113554262682854 ], [ -95.554399066327562, 30.113108262965675 ], [ -95.554255066219881, 30.11273126260928 ], [ -95.554028066220525, 30.112267262493816 ], [ -95.553738065872054, 30.111808262824955 ], [ -95.55345706666813, 30.111303262510194 ], [ -95.55328606623813, 30.111504262147083 ], [ -95.552647066371733, 30.112261262852755 ], [ -95.551182065630854, 30.113237263206386 ], [ -95.55002606498266, 30.113729262712031 ], [ -95.549309065012267, 30.113921262731214 ], [ -95.547892064889723, 30.114147263473679 ], [ -95.5476480648516, 30.114148263299974 ], [ -95.546995064467964, 30.114191262928227 ], [ -95.544675064446636, 30.113906263284118 ], [ -95.544467063973798, 30.113851263133462 ], [ -95.543927064207296, 30.113748262849093 ], [ -95.543345063766665, 30.113748262910974 ], [ -95.542083063457255, 30.113869263474069 ], [ -95.54130606338812, 30.114039263452369 ], [ -95.540432062806403, 30.114330263547448 ], [ -95.539558063309087, 30.114767263197677 ], [ -95.538369062171967, 30.115277263374054 ], [ -95.537665062169822, 30.11547126410559 ], [ -95.536063061777341, 30.116151263671259 ], [ -95.53497106181706, 30.116806264204264 ], [ -95.534024061909193, 30.11777726405796 ], [ -95.533530061524019, 30.118438264618 ], [ -95.533102061746817, 30.119015264220931 ], [ -95.532495061538427, 30.11998626499571 ], [ -95.53186406162888, 30.120860264958225 ], [ -95.531355061262573, 30.121466265563985 ], [ -95.530578061218662, 30.122219265772866 ], [ -95.529631060645272, 30.122898265622343 ], [ -95.528569060923417, 30.123826265922663 ], [ -95.527511060519458, 30.124656265584417 ], [ -95.527471060736772, 30.12470726575928 ], [ -95.52687405960036, 30.125471265802595 ], [ -95.52663606011896, 30.125800266411954 ], [ -95.526134059578908, 30.126400265903349 ], [ -95.525642059772608, 30.126894266567291 ], [ -95.524848060087905, 30.127473266988886 ], [ -95.524121059564592, 30.127993266539431 ], [ -95.523779059191881, 30.128154266446661 ], [ -95.523159059387126, 30.128613267033572 ], [ -95.521745059010627, 30.129396266897505 ], [ -95.520726058383886, 30.129724267331497 ], [ -95.520483059098098, 30.129796267542524 ], [ -95.520156058081056, 30.129871267297137 ], [ -95.520195058187994, 30.130074267191631 ], [ -95.520286058977575, 30.130429267070106 ], [ -95.520420058467764, 30.130938267592981 ], [ -95.520546058928446, 30.131630267563619 ], [ -95.520537058642233, 30.131774267936613 ], [ -95.520316058695883, 30.132055268103628 ], [ -95.520184058306015, 30.132242267288369 ], [ -95.520009058402238, 30.132483267904849 ], [ -95.519855058502529, 30.132731268247763 ], [ -95.519625058263543, 30.132867267859236 ], [ -95.519362058860892, 30.133064268126173 ], [ -95.519129058051973, 30.13324526821815 ], [ -95.518419058564845, 30.133711268376629 ], [ -95.518046058720088, 30.13394226774475 ], [ -95.517815058433897, 30.134139268495581 ], [ -95.517673057718795, 30.13439126831549 ], [ -95.517662057796244, 30.134885268034463 ], [ -95.517194057846282, 30.134885268292322 ], [ -95.517185057705831, 30.13625826862738 ], [ -95.517180057649981, 30.136933268788052 ], [ -95.523993059403196, 30.13693326819919 ], [ -95.527050060193261, 30.13694726798272 ], [ -95.527050060534975, 30.136905268572782 ], [ -95.531400061862172, 30.136901267981202 ], [ -95.533989062156365, 30.136889267989329 ], [ -95.534712062659537, 30.136881267990983 ], [ -95.536416063214688, 30.136881267940336 ], [ -95.538474063467802, 30.136852267827603 ], [ -95.539249063824769, 30.136860268186048 ], [ -95.54046706452084, 30.136874267631743 ], [ -95.541799064429767, 30.136875267511687 ], [ -95.542901065117547, 30.136865267494017 ], [ -95.544023064953706, 30.136856267765371 ], [ -95.545927065482203, 30.136848267826316 ], [ -95.546595065341023, 30.136845268081199 ], [ -95.546856065801478, 30.136841267541115 ], [ -95.546850066246506, 30.13666626753016 ], [ -95.547329065629128, 30.136669267490898 ], [ -95.547560065760052, 30.136675267904359 ], [ -95.547787065838335, 30.136676267339361 ], [ -95.547904065569298, 30.136680267313412 ], [ -95.54834506581345, 30.136672267883455 ], [ -95.549907066950908, 30.136669267290348 ], [ -95.550532067166486, 30.13666226793536 ], [ -95.550910066861476, 30.136644267402477 ], [ -95.551129066445469, 30.136639267362355 ], [ -95.551196066443126, 30.136631267892689 ], [ -95.551276067172566, 30.136638267485726 ], [ -95.551420066743276, 30.13663926717966 ], [ -95.551621066565261, 30.136646267615816 ], [ -95.551679066900448, 30.13664326723012 ], [ -95.551747066504234, 30.136656267422861 ], [ -95.551949066651773, 30.136661267780845 ], [ -95.552025066745117, 30.13666826726163 ], [ -95.552170066913916, 30.136671267392096 ], [ -95.552231067272899, 30.136672267773879 ], [ -95.552334067330364, 30.136658267325906 ], [ -95.552446067567828, 30.136653267153086 ], [ -95.552506067629793, 30.136656267905256 ], [ -95.552576067654442, 30.13664626706473 ], [ -95.552707067258353, 30.136647267034874 ], [ -95.552935067624404, 30.136626267621423 ], [ -95.55301006747996, 30.136632267105455 ], [ -95.553083067119104, 30.136625267901056 ], [ -95.553157067069705, 30.136625267072382 ], [ -95.553309067186945, 30.136046267606179 ], [ -95.553314067394723, 30.136027267053578 ], [ -95.553473067715132, 30.135426267521733 ], [ -95.553487067349593, 30.135331267116811 ], [ -95.553524067094529, 30.135086266955199 ], [ -95.553490067643594, 30.134660267003049 ], [ -95.553498067367158, 30.134392266940342 ], [ -95.553496067706646, 30.134262266974275 ], [ -95.553520067656038, 30.133609266407856 ], [ -95.553554066703327, 30.131831266807758 ], [ -95.553547067554703, 30.131745266855027 ], [ -95.553545067345425, 30.131717266661767 ], [ -95.553558066869044, 30.131623266653392 ], [ -95.553565067480974, 30.131453266853516 ], [ -95.553572067012851, 30.131209266564213 ], [ -95.553583066714097, 30.131109265945422 ], [ -95.553589067380187, 30.131004266382607 ], [ -95.553590066712758, 30.130775266365724 ], [ -95.553630067068937, 30.13038226591113 ], [ -95.553626067569922, 30.130246266052499 ], [ -95.553627067175938, 30.130204266244842 ], [ -95.553630067216361, 30.130108266313126 ], [ -95.553644066729234, 30.129965265664694 ], [ -95.553830067089237, 30.127413265302618 ], [ -95.553832067363047, 30.127359265117793 ], [ -95.553849067288127, 30.127206265543872 ], [ -95.553941067462134, 30.125749265076085 ], [ -95.553942066707833, 30.12572426491122 ], [ -95.55395906702249, 30.125395265377602 ], [ -95.553959067006602, 30.125354265134227 ], [ -95.553993067411682, 30.124743265181003 ], [ -95.553995067308307, 30.124665265310767 ], [ -95.553997066818425, 30.124618264938658 ], [ -95.554005066717778, 30.124523264732318 ], [ -95.554004066920953, 30.124415265184172 ], [ -95.554016066598109, 30.124278265222941 ], [ -95.55401906658372, 30.124233265175803 ], [ -95.554025066546913, 30.124143265078985 ], [ -95.554040066826744, 30.123925264723777 ], [ -95.554071066850895, 30.123378265096395 ], [ -95.554077066685423, 30.123285265012107 ], [ -95.554140066610543, 30.122206264591593 ], [ -95.554158066779365, 30.122090264510788 ], [ -95.554172067152805, 30.121853264815091 ], [ -95.554202067370227, 30.121298264518057 ], [ -95.55421306645448, 30.121175264721813 ], [ -95.554220066931634, 30.12112026437433 ], [ -95.554230066892401, 30.121054264320005 ], [ -95.55422806640874, 30.120796264617105 ], [ -95.554241067233505, 30.120488264573563 ], [ -95.554243067380511, 30.12039426390773 ], [ -95.554308066940237, 30.119531263589831 ], [ -95.554331066890214, 30.119388263695381 ], [ -95.554343067144146, 30.119108263638456 ], [ -95.554349066952327, 30.11897326397343 ], [ -95.554353066389623, 30.118902263621642 ], [ -95.55435506722911, 30.118874263822637 ], [ -95.554370066785737, 30.118638264146732 ], [ -95.554367066335047, 30.118542263481832 ], [ -95.554383067177213, 30.118455263959181 ], [ -95.554402066490979, 30.118135264054104 ], [ -95.554422066292503, 30.117878263636594 ], [ -95.554421067018694, 30.117836263862284 ], [ -95.554421066668453, 30.11776026395674 ], [ -95.554435067170431, 30.117694263420205 ], [ -95.554450066468362, 30.117441263851966 ], [ -95.554447067057737, 30.117348263132417 ], [ -95.554560066779317, 30.115510262826813 ], [ -95.55463206650964, 30.114331262584841 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 244, "Tract": "48201452102", "Area_SqMi": 0.074190150448432621, "total_2009": 3, "total_2010": 6, "total_2011": 9, "total_2012": 23, "total_2013": 15, "total_2014": 8, "total_2015": 10, "total_2016": 8, "total_2017": 9, "total_2018": 10, "total_2019": 6, "total_2020": 29, "age1": 6, "age2": 22, "age3": 8, "earn1": 3, "earn2": 20, "earn3": 13, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 3, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 9, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 19, "naics_s19": 0, "naics_s20": 0, "race1": 19, "race2": 6, "race3": 1, "race4": 6, "race5": 1, "race6": 3, "ethnicity1": 29, "ethnicity2": 7, "edu1": 10, "edu2": 4, "edu3": 6, "edu4": 10, "Shape_Length": 5842.5465790439521, "Shape_Area": 2068294.416790775, "total_2021": 33, "total_2022": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.581206056409414, 29.736562185393094 ], [ -95.581195055989809, 29.736446184752925 ], [ -95.581186056070308, 29.736342184989866 ], [ -95.58117105676034, 29.736159185261233 ], [ -95.581069056013121, 29.735647184827943 ], [ -95.580991056536405, 29.735420184589326 ], [ -95.580964056211485, 29.735358184793057 ], [ -95.580941055762807, 29.735305185137154 ], [ -95.580907055743566, 29.735228184697888 ], [ -95.580879056439343, 29.735171185191248 ], [ -95.58083705601338, 29.735083185160615 ], [ -95.58076005635273, 29.734924185037627 ], [ -95.580606056410986, 29.734517184985997 ], [ -95.580523056325831, 29.734158184255783 ], [ -95.580507055983389, 29.733772184773819 ], [ -95.580586056411249, 29.733284184670509 ], [ -95.579818056041645, 29.733152184512122 ], [ -95.578896055796619, 29.732922184676614 ], [ -95.578404055450747, 29.732807183957664 ], [ -95.578289055525232, 29.732781184588845 ], [ -95.577978055330163, 29.732714184548811 ], [ -95.577560054984318, 29.732662184084113 ], [ -95.577271055080772, 29.732635184639786 ], [ -95.577170055430059, 29.732626184604058 ], [ -95.576751055344602, 29.732625184163695 ], [ -95.5766470550778, 29.732626183963699 ], [ -95.576304055289754, 29.732632184373614 ], [ -95.575685055012116, 29.732707184367683 ], [ -95.576061054453575, 29.73479518502743 ], [ -95.57610305515901, 29.735076185010342 ], [ -95.576117054925319, 29.735294184597617 ], [ -95.576122054504864, 29.735366184771244 ], [ -95.576172054673307, 29.736621185572542 ], [ -95.578151055828229, 29.736594184986849 ], [ -95.5783040553316, 29.736592185181344 ], [ -95.578399055787756, 29.736590185099388 ], [ -95.579336055970174, 29.736578185167339 ], [ -95.581206056409414, 29.736562185393094 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 245, "Tract": "48201333301", "Area_SqMi": 0.56732055788159941, "total_2009": 427, "total_2010": 443, "total_2011": 859, "total_2012": 865, "total_2013": 864, "total_2014": 1009, "total_2015": 1147, "total_2016": 1211, "total_2017": 1247, "total_2018": 1226, "total_2019": 1249, "total_2020": 1267, "age1": 551, "age2": 619, "age3": 206, "earn1": 397, "earn2": 607, "earn3": 372, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 23, "naics_s07": 744, "naics_s08": 0, "naics_s09": 0, "naics_s10": 17, "naics_s11": 9, "naics_s12": 53, "naics_s13": 0, "naics_s14": 0, "naics_s15": 183, "naics_s16": 36, "naics_s17": 0, "naics_s18": 292, "naics_s19": 4, "naics_s20": 0, "race1": 998, "race2": 273, "race3": 7, "race4": 68, "race5": 2, "race6": 28, "ethnicity1": 803, "ethnicity2": 573, "edu1": 227, "edu2": 243, "edu3": 219, "edu4": 136, "Shape_Length": 18103.336779457815, "Shape_Area": 15815926.174900072, "total_2021": 1351, "total_2022": 1376 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.248427965840918, 29.628405174357223 ], [ -95.248381966069729, 29.62716917414383 ], [ -95.247238966415694, 29.627221174092245 ], [ -95.24614896529269, 29.627266173569165 ], [ -95.246004965858774, 29.627271173804182 ], [ -95.245558965571533, 29.627285174091373 ], [ -95.245353965880454, 29.627293174350086 ], [ -95.244928965733834, 29.627316174305591 ], [ -95.243889964934652, 29.627359174292899 ], [ -95.24351396505817, 29.627376174412134 ], [ -95.243178964472335, 29.627389174477305 ], [ -95.24291896500003, 29.627400173926578 ], [ -95.242776965246193, 29.627407174029521 ], [ -95.241792964137389, 29.62745917395312 ], [ -95.241510964511903, 29.627460174339227 ], [ -95.241341964861846, 29.62746717375634 ], [ -95.241139964770639, 29.627475174201148 ], [ -95.240669963855197, 29.627496174404456 ], [ -95.239368964142329, 29.627557174177991 ], [ -95.238529964248755, 29.627594173962986 ], [ -95.235995963328151, 29.627623174178328 ], [ -95.234653962532462, 29.627641173990042 ], [ -95.234468963030992, 29.627642174475628 ], [ -95.234145962654338, 29.627645174173132 ], [ -95.233095962052772, 29.627658174163667 ], [ -95.23207396259518, 29.627680174657574 ], [ -95.231908962021976, 29.627683174593876 ], [ -95.231470962285414, 29.627688174361591 ], [ -95.231085961590495, 29.627692174813188 ], [ -95.23048596201906, 29.627684174241818 ], [ -95.229305961677483, 29.627706174791264 ], [ -95.229063961323973, 29.627710174547229 ], [ -95.229350961203878, 29.627972174371337 ], [ -95.229705961385562, 29.62829717463951 ], [ -95.232323961857048, 29.630687174680848 ], [ -95.236809963242365, 29.634772176078926 ], [ -95.238857964617907, 29.636636175838074 ], [ -95.240624964513302, 29.638246176386048 ], [ -95.242731965749627, 29.640130177111541 ], [ -95.243123965231618, 29.640511176667335 ], [ -95.243272965669021, 29.640650176865996 ], [ -95.243369966066467, 29.640740177017136 ], [ -95.243533965508391, 29.640618176710017 ], [ -95.24421596591958, 29.640057176780601 ], [ -95.244376966288229, 29.639925176679281 ], [ -95.244977965833868, 29.639403176122947 ], [ -95.245251965539381, 29.639165176222654 ], [ -95.245567966082618, 29.638674176364677 ], [ -95.245612966371908, 29.638603176520682 ], [ -95.245845966085838, 29.638164176250729 ], [ -95.245907966258088, 29.637978176533373 ], [ -95.246024966566196, 29.63762817596481 ], [ -95.246072966340137, 29.637298176028221 ], [ -95.246086966542322, 29.637197176393808 ], [ -95.246120966180612, 29.636658175498933 ], [ -95.24611196584479, 29.635983176025988 ], [ -95.246107965688594, 29.635630175570675 ], [ -95.246103966530129, 29.635321175790452 ], [ -95.246094966007348, 29.634580175057646 ], [ -95.246081966278467, 29.633989175484388 ], [ -95.246148965942737, 29.633472174949045 ], [ -95.246255966032393, 29.632983175058687 ], [ -95.24645396638671, 29.632453174615016 ], [ -95.246638966164483, 29.632091174988158 ], [ -95.24671196639197, 29.631950174590138 ], [ -95.247033966044924, 29.631419174474907 ], [ -95.247333965847062, 29.630924174880374 ], [ -95.247700966457586, 29.63026817438088 ], [ -95.247909966140114, 29.629918174330371 ], [ -95.248060966239962, 29.629599174142008 ], [ -95.248242966432869, 29.629123174039893 ], [ -95.248352966222171, 29.628774173745771 ], [ -95.248427965840918, 29.628405174357223 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 246, "Tract": "48201320901", "Area_SqMi": 0.4012141569482427, "total_2009": 637, "total_2010": 654, "total_2011": 696, "total_2012": 732, "total_2013": 822, "total_2014": 792, "total_2015": 601, "total_2016": 683, "total_2017": 687, "total_2018": 697, "total_2019": 618, "total_2020": 606, "age1": 185, "age2": 266, "age3": 119, "earn1": 88, "earn2": 179, "earn3": 303, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 0, "naics_s07": 377, "naics_s08": 3, "naics_s09": 0, "naics_s10": 49, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 20, "naics_s17": 0, "naics_s18": 64, "naics_s19": 43, "naics_s20": 0, "race1": 406, "race2": 120, "race3": 4, "race4": 22, "race5": 2, "race6": 16, "ethnicity1": 316, "ethnicity2": 254, "edu1": 101, "edu2": 114, "edu3": 115, "edu4": 55, "Shape_Length": 15011.929837761627, "Shape_Area": 11185164.010824559, "total_2021": 595, "total_2022": 570 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.251599968426405, 29.652508179147649 ], [ -95.251444968006652, 29.652271179060403 ], [ -95.250914968317517, 29.651460178726076 ], [ -95.250340967977891, 29.650665178890236 ], [ -95.249075967381117, 29.648747177990444 ], [ -95.249020967776588, 29.648664178550181 ], [ -95.248642967672879, 29.648081177901624 ], [ -95.247057966425217, 29.645638177619752 ], [ -95.246619966325781, 29.64496317741408 ], [ -95.246240966850905, 29.644421177594737 ], [ -95.245459966296806, 29.643293177367404 ], [ -95.245164966114103, 29.642850177013617 ], [ -95.244585965660136, 29.642034176645421 ], [ -95.244281966189504, 29.64166217718811 ], [ -95.24381896608574, 29.641206177133096 ], [ -95.243579965752971, 29.640951177091186 ], [ -95.243474965660241, 29.640839177017138 ], [ -95.243369966066467, 29.640740177017136 ], [ -95.243230965449087, 29.640844177105656 ], [ -95.24311296504824, 29.640931176960667 ], [ -95.242911965666053, 29.641081176947303 ], [ -95.242032964899892, 29.641729177347994 ], [ -95.241805965474967, 29.641887176824198 ], [ -95.241501965509997, 29.642074177406368 ], [ -95.240912965279207, 29.642330176904007 ], [ -95.240546965451259, 29.642503177617037 ], [ -95.239628965115756, 29.642937177370253 ], [ -95.237823964388781, 29.643791177383818 ], [ -95.237871963897504, 29.643878177339545 ], [ -95.238094964423937, 29.644424177595589 ], [ -95.238100964272732, 29.644891177493516 ], [ -95.238128964184028, 29.646257178517743 ], [ -95.239144964491373, 29.646246178107159 ], [ -95.239170964661326, 29.647051178340362 ], [ -95.239173964593604, 29.647401177899788 ], [ -95.239184964988993, 29.647840178029114 ], [ -95.239186965290415, 29.648014178527635 ], [ -95.23920696457489, 29.648643178812115 ], [ -95.239228964688678, 29.649430178641889 ], [ -95.23924896508403, 29.650219178524274 ], [ -95.23925896503053, 29.650924178591314 ], [ -95.239263964926351, 29.651716178915137 ], [ -95.23928796552687, 29.652532179259293 ], [ -95.240982965163198, 29.652508179127508 ], [ -95.241308965137179, 29.652500178898809 ], [ -95.242806965647205, 29.652470179289907 ], [ -95.244579966220428, 29.652454179163225 ], [ -95.244713966773659, 29.652501179242648 ], [ -95.245722966730852, 29.652340179075804 ], [ -95.246683967254967, 29.652306178966366 ], [ -95.249174967834747, 29.652218178931772 ], [ -95.249190967432142, 29.653305179034664 ], [ -95.249562967296967, 29.653046179509413 ], [ -95.249853967577877, 29.652949178667278 ], [ -95.250121967930994, 29.652831179184638 ], [ -95.250140967537817, 29.65282217874001 ], [ -95.250383967849274, 29.652795179477959 ], [ -95.250955968240717, 29.652621178620894 ], [ -95.251194967886406, 29.652585178557981 ], [ -95.251382968369214, 29.652557178686731 ], [ -95.251599968426405, 29.652508179147649 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 247, "Tract": "48201530102", "Area_SqMi": 0.66426226134350996, "total_2009": 9566, "total_2010": 9546, "total_2011": 9506, "total_2012": 10705, "total_2013": 11834, "total_2014": 10472, "total_2015": 11075, "total_2016": 12181, "total_2017": 11298, "total_2018": 10824, "total_2019": 11008, "total_2020": 10869, "age1": 2253, "age2": 6747, "age3": 2813, "earn1": 2261, "earn2": 2961, "earn3": 6591, "naics_s01": 0, "naics_s02": 185, "naics_s03": 0, "naics_s04": 352, "naics_s05": 508, "naics_s06": 334, "naics_s07": 238, "naics_s08": 120, "naics_s09": 628, "naics_s10": 511, "naics_s11": 338, "naics_s12": 1029, "naics_s13": 1336, "naics_s14": 3833, "naics_s15": 724, "naics_s16": 554, "naics_s17": 1, "naics_s18": 364, "naics_s19": 140, "naics_s20": 618, "race1": 8066, "race2": 2564, "race3": 106, "race4": 826, "race5": 21, "race6": 230, "ethnicity1": 8114, "ethnicity2": 3699, "edu1": 1912, "edu2": 2369, "edu3": 2948, "edu4": 2331, "Shape_Length": 25551.901783856894, "Shape_Area": 18518494.950034458, "total_2021": 10687, "total_2022": 11813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.468739031480084, 29.819446205917597 ], [ -95.4688860311296, 29.819443205727801 ], [ -95.468587031712261, 29.819165205949563 ], [ -95.465538030531505, 29.816348204898823 ], [ -95.462111028928717, 29.813135204693623 ], [ -95.45925602842965, 29.810503204754486 ], [ -95.459087028831533, 29.810347204641111 ], [ -95.45897802813937, 29.810246204122919 ], [ -95.458765027812078, 29.810049204597004 ], [ -95.458504027736694, 29.809809204410826 ], [ -95.456781028024565, 29.808145204060146 ], [ -95.45602002767977, 29.807437203425568 ], [ -95.455921027631504, 29.807347204084213 ], [ -95.455832027502154, 29.807263203464689 ], [ -95.455666027851933, 29.807108204022907 ], [ -95.453487026442275, 29.805139203756859 ], [ -95.452827026666839, 29.804537203279999 ], [ -95.452451025938416, 29.804146203414096 ], [ -95.452188025964219, 29.803833202934165 ], [ -95.451845026585659, 29.803380203240824 ], [ -95.451514025983542, 29.802899202642113 ], [ -95.451333025779704, 29.802573202860007 ], [ -95.45111502626655, 29.802113202649284 ], [ -95.451021025546623, 29.801900203006202 ], [ -95.450956025440703, 29.801738202789842 ], [ -95.450898025550813, 29.801594203201073 ], [ -95.45086202567775, 29.801523202776451 ], [ -95.450772025874429, 29.801524203024925 ], [ -95.450744025722315, 29.801525202867026 ], [ -95.450675026345039, 29.801524202800223 ], [ -95.450497025396942, 29.801521202946812 ], [ -95.450264025676205, 29.801522202933516 ], [ -95.450198025958613, 29.8015222027419 ], [ -95.450050025899671, 29.801524203020744 ], [ -95.450025026056778, 29.801525202734169 ], [ -95.449916025699707, 29.801529202369935 ], [ -95.449874025742758, 29.80153020316347 ], [ -95.44925802562723, 29.801540202776369 ], [ -95.449167024977356, 29.801541202517459 ], [ -95.449146025043973, 29.801604202741402 ], [ -95.449107024937362, 29.801723203255786 ], [ -95.449048025772967, 29.80190020278766 ], [ -95.44886502581754, 29.802284203035278 ], [ -95.448607025233386, 29.802683202840466 ], [ -95.448020024942352, 29.803448203185688 ], [ -95.447341024925208, 29.80421320367963 ], [ -95.44664202492477, 29.804975203804627 ], [ -95.446099024960688, 29.80556720390533 ], [ -95.445550024963495, 29.80615920345538 ], [ -95.445267024995545, 29.806464204229531 ], [ -95.444919024412329, 29.806802204242377 ], [ -95.444583024692008, 29.807034203697203 ], [ -95.444232024421851, 29.8072772038655 ], [ -95.443765024552036, 29.807563203866859 ], [ -95.443095024145208, 29.807902204406446 ], [ -95.44227502366661, 29.808274204812808 ], [ -95.44178202355171, 29.80849120466037 ], [ -95.441588023371025, 29.808577204633949 ], [ -95.44106302333438, 29.808808204510221 ], [ -95.440983023228114, 29.808841204147587 ], [ -95.44088902366471, 29.808879204575252 ], [ -95.441024023406555, 29.808967204912001 ], [ -95.441065023379991, 29.808994204432022 ], [ -95.441217023365084, 29.809095204321572 ], [ -95.441370024226458, 29.809195204297506 ], [ -95.441520023491719, 29.80929420462882 ], [ -95.442052024367044, 29.809790204383628 ], [ -95.442525024077526, 29.810701204617263 ], [ -95.442632023772759, 29.810694205122843 ], [ -95.442676024117873, 29.810672204687034 ], [ -95.442947024002521, 29.810623205208234 ], [ -95.443382024688802, 29.810623204963861 ], [ -95.443930024583068, 29.810595205042933 ], [ -95.444437025157868, 29.810616204608035 ], [ -95.445122024750859, 29.810645205086349 ], [ -95.445702025476521, 29.810617205210043 ], [ -95.446667025017376, 29.810628204372634 ], [ -95.447209025165506, 29.810617204687688 ], [ -95.448016025569089, 29.810617204736911 ], [ -95.448671026251745, 29.810578204636009 ], [ -95.450054026349093, 29.810556204677834 ], [ -95.450056026198936, 29.81076420473865 ], [ -95.450065026068501, 29.811246205149491 ], [ -95.45007502655136, 29.81215320472969 ], [ -95.450103026454272, 29.81412320496284 ], [ -95.454704027675135, 29.81411020509837 ], [ -95.459259029054181, 29.814091204795606 ], [ -95.459312029061095, 29.815675205648745 ], [ -95.459329028244682, 29.816227205324264 ], [ -95.459362028887639, 29.817210205696796 ], [ -95.459365029236565, 29.817327205359248 ], [ -95.45939302862827, 29.818136205978647 ], [ -95.459419029358571, 29.818911205692601 ], [ -95.459433028390194, 29.819040206455067 ], [ -95.459455028656848, 29.819628206294098 ], [ -95.460106028701802, 29.819616206225014 ], [ -95.460678028844484, 29.819607205741043 ], [ -95.461568029455705, 29.819593205919194 ], [ -95.462070029537699, 29.819584206121284 ], [ -95.46277302973283, 29.819575206228762 ], [ -95.463173029959862, 29.819568205888423 ], [ -95.463404029817468, 29.819563205913937 ], [ -95.463778029531326, 29.819556205750789 ], [ -95.463985030367539, 29.819552205572315 ], [ -95.46418303017218, 29.819551206336858 ], [ -95.464732030513858, 29.819518205767764 ], [ -95.46524703074904, 29.819509205609421 ], [ -95.465521030040051, 29.819517206069126 ], [ -95.465927030703781, 29.819509205757527 ], [ -95.466257030777086, 29.819508205791426 ], [ -95.466634030625812, 29.819501206340806 ], [ -95.468157030657196, 29.819438205575977 ], [ -95.468555031101857, 29.819445205788067 ], [ -95.468739031480084, 29.819446205917597 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 248, "Tract": "48201410601", "Area_SqMi": 0.24437930840327171, "total_2009": 12494, "total_2010": 14122, "total_2011": 14126, "total_2012": 14587, "total_2013": 15088, "total_2014": 13385, "total_2015": 14572, "total_2016": 14767, "total_2017": 15166, "total_2018": 14872, "total_2019": 12540, "total_2020": 12083, "age1": 1897, "age2": 5353, "age3": 3001, "earn1": 2435, "earn2": 2286, "earn3": 5530, "naics_s01": 0, "naics_s02": 0, "naics_s03": 16, "naics_s04": 2139, "naics_s05": 19, "naics_s06": 45, "naics_s07": 835, "naics_s08": 22, "naics_s09": 67, "naics_s10": 47, "naics_s11": 203, "naics_s12": 465, "naics_s13": 4, "naics_s14": 982, "naics_s15": 4038, "naics_s16": 274, "naics_s17": 100, "naics_s18": 863, "naics_s19": 117, "naics_s20": 15, "race1": 6655, "race2": 2469, "race3": 96, "race4": 822, "race5": 13, "race6": 196, "ethnicity1": 6362, "ethnicity2": 3889, "edu1": 1921, "edu2": 1843, "edu3": 2302, "edu4": 2288, "Shape_Length": 11893.245820427517, "Shape_Area": 6812876.8589167371, "total_2021": 11383, "total_2022": 10251 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.382152005658597, 29.739135192160568 ], [ -95.382231006034445, 29.738907191960717 ], [ -95.381987005105486, 29.738917192647779 ], [ -95.381814005701926, 29.738875192302494 ], [ -95.381429005216091, 29.738765192198461 ], [ -95.381132005488851, 29.738644192427152 ], [ -95.380843005615219, 29.738473192599781 ], [ -95.379986004937493, 29.737958191858912 ], [ -95.379555004852108, 29.738483192645365 ], [ -95.379101004395395, 29.739055192570891 ], [ -95.378536004891203, 29.739766192142568 ], [ -95.378061004652665, 29.740370192907754 ], [ -95.377624004726769, 29.740935192457655 ], [ -95.377048004562795, 29.741658192792432 ], [ -95.376585003846884, 29.742235192795871 ], [ -95.376121004469908, 29.74281319327952 ], [ -95.375561004358659, 29.743536193252208 ], [ -95.375101004275152, 29.744106193440881 ], [ -95.374648003734961, 29.744685193365925 ], [ -95.374081003322715, 29.745417194308356 ], [ -95.373801003445479, 29.745764193582978 ], [ -95.373608003712434, 29.746014194003621 ], [ -95.373157003574519, 29.746570194433623 ], [ -95.372614003596183, 29.747263194737791 ], [ -95.372025002963184, 29.748013194706846 ], [ -95.372902003085443, 29.748541194148576 ], [ -95.373761004323327, 29.749053194343634 ], [ -95.374606004455131, 29.749568194876595 ], [ -95.375470003990173, 29.750087194375503 ], [ -95.376320004230337, 29.750604194496539 ], [ -95.376900004500072, 29.749863194621849 ], [ -95.377461004286445, 29.749158194190048 ], [ -95.377907005149709, 29.74859519450213 ], [ -95.378386005208469, 29.74799819457915 ], [ -95.378951004707545, 29.74727819368735 ], [ -95.379397005027116, 29.746710193814931 ], [ -95.379872005214011, 29.746102193576263 ], [ -95.379992005614653, 29.745933193480877 ], [ -95.380431005813008, 29.745395193558643 ], [ -95.380871005099493, 29.744825193483411 ], [ -95.381327005300079, 29.744235193214255 ], [ -95.381702005170084, 29.744450193708776 ], [ -95.381745006080621, 29.743993193420216 ], [ -95.381831005532703, 29.743593193359644 ], [ -95.381905005519158, 29.743253193551261 ], [ -95.381932006009905, 29.743009193208891 ], [ -95.381945005711344, 29.742763192648006 ], [ -95.381941005289164, 29.742454193411106 ], [ -95.381936005821402, 29.742053192500752 ], [ -95.381932005898136, 29.741799192792332 ], [ -95.381917005100433, 29.740686192912392 ], [ -95.381930005512586, 29.740179192811485 ], [ -95.38193200537377, 29.74006119220239 ], [ -95.381981005290285, 29.739743192862797 ], [ -95.382040005122619, 29.739527192515329 ], [ -95.382152005658597, 29.739135192160568 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 249, "Tract": "48201511201", "Area_SqMi": 0.42998463531084474, "total_2009": 601, "total_2010": 1015, "total_2011": 1203, "total_2012": 518, "total_2013": 544, "total_2014": 588, "total_2015": 412, "total_2016": 363, "total_2017": 442, "total_2018": 433, "total_2019": 723, "total_2020": 369, "age1": 138, "age2": 307, "age3": 135, "earn1": 52, "earn2": 227, "earn3": 301, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 143, "naics_s05": 129, "naics_s06": 21, "naics_s07": 33, "naics_s08": 0, "naics_s09": 0, "naics_s10": 9, "naics_s11": 35, "naics_s12": 63, "naics_s13": 1, "naics_s14": 47, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 40, "naics_s19": 52, "naics_s20": 0, "race1": 470, "race2": 60, "race3": 8, "race4": 38, "race5": 0, "race6": 4, "ethnicity1": 322, "ethnicity2": 258, "edu1": 148, "edu2": 109, "edu3": 97, "edu4": 88, "Shape_Length": 16228.890815242976, "Shape_Area": 11987235.706408063, "total_2021": 384, "total_2022": 580 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.426527019661179, 29.801661203616828 ], [ -95.426478019167178, 29.80128120370706 ], [ -95.426349020004139, 29.801021203133029 ], [ -95.426106019873103, 29.800783203316538 ], [ -95.425832019767441, 29.800626203746706 ], [ -95.425360018939386, 29.800500203714702 ], [ -95.425074019128743, 29.80036420297133 ], [ -95.424882018918424, 29.800181203127011 ], [ -95.424668019190776, 29.799837202979866 ], [ -95.424630019010493, 29.799519202787458 ], [ -95.42464801900617, 29.798843203091145 ], [ -95.424581018953276, 29.79845320258422 ], [ -95.424422019169469, 29.798165202859607 ], [ -95.423822018381173, 29.797539202990226 ], [ -95.42350101880352, 29.797040202423346 ], [ -95.42277501838845, 29.794844202430763 ], [ -95.422509018397534, 29.794441202345382 ], [ -95.422060018581135, 29.794029201841735 ], [ -95.421673018180627, 29.793828201791506 ], [ -95.420801017802006, 29.793505202258686 ], [ -95.420464017355769, 29.793302202005087 ], [ -95.420229017833876, 29.793056202357349 ], [ -95.419862017643766, 29.792463201697807 ], [ -95.419721017901281, 29.792296201925101 ], [ -95.419475017653781, 29.79200720182769 ], [ -95.417721017336305, 29.790881202135466 ], [ -95.417384016553413, 29.790671201675046 ], [ -95.417164016963511, 29.790465201593541 ], [ -95.417078017191315, 29.790303201865182 ], [ -95.417067016999411, 29.790123201521663 ], [ -95.416961017128344, 29.79012420154292 ], [ -95.416354016152155, 29.790130201652094 ], [ -95.41534301593326, 29.790148201431403 ], [ -95.414328015601711, 29.790218201885768 ], [ -95.413407015948536, 29.790296201733224 ], [ -95.41246201535364, 29.79034020183893 ], [ -95.411807014904738, 29.790384201612742 ], [ -95.411816015736278, 29.790702201995984 ], [ -95.411776015195414, 29.791138201766248 ], [ -95.411597015714847, 29.791761201850299 ], [ -95.411561015166754, 29.792337201884408 ], [ -95.411563015507312, 29.793298202058473 ], [ -95.411575015416346, 29.794105202634032 ], [ -95.411582015193758, 29.794166202311622 ], [ -95.411621015956385, 29.796012202972992 ], [ -95.41165101529289, 29.797865203565621 ], [ -95.411705015986229, 29.799707204170367 ], [ -95.412197015467612, 29.799709203973372 ], [ -95.412483016156727, 29.799708203834236 ], [ -95.413270015873479, 29.799698203645605 ], [ -95.414071016834484, 29.799681203284027 ], [ -95.415873017002596, 29.799665203520934 ], [ -95.415931017070193, 29.799665203530324 ], [ -95.416051017230444, 29.799665203906375 ], [ -95.417860017619702, 29.799673203465943 ], [ -95.417962016922175, 29.79967120375656 ], [ -95.422273018465987, 29.799646203509678 ], [ -95.422290018865624, 29.800007203866944 ], [ -95.422306018771508, 29.800674203451766 ], [ -95.422311018882922, 29.801529203443422 ], [ -95.422326018795701, 29.801684204007209 ], [ -95.42436601875491, 29.801683203737394 ], [ -95.424404019172925, 29.801682203535652 ], [ -95.424444019564234, 29.801811203831733 ], [ -95.424474019545727, 29.801976203752087 ], [ -95.424492019672442, 29.802111203797804 ], [ -95.4247200196384, 29.802325204102718 ], [ -95.425206019355656, 29.801915203980833 ], [ -95.425340019330093, 29.801802203721142 ], [ -95.425498019338335, 29.801741203654153 ], [ -95.425810019785928, 29.801688203546174 ], [ -95.426124019369794, 29.801657203768002 ], [ -95.426429019482256, 29.801660203283934 ], [ -95.426527019661179, 29.801661203616828 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 250, "Tract": "48201421103", "Area_SqMi": 0.12592099596875697, "total_2009": 850, "total_2010": 912, "total_2011": 1097, "total_2012": 1082, "total_2013": 1085, "total_2014": 996, "total_2015": 1011, "total_2016": 943, "total_2017": 941, "total_2018": 926, "total_2019": 905, "total_2020": 852, "age1": 164, "age2": 490, "age3": 214, "earn1": 98, "earn2": 362, "earn3": 408, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 9, "naics_s06": 10, "naics_s07": 63, "naics_s08": 0, "naics_s09": 0, "naics_s10": 17, "naics_s11": 2, "naics_s12": 1, "naics_s13": 579, "naics_s14": 16, "naics_s15": 81, "naics_s16": 53, "naics_s17": 0, "naics_s18": 18, "naics_s19": 19, "naics_s20": 0, "race1": 526, "race2": 224, "race3": 8, "race4": 93, "race5": 0, "race6": 17, "ethnicity1": 522, "ethnicity2": 346, "edu1": 174, "edu2": 175, "edu3": 185, "edu4": 170, "Shape_Length": 7964.7666325008904, "Shape_Area": 3510461.8516704454, "total_2021": 651, "total_2022": 868 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.48485703116701, 29.720057184506818 ], [ -95.484838030751902, 29.718684184712981 ], [ -95.484821031230538, 29.717423184467002 ], [ -95.484818030833807, 29.717175184771058 ], [ -95.484812031061168, 29.716783184193471 ], [ -95.484807030509145, 29.716429184293276 ], [ -95.484789030342696, 29.716429183967751 ], [ -95.484346030817491, 29.716435184608049 ], [ -95.483778030983004, 29.716444183821867 ], [ -95.483204030157736, 29.716453184638372 ], [ -95.48317403055178, 29.716453184054206 ], [ -95.482665030627786, 29.716459184659858 ], [ -95.482215030627799, 29.716466184116424 ], [ -95.48217802991995, 29.716467184611894 ], [ -95.481600029837551, 29.716476184551308 ], [ -95.481004029352604, 29.716485184770516 ], [ -95.4806130300463, 29.716490184263758 ], [ -95.479351029516579, 29.716502184738459 ], [ -95.478582028925757, 29.716492184256115 ], [ -95.477593028919586, 29.716506184067583 ], [ -95.476421028612791, 29.716532184273348 ], [ -95.476434028344784, 29.717454184546416 ], [ -95.476438028337512, 29.717781185156944 ], [ -95.476467029228147, 29.718669185232859 ], [ -95.476467029198446, 29.718780185204171 ], [ -95.476468028277466, 29.719244185213725 ], [ -95.476451028366384, 29.72014718553233 ], [ -95.476718028659221, 29.72013518565976 ], [ -95.476887028545164, 29.720134185270012 ], [ -95.477537029074313, 29.720133185187141 ], [ -95.477926029643029, 29.720130185349234 ], [ -95.478470028924704, 29.720129185273848 ], [ -95.479423029305963, 29.72012518553737 ], [ -95.480656030286752, 29.720122185232917 ], [ -95.481655029924326, 29.720105184968563 ], [ -95.482354029888313, 29.720095185469781 ], [ -95.482623030010572, 29.720089184763058 ], [ -95.48284202996922, 29.720088184632829 ], [ -95.483343030075531, 29.720080184703768 ], [ -95.484113030263387, 29.720068184895194 ], [ -95.48485703116701, 29.720057184506818 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 251, "Tract": "48201410706", "Area_SqMi": 0.16664214674024824, "total_2009": 533, "total_2010": 348, "total_2011": 446, "total_2012": 351, "total_2013": 416, "total_2014": 520, "total_2015": 538, "total_2016": 428, "total_2017": 455, "total_2018": 486, "total_2019": 407, "total_2020": 429, "age1": 89, "age2": 212, "age3": 101, "earn1": 104, "earn2": 111, "earn3": 187, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 3, "naics_s06": 53, "naics_s07": 19, "naics_s08": 0, "naics_s09": 10, "naics_s10": 8, "naics_s11": 43, "naics_s12": 30, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 97, "naics_s17": 3, "naics_s18": 83, "naics_s19": 50, "naics_s20": 0, "race1": 286, "race2": 79, "race3": 4, "race4": 25, "race5": 1, "race6": 7, "ethnicity1": 272, "ethnicity2": 130, "edu1": 73, "edu2": 68, "edu3": 93, "edu4": 79, "Shape_Length": 10759.466571259205, "Shape_Area": 4645697.8402335355, "total_2021": 377, "total_2022": 402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.388892006993672, 29.738799192002265 ], [ -95.388890006723472, 29.73789719186939 ], [ -95.388873007615373, 29.737047191584391 ], [ -95.38885700738426, 29.736204191128241 ], [ -95.388848007554316, 29.73534719103705 ], [ -95.38885200748058, 29.73451919096485 ], [ -95.388448007362868, 29.73451319139366 ], [ -95.387873007254044, 29.734478191559507 ], [ -95.386905006519839, 29.734478191114924 ], [ -95.386163006538609, 29.734498191683997 ], [ -95.385756006062778, 29.734528190859645 ], [ -95.385484006404383, 29.734535190972775 ], [ -95.385538005671876, 29.734458191567914 ], [ -95.385620006332047, 29.734356190884689 ], [ -95.38586300600312, 29.734045190704357 ], [ -95.385976006484057, 29.733898191321032 ], [ -95.386157006335779, 29.733673191510494 ], [ -95.386543006457259, 29.733213190689955 ], [ -95.386678006450808, 29.733077191027874 ], [ -95.386883006022444, 29.732884190934428 ], [ -95.38709600666067, 29.732722190962455 ], [ -95.387257007041896, 29.73263219062472 ], [ -95.387533006384714, 29.732502190689758 ], [ -95.38792900677737, 29.732358190422747 ], [ -95.388245006458533, 29.732296190611851 ], [ -95.38864600731759, 29.732190190956739 ], [ -95.387815006995808, 29.732200190443038 ], [ -95.387716006443284, 29.73219519105686 ], [ -95.387511006785417, 29.732197191172549 ], [ -95.387278006208049, 29.732196190879062 ], [ -95.386935006579193, 29.732195190440752 ], [ -95.385225006015176, 29.732212190650692 ], [ -95.384551005980981, 29.732248190518344 ], [ -95.384479005639577, 29.732252190426998 ], [ -95.383893005387094, 29.732983190739539 ], [ -95.383378005518537, 29.73364219122314 ], [ -95.382983005501131, 29.734131191316834 ], [ -95.38295000569353, 29.734182191177396 ], [ -95.382686005942375, 29.734525191192677 ], [ -95.382066005139151, 29.735298191216121 ], [ -95.381500005693667, 29.736010191393184 ], [ -95.381336005224796, 29.736236191372228 ], [ -95.38103300558474, 29.736602191797434 ], [ -95.380593005271635, 29.737176192411198 ], [ -95.379986004937493, 29.737958191858912 ], [ -95.380843005615219, 29.738473192599781 ], [ -95.381132005488851, 29.738644192427152 ], [ -95.381429005216091, 29.738765192198461 ], [ -95.381814005701926, 29.738875192302494 ], [ -95.381987005105486, 29.738917192647779 ], [ -95.382231006034445, 29.738907191960717 ], [ -95.382300005929707, 29.738912192058869 ], [ -95.383468005428213, 29.738899192308974 ], [ -95.383831005784657, 29.738897192504641 ], [ -95.384448005906691, 29.738895192150895 ], [ -95.38543900589957, 29.738888192284236 ], [ -95.386488007025349, 29.738867192100596 ], [ -95.386966006483178, 29.738854192301709 ], [ -95.387926006737544, 29.738819192082431 ], [ -95.388892006993672, 29.738799192002265 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 252, "Tract": "48201241501", "Area_SqMi": 5.6661404742385502, "total_2009": 5006, "total_2010": 5655, "total_2011": 6881, "total_2012": 6418, "total_2013": 6330, "total_2014": 6612, "total_2015": 6863, "total_2016": 7733, "total_2017": 8325, "total_2018": 8100, "total_2019": 8376, "total_2020": 7605, "age1": 2436, "age2": 4620, "age3": 1516, "earn1": 1728, "earn2": 2941, "earn3": 3903, "naics_s01": 0, "naics_s02": 0, "naics_s03": 116, "naics_s04": 282, "naics_s05": 199, "naics_s06": 139, "naics_s07": 901, "naics_s08": 2047, "naics_s09": 0, "naics_s10": 257, "naics_s11": 43, "naics_s12": 178, "naics_s13": 30, "naics_s14": 213, "naics_s15": 4, "naics_s16": 2750, "naics_s17": 32, "naics_s18": 1141, "naics_s19": 240, "naics_s20": 0, "race1": 5427, "race2": 2213, "race3": 80, "race4": 701, "race5": 8, "race6": 143, "ethnicity1": 5906, "ethnicity2": 2666, "edu1": 1339, "edu2": 1599, "edu3": 1921, "edu4": 1277, "Shape_Length": 63467.805105994936, "Shape_Area": 157962298.72542891, "total_2021": 7777, "total_2022": 8572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.308913998614941, 30.004236248609633 ], [ -95.308916998219487, 30.004121249006975 ], [ -95.308906999154317, 30.003900248781051 ], [ -95.308893999017087, 30.003410249241121 ], [ -95.308897998723324, 30.0030842492164 ], [ -95.308903998778973, 30.002618248572695 ], [ -95.308892998253938, 30.002038248358474 ], [ -95.308860998590674, 30.000135248246398 ], [ -95.308808998823139, 29.997010247410831 ], [ -95.308761997788821, 29.994255246539229 ], [ -95.308701998089532, 29.9924302463122 ], [ -95.308618997983558, 29.990415246613033 ], [ -95.308615998263761, 29.99021124612629 ], [ -95.30861199819995, 29.989918246385272 ], [ -95.308606997497151, 29.989466245874382 ], [ -95.308597998389757, 29.988747246231799 ], [ -95.308591998271424, 29.986945245756459 ], [ -95.308588998300095, 29.986722245827362 ], [ -95.308574997979548, 29.985544245432234 ], [ -95.308212997353181, 29.985533245084881 ], [ -95.30699699746522, 29.98549524551305 ], [ -95.306532997137239, 29.985452245120449 ], [ -95.306083997412216, 29.985394245311923 ], [ -95.305346996841664, 29.985312245601335 ], [ -95.303235996753671, 29.984907245304115 ], [ -95.301910995803695, 29.984624245604934 ], [ -95.300170995647377, 29.984246245662018 ], [ -95.298762995118153, 29.9839442455275 ], [ -95.296957994669611, 29.983596245431833 ], [ -95.297085994269082, 29.982956244989975 ], [ -95.295932994410023, 29.982782245159783 ], [ -95.296041993957928, 29.982327245215444 ], [ -95.296057994222437, 29.981815244884523 ], [ -95.296078994239508, 29.980251244884624 ], [ -95.296073994480679, 29.979206244257455 ], [ -95.29607399433209, 29.979167244652132 ], [ -95.296070994370083, 29.97778224381549 ], [ -95.296078993869841, 29.975506244000655 ], [ -95.296110993738452, 29.975028243337199 ], [ -95.296263994466941, 29.974560243175265 ], [ -95.296425994152585, 29.974255243087864 ], [ -95.296702994559183, 29.973876243634617 ], [ -95.296929993879729, 29.973653243551119 ], [ -95.297294994811352, 29.973358243352884 ], [ -95.297699994124343, 29.973144243445024 ], [ -95.297995994735402, 29.973017243457495 ], [ -95.298307994700892, 29.972926242740769 ], [ -95.298600994324474, 29.972869242936181 ], [ -95.29887999481096, 29.972837242941953 ], [ -95.29916699514483, 29.972825242941688 ], [ -95.299545995150496, 29.972825242533382 ], [ -95.304488995626528, 29.972818242839551 ], [ -95.30718399698911, 29.972827243042762 ], [ -95.307372996725505, 29.972808242995825 ], [ -95.307556997030247, 29.972762242294188 ], [ -95.307721996707031, 29.972689242301115 ], [ -95.307846997225752, 29.972623242444335 ], [ -95.307991996482031, 29.972517242963047 ], [ -95.308126996888134, 29.972386242917 ], [ -95.308233996987255, 29.972247242939257 ], [ -95.308329997519337, 29.972067242175861 ], [ -95.308352997098027, 29.9719472427212 ], [ -95.308362997553971, 29.971728241984493 ], [ -95.308364996804684, 29.971117241901851 ], [ -95.308350996512516, 29.970680242551051 ], [ -95.308334996719239, 29.969487242056324 ], [ -95.30830699711278, 29.969156241548816 ], [ -95.308238996939778, 29.968756241454962 ], [ -95.308016996956511, 29.967788241461857 ], [ -95.30768799681951, 29.966407241094565 ], [ -95.307159996800578, 29.964193241224965 ], [ -95.306968996341752, 29.963392240628824 ], [ -95.306515996123409, 29.961519240060916 ], [ -95.30635099636207, 29.960789240267868 ], [ -95.305827995514008, 29.958588240084477 ], [ -95.305425995607152, 29.956848239678685 ], [ -95.304319994949068, 29.952241238332384 ], [ -95.30370799469415, 29.952245239030965 ], [ -95.302977994738697, 29.95221823895988 ], [ -95.302251994466573, 29.952178238897549 ], [ -95.301556994250205, 29.952172238855496 ], [ -95.299916994296268, 29.952190238546947 ], [ -95.298378993879339, 29.952197238385772 ], [ -95.294428992511669, 29.952218238781828 ], [ -95.293847992636969, 29.952215238829307 ], [ -95.293613992763767, 29.952228238759691 ], [ -95.293352992660729, 29.952255239119093 ], [ -95.292997991967653, 29.952252238685183 ], [ -95.290908991891584, 29.952203238979479 ], [ -95.290592991766673, 29.952198238907812 ], [ -95.290454991883379, 29.952508239478089 ], [ -95.289933991023531, 29.953678239385024 ], [ -95.289866991323038, 29.95382323973849 ], [ -95.289545991809078, 29.954535239132706 ], [ -95.289136991034965, 29.955474239860013 ], [ -95.287699991157695, 29.958721240524447 ], [ -95.287334991101275, 29.95945124102105 ], [ -95.285869990890689, 29.962726241386719 ], [ -95.285436990911492, 29.963685241838935 ], [ -95.284700990754075, 29.965477242235664 ], [ -95.284601990416675, 29.965719241780377 ], [ -95.284515990835359, 29.965911242403724 ], [ -95.2822129906139, 29.971032242996142 ], [ -95.281287990160763, 29.97311424349563 ], [ -95.280842990242817, 29.974117243708228 ], [ -95.280587990463744, 29.974726244093347 ], [ -95.279855990426881, 29.976357244545962 ], [ -95.279298990334055, 29.97731424460806 ], [ -95.278607990077333, 29.978659244673864 ], [ -95.27833898976013, 29.979371244804174 ], [ -95.278056989712354, 29.980059245148265 ], [ -95.277170989289232, 29.982400246011615 ], [ -95.277083989885639, 29.982610245586596 ], [ -95.276945989454703, 29.982986245735507 ], [ -95.276812989631125, 29.983405245538098 ], [ -95.276729990025913, 29.983639245536079 ], [ -95.276676989357085, 29.983770246359761 ], [ -95.276239989187943, 29.984847246081976 ], [ -95.27616298911029, 29.98503724657575 ], [ -95.275793989493309, 29.985984246704238 ], [ -95.27527698980775, 29.987299246424293 ], [ -95.274600988964451, 29.989020246962681 ], [ -95.273130989384242, 29.992591248215373 ], [ -95.27244498855184, 29.99432224820816 ], [ -95.27161498829453, 29.996467249055762 ], [ -95.271223989205737, 29.997466249179453 ], [ -95.270706989110778, 29.998950248876831 ], [ -95.270550988369209, 29.999556249820788 ], [ -95.270286988499137, 30.00033724962011 ], [ -95.269905988064437, 30.001167249786349 ], [ -95.269871988767306, 30.001257250171399 ], [ -95.269847988711874, 30.001309249850287 ], [ -95.26980398874376, 30.001409249742593 ], [ -95.269732988942209, 30.001568249743801 ], [ -95.268795988234629, 30.003675250311879 ], [ -95.268369988288171, 30.004727250124091 ], [ -95.268300988630983, 30.00489425064492 ], [ -95.268249987913862, 30.005023250771576 ], [ -95.268487988444988, 30.005024250957611 ], [ -95.26866498804597, 30.005021250938878 ], [ -95.269477988664391, 30.005065250551691 ], [ -95.270446988984617, 30.005044250894695 ], [ -95.270954988684707, 30.005037250400882 ], [ -95.271789989648411, 30.005016250643259 ], [ -95.27214598915775, 30.00501225046288 ], [ -95.272477989687687, 30.00502725055691 ], [ -95.273293989418391, 30.00505825025536 ], [ -95.274247989692469, 30.005057250479602 ], [ -95.274977989554699, 30.005056250443104 ], [ -95.276102990180433, 30.005055250626391 ], [ -95.276327990015801, 30.005055250086734 ], [ -95.276818990584673, 30.005053250436205 ], [ -95.276971991001048, 30.005053250645574 ], [ -95.277114990699701, 30.005054250713069 ], [ -95.27725699069255, 30.005055250000705 ], [ -95.27750499100982, 30.005064250400004 ], [ -95.278813991324625, 30.005059250109909 ], [ -95.27955299126495, 30.00504924978857 ], [ -95.27995599117024, 30.005039250176086 ], [ -95.28117899116917, 30.005044249797507 ], [ -95.281802991435299, 30.005046249755353 ], [ -95.282387991606839, 30.005053250189324 ], [ -95.282465992107674, 30.005054249954146 ], [ -95.283693992322753, 30.005045249933467 ], [ -95.28422199252185, 30.00504125018859 ], [ -95.284349992353825, 30.005040249847113 ], [ -95.284501992712563, 30.005040249924669 ], [ -95.285487993180283, 30.005041249649562 ], [ -95.291153994552246, 30.005047250193829 ], [ -95.292758994434593, 30.005050249523677 ], [ -95.293161994422803, 30.00505025012675 ], [ -95.29387399498755, 30.005051249361451 ], [ -95.293926995258374, 30.005049250128884 ], [ -95.294539994988796, 30.005030250046815 ], [ -95.294552994569401, 30.005030249406378 ], [ -95.295193994812763, 30.005009249530627 ], [ -95.296847995503228, 30.004948249188345 ], [ -95.296995995721602, 30.004943249841432 ], [ -95.297223995539724, 30.004940249796167 ], [ -95.297515996103598, 30.004917249635859 ], [ -95.300127996034533, 30.004767249232959 ], [ -95.303338997254428, 30.004648249644458 ], [ -95.30355799762043, 30.004635249312987 ], [ -95.305713997623201, 30.004505248939775 ], [ -95.308913998564506, 30.004371249454685 ], [ -95.308913998614941, 30.004236248609633 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 253, "Tract": "48201553901", "Area_SqMi": 1.4975223165420799, "total_2009": 1346, "total_2010": 1601, "total_2011": 1892, "total_2012": 1658, "total_2013": 1719, "total_2014": 1818, "total_2015": 1889, "total_2016": 2182, "total_2017": 2242, "total_2018": 2378, "total_2019": 2330, "total_2020": 2440, "age1": 1002, "age2": 1178, "age3": 519, "earn1": 827, "earn2": 1000, "earn3": 872, "naics_s01": 0, "naics_s02": 25, "naics_s03": 0, "naics_s04": 103, "naics_s05": 8, "naics_s06": 136, "naics_s07": 742, "naics_s08": 15, "naics_s09": 11, "naics_s10": 51, "naics_s11": 5, "naics_s12": 270, "naics_s13": 2, "naics_s14": 49, "naics_s15": 170, "naics_s16": 354, "naics_s17": 49, "naics_s18": 561, "naics_s19": 148, "naics_s20": 0, "race1": 1983, "race2": 448, "race3": 25, "race4": 185, "race5": 1, "race6": 57, "ethnicity1": 1885, "ethnicity2": 814, "edu1": 358, "edu2": 439, "edu3": 530, "edu4": 370, "Shape_Length": 32758.062870297123, "Shape_Area": 41748359.150133073, "total_2021": 2538, "total_2022": 2699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.555312063032289, 30.033162246779852 ], [ -95.555360063137798, 30.033095246784335 ], [ -95.555233062631899, 30.033009246703514 ], [ -95.555051062980979, 30.032875246233576 ], [ -95.554866063043491, 30.032727245929657 ], [ -95.554646062898669, 30.032533245984904 ], [ -95.554536062455043, 30.032427246586707 ], [ -95.554324063309693, 30.032205245808164 ], [ -95.554136062550967, 30.031987246435683 ], [ -95.553979062389587, 30.031781245995088 ], [ -95.553785062742449, 30.031499246202209 ], [ -95.553628062996211, 30.031246246171552 ], [ -95.553612063102193, 30.031216245862247 ], [ -95.553526062423643, 30.031055246273912 ], [ -95.553457062371805, 30.03091124618792 ], [ -95.553438063036182, 30.030852245960066 ], [ -95.553352063000389, 30.030620245729985 ], [ -95.553318062999608, 30.030549245840589 ], [ -95.553225062442948, 30.030330245784629 ], [ -95.553169062394559, 30.030172245644213 ], [ -95.553128062275064, 30.030086245421586 ], [ -95.553059062355175, 30.029912245347933 ], [ -95.553019062322164, 30.02982324540228 ], [ -95.552950062414311, 30.029669245654322 ], [ -95.552838061890654, 30.029449246044489 ], [ -95.552792062465556, 30.029386246057452 ], [ -95.552757062676349, 30.029322245738669 ], [ -95.55258406224479, 30.029048245654121 ], [ -95.55249706186207, 30.028923245560613 ], [ -95.552266062016059, 30.028622245474725 ], [ -95.552256062472082, 30.028611245885699 ], [ -95.551748061656198, 30.027906245680754 ], [ -95.551664061762921, 30.02779024542426 ], [ -95.55161006229406, 30.027729245464393 ], [ -95.550985061419979, 30.026873244869584 ], [ -95.550974061318158, 30.02685924559453 ], [ -95.550822062170283, 30.026656245506707 ], [ -95.550616061134392, 30.026369245125274 ], [ -95.55050906139094, 30.026233245177604 ], [ -95.550422061757104, 30.026108245310471 ], [ -95.550353061659067, 30.026134245163732 ], [ -95.548907061383218, 30.026935245569106 ], [ -95.548675061327629, 30.027092244963285 ], [ -95.548444060864156, 30.02719924505875 ], [ -95.548227061511582, 30.027324245644401 ], [ -95.548022061242477, 30.0274492454915 ], [ -95.547921060571696, 30.027511245906844 ], [ -95.547726060925314, 30.027613245411697 ], [ -95.547631060521098, 30.027683245626644 ], [ -95.547547060832301, 30.027739245628098 ], [ -95.547237060589012, 30.027907245876534 ], [ -95.54702606085668, 30.028022245986083 ], [ -95.546845060325111, 30.028115245487324 ], [ -95.546662060213151, 30.02819924550354 ], [ -95.546376060548639, 30.028352245685284 ], [ -95.545941060894776, 30.028592245621681 ], [ -95.545844060654147, 30.028651246197015 ], [ -95.545745060147695, 30.028701245620866 ], [ -95.545577060539642, 30.028800245678887 ], [ -95.54519606067052, 30.029009246340856 ], [ -95.545129059917628, 30.029042245494928 ], [ -95.544587060092425, 30.02934624587089 ], [ -95.544324060449796, 30.029485246292136 ], [ -95.544068059656752, 30.029132246272937 ], [ -95.544021060377318, 30.029076245555657 ], [ -95.543986059627343, 30.029019245644189 ], [ -95.543938060246148, 30.028962246222864 ], [ -95.543898060129109, 30.028901245762505 ], [ -95.543800060085189, 30.028780245730559 ], [ -95.543744059819659, 30.028695245561455 ], [ -95.543449060291053, 30.028298245399789 ], [ -95.543248060090647, 30.028023245947832 ], [ -95.54268605972112, 30.027256245852389 ], [ -95.542627059561582, 30.027167245457854 ], [ -95.542234059938536, 30.026644245420766 ], [ -95.542121059280205, 30.026491245239576 ], [ -95.542027059526845, 30.026355245194861 ], [ -95.541992059287864, 30.026296245522079 ], [ -95.54172505912635, 30.025951245237771 ], [ -95.540524058935958, 30.024314244767009 ], [ -95.539565059147918, 30.023029244534989 ], [ -95.539426058344091, 30.022833245103985 ], [ -95.539164058304806, 30.02246824435279 ], [ -95.539122058863555, 30.022403244735084 ], [ -95.539020058639593, 30.022286245094282 ], [ -95.538965058070332, 30.022239244933097 ], [ -95.538904057946382, 30.022209244982928 ], [ -95.538838058500701, 30.022198244883509 ], [ -95.538769058329549, 30.022201244537293 ], [ -95.538701058573366, 30.022212244870602 ], [ -95.538325058062597, 30.02229624433426 ], [ -95.537366058469615, 30.022519244674118 ], [ -95.537183058233353, 30.022555245041747 ], [ -95.537104057490595, 30.022559245156934 ], [ -95.537040057930156, 30.022544245071252 ], [ -95.536980058384955, 30.022516244813257 ], [ -95.536928057522857, 30.022466245223406 ], [ -95.536401057719672, 30.021743244980048 ], [ -95.536077057235943, 30.021298244585942 ], [ -95.536017057882944, 30.021208244855131 ], [ -95.535743057296742, 30.020836244894575 ], [ -95.534991057019084, 30.019811243934392 ], [ -95.534912056928874, 30.019715244391126 ], [ -95.534849056866719, 30.019618244064493 ], [ -95.534811057530632, 30.019566244484128 ], [ -95.534708056874578, 30.019424244514003 ], [ -95.534650057413259, 30.019328244017228 ], [ -95.534506056802343, 30.019147243910449 ], [ -95.5343550572818, 30.01894224380279 ], [ -95.534252057217444, 30.018796244220276 ], [ -95.534181056687416, 30.018698243790141 ], [ -95.534130056818711, 30.018635244038176 ], [ -95.534084056795862, 30.018564243949644 ], [ -95.533854056468954, 30.018254243630501 ], [ -95.533754056696566, 30.018118243673857 ], [ -95.533242056444948, 30.017420243730783 ], [ -95.532965056203878, 30.017050243667541 ], [ -95.532883056791235, 30.016941243461556 ], [ -95.532666056647386, 30.016645243615649 ], [ -95.532577056037695, 30.016527243639352 ], [ -95.53238205673847, 30.016252244005138 ], [ -95.532200056024109, 30.016352243508571 ], [ -95.531719056693305, 30.016620243472346 ], [ -95.530429055641065, 30.017329243783141 ], [ -95.530159056397537, 30.017481244005474 ], [ -95.529557055919327, 30.017811244096922 ], [ -95.529078055365574, 30.018078244005899 ], [ -95.528797055528457, 30.018232244427264 ], [ -95.528376055088117, 30.018463244700587 ], [ -95.528031055205972, 30.018654244384312 ], [ -95.527148055801632, 30.019143244124045 ], [ -95.52703205548255, 30.019209244978825 ], [ -95.526945054744061, 30.01926524416298 ], [ -95.52685305523967, 30.01931424472318 ], [ -95.526377055460614, 30.019609245066729 ], [ -95.526189054638309, 30.019716245062654 ], [ -95.526127055330861, 30.019745244913423 ], [ -95.525141055225589, 30.02028224513494 ], [ -95.524620054776108, 30.020559244662675 ], [ -95.524549055019932, 30.020603245205709 ], [ -95.524294054869898, 30.02073824502391 ], [ -95.523776054776604, 30.021023245210589 ], [ -95.524069054500373, 30.021249245065025 ], [ -95.524409054778175, 30.021524244943159 ], [ -95.524722054716477, 30.021777245199079 ], [ -95.525007055134381, 30.022008245466392 ], [ -95.525158055402429, 30.022130245616186 ], [ -95.525338054984431, 30.02227424529454 ], [ -95.526321055420084, 30.023066245217969 ], [ -95.526851054961185, 30.023492245087258 ], [ -95.52715805526968, 30.023745245642189 ], [ -95.527339055771407, 30.023907245335597 ], [ -95.527560055288632, 30.024125245819253 ], [ -95.527621055836534, 30.024180245366349 ], [ -95.527791055846521, 30.024390245766188 ], [ -95.527860055475131, 30.024455245513241 ], [ -95.527925055506543, 30.024528245885826 ], [ -95.527986055878486, 30.024608245956426 ], [ -95.528344056296518, 30.024991245591927 ], [ -95.528413055656188, 30.025076245579047 ], [ -95.528491056045553, 30.025152245880367 ], [ -95.528577056180609, 30.025225246051065 ], [ -95.528727055867975, 30.025421246017693 ], [ -95.528910056353496, 30.025621245544478 ], [ -95.5289760556593, 30.025694245883326 ], [ -95.529153055640521, 30.025874245604918 ], [ -95.52932805655459, 30.026073246300776 ], [ -95.529415055748814, 30.026181245571106 ], [ -95.529869056771602, 30.026674245832819 ], [ -95.530056055971031, 30.026865245535891 ], [ -95.530235056239562, 30.027060246077937 ], [ -95.53054905678502, 30.027410246349675 ], [ -95.530684056103695, 30.027576246463966 ], [ -95.530972056555584, 30.027935246000489 ], [ -95.531139056506262, 30.028169245946646 ], [ -95.531166056778176, 30.028209246395281 ], [ -95.531532056438834, 30.02876524617005 ], [ -95.531910056451864, 30.029378246369916 ], [ -95.532026057019664, 30.02956524604318 ], [ -95.532078057310656, 30.029661246729784 ], [ -95.532111057045327, 30.029703246603617 ], [ -95.532193056636032, 30.029805246359327 ], [ -95.532351057033623, 30.030061246541958 ], [ -95.532388057178693, 30.030114246964683 ], [ -95.532672057166664, 30.030541246257343 ], [ -95.532976057473917, 30.031000246326236 ], [ -95.533116057158225, 30.031210246411124 ], [ -95.533816057936548, 30.032260246952081 ], [ -95.534014057390763, 30.032562246953205 ], [ -95.534115057538955, 30.032746247314591 ], [ -95.534175057691726, 30.032822247071074 ], [ -95.534193057733589, 30.03285524732631 ], [ -95.534222057392583, 30.032909247489791 ], [ -95.534448057928159, 30.033276247539984 ], [ -95.534887057628609, 30.033926247446765 ], [ -95.535053057706435, 30.034191247156645 ], [ -95.535158058520054, 30.034378247778484 ], [ -95.535198057879441, 30.03445824760707 ], [ -95.535315058345049, 30.034715247716452 ], [ -95.53539105781546, 30.034899247556499 ], [ -95.535740058091079, 30.035830247502695 ], [ -95.535891058715976, 30.036217247268645 ], [ -95.536017058772103, 30.036510247351881 ], [ -95.536061058750434, 30.036603247349209 ], [ -95.536162058192147, 30.036844247840566 ], [ -95.5363780584632, 30.037412247533553 ], [ -95.536568058301498, 30.037907248297209 ], [ -95.536602058409727, 30.03802224800188 ], [ -95.536630058346333, 30.038141248369254 ], [ -95.536703058577586, 30.038258247804315 ], [ -95.536796058388589, 30.038506248249725 ], [ -95.536848058729561, 30.038626247955801 ], [ -95.537007058698123, 30.039059248099711 ], [ -95.537100058377646, 30.039304248158107 ], [ -95.537131059015849, 30.039400248473349 ], [ -95.537165059244614, 30.03948824828846 ], [ -95.537188059127061, 30.039574247981164 ], [ -95.537219058764563, 30.039653247884797 ], [ -95.537268058574526, 30.039727248504541 ], [ -95.537369058718809, 30.040000248334945 ], [ -95.53739105883426, 30.040102248709527 ], [ -95.537448058769428, 30.040303248587112 ], [ -95.53748305858538, 30.040450248158084 ], [ -95.53756605940859, 30.040897248666585 ], [ -95.537581059346124, 30.040986248848686 ], [ -95.537606059461794, 30.041128248718213 ], [ -95.537638058662537, 30.041312248334844 ], [ -95.537833058885141, 30.042424249117964 ], [ -95.537964058848942, 30.043208249271999 ], [ -95.53801505935094, 30.04355524936387 ], [ -95.538100058957468, 30.044132249599791 ], [ -95.538131058974699, 30.044249248927819 ], [ -95.538120059669069, 30.044364249327948 ], [ -95.538152059297943, 30.044463249684398 ], [ -95.538411059779264, 30.045929249652559 ], [ -95.538652059802445, 30.045919249292737 ], [ -95.538835059540759, 30.045886249814178 ], [ -95.539064059372336, 30.045830249302206 ], [ -95.539150059963049, 30.04580224963938 ], [ -95.539332060128956, 30.04572924920765 ], [ -95.539425059650114, 30.045685249711301 ], [ -95.539519059747704, 30.045634249617745 ], [ -95.539613059289152, 30.045576249320234 ], [ -95.539821059656262, 30.045462249110091 ], [ -95.540935060298281, 30.044828248876598 ], [ -95.54135606050437, 30.044603249217506 ], [ -95.541493060329472, 30.0445282492954 ], [ -95.541681060507841, 30.044427248941812 ], [ -95.541886060396507, 30.04432324889742 ], [ -95.542128060224698, 30.044196248907909 ], [ -95.542514060695723, 30.043992248939151 ], [ -95.542865060554576, 30.043798249296909 ], [ -95.54331806064765, 30.043536248482241 ], [ -95.543431060456072, 30.043464248489133 ], [ -95.54407306080418, 30.043096248864828 ], [ -95.5444590612491, 30.042868248426419 ], [ -95.544560061189031, 30.042804248654889 ], [ -95.544843061237529, 30.042579248544925 ], [ -95.544933060932394, 30.042494248696681 ], [ -95.544975060800056, 30.042454248380611 ], [ -95.545037061320272, 30.042372248877662 ], [ -95.545302060564097, 30.042112248310332 ], [ -95.545578060764029, 30.041799248387353 ], [ -95.545741060990494, 30.041568248256173 ], [ -95.545933060875427, 30.041258248211342 ], [ -95.54655806138075, 30.040069248256575 ], [ -95.546851061084666, 30.039664247700241 ], [ -95.547098061590745, 30.039345247556081 ], [ -95.547795061722695, 30.038712248161989 ], [ -95.548291061222201, 30.038324247595249 ], [ -95.548396062033177, 30.038245247323559 ], [ -95.549520061615567, 30.037645247395439 ], [ -95.549930061452869, 30.037411247582003 ], [ -95.55087506239461, 30.036873247542957 ], [ -95.550989062084298, 30.036815247412139 ], [ -95.55141906230628, 30.036564247162502 ], [ -95.551918062578707, 30.036274247346 ], [ -95.552557062382917, 30.035903246661235 ], [ -95.55265006249472, 30.035844247002135 ], [ -95.553109063152604, 30.035583247005228 ], [ -95.553189062886815, 30.035538246795095 ], [ -95.553527062924559, 30.035333246439301 ], [ -95.553630062789921, 30.035263246975966 ], [ -95.553822062354556, 30.035116246949077 ], [ -95.553994063230846, 30.034960247171949 ], [ -95.554155062532061, 30.034785246304409 ], [ -95.55430906269136, 30.034590246816382 ], [ -95.55517806323644, 30.03337024685057 ], [ -95.555312063032289, 30.033162246779852 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 254, "Tract": "48201240704", "Area_SqMi": 0.84552763284324062, "total_2009": 782, "total_2010": 577, "total_2011": 910, "total_2012": 750, "total_2013": 1107, "total_2014": 965, "total_2015": 971, "total_2016": 951, "total_2017": 1027, "total_2018": 1021, "total_2019": 882, "total_2020": 771, "age1": 370, "age2": 451, "age3": 148, "earn1": 278, "earn2": 370, "earn3": 321, "naics_s01": 11, "naics_s02": 0, "naics_s03": 0, "naics_s04": 83, "naics_s05": 8, "naics_s06": 24, "naics_s07": 154, "naics_s08": 0, "naics_s09": 0, "naics_s10": 15, "naics_s11": 5, "naics_s12": 23, "naics_s13": 0, "naics_s14": 307, "naics_s15": 0, "naics_s16": 16, "naics_s17": 0, "naics_s18": 200, "naics_s19": 123, "naics_s20": 0, "race1": 662, "race2": 236, "race3": 8, "race4": 45, "race5": 1, "race6": 17, "ethnicity1": 584, "ethnicity2": 385, "edu1": 166, "edu2": 168, "edu3": 174, "edu4": 91, "Shape_Length": 21497.487854524101, "Shape_Area": 23571863.268663056, "total_2021": 833, "total_2022": 969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429007030318033, 30.021348248739777 ], [ -95.428989030487983, 30.021157248058728 ], [ -95.428980030049658, 30.021008247897939 ], [ -95.428973030070964, 30.020939248465989 ], [ -95.428972029995933, 30.020925248186678 ], [ -95.428792030345804, 30.01907024778086 ], [ -95.428775030228337, 30.018918247676133 ], [ -95.428751029683269, 30.01869224775929 ], [ -95.42862103025854, 30.017484247497823 ], [ -95.428457029350724, 30.015629246914834 ], [ -95.42829202951512, 30.013814246677086 ], [ -95.428241029173094, 30.013097247078175 ], [ -95.428169029947028, 30.012555246155305 ], [ -95.427933029911614, 30.010652246499269 ], [ -95.427922029442314, 30.010584246004758 ], [ -95.427738029569639, 30.009338245868154 ], [ -95.427471029708357, 30.007523246009594 ], [ -95.427368029209859, 30.006977245409928 ], [ -95.427218029583685, 30.006182245698142 ], [ -95.427194029215215, 30.006061245311571 ], [ -95.427170029472194, 30.005937245649605 ], [ -95.427062028823201, 30.005938245156827 ], [ -95.426985029376979, 30.005940245175974 ], [ -95.426870029151132, 30.005944245367633 ], [ -95.426785029116886, 30.00594724553082 ], [ -95.426645029213773, 30.005959245323261 ], [ -95.426526029217456, 30.005971244915465 ], [ -95.426393028873406, 30.005988245024643 ], [ -95.425045028879282, 30.006164245049664 ], [ -95.424909028876343, 30.006181245104347 ], [ -95.424488027955121, 30.006238245364319 ], [ -95.42348702790207, 30.006343245854676 ], [ -95.422147028005384, 30.006463245134892 ], [ -95.421927028066989, 30.006483245262352 ], [ -95.421467027594517, 30.006524246027908 ], [ -95.421359027397443, 30.005932245373813 ], [ -95.421322027207594, 30.005819245413392 ], [ -95.421195027063419, 30.005553245270345 ], [ -95.421151027948298, 30.005401244958762 ], [ -95.420785027556335, 30.003429245313058 ], [ -95.420751027085231, 30.003318244780381 ], [ -95.420704027633818, 30.003230245018134 ], [ -95.420670027640639, 30.003185245071645 ], [ -95.42061202727885, 30.003116244882573 ], [ -95.420571027363337, 30.003081244952146 ], [ -95.420516027556332, 30.003042245358628 ], [ -95.420391027149094, 30.002981244575135 ], [ -95.420290027208466, 30.002945244938665 ], [ -95.419979027345917, 30.002864245282336 ], [ -95.419886027195474, 30.002856244621416 ], [ -95.419783027513049, 30.002866244795264 ], [ -95.419666027225659, 30.002904244479776 ], [ -95.41901302670577, 30.003277244676902 ], [ -95.418309026401971, 30.003688245475491 ], [ -95.417579026154442, 30.004113245172022 ], [ -95.41686402611721, 30.004532245405713 ], [ -95.416147025900131, 30.004952245492522 ], [ -95.413698026080127, 30.00638024581027 ], [ -95.412900025895041, 30.006845246418315 ], [ -95.412191025287385, 30.007257245866725 ], [ -95.411786024916452, 30.007494245767393 ], [ -95.41169702475689, 30.007542246218129 ], [ -95.413085025518924, 30.009307246457922 ], [ -95.413136026087301, 30.009360246896584 ], [ -95.413380025245701, 30.009612246587935 ], [ -95.415009026209404, 30.011154246813032 ], [ -95.41515002602047, 30.011301246812245 ], [ -95.415208026148619, 30.011362246821477 ], [ -95.415425026041063, 30.011614246653679 ], [ -95.415530025951909, 30.011749247006506 ], [ -95.415571026181894, 30.01180124667686 ], [ -95.415734026396763, 30.012031246954535 ], [ -95.41588502628116, 30.012268246779279 ], [ -95.416044026749162, 30.012551246961721 ], [ -95.4161660269408, 30.012800246972947 ], [ -95.416274026945018, 30.013054247336093 ], [ -95.416369026384316, 30.013311247551233 ], [ -95.416449026763516, 30.013573246809887 ], [ -95.416495027115474, 30.013748247140182 ], [ -95.416540027062069, 30.013905247634213 ], [ -95.416757026999079, 30.014655247197457 ], [ -95.416849026702891, 30.014913247233505 ], [ -95.41685402727505, 30.014926247814206 ], [ -95.416937026552887, 30.015125247818556 ], [ -95.417056026413377, 30.015375247922414 ], [ -95.417215026685938, 30.015659248047992 ], [ -95.417367026783168, 30.015895247908066 ], [ -95.417533027512007, 30.016123247657074 ], [ -95.417712027087745, 30.016344247668439 ], [ -95.417905027343593, 30.016556247405912 ], [ -95.418297026848776, 30.016943247521798 ], [ -95.418492027862698, 30.017153248082753 ], [ -95.418704027444988, 30.017409247482501 ], [ -95.418872027995135, 30.017637248072869 ], [ -95.419028027720856, 30.017871248403978 ], [ -95.419171027797972, 30.01811124807022 ], [ -95.41934002816582, 30.018440248051903 ], [ -95.419450028063054, 30.018693248578202 ], [ -95.419546028171993, 30.018951248030742 ], [ -95.419628028123142, 30.019211248060536 ], [ -95.419696028061523, 30.019476247971696 ], [ -95.419748027891998, 30.019742248408402 ], [ -95.419786027347527, 30.020011248643527 ], [ -95.419797028296188, 30.020116248241603 ], [ -95.419849028130415, 30.020374248098772 ], [ -95.419967027893065, 30.02096324855648 ], [ -95.420069027588909, 30.021477248632912 ], [ -95.420415028579953, 30.022647248891158 ], [ -95.420506027916872, 30.023104248848238 ], [ -95.420570028099391, 30.023571249266521 ], [ -95.421790028324381, 30.023332249356482 ], [ -95.423122028698685, 30.023007248711522 ], [ -95.423895029225548, 30.02283824856146 ], [ -95.42775102954613, 30.021715248566373 ], [ -95.428051029526571, 30.021628248472492 ], [ -95.42813803053977, 30.021603248614575 ], [ -95.42836202982997, 30.021537248401714 ], [ -95.428414030181841, 30.021522248105665 ], [ -95.428607030102597, 30.02146624801119 ], [ -95.428743030449795, 30.021426248837429 ], [ -95.428783029852923, 30.021414248173571 ], [ -95.428887030259887, 30.021384248135902 ], [ -95.429007030318033, 30.021348248739777 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 255, "Tract": "48201551300", "Area_SqMi": 0.76709452948216339, "total_2009": 207, "total_2010": 183, "total_2011": 241, "total_2012": 288, "total_2013": 225, "total_2014": 250, "total_2015": 217, "total_2016": 253, "total_2017": 269, "total_2018": 189, "total_2019": 182, "total_2020": 138, "age1": 33, "age2": 68, "age3": 34, "earn1": 24, "earn2": 43, "earn3": 68, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 0, "naics_s06": 1, "naics_s07": 4, "naics_s08": 2, "naics_s09": 0, "naics_s10": 3, "naics_s11": 0, "naics_s12": 30, "naics_s13": 0, "naics_s14": 20, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 3, "naics_s19": 32, "naics_s20": 0, "race1": 88, "race2": 30, "race3": 1, "race4": 13, "race5": 0, "race6": 3, "ethnicity1": 90, "ethnicity2": 45, "edu1": 23, "edu2": 29, "edu3": 29, "edu4": 21, "Shape_Length": 19400.69487391728, "Shape_Area": 21385282.586554237, "total_2021": 143, "total_2022": 135 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.520362050367424, 29.950286230480852 ], [ -95.520455050843481, 29.950231230535209 ], [ -95.520138050817124, 29.949797230380533 ], [ -95.519722050552858, 29.949223230090784 ], [ -95.519588050364959, 29.94922423043721 ], [ -95.519007049902172, 29.949158230372554 ], [ -95.518868049632232, 29.949125230184688 ], [ -95.518767049832448, 29.949065230752598 ], [ -95.518685050337652, 29.949037230251374 ], [ -95.518540049611445, 29.949031230913015 ], [ -95.518382050203286, 29.949048230502285 ], [ -95.518275050080405, 29.949026230705289 ], [ -95.518073049742554, 29.948976230337212 ], [ -95.517833049857401, 29.948883230819014 ], [ -95.517618050078553, 29.948811230683926 ], [ -95.517435049259959, 29.948723230760898 ], [ -95.517366049331173, 29.948657230492152 ], [ -95.517303049234727, 29.948624230686445 ], [ -95.517189049855645, 29.948580230385282 ], [ -95.51660204938257, 29.948294230043711 ], [ -95.516425049256185, 29.948195230299373 ], [ -95.515794049506852, 29.947695230074459 ], [ -95.515573048722274, 29.947563230641428 ], [ -95.515062048930091, 29.947288230551134 ], [ -95.514721048326678, 29.947145230585313 ], [ -95.513440048179362, 29.94668223029953 ], [ -95.51306104809278, 29.946578230664461 ], [ -95.512575048683644, 29.946402230630667 ], [ -95.512348048553918, 29.946374230376133 ], [ -95.512180047753915, 29.946368230372762 ], [ -95.51201404822514, 29.946363229864197 ], [ -95.511654048276483, 29.946412229882494 ], [ -95.511199048220391, 29.946407230024352 ], [ -95.510644047767187, 29.946368230518726 ], [ -95.510385048043887, 29.946341230163902 ], [ -95.51010104717875, 29.946329230160675 ], [ -95.51000004766658, 29.94631323015167 ], [ -95.509874047070028, 29.946269230083381 ], [ -95.50981704776369, 29.946258230533733 ], [ -95.509552047083659, 29.946291230527084 ], [ -95.50938804700472, 29.946285229950139 ], [ -95.509091047334962, 29.946241229960417 ], [ -95.508681047004075, 29.946159229866261 ], [ -95.508491047121353, 29.946104230498026 ], [ -95.508138046883559, 29.946054230139474 ], [ -95.507746047385368, 29.946087230329979 ], [ -95.507273047236922, 29.94623523030921 ], [ -95.506888047256226, 29.946389230700582 ], [ -95.506635046855493, 29.946526230385707 ], [ -95.506490046607155, 29.946570230023546 ], [ -95.506029046790403, 29.946674230203534 ], [ -95.505772046060642, 29.946748230433691 ], [ -95.505587046880734, 29.946801230167235 ], [ -95.505240046709261, 29.94688323037861 ], [ -95.504969046658772, 29.946910230935728 ], [ -95.504710046641932, 29.946916230689791 ], [ -95.504432045918065, 29.946899230218296 ], [ -95.504123045784226, 29.94683823065844 ], [ -95.503782045546956, 29.946756230612763 ], [ -95.503555045572668, 29.946690230253036 ], [ -95.503384045445827, 29.946629230684668 ], [ -95.503264045851509, 29.946607230385329 ], [ -95.503157045429759, 29.946596230782397 ], [ -95.502936046180679, 29.946629230249417 ], [ -95.502715045593433, 29.946684230690234 ], [ -95.502627045382283, 29.946689230200672 ], [ -95.502494046137869, 29.946667230831288 ], [ -95.502415045328107, 29.946705230233274 ], [ -95.502292045318228, 29.946766230981058 ], [ -95.501806045782757, 29.946843230786637 ], [ -95.501326045257528, 29.947030230498545 ], [ -95.501193045086453, 29.947096230809347 ], [ -95.500960044975585, 29.947195230722095 ], [ -95.500631045676528, 29.947304230578435 ], [ -95.500082044897411, 29.947535230785583 ], [ -95.50001004466543, 29.947536231179274 ], [ -95.49958104536293, 29.947679231144697 ], [ -95.499379045327672, 29.947850230636764 ], [ -95.499177044910255, 29.94818523107115 ], [ -95.498900044915047, 29.948532231109603 ], [ -95.498616044801324, 29.948647231170604 ], [ -95.498332044951866, 29.948686231303931 ], [ -95.49829104437147, 29.948688231590108 ], [ -95.498065044627495, 29.948697231145623 ], [ -95.498081045097038, 29.949161231700035 ], [ -95.498096044943281, 29.949558231678743 ], [ -95.498107045024554, 29.949859231403796 ], [ -95.498128044931718, 29.950603231532796 ], [ -95.498145044881269, 29.95111723204667 ], [ -95.498165045186298, 29.951709231594439 ], [ -95.498186044943537, 29.95226823158637 ], [ -95.498187045239916, 29.952300231664076 ], [ -95.4981880446432, 29.952315231575696 ], [ -95.498194045152943, 29.952568232134738 ], [ -95.498205045225319, 29.953008231919583 ], [ -95.498296045406406, 29.955667232479087 ], [ -95.498329044698195, 29.95663923274369 ], [ -95.498340044565722, 29.956872233025933 ], [ -95.498496044832208, 29.956863232981064 ], [ -95.499019044877414, 29.956859233060275 ], [ -95.499289045448847, 29.956865232414962 ], [ -95.499426045799908, 29.956876232612792 ], [ -95.499565045763404, 29.956892232750246 ], [ -95.499707045422852, 29.956914232777283 ], [ -95.499850045360091, 29.956942232910627 ], [ -95.499912045014355, 29.956957232627641 ], [ -95.499994045601099, 29.956976233146804 ], [ -95.500047045231199, 29.956991232859806 ], [ -95.500137045894832, 29.957015232729479 ], [ -95.500422045391574, 29.957112232635883 ], [ -95.500562045196943, 29.957170233197996 ], [ -95.500699045387435, 29.957235232564837 ], [ -95.500834045267837, 29.957306233261662 ], [ -95.500966045907333, 29.957382232669023 ], [ -95.501094045811129, 29.957464232735585 ], [ -95.501220045648168, 29.957551233197854 ], [ -95.501340045540218, 29.957643232727566 ], [ -95.501455045996593, 29.957738232923035 ], [ -95.50156304551048, 29.957836233092923 ], [ -95.50166404614238, 29.95793723330771 ], [ -95.501758045840177, 29.958041232627227 ], [ -95.50184504644298, 29.958149232977732 ], [ -95.501926045584966, 29.958258233111408 ], [ -95.501954045942753, 29.958301233126992 ], [ -95.50197404647092, 29.95833023329854 ], [ -95.5020010458896, 29.958371233282982 ], [ -95.502071045685014, 29.958487233277609 ], [ -95.502114046398063, 29.958567232674966 ], [ -95.502194045719634, 29.958725232890757 ], [ -95.502339046374075, 29.959062233575139 ], [ -95.502500046663201, 29.959478232977311 ], [ -95.502533046671076, 29.95956423288288 ], [ -95.502682046161453, 29.95955123303338 ], [ -95.503053046125203, 29.959513233503177 ], [ -95.503219045947802, 29.959484233538284 ], [ -95.503385046926709, 29.959461232844145 ], [ -95.503814046490433, 29.959334232809027 ], [ -95.504143046487854, 29.959196232953449 ], [ -95.504375046972612, 29.959079232719084 ], [ -95.504547046352329, 29.958984232803118 ], [ -95.504718046923742, 29.9588752329425 ], [ -95.504943046429375, 29.958765233125963 ], [ -95.505601047104804, 29.958382232815765 ], [ -95.505722047534576, 29.958300232580644 ], [ -95.505759047008567, 29.958259232777905 ], [ -95.505766046685167, 29.958170232915908 ], [ -95.505822047117235, 29.958241233096146 ], [ -95.505911047106139, 29.958235232846462 ], [ -95.506112047502697, 29.958141232982953 ], [ -95.506392047278212, 29.958019232525167 ], [ -95.506704047021117, 29.957867232870019 ], [ -95.506801047133891, 29.95781623271559 ], [ -95.507198047381507, 29.95759523259661 ], [ -95.507685047106648, 29.957327232815544 ], [ -95.507735047552828, 29.957296232751325 ], [ -95.507970047990213, 29.957172232775235 ], [ -95.508096047593156, 29.957097232709707 ], [ -95.509125047290823, 29.956513232575908 ], [ -95.509318048206637, 29.956399232804884 ], [ -95.509422047657083, 29.956342231915482 ], [ -95.509883048232709, 29.956085232315587 ], [ -95.509971047933263, 29.956023231812075 ], [ -95.51015804788068, 29.955934232451547 ], [ -95.510536048013535, 29.955722232094221 ], [ -95.510636048467219, 29.95566223178508 ], [ -95.510835047900997, 29.955555231840719 ], [ -95.511538048419766, 29.955158231810678 ], [ -95.511644048178013, 29.955094232075567 ], [ -95.512252048513844, 29.954766231704998 ], [ -95.512444048172881, 29.9546582316685 ], [ -95.513026048690477, 29.954364231383977 ], [ -95.513244048352078, 29.954247231648729 ], [ -95.513274049116049, 29.954229231711764 ], [ -95.513744049034074, 29.953955231687477 ], [ -95.51394804929582, 29.953838231967119 ], [ -95.514084048503335, 29.953761231415694 ], [ -95.514913048774133, 29.95330923128477 ], [ -95.517375049586903, 29.951932230880249 ], [ -95.517663049479282, 29.95177723078945 ], [ -95.517819049673491, 29.951687231017665 ], [ -95.517944050316487, 29.951623230949412 ], [ -95.518076049920637, 29.951546231030289 ], [ -95.518629049692066, 29.951241231408655 ], [ -95.51906104992203, 29.951002230812275 ], [ -95.520362050367424, 29.950286230480852 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 256, "Tract": "48201541008", "Area_SqMi": 2.1888610839104312, "total_2009": 1738, "total_2010": 1588, "total_2011": 2088, "total_2012": 1827, "total_2013": 1980, "total_2014": 2706, "total_2015": 2803, "total_2016": 2353, "total_2017": 2326, "total_2018": 2613, "total_2019": 3334, "total_2020": 3293, "age1": 420, "age2": 1709, "age3": 790, "earn1": 299, "earn2": 446, "earn3": 2174, "naics_s01": 9, "naics_s02": 3, "naics_s03": 27, "naics_s04": 119, "naics_s05": 1007, "naics_s06": 496, "naics_s07": 56, "naics_s08": 13, "naics_s09": 4, "naics_s10": 31, "naics_s11": 53, "naics_s12": 472, "naics_s13": 33, "naics_s14": 164, "naics_s15": 0, "naics_s16": 101, "naics_s17": 309, "naics_s18": 1, "naics_s19": 21, "naics_s20": 0, "race1": 2322, "race2": 318, "race3": 29, "race4": 206, "race5": 4, "race6": 40, "ethnicity1": 1965, "ethnicity2": 954, "edu1": 467, "edu2": 648, "edu3": 753, "edu4": 631, "Shape_Length": 38449.306163143148, "Shape_Area": 61021700.746236898, "total_2021": 2788, "total_2022": 2919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.675909090146021, 29.947994224684891 ], [ -95.676314089933342, 29.947151224820747 ], [ -95.674211089863988, 29.946493225092258 ], [ -95.673755089271239, 29.946306224365156 ], [ -95.673350089531439, 29.946140224440171 ], [ -95.671471088529074, 29.945369224805361 ], [ -95.670982088788719, 29.945120224345281 ], [ -95.670785088825752, 29.945020224473179 ], [ -95.670345087960825, 29.944729224554855 ], [ -95.669911087922287, 29.944377224444661 ], [ -95.669569088617365, 29.94407722462601 ], [ -95.669226087675099, 29.943737224314006 ], [ -95.668973087795791, 29.943435224096543 ], [ -95.66870008753979, 29.942997224063927 ], [ -95.668473087808835, 29.942582223697286 ], [ -95.668057087667577, 29.941727223602374 ], [ -95.667517087809557, 29.940396223979491 ], [ -95.667501087037792, 29.939669223204874 ], [ -95.667474087331144, 29.939097223635301 ], [ -95.66747208755794, 29.939038223140479 ], [ -95.667515087808852, 29.937963223441116 ], [ -95.667559087831194, 29.937515222766326 ], [ -95.667616087755988, 29.936949223259898 ], [ -95.667737086956578, 29.936045222750202 ], [ -95.667793087138861, 29.935531222871621 ], [ -95.667837087537166, 29.935030222292642 ], [ -95.667860087874445, 29.934661222624005 ], [ -95.667826087361249, 29.934249222114165 ], [ -95.667795087401316, 29.934065222352942 ], [ -95.667748087376239, 29.933780222665085 ], [ -95.667670087243792, 29.933290222539881 ], [ -95.667525087628945, 29.93274322182889 ], [ -95.667324086660756, 29.932274221531458 ], [ -95.667126087161932, 29.931867222045462 ], [ -95.666596086569925, 29.930954222124864 ], [ -95.666145086857554, 29.930176221411354 ], [ -95.666091086547482, 29.930056221791343 ], [ -95.665937086878458, 29.929501221239391 ], [ -95.665928086733658, 29.929467221502136 ], [ -95.665674086310446, 29.928867220994341 ], [ -95.665637086219874, 29.928723221245377 ], [ -95.665619086893827, 29.92865422169999 ], [ -95.665603086213309, 29.928291221251424 ], [ -95.6655880868596, 29.927971221552763 ], [ -95.665612086687929, 29.927257221072665 ], [ -95.665635086330695, 29.926993220902283 ], [ -95.665697086077088, 29.926605221174633 ], [ -95.665867086956567, 29.926169220371943 ], [ -95.666056086792167, 29.925712220401518 ], [ -95.666107086242349, 29.925589220957455 ], [ -95.667051086663704, 29.923732220136468 ], [ -95.667939086863171, 29.922156220327324 ], [ -95.668196086479654, 29.921570220011596 ], [ -95.66835608701264, 29.920741219532111 ], [ -95.668477086716592, 29.919871219666231 ], [ -95.668517086952349, 29.91902821888096 ], [ -95.668464086411163, 29.918563218764461 ], [ -95.668427087075202, 29.917682218582421 ], [ -95.668428086991682, 29.917631219282608 ], [ -95.665014085719065, 29.917625219176209 ], [ -95.658803084539812, 29.917725219127167 ], [ -95.658043084178317, 29.91772821949861 ], [ -95.657119083613338, 29.91773221955674 ], [ -95.656820084000159, 29.91773321911608 ], [ -95.655958083579549, 29.917736219352385 ], [ -95.655899083206052, 29.917736219581101 ], [ -95.655446083555489, 29.917738219351001 ], [ -95.6550350829351, 29.917739219120129 ], [ -95.654941083172744, 29.917740219461884 ], [ -95.654123083363345, 29.917743219668569 ], [ -95.653631083463793, 29.917745219438419 ], [ -95.653549083207153, 29.917745219206619 ], [ -95.653415082678308, 29.917736219906828 ], [ -95.652182082867853, 29.917709219271448 ], [ -95.651938082056446, 29.917714219800612 ], [ -95.650318081710836, 29.917725219793017 ], [ -95.650058082318196, 29.917725219988327 ], [ -95.649209081496295, 29.917673219627734 ], [ -95.648735082074651, 29.917605219655712 ], [ -95.648184082035087, 29.91748222004966 ], [ -95.647908081209664, 29.917402219755836 ], [ -95.647670081620916, 29.917717220007258 ], [ -95.647468080908354, 29.917961219385312 ], [ -95.647050081297124, 29.918450219578681 ], [ -95.646884081547356, 29.918667220253855 ], [ -95.646711080969908, 29.918914220170191 ], [ -95.646566080864403, 29.919147220387906 ], [ -95.646433081405419, 29.919390220098673 ], [ -95.6463030814067, 29.919663219864752 ], [ -95.646186081293294, 29.919948219838272 ], [ -95.646088081373307, 29.920232220607691 ], [ -95.646008081426373, 29.920517220753005 ], [ -95.645954081264193, 29.920770220495172 ], [ -95.645935081004794, 29.920904220609216 ], [ -95.645908081105389, 29.921090220283645 ], [ -95.645885081383128, 29.921345220320752 ], [ -95.645874080691542, 29.921632220747362 ], [ -95.645892081663732, 29.923538220794999 ], [ -95.645898081610341, 29.923648221040605 ], [ -95.645893081411714, 29.923765221014904 ], [ -95.645905080974472, 29.924220221318798 ], [ -95.645915081242279, 29.924324221113785 ], [ -95.6459340809362, 29.924407221242863 ], [ -95.645909081662111, 29.924666220831316 ], [ -95.645910081089752, 29.92489622105807 ], [ -95.64591308166375, 29.924979221208662 ], [ -95.645915081419247, 29.925016220976946 ], [ -95.645906081612694, 29.925133221139603 ], [ -95.645918081255545, 29.92525822102267 ], [ -95.645926081704758, 29.925635221449841 ], [ -95.645931081225996, 29.926340221812826 ], [ -95.645934081852488, 29.926701221189848 ], [ -95.645944081510962, 29.926815221204969 ], [ -95.645946081226271, 29.92691222202361 ], [ -95.645938081454432, 29.926993221552401 ], [ -95.645940081470499, 29.927170221393609 ], [ -95.645966081045572, 29.927489221761544 ], [ -95.645983081456194, 29.927641221916709 ], [ -95.646032081665751, 29.927938222193898 ], [ -95.646107081592106, 29.928251221832017 ], [ -95.646188081687356, 29.928519221826907 ], [ -95.646285081990015, 29.928796221959402 ], [ -95.646308081359862, 29.928883221760245 ], [ -95.646459081260261, 29.929177222085549 ], [ -95.646615081334971, 29.929465222361539 ], [ -95.646766081987465, 29.929710222505911 ], [ -95.646939081391878, 29.929966222657345 ], [ -95.647068082330904, 29.930138221992717 ], [ -95.647205082330757, 29.930302222166382 ], [ -95.647288082283566, 29.930389222139791 ], [ -95.647419081642852, 29.930546222693689 ], [ -95.648045082540207, 29.931130222248914 ], [ -95.648143082642392, 29.931228222887228 ], [ -95.648368082253512, 29.931467222773811 ], [ -95.648517082324645, 29.931639222563753 ], [ -95.648590082563629, 29.931729222973182 ], [ -95.648779082397482, 29.931991222920018 ], [ -95.648967082067159, 29.932277222685062 ], [ -95.64907708244391, 29.932468222595162 ], [ -95.649277083046925, 29.932866222440644 ], [ -95.649326082598435, 29.932952222455711 ], [ -95.649466082196099, 29.933259222430074 ], [ -95.649545082670926, 29.933419222452532 ], [ -95.649993082470573, 29.934326223361751 ], [ -95.650175082713602, 29.934706222979187 ], [ -95.650221082419066, 29.934794222685227 ], [ -95.650281082771926, 29.934963223010516 ], [ -95.650303082440217, 29.935037222676943 ], [ -95.650315083310588, 29.93511122284302 ], [ -95.650312083394624, 29.935189223365526 ], [ -95.650317082808186, 29.935257222836569 ], [ -95.650312082755718, 29.935385223637176 ], [ -95.650291083438418, 29.935515223283705 ], [ -95.650286082588181, 29.935535223628925 ], [ -95.650283082725295, 29.935660223699184 ], [ -95.650271083378783, 29.935736223417322 ], [ -95.650197082427297, 29.93601922351295 ], [ -95.650162082714914, 29.936117223022418 ], [ -95.650149082703351, 29.936152223645152 ], [ -95.650114083217929, 29.936212222952733 ], [ -95.649996082594555, 29.936503223559988 ], [ -95.650197082937808, 29.936642223401741 ], [ -95.651659083180263, 29.937648223170822 ], [ -95.654191083710273, 29.939360224146871 ], [ -95.655588084931097, 29.94033322443163 ], [ -95.656067085143164, 29.940667223711362 ], [ -95.658466085208644, 29.942338224615728 ], [ -95.662697086686521, 29.945275225193054 ], [ -95.663090086244679, 29.945549224618489 ], [ -95.663374086328943, 29.945746225215469 ], [ -95.663917087197049, 29.946121224715348 ], [ -95.664425086855644, 29.946471225385814 ], [ -95.66610408709299, 29.947629225278469 ], [ -95.666943087986994, 29.948217224926999 ], [ -95.667634088361098, 29.948719225325135 ], [ -95.667655087988024, 29.948734225181802 ], [ -95.668030088372035, 29.949007225404593 ], [ -95.668241088178092, 29.949171225771394 ], [ -95.668565088454969, 29.949425225550669 ], [ -95.6685800879293, 29.949436225207471 ], [ -95.669157088022502, 29.949890225949009 ], [ -95.670252088567963, 29.950756225633697 ], [ -95.672701089732854, 29.952551225963404 ], [ -95.673477089506989, 29.953080226063005 ], [ -95.673611090007967, 29.952796225996831 ], [ -95.673681089447271, 29.952652225719095 ], [ -95.673696089816133, 29.952621225857545 ], [ -95.673719089160443, 29.952573226208539 ], [ -95.673779090021895, 29.952448225798435 ], [ -95.673826089775957, 29.952350225959535 ], [ -95.673941089331365, 29.952111225836973 ], [ -95.67400308945318, 29.951983226057596 ], [ -95.67431908939669, 29.951326225185486 ], [ -95.674693090191852, 29.950549225582076 ], [ -95.674916089473342, 29.950076225483112 ], [ -95.675077089872104, 29.949740225519534 ], [ -95.675378089455336, 29.949109225545989 ], [ -95.675472089442863, 29.948908225484658 ], [ -95.675555089799133, 29.948733225129185 ], [ -95.675610089665994, 29.948618224752568 ], [ -95.675909090146021, 29.947994224684891 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 257, "Tract": "48201253601", "Area_SqMi": 1.2038761677217222, "total_2009": 1907, "total_2010": 2091, "total_2011": 2100, "total_2012": 2006, "total_2013": 1952, "total_2014": 2221, "total_2015": 2059, "total_2016": 2282, "total_2017": 2299, "total_2018": 2319, "total_2019": 2444, "total_2020": 2447, "age1": 529, "age2": 1464, "age3": 489, "earn1": 271, "earn2": 734, "earn3": 1477, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 44, "naics_s05": 0, "naics_s06": 0, "naics_s07": 38, "naics_s08": 0, "naics_s09": 0, "naics_s10": 56, "naics_s11": 5, "naics_s12": 193, "naics_s13": 3, "naics_s14": 6, "naics_s15": 2, "naics_s16": 1974, "naics_s17": 5, "naics_s18": 127, "naics_s19": 29, "naics_s20": 0, "race1": 1653, "race2": 515, "race3": 14, "race4": 259, "race5": 2, "race6": 39, "ethnicity1": 1675, "ethnicity2": 807, "edu1": 356, "edu2": 463, "edu3": 665, "edu4": 469, "Shape_Length": 27787.419695773398, "Shape_Area": 33562007.101428069, "total_2021": 2481, "total_2022": 2482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.013271912048253, 29.769897211087333 ], [ -95.013335911881327, 29.769872211318891 ], [ -95.012988912430473, 29.76955921094687 ], [ -95.012107911860582, 29.768676210521804 ], [ -95.011551911487189, 29.768229210869794 ], [ -95.011173911342894, 29.767962210478117 ], [ -95.010806911624471, 29.767642210700217 ], [ -95.010606911210672, 29.767454210384908 ], [ -95.009140910831391, 29.76598321076397 ], [ -95.008547910720651, 29.765392209955007 ], [ -95.008340911221438, 29.765179210413738 ], [ -95.00714191012213, 29.763948209733257 ], [ -95.006384910474651, 29.763171209873711 ], [ -95.006239909826931, 29.763021210060153 ], [ -95.005905909569364, 29.763029210133535 ], [ -95.005732909802006, 29.763033209754319 ], [ -95.005502910354892, 29.763038210041792 ], [ -95.005335909523524, 29.763068209565297 ], [ -95.005075909650913, 29.763144210328264 ], [ -95.004798909461442, 29.763199210195609 ], [ -95.004451910138243, 29.763161209943235 ], [ -95.004338909260355, 29.763128209922176 ], [ -95.00419390982988, 29.763045209624771 ], [ -95.004092909870721, 29.762957210161634 ], [ -95.00407590953543, 29.762932210443285 ], [ -95.003303908820286, 29.76279720972067 ], [ -95.002439909034436, 29.762785210367639 ], [ -95.001768909019376, 29.762861210490161 ], [ -95.001423908490779, 29.762822210257468 ], [ -95.000278908606745, 29.762751210400186 ], [ -95.000168908652029, 29.762755210202378 ], [ -94.999625908430033, 29.762955210346352 ], [ -94.999406908357102, 29.76310121004181 ], [ -94.999285908682012, 29.763045210133011 ], [ -94.998929908316526, 29.762903210542703 ], [ -94.998389908175767, 29.762705210040384 ], [ -94.998118907703628, 29.762568210352722 ], [ -94.997885907389076, 29.762364210237276 ], [ -94.997759908159722, 29.762249210453351 ], [ -94.997689908020405, 29.762172210328934 ], [ -94.997595907831595, 29.762111209657476 ], [ -94.997469907580069, 29.762095209803928 ], [ -94.997311908146514, 29.76191921017686 ], [ -94.996763907631305, 29.761617209593631 ], [ -94.995836907320765, 29.761452209875412 ], [ -94.995660907195457, 29.761430210177643 ], [ -94.995546906893708, 29.761375210358686 ], [ -94.995451906919513, 29.761293209808574 ], [ -94.99538290729258, 29.761211209913135 ], [ -94.995306907578581, 29.761062210003203 ], [ -94.995199907451521, 29.760914209944858 ], [ -94.995048907227115, 29.760743210283668 ], [ -94.994928906739034, 29.760644209628165 ], [ -94.99482790721126, 29.760589209574178 ], [ -94.994752906780946, 29.760534210258371 ], [ -94.994632907454388, 29.760490210067434 ], [ -94.994537906781559, 29.760469210152991 ], [ -94.994405906582202, 29.760469209963492 ], [ -94.994335907234984, 29.760485209509245 ], [ -94.994197906993662, 29.760485209386946 ], [ -94.994031906692641, 29.760462210084537 ], [ -94.993850906859464, 29.760436209986835 ], [ -94.993598907121168, 29.760452210010079 ], [ -94.993377907128377, 29.760337209717726 ], [ -94.993081906345438, 29.760139209591259 ], [ -94.992848906049488, 29.760040209348148 ], [ -94.992659906507541, 29.759991209735293 ], [ -94.992596906368021, 29.759963209470339 ], [ -94.992489906483598, 29.759903210080537 ], [ -94.992085906601758, 29.759601210142076 ], [ -94.991770906587277, 29.759485209742554 ], [ -94.991518906614672, 29.75933721002329 ], [ -94.991488906289277, 29.759305209620639 ], [ -94.990388905545146, 29.759685210077691 ], [ -94.989424905552298, 29.759999210182475 ], [ -94.988400905231885, 29.760332210342938 ], [ -94.98696790460798, 29.760618209733277 ], [ -94.9866529047775, 29.760644210029348 ], [ -94.986368904519509, 29.760667210280193 ], [ -94.986068904976975, 29.760692210521373 ], [ -94.985968905101942, 29.760701209724388 ], [ -94.982397903718294, 29.760806210502022 ], [ -94.980190902787839, 29.760871210173288 ], [ -94.979930903169105, 29.760884210109893 ], [ -94.979732902944349, 29.760898210421484 ], [ -94.979615902681942, 29.760915210589879 ], [ -94.979180903029913, 29.761035210434773 ], [ -94.978614902600341, 29.761199210405596 ], [ -94.978475903097575, 29.761239210795747 ], [ -94.97829790269455, 29.761258210272921 ], [ -94.977373902117776, 29.761283210340537 ], [ -94.977395902396609, 29.762176211000298 ], [ -94.977401902360555, 29.762403210875021 ], [ -94.977415902921067, 29.762983210869187 ], [ -94.977423902986217, 29.763280210639916 ], [ -94.977454903235568, 29.764545211432424 ], [ -94.977461902592708, 29.764845211601404 ], [ -94.977473902323098, 29.765332211515069 ], [ -94.977471903316612, 29.765628211256026 ], [ -94.977475902557302, 29.765837211102284 ], [ -94.977481902750569, 29.766135211329772 ], [ -94.977485903085793, 29.766361212030787 ], [ -94.977491902709545, 29.766647211752829 ], [ -94.977497902979735, 29.766954211564602 ], [ -94.977512902846726, 29.767152211878347 ], [ -94.977518902804164, 29.767506212224564 ], [ -94.977521902476198, 29.767664211906091 ], [ -94.977524902426467, 29.767846211561618 ], [ -94.977534902500636, 29.768509212470551 ], [ -94.977542903217184, 29.768956212230449 ], [ -94.977548902969176, 29.769296212328609 ], [ -94.977553903484178, 29.769607212724406 ], [ -94.977555902679129, 29.76975621241963 ], [ -94.977806903180792, 29.769753212532997 ], [ -94.978039902844102, 29.769751211996336 ], [ -94.978265903444125, 29.769748211975035 ], [ -94.978567903118815, 29.769745212029701 ], [ -94.979185903652564, 29.769780212121038 ], [ -94.979287903657678, 29.769786212135841 ], [ -94.980290903208555, 29.769799212064736 ], [ -94.980576903813841, 29.76980221218879 ], [ -94.980993904013005, 29.769807212529066 ], [ -94.98151390349615, 29.769810212494299 ], [ -94.982411903789639, 29.769791212551336 ], [ -94.982693904176983, 29.769790211762249 ], [ -94.983878904278171, 29.76978221188029 ], [ -94.984664904727381, 29.769768212234638 ], [ -94.984998905404183, 29.769772212450537 ], [ -94.985459905252753, 29.769777211858585 ], [ -94.985584905334107, 29.769775212483239 ], [ -94.986205905340512, 29.769766211650339 ], [ -94.987222905284725, 29.769760212135477 ], [ -94.987461905678273, 29.769760212045224 ], [ -94.988625906118713, 29.76974821201302 ], [ -94.988791906233075, 29.769749211845696 ], [ -94.989047905504904, 29.769750211593866 ], [ -94.989295906057365, 29.769752211836334 ], [ -94.989690906437133, 29.769748212219028 ], [ -94.990050906362384, 29.769805211633354 ], [ -94.990319906587558, 29.769836212137076 ], [ -94.990522906008891, 29.769877211457391 ], [ -94.990618905990615, 29.769896211712592 ], [ -94.990928906452623, 29.769973211911797 ], [ -94.991312906774681, 29.770083211970167 ], [ -94.991647906148629, 29.770215211458151 ], [ -94.992086906639898, 29.770404211897077 ], [ -94.992217907160395, 29.770460212027288 ], [ -94.992641907280117, 29.770636211772356 ], [ -94.992746907117237, 29.770670211736149 ], [ -94.993093906652831, 29.770786211959219 ], [ -94.99340390760193, 29.770870211700963 ], [ -94.993593907586202, 29.770921211940511 ], [ -94.993793906861782, 29.770975211907146 ], [ -94.994195907101997, 29.77103421215924 ], [ -94.994890907459109, 29.771079212191268 ], [ -94.995180907147315, 29.771082212093674 ], [ -94.995710907400337, 29.771087211532482 ], [ -94.99655690809719, 29.771083212251135 ], [ -94.99882590878407, 29.771068212199079 ], [ -94.999733908446601, 29.771051211814598 ], [ -95.000460909361365, 29.771037211385838 ], [ -95.00130290962359, 29.771021211380354 ], [ -95.002198908942447, 29.770990211823467 ], [ -95.002550910005965, 29.770959211523522 ], [ -95.002696909780738, 29.770946211360993 ], [ -95.003352909982084, 29.770936211503798 ], [ -95.003765910175034, 29.770930211930505 ], [ -95.004158910017424, 29.770929211771708 ], [ -95.005650910218662, 29.77089321183249 ], [ -95.007311910439554, 29.770880211132972 ], [ -95.008202911060053, 29.770870211152481 ], [ -95.008843910660204, 29.770862211142894 ], [ -95.010193911785578, 29.77084121137748 ], [ -95.011023911353348, 29.770829211168966 ], [ -95.011058911999839, 29.770828211046251 ], [ -95.011373912125563, 29.770788211498253 ], [ -95.011720911482684, 29.77071721154724 ], [ -95.011840911479311, 29.77069221091422 ], [ -95.012143911620555, 29.770572211485749 ], [ -95.012415912441426, 29.770381210842739 ], [ -95.012617911603257, 29.770257210810197 ], [ -95.012898912257711, 29.770099210878119 ], [ -95.01302991246375, 29.770028210801371 ], [ -95.013271912048253, 29.769897211087333 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 258, "Tract": "48201253102", "Area_SqMi": 10.167567479347236, "total_2009": 257, "total_2010": 221, "total_2011": 212, "total_2012": 425, "total_2013": 492, "total_2014": 575, "total_2015": 597, "total_2016": 633, "total_2017": 668, "total_2018": 769, "total_2019": 676, "total_2020": 670, "age1": 303, "age2": 546, "age3": 166, "earn1": 201, "earn2": 275, "earn3": 539, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 264, "naics_s05": 44, "naics_s06": 2, "naics_s07": 233, "naics_s08": 233, "naics_s09": 24, "naics_s10": 0, "naics_s11": 0, "naics_s12": 12, "naics_s13": 2, "naics_s14": 0, "naics_s15": 0, "naics_s16": 29, "naics_s17": 22, "naics_s18": 138, "naics_s19": 12, "naics_s20": 0, "race1": 758, "race2": 204, "race3": 10, "race4": 31, "race5": 1, "race6": 11, "ethnicity1": 586, "ethnicity2": 429, "edu1": 187, "edu2": 222, "edu3": 203, "edu4": 100, "Shape_Length": 78250.460130348947, "Shape_Area": 283454379.3585422, "total_2021": 672, "total_2022": 1015 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.002810913074498, 29.842698226473065 ], [ -95.002808912294668, 29.842391226269847 ], [ -95.002777913145735, 29.841403225754437 ], [ -95.002767912754237, 29.840817226107088 ], [ -95.002756912269319, 29.840675226155195 ], [ -95.002733913037872, 29.840535225570228 ], [ -95.002697912586044, 29.840396225823781 ], [ -95.002646912425945, 29.840257225773481 ], [ -95.002584912101497, 29.840122225499119 ], [ -95.002512912908315, 29.839991225946964 ], [ -95.002431912754645, 29.839861225455639 ], [ -95.002060912874967, 29.839336226022965 ], [ -95.001972912567823, 29.83920222589003 ], [ -95.001893911839502, 29.839061226072136 ], [ -95.001824911878373, 29.8389122255095 ], [ -95.001765911805919, 29.838757225562389 ], [ -95.001669911831357, 29.838433225590798 ], [ -95.001627912724231, 29.838264225467004 ], [ -95.001396911956348, 29.837228225777551 ], [ -95.001211911562862, 29.836337225584387 ], [ -95.000918912380783, 29.835040224880039 ], [ -95.000630911695055, 29.833699224288502 ], [ -95.000401912211686, 29.832665224132331 ], [ -95.000375911747298, 29.832491224386974 ], [ -95.000298912119476, 29.832227224820105 ], [ -95.000095911738001, 29.831287224197371 ], [ -94.999900911912491, 29.830395223808292 ], [ -94.999779910891291, 29.829818224149854 ], [ -94.999538910805853, 29.828747224074085 ], [ -94.999377911014832, 29.827996223713523 ], [ -94.99917591142389, 29.827116223543495 ], [ -94.999108911027534, 29.82679722353943 ], [ -94.999098911553887, 29.826750223574471 ], [ -94.998908910600349, 29.825899222797467 ], [ -94.998825911146525, 29.825525222978502 ], [ -94.998723911227302, 29.825129223078111 ], [ -94.998706911109224, 29.825045222831751 ], [ -94.998687911202708, 29.824954222609648 ], [ -94.998663910582835, 29.824838223329145 ], [ -94.998477911205001, 29.823930223186743 ], [ -94.998306911132161, 29.82316522238629 ], [ -94.998228910329345, 29.822791222906581 ], [ -94.997861910161504, 29.82113522191106 ], [ -94.997833910992625, 29.820992221912885 ], [ -94.997702909935043, 29.820411221905843 ], [ -94.997672910740292, 29.820330222203211 ], [ -94.99766391044686, 29.820255221610356 ], [ -94.997648910015243, 29.820197222023587 ], [ -94.997629910920381, 29.820093221965504 ], [ -94.997334910447393, 29.8200912224315 ], [ -94.996619909701352, 29.820108222250905 ], [ -94.996355909567654, 29.820112222399128 ], [ -94.995519910135684, 29.820125221961753 ], [ -94.99448090989128, 29.820142222440911 ], [ -94.993898909385436, 29.820151221790848 ], [ -94.991442908736659, 29.82019222194533 ], [ -94.991231908473281, 29.820201222611438 ], [ -94.991034908236585, 29.820217222607429 ], [ -94.99097090901229, 29.820225221898777 ], [ -94.990849908855949, 29.820239222453548 ], [ -94.990733909075203, 29.820257222649744 ], [ -94.990411908244042, 29.82030922244131 ], [ -94.990118908095639, 29.820359222648094 ], [ -94.989909908564698, 29.820395222658767 ], [ -94.988961908623978, 29.820564222121931 ], [ -94.988871907976574, 29.820579222378939 ], [ -94.987671908038408, 29.820783222241648 ], [ -94.98730790736802, 29.820847222673322 ], [ -94.986903908089829, 29.820917222446987 ], [ -94.985747907363987, 29.821118222559576 ], [ -94.985695906944557, 29.82112722228667 ], [ -94.985533907175238, 29.821154222281738 ], [ -94.984744906644963, 29.821288222395921 ], [ -94.984133906409156, 29.817917221949447 ], [ -94.984118907081807, 29.817833222337836 ], [ -94.984070906788332, 29.81756822152235 ], [ -94.983932906718834, 29.816806221624528 ], [ -94.983792906286851, 29.816031221412985 ], [ -94.983064906337006, 29.812006220413785 ], [ -94.98304190623297, 29.811866220536597 ], [ -94.982632905883619, 29.809404219865325 ], [ -94.982600905644048, 29.809212220576999 ], [ -94.982531906018082, 29.808795220075094 ], [ -94.982514905635199, 29.808706220148601 ], [ -94.982364905588625, 29.807918219935964 ], [ -94.982322905864919, 29.807696220229012 ], [ -94.982044906171481, 29.806234219230504 ], [ -94.982013905797857, 29.806071219761666 ], [ -94.981979905973915, 29.80589122000573 ], [ -94.981957905410908, 29.805822219463181 ], [ -94.981948905928931, 29.805727219356339 ], [ -94.981934905691475, 29.805592219135921 ], [ -94.981807905225949, 29.805106219460292 ], [ -94.981778905392531, 29.805011219207628 ], [ -94.981742906084023, 29.804756219143691 ], [ -94.981574905418299, 29.804786219667555 ], [ -94.980984905233768, 29.804889219496385 ], [ -94.979583904595643, 29.805109219273206 ], [ -94.979085905459087, 29.805196219995711 ], [ -94.978578904935347, 29.805284219925859 ], [ -94.977150904980135, 29.805605219751676 ], [ -94.977063904445814, 29.805624219795384 ], [ -94.975734903791022, 29.805912220064055 ], [ -94.974188903337406, 29.806248219526321 ], [ -94.973209903112519, 29.806460219570756 ], [ -94.97233390368315, 29.806650219863418 ], [ -94.970464903062975, 29.807055219877203 ], [ -94.969364902437974, 29.807294220617383 ], [ -94.968534901896092, 29.807455219904838 ], [ -94.966099901597403, 29.807929220685121 ], [ -94.965254901975626, 29.808055220863857 ], [ -94.963340901251442, 29.808339221005326 ], [ -94.962035900560764, 29.808533221125295 ], [ -94.959727900492467, 29.808882220773647 ], [ -94.956553899327545, 29.809361221496118 ], [ -94.946618896992334, 29.810860221586644 ], [ -94.944639895971477, 29.811159221499921 ], [ -94.942890895930489, 29.811423222195867 ], [ -94.941956895495309, 29.811590221673775 ], [ -94.941690895695615, 29.811653221907115 ], [ -94.940821895131791, 29.811859222587117 ], [ -94.939817895100887, 29.812167222509235 ], [ -94.938601894542757, 29.812670222124257 ], [ -94.937436894692254, 29.813147222329807 ], [ -94.935471893714706, 29.814033222409901 ], [ -94.93502189364601, 29.814233223090685 ], [ -94.934143893774817, 29.814622222696819 ], [ -94.932730893819198, 29.815249223211858 ], [ -94.931310893089417, 29.815878222992009 ], [ -94.928377892857355, 29.817179223651998 ], [ -94.926795892231354, 29.817880223628677 ], [ -94.92416389140007, 29.819047223988431 ], [ -94.922155890686653, 29.819971224843201 ], [ -94.921111890723026, 29.820466224328573 ], [ -94.920239890896326, 29.82083522513545 ], [ -94.919510890501954, 29.821069224750097 ], [ -94.918952889879861, 29.821231225032268 ], [ -94.918358890522512, 29.821321224769115 ], [ -94.917836889733266, 29.821375224499434 ], [ -94.91635288905583, 29.821393224764776 ], [ -94.915155888929206, 29.821345225205651 ], [ -94.915016889465349, 29.821340225341366 ], [ -94.914819889292033, 29.821332224807712 ], [ -94.91479088907694, 29.821331224672626 ], [ -94.914479889575816, 29.82132022470908 ], [ -94.914218889396196, 29.82131022510006 ], [ -94.911028888036441, 29.821257225530967 ], [ -94.910625888506743, 29.821250225602846 ], [ -94.910082887909695, 29.821211225051176 ], [ -94.90991288824091, 29.821209225580056 ], [ -94.909822887800217, 29.82122822478491 ], [ -94.909802887970471, 29.821274225420016 ], [ -94.909749888067481, 29.821391224912887 ], [ -94.909729888344003, 29.821450225396024 ], [ -94.909671887991365, 29.821630225414992 ], [ -94.909666887812904, 29.821648225714824 ], [ -94.909653887891139, 29.821691225135503 ], [ -94.909523887801811, 29.822096225208938 ], [ -94.90942788806106, 29.822349225373198 ], [ -94.909310887278494, 29.822660225753555 ], [ -94.909114887372382, 29.823805225913969 ], [ -94.909036887902801, 29.824187226130281 ], [ -94.908966887571466, 29.824381226255884 ], [ -94.908816887783786, 29.82480322641473 ], [ -94.908722887785075, 29.825033225837497 ], [ -94.908660887882689, 29.825186226112859 ], [ -94.908615887990678, 29.825493226361633 ], [ -94.908620887511958, 29.825776225741162 ], [ -94.908627887975769, 29.825821226537059 ], [ -94.908669888274289, 29.82607522605964 ], [ -94.908878888055568, 29.826475226215255 ], [ -94.90897788833972, 29.826735226811039 ], [ -94.90916088818949, 29.826919226152832 ], [ -94.909742887574609, 29.827306226792135 ], [ -94.91013888844877, 29.827553226741777 ], [ -94.910821888557024, 29.827980226430366 ], [ -94.910835888102199, 29.827985226814537 ], [ -94.910880888109702, 29.828003226401378 ], [ -94.910895888379883, 29.828010226231815 ], [ -94.910926888528053, 29.828022226956538 ], [ -94.911021888174702, 29.828061226753611 ], [ -94.911053888822224, 29.828074226628228 ], [ -94.911153888903016, 29.828115226789283 ], [ -94.911248888102421, 29.828245226976751 ], [ -94.911391888499324, 29.828440226606066 ], [ -94.911728888642372, 29.828853226500129 ], [ -94.911755888862558, 29.828878226745598 ], [ -94.911954888892765, 29.829062226780596 ], [ -94.912007889115401, 29.829111227098377 ], [ -94.912030888529657, 29.829120226563298 ], [ -94.912301889121125, 29.829225226615542 ], [ -94.912392888814253, 29.829261226316046 ], [ -94.91282788887095, 29.829442226571057 ], [ -94.912879889134416, 29.829464226843406 ], [ -94.913610889700436, 29.829633227254952 ], [ -94.914207889196916, 29.829746226752718 ], [ -94.914671889800672, 29.829835226396103 ], [ -94.914926890051973, 29.829883226741931 ], [ -94.915177889747184, 29.829958226452817 ], [ -94.916442889671387, 29.830338226677448 ], [ -94.91668288980587, 29.830395226821619 ], [ -94.917191890070725, 29.830518226517864 ], [ -94.91778489060809, 29.830639226424179 ], [ -94.917917890680954, 29.830686226480292 ], [ -94.91862989059635, 29.830936226621226 ], [ -94.919294890330448, 29.831140226644195 ], [ -94.919581891118327, 29.831228227333725 ], [ -94.920370890626998, 29.831508227282097 ], [ -94.921114891067987, 29.831739227412683 ], [ -94.921511890987532, 29.831921227249349 ], [ -94.921997891096694, 29.83206422699832 ], [ -94.922565892050301, 29.832251226688289 ], [ -94.923069891562989, 29.832394227249139 ], [ -94.92423089163691, 29.832779227342229 ], [ -94.925526892933632, 29.833273227499017 ], [ -94.926059892343559, 29.833477226977681 ], [ -94.926740892932955, 29.833697226980235 ], [ -94.927345893138536, 29.833791227007971 ], [ -94.927642892630288, 29.833824226839496 ], [ -94.927856892816465, 29.833846227516055 ], [ -94.927951892955079, 29.833850227560102 ], [ -94.928883893250941, 29.833896227248626 ], [ -94.929194893153507, 29.833912227258896 ], [ -94.931097894389168, 29.834020226756138 ], [ -94.933426894874643, 29.834154226868218 ], [ -94.934050894314026, 29.834165226872031 ], [ -94.93460589473338, 29.834297227470103 ], [ -94.935154895040355, 29.8346212273294 ], [ -94.935892894922702, 29.835155227539989 ], [ -94.936340895673979, 29.835619227079786 ], [ -94.936394895817301, 29.835675227623486 ], [ -94.93696689557639, 29.836268227498877 ], [ -94.937192895597875, 29.836502226973959 ], [ -94.937216895880951, 29.836527227483 ], [ -94.937664895539939, 29.836992227679346 ], [ -94.937738896132217, 29.837070227960208 ], [ -94.938269895531334, 29.837622227488822 ], [ -94.939084896083841, 29.838471227354837 ], [ -94.93954489637909, 29.838927227764312 ], [ -94.9400928966283, 29.839507228277096 ], [ -94.940389896989231, 29.839821227619211 ], [ -94.940410896060044, 29.839835227737687 ], [ -94.940416896681256, 29.839850228119172 ], [ -94.940651896216139, 29.840099228243542 ], [ -94.94069289639377, 29.840142228133136 ], [ -94.940721896363129, 29.84017222798149 ], [ -94.940933896958711, 29.840393228415422 ], [ -94.941077896900126, 29.840544227971385 ], [ -94.941519896567428, 29.840967228216655 ], [ -94.941665896654001, 29.841140228129099 ], [ -94.941891897277188, 29.841407227893082 ], [ -94.942246897045152, 29.841767228097133 ], [ -94.943314897273851, 29.8428502281531 ], [ -94.943428897238405, 29.842966228448766 ], [ -94.94367089746973, 29.843211228461012 ], [ -94.943828897973461, 29.84336522826311 ], [ -94.94386689759429, 29.843406228782275 ], [ -94.944437897480626, 29.844011228717665 ], [ -94.944522898095357, 29.844101229137795 ], [ -94.944635898110249, 29.844206228696841 ], [ -94.944731897432362, 29.844296228472885 ], [ -94.944783897693625, 29.844345228890035 ], [ -94.944899897437054, 29.844454228735053 ], [ -94.945184897764236, 29.84472322839521 ], [ -94.945569897985678, 29.845234229096654 ], [ -94.945599898073752, 29.845283229319627 ], [ -94.945790898538533, 29.845592229141726 ], [ -94.94589789787382, 29.845773229274524 ], [ -94.945934898458489, 29.845885229205301 ], [ -94.946086898098812, 29.846279228765994 ], [ -94.946108897927701, 29.846355229314732 ], [ -94.946187898763085, 29.846620229600408 ], [ -94.946888898543676, 29.848506229662537 ], [ -94.946939899006622, 29.848702229811853 ], [ -94.947052898612739, 29.849133229901504 ], [ -94.947077898764903, 29.849457229576249 ], [ -94.947091898989214, 29.849516229431309 ], [ -94.94817689889075, 29.849340229527137 ], [ -94.949525899490169, 29.84912722997263 ], [ -94.950942900029204, 29.848895229791179 ], [ -94.952932899741469, 29.848562229245363 ], [ -94.95362789995221, 29.848446229273648 ], [ -94.955826900605587, 29.848095229236595 ], [ -94.956703901065637, 29.847931229514341 ], [ -94.960037902410662, 29.847400228467357 ], [ -94.961223902624866, 29.847209228486438 ], [ -94.96307690236479, 29.846915229048921 ], [ -94.963739902650644, 29.846809228419357 ], [ -94.965806903705626, 29.846479228835161 ], [ -94.966087903899989, 29.846434228501618 ], [ -94.968663903852061, 29.845988228294154 ], [ -94.971250904730411, 29.845570228513264 ], [ -94.972566904656802, 29.845368228092742 ], [ -94.973202905437446, 29.845256228335813 ], [ -94.973912905590652, 29.845131227940701 ], [ -94.975249906043516, 29.844917227890956 ], [ -94.975741905849446, 29.844842228187986 ], [ -94.976574906431424, 29.84471522763296 ], [ -94.979333906720186, 29.844244227559841 ], [ -94.980693907047794, 29.844038227156826 ], [ -94.982089907256281, 29.843858227311312 ], [ -94.982799907606761, 29.843780227761236 ], [ -94.983072907744969, 29.84375022699879 ], [ -94.983175907624187, 29.843739227743161 ], [ -94.983295907643409, 29.843726227096244 ], [ -94.98366190825945, 29.843686227062008 ], [ -94.983843907628554, 29.843666226937899 ], [ -94.984080908332402, 29.843640227511937 ], [ -94.984276907553493, 29.843582227181376 ], [ -94.984673908354978, 29.843476227084892 ], [ -94.98535690803638, 29.843321226894417 ], [ -94.985523908451597, 29.843291227179868 ], [ -94.985694908527222, 29.843271227498018 ], [ -94.98623090861777, 29.843253226831106 ], [ -94.987779908393989, 29.843247227474659 ], [ -94.987930908895478, 29.843243227070204 ], [ -94.988322908552462, 29.843241226728296 ], [ -94.988662909314442, 29.843231226923571 ], [ -94.989017909284655, 29.843219226666115 ], [ -94.98913590909892, 29.843224226650616 ], [ -94.989279909413128, 29.843216227455596 ], [ -94.992042909538611, 29.843168226953036 ], [ -94.994923910697466, 29.843103227082576 ], [ -94.99533991060288, 29.843098226348435 ], [ -94.996308911321108, 29.843078226915402 ], [ -94.997412911023304, 29.84305022646889 ], [ -94.997953911634383, 29.843045226639475 ], [ -94.999398911479631, 29.843020226696684 ], [ -95.000982911858543, 29.842992226679538 ], [ -95.002528912773144, 29.842970226706829 ], [ -95.002615912466936, 29.842964226088373 ], [ -95.002690912776359, 29.842942226903659 ], [ -95.002751912417224, 29.842898226800134 ], [ -95.002790912917675, 29.842838226193074 ], [ -95.00280691277915, 29.842769226666775 ], [ -95.002810913074498, 29.842698226473065 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 259, "Tract": "48201530501", "Area_SqMi": 0.40257730873348535, "total_2009": 942, "total_2010": 761, "total_2011": 767, "total_2012": 864, "total_2013": 874, "total_2014": 775, "total_2015": 777, "total_2016": 759, "total_2017": 777, "total_2018": 743, "total_2019": 646, "total_2020": 688, "age1": 140, "age2": 292, "age3": 132, "earn1": 123, "earn2": 157, "earn3": 284, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 86, "naics_s05": 8, "naics_s06": 104, "naics_s07": 26, "naics_s08": 0, "naics_s09": 0, "naics_s10": 14, "naics_s11": 13, "naics_s12": 10, "naics_s13": 0, "naics_s14": 31, "naics_s15": 0, "naics_s16": 79, "naics_s17": 0, "naics_s18": 83, "naics_s19": 109, "naics_s20": 0, "race1": 398, "race2": 105, "race3": 3, "race4": 51, "race5": 1, "race6": 6, "ethnicity1": 348, "ethnicity2": 216, "edu1": 109, "edu2": 116, "edu3": 114, "edu4": 85, "Shape_Length": 16231.031946638966, "Shape_Area": 11223166.349539528, "total_2021": 498, "total_2022": 564 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399816014539823, 29.845251213566836 ], [ -95.399777014479952, 29.845064213486012 ], [ -95.399544014693205, 29.844074213009478 ], [ -95.39906501438827, 29.84267221303422 ], [ -95.399033014769984, 29.842567212876375 ], [ -95.399014014675913, 29.842419212583081 ], [ -95.398983013997196, 29.842292213055821 ], [ -95.39892001477179, 29.84194121315754 ], [ -95.39891101405874, 29.841878212852937 ], [ -95.398860014355094, 29.841518212639837 ], [ -95.398851014215353, 29.841451212746961 ], [ -95.3988000139409, 29.841163212277795 ], [ -95.398668014686223, 29.840412212611806 ], [ -95.398611014192312, 29.840269212241704 ], [ -95.398528014339078, 29.840092212560752 ], [ -95.398460014119365, 29.839945212265949 ], [ -95.398277014455886, 29.839582212528267 ], [ -95.398158014615717, 29.839367212195302 ], [ -95.397918013888585, 29.839021212029106 ], [ -95.397805013500786, 29.838938211921917 ], [ -95.397647013887422, 29.838850211833371 ], [ -95.397124013691524, 29.838702212635344 ], [ -95.396909014093865, 29.838630212196147 ], [ -95.396399013605361, 29.838333212254341 ], [ -95.396246013846223, 29.838264211772131 ], [ -95.396203013040875, 29.838245211906656 ], [ -95.395831013332185, 29.838168212345366 ], [ -95.395100013094094, 29.838058212092115 ], [ -95.395037013054335, 29.838020212528122 ], [ -95.395005013559953, 29.83795421238235 ], [ -95.394827012925674, 29.837497211656068 ], [ -95.394751013131867, 29.837303212074822 ], [ -95.394728012958041, 29.837244211849676 ], [ -95.394608012932679, 29.837046212068074 ], [ -95.394514012888834, 29.836936211882069 ], [ -95.394324012928465, 29.836843212284059 ], [ -95.393216012963777, 29.836492211890128 ], [ -95.392710012377677, 29.83633121178277 ], [ -95.392420012130856, 29.836155212246659 ], [ -95.392288012954737, 29.836045211703315 ], [ -95.392029012668644, 29.835704212010075 ], [ -95.391456012127989, 29.834885211831885 ], [ -95.391279011642752, 29.834731211258745 ], [ -95.390977011856393, 29.834500211480954 ], [ -95.390876012125204, 29.834450211880089 ], [ -95.390725012323514, 29.83441221198909 ], [ -95.39023901201395, 29.834368211919209 ], [ -95.390132011918908, 29.834329211387679 ], [ -95.389930011657043, 29.83422421194318 ], [ -95.38969701202538, 29.834076211543358 ], [ -95.389476011393469, 29.833889211073572 ], [ -95.389385011563363, 29.833784211656369 ], [ -95.389104011452204, 29.833460211220526 ], [ -95.388796011865381, 29.833163211297876 ], [ -95.388531011568531, 29.832888211601375 ], [ -95.388184011740336, 29.832344211163548 ], [ -95.387995010655388, 29.832091211102497 ], [ -95.387882010799558, 29.831843211485097 ], [ -95.387756010595695, 29.831656211497592 ], [ -95.38762301149697, 29.831486210959991 ], [ -95.387485010489129, 29.831376211437266 ], [ -95.387289011434291, 29.831277211276742 ], [ -95.386898011359122, 29.831134210664498 ], [ -95.386539010594248, 29.8309692108304 ], [ -95.386394010968871, 29.830859211075399 ], [ -95.386302010563398, 29.830771210727445 ], [ -95.38442401067978, 29.830852210746212 ], [ -95.384518009823097, 29.832849211576708 ], [ -95.384521010092868, 29.833207211517315 ], [ -95.385073010330828, 29.833906211604592 ], [ -95.385938010396615, 29.83496321173936 ], [ -95.386689011160996, 29.836023212174556 ], [ -95.386808011538207, 29.836220212343711 ], [ -95.387345011146621, 29.837015212212872 ], [ -95.388116011569693, 29.838214212617423 ], [ -95.389831011977734, 29.84084221244574 ], [ -95.390409012171958, 29.841671213443405 ], [ -95.391159011991903, 29.842911212998068 ], [ -95.391974013047502, 29.844132213538419 ], [ -95.392818013400046, 29.845326213956788 ], [ -95.392866012792638, 29.84539321345795 ], [ -95.392962013423016, 29.8455292135985 ], [ -95.393108013157658, 29.845526213463181 ], [ -95.393222012615027, 29.845539213843601 ], [ -95.393363013385752, 29.84555321377151 ], [ -95.393851013221294, 29.845546214090255 ], [ -95.394297013254302, 29.845511213708743 ], [ -95.394999013385544, 29.84547321328224 ], [ -95.395179013996199, 29.845468213852449 ], [ -95.396265013736354, 29.845462213799177 ], [ -95.396369014125938, 29.845464213155747 ], [ -95.397007014006263, 29.845455213712764 ], [ -95.397572014295662, 29.845431213588736 ], [ -95.397648014096802, 29.845418213488372 ], [ -95.397717013806783, 29.845410213679294 ], [ -95.398420014651307, 29.845325213842745 ], [ -95.39863801444811, 29.845294213422665 ], [ -95.398814014492132, 29.8452822136755 ], [ -95.399325014718002, 29.845257213805404 ], [ -95.399816014539823, 29.845251213566836 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 260, "Tract": "48201553404", "Area_SqMi": 0.77896549623348699, "total_2009": 221, "total_2010": 220, "total_2011": 249, "total_2012": 260, "total_2013": 213, "total_2014": 324, "total_2015": 239, "total_2016": 272, "total_2017": 295, "total_2018": 380, "total_2019": 423, "total_2020": 420, "age1": 88, "age2": 154, "age3": 109, "earn1": 57, "earn2": 101, "earn3": 193, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 46, "naics_s05": 0, "naics_s06": 7, "naics_s07": 5, "naics_s08": 2, "naics_s09": 0, "naics_s10": 2, "naics_s11": 33, "naics_s12": 10, "naics_s13": 0, "naics_s14": 133, "naics_s15": 6, "naics_s16": 53, "naics_s17": 0, "naics_s18": 41, "naics_s19": 13, "naics_s20": 0, "race1": 285, "race2": 29, "race3": 5, "race4": 24, "race5": 1, "race6": 7, "ethnicity1": 257, "ethnicity2": 94, "edu1": 54, "edu2": 53, "edu3": 93, "edu4": 63, "Shape_Length": 22207.759349683489, "Shape_Area": 21716224.822218489, "total_2021": 339, "total_2022": 351 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.473877043470836, 30.048487252176969 ], [ -95.473836043317462, 30.04843425227762 ], [ -95.47368604251416, 30.048234252044526 ], [ -95.473541042652499, 30.048051252547026 ], [ -95.473254042618962, 30.047728251960429 ], [ -95.473007042246877, 30.04746125180386 ], [ -95.472336042803278, 30.046929252108303 ], [ -95.472155042327174, 30.046789252366697 ], [ -95.472071042374566, 30.046712252215379 ], [ -95.471949042530724, 30.046593252074775 ], [ -95.471869042516147, 30.046513251991822 ], [ -95.471738042414245, 30.046348252016678 ], [ -95.471631042125836, 30.046230251875084 ], [ -95.471502042322726, 30.046080252330281 ], [ -95.471432041898652, 30.045993251614089 ], [ -95.471194042194995, 30.045716251738291 ], [ -95.470702041912389, 30.045053251527012 ], [ -95.470266042003502, 30.044393251746342 ], [ -95.469780041559019, 30.043711251878449 ], [ -95.46931504106189, 30.043093251642851 ], [ -95.46919204186581, 30.042936251672096 ], [ -95.468939041098182, 30.042594251325927 ], [ -95.468806041396803, 30.042433251563303 ], [ -95.468659041272119, 30.04223825161851 ], [ -95.468584041496314, 30.042108251565537 ], [ -95.468373040758351, 30.041733251301384 ], [ -95.468183041487464, 30.041396250746001 ], [ -95.468003041146943, 30.041005250673216 ], [ -95.467934040762003, 30.040806250880735 ], [ -95.467739040906892, 30.040185250714583 ], [ -95.467705040798208, 30.040002250730044 ], [ -95.467523040698211, 30.039411250794206 ], [ -95.467426040890487, 30.039258250990635 ], [ -95.467295040527034, 30.03902225026977 ], [ -95.467135040937947, 30.038691250451343 ], [ -95.46701604056102, 30.038535250287083 ], [ -95.466942040405527, 30.038432250178339 ], [ -95.466808041151054, 30.038256250882689 ], [ -95.466626040519884, 30.038046250599322 ], [ -95.465975040578982, 30.03836325078036 ], [ -95.465519040511481, 30.03860825039331 ], [ -95.464948040735621, 30.038857250589917 ], [ -95.464404040382732, 30.039051250819519 ], [ -95.464015040264343, 30.039177250782505 ], [ -95.463776039748382, 30.039268250577898 ], [ -95.463440040362215, 30.039440251013652 ], [ -95.463302039394065, 30.039489251063383 ], [ -95.462934040278299, 30.03961225090455 ], [ -95.462689039552359, 30.039707250780904 ], [ -95.462532039925634, 30.039780250913026 ], [ -95.462177039512056, 30.039906250761653 ], [ -95.461932039295618, 30.040039250812324 ], [ -95.461779039894751, 30.040123251147492 ], [ -95.460964039438011, 30.04058625102736 ], [ -95.460469039040944, 30.040859251242079 ], [ -95.460258038698541, 30.040966251092151 ], [ -95.459922039295321, 30.041119251197458 ], [ -95.459274039275002, 30.041371251838019 ], [ -95.459038039005648, 30.04146325117323 ], [ -95.458662038623771, 30.041630251609543 ], [ -95.45844203877526, 30.041756251446813 ], [ -95.458181038826567, 30.041894251162542 ], [ -95.457279038310233, 30.042393251773838 ], [ -95.45669603883492, 30.042706251371484 ], [ -95.45644803775707, 30.042844252086294 ], [ -95.45631703771376, 30.042918252021561 ], [ -95.456002038285277, 30.043076252272847 ], [ -95.455887037777003, 30.043153251467896 ], [ -95.455508037876157, 30.043354252187445 ], [ -95.455209037887698, 30.043495252249222 ], [ -95.454990038328233, 30.043585251647702 ], [ -95.454855038351553, 30.043640252214377 ], [ -95.454475037964173, 30.043772251594547 ], [ -95.45421603780332, 30.04385025170415 ], [ -95.454106037750265, 30.043875251988286 ], [ -95.453831037489834, 30.043939251916168 ], [ -95.453701037833923, 30.043956251787748 ], [ -95.453578037659298, 30.043986251755292 ], [ -95.453319037835286, 30.044027252280383 ], [ -95.452910037651236, 30.044075252016373 ], [ -95.452642037041002, 30.044083252407376 ], [ -95.45233803717349, 30.044094252427108 ], [ -95.452040036806991, 30.04408725237635 ], [ -95.451627036883011, 30.04406425253859 ], [ -95.451583037255531, 30.044062252244448 ], [ -95.451137037251627, 30.044009251964642 ], [ -95.450992036794091, 30.043982252005534 ], [ -95.450696036660958, 30.043947251894522 ], [ -95.450424037094763, 30.043906252130121 ], [ -95.450162036292625, 30.04387625193981 ], [ -95.449785036432402, 30.043855252472536 ], [ -95.449289036838167, 30.043859252419221 ], [ -95.449045036575797, 30.043872252701696 ], [ -95.448564036288445, 30.043924252103494 ], [ -95.448214036487499, 30.043980251978123 ], [ -95.447987035713396, 30.044028252546259 ], [ -95.447554036098467, 30.044154252117565 ], [ -95.44723303545301, 30.044254252540465 ], [ -95.44692003606292, 30.044370252333405 ], [ -95.446448035572644, 30.044600252334927 ], [ -95.446498036074232, 30.044735252517889 ], [ -95.446574035654791, 30.044867252269093 ], [ -95.446732036302521, 30.045059252937179 ], [ -95.44680103620064, 30.045131252672206 ], [ -95.446940036185566, 30.045235252425901 ], [ -95.447187035975844, 30.045339252510814 ], [ -95.447477036029852, 30.045438252324125 ], [ -95.447983036085333, 30.045658252672407 ], [ -95.448185036414827, 30.045757252617264 ], [ -95.448432036306514, 30.045834252828172 ], [ -95.44872903617717, 30.04594425297929 ], [ -95.449095036584609, 30.046054252505865 ], [ -95.449993036921043, 30.046391252908133 ], [ -95.450820036783284, 30.046702252794812 ], [ -95.451237036906107, 30.046851252679584 ], [ -95.451819037431306, 30.047082252573638 ], [ -95.452727037023649, 30.047415252457078 ], [ -95.453494038072606, 30.047697252523381 ], [ -95.453582038169344, 30.04770825295488 ], [ -95.45395503774013, 30.047691252543171 ], [ -95.454340038414244, 30.047609252912448 ], [ -95.454454038078538, 30.04756525244952 ], [ -95.454580037526242, 30.047488253091924 ], [ -95.454625038284533, 30.047449252805738 ], [ -95.454726037801024, 30.047411252358959 ], [ -95.455086038277955, 30.047186252521158 ], [ -95.455389038459899, 30.047021252511463 ], [ -95.455631037949971, 30.046880252297658 ], [ -95.455958038423731, 30.04735425265574 ], [ -95.456111038322618, 30.047554252589606 ], [ -95.456202038425957, 30.047708252886352 ], [ -95.456256038261131, 30.047781252699775 ], [ -95.4563370382361, 30.047862252637209 ], [ -95.457142038598789, 30.048983252627533 ], [ -95.457303038768742, 30.04920625333682 ], [ -95.45826203927038, 30.05050325359343 ], [ -95.458385039262495, 30.050630253220127 ], [ -95.45845103881156, 30.050683253389053 ], [ -95.45857303900867, 30.050762253594961 ], [ -95.458765038897894, 30.050849253647016 ], [ -95.459075038913369, 30.050962253210649 ], [ -95.459198039807802, 30.05101825307473 ], [ -95.459312039275247, 30.051089253592075 ], [ -95.459419039296662, 30.051183253663119 ], [ -95.459572039754178, 30.051362253712387 ], [ -95.459806039055209, 30.051675253027991 ], [ -95.460286040150166, 30.052320253829993 ], [ -95.46032403978667, 30.052371253743896 ], [ -95.461038039777534, 30.053286253931571 ], [ -95.461272040155407, 30.053129253631724 ], [ -95.461480040435035, 30.053003253607091 ], [ -95.461699040090295, 30.052884253379776 ], [ -95.461930040185464, 30.052776253216901 ], [ -95.462290039954041, 30.052629253419148 ], [ -95.462529040059636, 30.052540253204402 ], [ -95.462775040609444, 30.05245725381284 ], [ -95.463120040627686, 30.052357253110426 ], [ -95.463503040642394, 30.052266253568092 ], [ -95.463933040419931, 30.052187253484899 ], [ -95.464769040541867, 30.052069252920578 ], [ -95.465601041082678, 30.051955253172181 ], [ -95.466186041397137, 30.051914252947654 ], [ -95.466499041230563, 30.051883253031892 ], [ -95.466990041573908, 30.051799252992105 ], [ -95.467501041502572, 30.051684253223026 ], [ -95.467637041807137, 30.051646253352239 ], [ -95.467870042017466, 30.051610253066372 ], [ -95.468147041174433, 30.051518253302209 ], [ -95.468538042086834, 30.051372253032113 ], [ -95.469024041352739, 30.051154253210562 ], [ -95.469840042257871, 30.050650252460123 ], [ -95.470351041899093, 30.050373252805656 ], [ -95.470577042695894, 30.050258252752482 ], [ -95.471391042821978, 30.049806252495078 ], [ -95.472056042724986, 30.049473252653275 ], [ -95.472196043045869, 30.049416252442693 ], [ -95.472456042964552, 30.04928125299347 ], [ -95.472783042387107, 30.049097252608199 ], [ -95.473464042449976, 30.048715252681237 ], [ -95.473631043447256, 30.048611252150689 ], [ -95.473717043207003, 30.048573251972428 ], [ -95.473877043470836, 30.048487252176969 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 261, "Tract": "48201530502", "Area_SqMi": 0.50785001644395056, "total_2009": 63, "total_2010": 97, "total_2011": 159, "total_2012": 105, "total_2013": 125, "total_2014": 141, "total_2015": 146, "total_2016": 151, "total_2017": 150, "total_2018": 180, "total_2019": 154, "total_2020": 97, "age1": 27, "age2": 42, "age3": 21, "earn1": 12, "earn2": 22, "earn3": 56, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 14, "naics_s06": 0, "naics_s07": 4, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 42, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 1, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 77, "race2": 9, "race3": 0, "race4": 2, "race5": 0, "race6": 2, "ethnicity1": 51, "ethnicity2": 39, "edu1": 18, "edu2": 13, "edu3": 20, "edu4": 12, "Shape_Length": 19273.272835501935, "Shape_Area": 14157989.264467344, "total_2021": 100, "total_2022": 90 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.40302301575727, 29.845866213005305 ], [ -95.403024015299991, 29.845578213195338 ], [ -95.403020015589661, 29.845258213514438 ], [ -95.40301001558187, 29.844232212968901 ], [ -95.403004015936617, 29.843672213459428 ], [ -95.402997015307633, 29.843075213200038 ], [ -95.40299301577879, 29.842708212975563 ], [ -95.402990015012051, 29.842369213117536 ], [ -95.402984015244414, 29.841778212209537 ], [ -95.402979015469128, 29.841354212355387 ], [ -95.402977015023836, 29.841167212607075 ], [ -95.402974015348576, 29.840958212244281 ], [ -95.402970015838079, 29.840475212040708 ], [ -95.40296501525296, 29.840038212206665 ], [ -95.402955015376037, 29.839280212178387 ], [ -95.402947015539723, 29.838667212120122 ], [ -95.402940014996773, 29.838135211702504 ], [ -95.40292901539128, 29.837400211611417 ], [ -95.402904014716484, 29.835621211333542 ], [ -95.402892015567076, 29.834769210865563 ], [ -95.402883014716934, 29.834174211503111 ], [ -95.402872015484903, 29.833409211291162 ], [ -95.402819015043008, 29.833074211005549 ], [ -95.402729014845931, 29.832719211205951 ], [ -95.402830015276692, 29.832537210805054 ], [ -95.402797014808755, 29.831013210170934 ], [ -95.402792014639317, 29.830492210261287 ], [ -95.401250014351803, 29.830502210327946 ], [ -95.401066014623098, 29.830507210068106 ], [ -95.400428013941436, 29.830526210423393 ], [ -95.399221013559981, 29.830539210422632 ], [ -95.399007014262196, 29.830541210140936 ], [ -95.398768014222597, 29.830545210805166 ], [ -95.396796013462705, 29.830570210589109 ], [ -95.396469013547488, 29.83057121060871 ], [ -95.395997012768092, 29.830575210666677 ], [ -95.395650013494532, 29.830577210164417 ], [ -95.394409013130314, 29.830586211070994 ], [ -95.393979013103774, 29.830592210757942 ], [ -95.393760012118832, 29.830593210996096 ], [ -95.392872012312807, 29.830598210757536 ], [ -95.392217012364753, 29.83060621076876 ], [ -95.391954012510922, 29.830608210441479 ], [ -95.390021012109216, 29.83062721064325 ], [ -95.388655011384202, 29.830686210580019 ], [ -95.388383010873113, 29.830695210884961 ], [ -95.387216011039229, 29.830737211025429 ], [ -95.387002010956849, 29.830741210801332 ], [ -95.386302010563398, 29.830771210727445 ], [ -95.386394010968871, 29.830859211075399 ], [ -95.386539010594248, 29.8309692108304 ], [ -95.386898011359122, 29.831134210664498 ], [ -95.387289011434291, 29.831277211276742 ], [ -95.387485010489129, 29.831376211437266 ], [ -95.38762301149697, 29.831486210959991 ], [ -95.387756010595695, 29.831656211497592 ], [ -95.387882010799558, 29.831843211485097 ], [ -95.387995010655388, 29.832091211102497 ], [ -95.388184011740336, 29.832344211163548 ], [ -95.388531011568531, 29.832888211601375 ], [ -95.388796011865381, 29.833163211297876 ], [ -95.389104011452204, 29.833460211220526 ], [ -95.389385011563363, 29.833784211656369 ], [ -95.389476011393469, 29.833889211073572 ], [ -95.38969701202538, 29.834076211543358 ], [ -95.389930011657043, 29.83422421194318 ], [ -95.390132011918908, 29.834329211387679 ], [ -95.39023901201395, 29.834368211919209 ], [ -95.390725012323514, 29.83441221198909 ], [ -95.390876012125204, 29.834450211880089 ], [ -95.390977011856393, 29.834500211480954 ], [ -95.391279011642752, 29.834731211258745 ], [ -95.391456012127989, 29.834885211831885 ], [ -95.392029012668644, 29.835704212010075 ], [ -95.392288012954737, 29.836045211703315 ], [ -95.392420012130856, 29.836155212246659 ], [ -95.392710012377677, 29.83633121178277 ], [ -95.393216012963777, 29.836492211890128 ], [ -95.394324012928465, 29.836843212284059 ], [ -95.394514012888834, 29.836936211882069 ], [ -95.394608012932679, 29.837046212068074 ], [ -95.394728012958041, 29.837244211849676 ], [ -95.394751013131867, 29.837303212074822 ], [ -95.394827012925674, 29.837497211656068 ], [ -95.395005013559953, 29.83795421238235 ], [ -95.395037013054335, 29.838020212528122 ], [ -95.395100013094094, 29.838058212092115 ], [ -95.395831013332185, 29.838168212345366 ], [ -95.396203013040875, 29.838245211906656 ], [ -95.396246013846223, 29.838264211772131 ], [ -95.396399013605361, 29.838333212254341 ], [ -95.396909014093865, 29.838630212196147 ], [ -95.397124013691524, 29.838702212635344 ], [ -95.397647013887422, 29.838850211833371 ], [ -95.397805013500786, 29.838938211921917 ], [ -95.397918013888585, 29.839021212029106 ], [ -95.398158014615717, 29.839367212195302 ], [ -95.398277014455886, 29.839582212528267 ], [ -95.398460014119365, 29.839945212265949 ], [ -95.398528014339078, 29.840092212560752 ], [ -95.398611014192312, 29.840269212241704 ], [ -95.398668014686223, 29.840412212611806 ], [ -95.3988000139409, 29.841163212277795 ], [ -95.398851014215353, 29.841451212746961 ], [ -95.398860014355094, 29.841518212639837 ], [ -95.39891101405874, 29.841878212852937 ], [ -95.39892001477179, 29.84194121315754 ], [ -95.398983013997196, 29.842292213055821 ], [ -95.399014014675913, 29.842419212583081 ], [ -95.399033014769984, 29.842567212876375 ], [ -95.39906501438827, 29.84267221303422 ], [ -95.399544014693205, 29.844074213009478 ], [ -95.399777014479952, 29.845064213486012 ], [ -95.399816014539823, 29.845251213566836 ], [ -95.400013015351405, 29.845249213080052 ], [ -95.400983015368908, 29.845245213282922 ], [ -95.401331015305388, 29.8452752131439 ], [ -95.401827015825774, 29.845363213009531 ], [ -95.402015015511466, 29.845418213272634 ], [ -95.402315015940829, 29.845512213182467 ], [ -95.402458015299899, 29.845566213224075 ], [ -95.402624015246303, 29.845644213762711 ], [ -95.402728015192935, 29.845698213544363 ], [ -95.402931015727262, 29.845814213319549 ], [ -95.40302301575727, 29.845866213005305 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 262, "Tract": "48201313102", "Area_SqMi": 1.2450321508701891, "total_2009": 62191, "total_2010": 69919, "total_2011": 70284, "total_2012": 57759, "total_2013": 56060, "total_2014": 71290, "total_2015": 74086, "total_2016": 73499, "total_2017": 75913, "total_2018": 76134, "total_2019": 81103, "total_2020": 81932, "age1": 11932, "age2": 50915, "age3": 16312, "earn1": 3783, "earn2": 11691, "earn3": 63686, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 14, "naics_s07": 517, "naics_s08": 165, "naics_s09": 51, "naics_s10": 98, "naics_s11": 297, "naics_s12": 1939, "naics_s13": 0, "naics_s14": 1062, "naics_s15": 11270, "naics_s16": 61373, "naics_s17": 905, "naics_s18": 1164, "naics_s19": 289, "naics_s20": 4, "race1": 41309, "race2": 19385, "race3": 487, "race4": 16396, "race5": 145, "race6": 1439, "ethnicity1": 61640, "ethnicity2": 17520, "edu1": 9432, "edu2": 13675, "edu3": 20228, "edu4": 23896, "Shape_Length": 25766.305549206805, "Shape_Area": 34709365.472438194, "total_2021": 75650, "total_2022": 79158 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.404329009385393, 29.707172184948902 ], [ -95.405073009635672, 29.706252184916462 ], [ -95.40362300910968, 29.706235184809522 ], [ -95.403024009225604, 29.706235185319827 ], [ -95.403001009317961, 29.704722184766108 ], [ -95.402957009825485, 29.704299184205411 ], [ -95.402849009714458, 29.703701184781558 ], [ -95.402834009009112, 29.703629184576929 ], [ -95.40281700942505, 29.703548184289435 ], [ -95.402476009524179, 29.702464183872898 ], [ -95.40244800871443, 29.702376183815588 ], [ -95.402429009454693, 29.702323183891938 ], [ -95.402411009090528, 29.702269184459691 ], [ -95.402302008625696, 29.701945184439047 ], [ -95.402208009208252, 29.701667184029787 ], [ -95.402118008566063, 29.701400183512018 ], [ -95.40091100841336, 29.701528184054713 ], [ -95.399238008554676, 29.701766183668664 ], [ -95.398393008043286, 29.701919184167643 ], [ -95.397938007603756, 29.702071184423417 ], [ -95.397499007397215, 29.702296184072381 ], [ -95.397132008077392, 29.702521184086386 ], [ -95.396944007170688, 29.702671184727595 ], [ -95.396869007268108, 29.702731184167995 ], [ -95.396612007458032, 29.703004183981722 ], [ -95.395391006825022, 29.702591183970529 ], [ -95.394063006848739, 29.702139184438408 ], [ -95.393932007044057, 29.702101184741618 ], [ -95.393798007304611, 29.702072184138242 ], [ -95.391943006049559, 29.701508184706832 ], [ -95.391625006327317, 29.702339184348038 ], [ -95.39130100603704, 29.703172184305831 ], [ -95.390836006455473, 29.704392185076518 ], [ -95.390556006514075, 29.705088184715244 ], [ -95.390525005765866, 29.70516618521372 ], [ -95.390424006540812, 29.705424185381389 ], [ -95.39023300656406, 29.705909185287318 ], [ -95.389254005620302, 29.706396185534516 ], [ -95.38886800587413, 29.706529185005696 ], [ -95.388523005988731, 29.70661418529907 ], [ -95.388114005554954, 29.706651185709163 ], [ -95.387691005811476, 29.706647185076807 ], [ -95.387207005159993, 29.706582185705646 ], [ -95.386443005156721, 29.706368185046376 ], [ -95.384623004797831, 29.705704185109681 ], [ -95.383679004833397, 29.708587186247978 ], [ -95.383193004674808, 29.710111186476809 ], [ -95.382814004252324, 29.711246186195623 ], [ -95.382695004651893, 29.711492186443103 ], [ -95.38260600401567, 29.711617186212681 ], [ -95.382529004904001, 29.71166118625176 ], [ -95.382501004600613, 29.711863187108356 ], [ -95.382281004747938, 29.712545187114177 ], [ -95.38212700448706, 29.71301818677674 ], [ -95.382098004362476, 29.713109187415846 ], [ -95.382067004195335, 29.713204187032026 ], [ -95.38189700455996, 29.713727187569283 ], [ -95.380932004399, 29.716523187861053 ], [ -95.381513004837799, 29.716713187619842 ], [ -95.381796004196289, 29.716814187528747 ], [ -95.382048004636573, 29.716929187632658 ], [ -95.3823760048342, 29.717111187415849 ], [ -95.382719004984864, 29.71734018749822 ], [ -95.382754004209758, 29.717363187759791 ], [ -95.382946005267755, 29.717534187872676 ], [ -95.383040004687714, 29.717617187982125 ], [ -95.38330700465167, 29.717908187791686 ], [ -95.383521004733765, 29.718186188204037 ], [ -95.383651005137992, 29.718400188222724 ], [ -95.38449700482289, 29.720056188025801 ], [ -95.384632005502425, 29.720243188394626 ], [ -95.384785004860717, 29.72040318801994 ], [ -95.384913005066849, 29.720493188362447 ], [ -95.385777005172983, 29.721012188544105 ], [ -95.386657005715264, 29.721524188200739 ], [ -95.387474006591333, 29.722023188427688 ], [ -95.388328006184111, 29.722554188692424 ], [ -95.389271007104327, 29.723112189224356 ], [ -95.389943007036734, 29.723526188604197 ], [ -95.390075006835659, 29.723580189188901 ], [ -95.390249006652382, 29.723649189244796 ], [ -95.390725007274753, 29.723936188901124 ], [ -95.390788007302106, 29.723851188566005 ], [ -95.39088000757161, 29.723761188900056 ], [ -95.391174007601492, 29.723668188991812 ], [ -95.391326007318938, 29.723582188591639 ], [ -95.391664006952666, 29.723156189072906 ], [ -95.392112007608247, 29.722598188931762 ], [ -95.392648007002492, 29.721914188550336 ], [ -95.393555007333362, 29.720776187858302 ], [ -95.393662007328643, 29.720642187851539 ], [ -95.395352008314418, 29.718496188018729 ], [ -95.397429008161268, 29.7158961866946 ], [ -95.398698008848172, 29.714297186561122 ], [ -95.398967008605581, 29.713954186614238 ], [ -95.399098009245648, 29.713789186376591 ], [ -95.399413008937387, 29.713378186531791 ], [ -95.399627008463213, 29.713101186764028 ], [ -95.400063009032777, 29.712535186362878 ], [ -95.400414008667966, 29.712088186591206 ], [ -95.400883009521422, 29.711492185640928 ], [ -95.401360009324605, 29.710896185903447 ], [ -95.401837009312018, 29.710304186069379 ], [ -95.403092009235607, 29.708725185224434 ], [ -95.404329009385393, 29.707172184948902 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 263, "Tract": "48201312602", "Area_SqMi": 0.20226888005207919, "total_2009": 667, "total_2010": 644, "total_2011": 864, "total_2012": 1039, "total_2013": 1126, "total_2014": 1252, "total_2015": 1260, "total_2016": 943, "total_2017": 934, "total_2018": 875, "total_2019": 885, "total_2020": 998, "age1": 195, "age2": 508, "age3": 248, "earn1": 114, "earn2": 358, "earn3": 479, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 23, "naics_s06": 6, "naics_s07": 63, "naics_s08": 0, "naics_s09": 1, "naics_s10": 17, "naics_s11": 21, "naics_s12": 99, "naics_s13": 99, "naics_s14": 44, "naics_s15": 0, "naics_s16": 422, "naics_s17": 88, "naics_s18": 32, "naics_s19": 36, "naics_s20": 0, "race1": 615, "race2": 209, "race3": 6, "race4": 100, "race5": 1, "race6": 20, "ethnicity1": 647, "ethnicity2": 304, "edu1": 152, "edu2": 183, "edu3": 224, "edu4": 197, "Shape_Length": 10196.196923950178, "Shape_Area": 5638910.189203918, "total_2021": 998, "total_2022": 951 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.388640006968885, 29.726995189680327 ], [ -95.388927006493731, 29.726649189459994 ], [ -95.388057006911225, 29.726113189336672 ], [ -95.387211006228227, 29.725621189424615 ], [ -95.38634600580798, 29.725097189747995 ], [ -95.385472005806932, 29.724567189499439 ], [ -95.384638005247467, 29.724061188924889 ], [ -95.383771005411845, 29.723542188937738 ], [ -95.382915004813157, 29.723014188846591 ], [ -95.382088004860719, 29.722528188664082 ], [ -95.381738004508236, 29.722318188546883 ], [ -95.380368004367952, 29.721472188431939 ], [ -95.379455004099171, 29.720929188336072 ], [ -95.379421004196629, 29.720887188600766 ], [ -95.379164004194905, 29.721647188408326 ], [ -95.378953003505274, 29.722242189410483 ], [ -95.378923003466795, 29.722335188756116 ], [ -95.37863100390804, 29.723209189525488 ], [ -95.378565003439633, 29.723347189534017 ], [ -95.378369003805545, 29.723942188905259 ], [ -95.378263003367948, 29.724253189622125 ], [ -95.378123004048035, 29.724634189470194 ], [ -95.377931003421793, 29.725233189491405 ], [ -95.377829003355814, 29.72551418933644 ], [ -95.379142003793547, 29.726287190166236 ], [ -95.379939004321059, 29.72677518972041 ], [ -95.380806004835748, 29.727297189962879 ], [ -95.381677005230529, 29.727822189904 ], [ -95.38250500549681, 29.72832418970621 ], [ -95.383368005691281, 29.728845190625911 ], [ -95.384234005599495, 29.729362190185075 ], [ -95.385085005961571, 29.729872190467795 ], [ -95.385846006189738, 29.730338190690443 ], [ -95.385952005877741, 29.730330190529603 ], [ -95.386029006425318, 29.730285190089166 ], [ -95.386510005729008, 29.729679189875551 ], [ -95.386748006718264, 29.729388189991862 ], [ -95.386957006473864, 29.729114190073222 ], [ -95.38743300653941, 29.728521190174263 ], [ -95.387948006914684, 29.727856189903463 ], [ -95.388443006796365, 29.727242190038034 ], [ -95.388640006968885, 29.726995189680327 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 264, "Tract": "48201410703", "Area_SqMi": 0.22313557971125378, "total_2009": 2223, "total_2010": 2400, "total_2011": 2415, "total_2012": 1776, "total_2013": 1808, "total_2014": 1966, "total_2015": 2025, "total_2016": 1962, "total_2017": 2214, "total_2018": 1955, "total_2019": 1797, "total_2020": 1491, "age1": 624, "age2": 888, "age3": 377, "earn1": 586, "earn2": 605, "earn3": 698, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 6, "naics_s07": 339, "naics_s08": 0, "naics_s09": 2, "naics_s10": 9, "naics_s11": 27, "naics_s12": 198, "naics_s13": 79, "naics_s14": 66, "naics_s15": 174, "naics_s16": 299, "naics_s17": 0, "naics_s18": 634, "naics_s19": 43, "naics_s20": 1, "race1": 1282, "race2": 421, "race3": 25, "race4": 123, "race5": 3, "race6": 35, "ethnicity1": 1321, "ethnicity2": 568, "edu1": 242, "edu2": 332, "edu3": 363, "edu4": 328, "Shape_Length": 10396.889521237445, "Shape_Area": 6220638.0619883109, "total_2021": 1623, "total_2022": 1889 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399373010158655, 29.74273419252987 ], [ -95.399361010170068, 29.742001192126342 ], [ -95.399354010389331, 29.741251192487589 ], [ -95.399339009937236, 29.740401191716124 ], [ -95.399331009893089, 29.739544191872742 ], [ -95.399321010338568, 29.738698191213768 ], [ -95.397500009367874, 29.73872019176364 ], [ -95.395721009320113, 29.738725191931493 ], [ -95.395455008761942, 29.738729192062497 ], [ -95.394749008900433, 29.738743192235663 ], [ -95.39374900799416, 29.738759191493326 ], [ -95.392568008441742, 29.738769192019817 ], [ -95.39118100812766, 29.738780191794913 ], [ -95.389874007954646, 29.738797191986958 ], [ -95.388892006993672, 29.738799192002265 ], [ -95.388898007357753, 29.739663191836286 ], [ -95.388916006981205, 29.740519192309787 ], [ -95.388925007660305, 29.74137219236475 ], [ -95.388947007349984, 29.742400193203142 ], [ -95.388952007802814, 29.743270193215864 ], [ -95.388883007221992, 29.743461192531559 ], [ -95.388836007456021, 29.743570192680778 ], [ -95.388851007107164, 29.744515192770713 ], [ -95.389084007566595, 29.744517193328502 ], [ -95.389390007589355, 29.744539193393248 ], [ -95.389665007925629, 29.744624192998458 ], [ -95.389788008009532, 29.744653192889189 ], [ -95.389924008209078, 29.744673193155581 ], [ -95.390051007913996, 29.744680193391382 ], [ -95.390528008412005, 29.744678192868555 ], [ -95.391261007944337, 29.744679193282014 ], [ -95.391833008524557, 29.744677193361461 ], [ -95.392345008163531, 29.744654193291215 ], [ -95.392649008808618, 29.744647193508143 ], [ -95.393122008960049, 29.744661193127609 ], [ -95.393295008399349, 29.744660193520588 ], [ -95.393451009078419, 29.744594192849725 ], [ -95.393828008887638, 29.74440719272069 ], [ -95.394381008835367, 29.744158192524811 ], [ -95.394810009359958, 29.743936192836934 ], [ -95.395764008921859, 29.743415192292925 ], [ -95.395853009177998, 29.74337819252375 ], [ -95.395919009378105, 29.743352193059515 ], [ -95.396948009674588, 29.742868192810686 ], [ -95.397040009713507, 29.742831192611071 ], [ -95.397146009910216, 29.742815192925818 ], [ -95.397552009584501, 29.742808192781716 ], [ -95.398181009496156, 29.742801192319504 ], [ -95.398864009903889, 29.742798192266587 ], [ -95.39931800985056, 29.742801192221282 ], [ -95.399373010158655, 29.74273419252987 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 265, "Tract": "48201410802", "Area_SqMi": 0.19410184971292799, "total_2009": 1662, "total_2010": 1735, "total_2011": 1759, "total_2012": 1223, "total_2013": 1223, "total_2014": 1327, "total_2015": 1324, "total_2016": 1271, "total_2017": 1257, "total_2018": 1149, "total_2019": 1293, "total_2020": 1075, "age1": 419, "age2": 502, "age3": 177, "earn1": 335, "earn2": 416, "earn3": 347, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 247, "naics_s08": 0, "naics_s09": 16, "naics_s10": 2, "naics_s11": 12, "naics_s12": 71, "naics_s13": 0, "naics_s14": 19, "naics_s15": 0, "naics_s16": 54, "naics_s17": 2, "naics_s18": 560, "naics_s19": 112, "naics_s20": 0, "race1": 809, "race2": 158, "race3": 7, "race4": 99, "race5": 0, "race6": 25, "ethnicity1": 704, "ethnicity2": 394, "edu1": 173, "edu2": 174, "edu3": 180, "edu4": 152, "Shape_Length": 10200.388669988883, "Shape_Area": 5411227.3613605062, "total_2021": 1088, "total_2022": 1098 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.41073601322735, 29.742586191680481 ], [ -95.410740013293818, 29.742185192292119 ], [ -95.410725012422844, 29.74148819216094 ], [ -95.410718012460563, 29.740692191995603 ], [ -95.410720013264836, 29.740000191977046 ], [ -95.410717012383017, 29.739934191084817 ], [ -95.410702012383439, 29.739292191533799 ], [ -95.410700012957605, 29.738559191668617 ], [ -95.409392012865695, 29.738581191733608 ], [ -95.408072011836808, 29.738596191112531 ], [ -95.407055012113872, 29.738601191395656 ], [ -95.406288011494908, 29.738615191407504 ], [ -95.40452701102987, 29.738633191151479 ], [ -95.401993010427205, 29.738657191233528 ], [ -95.401536010916544, 29.73866519135467 ], [ -95.399321010338568, 29.738698191213768 ], [ -95.399331009893089, 29.739544191872742 ], [ -95.399339009937236, 29.740401191716124 ], [ -95.399354010389331, 29.741251192487589 ], [ -95.399361010170068, 29.742001192126342 ], [ -95.399373010158655, 29.74273419252987 ], [ -95.39931800985056, 29.742801192221282 ], [ -95.400489010160726, 29.742795192405826 ], [ -95.401258010082103, 29.742795192093904 ], [ -95.40207501101834, 29.742791192289403 ], [ -95.402895010617783, 29.742772192643709 ], [ -95.403749010797569, 29.742761191997584 ], [ -95.404607011845997, 29.742745192338514 ], [ -95.405452011210201, 29.742734192042981 ], [ -95.406264012091555, 29.742738192630657 ], [ -95.407057012371808, 29.742748192339274 ], [ -95.407845012046351, 29.742770192268495 ], [ -95.408272012067087, 29.74277319256969 ], [ -95.408730012760685, 29.742751191952571 ], [ -95.409331012559761, 29.742702192044682 ], [ -95.40970201241538, 29.742673192282474 ], [ -95.410252012848431, 29.74262919252028 ], [ -95.41073601322735, 29.742586191680481 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 266, "Tract": "48201410501", "Area_SqMi": 0.21311286753064923, "total_2009": 943, "total_2010": 986, "total_2011": 938, "total_2012": 1289, "total_2013": 1325, "total_2014": 1276, "total_2015": 1231, "total_2016": 1295, "total_2017": 1242, "total_2018": 1141, "total_2019": 1229, "total_2020": 1124, "age1": 306, "age2": 627, "age3": 248, "earn1": 221, "earn2": 479, "earn3": 481, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 36, "naics_s05": 23, "naics_s06": 11, "naics_s07": 127, "naics_s08": 20, "naics_s09": 5, "naics_s10": 24, "naics_s11": 15, "naics_s12": 88, "naics_s13": 24, "naics_s14": 35, "naics_s15": 12, "naics_s16": 30, "naics_s17": 2, "naics_s18": 640, "naics_s19": 89, "naics_s20": 0, "race1": 900, "race2": 125, "race3": 12, "race4": 105, "race5": 1, "race6": 38, "ethnicity1": 782, "ethnicity2": 399, "edu1": 184, "edu2": 225, "edu3": 259, "edu4": 207, "Shape_Length": 10317.904273148613, "Shape_Area": 5941222.0004363935, "total_2021": 1121, "total_2022": 1181 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.397936009832989, 29.752415194718481 ], [ -95.397480009566991, 29.751650194147825 ], [ -95.39702700977881, 29.751013194066775 ], [ -95.396632009378493, 29.750364194063994 ], [ -95.396240009084536, 29.749746194056691 ], [ -95.395897009570845, 29.749193193687379 ], [ -95.395609009602694, 29.74873419397133 ], [ -95.395159009642455, 29.748031193936434 ], [ -95.39508600871801, 29.747891193539132 ], [ -95.394915008972404, 29.747628193207284 ], [ -95.394675008711857, 29.747228193527718 ], [ -95.39411000862691, 29.746314193006768 ], [ -95.39406200926004, 29.746254193653776 ], [ -95.393976008978385, 29.74611819347631 ], [ -95.393800009103231, 29.745875193493198 ], [ -95.393774008943993, 29.745837193753314 ], [ -95.393602008446734, 29.745493193661389 ], [ -95.393193008118814, 29.744826193523043 ], [ -95.393122008960049, 29.744661193127609 ], [ -95.392649008808618, 29.744647193508143 ], [ -95.392345008163531, 29.744654193291215 ], [ -95.391833008524557, 29.744677193361461 ], [ -95.391261007944337, 29.744679193282014 ], [ -95.390528008412005, 29.744678192868555 ], [ -95.390051007913996, 29.744680193391382 ], [ -95.389924008209078, 29.744673193155581 ], [ -95.389788008009532, 29.744653192889189 ], [ -95.389665007925629, 29.744624192998458 ], [ -95.38966000783094, 29.745375193392789 ], [ -95.388853007996701, 29.745390193457816 ], [ -95.388877007230363, 29.746639193377941 ], [ -95.388863007860536, 29.746734193478318 ], [ -95.388865007894083, 29.747471194151039 ], [ -95.388870007611715, 29.748163193724459 ], [ -95.38887100757934, 29.7488351942369 ], [ -95.388879007895909, 29.749446194369924 ], [ -95.388892007839019, 29.749505194484751 ], [ -95.388906007398987, 29.750179194277536 ], [ -95.388918007778557, 29.750792194868406 ], [ -95.38891100797909, 29.75085519451985 ], [ -95.388908007400943, 29.75152519471682 ], [ -95.38891100781963, 29.75258119481315 ], [ -95.389805008012317, 29.752573194868905 ], [ -95.390112008598578, 29.752567194543854 ], [ -95.391169008793639, 29.752547194584061 ], [ -95.392135008856584, 29.752529195096454 ], [ -95.393704009336517, 29.752501195073002 ], [ -95.39589300964856, 29.752465194948901 ], [ -95.397221009959338, 29.752432194555361 ], [ -95.397936009832989, 29.752415194718481 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 267, "Tract": "48201411001", "Area_SqMi": 0.17443980891272312, "total_2009": 919, "total_2010": 884, "total_2011": 901, "total_2012": 992, "total_2013": 1141, "total_2014": 1251, "total_2015": 1153, "total_2016": 1187, "total_2017": 1271, "total_2018": 1249, "total_2019": 1166, "total_2020": 1143, "age1": 296, "age2": 655, "age3": 344, "earn1": 196, "earn2": 409, "earn3": 690, "naics_s01": 0, "naics_s02": 44, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 3, "naics_s07": 164, "naics_s08": 0, "naics_s09": 1, "naics_s10": 15, "naics_s11": 21, "naics_s12": 273, "naics_s13": 0, "naics_s14": 63, "naics_s15": 0, "naics_s16": 156, "naics_s17": 69, "naics_s18": 309, "naics_s19": 176, "naics_s20": 1, "race1": 950, "race2": 180, "race3": 8, "race4": 126, "race5": 3, "race6": 28, "ethnicity1": 965, "ethnicity2": 330, "edu1": 185, "edu2": 225, "edu3": 280, "edu4": 309, "Shape_Length": 9887.6447363659627, "Shape_Area": 4863083.3157699462, "total_2021": 1131, "total_2022": 1295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430036017952844, 29.74207319088724 ], [ -95.43003301811035, 29.741410190730235 ], [ -95.42997701766491, 29.738342190980163 ], [ -95.427510017116163, 29.738360190301364 ], [ -95.426331016871416, 29.738386190869857 ], [ -95.424799016407022, 29.738414190434899 ], [ -95.423792016555552, 29.738430190778359 ], [ -95.422774015804592, 29.738433191202155 ], [ -95.4218820152376, 29.738436190490638 ], [ -95.421009015543419, 29.738459190718707 ], [ -95.41994801526512, 29.738465191214278 ], [ -95.418753014554071, 29.738486190624332 ], [ -95.418731015332483, 29.739294191121989 ], [ -95.418748014660082, 29.740092191719164 ], [ -95.418778014779122, 29.740888191845468 ], [ -95.418790014691254, 29.741686192024144 ], [ -95.418785014585922, 29.742324191653562 ], [ -95.419918015335213, 29.742263191743593 ], [ -95.421151015451557, 29.742186191179243 ], [ -95.421875016034662, 29.742173191995498 ], [ -95.422323015619867, 29.742172191534646 ], [ -95.422826016332039, 29.742156191871906 ], [ -95.423823016239638, 29.742151191546711 ], [ -95.424710016431419, 29.742138191617453 ], [ -95.424829016610616, 29.742137191607227 ], [ -95.424943017117982, 29.742139191200565 ], [ -95.426513016656884, 29.742126191483656 ], [ -95.430036017952844, 29.74207319088724 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 268, "Tract": "48201411003", "Area_SqMi": 0.2553588248031885, "total_2009": 4044, "total_2010": 4345, "total_2011": 4354, "total_2012": 4289, "total_2013": 4989, "total_2014": 5045, "total_2015": 5579, "total_2016": 5624, "total_2017": 5659, "total_2018": 5672, "total_2019": 5215, "total_2020": 5020, "age1": 1566, "age2": 2604, "age3": 992, "earn1": 888, "earn2": 1785, "earn3": 2489, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 62, "naics_s05": 12, "naics_s06": 53, "naics_s07": 315, "naics_s08": 0, "naics_s09": 32, "naics_s10": 94, "naics_s11": 430, "naics_s12": 854, "naics_s13": 30, "naics_s14": 788, "naics_s15": 3, "naics_s16": 414, "naics_s17": 76, "naics_s18": 1674, "naics_s19": 320, "naics_s20": 0, "race1": 3719, "race2": 990, "race3": 32, "race4": 330, "race5": 2, "race6": 89, "ethnicity1": 3500, "ethnicity2": 1662, "edu1": 765, "edu2": 832, "edu3": 1091, "edu4": 908, "Shape_Length": 10694.300661583304, "Shape_Area": 7118966.9845162928, "total_2021": 5051, "total_2022": 5162 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418753014554071, 29.738486190624332 ], [ -95.418725014978918, 29.736913190736271 ], [ -95.418719014666706, 29.736279190944945 ], [ -95.418701014768445, 29.73560119048383 ], [ -95.418699014467535, 29.735001190516051 ], [ -95.41871001452661, 29.734854190136435 ], [ -95.418715014374001, 29.734119190104582 ], [ -95.418679014353529, 29.733470189844414 ], [ -95.418673014875367, 29.732764189553841 ], [ -95.418656015003918, 29.732056189904288 ], [ -95.418669014323072, 29.731033189470054 ], [ -95.418664014355471, 29.730748189141671 ], [ -95.418433014030114, 29.730752189748983 ], [ -95.415969013988672, 29.730795189373072 ], [ -95.413724013277914, 29.730904189332243 ], [ -95.412843013464396, 29.730932189402932 ], [ -95.411258012355205, 29.730983189770416 ], [ -95.410762012607307, 29.730983189879204 ], [ -95.410615012377164, 29.73098318939407 ], [ -95.41062001218603, 29.731220189636474 ], [ -95.410616011977822, 29.731716190182652 ], [ -95.410630012929943, 29.732566190423896 ], [ -95.410642012505235, 29.733355189898749 ], [ -95.410717012857788, 29.733412190620246 ], [ -95.410671013024398, 29.733567190196549 ], [ -95.410658012676009, 29.734246189925425 ], [ -95.410654012400116, 29.735109190317814 ], [ -95.410672012577024, 29.735968190838459 ], [ -95.410679012289506, 29.7368211906808 ], [ -95.410691013071769, 29.737668190722054 ], [ -95.410700012957605, 29.738559191668617 ], [ -95.412924013542238, 29.738550191602791 ], [ -95.416366014038289, 29.738526191457431 ], [ -95.417548014137054, 29.738506190760596 ], [ -95.418753014554071, 29.738486190624332 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 269, "Tract": "48201411002", "Area_SqMi": 0.13125744980538867, "total_2009": 1159, "total_2010": 1131, "total_2011": 1104, "total_2012": 1144, "total_2013": 1172, "total_2014": 1158, "total_2015": 1317, "total_2016": 1235, "total_2017": 1211, "total_2018": 1208, "total_2019": 1242, "total_2020": 1073, "age1": 252, "age2": 517, "age3": 235, "earn1": 176, "earn2": 411, "earn3": 417, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 20, "naics_s05": 0, "naics_s06": 21, "naics_s07": 424, "naics_s08": 14, "naics_s09": 0, "naics_s10": 45, "naics_s11": 38, "naics_s12": 93, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 109, "naics_s17": 0, "naics_s18": 165, "naics_s19": 60, "naics_s20": 0, "race1": 753, "race2": 119, "race3": 10, "race4": 100, "race5": 4, "race6": 18, "ethnicity1": 675, "ethnicity2": 329, "edu1": 162, "edu2": 182, "edu3": 214, "edu4": 194, "Shape_Length": 7973.0808230109169, "Shape_Area": 3659233.0512037156, "total_2021": 979, "total_2022": 1004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418785014585922, 29.742324191653562 ], [ -95.418790014691254, 29.741686192024144 ], [ -95.418778014779122, 29.740888191845468 ], [ -95.418748014660082, 29.740092191719164 ], [ -95.418731015332483, 29.739294191121989 ], [ -95.418753014554071, 29.738486190624332 ], [ -95.417548014137054, 29.738506190760596 ], [ -95.416366014038289, 29.738526191457431 ], [ -95.412924013542238, 29.738550191602791 ], [ -95.410700012957605, 29.738559191668617 ], [ -95.410702012383439, 29.739292191533799 ], [ -95.410717012383017, 29.739934191084817 ], [ -95.410720013264836, 29.740000191977046 ], [ -95.410718012460563, 29.740692191995603 ], [ -95.410725012422844, 29.74148819216094 ], [ -95.410740013293818, 29.742185192292119 ], [ -95.41073601322735, 29.742586191680481 ], [ -95.410775012838684, 29.74258319169201 ], [ -95.411342012687257, 29.742586192236182 ], [ -95.411538012869329, 29.7425831919419 ], [ -95.411937013690149, 29.742580192478357 ], [ -95.412321013060577, 29.742560191973322 ], [ -95.413122013744783, 29.742540192309178 ], [ -95.41360201404342, 29.742541191600001 ], [ -95.41393001364024, 29.7425281922552 ], [ -95.414722013970945, 29.74248919206854 ], [ -95.415160013651402, 29.742458191710032 ], [ -95.415524014124003, 29.742433192294463 ], [ -95.416397014649689, 29.742399191885855 ], [ -95.417582015078082, 29.742385191413419 ], [ -95.418785014585922, 29.742324191653562 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 270, "Tract": "48201411503", "Area_SqMi": 0.34583976083899048, "total_2009": 9217, "total_2010": 9095, "total_2011": 10215, "total_2012": 10239, "total_2013": 10173, "total_2014": 10302, "total_2015": 10237, "total_2016": 9838, "total_2017": 9811, "total_2018": 9151, "total_2019": 9893, "total_2020": 8516, "age1": 2312, "age2": 6027, "age3": 2210, "earn1": 1220, "earn2": 2822, "earn3": 6507, "naics_s01": 0, "naics_s02": 37, "naics_s03": 65, "naics_s04": 66, "naics_s05": 52, "naics_s06": 542, "naics_s07": 107, "naics_s08": 15, "naics_s09": 87, "naics_s10": 744, "naics_s11": 1752, "naics_s12": 1773, "naics_s13": 186, "naics_s14": 2414, "naics_s15": 194, "naics_s16": 1159, "naics_s17": 41, "naics_s18": 726, "naics_s19": 542, "naics_s20": 47, "race1": 7329, "race2": 2037, "race3": 79, "race4": 921, "race5": 14, "race6": 169, "ethnicity1": 7463, "ethnicity2": 3086, "edu1": 1563, "edu2": 1903, "edu3": 2403, "edu4": 2368, "Shape_Length": 12493.71243088287, "Shape_Area": 9641420.6215247363, "total_2021": 8894, "total_2022": 10549 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.42997701766491, 29.738342190980163 ], [ -95.429887017782846, 29.736323190571799 ], [ -95.429822017240568, 29.735857190454272 ], [ -95.429801017682522, 29.735690189627757 ], [ -95.429786017185293, 29.735571189565352 ], [ -95.429769017208841, 29.735439190280864 ], [ -95.429739017172835, 29.735288190181993 ], [ -95.429601017819849, 29.734853189497052 ], [ -95.429272017792798, 29.733871189965114 ], [ -95.428948017424091, 29.732938189739269 ], [ -95.428667017346967, 29.732128189257722 ], [ -95.428471016612832, 29.731374189476675 ], [ -95.428341017025716, 29.730828188719268 ], [ -95.428206016459853, 29.730303189255906 ], [ -95.428155017134543, 29.730049189272453 ], [ -95.427952017151796, 29.730080188665738 ], [ -95.426932016361476, 29.730240189227644 ], [ -95.426595016426504, 29.730294189310602 ], [ -95.425165016482453, 29.730525188663446 ], [ -95.424005015572263, 29.730648189576588 ], [ -95.422859015161421, 29.730685189560276 ], [ -95.418954014954494, 29.730745189499338 ], [ -95.41882901467919, 29.730745189477005 ], [ -95.418664014355471, 29.730748189141671 ], [ -95.418669014323072, 29.731033189470054 ], [ -95.418656015003918, 29.732056189904288 ], [ -95.418673014875367, 29.732764189553841 ], [ -95.418679014353529, 29.733470189844414 ], [ -95.418715014374001, 29.734119190104582 ], [ -95.41871001452661, 29.734854190136435 ], [ -95.418699014467535, 29.735001190516051 ], [ -95.418701014768445, 29.73560119048383 ], [ -95.418719014666706, 29.736279190944945 ], [ -95.418725014978918, 29.736913190736271 ], [ -95.418753014554071, 29.738486190624332 ], [ -95.41994801526512, 29.738465191214278 ], [ -95.421009015543419, 29.738459190718707 ], [ -95.4218820152376, 29.738436190490638 ], [ -95.422774015804592, 29.738433191202155 ], [ -95.423792016555552, 29.738430190778359 ], [ -95.424799016407022, 29.738414190434899 ], [ -95.426331016871416, 29.738386190869857 ], [ -95.427510017116163, 29.738360190301364 ], [ -95.42997701766491, 29.738342190980163 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 271, "Tract": "48201411801", "Area_SqMi": 0.47174008040781723, "total_2009": 3559, "total_2010": 3708, "total_2011": 3403, "total_2012": 3537, "total_2013": 3538, "total_2014": 3461, "total_2015": 3508, "total_2016": 3385, "total_2017": 3337, "total_2018": 3153, "total_2019": 3196, "total_2020": 2896, "age1": 841, "age2": 1630, "age3": 624, "earn1": 656, "earn2": 1020, "earn3": 1419, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 47, "naics_s05": 26, "naics_s06": 46, "naics_s07": 745, "naics_s08": 3, "naics_s09": 466, "naics_s10": 81, "naics_s11": 33, "naics_s12": 249, "naics_s13": 19, "naics_s14": 106, "naics_s15": 17, "naics_s16": 295, "naics_s17": 50, "naics_s18": 630, "naics_s19": 281, "naics_s20": 0, "race1": 2160, "race2": 566, "race3": 25, "race4": 286, "race5": 4, "race6": 54, "ethnicity1": 2045, "ethnicity2": 1050, "edu1": 402, "edu2": 539, "edu3": 721, "edu4": 592, "Shape_Length": 20306.348839910006, "Shape_Area": 13151306.050553139, "total_2021": 3090, "total_2022": 3095 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.44793202201889, 29.730051188549979 ], [ -95.44792202177031, 29.729854187793627 ], [ -95.447914022066087, 29.729699188285192 ], [ -95.447900021441484, 29.729414188040074 ], [ -95.447846021797616, 29.728646188320404 ], [ -95.447875021869208, 29.727380187899566 ], [ -95.447877022157499, 29.727275188008225 ], [ -95.447876021462349, 29.72711518731758 ], [ -95.447817021854931, 29.725241187323181 ], [ -95.447825022189022, 29.724534186825295 ], [ -95.447652021222794, 29.724534187123933 ], [ -95.447391021448482, 29.724536186967786 ], [ -95.447189021663831, 29.724525186839891 ], [ -95.444638021018704, 29.72456518681809 ], [ -95.443123020218749, 29.724598186940952 ], [ -95.443114020368256, 29.723962186927192 ], [ -95.443105020561092, 29.72387618729514 ], [ -95.443095020521199, 29.723168187130089 ], [ -95.443080020812431, 29.722461186896595 ], [ -95.443072020417333, 29.721744186788847 ], [ -95.443049020020027, 29.721027186280157 ], [ -95.443036020790288, 29.720350186261378 ], [ -95.442230020495401, 29.720760186857813 ], [ -95.441276019824159, 29.721247186672436 ], [ -95.440308019340264, 29.721743186447664 ], [ -95.440172019687509, 29.721808186828479 ], [ -95.439242019461801, 29.722258186645551 ], [ -95.438978019248367, 29.722399187312664 ], [ -95.438382019104566, 29.722721186618148 ], [ -95.437546018587696, 29.723122187581264 ], [ -95.436378019117612, 29.7237361870149 ], [ -95.43626001888984, 29.723779187067418 ], [ -95.433542018165809, 29.725162187721281 ], [ -95.433371018445953, 29.725249187878411 ], [ -95.432350017400623, 29.7252881874909 ], [ -95.431233017511076, 29.725295187759521 ], [ -95.431144017764382, 29.725294187683446 ], [ -95.43096801753029, 29.725293187514406 ], [ -95.430113016672479, 29.725306187795976 ], [ -95.428978016418654, 29.725298188295074 ], [ -95.427777016158871, 29.725340187608456 ], [ -95.427127015976637, 29.725341188203988 ], [ -95.426588016117037, 29.725360187935962 ], [ -95.426374015847728, 29.72536118829613 ], [ -95.424839016193715, 29.725372188200542 ], [ -95.424833015560893, 29.726490187916013 ], [ -95.424831016091744, 29.726804188641044 ], [ -95.426618016161399, 29.726784188481574 ], [ -95.427797016679548, 29.726758187986864 ], [ -95.427862016423092, 29.727558188689901 ], [ -95.427965017184732, 29.728377188926121 ], [ -95.427972017110832, 29.728582188376137 ], [ -95.427973016551675, 29.728591188376122 ], [ -95.428008016545462, 29.728931188961681 ], [ -95.428048017133591, 29.729498188472984 ], [ -95.428098016452921, 29.729756188651958 ], [ -95.428125016442849, 29.729895188927582 ], [ -95.428155017134543, 29.730049189272453 ], [ -95.428350017236312, 29.730018189302648 ], [ -95.428907017094389, 29.72993118863716 ], [ -95.431698017478368, 29.729499188464352 ], [ -95.432887018299482, 29.729387188586557 ], [ -95.433388018326013, 29.72936318857106 ], [ -95.433503018370189, 29.729357188654827 ], [ -95.436354018669817, 29.729218188050016 ], [ -95.440445019920645, 29.729020187984567 ], [ -95.44048301982906, 29.729030188213066 ], [ -95.441214019870429, 29.729017188193353 ], [ -95.441430019901375, 29.729013188642533 ], [ -95.441624020087133, 29.729009188360656 ], [ -95.44300602068634, 29.729137188338044 ], [ -95.444855020944374, 29.729421187820488 ], [ -95.445884021828675, 29.72965818845864 ], [ -95.447326022106068, 29.729935187802166 ], [ -95.44746802179948, 29.729958188415971 ], [ -95.44793202201889, 29.730051188549979 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 272, "Tract": "48201433006", "Area_SqMi": 0.10911520952256852, "total_2009": 739, "total_2010": 497, "total_2011": 12, "total_2012": 10, "total_2013": 10, "total_2014": 3, "total_2015": null, "total_2016": null, "total_2017": 1, "total_2018": 2, "total_2019": 2, "total_2020": 20, "age1": 4, "age2": 3, "age3": 1, "earn1": 2, "earn2": 4, "earn3": 2, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 7, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 5, "race2": 1, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 4, "ethnicity2": 4, "edu1": 1, "edu2": 1, "edu3": 0, "edu4": 2, "Shape_Length": 6999.0708933794049, "Shape_Area": 3041945.28894168, "total_2021": 24, "total_2022": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.54464704633105, 29.713499181529201 ], [ -95.544559045973458, 29.713347181762177 ], [ -95.54436404619949, 29.712841181645327 ], [ -95.544112046185248, 29.712099181655486 ], [ -95.544086046050595, 29.711495181412882 ], [ -95.544067045843079, 29.71104718135787 ], [ -95.544056045874697, 29.710785181264153 ], [ -95.544053045853474, 29.710170180791476 ], [ -95.544050045799324, 29.709444180983922 ], [ -95.54397404509136, 29.708740180201197 ], [ -95.541351044730547, 29.708773180510942 ], [ -95.54135204471406, 29.708822180821755 ], [ -95.541200045301508, 29.708935180607806 ], [ -95.538836044350177, 29.708961180566103 ], [ -95.538846044089723, 29.709335180501085 ], [ -95.538855044564215, 29.709628180596379 ], [ -95.538874044225082, 29.710306180949985 ], [ -95.538883043846042, 29.710658181048636 ], [ -95.538887044414636, 29.710820180887406 ], [ -95.538888043949257, 29.710843181591287 ], [ -95.538901044715615, 29.711413181188373 ], [ -95.538903044302288, 29.711520181137331 ], [ -95.538924043993774, 29.71254418174761 ], [ -95.538927043961323, 29.712707181943607 ], [ -95.538939044537159, 29.713636181659037 ], [ -95.539579044448288, 29.7136261817747 ], [ -95.539925045029179, 29.71363718143693 ], [ -95.54026804486405, 29.71367118134264 ], [ -95.540664044619533, 29.713729182013395 ], [ -95.541148045507441, 29.713832181388938 ], [ -95.541537044736202, 29.71394218195751 ], [ -95.541967045645109, 29.714040181516339 ], [ -95.542432045283633, 29.714087181506113 ], [ -95.542731045373614, 29.714086182156997 ], [ -95.543020045708246, 29.714062182092992 ], [ -95.543444046076402, 29.713991181867858 ], [ -95.543810045922953, 29.71386918211374 ], [ -95.544371046195565, 29.713622181424174 ], [ -95.54464704633105, 29.713499181529201 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 273, "Tract": "48201553405", "Area_SqMi": 1.2829087106909831, "total_2009": 405, "total_2010": 390, "total_2011": 295, "total_2012": 402, "total_2013": 403, "total_2014": 520, "total_2015": 629, "total_2016": 540, "total_2017": 583, "total_2018": 649, "total_2019": 668, "total_2020": 640, "age1": 128, "age2": 345, "age3": 135, "earn1": 115, "earn2": 204, "earn3": 289, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 39, "naics_s05": 33, "naics_s06": 123, "naics_s07": 50, "naics_s08": 2, "naics_s09": 41, "naics_s10": 10, "naics_s11": 66, "naics_s12": 59, "naics_s13": 0, "naics_s14": 11, "naics_s15": 1, "naics_s16": 90, "naics_s17": 28, "naics_s18": 50, "naics_s19": 5, "naics_s20": 0, "race1": 488, "race2": 74, "race3": 6, "race4": 33, "race5": 0, "race6": 7, "ethnicity1": 403, "ethnicity2": 205, "edu1": 112, "edu2": 130, "edu3": 125, "edu4": 113, "Shape_Length": 23814.391347864363, "Shape_Area": 35765299.133861907, "total_2021": 561, "total_2022": 608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.460626039989847, 30.053590253923328 ], [ -95.461038039777534, 30.053286253931571 ], [ -95.46032403978667, 30.052371253743896 ], [ -95.460286040150166, 30.052320253829993 ], [ -95.459806039055209, 30.051675253027991 ], [ -95.459572039754178, 30.051362253712387 ], [ -95.459419039296662, 30.051183253663119 ], [ -95.459312039275247, 30.051089253592075 ], [ -95.459198039807802, 30.05101825307473 ], [ -95.459075038913369, 30.050962253210649 ], [ -95.458765038897894, 30.050849253647016 ], [ -95.45857303900867, 30.050762253594961 ], [ -95.45845103881156, 30.050683253389053 ], [ -95.458385039262495, 30.050630253220127 ], [ -95.45826203927038, 30.05050325359343 ], [ -95.457303038768742, 30.04920625333682 ], [ -95.457142038598789, 30.048983252627533 ], [ -95.4563370382361, 30.047862252637209 ], [ -95.456256038261131, 30.047781252699775 ], [ -95.456202038425957, 30.047708252886352 ], [ -95.456111038322618, 30.047554252589606 ], [ -95.455958038423731, 30.04735425265574 ], [ -95.455631037949971, 30.046880252297658 ], [ -95.455389038459899, 30.047021252511463 ], [ -95.455086038277955, 30.047186252521158 ], [ -95.454726037801024, 30.047411252358959 ], [ -95.454625038284533, 30.047449252805738 ], [ -95.454580037526242, 30.047488253091924 ], [ -95.454454038078538, 30.04756525244952 ], [ -95.454340038414244, 30.047609252912448 ], [ -95.45395503774013, 30.047691252543171 ], [ -95.453582038169344, 30.04770825295488 ], [ -95.453494038072606, 30.047697252523381 ], [ -95.452727037023649, 30.047415252457078 ], [ -95.451819037431306, 30.047082252573638 ], [ -95.451237036906107, 30.046851252679584 ], [ -95.450820036783284, 30.046702252794812 ], [ -95.449993036921043, 30.046391252908133 ], [ -95.449095036584609, 30.046054252505865 ], [ -95.44872903617717, 30.04594425297929 ], [ -95.448432036306514, 30.045834252828172 ], [ -95.448185036414827, 30.045757252617264 ], [ -95.447983036085333, 30.045658252672407 ], [ -95.447477036029852, 30.045438252324125 ], [ -95.447187035975844, 30.045339252510814 ], [ -95.446940036185566, 30.045235252425901 ], [ -95.44680103620064, 30.045131252672206 ], [ -95.446732036302521, 30.045059252937179 ], [ -95.446574035654791, 30.044867252269093 ], [ -95.446498036074232, 30.044735252517889 ], [ -95.446448035572644, 30.044600252334927 ], [ -95.445994035437351, 30.044821252539208 ], [ -95.445525036067707, 30.045108252625621 ], [ -95.444966035790699, 30.045440253119214 ], [ -95.444769034878092, 30.045547252913828 ], [ -95.444007035266068, 30.04603425301341 ], [ -95.443874035253529, 30.046129253131951 ], [ -95.443680035375607, 30.046240253331167 ], [ -95.443613035205757, 30.046293253332127 ], [ -95.443186035307676, 30.046532252859539 ], [ -95.442759034534888, 30.046775253013909 ], [ -95.44249003532083, 30.046918253268259 ], [ -95.441568034406245, 30.047418253130495 ], [ -95.441273034919021, 30.047589253293037 ], [ -95.440750034318796, 30.047873253787692 ], [ -95.439940033794912, 30.048320253569461 ], [ -95.439701034557999, 30.048473253772169 ], [ -95.439415034238209, 30.048680253422464 ], [ -95.439113033602752, 30.048925253441553 ], [ -95.438799033921725, 30.049181253908916 ], [ -95.438649033844115, 30.049331253923015 ], [ -95.438563033824806, 30.049416253863548 ], [ -95.438512033904175, 30.049489253850865 ], [ -95.43833403446304, 30.049687253644151 ], [ -95.438251033655504, 30.049790254212084 ], [ -95.437949034060907, 30.050166253642438 ], [ -95.437885033835997, 30.050215253485714 ], [ -95.437835034226154, 30.050280254121581 ], [ -95.437618033468993, 30.050484253805656 ], [ -95.437430033754183, 30.050638254443939 ], [ -95.437344033215098, 30.05069625426955 ], [ -95.437265033986563, 30.050760253971777 ], [ -95.436926033806515, 30.050969254213289 ], [ -95.436591033108854, 30.051175253939597 ], [ -95.436308033509434, 30.051373254119827 ], [ -95.436205033747683, 30.051459254030462 ], [ -95.436049033244117, 30.051589254608555 ], [ -95.43555203380329, 30.05204925452411 ], [ -95.435382032871047, 30.052185254228277 ], [ -95.435208033313415, 30.052309254557994 ], [ -95.43503103283301, 30.052419254801855 ], [ -95.434755032737471, 30.052560254541593 ], [ -95.434576033074549, 30.05263725482715 ], [ -95.434321032836635, 30.052720254181413 ], [ -95.434058032809304, 30.052788254974701 ], [ -95.433779033120217, 30.05283725500696 ], [ -95.433448033116051, 30.05287125478749 ], [ -95.433156032713299, 30.052884254483068 ], [ -95.433356032439761, 30.053163254459186 ], [ -95.433906033112947, 30.053929254802238 ], [ -95.433976032851916, 30.054037254707168 ], [ -95.435582033650448, 30.056093254960466 ], [ -95.437176033940432, 30.058289255908392 ], [ -95.437627033880986, 30.058936255338075 ], [ -95.437969034264896, 30.059401256200541 ], [ -95.438603034596554, 30.060274256332558 ], [ -95.439148035026236, 30.06100325609065 ], [ -95.4394240351658, 30.061328255957385 ], [ -95.439801034982096, 30.06173825580138 ], [ -95.440037035396585, 30.062025256487637 ], [ -95.440411035318974, 30.062525256787147 ], [ -95.440704035626311, 30.062947256141701 ], [ -95.441112035815522, 30.063492256290843 ], [ -95.441220035706678, 30.063658256289401 ], [ -95.441636035288454, 30.063575256751793 ], [ -95.442110035362091, 30.063522256188435 ], [ -95.442387035499081, 30.063512256376722 ], [ -95.442645036020963, 30.063534256123138 ], [ -95.443156036177754, 30.063599256118849 ], [ -95.443218035919529, 30.063606256182425 ], [ -95.443263035763565, 30.063611256674253 ], [ -95.443300036334435, 30.06361525664056 ], [ -95.443372035911466, 30.063623256829789 ], [ -95.443475036304633, 30.063634256053067 ], [ -95.443525035427399, 30.063639256062601 ], [ -95.443588035471791, 30.0636462562478 ], [ -95.444004035763584, 30.063692256772896 ], [ -95.444089035550434, 30.063696256494577 ], [ -95.444407035845487, 30.06371125682082 ], [ -95.44463903648473, 30.063710256373756 ], [ -95.444994036633631, 30.063694256340661 ], [ -95.445233036688748, 30.063673256069421 ], [ -95.44546503667938, 30.063642256732088 ], [ -95.445936036320589, 30.063559256186561 ], [ -95.446434036431683, 30.063422256547561 ], [ -95.446708036376506, 30.063334256046886 ], [ -95.446956036364753, 30.063243256251418 ], [ -95.447336036370189, 30.063079255910392 ], [ -95.447522036922749, 30.062988256276274 ], [ -95.44792903746341, 30.062776255929457 ], [ -95.448288037564339, 30.062590255895408 ], [ -95.448516037151819, 30.062466256129614 ], [ -95.448837036807646, 30.062291256404443 ], [ -95.4491810376541, 30.062081255839974 ], [ -95.449270037771797, 30.062044256383118 ], [ -95.449541037419664, 30.061901255689857 ], [ -95.449600037680938, 30.061871256242711 ], [ -95.450174037733163, 30.061543255546773 ], [ -95.450724038011742, 30.061238255804746 ], [ -95.450839037200637, 30.061183255314226 ], [ -95.451054038235611, 30.061055255447723 ], [ -95.451847037414709, 30.06061625534953 ], [ -95.45220603817269, 30.060399255765741 ], [ -95.452428037756334, 30.060251255475599 ], [ -95.452703038257482, 30.06004325532097 ], [ -95.452914038358912, 30.05987025550116 ], [ -95.453075038531878, 30.059724255453574 ], [ -95.45333103865336, 30.059463255308252 ], [ -95.45353103851032, 30.059232255574113 ], [ -95.453654038617174, 30.059075255409258 ], [ -95.453864038782072, 30.058790255420881 ], [ -95.454170038589609, 30.058360254659867 ], [ -95.454400038042635, 30.058063254845443 ], [ -95.454655038743482, 30.057780254863356 ], [ -95.454934038491643, 30.057509255150151 ], [ -95.455130038735362, 30.057338254379498 ], [ -95.455410038949125, 30.057120254876661 ], [ -95.45589903844558, 30.056792254914299 ], [ -95.45615603876945, 30.05664725467869 ], [ -95.456983039496123, 30.056198254790157 ], [ -95.457585039002552, 30.055864254432805 ], [ -95.457894039533031, 30.055670254238137 ], [ -95.458095038876806, 30.055535254105024 ], [ -95.458463039375872, 30.055263254151377 ], [ -95.459589039619758, 30.054402254100303 ], [ -95.460626039989847, 30.053590253923328 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 274, "Tract": "48201341101", "Area_SqMi": 0.99590474452184219, "total_2009": 6666, "total_2010": 6626, "total_2011": 6603, "total_2012": 7728, "total_2013": 7739, "total_2014": 8083, "total_2015": 9682, "total_2016": 11016, "total_2017": 11226, "total_2018": 11334, "total_2019": 10289, "total_2020": 9940, "age1": 2932, "age2": 5694, "age3": 2033, "earn1": 2297, "earn2": 3533, "earn3": 4829, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 110, "naics_s05": 35, "naics_s06": 142, "naics_s07": 816, "naics_s08": 22, "naics_s09": 171, "naics_s10": 299, "naics_s11": 71, "naics_s12": 300, "naics_s13": 0, "naics_s14": 2720, "naics_s15": 43, "naics_s16": 4655, "naics_s17": 133, "naics_s18": 1055, "naics_s19": 87, "naics_s20": 0, "race1": 7357, "race2": 2077, "race3": 102, "race4": 903, "race5": 10, "race6": 210, "ethnicity1": 7303, "ethnicity2": 3356, "edu1": 1613, "edu2": 1859, "edu3": 2434, "edu4": 1821, "Shape_Length": 21321.516930824848, "Shape_Area": 27764119.769263607, "total_2021": 10106, "total_2022": 10659 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.141830934838168, 29.540419159938846 ], [ -95.141695934718996, 29.540276159509148 ], [ -95.140233934808677, 29.53872515941918 ], [ -95.13954893449322, 29.537998159008044 ], [ -95.138942934693731, 29.5374241588 ], [ -95.13813793376049, 29.536544159198613 ], [ -95.13643893329413, 29.534630158418189 ], [ -95.134765933276313, 29.532816157963847 ], [ -95.132460932363955, 29.530421158137624 ], [ -95.13079693131408, 29.528623157732863 ], [ -95.130621931767891, 29.528748157287492 ], [ -95.130382931927059, 29.528919157509218 ], [ -95.130037931377174, 29.529165157220632 ], [ -95.12952293201343, 29.529532157994698 ], [ -95.129269931570207, 29.52971215787748 ], [ -95.128820931727134, 29.529996158176118 ], [ -95.128408931324813, 29.530256157562313 ], [ -95.128252931627571, 29.530337157762531 ], [ -95.128070931299845, 29.530466158289546 ], [ -95.127971931549325, 29.530538158142786 ], [ -95.127410931128594, 29.530939157900118 ], [ -95.126698930463917, 29.531445158203464 ], [ -95.125244930040537, 29.53250915857846 ], [ -95.1250709309342, 29.532632158834371 ], [ -95.124717930729815, 29.532881158971502 ], [ -95.12423593010115, 29.533222158782984 ], [ -95.122086930110527, 29.534782159019919 ], [ -95.121000929195617, 29.53555915883749 ], [ -95.119947929624928, 29.536312159717156 ], [ -95.118861929592526, 29.537089160035091 ], [ -95.118107929332339, 29.537629159645761 ], [ -95.118048929011564, 29.537783159500702 ], [ -95.118663928647862, 29.538440160173927 ], [ -95.119326929190734, 29.539147160197459 ], [ -95.119968929575933, 29.539833160575853 ], [ -95.120621929318517, 29.540531160432707 ], [ -95.121199930242724, 29.541148160315448 ], [ -95.121683930390674, 29.541665160040949 ], [ -95.122193929917998, 29.542075160124522 ], [ -95.122548930567007, 29.542475160520354 ], [ -95.123239930599212, 29.543251161176244 ], [ -95.124308930456408, 29.544339160880096 ], [ -95.124591930621435, 29.544641160770009 ], [ -95.125883931534531, 29.546010161350605 ], [ -95.126436931204296, 29.546573161469794 ], [ -95.126547931437074, 29.546685161608533 ], [ -95.126573931992795, 29.546712161224519 ], [ -95.126753931734882, 29.546903161355065 ], [ -95.127763931757215, 29.547974161647439 ], [ -95.128301931681065, 29.548610161248703 ], [ -95.128478932042867, 29.548819161714519 ], [ -95.128599932223253, 29.548962161871977 ], [ -95.129288931932209, 29.548434161599452 ], [ -95.129489932626299, 29.548257161508257 ], [ -95.129556932338616, 29.548200161643813 ], [ -95.129998932819163, 29.547863161838222 ], [ -95.130791932567831, 29.547262161649019 ], [ -95.131554932573763, 29.546706161581234 ], [ -95.134211933785863, 29.54481216035115 ], [ -95.134622932991718, 29.544521160301148 ], [ -95.134693933406865, 29.544470160617138 ], [ -95.135162933787072, 29.544134160633469 ], [ -95.135309933794076, 29.544030160196186 ], [ -95.135452933610125, 29.543928160078256 ], [ -95.13559193364236, 29.543829160575964 ], [ -95.135670933467281, 29.543773160039045 ], [ -95.136492934373322, 29.543189160471734 ], [ -95.136793933691067, 29.542984160182286 ], [ -95.137575934118445, 29.542499160109468 ], [ -95.138249934586085, 29.542167159809413 ], [ -95.138657934008634, 29.541966159674931 ], [ -95.13966193443477, 29.541473160087499 ], [ -95.141409934642937, 29.540624159145548 ], [ -95.141633935190782, 29.540515159365885 ], [ -95.141830934838168, 29.540419159938846 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 275, "Tract": "48201350603", "Area_SqMi": 0.6753390873419759, "total_2009": 58, "total_2010": 47, "total_2011": 53, "total_2012": 42, "total_2013": 65, "total_2014": 79, "total_2015": 63, "total_2016": 91, "total_2017": 91, "total_2018": 90, "total_2019": 96, "total_2020": 97, "age1": 15, "age2": 39, "age3": 13, "earn1": 18, "earn2": 28, "earn3": 21, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 0, "naics_s07": 11, "naics_s08": 0, "naics_s09": 2, "naics_s10": 0, "naics_s11": 1, "naics_s12": 12, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 18, "naics_s17": 1, "naics_s18": 8, "naics_s19": 0, "naics_s20": 0, "race1": 40, "race2": 7, "race3": 2, "race4": 16, "race5": 0, "race6": 2, "ethnicity1": 55, "ethnicity2": 12, "edu1": 12, "edu2": 10, "edu3": 13, "edu4": 17, "Shape_Length": 21289.987685871434, "Shape_Area": 18827297.900694523, "total_2021": 95, "total_2022": 67 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.182097945999431, 29.541267158489838 ], [ -95.181890945940438, 29.541124158280091 ], [ -95.181543945861605, 29.540840157993337 ], [ -95.180939944699887, 29.540338157962218 ], [ -95.18034894544283, 29.539849157893862 ], [ -95.179743944466651, 29.539345158142051 ], [ -95.179137945078068, 29.538845157730538 ], [ -95.178543944762879, 29.538353158178065 ], [ -95.178124944494044, 29.537985158174635 ], [ -95.177933944577603, 29.537851157957881 ], [ -95.177531943743702, 29.537480158163454 ], [ -95.177420944535982, 29.537355157438327 ], [ -95.177354943803934, 29.537252158075525 ], [ -95.177308944057245, 29.537044157800782 ], [ -95.177305944558043, 29.536919157550354 ], [ -95.177322944605564, 29.536808157762692 ], [ -95.177361943977687, 29.536724157631113 ], [ -95.177598943880668, 29.536460157321937 ], [ -95.178017943904152, 29.536187157567724 ], [ -95.177607943772742, 29.535368157306323 ], [ -95.177361944154015, 29.534986156940008 ], [ -95.176670943375953, 29.534494157348686 ], [ -95.175978944058642, 29.534194156911465 ], [ -95.175468943515199, 29.533812156998373 ], [ -95.175177943761426, 29.533475156735861 ], [ -95.175133943286568, 29.533430157095779 ], [ -95.175378943473405, 29.533256156798402 ], [ -95.176557943910197, 29.532151157109993 ], [ -95.176787943819434, 29.531935156624797 ], [ -95.17638894342511, 29.531524156103401 ], [ -95.1738629426264, 29.529519156215198 ], [ -95.173414943137715, 29.529149156413009 ], [ -95.170461941857624, 29.526691155781275 ], [ -95.169507941649528, 29.525913155876115 ], [ -95.169171941272182, 29.525787156054918 ], [ -95.16884894171352, 29.52578115553262 ], [ -95.168361940913542, 29.526003155402542 ], [ -95.167160940936867, 29.527100156009702 ], [ -95.166508941378211, 29.527699156534695 ], [ -95.166136940675642, 29.528040156013795 ], [ -95.164571940141869, 29.529474156378384 ], [ -95.164202940214466, 29.529813156838443 ], [ -95.163618940722372, 29.529767156876211 ], [ -95.163051940453613, 29.529709156978676 ], [ -95.162682940181952, 29.529667157067248 ], [ -95.16258193981362, 29.530152156370278 ], [ -95.162544939946727, 29.530332157122739 ], [ -95.162248939827265, 29.53110115656343 ], [ -95.161880939945377, 29.531743156811928 ], [ -95.161401940300976, 29.532354157312273 ], [ -95.16182393958394, 29.53270615714014 ], [ -95.162419939681413, 29.53319215698178 ], [ -95.163010939912937, 29.533680157232869 ], [ -95.163597940279629, 29.534168157235829 ], [ -95.163945940343623, 29.534440157131385 ], [ -95.164229940665834, 29.534640157611957 ], [ -95.164815941301256, 29.535096157985794 ], [ -95.165680941092461, 29.535813158232248 ], [ -95.166280941624436, 29.536310157851229 ], [ -95.16686694190409, 29.536801157802742 ], [ -95.167493941426841, 29.537324157954071 ], [ -95.16840094222853, 29.537868158208873 ], [ -95.168795941768195, 29.538193158607207 ], [ -95.169476942677051, 29.538863157919305 ], [ -95.170325942270409, 29.539894158910741 ], [ -95.170903942822989, 29.540609158999271 ], [ -95.172952943137417, 29.539317158084422 ], [ -95.174591943100552, 29.540687158263658 ], [ -95.174898944001669, 29.540937158647115 ], [ -95.175507943940161, 29.541324158728756 ], [ -95.175936944301625, 29.541452158737997 ], [ -95.176236943867593, 29.54154115817639 ], [ -95.176815944334052, 29.541969158727948 ], [ -95.177978944998827, 29.542933158538936 ], [ -95.178656944506997, 29.543498158988552 ], [ -95.179741945063526, 29.544394159258086 ], [ -95.17981494456977, 29.544358159369562 ], [ -95.179959945052843, 29.54420415930522 ], [ -95.180053944742809, 29.544127159149525 ], [ -95.180097944686651, 29.544110158816174 ], [ -95.180210944671671, 29.544044158992097 ], [ -95.180424944764255, 29.543989159430879 ], [ -95.180606945541115, 29.54397315920319 ], [ -95.180845945411576, 29.543885158618409 ], [ -95.180978945496634, 29.543852159360092 ], [ -95.181229945533005, 29.543764158731598 ], [ -95.181481945430207, 29.543571158963569 ], [ -95.181581945348441, 29.543357159092647 ], [ -95.181625945862621, 29.543071158913929 ], [ -95.181625945046136, 29.542472158707806 ], [ -95.181594945435705, 29.542169158845422 ], [ -95.181613945625728, 29.54180115815009 ], [ -95.18182794537249, 29.541520158252688 ], [ -95.182097945999431, 29.541267158489838 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 276, "Tract": "48201432903", "Area_SqMi": 0.14865478398097923, "total_2009": 39, "total_2010": 33, "total_2011": 21, "total_2012": 28, "total_2013": 30, "total_2014": 28, "total_2015": 37, "total_2016": 59, "total_2017": 56, "total_2018": 64, "total_2019": 73, "total_2020": 65, "age1": 13, "age2": 31, "age3": 6, "earn1": 13, "earn2": 32, "earn3": 5, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 12, "naics_s08": 0, "naics_s09": 0, "naics_s10": 11, "naics_s11": 6, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 19, "naics_s19": 0, "naics_s20": 0, "race1": 39, "race2": 3, "race3": 0, "race4": 8, "race5": 0, "race6": 0, "ethnicity1": 26, "ethnicity2": 24, "edu1": 12, "edu2": 7, "edu3": 11, "edu4": 7, "Shape_Length": 9475.0420158110446, "Shape_Area": 4144240.9521841547, "total_2021": 67, "total_2022": 50 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.538942044273085, 29.714493181589024 ], [ -95.538939044537159, 29.713636181659037 ], [ -95.538927043961323, 29.712707181943607 ], [ -95.538924043993774, 29.71254418174761 ], [ -95.538903044302288, 29.711520181137331 ], [ -95.538901044715615, 29.711413181188373 ], [ -95.538888043949257, 29.710843181591287 ], [ -95.538887044414636, 29.710820180887406 ], [ -95.538883043846042, 29.710658181048636 ], [ -95.538874044225082, 29.710306180949985 ], [ -95.538855044564215, 29.709628180596379 ], [ -95.538846044089723, 29.709335180501085 ], [ -95.538836044350177, 29.708961180566103 ], [ -95.538766044084383, 29.708436180814282 ], [ -95.538704044314031, 29.707960180802566 ], [ -95.538658044495008, 29.70780018059569 ], [ -95.538526043777495, 29.707419180262328 ], [ -95.538287044387843, 29.706788180055099 ], [ -95.538092043774526, 29.706192180046489 ], [ -95.538033044170518, 29.705830180042163 ], [ -95.538027044078405, 29.705794180182437 ], [ -95.537986044232525, 29.705003179801256 ], [ -95.537586043677024, 29.705011179756347 ], [ -95.536158043298627, 29.705023180135864 ], [ -95.536166043442776, 29.706509180102302 ], [ -95.534884043252589, 29.706517180753732 ], [ -95.534570043334213, 29.706531180820786 ], [ -95.534200043312453, 29.706548180093321 ], [ -95.533941042739926, 29.706702180874451 ], [ -95.53382404286323, 29.706853180442351 ], [ -95.533767042448218, 29.707060181019273 ], [ -95.533880042560781, 29.707461180244294 ], [ -95.534132043495006, 29.70825518120672 ], [ -95.534402043400647, 29.709077181321195 ], [ -95.534693043730854, 29.709928181503578 ], [ -95.534997043033016, 29.710550181473426 ], [ -95.535036043506793, 29.710968181269514 ], [ -95.535073043828334, 29.712325181494247 ], [ -95.535102043745795, 29.714546181759598 ], [ -95.535630043629183, 29.714524181981755 ], [ -95.536272044256535, 29.714512182451635 ], [ -95.536948043867113, 29.714510181892123 ], [ -95.53722504452567, 29.714510182132937 ], [ -95.53855204455904, 29.714493181948765 ], [ -95.538942044273085, 29.714493181589024 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 277, "Tract": "48201431203", "Area_SqMi": 0.17868577058246388, "total_2009": 713, "total_2010": 642, "total_2011": 55, "total_2012": 39, "total_2013": 26, "total_2014": 43, "total_2015": 41, "total_2016": 54, "total_2017": 57, "total_2018": 70, "total_2019": 46, "total_2020": 40, "age1": 11, "age2": 27, "age3": 6, "earn1": 2, "earn2": 18, "earn3": 24, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 1, "naics_s06": 2, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 1, "naics_s12": 15, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 12, "naics_s20": 0, "race1": 27, "race2": 5, "race3": 0, "race4": 10, "race5": 0, "race6": 2, "ethnicity1": 34, "ethnicity2": 10, "edu1": 6, "edu2": 9, "edu3": 5, "edu4": 13, "Shape_Length": 10269.798173768722, "Shape_Area": 4981453.4600862935, "total_2021": 36, "total_2022": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.51242103944297, 29.744854189002403 ], [ -95.512421039271757, 29.744836189515716 ], [ -95.512420038850138, 29.744819189386913 ], [ -95.512419039515308, 29.744801189164598 ], [ -95.51241803914742, 29.744783188915292 ], [ -95.512416039585545, 29.744765188832197 ], [ -95.51241403893782, 29.744748188842479 ], [ -95.512412039217978, 29.744733189120108 ], [ -95.512409039590395, 29.744712188815136 ], [ -95.512407038785341, 29.744698189186028 ], [ -95.512403038932931, 29.744677189020042 ], [ -95.512399038869134, 29.744660189335296 ], [ -95.512395038837482, 29.744643188748416 ], [ -95.512390038603286, 29.744625189082118 ], [ -95.512386039501209, 29.744610188762444 ], [ -95.512380039097593, 29.744591189114463 ], [ -95.512375038846002, 29.744574188665823 ], [ -95.512369039296615, 29.744559188623725 ], [ -95.512362038673686, 29.744540189113714 ], [ -95.512356039181896, 29.744524188950553 ], [ -95.512342038828095, 29.744490188633158 ], [ -95.512335038955854, 29.74447718896884 ], [ -95.512327039076467, 29.74446018896133 ], [ -95.512319039145694, 29.744444189073661 ], [ -95.512309038876822, 29.744426189221912 ], [ -95.512300038758113, 29.744410188569759 ], [ -95.51229103861138, 29.744394188818728 ], [ -95.512281039222543, 29.744379189352809 ], [ -95.512271038888557, 29.744363188836903 ], [ -95.512248038671558, 29.744329188905201 ], [ -95.51224003955366, 29.744318188739435 ], [ -95.512230039256153, 29.744301189001614 ], [ -95.512221039185007, 29.744284189125025 ], [ -95.512212039171956, 29.744266189127231 ], [ -95.512205038574024, 29.744248188826145 ], [ -95.51219903925886, 29.744229189195064 ], [ -95.512195039277415, 29.744212188600216 ], [ -95.51219003853312, 29.74418518871499 ], [ -95.512188039102995, 29.744165189286399 ], [ -95.512187039193932, 29.744139188970163 ], [ -95.512188038608471, 29.74411418937369 ], [ -95.512191039252528, 29.744094189229077 ], [ -95.512196038571204, 29.744068188933692 ], [ -95.512201038565166, 29.744049188606613 ], [ -95.512207038746993, 29.744030189043144 ], [ -95.512214039122654, 29.744012188560131 ], [ -95.512226038743052, 29.743989188533813 ], [ -95.512245038857145, 29.743965189195453 ], [ -95.51226403893854, 29.743942189073042 ], [ -95.512286038581919, 29.743920188626046 ], [ -95.512308039164267, 29.743899189224553 ], [ -95.512331038900115, 29.74387918887237 ], [ -95.512348039065913, 29.743866188443917 ], [ -95.512357039252677, 29.743859189000968 ], [ -95.51229503909785, 29.741432188141637 ], [ -95.512169038569041, 29.741398188454003 ], [ -95.511711039126709, 29.7411441884305 ], [ -95.511233038380738, 29.740819187926203 ], [ -95.510736038753677, 29.740264187757578 ], [ -95.510330038306208, 29.739623188476493 ], [ -95.510136038043115, 29.739054187963511 ], [ -95.510090037804815, 29.737594187770231 ], [ -95.510094038523476, 29.737434187257211 ], [ -95.509531038355306, 29.737441187572418 ], [ -95.509382038300714, 29.737443187858837 ], [ -95.508810037543597, 29.737451187246911 ], [ -95.508257037318003, 29.737460187614644 ], [ -95.507611037108376, 29.737470187748656 ], [ -95.507177037314619, 29.737467187364309 ], [ -95.505871037492412, 29.737473188145639 ], [ -95.50582903740046, 29.737472187474314 ], [ -95.505050037028781, 29.737471188174641 ], [ -95.505053036989892, 29.737646188217088 ], [ -95.505068036605479, 29.738524187766714 ], [ -95.505097037029628, 29.739340188043165 ], [ -95.505133036904851, 29.740149188407184 ], [ -95.50513003733019, 29.740502188505534 ], [ -95.50512703682044, 29.740983188249146 ], [ -95.505180036838695, 29.741808188673062 ], [ -95.505791037021993, 29.741785188631056 ], [ -95.505995037420107, 29.74176818862253 ], [ -95.505996037246248, 29.741799188759632 ], [ -95.506022036880324, 29.741959188942886 ], [ -95.507723038195394, 29.741965188228523 ], [ -95.507739037668131, 29.742582188690466 ], [ -95.507772038239764, 29.743873189008855 ], [ -95.507758038295862, 29.745218188932018 ], [ -95.507752037930103, 29.745819189301137 ], [ -95.507847038081508, 29.74609918958258 ], [ -95.507897038374722, 29.746101189660653 ], [ -95.50792203827001, 29.746088189776678 ], [ -95.507939037618044, 29.746083189044487 ], [ -95.507984037539657, 29.746076189442423 ], [ -95.508111037758852, 29.746052189294662 ], [ -95.508318037687701, 29.746080189809547 ], [ -95.508423038207638, 29.746110189487482 ], [ -95.508954038178217, 29.746269189634823 ], [ -95.508991038697019, 29.746282189501926 ], [ -95.509058038093698, 29.746308189104447 ], [ -95.5090790379341, 29.746308189271655 ], [ -95.509101038017462, 29.746308189320839 ], [ -95.509132038328517, 29.746306189842326 ], [ -95.509164037963572, 29.74630318919289 ], [ -95.509195038525846, 29.746298189340163 ], [ -95.509226038136021, 29.74629218933346 ], [ -95.50925703886, 29.746285189226533 ], [ -95.509287038440405, 29.746276189863735 ], [ -95.509316037970834, 29.746265189468794 ], [ -95.509354038913287, 29.746250189315706 ], [ -95.509391038869083, 29.746231189663931 ], [ -95.509426038440438, 29.746211189214321 ], [ -95.509459038681413, 29.746189189679193 ], [ -95.50949003870133, 29.746164189109386 ], [ -95.509519038274235, 29.746138189549782 ], [ -95.509546038627562, 29.746109189886891 ], [ -95.509559038749487, 29.746094189150572 ], [ -95.509577038477673, 29.746072189633761 ], [ -95.50959003896341, 29.746052189196313 ], [ -95.509637038444765, 29.746028189414741 ], [ -95.509687038783383, 29.746002189019379 ], [ -95.50972703855976, 29.745979189311242 ], [ -95.509772038687927, 29.745953189507507 ], [ -95.509816038632607, 29.745926189688564 ], [ -95.509859038346022, 29.745899189073473 ], [ -95.509902038083524, 29.745871189226207 ], [ -95.509946038236777, 29.745840189785742 ], [ -95.509971038115353, 29.745823189038568 ], [ -95.509983038164506, 29.745818189608279 ], [ -95.510006038205603, 29.745806189724068 ], [ -95.510047038830081, 29.745787189402961 ], [ -95.510089038491643, 29.745770189160258 ], [ -95.510132038301151, 29.745754188902009 ], [ -95.510175038980549, 29.74574018889685 ], [ -95.510219038820992, 29.745726189629753 ], [ -95.510263038488475, 29.745715188904633 ], [ -95.510308038352605, 29.745704188943119 ], [ -95.510353039093815, 29.74569518923359 ], [ -95.510399038957644, 29.745687189477607 ], [ -95.510445038700183, 29.745681189044113 ], [ -95.510491038262657, 29.745677189736821 ], [ -95.510514038590088, 29.745675189188862 ], [ -95.51053703877362, 29.745675188877016 ], [ -95.510549038634863, 29.745672189636075 ], [ -95.510607038749001, 29.745671189088561 ], [ -95.510634038813834, 29.745671189131272 ], [ -95.511061039132656, 29.745697189288876 ], [ -95.51107203847458, 29.745699188926988 ], [ -95.511095038500599, 29.745701189661442 ], [ -95.511117038321458, 29.745703189619793 ], [ -95.511140038445689, 29.745704189324609 ], [ -95.511163038570388, 29.745705189025443 ], [ -95.511186038794918, 29.745704189384064 ], [ -95.511208038812981, 29.74570318896728 ], [ -95.511242038545461, 29.745701189484056 ], [ -95.511276038469404, 29.745696189631996 ], [ -95.511309039281443, 29.74569018890746 ], [ -95.511342039088902, 29.745683188929686 ], [ -95.511364039356224, 29.745677189690692 ], [ -95.511385038444899, 29.74567018953098 ], [ -95.511396039108362, 29.745667189470996 ], [ -95.511406038564132, 29.745663189394946 ], [ -95.511427038743264, 29.745655189135526 ], [ -95.511447038682761, 29.745647189005005 ], [ -95.511467038650622, 29.745638189653242 ], [ -95.51148703870804, 29.745628189276541 ], [ -95.511506038525425, 29.745618189029521 ], [ -95.511525039403494, 29.745607189588387 ], [ -95.511543039100616, 29.745595189228698 ], [ -95.511561038793516, 29.745583188866462 ], [ -95.511578039310464, 29.745570189443711 ], [ -95.511595038820445, 29.745557189089958 ], [ -95.51161103912419, 29.745544188894371 ], [ -95.511621038650404, 29.74553818946384 ], [ -95.511642038998858, 29.745526189591796 ], [ -95.511664038453915, 29.745516188894186 ], [ -95.5116860389073, 29.745506189121581 ], [ -95.511717039432739, 29.745495188865522 ], [ -95.511741039133383, 29.745488189148862 ], [ -95.511765038711857, 29.745483189668111 ], [ -95.511790038553514, 29.745478189146443 ], [ -95.511814039132517, 29.745474188902097 ], [ -95.511839038762488, 29.745472189633514 ], [ -95.511864039397253, 29.74547118960535 ], [ -95.511889038939856, 29.745471189665825 ], [ -95.511923039472208, 29.745472189495096 ], [ -95.511948038872873, 29.745475189003038 ], [ -95.511969038626034, 29.745473189379048 ], [ -95.512011039365305, 29.745466188885704 ], [ -95.512052038969969, 29.745456189030566 ], [ -95.512097038858911, 29.745438189430384 ], [ -95.51213403904309, 29.745419189043929 ], [ -95.512157038821783, 29.745405189450846 ], [ -95.512179039535383, 29.745389188876171 ], [ -95.512199038765615, 29.745372189328283 ], [ -95.51221903910853, 29.745354188782283 ], [ -95.512236038823218, 29.745334189308998 ], [ -95.51225403892839, 29.745311189334757 ], [ -95.512263038597709, 29.745297189032797 ], [ -95.512269039469359, 29.745286189559536 ], [ -95.512278039243284, 29.745270189016161 ], [ -95.512421039583273, 29.744872189390819 ], [ -95.51242103944297, 29.744854189002403 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 278, "Tract": "48201431403", "Area_SqMi": 0.12969101552151016, "total_2009": 1738, "total_2010": 1582, "total_2011": 1686, "total_2012": 1520, "total_2013": 1894, "total_2014": 1616, "total_2015": 1443, "total_2016": 1520, "total_2017": 1434, "total_2018": 1551, "total_2019": 1876, "total_2020": 2046, "age1": 630, "age2": 1317, "age3": 371, "earn1": 333, "earn2": 513, "earn3": 1472, "naics_s01": 3, "naics_s02": 11, "naics_s03": 40, "naics_s04": 33, "naics_s05": 0, "naics_s06": 48, "naics_s07": 30, "naics_s08": 12, "naics_s09": 7, "naics_s10": 65, "naics_s11": 58, "naics_s12": 546, "naics_s13": 12, "naics_s14": 547, "naics_s15": 31, "naics_s16": 695, "naics_s17": 117, "naics_s18": 47, "naics_s19": 16, "naics_s20": 0, "race1": 1533, "race2": 467, "race3": 20, "race4": 236, "race5": 12, "race6": 50, "ethnicity1": 1714, "ethnicity2": 604, "edu1": 263, "edu2": 385, "edu3": 517, "edu4": 523, "Shape_Length": 11714.942581296471, "Shape_Area": 3615563.5443482534, "total_2021": 1832, "total_2022": 2318 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.481104031712263, 29.749708191423792 ], [ -95.481087031541378, 29.749393191014228 ], [ -95.481097031668156, 29.748729191390392 ], [ -95.480898031475604, 29.748724191274302 ], [ -95.480801031639544, 29.748665191284744 ], [ -95.479528030378162, 29.74868919077824 ], [ -95.479518031076964, 29.747744190494785 ], [ -95.479515030481124, 29.747451191095902 ], [ -95.479515030933143, 29.747383190432551 ], [ -95.479513030616317, 29.747129190744737 ], [ -95.479513030436593, 29.747032190816412 ], [ -95.479509030652167, 29.746689190216642 ], [ -95.479507030571312, 29.746543190948699 ], [ -95.479505030911355, 29.746254190288607 ], [ -95.479503030485773, 29.746006190393366 ], [ -95.479499030959886, 29.745629190700576 ], [ -95.479494031193582, 29.745138190481573 ], [ -95.479492030345241, 29.74484418992839 ], [ -95.479486030454254, 29.744531190111395 ], [ -95.479482030626244, 29.743913190434245 ], [ -95.479461030490029, 29.743478190247728 ], [ -95.47946303039943, 29.743307189791324 ], [ -95.479450030514315, 29.742540189366789 ], [ -95.479443030391678, 29.741972189257918 ], [ -95.479439030161927, 29.741634189712382 ], [ -95.479436030583699, 29.741370189122648 ], [ -95.479439030324372, 29.741300189270472 ], [ -95.479452030624401, 29.740939189288294 ], [ -95.479448030574147, 29.740570189191931 ], [ -95.479444030861828, 29.740139189042473 ], [ -95.479443030583226, 29.739864188888021 ], [ -95.479406030294399, 29.737966188655861 ], [ -95.479528030143754, 29.737767188391825 ], [ -95.478426029976333, 29.737763188454384 ], [ -95.477976029754942, 29.737777188765705 ], [ -95.477234029955255, 29.737810189085153 ], [ -95.476854029747585, 29.7377971885569 ], [ -95.47658502919893, 29.737820189258944 ], [ -95.476583029548209, 29.737989188892463 ], [ -95.476609029443523, 29.738370189402648 ], [ -95.476765029593963, 29.738888188763489 ], [ -95.477007029900733, 29.739425188976522 ], [ -95.477123029468302, 29.739754189476859 ], [ -95.477173029441673, 29.740037189479541 ], [ -95.47720602941618, 29.740562189556837 ], [ -95.477181029609568, 29.741397189214108 ], [ -95.477116029719468, 29.742273189331716 ], [ -95.477103029820697, 29.743151190256409 ], [ -95.4771040294995, 29.743210189982765 ], [ -95.477125030086484, 29.7440481903845 ], [ -95.477220029683622, 29.744991190403553 ], [ -95.477287029825945, 29.745925190160296 ], [ -95.477253029948457, 29.746905191092225 ], [ -95.47718203046351, 29.747905190963611 ], [ -95.477155030767364, 29.748526190786105 ], [ -95.477146029847759, 29.748918190886762 ], [ -95.477110029914755, 29.749257190883988 ], [ -95.476992030159337, 29.749699190944529 ], [ -95.476979029917018, 29.750001191471139 ], [ -95.476974030767806, 29.750131191468714 ], [ -95.477875030602078, 29.750115191324532 ], [ -95.479542030764591, 29.750086191641564 ], [ -95.479923031362631, 29.750080190884873 ], [ -95.480826031137838, 29.75006719135893 ], [ -95.480827030979086, 29.749950190870017 ], [ -95.480829031101592, 29.749781191018236 ], [ -95.481019030943671, 29.749777191033971 ], [ -95.481104031712263, 29.749708191423792 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 279, "Tract": "48201431404", "Area_SqMi": 0.14836634434906587, "total_2009": 2530, "total_2010": 2379, "total_2011": 2194, "total_2012": 1898, "total_2013": 2037, "total_2014": 2122, "total_2015": 1857, "total_2016": 1855, "total_2017": 1815, "total_2018": 1642, "total_2019": 1561, "total_2020": 1515, "age1": 243, "age2": 964, "age3": 324, "earn1": 132, "earn2": 246, "earn3": 1153, "naics_s01": 0, "naics_s02": 23, "naics_s03": 54, "naics_s04": 1, "naics_s05": 0, "naics_s06": 41, "naics_s07": 30, "naics_s08": 0, "naics_s09": 0, "naics_s10": 244, "naics_s11": 32, "naics_s12": 633, "naics_s13": 9, "naics_s14": 269, "naics_s15": 15, "naics_s16": 59, "naics_s17": 31, "naics_s18": 49, "naics_s19": 41, "naics_s20": 0, "race1": 1103, "race2": 237, "race3": 3, "race4": 155, "race5": 4, "race6": 29, "ethnicity1": 1188, "ethnicity2": 343, "edu1": 166, "edu2": 281, "edu3": 381, "edu4": 460, "Shape_Length": 11030.716107193713, "Shape_Area": 4136199.7489157738, "total_2021": 1681, "total_2022": 1531 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.482649031433397, 29.750040191494843 ], [ -95.482647031420825, 29.749917190959177 ], [ -95.482636031500249, 29.749243191418646 ], [ -95.482631031379938, 29.748854190834393 ], [ -95.482626031559263, 29.748446190484916 ], [ -95.482614031599994, 29.747569190668095 ], [ -95.482611031476821, 29.747373190507236 ], [ -95.482605031260576, 29.746987190925594 ], [ -95.482595031365506, 29.746273190253525 ], [ -95.482594031902025, 29.746207190707867 ], [ -95.482589031271445, 29.745790190673642 ], [ -95.482586031225921, 29.745585190155897 ], [ -95.482578031793693, 29.745005190443351 ], [ -95.482570031287722, 29.744486190378364 ], [ -95.482567031957771, 29.744270190184206 ], [ -95.482565031092591, 29.744147190325855 ], [ -95.482556031474004, 29.743504190246984 ], [ -95.482554031375756, 29.743391189873847 ], [ -95.482552031238754, 29.743263189354956 ], [ -95.4825440313831, 29.74264918934394 ], [ -95.482540030961317, 29.742230189615341 ], [ -95.482536031601185, 29.742029189350216 ], [ -95.482533031503138, 29.741858189426644 ], [ -95.482521031455221, 29.741022189700377 ], [ -95.482520031228219, 29.74088918942217 ], [ -95.482514031673574, 29.740485189503634 ], [ -95.482513031460925, 29.740352189205773 ], [ -95.482496031409624, 29.739073188522365 ], [ -95.482495030802014, 29.738920189152775 ], [ -95.482491031083214, 29.738627188367492 ], [ -95.482488030788758, 29.738454188914002 ], [ -95.482487031273422, 29.737908188535158 ], [ -95.482500031620475, 29.737762188468086 ], [ -95.481537031227219, 29.737775188531483 ], [ -95.480118031007194, 29.737767188523385 ], [ -95.479528030143754, 29.737767188391825 ], [ -95.479406030294399, 29.737966188655861 ], [ -95.479443030583226, 29.739864188888021 ], [ -95.479444030861828, 29.740139189042473 ], [ -95.479448030574147, 29.740570189191931 ], [ -95.479452030624401, 29.740939189288294 ], [ -95.479439030324372, 29.741300189270472 ], [ -95.479436030583699, 29.741370189122648 ], [ -95.479439030161927, 29.741634189712382 ], [ -95.479443030391678, 29.741972189257918 ], [ -95.479450030514315, 29.742540189366789 ], [ -95.47946303039943, 29.743307189791324 ], [ -95.479461030490029, 29.743478190247728 ], [ -95.479482030626244, 29.743913190434245 ], [ -95.479486030454254, 29.744531190111395 ], [ -95.479492030345241, 29.74484418992839 ], [ -95.479494031193582, 29.745138190481573 ], [ -95.479499030959886, 29.745629190700576 ], [ -95.479503030485773, 29.746006190393366 ], [ -95.479505030911355, 29.746254190288607 ], [ -95.479507030571312, 29.746543190948699 ], [ -95.479509030652167, 29.746689190216642 ], [ -95.479513030436593, 29.747032190816412 ], [ -95.479513030616317, 29.747129190744737 ], [ -95.479515030933143, 29.747383190432551 ], [ -95.479515030481124, 29.747451191095902 ], [ -95.479518031076964, 29.747744190494785 ], [ -95.479528030378162, 29.74868919077824 ], [ -95.480801031639544, 29.748665191284744 ], [ -95.480898031475604, 29.748724191274302 ], [ -95.481097031668156, 29.748729191390392 ], [ -95.481087031541378, 29.749393191014228 ], [ -95.481104031712263, 29.749708191423792 ], [ -95.481019030943671, 29.749777191033971 ], [ -95.480829031101592, 29.749781191018236 ], [ -95.480827030979086, 29.749950190870017 ], [ -95.480826031137838, 29.75006719135893 ], [ -95.482649031433397, 29.750040191494843 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 280, "Tract": "48201451406", "Area_SqMi": 0.42240262938839601, "total_2009": 1705, "total_2010": 1956, "total_2011": 2084, "total_2012": 1741, "total_2013": 722, "total_2014": 757, "total_2015": 756, "total_2016": 972, "total_2017": 1068, "total_2018": 1055, "total_2019": 1124, "total_2020": 1303, "age1": 255, "age2": 984, "age3": 348, "earn1": 245, "earn2": 313, "earn3": 1029, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 5, "naics_s05": 6, "naics_s06": 5, "naics_s07": 19, "naics_s08": 0, "naics_s09": 2, "naics_s10": 727, "naics_s11": 40, "naics_s12": 333, "naics_s13": 11, "naics_s14": 86, "naics_s15": 0, "naics_s16": 195, "naics_s17": 0, "naics_s18": 12, "naics_s19": 145, "naics_s20": 0, "race1": 802, "race2": 507, "race3": 9, "race4": 234, "race5": 2, "race6": 33, "ethnicity1": 1224, "ethnicity2": 363, "edu1": 240, "edu2": 337, "edu3": 382, "edu4": 373, "Shape_Length": 15300.386642072754, "Shape_Area": 11775862.35802302, "total_2021": 1587, "total_2022": 1587 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619084066298086, 29.743279184952005 ], [ -95.619197066670907, 29.743013185016064 ], [ -95.618581065900187, 29.742847185478542 ], [ -95.617267065633627, 29.742839184710462 ], [ -95.617149065338438, 29.742839184850432 ], [ -95.616869066165364, 29.742840185008472 ], [ -95.616515066019346, 29.742795185176426 ], [ -95.616249066036204, 29.742706185023234 ], [ -95.616016065284143, 29.742568185411059 ], [ -95.615868064981569, 29.742452185429588 ], [ -95.61573606534543, 29.742312185474958 ], [ -95.615637065324393, 29.74213218471532 ], [ -95.615617065441398, 29.741839184661554 ], [ -95.615623064920968, 29.74128618438737 ], [ -95.615615065712888, 29.740511184380104 ], [ -95.614189064477557, 29.740496184814848 ], [ -95.6141900652066, 29.740225184632667 ], [ -95.614166065187462, 29.739919184633177 ], [ -95.614108064623139, 29.739492184527936 ], [ -95.61402506502759, 29.739090184085082 ], [ -95.613856064578471, 29.738595184203483 ], [ -95.613735065099931, 29.738189183872073 ], [ -95.613641064628055, 29.73772918445556 ], [ -95.613578064642653, 29.737315184148926 ], [ -95.613554064772515, 29.736889183659905 ], [ -95.613534064318969, 29.736342183825847 ], [ -95.613539064189169, 29.736193183595859 ], [ -95.613544064628911, 29.736015184123353 ], [ -95.613097064905062, 29.736030183608868 ], [ -95.611462064389059, 29.736076183788981 ], [ -95.609540063480395, 29.736112184092313 ], [ -95.609376063041879, 29.736115184006724 ], [ -95.609079063369236, 29.736130184445248 ], [ -95.608733062980534, 29.736139184332991 ], [ -95.607299062820829, 29.736163183874737 ], [ -95.607057062905639, 29.736170183655567 ], [ -95.606157062715283, 29.736183183695783 ], [ -95.605846063019541, 29.7361831845663 ], [ -95.605849062380088, 29.736300183861214 ], [ -95.605896062696061, 29.738037184919619 ], [ -95.60591506307955, 29.738607184388442 ], [ -95.605918062542145, 29.739083185123384 ], [ -95.60592106325565, 29.73962018468114 ], [ -95.605928062287987, 29.740016184778362 ], [ -95.605944063136363, 29.74044718528809 ], [ -95.605948062379412, 29.740877184878471 ], [ -95.605955062534136, 29.741441185262079 ], [ -95.605975062811382, 29.742397185374529 ], [ -95.605977062590853, 29.742773185611618 ], [ -95.605987062520043, 29.743387185375973 ], [ -95.606004062829143, 29.744281185906456 ], [ -95.606010063534441, 29.744570185785097 ], [ -95.606023062791309, 29.745088185909793 ], [ -95.60603806335476, 29.745751185857181 ], [ -95.60604306297337, 29.745903185667057 ], [ -95.606044062623269, 29.745925186063271 ], [ -95.606059063306319, 29.746227185792076 ], [ -95.606740063502215, 29.746204186223832 ], [ -95.606967063626129, 29.74620218615452 ], [ -95.607404063705516, 29.746202186236616 ], [ -95.607831063551075, 29.746189185881821 ], [ -95.607988063559233, 29.746177186263075 ], [ -95.608174063238948, 29.746174185852507 ], [ -95.608689063641549, 29.746170186456037 ], [ -95.609052063390024, 29.746161186439966 ], [ -95.609278064075568, 29.746159186048668 ], [ -95.609478064431883, 29.746188185619992 ], [ -95.60970006430982, 29.746281186341875 ], [ -95.609992064590557, 29.746435186501117 ], [ -95.610198063832584, 29.746497186504698 ], [ -95.610420064178754, 29.746513185790317 ], [ -95.610879064388101, 29.746490186391849 ], [ -95.611051064521831, 29.74647818622531 ], [ -95.611826064198183, 29.746462185953742 ], [ -95.61217406430184, 29.746453186271292 ], [ -95.612469065172291, 29.746436186208811 ], [ -95.612687064400916, 29.746445186407954 ], [ -95.614512064948087, 29.746396185991376 ], [ -95.615508065147694, 29.746369185611581 ], [ -95.616333065944673, 29.746351185603302 ], [ -95.616833065444141, 29.746336185697984 ], [ -95.617020066258064, 29.74632818608044 ], [ -95.617152065687591, 29.746321185824069 ], [ -95.617419066362714, 29.746322185409173 ], [ -95.61767506641155, 29.746329186232451 ], [ -95.617881066073139, 29.746340185740792 ], [ -95.618100066219, 29.7463771860915 ], [ -95.618497066018961, 29.74643918598813 ], [ -95.618531066699035, 29.74594918538034 ], [ -95.618555066471203, 29.745425185417918 ], [ -95.618557065934695, 29.744945185807214 ], [ -95.6185520663267, 29.744842185232081 ], [ -95.618544066214454, 29.744618184976382 ], [ -95.618568066161671, 29.744320185585011 ], [ -95.618630066332003, 29.744134185579831 ], [ -95.618853065791981, 29.743712185214218 ], [ -95.618943066688487, 29.743537185092936 ], [ -95.619084066298086, 29.743279184952005 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 281, "Tract": "48201431206", "Area_SqMi": 0.17674821727960555, "total_2009": 726, "total_2010": 727, "total_2011": 969, "total_2012": 962, "total_2013": 943, "total_2014": 1190, "total_2015": 1136, "total_2016": 975, "total_2017": 1020, "total_2018": 1069, "total_2019": 1104, "total_2020": 1068, "age1": 357, "age2": 507, "age3": 216, "earn1": 241, "earn2": 547, "earn3": 292, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 2, "naics_s06": 0, "naics_s07": 368, "naics_s08": 2, "naics_s09": 0, "naics_s10": 30, "naics_s11": 21, "naics_s12": 6, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 443, "naics_s17": 0, "naics_s18": 198, "naics_s19": 9, "naics_s20": 0, "race1": 651, "race2": 334, "race3": 8, "race4": 66, "race5": 2, "race6": 19, "ethnicity1": 710, "ethnicity2": 370, "edu1": 174, "edu2": 178, "edu3": 209, "edu4": 162, "Shape_Length": 13335.891652486, "Shape_Area": 4927437.7901582234, "total_2021": 1055, "total_2022": 1080 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.521791041725862, 29.742062188393927 ], [ -95.521693040971257, 29.742004187965922 ], [ -95.52157804178799, 29.741936188118942 ], [ -95.521445041356841, 29.741789187872548 ], [ -95.52140804147102, 29.741603187789366 ], [ -95.521368041637871, 29.740896187866682 ], [ -95.520566040646116, 29.740958188085159 ], [ -95.520324040513771, 29.74098818789199 ], [ -95.519684040680247, 29.740989187599922 ], [ -95.518812040327575, 29.740989188275154 ], [ -95.518673040582769, 29.740990187958712 ], [ -95.518515040403543, 29.740991188388815 ], [ -95.517977040763284, 29.741050188336562 ], [ -95.517562040632868, 29.741178188316979 ], [ -95.517296040584199, 29.741253188030246 ], [ -95.516745040176247, 29.741500188400682 ], [ -95.51643504032873, 29.741601188349541 ], [ -95.515821039875121, 29.741671187991638 ], [ -95.515809039803017, 29.740409187888154 ], [ -95.515807039837767, 29.740120188152613 ], [ -95.515805040222716, 29.739285187538798 ], [ -95.51579603927928, 29.739182188168915 ], [ -95.515772039393966, 29.738474187658632 ], [ -95.515823039676363, 29.737718187410653 ], [ -95.516108039939866, 29.737710187613157 ], [ -95.516963040306891, 29.737697187732433 ], [ -95.517132040252164, 29.737695187168953 ], [ -95.517121040091524, 29.737515187847741 ], [ -95.517115039599972, 29.737377187345146 ], [ -95.51695703976155, 29.737379187731069 ], [ -95.516865039478049, 29.737380186983088 ], [ -95.515719039856251, 29.737370187476991 ], [ -95.514201039357474, 29.737388187185392 ], [ -95.512273038806441, 29.73740918758368 ], [ -95.51106703886245, 29.737422187650637 ], [ -95.510094038523476, 29.737434187257211 ], [ -95.510090037804815, 29.737594187770231 ], [ -95.510136038043115, 29.739054187963511 ], [ -95.510330038306208, 29.739623188476493 ], [ -95.510736038753677, 29.740264187757578 ], [ -95.511233038380738, 29.740819187926203 ], [ -95.511711039126709, 29.7411441884305 ], [ -95.512169038569041, 29.741398188454003 ], [ -95.51229503909785, 29.741432188141637 ], [ -95.512357039252677, 29.743859189000968 ], [ -95.512373039086114, 29.743848188949432 ], [ -95.512391039406708, 29.743836188496854 ], [ -95.512413039555213, 29.743823189140496 ], [ -95.51245603946802, 29.743801189235025 ], [ -95.512500039454395, 29.743782188635542 ], [ -95.512546038640536, 29.74376618897735 ], [ -95.512587038646146, 29.743754188739558 ], [ -95.512630038873539, 29.743746188689503 ], [ -95.512673039043619, 29.74373918874619 ], [ -95.512706038908888, 29.743737189058709 ], [ -95.512761039334919, 29.743735188838357 ], [ -95.512793038862171, 29.743736188731447 ], [ -95.512837038726687, 29.743740189018009 ], [ -95.512880039295524, 29.74374718891983 ], [ -95.512989038884726, 29.74376718864622 ], [ -95.5130310391596, 29.74380018909995 ], [ -95.513157039129453, 29.74390018867031 ], [ -95.513408039397518, 29.744183188656969 ], [ -95.513466039085714, 29.744249188710892 ], [ -95.513571038956684, 29.744392189068932 ], [ -95.513616039274808, 29.744454188773837 ], [ -95.513695039201053, 29.744563188897644 ], [ -95.513709039486457, 29.74458318916459 ], [ -95.513725039276707, 29.744601188863985 ], [ -95.51397903956881, 29.744877189034835 ], [ -95.514047039759802, 29.744893189308502 ], [ -95.514350039222421, 29.744965188743492 ], [ -95.514422039501852, 29.744942188877996 ], [ -95.514642040152722, 29.744868188697858 ], [ -95.515089039824744, 29.744588189052429 ], [ -95.515101039558317, 29.744580188801148 ], [ -95.515363040033066, 29.744394188615246 ], [ -95.515422040154846, 29.744359188942489 ], [ -95.515462040030897, 29.744336188467866 ], [ -95.515544040180757, 29.744287188599145 ], [ -95.515750039534581, 29.74402818914653 ], [ -95.515885040100486, 29.743925188871565 ], [ -95.51645203986665, 29.743312188924598 ], [ -95.516466039703175, 29.743309188812635 ], [ -95.516630040254626, 29.74336418830945 ], [ -95.516703039646771, 29.743402189016024 ], [ -95.516812040351269, 29.743458188202712 ], [ -95.516951039938519, 29.743568188431663 ], [ -95.517046040699412, 29.743722189126199 ], [ -95.517077040659871, 29.743842189019553 ], [ -95.517165040489715, 29.743952189141371 ], [ -95.51727204058875, 29.743975188799965 ], [ -95.517379040733559, 29.743964188784101 ], [ -95.517499040392806, 29.743804189075526 ], [ -95.517514040452596, 29.743762188483409 ], [ -95.517739040566525, 29.743128188805965 ], [ -95.51787104070246, 29.742870188263598 ], [ -95.5180290408735, 29.742727188512571 ], [ -95.518180040702006, 29.742644188110098 ], [ -95.518307040191544, 29.742630188666222 ], [ -95.518451040423955, 29.742661188621284 ], [ -95.518545040379252, 29.742727188635126 ], [ -95.518602040225176, 29.742793188427893 ], [ -95.518621040452217, 29.742837188306385 ], [ -95.518621040976328, 29.742881188212376 ], [ -95.518721040703738, 29.743134188722404 ], [ -95.518835041151561, 29.743266188118032 ], [ -95.518926040343601, 29.743339188331923 ], [ -95.519034040582838, 29.743248188924401 ], [ -95.519060040337408, 29.743283188076532 ], [ -95.519127040701008, 29.743281188331778 ], [ -95.519779041400753, 29.743255188236795 ], [ -95.520536041081996, 29.742403188715119 ], [ -95.520725040612021, 29.742193188589088 ], [ -95.521791041725862, 29.742062188393927 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 282, "Tract": "48201431205", "Area_SqMi": 0.083822612562987717, "total_2009": 256, "total_2010": 267, "total_2011": 75, "total_2012": 59, "total_2013": 35, "total_2014": 34, "total_2015": 19, "total_2016": 13, "total_2017": 18, "total_2018": 17, "total_2019": 22, "total_2020": 25, "age1": 8, "age2": 19, "age3": 3, "earn1": 3, "earn2": 5, "earn3": 22, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 25, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 22, "race2": 5, "race3": 0, "race4": 3, "race5": 0, "race6": 0, "ethnicity1": 16, "ethnicity2": 14, "edu1": 7, "edu2": 6, "edu3": 8, "edu4": 1, "Shape_Length": 6359.691486935234, "Shape_Area": 2336830.9744208972, "total_2021": 22, "total_2022": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.521368041637871, 29.740896187866682 ], [ -95.521284041577132, 29.739337187979356 ], [ -95.521260041137992, 29.739048187834566 ], [ -95.521219041542182, 29.738519187444791 ], [ -95.521170040921064, 29.737844187130708 ], [ -95.521175040919445, 29.737459187179063 ], [ -95.521174041412237, 29.737336186899732 ], [ -95.520478040988166, 29.737343186858507 ], [ -95.519768040371659, 29.73735218712385 ], [ -95.518349040559769, 29.737365187351369 ], [ -95.517115039599972, 29.737377187345146 ], [ -95.517121040091524, 29.737515187847741 ], [ -95.517132040252164, 29.737695187168953 ], [ -95.516963040306891, 29.737697187732433 ], [ -95.516108039939866, 29.737710187613157 ], [ -95.515823039676363, 29.737718187410653 ], [ -95.515772039393966, 29.738474187658632 ], [ -95.51579603927928, 29.739182188168915 ], [ -95.515805040222716, 29.739285187538798 ], [ -95.515807039837767, 29.740120188152613 ], [ -95.515809039803017, 29.740409187888154 ], [ -95.515821039875121, 29.741671187991638 ], [ -95.51643504032873, 29.741601188349541 ], [ -95.516745040176247, 29.741500188400682 ], [ -95.517296040584199, 29.741253188030246 ], [ -95.517562040632868, 29.741178188316979 ], [ -95.517977040763284, 29.741050188336562 ], [ -95.518515040403543, 29.740991188388815 ], [ -95.518673040582769, 29.740990187958712 ], [ -95.518812040327575, 29.740989188275154 ], [ -95.519684040680247, 29.740989187599922 ], [ -95.520324040513771, 29.74098818789199 ], [ -95.520566040646116, 29.740958188085159 ], [ -95.521368041637871, 29.740896187866682 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 283, "Tract": "48201222601", "Area_SqMi": 0.52499258613392852, "total_2009": 4233, "total_2010": 5714, "total_2011": 5726, "total_2012": 5938, "total_2013": 5074, "total_2014": 4861, "total_2015": 3891, "total_2016": 2867, "total_2017": 2939, "total_2018": 3280, "total_2019": 3223, "total_2020": 3021, "age1": 787, "age2": 2128, "age3": 789, "earn1": 515, "earn2": 715, "earn3": 2474, "naics_s01": 0, "naics_s02": 543, "naics_s03": 0, "naics_s04": 590, "naics_s05": 156, "naics_s06": 509, "naics_s07": 19, "naics_s08": 344, "naics_s09": 5, "naics_s10": 146, "naics_s11": 38, "naics_s12": 392, "naics_s13": 41, "naics_s14": 652, "naics_s15": 74, "naics_s16": 147, "naics_s17": 0, "naics_s18": 37, "naics_s19": 11, "naics_s20": 0, "race1": 2667, "race2": 759, "race3": 48, "race4": 158, "race5": 11, "race6": 61, "ethnicity1": 2301, "ethnicity2": 1403, "edu1": 710, "edu2": 784, "edu3": 880, "edu4": 543, "Shape_Length": 17644.433953030708, "Shape_Area": 14635894.767622679, "total_2021": 3006, "total_2022": 3704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.402149019153697, 29.932702231333046 ], [ -95.402136019103182, 29.932263231043766 ], [ -95.402130019243884, 29.931771231046159 ], [ -95.400085018963836, 29.931795230773918 ], [ -95.395365017175408, 29.931827230934584 ], [ -95.39339701690561, 29.931886231391864 ], [ -95.393142016884283, 29.931894231126428 ], [ -95.392354016314755, 29.931911231383236 ], [ -95.390977015982003, 29.931919231803615 ], [ -95.389564016017331, 29.931919231078105 ], [ -95.389337016485314, 29.931915231827809 ], [ -95.389062016258094, 29.931910231556774 ], [ -95.386819015545484, 29.931892231695873 ], [ -95.38676901584455, 29.931895231878123 ], [ -95.385834015309754, 29.931939231698902 ], [ -95.384037014725109, 29.932001231657615 ], [ -95.383941014800499, 29.932023231840425 ], [ -95.383499014107215, 29.932123231898782 ], [ -95.383403014986698, 29.932145231723997 ], [ -95.382898014627486, 29.932220231355451 ], [ -95.381744014053879, 29.932425231885116 ], [ -95.381278013801563, 29.932511231713473 ], [ -95.38071701435301, 29.93261323167539 ], [ -95.380595014237457, 29.932632232183892 ], [ -95.380356013441883, 29.932672231589553 ], [ -95.379941013795573, 29.932740231964395 ], [ -95.38024501384885, 29.934014231901699 ], [ -95.380529013478039, 29.935203232485524 ], [ -95.380896014036409, 29.936669232841645 ], [ -95.381309014238667, 29.938321232774349 ], [ -95.38134801445382, 29.938479233390005 ], [ -95.381404014657306, 29.938701233575749 ], [ -95.38163301454658, 29.938700233375865 ], [ -95.381870014843244, 29.938700232793806 ], [ -95.382802014672876, 29.938699232778802 ], [ -95.383156014814801, 29.93869923336122 ], [ -95.383409014790388, 29.93869023335094 ], [ -95.383520014765381, 29.938688233282978 ], [ -95.385851015049454, 29.938648232562429 ], [ -95.386548015287744, 29.93865323340501 ], [ -95.390129016161509, 29.938599232896003 ], [ -95.391816016862606, 29.938573232526778 ], [ -95.393874017854301, 29.938583232728874 ], [ -95.394081017454326, 29.938596232671291 ], [ -95.394794017941862, 29.938648232244947 ], [ -95.395322018185681, 29.938729232812456 ], [ -95.395896018096963, 29.938829232398973 ], [ -95.396645017719393, 29.939004232355344 ], [ -95.396942018228017, 29.93907823305295 ], [ -95.397146018428757, 29.939129232462694 ], [ -95.397216018530656, 29.938922232729169 ], [ -95.397691017904066, 29.937470232199527 ], [ -95.397964018198024, 29.936637231993021 ], [ -95.398046018024758, 29.93636023223139 ], [ -95.398091018964138, 29.936207232282044 ], [ -95.398128018376326, 29.936129232181834 ], [ -95.398212017965548, 29.935955232347744 ], [ -95.398290018179281, 29.935795231647543 ], [ -95.398610018954002, 29.935351231989209 ], [ -95.399054018880051, 29.934994231902369 ], [ -95.399468018367088, 29.934772231643272 ], [ -95.399845018698372, 29.934661231982538 ], [ -95.400276019237808, 29.934570231685935 ], [ -95.400694019228695, 29.934425232044504 ], [ -95.400917019105023, 29.934331231891541 ], [ -95.401082019591811, 29.934235231369538 ], [ -95.401418019335267, 29.933988231104021 ], [ -95.401630018832478, 29.933776231733233 ], [ -95.401738019531805, 29.933653231634924 ], [ -95.401907019318315, 29.933390231573199 ], [ -95.402050019047849, 29.933090231377772 ], [ -95.402149019153697, 29.932702231333046 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 284, "Tract": "48201432704", "Area_SqMi": 0.26439170086924774, "total_2009": 1955, "total_2010": 2134, "total_2011": 2117, "total_2012": 2200, "total_2013": 2131, "total_2014": 2161, "total_2015": 2224, "total_2016": 2264, "total_2017": 2258, "total_2018": 2192, "total_2019": 2132, "total_2020": 2001, "age1": 382, "age2": 1027, "age3": 503, "earn1": 298, "earn2": 587, "earn3": 1027, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 347, "naics_s05": 100, "naics_s06": 92, "naics_s07": 446, "naics_s08": 13, "naics_s09": 1, "naics_s10": 62, "naics_s11": 37, "naics_s12": 103, "naics_s13": 7, "naics_s14": 43, "naics_s15": 236, "naics_s16": 58, "naics_s17": 23, "naics_s18": 132, "naics_s19": 210, "naics_s20": 0, "race1": 1324, "race2": 249, "race3": 13, "race4": 299, "race5": 3, "race6": 24, "ethnicity1": 1304, "ethnicity2": 608, "edu1": 282, "edu2": 391, "edu3": 460, "edu4": 397, "Shape_Length": 12486.759087492455, "Shape_Area": 7370788.1093161283, "total_2021": 1915, "total_2022": 1912 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.489789032287149, 29.731797187600307 ], [ -95.489769032401711, 29.730624186614588 ], [ -95.489549032353949, 29.730631186775149 ], [ -95.488630032825256, 29.730650186673529 ], [ -95.487922032681098, 29.730657186597593 ], [ -95.487634032626332, 29.730202186641822 ], [ -95.487515032601308, 29.730015186525701 ], [ -95.487371031722148, 29.729776187281338 ], [ -95.487300031504986, 29.729536186594899 ], [ -95.48728603175968, 29.729300186321023 ], [ -95.487346031499655, 29.728983186817448 ], [ -95.487536032248983, 29.728474186649404 ], [ -95.487572031970785, 29.728296186310324 ], [ -95.487578031928962, 29.728117186311536 ], [ -95.487562032151715, 29.727872186509302 ], [ -95.487458032310641, 29.727535186763181 ], [ -95.487300031430038, 29.72721118608565 ], [ -95.487218032094617, 29.72692718601656 ], [ -95.48721003140308, 29.7266901865821 ], [ -95.487206031442739, 29.726371186349947 ], [ -95.487203031373298, 29.726147186155551 ], [ -95.487206032121051, 29.726047186532874 ], [ -95.48721203214771, 29.725887186254845 ], [ -95.487101031336266, 29.725894186356928 ], [ -95.486482031925846, 29.72593418651838 ], [ -95.486318031831615, 29.725944186283471 ], [ -95.484397031073584, 29.725980186030888 ], [ -95.484180031143907, 29.725984185965263 ], [ -95.484016030510091, 29.725988186615169 ], [ -95.483884030493172, 29.72600118609396 ], [ -95.483770031251495, 29.725992186539155 ], [ -95.480360030346887, 29.726025185901793 ], [ -95.476615029037987, 29.72604918620247 ], [ -95.476403028627672, 29.726050186402951 ], [ -95.476390029149798, 29.726217186704176 ], [ -95.476383029436761, 29.726339186156125 ], [ -95.476374029280564, 29.72706918669622 ], [ -95.476398029520979, 29.727556186356779 ], [ -95.476409028880141, 29.727907186591981 ], [ -95.47642102933537, 29.728843186698612 ], [ -95.476397028877102, 29.729527186738171 ], [ -95.476418029121191, 29.730221187426007 ], [ -95.476421028766481, 29.730408187745958 ], [ -95.47644202889154, 29.731513187610378 ], [ -95.477135029288434, 29.731516187221629 ], [ -95.477590029454461, 29.731518187753693 ], [ -95.479005030110955, 29.731523187129142 ], [ -95.479808029973057, 29.731526187368974 ], [ -95.480368030295878, 29.731525187766788 ], [ -95.481647030235891, 29.73152318742671 ], [ -95.481921031027582, 29.731523187707545 ], [ -95.482203030916764, 29.731522187036806 ], [ -95.482844031424591, 29.731519187175003 ], [ -95.483728031387798, 29.731516187530985 ], [ -95.484212031023546, 29.731514186976181 ], [ -95.484870031408278, 29.731551187491227 ], [ -95.485407031487085, 29.731581187509796 ], [ -95.485704031377182, 29.731621187583471 ], [ -95.486468032365494, 29.731722187489066 ], [ -95.486929031662839, 29.731781187548503 ], [ -95.48697503194434, 29.731782187186234 ], [ -95.489789032287149, 29.731797187600307 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 285, "Tract": "48201250408", "Area_SqMi": 4.2227093009451915, "total_2009": 263, "total_2010": 420, "total_2011": 39, "total_2012": 23, "total_2013": 36, "total_2014": 48, "total_2015": 128, "total_2016": 156, "total_2017": 156, "total_2018": 172, "total_2019": 251, "total_2020": 409, "age1": 216, "age2": 278, "age3": 79, "earn1": 190, "earn2": 197, "earn3": 186, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 3, "naics_s07": 49, "naics_s08": 16, "naics_s09": 0, "naics_s10": 9, "naics_s11": 27, "naics_s12": 20, "naics_s13": 1, "naics_s14": 23, "naics_s15": 9, "naics_s16": 157, "naics_s17": 166, "naics_s18": 32, "naics_s19": 49, "naics_s20": 0, "race1": 397, "race2": 120, "race3": 3, "race4": 37, "race5": 2, "race6": 14, "ethnicity1": 411, "ethnicity2": 162, "edu1": 75, "edu2": 86, "edu3": 125, "edu4": 71, "Shape_Length": 62257.26395189594, "Shape_Area": 117721908.07115328, "total_2021": 413, "total_2022": 573 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.219019972972532, 29.937486238655417 ], [ -95.219024972352784, 29.937444238162112 ], [ -95.218949972293558, 29.934706238085909 ], [ -95.21893997286368, 29.934357238184919 ], [ -95.218939972605796, 29.934162237580331 ], [ -95.216241972126113, 29.934196237752946 ], [ -95.212925970518398, 29.934252238412878 ], [ -95.212280970841746, 29.934250238012606 ], [ -95.211873970585415, 29.934206237784728 ], [ -95.21156397046029, 29.934196238511994 ], [ -95.211258970319889, 29.934150238164616 ], [ -95.210572970173445, 29.934047238342998 ], [ -95.210079969683292, 29.933932237925205 ], [ -95.209200969427286, 29.933610237921446 ], [ -95.208396969404163, 29.933247237835083 ], [ -95.207783969729789, 29.932907238177226 ], [ -95.207617969419076, 29.932786237891147 ], [ -95.207324969668051, 29.932592238105741 ], [ -95.206391969172117, 29.931916238217511 ], [ -95.206228969127864, 29.932073237867041 ], [ -95.205965969205252, 29.932327237598813 ], [ -95.204107968688604, 29.934157238690471 ], [ -95.203745968674255, 29.93450223879864 ], [ -95.203116967995143, 29.935103238562746 ], [ -95.201495967836735, 29.936663238903598 ], [ -95.199654967199038, 29.93843223897732 ], [ -95.196002966963803, 29.941991239918767 ], [ -95.195960967088311, 29.942032239990453 ], [ -95.195548966892105, 29.942421240678502 ], [ -95.190991966209708, 29.946870241008003 ], [ -95.185746964696619, 29.951968242323112 ], [ -95.184646964948385, 29.953015243064009 ], [ -95.183664964453598, 29.953958243501877 ], [ -95.182741963661584, 29.954847243090125 ], [ -95.181345963481405, 29.956215243305042 ], [ -95.180733963819947, 29.956813243576043 ], [ -95.178307962837806, 29.959150244551459 ], [ -95.177509963058213, 29.959939244204406 ], [ -95.177451963055887, 29.959994244607575 ], [ -95.175654962194173, 29.961687244698822 ], [ -95.175012962544841, 29.962306244677251 ], [ -95.174544962805726, 29.962748245237425 ], [ -95.173828961807672, 29.963435245207549 ], [ -95.173181962213789, 29.964082245392376 ], [ -95.172181961807809, 29.965074246055394 ], [ -95.171841961689424, 29.965416246093145 ], [ -95.171259961704635, 29.965998245991702 ], [ -95.170589961822273, 29.966593245871103 ], [ -95.169928961645354, 29.967223246119666 ], [ -95.169780961063452, 29.967364246575155 ], [ -95.169185960669296, 29.967951246741332 ], [ -95.167694960591476, 29.96939724717997 ], [ -95.166716961020853, 29.970369246659047 ], [ -95.165147960121359, 29.971904247007586 ], [ -95.164743960611801, 29.972294247452211 ], [ -95.163601959672732, 29.973363247499417 ], [ -95.163310959534442, 29.973646247774123 ], [ -95.163238960407242, 29.973716247882308 ], [ -95.162179959187029, 29.974729248223809 ], [ -95.161168958992832, 29.975729248729081 ], [ -95.160820959886834, 29.976071248464319 ], [ -95.160513959165186, 29.976376248015075 ], [ -95.159665959643519, 29.977201248527162 ], [ -95.159394959172246, 29.977469248915053 ], [ -95.159341959368447, 29.977519248619981 ], [ -95.15813695837997, 29.97868224943295 ], [ -95.157901958499636, 29.978900248755998 ], [ -95.158029959320174, 29.97896024935736 ], [ -95.158461958864876, 29.979160248866247 ], [ -95.159199959391316, 29.979460248820793 ], [ -95.159729959603141, 29.979618249072033 ], [ -95.160869959898363, 29.979664249554386 ], [ -95.161918959904355, 29.979644248700339 ], [ -95.162605959729447, 29.979435249360961 ], [ -95.162875960204303, 29.979364249432553 ], [ -95.163170959722748, 29.979323248988045 ], [ -95.163669959981874, 29.979394248962471 ], [ -95.164036960846047, 29.979537249011383 ], [ -95.164749961017989, 29.980179248964699 ], [ -95.165033960210437, 29.980249249202004 ], [ -95.165318960800562, 29.98065824942951 ], [ -95.165825961245076, 29.981007249666384 ], [ -95.166393960743108, 29.981318248968527 ], [ -95.167441961269816, 29.981722248971245 ], [ -95.168473961792017, 29.981973249163975 ], [ -95.169403962048932, 29.982105249742116 ], [ -95.170258961745205, 29.982083248996954 ], [ -95.173287962859646, 29.981446248705346 ], [ -95.174512963224259, 29.981184249211221 ], [ -95.175569963163099, 29.980969248502259 ], [ -95.176456964053898, 29.980866248572951 ], [ -95.176847963237208, 29.980868248507011 ], [ -95.177225963717348, 29.980851248358039 ], [ -95.17780596402649, 29.980860248543792 ], [ -95.177889963899077, 29.980857248706492 ], [ -95.177990963923065, 29.980854248835247 ], [ -95.178050963663637, 29.980852248373377 ], [ -95.178101964327396, 29.980851249164314 ], [ -95.178096964361927, 29.980714248711372 ], [ -95.17808096406732, 29.980201249032728 ], [ -95.177849963520316, 29.967621246416318 ], [ -95.177844963413435, 29.966302245898984 ], [ -95.177834962794307, 29.963690244970028 ], [ -95.180907964081541, 29.963628245054011 ], [ -95.18596196515567, 29.963526245105438 ], [ -95.189465965847802, 29.963455244952605 ], [ -95.190510966413171, 29.96344924444135 ], [ -95.194199967151476, 29.963225244886438 ], [ -95.203843970180699, 29.963277244473193 ], [ -95.205430970773392, 29.963297243928814 ], [ -95.205428969793957, 29.963245244402035 ], [ -95.205485970714633, 29.9631082444287 ], [ -95.205662970593153, 29.962943244174703 ], [ -95.206104970691612, 29.962624244298787 ], [ -95.206097970055552, 29.962519244336953 ], [ -95.206129970664833, 29.962420244190191 ], [ -95.20620597066825, 29.962338243938451 ], [ -95.206280970798076, 29.962288244115321 ], [ -95.20634397012816, 29.962288244143213 ], [ -95.206356970116275, 29.962354244021576 ], [ -95.206413970203016, 29.96240924445884 ], [ -95.206691970474481, 29.962101243702101 ], [ -95.207133970441063, 29.962101244153803 ], [ -95.207392970873755, 29.962118244042724 ], [ -95.207550971088438, 29.96217324363672 ], [ -95.207733971076422, 29.962178243718594 ], [ -95.208004970607874, 29.962145244181514 ], [ -95.20817597123775, 29.962090244159974 ], [ -95.208276971021348, 29.962107243708282 ], [ -95.208307970518064, 29.96210124366679 ], [ -95.208320970555562, 29.962079244043334 ], [ -95.208389970735766, 29.962063244325677 ], [ -95.208484970990241, 29.962074244080753 ], [ -95.208516970892148, 29.962041244214259 ], [ -95.208579970675416, 29.9620082441579 ], [ -95.208648970700835, 29.961936243943278 ], [ -95.208648971165317, 29.961832243410779 ], [ -95.208705970665505, 29.961799243560691 ], [ -95.208812971074437, 29.961799243765732 ], [ -95.208882971145343, 29.961727243690159 ], [ -95.208977971616719, 29.961705244058926 ], [ -95.209084971058033, 29.961590243797165 ], [ -95.209179971341783, 29.961452243658176 ], [ -95.209330971129603, 29.961320243863664 ], [ -95.209482971699046, 29.961210243545271 ], [ -95.209530971272628, 29.961199244089642 ], [ -95.209557971483235, 29.961210243287351 ], [ -95.20958397150639, 29.961199243759481 ], [ -95.209633971566674, 29.961161243831111 ], [ -95.209709971416231, 29.96112224387517 ], [ -95.209892971214174, 29.96095724332179 ], [ -95.209987971433378, 29.960908243847321 ], [ -95.210056971258581, 29.960842243738103 ], [ -95.210151971718474, 29.96080924361603 ], [ -95.210170971244096, 29.960787243468566 ], [ -95.210163971229107, 29.960688243694932 ], [ -95.210233971108764, 29.960633243427942 ], [ -95.21033497138157, 29.960578243467442 ], [ -95.210397971155103, 29.960528243892298 ], [ -95.210479971890067, 29.960440243777565 ], [ -95.210548971660685, 29.960325243103707 ], [ -95.21062497097374, 29.960116243071138 ], [ -95.210630971359649, 29.960022243527341 ], [ -95.210630971223566, 29.959813243173596 ], [ -95.210592971113783, 29.959544243532658 ], [ -95.210523971016585, 29.959329243671753 ], [ -95.21048597093197, 29.959066242953657 ], [ -95.210460971373166, 29.958994243356202 ], [ -95.210447971395695, 29.958807242755139 ], [ -95.210472971049128, 29.95864824344369 ], [ -95.210504971327069, 29.95853824347979 ], [ -95.210655971486005, 29.958169243384916 ], [ -95.210775971796593, 29.957938242706003 ], [ -95.211185971814928, 29.957091242633783 ], [ -95.211299971688632, 29.956899242641949 ], [ -95.211343970997788, 29.956767242272107 ], [ -95.211393971959637, 29.956685242953974 ], [ -95.211507971701607, 29.956580242917777 ], [ -95.211981971991705, 29.956239242394457 ], [ -95.212265972187737, 29.956091242793374 ], [ -95.212498971595721, 29.95602524211661 ], [ -95.212587971772379, 29.955980242765857 ], [ -95.212852971548969, 29.955936242760728 ], [ -95.213067971963994, 29.955931242676016 ], [ -95.213401972039932, 29.955942242899042 ], [ -95.213477971899351, 29.955964242877798 ], [ -95.213673972343329, 29.955964242809145 ], [ -95.21376797222716, 29.955975242375004 ], [ -95.213944972486033, 29.956035242286756 ], [ -95.213995972138591, 29.956073242297212 ], [ -95.214007972471151, 29.956128242462757 ], [ -95.214039971974074, 29.95614524268499 ], [ -95.214153972327253, 29.956167242407282 ], [ -95.21422297265967, 29.956167242880031 ], [ -95.214279972713385, 29.956161242618879 ], [ -95.214393971834085, 29.956134242667581 ], [ -95.2144499723709, 29.956095242165905 ], [ -95.214645971903124, 29.955925242837239 ], [ -95.214677971839734, 29.955837242198921 ], [ -95.214797972311615, 29.955650242255057 ], [ -95.215061972844836, 29.955149242445213 ], [ -95.21519497235451, 29.954946241767423 ], [ -95.215327972859896, 29.954710241913794 ], [ -95.215377972884824, 29.954666241803924 ], [ -95.215428972299975, 29.954638242237273 ], [ -95.215459972265208, 29.954611242275572 ], [ -95.215516972729773, 29.954506242499292 ], [ -95.215560972375698, 29.954451242284197 ], [ -95.215592972775255, 29.954440241980226 ], [ -95.215680972472725, 29.954363242378452 ], [ -95.215724972200633, 29.954281242050257 ], [ -95.215825972062333, 29.954231242381891 ], [ -95.215863972829609, 29.95417624177826 ], [ -95.215951972385781, 29.954094242222538 ], [ -95.216034972340935, 29.95403924167119 ], [ -95.216153972500365, 29.953890241880408 ], [ -95.216357972806478, 29.95374424232164 ], [ -95.216438972704495, 29.953648241864705 ], [ -95.21650197278376, 29.953560241571772 ], [ -95.21655797234024, 29.953401241910566 ], [ -95.216595973113542, 29.95323624147094 ], [ -95.216614973042297, 29.953087242102569 ], [ -95.216601972393988, 29.952708242000607 ], [ -95.216608972929492, 29.952598241946486 ], [ -95.216620973020454, 29.952537241431536 ], [ -95.216671972202747, 29.952389241281466 ], [ -95.216835972228722, 29.95214124171498 ], [ -95.216993972524179, 29.95198224119526 ], [ -95.217422972933861, 29.951734241252897 ], [ -95.217605972862302, 29.951657241599545 ], [ -95.218028972762482, 29.951377241464659 ], [ -95.218419972738573, 29.951195241140621 ], [ -95.218530973103455, 29.951153241570143 ], [ -95.218760972948644, 29.944719240377065 ], [ -95.21901097303973, 29.937726238284966 ], [ -95.219018972151062, 29.937517238299446 ], [ -95.219019972972532, 29.937486238655417 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 286, "Tract": "48201314005", "Area_SqMi": 0.29828309756146065, "total_2009": 2183, "total_2010": 2285, "total_2011": 2343, "total_2012": 1466, "total_2013": 1495, "total_2014": 1684, "total_2015": 1683, "total_2016": 1859, "total_2017": 1726, "total_2018": 1769, "total_2019": 1715, "total_2020": 1924, "age1": 443, "age2": 1367, "age3": 592, "earn1": 550, "earn2": 523, "earn3": 1329, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 31, "naics_s05": 615, "naics_s06": 167, "naics_s07": 41, "naics_s08": 0, "naics_s09": 0, "naics_s10": 2, "naics_s11": 3, "naics_s12": 303, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 619, "naics_s17": 0, "naics_s18": 616, "naics_s19": 5, "naics_s20": 0, "race1": 1278, "race2": 839, "race3": 19, "race4": 231, "race5": 5, "race6": 30, "ethnicity1": 1784, "ethnicity2": 618, "edu1": 344, "edu2": 521, "edu3": 655, "edu4": 439, "Shape_Length": 13705.283311469098, "Shape_Area": 8315622.2433898682, "total_2021": 2363, "total_2022": 2402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.403234008577442, 29.685241180986107 ], [ -95.403205008440239, 29.682222180042999 ], [ -95.403208008155985, 29.681536179650319 ], [ -95.403203008076559, 29.68085817950211 ], [ -95.403202008078608, 29.680174179174347 ], [ -95.403181008463505, 29.679320178973605 ], [ -95.403159008499685, 29.679054178900504 ], [ -95.402984007787495, 29.679091179348838 ], [ -95.40207300774486, 29.679301179133976 ], [ -95.399897007704368, 29.679741179586468 ], [ -95.396645006414801, 29.680384179425708 ], [ -95.395310005947806, 29.680511180070656 ], [ -95.393687005732289, 29.680588179483987 ], [ -95.393433005938277, 29.680593179963164 ], [ -95.393259005833372, 29.680594179673797 ], [ -95.393159005518129, 29.680886180181894 ], [ -95.393084005664846, 29.68107717983343 ], [ -95.392842005573243, 29.681688180097591 ], [ -95.392649005469167, 29.682350179992994 ], [ -95.392123005835074, 29.684059180681857 ], [ -95.391641005664439, 29.685368180636718 ], [ -95.391233005429598, 29.686582181221301 ], [ -95.390817005251179, 29.687735181103747 ], [ -95.390475005520088, 29.688806181981086 ], [ -95.391203005200666, 29.688973181439597 ], [ -95.391577005915266, 29.68901818182901 ], [ -95.39201900625109, 29.68902318152929 ], [ -95.392099005849744, 29.689022181362649 ], [ -95.392578005954576, 29.689020182043247 ], [ -95.393493005804601, 29.689018181264608 ], [ -95.394428006729953, 29.689016182040135 ], [ -95.394761006082902, 29.688467181519229 ], [ -95.395035006416961, 29.687999181390271 ], [ -95.395129007016195, 29.687840181518929 ], [ -95.395281006313724, 29.68758418138475 ], [ -95.395401006353126, 29.687348181441141 ], [ -95.395473006488473, 29.687195181323723 ], [ -95.395556006377845, 29.686871181451316 ], [ -95.395575006368503, 29.686469181466322 ], [ -95.395574006865488, 29.686442180727088 ], [ -95.395533007066291, 29.685315180639339 ], [ -95.39641700648194, 29.685309180405397 ], [ -95.397069006553295, 29.685303180987994 ], [ -95.397380006824335, 29.685300180901606 ], [ -95.399991007628515, 29.685280180766608 ], [ -95.403234008577442, 29.685241180986107 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 287, "Tract": "48201432703", "Area_SqMi": 0.18209089856608077, "total_2009": 189, "total_2010": 174, "total_2011": 151, "total_2012": 169, "total_2013": 149, "total_2014": 176, "total_2015": 212, "total_2016": 198, "total_2017": 227, "total_2018": 238, "total_2019": 219, "total_2020": 220, "age1": 70, "age2": 133, "age3": 62, "earn1": 65, "earn2": 91, "earn3": 109, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 13, "naics_s06": 31, "naics_s07": 14, "naics_s08": 0, "naics_s09": 2, "naics_s10": 0, "naics_s11": 48, "naics_s12": 16, "naics_s13": 3, "naics_s14": 5, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 118, "naics_s19": 6, "naics_s20": 0, "race1": 205, "race2": 29, "race3": 1, "race4": 28, "race5": 0, "race6": 2, "ethnicity1": 171, "ethnicity2": 94, "edu1": 52, "edu2": 57, "edu3": 48, "edu4": 38, "Shape_Length": 9073.8089300369302, "Shape_Area": 5076382.600334743, "total_2021": 257, "total_2022": 265 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.47644202889154, 29.731513187610378 ], [ -95.476421028766481, 29.730408187745958 ], [ -95.476418029121191, 29.730221187426007 ], [ -95.476397028877102, 29.729527186738171 ], [ -95.47642102933537, 29.728843186698612 ], [ -95.476409028880141, 29.727907186591981 ], [ -95.476398029520979, 29.727556186356779 ], [ -95.476374029280564, 29.72706918669622 ], [ -95.476383029436761, 29.726339186156125 ], [ -95.476390029149798, 29.726217186704176 ], [ -95.476403028627672, 29.726050186402951 ], [ -95.47627702930312, 29.726051186595875 ], [ -95.474534029092794, 29.726062186406448 ], [ -95.473298028734376, 29.726067186256422 ], [ -95.472375028082226, 29.726107186963311 ], [ -95.470987027322835, 29.726168186973666 ], [ -95.470751027523377, 29.726184187101836 ], [ -95.469753027277747, 29.726249186636345 ], [ -95.468876027174261, 29.726324187159715 ], [ -95.468261026487525, 29.726401186836998 ], [ -95.468284027135041, 29.726643186681681 ], [ -95.468249026868207, 29.726880186586165 ], [ -95.468010027379322, 29.727538186860926 ], [ -95.46811002674032, 29.727630186930657 ], [ -95.468189027131146, 29.72769818689379 ], [ -95.468210026782785, 29.728412187107573 ], [ -95.468239026961967, 29.729129187299481 ], [ -95.468236027178165, 29.729463187455185 ], [ -95.46824602694231, 29.729738187339763 ], [ -95.468244026920601, 29.730150187479865 ], [ -95.468250027130068, 29.73060618788649 ], [ -95.468261026950259, 29.73152818788347 ], [ -95.468935027685703, 29.731518187567836 ], [ -95.469249027810179, 29.731517187502337 ], [ -95.469915027752279, 29.73151518820795 ], [ -95.470503027769894, 29.731513187652094 ], [ -95.471003027828885, 29.731511187898299 ], [ -95.471707027606357, 29.731522187802952 ], [ -95.47217402841342, 29.731522187653045 ], [ -95.474027028833916, 29.731526188034074 ], [ -95.47644202889154, 29.731513187610378 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 288, "Tract": "48201421104", "Area_SqMi": 0.19793349350553183, "total_2009": 585, "total_2010": 583, "total_2011": 503, "total_2012": 579, "total_2013": 625, "total_2014": 884, "total_2015": 711, "total_2016": 738, "total_2017": 746, "total_2018": 916, "total_2019": 711, "total_2020": 647, "age1": 143, "age2": 312, "age3": 155, "earn1": 92, "earn2": 234, "earn3": 284, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 104, "naics_s06": 30, "naics_s07": 153, "naics_s08": 5, "naics_s09": 13, "naics_s10": 5, "naics_s11": 20, "naics_s12": 112, "naics_s13": 0, "naics_s14": 0, "naics_s15": 73, "naics_s16": 9, "naics_s17": 0, "naics_s18": 30, "naics_s19": 28, "naics_s20": 0, "race1": 413, "race2": 120, "race3": 5, "race4": 67, "race5": 0, "race6": 5, "ethnicity1": 376, "ethnicity2": 234, "edu1": 118, "edu2": 124, "edu3": 130, "edu4": 95, "Shape_Length": 9465.541444189972, "Shape_Area": 5518047.03237441, "total_2021": 619, "total_2022": 610 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484869030517117, 29.721795185645192 ], [ -95.484865031312225, 29.721283184844385 ], [ -95.48485803144311, 29.720228185176708 ], [ -95.48485703116701, 29.720057184506818 ], [ -95.484113030263387, 29.720068184895194 ], [ -95.483343030075531, 29.720080184703768 ], [ -95.48284202996922, 29.720088184632829 ], [ -95.482623030010572, 29.720089184763058 ], [ -95.482354029888313, 29.720095185469781 ], [ -95.481655029924326, 29.720105184968563 ], [ -95.480656030286752, 29.720122185232917 ], [ -95.479423029305963, 29.72012518553737 ], [ -95.478470028924704, 29.720129185273848 ], [ -95.477926029643029, 29.720130185349234 ], [ -95.477537029074313, 29.720133185187141 ], [ -95.476887028545164, 29.720134185270012 ], [ -95.476718028659221, 29.72013518565976 ], [ -95.476451028366384, 29.72014718553233 ], [ -95.476453028781677, 29.720329185569049 ], [ -95.476494028569832, 29.722466185422178 ], [ -95.476504028895064, 29.722987185831833 ], [ -95.47652802898628, 29.723706186124986 ], [ -95.476524029354479, 29.72445918643713 ], [ -95.476507028625178, 29.72477718609915 ], [ -95.476500029488037, 29.724880186633872 ], [ -95.476493029260041, 29.724929186094855 ], [ -95.476487029357344, 29.725003186390968 ], [ -95.476449029116154, 29.72544618591672 ], [ -95.476427029363407, 29.725729186435053 ], [ -95.476415029159497, 29.725893186451778 ], [ -95.476403028627672, 29.726050186402951 ], [ -95.476615029037987, 29.72604918620247 ], [ -95.480360030346887, 29.726025185901793 ], [ -95.483770031251495, 29.725992186539155 ], [ -95.483884030493172, 29.72600118609396 ], [ -95.484016030510091, 29.725988186615169 ], [ -95.484180031143907, 29.725984185965263 ], [ -95.484181031371833, 29.72581518594852 ], [ -95.48418203145836, 29.725675186199993 ], [ -95.48418303118676, 29.725498185985415 ], [ -95.484184030607992, 29.725360186476056 ], [ -95.484149031505538, 29.725045185968998 ], [ -95.484272030624055, 29.724367185609811 ], [ -95.484285031235189, 29.724293185608996 ], [ -95.484325030700774, 29.724161185973074 ], [ -95.484391031067304, 29.723961185315371 ], [ -95.484591031222237, 29.723301185985893 ], [ -95.484739031166058, 29.722722185632751 ], [ -95.484783031439534, 29.722503185226319 ], [ -95.484831031571133, 29.722258185162307 ], [ -95.484850031397883, 29.722019185762321 ], [ -95.484869030517117, 29.721795185645192 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 289, "Tract": "48201432004", "Area_SqMi": 0.41773554114474776, "total_2009": 2894, "total_2010": 2670, "total_2011": 2830, "total_2012": 3026, "total_2013": 3198, "total_2014": 3138, "total_2015": 3406, "total_2016": 3382, "total_2017": 3246, "total_2018": 3065, "total_2019": 2927, "total_2020": 2533, "age1": 832, "age2": 1470, "age3": 618, "earn1": 712, "earn2": 1082, "earn3": 1126, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 47, "naics_s05": 40, "naics_s06": 33, "naics_s07": 164, "naics_s08": 18, "naics_s09": 74, "naics_s10": 106, "naics_s11": 123, "naics_s12": 209, "naics_s13": 0, "naics_s14": 299, "naics_s15": 17, "naics_s16": 191, "naics_s17": 19, "naics_s18": 1066, "naics_s19": 514, "naics_s20": 0, "race1": 2105, "race2": 534, "race3": 31, "race4": 179, "race5": 6, "race6": 65, "ethnicity1": 1819, "ethnicity2": 1101, "edu1": 505, "edu2": 531, "edu3": 574, "edu4": 478, "Shape_Length": 14727.381911161425, "Shape_Area": 11645751.925591467, "total_2021": 2768, "total_2022": 2920 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484292031134501, 29.737723188642534 ], [ -95.484286031426279, 29.737461188264238 ], [ -95.484278031915082, 29.737121188352539 ], [ -95.484265031655042, 29.736555188206001 ], [ -95.484256031756914, 29.736127188310832 ], [ -95.484239031819826, 29.735419188029919 ], [ -95.484264031381173, 29.734262188144417 ], [ -95.484264031744274, 29.73424518771888 ], [ -95.484244031502115, 29.733060187955353 ], [ -95.484240030890035, 29.732844188008094 ], [ -95.484209031419184, 29.73238018773333 ], [ -95.484210031562625, 29.732240187331755 ], [ -95.484212031023546, 29.731514186976181 ], [ -95.483728031387798, 29.731516187530985 ], [ -95.482844031424591, 29.731519187175003 ], [ -95.482203030916764, 29.731522187036806 ], [ -95.481921031027582, 29.731523187707545 ], [ -95.481647030235891, 29.73152318742671 ], [ -95.480368030295878, 29.731525187766788 ], [ -95.479808029973057, 29.731526187368974 ], [ -95.479005030110955, 29.731523187129142 ], [ -95.477590029454461, 29.731518187753693 ], [ -95.477135029288434, 29.731516187221629 ], [ -95.47644202889154, 29.731513187610378 ], [ -95.474027028833916, 29.731526188034074 ], [ -95.47217402841342, 29.731522187653045 ], [ -95.471707027606357, 29.731522187802952 ], [ -95.471003027828885, 29.731511187898299 ], [ -95.470503027769894, 29.731513187652094 ], [ -95.469915027752279, 29.73151518820795 ], [ -95.469249027810179, 29.731517187502337 ], [ -95.468935027685703, 29.731518187567836 ], [ -95.468261026950259, 29.73152818788347 ], [ -95.468277026980715, 29.732103188175007 ], [ -95.468307027507137, 29.732842188080578 ], [ -95.468317027187354, 29.733701188660746 ], [ -95.468331027628622, 29.734461188087394 ], [ -95.468326027393644, 29.735243188586857 ], [ -95.468364027732576, 29.736009188438565 ], [ -95.468354027230234, 29.736461189074888 ], [ -95.468378027483652, 29.736776189195055 ], [ -95.468398027133347, 29.738011189041202 ], [ -95.470625028567426, 29.737995189177866 ], [ -95.473805029390931, 29.737926188827469 ], [ -95.47408902856894, 29.737956189313959 ], [ -95.474220029269034, 29.737930189106095 ], [ -95.474735029131764, 29.737897188837067 ], [ -95.476358029944407, 29.737831188626846 ], [ -95.47658502919893, 29.737820189258944 ], [ -95.476854029747585, 29.7377971885569 ], [ -95.477234029955255, 29.737810189085153 ], [ -95.477976029754942, 29.737777188765705 ], [ -95.478426029976333, 29.737763188454384 ], [ -95.479528030143754, 29.737767188391825 ], [ -95.480118031007194, 29.737767188523385 ], [ -95.481537031227219, 29.737775188531483 ], [ -95.482500031620475, 29.737762188468086 ], [ -95.48275603101375, 29.737758188215796 ], [ -95.483794031425305, 29.737739188399829 ], [ -95.484292031134501, 29.737723188642534 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 290, "Tract": "48201431504", "Area_SqMi": 0.30854151095155419, "total_2009": 93, "total_2010": 104, "total_2011": 83, "total_2012": 80, "total_2013": 72, "total_2014": 88, "total_2015": 110, "total_2016": 103, "total_2017": 106, "total_2018": 105, "total_2019": 97, "total_2020": 94, "age1": 15, "age2": 54, "age3": 45, "earn1": 41, "earn2": 36, "earn3": 37, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 4, "naics_s06": 2, "naics_s07": 7, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 22, "naics_s12": 23, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 0, "naics_s19": 35, "naics_s20": 0, "race1": 97, "race2": 5, "race3": 1, "race4": 10, "race5": 0, "race6": 1, "ethnicity1": 65, "ethnicity2": 49, "edu1": 33, "edu2": 19, "edu3": 25, "edu4": 22, "Shape_Length": 11646.649914678865, "Shape_Area": 8601609.2512556873, "total_2021": 98, "total_2022": 114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.495683034996333, 29.75068419081747 ], [ -95.495664035339203, 29.750002190322448 ], [ -95.49566503535209, 29.749945190423389 ], [ -95.49546403470552, 29.749943190759616 ], [ -95.49503703517108, 29.749956190413091 ], [ -95.494607034475592, 29.749965190928751 ], [ -95.494288034892392, 29.749991190994812 ], [ -95.493965034232616, 29.750016191091426 ], [ -95.493815034866159, 29.750038190617349 ], [ -95.49347003499976, 29.750085190667559 ], [ -95.493229034638546, 29.750103190376876 ], [ -95.493091034479946, 29.750115190491609 ], [ -95.492855034392534, 29.750124191107108 ], [ -95.492501034412442, 29.750107190594406 ], [ -95.49222603391847, 29.750115190791874 ], [ -95.491813033798564, 29.750107191145659 ], [ -95.491524033774354, 29.750081190964373 ], [ -95.491201034132814, 29.750025190520077 ], [ -95.490754034120314, 29.749930190701118 ], [ -95.490383034028952, 29.749883190460025 ], [ -95.490146033481665, 29.7498701907179 ], [ -95.489953033639495, 29.749877191314496 ], [ -95.48873403363082, 29.749889190661136 ], [ -95.487395033370589, 29.749919190896826 ], [ -95.487018032571868, 29.749925191370245 ], [ -95.486041032617734, 29.749943190691877 ], [ -95.485991032894177, 29.750622191332511 ], [ -95.485939032990245, 29.750979191555455 ], [ -95.485899033043268, 29.751390191057371 ], [ -95.485838032410157, 29.75185219135939 ], [ -95.485831033026471, 29.752682191245984 ], [ -95.485841032416033, 29.75373019217313 ], [ -95.48583003302457, 29.754091191975107 ], [ -95.485835032305175, 29.754436192307814 ], [ -95.485879033166682, 29.755654192321472 ], [ -95.485884032964876, 29.755804192427259 ], [ -95.485883032325773, 29.756230192512234 ], [ -95.485882033149437, 29.756591192570841 ], [ -95.485899033069828, 29.756925192789161 ], [ -95.485951033005406, 29.75746719270046 ], [ -95.485962033288388, 29.75751919252022 ], [ -95.486033033078755, 29.757847192682942 ], [ -95.486096033226161, 29.75813919241838 ], [ -95.486183033388073, 29.758545192980336 ], [ -95.486509033078519, 29.758498192963632 ], [ -95.48680203317069, 29.758450192462998 ], [ -95.487539033205721, 29.758351193013912 ], [ -95.488892033431142, 29.758176192572041 ], [ -95.489259034046029, 29.758117192773422 ], [ -95.489477033827058, 29.758068192653347 ], [ -95.490083034383204, 29.757913192899228 ], [ -95.491597034152534, 29.757485192003259 ], [ -95.492640034883792, 29.757170192237471 ], [ -95.492877034676766, 29.757111192638792 ], [ -95.493652034626095, 29.756882192574157 ], [ -95.494698035391522, 29.75657819193577 ], [ -95.495659035338292, 29.756325192420967 ], [ -95.495656035495898, 29.755757192217011 ], [ -95.495654035034647, 29.755407191631274 ], [ -95.495655034812842, 29.754915191514119 ], [ -95.495656035569098, 29.754108191313712 ], [ -95.495659035638354, 29.752691191232714 ], [ -95.495683034996333, 29.75068419081747 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 291, "Tract": "48201431304", "Area_SqMi": 0.17178348052779252, "total_2009": 1128, "total_2010": 870, "total_2011": 796, "total_2012": 760, "total_2013": 815, "total_2014": 825, "total_2015": 827, "total_2016": 912, "total_2017": 891, "total_2018": 918, "total_2019": 919, "total_2020": 846, "age1": 313, "age2": 373, "age3": 192, "earn1": 253, "earn2": 410, "earn3": 215, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 283, "naics_s08": 0, "naics_s09": 0, "naics_s10": 14, "naics_s11": 29, "naics_s12": 45, "naics_s13": 2, "naics_s14": 0, "naics_s15": 1, "naics_s16": 69, "naics_s17": 21, "naics_s18": 285, "naics_s19": 129, "naics_s20": 0, "race1": 605, "race2": 185, "race3": 5, "race4": 69, "race5": 1, "race6": 13, "ethnicity1": 580, "ethnicity2": 298, "edu1": 149, "edu2": 144, "edu3": 172, "edu4": 100, "Shape_Length": 12486.644023967459, "Shape_Area": 4789029.4267495489, "total_2021": 913, "total_2022": 878 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.501110036639616, 29.750486190702848 ], [ -95.501108036313994, 29.750381190539276 ], [ -95.501103036846615, 29.749832190072794 ], [ -95.501068036168107, 29.749266190154156 ], [ -95.501056036176777, 29.749149190001088 ], [ -95.501050036100409, 29.748288190539611 ], [ -95.501030035903213, 29.747310189864962 ], [ -95.501015036419233, 29.746318189597439 ], [ -95.501021036672938, 29.745688189480894 ], [ -95.501009035775922, 29.745425189963445 ], [ -95.500997035968027, 29.745085189891263 ], [ -95.500984036188456, 29.744699189527701 ], [ -95.500978035922046, 29.744384189419762 ], [ -95.500961036249265, 29.744025188977091 ], [ -95.499448035925695, 29.743797188956844 ], [ -95.499022035188517, 29.743805189104958 ], [ -95.498684035193989, 29.743811189359366 ], [ -95.498040035401971, 29.743814189493758 ], [ -95.498004035867609, 29.743814189058778 ], [ -95.497615035705067, 29.743816189824837 ], [ -95.497608035052309, 29.743689189423534 ], [ -95.497599035431165, 29.742425189401335 ], [ -95.497464035535643, 29.742416189208857 ], [ -95.496667035494127, 29.742431189020227 ], [ -95.496652034429388, 29.740916188993449 ], [ -95.496655034515669, 29.739123188612364 ], [ -95.496656035124531, 29.738719188609952 ], [ -95.496648035155246, 29.738692188088645 ], [ -95.496592034988453, 29.738520188379425 ], [ -95.496459034696571, 29.738288188314478 ], [ -95.49640103500434, 29.738165188488324 ], [ -95.496349034356413, 29.738042188461922 ], [ -95.496347034525527, 29.737739187733407 ], [ -95.496345034535807, 29.73756218773341 ], [ -95.495619034470124, 29.737582188315248 ], [ -95.495636034297377, 29.737736187844977 ], [ -95.495687034582772, 29.738210187928406 ], [ -95.495676034856871, 29.740959189049253 ], [ -95.495695034611288, 29.74157518923646 ], [ -95.495677034610495, 29.742894189686425 ], [ -95.495684035214794, 29.744817189485289 ], [ -95.495690034699592, 29.746230190136927 ], [ -95.495695035331082, 29.747438189890474 ], [ -95.495697034597484, 29.748129190548799 ], [ -95.495700035263113, 29.748810190743221 ], [ -95.495669035426189, 29.749814190267877 ], [ -95.49566503535209, 29.749945190423389 ], [ -95.496219035201477, 29.749945190787017 ], [ -95.496486034945917, 29.749955190273486 ], [ -95.496760035313542, 29.749992190583594 ], [ -95.497319035878391, 29.750101190762894 ], [ -95.497851035379327, 29.750209190358117 ], [ -95.498654035712832, 29.750389190471797 ], [ -95.499113036226987, 29.750455190235979 ], [ -95.499611036476992, 29.750476190786305 ], [ -95.499980035805365, 29.750484190374696 ], [ -95.501110036639616, 29.750486190702848 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 292, "Tract": "48201431503", "Area_SqMi": 0.11756601986645988, "total_2009": 1728, "total_2010": 1817, "total_2011": 1560, "total_2012": 1372, "total_2013": 1599, "total_2014": 1686, "total_2015": 1835, "total_2016": 2225, "total_2017": 2300, "total_2018": 2210, "total_2019": 2048, "total_2020": 1788, "age1": 562, "age2": 987, "age3": 414, "earn1": 395, "earn2": 751, "earn3": 817, "naics_s01": 7, "naics_s02": 9, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 13, "naics_s07": 361, "naics_s08": 196, "naics_s09": 0, "naics_s10": 80, "naics_s11": 121, "naics_s12": 197, "naics_s13": 115, "naics_s14": 337, "naics_s15": 12, "naics_s16": 49, "naics_s17": 49, "naics_s18": 271, "naics_s19": 136, "naics_s20": 0, "race1": 1400, "race2": 363, "race3": 12, "race4": 144, "race5": 4, "race6": 40, "ethnicity1": 1323, "ethnicity2": 640, "edu1": 306, "edu2": 335, "edu3": 442, "edu4": 318, "Shape_Length": 7340.1371654717286, "Shape_Area": 3277539.417622915, "total_2021": 1818, "total_2022": 1963 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.501143036914939, 29.754161191066082 ], [ -95.501114036354636, 29.752987191211588 ], [ -95.50111403701132, 29.75297019095472 ], [ -95.501116036794997, 29.752891191088306 ], [ -95.501119036457624, 29.752711191431576 ], [ -95.501118036422795, 29.752308190893199 ], [ -95.501118036525412, 29.752139190950864 ], [ -95.501113036434759, 29.751703191063434 ], [ -95.501112036519231, 29.751267190875783 ], [ -95.501110036639616, 29.750486190702848 ], [ -95.499980035805365, 29.750484190374696 ], [ -95.499611036476992, 29.750476190786305 ], [ -95.499113036226987, 29.750455190235979 ], [ -95.498654035712832, 29.750389190471797 ], [ -95.497851035379327, 29.750209190358117 ], [ -95.497319035878391, 29.750101190762894 ], [ -95.496760035313542, 29.749992190583594 ], [ -95.496486034945917, 29.749955190273486 ], [ -95.496219035201477, 29.749945190787017 ], [ -95.49566503535209, 29.749945190423389 ], [ -95.495664035339203, 29.750002190322448 ], [ -95.495683034996333, 29.75068419081747 ], [ -95.495659035638354, 29.752691191232714 ], [ -95.495656035569098, 29.754108191313712 ], [ -95.495655034812842, 29.754915191514119 ], [ -95.495654035034647, 29.755407191631274 ], [ -95.495656035495898, 29.755757192217011 ], [ -95.495659035338292, 29.756325192420967 ], [ -95.49574003534768, 29.756304191542128 ], [ -95.497026035389851, 29.755941191417225 ], [ -95.497980035874832, 29.755657191835926 ], [ -95.499126036179845, 29.755345191855355 ], [ -95.499519036100466, 29.755218191752387 ], [ -95.499783036209706, 29.755109191592638 ], [ -95.500280036298562, 29.754809191452054 ], [ -95.500533036977856, 29.75460119105653 ], [ -95.500912036955086, 29.754314191746541 ], [ -95.501143036914939, 29.754161191066082 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 293, "Tract": "48201222602", "Area_SqMi": 0.48100412716548296, "total_2009": 2094, "total_2010": 2982, "total_2011": 3395, "total_2012": 2250, "total_2013": 2387, "total_2014": 2709, "total_2015": 2749, "total_2016": 2623, "total_2017": 2637, "total_2018": 2657, "total_2019": 3011, "total_2020": 2533, "age1": 843, "age2": 1839, "age3": 659, "earn1": 713, "earn2": 1179, "earn3": 1449, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 336, "naics_s05": 10, "naics_s06": 93, "naics_s07": 83, "naics_s08": 36, "naics_s09": 2, "naics_s10": 23, "naics_s11": 273, "naics_s12": 165, "naics_s13": 9, "naics_s14": 1802, "naics_s15": 18, "naics_s16": 132, "naics_s17": 2, "naics_s18": 217, "naics_s19": 50, "naics_s20": 90, "race1": 2224, "race2": 851, "race3": 31, "race4": 157, "race5": 9, "race6": 69, "ethnicity1": 2111, "ethnicity2": 1230, "edu1": 607, "edu2": 675, "edu3": 699, "edu4": 517, "Shape_Length": 15155.865349225805, "Shape_Area": 13409571.818582371, "total_2021": 2842, "total_2022": 3341 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.414013022218427, 29.940539232279839 ], [ -95.414003022781003, 29.940512232686398 ], [ -95.413984023012858, 29.940457232117424 ], [ -95.413945022315701, 29.940344231940905 ], [ -95.413844023119282, 29.940057231917152 ], [ -95.413822023045554, 29.939993232510307 ], [ -95.413262022618511, 29.93839023169431 ], [ -95.413241022142273, 29.938312232337637 ], [ -95.41289302201308, 29.936987231303124 ], [ -95.412842022719005, 29.936829231819342 ], [ -95.412803022506097, 29.936707232120966 ], [ -95.412685021760666, 29.936402231473298 ], [ -95.412487022309278, 29.935813231795713 ], [ -95.412327021705366, 29.935204230931628 ], [ -95.412178022449638, 29.934666231358037 ], [ -95.412116021782069, 29.934299230895029 ], [ -95.412071022067906, 29.933750231525298 ], [ -95.412058021650466, 29.933518231393425 ], [ -95.412033022072862, 29.933052230571935 ], [ -95.41199602160583, 29.932207231102279 ], [ -95.411994021699897, 29.932032230384255 ], [ -95.411991021786179, 29.931804230611121 ], [ -95.411820021649561, 29.931798230749223 ], [ -95.411683021965231, 29.931793230764718 ], [ -95.411456022194301, 29.931784230554136 ], [ -95.411229021385083, 29.931776230924402 ], [ -95.411127021198254, 29.931767230653492 ], [ -95.410316021817721, 29.931723231125492 ], [ -95.409762021658864, 29.931695230823106 ], [ -95.407353020532156, 29.931726230745788 ], [ -95.406227020696292, 29.931746231210624 ], [ -95.404549019888307, 29.931745231124705 ], [ -95.404106019420709, 29.931749231171469 ], [ -95.403285019278343, 29.931768231217688 ], [ -95.402130019243884, 29.931771231046159 ], [ -95.402136019103182, 29.932263231043766 ], [ -95.402149019153697, 29.932702231333046 ], [ -95.402050019047849, 29.933090231377772 ], [ -95.401907019318315, 29.933390231573199 ], [ -95.401738019531805, 29.933653231634924 ], [ -95.401630018832478, 29.933776231733233 ], [ -95.401418019335267, 29.933988231104021 ], [ -95.401082019591811, 29.934235231369538 ], [ -95.400917019105023, 29.934331231891541 ], [ -95.400694019228695, 29.934425232044504 ], [ -95.400276019237808, 29.934570231685935 ], [ -95.399845018698372, 29.934661231982538 ], [ -95.399468018367088, 29.934772231643272 ], [ -95.399054018880051, 29.934994231902369 ], [ -95.398610018954002, 29.935351231989209 ], [ -95.398290018179281, 29.935795231647543 ], [ -95.398212017965548, 29.935955232347744 ], [ -95.398128018376326, 29.936129232181834 ], [ -95.398091018964138, 29.936207232282044 ], [ -95.398046018024758, 29.93636023223139 ], [ -95.397964018198024, 29.936637231993021 ], [ -95.397691017904066, 29.937470232199527 ], [ -95.397216018530656, 29.938922232729169 ], [ -95.397146018428757, 29.939129232462694 ], [ -95.397436018710863, 29.939198232349682 ], [ -95.400057018769061, 29.939823232524997 ], [ -95.40064601948896, 29.940000232643378 ], [ -95.401364019539116, 29.94019423286943 ], [ -95.40215501964137, 29.940372232814823 ], [ -95.402952019753144, 29.940493232913663 ], [ -95.404241019744774, 29.940587232698732 ], [ -95.407501020975815, 29.940630232319226 ], [ -95.409854021599728, 29.940606232698133 ], [ -95.411865022047166, 29.940579232912381 ], [ -95.412628021902719, 29.940564232031594 ], [ -95.413341022541104, 29.940542232510378 ], [ -95.413539022318474, 29.940541232278576 ], [ -95.413728022224163, 29.94054023231763 ], [ -95.413871022786623, 29.940540232702343 ], [ -95.414013022218427, 29.940539232279839 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 294, "Tract": "48201551502", "Area_SqMi": 2.3601415035394986, "total_2009": 1630, "total_2010": 2405, "total_2011": 2716, "total_2012": 2824, "total_2013": 2862, "total_2014": 3244, "total_2015": 3300, "total_2016": 2615, "total_2017": 2714, "total_2018": 3882, "total_2019": 4522, "total_2020": 4913, "age1": 2531, "age2": 3906, "age3": 1133, "earn1": 1355, "earn2": 2500, "earn3": 3715, "naics_s01": 13, "naics_s02": 354, "naics_s03": 507, "naics_s04": 859, "naics_s05": 113, "naics_s06": 62, "naics_s07": 371, "naics_s08": 3862, "naics_s09": 167, "naics_s10": 31, "naics_s11": 10, "naics_s12": 546, "naics_s13": 105, "naics_s14": 54, "naics_s15": 3, "naics_s16": 114, "naics_s17": 6, "naics_s18": 95, "naics_s19": 298, "naics_s20": 0, "race1": 4903, "race2": 1961, "race3": 80, "race4": 474, "race5": 14, "race6": 138, "ethnicity1": 5151, "ethnicity2": 2419, "edu1": 1047, "edu2": 1281, "edu3": 1557, "edu4": 1154, "Shape_Length": 41273.988151684527, "Shape_Area": 65796705.696127333, "total_2021": 5807, "total_2022": 7570 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.56452506154244, 29.937264226662055 ], [ -95.564523060835015, 29.936862226748069 ], [ -95.564523061340267, 29.936512226439877 ], [ -95.564524060771092, 29.935435225982829 ], [ -95.564523060418594, 29.933769226176196 ], [ -95.564523060883474, 29.933698226184351 ], [ -95.564512060964688, 29.933698226265697 ], [ -95.564445060465388, 29.933698225485664 ], [ -95.564383060939662, 29.933698225404566 ], [ -95.56390506038224, 29.933698225865047 ], [ -95.563307060526625, 29.933700225811865 ], [ -95.562317060871067, 29.933694225489052 ], [ -95.560339059752437, 29.933701226243787 ], [ -95.559841059673928, 29.93370322606896 ], [ -95.557088059123416, 29.933712225986866 ], [ -95.556254058630984, 29.933715226488822 ], [ -95.556047059107101, 29.93371622573294 ], [ -95.555707058543646, 29.93371822568032 ], [ -95.554926058149562, 29.933723225889203 ], [ -95.554738058661812, 29.933719225792125 ], [ -95.553827058604227, 29.933721225962273 ], [ -95.553389058241962, 29.93372322587981 ], [ -95.553002057574218, 29.933725226161354 ], [ -95.552496057378377, 29.933727226182043 ], [ -95.551927057696531, 29.93373022622842 ], [ -95.551632057166955, 29.933731226340736 ], [ -95.551378057142799, 29.933731226696601 ], [ -95.55053005767121, 29.933732226322686 ], [ -95.550506057771074, 29.933732226047471 ], [ -95.548659057210628, 29.933736226720164 ], [ -95.548537056544689, 29.933729225945186 ], [ -95.548426056924271, 29.933712226678072 ], [ -95.548326056534677, 29.933682226025891 ], [ -95.548237057274292, 29.9336422260312 ], [ -95.548156057113687, 29.933592226236829 ], [ -95.548086056506961, 29.933530226083118 ], [ -95.548027057056501, 29.933458226640447 ], [ -95.547981056290539, 29.933378226150314 ], [ -95.547949057093945, 29.933293226212861 ], [ -95.547930056353664, 29.933203226313822 ], [ -95.547921057161901, 29.933094226235273 ], [ -95.547919056497918, 29.932106226491893 ], [ -95.547909056173751, 29.931153225729162 ], [ -95.547910056791849, 29.930758225727313 ], [ -95.547905056838459, 29.930214225437521 ], [ -95.547903056327868, 29.929658225693373 ], [ -95.547901056070401, 29.929270225433324 ], [ -95.547887056935465, 29.928800225076444 ], [ -95.547892056793501, 29.928647224937009 ], [ -95.547897056631825, 29.928501225187301 ], [ -95.547902056751056, 29.928356225494792 ], [ -95.547817056351874, 29.928398225129637 ], [ -95.546240056085082, 29.928924225628585 ], [ -95.544329055671241, 29.929659225912314 ], [ -95.544139055750705, 29.929732225962379 ], [ -95.543895055380617, 29.929844225772911 ], [ -95.538146054134671, 29.932067226249501 ], [ -95.531096052777499, 29.934997227254826 ], [ -95.529982052155049, 29.935442227269302 ], [ -95.529447052422483, 29.935591227384187 ], [ -95.529232051885359, 29.935651227529878 ], [ -95.52897005143025, 29.935723227629172 ], [ -95.528306051446663, 29.935947227968196 ], [ -95.527655051617089, 29.93612622743985 ], [ -95.52649305124055, 29.936369227955929 ], [ -95.525309051395553, 29.93650022816573 ], [ -95.524553050713578, 29.936563228126815 ], [ -95.522800049998722, 29.936653227424664 ], [ -95.522083050603868, 29.936671228230033 ], [ -95.521726049807413, 29.936680227678057 ], [ -95.520268049431536, 29.936743228012155 ], [ -95.519404049019144, 29.936778228268501 ], [ -95.519228049347987, 29.936783227604682 ], [ -95.516932048551382, 29.936866227906297 ], [ -95.516769048954657, 29.936868228098582 ], [ -95.516525048472189, 29.936877227796241 ], [ -95.516229049146915, 29.936887227906514 ], [ -95.515967049030692, 29.936888228308476 ], [ -95.515322048141911, 29.936908227797517 ], [ -95.515552048666279, 29.937089228000833 ], [ -95.516002049187477, 29.9374152280005 ], [ -95.516402048374331, 29.937731227926612 ], [ -95.516867048606343, 29.938089227920706 ], [ -95.517832049143507, 29.938789228837233 ], [ -95.518409049847378, 29.939264228199114 ], [ -95.519123049850066, 29.939802228545975 ], [ -95.519742049631716, 29.940238228900792 ], [ -95.520219050227439, 29.940577228505365 ], [ -95.521147049734267, 29.941235228715907 ], [ -95.521214050197443, 29.941278229153255 ], [ -95.521324050271744, 29.941358228609513 ], [ -95.52135405030026, 29.941380229275921 ], [ -95.521524049816819, 29.941505229008172 ], [ -95.522303050389013, 29.942082228864347 ], [ -95.522635050693822, 29.942334228742457 ], [ -95.523520051268903, 29.943010229525932 ], [ -95.523958050842424, 29.943340228796949 ], [ -95.523972051047906, 29.943355229333299 ], [ -95.524008050530625, 29.943390229310609 ], [ -95.524015050609577, 29.943397229546513 ], [ -95.524034050637837, 29.943417228948451 ], [ -95.524061050774705, 29.943443229143337 ], [ -95.524078051456016, 29.94346022894705 ], [ -95.524961050866011, 29.944031229326043 ], [ -95.525569051877241, 29.944511229183984 ], [ -95.525619051100421, 29.94455122936224 ], [ -95.526111051912238, 29.944939229255152 ], [ -95.526696052103063, 29.945495229306065 ], [ -95.526783051328664, 29.945580229367881 ], [ -95.526965051791109, 29.945723229907557 ], [ -95.527130051473463, 29.945863229782873 ], [ -95.527306051838721, 29.946013229341514 ], [ -95.527627051573319, 29.946285229406627 ], [ -95.528341052609534, 29.946884229996094 ], [ -95.52899805259473, 29.947404229509814 ], [ -95.529879052870101, 29.9481442303961 ], [ -95.530847053435807, 29.948848230053851 ], [ -95.531716053103125, 29.949435229862324 ], [ -95.533385054255106, 29.950719230077816 ], [ -95.533887053974212, 29.950821230098956 ], [ -95.533944054080351, 29.950833230186323 ], [ -95.534172053729151, 29.950818230553704 ], [ -95.534465054299829, 29.950793229978643 ], [ -95.534752054262995, 29.950753230147292 ], [ -95.534889054258443, 29.950734230625674 ], [ -95.534958053789353, 29.95070623009526 ], [ -95.534991053973684, 29.950693229978224 ], [ -95.53514205466665, 29.950629229947449 ], [ -95.535249054100845, 29.950613230385656 ], [ -95.535401054431858, 29.950613230349465 ], [ -95.53578605478954, 29.950635230594315 ], [ -95.536209054219938, 29.950679230151088 ], [ -95.536366054511134, 29.950674230492552 ], [ -95.536505054904211, 29.950641230566045 ], [ -95.536653055012707, 29.950549230319918 ], [ -95.536764054335578, 29.950481229838026 ], [ -95.536950054966354, 29.950389230217397 ], [ -95.537048055125183, 29.950344230260065 ], [ -95.537168054735318, 29.95030523025088 ], [ -95.537768054619519, 29.950179230463508 ], [ -95.538102054950002, 29.950135230441479 ], [ -95.540596055806077, 29.94964122978552 ], [ -95.540962055329956, 29.949586229849373 ], [ -95.54130905585501, 29.949514229601437 ], [ -95.541480055733601, 29.949459230096039 ], [ -95.541878056096877, 29.949218230176747 ], [ -95.542042056287599, 29.949146229315762 ], [ -95.542225055861337, 29.949091230173689 ], [ -95.542351056440111, 29.949080229966871 ], [ -95.542654055984116, 29.949080229501448 ], [ -95.542944056359232, 29.949058230062963 ], [ -95.54405505652673, 29.949058230090316 ], [ -95.544516056432059, 29.949042229213845 ], [ -95.544908056532094, 29.949058229840187 ], [ -95.545002056848247, 29.949042229218222 ], [ -95.545148057106275, 29.949059229833072 ], [ -95.545223056371, 29.949042229237921 ], [ -95.545261056682421, 29.949053229256876 ], [ -95.545356056936654, 29.949048229404049 ], [ -95.545495056950131, 29.94902622985866 ], [ -95.545798056982534, 29.949048229744818 ], [ -95.545937056900527, 29.949026229742003 ], [ -95.54611305724319, 29.949053229933561 ], [ -95.546360057093096, 29.949048229716411 ], [ -95.54682905691655, 29.949012229840584 ], [ -95.546865057216294, 29.949009229605743 ], [ -95.547086057307297, 29.948965229784235 ], [ -95.547121056730987, 29.948956229613383 ], [ -95.547257057192397, 29.948914229535454 ], [ -95.547486057529113, 29.948847229678162 ], [ -95.547689057171539, 29.948802229848269 ], [ -95.547829057771708, 29.948760229168617 ], [ -95.547819056869571, 29.948622229552573 ], [ -95.547556057276964, 29.948240229362654 ], [ -95.54752405735492, 29.94814622938776 ], [ -95.547480057119031, 29.947975229207337 ], [ -95.547461057598113, 29.947844229513674 ], [ -95.547448056675748, 29.947638229555686 ], [ -95.547441056821143, 29.94680622941604 ], [ -95.547446057034705, 29.946709229423107 ], [ -95.547439057034836, 29.946634228812517 ], [ -95.547434057565752, 29.945880228762892 ], [ -95.5474290568621, 29.945366229076349 ], [ -95.547436056904402, 29.945282228786631 ], [ -95.547429057270023, 29.945208229100007 ], [ -95.54742605674187, 29.944938228312882 ], [ -95.547420056608473, 29.944674228288569 ], [ -95.547426056618406, 29.944594228643197 ], [ -95.547428057011601, 29.94404222810725 ], [ -95.547434057438082, 29.943999228566586 ], [ -95.547803056783948, 29.943994228855519 ], [ -95.549877058057731, 29.943995228886571 ], [ -95.550800058084661, 29.943981228712438 ], [ -95.551881057952784, 29.943975228303167 ], [ -95.55294605861846, 29.943968228036614 ], [ -95.55403005898566, 29.943965227958106 ], [ -95.555092058665863, 29.943964227814309 ], [ -95.556176058882031, 29.943957228264821 ], [ -95.558690060401517, 29.94394522850267 ], [ -95.560325060474881, 29.943941227775678 ], [ -95.560462060838219, 29.943931228198007 ], [ -95.560524059849541, 29.943937228402529 ], [ -95.561409060656644, 29.943929228178376 ], [ -95.561411060119468, 29.943503228113375 ], [ -95.561426060431003, 29.943409227791594 ], [ -95.561410060065796, 29.94335622787133 ], [ -95.561407060567518, 29.942919228215075 ], [ -95.561413061056371, 29.94279622790809 ], [ -95.561832060355712, 29.942796227857954 ], [ -95.561853060790924, 29.94279322761426 ], [ -95.561920060781645, 29.942797227910411 ], [ -95.562674061347863, 29.942801228176144 ], [ -95.562782061058641, 29.942799227829443 ], [ -95.563499060742657, 29.942808227650367 ], [ -95.564112060799914, 29.94280722765815 ], [ -95.564454060929236, 29.942814227479264 ], [ -95.564461060814097, 29.942044227948966 ], [ -95.564467061222999, 29.941289227738711 ], [ -95.564469060952447, 29.941074226986128 ], [ -95.564474060955263, 29.941026227160012 ], [ -95.564469061739004, 29.940927227100168 ], [ -95.564475060953427, 29.940573227149475 ], [ -95.564487061566709, 29.939861226984615 ], [ -95.564506061291809, 29.938773226631742 ], [ -95.56452506154244, 29.937264226662055 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 295, "Tract": "48201533803", "Area_SqMi": 1.3341730475638121, "total_2009": 586, "total_2010": 551, "total_2011": 589, "total_2012": 573, "total_2013": 675, "total_2014": 699, "total_2015": 671, "total_2016": 671, "total_2017": 694, "total_2018": 654, "total_2019": 632, "total_2020": 666, "age1": 174, "age2": 322, "age3": 113, "earn1": 138, "earn2": 237, "earn3": 234, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 26, "naics_s06": 44, "naics_s07": 323, "naics_s08": 3, "naics_s09": 0, "naics_s10": 12, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 69, "naics_s17": 34, "naics_s18": 68, "naics_s19": 7, "naics_s20": 0, "race1": 454, "race2": 109, "race3": 6, "race4": 30, "race5": 4, "race6": 6, "ethnicity1": 312, "ethnicity2": 297, "edu1": 155, "edu2": 103, "edu3": 117, "edu4": 60, "Shape_Length": 30401.878023002744, "Shape_Area": 37194461.10608694, "total_2021": 682, "total_2022": 609 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.468119034561738, 29.903895223290743 ], [ -95.468259035434698, 29.903852223494148 ], [ -95.467506034934971, 29.903342222589949 ], [ -95.467264034292924, 29.903141223281459 ], [ -95.46580603474969, 29.901594222285922 ], [ -95.464806033716357, 29.9005342225161 ], [ -95.464229033352041, 29.899916222785052 ], [ -95.463552034041967, 29.899215222181105 ], [ -95.463123033695283, 29.898771221863228 ], [ -95.462709033552429, 29.898457222572617 ], [ -95.46220603309537, 29.89817022189008 ], [ -95.46206903270442, 29.898113222371791 ], [ -95.461613032993199, 29.897923222500445 ], [ -95.461451033161964, 29.897855221926889 ], [ -95.461131032353293, 29.897759221788046 ], [ -95.460703032966336, 29.897665221993957 ], [ -95.460105032466984, 29.897624222303499 ], [ -95.457476032289051, 29.897639222106733 ], [ -95.455867031161645, 29.897637222172296 ], [ -95.455470031901342, 29.89763922249303 ], [ -95.454320030937666, 29.897646222099446 ], [ -95.453337030425061, 29.8976522221047 ], [ -95.452765030906193, 29.89766422190516 ], [ -95.450776030638693, 29.89770622271044 ], [ -95.44988202968058, 29.897725222147791 ], [ -95.448401029136321, 29.897754222145792 ], [ -95.446978028741924, 29.897783222520438 ], [ -95.445636029049609, 29.897808222935009 ], [ -95.44290802786027, 29.897853222539329 ], [ -95.441500028240071, 29.897883222382102 ], [ -95.440989027824145, 29.897894222702487 ], [ -95.440921027584395, 29.897895222596024 ], [ -95.438258026948816, 29.897938222461057 ], [ -95.437302027183605, 29.897960223118574 ], [ -95.435796026417492, 29.897995222531694 ], [ -95.435559026076959, 29.898001223380508 ], [ -95.432801025718376, 29.898039223051342 ], [ -95.432343025461947, 29.898037223537731 ], [ -95.432220025922916, 29.8980372233517 ], [ -95.432125025613729, 29.898037222885691 ], [ -95.431893025068149, 29.898037223266353 ], [ -95.431442025609769, 29.898035222704177 ], [ -95.431368025704174, 29.898035223285607 ], [ -95.431315025260048, 29.898035222699729 ], [ -95.429545024388617, 29.898034223422794 ], [ -95.42931902436537, 29.898031223479094 ], [ -95.42982402455992, 29.898687223156944 ], [ -95.430066024864132, 29.898987223535322 ], [ -95.430174025231722, 29.899127223781225 ], [ -95.43022602504216, 29.899124223165419 ], [ -95.430350024594304, 29.899124223765583 ], [ -95.430893025492125, 29.899212223668396 ], [ -95.431063025174026, 29.899250223238212 ], [ -95.431278025517841, 29.899228223082677 ], [ -95.431467025277414, 29.899096223662976 ], [ -95.431763025680695, 29.898657223642807 ], [ -95.431871025448572, 29.898635223102865 ], [ -95.431984025798286, 29.898635223075715 ], [ -95.433473026317543, 29.898805222999787 ], [ -95.43360602539164, 29.898794223165826 ], [ -95.433738025824724, 29.898822222963584 ], [ -95.433820026140879, 29.898877223231011 ], [ -95.433953026434708, 29.898910223688212 ], [ -95.43409802632172, 29.899135223691907 ], [ -95.434395026450304, 29.899767223421154 ], [ -95.434463026220655, 29.899889223170142 ], [ -95.43453302641818, 29.900015223155883 ], [ -95.434798026145415, 29.900278223585172 ], [ -95.435007026547936, 29.900537223718029 ], [ -95.435461026579191, 29.901048223513545 ], [ -95.435600026715719, 29.901087223313056 ], [ -95.436041026470349, 29.901400223359897 ], [ -95.436313026491732, 29.901620223633294 ], [ -95.436635026807579, 29.90182322353251 ], [ -95.436672026803294, 29.901867223644214 ], [ -95.436818027175889, 29.901977223341913 ], [ -95.436906026996155, 29.90207122386439 ], [ -95.43696902642462, 29.90226922376489 ], [ -95.437202026782643, 29.902873223506898 ], [ -95.437322027275485, 29.903247223981957 ], [ -95.437480026622026, 29.903654224336154 ], [ -95.437657027221164, 29.904044224500478 ], [ -95.437703026672438, 29.904078223947742 ], [ -95.43787102743805, 29.904204223833723 ], [ -95.438080026979449, 29.904297223742248 ], [ -95.438326026991561, 29.904380224204616 ], [ -95.438894026983732, 29.904440224266835 ], [ -95.439462027405682, 29.904484224048073 ], [ -95.439758027332303, 29.904594224138936 ], [ -95.440143027952544, 29.904792224261985 ], [ -95.440989028521983, 29.905512224733776 ], [ -95.441216027973752, 29.905732224800932 ], [ -95.441475027802525, 29.906067224261736 ], [ -95.44153802846705, 29.906166224174903 ], [ -95.441759028033303, 29.90633722480991 ], [ -95.441879028808003, 29.906408224194593 ], [ -95.442036028576155, 29.906562224553639 ], [ -95.442131028470428, 29.906843224432237 ], [ -95.442245028209072, 29.907095224336384 ], [ -95.442655028177953, 29.907343224216635 ], [ -95.443147028302477, 29.907590224425196 ], [ -95.443248028882365, 29.907689225085413 ], [ -95.443551028827471, 29.907936224703061 ], [ -95.443557028864006, 29.907964224676476 ], [ -95.443879028932898, 29.908217224809686 ], [ -95.444131028640271, 29.908437224811323 ], [ -95.444491029103489, 29.908712224922546 ], [ -95.445236029297917, 29.909316224733757 ], [ -95.445432028989984, 29.90945422517586 ], [ -95.445741029753222, 29.909723225087227 ], [ -95.445867029584335, 29.909800224819538 ], [ -95.446593029549646, 29.910394225053494 ], [ -95.452973031658729, 29.910358224494107 ], [ -95.464141034412819, 29.910297224827094 ], [ -95.463984033431544, 29.903877223089978 ], [ -95.464662034117865, 29.903878223598586 ], [ -95.466461034163743, 29.903922222936181 ], [ -95.467609034576114, 29.903928222982888 ], [ -95.467764035128511, 29.903935222952676 ], [ -95.467973034649518, 29.903920223270614 ], [ -95.468058034708903, 29.903908222823713 ], [ -95.468119034561738, 29.903895223290743 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 296, "Tract": "48201530701", "Area_SqMi": 0.37959837046743422, "total_2009": 2706, "total_2010": 2287, "total_2011": 1981, "total_2012": 1752, "total_2013": 1753, "total_2014": 1610, "total_2015": 1559, "total_2016": 1441, "total_2017": 1317, "total_2018": 1302, "total_2019": 1196, "total_2020": 1381, "age1": 242, "age2": 668, "age3": 218, "earn1": 199, "earn2": 243, "earn3": 686, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 33, "naics_s05": 25, "naics_s06": 60, "naics_s07": 124, "naics_s08": 20, "naics_s09": 0, "naics_s10": 18, "naics_s11": 67, "naics_s12": 4, "naics_s13": 17, "naics_s14": 8, "naics_s15": 0, "naics_s16": 669, "naics_s17": 0, "naics_s18": 76, "naics_s19": 5, "naics_s20": 2, "race1": 803, "race2": 230, "race3": 15, "race4": 65, "race5": 0, "race6": 15, "ethnicity1": 542, "ethnicity2": 586, "edu1": 223, "edu2": 216, "edu3": 262, "edu4": 185, "Shape_Length": 13802.656843834444, "Shape_Area": 10582552.879527923, "total_2021": 1109, "total_2022": 1128 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412757019470178, 29.869187217620564 ], [ -95.412738019484024, 29.867234217352976 ], [ -95.41273401865115, 29.866789217809792 ], [ -95.412686019399544, 29.865558217342969 ], [ -95.412636018536858, 29.864181216822061 ], [ -95.412645018480745, 29.863174216912594 ], [ -95.412639019094954, 29.862181216085357 ], [ -95.412615018546035, 29.860696216580816 ], [ -95.412597018806096, 29.859740215954247 ], [ -95.412573018168871, 29.85874121571003 ], [ -95.41254301891783, 29.857515215560014 ], [ -95.412515018236434, 29.857125215369866 ], [ -95.412216018028502, 29.857124215816871 ], [ -95.409448017507813, 29.85713821546744 ], [ -95.409321017391306, 29.857149215325286 ], [ -95.409155017737049, 29.857182215154527 ], [ -95.408972017292697, 29.857230215371739 ], [ -95.408738017807281, 29.857318215644693 ], [ -95.408501017607819, 29.857417215871767 ], [ -95.408300017011229, 29.857461215647803 ], [ -95.408102017309091, 29.857474216083087 ], [ -95.406728016667799, 29.85748121575137 ], [ -95.406379017128543, 29.857489216014134 ], [ -95.406393017241101, 29.858421216287777 ], [ -95.406399017499936, 29.85877521584014 ], [ -95.405897016634412, 29.858777215622066 ], [ -95.40538501717684, 29.858784216035168 ], [ -95.404803016504374, 29.858842216187352 ], [ -95.404622016952075, 29.858843216330349 ], [ -95.404248016753527, 29.858902215803244 ], [ -95.403837016130169, 29.858999215932499 ], [ -95.403729016469484, 29.859032216173453 ], [ -95.403494016174506, 29.85910521591229 ], [ -95.403367016336347, 29.859147216534286 ], [ -95.403216015989273, 29.859196216037212 ], [ -95.403108016771526, 29.859231216032072 ], [ -95.402791016035152, 29.85933421607584 ], [ -95.402585016555278, 29.859400215838942 ], [ -95.402687016506135, 29.859600216319691 ], [ -95.402705016469895, 29.859634216508177 ], [ -95.403456016297525, 29.861107216467094 ], [ -95.403555015976309, 29.861301216185698 ], [ -95.404058016519215, 29.862286216589105 ], [ -95.405068017125586, 29.864270216841962 ], [ -95.405400016802574, 29.864922217369649 ], [ -95.406397016936964, 29.866855217803938 ], [ -95.406823018083458, 29.867668217457904 ], [ -95.407838017930914, 29.869690217786733 ], [ -95.407930018077266, 29.869871218485002 ], [ -95.408140018517997, 29.869877218024392 ], [ -95.408779018594316, 29.869897218407061 ], [ -95.409208018311546, 29.869873218483253 ], [ -95.409679018432797, 29.869862218096145 ], [ -95.410478018196443, 29.869845218162581 ], [ -95.41084001917433, 29.86977321834425 ], [ -95.411456018661369, 29.869642218299294 ], [ -95.412439018630948, 29.869298217555546 ], [ -95.412757019470178, 29.869187217620564 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 297, "Tract": "48201314401", "Area_SqMi": 0.18399321291480877, "total_2009": 1518, "total_2010": 1250, "total_2011": 971, "total_2012": 7273, "total_2013": 7775, "total_2014": 7907, "total_2015": 8517, "total_2016": 10635, "total_2017": 11347, "total_2018": 12090, "total_2019": 11409, "total_2020": 13134, "age1": 2046, "age2": 8331, "age3": 2561, "earn1": 849, "earn2": 2295, "earn3": 9794, "naics_s01": 0, "naics_s02": 0, "naics_s03": 91, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 3, "naics_s10": 15, "naics_s11": 66, "naics_s12": 0, "naics_s13": 0, "naics_s14": 128, "naics_s15": 9516, "naics_s16": 2914, "naics_s17": 0, "naics_s18": 195, "naics_s19": 4, "naics_s20": 2, "race1": 7670, "race2": 2595, "race3": 92, "race4": 2320, "race5": 23, "race6": 238, "ethnicity1": 9752, "ethnicity2": 3186, "edu1": 1478, "edu2": 2144, "edu3": 3191, "edu4": 4079, "Shape_Length": 11070.163226858143, "Shape_Area": 5129415.8685337324, "total_2021": 12689, "total_2022": 12938 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.407732010682807, 29.700368183183329 ], [ -95.407661010475948, 29.700314183573006 ], [ -95.407194010699087, 29.699959183192266 ], [ -95.406721009941521, 29.699586183230949 ], [ -95.406382009615001, 29.69932018315658 ], [ -95.406150009793876, 29.699124183756844 ], [ -95.405884009453132, 29.698873183219369 ], [ -95.405405009472787, 29.698199183336268 ], [ -95.405238009841611, 29.69789118290273 ], [ -95.405047009686726, 29.697448183078745 ], [ -95.404967008999236, 29.697203182797107 ], [ -95.404887009021692, 29.696907183205674 ], [ -95.404803009155302, 29.696403183155052 ], [ -95.404758009654444, 29.695897182637133 ], [ -95.404751008986409, 29.695690183054658 ], [ -95.40474100889746, 29.695351182536299 ], [ -95.404773009239292, 29.694832182657855 ], [ -95.404777009580386, 29.694693182554779 ], [ -95.404818009637538, 29.693097182482632 ], [ -95.404807009179805, 29.692662181609705 ], [ -95.404703008822793, 29.692237182127371 ], [ -95.404657009700486, 29.69211718212981 ], [ -95.404594009330182, 29.692007182202428 ], [ -95.404386009544965, 29.691641181572738 ], [ -95.404013008582808, 29.691222181977796 ], [ -95.403684009118606, 29.690799181648345 ], [ -95.4035670088914, 29.690576181804058 ], [ -95.403464008576194, 29.690350181856161 ], [ -95.40332600824496, 29.689913181845672 ], [ -95.403226009067268, 29.690429181298654 ], [ -95.403154008616127, 29.690673182110935 ], [ -95.403068009211168, 29.69091018209923 ], [ -95.402874009078403, 29.691229181912739 ], [ -95.402410008525209, 29.691747181726409 ], [ -95.401704007995249, 29.692305182086503 ], [ -95.401336008555901, 29.692575182543198 ], [ -95.400888008059752, 29.693019182580919 ], [ -95.400605008107988, 29.693394182041185 ], [ -95.400554007732637, 29.694152182313527 ], [ -95.40059100801308, 29.694651182821914 ], [ -95.40081500807095, 29.695652182676703 ], [ -95.400841008308177, 29.695787182377348 ], [ -95.400866008551361, 29.695857182459587 ], [ -95.400983008383108, 29.69634918321832 ], [ -95.401129008311642, 29.696959182678405 ], [ -95.401282009001804, 29.697654183448137 ], [ -95.401317008609794, 29.697818183102516 ], [ -95.401444008359178, 29.698375183483385 ], [ -95.401512008340902, 29.69870018345086 ], [ -95.401595008859289, 29.699098183073961 ], [ -95.401699008370883, 29.699576183934379 ], [ -95.4017500086442, 29.69982118324446 ], [ -95.401906009109609, 29.700547183332958 ], [ -95.401964008717925, 29.700785183447373 ], [ -95.402023008395545, 29.701023184206381 ], [ -95.402118008566063, 29.701400183512018 ], [ -95.402208009208252, 29.701667184029787 ], [ -95.402302008625696, 29.701945184439047 ], [ -95.402411009090528, 29.702269184459691 ], [ -95.402429009454693, 29.702323183891938 ], [ -95.40244800871443, 29.702376183815588 ], [ -95.402748008935646, 29.702239184014999 ], [ -95.404683009156884, 29.702211184086508 ], [ -95.405262010282897, 29.702032184359201 ], [ -95.407210009805112, 29.700830183869943 ], [ -95.407654009880588, 29.700462183857304 ], [ -95.407732010682807, 29.700368183183329 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 298, "Tract": "48201980300", "Area_SqMi": 0.46973153642660948, "total_2009": 2996, "total_2010": 3154, "total_2011": 3177, "total_2012": 3520, "total_2013": 3089, "total_2014": 3469, "total_2015": 3593, "total_2016": 3622, "total_2017": 3678, "total_2018": 3615, "total_2019": 3599, "total_2020": 3594, "age1": 2034, "age2": 2392, "age3": 1059, "earn1": 1550, "earn2": 1195, "earn3": 2740, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 12, "naics_s07": 9, "naics_s08": 0, "naics_s09": 3, "naics_s10": 8, "naics_s11": 2, "naics_s12": 39, "naics_s13": 2, "naics_s14": 18, "naics_s15": 5360, "naics_s16": 0, "naics_s17": 3, "naics_s18": 28, "naics_s19": 0, "naics_s20": 1, "race1": 3534, "race2": 530, "race3": 38, "race4": 1203, "race5": 10, "race6": 170, "ethnicity1": 4529, "ethnicity2": 956, "edu1": 451, "edu2": 577, "edu3": 853, "edu4": 1570, "Shape_Length": 15555.026201074617, "Shape_Area": 13095311.282014448, "total_2021": 3548, "total_2022": 5485 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412722012547732, 29.717490187167719 ], [ -95.412701012714081, 29.716382186795443 ], [ -95.412678012033112, 29.715112186729005 ], [ -95.41223301194583, 29.715106186804192 ], [ -95.411745011637564, 29.715034186645013 ], [ -95.411321011490472, 29.714918186631021 ], [ -95.410702011379627, 29.714728186242198 ], [ -95.409673011688014, 29.714400186519669 ], [ -95.406554011092823, 29.713376186388079 ], [ -95.40416800970506, 29.712596186442813 ], [ -95.402089009177615, 29.711912186046646 ], [ -95.400883009521422, 29.711492185640928 ], [ -95.400414008667966, 29.712088186591206 ], [ -95.400063009032777, 29.712535186362878 ], [ -95.399627008463213, 29.713101186764028 ], [ -95.399413008937387, 29.713378186531791 ], [ -95.399098009245648, 29.713789186376591 ], [ -95.398967008605581, 29.713954186614238 ], [ -95.398698008848172, 29.714297186561122 ], [ -95.397429008161268, 29.7158961866946 ], [ -95.395352008314418, 29.718496188018729 ], [ -95.393662007328643, 29.720642187851539 ], [ -95.394516007654289, 29.721154188648708 ], [ -95.395210008387707, 29.721568187844635 ], [ -95.395555008464484, 29.721773188292822 ], [ -95.396070008193234, 29.722089188524851 ], [ -95.397121008569314, 29.722699188088704 ], [ -95.397342008417127, 29.722706188519208 ], [ -95.397852009096312, 29.722724188853121 ], [ -95.398208009333956, 29.722704188039081 ], [ -95.398540009097843, 29.72259218816011 ], [ -95.398814008744878, 29.722492188014002 ], [ -95.399310009497754, 29.72229518787368 ], [ -95.400691009640653, 29.721750188121224 ], [ -95.401141009095937, 29.721582188222285 ], [ -95.401308009985669, 29.721513188016772 ], [ -95.401749010052939, 29.721336188446458 ], [ -95.403364009684964, 29.720694187842845 ], [ -95.404062010734179, 29.720426188118907 ], [ -95.405658010499238, 29.719815187806624 ], [ -95.407245011171554, 29.719204187477335 ], [ -95.408087011227735, 29.718884187080242 ], [ -95.40820801139246, 29.718838186888057 ], [ -95.408973011151986, 29.718546187621527 ], [ -95.409186011769805, 29.718463187608766 ], [ -95.410280011303286, 29.718042187004411 ], [ -95.410537011332025, 29.717949187290063 ], [ -95.410944012376717, 29.717795186612658 ], [ -95.411340012101832, 29.717682186986913 ], [ -95.411654012278461, 29.71761318698762 ], [ -95.412233012383254, 29.717526187234768 ], [ -95.412722012547732, 29.717490187167719 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 299, "Tract": "48201541500", "Area_SqMi": 1.187638086589111, "total_2009": 333, "total_2010": 348, "total_2011": 355, "total_2012": 432, "total_2013": 444, "total_2014": 477, "total_2015": 577, "total_2016": 532, "total_2017": 500, "total_2018": 608, "total_2019": 850, "total_2020": 854, "age1": 137, "age2": 466, "age3": 139, "earn1": 91, "earn2": 208, "earn3": 443, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 118, "naics_s05": 45, "naics_s06": 58, "naics_s07": 24, "naics_s08": 44, "naics_s09": 164, "naics_s10": 4, "naics_s11": 6, "naics_s12": 76, "naics_s13": 0, "naics_s14": 60, "naics_s15": 22, "naics_s16": 37, "naics_s17": 0, "naics_s18": 49, "naics_s19": 35, "naics_s20": 0, "race1": 508, "race2": 157, "race3": 5, "race4": 57, "race5": 0, "race6": 15, "ethnicity1": 488, "ethnicity2": 254, "edu1": 125, "edu2": 158, "edu3": 175, "edu4": 147, "Shape_Length": 25467.963694122795, "Shape_Area": 33109317.191204481, "total_2021": 755, "total_2022": 742 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.689818089038212, 29.856342205327159 ], [ -95.68981908929311, 29.856119205547529 ], [ -95.689817089669489, 29.855013205542043 ], [ -95.689809089163006, 29.854890205599283 ], [ -95.689812088840966, 29.854667205421549 ], [ -95.689798089770036, 29.853526205024124 ], [ -95.689802089457601, 29.853404205180471 ], [ -95.689797088953895, 29.853283205291266 ], [ -95.689810088873813, 29.85267620489028 ], [ -95.689792089636015, 29.852064204478921 ], [ -95.689791088777497, 29.851919204659382 ], [ -95.689790088677384, 29.85121520507807 ], [ -95.689778088687461, 29.849745204855839 ], [ -95.689775089186952, 29.848607204446598 ], [ -95.689643088646335, 29.848612204128358 ], [ -95.687335088057324, 29.848620203989906 ], [ -95.684766087700368, 29.848635204632 ], [ -95.684012087284572, 29.848666204691817 ], [ -95.683674087285112, 29.848681204400961 ], [ -95.683561087330659, 29.848681204655815 ], [ -95.683242087652616, 29.848681204834516 ], [ -95.682437087590912, 29.848688204504281 ], [ -95.680539086843936, 29.848695204386267 ], [ -95.679831086325692, 29.848698204294386 ], [ -95.678982086122133, 29.848703204984172 ], [ -95.677632085800184, 29.848707204770275 ], [ -95.676176085381229, 29.848712205088464 ], [ -95.675823085093427, 29.848713204317466 ], [ -95.675616085253992, 29.848714204896922 ], [ -95.675309085309266, 29.848715204799259 ], [ -95.675114085392849, 29.848714205016719 ], [ -95.674798084857159, 29.848723204869941 ], [ -95.674506085485149, 29.848745204947811 ], [ -95.674208084757424, 29.848781204315483 ], [ -95.674018084961517, 29.848810204809389 ], [ -95.673894084977448, 29.848829204912779 ], [ -95.673791085232239, 29.848856204428994 ], [ -95.67367508544028, 29.848875205072023 ], [ -95.67308208440771, 29.849001204476711 ], [ -95.672603084704022, 29.849097204771031 ], [ -95.672545084309306, 29.84910620501007 ], [ -95.672294084839848, 29.849149204963549 ], [ -95.672047085057301, 29.849171205137424 ], [ -95.671783084237831, 29.849195204588266 ], [ -95.671542084230609, 29.849204204930743 ], [ -95.670110084296496, 29.849215204803517 ], [ -95.669422083717194, 29.849216204955248 ], [ -95.668294083625142, 29.849220205408084 ], [ -95.668207083482784, 29.849221205043637 ], [ -95.668200084100576, 29.849300204988555 ], [ -95.668215083553505, 29.849646204871263 ], [ -95.668215083730928, 29.84975420509921 ], [ -95.668216083763639, 29.850474205164922 ], [ -95.668227083235152, 29.851165205561323 ], [ -95.668229083817209, 29.851771205334376 ], [ -95.668230083451448, 29.851903205380481 ], [ -95.668231083431593, 29.85245220611462 ], [ -95.668233084147289, 29.852794205667202 ], [ -95.668243083696083, 29.853569205765314 ], [ -95.668260083352337, 29.85385220561432 ], [ -95.668286083475905, 29.8541082055971 ], [ -95.668332083457869, 29.854386206131998 ], [ -95.668378084265996, 29.85460020610768 ], [ -95.668424083765188, 29.854806206513921 ], [ -95.66883608379203, 29.856334206899771 ], [ -95.669035084668081, 29.85707420632594 ], [ -95.669649084538051, 29.85934020684984 ], [ -95.669683084741564, 29.859472207233328 ], [ -95.669760084967038, 29.859768207308665 ], [ -95.66981208492092, 29.860037207187407 ], [ -95.669847084972503, 29.860289207451828 ], [ -95.669869084939933, 29.860562207273805 ], [ -95.669878084969824, 29.860843206934202 ], [ -95.66987208494146, 29.861025207574066 ], [ -95.669839084753448, 29.861357207615271 ], [ -95.669803084991401, 29.861611207920706 ], [ -95.669705084948376, 29.862136207291719 ], [ -95.669558084926308, 29.862837207832897 ], [ -95.669473084420076, 29.863271207599588 ], [ -95.66932708451526, 29.863965207848839 ], [ -95.669303084944275, 29.864081207743716 ], [ -95.669077084185474, 29.865208208371712 ], [ -95.669058084661984, 29.865285208661287 ], [ -95.669198084575839, 29.865306208321428 ], [ -95.669674085088431, 29.865377208048137 ], [ -95.670009084680558, 29.865416208221898 ], [ -95.670251084835428, 29.865433208690231 ], [ -95.670506084660502, 29.865442207881159 ], [ -95.670775084926134, 29.865442207948409 ], [ -95.671045084933553, 29.865432208353006 ], [ -95.671480084993334, 29.865416208121818 ], [ -95.671929085594741, 29.865407208473446 ], [ -95.672485085493918, 29.865407208397873 ], [ -95.672984085685187, 29.865404208330837 ], [ -95.673518085992029, 29.865401207871653 ], [ -95.674065085797295, 29.865399208130626 ], [ -95.674141085594414, 29.865398207814106 ], [ -95.674835085780003, 29.865391208260174 ], [ -95.676009086380915, 29.865387207891221 ], [ -95.67983308687154, 29.865368207978619 ], [ -95.68077408804858, 29.865361207628755 ], [ -95.680911087507113, 29.865361208284845 ], [ -95.681941087515838, 29.865363208044755 ], [ -95.682468088338027, 29.865373207910515 ], [ -95.682640088341827, 29.865372207692136 ], [ -95.683304088482103, 29.865366207734834 ], [ -95.68329408849074, 29.864088207666384 ], [ -95.68329408859978, 29.863990207860322 ], [ -95.683288087870224, 29.863187207186918 ], [ -95.683285088340455, 29.8626652072975 ], [ -95.683275088451097, 29.86188820694948 ], [ -95.683271088161405, 29.861344207286635 ], [ -95.683245087524497, 29.860315206631189 ], [ -95.683232087922264, 29.859539206483621 ], [ -95.683230088068967, 29.859398206571999 ], [ -95.683229087481934, 29.85923620693816 ], [ -95.683228087390646, 29.858055206648473 ], [ -95.683233087493633, 29.857200206021222 ], [ -95.683245088011503, 29.856422205850624 ], [ -95.683384088156018, 29.856420205821649 ], [ -95.683736087694271, 29.856418206382106 ], [ -95.685119087910351, 29.856417205606263 ], [ -95.687315088311806, 29.856417205927372 ], [ -95.687939089145146, 29.856413205753356 ], [ -95.688497089547297, 29.856417205462336 ], [ -95.689534089014657, 29.856414206220073 ], [ -95.689818089014324, 29.856410205672251 ], [ -95.689818089038212, 29.856342205327159 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 300, "Tract": "48201551400", "Area_SqMi": 3.0727289980039134, "total_2009": 7057, "total_2010": 6914, "total_2011": 7178, "total_2012": 8303, "total_2013": 8802, "total_2014": 9067, "total_2015": 9644, "total_2016": 9302, "total_2017": 9382, "total_2018": 9873, "total_2019": 9667, "total_2020": 8779, "age1": 2781, "age2": 4713, "age3": 1901, "earn1": 1955, "earn2": 2708, "earn3": 4732, "naics_s01": 0, "naics_s02": 165, "naics_s03": 0, "naics_s04": 1042, "naics_s05": 1379, "naics_s06": 762, "naics_s07": 2400, "naics_s08": 350, "naics_s09": 40, "naics_s10": 164, "naics_s11": 202, "naics_s12": 633, "naics_s13": 0, "naics_s14": 399, "naics_s15": 28, "naics_s16": 230, "naics_s17": 22, "naics_s18": 1300, "naics_s19": 279, "naics_s20": 0, "race1": 6988, "race2": 1514, "race3": 86, "race4": 626, "race5": 14, "race6": 167, "ethnicity1": 5895, "ethnicity2": 3500, "edu1": 1558, "edu2": 1824, "edu3": 1873, "edu4": 1359, "Shape_Length": 38236.400761558398, "Shape_Area": 85662425.436109513, "total_2021": 8642, "total_2022": 9395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.547058057823634, 29.96121723163499 ], [ -95.546955057688322, 29.961114231652541 ], [ -95.546914057781393, 29.961073232278505 ], [ -95.54680005806911, 29.960977232113645 ], [ -95.546606057615492, 29.960766232244524 ], [ -95.545967057804873, 29.960215232292462 ], [ -95.545154057035987, 29.959483231945363 ], [ -95.544260056954514, 29.958678231987985 ], [ -95.54342005614474, 29.957941231679019 ], [ -95.543404056812776, 29.95793423193016 ], [ -95.542958056982371, 29.95755723170107 ], [ -95.54265905613893, 29.957317230981168 ], [ -95.542329056759002, 29.957051231477838 ], [ -95.541951055886472, 29.956769231458871 ], [ -95.539938055578247, 29.955270230726533 ], [ -95.539017055162901, 29.954572230635538 ], [ -95.537806054970318, 29.953782230735158 ], [ -95.537378055401888, 29.953544230427447 ], [ -95.537034055251638, 29.953317230579049 ], [ -95.536502054239762, 29.952979231140031 ], [ -95.535303054112049, 29.952103230734384 ], [ -95.53402805372653, 29.951213230044559 ], [ -95.533385054255106, 29.950719230077816 ], [ -95.533077054168331, 29.9506622301341 ], [ -95.53297605325605, 29.95065123071393 ], [ -95.532673053479044, 29.950679230805711 ], [ -95.532503053371428, 29.950667230670806 ], [ -95.531903053031641, 29.950574230643959 ], [ -95.531550053262961, 29.950535230021579 ], [ -95.531158053207548, 29.950541230497269 ], [ -95.530754053158773, 29.950563230190781 ], [ -95.529889052578994, 29.950619230845334 ], [ -95.52983305303195, 29.950623230473692 ], [ -95.529621053078102, 29.950643230429595 ], [ -95.529126053012064, 29.950689230905052 ], [ -95.528791052347017, 29.950705230099864 ], [ -95.528059052691106, 29.950678230596381 ], [ -95.527497051843966, 29.950469230392578 ], [ -95.526961051781498, 29.950243230628494 ], [ -95.525547051969355, 29.94970423085314 ], [ -95.525332051280245, 29.94962723033705 ], [ -95.524467051718005, 29.949379230494568 ], [ -95.524291051847342, 29.949374230121617 ], [ -95.523552050945028, 29.949423230037919 ], [ -95.523059050584379, 29.949412230495966 ], [ -95.522977051420071, 29.949417230907198 ], [ -95.52285105093415, 29.949450230484327 ], [ -95.5227940505563, 29.94945623024347 ], [ -95.522491050427618, 29.949434230708036 ], [ -95.522302050964342, 29.949439230039715 ], [ -95.522258050503268, 29.949445230556844 ], [ -95.522176051206444, 29.949472230813679 ], [ -95.522119050776482, 29.949478230286292 ], [ -95.521652050470848, 29.949450230242167 ], [ -95.521222050915284, 29.949390230583877 ], [ -95.521020050258826, 29.949329230469182 ], [ -95.520907050494756, 29.94934023082773 ], [ -95.520781050259288, 29.949268230652478 ], [ -95.520667050820308, 29.949224230661699 ], [ -95.520585050785755, 29.949235230832635 ], [ -95.52052805010436, 29.949268230254209 ], [ -95.520267050646552, 29.949225230804892 ], [ -95.520231050064922, 29.949219230632881 ], [ -95.519722050552858, 29.949223230090784 ], [ -95.520138050817124, 29.949797230380533 ], [ -95.520455050843481, 29.950231230535209 ], [ -95.520362050367424, 29.950286230480852 ], [ -95.51906104992203, 29.951002230812275 ], [ -95.518629049692066, 29.951241231408655 ], [ -95.518076049920637, 29.951546231030289 ], [ -95.517944050316487, 29.951623230949412 ], [ -95.517819049673491, 29.951687231017665 ], [ -95.517663049479282, 29.95177723078945 ], [ -95.517375049586903, 29.951932230880249 ], [ -95.514913048774133, 29.95330923128477 ], [ -95.514084048503335, 29.953761231415694 ], [ -95.51394804929582, 29.953838231967119 ], [ -95.513744049034074, 29.953955231687477 ], [ -95.513274049116049, 29.954229231711764 ], [ -95.513244048352078, 29.954247231648729 ], [ -95.513026048690477, 29.954364231383977 ], [ -95.512444048172881, 29.9546582316685 ], [ -95.512252048513844, 29.954766231704998 ], [ -95.511644048178013, 29.955094232075567 ], [ -95.511538048419766, 29.955158231810678 ], [ -95.510835047900997, 29.955555231840719 ], [ -95.510636048467219, 29.95566223178508 ], [ -95.510536048013535, 29.955722232094221 ], [ -95.51015804788068, 29.955934232451547 ], [ -95.509971047933263, 29.956023231812075 ], [ -95.509883048232709, 29.956085232315587 ], [ -95.509422047657083, 29.956342231915482 ], [ -95.509318048206637, 29.956399232804884 ], [ -95.509125047290823, 29.956513232575908 ], [ -95.508096047593156, 29.957097232709707 ], [ -95.507970047990213, 29.957172232775235 ], [ -95.507735047552828, 29.957296232751325 ], [ -95.507685047106648, 29.957327232815544 ], [ -95.507198047381507, 29.95759523259661 ], [ -95.506801047133891, 29.95781623271559 ], [ -95.506704047021117, 29.957867232870019 ], [ -95.506392047278212, 29.958019232525167 ], [ -95.506112047502697, 29.958141232982953 ], [ -95.505911047106139, 29.958235232846462 ], [ -95.505822047117235, 29.958241233096146 ], [ -95.505766046685167, 29.958170232915908 ], [ -95.505759047008567, 29.958259232777905 ], [ -95.505722047534576, 29.958300232580644 ], [ -95.505601047104804, 29.958382232815765 ], [ -95.504943046429375, 29.958765233125963 ], [ -95.504718046923742, 29.9588752329425 ], [ -95.504547046352329, 29.958984232803118 ], [ -95.504375046972612, 29.959079232719084 ], [ -95.504143046487854, 29.959196232953449 ], [ -95.503814046490433, 29.959334232809027 ], [ -95.503385046926709, 29.959461232844145 ], [ -95.503219045947802, 29.959484233538284 ], [ -95.503053046125203, 29.959513233503177 ], [ -95.502682046161453, 29.95955123303338 ], [ -95.502533046671076, 29.95956423288288 ], [ -95.503660046216538, 29.962403234119044 ], [ -95.503709047001749, 29.962539233373896 ], [ -95.503750047215732, 29.962640233504754 ], [ -95.503983046351109, 29.963215233907594 ], [ -95.504103046452698, 29.963467234130306 ], [ -95.504181047333489, 29.963606233775732 ], [ -95.504313046730999, 29.963835234377267 ], [ -95.504475047248278, 29.964075233904911 ], [ -95.504904047074902, 29.964669234152005 ], [ -95.504986047078646, 29.964791234379828 ], [ -95.50508504758217, 29.964912233813251 ], [ -95.50534304731184, 29.965284234263816 ], [ -95.505706047807664, 29.965785234366475 ], [ -95.506239047789023, 29.966504234150914 ], [ -95.506288047485867, 29.966577234085033 ], [ -95.506370047847199, 29.966715234185411 ], [ -95.506462047207393, 29.966847235002337 ], [ -95.506491047402506, 29.96690523448763 ], [ -95.506541048071355, 29.966985234557292 ], [ -95.506625048023665, 29.967139235005767 ], [ -95.506708047617479, 29.967315234923866 ], [ -95.506759048110112, 29.967413234798684 ], [ -95.506783047241925, 29.967468234811363 ], [ -95.50689704799278, 29.967738234711355 ], [ -95.506939047637232, 29.96784823476353 ], [ -95.507016047485948, 29.968052235097097 ], [ -95.507049047801928, 29.968168235090172 ], [ -95.507165047321777, 29.96847123517 ], [ -95.507307048017466, 29.968859235404171 ], [ -95.507349047482549, 29.968939234556853 ], [ -95.507471047684234, 29.969274234979689 ], [ -95.507632047925199, 29.969696235148941 ], [ -95.507715047613871, 29.969931235515435 ], [ -95.507736048351973, 29.970023235078639 ], [ -95.507968047952517, 29.970630235170496 ], [ -95.508001047744045, 29.970706235364386 ], [ -95.508040047735676, 29.970815235363652 ], [ -95.508086048239775, 29.970936235696499 ], [ -95.508111048374829, 29.971023235095927 ], [ -95.508147047837255, 29.971106235083298 ], [ -95.508173048202892, 29.971184235631355 ], [ -95.508207047955963, 29.971257235421707 ], [ -95.508222048602448, 29.971322235364561 ], [ -95.508250047836555, 29.971377235213822 ], [ -95.508287048491795, 29.971476235843426 ], [ -95.508305048488808, 29.971539235131075 ], [ -95.508319048356967, 29.971564235822932 ], [ -95.50837204791253, 29.971698235454067 ], [ -95.508389048280051, 29.971765235114834 ], [ -95.508470048866926, 29.971985235248702 ], [ -95.508508048462033, 29.972059235184727 ], [ -95.508528047893279, 29.972139235847521 ], [ -95.508604048771417, 29.972329236080643 ], [ -95.508699048420993, 29.972573235680358 ], [ -95.508734048016478, 29.972650235307697 ], [ -95.508755048404396, 29.972727235606158 ], [ -95.508891048033774, 29.973106235654559 ], [ -95.50895904835356, 29.973282235367453 ], [ -95.509012048255357, 29.97344423607133 ], [ -95.509078048338765, 29.973606236225912 ], [ -95.509104048622419, 29.973689235843249 ], [ -95.509121048178173, 29.973775236298039 ], [ -95.509173048660401, 29.973882236077731 ], [ -95.509256048907588, 29.974094235613574 ], [ -95.509282048730213, 29.974173235861453 ], [ -95.509463048884058, 29.97464123596421 ], [ -95.509498048701445, 29.97471823621218 ], [ -95.509554048817392, 29.974887236394235 ], [ -95.509640048574312, 29.97511523582747 ], [ -95.509780048983956, 29.97542823585805 ], [ -95.509893048977858, 29.975677236555178 ], [ -95.51013404900965, 29.976101236445405 ], [ -95.510174048982009, 29.976162236520583 ], [ -95.510317048761195, 29.976386236175301 ], [ -95.510505048912037, 29.976651236368621 ], [ -95.510749049239877, 29.976947236073833 ], [ -95.510942049217405, 29.977170236106261 ], [ -95.511109049312708, 29.977341236514309 ], [ -95.511331049607847, 29.977570236881899 ], [ -95.51139804907622, 29.977633236716017 ], [ -95.511554049275347, 29.977799236623763 ], [ -95.51179804915634, 29.978058236837889 ], [ -95.511843049755456, 29.97810523646104 ], [ -95.511893049895718, 29.978163236493064 ], [ -95.51219504912153, 29.978522236327883 ], [ -95.512464049631006, 29.978870237151817 ], [ -95.512952049777965, 29.979525237257722 ], [ -95.513061049917582, 29.979657237032146 ], [ -95.513141049368514, 29.979745237068791 ], [ -95.513282049869659, 29.979667236936024 ], [ -95.513912049769417, 29.979320237009173 ], [ -95.51428604977113, 29.979117236977068 ], [ -95.514870050473974, 29.978794236687783 ], [ -95.515801050584813, 29.978283236616402 ], [ -95.5169540510079, 29.977642236223556 ], [ -95.517152050821807, 29.977526236531503 ], [ -95.517698050687358, 29.9772102363744 ], [ -95.517727050743929, 29.977193236605871 ], [ -95.518533051251964, 29.976727236240645 ], [ -95.518970050934456, 29.976475236039381 ], [ -95.519095051136262, 29.976407236276547 ], [ -95.520150051695765, 29.975850236192933 ], [ -95.520595051362832, 29.975614235816924 ], [ -95.522187051672233, 29.97477623564744 ], [ -95.522631052547254, 29.974537235165901 ], [ -95.522801052256469, 29.974444235372733 ], [ -95.523659051844703, 29.973970235067434 ], [ -95.524055052744117, 29.9737522357552 ], [ -95.525139053047582, 29.973122235141449 ], [ -95.525291052877648, 29.973049234982 ], [ -95.525795053284668, 29.972808235082482 ], [ -95.52632105257365, 29.972471234641191 ], [ -95.528909053805194, 29.971048234816557 ], [ -95.529182053718841, 29.970901234313981 ], [ -95.529810053984349, 29.97056423492284 ], [ -95.529921054223649, 29.970498234583271 ], [ -95.53071505439695, 29.970050234485953 ], [ -95.530779054002338, 29.970014234532407 ], [ -95.532057054624943, 29.969303234160353 ], [ -95.532404053983129, 29.969118233923815 ], [ -95.532788054166502, 29.968896234240745 ], [ -95.53281505417911, 29.968882233945745 ], [ -95.532872054897283, 29.968852234004508 ], [ -95.532947054064707, 29.968812234355237 ], [ -95.533603054468998, 29.968448234408346 ], [ -95.534290055004718, 29.968069233757706 ], [ -95.534699054488001, 29.967842233798081 ], [ -95.535562055260797, 29.967369233303884 ], [ -95.53571005470765, 29.967289233615482 ], [ -95.536073055057727, 29.967094233915972 ], [ -95.536359055488319, 29.96694223388651 ], [ -95.536518055707631, 29.966876233429399 ], [ -95.536996055655763, 29.966674233069206 ], [ -95.537369055736448, 29.966641233642854 ], [ -95.537458055971214, 29.966633233036781 ], [ -95.53798405609983, 29.966381233523023 ], [ -95.538111055473266, 29.966320233144476 ], [ -95.538216055881193, 29.966274233015437 ], [ -95.538469055798771, 29.966163233551534 ], [ -95.539539056217606, 29.965693233521844 ], [ -95.53998705571739, 29.965496233252352 ], [ -95.540573056349359, 29.965247232935678 ], [ -95.541642056635112, 29.964805232644292 ], [ -95.542852057053025, 29.964190232506901 ], [ -95.543509057059765, 29.963862232530762 ], [ -95.544283057624497, 29.963399232454048 ], [ -95.544682057274841, 29.963135232553366 ], [ -95.545616057446949, 29.962460232082982 ], [ -95.546455057253297, 29.961755231868661 ], [ -95.54693105754491, 29.96133423200067 ], [ -95.547058057823634, 29.96121723163499 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 301, "Tract": "48291701000", "Area_SqMi": 70.902455712350985, "total_2009": 414, "total_2010": 936, "total_2011": 1109, "total_2012": 1064, "total_2013": 1109, "total_2014": 1020, "total_2015": 1165, "total_2016": 1237, "total_2017": 1202, "total_2018": 1422, "total_2019": 1421, "total_2020": 1466, "age1": 319, "age2": 734, "age3": 328, "earn1": 208, "earn2": 286, "earn3": 887, "naics_s01": 16, "naics_s02": 0, "naics_s03": 11, "naics_s04": 354, "naics_s05": 395, "naics_s06": 75, "naics_s07": 127, "naics_s08": 76, "naics_s09": 0, "naics_s10": 13, "naics_s11": 12, "naics_s12": 29, "naics_s13": 0, "naics_s14": 46, "naics_s15": 8, "naics_s16": 17, "naics_s17": 0, "naics_s18": 160, "naics_s19": 42, "naics_s20": 0, "race1": 1213, "race2": 105, "race3": 17, "race4": 32, "race5": 0, "race6": 14, "ethnicity1": 896, "ethnicity2": 485, "edu1": 274, "edu2": 295, "edu3": 333, "edu4": 160, "Shape_Length": 213920.92018564683, "Shape_Area": 1976639114.4945962, "total_2021": 1328, "total_2022": 1381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.048495933092397, 30.038731265049829 ], [ -95.048446933770322, 30.038586264994105 ], [ -95.04839993355921, 30.038446264893675 ], [ -95.048350932907397, 30.03830026458688 ], [ -95.04834093346507, 30.038276264695241 ], [ -95.048314933427605, 30.038211265430952 ], [ -95.048301933106515, 30.038177265105016 ], [ -95.046221932107912, 30.033186264212421 ], [ -95.046189932973462, 30.033006263902084 ], [ -95.046129932845986, 30.032666263944542 ], [ -95.046083932159718, 30.032505264312288 ], [ -95.046037932690311, 30.032344263783763 ], [ -95.045588932522847, 30.030779263495504 ], [ -95.045138932542159, 30.029214263475126 ], [ -95.044898931750865, 30.028594263123995 ], [ -95.044830932008026, 30.028475263543957 ], [ -95.04475693223074, 30.02832726322179 ], [ -95.044692931770356, 30.028200262672097 ], [ -95.044652931861805, 30.028121263168103 ], [ -95.044619931384133, 30.028054263101676 ], [ -95.044588931804043, 30.027975263160865 ], [ -95.042393930570043, 30.022411262104523 ], [ -95.042377930708028, 30.022370261667856 ], [ -95.042361930823844, 30.022329262130313 ], [ -95.041140930305616, 30.019195261031843 ], [ -95.039775930415104, 30.01569226028462 ], [ -95.039714929746623, 30.015545260271953 ], [ -95.039697929827668, 30.015493260555232 ], [ -95.035698928121889, 30.005069258257635 ], [ -95.032395927212718, 29.996476257415942 ], [ -95.032153927163449, 29.995846256450747 ], [ -95.031427926898118, 29.99395825623294 ], [ -95.031185926653166, 29.993329256390627 ], [ -95.031113927099312, 29.993479256387563 ], [ -95.031100926861157, 29.99349425666772 ], [ -95.0309429272221, 29.993704256719166 ], [ -95.030803927265595, 29.993803256185089 ], [ -95.030686926713756, 29.99385125677793 ], [ -95.030515926815085, 29.993924256184723 ], [ -95.030475926206336, 29.99394125670656 ], [ -95.030121926241748, 29.994056256627946 ], [ -95.029824926207041, 29.99418325650575 ], [ -95.029641926066304, 29.994212256168826 ], [ -95.029186925879415, 29.994287256841655 ], [ -95.028971926451305, 29.994380256812107 ], [ -95.028674926553094, 29.994639256568483 ], [ -95.028472926693198, 29.995007256829282 ], [ -95.028396926743696, 29.995216256691965 ], [ -95.028282926175905, 29.995392257139947 ], [ -95.027783925991329, 29.996054257145108 ], [ -95.027505926431616, 29.996426257482383 ], [ -95.027221926399079, 29.996679257550284 ], [ -95.027145925691997, 29.996701257378309 ], [ -95.0270719262207, 29.996711257394448 ], [ -95.026852925902119, 29.996744257050381 ], [ -95.026778925855112, 29.996744256945579 ], [ -95.0265139262997, 29.996744257046949 ], [ -95.025591925741949, 29.996629257253879 ], [ -95.025482925180484, 29.996623256833789 ], [ -95.024738925366336, 29.996584257464292 ], [ -95.023178924615337, 29.996738257592334 ], [ -95.022438925220555, 29.996864257609364 ], [ -95.021914924350185, 29.996914257864606 ], [ -95.021599924416975, 29.996861257323822 ], [ -95.020314924323529, 29.996646257387589 ], [ -95.020006924220894, 29.996594257542917 ], [ -95.018673923673433, 29.996462257527433 ], [ -95.018481924200742, 29.996387257548506 ], [ -95.017511923136638, 29.996011257168487 ], [ -95.017063922972824, 29.995802257790249 ], [ -95.013148922595121, 29.99480925758051 ], [ -95.012635922257502, 29.994679257528169 ], [ -95.011352921298808, 29.994337257343236 ], [ -95.011318922296809, 29.994323257007956 ], [ -95.011296921982122, 29.994315257532698 ], [ -95.011213921445886, 29.99429325736314 ], [ -95.01117892194884, 29.994285257245185 ], [ -95.011158921703284, 29.994280257209365 ], [ -95.01110092142298, 29.994265256920766 ], [ -95.011081922126422, 29.99426125699356 ], [ -95.010789921727053, 29.994187257311673 ], [ -95.009914921635641, 29.993965257032833 ], [ -95.009623921679164, 29.993892257581617 ], [ -95.009589920888089, 29.993883257646782 ], [ -95.009488921579546, 29.993857257082727 ], [ -95.009455921733306, 29.993849257246165 ], [ -95.008554921498146, 29.993621256912672 ], [ -95.007379920508072, 29.993324257353041 ], [ -95.005848920166727, 29.992954257262923 ], [ -95.004945919607763, 29.992737256844752 ], [ -95.004891920053609, 29.992724256741248 ], [ -95.004858919829331, 29.992716257544824 ], [ -95.00459792032909, 29.992657257318179 ], [ -95.004511919651847, 29.992638257185703 ], [ -95.004346919452601, 29.992601256707182 ], [ -95.003851919468332, 29.992490256757875 ], [ -95.003687919364708, 29.992453257228227 ], [ -95.003412919950065, 29.992391257269865 ], [ -95.003154919122878, 29.992333256943965 ], [ -95.002636919580041, 29.992272256861018 ], [ -95.002578919838939, 29.992260256989113 ], [ -95.002302919597625, 29.992205256907113 ], [ -95.002194919132961, 29.992184257195277 ], [ -95.001985919546485, 29.992101257093246 ], [ -95.001941918911172, 29.992074257488852 ], [ -95.00173991931085, 29.991953257083107 ], [ -95.001455919609668, 29.99181525725006 ], [ -95.001259918692853, 29.991755257249856 ], [ -95.000930919015218, 29.991721257105858 ], [ -95.000860918801166, 29.991722257192595 ], [ -95.000665918719861, 29.991727257472085 ], [ -95.000478919377144, 29.991694256735133 ], [ -95.000412918704598, 29.991683257035323 ], [ -95.000216918375273, 29.991631256978415 ], [ -95.000151919018194, 29.991615257160788 ], [ -95.000122919275043, 29.991607256766336 ], [ -95.000036918864922, 29.991585256776197 ], [ -95.000008918874244, 29.991578257431307 ], [ -94.999970918678571, 29.991557257342297 ], [ -94.999853918972534, 29.991492256675542 ], [ -94.999830918561159, 29.991465257178056 ], [ -94.999816918666085, 29.991441257311774 ], [ -94.999834918958229, 29.991355256718368 ], [ -94.99984091840696, 29.99132725692434 ], [ -94.99982791889596, 29.991236257325074 ], [ -94.999796918759813, 29.991014257020357 ], [ -94.999796919075507, 29.990964256814028 ], [ -94.999796918418582, 29.990904256534396 ], [ -94.9997879184249, 29.990874257334966 ], [ -94.999739918453585, 29.990722257348942 ], [ -94.999704919110215, 29.990641256917371 ], [ -94.999561918869517, 29.990304257084887 ], [ -94.999445918197452, 29.989950256571902 ], [ -94.999403918227202, 29.989821257039836 ], [ -94.999361918823809, 29.989719257092968 ], [ -94.999333918923028, 29.989651257108843 ], [ -94.999249918409461, 29.98944725708078 ], [ -94.999245918777675, 29.989436256850638 ], [ -94.999216918593334, 29.989382256711046 ], [ -94.999207918156756, 29.989366256422048 ], [ -94.999182918211844, 29.989318256497452 ], [ -94.999174918477735, 29.989302256228335 ], [ -94.999125918698567, 29.989210256202188 ], [ -94.999024917979426, 29.989045256857182 ], [ -94.999024917953236, 29.989033256432563 ], [ -94.999024917967574, 29.988941256492204 ], [ -94.99899291825669, 29.98882025647832 ], [ -94.998973918289465, 29.988804256147269 ], [ -94.998922917954019, 29.988705256498775 ], [ -94.99869591841383, 29.988176256283293 ], [ -94.998574918439814, 29.987892256792492 ], [ -94.99856091867251, 29.98786025615771 ], [ -94.998519918034887, 29.987765256200216 ], [ -94.998506917984628, 29.987734256645339 ], [ -94.998442918017147, 29.987584256180977 ], [ -94.998397918213897, 29.987479256104105 ], [ -94.998286918504363, 29.987122256241513 ], [ -94.998264918537529, 29.987050256138968 ], [ -94.998229917601066, 29.986971256374822 ], [ -94.998068917561184, 29.986610255883217 ], [ -94.997935917618847, 29.986264256462444 ], [ -94.997644917363388, 29.98554225554232 ], [ -94.997625917804584, 29.985494256214352 ], [ -94.997505917435873, 29.985183255665067 ], [ -94.997477917713155, 29.985112255457111 ], [ -94.997395917968916, 29.984899255699155 ], [ -94.997368918079133, 29.984829255655995 ], [ -94.997336918236769, 29.984747255976458 ], [ -94.997241917793048, 29.984503255429434 ], [ -94.997210917827999, 29.984422255906384 ], [ -94.997188918208707, 29.984365255640924 ], [ -94.997170917691051, 29.984317255302813 ], [ -94.997129917801814, 29.984195255986979 ], [ -94.997110917155752, 29.984139255914794 ], [ -94.997047917641424, 29.983955255326503 ], [ -94.996967917256455, 29.983718255182229 ], [ -94.996831917679017, 29.983417255300751 ], [ -94.996752917774174, 29.983241255656118 ], [ -94.996668917433325, 29.983055255741117 ], [ -94.996638917798222, 29.982987255794161 ], [ -94.996543917156529, 29.982674255018509 ], [ -94.996465917832253, 29.982481255569382 ], [ -94.996389917296057, 29.982293255205509 ], [ -94.996164917731704, 29.981739254861292 ], [ -94.99607591762809, 29.981519255070033 ], [ -94.995999917133602, 29.981360255358265 ], [ -94.99560791701974, 29.980287255213064 ], [ -94.995520916627626, 29.980070254589901 ], [ -94.995298916991274, 29.979516254880544 ], [ -94.995275916927923, 29.979461254474263 ], [ -94.995272916732503, 29.979452254460405 ], [ -94.995240916896179, 29.979287254483683 ], [ -94.995233916871271, 29.979248254946782 ], [ -94.995232917346726, 29.979229254921862 ], [ -94.995227917284311, 29.979166254493979 ], [ -94.995240916893394, 29.979072255089328 ], [ -94.995265916682413, 29.979023254732585 ], [ -94.995268917205735, 29.978980254788603 ], [ -94.995277916767918, 29.978891254385047 ], [ -94.995322917425511, 29.978775254600222 ], [ -94.995410916584589, 29.978682254243754 ], [ -94.995429917055276, 29.978638254629193 ], [ -94.995435917079888, 29.978555254364718 ], [ -94.995536916781134, 29.97834125479039 ], [ -94.995552916753979, 29.978284254373619 ], [ -94.995574917115036, 29.978209254338662 ], [ -94.995567916547301, 29.978032254665777 ], [ -94.995517916701644, 29.977906254310074 ], [ -94.995426916713257, 29.977831254170976 ], [ -94.994708916981949, 29.977581254710149 ], [ -94.994469917000202, 29.977498254685681 ], [ -94.994177917108161, 29.97739625466248 ], [ -94.993855916441149, 29.977225254752593 ], [ -94.993805916023405, 29.977207254448711 ], [ -94.993680916720379, 29.977152254450026 ], [ -94.993645916817073, 29.977138254657756 ], [ -94.993533916814172, 29.977110253953686 ], [ -94.993480916683239, 29.977088254429976 ], [ -94.993294916329958, 29.976985254531986 ], [ -94.993220916656853, 29.976960254205476 ], [ -94.99319791644848, 29.976945254688651 ], [ -94.993165916714261, 29.97691125469785 ], [ -94.993081916334219, 29.976845254029506 ], [ -94.993036915921266, 29.976793254382898 ], [ -94.99297991639547, 29.976754253910933 ], [ -94.99290491611346, 29.97672125450439 ], [ -94.99287691652259, 29.976714254414834 ], [ -94.992810916069686, 29.976710254666571 ], [ -94.992716916538626, 29.976716254429416 ], [ -94.992688915789259, 29.976704254208734 ], [ -94.992581916034737, 29.976670254517792 ], [ -94.992489916442835, 29.976629254231597 ], [ -94.992395915616143, 29.976582254383626 ], [ -94.99229091574658, 29.976530254714486 ], [ -94.992186915692884, 29.976485254550962 ], [ -94.992141915557994, 29.976463254034339 ], [ -94.990104915336275, 29.975546253976503 ], [ -94.989979915778619, 29.975498254434225 ], [ -94.989787915247206, 29.97539225381546 ], [ -94.989656915794725, 29.975338254153264 ], [ -94.988275914670112, 29.974712254250221 ], [ -94.987848914916526, 29.974519253757393 ], [ -94.985986914119962, 29.973091253355925 ], [ -94.985966914406404, 29.973073254072172 ], [ -94.985917914139421, 29.973017253326056 ], [ -94.985675913827023, 29.972741254031231 ], [ -94.985537913989674, 29.972541253335592 ], [ -94.985403914312883, 29.972326253587759 ], [ -94.985370914236285, 29.972284253490855 ], [ -94.985291914100799, 29.972001253514868 ], [ -94.985324914378978, 29.97180225341129 ], [ -94.985346913941441, 29.971674253324842 ], [ -94.985280913588738, 29.970378252815248 ], [ -94.984799913505142, 29.968475252959156 ], [ -94.984768914176541, 29.968030252840226 ], [ -94.984288913499441, 29.967552252929174 ], [ -94.984023913599785, 29.966888252287376 ], [ -94.983789913886582, 29.966489252131904 ], [ -94.983496913690175, 29.96613225238465 ], [ -94.98266991266091, 29.96537425186979 ], [ -94.9826109126181, 29.965326252590248 ], [ -94.982234913051087, 29.965078252300163 ], [ -94.982158912993512, 29.964973252701146 ], [ -94.982101912470668, 29.964759251973344 ], [ -94.982078913058672, 29.964586252308731 ], [ -94.982075913129165, 29.964567252629664 ], [ -94.982068913194681, 29.964511252253608 ], [ -94.982066912633016, 29.964493251987918 ], [ -94.982030912533105, 29.964227251818805 ], [ -94.981999912676855, 29.963989252472242 ], [ -94.981956912603252, 29.963754252036271 ], [ -94.981897912301548, 29.963433252034982 ], [ -94.981885912539028, 29.963362251552002 ], [ -94.98185991309802, 29.963168251649023 ], [ -94.981823912799001, 29.96290425166718 ], [ -94.981797912695242, 29.96270825219769 ], [ -94.981697913159579, 29.96211725181184 ], [ -94.981664912613368, 29.961921251256644 ], [ -94.981619912827568, 29.961872251376633 ], [ -94.981513912645482, 29.961204251474552 ], [ -94.981442912834027, 29.960750251413064 ], [ -94.981391912860573, 29.960255251256559 ], [ -94.981296912905677, 29.95979925160821 ], [ -94.981220912637468, 29.959546251150023 ], [ -94.981182912716463, 29.95926625069345 ], [ -94.981160912585594, 29.959212251076544 ], [ -94.981069912110499, 29.95898525080743 ], [ -94.980967912847888, 29.958567250992857 ], [ -94.980915912086815, 29.958388250575865 ], [ -94.980866912127269, 29.958215250896277 ], [ -94.980834912598311, 29.957985251229282 ], [ -94.980795911795738, 29.957846250779447 ], [ -94.980746912750021, 29.957668250930297 ], [ -94.980689912290231, 29.95746225047537 ], [ -94.980664912220078, 29.957275250478638 ], [ -94.980664912083839, 29.957138250761567 ], [ -94.980651912670297, 29.957088250464508 ], [ -94.98069591200688, 29.956808250927882 ], [ -94.98076491225072, 29.956516250867818 ], [ -94.980833912090006, 29.956142250389352 ], [ -94.980928911802422, 29.955873250575095 ], [ -94.980953912512931, 29.95584025030734 ], [ -94.980966911794681, 29.955796250510613 ], [ -94.981035912145714, 29.955702250654213 ], [ -94.981138912747809, 29.955604250417739 ], [ -94.98118191211293, 29.955565250578505 ], [ -94.981679912013277, 29.955422249964876 ], [ -94.982298912247231, 29.955147250171549 ], [ -94.985026913023205, 29.954024250235257 ], [ -94.985118912720026, 29.953987249930325 ], [ -94.987220914009484, 29.953165249576188 ], [ -94.987519913795893, 29.953049249889446 ], [ -94.987595913738616, 29.953000249343507 ], [ -94.987633913965396, 29.95296124975075 ], [ -94.987702913943025, 29.952840249290382 ], [ -94.987917913475059, 29.952307249377242 ], [ -94.988100914338872, 29.951740249149914 ], [ -94.988245913694712, 29.951355249255467 ], [ -94.988383913878423, 29.950969249258158 ], [ -94.988799913901119, 29.949813248869866 ], [ -94.988907913488703, 29.949513248471881 ], [ -94.988936913701977, 29.949427249028073 ], [ -94.989197913575069, 29.948657249038011 ], [ -94.98944291403248, 29.947935248699647 ], [ -94.989751914559889, 29.947121248134316 ], [ -94.990014914236397, 29.946360248307769 ], [ -94.990062914561776, 29.946219248012699 ], [ -94.990281914124779, 29.945592247697878 ], [ -94.99054691461663, 29.944827247851023 ], [ -94.990661914627864, 29.944505247354407 ], [ -94.990855913892389, 29.943969248076105 ], [ -94.991056913855445, 29.943513247280936 ], [ -94.991504913938741, 29.942044247291172 ], [ -94.991731914819724, 29.941412247475803 ], [ -94.991794914229075, 29.94124324720589 ], [ -94.991977914595793, 29.940763246849926 ], [ -94.992197914530195, 29.940400246482191 ], [ -94.992317914076381, 29.940224246596078 ], [ -94.992380914976749, 29.940141246516426 ], [ -94.992396914785999, 29.940123246607339 ], [ -94.99266391458336, 29.939844246839893 ], [ -94.992753914038488, 29.939751247154252 ], [ -94.992898914398225, 29.939591246247797 ], [ -94.993209914692926, 29.939206246396505 ], [ -94.993383914296999, 29.938992246511241 ], [ -94.994084914585756, 29.938161246616119 ], [ -94.994567914647547, 29.937561246028263 ], [ -94.994740914548018, 29.937347246198406 ], [ -94.994904914688789, 29.937061246320013 ], [ -94.994931915393806, 29.936958246426034 ], [ -94.995118914566433, 29.936241245709972 ], [ -94.995105915043041, 29.935856245587249 ], [ -94.995225914814213, 29.935240245824232 ], [ -94.995364914904513, 29.934905245811219 ], [ -94.995382914625978, 29.934300245086259 ], [ -94.995440914998824, 29.934072245123197 ], [ -94.995623915053471, 29.93335624513012 ], [ -94.995653914708583, 29.933239244943525 ], [ -94.995888915226018, 29.932135245383115 ], [ -94.995898914820401, 29.932089245345555 ], [ -94.99602491462565, 29.931308244882441 ], [ -94.996081914614834, 29.930758244760796 ], [ -94.996150915261239, 29.930472244551169 ], [ -94.996162915344271, 29.93020324452279 ], [ -94.996150915035898, 29.930087244404302 ], [ -94.99595491535878, 29.929752244413027 ], [ -94.995897914892296, 29.9296922448457 ], [ -94.995834914457134, 29.929659244256488 ], [ -94.995714914831993, 29.929620244369797 ], [ -94.995644915291265, 29.929560244125707 ], [ -94.995568914272241, 29.929466244601674 ], [ -94.995392914888711, 29.929307244934684 ], [ -94.99520891440919, 29.929054244051759 ], [ -94.995170914272791, 29.929027244701441 ], [ -94.995133914430625, 29.928983244579918 ], [ -94.995017914346931, 29.928907244662362 ], [ -94.994912915028863, 29.928862244437788 ], [ -94.994602914329718, 29.928801244360503 ], [ -94.994526914570571, 29.928768244245813 ], [ -94.994381914104892, 29.928686244528329 ], [ -94.993854913795175, 29.928472244736721 ], [ -94.993718914129857, 29.928417244122304 ], [ -94.993512914033872, 29.928275244399007 ], [ -94.993207914385152, 29.928065244622367 ], [ -94.992884914485344, 29.92775724412715 ], [ -94.99281591433207, 29.927647244542428 ], [ -94.992722914176667, 29.927424244080353 ], [ -94.992688914020547, 29.927340244087368 ], [ -94.992676914326665, 29.927169244595472 ], [ -94.992682914158351, 29.927036244316259 ], [ -94.992701914124751, 29.926619244280211 ], [ -94.992701914174859, 29.926548243890629 ], [ -94.99268891439533, 29.926482243657926 ], [ -94.99269491339642, 29.926432244423143 ], [ -94.992719913420657, 29.926366244077936 ], [ -94.992732914241259, 29.926289244243378 ], [ -94.992789913942104, 29.926168243587927 ], [ -94.992820914391487, 29.926141243671037 ], [ -94.993010913680735, 29.92603624346556 ], [ -94.993066913602505, 29.926036243556197 ], [ -94.994032914148718, 29.925761243665733 ], [ -94.994108913989237, 29.925755244148593 ], [ -94.994171914317448, 29.92573324412297 ], [ -94.994297914802146, 29.925640243679776 ], [ -94.994330914605158, 29.925608243379543 ], [ -94.994575914118826, 29.925376243794695 ], [ -94.994897914505401, 29.924880243298112 ], [ -94.99519391417688, 29.924380243482727 ], [ -94.995250914848313, 29.924314243416482 ], [ -94.99533891403766, 29.924248243016297 ], [ -94.995382914417874, 29.924193243638342 ], [ -94.995464914661511, 29.924044243605419 ], [ -94.995515914994598, 29.923984243479048 ], [ -94.995578914103064, 29.923929243111452 ], [ -94.99569891438567, 29.923846243199137 ], [ -94.995925914732297, 29.923731243194691 ], [ -94.996038914420211, 29.923703243311358 ], [ -94.996152914827391, 29.923703242929431 ], [ -94.996247914307929, 29.923769243657105 ], [ -94.996354914835919, 29.923791242884445 ], [ -94.996518914578672, 29.923774243423996 ], [ -94.996651914324843, 29.92371924362741 ], [ -94.996777914860132, 29.923637243234115 ], [ -94.996947914527126, 29.923428243137696 ], [ -94.997099914752084, 29.922988242702768 ], [ -94.997149915206307, 29.922751242889461 ], [ -94.997180915410993, 29.922680242731335 ], [ -94.997212915040038, 29.922630243361205 ], [ -94.997275914674987, 29.92256424265063 ], [ -94.997382914636333, 29.922399242635723 ], [ -94.997660914543147, 29.922069242667604 ], [ -94.997754914641959, 29.921992243178458 ], [ -94.997937915236406, 29.921591242792502 ], [ -94.998051914851274, 29.921382243190532 ], [ -94.998120915316207, 29.921189242825175 ], [ -94.998309914611809, 29.920843242725514 ], [ -94.998360914914073, 29.920650242612364 ], [ -94.998448915616251, 29.920469242407577 ], [ -94.998492914683425, 29.920353242775249 ], [ -94.99870091480993, 29.92011724221188 ], [ -94.998725914878179, 29.920067242317977 ], [ -94.998744915262833, 29.919963242707031 ], [ -94.998751915557648, 29.919930242303717 ], [ -94.998744915264169, 29.919869242885838 ], [ -94.998662915643237, 29.919776242071318 ], [ -94.99808191485873, 29.919429242249496 ], [ -94.997683914843961, 29.919155242417357 ], [ -94.9970209144564, 29.918545241936982 ], [ -94.996801915078095, 29.918383242549599 ], [ -94.99673391493738, 29.918332242590665 ], [ -94.996597914954407, 29.918231241877653 ], [ -94.996534914923643, 29.918179241811558 ], [ -94.996470914871935, 29.91812624236173 ], [ -94.996452914008387, 29.918111242013985 ], [ -94.996420914430772, 29.918067242209524 ], [ -94.996376914109348, 29.91796224253892 ], [ -94.996197914352109, 29.917747241651071 ], [ -94.996054914552076, 29.917577241714664 ], [ -94.995870913860358, 29.917341241950833 ], [ -94.995820914517594, 29.917236241790018 ], [ -94.995776914413184, 29.917171242193035 ], [ -94.995719914189721, 29.917028241716967 ], [ -94.995498914477238, 29.916582242113915 ], [ -94.995480914693545, 29.916542241778462 ], [ -94.995377914288468, 29.916307241862956 ], [ -94.995333914276642, 29.916098241401968 ], [ -94.995327914247014, 29.916076241849584 ], [ -94.995282914009593, 29.916031241705312 ], [ -94.995213914158285, 29.915961241314978 ], [ -94.995088914351356, 29.915861241459343 ], [ -94.995021914493634, 29.915808241959244 ], [ -94.99498891405436, 29.915781241650397 ], [ -94.994979913959639, 29.915774241478253 ], [ -94.994910913512598, 29.915685241384928 ], [ -94.994885913677749, 29.915653241350451 ], [ -94.994872914465176, 29.915620241784072 ], [ -94.994847913866238, 29.915593241875186 ], [ -94.994836913691231, 29.915562241908027 ], [ -94.994828913783877, 29.915538241793367 ], [ -94.994817913980071, 29.915514241513161 ], [ -94.994787913585668, 29.91544524144048 ], [ -94.994777913808278, 29.915422241424675 ], [ -94.994379914050569, 29.914141241617838 ], [ -94.994317913530537, 29.913905240975804 ], [ -94.994208913840666, 29.913487241143073 ], [ -94.994107914033862, 29.913201240854018 ], [ -94.994012913505799, 29.912992240955855 ], [ -94.99370991396512, 29.91240924085352 ], [ -94.993601913925943, 29.912343241358084 ], [ -94.993368913849025, 29.912256241518325 ], [ -94.99328691311149, 29.912206241492395 ], [ -94.993058912846536, 29.912041241016684 ], [ -94.992875913427156, 29.911876240665094 ], [ -94.992237912883709, 29.911057241175293 ], [ -94.991833912537302, 29.910436240800561 ], [ -94.991650912754821, 29.910216240272707 ], [ -94.991612912785101, 29.910161240726062 ], [ -94.991347913056359, 29.909771240742057 ], [ -94.991170912730823, 29.909540240273316 ], [ -94.991138912814151, 29.90949024034564 ], [ -94.991094912259143, 29.909386240389164 ], [ -94.991062912489795, 29.909342240830497 ], [ -94.991018912958836, 29.909309240798237 ], [ -94.990930912562192, 29.909210240768054 ], [ -94.990734912622159, 29.908853240643506 ], [ -94.990664912208018, 29.908754240187715 ], [ -94.990614912553795, 29.908715239980904 ], [ -94.990605913033576, 29.908669240113948 ], [ -94.990576912485551, 29.908512240684409 ], [ -94.990550912373195, 29.908435240710183 ], [ -94.990506912057924, 29.908358240002372 ], [ -94.990268912708061, 29.908083240277197 ], [ -94.990159912012118, 29.907957240002375 ], [ -94.990127912006884, 29.907902240501848 ], [ -94.990048912742452, 29.907810240363755 ], [ -94.99003091250519, 29.907789240453038 ], [ -94.989953912176929, 29.907700240151584 ], [ -94.98979091284005, 29.907415239827543 ], [ -94.989717912548087, 29.90728624013061 ], [ -94.989729912290741, 29.90720423980223 ], [ -94.98972391191505, 29.907171240203276 ], [ -94.989622911884766, 29.907094239960422 ], [ -94.989578912714748, 29.907072239973331 ], [ -94.989388912241154, 29.906797240340335 ], [ -94.989176912284108, 29.906525239738944 ], [ -94.989148911639589, 29.906489239935048 ], [ -94.989142911688077, 29.9064232403822 ], [ -94.98911691210192, 29.906357239720119 ], [ -94.989085911944599, 29.906313239682344 ], [ -94.988978912054165, 29.906208240345638 ], [ -94.988277911695292, 29.90520224004722 ], [ -94.988175911946001, 29.905109239512537 ], [ -94.988074911830253, 29.904977239539519 ], [ -94.987923911211041, 29.904741239313488 ], [ -94.987815911499439, 29.904510239372776 ], [ -94.987654911359868, 29.904078239219018 ], [ -94.987581911281353, 29.903883239943482 ], [ -94.987537911805873, 29.903625239219835 ], [ -94.987360911225949, 29.903157239655062 ], [ -94.987234911565153, 29.902860239709241 ], [ -94.987145911803296, 29.902492239244896 ], [ -94.986971911006847, 29.901962239209677 ], [ -94.986677911062216, 29.901062239048649 ], [ -94.986519911508339, 29.900524239156848 ], [ -94.986475911112578, 29.900293239062588 ], [ -94.986368911249997, 29.899957238829241 ], [ -94.986298911093598, 29.899847238509746 ], [ -94.986273910807, 29.899776238764122 ], [ -94.98626791068007, 29.899721238573999 ], [ -94.986153910801633, 29.899429238742176 ], [ -94.985810910574202, 29.898380238063162 ], [ -94.985552910974306, 29.897587238533106 ], [ -94.985445910440532, 29.897307238598092 ], [ -94.985420910391255, 29.897186238404476 ], [ -94.985369911073448, 29.897104237990707 ], [ -94.98533791098491, 29.897021238013298 ], [ -94.985224910656996, 29.896675237795524 ], [ -94.985198910688254, 29.896543237670375 ], [ -94.98515491028175, 29.896416238027061 ], [ -94.985034910868904, 29.895976238411823 ], [ -94.984914910433872, 29.895646237638164 ], [ -94.984782910867779, 29.895135237419872 ], [ -94.984712910042404, 29.894866237705379 ], [ -94.984649910267166, 29.89471723754027 ], [ -94.984631910374048, 29.894695237405337 ], [ -94.984631910105378, 29.894597237331819 ], [ -94.98451190988736, 29.894339237502614 ], [ -94.984504910394918, 29.894260237972592 ], [ -94.984484910414267, 29.894090238084114 ], [ -94.984396910260685, 29.893920237704766 ], [ -94.984332910791679, 29.893750237935251 ], [ -94.984320909932109, 29.89343123756775 ], [ -94.984370910382538, 29.893249237557519 ], [ -94.984648910413853, 29.892892237563562 ], [ -94.984944910703859, 29.892545237182496 ], [ -94.985322910074103, 29.892187237451193 ], [ -94.985594910825654, 29.891874237343984 ], [ -94.985859910540526, 29.891538236969545 ], [ -94.986016910480132, 29.891313237001263 ], [ -94.986123910202011, 29.891131237318199 ], [ -94.986155910939587, 29.891043237200641 ], [ -94.986161911051624, 29.890994236999372 ], [ -94.986149911090109, 29.890790237019136 ], [ -94.985984910623088, 29.890554237301529 ], [ -94.985864910138773, 29.890422236576647 ], [ -94.985631910469081, 29.890202236501988 ], [ -94.985530910246311, 29.890131237105226 ], [ -94.985353909993123, 29.890026237036974 ], [ -94.984993909985661, 29.889664236629738 ], [ -94.984905910266832, 29.88948223629497 ], [ -94.984741909713094, 29.889279236892854 ], [ -94.984551909643315, 29.88898223698715 ], [ -94.984185910233521, 29.888531236822338 ], [ -94.983850910350085, 29.888020236488828 ], [ -94.983553910185506, 29.887618236324958 ], [ -94.98310590929502, 29.886920236348953 ], [ -94.982878909441325, 29.886618235867825 ], [ -94.98280290919557, 29.886497235788354 ], [ -94.982751909610329, 29.886436235882659 ], [ -94.982739909385813, 29.886403236529709 ], [ -94.982701909402522, 29.886365236549238 ], [ -94.982518909435768, 29.886019235842387 ], [ -94.982297909869601, 29.88565223582787 ], [ -94.982269909753853, 29.885606236378532 ], [ -94.98218590962928, 29.885468236188121 ], [ -94.982158909321669, 29.88542223596032 ], [ -94.982030909716343, 29.88520923612105 ], [ -94.98198190898853, 29.885128236152848 ], [ -94.981779909202928, 29.884826235630353 ], [ -94.981644909206125, 29.88457523553722 ], [ -94.981533909633711, 29.884369235848279 ], [ -94.981525909045288, 29.884358235643248 ], [ -94.981513909155922, 29.884342235477408 ], [ -94.981477909331062, 29.884296235419466 ], [ -94.981466909026949, 29.884281235626698 ], [ -94.976985908017014, 29.884309235702265 ], [ -94.964071904790785, 29.884391236020242 ], [ -94.963544904321068, 29.884395236130732 ], [ -94.961955904011361, 29.88440623672161 ], [ -94.95906490326044, 29.88442423628128 ], [ -94.959042903176112, 29.884424236206176 ], [ -94.958977903619555, 29.884424236312238 ], [ -94.958956902886101, 29.884425236768266 ], [ -94.958571903293119, 29.884427236950785 ], [ -94.95846390315819, 29.884434236639386 ], [ -94.958085902976606, 29.88445723633324 ], [ -94.955475902033314, 29.884623236650683 ], [ -94.954605902256475, 29.884679236837734 ], [ -94.95410690227763, 29.884670236913632 ], [ -94.952612901467191, 29.884643237035519 ], [ -94.95211490191042, 29.884635236640126 ], [ -94.951694901031871, 29.884641237104077 ], [ -94.948651900744039, 29.884687236646474 ], [ -94.948191900623755, 29.884695237370916 ], [ -94.948069900914618, 29.884696236895039 ], [ -94.943889899241569, 29.884761236919882 ], [ -94.938263898416437, 29.88484623771993 ], [ -94.935024896936028, 29.884896237631771 ], [ -94.934913897560421, 29.884898237391312 ], [ -94.934863897177564, 29.884899237321786 ], [ -94.934801897443648, 29.884900237427413 ], [ -94.934770896797616, 29.884900237777437 ], [ -94.93472689713532, 29.884900237804938 ], [ -94.93471589748745, 29.884900237591967 ], [ -94.934673897166022, 29.884902237281452 ], [ -94.934621897410452, 29.884903237017372 ], [ -94.934590897248341, 29.884904237580216 ], [ -94.934466896733184, 29.884906237479196 ], [ -94.934415896639734, 29.884907237639855 ], [ -94.931523896441576, 29.884955238002007 ], [ -94.928096895947292, 29.885013237284802 ], [ -94.922849893741628, 29.885101238318921 ], [ -94.921233894086782, 29.885129238052336 ], [ -94.920185893392343, 29.885136237609618 ], [ -94.920072893208143, 29.885137238044656 ], [ -94.919958892975998, 29.885137238419333 ], [ -94.919879893422902, 29.885137237967573 ], [ -94.919800893174767, 29.885138237692136 ], [ -94.919560893631314, 29.885139237869588 ], [ -94.919366893402355, 29.885140238465375 ], [ -94.919007892686224, 29.885143238360428 ], [ -94.917591892483586, 29.885152237790223 ], [ -94.917000892336517, 29.885156238202285 ], [ -94.91637489207632, 29.885159238318597 ], [ -94.916293892294931, 29.885160238306799 ], [ -94.914171891549202, 29.885173238413383 ], [ -94.913465891717323, 29.88517823808634 ], [ -94.912854891258021, 29.885185238250386 ], [ -94.911022891534486, 29.885206238154318 ], [ -94.910412891292765, 29.885214238083829 ], [ -94.910374890364281, 29.885214238769308 ], [ -94.91028189087632, 29.885215238547651 ], [ -94.910260891037453, 29.885215238405209 ], [ -94.910223891130428, 29.885216238215339 ], [ -94.910154890558331, 29.885217238305366 ], [ -94.909917890683303, 29.885220238261841 ], [ -94.909849890845521, 29.885221238012324 ], [ -94.909754890864377, 29.885222238723074 ], [ -94.908475890603654, 29.885238238504336 ], [ -94.907101890394912, 29.885255238485669 ], [ -94.897737887870974, 29.885372238866729 ], [ -94.894990886763821, 29.885407239075665 ], [ -94.894852886513476, 29.885409238947794 ], [ -94.894728887260214, 29.885411239224485 ], [ -94.894616886430114, 29.885412238894279 ], [ -94.894625886420542, 29.885468238610446 ], [ -94.894646886304145, 29.88560823938138 ], [ -94.894736887091412, 29.88619023923642 ], [ -94.894767887120565, 29.886515239434367 ], [ -94.894851886490798, 29.887369239118325 ], [ -94.895066886628214, 29.88955324013579 ], [ -94.895104886958322, 29.88992623943718 ], [ -94.895408887504246, 29.891987240027667 ], [ -94.895628887373505, 29.893232240740137 ], [ -94.895650887888664, 29.893353240623426 ], [ -94.895809887584747, 29.89420824088111 ], [ -94.895968887504395, 29.895176240670754 ], [ -94.896021887363943, 29.895498240904335 ], [ -94.896160887584728, 29.896341240910505 ], [ -94.896180888169582, 29.896466240847349 ], [ -94.896190888066258, 29.89652524083693 ], [ -94.896233887408741, 29.896789241050694 ], [ -94.896243887584745, 29.896850241531407 ], [ -94.896261887663869, 29.896957240788502 ], [ -94.896272887710836, 29.897027241571198 ], [ -94.896273887585025, 29.897036240976888 ], [ -94.896284887739995, 29.897098241587553 ], [ -94.896300887567847, 29.897182241669785 ], [ -94.896317887245615, 29.897266241634888 ], [ -94.89632288749759, 29.89729324145766 ], [ -94.896334887570873, 29.897355241044419 ], [ -94.89636788791158, 29.897520241247648 ], [ -94.896427887620831, 29.89788224108878 ], [ -94.896461887804733, 29.898079241794051 ], [ -94.896469887400031, 29.898130241762036 ], [ -94.896495888081731, 29.898284241742726 ], [ -94.896504887655212, 29.898336241841026 ], [ -94.896589887460365, 29.898844241346584 ], [ -94.896845887566485, 29.900368241501223 ], [ -94.896884888491201, 29.900597241997442 ], [ -94.896931888598559, 29.900877242328743 ], [ -94.897051888083737, 29.901593242044147 ], [ -94.897105887669866, 29.901910242334012 ], [ -94.897413888404103, 29.903744242504356 ], [ -94.897534888507295, 29.90446224311075 ], [ -94.897608888863857, 29.90490424300561 ], [ -94.897625887953737, 29.905005243045551 ], [ -94.897899888101705, 29.906636243049835 ], [ -94.897991888340442, 29.907180243281822 ], [ -94.898090889058736, 29.907770243728539 ], [ -94.898111888226737, 29.907897243092517 ], [ -94.898473888457602, 29.910048243939098 ], [ -94.898594888787486, 29.910765244131603 ], [ -94.898853888605686, 29.912306244549782 ], [ -94.8993948888901, 29.915514244535981 ], [ -94.899632889519964, 29.916931245074331 ], [ -94.899708889158049, 29.9173792453022 ], [ -94.899893889617005, 29.918473245700294 ], [ -94.899943889886003, 29.918768246006582 ], [ -94.900475890010441, 29.921915246571736 ], [ -94.900816890300092, 29.923933246645223 ], [ -94.901347890427346, 29.927027246951994 ], [ -94.901539890875313, 29.928179247679701 ], [ -94.901699891128672, 29.929136247380846 ], [ -94.902218890419761, 29.932244248714007 ], [ -94.902410891435096, 29.933394248756453 ], [ -94.902793890769061, 29.935689248829064 ], [ -94.902822890684845, 29.935862248989967 ], [ -94.902909891581402, 29.93638424918619 ], [ -94.902938891031113, 29.936558249487707 ], [ -94.90341689157394, 29.939319249633098 ], [ -94.903681891202581, 29.940854249971338 ], [ -94.904101891567379, 29.943272250666059 ], [ -94.904126892030575, 29.943415250137896 ], [ -94.904912892707813, 29.947949251120907 ], [ -94.905026891860942, 29.948648251661965 ], [ -94.905540892996029, 29.953153252445528 ], [ -94.905612892236931, 29.953785252970238 ], [ -94.905915893366341, 29.956438253031074 ], [ -94.906028893465972, 29.957518253733088 ], [ -94.906081892800529, 29.958120253537906 ], [ -94.906125893235654, 29.958626253380601 ], [ -94.906176892726435, 29.959213253545339 ], [ -94.906200893356697, 29.959491254043215 ], [ -94.906263892659908, 29.960145253888573 ], [ -94.906313893335195, 29.960651253873934 ], [ -94.906317893558906, 29.96068725388459 ], [ -94.906331893278121, 29.960796253704046 ], [ -94.906333892802635, 29.960809254380667 ], [ -94.906337893545071, 29.960833254436515 ], [ -94.906347893679964, 29.960904253814999 ], [ -94.906351893601808, 29.960929254067356 ], [ -94.9063538931198, 29.960961254464937 ], [ -94.906357892983195, 29.96101925394662 ], [ -94.906371893553256, 29.961208254449843 ], [ -94.90637389324543, 29.961231253746249 ], [ -94.906398892989088, 29.961484254507727 ], [ -94.906654893802667, 29.963942255092899 ], [ -94.906694893441625, 29.964330254394685 ], [ -94.906861893427177, 29.965930254665938 ], [ -94.907317893777702, 29.970293255546292 ], [ -94.907730894303199, 29.974263256540752 ], [ -94.907906894104798, 29.975946256997705 ], [ -94.908047894387082, 29.977577256994504 ], [ -94.908051894007428, 29.97764525730074 ], [ -94.908058894812839, 29.977759257019361 ], [ -94.908063894682712, 29.977852257107667 ], [ -94.908068894129158, 29.977921257398293 ], [ -94.908072894138414, 29.977986257057086 ], [ -94.908087894733953, 29.978291257527111 ], [ -94.908096894877033, 29.978472257713285 ], [ -94.908096894128263, 29.978584257548619 ], [ -94.908096894124725, 29.979107257803573 ], [ -94.908092894569407, 29.979248257575271 ], [ -94.908088894729232, 29.979410257355092 ], [ -94.908072894399623, 29.979713257703267 ], [ -94.908067894803011, 29.97977725819112 ], [ -94.908013894496833, 29.98044125808217 ], [ -94.907940894606, 29.98112225844103 ], [ -94.907856894171971, 29.981746258677578 ], [ -94.907733894747707, 29.9823992581914 ], [ -94.907623894248573, 29.982895258800259 ], [ -94.907392894681763, 29.983830258797195 ], [ -94.907299894935008, 29.984160258531549 ], [ -94.907152894224126, 29.984627258509665 ], [ -94.907050894249977, 29.984916259282013 ], [ -94.906937894561153, 29.98521925899982 ], [ -94.906533894146207, 29.986222258788825 ], [ -94.906021894800276, 29.987437259112543 ], [ -94.906003894238509, 29.987479259161891 ], [ -94.905997894023741, 29.987493259778791 ], [ -94.905982894514835, 29.987530259070518 ], [ -94.905914894397014, 29.987691259682109 ], [ -94.90546789446897, 29.988756260075817 ], [ -94.905397894010022, 29.988920259637382 ], [ -94.90525389464463, 29.989263259991233 ], [ -94.905189894736026, 29.989412259554889 ], [ -94.905120894267782, 29.989577259876302 ], [ -94.905109894525651, 29.989602260205302 ], [ -94.905013894315104, 29.989830260377833 ], [ -94.905008894169072, 29.989842260322728 ], [ -94.904926894539443, 29.990035260108368 ], [ -94.90484889443313, 29.99021826050847 ], [ -94.904119893591727, 29.991943260305128 ], [ -94.904033894295566, 29.992144260189789 ], [ -94.903982893840507, 29.992264260363648 ], [ -94.903762894058801, 29.992786260274887 ], [ -94.903665893606373, 29.993016260924808 ], [ -94.903174894082014, 29.994168261068552 ], [ -94.903152893892937, 29.994219260673745 ], [ -94.903092893457213, 29.994360261216194 ], [ -94.902715893515747, 29.995244261607436 ], [ -94.90180589350264, 29.997385262046524 ], [ -94.901706893310759, 29.997617261965683 ], [ -94.901662893695871, 29.997717262063262 ], [ -94.901401893539372, 29.998311262261602 ], [ -94.900798893556782, 29.999687262314058 ], [ -94.900620893773549, 30.000092262703792 ], [ -94.899119892878161, 30.003694263043226 ], [ -94.896640893165483, 30.009649264471953 ], [ -94.895714892370208, 30.011838264412003 ], [ -94.89517089286548, 30.01310326483047 ], [ -94.894948893014302, 30.013630264950024 ], [ -94.894646892775256, 30.014459265625284 ], [ -94.894541893145444, 30.014765265191318 ], [ -94.894377892956186, 30.015372265186194 ], [ -94.894276892138166, 30.015782265651705 ], [ -94.89420789266137, 30.016070265574132 ], [ -94.894168892314283, 30.016325265596652 ], [ -94.894128892677159, 30.016535265447203 ], [ -94.894114892566023, 30.016646265835515 ], [ -94.894091892171971, 30.016826266290703 ], [ -94.894031892176628, 30.017256266288808 ], [ -94.894003892258212, 30.017529265815593 ], [ -94.893945892176376, 30.018275266624055 ], [ -94.89393989312471, 30.018547266703099 ], [ -94.893940892851461, 30.019775266136655 ], [ -94.893934892642946, 30.020102266527473 ], [ -94.893932892289428, 30.020197266467086 ], [ -94.893927892412108, 30.020484266587747 ], [ -94.893926893165343, 30.020580266627302 ], [ -94.893925892467124, 30.021002266848519 ], [ -94.893925892990353, 30.02145926688317 ], [ -94.893925893279715, 30.021506266615095 ], [ -94.893925892527278, 30.02226926701708 ], [ -94.89392589232051, 30.022432267036425 ], [ -94.893925892695663, 30.022480266959462 ], [ -94.893925893137293, 30.022540267538332 ], [ -94.893925892949866, 30.022692267093369 ], [ -94.893926892523737, 30.023205267327029 ], [ -94.893927893358239, 30.02342326762075 ], [ -94.893927893255992, 30.023620267310445 ], [ -94.893928892439035, 30.024294267769108 ], [ -94.89392889329703, 30.024380267315131 ], [ -94.89392889259598, 30.024747267334412 ], [ -94.893929893327098, 30.025261267425105 ], [ -94.893928892495225, 30.026057268222953 ], [ -94.893927892647582, 30.027888267950875 ], [ -94.893926893298357, 30.028447268715919 ], [ -94.893926893225625, 30.028501267932342 ], [ -94.893925892910019, 30.029105268635011 ], [ -94.893925893533662, 30.029244268830801 ], [ -94.893925893548456, 30.029277268294148 ], [ -94.893925892655616, 30.029378268863759 ], [ -94.893925892756229, 30.029412268530699 ], [ -94.893925893217229, 30.029461268537439 ], [ -94.893924893162819, 30.029781268448758 ], [ -94.893923893466933, 30.030888268522268 ], [ -94.893923892968843, 30.031258269189848 ], [ -94.893923892983025, 30.031291268629076 ], [ -94.893922893198791, 30.031471268980113 ], [ -94.893922893213357, 30.032111268945481 ], [ -94.893922893632933, 30.032325268746881 ], [ -94.893921893209281, 30.032432268752245 ], [ -94.893920893169138, 30.032709269593028 ], [ -94.89391989316249, 30.032776268766863 ], [ -94.893919893487791, 30.032890269153402 ], [ -94.893919893206984, 30.032920268862995 ], [ -94.893918893712183, 30.032993269254675 ], [ -94.893916893546617, 30.033303269580578 ], [ -94.893916892938407, 30.033407269711628 ], [ -94.893914893317557, 30.033535269538202 ], [ -94.893913892894204, 30.03363126909165 ], [ -94.893912893377973, 30.033748269278398 ], [ -94.893909893482316, 30.033919269725054 ], [ -94.893908893023337, 30.034048269572725 ], [ -94.893907893350587, 30.034075269719377 ], [ -94.893904893708083, 30.034160269136287 ], [ -94.893904893215208, 30.034188269326862 ], [ -94.893902893756803, 30.034252269815902 ], [ -94.89389789388072, 30.034448269192168 ], [ -94.893896893597997, 30.034513269719991 ], [ -94.893895893467231, 30.034546269246636 ], [ -94.893877893702083, 30.034951269791623 ], [ -94.893832893704612, 30.035462269760014 ], [ -94.893803893830693, 30.035809269923949 ], [ -94.893763892879718, 30.036209270313591 ], [ -94.893565893335179, 30.038177270285164 ], [ -94.893475893055211, 30.039083270163097 ], [ -94.893442893644263, 30.0393992705385 ], [ -94.89334789391819, 30.040347270874879 ], [ -94.893319893311144, 30.040624270798546 ], [ -94.893315893896172, 30.040663270950194 ], [ -94.893309893520126, 30.040707270515842 ], [ -94.893295893080307, 30.040839270521644 ], [ -94.893290893963155, 30.040884271095695 ], [ -94.893281893099982, 30.040953270572921 ], [ -94.893255893832929, 30.041162271168492 ], [ -94.893247893202513, 30.041232270715316 ], [ -94.893193893134907, 30.041330270875189 ], [ -94.893144893098452, 30.041466270693462 ], [ -94.893110893669686, 30.041588271245008 ], [ -94.893036893478168, 30.041760271395855 ], [ -94.892933893609907, 30.041935271245503 ], [ -94.892796893382766, 30.042132271490132 ], [ -94.892701893148967, 30.042254271383545 ], [ -94.892602893033441, 30.042365271334418 ], [ -94.892453893293521, 30.042511271653648 ], [ -94.892436893721623, 30.042522271413091 ], [ -94.892345893219741, 30.042587271004354 ], [ -94.892134893241234, 30.042762271610947 ], [ -94.891950893573537, 30.042887271431365 ], [ -94.891880893584656, 30.042935271187606 ], [ -94.891373892795585, 30.043220271139639 ], [ -94.891253893187994, 30.043289271447673 ], [ -94.891187892588135, 30.043340271878179 ], [ -94.891008892713401, 30.043448271923275 ], [ -94.890955893430444, 30.043478271178063 ], [ -94.890251892478474, 30.043878271939466 ], [ -94.890017893175994, 30.044012271792756 ], [ -94.890049892514753, 30.044057271925283 ], [ -94.890096892442457, 30.044125271436737 ], [ -94.890334892491865, 30.044464271796716 ], [ -94.890414892747472, 30.044578271334423 ], [ -94.890474893290389, 30.044668271851382 ], [ -94.890654892627325, 30.044940271724322 ], [ -94.890714892650436, 30.045031271388254 ], [ -94.891023892840494, 30.045479272233624 ], [ -94.891583893214573, 30.046375271807658 ], [ -94.891643892971857, 30.046454272196797 ], [ -94.891759892853443, 30.046412271898252 ], [ -94.891948893512762, 30.046348272007474 ], [ -94.892106893892731, 30.046316271971961 ], [ -94.892188893176524, 30.046313272246728 ], [ -94.892675893354081, 30.046315272128751 ], [ -94.893858894286893, 30.046319272169733 ], [ -94.894256893908178, 30.046319272394339 ], [ -94.894282894130413, 30.046319271545396 ], [ -94.894391894114648, 30.046320272091744 ], [ -94.89542489454098, 30.046320271842916 ], [ -94.895455894079333, 30.046322272214965 ], [ -94.895632894125967, 30.046322271552455 ], [ -94.895660894780036, 30.046322271961159 ], [ -94.896277894858073, 30.04632827193727 ], [ -94.896483895083151, 30.046331271750862 ], [ -94.896716894199841, 30.046330271659087 ], [ -94.897418894482371, 30.046329271668181 ], [ -94.897652894923411, 30.046329271834988 ], [ -94.897756894408033, 30.046328271862425 ], [ -94.898071894895125, 30.046327271418505 ], [ -94.898176894716812, 30.046327272063845 ], [ -94.898634895577629, 30.046323272072474 ], [ -94.899756895763858, 30.046316271694433 ], [ -94.900011895809612, 30.04631527193634 ], [ -94.90047089580564, 30.046313272194936 ], [ -94.900711895645557, 30.046313272056043 ], [ -94.901434896252255, 30.046314271982425 ], [ -94.901626895642536, 30.046315271578141 ], [ -94.901676895399376, 30.046315271901335 ], [ -94.90191189576926, 30.046315271682687 ], [ -94.902014896038509, 30.046315271537473 ], [ -94.90214889557015, 30.046315271547272 ], [ -94.903028896665305, 30.046315271626426 ], [ -94.903367896374618, 30.046315271240854 ], [ -94.90345689626335, 30.046315271942181 ], [ -94.903587896437429, 30.046317271540161 ], [ -94.903997896649329, 30.046327271285168 ], [ -94.904249896259856, 30.0463242718412 ], [ -94.90447089700659, 30.046323271729797 ], [ -94.904655896878609, 30.046320271341443 ], [ -94.905211896322854, 30.046315271906973 ], [ -94.905273896883955, 30.046315271905414 ], [ -94.905397896969802, 30.046315271785105 ], [ -94.905993897477302, 30.046314271953893 ], [ -94.906679897141572, 30.046314271600547 ], [ -94.907781897978651, 30.046314271596614 ], [ -94.908378897501137, 30.046314271046285 ], [ -94.90841189719427, 30.046314271170409 ], [ -94.908512897235795, 30.046316271421375 ], [ -94.908546897411014, 30.046317271475932 ], [ -94.908786897623514, 30.046322271614482 ], [ -94.908937897369086, 30.046324271009386 ], [ -94.910111897700489, 30.046346271753524 ], [ -94.910503898197305, 30.046354271191642 ], [ -94.910807898647306, 30.046360271256912 ], [ -94.911722898461875, 30.046381271560254 ], [ -94.912027898435724, 30.046388271479419 ], [ -94.912210899132106, 30.046388271762709 ], [ -94.912461898927077, 30.046389271506907 ], [ -94.912763899133964, 30.046392271621045 ], [ -94.912947899290401, 30.046393271703025 ], [ -94.913867899481474, 30.046389271116084 ], [ -94.914305899534639, 30.046386271408203 ], [ -94.914383899671577, 30.046386271638603 ], [ -94.916631900036847, 30.046377270997716 ], [ -94.917552900495053, 30.046374271272221 ], [ -94.917741899925915, 30.046373270964288 ], [ -94.918310900279707, 30.046372270963616 ], [ -94.918500900206809, 30.046372271282401 ], [ -94.919146900603877, 30.046357271337104 ], [ -94.91915890004293, 30.04635627087589 ], [ -94.921135900925535, 30.046350270843437 ], [ -94.92179590149054, 30.046349271448936 ], [ -94.922296900995363, 30.046347271277305 ], [ -94.922360901388842, 30.046346270634611 ], [ -94.923989901610753, 30.046341271147913 ], [ -94.924056901595137, 30.046340271319526 ], [ -94.924622901357694, 30.046340271129864 ], [ -94.925412901572287, 30.046338270638191 ], [ -94.927783902963483, 30.046334271110481 ], [ -94.928574902989411, 30.046333270790161 ], [ -94.930989903444811, 30.046321270869822 ], [ -94.935086904180892, 30.046303270263785 ], [ -94.93823790577629, 30.046292270792566 ], [ -94.940653905885398, 30.046284269990984 ], [ -94.941433906484747, 30.046282270471877 ], [ -94.943774906421865, 30.046278269841729 ], [ -94.94455590702934, 30.046277269940813 ], [ -94.947761907683244, 30.046238270445883 ], [ -94.948908907739266, 30.046225269758477 ], [ -94.949003908127892, 30.046224270280838 ], [ -94.953351908798211, 30.046201269666035 ], [ -94.957380910574315, 30.046191269604591 ], [ -94.960402911273675, 30.046184269225545 ], [ -94.960587911475201, 30.046184270091807 ], [ -94.972166914226079, 30.04616526939596 ], [ -94.976145914977522, 30.045961269103906 ], [ -94.977078915603428, 30.045912269131502 ], [ -94.978507915542139, 30.045839268915902 ], [ -94.979422915713144, 30.045809268817255 ], [ -94.979881916174321, 30.045801268742373 ], [ -94.980360916567037, 30.045794268876946 ], [ -94.980817916659888, 30.045794268519423 ], [ -94.981313916787073, 30.045794268519149 ], [ -94.981921916070675, 30.045794268616785 ], [ -94.985236916943819, 30.045794269015175 ], [ -94.985564917766652, 30.045794268971562 ], [ -94.986341918117645, 30.045798268835146 ], [ -94.987468918487806, 30.045804268700422 ], [ -94.988391918628849, 30.045809268276567 ], [ -94.990851918386866, 30.045801268597053 ], [ -94.990904919302508, 30.045801268413097 ], [ -94.991979918707614, 30.045802268658321 ], [ -94.992140918697615, 30.045802268508137 ], [ -94.992181919121194, 30.045802268255589 ], [ -94.992626919229011, 30.045802268825142 ], [ -94.992676919497399, 30.045803268890779 ], [ -94.992788919451129, 30.045803268107058 ], [ -94.993628919343848, 30.045805268171257 ], [ -94.99614992031529, 30.04581226867057 ], [ -94.996488920470469, 30.045813268380964 ], [ -94.996725920749569, 30.045813268550155 ], [ -94.996990920779069, 30.045814268508742 ], [ -94.997120920218705, 30.045814268641653 ], [ -94.99785892054058, 30.045816268352091 ], [ -94.998908921221926, 30.045819267827685 ], [ -94.998959920546639, 30.045819268056178 ], [ -95.000463921808276, 30.045820268254602 ], [ -95.001332921944595, 30.045821268051927 ], [ -95.002690921860633, 30.045815268205107 ], [ -95.002743921450573, 30.045814267662873 ], [ -95.003290922252333, 30.045809268512691 ], [ -95.004042922101618, 30.045803268418702 ], [ -95.004272922189529, 30.045801267942636 ], [ -95.006979923360831, 30.045819267543209 ], [ -95.007562923038392, 30.045823267879715 ], [ -95.008391923829748, 30.045820267813429 ], [ -95.008491923671812, 30.045819268317846 ], [ -95.008848923026164, 30.045818267490066 ], [ -95.008981923499036, 30.045817267495785 ], [ -95.009195923119606, 30.045816268271299 ], [ -95.009265923164634, 30.045816267429327 ], [ -95.009570924039139, 30.045815267577716 ], [ -95.011610923909203, 30.045807268134517 ], [ -95.01238092395478, 30.045805267975705 ], [ -95.012416924148965, 30.045805267524784 ], [ -95.013055924238401, 30.045809267488842 ], [ -95.013517924399196, 30.045828267659278 ], [ -95.014198924640155, 30.045879267357154 ], [ -95.014395924844436, 30.045896267620041 ], [ -95.014689924810853, 30.045923267443943 ], [ -95.015217924938085, 30.045993267652069 ], [ -95.015766925571697, 30.046082267731382 ], [ -95.01643392558428, 30.046206267828406 ], [ -95.016723925056752, 30.046261267293566 ], [ -95.017223925602025, 30.046371267283622 ], [ -95.017536926048564, 30.046447267625457 ], [ -95.017949925677584, 30.046562267938583 ], [ -95.018525925655965, 30.04679526809494 ], [ -95.020096926909218, 30.047459268234551 ], [ -95.020190926366539, 30.047499267505707 ], [ -95.020807926996468, 30.047753268242108 ], [ -95.021376926540427, 30.047965268031007 ], [ -95.021776926494155, 30.048108267499202 ], [ -95.021878926947721, 30.048145268144875 ], [ -95.021946926700849, 30.048171267822344 ], [ -95.022106927167115, 30.048225268370484 ], [ -95.02295992766183, 30.048511267665052 ], [ -95.023606927276745, 30.04870626798246 ], [ -95.023684927764705, 30.048728267782867 ], [ -95.024335927588979, 30.048913267556703 ], [ -95.024988928048927, 30.049080268102326 ], [ -95.025463928387182, 30.049195267893914 ], [ -95.025995927712259, 30.049313267697741 ], [ -95.026524927984326, 30.049418267622826 ], [ -95.027135928811973, 30.049525268201652 ], [ -95.027581928964821, 30.04958826777175 ], [ -95.027933928249425, 30.04963026792651 ], [ -95.028412929017549, 30.049666268294903 ], [ -95.028799928707571, 30.049672267763871 ], [ -95.029038929237629, 30.049670267694172 ], [ -95.029060928940225, 30.04966926771089 ], [ -95.029301929260939, 30.049660268314071 ], [ -95.0295819291822, 30.049642267579497 ], [ -95.029901929508739, 30.049609267726684 ], [ -95.030427929365842, 30.049538268022079 ], [ -95.030645929737346, 30.049500268350556 ], [ -95.030872929627876, 30.049461267703254 ], [ -95.031015929703031, 30.049426267778198 ], [ -95.031191928953064, 30.0493932677403 ], [ -95.031490929366612, 30.049320267801949 ], [ -95.031880929650512, 30.049201268161774 ], [ -95.032286930038694, 30.04906826738241 ], [ -95.032338930062082, 30.049049267971981 ], [ -95.032600930265659, 30.048956267699857 ], [ -95.032914930093199, 30.048830267834948 ], [ -95.033466930424694, 30.048565267400122 ], [ -95.033826929735653, 30.048359267729801 ], [ -95.034217930531966, 30.048120267065421 ], [ -95.034508929987638, 30.047928267853301 ], [ -95.035143930776428, 30.047497267096443 ], [ -95.036251930861141, 30.046717266991664 ], [ -95.036521930749799, 30.046528267423131 ], [ -95.037503930508322, 30.045847266953196 ], [ -95.037673930426934, 30.04572826705429 ], [ -95.038055931220939, 30.045464267052338 ], [ -95.038185931182696, 30.045373266737656 ], [ -95.038357930825853, 30.045256266593217 ], [ -95.03871393166159, 30.045010266477853 ], [ -95.039781931367145, 30.044273266133207 ], [ -95.040007931863215, 30.044118266300071 ], [ -95.040137931912739, 30.044026266711274 ], [ -95.040475931517022, 30.043785266736549 ], [ -95.040534932044523, 30.043744266745083 ], [ -95.041119931500006, 30.043348266355459 ], [ -95.041504931665983, 30.043083266529997 ], [ -95.04183893228776, 30.042854266424335 ], [ -95.041847931798202, 30.042848266116351 ], [ -95.044068932362208, 30.041310266179817 ], [ -95.044875932795321, 30.04078426551996 ], [ -95.046549932939001, 30.039721265296844 ], [ -95.046964933505791, 30.039480265609431 ], [ -95.047669933462828, 30.039110265028288 ], [ -95.048397933189463, 30.038769264712052 ], [ -95.048495933092397, 30.038731265049829 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 302, "Tract": "48291700600", "Area_SqMi": 123.9271589603987, "total_2009": 60, "total_2010": 149, "total_2011": 159, "total_2012": 356, "total_2013": 373, "total_2014": 340, "total_2015": 295, "total_2016": 299, "total_2017": 295, "total_2018": 171, "total_2019": 149, "total_2020": 167, "age1": 36, "age2": 101, "age3": 51, "earn1": 61, "earn2": 77, "earn3": 50, "naics_s01": 17, "naics_s02": 7, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 0, "naics_s07": 65, "naics_s08": 9, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 5, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 11, "naics_s17": 1, "naics_s18": 39, "naics_s19": 2, "naics_s20": 8, "race1": 169, "race2": 9, "race3": 1, "race4": 8, "race5": 0, "race6": 1, "ethnicity1": 155, "ethnicity2": 33, "edu1": 33, "edu2": 43, "edu3": 46, "edu4": 30, "Shape_Length": 317393.44119148509, "Shape_Area": 3454877088.3635616, "total_2021": 176, "total_2022": 188 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.878441909426797, 30.464960358124745 ], [ -94.878480909073346, 30.464300357450767 ], [ -94.878277909076488, 30.463729358222427 ], [ -94.878144908915516, 30.463412357297468 ], [ -94.877926909680525, 30.462899357837664 ], [ -94.877504909361548, 30.462492357613332 ], [ -94.877055909274617, 30.462060357180818 ], [ -94.875213907872734, 30.460561357272489 ], [ -94.867470905903616, 30.456422356379537 ], [ -94.865615905258451, 30.455535356532774 ], [ -94.863426904804911, 30.455260356647052 ], [ -94.863097904872134, 30.455266356814008 ], [ -94.856430903106883, 30.455393356461119 ], [ -94.855122902541382, 30.455232357149704 ], [ -94.853925902889515, 30.455085357102043 ], [ -94.851557901739397, 30.453808356955719 ], [ -94.849717901857687, 30.451942356091209 ], [ -94.84947190169521, 30.451439355973548 ], [ -94.84906690145344, 30.450611355990205 ], [ -94.848627900588667, 30.449625355729719 ], [ -94.848307901208443, 30.448094355739013 ], [ -94.848265901189563, 30.44671435567059 ], [ -94.848394901002777, 30.444973355018327 ], [ -94.848589901083002, 30.444051355220232 ], [ -94.848791900761725, 30.443103354361131 ], [ -94.849095900474936, 30.441980353985464 ], [ -94.850241901303022, 30.439667354055327 ], [ -94.85027090103452, 30.439417354058609 ], [ -94.850330901272784, 30.438889353888346 ], [ -94.8504259011345, 30.438457353655004 ], [ -94.850529901300192, 30.437984353129881 ], [ -94.850524901211003, 30.437832353708103 ], [ -94.850490900880587, 30.436726353029229 ], [ -94.850455900942777, 30.435621353509642 ], [ -94.850449900713116, 30.435446352847055 ], [ -94.850336901265024, 30.435305353240086 ], [ -94.850264900538164, 30.435203352701802 ], [ -94.85019290095957, 30.435101353053465 ], [ -94.849597900978438, 30.434302352403051 ], [ -94.847679900308023, 30.432311352520262 ], [ -94.847040900085801, 30.431320352627246 ], [ -94.847059900154676, 30.431220352615011 ], [ -94.847264899799697, 30.43011235217287 ], [ -94.847778899946846, 30.429576352327668 ], [ -94.84813790032193, 30.429202351460269 ], [ -94.848193900305645, 30.429151351404741 ], [ -94.850783900248956, 30.426844351444103 ], [ -94.851136900400078, 30.426264350709669 ], [ -94.85112890006755, 30.425668350998549 ], [ -94.850761900445349, 30.424858350907044 ], [ -94.850664899989539, 30.424816350926349 ], [ -94.850566900828383, 30.424774350839193 ], [ -94.849348900494235, 30.424249350926988 ], [ -94.845083899189135, 30.422574350217197 ], [ -94.842475898063626, 30.421362350251403 ], [ -94.838573897357847, 30.418568350351279 ], [ -94.836089896035816, 30.417018349531151 ], [ -94.833928895657706, 30.416119350049083 ], [ -94.833279895786774, 30.41584935003668 ], [ -94.830200895043262, 30.414747349793622 ], [ -94.825074893226386, 30.413873349315246 ], [ -94.823333892563383, 30.41341034941313 ], [ -94.823127892664701, 30.413356349047394 ], [ -94.82212789235345, 30.412597349436449 ], [ -94.821485892099972, 30.411581349486646 ], [ -94.821305892508391, 30.410559349314124 ], [ -94.82113589251189, 30.409626348814434 ], [ -94.821693892447442, 30.408889349094718 ], [ -94.822301892464594, 30.408087348238997 ], [ -94.8239568925367, 30.405340347924515 ], [ -94.824060892352776, 30.404108347323149 ], [ -94.82383989194642, 30.403230347261658 ], [ -94.823192892301236, 30.401973347370163 ], [ -94.822848891751946, 30.401665347087455 ], [ -94.821840891581346, 30.400763347097804 ], [ -94.818551890703034, 30.399004347161128 ], [ -94.816305890436539, 30.39792134646007 ], [ -94.814595889992617, 30.397035346694739 ], [ -94.810378889018907, 30.396500346294253 ], [ -94.807467887864291, 30.396183346863268 ], [ -94.806633888097593, 30.395538346580178 ], [ -94.806309887466028, 30.3942133457873 ], [ -94.806301887574406, 30.394180346316823 ], [ -94.806332887527276, 30.392943345901639 ], [ -94.806168887450212, 30.39093734579733 ], [ -94.80521588711494, 30.389333345446623 ], [ -94.804075886205041, 30.388512345466491 ], [ -94.803872886769113, 30.388366345065801 ], [ -94.80250388664831, 30.387381345156559 ], [ -94.80165188606459, 30.386800345071752 ], [ -94.801383885426844, 30.386083344511778 ], [ -94.801876885908072, 30.385262344953251 ], [ -94.802451886278192, 30.384859344449257 ], [ -94.803698886543714, 30.384553344131188 ], [ -94.80382588683851, 30.384522344174169 ], [ -94.80603288649246, 30.384557344270199 ], [ -94.808878887465397, 30.384745343815634 ], [ -94.809727887913326, 30.384988344132609 ], [ -94.811078888174677, 30.385374344073998 ], [ -94.812428888287656, 30.385760344164133 ], [ -94.813996888763214, 30.386208344348095 ], [ -94.815035888799727, 30.385878344431823 ], [ -94.815675889446524, 30.385468343791292 ], [ -94.815881889035509, 30.384823343774706 ], [ -94.815771889093327, 30.384090343872586 ], [ -94.815442889782489, 30.383607343508039 ], [ -94.815123888939453, 30.383139344042089 ], [ -94.814290888754712, 30.381962343472097 ], [ -94.813800888560181, 30.381059343017167 ], [ -94.813385888699202, 30.379986342813389 ], [ -94.81238888845715, 30.378392342944526 ], [ -94.811698888234304, 30.377529342537191 ], [ -94.810423887970984, 30.376577342802314 ], [ -94.807265886464663, 30.375209342548835 ], [ -94.805555886714089, 30.374915342488151 ], [ -94.803377885954575, 30.374755342447141 ], [ -94.801709885349837, 30.37459034239388 ], [ -94.80022888486009, 30.374227341973242 ], [ -94.797548884648037, 30.373374342102078 ], [ -94.795628883699919, 30.372625341906382 ], [ -94.794805883399974, 30.372304341675182 ], [ -94.79340788303719, 30.371220341588902 ], [ -94.793200883108668, 30.370880341470368 ], [ -94.79241888282651, 30.369594341428051 ], [ -94.792133882481721, 30.368789341378662 ], [ -94.791889882122518, 30.36810034100186 ], [ -94.791967882949322, 30.366962341156007 ], [ -94.79198088254482, 30.366775341355723 ], [ -94.791992882960841, 30.366589341133235 ], [ -94.792010882713626, 30.366333341088712 ], [ -94.792106882049239, 30.366040340554964 ], [ -94.79258588268344, 30.364585340673532 ], [ -94.792800882061968, 30.36386834074699 ], [ -94.793016882723165, 30.363150339893966 ], [ -94.792703882312367, 30.361194340177352 ], [ -94.791735882451164, 30.358853339662065 ], [ -94.791355881603309, 30.357050339168538 ], [ -94.791570882006582, 30.355081339133243 ], [ -94.792086881486142, 30.353111338566539 ], [ -94.792226881848379, 30.351645338171487 ], [ -94.79197588209604, 30.350771337753066 ], [ -94.791267881191246, 30.350201337960939 ], [ -94.789786880859936, 30.35002833775112 ], [ -94.789708881370927, 30.350026337330899 ], [ -94.788432880391582, 30.349987337659751 ], [ -94.786841880160949, 30.350525338203948 ], [ -94.78514887983637, 30.351078338540628 ], [ -94.783598879187906, 30.351261338470692 ], [ -94.78235887941625, 30.351026337864948 ], [ -94.781390878707413, 30.350478337900629 ], [ -94.781228878714288, 30.350236338517934 ], [ -94.780610878718065, 30.348879337767332 ], [ -94.779883878586205, 30.347278337694739 ], [ -94.779842878136478, 30.346372337723562 ], [ -94.779815878353119, 30.345783337533533 ], [ -94.780102877859392, 30.344768336689569 ], [ -94.780171878703541, 30.344526337278293 ], [ -94.780612878191192, 30.342091336625831 ], [ -94.781324878569919, 30.340441336113681 ], [ -94.781884878673409, 30.339137335378467 ], [ -94.78288787836199, 30.338349335200292 ], [ -94.783382879211217, 30.338109335889612 ], [ -94.784207878754714, 30.337708335042574 ], [ -94.785653879197881, 30.337710335631073 ], [ -94.786232879543491, 30.33794133573377 ], [ -94.786890880304981, 30.33820433587125 ], [ -94.787423880183908, 30.33856533548229 ], [ -94.788961880527751, 30.339607335603588 ], [ -94.789103880520102, 30.33970833589364 ], [ -94.790774880747421, 30.340896336030546 ], [ -94.792498881025367, 30.341312335639341 ], [ -94.793638881668386, 30.341410335956386 ], [ -94.794572881384326, 30.340355335938408 ], [ -94.794591881704889, 30.340219335973106 ], [ -94.794741881501793, 30.339132334898245 ], [ -94.793853881906401, 30.337488334841275 ], [ -94.791384880406738, 30.335467334801912 ], [ -94.791155880527796, 30.335179334334427 ], [ -94.790110880888477, 30.333859334361957 ], [ -94.788342879667439, 30.332716334579452 ], [ -94.785637879014459, 30.331431333986231 ], [ -94.783639878251748, 30.330082333702279 ], [ -94.78224387782582, 30.327878333496184 ], [ -94.781138877574762, 30.325254332609962 ], [ -94.78116887748979, 30.324107332646328 ], [ -94.781371877746665, 30.323203332897993 ], [ -94.781507877552158, 30.322600332812286 ], [ -94.78229587829918, 30.321870332033548 ], [ -94.784609878819921, 30.32114433227423 ], [ -94.787102878587319, 30.321089331963236 ], [ -94.788722879985286, 30.321215332036122 ], [ -94.789622880060477, 30.321285332310644 ], [ -94.790559880405581, 30.322019331778542 ], [ -94.790976880601107, 30.322519332115689 ], [ -94.791374880257365, 30.322997332527109 ], [ -94.791814879918476, 30.323963332752523 ], [ -94.792797881191376, 30.326056332923919 ], [ -94.79332488052502, 30.327094333301449 ], [ -94.794088880787967, 30.327623333298231 ], [ -94.795004881119624, 30.327831332676428 ], [ -94.795960882022669, 30.327620333290014 ], [ -94.796625881380692, 30.326988332466396 ], [ -94.796861881746963, 30.326508333032024 ], [ -94.797155881943155, 30.325909332711689 ], [ -94.797230882236462, 30.324860332438657 ], [ -94.796832881618514, 30.323816331888995 ], [ -94.796157881746751, 30.322729332284212 ], [ -94.79543288115498, 30.32113433178387 ], [ -94.795384880696389, 30.32094633183214 ], [ -94.794833880661699, 30.318804331227238 ], [ -94.794519880612341, 30.31749733097206 ], [ -94.794195880235307, 30.316149330688813 ], [ -94.794062880616906, 30.313458329899053 ], [ -94.794034880171438, 30.309992329574467 ], [ -94.794109879941189, 30.307387329060184 ], [ -94.793306879755477, 30.305503328400722 ], [ -94.792208879990056, 30.304050327864871 ], [ -94.790853879410989, 30.302353327678937 ], [ -94.790229879002808, 30.300838327888112 ], [ -94.790251879011251, 30.300369327987966 ], [ -94.790291879176792, 30.299511327518559 ], [ -94.790748878938544, 30.29888032728125 ], [ -94.791024879245697, 30.298316326818703 ], [ -94.791971879496685, 30.297115326519105 ], [ -94.793691879556661, 30.296392327044458 ], [ -94.796397879882676, 30.295509326651469 ], [ -94.796601880365671, 30.295464326543549 ], [ -94.798291880662404, 30.295094326169853 ], [ -94.798396880835611, 30.295071326177116 ], [ -94.799410880682018, 30.294821325940301 ], [ -94.799560881214163, 30.294710326376201 ], [ -94.800157880851529, 30.294269326233998 ], [ -94.801144881118447, 30.293091325917082 ], [ -94.801795881857544, 30.29199932513108 ], [ -94.803159882166199, 30.290487325493835 ], [ -94.803933881737549, 30.289803324987577 ], [ -94.804926881706976, 30.289292324683718 ], [ -94.805370881982398, 30.289063325040928 ], [ -94.806313882634498, 30.28849732427971 ], [ -94.806871882506854, 30.288069324705788 ], [ -94.807220882502889, 30.287801323993971 ], [ -94.807459882497582, 30.287085324347299 ], [ -94.807350882417452, 30.286084324065538 ], [ -94.806684882429508, 30.285127324238616 ], [ -94.805476882520196, 30.283395323714249 ], [ -94.803396881256177, 30.281754323497175 ], [ -94.803130881142948, 30.281544322847129 ], [ -94.801447880975701, 30.280373323422442 ], [ -94.800065880233902, 30.279774322959472 ], [ -94.798932879849431, 30.279185322815774 ], [ -94.79842188047931, 30.278584322989271 ], [ -94.798357879964826, 30.278470322622891 ], [ -94.798085879736519, 30.277985322413436 ], [ -94.798057879787549, 30.277688322312397 ], [ -94.798045879906198, 30.277557322411507 ], [ -94.797866879367959, 30.277507322296351 ], [ -94.79733087936053, 30.277358322985275 ], [ -94.79715287910841, 30.277309322549588 ], [ -94.797111879638308, 30.27729832258283 ], [ -94.796900879936729, 30.27723932246731 ], [ -94.796224879354256, 30.277054322743297 ], [ -94.796144879685627, 30.277032322335497 ], [ -94.796048879109762, 30.277006322887665 ], [ -94.795892879023725, 30.276964322340877 ], [ -94.795800879595262, 30.276939322267467 ], [ -94.795707879728141, 30.276914322493312 ], [ -94.79549987909671, 30.276857322838794 ], [ -94.794321878741016, 30.276539322701307 ], [ -94.793929878392717, 30.276433322763769 ], [ -94.792103878164696, 30.275936322683613 ], [ -94.791206878374538, 30.275676322773613 ], [ -94.790711878082973, 30.275509322293559 ], [ -94.790536877899299, 30.275450322241902 ], [ -94.78974587751074, 30.27513632227744 ], [ -94.788972877596166, 30.274802322426407 ], [ -94.788510877044899, 30.274581322477236 ], [ -94.788351877237375, 30.274497322638631 ], [ -94.787682876731154, 30.274141322670619 ], [ -94.786645876569224, 30.27351532244289 ], [ -94.785885876192495, 30.272994322003136 ], [ -94.785240875925467, 30.272498322205703 ], [ -94.784597876498722, 30.271964322216554 ], [ -94.784219876425553, 30.271626321642774 ], [ -94.784038875704681, 30.271441322219129 ], [ -94.783669876288144, 30.271090321832894 ], [ -94.783294875682472, 30.270683321374634 ], [ -94.782622875553329, 30.269908321408039 ], [ -94.782571875785962, 30.269847321632593 ], [ -94.782023875522086, 30.269191321962392 ], [ -94.781400875308393, 30.268463321549255 ], [ -94.780418875003861, 30.267284320954197 ], [ -94.779315874368606, 30.265979320874944 ], [ -94.777829874102707, 30.264221320649547 ], [ -94.777181874127152, 30.263437320450542 ], [ -94.776018873826686, 30.262056320524209 ], [ -94.774919872902288, 30.260750320194411 ], [ -94.774674872977371, 30.260455320265095 ], [ -94.774627873281304, 30.260398320266972 ], [ -94.773926872905179, 30.259582319998014 ], [ -94.773817872313572, 30.259456319802382 ], [ -94.773678872283298, 30.259291320030396 ], [ -94.773238872770108, 30.258769319542356 ], [ -94.771919872102941, 30.25720331936699 ], [ -94.771620872367009, 30.256848318963705 ], [ -94.771474872010444, 30.256686319194063 ], [ -94.7713978716383, 30.256602319549316 ], [ -94.771380872493168, 30.256584319227667 ], [ -94.77116687206059, 30.256354319149629 ], [ -94.771090872304484, 30.256272319430867 ], [ -94.770834872037526, 30.256031319598481 ], [ -94.770627871806425, 30.255837319021303 ], [ -94.770122871401043, 30.255378319011911 ], [ -94.770055871261775, 30.255321318936893 ], [ -94.769787871222675, 30.255095319485896 ], [ -94.769570871370249, 30.254921319182351 ], [ -94.769479871293171, 30.254848318814435 ], [ -94.768898871073873, 30.25442731925266 ], [ -94.768673870959319, 30.254264318582514 ], [ -94.768428871287085, 30.254085318455761 ], [ -94.76840087131832, 30.254067318627257 ], [ -94.768105870969919, 30.253883319145928 ], [ -94.767542871125485, 30.253539319227094 ], [ -94.767256870831645, 30.253364318569218 ], [ -94.766971871150929, 30.253211318664778 ], [ -94.766156870519112, 30.252773318563058 ], [ -94.766119870312068, 30.252754318519347 ], [ -94.76583287059205, 30.252607319078734 ], [ -94.763448870137566, 30.251400318623695 ], [ -94.761946868988971, 30.25064031867111 ], [ -94.76122486882403, 30.250263318729552 ], [ -94.760791868932273, 30.250036318281634 ], [ -94.759052868367377, 30.249152317874316 ], [ -94.756824867990829, 30.248006317760602 ], [ -94.756312867178067, 30.247757318407238 ], [ -94.756287868151702, 30.247745318443179 ], [ -94.75571586780066, 30.247505318168578 ], [ -94.755359867489304, 30.247375318074816 ], [ -94.754912866797952, 30.24722631816806 ], [ -94.754509866726593, 30.247118317802631 ], [ -94.754109866682541, 30.247028317978238 ], [ -94.753769867391711, 30.246970317745532 ], [ -94.752957866649538, 30.246864317553595 ], [ -94.752854866687585, 30.24685831818983 ], [ -94.752230866384153, 30.246825318371624 ], [ -94.750138866131621, 30.246849318045438 ], [ -94.75009186643446, 30.246850317809269 ], [ -94.749170866149925, 30.246877318263284 ], [ -94.747762865170827, 30.246897318171669 ], [ -94.745554865060228, 30.24692931801432 ], [ -94.743909864275238, 30.246966318101201 ], [ -94.74353886413688, 30.246970318522262 ], [ -94.742822863768424, 30.2469803181611 ], [ -94.742131863833464, 30.247001318344324 ], [ -94.739777863691515, 30.247045318690041 ], [ -94.735531862115906, 30.247125318474158 ], [ -94.733832862320369, 30.247149318437938 ], [ -94.732716861593801, 30.247184319117459 ], [ -94.732146861375938, 30.247202318455525 ], [ -94.730363861083774, 30.247243318466474 ], [ -94.729093860857247, 30.24728031932721 ], [ -94.726790860190519, 30.24734931942594 ], [ -94.725284859266552, 30.24738331943351 ], [ -94.724015859541367, 30.247413319366714 ], [ -94.723963858981051, 30.247414319113247 ], [ -94.723572859372354, 30.247422318893257 ], [ -94.722243858919612, 30.247451319014697 ], [ -94.721801858251794, 30.247462319544354 ], [ -94.721559858618519, 30.247467318994232 ], [ -94.721376858895937, 30.247471319643761 ], [ -94.720834858706525, 30.247489318786279 ], [ -94.720593858824174, 30.247498319165405 ], [ -94.719641858194819, 30.247532319267769 ], [ -94.718309858152509, 30.247561318895887 ], [ -94.717965858079054, 30.247569319318199 ], [ -94.717549858067471, 30.24755631902503 ], [ -94.716929857637822, 30.24750331899293 ], [ -94.716493857668766, 30.247450319628285 ], [ -94.714631856663999, 30.247176319401987 ], [ -94.71434085676421, 30.247133319594578 ], [ -94.713565856457109, 30.247047319423519 ], [ -94.712980856350512, 30.247019319205368 ], [ -94.712906856730086, 30.247018319789031 ], [ -94.712434856411321, 30.247014319313799 ], [ -94.711777856450155, 30.247035319622587 ], [ -94.711492856545249, 30.247038319444652 ], [ -94.709208855979426, 30.247065319183864 ], [ -94.708816855217052, 30.247069319356736 ], [ -94.708384854972891, 30.247074319122323 ], [ -94.707643854779704, 30.247083319714864 ], [ -94.707252855285972, 30.247088319450587 ], [ -94.705563854694319, 30.247114320112061 ], [ -94.701880853233533, 30.247173320121249 ], [ -94.700499853141991, 30.24718332011026 ], [ -94.700210852733036, 30.247186319991414 ], [ -94.698811852632261, 30.247211319955955 ], [ -94.698233852232619, 30.247217320001447 ], [ -94.696984852695337, 30.247230319627079 ], [ -94.69649985239721, 30.247241319914714 ], [ -94.695922852198308, 30.247255319967909 ], [ -94.695840852005688, 30.247256320267667 ], [ -94.695598851888761, 30.247262320204747 ], [ -94.695517852125647, 30.247264319971023 ], [ -94.695449851513317, 30.247264319681523 ], [ -94.695246852317965, 30.247266320325881 ], [ -94.695179852344381, 30.247268319749573 ], [ -94.695080851682192, 30.247269320368016 ], [ -94.694890852077819, 30.247271319969073 ], [ -94.694786851613685, 30.247273320460216 ], [ -94.694689851803361, 30.247276320129671 ], [ -94.693067851519601, 30.247320320345519 ], [ -94.692065850893229, 30.247367320561171 ], [ -94.691482851108418, 30.247426319904051 ], [ -94.690246850382053, 30.247598320579296 ], [ -94.68837084979144, 30.247891319984305 ], [ -94.684786849643032, 30.248481320395644 ], [ -94.683031848785888, 30.248778320983625 ], [ -94.681231848766728, 30.24905532071644 ], [ -94.680061848290862, 30.249245320866351 ], [ -94.677839847638012, 30.249608321547289 ], [ -94.676018847376611, 30.24989532127038 ], [ -94.675465846428537, 30.249994320857134 ], [ -94.673241846741718, 30.250336321214306 ], [ -94.669704845863293, 30.250900321401321 ], [ -94.669102845522431, 30.251004321659096 ], [ -94.668025845247953, 30.251192321753727 ], [ -94.667244845183475, 30.251312321464379 ], [ -94.665276844662387, 30.251616322403763 ], [ -94.663883844239308, 30.251837322128747 ], [ -94.662526844009591, 30.252054321948282 ], [ -94.661663843425146, 30.252187322555194 ], [ -94.66115884349199, 30.252265321888181 ], [ -94.659804843111004, 30.252487322707214 ], [ -94.659141842683852, 30.25259532201045 ], [ -94.657154842630149, 30.252921322173762 ], [ -94.656492842274105, 30.253030322989662 ], [ -94.655745842027002, 30.253149322515952 ], [ -94.654713841946247, 30.253314322758595 ], [ -94.653760841261786, 30.253439322867017 ], [ -94.653498841583456, 30.253458323152113 ], [ -94.653295841595877, 30.253473322990125 ], [ -94.652743841437385, 30.253494323064199 ], [ -94.652451840969221, 30.253494323171815 ], [ -94.652062841108702, 30.25349432288829 ], [ -94.651576841192067, 30.253468322775653 ], [ -94.65128584115358, 30.253453322754847 ], [ -94.650483840481698, 30.253386322579303 ], [ -94.649152840224474, 30.253275323339704 ], [ -94.64807783999116, 30.253195323116145 ], [ -94.647946839722323, 30.253186322858681 ], [ -94.647512839647348, 30.25314832273358 ], [ -94.647276840082924, 30.253135322936529 ], [ -94.647293840211702, 30.253181323345796 ], [ -94.647901839901877, 30.254874323382165 ], [ -94.64972784045095, 30.259954324380743 ], [ -94.65033684112997, 30.261646324443301 ], [ -94.650392841090522, 30.261799324594794 ], [ -94.650458841408081, 30.261981324497473 ], [ -94.6505508412029, 30.262259324282468 ], [ -94.650601840770122, 30.262413324545562 ], [ -94.650614840875406, 30.262443324798625 ], [ -94.650634841257187, 30.262488324631121 ], [ -94.650655840765182, 30.262534324416553 ], [ -94.650668841135371, 30.262563324485686 ], [ -94.650697841182534, 30.2626433244479 ], [ -94.650936841650534, 30.26331132481063 ], [ -94.651656841372642, 30.265314325232747 ], [ -94.651896841459006, 30.265981325013286 ], [ -94.651905841629599, 30.266007325176794 ], [ -94.652641841618404, 30.268049325889056 ], [ -94.654875843205133, 30.274254326862916 ], [ -94.655620843285135, 30.276321327659332 ], [ -94.656186842712813, 30.277909328080792 ], [ -94.657883844049636, 30.282672328644239 ], [ -94.658397843592695, 30.284116328759602 ], [ -94.658449844169851, 30.284259328928925 ], [ -94.658685843923607, 30.28492132912795 ], [ -94.659566844226148, 30.287395329355402 ], [ -94.662920845364766, 30.296802331111365 ], [ -94.664006846582851, 30.299831331525834 ], [ -94.664408846445284, 30.300965332197151 ], [ -94.664759846240457, 30.301951331888993 ], [ -94.66560184732694, 30.304373332459328 ], [ -94.665841846754063, 30.305067333091738 ], [ -94.66599684685319, 30.305509332927755 ], [ -94.666355847315145, 30.306541332937012 ], [ -94.66743284744642, 30.30963633358175 ], [ -94.667792847687508, 30.310665334214715 ], [ -94.66779884760021, 30.310682333943717 ], [ -94.669167848432068, 30.314450334773365 ], [ -94.673291850233312, 30.325801336951354 ], [ -94.6746658508861, 30.329584338064514 ], [ -94.674790850155119, 30.32988533783918 ], [ -94.675111850724619, 30.330659338097874 ], [ -94.675164850219304, 30.330785337918002 ], [ -94.675291850300695, 30.331083337555473 ], [ -94.675290850683382, 30.33111033830928 ], [ -94.675286850867835, 30.331189337941183 ], [ -94.675286850209432, 30.331214337964354 ], [ -94.675285851008454, 30.331266337871007 ], [ -94.675308850937526, 30.331327338400573 ], [ -94.675427850451129, 30.331652337733225 ], [ -94.675467850424354, 30.33176033819457 ], [ -94.675487850462162, 30.331814337968112 ], [ -94.675546850592056, 30.331972337984766 ], [ -94.675565850675241, 30.332025338000307 ], [ -94.675870851202674, 30.332855338186 ], [ -94.677981851862228, 30.338681339114412 ], [ -94.68521885415845, 30.358652342879914 ], [ -94.687630855630545, 30.365308344850895 ], [ -94.68765885523807, 30.365389344527522 ], [ -94.688424855911393, 30.367552344890612 ], [ -94.690805856478335, 30.374280345757459 ], [ -94.691124857255957, 30.375181346024149 ], [ -94.691607857316185, 30.376520346311704 ], [ -94.692649857611983, 30.379397346998498 ], [ -94.695774858861981, 30.388033349278427 ], [ -94.696818858978702, 30.390912349578542 ], [ -94.697387859092643, 30.392488350106014 ], [ -94.699098859734505, 30.397219350916959 ], [ -94.699670860230654, 30.398795351082111 ], [ -94.699679860296328, 30.398821351120201 ], [ -94.700867860555491, 30.402105351715299 ], [ -94.704461862360645, 30.412035353465452 ], [ -94.705659862965177, 30.41534435386319 ], [ -94.705682862773841, 30.415406353828235 ], [ -94.705748862775764, 30.415588354379462 ], [ -94.705770862301293, 30.415648353869312 ], [ -94.705805862647381, 30.415746353942119 ], [ -94.70591186262368, 30.416036353889801 ], [ -94.705946862928428, 30.416133353801033 ], [ -94.705957862369971, 30.416165354153279 ], [ -94.705991862737662, 30.416258354317648 ], [ -94.706002862622682, 30.416288354484379 ], [ -94.706695862660425, 30.418204354672884 ], [ -94.708774864099638, 30.423951356083926 ], [ -94.709467863892556, 30.425867355953471 ], [ -94.710477864595148, 30.42865535660659 ], [ -94.713509865373624, 30.437020357918765 ], [ -94.713729865737903, 30.437628358607856 ], [ -94.714515865999161, 30.439809358719074 ], [ -94.714520866331469, 30.439820358701006 ], [ -94.714771865764135, 30.440518359278791 ], [ -94.715539866634444, 30.442645359543022 ], [ -94.715754866005085, 30.443238359637167 ], [ -94.715795866049902, 30.443354359415505 ], [ -94.71606586625002, 30.444107359723986 ], [ -94.716875866770707, 30.446366360384861 ], [ -94.717145867264534, 30.447119360527598 ], [ -94.717153866974087, 30.447141359841609 ], [ -94.718127867703629, 30.449824361017871 ], [ -94.718430867839572, 30.450658361279768 ], [ -94.721076868596114, 30.457936362108658 ], [ -94.722048868940362, 30.460609362778435 ], [ -94.722058868737193, 30.460639362371818 ], [ -94.722126868949346, 30.46083836306353 ], [ -94.722332869066875, 30.461436363230664 ], [ -94.72240186910264, 30.461634362802894 ], [ -94.722407869330297, 30.461649362694928 ], [ -94.722441869290421, 30.461737362540987 ], [ -94.722561868927443, 30.462041363068209 ], [ -94.722601869526883, 30.462142362603096 ], [ -94.722693868644015, 30.462394362651388 ], [ -94.722965869379792, 30.463147363434967 ], [ -94.723056869589882, 30.463398362914866 ], [ -94.72307386948026, 30.463445363354101 ], [ -94.723102869227148, 30.463522363451851 ], [ -94.72320886878326, 30.463814363454482 ], [ -94.723467869162818, 30.464532363270564 ], [ -94.7236588697494, 30.465059363511109 ], [ -94.723808869793515, 30.465472363406498 ], [ -94.724009869553868, 30.466029363924253 ], [ -94.724609869869411, 30.46769236427938 ], [ -94.72481086958426, 30.468246364317352 ], [ -94.725070870406554, 30.468961364077561 ], [ -94.725851870492249, 30.471103365160307 ], [ -94.726111870252126, 30.471816364881253 ], [ -94.726173869913808, 30.471988365169441 ], [ -94.726359870228208, 30.472500364623844 ], [ -94.726421870742456, 30.472670364614867 ], [ -94.726474870533892, 30.472816365070059 ], [ -94.726631870712708, 30.473251365006899 ], [ -94.726683870251094, 30.47339636517459 ], [ -94.72669987107723, 30.473443364772653 ], [ -94.726746870631473, 30.473581365000079 ], [ -94.726937870694201, 30.474136365164572 ], [ -94.726959870759345, 30.474199365191364 ], [ -94.727000870400374, 30.474320365593549 ], [ -94.727061871152145, 30.474479365231478 ], [ -94.727245870676398, 30.47495636565484 ], [ -94.727284871206166, 30.475057365478719 ], [ -94.727306870637122, 30.475116365142984 ], [ -94.727364870780846, 30.475288365117155 ], [ -94.727543871059311, 30.475802365871747 ], [ -94.72759687049026, 30.475953365845079 ], [ -94.727603871169222, 30.475973365729743 ], [ -94.727665871096605, 30.476136366085001 ], [ -94.727851871570522, 30.476622365801251 ], [ -94.727913870724848, 30.47678436587994 ], [ -94.727937870645249, 30.476847365748064 ], [ -94.727979870731431, 30.476962366242393 ], [ -94.728170870942279, 30.477489366159329 ], [ -94.72822987153144, 30.477650365792524 ], [ -94.728235870942598, 30.477666366184266 ], [ -94.728294871762387, 30.477829365894028 ], [ -94.728472871579626, 30.478320365747965 ], [ -94.72853187157709, 30.478484366211905 ], [ -94.728540871379536, 30.478508366334999 ], [ -94.728590870973093, 30.478662366531321 ], [ -94.728769871210531, 30.47919436635777 ], [ -94.728828871403536, 30.479370366391986 ], [ -94.728834871479265, 30.479383366583228 ], [ -94.728896871740176, 30.479543366703989 ], [ -94.729098871822643, 30.48006336631931 ], [ -94.729151871233455, 30.480198366095216 ], [ -94.729166871503878, 30.480235366327236 ], [ -94.729227871485492, 30.480401366478816 ], [ -94.729411872052751, 30.480901366832313 ], [ -94.729460871685419, 30.481036366206908 ], [ -94.729471871873955, 30.481066366679563 ], [ -94.729526871373267, 30.481232366278153 ], [ -94.729690871440226, 30.481728366514641 ], [ -94.72973987147094, 30.481870367019955 ], [ -94.729747871927287, 30.481893366919088 ], [ -94.729815871418566, 30.482068366532111 ], [ -94.73001687200572, 30.482593366763194 ], [ -94.730073871898014, 30.482740366797742 ], [ -94.730084871903031, 30.482769367121104 ], [ -94.730148872368304, 30.482945367260974 ], [ -94.730344872218282, 30.483474367541962 ], [ -94.730392872066332, 30.483602366801303 ], [ -94.730409871943721, 30.483650367486774 ], [ -94.730467871806169, 30.483809367045758 ], [ -94.730640871959267, 30.484286367244522 ], [ -94.730697872542734, 30.484444367460309 ], [ -94.73072387255678, 30.484516367057822 ], [ -94.730768872422658, 30.484643367716444 ], [ -94.730983872613066, 30.485240367278642 ], [ -94.731044872825763, 30.485407367868564 ], [ -94.731056872455483, 30.485439367342405 ], [ -94.731123872804687, 30.485623367219841 ], [ -94.731322872170637, 30.486173367175311 ], [ -94.731390872317945, 30.486356367698658 ], [ -94.731396872829521, 30.486374367990546 ], [ -94.731447872113961, 30.486514367334237 ], [ -94.731619872405162, 30.486987367799859 ], [ -94.731672872841997, 30.487130368160283 ], [ -94.731676872875553, 30.487145368189797 ], [ -94.731734872619256, 30.487306367803715 ], [ -94.731906872287226, 30.487786367981791 ], [ -94.731964872725598, 30.487947368346255 ], [ -94.731996872508361, 30.488034367576873 ], [ -94.73203087253836, 30.488127368080534 ], [ -94.732228873244381, 30.48866536778468 ], [ -94.732281873184391, 30.48884436779792 ], [ -94.732303872448568, 30.488869367874301 ], [ -94.732326872862657, 30.488935368353129 ], [ -94.732425873284726, 30.489210368206987 ], [ -94.732458872923132, 30.489300368327886 ], [ -94.732471872773544, 30.489339367982009 ], [ -94.732514872738975, 30.489455367894511 ], [ -94.73268287302794, 30.489918368077678 ], [ -94.732738873378295, 30.490071368297368 ], [ -94.734815873292064, 30.490033368085111 ], [ -94.741046874920656, 30.489923367671345 ], [ -94.743123875421617, 30.489886368103004 ], [ -94.743206875961533, 30.489885368114589 ], [ -94.745182876407469, 30.489831367716043 ], [ -94.750211877315877, 30.489694367743851 ], [ -94.751361877538159, 30.489663367721256 ], [ -94.751816877564139, 30.489652367613473 ], [ -94.752633877901317, 30.489629367104296 ], [ -94.753421878288975, 30.489608367326383 ], [ -94.754933878807464, 30.489537367139761 ], [ -94.759489879445155, 30.489450367564565 ], [ -94.761007880083795, 30.489411367604973 ], [ -94.762122881045045, 30.489433367072806 ], [ -94.769089882114642, 30.489239367005641 ], [ -94.76929888196581, 30.489233366705374 ], [ -94.769514882053144, 30.489227367056234 ], [ -94.769927882121507, 30.489216367034278 ], [ -94.769938882297595, 30.489216366977018 ], [ -94.769954882948298, 30.489215366535682 ], [ -94.769965882083511, 30.489215366443599 ], [ -94.770137882394664, 30.489209366964481 ], [ -94.770251883135799, 30.489207366855844 ], [ -94.770475882883048, 30.489200367198254 ], [ -94.771492883378258, 30.489171366446683 ], [ -94.771831882926818, 30.489162366611502 ], [ -94.771982882967819, 30.489158366832115 ], [ -94.772542883381163, 30.489142367145405 ], [ -94.773160883740204, 30.489125367171546 ], [ -94.773779883295617, 30.489107366738633 ], [ -94.77397188332354, 30.489102366739765 ], [ -94.774298883892641, 30.489048366882159 ], [ -94.774405883986702, 30.489045367009229 ], [ -94.775280884294148, 30.489021366651826 ], [ -94.77530988381001, 30.489021366305991 ], [ -94.775396884401502, 30.489021366197559 ], [ -94.775426884377154, 30.489021366451286 ], [ -94.77570888376701, 30.489022366732172 ], [ -94.775931883669827, 30.489023366781424 ], [ -94.776436884018594, 30.489024366119402 ], [ -94.776556883924755, 30.489024366170074 ], [ -94.776822884854653, 30.489025366277236 ], [ -94.776839884759596, 30.489025366540591 ], [ -94.776940883879035, 30.489021366410665 ], [ -94.777245884165609, 30.489010366892444 ], [ -94.777347884768147, 30.489007366237846 ], [ -94.777762884291647, 30.489041366864804 ], [ -94.77795988482292, 30.489056366753825 ], [ -94.778176884652396, 30.489074366508039 ], [ -94.779108885431356, 30.489150366126825 ], [ -94.779797884736823, 30.489205366303022 ], [ -94.78003988472463, 30.489225366729947 ], [ -94.780224885197555, 30.489240366307239 ], [ -94.780410885146608, 30.489255366185965 ], [ -94.780569885444322, 30.48926036625209 ], [ -94.781046885365782, 30.489276366233383 ], [ -94.781174885212778, 30.489281365998849 ], [ -94.781205885718521, 30.489283366526987 ], [ -94.781460885091491, 30.48930136625658 ], [ -94.782228886133609, 30.489356366150336 ], [ -94.782484886287179, 30.489375366359916 ], [ -94.782781885724091, 30.489396366349329 ], [ -94.783672885741495, 30.489461366109868 ], [ -94.783929885742239, 30.489480366814202 ], [ -94.783970886070094, 30.489483366788292 ], [ -94.78680888720227, 30.489687366678332 ], [ -94.788753887389277, 30.489828366232029 ], [ -94.79532488924923, 30.490287365942471 ], [ -94.795383888678515, 30.490291366241799 ], [ -94.798069890286641, 30.490479365873615 ], [ -94.798163889988828, 30.490486366076169 ], [ -94.798758890037334, 30.490527365941755 ], [ -94.800545890677057, 30.490652365980861 ], [ -94.801141890859398, 30.490694365669206 ], [ -94.801429890614642, 30.490714365726028 ], [ -94.80229389145417, 30.490774365848065 ], [ -94.80258189073659, 30.490795366155822 ], [ -94.803246891671506, 30.49084036582077 ], [ -94.80524889201638, 30.49097836583293 ], [ -94.805917892083116, 30.491025365584473 ], [ -94.806181892048727, 30.491042366012294 ], [ -94.807783892321893, 30.491153365507095 ], [ -94.808108892484512, 30.491176365910469 ], [ -94.814686893947297, 30.491640365397199 ], [ -94.816879894741774, 30.491796365931009 ], [ -94.816990894546052, 30.491803365306684 ], [ -94.817010894846248, 30.491805365977413 ], [ -94.817325895023387, 30.491827365393117 ], [ -94.817437895045941, 30.491836365656724 ], [ -94.818989894979865, 30.491926365794264 ], [ -94.819517895615675, 30.491957365217395 ], [ -94.819754895934196, 30.491971365558609 ], [ -94.820616895927245, 30.492021366057347 ], [ -94.821085895638191, 30.492049365573688 ], [ -94.821235896423644, 30.492058365765601 ], [ -94.822968896055002, 30.492157365269961 ], [ -94.823870896705898, 30.492212365232067 ], [ -94.82397589641208, 30.492198365884764 ], [ -94.828006898219442, 30.492351365636218 ], [ -94.828029897766086, 30.492352365279057 ], [ -94.828098897412431, 30.492355365117632 ], [ -94.828122897453895, 30.492356364978878 ], [ -94.828469897743986, 30.492371364978098 ], [ -94.828510897960967, 30.49237236574325 ], [ -94.828816897543049, 30.492387364990655 ], [ -94.829518897731049, 30.492418365801147 ], [ -94.829674897876501, 30.49242436496726 ], [ -94.829790897659279, 30.492430365617022 ], [ -94.830063898145838, 30.49244236510463 ], [ -94.83013589831738, 30.492445365430608 ], [ -94.830290898471546, 30.492452365504533 ], [ -94.830354898332061, 30.492454364963574 ], [ -94.830427898473985, 30.492458365354977 ], [ -94.830676897939583, 30.492469365020984 ], [ -94.83069189817661, 30.492469365318144 ], [ -94.831410898831251, 30.492501365101649 ], [ -94.831483898538238, 30.492504364886344 ], [ -94.831529898169748, 30.492507365723561 ], [ -94.83168489847796, 30.492514365098724 ], [ -94.831700898688069, 30.492515365495088 ], [ -94.831748898844126, 30.492517365735655 ], [ -94.831792898605414, 30.492516365120881 ], [ -94.834826899219962, 30.492639365077572 ], [ -94.835722899543811, 30.492676365402001 ], [ -94.83843490054501, 30.492787364687313 ], [ -94.841475900753935, 30.492911364669126 ], [ -94.843168901640013, 30.493048365055195 ], [ -94.844062902199042, 30.493121365251827 ], [ -94.844506901585888, 30.493157364592886 ], [ -94.847138902872416, 30.493372365328444 ], [ -94.847593902297504, 30.49340836523163 ], [ -94.847798903047419, 30.493425365241713 ], [ -94.848609902771528, 30.493491365027719 ], [ -94.848962903088491, 30.493519365081578 ], [ -94.849042903700948, 30.493526364893356 ], [ -94.849230902804678, 30.493542365177724 ], [ -94.849420903014604, 30.493558364451399 ], [ -94.848034903266694, 30.492742364986196 ], [ -94.84772890321392, 30.492562364501715 ], [ -94.845261902189321, 30.490411364460989 ], [ -94.844461902312844, 30.489521363817307 ], [ -94.843386901696221, 30.488326364352254 ], [ -94.843232901931145, 30.488155364468252 ], [ -94.843081901784402, 30.487987363847992 ], [ -94.842777900985482, 30.487636364195193 ], [ -94.842627901753744, 30.487463363922888 ], [ -94.842625901685011, 30.487404363466467 ], [ -94.84262390158159, 30.487345363909597 ], [ -94.842614900729046, 30.487072363918678 ], [ -94.842605900965864, 30.486799363921566 ], [ -94.842596900873033, 30.486517363697871 ], [ -94.842987901604744, 30.485615363516906 ], [ -94.843990901720161, 30.484923363337685 ], [ -94.845506902020247, 30.484358363562627 ], [ -94.845977902433589, 30.484182363151188 ], [ -94.84644890217686, 30.484006362916141 ], [ -94.846748902286876, 30.483894362616834 ], [ -94.850063902941983, 30.482591362698727 ], [ -94.85277590381699, 30.480804362286658 ], [ -94.85522690460887, 30.479106361803382 ], [ -94.856062904245221, 30.478271361441461 ], [ -94.856509904263575, 30.477826360994893 ], [ -94.859632904991713, 30.472560360495564 ], [ -94.859856904585499, 30.472286359726432 ], [ -94.860543904866333, 30.471449360099079 ], [ -94.860691905297955, 30.471381359956332 ], [ -94.861298905622576, 30.471102360008455 ], [ -94.861906905895495, 30.470823360076558 ], [ -94.862279906028249, 30.47065236015403 ], [ -94.862957905623489, 30.470729359474916 ], [ -94.863439905902695, 30.470785359455274 ], [ -94.86361690619465, 30.470805359688924 ], [ -94.863793905515806, 30.47082535965842 ], [ -94.863903906384593, 30.470838360159402 ], [ -94.863977905778128, 30.470885359982137 ], [ -94.864746905905761, 30.471378359646327 ], [ -94.865697906139332, 30.472063359681112 ], [ -94.867890907324309, 30.473643360450275 ], [ -94.869812908059089, 30.47419236009269 ], [ -94.870532908046215, 30.474073360323576 ], [ -94.871464908438469, 30.473919360235037 ], [ -94.8723559079598, 30.473516360055267 ], [ -94.873720908467973, 30.472003359924429 ], [ -94.874631909095683, 30.470183359225615 ], [ -94.875214909066543, 30.469223358735597 ], [ -94.875902908942834, 30.468853358604136 ], [ -94.876942909136318, 30.46795335853929 ], [ -94.877094909131714, 30.467782359081781 ], [ -94.87780790940306, 30.466980358780624 ], [ -94.878328909046431, 30.465983358227216 ], [ -94.878441909426797, 30.464960358124745 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 303, "Tract": "48291701400", "Area_SqMi": 193.4537998068576, "total_2009": 2457, "total_2010": 2400, "total_2011": 2425, "total_2012": 2290, "total_2013": 2384, "total_2014": 2696, "total_2015": 2456, "total_2016": 2518, "total_2017": 2382, "total_2018": 2178, "total_2019": 2230, "total_2020": 1871, "age1": 416, "age2": 957, "age3": 531, "earn1": 354, "earn2": 704, "earn3": 846, "naics_s01": 36, "naics_s02": 89, "naics_s03": 26, "naics_s04": 210, "naics_s05": 137, "naics_s06": 55, "naics_s07": 559, "naics_s08": 192, "naics_s09": 16, "naics_s10": 72, "naics_s11": 11, "naics_s12": 30, "naics_s13": 0, "naics_s14": 8, "naics_s15": 66, "naics_s16": 46, "naics_s17": 15, "naics_s18": 147, "naics_s19": 74, "naics_s20": 115, "race1": 1550, "race2": 253, "race3": 12, "race4": 69, "race5": 0, "race6": 20, "ethnicity1": 1476, "ethnicity2": 428, "edu1": 327, "edu2": 465, "edu3": 448, "edu4": 248, "Shape_Length": 364477.3947831401, "Shape_Area": 5393160839.1277637, "total_2021": 1986, "total_2022": 1904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.795955869304336, 30.063270279250162 ], [ -94.79595586898067, 30.063077279238342 ], [ -94.795949869273016, 30.062860278542139 ], [ -94.795941869684739, 30.062507278317831 ], [ -94.795924869773927, 30.062212278279382 ], [ -94.795913869200419, 30.061996278363274 ], [ -94.795910869699355, 30.061778278225759 ], [ -94.795902869074169, 30.06112727798676 ], [ -94.795900869139487, 30.060910278574045 ], [ -94.795896869415628, 30.0606992783915 ], [ -94.79588786894449, 30.060069278329035 ], [ -94.795885869209414, 30.059859278577409 ], [ -94.79588086897968, 30.059647278384414 ], [ -94.795867869363761, 30.059012278234281 ], [ -94.795863868746579, 30.058801277869037 ], [ -94.79585786960817, 30.058585277950648 ], [ -94.795852869226181, 30.058390277804833 ], [ -94.795847868715853, 30.057940277957531 ], [ -94.795846868679078, 30.057725277507402 ], [ -94.795844869578843, 30.057673277450753 ], [ -94.795838869143836, 30.057517278078731 ], [ -94.795837869571756, 30.057466277913878 ], [ -94.795836869449062, 30.057449278057749 ], [ -94.795834868955339, 30.057401277937036 ], [ -94.795834869389381, 30.057385278008955 ], [ -94.79583186934876, 30.057224277490747 ], [ -94.795823869075036, 30.056744277130267 ], [ -94.79582186958109, 30.0565842774039 ], [ -94.795577868594876, 30.056583277789258 ], [ -94.794846869089341, 30.056580277897545 ], [ -94.794603868620626, 30.056580277352861 ], [ -94.794361868647812, 30.056581277210267 ], [ -94.793634868471642, 30.056586277610187 ], [ -94.793393868924213, 30.056588277473441 ], [ -94.793014867892992, 30.056597277850774 ], [ -94.792999868447822, 30.05659727769957 ], [ -94.791817867901187, 30.056620277818023 ], [ -94.791424868287109, 30.056628277472672 ], [ -94.790837868035851, 30.056684277624484 ], [ -94.790646868200099, 30.056703278028586 ], [ -94.790313867458153, 30.056752278086705 ], [ -94.789953867050002, 30.056816277982794 ], [ -94.789618867655776, 30.056892277551189 ], [ -94.789326867489507, 30.056967277411488 ], [ -94.789108866960731, 30.057039277448215 ], [ -94.788549867336826, 30.057227278310254 ], [ -94.788314867560899, 30.057312278071958 ], [ -94.788297866719844, 30.057318278309271 ], [ -94.78755586713676, 30.057623278399831 ], [ -94.787308866507061, 30.057726278036988 ], [ -94.787280866603552, 30.057734277739808 ], [ -94.787199867105642, 30.057760278334868 ], [ -94.787172866694789, 30.057770278202099 ], [ -94.786400866908778, 30.058018278395707 ], [ -94.786330866494225, 30.058035278289854 ], [ -94.785965867119586, 30.058130277706656 ], [ -94.785434866859305, 30.05823127847869 ], [ -94.784729866746389, 30.0583312780401 ], [ -94.783718865716949, 30.058439277838438 ], [ -94.783166865603746, 30.058499278704126 ], [ -94.782840865712885, 30.058521278208797 ], [ -94.782849866128942, 30.058257278099596 ], [ -94.782879866182384, 30.057465277842923 ], [ -94.782889865794004, 30.057202277619727 ], [ -94.782901865683868, 30.056929278300203 ], [ -94.782922865782112, 30.056499277606001 ], [ -94.782928865832503, 30.056110277613755 ], [ -94.782929865863579, 30.056076277823873 ], [ -94.782895865396824, 30.055840277671724 ], [ -94.782887866134615, 30.055778277996609 ], [ -94.782878865802189, 30.055698278030917 ], [ -94.782856865985707, 30.055595277450266 ], [ -94.782843866040167, 30.055535277461217 ], [ -94.782825865853212, 30.055463277613867 ], [ -94.782772866073472, 30.055253277408262 ], [ -94.782670865436344, 30.054969277968908 ], [ -94.782561865470058, 30.054728277936093 ], [ -94.782503865523367, 30.054623277168016 ], [ -94.782448865810167, 30.054521277327392 ], [ -94.78225486525352, 30.054215277325838 ], [ -94.782245865795105, 30.054204277624436 ], [ -94.782043865795671, 30.053934277194575 ], [ -94.781595865373291, 30.053373277611865 ], [ -94.780709865065447, 30.052312277020608 ], [ -94.780683864949623, 30.052280277526382 ], [ -94.780099864703459, 30.051550277258279 ], [ -94.779880864747057, 30.051282276691687 ], [ -94.779226864301393, 30.050480276873635 ], [ -94.77900886401099, 30.050213276475514 ], [ -94.778850864203875, 30.050020276356058 ], [ -94.778378864757158, 30.04944427682636 ], [ -94.778243863938656, 30.04927927636998 ], [ -94.778221864495478, 30.049252276778066 ], [ -94.778022863649014, 30.049009276641325 ], [ -94.777909864357383, 30.048857276769755 ], [ -94.777901864102276, 30.048845276295364 ], [ -94.777774864417424, 30.048652276482407 ], [ -94.777679864318429, 30.048481276051351 ], [ -94.777595863772021, 30.048302276286908 ], [ -94.777456863909194, 30.047945276355215 ], [ -94.777402863900974, 30.047756276192747 ], [ -94.777336863957999, 30.047474276375844 ], [ -94.777252863531743, 30.047110275882801 ], [ -94.777222864010511, 30.046985276404182 ], [ -94.777037863583928, 30.046202275913043 ], [ -94.777012863615681, 30.046095276042209 ], [ -94.776826863243286, 30.045406276149258 ], [ -94.7766368634434, 30.044758276028038 ], [ -94.776417863374377, 30.04394527597665 ], [ -94.776401863997791, 30.043876275153369 ], [ -94.7763268631155, 30.043541275078436 ], [ -94.776275863393707, 30.043213275418857 ], [ -94.776265863029835, 30.043085275135432 ], [ -94.776213863144932, 30.042280275155775 ], [ -94.776231863737976, 30.041854274720471 ], [ -94.776261863104082, 30.04154127522294 ], [ -94.77637486359265, 30.04085227455916 ], [ -94.776432863474369, 30.040445274595598 ], [ -94.776589863071678, 30.039362274210106 ], [ -94.77670986301861, 30.0385902747839 ], [ -94.776946863050327, 30.03693627410555 ], [ -94.777092863195477, 30.036102273916367 ], [ -94.777322863632591, 30.034506273672818 ], [ -94.777464862892842, 30.033421273404937 ], [ -94.77748986333755, 30.033038273416711 ], [ -94.777504863070789, 30.032579273275672 ], [ -94.777504863389368, 30.032553273447306 ], [ -94.777507862763883, 30.029897272725645 ], [ -94.777465862760678, 30.028858272541733 ], [ -94.777464863185969, 30.028816272646385 ], [ -94.777387862870299, 30.028142271853927 ], [ -94.777264862531126, 30.027583272405419 ], [ -94.777220863394206, 30.027379272442232 ], [ -94.777212863217585, 30.027340272553225 ], [ -94.777117863295985, 30.026969271602901 ], [ -94.776953862349643, 30.026175271584012 ], [ -94.776931862986174, 30.025978272220744 ], [ -94.776925862758603, 30.02579227197382 ], [ -94.776917862854859, 30.025523272021623 ], [ -94.776931862918119, 30.02523527208405 ], [ -94.776987863064463, 30.024756271934383 ], [ -94.777073862430171, 30.02403727152392 ], [ -94.777132862561913, 30.023552271028787 ], [ -94.777154862297195, 30.023060271111252 ], [ -94.777147862637818, 30.022688271270241 ], [ -94.777097863114179, 30.021873270948017 ], [ -94.777074862528664, 30.021475270817902 ], [ -94.777070862566788, 30.021151270997628 ], [ -94.777044862850104, 30.020098270235646 ], [ -94.777041862452691, 30.019931270991336 ], [ -94.776895862728068, 30.018317270327437 ], [ -94.7767138627961, 30.01695726980488 ], [ -94.776598862139366, 30.016091269621374 ], [ -94.776572862169758, 30.015914269440032 ], [ -94.776487861809983, 30.015339269970401 ], [ -94.776483862613162, 30.015308269386185 ], [ -94.776447862022536, 30.015002269921606 ], [ -94.776290862273513, 30.014040269831952 ], [ -94.776224862448558, 30.01379226901242 ], [ -94.776166862416346, 30.013632269436638 ], [ -94.776075862245762, 30.013377269640948 ], [ -94.775942861930531, 30.013098269252154 ], [ -94.775889862192614, 30.01298726899406 ], [ -94.77577286199265, 30.012783268980829 ], [ -94.775550862272183, 30.012477269219549 ], [ -94.775462861749588, 30.012372268980442 ], [ -94.775225861860804, 30.012087268676503 ], [ -94.774912861576496, 30.011767269144407 ], [ -94.774726861714981, 30.011610268523324 ], [ -94.774637861149117, 30.011546268829939 ], [ -94.774285861731428, 30.011293268794809 ], [ -94.773902860892036, 30.011060268646144 ], [ -94.773397861383756, 30.010808268644347 ], [ -94.772616861143362, 30.010419269124746 ], [ -94.77252686084168, 30.010373268887378 ], [ -94.772256861349291, 30.010236268987416 ], [ -94.772216861316366, 30.010216268889465 ], [ -94.772167861231239, 30.010191268627747 ], [ -94.772101860866982, 30.010157269059786 ], [ -94.771903861072275, 30.010056268632582 ], [ -94.771837860805732, 30.010023269177562 ], [ -94.771414860350092, 30.00980826885991 ], [ -94.770868860218656, 30.009532268421498 ], [ -94.770697860500604, 30.009446268651221 ], [ -94.769891859990622, 30.009005268466268 ], [ -94.769038859540018, 30.008568268696653 ], [ -94.768356860012474, 30.008193268557218 ], [ -94.767993859880875, 30.008001268834139 ], [ -94.767547859974599, 30.007767268337751 ], [ -94.767047859911486, 30.007470268525719 ], [ -94.766964859054681, 30.007421268435174 ], [ -94.766937859246951, 30.007406268686449 ], [ -94.766605859773676, 30.007219268270084 ], [ -94.766495859397295, 30.007157268553794 ], [ -94.766129859479804, 30.006947268270402 ], [ -94.765596859010955, 30.006677268284623 ], [ -94.765526858502668, 30.00664926798234 ], [ -94.765323859141077, 30.006568268091062 ], [ -94.764991858379531, 30.006462268324089 ], [ -94.764769859058717, 30.006401268401692 ], [ -94.764473858235064, 30.006335267791282 ], [ -94.764007858250423, 30.006255268552462 ], [ -94.763350858418363, 30.00617126799273 ], [ -94.762629858665107, 30.006051268172754 ], [ -94.762318858085038, 30.005988267822804 ], [ -94.762071858003793, 30.005938268131722 ], [ -94.761260858191349, 30.005712267899437 ], [ -94.759315857335238, 30.00509726779968 ], [ -94.758895857584221, 30.004965267894004 ], [ -94.758691856693673, 30.004892267779915 ], [ -94.758454857060656, 30.004787267974137 ], [ -94.758160857512649, 30.004636267765893 ], [ -94.75799185693765, 30.004546268065813 ], [ -94.757663857285635, 30.004317268167831 ], [ -94.757462857038874, 30.004135268277153 ], [ -94.757280856784831, 30.003945267686504 ], [ -94.756861856705015, 30.003461267529811 ], [ -94.756048856268166, 30.002452267634006 ], [ -94.75583685645222, 30.00220726790047 ], [ -94.755494855815741, 30.001872267546002 ], [ -94.755096855905876, 30.001544267502346 ], [ -94.754690856332644, 30.001270267211279 ], [ -94.753002855781347, 30.000128267345527 ], [ -94.752557855535343, 29.999844267362889 ], [ -94.752407855583868, 29.999748267231528 ], [ -94.751249855160424, 29.998954267280162 ], [ -94.750814854323139, 29.998656266885689 ], [ -94.7504308549169, 29.998392267054555 ], [ -94.750073854158828, 29.998148267027599 ], [ -94.749921854096584, 29.99804126729456 ], [ -94.74927785468455, 29.997605267039905 ], [ -94.748892853770514, 29.997345267006136 ], [ -94.748805854028404, 29.997291267042637 ], [ -94.748544853706392, 29.997131267272579 ], [ -94.748458853866865, 29.99707826648093 ], [ -94.748360854637184, 29.99701726646094 ], [ -94.747094853530385, 29.996238266692895 ], [ -94.746895853601274, 29.996100266353583 ], [ -94.746828853834785, 29.996053266470224 ], [ -94.746441853567248, 29.99575126681405 ], [ -94.746237853752135, 29.995563266497992 ], [ -94.744645853289555, 29.994003266609568 ], [ -94.743925852953794, 29.993269266675423 ], [ -94.743552852395297, 29.992869265981994 ], [ -94.743094852066349, 29.992276266346483 ], [ -94.743021852314541, 29.992174266499873 ], [ -94.742738852511437, 29.991778266181637 ], [ -94.742170852434441, 29.990926265443306 ], [ -94.742032851733768, 29.990624265746206 ], [ -94.741976851672575, 29.990494266019475 ], [ -94.741957851876009, 29.990438265451079 ], [ -94.741906851830421, 29.990282265715543 ], [ -94.741849851682659, 29.990048265516965 ], [ -94.741812852376384, 29.989858265572387 ], [ -94.741775852265832, 29.989662265801019 ], [ -94.741721851997355, 29.989388265205228 ], [ -94.741559852485025, 29.988567265184574 ], [ -94.74150585192929, 29.988294265517336 ], [ -94.741448852174727, 29.988005264860828 ], [ -94.74127885133997, 29.987138265284237 ], [ -94.741222852202895, 29.986850264774624 ], [ -94.741198852024496, 29.986723265380686 ], [ -94.741127851661489, 29.986342264543168 ], [ -94.741104852113295, 29.98621626460239 ], [ -94.741088851912679, 29.986134264468273 ], [ -94.741042852234258, 29.985887264940423 ], [ -94.741027851448962, 29.985806265151577 ], [ -94.740928851634607, 29.985271265046507 ], [ -94.740859851371184, 29.984899264634269 ], [ -94.740773851593872, 29.984430264318988 ], [ -94.740647851520123, 29.983851264031728 ], [ -94.740555851812744, 29.983486264078437 ], [ -94.740411851769025, 29.983042264495388 ], [ -94.740182851185125, 29.982502264473421 ], [ -94.739877851762316, 29.981924263885421 ], [ -94.739677851514458, 29.981590264452162 ], [ -94.739659850703319, 29.981565263534449 ], [ -94.739417851289957, 29.981211263655009 ], [ -94.739252850548809, 29.980988264278732 ], [ -94.73897585099904, 29.980657263995116 ], [ -94.737606850261074, 29.979089263727506 ], [ -94.736901849787685, 29.978281263768313 ], [ -94.736560850074724, 29.977874263623914 ], [ -94.736511849687929, 29.977817263254536 ], [ -94.735323850272479, 29.976440263037304 ], [ -94.734928850093524, 29.975982263391167 ], [ -94.734404849025935, 29.975381263008398 ], [ -94.733602848765216, 29.974462263091159 ], [ -94.732420848833968, 29.973107262710357 ], [ -94.731596848159128, 29.972214262737189 ], [ -94.731091848681885, 29.971703262150918 ], [ -94.730899848762832, 29.971530262662824 ], [ -94.730691848244732, 29.971368262647751 ], [ -94.730456848406845, 29.971218261927927 ], [ -94.730219848374091, 29.971089262482018 ], [ -94.729919847855001, 29.970947262287812 ], [ -94.729600848441109, 29.970809262165595 ], [ -94.729068848230725, 29.97061626240324 ], [ -94.727172847686802, 29.969932261718569 ], [ -94.725937846724804, 29.969469261601692 ], [ -94.725790847006422, 29.969414262186447 ], [ -94.725028846937775, 29.969103262318221 ], [ -94.724751846721617, 29.968972262317784 ], [ -94.724526846938488, 29.968847261804203 ], [ -94.724136846233051, 29.968610261901571 ], [ -94.723983846137983, 29.968507261902658 ], [ -94.723517846278284, 29.96813226152717 ], [ -94.72331784604269, 29.967935261537711 ], [ -94.723057846577106, 29.967657262147078 ], [ -94.722761846588796, 29.967276261268385 ], [ -94.722744846644886, 29.967251261647007 ], [ -94.722009846214263, 29.966157261781856 ], [ -94.721934846179067, 29.966046261491307 ], [ -94.721712845545909, 29.965713261102174 ], [ -94.72163884612192, 29.965603261175175 ], [ -94.721556845641743, 29.965480261707949 ], [ -94.721473845357963, 29.965369261639928 ], [ -94.721242845779855, 29.965062261517989 ], [ -94.72100384554281, 29.964762261555606 ], [ -94.720945845224421, 29.964695261253468 ], [ -94.720759845219149, 29.964480261109976 ], [ -94.720657845651942, 29.964362261386562 ], [ -94.720567845938305, 29.964274261531241 ], [ -94.720410845528534, 29.964120261505951 ], [ -94.719982845724985, 29.963669261019245 ], [ -94.719789845196061, 29.963466260687486 ], [ -94.718844845101927, 29.962501260652083 ], [ -94.717975845162385, 29.961614260628629 ], [ -94.716730844348987, 29.960328260644733 ], [ -94.716243843837546, 29.959849260260096 ], [ -94.716012844156936, 29.959606260466501 ], [ -94.715808844470189, 29.959391260370932 ], [ -94.715071843434828, 29.958640260166572 ], [ -94.714332843486744, 29.957883260285293 ], [ -94.712115842939113, 29.955614259693171 ], [ -94.71137684304145, 29.954858259704999 ], [ -94.711235842636782, 29.95471325931836 ], [ -94.711069842308191, 29.954541259430762 ], [ -94.710832842363772, 29.954262259692509 ], [ -94.710703842302095, 29.954108259451683 ], [ -94.710684842746304, 29.954081259467372 ], [ -94.710627842818965, 29.95400225912244 ], [ -94.710609842005653, 29.953976259725739 ], [ -94.710464842070891, 29.95374625892207 ], [ -94.710424842849847, 29.95368225890633 ], [ -94.710255842097368, 29.95338225902821 ], [ -94.710088841849483, 29.953027259237142 ], [ -94.710075841723636, 29.952999259193 ], [ -94.709989842326081, 29.952775258997331 ], [ -94.709924842242827, 29.952584259466988 ], [ -94.70987884255392, 29.952446259359007 ], [ -94.709825841772016, 29.952238259194942 ], [ -94.709777841814699, 29.95200025855717 ], [ -94.709767842081902, 29.951949259300399 ], [ -94.70974984187626, 29.951802258527312 ], [ -94.709684842342298, 29.951324258731329 ], [ -94.709491842019517, 29.949893258303248 ], [ -94.709427841490452, 29.949416258616473 ], [ -94.709423841676312, 29.949386258472092 ], [ -94.709410841874046, 29.949299258520679 ], [ -94.709361841996142, 29.948951257941637 ], [ -94.709345842208165, 29.948835258462616 ], [ -94.709295841967403, 29.948480258107441 ], [ -94.709258841579441, 29.948215258555841 ], [ -94.709173841824907, 29.947449257771975 ], [ -94.709171841434824, 29.947412258102631 ], [ -94.709159841803299, 29.947092258106512 ], [ -94.709157841463366, 29.947055257530948 ], [ -94.709137841285624, 29.94675925783287 ], [ -94.709096841855214, 29.946149257309706 ], [ -94.709061841740564, 29.945876257695588 ], [ -94.709025841689211, 29.945583257316297 ], [ -94.708946841495234, 29.94504925711173 ], [ -94.708804841030684, 29.944449257569364 ], [ -94.708705841814535, 29.944097257060342 ], [ -94.708417841619266, 29.943163257243135 ], [ -94.707967841325043, 29.942152256692829 ], [ -94.706063840398883, 29.938245256558588 ], [ -94.705986840520737, 29.938065255753365 ], [ -94.705723840514452, 29.937388256149774 ], [ -94.705602840335416, 29.937036255827316 ], [ -94.705359839900154, 29.936145255433132 ], [ -94.705346839945236, 29.936097256028482 ], [ -94.705101840443803, 29.935147255619757 ], [ -94.70448683990125, 29.932828254808378 ], [ -94.704360839538367, 29.932350254887069 ], [ -94.704312839350308, 29.932168254753442 ], [ -94.704110839887278, 29.931388255239494 ], [ -94.704084840178425, 29.931288254783126 ], [ -94.704036839702852, 29.931112254410536 ], [ -94.703892839523334, 29.930585254334023 ], [ -94.703844839962173, 29.930410255057801 ], [ -94.703832839348252, 29.930368254824678 ], [ -94.703743839185293, 29.93002525477316 ], [ -94.703444839012803, 29.928870254756813 ], [ -94.70334583953823, 29.928485254753596 ], [ -94.70323783977787, 29.928088254495155 ], [ -94.702931838742529, 29.926959254277325 ], [ -94.702915838885005, 29.926898253810705 ], [ -94.702808838769428, 29.926502253597551 ], [ -94.70279083948374, 29.926433253510798 ], [ -94.702748838663837, 29.926262253549226 ], [ -94.702739839140037, 29.926226253507838 ], [ -94.702722839337298, 29.926158254105971 ], [ -94.702710839570514, 29.926112253423572 ], [ -94.702675839366222, 29.925974253563556 ], [ -94.702664839026966, 29.925929253575113 ], [ -94.702559838944097, 29.925536253810048 ], [ -94.702247838798286, 29.924357253941004 ], [ -94.702143839272637, 29.923965253382857 ], [ -94.702135838357989, 29.92394425360105 ], [ -94.702112838936714, 29.923881252980205 ], [ -94.702105838466991, 29.923861253033316 ], [ -94.701900838849824, 29.92330525294425 ], [ -94.701875838479324, 29.923235252892251 ], [ -94.701614838604627, 29.922680252727972 ], [ -94.701477838993583, 29.922414253013283 ], [ -94.701127838118651, 29.921706252969575 ], [ -94.700865838384743, 29.921176252449502 ], [ -94.700680838395854, 29.920761252769275 ], [ -94.700580838366903, 29.920537252668666 ], [ -94.700404838252183, 29.920067252553025 ], [ -94.700256838071226, 29.919592252161721 ], [ -94.70022983865843, 29.919480252634187 ], [ -94.700155838252655, 29.919163252797954 ], [ -94.700127837872628, 29.919039252758711 ], [ -94.700113838442618, 29.918968252312268 ], [ -94.700073838304377, 29.918755252683916 ], [ -94.70006083798674, 29.918684252639341 ], [ -94.700020838402267, 29.918437252697334 ], [ -94.699942837910115, 29.917943252645948 ], [ -94.69992383853139, 29.917696252042173 ], [ -94.699917837875034, 29.917448252362433 ], [ -94.699912838440923, 29.917216252546453 ], [ -94.699921838386885, 29.916746252280443 ], [ -94.699984838253172, 29.915726252035338 ], [ -94.700025837681466, 29.915296251705247 ], [ -94.70003683761432, 29.915051251323774 ], [ -94.700018837943986, 29.914657251702476 ], [ -94.699981837659209, 29.914420251190933 ], [ -94.699899837353698, 29.914088251467351 ], [ -94.699747838277929, 29.913663251749803 ], [ -94.698967837399735, 29.911830250669585 ], [ -94.697537836624477, 29.908526250169448 ], [ -94.697248837018776, 29.907793249871229 ], [ -94.697160836536142, 29.907457250478025 ], [ -94.697090836426383, 29.907056250454819 ], [ -94.696838836874022, 29.904985249727499 ], [ -94.696611836655549, 29.903071249050495 ], [ -94.696594836213038, 29.902796249589478 ], [ -94.696592836321457, 29.902581249486698 ], [ -94.696603836889267, 29.902336249072906 ], [ -94.696633836835105, 29.902108249339207 ], [ -94.696705836075438, 29.901735249388945 ], [ -94.696808836610316, 29.901429248601499 ], [ -94.696632836832251, 29.901339249238188 ], [ -94.696516836824287, 29.90126324915396 ], [ -94.696479836331605, 29.901230249331302 ], [ -94.696386836249587, 29.90110224862822 ], [ -94.696338836840965, 29.900988249332602 ], [ -94.69632183640752, 29.90093024863187 ], [ -94.69629283646276, 29.900829248838054 ], [ -94.696269836447755, 29.900707249057419 ], [ -94.696262836688675, 29.900669248469985 ], [ -94.696245836492295, 29.900471248930884 ], [ -94.696193836122205, 29.899270248800818 ], [ -94.696121835779536, 29.898337248053068 ], [ -94.696098835893252, 29.8978422486265 ], [ -94.696054835997998, 29.896886248324122 ], [ -94.696048836303362, 29.896742247911511 ], [ -94.69603083646092, 29.896311247816076 ], [ -94.696024836011944, 29.896168247658405 ], [ -94.696022836104419, 29.896048247521865 ], [ -94.696019835983051, 29.895688247615006 ], [ -94.696018836185289, 29.895569247351833 ], [ -94.695991836028625, 29.894372247558316 ], [ -94.695963835378876, 29.893105247643 ], [ -94.695935836172083, 29.892619246783948 ], [ -94.69592883573668, 29.891903246855104 ], [ -94.695900836251539, 29.89150624724191 ], [ -94.695900835909171, 29.891191246870964 ], [ -94.695875836039349, 29.890784246388403 ], [ -94.695870835330823, 29.890703246746106 ], [ -94.695850835710871, 29.890231246460161 ], [ -94.695861835811556, 29.889996246407968 ], [ -94.695889835218154, 29.889925246915208 ], [ -94.695932835883227, 29.889877246539694 ], [ -94.69605283620082, 29.889797246391602 ], [ -94.696173835488793, 29.889778246608746 ], [ -94.696111835661611, 29.88958924631433 ], [ -94.696054836247541, 29.889364246229245 ], [ -94.695960835344593, 29.888993246747273 ], [ -94.69590683550777, 29.888706246718925 ], [ -94.695860836144206, 29.888210245886334 ], [ -94.695856836030643, 29.888095246009527 ], [ -94.695851835136551, 29.887897245920286 ], [ -94.695843835174131, 29.887668246457416 ], [ -94.695768835871519, 29.887669246413409 ], [ -94.695163835375268, 29.887678245826258 ], [ -94.693348834738941, 29.88770624611794 ], [ -94.69274483433378, 29.887716246294399 ], [ -94.691125834613686, 29.887741246727412 ], [ -94.686271833577962, 29.887817246678871 ], [ -94.68593983328708, 29.887823246316941 ], [ -94.685308832565468, 29.887833246692662 ], [ -94.684783832913126, 29.887839246316876 ], [ -94.684683833127664, 29.887840246617241 ], [ -94.68465383222383, 29.887841246972748 ], [ -94.68364383247409, 29.887854246191147 ], [ -94.680616831227098, 29.887895246702843 ], [ -94.679607831017066, 29.887909247179497 ], [ -94.678559830967785, 29.887922246484909 ], [ -94.675418830637042, 29.887965247286235 ], [ -94.67437282978446, 29.887980246516232 ], [ -94.674098829677206, 29.88798424651236 ], [ -94.673558829736734, 29.887992247346862 ], [ -94.673279829475376, 29.887994247186011 ], [ -94.673007829835967, 29.88799724686492 ], [ -94.67295182978684, 29.887998247432577 ], [ -94.670395829105701, 29.888023247051766 ], [ -94.663297827699452, 29.88809424746492 ], [ -94.662560826577888, 29.888100247513687 ], [ -94.660168826817099, 29.888123247140122 ], [ -94.65994982634777, 29.888125247231194 ], [ -94.658910825938875, 29.888136247442905 ], [ -94.657788825617317, 29.888148247411362 ], [ -94.655793824959801, 29.888172247788646 ], [ -94.654823825342319, 29.888183247959759 ], [ -94.654755824998787, 29.888184247683888 ], [ -94.651610824074254, 29.888217247890196 ], [ -94.650658824215441, 29.888227247682632 ], [ -94.642178821295659, 29.88834524774979 ], [ -94.639091820736894, 29.888388247911781 ], [ -94.639034820786392, 29.888389247884572 ], [ -94.638402821034035, 29.888397248546195 ], [ -94.638251820442107, 29.888400248642228 ], [ -94.638018820760038, 29.888403248372683 ], [ -94.634970819531389, 29.888444248516681 ], [ -94.63395481919315, 29.888458248058701 ], [ -94.625219816915191, 29.888579248910531 ], [ -94.621998816081486, 29.888489248500907 ], [ -94.614916814442779, 29.888618249167443 ], [ -94.613101814112113, 29.888610249364465 ], [ -94.612880814069101, 29.888610249296178 ], [ -94.612388813664367, 29.888608248878935 ], [ -94.612175813779999, 29.888607248956092 ], [ -94.611105813878197, 29.888604249275115 ], [ -94.608395812558953, 29.888614249693319 ], [ -94.606075812462564, 29.888624249154102 ], [ -94.605863812218516, 29.888662249109469 ], [ -94.605745812716506, 29.888658249391177 ], [ -94.605614812380892, 29.888654249832946 ], [ -94.605143812421034, 29.888658249237942 ], [ -94.603734811479356, 29.888674249880442 ], [ -94.603306811519687, 29.888680249687603 ], [ -94.603266811573036, 29.888681249953901 ], [ -94.603008811282294, 29.888682249144402 ], [ -94.602238811822815, 29.888689249886617 ], [ -94.601983811207035, 29.888694249304546 ], [ -94.601923811252078, 29.8886942494984 ], [ -94.601744810849709, 29.888696249965911 ], [ -94.601685811068222, 29.88869724978203 ], [ -94.601600811658116, 29.888698249391314 ], [ -94.601526811357559, 29.888699249354197 ], [ -94.600785811464391, 29.888706250040645 ], [ -94.598087810745639, 29.88873624962979 ], [ -94.597221809812339, 29.888745250095511 ], [ -94.597188810593607, 29.888746249899516 ], [ -94.59525180996107, 29.88876624941858 ], [ -94.589440807992091, 29.888828249911487 ], [ -94.58750480771792, 29.88884925040951 ], [ -94.587490807990932, 29.888849250370612 ], [ -94.5855318074737, 29.888870250461895 ], [ -94.582536806205042, 29.888903250602091 ], [ -94.579615805829533, 29.888938250450551 ], [ -94.577644805562187, 29.888963250721439 ], [ -94.576546805324739, 29.888976250793558 ], [ -94.574656804008015, 29.889000250464203 ], [ -94.574298804134685, 29.889004250756347 ], [ -94.573939804376565, 29.889008250509761 ], [ -94.573252803767332, 29.889016250758793 ], [ -94.5723368036831, 29.889028250331251 ], [ -94.572155803823975, 29.889030251013057 ], [ -94.571204803508635, 29.88904025067464 ], [ -94.568354802303105, 29.889072250381641 ], [ -94.567543802661191, 29.889083251185887 ], [ -94.567405802797367, 29.889089251086226 ], [ -94.566919802107506, 29.889092250636018 ], [ -94.565464801767675, 29.88911125120627 ], [ -94.565056801738024, 29.889116250950117 ], [ -94.564978801519374, 29.88911925093079 ], [ -94.5629328017734, 29.889143251381913 ], [ -94.561975800609545, 29.889155250667276 ], [ -94.556791799706303, 29.889223250862013 ], [ -94.554956799547853, 29.889248251616106 ], [ -94.554746799588301, 29.889256251451492 ], [ -94.553247798859559, 29.889274251249446 ], [ -94.548752797364173, 29.889332251520969 ], [ -94.547853797227987, 29.889344251916647 ], [ -94.547254797012783, 29.889353251229441 ], [ -94.547017796767747, 29.889355251606549 ], [ -94.546309796697713, 29.889365251973452 ], [ -94.546074796672571, 29.889369251904125 ], [ -94.544569796214915, 29.889389251636516 ], [ -94.543771796787411, 29.889400251821446 ], [ -94.543484796824643, 29.889404251515632 ], [ -94.541551796074003, 29.889427251757706 ], [ -94.536863794652703, 29.889483251965508 ], [ -94.534575793716684, 29.889511251815563 ], [ -94.534561793663059, 29.889511251664821 ], [ -94.532792793639913, 29.889532251948115 ], [ -94.527485792676828, 29.889597251883025 ], [ -94.52571779188375, 29.889620252646836 ], [ -94.525618791833551, 29.889621252748078 ], [ -94.525321791282607, 29.889625252063777 ], [ -94.525223792081547, 29.889626252755633 ], [ -94.524809791792563, 29.889631252453107 ], [ -94.523571790772493, 29.889646252769097 ], [ -94.523358791070692, 29.889649252445267 ], [ -94.523152791392803, 29.889652252454233 ], [ -94.521908790944636, 29.889665252280441 ], [ -94.520114790163973, 29.889688252169112 ], [ -94.519434790529203, 29.889696252556504 ], [ -94.518164789652502, 29.889712252354684 ], [ -94.517226789246166, 29.88972425261705 ], [ -94.516917789862418, 29.889728253128339 ], [ -94.516491789231068, 29.88973125247108 ], [ -94.515221788802506, 29.889748252823786 ], [ -94.514861789223957, 29.88975325306469 ], [ -94.514800788679182, 29.889756252407775 ], [ -94.513817788874121, 29.889767252495972 ], [ -94.510874787403623, 29.889804252899495 ], [ -94.509895787832676, 29.889819253101983 ], [ -94.509849787149193, 29.889820253142922 ], [ -94.509075787131565, 29.889829253032097 ], [ -94.506617786469931, 29.889861252658598 ], [ -94.506202786465053, 29.889867253097396 ], [ -94.505813786670814, 29.889872253479375 ], [ -94.505798786583526, 29.889872252941696 ], [ -94.502946785567303, 29.889909252731417 ], [ -94.500197784826099, 29.889945253686019 ], [ -94.494398783395951, 29.889655253274576 ], [ -94.494030783746737, 29.889637253468766 ], [ -94.49154278303179, 29.889513253049358 ], [ -94.491492782399163, 29.889510253512714 ], [ -94.491474782660688, 29.889510253484794 ], [ -94.491246782889377, 29.889509253644924 ], [ -94.491171783276698, 29.889509253652495 ], [ -94.491148783155737, 29.889509253445759 ], [ -94.491079782752834, 29.889509253703334 ], [ -94.491068783160401, 29.889509253259774 ], [ -94.491057782493456, 29.889509253682061 ], [ -94.490987782228913, 29.88950925369117 ], [ -94.485880781688508, 29.889512253951263 ], [ -94.477556779500404, 29.889518254032971 ], [ -94.473696778775533, 29.889521253713749 ], [ -94.470350777224724, 29.88952325403266 ], [ -94.465432775690729, 29.889526254721826 ], [ -94.46517477579151, 29.889526254134047 ], [ -94.463405775397348, 29.889527254435258 ], [ -94.458100773792594, 29.889530254476846 ], [ -94.456767773649588, 29.889532254543727 ], [ -94.456578774151524, 29.889532254814252 ], [ -94.45636277368483, 29.889532254891265 ], [ -94.456332774125315, 29.889532254515427 ], [ -94.454537773456849, 29.889533254959112 ], [ -94.450262772286706, 29.88953725518305 ], [ -94.449153771884468, 29.889537254933128 ], [ -94.447359771706331, 29.889539255110961 ], [ -94.447342771584033, 29.8895392551002 ], [ -94.446335770846417, 29.889539255036951 ], [ -94.443264770847009, 29.889541255421303 ], [ -94.442241770148868, 29.889543255261742 ], [ -94.442257770573093, 29.890811255661106 ], [ -94.442306770584878, 29.894617255881638 ], [ -94.442323770180181, 29.895886256887692 ], [ -94.442329770875403, 29.896363256480559 ], [ -94.442347770113599, 29.897794256514803 ], [ -94.442354770772724, 29.898272256760578 ], [ -94.4423617705597, 29.898717256654066 ], [ -94.44238377107898, 29.900053256930395 ], [ -94.442391770876341, 29.900499257512827 ], [ -94.442402770310636, 29.901154257196914 ], [ -94.442435770868741, 29.903122257527688 ], [ -94.442446770621359, 29.903778257934601 ], [ -94.442453771156892, 29.904212258170297 ], [ -94.442474770470938, 29.90551725868 ], [ -94.442482771101353, 29.905952258711675 ], [ -94.442496771145613, 29.906807258822202 ], [ -94.442539771462933, 29.909373259525182 ], [ -94.442554771279262, 29.910229259583367 ], [ -94.442558771145428, 29.910489259423102 ], [ -94.44257177139815, 29.911272259643159 ], [ -94.442576771260477, 29.911533259433916 ], [ -94.442577770917097, 29.911612259798229 ], [ -94.442595771097814, 29.912729259592108 ], [ -94.442655771139229, 29.916319260510406 ], [ -94.442676771788811, 29.917516261147057 ], [ -94.442685771515414, 29.918065261277082 ], [ -94.442712771942752, 29.919714260955061 ], [ -94.442721771852774, 29.920264261061622 ], [ -94.44274977193669, 29.921916262092001 ], [ -94.442779772070637, 29.923514262516314 ], [ -94.44315077255429, 29.943098266394596 ], [ -94.443274772848568, 29.951234267876661 ], [ -94.443387773168482, 29.9586352697177 ], [ -94.443478773363083, 29.964025270474032 ], [ -94.443495774015915, 29.965059271169409 ], [ -94.443548774176989, 29.968161271070514 ], [ -94.443566773728563, 29.969195271636789 ], [ -94.443566774397226, 29.969220271794835 ], [ -94.443567774468562, 29.969298272028819 ], [ -94.443568773596141, 29.969324271227485 ], [ -94.443568774506232, 29.96933627204503 ], [ -94.44356877354646, 29.969376271323998 ], [ -94.443569773951253, 29.96938927121813 ], [ -94.443569774509001, 29.969403271853579 ], [ -94.44357277434149, 29.969582271328051 ], [ -94.44357477359749, 29.969674271769552 ], [ -94.443596773597008, 29.970856272110758 ], [ -94.443682774582058, 29.975216273262564 ], [ -94.443711774917034, 29.976670272835868 ], [ -94.443711774653877, 29.976683273043609 ], [ -94.44371177474531, 29.976723273157582 ], [ -94.443712774010052, 29.976737273339648 ], [ -94.443732773953627, 29.977748273349469 ], [ -94.443792774816728, 29.980782274254203 ], [ -94.443812775079394, 29.981794274051158 ], [ -94.443835774825416, 29.982976274231728 ], [ -94.443865774623148, 29.984432274536701 ], [ -94.443891775019509, 29.986525275031777 ], [ -94.443906774846809, 29.987708275663973 ], [ -94.44391577446055, 29.988473275787076 ], [ -94.443942775108667, 29.990768275857025 ], [ -94.443951775030371, 29.991534276409357 ], [ -94.443956774874266, 29.991818276128903 ], [ -94.443971775568627, 29.992670276052714 ], [ -94.443976775291276, 29.992955276911019 ], [ -94.443974774917208, 29.992988276838254 ], [ -94.443970775088331, 29.993090276071666 ], [ -94.443970775280135, 29.993124276516134 ], [ -94.443971775625954, 29.993180276336485 ], [ -94.443972775089463, 29.993235276670571 ], [ -94.443973775631889, 29.993331276370348 ], [ -94.443986775753089, 29.994395276554741 ], [ -94.444016775273312, 29.996823277357844 ], [ -94.444044775586008, 29.997589277101213 ], [ -94.444083775704684, 29.998654277762959 ], [ -94.444140775781108, 30.0002202776868 ], [ -94.444144775505151, 30.000658278338186 ], [ -94.444203776037114, 30.006673279366115 ], [ -94.444223776429268, 30.008679279727616 ], [ -94.444225775697632, 30.00883227958462 ], [ -94.444223776230672, 30.008906279371516 ], [ -94.444207776143315, 30.00958727990416 ], [ -94.444202775750767, 30.009814279603496 ], [ -94.44420377625589, 30.010013279770746 ], [ -94.444207775588609, 30.01061128007623 ], [ -94.444208776355026, 30.010767280418921 ], [ -94.444208775921155, 30.010811280532064 ], [ -94.444208776067498, 30.010840279902702 ], [ -94.444208776425867, 30.010927279815842 ], [ -94.444209776550551, 30.010956280601839 ], [ -94.44421877594317, 30.012185280164086 ], [ -94.444245776725325, 30.015875281207858 ], [ -94.444255776796169, 30.017105281260214 ], [ -94.444281776419558, 30.019683282350531 ], [ -94.444360777291536, 30.027419283935725 ], [ -94.444387776683953, 30.029998284181517 ], [ -94.444391776868386, 30.030529284139217 ], [ -94.444403776595706, 30.032122284262453 ], [ -94.444406776719831, 30.032395284874841 ], [ -94.445164777364781, 30.032324284237642 ], [ -94.44652377813172, 30.032196284843259 ], [ -94.447712778293081, 30.032150284103395 ], [ -94.448443778235671, 30.03208228471313 ], [ -94.44920677799503, 30.031946283973006 ], [ -94.450322778815178, 30.031792284708875 ], [ -94.452624779413284, 30.031477283827805 ], [ -94.453671779301629, 30.03133428424702 ], [ -94.454788779670551, 30.031182283734275 ], [ -94.455430779801446, 30.031093283516689 ], [ -94.457357779913096, 30.030830283590195 ], [ -94.458000780391487, 30.030742283735137 ], [ -94.45884978087706, 30.030706283332659 ], [ -94.458987780826376, 30.030697283791078 ], [ -94.459384781061004, 30.030739283892544 ], [ -94.46000578061971, 30.03061728405649 ], [ -94.460868780808866, 30.030502283934194 ], [ -94.46193178165889, 30.030346283854087 ], [ -94.46281778190162, 30.0302172833944 ], [ -94.46290978170191, 30.030202283386224 ], [ -94.462935782319207, 30.030197283177117 ], [ -94.463016781700063, 30.030184283314981 ], [ -94.463043781473985, 30.030180283763347 ], [ -94.464931782078054, 30.02992028316006 ], [ -94.470504783825433, 30.02915528302022 ], [ -94.470597783739393, 30.029142283317874 ], [ -94.472486783885131, 30.028883283152098 ], [ -94.473826784393182, 30.028610282760319 ], [ -94.474532785135551, 30.028467282955308 ], [ -94.477879785350694, 30.027966282383112 ], [ -94.478157786068877, 30.027925282420345 ], [ -94.479235785628347, 30.02778328200948 ], [ -94.480195785958571, 30.027653282083214 ], [ -94.480246786085544, 30.027645282675973 ], [ -94.48328178667785, 30.027234282496636 ], [ -94.48429378669006, 30.027097282487585 ], [ -94.485299787415073, 30.026954281684706 ], [ -94.488320788407535, 30.026528282163621 ], [ -94.489327788348604, 30.026386281839617 ], [ -94.491504789041457, 30.026082281611291 ], [ -94.49761579014914, 30.02523128091903 ], [ -94.498036790677901, 30.025172281070255 ], [ -94.499622790984915, 30.024952281469748 ], [ -94.500214791091565, 30.024870281158218 ], [ -94.500235791244634, 30.024867281228893 ], [ -94.500333791177155, 30.02485028110743 ], [ -94.500692791422836, 30.024790281412965 ], [ -94.500812791841568, 30.024771281372427 ], [ -94.502096791774733, 30.024607281171249 ], [ -94.502511791479137, 30.02455528099096 ], [ -94.503993791744577, 30.024358280525458 ], [ -94.5056567921024, 30.024115281126456 ], [ -94.505941793150598, 30.024066280817227 ], [ -94.506436792811144, 30.023983280618712 ], [ -94.507137793408035, 30.023833280929335 ], [ -94.50721179321512, 30.023815280839784 ], [ -94.50725379302186, 30.023810280932516 ], [ -94.507352793507252, 30.02379728073516 ], [ -94.508492793628648, 30.023583281019196 ], [ -94.508898793069193, 30.02352228068921 ], [ -94.509113793599639, 30.023490280839429 ], [ -94.509682794010956, 30.023412280628591 ], [ -94.510281794147474, 30.023344280037669 ], [ -94.510956793739396, 30.023287280517426 ], [ -94.512095794055796, 30.023251280467363 ], [ -94.513543794451067, 30.023151280269225 ], [ -94.51389079468774, 30.023106280466827 ], [ -94.515548794948131, 30.022897280316624 ], [ -94.517191795920496, 30.022667279828333 ], [ -94.520732796020511, 30.022173280195627 ], [ -94.521985796929172, 30.021969279580077 ], [ -94.522116796663539, 30.021941279643965 ], [ -94.523111797016284, 30.021733279500367 ], [ -94.523739796845064, 30.021595279646537 ], [ -94.524964797937372, 30.02143027998925 ], [ -94.527528798023098, 30.021086279369168 ], [ -94.528226797868612, 30.020983279573862 ], [ -94.52864079800041, 30.020939279010395 ], [ -94.529870798877653, 30.020812279186025 ], [ -94.530413798462561, 30.020781279050333 ], [ -94.531032799403434, 30.020745279393722 ], [ -94.531355799587104, 30.020727279347803 ], [ -94.53202479919409, 30.020705279014123 ], [ -94.532627799530758, 30.020686278819355 ], [ -94.533658800082875, 30.02067927935607 ], [ -94.534089799896904, 30.02070427875395 ], [ -94.535082800443448, 30.02072227869089 ], [ -94.535537799897597, 30.020754278900775 ], [ -94.536169799926881, 30.020793279069693 ], [ -94.537468801162632, 30.020901279023239 ], [ -94.53841580144811, 30.021016278945613 ], [ -94.538482800543846, 30.021023279226966 ], [ -94.539031801192124, 30.021087278725847 ], [ -94.539389800787404, 30.021148279370909 ], [ -94.540617801072869, 30.021333278781935 ], [ -94.540704801918636, 30.021347278792536 ], [ -94.541375801685092, 30.02145027904789 ], [ -94.542483802061852, 30.021622278842329 ], [ -94.543648802129439, 30.02181127881785 ], [ -94.544406802486847, 30.021934278962071 ], [ -94.544944802201115, 30.022021279130978 ], [ -94.54628080312385, 30.022243278657808 ], [ -94.546640803489737, 30.022303278758933 ], [ -94.547783802953887, 30.022553278695032 ], [ -94.54874680362343, 30.022749279323079 ], [ -94.551886804800446, 30.023260279395743 ], [ -94.553762805094124, 30.023566278961169 ], [ -94.556956806024971, 30.024085279262774 ], [ -94.557609805921899, 30.024192279316072 ], [ -94.557655806258495, 30.024199278772318 ], [ -94.562720807797476, 30.025024278888356 ], [ -94.566540808402266, 30.025636279072977 ], [ -94.569736809149362, 30.026148278589677 ], [ -94.57050380904856, 30.026269279175715 ], [ -94.570597809979489, 30.026278279377351 ], [ -94.571135809855562, 30.026330278878838 ], [ -94.571543810039913, 30.026351278667804 ], [ -94.57208781009507, 30.026348279356185 ], [ -94.57256580989781, 30.026333279247584 ], [ -94.57320881040441, 30.026280279261808 ], [ -94.574077810533581, 30.026209278708304 ], [ -94.575307810691541, 30.026083278624576 ], [ -94.576695811409863, 30.025943279171873 ], [ -94.578924811148639, 30.025728278721871 ], [ -94.578999811469174, 30.025728278762049 ], [ -94.580038812161007, 30.025728278513164 ], [ -94.580236812213641, 30.025744278763327 ], [ -94.580538812461512, 30.02576727892707 ], [ -94.580969811932746, 30.025801278508872 ], [ -94.581444812424166, 30.025833278903065 ], [ -94.581532812486998, 30.025840278392181 ], [ -94.581746812307244, 30.025865278129501 ], [ -94.581824812250872, 30.025874278648686 ], [ -94.582059812369238, 30.025901278522149 ], [ -94.582138812663302, 30.025911278653474 ], [ -94.582405812902152, 30.025942278831415 ], [ -94.582594812307164, 30.025965278723024 ], [ -94.583200812251931, 30.026087278633383 ], [ -94.583465812349615, 30.026141278314391 ], [ -94.584232813087951, 30.026290278867243 ], [ -94.586536813660956, 30.026737278249396 ], [ -94.587304813636408, 30.026887278723279 ], [ -94.587369813534778, 30.02690027897863 ], [ -94.587566814085818, 30.026941278160521 ], [ -94.587632814372412, 30.02695527894306 ], [ -94.587856814235252, 30.026997278245545 ], [ -94.588156814126137, 30.027053278384958 ], [ -94.589730814993302, 30.027347278485916 ], [ -94.590255814640727, 30.027446278346268 ], [ -94.590333814583602, 30.027461278352629 ], [ -94.59056981447462, 30.027509278732985 ], [ -94.590648814906658, 30.02752527828677 ], [ -94.590775814376329, 30.027554278999972 ], [ -94.591156814809494, 30.02764327835644 ], [ -94.591283814790643, 30.027673278892973 ], [ -94.591484814835923, 30.027706278316057 ], [ -94.59183581456081, 30.027764278656591 ], [ -94.592087814788883, 30.027806278655898 ], [ -94.592288815508738, 30.027840278982517 ], [ -94.592629814812852, 30.027857278181528 ], [ -94.593652815411104, 30.027909278171634 ], [ -94.593994815410412, 30.027927278122057 ], [ -94.594070816100029, 30.027931278416141 ], [ -94.594151815781174, 30.027936278604574 ], [ -94.594622816075059, 30.0279672782986 ], [ -94.594780816181398, 30.027978278918503 ], [ -94.595016816391848, 30.027993278765901 ], [ -94.595098815536701, 30.02799927894835 ], [ -94.595723815980961, 30.028075278310219 ], [ -94.595959816204441, 30.028104278824642 ], [ -94.596439816558004, 30.028185278594179 ], [ -94.597879816554709, 30.028428278251312 ], [ -94.598360816985391, 30.028510278838301 ], [ -94.598480816735062, 30.028523278228832 ], [ -94.598843817174014, 30.028564278064806 ], [ -94.598964817457642, 30.02857827849456 ], [ -94.599330816549383, 30.028662278662839 ], [ -94.599710817397238, 30.028749278702431 ], [ -94.600430816840202, 30.02891527845809 ], [ -94.600590817159116, 30.028952278517192 ], [ -94.600797817631857, 30.029000278751436 ], [ -94.600907817635544, 30.029026278212648 ], [ -94.601239817185629, 30.029104278319789 ], [ -94.601350817852165, 30.029131278871034 ], [ -94.60138881791336, 30.029140278969439 ], [ -94.601505817258399, 30.029169278675244 ], [ -94.601544817865374, 30.029179278377939 ], [ -94.601861817876966, 30.029254278757957 ], [ -94.602815817643332, 30.029481278383898 ], [ -94.603133817841567, 30.029557278932483 ], [ -94.603569817700276, 30.029658278351089 ], [ -94.604877818893485, 30.029961278815165 ], [ -94.605314818360668, 30.030063278356405 ], [ -94.605699819020799, 30.030152278968924 ], [ -94.6068578188911, 30.030421278766859 ], [ -94.607212819521493, 30.030504278912797 ], [ -94.607243819539207, 30.030511278959185 ], [ -94.608073819573747, 30.030706278743061 ], [ -94.60872681973936, 30.030859278737065 ], [ -94.613177821262042, 30.031903279088617 ], [ -94.614661821465305, 30.032252279127466 ], [ -94.615163821032567, 30.032370278698398 ], [ -94.616672821575548, 30.032724278982961 ], [ -94.617175822016549, 30.032843278531736 ], [ -94.617791822164335, 30.032991278938489 ], [ -94.619639822836632, 30.033434278792697 ], [ -94.620255822931199, 30.033583278759121 ], [ -94.621250822592785, 30.033803278404491 ], [ -94.624237824125842, 30.034465279033125 ], [ -94.625233823928383, 30.034686278711778 ], [ -94.625295823646738, 30.034704278646775 ], [ -94.625482824144242, 30.034758279282368 ], [ -94.625545823723115, 30.034777278535866 ], [ -94.62620582410905, 30.034917278695655 ], [ -94.626384823893929, 30.034948279183773 ], [ -94.627541824891011, 30.035149278802251 ], [ -94.628925824831683, 30.035339278670833 ], [ -94.629774825014479, 30.035457279289993 ], [ -94.631438825713872, 30.035727278694196 ], [ -94.63643382728722, 30.036540278572517 ], [ -94.638098827523365, 30.036811278472385 ], [ -94.638674827860683, 30.036908278463887 ], [ -94.639000827538979, 30.036953279051563 ], [ -94.640424828371835, 30.037190278705516 ], [ -94.641466828162109, 30.037325278566232 ], [ -94.643145828458188, 30.037599279120577 ], [ -94.643399829063824, 30.037641278650149 ], [ -94.648191830133428, 30.038381279179568 ], [ -94.649873831077088, 30.038641278756003 ], [ -94.650738830455637, 30.038783278836302 ], [ -94.653334831546033, 30.039209278515756 ], [ -94.654200831390568, 30.039352278684817 ], [ -94.655363832146591, 30.039547278977448 ], [ -94.65594083236239, 30.039669279100856 ], [ -94.657170832431532, 30.039932278855336 ], [ -94.658628832832221, 30.040219278892124 ], [ -94.659054832510748, 30.04028527843305 ], [ -94.659249833490804, 30.040307278660144 ], [ -94.659622832687859, 30.040348278867871 ], [ -94.661164833385769, 30.040594278508067 ], [ -94.661640833279137, 30.040671278624512 ], [ -94.662912834044036, 30.040870279143288 ], [ -94.663578834302541, 30.040974279222603 ], [ -94.665577835204729, 30.041289278903143 ], [ -94.666244835371074, 30.041394279148346 ], [ -94.666479834826333, 30.041431279189723 ], [ -94.666667834705947, 30.041461278679073 ], [ -94.66718483517694, 30.041542278682325 ], [ -94.667420835451239, 30.041580278902714 ], [ -94.667704835376895, 30.041618279066899 ], [ -94.668184835350743, 30.041683278517507 ], [ -94.668338835173145, 30.041691278556296 ], [ -94.668562835147839, 30.041702278954276 ], [ -94.668849835423458, 30.041718279041138 ], [ -94.66896983536806, 30.041728278843568 ], [ -94.669071836089103, 30.041727278602981 ], [ -94.669739835711937, 30.041720278919591 ], [ -94.669962835947388, 30.041719278565115 ], [ -94.669962836110088, 30.041811278769821 ], [ -94.669962835554287, 30.04189327898596 ], [ -94.669946836361731, 30.042088278568837 ], [ -94.669944835727961, 30.04212327850761 ], [ -94.669931835475808, 30.042180279203606 ], [ -94.669904835616236, 30.042298279242061 ], [ -94.669859835977562, 30.042508278937603 ], [ -94.669825835485995, 30.042675278562601 ], [ -94.669799835485037, 30.042797279357494 ], [ -94.669672835705555, 30.043165279259544 ], [ -94.669353836239139, 30.044035279473835 ], [ -94.668682836268829, 30.045641279250052 ], [ -94.668636835712789, 30.045751280022714 ], [ -94.667382835355625, 30.048906280282235 ], [ -94.667030835312644, 30.049740280453427 ], [ -94.665313834989121, 30.054006281375283 ], [ -94.665159834799368, 30.05437028192474 ], [ -94.664939835022821, 30.054888281868308 ], [ -94.664689835124761, 30.055507281785925 ], [ -94.664349835337873, 30.056352281619787 ], [ -94.663939835354711, 30.057390282617884 ], [ -94.663778834694, 30.057752282539351 ], [ -94.663299835241688, 30.058929282501094 ], [ -94.663260835463632, 30.059026282602641 ], [ -94.662858835246496, 30.060079282983448 ], [ -94.662528834316774, 30.060864283191915 ], [ -94.662239834951478, 30.061554282900612 ], [ -94.661860834229785, 30.062506283599326 ], [ -94.661564834779242, 30.063231283397464 ], [ -94.661243835060546, 30.064020283825592 ], [ -94.660998834203298, 30.064619283429369 ], [ -94.660265834730751, 30.066417283773571 ], [ -94.660022834547462, 30.067017284007679 ], [ -94.65997983454929, 30.067123284426774 ], [ -94.659592834784121, 30.068085284196037 ], [ -94.659074834133605, 30.069376284521748 ], [ -94.658295833969845, 30.07128928513141 ], [ -94.65786183396439, 30.072356285169299 ], [ -94.65754383441697, 30.073156285422886 ], [ -94.657179833614592, 30.074075285464712 ], [ -94.656611833504599, 30.07556828649993 ], [ -94.65639483384679, 30.076141286717171 ], [ -94.656309834051541, 30.07637528598422 ], [ -94.656536833581285, 30.076363286515296 ], [ -94.656620834476115, 30.076350286692271 ], [ -94.656916833794554, 30.076222286304656 ], [ -94.657441834174307, 30.07595028599324 ], [ -94.657630834449819, 30.075876285872813 ], [ -94.657713834211847, 30.075849286434778 ], [ -94.657769834635474, 30.075832286629385 ], [ -94.659071835147117, 30.075590285813526 ], [ -94.660566834507534, 30.075356285931104 ], [ -94.662057835475125, 30.075111285803878 ], [ -94.662200835775593, 30.075088285667341 ], [ -94.663699836172981, 30.074852286107827 ], [ -94.664370836365876, 30.074741286007942 ], [ -94.664991836527562, 30.074640285736383 ], [ -94.666386836876839, 30.074431285437011 ], [ -94.666456836523736, 30.07442128567244 ], [ -94.667058836497034, 30.074321285612836 ], [ -94.667141836740782, 30.074306285353053 ], [ -94.667393836813673, 30.074264285128365 ], [ -94.667477836352859, 30.07425128579191 ], [ -94.667782836846314, 30.074199285436748 ], [ -94.668698836696038, 30.074046285228995 ], [ -94.669004837380015, 30.073995285737222 ], [ -94.669312836782296, 30.073946285471713 ], [ -94.670177837555087, 30.073809285467281 ], [ -94.670239837879933, 30.073799285149686 ], [ -94.670548837536103, 30.073751285677215 ], [ -94.670807837585414, 30.073710285505296 ], [ -94.67158883760591, 30.073588285618577 ], [ -94.67184883835084, 30.073548285253832 ], [ -94.672023837974351, 30.073519285421447 ], [ -94.672551837917638, 30.073436285625171 ], [ -94.672727837709303, 30.073409285100507 ], [ -94.672981838108981, 30.073371284887457 ], [ -94.673744838595582, 30.073259285188644 ], [ -94.673999838752081, 30.073222284815948 ], [ -94.674143838898928, 30.07319728485033 ], [ -94.674578838539205, 30.073123285124083 ], [ -94.674723838959238, 30.073099285394296 ], [ -94.675735839044293, 30.072924284779511 ], [ -94.67717283964403, 30.072677285141459 ], [ -94.67737983960707, 30.072644284726223 ], [ -94.678777839554371, 30.072419285054508 ], [ -94.679792839589354, 30.07225728452838 ], [ -94.680385840456609, 30.07216028460758 ], [ -94.681268840451807, 30.072015285057052 ], [ -94.681853840121647, 30.071920284846886 ], [ -94.683400840386525, 30.071682284772574 ], [ -94.68492184144813, 30.071430284675341 ], [ -94.685702841050386, 30.071309284396254 ], [ -94.687181841792849, 30.071080284271623 ], [ -94.687566841926326, 30.071011283773593 ], [ -94.687758841671737, 30.070978284592233 ], [ -94.688727842226655, 30.070825283899037 ], [ -94.689114842633373, 30.070765284056449 ], [ -94.689246842418939, 30.070744284133124 ], [ -94.689646842752495, 30.070682283970047 ], [ -94.689779841963841, 30.070662284236214 ], [ -94.69024984284637, 30.070589283821384 ], [ -94.690856843031398, 30.070497284019169 ], [ -94.691657842778326, 30.070363283624484 ], [ -94.692017842447697, 30.070304284098118 ], [ -94.692127842998644, 30.070286283830058 ], [ -94.692410842956463, 30.070239283604334 ], [ -94.693260843038829, 30.070100283962944 ], [ -94.693544843626611, 30.070054283903463 ], [ -94.693613843522982, 30.070043283924463 ], [ -94.693829843634248, 30.070009283925831 ], [ -94.69468484386536, 30.069878284122691 ], [ -94.694970843762704, 30.069835283589885 ], [ -94.695030843464721, 30.069823283232623 ], [ -94.695213843866469, 30.06979128343718 ], [ -94.6952748434082, 30.069781283898461 ], [ -94.695343843724331, 30.069769283710052 ], [ -94.695552843375296, 30.069737283847569 ], [ -94.695622843358521, 30.069726283284094 ], [ -94.696061843758457, 30.069656283581143 ], [ -94.69738084439787, 30.069447283362276 ], [ -94.697421844124605, 30.069441283632028 ], [ -94.697820844051719, 30.069374283052344 ], [ -94.698396844620177, 30.069279283887468 ], [ -94.700127844855714, 30.068997283591731 ], [ -94.700704844671066, 30.068903283408801 ], [ -94.700738845008658, 30.069514283516749 ], [ -94.700786845376285, 30.070345283667027 ], [ -94.700830845047022, 30.071351283521022 ], [ -94.700857845613882, 30.071964284358572 ], [ -94.700866845427697, 30.072201283901496 ], [ -94.70087484573213, 30.072396284452275 ], [ -94.700907845308492, 30.073216284022497 ], [ -94.70089484496657, 30.07369328412679 ], [ -94.700892845013499, 30.07379328442105 ], [ -94.700883845137184, 30.074126284081679 ], [ -94.700839845423644, 30.075033284344784 ], [ -94.700791845607739, 30.076055284696579 ], [ -94.700790845597382, 30.076107284386516 ], [ -94.700786845332189, 30.076326284916053 ], [ -94.700824845856161, 30.076826284730899 ], [ -94.700972845091428, 30.07746228541534 ], [ -94.70106684556464, 30.077724284704587 ], [ -94.701107845132199, 30.07783928528529 ], [ -94.701441845575332, 30.078552285472973 ], [ -94.701529845699113, 30.0787402856004 ], [ -94.701793845949169, 30.079304285490672 ], [ -94.701881845571606, 30.079493285519543 ], [ -94.702047846443406, 30.079837285070663 ], [ -94.702547846090624, 30.080871285858823 ], [ -94.702714846117019, 30.081216285756074 ], [ -94.702793846636908, 30.081381285728018 ], [ -94.703010845785769, 30.081911286202097 ], [ -94.703209846733031, 30.082508285787771 ], [ -94.703289845939921, 30.08280828573244 ], [ -94.703385846797659, 30.083318286187424 ], [ -94.703414846412429, 30.083514286318152 ], [ -94.703426846839406, 30.08373728669682 ], [ -94.703452846578003, 30.084146286405506 ], [ -94.703461846362472, 30.084695286381997 ], [ -94.70345984703043, 30.086252286814229 ], [ -94.703459846452247, 30.086565286936754 ], [ -94.703490846432331, 30.087086286861297 ], [ -94.703526846623774, 30.087277287129716 ], [ -94.703603846722515, 30.087582287222833 ], [ -94.703773846460763, 30.087964287171534 ], [ -94.703918847274466, 30.088212287273539 ], [ -94.704034846922809, 30.088382286892372 ], [ -94.704249847247638, 30.088653287568842 ], [ -94.704345846650796, 30.088754287547133 ], [ -94.704695847025363, 30.089029287205538 ], [ -94.704969847294137, 30.08922228721725 ], [ -94.705168847358578, 30.089347287270947 ], [ -94.705477847495175, 30.089506287725435 ], [ -94.705821847822889, 30.089628287223764 ], [ -94.705891847779966, 30.089653287751297 ], [ -94.707713847970084, 30.090236287482135 ], [ -94.708112847933776, 30.090391287233551 ], [ -94.708393847691852, 30.090545287358506 ], [ -94.708589847601203, 30.090672287870301 ], [ -94.708928848718529, 30.090934287136655 ], [ -94.709120848720133, 30.091107287354877 ], [ -94.709259848174725, 30.091268287200545 ], [ -94.709482848273936, 30.091580287207911 ], [ -94.709567848529133, 30.091708287766483 ], [ -94.709688848228737, 30.091912287859333 ], [ -94.709780848757617, 30.0921202876801 ], [ -94.70987584898424, 30.092418287885188 ], [ -94.709912848595977, 30.092590287756433 ], [ -94.70996484850005, 30.092823287761348 ], [ -94.710086848807478, 30.093414288407022 ], [ -94.710242848706784, 30.094162288451265 ], [ -94.710447848840957, 30.09518928838688 ], [ -94.710566848994489, 30.095782288310385 ], [ -94.710797848863038, 30.096985289095134 ], [ -94.711109848749018, 30.098605288825848 ], [ -94.711183849055885, 30.099040289012969 ], [ -94.711449849528918, 30.100604289057333 ], [ -94.711470849804684, 30.100724289852419 ], [ -94.711667849703957, 30.101811289653487 ], [ -94.71195084914315, 30.10338029008998 ], [ -94.71202284999903, 30.103718290226489 ], [ -94.712156849257923, 30.104336290057553 ], [ -94.712323849458429, 30.105307290203214 ], [ -94.712697849695616, 30.107214290327352 ], [ -94.713154849672549, 30.109428291183495 ], [ -94.713299850658572, 30.110128290976174 ], [ -94.713505850352064, 30.111072291826094 ], [ -94.71357185073974, 30.111323291782973 ], [ -94.713617850237839, 30.11149829129192 ], [ -94.71390285092906, 30.111958292020297 ], [ -94.713944850011359, 30.112025291908243 ], [ -94.714054850145729, 30.112177291327065 ], [ -94.714304850786945, 30.112450292082258 ], [ -94.714573850926413, 30.112689291646959 ], [ -94.714777850375796, 30.112839291454701 ], [ -94.714974851151027, 30.112954291979261 ], [ -94.715359851090383, 30.11315029187546 ], [ -94.715505851105775, 30.113208291974146 ], [ -94.71560085131712, 30.113239292005552 ], [ -94.716030851017621, 30.113383292023947 ], [ -94.716295850877927, 30.113436291806494 ], [ -94.71663785148148, 30.113482291533476 ], [ -94.718097852008384, 30.11351129230653 ], [ -94.722523852448404, 30.113620291880245 ], [ -94.722749853305686, 30.113634291471435 ], [ -94.722914853009485, 30.113653291368401 ], [ -94.723238852765789, 30.113718291704874 ], [ -94.723496852778482, 30.113781291443271 ], [ -94.723519852969076, 30.113787291284055 ], [ -94.723954853125932, 30.113941291368448 ], [ -94.724242853480405, 30.114084291974017 ], [ -94.724439853388787, 30.114195291689935 ], [ -94.724624853293179, 30.114322291344617 ], [ -94.724757852876635, 30.114426291464675 ], [ -94.725056853941879, 30.114661292120442 ], [ -94.72540185359145, 30.114941292008385 ], [ -94.725467853138099, 30.1149952915518 ], [ -94.725698853211497, 30.115145291908242 ], [ -94.725921853990556, 30.115276291537313 ], [ -94.726136854205421, 30.115384292268295 ], [ -94.726317854269467, 30.115457292035021 ], [ -94.726586853574716, 30.115542291615114 ], [ -94.727011854461409, 30.115678291754488 ], [ -94.727334854390165, 30.115680292155805 ], [ -94.728306854017262, 30.115713291568035 ], [ -94.728701854717514, 30.115726291843064 ], [ -94.728844854858536, 30.115732292152519 ], [ -94.729702854769585, 30.11574729156569 ], [ -94.732195855086559, 30.115756291548117 ], [ -94.733080856054769, 30.115760291668579 ], [ -94.733492855374465, 30.115765291932707 ], [ -94.734421855646957, 30.115776291551715 ], [ -94.734830855696956, 30.115782292086344 ], [ -94.736699856378195, 30.115784291247937 ], [ -94.737208856514144, 30.11579029197112 ], [ -94.737598856556957, 30.11579629198015 ], [ -94.737838856430983, 30.115812291320402 ], [ -94.738025857090037, 30.115834291644092 ], [ -94.738132856697703, 30.115863291536449 ], [ -94.738154857107318, 30.115825291797346 ], [ -94.73822285654731, 30.115715291765436 ], [ -94.738245856454895, 30.115678291409804 ], [ -94.738640857472618, 30.115087291699282 ], [ -94.73889885727813, 30.114753291453138 ], [ -94.739102857325506, 30.114472290933314 ], [ -94.739238857565212, 30.114294290953353 ], [ -94.739758857653456, 30.113620291303654 ], [ -94.740457857366223, 30.112664291107421 ], [ -94.741217857831231, 30.111659290489531 ], [ -94.741964857851912, 30.110643290418054 ], [ -94.742115857832772, 30.110447290157992 ], [ -94.742301857939935, 30.110203290755965 ], [ -94.742642858113356, 30.109759290571372 ], [ -94.743329858203367, 30.10884429019092 ], [ -94.744062857822087, 30.107866289702535 ], [ -94.744489857832008, 30.107284289503109 ], [ -94.744765857915823, 30.10691028943036 ], [ -94.744882858409525, 30.10673228916389 ], [ -94.747709858832891, 30.102421288374998 ], [ -94.748655858795786, 30.100980288351778 ], [ -94.748777858680683, 30.10079628802648 ], [ -94.749484858968586, 30.099729287828882 ], [ -94.749580859253157, 30.099582288088122 ], [ -94.750130858840393, 30.098745287723311 ], [ -94.751976859648551, 30.095934287219311 ], [ -94.752231859188484, 30.09554828734549 ], [ -94.752673859284286, 30.094954286872476 ], [ -94.75283585978849, 30.094761287179132 ], [ -94.75295285928955, 30.094622286739401 ], [ -94.752997859736396, 30.094572286357707 ], [ -94.753209859478162, 30.0943432870626 ], [ -94.753413859785624, 30.094146286472309 ], [ -94.753526860278697, 30.094043286350395 ], [ -94.753711860085261, 30.093877286894088 ], [ -94.753803860176731, 30.09379328641182 ], [ -94.7538558597048, 30.093748286761912 ], [ -94.754100860336081, 30.093564286732445 ], [ -94.754200860295668, 30.093490286296703 ], [ -94.754401860568152, 30.093346286091869 ], [ -94.755004860030795, 30.092918286382751 ], [ -94.755206860332848, 30.092776286342801 ], [ -94.755302860508237, 30.092708286528271 ], [ -94.755566859899403, 30.0925232859761 ], [ -94.755657860716241, 30.092461286472957 ], [ -94.755935860590142, 30.09226828585156 ], [ -94.755984860129374, 30.092233285888518 ], [ -94.756967860507984, 30.091552285605676 ], [ -94.757188860864048, 30.091400286179063 ], [ -94.757294860947013, 30.091325285806203 ], [ -94.757469860325301, 30.091201285563503 ], [ -94.757994861225669, 30.090833285389145 ], [ -94.758170861240288, 30.090711285589826 ], [ -94.758326860551037, 30.09060128543457 ], [ -94.758794861191802, 30.090273285349515 ], [ -94.758951860670308, 30.090164285576819 ], [ -94.759191861474449, 30.089995285555631 ], [ -94.759913861452219, 30.089488285531818 ], [ -94.760154861579707, 30.089320285800675 ], [ -94.760591861857506, 30.08901328511309 ], [ -94.76072486162353, 30.088919285359861 ], [ -94.761651861488644, 30.088268285386338 ], [ -94.762429862057772, 30.087708284875113 ], [ -94.76299586156513, 30.087301284907316 ], [ -94.763012861808477, 30.087288285264503 ], [ -94.763067862206157, 30.087249285104519 ], [ -94.76308586195978, 30.087237284679016 ], [ -94.76316386221329, 30.087180285055489 ], [ -94.763318862518801, 30.087068285288289 ], [ -94.764020862176025, 30.086564285124094 ], [ -94.764255861852376, 30.08639628509329 ], [ -94.764986862617732, 30.085859284775992 ], [ -94.766913862845456, 30.084448284100844 ], [ -94.767184862854137, 30.084253283860019 ], [ -94.767922862653293, 30.083725283775571 ], [ -94.76794486326996, 30.083708283906944 ], [ -94.76801286304682, 30.083659284432301 ], [ -94.768035863060206, 30.083644283956911 ], [ -94.768239863046119, 30.083497283514927 ], [ -94.768348863142236, 30.08341928364683 ], [ -94.768571863350346, 30.0832592839967 ], [ -94.768851863462316, 30.083056284019623 ], [ -94.769056863668752, 30.082910283391929 ], [ -94.769542863365515, 30.082560283441232 ], [ -94.771356864097783, 30.081212283330931 ], [ -94.772033864030718, 30.080688283263964 ], [ -94.77263486401867, 30.080214283053557 ], [ -94.772987863925209, 30.07996128287035 ], [ -94.773364864720122, 30.079699283441077 ], [ -94.774399864139014, 30.07909428260767 ], [ -94.774633865140075, 30.078957282915049 ], [ -94.775556865094458, 30.078416282879083 ], [ -94.775918864761991, 30.078202282342236 ], [ -94.776410865082553, 30.077912282355847 ], [ -94.776845865057339, 30.077681282890623 ], [ -94.777017864674434, 30.077583282373151 ], [ -94.777384865107081, 30.07737628230273 ], [ -94.777579864848548, 30.077263282677112 ], [ -94.778168865874704, 30.076926281910787 ], [ -94.778364865456638, 30.076814282114377 ], [ -94.778787865719849, 30.076565282069556 ], [ -94.780059865849637, 30.075818281707136 ], [ -94.780483866473176, 30.075570281942287 ], [ -94.78064586561112, 30.075475282304239 ], [ -94.781133866501477, 30.07519028195069 ], [ -94.78129686605061, 30.075096281578478 ], [ -94.781894865878527, 30.074747282112387 ], [ -94.782106866573514, 30.074624282077639 ], [ -94.783688867130792, 30.073700281850869 ], [ -94.784287867354806, 30.073352281107596 ], [ -94.784616866843606, 30.073159280909817 ], [ -94.785605867211061, 30.072584281512366 ], [ -94.785935867391672, 30.072392280897709 ], [ -94.785954867396569, 30.072380280887806 ], [ -94.786011867568291, 30.072347281506136 ], [ -94.786031867125629, 30.072336281448695 ], [ -94.786241867820166, 30.072212280779461 ], [ -94.786871867858522, 30.071842280850909 ], [ -94.787082867045058, 30.071719280638032 ], [ -94.787239867594266, 30.071625281137294 ], [ -94.787710867887654, 30.071347280599191 ], [ -94.787868867975703, 30.071255280556411 ], [ -94.78800486760025, 30.071174281164275 ], [ -94.788414867602299, 30.07093428055628 ], [ -94.788551868015929, 30.07085428061221 ], [ -94.78862586802326, 30.070810280525194 ], [ -94.788850868261932, 30.070679280366939 ], [ -94.788925867556756, 30.070636280956524 ], [ -94.788978867950362, 30.070604280734102 ], [ -94.789138867660967, 30.070511280291797 ], [ -94.78919286850423, 30.070480280858462 ], [ -94.789306867521702, 30.070413280956497 ], [ -94.789648868244782, 30.07021628077765 ], [ -94.789762867800775, 30.07015028073711 ], [ -94.789994868419114, 30.07001728002037 ], [ -94.79069386796435, 30.069618280057053 ], [ -94.790926868739547, 30.069486280437378 ], [ -94.791006868194842, 30.069438280129216 ], [ -94.791249868727064, 30.069295280178945 ], [ -94.791330868470453, 30.069248280534328 ], [ -94.791444868541021, 30.069179280276476 ], [ -94.791789868603061, 30.0689752805458 ], [ -94.791904868686629, 30.068907279845128 ], [ -94.792161869160097, 30.068754280237204 ], [ -94.792934868468635, 30.068299279685043 ], [ -94.793192868490721, 30.068147279885643 ], [ -94.793424868594556, 30.067996280311988 ], [ -94.793860869526767, 30.067714280150106 ], [ -94.794107869499626, 30.067520279975835 ], [ -94.794149869500743, 30.067488280177344 ], [ -94.794319869439448, 30.067341279703207 ], [ -94.794341869452893, 30.067319279963794 ], [ -94.794410869460364, 30.067257279786034 ], [ -94.794433869038173, 30.067236279933887 ], [ -94.794442869462529, 30.067224280005718 ], [ -94.794473868842601, 30.067190279380917 ], [ -94.79448386886034, 30.067179279352349 ], [ -94.794502869432051, 30.067157279613919 ], [ -94.794559869207461, 30.067092279638288 ], [ -94.794579869348468, 30.067071279790134 ], [ -94.794769869362923, 30.066852279488629 ], [ -94.794873869772829, 30.066710279761711 ], [ -94.795135869613674, 30.066356279664067 ], [ -94.795300868985478, 30.066087278984742 ], [ -94.795481869582076, 30.065760279422538 ], [ -94.795591869433395, 30.065516279294961 ], [ -94.795597869209985, 30.065504279302708 ], [ -94.795732869842709, 30.065136279316945 ], [ -94.795752869585343, 30.065079279519836 ], [ -94.795778869438848, 30.065006278851925 ], [ -94.795808869853118, 30.064876278890321 ], [ -94.795851869522593, 30.064694278765025 ], [ -94.795910869299661, 30.064254279285009 ], [ -94.795939869266647, 30.064046278696893 ], [ -94.795955869852847, 30.063871278603482 ], [ -94.795955869753371, 30.063852278941873 ], [ -94.795955869304336, 30.063270279250162 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 304, "Tract": "48291701200", "Area_SqMi": 61.15567911779862, "total_2009": 2246, "total_2010": 2178, "total_2011": 2680, "total_2012": 2741, "total_2013": 2671, "total_2014": 2561, "total_2015": 2243, "total_2016": 1872, "total_2017": 1946, "total_2018": 2166, "total_2019": 2115, "total_2020": 2165, "age1": 475, "age2": 914, "age3": 375, "earn1": 402, "earn2": 617, "earn3": 745, "naics_s01": 17, "naics_s02": 12, "naics_s03": 1, "naics_s04": 79, "naics_s05": 219, "naics_s06": 53, "naics_s07": 284, "naics_s08": 0, "naics_s09": 35, "naics_s10": 81, "naics_s11": 26, "naics_s12": 63, "naics_s13": 6, "naics_s14": 17, "naics_s15": 9, "naics_s16": 434, "naics_s17": 2, "naics_s18": 280, "naics_s19": 48, "naics_s20": 98, "race1": 1431, "race2": 262, "race3": 12, "race4": 39, "race5": 0, "race6": 20, "ethnicity1": 1404, "ethnicity2": 360, "edu1": 236, "edu2": 403, "edu3": 396, "edu4": 254, "Shape_Length": 343746.80706151831, "Shape_Area": 1704915664.813338, "total_2021": 1639, "total_2022": 1764 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.832018877720003, 30.047883274098481 ], [ -94.831526877563093, 30.046075274132416 ], [ -94.830211877040995, 30.044895273478371 ], [ -94.829898876850649, 30.044777273905009 ], [ -94.828446877082072, 30.044230273396316 ], [ -94.826382876158775, 30.043170273506334 ], [ -94.825703876366035, 30.04228327362139 ], [ -94.825529875661644, 30.042056273403784 ], [ -94.825228876515325, 30.04166127312914 ], [ -94.825076875935693, 30.041337273727322 ], [ -94.82495587563038, 30.041079273264849 ], [ -94.82474987562891, 30.040640272755198 ], [ -94.824316875844559, 30.039714273441568 ], [ -94.824180875247635, 30.039307273157075 ], [ -94.824028875857152, 30.038849273298172 ], [ -94.823788875837778, 30.03813127270482 ], [ -94.823521875730933, 30.037329272940465 ], [ -94.823516875039616, 30.037032272121358 ], [ -94.823495875636411, 30.035906272025969 ], [ -94.823494874902181, 30.035841272559868 ], [ -94.823533875685698, 30.035151272188575 ], [ -94.823556875587798, 30.034744272180095 ], [ -94.823589874852459, 30.034170272334979 ], [ -94.823799874865514, 30.033560271438873 ], [ -94.823932874919791, 30.033176271432872 ], [ -94.823960875601472, 30.033094271365375 ], [ -94.824043875453327, 30.032851271331303 ], [ -94.82407287487321, 30.032771272031454 ], [ -94.824800875915912, 30.031983271727757 ], [ -94.825250875964883, 30.031497271604739 ], [ -94.825267875752317, 30.031467271395535 ], [ -94.826342875397842, 30.029631270495845 ], [ -94.826386875722307, 30.029540271155049 ], [ -94.826514875907321, 30.029278270371659 ], [ -94.826986875454097, 30.028315270156071 ], [ -94.826925875997063, 30.026462270364789 ], [ -94.825744874962098, 30.024745269576606 ], [ -94.82438587530288, 30.023734269517199 ], [ -94.822939874561214, 30.022514269795543 ], [ -94.82218787395179, 30.021625269155194 ], [ -94.82222687418593, 30.020365269460594 ], [ -94.823447874939404, 30.019562268485302 ], [ -94.824268874237035, 30.018839268547918 ], [ -94.82432487495781, 30.018067268303405 ], [ -94.823899874157505, 30.01738026853495 ], [ -94.822677874030234, 30.016889268079314 ], [ -94.821163873509107, 30.016056268629551 ], [ -94.82023787353846, 30.014752268294497 ], [ -94.819787873451219, 30.013260267497333 ], [ -94.818857872590769, 30.011816267787502 ], [ -94.818411872552858, 30.010464266955207 ], [ -94.818738872422514, 30.00937126694928 ], [ -94.820086873565103, 30.008809267131507 ], [ -94.821796873239137, 30.008201266383988 ], [ -94.822696873770923, 30.007477266549031 ], [ -94.822756873551, 30.00681126638484 ], [ -94.822464873753603, 30.005839266115718 ], [ -94.821752873869755, 30.00494926632707 ], [ -94.820968872772227, 30.00434126605948 ], [ -94.819994872956315, 30.004053266201161 ], [ -94.819183873099504, 30.003831266032744 ], [ -94.817464872160613, 30.00412326637769 ], [ -94.816240871613218, 30.004821266550714 ], [ -94.815914871626433, 30.004971266461894 ], [ -94.814553871931324, 30.005355266694369 ], [ -94.812644870608409, 30.005669266014174 ], [ -94.811525870317908, 30.005488266273485 ], [ -94.810583870818945, 30.004971266802233 ], [ -94.810081870377886, 30.004232265920489 ], [ -94.809746870158207, 30.003235266044879 ], [ -94.809768870123065, 30.002681265608732 ], [ -94.810127870660949, 30.001614265871165 ], [ -94.810652870539855, 30.000210265840824 ], [ -94.810729870696647, 30.000004265099857 ], [ -94.811694870228933, 29.99839026515615 ], [ -94.811701870773717, 29.998380265327672 ], [ -94.81282587033725, 29.997051264508599 ], [ -94.813383870500601, 29.995932264410992 ], [ -94.814268870857887, 29.994490264218953 ], [ -94.815378871720526, 29.99365526389834 ], [ -94.815604870967732, 29.993515264196017 ], [ -94.816521871365183, 29.992951264101581 ], [ -94.817206871196703, 29.992174263779301 ], [ -94.816892872059313, 29.991578263013732 ], [ -94.817055871796157, 29.990980263438544 ], [ -94.816657871833598, 29.989995262865794 ], [ -94.81523187127064, 29.988695263105061 ], [ -94.813617870226821, 29.98768926247941 ], [ -94.812296870584689, 29.986976262295808 ], [ -94.811730870019076, 29.986514262904439 ], [ -94.810514869736934, 29.985676262849772 ], [ -94.810074869487678, 29.984984262372066 ], [ -94.809969869460403, 29.984334262565252 ], [ -94.810158869916449, 29.98386026191876 ], [ -94.810262869954329, 29.983600262035726 ], [ -94.810703869247973, 29.982929261472666 ], [ -94.811499869267152, 29.982238261366419 ], [ -94.812191869556671, 29.981734261973596 ], [ -94.812558869556014, 29.981171261658329 ], [ -94.812553870463802, 29.980850261116665 ], [ -94.812400870094905, 29.97961526100352 ], [ -94.812265869965699, 29.97888526106275 ], [ -94.812100869637618, 29.977992260922399 ], [ -94.811898869297949, 29.977101260378227 ], [ -94.811856869043865, 29.97613726037493 ], [ -94.811761869860717, 29.975251260097231 ], [ -94.811970869263504, 29.974659260477885 ], [ -94.812354869714071, 29.97409325969447 ], [ -94.812966869831385, 29.973285259435986 ], [ -94.813456869911576, 29.972638259489642 ], [ -94.81413287013909, 29.971960259556457 ], [ -94.814449870152174, 29.971371259171349 ], [ -94.814377870081131, 29.970796259348369 ], [ -94.813902870013209, 29.970164259275069 ], [ -94.812983869752259, 29.96969025872988 ], [ -94.810842868686947, 29.969288259180203 ], [ -94.808749868221454, 29.968841258665496 ], [ -94.808667868739676, 29.968823259129287 ], [ -94.806824868200039, 29.967988258672541 ], [ -94.80545586712654, 29.966951259131982 ], [ -94.804591866950261, 29.966133258432702 ], [ -94.804418867597406, 29.965542258898665 ], [ -94.804476867651118, 29.964994258477446 ], [ -94.8046528675209, 29.964368258611898 ], [ -94.805396867802628, 29.964113258272551 ], [ -94.807059867672038, 29.964368257934371 ], [ -94.807959868139505, 29.965072257915317 ], [ -94.808801867861661, 29.965522258318497 ], [ -94.809525868872754, 29.965953258668367 ], [ -94.810073869010736, 29.965894258520539 ], [ -94.810621868683199, 29.965307258459816 ], [ -94.810640869145431, 29.964739258558534 ], [ -94.810108868210747, 29.963031257784149 ], [ -94.81010886862444, 29.962861257484899 ], [ -94.809924868646164, 29.962597257857169 ], [ -94.80960386805836, 29.961843257613438 ], [ -94.808918868201374, 29.960572256872254 ], [ -94.807940867785263, 29.959437256863058 ], [ -94.80680186717187, 29.957999257103531 ], [ -94.806735866970087, 29.95788625676887 ], [ -94.806003867139637, 29.95663825670907 ], [ -94.805533866703897, 29.955523256790975 ], [ -94.805489867031312, 29.955047256300649 ], [ -94.805435867337465, 29.95444725639069 ], [ -94.805670866469555, 29.953273256082561 ], [ -94.806159866686926, 29.952510255932683 ], [ -94.80719686736964, 29.952040255817071 ], [ -94.808449867378357, 29.951981255601414 ], [ -94.809427867384684, 29.952784256116232 ], [ -94.810092867960336, 29.954192255623546 ], [ -94.810240868124737, 29.954431255684373 ], [ -94.810699868527408, 29.955171256431981 ], [ -94.810836867839328, 29.955403256351545 ], [ -94.81100786794083, 29.955692256327271 ], [ -94.811110867990891, 29.955866256354948 ], [ -94.811394868911805, 29.956117256689708 ], [ -94.811639869023395, 29.956185256196445 ], [ -94.811922868338826, 29.956175256401906 ], [ -94.812284869156841, 29.955921256427057 ], [ -94.812506868834959, 29.95563325653011 ], [ -94.812724869334772, 29.955350256481967 ], [ -94.812920869161744, 29.954473256259671 ], [ -94.813145868843023, 29.9528002556766 ], [ -94.813243869046687, 29.951812255338069 ], [ -94.813301868997911, 29.949760254498756 ], [ -94.813204868247254, 29.949115254966951 ], [ -94.813130868919856, 29.948646254728153 ], [ -94.813086868421024, 29.948371254700081 ], [ -94.812616868215187, 29.947627254367564 ], [ -94.812245868782668, 29.946825254542436 ], [ -94.811756867851344, 29.946121253774589 ], [ -94.811462867742563, 29.945416254488755 ], [ -94.811325867948653, 29.944712253617528 ], [ -94.811286868399293, 29.943949253965769 ], [ -94.811247867472943, 29.942775253688396 ], [ -94.81109086768295, 29.942031253782758 ], [ -94.810816867279243, 29.941190252880279 ], [ -94.810249867126984, 29.940642253302933 ], [ -94.80934986713423, 29.94048525312645 ], [ -94.807803866557251, 29.940818253332388 ], [ -94.806707866896403, 29.941757253796727 ], [ -94.805122866310995, 29.943342254320786 ], [ -94.804770866495289, 29.944614254037056 ], [ -94.804789866490793, 29.946453254346931 ], [ -94.805435866498385, 29.947784254532774 ], [ -94.805553867029332, 29.948528255333418 ], [ -94.805487866235524, 29.948707255002049 ], [ -94.80535786642136, 29.949056254882102 ], [ -94.804848866700567, 29.949760255231801 ], [ -94.804124866411129, 29.949995254854041 ], [ -94.803251865668045, 29.949791254851892 ], [ -94.802950866165801, 29.949721255475648 ], [ -94.801541865218155, 29.948899255095412 ], [ -94.800661865420864, 29.948234254989913 ], [ -94.799639865053948, 29.947340255099107 ], [ -94.797760864724296, 29.946552254791651 ], [ -94.795737864558262, 29.946749254552618 ], [ -94.794305863577492, 29.947286254835966 ], [ -94.792999863759292, 29.947250254764814 ], [ -94.792516863472585, 29.94657025514098 ], [ -94.792999863615549, 29.945711254643662 ], [ -94.79344686391866, 29.94528125433089 ], [ -94.794216864055969, 29.944476254221446 ], [ -94.794860863530801, 29.94334825397123 ], [ -94.794753863770254, 29.942597254039633 ], [ -94.793786863051693, 29.941952253617593 ], [ -94.793160863624777, 29.941916253905973 ], [ -94.792032863363659, 29.942579253834943 ], [ -94.790976862800562, 29.944923254483044 ], [ -94.790439862524579, 29.946123255200884 ], [ -94.789222862628151, 29.946230255239811 ], [ -94.788667862066077, 29.945317255012867 ], [ -94.788664861845618, 29.943743254075034 ], [ -94.788077861553091, 29.94225625395536 ], [ -94.787003861251051, 29.940842253973358 ], [ -94.785517860876951, 29.940449254377366 ], [ -94.783804861146152, 29.940711253876568 ], [ -94.783100860966641, 29.939500253690142 ], [ -94.782331859791285, 29.937406253216768 ], [ -94.78098985987944, 29.936332253407478 ], [ -94.779789859187275, 29.935562253167728 ], [ -94.778751859054651, 29.935347253374367 ], [ -94.777695858678825, 29.935831252939558 ], [ -94.776890858980551, 29.936744253458258 ], [ -94.776030858351433, 29.937835253859785 ], [ -94.774184858042616, 29.940977254194781 ], [ -94.774178858132714, 29.940794254225469 ], [ -94.773251857708274, 29.940456254324193 ], [ -94.772605857893907, 29.939686254152029 ], [ -94.772355857235155, 29.938943253981439 ], [ -94.77198785744902, 29.937981253808346 ], [ -94.771895857607589, 29.93716825385842 ], [ -94.771964857592721, 29.935848253651152 ], [ -94.771986857856163, 29.935622253186065 ], [ -94.772199857357791, 29.934251253376807 ], [ -94.772376857675113, 29.932821252858396 ], [ -94.77230385705802, 29.931922252510596 ], [ -94.77198985758406, 29.931553252976578 ], [ -94.77182485736779, 29.931482252658139 ], [ -94.771395856913301, 29.931345252692616 ], [ -94.770423857020759, 29.931758252399693 ], [ -94.76951285705168, 29.9325062530514 ], [ -94.768931856224356, 29.933242253445499 ], [ -94.76830485598542, 29.934515253654837 ], [ -94.767961856011539, 29.934940253095412 ], [ -94.767925855930741, 29.934981253142162 ], [ -94.7674568566446, 29.935613253950837 ], [ -94.766704856125259, 29.936101253530584 ], [ -94.765445855428638, 29.936175253550612 ], [ -94.764168855145769, 29.935681253488823 ], [ -94.763315855200545, 29.934987253552368 ], [ -94.76316085555446, 29.934798253195165 ], [ -94.762596855077248, 29.933477252984428 ], [ -94.762842855019244, 29.932214253412898 ], [ -94.762926855198145, 29.93128825328564 ], [ -94.763369855127621, 29.930325253052853 ], [ -94.764758855736758, 29.9289612519438 ], [ -94.765508855121126, 29.927880251889459 ], [ -94.765654855676246, 29.927521252296817 ], [ -94.766462855392732, 29.925721251719906 ], [ -94.766773855264773, 29.925467251490115 ], [ -94.76772385555789, 29.924698250913398 ], [ -94.769121856229319, 29.923642250635439 ], [ -94.769615856776923, 29.922892250540531 ], [ -94.767757855248547, 29.921631250634235 ], [ -94.767660855377997, 29.92154225061028 ], [ -94.766939855265335, 29.92088125072635 ], [ -94.765780854936551, 29.920011250029074 ], [ -94.765629855053646, 29.919433250352572 ], [ -94.765194855227577, 29.917755249860214 ], [ -94.765128854998281, 29.917437249924298 ], [ -94.765152855220222, 29.915963249453188 ], [ -94.76506685510931, 29.915032249139937 ], [ -94.764536854716638, 29.914276249374058 ], [ -94.76388985390534, 29.913662249030139 ], [ -94.763786854541138, 29.913629248983312 ], [ -94.762804854303283, 29.913416248828767 ], [ -94.761792854299543, 29.913366249052952 ], [ -94.760812853593862, 29.913606249517638 ], [ -94.759269853494459, 29.914004249717291 ], [ -94.758360852994102, 29.914397249309037 ], [ -94.757734853272837, 29.914488249830871 ], [ -94.755884852417097, 29.915604249652823 ], [ -94.75495185224041, 29.916217249802852 ], [ -94.754025852186885, 29.916384249925798 ], [ -94.753180852232816, 29.916218249648885 ], [ -94.752651851030393, 29.915198249996475 ], [ -94.752763851119695, 29.913981250035693 ], [ -94.753353851941384, 29.913151249481373 ], [ -94.755423851890484, 29.911295248637078 ], [ -94.756367852818343, 29.91079524853571 ], [ -94.757389852763808, 29.910220248391571 ], [ -94.758433852763559, 29.909923248968823 ], [ -94.759807853580909, 29.909757248670061 ], [ -94.760675853736643, 29.909555248619103 ], [ -94.761584853097062, 29.909039248109277 ], [ -94.762896854265961, 29.908809247879628 ], [ -94.763762854550691, 29.908866248550073 ], [ -94.764465854600218, 29.908939247969204 ], [ -94.765604854857145, 29.909473248164662 ], [ -94.76644785514317, 29.910648248394129 ], [ -94.767261855106412, 29.911970249108446 ], [ -94.767863855730894, 29.912382248535 ], [ -94.769138855243355, 29.912273248913678 ], [ -94.769703855644082, 29.911672248403157 ], [ -94.769867855405536, 29.909896247977301 ], [ -94.769494855839909, 29.908600247586445 ], [ -94.769314855507986, 29.908176247634231 ], [ -94.768940855328424, 29.907289247414621 ], [ -94.767805854729019, 29.906089247579384 ], [ -94.765966854993749, 29.905138247595382 ], [ -94.764722854026274, 29.905165247116432 ], [ -94.763771854373175, 29.905547247981122 ], [ -94.762607853457212, 29.906249247852013 ], [ -94.761959853558594, 29.906791247512437 ], [ -94.760759853188361, 29.907164247774528 ], [ -94.759507852478663, 29.906665248114432 ], [ -94.757539852105893, 29.905878248192614 ], [ -94.755386851670906, 29.905383247627306 ], [ -94.755354851792035, 29.905386248205389 ], [ -94.754518851370989, 29.905554248273116 ], [ -94.752771851539151, 29.906169247845664 ], [ -94.751421850395189, 29.907209248170339 ], [ -94.750416850589787, 29.908399248437519 ], [ -94.749990850988269, 29.908852248726685 ], [ -94.747946850001654, 29.909537248847393 ], [ -94.746729849597187, 29.909302248555345 ], [ -94.745805849400753, 29.90868524854514 ], [ -94.745253848878889, 29.907829248805246 ], [ -94.744979848988152, 29.905499248238787 ], [ -94.7451138488575, 29.903620247574604 ], [ -94.745241848979049, 29.900609246729076 ], [ -94.745304849060659, 29.899133246548466 ], [ -94.746214848923827, 29.896927246771156 ], [ -94.747513849788135, 29.895049245866055 ], [ -94.74823584915822, 29.893410245298526 ], [ -94.748688849333945, 29.891972244868686 ], [ -94.748678848897114, 29.890539244879072 ], [ -94.747669849537843, 29.889616244754272 ], [ -94.746319848963211, 29.889494244524506 ], [ -94.745048848226929, 29.889739244795663 ], [ -94.74374484785416, 29.890717245533512 ], [ -94.742596847834292, 29.892093245070246 ], [ -94.741521848151024, 29.892803245512564 ], [ -94.740207846852655, 29.89238224602401 ], [ -94.739201846695238, 29.891757245505552 ], [ -94.738885847080297, 29.890559245010767 ], [ -94.738603846541253, 29.888928245186928 ], [ -94.738863846296809, 29.887222244518778 ], [ -94.738509847065814, 29.88722824493394 ], [ -94.738424846253622, 29.887230244698678 ], [ -94.735128845925402, 29.887286244963001 ], [ -94.733421845731797, 29.887293245066299 ], [ -94.733341845412198, 29.887293244771964 ], [ -94.733320845033376, 29.887293244925758 ], [ -94.733249845757541, 29.887293244668111 ], [ -94.733125845117058, 29.887293245021212 ], [ -94.733108844861491, 29.887293245077164 ], [ -94.732477844908331, 29.887296244606052 ], [ -94.732262844900106, 29.887297244892434 ], [ -94.731990844900707, 29.887297244813968 ], [ -94.731927844796445, 29.887297244664026 ], [ -94.731593844979457, 29.88729824503211 ], [ -94.731250844669944, 29.887300244657354 ], [ -94.731178844516293, 29.887300244859418 ], [ -94.730909844389785, 29.887303245061283 ], [ -94.730645844508331, 29.887303244964549 ], [ -94.730524844140959, 29.887303244507514 ], [ -94.729375843949498, 29.887309244882232 ], [ -94.728992844661136, 29.887312244953993 ], [ -94.728288843635056, 29.887315245184581 ], [ -94.727613844121151, 29.887318245403662 ], [ -94.726964843729093, 29.887321245209154 ], [ -94.723476843220567, 29.887336244849664 ], [ -94.722098842552541, 29.887342244903877 ], [ -94.721560841797128, 29.887354245411323 ], [ -94.719950841445325, 29.887392244942472 ], [ -94.719413842107414, 29.887405245641386 ], [ -94.719160841555265, 29.887407245022725 ], [ -94.718403841717048, 29.887414244917757 ], [ -94.718143840946595, 29.887417244967448 ], [ -94.717824840840635, 29.887420245378866 ], [ -94.717446841393951, 29.887423245731288 ], [ -94.715761840418878, 29.887441245789443 ], [ -94.715687840891221, 29.887435245124848 ], [ -94.715333840737685, 29.887445245255304 ], [ -94.715288840761588, 29.88744624555201 ], [ -94.715015840397058, 29.887449245051855 ], [ -94.714741840176387, 29.887452245461571 ], [ -94.714629840517318, 29.88745324585414 ], [ -94.714216840385006, 29.887457245135355 ], [ -94.713803840106507, 29.887461245850385 ], [ -94.713321840546939, 29.887465245141378 ], [ -94.709854839122741, 29.887502245549495 ], [ -94.709399839224005, 29.887507245886066 ], [ -94.708092838646408, 29.887522246100922 ], [ -94.707939838629002, 29.887524245773538 ], [ -94.707836838701709, 29.887525245864282 ], [ -94.707734838575249, 29.88752624536459 ], [ -94.707656839028019, 29.887526245933579 ], [ -94.707597838824114, 29.887527245293533 ], [ -94.70746083836049, 29.887529245368118 ], [ -94.707324838367569, 29.887530245410602 ], [ -94.707254838446346, 29.887531245637 ], [ -94.706842838912465, 29.887536245544762 ], [ -94.706501837966883, 29.887540245659018 ], [ -94.70643783876632, 29.887541246118445 ], [ -94.706350838066072, 29.88754124583647 ], [ -94.706062837924222, 29.887545245711856 ], [ -94.705915838492515, 29.887547245558977 ], [ -94.705838837968557, 29.887548245760648 ], [ -94.705764837849102, 29.88754924536272 ], [ -94.705543837899995, 29.887551245848151 ], [ -94.704454838152699, 29.88756324568028 ], [ -94.702078837200347, 29.88759124596389 ], [ -94.700072837156526, 29.887614245985393 ], [ -94.698612836694721, 29.887632245937883 ], [ -94.698043835971092, 29.887638246148473 ], [ -94.697053835738814, 29.887651246305115 ], [ -94.69702983572229, 29.887651245682108 ], [ -94.696926836213791, 29.887652246449022 ], [ -94.696818835985709, 29.887654245933319 ], [ -94.696625836290309, 29.887656246066747 ], [ -94.696336835797069, 29.88766024626948 ], [ -94.69594483596164, 29.887666246181787 ], [ -94.695843835174131, 29.887668246457416 ], [ -94.695851835136551, 29.887897245920286 ], [ -94.695856836030643, 29.888095246009527 ], [ -94.695860836144206, 29.888210245886334 ], [ -94.69590683550777, 29.888706246718925 ], [ -94.695960835344593, 29.888993246747273 ], [ -94.696054836247541, 29.889364246229245 ], [ -94.696111835661611, 29.88958924631433 ], [ -94.696173835488793, 29.889778246608746 ], [ -94.69605283620082, 29.889797246391602 ], [ -94.695932835883227, 29.889877246539694 ], [ -94.695889835218154, 29.889925246915208 ], [ -94.695861835811556, 29.889996246407968 ], [ -94.695850835710871, 29.890231246460161 ], [ -94.695870835330823, 29.890703246746106 ], [ -94.695875836039349, 29.890784246388403 ], [ -94.695900835909171, 29.891191246870964 ], [ -94.695900836251539, 29.89150624724191 ], [ -94.69592883573668, 29.891903246855104 ], [ -94.695935836172083, 29.892619246783948 ], [ -94.695963835378876, 29.893105247643 ], [ -94.695991836028625, 29.894372247558316 ], [ -94.696018836185289, 29.895569247351833 ], [ -94.696019835983051, 29.895688247615006 ], [ -94.696022836104419, 29.896048247521865 ], [ -94.696024836011944, 29.896168247658405 ], [ -94.69603083646092, 29.896311247816076 ], [ -94.696048836303362, 29.896742247911511 ], [ -94.696054835997998, 29.896886248324122 ], [ -94.696098835893252, 29.8978422486265 ], [ -94.696121835779536, 29.898337248053068 ], [ -94.696193836122205, 29.899270248800818 ], [ -94.696245836492295, 29.900471248930884 ], [ -94.696262836688675, 29.900669248469985 ], [ -94.696269836447755, 29.900707249057419 ], [ -94.69629283646276, 29.900829248838054 ], [ -94.69632183640752, 29.90093024863187 ], [ -94.696338836840965, 29.900988249332602 ], [ -94.696386836249587, 29.90110224862822 ], [ -94.696479836331605, 29.901230249331302 ], [ -94.696516836824287, 29.90126324915396 ], [ -94.696632836832251, 29.901339249238188 ], [ -94.696808836610316, 29.901429248601499 ], [ -94.696705836075438, 29.901735249388945 ], [ -94.696633836835105, 29.902108249339207 ], [ -94.696603836889267, 29.902336249072906 ], [ -94.696592836321457, 29.902581249486698 ], [ -94.696594836213038, 29.902796249589478 ], [ -94.696611836655549, 29.903071249050495 ], [ -94.696838836874022, 29.904985249727499 ], [ -94.697090836426383, 29.907056250454819 ], [ -94.697160836536142, 29.907457250478025 ], [ -94.697248837018776, 29.907793249871229 ], [ -94.697537836624477, 29.908526250169448 ], [ -94.698967837399735, 29.911830250669585 ], [ -94.699747838277929, 29.913663251749803 ], [ -94.699899837353698, 29.914088251467351 ], [ -94.699981837659209, 29.914420251190933 ], [ -94.700018837943986, 29.914657251702476 ], [ -94.70003683761432, 29.915051251323774 ], [ -94.700025837681466, 29.915296251705247 ], [ -94.699984838253172, 29.915726252035338 ], [ -94.699921838386885, 29.916746252280443 ], [ -94.699912838440923, 29.917216252546453 ], [ -94.699917837875034, 29.917448252362433 ], [ -94.69992383853139, 29.917696252042173 ], [ -94.699942837910115, 29.917943252645948 ], [ -94.700020838402267, 29.918437252697334 ], [ -94.70006083798674, 29.918684252639341 ], [ -94.700073838304377, 29.918755252683916 ], [ -94.700113838442618, 29.918968252312268 ], [ -94.700127837872628, 29.919039252758711 ], [ -94.700155838252655, 29.919163252797954 ], [ -94.70022983865843, 29.919480252634187 ], [ -94.700256838071226, 29.919592252161721 ], [ -94.700404838252183, 29.920067252553025 ], [ -94.700580838366903, 29.920537252668666 ], [ -94.700680838395854, 29.920761252769275 ], [ -94.700865838384743, 29.921176252449502 ], [ -94.701127838118651, 29.921706252969575 ], [ -94.701477838993583, 29.922414253013283 ], [ -94.701614838604627, 29.922680252727972 ], [ -94.701875838479324, 29.923235252892251 ], [ -94.701900838849824, 29.92330525294425 ], [ -94.702105838466991, 29.923861253033316 ], [ -94.702112838936714, 29.923881252980205 ], [ -94.702135838357989, 29.92394425360105 ], [ -94.702143839272637, 29.923965253382857 ], [ -94.702247838798286, 29.924357253941004 ], [ -94.702559838944097, 29.925536253810048 ], [ -94.702664839026966, 29.925929253575113 ], [ -94.702675839366222, 29.925974253563556 ], [ -94.702710839570514, 29.926112253423572 ], [ -94.702722839337298, 29.926158254105971 ], [ -94.702739839140037, 29.926226253507838 ], [ -94.702748838663837, 29.926262253549226 ], [ -94.70279083948374, 29.926433253510798 ], [ -94.702808838769428, 29.926502253597551 ], [ -94.702915838885005, 29.926898253810705 ], [ -94.702931838742529, 29.926959254277325 ], [ -94.70323783977787, 29.928088254495155 ], [ -94.70334583953823, 29.928485254753596 ], [ -94.703444839012803, 29.928870254756813 ], [ -94.703743839185293, 29.93002525477316 ], [ -94.703832839348252, 29.930368254824678 ], [ -94.703844839962173, 29.930410255057801 ], [ -94.703892839523334, 29.930585254334023 ], [ -94.704036839702852, 29.931112254410536 ], [ -94.704084840178425, 29.931288254783126 ], [ -94.704110839887278, 29.931388255239494 ], [ -94.704312839350308, 29.932168254753442 ], [ -94.704360839538367, 29.932350254887069 ], [ -94.70448683990125, 29.932828254808378 ], [ -94.705101840443803, 29.935147255619757 ], [ -94.705346839945236, 29.936097256028482 ], [ -94.705359839900154, 29.936145255433132 ], [ -94.705602840335416, 29.937036255827316 ], [ -94.705723840514452, 29.937388256149774 ], [ -94.705986840520737, 29.938065255753365 ], [ -94.706063840398883, 29.938245256558588 ], [ -94.707967841325043, 29.942152256692829 ], [ -94.708417841619266, 29.943163257243135 ], [ -94.708705841814535, 29.944097257060342 ], [ -94.708804841030684, 29.944449257569364 ], [ -94.708946841495234, 29.94504925711173 ], [ -94.709025841689211, 29.945583257316297 ], [ -94.709061841740564, 29.945876257695588 ], [ -94.709096841855214, 29.946149257309706 ], [ -94.709137841285624, 29.94675925783287 ], [ -94.709157841463366, 29.947055257530948 ], [ -94.709159841803299, 29.947092258106512 ], [ -94.709171841434824, 29.947412258102631 ], [ -94.709173841824907, 29.947449257771975 ], [ -94.709258841579441, 29.948215258555841 ], [ -94.709295841967403, 29.948480258107441 ], [ -94.709345842208165, 29.948835258462616 ], [ -94.709361841996142, 29.948951257941637 ], [ -94.709410841874046, 29.949299258520679 ], [ -94.709423841676312, 29.949386258472092 ], [ -94.709427841490452, 29.949416258616473 ], [ -94.709491842019517, 29.949893258303248 ], [ -94.709684842342298, 29.951324258731329 ], [ -94.70974984187626, 29.951802258527312 ], [ -94.709767842081902, 29.951949259300399 ], [ -94.709777841814699, 29.95200025855717 ], [ -94.709825841772016, 29.952238259194942 ], [ -94.70987884255392, 29.952446259359007 ], [ -94.709924842242827, 29.952584259466988 ], [ -94.709989842326081, 29.952775258997331 ], [ -94.710075841723636, 29.952999259193 ], [ -94.710088841849483, 29.953027259237142 ], [ -94.710255842097368, 29.95338225902821 ], [ -94.710424842849847, 29.95368225890633 ], [ -94.710464842070891, 29.95374625892207 ], [ -94.710609842005653, 29.953976259725739 ], [ -94.710627842818965, 29.95400225912244 ], [ -94.710684842746304, 29.954081259467372 ], [ -94.710703842302095, 29.954108259451683 ], [ -94.710832842363772, 29.954262259692509 ], [ -94.711069842308191, 29.954541259430762 ], [ -94.711235842636782, 29.95471325931836 ], [ -94.71137684304145, 29.954858259704999 ], [ -94.712115842939113, 29.955614259693171 ], [ -94.714332843486744, 29.957883260285293 ], [ -94.715071843434828, 29.958640260166572 ], [ -94.715808844470189, 29.959391260370932 ], [ -94.716012844156936, 29.959606260466501 ], [ -94.716243843837546, 29.959849260260096 ], [ -94.716730844348987, 29.960328260644733 ], [ -94.717975845162385, 29.961614260628629 ], [ -94.718844845101927, 29.962501260652083 ], [ -94.719789845196061, 29.963466260687486 ], [ -94.719982845724985, 29.963669261019245 ], [ -94.720410845528534, 29.964120261505951 ], [ -94.720567845938305, 29.964274261531241 ], [ -94.720657845651942, 29.964362261386562 ], [ -94.720759845219149, 29.964480261109976 ], [ -94.720945845224421, 29.964695261253468 ], [ -94.72100384554281, 29.964762261555606 ], [ -94.721242845779855, 29.965062261517989 ], [ -94.721473845357963, 29.965369261639928 ], [ -94.721556845641743, 29.965480261707949 ], [ -94.72163884612192, 29.965603261175175 ], [ -94.721712845545909, 29.965713261102174 ], [ -94.721934846179067, 29.966046261491307 ], [ -94.722009846214263, 29.966157261781856 ], [ -94.722744846644886, 29.967251261647007 ], [ -94.722761846588796, 29.967276261268385 ], [ -94.723057846577106, 29.967657262147078 ], [ -94.72331784604269, 29.967935261537711 ], [ -94.723517846278284, 29.96813226152717 ], [ -94.723983846137983, 29.968507261902658 ], [ -94.724136846233051, 29.968610261901571 ], [ -94.724526846938488, 29.968847261804203 ], [ -94.724751846721617, 29.968972262317784 ], [ -94.725028846937775, 29.969103262318221 ], [ -94.725790847006422, 29.969414262186447 ], [ -94.725937846724804, 29.969469261601692 ], [ -94.727172847686802, 29.969932261718569 ], [ -94.729068848230725, 29.97061626240324 ], [ -94.729600848441109, 29.970809262165595 ], [ -94.729919847855001, 29.970947262287812 ], [ -94.730219848374091, 29.971089262482018 ], [ -94.730456848406845, 29.971218261927927 ], [ -94.730691848244732, 29.971368262647751 ], [ -94.730899848762832, 29.971530262662824 ], [ -94.731091848681885, 29.971703262150918 ], [ -94.731596848159128, 29.972214262737189 ], [ -94.732420848833968, 29.973107262710357 ], [ -94.733602848765216, 29.974462263091159 ], [ -94.734404849025935, 29.975381263008398 ], [ -94.734928850093524, 29.975982263391167 ], [ -94.735323850272479, 29.976440263037304 ], [ -94.736511849687929, 29.977817263254536 ], [ -94.736560850074724, 29.977874263623914 ], [ -94.736901849787685, 29.978281263768313 ], [ -94.737606850261074, 29.979089263727506 ], [ -94.73897585099904, 29.980657263995116 ], [ -94.739252850548809, 29.980988264278732 ], [ -94.739417851289957, 29.981211263655009 ], [ -94.739659850703319, 29.981565263534449 ], [ -94.739677851514458, 29.981590264452162 ], [ -94.739877851762316, 29.981924263885421 ], [ -94.740182851185125, 29.982502264473421 ], [ -94.740411851769025, 29.983042264495388 ], [ -94.740555851812744, 29.983486264078437 ], [ -94.740647851520123, 29.983851264031728 ], [ -94.740773851593872, 29.984430264318988 ], [ -94.740859851371184, 29.984899264634269 ], [ -94.740928851634607, 29.985271265046507 ], [ -94.741027851448962, 29.985806265151577 ], [ -94.741042852234258, 29.985887264940423 ], [ -94.741088851912679, 29.986134264468273 ], [ -94.741104852113295, 29.98621626460239 ], [ -94.741127851661489, 29.986342264543168 ], [ -94.741198852024496, 29.986723265380686 ], [ -94.741222852202895, 29.986850264774624 ], [ -94.74127885133997, 29.987138265284237 ], [ -94.741448852174727, 29.988005264860828 ], [ -94.74150585192929, 29.988294265517336 ], [ -94.741559852485025, 29.988567265184574 ], [ -94.741721851997355, 29.989388265205228 ], [ -94.741775852265832, 29.989662265801019 ], [ -94.741812852376384, 29.989858265572387 ], [ -94.741849851682659, 29.990048265516965 ], [ -94.741906851830421, 29.990282265715543 ], [ -94.741957851876009, 29.990438265451079 ], [ -94.741976851672575, 29.990494266019475 ], [ -94.742032851733768, 29.990624265746206 ], [ -94.742170852434441, 29.990926265443306 ], [ -94.742738852511437, 29.991778266181637 ], [ -94.743021852314541, 29.992174266499873 ], [ -94.743094852066349, 29.992276266346483 ], [ -94.743552852395297, 29.992869265981994 ], [ -94.743925852953794, 29.993269266675423 ], [ -94.744645853289555, 29.994003266609568 ], [ -94.746237853752135, 29.995563266497992 ], [ -94.746441853567248, 29.99575126681405 ], [ -94.746828853834785, 29.996053266470224 ], [ -94.746895853601274, 29.996100266353583 ], [ -94.747094853530385, 29.996238266692895 ], [ -94.748360854637184, 29.99701726646094 ], [ -94.748458853866865, 29.99707826648093 ], [ -94.748544853706392, 29.997131267272579 ], [ -94.748805854028404, 29.997291267042637 ], [ -94.748892853770514, 29.997345267006136 ], [ -94.74927785468455, 29.997605267039905 ], [ -94.749921854096584, 29.99804126729456 ], [ -94.750073854158828, 29.998148267027599 ], [ -94.7504308549169, 29.998392267054555 ], [ -94.750814854323139, 29.998656266885689 ], [ -94.751249855160424, 29.998954267280162 ], [ -94.752407855583868, 29.999748267231528 ], [ -94.752557855535343, 29.999844267362889 ], [ -94.753002855781347, 30.000128267345527 ], [ -94.754690856332644, 30.001270267211279 ], [ -94.755096855905876, 30.001544267502346 ], [ -94.755494855815741, 30.001872267546002 ], [ -94.75583685645222, 30.00220726790047 ], [ -94.756048856268166, 30.002452267634006 ], [ -94.756861856705015, 30.003461267529811 ], [ -94.757280856784831, 30.003945267686504 ], [ -94.757462857038874, 30.004135268277153 ], [ -94.757663857285635, 30.004317268167831 ], [ -94.75799185693765, 30.004546268065813 ], [ -94.758160857512649, 30.004636267765893 ], [ -94.758454857060656, 30.004787267974137 ], [ -94.758691856693673, 30.004892267779915 ], [ -94.758895857584221, 30.004965267894004 ], [ -94.759315857335238, 30.00509726779968 ], [ -94.761260858191349, 30.005712267899437 ], [ -94.762071858003793, 30.005938268131722 ], [ -94.762318858085038, 30.005988267822804 ], [ -94.762629858665107, 30.006051268172754 ], [ -94.763350858418363, 30.00617126799273 ], [ -94.764007858250423, 30.006255268552462 ], [ -94.764473858235064, 30.006335267791282 ], [ -94.764769859058717, 30.006401268401692 ], [ -94.764991858379531, 30.006462268324089 ], [ -94.765323859141077, 30.006568268091062 ], [ -94.765526858502668, 30.00664926798234 ], [ -94.765596859010955, 30.006677268284623 ], [ -94.766129859479804, 30.006947268270402 ], [ -94.766495859397295, 30.007157268553794 ], [ -94.766605859773676, 30.007219268270084 ], [ -94.766937859246951, 30.007406268686449 ], [ -94.766964859054681, 30.007421268435174 ], [ -94.767047859911486, 30.007470268525719 ], [ -94.767547859974599, 30.007767268337751 ], [ -94.767993859880875, 30.008001268834139 ], [ -94.768356860012474, 30.008193268557218 ], [ -94.769038859540018, 30.008568268696653 ], [ -94.769891859990622, 30.009005268466268 ], [ -94.770697860500604, 30.009446268651221 ], [ -94.770868860218656, 30.009532268421498 ], [ -94.771414860350092, 30.00980826885991 ], [ -94.771837860805732, 30.010023269177562 ], [ -94.771903861072275, 30.010056268632582 ], [ -94.772101860866982, 30.010157269059786 ], [ -94.772167861231239, 30.010191268627747 ], [ -94.772216861316366, 30.010216268889465 ], [ -94.772256861349291, 30.010236268987416 ], [ -94.77252686084168, 30.010373268887378 ], [ -94.772616861143362, 30.010419269124746 ], [ -94.773397861383756, 30.010808268644347 ], [ -94.773902860892036, 30.011060268646144 ], [ -94.774285861731428, 30.011293268794809 ], [ -94.774637861149117, 30.011546268829939 ], [ -94.774726861714981, 30.011610268523324 ], [ -94.774912861576496, 30.011767269144407 ], [ -94.775225861860804, 30.012087268676503 ], [ -94.775462861749588, 30.012372268980442 ], [ -94.775550862272183, 30.012477269219549 ], [ -94.77577286199265, 30.012783268980829 ], [ -94.775889862192614, 30.01298726899406 ], [ -94.775942861930531, 30.013098269252154 ], [ -94.776075862245762, 30.013377269640948 ], [ -94.776166862416346, 30.013632269436638 ], [ -94.776224862448558, 30.01379226901242 ], [ -94.776290862273513, 30.014040269831952 ], [ -94.776447862022536, 30.015002269921606 ], [ -94.776483862613162, 30.015308269386185 ], [ -94.776487861809983, 30.015339269970401 ], [ -94.776572862169758, 30.015914269440032 ], [ -94.776598862139366, 30.016091269621374 ], [ -94.7767138627961, 30.01695726980488 ], [ -94.776895862728068, 30.018317270327437 ], [ -94.777041862452691, 30.019931270991336 ], [ -94.777044862850104, 30.020098270235646 ], [ -94.777070862566788, 30.021151270997628 ], [ -94.777074862528664, 30.021475270817902 ], [ -94.777097863114179, 30.021873270948017 ], [ -94.777147862637818, 30.022688271270241 ], [ -94.777154862297195, 30.023060271111252 ], [ -94.777132862561913, 30.023552271028787 ], [ -94.777073862430171, 30.02403727152392 ], [ -94.776987863064463, 30.024756271934383 ], [ -94.776931862918119, 30.02523527208405 ], [ -94.776917862854859, 30.025523272021623 ], [ -94.776925862758603, 30.02579227197382 ], [ -94.776931862986174, 30.025978272220744 ], [ -94.776953862349643, 30.026175271584012 ], [ -94.777117863295985, 30.026969271602901 ], [ -94.777212863217585, 30.027340272553225 ], [ -94.777220863394206, 30.027379272442232 ], [ -94.777264862531126, 30.027583272405419 ], [ -94.777387862870299, 30.028142271853927 ], [ -94.777464863185969, 30.028816272646385 ], [ -94.777465862760678, 30.028858272541733 ], [ -94.777507862763883, 30.029897272725645 ], [ -94.777504863389368, 30.032553273447306 ], [ -94.777504863070789, 30.032579273275672 ], [ -94.77748986333755, 30.033038273416711 ], [ -94.777464862892842, 30.033421273404937 ], [ -94.777322863632591, 30.034506273672818 ], [ -94.777092863195477, 30.036102273916367 ], [ -94.776946863050327, 30.03693627410555 ], [ -94.77670986301861, 30.0385902747839 ], [ -94.776589863071678, 30.039362274210106 ], [ -94.776432863474369, 30.040445274595598 ], [ -94.77637486359265, 30.04085227455916 ], [ -94.776261863104082, 30.04154127522294 ], [ -94.776231863737976, 30.041854274720471 ], [ -94.776213863144932, 30.042280275155775 ], [ -94.776265863029835, 30.043085275135432 ], [ -94.776275863393707, 30.043213275418857 ], [ -94.7763268631155, 30.043541275078436 ], [ -94.776401863997791, 30.043876275153369 ], [ -94.776417863374377, 30.04394527597665 ], [ -94.7766368634434, 30.044758276028038 ], [ -94.776826863243286, 30.045406276149258 ], [ -94.777012863615681, 30.046095276042209 ], [ -94.777037863583928, 30.046202275913043 ], [ -94.777222864010511, 30.046985276404182 ], [ -94.777252863531743, 30.047110275882801 ], [ -94.777336863957999, 30.047474276375844 ], [ -94.777402863900974, 30.047756276192747 ], [ -94.777456863909194, 30.047945276355215 ], [ -94.777595863772021, 30.048302276286908 ], [ -94.777679864318429, 30.048481276051351 ], [ -94.777774864417424, 30.048652276482407 ], [ -94.777901864102276, 30.048845276295364 ], [ -94.777909864357383, 30.048857276769755 ], [ -94.778022863649014, 30.049009276641325 ], [ -94.778221864495478, 30.049252276778066 ], [ -94.778243863938656, 30.04927927636998 ], [ -94.778378864757158, 30.04944427682636 ], [ -94.778850864203875, 30.050020276356058 ], [ -94.77900886401099, 30.050213276475514 ], [ -94.779226864301393, 30.050480276873635 ], [ -94.779880864747057, 30.051282276691687 ], [ -94.780099864703459, 30.051550277258279 ], [ -94.780683864949623, 30.052280277526382 ], [ -94.780709865065447, 30.052312277020608 ], [ -94.781595865373291, 30.053373277611865 ], [ -94.782043865795671, 30.053934277194575 ], [ -94.782245865795105, 30.054204277624436 ], [ -94.78225486525352, 30.054215277325838 ], [ -94.782448865810167, 30.054521277327392 ], [ -94.782503865523367, 30.054623277168016 ], [ -94.782561865470058, 30.054728277936093 ], [ -94.782670865436344, 30.054969277968908 ], [ -94.782772866073472, 30.055253277408262 ], [ -94.782825865853212, 30.055463277613867 ], [ -94.782843866040167, 30.055535277461217 ], [ -94.782856865985707, 30.055595277450266 ], [ -94.782878865802189, 30.055698278030917 ], [ -94.782887866134615, 30.055778277996609 ], [ -94.782895865396824, 30.055840277671724 ], [ -94.782929865863579, 30.056076277823873 ], [ -94.782928865832503, 30.056110277613755 ], [ -94.782922865782112, 30.056499277606001 ], [ -94.782901865683868, 30.056929278300203 ], [ -94.782889865794004, 30.057202277619727 ], [ -94.782879866182384, 30.057465277842923 ], [ -94.782849866128942, 30.058257278099596 ], [ -94.782840865712885, 30.058521278208797 ], [ -94.783166865603746, 30.058499278704126 ], [ -94.783718865716949, 30.058439277838438 ], [ -94.784729866746389, 30.0583312780401 ], [ -94.785434866859305, 30.05823127847869 ], [ -94.785965867119586, 30.058130277706656 ], [ -94.786330866494225, 30.058035278289854 ], [ -94.786400866908778, 30.058018278395707 ], [ -94.787172866694789, 30.057770278202099 ], [ -94.787199867105642, 30.057760278334868 ], [ -94.787280866603552, 30.057734277739808 ], [ -94.787308866507061, 30.057726278036988 ], [ -94.78755586713676, 30.057623278399831 ], [ -94.788297866719844, 30.057318278309271 ], [ -94.788314867560899, 30.057312278071958 ], [ -94.788549867336826, 30.057227278310254 ], [ -94.789108866960731, 30.057039277448215 ], [ -94.789326867489507, 30.056967277411488 ], [ -94.789618867655776, 30.056892277551189 ], [ -94.789953867050002, 30.056816277982794 ], [ -94.790313867458153, 30.056752278086705 ], [ -94.790646868200099, 30.056703278028586 ], [ -94.790837868035851, 30.056684277624484 ], [ -94.791424868287109, 30.056628277472672 ], [ -94.791817867901187, 30.056620277818023 ], [ -94.792999868447822, 30.05659727769957 ], [ -94.793014867892992, 30.056597277850774 ], [ -94.793393868924213, 30.056588277473441 ], [ -94.793634868471642, 30.056586277610187 ], [ -94.794361868647812, 30.056581277210267 ], [ -94.794603868620626, 30.056580277352861 ], [ -94.794846869089341, 30.056580277897545 ], [ -94.795577868594876, 30.056583277789258 ], [ -94.79582186958109, 30.0565842774039 ], [ -94.795823869075036, 30.056744277130267 ], [ -94.79583186934876, 30.057224277490747 ], [ -94.795834869389381, 30.057385278008955 ], [ -94.795834868955339, 30.057401277937036 ], [ -94.795836869449062, 30.057449278057749 ], [ -94.795837869571756, 30.057466277913878 ], [ -94.795838869143836, 30.057517278078731 ], [ -94.795844869578843, 30.057673277450753 ], [ -94.795846868679078, 30.057725277507402 ], [ -94.795847868715853, 30.057940277957531 ], [ -94.795852869226181, 30.058390277804833 ], [ -94.79585786960817, 30.058585277950648 ], [ -94.795863868746579, 30.058801277869037 ], [ -94.795867869363761, 30.059012278234281 ], [ -94.79588086897968, 30.059647278384414 ], [ -94.795885869209414, 30.059859278577409 ], [ -94.79588786894449, 30.060069278329035 ], [ -94.795896869415628, 30.0606992783915 ], [ -94.795900869139487, 30.060910278574045 ], [ -94.795902869074169, 30.06112727798676 ], [ -94.795910869699355, 30.061778278225759 ], [ -94.795913869200419, 30.061996278363274 ], [ -94.795924869773927, 30.062212278279382 ], [ -94.795941869684739, 30.062507278317831 ], [ -94.795949869273016, 30.062860278542139 ], [ -94.79595586898067, 30.063077279238342 ], [ -94.795955869304336, 30.063270279250162 ], [ -94.795955869753371, 30.063852278941873 ], [ -94.795955869852847, 30.063871278603482 ], [ -94.795939869266647, 30.064046278696893 ], [ -94.795910869299661, 30.064254279285009 ], [ -94.795851869522593, 30.064694278765025 ], [ -94.795808869853118, 30.064876278890321 ], [ -94.795778869438848, 30.065006278851925 ], [ -94.795752869585343, 30.065079279519836 ], [ -94.795732869842709, 30.065136279316945 ], [ -94.795597869209985, 30.065504279302708 ], [ -94.795591869433395, 30.065516279294961 ], [ -94.795481869582076, 30.065760279422538 ], [ -94.795300868985478, 30.066087278984742 ], [ -94.795135869613674, 30.066356279664067 ], [ -94.794873869772829, 30.066710279761711 ], [ -94.794769869362923, 30.066852279488629 ], [ -94.794579869348468, 30.067071279790134 ], [ -94.794559869207461, 30.067092279638288 ], [ -94.794502869432051, 30.067157279613919 ], [ -94.79448386886034, 30.067179279352349 ], [ -94.794473868842601, 30.067190279380917 ], [ -94.794442869462529, 30.067224280005718 ], [ -94.794433869038173, 30.067236279933887 ], [ -94.794410869460364, 30.067257279786034 ], [ -94.794341869452893, 30.067319279963794 ], [ -94.794319869439448, 30.067341279703207 ], [ -94.794149869500743, 30.067488280177344 ], [ -94.794107869499626, 30.067520279975835 ], [ -94.793860869526767, 30.067714280150106 ], [ -94.793424868594556, 30.067996280311988 ], [ -94.793192868490721, 30.068147279885643 ], [ -94.792934868468635, 30.068299279685043 ], [ -94.792161869160097, 30.068754280237204 ], [ -94.791904868686629, 30.068907279845128 ], [ -94.791789868603061, 30.0689752805458 ], [ -94.791444868541021, 30.069179280276476 ], [ -94.791330868470453, 30.069248280534328 ], [ -94.791249868727064, 30.069295280178945 ], [ -94.791006868194842, 30.069438280129216 ], [ -94.790926868739547, 30.069486280437378 ], [ -94.79069386796435, 30.069618280057053 ], [ -94.789994868419114, 30.07001728002037 ], [ -94.789762867800775, 30.07015028073711 ], [ -94.789648868244782, 30.07021628077765 ], [ -94.789306867521702, 30.070413280956497 ], [ -94.78919286850423, 30.070480280858462 ], [ -94.789138867660967, 30.070511280291797 ], [ -94.788978867950362, 30.070604280734102 ], [ -94.788925867556756, 30.070636280956524 ], [ -94.788850868261932, 30.070679280366939 ], [ -94.78862586802326, 30.070810280525194 ], [ -94.788551868015929, 30.07085428061221 ], [ -94.788414867602299, 30.07093428055628 ], [ -94.78800486760025, 30.071174281164275 ], [ -94.787868867975703, 30.071255280556411 ], [ -94.787710867887654, 30.071347280599191 ], [ -94.787239867594266, 30.071625281137294 ], [ -94.787082867045058, 30.071719280638032 ], [ -94.786871867858522, 30.071842280850909 ], [ -94.786241867820166, 30.072212280779461 ], [ -94.786031867125629, 30.072336281448695 ], [ -94.786011867568291, 30.072347281506136 ], [ -94.785954867396569, 30.072380280887806 ], [ -94.785935867391672, 30.072392280897709 ], [ -94.785605867211061, 30.072584281512366 ], [ -94.784616866843606, 30.073159280909817 ], [ -94.784287867354806, 30.073352281107596 ], [ -94.783688867130792, 30.073700281850869 ], [ -94.782106866573514, 30.074624282077639 ], [ -94.781894865878527, 30.074747282112387 ], [ -94.78129686605061, 30.075096281578478 ], [ -94.781133866501477, 30.07519028195069 ], [ -94.78064586561112, 30.075475282304239 ], [ -94.780483866473176, 30.075570281942287 ], [ -94.780059865849637, 30.075818281707136 ], [ -94.778787865719849, 30.076565282069556 ], [ -94.778364865456638, 30.076814282114377 ], [ -94.778168865874704, 30.076926281910787 ], [ -94.777579864848548, 30.077263282677112 ], [ -94.777384865107081, 30.07737628230273 ], [ -94.777017864674434, 30.077583282373151 ], [ -94.776845865057339, 30.077681282890623 ], [ -94.776410865082553, 30.077912282355847 ], [ -94.775918864761991, 30.078202282342236 ], [ -94.775556865094458, 30.078416282879083 ], [ -94.774633865140075, 30.078957282915049 ], [ -94.774399864139014, 30.07909428260767 ], [ -94.773364864720122, 30.079699283441077 ], [ -94.772987863925209, 30.07996128287035 ], [ -94.77263486401867, 30.080214283053557 ], [ -94.772033864030718, 30.080688283263964 ], [ -94.771356864097783, 30.081212283330931 ], [ -94.769542863365515, 30.082560283441232 ], [ -94.769056863668752, 30.082910283391929 ], [ -94.768851863462316, 30.083056284019623 ], [ -94.768571863350346, 30.0832592839967 ], [ -94.768348863142236, 30.08341928364683 ], [ -94.768239863046119, 30.083497283514927 ], [ -94.768035863060206, 30.083644283956911 ], [ -94.76801286304682, 30.083659284432301 ], [ -94.76794486326996, 30.083708283906944 ], [ -94.767922862653293, 30.083725283775571 ], [ -94.767184862854137, 30.084253283860019 ], [ -94.766913862845456, 30.084448284100844 ], [ -94.764986862617732, 30.085859284775992 ], [ -94.764255861852376, 30.08639628509329 ], [ -94.764020862176025, 30.086564285124094 ], [ -94.763318862518801, 30.087068285288289 ], [ -94.76316386221329, 30.087180285055489 ], [ -94.76308586195978, 30.087237284679016 ], [ -94.763067862206157, 30.087249285104519 ], [ -94.763012861808477, 30.087288285264503 ], [ -94.76299586156513, 30.087301284907316 ], [ -94.762429862057772, 30.087708284875113 ], [ -94.761651861488644, 30.088268285386338 ], [ -94.76072486162353, 30.088919285359861 ], [ -94.760591861857506, 30.08901328511309 ], [ -94.760154861579707, 30.089320285800675 ], [ -94.759913861452219, 30.089488285531818 ], [ -94.759191861474449, 30.089995285555631 ], [ -94.758951860670308, 30.090164285576819 ], [ -94.758794861191802, 30.090273285349515 ], [ -94.758326860551037, 30.09060128543457 ], [ -94.758170861240288, 30.090711285589826 ], [ -94.757994861225669, 30.090833285389145 ], [ -94.757469860325301, 30.091201285563503 ], [ -94.757294860947013, 30.091325285806203 ], [ -94.757188860864048, 30.091400286179063 ], [ -94.756967860507984, 30.091552285605676 ], [ -94.755984860129374, 30.092233285888518 ], [ -94.755935860590142, 30.09226828585156 ], [ -94.755657860716241, 30.092461286472957 ], [ -94.755566859899403, 30.0925232859761 ], [ -94.755302860508237, 30.092708286528271 ], [ -94.755206860332848, 30.092776286342801 ], [ -94.755004860030795, 30.092918286382751 ], [ -94.754401860568152, 30.093346286091869 ], [ -94.754200860295668, 30.093490286296703 ], [ -94.754100860336081, 30.093564286732445 ], [ -94.7538558597048, 30.093748286761912 ], [ -94.753803860176731, 30.09379328641182 ], [ -94.753711860085261, 30.093877286894088 ], [ -94.753526860278697, 30.094043286350395 ], [ -94.753413859785624, 30.094146286472309 ], [ -94.753209859478162, 30.0943432870626 ], [ -94.752997859736396, 30.094572286357707 ], [ -94.75295285928955, 30.094622286739401 ], [ -94.75283585978849, 30.094761287179132 ], [ -94.752673859284286, 30.094954286872476 ], [ -94.752231859188484, 30.09554828734549 ], [ -94.751976859648551, 30.095934287219311 ], [ -94.750130858840393, 30.098745287723311 ], [ -94.749580859253157, 30.099582288088122 ], [ -94.749484858968586, 30.099729287828882 ], [ -94.748777858680683, 30.10079628802648 ], [ -94.748655858795786, 30.100980288351778 ], [ -94.747709858832891, 30.102421288374998 ], [ -94.744882858409525, 30.10673228916389 ], [ -94.744765857915823, 30.10691028943036 ], [ -94.744489857832008, 30.107284289503109 ], [ -94.744062857822087, 30.107866289702535 ], [ -94.743329858203367, 30.10884429019092 ], [ -94.742642858113356, 30.109759290571372 ], [ -94.742301857939935, 30.110203290755965 ], [ -94.742115857832772, 30.110447290157992 ], [ -94.741964857851912, 30.110643290418054 ], [ -94.741217857831231, 30.111659290489531 ], [ -94.740457857366223, 30.112664291107421 ], [ -94.739758857653456, 30.113620291303654 ], [ -94.739238857565212, 30.114294290953353 ], [ -94.739102857325506, 30.114472290933314 ], [ -94.73889885727813, 30.114753291453138 ], [ -94.738640857472618, 30.115087291699282 ], [ -94.738245856454895, 30.115678291409804 ], [ -94.73822285654731, 30.115715291765436 ], [ -94.738154857107318, 30.115825291797346 ], [ -94.738132856697703, 30.115863291536449 ], [ -94.737907856949604, 30.116305291914475 ], [ -94.737749856377548, 30.116664291553196 ], [ -94.737705856995518, 30.116768291608167 ], [ -94.737566857272157, 30.117137291553348 ], [ -94.737398856917522, 30.117709291736272 ], [ -94.737318856688361, 30.118078292102574 ], [ -94.737239857051932, 30.118591292144313 ], [ -94.737189857162576, 30.119255292635454 ], [ -94.73718985701467, 30.119268292738262 ], [ -94.737204856662288, 30.119764292463248 ], [ -94.737228856520076, 30.120143292117856 ], [ -94.737231857321305, 30.120189292475715 ], [ -94.737232857176821, 30.120207292857415 ], [ -94.73724385639899, 30.12040129259659 ], [ -94.737247856694793, 30.120466292630514 ], [ -94.737283857175072, 30.121133292424776 ], [ -94.737391857188499, 30.123134293276845 ], [ -94.737428857043966, 30.123802293475503 ], [ -94.737457856764848, 30.124471293767783 ], [ -94.737481857350375, 30.125006293565178 ], [ -94.737531857625527, 30.125718294024498 ], [ -94.737568857608281, 30.126477293937619 ], [ -94.737601857750093, 30.12714729407163 ], [ -94.737637857710482, 30.127801294502625 ], [ -94.737746857166769, 30.129766294458161 ], [ -94.737783857616506, 30.130421294442133 ], [ -94.737846857966687, 30.131633294580826 ], [ -94.738038857440543, 30.135270296009192 ], [ -94.738103857405491, 30.13648329570313 ], [ -94.738115857769287, 30.136732295737421 ], [ -94.738121857543547, 30.136833295776025 ], [ -94.738130858031965, 30.136998295968869 ], [ -94.73816885817287, 30.137721296373229 ], [ -94.738214858324881, 30.138573296217992 ], [ -94.738319858430287, 30.140515296833605 ], [ -94.73836885798373, 30.141436296628527 ], [ -94.738436858002601, 30.142675296788344 ], [ -94.738440858534673, 30.142746297412206 ], [ -94.738453857999374, 30.142960296790402 ], [ -94.738458858389208, 30.143032296793674 ], [ -94.7384878582601, 30.143650297106415 ], [ -94.738530858660411, 30.144539297521817 ], [ -94.738588858661089, 30.145505297578531 ], [ -94.738626857983718, 30.146123297971311 ], [ -94.738654858274799, 30.146600298194983 ], [ -94.738716858572531, 30.147634298074049 ], [ -94.738750858204227, 30.148032298532872 ], [ -94.738791858837274, 30.148509298544624 ], [ -94.738915858550513, 30.148447298138052 ], [ -94.739289858772921, 30.148265298169804 ], [ -94.73941485874137, 30.148204298513058 ], [ -94.739494858584962, 30.148156297812331 ], [ -94.739734858586147, 30.148012298156669 ], [ -94.739814859126994, 30.147964298196381 ], [ -94.7401038587264, 30.147786298340286 ], [ -94.740257858829324, 30.147692297880635 ], [ -94.740973858608129, 30.147254297620208 ], [ -94.741263859096506, 30.14707729836033 ], [ -94.741483859428683, 30.146933297961848 ], [ -94.742144859550805, 30.146502297622419 ], [ -94.742365859257319, 30.146359297878348 ], [ -94.745849860226912, 30.144114297489367 ], [ -94.747547860126744, 30.143067297033099 ], [ -94.748269860929938, 30.142622296719296 ], [ -94.748381861118546, 30.142544297048005 ], [ -94.749752860860568, 30.141602296418753 ], [ -94.750477861091682, 30.141032296162511 ], [ -94.751189861325372, 30.140404296613113 ], [ -94.754364861721314, 30.13696129533438 ], [ -94.754640862284489, 30.136663295303066 ], [ -94.755016861900685, 30.136248295620288 ], [ -94.7571788626976, 30.133875294633512 ], [ -94.757375862779384, 30.133660294472815 ], [ -94.760525863014593, 30.130180293512968 ], [ -94.761065862981127, 30.129616293804531 ], [ -94.761625863620338, 30.129087293106917 ], [ -94.762500863608139, 30.128329293464848 ], [ -94.763548864138656, 30.127589293278863 ], [ -94.763582864030866, 30.127566293531103 ], [ -94.764432864099703, 30.127025293361172 ], [ -94.764942864637462, 30.126746293087113 ], [ -94.765700864028972, 30.126331292394415 ], [ -94.766806864677307, 30.125827292556608 ], [ -94.767466864862556, 30.125564292208544 ], [ -94.768708864752853, 30.125137292583375 ], [ -94.770050865569445, 30.124773292418467 ], [ -94.770377865241286, 30.124711292248477 ], [ -94.771155865807373, 30.124566292273311 ], [ -94.771360865737392, 30.124540292549863 ], [ -94.771691866380507, 30.12450029224237 ], [ -94.772701865984331, 30.124375292605993 ], [ -94.77409086650718, 30.124266291690667 ], [ -94.776653867003716, 30.124061292302265 ], [ -94.777703867006451, 30.123967292056083 ], [ -94.778524867260373, 30.123909291529078 ], [ -94.778636868052232, 30.1239012915598 ], [ -94.778749867767104, 30.123893292162286 ], [ -94.77895786810609, 30.123876292105326 ], [ -94.779164868360766, 30.12385929193367 ], [ -94.780008867574338, 30.123790291627579 ], [ -94.781895868377759, 30.123638291419987 ], [ -94.783788868551511, 30.123484291928612 ], [ -94.784577868958579, 30.123421291206839 ], [ -94.785047869183288, 30.123372291511139 ], [ -94.785236869462977, 30.123361291387244 ], [ -94.785424869692037, 30.123350291251342 ], [ -94.785534869194493, 30.123344291857499 ], [ -94.785645869672962, 30.123337291949223 ], [ -94.787687870246302, 30.123180291279485 ], [ -94.79222587106446, 30.122810290978599 ], [ -94.793120871354915, 30.123051290883787 ], [ -94.7932348718942, 30.123082291322564 ], [ -94.79326387182671, 30.123090291078157 ], [ -94.793796871685117, 30.123032290982891 ], [ -94.795103871942004, 30.122886291517208 ], [ -94.798108872850108, 30.122551290566939 ], [ -94.798147872364567, 30.122551290519461 ], [ -94.798187872880661, 30.122551291046211 ], [ -94.798338873077682, 30.12255129070633 ], [ -94.798489873237443, 30.1225512910985 ], [ -94.799226872870108, 30.122440290470333 ], [ -94.800219873332765, 30.122291291236269 ], [ -94.80165187378671, 30.122079290372223 ], [ -94.801977873647942, 30.122036290514746 ], [ -94.803761873961605, 30.121900290976757 ], [ -94.804472874666615, 30.121821290941202 ], [ -94.80490987461107, 30.121805290546263 ], [ -94.808063874686098, 30.121541290632646 ], [ -94.809349875065067, 30.121434290374978 ], [ -94.810129876232409, 30.121378290426538 ], [ -94.810286875768469, 30.121367290017734 ], [ -94.81076087637264, 30.121335290239415 ], [ -94.810918875995853, 30.121325290656657 ], [ -94.811895876533413, 30.121240290462655 ], [ -94.81312987644084, 30.121133290312034 ], [ -94.814830876559839, 30.120996290199411 ], [ -94.814886877458008, 30.120992290114099 ], [ -94.815811877282854, 30.120950289916209 ], [ -94.815935876800495, 30.120943289590933 ], [ -94.816083877160693, 30.120935290082659 ], [ -94.816308876840196, 30.120921290012575 ], [ -94.816355877635431, 30.12091928952864 ], [ -94.816433877634523, 30.120915289881577 ], [ -94.816373877041045, 30.120392289982092 ], [ -94.816693877714201, 30.119198289685531 ], [ -94.816734877361114, 30.118837289799348 ], [ -94.816876877289005, 30.117581288819789 ], [ -94.816434877588719, 30.115757288718083 ], [ -94.814908876183566, 30.114426288593371 ], [ -94.814531876947925, 30.114427288644233 ], [ -94.813519876716569, 30.114430289083568 ], [ -94.812116875765454, 30.114758288776045 ], [ -94.811175875786901, 30.115234288838181 ], [ -94.810468875225965, 30.115593289217813 ], [ -94.809139874824922, 30.116803289305413 ], [ -94.807430874800801, 30.118344289532114 ], [ -94.806286874929683, 30.118729289568687 ], [ -94.805279874265722, 30.118687289811088 ], [ -94.804317873806426, 30.118142289827901 ], [ -94.803692873535553, 30.116898290008027 ], [ -94.803692873762543, 30.115250289006919 ], [ -94.804195874047878, 30.114369289369723 ], [ -94.805141874384191, 30.114151288719842 ], [ -94.805965874071006, 30.114151288972437 ], [ -94.807247874957923, 30.114205288713244 ], [ -94.81028487492884, 30.113721288345165 ], [ -94.812131875991639, 30.112958288452678 ], [ -94.81243587572051, 30.112833288659079 ], [ -94.814342876620572, 30.111659287965786 ], [ -94.815227876381982, 30.110671287569055 ], [ -94.815349876093109, 30.109679287425784 ], [ -94.814785876841952, 30.108565287520289 ], [ -94.814587875787552, 30.108365287283547 ], [ -94.813744876000257, 30.107513287310685 ], [ -94.812900875754707, 30.106661287188508 ], [ -94.812572875766861, 30.106085286834748 ], [ -94.811887874983782, 30.105046286773518 ], [ -94.811808874923656, 30.104926287177044 ], [ -94.811671875635525, 30.103865286344373 ], [ -94.812312875936598, 30.102946286017982 ], [ -94.812348875073113, 30.102919286150929 ], [ -94.812380875955228, 30.102898286610856 ], [ -94.813258875583941, 30.102282286567512 ], [ -94.815669876379005, 30.101660286210429 ], [ -94.818141876568859, 30.101100285391766 ], [ -94.819667876813881, 30.100440286045107 ], [ -94.820613877168384, 30.099562285173942 ], [ -94.820845877509612, 30.099019284984639 ], [ -94.821116878012916, 30.098384284950157 ], [ -94.82101587710514, 30.097838284813225 ], [ -94.820879877563101, 30.097627285109397 ], [ -94.821133877817843, 30.096540284591853 ], [ -94.820512877575979, 30.095384284604297 ], [ -94.820472877115265, 30.09533228449164 ], [ -94.819810876741712, 30.094462284364482 ], [ -94.818983876881077, 30.093838284212755 ], [ -94.817825875967173, 30.09350028422422 ], [ -94.816606875938689, 30.093430284127702 ], [ -94.814089875484086, 30.094408284989637 ], [ -94.812799874898687, 30.095115284502093 ], [ -94.81157787491982, 30.095101284573936 ], [ -94.810884874769187, 30.094803284931391 ], [ -94.81044287465609, 30.094257284718186 ], [ -94.810450874496638, 30.0935052842019 ], [ -94.81045487489105, 30.093206284694798 ], [ -94.810776874759313, 30.091973283872825 ], [ -94.811702874368564, 30.090695284143987 ], [ -94.813058875551164, 30.089643283769558 ], [ -94.814734875412384, 30.089058283416417 ], [ -94.816204875388308, 30.089003283081471 ], [ -94.817173876048102, 30.089451283396382 ], [ -94.819008876202261, 30.091380283538616 ], [ -94.819960877327446, 30.092078284073278 ], [ -94.820993877093599, 30.092294283563252 ], [ -94.821831877013153, 30.091967283598716 ], [ -94.822348877105284, 30.091369283499962 ], [ -94.822747877811679, 30.090253283014793 ], [ -94.822575877091325, 30.08889428346048 ], [ -94.820942877117275, 30.084060282201385 ], [ -94.820317877050684, 30.083297281881404 ], [ -94.820293877099061, 30.083258282305792 ], [ -94.820222876801935, 30.083143281636854 ], [ -94.820199876934552, 30.083105281747233 ], [ -94.819737876515632, 30.082352281625468 ], [ -94.819087876058788, 30.081329282098004 ], [ -94.818686875867186, 30.080698281589171 ], [ -94.818256875861309, 30.079497281412134 ], [ -94.818521875648727, 30.078357281481637 ], [ -94.819602876193429, 30.077206280619009 ], [ -94.820941876939301, 30.07650328059373 ], [ -94.821340876661878, 30.076295280646342 ], [ -94.822221876760864, 30.07536028075133 ], [ -94.822215876259861, 30.074999280297725 ], [ -94.822209876311248, 30.074722280086529 ], [ -94.822204876854499, 30.074401280144876 ], [ -94.822040876979472, 30.073920280398468 ], [ -94.82195187610057, 30.073659279679006 ], [ -94.821686876556186, 30.072882279966141 ], [ -94.820934876592986, 30.071934279639699 ], [ -94.821198876626326, 30.070759279451547 ], [ -94.822753876529219, 30.070986279350777 ], [ -94.82349287703525, 30.071352279713508 ], [ -94.824771877273818, 30.071988279371968 ], [ -94.826286877955397, 30.072250279514229 ], [ -94.82696787823879, 30.071567279125404 ], [ -94.827507878084347, 30.069855279523601 ], [ -94.826502877597036, 30.068449278772231 ], [ -94.825713876999956, 30.067679279071278 ], [ -94.825178877036777, 30.067438278904401 ], [ -94.824147876653612, 30.06710027891749 ], [ -94.822541876716087, 30.066388278545833 ], [ -94.821832876418867, 30.065396278151727 ], [ -94.821477875856388, 30.063865278236776 ], [ -94.821754875814406, 30.062225277354209 ], [ -94.821858875612378, 30.061779277205453 ], [ -94.822075875796898, 30.06085227717649 ], [ -94.821577875619781, 30.059907276959343 ], [ -94.820459875306668, 30.059606276784503 ], [ -94.819095875364795, 30.05955827729359 ], [ -94.818458875551087, 30.059349277008231 ], [ -94.818218874899515, 30.059007277044643 ], [ -94.818202874872199, 30.058983276831707 ], [ -94.818086875072268, 30.058817276721488 ], [ -94.817926875067855, 30.058589276879097 ], [ -94.818006874469944, 30.058272277200153 ], [ -94.818057875062834, 30.058077276913917 ], [ -94.818068874790612, 30.058033276648935 ], [ -94.818101875010171, 30.057904277425976 ], [ -94.818113874443057, 30.057861276884832 ], [ -94.818137874672729, 30.057768277043287 ], [ -94.818213875015871, 30.057659276923197 ], [ -94.818606874561567, 30.057097276552916 ], [ -94.818738874619811, 30.056910276677943 ], [ -94.818803875072476, 30.056815276413275 ], [ -94.819001875229134, 30.05653427661332 ], [ -94.819067874897158, 30.05644027683347 ], [ -94.819113875468133, 30.056375276720896 ], [ -94.822217875803119, 30.054952276327139 ], [ -94.823512875879985, 30.05420427611698 ], [ -94.824860876745262, 30.05342727580792 ], [ -94.827540876685148, 30.051720274942422 ], [ -94.829650877791551, 30.050711275447785 ], [ -94.831506878241171, 30.049524274932836 ], [ -94.832018877720003, 30.047883274098481 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 305, "Tract": "48291700100", "Area_SqMi": 19.974247602755465, "total_2009": 1883, "total_2010": 1923, "total_2011": 2042, "total_2012": 2125, "total_2013": 2099, "total_2014": 2273, "total_2015": 2378, "total_2016": 2357, "total_2017": 2323, "total_2018": 2377, "total_2019": 2321, "total_2020": 2174, "age1": 596, "age2": 1073, "age3": 567, "earn1": 668, "earn2": 878, "earn3": 690, "naics_s01": 10, "naics_s02": 0, "naics_s03": 24, "naics_s04": 77, "naics_s05": 46, "naics_s06": 53, "naics_s07": 836, "naics_s08": 10, "naics_s09": 16, "naics_s10": 29, "naics_s11": 24, "naics_s12": 62, "naics_s13": 56, "naics_s14": 36, "naics_s15": 0, "naics_s16": 492, "naics_s17": 0, "naics_s18": 436, "naics_s19": 29, "naics_s20": 0, "race1": 1699, "race2": 410, "race3": 20, "race4": 80, "race5": 1, "race6": 26, "ethnicity1": 1601, "ethnicity2": 635, "edu1": 378, "edu2": 500, "edu3": 534, "edu4": 228, "Shape_Length": 115918.33683921921, "Shape_Area": 556847836.89838767, "total_2021": 2229, "total_2022": 2236 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.165903977479857, 30.34498132377562 ], [ -95.16586597815261, 30.344850323159687 ], [ -95.165830978136142, 30.344727322950384 ], [ -95.165736977393067, 30.344464323069708 ], [ -95.165691977478929, 30.344336323564203 ], [ -95.165093976988715, 30.342814323409737 ], [ -95.164227976732533, 30.340609322616249 ], [ -95.163301977133031, 30.338248322065425 ], [ -95.162704976607557, 30.33672732174713 ], [ -95.162564976469369, 30.336370321927362 ], [ -95.162532976269318, 30.336289321595036 ], [ -95.162489976843304, 30.336179322198848 ], [ -95.16237297647038, 30.335880321597266 ], [ -95.162276976260202, 30.335636321261472 ], [ -95.162263976128727, 30.33560232207077 ], [ -95.161900976480339, 30.33465632105079 ], [ -95.161016976298725, 30.33235432079243 ], [ -95.160597975353909, 30.331261320803609 ], [ -95.160503975827652, 30.331149320565522 ], [ -95.160385976134251, 30.331008320571012 ], [ -95.160334975235898, 30.330762320263993 ], [ -95.160306975651764, 30.330620321060326 ], [ -95.160156975116607, 30.330217320168146 ], [ -95.159708975587179, 30.329009320547506 ], [ -95.159559975016592, 30.32860731998068 ], [ -95.159524975301693, 30.328520320561779 ], [ -95.159420974974111, 30.328260320000254 ], [ -95.159386974924743, 30.328174320135094 ], [ -95.159364975569915, 30.328119320289471 ], [ -95.159299975616989, 30.327956320288781 ], [ -95.159292975391651, 30.327937320191346 ], [ -95.159280974799785, 30.327901320135148 ], [ -95.159264975351235, 30.327854319797812 ], [ -95.159216974737078, 30.327716320516014 ], [ -95.159201974767115, 30.327670319772384 ], [ -95.157948974992607, 30.324564319121357 ], [ -95.157513974897824, 30.323516319050224 ], [ -95.157499974658094, 30.323478319464531 ], [ -95.157438974458671, 30.323320319310898 ], [ -95.156913974410983, 30.321917319131146 ], [ -95.156157974054167, 30.319993318514513 ], [ -95.156122974550655, 30.31990731862011 ], [ -95.155855973543524, 30.319225318769757 ], [ -95.155850974456712, 30.319212318657431 ], [ -95.15545697351844, 30.318200318267991 ], [ -95.155040974153593, 30.317131317794633 ], [ -95.154979973798305, 30.3169743176657 ], [ -95.154537973536492, 30.315837317660041 ], [ -95.154276973628996, 30.315163318090917 ], [ -95.153883972937535, 30.31415231725186 ], [ -95.153526972842201, 30.313244317248397 ], [ -95.153439973563039, 30.313022317693001 ], [ -95.15272497322465, 30.311173316877973 ], [ -95.148598971620672, 30.300616314921161 ], [ -95.144195970031703, 30.28934931324352 ], [ -95.144139969565131, 30.289213312642115 ], [ -95.14407096973774, 30.289041312681714 ], [ -95.143339969598969, 30.287224312422389 ], [ -95.143325969573709, 30.287189312340136 ], [ -95.141515968983654, 30.282492311909852 ], [ -95.141209968342963, 30.281720311483188 ], [ -95.141198968617729, 30.28164031175864 ], [ -95.141188968018369, 30.281585311593108 ], [ -95.141182968197285, 30.281514310945809 ], [ -95.140668968612019, 30.280296310860429 ], [ -95.140171968349478, 30.279019311165776 ], [ -95.140153968170353, 30.278975311191338 ], [ -95.140147968227339, 30.278959311161774 ], [ -95.139656967824862, 30.277680310627485 ], [ -95.138990967256035, 30.275958310393083 ], [ -95.138595967188493, 30.274945310308691 ], [ -95.137458967397279, 30.272019309375828 ], [ -95.137434966975547, 30.271958309470293 ], [ -95.137261967012194, 30.271507309311684 ], [ -95.137209967391897, 30.271372309777526 ], [ -95.137171967198313, 30.271273309516793 ], [ -95.137116967409753, 30.271129309312215 ], [ -95.137074966645116, 30.271021309485384 ], [ -95.137061967142628, 30.270986309092745 ], [ -95.137051967006897, 30.270960309292651 ], [ -95.136928966508648, 30.270639309209081 ], [ -95.135052966027899, 30.273440310224764 ], [ -95.134392966476639, 30.2743413104882 ], [ -95.132995966574754, 30.276081310645964 ], [ -95.131843965769832, 30.277494311225851 ], [ -95.130521966013077, 30.279050311570362 ], [ -95.128857964989592, 30.281144311894334 ], [ -95.12774896536763, 30.282486312489873 ], [ -95.127337965064925, 30.282986312429237 ], [ -95.126431964386214, 30.284091312623854 ], [ -95.126104964929311, 30.284484312843215 ], [ -95.125692964139361, 30.28498331238022 ], [ -95.125369964084982, 30.285377313064281 ], [ -95.124404964438781, 30.286560312798969 ], [ -95.124082964362856, 30.286955313038053 ], [ -95.123417964688727, 30.287762313062764 ], [ -95.122721964066358, 30.288608313205572 ], [ -95.121429963605436, 30.290189313791128 ], [ -95.120768963638739, 30.291000314092294 ], [ -95.12022796355474, 30.291673314287429 ], [ -95.119896963440596, 30.292086313973424 ], [ -95.118607962949028, 30.293692314287725 ], [ -95.118067962655132, 30.294366314810958 ], [ -95.117772962730697, 30.294732314501932 ], [ -95.117301963293144, 30.295306315343257 ], [ -95.11728996251847, 30.29531931463994 ], [ -95.117137962784, 30.295500314838733 ], [ -95.116735962605148, 30.295962315211771 ], [ -95.116135963133928, 30.29665431563247 ], [ -95.115139962268429, 30.297850315368926 ], [ -95.114906961974299, 30.298138315380516 ], [ -95.114545962634409, 30.298587316104925 ], [ -95.114135962626875, 30.299096315895792 ], [ -95.113474961700931, 30.299969315704658 ], [ -95.112206962078957, 30.301872316812553 ], [ -95.112078961652202, 30.302114316913279 ], [ -95.11048896185234, 30.305128317291079 ], [ -95.107624961086287, 30.310008318025542 ], [ -95.10711596082686, 30.310883318505176 ], [ -95.107056961330031, 30.310986318773576 ], [ -95.10697096097239, 30.311135318979158 ], [ -95.105596961215724, 30.3135143190392 ], [ -95.105582960435981, 30.313538319331048 ], [ -95.105090960284045, 30.314392319740179 ], [ -95.10505296046027, 30.314455319490197 ], [ -95.105016961042679, 30.314518319289114 ], [ -95.104798960209564, 30.314899319572522 ], [ -95.104725961123464, 30.315027319935609 ], [ -95.104582960766095, 30.315261319116736 ], [ -95.104411960418986, 30.31554631949178 ], [ -95.103836960479597, 30.31649931965822 ], [ -95.103471960149989, 30.317104320063368 ], [ -95.10315896082092, 30.317624320293291 ], [ -95.102881960654784, 30.318131319940708 ], [ -95.102513960326306, 30.318760319889641 ], [ -95.101687960428791, 30.320175320554966 ], [ -95.10061596026874, 30.321992320749796 ], [ -95.100528959829077, 30.322140321080784 ], [ -95.099869959369173, 30.323269320901169 ], [ -95.099851959947173, 30.323297321360755 ], [ -95.099797959760238, 30.323385320952205 ], [ -95.099780960129308, 30.323414321478346 ], [ -95.099689959537216, 30.3235743212608 ], [ -95.099082959132687, 30.324659321943322 ], [ -95.099055959589364, 30.3247093212754 ], [ -95.098489959846745, 30.325663321714039 ], [ -95.097622959894792, 30.327169322437825 ], [ -95.096938959671959, 30.328365322083609 ], [ -95.096734959330206, 30.328723322872435 ], [ -95.096204959640616, 30.329590322539008 ], [ -95.096168959650285, 30.32965632260867 ], [ -95.09606495883132, 30.329854323076322 ], [ -95.096029959554429, 30.329920323213084 ], [ -95.095538959160223, 30.330764323020251 ], [ -95.094207959142423, 30.333060323521885 ], [ -95.094065958359749, 30.333296323828218 ], [ -95.093564958300036, 30.334134324015185 ], [ -95.093122958541272, 30.3349253240774 ], [ -95.093014958153006, 30.335120324282649 ], [ -95.092634958022586, 30.335734324183179 ], [ -95.09253095807162, 30.335915324175033 ], [ -95.091749958011007, 30.337272324442885 ], [ -95.091297957980586, 30.338058325059432 ], [ -95.091188958431701, 30.338245324386492 ], [ -95.090862958102178, 30.338809324646167 ], [ -95.090754957845277, 30.338997324626199 ], [ -95.090648958340708, 30.339181324714456 ], [ -95.090333958313337, 30.33973532482123 ], [ -95.090228958213416, 30.33992032468727 ], [ -95.090022958011033, 30.340250324889436 ], [ -95.089953957933261, 30.340361325159236 ], [ -95.089436957676199, 30.341259325391182 ], [ -95.089243957573103, 30.341597325303123 ], [ -95.08913095833347, 30.341790325165967 ], [ -95.088795957711525, 30.34237232557221 ], [ -95.088683957671691, 30.342566326073648 ], [ -95.088566958094418, 30.342763325849436 ], [ -95.08821995752848, 30.343355325967199 ], [ -95.088104958127033, 30.343553325625269 ], [ -95.087930957554249, 30.343851325581259 ], [ -95.087412957967615, 30.344745326486041 ], [ -95.087239957361149, 30.345044326568416 ], [ -95.086199957705333, 30.346831326370534 ], [ -95.085235956730642, 30.348503327379039 ], [ -95.085031956998762, 30.348804326760995 ], [ -95.084273957359287, 30.350146327415267 ], [ -95.082199957141043, 30.353742327799303 ], [ -95.08109095677473, 30.35560732874594 ], [ -95.080884956182473, 30.355955329040867 ], [ -95.080181955815789, 30.357156328594428 ], [ -95.07809195584322, 30.36081232952975 ], [ -95.077840955799346, 30.361245329943241 ], [ -95.076753955807064, 30.363123329827644 ], [ -95.076622955366162, 30.363329330157168 ], [ -95.076514955481372, 30.363499330586706 ], [ -95.076251955915922, 30.363960330042424 ], [ -95.076131955270142, 30.364173330590575 ], [ -95.075847955841894, 30.364656331048334 ], [ -95.074996954987071, 30.366105330614396 ], [ -95.074713955079417, 30.366589330595477 ], [ -95.074202955159564, 30.367479331121505 ], [ -95.07324495554532, 30.369150331727912 ], [ -95.072664954920711, 30.370149331807209 ], [ -95.072236955324868, 30.370887332060246 ], [ -95.072187954794913, 30.370974332161378 ], [ -95.072150954562019, 30.371038332382341 ], [ -95.071659954293224, 30.371851332565825 ], [ -95.07125595507695, 30.372522332454434 ], [ -95.070229954270346, 30.374319332633078 ], [ -95.069759954782995, 30.375145333033462 ], [ -95.069621954090792, 30.375384332727339 ], [ -95.069211954002284, 30.376103332976044 ], [ -95.069074953849565, 30.376343333274807 ], [ -95.067426954127654, 30.379089333479278 ], [ -95.067325954211015, 30.37925633362082 ], [ -95.066132954266635, 30.381234334571921 ], [ -95.064168953981749, 30.38453733535486 ], [ -95.062743952722556, 30.38705833562711 ], [ -95.062653953481771, 30.387218335580716 ], [ -95.062183953584054, 30.38805833610563 ], [ -95.060803952500279, 30.390529336079034 ], [ -95.060518952416089, 30.391020336510643 ], [ -95.060976952440399, 30.39083033681338 ], [ -95.06122395333567, 30.390728336428715 ], [ -95.061499952598751, 30.390599336811384 ], [ -95.061525953324022, 30.390587336234283 ], [ -95.06214595277153, 30.390290336239318 ], [ -95.06434595333323, 30.389242335699414 ], [ -95.07105495513585, 30.386047334695739 ], [ -95.071079955563917, 30.386067334800362 ], [ -95.07151395504448, 30.385851335451346 ], [ -95.072818956259511, 30.385206334542126 ], [ -95.073253955631372, 30.384991334475629 ], [ -95.073258955877648, 30.38499933478646 ], [ -95.073274956018608, 30.385023335036959 ], [ -95.073280955665538, 30.385031334666092 ], [ -95.074932956336085, 30.384291334875172 ], [ -95.079891957462095, 30.38207433374582 ], [ -95.081544957677309, 30.381335333448881 ], [ -95.081771957329806, 30.381244334158815 ], [ -95.083341958609523, 30.380612333733605 ], [ -95.098207961850136, 30.374636331684073 ], [ -95.098256961629957, 30.374615331803128 ], [ -95.108773963905804, 30.369870330583584 ], [ -95.109955965017065, 30.369337330629477 ], [ -95.110015964505877, 30.369309330777728 ], [ -95.110195964266211, 30.369228330194602 ], [ -95.110256965050198, 30.369201330243484 ], [ -95.110282964533368, 30.369189330365767 ], [ -95.110318965007878, 30.369174330210807 ], [ -95.110361964513615, 30.369155330712058 ], [ -95.110388964394176, 30.369144329890165 ], [ -95.110411964291927, 30.369133330091699 ], [ -95.110447964869522, 30.369119329903938 ], [ -95.110483965117908, 30.369103330603931 ], [ -95.110507964378655, 30.369093329834527 ], [ -95.11067896436272, 30.369020329801867 ], [ -95.111191964848047, 30.368801330251092 ], [ -95.111362964852503, 30.368728330272717 ], [ -95.112157965434065, 30.368388329821123 ], [ -95.114541966089718, 30.367368329858202 ], [ -95.115337965834144, 30.367029329925327 ], [ -95.11561196549394, 30.366911329533689 ], [ -95.11643696653438, 30.366558329433364 ], [ -95.116711966041237, 30.36644132947977 ], [ -95.11674496594317, 30.366426329666435 ], [ -95.116795966634271, 30.366406329381029 ], [ -95.116845966676777, 30.366384329141631 ], [ -95.116879965924269, 30.366370329196165 ], [ -95.116977966691522, 30.366327329716444 ], [ -95.117271966037805, 30.366201329863618 ], [ -95.117370966107018, 30.36616032909501 ], [ -95.118228966345114, 30.365782329131967 ], [ -95.120801966780519, 30.364648328884392 ], [ -95.121660967051284, 30.364271329108544 ], [ -95.123165968034215, 30.363608329060664 ], [ -95.127681968889235, 30.361619328470255 ], [ -95.129187969183008, 30.360957328366986 ], [ -95.129293968844948, 30.360911327787306 ], [ -95.129611969229856, 30.360773328306706 ], [ -95.129717969512342, 30.360727328321204 ], [ -95.129783969433632, 30.360727327768831 ], [ -95.129982969625829, 30.360728327557602 ], [ -95.130049968971591, 30.360729327583233 ], [ -95.130070969226097, 30.360689327680056 ], [ -95.13013696926788, 30.360572328294296 ], [ -95.13015896924928, 30.360534328185981 ], [ -95.130768969631518, 30.360279328185584 ], [ -95.131989969720152, 30.359723327267975 ], [ -95.132032969919166, 30.359703327349546 ], [ -95.132696970241184, 30.359391327763447 ], [ -95.13283296978301, 30.359325327740407 ], [ -95.133798970199649, 30.358831327544401 ], [ -95.134086969810866, 30.358681327428844 ], [ -95.138375971330206, 30.356594327186464 ], [ -95.138688971129355, 30.356460326862944 ], [ -95.138866971385696, 30.356384326313869 ], [ -95.148131973078264, 30.352445325144359 ], [ -95.149686974229866, 30.351784325199631 ], [ -95.149749973789255, 30.351762325123126 ], [ -95.149780973651644, 30.351764325168986 ], [ -95.153004975064661, 30.350407324675807 ], [ -95.162678977436684, 30.346337323447088 ], [ -95.165903977479857, 30.34498132377562 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 306, "Tract": "48291700200", "Area_SqMi": 6.2938147513255345, "total_2009": 1545, "total_2010": 1629, "total_2011": 1514, "total_2012": 1209, "total_2013": 1091, "total_2014": 961, "total_2015": 834, "total_2016": 882, "total_2017": 962, "total_2018": 995, "total_2019": 1000, "total_2020": 1011, "age1": 210, "age2": 479, "age3": 256, "earn1": 158, "earn2": 414, "earn3": 373, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 39, "naics_s06": 0, "naics_s07": 235, "naics_s08": 0, "naics_s09": 15, "naics_s10": 15, "naics_s11": 30, "naics_s12": 8, "naics_s13": 0, "naics_s14": 111, "naics_s15": 0, "naics_s16": 273, "naics_s17": 10, "naics_s18": 14, "naics_s19": 25, "naics_s20": 156, "race1": 744, "race2": 154, "race3": 12, "race4": 26, "race5": 0, "race6": 9, "ethnicity1": 754, "ethnicity2": 191, "edu1": 127, "edu2": 221, "edu3": 275, "edu4": 112, "Shape_Length": 85682.097223814053, "Shape_Area": 175460783.29535234, "total_2021": 900, "total_2022": 945 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.088683957671691, 30.342566326073648 ], [ -95.088648958056496, 30.342552325557605 ], [ -95.088544957920902, 30.342513325908342 ], [ -95.088510958251717, 30.3425003255084 ], [ -95.088287957694035, 30.342405325316587 ], [ -95.087618957217188, 30.342122325206958 ], [ -95.087395957131577, 30.342028325310846 ], [ -95.087178957497926, 30.341932325900547 ], [ -95.086879957696169, 30.341801325803246 ], [ -95.086527957004506, 30.341654325605937 ], [ -95.086310957342192, 30.341564325742407 ], [ -95.085980957107452, 30.341434325976046 ], [ -95.085726957483203, 30.341361325919358 ], [ -95.085231957067165, 30.341243325121166 ], [ -95.084792957004794, 30.34114732589779 ], [ -95.08429395683136, 30.341099325821883 ], [ -95.084037956745647, 30.341082325901418 ], [ -95.082829956233994, 30.341080325468742 ], [ -95.081751956258685, 30.341079325356283 ], [ -95.081517955712485, 30.341078325992488 ], [ -95.080957955652309, 30.341077325334879 ], [ -95.080817955817736, 30.341077325945253 ], [ -95.080584956106293, 30.341077326104145 ], [ -95.080359955175751, 30.341077325615665 ], [ -95.079686954978072, 30.341079326031345 ], [ -95.079462955857593, 30.3410803261281 ], [ -95.079274955016643, 30.341080326036852 ], [ -95.078709955060717, 30.341083325918465 ], [ -95.078522955014932, 30.34108432593629 ], [ -95.078310955533581, 30.34108532576305 ], [ -95.077674954518969, 30.341090325917456 ], [ -95.077463954584417, 30.341093325562497 ], [ -95.077045954603761, 30.341093325535653 ], [ -95.075795954059089, 30.341094325836881 ], [ -95.075378954704547, 30.341095325427471 ], [ -95.075174954153994, 30.341094325752856 ], [ -95.074562953934858, 30.341094325884342 ], [ -95.074359954153977, 30.341094326164999 ], [ -95.07387895410676, 30.341094326207084 ], [ -95.073774953895736, 30.341091325627755 ], [ -95.072838953212312, 30.341072326030382 ], [ -95.072726953624965, 30.341067326184021 ], [ -95.072396953897396, 30.341047325693641 ], [ -95.072024953949438, 30.340988326100454 ], [ -95.071783953736627, 30.34095032615328 ], [ -95.071449952971548, 30.340885325760283 ], [ -95.071306953368037, 30.340854325839302 ], [ -95.070968952907933, 30.340782325727147 ], [ -95.070882953610862, 30.340758325500222 ], [ -95.070742952883904, 30.34072032558851 ], [ -95.070631952922895, 30.340689325467075 ], [ -95.070346952533157, 30.340611326284233 ], [ -95.070301952518648, 30.340595326227248 ], [ -95.070193952460841, 30.340557325493872 ], [ -95.070118953188711, 30.340529325895492 ], [ -95.069893952803469, 30.340448325931646 ], [ -95.069819952394056, 30.340421325525192 ], [ -95.069567953195488, 30.340324326187986 ], [ -95.069279952231696, 30.340196326282101 ], [ -95.069135952559535, 30.340132325660068 ], [ -95.069088952741694, 30.340109326265416 ], [ -95.068785952050234, 30.339959325914567 ], [ -95.068424952502809, 30.339746325639339 ], [ -95.06821495254276, 30.339623326097119 ], [ -95.068092952601731, 30.339551325967506 ], [ -95.067748952356041, 30.339326325686766 ], [ -95.067084952353525, 30.338828325593006 ], [ -95.066452951998556, 30.338348325754811 ], [ -95.066032951666813, 30.338031325144055 ], [ -95.065894951568765, 30.337928325305132 ], [ -95.065504951445803, 30.337637325560671 ], [ -95.064849951440408, 30.337140325277812 ], [ -95.064225951085845, 30.336668324871759 ], [ -95.063893951253291, 30.336417325215738 ], [ -95.063669950906089, 30.336248324927571 ], [ -95.063558950755095, 30.336164325421525 ], [ -95.063226951069325, 30.335913324875637 ], [ -95.063116951244112, 30.335830325335831 ], [ -95.063024951010419, 30.335761324775774 ], [ -95.062757950816803, 30.335562324997689 ], [ -95.062748950626826, 30.335555325427997 ], [ -95.062656950528648, 30.335487325527215 ], [ -95.062521951129469, 30.335386324791845 ], [ -95.062231950694738, 30.335155325252043 ], [ -95.061961950800921, 30.334962324722959 ], [ -95.060781950358901, 30.334078324934193 ], [ -95.060734949963361, 30.334040324691305 ], [ -95.06051595009869, 30.33386832484857 ], [ -95.060443950435442, 30.333811325181362 ], [ -95.060131950013883, 30.333579324706466 ], [ -95.058275949476069, 30.332197325051627 ], [ -95.056098948495318, 30.330554324019083 ], [ -95.055737948271428, 30.330273324648676 ], [ -95.055172948080141, 30.329851324368988 ], [ -95.054970948768897, 30.329699324635349 ], [ -95.054485948396007, 30.329333324469506 ], [ -95.053823948272182, 30.328852323814999 ], [ -95.053040947920195, 30.328264323881502 ], [ -95.052900948226693, 30.328163324118727 ], [ -95.052481947290346, 30.327863324337699 ], [ -95.052342948148478, 30.327763323501831 ], [ -95.05227794798202, 30.327713323957571 ], [ -95.051251947066049, 30.326936323363793 ], [ -95.050698947252002, 30.32653032354558 ], [ -95.050652946828578, 30.326496323616194 ], [ -95.050220947066109, 30.326179323647953 ], [ -95.049786946559379, 30.325861323960027 ], [ -95.049272947220757, 30.325485323891055 ], [ -95.048945946520959, 30.325246323572376 ], [ -95.04888994699057, 30.325205323807438 ], [ -95.048414946758143, 30.324837323040512 ], [ -95.047637946645736, 30.324298323058699 ], [ -95.047239946668725, 30.323996322998148 ], [ -95.047061946363243, 30.323861323523175 ], [ -95.045701945996697, 30.322851322764269 ], [ -95.045552945647771, 30.322740322769913 ], [ -95.044769945453908, 30.322159322997422 ], [ -95.04385894532281, 30.321480323099568 ], [ -95.043824945409526, 30.32145532309325 ], [ -95.043543944939685, 30.321258322998684 ], [ -95.043368944867424, 30.321477322686672 ], [ -95.043295945412112, 30.321551323070512 ], [ -95.042970944829449, 30.321887323325114 ], [ -95.042860945447856, 30.322308322766546 ], [ -95.04287194537396, 30.322634323585262 ], [ -95.0430249455937, 30.322770323210012 ], [ -95.043229945611657, 30.322950323129319 ], [ -95.043377945003598, 30.323045323721868 ], [ -95.043406945268018, 30.323062322925221 ], [ -95.043648945650162, 30.32321832360098 ], [ -95.043769945571071, 30.323649323670391 ], [ -95.043834945878771, 30.32402832384042 ], [ -95.043803945137341, 30.324603323549283 ], [ -95.044076945029659, 30.32489032388418 ], [ -95.044724945935897, 30.325192323413543 ], [ -95.044923945493409, 30.325560323532418 ], [ -95.045189945919333, 30.32555632363902 ], [ -95.045063945933265, 30.32583032382059 ], [ -95.045111945915608, 30.326078323647625 ], [ -95.045296945753876, 30.326179323907297 ], [ -95.045718945964396, 30.326292323611511 ], [ -95.045785945661947, 30.326494323853499 ], [ -95.045817946135742, 30.326586323858393 ], [ -95.045828946197929, 30.326835324354086 ], [ -95.045689945966956, 30.327034324403943 ], [ -95.045556946260774, 30.327206324319295 ], [ -95.045365945777647, 30.327398324133888 ], [ -95.045228946139275, 30.327673323760074 ], [ -95.045221945879135, 30.32771332374114 ], [ -95.04516894630062, 30.327981324071267 ], [ -95.045205945475232, 30.328388324098441 ], [ -95.045265946037802, 30.328745323940264 ], [ -95.045284946060946, 30.328796324612231 ], [ -95.04532594593384, 30.328904324829775 ], [ -95.045354945759428, 30.32895532469275 ], [ -95.045551946049827, 30.329400324755532 ], [ -95.045766946541406, 30.329791324474307 ], [ -95.045823945686621, 30.329972324385839 ], [ -95.045841946572679, 30.330012325025098 ], [ -95.045971946196119, 30.330713324708071 ], [ -95.04628594611782, 30.330896324394487 ], [ -95.046465946888489, 30.331138325064199 ], [ -95.046520946430277, 30.331327324787793 ], [ -95.046463946035217, 30.331443324503866 ], [ -95.046293946537162, 30.331639325204542 ], [ -95.046310946025613, 30.33178332512643 ], [ -95.046316946621118, 30.331840325272776 ], [ -95.046436946956703, 30.331999324634463 ], [ -95.046606946129586, 30.33209532540495 ], [ -95.04673094622791, 30.332163325043691 ], [ -95.047504946257064, 30.332377324592315 ], [ -95.047512946359973, 30.332582324981598 ], [ -95.047405946769601, 30.332766324846848 ], [ -95.04740294643598, 30.332776324729021 ], [ -95.047369946572971, 30.332893325573444 ], [ -95.047422946724296, 30.333004324885426 ], [ -95.047654947238343, 30.333167325193745 ], [ -95.047755947319857, 30.333237325375052 ], [ -95.048146946886149, 30.333577325077197 ], [ -95.048122946542136, 30.333655325129442 ], [ -95.048104946935396, 30.333717325522088 ], [ -95.047944947157433, 30.333781325563571 ], [ -95.047707946837974, 30.333783325362798 ], [ -95.047548947170796, 30.333824325549543 ], [ -95.047518947032131, 30.333919325191026 ], [ -95.047524946580651, 30.334165325842957 ], [ -95.047467947221108, 30.334291325295062 ], [ -95.047367946397955, 30.334416325327762 ], [ -95.047353946575583, 30.334520325129557 ], [ -95.047459947046661, 30.334619325917135 ], [ -95.047938946741468, 30.334752325074806 ], [ -95.047998946866144, 30.334753325426089 ], [ -95.048017947101286, 30.334756325788067 ], [ -95.048003946845583, 30.334783325876181 ], [ -95.047858946575019, 30.334910325411769 ], [ -95.047853946698581, 30.334939325928623 ], [ -95.04771794712903, 30.335036325657807 ], [ -95.048060946995264, 30.33513732521163 ], [ -95.048114946745329, 30.335224325559398 ], [ -95.048162947007185, 30.335300325616771 ], [ -95.047769947076304, 30.335490326028111 ], [ -95.047762947143283, 30.335515325522408 ], [ -95.04776094658591, 30.335534325218237 ], [ -95.047959946659589, 30.335828325831809 ], [ -95.048071946698897, 30.335896325884061 ], [ -95.048124947346167, 30.335927325831541 ], [ -95.047630946714818, 30.336072325988049 ], [ -95.04826694746356, 30.336208325668096 ], [ -95.048429947278208, 30.336422326093544 ], [ -95.048444946916561, 30.336503326117974 ], [ -95.04847394717649, 30.33666132561941 ], [ -95.048358947052293, 30.336886325522162 ], [ -95.048358946706614, 30.336900325941237 ], [ -95.048364947030336, 30.337087326180153 ], [ -95.048344947300194, 30.337153325763687 ], [ -95.048376946802506, 30.337534326091319 ], [ -95.047978947410485, 30.337983326524583 ], [ -95.047691946641606, 30.338029326626618 ], [ -95.047448946920497, 30.33782932649472 ], [ -95.047362947408331, 30.337439325960581 ], [ -95.046969947336223, 30.337471326496871 ], [ -95.046566946354659, 30.337531325832398 ], [ -95.04605494710367, 30.337542326220042 ], [ -95.045972946200138, 30.337687325857576 ], [ -95.045942946414343, 30.337740326474762 ], [ -95.046126946745943, 30.338048325835825 ], [ -95.046257946446886, 30.338194326568729 ], [ -95.046289946709237, 30.338229325901732 ], [ -95.046271946709538, 30.338411326026119 ], [ -95.046101946170211, 30.338684326726515 ], [ -95.045867946518626, 30.338802326742801 ], [ -95.045665946265075, 30.338641326136752 ], [ -95.045610946949338, 30.338210326541159 ], [ -95.045359946222362, 30.338320326646834 ], [ -95.045403946074913, 30.338611326043988 ], [ -95.045267946481701, 30.338866326394356 ], [ -95.04508194687152, 30.339040326316638 ], [ -95.045278946731898, 30.33905032626549 ], [ -95.045321946340351, 30.339050326179837 ], [ -95.045531946100056, 30.339028326244193 ], [ -95.045607946811245, 30.339034326060453 ], [ -95.045646946416454, 30.339051326363041 ], [ -95.045723946813979, 30.339108326307688 ], [ -95.045857946135484, 30.33939132652344 ], [ -95.046078946560172, 30.33962432670382 ], [ -95.045351946971095, 30.33994132640623 ], [ -95.045805946506135, 30.340239326506168 ], [ -95.045828947022741, 30.340239327078198 ], [ -95.046271947082161, 30.340251326449099 ], [ -95.045931946738747, 30.340583326446104 ], [ -95.045852946612385, 30.340822326445455 ], [ -95.045632947097388, 30.340761327165914 ], [ -95.045565946925365, 30.340728327128712 ], [ -95.045518947054163, 30.340744326851659 ], [ -95.045480946911894, 30.340733327164596 ], [ -95.045429947113547, 30.340678326523815 ], [ -95.045412946827454, 30.340652326969085 ], [ -95.045288946705782, 30.340590326839639 ], [ -95.045021946602944, 30.340459327171196 ], [ -95.045157946355374, 30.340637326616982 ], [ -95.045256946012685, 30.340734327231338 ], [ -95.045462946593389, 30.340962326606004 ], [ -95.045328946553894, 30.340991326458845 ], [ -95.045210946549048, 30.340986327119978 ], [ -95.045083946636225, 30.340977327021964 ], [ -95.044883946375265, 30.341008326728094 ], [ -95.044694946648505, 30.340776327012779 ], [ -95.04452394631933, 30.340899327043555 ], [ -95.044504946792387, 30.340913326757981 ], [ -95.044463946202455, 30.340942326571906 ], [ -95.044606946406816, 30.341147327010678 ], [ -95.044599946765331, 30.341167327072409 ], [ -95.04456794598039, 30.34119432652 ], [ -95.044529946232018, 30.34126032706871 ], [ -95.044522946493771, 30.341315327261867 ], [ -95.044637946393507, 30.341469326606486 ], [ -95.044637946273724, 30.341535326752837 ], [ -95.044618946678753, 30.341590326791177 ], [ -95.044605946291469, 30.341706326879375 ], [ -95.044593946098047, 30.341725327276503 ], [ -95.044589945951486, 30.34178932730315 ], [ -95.04425994604037, 30.34225832733571 ], [ -95.044016946156532, 30.342163327308292 ], [ -95.043965946119343, 30.342141327115229 ], [ -95.043927946326136, 30.342232327320929 ], [ -95.043789945785832, 30.342739327023551 ], [ -95.043557946654857, 30.342307326883486 ], [ -95.043307945657432, 30.342167327209197 ], [ -95.043305946180169, 30.342178327505881 ], [ -95.043311945788716, 30.342327327536712 ], [ -95.043293945834961, 30.342363327294446 ], [ -95.043290946419759, 30.342426326851918 ], [ -95.043286945942697, 30.342491326864121 ], [ -95.043027945712993, 30.342726327226742 ], [ -95.042331945901196, 30.342536327054439 ], [ -95.042214945719579, 30.342638327007577 ], [ -95.042166945675049, 30.342677327593126 ], [ -95.04208394623231, 30.342836327493274 ], [ -95.042256945576753, 30.342884327473509 ], [ -95.042578945700072, 30.342883327772594 ], [ -95.042616945588833, 30.343113327488179 ], [ -95.042634945627768, 30.343220327522374 ], [ -95.042174946072009, 30.343200327125132 ], [ -95.042114945883782, 30.343217327569015 ], [ -95.041978945331863, 30.343253327015404 ], [ -95.042307946221982, 30.343540327172253 ], [ -95.042516946452423, 30.343785327293968 ], [ -95.042514946369465, 30.34401632764693 ], [ -95.042357945911945, 30.344014327150596 ], [ -95.042284946072385, 30.343976327960711 ], [ -95.042178946051621, 30.343967327214123 ], [ -95.042145946227834, 30.344048327219291 ], [ -95.042052945930777, 30.344208327633453 ], [ -95.042165946307165, 30.344572327710207 ], [ -95.042373946320268, 30.344742327946815 ], [ -95.042652946029904, 30.344854327622599 ], [ -95.0426909456651, 30.344801328006039 ], [ -95.042757946122904, 30.344714327732927 ], [ -95.043000945749426, 30.344594328124405 ], [ -95.043049946253063, 30.344627328006158 ], [ -95.043412946437186, 30.344867328123097 ], [ -95.043427945965846, 30.344963327992179 ], [ -95.043419945821384, 30.344983327485131 ], [ -95.043432946770636, 30.345038327991006 ], [ -95.043442946024214, 30.345042327388381 ], [ -95.043447946730396, 30.345079328109936 ], [ -95.043527945854592, 30.345119328145486 ], [ -95.043539946565005, 30.345076328094098 ], [ -95.043577946073455, 30.344942327751173 ], [ -95.043709945934353, 30.344979327738216 ], [ -95.043873946773502, 30.345024327512306 ], [ -95.044047946852956, 30.344738327808287 ], [ -95.044167946209342, 30.344708327954905 ], [ -95.044275946820179, 30.344681327941682 ], [ -95.044489946670183, 30.344826327785505 ], [ -95.044910946492578, 30.344683327278403 ], [ -95.045155946340003, 30.344636327740542 ], [ -95.045219946445783, 30.344624327918805 ], [ -95.045264946363559, 30.344803327396331 ], [ -95.045327946259079, 30.34505432806256 ], [ -95.045335947011722, 30.34508032795873 ], [ -95.045473947103034, 30.345390327470774 ], [ -95.04548594714592, 30.345516327401235 ], [ -95.045485946859685, 30.345527327695631 ], [ -95.045537946885517, 30.34568732785598 ], [ -95.04550994723526, 30.345835328167006 ], [ -95.045222946527858, 30.34591732813146 ], [ -95.045213946478086, 30.345956327778687 ], [ -95.045181946583824, 30.34591232813926 ], [ -95.045073946660906, 30.345890327568732 ], [ -95.045047947222955, 30.345885328127562 ], [ -95.045031947153291, 30.345882327903475 ], [ -95.045038947142402, 30.345926327819654 ], [ -95.045193946654507, 30.3460543276103 ], [ -95.045208946960258, 30.346069327690568 ], [ -95.045291946533183, 30.346157327512437 ], [ -95.045470946960648, 30.34628032790453 ], [ -95.045242947235465, 30.346310328204972 ], [ -95.045350946654324, 30.346432327713391 ], [ -95.045483946413739, 30.346583327597102 ], [ -95.045545947408911, 30.346653328021365 ], [ -95.045542947170048, 30.346693327725376 ], [ -95.045574946536618, 30.346720327680529 ], [ -95.045640947224953, 30.346720327982624 ], [ -95.045673946524175, 30.346569328082538 ], [ -95.045795946594595, 30.346520328077499 ], [ -95.04583494688265, 30.346531328040037 ], [ -95.045923947143237, 30.346523327586802 ], [ -95.045974946498575, 30.346539327638855 ], [ -95.04600594707118, 30.346572328138127 ], [ -95.046009947003611, 30.346583328437291 ], [ -95.046096947082859, 30.346607327817896 ], [ -95.046119947413928, 30.346951328473004 ], [ -95.046168946586562, 30.347044327779031 ], [ -95.046254946923568, 30.347117327898466 ], [ -95.046415947078273, 30.346921328363379 ], [ -95.046545947037899, 30.346920328041747 ], [ -95.046614947680411, 30.346880328144987 ], [ -95.046768947080082, 30.346820327752653 ], [ -95.047028947684879, 30.346637327848516 ], [ -95.047142947534539, 30.346701327878748 ], [ -95.047165947031232, 30.34670432822934 ], [ -95.047191946910559, 30.346726327714109 ], [ -95.047221946858173, 30.346746328014177 ], [ -95.04719994736837, 30.347128328344631 ], [ -95.04719994730317, 30.347139327729288 ], [ -95.047248947504755, 30.347193328317772 ], [ -95.047266947467477, 30.347249327834401 ], [ -95.047324947235751, 30.347318328244299 ], [ -95.047395947480084, 30.347609328438942 ], [ -95.047452947833136, 30.347686328556552 ], [ -95.047528947835872, 30.347790327785926 ], [ -95.047687947893351, 30.347875327802292 ], [ -95.047821947392691, 30.347880328115558 ], [ -95.048020947333626, 30.347887327919189 ], [ -95.048191947315274, 30.347893327833216 ], [ -95.048451948134129, 30.347723328317947 ], [ -95.048570947742775, 30.347748328212006 ], [ -95.04850994822317, 30.348107328100049 ], [ -95.048723948191025, 30.348331328024024 ], [ -95.048936947412031, 30.348554327982686 ], [ -95.049207947919527, 30.348838328692903 ], [ -95.049400947776903, 30.349041328690525 ], [ -95.049194948149633, 30.349041328181666 ], [ -95.049245948272301, 30.349102328064049 ], [ -95.049486947798869, 30.349239328736896 ], [ -95.049612947752706, 30.349371328743882 ], [ -95.049771947647244, 30.349591328508932 ], [ -95.04982894835382, 30.349701328279966 ], [ -95.049853947775148, 30.349761328571237 ], [ -95.049821948578526, 30.349816328118969 ], [ -95.049644948080783, 30.34999232862446 ], [ -95.049612947623359, 30.350047328987813 ], [ -95.049606948048805, 30.350102328686081 ], [ -95.049631948522929, 30.350146328652187 ], [ -95.049676948466129, 30.350174328575875 ], [ -95.049752947730369, 30.350179328414143 ], [ -95.049929947898676, 30.35014632851254 ], [ -95.050005948588677, 30.350157328394769 ], [ -95.050100948244534, 30.35020132887831 ], [ -95.050145948157777, 30.350234328759392 ], [ -95.050202948105962, 30.350322328670863 ], [ -95.050246948035522, 30.350581328974556 ], [ -95.050329948720204, 30.35073532867969 ], [ -95.050462948794419, 30.350900328724641 ], [ -95.050481947926968, 30.351070328917885 ], [ -95.05050694820369, 30.351197328821183 ], [ -95.050557948108292, 30.351323328703383 ], [ -95.050627948765069, 30.35144932837774 ], [ -95.050449948482878, 30.351554328687985 ], [ -95.050417948340822, 30.351592328817535 ], [ -95.050424947906862, 30.351636329148175 ], [ -95.050451948424922, 30.351675328728827 ], [ -95.050462948451738, 30.351691329188391 ], [ -95.0505829480757, 30.351774328872896 ], [ -95.050588947959199, 30.351801329289994 ], [ -95.050563948618858, 30.351834328667969 ], [ -95.050481948869063, 30.351884328982482 ], [ -95.050468948805388, 30.351900329332786 ], [ -95.050462948292349, 30.351944328729839 ], [ -95.050601948694677, 30.352153329313978 ], [ -95.050620948490902, 30.35219732921357 ], [ -95.050468948382743, 30.352346328763215 ], [ -95.050436948248688, 30.35239532914283 ], [ -95.050417948387917, 30.352467329168928 ], [ -95.050443948168208, 30.352538329021389 ], [ -95.050493948311939, 30.352588329396404 ], [ -95.050715948754046, 30.352643329322699 ], [ -95.050747948941108, 30.352659329460035 ], [ -95.050772948174298, 30.352692328843709 ], [ -95.050791948125891, 30.352764329341902 ], [ -95.050665948626076, 30.353000329235257 ], [ -95.050658948596336, 30.35306632871205 ], [ -95.050684948059171, 30.353143329517106 ], [ -95.050734948500207, 30.353198328995017 ], [ -95.050785948335744, 30.353215328899161 ], [ -95.051089948947421, 30.35318232952687 ], [ -95.051254948377007, 30.353253328742834 ], [ -95.051343948327769, 30.353253329258536 ], [ -95.051654948795559, 30.35319832919533 ], [ -95.051742948609828, 30.353198329036275 ], [ -95.05182594871539, 30.353220329082831 ], [ -95.051882948616637, 30.353253329561909 ], [ -95.051888948435405, 30.353286329118109 ], [ -95.051882949053194, 30.353319329227389 ], [ -95.05184494932162, 30.35335732903954 ], [ -95.051615948876929, 30.353500328958063 ], [ -95.051609948843407, 30.353539329168136 ], [ -95.051641948554575, 30.353588328884605 ], [ -95.051673948874395, 30.35358832933651 ], [ -95.052002948544953, 30.353522329225395 ], [ -95.052123948808074, 30.353561329537559 ], [ -95.052148949279214, 30.353583329330981 ], [ -95.052173949034696, 30.353638328916645 ], [ -95.052161948684557, 30.353720329447448 ], [ -95.052097949332548, 30.353885329694837 ], [ -95.052097949388084, 30.35395732945598 ], [ -95.052116948871344, 30.354028329655396 ], [ -95.052173949430838, 30.354133329754426 ], [ -95.052218948562796, 30.354171328897831 ], [ -95.052465948656135, 30.354144329594259 ], [ -95.052497949536985, 30.354182328874003 ], [ -95.05254194943123, 30.354342329237248 ], [ -95.052560948858599, 30.354380329545677 ], [ -95.052617949163604, 30.354402329447208 ], [ -95.05284594905973, 30.354457328965125 ], [ -95.052909948768786, 30.354485328938893 ], [ -95.052925949402677, 30.354505329449612 ], [ -95.052976949014422, 30.354569329474156 ], [ -95.052993949387329, 30.354590329484825 ], [ -95.053006948906841, 30.35460732959492 ], [ -95.053023949292282, 30.354628329601478 ], [ -95.053043948708634, 30.35466232924092 ], [ -95.053055949374112, 30.354681329022885 ], [ -95.053061948941803, 30.354691329804055 ], [ -95.053079948796665, 30.354721329471495 ], [ -95.05308694912344, 30.354732329789815 ], [ -95.053277949634634, 30.354886329449744 ], [ -95.053251949439954, 30.354958329670225 ], [ -95.053220948963116, 30.355007329217226 ], [ -95.053124948909641, 30.355073329483687 ], [ -95.052972949633116, 30.355155329397729 ], [ -95.052915948944189, 30.355216329588124 ], [ -95.052934948764502, 30.355293329742093 ], [ -95.053055948994498, 30.355419329115442 ], [ -95.053264948955444, 30.355590329883231 ], [ -95.053346949565352, 30.355700329428 ], [ -95.053441948943387, 30.355733329724437 ], [ -95.053575949093414, 30.355749329648717 ], [ -95.053639949819242, 30.355777329259219 ], [ -95.053689949166227, 30.35579932949199 ], [ -95.053746949148518, 30.356024329377956 ], [ -95.053676949451201, 30.356420329751899 ], [ -95.053676948941046, 30.356486330161058 ], [ -95.053828949797904, 30.35690432956228 ], [ -95.053834949623294, 30.356964329486541 ], [ -95.053822949799809, 30.356992329859807 ], [ -95.053739949079002, 30.357053330103632 ], [ -95.053670949306508, 30.357064329418911 ], [ -95.053632949965873, 30.357052329613129 ], [ -95.053365949380947, 30.356904329741155 ], [ -95.053327949266929, 30.35689932996306 ], [ -95.053270949089452, 30.356920329491892 ], [ -95.053219949385237, 30.356959329942814 ], [ -95.053194949845363, 30.357058330151609 ], [ -95.053181948933442, 30.357179330092109 ], [ -95.053207949352213, 30.357283329838456 ], [ -95.053290949487916, 30.357442329740596 ], [ -95.053389949196117, 30.357628330088389 ], [ -95.053410949015671, 30.357668330129272 ], [ -95.05353694921763, 30.357866330402288 ], [ -95.053543949530265, 30.357910330412516 ], [ -95.053530949362468, 30.357943330446815 ], [ -95.053505949921458, 30.357965330075579 ], [ -95.05345494906669, 30.357976330030905 ], [ -95.053410949147406, 30.357965329619802 ], [ -95.053277949050141, 30.357888329740884 ], [ -95.053219949627191, 30.357866329845471 ], [ -95.053175949288786, 30.35786133036278 ], [ -95.053080949145965, 30.35789933043532 ], [ -95.053061949028844, 30.357927329756095 ], [ -95.053067949540377, 30.357982329619752 ], [ -95.053137949030216, 30.358114330166497 ], [ -95.053238949147058, 30.358350330523507 ], [ -95.053283949052755, 30.358389330115195 ], [ -95.053340949653517, 30.358411330510798 ], [ -95.053372949886338, 30.358400330300391 ], [ -95.053435949004722, 30.358356329901987 ], [ -95.053530950011961, 30.358334329912459 ], [ -95.053593949496189, 30.358356329821124 ], [ -95.053638949924107, 30.358394330188798 ], [ -95.053632950015583, 30.358658330183559 ], [ -95.053644949739549, 30.358845330323824 ], [ -95.053638949118792, 30.358889330591474 ], [ -95.053506949362088, 30.358997330418688 ], [ -95.053372949392099, 30.359109330302793 ], [ -95.053315949820131, 30.359180329927678 ], [ -95.053276949987733, 30.359246330220699 ], [ -95.053162949574542, 30.359230329948119 ], [ -95.053118949649473, 30.359230330574299 ], [ -95.053093949262887, 30.359241329889009 ], [ -95.053074949823454, 30.359279330313459 ], [ -95.053074949030247, 30.359362330057277 ], [ -95.053093949674576, 30.359417330525474 ], [ -95.053162949402974, 30.359521330024965 ], [ -95.053143949152087, 30.359615330581253 ], [ -95.05319494900283, 30.359675330224174 ], [ -95.053194949347471, 30.359758329983137 ], [ -95.053207949530119, 30.359780330125567 ], [ -95.053226949115881, 30.359791330610015 ], [ -95.053276949715368, 30.359780330320394 ], [ -95.053365949337561, 30.359730330196676 ], [ -95.053416950067074, 30.359714330160884 ], [ -95.053492949301074, 30.359714330268055 ], [ -95.053562949909065, 30.359758330639757 ], [ -95.053612949459676, 30.359824330723544 ], [ -95.053619949240726, 30.359912330581569 ], [ -95.053614949991214, 30.359953330302929 ], [ -95.053612950025951, 30.359967330680615 ], [ -95.053543949594697, 30.360099330385196 ], [ -95.053536949353017, 30.360134330078552 ], [ -95.053530949900832, 30.360165330113446 ], [ -95.053543949892642, 30.3602203308171 ], [ -95.053695949189205, 30.360357330648554 ], [ -95.053727949527826, 30.360407330561525 ], [ -95.053784949470298, 30.360566330477717 ], [ -95.053834949362638, 30.360615330140504 ], [ -95.053879949636865, 30.360681330857624 ], [ -95.053891949720679, 30.360731331029349 ], [ -95.053879949821052, 30.360896330225785 ], [ -95.053923949988402, 30.361050330293025 ], [ -95.053930949566833, 30.361385330852453 ], [ -95.053942950239161, 30.361479330893374 ], [ -95.053930950233863, 30.361589330869641 ], [ -95.053885950024991, 30.361677331124511 ], [ -95.053834950076322, 30.361704330663819 ], [ -95.053593950121197, 30.361770330537869 ], [ -95.053568949891798, 30.361814330531377 ], [ -95.05356294955817, 30.36200133055646 ], [ -95.05351795004573, 30.362034330644722 ], [ -95.053365949938382, 30.362089330533991 ], [ -95.053333950145358, 30.362111330964076 ], [ -95.053302949796333, 30.362199331117775 ], [ -95.053302950082397, 30.362265331379898 ], [ -95.053314949627577, 30.362326330842791 ], [ -95.053411949922634, 30.362531331072514 ], [ -95.053517950040316, 30.362754331426551 ], [ -95.053517949479357, 30.36281533065425 ], [ -95.053492949820182, 30.362842331247979 ], [ -95.05345495014663, 30.362853330970236 ], [ -95.053308950019172, 30.362809331461143 ], [ -95.053270949886382, 30.362826331221971 ], [ -95.053251949907505, 30.362859330621077 ], [ -95.053264949204731, 30.363079331382622 ], [ -95.053257950170661, 30.363145330685075 ], [ -95.053213949914138, 30.36323333108183 ], [ -95.053111949189017, 30.363299330733742 ], [ -95.053023950064087, 30.363370331470957 ], [ -95.052972949150345, 30.363458330804331 ], [ -95.052959949713269, 30.363541331596984 ], [ -95.052991949785508, 30.363755331653842 ], [ -95.0529789497769, 30.36381033104588 ], [ -95.052902949101849, 30.363904331380617 ], [ -95.052877949552553, 30.36396433151576 ], [ -95.052832949452281, 30.364140331054621 ], [ -95.052636949975764, 30.364212331054745 ], [ -95.052585949908163, 30.364250331220596 ], [ -95.052566949222992, 30.364332331316337 ], [ -95.052572949720286, 30.364448331151085 ], [ -95.052592949200829, 30.364503331001693 ], [ -95.052617949255122, 30.36453033148781 ], [ -95.052668949812201, 30.364552331420914 ], [ -95.052801949992485, 30.364470331492388 ], [ -95.052845949564627, 30.364459331612579 ], [ -95.052902949310649, 30.36448633118944 ], [ -95.052915949516077, 30.364519331478533 ], [ -95.052921949335925, 30.364618330975031 ], [ -95.052877949721946, 30.364761331251319 ], [ -95.052871949513076, 30.364866331495289 ], [ -95.052877949292522, 30.364921331159149 ], [ -95.052909950098154, 30.365009331764274 ], [ -95.052903949977178, 30.365038331662621 ], [ -95.052890950109784, 30.365053331273572 ], [ -95.052869949644133, 30.365053331060125 ], [ -95.052731949909756, 30.364981331072734 ], [ -95.052687949554056, 30.365003331077098 ], [ -95.052661949481546, 30.365036331200056 ], [ -95.052642949752794, 30.365152331863023 ], [ -95.052668949475873, 30.365300331979302 ], [ -95.052655949642258, 30.365344331137788 ], [ -95.052598949695948, 30.365421331359606 ], [ -95.052579949981563, 30.365663331325557 ], [ -95.052566949510805, 30.365696332079676 ], [ -95.052477949800178, 30.365784331408904 ], [ -95.052439949175024, 30.365850331722765 ], [ -95.052458949978956, 30.366224331773747 ], [ -95.052452949845986, 30.366284332133418 ], [ -95.0524149492352, 30.366306331733227 ], [ -95.052211949300926, 30.366295331556337 ], [ -95.052186949201712, 30.366301331551824 ], [ -95.052160949235272, 30.366323331400498 ], [ -95.052129949401092, 30.366378331571479 ], [ -95.052129949578585, 30.36641633218137 ], [ -95.052141949513313, 30.366466331473518 ], [ -95.052180949726178, 30.36654233208689 ], [ -95.052205949621907, 30.366592332068482 ], [ -95.05228794960378, 30.366719331715451 ], [ -95.052350949124488, 30.366779331668553 ], [ -95.052395949387943, 30.366796331872607 ], [ -95.052439949545246, 30.366774331951429 ], [ -95.052572949462544, 30.36657633222217 ], [ -95.05262395009332, 30.366537332068919 ], [ -95.052680949548346, 30.366521331900369 ], [ -95.052744949473635, 30.366537331391878 ], [ -95.052769950178899, 30.366554331670805 ], [ -95.052782949489398, 30.366636331771229 ], [ -95.05272594931651, 30.366812331748509 ], [ -95.052712949731983, 30.366889332308382 ], [ -95.05272594964535, 30.366994331872469 ], [ -95.05284594980499, 30.367181331786551 ], [ -95.052851949672188, 30.367236332293601 ], [ -95.052820949902582, 30.367274332338898 ], [ -95.052617950003196, 30.367324331968547 ], [ -95.052598949910745, 30.367362332213091 ], [ -95.05261794975965, 30.367626332059942 ], [ -95.052630949758267, 30.367687331835249 ], [ -95.052693949480968, 30.367763331825191 ], [ -95.052807950100913, 30.367857332429509 ], [ -95.052845949597852, 30.367939332443839 ], [ -95.052845949601931, 30.367983332200318 ], [ -95.052851949587264, 30.368165331874522 ], [ -95.052883949802521, 30.36831333229204 ], [ -95.052921949662974, 30.368429331870008 ], [ -95.052928949872651, 30.368489331914148 ], [ -95.052889949370012, 30.368572332150627 ], [ -95.052870949724948, 30.368660332258354 ], [ -95.052889949921379, 30.368715332455711 ], [ -95.053010949468359, 30.368858332645754 ], [ -95.053042949990314, 30.368918332604256 ], [ -95.053067949957523, 30.369012332075354 ], [ -95.053061950028649, 30.369045331995345 ], [ -95.053035949507091, 30.369072332055232 ], [ -95.053004950273717, 30.369083332654053 ], [ -95.052966949762776, 30.369083332093666 ], [ -95.052908950290202, 30.369056332291205 ], [ -95.052718949414682, 30.368913332631539 ], [ -95.052667950294989, 30.36888533187873 ], [ -95.052617949878112, 30.368880332703391 ], [ -95.052566950157569, 30.368902332624383 ], [ -95.052522950026997, 30.368951332084087 ], [ -95.052515949593356, 30.369006331894099 ], [ -95.052534949645249, 30.36907833237937 ], [ -95.052561949762051, 30.369133332184084 ], [ -95.052706950149414, 30.369435332729992 ], [ -95.052731949432896, 30.369518332068949 ], [ -95.052731949352463, 30.369562332694485 ], [ -95.052718949947348, 30.369611332772742 ], [ -95.052661950141811, 30.369726332577915 ], [ -95.05257994932083, 30.369842332342277 ], [ -95.052553949413735, 30.369908332879046 ], [ -95.052553949461227, 30.370056332261676 ], [ -95.052534949443483, 30.370095332480506 ], [ -95.052490949310837, 30.370133332665784 ], [ -95.052331950120347, 30.370205332645284 ], [ -95.05228794986391, 30.370243332762371 ], [ -95.052268950114183, 30.370298332274483 ], [ -95.052268949242674, 30.370353333020923 ], [ -95.052287949464912, 30.370408332357929 ], [ -95.052598950086036, 30.370683332704235 ], [ -95.052667949778495, 30.370777332464613 ], [ -95.052680950117164, 30.370843333113225 ], [ -95.052628950169492, 30.370938332757945 ], [ -95.052584949597133, 30.37102033265284 ], [ -95.05257995015846, 30.37103033262655 ], [ -95.052566949933876, 30.371090332789631 ], [ -95.052553949422659, 30.371107332358093 ], [ -95.052465950007957, 30.371162332455999 ], [ -95.052331950003136, 30.371217333105946 ], [ -95.052293949518955, 30.37124433274743 ], [ -95.052223950180007, 30.371416332433604 ], [ -95.052192949530905, 30.371491332778909 ], [ -95.052160949471528, 30.371535333217587 ], [ -95.052135949587381, 30.371552332479133 ], [ -95.052065949465714, 30.371535333111609 ], [ -95.051900949502851, 30.371403332826588 ], [ -95.051856949593997, 30.371398333127857 ], [ -95.051799949848018, 30.371420333069185 ], [ -95.051735949305012, 30.371475332398852 ], [ -95.051551949602455, 30.371744333109543 ], [ -95.051444949927387, 30.371832332536041 ], [ -95.051361950052879, 30.371827333127591 ], [ -95.051272949620056, 30.371744332857656 ], [ -95.051298949173813, 30.371585333106783 ], [ -95.05134295007575, 30.371458333005965 ], [ -95.051323949252804, 30.371332332554832 ], [ -95.05125394954257, 30.371211333128439 ], [ -95.051241949649182, 30.371156332900995 ], [ -95.051196949820721, 30.371134333243088 ], [ -95.051120949955916, 30.371156332381879 ], [ -95.050949949171951, 30.371321332549499 ], [ -95.050886949308648, 30.371332333110452 ], [ -95.050733948968386, 30.371315332430349 ], [ -95.050423949510488, 30.371151332505303 ], [ -95.050340948898494, 30.371112332846778 ], [ -95.050251949003083, 30.371084332633277 ], [ -95.050106949650797, 30.371073332847953 ], [ -95.049814949165921, 30.371095332553281 ], [ -95.049687949160159, 30.371117333063189 ], [ -95.04968794883375, 30.371161332784659 ], [ -95.049712949128903, 30.371194332890383 ], [ -95.049832948993227, 30.371312333239427 ], [ -95.049909949195012, 30.371387333014095 ], [ -95.050036949552833, 30.371530332830034 ], [ -95.050068948947455, 30.371579333257962 ], [ -95.050055949413434, 30.371618332934101 ], [ -95.05002994947607, 30.37164533334434 ], [ -95.049966949346825, 30.371656332572329 ], [ -95.049827949284662, 30.371596333393217 ], [ -95.049725948685833, 30.371579332975401 ], [ -95.049630948777917, 30.371574332892472 ], [ -95.049497949163197, 30.371590333359727 ], [ -95.049446948769187, 30.3716183331011 ], [ -95.049275948719256, 30.371970332982418 ], [ -95.049237948734685, 30.372025333098009 ], [ -95.049192949569687, 30.37205833267279 ], [ -95.049148949353039, 30.372069333216047 ], [ -95.049072949106971, 30.372069332707643 ], [ -95.048939948754992, 30.37208533262088 ], [ -95.048856949079337, 30.372124333206571 ], [ -95.048774948429511, 30.372179333462842 ], [ -95.048736949134579, 30.372234333462345 ], [ -95.048723948431274, 30.372272332967174 ], [ -95.048729948631546, 30.372311333366852 ], [ -95.048761949037214, 30.37236633330982 ], [ -95.048831949058169, 30.372437333335565 ], [ -95.048856948711702, 30.372476332741922 ], [ -95.048863948679482, 30.372514333533214 ], [ -95.048806949471441, 30.3726463328858 ], [ -95.048780949076189, 30.372762333382699 ], [ -95.048837949049542, 30.372888333137418 ], [ -95.048850949382924, 30.373003333024808 ], [ -95.04881894921229, 30.373119333681746 ], [ -95.048784949402261, 30.37314833319974 ], [ -95.048768949505927, 30.373162332922199 ], [ -95.048533948434255, 30.373366333214776 ], [ -95.048430948429456, 30.373470333126228 ], [ -95.048393948994018, 30.373509333219655 ], [ -95.048317949247817, 30.373625333013582 ], [ -95.048336949048888, 30.373713333303751 ], [ -95.048374949158031, 30.373762333062757 ], [ -95.048482948722352, 30.37385633348136 ], [ -95.048495948725758, 30.373889333150174 ], [ -95.048495949203456, 30.374010333886034 ], [ -95.04848294871617, 30.37410933326445 ], [ -95.048463949335925, 30.374186333429041 ], [ -95.048387948592691, 30.374301333195579 ], [ -95.048285949289252, 30.374362333761731 ], [ -95.048216948489028, 30.374384333383915 ], [ -95.048051948405103, 30.374400333239628 ], [ -95.047962948503894, 30.374422333195746 ], [ -95.047899948385478, 30.374455333600494 ], [ -95.04786194880279, 30.374510333325194 ], [ -95.047854948599962, 30.374543333451278 ], [ -95.047949949056886, 30.37464733332223 ], [ -95.047968948779598, 30.374680333798768 ], [ -95.047968948780934, 30.374702333187297 ], [ -95.047911949336893, 30.374746333635461 ], [ -95.047873948658491, 30.374768333793423 ], [ -95.047810948629262, 30.374785333949383 ], [ -95.047550949244737, 30.374713333491364 ], [ -95.047493949126817, 30.374708333996978 ], [ -95.047448949038071, 30.37472433364821 ], [ -95.047429948490986, 30.374845333320664 ], [ -95.047404948453448, 30.374900334032123 ], [ -95.047201948176678, 30.374928333675474 ], [ -95.04706894837031, 30.374999333494028 ], [ -95.04703894889866, 30.375217334140441 ], [ -95.047031949022639, 30.375393333412134 ], [ -95.04645494886536, 30.375585333660588 ], [ -95.046346948704084, 30.375662333946984 ], [ -95.046327948137787, 30.375712334321534 ], [ -95.046346948924977, 30.375772333602082 ], [ -95.046397948972739, 30.375838333520953 ], [ -95.046733948508432, 30.375987334372656 ], [ -95.046866948734149, 30.37607533423369 ], [ -95.046904948224906, 30.376130333503845 ], [ -95.046961948419167, 30.376317333747565 ], [ -95.046987948410347, 30.376350333792686 ], [ -95.047151948760174, 30.376465333678592 ], [ -95.047380948451419, 30.376658333631791 ], [ -95.04755194918998, 30.376729333684306 ], [ -95.047633948539485, 30.376773334445776 ], [ -95.047716949302853, 30.376839334092505 ], [ -95.047786949124543, 30.376911334448675 ], [ -95.047843949307691, 30.376982333682111 ], [ -95.047862949405015, 30.377026334270344 ], [ -95.047849949066844, 30.377070333716528 ], [ -95.047728949276959, 30.377197334608923 ], [ -95.047703948404973, 30.377301334089999 ], [ -95.047697948822986, 30.37739433444154 ], [ -95.047716949013534, 30.377427334009433 ], [ -95.047893948788243, 30.377455333796931 ], [ -95.047976949217215, 30.377488334643665 ], [ -95.048046949122124, 30.377537334553971 ], [ -95.048084949002671, 30.377609334533965 ], [ -95.048103949065748, 30.377691334613139 ], [ -95.048103949117731, 30.377779333844195 ], [ -95.048077948661785, 30.377862334502542 ], [ -95.047988948725205, 30.378027334394012 ], [ -95.047963949246352, 30.378104334510446 ], [ -95.047976949286365, 30.378175334594058 ], [ -95.048090949082138, 30.378313334479994 ], [ -95.048128949001423, 30.378390334470261 ], [ -95.048153949300428, 30.378483334497357 ], [ -95.048140949284161, 30.378709334209674 ], [ -95.048071949054062, 30.378994334064245 ], [ -95.048064948577462, 30.379082334743746 ], [ -95.04809694867663, 30.379148334730349 ], [ -95.048229949042877, 30.379280334350998 ], [ -95.048261949297071, 30.379335334171291 ], [ -95.048254949253092, 30.37942933492057 ], [ -95.048172948812123, 30.379693334373609 ], [ -95.048166949518688, 30.379786334641199 ], [ -95.048172948684325, 30.379874334514497 ], [ -95.048267948752056, 30.380127334412524 ], [ -95.048305948869313, 30.380402334540694 ], [ -95.048343948742414, 30.38050133459399 ], [ -95.048388949466997, 30.380584334757966 ], [ -95.048413949021096, 30.380760334545087 ], [ -95.048400949237788, 30.380831335168647 ], [ -95.048368948823892, 30.380908334974883 ], [ -95.048229949601946, 30.381117334812124 ], [ -95.04809694897483, 30.381370334758575 ], [ -95.048039948964856, 30.381447334642782 ], [ -95.04800794886124, 30.381474334765841 ], [ -95.04794394920745, 30.381507334795437 ], [ -95.047430949541024, 30.381733334884252 ], [ -95.047373948709875, 30.381782335091589 ], [ -95.047271948651058, 30.381925334813182 ], [ -95.047113949199556, 30.382079335554316 ], [ -95.046853949096203, 30.382299335638052 ], [ -95.04678394916111, 30.38234333532359 ], [ -95.046586949343734, 30.38242533484965 ], [ -95.046523948984003, 30.382475335711327 ], [ -95.046491948882675, 30.382541334969169 ], [ -95.046485949239269, 30.382612335761188 ], [ -95.046497948807101, 30.382678335347773 ], [ -95.046491949015603, 30.382711335756255 ], [ -95.046288949278107, 30.382909335181452 ], [ -95.046218949266944, 30.382992334961806 ], [ -95.04611094848282, 30.383151335812119 ], [ -95.046066948645674, 30.383250335411379 ], [ -95.04601594833629, 30.383498335134 ], [ -95.046009949148498, 30.383580335100646 ], [ -95.04602894926667, 30.383646335105997 ], [ -95.046117948902435, 30.383756335715859 ], [ -95.046167948670288, 30.383855335221998 ], [ -95.04629494859519, 30.383965335292775 ], [ -95.046332948593943, 30.384141335578853 ], [ -95.046256949318831, 30.384504335305561 ], [ -95.046205948812485, 30.384680336108335 ], [ -95.046066948669576, 30.385059336019907 ], [ -95.046040949210536, 30.385213335858282 ], [ -95.046059948507221, 30.385351335503508 ], [ -95.046180948745359, 30.385647336324045 ], [ -95.046218948927944, 30.385796336265674 ], [ -95.046237948829926, 30.385961336082495 ], [ -95.046230948527651, 30.386324336019939 ], [ -95.046237949149074, 30.3864393364486 ], [ -95.046256948911591, 30.386505336302097 ], [ -95.046370948488359, 30.38664333598371 ], [ -95.046452948581646, 30.38678633604415 ], [ -95.046497949486323, 30.386835336292076 ], [ -95.046757949570505, 30.387028336636011 ], [ -95.04683394947574, 30.387127336165928 ], [ -95.046871949256158, 30.387237336368571 ], [ -95.046883949238378, 30.387484336228564 ], [ -95.04691594931279, 30.387599336542362 ], [ -95.046966949063872, 30.387698335927283 ], [ -95.047036949155512, 30.387786336224224 ], [ -95.047124949552284, 30.387858336031915 ], [ -95.047359949212392, 30.388006336502446 ], [ -95.04739794932641, 30.388050336027799 ], [ -95.047454949605054, 30.388144336845983 ], [ -95.047499949831391, 30.388188336641473 ], [ -95.047740949577886, 30.388353336374738 ], [ -95.047816949089309, 30.388435336007191 ], [ -95.047898949554977, 30.388545336559812 ], [ -95.048063949409993, 30.388831336502847 ], [ -95.048145949424068, 30.388941336854248 ], [ -95.04823494999647, 30.389035336416001 ], [ -95.048424949826313, 30.389161336369028 ], [ -95.048494949223809, 30.389222336496285 ], [ -95.048551949737003, 30.38928833658397 ], [ -95.048589949874653, 30.389354336755584 ], [ -95.048640949212228, 30.389497336508157 ], [ -95.048659949554619, 30.389662336473936 ], [ -95.048646950185628, 30.389848336638629 ], [ -95.048577949478812, 30.390143336376912 ], [ -95.048570949572905, 30.390178336341492 ], [ -95.048564950203229, 30.390255336981991 ], [ -95.048576950126375, 30.390305336900703 ], [ -95.04861494946212, 30.390338336812064 ], [ -95.048691949579904, 30.39038233693822 ], [ -95.048729949833685, 30.390431336930156 ], [ -95.048735950269887, 30.39050333715355 ], [ -95.048627950223334, 30.390761336524847 ], [ -95.04858994979837, 30.390910336682051 ], [ -95.048576949392469, 30.391042337323398 ], [ -95.048595950290988, 30.3911243367513 ], [ -95.04864694931382, 30.391185336820445 ], [ -95.048792950165947, 30.391311337387016 ], [ -95.048811949450553, 30.391350337403246 ], [ -95.048792949919118, 30.391383336845806 ], [ -95.048735949809029, 30.391427336637534 ], [ -95.048678949734523, 30.391493337421153 ], [ -95.048659949325256, 30.391570337041774 ], [ -95.048659949557404, 30.391614337270383 ], [ -95.048671950096178, 30.391652337100282 ], [ -95.048811949909449, 30.391751336720734 ], [ -95.048849949580642, 30.391789337461976 ], [ -95.04884394974107, 30.391845337034091 ], [ -95.048792949954361, 30.391932336868447 ], [ -95.048747949526316, 30.392042337484273 ], [ -95.048741949362281, 30.392103337061602 ], [ -95.048760950381151, 30.39231733703885 ], [ -95.048741949643016, 30.392526337241666 ], [ -95.048532950377577, 30.392944337153928 ], [ -95.048437950315133, 30.393280337453721 ], [ -95.048633949457951, 30.393576337121001 ], [ -95.048671949674329, 30.393868337092101 ], [ -95.04868495012235, 30.39407733795424 ], [ -95.048677950075046, 30.394192337264531 ], [ -95.048627949482082, 30.394379337748365 ], [ -95.048411950148534, 30.394632337305005 ], [ -95.048367949839275, 30.394704337986223 ], [ -95.048354950375767, 30.394786337335962 ], [ -95.048367949945373, 30.394852337621018 ], [ -95.048392949683745, 30.394880337409283 ], [ -95.048500949505311, 30.394957337968258 ], [ -95.048519950136679, 30.395001337997961 ], [ -95.048531950160566, 30.395083337904619 ], [ -95.048512950229195, 30.395144337355756 ], [ -95.048449949871312, 30.39524833739625 ], [ -95.048202949841397, 30.395979337690186 ], [ -95.04821495033184, 30.396106337741024 ], [ -95.048278950289983, 30.396403337620338 ], [ -95.048284950207886, 30.396485337671269 ], [ -95.048259949472367, 30.396551338130791 ], [ -95.048144949949972, 30.396689337847121 ], [ -95.048106949409046, 30.396755338206876 ], [ -95.048062950429838, 30.396868337996693 ], [ -95.049071950426267, 30.396393338184243 ], [ -95.052100950578335, 30.394972337705795 ], [ -95.053110951251568, 30.394498337659787 ], [ -95.054591951847939, 30.393802337620645 ], [ -95.055253951537054, 30.393491337390529 ], [ -95.056359951609963, 30.392972337250065 ], [ -95.058887952638997, 30.39178533706006 ], [ -95.059036952305703, 30.391715336651316 ], [ -95.059909952626256, 30.391306336476983 ], [ -95.060200952743401, 30.391169336393951 ], [ -95.060518952416089, 30.391020336510643 ], [ -95.060803952500279, 30.390529336079034 ], [ -95.062183953584054, 30.38805833610563 ], [ -95.062653953481771, 30.387218335580716 ], [ -95.062743952722556, 30.38705833562711 ], [ -95.064168953981749, 30.38453733535486 ], [ -95.066132954266635, 30.381234334571921 ], [ -95.067325954211015, 30.37925633362082 ], [ -95.067426954127654, 30.379089333479278 ], [ -95.069074953849565, 30.376343333274807 ], [ -95.069211954002284, 30.376103332976044 ], [ -95.069621954090792, 30.375384332727339 ], [ -95.069759954782995, 30.375145333033462 ], [ -95.070229954270346, 30.374319332633078 ], [ -95.07125595507695, 30.372522332454434 ], [ -95.071659954293224, 30.371851332565825 ], [ -95.072150954562019, 30.371038332382341 ], [ -95.072187954794913, 30.370974332161378 ], [ -95.072236955324868, 30.370887332060246 ], [ -95.072664954920711, 30.370149331807209 ], [ -95.07324495554532, 30.369150331727912 ], [ -95.074202955159564, 30.367479331121505 ], [ -95.074713955079417, 30.366589330595477 ], [ -95.074996954987071, 30.366105330614396 ], [ -95.075847955841894, 30.364656331048334 ], [ -95.076131955270142, 30.364173330590575 ], [ -95.076251955915922, 30.363960330042424 ], [ -95.076514955481372, 30.363499330586706 ], [ -95.076622955366162, 30.363329330157168 ], [ -95.076753955807064, 30.363123329827644 ], [ -95.077840955799346, 30.361245329943241 ], [ -95.07809195584322, 30.36081232952975 ], [ -95.080181955815789, 30.357156328594428 ], [ -95.080884956182473, 30.355955329040867 ], [ -95.08109095677473, 30.35560732874594 ], [ -95.082199957141043, 30.353742327799303 ], [ -95.084273957359287, 30.350146327415267 ], [ -95.085031956998762, 30.348804326760995 ], [ -95.085235956730642, 30.348503327379039 ], [ -95.086199957705333, 30.346831326370534 ], [ -95.087239957361149, 30.345044326568416 ], [ -95.087412957967615, 30.344745326486041 ], [ -95.087930957554249, 30.343851325581259 ], [ -95.088104958127033, 30.343553325625269 ], [ -95.08821995752848, 30.343355325967199 ], [ -95.088566958094418, 30.342763325849436 ], [ -95.088683957671691, 30.342566326073648 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 307, "Tract": "48291701300", "Area_SqMi": 137.99790134421758, "total_2009": 325, "total_2010": 275, "total_2011": 289, "total_2012": 357, "total_2013": 347, "total_2014": 372, "total_2015": 316, "total_2016": 341, "total_2017": 321, "total_2018": 300, "total_2019": 259, "total_2020": 275, "age1": 47, "age2": 91, "age3": 45, "earn1": 36, "earn2": 51, "earn3": 96, "naics_s01": 0, "naics_s02": 29, "naics_s03": 4, "naics_s04": 8, "naics_s05": 0, "naics_s06": 0, "naics_s07": 37, "naics_s08": 27, "naics_s09": 3, "naics_s10": 3, "naics_s11": 16, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 22, "naics_s19": 14, "naics_s20": 9, "race1": 159, "race2": 9, "race3": 2, "race4": 7, "race5": 1, "race6": 5, "ethnicity1": 161, "ethnicity2": 22, "edu1": 29, "edu2": 40, "edu3": 42, "edu4": 25, "Shape_Length": 346708.1310624209, "Shape_Area": 3847145303.7081604, "total_2021": 226, "total_2022": 183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.739184858904608, 30.156638299689611 ], [ -94.739164859219116, 30.156222300157417 ], [ -94.739134858613824, 30.155546299675567 ], [ -94.739100858735839, 30.154977299526433 ], [ -94.739076859090261, 30.154562299562087 ], [ -94.73904985856673, 30.154031299261778 ], [ -94.738968858885201, 30.152440298963391 ], [ -94.73894285830346, 30.151910299339928 ], [ -94.738937859067775, 30.151820298723017 ], [ -94.738924858800672, 30.151550298740254 ], [ -94.738920858809848, 30.151460299070454 ], [ -94.738912858396958, 30.151305298471566 ], [ -94.738889858546756, 30.150840298542466 ], [ -94.738882859105843, 30.150686299120835 ], [ -94.738858858219658, 30.150250298537095 ], [ -94.738799858186979, 30.149131298149271 ], [ -94.738796858568421, 30.148944298518924 ], [ -94.738791858837274, 30.148509298544624 ], [ -94.738750858204227, 30.148032298532872 ], [ -94.738716858572531, 30.147634298074049 ], [ -94.738654858274799, 30.146600298194983 ], [ -94.738626857983718, 30.146123297971311 ], [ -94.738588858661089, 30.145505297578531 ], [ -94.738530858660411, 30.144539297521817 ], [ -94.7384878582601, 30.143650297106415 ], [ -94.738458858389208, 30.143032296793674 ], [ -94.738453857999374, 30.142960296790402 ], [ -94.738440858534673, 30.142746297412206 ], [ -94.738436858002601, 30.142675296788344 ], [ -94.73836885798373, 30.141436296628527 ], [ -94.738319858430287, 30.140515296833605 ], [ -94.738214858324881, 30.138573296217992 ], [ -94.73816885817287, 30.137721296373229 ], [ -94.738130858031965, 30.136998295968869 ], [ -94.738121857543547, 30.136833295776025 ], [ -94.738115857769287, 30.136732295737421 ], [ -94.738103857405491, 30.13648329570313 ], [ -94.738038857440543, 30.135270296009192 ], [ -94.737846857966687, 30.131633294580826 ], [ -94.737783857616506, 30.130421294442133 ], [ -94.737746857166769, 30.129766294458161 ], [ -94.737637857710482, 30.127801294502625 ], [ -94.737601857750093, 30.12714729407163 ], [ -94.737568857608281, 30.126477293937619 ], [ -94.737531857625527, 30.125718294024498 ], [ -94.737481857350375, 30.125006293565178 ], [ -94.737457856764848, 30.124471293767783 ], [ -94.737428857043966, 30.123802293475503 ], [ -94.737391857188499, 30.123134293276845 ], [ -94.737283857175072, 30.121133292424776 ], [ -94.737247856694793, 30.120466292630514 ], [ -94.73724385639899, 30.12040129259659 ], [ -94.737232857176821, 30.120207292857415 ], [ -94.737231857321305, 30.120189292475715 ], [ -94.737228856520076, 30.120143292117856 ], [ -94.737204856662288, 30.119764292463248 ], [ -94.73718985701467, 30.119268292738262 ], [ -94.737189857162576, 30.119255292635454 ], [ -94.737239857051932, 30.118591292144313 ], [ -94.737318856688361, 30.118078292102574 ], [ -94.737398856917522, 30.117709291736272 ], [ -94.737566857272157, 30.117137291553348 ], [ -94.737705856995518, 30.116768291608167 ], [ -94.737749856377548, 30.116664291553196 ], [ -94.737907856949604, 30.116305291914475 ], [ -94.738132856697703, 30.115863291536449 ], [ -94.738025857090037, 30.115834291644092 ], [ -94.737838856430983, 30.115812291320402 ], [ -94.737598856556957, 30.11579629198015 ], [ -94.737208856514144, 30.11579029197112 ], [ -94.736699856378195, 30.115784291247937 ], [ -94.734830855696956, 30.115782292086344 ], [ -94.734421855646957, 30.115776291551715 ], [ -94.733492855374465, 30.115765291932707 ], [ -94.733080856054769, 30.115760291668579 ], [ -94.732195855086559, 30.115756291548117 ], [ -94.729702854769585, 30.11574729156569 ], [ -94.728844854858536, 30.115732292152519 ], [ -94.728701854717514, 30.115726291843064 ], [ -94.728306854017262, 30.115713291568035 ], [ -94.727334854390165, 30.115680292155805 ], [ -94.727011854461409, 30.115678291754488 ], [ -94.726586853574716, 30.115542291615114 ], [ -94.726317854269467, 30.115457292035021 ], [ -94.726136854205421, 30.115384292268295 ], [ -94.725921853990556, 30.115276291537313 ], [ -94.725698853211497, 30.115145291908242 ], [ -94.725467853138099, 30.1149952915518 ], [ -94.72540185359145, 30.114941292008385 ], [ -94.725056853941879, 30.114661292120442 ], [ -94.724757852876635, 30.114426291464675 ], [ -94.724624853293179, 30.114322291344617 ], [ -94.724439853388787, 30.114195291689935 ], [ -94.724242853480405, 30.114084291974017 ], [ -94.723954853125932, 30.113941291368448 ], [ -94.723519852969076, 30.113787291284055 ], [ -94.723496852778482, 30.113781291443271 ], [ -94.723238852765789, 30.113718291704874 ], [ -94.722914853009485, 30.113653291368401 ], [ -94.722749853305686, 30.113634291471435 ], [ -94.722523852448404, 30.113620291880245 ], [ -94.718097852008384, 30.11351129230653 ], [ -94.71663785148148, 30.113482291533476 ], [ -94.716295850877927, 30.113436291806494 ], [ -94.716030851017621, 30.113383292023947 ], [ -94.71560085131712, 30.113239292005552 ], [ -94.715505851105775, 30.113208291974146 ], [ -94.715359851090383, 30.11315029187546 ], [ -94.714974851151027, 30.112954291979261 ], [ -94.714777850375796, 30.112839291454701 ], [ -94.714573850926413, 30.112689291646959 ], [ -94.714304850786945, 30.112450292082258 ], [ -94.714054850145729, 30.112177291327065 ], [ -94.713944850011359, 30.112025291908243 ], [ -94.71390285092906, 30.111958292020297 ], [ -94.713617850237839, 30.11149829129192 ], [ -94.71357185073974, 30.111323291782973 ], [ -94.713505850352064, 30.111072291826094 ], [ -94.713299850658572, 30.110128290976174 ], [ -94.713154849672549, 30.109428291183495 ], [ -94.712697849695616, 30.107214290327352 ], [ -94.712323849458429, 30.105307290203214 ], [ -94.712156849257923, 30.104336290057553 ], [ -94.71202284999903, 30.103718290226489 ], [ -94.71195084914315, 30.10338029008998 ], [ -94.711667849703957, 30.101811289653487 ], [ -94.711470849804684, 30.100724289852419 ], [ -94.711449849528918, 30.100604289057333 ], [ -94.711183849055885, 30.099040289012969 ], [ -94.711109848749018, 30.098605288825848 ], [ -94.710797848863038, 30.096985289095134 ], [ -94.710566848994489, 30.095782288310385 ], [ -94.710447848840957, 30.09518928838688 ], [ -94.710242848706784, 30.094162288451265 ], [ -94.710086848807478, 30.093414288407022 ], [ -94.70996484850005, 30.092823287761348 ], [ -94.709912848595977, 30.092590287756433 ], [ -94.70987584898424, 30.092418287885188 ], [ -94.709780848757617, 30.0921202876801 ], [ -94.709688848228737, 30.091912287859333 ], [ -94.709567848529133, 30.091708287766483 ], [ -94.709482848273936, 30.091580287207911 ], [ -94.709259848174725, 30.091268287200545 ], [ -94.709120848720133, 30.091107287354877 ], [ -94.708928848718529, 30.090934287136655 ], [ -94.708589847601203, 30.090672287870301 ], [ -94.708393847691852, 30.090545287358506 ], [ -94.708112847933776, 30.090391287233551 ], [ -94.707713847970084, 30.090236287482135 ], [ -94.705891847779966, 30.089653287751297 ], [ -94.705821847822889, 30.089628287223764 ], [ -94.705477847495175, 30.089506287725435 ], [ -94.705168847358578, 30.089347287270947 ], [ -94.704969847294137, 30.08922228721725 ], [ -94.704695847025363, 30.089029287205538 ], [ -94.704345846650796, 30.088754287547133 ], [ -94.704249847247638, 30.088653287568842 ], [ -94.704034846922809, 30.088382286892372 ], [ -94.703918847274466, 30.088212287273539 ], [ -94.703773846460763, 30.087964287171534 ], [ -94.703603846722515, 30.087582287222833 ], [ -94.703526846623774, 30.087277287129716 ], [ -94.703490846432331, 30.087086286861297 ], [ -94.703459846452247, 30.086565286936754 ], [ -94.70345984703043, 30.086252286814229 ], [ -94.703461846362472, 30.084695286381997 ], [ -94.703452846578003, 30.084146286405506 ], [ -94.703426846839406, 30.08373728669682 ], [ -94.703414846412429, 30.083514286318152 ], [ -94.703385846797659, 30.083318286187424 ], [ -94.703289845939921, 30.08280828573244 ], [ -94.703209846733031, 30.082508285787771 ], [ -94.703010845785769, 30.081911286202097 ], [ -94.702793846636908, 30.081381285728018 ], [ -94.702714846117019, 30.081216285756074 ], [ -94.702547846090624, 30.080871285858823 ], [ -94.702047846443406, 30.079837285070663 ], [ -94.701881845571606, 30.079493285519543 ], [ -94.701793845949169, 30.079304285490672 ], [ -94.701529845699113, 30.0787402856004 ], [ -94.701441845575332, 30.078552285472973 ], [ -94.701107845132199, 30.07783928528529 ], [ -94.70106684556464, 30.077724284704587 ], [ -94.700972845091428, 30.07746228541534 ], [ -94.700824845856161, 30.076826284730899 ], [ -94.700786845332189, 30.076326284916053 ], [ -94.700790845597382, 30.076107284386516 ], [ -94.700791845607739, 30.076055284696579 ], [ -94.700839845423644, 30.075033284344784 ], [ -94.700883845137184, 30.074126284081679 ], [ -94.700892845013499, 30.07379328442105 ], [ -94.70089484496657, 30.07369328412679 ], [ -94.700907845308492, 30.073216284022497 ], [ -94.70087484573213, 30.072396284452275 ], [ -94.700866845427697, 30.072201283901496 ], [ -94.700857845613882, 30.071964284358572 ], [ -94.700830845047022, 30.071351283521022 ], [ -94.700786845376285, 30.070345283667027 ], [ -94.700738845008658, 30.069514283516749 ], [ -94.700704844671066, 30.068903283408801 ], [ -94.700127844855714, 30.068997283591731 ], [ -94.698396844620177, 30.069279283887468 ], [ -94.697820844051719, 30.069374283052344 ], [ -94.697421844124605, 30.069441283632028 ], [ -94.69738084439787, 30.069447283362276 ], [ -94.696061843758457, 30.069656283581143 ], [ -94.695622843358521, 30.069726283284094 ], [ -94.695552843375296, 30.069737283847569 ], [ -94.695343843724331, 30.069769283710052 ], [ -94.6952748434082, 30.069781283898461 ], [ -94.695213843866469, 30.06979128343718 ], [ -94.695030843464721, 30.069823283232623 ], [ -94.694970843762704, 30.069835283589885 ], [ -94.69468484386536, 30.069878284122691 ], [ -94.693829843634248, 30.070009283925831 ], [ -94.693613843522982, 30.070043283924463 ], [ -94.693544843626611, 30.070054283903463 ], [ -94.693260843038829, 30.070100283962944 ], [ -94.692410842956463, 30.070239283604334 ], [ -94.692127842998644, 30.070286283830058 ], [ -94.692017842447697, 30.070304284098118 ], [ -94.691657842778326, 30.070363283624484 ], [ -94.690856843031398, 30.070497284019169 ], [ -94.69024984284637, 30.070589283821384 ], [ -94.689779841963841, 30.070662284236214 ], [ -94.689646842752495, 30.070682283970047 ], [ -94.689246842418939, 30.070744284133124 ], [ -94.689114842633373, 30.070765284056449 ], [ -94.688727842226655, 30.070825283899037 ], [ -94.687758841671737, 30.070978284592233 ], [ -94.687566841926326, 30.071011283773593 ], [ -94.687181841792849, 30.071080284271623 ], [ -94.685702841050386, 30.071309284396254 ], [ -94.68492184144813, 30.071430284675341 ], [ -94.683400840386525, 30.071682284772574 ], [ -94.681853840121647, 30.071920284846886 ], [ -94.681268840451807, 30.072015285057052 ], [ -94.680385840456609, 30.07216028460758 ], [ -94.679792839589354, 30.07225728452838 ], [ -94.678777839554371, 30.072419285054508 ], [ -94.67737983960707, 30.072644284726223 ], [ -94.67717283964403, 30.072677285141459 ], [ -94.675735839044293, 30.072924284779511 ], [ -94.674723838959238, 30.073099285394296 ], [ -94.674578838539205, 30.073123285124083 ], [ -94.674143838898928, 30.07319728485033 ], [ -94.673999838752081, 30.073222284815948 ], [ -94.673744838595582, 30.073259285188644 ], [ -94.672981838108981, 30.073371284887457 ], [ -94.672727837709303, 30.073409285100507 ], [ -94.672551837917638, 30.073436285625171 ], [ -94.672023837974351, 30.073519285421447 ], [ -94.67184883835084, 30.073548285253832 ], [ -94.67158883760591, 30.073588285618577 ], [ -94.670807837585414, 30.073710285505296 ], [ -94.670548837536103, 30.073751285677215 ], [ -94.670239837879933, 30.073799285149686 ], [ -94.670177837555087, 30.073809285467281 ], [ -94.669312836782296, 30.073946285471713 ], [ -94.669004837380015, 30.073995285737222 ], [ -94.668698836696038, 30.074046285228995 ], [ -94.667782836846314, 30.074199285436748 ], [ -94.667477836352859, 30.07425128579191 ], [ -94.667393836813673, 30.074264285128365 ], [ -94.667141836740782, 30.074306285353053 ], [ -94.667058836497034, 30.074321285612836 ], [ -94.666456836523736, 30.07442128567244 ], [ -94.666386836876839, 30.074431285437011 ], [ -94.664991836527562, 30.074640285736383 ], [ -94.664370836365876, 30.074741286007942 ], [ -94.663699836172981, 30.074852286107827 ], [ -94.662200835775593, 30.075088285667341 ], [ -94.662057835475125, 30.075111285803878 ], [ -94.660566834507534, 30.075356285931104 ], [ -94.659071835147117, 30.075590285813526 ], [ -94.657769834635474, 30.075832286629385 ], [ -94.657713834211847, 30.075849286434778 ], [ -94.657630834449819, 30.075876285872813 ], [ -94.657441834174307, 30.07595028599324 ], [ -94.656916833794554, 30.076222286304656 ], [ -94.656620834476115, 30.076350286692271 ], [ -94.656536833581285, 30.076363286515296 ], [ -94.656309834051541, 30.07637528598422 ], [ -94.65639483384679, 30.076141286717171 ], [ -94.656611833504599, 30.07556828649993 ], [ -94.657179833614592, 30.074075285464712 ], [ -94.65754383441697, 30.073156285422886 ], [ -94.65786183396439, 30.072356285169299 ], [ -94.658295833969845, 30.07128928513141 ], [ -94.659074834133605, 30.069376284521748 ], [ -94.659592834784121, 30.068085284196037 ], [ -94.65997983454929, 30.067123284426774 ], [ -94.660022834547462, 30.067017284007679 ], [ -94.660265834730751, 30.066417283773571 ], [ -94.660998834203298, 30.064619283429369 ], [ -94.661243835060546, 30.064020283825592 ], [ -94.661564834779242, 30.063231283397464 ], [ -94.661860834229785, 30.062506283599326 ], [ -94.662239834951478, 30.061554282900612 ], [ -94.662528834316774, 30.060864283191915 ], [ -94.662858835246496, 30.060079282983448 ], [ -94.663260835463632, 30.059026282602641 ], [ -94.663299835241688, 30.058929282501094 ], [ -94.663778834694, 30.057752282539351 ], [ -94.663939835354711, 30.057390282617884 ], [ -94.664349835337873, 30.056352281619787 ], [ -94.664689835124761, 30.055507281785925 ], [ -94.664939835022821, 30.054888281868308 ], [ -94.665159834799368, 30.05437028192474 ], [ -94.665313834989121, 30.054006281375283 ], [ -94.667030835312644, 30.049740280453427 ], [ -94.667382835355625, 30.048906280282235 ], [ -94.668636835712789, 30.045751280022714 ], [ -94.668682836268829, 30.045641279250052 ], [ -94.669353836239139, 30.044035279473835 ], [ -94.669672835705555, 30.043165279259544 ], [ -94.669799835485037, 30.042797279357494 ], [ -94.669825835485995, 30.042675278562601 ], [ -94.669859835977562, 30.042508278937603 ], [ -94.669904835616236, 30.042298279242061 ], [ -94.669931835475808, 30.042180279203606 ], [ -94.669944835727961, 30.04212327850761 ], [ -94.669946836361731, 30.042088278568837 ], [ -94.669962835554287, 30.04189327898596 ], [ -94.669962836110088, 30.041811278769821 ], [ -94.669962835947388, 30.041719278565115 ], [ -94.669739835711937, 30.041720278919591 ], [ -94.669071836089103, 30.041727278602981 ], [ -94.66896983536806, 30.041728278843568 ], [ -94.668849835423458, 30.041718279041138 ], [ -94.668562835147839, 30.041702278954276 ], [ -94.668338835173145, 30.041691278556296 ], [ -94.668184835350743, 30.041683278517507 ], [ -94.667704835376895, 30.041618279066899 ], [ -94.667420835451239, 30.041580278902714 ], [ -94.66718483517694, 30.041542278682325 ], [ -94.666667834705947, 30.041461278679073 ], [ -94.666479834826333, 30.041431279189723 ], [ -94.666244835371074, 30.041394279148346 ], [ -94.665577835204729, 30.041289278903143 ], [ -94.663578834302541, 30.040974279222603 ], [ -94.662912834044036, 30.040870279143288 ], [ -94.661640833279137, 30.040671278624512 ], [ -94.661164833385769, 30.040594278508067 ], [ -94.659622832687859, 30.040348278867871 ], [ -94.659249833490804, 30.040307278660144 ], [ -94.659054832510748, 30.04028527843305 ], [ -94.658628832832221, 30.040219278892124 ], [ -94.657170832431532, 30.039932278855336 ], [ -94.65594083236239, 30.039669279100856 ], [ -94.655363832146591, 30.039547278977448 ], [ -94.654200831390568, 30.039352278684817 ], [ -94.653334831546033, 30.039209278515756 ], [ -94.650738830455637, 30.038783278836302 ], [ -94.649873831077088, 30.038641278756003 ], [ -94.648191830133428, 30.038381279179568 ], [ -94.643399829063824, 30.037641278650149 ], [ -94.643145828458188, 30.037599279120577 ], [ -94.641466828162109, 30.037325278566232 ], [ -94.640424828371835, 30.037190278705516 ], [ -94.639000827538979, 30.036953279051563 ], [ -94.638674827860683, 30.036908278463887 ], [ -94.638098827523365, 30.036811278472385 ], [ -94.63643382728722, 30.036540278572517 ], [ -94.631438825713872, 30.035727278694196 ], [ -94.629774825014479, 30.035457279289993 ], [ -94.628925824831683, 30.035339278670833 ], [ -94.627541824891011, 30.035149278802251 ], [ -94.626384823893929, 30.034948279183773 ], [ -94.62620582410905, 30.034917278695655 ], [ -94.625545823723115, 30.034777278535866 ], [ -94.625482824144242, 30.034758279282368 ], [ -94.625295823646738, 30.034704278646775 ], [ -94.625233823928383, 30.034686278711778 ], [ -94.624237824125842, 30.034465279033125 ], [ -94.621250822592785, 30.033803278404491 ], [ -94.620255822931199, 30.033583278759121 ], [ -94.619639822836632, 30.033434278792697 ], [ -94.617791822164335, 30.032991278938489 ], [ -94.617175822016549, 30.032843278531736 ], [ -94.616672821575548, 30.032724278982961 ], [ -94.615163821032567, 30.032370278698398 ], [ -94.614661821465305, 30.032252279127466 ], [ -94.613177821262042, 30.031903279088617 ], [ -94.60872681973936, 30.030859278737065 ], [ -94.608073819573747, 30.030706278743061 ], [ -94.607243819539207, 30.030511278959185 ], [ -94.607212819521493, 30.030504278912797 ], [ -94.6068578188911, 30.030421278766859 ], [ -94.605699819020799, 30.030152278968924 ], [ -94.605314818360668, 30.030063278356405 ], [ -94.604877818893485, 30.029961278815165 ], [ -94.603569817700276, 30.029658278351089 ], [ -94.603133817841567, 30.029557278932483 ], [ -94.602815817643332, 30.029481278383898 ], [ -94.601861817876966, 30.029254278757957 ], [ -94.601544817865374, 30.029179278377939 ], [ -94.601505817258399, 30.029169278675244 ], [ -94.60138881791336, 30.029140278969439 ], [ -94.601350817852165, 30.029131278871034 ], [ -94.601239817185629, 30.029104278319789 ], [ -94.600907817635544, 30.029026278212648 ], [ -94.600797817631857, 30.029000278751436 ], [ -94.600590817159116, 30.028952278517192 ], [ -94.600430816840202, 30.02891527845809 ], [ -94.599710817397238, 30.028749278702431 ], [ -94.599330816549383, 30.028662278662839 ], [ -94.598964817457642, 30.02857827849456 ], [ -94.598843817174014, 30.028564278064806 ], [ -94.598480816735062, 30.028523278228832 ], [ -94.598360816985391, 30.028510278838301 ], [ -94.597879816554709, 30.028428278251312 ], [ -94.596439816558004, 30.028185278594179 ], [ -94.595959816204441, 30.028104278824642 ], [ -94.595723815980961, 30.028075278310219 ], [ -94.595098815536701, 30.02799927894835 ], [ -94.595016816391848, 30.027993278765901 ], [ -94.594780816181398, 30.027978278918503 ], [ -94.594622816075059, 30.0279672782986 ], [ -94.594151815781174, 30.027936278604574 ], [ -94.594070816100029, 30.027931278416141 ], [ -94.593994815410412, 30.027927278122057 ], [ -94.593652815411104, 30.027909278171634 ], [ -94.592629814812852, 30.027857278181528 ], [ -94.592288815508738, 30.027840278982517 ], [ -94.592087814788883, 30.027806278655898 ], [ -94.59183581456081, 30.027764278656591 ], [ -94.591484814835923, 30.027706278316057 ], [ -94.591283814790643, 30.027673278892973 ], [ -94.591156814809494, 30.02764327835644 ], [ -94.590775814376329, 30.027554278999972 ], [ -94.590648814906658, 30.02752527828677 ], [ -94.59056981447462, 30.027509278732985 ], [ -94.590333814583602, 30.027461278352629 ], [ -94.590255814640727, 30.027446278346268 ], [ -94.589730814993302, 30.027347278485916 ], [ -94.588156814126137, 30.027053278384958 ], [ -94.587856814235252, 30.026997278245545 ], [ -94.587632814372412, 30.02695527894306 ], [ -94.587566814085818, 30.026941278160521 ], [ -94.587369813534778, 30.02690027897863 ], [ -94.587304813636408, 30.026887278723279 ], [ -94.586536813660956, 30.026737278249396 ], [ -94.584232813087951, 30.026290278867243 ], [ -94.583465812349615, 30.026141278314391 ], [ -94.583200812251931, 30.026087278633383 ], [ -94.582594812307164, 30.025965278723024 ], [ -94.582405812902152, 30.025942278831415 ], [ -94.582138812663302, 30.025911278653474 ], [ -94.582059812369238, 30.025901278522149 ], [ -94.581824812250872, 30.025874278648686 ], [ -94.581746812307244, 30.025865278129501 ], [ -94.581532812486998, 30.025840278392181 ], [ -94.581444812424166, 30.025833278903065 ], [ -94.580969811932746, 30.025801278508872 ], [ -94.580538812461512, 30.02576727892707 ], [ -94.580236812213641, 30.025744278763327 ], [ -94.580038812161007, 30.025728278513164 ], [ -94.578999811469174, 30.025728278762049 ], [ -94.578924811148639, 30.025728278721871 ], [ -94.576695811409863, 30.025943279171873 ], [ -94.575307810691541, 30.026083278624576 ], [ -94.574077810533581, 30.026209278708304 ], [ -94.57320881040441, 30.026280279261808 ], [ -94.57256580989781, 30.026333279247584 ], [ -94.57208781009507, 30.026348279356185 ], [ -94.571543810039913, 30.026351278667804 ], [ -94.571135809855562, 30.026330278878838 ], [ -94.570597809979489, 30.026278279377351 ], [ -94.57050380904856, 30.026269279175715 ], [ -94.569736809149362, 30.026148278589677 ], [ -94.566540808402266, 30.025636279072977 ], [ -94.562720807797476, 30.025024278888356 ], [ -94.557655806258495, 30.024199278772318 ], [ -94.557609805921899, 30.024192279316072 ], [ -94.556956806024971, 30.024085279262774 ], [ -94.553762805094124, 30.023566278961169 ], [ -94.551886804800446, 30.023260279395743 ], [ -94.54874680362343, 30.022749279323079 ], [ -94.547783802953887, 30.022553278695032 ], [ -94.546640803489737, 30.022303278758933 ], [ -94.54628080312385, 30.022243278657808 ], [ -94.544944802201115, 30.022021279130978 ], [ -94.544406802486847, 30.021934278962071 ], [ -94.543648802129439, 30.02181127881785 ], [ -94.542483802061852, 30.021622278842329 ], [ -94.541375801685092, 30.02145027904789 ], [ -94.540704801918636, 30.021347278792536 ], [ -94.540617801072869, 30.021333278781935 ], [ -94.539389800787404, 30.021148279370909 ], [ -94.539031801192124, 30.021087278725847 ], [ -94.538482800543846, 30.021023279226966 ], [ -94.53841580144811, 30.021016278945613 ], [ -94.537468801162632, 30.020901279023239 ], [ -94.536169799926881, 30.020793279069693 ], [ -94.535537799897597, 30.020754278900775 ], [ -94.535082800443448, 30.02072227869089 ], [ -94.534089799896904, 30.02070427875395 ], [ -94.533658800082875, 30.02067927935607 ], [ -94.532627799530758, 30.020686278819355 ], [ -94.53202479919409, 30.020705279014123 ], [ -94.531355799587104, 30.020727279347803 ], [ -94.531032799403434, 30.020745279393722 ], [ -94.530413798462561, 30.020781279050333 ], [ -94.529870798877653, 30.020812279186025 ], [ -94.52864079800041, 30.020939279010395 ], [ -94.528226797868612, 30.020983279573862 ], [ -94.527528798023098, 30.021086279369168 ], [ -94.524964797937372, 30.02143027998925 ], [ -94.523739796845064, 30.021595279646537 ], [ -94.523111797016284, 30.021733279500367 ], [ -94.522116796663539, 30.021941279643965 ], [ -94.521985796929172, 30.021969279580077 ], [ -94.520732796020511, 30.022173280195627 ], [ -94.517191795920496, 30.022667279828333 ], [ -94.515548794948131, 30.022897280316624 ], [ -94.51389079468774, 30.023106280466827 ], [ -94.513543794451067, 30.023151280269225 ], [ -94.512095794055796, 30.023251280467363 ], [ -94.510956793739396, 30.023287280517426 ], [ -94.510281794147474, 30.023344280037669 ], [ -94.509682794010956, 30.023412280628591 ], [ -94.509113793599639, 30.023490280839429 ], [ -94.508898793069193, 30.02352228068921 ], [ -94.508492793628648, 30.023583281019196 ], [ -94.507352793507252, 30.02379728073516 ], [ -94.50725379302186, 30.023810280932516 ], [ -94.50721179321512, 30.023815280839784 ], [ -94.507137793408035, 30.023833280929335 ], [ -94.506436792811144, 30.023983280618712 ], [ -94.505941793150598, 30.024066280817227 ], [ -94.5056567921024, 30.024115281126456 ], [ -94.503993791744577, 30.024358280525458 ], [ -94.502511791479137, 30.02455528099096 ], [ -94.502096791774733, 30.024607281171249 ], [ -94.500812791841568, 30.024771281372427 ], [ -94.500692791422836, 30.024790281412965 ], [ -94.500333791177155, 30.02485028110743 ], [ -94.500235791244634, 30.024867281228893 ], [ -94.500214791091565, 30.024870281158218 ], [ -94.499622790984915, 30.024952281469748 ], [ -94.498036790677901, 30.025172281070255 ], [ -94.49761579014914, 30.02523128091903 ], [ -94.491504789041457, 30.026082281611291 ], [ -94.489327788348604, 30.026386281839617 ], [ -94.488320788407535, 30.026528282163621 ], [ -94.485299787415073, 30.026954281684706 ], [ -94.48429378669006, 30.027097282487585 ], [ -94.48328178667785, 30.027234282496636 ], [ -94.480246786085544, 30.027645282675973 ], [ -94.480195785958571, 30.027653282083214 ], [ -94.479235785628347, 30.02778328200948 ], [ -94.478157786068877, 30.027925282420345 ], [ -94.477879785350694, 30.027966282383112 ], [ -94.474532785135551, 30.028467282955308 ], [ -94.473826784393182, 30.028610282760319 ], [ -94.472486783885131, 30.028883283152098 ], [ -94.470597783739393, 30.029142283317874 ], [ -94.470504783825433, 30.02915528302022 ], [ -94.464931782078054, 30.02992028316006 ], [ -94.463043781473985, 30.030180283763347 ], [ -94.463016781700063, 30.030184283314981 ], [ -94.462935782319207, 30.030197283177117 ], [ -94.46290978170191, 30.030202283386224 ], [ -94.46281778190162, 30.0302172833944 ], [ -94.46193178165889, 30.030346283854087 ], [ -94.460868780808866, 30.030502283934194 ], [ -94.46000578061971, 30.03061728405649 ], [ -94.459384781061004, 30.030739283892544 ], [ -94.458987780826376, 30.030697283791078 ], [ -94.45884978087706, 30.030706283332659 ], [ -94.458000780391487, 30.030742283735137 ], [ -94.457357779913096, 30.030830283590195 ], [ -94.455430779801446, 30.031093283516689 ], [ -94.454788779670551, 30.031182283734275 ], [ -94.453671779301629, 30.03133428424702 ], [ -94.452624779413284, 30.031477283827805 ], [ -94.450322778815178, 30.031792284708875 ], [ -94.44920677799503, 30.031946283973006 ], [ -94.448443778235671, 30.03208228471313 ], [ -94.447712778293081, 30.032150284103395 ], [ -94.44652377813172, 30.032196284843259 ], [ -94.445164777364781, 30.032324284237642 ], [ -94.444406776719831, 30.032395284874841 ], [ -94.44440677705802, 30.032447284709956 ], [ -94.444409777249831, 30.03266028452871 ], [ -94.444409776713329, 30.032687284763735 ], [ -94.444410776789866, 30.032766284439617 ], [ -94.444413777500074, 30.033006284500495 ], [ -94.44441577763078, 30.033086285017955 ], [ -94.444472777606208, 30.040119286301344 ], [ -94.444645778429262, 30.061218290317971 ], [ -94.444703779172286, 30.068252292119688 ], [ -94.444704778366628, 30.068406292015379 ], [ -94.444709779256897, 30.06886829184046 ], [ -94.444711779055808, 30.069022292211844 ], [ -94.444712779042135, 30.069129291919669 ], [ -94.444714778525281, 30.069291292197235 ], [ -94.444715778602458, 30.069452292566453 ], [ -94.444717779046968, 30.069560292190545 ], [ -94.444732778992162, 30.071098292939965 ], [ -94.444780779433017, 30.075711293608915 ], [ -94.444797779203967, 30.077250293825113 ], [ -94.444797779408162, 30.077261293818569 ], [ -94.444791779497379, 30.077291293483327 ], [ -94.444797779711593, 30.077308293852862 ], [ -94.444869779303502, 30.084278295152657 ], [ -94.444978779738364, 30.096807297480588 ], [ -94.444983780249004, 30.097353298270974 ], [ -94.444998780110481, 30.098991298080151 ], [ -94.445004780546768, 30.099538298296022 ], [ -94.445005780607175, 30.099623298763795 ], [ -94.445021780179005, 30.101500298601511 ], [ -94.445072780170634, 30.107388300152273 ], [ -94.445089780966455, 30.109351300178151 ], [ -94.445091780500874, 30.109675300127385 ], [ -94.445099781178712, 30.110647300747154 ], [ -94.445102780735922, 30.110971301006423 ], [ -94.445102780872801, 30.111032301208056 ], [ -94.445104781118232, 30.111216301255762 ], [ -94.445105781123928, 30.111278300429717 ], [ -94.44510878122324, 30.111599300587923 ], [ -94.445110780595726, 30.111875300535974 ], [ -94.445112780479917, 30.112024301269546 ], [ -94.444916781308535, 30.113020301117036 ], [ -94.445230781166515, 30.113015301212464 ], [ -94.446172781088151, 30.113002301356115 ], [ -94.446486781744426, 30.112997301259146 ], [ -94.446875781892061, 30.112991301260497 ], [ -94.448039781628225, 30.112974300679539 ], [ -94.448427781368821, 30.112968301150019 ], [ -94.449540781808693, 30.112951300823241 ], [ -94.452878783382744, 30.11290230085271 ], [ -94.45399078373373, 30.112886300662669 ], [ -94.455066783215827, 30.112870301253135 ], [ -94.458295784631886, 30.112824300394688 ], [ -94.459371784359618, 30.112808300909709 ], [ -94.459550784439216, 30.112805300691427 ], [ -94.460084784474901, 30.11279830084063 ], [ -94.460262784492116, 30.112795300214419 ], [ -94.460311784478606, 30.112794300438466 ], [ -94.46045878444211, 30.112792300409211 ], [ -94.460507784425275, 30.11279130056181 ], [ -94.460880785314771, 30.1127853004363 ], [ -94.46199878534955, 30.112769300360821 ], [ -94.462370785885895, 30.112763300263278 ], [ -94.462445785760167, 30.112762300561645 ], [ -94.462667785424756, 30.112759300177839 ], [ -94.462741785269799, 30.112758300869938 ], [ -94.46321778545105, 30.112751300311142 ], [ -94.464642786126674, 30.112730300199971 ], [ -94.465117785701111, 30.112723300702886 ], [ -94.465308786130109, 30.112720300356433 ], [ -94.465881786277691, 30.112713300072318 ], [ -94.466071786602228, 30.112710300126597 ], [ -94.466969786075722, 30.112697300602186 ], [ -94.469661787747469, 30.112657300537837 ], [ -94.470558787340494, 30.112644300271135 ], [ -94.473524788122475, 30.112601299765856 ], [ -94.482419790931061, 30.112471300017166 ], [ -94.485384791812209, 30.112428299965039 ], [ -94.485428791033684, 30.11242730008664 ], [ -94.485558791279701, 30.112426299802873 ], [ -94.485601791555624, 30.112425299730148 ], [ -94.487616792327358, 30.112361299671907 ], [ -94.493661793934777, 30.112168299135661 ], [ -94.49567679369629, 30.112104299618913 ], [ -94.496714793831828, 30.112068299183449 ], [ -94.499826795335636, 30.111961298912195 ], [ -94.500277795466246, 30.111946298794372 ], [ -94.500863794863164, 30.111943298867011 ], [ -94.502310795896591, 30.11193629942769 ], [ -94.506650796759274, 30.111917298532092 ], [ -94.508096796849671, 30.111911298513302 ], [ -94.509542797673589, 30.111904298938693 ], [ -94.513878799080189, 30.111885298794515 ], [ -94.515323799037503, 30.111879298790985 ], [ -94.516364799126109, 30.111873298233295 ], [ -94.519487800295039, 30.111860298474685 ], [ -94.520536799987823, 30.111857298368022 ], [ -94.523066801521125, 30.111863298189352 ], [ -94.530677803577049, 30.111885297733728 ], [ -94.533219804165043, 30.11189329834367 ], [ -94.53454480376891, 30.111898298134211 ], [ -94.538534805164275, 30.111911297539603 ], [ -94.539864805873478, 30.111916298012869 ], [ -94.541057806111084, 30.111920298015384 ], [ -94.54463380620939, 30.111930297932005 ], [ -94.545825807078828, 30.111934297451437 ], [ -94.546036807350049, 30.111935297398894 ], [ -94.546669807072661, 30.111938297024025 ], [ -94.546879807306382, 30.111939297733898 ], [ -94.547976807939463, 30.111943297760472 ], [ -94.551267808335652, 30.111953297706123 ], [ -94.552290808537606, 30.111957297562103 ], [ -94.552365808725469, 30.111957297717417 ], [ -94.554073809477828, 30.111963297010984 ], [ -94.559197810451295, 30.111979296844282 ], [ -94.560905811343105, 30.11198429666338 ], [ -94.562961811272146, 30.111991296531887 ], [ -94.569128812852355, 30.112011296449339 ], [ -94.571183813635173, 30.112018296575936 ], [ -94.571231813563244, 30.112018296900732 ], [ -94.571372813561808, 30.112019296737067 ], [ -94.571419813553916, 30.112019296558689 ], [ -94.571755813187366, 30.112021296625926 ], [ -94.572760814081477, 30.112025296347561 ], [ -94.573095813667464, 30.112027296247895 ], [ -94.575748814333863, 30.112036296020648 ], [ -94.583707817011003, 30.112064296664045 ], [ -94.58635981780678, 30.112073296201338 ], [ -94.587396817610582, 30.112077296260306 ], [ -94.590506818399035, 30.112088295785753 ], [ -94.591542819246911, 30.112092296110742 ], [ -94.593499819302224, 30.112098295880976 ], [ -94.596344819835181, 30.112106295353154 ], [ -94.597396820007873, 30.114944296185502 ], [ -94.598076820751828, 30.11677829711115 ], [ -94.598280820637029, 30.117332297197919 ], [ -94.598896820721777, 30.118996296809268 ], [ -94.599086821075474, 30.119507297642055 ], [ -94.599101820826718, 30.119549297565293 ], [ -94.599450821339559, 30.120514297693717 ], [ -94.60049982120556, 30.12341029792173 ], [ -94.600849821417327, 30.124376297974887 ], [ -94.600999822075053, 30.124776297821583 ], [ -94.601040822029489, 30.125224298253624 ], [ -94.601219822142312, 30.125704298212032 ], [ -94.602678822971669, 30.129607299202732 ], [ -94.603165822759479, 30.130909299353643 ], [ -94.603596823300464, 30.132080299632559 ], [ -94.604890822957017, 30.135596300497514 ], [ -94.605321823836974, 30.136768300167827 ], [ -94.605382823869107, 30.136959300341214 ], [ -94.605566823176233, 30.137534300313142 ], [ -94.60562782381281, 30.137727300809104 ], [ -94.605673823552806, 30.137872301004961 ], [ -94.605813823716758, 30.138309300496346 ], [ -94.605859823311434, 30.138455300823637 ], [ -94.605867823359915, 30.138484300451378 ], [ -94.605899823311987, 30.138569301108095 ], [ -94.60590282420813, 30.138603301147338 ], [ -94.605909823626106, 30.138628300477265 ], [ -94.605931823422594, 30.138704300741608 ], [ -94.605938824216693, 30.138730301266737 ], [ -94.605961824228373, 30.138709300877991 ], [ -94.60598682430745, 30.138806300595526 ], [ -94.606066824039317, 30.139095300931874 ], [ -94.606082824053104, 30.13915530063775 ], [ -94.60609282411302, 30.139191301432326 ], [ -94.60612582435374, 30.139275301025734 ], [ -94.60621282359466, 30.139499301468952 ], [ -94.606222823772043, 30.139524301304931 ], [ -94.606254823614378, 30.139607301318016 ], [ -94.606284824288679, 30.139685301562341 ], [ -94.606376824344494, 30.139920300949743 ], [ -94.610357825004172, 30.151119302844304 ], [ -94.61125882614644, 30.153618303575637 ], [ -94.613966827356307, 30.161115304968021 ], [ -94.614844827680713, 30.163544305443068 ], [ -94.614868826709923, 30.163613306115327 ], [ -94.614903827117516, 30.163710305528607 ], [ -94.615007827631089, 30.164002305600508 ], [ -94.615042827812857, 30.164098305611663 ], [ -94.616590827570562, 30.168380306204671 ], [ -94.618419828168456, 30.173441307623495 ], [ -94.621231829222651, 30.181228309114235 ], [ -94.62277783075281, 30.185510309847885 ], [ -94.623201830564284, 30.186685310201636 ], [ -94.624474830799727, 30.190208311060658 ], [ -94.624898831547512, 30.191382311351703 ], [ -94.624901831137635, 30.191407310640095 ], [ -94.625032831243573, 30.191611311064189 ], [ -94.625203830934794, 30.191891311595317 ], [ -94.625366831003731, 30.192329310823297 ], [ -94.625458831737276, 30.192577311029467 ], [ -94.625477830856312, 30.192628311703508 ], [ -94.625534831153061, 30.192784311753289 ], [ -94.625553830944952, 30.192836311751051 ], [ -94.625559830917652, 30.192852311752141 ], [ -94.625577831250354, 30.192897311099593 ], [ -94.626241831358527, 30.194620312087086 ], [ -94.628305832194755, 30.199976312727763 ], [ -94.628994832363205, 30.201763312861644 ], [ -94.629061833105766, 30.201982313168987 ], [ -94.62906983221005, 30.202011312967105 ], [ -94.629263832645663, 30.202749313098913 ], [ -94.62926983279452, 30.202772313452282 ], [ -94.629343833123329, 30.20302531347318 ], [ -94.629529833117587, 30.203539313199993 ], [ -94.630085833258306, 30.205076313306943 ], [ -94.630270832957649, 30.20558931383761 ], [ -94.630587833514056, 30.206465313835249 ], [ -94.6315378331132, 30.2090943146708 ], [ -94.631854833544764, 30.209970314200646 ], [ -94.631878833703993, 30.21003531438927 ], [ -94.63191383340785, 30.210133314791438 ], [ -94.6319498341215, 30.210231314264771 ], [ -94.631972833499077, 30.210296314443774 ], [ -94.632087833704034, 30.210614314760047 ], [ -94.632432834487432, 30.21156831473041 ], [ -94.632547833793936, 30.211885315052168 ], [ -94.633616833998801, 30.214843315601829 ], [ -94.634528834839315, 30.217401316250331 ], [ -94.638861836680178, 30.229555318264161 ], [ -94.640432837305696, 30.233961319002226 ], [ -94.642257837376292, 30.239079320118393 ], [ -94.642400837569284, 30.239481320397747 ], [ -94.642437837918564, 30.239586320032455 ], [ -94.642493838057916, 30.239742319980977 ], [ -94.64254983805597, 30.23989932008266 ], [ -94.64258683794769, 30.240003320338694 ], [ -94.642591838276672, 30.240018320837716 ], [ -94.642607837745587, 30.240062320149256 ], [ -94.642612838393347, 30.240076320460396 ], [ -94.643546838063216, 30.242698321360677 ], [ -94.646202839160495, 30.250148322410297 ], [ -94.64635183952069, 30.25056232231541 ], [ -94.647276840082924, 30.253135322936529 ], [ -94.647512839647348, 30.25314832273358 ], [ -94.647946839722323, 30.253186322858681 ], [ -94.64807783999116, 30.253195323116145 ], [ -94.649152840224474, 30.253275323339704 ], [ -94.650483840481698, 30.253386322579303 ], [ -94.65128584115358, 30.253453322754847 ], [ -94.651576841192067, 30.253468322775653 ], [ -94.652062841108702, 30.25349432288829 ], [ -94.652451840969221, 30.253494323171815 ], [ -94.652743841437385, 30.253494323064199 ], [ -94.653295841595877, 30.253473322990125 ], [ -94.653498841583456, 30.253458323152113 ], [ -94.653760841261786, 30.253439322867017 ], [ -94.654713841946247, 30.253314322758595 ], [ -94.655745842027002, 30.253149322515952 ], [ -94.656492842274105, 30.253030322989662 ], [ -94.657154842630149, 30.252921322173762 ], [ -94.659141842683852, 30.25259532201045 ], [ -94.659804843111004, 30.252487322707214 ], [ -94.66115884349199, 30.252265321888181 ], [ -94.661663843425146, 30.252187322555194 ], [ -94.662526844009591, 30.252054321948282 ], [ -94.663883844239308, 30.251837322128747 ], [ -94.665276844662387, 30.251616322403763 ], [ -94.667244845183475, 30.251312321464379 ], [ -94.668025845247953, 30.251192321753727 ], [ -94.669102845522431, 30.251004321659096 ], [ -94.669704845863293, 30.250900321401321 ], [ -94.673241846741718, 30.250336321214306 ], [ -94.675465846428537, 30.249994320857134 ], [ -94.676018847376611, 30.24989532127038 ], [ -94.677839847638012, 30.249608321547289 ], [ -94.680061848290862, 30.249245320866351 ], [ -94.681231848766728, 30.24905532071644 ], [ -94.683031848785888, 30.248778320983625 ], [ -94.684786849643032, 30.248481320395644 ], [ -94.68837084979144, 30.247891319984305 ], [ -94.690246850382053, 30.247598320579296 ], [ -94.691482851108418, 30.247426319904051 ], [ -94.692065850893229, 30.247367320561171 ], [ -94.693067851519601, 30.247320320345519 ], [ -94.694689851803361, 30.247276320129671 ], [ -94.694786851613685, 30.247273320460216 ], [ -94.694890852077819, 30.247271319969073 ], [ -94.695080851682192, 30.247269320368016 ], [ -94.695179852344381, 30.247268319749573 ], [ -94.695246852317965, 30.247266320325881 ], [ -94.695449851513317, 30.247264319681523 ], [ -94.695517852125647, 30.247264319971023 ], [ -94.695598851888761, 30.247262320204747 ], [ -94.695840852005688, 30.247256320267667 ], [ -94.695922852198308, 30.247255319967909 ], [ -94.69649985239721, 30.247241319914714 ], [ -94.696984852695337, 30.247230319627079 ], [ -94.698233852232619, 30.247217320001447 ], [ -94.698811852632261, 30.247211319955955 ], [ -94.700210852733036, 30.247186319991414 ], [ -94.700499853141991, 30.24718332011026 ], [ -94.701880853233533, 30.247173320121249 ], [ -94.705563854694319, 30.247114320112061 ], [ -94.707252855285972, 30.247088319450587 ], [ -94.707643854779704, 30.247083319714864 ], [ -94.708384854972891, 30.247074319122323 ], [ -94.708816855217052, 30.247069319356736 ], [ -94.709208855979426, 30.247065319183864 ], [ -94.711492856545249, 30.247038319444652 ], [ -94.711777856450155, 30.247035319622587 ], [ -94.712434856411321, 30.247014319313799 ], [ -94.712906856730086, 30.247018319789031 ], [ -94.712980856350512, 30.247019319205368 ], [ -94.713565856457109, 30.247047319423519 ], [ -94.71434085676421, 30.247133319594578 ], [ -94.714631856663999, 30.247176319401987 ], [ -94.716493857668766, 30.247450319628285 ], [ -94.716929857637822, 30.24750331899293 ], [ -94.717549858067471, 30.24755631902503 ], [ -94.717965858079054, 30.247569319318199 ], [ -94.718309858152509, 30.247561318895887 ], [ -94.719641858194819, 30.247532319267769 ], [ -94.720593858824174, 30.247498319165405 ], [ -94.720834858706525, 30.247489318786279 ], [ -94.721376858895937, 30.247471319643761 ], [ -94.721559858618519, 30.247467318994232 ], [ -94.721801858251794, 30.247462319544354 ], [ -94.722243858919612, 30.247451319014697 ], [ -94.723572859372354, 30.247422318893257 ], [ -94.723963858981051, 30.247414319113247 ], [ -94.724015859541367, 30.247413319366714 ], [ -94.724006859104009, 30.247309319355626 ], [ -94.723962859322825, 30.24719331881855 ], [ -94.72382985882362, 30.246968318611923 ], [ -94.723537859421413, 30.246380318996071 ], [ -94.723455858823797, 30.246182318738708 ], [ -94.723150859067033, 30.24560431833536 ], [ -94.723017858687427, 30.24541231902727 ], [ -94.722973859333692, 30.24535731841971 ], [ -94.722916859169018, 30.245318319137109 ], [ -94.722865858457354, 30.245269318253243 ], [ -94.722713858536579, 30.245055318804521 ], [ -94.722612859204958, 30.244945318653137 ], [ -94.722574858396499, 30.244884318779789 ], [ -94.7225678584918, 30.244835318272308 ], [ -94.722574859312488, 30.244664318500654 ], [ -94.722555858654772, 30.244538318135682 ], [ -94.722523858852142, 30.244455318289504 ], [ -94.72239085911086, 30.244235318860877 ], [ -94.722352858257864, 30.244186318223505 ], [ -94.722212858774228, 30.244076318894301 ], [ -94.72183985899207, 30.243911318603651 ], [ -94.721699858646147, 30.243795318551935 ], [ -94.72162385818595, 30.243702318618467 ], [ -94.721547858169444, 30.243548318179354 ], [ -94.721515858189633, 30.24338331847531 ], [ -94.721401858007269, 30.242998318435557 ], [ -94.721382858015346, 30.242905318000624 ], [ -94.721344858721622, 30.242822318481956 ], [ -94.721281858531256, 30.242723317866623 ], [ -94.721243857935164, 30.242679318615203 ], [ -94.720831858631868, 30.242344318597219 ], [ -94.720527857881919, 30.242152318134352 ], [ -94.720501857789941, 30.242113318203735 ], [ -94.720356857844905, 30.241833318151023 ], [ -94.720280858379397, 30.241646318341427 ], [ -94.720305857655191, 30.241431317822013 ], [ -94.720279858474257, 30.241294318169558 ], [ -94.720248857894461, 30.240997317961089 ], [ -94.720241858428338, 30.24055731763691 ], [ -94.720140858217164, 30.240194317608974 ], [ -94.720070857695077, 30.24002931791405 ], [ -94.719867857814023, 30.239804317805703 ], [ -94.719753857570353, 30.239705317918258 ], [ -94.719360857604343, 30.23944631758113 ], [ -94.719279857651969, 30.239406317840512 ], [ -94.719158857860052, 30.239347317509147 ], [ -94.719006858106496, 30.239287317806692 ], [ -94.71892985777491, 30.239270317212569 ], [ -94.718841857105716, 30.239232317895581 ], [ -94.718784857626019, 30.239188317563336 ], [ -94.718746857358298, 30.239144317474718 ], [ -94.718695857540681, 30.239039317681382 ], [ -94.718575857873105, 30.238847317410563 ], [ -94.718518857891439, 30.23872631711459 ], [ -94.718353857492801, 30.23821531772187 ], [ -94.718220857359825, 30.237901317441167 ], [ -94.718086857121435, 30.237533317273268 ], [ -94.718061856845011, 30.237434317313923 ], [ -94.718056857207927, 30.237417316919142 ], [ -94.717503857509286, 30.237087317472973 ], [ -94.717530857569926, 30.236836317386587 ], [ -94.717503857270728, 30.236767317566315 ], [ -94.717310857254375, 30.236263316816061 ], [ -94.717193857124499, 30.236034317182369 ], [ -94.717231856975857, 30.235900317342384 ], [ -94.717351857575522, 30.235850316633286 ], [ -94.717275856586994, 30.235663316990539 ], [ -94.71709185697209, 30.235289316894495 ], [ -94.717076857369307, 30.235271316782487 ], [ -94.717009856582848, 30.235185316758706 ], [ -94.716850857146284, 30.234805317030968 ], [ -94.716698857209067, 30.234569316800251 ], [ -94.716648856688224, 30.23439331623355 ], [ -94.716559856664958, 30.234173316347881 ], [ -94.716324857199481, 30.233805316189642 ], [ -94.716198856631834, 30.233557316215979 ], [ -94.716134856495714, 30.233376316716782 ], [ -94.716065857040022, 30.23309031645995 ], [ -94.716027856946141, 30.232996316479124 ], [ -94.715988856349114, 30.232754316248627 ], [ -94.715976856355667, 30.232584315940294 ], [ -94.715887856150033, 30.232309316433085 ], [ -94.715868856824571, 30.232111315853249 ], [ -94.715868856636845, 30.231941316417444 ], [ -94.715887856495101, 30.231886316433879 ], [ -94.71597585627633, 30.231743315719221 ], [ -94.716020856521766, 30.231644316571309 ], [ -94.716089856752674, 30.231396316305329 ], [ -94.716140856586577, 30.231281315625527 ], [ -94.716165856558305, 30.231105316252922 ], [ -94.716216856662811, 30.231011315663039 ], [ -94.716260856591177, 30.230967316019147 ], [ -94.716285856780658, 30.230923315680904 ], [ -94.716298856919821, 30.230769315657007 ], [ -94.716336857003114, 30.230593315561944 ], [ -94.716425856851473, 30.230351316122661 ], [ -94.716444856706431, 30.230258315606662 ], [ -94.71643785705399, 30.23022531629778 ], [ -94.716323856582676, 30.230038315950779 ], [ -94.716298855984192, 30.229878316104177 ], [ -94.716279856169791, 30.229818315567652 ], [ -94.716260856781076, 30.229675315607786 ], [ -94.71626085679658, 30.229596315983141 ], [ -94.716260856949376, 30.229537315409242 ], [ -94.7162858569652, 30.229449315335959 ], [ -94.71631085670478, 30.229400315877083 ], [ -94.71636785624753, 30.229356315514575 ], [ -94.716412856403991, 30.229334315454597 ], [ -94.716551856751479, 30.229312315796452 ], [ -94.716595856875074, 30.229295315438808 ], [ -94.716678856838541, 30.229251315382324 ], [ -94.716760856112273, 30.229191315791827 ], [ -94.716804857092697, 30.22914731600223 ], [ -94.716874856975281, 30.229026315458214 ], [ -94.716931857089961, 30.228965315464894 ], [ -94.717057856730193, 30.228861315835474 ], [ -94.717184856937791, 30.228575315491774 ], [ -94.717317856420465, 30.228366315596865 ], [ -94.717374856515605, 30.228239315385128 ], [ -94.717393857093469, 30.228129315293597 ], [ -94.717398856368661, 30.228067315235837 ], [ -94.717399856633449, 30.228058315663112 ], [ -94.717374856775749, 30.227876315627949 ], [ -94.71734885715847, 30.227810315307877 ], [ -94.71732985714084, 30.227673315561596 ], [ -94.717298856740413, 30.227552315108206 ], [ -94.717221856182562, 30.226798314956469 ], [ -94.717189856257107, 30.226138315139121 ], [ -94.717163856644319, 30.224648314412846 ], [ -94.717170856400912, 30.224164314587064 ], [ -94.717165856333253, 30.223970314632314 ], [ -94.717157856478906, 30.22363131403376 ], [ -94.717162856309486, 30.221502313872968 ], [ -94.717156856175862, 30.221409313727911 ], [ -94.717169856579901, 30.221310314034341 ], [ -94.717175855836729, 30.221101313549735 ], [ -94.717156856580175, 30.220914314221982 ], [ -94.717099856682552, 30.220732313593103 ], [ -94.717105856478469, 30.220667313955726 ], [ -94.717219856669203, 30.220425313489926 ], [ -94.717289855956651, 30.220342313959723 ], [ -94.717460856275935, 30.22017131357233 ], [ -94.717529856056643, 30.220061313321718 ], [ -94.717535856663304, 30.220001313688662 ], [ -94.717510856099338, 30.219847313558109 ], [ -94.717472856597439, 30.21971031366353 ], [ -94.717447856486672, 30.219660313478219 ], [ -94.717288855955161, 30.219418313572035 ], [ -94.71717485651908, 30.2193083132738 ], [ -94.71714985610582, 30.219264313197737 ], [ -94.717035856408984, 30.219143313459131 ], [ -94.716965856121234, 30.219006313359969 ], [ -94.71692185612892, 30.218857313283205 ], [ -94.716908856076245, 30.2185823134222 ], [ -94.716921856524905, 30.218549313052243 ], [ -94.716984855847414, 30.218472313165929 ], [ -94.716978856077915, 30.218384313807785 ], [ -94.716997855842749, 30.218120313181565 ], [ -94.716978856119013, 30.218027313581413 ], [ -94.71693385619659, 30.217911312925835 ], [ -94.716838856492913, 30.217763313144832 ], [ -94.716788856232441, 30.217647313081596 ], [ -94.716756856372641, 30.217477313525162 ], [ -94.716768855731345, 30.217356313031548 ], [ -94.716838856301905, 30.217185312953429 ], [ -94.717028856108882, 30.216938313326555 ], [ -94.717148855753919, 30.216674312677753 ], [ -94.717218856100288, 30.216580312956363 ], [ -94.717306856475616, 30.216399313005446 ], [ -94.71745885580593, 30.216239312996603 ], [ -94.717484856209268, 30.21617931319896 ], [ -94.717477856379915, 30.21609631267528 ], [ -94.717407856385066, 30.215937313067691 ], [ -94.717414856430253, 30.215833312691547 ], [ -94.717344856035865, 30.215723312983194 ], [ -94.717338855996942, 30.215613313105433 ], [ -94.717274856337369, 30.215332313069833 ], [ -94.717186855593596, 30.215162312606452 ], [ -94.717053855784172, 30.214991312595465 ], [ -94.717021855649861, 30.214931312377722 ], [ -94.716996856426007, 30.214909312632557 ], [ -94.716945856169673, 30.214909312818843 ], [ -94.716850855869282, 30.214887312485263 ], [ -94.71681885594721, 30.214854312677467 ], [ -94.716805856314039, 30.214744312941782 ], [ -94.716881856338276, 30.214568312236775 ], [ -94.716888856453764, 30.214507312519057 ], [ -94.716875855696202, 30.214392312720388 ], [ -94.716850855586117, 30.214331312941368 ], [ -94.716799856041746, 30.214271312854493 ], [ -94.716717856339358, 30.214221312924089 ], [ -94.716590856062624, 30.214166312518728 ], [ -94.716527856180875, 30.214106312261531 ], [ -94.716470856321521, 30.214001312267516 ], [ -94.716463855806211, 30.213924312670009 ], [ -94.716444855726721, 30.213864312554499 ], [ -94.71639485607372, 30.213798312308729 ], [ -94.716368855800454, 30.213787312385822 ], [ -94.716337855361175, 30.213710312641112 ], [ -94.716337855987504, 30.213677312881703 ], [ -94.716368856249701, 30.213628312809288 ], [ -94.716552856058286, 30.213446312552055 ], [ -94.71659685607824, 30.21336931203766 ], [ -94.716615855708682, 30.213188312711424 ], [ -94.716653855921578, 30.212990311893449 ], [ -94.716662855787746, 30.212885312579964 ], [ -94.716666856290203, 30.212841312592538 ], [ -94.716604855575895, 30.212535312105008 ], [ -94.71657085540869, 30.212364312325761 ], [ -94.716526855470093, 30.212045311672927 ], [ -94.716532855994743, 30.211857312507423 ], [ -94.716519855795269, 30.211609312230529 ], [ -94.716526855617246, 30.211400312048251 ], [ -94.716412855541023, 30.21091631220277 ], [ -94.716290855503175, 30.210382311790404 ], [ -94.716322855395873, 30.210002311638156 ], [ -94.716299855534871, 30.209907312054312 ], [ -94.716247855424129, 30.209696312044599 ], [ -94.716251855828247, 30.209575311183176 ], [ -94.71625385524942, 30.209530311360478 ], [ -94.716244855911071, 30.209486311904389 ], [ -94.716177855491324, 30.20915131133189 ], [ -94.716152855373807, 30.208831311589094 ], [ -94.716126855512471, 30.208486311404798 ], [ -94.716088854952986, 30.208332311569531 ], [ -94.716138855384656, 30.208112311031989 ], [ -94.716163855, 30.207402311152503 ], [ -94.716119855762727, 30.206819310617718 ], [ -94.716094855307617, 30.206660310972229 ], [ -94.716075854877346, 30.206412311345332 ], [ -94.716036855341628, 30.206176311059576 ], [ -94.715808855652654, 30.205846310522837 ], [ -94.715739854878365, 30.205720310971138 ], [ -94.71566385537669, 30.205533310884832 ], [ -94.715656855398507, 30.20521931050687 ], [ -94.715664855003084, 30.2051273104037 ], [ -94.715700855073649, 30.204763310815999 ], [ -94.715770854764017, 30.204559310669655 ], [ -94.715821855416323, 30.204323310774402 ], [ -94.715890855481945, 30.204163310508243 ], [ -94.715922854876041, 30.203987310110698 ], [ -94.715789855385154, 30.203657310854645 ], [ -94.715782854912931, 30.203300310213855 ], [ -94.715763854655236, 30.203124310253578 ], [ -94.71572585538307, 30.202997310532709 ], [ -94.715541855500433, 30.202750309830407 ], [ -94.715504855133233, 30.2026403098338 ], [ -94.715370854640184, 30.202486310518125 ], [ -94.71519385467893, 30.202426310327851 ], [ -94.715098854898059, 30.202376310180082 ], [ -94.714864855260046, 30.202096309778963 ], [ -94.714579855072202, 30.201832310111229 ], [ -94.714351854526925, 30.201689310045886 ], [ -94.714104854295627, 30.201601309858241 ], [ -94.713971854317975, 30.201568309739876 ], [ -94.713844854253523, 30.201452309623207 ], [ -94.713667854245145, 30.201183309858617 ], [ -94.713224854244729, 30.200452310033643 ], [ -94.712837853705338, 30.199621310121383 ], [ -94.712717853750434, 30.199401309565793 ], [ -94.712527853942632, 30.199193309850049 ], [ -94.712457853876387, 30.199138309656501 ], [ -94.712356854000134, 30.199083309325758 ], [ -94.712178854027385, 30.198967309155801 ], [ -94.712077854377725, 30.198890309794116 ], [ -94.712033853847217, 30.198835309981995 ], [ -94.711963854389808, 30.198698309996892 ], [ -94.711874853788103, 30.198571309443768 ], [ -94.711824854333898, 30.198522309121959 ], [ -94.711767853523881, 30.198478309613744 ], [ -94.711564853770682, 30.198406309374981 ], [ -94.711425853381243, 30.198346309620877 ], [ -94.71134985421844, 30.198258309851365 ], [ -94.711273854162556, 30.198142309116111 ], [ -94.711102853429068, 30.19798830916714 ], [ -94.711064853825206, 30.197873309015971 ], [ -94.711007854059162, 30.197785309715755 ], [ -94.710931853410713, 30.197719309353761 ], [ -94.710804853094729, 30.197648309191692 ], [ -94.710652853502182, 30.197576308989543 ], [ -94.710564853513446, 30.197510309592285 ], [ -94.710532854023313, 30.197472309566429 ], [ -94.710507853765577, 30.197406309660753 ], [ -94.710494853944539, 30.197285309701545 ], [ -94.710526853477347, 30.197158309411751 ], [ -94.710582853869852, 30.196993309391107 ], [ -94.710639853262421, 30.196889308761332 ], [ -94.710899853404513, 30.196515309542189 ], [ -94.710962853253989, 30.196399309029722 ], [ -94.710956853299024, 30.196245309129946 ], [ -94.710930853861456, 30.19618630947155 ], [ -94.710886853090912, 30.196086309461926 ], [ -94.710823853334432, 30.195987308892526 ], [ -94.710759853368117, 30.195926309052457 ], [ -94.710595853511705, 30.195822309021786 ], [ -94.71049485324798, 30.195723309360066 ], [ -94.710380853101668, 30.195547309058817 ], [ -94.710297853056119, 30.195365308996127 ], [ -94.710272853804042, 30.195277309236914 ], [ -94.710240853441391, 30.195085308897802 ], [ -94.710246853771892, 30.19493630870328 ], [ -94.710215853708434, 30.194662308906427 ], [ -94.710201853464213, 30.194537308586458 ], [ -94.709913852755307, 30.193873308557034 ], [ -94.709587852685232, 30.193361308343803 ], [ -94.709341852916779, 30.192863308717431 ], [ -94.709317853396996, 30.192827308269475 ], [ -94.709290853412483, 30.192781308584152 ], [ -94.70914685331789, 30.192446308520225 ], [ -94.709119852602285, 30.192036307826481 ], [ -94.709044853284567, 30.191609307783107 ], [ -94.708871852757767, 30.191371307809401 ], [ -94.708744852319782, 30.191270308346088 ], [ -94.70853685275128, 30.191104308122632 ], [ -94.708295852468751, 30.190873308361464 ], [ -94.708112852662154, 30.190746308091875 ], [ -94.707878852420293, 30.190554308251276 ], [ -94.707738852314861, 30.19042230764849 ], [ -94.707561852918133, 30.190323307591829 ], [ -94.707403852639118, 30.190163308238166 ], [ -94.707289852034535, 30.190076307663769 ], [ -94.707200852071253, 30.189883308175112 ], [ -94.707143852731406, 30.189801307897572 ], [ -94.707029852395962, 30.189713307783524 ], [ -94.706953851969445, 30.189625307558323 ], [ -94.706896852565464, 30.189526307402282 ], [ -94.706865852616971, 30.189416307649562 ], [ -94.70678985174095, 30.189278307327328 ], [ -94.70664385229091, 30.189135307716139 ], [ -94.70649185198306, 30.189042307808073 ], [ -94.70640285239422, 30.188926307562824 ], [ -94.706364851764789, 30.188794307388481 ], [ -94.706358852062223, 30.188679307987456 ], [ -94.70629585216642, 30.188552307273028 ], [ -94.706200851581244, 30.18845330740638 ], [ -94.70601085238512, 30.18836030759628 ], [ -94.705896852118656, 30.188261307815409 ], [ -94.705839851626365, 30.188228307540754 ], [ -94.705754851397373, 30.188192307681877 ], [ -94.705604851610559, 30.188129307865886 ], [ -94.705478851686323, 30.188041307874514 ], [ -94.705351851647819, 30.187997307157062 ], [ -94.70513085196022, 30.187953307621576 ], [ -94.705009851349587, 30.187964307703215 ], [ -94.704712851082107, 30.187942307984539 ], [ -94.704446851648257, 30.187937307644351 ], [ -94.704364851690855, 30.187893307180389 ], [ -94.704243851569146, 30.187772307356234 ], [ -94.704199851028648, 30.187739307925842 ], [ -94.704148851353239, 30.187717307488207 ], [ -94.703990851561016, 30.187711307315961 ], [ -94.703484851521523, 30.187783307496634 ], [ -94.703161850945989, 30.187777307828064 ], [ -94.703034851262487, 30.187755307478326 ], [ -94.702977851598305, 30.187728307171536 ], [ -94.702939851271893, 30.187695307548822 ], [ -94.702882850662064, 30.187618308008453 ], [ -94.702800851355349, 30.187530307710034 ], [ -94.702749851391289, 30.187448307357855 ], [ -94.702680851117165, 30.187272307303157 ], [ -94.702521850550553, 30.186958307447465 ], [ -94.702407850651028, 30.186628306965751 ], [ -94.702357851391085, 30.186551307778235 ], [ -94.702281851035963, 30.186463307306479 ], [ -94.702046850795398, 30.186304307114781 ], [ -94.701730850920853, 30.186051307248064 ], [ -94.701622850531592, 30.186045307160736 ], [ -94.701458850970184, 30.186067307463077 ], [ -94.701331850408479, 30.186067307097115 ], [ -94.701166850128772, 30.186051307156674 ], [ -94.700850850453435, 30.185919306891055 ], [ -94.700641850890392, 30.18591330714246 ], [ -94.700331849985261, 30.185919307526049 ], [ -94.700166850269824, 30.185892307759339 ], [ -94.700071850576393, 30.185848307077968 ], [ -94.700040850383189, 30.185820307388845 ], [ -94.700033850259558, 30.185793307540056 ], [ -94.700040850769412, 30.185754307641506 ], [ -94.70023685030182, 30.185430307562143 ], [ -94.700356850190346, 30.18518830731016 ], [ -94.700375850461882, 30.185116306839852 ], [ -94.700375849896091, 30.185012307508725 ], [ -94.700362849977907, 30.184902306829418 ], [ -94.700337850655259, 30.184819307300607 ], [ -94.700210849767515, 30.184599307434688 ], [ -94.699938850426278, 30.184225306909983 ], [ -94.699799849829517, 30.184093307375495 ], [ -94.699748850285474, 30.184033307394603 ], [ -94.69969885046045, 30.183945306593227 ], [ -94.699704850429796, 30.183846306794063 ], [ -94.69977385056383, 30.183653307288331 ], [ -94.699887849690811, 30.183422306426735 ], [ -94.699957850145211, 30.183318307162192 ], [ -94.700014849746154, 30.183186306480916 ], [ -94.700014850331314, 30.183065306355402 ], [ -94.700001849756461, 30.18298230647089 ], [ -94.699938849985841, 30.182856306837436 ], [ -94.699742850424016, 30.18258630628883 ], [ -94.69971085000104, 30.182487307015112 ], [ -94.699704849646324, 30.182383306270943 ], [ -94.699659849906936, 30.182212306586813 ], [ -94.699621849663046, 30.182135306846366 ], [ -94.699495850265805, 30.182025306110638 ], [ -94.699482849471607, 30.182004306982911 ], [ -94.699469849582627, 30.181970306142766 ], [ -94.699463850302394, 30.181849306448338 ], [ -94.699425850159614, 30.18175130687807 ], [ -94.699349849925056, 30.181652306661135 ], [ -94.699051850075989, 30.181459306445362 ], [ -94.699001849646265, 30.181415306049264 ], [ -94.698938849585105, 30.181333306625497 ], [ -94.698918849880826, 30.181245306566488 ], [ -94.69891884982755, 30.181195306307064 ], [ -94.698956850171896, 30.181069306468792 ], [ -94.699248849429239, 30.180530306324549 ], [ -94.699507850051432, 30.180112306418902 ], [ -94.699520849880471, 30.180029305983371 ], [ -94.699513850293968, 30.180002306043328 ], [ -94.69946984982316, 30.179930305874421 ], [ -94.699444849369797, 30.179908305726098 ], [ -94.699247849744893, 30.179842306388128 ], [ -94.699178849484511, 30.179782305661561 ], [ -94.699165849600902, 30.179677306493051 ], [ -94.699228850073254, 30.179551305840494 ], [ -94.699387849770218, 30.179303305635372 ], [ -94.699412849391834, 30.179237305846218 ], [ -94.69941884984209, 30.179144306207899 ], [ -94.69925484978512, 30.178836305536763 ], [ -94.699171849321033, 30.178632306215231 ], [ -94.699133849443854, 30.178599306163665 ], [ -94.699076849867382, 30.178577305835741 ], [ -94.698988849731862, 30.178561306020448 ], [ -94.698760849869529, 30.178599305698594 ], [ -94.698722849100577, 30.178566305497426 ], [ -94.698703849316644, 30.178506305975951 ], [ -94.698734849847284, 30.178170305559224 ], [ -94.698886849314221, 30.177895305801353 ], [ -94.69888684938239, 30.177862305353223 ], [ -94.698956849743553, 30.177686306129822 ], [ -94.699064849805211, 30.177516305942795 ], [ -94.699127849438355, 30.177445305693876 ], [ -94.699158849243005, 30.177384305555659 ], [ -94.699184849275611, 30.177290305819596 ], [ -94.699177849718978, 30.177225305244257 ], [ -94.69915284993796, 30.177170305461296 ], [ -94.699013849599282, 30.17703830530321 ], [ -94.698817849586447, 30.176895305853137 ], [ -94.698551849330997, 30.176598305035093 ], [ -94.698487849509036, 30.176493305446368 ], [ -94.698475849903673, 30.176416305863341 ], [ -94.698510849363473, 30.176277305722476 ], [ -94.698519849766555, 30.176246305439946 ], [ -94.69859584964172, 30.176086305517156 ], [ -94.698835849510871, 30.175674305018024 ], [ -94.698823849827122, 30.17556430496116 ], [ -94.698804849562094, 30.175525305163859 ], [ -94.698778849928061, 30.175487305680836 ], [ -94.69873484918088, 30.175454304967225 ], [ -94.698626849456687, 30.175338305599354 ], [ -94.698588849078192, 30.175272304800139 ], [ -94.698569849329147, 30.175201305596485 ], [ -94.698595849386194, 30.175107304988831 ], [ -94.698639849417589, 30.175008305578597 ], [ -94.698886849346778, 30.174667305028596 ], [ -94.698905849800894, 30.174612305292499 ], [ -94.6991528499682, 30.174304304762245 ], [ -94.699209849643722, 30.174090305181537 ], [ -94.699228849141079, 30.173930305335972 ], [ -94.699234849839613, 30.173683305279372 ], [ -94.699221849945275, 30.173534304856684 ], [ -94.699240849820953, 30.172750304917965 ], [ -94.699265849605766, 30.172662304989665 ], [ -94.699514849975415, 30.171803304907371 ], [ -94.700027849186753, 30.171398304766544 ], [ -94.700588849913217, 30.171147304247668 ], [ -94.700562849197738, 30.170714304295409 ], [ -94.701130849367019, 30.170155304306199 ], [ -94.701168849637966, 30.169780304141266 ], [ -94.701202850347869, 30.169445303592902 ], [ -94.701664849562505, 30.168885303809279 ], [ -94.701729849401545, 30.168427303781211 ], [ -94.701658850162133, 30.168127303757561 ], [ -94.701101849639514, 30.167148303395809 ], [ -94.701064849844187, 30.166573303572513 ], [ -94.700612849541912, 30.165598303505352 ], [ -94.700382849413884, 30.165338303339691 ], [ -94.700080849572473, 30.164735302644981 ], [ -94.699913849511077, 30.164020302936922 ], [ -94.700028848883022, 30.16363230244583 ], [ -94.700442849443021, 30.162930302839175 ], [ -94.700524849486825, 30.161786302709992 ], [ -94.701037849245523, 30.161340301913299 ], [ -94.701787849621212, 30.160946301830613 ], [ -94.702237850146105, 30.159233301541452 ], [ -94.70235884936146, 30.159241301660149 ], [ -94.702295849592971, 30.159004301506794 ], [ -94.702150849367186, 30.158678301260164 ], [ -94.702124850014457, 30.158619301235248 ], [ -94.701700849327835, 30.158191301472161 ], [ -94.701415849110148, 30.157949301333932 ], [ -94.701124849411002, 30.157514301560536 ], [ -94.701073848792362, 30.157278301463336 ], [ -94.701048848787735, 30.157162301110336 ], [ -94.701035849214193, 30.156810300893838 ], [ -94.700989849618452, 30.15668830154409 ], [ -94.701834849560186, 30.156151301056088 ], [ -94.702598849905058, 30.155668301053357 ], [ -94.703795850290945, 30.154936300952215 ], [ -94.704087849781061, 30.154775300605749 ], [ -94.704411850142719, 30.154609300417409 ], [ -94.704798849920564, 30.154458300336955 ], [ -94.704943849568025, 30.154403301112144 ], [ -94.705356850602598, 30.154277300882647 ], [ -94.705555850053244, 30.154223301060345 ], [ -94.705989850268523, 30.154146300900358 ], [ -94.706383850805622, 30.154090300805336 ], [ -94.706951850181554, 30.154046300968751 ], [ -94.707587850553267, 30.154049300403059 ], [ -94.707878851252033, 30.154072300987622 ], [ -94.715125852872063, 30.154665300669798 ], [ -94.715484853205268, 30.154694300813521 ], [ -94.718019853321309, 30.154905300588791 ], [ -94.718155853267845, 30.154916300780222 ], [ -94.720192853741395, 30.15508430058193 ], [ -94.725161855651962, 30.155497300347221 ], [ -94.726712856031384, 30.155619300432694 ], [ -94.728887856148759, 30.155791300536787 ], [ -94.728909856813573, 30.155792300587745 ], [ -94.728975856311507, 30.155798300350938 ], [ -94.72899785647904, 30.155800300576299 ], [ -94.730426857173029, 30.155916300510277 ], [ -94.732359856980821, 30.156073299655592 ], [ -94.734321857775555, 30.156242300132522 ], [ -94.734715858267037, 30.156273300003654 ], [ -94.736146858034601, 30.156386299734535 ], [ -94.736200858069012, 30.156390299730059 ], [ -94.736364857830267, 30.15640229977587 ], [ -94.736419858216806, 30.156406299794575 ], [ -94.736759858598248, 30.156433300049684 ], [ -94.737779858149153, 30.156515300289723 ], [ -94.738119858733043, 30.156543300000795 ], [ -94.738331858931744, 30.156562299634757 ], [ -94.738970858788804, 30.156619300347785 ], [ -94.739184858904608, 30.156638299689611 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 308, "Tract": "48291700700", "Area_SqMi": 53.026946308477989, "total_2009": 63, "total_2010": 101, "total_2011": 117, "total_2012": 51, "total_2013": 44, "total_2014": 70, "total_2015": 84, "total_2016": 121, "total_2017": 135, "total_2018": 134, "total_2019": 158, "total_2020": 163, "age1": 51, "age2": 73, "age3": 48, "earn1": 35, "earn2": 52, "earn3": 85, "naics_s01": 0, "naics_s02": 43, "naics_s03": 8, "naics_s04": 35, "naics_s05": 9, "naics_s06": 0, "naics_s07": 10, "naics_s08": 3, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 15, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 16, "naics_s19": 1, "naics_s20": 5, "race1": 148, "race2": 13, "race3": 3, "race4": 4, "race5": 1, "race6": 3, "ethnicity1": 118, "ethnicity2": 54, "edu1": 38, "edu2": 34, "edu3": 24, "edu4": 25, "Shape_Length": 221949.38537121017, "Shape_Area": 1478300506.5547252, "total_2021": 157, "total_2022": 172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.850611888954575, 30.189502302659989 ], [ -94.850551889400137, 30.188712302619944 ], [ -94.85027488931037, 30.187842302371983 ], [ -94.849672888791105, 30.187185302191683 ], [ -94.849631888693452, 30.187140302531873 ], [ -94.848249888700735, 30.186544302131196 ], [ -94.847642887945085, 30.186404302069679 ], [ -94.84713288792986, 30.186283302575131 ], [ -94.8459898878682, 30.186245302078355 ], [ -94.845387887745773, 30.186225302341125 ], [ -94.843388887806213, 30.186626302083049 ], [ -94.843281886924572, 30.18664830225002 ], [ -94.842179887158537, 30.186654302647316 ], [ -94.841063886358512, 30.186450302113421 ], [ -94.840917887001467, 30.186391302725809 ], [ -94.838886886322214, 30.185571302161975 ], [ -94.836854885387865, 30.184751301906196 ], [ -94.836506885258643, 30.184611302054968 ], [ -94.835129885518626, 30.183764302613561 ], [ -94.834137884742489, 30.182735302195979 ], [ -94.833280884511709, 30.18158930178944 ], [ -94.831241883869339, 30.178863300965439 ], [ -94.830363883424738, 30.177477301133386 ], [ -94.829992883682905, 30.175883300664612 ], [ -94.829892883004533, 30.173930300591746 ], [ -94.829818883205988, 30.173497300052095 ], [ -94.829582883265886, 30.172117299651436 ], [ -94.829412883425235, 30.171324300035202 ], [ -94.829349882967932, 30.171029299859391 ], [ -94.828796883140399, 30.170116299324203 ], [ -94.828255882968378, 30.169452299193765 ], [ -94.827456882333053, 30.16880029948048 ], [ -94.826338881855321, 30.167940299357021 ], [ -94.82354488163098, 30.166104298789055 ], [ -94.822613880536565, 30.165874298944885 ], [ -94.819566879969202, 30.165969298653049 ], [ -94.818817879605191, 30.166099299157491 ], [ -94.818576880049704, 30.166199299557313 ], [ -94.818104880004782, 30.166395299594225 ], [ -94.817632879767373, 30.166590299643399 ], [ -94.817447879583526, 30.166666298929002 ], [ -94.817072879994427, 30.16686729964265 ], [ -94.816795879555002, 30.167015299820047 ], [ -94.816518879346276, 30.167163299450721 ], [ -94.815252879044252, 30.167841299863596 ], [ -94.814007878755675, 30.168163299986293 ], [ -94.813668878814255, 30.168193299589586 ], [ -94.812813878966523, 30.168267300054008 ], [ -94.811858878546914, 30.167665299703977 ], [ -94.811348878516299, 30.1671552992043 ], [ -94.811235878000716, 30.166757299641773 ], [ -94.811130877986713, 30.166390299862041 ], [ -94.810861878071847, 30.165368299692133 ], [ -94.810389877726962, 30.1643482994617 ], [ -94.810156878086389, 30.163196298957214 ], [ -94.810071878026804, 30.162691298498565 ], [ -94.809969877706038, 30.162084298243776 ], [ -94.810045877481613, 30.161603298112787 ], [ -94.810153877842851, 30.160919298047713 ], [ -94.81094287801578, 30.157856297500665 ], [ -94.810973877989127, 30.157665298073173 ], [ -94.811310877843169, 30.155582297392886 ], [ -94.811541877611134, 30.153793296671594 ], [ -94.811611877985214, 30.153252296359256 ], [ -94.81160587754448, 30.152389296963538 ], [ -94.811267877216352, 30.151594296603893 ], [ -94.810716877261257, 30.150842295950966 ], [ -94.808796876611353, 30.149080295650254 ], [ -94.808484876976095, 30.148794295832555 ], [ -94.807992875930367, 30.148179296037871 ], [ -94.807196875851062, 30.146161295809325 ], [ -94.806727876114394, 30.144778295531513 ], [ -94.806508875828143, 30.143876294884009 ], [ -94.806571875460833, 30.142220295013718 ], [ -94.806973875753812, 30.140921294811399 ], [ -94.80723787542658, 30.140662294408941 ], [ -94.807747875918864, 30.140081294347826 ], [ -94.809238876131772, 30.138980294164423 ], [ -94.812384876834855, 30.137713293447526 ], [ -94.814450877690604, 30.137250293106629 ], [ -94.817904878502901, 30.137125293350834 ], [ -94.819309878623699, 30.136946293292141 ], [ -94.820498879538945, 30.136648293207784 ], [ -94.821214878764721, 30.13627629297169 ], [ -94.821617879495463, 30.135447292554659 ], [ -94.821548879658437, 30.135133292690327 ], [ -94.821395879196857, 30.134424292812845 ], [ -94.820850878978362, 30.133494292746295 ], [ -94.820570879279316, 30.133304292805832 ], [ -94.819941878669724, 30.13287629224876 ], [ -94.819011878828803, 30.132726292594572 ], [ -94.818010878264076, 30.132658291981983 ], [ -94.816215878068078, 30.132794292829981 ], [ -94.815245877406383, 30.132927292359938 ], [ -94.814348876990167, 30.133027292215644 ], [ -94.813260877030956, 30.132799292542185 ], [ -94.81223487689671, 30.132408292665655 ], [ -94.811938876164305, 30.131919292702516 ], [ -94.811529876039216, 30.131286292196467 ], [ -94.811563876557386, 30.130591291773595 ], [ -94.811751876865287, 30.12971629233256 ], [ -94.812095876692723, 30.12871029164798 ], [ -94.81252187625293, 30.128382291829592 ], [ -94.812606876516426, 30.128316291916356 ], [ -94.813074877231557, 30.128068291813044 ], [ -94.814774876754782, 30.127812291463496 ], [ -94.815735877172088, 30.127786291310674 ], [ -94.816675877395838, 30.127976291058367 ], [ -94.818002877905684, 30.128597291461944 ], [ -94.819972878890169, 30.129379291730032 ], [ -94.820762878881425, 30.129489291452245 ], [ -94.825471879637846, 30.129790291730366 ], [ -94.826383880681362, 30.129683291285556 ], [ -94.826989880770995, 30.12939229111716 ], [ -94.827311880825732, 30.12875029079299 ], [ -94.827392880219946, 30.128119291390938 ], [ -94.8271118802773, 30.127453290846372 ], [ -94.827019880281995, 30.127366290529363 ], [ -94.82541287947555, 30.125844290891457 ], [ -94.82520487944241, 30.125256290163207 ], [ -94.824863879931215, 30.124533290446799 ], [ -94.824457879151126, 30.123881290348738 ], [ -94.824046879014901, 30.123221289915648 ], [ -94.823955879193534, 30.123099289962255 ], [ -94.823223879206225, 30.122116290241554 ], [ -94.822201879256554, 30.121726290216138 ], [ -94.820996878949003, 30.121584289544487 ], [ -94.81982387836797, 30.121865289745621 ], [ -94.818559878416494, 30.12216828988716 ], [ -94.817290878074189, 30.122868290526267 ], [ -94.817258877442569, 30.12288728995944 ], [ -94.816495877823641, 30.12250629045781 ], [ -94.816373876971539, 30.121945290201655 ], [ -94.816408877064688, 30.12134228979097 ], [ -94.816421877031516, 30.121129289688941 ], [ -94.816433877634523, 30.120915289881577 ], [ -94.816355877635431, 30.12091928952864 ], [ -94.816308876840196, 30.120921290012575 ], [ -94.816083877160693, 30.120935290082659 ], [ -94.815935876800495, 30.120943289590933 ], [ -94.815811877282854, 30.120950289916209 ], [ -94.814886877458008, 30.120992290114099 ], [ -94.814830876559839, 30.120996290199411 ], [ -94.81312987644084, 30.121133290312034 ], [ -94.811895876533413, 30.121240290462655 ], [ -94.810918875995853, 30.121325290656657 ], [ -94.81076087637264, 30.121335290239415 ], [ -94.810286875768469, 30.121367290017734 ], [ -94.810129876232409, 30.121378290426538 ], [ -94.809349875065067, 30.121434290374978 ], [ -94.808063874686098, 30.121541290632646 ], [ -94.80490987461107, 30.121805290546263 ], [ -94.804472874666615, 30.121821290941202 ], [ -94.803761873961605, 30.121900290976757 ], [ -94.801977873647942, 30.122036290514746 ], [ -94.80165187378671, 30.122079290372223 ], [ -94.800219873332765, 30.122291291236269 ], [ -94.799226872870108, 30.122440290470333 ], [ -94.798489873237443, 30.1225512910985 ], [ -94.798338873077682, 30.12255129070633 ], [ -94.798187872880661, 30.122551291046211 ], [ -94.798147872364567, 30.122551290519461 ], [ -94.798108872850108, 30.122551290566939 ], [ -94.795103871942004, 30.122886291517208 ], [ -94.793796871685117, 30.123032290982891 ], [ -94.79326387182671, 30.123090291078157 ], [ -94.7932348718942, 30.123082291322564 ], [ -94.793120871354915, 30.123051290883787 ], [ -94.79222587106446, 30.122810290978599 ], [ -94.787687870246302, 30.123180291279485 ], [ -94.785645869672962, 30.123337291949223 ], [ -94.785534869194493, 30.123344291857499 ], [ -94.785424869692037, 30.123350291251342 ], [ -94.785236869462977, 30.123361291387244 ], [ -94.785047869183288, 30.123372291511139 ], [ -94.784577868958579, 30.123421291206839 ], [ -94.783788868551511, 30.123484291928612 ], [ -94.781895868377759, 30.123638291419987 ], [ -94.780008867574338, 30.123790291627579 ], [ -94.779164868360766, 30.12385929193367 ], [ -94.77895786810609, 30.123876292105326 ], [ -94.778749867767104, 30.123893292162286 ], [ -94.778636868052232, 30.1239012915598 ], [ -94.778524867260373, 30.123909291529078 ], [ -94.777703867006451, 30.123967292056083 ], [ -94.776653867003716, 30.124061292302265 ], [ -94.77409086650718, 30.124266291690667 ], [ -94.772701865984331, 30.124375292605993 ], [ -94.771691866380507, 30.12450029224237 ], [ -94.771360865737392, 30.124540292549863 ], [ -94.771155865807373, 30.124566292273311 ], [ -94.770377865241286, 30.124711292248477 ], [ -94.770050865569445, 30.124773292418467 ], [ -94.768708864752853, 30.125137292583375 ], [ -94.767466864862556, 30.125564292208544 ], [ -94.766806864677307, 30.125827292556608 ], [ -94.765700864028972, 30.126331292394415 ], [ -94.764942864637462, 30.126746293087113 ], [ -94.764432864099703, 30.127025293361172 ], [ -94.763582864030866, 30.127566293531103 ], [ -94.763548864138656, 30.127589293278863 ], [ -94.762500863608139, 30.128329293464848 ], [ -94.761625863620338, 30.129087293106917 ], [ -94.761065862981127, 30.129616293804531 ], [ -94.760525863014593, 30.130180293512968 ], [ -94.757375862779384, 30.133660294472815 ], [ -94.7571788626976, 30.133875294633512 ], [ -94.755016861900685, 30.136248295620288 ], [ -94.754640862284489, 30.136663295303066 ], [ -94.754364861721314, 30.13696129533438 ], [ -94.751189861325372, 30.140404296613113 ], [ -94.750477861091682, 30.141032296162511 ], [ -94.749752860860568, 30.141602296418753 ], [ -94.748381861118546, 30.142544297048005 ], [ -94.748269860929938, 30.142622296719296 ], [ -94.747547860126744, 30.143067297033099 ], [ -94.745849860226912, 30.144114297489367 ], [ -94.742365859257319, 30.146359297878348 ], [ -94.742144859550805, 30.146502297622419 ], [ -94.741483859428683, 30.146933297961848 ], [ -94.741263859096506, 30.14707729836033 ], [ -94.740973858608129, 30.147254297620208 ], [ -94.740257858829324, 30.147692297880635 ], [ -94.7401038587264, 30.147786298340286 ], [ -94.739814859126994, 30.147964298196381 ], [ -94.739734858586147, 30.148012298156669 ], [ -94.739494858584962, 30.148156297812331 ], [ -94.73941485874137, 30.148204298513058 ], [ -94.739289858772921, 30.148265298169804 ], [ -94.738915858550513, 30.148447298138052 ], [ -94.738791858837274, 30.148509298544624 ], [ -94.738796858568421, 30.148944298518924 ], [ -94.738799858186979, 30.149131298149271 ], [ -94.738858858219658, 30.150250298537095 ], [ -94.738882859105843, 30.150686299120835 ], [ -94.738889858546756, 30.150840298542466 ], [ -94.738912858396958, 30.151305298471566 ], [ -94.738920858809848, 30.151460299070454 ], [ -94.738924858800672, 30.151550298740254 ], [ -94.738937859067775, 30.151820298723017 ], [ -94.73894285830346, 30.151910299339928 ], [ -94.738968858885201, 30.152440298963391 ], [ -94.73904985856673, 30.154031299261778 ], [ -94.739076859090261, 30.154562299562087 ], [ -94.739100858735839, 30.154977299526433 ], [ -94.739134858613824, 30.155546299675567 ], [ -94.739164859219116, 30.156222300157417 ], [ -94.739184858904608, 30.156638299689611 ], [ -94.738970858788804, 30.156619300347785 ], [ -94.738331858931744, 30.156562299634757 ], [ -94.738119858733043, 30.156543300000795 ], [ -94.737779858149153, 30.156515300289723 ], [ -94.736759858598248, 30.156433300049684 ], [ -94.736419858216806, 30.156406299794575 ], [ -94.736364857830267, 30.15640229977587 ], [ -94.736200858069012, 30.156390299730059 ], [ -94.736146858034601, 30.156386299734535 ], [ -94.734715858267037, 30.156273300003654 ], [ -94.734321857775555, 30.156242300132522 ], [ -94.732359856980821, 30.156073299655592 ], [ -94.730426857173029, 30.155916300510277 ], [ -94.72899785647904, 30.155800300576299 ], [ -94.728975856311507, 30.155798300350938 ], [ -94.728909856813573, 30.155792300587745 ], [ -94.728887856148759, 30.155791300536787 ], [ -94.726712856031384, 30.155619300432694 ], [ -94.725161855651962, 30.155497300347221 ], [ -94.720192853741395, 30.15508430058193 ], [ -94.718155853267845, 30.154916300780222 ], [ -94.718019853321309, 30.154905300588791 ], [ -94.715484853205268, 30.154694300813521 ], [ -94.715125852872063, 30.154665300669798 ], [ -94.707878851252033, 30.154072300987622 ], [ -94.707587850553267, 30.154049300403059 ], [ -94.706951850181554, 30.154046300968751 ], [ -94.706383850805622, 30.154090300805336 ], [ -94.705989850268523, 30.154146300900358 ], [ -94.705555850053244, 30.154223301060345 ], [ -94.705356850602598, 30.154277300882647 ], [ -94.704943849568025, 30.154403301112144 ], [ -94.704798849920564, 30.154458300336955 ], [ -94.704411850142719, 30.154609300417409 ], [ -94.704087849781061, 30.154775300605749 ], [ -94.703795850290945, 30.154936300952215 ], [ -94.702598849905058, 30.155668301053357 ], [ -94.701834849560186, 30.156151301056088 ], [ -94.700989849618452, 30.15668830154409 ], [ -94.701035849214193, 30.156810300893838 ], [ -94.701048848787735, 30.157162301110336 ], [ -94.701073848792362, 30.157278301463336 ], [ -94.701124849411002, 30.157514301560536 ], [ -94.701415849110148, 30.157949301333932 ], [ -94.701700849327835, 30.158191301472161 ], [ -94.702124850014457, 30.158619301235248 ], [ -94.702150849367186, 30.158678301260164 ], [ -94.702295849592971, 30.159004301506794 ], [ -94.70235884936146, 30.159241301660149 ], [ -94.702237850146105, 30.159233301541452 ], [ -94.701787849621212, 30.160946301830613 ], [ -94.701037849245523, 30.161340301913299 ], [ -94.700524849486825, 30.161786302709992 ], [ -94.700442849443021, 30.162930302839175 ], [ -94.700028848883022, 30.16363230244583 ], [ -94.699913849511077, 30.164020302936922 ], [ -94.700080849572473, 30.164735302644981 ], [ -94.700382849413884, 30.165338303339691 ], [ -94.700612849541912, 30.165598303505352 ], [ -94.701064849844187, 30.166573303572513 ], [ -94.701101849639514, 30.167148303395809 ], [ -94.701658850162133, 30.168127303757561 ], [ -94.701729849401545, 30.168427303781211 ], [ -94.701664849562505, 30.168885303809279 ], [ -94.701202850347869, 30.169445303592902 ], [ -94.701168849637966, 30.169780304141266 ], [ -94.701130849367019, 30.170155304306199 ], [ -94.700562849197738, 30.170714304295409 ], [ -94.700588849913217, 30.171147304247668 ], [ -94.700027849186753, 30.171398304766544 ], [ -94.699514849975415, 30.171803304907371 ], [ -94.699265849605766, 30.172662304989665 ], [ -94.699240849820953, 30.172750304917965 ], [ -94.699221849945275, 30.173534304856684 ], [ -94.699234849839613, 30.173683305279372 ], [ -94.699228849141079, 30.173930305335972 ], [ -94.699209849643722, 30.174090305181537 ], [ -94.6991528499682, 30.174304304762245 ], [ -94.698905849800894, 30.174612305292499 ], [ -94.698886849346778, 30.174667305028596 ], [ -94.698639849417589, 30.175008305578597 ], [ -94.698595849386194, 30.175107304988831 ], [ -94.698569849329147, 30.175201305596485 ], [ -94.698588849078192, 30.175272304800139 ], [ -94.698626849456687, 30.175338305599354 ], [ -94.69873484918088, 30.175454304967225 ], [ -94.698778849928061, 30.175487305680836 ], [ -94.698804849562094, 30.175525305163859 ], [ -94.698823849827122, 30.17556430496116 ], [ -94.698835849510871, 30.175674305018024 ], [ -94.69859584964172, 30.176086305517156 ], [ -94.698519849766555, 30.176246305439946 ], [ -94.698510849363473, 30.176277305722476 ], [ -94.698475849903673, 30.176416305863341 ], [ -94.698487849509036, 30.176493305446368 ], [ -94.698551849330997, 30.176598305035093 ], [ -94.698817849586447, 30.176895305853137 ], [ -94.699013849599282, 30.17703830530321 ], [ -94.69915284993796, 30.177170305461296 ], [ -94.699177849718978, 30.177225305244257 ], [ -94.699184849275611, 30.177290305819596 ], [ -94.699158849243005, 30.177384305555659 ], [ -94.699127849438355, 30.177445305693876 ], [ -94.699064849805211, 30.177516305942795 ], [ -94.698956849743553, 30.177686306129822 ], [ -94.69888684938239, 30.177862305353223 ], [ -94.698886849314221, 30.177895305801353 ], [ -94.698734849847284, 30.178170305559224 ], [ -94.698703849316644, 30.178506305975951 ], [ -94.698722849100577, 30.178566305497426 ], [ -94.698760849869529, 30.178599305698594 ], [ -94.698988849731862, 30.178561306020448 ], [ -94.699076849867382, 30.178577305835741 ], [ -94.699133849443854, 30.178599306163665 ], [ -94.699171849321033, 30.178632306215231 ], [ -94.69925484978512, 30.178836305536763 ], [ -94.69941884984209, 30.179144306207899 ], [ -94.699412849391834, 30.179237305846218 ], [ -94.699387849770218, 30.179303305635372 ], [ -94.699228850073254, 30.179551305840494 ], [ -94.699165849600902, 30.179677306493051 ], [ -94.699178849484511, 30.179782305661561 ], [ -94.699247849744893, 30.179842306388128 ], [ -94.699444849369797, 30.179908305726098 ], [ -94.69946984982316, 30.179930305874421 ], [ -94.699513850293968, 30.180002306043328 ], [ -94.699520849880471, 30.180029305983371 ], [ -94.699507850051432, 30.180112306418902 ], [ -94.699248849429239, 30.180530306324549 ], [ -94.698956850171896, 30.181069306468792 ], [ -94.69891884982755, 30.181195306307064 ], [ -94.698918849880826, 30.181245306566488 ], [ -94.698938849585105, 30.181333306625497 ], [ -94.699001849646265, 30.181415306049264 ], [ -94.699051850075989, 30.181459306445362 ], [ -94.699349849925056, 30.181652306661135 ], [ -94.699425850159614, 30.18175130687807 ], [ -94.699463850302394, 30.181849306448338 ], [ -94.699469849582627, 30.181970306142766 ], [ -94.699482849471607, 30.182004306982911 ], [ -94.699495850265805, 30.182025306110638 ], [ -94.699621849663046, 30.182135306846366 ], [ -94.699659849906936, 30.182212306586813 ], [ -94.699704849646324, 30.182383306270943 ], [ -94.69971085000104, 30.182487307015112 ], [ -94.699742850424016, 30.18258630628883 ], [ -94.699938849985841, 30.182856306837436 ], [ -94.700001849756461, 30.18298230647089 ], [ -94.700014850331314, 30.183065306355402 ], [ -94.700014849746154, 30.183186306480916 ], [ -94.699957850145211, 30.183318307162192 ], [ -94.699887849690811, 30.183422306426735 ], [ -94.69977385056383, 30.183653307288331 ], [ -94.699704850429796, 30.183846306794063 ], [ -94.69969885046045, 30.183945306593227 ], [ -94.699748850285474, 30.184033307394603 ], [ -94.699799849829517, 30.184093307375495 ], [ -94.699938850426278, 30.184225306909983 ], [ -94.700210849767515, 30.184599307434688 ], [ -94.700337850655259, 30.184819307300607 ], [ -94.700362849977907, 30.184902306829418 ], [ -94.700375849896091, 30.185012307508725 ], [ -94.700375850461882, 30.185116306839852 ], [ -94.700356850190346, 30.18518830731016 ], [ -94.70023685030182, 30.185430307562143 ], [ -94.700040850769412, 30.185754307641506 ], [ -94.700033850259558, 30.185793307540056 ], [ -94.700040850383189, 30.185820307388845 ], [ -94.700071850576393, 30.185848307077968 ], [ -94.700166850269824, 30.185892307759339 ], [ -94.700331849985261, 30.185919307526049 ], [ -94.700641850890392, 30.18591330714246 ], [ -94.700850850453435, 30.185919306891055 ], [ -94.701166850128772, 30.186051307156674 ], [ -94.701331850408479, 30.186067307097115 ], [ -94.701458850970184, 30.186067307463077 ], [ -94.701622850531592, 30.186045307160736 ], [ -94.701730850920853, 30.186051307248064 ], [ -94.702046850795398, 30.186304307114781 ], [ -94.702281851035963, 30.186463307306479 ], [ -94.702357851391085, 30.186551307778235 ], [ -94.702407850651028, 30.186628306965751 ], [ -94.702521850550553, 30.186958307447465 ], [ -94.702680851117165, 30.187272307303157 ], [ -94.702749851391289, 30.187448307357855 ], [ -94.702800851355349, 30.187530307710034 ], [ -94.702882850662064, 30.187618308008453 ], [ -94.702939851271893, 30.187695307548822 ], [ -94.702977851598305, 30.187728307171536 ], [ -94.703034851262487, 30.187755307478326 ], [ -94.703161850945989, 30.187777307828064 ], [ -94.703484851521523, 30.187783307496634 ], [ -94.703990851561016, 30.187711307315961 ], [ -94.704148851353239, 30.187717307488207 ], [ -94.704199851028648, 30.187739307925842 ], [ -94.704243851569146, 30.187772307356234 ], [ -94.704364851690855, 30.187893307180389 ], [ -94.704446851648257, 30.187937307644351 ], [ -94.704712851082107, 30.187942307984539 ], [ -94.705009851349587, 30.187964307703215 ], [ -94.70513085196022, 30.187953307621576 ], [ -94.705351851647819, 30.187997307157062 ], [ -94.705478851686323, 30.188041307874514 ], [ -94.705604851610559, 30.188129307865886 ], [ -94.705754851397373, 30.188192307681877 ], [ -94.705839851626365, 30.188228307540754 ], [ -94.705896852118656, 30.188261307815409 ], [ -94.70601085238512, 30.18836030759628 ], [ -94.706200851581244, 30.18845330740638 ], [ -94.70629585216642, 30.188552307273028 ], [ -94.706358852062223, 30.188679307987456 ], [ -94.706364851764789, 30.188794307388481 ], [ -94.70640285239422, 30.188926307562824 ], [ -94.70649185198306, 30.189042307808073 ], [ -94.70664385229091, 30.189135307716139 ], [ -94.70678985174095, 30.189278307327328 ], [ -94.706865852616971, 30.189416307649562 ], [ -94.706896852565464, 30.189526307402282 ], [ -94.706953851969445, 30.189625307558323 ], [ -94.707029852395962, 30.189713307783524 ], [ -94.707143852731406, 30.189801307897572 ], [ -94.707200852071253, 30.189883308175112 ], [ -94.707289852034535, 30.190076307663769 ], [ -94.707403852639118, 30.190163308238166 ], [ -94.707561852918133, 30.190323307591829 ], [ -94.707738852314861, 30.19042230764849 ], [ -94.707878852420293, 30.190554308251276 ], [ -94.708112852662154, 30.190746308091875 ], [ -94.708295852468751, 30.190873308361464 ], [ -94.70853685275128, 30.191104308122632 ], [ -94.708744852319782, 30.191270308346088 ], [ -94.708871852757767, 30.191371307809401 ], [ -94.709044853284567, 30.191609307783107 ], [ -94.709119852602285, 30.192036307826481 ], [ -94.70914685331789, 30.192446308520225 ], [ -94.709290853412483, 30.192781308584152 ], [ -94.709317853396996, 30.192827308269475 ], [ -94.709341852916779, 30.192863308717431 ], [ -94.709587852685232, 30.193361308343803 ], [ -94.709913852755307, 30.193873308557034 ], [ -94.710201853464213, 30.194537308586458 ], [ -94.710215853708434, 30.194662308906427 ], [ -94.710246853771892, 30.19493630870328 ], [ -94.710240853441391, 30.195085308897802 ], [ -94.710272853804042, 30.195277309236914 ], [ -94.710297853056119, 30.195365308996127 ], [ -94.710380853101668, 30.195547309058817 ], [ -94.71049485324798, 30.195723309360066 ], [ -94.710595853511705, 30.195822309021786 ], [ -94.710759853368117, 30.195926309052457 ], [ -94.710823853334432, 30.195987308892526 ], [ -94.710886853090912, 30.196086309461926 ], [ -94.710930853861456, 30.19618630947155 ], [ -94.710956853299024, 30.196245309129946 ], [ -94.710962853253989, 30.196399309029722 ], [ -94.710899853404513, 30.196515309542189 ], [ -94.710639853262421, 30.196889308761332 ], [ -94.710582853869852, 30.196993309391107 ], [ -94.710526853477347, 30.197158309411751 ], [ -94.710494853944539, 30.197285309701545 ], [ -94.710507853765577, 30.197406309660753 ], [ -94.710532854023313, 30.197472309566429 ], [ -94.710564853513446, 30.197510309592285 ], [ -94.710652853502182, 30.197576308989543 ], [ -94.710804853094729, 30.197648309191692 ], [ -94.710931853410713, 30.197719309353761 ], [ -94.711007854059162, 30.197785309715755 ], [ -94.711064853825206, 30.197873309015971 ], [ -94.711102853429068, 30.19798830916714 ], [ -94.711273854162556, 30.198142309116111 ], [ -94.71134985421844, 30.198258309851365 ], [ -94.711425853381243, 30.198346309620877 ], [ -94.711564853770682, 30.198406309374981 ], [ -94.711767853523881, 30.198478309613744 ], [ -94.711824854333898, 30.198522309121959 ], [ -94.711874853788103, 30.198571309443768 ], [ -94.711963854389808, 30.198698309996892 ], [ -94.712033853847217, 30.198835309981995 ], [ -94.712077854377725, 30.198890309794116 ], [ -94.712178854027385, 30.198967309155801 ], [ -94.712356854000134, 30.199083309325758 ], [ -94.712457853876387, 30.199138309656501 ], [ -94.712527853942632, 30.199193309850049 ], [ -94.712717853750434, 30.199401309565793 ], [ -94.712837853705338, 30.199621310121383 ], [ -94.713224854244729, 30.200452310033643 ], [ -94.713667854245145, 30.201183309858617 ], [ -94.713844854253523, 30.201452309623207 ], [ -94.713971854317975, 30.201568309739876 ], [ -94.714104854295627, 30.201601309858241 ], [ -94.714351854526925, 30.201689310045886 ], [ -94.714579855072202, 30.201832310111229 ], [ -94.714864855260046, 30.202096309778963 ], [ -94.715098854898059, 30.202376310180082 ], [ -94.71519385467893, 30.202426310327851 ], [ -94.715370854640184, 30.202486310518125 ], [ -94.715504855133233, 30.2026403098338 ], [ -94.715541855500433, 30.202750309830407 ], [ -94.71572585538307, 30.202997310532709 ], [ -94.715763854655236, 30.203124310253578 ], [ -94.715782854912931, 30.203300310213855 ], [ -94.715789855385154, 30.203657310854645 ], [ -94.715922854876041, 30.203987310110698 ], [ -94.715890855481945, 30.204163310508243 ], [ -94.715821855416323, 30.204323310774402 ], [ -94.715770854764017, 30.204559310669655 ], [ -94.715700855073649, 30.204763310815999 ], [ -94.715664855003084, 30.2051273104037 ], [ -94.715656855398507, 30.20521931050687 ], [ -94.71566385537669, 30.205533310884832 ], [ -94.715739854878365, 30.205720310971138 ], [ -94.715808855652654, 30.205846310522837 ], [ -94.716036855341628, 30.206176311059576 ], [ -94.716075854877346, 30.206412311345332 ], [ -94.716094855307617, 30.206660310972229 ], [ -94.716119855762727, 30.206819310617718 ], [ -94.716163855, 30.207402311152503 ], [ -94.716138855384656, 30.208112311031989 ], [ -94.716088854952986, 30.208332311569531 ], [ -94.716126855512471, 30.208486311404798 ], [ -94.716152855373807, 30.208831311589094 ], [ -94.716177855491324, 30.20915131133189 ], [ -94.716244855911071, 30.209486311904389 ], [ -94.71625385524942, 30.209530311360478 ], [ -94.716251855828247, 30.209575311183176 ], [ -94.716247855424129, 30.209696312044599 ], [ -94.716299855534871, 30.209907312054312 ], [ -94.716322855395873, 30.210002311638156 ], [ -94.716290855503175, 30.210382311790404 ], [ -94.716412855541023, 30.21091631220277 ], [ -94.716526855617246, 30.211400312048251 ], [ -94.716519855795269, 30.211609312230529 ], [ -94.716532855994743, 30.211857312507423 ], [ -94.716526855470093, 30.212045311672927 ], [ -94.71657085540869, 30.212364312325761 ], [ -94.716604855575895, 30.212535312105008 ], [ -94.716666856290203, 30.212841312592538 ], [ -94.716662855787746, 30.212885312579964 ], [ -94.716653855921578, 30.212990311893449 ], [ -94.716615855708682, 30.213188312711424 ], [ -94.71659685607824, 30.21336931203766 ], [ -94.716552856058286, 30.213446312552055 ], [ -94.716368856249701, 30.213628312809288 ], [ -94.716337855987504, 30.213677312881703 ], [ -94.716337855361175, 30.213710312641112 ], [ -94.716368855800454, 30.213787312385822 ], [ -94.71639485607372, 30.213798312308729 ], [ -94.716444855726721, 30.213864312554499 ], [ -94.716463855806211, 30.213924312670009 ], [ -94.716470856321521, 30.214001312267516 ], [ -94.716527856180875, 30.214106312261531 ], [ -94.716590856062624, 30.214166312518728 ], [ -94.716717856339358, 30.214221312924089 ], [ -94.716799856041746, 30.214271312854493 ], [ -94.716850855586117, 30.214331312941368 ], [ -94.716875855696202, 30.214392312720388 ], [ -94.716888856453764, 30.214507312519057 ], [ -94.716881856338276, 30.214568312236775 ], [ -94.716805856314039, 30.214744312941782 ], [ -94.71681885594721, 30.214854312677467 ], [ -94.716850855869282, 30.214887312485263 ], [ -94.716945856169673, 30.214909312818843 ], [ -94.716996856426007, 30.214909312632557 ], [ -94.717021855649861, 30.214931312377722 ], [ -94.717053855784172, 30.214991312595465 ], [ -94.717186855593596, 30.215162312606452 ], [ -94.717274856337369, 30.215332313069833 ], [ -94.717338855996942, 30.215613313105433 ], [ -94.717344856035865, 30.215723312983194 ], [ -94.717414856430253, 30.215833312691547 ], [ -94.717407856385066, 30.215937313067691 ], [ -94.717477856379915, 30.21609631267528 ], [ -94.717484856209268, 30.21617931319896 ], [ -94.71745885580593, 30.216239312996603 ], [ -94.717306856475616, 30.216399313005446 ], [ -94.717218856100288, 30.216580312956363 ], [ -94.717148855753919, 30.216674312677753 ], [ -94.717028856108882, 30.216938313326555 ], [ -94.716838856301905, 30.217185312953429 ], [ -94.716768855731345, 30.217356313031548 ], [ -94.716756856372641, 30.217477313525162 ], [ -94.716788856232441, 30.217647313081596 ], [ -94.716838856492913, 30.217763313144832 ], [ -94.71693385619659, 30.217911312925835 ], [ -94.716978856119013, 30.218027313581413 ], [ -94.716997855842749, 30.218120313181565 ], [ -94.716978856077915, 30.218384313807785 ], [ -94.716984855847414, 30.218472313165929 ], [ -94.716921856524905, 30.218549313052243 ], [ -94.716908856076245, 30.2185823134222 ], [ -94.71692185612892, 30.218857313283205 ], [ -94.716965856121234, 30.219006313359969 ], [ -94.717035856408984, 30.219143313459131 ], [ -94.71714985610582, 30.219264313197737 ], [ -94.71717485651908, 30.2193083132738 ], [ -94.717288855955161, 30.219418313572035 ], [ -94.717447856486672, 30.219660313478219 ], [ -94.717472856597439, 30.21971031366353 ], [ -94.717510856099338, 30.219847313558109 ], [ -94.717535856663304, 30.220001313688662 ], [ -94.717529856056643, 30.220061313321718 ], [ -94.717460856275935, 30.22017131357233 ], [ -94.717289855956651, 30.220342313959723 ], [ -94.717219856669203, 30.220425313489926 ], [ -94.717105856478469, 30.220667313955726 ], [ -94.717099856682552, 30.220732313593103 ], [ -94.717156856580175, 30.220914314221982 ], [ -94.717175855836729, 30.221101313549735 ], [ -94.717169856579901, 30.221310314034341 ], [ -94.717156856175862, 30.221409313727911 ], [ -94.717162856309486, 30.221502313872968 ], [ -94.717157856478906, 30.22363131403376 ], [ -94.717165856333253, 30.223970314632314 ], [ -94.717170856400912, 30.224164314587064 ], [ -94.717163856644319, 30.224648314412846 ], [ -94.717189856257107, 30.226138315139121 ], [ -94.717221856182562, 30.226798314956469 ], [ -94.717298856740413, 30.227552315108206 ], [ -94.71732985714084, 30.227673315561596 ], [ -94.71734885715847, 30.227810315307877 ], [ -94.717374856775749, 30.227876315627949 ], [ -94.717399856633449, 30.228058315663112 ], [ -94.717398856368661, 30.228067315235837 ], [ -94.717393857093469, 30.228129315293597 ], [ -94.717374856515605, 30.228239315385128 ], [ -94.717317856420465, 30.228366315596865 ], [ -94.717184856937791, 30.228575315491774 ], [ -94.717057856730193, 30.228861315835474 ], [ -94.716931857089961, 30.228965315464894 ], [ -94.716874856975281, 30.229026315458214 ], [ -94.716804857092697, 30.22914731600223 ], [ -94.716760856112273, 30.229191315791827 ], [ -94.716678856838541, 30.229251315382324 ], [ -94.716595856875074, 30.229295315438808 ], [ -94.716551856751479, 30.229312315796452 ], [ -94.716412856403991, 30.229334315454597 ], [ -94.71636785624753, 30.229356315514575 ], [ -94.71631085670478, 30.229400315877083 ], [ -94.7162858569652, 30.229449315335959 ], [ -94.716260856949376, 30.229537315409242 ], [ -94.71626085679658, 30.229596315983141 ], [ -94.716260856781076, 30.229675315607786 ], [ -94.716279856169791, 30.229818315567652 ], [ -94.716298855984192, 30.229878316104177 ], [ -94.716323856582676, 30.230038315950779 ], [ -94.71643785705399, 30.23022531629778 ], [ -94.716444856706431, 30.230258315606662 ], [ -94.716425856851473, 30.230351316122661 ], [ -94.716336857003114, 30.230593315561944 ], [ -94.716298856919821, 30.230769315657007 ], [ -94.716285856780658, 30.230923315680904 ], [ -94.716260856591177, 30.230967316019147 ], [ -94.716216856662811, 30.231011315663039 ], [ -94.716165856558305, 30.231105316252922 ], [ -94.716140856586577, 30.231281315625527 ], [ -94.716089856752674, 30.231396316305329 ], [ -94.716020856521766, 30.231644316571309 ], [ -94.71597585627633, 30.231743315719221 ], [ -94.715887856495101, 30.231886316433879 ], [ -94.715868856636845, 30.231941316417444 ], [ -94.715868856824571, 30.232111315853249 ], [ -94.715887856150033, 30.232309316433085 ], [ -94.715976856355667, 30.232584315940294 ], [ -94.715988856349114, 30.232754316248627 ], [ -94.716027856946141, 30.232996316479124 ], [ -94.716065857040022, 30.23309031645995 ], [ -94.716134856495714, 30.233376316716782 ], [ -94.716198856631834, 30.233557316215979 ], [ -94.716324857199481, 30.233805316189642 ], [ -94.716559856664958, 30.234173316347881 ], [ -94.716648856688224, 30.23439331623355 ], [ -94.716698857209067, 30.234569316800251 ], [ -94.716850857146284, 30.234805317030968 ], [ -94.717009856582848, 30.235185316758706 ], [ -94.717076857369307, 30.235271316782487 ], [ -94.71709185697209, 30.235289316894495 ], [ -94.717275856586994, 30.235663316990539 ], [ -94.717351857575522, 30.235850316633286 ], [ -94.717231856975857, 30.235900317342384 ], [ -94.717193857124499, 30.236034317182369 ], [ -94.717310857254375, 30.236263316816061 ], [ -94.717503857270728, 30.236767317566315 ], [ -94.717530857569926, 30.236836317386587 ], [ -94.717503857509286, 30.237087317472973 ], [ -94.718056857207927, 30.237417316919142 ], [ -94.718061856845011, 30.237434317313923 ], [ -94.718086857121435, 30.237533317273268 ], [ -94.718220857359825, 30.237901317441167 ], [ -94.718353857492801, 30.23821531772187 ], [ -94.718518857891439, 30.23872631711459 ], [ -94.718575857873105, 30.238847317410563 ], [ -94.718695857540681, 30.239039317681382 ], [ -94.718746857358298, 30.239144317474718 ], [ -94.718784857626019, 30.239188317563336 ], [ -94.718841857105716, 30.239232317895581 ], [ -94.71892985777491, 30.239270317212569 ], [ -94.719006858106496, 30.239287317806692 ], [ -94.719158857860052, 30.239347317509147 ], [ -94.719279857651969, 30.239406317840512 ], [ -94.719360857604343, 30.23944631758113 ], [ -94.719753857570353, 30.239705317918258 ], [ -94.719867857814023, 30.239804317805703 ], [ -94.720070857695077, 30.24002931791405 ], [ -94.720140858217164, 30.240194317608974 ], [ -94.720241858428338, 30.24055731763691 ], [ -94.720248857894461, 30.240997317961089 ], [ -94.720279858474257, 30.241294318169558 ], [ -94.720305857655191, 30.241431317822013 ], [ -94.720280858379397, 30.241646318341427 ], [ -94.720356857844905, 30.241833318151023 ], [ -94.720501857789941, 30.242113318203735 ], [ -94.720527857881919, 30.242152318134352 ], [ -94.720831858631868, 30.242344318597219 ], [ -94.721243857935164, 30.242679318615203 ], [ -94.721281858531256, 30.242723317866623 ], [ -94.721344858721622, 30.242822318481956 ], [ -94.721382858015346, 30.242905318000624 ], [ -94.721401858007269, 30.242998318435557 ], [ -94.721515858189633, 30.24338331847531 ], [ -94.721547858169444, 30.243548318179354 ], [ -94.72162385818595, 30.243702318618467 ], [ -94.721699858646147, 30.243795318551935 ], [ -94.72183985899207, 30.243911318603651 ], [ -94.722212858774228, 30.244076318894301 ], [ -94.722352858257864, 30.244186318223505 ], [ -94.72239085911086, 30.244235318860877 ], [ -94.722523858852142, 30.244455318289504 ], [ -94.722555858654772, 30.244538318135682 ], [ -94.722574859312488, 30.244664318500654 ], [ -94.7225678584918, 30.244835318272308 ], [ -94.722574858396499, 30.244884318779789 ], [ -94.722612859204958, 30.244945318653137 ], [ -94.722713858536579, 30.245055318804521 ], [ -94.722865858457354, 30.245269318253243 ], [ -94.722916859169018, 30.245318319137109 ], [ -94.722973859333692, 30.24535731841971 ], [ -94.723017858687427, 30.24541231902727 ], [ -94.723150859067033, 30.24560431833536 ], [ -94.723455858823797, 30.246182318738708 ], [ -94.723537859421413, 30.246380318996071 ], [ -94.72382985882362, 30.246968318611923 ], [ -94.723962859322825, 30.24719331881855 ], [ -94.724006859104009, 30.247309319355626 ], [ -94.724015859541367, 30.247413319366714 ], [ -94.725284859266552, 30.24738331943351 ], [ -94.726790860190519, 30.24734931942594 ], [ -94.729093860857247, 30.24728031932721 ], [ -94.730363861083774, 30.247243318466474 ], [ -94.732146861375938, 30.247202318455525 ], [ -94.732716861593801, 30.247184319117459 ], [ -94.733832862320369, 30.247149318437938 ], [ -94.735531862115906, 30.247125318474158 ], [ -94.739777863691515, 30.247045318690041 ], [ -94.742131863833464, 30.247001318344324 ], [ -94.742822863768424, 30.2469803181611 ], [ -94.74353886413688, 30.246970318522262 ], [ -94.743909864275238, 30.246966318101201 ], [ -94.745554865060228, 30.24692931801432 ], [ -94.747762865170827, 30.246897318171669 ], [ -94.749170866149925, 30.246877318263284 ], [ -94.75009186643446, 30.246850317809269 ], [ -94.750138866131621, 30.246849318045438 ], [ -94.752230866384153, 30.246825318371624 ], [ -94.752854866687585, 30.24685831818983 ], [ -94.752957866649538, 30.246864317553595 ], [ -94.753769867391711, 30.246970317745532 ], [ -94.754109866682541, 30.247028317978238 ], [ -94.754509866726593, 30.247118317802631 ], [ -94.754912866797952, 30.24722631816806 ], [ -94.755359867489304, 30.247375318074816 ], [ -94.75571586780066, 30.247505318168578 ], [ -94.756287868151702, 30.247745318443179 ], [ -94.756312867178067, 30.247757318407238 ], [ -94.756824867990829, 30.248006317760602 ], [ -94.759052868367377, 30.249152317874316 ], [ -94.760791868932273, 30.250036318281634 ], [ -94.76122486882403, 30.250263318729552 ], [ -94.761946868988971, 30.25064031867111 ], [ -94.763448870137566, 30.251400318623695 ], [ -94.76583287059205, 30.252607319078734 ], [ -94.766119870312068, 30.252754318519347 ], [ -94.766156870519112, 30.252773318563058 ], [ -94.766971871150929, 30.253211318664778 ], [ -94.767256870831645, 30.253364318569218 ], [ -94.767542871125485, 30.253539319227094 ], [ -94.768105870969919, 30.253883319145928 ], [ -94.76840087131832, 30.254067318627257 ], [ -94.768428871287085, 30.254085318455761 ], [ -94.768673870959319, 30.254264318582514 ], [ -94.768898871073873, 30.25442731925266 ], [ -94.769479871293171, 30.254848318814435 ], [ -94.769570871370249, 30.254921319182351 ], [ -94.769787871222675, 30.255095319485896 ], [ -94.770055871261775, 30.255321318936893 ], [ -94.770122871401043, 30.255378319011911 ], [ -94.770627871806425, 30.255837319021303 ], [ -94.770834872037526, 30.256031319598481 ], [ -94.771090872304484, 30.256272319430867 ], [ -94.77116687206059, 30.256354319149629 ], [ -94.771380872493168, 30.256584319227667 ], [ -94.7713978716383, 30.256602319549316 ], [ -94.771474872010444, 30.256686319194063 ], [ -94.771620872367009, 30.256848318963705 ], [ -94.771919872102941, 30.25720331936699 ], [ -94.773238872770108, 30.258769319542356 ], [ -94.773678872283298, 30.259291320030396 ], [ -94.773817872313572, 30.259456319802382 ], [ -94.773926872905179, 30.259582319998014 ], [ -94.774627873281304, 30.260398320266972 ], [ -94.774674872977371, 30.260455320265095 ], [ -94.774919872902288, 30.260750320194411 ], [ -94.776018873826686, 30.262056320524209 ], [ -94.777181874127152, 30.263437320450542 ], [ -94.777829874102707, 30.264221320649547 ], [ -94.779315874368606, 30.265979320874944 ], [ -94.780418875003861, 30.267284320954197 ], [ -94.781400875308393, 30.268463321549255 ], [ -94.782023875522086, 30.269191321962392 ], [ -94.782571875785962, 30.269847321632593 ], [ -94.782622875553329, 30.269908321408039 ], [ -94.783294875682472, 30.270683321374634 ], [ -94.783669876288144, 30.271090321832894 ], [ -94.784038875704681, 30.271441322219129 ], [ -94.784219876425553, 30.271626321642774 ], [ -94.784597876498722, 30.271964322216554 ], [ -94.785240875925467, 30.272498322205703 ], [ -94.785885876192495, 30.272994322003136 ], [ -94.786645876569224, 30.27351532244289 ], [ -94.787682876731154, 30.274141322670619 ], [ -94.788351877237375, 30.274497322638631 ], [ -94.788510877044899, 30.274581322477236 ], [ -94.788972877596166, 30.274802322426407 ], [ -94.78974587751074, 30.27513632227744 ], [ -94.790536877899299, 30.275450322241902 ], [ -94.790711878082973, 30.275509322293559 ], [ -94.791206878374538, 30.275676322773613 ], [ -94.792103878164696, 30.275936322683613 ], [ -94.793929878392717, 30.276433322763769 ], [ -94.794321878741016, 30.276539322701307 ], [ -94.79549987909671, 30.276857322838794 ], [ -94.795707879728141, 30.276914322493312 ], [ -94.795800879595262, 30.276939322267467 ], [ -94.795892879023725, 30.276964322340877 ], [ -94.796048879109762, 30.277006322887665 ], [ -94.796144879685627, 30.277032322335497 ], [ -94.796224879354256, 30.277054322743297 ], [ -94.796900879936729, 30.27723932246731 ], [ -94.797111879638308, 30.27729832258283 ], [ -94.79715287910841, 30.277309322549588 ], [ -94.79733087936053, 30.277358322985275 ], [ -94.797866879367959, 30.277507322296351 ], [ -94.798045879906198, 30.277557322411507 ], [ -94.798026879748278, 30.277347322949101 ], [ -94.798241879383525, 30.276316322710507 ], [ -94.799002879553569, 30.27549032228772 ], [ -94.799158880528822, 30.275320321907728 ], [ -94.799601880192355, 30.274524321569821 ], [ -94.800147880096688, 30.273591321645391 ], [ -94.800481880520351, 30.272648321601938 ], [ -94.800512879777827, 30.27245332161641 ], [ -94.800639880729776, 30.271647321393829 ], [ -94.80030688057424, 30.270652321309164 ], [ -94.799332880296163, 30.269829320656942 ], [ -94.7981548794384, 30.269424321024463 ], [ -94.797937878968966, 30.26935032123653 ], [ -94.797363879791007, 30.269281320677742 ], [ -94.796863879636334, 30.269221321157772 ], [ -94.796251879201208, 30.26930632062648 ], [ -94.796084878605299, 30.269329321065538 ], [ -94.795011878336851, 30.269919320764629 ], [ -94.793453878728315, 30.271053321125564 ], [ -94.791948877659109, 30.272189321887499 ], [ -94.791905877927533, 30.272212321938092 ], [ -94.791678877756283, 30.272333321499737 ], [ -94.791450877490036, 30.272453321797421 ], [ -94.791166878241768, 30.272604321695159 ], [ -94.790137877924138, 30.272596321525942 ], [ -94.789128877526736, 30.271992321867089 ], [ -94.7886638775541, 30.271713322032113 ], [ -94.788489876948418, 30.271380321574764 ], [ -94.787871876953673, 30.270197321653175 ], [ -94.787543877101655, 30.268757321217706 ], [ -94.787807877015936, 30.266441321124919 ], [ -94.788388876746595, 30.264678320801469 ], [ -94.78855687708851, 30.264168319892804 ], [ -94.788723876390293, 30.263658319905772 ], [ -94.788762876411184, 30.263540320517702 ], [ -94.789821877166702, 30.261334319614754 ], [ -94.789842877103851, 30.261290320011984 ], [ -94.790757877512647, 30.259394319312189 ], [ -94.791071876992319, 30.257724318815196 ], [ -94.790684876522221, 30.256453318215197 ], [ -94.789545876401391, 30.254579317873485 ], [ -94.789014876014122, 30.253131318058035 ], [ -94.789194876381046, 30.25232631823922 ], [ -94.789622876125165, 30.251516317328239 ], [ -94.790324876762284, 30.250683317344173 ], [ -94.790969876555778, 30.250373317123088 ], [ -94.791377877323924, 30.250216317062037 ], [ -94.791675877019799, 30.249882317366865 ], [ -94.793197876759109, 30.249377317364644 ], [ -94.794914877273698, 30.24910531704241 ], [ -94.797487878176398, 30.248650317098949 ], [ -94.798882878914284, 30.247908317023722 ], [ -94.799700878942943, 30.247445316839109 ], [ -94.800527879222244, 30.246563316214981 ], [ -94.801119879358026, 30.245383315684659 ], [ -94.801346879116323, 30.244112315423941 ], [ -94.801362879231306, 30.243442316015607 ], [ -94.80110587872133, 30.242565315401158 ], [ -94.801023878754904, 30.242156315074446 ], [ -94.800972879309413, 30.241903314985013 ], [ -94.801095878562521, 30.241013314955076 ], [ -94.801203879015645, 30.239744314492999 ], [ -94.801472879161508, 30.239215314543095 ], [ -94.801880879078752, 30.238790314660182 ], [ -94.80269287888926, 30.238537314401899 ], [ -94.803603879176393, 30.238622314453512 ], [ -94.804729880102869, 30.239131314651246 ], [ -94.80501388011902, 30.239259314881203 ], [ -94.806409880457451, 30.239905314576408 ], [ -94.806367880376527, 30.240215314354884 ], [ -94.806261880553762, 30.241004314735676 ], [ -94.805848879775212, 30.242453315416391 ], [ -94.805655879911782, 30.244740315615068 ], [ -94.805247880202714, 30.246902316244462 ], [ -94.805197879848464, 30.248291316290373 ], [ -94.805347880627366, 30.249436316615164 ], [ -94.805826880926304, 30.250221317023552 ], [ -94.805880880979458, 30.250298316546157 ], [ -94.80609488044891, 30.250606317044287 ], [ -94.806480880473345, 30.250843316585321 ], [ -94.807291881431127, 30.251114317282266 ], [ -94.807562880872396, 30.251149316708442 ], [ -94.808064881475246, 30.251151316553663 ], [ -94.808375880922739, 30.251134316561561 ], [ -94.808518881734756, 30.251126316794256 ], [ -94.808645881829932, 30.251120316460486 ], [ -94.808955881261369, 30.251055316996712 ], [ -94.809733881484036, 30.250555316716873 ], [ -94.809811881934635, 30.250421316960661 ], [ -94.809851881283691, 30.250220316729678 ], [ -94.810215882195763, 30.249494316185313 ], [ -94.81035388182903, 30.248401315932234 ], [ -94.810381881117891, 30.246858315740457 ], [ -94.809390880949621, 30.243349315293518 ], [ -94.808945881450342, 30.242357314721275 ], [ -94.808808880848673, 30.242054314860205 ], [ -94.808672880880195, 30.241750315110128 ], [ -94.808182881239389, 30.240657314367922 ], [ -94.807972880675095, 30.240248314241025 ], [ -94.807669880098217, 30.239659314477951 ], [ -94.80736788026708, 30.23907131439449 ], [ -94.807048879852815, 30.238451314525072 ], [ -94.806808879738696, 30.237459314000386 ], [ -94.806706880075083, 30.236475314380918 ], [ -94.806898880087218, 30.235778313626266 ], [ -94.807136879715856, 30.235073314081145 ], [ -94.807562880797434, 30.233942313279652 ], [ -94.807604880223067, 30.23383031379549 ], [ -94.80805587991658, 30.232557313044953 ], [ -94.808187880787713, 30.232184313060369 ], [ -94.808147880134939, 30.231498313261874 ], [ -94.807984880252718, 30.230152312210592 ], [ -94.807654880307282, 30.228767311988115 ], [ -94.807077879591304, 30.2275873123038 ], [ -94.806522879533134, 30.226124311613599 ], [ -94.806500879321618, 30.226028312194579 ], [ -94.806355879800677, 30.225410311288968 ], [ -94.806312880063317, 30.225222311596522 ], [ -94.806356879206348, 30.224583311408306 ], [ -94.806662879851217, 30.224071311350215 ], [ -94.807030879525101, 30.223913311654204 ], [ -94.807587879352369, 30.223962310953112 ], [ -94.808269880399635, 30.224212311534043 ], [ -94.808312879659198, 30.224250311267848 ], [ -94.808674880613665, 30.224570311112789 ], [ -94.809145880076599, 30.225401311573616 ], [ -94.809370880204654, 30.226201311996352 ], [ -94.809975880076976, 30.226848311733391 ], [ -94.810985880446026, 30.227336311839966 ], [ -94.812104881328665, 30.227653312403213 ], [ -94.812125880889354, 30.2276533121514 ], [ -94.812855881616926, 30.227643311761184 ], [ -94.814574881547571, 30.227266312043756 ], [ -94.815044881723452, 30.227163311691484 ], [ -94.818215882526516, 30.226078311065095 ], [ -94.818279882957796, 30.226056311864397 ], [ -94.819371883158226, 30.225412311093976 ], [ -94.820239883279569, 30.224674311375352 ], [ -94.820534882912312, 30.223532310974548 ], [ -94.820650882654675, 30.222254310453838 ], [ -94.820851883539461, 30.220499310654212 ], [ -94.820968883385547, 30.219749310364978 ], [ -94.821042882706962, 30.219285310367255 ], [ -94.821777883549373, 30.217871309961701 ], [ -94.824069883703672, 30.214886309360082 ], [ -94.82463288329555, 30.214152308492014 ], [ -94.825036883926884, 30.213555308466937 ], [ -94.826366884186044, 30.211594308288717 ], [ -94.826414884093339, 30.211499308212481 ], [ -94.827074884245391, 30.210196307446147 ], [ -94.828293884049955, 30.208000307641615 ], [ -94.830138884523848, 30.204813306865795 ], [ -94.830634884691847, 30.203956306549898 ], [ -94.83080088451652, 30.202904306329504 ], [ -94.830783885196524, 30.201935306472564 ], [ -94.830280884665754, 30.200762306061776 ], [ -94.829478884143853, 30.198975305201131 ], [ -94.829141884487953, 30.19822530553823 ], [ -94.829177884099209, 30.197150305094294 ], [ -94.829339884487808, 30.196332304856323 ], [ -94.829710884695032, 30.19584430475156 ], [ -94.830384884636999, 30.195189305018904 ], [ -94.831110884942461, 30.194825304964819 ], [ -94.832248884706061, 30.194729304416356 ], [ -94.832550885337, 30.194778304880558 ], [ -94.833711885628603, 30.194969304472785 ], [ -94.834786885249201, 30.19513330434377 ], [ -94.835850885548425, 30.195507304654328 ], [ -94.837206885940361, 30.195683304930601 ], [ -94.838466886403282, 30.195595304124527 ], [ -94.84021888712526, 30.195096304667512 ], [ -94.841256887326651, 30.194574303893276 ], [ -94.843129888071999, 30.193572303980286 ], [ -94.8442738874013, 30.193206303896794 ], [ -94.845130888024585, 30.192933303985509 ], [ -94.846981888223652, 30.192247303567719 ], [ -94.848165889123095, 30.191715303072559 ], [ -94.849417888962748, 30.19111730351613 ], [ -94.850292889699759, 30.190298302564393 ], [ -94.850611888954575, 30.189502302659989 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 309, "Tract": "48291701100", "Area_SqMi": 73.655424955796249, "total_2009": 905, "total_2010": 355, "total_2011": 349, "total_2012": 479, "total_2013": 473, "total_2014": 553, "total_2015": 482, "total_2016": 701, "total_2017": 889, "total_2018": 1265, "total_2019": 1380, "total_2020": 1416, "age1": 429, "age2": 1015, "age3": 360, "earn1": 217, "earn2": 444, "earn3": 1143, "naics_s01": 14, "naics_s02": 724, "naics_s03": 0, "naics_s04": 396, "naics_s05": 0, "naics_s06": 9, "naics_s07": 149, "naics_s08": 334, "naics_s09": 0, "naics_s10": 16, "naics_s11": 3, "naics_s12": 31, "naics_s13": 0, "naics_s14": 39, "naics_s15": 6, "naics_s16": 31, "naics_s17": 0, "naics_s18": 38, "naics_s19": 7, "naics_s20": 7, "race1": 1341, "race2": 404, "race3": 17, "race4": 30, "race5": 1, "race6": 11, "ethnicity1": 1244, "ethnicity2": 560, "edu1": 304, "edu2": 454, "edu3": 409, "edu4": 208, "Shape_Length": 313121.70809715433, "Shape_Area": 2053387185.2479, "total_2021": 1483, "total_2022": 1804 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.908096894128263, 29.978584257548619 ], [ -94.908096894877033, 29.978472257713285 ], [ -94.908087894733953, 29.978291257527111 ], [ -94.908072894138414, 29.977986257057086 ], [ -94.908068894129158, 29.977921257398293 ], [ -94.908063894682712, 29.977852257107667 ], [ -94.908058894812839, 29.977759257019361 ], [ -94.908051894007428, 29.97764525730074 ], [ -94.908047894387082, 29.977577256994504 ], [ -94.907906894104798, 29.975946256997705 ], [ -94.907730894303199, 29.974263256540752 ], [ -94.907317893777702, 29.970293255546292 ], [ -94.906861893427177, 29.965930254665938 ], [ -94.906694893441625, 29.964330254394685 ], [ -94.906654893802667, 29.963942255092899 ], [ -94.906398892989088, 29.961484254507727 ], [ -94.90637389324543, 29.961231253746249 ], [ -94.906371893553256, 29.961208254449843 ], [ -94.906357892983195, 29.96101925394662 ], [ -94.9063538931198, 29.960961254464937 ], [ -94.906351893601808, 29.960929254067356 ], [ -94.906347893679964, 29.960904253814999 ], [ -94.906337893545071, 29.960833254436515 ], [ -94.906333892802635, 29.960809254380667 ], [ -94.906331893278121, 29.960796253704046 ], [ -94.906317893558906, 29.96068725388459 ], [ -94.906313893335195, 29.960651253873934 ], [ -94.906263892659908, 29.960145253888573 ], [ -94.906200893356697, 29.959491254043215 ], [ -94.906176892726435, 29.959213253545339 ], [ -94.906125893235654, 29.958626253380601 ], [ -94.906081892800529, 29.958120253537906 ], [ -94.906028893465972, 29.957518253733088 ], [ -94.905915893366341, 29.956438253031074 ], [ -94.905612892236931, 29.953785252970238 ], [ -94.905540892996029, 29.953153252445528 ], [ -94.905026891860942, 29.948648251661965 ], [ -94.904912892707813, 29.947949251120907 ], [ -94.904126892030575, 29.943415250137896 ], [ -94.904101891567379, 29.943272250666059 ], [ -94.903681891202581, 29.940854249971338 ], [ -94.90341689157394, 29.939319249633098 ], [ -94.902938891031113, 29.936558249487707 ], [ -94.902909891581402, 29.93638424918619 ], [ -94.902822890684845, 29.935862248989967 ], [ -94.902793890769061, 29.935689248829064 ], [ -94.902410891435096, 29.933394248756453 ], [ -94.902218890419761, 29.932244248714007 ], [ -94.901699891128672, 29.929136247380846 ], [ -94.901539890875313, 29.928179247679701 ], [ -94.901347890427346, 29.927027246951994 ], [ -94.900816890300092, 29.923933246645223 ], [ -94.900475890010441, 29.921915246571736 ], [ -94.899943889886003, 29.918768246006582 ], [ -94.899893889617005, 29.918473245700294 ], [ -94.899708889158049, 29.9173792453022 ], [ -94.899632889519964, 29.916931245074331 ], [ -94.8993948888901, 29.915514244535981 ], [ -94.898853888605686, 29.912306244549782 ], [ -94.898594888787486, 29.910765244131603 ], [ -94.898473888457602, 29.910048243939098 ], [ -94.898111888226737, 29.907897243092517 ], [ -94.898090889058736, 29.907770243728539 ], [ -94.897991888340442, 29.907180243281822 ], [ -94.897899888101705, 29.906636243049835 ], [ -94.897625887953737, 29.905005243045551 ], [ -94.897608888863857, 29.90490424300561 ], [ -94.897534888507295, 29.90446224311075 ], [ -94.897413888404103, 29.903744242504356 ], [ -94.897105887669866, 29.901910242334012 ], [ -94.897051888083737, 29.901593242044147 ], [ -94.896931888598559, 29.900877242328743 ], [ -94.896884888491201, 29.900597241997442 ], [ -94.896845887566485, 29.900368241501223 ], [ -94.896589887460365, 29.898844241346584 ], [ -94.896504887655212, 29.898336241841026 ], [ -94.896495888081731, 29.898284241742726 ], [ -94.896469887400031, 29.898130241762036 ], [ -94.896461887804733, 29.898079241794051 ], [ -94.896427887620831, 29.89788224108878 ], [ -94.89636788791158, 29.897520241247648 ], [ -94.896334887570873, 29.897355241044419 ], [ -94.89632288749759, 29.89729324145766 ], [ -94.896317887245615, 29.897266241634888 ], [ -94.896300887567847, 29.897182241669785 ], [ -94.896284887739995, 29.897098241587553 ], [ -94.896273887585025, 29.897036240976888 ], [ -94.896272887710836, 29.897027241571198 ], [ -94.896261887663869, 29.896957240788502 ], [ -94.896243887584745, 29.896850241531407 ], [ -94.896233887408741, 29.896789241050694 ], [ -94.896190888066258, 29.89652524083693 ], [ -94.896180888169582, 29.896466240847349 ], [ -94.896160887584728, 29.896341240910505 ], [ -94.896021887363943, 29.895498240904335 ], [ -94.895968887504395, 29.895176240670754 ], [ -94.895809887584747, 29.89420824088111 ], [ -94.895650887888664, 29.893353240623426 ], [ -94.895628887373505, 29.893232240740137 ], [ -94.895408887504246, 29.891987240027667 ], [ -94.895104886958322, 29.88992623943718 ], [ -94.895066886628214, 29.88955324013579 ], [ -94.894851886490798, 29.887369239118325 ], [ -94.894767887120565, 29.886515239434367 ], [ -94.894736887091412, 29.88619023923642 ], [ -94.894646886304145, 29.88560823938138 ], [ -94.894625886420542, 29.885468238610446 ], [ -94.894616886430114, 29.885412238894279 ], [ -94.89454088723933, 29.885412238617327 ], [ -94.894315886862032, 29.885414238581003 ], [ -94.894240886394812, 29.885415239160363 ], [ -94.894112887170706, 29.885416238971906 ], [ -94.893846886468168, 29.885418239016392 ], [ -94.892579886803048, 29.885430238909414 ], [ -94.890668886284558, 29.885447238823033 ], [ -94.890452885936028, 29.885449238980225 ], [ -94.888668885391141, 29.885465239474296 ], [ -94.88759888466511, 29.885475239302657 ], [ -94.887160885072547, 29.885479239574138 ], [ -94.885938884696444, 29.885491239274369 ], [ -94.884822884635511, 29.885501238991445 ], [ -94.884715883855691, 29.885502239341527 ], [ -94.881763883603412, 29.885529239517552 ], [ -94.881046883261689, 29.885535239585447 ], [ -94.879824883373971, 29.885547239644488 ], [ -94.879398882825583, 29.885551239173374 ], [ -94.878122882134917, 29.885562239419301 ], [ -94.877697882942755, 29.885567239299075 ], [ -94.877533882809388, 29.885568239180603 ], [ -94.877043882689307, 29.885572239773182 ], [ -94.876880882168734, 29.885574239141565 ], [ -94.876545882676609, 29.885563239410342 ], [ -94.875541882090602, 29.885530239685806 ], [ -94.875207881451743, 29.885519239329504 ], [ -94.875101882044646, 29.885520239335612 ], [ -94.874784881245517, 29.885525239343885 ], [ -94.874679881433252, 29.885527239318307 ], [ -94.874481881612056, 29.885529239204534 ], [ -94.873890881856056, 29.885538239870648 ], [ -94.873693881557131, 29.88554123980423 ], [ -94.873478881245774, 29.885544240065226 ], [ -94.873181881716036, 29.885548240102239 ], [ -94.873012881652514, 29.885550239794476 ], [ -94.8729708812441, 29.885551239818621 ], [ -94.870973881039106, 29.885579239743073 ], [ -94.870293880689715, 29.88558923982281 ], [ -94.869168880213493, 29.885608240054072 ], [ -94.866018879493723, 29.885663240197573 ], [ -94.86579587928405, 29.885667240093433 ], [ -94.864671879255823, 29.88568724009119 ], [ -94.863002878211475, 29.885716240420564 ], [ -94.862690878837171, 29.885721239746736 ], [ -94.85895787799754, 29.885786240419879 ], [ -94.856747876579718, 29.885809240354387 ], [ -94.854766876325769, 29.885830240752238 ], [ -94.854698876479461, 29.885831240573225 ], [ -94.852712875544185, 29.885842240390719 ], [ -94.846550873967686, 29.885878240386987 ], [ -94.844496874385868, 29.885890240767424 ], [ -94.842692873497128, 29.88591224039941 ], [ -94.837283872350909, 29.885979240614287 ], [ -94.836977872445985, 29.885983240636651 ], [ -94.83548087115436, 29.885997241052138 ], [ -94.835231871892276, 29.88599924111919 ], [ -94.834487871617313, 29.886006240714746 ], [ -94.834468871103525, 29.886007241415378 ], [ -94.834242871663676, 29.88600924152496 ], [ -94.833871870860818, 29.886012240658538 ], [ -94.832768870967683, 29.886024241005273 ], [ -94.832401870323395, 29.886028241441611 ], [ -94.832192870691429, 29.88602924144103 ], [ -94.831567870672956, 29.886041240836402 ], [ -94.831517870235487, 29.886036241312684 ], [ -94.831469870315118, 29.886037241458141 ], [ -94.831358870939624, 29.886038241161806 ], [ -94.831199870061241, 29.886039241405904 ], [ -94.830726870438767, 29.886044241375842 ], [ -94.83056887079141, 29.886046241566245 ], [ -94.830429870664446, 29.886047241412335 ], [ -94.83016286996164, 29.8860502415951 ], [ -94.829839870408605, 29.886054241328701 ], [ -94.828947869652509, 29.886069241088286 ], [ -94.82854386986179, 29.886077241748115 ], [ -94.828404870076156, 29.886079241586309 ], [ -94.827988869838777, 29.886086240887042 ], [ -94.827850869144001, 29.886089241703019 ], [ -94.82753986951586, 29.886094241047754 ], [ -94.826682868831966, 29.886110241235549 ], [ -94.826608869539299, 29.886111241520307 ], [ -94.826320869673538, 29.886116241264642 ], [ -94.826298868808323, 29.886117241354349 ], [ -94.826273869304728, 29.886117241763376 ], [ -94.826200868719354, 29.886118241298064 ], [ -94.826176869422014, 29.886119241482845 ], [ -94.825501869019405, 29.886131241379527 ], [ -94.824070868760046, 29.886156241294671 ], [ -94.823834868984946, 29.886161241124423 ], [ -94.823476868478636, 29.886175241890466 ], [ -94.822802868775355, 29.88620424145919 ], [ -94.822555867776529, 29.886200241601248 ], [ -94.822423868445156, 29.886199241177124 ], [ -94.821286868013843, 29.886188241332661 ], [ -94.821063867655084, 29.886186241178361 ], [ -94.820908867370591, 29.886188241289066 ], [ -94.82059386726003, 29.886190241752349 ], [ -94.819854867976261, 29.886199241722238 ], [ -94.819653867422474, 29.886201241525701 ], [ -94.819340866991254, 29.886204242053626 ], [ -94.81868186757076, 29.886210241570829 ], [ -94.816704866285534, 29.886229241666239 ], [ -94.816046866101132, 29.886236241633799 ], [ -94.815800866038529, 29.886239241717117 ], [ -94.815664866516357, 29.886241241606395 ], [ -94.814521866512038, 29.886262241747982 ], [ -94.814140866336587, 29.886270241409978 ], [ -94.814096865847588, 29.88627124187877 ], [ -94.813900866133764, 29.886275241609972 ], [ -94.81380586561977, 29.886276242152483 ], [ -94.812802865344779, 29.886296241919478 ], [ -94.812468865460986, 29.886303241955364 ], [ -94.812286865649142, 29.886306241826361 ], [ -94.811741865107265, 29.886316241630865 ], [ -94.811595865043344, 29.886319242333048 ], [ -94.811560865241702, 29.886320242222059 ], [ -94.810737865719503, 29.886336241741709 ], [ -94.810532865486906, 29.886339242302014 ], [ -94.808448864807687, 29.886380242178149 ], [ -94.807448864219168, 29.886371242532299 ], [ -94.806420863839122, 29.886363242451601 ], [ -94.805936864193853, 29.886373242388554 ], [ -94.804488863463661, 29.88640424241127 ], [ -94.804005863128907, 29.88641524255274 ], [ -94.803945863420509, 29.886416242121925 ], [ -94.803890863441637, 29.88641724186947 ], [ -94.803766862933429, 29.886419242114336 ], [ -94.803707863172164, 29.886421242439607 ], [ -94.803633862946782, 29.886422241777424 ], [ -94.80341486291158, 29.886427241887766 ], [ -94.803341863661927, 29.886429241962102 ], [ -94.802775862867875, 29.886441242345807 ], [ -94.802672863060167, 29.886443242311657 ], [ -94.802570863226435, 29.886446242168233 ], [ -94.802452863141141, 29.88644824207082 ], [ -94.800496862772619, 29.886491242258725 ], [ -94.799785862257778, 29.886500242761887 ], [ -94.798896862239062, 29.886512242687751 ], [ -94.798689862160089, 29.886515241997319 ], [ -94.79867386208953, 29.886515242858067 ], [ -94.798583861601472, 29.886516242073448 ], [ -94.797684861457469, 29.886528242181203 ], [ -94.797644861350278, 29.886528242226653 ], [ -94.797331861672617, 29.886533242617283 ], [ -94.797217862042615, 29.886534242898179 ], [ -94.796879861461306, 29.886539242603973 ], [ -94.796766861742213, 29.886541242513907 ], [ -94.796300861695286, 29.886546242185872 ], [ -94.794902861464806, 29.886565242555196 ], [ -94.794437860999636, 29.886572242382616 ], [ -94.794413860880297, 29.88657224291261 ], [ -94.794341860739721, 29.886573242959667 ], [ -94.79431886055572, 29.886574242602109 ], [ -94.793811861155206, 29.886580242263051 ], [ -94.792292860797062, 29.886600242437019 ], [ -94.791786860686628, 29.886607242608981 ], [ -94.791310859944602, 29.886613242862143 ], [ -94.790590860240044, 29.886623243077107 ], [ -94.78988486028851, 29.886628243139725 ], [ -94.789561859466559, 29.886631242317012 ], [ -94.789409859640159, 29.886632243102166 ], [ -94.789386859357222, 29.886633242801004 ], [ -94.788703859344764, 29.886637242361811 ], [ -94.788327859342203, 29.886641242529628 ], [ -94.787809858893482, 29.886646243115969 ], [ -94.786588858575641, 29.886655242532704 ], [ -94.78588485905091, 29.886662242533227 ], [ -94.785501859104272, 29.886664242735613 ], [ -94.785454858559987, 29.886665242495848 ], [ -94.784165858554658, 29.886677242975995 ], [ -94.783736858556168, 29.886681242983244 ], [ -94.783301857842304, 29.88668424320635 ], [ -94.782105858144106, 29.886696242846977 ], [ -94.78199985768839, 29.88669624309534 ], [ -94.781565857444505, 29.886700243256815 ], [ -94.781405858048416, 29.88670124343545 ], [ -94.780928857016789, 29.8867052434843 ], [ -94.780867857779413, 29.886706242841456 ], [ -94.780768857606617, 29.886706242903546 ], [ -94.780598857511606, 29.88670624327473 ], [ -94.78054985730364, 29.886706243139578 ], [ -94.780089857036231, 29.886711243475851 ], [ -94.779920857727362, 29.886713243443985 ], [ -94.77985385682841, 29.886713242841726 ], [ -94.779653856914166, 29.886716243447648 ], [ -94.779587856803076, 29.886717242885652 ], [ -94.779336857115553, 29.886718243133842 ], [ -94.778800856848932, 29.886725242686563 ], [ -94.778592856739337, 29.886726243089264 ], [ -94.778448857302379, 29.886727243079179 ], [ -94.778345856994449, 29.886728243055234 ], [ -94.778271856728153, 29.886727243196745 ], [ -94.778198857261543, 29.886728242865704 ], [ -94.778122856452597, 29.886729242832324 ], [ -94.777591856665708, 29.886733243305766 ], [ -94.775333856129436, 29.886755242827675 ], [ -94.774581856160637, 29.886764243379144 ], [ -94.774048855976474, 29.886768243574274 ], [ -94.772449855471109, 29.886784243455086 ], [ -94.771917855477255, 29.886789243528302 ], [ -94.770944854590411, 29.88679824305876 ], [ -94.763235853347439, 29.886894243445845 ], [ -94.763132853269482, 29.886895243500121 ], [ -94.763027852637208, 29.886896243485996 ], [ -94.759438852108147, 29.886941243848028 ], [ -94.759339851904713, 29.886942243748809 ], [ -94.759223851615147, 29.886943244235745 ], [ -94.759107852192656, 29.886945244039424 ], [ -94.758994852043585, 29.886947243767857 ], [ -94.758881852057598, 29.88694824401686 ], [ -94.758416851733926, 29.886954243469795 ], [ -94.750204849773795, 29.887057244470125 ], [ -94.74482784779542, 29.88712324398513 ], [ -94.739156846739689, 29.887217244371353 ], [ -94.739040846258817, 29.887218244576864 ], [ -94.738924847080696, 29.887221244417816 ], [ -94.738863846296809, 29.887222244518778 ], [ -94.738603846541253, 29.888928245186928 ], [ -94.738885847080297, 29.890559245010767 ], [ -94.739201846695238, 29.891757245505552 ], [ -94.740207846852655, 29.89238224602401 ], [ -94.741521848151024, 29.892803245512564 ], [ -94.742596847834292, 29.892093245070246 ], [ -94.74374484785416, 29.890717245533512 ], [ -94.745048848226929, 29.889739244795663 ], [ -94.746319848963211, 29.889494244524506 ], [ -94.747669849537843, 29.889616244754272 ], [ -94.748678848897114, 29.890539244879072 ], [ -94.748688849333945, 29.891972244868686 ], [ -94.74823584915822, 29.893410245298526 ], [ -94.747513849788135, 29.895049245866055 ], [ -94.746214848923827, 29.896927246771156 ], [ -94.745304849060659, 29.899133246548466 ], [ -94.745241848979049, 29.900609246729076 ], [ -94.7451138488575, 29.903620247574604 ], [ -94.744979848988152, 29.905499248238787 ], [ -94.745253848878889, 29.907829248805246 ], [ -94.745805849400753, 29.90868524854514 ], [ -94.746729849597187, 29.909302248555345 ], [ -94.747946850001654, 29.909537248847393 ], [ -94.749990850988269, 29.908852248726685 ], [ -94.750416850589787, 29.908399248437519 ], [ -94.751421850395189, 29.907209248170339 ], [ -94.752771851539151, 29.906169247845664 ], [ -94.754518851370989, 29.905554248273116 ], [ -94.755354851792035, 29.905386248205389 ], [ -94.755386851670906, 29.905383247627306 ], [ -94.757539852105893, 29.905878248192614 ], [ -94.759507852478663, 29.906665248114432 ], [ -94.760759853188361, 29.907164247774528 ], [ -94.761959853558594, 29.906791247512437 ], [ -94.762607853457212, 29.906249247852013 ], [ -94.763771854373175, 29.905547247981122 ], [ -94.764722854026274, 29.905165247116432 ], [ -94.765966854993749, 29.905138247595382 ], [ -94.767805854729019, 29.906089247579384 ], [ -94.768940855328424, 29.907289247414621 ], [ -94.769314855507986, 29.908176247634231 ], [ -94.769494855839909, 29.908600247586445 ], [ -94.769867855405536, 29.909896247977301 ], [ -94.769703855644082, 29.911672248403157 ], [ -94.769138855243355, 29.912273248913678 ], [ -94.767863855730894, 29.912382248535 ], [ -94.767261855106412, 29.911970249108446 ], [ -94.76644785514317, 29.910648248394129 ], [ -94.765604854857145, 29.909473248164662 ], [ -94.764465854600218, 29.908939247969204 ], [ -94.763762854550691, 29.908866248550073 ], [ -94.762896854265961, 29.908809247879628 ], [ -94.761584853097062, 29.909039248109277 ], [ -94.760675853736643, 29.909555248619103 ], [ -94.759807853580909, 29.909757248670061 ], [ -94.758433852763559, 29.909923248968823 ], [ -94.757389852763808, 29.910220248391571 ], [ -94.756367852818343, 29.91079524853571 ], [ -94.755423851890484, 29.911295248637078 ], [ -94.753353851941384, 29.913151249481373 ], [ -94.752763851119695, 29.913981250035693 ], [ -94.752651851030393, 29.915198249996475 ], [ -94.753180852232816, 29.916218249648885 ], [ -94.754025852186885, 29.916384249925798 ], [ -94.75495185224041, 29.916217249802852 ], [ -94.755884852417097, 29.915604249652823 ], [ -94.757734853272837, 29.914488249830871 ], [ -94.758360852994102, 29.914397249309037 ], [ -94.759269853494459, 29.914004249717291 ], [ -94.760812853593862, 29.913606249517638 ], [ -94.761792854299543, 29.913366249052952 ], [ -94.762804854303283, 29.913416248828767 ], [ -94.763786854541138, 29.913629248983312 ], [ -94.76388985390534, 29.913662249030139 ], [ -94.764536854716638, 29.914276249374058 ], [ -94.76506685510931, 29.915032249139937 ], [ -94.765152855220222, 29.915963249453188 ], [ -94.765128854998281, 29.917437249924298 ], [ -94.765194855227577, 29.917755249860214 ], [ -94.765629855053646, 29.919433250352572 ], [ -94.765780854936551, 29.920011250029074 ], [ -94.766939855265335, 29.92088125072635 ], [ -94.767660855377997, 29.92154225061028 ], [ -94.767757855248547, 29.921631250634235 ], [ -94.769615856776923, 29.922892250540531 ], [ -94.769121856229319, 29.923642250635439 ], [ -94.76772385555789, 29.924698250913398 ], [ -94.766773855264773, 29.925467251490115 ], [ -94.766462855392732, 29.925721251719906 ], [ -94.765654855676246, 29.927521252296817 ], [ -94.765508855121126, 29.927880251889459 ], [ -94.764758855736758, 29.9289612519438 ], [ -94.763369855127621, 29.930325253052853 ], [ -94.762926855198145, 29.93128825328564 ], [ -94.762842855019244, 29.932214253412898 ], [ -94.762596855077248, 29.933477252984428 ], [ -94.76316085555446, 29.934798253195165 ], [ -94.763315855200545, 29.934987253552368 ], [ -94.764168855145769, 29.935681253488823 ], [ -94.765445855428638, 29.936175253550612 ], [ -94.766704856125259, 29.936101253530584 ], [ -94.7674568566446, 29.935613253950837 ], [ -94.767925855930741, 29.934981253142162 ], [ -94.767961856011539, 29.934940253095412 ], [ -94.76830485598542, 29.934515253654837 ], [ -94.768931856224356, 29.933242253445499 ], [ -94.76951285705168, 29.9325062530514 ], [ -94.770423857020759, 29.931758252399693 ], [ -94.771395856913301, 29.931345252692616 ], [ -94.77182485736779, 29.931482252658139 ], [ -94.77198985758406, 29.931553252976578 ], [ -94.77230385705802, 29.931922252510596 ], [ -94.772376857675113, 29.932821252858396 ], [ -94.772199857357791, 29.934251253376807 ], [ -94.771986857856163, 29.935622253186065 ], [ -94.771964857592721, 29.935848253651152 ], [ -94.771895857607589, 29.93716825385842 ], [ -94.77198785744902, 29.937981253808346 ], [ -94.772355857235155, 29.938943253981439 ], [ -94.772605857893907, 29.939686254152029 ], [ -94.773251857708274, 29.940456254324193 ], [ -94.774178858132714, 29.940794254225469 ], [ -94.774184858042616, 29.940977254194781 ], [ -94.776030858351433, 29.937835253859785 ], [ -94.776890858980551, 29.936744253458258 ], [ -94.777695858678825, 29.935831252939558 ], [ -94.778751859054651, 29.935347253374367 ], [ -94.779789859187275, 29.935562253167728 ], [ -94.78098985987944, 29.936332253407478 ], [ -94.782331859791285, 29.937406253216768 ], [ -94.783100860966641, 29.939500253690142 ], [ -94.783804861146152, 29.940711253876568 ], [ -94.785517860876951, 29.940449254377366 ], [ -94.787003861251051, 29.940842253973358 ], [ -94.788077861553091, 29.94225625395536 ], [ -94.788664861845618, 29.943743254075034 ], [ -94.788667862066077, 29.945317255012867 ], [ -94.789222862628151, 29.946230255239811 ], [ -94.790439862524579, 29.946123255200884 ], [ -94.790976862800562, 29.944923254483044 ], [ -94.792032863363659, 29.942579253834943 ], [ -94.793160863624777, 29.941916253905973 ], [ -94.793786863051693, 29.941952253617593 ], [ -94.794753863770254, 29.942597254039633 ], [ -94.794860863530801, 29.94334825397123 ], [ -94.794216864055969, 29.944476254221446 ], [ -94.79344686391866, 29.94528125433089 ], [ -94.792999863615549, 29.945711254643662 ], [ -94.792516863472585, 29.94657025514098 ], [ -94.792999863759292, 29.947250254764814 ], [ -94.794305863577492, 29.947286254835966 ], [ -94.795737864558262, 29.946749254552618 ], [ -94.797760864724296, 29.946552254791651 ], [ -94.799639865053948, 29.947340255099107 ], [ -94.800661865420864, 29.948234254989913 ], [ -94.801541865218155, 29.948899255095412 ], [ -94.802950866165801, 29.949721255475648 ], [ -94.803251865668045, 29.949791254851892 ], [ -94.804124866411129, 29.949995254854041 ], [ -94.804848866700567, 29.949760255231801 ], [ -94.80535786642136, 29.949056254882102 ], [ -94.805487866235524, 29.948707255002049 ], [ -94.805553867029332, 29.948528255333418 ], [ -94.805435866498385, 29.947784254532774 ], [ -94.804789866490793, 29.946453254346931 ], [ -94.804770866495289, 29.944614254037056 ], [ -94.805122866310995, 29.943342254320786 ], [ -94.806707866896403, 29.941757253796727 ], [ -94.807803866557251, 29.940818253332388 ], [ -94.80934986713423, 29.94048525312645 ], [ -94.810249867126984, 29.940642253302933 ], [ -94.810816867279243, 29.941190252880279 ], [ -94.81109086768295, 29.942031253782758 ], [ -94.811247867472943, 29.942775253688396 ], [ -94.811286868399293, 29.943949253965769 ], [ -94.811325867948653, 29.944712253617528 ], [ -94.811462867742563, 29.945416254488755 ], [ -94.811756867851344, 29.946121253774589 ], [ -94.812245868782668, 29.946825254542436 ], [ -94.812616868215187, 29.947627254367564 ], [ -94.813086868421024, 29.948371254700081 ], [ -94.813130868919856, 29.948646254728153 ], [ -94.813204868247254, 29.949115254966951 ], [ -94.813301868997911, 29.949760254498756 ], [ -94.813243869046687, 29.951812255338069 ], [ -94.813145868843023, 29.9528002556766 ], [ -94.812920869161744, 29.954473256259671 ], [ -94.812724869334772, 29.955350256481967 ], [ -94.812506868834959, 29.95563325653011 ], [ -94.812284869156841, 29.955921256427057 ], [ -94.811922868338826, 29.956175256401906 ], [ -94.811639869023395, 29.956185256196445 ], [ -94.811394868911805, 29.956117256689708 ], [ -94.811110867990891, 29.955866256354948 ], [ -94.81100786794083, 29.955692256327271 ], [ -94.810836867839328, 29.955403256351545 ], [ -94.810699868527408, 29.955171256431981 ], [ -94.810240868124737, 29.954431255684373 ], [ -94.810092867960336, 29.954192255623546 ], [ -94.809427867384684, 29.952784256116232 ], [ -94.808449867378357, 29.951981255601414 ], [ -94.80719686736964, 29.952040255817071 ], [ -94.806159866686926, 29.952510255932683 ], [ -94.805670866469555, 29.953273256082561 ], [ -94.805435867337465, 29.95444725639069 ], [ -94.805489867031312, 29.955047256300649 ], [ -94.805533866703897, 29.955523256790975 ], [ -94.806003867139637, 29.95663825670907 ], [ -94.806735866970087, 29.95788625676887 ], [ -94.80680186717187, 29.957999257103531 ], [ -94.807940867785263, 29.959437256863058 ], [ -94.808918868201374, 29.960572256872254 ], [ -94.80960386805836, 29.961843257613438 ], [ -94.809924868646164, 29.962597257857169 ], [ -94.81010886862444, 29.962861257484899 ], [ -94.810108868210747, 29.963031257784149 ], [ -94.810640869145431, 29.964739258558534 ], [ -94.810621868683199, 29.965307258459816 ], [ -94.810073869010736, 29.965894258520539 ], [ -94.809525868872754, 29.965953258668367 ], [ -94.808801867861661, 29.965522258318497 ], [ -94.807959868139505, 29.965072257915317 ], [ -94.807059867672038, 29.964368257934371 ], [ -94.805396867802628, 29.964113258272551 ], [ -94.8046528675209, 29.964368258611898 ], [ -94.804476867651118, 29.964994258477446 ], [ -94.804418867597406, 29.965542258898665 ], [ -94.804591866950261, 29.966133258432702 ], [ -94.80545586712654, 29.966951259131982 ], [ -94.806824868200039, 29.967988258672541 ], [ -94.808667868739676, 29.968823259129287 ], [ -94.808749868221454, 29.968841258665496 ], [ -94.810842868686947, 29.969288259180203 ], [ -94.812983869752259, 29.96969025872988 ], [ -94.813902870013209, 29.970164259275069 ], [ -94.814377870081131, 29.970796259348369 ], [ -94.814449870152174, 29.971371259171349 ], [ -94.81413287013909, 29.971960259556457 ], [ -94.813456869911576, 29.972638259489642 ], [ -94.812966869831385, 29.973285259435986 ], [ -94.812354869714071, 29.97409325969447 ], [ -94.811970869263504, 29.974659260477885 ], [ -94.811761869860717, 29.975251260097231 ], [ -94.811856869043865, 29.97613726037493 ], [ -94.811898869297949, 29.977101260378227 ], [ -94.812100869637618, 29.977992260922399 ], [ -94.812265869965699, 29.97888526106275 ], [ -94.812400870094905, 29.97961526100352 ], [ -94.812553870463802, 29.980850261116665 ], [ -94.812558869556014, 29.981171261658329 ], [ -94.812191869556671, 29.981734261973596 ], [ -94.811499869267152, 29.982238261366419 ], [ -94.810703869247973, 29.982929261472666 ], [ -94.810262869954329, 29.983600262035726 ], [ -94.810158869916449, 29.98386026191876 ], [ -94.809969869460403, 29.984334262565252 ], [ -94.810074869487678, 29.984984262372066 ], [ -94.810514869736934, 29.985676262849772 ], [ -94.811730870019076, 29.986514262904439 ], [ -94.812296870584689, 29.986976262295808 ], [ -94.813617870226821, 29.98768926247941 ], [ -94.81523187127064, 29.988695263105061 ], [ -94.816657871833598, 29.989995262865794 ], [ -94.817055871796157, 29.990980263438544 ], [ -94.816892872059313, 29.991578263013732 ], [ -94.817206871196703, 29.992174263779301 ], [ -94.816521871365183, 29.992951264101581 ], [ -94.815604870967732, 29.993515264196017 ], [ -94.815378871720526, 29.99365526389834 ], [ -94.814268870857887, 29.994490264218953 ], [ -94.813383870500601, 29.995932264410992 ], [ -94.81282587033725, 29.997051264508599 ], [ -94.811701870773717, 29.998380265327672 ], [ -94.811694870228933, 29.99839026515615 ], [ -94.810729870696647, 30.000004265099857 ], [ -94.810652870539855, 30.000210265840824 ], [ -94.810127870660949, 30.001614265871165 ], [ -94.809768870123065, 30.002681265608732 ], [ -94.809746870158207, 30.003235266044879 ], [ -94.810081870377886, 30.004232265920489 ], [ -94.810583870818945, 30.004971266802233 ], [ -94.811525870317908, 30.005488266273485 ], [ -94.812644870608409, 30.005669266014174 ], [ -94.814553871931324, 30.005355266694369 ], [ -94.815914871626433, 30.004971266461894 ], [ -94.816240871613218, 30.004821266550714 ], [ -94.817464872160613, 30.00412326637769 ], [ -94.819183873099504, 30.003831266032744 ], [ -94.819994872956315, 30.004053266201161 ], [ -94.820968872772227, 30.00434126605948 ], [ -94.821752873869755, 30.00494926632707 ], [ -94.822464873753603, 30.005839266115718 ], [ -94.822756873551, 30.00681126638484 ], [ -94.822696873770923, 30.007477266549031 ], [ -94.821796873239137, 30.008201266383988 ], [ -94.820086873565103, 30.008809267131507 ], [ -94.818738872422514, 30.00937126694928 ], [ -94.818411872552858, 30.010464266955207 ], [ -94.818857872590769, 30.011816267787502 ], [ -94.819787873451219, 30.013260267497333 ], [ -94.82023787353846, 30.014752268294497 ], [ -94.821163873509107, 30.016056268629551 ], [ -94.822677874030234, 30.016889268079314 ], [ -94.823899874157505, 30.01738026853495 ], [ -94.82432487495781, 30.018067268303405 ], [ -94.824268874237035, 30.018839268547918 ], [ -94.823447874939404, 30.019562268485302 ], [ -94.82222687418593, 30.020365269460594 ], [ -94.82218787395179, 30.021625269155194 ], [ -94.822939874561214, 30.022514269795543 ], [ -94.82438587530288, 30.023734269517199 ], [ -94.825744874962098, 30.024745269576606 ], [ -94.826925875997063, 30.026462270364789 ], [ -94.826986875454097, 30.028315270156071 ], [ -94.826514875907321, 30.029278270371659 ], [ -94.826386875722307, 30.029540271155049 ], [ -94.826342875397842, 30.029631270495845 ], [ -94.825267875752317, 30.031467271395535 ], [ -94.825250875964883, 30.031497271604739 ], [ -94.824800875915912, 30.031983271727757 ], [ -94.82407287487321, 30.032771272031454 ], [ -94.824043875453327, 30.032851271331303 ], [ -94.823960875601472, 30.033094271365375 ], [ -94.823932874919791, 30.033176271432872 ], [ -94.823799874865514, 30.033560271438873 ], [ -94.823589874852459, 30.034170272334979 ], [ -94.823556875587798, 30.034744272180095 ], [ -94.823533875685698, 30.035151272188575 ], [ -94.823494874902181, 30.035841272559868 ], [ -94.823495875636411, 30.035906272025969 ], [ -94.823516875039616, 30.037032272121358 ], [ -94.823521875730933, 30.037329272940465 ], [ -94.823788875837778, 30.03813127270482 ], [ -94.824028875857152, 30.038849273298172 ], [ -94.824180875247635, 30.039307273157075 ], [ -94.824316875844559, 30.039714273441568 ], [ -94.82474987562891, 30.040640272755198 ], [ -94.82495587563038, 30.041079273264849 ], [ -94.825076875935693, 30.041337273727322 ], [ -94.825228876515325, 30.04166127312914 ], [ -94.825529875661644, 30.042056273403784 ], [ -94.825703876366035, 30.04228327362139 ], [ -94.826382876158775, 30.043170273506334 ], [ -94.828446877082072, 30.044230273396316 ], [ -94.829898876850649, 30.044777273905009 ], [ -94.830211877040995, 30.044895273478371 ], [ -94.831526877563093, 30.046075274132416 ], [ -94.832018877720003, 30.047883274098481 ], [ -94.831506878241171, 30.049524274932836 ], [ -94.829650877791551, 30.050711275447785 ], [ -94.827540876685148, 30.051720274942422 ], [ -94.824860876745262, 30.05342727580792 ], [ -94.823512875879985, 30.05420427611698 ], [ -94.822217875803119, 30.054952276327139 ], [ -94.819113875468133, 30.056375276720896 ], [ -94.819067874897158, 30.05644027683347 ], [ -94.819001875229134, 30.05653427661332 ], [ -94.818803875072476, 30.056815276413275 ], [ -94.818738874619811, 30.056910276677943 ], [ -94.818606874561567, 30.057097276552916 ], [ -94.818213875015871, 30.057659276923197 ], [ -94.818137874672729, 30.057768277043287 ], [ -94.818113874443057, 30.057861276884832 ], [ -94.818101875010171, 30.057904277425976 ], [ -94.818068874790612, 30.058033276648935 ], [ -94.818057875062834, 30.058077276913917 ], [ -94.818006874469944, 30.058272277200153 ], [ -94.817926875067855, 30.058589276879097 ], [ -94.818086875072268, 30.058817276721488 ], [ -94.818202874872199, 30.058983276831707 ], [ -94.818218874899515, 30.059007277044643 ], [ -94.818458875551087, 30.059349277008231 ], [ -94.819095875364795, 30.05955827729359 ], [ -94.820459875306668, 30.059606276784503 ], [ -94.821577875619781, 30.059907276959343 ], [ -94.822075875796898, 30.06085227717649 ], [ -94.821858875612378, 30.061779277205453 ], [ -94.821754875814406, 30.062225277354209 ], [ -94.821477875856388, 30.063865278236776 ], [ -94.821832876418867, 30.065396278151727 ], [ -94.822541876716087, 30.066388278545833 ], [ -94.824147876653612, 30.06710027891749 ], [ -94.825178877036777, 30.067438278904401 ], [ -94.825713876999956, 30.067679279071278 ], [ -94.826502877597036, 30.068449278772231 ], [ -94.827507878084347, 30.069855279523601 ], [ -94.82696787823879, 30.071567279125404 ], [ -94.826286877955397, 30.072250279514229 ], [ -94.824771877273818, 30.071988279371968 ], [ -94.82349287703525, 30.071352279713508 ], [ -94.822753876529219, 30.070986279350777 ], [ -94.821198876626326, 30.070759279451547 ], [ -94.820934876592986, 30.071934279639699 ], [ -94.821686876556186, 30.072882279966141 ], [ -94.82195187610057, 30.073659279679006 ], [ -94.822040876979472, 30.073920280398468 ], [ -94.822204876854499, 30.074401280144876 ], [ -94.822209876311248, 30.074722280086529 ], [ -94.822215876259861, 30.074999280297725 ], [ -94.822221876760864, 30.07536028075133 ], [ -94.821340876661878, 30.076295280646342 ], [ -94.820941876939301, 30.07650328059373 ], [ -94.819602876193429, 30.077206280619009 ], [ -94.818521875648727, 30.078357281481637 ], [ -94.818256875861309, 30.079497281412134 ], [ -94.818686875867186, 30.080698281589171 ], [ -94.819087876058788, 30.081329282098004 ], [ -94.819737876515632, 30.082352281625468 ], [ -94.820199876934552, 30.083105281747233 ], [ -94.820222876801935, 30.083143281636854 ], [ -94.820293877099061, 30.083258282305792 ], [ -94.820317877050684, 30.083297281881404 ], [ -94.820942877117275, 30.084060282201385 ], [ -94.822575877091325, 30.08889428346048 ], [ -94.822747877811679, 30.090253283014793 ], [ -94.822348877105284, 30.091369283499962 ], [ -94.821831877013153, 30.091967283598716 ], [ -94.820993877093599, 30.092294283563252 ], [ -94.819960877327446, 30.092078284073278 ], [ -94.819008876202261, 30.091380283538616 ], [ -94.817173876048102, 30.089451283396382 ], [ -94.816204875388308, 30.089003283081471 ], [ -94.814734875412384, 30.089058283416417 ], [ -94.813058875551164, 30.089643283769558 ], [ -94.811702874368564, 30.090695284143987 ], [ -94.810776874759313, 30.091973283872825 ], [ -94.81045487489105, 30.093206284694798 ], [ -94.810450874496638, 30.0935052842019 ], [ -94.81044287465609, 30.094257284718186 ], [ -94.810884874769187, 30.094803284931391 ], [ -94.81157787491982, 30.095101284573936 ], [ -94.812799874898687, 30.095115284502093 ], [ -94.814089875484086, 30.094408284989637 ], [ -94.816606875938689, 30.093430284127702 ], [ -94.817825875967173, 30.09350028422422 ], [ -94.818983876881077, 30.093838284212755 ], [ -94.819810876741712, 30.094462284364482 ], [ -94.820472877115265, 30.09533228449164 ], [ -94.820512877575979, 30.095384284604297 ], [ -94.821133877817843, 30.096540284591853 ], [ -94.820879877563101, 30.097627285109397 ], [ -94.821057877419307, 30.097605284696748 ], [ -94.821591877451581, 30.097539284781121 ], [ -94.821769877962424, 30.09751728526075 ], [ -94.822349877944987, 30.097516285071677 ], [ -94.824091877975889, 30.097516285278793 ], [ -94.824672878756402, 30.097516284692237 ], [ -94.824663878412991, 30.097473284615962 ], [ -94.824663878741106, 30.097423284653473 ], [ -94.824669878609683, 30.097341285041264 ], [ -94.824701878308531, 30.097258284782811 ], [ -94.824719878389502, 30.097110284595907 ], [ -94.824795878003869, 30.096934284630077 ], [ -94.824904878029088, 30.096557284760419 ], [ -94.824922878811819, 30.096494284249818 ], [ -94.825035878702181, 30.096103284716808 ], [ -94.825054878007151, 30.095944284401437 ], [ -94.825118878264632, 30.095740284256244 ], [ -94.825187878837937, 30.095586284087016 ], [ -94.825263878506902, 30.095460284720748 ], [ -94.825412878346157, 30.095349284819921 ], [ -94.825440878322453, 30.095328284411238 ], [ -94.825636878229403, 30.095207284753599 ], [ -94.825756879019124, 30.095113284710393 ], [ -94.825845878926586, 30.094926283884224 ], [ -94.825889878697964, 30.094767284241406 ], [ -94.825933878775956, 30.094508284570772 ], [ -94.825921879088128, 30.094382284136785 ], [ -94.825889878787208, 30.094217284126461 ], [ -94.825800878220377, 30.093969284202565 ], [ -94.825781878342411, 30.093887283653295 ], [ -94.825775878075675, 30.093788284354801 ], [ -94.825781878358612, 30.093716283909284 ], [ -94.825826878560164, 30.093573284173939 ], [ -94.825901878852633, 30.09339228395849 ], [ -94.825939878936779, 30.093238283994669 ], [ -94.826015878870891, 30.093040284274476 ], [ -94.826116879025747, 30.092842283477559 ], [ -94.826426879002696, 30.092408283396459 ], [ -94.826453878796755, 30.092366283653465 ], [ -94.82657887910996, 30.092177283758726 ], [ -94.826628878927309, 30.0920782834236 ], [ -94.826666878725618, 30.091918283825525 ], [ -94.826679878891213, 30.091808283602901 ], [ -94.82666687837974, 30.091418283285524 ], [ -94.826698878424239, 30.09133028328921 ], [ -94.826869878596199, 30.091126283643092 ], [ -94.827058879167524, 30.090950283042758 ], [ -94.827172879202237, 30.090879283352997 ], [ -94.827311878354521, 30.090824283692037 ], [ -94.827406878587979, 30.090769283117943 ], [ -94.827482878540636, 30.090670283352086 ], [ -94.827520878893893, 30.090565283659753 ], [ -94.827520879065034, 30.090472283134758 ], [ -94.827387878748411, 30.090125283203271 ], [ -94.827362878443694, 30.090026283595886 ], [ -94.827355878333165, 30.089938283412977 ], [ -94.827380879005062, 30.089768283369754 ], [ -94.827463879207002, 30.089537283081686 ], [ -94.82746387848033, 30.089416283202151 ], [ -94.827431878791216, 30.089339282868028 ], [ -94.827330879129306, 30.089157282638869 ], [ -94.82724887835009, 30.089058282970623 ], [ -94.827197878304062, 30.088970282749706 ], [ -94.827184879145193, 30.088866282658991 ], [ -94.827191879136848, 30.088585282890168 ], [ -94.827083879121588, 30.088250282609152 ], [ -94.82706487888413, 30.087992282798897 ], [ -94.827247878960662, 30.087926282942007 ], [ -94.827393878358535, 30.087931282416179 ], [ -94.827513878871983, 30.087986282791899 ], [ -94.827665879017019, 30.088090283181987 ], [ -94.827861879082988, 30.08812928278498 ], [ -94.828373878532076, 30.088206282974838 ], [ -94.828708879148465, 30.088184282955947 ], [ -94.828879879200926, 30.088134282763143 ], [ -94.829018879390006, 30.088057282466917 ], [ -94.829107879308609, 30.08795828254237 ], [ -94.829201878953398, 30.087766282742223 ], [ -94.829359878802435, 30.087524282464443 ], [ -94.829631878957741, 30.087331282704181 ], [ -94.829865879065679, 30.087056282343621 ], [ -94.83006187894749, 30.086792282149897 ], [ -94.830377879639414, 30.086418282564239 ], [ -94.830579879067514, 30.086226282666715 ], [ -94.830915879310282, 30.086066282496308 ], [ -94.831231879965983, 30.086017282030635 ], [ -94.831267879190975, 30.086012282581251 ], [ -94.831477879468721, 30.085989282624467 ], [ -94.831743879420259, 30.085879282612183 ], [ -94.831888880182234, 30.085786282668671 ], [ -94.832065880148178, 30.085654282070191 ], [ -94.83214187992624, 30.085555282440282 ], [ -94.832223879713851, 30.085340282165433 ], [ -94.832287879284834, 30.085021282442877 ], [ -94.832287879465937, 30.084719282368901 ], [ -94.832236879878181, 30.084444281674752 ], [ -94.832229880164263, 30.084279281576858 ], [ -94.83217987982276, 30.084070281713299 ], [ -94.832135879943124, 30.083987281941951 ], [ -94.831976879507181, 30.0838282821516 ], [ -94.831907880124717, 30.083734282147788 ], [ -94.831882879540302, 30.083586281487378 ], [ -94.83192687962574, 30.083320281576537 ], [ -94.831932879670632, 30.083283281440742 ], [ -94.832008879343434, 30.083030281537962 ], [ -94.83201487991056, 30.083014282029104 ], [ -94.832039879742823, 30.08280528121001 ], [ -94.832027880034389, 30.082667281240074 ], [ -94.831976880056899, 30.082557281826158 ], [ -94.831926879902269, 30.082475281117009 ], [ -94.831869879172999, 30.082442281712922 ], [ -94.831774879890958, 30.082447281566427 ], [ -94.831660879687988, 30.082475281733522 ], [ -94.831623879552581, 30.082491281321868 ], [ -94.831350879253819, 30.082618281243594 ], [ -94.832033879729778, 30.081609281008788 ], [ -94.832178879200498, 30.081397281109922 ], [ -94.832267880064578, 30.081315281678243 ], [ -94.832418879455432, 30.081210281537096 ], [ -94.83266587961603, 30.081089280796064 ], [ -94.833386879720564, 30.080809281139313 ], [ -94.833911880291353, 30.080550280781598 ], [ -94.834151880315844, 30.080401281359183 ], [ -94.834454880566696, 30.080198281276562 ], [ -94.834751880280308, 30.080016281172774 ], [ -94.83488488065079, 30.079950280924372 ], [ -94.834979879759274, 30.079923280824829 ], [ -94.835061880372464, 30.079879280690594 ], [ -94.835181880092208, 30.079849280873045 ], [ -94.835529880160522, 30.079763280855254 ], [ -94.835757880731265, 30.079769281140258 ], [ -94.836035880365458, 30.079835281215328 ], [ -94.836136880209878, 30.079813281249223 ], [ -94.83625688101381, 30.079747280493635 ], [ -94.836323881088887, 30.079664281017223 ], [ -94.83634588093409, 30.079637280917698 ], [ -94.8365538806286, 30.079328281167331 ], [ -94.836699880315734, 30.079054280654873 ], [ -94.836755880553397, 30.078685280740096 ], [ -94.836787881107483, 30.078553280291626 ], [ -94.836838880286805, 30.07846528044664 ], [ -94.83693288051127, 30.078399280834095 ], [ -94.837059880418394, 30.078350280237217 ], [ -94.837295881092288, 30.078444280823341 ], [ -94.83737588051261, 30.078476280498005 ], [ -94.837666880567014, 30.078536280610397 ], [ -94.837868881255716, 30.078564280115899 ], [ -94.838374881580322, 30.07852028011558 ], [ -94.838608881452558, 30.078476280731788 ], [ -94.838899881220058, 30.07844328021929 ], [ -94.839127880771699, 30.07837728024214 ], [ -94.839329881073382, 30.07825628010788 ], [ -94.83984788168317, 30.077793280287601 ], [ -94.840271881189537, 30.077452279965673 ], [ -94.840637881362682, 30.077364280258578 ], [ -94.840916881214042, 30.077337279982309 ], [ -94.841143881964669, 30.077260280574322 ], [ -94.841718882365569, 30.076886279635406 ], [ -94.842233882417744, 30.076609280428862 ], [ -94.842641881896952, 30.076391280160752 ], [ -94.843223882042793, 30.07609327995516 ], [ -94.843672882494232, 30.075851279633273 ], [ -94.843798882386466, 30.075763280120178 ], [ -94.843838881845045, 30.075726280051594 ], [ -94.843988882785027, 30.07558727928226 ], [ -94.84413388262638, 30.075406279593096 ], [ -94.844298882503494, 30.075125279562172 ], [ -94.844399882687114, 30.0748452795806 ], [ -94.844456882919914, 30.074614279459354 ], [ -94.844468882097075, 30.074482279105283 ], [ -94.844455882101528, 30.074229279538763 ], [ -94.844354882848876, 30.073162279644784 ], [ -94.844341882837199, 30.07268927894134 ], [ -94.844373882714834, 30.072497279082491 ], [ -94.844423881977249, 30.072293279028493 ], [ -94.844493882163263, 30.072123278604838 ], [ -94.844575882416265, 30.071952278834331 ], [ -94.844707881996172, 30.07172827860003 ], [ -94.844758882713109, 30.071644278502408 ], [ -94.84482788238779, 30.071578278779135 ], [ -94.844872882318128, 30.071485279070899 ], [ -94.845055882133252, 30.071171278913976 ], [ -94.845169882866259, 30.070907278833392 ], [ -94.8452578825204, 30.070632278796666 ], [ -94.845573883028706, 30.070330278896581 ], [ -94.845630882639895, 30.070253278446788 ], [ -94.845813883005292, 30.069950278590529 ], [ -94.845883882425355, 30.069851278199057 ], [ -94.845946882251766, 30.069703278109579 ], [ -94.84599088209535, 30.069560278526314 ], [ -94.846021882734604, 30.069010278686864 ], [ -94.846059882450575, 30.068922278060722 ], [ -94.846154882542379, 30.06879027803236 ], [ -94.846268882417959, 30.068685278421576 ], [ -94.846312882785767, 30.068663277938235 ], [ -94.846514883160054, 30.068619278498723 ], [ -94.846869882673516, 30.068624278245952 ], [ -94.846932882623264, 30.068619277732481 ], [ -94.847077883050503, 30.068553278276692 ], [ -94.847216882889668, 30.068415278201304 ], [ -94.847311882974665, 30.06836027851848 ], [ -94.847532882552514, 30.068283278395999 ], [ -94.847589883290652, 30.068250277943527 ], [ -94.84765988252623, 30.068195278321728 ], [ -94.847709883179078, 30.068124277741095 ], [ -94.847728883045207, 30.068063278280654 ], [ -94.84763388305764, 30.067766278370065 ], [ -94.847627882919767, 30.067684277704963 ], [ -94.847646882594162, 30.067612277820391 ], [ -94.84769088334474, 30.067535277516626 ], [ -94.847791883243573, 30.067442278252653 ], [ -94.847880882518879, 30.067381277537617 ], [ -94.84843088332677, 30.06707927749089 ], [ -94.848543882793336, 30.066991277439751 ], [ -94.848625883536499, 30.066914277996283 ], [ -94.848657883491256, 30.066853277343196 ], [ -94.848670882745282, 30.066754277886819 ], [ -94.848657882943769, 30.066633277933917 ], [ -94.848568882638375, 30.066391277334869 ], [ -94.848549883169369, 30.066353277648162 ], [ -94.848480882979587, 30.06627027790984 ], [ -94.848328883474551, 30.066149277456319 ], [ -94.848202882759736, 30.066083277777597 ], [ -94.847961883014889, 30.065979277871161 ], [ -94.847721882875121, 30.065919277609456 ], [ -94.847569883225262, 30.065891277967111 ], [ -94.846564882701983, 30.06564427762746 ], [ -94.845837882089199, 30.065347277712281 ], [ -94.845533882292898, 30.065188277251195 ], [ -94.845451882525197, 30.06511627792921 ], [ -94.845407881751385, 30.065056277626336 ], [ -94.845280881828373, 30.064825277315421 ], [ -94.845185881968689, 30.064605277192513 ], [ -94.845135881740319, 30.0644572773395 ], [ -94.845097882401816, 30.064275277726228 ], [ -94.845065881856456, 30.063945277106214 ], [ -94.84506588161787, 30.063747277214876 ], [ -94.84508488209417, 30.063665277336717 ], [ -94.845128882344014, 30.063555277300143 ], [ -94.845210882561517, 30.063401277609874 ], [ -94.845229882315351, 30.063307277032582 ], [ -94.845230882153388, 30.063287276766381 ], [ -94.845261881753757, 30.062988277486095 ], [ -94.845292881874826, 30.062906276611621 ], [ -94.845324882419646, 30.062867276649222 ], [ -94.845419882202279, 30.062840276822175 ], [ -94.845488882394932, 30.062840276734129 ], [ -94.845551882070041, 30.062851276622993 ], [ -94.845848882325583, 30.062999277245027 ], [ -94.846095882799318, 30.063048276825619 ], [ -94.84622888206907, 30.063021277403283 ], [ -94.846304882146782, 30.062988277062807 ], [ -94.846386882468067, 30.062911277098369 ], [ -94.846487882220615, 30.062751276784496 ], [ -94.846563882519632, 30.062658276674778 ], [ -94.846632882195948, 30.062603277374972 ], [ -94.846695882587085, 30.062570276778583 ], [ -94.847012882287402, 30.062465276959617 ], [ -94.846942882659491, 30.062201276882579 ], [ -94.846898882712807, 30.062106277074562 ], [ -94.846878882018842, 30.062060276966374 ], [ -94.846855882647546, 30.06202427650388 ], [ -94.846714882953876, 30.061795276538611 ], [ -94.846664882918361, 30.061745276447915 ], [ -94.846215882638035, 30.061415276953003 ], [ -94.846177882568682, 30.061360276417901 ], [ -94.846126882303054, 30.061250277109032 ], [ -94.846120881880296, 30.061173276242052 ], [ -94.846167882604831, 30.060932276681957 ], [ -94.846183881866025, 30.060849276616725 ], [ -94.84618388190566, 30.060755276269802 ], [ -94.846145882713103, 30.060414276543945 ], [ -94.84616488175358, 30.060238276046071 ], [ -94.846201882706268, 30.060106276802966 ], [ -94.846271882012545, 30.059930276475406 ], [ -94.846410882584749, 30.059628276804805 ], [ -94.846795881921508, 30.058929276533721 ], [ -94.846799881980644, 30.058919276228377 ], [ -94.847149882897583, 30.058247275804494 ], [ -94.847193882434823, 30.058027275790874 ], [ -94.847180882004665, 30.057697276332224 ], [ -94.847187882852694, 30.057560275748916 ], [ -94.847225881961648, 30.057246275772322 ], [ -94.847471882627488, 30.05635027572319 ], [ -94.84756588241089, 30.056163275550855 ], [ -94.847667882003719, 30.056015275992745 ], [ -94.847856882176373, 30.055783275095244 ], [ -94.847900882706995, 30.055712275779385 ], [ -94.847938882327242, 30.055542275483901 ], [ -94.847913882323056, 30.055503275836852 ], [ -94.847831882722559, 30.055393275077282 ], [ -94.847767881999857, 30.055327275304592 ], [ -94.84769888283266, 30.055278275322522 ], [ -94.847635882223599, 30.055239274959714 ], [ -94.847584882668841, 30.055223275531343 ], [ -94.847502881976524, 30.055212275148303 ], [ -94.84724988244956, 30.055228275232281 ], [ -94.847154881766357, 30.05525027513071 ], [ -94.847059882305899, 30.055294275044876 ], [ -94.846693882270174, 30.05549827555814 ], [ -94.84654788212535, 30.055553275479244 ], [ -94.84638988167967, 30.055597275778009 ], [ -94.846250882378726, 30.055614275366349 ], [ -94.845644881432079, 30.055603275402277 ], [ -94.845346882258099, 30.055619275503851 ], [ -94.845298881964837, 30.055627275420015 ], [ -94.844746881846234, 30.055729275416972 ], [ -94.844613881295757, 30.055740275217047 ], [ -94.844512881817849, 30.055740275490862 ], [ -94.843962881639513, 30.055686275536029 ], [ -94.843867881174177, 30.055647275808962 ], [ -94.843798881853985, 30.055592275235 ], [ -94.84374788166599, 30.055537275232929 ], [ -94.843696881033281, 30.055504275259636 ], [ -94.84352688085373, 30.055438275391516 ], [ -94.843462880883038, 30.055400275727518 ], [ -94.843290881163568, 30.055242275781918 ], [ -94.845518881885027, 30.054907275307801 ], [ -94.848246881978099, 30.05449827565258 ], [ -94.852205883009475, 30.05391327512417 ], [ -94.854281883956304, 30.053607274849007 ], [ -94.854435884241909, 30.053585274748919 ], [ -94.855707884199205, 30.053399275063057 ], [ -94.856039883981694, 30.053351275000797 ], [ -94.856264884505393, 30.053319274754678 ], [ -94.857617885346386, 30.053111274242525 ], [ -94.858497884801622, 30.052983274202376 ], [ -94.860849885335554, 30.052641274129932 ], [ -94.862353885731949, 30.05242327429692 ], [ -94.862454885645136, 30.052408273930201 ], [ -94.864942887078357, 30.052037274470809 ], [ -94.865502887293914, 30.051953274541003 ], [ -94.866470886790665, 30.051813273975416 ], [ -94.866488886667284, 30.051810273685181 ], [ -94.868628887464823, 30.051501273742403 ], [ -94.87096088805427, 30.05114627376264 ], [ -94.871825888715705, 30.051014273695962 ], [ -94.873348889001846, 30.050776273281564 ], [ -94.873887888663035, 30.050700273436156 ], [ -94.87540688910299, 30.050469273893121 ], [ -94.87838489030149, 30.050045273323924 ], [ -94.878591890458011, 30.050014273669955 ], [ -94.880050890562629, 30.049799272727387 ], [ -94.880761890386324, 30.049696273384367 ], [ -94.881100891093496, 30.049634273172749 ], [ -94.881323890575587, 30.049577273453458 ], [ -94.881534890553198, 30.049521273202213 ], [ -94.881726891244938, 30.049462272902034 ], [ -94.882136891505411, 30.049316272782026 ], [ -94.882231890879041, 30.04927727308332 ], [ -94.882393891286938, 30.04928927295617 ], [ -94.882563891583587, 30.049201273119074 ], [ -94.882825891083669, 30.049053272554779 ], [ -94.883130891501025, 30.048883272920445 ], [ -94.883559891482093, 30.048599272603436 ], [ -94.883591891040197, 30.048576272478716 ], [ -94.883840891169427, 30.048407272922212 ], [ -94.884182891796783, 30.048141272256533 ], [ -94.884421891317587, 30.047961272789575 ], [ -94.884476891366376, 30.047920272837054 ], [ -94.884489891680914, 30.04790727303434 ], [ -94.8851658913335, 30.047360272419802 ], [ -94.885205892123565, 30.0473272721261 ], [ -94.886239892048479, 30.046516272324325 ], [ -94.887057891991816, 30.04589227227472 ], [ -94.887250892398129, 30.045741272135999 ], [ -94.887711892015332, 30.045382272078466 ], [ -94.88783889257941, 30.045298272168253 ], [ -94.888044892329617, 30.045165271518208 ], [ -94.888438892484473, 30.044934271629149 ], [ -94.889622892829323, 30.044242271553482 ], [ -94.890017893175994, 30.044012271792756 ], [ -94.890251892478474, 30.043878271939466 ], [ -94.890955893430444, 30.043478271178063 ], [ -94.891008892713401, 30.043448271923275 ], [ -94.891187892588135, 30.043340271878179 ], [ -94.891253893187994, 30.043289271447673 ], [ -94.891373892795585, 30.043220271139639 ], [ -94.891880893584656, 30.042935271187606 ], [ -94.891950893573537, 30.042887271431365 ], [ -94.892134893241234, 30.042762271610947 ], [ -94.892345893219741, 30.042587271004354 ], [ -94.892436893721623, 30.042522271413091 ], [ -94.892453893293521, 30.042511271653648 ], [ -94.892602893033441, 30.042365271334418 ], [ -94.892701893148967, 30.042254271383545 ], [ -94.892796893382766, 30.042132271490132 ], [ -94.892933893609907, 30.041935271245503 ], [ -94.893036893478168, 30.041760271395855 ], [ -94.893110893669686, 30.041588271245008 ], [ -94.893144893098452, 30.041466270693462 ], [ -94.893193893134907, 30.041330270875189 ], [ -94.893247893202513, 30.041232270715316 ], [ -94.893255893832929, 30.041162271168492 ], [ -94.893281893099982, 30.040953270572921 ], [ -94.893290893963155, 30.040884271095695 ], [ -94.893295893080307, 30.040839270521644 ], [ -94.893309893520126, 30.040707270515842 ], [ -94.893315893896172, 30.040663270950194 ], [ -94.893319893311144, 30.040624270798546 ], [ -94.89334789391819, 30.040347270874879 ], [ -94.893442893644263, 30.0393992705385 ], [ -94.893475893055211, 30.039083270163097 ], [ -94.893565893335179, 30.038177270285164 ], [ -94.893763892879718, 30.036209270313591 ], [ -94.893803893830693, 30.035809269923949 ], [ -94.893832893704612, 30.035462269760014 ], [ -94.893877893702083, 30.034951269791623 ], [ -94.893895893467231, 30.034546269246636 ], [ -94.893896893597997, 30.034513269719991 ], [ -94.89389789388072, 30.034448269192168 ], [ -94.893902893756803, 30.034252269815902 ], [ -94.893904893215208, 30.034188269326862 ], [ -94.893904893708083, 30.034160269136287 ], [ -94.893907893350587, 30.034075269719377 ], [ -94.893908893023337, 30.034048269572725 ], [ -94.893909893482316, 30.033919269725054 ], [ -94.893912893377973, 30.033748269278398 ], [ -94.893913892894204, 30.03363126909165 ], [ -94.893914893317557, 30.033535269538202 ], [ -94.893916892938407, 30.033407269711628 ], [ -94.893916893546617, 30.033303269580578 ], [ -94.893918893712183, 30.032993269254675 ], [ -94.893919893206984, 30.032920268862995 ], [ -94.893919893487791, 30.032890269153402 ], [ -94.89391989316249, 30.032776268766863 ], [ -94.893920893169138, 30.032709269593028 ], [ -94.893921893209281, 30.032432268752245 ], [ -94.893922893632933, 30.032325268746881 ], [ -94.893922893213357, 30.032111268945481 ], [ -94.893922893198791, 30.031471268980113 ], [ -94.893923892983025, 30.031291268629076 ], [ -94.893923892968843, 30.031258269189848 ], [ -94.893923893466933, 30.030888268522268 ], [ -94.893924893162819, 30.029781268448758 ], [ -94.893925893217229, 30.029461268537439 ], [ -94.893925892756229, 30.029412268530699 ], [ -94.893925892655616, 30.029378268863759 ], [ -94.893925893548456, 30.029277268294148 ], [ -94.893925893533662, 30.029244268830801 ], [ -94.893925892910019, 30.029105268635011 ], [ -94.893926893225625, 30.028501267932342 ], [ -94.893926893298357, 30.028447268715919 ], [ -94.893927892647582, 30.027888267950875 ], [ -94.893928892495225, 30.026057268222953 ], [ -94.893929893327098, 30.025261267425105 ], [ -94.89392889259598, 30.024747267334412 ], [ -94.89392889329703, 30.024380267315131 ], [ -94.893928892439035, 30.024294267769108 ], [ -94.893927893255992, 30.023620267310445 ], [ -94.893927893358239, 30.02342326762075 ], [ -94.893926892523737, 30.023205267327029 ], [ -94.893925892949866, 30.022692267093369 ], [ -94.893925893137293, 30.022540267538332 ], [ -94.893925892695663, 30.022480266959462 ], [ -94.89392589232051, 30.022432267036425 ], [ -94.893925892527278, 30.02226926701708 ], [ -94.893925893279715, 30.021506266615095 ], [ -94.893925892990353, 30.02145926688317 ], [ -94.893925892467124, 30.021002266848519 ], [ -94.893926893165343, 30.020580266627302 ], [ -94.893927892412108, 30.020484266587747 ], [ -94.893932892289428, 30.020197266467086 ], [ -94.893934892642946, 30.020102266527473 ], [ -94.893940892851461, 30.019775266136655 ], [ -94.89393989312471, 30.018547266703099 ], [ -94.893945892176376, 30.018275266624055 ], [ -94.894003892258212, 30.017529265815593 ], [ -94.894031892176628, 30.017256266288808 ], [ -94.894091892171971, 30.016826266290703 ], [ -94.894114892566023, 30.016646265835515 ], [ -94.894128892677159, 30.016535265447203 ], [ -94.894168892314283, 30.016325265596652 ], [ -94.89420789266137, 30.016070265574132 ], [ -94.894276892138166, 30.015782265651705 ], [ -94.894377892956186, 30.015372265186194 ], [ -94.894541893145444, 30.014765265191318 ], [ -94.894646892775256, 30.014459265625284 ], [ -94.894948893014302, 30.013630264950024 ], [ -94.89517089286548, 30.01310326483047 ], [ -94.895714892370208, 30.011838264412003 ], [ -94.896640893165483, 30.009649264471953 ], [ -94.899119892878161, 30.003694263043226 ], [ -94.900620893773549, 30.000092262703792 ], [ -94.900798893556782, 29.999687262314058 ], [ -94.901401893539372, 29.998311262261602 ], [ -94.901662893695871, 29.997717262063262 ], [ -94.901706893310759, 29.997617261965683 ], [ -94.90180589350264, 29.997385262046524 ], [ -94.902715893515747, 29.995244261607436 ], [ -94.903092893457213, 29.994360261216194 ], [ -94.903152893892937, 29.994219260673745 ], [ -94.903174894082014, 29.994168261068552 ], [ -94.903665893606373, 29.993016260924808 ], [ -94.903762894058801, 29.992786260274887 ], [ -94.903982893840507, 29.992264260363648 ], [ -94.904033894295566, 29.992144260189789 ], [ -94.904119893591727, 29.991943260305128 ], [ -94.90484889443313, 29.99021826050847 ], [ -94.904926894539443, 29.990035260108368 ], [ -94.905008894169072, 29.989842260322728 ], [ -94.905013894315104, 29.989830260377833 ], [ -94.905109894525651, 29.989602260205302 ], [ -94.905120894267782, 29.989577259876302 ], [ -94.905189894736026, 29.989412259554889 ], [ -94.90525389464463, 29.989263259991233 ], [ -94.905397894010022, 29.988920259637382 ], [ -94.90546789446897, 29.988756260075817 ], [ -94.905914894397014, 29.987691259682109 ], [ -94.905982894514835, 29.987530259070518 ], [ -94.905997894023741, 29.987493259778791 ], [ -94.906003894238509, 29.987479259161891 ], [ -94.906021894800276, 29.987437259112543 ], [ -94.906533894146207, 29.986222258788825 ], [ -94.906937894561153, 29.98521925899982 ], [ -94.907050894249977, 29.984916259282013 ], [ -94.907152894224126, 29.984627258509665 ], [ -94.907299894935008, 29.984160258531549 ], [ -94.907392894681763, 29.983830258797195 ], [ -94.907623894248573, 29.982895258800259 ], [ -94.907733894747707, 29.9823992581914 ], [ -94.907856894171971, 29.981746258677578 ], [ -94.907940894606, 29.98112225844103 ], [ -94.908013894496833, 29.98044125808217 ], [ -94.908067894803011, 29.97977725819112 ], [ -94.908072894399623, 29.979713257703267 ], [ -94.908088894729232, 29.979410257355092 ], [ -94.908092894569407, 29.979248257575271 ], [ -94.908096894124725, 29.979107257803573 ], [ -94.908096894128263, 29.978584257548619 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 310, "Tract": "48471790302", "Area_SqMi": 79.489894853951199, "total_2009": 623, "total_2010": 732, "total_2011": 556, "total_2012": 354, "total_2013": 350, "total_2014": 519, "total_2015": 511, "total_2016": 363, "total_2017": 365, "total_2018": 642, "total_2019": 666, "total_2020": 720, "age1": 150, "age2": 417, "age3": 232, "earn1": 113, "earn2": 194, "earn3": 492, "naics_s01": 2, "naics_s02": 10, "naics_s03": 12, "naics_s04": 58, "naics_s05": 110, "naics_s06": 24, "naics_s07": 142, "naics_s08": 6, "naics_s09": 0, "naics_s10": 0, "naics_s11": 25, "naics_s12": 14, "naics_s13": 0, "naics_s14": 136, "naics_s15": 62, "naics_s16": 19, "naics_s17": 71, "naics_s18": 37, "naics_s19": 18, "naics_s20": 53, "race1": 675, "race2": 67, "race3": 2, "race4": 42, "race5": 0, "race6": 13, "ethnicity1": 605, "ethnicity2": 194, "edu1": 124, "edu2": 182, "edu3": 196, "edu4": 147, "Shape_Length": 208193.11863825651, "Shape_Area": 2216042220.2134299, "total_2021": 873, "total_2022": 799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.667251115785376, 30.551564347185586 ], [ -95.66703011594528, 30.551296346808808 ], [ -95.666824116098482, 30.551000347445274 ], [ -95.666633116210093, 30.550693346888977 ], [ -95.666465116048471, 30.550376346564217 ], [ -95.666320115842538, 30.550050347225209 ], [ -95.666198115697782, 30.549718346428534 ], [ -95.66609911593936, 30.549379347191639 ], [ -95.666066115795942, 30.549214347160468 ], [ -95.666030115808184, 30.549035346782045 ], [ -95.664085115330764, 30.543924345440512 ], [ -95.663839114821869, 30.543219345707747 ], [ -95.663777114626583, 30.543187345953921 ], [ -95.662627114630624, 30.542592345316425 ], [ -95.657080113014459, 30.539685345021599 ], [ -95.657038113243715, 30.539663344721223 ], [ -95.657028112532842, 30.539658344702655 ], [ -95.657003113327718, 30.539647344821184 ], [ -95.656974112601873, 30.539634344714589 ], [ -95.656657113112672, 30.539492344773564 ], [ -95.65661911261418, 30.539471344741731 ], [ -95.653566112191015, 30.537870345331271 ], [ -95.653528112169866, 30.53785034506636 ], [ -95.653511111831605, 30.537841344615703 ], [ -95.65328011162903, 30.537720344450001 ], [ -95.652926111880092, 30.537534344493913 ], [ -95.652898111334636, 30.537519345251948 ], [ -95.644435109115534, 30.533023344671662 ], [ -95.639935108255088, 30.530658343856302 ], [ -95.639912107936127, 30.530646343688812 ], [ -95.631057105281272, 30.525967343062977 ], [ -95.631042105391458, 30.525951343229899 ], [ -95.628867105192185, 30.524810342871959 ], [ -95.628852105157407, 30.524802342843493 ], [ -95.626757104958187, 30.523715342861845 ], [ -95.62669710403982, 30.523684343319385 ], [ -95.625229103602706, 30.522918342643468 ], [ -95.625047103482927, 30.5228113426978 ], [ -95.624910104126457, 30.522730342657951 ], [ -95.624193103453877, 30.522306342885617 ], [ -95.624118103777022, 30.522268343180702 ], [ -95.622258103003446, 30.521322342269929 ], [ -95.621895103486807, 30.521131342946898 ], [ -95.621880103476485, 30.521123343004721 ], [ -95.621509103141634, 30.520924342669311 ], [ -95.619579102589142, 30.519889342791625 ], [ -95.619316102562976, 30.519748342738684 ], [ -95.617725101418841, 30.518894342806647 ], [ -95.614686101342599, 30.517289342293878 ], [ -95.614367101101422, 30.517120341722936 ], [ -95.613271100692529, 30.516540342150865 ], [ -95.61275210084888, 30.516265341726289 ], [ -95.612321100001608, 30.516048342057676 ], [ -95.611285100070305, 30.515526342402769 ], [ -95.61119010029573, 30.515459341866887 ], [ -95.611020099621541, 30.515335342310447 ], [ -95.610949099757988, 30.515302342210191 ], [ -95.605183097970354, 30.512643341194401 ], [ -95.600714096995688, 30.509929341073438 ], [ -95.600149097277978, 30.50962434135057 ], [ -95.599584096738184, 30.509319340914967 ], [ -95.598978096188205, 30.509007340818204 ], [ -95.598885096978478, 30.50898534081605 ], [ -95.598135096243468, 30.508966341505868 ], [ -95.596098095850451, 30.508965341348414 ], [ -95.596084095752673, 30.508965341246554 ], [ -95.596055096143047, 30.508965341110375 ], [ -95.595996095427083, 30.508965340838227 ], [ -95.595881096372281, 30.508965341011557 ], [ -95.595676096050781, 30.508965341458698 ], [ -95.595360095372314, 30.50896534108044 ], [ -95.595180095962647, 30.508965341301565 ], [ -95.595128095280415, 30.508965341199012 ], [ -95.59510009612616, 30.508965340819074 ], [ -95.595072095137709, 30.508964341489193 ], [ -95.594969095270912, 30.508964341169669 ], [ -95.593973095412252, 30.508963341434395 ], [ -95.592062095097248, 30.508962340970577 ], [ -95.591847095252348, 30.508962341307075 ], [ -95.588208093584683, 30.508952341673268 ], [ -95.581501092251031, 30.508930341395768 ], [ -95.58126109235846, 30.50892934185304 ], [ -95.576455091391097, 30.508915341754857 ], [ -95.568352089048219, 30.508902342487193 ], [ -95.568297088751194, 30.508902342447943 ], [ -95.567998088775113, 30.508900342336133 ], [ -95.566178088635581, 30.508889342244018 ], [ -95.564967088455248, 30.508885342751118 ], [ -95.564921088124365, 30.508885341991327 ], [ -95.564859087686429, 30.50888534204109 ], [ -95.564797088289723, 30.508885342088888 ], [ -95.564751087928272, 30.508885342172764 ], [ -95.564738088174337, 30.508885342614441 ], [ -95.56469808805636, 30.508884342122546 ], [ -95.564554087339019, 30.50888434208078 ], [ -95.564150088208947, 30.508883342712821 ], [ -95.562861087472783, 30.508880342617058 ], [ -95.562704086946582, 30.508880342665851 ], [ -95.561971087571735, 30.508878342681708 ], [ -95.555151085446809, 30.508852342388785 ], [ -95.555038085228688, 30.508852342535956 ], [ -95.547821083335279, 30.508888342857997 ], [ -95.547780084050856, 30.508888343201463 ], [ -95.54310608266232, 30.508917342871303 ], [ -95.537567081290661, 30.508927342928541 ], [ -95.536123080801815, 30.508930343117434 ], [ -95.535561080190931, 30.508931343731458 ], [ -95.535540080771526, 30.508931343659228 ], [ -95.533236079338039, 30.508935343789357 ], [ -95.525877078028415, 30.508944343381895 ], [ -95.523343077790599, 30.508935344016315 ], [ -95.511577074591941, 30.508915343852426 ], [ -95.509042073477062, 30.508911344462931 ], [ -95.504253072091004, 30.508870344334351 ], [ -95.500227071801888, 30.508876344783673 ], [ -95.499001070922716, 30.508883344824209 ], [ -95.498648070752225, 30.508885345117324 ], [ -95.498600070761142, 30.508885344814953 ], [ -95.493322069940959, 30.508856344668928 ], [ -95.491872068796354, 30.508839344763189 ], [ -95.49180606871434, 30.508838344699143 ], [ -95.491646069448549, 30.508837345034578 ], [ -95.49152106924204, 30.508836344985003 ], [ -95.491486069646939, 30.509417345287538 ], [ -95.491467069050884, 30.509760345066731 ], [ -95.491405068732405, 30.510502345461937 ], [ -95.491384069295449, 30.510991345221626 ], [ -95.491384068830712, 30.511172345168706 ], [ -95.491357069683602, 30.51174134541461 ], [ -95.491317068796988, 30.512376345306627 ], [ -95.491288068883023, 30.51298434592416 ], [ -95.491289069164637, 30.513016345539221 ], [ -95.491259069097964, 30.513633345459596 ], [ -95.491227069814059, 30.514199346446585 ], [ -95.491200069272907, 30.514794345706601 ], [ -95.491161069807205, 30.515429346271606 ], [ -95.49113706895298, 30.515959346189852 ], [ -95.491078069098023, 30.51660934648951 ], [ -95.491068069772737, 30.517202346789912 ], [ -95.491057069794977, 30.517691346646899 ], [ -95.491060069912407, 30.517770346469167 ], [ -95.491064069991296, 30.518240346807673 ], [ -95.491081069127219, 30.51846434700586 ], [ -95.491083069527889, 30.518513346926884 ], [ -95.49108406925167, 30.518782346537453 ], [ -95.491102069557172, 30.519066346617251 ], [ -95.491129069239321, 30.519237347131742 ], [ -95.491135069272104, 30.519327347068153 ], [ -95.491187069089335, 30.519761347255166 ], [ -95.491201070065131, 30.519873347172087 ], [ -95.491291069683697, 30.520382347397174 ], [ -95.491292069157964, 30.520394346847812 ], [ -95.491354069438998, 30.520748347488151 ], [ -95.491371069716067, 30.52081634743093 ], [ -95.491578069773325, 30.521642347500318 ], [ -95.491716069474251, 30.522176347719569 ], [ -95.491830070156496, 30.522620347748912 ], [ -95.49192606987053, 30.523021347943644 ], [ -95.492037070489147, 30.523529348260769 ], [ -95.492144070221855, 30.523951347546113 ], [ -95.492303069885367, 30.524544347804113 ], [ -95.49242306974277, 30.525091348354124 ], [ -95.492595069916575, 30.525830348410391 ], [ -95.492696069922943, 30.52629534808564 ], [ -95.492845070167192, 30.526858348893143 ], [ -95.492975070642387, 30.527414349026639 ], [ -95.493111070321433, 30.527945348591217 ], [ -95.493246070040328, 30.528533349273552 ], [ -95.493345070230646, 30.528939349032779 ], [ -95.493470070422035, 30.52946234874387 ], [ -95.493587070952131, 30.529941348939467 ], [ -95.493720070368624, 30.53056834879478 ], [ -95.493816071151471, 30.530983349354248 ], [ -95.493964071215359, 30.531615349031554 ], [ -95.494080070714702, 30.532059349427012 ], [ -95.494224070636378, 30.532619350021392 ], [ -95.49440007094806, 30.533342349982611 ], [ -95.494609071000468, 30.534249350207407 ], [ -95.49462607107543, 30.534319349672014 ], [ -95.494852071732311, 30.535272350195282 ], [ -95.495017071571993, 30.536014350523541 ], [ -95.495200071066037, 30.536664350181198 ], [ -95.495452072003204, 30.537740350819998 ], [ -95.495762071368603, 30.538926350562466 ], [ -95.49600207170711, 30.539972350697969 ], [ -95.496205072028317, 30.54090235149026 ], [ -95.497481072877676, 30.546051352315292 ], [ -95.497863072596118, 30.547593352434312 ], [ -95.498002072976519, 30.54826335283331 ], [ -95.498247072958435, 30.549193352510034 ], [ -95.498436072389381, 30.550056352931637 ], [ -95.498606073128883, 30.550726353018227 ], [ -95.498858073109929, 30.551715352924305 ], [ -95.498870072991082, 30.55179835335197 ], [ -95.499359073096855, 30.553607353734392 ], [ -95.499473073751318, 30.554099353970031 ], [ -95.501061074260477, 30.560496354789503 ], [ -95.501323074001846, 30.561551355602948 ], [ -95.501448074607595, 30.562242355000553 ], [ -95.501624074623152, 30.563155355087062 ], [ -95.501767074302663, 30.563760355321431 ], [ -95.501850074061764, 30.564097355421474 ], [ -95.501857074876753, 30.564129355973346 ], [ -95.501986074352843, 30.56457535600638 ], [ -95.501990074982729, 30.56459035544399 ], [ -95.502115074725069, 30.56506135570384 ], [ -95.50214607489356, 30.565180355997512 ], [ -95.502271074810125, 30.565782356023856 ], [ -95.502273074783005, 30.565795356395402 ], [ -95.502365074289898, 30.56641535619055 ], [ -95.502377074596879, 30.566511356481335 ], [ -95.502395074336036, 30.566872356283227 ], [ -95.502441074523034, 30.567259356307726 ], [ -95.502495075023873, 30.567752356397651 ], [ -95.502539075048531, 30.568171356430227 ], [ -95.502547074320319, 30.568282356403163 ], [ -95.502591075231621, 30.568718356392438 ], [ -95.502618074405092, 30.569184356593688 ], [ -95.502647075279285, 30.569555356965854 ], [ -95.502691075390402, 30.569989356998729 ], [ -95.502750075417296, 30.570570357167217 ], [ -95.502809074743325, 30.571046357377533 ], [ -95.502831075565368, 30.571537356766683 ], [ -95.502865074688259, 30.572246357406851 ], [ -95.502891075414254, 30.572534357292959 ], [ -95.502909074735783, 30.572741357428697 ], [ -95.502948074807563, 30.573189357774872 ], [ -95.502964075191983, 30.573383357549051 ], [ -95.502969074932793, 30.573414357713538 ], [ -95.503028075297095, 30.573792357839253 ], [ -95.503105074825086, 30.574631357448236 ], [ -95.503142075620943, 30.574940357407961 ], [ -95.503148074897439, 30.57516035793736 ], [ -95.503188074940411, 30.575567357844307 ], [ -95.503202075206559, 30.576054358162125 ], [ -95.503372075659854, 30.577965358127049 ], [ -95.503574075193271, 30.57968035849191 ], [ -95.503726075610444, 30.58154035937882 ], [ -95.503827075883564, 30.582758359094314 ], [ -95.504043075633149, 30.585108360257255 ], [ -95.50416507627105, 30.586528360266261 ], [ -95.504234076283907, 30.58763936019513 ], [ -95.504479076480337, 30.59039236059002 ], [ -95.504606076334042, 30.591622361007477 ], [ -95.504743076900382, 30.592873361764454 ], [ -95.504833076714604, 30.593998361344344 ], [ -95.504885076876661, 30.594440361986941 ], [ -95.505087077117139, 30.596653362312654 ], [ -95.505231077304401, 30.597956362188164 ], [ -95.50534207678335, 30.599496363002689 ], [ -95.505538076923656, 30.601428362809603 ], [ -95.505724077026258, 30.603749363366209 ], [ -95.50597007711373, 30.606251364205558 ], [ -95.50600907712068, 30.606859364322471 ], [ -95.506264078001209, 30.60953836513146 ], [ -95.506391078253287, 30.611078364923319 ], [ -95.506491078164302, 30.612237365596027 ], [ -95.506558077885686, 30.61275636513686 ], [ -95.506759078030271, 30.614951365314639 ], [ -95.50687107830484, 30.616360366464285 ], [ -95.507024078329209, 30.618297366741235 ], [ -95.507252078315574, 30.620289366579765 ], [ -95.507319079037714, 30.621401367072139 ], [ -95.507459078878526, 30.622778367023908 ], [ -95.50754907852658, 30.624054367689936 ], [ -95.50755407851581, 30.62408036793639 ], [ -95.507603078415812, 30.62471836789793 ], [ -95.507660078445014, 30.625413367521993 ], [ -95.507907079201217, 30.627839368748287 ], [ -95.508202078902812, 30.631557369146005 ], [ -95.508380079492397, 30.633517369782876 ], [ -95.508432080040706, 30.634058369638129 ], [ -95.508567079463717, 30.635217369870286 ], [ -95.508629079413438, 30.636103370274654 ], [ -95.508658079249173, 30.636485370184086 ], [ -95.508736079358229, 30.637584370534594 ], [ -95.508862079859639, 30.638942370692774 ], [ -95.508884079461268, 30.639066370283736 ], [ -95.508963080309272, 30.640113370557856 ], [ -95.50900007962376, 30.640597371154506 ], [ -95.509081079985634, 30.641372370571911 ], [ -95.50923208046602, 30.643108371623779 ], [ -95.509296080739702, 30.643616371163734 ], [ -95.509330079884563, 30.643939371376131 ], [ -95.509350079891632, 30.644082371880767 ], [ -95.509467080153257, 30.645451371994461 ], [ -95.509595080213884, 30.64711637184374 ], [ -95.509850080274433, 30.650020372714806 ], [ -95.509919080701565, 30.650599372567921 ], [ -95.510046080943766, 30.652169373401943 ], [ -95.510226080944932, 30.654457373666492 ], [ -95.51042808069981, 30.656577374240108 ], [ -95.510502080955419, 30.657359374176707 ], [ -95.510524081500293, 30.657609373889041 ], [ -95.510530081153036, 30.657654374522156 ], [ -95.510609080962325, 30.658206374643992 ], [ -95.510678081056071, 30.658559374613212 ], [ -95.510734081332203, 30.658792374184348 ], [ -95.510894081234142, 30.659360374203029 ], [ -95.511077081469935, 30.659925374233076 ], [ -95.511199081081017, 30.660254374619647 ], [ -95.511318081413066, 30.660603374358352 ], [ -95.511565081890893, 30.661236375083707 ], [ -95.511846081762428, 30.661843375387839 ], [ -95.5122950821617, 30.662624375086153 ], [ -95.515079082523471, 30.667659375884273 ], [ -95.518074083991351, 30.673073376849167 ], [ -95.518358083645964, 30.673586377236781 ], [ -95.518639084044139, 30.674082377274175 ], [ -95.518925084035843, 30.674499377608647 ], [ -95.519316084713864, 30.675036377824398 ], [ -95.519682084434237, 30.675452377832759 ], [ -95.519999084810067, 30.675825377357278 ], [ -95.52036308463984, 30.676164377985319 ], [ -95.520273084277264, 30.676380377212968 ], [ -95.520398085058346, 30.676492377415389 ], [ -95.520652084926382, 30.676739377493572 ], [ -95.520962084779427, 30.676998377667459 ], [ -95.522008085350919, 30.677736377484486 ], [ -95.522542085164986, 30.678065378143138 ], [ -95.523219085077784, 30.678475377600318 ], [ -95.524034085520071, 30.679019377675246 ], [ -95.525329086106566, 30.679864378405021 ], [ -95.525807086228752, 30.680160378555669 ], [ -95.526436086456172, 30.680577378377631 ], [ -95.526534086934305, 30.680628377904856 ], [ -95.527032086369786, 30.680886378601365 ], [ -95.527256086599209, 30.680998378120645 ], [ -95.527777086511819, 30.681257378740842 ], [ -95.528969087024151, 30.681824378056572 ], [ -95.530430087659113, 30.682565378602114 ], [ -95.530515087285963, 30.682605378526173 ], [ -95.532023088274158, 30.683317378945258 ], [ -95.532597087914311, 30.68358837824746 ], [ -95.534930088774331, 30.684753379115975 ], [ -95.535169089063899, 30.684866378853538 ], [ -95.536404088762239, 30.685449378503659 ], [ -95.536590089022354, 30.685541378808203 ], [ -95.53755908958972, 30.686021379067633 ], [ -95.539321089968453, 30.68686037922658 ], [ -95.540372090847683, 30.687379378773265 ], [ -95.540647090357965, 30.687515379306781 ], [ -95.542149090881082, 30.688248378807256 ], [ -95.543360091036959, 30.688853379621509 ], [ -95.544266091191787, 30.689287379305537 ], [ -95.545779092341391, 30.690027379044746 ], [ -95.546891092429377, 30.690585379307119 ], [ -95.547427092761907, 30.690836379608804 ], [ -95.547519092153195, 30.690879379173872 ], [ -95.547996092489811, 30.691124379928869 ], [ -95.548925092240495, 30.691572379292296 ], [ -95.549330092487097, 30.691781379432754 ], [ -95.5499490924865, 30.692100379745305 ], [ -95.550402092797199, 30.692370379399126 ], [ -95.551004093394766, 30.692775380144294 ], [ -95.551169093832584, 30.692887379430076 ], [ -95.551362093363764, 30.693033379554144 ], [ -95.551390093164841, 30.693054379857884 ], [ -95.551728093946963, 30.69330538021703 ], [ -95.552351093276741, 30.69385638027828 ], [ -95.552585093542376, 30.694090380109948 ], [ -95.552910093699609, 30.694443380019578 ], [ -95.552984093606028, 30.694529380072346 ], [ -95.553482093871054, 30.695115380445149 ], [ -95.553743094182238, 30.695458379999071 ], [ -95.553931093916063, 30.695343380382145 ], [ -95.554364094018084, 30.695080379990547 ], [ -95.5545670944948, 30.694956379787669 ], [ -95.5546880943524, 30.69486438048596 ], [ -95.554895094702928, 30.694646379903979 ], [ -95.555364094658842, 30.693895379789225 ], [ -95.555910094866391, 30.692778379667313 ], [ -95.555963094252078, 30.692680379464235 ], [ -95.556230094825281, 30.6921273796357 ], [ -95.55642209422021, 30.691725379037432 ], [ -95.556770095045664, 30.69100337898325 ], [ -95.5568120949887, 30.690922379557026 ], [ -95.557054095043256, 30.690456378678636 ], [ -95.557178094505261, 30.690217379419732 ], [ -95.557404094704722, 30.689811379231188 ], [ -95.557692094841428, 30.689294378518372 ], [ -95.558222094618671, 30.688286378314903 ], [ -95.558512094997369, 30.687759378859656 ], [ -95.558960094927841, 30.686957378474553 ], [ -95.559328094808052, 30.686300378138132 ], [ -95.559730095546769, 30.685474378422857 ], [ -95.559778095660718, 30.68538037815722 ], [ -95.559993095244025, 30.684977377577436 ], [ -95.560043095484872, 30.684884378154408 ], [ -95.561388095757479, 30.682409377301042 ], [ -95.561413095961555, 30.68236237744388 ], [ -95.561694095313911, 30.681838376996549 ], [ -95.561790095843094, 30.681658377089423 ], [ -95.562009095471169, 30.6813143774555 ], [ -95.562264095638923, 30.680961377287645 ], [ -95.562504096061588, 30.680637376988912 ], [ -95.56254909581034, 30.680583377326023 ], [ -95.562629095773147, 30.680490376744931 ], [ -95.562883095293572, 30.680191377003222 ], [ -95.563216095545869, 30.67979537684662 ], [ -95.563488096060965, 30.679473376945182 ], [ -95.563848095990778, 30.679039376235419 ], [ -95.56396109550586, 30.67890237654035 ], [ -95.564079096324775, 30.678761376795212 ], [ -95.564445095600917, 30.678297376536381 ], [ -95.564853095661718, 30.677767376022654 ], [ -95.564898095796281, 30.677708376078016 ], [ -95.565061095939285, 30.677524376354455 ], [ -95.565212096357428, 30.677352376007317 ], [ -95.565426096706432, 30.677178375973064 ], [ -95.565698096335566, 30.676986376233046 ], [ -95.56603809652276, 30.676808375875535 ], [ -95.566672096531676, 30.676418375898788 ], [ -95.566904096589582, 30.676276375648875 ], [ -95.567297097143125, 30.676051375404001 ], [ -95.567542096313048, 30.675908375814597 ], [ -95.570831096977102, 30.673909375041521 ], [ -95.571945097398654, 30.673120374947967 ], [ -95.572082097709441, 30.672973375031059 ], [ -95.572227097802156, 30.672858374686768 ], [ -95.572402097508217, 30.672702374522167 ], [ -95.572669097631703, 30.672336374430724 ], [ -95.573127097431751, 30.671363374541713 ], [ -95.573831097607297, 30.669846374540118 ], [ -95.576415098738082, 30.664281373100909 ], [ -95.577055098295148, 30.662985373014987 ], [ -95.577064098450961, 30.6629673730104 ], [ -95.577384098981796, 30.66226137283639 ], [ -95.577644099015544, 30.661847372241287 ], [ -95.577901098507766, 30.661321372234379 ], [ -95.577957098437167, 30.661206372892728 ], [ -95.579452098865389, 30.659032372047459 ], [ -95.580276098787138, 30.657842371275795 ], [ -95.580680099584256, 30.657277371321722 ], [ -95.581031099719695, 30.656709371809935 ], [ -95.581344099546811, 30.656116371293887 ], [ -95.581832099779305, 30.655090371043727 ], [ -95.582229098905529, 30.654153370550713 ], [ -95.582252099542472, 30.654088370545587 ], [ -95.582511099736607, 30.653579370425309 ], [ -95.582763099175921, 30.653135370831389 ], [ -95.582992099682187, 30.652797370532546 ], [ -95.583312100057952, 30.652385370362456 ], [ -95.583468099389606, 30.652217370398684 ], [ -95.584068099490665, 30.65156737009449 ], [ -95.584388099707894, 30.651248369878321 ], [ -95.584503100241221, 30.651139370017159 ], [ -95.584701099966523, 30.650941370195817 ], [ -95.585021100109614, 30.65063637006298 ], [ -95.585540100006796, 30.650165370199854 ], [ -95.586639100554819, 30.649366370203133 ], [ -95.588767100605679, 30.647948369478122 ], [ -95.588996100820054, 30.64775836907047 ], [ -95.589485101237216, 30.647292369326358 ], [ -95.58988910092188, 30.646808369388172 ], [ -95.590049101521032, 30.646556369158965 ], [ -95.590171100696494, 30.646349369106506 ], [ -95.590209101075558, 30.64628336899294 ], [ -95.59032410094818, 30.646003369123463 ], [ -95.590515101198534, 30.645572368448811 ], [ -95.590980101054072, 30.643983368251842 ], [ -95.591056101511413, 30.643684368428129 ], [ -95.591316101412716, 30.64309636798632 ], [ -95.591476100965465, 30.64277636789355 ], [ -95.59164410156859, 30.642526368092593 ], [ -95.591903101594951, 30.642173367913252 ], [ -95.592552101410803, 30.641519367984383 ], [ -95.592849101022637, 30.641240367899428 ], [ -95.593693101680557, 30.640464367884327 ], [ -95.593917101680347, 30.64025836729401 ], [ -95.594756101657509, 30.639426367038361 ], [ -95.594917101693184, 30.639297367133533 ], [ -95.595710101602421, 30.638320367522578 ], [ -95.596092101755389, 30.637853367313621 ], [ -95.597076101994062, 30.636621366508521 ], [ -95.597633102103998, 30.635907366840687 ], [ -95.59836510305999, 30.635034366451574 ], [ -95.59857110282212, 30.634828366286669 ], [ -95.598976102876676, 30.634469366054397 ], [ -95.601348102977781, 30.632774365706823 ], [ -95.602020102909975, 30.632257365337871 ], [ -95.602271103592457, 30.632024365353537 ], [ -95.602516103450128, 30.631767365782952 ], [ -95.60279010378899, 30.631444365865395 ], [ -95.602912103461492, 30.631265365203664 ], [ -95.602996103166603, 30.631131365829781 ], [ -95.603164103634967, 30.630885365587385 ], [ -95.603332103295259, 30.630548364983689 ], [ -95.603469103245999, 30.630229365565103 ], [ -95.603645103919845, 30.629808364990144 ], [ -95.603980103332702, 30.628814365170125 ], [ -95.604141103464684, 30.628412364471462 ], [ -95.604301103778553, 30.627994365213347 ], [ -95.604461104184125, 30.627633365035233 ], [ -95.604682103858607, 30.627296364431324 ], [ -95.604881104104209, 30.627002364431522 ], [ -95.605216103467228, 30.626638364441064 ], [ -95.605819103815051, 30.625842364419043 ], [ -95.60698610402595, 30.624559363935997 ], [ -95.607505104167743, 30.623965363747732 ], [ -95.607910104558201, 30.623552363389493 ], [ -95.608329104550208, 30.62316836341753 ], [ -95.608398104406945, 30.623119363245845 ], [ -95.608741104974243, 30.622838363621078 ], [ -95.609016104253769, 30.622625363841049 ], [ -95.610580104930605, 30.621454363708249 ], [ -95.613138106150885, 30.619507362467957 ], [ -95.613715106155666, 30.61906736237145 ], [ -95.614573105516001, 30.618428362801509 ], [ -95.615844106604243, 30.617481362173564 ], [ -95.616171106315448, 30.617236362418986 ], [ -95.618514107087918, 30.61548236155755 ], [ -95.619148107214286, 30.615073362137789 ], [ -95.61927010749308, 30.614963361673311 ], [ -95.621902107685088, 30.613040361267739 ], [ -95.62278710743827, 30.612355360697535 ], [ -95.623405107377394, 30.611768360926021 ], [ -95.623710108287142, 30.611339360418956 ], [ -95.623969108353933, 30.610965360829375 ], [ -95.624275107663593, 30.61026936054888 ], [ -95.624755107665493, 30.609075360251154 ], [ -95.625327107887813, 30.607743359843553 ], [ -95.625701108364709, 30.606857360199147 ], [ -95.625915108767984, 30.606324359689214 ], [ -95.625991108334645, 30.606145359543579 ], [ -95.626281108290215, 30.605380359152942 ], [ -95.626663108541649, 30.604436359635706 ], [ -95.62679210793506, 30.604053359127331 ], [ -95.626907108911212, 30.603748358955134 ], [ -95.626998107908506, 30.603389359181225 ], [ -95.627090108319848, 30.602729358830402 ], [ -95.627075108629569, 30.602260358584104 ], [ -95.626991107976792, 30.601724358821148 ], [ -95.62696010828796, 30.60160435857922 ], [ -95.626907107819335, 30.601365358596752 ], [ -95.626838108470338, 30.601152358652723 ], [ -95.626823108018257, 30.601077359008489 ], [ -95.626754108286221, 30.600875358860417 ], [ -95.626678108036302, 30.600686358356135 ], [ -95.626464107646854, 30.60024235863483 ], [ -95.626266108421973, 30.599933358830484 ], [ -95.625999107986019, 30.599538358050832 ], [ -95.625808107445152, 30.599235358230295 ], [ -95.625274107979024, 30.598493357787397 ], [ -95.625175108159937, 30.598350358408794 ], [ -95.625022107426773, 30.598163357990497 ], [ -95.624954108037045, 30.598058357708432 ], [ -95.62483210764465, 30.597892357953857 ], [ -95.624664107644861, 30.597602357810143 ], [ -95.624503107381827, 30.59730335763722 ], [ -95.624366107283578, 30.59698435805841 ], [ -95.624267106956452, 30.596723357917398 ], [ -95.624145107207212, 30.596334357842718 ], [ -95.624069106952007, 30.595990357384796 ], [ -95.624030107469579, 30.595641357452898 ], [ -95.624023107630961, 30.594854357707863 ], [ -95.62395410713178, 30.594152357488689 ], [ -95.623908106967306, 30.593839357287688 ], [ -95.623809107151985, 30.593442357069609 ], [ -95.623641107481717, 30.593049357109024 ], [ -95.623519107396362, 30.592801357149103 ], [ -95.623145107072489, 30.592242357331912 ], [ -95.622955107179706, 30.592014357061878 ], [ -95.622685107024878, 30.591781357160777 ], [ -95.622474106999817, 30.591583357081685 ], [ -95.622169107076459, 30.591380357201594 ], [ -95.621925106915199, 30.591230356731085 ], [ -95.621574106380038, 30.59103135683829 ], [ -95.621223105913217, 30.590877356493795 ], [ -95.620874105712033, 30.590760356293845 ], [ -95.620811106508555, 30.590739356320327 ], [ -95.618454106057072, 30.590046356854664 ], [ -95.61840010517264, 30.590030356767738 ], [ -95.616584105025652, 30.589450356546475 ], [ -95.615753104620111, 30.589219356817953 ], [ -95.615515104610267, 30.589176356184552 ], [ -95.615318104900282, 30.589141356796031 ], [ -95.614547104324799, 30.588981356683021 ], [ -95.616226104456956, 30.585183355825652 ], [ -95.617065104897989, 30.583223355017147 ], [ -95.618194105106525, 30.581054354911259 ], [ -95.618636105577593, 30.579854354421389 ], [ -95.619026105064663, 30.57911235475709 ], [ -95.619211105216138, 30.578712354015099 ], [ -95.619377105328638, 30.578355354470755 ], [ -95.619621105464262, 30.577867354377002 ], [ -95.619933105359323, 30.577260353764789 ], [ -95.620666105709816, 30.575853353442206 ], [ -95.620897105256546, 30.575495353367913 ], [ -95.621055105850942, 30.575250353597717 ], [ -95.621322105338493, 30.574792353075065 ], [ -95.621903105726858, 30.573286353296456 ], [ -95.622390106156345, 30.572025352866937 ], [ -95.622535105589549, 30.571382352375135 ], [ -95.622817105974335, 30.570186352787676 ], [ -95.622856105289202, 30.570020352049855 ], [ -95.622886105809215, 30.569822352363921 ], [ -95.622955105794361, 30.569677351992706 ], [ -95.623084105615064, 30.569440352673215 ], [ -95.623123105964964, 30.569305352572865 ], [ -95.623275106257935, 30.569158352427497 ], [ -95.623390105959317, 30.568895351972358 ], [ -95.623473105496913, 30.56875735209832 ], [ -95.623626106321993, 30.568652352119489 ], [ -95.624259105720427, 30.567952352456704 ], [ -95.625137106326235, 30.567586351970139 ], [ -95.625579106649852, 30.567470352215601 ], [ -95.626106106246411, 30.567189351770594 ], [ -95.626335106438759, 30.567083351893853 ], [ -95.627097106313713, 30.566447351568417 ], [ -95.627624106570522, 30.56637535156527 ], [ -95.628188106602039, 30.566268351824654 ], [ -95.628578107370416, 30.566129351324509 ], [ -95.628974106684666, 30.566009351390608 ], [ -95.629371107218319, 30.565912351770326 ], [ -95.629783107446698, 30.565833351820043 ], [ -95.632652108211346, 30.565070350871558 ], [ -95.632926107698367, 30.565009350860745 ], [ -95.633178107823227, 30.564948350705329 ], [ -95.633682107750886, 30.564866351185135 ], [ -95.633994107819589, 30.564767351143249 ], [ -95.634315108612583, 30.564634350821056 ], [ -95.634712108654341, 30.564538350791455 ], [ -95.635514109104761, 30.563912350457255 ], [ -95.635662108577009, 30.563797351166926 ], [ -95.635725108897219, 30.563749350511678 ], [ -95.635787109079715, 30.563700350427013 ], [ -95.636179109237872, 30.563393350465784 ], [ -95.637368109019292, 30.562465350502777 ], [ -95.637611109437884, 30.562276350828558 ], [ -95.637901108671144, 30.562011350029909 ], [ -95.638175109653702, 30.561731350212462 ], [ -95.638427109174359, 30.561439350268582 ], [ -95.638656109366636, 30.561134350087141 ], [ -95.63897610930799, 30.560848350344894 ], [ -95.639320109048086, 30.560580349740121 ], [ -95.639671109612848, 30.560327350097115 ], [ -95.64004511012449, 30.560092349720144 ], [ -95.640434109573349, 30.559877350206833 ], [ -95.640830109334118, 30.559678349307649 ], [ -95.641334110208518, 30.55946134940956 ], [ -95.641715110481485, 30.559390349607984 ], [ -95.642883110481009, 30.559087349381773 ], [ -95.643607110301858, 30.558929349956617 ], [ -95.646118110638099, 30.55848834899485 ], [ -95.646504111269437, 30.558436348963685 ], [ -95.647659111943213, 30.558280349042771 ], [ -95.647994111069835, 30.558213348773364 ], [ -95.648315111752197, 30.558126348951014 ], [ -95.648635111294155, 30.55801934906518 ], [ -95.648940111470125, 30.557889349114575 ], [ -95.649238111611311, 30.557742349463908 ], [ -95.649520111983691, 30.55757534874817 ], [ -95.649787112045132, 30.557391348575635 ], [ -95.650039112520588, 30.557189349288016 ], [ -95.651008112736761, 30.556350349006021 ], [ -95.651206112142134, 30.55619034875383 ], [ -95.651466112864327, 30.556007348412805 ], [ -95.65174011218356, 30.555841348493324 ], [ -95.652030112541084, 30.555694348433708 ], [ -95.652328113073281, 30.555566348383365 ], [ -95.652641112909691, 30.555457348465954 ], [ -95.658271113912988, 30.55371634779328 ], [ -95.659118114414966, 30.553466347794153 ], [ -95.659911114629679, 30.553258348191946 ], [ -95.660713114418542, 30.553071347583025 ], [ -95.661521114687432, 30.552905347482145 ], [ -95.662338115389417, 30.552760347903376 ], [ -95.66313911558791, 30.552648347262313 ], [ -95.663703115500084, 30.552541347530411 ], [ -95.664253115568684, 30.552413347688663 ], [ -95.667251115785376, 30.551564347185586 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 311, "Tract": "48471790401", "Area_SqMi": 139.439714198703, "total_2009": 193, "total_2010": 615, "total_2011": 648, "total_2012": 712, "total_2013": 666, "total_2014": 315, "total_2015": 270, "total_2016": 189, "total_2017": 220, "total_2018": 267, "total_2019": 285, "total_2020": 304, "age1": 69, "age2": 141, "age3": 78, "earn1": 63, "earn2": 123, "earn3": 102, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 88, "naics_s05": 7, "naics_s06": 8, "naics_s07": 48, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 11, "naics_s12": 37, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 0, "naics_s17": 15, "naics_s18": 27, "naics_s19": 0, "naics_s20": 21, "race1": 217, "race2": 55, "race3": 0, "race4": 7, "race5": 0, "race6": 9, "ethnicity1": 243, "ethnicity2": 45, "edu1": 50, "edu2": 72, "edu3": 67, "edu4": 30, "Shape_Length": 299710.30837590358, "Shape_Area": 3887340578.4038506, "total_2021": 305, "total_2022": 288 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.863089181257607, 30.86429640297807 ], [ -95.863066181117361, 30.864130402544546 ], [ -95.862727181719123, 30.861694401677067 ], [ -95.862213180540408, 30.858003401277625 ], [ -95.86160618059867, 30.853644400675243 ], [ -95.861371180274304, 30.851963399931453 ], [ -95.861205180057482, 30.850772400208097 ], [ -95.860756180019735, 30.847547399490896 ], [ -95.860550180519056, 30.846067399100324 ], [ -95.858397178663736, 30.830606395967216 ], [ -95.857044177991796, 30.820888394450613 ], [ -95.857006178217361, 30.820616394067908 ], [ -95.856636177936792, 30.817961393931807 ], [ -95.856332177744122, 30.815780393325404 ], [ -95.856328177089907, 30.815752392926452 ], [ -95.85506017664386, 30.806641391700655 ], [ -95.853218175148655, 30.793413388955415 ], [ -95.852750175233396, 30.790052388563506 ], [ -95.851779174782124, 30.783076387036317 ], [ -95.84902117274406, 30.763255382894883 ], [ -95.848739173185209, 30.761236382533315 ], [ -95.847204171778117, 30.750198380626777 ], [ -95.846382171276503, 30.743497379241152 ], [ -95.84597917133398, 30.740211378499762 ], [ -95.845551170273467, 30.73723337766037 ], [ -95.84549217036502, 30.736824377928617 ], [ -95.845467170955487, 30.736645377466427 ], [ -95.845441171155059, 30.736467377638981 ], [ -95.845419170816811, 30.736313377873678 ], [ -95.84539617094778, 30.736158377733084 ], [ -95.844726170633237, 30.731498376982625 ], [ -95.844496170333585, 30.729901376589595 ], [ -95.844364170420519, 30.728973376238169 ], [ -95.844273169753109, 30.728359375762729 ], [ -95.844162169845902, 30.727609376092143 ], [ -95.843755169997252, 30.724868375720639 ], [ -95.843646169293635, 30.724132375585448 ], [ -95.842876169207912, 30.718937374039374 ], [ -95.842187168697393, 30.714403373780041 ], [ -95.842159169203214, 30.71417837309572 ], [ -95.842021169108335, 30.713056373107676 ], [ -95.841330167873608, 30.70829637225501 ], [ -95.840331167192176, 30.701201370602011 ], [ -95.840135167870244, 30.699806370553755 ], [ -95.839890166995175, 30.698059370163961 ], [ -95.838946166914525, 30.691336368812454 ], [ -95.838388166375822, 30.687360367940173 ], [ -95.837524166280204, 30.681196367215676 ], [ -95.836826165464757, 30.676430366042773 ], [ -95.836689165928775, 30.675492365599442 ], [ -95.836489165002476, 30.674106365403865 ], [ -95.835892165328474, 30.669943364604901 ], [ -95.83499816482805, 30.663819363263976 ], [ -95.834204164077164, 30.658005362036135 ], [ -95.834040164159489, 30.658075362811633 ], [ -95.833412164173851, 30.658269362810607 ], [ -95.833337164151374, 30.658288362418627 ], [ -95.829829163122469, 30.659378362709244 ], [ -95.824867161311644, 30.660920363016277 ], [ -95.824196161298744, 30.661128363070915 ], [ -95.812179158204941, 30.664857364932054 ], [ -95.80796815787204, 30.666164365321904 ], [ -95.806797157272968, 30.666528365241835 ], [ -95.80489315708337, 30.667119365302629 ], [ -95.801612156155443, 30.668136365832261 ], [ -95.799743155971058, 30.668716365937058 ], [ -95.797815155459517, 30.669314365971246 ], [ -95.793420153788475, 30.670677366592091 ], [ -95.792014153934389, 30.671113366813096 ], [ -95.790916153654933, 30.671440366881061 ], [ -95.788024152460636, 30.672300367268761 ], [ -95.787231152422862, 30.672595367397804 ], [ -95.78275115170014, 30.673984367411059 ], [ -95.776729150693441, 30.675851368540801 ], [ -95.772837148735775, 30.677057368913736 ], [ -95.76854514805386, 30.678387368875224 ], [ -95.765620147057547, 30.679294368998306 ], [ -95.764202146728095, 30.679734369363391 ], [ -95.763481146536279, 30.679958369282385 ], [ -95.754216145197859, 30.682829370587992 ], [ -95.753146144687975, 30.683160370310055 ], [ -95.750289143689969, 30.684036370980742 ], [ -95.749770143678404, 30.684160370846893 ], [ -95.749679143474083, 30.684188371200509 ], [ -95.749099143117988, 30.684257371014432 ], [ -95.748838143595449, 30.684259370392425 ], [ -95.740453141692726, 30.684320371141123 ], [ -95.738952140989753, 30.684331370780587 ], [ -95.734889139718291, 30.684345371123722 ], [ -95.730084138469721, 30.684362371826946 ], [ -95.724900137746658, 30.684380372048086 ], [ -95.720382136160424, 30.684396372145454 ], [ -95.717302135777445, 30.684406372092834 ], [ -95.712535134218001, 30.684423372327991 ], [ -95.706886132715127, 30.684442372162053 ], [ -95.706859132746743, 30.684442372634326 ], [ -95.705116132782578, 30.68444837260553 ], [ -95.704536132348835, 30.684461372484662 ], [ -95.703956131535691, 30.684495372152238 ], [ -95.703384132124327, 30.684552372888334 ], [ -95.702812131873159, 30.684633372521652 ], [ -95.701614131084781, 30.68485237223156 ], [ -95.693707129776882, 30.68634537317245 ], [ -95.686767128226862, 30.687656373761641 ], [ -95.681490126693873, 30.688688373933751 ], [ -95.674193124982096, 30.69011537447863 ], [ -95.671683124422302, 30.690605375222624 ], [ -95.671067124386326, 30.690726374666962 ], [ -95.664840122615686, 30.69194337512954 ], [ -95.66470312191359, 30.69197037532571 ], [ -95.661903121638886, 30.692508375933311 ], [ -95.652046119064025, 30.694408376295602 ], [ -95.650691118660163, 30.694669376374893 ], [ -95.647575118072737, 30.695268376641739 ], [ -95.6465141174764, 30.695472376533683 ], [ -95.64643811813302, 30.695487376453631 ], [ -95.645155117398573, 30.695734376566147 ], [ -95.644576117647361, 30.695846376627252 ], [ -95.642294116737901, 30.696285376967907 ], [ -95.640590116633504, 30.696613377576021 ], [ -95.639411116338351, 30.696840377007497 ], [ -95.635349115608605, 30.697621377489774 ], [ -95.631061114294198, 30.698445378403964 ], [ -95.628738113713794, 30.698892377760924 ], [ -95.62807411371675, 30.69901037782995 ], [ -95.628043113754146, 30.699014378131881 ], [ -95.627113112920483, 30.699212378578235 ], [ -95.626098113197884, 30.699384378807075 ], [ -95.625023112480122, 30.699503378172473 ], [ -95.624257112925974, 30.699588378025748 ], [ -95.622479111724772, 30.699786378632535 ], [ -95.621898112220478, 30.699850378390739 ], [ -95.619412111308336, 30.700123378788309 ], [ -95.619401111617165, 30.700124378829265 ], [ -95.618491111088659, 30.700208379158365 ], [ -95.618232110694237, 30.700235379252959 ], [ -95.616401110246642, 30.700454378652637 ], [ -95.616004110700118, 30.700494378582249 ], [ -95.615646110373632, 30.700546379243807 ], [ -95.615257110466587, 30.700628379174265 ], [ -95.614890110390419, 30.700732379374639 ], [ -95.614524110053821, 30.700855378798657 ], [ -95.614112109449266, 30.701038378721627 ], [ -95.613777109264063, 30.701217379459298 ], [ -95.612986109565853, 30.701685379671598 ], [ -95.611870109222536, 30.70234937923367 ], [ -95.611742109411054, 30.702424379939028 ], [ -95.610139108974764, 30.703376379714943 ], [ -95.608726108655546, 30.70421537958125 ], [ -95.606736108589473, 30.705478380486745 ], [ -95.605442107993099, 30.706317380354413 ], [ -95.604777107252218, 30.706715380454597 ], [ -95.604171107681537, 30.707098380317667 ], [ -95.603095107669347, 30.707793380580746 ], [ -95.601519106778809, 30.708811381080142 ], [ -95.600828106945613, 30.709233380977384 ], [ -95.600045107078358, 30.709722380940121 ], [ -95.600013106631835, 30.709742381800968 ], [ -95.599431106354103, 30.710144381275359 ], [ -95.599407106116161, 30.710161381872915 ], [ -95.598608106620929, 30.710672381544519 ], [ -95.597706106242981, 30.711269382055342 ], [ -95.596618106444041, 30.711978381727285 ], [ -95.595556105455103, 30.712653382378882 ], [ -95.594893105955393, 30.713050382449339 ], [ -95.594833105817315, 30.713082382059561 ], [ -95.594282105278253, 30.713375382292728 ], [ -95.593575105140857, 30.713760382067207 ], [ -95.593395104853101, 30.713850382762516 ], [ -95.592937104595109, 30.714079382918314 ], [ -95.592863104743415, 30.714115382524653 ], [ -95.591258104233688, 30.714882382407676 ], [ -95.59046610463102, 30.715253383023811 ], [ -95.590011104656284, 30.715461382460898 ], [ -95.589736103871303, 30.715575383235873 ], [ -95.58933710383377, 30.715739382519956 ], [ -95.588630104074156, 30.715979382961532 ], [ -95.588391103978239, 30.716072382940119 ], [ -95.587724103341657, 30.716316383485175 ], [ -95.587160104060388, 30.71652138313447 ], [ -95.586919103292914, 30.71660938307631 ], [ -95.586372103286735, 30.716790383517505 ], [ -95.585458102917016, 30.717091383287055 ], [ -95.584681103181239, 30.717359383887842 ], [ -95.584153102651356, 30.717520383915698 ], [ -95.583482102563337, 30.717731383220965 ], [ -95.582852103048523, 30.717850383891673 ], [ -95.582044102119553, 30.71796238400778 ], [ -95.581298101894973, 30.718019383788452 ], [ -95.580864101682025, 30.718055383701802 ], [ -95.580321102503461, 30.718100384151807 ], [ -95.578614101710727, 30.718235383536335 ], [ -95.577336101551381, 30.718335383690562 ], [ -95.577186100984804, 30.718346383948695 ], [ -95.577278101296045, 30.718780384147948 ], [ -95.577358100930454, 30.719210384132062 ], [ -95.577472100956115, 30.719575384304928 ], [ -95.577490101041263, 30.719633383964904 ], [ -95.577592101591748, 30.71989038463558 ], [ -95.577663101900043, 30.720093383981798 ], [ -95.577660101394528, 30.720405384464549 ], [ -95.577612101346389, 30.720788384212796 ], [ -95.577526101387718, 30.721253384416791 ], [ -95.577516101585175, 30.721445384876077 ], [ -95.577267101427012, 30.721450384490499 ], [ -95.577231101352083, 30.721474385003294 ], [ -95.577363101262293, 30.72196138426245 ], [ -95.577405101333369, 30.722332384448833 ], [ -95.577436101825256, 30.722898384779771 ], [ -95.577434101064839, 30.723156384503948 ], [ -95.577418101323161, 30.72504838533396 ], [ -95.577402102124807, 30.725653385716097 ], [ -95.577454101730368, 30.726595385601822 ], [ -95.577479101228747, 30.72674838599562 ], [ -95.577557101353648, 30.72721738583315 ], [ -95.577346101698964, 30.727218385452993 ], [ -95.577147102075216, 30.72722838586408 ], [ -95.576984101449284, 30.727243385451679 ], [ -95.576858101962216, 30.727255386042948 ], [ -95.578122102130308, 30.728342385663417 ], [ -95.579088101855945, 30.729146385708827 ], [ -95.579963102722047, 30.729895385934086 ], [ -95.582097102891069, 30.731725386872263 ], [ -95.582673103528222, 30.732198386565099 ], [ -95.582899103618317, 30.732384386224616 ], [ -95.583500103457766, 30.732854386181437 ], [ -95.584034104114323, 30.733229386346846 ], [ -95.584530103653989, 30.733557386762861 ], [ -95.585372104660394, 30.734141386596061 ], [ -95.585509103668969, 30.734234387192593 ], [ -95.585588104078226, 30.734288386932477 ], [ -95.586200104030397, 30.734677386757483 ], [ -95.587271104935468, 30.735398387126963 ], [ -95.587791104612421, 30.735737387083191 ], [ -95.588457105214133, 30.736183387212755 ], [ -95.589192105344509, 30.736656386979647 ], [ -95.589464105209458, 30.736855387376654 ], [ -95.589622105169525, 30.73667138680841 ], [ -95.589958105837113, 30.736295387235671 ], [ -95.590617105547565, 30.736738386712034 ], [ -95.590716105529424, 30.73681338671722 ], [ -95.590859105392312, 30.736921387090632 ], [ -95.590915105537988, 30.736966387248806 ], [ -95.591036106220031, 30.737066387180853 ], [ -95.591465106280054, 30.73741738697969 ], [ -95.592301106288147, 30.738103387345983 ], [ -95.593137105889681, 30.738678387385335 ], [ -95.593625106831595, 30.738977387497055 ], [ -95.593786106071065, 30.739073387542287 ], [ -95.59381510603049, 30.739090387295498 ], [ -95.594020106855965, 30.739186387285834 ], [ -95.59469010717666, 30.739390387944056 ], [ -95.594774106899038, 30.739416387815073 ], [ -95.595219107361189, 30.739558387915078 ], [ -95.596242107362286, 30.739798387998363 ], [ -95.600387108747398, 30.740772387375841 ], [ -95.601319108859116, 30.741019387316459 ], [ -95.602062108588754, 30.74121638765526 ], [ -95.602862109241556, 30.741428387548133 ], [ -95.609023111008668, 30.743061387781164 ], [ -95.609517110982353, 30.743192387997865 ], [ -95.611004111096861, 30.743586387853384 ], [ -95.612259110989584, 30.743919387428896 ], [ -95.617229112564559, 30.745236388239451 ], [ -95.621007113897775, 30.746237387922839 ], [ -95.622787114209956, 30.746709387989984 ], [ -95.62391711438886, 30.747018388292215 ], [ -95.62642111540211, 30.747703387862042 ], [ -95.62690711515603, 30.747836388345924 ], [ -95.627684116004431, 30.748040387726547 ], [ -95.627951115480585, 30.748110388404303 ], [ -95.631435116379905, 30.749024388134064 ], [ -95.631843116309724, 30.74913138806183 ], [ -95.63367411717897, 30.749589388517585 ], [ -95.634086117377635, 30.749698388302079 ], [ -95.634356117042728, 30.749768388407176 ], [ -95.634729117972952, 30.749867388072609 ], [ -95.637206118257495, 30.750521388111224 ], [ -95.63800211822192, 30.750731388123825 ], [ -95.640755119683703, 30.751457388227937 ], [ -95.641598119271308, 30.751680388001009 ], [ -95.647364121242475, 30.75320138847265 ], [ -95.647765121567787, 30.753307388271967 ], [ -95.648152120973549, 30.753434388383752 ], [ -95.648223120690702, 30.753457387988671 ], [ -95.648536121502389, 30.753589388194634 ], [ -95.648803121015717, 30.753726388479908 ], [ -95.64884112101204, 30.753751388466974 ], [ -95.648879121655227, 30.753770388739866 ], [ -95.649459121264812, 30.754136388603651 ], [ -95.653083122597579, 30.756562388394773 ], [ -95.654594122619201, 30.757550388605694 ], [ -95.659139124090146, 30.760606389545156 ], [ -95.664485125594709, 30.764201390334723 ], [ -95.666667126607024, 30.765668390167619 ], [ -95.668647127463117, 30.766999390489929 ], [ -95.668838127417686, 30.767125389923777 ], [ -95.668954126833924, 30.767206390711305 ], [ -95.669074126782149, 30.767289390747624 ], [ -95.670921127364139, 30.768529390917532 ], [ -95.671157128274089, 30.768707390903124 ], [ -95.671325127691262, 30.768855390512464 ], [ -95.671378127826131, 30.768901390271012 ], [ -95.671584128185003, 30.769109390768527 ], [ -95.671768127582638, 30.76933239050442 ], [ -95.671928127973786, 30.769565390984752 ], [ -95.672065128507484, 30.769811390501047 ], [ -95.673442128220657, 30.772505391312141 ], [ -95.674254128961053, 30.774093391858734 ], [ -95.676393129460607, 30.778278392389893 ], [ -95.676864129857037, 30.779199392170909 ], [ -95.67698612944605, 30.779443392607103 ], [ -95.677570129939085, 30.780579392846509 ], [ -95.677734130310881, 30.780898392664774 ], [ -95.677932129997487, 30.781293392425162 ], [ -95.679061130118853, 30.783501393216046 ], [ -95.679766131231503, 30.784879393377583 ], [ -95.680786131379122, 30.786876393482355 ], [ -95.681098131127882, 30.787494393984627 ], [ -95.681236131776842, 30.787734393685238 ], [ -95.681285131376796, 30.787808393815805 ], [ -95.681396131376786, 30.787976393819548 ], [ -95.681587131772105, 30.788209394371016 ], [ -95.681717131591157, 30.788347394532806 ], [ -95.681793131907384, 30.788429394406002 ], [ -95.687339133132355, 30.79392239472207 ], [ -95.690872134194279, 30.79730039569807 ], [ -95.692031134725738, 30.798494395904164 ], [ -95.695525135717887, 30.80188139597244 ], [ -95.695838135504943, 30.802171396099329 ], [ -95.696426135773066, 30.802594396861725 ], [ -95.696784135840176, 30.802783396402425 ], [ -95.701206137607571, 30.804897396914068 ], [ -95.703042137966648, 30.805774397095394 ], [ -95.704751138604834, 30.806589396828802 ], [ -95.711041139818278, 30.809591397647331 ], [ -95.711440140039983, 30.809781396987635 ], [ -95.712989140625112, 30.810502397359219 ], [ -95.715507141167635, 30.811754397638612 ], [ -95.718459141711079, 30.813182397674648 ], [ -95.718673141818897, 30.813283397902609 ], [ -95.720847143148035, 30.814304398181434 ], [ -95.721305143229969, 30.814548397721953 ], [ -95.721893142794812, 30.814845397826236 ], [ -95.722198143560689, 30.815049397613837 ], [ -95.722511143242997, 30.815276397797231 ], [ -95.722785143403996, 30.815557398211062 ], [ -95.723068143366461, 30.81586039843144 ], [ -95.723304143309576, 30.816081398421129 ], [ -95.724273143347048, 30.817230398685663 ], [ -95.724662144394131, 30.817661398425276 ], [ -95.72507414398045, 30.818160398463153 ], [ -95.725753144528241, 30.818969398936165 ], [ -95.726417144039615, 30.819751398367622 ], [ -95.727538145144649, 30.821052398627934 ], [ -95.731529146194589, 30.825740400191929 ], [ -95.732078145818676, 30.82637139949103 ], [ -95.732406146107635, 30.826841400235001 ], [ -95.732452145887322, 30.826915400214276 ], [ -95.732711146228496, 30.827335400176892 ], [ -95.733184147072521, 30.828014399865257 ], [ -95.733573147091562, 30.828651400569335 ], [ -95.734805147232166, 30.830692400688189 ], [ -95.735336146846436, 30.831573401002682 ], [ -95.735534147276539, 30.831870400483595 ], [ -95.735633146983801, 30.832078400609049 ], [ -95.736308147448042, 30.833162401334381 ], [ -95.736350147419984, 30.833230401347098 ], [ -95.736419147420079, 30.833350401231442 ], [ -95.736786148323503, 30.833933401014633 ], [ -95.738189148185228, 30.836213401172099 ], [ -95.7384711485916, 30.836635401744008 ], [ -95.738708148650446, 30.836927401418151 ], [ -95.740592148795699, 30.839298402192444 ], [ -95.744676150082952, 30.844109402840381 ], [ -95.74656615091601, 30.84633640359322 ], [ -95.748283151135752, 30.848304403306287 ], [ -95.748428151187014, 30.848470404025168 ], [ -95.749137151785888, 30.849347404131361 ], [ -95.749824151694554, 30.850238403760674 ], [ -95.750495152565776, 30.851138404050801 ], [ -95.751243152396697, 30.852206404519329 ], [ -95.751815152792659, 30.853099404317923 ], [ -95.752281153220807, 30.853927404982318 ], [ -95.752632152447049, 30.854442405143903 ], [ -95.752975153057733, 30.854991405251205 ], [ -95.754188153665865, 30.856998405237157 ], [ -95.757548154445615, 30.862224405637122 ], [ -95.757789154471538, 30.862592406105055 ], [ -95.758148154553169, 30.863113406071996 ], [ -95.758529154518172, 30.863618406671421 ], [ -95.758933155272231, 30.864114406024651 ], [ -95.759353155428258, 30.864597406090084 ], [ -95.759796155643329, 30.865064406714893 ], [ -95.764945156668773, 30.870370407840142 ], [ -95.765118157359666, 30.870556407671927 ], [ -95.765319157370612, 30.870771407533208 ], [ -95.766776157460257, 30.872234407569081 ], [ -95.77282715927673, 30.878310408750291 ], [ -95.773391159042347, 30.878909409200311 ], [ -95.773933160072573, 30.879522409285752 ], [ -95.774452159328021, 30.880147408853919 ], [ -95.774825159511238, 30.880632409012296 ], [ -95.77778016079138, 30.884517409504671 ], [ -95.778133160884138, 30.884367409826826 ], [ -95.778273161276047, 30.884328409823105 ], [ -95.778541160591786, 30.884290409886802 ], [ -95.778624161514458, 30.884290409286294 ], [ -95.778796161539347, 30.884098409269001 ], [ -95.778860161041834, 30.884076410045605 ], [ -95.779028161177635, 30.88408040985421 ], [ -95.779057161153503, 30.884081409200704 ], [ -95.779121161405868, 30.884065409831255 ], [ -95.779146160993974, 30.884026410018837 ], [ -95.779146161325244, 30.883949409209933 ], [ -95.779210161624562, 30.883817409700171 ], [ -95.779287160714276, 30.883779409808167 ], [ -95.779344160776034, 30.883730409792413 ], [ -95.779433160903665, 30.883565409372093 ], [ -95.77944616068406, 30.883504409639414 ], [ -95.779414161115326, 30.883235409451974 ], [ -95.779389161052578, 30.883163409589791 ], [ -95.779376161150196, 30.883037409186034 ], [ -95.779395160736115, 30.882955409125739 ], [ -95.779459161188427, 30.882911409786935 ], [ -95.779542160644908, 30.882889409659093 ], [ -95.779657161652906, 30.882834408961113 ], [ -95.779880161565885, 30.882845409325686 ], [ -95.78010316110246, 30.882834409455867 ], [ -95.78029416125419, 30.882839409604298 ], [ -95.780402161598246, 30.882850409377529 ], [ -95.78047216146679, 30.88287840904697 ], [ -95.780517161332, 30.882911408972067 ], [ -95.780606161120616, 30.883494409005774 ], [ -95.780644161380081, 30.88358740911027 ], [ -95.780708161016392, 30.88364240983508 ], [ -95.780886161196278, 30.883757409932858 ], [ -95.780956161946989, 30.8837794093829 ], [ -95.781077161838269, 30.883774409759454 ], [ -95.781128161706491, 30.883763409702688 ], [ -95.781409162101852, 30.88359840930606 ], [ -95.781581162076378, 30.883538409383469 ], [ -95.781695161279146, 30.883472408994685 ], [ -95.781772161936956, 30.88341740922521 ], [ -95.781861161373044, 30.883302409611662 ], [ -95.781855161833022, 30.883153409432936 ], [ -95.781849162239311, 30.88310440943874 ], [ -95.781823161523675, 30.883038409718534 ], [ -95.781817161741969, 30.88291740931237 ], [ -95.781772161534747, 30.882702409260581 ], [ -95.781772161265948, 30.882548409388402 ], [ -95.781791162199411, 30.882444409193493 ], [ -95.781817161743362, 30.882367409416847 ], [ -95.781938161246302, 30.882230409016717 ], [ -95.782123161572585, 30.882131409207268 ], [ -95.78223116211403, 30.882103409154094 ], [ -95.782562161978532, 30.882098409425513 ], [ -95.782754161794713, 30.88207140933055 ], [ -95.78286816217836, 30.882016409260991 ], [ -95.782989162413941, 30.881906409130234 ], [ -95.783079161647606, 30.881774408603377 ], [ -95.783149162343364, 30.881724409241713 ], [ -95.783225161609877, 30.881730409286877 ], [ -95.783295162451637, 30.881752409385076 ], [ -95.783391162020578, 30.881823409423106 ], [ -95.783538162511462, 30.881895409286429 ], [ -95.783608162490879, 30.881917409195978 ], [ -95.783754161688506, 30.88191140904026 ], [ -95.783818161713512, 30.881879409389324 ], [ -95.783894161732135, 30.88178040932879 ], [ -95.783818162396514, 30.881461408560728 ], [ -95.783793162349554, 30.881400408973125 ], [ -95.783716162002662, 30.881279409226277 ], [ -95.78351916214929, 30.881082408888368 ], [ -95.783500162022463, 30.881049408879942 ], [ -95.783493161578306, 30.880950408922391 ], [ -95.783512161912597, 30.880928408823216 ], [ -95.783742162256189, 30.880911408634645 ], [ -95.784385162005506, 30.881038409247342 ], [ -95.784545162499001, 30.881043408789704 ], [ -95.784704162899359, 30.881038408843754 ], [ -95.78491416273323, 30.880961408990704 ], [ -95.784997161997254, 30.880917408406376 ], [ -95.785086162541532, 30.880840409125568 ], [ -95.785150162194427, 30.880769408639242 ], [ -95.785207162375002, 30.88067540871721 ], [ -95.785284162190976, 30.880444408933851 ], [ -95.785322162702002, 30.880279408526992 ], [ -95.785380162373045, 30.8801644084364 ], [ -95.785475162383946, 30.880043408884756 ], [ -95.785507162415769, 30.879917408861953 ], [ -95.785431162259258, 30.879779408104124 ], [ -95.785252162119633, 30.879735408918222 ], [ -95.785042162096389, 30.879741408335207 ], [ -95.784844161867483, 30.87977440816622 ], [ -95.784749162834146, 30.879774408469657 ], [ -95.784621161796437, 30.879741408698344 ], [ -95.784558162432504, 30.879653408778292 ], [ -95.784513162345746, 30.879559408196879 ], [ -95.784500161732836, 30.879400408751529 ], [ -95.784539162654767, 30.879312408754661 ], [ -95.784666162773476, 30.879164408847661 ], [ -95.784755161944858, 30.87908140882681 ], [ -95.78493416220185, 30.878960408231563 ], [ -95.785112162245056, 30.87889540865045 ], [ -95.785227161936575, 30.878894408372346 ], [ -95.785424162315763, 30.878939408245238 ], [ -95.785552162885296, 30.879005408458863 ], [ -95.785807162810869, 30.879202408311926 ], [ -95.785915162242844, 30.879246408553374 ], [ -95.786011163113585, 30.879241408221617 ], [ -95.786113162644199, 30.879197408176299 ], [ -95.786183162301739, 30.879153408089607 ], [ -95.786240162910843, 30.87908240801611 ], [ -95.786317162847652, 30.879010407984886 ], [ -95.786425162603962, 30.878972408288611 ], [ -95.78648916308687, 30.878867408246187 ], [ -95.786667162414858, 30.878730407925957 ], [ -95.786750163201532, 30.878686408109015 ], [ -95.786801162698524, 30.878669408689348 ], [ -95.78690916259086, 30.878675408375926 ], [ -95.786941163094511, 30.878697408068163 ], [ -95.787018163170245, 30.878779408600312 ], [ -95.78708116322052, 30.878884408661428 ], [ -95.787119163204906, 30.879021408666134 ], [ -95.787126162678803, 30.879153408711566 ], [ -95.78716416340437, 30.879291408237318 ], [ -95.787215162681036, 30.879362408135187 ], [ -95.78732316286974, 30.879406408152189 ], [ -95.787438162839237, 30.879412408205496 ], [ -95.788050162972525, 30.879022408488638 ], [ -95.788438163688269, 30.878747408093297 ], [ -95.788572163394463, 30.878620408405684 ], [ -95.788897163538635, 30.878274408029615 ], [ -95.789133163534089, 30.878082407980827 ], [ -95.789286163300488, 30.877978407784909 ], [ -95.789350163423435, 30.877950408231104 ], [ -95.789407163863984, 30.877939408307885 ], [ -95.789477163346362, 30.877945408061258 ], [ -95.789566163328715, 30.877961408462209 ], [ -95.789834163141066, 30.878044407978393 ], [ -95.790108163122625, 30.878126407853944 ], [ -95.790255163782916, 30.878154408098133 ], [ -95.79034416415179, 30.878121407828012 ], [ -95.790529163243392, 30.877956407853311 ], [ -95.790611163709599, 30.877917407703901 ], [ -95.79070116366114, 30.877912408150735 ], [ -95.790803163315445, 30.877928407879129 ], [ -95.790905164279906, 30.877967407875079 ], [ -95.790981163354516, 30.878022408306769 ], [ -95.791032164083319, 30.878099407677052 ], [ -95.79113416391273, 30.878418408432626 ], [ -95.791198163701665, 30.878549408357088 ], [ -95.79124216391908, 30.878599408517633 ], [ -95.791287164415024, 30.87861540820083 ], [ -95.791350164339377, 30.878604407839099 ], [ -95.791516164373007, 30.878533408234137 ], [ -95.791612163750159, 30.878505408130131 ], [ -95.791835163986207, 30.878478408258733 ], [ -95.792039164434613, 30.878489408304642 ], [ -95.792121164589389, 30.878506407785977 ], [ -95.792179164242157, 30.878528408027069 ], [ -95.792332164534386, 30.878587408375179 ], [ -95.792408164505616, 30.878616408152265 ], [ -95.792638163959296, 30.878660408362261 ], [ -95.792829164756313, 30.878682407627551 ], [ -95.792950164321255, 30.87867140841098 ], [ -95.793332164305866, 30.878555407761791 ], [ -95.793976165153083, 30.878302407535823 ], [ -95.794065164598166, 30.878281408355999 ], [ -95.794141164217152, 30.878281407804351 ], [ -95.794256164582691, 30.878314407785506 ], [ -95.794313164340423, 30.878347408193306 ], [ -95.79449216522417, 30.878484407859208 ], [ -95.794632164605403, 30.87853940760812 ], [ -95.794708165135802, 30.878550408029508 ], [ -95.794772164548263, 30.878544407582186 ], [ -95.794842164773058, 30.878511408003128 ], [ -95.794963165023191, 30.878391408251947 ], [ -95.795040165115424, 30.878330408282491 ], [ -95.795231165226014, 30.87821540829448 ], [ -95.795339165060795, 30.878171407938282 ], [ -95.795441165373504, 30.878143408089844 ], [ -95.795543165153987, 30.878132407580473 ], [ -95.795906164726631, 30.878171408213852 ], [ -95.796081165068912, 30.87818240774471 ], [ -95.796423165714501, 30.878204407411125 ], [ -95.796578164997271, 30.878108407572235 ], [ -95.796646164878041, 30.878066408132401 ], [ -95.796665165165422, 30.877973408103866 ], [ -95.796690165219545, 30.877803407418458 ], [ -95.796741165417345, 30.877616407338486 ], [ -95.796786165712447, 30.877544407620341 ], [ -95.796850165034101, 30.877490407445624 ], [ -95.796939165864458, 30.877451407461557 ], [ -95.797047164873348, 30.877424407876756 ], [ -95.797716165957283, 30.87734740761497 ], [ -95.797856165125069, 30.877308407448293 ], [ -95.797996165890197, 30.877242407821068 ], [ -95.798462166116039, 30.876957407578697 ], [ -95.799296166049331, 30.876539407570245 ], [ -95.799386165982781, 30.8764684072611 ], [ -95.799596165785118, 30.876226407285728 ], [ -95.799825166411523, 30.876039407269218 ], [ -95.799972166448683, 30.875934407392037 ], [ -95.800118165818986, 30.875869406917534 ], [ -95.80029716653732, 30.875825407055995 ], [ -95.800921166400968, 30.875764406888397 ], [ -95.801272166740944, 30.875709406736139 ], [ -95.801571166315682, 30.875643407031788 ], [ -95.801813166375013, 30.875577406927071 ], [ -95.802030166224043, 30.875534406869409 ], [ -95.802476166910026, 30.8754954074655 ], [ -95.802686167160033, 30.875446407288017 ], [ -95.802897166602293, 30.875363407143006 ], [ -95.803247167346953, 30.875000406690766 ], [ -95.803407167291397, 30.874739406782854 ], [ -95.803929166528746, 30.874173406372378 ], [ -95.804101166886554, 30.873958406770644 ], [ -95.804197167148615, 30.873804406820948 ], [ -95.804286167341459, 30.873700406531341 ], [ -95.804381167392194, 30.873623406273794 ], [ -95.804432167388626, 30.873596406689945 ], [ -95.804560167026779, 30.873563406350076 ], [ -95.804789167538004, 30.873568406690492 ], [ -95.805057167208943, 30.873596406903228 ], [ -95.805248167099734, 30.873579406732912 ], [ -95.805305166809859, 30.87353540625876 ], [ -95.805363167262783, 30.873453406138985 ], [ -95.805598167261039, 30.873035406253152 ], [ -95.80582816723205, 30.872963406807497 ], [ -95.806153166953706, 30.872903406270591 ], [ -95.806229167107659, 30.872865406510471 ], [ -95.80652216739152, 30.872661406221322 ], [ -95.806624167936647, 30.872612406776124 ], [ -95.806726168002598, 30.872579406241069 ], [ -95.807089167906554, 30.872562406672831 ], [ -95.807516168257663, 30.872529406161693 ], [ -95.807994167866454, 30.872480406473169 ], [ -95.808459167585085, 30.872414406307755 ], [ -95.808695167959129, 30.872370406025787 ], [ -95.809147167739184, 30.872249405894362 ], [ -95.809370168384675, 30.872166405863453 ], [ -95.809759167880301, 30.872002406388546 ], [ -95.81002016881078, 30.871870406437012 ], [ -95.810237168430504, 30.871727405798115 ], [ -95.810491168460956, 30.871523405759273 ], [ -95.810581168685843, 30.8711444054757 ], [ -95.81064416843526, 30.870941405571006 ], [ -95.810714168881077, 30.870792405822311 ], [ -95.810797168853938, 30.870655405996501 ], [ -95.810912168438207, 30.870540405589789 ], [ -95.811058168188382, 30.870441405405817 ], [ -95.811141168640319, 30.870402405689234 ], [ -95.811332168918369, 30.870353405400575 ], [ -95.811536168294552, 30.870331405997383 ], [ -95.811664169093689, 30.870287405895247 ], [ -95.811696168492787, 30.870254405964356 ], [ -95.811721168764365, 30.870188405326346 ], [ -95.811721169128305, 30.870116405762701 ], [ -95.811695168886644, 30.870029405887728 ], [ -95.81153616859099, 30.869666405803827 ], [ -95.811504169164337, 30.869534405269068 ], [ -95.811504169027174, 30.869408405954587 ], [ -95.811523168988657, 30.869287405649075 ], [ -95.81160616813581, 30.869056405729481 ], [ -95.811638168583343, 30.868754404946312 ], [ -95.81167016845724, 30.868594405196166 ], [ -95.811734168756232, 30.868451405241679 ], [ -95.811772168337569, 30.868396404879903 ], [ -95.811829168952343, 30.868341404888628 ], [ -95.811944168389076, 30.868259405623604 ], [ -95.812058168873406, 30.8682044056408 ], [ -95.812141168728388, 30.868176404792077 ], [ -95.812154169117221, 30.868171405205263 ], [ -95.812205169071404, 30.868132405482516 ], [ -95.812313169248199, 30.86797940536518 ], [ -95.812377169296639, 30.867940405492131 ], [ -95.812460169192931, 30.867924405297178 ], [ -95.812562168557577, 30.867951405542918 ], [ -95.812657168895527, 30.867990405254105 ], [ -95.812721169263909, 30.867995405017457 ], [ -95.812848169250586, 30.867940405142722 ], [ -95.812925168808135, 30.867880405418017 ], [ -95.812989169413513, 30.867814404952004 ], [ -95.812995168937505, 30.867759405098511 ], [ -95.813002169191847, 30.867737404710923 ], [ -95.813021168628808, 30.867674404737333 ], [ -95.813027168621204, 30.867654405176509 ], [ -95.813071169328296, 30.86761640519039 ], [ -95.813180169182587, 30.867605404668623 ], [ -95.813237168520857, 30.867583405255409 ], [ -95.813264168706951, 30.867583404965629 ], [ -95.813339169556386, 30.867583404641358 ], [ -95.813403169021569, 30.867572405045966 ], [ -95.813466169085899, 30.867583405275962 ], [ -95.813549168922904, 30.867627405035922 ], [ -95.81372116895291, 30.867660405436709 ], [ -95.813798168895701, 30.867643405474627 ], [ -95.813936169329764, 30.867589404717801 ], [ -95.81395716896408, 30.867588405329666 ], [ -95.814033169039703, 30.867649404806013 ], [ -95.814110169182328, 30.867660405436638 ], [ -95.814161169470523, 30.867649404858987 ], [ -95.814225168831015, 30.867594405092216 ], [ -95.814320168858657, 30.867374405351573 ], [ -95.814371169325142, 30.867302404543015 ], [ -95.814416169113358, 30.867264405055835 ], [ -95.814486169197295, 30.867242404854832 ], [ -95.81469016923775, 30.867253404743487 ], [ -95.814811169822818, 30.867308404965524 ], [ -95.81489316933785, 30.867412405356671 ], [ -95.814989169535451, 30.867753404640073 ], [ -95.815047169139277, 30.867819404965946 ], [ -95.815168169552777, 30.867874404825379 ], [ -95.815314169384536, 30.86787940494294 ], [ -95.815397169577167, 30.86797340508009 ], [ -95.815429169523924, 30.868094405240459 ], [ -95.815607169813177, 30.868357404855512 ], [ -95.815645169520835, 30.868385405238239 ], [ -95.815715169987783, 30.868390404710457 ], [ -95.815741169699251, 30.868368404902675 ], [ -95.815754169283395, 30.868324404729293 ], [ -95.815817169834048, 30.868198405090915 ], [ -95.815856169895355, 30.868154404969516 ], [ -95.815926169408172, 30.868099404654203 ], [ -95.816149169509544, 30.867984404598264 ], [ -95.816187169406419, 30.867984404997667 ], [ -95.816257169444938, 30.868006405444188 ], [ -95.816378169619867, 30.86810540484062 ], [ -95.816550169387469, 30.868181405404545 ], [ -95.816627170241034, 30.868225404859942 ], [ -95.816671169862929, 30.868231405264901 ], [ -95.81672217024402, 30.868275404757355 ], [ -95.81676717000849, 30.868374405058749 ], [ -95.816843170480311, 30.868484404842857 ], [ -95.816875170221735, 30.868577404746723 ], [ -95.816913169640685, 30.868929405422318 ], [ -95.816894170334564, 30.869121405460774 ], [ -95.816901170033148, 30.869182405707463 ], [ -95.816945170454062, 30.869248405633865 ], [ -95.816983169957268, 30.869281405120468 ], [ -95.817028170093664, 30.869297405367924 ], [ -95.817079169729283, 30.869292405440877 ], [ -95.817226170615754, 30.869193405091323 ], [ -95.817461170483256, 30.868989405181768 ], [ -95.817519170214666, 30.868951405031495 ], [ -95.81761417060811, 30.868929405639467 ], [ -95.817684170568526, 30.868951405311684 ], [ -95.817735170681942, 30.868995405280248 ], [ -95.817786170204357, 30.869072405444427 ], [ -95.817856170087353, 30.869314405333505 ], [ -95.817895170160142, 30.869374404855591 ], [ -95.817952170368926, 30.869418404853324 ], [ -95.818028170504732, 30.869440405362528 ], [ -95.818111169932024, 30.869440405200834 ], [ -95.818239170050063, 30.869418405105673 ], [ -95.818385170091091, 30.869368405403868 ], [ -95.818513170455759, 30.869313404838621 ], [ -95.818589170122124, 30.869264405069412 ], [ -95.818634170758386, 30.86919840536255 ], [ -95.818755171006671, 30.869088405289816 ], [ -95.818799170628083, 30.869072405141385 ], [ -95.818850170214603, 30.869066405009011 ], [ -95.818946170771198, 30.869072405415359 ], [ -95.818978170171064, 30.869022405276798 ], [ -95.818978170673674, 30.869000405440907 ], [ -95.818914170504456, 30.868951405355595 ], [ -95.818869170440038, 30.868890404690049 ], [ -95.818857170764403, 30.86875340500395 ], [ -95.818863170478537, 30.868703405418795 ], [ -95.818914170706833, 30.868648405157487 ], [ -95.8190161707915, 30.868615405407329 ], [ -95.819201170159644, 30.868610405479636 ], [ -95.819328170339787, 30.868626405010492 ], [ -95.819704170430199, 30.868632404924423 ], [ -95.819806171208441, 30.868626404868035 ], [ -95.819920170819657, 30.868604404896445 ], [ -95.820213170443807, 30.868505404904774 ], [ -95.820354170943915, 30.868478405193525 ], [ -95.82039817073202, 30.86847840532775 ], [ -95.820570171062215, 30.868511405061504 ], [ -95.820672170635405, 30.868582405141272 ], [ -95.820730171009046, 30.868720405114836 ], [ -95.820755171112552, 30.86882440528229 ], [ -95.820742171347831, 30.868912404646171 ], [ -95.820711170718624, 30.868989405408776 ], [ -95.820704170789625, 30.869055404922584 ], [ -95.820749171284007, 30.869121405369111 ], [ -95.820813171083842, 30.869165405039205 ], [ -95.820914170984182, 30.869198405181329 ], [ -95.821131171575757, 30.869209405178605 ], [ -95.821239171211204, 30.86919840538318 ], [ -95.821469171453529, 30.869066405418621 ], [ -95.821501171691054, 30.8690164047335 ], [ -95.82150717126089, 30.868928405350371 ], [ -95.821488171049609, 30.868758404898159 ], [ -95.821462170740091, 30.868637404551574 ], [ -95.821239171281505, 30.868088405276694 ], [ -95.821233171129052, 30.86801140446557 ], [ -95.8212391708729, 30.867923405039154 ], [ -95.821271171022801, 30.867879405238121 ], [ -95.821392171284529, 30.867796404900343 ], [ -95.821488170710609, 30.867780404560175 ], [ -95.821653171162836, 30.867772404622055 ], [ -95.821940170972795, 30.867758404465391 ], [ -95.821965171451396, 30.867736404419357 ], [ -95.821997171216751, 30.867615404512357 ], [ -95.822055171431956, 30.867593405057416 ], [ -95.822106171332678, 30.867593404585694 ], [ -95.822182171549031, 30.867626404984744 ], [ -95.822239171275882, 30.867719405115306 ], [ -95.82227817165824, 30.867807405007003 ], [ -95.82225517100369, 30.867898405053673 ], [ -95.822214171122823, 30.86806040524657 ], [ -95.822214171703237, 30.868181404849953 ], [ -95.822252170958947, 30.868241404905969 ], [ -95.822310171781353, 30.868280404466113 ], [ -95.822424171655285, 30.868296404842734 ], [ -95.822482171007621, 30.868291404612464 ], [ -95.822564171934729, 30.868241404865181 ], [ -95.822666171814362, 30.868148404633207 ], [ -95.822775171501064, 30.867961404892924 ], [ -95.822787171105404, 30.867845404633524 ], [ -95.822653171942662, 30.867692404439993 ], [ -95.822628171254777, 30.86762040435427 ], [ -95.822628171222831, 30.867499404733124 ], [ -95.822672171652457, 30.867450404939692 ], [ -95.822749171234832, 30.86738940473218 ], [ -95.822838171014979, 30.867345404645132 ], [ -95.823348171971375, 30.867197404425546 ], [ -95.823685171161074, 30.867109404684815 ], [ -95.823756171303486, 30.867021404685993 ], [ -95.823762171648411, 30.866900404931702 ], [ -95.82378717130986, 30.866862404640379 ], [ -95.823838171216522, 30.866823404238311 ], [ -95.823940172158643, 30.86677940407818 ], [ -95.824061172009564, 30.866768404501546 ], [ -95.824150171822708, 30.866741404802454 ], [ -95.824252171898351, 30.866675404537517 ], [ -95.824392171832685, 30.866603404151572 ], [ -95.824412172151398, 30.866361404334203 ], [ -95.824443171751852, 30.866185404653187 ], [ -95.824507171438611, 30.866048404275634 ], [ -95.824571172029422, 30.865977404367079 ], [ -95.82469817191496, 30.865933404738495 ], [ -95.824838171604881, 30.865938404749233 ], [ -95.824959171952614, 30.865971404121201 ], [ -95.825042171888242, 30.866037403879673 ], [ -95.825087172141039, 30.866119404669494 ], [ -95.825119172314828, 30.866213403960611 ], [ -95.825208172426386, 30.866246404087175 ], [ -95.825323172225822, 30.8662624047622 ], [ -95.825386171795699, 30.866240404621866 ], [ -95.825533172221085, 30.866163404236318 ], [ -95.825628171784501, 30.866020404136698 ], [ -95.82567917242433, 30.865888404126743 ], [ -95.825737171997048, 30.86580140397438 ], [ -95.825940171853702, 30.865696404009345 ], [ -95.826023172199086, 30.865718404367353 ], [ -95.826087172530876, 30.865768404317233 ], [ -95.826202172487001, 30.865789404682655 ], [ -95.826272172385416, 30.865751403974215 ], [ -95.826444172696142, 30.865592403954661 ], [ -95.826546172179775, 30.865537404148757 ], [ -95.826679172371129, 30.865515404103348 ], [ -95.826813172483654, 30.86552640411762 ], [ -95.826960172177095, 30.86555340420443 ], [ -95.827087172839654, 30.865591404542553 ], [ -95.827195172464471, 30.865674403962174 ], [ -95.827253172560589, 30.865751403890719 ], [ -95.827285172987075, 30.86583940449901 ], [ -95.827355172939178, 30.865960404398063 ], [ -95.827399173036326, 30.865993404317845 ], [ -95.827514172068192, 30.865993404132112 ], [ -95.827680172891746, 30.865971404205069 ], [ -95.82782617255522, 30.865905404482852 ], [ -95.827928172702528, 30.865822403870315 ], [ -95.828132172286743, 30.86563040438228 ], [ -95.82837417224728, 30.86553640453122 ], [ -95.828463172900953, 30.865465404161355 ], [ -95.828508173127204, 30.865377404060105 ], [ -95.828514173063581, 30.865283404365176 ], [ -95.828469173069323, 30.865091403667506 ], [ -95.828374173045447, 30.865020404439107 ], [ -95.828272172869205, 30.864992403878933 ], [ -95.827953172185545, 30.864998403619907 ], [ -95.827743173055126, 30.864976403696598 ], [ -95.827629172977865, 30.864948404154951 ], [ -95.827520172501423, 30.864910404326203 ], [ -95.827335172711926, 30.86482240384424 ], [ -95.827284172578686, 30.864767404331783 ], [ -95.827208172190907, 30.864668404418218 ], [ -95.827087171966596, 30.864448404076757 ], [ -95.826947172498407, 30.863981403602864 ], [ -95.826927171817644, 30.863833403493771 ], [ -95.826953172311775, 30.863723403865645 ], [ -95.827010172004222, 30.863586403424694 ], [ -95.827093172649583, 30.863476403911704 ], [ -95.827169172067869, 30.863426403414589 ], [ -95.827322172815613, 30.863410403646071 ], [ -95.827450172293211, 30.863492403440752 ], [ -95.827660172024352, 30.863651403615656 ], [ -95.827756172091711, 30.863695404001447 ], [ -95.827826172374955, 30.863706403573762 ], [ -95.827864172455946, 30.863695403962261 ], [ -95.827934172165712, 30.863591403665264 ], [ -95.827972172259905, 30.863497404038302 ], [ -95.827940172111539, 30.863080403894916 ], [ -95.827889172627536, 30.862970403488266 ], [ -95.827870172309929, 30.862893403495391 ], [ -95.827896172909519, 30.862860403709675 ], [ -95.827953172457327, 30.862838403600197 ], [ -95.828061172356016, 30.862832403445775 ], [ -95.82819517213386, 30.862843403988709 ], [ -95.828494172663611, 30.862909403651532 ], [ -95.828628172729623, 30.862948403618589 ], [ -95.8287361726575, 30.863003403947701 ], [ -95.828858172922338, 30.863091403649644 ], [ -95.829106172371013, 30.863244403913583 ], [ -95.829240172810032, 30.863255403420808 ], [ -95.829335173046999, 30.863222403650472 ], [ -95.829393172832425, 30.863173403492286 ], [ -95.829425173421654, 30.863090403339861 ], [ -95.829418173056169, 30.862992403417053 ], [ -95.82938617271715, 30.862904403180885 ], [ -95.829316172480034, 30.862849403740466 ], [ -95.82925917290774, 30.862827403754181 ], [ -95.829170172498266, 30.862810403377114 ], [ -95.829080173095193, 30.86276640362059 ], [ -95.829017173280448, 30.862711403606767 ], [ -95.828966173239621, 30.862563403789217 ], [ -95.82898517274927, 30.862475403116761 ], [ -95.829048173113833, 30.862376403065621 ], [ -95.829163172972244, 30.862250403143896 ], [ -95.829290172663733, 30.862184402983935 ], [ -95.829475172801665, 30.862112403646517 ], [ -95.82965417304338, 30.862063402975021 ], [ -95.829775173006226, 30.862101403127074 ], [ -95.829959173012156, 30.862101403730115 ], [ -95.830131172831898, 30.862129402936951 ], [ -95.830284173250462, 30.862189403069411 ], [ -95.830405173372029, 30.862271403316811 ], [ -95.830495172692608, 30.862359403766948 ], [ -95.8308011734632, 30.862810403353382 ], [ -95.83087717329262, 30.862898403624289 ], [ -95.831119173301332, 30.863315403511844 ], [ -95.831177173125781, 30.863387403214372 ], [ -95.831279173682944, 30.863458403628933 ], [ -95.831368173464156, 30.863486403861508 ], [ -95.831438173145585, 30.863491403392842 ], [ -95.831661173290499, 30.863442403886513 ], [ -95.83180117324072, 30.863354403252998 ], [ -95.832132173320062, 30.863288403885669 ], [ -95.832393173791033, 30.863271403463031 ], [ -95.832489174220257, 30.86328840380931 ], [ -95.832616173626491, 30.86333740389971 ], [ -95.832763173681954, 30.863469403846747 ], [ -95.833037173976209, 30.863815403521492 ], [ -95.833062174047129, 30.863876404024278 ], [ -95.833069173383166, 30.863991403927873 ], [ -95.832903174035422, 30.864128403733684 ], [ -95.832865173767175, 30.864123403952824 ], [ -95.832776174322461, 30.864051403250709 ], [ -95.832699174265869, 30.863859404066481 ], [ -95.832667174220049, 30.863832403863171 ], [ -95.832623173645601, 30.86382640317558 ], [ -95.832540174232264, 30.863848403843985 ], [ -95.832457173212475, 30.863887403857039 ], [ -95.832381173955767, 30.863909403838527 ], [ -95.832177174050656, 30.863997404050071 ], [ -95.832101173472111, 30.864052404069973 ], [ -95.832043173309017, 30.864222404042014 ], [ -95.831967173992396, 30.864293403902398 ], [ -95.831935173238477, 30.864343403427853 ], [ -95.831916173888573, 30.86443140346119 ], [ -95.831929173527968, 30.864574403636034 ], [ -95.831986174129497, 30.864695404003488 ], [ -95.832209173377649, 30.864772403536129 ], [ -95.832598173469535, 30.864870404141325 ], [ -95.833127173822234, 30.865057403468885 ], [ -95.833184173572548, 30.865112403751919 ], [ -95.833273174135897, 30.865145403991022 ], [ -95.833350174152926, 30.865156403627289 ], [ -95.833477174117206, 30.865161404052323 ], [ -95.83359217447682, 30.865145403401328 ], [ -95.833885173970813, 30.865150404041142 ], [ -95.833974174584441, 30.86513440375532 ], [ -95.834286174122084, 30.8649364037725 ], [ -95.834445174028474, 30.864853403541787 ], [ -95.834655174088397, 30.864870403493267 ], [ -95.834815174104946, 30.864936403797543 ], [ -95.834879174674896, 30.865029404149151 ], [ -95.834987173933385, 30.865068403921651 ], [ -95.835095174510386, 30.865073403915321 ], [ -95.835184174967722, 30.865029403968769 ], [ -95.83522217497628, 30.864958403702506 ], [ -95.835305174861176, 30.86487540416325 ], [ -95.835363174479937, 30.864897404122583 ], [ -95.835426174956027, 30.864908404082314 ], [ -95.83549617473976, 30.864903403374839 ], [ -95.835668174373581, 30.864738403703139 ], [ -95.835764174525409, 30.864666403740287 ], [ -95.835968174593077, 30.864584403577222 ], [ -95.836012174400054, 30.864518403729075 ], [ -95.836012175168719, 30.864435403964119 ], [ -95.835936174859555, 30.864276403279792 ], [ -95.835968174577019, 30.864210403858667 ], [ -95.83617117456798, 30.864067403529162 ], [ -95.836280174311526, 30.863974403241158 ], [ -95.836356174282457, 30.863875403062337 ], [ -95.836458174411334, 30.863776403479317 ], [ -95.836554174407638, 30.86373740314168 ], [ -95.836624174430725, 30.863743403142117 ], [ -95.836668174549658, 30.863792403535541 ], [ -95.836770174911237, 30.863847403430388 ], [ -95.836859175303573, 30.863957403885127 ], [ -95.836936174870416, 30.864232403885325 ], [ -95.837019174633312, 30.864292403494844 ], [ -95.837153175368698, 30.864331403918964 ], [ -95.837350174949606, 30.864347403523066 ], [ -95.837579175277114, 30.86423740358639 ], [ -95.837656175565698, 30.864171403686349 ], [ -95.83773917465615, 30.86407840364377 ], [ -95.837783174809559, 30.864045403421496 ], [ -95.837841175032395, 30.864045403427419 ], [ -95.837866175457734, 30.864083403615322 ], [ -95.837879175279554, 30.864138403789152 ], [ -95.837949174804066, 30.864199403078146 ], [ -95.838102175026151, 30.864243403279229 ], [ -95.838274174997593, 30.864264403318611 ], [ -95.838656175539015, 30.864341403353482 ], [ -95.838790175030084, 30.86435240325666 ], [ -95.838879175099578, 30.864303403206378 ], [ -95.839236175163009, 30.864253403735603 ], [ -95.839350175458762, 30.864171403451842 ], [ -95.8393251754906, 30.864017403655417 ], [ -95.839268174986358, 30.86386840314908 ], [ -95.839268175716938, 30.86383040348575 ], [ -95.839299175468412, 30.863764403450098 ], [ -95.839363175231526, 30.863715403748984 ], [ -95.839446175642252, 30.863682403113511 ], [ -95.839739175543102, 30.863649403255121 ], [ -95.839905175275149, 30.863593403173933 ], [ -95.840102175844592, 30.863467403635855 ], [ -95.840159175829896, 30.86344040347057 ], [ -95.840350175470519, 30.863407403173639 ], [ -95.840484175945875, 30.863352402913243 ], [ -95.840548175812131, 30.863258403489112 ], [ -95.840580176167748, 30.863231403156981 ], [ -95.840688175424944, 30.863225402860898 ], [ -95.840745175518748, 30.863269403213422 ], [ -95.84082817595602, 30.863274403227301 ], [ -95.840943175621646, 30.863252402748572 ], [ -95.841198175802873, 30.863143403303301 ], [ -95.841261175850263, 30.863137402962888 ], [ -95.841363176088862, 30.863159402815832 ], [ -95.841421176440377, 30.863208403144014 ], [ -95.841427176442437, 30.86327440347997 ], [ -95.841459176455629, 30.863318402780862 ], [ -95.841523176227753, 30.863329403366457 ], [ -95.841580176419455, 30.863296403570665 ], [ -95.841631176410502, 30.86321440282606 ], [ -95.841675176305642, 30.86317040280256 ], [ -95.841733175968969, 30.863170402946295 ], [ -95.841758175602962, 30.863192403429018 ], [ -95.841803176218363, 30.863269403540947 ], [ -95.841809176502238, 30.863335402955986 ], [ -95.841835176518046, 30.863384403492041 ], [ -95.841867176495739, 30.863390403019899 ], [ -95.841911175933873, 30.863373403130254 ], [ -95.841968176491747, 30.863247403540296 ], [ -95.842109176681987, 30.863252402788426 ], [ -95.842198176651834, 30.863340403447143 ], [ -95.8422421757504, 30.863335403338066 ], [ -95.84228117577031, 30.863307402871222 ], [ -95.842344175714373, 30.863236403045466 ], [ -95.842383176167814, 30.863153403489612 ], [ -95.842357175858538, 30.863071402884099 ], [ -95.842249176687801, 30.862961402795648 ], [ -95.842198175761794, 30.862889403260169 ], [ -95.842191176320725, 30.862851402886449 ], [ -95.842395176610609, 30.862675402986461 ], [ -95.842452176319895, 30.862598403183554 ], [ -95.842478175718583, 30.862527402801557 ], [ -95.84247117599142, 30.862455402711046 ], [ -95.842306176129185, 30.862191402942539 ], [ -95.842344175955006, 30.862147402730134 ], [ -95.842809176657013, 30.862015402899139 ], [ -95.843172176565233, 30.861872402484945 ], [ -95.843274176543417, 30.861861402552201 ], [ -95.843414176381685, 30.861883402763841 ], [ -95.843478176363647, 30.861960402819072 ], [ -95.843516176612496, 30.862037402652959 ], [ -95.843503176125921, 30.862131403117651 ], [ -95.843465176452042, 30.86219740256124 ], [ -95.843452176151914, 30.862240402994704 ], [ -95.843459176100382, 30.862306403083885 ], [ -95.843491176925113, 30.862367403146344 ], [ -95.843586176556741, 30.862427403069777 ], [ -95.844211177014202, 30.862751402905861 ], [ -95.844446176744711, 30.862894403101688 ], [ -95.844561176630577, 30.862949402944867 ], [ -95.844803176376246, 30.862999402570129 ], [ -95.845211177111253, 30.863059402785154 ], [ -95.845287177346819, 30.863042403324073 ], [ -95.845421177131314, 30.862960402539581 ], [ -95.845510176737506, 30.862932402953451 ], [ -95.845676177099136, 30.862971402680671 ], [ -95.845867177027017, 30.863053403061439 ], [ -95.845982177584801, 30.863075403353566 ], [ -95.84628117768851, 30.863091402749813 ], [ -95.846434177642109, 30.863058402835481 ], [ -95.846568176937822, 30.86305840284863 ], [ -95.846689177452873, 30.863036402729474 ], [ -95.846759177806831, 30.862998403340729 ], [ -95.84678517777833, 30.862959402827322 ], [ -95.84676517698459, 30.862882403291469 ], [ -95.846695177346163, 30.862696403020035 ], [ -95.846702177567323, 30.862630403219526 ], [ -95.8467651772918, 30.862580402543493 ], [ -95.846899177305019, 30.862564402411049 ], [ -95.847090177907248, 30.862558402833052 ], [ -95.847243177631924, 30.862569402500988 ], [ -95.847313177039084, 30.862618402431998 ], [ -95.847415177359252, 30.862761402426731 ], [ -95.847492177473583, 30.862849402783837 ], [ -95.847587177451132, 30.862871402904084 ], [ -95.847644177160333, 30.862871402524544 ], [ -95.847753177574262, 30.862833403074703 ], [ -95.847867177914182, 30.862772403220113 ], [ -95.847950178009384, 30.862767402574544 ], [ -95.848020177869103, 30.862816403035936 ], [ -95.848071177360652, 30.862920402646228 ], [ -95.84812917742218, 30.86295940283787 ], [ -95.848237177455019, 30.862992402940638 ], [ -95.848377177832589, 30.863173403131103 ], [ -95.848447177623626, 30.86320140310848 ], [ -95.848562178062537, 30.863184402939545 ], [ -95.848664177589342, 30.863124402587314 ], [ -95.848728177749578, 30.86306940314152 ], [ -95.84879117786231, 30.863052402583378 ], [ -95.84891217744017, 30.863091403008088 ], [ -95.848982177805084, 30.863091403007211 ], [ -95.84904617779921, 30.86303640250874 ], [ -95.849123178104378, 30.863035403250549 ], [ -95.849174178120848, 30.863079403029214 ], [ -95.849237178219553, 30.863156403105592 ], [ -95.849282177937781, 30.863239403227684 ], [ -95.849307177731731, 30.863343403234705 ], [ -95.849429177728439, 30.863475402453847 ], [ -95.849613178565122, 30.863590402637826 ], [ -95.849747178382074, 30.863717403106133 ], [ -95.849830178658948, 30.863761403027858 ], [ -95.849996177897921, 30.863794402826482 ], [ -95.850021178606056, 30.86381040272374 ], [ -95.850079178712861, 30.863936403335227 ], [ -95.850162178774212, 30.864173403154421 ], [ -95.850162177994051, 30.864255403123888 ], [ -95.850142177976892, 30.864327403018624 ], [ -95.850104178367303, 30.864354403237865 ], [ -95.850015177821192, 30.86438240308647 ], [ -95.849837177874122, 30.864343403248711 ], [ -95.849671177651572, 30.864294403441093 ], [ -95.849537178334685, 30.864206402992828 ], [ -95.849346177706039, 30.863986403129918 ], [ -95.849270178097058, 30.863953402705324 ], [ -95.849174178498572, 30.863981402588127 ], [ -95.848811177462721, 30.864008402945021 ], [ -95.848728177436968, 30.864118403462598 ], [ -95.848747177748919, 30.864184403373038 ], [ -95.848907178106131, 30.864338403072558 ], [ -95.849034177862137, 30.864481402743738 ], [ -95.849098178040251, 30.864492403326942 ], [ -95.84923817837668, 30.864459402958019 ], [ -95.849295177558872, 30.864503403166228 ], [ -95.849321178116014, 30.864558402987029 ], [ -95.849302178346122, 30.864662403098894 ], [ -95.849244178063685, 30.864772403156667 ], [ -95.849053177801366, 30.864937403616121 ], [ -95.849034178513733, 30.864976403072212 ], [ -95.84902817796123, 30.865047403044109 ], [ -95.849187178258504, 30.865162403395409 ], [ -95.849315178352057, 30.865206403193891 ], [ -95.849359178401542, 30.865267403634938 ], [ -95.849359177959101, 30.865333402856201 ], [ -95.849321177970907, 30.865470403360529 ], [ -95.849309177622956, 30.865646402889961 ], [ -95.84941717860255, 30.865816403465963 ], [ -95.849455178674162, 30.865948403801756 ], [ -95.849423178593327, 30.866042403088333 ], [ -95.849322178336934, 30.8661404032725 ], [ -95.849232178056099, 30.86628340368701 ], [ -95.849194178080921, 30.866377403262579 ], [ -95.849194177729899, 30.866679403127232 ], [ -95.849226178290351, 30.866827403617787 ], [ -95.849277178203991, 30.866910403165001 ], [ -95.849379178125375, 30.866998403178229 ], [ -95.849437178412188, 30.867064403659228 ], [ -95.849488177809235, 30.867080403502705 ], [ -95.849634178444717, 30.866959403462417 ], [ -95.849723178794662, 30.866965403415467 ], [ -95.849832178681552, 30.86698740333118 ], [ -95.849883178045815, 30.867129403208924 ], [ -95.849902178323035, 30.867245403958322 ], [ -95.850291178913793, 30.867635403301751 ], [ -95.850399178552721, 30.867684403936771 ], [ -95.850495178595779, 30.867673403411096 ], [ -95.850628178651633, 30.867629403703368 ], [ -95.85072417832906, 30.867525403800954 ], [ -95.850768178743408, 30.86733840335523 ], [ -95.850800178284871, 30.867267403981678 ], [ -95.850794178665453, 30.867190403173193 ], [ -95.850800178838853, 30.867124403620469 ], [ -95.85082617814038, 30.867091403251763 ], [ -95.850896179113704, 30.867063403481321 ], [ -95.851029178676384, 30.86703640360308 ], [ -95.851201178163578, 30.867036403986287 ], [ -95.851437178794924, 30.867068403765309 ], [ -95.85146917858259, 30.867129403396746 ], [ -95.851475178911727, 30.867167403348613 ], [ -95.851469178594272, 30.86734340324972 ], [ -95.85154617875682, 30.867387403287609 ], [ -95.851635178578334, 30.867420403851504 ], [ -95.851750179310699, 30.867431403258465 ], [ -95.851820178534496, 30.867425403581237 ], [ -95.851902178864421, 30.867398403684415 ], [ -95.851979178635489, 30.867354403750923 ], [ -95.852119178561878, 30.867217403594523 ], [ -95.852157178652575, 30.867145403913604 ], [ -95.852246179102067, 30.867118403099521 ], [ -95.852335178752796, 30.867112403279918 ], [ -95.852501178987396, 30.867145403426985 ], [ -95.852654179220366, 30.867134403406247 ], [ -95.852979179632825, 30.867084403237321 ], [ -95.853119179393488, 30.867029403656055 ], [ -95.853202179176776, 30.866974403111364 ], [ -95.853253179241293, 30.866919403858741 ], [ -95.853291179459106, 30.866853403789868 ], [ -95.853297179052078, 30.866787403235563 ], [ -95.85329117891456, 30.866700403582509 ], [ -95.853253179165222, 30.86654640300323 ], [ -95.853259179252788, 30.866507403443851 ], [ -95.853303178719671, 30.866458403034979 ], [ -95.853374178999204, 30.866452403256986 ], [ -95.853482179121244, 30.866485403495638 ], [ -95.853603179144756, 30.866535403435126 ], [ -95.853711178764826, 30.866535403466099 ], [ -95.85368617966212, 30.866447403501823 ], [ -95.853641178891706, 30.866392402923552 ], [ -95.853501178782096, 30.866089403245308 ], [ -95.853507179367156, 30.866012403272219 ], [ -95.853545179240385, 30.865947403536659 ], [ -95.85359617940334, 30.865914402950594 ], [ -95.853679179681436, 30.865892403038799 ], [ -95.853768179020719, 30.865891403581749 ], [ -95.85404217886267, 30.865919403236063 ], [ -95.854208179803322, 30.865924403539118 ], [ -95.854386178959544, 30.865913403549779 ], [ -95.854514179327367, 30.865886403348611 ], [ -95.854590179082749, 30.865814403462746 ], [ -95.8546031792538, 30.86573240311661 ], [ -95.854564179923869, 30.865638403228505 ], [ -95.854609179017928, 30.865605402829338 ], [ -95.854864179854289, 30.865539403208434 ], [ -95.85520117942248, 30.865512403049955 ], [ -95.855361179148588, 30.865517403446564 ], [ -95.855507179710486, 30.865561402673347 ], [ -95.855577179630473, 30.865556403342829 ], [ -95.855616179972102, 30.865534402681217 ], [ -95.85560318001761, 30.865385403012908 ], [ -95.855628179611372, 30.86535240289929 ], [ -95.855685179523761, 30.86533640292965 ], [ -95.855775179360421, 30.865352403051229 ], [ -95.85580717987952, 30.865396403270076 ], [ -95.855813180111468, 30.865473402968512 ], [ -95.85580018012439, 30.865577403132079 ], [ -95.855845179551892, 30.865616403185037 ], [ -95.85593418007133, 30.865638403385354 ], [ -95.855998179447752, 30.86563840305271 ], [ -95.856061179558168, 30.865599403037272 ], [ -95.856100180300885, 30.865533402835883 ], [ -95.85606117947701, 30.865319403146707 ], [ -95.856068179369629, 30.865286403117238 ], [ -95.856125179809567, 30.865237402960194 ], [ -95.856208179831498, 30.865204403008619 ], [ -95.856265179663438, 30.865209402970351 ], [ -95.856348179386401, 30.865231402652622 ], [ -95.856456180127168, 30.865330403301623 ], [ -95.856577179779251, 30.8653634030943 ], [ -95.856654180433623, 30.865346403350923 ], [ -95.856724179554405, 30.865313402885565 ], [ -95.856832179643405, 30.865242402772516 ], [ -95.856940179664349, 30.865236403059129 ], [ -95.856979180467178, 30.865258403237995 ], [ -95.857023180486166, 30.865302402662113 ], [ -95.857176179648491, 30.865533403328278 ], [ -95.857253180344543, 30.865560402647969 ], [ -95.857310180102644, 30.865549403281875 ], [ -95.857393179993593, 30.865516402611256 ], [ -95.85744418014319, 30.865461402706362 ], [ -95.85746918036547, 30.865395403182063 ], [ -95.857450179824909, 30.865011402630397 ], [ -95.857456180666091, 30.864901402494944 ], [ -95.857475180176891, 30.864796402810281 ], [ -95.857501180212381, 30.86473640290415 ], [ -95.857615179695074, 30.864598402768678 ], [ -95.857660180669498, 30.86457140313864 ], [ -95.857743180249059, 30.864560402861482 ], [ -95.857851179801344, 30.864565402733664 ], [ -95.857928180117852, 30.86459340303043 ], [ -95.857979180544859, 30.864642402447565 ], [ -95.858023180689401, 30.864719402478443 ], [ -95.858055180550593, 30.865016402822796 ], [ -95.858043179811204, 30.865225402813795 ], [ -95.858049180661197, 30.86533540329896 ], [ -95.858062180514139, 30.865406402820664 ], [ -95.858100180842612, 30.86546140292813 ], [ -95.858157180482422, 30.865483403202539 ], [ -95.858234180869744, 30.865489402694671 ], [ -95.858406180934452, 30.865472402816994 ], [ -95.858508180924147, 30.865477402907423 ], [ -95.858629180215146, 30.865505403162409 ], [ -95.858718180991005, 30.865549403028194 ], [ -95.858827180627088, 30.865642403290842 ], [ -95.858865180063873, 30.865659402775773 ], [ -95.858941180113604, 30.865680403275778 ], [ -95.859018180669835, 30.865686403223364 ], [ -95.859336181078973, 30.865686402743339 ], [ -95.859419180881446, 30.865713402700418 ], [ -95.859617180880392, 30.86582940326776 ], [ -95.859820180431981, 30.865741403211619 ], [ -95.859884180775339, 30.865697402597853 ], [ -95.859922180528045, 30.865658402590231 ], [ -95.859960180903457, 30.865587403042689 ], [ -95.860030181152695, 30.865372402604848 ], [ -95.860081180708221, 30.865295402936873 ], [ -95.860151180590591, 30.865240402859826 ], [ -95.860298180475112, 30.865169403175088 ], [ -95.860419180757944, 30.865158402859286 ], [ -95.860725181060161, 30.865169402949046 ], [ -95.861050181148983, 30.865207403097966 ], [ -95.861183181585133, 30.865234402518123 ], [ -95.861738181315118, 30.865432403221465 ], [ -95.861910181263951, 30.86547040306856 ], [ -95.861973181217948, 30.865476402852146 ], [ -95.862018181637296, 30.865470402840796 ], [ -95.862273181497955, 30.865366402563236 ], [ -95.862133181351354, 30.865239402405727 ], [ -95.862050181532879, 30.865097402616421 ], [ -95.861961181610738, 30.865036402959099 ], [ -95.861903180994716, 30.86495940310402 ], [ -95.861897181398277, 30.864882402870165 ], [ -95.86190918117444, 30.864833403093101 ], [ -95.861979181030065, 30.864783402466252 ], [ -95.862088181426202, 30.864739402523742 ], [ -95.862330181639592, 30.864690403052787 ], [ -95.862476181851122, 30.864640402403257 ], [ -95.862597181905244, 30.86456940281413 ], [ -95.86271218123342, 30.864404402675248 ], [ -95.862769181954235, 30.864343402666737 ], [ -95.862858181385818, 30.864294402466399 ], [ -95.862941181570974, 30.864277402730782 ], [ -95.863089181257607, 30.86429640297807 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 312, "Tract": "48471790301", "Area_SqMi": 103.46662352407216, "total_2009": 1189, "total_2010": 1692, "total_2011": 2319, "total_2012": 1617, "total_2013": 1765, "total_2014": 1865, "total_2015": 1852, "total_2016": 2090, "total_2017": 2120, "total_2018": 2199, "total_2019": 2234, "total_2020": 2018, "age1": 2219, "age2": 6720, "age3": 3204, "earn1": 1008, "earn2": 2869, "earn3": 8266, "naics_s01": 2, "naics_s02": 22, "naics_s03": 6, "naics_s04": 13, "naics_s05": 16, "naics_s06": 23, "naics_s07": 620, "naics_s08": 5, "naics_s09": 17, "naics_s10": 22, "naics_s11": 16, "naics_s12": 64, "naics_s13": 0, "naics_s14": 21, "naics_s15": 96, "naics_s16": 377, "naics_s17": 0, "naics_s18": 486, "naics_s19": 14, "naics_s20": 10322, "race1": 7691, "race2": 3889, "race3": 72, "race4": 263, "race5": 28, "race6": 200, "ethnicity1": 10441, "ethnicity2": 1701, "edu1": 1318, "edu2": 2915, "edu3": 3617, "edu4": 2074, "Shape_Length": 249146.36562420684, "Shape_Area": 2884472378.9551578, "total_2021": 13449, "total_2022": 12142 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.834204164077164, 30.658005362036135 ], [ -95.834187163946709, 30.657874362810073 ], [ -95.833567163536571, 30.653322361229534 ], [ -95.833119163174175, 30.650202360777129 ], [ -95.832851163425715, 30.648335360985797 ], [ -95.832627162586292, 30.646770360021968 ], [ -95.832596162767274, 30.646555359964339 ], [ -95.832553163031974, 30.646257359721819 ], [ -95.832510162524429, 30.645958359722229 ], [ -95.832303163307373, 30.644526359428085 ], [ -95.832218162873971, 30.643933359603277 ], [ -95.831443162829018, 30.638539358851062 ], [ -95.831402162347402, 30.638252358529169 ], [ -95.830678161933619, 30.633261357614238 ], [ -95.830247161857415, 30.630289356768479 ], [ -95.827774160955641, 30.629010356577602 ], [ -95.827613160694725, 30.628921357163858 ], [ -95.827537161146026, 30.628882356567509 ], [ -95.82751716046954, 30.628872356917693 ], [ -95.82741016095261, 30.628819356916047 ], [ -95.82680316050444, 30.628519356844233 ], [ -95.826660160598252, 30.628448357023341 ], [ -95.825859160792774, 30.628027356940215 ], [ -95.822049159358443, 30.626065356565238 ], [ -95.821496158780704, 30.625780356319666 ], [ -95.820373159303017, 30.625202356556496 ], [ -95.820191158838057, 30.625203356058297 ], [ -95.819741159061081, 30.624974356738662 ], [ -95.81970315847451, 30.624955356651444 ], [ -95.819057158856666, 30.624626356488598 ], [ -95.818907158599842, 30.624550356357538 ], [ -95.818896158234722, 30.624544356557465 ], [ -95.818874158399069, 30.624533356660681 ], [ -95.818838158273465, 30.624513355883522 ], [ -95.818817158947951, 30.624502356060226 ], [ -95.814996157188546, 30.622521355906688 ], [ -95.812165157050586, 30.621053356180823 ], [ -95.812113156687246, 30.621026355549922 ], [ -95.810135156022056, 30.619996356051519 ], [ -95.809303155760688, 30.619563355985427 ], [ -95.808303155090528, 30.619039355317799 ], [ -95.808196155741626, 30.618982355925962 ], [ -95.807866154973112, 30.618813355148621 ], [ -95.806464154868493, 30.618085355259694 ], [ -95.802874153726265, 30.616228354964736 ], [ -95.800412153450637, 30.614957354894724 ], [ -95.799511153330272, 30.614491354662999 ], [ -95.79601115221098, 30.612678354511083 ], [ -95.795912152374228, 30.612627354915869 ], [ -95.795813152003163, 30.612575354632472 ], [ -95.790986150968749, 30.610073354199738 ], [ -95.790180150133494, 30.609665354549168 ], [ -95.790125150141023, 30.609637354391118 ], [ -95.790070150179062, 30.609609354210363 ], [ -95.79002615045637, 30.609587354475973 ], [ -95.789881150813002, 30.609512354115484 ], [ -95.782297147777044, 30.605572354081499 ], [ -95.78153514813846, 30.605177354024892 ], [ -95.780442147755778, 30.604612353977991 ], [ -95.780373147290817, 30.604577353879694 ], [ -95.780305147734737, 30.604541353519735 ], [ -95.780276147886568, 30.604526353794256 ], [ -95.780257147416648, 30.604516353478985 ], [ -95.780225147752631, 30.604499353252404 ], [ -95.780145147273728, 30.604458353530717 ], [ -95.780006147580778, 30.604386353234293 ], [ -95.774934146257067, 30.601728353199935 ], [ -95.774812146580572, 30.601664353568651 ], [ -95.774435145491083, 30.601484353189054 ], [ -95.773709146143048, 30.601106353309337 ], [ -95.770218144893462, 30.599288352897894 ], [ -95.766390144222228, 30.597318352392936 ], [ -95.766228143985757, 30.597233352759808 ], [ -95.764086142969674, 30.596133352635825 ], [ -95.762549142174208, 30.595335352390752 ], [ -95.762453142298511, 30.595286352282749 ], [ -95.761550142799848, 30.594821352490765 ], [ -95.759734141457301, 30.593868352338522 ], [ -95.756465141005592, 30.592151352286084 ], [ -95.756364140509447, 30.59209735173792 ], [ -95.750233138971709, 30.588823351897965 ], [ -95.748607139022468, 30.587918351725968 ], [ -95.746042137623775, 30.586490351274378 ], [ -95.745962138349483, 30.586448351312569 ], [ -95.745950137794267, 30.586442350944168 ], [ -95.745935137523929, 30.586434351081994 ], [ -95.74588213809956, 30.586406351277297 ], [ -95.745723137918176, 30.58632235168594 ], [ -95.74551213788682, 30.586210351649523 ], [ -95.744734137763075, 30.585798351603081 ], [ -95.744656137908109, 30.585757350890798 ], [ -95.738541136400542, 30.582513350764959 ], [ -95.73578113469749, 30.581050350838517 ], [ -95.732959134150761, 30.579550350007462 ], [ -95.732942134654252, 30.579541350186219 ], [ -95.728586132649554, 30.577227349891128 ], [ -95.722365131800657, 30.573960349310287 ], [ -95.722256131376113, 30.573903349680304 ], [ -95.711492127876738, 30.568228348818618 ], [ -95.699186124859565, 30.561721347900189 ], [ -95.699021124706292, 30.561634348477149 ], [ -95.697522124465721, 30.560849348015438 ], [ -95.694898123294593, 30.559475347876177 ], [ -95.69202712255651, 30.557953347736046 ], [ -95.690472122558063, 30.557138347551316 ], [ -95.690332122587421, 30.557066347414612 ], [ -95.685197121244912, 30.554405346763545 ], [ -95.685185120593957, 30.554399347031534 ], [ -95.685118120717263, 30.554364347538993 ], [ -95.678251119140995, 30.550772346484734 ], [ -95.674103118218198, 30.548603346316305 ], [ -95.673932117586588, 30.548514346009704 ], [ -95.673907117643012, 30.548501346257957 ], [ -95.673633117507734, 30.548358346202871 ], [ -95.671693117468976, 30.547279346499167 ], [ -95.666415115761978, 30.54456934571218 ], [ -95.666382115998616, 30.544552345622701 ], [ -95.666367115431058, 30.544544345462842 ], [ -95.663839114821869, 30.543219345707747 ], [ -95.664085115330764, 30.543924345440512 ], [ -95.666030115808184, 30.549035346782045 ], [ -95.666066115795942, 30.549214347160468 ], [ -95.66609911593936, 30.549379347191639 ], [ -95.666198115697782, 30.549718346428534 ], [ -95.666320115842538, 30.550050347225209 ], [ -95.666465116048471, 30.550376346564217 ], [ -95.666633116210093, 30.550693346888977 ], [ -95.666824116098482, 30.551000347445274 ], [ -95.66703011594528, 30.551296346808808 ], [ -95.667251115785376, 30.551564347185586 ], [ -95.664253115568684, 30.552413347688663 ], [ -95.663703115500084, 30.552541347530411 ], [ -95.66313911558791, 30.552648347262313 ], [ -95.662338115389417, 30.552760347903376 ], [ -95.661521114687432, 30.552905347482145 ], [ -95.660713114418542, 30.553071347583025 ], [ -95.659911114629679, 30.553258348191946 ], [ -95.659118114414966, 30.553466347794153 ], [ -95.658271113912988, 30.55371634779328 ], [ -95.652641112909691, 30.555457348465954 ], [ -95.652328113073281, 30.555566348383365 ], [ -95.652030112541084, 30.555694348433708 ], [ -95.65174011218356, 30.555841348493324 ], [ -95.651466112864327, 30.556007348412805 ], [ -95.651206112142134, 30.55619034875383 ], [ -95.651008112736761, 30.556350349006021 ], [ -95.650039112520588, 30.557189349288016 ], [ -95.649787112045132, 30.557391348575635 ], [ -95.649520111983691, 30.55757534874817 ], [ -95.649238111611311, 30.557742349463908 ], [ -95.648940111470125, 30.557889349114575 ], [ -95.648635111294155, 30.55801934906518 ], [ -95.648315111752197, 30.558126348951014 ], [ -95.647994111069835, 30.558213348773364 ], [ -95.647659111943213, 30.558280349042771 ], [ -95.646504111269437, 30.558436348963685 ], [ -95.646118110638099, 30.55848834899485 ], [ -95.643607110301858, 30.558929349956617 ], [ -95.642883110481009, 30.559087349381773 ], [ -95.641715110481485, 30.559390349607984 ], [ -95.641334110208518, 30.55946134940956 ], [ -95.640830109334118, 30.559678349307649 ], [ -95.640434109573349, 30.559877350206833 ], [ -95.64004511012449, 30.560092349720144 ], [ -95.639671109612848, 30.560327350097115 ], [ -95.639320109048086, 30.560580349740121 ], [ -95.63897610930799, 30.560848350344894 ], [ -95.638656109366636, 30.561134350087141 ], [ -95.638427109174359, 30.561439350268582 ], [ -95.638175109653702, 30.561731350212462 ], [ -95.637901108671144, 30.562011350029909 ], [ -95.637611109437884, 30.562276350828558 ], [ -95.637368109019292, 30.562465350502777 ], [ -95.636179109237872, 30.563393350465784 ], [ -95.635787109079715, 30.563700350427013 ], [ -95.635725108897219, 30.563749350511678 ], [ -95.635662108577009, 30.563797351166926 ], [ -95.635514109104761, 30.563912350457255 ], [ -95.634712108654341, 30.564538350791455 ], [ -95.634315108612583, 30.564634350821056 ], [ -95.633994107819589, 30.564767351143249 ], [ -95.633682107750886, 30.564866351185135 ], [ -95.633178107823227, 30.564948350705329 ], [ -95.632926107698367, 30.565009350860745 ], [ -95.632652108211346, 30.565070350871558 ], [ -95.629783107446698, 30.565833351820043 ], [ -95.629371107218319, 30.565912351770326 ], [ -95.628974106684666, 30.566009351390608 ], [ -95.628578107370416, 30.566129351324509 ], [ -95.628188106602039, 30.566268351824654 ], [ -95.627624106570522, 30.56637535156527 ], [ -95.627097106313713, 30.566447351568417 ], [ -95.626335106438759, 30.567083351893853 ], [ -95.626106106246411, 30.567189351770594 ], [ -95.625579106649852, 30.567470352215601 ], [ -95.625137106326235, 30.567586351970139 ], [ -95.624259105720427, 30.567952352456704 ], [ -95.623626106321993, 30.568652352119489 ], [ -95.623473105496913, 30.56875735209832 ], [ -95.623390105959317, 30.568895351972358 ], [ -95.623275106257935, 30.569158352427497 ], [ -95.623123105964964, 30.569305352572865 ], [ -95.623084105615064, 30.569440352673215 ], [ -95.622955105794361, 30.569677351992706 ], [ -95.622886105809215, 30.569822352363921 ], [ -95.622856105289202, 30.570020352049855 ], [ -95.622817105974335, 30.570186352787676 ], [ -95.622535105589549, 30.571382352375135 ], [ -95.622390106156345, 30.572025352866937 ], [ -95.621903105726858, 30.573286353296456 ], [ -95.621322105338493, 30.574792353075065 ], [ -95.621055105850942, 30.575250353597717 ], [ -95.620897105256546, 30.575495353367913 ], [ -95.620666105709816, 30.575853353442206 ], [ -95.619933105359323, 30.577260353764789 ], [ -95.619621105464262, 30.577867354377002 ], [ -95.619377105328638, 30.578355354470755 ], [ -95.619211105216138, 30.578712354015099 ], [ -95.619026105064663, 30.57911235475709 ], [ -95.618636105577593, 30.579854354421389 ], [ -95.618194105106525, 30.581054354911259 ], [ -95.617065104897989, 30.583223355017147 ], [ -95.616226104456956, 30.585183355825652 ], [ -95.614547104324799, 30.588981356683021 ], [ -95.615318104900282, 30.589141356796031 ], [ -95.615515104610267, 30.589176356184552 ], [ -95.615753104620111, 30.589219356817953 ], [ -95.616584105025652, 30.589450356546475 ], [ -95.61840010517264, 30.590030356767738 ], [ -95.618454106057072, 30.590046356854664 ], [ -95.620811106508555, 30.590739356320327 ], [ -95.620874105712033, 30.590760356293845 ], [ -95.621223105913217, 30.590877356493795 ], [ -95.621574106380038, 30.59103135683829 ], [ -95.621925106915199, 30.591230356731085 ], [ -95.622169107076459, 30.591380357201594 ], [ -95.622474106999817, 30.591583357081685 ], [ -95.622685107024878, 30.591781357160777 ], [ -95.622955107179706, 30.592014357061878 ], [ -95.623145107072489, 30.592242357331912 ], [ -95.623519107396362, 30.592801357149103 ], [ -95.623641107481717, 30.593049357109024 ], [ -95.623809107151985, 30.593442357069609 ], [ -95.623908106967306, 30.593839357287688 ], [ -95.62395410713178, 30.594152357488689 ], [ -95.624023107630961, 30.594854357707863 ], [ -95.624030107469579, 30.595641357452898 ], [ -95.624069106952007, 30.595990357384796 ], [ -95.624145107207212, 30.596334357842718 ], [ -95.624267106956452, 30.596723357917398 ], [ -95.624366107283578, 30.59698435805841 ], [ -95.624503107381827, 30.59730335763722 ], [ -95.624664107644861, 30.597602357810143 ], [ -95.62483210764465, 30.597892357953857 ], [ -95.624954108037045, 30.598058357708432 ], [ -95.625022107426773, 30.598163357990497 ], [ -95.625175108159937, 30.598350358408794 ], [ -95.625274107979024, 30.598493357787397 ], [ -95.625808107445152, 30.599235358230295 ], [ -95.625999107986019, 30.599538358050832 ], [ -95.626266108421973, 30.599933358830484 ], [ -95.626464107646854, 30.60024235863483 ], [ -95.626678108036302, 30.600686358356135 ], [ -95.626754108286221, 30.600875358860417 ], [ -95.626823108018257, 30.601077359008489 ], [ -95.626838108470338, 30.601152358652723 ], [ -95.626907107819335, 30.601365358596752 ], [ -95.62696010828796, 30.60160435857922 ], [ -95.626991107976792, 30.601724358821148 ], [ -95.627075108629569, 30.602260358584104 ], [ -95.627090108319848, 30.602729358830402 ], [ -95.626998107908506, 30.603389359181225 ], [ -95.626907108911212, 30.603748358955134 ], [ -95.62679210793506, 30.604053359127331 ], [ -95.626663108541649, 30.604436359635706 ], [ -95.626281108290215, 30.605380359152942 ], [ -95.625991108334645, 30.606145359543579 ], [ -95.625915108767984, 30.606324359689214 ], [ -95.625701108364709, 30.606857360199147 ], [ -95.625327107887813, 30.607743359843553 ], [ -95.624755107665493, 30.609075360251154 ], [ -95.624275107663593, 30.61026936054888 ], [ -95.623969108353933, 30.610965360829375 ], [ -95.623710108287142, 30.611339360418956 ], [ -95.623405107377394, 30.611768360926021 ], [ -95.62278710743827, 30.612355360697535 ], [ -95.621902107685088, 30.613040361267739 ], [ -95.61927010749308, 30.614963361673311 ], [ -95.619148107214286, 30.615073362137789 ], [ -95.618514107087918, 30.61548236155755 ], [ -95.616171106315448, 30.617236362418986 ], [ -95.615844106604243, 30.617481362173564 ], [ -95.614573105516001, 30.618428362801509 ], [ -95.613715106155666, 30.61906736237145 ], [ -95.613138106150885, 30.619507362467957 ], [ -95.610580104930605, 30.621454363708249 ], [ -95.609016104253769, 30.622625363841049 ], [ -95.608741104974243, 30.622838363621078 ], [ -95.608398104406945, 30.623119363245845 ], [ -95.608329104550208, 30.62316836341753 ], [ -95.607910104558201, 30.623552363389493 ], [ -95.607505104167743, 30.623965363747732 ], [ -95.60698610402595, 30.624559363935997 ], [ -95.605819103815051, 30.625842364419043 ], [ -95.605216103467228, 30.626638364441064 ], [ -95.604881104104209, 30.627002364431522 ], [ -95.604682103858607, 30.627296364431324 ], [ -95.604461104184125, 30.627633365035233 ], [ -95.604301103778553, 30.627994365213347 ], [ -95.604141103464684, 30.628412364471462 ], [ -95.603980103332702, 30.628814365170125 ], [ -95.603645103919845, 30.629808364990144 ], [ -95.603469103245999, 30.630229365565103 ], [ -95.603332103295259, 30.630548364983689 ], [ -95.603164103634967, 30.630885365587385 ], [ -95.602996103166603, 30.631131365829781 ], [ -95.602912103461492, 30.631265365203664 ], [ -95.60279010378899, 30.631444365865395 ], [ -95.602516103450128, 30.631767365782952 ], [ -95.602271103592457, 30.632024365353537 ], [ -95.602020102909975, 30.632257365337871 ], [ -95.601348102977781, 30.632774365706823 ], [ -95.598976102876676, 30.634469366054397 ], [ -95.59857110282212, 30.634828366286669 ], [ -95.59836510305999, 30.635034366451574 ], [ -95.597633102103998, 30.635907366840687 ], [ -95.597076101994062, 30.636621366508521 ], [ -95.596092101755389, 30.637853367313621 ], [ -95.595710101602421, 30.638320367522578 ], [ -95.594917101693184, 30.639297367133533 ], [ -95.594756101657509, 30.639426367038361 ], [ -95.593917101680347, 30.64025836729401 ], [ -95.593693101680557, 30.640464367884327 ], [ -95.592849101022637, 30.641240367899428 ], [ -95.592552101410803, 30.641519367984383 ], [ -95.591903101594951, 30.642173367913252 ], [ -95.59164410156859, 30.642526368092593 ], [ -95.591476100965465, 30.64277636789355 ], [ -95.591316101412716, 30.64309636798632 ], [ -95.591056101511413, 30.643684368428129 ], [ -95.590980101054072, 30.643983368251842 ], [ -95.590515101198534, 30.645572368448811 ], [ -95.59032410094818, 30.646003369123463 ], [ -95.590209101075558, 30.64628336899294 ], [ -95.590171100696494, 30.646349369106506 ], [ -95.590049101521032, 30.646556369158965 ], [ -95.58988910092188, 30.646808369388172 ], [ -95.589485101237216, 30.647292369326358 ], [ -95.588996100820054, 30.64775836907047 ], [ -95.588767100605679, 30.647948369478122 ], [ -95.586639100554819, 30.649366370203133 ], [ -95.585540100006796, 30.650165370199854 ], [ -95.585021100109614, 30.65063637006298 ], [ -95.584701099966523, 30.650941370195817 ], [ -95.584503100241221, 30.651139370017159 ], [ -95.584388099707894, 30.651248369878321 ], [ -95.584068099490665, 30.65156737009449 ], [ -95.583468099389606, 30.652217370398684 ], [ -95.583312100057952, 30.652385370362456 ], [ -95.582992099682187, 30.652797370532546 ], [ -95.582763099175921, 30.653135370831389 ], [ -95.582511099736607, 30.653579370425309 ], [ -95.582252099542472, 30.654088370545587 ], [ -95.582229098905529, 30.654153370550713 ], [ -95.581832099779305, 30.655090371043727 ], [ -95.581344099546811, 30.656116371293887 ], [ -95.581031099719695, 30.656709371809935 ], [ -95.580680099584256, 30.657277371321722 ], [ -95.580276098787138, 30.657842371275795 ], [ -95.579452098865389, 30.659032372047459 ], [ -95.577957098437167, 30.661206372892728 ], [ -95.577901098507766, 30.661321372234379 ], [ -95.577644099015544, 30.661847372241287 ], [ -95.577384098981796, 30.66226137283639 ], [ -95.577064098450961, 30.6629673730104 ], [ -95.577055098295148, 30.662985373014987 ], [ -95.576415098738082, 30.664281373100909 ], [ -95.573831097607297, 30.669846374540118 ], [ -95.573127097431751, 30.671363374541713 ], [ -95.572669097631703, 30.672336374430724 ], [ -95.572402097508217, 30.672702374522167 ], [ -95.572227097802156, 30.672858374686768 ], [ -95.572082097709441, 30.672973375031059 ], [ -95.571945097398654, 30.673120374947967 ], [ -95.570831096977102, 30.673909375041521 ], [ -95.567542096313048, 30.675908375814597 ], [ -95.567297097143125, 30.676051375404001 ], [ -95.566904096589582, 30.676276375648875 ], [ -95.566672096531676, 30.676418375898788 ], [ -95.56603809652276, 30.676808375875535 ], [ -95.565698096335566, 30.676986376233046 ], [ -95.565426096706432, 30.677178375973064 ], [ -95.565212096357428, 30.677352376007317 ], [ -95.565061095939285, 30.677524376354455 ], [ -95.564898095796281, 30.677708376078016 ], [ -95.564853095661718, 30.677767376022654 ], [ -95.564445095600917, 30.678297376536381 ], [ -95.564079096324775, 30.678761376795212 ], [ -95.56396109550586, 30.67890237654035 ], [ -95.563848095990778, 30.679039376235419 ], [ -95.563488096060965, 30.679473376945182 ], [ -95.563216095545869, 30.67979537684662 ], [ -95.562883095293572, 30.680191377003222 ], [ -95.562629095773147, 30.680490376744931 ], [ -95.56254909581034, 30.680583377326023 ], [ -95.562504096061588, 30.680637376988912 ], [ -95.562264095638923, 30.680961377287645 ], [ -95.562009095471169, 30.6813143774555 ], [ -95.561790095843094, 30.681658377089423 ], [ -95.561694095313911, 30.681838376996549 ], [ -95.561413095961555, 30.68236237744388 ], [ -95.561388095757479, 30.682409377301042 ], [ -95.560043095484872, 30.684884378154408 ], [ -95.559993095244025, 30.684977377577436 ], [ -95.559778095660718, 30.68538037815722 ], [ -95.559730095546769, 30.685474378422857 ], [ -95.559328094808052, 30.686300378138132 ], [ -95.558960094927841, 30.686957378474553 ], [ -95.558512094997369, 30.687759378859656 ], [ -95.558222094618671, 30.688286378314903 ], [ -95.557692094841428, 30.689294378518372 ], [ -95.557404094704722, 30.689811379231188 ], [ -95.557178094505261, 30.690217379419732 ], [ -95.557054095043256, 30.690456378678636 ], [ -95.5568120949887, 30.690922379557026 ], [ -95.556770095045664, 30.69100337898325 ], [ -95.55642209422021, 30.691725379037432 ], [ -95.556230094825281, 30.6921273796357 ], [ -95.555963094252078, 30.692680379464235 ], [ -95.555910094866391, 30.692778379667313 ], [ -95.555364094658842, 30.693895379789225 ], [ -95.554895094702928, 30.694646379903979 ], [ -95.5546880943524, 30.69486438048596 ], [ -95.5545670944948, 30.694956379787669 ], [ -95.554364094018084, 30.695080379990547 ], [ -95.553931093916063, 30.695343380382145 ], [ -95.553743094182238, 30.695458379999071 ], [ -95.554180093892583, 30.696018380166411 ], [ -95.554222093821664, 30.6960713806108 ], [ -95.55460309431291, 30.696561380753305 ], [ -95.554765093993538, 30.696768380243483 ], [ -95.555253094592459, 30.697416380687272 ], [ -95.555756094660211, 30.69806438096197 ], [ -95.555822094591548, 30.698156380365361 ], [ -95.55601509538235, 30.698425380352482 ], [ -95.55816209585322, 30.701235381138495 ], [ -95.55883309624393, 30.702083381145016 ], [ -95.559289095516334, 30.702738381477833 ], [ -95.559537096079737, 30.70309338150485 ], [ -95.55966409582183, 30.703286381249782 ], [ -95.55976509604217, 30.703439381263767 ], [ -95.560459096684042, 30.704492381940636 ], [ -95.560889096838153, 30.705143381584666 ], [ -95.561009096723708, 30.705312382172771 ], [ -95.561441096156301, 30.705921382464997 ], [ -95.561604096584801, 30.706150381770119 ], [ -95.562514097329114, 30.70749738262721 ], [ -95.56255009740832, 30.707551382372642 ], [ -95.5632770968366, 30.708655382838295 ], [ -95.564082097398909, 30.709850382679342 ], [ -95.56530509778726, 30.711645382935654 ], [ -95.566192097959743, 30.712984383554129 ], [ -95.566642098735315, 30.713663383425398 ], [ -95.567663099050421, 30.715159383713601 ], [ -95.568047098592785, 30.71572438401531 ], [ -95.569447099070132, 30.717817383846594 ], [ -95.569709099840736, 30.718208383866255 ], [ -95.569946099335326, 30.718563384071643 ], [ -95.570361099065224, 30.719180384275397 ], [ -95.571158099498732, 30.720368384394742 ], [ -95.571420100293892, 30.720768384627696 ], [ -95.572692100499253, 30.722681385244616 ], [ -95.573210100029328, 30.723413384667079 ], [ -95.573774100313173, 30.72417338531136 ], [ -95.574172100774504, 30.724664385637539 ], [ -95.574216100906369, 30.724717385762606 ], [ -95.574481100728491, 30.72502138513866 ], [ -95.57493610060466, 30.725510385260478 ], [ -95.57544510156967, 30.726014385675331 ], [ -95.575918101386932, 30.726448385533967 ], [ -95.576858101962216, 30.727255386042948 ], [ -95.576984101449284, 30.727243385451679 ], [ -95.577147102075216, 30.72722838586408 ], [ -95.577346101698964, 30.727218385452993 ], [ -95.577557101353648, 30.72721738583315 ], [ -95.577479101228747, 30.72674838599562 ], [ -95.577454101730368, 30.726595385601822 ], [ -95.577402102124807, 30.725653385716097 ], [ -95.577418101323161, 30.72504838533396 ], [ -95.577434101064839, 30.723156384503948 ], [ -95.577436101825256, 30.722898384779771 ], [ -95.577405101333369, 30.722332384448833 ], [ -95.577363101262293, 30.72196138426245 ], [ -95.577231101352083, 30.721474385003294 ], [ -95.577267101427012, 30.721450384490499 ], [ -95.577516101585175, 30.721445384876077 ], [ -95.577526101387718, 30.721253384416791 ], [ -95.577612101346389, 30.720788384212796 ], [ -95.577660101394528, 30.720405384464549 ], [ -95.577663101900043, 30.720093383981798 ], [ -95.577592101591748, 30.71989038463558 ], [ -95.577490101041263, 30.719633383964904 ], [ -95.577472100956115, 30.719575384304928 ], [ -95.577358100930454, 30.719210384132062 ], [ -95.577278101296045, 30.718780384147948 ], [ -95.577186100984804, 30.718346383948695 ], [ -95.577336101551381, 30.718335383690562 ], [ -95.578614101710727, 30.718235383536335 ], [ -95.580321102503461, 30.718100384151807 ], [ -95.580864101682025, 30.718055383701802 ], [ -95.581298101894973, 30.718019383788452 ], [ -95.582044102119553, 30.71796238400778 ], [ -95.582852103048523, 30.717850383891673 ], [ -95.583482102563337, 30.717731383220965 ], [ -95.584153102651356, 30.717520383915698 ], [ -95.584681103181239, 30.717359383887842 ], [ -95.585458102917016, 30.717091383287055 ], [ -95.586372103286735, 30.716790383517505 ], [ -95.586919103292914, 30.71660938307631 ], [ -95.587160104060388, 30.71652138313447 ], [ -95.587724103341657, 30.716316383485175 ], [ -95.588391103978239, 30.716072382940119 ], [ -95.588630104074156, 30.715979382961532 ], [ -95.58933710383377, 30.715739382519956 ], [ -95.589736103871303, 30.715575383235873 ], [ -95.590011104656284, 30.715461382460898 ], [ -95.59046610463102, 30.715253383023811 ], [ -95.591258104233688, 30.714882382407676 ], [ -95.592863104743415, 30.714115382524653 ], [ -95.592937104595109, 30.714079382918314 ], [ -95.593395104853101, 30.713850382762516 ], [ -95.593575105140857, 30.713760382067207 ], [ -95.594282105278253, 30.713375382292728 ], [ -95.594833105817315, 30.713082382059561 ], [ -95.594893105955393, 30.713050382449339 ], [ -95.595556105455103, 30.712653382378882 ], [ -95.596618106444041, 30.711978381727285 ], [ -95.597706106242981, 30.711269382055342 ], [ -95.598608106620929, 30.710672381544519 ], [ -95.599407106116161, 30.710161381872915 ], [ -95.599431106354103, 30.710144381275359 ], [ -95.600013106631835, 30.709742381800968 ], [ -95.600045107078358, 30.709722380940121 ], [ -95.600828106945613, 30.709233380977384 ], [ -95.601519106778809, 30.708811381080142 ], [ -95.603095107669347, 30.707793380580746 ], [ -95.604171107681537, 30.707098380317667 ], [ -95.604777107252218, 30.706715380454597 ], [ -95.605442107993099, 30.706317380354413 ], [ -95.606736108589473, 30.705478380486745 ], [ -95.608726108655546, 30.70421537958125 ], [ -95.610139108974764, 30.703376379714943 ], [ -95.611742109411054, 30.702424379939028 ], [ -95.611870109222536, 30.70234937923367 ], [ -95.612986109565853, 30.701685379671598 ], [ -95.613777109264063, 30.701217379459298 ], [ -95.614112109449266, 30.701038378721627 ], [ -95.614524110053821, 30.700855378798657 ], [ -95.614890110390419, 30.700732379374639 ], [ -95.615257110466587, 30.700628379174265 ], [ -95.615646110373632, 30.700546379243807 ], [ -95.616004110700118, 30.700494378582249 ], [ -95.616401110246642, 30.700454378652637 ], [ -95.618232110694237, 30.700235379252959 ], [ -95.618491111088659, 30.700208379158365 ], [ -95.619401111617165, 30.700124378829265 ], [ -95.619412111308336, 30.700123378788309 ], [ -95.621898112220478, 30.699850378390739 ], [ -95.622479111724772, 30.699786378632535 ], [ -95.624257112925974, 30.699588378025748 ], [ -95.625023112480122, 30.699503378172473 ], [ -95.626098113197884, 30.699384378807075 ], [ -95.627113112920483, 30.699212378578235 ], [ -95.628043113754146, 30.699014378131881 ], [ -95.62807411371675, 30.69901037782995 ], [ -95.628738113713794, 30.698892377760924 ], [ -95.631061114294198, 30.698445378403964 ], [ -95.635349115608605, 30.697621377489774 ], [ -95.639411116338351, 30.696840377007497 ], [ -95.640590116633504, 30.696613377576021 ], [ -95.642294116737901, 30.696285376967907 ], [ -95.644576117647361, 30.695846376627252 ], [ -95.645155117398573, 30.695734376566147 ], [ -95.64643811813302, 30.695487376453631 ], [ -95.6465141174764, 30.695472376533683 ], [ -95.647575118072737, 30.695268376641739 ], [ -95.650691118660163, 30.694669376374893 ], [ -95.652046119064025, 30.694408376295602 ], [ -95.661903121638886, 30.692508375933311 ], [ -95.66470312191359, 30.69197037532571 ], [ -95.664840122615686, 30.69194337512954 ], [ -95.671067124386326, 30.690726374666962 ], [ -95.671683124422302, 30.690605375222624 ], [ -95.674193124982096, 30.69011537447863 ], [ -95.681490126693873, 30.688688373933751 ], [ -95.686767128226862, 30.687656373761641 ], [ -95.693707129776882, 30.68634537317245 ], [ -95.701614131084781, 30.68485237223156 ], [ -95.702812131873159, 30.684633372521652 ], [ -95.703384132124327, 30.684552372888334 ], [ -95.703956131535691, 30.684495372152238 ], [ -95.704536132348835, 30.684461372484662 ], [ -95.705116132782578, 30.68444837260553 ], [ -95.706859132746743, 30.684442372634326 ], [ -95.706886132715127, 30.684442372162053 ], [ -95.712535134218001, 30.684423372327991 ], [ -95.717302135777445, 30.684406372092834 ], [ -95.720382136160424, 30.684396372145454 ], [ -95.724900137746658, 30.684380372048086 ], [ -95.730084138469721, 30.684362371826946 ], [ -95.734889139718291, 30.684345371123722 ], [ -95.738952140989753, 30.684331370780587 ], [ -95.740453141692726, 30.684320371141123 ], [ -95.748838143595449, 30.684259370392425 ], [ -95.749099143117988, 30.684257371014432 ], [ -95.749679143474083, 30.684188371200509 ], [ -95.749770143678404, 30.684160370846893 ], [ -95.750289143689969, 30.684036370980742 ], [ -95.753146144687975, 30.683160370310055 ], [ -95.754216145197859, 30.682829370587992 ], [ -95.763481146536279, 30.679958369282385 ], [ -95.764202146728095, 30.679734369363391 ], [ -95.765620147057547, 30.679294368998306 ], [ -95.76854514805386, 30.678387368875224 ], [ -95.772837148735775, 30.677057368913736 ], [ -95.776729150693441, 30.675851368540801 ], [ -95.78275115170014, 30.673984367411059 ], [ -95.787231152422862, 30.672595367397804 ], [ -95.788024152460636, 30.672300367268761 ], [ -95.790916153654933, 30.671440366881061 ], [ -95.792014153934389, 30.671113366813096 ], [ -95.793420153788475, 30.670677366592091 ], [ -95.797815155459517, 30.669314365971246 ], [ -95.799743155971058, 30.668716365937058 ], [ -95.801612156155443, 30.668136365832261 ], [ -95.80489315708337, 30.667119365302629 ], [ -95.806797157272968, 30.666528365241835 ], [ -95.80796815787204, 30.666164365321904 ], [ -95.812179158204941, 30.664857364932054 ], [ -95.824196161298744, 30.661128363070915 ], [ -95.824867161311644, 30.660920363016277 ], [ -95.829829163122469, 30.659378362709244 ], [ -95.833337164151374, 30.658288362418627 ], [ -95.833412164173851, 30.658269362810607 ], [ -95.834040164159489, 30.658075362811633 ], [ -95.834204164077164, 30.658005362036135 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 313, "Tract": "48471790402", "Area_SqMi": 74.727027066990061, "total_2009": 615, "total_2010": 983, "total_2011": 768, "total_2012": 798, "total_2013": 773, "total_2014": 874, "total_2015": 816, "total_2016": 889, "total_2017": 877, "total_2018": 745, "total_2019": 788, "total_2020": 694, "age1": 156, "age2": 490, "age3": 228, "earn1": 110, "earn2": 199, "earn3": 565, "naics_s01": 15, "naics_s02": 4, "naics_s03": 24, "naics_s04": 55, "naics_s05": 33, "naics_s06": 80, "naics_s07": 22, "naics_s08": 9, "naics_s09": 13, "naics_s10": 32, "naics_s11": 3, "naics_s12": 3, "naics_s13": 0, "naics_s14": 147, "naics_s15": 11, "naics_s16": 0, "naics_s17": 6, "naics_s18": 40, "naics_s19": 34, "naics_s20": 343, "race1": 734, "race2": 114, "race3": 5, "race4": 11, "race5": 0, "race6": 10, "ethnicity1": 724, "ethnicity2": 150, "edu1": 78, "edu2": 205, "edu3": 262, "edu4": 173, "Shape_Length": 231367.66742439559, "Shape_Area": 2083261618.0426404, "total_2021": 787, "total_2022": 874 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.777579160935758, 30.884603409784898 ], [ -95.77778016079138, 30.884517409504671 ], [ -95.774825159511238, 30.880632409012296 ], [ -95.774452159328021, 30.880147408853919 ], [ -95.773933160072573, 30.879522409285752 ], [ -95.773391159042347, 30.878909409200311 ], [ -95.77282715927673, 30.878310408750291 ], [ -95.766776157460257, 30.872234407569081 ], [ -95.765319157370612, 30.870771407533208 ], [ -95.765118157359666, 30.870556407671927 ], [ -95.764945156668773, 30.870370407840142 ], [ -95.759796155643329, 30.865064406714893 ], [ -95.759353155428258, 30.864597406090084 ], [ -95.758933155272231, 30.864114406024651 ], [ -95.758529154518172, 30.863618406671421 ], [ -95.758148154553169, 30.863113406071996 ], [ -95.757789154471538, 30.862592406105055 ], [ -95.757548154445615, 30.862224405637122 ], [ -95.754188153665865, 30.856998405237157 ], [ -95.752975153057733, 30.854991405251205 ], [ -95.752632152447049, 30.854442405143903 ], [ -95.752281153220807, 30.853927404982318 ], [ -95.751815152792659, 30.853099404317923 ], [ -95.751243152396697, 30.852206404519329 ], [ -95.750495152565776, 30.851138404050801 ], [ -95.749824151694554, 30.850238403760674 ], [ -95.749137151785888, 30.849347404131361 ], [ -95.748428151187014, 30.848470404025168 ], [ -95.748283151135752, 30.848304403306287 ], [ -95.74656615091601, 30.84633640359322 ], [ -95.744676150082952, 30.844109402840381 ], [ -95.740592148795699, 30.839298402192444 ], [ -95.738708148650446, 30.836927401418151 ], [ -95.7384711485916, 30.836635401744008 ], [ -95.738189148185228, 30.836213401172099 ], [ -95.736786148323503, 30.833933401014633 ], [ -95.736419147420079, 30.833350401231442 ], [ -95.736350147419984, 30.833230401347098 ], [ -95.736308147448042, 30.833162401334381 ], [ -95.735633146983801, 30.832078400609049 ], [ -95.735534147276539, 30.831870400483595 ], [ -95.735336146846436, 30.831573401002682 ], [ -95.734805147232166, 30.830692400688189 ], [ -95.733573147091562, 30.828651400569335 ], [ -95.733184147072521, 30.828014399865257 ], [ -95.732711146228496, 30.827335400176892 ], [ -95.732452145887322, 30.826915400214276 ], [ -95.732406146107635, 30.826841400235001 ], [ -95.732078145818676, 30.82637139949103 ], [ -95.731529146194589, 30.825740400191929 ], [ -95.727538145144649, 30.821052398627934 ], [ -95.726417144039615, 30.819751398367622 ], [ -95.725753144528241, 30.818969398936165 ], [ -95.72507414398045, 30.818160398463153 ], [ -95.724662144394131, 30.817661398425276 ], [ -95.724273143347048, 30.817230398685663 ], [ -95.723304143309576, 30.816081398421129 ], [ -95.723068143366461, 30.81586039843144 ], [ -95.722785143403996, 30.815557398211062 ], [ -95.722511143242997, 30.815276397797231 ], [ -95.722198143560689, 30.815049397613837 ], [ -95.721893142794812, 30.814845397826236 ], [ -95.721305143229969, 30.814548397721953 ], [ -95.720847143148035, 30.814304398181434 ], [ -95.718673141818897, 30.813283397902609 ], [ -95.718459141711079, 30.813182397674648 ], [ -95.715507141167635, 30.811754397638612 ], [ -95.712989140625112, 30.810502397359219 ], [ -95.711440140039983, 30.809781396987635 ], [ -95.711041139818278, 30.809591397647331 ], [ -95.704751138604834, 30.806589396828802 ], [ -95.703042137966648, 30.805774397095394 ], [ -95.701206137607571, 30.804897396914068 ], [ -95.696784135840176, 30.802783396402425 ], [ -95.696426135773066, 30.802594396861725 ], [ -95.695838135504943, 30.802171396099329 ], [ -95.695525135717887, 30.80188139597244 ], [ -95.692031134725738, 30.798494395904164 ], [ -95.690872134194279, 30.79730039569807 ], [ -95.687339133132355, 30.79392239472207 ], [ -95.681793131907384, 30.788429394406002 ], [ -95.681717131591157, 30.788347394532806 ], [ -95.681587131772105, 30.788209394371016 ], [ -95.681396131376786, 30.787976393819548 ], [ -95.681285131376796, 30.787808393815805 ], [ -95.681236131776842, 30.787734393685238 ], [ -95.681098131127882, 30.787494393984627 ], [ -95.680786131379122, 30.786876393482355 ], [ -95.679766131231503, 30.784879393377583 ], [ -95.679061130118853, 30.783501393216046 ], [ -95.677932129997487, 30.781293392425162 ], [ -95.677734130310881, 30.780898392664774 ], [ -95.677570129939085, 30.780579392846509 ], [ -95.67698612944605, 30.779443392607103 ], [ -95.676864129857037, 30.779199392170909 ], [ -95.676393129460607, 30.778278392389893 ], [ -95.674254128961053, 30.774093391858734 ], [ -95.673442128220657, 30.772505391312141 ], [ -95.672065128507484, 30.769811390501047 ], [ -95.671928127973786, 30.769565390984752 ], [ -95.671768127582638, 30.76933239050442 ], [ -95.671584128185003, 30.769109390768527 ], [ -95.671378127826131, 30.768901390271012 ], [ -95.671325127691262, 30.768855390512464 ], [ -95.671157128274089, 30.768707390903124 ], [ -95.670921127364139, 30.768529390917532 ], [ -95.669074126782149, 30.767289390747624 ], [ -95.668954126833924, 30.767206390711305 ], [ -95.668838127417686, 30.767125389923777 ], [ -95.668647127463117, 30.766999390489929 ], [ -95.666667126607024, 30.765668390167619 ], [ -95.664485125594709, 30.764201390334723 ], [ -95.659139124090146, 30.760606389545156 ], [ -95.654594122619201, 30.757550388605694 ], [ -95.653083122597579, 30.756562388394773 ], [ -95.649459121264812, 30.754136388603651 ], [ -95.648879121655227, 30.753770388739866 ], [ -95.64884112101204, 30.753751388466974 ], [ -95.648803121015717, 30.753726388479908 ], [ -95.648536121502389, 30.753589388194634 ], [ -95.648223120690702, 30.753457387988671 ], [ -95.648152120973549, 30.753434388383752 ], [ -95.647765121567787, 30.753307388271967 ], [ -95.647364121242475, 30.75320138847265 ], [ -95.641598119271308, 30.751680388001009 ], [ -95.640755119683703, 30.751457388227937 ], [ -95.63800211822192, 30.750731388123825 ], [ -95.637206118257495, 30.750521388111224 ], [ -95.634729117972952, 30.749867388072609 ], [ -95.634356117042728, 30.749768388407176 ], [ -95.634086117377635, 30.749698388302079 ], [ -95.63367411717897, 30.749589388517585 ], [ -95.631843116309724, 30.74913138806183 ], [ -95.631435116379905, 30.749024388134064 ], [ -95.627951115480585, 30.748110388404303 ], [ -95.627684116004431, 30.748040387726547 ], [ -95.62690711515603, 30.747836388345924 ], [ -95.62642111540211, 30.747703387862042 ], [ -95.62391711438886, 30.747018388292215 ], [ -95.622787114209956, 30.746709387989984 ], [ -95.621007113897775, 30.746237387922839 ], [ -95.617229112564559, 30.745236388239451 ], [ -95.612259110989584, 30.743919387428896 ], [ -95.611004111096861, 30.743586387853384 ], [ -95.609517110982353, 30.743192387997865 ], [ -95.609023111008668, 30.743061387781164 ], [ -95.602862109241556, 30.741428387548133 ], [ -95.602062108588754, 30.74121638765526 ], [ -95.601319108859116, 30.741019387316459 ], [ -95.600387108747398, 30.740772387375841 ], [ -95.596242107362286, 30.739798387998363 ], [ -95.595219107361189, 30.739558387915078 ], [ -95.594774106899038, 30.739416387815073 ], [ -95.59469010717666, 30.739390387944056 ], [ -95.594020106855965, 30.739186387285834 ], [ -95.59381510603049, 30.739090387295498 ], [ -95.593786106071065, 30.739073387542287 ], [ -95.593625106831595, 30.738977387497055 ], [ -95.593137105889681, 30.738678387385335 ], [ -95.592301106288147, 30.738103387345983 ], [ -95.591465106280054, 30.73741738697969 ], [ -95.591036106220031, 30.737066387180853 ], [ -95.590915105537988, 30.736966387248806 ], [ -95.590859105392312, 30.736921387090632 ], [ -95.590716105529424, 30.73681338671722 ], [ -95.590617105547565, 30.736738386712034 ], [ -95.589958105837113, 30.736295387235671 ], [ -95.589622105169525, 30.73667138680841 ], [ -95.589464105209458, 30.736855387376654 ], [ -95.589233105695286, 30.737124387509901 ], [ -95.589108105149634, 30.737341387499065 ], [ -95.589027105042462, 30.737536387248181 ], [ -95.588928105265097, 30.737777387606666 ], [ -95.588534104874768, 30.737791387740902 ], [ -95.587607105056435, 30.7375223876533 ], [ -95.587278104955701, 30.737427387073911 ], [ -95.586831104461567, 30.737298387654686 ], [ -95.586765105150519, 30.737283387397511 ], [ -95.586066104938439, 30.737120387700475 ], [ -95.585768104756639, 30.737050387589822 ], [ -95.585249104758574, 30.736950387034412 ], [ -95.584431103826347, 30.736829387248431 ], [ -95.583664103758039, 30.73671438754981 ], [ -95.583453104301512, 30.736682387043231 ], [ -95.583039103905605, 30.73663238757317 ], [ -95.582745103845156, 30.736596387755945 ], [ -95.581656103184571, 30.736447387535016 ], [ -95.581469103581966, 30.73642138720788 ], [ -95.580234102935222, 30.736252387145541 ], [ -95.579803103158056, 30.736186387278341 ], [ -95.579332102285903, 30.736115387205292 ], [ -95.578302102480009, 30.73597538719757 ], [ -95.57777010182042, 30.735903387186482 ], [ -95.577307102551046, 30.735840387569159 ], [ -95.577060101704234, 30.736092387285954 ], [ -95.576969102596365, 30.736157387540732 ], [ -95.576826102226164, 30.736258387365616 ], [ -95.576795102134739, 30.736275387363875 ], [ -95.576624102514344, 30.736370387208456 ], [ -95.576536101857641, 30.736419387827336 ], [ -95.57632810153487, 30.736534387881818 ], [ -95.575763102085233, 30.736797387473921 ], [ -95.575637102291537, 30.736856387477353 ], [ -95.574889102047763, 30.73720438819317 ], [ -95.574814101246801, 30.737237387956242 ], [ -95.573346101574501, 30.737892388277441 ], [ -95.572355100965325, 30.738333388147673 ], [ -95.572199100909401, 30.73840438834894 ], [ -95.571976100947083, 30.738504388392947 ], [ -95.571328100459993, 30.738800388151301 ], [ -95.570814100650409, 30.739033388567215 ], [ -95.569917100577669, 30.739440388477529 ], [ -95.569298100315578, 30.739721388445393 ], [ -95.567282099704073, 30.740616389167862 ], [ -95.56689909924755, 30.740787388540088 ], [ -95.566061099772568, 30.741081389095704 ], [ -95.565492098882117, 30.741266388965052 ], [ -95.564805098921241, 30.741440389027346 ], [ -95.564554099006344, 30.741503389212419 ], [ -95.563647099335228, 30.741635388862292 ], [ -95.563332098623974, 30.741679389390704 ], [ -95.56250509841675, 30.741750389367002 ], [ -95.561227097888917, 30.741767389583366 ], [ -95.559363097402297, 30.741792389737903 ], [ -95.558639097377906, 30.741803389582376 ], [ -95.558203097774381, 30.741809389736151 ], [ -95.55786009726657, 30.741814389011882 ], [ -95.557176097451972, 30.741816389681205 ], [ -95.554893096924786, 30.741823389417164 ], [ -95.553742096497587, 30.741839389310964 ], [ -95.553205096343291, 30.741846389159559 ], [ -95.552362095795473, 30.741858389760431 ], [ -95.550979095188893, 30.741877389942449 ], [ -95.550324095892336, 30.741883389946224 ], [ -95.550035095536501, 30.741885389599801 ], [ -95.549754095379569, 30.741887389555021 ], [ -95.549604095593779, 30.741888389411415 ], [ -95.549437095660593, 30.741889389713069 ], [ -95.548967095088784, 30.74189238936275 ], [ -95.548893095173838, 30.742499389641697 ], [ -95.548837095180161, 30.74298939031334 ], [ -95.548807095412911, 30.743466390204823 ], [ -95.548803094980329, 30.743534390278608 ], [ -95.548796095030781, 30.744158390280177 ], [ -95.548832095039884, 30.744767390406157 ], [ -95.548891094925921, 30.745579390652431 ], [ -95.548916095701159, 30.745929390716377 ], [ -95.548920095221916, 30.745988390903982 ], [ -95.548999095897599, 30.747103390576864 ], [ -95.549019095465269, 30.747869390746033 ], [ -95.549063095559248, 30.748761390992502 ], [ -95.549069095895106, 30.748873390838725 ], [ -95.549079095273228, 30.749500390901915 ], [ -95.549124095511786, 30.750019391013925 ], [ -95.549273095356469, 30.751100391227919 ], [ -95.549501096083986, 30.752469391456881 ], [ -95.549506095956701, 30.752497391683708 ], [ -95.549616095430579, 30.75329339171202 ], [ -95.549672096454515, 30.753651391627415 ], [ -95.549708095590375, 30.753876391978185 ], [ -95.549788096029161, 30.75438939206785 ], [ -95.549814096169797, 30.754519391927808 ], [ -95.549866096017766, 30.754777392233908 ], [ -95.549962096201114, 30.755252392436713 ], [ -95.550072096326659, 30.755690392167271 ], [ -95.550169096715138, 30.756076392153563 ], [ -95.550368096423213, 30.756747392999717 ], [ -95.550513095843471, 30.757102393130705 ], [ -95.550528095914046, 30.757139392483278 ], [ -95.550826096039799, 30.75775239278331 ], [ -95.550851096651357, 30.757790393015878 ], [ -95.550990096013535, 30.757996392677885 ], [ -95.551241096602297, 30.758405393082384 ], [ -95.551560096385984, 30.758927392768538 ], [ -95.551816097104307, 30.75932239287787 ], [ -95.552062096421196, 30.759701392797602 ], [ -95.552121096875311, 30.759793392864847 ], [ -95.552392097444098, 30.760230393518409 ], [ -95.552749097108929, 30.760815393723952 ], [ -95.552784096848342, 30.76087339342353 ], [ -95.553236097173908, 30.761617393918925 ], [ -95.553448097069079, 30.761965393161439 ], [ -95.55354609767717, 30.762160393200389 ], [ -95.55369609755229, 30.762461393526564 ], [ -95.553760097671031, 30.762606393301407 ], [ -95.553883097127894, 30.762887393796049 ], [ -95.554002097832395, 30.763210393978706 ], [ -95.554025097069044, 30.763287393700136 ], [ -95.554094097735728, 30.763523393947299 ], [ -95.554444097239823, 30.764713394275333 ], [ -95.554646098217361, 30.765397394082054 ], [ -95.554746097955274, 30.765716394392292 ], [ -95.554861097513907, 30.766082394345524 ], [ -95.555021098304408, 30.766593394807266 ], [ -95.555109097868467, 30.766901394226633 ], [ -95.555399097811431, 30.767923394472195 ], [ -95.555505098361621, 30.768426394789781 ], [ -95.555638098284646, 30.769058394483366 ], [ -95.555792098671091, 30.769732395167168 ], [ -95.555934098401849, 30.770356395530602 ], [ -95.556023098407366, 30.770743395240437 ], [ -95.556090098908129, 30.771037395068564 ], [ -95.556267098220943, 30.771764395779588 ], [ -95.55667109830992, 30.773620395827326 ], [ -95.556709098320695, 30.77377639571931 ], [ -95.556945098802174, 30.774902395802997 ], [ -95.556986098750954, 30.775078396440342 ], [ -95.557052098880106, 30.775356396509505 ], [ -95.557075098911355, 30.775430396062497 ], [ -95.557205099069847, 30.775996396688441 ], [ -95.557250099371771, 30.776281396100384 ], [ -95.557388099189126, 30.776830396041838 ], [ -95.557397099040827, 30.776863396245876 ], [ -95.557502098943658, 30.777240396462776 ], [ -95.557525099598948, 30.777311396869621 ], [ -95.557678098884168, 30.777715396250972 ], [ -95.557945098847242, 30.778306396757255 ], [ -95.558624099875871, 30.779786397191391 ], [ -95.558700099169457, 30.779960397233786 ], [ -95.558804100033797, 30.780176397071976 ], [ -95.559478099986791, 30.781568397691192 ], [ -95.559722099660888, 30.782060397187887 ], [ -95.559951099688647, 30.782546397789663 ], [ -95.560157100323295, 30.782951397123728 ], [ -95.560363099860197, 30.783403397891767 ], [ -95.560478100533871, 30.78371239787981 ], [ -95.560523100001248, 30.783845398049568 ], [ -95.560645100743301, 30.784318397406516 ], [ -95.560729100417987, 30.784761398051554 ], [ -95.560973100095879, 30.786306398173188 ], [ -95.561210101092314, 30.787498398387363 ], [ -95.56139310047854, 30.788265398503487 ], [ -95.561627101133297, 30.789026398447959 ], [ -95.561698101125401, 30.789256398946613 ], [ -95.561828100953846, 30.78960339865035 ], [ -95.562454100811166, 30.79132839899555 ], [ -95.562484101628826, 30.791411398970666 ], [ -95.562499101122654, 30.791454399309902 ], [ -95.562560100668819, 30.79159539897277 ], [ -95.562572101555432, 30.791625398995102 ], [ -95.563285101710832, 30.793384399351051 ], [ -95.563499101865602, 30.793933399185111 ], [ -95.563531101871476, 30.793998399853916 ], [ -95.563573101996198, 30.794081399836418 ], [ -95.563708101218992, 30.794354399441257 ], [ -95.563802101339462, 30.794543399474765 ], [ -95.563812101312166, 30.794563399873681 ], [ -95.564527101358706, 30.79592439985176 ], [ -95.564788101925018, 30.796420400211602 ], [ -95.565124102044791, 30.797063399719615 ], [ -95.565612102569844, 30.797969400105085 ], [ -95.566479102136825, 30.799606400703464 ], [ -95.567161102477058, 30.800882400909522 ], [ -95.567886102646611, 30.802253400947894 ], [ -95.568137102618294, 30.802720400784562 ], [ -95.568351103485327, 30.802997401023525 ], [ -95.56850410350215, 30.803172401236047 ], [ -95.56864110324949, 30.803315401593039 ], [ -95.568778103144481, 30.803449401400215 ], [ -95.568893103463495, 30.803575401477243 ], [ -95.569407103062531, 30.804066401615295 ], [ -95.570091104140133, 30.804719401606476 ], [ -95.571555104636687, 30.806133401733121 ], [ -95.571868103894545, 30.806392401334609 ], [ -95.572196104055593, 30.806636401719818 ], [ -95.573295104520056, 30.807409401555855 ], [ -95.573524104676991, 30.807563401981074 ], [ -95.575248105092811, 30.808686402170402 ], [ -95.575324105306038, 30.80874240248346 ], [ -95.575515105658283, 30.808872401738149 ], [ -95.576499105793616, 30.809596402283244 ], [ -95.577766105505475, 30.810508402601517 ], [ -95.578407106548497, 30.810905402727872 ], [ -95.579925106211618, 30.811572402277775 ], [ -95.583053107285181, 30.812488402280703 ], [ -95.587698108922936, 30.814091402380534 ], [ -95.588889108697657, 30.814502403223045 ], [ -95.588960109459975, 30.814558403021746 ], [ -95.589401109044104, 30.814904403087528 ], [ -95.589576108768426, 30.815025403082135 ], [ -95.589988109153225, 30.815381402540773 ], [ -95.590576109704529, 30.816119403473724 ], [ -95.591350110280686, 30.817305403473018 ], [ -95.594480111100438, 30.822103403757058 ], [ -95.594587111343643, 30.82226840440557 ], [ -95.594627111212958, 30.822329404507627 ], [ -95.595786111266889, 30.824105404726893 ], [ -95.596160111031097, 30.824521404109902 ], [ -95.596549111172109, 30.825061404833935 ], [ -95.604427114045478, 30.830130405759565 ], [ -95.608222114935003, 30.832572405957361 ], [ -95.609580115133426, 30.833490405902879 ], [ -95.609962114918844, 30.833772406028153 ], [ -95.610351115030838, 30.834071405733553 ], [ -95.610748115616857, 30.834399406376257 ], [ -95.611083116019799, 30.834863406447084 ], [ -95.612686116425536, 30.836469406003019 ], [ -95.613700116765088, 30.837535406515595 ], [ -95.614349116882863, 30.838086406335865 ], [ -95.619636117830055, 30.842098406916804 ], [ -95.624309119524526, 30.844944407507356 ], [ -95.625732120395028, 30.845811407921051 ], [ -95.627906120979191, 30.847091407455345 ], [ -95.628341120259719, 30.847327407886226 ], [ -95.62879912051433, 30.847522408104027 ], [ -95.629302121047672, 30.847715408162998 ], [ -95.629775120866285, 30.84792340837372 ], [ -95.630096120948537, 30.848014407850972 ], [ -95.630515121237636, 30.848102407801576 ], [ -95.63090512157477, 30.848241408421032 ], [ -95.631347121421939, 30.84830240827295 ], [ -95.635070122647335, 30.848716407970795 ], [ -95.635673123178023, 30.848802408143673 ], [ -95.636131123028903, 30.848891408331212 ], [ -95.636573122967775, 30.849004407961594 ], [ -95.63701612266307, 30.849136407951697 ], [ -95.63744312267842, 30.849290408374685 ], [ -95.637863123658988, 30.849462407846719 ], [ -95.638275123509217, 30.84965640791922 ], [ -95.638664123125366, 30.849868408109089 ], [ -95.638973123795935, 30.850044407845694 ], [ -95.647476125791698, 30.854892409049008 ], [ -95.647559126503992, 30.854940408324101 ], [ -95.647979126164955, 30.855188408716231 ], [ -95.648361125832011, 30.855449408984963 ], [ -95.648734126680623, 30.855726409064761 ], [ -95.64908512646619, 30.856019408697634 ], [ -95.649421126187889, 30.856328408821476 ], [ -95.649734126956005, 30.85665240887953 ], [ -95.650031126388882, 30.856990409191152 ], [ -95.655105128135219, 30.863113410023409 ], [ -95.655509128776572, 30.863590410554583 ], [ -95.655952128808664, 30.864064410534983 ], [ -95.656410129039145, 30.864526410379575 ], [ -95.657753129566444, 30.865692410465233 ], [ -95.657783128738458, 30.865718410427043 ], [ -95.660865130203149, 30.868538410676415 ], [ -95.661132129839643, 30.868783411345245 ], [ -95.661483130568769, 30.86908541132782 ], [ -95.661634129883765, 30.869198411219038 ], [ -95.661849129905335, 30.869359410755663 ], [ -95.662551131115322, 30.869832411130734 ], [ -95.662662130859687, 30.869903411463255 ], [ -95.663192130406529, 30.870246411143441 ], [ -95.66337513109093, 30.87037541142595 ], [ -95.663581130919709, 30.87052141106215 ], [ -95.663947131487049, 30.870811411120343 ], [ -95.664298131607879, 30.871118411750633 ], [ -95.664634131637911, 30.871440411206525 ], [ -95.665778131628571, 30.872728411156842 ], [ -95.666244131991306, 30.873273412092942 ], [ -95.667105132396557, 30.874241412195424 ], [ -95.667960132628167, 30.875203411558854 ], [ -95.66831913258234, 30.875657412464722 ], [ -95.668403132203224, 30.875808411710498 ], [ -95.668578132566211, 30.876144412375435 ], [ -95.668670132824744, 30.876359412004955 ], [ -95.668769132709443, 30.876617411826981 ], [ -95.669067132631696, 30.877561412042812 ], [ -95.670534133236004, 30.882547413406368 ], [ -95.671501134077261, 30.885833414003585 ], [ -95.67208013356057, 30.887677414280031 ], [ -95.672525133730602, 30.889121414527445 ], [ -95.67274413434302, 30.889886414850633 ], [ -95.672904134736868, 30.890359414698537 ], [ -95.673141134664647, 30.890872415203361 ], [ -95.673269134387368, 30.891109415076095 ], [ -95.673400134028824, 30.891353414959458 ], [ -95.673652134166701, 30.891855415326283 ], [ -95.673960135149116, 30.89244441559541 ], [ -95.675392135609385, 30.895183416144057 ], [ -95.675712134845483, 30.895768416187597 ], [ -95.677482135608798, 30.899095416361522 ], [ -95.677650136125791, 30.899377416168395 ], [ -95.677718136297102, 30.899503416227372 ], [ -95.678031136122229, 30.899921416714282 ], [ -95.67831413621154, 30.900277416165892 ], [ -95.678649136423402, 30.900642416312088 ], [ -95.679038136230034, 30.901023416596175 ], [ -95.679450136428315, 30.901403416398026 ], [ -95.680953136938655, 30.90272841686259 ], [ -95.681419136591558, 30.903108417336654 ], [ -95.681800136765617, 30.90350741677673 ], [ -95.682121137769755, 30.903905416840985 ], [ -95.682160137297174, 30.903948417295801 ], [ -95.682487137771275, 30.904311417306435 ], [ -95.682906137969724, 30.904905417383048 ], [ -95.683302138088521, 30.905503417067582 ], [ -95.68339613722965, 30.905645417106456 ], [ -95.683859137556439, 30.905057417244127 ], [ -95.684223137463391, 30.904531417179136 ], [ -95.684592138281445, 30.904165417018469 ], [ -95.684873138444928, 30.903960416813245 ], [ -95.6852001380649, 30.903754416978856 ], [ -95.685582138670185, 30.903506417431238 ], [ -95.685714137699264, 30.903272417240451 ], [ -95.685672138499314, 30.902763416897649 ], [ -95.685366137797331, 30.902067416344078 ], [ -95.685348138457201, 30.901733416984687 ], [ -95.685609138214843, 30.90148041675134 ], [ -95.686035138196388, 30.901168416626398 ], [ -95.68649313846872, 30.901023416251995 ], [ -95.6868621380696, 30.900975416421247 ], [ -95.687197138580231, 30.901048416729246 ], [ -95.688060138618766, 30.901493416326215 ], [ -95.688823138570825, 30.901995416195597 ], [ -95.689834139495431, 30.902269416732075 ], [ -95.69050313975653, 30.902367416531327 ], [ -95.690779139680274, 30.902322416158551 ], [ -95.690868139727272, 30.902168416459244 ], [ -95.690776139530243, 30.901883416173298 ], [ -95.690602139427043, 30.901591416610934 ], [ -95.690641139808704, 30.901359416040691 ], [ -95.690914139295558, 30.901178416639414 ], [ -95.691281139073951, 30.901067416712007 ], [ -95.691605139854047, 30.901100416250188 ], [ -95.692066139723607, 30.901370416204404 ], [ -95.692529139937236, 30.901719416120418 ], [ -95.693029140057064, 30.902386416157221 ], [ -95.693416140277236, 30.903000416452876 ], [ -95.693870140486453, 30.903358416746585 ], [ -95.694253140473108, 30.903509416725925 ], [ -95.694609140104319, 30.903646416823886 ], [ -95.695224140253998, 30.903832417122253 ], [ -95.695842141314387, 30.904106416435258 ], [ -95.69635514052969, 30.90423141701849 ], [ -95.696715140694494, 30.90420841686657 ], [ -95.696972141492779, 30.90414741645381 ], [ -95.697201141570488, 30.904070416421614 ], [ -95.697413141409342, 30.904058416456245 ], [ -95.697535140976441, 30.904111416758443 ], [ -95.697613141756918, 30.904245416601668 ], [ -95.697609140965852, 30.904436416972519 ], [ -95.697326140847565, 30.904785416666467 ], [ -95.697147141373961, 30.905095417292138 ], [ -95.697031141173923, 30.905479416792826 ], [ -95.696995140750943, 30.905648416994005 ], [ -95.696850140839544, 30.905743416967432 ], [ -95.696638140933516, 30.905829416950631 ], [ -95.696012140746788, 30.906004417361263 ], [ -95.695834140853762, 30.906129416824168 ], [ -95.695652140800902, 30.906318416833102 ], [ -95.695537141283992, 30.906540416975783 ], [ -95.695525140561671, 30.906824417325971 ], [ -95.695539141123021, 30.90706141760803 ], [ -95.695636141070509, 30.907192417213256 ], [ -95.695698141280872, 30.907248416933136 ], [ -95.696021140979383, 30.907259417003623 ], [ -95.696523141493188, 30.907219417016659 ], [ -95.696804140769856, 30.907219417265289 ], [ -95.697000141344844, 30.907279417625833 ], [ -95.697131141078671, 30.90738041710614 ], [ -95.697204141580613, 30.907604417542267 ], [ -95.6972491416049, 30.907759417618443 ], [ -95.697438141045737, 30.907819417267781 ], [ -95.697618141328419, 30.907781416947085 ], [ -95.697796141449984, 30.907667417490092 ], [ -95.698061141603262, 30.907540417771688 ], [ -95.698699141608316, 30.907428417105212 ], [ -95.699293142139538, 30.907329417278007 ], [ -95.699359141459027, 30.907305417204835 ], [ -95.699585142355147, 30.90699341700677 ], [ -95.699704142474459, 30.906916417345546 ], [ -95.699837141868855, 30.906867417225602 ], [ -95.700005142315874, 30.90689241700802 ], [ -95.700098142357348, 30.907098417240594 ], [ -95.700254142190303, 30.907407417028566 ], [ -95.700402142367764, 30.907642416983556 ], [ -95.700668142154413, 30.90781541756985 ], [ -95.70091814208125, 30.907879417058052 ], [ -95.701024142708917, 30.907831417001272 ], [ -95.701233142451841, 30.907381416953566 ], [ -95.701387142892926, 30.907141417584505 ], [ -95.701698142096248, 30.906990416712009 ], [ -95.702144142566794, 30.906859416605148 ], [ -95.702692142606963, 30.906761416740505 ], [ -95.702875143147438, 30.906759417402867 ], [ -95.703058142664716, 30.906757416891541 ], [ -95.703167142873156, 30.906895417139044 ], [ -95.703460143033169, 30.906911416593775 ], [ -95.703581142825669, 30.906884416939924 ], [ -95.703766143431153, 30.906856417295266 ], [ -95.704110143217108, 30.906850416559813 ], [ -95.704218143568781, 30.906867416857938 ], [ -95.704352142998587, 30.906911416941092 ], [ -95.704410142800356, 30.906971417270722 ], [ -95.704467143460192, 30.907015416803208 ], [ -95.704467143154105, 30.907147417201891 ], [ -95.704441143646676, 30.907191416626976 ], [ -95.704352142946647, 30.907241416612184 ], [ -95.70404014347055, 30.90732941698743 ], [ -95.703785143476395, 30.907499417188333 ], [ -95.703747143494269, 30.907582417348387 ], [ -95.703766143096331, 30.907757417082163 ], [ -95.703798142596312, 30.907807417121621 ], [ -95.703881143149331, 30.907884416820778 ], [ -95.704085143614648, 30.907906417372047 ], [ -95.704276143559397, 30.907900417496435 ], [ -95.704397142942156, 30.907862417595805 ], [ -95.704754143640386, 30.907669417532563 ], [ -95.704932143704795, 30.907592417317545 ], [ -95.705047143268828, 30.907521416877298 ], [ -95.70520014289734, 30.907504417493865 ], [ -95.705340143071496, 30.907631417213981 ], [ -95.705493143367647, 30.907829417017112 ], [ -95.705710143995887, 30.907823417161765 ], [ -95.705774143228169, 30.907801416824437 ], [ -95.705831143955834, 30.90774141711038 ], [ -95.705908143903059, 30.90763141719766 ], [ -95.705984143184494, 30.90740541689037 ], [ -95.70605414340686, 30.90714741706384 ], [ -95.706080143244549, 30.907103417353753 ], [ -95.706137143783195, 30.907059416525591 ], [ -95.706194143149986, 30.90703741735814 ], [ -95.706341143623987, 30.907043416574567 ], [ -95.706411143780571, 30.907081417112305 ], [ -95.706602143377808, 30.907158416791972 ], [ -95.706806143630814, 30.907334417104916 ], [ -95.706876144161157, 30.907345417066423 ], [ -95.706902144307435, 30.907339417048444 ], [ -95.706946144319645, 30.907317416707457 ], [ -95.707023144159734, 30.907246417345974 ], [ -95.707138143635206, 30.90705341660199 ], [ -95.707214143718673, 30.906878416754729 ], [ -95.707361143690235, 30.906641417244753 ], [ -95.707412143809208, 30.906581416391244 ], [ -95.707622143690912, 30.906471417185642 ], [ -95.70780014379487, 30.906421416299541 ], [ -95.707921144169347, 30.906416416339141 ], [ -95.708291144205191, 30.90642141693511 ], [ -95.70836814464306, 30.90646541678376 ], [ -95.708457144457384, 30.906537416359768 ], [ -95.708585144113812, 30.906751416485054 ], [ -95.708674144267761, 30.906828417234049 ], [ -95.7087951437763, 30.906839416389065 ], [ -95.708980144814504, 30.906756416701448 ], [ -95.709063144337165, 30.906663416678128 ], [ -95.709164144328184, 30.906448416487795 ], [ -95.70915814450332, 30.906212416255407 ], [ -95.709113144774449, 30.90604241641735 ], [ -95.709145143871424, 30.905849416655311 ], [ -95.709196143913175, 30.905712416799645 ], [ -95.709260144471926, 30.905613416532546 ], [ -95.709362144865793, 30.905531416841779 ], [ -95.709496143929854, 30.905492416250262 ], [ -95.709604143907228, 30.90548741687687 ], [ -95.709712144426021, 30.905541416742349 ], [ -95.709916144627229, 30.90571741611323 ], [ -95.709974144553527, 30.905789416703577 ], [ -95.70999914496123, 30.905882416225825 ], [ -95.709980144382939, 30.905998416585479 ], [ -95.709917144762542, 30.906163416791575 ], [ -95.709757144910682, 30.906421416928787 ], [ -95.709757144827904, 30.906514416946159 ], [ -95.709827144677931, 30.90672341714416 ], [ -95.709904144128217, 30.906828417121698 ], [ -95.710057144214232, 30.906877416492048 ], [ -95.710210144539317, 30.90689941717962 ], [ -95.710331144710167, 30.906987416837509 ], [ -95.710382144418048, 30.907064416461925 ], [ -95.710510145186547, 30.907339416539056 ], [ -95.710650145307142, 30.907520416650776 ], [ -95.710765144943423, 30.907778417282259 ], [ -95.710828144638072, 30.90784441689884 ], [ -95.710918144603014, 30.90785541723837 ], [ -95.710981144421154, 30.907839417258433 ], [ -95.711230145030243, 30.907531416990388 ], [ -95.711313145031113, 30.907333416721425 ], [ -95.711466144957697, 30.907278416834359 ], [ -95.711587145193064, 30.907289417101069 ], [ -95.711676144822832, 30.90732741644586 ], [ -95.711740144998828, 30.907393416457371 ], [ -95.711804144826516, 30.907547416817888 ], [ -95.712052145073272, 30.907685417073136 ], [ -95.712237145091592, 30.907706416877719 ], [ -95.712371145589131, 30.907745416627332 ], [ -95.712435145155169, 30.907783416432757 ], [ -95.712498145044734, 30.907937416509647 ], [ -95.712448145564068, 30.908174416598914 ], [ -95.712403145162796, 30.908267416987865 ], [ -95.712288145268573, 30.90837741740296 ], [ -95.712091145228328, 30.908481416866852 ], [ -95.711702145012708, 30.908586417330152 ], [ -95.711402144796622, 30.90872341710369 ], [ -95.711192144515564, 30.908938417263961 ], [ -95.711077144683614, 30.909119417540452 ], [ -95.711077144666746, 30.909251417559599 ], [ -95.711141144649091, 30.909328417222518 ], [ -95.711218145237979, 30.909367417581063 ], [ -95.711313144708797, 30.909366417165749 ], [ -95.711434145138355, 30.909339416858106 ], [ -95.711677144720539, 30.909201417263393 ], [ -95.711804144968085, 30.909163417412017 ], [ -95.711932145188229, 30.909097417525238 ], [ -95.712091144741223, 30.909064417027281 ], [ -95.712276145678516, 30.909053416941738 ], [ -95.712461145075451, 30.909080417205899 ], [ -95.712607145472475, 30.909091417286017 ], [ -95.712703145380587, 30.909141416794863 ], [ -95.71285614566915, 30.909295417033537 ], [ -95.712951145376593, 30.909438417140748 ], [ -95.712990145862392, 30.909569417506056 ], [ -95.712964145710856, 30.909635417341075 ], [ -95.712932145924157, 30.909679417138317 ], [ -95.712856145190827, 30.9097404169196 ], [ -95.712786145267373, 30.909767417142252 ], [ -95.712633145498259, 30.909762417151825 ], [ -95.712352145722036, 30.909778417262629 ], [ -95.712142145704888, 30.909828416824265 ], [ -95.712034145716842, 30.909866417620972 ], [ -95.71193214517335, 30.90996041725257 ], [ -95.711945145168244, 30.910108417439908 ], [ -95.711989145446964, 30.91022941758704 ], [ -95.712117145406495, 30.910427417320925 ], [ -95.712244145127016, 30.910581417348816 ], [ -95.712308145136788, 30.910685417493681 ], [ -95.712429145737573, 30.910812417768117 ], [ -95.712631145028709, 30.910970417856458 ], [ -95.712793145327979, 30.911097417567579 ], [ -95.712895145721006, 30.911103417415472 ], [ -95.71299714546987, 30.911064417095652 ], [ -95.713060145197886, 30.911009417818178 ], [ -95.713098145651955, 30.910867417236624 ], [ -95.713092145534461, 30.910614417750111 ], [ -95.713054145536006, 30.910460417141092 ], [ -95.713060145514746, 30.910278416974233 ], [ -95.713117145581336, 30.910081417670487 ], [ -95.71321914539557, 30.910004417480977 ], [ -95.713430145622013, 30.910053417632366 ], [ -95.713474145315303, 30.910119417227229 ], [ -95.713519146072571, 30.910262417450838 ], [ -95.713545145620216, 30.910476417087029 ], [ -95.713589145653813, 30.910592417122455 ], [ -95.713985146044976, 30.910718417031187 ], [ -95.714208146323116, 30.910828417053722 ], [ -95.714437145825428, 30.910888417236606 ], [ -95.714851146339996, 30.910965417630884 ], [ -95.715043145905923, 30.910987417430267 ], [ -95.715183146276331, 30.910932416926542 ], [ -95.715247145648263, 30.91079541723424 ], [ -95.71520814638734, 30.910668417697728 ], [ -95.715113146235296, 30.910569417198875 ], [ -95.714966146517071, 30.910454417304543 ], [ -95.714807145635206, 30.910311417199445 ], [ -95.714698145984499, 30.910146416941949 ], [ -95.714686145971669, 30.910014416861106 ], [ -95.714756145468357, 30.909926417504828 ], [ -95.714819145745039, 30.909877417376173 ], [ -95.714991145820463, 30.909805417080808 ], [ -95.715265146364118, 30.909728417016382 ], [ -95.715571146163441, 30.909657417408404 ], [ -95.715724146565094, 30.909635417476789 ], [ -95.715845146650153, 30.909640417502263 ], [ -95.715954146490688, 30.909673417045152 ], [ -95.716100146610856, 30.90976141674992 ], [ -95.716266146545649, 30.909838416712674 ], [ -95.716381146256921, 30.909876417263785 ], [ -95.71643214647959, 30.909970417350539 ], [ -95.716432145930355, 30.910096417166777 ], [ -95.716266146171463, 30.910300417289335 ], [ -95.716031146605459, 30.910552417400723 ], [ -95.71586514627883, 30.910888417629664 ], [ -95.715814145992823, 30.911240416980498 ], [ -95.715846146304031, 30.911333417579229 ], [ -95.715897146593676, 30.911399417133076 ], [ -95.716076146097194, 30.91145941778689 ], [ -95.716299146620202, 30.911459417071544 ], [ -95.716515146941816, 30.911410416998052 ], [ -95.716694146033447, 30.9113054170205 ], [ -95.716828146424547, 30.911212416966649 ], [ -95.717019146823645, 30.911025417416791 ], [ -95.717427146719061, 30.910679416934268 ], [ -95.717618146435754, 30.910547417364661 ], [ -95.717707147161605, 30.910398417436252 ], [ -95.71786014643898, 30.910101417082497 ], [ -95.717987146940416, 30.910041417107095 ], [ -95.718134146725347, 30.910013417226001 ], [ -95.718357147009982, 30.909925416691252 ], [ -95.718453147050383, 30.909843416804527 ], [ -95.718484146448077, 30.90977141706421 ], [ -95.718484146775253, 30.909634416923833 ], [ -95.7184211465934, 30.90934341715144 ], [ -95.71836314646167, 30.909161416946084 ], [ -95.718191146847914, 30.909024416454457 ], [ -95.71817814709415, 30.90894741685587 ], [ -95.718223146501145, 30.908881416722547 ], [ -95.718280146722293, 30.908837417252215 ], [ -95.718414146480001, 30.908771416717265 ], [ -95.718624146742542, 30.908634416827418 ], [ -95.718713147347827, 30.9085954170436 ], [ -95.71883514696394, 30.908568416327157 ], [ -95.718943146498688, 30.908562417124045 ], [ -95.719153147056403, 30.908573417024087 ], [ -95.719351147029599, 30.908606416558712 ], [ -95.719459147243768, 30.908672416359831 ], [ -95.719600146807707, 30.908710417152836 ], [ -95.719797147597248, 30.908727416344458 ], [ -95.719861147503536, 30.90874341634353 ], [ -95.719950147245555, 30.90883141690826 ], [ -95.719963147553727, 30.909161417273737 ], [ -95.719982147049947, 30.909287416559916 ], [ -95.720027146915783, 30.909381417159128 ], [ -95.720091147715507, 30.909403416999773 ], [ -95.720116147818317, 30.909392416931055 ], [ -95.720314147815188, 30.909359416495302 ], [ -95.720448147392744, 30.909298417096284 ], [ -95.72065814692354, 30.909249416942195 ], [ -95.720830147845206, 30.909221417082353 ], [ -95.721110147088368, 30.909205416775912 ], [ -95.721263147155184, 30.909210417146664 ], [ -95.721601147800897, 30.909122417032325 ], [ -95.721792147287545, 30.90904041660739 ], [ -95.721901148111883, 30.908974416344758 ], [ -95.721952147953488, 30.908875416506486 ], [ -95.72190714811434, 30.908787416500065 ], [ -95.721869148111921, 30.908292416536224 ], [ -95.72194514799402, 30.908122416789212 ], [ -95.72204114745297, 30.908028416274316 ], [ -95.72220614767285, 30.907973416655434 ], [ -95.722410148317195, 30.907968416392613 ], [ -95.722646148373343, 30.907984416393635 ], [ -95.722818148168756, 30.908061416266413 ], [ -95.722984147783365, 30.908171416303098 ], [ -95.723022148306654, 30.908341416582999 ], [ -95.723073148288009, 30.908440416337406 ], [ -95.723182148108123, 30.908545416627824 ], [ -95.723341148126366, 30.908539416785874 ], [ -95.723449148028863, 30.908522416367806 ], [ -95.723526148584526, 30.908495416583673 ], [ -95.723577147835869, 30.908440416631759 ], [ -95.723641148265173, 30.908374416510192 ], [ -95.723685147893207, 30.908242416338645 ], [ -95.72367914858016, 30.907989416654551 ], [ -95.723660148217519, 30.907874416416458 ], [ -95.723608148477624, 30.907780416559568 ], [ -95.723500148037729, 30.907693416185527 ], [ -95.723149147747122, 30.907478416584052 ], [ -95.723143148440641, 30.907319415933497 ], [ -95.723156147632281, 30.90729141637042 ], [ -95.723264147810738, 30.907236416443013 ], [ -95.723697147666783, 30.907126416550103 ], [ -95.72398414824994, 30.906972416584285 ], [ -95.724163148424083, 30.906983415808249 ], [ -95.724284148444625, 30.906956415866325 ], [ -95.724360147975105, 30.90690141602688 ], [ -95.724481148799853, 30.906857416525224 ], [ -95.724660148342878, 30.906857416528826 ], [ -95.724921148341522, 30.906956416340023 ], [ -95.724985148794389, 30.906994416476632 ], [ -95.725030148016316, 30.906989415856806 ], [ -95.725316148166456, 30.906895416402783 ], [ -95.725437148283973, 30.906813416369516 ], [ -95.725692148856325, 30.906796416053911 ], [ -95.725871148840326, 30.906686416329816 ], [ -95.725915149171072, 30.906598415922758 ], [ -95.72587714831306, 30.906411416052165 ], [ -95.725890148985357, 30.906208416385507 ], [ -95.726126149102953, 30.906131416178479 ], [ -95.726240148446294, 30.906076416221421 ], [ -95.726457148619488, 30.906004416305404 ], [ -95.726597148267956, 30.905999416357634 ], [ -95.726801148771742, 30.905900415785002 ], [ -95.726884148707938, 30.905834416281696 ], [ -95.726935148459816, 30.905762415655484 ], [ -95.727050149351967, 30.905636415883613 ], [ -95.727024149121149, 30.905537415631002 ], [ -95.726941148736387, 30.905499416064572 ], [ -95.726890149045303, 30.905449415892797 ], [ -95.726820149276435, 30.905339415807415 ], [ -95.726833148638704, 30.905207415818769 ], [ -95.726871148785065, 30.905081415754207 ], [ -95.726947148614329, 30.904993416087105 ], [ -95.727043148837055, 30.90492741543801 ], [ -95.727330148444594, 30.904767415691548 ], [ -95.727521148489387, 30.904641415757901 ], [ -95.727629149093261, 30.904526415567897 ], [ -95.727667148969687, 30.904443415372118 ], [ -95.727674149279395, 30.904311415720311 ], [ -95.727712149232474, 30.904262415248905 ], [ -95.728005148569252, 30.904069415230261 ], [ -95.728324149402937, 30.903838415278049 ], [ -95.728406149264913, 30.903734415329616 ], [ -95.728483149547941, 30.903613415258484 ], [ -95.728642148704395, 30.90347041532176 ], [ -95.72881414886875, 30.903360415124865 ], [ -95.728973148812287, 30.903333414880894 ], [ -95.729056149637387, 30.903332414928855 ], [ -95.729439149277852, 30.903288415393867 ], [ -95.729636149551055, 30.903217415639368 ], [ -95.729719149494002, 30.90316741517189 ], [ -95.729847149006105, 30.903013415457643 ], [ -95.729891149430088, 30.902645414776167 ], [ -95.729929149160853, 30.902447415158317 ], [ -95.729980149174096, 30.902365415205701 ], [ -95.730044149808535, 30.902304415130576 ], [ -95.730203149835063, 30.902227414722379 ], [ -95.730286149703375, 30.902216414986899 ], [ -95.730503150123738, 30.902205415042523 ], [ -95.730617150063253, 30.902216415501915 ], [ -95.730732149235664, 30.902249415446743 ], [ -95.730885149314673, 30.902414414920415 ], [ -95.730962150256659, 30.902667415270983 ], [ -95.731096149640493, 30.9028324155177 ], [ -95.731191149871989, 30.902859415571509 ], [ -95.731382149369793, 30.90289241490817 ], [ -95.731707149877025, 30.902886415165547 ], [ -95.731892150452325, 30.90296341498372 ], [ -95.731975150214978, 30.903046415280972 ], [ -95.732084150477576, 30.903112414875537 ], [ -95.732256150156346, 30.903100415023612 ], [ -95.732351149971649, 30.902980414946029 ], [ -95.73240215009568, 30.902837415080111 ], [ -95.732396150630052, 30.902705414956028 ], [ -95.732402149585781, 30.90251841525853 ], [ -95.732313150193249, 30.90233641523049 ], [ -95.732160150199121, 30.90212241461408 ], [ -95.731962150004676, 30.901968414901138 ], [ -95.731866150255954, 30.90174341520644 ], [ -95.731873149420935, 30.901633415070254 ], [ -95.731943149777166, 30.901419414973144 ], [ -95.732127149518206, 30.901424414426973 ], [ -95.732198150078503, 30.901468414894911 ], [ -95.732300149702837, 30.901573414575733 ], [ -95.732344150028027, 30.901666414787186 ], [ -95.732466150180443, 30.901803415267654 ], [ -95.732561150186854, 30.901847414717626 ], [ -95.732669149892928, 30.901847414636922 ], [ -95.732752150056257, 30.901831414800053 ], [ -95.733007150390378, 30.901754414971933 ], [ -95.733116150470508, 30.901693415176556 ], [ -95.733179150105499, 30.901611414493125 ], [ -95.733192150019377, 30.901550414656281 ], [ -95.733179150402933, 30.901188414322309 ], [ -95.733192150325408, 30.901094415148201 ], [ -95.733230150228223, 30.900929414813778 ], [ -95.733306149837418, 30.900847414221754 ], [ -95.733338150449811, 30.90067141506341 ], [ -95.733332150685214, 30.900599414425571 ], [ -95.733313150763394, 30.900539414433997 ], [ -95.73323014997051, 30.900495414974479 ], [ -95.733051150417751, 30.900451414563992 ], [ -95.732994150500005, 30.900396414982726 ], [ -95.732981150175377, 30.900363414531306 ], [ -95.732981150632241, 30.900303414921545 ], [ -95.733019150606466, 30.900253414297303 ], [ -95.733057150233918, 30.900193414618066 ], [ -95.733287150676347, 30.900083414291352 ], [ -95.733395149865416, 30.900061414705277 ], [ -95.733574150418434, 30.90008841436596 ], [ -95.733695150736153, 30.900149414640168 ], [ -95.733860150853999, 30.900203414314301 ], [ -95.734205150632491, 30.900429414498959 ], [ -95.734313151000279, 30.900484414145335 ], [ -95.734657150148649, 30.900582414234719 ], [ -95.734970150412281, 30.900703414208202 ], [ -95.735269150226415, 30.900709414991049 ], [ -95.735422150869027, 30.900687414802025 ], [ -95.735741150631554, 30.900571414326443 ], [ -95.736066151275594, 30.90041741439973 ], [ -95.736244150801795, 30.900197414765024 ], [ -95.736238151143866, 30.900038414438654 ], [ -95.73627015124724, 30.899961414389427 ], [ -95.73627615086275, 30.899873414167789 ], [ -95.736435150705319, 30.899818414506658 ], [ -95.736473150773321, 30.899818414410849 ], [ -95.736544151036156, 30.899829414202337 ], [ -95.737009150647694, 30.900015414337894 ], [ -95.737175151610273, 30.900059414256997 ], [ -95.737442151721268, 30.900103413980613 ], [ -95.737678151144678, 30.900098414139801 ], [ -95.737799151154903, 30.900081413963175 ], [ -95.737959151207349, 30.900021414534223 ], [ -95.738131151363561, 30.899867414714887 ], [ -95.738207151203824, 30.899757414350379 ], [ -95.738341151057938, 30.899531414443228 ], [ -95.738443151407424, 30.899399414385559 ], [ -95.738513151774754, 30.899350413877972 ], [ -95.738615151591787, 30.899267413782113 ], [ -95.738685151616551, 30.899229414454012 ], [ -95.738748151075427, 30.899218413860218 ], [ -95.738940152047789, 30.899262414567715 ], [ -95.739036151409891, 30.899306413731942 ], [ -95.739131151652728, 30.899349414513672 ], [ -95.739214151226605, 30.899421413731385 ], [ -95.739271151732908, 30.899487413755462 ], [ -95.739329151541568, 30.899613413886058 ], [ -95.739361151264703, 30.899745413845309 ], [ -95.73936715182208, 30.899883414576557 ], [ -95.739303151597028, 30.900135414364328 ], [ -95.739253152046231, 30.900251414461763 ], [ -95.739151152070065, 30.90036141433151 ], [ -95.739087151694861, 30.900454414763693 ], [ -95.738756151465367, 30.900801414456406 ], [ -95.738679151882579, 30.900955414113831 ], [ -95.738679151899177, 30.90099341470906 ], [ -95.738718151898638, 30.901048414574056 ], [ -95.738762151635726, 30.901092414337942 ], [ -95.738832151911069, 30.901141414692304 ], [ -95.739075151718808, 30.901224414920332 ], [ -95.739247151416066, 30.90120241448885 ], [ -95.739387151924277, 30.901130414259971 ], [ -95.739559152244809, 30.900993414862729 ], [ -95.739705151901305, 30.900932414588063 ], [ -95.739979152447305, 30.90092741421574 ], [ -95.74077015244724, 30.901086414545667 ], [ -95.741197152524663, 30.901228414192715 ], [ -95.741662152641766, 30.901503414641731 ], [ -95.741822152503914, 30.901607414612279 ], [ -95.741962152205687, 30.901684414432982 ], [ -95.742211152681762, 30.901876414503448 ], [ -95.742409153003308, 30.902063414361958 ], [ -95.742676153160062, 30.902261414663819 ], [ -95.742797153165625, 30.90233241455056 ], [ -95.742989153273058, 30.902409414766755 ], [ -95.74309715261613, 30.902420414818501 ], [ -95.743333152932834, 30.902425414864759 ], [ -95.743441152990869, 30.902409414481038 ], [ -95.743683152637487, 30.90234841434032 ], [ -95.743909153137437, 30.902273414913591 ], [ -95.744047152839258, 30.902227414880624 ], [ -95.74411715281353, 30.902189414622949 ], [ -95.744206152650648, 30.902117414429039 ], [ -95.744289153582116, 30.902007414856612 ], [ -95.744301152748378, 30.901952414398146 ], [ -95.744295153025632, 30.901892414374725 ], [ -95.744269153359241, 30.901821414606033 ], [ -95.74422515258432, 30.901766414543239 ], [ -95.744142152875327, 30.901694414117625 ], [ -95.744008153373699, 30.901617414531508 ], [ -95.743900153223748, 30.901540413998656 ], [ -95.743664153102984, 30.901458414278359 ], [ -95.743479152574622, 30.901425414841221 ], [ -95.743307152961563, 30.901442414809264 ], [ -95.743224153267974, 30.90142041421559 ], [ -95.743198152398421, 30.901398414160056 ], [ -95.743179152291773, 30.901326414029818 ], [ -95.743192152442063, 30.901282414569657 ], [ -95.74327515277605, 30.901172414633013 ], [ -95.743440152407743, 30.901013413897942 ], [ -95.743721152946634, 30.900776413852007 ], [ -95.743880152952158, 30.900705413827044 ], [ -95.7439881526292, 30.900716414132773 ], [ -95.744422152651723, 30.900952413831043 ], [ -95.744989152957757, 30.901408414750648 ], [ -95.745225153325663, 30.901683414273634 ], [ -95.745372153023965, 30.902023414810532 ], [ -95.745474153618019, 30.902139414485994 ], [ -95.74553815381762, 30.902243414151233 ], [ -95.745646153892139, 30.902293414934686 ], [ -95.745729153251517, 30.902298414627445 ], [ -95.745812153402383, 30.902281414521923 ], [ -95.745940154013084, 30.902215414583221 ], [ -95.74598415310524, 30.9021384145044 ], [ -95.746067153448621, 30.902050414547951 ], [ -95.746169153208513, 30.90189741423918 ], [ -95.746303153560277, 30.901770414686819 ], [ -95.746417153821369, 30.901693414490548 ], [ -95.746564153208382, 30.901644414561193 ], [ -95.747061154121312, 30.901533414682529 ], [ -95.747233154240902, 30.901473414487281 ], [ -95.747373154126777, 30.901418414532749 ], [ -95.747615154164507, 30.901291414464978 ], [ -95.747749153584309, 30.901198414025057 ], [ -95.747915154202161, 30.901115414099376 ], [ -95.748068154473245, 30.9010884146292 ], [ -95.748265154503343, 30.901077414568071 ], [ -95.748552154042329, 30.901159414067457 ], [ -95.748731154467436, 30.901236413774402 ], [ -95.748922154015887, 30.901395414089396 ], [ -95.749037154000604, 30.901554414197431 ], [ -95.749406154501884, 30.901769413856513 ], [ -95.749534154141827, 30.901780414655683 ], [ -95.749668154402315, 30.901779414072983 ], [ -95.7500061544836, 30.901708414564048 ], [ -95.750167154666954, 30.901674414663585 ], [ -95.750300155033258, 30.901575414053358 ], [ -95.750403154384742, 30.901334413966246 ], [ -95.750881155150779, 30.901131414058124 ], [ -95.750983155008655, 30.901065414240193 ], [ -95.75112315450535, 30.900905413868088 ], [ -95.751225154590841, 30.900691413688566 ], [ -95.751232155093092, 30.90060941362005 ], [ -95.75128315468281, 30.900383413853856 ], [ -95.751442155250771, 30.900180413726424 ], [ -95.751525155010498, 30.900125414169327 ], [ -95.751742155166667, 30.900032413732735 ], [ -95.751965154922075, 30.90004341393788 ], [ -95.752156154537033, 30.900026413448369 ], [ -95.75229015494908, 30.900037413813738 ], [ -95.752354155278837, 30.900054413461302 ], [ -95.752449155174446, 30.900158413543863 ], [ -95.752487155073467, 30.900257413739748 ], [ -95.752513155355615, 30.900373413649969 ], [ -95.752596154948762, 30.900560413480058 ], [ -95.7527171549944, 30.900615413675855 ], [ -95.752812155150522, 30.900604414294794 ], [ -95.752927155508104, 30.900565414203413 ], [ -95.752997155638923, 30.900488413930439 ], [ -95.753252154967186, 30.900302414153597 ], [ -95.753424155878548, 30.900126413819546 ], [ -95.753501155509454, 30.8999834138137 ], [ -95.753680154967086, 30.89940141369426 ], [ -95.753756155100703, 30.899269413358777 ], [ -95.753814155133355, 30.89920841383567 ], [ -95.753935155377576, 30.899170413554721 ], [ -95.753999155112638, 30.899208413558 ], [ -95.754343155187158, 30.899500413685185 ], [ -95.754495155116999, 30.899747413458766 ], [ -95.75450215604414, 30.899813413413781 ], [ -95.754540155412855, 30.899863413996737 ], [ -95.754629155621799, 30.899863413507187 ], [ -95.754699155173256, 30.899830413663587 ], [ -95.754776156008845, 30.899808413891972 ], [ -95.754973155366798, 30.89981341388323 ], [ -95.755152155789247, 30.899703413992398 ], [ -95.755279155470546, 30.899681413385913 ], [ -95.755496156294413, 30.899676413266359 ], [ -95.755566156090126, 30.899654413314256 ], [ -95.755872156024807, 30.899473413395807 ], [ -95.755936156025925, 30.899451413136894 ], [ -95.756038156206856, 30.899435413523886 ], [ -95.756127155884869, 30.899402413772119 ], [ -95.756191155605805, 30.899363413127602 ], [ -95.756363155759416, 30.899352413117889 ], [ -95.756561155871978, 30.899363413947853 ], [ -95.757141156288426, 30.899479413136763 ], [ -95.757485156481309, 30.89946841351459 ], [ -95.757727156651583, 30.899446413842607 ], [ -95.75782315609419, 30.899446413550564 ], [ -95.758403156172577, 30.899326413677343 ], [ -95.758543157028285, 30.899282413505354 ], [ -95.758594157117855, 30.899249413027619 ], [ -95.758708156400715, 30.899139413407053 ], [ -95.758785156497197, 30.898968413551689 ], [ -95.758849156857437, 30.898936412960584 ], [ -95.758989156935186, 30.898947413030637 ], [ -95.759078156614407, 30.898963413050044 ], [ -95.759327156545538, 30.898958413033682 ], [ -95.759397157070168, 30.898947413269834 ], [ -95.759524157049924, 30.898897413568946 ], [ -95.759633156370896, 30.898826413658163 ], [ -95.759748156787438, 30.898700412928093 ], [ -95.759824156578205, 30.898639413465155 ], [ -95.759875157381558, 30.898579413291863 ], [ -95.759958156624165, 30.898447413597719 ], [ -95.76000315682532, 30.898320412832032 ], [ -95.760098156456905, 30.898194412864306 ], [ -95.760385157048319, 30.898029413298723 ], [ -95.760991157568725, 30.897711413479673 ], [ -95.761227156906756, 30.897623412997159 ], [ -95.761341157631051, 30.897618413166402 ], [ -95.761463157447608, 30.897618412548585 ], [ -95.761609157719406, 30.897640412874743 ], [ -95.761915157255615, 30.897733412581569 ], [ -95.762030157295158, 30.897722412650378 ], [ -95.762183157744545, 30.897689412821997 ], [ -95.762227157967359, 30.897678413174855 ], [ -95.762323157320338, 30.89763441295252 ], [ -95.762355157476833, 30.897557412541207 ], [ -95.762342157119903, 30.897464413049988 ], [ -95.76229815760118, 30.897365413107668 ], [ -95.762208157074866, 30.897261413011215 ], [ -95.762113157195486, 30.897173413255128 ], [ -95.761839157612911, 30.896980412500817 ], [ -95.761750157805906, 30.896832412983319 ], [ -95.761743157498955, 30.896749413135655 ], [ -95.761756157548788, 30.896458412384849 ], [ -95.761750156908391, 30.89623341264161 ], [ -95.761769157270876, 30.896183412306858 ], [ -95.761852156811116, 30.896073412940606 ], [ -95.76192215731902, 30.896046412977565 ], [ -95.762024156988616, 30.896046412361084 ], [ -95.762470157988858, 30.896183412552993 ], [ -95.763235157553069, 30.896486412292717 ], [ -95.763356158073876, 30.896547412984017 ], [ -95.763458158122404, 30.89656941284419 ], [ -95.763675157364958, 30.896563412851744 ], [ -95.763783157848849, 30.896547412685457 ], [ -95.763872158133609, 30.89651941283217 ], [ -95.763968157727263, 30.896475412364516 ], [ -95.764070158087264, 30.896398412434642 ], [ -95.764223158021807, 30.89632241306677 ], [ -95.764350158048373, 30.89631141252266 ], [ -95.764701158262426, 30.896371412703186 ], [ -95.764841158148158, 30.896360412478529 ], [ -95.764937157747326, 30.896333412494041 ], [ -95.765275158255477, 30.896031412743742 ], [ -95.765447158310351, 30.895893412250821 ], [ -95.765625158449978, 30.895684412481742 ], [ -95.765632157976768, 30.895586412754664 ], [ -95.765625158316467, 30.895454412318045 ], [ -95.765593158316449, 30.895382412011688 ], [ -95.765466158538942, 30.895300412458692 ], [ -95.765332157852683, 30.89523441247005 ], [ -95.764784158291619, 30.895129412307345 ], [ -95.764606157968998, 30.89508541238888 ], [ -95.76455515820571, 30.895036412377852 ], [ -95.76449815775068, 30.894915412428212 ], [ -95.764491157420764, 30.894678412452027 ], [ -95.764510158097437, 30.89456341194235 ], [ -95.76458715779313, 30.894415412434586 ], [ -95.764746157910437, 30.894162411731429 ], [ -95.764899157891222, 30.893991412080162 ], [ -95.765002158390985, 30.893948412381036 ], [ -95.765167158517102, 30.893926411761569 ], [ -95.765358157626792, 30.893964411778068 ], [ -95.765817157786373, 30.89420641216412 ], [ -95.765900158432601, 30.89421741227185 ], [ -95.766097157964012, 30.894206411875135 ], [ -95.766187157980212, 30.894179412259628 ], [ -95.766228158440683, 30.894160412039113 ], [ -95.76625715799328, 30.894146411940156 ], [ -95.766301158177427, 30.894085412410657 ], [ -95.766435157987118, 30.893778412155037 ], [ -95.766448157905316, 30.893712411640504 ], [ -95.766448158557424, 30.893574412140527 ], [ -95.766423158672467, 30.893519412287397 ], [ -95.766200157908898, 30.893376411521935 ], [ -95.766111157949894, 30.893354411570638 ], [ -95.76597715770113, 30.893354412356821 ], [ -95.765856157707134, 30.893365412238865 ], [ -95.765715158351838, 30.893404411868364 ], [ -95.765512158366946, 30.893431411808432 ], [ -95.765339158494342, 30.893437411572993 ], [ -95.765282158568297, 30.893426411690307 ], [ -95.765212158491209, 30.893404411593899 ], [ -95.765167157733643, 30.893371412191446 ], [ -95.765148158102988, 30.893338411595046 ], [ -95.765155157883186, 30.893255412055066 ], [ -95.765206158001988, 30.89316241236482 ], [ -95.765263158248374, 30.893096411666878 ], [ -95.765346158335063, 30.89303041150373 ], [ -95.765499158084751, 30.892959411981376 ], [ -95.765646158582499, 30.892942412098723 ], [ -95.766232158673304, 30.892926411454692 ], [ -95.766366157985971, 30.892893412076596 ], [ -95.766544158364553, 30.892821411835531 ], [ -95.766621158804554, 30.892777411946124 ], [ -95.766691158381221, 30.892717412097934 ], [ -95.766678158782469, 30.892618411991389 ], [ -95.766634158224761, 30.892519411375083 ], [ -95.766538157814253, 30.892387411736738 ], [ -95.766519158217449, 30.892288411928288 ], [ -95.766525158645663, 30.892184411653044 ], [ -95.766602157906945, 30.892080411384956 ], [ -95.766691158488541, 30.892014411872083 ], [ -95.766914158199071, 30.891821411437157 ], [ -95.767150158046206, 30.891810411365487 ], [ -95.767207158809626, 30.89187141186061 ], [ -95.76721415883668, 30.892096412072632 ], [ -95.767265158322388, 30.892387411610883 ], [ -95.767277158026261, 30.892690412028291 ], [ -95.767271158098865, 30.892893411784794 ], [ -95.767277158809677, 30.893239411619813 ], [ -95.767328158686809, 30.893256411878465 ], [ -95.767443159020743, 30.893256412320255 ], [ -95.767793159103476, 30.89316341184341 ], [ -95.768309158712469, 30.892910411435526 ], [ -95.768743159374992, 30.892641411653948 ], [ -95.768724158407366, 30.8925144115649 ], [ -95.768622158642302, 30.892295411607058 ], [ -95.768578158440192, 30.892053411670631 ], [ -95.768597158764862, 30.891937411875102 ], [ -95.768705158418484, 30.891734411879177 ], [ -95.768877159267348, 30.891608411365883 ], [ -95.769177159063673, 30.891514411507302 ], [ -95.769304159487064, 30.891454411877305 ], [ -95.769425159199031, 30.891339411737093 ], [ -95.769502158702608, 30.891229411719177 ], [ -95.769521158750536, 30.890871411252814 ], [ -95.769509159246809, 30.890674411711256 ], [ -95.76952815910613, 30.890536410997097 ], [ -95.769553158578077, 30.890279411277312 ], [ -95.769556159319635, 30.890254411276729 ], [ -95.76946415886384, 30.890021410949203 ], [ -95.769362159026642, 30.889910411180857 ], [ -95.769331158922569, 30.88977841149493 ], [ -95.769337159271132, 30.889679411411482 ], [ -95.769394158685031, 30.88958041144949 ], [ -95.769477159077624, 30.889481411276751 ], [ -95.769707158541323, 30.889289411058321 ], [ -95.769866159045264, 30.889184410977972 ], [ -95.770000159532174, 30.889146411303702 ], [ -95.770440159338023, 30.889069411110807 ], [ -95.770561159505633, 30.889031410624487 ], [ -95.770663159298564, 30.888987411256714 ], [ -95.770797158909545, 30.888904410696284 ], [ -95.771026159192729, 30.888734410447388 ], [ -95.77142415948569, 30.888513411087288 ], [ -95.77167015902387, 30.88837741106763 ], [ -95.7720291595205, 30.88813741103095 ], [ -95.772129159102732, 30.888071410932842 ], [ -95.7721761592137, 30.888040410237029 ], [ -95.772231159790437, 30.888003410608608 ], [ -95.772371159787113, 30.887910410712834 ], [ -95.772709159992104, 30.887679410871588 ], [ -95.773761160213965, 30.88702641000323 ], [ -95.773875160287176, 30.886960410725976 ], [ -95.774079160002515, 30.886877410105686 ], [ -95.774200159863852, 30.886855410796869 ], [ -95.774398159913886, 30.886850410687774 ], [ -95.774525160137202, 30.886877410495678 ], [ -95.774697160215496, 30.886899410448585 ], [ -95.77487616039771, 30.886938410136707 ], [ -95.774927160146618, 30.886971410228202 ], [ -95.775016160047215, 30.887004410345963 ], [ -95.775080160011441, 30.886998410061715 ], [ -95.775143159895421, 30.886966410520635 ], [ -95.775194159929669, 30.886922410672963 ], [ -95.775265160096922, 30.886828410617422 ], [ -95.77532815997526, 30.88666341067362 ], [ -95.775348160163844, 30.886515410320914 ], [ -95.775348160636781, 30.886163410283046 ], [ -95.775412160214984, 30.886064410081854 ], [ -95.7754621603206, 30.886026409748887 ], [ -95.775514159862226, 30.88601541029584 ], [ -95.775596160187675, 30.886015410268801 ], [ -95.775634160689336, 30.886026410529261 ], [ -95.775679159820839, 30.886053410221859 ], [ -95.775749160558263, 30.886141410017842 ], [ -95.775781159855754, 30.886158409995982 ], [ -95.775832160674909, 30.886152410536919 ], [ -95.775979160402088, 30.886086410384248 ], [ -95.776036160462255, 30.886042410370042 ], [ -95.776074160125376, 30.885982410568403 ], [ -95.776112160454645, 30.885889409663697 ], [ -95.776278160108006, 30.885718410286326 ], [ -95.776355160505275, 30.885652410476865 ], [ -95.7764191605674, 30.885630409697921 ], [ -95.776525160623677, 30.885639410035843 ], [ -95.776700160914928, 30.885661410281955 ], [ -95.776801160521416, 30.885673410116212 ], [ -95.776941160846278, 30.885762410499979 ], [ -95.777037161070851, 30.885680410184964 ], [ -95.777151160790211, 30.885284409721219 ], [ -95.777190160447816, 30.885015410073873 ], [ -95.777285161208368, 30.8848064097098 ], [ -95.777387160290033, 30.884680409505492 ], [ -95.777451160915888, 30.884641409731291 ], [ -95.777579160935758, 30.884603409784898 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 314, "Tract": "48201542106", "Area_SqMi": 1.1762834215467926, "total_2009": 79, "total_2010": 71, "total_2011": 73, "total_2012": 96, "total_2013": 87, "total_2014": 81, "total_2015": 72, "total_2016": 109, "total_2017": 93, "total_2018": 284, "total_2019": 326, "total_2020": 329, "age1": 106, "age2": 169, "age3": 60, "earn1": 86, "earn2": 162, "earn3": 87, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 4, "naics_s06": 3, "naics_s07": 138, "naics_s08": 9, "naics_s09": 0, "naics_s10": 24, "naics_s11": 4, "naics_s12": 14, "naics_s13": 0, "naics_s14": 0, "naics_s15": 4, "naics_s16": 77, "naics_s17": 2, "naics_s18": 21, "naics_s19": 24, "naics_s20": 0, "race1": 234, "race2": 66, "race3": 4, "race4": 27, "race5": 0, "race6": 4, "ethnicity1": 167, "ethnicity2": 168, "edu1": 85, "edu2": 57, "edu3": 49, "edu4": 38, "Shape_Length": 23719.447177755927, "Shape_Area": 32792768.563528091, "total_2021": 295, "total_2022": 335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.723877099103831, 29.878325208638849 ], [ -95.723871099296701, 29.878000208563051 ], [ -95.723843099259142, 29.877673209084978 ], [ -95.723812098791768, 29.877462209284737 ], [ -95.723769098527171, 29.877249208792623 ], [ -95.723717098821822, 29.877033208630213 ], [ -95.723653099435623, 29.876815208653465 ], [ -95.723578098704763, 29.876597208915715 ], [ -95.723446099183761, 29.87627120911355 ], [ -95.723378099382757, 29.876129208323547 ], [ -95.723343098744934, 29.876055208649529 ], [ -95.723088098314548, 29.875641208824266 ], [ -95.72305409897541, 29.875596208233027 ], [ -95.722855098340389, 29.875325208234432 ], [ -95.72173209807417, 29.874054208126115 ], [ -95.721505098640108, 29.873786208591074 ], [ -95.721195098531211, 29.873360208499275 ], [ -95.721105097704552, 29.873210208063014 ], [ -95.720982097839382, 29.872974207824111 ], [ -95.720869098110029, 29.872727207826692 ], [ -95.720758098123781, 29.872447207677261 ], [ -95.720681098220723, 29.872222208140837 ], [ -95.720614098127697, 29.871987208061377 ], [ -95.720558097932965, 29.871745207629413 ], [ -95.720514097593636, 29.87150020796798 ], [ -95.720483097459478, 29.871252207370759 ], [ -95.720469098164202, 29.871010207371405 ], [ -95.720463097600302, 29.870564207512309 ], [ -95.7204560982034, 29.869855207815487 ], [ -95.720455097357274, 29.869771207625647 ], [ -95.720455098024786, 29.869724207879795 ], [ -95.720444098181247, 29.868542207096141 ], [ -95.720441097806727, 29.868251206953182 ], [ -95.720437097713216, 29.867747206702113 ], [ -95.72043609780259, 29.867690207396489 ], [ -95.720429098214765, 29.866706206647727 ], [ -95.720415097745786, 29.864553206756895 ], [ -95.720415098021661, 29.864524206651527 ], [ -95.720408097512362, 29.863569205917663 ], [ -95.720400097968465, 29.862267206008216 ], [ -95.720389097280332, 29.862019206177681 ], [ -95.720366097202344, 29.861799205481287 ], [ -95.720320097538632, 29.861508205786897 ], [ -95.720291097604644, 29.861357206138958 ], [ -95.717943097329439, 29.861769205905492 ], [ -95.716635096451739, 29.861999205889955 ], [ -95.716238096702284, 29.862081206112247 ], [ -95.71599609605579, 29.862142205675184 ], [ -95.715633096126751, 29.862253206310243 ], [ -95.715321096402747, 29.862367205782913 ], [ -95.715066095903254, 29.862474206573928 ], [ -95.713990095774463, 29.862952206081342 ], [ -95.713293095441514, 29.863263206470261 ], [ -95.713057095486349, 29.863368205974716 ], [ -95.712966095913089, 29.863409206094211 ], [ -95.712238095050452, 29.863734206462482 ], [ -95.711046095131721, 29.864264206374681 ], [ -95.710473094729423, 29.864516206823286 ], [ -95.710135095314357, 29.864665207143794 ], [ -95.709877095186485, 29.864770206763648 ], [ -95.709615095100517, 29.864865206690382 ], [ -95.709355094683261, 29.864946206806753 ], [ -95.709094095054056, 29.865019206885545 ], [ -95.708840094810014, 29.865078207079488 ], [ -95.708379094915017, 29.865160207220111 ], [ -95.708055094732231, 29.865201206982125 ], [ -95.707784094446581, 29.865223207209024 ], [ -95.707439094096117, 29.865235207072963 ], [ -95.707329094397195, 29.865238206783019 ], [ -95.707051093965305, 29.865234206919428 ], [ -95.706773094045246, 29.865218206937836 ], [ -95.706723094171878, 29.865215206812945 ], [ -95.706446093944763, 29.865188206807591 ], [ -95.706081093567562, 29.865133206884241 ], [ -95.705972093716085, 29.865115206663564 ], [ -95.705712093896352, 29.865922206792902 ], [ -95.705647093915005, 29.866020207294039 ], [ -95.705536093951849, 29.86619220728204 ], [ -95.705192093627929, 29.866747206955409 ], [ -95.704492093229049, 29.867620207667514 ], [ -95.704055094134219, 29.868407207516139 ], [ -95.703855093828054, 29.868867208144071 ], [ -95.70356209385065, 29.869926208383028 ], [ -95.703505093108006, 29.870633207754825 ], [ -95.703605093652513, 29.871154208582627 ], [ -95.703625093450285, 29.871696208243893 ], [ -95.703677093844902, 29.87233820891889 ], [ -95.703679093395294, 29.873129208351827 ], [ -95.703717093540575, 29.874371208518028 ], [ -95.703701093479495, 29.875486209047846 ], [ -95.703699094081699, 29.875869209623851 ], [ -95.703682094276516, 29.876071209755811 ], [ -95.703651093383598, 29.876240209475718 ], [ -95.703608094000032, 29.876415209721166 ], [ -95.703589094326716, 29.876494209589797 ], [ -95.703580093833565, 29.876556209046917 ], [ -95.703576093497247, 29.876706209004382 ], [ -95.703584093476977, 29.877343209514525 ], [ -95.703584094236788, 29.877462209184117 ], [ -95.703575093485497, 29.877554209666112 ], [ -95.703584093472443, 29.877667210009619 ], [ -95.703590093998443, 29.878425209617337 ], [ -95.703592093881156, 29.878547209730474 ], [ -95.703612094270355, 29.879825209909896 ], [ -95.704523093763754, 29.879819209772918 ], [ -95.70620909442917, 29.879814209966913 ], [ -95.706674095177704, 29.879813210409889 ], [ -95.708353095432656, 29.879804210265032 ], [ -95.709305095677408, 29.879799209772198 ], [ -95.709972095919795, 29.879795209729593 ], [ -95.712363096279873, 29.879781209638875 ], [ -95.713385096480906, 29.879776209530753 ], [ -95.714546096465483, 29.879770210119457 ], [ -95.715012096891485, 29.879766209674443 ], [ -95.715279097102638, 29.879765209588534 ], [ -95.715554096961171, 29.879763209825057 ], [ -95.718193097445962, 29.87974620999308 ], [ -95.720293098765723, 29.879732209480746 ], [ -95.720839098703706, 29.87972820932557 ], [ -95.723847098964313, 29.879709209299147 ], [ -95.723877099103831, 29.878325208638849 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 315, "Tract": "48201551800", "Area_SqMi": 2.4529683429047333, "total_2009": 3822, "total_2010": 3737, "total_2011": 3925, "total_2012": 3865, "total_2013": 3893, "total_2014": 3992, "total_2015": 4608, "total_2016": 4534, "total_2017": 4758, "total_2018": 4682, "total_2019": 4456, "total_2020": 4824, "age1": 1165, "age2": 2637, "age3": 1187, "earn1": 671, "earn2": 1331, "earn3": 2987, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 2005, "naics_s05": 71, "naics_s06": 407, "naics_s07": 457, "naics_s08": 151, "naics_s09": 0, "naics_s10": 203, "naics_s11": 109, "naics_s12": 441, "naics_s13": 0, "naics_s14": 103, "naics_s15": 13, "naics_s16": 107, "naics_s17": 10, "naics_s18": 659, "naics_s19": 84, "naics_s20": 164, "race1": 3960, "race2": 593, "race3": 48, "race4": 279, "race5": 15, "race6": 94, "ethnicity1": 3161, "ethnicity2": 1828, "edu1": 906, "edu2": 998, "edu3": 1107, "edu4": 813, "Shape_Length": 35247.133807191982, "Shape_Area": 68384559.102906674, "total_2021": 4707, "total_2022": 4989 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.584980064282391, 29.890388215932301 ], [ -95.584858064384022, 29.890301215846588 ], [ -95.584613064213414, 29.890128216090307 ], [ -95.581248062608182, 29.887749216204519 ], [ -95.580772063049068, 29.887413215656935 ], [ -95.578412061991145, 29.885741215237868 ], [ -95.576253061507316, 29.884225215633688 ], [ -95.575395061265596, 29.883608214796958 ], [ -95.574902061047894, 29.883295215352486 ], [ -95.572538060711864, 29.881602214986504 ], [ -95.571205059910426, 29.880648214398072 ], [ -95.571132060366367, 29.880595214464289 ], [ -95.570697060583086, 29.880308215033061 ], [ -95.570574059679274, 29.880226214622876 ], [ -95.569867059578769, 29.879759214279012 ], [ -95.569458059307266, 29.879489214853841 ], [ -95.569509059718499, 29.87948721456441 ], [ -95.568506059228127, 29.878855214505709 ], [ -95.567356059309944, 29.878016214032783 ], [ -95.566713058833287, 29.877542214662014 ], [ -95.566184058557781, 29.877169214280055 ], [ -95.565879058732534, 29.87695621451817 ], [ -95.564774058834587, 29.876182213979497 ], [ -95.563742058275409, 29.875459214170551 ], [ -95.562874057679934, 29.874852213475197 ], [ -95.561539057245625, 29.873924213413744 ], [ -95.561163057178035, 29.873647213714623 ], [ -95.561082057467758, 29.873588213639213 ], [ -95.560814057026576, 29.87340821368787 ], [ -95.560068056763868, 29.872879213718328 ], [ -95.559991056898767, 29.872825213868477 ], [ -95.559673056476626, 29.872600213211047 ], [ -95.559606056942414, 29.87255321375121 ], [ -95.559453056621635, 29.872445213796819 ], [ -95.559305057311249, 29.872341213139109 ], [ -95.559183056397103, 29.872256213492864 ], [ -95.559038056245541, 29.872316213740085 ], [ -95.558992056967199, 29.872333213870956 ], [ -95.557965056760366, 29.872690213540817 ], [ -95.556255056320012, 29.873322213633092 ], [ -95.556102056138556, 29.873400213407926 ], [ -95.555994055590105, 29.873450213617716 ], [ -95.555789056432545, 29.87352121343103 ], [ -95.555626056272033, 29.873585213964482 ], [ -95.555444056369609, 29.873656213468351 ], [ -95.555033055988446, 29.873799214362194 ], [ -95.554781055759733, 29.873894214212878 ], [ -95.554541055205505, 29.873989214002968 ], [ -95.554009055591365, 29.874197213801914 ], [ -95.553753055400122, 29.874297214078855 ], [ -95.553343055896875, 29.874441214017015 ], [ -95.552688055428902, 29.874720214580858 ], [ -95.552223054909334, 29.874938213975781 ], [ -95.551914054590839, 29.875105214712065 ], [ -95.55123705482454, 29.875558214351539 ], [ -95.550814054928694, 29.875921214385546 ], [ -95.550354054578207, 29.876362214237229 ], [ -95.54999805464027, 29.876773215016271 ], [ -95.54973005455588, 29.87713521440967 ], [ -95.5494180545858, 29.877505214932647 ], [ -95.549316054436957, 29.877715215245708 ], [ -95.549217054917179, 29.877927215182012 ], [ -95.549178054429447, 29.878023214578899 ], [ -95.549031054262485, 29.878418215137376 ], [ -95.54889805459527, 29.878816214842232 ], [ -95.548869054087746, 29.878925215081477 ], [ -95.548842054872537, 29.879052214848553 ], [ -95.548797054898088, 29.879179215481106 ], [ -95.548761054031999, 29.879353215430516 ], [ -95.548715054386719, 29.880022215144916 ], [ -95.548683054312235, 29.880441215623165 ], [ -95.548717054592117, 29.881991216234365 ], [ -95.548731054842634, 29.884074216070882 ], [ -95.548789054561212, 29.884798215960725 ], [ -95.549082054338783, 29.886672217021427 ], [ -95.549106054597488, 29.886816217113694 ], [ -95.549142055208449, 29.886922217200482 ], [ -95.549278055028353, 29.887533216896166 ], [ -95.549354054695442, 29.888045216980167 ], [ -95.549368055033355, 29.888468217457923 ], [ -95.549375055523342, 29.889339216929667 ], [ -95.549350054991876, 29.890604217307651 ], [ -95.54935005539599, 29.890705217950842 ], [ -95.54937605530246, 29.893259218242733 ], [ -95.549407055379021, 29.89638621913404 ], [ -95.549688055363148, 29.896374218853534 ], [ -95.549905055761315, 29.896364218916545 ], [ -95.55018605567804, 29.896349218296908 ], [ -95.553645056782074, 29.896170218228409 ], [ -95.556308057351401, 29.896123218461053 ], [ -95.557660057722629, 29.896118218194946 ], [ -95.557851057715936, 29.896113218401091 ], [ -95.558964057456407, 29.896089218302677 ], [ -95.561177058092809, 29.896043218489851 ], [ -95.564240059171084, 29.895941218554771 ], [ -95.565541059430331, 29.895880217756368 ], [ -95.566529059867747, 29.895865218095974 ], [ -95.567223060236742, 29.895760218402824 ], [ -95.567748060383948, 29.895575218020394 ], [ -95.567824059815791, 29.895553218240384 ], [ -95.568013060250081, 29.895564217963724 ], [ -95.568253060153666, 29.89555921831781 ], [ -95.568518059929517, 29.895575218046989 ], [ -95.568726060436873, 29.895553217712767 ], [ -95.570303060562125, 29.895526217449163 ], [ -95.571710060745303, 29.895531217750452 ], [ -95.571937061282995, 29.895509217722452 ], [ -95.572297061331668, 29.895514217379844 ], [ -95.572603061743223, 29.895512218210857 ], [ -95.573262061578973, 29.895509217665101 ], [ -95.573956061225928, 29.89547621755159 ], [ -95.575104062325423, 29.895498217672639 ], [ -95.575578061961593, 29.895476217475117 ], [ -95.576701062187823, 29.895464217307119 ], [ -95.577174062730776, 29.895437217285899 ], [ -95.577862062399589, 29.895420217324151 ], [ -95.579041062726702, 29.895481217613192 ], [ -95.579445062763, 29.895530217717841 ], [ -95.579628063536191, 29.895569217663621 ], [ -95.579792063189544, 29.895616217296897 ], [ -95.580064062791578, 29.895695217492541 ], [ -95.580486063383532, 29.895937218021572 ], [ -95.580745063837483, 29.896074217498651 ], [ -95.580909063523308, 29.896179217350642 ], [ -95.58138206364697, 29.896453217478573 ], [ -95.583301064517386, 29.897536217459109 ], [ -95.583673064640791, 29.897651217628994 ], [ -95.583881064591608, 29.897690218076626 ], [ -95.584511064299932, 29.897692218222659 ], [ -95.584516064909607, 29.897415217581965 ], [ -95.584510064638792, 29.897345217855566 ], [ -95.584488064563359, 29.897088217942756 ], [ -95.584409064173428, 29.895588217380386 ], [ -95.584381064600862, 29.892883216392253 ], [ -95.584406063836269, 29.891064216344333 ], [ -95.584517063760643, 29.890886216080087 ], [ -95.584625063742976, 29.890776216547181 ], [ -95.584729064119344, 29.890669216394443 ], [ -95.584812063839252, 29.89058221626129 ], [ -95.584980064282391, 29.890388215932301 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 316, "Tract": "48201232303", "Area_SqMi": 5.1084727532471907, "total_2009": 157, "total_2010": 153, "total_2011": 244, "total_2012": 418, "total_2013": 442, "total_2014": 353, "total_2015": 411, "total_2016": 492, "total_2017": 623, "total_2018": 1160, "total_2019": 1583, "total_2020": 1775, "age1": 1358, "age2": 2267, "age3": 591, "earn1": 696, "earn2": 858, "earn3": 2662, "naics_s01": 0, "naics_s02": 28, "naics_s03": 0, "naics_s04": 2499, "naics_s05": 85, "naics_s06": 148, "naics_s07": 366, "naics_s08": 30, "naics_s09": 0, "naics_s10": 13, "naics_s11": 4, "naics_s12": 479, "naics_s13": 5, "naics_s14": 8, "naics_s15": 1, "naics_s16": 18, "naics_s17": 3, "naics_s18": 494, "naics_s19": 35, "naics_s20": 0, "race1": 3420, "race2": 488, "race3": 54, "race4": 176, "race5": 7, "race6": 71, "ethnicity1": 2105, "ethnicity2": 2111, "edu1": 799, "edu2": 746, "edu3": 767, "edu4": 546, "Shape_Length": 51572.508417755533, "Shape_Area": 142415477.12203327, "total_2021": 2313, "total_2022": 4216 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.240577976696954, 29.898755230269973 ], [ -95.240691976013281, 29.898645229725457 ], [ -95.239713975972336, 29.89799422965611 ], [ -95.239349975688555, 29.897703229406556 ], [ -95.239086975719971, 29.897300229766174 ], [ -95.238711975299907, 29.896015228945572 ], [ -95.238731975747967, 29.895873229552528 ], [ -95.238951975454228, 29.895529228773142 ], [ -95.239751975729874, 29.894957229477075 ], [ -95.240081975918315, 29.894646229251038 ], [ -95.240207976164882, 29.894341228496028 ], [ -95.240319975583219, 29.893848228779536 ], [ -95.240340975586363, 29.893025228480933 ], [ -95.240211975893757, 29.892650228705733 ], [ -95.23997697577947, 29.892510228881079 ], [ -95.238905975732806, 29.892470228297856 ], [ -95.238463975305919, 29.892277228125455 ], [ -95.238180975835746, 29.892070228687412 ], [ -95.238170975949146, 29.892033228891865 ], [ -95.238107975029138, 29.891792228822318 ], [ -95.238232975243491, 29.891194228700989 ], [ -95.23821497554259, 29.890836227902653 ], [ -95.237929975470166, 29.890163228506079 ], [ -95.237511974910248, 29.889629227740521 ], [ -95.236835975038872, 29.889289228242784 ], [ -95.236812975204401, 29.889272227763435 ], [ -95.236615974709011, 29.889126227648024 ], [ -95.235853974839159, 29.88827922751484 ], [ -95.23532497426811, 29.887777227502358 ], [ -95.235114974951898, 29.887590227665591 ], [ -95.235066974861013, 29.887490227538297 ], [ -95.235025974058672, 29.887210227495164 ], [ -95.235121974898206, 29.886824227581151 ], [ -95.236541974817243, 29.884783227243176 ], [ -95.236660975075679, 29.884613227442085 ], [ -95.236715974970096, 29.884446227258859 ], [ -95.236856974623137, 29.884014226499264 ], [ -95.236909975062275, 29.883854227177729 ], [ -95.236903974452986, 29.883567226944351 ], [ -95.236836974258907, 29.883306226588694 ], [ -95.236813974525703, 29.883218226868074 ], [ -95.236759974464988, 29.883101226885628 ], [ -95.236568974753013, 29.883081226928255 ], [ -95.233332973764007, 29.882748226485372 ], [ -95.224310971300454, 29.882843227317384 ], [ -95.224003971059233, 29.88285322697519 ], [ -95.22368397183233, 29.882853226748647 ], [ -95.223489971099553, 29.882845227507747 ], [ -95.223288970747134, 29.882844227016573 ], [ -95.223073971108192, 29.882872227529784 ], [ -95.220516970789788, 29.882898227231969 ], [ -95.220254970574402, 29.882913227625775 ], [ -95.220002970494008, 29.88290722702072 ], [ -95.218984970533427, 29.882914227297178 ], [ -95.217469969683378, 29.882932227331612 ], [ -95.216222969559539, 29.882942227035237 ], [ -95.215475968764835, 29.882956227160605 ], [ -95.213522968586332, 29.882972227690715 ], [ -95.213289969076271, 29.882969227676906 ], [ -95.213052968201566, 29.882984227320588 ], [ -95.212162968451423, 29.882993227337476 ], [ -95.211956967943763, 29.882989227994873 ], [ -95.211008968586668, 29.88299522777633 ], [ -95.210402968259785, 29.883004227362829 ], [ -95.210031967660996, 29.883016227224136 ], [ -95.208733967994121, 29.883018227323547 ], [ -95.208486967493556, 29.883012228119764 ], [ -95.208446967786912, 29.88403422755886 ], [ -95.20837896712888, 29.884597227987708 ], [ -95.208256967201677, 29.885190227976757 ], [ -95.208121967661512, 29.885724228199599 ], [ -95.207987967210244, 29.886078228454952 ], [ -95.207643967362813, 29.886900228904345 ], [ -95.207198967004004, 29.887711228369721 ], [ -95.206874967478143, 29.888212228890261 ], [ -95.205998967010999, 29.88927622898229 ], [ -95.205626966938866, 29.889625229513829 ], [ -95.20525096659955, 29.889947228926033 ], [ -95.204364966476518, 29.890627229072763 ], [ -95.204056966172388, 29.890929229387947 ], [ -95.203708966925205, 29.891197229175923 ], [ -95.203497966342795, 29.891373229262861 ], [ -95.203119966360362, 29.891540229932584 ], [ -95.203171966039676, 29.891680229989152 ], [ -95.203190966311467, 29.891780229454923 ], [ -95.203199966878216, 29.89202422987168 ], [ -95.203199966830311, 29.892431230025004 ], [ -95.203199966631047, 29.894013229990883 ], [ -95.203190966180458, 29.895518230317492 ], [ -95.20319096707199, 29.895603230317409 ], [ -95.203190966312491, 29.895707230580388 ], [ -95.203199967185995, 29.896404230408486 ], [ -95.203198966210394, 29.896531230362843 ], [ -95.203239966753344, 29.897404230913523 ], [ -95.203249967248709, 29.899281231100957 ], [ -95.203253967353291, 29.900042231375057 ], [ -95.203239966791486, 29.901396231466688 ], [ -95.20315496736508, 29.902130231649515 ], [ -95.203098967142665, 29.90269423212419 ], [ -95.202773966959327, 29.904655232724114 ], [ -95.202433967332993, 29.9065532324387 ], [ -95.202422966482601, 29.906712232906393 ], [ -95.202392967153884, 29.906820232983129 ], [ -95.201883967286065, 29.910227233422248 ], [ -95.201472966841308, 29.912666233750997 ], [ -95.200984967011351, 29.916087234864708 ], [ -95.200785966550981, 29.917522234775983 ], [ -95.200499966876436, 29.919591235847385 ], [ -95.200430966790165, 29.919900235746653 ], [ -95.200297966573757, 29.920799235399482 ], [ -95.200212966844234, 29.921376236132978 ], [ -95.200019967093453, 29.922765236182954 ], [ -95.199995966956308, 29.922944236306297 ], [ -95.19998396678622, 29.923665236369693 ], [ -95.200018967320148, 29.9242722364706 ], [ -95.20004396668989, 29.924454236890963 ], [ -95.200093966856926, 29.924679236681381 ], [ -95.200112967224101, 29.924764236777026 ], [ -95.200146967262157, 29.924903236371833 ], [ -95.200285967642557, 29.92539823634208 ], [ -95.200471966866871, 29.925883236335157 ], [ -95.20071596771318, 29.926388237060056 ], [ -95.200960967935316, 29.926935236545404 ], [ -95.201310967385339, 29.927479236976488 ], [ -95.201657967715406, 29.927932237167518 ], [ -95.202041968284348, 29.928383236814007 ], [ -95.202482967475007, 29.928782237049781 ], [ -95.202969968351141, 29.929203237778339 ], [ -95.203349968320609, 29.929503237611303 ], [ -95.204228968428254, 29.930192237205741 ], [ -95.20520796873808, 29.930960237788778 ], [ -95.206391969172117, 29.931916238217511 ], [ -95.206718968826607, 29.931601237560052 ], [ -95.207353969171848, 29.930989237705727 ], [ -95.211461970175421, 29.927029236361875 ], [ -95.215006970868771, 29.923555235548012 ], [ -95.215219970611642, 29.92334723527933 ], [ -95.217392971175414, 29.921245235460777 ], [ -95.218452972128745, 29.920217235003889 ], [ -95.219634971959806, 29.919081235066713 ], [ -95.220694972365791, 29.918046234456813 ], [ -95.222140972884503, 29.916680234275432 ], [ -95.223473972476967, 29.915400233640874 ], [ -95.224183972580732, 29.914710233704717 ], [ -95.226844973052536, 29.912086233413792 ], [ -95.235509974786481, 29.903684231216594 ], [ -95.236826975366, 29.902388230356195 ], [ -95.237085975435875, 29.902135230592069 ], [ -95.240577976696954, 29.898755230269973 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 317, "Tract": "48201232202", "Area_SqMi": 2.1634421743239693, "total_2009": 376, "total_2010": 403, "total_2011": 23, "total_2012": 31, "total_2013": 48, "total_2014": 136, "total_2015": 152, "total_2016": 196, "total_2017": 263, "total_2018": 274, "total_2019": 283, "total_2020": 334, "age1": 61, "age2": 140, "age3": 71, "earn1": 45, "earn2": 82, "earn3": 145, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 13, "naics_s06": 13, "naics_s07": 0, "naics_s08": 52, "naics_s09": 3, "naics_s10": 13, "naics_s11": 8, "naics_s12": 37, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 10, "naics_s17": 107, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 197, "race2": 56, "race3": 0, "race4": 16, "race5": 0, "race6": 3, "ethnicity1": 214, "ethnicity2": 58, "edu1": 29, "edu2": 52, "edu3": 55, "edu4": 75, "Shape_Length": 34156.575344249562, "Shape_Area": 60313065.0518649, "total_2021": 280, "total_2022": 272 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.287600990426455, 29.934509235558309 ], [ -95.287608990131361, 29.93427923533622 ], [ -95.287589989626952, 29.933878235422238 ], [ -95.287582990082029, 29.93329823566911 ], [ -95.287571989933539, 29.93253123471515 ], [ -95.287559989468477, 29.931755234563969 ], [ -95.28755698942409, 29.931576235002236 ], [ -95.287549989659809, 29.931116235248059 ], [ -95.287546990116368, 29.930890235237122 ], [ -95.287545990035866, 29.930790234865434 ], [ -95.28759098949709, 29.930662235074731 ], [ -95.287584990313661, 29.930623234897947 ], [ -95.287543990231498, 29.930354234551821 ], [ -95.287525989947284, 29.929356234250257 ], [ -95.287531989362151, 29.929137234752254 ], [ -95.287522990213731, 29.928881234593646 ], [ -95.287509989642047, 29.927954233840406 ], [ -95.287504989674702, 29.927592234322479 ], [ -95.287513990112387, 29.925314233849782 ], [ -95.287455989862053, 29.924067233042202 ], [ -95.287452989669333, 29.923253232880572 ], [ -95.287419989852751, 29.921514232730125 ], [ -95.287417989237724, 29.921407233258883 ], [ -95.287412988901153, 29.920901232606404 ], [ -95.287399989044147, 29.919521232759813 ], [ -95.287382989002694, 29.918566232171447 ], [ -95.287382989580166, 29.918408232660074 ], [ -95.287377988847098, 29.917856231888909 ], [ -95.287365988994168, 29.917629231783938 ], [ -95.287375989649675, 29.917416231889391 ], [ -95.28736598918492, 29.916954231500483 ], [ -95.287358988805025, 29.916214232103719 ], [ -95.287375989519404, 29.915880231401392 ], [ -95.287316989098386, 29.914616231789612 ], [ -95.28726398886559, 29.913481231132355 ], [ -95.287257988559816, 29.913355231071819 ], [ -95.287200988987095, 29.913344231427853 ], [ -95.286663988756899, 29.913350231115146 ], [ -95.286386989286143, 29.913421230838534 ], [ -95.286232988315305, 29.913587231492162 ], [ -95.285790988688603, 29.914062231528195 ], [ -95.285433988167412, 29.91430023127862 ], [ -95.282170988162818, 29.915236231794811 ], [ -95.281687988125086, 29.915507231493965 ], [ -95.281032987923084, 29.916001232264112 ], [ -95.280781987692947, 29.916125232281747 ], [ -95.280501987538059, 29.916185232103668 ], [ -95.279928986858096, 29.916220232204161 ], [ -95.278654987067625, 29.916153232364387 ], [ -95.278010987239043, 29.91618323167868 ], [ -95.277822987004711, 29.916191232337539 ], [ -95.277635986390976, 29.916200231707023 ], [ -95.276678986368808, 29.916222232370313 ], [ -95.274135985839024, 29.916279232633094 ], [ -95.27373098558914, 29.916351232073239 ], [ -95.272919985335236, 29.916709232532881 ], [ -95.272546985313085, 29.916741232654736 ], [ -95.272389984888804, 29.916754232597491 ], [ -95.268913983966655, 29.91594523209352 ], [ -95.268327984355267, 29.915825231989874 ], [ -95.26649998388973, 29.915450232605892 ], [ -95.265805983613191, 29.915372232733798 ], [ -95.265189983968753, 29.915422232016692 ], [ -95.264162983306662, 29.916011232694665 ], [ -95.264022982989047, 29.916091232180207 ], [ -95.262755982965771, 29.916678233022211 ], [ -95.261764983119122, 29.916912233197205 ], [ -95.260149982718502, 29.917190232566909 ], [ -95.26008698176831, 29.917209233366926 ], [ -95.25933298185609, 29.917442233361815 ], [ -95.258319982098513, 29.918062232897267 ], [ -95.257711981787708, 29.918492233186775 ], [ -95.254815980853138, 29.920542234037384 ], [ -95.254271980838851, 29.920892234057067 ], [ -95.25435698120944, 29.920907233515436 ], [ -95.254647981105563, 29.920959234281803 ], [ -95.254840980835482, 29.921032234022434 ], [ -95.255034981168222, 29.921213233697593 ], [ -95.255191981008636, 29.921443233652958 ], [ -95.255264980751477, 29.921649234187679 ], [ -95.255288980849812, 29.921890234363854 ], [ -95.255264981078255, 29.922108234359715 ], [ -95.255203981187904, 29.922265234428242 ], [ -95.255046980992404, 29.922495233940605 ], [ -95.254877980948606, 29.922677234006088 ], [ -95.254719981233819, 29.922834234147619 ], [ -95.254623981051722, 29.922979234088608 ], [ -95.254599981542128, 29.923124233956585 ], [ -95.254611980730871, 29.92330623426751 ], [ -95.254647981590253, 29.923451234081327 ], [ -95.254744980657762, 29.923717234716914 ], [ -95.254792980814258, 29.923886234061886 ], [ -95.25481698084657, 29.924128234294251 ], [ -95.254853981380592, 29.924745234581803 ], [ -95.25485698093577, 29.92484623444982 ], [ -95.257581981466814, 29.924785234633518 ], [ -95.257457981590719, 29.925133234900464 ], [ -95.257068981814285, 29.926060235274925 ], [ -95.256660981689222, 29.926636235168562 ], [ -95.256361981856472, 29.927044234961116 ], [ -95.25750198186725, 29.927890235100069 ], [ -95.258058981955159, 29.928340235286917 ], [ -95.258548981978464, 29.928689235734037 ], [ -95.259250982372791, 29.928889235147036 ], [ -95.260065982319034, 29.929066235199123 ], [ -95.261430983304834, 29.928949235701239 ], [ -95.261485983206896, 29.928936235039039 ], [ -95.262042983132687, 29.928866235107922 ], [ -95.262898983391253, 29.928904235618024 ], [ -95.263497983834981, 29.929075235665117 ], [ -95.264086984190442, 29.929417235219141 ], [ -95.264552983677873, 29.929791235069779 ], [ -95.2648199836418, 29.930124235113563 ], [ -95.265078984166934, 29.930584235226668 ], [ -95.265382984585415, 29.931055235336977 ], [ -95.265641983966077, 29.931424235760165 ], [ -95.26597398416952, 29.931701235260231 ], [ -95.266291984349166, 29.932041235320874 ], [ -95.267142984987771, 29.932612236193453 ], [ -95.267423984404971, 29.932741235849765 ], [ -95.267704984500753, 29.932870235814168 ], [ -95.268258984624637, 29.933055235872196 ], [ -95.268772984758058, 29.933115235705365 ], [ -95.26868598509887, 29.933381236267007 ], [ -95.268614984700605, 29.933662235739849 ], [ -95.268564985656553, 29.934023236215761 ], [ -95.268531985539752, 29.934370236222872 ], [ -95.268485984685185, 29.934785236422197 ], [ -95.268484985591371, 29.934799236618549 ], [ -95.268761984933604, 29.9347942365936 ], [ -95.270989986115723, 29.934772235769 ], [ -95.271049985371675, 29.934770236052749 ], [ -95.272948986808672, 29.93477123636886 ], [ -95.279222987823971, 29.934716235485137 ], [ -95.283932989203564, 29.934645235232217 ], [ -95.285050989671305, 29.934627235232657 ], [ -95.287468990396064, 29.934591235188748 ], [ -95.287508989859433, 29.934593235101094 ], [ -95.287601990581379, 29.934598235354695 ], [ -95.287600990426455, 29.934509235558309 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 318, "Tract": "48201342802", "Area_SqMi": 1.9911393409239773, "total_2009": 2841, "total_2010": 2402, "total_2011": 3330, "total_2012": 5886, "total_2013": 6173, "total_2014": 6827, "total_2015": 5926, "total_2016": 7897, "total_2017": 7916, "total_2018": 8425, "total_2019": 7982, "total_2020": 7326, "age1": 1442, "age2": 4708, "age3": 1549, "earn1": 524, "earn2": 866, "earn3": 6309, "naics_s01": 0, "naics_s02": 24, "naics_s03": 0, "naics_s04": 5033, "naics_s05": 707, "naics_s06": 571, "naics_s07": 80, "naics_s08": 425, "naics_s09": 0, "naics_s10": 17, "naics_s11": 155, "naics_s12": 4, "naics_s13": 13, "naics_s14": 528, "naics_s15": 1, "naics_s16": 79, "naics_s17": 0, "naics_s18": 42, "naics_s19": 20, "naics_s20": 0, "race1": 6420, "race2": 927, "race3": 74, "race4": 167, "race5": 18, "race6": 93, "ethnicity1": 4217, "ethnicity2": 3482, "edu1": 1637, "edu2": 1837, "edu3": 1863, "edu4": 920, "Shape_Length": 36255.759741439681, "Shape_Area": 55509556.95591975, "total_2021": 6754, "total_2022": 7699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.113803935878011, 29.710156195507434 ], [ -95.113804934882921, 29.710049195358305 ], [ -95.113780935183868, 29.709456195130116 ], [ -95.113773935060152, 29.709110195537761 ], [ -95.113747935615564, 29.707780194699268 ], [ -95.113697934909368, 29.705208194816663 ], [ -95.11361393545603, 29.702266193417799 ], [ -95.113585934823774, 29.701553193977063 ], [ -95.113590935023623, 29.700809193200126 ], [ -95.113565934778549, 29.700051192955385 ], [ -95.113515934462384, 29.699292193417694 ], [ -95.113528934499385, 29.698539192905535 ], [ -95.11351493512943, 29.697943193159851 ], [ -95.113507934270672, 29.697853192980066 ], [ -95.113511934498092, 29.697095192462925 ], [ -95.113487935231447, 29.696381192319432 ], [ -95.113457934785558, 29.695648192882413 ], [ -95.113466934226906, 29.694877192141188 ], [ -95.113428934724965, 29.693989192487113 ], [ -95.113430934689987, 29.693116191840318 ], [ -95.113428934362972, 29.691927192054475 ], [ -95.113381933974011, 29.691195191388985 ], [ -95.113363934165406, 29.690501191245215 ], [ -95.113364934116021, 29.689734191150347 ], [ -95.111276933906481, 29.689769191192106 ], [ -95.111151933649779, 29.689780191544401 ], [ -95.110443934037022, 29.689769190956579 ], [ -95.109378933208802, 29.689812191219094 ], [ -95.108432932962927, 29.689819191679728 ], [ -95.107478933049336, 29.689818191064752 ], [ -95.107117932806716, 29.689817191700001 ], [ -95.106559932641375, 29.689879191120475 ], [ -95.105560932360262, 29.689896191655524 ], [ -95.104595931857588, 29.689914191971763 ], [ -95.103630932395248, 29.689939191616769 ], [ -95.102100931840553, 29.689944191279601 ], [ -95.100737931598985, 29.689965191351181 ], [ -95.100429931182504, 29.689970191459373 ], [ -95.09861093086586, 29.689998192196164 ], [ -95.098032930821702, 29.690007192277928 ], [ -95.097888929901558, 29.69000919217379 ], [ -95.097662930015588, 29.690013192158602 ], [ -95.09715693064841, 29.690020192026115 ], [ -95.095873930050189, 29.690040192125014 ], [ -95.095437929603861, 29.690046191491213 ], [ -95.095410929842615, 29.690047191579993 ], [ -95.093875929619657, 29.690070191659398 ], [ -95.0928059286381, 29.690087192439815 ], [ -95.092792929525061, 29.689055191604496 ], [ -95.092699929367456, 29.684919191057315 ], [ -95.092645929205375, 29.682490190700452 ], [ -95.092657928813324, 29.68214919051605 ], [ -95.092594928653583, 29.67988918952156 ], [ -95.092586928964636, 29.679761190034547 ], [ -95.087982927921047, 29.679820190149844 ], [ -95.087820927516304, 29.679822190000365 ], [ -95.087895927218455, 29.68499719097036 ], [ -95.088077928297764, 29.688488192136084 ], [ -95.088088927428615, 29.688693192227674 ], [ -95.088130928413165, 29.690159192626563 ], [ -95.088234928468736, 29.695158193183136 ], [ -95.088237928488738, 29.695336193483627 ], [ -95.088293928473732, 29.698338193811207 ], [ -95.088332928414658, 29.700380194267172 ], [ -95.088409928324339, 29.70238519485698 ], [ -95.088420928836868, 29.702665194685313 ], [ -95.088432928924249, 29.702967194833118 ], [ -95.088440928904632, 29.703181194440081 ], [ -95.088732928880006, 29.703269195296009 ], [ -95.090635928750132, 29.703904195245553 ], [ -95.092231929409621, 29.704436194950279 ], [ -95.09293992947444, 29.704672195257952 ], [ -95.093265930005188, 29.704771194858854 ], [ -95.095577930368378, 29.705468195345269 ], [ -95.097067930414681, 29.705918194669781 ], [ -95.099085931371675, 29.706527195461998 ], [ -95.100117932173248, 29.706838195193008 ], [ -95.102310932791738, 29.707499195064848 ], [ -95.102586932140852, 29.70758019492936 ], [ -95.110246934176104, 29.709734195031231 ], [ -95.111344935203633, 29.710050195287735 ], [ -95.112891935478487, 29.710495195627868 ], [ -95.112991934891525, 29.710524195477948 ], [ -95.113163935664943, 29.710422195461145 ], [ -95.11358093522405, 29.710239195882934 ], [ -95.113803935878011, 29.710156195507434 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 319, "Tract": "48201232305", "Area_SqMi": 2.8315965443352611, "total_2009": 314, "total_2010": 154, "total_2011": 54, "total_2012": 57, "total_2013": 76, "total_2014": 103, "total_2015": 108, "total_2016": 118, "total_2017": 125, "total_2018": 168, "total_2019": 168, "total_2020": 104, "age1": 44, "age2": 67, "age3": 13, "earn1": 36, "earn2": 55, "earn3": 33, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 2, "naics_s07": 57, "naics_s08": 13, "naics_s09": 1, "naics_s10": 0, "naics_s11": 1, "naics_s12": 2, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 26, "naics_s19": 0, "naics_s20": 0, "race1": 89, "race2": 23, "race3": 1, "race4": 9, "race5": 0, "race6": 2, "ethnicity1": 64, "ethnicity2": 60, "edu1": 25, "edu2": 23, "edu3": 17, "edu4": 15, "Shape_Length": 40127.298209913199, "Shape_Area": 78940065.330146551, "total_2021": 131, "total_2022": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.214205967841977, 29.852187220834413 ], [ -95.214257967441853, 29.85157022090106 ], [ -95.214176967602299, 29.850216220894911 ], [ -95.214170967189503, 29.850108220881236 ], [ -95.212767967491615, 29.850104220436208 ], [ -95.211859966597927, 29.850142220674933 ], [ -95.210741966674107, 29.85028722060262 ], [ -95.210200966048845, 29.850420221116952 ], [ -95.209736966359358, 29.850536220909689 ], [ -95.208766965770039, 29.850776221354732 ], [ -95.208710966537225, 29.850795221267315 ], [ -95.208543965908547, 29.850852221071907 ], [ -95.207987965475567, 29.85103922138434 ], [ -95.207887965630704, 29.851072221352112 ], [ -95.207033965922435, 29.851350220990799 ], [ -95.206412965942036, 29.851553221729311 ], [ -95.206265965357886, 29.851580221460082 ], [ -95.205350965517241, 29.851753221789121 ], [ -95.204298965179362, 29.851779221028462 ], [ -95.20162496409138, 29.851786221798125 ], [ -95.201551964609379, 29.851796221376233 ], [ -95.200213963577411, 29.852087221260568 ], [ -95.198927963818889, 29.852450222042847 ], [ -95.198806963933137, 29.852483221359034 ], [ -95.198748963191804, 29.852499222218267 ], [ -95.198549963967409, 29.852555221607528 ], [ -95.197045963322822, 29.852969222134387 ], [ -95.195870963192604, 29.85313622199812 ], [ -95.194701962908681, 29.853148222129231 ], [ -95.194221962465079, 29.853161222378422 ], [ -95.192747962135229, 29.853199222421885 ], [ -95.192645961816936, 29.853201222101351 ], [ -95.191553962043415, 29.853230221784582 ], [ -95.187476960288052, 29.853336222361246 ], [ -95.187298960553392, 29.853339222353089 ], [ -95.187153960755964, 29.853341222209863 ], [ -95.187128960792663, 29.853524222644886 ], [ -95.187250961174811, 29.859593223511961 ], [ -95.187353961172263, 29.864727224551746 ], [ -95.187364961574815, 29.866038225112849 ], [ -95.187354961313616, 29.868016225144942 ], [ -95.187441961045423, 29.869149225363984 ], [ -95.187627961646299, 29.870165225847266 ], [ -95.187707961908814, 29.870444225612065 ], [ -95.187804961324687, 29.870663226025577 ], [ -95.187879961946763, 29.870820226041758 ], [ -95.187998961211932, 29.871078226268711 ], [ -95.18838496218504, 29.87177622572808 ], [ -95.188911961624342, 29.872529226660593 ], [ -95.189749961840235, 29.873646225997831 ], [ -95.1904919627666, 29.874528226280987 ], [ -95.191609962718474, 29.875817227220033 ], [ -95.192286963119869, 29.876580226496504 ], [ -95.193209963132205, 29.877622226802863 ], [ -95.193833963734704, 29.878321227106667 ], [ -95.195165963356388, 29.87991122739173 ], [ -95.196992963956333, 29.881986227673881 ], [ -95.19781096491846, 29.882921227986614 ], [ -95.19797096425846, 29.883157228336607 ], [ -95.198164964629342, 29.883372228103408 ], [ -95.198776964923042, 29.884113228264564 ], [ -95.200689965758613, 29.886338228432923 ], [ -95.201839966364588, 29.88778922853912 ], [ -95.202269965636091, 29.888445228938469 ], [ -95.202624966712449, 29.889229228828789 ], [ -95.202860966470013, 29.889874229433353 ], [ -95.203011966322464, 29.890551229254065 ], [ -95.20302496620765, 29.890753229715802 ], [ -95.203072966227197, 29.891111229288001 ], [ -95.203119966360362, 29.891540229932584 ], [ -95.203497966342795, 29.891373229262861 ], [ -95.203708966925205, 29.891197229175923 ], [ -95.204056966172388, 29.890929229387947 ], [ -95.204364966476518, 29.890627229072763 ], [ -95.20525096659955, 29.889947228926033 ], [ -95.205626966938866, 29.889625229513829 ], [ -95.205998967010999, 29.88927622898229 ], [ -95.206874967478143, 29.888212228890261 ], [ -95.207198967004004, 29.887711228369721 ], [ -95.207643967362813, 29.886900228904345 ], [ -95.207987967210244, 29.886078228454952 ], [ -95.208121967661512, 29.885724228199599 ], [ -95.208256967201677, 29.885190227976757 ], [ -95.20837896712888, 29.884597227987708 ], [ -95.208446967786912, 29.88403422755886 ], [ -95.208486967493556, 29.883012228119764 ], [ -95.208254966598048, 29.873349226023628 ], [ -95.208241966463589, 29.871299225303293 ], [ -95.208319966409434, 29.869455224610249 ], [ -95.208702966406875, 29.867105224855042 ], [ -95.208835966852803, 29.866289224696335 ], [ -95.209122967165428, 29.865226224251881 ], [ -95.209182967011557, 29.865008224425019 ], [ -95.209356967292536, 29.864363223696248 ], [ -95.209724967322032, 29.863485223610716 ], [ -95.210433967138258, 29.861796223261969 ], [ -95.211031967189243, 29.860375222741872 ], [ -95.211061966779837, 29.860323222877824 ], [ -95.211125966862483, 29.860213223209009 ], [ -95.211296967150659, 29.859922223222107 ], [ -95.211406966841139, 29.859727223077975 ], [ -95.211412967047394, 29.85971622281572 ], [ -95.211469966729553, 29.859616222808675 ], [ -95.213063967940087, 29.856796221848743 ], [ -95.213379967220305, 29.856035222449403 ], [ -95.213448967062533, 29.855800221686401 ], [ -95.213494967052654, 29.855643222002627 ], [ -95.213915967274204, 29.854158221658381 ], [ -95.213926967067877, 29.854103221379603 ], [ -95.214105967232101, 29.853208221326913 ], [ -95.214149967553467, 29.852774220883781 ], [ -95.214187967693064, 29.852404221633488 ], [ -95.214205967841977, 29.852187220834413 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 320, "Tract": "48201542002", "Area_SqMi": 0.52578642179302948, "total_2009": 207, "total_2010": 128, "total_2011": 149, "total_2012": 196, "total_2013": 188, "total_2014": 355, "total_2015": 227, "total_2016": 205, "total_2017": 221, "total_2018": 235, "total_2019": 243, "total_2020": 454, "age1": 117, "age2": 180, "age3": 78, "earn1": 113, "earn2": 127, "earn3": 135, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 2, "naics_s07": 4, "naics_s08": 4, "naics_s09": 21, "naics_s10": 37, "naics_s11": 2, "naics_s12": 15, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 173, "naics_s17": 0, "naics_s18": 72, "naics_s19": 37, "naics_s20": 0, "race1": 271, "race2": 57, "race3": 1, "race4": 35, "race5": 0, "race6": 11, "ethnicity1": 208, "ethnicity2": 167, "edu1": 78, "edu2": 52, "edu3": 68, "edu4": 60, "Shape_Length": 16880.285007882885, "Shape_Area": 14658025.547135103, "total_2021": 374, "total_2022": 375 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.719880095778933, 29.831174200010473 ], [ -95.719879095768917, 29.831078199171991 ], [ -95.719878095727736, 29.831018199965339 ], [ -95.719871095872918, 29.830306199404617 ], [ -95.719870095560609, 29.829393199028953 ], [ -95.719862096113857, 29.828847199368315 ], [ -95.719857095614728, 29.828060198639115 ], [ -95.719849095849113, 29.825605198808937 ], [ -95.719837096019887, 29.824278198162045 ], [ -95.719506095818573, 29.824277198487611 ], [ -95.71929709598092, 29.824285198600283 ], [ -95.719187095868108, 29.824296198324877 ], [ -95.718857095654471, 29.82431519810147 ], [ -95.718751095481096, 29.824322198582021 ], [ -95.718441095661078, 29.824329197894095 ], [ -95.718274095177335, 29.824327198456547 ], [ -95.717621094819577, 29.824332198224603 ], [ -95.716800094787644, 29.82433619800824 ], [ -95.715980094180381, 29.82434219838785 ], [ -95.715148094303757, 29.824348198556933 ], [ -95.712634094310076, 29.824361198612525 ], [ -95.712271093726571, 29.824361198089978 ], [ -95.712130093523143, 29.824356198353378 ], [ -95.711855094008968, 29.824331198784009 ], [ -95.711587093954179, 29.824288198826249 ], [ -95.711458093506209, 29.824261198237085 ], [ -95.711208093291418, 29.824194198215345 ], [ -95.711086093639054, 29.824154198641214 ], [ -95.710966093773322, 29.824109198115863 ], [ -95.71072609278805, 29.82400419866438 ], [ -95.710356093063979, 29.823812198496121 ], [ -95.70979609268187, 29.823508198645065 ], [ -95.708970093015338, 29.823059197998848 ], [ -95.708164092146845, 29.822621197972179 ], [ -95.707911092125485, 29.82248719850697 ], [ -95.707695092271209, 29.822388198119619 ], [ -95.707529092151006, 29.822323198445417 ], [ -95.707350092112904, 29.822260198042798 ], [ -95.707096092243148, 29.822184197956737 ], [ -95.706838092642982, 29.822120198140713 ], [ -95.706593092104754, 29.822070198307891 ], [ -95.706248091694462, 29.822020198425651 ], [ -95.705952092461274, 29.821990198446201 ], [ -95.705742092255903, 29.821981197932608 ], [ -95.70519309181978, 29.821985198030166 ], [ -95.704768092138437, 29.821984198673892 ], [ -95.703651091191645, 29.821973198032051 ], [ -95.703591091346198, 29.82197219865116 ], [ -95.703465091321888, 29.821974198714972 ], [ -95.7034920916945, 29.823617198555272 ], [ -95.703494091627974, 29.82414619915647 ], [ -95.70349509187659, 29.824254198612522 ], [ -95.703502091395492, 29.824611198578342 ], [ -95.703499091948245, 29.824824198937645 ], [ -95.703506091167853, 29.825380199071912 ], [ -95.703507091076872, 29.825523199362042 ], [ -95.703527091302107, 29.82738919903657 ], [ -95.703529091593438, 29.827644199690273 ], [ -95.703468091921934, 29.828011199696686 ], [ -95.703331091817418, 29.828340199449585 ], [ -95.703132091958679, 29.828719199886869 ], [ -95.702641092005791, 29.829540199720121 ], [ -95.702492091117662, 29.829895199927968 ], [ -95.702405091542488, 29.830256199600971 ], [ -95.702365091063498, 29.830643200066572 ], [ -95.702339091885079, 29.830991199880504 ], [ -95.7023190919532, 29.831072200366176 ], [ -95.702313091830845, 29.83112519985573 ], [ -95.702493091426547, 29.831126200033118 ], [ -95.703519091401972, 29.831129199783039 ], [ -95.70811609349488, 29.831144199612289 ], [ -95.711147093285902, 29.831154199625036 ], [ -95.712665094280268, 29.831161200148514 ], [ -95.71609109525798, 29.831178199571585 ], [ -95.717631095583926, 29.831178199414943 ], [ -95.718113095656605, 29.831175199854513 ], [ -95.719052095512183, 29.831174199649244 ], [ -95.719880095778933, 29.831174200010473 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 321, "Tract": "48201321302", "Area_SqMi": 0.39119687772386258, "total_2009": 588, "total_2010": 583, "total_2011": 605, "total_2012": 659, "total_2013": 616, "total_2014": 612, "total_2015": 637, "total_2016": 1073, "total_2017": 1092, "total_2018": 1104, "total_2019": 734, "total_2020": 1006, "age1": 206, "age2": 618, "age3": 287, "earn1": 120, "earn2": 168, "earn3": 823, "naics_s01": 0, "naics_s02": 0, "naics_s03": 774, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 288, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 1, "naics_s13": 3, "naics_s14": 35, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 4, "naics_s19": 1, "naics_s20": 0, "race1": 860, "race2": 180, "race3": 11, "race4": 46, "race5": 0, "race6": 14, "ethnicity1": 741, "ethnicity2": 370, "edu1": 196, "edu2": 236, "edu3": 258, "edu4": 215, "Shape_Length": 14533.30383410476, "Shape_Area": 10905899.410793582, "total_2021": 1137, "total_2022": 1111 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.216988959525182, 29.648024178877478 ], [ -95.217479959230587, 29.647727179217927 ], [ -95.216899959425234, 29.647099178977751 ], [ -95.21630095883485, 29.64647317904786 ], [ -95.21570495834213, 29.645833178353271 ], [ -95.21512595810286, 29.645202179051918 ], [ -95.215563958910522, 29.644884178695214 ], [ -95.216250958524512, 29.644392178483034 ], [ -95.216682958535031, 29.644075178497513 ], [ -95.216839958591933, 29.643958178410909 ], [ -95.217064958477621, 29.643792178046887 ], [ -95.217268958772735, 29.643646178698823 ], [ -95.216882958789427, 29.643197177891828 ], [ -95.216077958835186, 29.64236017773483 ], [ -95.21523595792101, 29.64145917827376 ], [ -95.214635958274826, 29.640785177458248 ], [ -95.214469957806941, 29.640599178111543 ], [ -95.214152958170843, 29.640281177586015 ], [ -95.213234957616024, 29.639331177641289 ], [ -95.212239957989965, 29.638268177189715 ], [ -95.212074957070854, 29.638093177348331 ], [ -95.21103095673287, 29.636986177185634 ], [ -95.210809956763072, 29.637143176714673 ], [ -95.21060195711587, 29.637294177021882 ], [ -95.20958595691728, 29.638030177589393 ], [ -95.209193956668585, 29.638368177136378 ], [ -95.20862595677319, 29.639072177431327 ], [ -95.208488956508319, 29.639311177785498 ], [ -95.208308956695831, 29.63961617735032 ], [ -95.208073956331077, 29.64007817821879 ], [ -95.207895956707574, 29.640573178291763 ], [ -95.207821956026663, 29.640881177969291 ], [ -95.207769956229313, 29.641195177699892 ], [ -95.207742956966371, 29.641908178508764 ], [ -95.207785956309991, 29.643432178427773 ], [ -95.20779495638773, 29.643859178312123 ], [ -95.207797956806147, 29.643997178485353 ], [ -95.207799957063841, 29.644064178288545 ], [ -95.207817957019998, 29.64485317924029 ], [ -95.207834956388325, 29.645342178770981 ], [ -95.207849956934197, 29.645754178927813 ], [ -95.207857956585471, 29.645999179031083 ], [ -95.207864956386175, 29.646178179040447 ], [ -95.207870956806246, 29.646516178918201 ], [ -95.207896956907689, 29.647120179650983 ], [ -95.207909956321842, 29.647650179616686 ], [ -95.207931957095823, 29.648523179612749 ], [ -95.207925957319404, 29.649050179335394 ], [ -95.207927957090604, 29.649137179978396 ], [ -95.207940956473678, 29.649632179823652 ], [ -95.207939956686019, 29.649828179855 ], [ -95.207954956729324, 29.650060180080253 ], [ -95.207956957257039, 29.650559179634463 ], [ -95.207955957205911, 29.650823179724352 ], [ -95.207980956577345, 29.650985180066336 ], [ -95.208640956867086, 29.650967180348658 ], [ -95.209242957528019, 29.650951179951733 ], [ -95.211347957724939, 29.650895179604742 ], [ -95.212563957908984, 29.650862179683106 ], [ -95.213093958011569, 29.650781179838411 ], [ -95.213656958632711, 29.650685180088317 ], [ -95.214697958748417, 29.650359179492224 ], [ -95.214403958902679, 29.649671179416302 ], [ -95.214123958889317, 29.648949179511884 ], [ -95.216702958725577, 29.648126179122002 ], [ -95.216988959525182, 29.648024178877478 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 322, "Tract": "48201221702", "Area_SqMi": 0.93907513593294911, "total_2009": 42, "total_2010": 47, "total_2011": 54, "total_2012": 79, "total_2013": 53, "total_2014": 74, "total_2015": 74, "total_2016": 94, "total_2017": 109, "total_2018": 76, "total_2019": 73, "total_2020": 90, "age1": 18, "age2": 46, "age3": 15, "earn1": 13, "earn2": 44, "earn3": 22, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 17, "naics_s06": 2, "naics_s07": 33, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 5, "naics_s12": 2, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 62, "race2": 8, "race3": 0, "race4": 7, "race5": 0, "race6": 2, "ethnicity1": 36, "ethnicity2": 43, "edu1": 20, "edu2": 18, "edu3": 13, "edu4": 10, "Shape_Length": 23935.661124600447, "Shape_Area": 26179807.546652447, "total_2021": 89, "total_2022": 79 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.396714016437997, 29.892939223209268 ], [ -95.396892016562731, 29.892864223052197 ], [ -95.396550015929577, 29.892271223103737 ], [ -95.396422016337837, 29.892037222678468 ], [ -95.396197016353824, 29.891670222741162 ], [ -95.395984016000639, 29.891326223106876 ], [ -95.395854016208588, 29.891107223153995 ], [ -95.395550015860266, 29.890597222584255 ], [ -95.395299015884987, 29.890191223035796 ], [ -95.394938015662731, 29.889594222491457 ], [ -95.394860015603243, 29.889458223084365 ], [ -95.394694014992027, 29.889186222553192 ], [ -95.394552015090269, 29.888943222711113 ], [ -95.393986014846547, 29.888014222157629 ], [ -95.393678015591135, 29.887500222156412 ], [ -95.39308301540288, 29.886516222058439 ], [ -95.392642014892957, 29.885791221627706 ], [ -95.392304014673911, 29.885237221721862 ], [ -95.392182015033612, 29.88504722179033 ], [ -95.392134014380076, 29.884941221701734 ], [ -95.391965014505999, 29.884635221928431 ], [ -95.391886014560242, 29.884545222073285 ], [ -95.391834014803123, 29.884441221932224 ], [ -95.391774014826979, 29.884341221877154 ], [ -95.391437014272938, 29.883782221230913 ], [ -95.391377014702769, 29.883694221406699 ], [ -95.391096014446305, 29.883231221172707 ], [ -95.390478014389828, 29.883218221692427 ], [ -95.389812013627463, 29.883205221180685 ], [ -95.38830401391148, 29.883202221926663 ], [ -95.386615012778805, 29.88319022127207 ], [ -95.384502012516549, 29.883189221283128 ], [ -95.384276012817949, 29.88319822175713 ], [ -95.384188012572181, 29.883183221391239 ], [ -95.384101012741695, 29.883180221315286 ], [ -95.384054012919719, 29.883182222101375 ], [ -95.383989012496968, 29.883171221843629 ], [ -95.381526012284908, 29.883212221759596 ], [ -95.379164010743793, 29.883232221843272 ], [ -95.379027010940092, 29.883232221527329 ], [ -95.378532011347588, 29.883232221544539 ], [ -95.377382010871727, 29.88324522188265 ], [ -95.376442010074456, 29.883251222264818 ], [ -95.376096010789269, 29.883251221731349 ], [ -95.375990010911607, 29.883252221748087 ], [ -95.375776009982744, 29.883254221629162 ], [ -95.375697010239762, 29.883255222363953 ], [ -95.375608010772666, 29.883268222385013 ], [ -95.37350800965136, 29.883280222405702 ], [ -95.37298300991813, 29.883289222507454 ], [ -95.369808008366846, 29.883347222468078 ], [ -95.368860008643736, 29.883366222056335 ], [ -95.368234008667542, 29.883384222248786 ], [ -95.368237008794097, 29.883395222621079 ], [ -95.368609009020915, 29.884862222654558 ], [ -95.368780008876087, 29.885534222580972 ], [ -95.368892008477076, 29.885977223237084 ], [ -95.369774009544088, 29.889451223268274 ], [ -95.369935009206628, 29.890087223602784 ], [ -95.370431009885635, 29.892100224144965 ], [ -95.370542009128897, 29.892552224054924 ], [ -95.370662009118504, 29.89253222369102 ], [ -95.370852009984631, 29.892488223766684 ], [ -95.371114009481133, 29.892449224472823 ], [ -95.371293009251929, 29.89242222440263 ], [ -95.371451009861417, 29.892378223822242 ], [ -95.371918009613907, 29.892158223781163 ], [ -95.372139009376909, 29.89210322408448 ], [ -95.372227010172352, 29.892114223582247 ], [ -95.372341010349899, 29.892158223879722 ], [ -95.372606010170841, 29.892366223587786 ], [ -95.372858010033994, 29.892454224100959 ], [ -95.373092009779214, 29.892471224119863 ], [ -95.373413009732261, 29.892459224235996 ], [ -95.373527010625267, 29.892476224055901 ], [ -95.373710010577767, 29.892553224279673 ], [ -95.374077010692375, 29.892627223844734 ], [ -95.374278010903865, 29.892668223617928 ], [ -95.374340010413121, 29.892676223702953 ], [ -95.37452401037956, 29.892701224053365 ], [ -95.374745010612287, 29.892723224309258 ], [ -95.374890010998953, 29.892712224224745 ], [ -95.375010010896531, 29.892690224276485 ], [ -95.375217010587576, 29.892699224036008 ], [ -95.375419010961394, 29.892590224002323 ], [ -95.375672010905603, 29.892397224293763 ], [ -95.375861011077347, 29.892293224139017 ], [ -95.376006010494336, 29.892265223625248 ], [ -95.376713011003204, 29.892211223569287 ], [ -95.376921010786091, 29.892222223586053 ], [ -95.377022011207998, 29.892282223551852 ], [ -95.377117010933958, 29.892381223771224 ], [ -95.377233010795976, 29.892479223965175 ], [ -95.377293010953991, 29.892530224094912 ], [ -95.378094011214557, 29.892800224060885 ], [ -95.378366011906735, 29.8929212242147 ], [ -95.378456011680754, 29.893031224183321 ], [ -95.378731011860211, 29.893201224264672 ], [ -95.378915011623306, 29.893245224270927 ], [ -95.379381011270311, 29.893306223885681 ], [ -95.379552011874708, 29.893295223520393 ], [ -95.380606012390203, 29.893015224191018 ], [ -95.38095301244806, 29.893010224196185 ], [ -95.381230011892626, 29.89297722416033 ], [ -95.381704012176272, 29.892862224133889 ], [ -95.381988012259441, 29.892735223948392 ], [ -95.382215012711995, 29.892576223515388 ], [ -95.382448012268284, 29.892510223314009 ], [ -95.382606012527702, 29.892417223219176 ], [ -95.382846012049399, 29.892224223617497 ], [ -95.383086012732093, 29.892104223634885 ], [ -95.383464012808744, 29.891994223431354 ], [ -95.383780013283598, 29.891884223767459 ], [ -95.383995012612075, 29.891758223765276 ], [ -95.384241013049632, 29.891648223903932 ], [ -95.384575012946144, 29.891604223765619 ], [ -95.385099012646364, 29.891741223333995 ], [ -95.385200013618686, 29.891846223846834 ], [ -95.385338012720496, 29.892148223765087 ], [ -95.385572013493189, 29.892379223885271 ], [ -95.386032013718733, 29.892687224039907 ], [ -95.386385013315703, 29.892952223578316 ], [ -95.386469013820331, 29.892990223545784 ], [ -95.386713013344348, 29.893100223820337 ], [ -95.386884013860922, 29.893117223539846 ], [ -95.38692601317284, 29.893113223973067 ], [ -95.387054013764924, 29.893100223949844 ], [ -95.387212013391633, 29.892974223919829 ], [ -95.38776101365049, 29.892391223693014 ], [ -95.387862013427224, 29.892314223705682 ], [ -95.387957013853168, 29.892265223178654 ], [ -95.388253013946169, 29.892254223527758 ], [ -95.38846801357937, 29.892271223197639 ], [ -95.388613014401756, 29.892260223699768 ], [ -95.388884013814916, 29.892210223340836 ], [ -95.389332014441678, 29.892045223474071 ], [ -95.389493014263365, 29.892005223450205 ], [ -95.389572014173595, 29.891985223170995 ], [ -95.389888014227807, 29.891930223444625 ], [ -95.390108014900093, 29.891936222973353 ], [ -95.390298013986921, 29.891958223707245 ], [ -95.390418014344689, 29.891985223589995 ], [ -95.390619014962184, 29.891991222921192 ], [ -95.390897014439304, 29.891859223673805 ], [ -95.391042014811362, 29.891881223362841 ], [ -95.39125001504928, 29.891936223119639 ], [ -95.391509014414979, 29.892041223083268 ], [ -95.392014014778653, 29.892085223017052 ], [ -95.392342015123347, 29.892085223082073 ], [ -95.392689014607143, 29.892063223474285 ], [ -95.393036015208779, 29.892190222952042 ], [ -95.393313014963056, 29.892388223224916 ], [ -95.393717014968914, 29.892602223489771 ], [ -95.394064015330017, 29.892718223520152 ], [ -95.394430015035994, 29.892778223461978 ], [ -95.394834015459821, 29.892932223696235 ], [ -95.395023015746688, 29.892965223599028 ], [ -95.395465016053137, 29.893268223577913 ], [ -95.395641016227472, 29.893323223224431 ], [ -95.395881015697455, 29.893323223546478 ], [ -95.396102016096279, 29.893268223524053 ], [ -95.396392015629871, 29.893142223698465 ], [ -95.396714016437997, 29.892939223209268 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 323, "Tract": "48201221602", "Area_SqMi": 1.7710857445925599, "total_2009": 4252, "total_2010": 4067, "total_2011": 3732, "total_2012": 3619, "total_2013": 3676, "total_2014": 3769, "total_2015": 3953, "total_2016": 3826, "total_2017": 3947, "total_2018": 4136, "total_2019": 4310, "total_2020": 4332, "age1": 1179, "age2": 2509, "age3": 829, "earn1": 879, "earn2": 1531, "earn3": 2107, "naics_s01": 0, "naics_s02": 0, "naics_s03": 12, "naics_s04": 458, "naics_s05": 212, "naics_s06": 78, "naics_s07": 251, "naics_s08": 3042, "naics_s09": 0, "naics_s10": 16, "naics_s11": 5, "naics_s12": 24, "naics_s13": 0, "naics_s14": 15, "naics_s15": 42, "naics_s16": 83, "naics_s17": 7, "naics_s18": 182, "naics_s19": 90, "naics_s20": 0, "race1": 2785, "race2": 1438, "race3": 34, "race4": 179, "race5": 7, "race6": 74, "ethnicity1": 2986, "ethnicity2": 1531, "edu1": 688, "edu2": 998, "edu3": 1151, "edu4": 501, "Shape_Length": 27960.096603084337, "Shape_Area": 49374839.315694004, "total_2021": 4353, "total_2022": 4517 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412245020393343, 29.889063221721404 ], [ -95.412243019620576, 29.888838222297558 ], [ -95.412223019530103, 29.886928221661343 ], [ -95.412206020044053, 29.886143221366957 ], [ -95.412195019759579, 29.885651220930445 ], [ -95.412159019569557, 29.884033221325275 ], [ -95.412119020100391, 29.882203220324627 ], [ -95.412118019636708, 29.879723220067405 ], [ -95.412117019747512, 29.878565220116258 ], [ -95.412093018980329, 29.877986219695661 ], [ -95.411979019797059, 29.877215219389463 ], [ -95.411908018874257, 29.876862219141092 ], [ -95.411895019518752, 29.876819219715696 ], [ -95.411810019198469, 29.876546219185915 ], [ -95.411642019490074, 29.876107218947094 ], [ -95.411625019344896, 29.876070219628826 ], [ -95.411615019576942, 29.876049219748626 ], [ -95.411595019034095, 29.876005219740442 ], [ -95.411569018675635, 29.875948219393727 ], [ -95.411442018710076, 29.875671219297637 ], [ -95.410238018807647, 29.873604218832906 ], [ -95.409320018735116, 29.872266218434632 ], [ -95.409023018376899, 29.871800218541164 ], [ -95.40829001791775, 29.870580218489337 ], [ -95.408044018400631, 29.870095218168583 ], [ -95.407930018077266, 29.869871218485002 ], [ -95.407800017740186, 29.869867218313509 ], [ -95.40762901795884, 29.869862218449605 ], [ -95.407408017906604, 29.869856217779954 ], [ -95.406496017785656, 29.869832217789789 ], [ -95.405500017080016, 29.869839218108591 ], [ -95.405141017132522, 29.869848218286609 ], [ -95.40467501682177, 29.869850218404991 ], [ -95.404146017314304, 29.869855218234253 ], [ -95.403773016930757, 29.869853218227419 ], [ -95.402622016362429, 29.869865218804453 ], [ -95.402554016159229, 29.86986621863679 ], [ -95.401737016735524, 29.86987221810741 ], [ -95.401452016618151, 29.869872218291164 ], [ -95.401212015745244, 29.869872218288204 ], [ -95.400820016448634, 29.869875218149609 ], [ -95.400635016596254, 29.869880218487779 ], [ -95.399719016226911, 29.86989321821812 ], [ -95.39880401531974, 29.869902218218112 ], [ -95.39783501561223, 29.86991321814191 ], [ -95.397197015656872, 29.869925218684511 ], [ -95.395601015010584, 29.869931218205465 ], [ -95.394561014452222, 29.869941218238647 ], [ -95.391220013286656, 29.869977218986804 ], [ -95.390261013568889, 29.869988218452661 ], [ -95.388541013172031, 29.869998218671782 ], [ -95.385920012031988, 29.870028219362599 ], [ -95.385609012618218, 29.870038218652489 ], [ -95.385505012178584, 29.870047219251411 ], [ -95.384920012086042, 29.870055218876249 ], [ -95.384903011688252, 29.871201219628855 ], [ -95.384906011909706, 29.871338219091076 ], [ -95.384895012500465, 29.87141421953363 ], [ -95.384878011630263, 29.871524219289928 ], [ -95.384880012090733, 29.871740219119648 ], [ -95.384895012061889, 29.871934219163595 ], [ -95.38490801208323, 29.872335219337248 ], [ -95.384952012161392, 29.872659219937464 ], [ -95.384959012249027, 29.872765219692646 ], [ -95.384968012093793, 29.872817219177772 ], [ -95.385003012495304, 29.872945219641807 ], [ -95.385035012243591, 29.873043219667675 ], [ -95.385077012148997, 29.873151219536116 ], [ -95.385127012624196, 29.873260219362859 ], [ -95.385239012437694, 29.873470219990249 ], [ -95.385289012495306, 29.873566220014357 ], [ -95.385473012696849, 29.873856220105615 ], [ -95.386511013012267, 29.87559122035799 ], [ -95.386521012780491, 29.875608219983985 ], [ -95.386457012626849, 29.875608220103643 ], [ -95.386728012292892, 29.876035220553391 ], [ -95.387281013315018, 29.876942220347079 ], [ -95.387521013276839, 29.877338220802592 ], [ -95.387650013512811, 29.877549220059233 ], [ -95.387972013169446, 29.878080220694684 ], [ -95.388283013809087, 29.878596220419247 ], [ -95.388339012880266, 29.878675220608223 ], [ -95.388403013217783, 29.878754220441873 ], [ -95.3884430132088, 29.878851220673255 ], [ -95.388549013142097, 29.879035220318954 ], [ -95.388609012966697, 29.879122220667544 ], [ -95.38883001394106, 29.879495220480674 ], [ -95.389498013291004, 29.880597220672819 ], [ -95.389757013626536, 29.881023220952763 ], [ -95.390297013486816, 29.881909221475855 ], [ -95.390619013763015, 29.882439221408752 ], [ -95.391096014446305, 29.883231221172707 ], [ -95.391377014702769, 29.883694221406699 ], [ -95.391437014272938, 29.883782221230913 ], [ -95.391774014826979, 29.884341221877154 ], [ -95.391834014803123, 29.884441221932224 ], [ -95.391886014560242, 29.884545222073285 ], [ -95.391965014505999, 29.884635221928431 ], [ -95.392134014380076, 29.884941221701734 ], [ -95.392182015033612, 29.88504722179033 ], [ -95.392304014673911, 29.885237221721862 ], [ -95.392642014892957, 29.885791221627706 ], [ -95.39308301540288, 29.886516222058439 ], [ -95.393678015591135, 29.887500222156412 ], [ -95.393986014846547, 29.888014222157629 ], [ -95.394552015090269, 29.888943222711113 ], [ -95.394694014992027, 29.889186222553192 ], [ -95.394860015603243, 29.889458223084365 ], [ -95.395288015233461, 29.889432222174293 ], [ -95.396043016231374, 29.889376222578594 ], [ -95.398124016221175, 29.889258222443924 ], [ -95.398705016464646, 29.889225222905605 ], [ -95.399667017173499, 29.889169222265881 ], [ -95.400487016701888, 29.889123222613279 ], [ -95.400727017454074, 29.889113222519782 ], [ -95.401247017565524, 29.889079222792081 ], [ -95.402460017406554, 29.889007222508148 ], [ -95.404571017961501, 29.888887222045405 ], [ -95.40494401763867, 29.888872222442004 ], [ -95.405208018196987, 29.888870221931086 ], [ -95.405366018357199, 29.888867222377066 ], [ -95.405458018041159, 29.888870222417111 ], [ -95.405861017877513, 29.888869222152358 ], [ -95.407483019171409, 29.888857222320482 ], [ -95.407998019057374, 29.888846222133925 ], [ -95.408257019160601, 29.8888462218749 ], [ -95.408349018688924, 29.888853222155433 ], [ -95.408500018482229, 29.888847221656157 ], [ -95.408568018634469, 29.888849222405327 ], [ -95.408774018986819, 29.888836221811509 ], [ -95.409000018713726, 29.888845222341665 ], [ -95.409227018811592, 29.888866221644655 ], [ -95.409436018816933, 29.888896221807006 ], [ -95.40987901979625, 29.888985221622136 ], [ -95.410183019486837, 29.889038222297096 ], [ -95.410487019992388, 29.889059221641212 ], [ -95.410786019691088, 29.889063221929796 ], [ -95.411715019306897, 29.889068221817954 ], [ -95.411948019914547, 29.889066222016488 ], [ -95.412094019603842, 29.889065222380651 ], [ -95.412245020393343, 29.889063221721404 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 324, "Tract": "48201222505", "Area_SqMi": 0.54411792907165701, "total_2009": 942, "total_2010": 909, "total_2011": 1568, "total_2012": 1409, "total_2013": 1272, "total_2014": 1447, "total_2015": 1499, "total_2016": 1573, "total_2017": 1570, "total_2018": 1729, "total_2019": 1782, "total_2020": 1609, "age1": 592, "age2": 872, "age3": 347, "earn1": 504, "earn2": 725, "earn3": 582, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 52, "naics_s05": 94, "naics_s06": 46, "naics_s07": 668, "naics_s08": 0, "naics_s09": 12, "naics_s10": 199, "naics_s11": 0, "naics_s12": 79, "naics_s13": 0, "naics_s14": 148, "naics_s15": 0, "naics_s16": 45, "naics_s17": 0, "naics_s18": 460, "naics_s19": 6, "naics_s20": 0, "race1": 1302, "race2": 367, "race3": 19, "race4": 91, "race5": 4, "race6": 28, "ethnicity1": 975, "ethnicity2": 836, "edu1": 342, "edu2": 307, "edu3": 380, "edu4": 190, "Shape_Length": 20726.450095270666, "Shape_Area": 15169076.59537497, "total_2021": 1543, "total_2022": 1811 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412755020982218, 29.917336227674557 ], [ -95.412707021069664, 29.915307227270752 ], [ -95.412702021324648, 29.915076227597989 ], [ -95.412560021122047, 29.915085227345173 ], [ -95.412403021097745, 29.91509622692152 ], [ -95.412178020904975, 29.915112227687228 ], [ -95.411565021123835, 29.915123227480922 ], [ -95.410952021115023, 29.915134227180875 ], [ -95.409640020779676, 29.915158227476539 ], [ -95.40885302019025, 29.915168227143585 ], [ -95.408583020016479, 29.915171227813016 ], [ -95.40796901968065, 29.915193227021483 ], [ -95.406814019506641, 29.91521622706507 ], [ -95.406325019621633, 29.915252227118994 ], [ -95.405771019734047, 29.915319227901467 ], [ -95.405140018997571, 29.915416227498511 ], [ -95.404998019489895, 29.91543922788777 ], [ -95.404347019507469, 29.91554322761883 ], [ -95.403701019050516, 29.915677227556152 ], [ -95.403088018780124, 29.915853227538978 ], [ -95.402523018366594, 29.916046227781198 ], [ -95.401971018205558, 29.916238227517905 ], [ -95.401611018324189, 29.916385228260509 ], [ -95.400879018063108, 29.916707228280309 ], [ -95.400558017705194, 29.916848228108147 ], [ -95.400074018040883, 29.917049227873015 ], [ -95.399662018283493, 29.917219228202391 ], [ -95.398538017559531, 29.917706228294563 ], [ -95.3977640171275, 29.918027228158273 ], [ -95.397077016931689, 29.918413228804855 ], [ -95.396735017433201, 29.918567228612893 ], [ -95.396417016957216, 29.918703228404762 ], [ -95.396151017030945, 29.918813228479678 ], [ -95.3959240169183, 29.91890022872855 ], [ -95.395676017490743, 29.918988228887773 ], [ -95.395408017448432, 29.919065228297924 ], [ -95.395190016475965, 29.919125228955131 ], [ -95.394857016721772, 29.919206228386312 ], [ -95.394522016556579, 29.919257228950094 ], [ -95.394335016745927, 29.919292229063892 ], [ -95.393975016142463, 29.919322228786694 ], [ -95.393525016107674, 29.919325229085246 ], [ -95.393526016033633, 29.919342228766244 ], [ -95.393543016379127, 29.921031228915691 ], [ -95.393591016671053, 29.921355229394774 ], [ -95.393678017132302, 29.921599229116449 ], [ -95.393796016856029, 29.921795229227182 ], [ -95.393942016944976, 29.922020228892123 ], [ -95.394275017017705, 29.922357229432063 ], [ -95.394326016747016, 29.922426228942573 ], [ -95.394814017371814, 29.922924229584307 ], [ -95.395360017321437, 29.923508229211436 ], [ -95.395638016839385, 29.923812229481719 ], [ -95.396797017458113, 29.925008230205293 ], [ -95.397071017302579, 29.925290229553305 ], [ -95.39735501803213, 29.925580230311731 ], [ -95.397697018384861, 29.925948230337053 ], [ -95.397882018137324, 29.92598523003263 ], [ -95.399740018778516, 29.925954230131474 ], [ -95.400082018687783, 29.925914229826237 ], [ -95.400493018252433, 29.925812230024775 ], [ -95.400680018853862, 29.925772229713736 ], [ -95.40084201824294, 29.925695229445445 ], [ -95.401153019147515, 29.925529229793373 ], [ -95.401480019320289, 29.925313229380368 ], [ -95.401616018523285, 29.925277230050444 ], [ -95.401060019117025, 29.92465622945387 ], [ -95.400539018245269, 29.924070229493026 ], [ -95.400719019054634, 29.923947229345988 ], [ -95.401209018441449, 29.923573229375901 ], [ -95.401526018460046, 29.923353229339959 ], [ -95.401781018294542, 29.923174229379978 ], [ -95.402279019209104, 29.922827228806263 ], [ -95.402630018647812, 29.922568229425359 ], [ -95.402719019498264, 29.922463229083917 ], [ -95.402818019234076, 29.922348229436157 ], [ -95.402880018618447, 29.922221228891303 ], [ -95.402871019528149, 29.922115229325627 ], [ -95.402633018969226, 29.921934228897261 ], [ -95.402498019437616, 29.921770228536694 ], [ -95.402410019237323, 29.921663228776318 ], [ -95.40213901933204, 29.921310228822357 ], [ -95.402751018943476, 29.920920228371028 ], [ -95.402936018702434, 29.920826228546929 ], [ -95.4031710194635, 29.920758228801297 ], [ -95.40334101861599, 29.920728228860945 ], [ -95.403958019232789, 29.92073722861489 ], [ -95.404185019155904, 29.920731229035368 ], [ -95.404388018911888, 29.920702228354742 ], [ -95.404497019898855, 29.920676228716005 ], [ -95.405040019079451, 29.920530229008083 ], [ -95.406179019577323, 29.920133228700667 ], [ -95.406756019829217, 29.919933228423886 ], [ -95.406804019654658, 29.920063228024972 ], [ -95.407037019643255, 29.920744228980663 ], [ -95.407234020565284, 29.921275228862516 ], [ -95.407371020498076, 29.921643228698436 ], [ -95.407561019930299, 29.92215822846396 ], [ -95.407969020762536, 29.923309229441106 ], [ -95.408147020310764, 29.923784228847712 ], [ -95.408272020412497, 29.924150229096085 ], [ -95.408563020708229, 29.924954228990853 ], [ -95.409436020467211, 29.924717229294199 ], [ -95.409663020528257, 29.924659228902271 ], [ -95.409982021468508, 29.924590229208967 ], [ -95.410341020748461, 29.924579228937773 ], [ -95.410834021022353, 29.924606229488496 ], [ -95.411051020942907, 29.924613228991902 ], [ -95.41116602157723, 29.924615228989634 ], [ -95.411352021183518, 29.924626228969117 ], [ -95.411756021742576, 29.924652229286309 ], [ -95.411860020955913, 29.924660229383264 ], [ -95.412018021246865, 29.924665229426317 ], [ -95.412160021426331, 29.924670229419473 ], [ -95.412319021699176, 29.924681229317891 ], [ -95.412347021967619, 29.924258228943017 ], [ -95.412629021246715, 29.919576228085699 ], [ -95.412670021611902, 29.918839227902865 ], [ -95.412755020982218, 29.917336227674557 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 325, "Tract": "48201333802", "Area_SqMi": 1.3174547690680487, "total_2009": 162, "total_2010": 123, "total_2011": 153, "total_2012": 133, "total_2013": 98, "total_2014": 184, "total_2015": 211, "total_2016": 192, "total_2017": 163, "total_2018": 178, "total_2019": 203, "total_2020": 174, "age1": 36, "age2": 114, "age3": 75, "earn1": 29, "earn2": 58, "earn3": 138, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 68, "naics_s06": 14, "naics_s07": 36, "naics_s08": 61, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 14, "naics_s19": 5, "naics_s20": 0, "race1": 169, "race2": 36, "race3": 7, "race4": 13, "race5": 0, "race6": 0, "ethnicity1": 126, "ethnicity2": 99, "edu1": 46, "edu2": 48, "edu3": 61, "edu4": 34, "Shape_Length": 31978.760486549763, "Shape_Area": 36728384.115244672, "total_2021": 181, "total_2022": 225 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.286123975111863, 29.603378167456757 ], [ -95.286152974409163, 29.602912168024911 ], [ -95.284535974669353, 29.602909167561467 ], [ -95.281701973915489, 29.60296216799161 ], [ -95.281395973558901, 29.602968167697686 ], [ -95.278232973163071, 29.603026168263202 ], [ -95.278171972391192, 29.603018167493389 ], [ -95.278143973364863, 29.603014167628398 ], [ -95.278075973320881, 29.602975167497473 ], [ -95.278051972745132, 29.602923168114078 ], [ -95.278048972807625, 29.602856167438194 ], [ -95.27805597262099, 29.601656167178305 ], [ -95.278026972302399, 29.601557167282593 ], [ -95.277971972707164, 29.601486167847202 ], [ -95.277877972230215, 29.601438167993624 ], [ -95.277772972454372, 29.601421167651541 ], [ -95.273528971946945, 29.601498168131268 ], [ -95.271373970703294, 29.601538168045366 ], [ -95.266644969986032, 29.601632168017414 ], [ -95.26648797001279, 29.601635168165135 ], [ -95.266457969963668, 29.601636167972849 ], [ -95.266405969735885, 29.601634167870415 ], [ -95.266321969979259, 29.601632168370326 ], [ -95.266351969538249, 29.60201716798279 ], [ -95.266370969461533, 29.60225516813356 ], [ -95.266403969902143, 29.602670167828737 ], [ -95.266444970219666, 29.603183167907517 ], [ -95.266478969916633, 29.603886168265731 ], [ -95.266481969859129, 29.603907168190499 ], [ -95.266516970335019, 29.604095168495469 ], [ -95.266520969438062, 29.604158168629905 ], [ -95.266551970138352, 29.604645168890155 ], [ -95.266578970237802, 29.608499169431056 ], [ -95.266588970410012, 29.6118391700135 ], [ -95.26660697037056, 29.612793170346059 ], [ -95.266679970408077, 29.613344170258163 ], [ -95.266682970920314, 29.614402170852156 ], [ -95.266698970203819, 29.615698170903876 ], [ -95.266713970883416, 29.616753171066243 ], [ -95.266724970400418, 29.617811171008448 ], [ -95.266729971151065, 29.618873171184347 ], [ -95.266744970749514, 29.619922171894732 ], [ -95.266762970763594, 29.620977171598124 ], [ -95.266784970764377, 29.622010172207162 ], [ -95.266790970901667, 29.622832172166284 ], [ -95.266793970891257, 29.623069172094102 ], [ -95.266794971299888, 29.624114172960724 ], [ -95.266799970926897, 29.624511173134724 ], [ -95.26676497120792, 29.625143172715468 ], [ -95.266763970730125, 29.6251761727383 ], [ -95.266740970567454, 29.626442173444307 ], [ -95.271227972266459, 29.626244173133454 ], [ -95.275735973566697, 29.626096173046864 ], [ -95.278441973963581, 29.625946172558656 ], [ -95.278421974281386, 29.625180172711943 ], [ -95.278418974329981, 29.625026172741659 ], [ -95.275724973137784, 29.625034172253201 ], [ -95.275716973329381, 29.624759172128602 ], [ -95.275707972694022, 29.624015172318217 ], [ -95.275691973101161, 29.622967172067504 ], [ -95.275672973325101, 29.621916172246813 ], [ -95.275656972603443, 29.62088117151681 ], [ -95.275644972937869, 29.619817171805277 ], [ -95.27562597273176, 29.618771171328991 ], [ -95.27561497294289, 29.617713171311333 ], [ -95.275596973087119, 29.616651171193105 ], [ -95.275585972393685, 29.61558417045304 ], [ -95.275562973166529, 29.614304170059448 ], [ -95.275543973112605, 29.613260170402032 ], [ -95.275535972435051, 29.612634169685645 ], [ -95.275523972135886, 29.611731169535506 ], [ -95.277681972957325, 29.611708169659853 ], [ -95.278260972904079, 29.61170716951402 ], [ -95.278774973804303, 29.61170616990568 ], [ -95.280180973532168, 29.611705169918999 ], [ -95.281289974485418, 29.61167916951004 ], [ -95.282062974459834, 29.611673169920568 ], [ -95.282913974778651, 29.611692169085607 ], [ -95.283209974625109, 29.611688169464049 ], [ -95.28461797472832, 29.611671169577171 ], [ -95.285548974753667, 29.611660169821477 ], [ -95.285730975494658, 29.609311168904387 ], [ -95.285840975340065, 29.60816816825891 ], [ -95.285878974928451, 29.607692168783014 ], [ -95.285912975382033, 29.60731516812039 ], [ -95.285934975184972, 29.6071091682767 ], [ -95.285989974600938, 29.606438168690598 ], [ -95.286045975139032, 29.604660168012259 ], [ -95.286123975111863, 29.603378167456757 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 326, "Tract": "48201543010", "Area_SqMi": 0.52837514192055446, "total_2009": 171, "total_2010": 118, "total_2011": 158, "total_2012": 221, "total_2013": 204, "total_2014": 164, "total_2015": 206, "total_2016": 192, "total_2017": 201, "total_2018": 218, "total_2019": 213, "total_2020": 212, "age1": 79, "age2": 110, "age3": 29, "earn1": 64, "earn2": 90, "earn3": 64, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 0, "naics_s06": 0, "naics_s07": 63, "naics_s08": 5, "naics_s09": 0, "naics_s10": 19, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 60, "naics_s17": 0, "naics_s18": 43, "naics_s19": 12, "naics_s20": 0, "race1": 146, "race2": 31, "race3": 1, "race4": 35, "race5": 1, "race6": 4, "ethnicity1": 126, "ethnicity2": 92, "edu1": 39, "edu2": 33, "edu3": 36, "edu4": 31, "Shape_Length": 15979.054883632563, "Shape_Area": 14730194.633651722, "total_2021": 224, "total_2022": 218 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.723885099552646, 29.880664209331453 ], [ -95.723881099237616, 29.880168209106007 ], [ -95.723868099616411, 29.879944209134187 ], [ -95.723851099504941, 29.879802209535807 ], [ -95.723847098964313, 29.879709209299147 ], [ -95.720839098703706, 29.87972820932557 ], [ -95.720293098765723, 29.879732209480746 ], [ -95.718193097445962, 29.87974620999308 ], [ -95.715554096961171, 29.879763209825057 ], [ -95.715279097102638, 29.879765209588534 ], [ -95.715012096891485, 29.879766209674443 ], [ -95.714546096465483, 29.879770210119457 ], [ -95.713385096480906, 29.879776209530753 ], [ -95.712363096279873, 29.879781209638875 ], [ -95.709972095919795, 29.879795209729593 ], [ -95.709305095677408, 29.879799209772198 ], [ -95.709309095560144, 29.880082209757948 ], [ -95.709318096019345, 29.880309209594461 ], [ -95.709316095711443, 29.880371210394319 ], [ -95.709313095560248, 29.880479209832632 ], [ -95.709257095240787, 29.880935210403887 ], [ -95.70922009546878, 29.881531210328983 ], [ -95.709223095926205, 29.88173721024641 ], [ -95.709237095095077, 29.881956210472492 ], [ -95.709262095999861, 29.88217821075229 ], [ -95.709320095850046, 29.882513210775077 ], [ -95.709374095465066, 29.882737210165292 ], [ -95.709477095310675, 29.883073210811407 ], [ -95.709608095905551, 29.883406210179626 ], [ -95.709903095775132, 29.884082210981333 ], [ -95.710106095841326, 29.884554210540909 ], [ -95.710211095938405, 29.884849211166529 ], [ -95.710265095499111, 29.885022211081012 ], [ -95.710329096106321, 29.885098211286145 ], [ -95.710399096347047, 29.88511321135875 ], [ -95.710387096519426, 29.885349210542724 ], [ -95.710445095621068, 29.885626211416479 ], [ -95.710319096294214, 29.88634521110378 ], [ -95.710115096002554, 29.887075210883239 ], [ -95.709717095405438, 29.88773221184999 ], [ -95.709421095708265, 29.888028211227276 ], [ -95.709363095610399, 29.888086211172915 ], [ -95.709167095674445, 29.888415211187535 ], [ -95.709047095487577, 29.888725211533071 ], [ -95.709003096009226, 29.889117211840748 ], [ -95.709035095567828, 29.889464211918181 ], [ -95.709235096093039, 29.889835211972411 ], [ -95.709355095459543, 29.88999221184557 ], [ -95.709668095820916, 29.88984221147242 ], [ -95.70997609621169, 29.889756211521021 ], [ -95.710198096033579, 29.889730211558238 ], [ -95.710452096195993, 29.889738211541001 ], [ -95.710631096347939, 29.889760212260903 ], [ -95.710915096404619, 29.889842211585393 ], [ -95.71108709601836, 29.889924211519148 ], [ -95.711341096741648, 29.890029211740764 ], [ -95.711639096985223, 29.890208211569593 ], [ -95.712075096949789, 29.890392211492735 ], [ -95.712352097010424, 29.890473212129674 ], [ -95.712668097059989, 29.890553211835943 ], [ -95.71292709732991, 29.890599211525281 ], [ -95.713356096573719, 29.89065621166754 ], [ -95.713819096902938, 29.890678211808098 ], [ -95.714431097306573, 29.890648212019695 ], [ -95.715230097050537, 29.890648212294046 ], [ -95.716021097539482, 29.890596211858778 ], [ -95.717142097663654, 29.890582211432459 ], [ -95.717210098265866, 29.890579211641509 ], [ -95.717311097926185, 29.890576211354244 ], [ -95.718344098712393, 29.890546211859341 ], [ -95.718357098153092, 29.890287211340098 ], [ -95.718388098317746, 29.889997211554313 ], [ -95.718442097763059, 29.889696211633954 ], [ -95.718519098538664, 29.889382211548472 ], [ -95.718621098535152, 29.88906421163091 ], [ -95.718702097927292, 29.88885021177958 ], [ -95.718799098706626, 29.888634211413045 ], [ -95.718908098372381, 29.888418211057431 ], [ -95.719076098281946, 29.888117211377413 ], [ -95.71920009832003, 29.887916211552955 ], [ -95.71934109799956, 29.887712211102496 ], [ -95.719502098106815, 29.887501211025914 ], [ -95.719676098689703, 29.887297211092694 ], [ -95.719857098072694, 29.887106210914673 ], [ -95.720039098262546, 29.886928210957777 ], [ -95.72029909875269, 29.886699210669839 ], [ -95.720395099029005, 29.886619211055045 ], [ -95.720886098207572, 29.88624021057743 ], [ -95.721098099269767, 29.886076210837384 ], [ -95.72138909846916, 29.88585221072746 ], [ -95.721436098532664, 29.885816211043149 ], [ -95.721964098865399, 29.885401210895246 ], [ -95.722212098797996, 29.885181210087673 ], [ -95.722449099052213, 29.88494721050634 ], [ -95.722599099397513, 29.884785210231186 ], [ -95.722796099530342, 29.884547210317177 ], [ -95.72303109906332, 29.884219210564247 ], [ -95.723190098683389, 29.88396321017493 ], [ -95.723336099590583, 29.88370121057811 ], [ -95.723506099237156, 29.883337210042967 ], [ -95.723596099309887, 29.883107209943262 ], [ -95.723659099261482, 29.882918209577095 ], [ -95.723741099171718, 29.882617209643879 ], [ -95.723807099364919, 29.882311209618269 ], [ -95.723840099274923, 29.882104209840787 ], [ -95.72387209890249, 29.881802209969731 ], [ -95.723880098864896, 29.881532209817866 ], [ -95.723878099614538, 29.881011210032351 ], [ -95.723885099552646, 29.880664209331453 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 327, "Tract": "48201543005", "Area_SqMi": 29.657371196267079, "total_2009": 427, "total_2010": 404, "total_2011": 76, "total_2012": 159, "total_2013": 157, "total_2014": 99, "total_2015": 111, "total_2016": 201, "total_2017": 207, "total_2018": 317, "total_2019": 331, "total_2020": 297, "age1": 1260, "age2": 995, "age3": 279, "earn1": 1035, "earn2": 890, "earn3": 609, "naics_s01": 2, "naics_s02": 4, "naics_s03": 0, "naics_s04": 69, "naics_s05": 47, "naics_s06": 1, "naics_s07": 49, "naics_s08": 2122, "naics_s09": 1, "naics_s10": 3, "naics_s11": 24, "naics_s12": 22, "naics_s13": 0, "naics_s14": 1, "naics_s15": 2, "naics_s16": 78, "naics_s17": 29, "naics_s18": 58, "naics_s19": 22, "naics_s20": 0, "race1": 1307, "race2": 1023, "race3": 38, "race4": 94, "race5": 9, "race6": 63, "ethnicity1": 1740, "ethnicity2": 794, "edu1": 317, "edu2": 402, "edu3": 361, "edu4": 194, "Shape_Length": 151877.23960720591, "Shape_Area": 826796749.85382986, "total_2021": 318, "total_2022": 2534 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.815234129131838, 30.016286233897425 ], [ -95.815235128309624, 30.016162233461962 ], [ -95.815227129208793, 30.016065233479832 ], [ -95.815213128279581, 30.015910234231153 ], [ -95.815202128819649, 30.015853233785251 ], [ -95.815181128858171, 30.01563323353848 ], [ -95.815184128511888, 30.015553233692266 ], [ -95.815199128242782, 30.01521123406301 ], [ -95.815205128102704, 30.014475233597068 ], [ -95.815193128074569, 30.012425233330351 ], [ -95.815193128676199, 30.011161232908801 ], [ -95.81518812847608, 30.009729232237348 ], [ -95.815176128354892, 30.006099231463967 ], [ -95.815172128586354, 30.003432231649562 ], [ -95.815139128059883, 29.996223229647097 ], [ -95.815136127953025, 29.996116229542015 ], [ -95.815126127509259, 29.996018230135874 ], [ -95.815101128211026, 29.99592622959354 ], [ -95.815061127589345, 29.995842229590604 ], [ -95.815009128147295, 29.995767229977794 ], [ -95.814950127437029, 29.995701230111397 ], [ -95.814880127254, 29.995645229908657 ], [ -95.814798127690196, 29.995601229948203 ], [ -95.814705127219653, 29.995569229518686 ], [ -95.814598127470845, 29.995548229725106 ], [ -95.814473127329705, 29.995538229508018 ], [ -95.81413312747209, 29.995538229776297 ], [ -95.814021127210438, 29.995538229403557 ], [ -95.813329126954812, 29.995549229657389 ], [ -95.811769126712306, 29.995563230044091 ], [ -95.810053126317058, 29.995585230298985 ], [ -95.809912126719098, 29.995581230159164 ], [ -95.809363125842054, 29.995600229538478 ], [ -95.809097126003962, 29.995600230248002 ], [ -95.809190126332481, 29.99558022982005 ], [ -95.809302126046973, 29.995524229547982 ], [ -95.809361126475679, 29.995424229680825 ], [ -95.809360126271571, 29.995186230106441 ], [ -95.809351125807623, 29.99516422995508 ], [ -95.809335125871215, 29.995095230085031 ], [ -95.809319126654955, 29.994922229679464 ], [ -95.809309125958194, 29.994570229889014 ], [ -95.809263125994434, 29.992135229094302 ], [ -95.809220126221419, 29.990323228737111 ], [ -95.809183126250375, 29.988244228027796 ], [ -95.809072125839393, 29.983231227388337 ], [ -95.809037125738229, 29.981670227230097 ], [ -95.809035125003732, 29.981315227250899 ], [ -95.809025125808816, 29.980962226667678 ], [ -95.809045125231663, 29.980775227174561 ], [ -95.80901212529669, 29.980443226451182 ], [ -95.809002125351256, 29.979931226864753 ], [ -95.80899412536418, 29.979756226914301 ], [ -95.808993125849824, 29.979590227005218 ], [ -95.808985125117047, 29.979414227038646 ], [ -95.808994125166606, 29.979236226722595 ], [ -95.80897812565334, 29.979068226921257 ], [ -95.808965125015661, 29.97820622629628 ], [ -95.808868125604263, 29.973926225382574 ], [ -95.808822125270595, 29.971702225408919 ], [ -95.808718124529292, 29.967125224495927 ], [ -95.808656124290806, 29.964223223364343 ], [ -95.808613125013721, 29.962254222878954 ], [ -95.80850212427471, 29.957267221863347 ], [ -95.808370123525023, 29.951274220849843 ], [ -95.808369123989749, 29.950999220808132 ], [ -95.808356123604256, 29.950861220554504 ], [ -95.808360124234852, 29.950738220799778 ], [ -95.808343123932559, 29.950159220875825 ], [ -95.808343124337469, 29.950129220394064 ], [ -95.808343123735014, 29.950050220558484 ], [ -95.808355123592776, 29.94993722035921 ], [ -95.808341123562286, 29.949810220505839 ], [ -95.808330123404488, 29.949457221004177 ], [ -95.808211123623366, 29.944061219588697 ], [ -95.808177123286825, 29.942186219426276 ], [ -95.808170123908255, 29.941969218746465 ], [ -95.80817812356608, 29.941809219345124 ], [ -95.808169123856587, 29.941666219016657 ], [ -95.80818912324203, 29.941095218673834 ], [ -95.80790312318581, 29.928503216240276 ], [ -95.807850122633738, 29.925481215339342 ], [ -95.807848123182822, 29.925452215777621 ], [ -95.807842122568047, 29.925346215331899 ], [ -95.807825122410492, 29.924522215995776 ], [ -95.807783122314163, 29.922834215173733 ], [ -95.807771122138064, 29.922281214668182 ], [ -95.807759122444452, 29.921834215441521 ], [ -95.80771912229261, 29.919131214388532 ], [ -95.807702121816604, 29.917831214642966 ], [ -95.807678122537951, 29.915506213438082 ], [ -95.807673122113329, 29.915016213670892 ], [ -95.807672121658698, 29.914983213400831 ], [ -95.807672121972075, 29.914954213460948 ], [ -95.807671122100317, 29.914887213265093 ], [ -95.80762412241836, 29.910373212864108 ], [ -95.807609122018505, 29.909306212683184 ], [ -95.807549122093903, 29.904806211459757 ], [ -95.807548121388805, 29.904723211894517 ], [ -95.807547121437096, 29.904657211469249 ], [ -95.807542121363653, 29.904415211265995 ], [ -95.80754012139333, 29.904137211049331 ], [ -95.807538121312319, 29.903978211021389 ], [ -95.807518121802104, 29.901310211229905 ], [ -95.807506121249105, 29.899802210148284 ], [ -95.807455120960725, 29.894864209175793 ], [ -95.807404121140891, 29.889466208096 ], [ -95.807390120915613, 29.888239207903624 ], [ -95.807374120510161, 29.886786207607646 ], [ -95.80731012033722, 29.880934206446714 ], [ -95.807307120221026, 29.880745206405663 ], [ -95.807260119810977, 29.876458205723647 ], [ -95.807257120431487, 29.876130205733723 ], [ -95.807255120707907, 29.875981206173055 ], [ -95.807253120152467, 29.875847205846028 ], [ -95.80724312038754, 29.874927205924305 ], [ -95.807212120656743, 29.874927205559608 ], [ -95.807073119680581, 29.874928205309494 ], [ -95.806957120467345, 29.874929205426611 ], [ -95.796473116976188, 29.875010206128383 ], [ -95.790598116118332, 29.875056206219696 ], [ -95.783497114556511, 29.875099206164261 ], [ -95.782312113952514, 29.875107206171215 ], [ -95.782094114203545, 29.87510820684523 ], [ -95.773842111454371, 29.875160207093124 ], [ -95.769624110306921, 29.8751732068352 ], [ -95.767563109739527, 29.875180207004949 ], [ -95.763350109167391, 29.875215207251856 ], [ -95.757200107269028, 29.87526620700017 ], [ -95.756967107530045, 29.875266207716486 ], [ -95.756670107619357, 29.875266206894473 ], [ -95.756384106969705, 29.87526620690128 ], [ -95.756044107036729, 29.87526620750619 ], [ -95.750163105885804, 29.875278207427957 ], [ -95.74956210515731, 29.875394207713125 ], [ -95.749246105142561, 29.875447207985335 ], [ -95.749175105301475, 29.87545920726005 ], [ -95.748759105545631, 29.875567207972097 ], [ -95.748199105096091, 29.875733207866471 ], [ -95.747462105481446, 29.876055208176322 ], [ -95.747079104467787, 29.876270207680172 ], [ -95.746654104951418, 29.876533207853946 ], [ -95.746305104801209, 29.876804207972242 ], [ -95.745968104876553, 29.87711220766391 ], [ -95.745641104693604, 29.877430208359769 ], [ -95.745577105090788, 29.877499208213774 ], [ -95.745491104511672, 29.877589208270646 ], [ -95.745085104049977, 29.878016208253722 ], [ -95.744799104683011, 29.878248208514993 ], [ -95.744482103906449, 29.878481208679002 ], [ -95.744238104402882, 29.878655208289498 ], [ -95.744004104512058, 29.878782208898684 ], [ -95.743770104504719, 29.878919208452306 ], [ -95.743546104499188, 29.879037208874852 ], [ -95.74320410368307, 29.879176208872991 ], [ -95.742808104295293, 29.879306208254803 ], [ -95.742515103883619, 29.879391208828427 ], [ -95.742186103954637, 29.879489208626055 ], [ -95.741852103681907, 29.87954320874173 ], [ -95.741637103379205, 29.879574208501605 ], [ -95.741551103285261, 29.879587208686708 ], [ -95.741271103587309, 29.879612208530087 ], [ -95.740817103570222, 29.879630208404528 ], [ -95.740631103837231, 29.879629208957073 ], [ -95.739477103513224, 29.879621208390727 ], [ -95.739296103136255, 29.879622208600221 ], [ -95.738018102748782, 29.879632208492222 ], [ -95.73524210227211, 29.879652208555289 ], [ -95.731902100958024, 29.879667209408368 ], [ -95.730893100813958, 29.879671208723106 ], [ -95.729074100470726, 29.879679209486607 ], [ -95.728656100755217, 29.879682208867003 ], [ -95.728252100116734, 29.879684208939882 ], [ -95.726846100056179, 29.879692209399433 ], [ -95.723847098964313, 29.879709209299147 ], [ -95.723851099504941, 29.879802209535807 ], [ -95.723868099616411, 29.879944209134187 ], [ -95.723881099237616, 29.880168209106007 ], [ -95.723885099552646, 29.880664209331453 ], [ -95.723878099614538, 29.881011210032351 ], [ -95.723880098864896, 29.881532209817866 ], [ -95.72387209890249, 29.881802209969731 ], [ -95.723840099274923, 29.882104209840787 ], [ -95.723807099364919, 29.882311209618269 ], [ -95.723741099171718, 29.882617209643879 ], [ -95.723659099261482, 29.882918209577095 ], [ -95.723596099309887, 29.883107209943262 ], [ -95.723506099237156, 29.883337210042967 ], [ -95.723336099590583, 29.88370121057811 ], [ -95.723190098683389, 29.88396321017493 ], [ -95.72303109906332, 29.884219210564247 ], [ -95.722796099530342, 29.884547210317177 ], [ -95.722599099397513, 29.884785210231186 ], [ -95.722449099052213, 29.88494721050634 ], [ -95.722212098797996, 29.885181210087673 ], [ -95.721964098865399, 29.885401210895246 ], [ -95.721436098532664, 29.885816211043149 ], [ -95.72138909846916, 29.88585221072746 ], [ -95.721098099269767, 29.886076210837384 ], [ -95.720886098207572, 29.88624021057743 ], [ -95.720395099029005, 29.886619211055045 ], [ -95.72029909875269, 29.886699210669839 ], [ -95.720039098262546, 29.886928210957777 ], [ -95.719857098072694, 29.887106210914673 ], [ -95.719676098689703, 29.887297211092694 ], [ -95.719502098106815, 29.887501211025914 ], [ -95.71934109799956, 29.887712211102496 ], [ -95.71920009832003, 29.887916211552955 ], [ -95.719076098281946, 29.888117211377413 ], [ -95.718908098372381, 29.888418211057431 ], [ -95.718799098706626, 29.888634211413045 ], [ -95.718702097927292, 29.88885021177958 ], [ -95.718621098535152, 29.88906421163091 ], [ -95.718519098538664, 29.889382211548472 ], [ -95.718442097763059, 29.889696211633954 ], [ -95.718388098317746, 29.889997211554313 ], [ -95.718357098153092, 29.890287211340098 ], [ -95.718344098712393, 29.890546211859341 ], [ -95.718342097762729, 29.89067721161658 ], [ -95.718359098318317, 29.891820212426982 ], [ -95.718369098308358, 29.892297212531354 ], [ -95.718396098592351, 29.893569212474159 ], [ -95.718400098755154, 29.8939402126217 ], [ -95.718401098029219, 29.894220212779398 ], [ -95.718469098585913, 29.894355212275077 ], [ -95.718483098320704, 29.894473212932958 ], [ -95.718501098970904, 29.895664212690189 ], [ -95.718577098675254, 29.896171213148214 ], [ -95.718798098435713, 29.896875213443202 ], [ -95.718858098887637, 29.897047212827154 ], [ -95.718977098696229, 29.89738021289353 ], [ -95.719179099009438, 29.897783213114799 ], [ -95.719428099290411, 29.898228213149057 ], [ -95.720108098861644, 29.899026213640486 ], [ -95.720206099214465, 29.89909021329273 ], [ -95.720440098741491, 29.899197213622912 ], [ -95.721019099430663, 29.899753213211849 ], [ -95.721802099848389, 29.900487213976842 ], [ -95.72233610023531, 29.900998213473613 ], [ -95.723089100289386, 29.901693214234275 ], [ -95.723180100245031, 29.901777213444557 ], [ -95.723776100207573, 29.90233421433523 ], [ -95.724107100077291, 29.902630213672744 ], [ -95.724526099915423, 29.90303221429809 ], [ -95.724893100469131, 29.903399214473467 ], [ -95.725268100427684, 29.903842214508487 ], [ -95.72553310033318, 29.904213213834382 ], [ -95.725699100582574, 29.904489213933189 ], [ -95.725884101196399, 29.904856214426896 ], [ -95.725987101069038, 29.905062214396047 ], [ -95.72617210114521, 29.905618214632295 ], [ -95.726279100942165, 29.906092214440996 ], [ -95.726330101142196, 29.906499214949921 ], [ -95.726342101272294, 29.90677921457209 ], [ -95.726297100650427, 29.90696121437816 ], [ -95.726327101058175, 29.907745215400769 ], [ -95.726321101436625, 29.908384215198758 ], [ -95.726624101415041, 29.908512214869752 ], [ -95.72703410146201, 29.908660215416422 ], [ -95.728031101376985, 29.908940215427609 ], [ -95.72915410228471, 29.909209215386781 ], [ -95.729407102333539, 29.909280215491613 ], [ -95.729716101821921, 29.909418215387237 ], [ -95.729848102363377, 29.909511215113092 ], [ -95.730132101865053, 29.909791214839633 ], [ -95.730227101914323, 29.909929215113834 ], [ -95.730287102114417, 29.910030215737947 ], [ -95.730499101743206, 29.910385215392424 ], [ -95.730663102686208, 29.910588215079102 ], [ -95.730871102577694, 29.910791215887617 ], [ -95.731250101961152, 29.911138215874601 ], [ -95.731761102888342, 29.91158821526782 ], [ -95.732373102886541, 29.912105216042587 ], [ -95.734897103717984, 29.912065215310587 ], [ -95.740456104539874, 29.912052215113775 ], [ -95.741099105300648, 29.912019215695366 ], [ -95.741112105214796, 29.912310215267386 ], [ -95.741101104876194, 29.915102215524396 ], [ -95.741108104761068, 29.916570215923795 ], [ -95.741147104966828, 29.918356216875431 ], [ -95.74114710503153, 29.91873021711454 ], [ -95.74117910575805, 29.918906216520007 ], [ -95.741211105100177, 29.918994216574408 ], [ -95.74124910517375, 29.919038216452371 ], [ -95.741312105562329, 29.91906521658245 ], [ -95.7415011058022, 29.919071216736754 ], [ -95.746549106508965, 29.919008216601878 ], [ -95.753534108721084, 29.918980216523959 ], [ -95.761754110861361, 29.918970216366514 ], [ -95.761888110953521, 29.918970216381496 ], [ -95.762046111259366, 29.922117216438515 ], [ -95.762050110953552, 29.922191216838701 ], [ -95.762052110406586, 29.922241216661963 ], [ -95.762057110551083, 29.922301216733782 ], [ -95.762145110863969, 29.923452216831929 ], [ -95.762214111218995, 29.924072217101067 ], [ -95.762330110854904, 29.925182217293216 ], [ -95.762438111118641, 29.926111217093048 ], [ -95.762475110689834, 29.926437217656105 ], [ -95.762957110959448, 29.929950218478847 ], [ -95.763406111922052, 29.933414219259028 ], [ -95.763668112193074, 29.935082219174568 ], [ -95.763787112343323, 29.935618218912023 ], [ -95.763980111530628, 29.936442219242686 ], [ -95.764330111928928, 29.937371219967339 ], [ -95.764374112486635, 29.937464220113363 ], [ -95.764730112733389, 29.938314219470403 ], [ -95.764880112341459, 29.938633219839357 ], [ -95.76508611200596, 29.939020220155495 ], [ -95.765380112626815, 29.939561220398243 ], [ -95.765961112669288, 29.9404332204581 ], [ -95.766029112865283, 29.940545220418457 ], [ -95.766728113303529, 29.941613220439493 ], [ -95.766785112841461, 29.94171422034891 ], [ -95.767955113370931, 29.943426220446401 ], [ -95.768566113792687, 29.944507221183429 ], [ -95.768609113526622, 29.944583220775048 ], [ -95.768892113419042, 29.945328221404818 ], [ -95.769006113602074, 29.945527220740338 ], [ -95.769170113919472, 29.946044220969107 ], [ -95.769447113834872, 29.946915221252311 ], [ -95.769574114180955, 29.948064221433338 ], [ -95.769590113612438, 29.949204221767719 ], [ -95.769592113569388, 29.949343222357754 ], [ -95.769599114410596, 29.94978022190876 ], [ -95.769611113853415, 29.952015222671832 ], [ -95.769603114371179, 29.953388223046129 ], [ -95.769603114253201, 29.953491222453419 ], [ -95.769602114496777, 29.953616222949606 ], [ -95.769572114703109, 29.958700223692915 ], [ -95.769564114736966, 29.960160223865394 ], [ -95.769573114825675, 29.961128223994113 ], [ -95.769576114343465, 29.961389224473031 ], [ -95.769582114055609, 29.96207822483527 ], [ -95.769595114840342, 29.96403222487729 ], [ -95.769593114178207, 29.964122224640988 ], [ -95.769570114498421, 29.965404224920896 ], [ -95.769569114497045, 29.965459225594422 ], [ -95.769555114680202, 29.966242225765622 ], [ -95.769528114488622, 29.96838522619349 ], [ -95.769541115111068, 29.969625225615719 ], [ -95.769514115210796, 29.971215226543819 ], [ -95.769514115137298, 29.972751226966366 ], [ -95.76951411496124, 29.973735227298707 ], [ -95.769487114787054, 29.975406227627332 ], [ -95.769487115660468, 29.977630228026779 ], [ -95.769465115015223, 29.978422228211819 ], [ -95.769464115094252, 29.978475227769628 ], [ -95.769460114795777, 29.978613227941477 ], [ -95.769458115456175, 29.978684227564486 ], [ -95.769447114846145, 29.979072228102066 ], [ -95.769460115126407, 29.980609228399558 ], [ -95.769447115089918, 29.982226228460028 ], [ -95.769444115094771, 29.982333228633486 ], [ -95.76942611549407, 29.982971228761677 ], [ -95.769407115551601, 29.983654229235437 ], [ -95.769407115595513, 29.984935229092692 ], [ -95.769380115913165, 29.986175229451984 ], [ -95.769258116052441, 29.987792229999187 ], [ -95.769220115629238, 29.988468230008806 ], [ -95.76916411574183, 29.989140230176019 ], [ -95.769056115342508, 29.990905229997004 ], [ -95.769012115290508, 29.991150230193863 ], [ -95.768814115974493, 29.992280231106061 ], [ -95.768812115564458, 29.992300230437593 ], [ -95.768798115772057, 29.992414230835614 ], [ -95.76873311576152, 29.992981231222171 ], [ -95.768705115323002, 29.993980231401935 ], [ -95.76869211599525, 29.99430123097758 ], [ -95.768665115666124, 29.995060231574826 ], [ -95.768736115896019, 29.995575231632838 ], [ -95.768763116131382, 29.996330231381794 ], [ -95.768756116059365, 29.996633231884214 ], [ -95.768743115468737, 29.997197231534976 ], [ -95.768760116185675, 29.997486231976158 ], [ -95.768810115577367, 29.997718231339107 ], [ -95.768827116195695, 29.998072232148782 ], [ -95.768833116029128, 29.998192232252141 ], [ -95.768841115737857, 29.99836423152427 ], [ -95.768860115765492, 29.998763231547962 ], [ -95.769135115910686, 29.998870232078122 ], [ -95.769387116601919, 29.998969232299711 ], [ -95.769478116529982, 29.999002232436602 ], [ -95.770798116654262, 29.999487231977486 ], [ -95.771163116938723, 29.999627232227446 ], [ -95.771337117040531, 29.999677232077847 ], [ -95.771725116447897, 29.999831231803185 ], [ -95.772473116986603, 30.00012823220511 ], [ -95.774223117584015, 30.000767232253228 ], [ -95.777692118017143, 30.002151232494736 ], [ -95.778640118952865, 30.002523232249445 ], [ -95.779441119124726, 30.002838232081345 ], [ -95.77995311873417, 30.003040232146105 ], [ -95.780201119490556, 30.003139232884894 ], [ -95.780469118975844, 30.003259232684677 ], [ -95.781958119264203, 30.003731232207709 ], [ -95.783282119758141, 30.00426123251702 ], [ -95.7867601211167, 30.005408233118612 ], [ -95.786924121278943, 30.005467232740695 ], [ -95.78996112156014, 30.006596232510109 ], [ -95.791076122354369, 30.007013232990897 ], [ -95.792366121949684, 30.007476233357181 ], [ -95.792955123108527, 30.007766233107958 ], [ -95.798992123877284, 30.009938233214324 ], [ -95.799238123957366, 30.010029233350171 ], [ -95.799542124934234, 30.010141233272581 ], [ -95.803647125718911, 30.011743233435443 ], [ -95.804873126359738, 30.012223233069484 ], [ -95.806781126886065, 30.012947233477721 ], [ -95.807668127147011, 30.01331823371817 ], [ -95.809139127431393, 30.013898234084312 ], [ -95.809634126805278, 30.014042233902629 ], [ -95.810123127211654, 30.01429123360252 ], [ -95.810885127779102, 30.014596233635249 ], [ -95.814930128736009, 30.016175233540007 ], [ -95.815234129131838, 30.016286233897425 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 328, "Tract": "48201421601", "Area_SqMi": 0.2361708651762546, "total_2009": 1112, "total_2010": 1178, "total_2011": 1139, "total_2012": 1245, "total_2013": 1215, "total_2014": 1191, "total_2015": 1202, "total_2016": 1325, "total_2017": 1144, "total_2018": 1277, "total_2019": 995, "total_2020": 1087, "age1": 341, "age2": 601, "age3": 207, "earn1": 214, "earn2": 478, "earn3": 457, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 65, "naics_s05": 249, "naics_s06": 115, "naics_s07": 120, "naics_s08": 0, "naics_s09": 0, "naics_s10": 405, "naics_s11": 24, "naics_s12": 11, "naics_s13": 0, "naics_s14": 67, "naics_s15": 0, "naics_s16": 19, "naics_s17": 0, "naics_s18": 48, "naics_s19": 26, "naics_s20": 0, "race1": 876, "race2": 177, "race3": 20, "race4": 63, "race5": 0, "race6": 13, "ethnicity1": 513, "ethnicity2": 636, "edu1": 235, "edu2": 199, "edu3": 250, "edu4": 124, "Shape_Length": 10940.003123827779, "Shape_Area": 6584039.5106384903, "total_2021": 1101, "total_2022": 1149 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.493057032668915, 29.705458181521834 ], [ -95.493051032252424, 29.704470181118587 ], [ -95.493027031934901, 29.703634181361927 ], [ -95.493045032462447, 29.702829180713227 ], [ -95.493046032662264, 29.701825181105782 ], [ -95.493007032131672, 29.701079180406147 ], [ -95.492996031658336, 29.700250180975996 ], [ -95.492996031716913, 29.699427180525124 ], [ -95.492978031742666, 29.698608180246463 ], [ -95.492968031930232, 29.698223179829714 ], [ -95.492956032277135, 29.697299180065951 ], [ -95.493000032248759, 29.694808179131304 ], [ -95.492714032298153, 29.694976179887178 ], [ -95.492193032189874, 29.695240179488266 ], [ -95.491754031465831, 29.695474180092397 ], [ -95.491443032006529, 29.69563318003182 ], [ -95.49112303129408, 29.695838180037526 ], [ -95.490764031250123, 29.696025180193356 ], [ -95.490036031052625, 29.696382179478114 ], [ -95.489659031379873, 29.696569179755489 ], [ -95.488727031173141, 29.697035179756906 ], [ -95.487908031066453, 29.697454180612205 ], [ -95.486997030381019, 29.697923180268155 ], [ -95.486633030928544, 29.698092180380094 ], [ -95.486716031024741, 29.701455180729663 ], [ -95.486687030133723, 29.701893180728558 ], [ -95.486708030389437, 29.703710181917295 ], [ -95.486719031013251, 29.704714181510589 ], [ -95.486726030943558, 29.705537181636409 ], [ -95.487516030729083, 29.705526181711612 ], [ -95.488818031318189, 29.705511182214384 ], [ -95.489584031665871, 29.705501181914407 ], [ -95.490903031920112, 29.70547618213881 ], [ -95.491748031700212, 29.705469181774774 ], [ -95.493057032668915, 29.705458181521834 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 329, "Tract": "48201542305", "Area_SqMi": 1.0122742674875664, "total_2009": 146, "total_2010": 246, "total_2011": 67, "total_2012": 51, "total_2013": 56, "total_2014": 80, "total_2015": 73, "total_2016": 77, "total_2017": 66, "total_2018": 124, "total_2019": 332, "total_2020": 135, "age1": 32, "age2": 127, "age3": 41, "earn1": 50, "earn2": 64, "earn3": 86, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 2, "naics_s06": 6, "naics_s07": 12, "naics_s08": 9, "naics_s09": 20, "naics_s10": 8, "naics_s11": 0, "naics_s12": 8, "naics_s13": 0, "naics_s14": 5, "naics_s15": 54, "naics_s16": 28, "naics_s17": 0, "naics_s18": 38, "naics_s19": 8, "naics_s20": 0, "race1": 128, "race2": 45, "race3": 4, "race4": 23, "race5": 0, "race6": 0, "ethnicity1": 144, "ethnicity2": 56, "edu1": 31, "edu2": 36, "edu3": 51, "edu4": 50, "Shape_Length": 22698.683545818541, "Shape_Area": 28220474.052829437, "total_2021": 116, "total_2022": 200 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.752245104101405, 29.831691198975886 ], [ -95.75224110403235, 29.831668198713043 ], [ -95.752231104240863, 29.83161019894748 ], [ -95.75222710429189, 29.831583198536244 ], [ -95.752225104089305, 29.831573198456375 ], [ -95.752221104114625, 29.831546198946558 ], [ -95.752214103984699, 29.831500198266628 ], [ -95.752106104664037, 29.831390198575377 ], [ -95.75197210450176, 29.831223198669516 ], [ -95.751943104179048, 29.831187198890447 ], [ -95.75176610387085, 29.831076198196609 ], [ -95.75160210421754, 29.831000198513284 ], [ -95.751520104447962, 29.830978198749726 ], [ -95.751344104442964, 29.830851198532528 ], [ -95.750934104287751, 29.830422198826497 ], [ -95.750657103417311, 29.830230198428261 ], [ -95.750462103534616, 29.830109198018707 ], [ -95.750392103297585, 29.829966198454418 ], [ -95.750166103826459, 29.829784198555235 ], [ -95.750145103533811, 29.829774198274919 ], [ -95.750077104077945, 29.82974019796211 ], [ -95.750010103846321, 29.829653198121594 ], [ -95.749808103144147, 29.829493197901435 ], [ -95.74963710385731, 29.829318198184939 ], [ -95.749589103651218, 29.829252198252131 ], [ -95.749499103173576, 29.829125197744297 ], [ -95.749454103836612, 29.828982197998489 ], [ -95.749442103449027, 29.828790198363855 ], [ -95.749403103385475, 29.82847119812741 ], [ -95.74941610358465, 29.828064197657636 ], [ -95.749485102951027, 29.827735197500992 ], [ -95.749497103835566, 29.82739919808456 ], [ -95.749535103776992, 29.827102197704264 ], [ -95.749529103363841, 29.826982197333567 ], [ -95.749566103790428, 29.826905197644258 ], [ -95.749686102861091, 29.826783197994615 ], [ -95.749768103635887, 29.826718197385503 ], [ -95.750007103928027, 29.826465197456752 ], [ -95.750142102952211, 29.826294197992631 ], [ -95.75016110325403, 29.826096197543073 ], [ -95.750155103734556, 29.826008197570268 ], [ -95.750007103707603, 29.825788197649437 ], [ -95.749887103107184, 29.825662197597499 ], [ -95.749755103325626, 29.825519197428534 ], [ -95.74974210349373, 29.825415197677174 ], [ -95.749584103362537, 29.825338197014595 ], [ -95.749521103541468, 29.82529419704893 ], [ -95.749389103181755, 29.825113197648005 ], [ -95.749237103528301, 29.824981197196625 ], [ -95.749161103018935, 29.824803196885195 ], [ -95.749136102773704, 29.824745197680919 ], [ -95.749041103509171, 29.824558197524002 ], [ -95.749021102958224, 29.824505196959333 ], [ -95.748953103315003, 29.824321197073459 ], [ -95.748940103565062, 29.824145196974168 ], [ -95.748909103269369, 29.823942197077173 ], [ -95.748845103177729, 29.823640197198021 ], [ -95.748808103074026, 29.823590196998925 ], [ -95.748814103301754, 29.823568197176225 ], [ -95.748858102824585, 29.823535196726851 ], [ -95.748864102809435, 29.823491196901799 ], [ -95.748782103316728, 29.823343197339025 ], [ -95.748656103386537, 29.82321119739494 ], [ -95.748423102508312, 29.82311219706742 ], [ -95.747937103196293, 29.822931197336587 ], [ -95.747553102728219, 29.822876196677537 ], [ -95.747111102851093, 29.822789197279366 ], [ -95.746828102360951, 29.822684196647504 ], [ -95.746456101993331, 29.822410196839094 ], [ -95.746191102600676, 29.822097196889864 ], [ -95.746067102026544, 29.821880196880532 ], [ -95.745938102564779, 29.821657197009252 ], [ -95.745812102330589, 29.82146519706945 ], [ -95.745622101814334, 29.821080196953773 ], [ -95.745534102153584, 29.820943197091438 ], [ -95.745440101773951, 29.820827196809564 ], [ -95.745389102149559, 29.820684196593859 ], [ -95.745238102420529, 29.820481196155363 ], [ -95.744891101946976, 29.820118196167883 ], [ -95.744065102108095, 29.819525195993076 ], [ -95.743592101473084, 29.819245195942106 ], [ -95.742980101288779, 29.818921195956339 ], [ -95.742696101173863, 29.818674196255046 ], [ -95.742248101463616, 29.818163196334531 ], [ -95.742103100886425, 29.818097195739309 ], [ -95.741990100722504, 29.817904196166335 ], [ -95.741908101249635, 29.817789195966945 ], [ -95.741523100903052, 29.817470196481295 ], [ -95.741453100787467, 29.817366195635678 ], [ -95.7410771004145, 29.817068195995777 ], [ -95.740089099992318, 29.817073195817439 ], [ -95.739967100865627, 29.817074196368136 ], [ -95.73926910006584, 29.817074196129685 ], [ -95.737975100142719, 29.816878196197145 ], [ -95.737052099773891, 29.816523196063091 ], [ -95.736382099694325, 29.816251196193292 ], [ -95.736083099134092, 29.816130196058378 ], [ -95.735800099584935, 29.815964196411965 ], [ -95.735515098818738, 29.815807195665286 ], [ -95.735302099350619, 29.815704196286799 ], [ -95.734985099628801, 29.815568196007302 ], [ -95.734684099199796, 29.815453195665363 ], [ -95.734496099292869, 29.81539119556555 ], [ -95.734242099067501, 29.815317196351494 ], [ -95.733924098818662, 29.815238196151743 ], [ -95.733618098403952, 29.816284196205203 ], [ -95.733510098987495, 29.81704419622735 ], [ -95.733507098986223, 29.817422196600337 ], [ -95.733327099094808, 29.817809196717512 ], [ -95.73278809832118, 29.818087196349229 ], [ -95.732185098871852, 29.818078196709301 ], [ -95.731618098585301, 29.818114196673854 ], [ -95.73129509821517, 29.818303196589184 ], [ -95.731088098720349, 29.818708197150507 ], [ -95.731010098098679, 29.819665197289655 ], [ -95.731041098467799, 29.820415196968323 ], [ -95.731026098884513, 29.821402196889998 ], [ -95.730986097984825, 29.821923197630323 ], [ -95.730955098073892, 29.822634197090039 ], [ -95.730970098160512, 29.82310819792427 ], [ -95.730955098482298, 29.823463197539773 ], [ -95.730994098846196, 29.824213198244177 ], [ -95.730994098732893, 29.82447419819329 ], [ -95.730962098673317, 29.824713197726833 ], [ -95.730970098325798, 29.82539819763651 ], [ -95.730907098353185, 29.825603197993626 ], [ -95.730757098615797, 29.825832198432551 ], [ -95.730194098377197, 29.82704819877511 ], [ -95.730199098254161, 29.827791198171838 ], [ -95.730206098011323, 29.828863199151428 ], [ -95.730327098441407, 29.829123198660469 ], [ -95.730417098386624, 29.829258198506508 ], [ -95.730678098717902, 29.829501198641779 ], [ -95.730912099091029, 29.829698198698619 ], [ -95.731101098788187, 29.829986199167127 ], [ -95.73128009870905, 29.830310199000653 ], [ -95.731317098417492, 29.831080198767914 ], [ -95.731334098784799, 29.831224199599678 ], [ -95.734855100098329, 29.831238199284794 ], [ -95.735869099660576, 29.831242199118506 ], [ -95.736961100597355, 29.831258198935121 ], [ -95.737632100286177, 29.831261199205876 ], [ -95.738004100592363, 29.831298199300001 ], [ -95.738462100727261, 29.831369199295295 ], [ -95.738884100688324, 29.831467198828886 ], [ -95.739151101221822, 29.831538198767475 ], [ -95.739445101058294, 29.831613198635402 ], [ -95.739667100531264, 29.831661199030592 ], [ -95.740251101618526, 29.831807198631317 ], [ -95.740279101412909, 29.831818199165699 ], [ -95.740426100762335, 29.831822199267645 ], [ -95.745714102714501, 29.83177619918391 ], [ -95.747540102557679, 29.831759199038373 ], [ -95.747906103052031, 29.831756198669485 ], [ -95.748366103604283, 29.831746199193066 ], [ -95.74890410351081, 29.831735199157471 ], [ -95.74901110354071, 29.831734198292498 ], [ -95.749202103868726, 29.831742198730502 ], [ -95.749389103718514, 29.831737198904385 ], [ -95.749571103849235, 29.831723199133876 ], [ -95.750136103924916, 29.831717198956632 ], [ -95.750326104082575, 29.83172419878786 ], [ -95.750483103730033, 29.831721198879258 ], [ -95.751049103743611, 29.831711199080896 ], [ -95.752245104101405, 29.831691198975886 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 330, "Tract": "48201541006", "Area_SqMi": 0.87777880301451072, "total_2009": 262, "total_2010": 255, "total_2011": 253, "total_2012": 293, "total_2013": 288, "total_2014": 374, "total_2015": 358, "total_2016": 322, "total_2017": 375, "total_2018": 405, "total_2019": 418, "total_2020": 418, "age1": 172, "age2": 216, "age3": 67, "earn1": 103, "earn2": 194, "earn3": 158, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 4, "naics_s06": 0, "naics_s07": 32, "naics_s08": 3, "naics_s09": 3, "naics_s10": 2, "naics_s11": 5, "naics_s12": 33, "naics_s13": 0, "naics_s14": 2, "naics_s15": 9, "naics_s16": 180, "naics_s17": 2, "naics_s18": 83, "naics_s19": 83, "naics_s20": 0, "race1": 346, "race2": 50, "race3": 4, "race4": 42, "race5": 0, "race6": 13, "ethnicity1": 297, "ethnicity2": 158, "edu1": 54, "edu2": 64, "edu3": 95, "edu4": 70, "Shape_Length": 23385.668560131191, "Shape_Area": 24470970.694608659, "total_2021": 396, "total_2022": 455 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.68637809182502, 29.925858220065038 ], [ -95.686399091470037, 29.925656220183225 ], [ -95.686355091749249, 29.923612219708708 ], [ -95.686347091328429, 29.923227219541253 ], [ -95.686341091599843, 29.92292221922537 ], [ -95.68632909140257, 29.922431219603556 ], [ -95.686279091593804, 29.920334219010993 ], [ -95.686122091640897, 29.920318218821748 ], [ -95.68532309091438, 29.920240218673193 ], [ -95.68460609145059, 29.920170218699038 ], [ -95.684537090500797, 29.920161218951346 ], [ -95.681992090121113, 29.919891219300602 ], [ -95.68066308968028, 29.919722218701953 ], [ -95.680351090218394, 29.919669218618765 ], [ -95.679991090245068, 29.91958121909104 ], [ -95.679427089903456, 29.919357218714925 ], [ -95.677427088999195, 29.918286218392552 ], [ -95.675842088450167, 29.917699218784396 ], [ -95.674538088830275, 29.917610218413937 ], [ -95.67307508796921, 29.917600218702919 ], [ -95.672970088058705, 29.917597218806836 ], [ -95.672971087507122, 29.91764521882013 ], [ -95.673001087643797, 29.918898219264918 ], [ -95.673046088575191, 29.920499219144045 ], [ -95.673033088240558, 29.920676219629428 ], [ -95.673049088045204, 29.921963219272794 ], [ -95.67310908872814, 29.924375220583048 ], [ -95.673013088401149, 29.924375220212344 ], [ -95.673042088392393, 29.926141220235564 ], [ -95.673061088296294, 29.92810422104435 ], [ -95.673080088433224, 29.928389220994323 ], [ -95.673136088355761, 29.928648221188006 ], [ -95.673263088566443, 29.928923221434051 ], [ -95.67362908809875, 29.929296221597173 ], [ -95.67436408851276, 29.929786221563184 ], [ -95.674595088740219, 29.929939221600474 ], [ -95.675325089314455, 29.930425221074113 ], [ -95.675591088956978, 29.930602221194388 ], [ -95.676140088896389, 29.930968221326335 ], [ -95.676998089462771, 29.931519221421791 ], [ -95.677126089357699, 29.931601221321667 ], [ -95.676401089922564, 29.932508221483651 ], [ -95.675668089265557, 29.933928222095815 ], [ -95.675448089192827, 29.934568221980363 ], [ -95.675362089421242, 29.934922222174222 ], [ -95.675281089047246, 29.935420222156537 ], [ -95.675188089346179, 29.935949222478129 ], [ -95.67518808905902, 29.936817222282304 ], [ -95.675280089182067, 29.937596223091209 ], [ -95.675358089581025, 29.937928222645152 ], [ -95.675749089250004, 29.939591223002612 ], [ -95.67590808997852, 29.94016222368904 ], [ -95.676002089785186, 29.94070222319495 ], [ -95.676002089913055, 29.941024223628698 ], [ -95.675939090159304, 29.941275223149603 ], [ -95.67585508974517, 29.941489223530251 ], [ -95.676362089782259, 29.941713224006936 ], [ -95.677214090470557, 29.942053223606667 ], [ -95.677505089704042, 29.942170224039106 ], [ -95.677668090556139, 29.942221223751663 ], [ -95.677814090115234, 29.942267223929868 ], [ -95.678124090613792, 29.942363223449508 ], [ -95.678553090293519, 29.9424972239837 ], [ -95.678591090150761, 29.942417223896943 ], [ -95.679295091073598, 29.940950223654511 ], [ -95.679436090633118, 29.94065522334245 ], [ -95.679973090244445, 29.939536222855907 ], [ -95.680143090599799, 29.939180222909311 ], [ -95.680223090229205, 29.939014223085952 ], [ -95.680304091141053, 29.93884722268065 ], [ -95.680747090732112, 29.937922222428316 ], [ -95.680926091100417, 29.937550222505209 ], [ -95.681187090457513, 29.937006222465055 ], [ -95.682537091240917, 29.934195221527364 ], [ -95.682551090904511, 29.934165222082697 ], [ -95.682594090766898, 29.93407322225659 ], [ -95.684778090971662, 29.929525221173119 ], [ -95.684978091539477, 29.929106220477028 ], [ -95.685885091479065, 29.927213220413552 ], [ -95.686093092098929, 29.926760220644411 ], [ -95.68624109120033, 29.92641922023493 ], [ -95.686280091914668, 29.926330219775139 ], [ -95.686342092071385, 29.926089220349407 ], [ -95.68637809182502, 29.925858220065038 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 331, "Tract": "48201543011", "Area_SqMi": 0.51500090363292184, "total_2009": 36, "total_2010": 35, "total_2011": 20, "total_2012": 41, "total_2013": 46, "total_2014": 62, "total_2015": 28, "total_2016": 34, "total_2017": 32, "total_2018": 44, "total_2019": 59, "total_2020": 94, "age1": 91, "age2": 96, "age3": 18, "earn1": 45, "earn2": 66, "earn3": 94, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 0, "naics_s07": 3, "naics_s08": 74, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 11, "naics_s15": 31, "naics_s16": 45, "naics_s17": 0, "naics_s18": 24, "naics_s19": 5, "naics_s20": 0, "race1": 137, "race2": 41, "race3": 7, "race4": 16, "race5": 1, "race6": 3, "ethnicity1": 119, "ethnicity2": 86, "edu1": 29, "edu2": 28, "edu3": 27, "edu4": 30, "Shape_Length": 19983.753370073133, "Shape_Area": 14357343.760430124, "total_2021": 153, "total_2022": 205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.718483098320704, 29.894473212932958 ], [ -95.718469098585913, 29.894355212275077 ], [ -95.718401098029219, 29.894220212779398 ], [ -95.718400098755154, 29.8939402126217 ], [ -95.718396098592351, 29.893569212474159 ], [ -95.718369098308358, 29.892297212531354 ], [ -95.718359098318317, 29.891820212426982 ], [ -95.718342097762729, 29.89067721161658 ], [ -95.718344098712393, 29.890546211859341 ], [ -95.717311097926185, 29.890576211354244 ], [ -95.717210098265866, 29.890579211641509 ], [ -95.717142097663654, 29.890582211432459 ], [ -95.716021097539482, 29.890596211858778 ], [ -95.715230097050537, 29.890648212294046 ], [ -95.714431097306573, 29.890648212019695 ], [ -95.713819096902938, 29.890678211808098 ], [ -95.713356096573719, 29.89065621166754 ], [ -95.71292709732991, 29.890599211525281 ], [ -95.712668097059989, 29.890553211835943 ], [ -95.712352097010424, 29.890473212129674 ], [ -95.712075096949789, 29.890392211492735 ], [ -95.711639096985223, 29.890208211569593 ], [ -95.711341096741648, 29.890029211740764 ], [ -95.71108709601836, 29.889924211519148 ], [ -95.710915096404619, 29.889842211585393 ], [ -95.710631096347939, 29.889760212260903 ], [ -95.710452096195993, 29.889738211541001 ], [ -95.710198096033579, 29.889730211558238 ], [ -95.70997609621169, 29.889756211521021 ], [ -95.709668095820916, 29.88984221147242 ], [ -95.709355095459543, 29.88999221184557 ], [ -95.709235096093039, 29.889835211972411 ], [ -95.709035095567828, 29.889464211918181 ], [ -95.709003096009226, 29.889117211840748 ], [ -95.709047095487577, 29.888725211533071 ], [ -95.709167095674445, 29.888415211187535 ], [ -95.709363095610399, 29.888086211172915 ], [ -95.709421095708265, 29.888028211227276 ], [ -95.709717095405438, 29.88773221184999 ], [ -95.710115096002554, 29.887075210883239 ], [ -95.710319096294214, 29.88634521110378 ], [ -95.710445095621068, 29.885626211416479 ], [ -95.710387096519426, 29.885349210542724 ], [ -95.710399096347047, 29.88511321135875 ], [ -95.710329096106321, 29.885098211286145 ], [ -95.710265095499111, 29.885022211081012 ], [ -95.710211095938405, 29.884849211166529 ], [ -95.710106095841326, 29.884554210540909 ], [ -95.709903095775132, 29.884082210981333 ], [ -95.709608095905551, 29.883406210179626 ], [ -95.709477095310675, 29.883073210811407 ], [ -95.709374095465066, 29.882737210165292 ], [ -95.709320095850046, 29.882513210775077 ], [ -95.709262095999861, 29.88217821075229 ], [ -95.709237095095077, 29.881956210472492 ], [ -95.709223095926205, 29.88173721024641 ], [ -95.70922009546878, 29.881531210328983 ], [ -95.709257095240787, 29.880935210403887 ], [ -95.709313095560248, 29.880479209832632 ], [ -95.709316095711443, 29.880371210394319 ], [ -95.709318096019345, 29.880309209594461 ], [ -95.709309095560144, 29.880082209757948 ], [ -95.709305095677408, 29.879799209772198 ], [ -95.708353095432656, 29.879804210265032 ], [ -95.706674095177704, 29.879813210409889 ], [ -95.70620909442917, 29.879814209966913 ], [ -95.704523093763754, 29.879819209772918 ], [ -95.703612094270355, 29.879825209909896 ], [ -95.703657094134854, 29.880565209854282 ], [ -95.703644094484986, 29.881091210644975 ], [ -95.703595094076476, 29.881528210153551 ], [ -95.703460093711897, 29.881953210865532 ], [ -95.70343409436633, 29.882280210292627 ], [ -95.703416094584057, 29.882511210787673 ], [ -95.703332094476508, 29.882966210819099 ], [ -95.703439093718728, 29.883949210753588 ], [ -95.703429094146372, 29.88492221087694 ], [ -95.70346309395336, 29.886798211555696 ], [ -95.703470094701942, 29.887656211455511 ], [ -95.703479094528319, 29.889398212117943 ], [ -95.703480094116202, 29.889515212344481 ], [ -95.703484094245795, 29.889578212399307 ], [ -95.703494093924249, 29.889711212203455 ], [ -95.703543094509982, 29.890425212485859 ], [ -95.703626094762981, 29.89094921256892 ], [ -95.703804095084578, 29.891566212354046 ], [ -95.703980095040052, 29.892103212523885 ], [ -95.704246094985834, 29.892727212458855 ], [ -95.704349095133466, 29.893077212948729 ], [ -95.704468094877726, 29.893472213171325 ], [ -95.704515094787638, 29.893696212521249 ], [ -95.704531095249848, 29.893940212856151 ], [ -95.704503095341821, 29.894689213276695 ], [ -95.704632095425481, 29.894689213411329 ], [ -95.705013095174422, 29.894711213482658 ], [ -95.70529009524482, 29.894699213095208 ], [ -95.706370095399336, 29.89465021260617 ], [ -95.706563095754404, 29.894642212918672 ], [ -95.710588096775794, 29.894592213273775 ], [ -95.710780096240953, 29.894588212892703 ], [ -95.716108097421341, 29.894498212312353 ], [ -95.71842209859922, 29.894474212199761 ], [ -95.718483098320704, 29.894473212932958 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 332, "Tract": "48201421501", "Area_SqMi": 0.33683083885377457, "total_2009": 2760, "total_2010": 2909, "total_2011": 2638, "total_2012": 2705, "total_2013": 2671, "total_2014": 2654, "total_2015": 2939, "total_2016": 2979, "total_2017": 3545, "total_2018": 3344, "total_2019": 3054, "total_2020": 2726, "age1": 577, "age2": 1579, "age3": 643, "earn1": 297, "earn2": 853, "earn3": 1649, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 545, "naics_s05": 206, "naics_s06": 159, "naics_s07": 98, "naics_s08": 18, "naics_s09": 41, "naics_s10": 30, "naics_s11": 115, "naics_s12": 315, "naics_s13": 14, "naics_s14": 139, "naics_s15": 56, "naics_s16": 674, "naics_s17": 19, "naics_s18": 285, "naics_s19": 82, "naics_s20": 1, "race1": 1999, "race2": 553, "race3": 31, "race4": 172, "race5": 3, "race6": 41, "ethnicity1": 1656, "ethnicity2": 1143, "edu1": 591, "edu2": 535, "edu3": 635, "edu4": 461, "Shape_Length": 18534.331796010472, "Shape_Area": 9390267.2955009937, "total_2021": 2550, "total_2022": 2799 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484690030706759, 29.709181182877121 ], [ -95.484696030536341, 29.708556182487211 ], [ -95.484686030861269, 29.708265182970703 ], [ -95.484674030812315, 29.707731182051337 ], [ -95.484679030560656, 29.70735218212883 ], [ -95.484637030668793, 29.705535181741812 ], [ -95.482547029599104, 29.705563182244031 ], [ -95.481907029842333, 29.70556818223384 ], [ -95.481518028997812, 29.705587181779489 ], [ -95.481194029866657, 29.705593182077557 ], [ -95.480915029330816, 29.705598182301934 ], [ -95.4804570295301, 29.705602182431303 ], [ -95.479759029215387, 29.705611182064569 ], [ -95.479104028763274, 29.705616182374985 ], [ -95.478906028411984, 29.705620182018276 ], [ -95.478639028531504, 29.705623182229864 ], [ -95.478390028347619, 29.705625182091463 ], [ -95.477795028127773, 29.705621181844389 ], [ -95.477664028064524, 29.705619182528014 ], [ -95.476283027612325, 29.705608182194712 ], [ -95.476288028327147, 29.70644718238043 ], [ -95.47629302831055, 29.707437182897785 ], [ -95.475483027762962, 29.707432182386778 ], [ -95.475227027756048, 29.707432182450344 ], [ -95.474669028188288, 29.707443182292167 ], [ -95.474196027679341, 29.707451183066024 ], [ -95.472519026931991, 29.707481182557718 ], [ -95.472532027046782, 29.707884183196629 ], [ -95.472553027077254, 29.708768182836735 ], [ -95.472560027475907, 29.709288183581375 ], [ -95.472550027842601, 29.709683183697511 ], [ -95.472564027073844, 29.710581183729644 ], [ -95.472579026952801, 29.711115183853895 ], [ -95.472583027030851, 29.711597183838375 ], [ -95.472586027654856, 29.712071183390673 ], [ -95.472582027133711, 29.712490183924785 ], [ -95.472601027894385, 29.71290918361391 ], [ -95.472580027799324, 29.712913183521255 ], [ -95.472177027789513, 29.712938184197593 ], [ -95.470429026798186, 29.712950183641038 ], [ -95.46991502727019, 29.712955184007519 ], [ -95.46960402664169, 29.712955183623322 ], [ -95.4693210268874, 29.712955184095925 ], [ -95.468510026801724, 29.712972184333619 ], [ -95.467997026479807, 29.71298418392438 ], [ -95.468030026659704, 29.714790184044887 ], [ -95.468031026675931, 29.716071184392142 ], [ -95.468059026040365, 29.716596185172513 ], [ -95.469028026965802, 29.716596184456577 ], [ -95.469656026920703, 29.716595184795771 ], [ -95.469976027370507, 29.716594184424217 ], [ -95.470508027089593, 29.716593184347467 ], [ -95.470758026899517, 29.716577184900785 ], [ -95.471216027817292, 29.71657318507128 ], [ -95.47221902728279, 29.716566184974717 ], [ -95.473406027433711, 29.716550184554087 ], [ -95.473627028154354, 29.716550184802813 ], [ -95.473949028067224, 29.716544184468386 ], [ -95.474806028433605, 29.716535184460643 ], [ -95.47504002806626, 29.716531184550089 ], [ -95.476421028612791, 29.716532184273348 ], [ -95.476424028955606, 29.716036184502116 ], [ -95.476395029028239, 29.714708183997359 ], [ -95.476361028536488, 29.713011184105753 ], [ -95.476365028648829, 29.712889183857513 ], [ -95.476358028906787, 29.711876183129249 ], [ -95.476346028276893, 29.710113182787939 ], [ -95.476351028159883, 29.709515183438434 ], [ -95.476350028736221, 29.709272183478291 ], [ -95.47763902820121, 29.709249182854947 ], [ -95.47787502818943, 29.709245183196465 ], [ -95.478426028985581, 29.709235182646793 ], [ -95.480516029814595, 29.709196182439896 ], [ -95.481232029893036, 29.709189182946734 ], [ -95.481413029319071, 29.709186182702176 ], [ -95.481649029739614, 29.709197183015643 ], [ -95.482603030137085, 29.709197182937761 ], [ -95.483352030264243, 29.709186182529631 ], [ -95.484690030706759, 29.709181182877121 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 333, "Tract": "48201423002", "Area_SqMi": 0.5590871023265882, "total_2009": 260, "total_2010": 225, "total_2011": 250, "total_2012": 261, "total_2013": 242, "total_2014": 255, "total_2015": 246, "total_2016": 289, "total_2017": 284, "total_2018": 283, "total_2019": 318, "total_2020": 277, "age1": 64, "age2": 182, "age3": 96, "earn1": 46, "earn2": 153, "earn3": 143, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 11, "naics_s07": 57, "naics_s08": 0, "naics_s09": 0, "naics_s10": 45, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 21, "naics_s15": 0, "naics_s16": 116, "naics_s17": 88, "naics_s18": 1, "naics_s19": 3, "naics_s20": 0, "race1": 247, "race2": 61, "race3": 4, "race4": 21, "race5": 0, "race6": 9, "ethnicity1": 205, "ethnicity2": 137, "edu1": 77, "edu2": 65, "edu3": 75, "edu4": 61, "Shape_Length": 18571.809103245752, "Shape_Area": 15586391.525726374, "total_2021": 310, "total_2022": 342 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.530526040907091, 29.676424174667858 ], [ -95.530491040767544, 29.674870173808586 ], [ -95.530430040553412, 29.674267173859864 ], [ -95.530265040948535, 29.673826174205786 ], [ -95.530026039988286, 29.673534173950607 ], [ -95.529800040829571, 29.673365174033975 ], [ -95.529425040752315, 29.673160174230283 ], [ -95.528318040429923, 29.672765174021031 ], [ -95.528203040403156, 29.672725174196458 ], [ -95.526426039619281, 29.672110173721929 ], [ -95.525797038837553, 29.671945173260276 ], [ -95.525186038633095, 29.671879174023232 ], [ -95.52347303881244, 29.671977173510324 ], [ -95.520934037574051, 29.672194174042378 ], [ -95.515772036614308, 29.673622174280677 ], [ -95.515800036592992, 29.673702173965115 ], [ -95.51595703678997, 29.67414317446983 ], [ -95.516027037041795, 29.674459174358514 ], [ -95.516050037358397, 29.674727174765227 ], [ -95.51606003718635, 29.674946174835906 ], [ -95.515991036855056, 29.675267175126461 ], [ -95.515832036564689, 29.675534174452533 ], [ -95.515268037099645, 29.676101175273423 ], [ -95.514827036600963, 29.676543174581312 ], [ -95.514645037063289, 29.676739175064558 ], [ -95.514473037029902, 29.677028175069346 ], [ -95.514378036165326, 29.677325174902474 ], [ -95.514380036634677, 29.677882175340105 ], [ -95.514395036969191, 29.678360175503691 ], [ -95.513394036560143, 29.678377175757436 ], [ -95.512975036307012, 29.678389175872756 ], [ -95.512212036439706, 29.67839317525398 ], [ -95.511703035639798, 29.678393175683905 ], [ -95.510825036101124, 29.678410175878927 ], [ -95.510925035692523, 29.682352176707482 ], [ -95.510996036492131, 29.685630177392362 ], [ -95.511394036736547, 29.68543117667787 ], [ -95.511536036575649, 29.685358177113955 ], [ -95.511846036566254, 29.685194177219604 ], [ -95.512209036818874, 29.685014176652405 ], [ -95.512356036848573, 29.684939177133568 ], [ -95.513008036765427, 29.68460217643808 ], [ -95.513474036407487, 29.684388176514851 ], [ -95.513993037181493, 29.684141176543676 ], [ -95.515145036895845, 29.683542176191931 ], [ -95.515896037077837, 29.68315117650323 ], [ -95.516313037247812, 29.682947175952645 ], [ -95.516548036926835, 29.682830176558873 ], [ -95.517226038017881, 29.682494176225756 ], [ -95.51757703783899, 29.682321176147582 ], [ -95.517941037526029, 29.68214217574031 ], [ -95.518458037881871, 29.681887176190958 ], [ -95.519460037624583, 29.681394175767142 ], [ -95.519675038132561, 29.681284175639515 ], [ -95.520089038377478, 29.681080175915614 ], [ -95.521735038347131, 29.680250175426242 ], [ -95.522489039156881, 29.6798771759007 ], [ -95.52460903881267, 29.678779174807183 ], [ -95.525528039795645, 29.678329174987979 ], [ -95.525719039282009, 29.678230175015266 ], [ -95.526335040159111, 29.677917174953414 ], [ -95.526457039490737, 29.677856175265603 ], [ -95.5272510395354, 29.677450174594103 ], [ -95.527912039642501, 29.677086175035711 ], [ -95.528369040186121, 29.676892174640294 ], [ -95.52958004003014, 29.676472174923159 ], [ -95.529645040406422, 29.676469174110998 ], [ -95.530448040436937, 29.676428174037436 ], [ -95.530526040907091, 29.676424174667858 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 334, "Tract": "48201532800", "Area_SqMi": 0.52016437218373335, "total_2009": 408, "total_2010": 324, "total_2011": 346, "total_2012": 289, "total_2013": 271, "total_2014": 287, "total_2015": 320, "total_2016": 340, "total_2017": 322, "total_2018": 311, "total_2019": 331, "total_2020": 357, "age1": 122, "age2": 208, "age3": 67, "earn1": 78, "earn2": 141, "earn3": 178, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 5, "naics_s07": 105, "naics_s08": 0, "naics_s09": 0, "naics_s10": 14, "naics_s11": 2, "naics_s12": 8, "naics_s13": 0, "naics_s14": 0, "naics_s15": 112, "naics_s16": 42, "naics_s17": 0, "naics_s18": 77, "naics_s19": 27, "naics_s20": 0, "race1": 265, "race2": 81, "race3": 2, "race4": 45, "race5": 1, "race6": 3, "ethnicity1": 268, "ethnicity2": 129, "edu1": 63, "edu2": 74, "edu3": 71, "edu4": 67, "Shape_Length": 24416.35040034261, "Shape_Area": 14501292.426262001, "total_2021": 368, "total_2022": 397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.480383036678077, 29.865663215233759 ], [ -95.480034036623408, 29.865360214883296 ], [ -95.47981603629178, 29.865132215019834 ], [ -95.479513036015575, 29.864649214513385 ], [ -95.479185035455373, 29.864059214735519 ], [ -95.47880003547256, 29.863674214817269 ], [ -95.478625035911449, 29.86353121414988 ], [ -95.478395036113781, 29.863411214761904 ], [ -95.478150035335844, 29.863332214049727 ], [ -95.477899035284565, 29.863297214813329 ], [ -95.477602035153851, 29.863284214260148 ], [ -95.475636035444012, 29.863292214476044 ], [ -95.4751390346931, 29.863292214218191 ], [ -95.474716035228113, 29.863293214651861 ], [ -95.473419034556883, 29.863306214669795 ], [ -95.470778034169271, 29.863315214294932 ], [ -95.470549033316743, 29.863317215014249 ], [ -95.470463033767388, 29.863316214902859 ], [ -95.470321033641568, 29.863315215121577 ], [ -95.470184033262171, 29.863314214976445 ], [ -95.46964703314849, 29.863311214706314 ], [ -95.467430032581532, 29.863317214486099 ], [ -95.466883032345393, 29.863325215272503 ], [ -95.466835032609126, 29.863327214829368 ], [ -95.466840033233098, 29.863446214753857 ], [ -95.466897032712097, 29.863914215077369 ], [ -95.466979032518907, 29.864397215431076 ], [ -95.466986033290482, 29.864881215326943 ], [ -95.466916032832884, 29.865277215636354 ], [ -95.466822033277467, 29.86568921534446 ], [ -95.466797032449591, 29.865871215488671 ], [ -95.466797032909213, 29.865997215179146 ], [ -95.466835033193476, 29.866151215684784 ], [ -95.466961033371135, 29.866448215552399 ], [ -95.467119033139781, 29.866618215251421 ], [ -95.467327033382972, 29.866761215598832 ], [ -95.467864032942614, 29.866973215181535 ], [ -95.468052033507277, 29.867047215375194 ], [ -95.468620033891781, 29.867300215181448 ], [ -95.46878403315047, 29.867426215712996 ], [ -95.468892033421582, 29.867536215275958 ], [ -95.469018033375406, 29.867695215791876 ], [ -95.469201033222859, 29.86797621547478 ], [ -95.469345033199559, 29.868260215852562 ], [ -95.469794033269679, 29.869146216021321 ], [ -95.470274034245577, 29.870053215995551 ], [ -95.470346034265773, 29.870229216453872 ], [ -95.470426034041978, 29.870427216423394 ], [ -95.470457033899962, 29.870537215762472 ], [ -95.470470033580483, 29.870653215932876 ], [ -95.470457033658676, 29.871015216166182 ], [ -95.470420033645013, 29.871213216467101 ], [ -95.470375034026191, 29.8714002164341 ], [ -95.47024303386479, 29.871670216012511 ], [ -95.469953034033338, 29.872115216598836 ], [ -95.4697640340178, 29.872352216395768 ], [ -95.469594033856524, 29.872544217046993 ], [ -95.469316034087811, 29.87282521684644 ], [ -95.469127033842739, 29.87305021642721 ], [ -95.46908303338239, 29.873111216741332 ], [ -95.468988034007452, 29.873364217041889 ], [ -95.468988033577702, 29.873391216883274 ], [ -95.468951033555513, 29.873440217045225 ], [ -95.468711034100622, 29.873638216901419 ], [ -95.468503033695555, 29.873755217015407 ], [ -95.468446033238905, 29.873787216950717 ], [ -95.46787203358123, 29.874023217380586 ], [ -95.467563033863172, 29.874161216974237 ], [ -95.467511033576912, 29.874190217020903 ], [ -95.46740603299186, 29.874249216992936 ], [ -95.466888033722469, 29.874502217396653 ], [ -95.466762033231902, 29.874579217016766 ], [ -95.466620033177051, 29.874710217256418 ], [ -95.466554033010127, 29.874772216898837 ], [ -95.466541033262232, 29.874784216825724 ], [ -95.466321033649692, 29.875008217357781 ], [ -95.466246032839507, 29.875134216918219 ], [ -95.466126033365299, 29.875403217159192 ], [ -95.466113033563474, 29.875618217354234 ], [ -95.466170033123831, 29.87580521746359 ], [ -95.466347033347233, 29.875959217063894 ], [ -95.466479032831728, 29.876113217165727 ], [ -95.466541033074535, 29.876175217811713 ], [ -95.46673803369174, 29.876371217763786 ], [ -95.46700903321792, 29.876569217634945 ], [ -95.467303033876249, 29.876710217902669 ], [ -95.467363033699215, 29.87673921740879 ], [ -95.467691033177829, 29.876959217780083 ], [ -95.468234034053012, 29.87768521778219 ], [ -95.46827803364144, 29.877888218094888 ], [ -95.468322033580364, 29.878586217700448 ], [ -95.468600034115454, 29.879114217819144 ], [ -95.46872603418899, 29.879306218029374 ], [ -95.468972033753488, 29.879642218102415 ], [ -95.468934033746393, 29.879785217779595 ], [ -95.468657033700595, 29.88007021845149 ], [ -95.468534034166652, 29.88022321823588 ], [ -95.468323034038846, 29.880488217944375 ], [ -95.468215033910127, 29.88064821849796 ], [ -95.468176033906758, 29.880695217929212 ], [ -95.467869034047013, 29.881071218256537 ], [ -95.467768034148378, 29.881297218418204 ], [ -95.467724034214655, 29.881456218307012 ], [ -95.46769203375824, 29.882099218728413 ], [ -95.467598034070846, 29.882638218907015 ], [ -95.467566034285895, 29.883083218922504 ], [ -95.467598034225546, 29.883149219078263 ], [ -95.467648033597342, 29.88329621858707 ], [ -95.467695033450326, 29.883297218631366 ], [ -95.469379034213276, 29.883342219041253 ], [ -95.469826034152973, 29.883437219144717 ], [ -95.470728034354551, 29.88368421924724 ], [ -95.471680034985738, 29.884018219081419 ], [ -95.472265034703753, 29.884188219200361 ], [ -95.472542035142467, 29.884230218473267 ], [ -95.472793035278713, 29.884282218705405 ], [ -95.47310103487608, 29.884303219333987 ], [ -95.473334035752259, 29.884326219342352 ], [ -95.473908035680864, 29.884312218754651 ], [ -95.473882035776825, 29.883098218301818 ], [ -95.473863035175626, 29.882408218731744 ], [ -95.473838035572868, 29.880755218213682 ], [ -95.473804035556228, 29.878568217308807 ], [ -95.473804034776421, 29.878203218004778 ], [ -95.473802035095531, 29.876552217002835 ], [ -95.473930035557487, 29.875490217248757 ], [ -95.473990034992738, 29.875045216643635 ], [ -95.474004035195833, 29.874151217014845 ], [ -95.4738790348203, 29.873247216447599 ], [ -95.473141034184167, 29.869042215992291 ], [ -95.472948034127938, 29.867864215691085 ], [ -95.472797034029242, 29.866892214943935 ], [ -95.473823034258388, 29.866445215166269 ], [ -95.473888034398144, 29.86641721518891 ], [ -95.473973035185622, 29.866379215541407 ], [ -95.474581034768363, 29.866103214991341 ], [ -95.474730034591872, 29.866056215319457 ], [ -95.475655035023493, 29.865767215376124 ], [ -95.476649035692176, 29.865692215064609 ], [ -95.476695035092959, 29.865691214588598 ], [ -95.477709036033147, 29.865670215204506 ], [ -95.479109035651192, 29.865597215320786 ], [ -95.480383036678077, 29.865663215233759 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 335, "Tract": "48201532900", "Area_SqMi": 0.65881374404276039, "total_2009": 146, "total_2010": 153, "total_2011": 160, "total_2012": 153, "total_2013": 167, "total_2014": 158, "total_2015": 157, "total_2016": 173, "total_2017": 160, "total_2018": 302, "total_2019": 286, "total_2020": 317, "age1": 70, "age2": 196, "age3": 71, "earn1": 62, "earn2": 120, "earn3": 155, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 39, "naics_s05": 56, "naics_s06": 0, "naics_s07": 64, "naics_s08": 0, "naics_s09": 0, "naics_s10": 5, "naics_s11": 29, "naics_s12": 4, "naics_s13": 0, "naics_s14": 38, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 34, "naics_s19": 61, "naics_s20": 0, "race1": 235, "race2": 64, "race3": 4, "race4": 28, "race5": 1, "race6": 5, "ethnicity1": 212, "ethnicity2": 125, "edu1": 64, "edu2": 82, "edu3": 78, "edu4": 43, "Shape_Length": 18338.138493806044, "Shape_Area": 18366599.61292012, "total_2021": 379, "total_2022": 337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.480441037727886, 29.899755221730985 ], [ -95.480438037980235, 29.899504221379694 ], [ -95.480427038311504, 29.89934822130331 ], [ -95.480385038344323, 29.89907022197125 ], [ -95.480323037465126, 29.898765221928876 ], [ -95.480249037740379, 29.898432221545786 ], [ -95.480208037545211, 29.898207221140247 ], [ -95.480185037592761, 29.89803322148634 ], [ -95.480179037463969, 29.897988221877892 ], [ -95.480163038202321, 29.897775221136548 ], [ -95.480156037477201, 29.89756922143253 ], [ -95.480151037630534, 29.897373220886688 ], [ -95.48015103751392, 29.897331220953188 ], [ -95.480145037460289, 29.896516221291666 ], [ -95.480140038056106, 29.896412221253502 ], [ -95.480142037245145, 29.896308220667041 ], [ -95.480135037900723, 29.896124220955329 ], [ -95.480136038036861, 29.896024220666565 ], [ -95.480125037639297, 29.895066220840267 ], [ -95.480129037781197, 29.894963220433077 ], [ -95.480128037715971, 29.894919221143589 ], [ -95.480122037744209, 29.8946292204811 ], [ -95.480113038001392, 29.894147220393307 ], [ -95.480101037762395, 29.893957220626792 ], [ -95.480069037072781, 29.893696220834265 ], [ -95.480017037794482, 29.893354220170288 ], [ -95.479959037303061, 29.893101220368422 ], [ -95.479881037739744, 29.892828220345148 ], [ -95.479856037451512, 29.892757219978854 ], [ -95.479776037306522, 29.892531220145642 ], [ -95.479735037890464, 29.892433220094414 ], [ -95.479690036882033, 29.892327219954709 ], [ -95.479618037638616, 29.892181220156978 ], [ -95.479543036932697, 29.892026220211047 ], [ -95.479384037202351, 29.891745220325333 ], [ -95.479217037052535, 29.891487219858387 ], [ -95.479012036750888, 29.891209220311694 ], [ -95.478862037026289, 29.891021220196755 ], [ -95.478674037220856, 29.890810219794911 ], [ -95.478450036888788, 29.890584219756899 ], [ -95.478288036633145, 29.890434219551707 ], [ -95.478111037179787, 29.890283219774524 ], [ -95.477827036975171, 29.890068219667693 ], [ -95.477547036428874, 29.889879219681269 ], [ -95.477463036231086, 29.889826220247517 ], [ -95.477390036750322, 29.889773219836808 ], [ -95.477247036753596, 29.88968022023742 ], [ -95.477170036483201, 29.889639219507327 ], [ -95.477159036592283, 29.889632219818814 ], [ -95.477099036354119, 29.889594219771954 ], [ -95.477035036242299, 29.889547219488783 ], [ -95.476550035943006, 29.889244219355252 ], [ -95.476310036515187, 29.889083219797559 ], [ -95.475980036588425, 29.888841219966533 ], [ -95.475780035781398, 29.888674219688681 ], [ -95.4755790366019, 29.888488220066513 ], [ -95.475305035642506, 29.888204219858562 ], [ -95.475127036190514, 29.887999219967764 ], [ -95.474936035839448, 29.887752219305749 ], [ -95.47481603638812, 29.887579219292672 ], [ -95.474651035714047, 29.88731921954324 ], [ -95.474553035391793, 29.887147219697578 ], [ -95.474398035637506, 29.8868362196574 ], [ -95.474365036011463, 29.88675021946921 ], [ -95.474240035186398, 29.886437219318722 ], [ -95.474185035224593, 29.88628821928463 ], [ -95.474097035568903, 29.88595521918397 ], [ -95.474045035537131, 29.8857072195235 ], [ -95.473995035874509, 29.885367219002575 ], [ -95.473964035073095, 29.885005219316589 ], [ -95.473961035480173, 29.884833218894386 ], [ -95.47396103566652, 29.884818219355683 ], [ -95.473908035680864, 29.884312218754651 ], [ -95.473334035752259, 29.884326219342352 ], [ -95.47310103487608, 29.884303219333987 ], [ -95.472793035278713, 29.884282218705405 ], [ -95.472542035142467, 29.884230218473267 ], [ -95.472265034703753, 29.884188219200361 ], [ -95.471680034985738, 29.884018219081419 ], [ -95.470728034354551, 29.88368421924724 ], [ -95.469826034152973, 29.883437219144717 ], [ -95.469379034213276, 29.883342219041253 ], [ -95.467695033450326, 29.883297218631366 ], [ -95.467648033597342, 29.88329621858707 ], [ -95.467743033700657, 29.883578219299554 ], [ -95.467876034168185, 29.883881218561516 ], [ -95.467964033649551, 29.884150219476773 ], [ -95.468040034315237, 29.884540218782046 ], [ -95.468046034120491, 29.884799219001742 ], [ -95.468035033679456, 29.884902219542543 ], [ -95.468034034522205, 29.884914219609598 ], [ -95.468009034360634, 29.885002219394782 ], [ -95.468005034353041, 29.885025219092473 ], [ -95.467983034458001, 29.885167218845268 ], [ -95.467902034459613, 29.885475219463064 ], [ -95.467757033771051, 29.885722219197564 ], [ -95.467656033978088, 29.885959219171387 ], [ -95.467574033978153, 29.886102219710974 ], [ -95.467353034351916, 29.886404219642781 ], [ -95.467088033474482, 29.886739219837839 ], [ -95.466962034125274, 29.886965219800992 ], [ -95.466899034279066, 29.887229219483611 ], [ -95.466899034301008, 29.887306220170121 ], [ -95.467000033940238, 29.887894219930125 ], [ -95.467044034149197, 29.888037219928336 ], [ -95.467095033863487, 29.888125219605445 ], [ -95.467038033799895, 29.888185219762928 ], [ -95.467051034392298, 29.888323219870252 ], [ -95.467127033845173, 29.888543220018128 ], [ -95.467177034146587, 29.888757220064921 ], [ -95.467146033897819, 29.888939219968339 ], [ -95.467177034351465, 29.889362220556425 ], [ -95.467158033981747, 29.889538219939521 ], [ -95.467165033967632, 29.889840220258769 ], [ -95.467209033723606, 29.890093220044605 ], [ -95.467278033589849, 29.890357220115934 ], [ -95.467430033832215, 29.890582220295581 ], [ -95.467613034708506, 29.890940220649721 ], [ -95.467683034217117, 29.891148220040737 ], [ -95.467689034507814, 29.891407220658039 ], [ -95.467746034233457, 29.891715220637447 ], [ -95.467706033845232, 29.891765220893674 ], [ -95.467689034438934, 29.891786220229449 ], [ -95.467626034504704, 29.891957220597362 ], [ -95.467494034344099, 29.892204220866017 ], [ -95.467361034411638, 29.892408220630674 ], [ -95.467311034436364, 29.892567220850982 ], [ -95.467267034074624, 29.89287522079179 ], [ -95.467248033858695, 29.893144221063078 ], [ -95.467279034308774, 29.893348220501863 ], [ -95.4673610338846, 29.893557220897534 ], [ -95.467513034317975, 29.89379822114336 ], [ -95.467671034362937, 29.893969221282312 ], [ -95.467734034404643, 29.894084221044835 ], [ -95.467780034000981, 29.894124221514069 ], [ -95.467991034433126, 29.894307221167871 ], [ -95.468075034777684, 29.894381221124888 ], [ -95.46830803429684, 29.894502221578445 ], [ -95.468378034119624, 29.894595220962312 ], [ -95.468441034072043, 29.894661221430788 ], [ -95.468567034230631, 29.894694220770617 ], [ -95.468630034375764, 29.894870220910342 ], [ -95.468636034563332, 29.894947221330607 ], [ -95.468700034283302, 29.894925221270743 ], [ -95.46873703467368, 29.895002221574867 ], [ -95.468763034220146, 29.895139221051828 ], [ -95.468763034768244, 29.89532622126158 ], [ -95.468839035117398, 29.895684221017145 ], [ -95.468845034634555, 29.895882221167152 ], [ -95.468902034466822, 29.896135221558069 ], [ -95.468915034338394, 29.89636022141535 ], [ -95.468990034591371, 29.896563221681781 ], [ -95.468984034792328, 29.896706221617048 ], [ -95.468990034714267, 29.896767221463783 ], [ -95.468902034927993, 29.89694322184231 ], [ -95.468997034513322, 29.897097221463156 ], [ -95.469047034515512, 29.897272222018618 ], [ -95.468940034982026, 29.897762221851814 ], [ -95.468827035013732, 29.898086221605038 ], [ -95.468701034542747, 29.898345221874017 ], [ -95.468682034698617, 29.898565222067909 ], [ -95.468650034833388, 29.898647221963554 ], [ -95.468644034403255, 29.898762222063695 ], [ -95.468619035000813, 29.89893322164901 ], [ -95.468589034450645, 29.899075222481393 ], [ -95.468621035019453, 29.899089221925692 ], [ -95.468990034520075, 29.899279222394021 ], [ -95.469174035044304, 29.899376221903207 ], [ -95.46927403534761, 29.899428222052645 ], [ -95.469395034869464, 29.899483222505761 ], [ -95.469519034833397, 29.899531221754277 ], [ -95.469773035365165, 29.899609221864505 ], [ -95.46989903470346, 29.899631222369422 ], [ -95.470034035350395, 29.899662222034845 ], [ -95.470164035256772, 29.899687222181591 ], [ -95.47043203544159, 29.899711221790241 ], [ -95.470853035183325, 29.899723221842375 ], [ -95.471143035966506, 29.899724221710716 ], [ -95.471588035823743, 29.899719221841874 ], [ -95.471754035903729, 29.899726222284727 ], [ -95.471895035998628, 29.899723222353305 ], [ -95.472212036292603, 29.899729221677728 ], [ -95.472354035883441, 29.899724222097333 ], [ -95.472517035476699, 29.89973222222951 ], [ -95.47267503622389, 29.899734222027398 ], [ -95.472845036017389, 29.899720222469398 ], [ -95.47301403588925, 29.899716221639338 ], [ -95.473190036361913, 29.899722222217569 ], [ -95.473858035950499, 29.899723221933613 ], [ -95.474491036537998, 29.899733222021034 ], [ -95.47467003626268, 29.899719221937687 ], [ -95.474797036411545, 29.899726222072168 ], [ -95.475600036513214, 29.899729221594971 ], [ -95.475899036819527, 29.899731221991185 ], [ -95.475994036541039, 29.899721222163649 ], [ -95.476019036473005, 29.899722221697711 ], [ -95.476204036436542, 29.899730221958677 ], [ -95.476430036368768, 29.899734222334935 ], [ -95.476565036411728, 29.899730222331705 ], [ -95.477281037558541, 29.899729222358825 ], [ -95.477748036835592, 29.899721221548948 ], [ -95.478064037649006, 29.89972622224446 ], [ -95.479255037140319, 29.899733221802325 ], [ -95.479355038102881, 29.899742221539032 ], [ -95.479716037952144, 29.899750222225698 ], [ -95.479814037241795, 29.899743221924822 ], [ -95.479992038194595, 29.89975222207514 ], [ -95.480066038157844, 29.899747222218664 ], [ -95.48035203792648, 29.899750221959671 ], [ -95.480441037727886, 29.899755221730985 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 336, "Tract": "48201533000", "Area_SqMi": 0.68388418096280357, "total_2009": 68, "total_2010": 83, "total_2011": 78, "total_2012": 112, "total_2013": 117, "total_2014": 105, "total_2015": 98, "total_2016": 101, "total_2017": 132, "total_2018": 95, "total_2019": 93, "total_2020": 78, "age1": 22, "age2": 54, "age3": 28, "earn1": 26, "earn2": 26, "earn3": 52, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 11, "naics_s06": 0, "naics_s07": 3, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 12, "naics_s12": 4, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 0, "naics_s19": 57, "naics_s20": 0, "race1": 37, "race2": 53, "race3": 0, "race4": 10, "race5": 0, "race6": 4, "ethnicity1": 77, "ethnicity2": 27, "edu1": 14, "edu2": 26, "edu3": 33, "edu4": 9, "Shape_Length": 19707.9219669624, "Shape_Area": 19065520.485769302, "total_2021": 83, "total_2022": 104 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.469047034515512, 29.897272222018618 ], [ -95.468997034513322, 29.897097221463156 ], [ -95.468902034927993, 29.89694322184231 ], [ -95.468990034714267, 29.896767221463783 ], [ -95.468984034792328, 29.896706221617048 ], [ -95.468990034591371, 29.896563221681781 ], [ -95.468915034338394, 29.89636022141535 ], [ -95.468902034466822, 29.896135221558069 ], [ -95.468845034634555, 29.895882221167152 ], [ -95.468839035117398, 29.895684221017145 ], [ -95.468763034768244, 29.89532622126158 ], [ -95.468763034220146, 29.895139221051828 ], [ -95.46873703467368, 29.895002221574867 ], [ -95.468700034283302, 29.894925221270743 ], [ -95.468636034563332, 29.894947221330607 ], [ -95.468630034375764, 29.894870220910342 ], [ -95.468567034230631, 29.894694220770617 ], [ -95.468441034072043, 29.894661221430788 ], [ -95.468378034119624, 29.894595220962312 ], [ -95.46830803429684, 29.894502221578445 ], [ -95.468075034777684, 29.894381221124888 ], [ -95.467991034433126, 29.894307221167871 ], [ -95.467780034000981, 29.894124221514069 ], [ -95.467734034404643, 29.894084221044835 ], [ -95.467671034362937, 29.893969221282312 ], [ -95.467513034317975, 29.89379822114336 ], [ -95.4673610338846, 29.893557220897534 ], [ -95.467279034308774, 29.893348220501863 ], [ -95.467248033858695, 29.893144221063078 ], [ -95.467267034074624, 29.89287522079179 ], [ -95.467311034436364, 29.892567220850982 ], [ -95.467361034411638, 29.892408220630674 ], [ -95.467494034344099, 29.892204220866017 ], [ -95.467626034504704, 29.891957220597362 ], [ -95.467689034438934, 29.891786220229449 ], [ -95.467706033845232, 29.891765220893674 ], [ -95.467746034233457, 29.891715220637447 ], [ -95.467689034507814, 29.891407220658039 ], [ -95.467683034217117, 29.891148220040737 ], [ -95.467613034708506, 29.890940220649721 ], [ -95.467430033832215, 29.890582220295581 ], [ -95.467278033589849, 29.890357220115934 ], [ -95.467209033723606, 29.890093220044605 ], [ -95.467165033967632, 29.889840220258769 ], [ -95.467158033981747, 29.889538219939521 ], [ -95.467177034351465, 29.889362220556425 ], [ -95.467146033897819, 29.888939219968339 ], [ -95.467177034146587, 29.888757220064921 ], [ -95.467127033845173, 29.888543220018128 ], [ -95.467051034392298, 29.888323219870252 ], [ -95.467038033799895, 29.888185219762928 ], [ -95.467095033863487, 29.888125219605445 ], [ -95.467044034149197, 29.888037219928336 ], [ -95.467000033940238, 29.887894219930125 ], [ -95.466899034301008, 29.887306220170121 ], [ -95.466899034279066, 29.887229219483611 ], [ -95.466962034125274, 29.886965219800992 ], [ -95.467088033474482, 29.886739219837839 ], [ -95.467353034351916, 29.886404219642781 ], [ -95.467574033978153, 29.886102219710974 ], [ -95.467656033978088, 29.885959219171387 ], [ -95.467757033771051, 29.885722219197564 ], [ -95.467902034459613, 29.885475219463064 ], [ -95.467983034458001, 29.885167218845268 ], [ -95.468005034353041, 29.885025219092473 ], [ -95.468009034360634, 29.885002219394782 ], [ -95.468034034522205, 29.884914219609598 ], [ -95.468035033679456, 29.884902219542543 ], [ -95.468046034120491, 29.884799219001742 ], [ -95.468040034315237, 29.884540218782046 ], [ -95.467964033649551, 29.884150219476773 ], [ -95.467876034168185, 29.883881218561516 ], [ -95.467743033700657, 29.883578219299554 ], [ -95.467648033597342, 29.88329621858707 ], [ -95.467237033965219, 29.883292218851125 ], [ -95.466917033940703, 29.883266218520944 ], [ -95.466153032975555, 29.883217218995561 ], [ -95.46543303345554, 29.883107218753302 ], [ -95.465306033044811, 29.883087218778307 ], [ -95.464840032967629, 29.883026218653438 ], [ -95.464421033026838, 29.882984218868806 ], [ -95.464035032803352, 29.882980219112891 ], [ -95.463801033197939, 29.8829782190634 ], [ -95.463646033000572, 29.882976218611258 ], [ -95.463171033087519, 29.882964219190804 ], [ -95.461856032566843, 29.882989219180327 ], [ -95.456744031427561, 29.88305521947677 ], [ -95.456430031191687, 29.883034219391551 ], [ -95.455668030734017, 29.883120219368358 ], [ -95.455103031003588, 29.883212219191847 ], [ -95.454376030161015, 29.883356219718944 ], [ -95.453225030520031, 29.883700219698095 ], [ -95.451791030055546, 29.884144219913502 ], [ -95.450671029666466, 29.884695219392807 ], [ -95.450852030060219, 29.884887219599335 ], [ -95.45090802939761, 29.884947220107925 ], [ -95.450992029230392, 29.88503621939374 ], [ -95.451375029906998, 29.885423220078795 ], [ -95.451578029713247, 29.885627220019803 ], [ -95.451620030111954, 29.885674219687012 ], [ -95.452162030121386, 29.886209220013402 ], [ -95.45305603061513, 29.887095219722124 ], [ -95.453387029990409, 29.887434220246789 ], [ -95.453585030800738, 29.887631220300694 ], [ -95.454400030856107, 29.888454220810967 ], [ -95.454862030532055, 29.888953220774276 ], [ -95.455882030888617, 29.889987220906395 ], [ -95.456233031081737, 29.890299220405311 ], [ -95.456692031315256, 29.890604220852641 ], [ -95.457371031332656, 29.891056221127741 ], [ -95.457645031423382, 29.891277220486312 ], [ -95.457720032147378, 29.891338220434879 ], [ -95.458535032397151, 29.892107220747633 ], [ -95.461704032689028, 29.895518221288114 ], [ -95.463226033794299, 29.897164222109996 ], [ -95.463516033734393, 29.897476221958996 ], [ -95.464337033849546, 29.898268222279349 ], [ -95.464739033584451, 29.898736222513374 ], [ -95.46482403391029, 29.89874422235096 ], [ -95.465116033693278, 29.898737222291089 ], [ -95.465616033617238, 29.898739222369453 ], [ -95.465731034060312, 29.898744221775477 ], [ -95.465858034101075, 29.898740222231432 ], [ -95.465988033915067, 29.898755222000144 ], [ -95.466241033916546, 29.898754221853537 ], [ -95.466376034570743, 29.898758222004432 ], [ -95.466501034788763, 29.898757221802246 ], [ -95.466647034515105, 29.898764221843845 ], [ -95.467203034508984, 29.89877522192559 ], [ -95.467342034490144, 29.898782221955628 ], [ -95.467742035002857, 29.898826222483041 ], [ -95.467871034194289, 29.898850221938392 ], [ -95.467992035160094, 29.898863221895933 ], [ -95.468115034568939, 29.898895221839538 ], [ -95.468432034599374, 29.89900822229864 ], [ -95.468589034450645, 29.899075222481393 ], [ -95.468619035000813, 29.89893322164901 ], [ -95.468644034403255, 29.898762222063695 ], [ -95.468650034833388, 29.898647221963554 ], [ -95.468682034698617, 29.898565222067909 ], [ -95.468701034542747, 29.898345221874017 ], [ -95.468827035013732, 29.898086221605038 ], [ -95.468940034982026, 29.897762221851814 ], [ -95.469047034515512, 29.897272222018618 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 337, "Tract": "48201542500", "Area_SqMi": 1.6959584635837754, "total_2009": 543, "total_2010": 774, "total_2011": 978, "total_2012": 1174, "total_2013": 1794, "total_2014": 2038, "total_2015": 1842, "total_2016": 2252, "total_2017": 2477, "total_2018": 2608, "total_2019": 2800, "total_2020": 2450, "age1": 704, "age2": 1360, "age3": 449, "earn1": 527, "earn2": 514, "earn3": 1472, "naics_s01": 2, "naics_s02": 32, "naics_s03": 0, "naics_s04": 148, "naics_s05": 85, "naics_s06": 115, "naics_s07": 117, "naics_s08": 2, "naics_s09": 121, "naics_s10": 80, "naics_s11": 25, "naics_s12": 894, "naics_s13": 5, "naics_s14": 7, "naics_s15": 67, "naics_s16": 39, "naics_s17": 7, "naics_s18": 734, "naics_s19": 33, "naics_s20": 0, "race1": 1783, "race2": 309, "race3": 11, "race4": 364, "race5": 4, "race6": 42, "ethnicity1": 1910, "ethnicity2": 603, "edu1": 276, "edu2": 410, "edu3": 559, "edu4": 564, "Shape_Length": 27726.289143467555, "Shape_Area": 47280419.302795604, "total_2021": 2470, "total_2022": 2513 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.777514108770291, 29.785929188233673 ], [ -95.777524108684077, 29.785488188531716 ], [ -95.777231108431394, 29.785487188562012 ], [ -95.777141108351572, 29.785490188194981 ], [ -95.776810108170565, 29.785499188373063 ], [ -95.776682107937305, 29.785505188349894 ], [ -95.776584107948679, 29.785509188424882 ], [ -95.776485108147583, 29.785508188526066 ], [ -95.77586510841293, 29.785500188469424 ], [ -95.774626107764433, 29.78548718857628 ], [ -95.773785107406397, 29.785499188639065 ], [ -95.769529106354398, 29.785478188388236 ], [ -95.767475106293332, 29.785459188442477 ], [ -95.766452106271984, 29.785473188537651 ], [ -95.766363105460385, 29.785474188707497 ], [ -95.762484105297034, 29.785529188912211 ], [ -95.761948104124727, 29.785515189036246 ], [ -95.758762104087921, 29.785448188820933 ], [ -95.758038103420219, 29.785434188648178 ], [ -95.757028103495102, 29.785397188657541 ], [ -95.756203103542362, 29.785399188895788 ], [ -95.755383103066208, 29.785393189146721 ], [ -95.754668102564679, 29.785375188948134 ], [ -95.753308102091907, 29.785361188696822 ], [ -95.75261110233474, 29.785377189253431 ], [ -95.752110101641989, 29.78539718919092 ], [ -95.751874102415073, 29.785397189153507 ], [ -95.751873102200221, 29.785539189339552 ], [ -95.751873102299228, 29.785553189156328 ], [ -95.751873101887654, 29.785592189338143 ], [ -95.751873102510032, 29.785631189544645 ], [ -95.751872102320391, 29.785755189703657 ], [ -95.751872102559261, 29.785824189627899 ], [ -95.75187110175645, 29.78597718944178 ], [ -95.751871102064442, 29.786069189635207 ], [ -95.7518661020179, 29.787382189420867 ], [ -95.751878102486174, 29.788255189501193 ], [ -95.751898102095751, 29.788591190132202 ], [ -95.751908102316349, 29.788928190361258 ], [ -95.751913101970487, 29.789325189724586 ], [ -95.751920102538179, 29.789974190545863 ], [ -95.751923102087559, 29.790267190293953 ], [ -95.751930101873867, 29.791251190381683 ], [ -95.751945102479283, 29.793445190721904 ], [ -95.751943102546903, 29.793591190918466 ], [ -95.751954102643282, 29.794902190923295 ], [ -95.751969102926594, 29.796481191913696 ], [ -95.751973102644769, 29.79728519195066 ], [ -95.751976102170019, 29.797784191858678 ], [ -95.751978102219923, 29.798225191799094 ], [ -95.751986102912753, 29.798786192024874 ], [ -95.751992103031611, 29.799675192537737 ], [ -95.752001103052848, 29.800441192045554 ], [ -95.752005102838041, 29.801167192018305 ], [ -95.752009102973673, 29.801998192203779 ], [ -95.752010102735269, 29.802102192367105 ], [ -95.752614102520226, 29.802102192155342 ], [ -95.75290610258682, 29.80210319256226 ], [ -95.753328102786256, 29.802091192881171 ], [ -95.753417102729983, 29.802089192824781 ], [ -95.753800103614154, 29.802086192599322 ], [ -95.754010103367449, 29.802084192302818 ], [ -95.754731103530673, 29.802079192864504 ], [ -95.755142103834771, 29.80207619238282 ], [ -95.756532104007505, 29.802066191998826 ], [ -95.756649103935089, 29.802066192199888 ], [ -95.756770103989822, 29.80207119272265 ], [ -95.756991104067438, 29.802061192678917 ], [ -95.757144104405342, 29.802058192203337 ], [ -95.759005104738691, 29.80204719255153 ], [ -95.759107104211893, 29.802044192465459 ], [ -95.759217104338205, 29.802048191971007 ], [ -95.759726104901347, 29.802043192487407 ], [ -95.759828104838249, 29.80204519208732 ], [ -95.759917104706304, 29.802037191964775 ], [ -95.76000910472824, 29.802036192397651 ], [ -95.760092104977304, 29.802030192561997 ], [ -95.760181104708735, 29.802035191936973 ], [ -95.76025310525354, 29.802029192430584 ], [ -95.76062410499901, 29.802027192325777 ], [ -95.761058105365237, 29.802001192339446 ], [ -95.761445105505032, 29.801997191957817 ], [ -95.761714104960888, 29.802018192466761 ], [ -95.762044105440694, 29.802024192152579 ], [ -95.763903105527049, 29.802017191943811 ], [ -95.764647105896103, 29.802014191771494 ], [ -95.76611010622743, 29.802004192253783 ], [ -95.768940107139372, 29.801985191901956 ], [ -95.769412106795386, 29.801982191810541 ], [ -95.771128107981838, 29.801970192281821 ], [ -95.773310108359581, 29.801956192203185 ], [ -95.77360010788361, 29.801951192118405 ], [ -95.773673108241695, 29.801950191643975 ], [ -95.774593108786092, 29.801943191903604 ], [ -95.774608108196219, 29.801943191752642 ], [ -95.774686108993421, 29.801942191895119 ], [ -95.774895108543518, 29.801945191911614 ], [ -95.775337109060871, 29.801939191966429 ], [ -95.775449108421242, 29.801938191731502 ], [ -95.775646109325109, 29.801938191574575 ], [ -95.775658108401885, 29.801868192101328 ], [ -95.775664108996651, 29.801833191486789 ], [ -95.775678109355951, 29.801756192021855 ], [ -95.775825109097767, 29.800911191819868 ], [ -95.775941108399877, 29.799776191021095 ], [ -95.776024108554566, 29.798962191190057 ], [ -95.77655710894814, 29.795072190043985 ], [ -95.776677108634374, 29.794133190542766 ], [ -95.776694109232409, 29.793997190054931 ], [ -95.776710108666691, 29.793871190285728 ], [ -95.776731108385093, 29.793706189930433 ], [ -95.776896108381578, 29.792411189757697 ], [ -95.777007108448004, 29.791611189340724 ], [ -95.777267108588816, 29.789727189069016 ], [ -95.777377108977646, 29.788939188728396 ], [ -95.777462108578746, 29.788246188827493 ], [ -95.777487108649808, 29.787456188804306 ], [ -95.777503108692869, 29.786548188973782 ], [ -95.777505108525958, 29.786446188249624 ], [ -95.777506108624422, 29.786376188391493 ], [ -95.777510108217001, 29.786172188733691 ], [ -95.777514108770291, 29.785929188233673 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 338, "Tract": "48201542600", "Area_SqMi": 1.690680959634022, "total_2009": 273, "total_2010": 415, "total_2011": 623, "total_2012": 879, "total_2013": 874, "total_2014": 776, "total_2015": 835, "total_2016": 845, "total_2017": 1071, "total_2018": 1384, "total_2019": 1590, "total_2020": 1775, "age1": 722, "age2": 967, "age3": 371, "earn1": 601, "earn2": 791, "earn3": 668, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 62, "naics_s06": 180, "naics_s07": 323, "naics_s08": 1, "naics_s09": 2, "naics_s10": 1, "naics_s11": 11, "naics_s12": 33, "naics_s13": 7, "naics_s14": 116, "naics_s15": 2, "naics_s16": 555, "naics_s17": 0, "naics_s18": 725, "naics_s19": 29, "naics_s20": 0, "race1": 1260, "race2": 408, "race3": 14, "race4": 339, "race5": 2, "race6": 37, "ethnicity1": 1423, "ethnicity2": 637, "edu1": 295, "edu2": 383, "edu3": 389, "edu4": 271, "Shape_Length": 27896.408632759143, "Shape_Area": 47133291.525214761, "total_2021": 1690, "total_2022": 2060 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.801843115131888, 29.801721191004951 ], [ -95.801828115435015, 29.798675189931643 ], [ -95.80182311584592, 29.797657190381489 ], [ -95.8018231150144, 29.79748019031658 ], [ -95.801817115366575, 29.796467190197497 ], [ -95.801816114977669, 29.796267189757604 ], [ -95.801802114771021, 29.795106189734351 ], [ -95.801798115156203, 29.794408189586367 ], [ -95.801797114909348, 29.79433518920386 ], [ -95.801792115631287, 29.793856189411645 ], [ -95.801782114991553, 29.792145188466833 ], [ -95.801777114669605, 29.791174188721339 ], [ -95.801773114637726, 29.790537188271347 ], [ -95.80176811489298, 29.789943188055886 ], [ -95.801752114685314, 29.788085187941618 ], [ -95.801739115009283, 29.786203187968233 ], [ -95.80174211441215, 29.786145187760226 ], [ -95.80175211459968, 29.785986187258914 ], [ -95.801754114952502, 29.785946187384273 ], [ -95.801754114962264, 29.785884187652687 ], [ -95.80175511505017, 29.785742187872636 ], [ -95.801758114669738, 29.785680187504635 ], [ -95.801763115132786, 29.785547187850757 ], [ -95.801421114282576, 29.785532187484399 ], [ -95.799196114086669, 29.785540188065539 ], [ -95.798759114033331, 29.78554218745894 ], [ -95.795968113023179, 29.785562187870259 ], [ -95.795357113173125, 29.785570187812688 ], [ -95.791275111923596, 29.785611187482488 ], [ -95.78801011150621, 29.785548187703064 ], [ -95.787671111175101, 29.785542188398036 ], [ -95.785940110902018, 29.785509188460907 ], [ -95.785154110614926, 29.78548618805759 ], [ -95.782879109874742, 29.785480188275599 ], [ -95.781089109005563, 29.785452188156231 ], [ -95.780483109314346, 29.785458187966707 ], [ -95.779345108776567, 29.785467188262363 ], [ -95.778664108649451, 29.785478188510623 ], [ -95.778239109241269, 29.785485188529623 ], [ -95.778020108746503, 29.785488188343333 ], [ -95.777836109178736, 29.785489187911761 ], [ -95.777524108684077, 29.785488188531716 ], [ -95.777514108770291, 29.785929188233673 ], [ -95.777510108217001, 29.786172188733691 ], [ -95.777506108624422, 29.786376188391493 ], [ -95.777505108525958, 29.786446188249624 ], [ -95.777503108692869, 29.786548188973782 ], [ -95.777487108649808, 29.787456188804306 ], [ -95.777462108578746, 29.788246188827493 ], [ -95.777377108977646, 29.788939188728396 ], [ -95.777267108588816, 29.789727189069016 ], [ -95.777007108448004, 29.791611189340724 ], [ -95.776896108381578, 29.792411189757697 ], [ -95.776731108385093, 29.793706189930433 ], [ -95.776710108666691, 29.793871190285728 ], [ -95.776694109232409, 29.793997190054931 ], [ -95.776677108634374, 29.794133190542766 ], [ -95.77655710894814, 29.795072190043985 ], [ -95.776024108554566, 29.798962191190057 ], [ -95.775941108399877, 29.799776191021095 ], [ -95.775825109097767, 29.800911191819868 ], [ -95.775678109355951, 29.801756192021855 ], [ -95.775664108996651, 29.801833191486789 ], [ -95.775658108401885, 29.801868192101328 ], [ -95.775646109325109, 29.801938191574575 ], [ -95.775921108913522, 29.801937191404487 ], [ -95.776039108707224, 29.801930192134186 ], [ -95.776073109055631, 29.801936191407105 ], [ -95.776595109450682, 29.80192919135914 ], [ -95.777580109424449, 29.801927191710423 ], [ -95.778053109417641, 29.801922191498623 ], [ -95.778608109424212, 29.801909191240622 ], [ -95.778993110099407, 29.801906191516142 ], [ -95.779166109602684, 29.801905191631299 ], [ -95.780484110219504, 29.801894191634531 ], [ -95.784067110984736, 29.801870191896576 ], [ -95.785596111548486, 29.801856191068694 ], [ -95.787112112149501, 29.801842191598762 ], [ -95.789174112082421, 29.801823191029367 ], [ -95.792959113565971, 29.801784190772757 ], [ -95.793215113071398, 29.801789190934176 ], [ -95.797463114454715, 29.801760191153573 ], [ -95.799116114579959, 29.801745190479796 ], [ -95.799411115419389, 29.80174519102988 ], [ -95.799499114558316, 29.801743190677477 ], [ -95.800998115197586, 29.801726190645358 ], [ -95.801045115478203, 29.80172619119443 ], [ -95.801404115469538, 29.801728191041725 ], [ -95.801639115034249, 29.801721190818228 ], [ -95.801738115347689, 29.801720190653757 ], [ -95.801843115131888, 29.801721191004951 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 339, "Tract": "48201542700", "Area_SqMi": 1.7978020498574092, "total_2009": 2069, "total_2010": 2000, "total_2011": 2016, "total_2012": 2090, "total_2013": 2131, "total_2014": 2154, "total_2015": 2469, "total_2016": 2492, "total_2017": 2684, "total_2018": 2641, "total_2019": 2716, "total_2020": 3004, "age1": 677, "age2": 1771, "age3": 684, "earn1": 500, "earn2": 870, "earn3": 1762, "naics_s01": 6, "naics_s02": 0, "naics_s03": 100, "naics_s04": 269, "naics_s05": 169, "naics_s06": 226, "naics_s07": 291, "naics_s08": 19, "naics_s09": 26, "naics_s10": 74, "naics_s11": 38, "naics_s12": 159, "naics_s13": 15, "naics_s14": 626, "naics_s15": 224, "naics_s16": 295, "naics_s17": 69, "naics_s18": 71, "naics_s19": 78, "naics_s20": 377, "race1": 2561, "race2": 385, "race3": 26, "race4": 96, "race5": 3, "race6": 61, "ethnicity1": 2238, "ethnicity2": 894, "edu1": 426, "edu2": 647, "edu3": 819, "edu4": 563, "Shape_Length": 28872.904662342407, "Shape_Area": 50119644.181064554, "total_2021": 2854, "total_2022": 3132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.830171122899301, 29.800423189769369 ], [ -95.830203122275122, 29.800423189145789 ], [ -95.829494122256548, 29.798546188850807 ], [ -95.829339122138066, 29.798135188803045 ], [ -95.82904512201516, 29.797286189235177 ], [ -95.828754122118994, 29.796445188609436 ], [ -95.828464122376431, 29.795605189063846 ], [ -95.82818012184535, 29.794784188498845 ], [ -95.827991121935426, 29.794246188283321 ], [ -95.827337121770697, 29.792355187901119 ], [ -95.827158121343317, 29.791862187545828 ], [ -95.826924121552366, 29.791222188055482 ], [ -95.826793121193532, 29.790865187616678 ], [ -95.826455121243896, 29.789937187799275 ], [ -95.825982121492956, 29.788621186897622 ], [ -95.825631120728488, 29.788424187455931 ], [ -95.825146120584691, 29.788151186873296 ], [ -95.824438120209933, 29.787757187443901 ], [ -95.823631119968496, 29.78730318728709 ], [ -95.823306120228239, 29.787123187155679 ], [ -95.822196119897114, 29.786502187121421 ], [ -95.822016120004847, 29.786398186928704 ], [ -95.821364119962695, 29.786033186892247 ], [ -95.820833119180477, 29.785734186539212 ], [ -95.820739119864555, 29.785682187229035 ], [ -95.819903119208348, 29.785215186477163 ], [ -95.81264611751385, 29.781119186616738 ], [ -95.812388117379811, 29.780973186484207 ], [ -95.810577116762403, 29.78274718702 ], [ -95.809888116453394, 29.783384187071078 ], [ -95.809469117151792, 29.783774186945788 ], [ -95.808885116887339, 29.784194187353194 ], [ -95.808507116730979, 29.784412187174759 ], [ -95.807990115851496, 29.784696187147048 ], [ -95.807825115927358, 29.784766187425699 ], [ -95.807639116528804, 29.784845186827628 ], [ -95.807498116255303, 29.784905187502812 ], [ -95.806952116385418, 29.785113187629388 ], [ -95.806023115538821, 29.785357187777382 ], [ -95.805528115598946, 29.785450187199373 ], [ -95.804903116029649, 29.785512187875213 ], [ -95.801763115132786, 29.785547187850757 ], [ -95.801758114669738, 29.785680187504635 ], [ -95.80175511505017, 29.785742187872636 ], [ -95.801754114962264, 29.785884187652687 ], [ -95.801754114952502, 29.785946187384273 ], [ -95.80175211459968, 29.785986187258914 ], [ -95.80174211441215, 29.786145187760226 ], [ -95.801739115009283, 29.786203187968233 ], [ -95.801752114685314, 29.788085187941618 ], [ -95.80176811489298, 29.789943188055886 ], [ -95.801773114637726, 29.790537188271347 ], [ -95.801777114669605, 29.791174188721339 ], [ -95.801782114991553, 29.792145188466833 ], [ -95.801792115631287, 29.793856189411645 ], [ -95.801797114909348, 29.79433518920386 ], [ -95.801798115156203, 29.794408189586367 ], [ -95.801802114771021, 29.795106189734351 ], [ -95.801816114977669, 29.796267189757604 ], [ -95.801817115366575, 29.796467190197497 ], [ -95.8018231150144, 29.79748019031658 ], [ -95.80182311584592, 29.797657190381489 ], [ -95.801828115435015, 29.798675189931643 ], [ -95.801843115131888, 29.801721191004951 ], [ -95.803008115406115, 29.801713190850148 ], [ -95.804233116103404, 29.801706190299896 ], [ -95.805642116591429, 29.801691190712486 ], [ -95.80799211736641, 29.801674190648708 ], [ -95.809010117053873, 29.801659190423802 ], [ -95.809101117311471, 29.801655190160314 ], [ -95.810988117975313, 29.80158019085053 ], [ -95.813523118930561, 29.801573190583724 ], [ -95.814347118836764, 29.801592190542717 ], [ -95.815450119518943, 29.801582190272669 ], [ -95.816543119545173, 29.801574189916714 ], [ -95.817492119950003, 29.801547190505772 ], [ -95.818417119822982, 29.801557189972193 ], [ -95.819893120561417, 29.801593190072776 ], [ -95.820780120448447, 29.80158118994089 ], [ -95.823720121612155, 29.801515189888306 ], [ -95.82496712156626, 29.801511190088398 ], [ -95.824972121899251, 29.800442189369186 ], [ -95.826473121926924, 29.800435190125988 ], [ -95.828166121754833, 29.800444189266198 ], [ -95.829098122685167, 29.800449189610926 ], [ -95.829496122169004, 29.800439189850778 ], [ -95.8296521226316, 29.800435189409665 ], [ -95.830171122899301, 29.800423189769369 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 340, "Tract": "48201533100", "Area_SqMi": 1.3543217764966777, "total_2009": 31, "total_2010": 258, "total_2011": 262, "total_2012": 162, "total_2013": 137, "total_2014": 63, "total_2015": 35, "total_2016": 36, "total_2017": 37, "total_2018": 75, "total_2019": 94, "total_2020": 103, "age1": 24, "age2": 51, "age3": 20, "earn1": 13, "earn2": 38, "earn3": 44, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 1, "naics_s06": 46, "naics_s07": 22, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 12, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 65, "race2": 14, "race3": 1, "race4": 13, "race5": 0, "race6": 2, "ethnicity1": 48, "ethnicity2": 47, "edu1": 21, "edu2": 12, "edu3": 23, "edu4": 15, "Shape_Length": 29378.4906186997, "Shape_Area": 37756173.18384102, "total_2021": 100, "total_2022": 95 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.470457033658676, 29.871015216166182 ], [ -95.470470033580483, 29.870653215932876 ], [ -95.470457033899962, 29.870537215762472 ], [ -95.470426034041978, 29.870427216423394 ], [ -95.470346034265773, 29.870229216453872 ], [ -95.470274034245577, 29.870053215995551 ], [ -95.469794033269679, 29.869146216021321 ], [ -95.469345033199559, 29.868260215852562 ], [ -95.468737033415877, 29.86844821539967 ], [ -95.468365033879664, 29.86855221568965 ], [ -95.46712903314824, 29.868967215615861 ], [ -95.465648032513016, 29.869453216425523 ], [ -95.464588032459858, 29.86980821582069 ], [ -95.463835032554741, 29.870049215964073 ], [ -95.462418031907546, 29.870503216643989 ], [ -95.462222031700563, 29.87052621659085 ], [ -95.461253031362006, 29.87064221622709 ], [ -95.459605031505703, 29.870646216333999 ], [ -95.459312030870478, 29.870650216260103 ], [ -95.458989031019584, 29.870655216270052 ], [ -95.455182029619991, 29.870647216724453 ], [ -95.454243030016769, 29.870642216485059 ], [ -95.453764030107394, 29.870666217230973 ], [ -95.453300029592526, 29.870655216712411 ], [ -95.452832029217134, 29.870659216827601 ], [ -95.452385029106679, 29.870672216471991 ], [ -95.451889029692438, 29.870676216598451 ], [ -95.451433029071993, 29.870680216919585 ], [ -95.449140028091165, 29.870725216615202 ], [ -95.447613027921548, 29.870738216943074 ], [ -95.446457027391574, 29.870741216614217 ], [ -95.445226027522381, 29.870744217327832 ], [ -95.444379027742713, 29.870750216806783 ], [ -95.443757027013092, 29.870751217181809 ], [ -95.443202027389162, 29.870754216830427 ], [ -95.442830026793487, 29.870761217535964 ], [ -95.442268027259161, 29.870765217359416 ], [ -95.441770026308447, 29.870767217078686 ], [ -95.441309026084284, 29.870769217182051 ], [ -95.440827026297526, 29.87076921705988 ], [ -95.440345025961832, 29.870771217203217 ], [ -95.43986902660987, 29.870771217614291 ], [ -95.43938702617676, 29.870777217435794 ], [ -95.439180026203687, 29.870779217392197 ], [ -95.438918025931741, 29.870782217534629 ], [ -95.43842102613614, 29.870777217141512 ], [ -95.436627025753097, 29.870770217782212 ], [ -95.438292025984296, 29.872338217371297 ], [ -95.438552026468557, 29.872586217287814 ], [ -95.438939026419206, 29.87293021752793 ], [ -95.439508025851012, 29.87347721817051 ], [ -95.439934025909309, 29.873855217633384 ], [ -95.440354026738362, 29.874235218200969 ], [ -95.440505026614559, 29.874392217861441 ], [ -95.442688027416196, 29.876562218436543 ], [ -95.443867027044519, 29.877778218509892 ], [ -95.44401402784861, 29.877911218188711 ], [ -95.444902027561696, 29.878810218976032 ], [ -95.445187027494939, 29.879102218905356 ], [ -95.446036028191713, 29.879921218883119 ], [ -95.446831027995714, 29.880765219451405 ], [ -95.446808028397086, 29.880766218777616 ], [ -95.446859028794222, 29.880811219090816 ], [ -95.448468029067456, 29.882417219705175 ], [ -95.449506029516655, 29.88352821987371 ], [ -95.450366029404762, 29.884380220099558 ], [ -95.450671029666466, 29.884695219392807 ], [ -95.451791030055546, 29.884144219913502 ], [ -95.453225030520031, 29.883700219698095 ], [ -95.454376030161015, 29.883356219718944 ], [ -95.455103031003588, 29.883212219191847 ], [ -95.455668030734017, 29.883120219368358 ], [ -95.456430031191687, 29.883034219391551 ], [ -95.456744031427561, 29.88305521947677 ], [ -95.461856032566843, 29.882989219180327 ], [ -95.463171033087519, 29.882964219190804 ], [ -95.463646033000572, 29.882976218611258 ], [ -95.463801033197939, 29.8829782190634 ], [ -95.464035032803352, 29.882980219112891 ], [ -95.464421033026838, 29.882984218868806 ], [ -95.464840032967629, 29.883026218653438 ], [ -95.465306033044811, 29.883087218778307 ], [ -95.46543303345554, 29.883107218753302 ], [ -95.466153032975555, 29.883217218995561 ], [ -95.466917033940703, 29.883266218520944 ], [ -95.467237033965219, 29.883292218851125 ], [ -95.467648033597342, 29.88329621858707 ], [ -95.467598034225546, 29.883149219078263 ], [ -95.467566034285895, 29.883083218922504 ], [ -95.467598034070846, 29.882638218907015 ], [ -95.46769203375824, 29.882099218728413 ], [ -95.467724034214655, 29.881456218307012 ], [ -95.467768034148378, 29.881297218418204 ], [ -95.467869034047013, 29.881071218256537 ], [ -95.468176033906758, 29.880695217929212 ], [ -95.468215033910127, 29.88064821849796 ], [ -95.468323034038846, 29.880488217944375 ], [ -95.468534034166652, 29.88022321823588 ], [ -95.468657033700595, 29.88007021845149 ], [ -95.468934033746393, 29.879785217779595 ], [ -95.468972033753488, 29.879642218102415 ], [ -95.46872603418899, 29.879306218029374 ], [ -95.468600034115454, 29.879114217819144 ], [ -95.468322033580364, 29.878586217700448 ], [ -95.46827803364144, 29.877888218094888 ], [ -95.468234034053012, 29.87768521778219 ], [ -95.467691033177829, 29.876959217780083 ], [ -95.467363033699215, 29.87673921740879 ], [ -95.467303033876249, 29.876710217902669 ], [ -95.46700903321792, 29.876569217634945 ], [ -95.46673803369174, 29.876371217763786 ], [ -95.466541033074535, 29.876175217811713 ], [ -95.466479032831728, 29.876113217165727 ], [ -95.466347033347233, 29.875959217063894 ], [ -95.466170033123831, 29.87580521746359 ], [ -95.466113033563474, 29.875618217354234 ], [ -95.466126033365299, 29.875403217159192 ], [ -95.466246032839507, 29.875134216918219 ], [ -95.466321033649692, 29.875008217357781 ], [ -95.466541033262232, 29.874784216825724 ], [ -95.466554033010127, 29.874772216898837 ], [ -95.466620033177051, 29.874710217256418 ], [ -95.466762033231902, 29.874579217016766 ], [ -95.466888033722469, 29.874502217396653 ], [ -95.46740603299186, 29.874249216992936 ], [ -95.467511033576912, 29.874190217020903 ], [ -95.467563033863172, 29.874161216974237 ], [ -95.46787203358123, 29.874023217380586 ], [ -95.468446033238905, 29.873787216950717 ], [ -95.468503033695555, 29.873755217015407 ], [ -95.468711034100622, 29.873638216901419 ], [ -95.468951033555513, 29.873440217045225 ], [ -95.468988033577702, 29.873391216883274 ], [ -95.468988034007452, 29.873364217041889 ], [ -95.46908303338239, 29.873111216741332 ], [ -95.469127033842739, 29.87305021642721 ], [ -95.469316034087811, 29.87282521684644 ], [ -95.469594033856524, 29.872544217046993 ], [ -95.4697640340178, 29.872352216395768 ], [ -95.469953034033338, 29.872115216598836 ], [ -95.47024303386479, 29.871670216012511 ], [ -95.470375034026191, 29.8714002164341 ], [ -95.470420033645013, 29.871213216467101 ], [ -95.470457033658676, 29.871015216166182 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 341, "Tract": "48201533200", "Area_SqMi": 1.0340860924929207, "total_2009": 298, "total_2010": 44, "total_2011": 56, "total_2012": 61, "total_2013": 67, "total_2014": 74, "total_2015": 62, "total_2016": 56, "total_2017": 63, "total_2018": 65, "total_2019": 67, "total_2020": 64, "age1": 7, "age2": 27, "age3": 12, "earn1": 10, "earn2": 20, "earn3": 16, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 3, "naics_s06": 0, "naics_s07": 19, "naics_s08": 3, "naics_s09": 0, "naics_s10": 6, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 29, "race2": 6, "race3": 1, "race4": 10, "race5": 0, "race6": 0, "ethnicity1": 29, "ethnicity2": 17, "edu1": 16, "edu2": 6, "edu3": 10, "edu4": 7, "Shape_Length": 28726.801955172265, "Shape_Area": 28828550.402667128, "total_2021": 54, "total_2022": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.469345033199559, 29.868260215852562 ], [ -95.469201033222859, 29.86797621547478 ], [ -95.469018033375406, 29.867695215791876 ], [ -95.468892033421582, 29.867536215275958 ], [ -95.46878403315047, 29.867426215712996 ], [ -95.468620033891781, 29.867300215181448 ], [ -95.468052033507277, 29.867047215375194 ], [ -95.467864032942614, 29.866973215181535 ], [ -95.467327033382972, 29.866761215598832 ], [ -95.467119033139781, 29.866618215251421 ], [ -95.466961033371135, 29.866448215552399 ], [ -95.466835033193476, 29.866151215684784 ], [ -95.466797032909213, 29.865997215179146 ], [ -95.466797032449591, 29.865871215488671 ], [ -95.466822033277467, 29.86568921534446 ], [ -95.466916032832884, 29.865277215636354 ], [ -95.466986033290482, 29.864881215326943 ], [ -95.466979032518907, 29.864397215431076 ], [ -95.466897032712097, 29.863914215077369 ], [ -95.466840033233098, 29.863446214753857 ], [ -95.466835032609126, 29.863327214829368 ], [ -95.46627503242614, 29.863352214490181 ], [ -95.464580032077606, 29.863388214582482 ], [ -95.462944031889293, 29.863437215022163 ], [ -95.462064031417427, 29.863440214923383 ], [ -95.461562031645656, 29.863453215267135 ], [ -95.460444030702618, 29.863456215497287 ], [ -95.459500030621953, 29.8634542152225 ], [ -95.459263030399086, 29.86345521471776 ], [ -95.458841030230516, 29.863457215073304 ], [ -95.455657030364051, 29.863467215411156 ], [ -95.453830029945337, 29.863462215358034 ], [ -95.453318029700043, 29.863422215672632 ], [ -95.452824029496682, 29.863357215401237 ], [ -95.452102028782662, 29.863246214911847 ], [ -95.451868028583576, 29.863218215432838 ], [ -95.451548028463066, 29.863180215003517 ], [ -95.450492029042806, 29.863177215683162 ], [ -95.449099028668485, 29.863149215225466 ], [ -95.448862028592913, 29.86318221498577 ], [ -95.447870027670817, 29.863363215037808 ], [ -95.447549027870537, 29.863417215175737 ], [ -95.447231028105875, 29.863463215559293 ], [ -95.446969027734127, 29.863475215606769 ], [ -95.446736027665352, 29.863481215511236 ], [ -95.446410027050234, 29.863483215889474 ], [ -95.446303027938228, 29.863483215425216 ], [ -95.444683027459661, 29.86348521569408 ], [ -95.443890026803047, 29.863487216090267 ], [ -95.443826027274426, 29.863488215508283 ], [ -95.443778026616357, 29.86349321524337 ], [ -95.443106026503244, 29.863490215885715 ], [ -95.442314026145226, 29.863493215546733 ], [ -95.441528026583114, 29.863499215694411 ], [ -95.440601025860715, 29.863500216020331 ], [ -95.440397025788513, 29.86350021562334 ], [ -95.439693026246246, 29.863499215819857 ], [ -95.439077025150326, 29.863506216010617 ], [ -95.437826025208636, 29.863518215883825 ], [ -95.436709025036791, 29.863527216195923 ], [ -95.436543024832005, 29.863529215884096 ], [ -95.435425024950248, 29.863539216069455 ], [ -95.435239024875415, 29.863543216326992 ], [ -95.433827024837981, 29.863555215611967 ], [ -95.432774023886211, 29.863554216443209 ], [ -95.431049024107523, 29.863575216083685 ], [ -95.429542023421831, 29.863588216090157 ], [ -95.429424022860488, 29.863589216331388 ], [ -95.429202022838481, 29.863591216437452 ], [ -95.428177023195119, 29.863594215776235 ], [ -95.429240023156765, 29.864481216702984 ], [ -95.429458022842965, 29.864674216782912 ], [ -95.430640023211026, 29.865673216140369 ], [ -95.431158024124144, 29.86611021646172 ], [ -95.431856023863588, 29.866704216576597 ], [ -95.432459024207546, 29.86718221659169 ], [ -95.432735024305046, 29.867401217181946 ], [ -95.434356024209265, 29.868658217428358 ], [ -95.435022024589458, 29.869273216890921 ], [ -95.435380025278818, 29.86960421727732 ], [ -95.435864025284729, 29.870055217357166 ], [ -95.436627025753097, 29.870770217782212 ], [ -95.43842102613614, 29.870777217141512 ], [ -95.438918025931741, 29.870782217534629 ], [ -95.439180026203687, 29.870779217392197 ], [ -95.43938702617676, 29.870777217435794 ], [ -95.43986902660987, 29.870771217614291 ], [ -95.440345025961832, 29.870771217203217 ], [ -95.440827026297526, 29.87076921705988 ], [ -95.441309026084284, 29.870769217182051 ], [ -95.441770026308447, 29.870767217078686 ], [ -95.442268027259161, 29.870765217359416 ], [ -95.442830026793487, 29.870761217535964 ], [ -95.443202027389162, 29.870754216830427 ], [ -95.443757027013092, 29.870751217181809 ], [ -95.444379027742713, 29.870750216806783 ], [ -95.445226027522381, 29.870744217327832 ], [ -95.446457027391574, 29.870741216614217 ], [ -95.447613027921548, 29.870738216943074 ], [ -95.449140028091165, 29.870725216615202 ], [ -95.451433029071993, 29.870680216919585 ], [ -95.451889029692438, 29.870676216598451 ], [ -95.452385029106679, 29.870672216471991 ], [ -95.452832029217134, 29.870659216827601 ], [ -95.453300029592526, 29.870655216712411 ], [ -95.453764030107394, 29.870666217230973 ], [ -95.454243030016769, 29.870642216485059 ], [ -95.455182029619991, 29.870647216724453 ], [ -95.458989031019584, 29.870655216270052 ], [ -95.459312030870478, 29.870650216260103 ], [ -95.459605031505703, 29.870646216333999 ], [ -95.461253031362006, 29.87064221622709 ], [ -95.462222031700563, 29.87052621659085 ], [ -95.462418031907546, 29.870503216643989 ], [ -95.463835032554741, 29.870049215964073 ], [ -95.464588032459858, 29.86980821582069 ], [ -95.465648032513016, 29.869453216425523 ], [ -95.46712903314824, 29.868967215615861 ], [ -95.468365033879664, 29.86855221568965 ], [ -95.468737033415877, 29.86844821539967 ], [ -95.469345033199559, 29.868260215852562 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 342, "Tract": "48201533500", "Area_SqMi": 1.0317088582387572, "total_2009": 290, "total_2010": 251, "total_2011": 340, "total_2012": 686, "total_2013": 736, "total_2014": 322, "total_2015": 437, "total_2016": 960, "total_2017": 981, "total_2018": 1145, "total_2019": 1373, "total_2020": 1459, "age1": 261, "age2": 905, "age3": 241, "earn1": 73, "earn2": 175, "earn3": 1159, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 58, "naics_s06": 412, "naics_s07": 291, "naics_s08": 449, "naics_s09": 0, "naics_s10": 70, "naics_s11": 0, "naics_s12": 3, "naics_s13": 49, "naics_s14": 0, "naics_s15": 0, "naics_s16": 12, "naics_s17": 0, "naics_s18": 26, "naics_s19": 7, "naics_s20": 0, "race1": 1111, "race2": 139, "race3": 14, "race4": 117, "race5": 2, "race6": 24, "ethnicity1": 933, "ethnicity2": 474, "edu1": 231, "edu2": 269, "edu3": 321, "edu4": 325, "Shape_Length": 27348.679922670828, "Shape_Area": 28762277.180338137, "total_2021": 1253, "total_2022": 1407 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430174025231722, 29.899127223781225 ], [ -95.430066024864132, 29.898987223535322 ], [ -95.42982402455992, 29.898687223156944 ], [ -95.42931902436537, 29.898031223479094 ], [ -95.429216025073941, 29.89792422333845 ], [ -95.428507024064146, 29.897030223467016 ], [ -95.426122024124112, 29.893955222932767 ], [ -95.425705023755327, 29.89339922258749 ], [ -95.423878023300517, 29.891085222340479 ], [ -95.423097023219128, 29.890068222009095 ], [ -95.42176202244903, 29.888311221490277 ], [ -95.421182021768942, 29.887589220945941 ], [ -95.420734021834761, 29.887045220905108 ], [ -95.420099021975545, 29.886204221143387 ], [ -95.419862021548639, 29.885891221020234 ], [ -95.419785021642696, 29.885788220829337 ], [ -95.419589021469221, 29.885530220533422 ], [ -95.419223021824976, 29.885045221090277 ], [ -95.41913202137728, 29.884930221038207 ], [ -95.418828021062524, 29.88454322085699 ], [ -95.418468021806802, 29.884093220364704 ], [ -95.418324021403862, 29.883911220349564 ], [ -95.41750002143219, 29.882880220593279 ], [ -95.417335021072077, 29.882663220854283 ], [ -95.417183021420257, 29.882465220754057 ], [ -95.415746020873399, 29.880583219698501 ], [ -95.414796019740194, 29.879342220274204 ], [ -95.413735019572869, 29.877900219981381 ], [ -95.413305019695557, 29.877317219627191 ], [ -95.413053019248281, 29.876975219226797 ], [ -95.412464019605196, 29.876237219716334 ], [ -95.412248018880874, 29.875943219659284 ], [ -95.411942019194726, 29.875562218948737 ], [ -95.411617019623094, 29.875180219087483 ], [ -95.41102501857111, 29.874420218951478 ], [ -95.410833019364787, 29.874252218676766 ], [ -95.410238018807647, 29.873604218832906 ], [ -95.411442018710076, 29.875671219297637 ], [ -95.411569018675635, 29.875948219393727 ], [ -95.411595019034095, 29.876005219740442 ], [ -95.411615019576942, 29.876049219748626 ], [ -95.411625019344896, 29.876070219628826 ], [ -95.411642019490074, 29.876107218947094 ], [ -95.411810019198469, 29.876546219185915 ], [ -95.411895019518752, 29.876819219715696 ], [ -95.411908018874257, 29.876862219141092 ], [ -95.411979019797059, 29.877215219389463 ], [ -95.412093018980329, 29.877986219695661 ], [ -95.412117019747512, 29.878565220116258 ], [ -95.412118019636708, 29.879723220067405 ], [ -95.412119020100391, 29.882203220324627 ], [ -95.412159019569557, 29.884033221325275 ], [ -95.412195019759579, 29.885651220930445 ], [ -95.412206020044053, 29.886143221366957 ], [ -95.412223019530103, 29.886928221661343 ], [ -95.412243019620576, 29.888838222297558 ], [ -95.412245020393343, 29.889063221721404 ], [ -95.412246020444044, 29.889258221921857 ], [ -95.412246019596097, 29.889334221721192 ], [ -95.412313020548652, 29.891416222800029 ], [ -95.412331020610921, 29.893938223026392 ], [ -95.412341020349245, 29.895279223002479 ], [ -95.412390020642562, 29.895736223366011 ], [ -95.41243102026894, 29.898041223461135 ], [ -95.41243302010075, 29.89815922393759 ], [ -95.412436020813914, 29.898310223833093 ], [ -95.4124390205764, 29.898481223921191 ], [ -95.412460020113784, 29.89965122427272 ], [ -95.412493020543167, 29.899661223907785 ], [ -95.412562020540932, 29.89969322421528 ], [ -95.412658020822988, 29.899738223734992 ], [ -95.412671020712665, 29.900336224580755 ], [ -95.412763020410978, 29.900335224332466 ], [ -95.413101020769744, 29.900331224161214 ], [ -95.413157020713697, 29.90042122457146 ], [ -95.413193021131391, 29.900480224302594 ], [ -95.413401021156531, 29.9006502247241 ], [ -95.413641020582858, 29.900738224237237 ], [ -95.413799021061678, 29.90092022474575 ], [ -95.413874020831443, 29.901079224119627 ], [ -95.413937021246738, 29.901244224696665 ], [ -95.414045021217092, 29.901448223985032 ], [ -95.414234021270772, 29.901646224396437 ], [ -95.414745021417872, 29.902036224592585 ], [ -95.415056021610326, 29.902148224393734 ], [ -95.415294021165067, 29.902234224916558 ], [ -95.415565021463479, 29.902295224883893 ], [ -95.41611402150896, 29.902377224688891 ], [ -95.416607021938873, 29.902359224269187 ], [ -95.417491021584382, 29.902327224780251 ], [ -95.417774022162263, 29.902317224904998 ], [ -95.418442022, 29.902319224774196 ], [ -95.419368022473208, 29.902321224384313 ], [ -95.420235022611678, 29.902323224144123 ], [ -95.420264022740966, 29.902322224138743 ], [ -95.420885022964697, 29.902301223958521 ], [ -95.422147022732545, 29.902257224526288 ], [ -95.422481023337824, 29.902295224401751 ], [ -95.422683022796036, 29.902255224319045 ], [ -95.422816023212476, 29.902229224583145 ], [ -95.4232890228987, 29.901982224541253 ], [ -95.423977023911917, 29.901724224515981 ], [ -95.424728024085553, 29.901509224005203 ], [ -95.425384024234404, 29.901125223950899 ], [ -95.425415023572384, 29.901110224191019 ], [ -95.425662024106728, 29.900987224360239 ], [ -95.426154023900096, 29.900778224210651 ], [ -95.426526023621349, 29.900718223772149 ], [ -95.426999024092495, 29.900701223375854 ], [ -95.427630024606358, 29.90070122410658 ], [ -95.427737024885531, 29.900680223782068 ], [ -95.427883024226176, 29.900608224024186 ], [ -95.428173024638781, 29.90037722380934 ], [ -95.428350024909349, 29.900141224127658 ], [ -95.428457024896645, 29.900033223838978 ], [ -95.42851702490195, 29.900011223756572 ], [ -95.428558024627733, 29.900003223862321 ], [ -95.428804024305776, 29.899838223778211 ], [ -95.428924024490172, 29.899679223888469 ], [ -95.429183024818698, 29.899470223665912 ], [ -95.429410024560752, 29.899333223262808 ], [ -95.429694024362576, 29.899195223532367 ], [ -95.429927025274552, 29.899195223711491 ], [ -95.430174025231722, 29.899127223781225 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 343, "Tract": "48201533600", "Area_SqMi": 1.3638553227891939, "total_2009": 967, "total_2010": 962, "total_2011": 1004, "total_2012": 915, "total_2013": 845, "total_2014": 876, "total_2015": 1027, "total_2016": 1144, "total_2017": 1188, "total_2018": 1328, "total_2019": 1188, "total_2020": 1058, "age1": 341, "age2": 421, "age3": 208, "earn1": 324, "earn2": 365, "earn3": 281, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 78, "naics_s05": 87, "naics_s06": 139, "naics_s07": 302, "naics_s08": 0, "naics_s09": 0, "naics_s10": 18, "naics_s11": 20, "naics_s12": 27, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 43, "naics_s17": 0, "naics_s18": 218, "naics_s19": 23, "naics_s20": 0, "race1": 709, "race2": 168, "race3": 10, "race4": 68, "race5": 2, "race6": 13, "ethnicity1": 500, "ethnicity2": 470, "edu1": 179, "edu2": 163, "edu3": 161, "edu4": 126, "Shape_Length": 28259.86337991081, "Shape_Area": 38021952.137648813, "total_2021": 959, "total_2022": 970 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.442001028916181, 29.914575226275659 ], [ -95.442167028788958, 29.914593225745843 ], [ -95.441678028124528, 29.913963226439087 ], [ -95.441149028874293, 29.913314225955787 ], [ -95.44085702845031, 29.912933226058207 ], [ -95.440415027949996, 29.912341225656458 ], [ -95.439936027889004, 29.911729225891492 ], [ -95.439391027530505, 29.911023225540909 ], [ -95.438897028119385, 29.910383225340961 ], [ -95.43740602731755, 29.908484224999214 ], [ -95.437292027631216, 29.908337225054591 ], [ -95.436910026703615, 29.907843225360153 ], [ -95.436835026892311, 29.907735225138651 ], [ -95.436538026731228, 29.907356225246833 ], [ -95.43618302639031, 29.906909225080483 ], [ -95.43586902702198, 29.906491225130832 ], [ -95.435173026365263, 29.905611224554249 ], [ -95.434976026841724, 29.905353224782399 ], [ -95.434612025926626, 29.904878224479692 ], [ -95.434588026564498, 29.904853224444608 ], [ -95.434510026027752, 29.904769224647193 ], [ -95.434482026444456, 29.90472422474361 ], [ -95.434285026325412, 29.904476224714355 ], [ -95.434238026115921, 29.904433224618213 ], [ -95.434025026518157, 29.904153224743059 ], [ -95.433808026449256, 29.903870224384814 ], [ -95.432966025758574, 29.902804223938812 ], [ -95.432467025228647, 29.902164223958025 ], [ -95.43237902607089, 29.902059223905429 ], [ -95.432145025967216, 29.901748224310033 ], [ -95.43205802588362, 29.90163122416045 ], [ -95.431907025731903, 29.901423223947084 ], [ -95.431826025856338, 29.901324224222002 ], [ -95.431754025036213, 29.901222223356896 ], [ -95.43126602578117, 29.900597223318798 ], [ -95.430819024921291, 29.899982223240819 ], [ -95.430621025246694, 29.899705223694564 ], [ -95.430376025134137, 29.899379223398686 ], [ -95.430317025180457, 29.899312223349504 ], [ -95.430174025231722, 29.899127223781225 ], [ -95.429927025274552, 29.899195223711491 ], [ -95.429694024362576, 29.899195223532367 ], [ -95.429410024560752, 29.899333223262808 ], [ -95.429183024818698, 29.899470223665912 ], [ -95.428924024490172, 29.899679223888469 ], [ -95.428804024305776, 29.899838223778211 ], [ -95.428558024627733, 29.900003223862321 ], [ -95.42851702490195, 29.900011223756572 ], [ -95.428457024896645, 29.900033223838978 ], [ -95.428350024909349, 29.900141224127658 ], [ -95.428173024638781, 29.90037722380934 ], [ -95.427883024226176, 29.900608224024186 ], [ -95.427737024885531, 29.900680223782068 ], [ -95.427630024606358, 29.90070122410658 ], [ -95.426999024092495, 29.900701223375854 ], [ -95.426526023621349, 29.900718223772149 ], [ -95.426154023900096, 29.900778224210651 ], [ -95.425662024106728, 29.900987224360239 ], [ -95.425415023572384, 29.901110224191019 ], [ -95.425384024234404, 29.901125223950899 ], [ -95.424728024085553, 29.901509224005203 ], [ -95.423977023911917, 29.901724224515981 ], [ -95.4232890228987, 29.901982224541253 ], [ -95.422816023212476, 29.902229224583145 ], [ -95.422683022796036, 29.902255224319045 ], [ -95.422481023337824, 29.902295224401751 ], [ -95.422147022732545, 29.902257224526288 ], [ -95.420885022964697, 29.902301223958521 ], [ -95.420264022740966, 29.902322224138743 ], [ -95.420235022611678, 29.902323224144123 ], [ -95.419368022473208, 29.902321224384313 ], [ -95.418442022, 29.902319224774196 ], [ -95.417774022162263, 29.902317224904998 ], [ -95.417491021584382, 29.902327224780251 ], [ -95.416607021938873, 29.902359224269187 ], [ -95.41611402150896, 29.902377224688891 ], [ -95.415565021463479, 29.902295224883893 ], [ -95.415294021165067, 29.902234224916558 ], [ -95.415056021610326, 29.902148224393734 ], [ -95.414745021417872, 29.902036224592585 ], [ -95.414234021270772, 29.901646224396437 ], [ -95.414045021217092, 29.901448223985032 ], [ -95.413937021246738, 29.901244224696665 ], [ -95.413874020831443, 29.901079224119627 ], [ -95.413799021061678, 29.90092022474575 ], [ -95.413641020582858, 29.900738224237237 ], [ -95.413401021156531, 29.9006502247241 ], [ -95.413193021131391, 29.900480224302594 ], [ -95.413157020713697, 29.90042122457146 ], [ -95.413101020769744, 29.900331224161214 ], [ -95.412763020410978, 29.900335224332466 ], [ -95.412671020712665, 29.900336224580755 ], [ -95.412658020822988, 29.899738223734992 ], [ -95.412562020540932, 29.89969322421528 ], [ -95.412493020543167, 29.899661223907785 ], [ -95.412460020113784, 29.89965122427272 ], [ -95.412477020305971, 29.900601224137663 ], [ -95.412519020368677, 29.902488224311558 ], [ -95.412641021409911, 29.912501226902908 ], [ -95.412698020968847, 29.914927227301476 ], [ -95.412702021324648, 29.915076227597989 ], [ -95.412940021388806, 29.915059227622184 ], [ -95.413470021733062, 29.915054227222033 ], [ -95.413721022012197, 29.91505722679139 ], [ -95.414016021805878, 29.915061227359313 ], [ -95.414451021909755, 29.915057227408386 ], [ -95.415383021595446, 29.915044227028247 ], [ -95.416380021978568, 29.915024226701455 ], [ -95.4173160227041, 29.915003226927762 ], [ -95.417459022372924, 29.915000226847837 ], [ -95.418105022989863, 29.914988226991106 ], [ -95.418536022526965, 29.91498022671222 ], [ -95.418763022524104, 29.914976227399727 ], [ -95.418900023208181, 29.914976226654758 ], [ -95.41969602348135, 29.914958226968867 ], [ -95.419859023353297, 29.914947227305621 ], [ -95.420524022847118, 29.914919226509387 ], [ -95.420852022900036, 29.914921227330929 ], [ -95.421637023251776, 29.91495322715479 ], [ -95.421816023588732, 29.914954226835366 ], [ -95.42224802333547, 29.914948227063604 ], [ -95.422407023623705, 29.91494922712716 ], [ -95.422989024270592, 29.914938227199418 ], [ -95.423159023745342, 29.914938226995009 ], [ -95.423298024160559, 29.914931226567962 ], [ -95.423785024295583, 29.914925227222877 ], [ -95.425216024618322, 29.914891226756787 ], [ -95.426540024817086, 29.914865226774278 ], [ -95.428136025672771, 29.914840227050995 ], [ -95.42833602481565, 29.914831226307868 ], [ -95.429226025832037, 29.914811226468412 ], [ -95.429503025471547, 29.914805226750893 ], [ -95.429693025737407, 29.914807227058848 ], [ -95.42988302532757, 29.91479922616314 ], [ -95.431057025912338, 29.914774226117792 ], [ -95.431828025996083, 29.914756226292781 ], [ -95.432109026581088, 29.914750226487929 ], [ -95.432257026380071, 29.914748226347086 ], [ -95.432724026769876, 29.914740226884987 ], [ -95.432775026704036, 29.914739226672619 ], [ -95.433131026325967, 29.914732226049704 ], [ -95.434400027127793, 29.914709226116475 ], [ -95.435447027137286, 29.914689226729557 ], [ -95.435795026644698, 29.914683225990125 ], [ -95.438539027923682, 29.914633226393004 ], [ -95.438813027656053, 29.914628226357209 ], [ -95.439252027643775, 29.91462022662666 ], [ -95.439708028645342, 29.914611225985016 ], [ -95.441665029107483, 29.91457522584383 ], [ -95.442001028916181, 29.914575226275659 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 344, "Tract": "48201542800", "Area_SqMi": 3.4549354182263579, "total_2009": 141, "total_2010": 118, "total_2011": 115, "total_2012": 114, "total_2013": 98, "total_2014": 146, "total_2015": 162, "total_2016": 211, "total_2017": 206, "total_2018": 227, "total_2019": 218, "total_2020": 260, "age1": 55, "age2": 148, "age3": 73, "earn1": 34, "earn2": 96, "earn3": 146, "naics_s01": 5, "naics_s02": 2, "naics_s03": 0, "naics_s04": 58, "naics_s05": 1, "naics_s06": 27, "naics_s07": 10, "naics_s08": 30, "naics_s09": 2, "naics_s10": 11, "naics_s11": 5, "naics_s12": 93, "naics_s13": 0, "naics_s14": 8, "naics_s15": 1, "naics_s16": 3, "naics_s17": 0, "naics_s18": 0, "naics_s19": 20, "naics_s20": 0, "race1": 216, "race2": 32, "race3": 3, "race4": 23, "race5": 1, "race6": 1, "ethnicity1": 215, "ethnicity2": 61, "edu1": 35, "edu2": 72, "edu3": 57, "edu4": 57, "Shape_Length": 41254.240236274163, "Shape_Area": 96317686.279085353, "total_2021": 246, "total_2022": 276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.841101126762808, 29.831142195330731 ], [ -95.841006127136794, 29.830883195021251 ], [ -95.840150126376713, 29.828802194749443 ], [ -95.839961126478514, 29.828342195032636 ], [ -95.837697125855883, 29.82138319394971 ], [ -95.835998125201499, 29.816623192587073 ], [ -95.833383124176891, 29.809298191566665 ], [ -95.833061123539181, 29.80839419132759 ], [ -95.832837123940138, 29.807768190891185 ], [ -95.832365123395746, 29.806445190727352 ], [ -95.831649123337684, 29.804468190611715 ], [ -95.831614122900405, 29.804373190324409 ], [ -95.830793122827899, 29.802078189776619 ], [ -95.830340122976537, 29.800807189230721 ], [ -95.830203122275122, 29.800423189145789 ], [ -95.830171122899301, 29.800423189769369 ], [ -95.8296521226316, 29.800435189409665 ], [ -95.829496122169004, 29.800439189850778 ], [ -95.829098122685167, 29.800449189610926 ], [ -95.828166121754833, 29.800444189266198 ], [ -95.826473121926924, 29.800435190125988 ], [ -95.824972121899251, 29.800442189369186 ], [ -95.82496712156626, 29.801511190088398 ], [ -95.823720121612155, 29.801515189888306 ], [ -95.820780120448447, 29.80158118994089 ], [ -95.819893120561417, 29.801593190072776 ], [ -95.818417119822982, 29.801557189972193 ], [ -95.817492119950003, 29.801547190505772 ], [ -95.816543119545173, 29.801574189916714 ], [ -95.815450119518943, 29.801582190272669 ], [ -95.814347118836764, 29.801592190542717 ], [ -95.813523118930561, 29.801573190583724 ], [ -95.810988117975313, 29.80158019085053 ], [ -95.809101117311471, 29.801655190160314 ], [ -95.809010117053873, 29.801659190423802 ], [ -95.809010116902215, 29.801689190509713 ], [ -95.809024117601552, 29.804075191145301 ], [ -95.809034117725687, 29.804264190683973 ], [ -95.809028117358096, 29.804466191572622 ], [ -95.809030117948666, 29.805289191617643 ], [ -95.809035118104617, 29.806619191371595 ], [ -95.809052117661778, 29.809869192608222 ], [ -95.809059117791492, 29.811035192569861 ], [ -95.80904711789853, 29.811088192883165 ], [ -95.809062117905114, 29.811242192617879 ], [ -95.809068117922109, 29.811657192699879 ], [ -95.809067117858135, 29.811919193023932 ], [ -95.80907011804878, 29.811966192731745 ], [ -95.809069118252182, 29.812046192998942 ], [ -95.809066117752707, 29.812278192620976 ], [ -95.809069117517495, 29.812697192590257 ], [ -95.809061117469923, 29.812902192418299 ], [ -95.80907511757286, 29.813108193274942 ], [ -95.809075117411851, 29.813155192860659 ], [ -95.809076118215941, 29.813336193162044 ], [ -95.809075117571012, 29.813975192722094 ], [ -95.809076118182219, 29.814565193228411 ], [ -95.809062118391168, 29.814748193022396 ], [ -95.80913011791813, 29.816850193255949 ], [ -95.807821117552322, 29.816857193433115 ], [ -95.806725117216445, 29.816864194085849 ], [ -95.806725117815859, 29.816908193575635 ], [ -95.806725117127755, 29.816949193849506 ], [ -95.806725117892896, 29.817027193427954 ], [ -95.806725117114723, 29.818538193661421 ], [ -95.806718117838756, 29.821770194608668 ], [ -95.806715117618225, 29.824160195604865 ], [ -95.806714118239711, 29.824385195006194 ], [ -95.806714118340579, 29.824796195194192 ], [ -95.806709117890009, 29.831126196945895 ], [ -95.806759118168728, 29.831353196420352 ], [ -95.806807117790584, 29.83135219673521 ], [ -95.806840118022706, 29.831370196851577 ], [ -95.815239120202577, 29.831273196382977 ], [ -95.822875122383209, 29.831227196303999 ], [ -95.823482122001053, 29.831227195684377 ], [ -95.824704122491198, 29.831229196095769 ], [ -95.825330122562235, 29.831224195563511 ], [ -95.827320123135948, 29.831213196352792 ], [ -95.829555124130351, 29.831190196303591 ], [ -95.830369124475098, 29.831184196181258 ], [ -95.830875124030612, 29.831181195395768 ], [ -95.831255124705649, 29.83117619563814 ], [ -95.831518124033593, 29.831172195820457 ], [ -95.831541124091302, 29.831172195920793 ], [ -95.831695124876447, 29.831170195363971 ], [ -95.831827124465391, 29.831169195636573 ], [ -95.833077125143646, 29.831160195330689 ], [ -95.834726125546652, 29.831148195431059 ], [ -95.835910125783101, 29.831146195866342 ], [ -95.83684012527398, 29.83113819567405 ], [ -95.83767812564686, 29.831138195758392 ], [ -95.840035126103544, 29.831129195186257 ], [ -95.840187127059167, 29.83113819571151 ], [ -95.841101126762808, 29.831142195330731 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 345, "Tract": "48201422502", "Area_SqMi": 0.38608276642351375, "total_2009": 729, "total_2010": 685, "total_2011": 746, "total_2012": 1066, "total_2013": 1085, "total_2014": 1101, "total_2015": 1084, "total_2016": 1274, "total_2017": 1218, "total_2018": 1444, "total_2019": 1567, "total_2020": 1560, "age1": 215, "age2": 871, "age3": 525, "earn1": 894, "earn2": 433, "earn3": 284, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 37, "naics_s05": 5, "naics_s06": 3, "naics_s07": 25, "naics_s08": 0, "naics_s09": 0, "naics_s10": 34, "naics_s11": 39, "naics_s12": 45, "naics_s13": 0, "naics_s14": 205, "naics_s15": 88, "naics_s16": 1079, "naics_s17": 10, "naics_s18": 4, "naics_s19": 37, "naics_s20": 0, "race1": 718, "race2": 811, "race3": 9, "race4": 48, "race5": 1, "race6": 24, "ethnicity1": 1290, "ethnicity2": 321, "edu1": 357, "edu2": 338, "edu3": 410, "edu4": 291, "Shape_Length": 15440.468839994117, "Shape_Area": 10763326.740628824, "total_2021": 1627, "total_2022": 1611 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508583034643848, 29.670871174000432 ], [ -95.508581035335894, 29.670670173606336 ], [ -95.508558034409617, 29.670034173754903 ], [ -95.508559034805501, 29.669759174206181 ], [ -95.508564034610316, 29.6686741733064 ], [ -95.50855903509931, 29.668422173923815 ], [ -95.508550034294785, 29.667610173343309 ], [ -95.508540034638131, 29.667200173418951 ], [ -95.508541034134055, 29.666564173381907 ], [ -95.507164034422672, 29.666568173382498 ], [ -95.505700033654577, 29.666581173391275 ], [ -95.504816033282111, 29.66658917317525 ], [ -95.504301033293743, 29.666608173290935 ], [ -95.503777033658551, 29.666620173685274 ], [ -95.503207033591238, 29.666649173484657 ], [ -95.502374033522528, 29.666719173186223 ], [ -95.501180032810183, 29.666751173186579 ], [ -95.500503032520811, 29.666768173196981 ], [ -95.499319032211361, 29.666775173399689 ], [ -95.49873303216161, 29.666779173574888 ], [ -95.498522032215462, 29.666760173751545 ], [ -95.49838103166276, 29.66670917380014 ], [ -95.498285032181087, 29.666623173143606 ], [ -95.498232032337526, 29.666515173775799 ], [ -95.498188032329026, 29.666311173727728 ], [ -95.497204031775624, 29.666296173173908 ], [ -95.496244031890271, 29.666305173321305 ], [ -95.495997031377982, 29.666314173729539 ], [ -95.495232031727483, 29.666324173323666 ], [ -95.494890031360185, 29.666330173650568 ], [ -95.494242030919992, 29.666327173477228 ], [ -95.493319030607978, 29.666344174073043 ], [ -95.49222803025657, 29.666358173642472 ], [ -95.492242030067899, 29.667413174245123 ], [ -95.492252030248153, 29.668148174354098 ], [ -95.492258031080937, 29.668599174035354 ], [ -95.492267030496208, 29.669420174760344 ], [ -95.492253030464411, 29.670236174037889 ], [ -95.492265031067589, 29.671055174231121 ], [ -95.492342030564004, 29.67164917444769 ], [ -95.492386030995718, 29.671830174842935 ], [ -95.492406031228796, 29.671912174646554 ], [ -95.492449030946844, 29.672120175294015 ], [ -95.492642031338875, 29.672707174839285 ], [ -95.493787031287454, 29.672688174584422 ], [ -95.494854031418399, 29.672684174557695 ], [ -95.495778032013988, 29.672682174927814 ], [ -95.497137032462504, 29.672666174626791 ], [ -95.497149032077161, 29.673475174985242 ], [ -95.499825033044402, 29.673451174512479 ], [ -95.502504033441497, 29.673414174530699 ], [ -95.502487033662788, 29.672587174330939 ], [ -95.50247103368919, 29.671852174459321 ], [ -95.502466033453501, 29.670941174740467 ], [ -95.50304003394875, 29.670928174162444 ], [ -95.503528033655698, 29.670930173948662 ], [ -95.50373603322538, 29.670924173938957 ], [ -95.504354033309369, 29.670917173985341 ], [ -95.504607033714066, 29.670914174596771 ], [ -95.505321034514083, 29.670905174164275 ], [ -95.505796034003609, 29.670899174520748 ], [ -95.50691703424387, 29.670886174523506 ], [ -95.507382034255457, 29.670880173737793 ], [ -95.508146034579923, 29.670863174312476 ], [ -95.508583034643848, 29.670871174000432 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 346, "Tract": "48201553300", "Area_SqMi": 0.53399503557310823, "total_2009": 1768, "total_2010": 1734, "total_2011": 704, "total_2012": 892, "total_2013": 1056, "total_2014": 1108, "total_2015": 1364, "total_2016": 1064, "total_2017": 1163, "total_2018": 1259, "total_2019": 1364, "total_2020": 1295, "age1": 318, "age2": 641, "age3": 185, "earn1": 179, "earn2": 298, "earn3": 667, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 8, "naics_s06": 2, "naics_s07": 488, "naics_s08": 0, "naics_s09": 0, "naics_s10": 5, "naics_s11": 35, "naics_s12": 3, "naics_s13": 0, "naics_s14": 26, "naics_s15": 0, "naics_s16": 457, "naics_s17": 0, "naics_s18": 99, "naics_s19": 9, "naics_s20": 1, "race1": 717, "race2": 317, "race3": 9, "race4": 81, "race5": 2, "race6": 18, "ethnicity1": 797, "ethnicity2": 347, "edu1": 172, "edu2": 227, "edu3": 245, "edu4": 182, "Shape_Length": 15394.707089670146, "Shape_Area": 14886867.650140807, "total_2021": 1106, "total_2022": 1144 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.441779033445385, 30.029186249555661 ], [ -95.441776034237407, 30.029081249822635 ], [ -95.441766034311286, 30.028993249649073 ], [ -95.441762033906656, 30.028962249592755 ], [ -95.441752033374968, 30.028879249643325 ], [ -95.441736033440876, 30.028782248974444 ], [ -95.441684033693249, 30.028597249116533 ], [ -95.441647033542935, 30.028511249700429 ], [ -95.441506034064261, 30.028264248957722 ], [ -95.441467033773748, 30.028176249654436 ], [ -95.441442034173789, 30.028087249235664 ], [ -95.441433033965595, 30.027997249199171 ], [ -95.44143603404018, 30.027908249332587 ], [ -95.441464033922443, 30.027653248981267 ], [ -95.441457033422793, 30.02755924934613 ], [ -95.441423034129897, 30.027428249439215 ], [ -95.44135603327787, 30.027266249394199 ], [ -95.441204033859321, 30.027018249197742 ], [ -95.441065033279941, 30.026735249275855 ], [ -95.440766033134679, 30.025935248498637 ], [ -95.440701033376001, 30.025789248552776 ], [ -95.44066703310537, 30.025712249229294 ], [ -95.440529033443269, 30.025488249156879 ], [ -95.440489033053368, 30.025355248632167 ], [ -95.440273033239691, 30.025001248362351 ], [ -95.440069032910742, 30.024732248628244 ], [ -95.439893032757425, 30.024514248457383 ], [ -95.439848033603525, 30.024459248273093 ], [ -95.439216032668085, 30.023793248237858 ], [ -95.439130033208158, 30.023691248129211 ], [ -95.438794033335341, 30.023253248100321 ], [ -95.438398033030566, 30.022714247918891 ], [ -95.438316032611212, 30.022616248725466 ], [ -95.437993032475291, 30.022120248542002 ], [ -95.437796032448304, 30.021851248039273 ], [ -95.437601032197904, 30.021545247718688 ], [ -95.437465032887062, 30.021316247870235 ], [ -95.437208032489593, 30.020836247984967 ], [ -95.437032032559358, 30.020448247888279 ], [ -95.436915032655477, 30.020154247675677 ], [ -95.4368500318988, 30.019962248239946 ], [ -95.436807032327607, 30.019776247719037 ], [ -95.436785032442117, 30.019517247819177 ], [ -95.436746032485559, 30.019301247905553 ], [ -95.436656032062288, 30.019037247452019 ], [ -95.43403703133049, 30.019828247920824 ], [ -95.432528031405795, 30.020285248442285 ], [ -95.431224030943937, 30.020680248194921 ], [ -95.429964030469662, 30.021061248631586 ], [ -95.429326030241299, 30.021254248634175 ], [ -95.429068030717815, 30.021330248062444 ], [ -95.429007030318033, 30.021348248739777 ], [ -95.429012030037882, 30.021382248119068 ], [ -95.429022030074975, 30.021554248111848 ], [ -95.429027030339924, 30.021654248429936 ], [ -95.429030029878248, 30.021704248773876 ], [ -95.429050030242394, 30.021980248583549 ], [ -95.429054030713317, 30.022030248446988 ], [ -95.429159029935676, 30.023469248509336 ], [ -95.42920103040278, 30.023789248525024 ], [ -95.429223030837704, 30.024588249175114 ], [ -95.429292030990993, 30.026912249667078 ], [ -95.429277030351813, 30.028239249697545 ], [ -95.429292030909394, 30.028601249477124 ], [ -95.429280030629542, 30.028705250117461 ], [ -95.429256031177431, 30.031429250282375 ], [ -95.429255030556149, 30.031561250338186 ], [ -95.429281030354531, 30.032666250534483 ], [ -95.429414031228291, 30.03266425030295 ], [ -95.429609030648635, 30.032631250404776 ], [ -95.429654030640933, 30.032629251024996 ], [ -95.429769030594343, 30.032624250340405 ], [ -95.430141031333179, 30.032609250221366 ], [ -95.430290031397604, 30.032595250274465 ], [ -95.430730031341767, 30.032529250918657 ], [ -95.430967030881007, 30.032431250376188 ], [ -95.43119603180169, 30.032319250180688 ], [ -95.431417031401779, 30.032190250149604 ], [ -95.431681031300784, 30.032016250390246 ], [ -95.431744031119081, 30.031992250660796 ], [ -95.431812031965222, 30.031980250734787 ], [ -95.431882031932474, 30.031980250314334 ], [ -95.432161031701455, 30.032006250102619 ], [ -95.432841031671515, 30.032070250832383 ], [ -95.43314703228684, 30.032119250790512 ], [ -95.433460031474326, 30.032191250128982 ], [ -95.433539032182495, 30.032196250625184 ], [ -95.433813031716056, 30.032245250770661 ], [ -95.434186032515768, 30.032299250536678 ], [ -95.434373031749516, 30.03231325043231 ], [ -95.434792032448016, 30.032317250018409 ], [ -95.434910032509052, 30.032312250542855 ], [ -95.435307032698901, 30.032246250701053 ], [ -95.435664032963942, 30.032166250262133 ], [ -95.435734032369297, 30.032150250635429 ], [ -95.436193032539123, 30.032101250086132 ], [ -95.436242032239818, 30.03209625065038 ], [ -95.436679033029634, 30.032065250722859 ], [ -95.436830032864947, 30.032067250455462 ], [ -95.437129032747421, 30.032084249934265 ], [ -95.437348032997903, 30.032096250226399 ], [ -95.438183032914424, 30.032143250308028 ], [ -95.438451032712237, 30.03216125007242 ], [ -95.438707033069548, 30.032155250506833 ], [ -95.438834033785056, 30.032140250093665 ], [ -95.438888032849832, 30.032126249982436 ], [ -95.438955033609005, 30.03210925040182 ], [ -95.439071033282161, 30.032065250135879 ], [ -95.439163033274184, 30.031995250612024 ], [ -95.439267033435016, 30.031932249864639 ], [ -95.439340033185871, 30.031847250518261 ], [ -95.439468033211867, 30.03166925001101 ], [ -95.439492033053938, 30.031642250152252 ], [ -95.439622033840138, 30.031500250116864 ], [ -95.439713033627783, 30.031417250166108 ], [ -95.439844033827541, 30.03132124976209 ], [ -95.43991903375732, 30.031267249558073 ], [ -95.44022203366994, 30.031093249537221 ], [ -95.440512033768712, 30.030932249885339 ], [ -95.4406430337974, 30.030859249837921 ], [ -95.440705033853305, 30.030824249640965 ], [ -95.440731033572604, 30.030810249924379 ], [ -95.441066033917892, 30.030625249476259 ], [ -95.441196034289845, 30.030545250063607 ], [ -95.441268034221878, 30.030495250190686 ], [ -95.441415033785972, 30.030352250063512 ], [ -95.441484033809374, 30.030270249396821 ], [ -95.441605034074584, 30.03007225008631 ], [ -95.441723033469515, 30.029736249300832 ], [ -95.441754034292742, 30.029625249832755 ], [ -95.441768033645204, 30.029512249501959 ], [ -95.441779033445385, 30.029186249555661 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 347, "Tract": "48201553500", "Area_SqMi": 1.3739759965871066, "total_2009": 760, "total_2010": 652, "total_2011": 427, "total_2012": 691, "total_2013": 735, "total_2014": 673, "total_2015": 647, "total_2016": 764, "total_2017": 677, "total_2018": 616, "total_2019": 664, "total_2020": 523, "age1": 168, "age2": 309, "age3": 113, "earn1": 162, "earn2": 239, "earn3": 189, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 9, "naics_s05": 0, "naics_s06": 73, "naics_s07": 225, "naics_s08": 6, "naics_s09": 0, "naics_s10": 5, "naics_s11": 1, "naics_s12": 87, "naics_s13": 0, "naics_s14": 11, "naics_s15": 21, "naics_s16": 44, "naics_s17": 14, "naics_s18": 69, "naics_s19": 24, "naics_s20": 0, "race1": 444, "race2": 95, "race3": 6, "race4": 39, "race5": 1, "race6": 5, "ethnicity1": 430, "ethnicity2": 160, "edu1": 91, "edu2": 121, "edu3": 128, "edu4": 82, "Shape_Length": 25362.620746788703, "Shape_Area": 38304099.201428302, "total_2021": 593, "total_2022": 590 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.488569045915497, 30.040391250281591 ], [ -95.488499046844467, 30.040292250068443 ], [ -95.488056046638206, 30.039655249909018 ], [ -95.487127045791325, 30.038385249451345 ], [ -95.486531045728015, 30.037570249288954 ], [ -95.484117045116363, 30.034280248947173 ], [ -95.483770044821796, 30.033818249128309 ], [ -95.483703044604269, 30.033712249245927 ], [ -95.483389044389369, 30.033278249099979 ], [ -95.483126044456156, 30.032935248708807 ], [ -95.482410044210624, 30.031949248579842 ], [ -95.481597044289387, 30.030847248411536 ], [ -95.481459043607643, 30.030672248250898 ], [ -95.481321043598925, 30.030508248364001 ], [ -95.481212044038671, 30.030390248694335 ], [ -95.481179044515727, 30.030355248703746 ], [ -95.480819043454403, 30.030008248655353 ], [ -95.480722044279418, 30.029918248029094 ], [ -95.479960043565768, 30.029222248529731 ], [ -95.479091043586138, 30.028413248346453 ], [ -95.478931043698807, 30.028242248357923 ], [ -95.478820043249129, 30.028124248233873 ], [ -95.478589042881069, 30.027845248371605 ], [ -95.478393043660446, 30.027576247929471 ], [ -95.477572043088031, 30.026401247918933 ], [ -95.477406042947322, 30.026121247442358 ], [ -95.477202042471575, 30.025738247985977 ], [ -95.477026042411694, 30.025409247155316 ], [ -95.476852042845181, 30.025117247665989 ], [ -95.476425042729318, 30.024448247474599 ], [ -95.476378042859295, 30.024376247474674 ], [ -95.476130042375061, 30.024462247093776 ], [ -95.476003042554055, 30.024507247569517 ], [ -95.475418041814009, 30.024769247209058 ], [ -95.474468041860831, 30.025890247929024 ], [ -95.474085042139208, 30.026259247728987 ], [ -95.473636042124198, 30.026598247734032 ], [ -95.472776042194539, 30.027251247974018 ], [ -95.4727660420333, 30.027256248305171 ], [ -95.472537041473686, 30.027387248426702 ], [ -95.471980041183201, 30.027441247790605 ], [ -95.471814041066125, 30.027416248137182 ], [ -95.471375041637543, 30.027352248204231 ], [ -95.471125041716505, 30.027237248227852 ], [ -95.470760040930543, 30.026899248475662 ], [ -95.470509041524878, 30.026854248373013 ], [ -95.469916040916544, 30.026750247956691 ], [ -95.469487041298109, 30.026480248347138 ], [ -95.469069040298379, 30.026330248150153 ], [ -95.468542040690181, 30.026282248205948 ], [ -95.467972040667092, 30.026324247898565 ], [ -95.467625039971281, 30.026424248480257 ], [ -95.467512039861802, 30.026527247900336 ], [ -95.467300040767427, 30.026833247964305 ], [ -95.467190040050085, 30.027290248303217 ], [ -95.46716604037934, 30.02764724818784 ], [ -95.467266040447115, 30.028031248562449 ], [ -95.467200040445974, 30.028480248204691 ], [ -95.467034040034008, 30.028679248616079 ], [ -95.466304040416816, 30.029259248902058 ], [ -95.466043040122017, 30.02953824863113 ], [ -95.465678040054883, 30.029829248472151 ], [ -95.465391040489465, 30.029989248469089 ], [ -95.465171039449729, 30.030452248913168 ], [ -95.465092039935925, 30.031414249315784 ], [ -95.464959039528836, 30.031756249487159 ], [ -95.464867039818586, 30.03199324885836 ], [ -95.464545039820408, 30.032532249251013 ], [ -95.464341040041731, 30.032663249127793 ], [ -95.464048040131615, 30.032852249438466 ], [ -95.463678039273347, 30.033002249959267 ], [ -95.463553039427154, 30.032971249590808 ], [ -95.463638039257589, 30.033099249174402 ], [ -95.464821040076799, 30.035115250204846 ], [ -95.464968039857069, 30.035417249742874 ], [ -95.465130039700554, 30.035726250431331 ], [ -95.46552904025306, 30.036484250151354 ], [ -95.465668040767667, 30.036750249820859 ], [ -95.465848040171636, 30.03706825022466 ], [ -95.465897040635838, 30.037140250273772 ], [ -95.465972039944305, 30.037200250352857 ], [ -95.465979040621733, 30.037217250121358 ], [ -95.466044040954387, 30.037363250541503 ], [ -95.466098040162038, 30.037436250231071 ], [ -95.466503040693411, 30.037896250575084 ], [ -95.466626040519884, 30.038046250599322 ], [ -95.466808041151054, 30.038256250882689 ], [ -95.466942040405527, 30.038432250178339 ], [ -95.46701604056102, 30.038535250287083 ], [ -95.467135040937947, 30.038691250451343 ], [ -95.467295040527034, 30.03902225026977 ], [ -95.467426040890487, 30.039258250990635 ], [ -95.467523040698211, 30.039411250794206 ], [ -95.467705040798208, 30.040002250730044 ], [ -95.467739040906892, 30.040185250714583 ], [ -95.467934040762003, 30.040806250880735 ], [ -95.468003041146943, 30.041005250673216 ], [ -95.468183041487464, 30.041396250746001 ], [ -95.468373040758351, 30.041733251301384 ], [ -95.468584041496314, 30.042108251565537 ], [ -95.468659041272119, 30.04223825161851 ], [ -95.468806041396803, 30.042433251563303 ], [ -95.468939041098182, 30.042594251325927 ], [ -95.46919204186581, 30.042936251672096 ], [ -95.46931504106189, 30.043093251642851 ], [ -95.469780041559019, 30.043711251878449 ], [ -95.470266042003502, 30.044393251746342 ], [ -95.470702041912389, 30.045053251527012 ], [ -95.471194042194995, 30.045716251738291 ], [ -95.471432041898652, 30.045993251614089 ], [ -95.471502042322726, 30.046080252330281 ], [ -95.471631042125836, 30.046230251875084 ], [ -95.471738042414245, 30.046348252016678 ], [ -95.471869042516147, 30.046513251991822 ], [ -95.471949042530724, 30.046593252074775 ], [ -95.472071042374566, 30.046712252215379 ], [ -95.472155042327174, 30.046789252366697 ], [ -95.472336042803278, 30.046929252108303 ], [ -95.473007042246877, 30.04746125180386 ], [ -95.473254042618962, 30.047728251960429 ], [ -95.473541042652499, 30.048051252547026 ], [ -95.47368604251416, 30.048234252044526 ], [ -95.473836043317462, 30.04843425227762 ], [ -95.473877043470836, 30.048487252176969 ], [ -95.474922043365567, 30.04792525181124 ], [ -95.476192043122737, 30.047229251571249 ], [ -95.476467043498303, 30.04707925197544 ], [ -95.476613043481038, 30.0469892518372 ], [ -95.476834043723912, 30.046868251899863 ], [ -95.477355043730554, 30.046583251669734 ], [ -95.478280044050379, 30.046061251362836 ], [ -95.47838204428956, 30.046004251761865 ], [ -95.479700044177662, 30.045292251683716 ], [ -95.480299044147785, 30.04494925175198 ], [ -95.481880044866287, 30.044076251336932 ], [ -95.482754045525638, 30.043613250616271 ], [ -95.483753045284104, 30.043048250804713 ], [ -95.484470045397259, 30.04265025064235 ], [ -95.485540045929042, 30.042063250619641 ], [ -95.486443045629684, 30.041581250463942 ], [ -95.487213045586614, 30.041142250316721 ], [ -95.488569045915497, 30.040391250281591 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 348, "Tract": "48201423001", "Area_SqMi": 0.15344219743692378, "total_2009": 7, "total_2010": 8, "total_2011": 10, "total_2012": 31, "total_2013": 27, "total_2014": 22, "total_2015": 18, "total_2016": 24, "total_2017": 29, "total_2018": 48, "total_2019": 225, "total_2020": 192, "age1": 70, "age2": 116, "age3": 25, "earn1": 25, "earn2": 120, "earn3": 66, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 1, "naics_s08": 0, "naics_s09": 0, "naics_s10": 186, "naics_s11": 17, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 6, "naics_s19": 0, "naics_s20": 0, "race1": 186, "race2": 10, "race3": 4, "race4": 9, "race5": 0, "race6": 2, "ethnicity1": 56, "ethnicity2": 155, "edu1": 42, "edu2": 38, "edu3": 31, "edu4": 30, "Shape_Length": 12872.978403646926, "Shape_Area": 4277705.8455958692, "total_2021": 186, "total_2022": 211 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.51606003718635, 29.674946174835906 ], [ -95.516050037358397, 29.674727174765227 ], [ -95.516027037041795, 29.674459174358514 ], [ -95.51595703678997, 29.67414317446983 ], [ -95.515800036592992, 29.673702173965115 ], [ -95.515772036614308, 29.673622174280677 ], [ -95.514894037024234, 29.673865174829526 ], [ -95.514461036165855, 29.674068174473891 ], [ -95.512951036508426, 29.675073174656045 ], [ -95.512565035605249, 29.675349175078203 ], [ -95.511796035831836, 29.675760175180546 ], [ -95.511465035870003, 29.675902174966851 ], [ -95.510798035482452, 29.676071174625903 ], [ -95.510716035799149, 29.676092175315187 ], [ -95.509939035648145, 29.6761591753727 ], [ -95.508648034872238, 29.676177174770057 ], [ -95.508649035535683, 29.676261174783647 ], [ -95.508655035494698, 29.676776175366459 ], [ -95.508674035499752, 29.677492175746501 ], [ -95.508676034897533, 29.678365175335795 ], [ -95.508668034795036, 29.678710175777692 ], [ -95.508695035258924, 29.679655175458098 ], [ -95.508710035751179, 29.680455175707468 ], [ -95.508711035399486, 29.680662175633259 ], [ -95.508721035133391, 29.681485176655983 ], [ -95.508721035272217, 29.681618176251899 ], [ -95.50873303586377, 29.682583176795465 ], [ -95.508737035754635, 29.68275017615667 ], [ -95.508732035959682, 29.683431176594393 ], [ -95.508749035140724, 29.684137177201197 ], [ -95.508749035680381, 29.684229176442884 ], [ -95.508751035306062, 29.68448217702614 ], [ -95.508756035403565, 29.685036176588721 ], [ -95.50875703525449, 29.685745177166016 ], [ -95.508747035506431, 29.686789177197692 ], [ -95.509653035844934, 29.686325177318952 ], [ -95.510113035841471, 29.686089177403112 ], [ -95.510996036492131, 29.685630177392362 ], [ -95.510925035692523, 29.682352176707482 ], [ -95.510825036101124, 29.678410175878927 ], [ -95.511703035639798, 29.678393175683905 ], [ -95.512212036439706, 29.67839317525398 ], [ -95.512975036307012, 29.678389175872756 ], [ -95.513394036560143, 29.678377175757436 ], [ -95.514395036969191, 29.678360175503691 ], [ -95.514380036634677, 29.677882175340105 ], [ -95.514378036165326, 29.677325174902474 ], [ -95.514473037029902, 29.677028175069346 ], [ -95.514645037063289, 29.676739175064558 ], [ -95.514827036600963, 29.676543174581312 ], [ -95.515268037099645, 29.676101175273423 ], [ -95.515832036564689, 29.675534174452533 ], [ -95.515991036855056, 29.675267175126461 ], [ -95.51606003718635, 29.674946174835906 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 349, "Tract": "48201422406", "Area_SqMi": 0.23889278130703451, "total_2009": 44, "total_2010": 36, "total_2011": 13, "total_2012": 11, "total_2013": 7, "total_2014": 16, "total_2015": 15, "total_2016": 13, "total_2017": 10, "total_2018": 13, "total_2019": 19, "total_2020": 19, "age1": 1, "age2": 8, "age3": 8, "earn1": 3, "earn2": 7, "earn3": 7, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 2, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 11, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 9, "race2": 1, "race3": 0, "race4": 7, "race5": 0, "race6": 0, "ethnicity1": 11, "ethnicity2": 6, "edu1": 5, "edu2": 3, "edu3": 5, "edu4": 3, "Shape_Length": 12386.293549772001, "Shape_Area": 6659921.8737586169, "total_2021": 20, "total_2022": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508541034134055, 29.666564173381907 ], [ -95.508549035043458, 29.665639172654554 ], [ -95.508510034803834, 29.664659172800373 ], [ -95.508511034703574, 29.66403217275656 ], [ -95.508521034147051, 29.663590172222044 ], [ -95.508524034973092, 29.66279417274276 ], [ -95.508411034121906, 29.662807172692037 ], [ -95.507920034311582, 29.662837172010416 ], [ -95.506912033558507, 29.663034172781202 ], [ -95.506044034151358, 29.663044172535646 ], [ -95.505660034020892, 29.663089172847123 ], [ -95.505658034147757, 29.662836172431742 ], [ -95.505660033211782, 29.660032171837678 ], [ -95.505623033286781, 29.659136172081219 ], [ -95.50562903393508, 29.658900171518773 ], [ -95.505592034002973, 29.65793817176171 ], [ -95.505636033846059, 29.657663171679925 ], [ -95.505611033005735, 29.657141171089947 ], [ -95.505586033140773, 29.656855171628017 ], [ -95.50558403391922, 29.65657217094321 ], [ -95.505581033666573, 29.656034170793792 ], [ -95.505143033634511, 29.656034170789653 ], [ -95.504923033459633, 29.656036171509331 ], [ -95.503311032630251, 29.656073171083207 ], [ -95.502301032113863, 29.656234171390825 ], [ -95.50090503182814, 29.656686171402789 ], [ -95.501048032240718, 29.657020171141859 ], [ -95.501082031976949, 29.657263171395631 ], [ -95.501092032880592, 29.658160171493698 ], [ -95.501093032631402, 29.658489172062549 ], [ -95.501102032907909, 29.659291172378055 ], [ -95.501109032447289, 29.659781171896665 ], [ -95.501116031959612, 29.659894171960378 ], [ -95.501124032614229, 29.660582172461989 ], [ -95.501137032243847, 29.661402172097826 ], [ -95.501144032394947, 29.662268172224056 ], [ -95.501158033045542, 29.663093173121432 ], [ -95.501166032579235, 29.663909172743466 ], [ -95.501171032410781, 29.664780173114945 ], [ -95.501173032989428, 29.665592172980208 ], [ -95.501180032810183, 29.666751173186579 ], [ -95.502374033522528, 29.666719173186223 ], [ -95.503207033591238, 29.666649173484657 ], [ -95.503777033658551, 29.666620173685274 ], [ -95.504301033293743, 29.666608173290935 ], [ -95.504816033282111, 29.66658917317525 ], [ -95.505700033654577, 29.666581173391275 ], [ -95.507164034422672, 29.666568173382498 ], [ -95.508541034134055, 29.666564173381907 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 350, "Tract": "48201422601", "Area_SqMi": 0.41109671159550026, "total_2009": 416, "total_2010": 445, "total_2011": 460, "total_2012": 451, "total_2013": 437, "total_2014": 510, "total_2015": 505, "total_2016": 498, "total_2017": 516, "total_2018": 393, "total_2019": 390, "total_2020": 348, "age1": 38, "age2": 153, "age3": 144, "earn1": 91, "earn2": 136, "earn3": 108, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 23, "naics_s06": 0, "naics_s07": 3, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 22, "naics_s12": 1, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 266, "naics_s17": 3, "naics_s18": 2, "naics_s19": 3, "naics_s20": 0, "race1": 128, "race2": 172, "race3": 2, "race4": 25, "race5": 1, "race6": 7, "ethnicity1": 267, "ethnicity2": 68, "edu1": 62, "edu2": 87, "edu3": 85, "edu4": 63, "Shape_Length": 18210.659341196191, "Shape_Area": 11460672.720228778, "total_2021": 307, "total_2022": 335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.50875703525449, 29.685745177166016 ], [ -95.508756035403565, 29.685036176588721 ], [ -95.508751035306062, 29.68448217702614 ], [ -95.508749035680381, 29.684229176442884 ], [ -95.508749035140724, 29.684137177201197 ], [ -95.508732035959682, 29.683431176594393 ], [ -95.508737035754635, 29.68275017615667 ], [ -95.50873303586377, 29.682583176795465 ], [ -95.508721035272217, 29.681618176251899 ], [ -95.508721035133391, 29.681485176655983 ], [ -95.508711035399486, 29.680662175633259 ], [ -95.508710035751179, 29.680455175707468 ], [ -95.508695035258924, 29.679655175458098 ], [ -95.508668034795036, 29.678710175777692 ], [ -95.508676034897533, 29.678365175335795 ], [ -95.508674035499752, 29.677492175746501 ], [ -95.508655035494698, 29.676776175366459 ], [ -95.508649035535683, 29.676261174783647 ], [ -95.508648034872238, 29.676177174770057 ], [ -95.506823034452907, 29.676203175627744 ], [ -95.505932034340773, 29.676327174876658 ], [ -95.505202034552681, 29.676574175655567 ], [ -95.503845033534972, 29.677124175874479 ], [ -95.502860033548473, 29.677376175532164 ], [ -95.50171303360554, 29.677565176049555 ], [ -95.500818033595095, 29.677714176152538 ], [ -95.49890603232673, 29.678032175667138 ], [ -95.498739032573923, 29.678059175893065 ], [ -95.498573032118884, 29.678087176012422 ], [ -95.498131032189292, 29.67816017601881 ], [ -95.496322032029582, 29.678460175728205 ], [ -95.495632032026379, 29.678532176472352 ], [ -95.494848031417803, 29.678514175856986 ], [ -95.493999031189716, 29.678402176403445 ], [ -95.493368031735258, 29.678240176538427 ], [ -95.49319903167364, 29.678176175692371 ], [ -95.49316303135555, 29.678268175773432 ], [ -95.493150031346389, 29.678300175676775 ], [ -95.492985031215355, 29.67868417607076 ], [ -95.492804031198304, 29.679434176369632 ], [ -95.492781031429018, 29.681049176339926 ], [ -95.49281603146629, 29.68181717707812 ], [ -95.492999030884732, 29.681816177201657 ], [ -95.49350603199187, 29.68181317655786 ], [ -95.495466032189881, 29.681785176979236 ], [ -95.496894032336428, 29.681772177124397 ], [ -95.49764503210389, 29.681771176531246 ], [ -95.498569033232485, 29.681754176853172 ], [ -95.500101032864336, 29.681761176308314 ], [ -95.500978032976079, 29.681826176947933 ], [ -95.501827033652816, 29.681877176680018 ], [ -95.502690034048314, 29.681875176278204 ], [ -95.503664034045528, 29.681836176097686 ], [ -95.503690033855278, 29.683615176948077 ], [ -95.503690034121718, 29.685065176899087 ], [ -95.503704033769822, 29.685718176973339 ], [ -95.503703034118061, 29.6859731774518 ], [ -95.503729034425973, 29.688992178101163 ], [ -95.503828034072313, 29.689293178053934 ], [ -95.504438034629388, 29.688988178319608 ], [ -95.505723035381308, 29.688323177711922 ], [ -95.505836034473973, 29.688268178021676 ], [ -95.505925034863751, 29.688225177402373 ], [ -95.505964034468619, 29.688206177857275 ], [ -95.507517035154436, 29.687426177175396 ], [ -95.508747035506431, 29.686789177197692 ], [ -95.50875703525449, 29.685745177166016 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 351, "Tract": "48201422602", "Area_SqMi": 0.46932078571277569, "total_2009": 584, "total_2010": 471, "total_2011": 515, "total_2012": 486, "total_2013": 439, "total_2014": 412, "total_2015": 364, "total_2016": 374, "total_2017": 370, "total_2018": 413, "total_2019": 478, "total_2020": 457, "age1": 96, "age2": 179, "age3": 101, "earn1": 84, "earn2": 133, "earn3": 159, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 62, "naics_s05": 6, "naics_s06": 13, "naics_s07": 44, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 34, "naics_s13": 0, "naics_s14": 31, "naics_s15": 29, "naics_s16": 67, "naics_s17": 0, "naics_s18": 67, "naics_s19": 19, "naics_s20": 0, "race1": 276, "race2": 49, "race3": 5, "race4": 38, "race5": 3, "race6": 5, "ethnicity1": 239, "ethnicity2": 137, "edu1": 63, "edu2": 68, "edu3": 79, "edu4": 70, "Shape_Length": 14895.363138777839, "Shape_Area": 13083860.255119635, "total_2021": 415, "total_2022": 376 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.503828034072313, 29.689293178053934 ], [ -95.503729034425973, 29.688992178101163 ], [ -95.503703034118061, 29.6859731774518 ], [ -95.503704033769822, 29.685718176973339 ], [ -95.503690034121718, 29.685065176899087 ], [ -95.503690033855278, 29.683615176948077 ], [ -95.503664034045528, 29.681836176097686 ], [ -95.502690034048314, 29.681875176278204 ], [ -95.501827033652816, 29.681877176680018 ], [ -95.500978032976079, 29.681826176947933 ], [ -95.500101032864336, 29.681761176308314 ], [ -95.498569033232485, 29.681754176853172 ], [ -95.49764503210389, 29.681771176531246 ], [ -95.496894032336428, 29.681772177124397 ], [ -95.495466032189881, 29.681785176979236 ], [ -95.49350603199187, 29.68181317655786 ], [ -95.492999030884732, 29.681816177201657 ], [ -95.49281603146629, 29.68181717707812 ], [ -95.492823031691202, 29.682661177235683 ], [ -95.492819030892605, 29.683445177442906 ], [ -95.492829031101692, 29.684255176949598 ], [ -95.492804031617865, 29.685056177149782 ], [ -95.492766031359238, 29.685388177826479 ], [ -95.492615031250963, 29.685869177914796 ], [ -95.492446031410807, 29.686682177805075 ], [ -95.492419031232046, 29.688261177827957 ], [ -95.492493031803974, 29.688979178083784 ], [ -95.49251303180435, 29.689161178041445 ], [ -95.492577031070965, 29.689451178660732 ], [ -95.492665031640286, 29.689779178697862 ], [ -95.492899031757915, 29.6906921785557 ], [ -95.492960032119782, 29.691604178942349 ], [ -95.49296003174446, 29.692116178827138 ], [ -95.493006032263878, 29.693367179309408 ], [ -95.493009032100261, 29.693685178853883 ], [ -95.49301603196821, 29.693955178910311 ], [ -95.493028031473429, 29.694555179215421 ], [ -95.493000032248759, 29.694808179131304 ], [ -95.493608032519049, 29.694519179105669 ], [ -95.493696032065685, 29.694474179776265 ], [ -95.494088031958611, 29.694273179180978 ], [ -95.494821032448272, 29.693890179181768 ], [ -95.496951033171428, 29.692792179362254 ], [ -95.499620033035569, 29.691488178808356 ], [ -95.500039033997425, 29.691264178756921 ], [ -95.500955033955023, 29.690775178142051 ], [ -95.501504033700456, 29.690491178163096 ], [ -95.501919033619942, 29.690281178116358 ], [ -95.502394034252916, 29.690033178104471 ], [ -95.502904033865946, 29.689793178137116 ], [ -95.503828034072313, 29.689293178053934 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 352, "Tract": "48201412202", "Area_SqMi": 0.55795041485340569, "total_2009": 7606, "total_2010": 8161, "total_2011": 8106, "total_2012": 1998, "total_2013": 1971, "total_2014": 1913, "total_2015": 1993, "total_2016": 2199, "total_2017": 2098, "total_2018": 1768, "total_2019": 2192, "total_2020": 1969, "age1": 441, "age2": 1157, "age3": 438, "earn1": 319, "earn2": 554, "earn3": 1163, "naics_s01": 1, "naics_s02": 10, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 15, "naics_s07": 94, "naics_s08": 3, "naics_s09": 138, "naics_s10": 41, "naics_s11": 80, "naics_s12": 78, "naics_s13": 0, "naics_s14": 107, "naics_s15": 45, "naics_s16": 1136, "naics_s17": 13, "naics_s18": 156, "naics_s19": 119, "naics_s20": 0, "race1": 1267, "race2": 377, "race3": 12, "race4": 335, "race5": 6, "race6": 39, "ethnicity1": 1473, "ethnicity2": 563, "edu1": 293, "edu2": 325, "edu3": 486, "edu4": 491, "Shape_Length": 23113.4239226645, "Shape_Area": 15554702.6244341, "total_2021": 2102, "total_2022": 2036 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.41841001407164, 29.71462418589681 ], [ -95.418413013994481, 29.714305186233108 ], [ -95.418406013584104, 29.71419718637333 ], [ -95.418398013265914, 29.713415185682582 ], [ -95.418376013883901, 29.712583185456577 ], [ -95.418362013537063, 29.711837185702649 ], [ -95.41835801320714, 29.71147218553995 ], [ -95.418365013979056, 29.711122185791336 ], [ -95.418323013688408, 29.710933185067923 ], [ -95.418349014036991, 29.710407184920555 ], [ -95.418324013496161, 29.710234185414041 ], [ -95.418324013886789, 29.709591184764228 ], [ -95.418323013970095, 29.709461184740167 ], [ -95.418331013162074, 29.708764184558614 ], [ -95.418310013336907, 29.708667184643819 ], [ -95.41830101312533, 29.707900184544645 ], [ -95.418290013287887, 29.707068184743626 ], [ -95.418295013514481, 29.706169184250584 ], [ -95.418299013359388, 29.705280184535869 ], [ -95.418276012755229, 29.704403183798785 ], [ -95.41827601316237, 29.704344183577803 ], [ -95.418277013277716, 29.703989183483731 ], [ -95.418279012685488, 29.703593183782189 ], [ -95.418274012860351, 29.703224183427103 ], [ -95.418249012647095, 29.702764183520056 ], [ -95.418244013452934, 29.702534183315851 ], [ -95.41822901332884, 29.701835183836607 ], [ -95.41824201282752, 29.701075183293572 ], [ -95.418245013309416, 29.700714183092721 ], [ -95.414885012044408, 29.700733183250687 ], [ -95.415018012232082, 29.700297183019888 ], [ -95.415112012395966, 29.699761183358596 ], [ -95.415107011860016, 29.699554182674071 ], [ -95.415109011822693, 29.699118183103263 ], [ -95.415093011705906, 29.698309182895688 ], [ -95.414972011693962, 29.698068182792753 ], [ -95.414847012147831, 29.697969182976141 ], [ -95.41483701156838, 29.697948182687842 ], [ -95.414784012134035, 29.697833182455952 ], [ -95.414485011881908, 29.697818183118699 ], [ -95.413552011336009, 29.697674182314735 ], [ -95.412133010932337, 29.697317182927794 ], [ -95.412012011142565, 29.697286182880422 ], [ -95.411445010930819, 29.697202182527914 ], [ -95.411037011240097, 29.697236182432658 ], [ -95.410519011260703, 29.697346183016514 ], [ -95.410273010728432, 29.697464182813228 ], [ -95.410088010562944, 29.697553182594692 ], [ -95.409762010435429, 29.697774182793665 ], [ -95.40926301040281, 29.698137182616176 ], [ -95.409020010369858, 29.698315182730823 ], [ -95.408712010657979, 29.698651183386044 ], [ -95.408085010668387, 29.699939183446205 ], [ -95.407732010682807, 29.700368183183329 ], [ -95.407654009880588, 29.700462183857304 ], [ -95.407210009805112, 29.700830183869943 ], [ -95.405262010282897, 29.702032184359201 ], [ -95.404683009156884, 29.702211184086508 ], [ -95.402748008935646, 29.702239184014999 ], [ -95.40244800871443, 29.702376183815588 ], [ -95.402476009524179, 29.702464183872898 ], [ -95.40281700942505, 29.703548184289435 ], [ -95.402834009009112, 29.703629184576929 ], [ -95.402849009714458, 29.703701184781558 ], [ -95.402957009825485, 29.704299184205411 ], [ -95.403001009317961, 29.704722184766108 ], [ -95.403024009225604, 29.706235185319827 ], [ -95.40362300910968, 29.706235184809522 ], [ -95.405073009635672, 29.706252184916462 ], [ -95.405919009833198, 29.705163184172097 ], [ -95.406659010434453, 29.704220184656368 ], [ -95.40725701083538, 29.703447183840101 ], [ -95.407633010177264, 29.703634184155376 ], [ -95.407962010491588, 29.703745184282102 ], [ -95.408224010789382, 29.703811183887517 ], [ -95.408617010856787, 29.703792183783197 ], [ -95.409028010828749, 29.703782184595358 ], [ -95.409372010853545, 29.703760183987232 ], [ -95.40994701146893, 29.703691184456694 ], [ -95.410224011268994, 29.703641183725114 ], [ -95.410609011026679, 29.703560183665935 ], [ -95.410978011752576, 29.703458183685843 ], [ -95.411322011491748, 29.703353183859857 ], [ -95.411725011569217, 29.703210183755598 ], [ -95.411965011371578, 29.703560184078089 ], [ -95.412138011380122, 29.703843183626489 ], [ -95.412239011374325, 29.704051183776926 ], [ -95.41246701224452, 29.704683184260801 ], [ -95.412542011987469, 29.704999184395444 ], [ -95.412574011911047, 29.705314184251062 ], [ -95.412598011370221, 29.706209184165012 ], [ -95.412592011551951, 29.707080184375364 ], [ -95.412603012067791, 29.707856185207369 ], [ -95.412616011975487, 29.708688185051642 ], [ -95.412626012170804, 29.70949718559455 ], [ -95.41261801241329, 29.710219185737312 ], [ -95.412637012027318, 29.711024185361694 ], [ -95.412648012187375, 29.711790185590225 ], [ -95.412648011678854, 29.712620186247875 ], [ -95.412662012303912, 29.713434186439464 ], [ -95.412673012307565, 29.714250185824252 ], [ -95.412675012546757, 29.714663186365765 ], [ -95.412678012033112, 29.715112186729005 ], [ -95.413308012380867, 29.715098186141162 ], [ -95.41340501240623, 29.715097186568414 ], [ -95.413994012282203, 29.715092186568025 ], [ -95.414914013186646, 29.715078186027359 ], [ -95.416667012787514, 29.715064186560372 ], [ -95.418406013349227, 29.715059186573164 ], [ -95.41841001407164, 29.71462418589681 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 353, "Tract": "48201541401", "Area_SqMi": 0.55486208606162013, "total_2009": 220, "total_2010": 212, "total_2011": 346, "total_2012": 311, "total_2013": 332, "total_2014": 395, "total_2015": 486, "total_2016": 701, "total_2017": 601, "total_2018": 710, "total_2019": 749, "total_2020": 305, "age1": 115, "age2": 175, "age3": 58, "earn1": 115, "earn2": 132, "earn3": 101, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 70, "naics_s05": 4, "naics_s06": 0, "naics_s07": 47, "naics_s08": 6, "naics_s09": 3, "naics_s10": 2, "naics_s11": 10, "naics_s12": 17, "naics_s13": 0, "naics_s14": 19, "naics_s15": 6, "naics_s16": 16, "naics_s17": 0, "naics_s18": 128, "naics_s19": 19, "naics_s20": 0, "race1": 225, "race2": 51, "race3": 6, "race4": 51, "race5": 1, "race6": 14, "ethnicity1": 221, "ethnicity2": 127, "edu1": 66, "edu2": 57, "edu3": 64, "edu4": 46, "Shape_Length": 21321.901548303929, "Shape_Area": 15468605.303446673, "total_2021": 317, "total_2022": 348 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.660584082268699, 29.85983120716644 ], [ -95.660578081678466, 29.859451207179472 ], [ -95.657299081413655, 29.859470207819406 ], [ -95.656527081425537, 29.859468207252863 ], [ -95.654800080121788, 29.859461207674659 ], [ -95.653534080183476, 29.859486207892768 ], [ -95.653525080531168, 29.85812220714168 ], [ -95.653518080061417, 29.857138207441508 ], [ -95.653530080208753, 29.854961206406546 ], [ -95.653529079727278, 29.852280206580343 ], [ -95.653015079466627, 29.852275206548907 ], [ -95.651697079304782, 29.852263206263256 ], [ -95.651693079332205, 29.851993206050842 ], [ -95.651687079545241, 29.851666205972649 ], [ -95.651677079955093, 29.850892205614084 ], [ -95.651683079375999, 29.849022205214567 ], [ -95.651068079575921, 29.849024205260044 ], [ -95.650096078576127, 29.849005205278701 ], [ -95.649436078702863, 29.849006205661453 ], [ -95.648315078748055, 29.849009205689168 ], [ -95.648061078724979, 29.849010205913274 ], [ -95.647143078494992, 29.849011205736744 ], [ -95.647132078613311, 29.849011206041066 ], [ -95.646945077931164, 29.849012205650823 ], [ -95.646732078148744, 29.84901020556784 ], [ -95.645770077353092, 29.849003205610227 ], [ -95.645721077741626, 29.849566205950829 ], [ -95.645666077766407, 29.850018205875742 ], [ -95.645582078309488, 29.85066420645003 ], [ -95.645552077709368, 29.850913206035312 ], [ -95.64553707748567, 29.851057206488512 ], [ -95.645417077997578, 29.852070206503765 ], [ -95.645404077959427, 29.852172206694078 ], [ -95.645362078431802, 29.852541206211761 ], [ -95.645338078250859, 29.852739206590623 ], [ -95.645164077546312, 29.854203206705073 ], [ -95.645108078095262, 29.854768207099916 ], [ -95.645085078423193, 29.854972207412931 ], [ -95.645060077959471, 29.855319207216084 ], [ -95.645064077950551, 29.855449207154667 ], [ -95.645030078223243, 29.856840207082776 ], [ -95.645030077682605, 29.857054207243124 ], [ -95.645035077598479, 29.857293207489668 ], [ -95.645040078095633, 29.857347207395566 ], [ -95.645075077736067, 29.858955207709904 ], [ -95.645083077892295, 29.859728208341412 ], [ -95.645090078033803, 29.860396207830604 ], [ -95.645502078750269, 29.860381208044693 ], [ -95.645869077899732, 29.860376207784903 ], [ -95.646217078296715, 29.86040120788774 ], [ -95.646436078300923, 29.860505208484291 ], [ -95.646595078704863, 29.860599208285866 ], [ -95.646724078742764, 29.860719208462832 ], [ -95.646858079169405, 29.860873208074416 ], [ -95.646923078815647, 29.861047208624928 ], [ -95.646943078563524, 29.861211208343811 ], [ -95.646948078211324, 29.861628208626797 ], [ -95.646944078562868, 29.862086208131277 ], [ -95.647664078694561, 29.86225020807499 ], [ -95.648157078704386, 29.862394208211228 ], [ -95.648728079588068, 29.862638208271026 ], [ -95.649165078867185, 29.862871208293612 ], [ -95.64985307986386, 29.863355208854198 ], [ -95.650049080060285, 29.863493208218742 ], [ -95.650855079835281, 29.864274208692731 ], [ -95.651513080111229, 29.864900208428566 ], [ -95.652394080065392, 29.864432208862539 ], [ -95.652931080110051, 29.864339209047593 ], [ -95.653589080660325, 29.864331208262829 ], [ -95.654068080442684, 29.864322209031712 ], [ -95.654114080598589, 29.865427208673466 ], [ -95.654433080429328, 29.865435209164211 ], [ -95.654824080955976, 29.865384208913287 ], [ -95.655054081282302, 29.865291209139851 ], [ -95.655878081478789, 29.864976208559472 ], [ -95.655870080880632, 29.864525208341107 ], [ -95.655957081560175, 29.863880208110217 ], [ -95.656646081639622, 29.863858208135206 ], [ -95.656922081259708, 29.863803208279393 ], [ -95.657195081786327, 29.863705208572775 ], [ -95.657436081380965, 29.863513208556384 ], [ -95.657630081725046, 29.863235207855805 ], [ -95.657690081829784, 29.862707208517715 ], [ -95.657411081765346, 29.862098207824619 ], [ -95.657375081381531, 29.86161520758624 ], [ -95.657383081563211, 29.86131320825514 ], [ -95.658871082221069, 29.861423207566247 ], [ -95.658885081582469, 29.862017208237891 ], [ -95.659686082335554, 29.861996208149066 ], [ -95.659651081879886, 29.861308207941853 ], [ -95.659620082175053, 29.860528207738565 ], [ -95.659571081899784, 29.859817207557782 ], [ -95.660584082268699, 29.85983120716644 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 354, "Tract": "48201541702", "Area_SqMi": 1.0409305924204191, "total_2009": 12087, "total_2010": 10849, "total_2011": 12819, "total_2012": 15292, "total_2013": 16899, "total_2014": 18685, "total_2015": 18018, "total_2016": 16043, "total_2017": 14698, "total_2018": 16929, "total_2019": 17035, "total_2020": 17733, "age1": 2336, "age2": 9811, "age3": 4077, "earn1": 1561, "earn2": 2587, "earn3": 12076, "naics_s01": 0, "naics_s02": 741, "naics_s03": 481, "naics_s04": 860, "naics_s05": 345, "naics_s06": 831, "naics_s07": 1097, "naics_s08": 607, "naics_s09": 52, "naics_s10": 612, "naics_s11": 105, "naics_s12": 5172, "naics_s13": 1129, "naics_s14": 1554, "naics_s15": 83, "naics_s16": 1409, "naics_s17": 34, "naics_s18": 833, "naics_s19": 279, "naics_s20": 0, "race1": 11877, "race2": 2388, "race3": 123, "race4": 1577, "race5": 23, "race6": 236, "ethnicity1": 11644, "ethnicity2": 4580, "edu1": 2425, "edu2": 3169, "edu3": 4153, "edu4": 4141, "Shape_Length": 31862.900778466235, "Shape_Area": 29019363.346167076, "total_2021": 15355, "total_2022": 16224 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.688423086525461, 29.790949192683328 ], [ -95.688403085939242, 29.788877191721486 ], [ -95.68835408606995, 29.787520191722475 ], [ -95.688366085848273, 29.786221191173055 ], [ -95.688349085590886, 29.785913191192652 ], [ -95.688353085970576, 29.785624191416979 ], [ -95.688355085662607, 29.7854651914468 ], [ -95.688359086320389, 29.785128191154218 ], [ -95.688358085340539, 29.785045191584743 ], [ -95.688076085897237, 29.785045190963931 ], [ -95.685477085041327, 29.785015191514066 ], [ -95.683035084452854, 29.785038191891477 ], [ -95.682482084774819, 29.785043191130921 ], [ -95.681985083833112, 29.785053191909018 ], [ -95.681489084599278, 29.785076191262561 ], [ -95.680944083774023, 29.785090191470267 ], [ -95.678429083710256, 29.785135191895545 ], [ -95.677520082707375, 29.785128191711312 ], [ -95.675805082557133, 29.785135191695183 ], [ -95.674398082258989, 29.785098191942236 ], [ -95.671653081484408, 29.785095192181473 ], [ -95.670490081398682, 29.785105192261369 ], [ -95.670313081350756, 29.785105191898396 ], [ -95.668131080376696, 29.785128192294557 ], [ -95.667892081047128, 29.785127191801024 ], [ -95.667085080063728, 29.785128192113405 ], [ -95.66686708086246, 29.785128192156748 ], [ -95.666617080676303, 29.785128192090497 ], [ -95.666363080098932, 29.785135191851786 ], [ -95.663956079532994, 29.785120191839191 ], [ -95.662451079267342, 29.785098191870624 ], [ -95.660660078582239, 29.78506819245521 ], [ -95.660518078496196, 29.78506719179736 ], [ -95.659420078431907, 29.785075192503495 ], [ -95.658544078057687, 29.785075192514185 ], [ -95.657453078207553, 29.785083192773605 ], [ -95.657188078128286, 29.785086192102998 ], [ -95.656972077903404, 29.785087192587234 ], [ -95.653656077026923, 29.785098192915974 ], [ -95.651132076671189, 29.785067192169485 ], [ -95.646592074724893, 29.785015192465842 ], [ -95.646054074676613, 29.785018192768852 ], [ -95.645256075091822, 29.785037192625953 ], [ -95.645031075165392, 29.785038193223649 ], [ -95.644798074932936, 29.78504019272922 ], [ -95.644791074823615, 29.785238192542895 ], [ -95.644792074562247, 29.785268192805333 ], [ -95.644795074531302, 29.785405192721317 ], [ -95.644797074314141, 29.785510193108941 ], [ -95.644820074984196, 29.786573193538732 ], [ -95.644820074886539, 29.78680019290282 ], [ -95.644824074585756, 29.786981193172718 ], [ -95.644868074930173, 29.787965193752207 ], [ -95.644854074441483, 29.788317193293533 ], [ -95.644863074756998, 29.788655193415387 ], [ -95.644879074881246, 29.7890971933933 ], [ -95.64486607503143, 29.790247193520756 ], [ -95.644877075051937, 29.790770194298769 ], [ -95.645123074605095, 29.790771194074278 ], [ -95.650695076859989, 29.790802193618429 ], [ -95.652658077207064, 29.790806193447445 ], [ -95.660280079016914, 29.790844193284148 ], [ -95.666577080542297, 29.790882193601469 ], [ -95.669226081051292, 29.790883193209087 ], [ -95.671913081772431, 29.790898193176254 ], [ -95.674740082687137, 29.790893192909124 ], [ -95.676121083107091, 29.790872192749294 ], [ -95.687985086444186, 29.790940192520569 ], [ -95.68826308647084, 29.790942192630798 ], [ -95.688423086525461, 29.790949192683328 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 355, "Tract": "48201554409", "Area_SqMi": 2.0856085054039388, "total_2009": 848, "total_2010": 1749, "total_2011": 2513, "total_2012": 2150, "total_2013": 2272, "total_2014": 1957, "total_2015": 694, "total_2016": 683, "total_2017": 833, "total_2018": 968, "total_2019": 1122, "total_2020": 1873, "age1": 481, "age2": 922, "age3": 400, "earn1": 499, "earn2": 529, "earn3": 775, "naics_s01": 10, "naics_s02": 5, "naics_s03": 0, "naics_s04": 70, "naics_s05": 13, "naics_s06": 19, "naics_s07": 75, "naics_s08": 16, "naics_s09": 24, "naics_s10": 55, "naics_s11": 9, "naics_s12": 471, "naics_s13": 13, "naics_s14": 63, "naics_s15": 29, "naics_s16": 488, "naics_s17": 12, "naics_s18": 275, "naics_s19": 155, "naics_s20": 1, "race1": 1373, "race2": 246, "race3": 14, "race4": 140, "race5": 3, "race6": 27, "ethnicity1": 1338, "ethnicity2": 465, "edu1": 228, "edu2": 304, "edu3": 415, "edu4": 375, "Shape_Length": 39249.37989891108, "Shape_Area": 58143195.576030158, "total_2021": 1886, "total_2022": 1803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.687723093986705, 29.963055227524457 ], [ -95.687888093436698, 29.9629012272609 ], [ -95.687711094157166, 29.962772227251058 ], [ -95.687430093292662, 29.962567227343222 ], [ -95.687270093378203, 29.962450227430516 ], [ -95.6857370936264, 29.961422227126896 ], [ -95.685646092941326, 29.961356227515342 ], [ -95.685080093024339, 29.960955227538559 ], [ -95.684589093173074, 29.960627227570377 ], [ -95.683295092406382, 29.959733227355375 ], [ -95.681405092081945, 29.958427226618777 ], [ -95.680899092283454, 29.958072226557395 ], [ -95.68015509128827, 29.957549226745829 ], [ -95.679343091307487, 29.956991226275193 ], [ -95.678352090710447, 29.956338226067267 ], [ -95.678272091374751, 29.956524226329979 ], [ -95.678172090950028, 29.956754226967597 ], [ -95.678119091229703, 29.956877226272628 ], [ -95.678013090769767, 29.957120226549034 ], [ -95.677856091353291, 29.957485226676177 ], [ -95.6777170910146, 29.957650226749468 ], [ -95.677674090710212, 29.957836226921177 ], [ -95.677799091447525, 29.958150226927181 ], [ -95.677830090756828, 29.958419227086146 ], [ -95.677831091352715, 29.958526227226045 ], [ -95.677835090898711, 29.958568226611447 ], [ -95.677849090693869, 29.958991227112492 ], [ -95.677827090963149, 29.959207227414595 ], [ -95.677774090537667, 29.959711227403599 ], [ -95.677713091219587, 29.959838227160731 ], [ -95.677679090589521, 29.9599092271534 ], [ -95.677590091254174, 29.960019226957147 ], [ -95.677231090447265, 29.960184227723659 ], [ -95.677060091340664, 29.960321227264039 ], [ -95.676694091223965, 29.960794227425357 ], [ -95.676612091281527, 29.960931227821629 ], [ -95.676454090612367, 29.961091227343886 ], [ -95.676382091125802, 29.961154227701428 ], [ -95.676208090587295, 29.961305227896833 ], [ -95.676094090701511, 29.961355227979961 ], [ -95.675905090602768, 29.961371227344358 ], [ -95.675741090669916, 29.961366227744495 ], [ -95.675697090090608, 29.961371227848158 ], [ -95.675387090664586, 29.961311227965759 ], [ -95.674952090518858, 29.961162227367797 ], [ -95.674832090019407, 29.96119022730641 ], [ -95.674800090717198, 29.961239228008864 ], [ -95.674731090521774, 29.961410227513419 ], [ -95.67469909067465, 29.961536227471566 ], [ -95.674585090473258, 29.961684227683865 ], [ -95.674383089933698, 29.96199822760385 ], [ -95.674087090066465, 29.962300228252357 ], [ -95.673935089946738, 29.962404228317123 ], [ -95.673354089533262, 29.962577228093618 ], [ -95.673062089467493, 29.962664227806165 ], [ -95.673148089771843, 29.963164228450317 ], [ -95.6732020898, 29.963478227761282 ], [ -95.673226089582158, 29.96361922774981 ], [ -95.673314090407885, 29.964101228663093 ], [ -95.673344090049213, 29.964301228219782 ], [ -95.673373090084397, 29.964580228428112 ], [ -95.673391089657784, 29.964990228597355 ], [ -95.67339609040171, 29.965300228458762 ], [ -95.673331090594445, 29.965301228310487 ], [ -95.671422089265747, 29.965334228132647 ], [ -95.671240089800648, 29.965332228329597 ], [ -95.671052089890182, 29.965337228538779 ], [ -95.670867089580057, 29.965335228747026 ], [ -95.670597089845799, 29.965338228718178 ], [ -95.669404089549246, 29.965346229070075 ], [ -95.668900088845433, 29.965337228206746 ], [ -95.668585089424042, 29.965311228354356 ], [ -95.668130088411118, 29.965228228853764 ], [ -95.667840088335979, 29.965160228684994 ], [ -95.667692088583465, 29.965133228934402 ], [ -95.667567088603732, 29.965105228483633 ], [ -95.667285088362021, 29.965018228591305 ], [ -95.667192088573557, 29.964984228575531 ], [ -95.667085088202384, 29.964955228543332 ], [ -95.666341088282621, 29.964673228839395 ], [ -95.666209088513213, 29.96461622887098 ], [ -95.666065088623142, 29.964571228847756 ], [ -95.665575088169291, 29.964440228983449 ], [ -95.665219087816808, 29.964375228577243 ], [ -95.665049088508724, 29.964334228935606 ], [ -95.664872088398383, 29.96431322879598 ], [ -95.664701088260969, 29.964298228627243 ], [ -95.663915087660314, 29.964274228380965 ], [ -95.663372087841196, 29.964273228829537 ], [ -95.66248308713142, 29.964274228891306 ], [ -95.661200087390384, 29.964284228745161 ], [ -95.660050086472779, 29.964291228392206 ], [ -95.659672086666092, 29.964292228482684 ], [ -95.658096086674362, 29.964297229221074 ], [ -95.657214085798202, 29.964296228696096 ], [ -95.656906085872663, 29.964300228953658 ], [ -95.656756086273035, 29.964292228961408 ], [ -95.656595085651844, 29.964293228517292 ], [ -95.656573085959309, 29.964543228499615 ], [ -95.65657308630648, 29.964968228758082 ], [ -95.6566110858748, 29.965494229167316 ], [ -95.656691085521032, 29.965913229103631 ], [ -95.656745086154686, 29.966208229332334 ], [ -95.656879085934037, 29.966617229417416 ], [ -95.657024086088782, 29.967039228984451 ], [ -95.657114086365482, 29.967190229214079 ], [ -95.657275086611762, 29.967419229105275 ], [ -95.657623086709719, 29.967932230017226 ], [ -95.658201086869454, 29.968731229926291 ], [ -95.658541086899945, 29.969198229463199 ], [ -95.658856087068173, 29.96957923011426 ], [ -95.659035087034482, 29.969822229719188 ], [ -95.659382086680992, 29.97028723030088 ], [ -95.65964408730747, 29.970596229690475 ], [ -95.660060086742092, 29.970973230279537 ], [ -95.660492086771768, 29.971269229982497 ], [ -95.660821087383681, 29.971450230478538 ], [ -95.659578087327418, 29.973177230694191 ], [ -95.65916708666019, 29.973646230822453 ], [ -95.659119086860173, 29.973681230344248 ], [ -95.659014086870684, 29.973736230847827 ], [ -95.658422086391653, 29.974046230682273 ], [ -95.657675086791144, 29.974278231249443 ], [ -95.656663085805576, 29.974345231179786 ], [ -95.654422085630699, 29.974279230980567 ], [ -95.653894085615988, 29.974378231167208 ], [ -95.653724085510632, 29.974411231358477 ], [ -95.65202508551657, 29.97474423122787 ], [ -95.652057085664055, 29.974878231387471 ], [ -95.65211208488229, 29.97504023129996 ], [ -95.652130085573944, 29.975150231342777 ], [ -95.652170085725501, 29.975287231469167 ], [ -95.652201085320513, 29.975430231120622 ], [ -95.652244085688849, 29.975563231028048 ], [ -95.652282085652615, 29.975701231789039 ], [ -95.652326085239963, 29.975840231378552 ], [ -95.652364085733396, 29.975979231223139 ], [ -95.652510085011315, 29.976606231626533 ], [ -95.652544085740999, 29.976699231188757 ], [ -95.652554084870289, 29.976740231917468 ], [ -95.652582085671028, 29.976852232004596 ], [ -95.652622085234768, 29.977004231181201 ], [ -95.652658085237519, 29.977109231962526 ], [ -95.652879085884194, 29.977917231675331 ], [ -95.652908085135664, 29.978020232022722 ], [ -95.653105086092268, 29.978846232398382 ], [ -95.653143085175003, 29.979001232003736 ], [ -95.653211086047918, 29.979341231715019 ], [ -95.653252085621148, 29.979545231767663 ], [ -95.653269086166162, 29.979614232142222 ], [ -95.653275085258102, 29.979641232174853 ], [ -95.653368085435403, 29.980094232506609 ], [ -95.65338108579293, 29.980157232369923 ], [ -95.653466086109447, 29.980563232038346 ], [ -95.653499086121386, 29.980721232344347 ], [ -95.653542085648354, 29.980953232733292 ], [ -95.653554085994557, 29.981048232412252 ], [ -95.653579085674039, 29.981146232020524 ], [ -95.653605085684177, 29.98138623215657 ], [ -95.653700085713297, 29.981815232702719 ], [ -95.653739085920634, 29.982014232143449 ], [ -95.653785085622616, 29.982242233017342 ], [ -95.653802086409542, 29.982309232318521 ], [ -95.653827086366306, 29.982451232364546 ], [ -95.653846085571075, 29.982520232731478 ], [ -95.653857086435309, 29.982596232459702 ], [ -95.653876086288236, 29.982667232857942 ], [ -95.653887086020418, 29.982746232586727 ], [ -95.654501086170228, 29.98575223313432 ], [ -95.654779086698014, 29.98571023289043 ], [ -95.655100085982909, 29.9856322330639 ], [ -95.655459086724278, 29.985506233333687 ], [ -95.655837086423332, 29.985361233494388 ], [ -95.655941086597608, 29.985320233173432 ], [ -95.656037086229958, 29.985283233080491 ], [ -95.656164086619768, 29.985235232961283 ], [ -95.656561087090893, 29.985011233125977 ], [ -95.657055086911996, 29.984709233226624 ], [ -95.657422086713936, 29.984466233077534 ], [ -95.657805087531784, 29.984133232971018 ], [ -95.657901086894043, 29.984058232972668 ], [ -95.658091086677473, 29.983912232717199 ], [ -95.658180087563167, 29.983840232602855 ], [ -95.658506086806909, 29.983616233046959 ], [ -95.658715087075876, 29.983496232905296 ], [ -95.658824087663547, 29.983426232655358 ], [ -95.659015087307665, 29.983321232964176 ], [ -95.659262087396741, 29.983199232296869 ], [ -95.659359087225255, 29.983156233037693 ], [ -95.660384087690701, 29.98275023276571 ], [ -95.660493087519157, 29.98268923216914 ], [ -95.660621087908495, 29.982635232872827 ], [ -95.661096087751588, 29.982454232843772 ], [ -95.661199087844736, 29.982428232710589 ], [ -95.661262088337295, 29.982390232601276 ], [ -95.662210087598311, 29.982019232593256 ], [ -95.662606087883205, 29.981864232648054 ], [ -95.66318108854334, 29.981613232168147 ], [ -95.663321088016986, 29.981569232540593 ], [ -95.663789088835074, 29.981387232482184 ], [ -95.664840088203562, 29.98098223187089 ], [ -95.664926089027134, 29.980949231802704 ], [ -95.664988088539928, 29.980918232272323 ], [ -95.666413088789398, 29.980360232179361 ], [ -95.666809089667495, 29.980201231782882 ], [ -95.66694508885692, 29.980147231953364 ], [ -95.667667089802293, 29.979853231279062 ], [ -95.668343089144074, 29.979578231116179 ], [ -95.668510090063322, 29.979519231603334 ], [ -95.66930908975975, 29.979209231413094 ], [ -95.669390090255149, 29.979182231843456 ], [ -95.669614090203652, 29.979088231741326 ], [ -95.669837089861687, 29.979002231815393 ], [ -95.670354089989743, 29.978805231022832 ], [ -95.670457089601143, 29.978758230920633 ], [ -95.671263090388635, 29.978444231302241 ], [ -95.671607090173325, 29.978305231556856 ], [ -95.671732090455393, 29.978254231484335 ], [ -95.671826090137017, 29.978226231313958 ], [ -95.671913090863555, 29.978191230857963 ], [ -95.672033090509018, 29.978163231348809 ], [ -95.672200090171245, 29.978070231500407 ], [ -95.672506090330543, 29.977945231166775 ], [ -95.67260109105753, 29.977898230724531 ], [ -95.672834090287139, 29.977784230630292 ], [ -95.672904090187913, 29.977750230750981 ], [ -95.673117090222888, 29.977687230668362 ], [ -95.673172091098337, 29.97764023081448 ], [ -95.673256091149966, 29.977606230994397 ], [ -95.67337109034915, 29.977577230982789 ], [ -95.673469090344568, 29.977534231163663 ], [ -95.673553091140533, 29.977483231026042 ], [ -95.673681090323271, 29.977442231342593 ], [ -95.674211090633051, 29.977213230823981 ], [ -95.674487090858875, 29.977095230490569 ], [ -95.674764091347683, 29.97697423087531 ], [ -95.675964090917503, 29.976452231015941 ], [ -95.676230091416485, 29.976346230671773 ], [ -95.676545091918911, 29.97623523029057 ], [ -95.676601091415137, 29.976211230516022 ], [ -95.676612091943554, 29.976206231038038 ], [ -95.676695091910275, 29.976185230646252 ], [ -95.676767091239384, 29.976161230525399 ], [ -95.676852091365291, 29.976141230805183 ], [ -95.677186092124757, 29.976039230769558 ], [ -95.677485091593169, 29.975953230546267 ], [ -95.678837091893556, 29.975605230042987 ], [ -95.678928092322607, 29.975585230303508 ], [ -95.678997091886757, 29.975571230719204 ], [ -95.679124092483605, 29.975523230064155 ], [ -95.679767092404745, 29.975369230302878 ], [ -95.680226091940597, 29.975253230000959 ], [ -95.680380092527201, 29.975213230516193 ], [ -95.680527092875451, 29.975170230185714 ], [ -95.681077092456604, 29.975031230624996 ], [ -95.683111092650236, 29.97451422977414 ], [ -95.683197093356739, 29.9744922300318 ], [ -95.683855093649598, 29.974324230249962 ], [ -95.685123093091278, 29.974000229536372 ], [ -95.687234094313553, 29.973459230036735 ], [ -95.687228094528351, 29.973278229656145 ], [ -95.687215094173922, 29.971355229349182 ], [ -95.687211093942665, 29.970824229341041 ], [ -95.687206093638324, 29.970196229035778 ], [ -95.687201093691172, 29.969712228914368 ], [ -95.687200093676637, 29.969437228993034 ], [ -95.687199093564004, 29.967372228429163 ], [ -95.687048093421396, 29.965812228387524 ], [ -95.686999093767326, 29.965361228024143 ], [ -95.687000094032655, 29.964259227977397 ], [ -95.687109094091227, 29.9637892272989 ], [ -95.687133094019842, 29.963713227458737 ], [ -95.687165093299441, 29.963641227354891 ], [ -95.687204093493875, 29.963571227599772 ], [ -95.687249093531051, 29.963505227879985 ], [ -95.687301093899549, 29.963445227622525 ], [ -95.687354093268723, 29.963393227706518 ], [ -95.687420093596103, 29.963339227174192 ], [ -95.687516093653073, 29.963235227869088 ], [ -95.687723093986705, 29.963055227524457 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 356, "Tract": "48201422404", "Area_SqMi": 0.17672675387672321, "total_2009": 35, "total_2010": 12, "total_2011": 22, "total_2012": 15, "total_2013": 18, "total_2014": 26, "total_2015": 29, "total_2016": 22, "total_2017": 13, "total_2018": 6, "total_2019": 6, "total_2020": 6, "age1": 0, "age2": 5, "age3": 2, "earn1": 2, "earn2": 2, "earn3": 3, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 2, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 3, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 4, "race2": 0, "race3": 2, "race4": 1, "race5": 0, "race6": 0, "ethnicity1": 4, "ethnicity2": 3, "edu1": 1, "edu2": 0, "edu3": 2, "edu4": 4, "Shape_Length": 11969.912373207002, "Shape_Area": 4926839.4272208447, "total_2021": 7, "total_2022": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.50559903391671, 29.655436171102309 ], [ -95.50560603289847, 29.654568171197177 ], [ -95.505575033496626, 29.654480170412324 ], [ -95.505191033390446, 29.654463171249699 ], [ -95.503272032742174, 29.654475171329896 ], [ -95.500911031920495, 29.654489170968983 ], [ -95.500580032410667, 29.654497171178988 ], [ -95.500288031981597, 29.654505171119716 ], [ -95.499562031348091, 29.654467171211348 ], [ -95.498442031231974, 29.65450617114676 ], [ -95.498290031858815, 29.654523170927401 ], [ -95.497988031917274, 29.654479170927889 ], [ -95.497704031702597, 29.654376171140761 ], [ -95.497579031743754, 29.65433117134253 ], [ -95.497308031220498, 29.654095171438762 ], [ -95.496666031553275, 29.65360617053441 ], [ -95.496106030792291, 29.653205170472123 ], [ -95.494034030335328, 29.651551170308736 ], [ -95.492693029463638, 29.650602170519473 ], [ -95.492413030056923, 29.651197170885204 ], [ -95.49219702969539, 29.651916170515314 ], [ -95.492135029661412, 29.652477170402822 ], [ -95.492143029562797, 29.652950170734076 ], [ -95.492176030271239, 29.65541717133944 ], [ -95.492205030529249, 29.656999172204852 ], [ -95.49206202993139, 29.657195172221531 ], [ -95.494891030959536, 29.657131171444185 ], [ -95.496311031215129, 29.657161171419837 ], [ -95.497493031754388, 29.657134171588986 ], [ -95.498112031115554, 29.65712017173162 ], [ -95.498554031454262, 29.657123171518979 ], [ -95.498925032040802, 29.657121171614936 ], [ -95.499575032270897, 29.657034171581092 ], [ -95.500141032155966, 29.656902171632815 ], [ -95.50090503182814, 29.656686171402789 ], [ -95.502301032113863, 29.656234171390825 ], [ -95.503311032630251, 29.656073171083207 ], [ -95.504923033459633, 29.656036171509331 ], [ -95.505143033634511, 29.656034170789653 ], [ -95.505581033666573, 29.656034170793792 ], [ -95.505580033524708, 29.655942170904023 ], [ -95.50559903391671, 29.655436171102309 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 357, "Tract": "48201413206", "Area_SqMi": 0.10313749015379554, "total_2009": 30, "total_2010": 32, "total_2011": 63, "total_2012": 53, "total_2013": 58, "total_2014": 53, "total_2015": 42, "total_2016": 338, "total_2017": 388, "total_2018": 43, "total_2019": 682, "total_2020": 624, "age1": 6, "age2": 22, "age3": 8, "earn1": 2, "earn2": 13, "earn3": 21, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 11, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 0, "naics_s19": 9, "naics_s20": 0, "race1": 24, "race2": 5, "race3": 0, "race4": 7, "race5": 0, "race6": 0, "ethnicity1": 21, "ethnicity2": 15, "edu1": 9, "edu2": 2, "edu3": 5, "edu4": 14, "Shape_Length": 8398.058287641923, "Shape_Area": 2875296.7039092388, "total_2021": 836, "total_2022": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.423322014522739, 29.698294182504611 ], [ -95.423567014189956, 29.697399182602194 ], [ -95.421450013666274, 29.696770182037309 ], [ -95.421412013890432, 29.696759182118988 ], [ -95.420682013024177, 29.696750182510822 ], [ -95.420225013550194, 29.696846182226498 ], [ -95.41979801351269, 29.696992182496071 ], [ -95.419411013512388, 29.697204182750692 ], [ -95.418630013545226, 29.697633182242033 ], [ -95.418176013058513, 29.697838182336923 ], [ -95.418066013204552, 29.69751018215522 ], [ -95.418027012388833, 29.697393182800035 ], [ -95.417838012751119, 29.697511182799865 ], [ -95.417232012576989, 29.697736182439861 ], [ -95.416654012124681, 29.69779018291716 ], [ -95.416333012358706, 29.697820182991659 ], [ -95.415633012450485, 29.697836182999989 ], [ -95.415221012102094, 29.69784618315407 ], [ -95.415100011970992, 29.697849182328525 ], [ -95.414784012134035, 29.697833182455952 ], [ -95.41483701156838, 29.697948182687842 ], [ -95.414847012147831, 29.697969182976141 ], [ -95.414972011693962, 29.698068182792753 ], [ -95.415093011705906, 29.698309182895688 ], [ -95.415109011822693, 29.699118183103263 ], [ -95.415107011860016, 29.699554182674071 ], [ -95.415112012395966, 29.699761183358596 ], [ -95.415018012232082, 29.700297183019888 ], [ -95.414885012044408, 29.700733183250687 ], [ -95.418245013309416, 29.700714183092721 ], [ -95.418244012602159, 29.699749183467983 ], [ -95.418821012968479, 29.699756183149308 ], [ -95.418819012683045, 29.70000218295888 ], [ -95.418846013231231, 29.70013018322728 ], [ -95.418962013063322, 29.700162183300311 ], [ -95.419671013232474, 29.700167182863265 ], [ -95.419940013757014, 29.700205182630942 ], [ -95.421396014249169, 29.70019218294728 ], [ -95.421500014159676, 29.700149183227648 ], [ -95.421651014324681, 29.700149183254471 ], [ -95.421641013418153, 29.700388182850233 ], [ -95.422901014071925, 29.70037218325735 ], [ -95.422902014589255, 29.700074183113784 ], [ -95.422989014527587, 29.699527182559123 ], [ -95.423092014188825, 29.699081182812421 ], [ -95.423322014522739, 29.698294182504611 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 358, "Tract": "48201413205", "Area_SqMi": 0.11591016733009309, "total_2009": 1784, "total_2010": 1784, "total_2011": 1960, "total_2012": 2067, "total_2013": 2090, "total_2014": 2135, "total_2015": 2370, "total_2016": 2519, "total_2017": 1758, "total_2018": 1736, "total_2019": 1673, "total_2020": 1717, "age1": 271, "age2": 982, "age3": 342, "earn1": 112, "earn2": 300, "earn3": 1183, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 26, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 8, "naics_s12": 23, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 1414, "naics_s17": 31, "naics_s18": 58, "naics_s19": 29, "naics_s20": 0, "race1": 998, "race2": 334, "race3": 12, "race4": 222, "race5": 5, "race6": 24, "ethnicity1": 1078, "ethnicity2": 517, "edu1": 199, "edu2": 299, "edu3": 416, "edu4": 410, "Shape_Length": 7636.1023658181166, "Shape_Area": 3231377.0829289486, "total_2021": 1762, "total_2022": 1595 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.423025014601961, 29.706134184137955 ], [ -95.422994014856897, 29.704947183610397 ], [ -95.422989013998404, 29.704772183490359 ], [ -95.422984014120956, 29.704587183636892 ], [ -95.422983014492999, 29.704542184234469 ], [ -95.422979014432286, 29.704394183435895 ], [ -95.422963014900972, 29.703799183341808 ], [ -95.422954014275632, 29.70344918354132 ], [ -95.422941013969833, 29.702953183169857 ], [ -95.422940014099609, 29.702915183930273 ], [ -95.422937014574856, 29.70274418363103 ], [ -95.422926014400048, 29.701966183482305 ], [ -95.422915014052862, 29.701242183493886 ], [ -95.422903014553455, 29.700513182970429 ], [ -95.422901014071925, 29.70037218325735 ], [ -95.421641013418153, 29.700388182850233 ], [ -95.421651014324681, 29.700149183254471 ], [ -95.421500014159676, 29.700149183227648 ], [ -95.421396014249169, 29.70019218294728 ], [ -95.419940013757014, 29.700205182630942 ], [ -95.419671013232474, 29.700167182863265 ], [ -95.418962013063322, 29.700162183300311 ], [ -95.418846013231231, 29.70013018322728 ], [ -95.418819012683045, 29.70000218295888 ], [ -95.418821012968479, 29.699756183149308 ], [ -95.418244012602159, 29.699749183467983 ], [ -95.418245013309416, 29.700714183092721 ], [ -95.41824201282752, 29.701075183293572 ], [ -95.41822901332884, 29.701835183836607 ], [ -95.418244013452934, 29.702534183315851 ], [ -95.418249012647095, 29.702764183520056 ], [ -95.418274012860351, 29.703224183427103 ], [ -95.418279012685488, 29.703593183782189 ], [ -95.418277013277716, 29.703989183483731 ], [ -95.41827601316237, 29.704344183577803 ], [ -95.418276012755229, 29.704403183798785 ], [ -95.418299013359388, 29.705280184535869 ], [ -95.418295013514481, 29.706169184250584 ], [ -95.420007013319051, 29.706153183873369 ], [ -95.420098014149502, 29.706158184534367 ], [ -95.420795014021408, 29.706152184006015 ], [ -95.422666014752835, 29.706136184437486 ], [ -95.422954014690376, 29.706134184278966 ], [ -95.423025014601961, 29.706134184137955 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 359, "Tract": "48201413203", "Area_SqMi": 0.096389639806689881, "total_2009": 254, "total_2010": 288, "total_2011": 430, "total_2012": 442, "total_2013": 436, "total_2014": 467, "total_2015": 506, "total_2016": 547, "total_2017": 583, "total_2018": 594, "total_2019": 526, "total_2020": 558, "age1": 235, "age2": 275, "age3": 98, "earn1": 204, "earn2": 235, "earn3": 169, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 41, "naics_s07": 113, "naics_s08": 130, "naics_s09": 0, "naics_s10": 50, "naics_s11": 27, "naics_s12": 11, "naics_s13": 1, "naics_s14": 1, "naics_s15": 38, "naics_s16": 21, "naics_s17": 6, "naics_s18": 158, "naics_s19": 9, "naics_s20": 0, "race1": 388, "race2": 183, "race3": 1, "race4": 28, "race5": 0, "race6": 8, "ethnicity1": 418, "ethnicity2": 190, "edu1": 95, "edu2": 85, "edu3": 99, "edu4": 94, "Shape_Length": 6758.7052677724159, "Shape_Area": 2687178.1852932251, "total_2021": 601, "total_2022": 608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.427455015615124, 29.706098183611353 ], [ -95.427444015805705, 29.705232183616168 ], [ -95.427431015187651, 29.704878183853463 ], [ -95.427434015445044, 29.70478818409855 ], [ -95.427429015827073, 29.704407183237873 ], [ -95.427426015800904, 29.703951183463111 ], [ -95.427425015626412, 29.703834183820035 ], [ -95.427401015856631, 29.70303918327993 ], [ -95.427393015408185, 29.702621183104014 ], [ -95.427386015716934, 29.702229182919869 ], [ -95.427366015174485, 29.701409182826033 ], [ -95.427360014946544, 29.700552182907145 ], [ -95.425896015138306, 29.700567183287095 ], [ -95.425223014797041, 29.700595182740063 ], [ -95.425172014422273, 29.701009183059998 ], [ -95.424413014635647, 29.701192183525247 ], [ -95.422915014052862, 29.701242183493886 ], [ -95.422926014400048, 29.701966183482305 ], [ -95.422937014574856, 29.70274418363103 ], [ -95.422940014099609, 29.702915183930273 ], [ -95.422941013969833, 29.702953183169857 ], [ -95.422954014275632, 29.70344918354132 ], [ -95.422963014900972, 29.703799183341808 ], [ -95.422979014432286, 29.704394183435895 ], [ -95.422983014492999, 29.704542184234469 ], [ -95.422984014120956, 29.704587183636892 ], [ -95.422989013998404, 29.704772183490359 ], [ -95.422994014856897, 29.704947183610397 ], [ -95.423025014601961, 29.706134184137955 ], [ -95.424494014841031, 29.706114184164274 ], [ -95.425938015506532, 29.706096183652331 ], [ -95.426396015566553, 29.706105184058085 ], [ -95.426454015348511, 29.706107183943018 ], [ -95.42666501582967, 29.706105183767114 ], [ -95.427455015615124, 29.706098183611353 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 360, "Tract": "48201542003", "Area_SqMi": 0.45200360912403093, "total_2009": 73, "total_2010": 49, "total_2011": 65, "total_2012": 177, "total_2013": 216, "total_2014": 243, "total_2015": 238, "total_2016": 303, "total_2017": 334, "total_2018": 244, "total_2019": 192, "total_2020": 216, "age1": 40, "age2": 95, "age3": 29, "earn1": 57, "earn2": 53, "earn3": 54, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 18, "naics_s06": 0, "naics_s07": 63, "naics_s08": 13, "naics_s09": 2, "naics_s10": 5, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 6, "naics_s17": 0, "naics_s18": 28, "naics_s19": 12, "naics_s20": 0, "race1": 125, "race2": 17, "race3": 1, "race4": 21, "race5": 0, "race6": 0, "ethnicity1": 88, "ethnicity2": 76, "edu1": 29, "edu2": 33, "edu3": 32, "edu4": 30, "Shape_Length": 15401.301699443802, "Shape_Area": 12601087.010469375, "total_2021": 170, "total_2022": 164 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.72045709487908, 29.814915196315937 ], [ -95.720452094995508, 29.814277196325577 ], [ -95.720423094879678, 29.813725195653237 ], [ -95.720413094857975, 29.813091196074186 ], [ -95.720411094972917, 29.812708195421934 ], [ -95.720408094840266, 29.812163195405404 ], [ -95.720402095026188, 29.810811195213855 ], [ -95.720332095397907, 29.810814195231195 ], [ -95.719907094894552, 29.810839195287013 ], [ -95.719742094549773, 29.810823195701005 ], [ -95.719534094618524, 29.810791195377799 ], [ -95.719153095063533, 29.810679195736935 ], [ -95.719029095201918, 29.810611195835609 ], [ -95.71834709475462, 29.810134195162458 ], [ -95.718246094989112, 29.810067195218565 ], [ -95.717853094151351, 29.809844195461288 ], [ -95.717756094390467, 29.809784195036379 ], [ -95.717513094378532, 29.809621195153817 ], [ -95.716517094115346, 29.80889919516552 ], [ -95.716091094379777, 29.808611195166225 ], [ -95.715930094334226, 29.808501195318591 ], [ -95.715736093435211, 29.808389195449301 ], [ -95.715412093561795, 29.808377195547553 ], [ -95.715159093742571, 29.808378195001261 ], [ -95.714488093554493, 29.808413195230855 ], [ -95.714045093567705, 29.808426195085815 ], [ -95.71321109276272, 29.808441195612755 ], [ -95.713150093606288, 29.808374194826289 ], [ -95.712714092787849, 29.808374195103262 ], [ -95.712501092557929, 29.808375195526548 ], [ -95.712483092904648, 29.807496194898505 ], [ -95.71248209346868, 29.807435195062496 ], [ -95.711700093220969, 29.807465194724763 ], [ -95.707895091688556, 29.807547194769221 ], [ -95.704091090393277, 29.80763019558502 ], [ -95.703940090807194, 29.807626195392402 ], [ -95.703940090649027, 29.807678195604939 ], [ -95.703940090511523, 29.807807195631767 ], [ -95.703939090570969, 29.808086195739037 ], [ -95.703939090530312, 29.808159195320123 ], [ -95.703938091398257, 29.808700195639787 ], [ -95.703936091340765, 29.808822195710402 ], [ -95.703929091129737, 29.808928195607503 ], [ -95.703932090631113, 29.809231196004266 ], [ -95.703941091004936, 29.809328196138036 ], [ -95.703939090594034, 29.809520195563216 ], [ -95.703935090886844, 29.809668195727106 ], [ -95.703932091366283, 29.809810195770744 ], [ -95.703938090727348, 29.810004196092549 ], [ -95.703937090975487, 29.811472195865729 ], [ -95.703942090855207, 29.811785196117761 ], [ -95.7039470907186, 29.811837196437033 ], [ -95.70400909065792, 29.812425195967936 ], [ -95.70406709134329, 29.812960196132785 ], [ -95.704047091446441, 29.813100196805138 ], [ -95.703929091289467, 29.813946196905341 ], [ -95.703917091247405, 29.813998196258439 ], [ -95.703850090633168, 29.814319196604817 ], [ -95.703734090645654, 29.814849196786696 ], [ -95.703648091446254, 29.815050197260728 ], [ -95.703683091029802, 29.815057197061087 ], [ -95.703772090697456, 29.815060196528563 ], [ -95.703887091633391, 29.815065197135034 ], [ -95.705077091443513, 29.815049196781064 ], [ -95.705925091308742, 29.81506919689895 ], [ -95.706960091664754, 29.815064196441298 ], [ -95.708100092658583, 29.815052196948756 ], [ -95.710086092256049, 29.815031196663597 ], [ -95.710323093262929, 29.815029196473802 ], [ -95.712600093855428, 29.815005196978575 ], [ -95.712841093926187, 29.815003196526018 ], [ -95.71449609383572, 29.814983196451646 ], [ -95.71671609412121, 29.814957196017851 ], [ -95.717070094831541, 29.81495419677325 ], [ -95.717444094116516, 29.814951196116468 ], [ -95.718287094487209, 29.814935195983185 ], [ -95.718928094678589, 29.81492919676321 ], [ -95.72045709487908, 29.814915196315937 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 361, "Tract": "48201555403", "Area_SqMi": 2.6641120912140566, "total_2009": 1130, "total_2010": 1205, "total_2011": 1139, "total_2012": 997, "total_2013": 1044, "total_2014": 1056, "total_2015": 1304, "total_2016": 1527, "total_2017": 1636, "total_2018": 1619, "total_2019": 1484, "total_2020": 1473, "age1": 418, "age2": 788, "age3": 390, "earn1": 405, "earn2": 543, "earn3": 648, "naics_s01": 0, "naics_s02": 9, "naics_s03": 0, "naics_s04": 87, "naics_s05": 1, "naics_s06": 60, "naics_s07": 92, "naics_s08": 29, "naics_s09": 0, "naics_s10": 112, "naics_s11": 32, "naics_s12": 154, "naics_s13": 0, "naics_s14": 154, "naics_s15": 14, "naics_s16": 305, "naics_s17": 2, "naics_s18": 434, "naics_s19": 111, "naics_s20": 0, "race1": 1382, "race2": 127, "race3": 8, "race4": 45, "race5": 2, "race6": 32, "ethnicity1": 1181, "ethnicity2": 415, "edu1": 232, "edu2": 308, "edu3": 359, "edu4": 279, "Shape_Length": 38743.323701008543, "Shape_Area": 74270885.429633737, "total_2021": 1579, "total_2022": 1596 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.645701090091961, 30.119186260700452 ], [ -95.645685090379942, 30.119148261040291 ], [ -95.645407089711142, 30.118646260301745 ], [ -95.645000090094882, 30.118014260196087 ], [ -95.644358090202616, 30.116932260223717 ], [ -95.643878089534724, 30.116169260267583 ], [ -95.643776089680372, 30.115997260421555 ], [ -95.643016089637982, 30.114736259521965 ], [ -95.642618089623156, 30.11408426010977 ], [ -95.642419089517048, 30.113689259907584 ], [ -95.642297088890828, 30.113428259546463 ], [ -95.642100088929752, 30.112928259785217 ], [ -95.641894088645742, 30.112387259110537 ], [ -95.641676089158949, 30.111815258941856 ], [ -95.641466089121124, 30.111219259336096 ], [ -95.641230088502496, 30.11054625936713 ], [ -95.640949089044867, 30.109663258672583 ], [ -95.640754088228107, 30.10897825834347 ], [ -95.640489088716336, 30.108199258920134 ], [ -95.640318087841592, 30.107747258719218 ], [ -95.640028087741854, 30.107149258589377 ], [ -95.639820088488975, 30.106656258421015 ], [ -95.639508087790716, 30.10597325827263 ], [ -95.639468087910814, 30.10586425826855 ], [ -95.639073087434127, 30.104975258016431 ], [ -95.638763087386096, 30.104139257529933 ], [ -95.638729087295147, 30.104015257780663 ], [ -95.638644087729418, 30.1036102574684 ], [ -95.638576088106873, 30.10346525760237 ], [ -95.638505087828037, 30.10313825735847 ], [ -95.638444087156287, 30.102751257807853 ], [ -95.638118087249694, 30.101262257439362 ], [ -95.637832086817497, 30.100579256948034 ], [ -95.63749408731033, 30.09980525731288 ], [ -95.637363087300415, 30.099457256861477 ], [ -95.637128087201702, 30.099151256949607 ], [ -95.636802087099142, 30.098631256819541 ], [ -95.636170086430226, 30.097908256617629 ], [ -95.635793086633768, 30.097572256336292 ], [ -95.635620086308251, 30.097245256402839 ], [ -95.635382086804398, 30.096871256304894 ], [ -95.635170086371545, 30.096631256755547 ], [ -95.634608086256833, 30.095887256685668 ], [ -95.634496085773634, 30.095706256483787 ], [ -95.634373086107345, 30.095525256109184 ], [ -95.634091086034175, 30.094949256025753 ], [ -95.63392508559987, 30.094481255966212 ], [ -95.63371908577696, 30.093798255618644 ], [ -95.633437086137207, 30.092607256173686 ], [ -95.633204086230919, 30.091752255508737 ], [ -95.63296408607016, 30.090988255412928 ], [ -95.63274208581592, 30.090271254889029 ], [ -95.632636085210407, 30.089954255047171 ], [ -95.632464085721054, 30.089421254701758 ], [ -95.632430085111139, 30.089430254861348 ], [ -95.631624085319743, 30.089537254895426 ], [ -95.630493084527586, 30.090139255410641 ], [ -95.629923084677429, 30.090441255796438 ], [ -95.629295084278738, 30.090810255862866 ], [ -95.627490084217101, 30.091773256083517 ], [ -95.62639908373842, 30.092365256235755 ], [ -95.626098083555107, 30.092543256342495 ], [ -95.625682084047568, 30.09278525642334 ], [ -95.625264083659303, 30.093031256381259 ], [ -95.624860083555845, 30.093235256329042 ], [ -95.624516084047002, 30.09340825578812 ], [ -95.624130083775384, 30.093603256214372 ], [ -95.623157082758709, 30.094078256287776 ], [ -95.622924083262362, 30.094191256502693 ], [ -95.622529083329056, 30.094413256856335 ], [ -95.621858082924618, 30.094691256595546 ], [ -95.620599082646478, 30.095241256707133 ], [ -95.619302082498791, 30.095786256519212 ], [ -95.618019081825551, 30.096350257346771 ], [ -95.616992081807936, 30.096799256711417 ], [ -95.61597608119348, 30.09723925735377 ], [ -95.614936081208327, 30.097640257179421 ], [ -95.61395908069656, 30.098088257952273 ], [ -95.613632080925072, 30.098205257749626 ], [ -95.613608080868701, 30.09821725774831 ], [ -95.614485080916239, 30.099725257671992 ], [ -95.615246081213911, 30.101087257789729 ], [ -95.616065081462722, 30.102508258514103 ], [ -95.61692908184672, 30.104018258438128 ], [ -95.61867508299467, 30.107113259102984 ], [ -95.61868808291463, 30.107139259526711 ], [ -95.619281082573494, 30.108312259571207 ], [ -95.620360083332884, 30.110612259918089 ], [ -95.621675083793704, 30.113262260370124 ], [ -95.622198083574858, 30.114310260650722 ], [ -95.622679084049608, 30.115248260820202 ], [ -95.624168085007796, 30.118379261671205 ], [ -95.624973084510145, 30.120028262020309 ], [ -95.625477085528559, 30.121061261539662 ], [ -95.626308084984657, 30.122797262501958 ], [ -95.627003085750474, 30.124238262794549 ], [ -95.627727085879243, 30.125739263017245 ], [ -95.628406086059442, 30.127073263019959 ], [ -95.628583085740317, 30.127429263179096 ], [ -95.62859308585459, 30.127449263140118 ], [ -95.628693085852078, 30.127663263070996 ], [ -95.628745085893428, 30.127775262861448 ], [ -95.628822086768139, 30.1277562630837 ], [ -95.628911086603168, 30.127703262876263 ], [ -95.628955086746487, 30.127708262638098 ], [ -95.629221086760069, 30.127802262687705 ], [ -95.629366085913787, 30.127835262729004 ], [ -95.629505086685228, 30.12784026311704 ], [ -95.629663086352366, 30.127818262983936 ], [ -95.629815086035521, 30.127763263327211 ], [ -95.630005086838835, 30.127648262955109 ], [ -95.630309086891984, 30.127533262911697 ], [ -95.630404086828918, 30.12748326303797 ], [ -95.630644086728381, 30.127291262673065 ], [ -95.630752086467453, 30.127236262591296 ], [ -95.630859087295846, 30.127209262568062 ], [ -95.631099086629163, 30.12718126271206 ], [ -95.631232086508604, 30.127143262395094 ], [ -95.63136508717794, 30.12707726297776 ], [ -95.631460086557439, 30.127006263116044 ], [ -95.631612086659658, 30.126868262663166 ], [ -95.631656086921922, 30.126852262308656 ], [ -95.631713087025105, 30.126841262415471 ], [ -95.632194087096323, 30.126808262764669 ], [ -95.63231408747103, 30.126792262705912 ], [ -95.632775087564326, 30.126698262412617 ], [ -95.633041087677867, 30.126589262297376 ], [ -95.633104087738189, 30.126583262925166 ], [ -95.633319087085539, 30.126600262546997 ], [ -95.633370087035118, 30.126589262485542 ], [ -95.633421087653829, 30.126564262930618 ], [ -95.6336170878307, 30.126468262637342 ], [ -95.633680087301144, 30.126457262262459 ], [ -95.633926087548502, 30.126446262593472 ], [ -95.63399008706071, 30.126418262451647 ], [ -95.634047087835668, 30.126369262981473 ], [ -95.634072087308724, 30.126314262473379 ], [ -95.634078087787898, 30.126083262199931 ], [ -95.634097088047369, 30.12599526256183 ], [ -95.634142087220454, 30.125929262048235 ], [ -95.634224087977216, 30.125874262011699 ], [ -95.634546087845322, 30.12572626197646 ], [ -95.634730087804982, 30.12561126194894 ], [ -95.634787087681076, 30.125589262069941 ], [ -95.634850087670742, 30.125589262578711 ], [ -95.634907088136032, 30.125600262367922 ], [ -95.635021088096636, 30.125677262554962 ], [ -95.6352920873952, 30.125908262440326 ], [ -95.635506087946567, 30.126109262065956 ], [ -95.635754088230001, 30.126342262228231 ], [ -95.635855087558653, 30.126397262174507 ], [ -95.635963088001745, 30.126430262877001 ], [ -95.636116087855953, 30.126432262873266 ], [ -95.636279087982999, 30.126436262727683 ], [ -95.636620087893249, 30.126425262199305 ], [ -95.636759088495296, 30.126403262450093 ], [ -95.636873087937147, 30.126365262537014 ], [ -95.636955088180272, 30.126315262480126 ], [ -95.636982088042245, 30.126286262690424 ], [ -95.637006087883265, 30.126260262679661 ], [ -95.637025088164265, 30.126183262289395 ], [ -95.637012088479267, 30.126134262160548 ], [ -95.63693008868286, 30.125952262728422 ], [ -95.636924088172719, 30.125837262240573 ], [ -95.636930088504442, 30.125771262189698 ], [ -95.636956088081277, 30.125716262717546 ], [ -95.636994087963856, 30.125667262542702 ], [ -95.637051088809315, 30.125617261870758 ], [ -95.637171088398318, 30.125551262058636 ], [ -95.637563087918252, 30.125430262262647 ], [ -95.637861088662461, 30.12531226252549 ], [ -95.6378880880781, 30.125298261990313 ], [ -95.637993088728706, 30.125216262554225 ], [ -95.638088088259622, 30.1251122620498 ], [ -95.638113088352739, 30.12500726178417 ], [ -95.638120088496663, 30.12494726208169 ], [ -95.638107088133054, 30.124903261842835 ], [ -95.638063088789337, 30.124876262269883 ], [ -95.638006088617246, 30.124859262236217 ], [ -95.637810088714033, 30.124831262539914 ], [ -95.637715087922018, 30.124771261632969 ], [ -95.637633088686201, 30.124683261814212 ], [ -95.637614088145625, 30.124634262415899 ], [ -95.637627088211531, 30.124529261843893 ], [ -95.637665088588079, 30.124430262414005 ], [ -95.637696088355554, 30.12439726244089 ], [ -95.63781608869381, 30.124320261586575 ], [ -95.637943088783388, 30.124254261920694 ], [ -95.637993088082425, 30.124249261980548 ], [ -95.638107088148303, 30.124257262101651 ], [ -95.638310088556338, 30.124271261800306 ], [ -95.638379088845042, 30.124260262142673 ], [ -95.638468088570136, 30.124227262225332 ], [ -95.638512089028154, 30.124123261996107 ], [ -95.638507088200214, 30.123956262253497 ], [ -95.638506088132303, 30.123919262076651 ], [ -95.638518088887082, 30.123831261989871 ], [ -95.638499088560124, 30.123743261428153 ], [ -95.638462088884708, 30.123666261841354 ], [ -95.638398088357349, 30.123589261548609 ], [ -95.638228088693054, 30.123446262104757 ], [ -95.638190088632442, 30.123391261893278 ], [ -95.638177088901998, 30.123336262044699 ], [ -95.638190088225116, 30.123281261358716 ], [ -95.638215088560457, 30.123260261586449 ], [ -95.63827808872098, 30.123243262048987 ], [ -95.63837308850087, 30.123254261666581 ], [ -95.638449088065727, 30.12328226133069 ], [ -95.638494088489367, 30.123308261498277 ], [ -95.638632088149024, 30.123386261935206 ], [ -95.638689088637236, 30.123403261739377 ], [ -95.638759088829062, 30.12339726143632 ], [ -95.638769088665796, 30.12339126157261 ], [ -95.638835088951495, 30.123359261489146 ], [ -95.638866089020155, 30.123326262160216 ], [ -95.638885088195721, 30.123282262043688 ], [ -95.638892088715806, 30.123194261497737 ], [ -95.638867088338287, 30.122770261294214 ], [ -95.638898088702035, 30.122638261933755 ], [ -95.638924088641375, 30.122584262033143 ], [ -95.639044088829834, 30.122452261186417 ], [ -95.639132089143558, 30.122386261435924 ], [ -95.639202088662117, 30.122347261190892 ], [ -95.639256088435204, 30.122338261637623 ], [ -95.63972708899685, 30.122265261530174 ], [ -95.639860089294942, 30.12222726188724 ], [ -95.639986088816855, 30.122155261729187 ], [ -95.640125088611782, 30.12205526143639 ], [ -95.640163089355056, 30.122029261361785 ], [ -95.640385088926763, 30.121831261126246 ], [ -95.640525089232767, 30.121679261130264 ], [ -95.640644089187575, 30.121551261736379 ], [ -95.640891089243851, 30.121254261475727 ], [ -95.641106088770627, 30.120974261470376 ], [ -95.641250088646757, 30.120803261119999 ], [ -95.641270088858548, 30.120781261403 ], [ -95.641346089262584, 30.12072626159237 ], [ -95.641403088912625, 30.120715261277997 ], [ -95.641466088904565, 30.120715261471599 ], [ -95.641523089244359, 30.120743261523081 ], [ -95.641567089579098, 30.120798260849316 ], [ -95.641586088939292, 30.1208342610758 ], [ -95.641618088715248, 30.12089726095752 ], [ -95.64170008893872, 30.12113326125392 ], [ -95.641719089063258, 30.121161260860923 ], [ -95.641744089616438, 30.121177260914941 ], [ -95.641808089599394, 30.121194260926217 ], [ -95.641890089068866, 30.12118826082008 ], [ -95.64197808933946, 30.121161261440946 ], [ -95.642067089506838, 30.121084260809237 ], [ -95.642098089130613, 30.120996260930593 ], [ -95.642096089075537, 30.120976261358081 ], [ -95.642092088925509, 30.120930261526613 ], [ -95.642061089150815, 30.120853261068461 ], [ -95.641966089079816, 30.120699261042379 ], [ -95.641953089789268, 30.120650261337346 ], [ -95.641950089623151, 30.1206222614443 ], [ -95.641947089665024, 30.12057826123122 ], [ -95.641948089586393, 30.120562261505235 ], [ -95.641953089537466, 30.120512260897939 ], [ -95.641991089104437, 30.120474260720773 ], [ -95.642020089128081, 30.12047126109826 ], [ -95.642045089265878, 30.120474260659936 ], [ -95.642156089688655, 30.120479261191001 ], [ -95.642168089609896, 30.120479261161737 ], [ -95.642364089276271, 30.120512260866999 ], [ -95.642522089909406, 30.120529260780021 ], [ -95.642592089881475, 30.120523261232844 ], [ -95.642642089038688, 30.120501261124218 ], [ -95.64272508971969, 30.120446261119803 ], [ -95.64280108909243, 30.120364261458324 ], [ -95.642848089424263, 30.120274261080077 ], [ -95.642953089991991, 30.1200782610597 ], [ -95.643047089217234, 30.120012260531077 ], [ -95.643104089260675, 30.120001261322354 ], [ -95.6431170890598, 30.120002260860645 ], [ -95.643136089280489, 30.120003261254471 ], [ -95.643218089583286, 30.120012260742552 ], [ -95.64330708977495, 30.120062261024472 ], [ -95.643540090132191, 30.120293261080796 ], [ -95.64366108962038, 30.120370260911788 ], [ -95.643711089818481, 30.120386260858105 ], [ -95.643806089470786, 30.120392261395185 ], [ -95.643908089476042, 30.12037826129405 ], [ -95.643932089722952, 30.12037526104216 ], [ -95.644103089859655, 30.120315261397355 ], [ -95.644356090103742, 30.120172260974812 ], [ -95.644533090086966, 30.120057260883183 ], [ -95.644755089763365, 30.119892260523606 ], [ -95.644944090503969, 30.119732260404369 ], [ -95.645090089753282, 30.119595260480015 ], [ -95.645140089669425, 30.119562260782605 ], [ -95.645242089755584, 30.119534261106345 ], [ -95.645412090171263, 30.119513260545776 ], [ -95.645437090643668, 30.119619261139292 ], [ -95.645506090380422, 30.119624260914996 ], [ -95.645533090655903, 30.11956426058288 ], [ -95.645683090400553, 30.11922626065904 ], [ -95.645701090091961, 30.119186260700452 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 362, "Tract": "48201330101", "Area_SqMi": 0.44520195058351031, "total_2009": 115, "total_2010": 10, "total_2011": 10, "total_2012": 37, "total_2013": 177, "total_2014": 15, "total_2015": 8, "total_2016": 16, "total_2017": 13, "total_2018": 10, "total_2019": 17, "total_2020": 19, "age1": 5, "age2": 7, "age3": 3, "earn1": 4, "earn2": 5, "earn3": 6, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 2, "naics_s19": 1, "naics_s20": 0, "race1": 9, "race2": 4, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 8, "ethnicity2": 7, "edu1": 2, "edu2": 4, "edu3": 2, "edu4": 2, "Shape_Length": 15004.141036225088, "Shape_Area": 12411468.411514595, "total_2021": 12, "total_2022": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430029013914847, 29.641781170343354 ], [ -95.43001601345803, 29.640798170224528 ], [ -95.430022013142988, 29.6407531709628 ], [ -95.430019013406593, 29.640620170339314 ], [ -95.429999013588485, 29.640268170052227 ], [ -95.429976013334795, 29.639865170376808 ], [ -95.429956013709486, 29.639124170547095 ], [ -95.429938013386405, 29.63839817049821 ], [ -95.429916012921154, 29.637640170072331 ], [ -95.429896013333845, 29.636906170104748 ], [ -95.429888012691436, 29.636144169356562 ], [ -95.429861013355705, 29.635242169328187 ], [ -95.429840013002917, 29.634430169443991 ], [ -95.429825013410678, 29.633357169091681 ], [ -95.429790013437582, 29.63304916905831 ], [ -95.429716013013959, 29.632789168530977 ], [ -95.429687012562638, 29.632534168792898 ], [ -95.429664012476692, 29.631791168356209 ], [ -95.429646012445673, 29.631089168327758 ], [ -95.429594012310204, 29.628955168152089 ], [ -95.429569012493701, 29.628272168284489 ], [ -95.429566012714545, 29.627855167684427 ], [ -95.428095012748201, 29.62787316787642 ], [ -95.425305011530526, 29.627933168382224 ], [ -95.424694011942961, 29.627935168021711 ], [ -95.422840011240481, 29.627966168183839 ], [ -95.421861011181349, 29.627996168596734 ], [ -95.42163701097364, 29.628000168033438 ], [ -95.421741010612976, 29.628284167926008 ], [ -95.421736010812069, 29.62842016818151 ], [ -95.421716010657434, 29.628966168582906 ], [ -95.421766010368103, 29.629236168067202 ], [ -95.421785010497146, 29.629461168438564 ], [ -95.421832010895386, 29.631057168475753 ], [ -95.421867011138659, 29.632221168945261 ], [ -95.421882011340898, 29.634144169736427 ], [ -95.42188501087017, 29.634404169620097 ], [ -95.421935011144527, 29.635509169944712 ], [ -95.42196301114177, 29.636711169923071 ], [ -95.421972011168066, 29.637125169847721 ], [ -95.421998011697553, 29.638236170562816 ], [ -95.422048011765298, 29.639247170672679 ], [ -95.422054011610953, 29.640276170778744 ], [ -95.422058011126197, 29.640476170412668 ], [ -95.422080011150655, 29.641340170598632 ], [ -95.422317011505186, 29.641501170909976 ], [ -95.422745011974982, 29.641484170619293 ], [ -95.425651011951032, 29.641435170493583 ], [ -95.427026013093354, 29.64144217089013 ], [ -95.427179012779632, 29.641457170585156 ], [ -95.427654013215189, 29.64150217055812 ], [ -95.427822013058062, 29.641531170586333 ], [ -95.427949013298303, 29.641553170805718 ], [ -95.428023013069705, 29.641570170932717 ], [ -95.428206013044957, 29.641612170429013 ], [ -95.428941012854764, 29.641736170730166 ], [ -95.429048013388069, 29.64174617040829 ], [ -95.429403013714733, 29.641781170530248 ], [ -95.429742013788285, 29.641791171018713 ], [ -95.430029013914847, 29.641781170343354 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 363, "Tract": "48201334102", "Area_SqMi": 4.7063990254828179, "total_2009": 1167, "total_2010": 1215, "total_2011": 1229, "total_2012": 1297, "total_2013": 1299, "total_2014": 1724, "total_2015": 1808, "total_2016": 1876, "total_2017": 2201, "total_2018": 2074, "total_2019": 2122, "total_2020": 1971, "age1": 245, "age2": 1240, "age3": 700, "earn1": 360, "earn2": 482, "earn3": 1343, "naics_s01": 0, "naics_s02": 0, "naics_s03": 68, "naics_s04": 161, "naics_s05": 109, "naics_s06": 86, "naics_s07": 97, "naics_s08": 547, "naics_s09": 0, "naics_s10": 6, "naics_s11": 17, "naics_s12": 73, "naics_s13": 0, "naics_s14": 319, "naics_s15": 4, "naics_s16": 434, "naics_s17": 0, "naics_s18": 20, "naics_s19": 244, "naics_s20": 0, "race1": 1106, "race2": 878, "race3": 15, "race4": 148, "race5": 5, "race6": 33, "ethnicity1": 1525, "ethnicity2": 660, "edu1": 465, "edu2": 582, "edu3": 602, "edu4": 291, "Shape_Length": 55774.084600392132, "Shape_Area": 131206349.74802516, "total_2021": 1864, "total_2022": 2185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446603017943858, 29.653904172421981 ], [ -95.446597018363221, 29.653518172491292 ], [ -95.446594018262047, 29.653224172329729 ], [ -95.446587017757722, 29.65224517199821 ], [ -95.446582018270419, 29.651691171978666 ], [ -95.446568018593553, 29.650894172225385 ], [ -95.446559018156506, 29.65035617221875 ], [ -95.446517017463293, 29.647876171452328 ], [ -95.446503017668206, 29.647103171241188 ], [ -95.44648801809204, 29.646334171167144 ], [ -95.44647601775479, 29.645748171449842 ], [ -95.446438017782157, 29.643910170489011 ], [ -95.446381017528026, 29.64112217039154 ], [ -95.446350018019359, 29.638944169354485 ], [ -95.446344017349844, 29.638516169960756 ], [ -95.446329017025775, 29.637527169454113 ], [ -95.446325017073178, 29.637255169588713 ], [ -95.446315017320643, 29.636572169346831 ], [ -95.446291017399389, 29.634173168472664 ], [ -95.446232017083048, 29.630636167482116 ], [ -95.44621701756536, 29.629398167319426 ], [ -95.446187017204338, 29.628760167536196 ], [ -95.446158016728702, 29.62802516698212 ], [ -95.446164016754054, 29.627572167663899 ], [ -95.445544016597836, 29.62758616712442 ], [ -95.444980016755807, 29.627596167654161 ], [ -95.443945016298215, 29.627604167514718 ], [ -95.441711015507579, 29.627654167198997 ], [ -95.44070801592207, 29.627664167354677 ], [ -95.43965301538627, 29.62767416751392 ], [ -95.438717014782497, 29.627694167761522 ], [ -95.43802701497944, 29.627708167884983 ], [ -95.435438014129815, 29.62777216774732 ], [ -95.435343014322584, 29.6277641678234 ], [ -95.434766013750206, 29.627757167897684 ], [ -95.434466014442293, 29.627760167742249 ], [ -95.430879013368894, 29.627826168153614 ], [ -95.429566012714545, 29.627855167684427 ], [ -95.429569012493701, 29.628272168284489 ], [ -95.429594012310204, 29.628955168152089 ], [ -95.429646012445673, 29.631089168327758 ], [ -95.429664012476692, 29.631791168356209 ], [ -95.429687012562638, 29.632534168792898 ], [ -95.429716013013959, 29.632789168530977 ], [ -95.429790013437582, 29.63304916905831 ], [ -95.429825013410678, 29.633357169091681 ], [ -95.429840013002917, 29.634430169443991 ], [ -95.429861013355705, 29.635242169328187 ], [ -95.429888012691436, 29.636144169356562 ], [ -95.429896013333845, 29.636906170104748 ], [ -95.429916012921154, 29.637640170072331 ], [ -95.429938013386405, 29.63839817049821 ], [ -95.429956013709486, 29.639124170547095 ], [ -95.429976013334795, 29.639865170376808 ], [ -95.429999013588485, 29.640268170052227 ], [ -95.430019013406593, 29.640620170339314 ], [ -95.430022013142988, 29.6407531709628 ], [ -95.43001601345803, 29.640798170224528 ], [ -95.430029013914847, 29.641781170343354 ], [ -95.429742013788285, 29.641791171018713 ], [ -95.429403013714733, 29.641781170530248 ], [ -95.429048013388069, 29.64174617040829 ], [ -95.428941012854764, 29.641736170730166 ], [ -95.428206013044957, 29.641612170429013 ], [ -95.428023013069705, 29.641570170932717 ], [ -95.427949013298303, 29.641553170805718 ], [ -95.427822013058062, 29.641531170586333 ], [ -95.427654013215189, 29.64150217055812 ], [ -95.427179012779632, 29.641457170585156 ], [ -95.427026013093354, 29.64144217089013 ], [ -95.425651011951032, 29.641435170493583 ], [ -95.422745011974982, 29.641484170619293 ], [ -95.422317011505186, 29.641501170909976 ], [ -95.422080011150655, 29.641340170598632 ], [ -95.422058011126197, 29.640476170412668 ], [ -95.417862010262382, 29.640502171199795 ], [ -95.414361009635329, 29.640570171030475 ], [ -95.413826009546767, 29.640537170810841 ], [ -95.413632008858059, 29.640561171460405 ], [ -95.410961008269226, 29.640612171032817 ], [ -95.41060600893708, 29.64061417155553 ], [ -95.410299008004998, 29.640597171604075 ], [ -95.410185008263724, 29.640581171172258 ], [ -95.410059008634633, 29.640556171248949 ], [ -95.408986008164362, 29.640278170832438 ], [ -95.408524007515368, 29.641432171669116 ], [ -95.408037007647692, 29.642650171918799 ], [ -95.407931007977211, 29.642915171809626 ], [ -95.407626008268181, 29.643688172102838 ], [ -95.407338008082618, 29.644412171688927 ], [ -95.407125007584057, 29.644946172051938 ], [ -95.406752008066874, 29.645873172662128 ], [ -95.405928007122554, 29.647961172406919 ], [ -95.40577100763943, 29.64835617325463 ], [ -95.405644007915953, 29.648683173319615 ], [ -95.40529200781954, 29.649551172738132 ], [ -95.404354007692945, 29.651940173614083 ], [ -95.402116006915136, 29.657541175208724 ], [ -95.401958007116676, 29.65796017488589 ], [ -95.401552007011674, 29.658933175141133 ], [ -95.400049006601776, 29.662683175969097 ], [ -95.39981300703657, 29.66328817640283 ], [ -95.399674006256433, 29.663647176519987 ], [ -95.399506006205357, 29.664096176591794 ], [ -95.398938007044265, 29.665516177054968 ], [ -95.398594006456349, 29.666388176504544 ], [ -95.39798300643676, 29.668014176971599 ], [ -95.397778005947245, 29.668334177117956 ], [ -95.397561006314348, 29.668785177136659 ], [ -95.397413006350135, 29.669118177343236 ], [ -95.396846006257618, 29.670396177548714 ], [ -95.396727005774636, 29.670713177534815 ], [ -95.396933006075088, 29.67065317819738 ], [ -95.397085005807909, 29.670608177542601 ], [ -95.397279005933854, 29.670550177326614 ], [ -95.399696007381323, 29.66982917744145 ], [ -95.403073007364981, 29.668808177626307 ], [ -95.412329009831041, 29.665979176401301 ], [ -95.413151009786773, 29.665728176376213 ], [ -95.416508011316964, 29.66472917566163 ], [ -95.420218011657226, 29.663630175774916 ], [ -95.420864011744641, 29.663438175162483 ], [ -95.422897012275243, 29.662835175112136 ], [ -95.425769013093188, 29.661986175082852 ], [ -95.426357013145278, 29.661810174921072 ], [ -95.429310013934142, 29.660927174549084 ], [ -95.430847014095505, 29.660467174439706 ], [ -95.431048014242933, 29.660419174558157 ], [ -95.433294014750061, 29.659609174035513 ], [ -95.434054015577843, 29.659330174249078 ], [ -95.437325016016118, 29.658078173875722 ], [ -95.437794016639614, 29.65789917385149 ], [ -95.441363017434469, 29.656502173278085 ], [ -95.44186601685837, 29.656322172968803 ], [ -95.442138017330933, 29.656214172936661 ], [ -95.442285017079726, 29.656158173179783 ], [ -95.442352017419836, 29.656006173457392 ], [ -95.442512016990634, 29.655765172876119 ], [ -95.442672017194951, 29.655556172830376 ], [ -95.442847016994335, 29.655335172977761 ], [ -95.443122017041929, 29.655143172946577 ], [ -95.443389017012763, 29.654941173008513 ], [ -95.443783017722652, 29.654767172590109 ], [ -95.444380017767159, 29.654583172933997 ], [ -95.445179018285572, 29.654344172713401 ], [ -95.445831018045226, 29.654142172915275 ], [ -95.446382017807366, 29.653977172884087 ], [ -95.446603017943858, 29.653904172421981 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 364, "Tract": "48201540503", "Area_SqMi": 0.27921544744250509, "total_2009": 319, "total_2010": 314, "total_2011": 359, "total_2012": 323, "total_2013": 347, "total_2014": 409, "total_2015": 452, "total_2016": 439, "total_2017": 512, "total_2018": 450, "total_2019": 337, "total_2020": 290, "age1": 64, "age2": 122, "age3": 62, "earn1": 44, "earn2": 102, "earn3": 102, "naics_s01": 0, "naics_s02": 0, "naics_s03": 75, "naics_s04": 15, "naics_s05": 11, "naics_s06": 0, "naics_s07": 19, "naics_s08": 2, "naics_s09": 0, "naics_s10": 6, "naics_s11": 11, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 46, "naics_s17": 0, "naics_s18": 22, "naics_s19": 39, "naics_s20": 0, "race1": 183, "race2": 33, "race3": 5, "race4": 16, "race5": 0, "race6": 11, "ethnicity1": 142, "ethnicity2": 106, "edu1": 35, "edu2": 46, "edu3": 62, "edu4": 41, "Shape_Length": 13214.765788857954, "Shape_Area": 7784048.7926827203, "total_2021": 293, "total_2022": 248 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.645130078582341, 29.865974208875731 ], [ -95.645129078476089, 29.86581720896482 ], [ -95.645125078695941, 29.865441209079773 ], [ -95.645123078712203, 29.865171208829928 ], [ -95.645117078539485, 29.864379208895887 ], [ -95.645114078157917, 29.864003208561712 ], [ -95.645113078005409, 29.863908209158733 ], [ -95.645105078129518, 29.86285120873529 ], [ -95.645100078300757, 29.862197208199941 ], [ -95.645100078717732, 29.862151208434177 ], [ -95.645100078109408, 29.86208120824806 ], [ -95.645100078577556, 29.860860207947557 ], [ -95.645090078033803, 29.860396207830604 ], [ -95.645083077892295, 29.859728208341412 ], [ -95.645075077736067, 29.858955207709904 ], [ -95.645040078095633, 29.857347207395566 ], [ -95.645035077598479, 29.857293207489668 ], [ -95.645030077682605, 29.857054207243124 ], [ -95.645030078223243, 29.856840207082776 ], [ -95.644837077468068, 29.856843207584827 ], [ -95.644648078336743, 29.856844207613616 ], [ -95.644444077870119, 29.856847207675933 ], [ -95.64400607754402, 29.856853207232945 ], [ -95.643482077145137, 29.856860207836853 ], [ -95.643320077545795, 29.856861207402577 ], [ -95.643085077840098, 29.856856207208981 ], [ -95.642986077601861, 29.856846207419565 ], [ -95.642932077453722, 29.856852207408139 ], [ -95.64288707730941, 29.856841207836244 ], [ -95.642846077572457, 29.856832207397765 ], [ -95.642811077680321, 29.856809207403998 ], [ -95.642436076846238, 29.856674207422135 ], [ -95.64222907741248, 29.85661420762025 ], [ -95.642101077527386, 29.856588207781911 ], [ -95.641973077015578, 29.856575207635863 ], [ -95.641865077192563, 29.856572207741767 ], [ -95.641485076696057, 29.856578207896881 ], [ -95.641394076894301, 29.856580207550632 ], [ -95.641004076739932, 29.856591207157603 ], [ -95.640221076897646, 29.856598207319134 ], [ -95.640200076927542, 29.856599207563391 ], [ -95.640084077167941, 29.856590207684192 ], [ -95.640024076723961, 29.856585207206351 ], [ -95.639951077107554, 29.856580207801745 ], [ -95.639916076781446, 29.856575207145315 ], [ -95.639864076819975, 29.856567207371345 ], [ -95.639614076849099, 29.856567207380131 ], [ -95.639121076566013, 29.856567207190064 ], [ -95.638954076947826, 29.856568207966799 ], [ -95.637427076405686, 29.85658620729092 ], [ -95.636325076057986, 29.856589207347234 ], [ -95.635775075259374, 29.856597207311534 ], [ -95.635506075541059, 29.856599207925491 ], [ -95.634999075530885, 29.856602208051999 ], [ -95.634858075614417, 29.856599207707205 ], [ -95.634718075376, 29.856591207634288 ], [ -95.634578075389527, 29.856576207915325 ], [ -95.634438075385674, 29.856551207465078 ], [ -95.634298075454026, 29.856517208148073 ], [ -95.634159074915218, 29.856474207962307 ], [ -95.634022074962715, 29.856421207606008 ], [ -95.633888075138501, 29.856361207973972 ], [ -95.633391075045907, 29.856124207796334 ], [ -95.633282074487056, 29.856080207744203 ], [ -95.633180075285424, 29.856052207377502 ], [ -95.633086074796282, 29.856043207556112 ], [ -95.633002074824077, 29.856056207277909 ], [ -95.632927074750057, 29.856088207442451 ], [ -95.632867074820965, 29.856137207842689 ], [ -95.632821074521758, 29.85620020757457 ], [ -95.632792075138838, 29.856272207689493 ], [ -95.632777074737277, 29.856351207633313 ], [ -95.632772074970077, 29.856443207574582 ], [ -95.632764075193251, 29.8565652079761 ], [ -95.63276107477688, 29.856623207366045 ], [ -95.632769074925235, 29.85708320774631 ], [ -95.632777075331887, 29.857545208182049 ], [ -95.632777074524867, 29.857787207860753 ], [ -95.632914074703194, 29.857894208078871 ], [ -95.63307807528065, 29.857960208375001 ], [ -95.633245074823066, 29.858026207921306 ], [ -95.633403075423843, 29.858278207916513 ], [ -95.633614074710607, 29.858500208378619 ], [ -95.635096075699082, 29.859533208572714 ], [ -95.635436076032164, 29.859845208640664 ], [ -95.635426076210479, 29.859947208234242 ], [ -95.635493075931961, 29.859991207989481 ], [ -95.635922075574541, 29.860293208183048 ], [ -95.636341076341949, 29.860623208681314 ], [ -95.636944075723321, 29.861200208351324 ], [ -95.637214076552283, 29.861536208928861 ], [ -95.637585076169245, 29.86180920897915 ], [ -95.638269076260059, 29.862122208681619 ], [ -95.638671076614571, 29.862251209092033 ], [ -95.63930407634885, 29.862239208848113 ], [ -95.639831076597005, 29.862336209092756 ], [ -95.64056907739004, 29.862466208986834 ], [ -95.641163077081387, 29.862675208311249 ], [ -95.641882077585606, 29.863000208691908 ], [ -95.64205807733579, 29.863196208978859 ], [ -95.642287077427625, 29.863449209279359 ], [ -95.642389077886591, 29.86397420860995 ], [ -95.642605077808966, 29.864446208752472 ], [ -95.642390077308661, 29.864582208697286 ], [ -95.642468077817483, 29.864934208763245 ], [ -95.642820077753925, 29.865188209622737 ], [ -95.643163077957638, 29.865471209673078 ], [ -95.643464077873048, 29.86561820932809 ], [ -95.643621077762745, 29.86567620913792 ], [ -95.6439530777035, 29.865735209620109 ], [ -95.644187078060824, 29.865891208833592 ], [ -95.644573078366392, 29.865923209660885 ], [ -95.644642078144599, 29.865952209576683 ], [ -95.644794078313353, 29.865980209499554 ], [ -95.644901078306575, 29.865963209594103 ], [ -95.644939078320945, 29.865965209703592 ], [ -95.645130078582341, 29.865974208875731 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 365, "Tract": "48201542304", "Area_SqMi": 0.76799484402068374, "total_2009": 149, "total_2010": 228, "total_2011": 488, "total_2012": 306, "total_2013": 309, "total_2014": 322, "total_2015": 400, "total_2016": 684, "total_2017": 698, "total_2018": 591, "total_2019": 542, "total_2020": 540, "age1": 192, "age2": 262, "age3": 94, "earn1": 172, "earn2": 224, "earn3": 152, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 10, "naics_s06": 15, "naics_s07": 121, "naics_s08": 4, "naics_s09": 5, "naics_s10": 37, "naics_s11": 36, "naics_s12": 66, "naics_s13": 0, "naics_s14": 0, "naics_s15": 4, "naics_s16": 87, "naics_s17": 11, "naics_s18": 122, "naics_s19": 23, "naics_s20": 0, "race1": 389, "race2": 74, "race3": 2, "race4": 69, "race5": 3, "race6": 11, "ethnicity1": 354, "ethnicity2": 194, "edu1": 87, "edu2": 88, "edu3": 105, "edu4": 76, "Shape_Length": 20370.255253889103, "Shape_Area": 21410381.814984452, "total_2021": 610, "total_2022": 548 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.733924098818662, 29.815238196151743 ], [ -95.733659099115272, 29.815182195871856 ], [ -95.733350098376306, 29.815131195519218 ], [ -95.73309009838043, 29.815100196142609 ], [ -95.732705098117151, 29.815074195727369 ], [ -95.7318120981964, 29.815058196215585 ], [ -95.730958097623358, 29.815038195544975 ], [ -95.730117098006573, 29.815020196107664 ], [ -95.729502097952377, 29.815009196249797 ], [ -95.729257097734163, 29.814999196170174 ], [ -95.729149097139711, 29.81499119573062 ], [ -95.729075097754304, 29.814981196039355 ], [ -95.728669097074899, 29.814882196166405 ], [ -95.728584097722333, 29.814867195636118 ], [ -95.728494097181795, 29.814856195963959 ], [ -95.728364097572381, 29.814849196085326 ], [ -95.728201097666727, 29.814840195795409 ], [ -95.728093097235671, 29.814841195840312 ], [ -95.727895097391297, 29.814830195701049 ], [ -95.727622097393265, 29.814829195681344 ], [ -95.727539097599731, 29.814835196467332 ], [ -95.727455097098229, 29.814831195759243 ], [ -95.727211097031002, 29.814833196160855 ], [ -95.727063097450284, 29.814837195728099 ], [ -95.726730096648254, 29.814837195934523 ], [ -95.726396096960968, 29.814840196343635 ], [ -95.725934097273381, 29.814841195820279 ], [ -95.725581096852494, 29.814840195745941 ], [ -95.725318096713039, 29.814847196462061 ], [ -95.724020096260119, 29.814864196139812 ], [ -95.722949096525227, 29.814877196036043 ], [ -95.721149095448865, 29.814901196127153 ], [ -95.72045709487908, 29.814915196315937 ], [ -95.720454095454528, 29.815329196019672 ], [ -95.720438095906999, 29.815590196787159 ], [ -95.72040409564643, 29.81585819623173 ], [ -95.720354095332326, 29.816131196245781 ], [ -95.720161095862878, 29.816906196288024 ], [ -95.72013509531827, 29.817036196704031 ], [ -95.720109095261577, 29.817172196518161 ], [ -95.720078095688109, 29.817397196663769 ], [ -95.720064095035525, 29.817529196457841 ], [ -95.720046095259505, 29.817842196707218 ], [ -95.720046094910884, 29.818068197010685 ], [ -95.720049095880739, 29.81963019719073 ], [ -95.720049095794906, 29.819964197226177 ], [ -95.720033095462711, 29.820275197331963 ], [ -95.720005095303009, 29.820514197319799 ], [ -95.719948095517722, 29.82083619772207 ], [ -95.719889095732398, 29.821181197198744 ], [ -95.719854095483669, 29.821435198075971 ], [ -95.719832095398047, 29.821681197960917 ], [ -95.719827095457617, 29.821915197943643 ], [ -95.71982809515184, 29.82238619812204 ], [ -95.719830095726294, 29.822882197740796 ], [ -95.719837096019887, 29.824278198162045 ], [ -95.719849095849113, 29.825605198808937 ], [ -95.719857095614728, 29.828060198639115 ], [ -95.719862096113857, 29.828847199368315 ], [ -95.719870095560609, 29.829393199028953 ], [ -95.719871095872918, 29.830306199404617 ], [ -95.719878095727736, 29.831018199965339 ], [ -95.719879095768917, 29.831078199171991 ], [ -95.719880095778933, 29.831174200010473 ], [ -95.720756095857354, 29.831178199503846 ], [ -95.721921096345397, 29.831196199904195 ], [ -95.722720096665114, 29.83119719952661 ], [ -95.722870097252695, 29.831198199157257 ], [ -95.726778098068635, 29.831207199368887 ], [ -95.729530098160438, 29.831216199421238 ], [ -95.729801098498569, 29.83121719896857 ], [ -95.731334098784799, 29.831224199599678 ], [ -95.731317098417492, 29.831080198767914 ], [ -95.73128009870905, 29.830310199000653 ], [ -95.731101098788187, 29.829986199167127 ], [ -95.730912099091029, 29.829698198698619 ], [ -95.730678098717902, 29.829501198641779 ], [ -95.730417098386624, 29.829258198506508 ], [ -95.730327098441407, 29.829123198660469 ], [ -95.730206098011323, 29.828863199151428 ], [ -95.730199098254161, 29.827791198171838 ], [ -95.730194098377197, 29.82704819877511 ], [ -95.730757098615797, 29.825832198432551 ], [ -95.730907098353185, 29.825603197993626 ], [ -95.730970098325798, 29.82539819763651 ], [ -95.730962098673317, 29.824713197726833 ], [ -95.730994098732893, 29.82447419819329 ], [ -95.730994098846196, 29.824213198244177 ], [ -95.730955098482298, 29.823463197539773 ], [ -95.730970098160512, 29.82310819792427 ], [ -95.730955098073892, 29.822634197090039 ], [ -95.730986097984825, 29.821923197630323 ], [ -95.731026098884513, 29.821402196889998 ], [ -95.731041098467799, 29.820415196968323 ], [ -95.731010098098679, 29.819665197289655 ], [ -95.731088098720349, 29.818708197150507 ], [ -95.73129509821517, 29.818303196589184 ], [ -95.731618098585301, 29.818114196673854 ], [ -95.732185098871852, 29.818078196709301 ], [ -95.73278809832118, 29.818087196349229 ], [ -95.733327099094808, 29.817809196717512 ], [ -95.733507098986223, 29.817422196600337 ], [ -95.733510098987495, 29.81704419622735 ], [ -95.733618098403952, 29.816284196205203 ], [ -95.733924098818662, 29.815238196151743 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 366, "Tract": "48201542202", "Area_SqMi": 5.4642086235433203, "total_2009": 18, "total_2010": 38, "total_2011": 30, "total_2012": 80, "total_2013": 74, "total_2014": 81, "total_2015": 146, "total_2016": 146, "total_2017": 83, "total_2018": 76, "total_2019": 60, "total_2020": 57, "age1": 72, "age2": 212, "age3": 75, "earn1": 28, "earn2": 116, "earn3": 215, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 236, "naics_s05": 1, "naics_s06": 52, "naics_s07": 24, "naics_s08": 16, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 10, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 3, "naics_s19": 4, "naics_s20": 0, "race1": 290, "race2": 23, "race3": 4, "race4": 36, "race5": 1, "race6": 5, "ethnicity1": 206, "ethnicity2": 153, "edu1": 81, "edu2": 79, "edu3": 76, "edu4": 51, "Shape_Length": 66029.432956369099, "Shape_Area": 152332784.33786243, "total_2021": 285, "total_2022": 359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.773842111454371, 29.875160207093124 ], [ -95.773836111445505, 29.874184206630261 ], [ -95.773834112018136, 29.873937206132275 ], [ -95.773811111357347, 29.870269205449215 ], [ -95.773793111699916, 29.868128205433038 ], [ -95.773800111391807, 29.867942205564404 ], [ -95.773792111660342, 29.867703204850738 ], [ -95.773789111570721, 29.867249205129898 ], [ -95.773778111276158, 29.865523204548772 ], [ -95.773748111459398, 29.86063620399279 ], [ -95.773716110781208, 29.857283202998367 ], [ -95.773715111353098, 29.856615203093817 ], [ -95.773701110652624, 29.85527120280311 ], [ -95.773690110673442, 29.854046202254441 ], [ -95.773685110748431, 29.853418202150259 ], [ -95.773665110947903, 29.851793202265686 ], [ -95.773661111040923, 29.851218201903134 ], [ -95.773466110038612, 29.851163202055442 ], [ -95.77327011005714, 29.851141202229051 ], [ -95.773100110255001, 29.851152202149791 ], [ -95.772930110106429, 29.851179202273869 ], [ -95.772785110561742, 29.851119202106773 ], [ -95.772577110294151, 29.851014201827091 ], [ -95.772487110205304, 29.850933201933163 ], [ -95.772028110134201, 29.850520202183823 ], [ -95.771972109851774, 29.850448201798073 ], [ -95.771845110144511, 29.850448202168646 ], [ -95.771681109635509, 29.850519201881234 ], [ -95.771555110412649, 29.850547201549475 ], [ -95.771442110494007, 29.850497201408899 ], [ -95.771297109850735, 29.850492201951283 ], [ -95.771076109437658, 29.850497201601435 ], [ -95.770944110266981, 29.850453201406658 ], [ -95.770914109542176, 29.850418202032994 ], [ -95.770874109542746, 29.850371201667055 ], [ -95.770874109745165, 29.85029920150513 ], [ -95.770881110009199, 29.850217201721261 ], [ -95.770837109661258, 29.850178201822107 ], [ -95.770824109922088, 29.850046202014838 ], [ -95.770944109462505, 29.849755202088819 ], [ -95.771051110285015, 29.849563201420587 ], [ -95.771190110227721, 29.849217201369772 ], [ -95.77132211000206, 29.849041201625369 ], [ -95.771329110358806, 29.848985201617037 ], [ -95.771323110364818, 29.848903201124884 ], [ -95.770724109226592, 29.848595200961213 ], [ -95.770604109980582, 29.848392201405574 ], [ -95.770566109625051, 29.848024201205838 ], [ -95.77057910971736, 29.84765520145309 ], [ -95.770573109984568, 29.847567201616478 ], [ -95.770541109692118, 29.847501200915701 ], [ -95.770503110118156, 29.847479201406056 ], [ -95.770421109969888, 29.847457201080399 ], [ -95.770352109207067, 29.847490201201495 ], [ -95.770308109319714, 29.84754520103543 ], [ -95.770106109085063, 29.847567201160317 ], [ -95.769728109885875, 29.847578201226586 ], [ -95.769658109039071, 29.847545201201832 ], [ -95.769564109149755, 29.84741920078979 ], [ -95.769513109761334, 29.847303201084543 ], [ -95.769570109276913, 29.846979200923922 ], [ -95.76955810985676, 29.846765200886686 ], [ -95.769495109064749, 29.846545200599731 ], [ -95.769419109010428, 29.846457201446562 ], [ -95.769104108808961, 29.846363201383369 ], [ -95.768959109649444, 29.846297201120585 ], [ -95.768801109367743, 29.846187201184719 ], [ -95.768757109564504, 29.846143201263775 ], [ -95.768637108876348, 29.846022201093543 ], [ -95.76825310913182, 29.845753201123376 ], [ -95.767705108896806, 29.845434201161808 ], [ -95.767585109012657, 29.845307200717727 ], [ -95.767515108312011, 29.845198200850248 ], [ -95.767402108612131, 29.845060200733421 ], [ -95.767024108839678, 29.844917200983712 ], [ -95.766791108929766, 29.844785200480594 ], [ -95.766639108695458, 29.844675200777303 ], [ -95.766538108690369, 29.844659200413474 ], [ -95.766463108035936, 29.844659200919018 ], [ -95.766173108184759, 29.84479020036559 ], [ -95.765901107811544, 29.844840201168065 ], [ -95.765801108261812, 29.844845200642879 ], [ -95.765706108671935, 29.844840201178343 ], [ -95.765441108200619, 29.84464220076746 ], [ -95.764943108041095, 29.844312200498692 ], [ -95.76469710759487, 29.844092200349557 ], [ -95.764628108444541, 29.843982200406128 ], [ -95.764609107608976, 29.843806200523446 ], [ -95.764508108318935, 29.843680200630015 ], [ -95.764351108183163, 29.843504200986072 ], [ -95.764174107790879, 29.843328200555941 ], [ -95.763702107260912, 29.842954200248837 ], [ -95.76350010771452, 29.842899200507219 ], [ -95.763298107284356, 29.842926200306504 ], [ -95.763134107115846, 29.8430912006746 ], [ -95.763040107243199, 29.843135200577265 ], [ -95.762901107297253, 29.8431792009549 ], [ -95.762699107049016, 29.843184200983348 ], [ -95.762642107855555, 29.843140201035705 ], [ -95.762586107544763, 29.843030200525778 ], [ -95.762542107231639, 29.842904200333397 ], [ -95.76245310738463, 29.842816200818813 ], [ -95.76239710769832, 29.842788200118434 ], [ -95.762334107123593, 29.842684200362072 ], [ -95.76233410702477, 29.842596200271664 ], [ -95.762359106898501, 29.842514200079542 ], [ -95.76261110749796, 29.842349200266248 ], [ -95.762712107766717, 29.842272200719002 ], [ -95.762857107342967, 29.842124200359329 ], [ -95.762895107370085, 29.8420412006354 ], [ -95.76292710739726, 29.841898200383703 ], [ -95.762946107811089, 29.841541199930163 ], [ -95.762933107662789, 29.841442200684231 ], [ -95.762864107216103, 29.841348200136544 ], [ -95.762561107512781, 29.84116720013084 ], [ -95.762423107218822, 29.841068200551668 ], [ -95.762347106983995, 29.840974200411072 ], [ -95.76220810701156, 29.840749200362271 ], [ -95.762038107194712, 29.840573199700554 ], [ -95.761868106666938, 29.840463200028626 ], [ -95.76164110721534, 29.840392199676479 ], [ -95.761225107185282, 29.84002920024037 ], [ -95.760979107131661, 29.839864199779015 ], [ -95.760841107207739, 29.839864199922896 ], [ -95.760733106468905, 29.839836199738702 ], [ -95.760632106669547, 29.839770200339949 ], [ -95.760349106504833, 29.839490200085191 ], [ -95.759990106485134, 29.8392591996314 ], [ -95.759882106609012, 29.839248200226798 ], [ -95.759611106574866, 29.839248199743317 ], [ -95.759359106322478, 29.839220200190066 ], [ -95.759271106386535, 29.839198200328831 ], [ -95.75896810603605, 29.839011199685764 ], [ -95.758918106634809, 29.838945199452859 ], [ -95.758918106577951, 29.838802200043585 ], [ -95.758931106327509, 29.838698200220591 ], [ -95.759000105826374, 29.838626200078892 ], [ -95.759032106297923, 29.838494199981497 ], [ -95.75907610595533, 29.838434199856252 ], [ -95.759139106680919, 29.838406199671127 ], [ -95.759202106245496, 29.83835719962142 ], [ -95.759372106363756, 29.838126199485199 ], [ -95.75965010637394, 29.837791199472687 ], [ -95.759852105979988, 29.837615199377833 ], [ -95.759902106743581, 29.83752719952092 ], [ -95.759965106140911, 29.837467199647303 ], [ -95.760022106463197, 29.837384199342498 ], [ -95.760016106744672, 29.837120199764076 ], [ -95.759959106387683, 29.837044199173107 ], [ -95.759594106616134, 29.836906198989471 ], [ -95.759329105901728, 29.83686219953761 ], [ -95.759209106278703, 29.836582199064765 ], [ -95.759190106629106, 29.836395199213229 ], [ -95.759165106161376, 29.836323199092913 ], [ -95.759165106700095, 29.836235199683706 ], [ -95.759203106215637, 29.836175198910187 ], [ -95.759272106645057, 29.836109198848582 ], [ -95.759285105798284, 29.835971199540168 ], [ -95.759317105887831, 29.835938199097427 ], [ -95.75941710619351, 29.835884199362585 ], [ -95.759487105963657, 29.835834199524317 ], [ -95.759613106719016, 29.83570219884545 ], [ -95.759657106208266, 29.835565199462 ], [ -95.759682106259206, 29.835285199052326 ], [ -95.759664105812618, 29.835230199048496 ], [ -95.759601106668455, 29.835229199391623 ], [ -95.759563106225485, 29.835202199046545 ], [ -95.759550106279463, 29.835114198667082 ], [ -95.759569106252471, 29.8350211987492 ], [ -95.759601105780547, 29.834933199021126 ], [ -95.75962610663457, 29.834894198853217 ], [ -95.7599031064332, 29.834762199162977 ], [ -95.760187106520917, 29.834603199218531 ], [ -95.760200106439811, 29.834482198597215 ], [ -95.760194106816684, 29.834246198876219 ], [ -95.760087105852534, 29.834070198914745 ], [ -95.759710106543523, 29.833760198769927 ], [ -95.75965810618267, 29.833718198986979 ], [ -95.759563105865382, 29.833669198748677 ], [ -95.759475105787871, 29.833624198959267 ], [ -95.759255106149183, 29.833476198885606 ], [ -95.759015106242956, 29.8334811988334 ], [ -95.758933106088563, 29.833525198809085 ], [ -95.758895106100425, 29.833591198832373 ], [ -95.758876106122869, 29.833734198663738 ], [ -95.758838105862736, 29.833817199262807 ], [ -95.758701106055014, 29.833867198575685 ], [ -95.758674105856301, 29.833877198878017 ], [ -95.758548105531375, 29.833954198596672 ], [ -95.758208105765505, 29.834025198455361 ], [ -95.757729105840539, 29.833954199292336 ], [ -95.75748910564478, 29.833904199087531 ], [ -95.757432105535912, 29.833849198915967 ], [ -95.75721810526818, 29.833849198677704 ], [ -95.756783105627079, 29.833755198738693 ], [ -95.756348105297462, 29.833827198796321 ], [ -95.75612710579378, 29.833876198961992 ], [ -95.756090105715316, 29.83387619928903 ], [ -95.756033105342283, 29.833821198497478 ], [ -95.756052105048681, 29.833739198456225 ], [ -95.755793105570788, 29.83359019864222 ], [ -95.755554105121433, 29.833321198552515 ], [ -95.755441104822481, 29.833161198974807 ], [ -95.75534010504424, 29.83307319892889 ], [ -95.755207104666511, 29.833013199017547 ], [ -95.755037105238713, 29.83296319848478 ], [ -95.754873105335392, 29.832947198842465 ], [ -95.754772105244982, 29.832952199027726 ], [ -95.754596104533078, 29.832985198336786 ], [ -95.754489105076559, 29.833111199243895 ], [ -95.754394104603904, 29.833144199158259 ], [ -95.754299105189972, 29.833276199039407 ], [ -95.754236104771707, 29.833430198850756 ], [ -95.75413510501572, 29.83354619901727 ], [ -95.753971104842009, 29.833628199158092 ], [ -95.753845104287521, 29.833655199030208 ], [ -95.753650104887271, 29.833666198543003 ], [ -95.753530104428719, 29.83362219907136 ], [ -95.753429104755313, 29.833551199098146 ], [ -95.753379104624472, 29.833303198866723 ], [ -95.753379104926225, 29.833138199126505 ], [ -95.753366104303637, 29.83308419919236 ], [ -95.753272104856364, 29.832990198923547 ], [ -95.753228104562695, 29.832919198742829 ], [ -95.753171104156152, 29.832748198701449 ], [ -95.753253104884593, 29.83242419907025 ], [ -95.75325310416973, 29.832391198733323 ], [ -95.753178104471502, 29.832281198368587 ], [ -95.753014104943034, 29.832088198873286 ], [ -95.752844104621516, 29.832028198699938 ], [ -95.752844103985865, 29.831973198440515 ], [ -95.752693104034023, 29.831963198802939 ], [ -95.752585104125629, 29.831956198856872 ], [ -95.75246510472553, 29.831844198541091 ], [ -95.752421103971358, 29.831802198216959 ], [ -95.752251103952688, 29.831731198667047 ], [ -95.752245104101405, 29.831691198975886 ], [ -95.751049103743611, 29.831711199080896 ], [ -95.750483103730033, 29.831721198879258 ], [ -95.750326104082575, 29.83172419878786 ], [ -95.750136103924916, 29.831717198956632 ], [ -95.749571103849235, 29.831723199133876 ], [ -95.749389103718514, 29.831737198904385 ], [ -95.749202103868726, 29.831742198730502 ], [ -95.74901110354071, 29.831734198292498 ], [ -95.74890410351081, 29.831735199157471 ], [ -95.748366103604283, 29.831746199193066 ], [ -95.747906103052031, 29.831756198669485 ], [ -95.747540102557679, 29.831759199038373 ], [ -95.745714102714501, 29.83177619918391 ], [ -95.740426100762335, 29.831822199267645 ], [ -95.740279101412909, 29.831818199165699 ], [ -95.740251101618526, 29.831807198631317 ], [ -95.739667100531264, 29.831661199030592 ], [ -95.739445101058294, 29.831613198635402 ], [ -95.739151101221822, 29.831538198767475 ], [ -95.738884100688324, 29.831467198828886 ], [ -95.738462100727261, 29.831369199295295 ], [ -95.738004100592363, 29.831298199300001 ], [ -95.737632100286177, 29.831261199205876 ], [ -95.736961100597355, 29.831258198935121 ], [ -95.735869099660576, 29.831242199118506 ], [ -95.734855100098329, 29.831238199284794 ], [ -95.731334098784799, 29.831224199599678 ], [ -95.729801098498569, 29.83121719896857 ], [ -95.729530098160438, 29.831216199421238 ], [ -95.726778098068635, 29.831207199368887 ], [ -95.722870097252695, 29.831198199157257 ], [ -95.722720096665114, 29.83119719952661 ], [ -95.721921096345397, 29.831196199904195 ], [ -95.720756095857354, 29.831178199503846 ], [ -95.719880095778933, 29.831174200010473 ], [ -95.719880096342209, 29.83125219995226 ], [ -95.719884095549475, 29.832650200221472 ], [ -95.719870095642662, 29.83279420000467 ], [ -95.719832096341307, 29.832978200309988 ], [ -95.719723095506822, 29.833365200445094 ], [ -95.719497096500206, 29.834115200429142 ], [ -95.719280095614607, 29.834806199934562 ], [ -95.719036095731241, 29.835612200628248 ], [ -95.718947096383602, 29.835950200665213 ], [ -95.718874096374009, 29.836392200428694 ], [ -95.71886209606393, 29.836488200771033 ], [ -95.718840096101459, 29.836792201162545 ], [ -95.718837095631741, 29.836990200523406 ], [ -95.718856096412523, 29.838589200828682 ], [ -95.718871096604602, 29.839667201022863 ], [ -95.718881095803212, 29.840343201206419 ], [ -95.718900096716965, 29.842290201920711 ], [ -95.718899096677646, 29.842452202343431 ], [ -95.718917096639217, 29.842916201939254 ], [ -95.718939096107604, 29.843195202200132 ], [ -95.718979096550711, 29.84347420235796 ], [ -95.719086096346402, 29.843994202576528 ], [ -95.719140096785281, 29.844331202713793 ], [ -95.719161096089536, 29.844587202646622 ], [ -95.719178096153854, 29.845110202407213 ], [ -95.719186096670597, 29.845651202896786 ], [ -95.719189096825431, 29.845754202901016 ], [ -95.723727097309236, 29.845786202611279 ], [ -95.726674098496034, 29.845764202200982 ], [ -95.72940909890994, 29.845744202393632 ], [ -95.729486099246131, 29.845750202081625 ], [ -95.731102099388636, 29.845702201907557 ], [ -95.733091100232343, 29.845689201771673 ], [ -95.734453100516433, 29.845715201790181 ], [ -95.734688100896435, 29.845618202047568 ], [ -95.738430101838006, 29.845523202044287 ], [ -95.739607101245824, 29.845531201647429 ], [ -95.739659101696219, 29.845602202036346 ], [ -95.740229102058748, 29.846384202110851 ], [ -95.740261102041089, 29.847401202071214 ], [ -95.740281101758143, 29.849006202373353 ], [ -95.740268102121419, 29.849281202931362 ], [ -95.740281102074633, 29.849435202950811 ], [ -95.740269101691027, 29.849902202853862 ], [ -95.740276101559246, 29.850562202717388 ], [ -95.740269102076951, 29.850831202551472 ], [ -95.740295102317006, 29.851754202767978 ], [ -95.740283102119093, 29.852524203629624 ], [ -95.740315102247592, 29.853250203525235 ], [ -95.740303102464651, 29.853915203231608 ], [ -95.740316101967309, 29.85437620333806 ], [ -95.740297101765293, 29.854635203311748 ], [ -95.740291102247255, 29.855058203347713 ], [ -95.740335102451979, 29.855619203626105 ], [ -95.740342102214129, 29.856091204249694 ], [ -95.740324102608227, 29.856943204471232 ], [ -95.740356102215472, 29.857587204265744 ], [ -95.740375102726418, 29.858263204047194 ], [ -95.74037010296108, 29.86065320458248 ], [ -95.740972102450456, 29.860658204440387 ], [ -95.756265107044442, 29.860787204784376 ], [ -95.756513106214015, 29.860789204196294 ], [ -95.756508106996307, 29.861187204366914 ], [ -95.756519106745571, 29.862838204709661 ], [ -95.756567107272502, 29.864170204988913 ], [ -95.756553106732056, 29.864747204816503 ], [ -95.756543107190438, 29.865161204957957 ], [ -95.756567107266449, 29.867755205849452 ], [ -95.756583106926044, 29.868218205462547 ], [ -95.756595107171435, 29.868529205580657 ], [ -95.756606106667888, 29.868861206364191 ], [ -95.75662110756312, 29.869287206008011 ], [ -95.756637106748755, 29.869724206531252 ], [ -95.756635106658436, 29.870062206226404 ], [ -95.756626107218949, 29.872012206641774 ], [ -95.756641107492399, 29.873128206883862 ], [ -95.756670107619357, 29.875266206894473 ], [ -95.756967107530045, 29.875266207716486 ], [ -95.757200107269028, 29.87526620700017 ], [ -95.763350109167391, 29.875215207251856 ], [ -95.767563109739527, 29.875180207004949 ], [ -95.769624110306921, 29.8751732068352 ], [ -95.773842111454371, 29.875160207093124 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 367, "Tract": "48201541403", "Area_SqMi": 0.28728638113135185, "total_2009": 58, "total_2010": 53, "total_2011": 3, "total_2012": 6, "total_2013": 3, "total_2014": 8, "total_2015": 23, "total_2016": 35, "total_2017": 34, "total_2018": 42, "total_2019": 44, "total_2020": 23, "age1": 13, "age2": 38, "age3": 15, "earn1": 10, "earn2": 21, "earn3": 35, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 52, "naics_s05": 0, "naics_s06": 0, "naics_s07": 10, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 2, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 52, "race2": 9, "race3": 1, "race4": 3, "race5": 0, "race6": 1, "ethnicity1": 39, "ethnicity2": 27, "edu1": 17, "edu2": 11, "edu3": 17, "edu4": 8, "Shape_Length": 12507.356521659127, "Shape_Area": 8009052.610386705, "total_2021": 49, "total_2022": 66 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.669683084741564, 29.859472207233328 ], [ -95.669649084538051, 29.85934020684984 ], [ -95.669035084668081, 29.85707420632594 ], [ -95.66883608379203, 29.856334206899771 ], [ -95.668424083765188, 29.854806206513921 ], [ -95.668378084265996, 29.85460020610768 ], [ -95.668332083457869, 29.854386206131998 ], [ -95.668286083475905, 29.8541082055971 ], [ -95.668260083352337, 29.85385220561432 ], [ -95.668243083696083, 29.853569205765314 ], [ -95.668233084147289, 29.852794205667202 ], [ -95.668231083431593, 29.85245220611462 ], [ -95.668230083451448, 29.851903205380481 ], [ -95.668229083817209, 29.851771205334376 ], [ -95.668227083235152, 29.851165205561323 ], [ -95.668216083763639, 29.850474205164922 ], [ -95.668215083730928, 29.84975420509921 ], [ -95.668215083553505, 29.849646204871263 ], [ -95.668200084100576, 29.849300204988555 ], [ -95.668207083482784, 29.849221205043637 ], [ -95.667244083347001, 29.849229205147488 ], [ -95.665968083164501, 29.849232205263149 ], [ -95.665406082798242, 29.84924020518751 ], [ -95.665286082989638, 29.849236205360587 ], [ -95.665204083183454, 29.849236205473375 ], [ -95.664662082229654, 29.84923720546249 ], [ -95.664643082937829, 29.849638205595767 ], [ -95.664627082516517, 29.84992620567154 ], [ -95.663620082942884, 29.850324205834333 ], [ -95.662095082440999, 29.850919205760459 ], [ -95.661300081586518, 29.851188205640032 ], [ -95.661367082104206, 29.851276205659207 ], [ -95.661404081840331, 29.851369205570844 ], [ -95.661415081619879, 29.851415205639015 ], [ -95.661425082403255, 29.851511206069233 ], [ -95.66142408231741, 29.851704205900187 ], [ -95.661431081705473, 29.852073205699135 ], [ -95.661428082268273, 29.852401206216342 ], [ -95.661431081599417, 29.853116205892206 ], [ -95.661432082185868, 29.85385220640454 ], [ -95.661434082454235, 29.854592206569002 ], [ -95.66143708205243, 29.855335206321261 ], [ -95.661436082289555, 29.856085206905426 ], [ -95.661439081924001, 29.856839206881602 ], [ -95.66144208225063, 29.856970207092612 ], [ -95.661439082046627, 29.8570762064831 ], [ -95.661441081898047, 29.857578207202156 ], [ -95.661444082442202, 29.858326207444918 ], [ -95.661446082209338, 29.858679207577978 ], [ -95.661457082002102, 29.859020207226827 ], [ -95.660575081613288, 29.85905620706831 ], [ -95.660578082593958, 29.85940020730564 ], [ -95.660578081678466, 29.859451207179472 ], [ -95.662630083017731, 29.859428207074334 ], [ -95.66469108334735, 29.859414207573103 ], [ -95.665269083466811, 29.85940920735079 ], [ -95.665265083769654, 29.859505207476783 ], [ -95.666500083385714, 29.859458206953516 ], [ -95.667020084057626, 29.859453207323476 ], [ -95.667620083937464, 29.859465207421295 ], [ -95.669133084217222, 29.859497207001478 ], [ -95.669683084741564, 29.859472207233328 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 368, "Tract": "48201541204", "Area_SqMi": 0.70931807918923162, "total_2009": 276, "total_2010": 265, "total_2011": 249, "total_2012": 265, "total_2013": 276, "total_2014": 237, "total_2015": 243, "total_2016": 226, "total_2017": 171, "total_2018": 166, "total_2019": 158, "total_2020": 165, "age1": 40, "age2": 65, "age3": 39, "earn1": 45, "earn2": 57, "earn3": 42, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 0, "naics_s07": 23, "naics_s08": 2, "naics_s09": 0, "naics_s10": 25, "naics_s11": 18, "naics_s12": 10, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 41, "naics_s17": 0, "naics_s18": 12, "naics_s19": 0, "naics_s20": 0, "race1": 90, "race2": 29, "race3": 1, "race4": 23, "race5": 0, "race6": 1, "ethnicity1": 98, "ethnicity2": 46, "edu1": 17, "edu2": 26, "edu3": 28, "edu4": 33, "Shape_Length": 19239.198039728286, "Shape_Area": 19774574.037770249, "total_2021": 171, "total_2022": 144 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.668469085540039, 29.890256213505189 ], [ -95.668465085893573, 29.889964213692153 ], [ -95.668455085834779, 29.889837213095888 ], [ -95.668334085008681, 29.889209212753187 ], [ -95.668320085728894, 29.889037213005139 ], [ -95.668290085720287, 29.887243212916776 ], [ -95.668272085238911, 29.886170212480913 ], [ -95.668235085396972, 29.883927212331461 ], [ -95.668209085029005, 29.882299211731297 ], [ -95.668179085000446, 29.880494211710428 ], [ -95.668172085439224, 29.880027211108633 ], [ -95.668156084935987, 29.879019210956795 ], [ -95.667192085083627, 29.879026210786943 ], [ -95.666684084582414, 29.879029211040464 ], [ -95.665706083846203, 29.879036211565602 ], [ -95.665482084324097, 29.879037211484974 ], [ -95.665327083861001, 29.87903821117192 ], [ -95.663732083504385, 29.879048211103044 ], [ -95.663505083442416, 29.879049211631614 ], [ -95.662383083600474, 29.87905621161206 ], [ -95.661558083699646, 29.879058211526964 ], [ -95.660707083539407, 29.879076211602243 ], [ -95.659348083167757, 29.879077211284294 ], [ -95.658535082168655, 29.879077211505976 ], [ -95.658375082762646, 29.879077211294579 ], [ -95.658309082867248, 29.879077211881619 ], [ -95.658117082265989, 29.87907821129448 ], [ -95.655161081581809, 29.87909421195047 ], [ -95.654553081105405, 29.879102211397658 ], [ -95.65336508073527, 29.879116211747981 ], [ -95.651101081066898, 29.87914421211077 ], [ -95.65072408053355, 29.879148211471094 ], [ -95.649573079905267, 29.879162212012233 ], [ -95.649584080112831, 29.879729212173913 ], [ -95.649594079903892, 29.879945212180125 ], [ -95.649614079816004, 29.880091212187679 ], [ -95.649639080609788, 29.880207211998439 ], [ -95.649665080599561, 29.880306212481898 ], [ -95.649704080242543, 29.880411212033607 ], [ -95.649758080000339, 29.88052421194968 ], [ -95.649883080314197, 29.880732212058426 ], [ -95.65004108013494, 29.880977211874026 ], [ -95.650134080206072, 29.881122212113446 ], [ -95.65037408031975, 29.88149921255954 ], [ -95.650825080324708, 29.882210212551389 ], [ -95.650905080227062, 29.882336212572586 ], [ -95.651110080936647, 29.882661212654874 ], [ -95.651352081290696, 29.883084212480597 ], [ -95.651436080689678, 29.883252212774938 ], [ -95.651610081319689, 29.883662212884346 ], [ -95.651655081211032, 29.883797212961206 ], [ -95.651736081173226, 29.884024213037737 ], [ -95.651812080595889, 29.884338213144261 ], [ -95.651854080870706, 29.884544212775502 ], [ -95.651907081347261, 29.884836212771937 ], [ -95.651921081207959, 29.884956212834311 ], [ -95.651934081485521, 29.885017213264515 ], [ -95.651957081135336, 29.885390212814084 ], [ -95.651966080893985, 29.885471212683129 ], [ -95.65196608081213, 29.885650212601892 ], [ -95.651971080767254, 29.88569921320828 ], [ -95.651972081368797, 29.885809213328102 ], [ -95.651965080866063, 29.885868212776227 ], [ -95.651968080613699, 29.886242213218239 ], [ -95.65197408082129, 29.886619212803829 ], [ -95.65198108080348, 29.886675213068443 ], [ -95.651976081017025, 29.886733213642863 ], [ -95.651982081645102, 29.886976213538262 ], [ -95.65198708138594, 29.887353213339939 ], [ -95.651994081638549, 29.887417213048195 ], [ -95.651993080933451, 29.887486213700672 ], [ -95.652006081374893, 29.887623213824767 ], [ -95.652018081129569, 29.887690213854299 ], [ -95.652061081578111, 29.88781921304869 ], [ -95.652090081695619, 29.887883213823557 ], [ -95.652125081085458, 29.887947213552973 ], [ -95.652209081472932, 29.888071213764256 ], [ -95.652436081508171, 29.888372213531099 ], [ -95.652608080891881, 29.888616213731005 ], [ -95.652672081402244, 29.888729213280971 ], [ -95.65272108178867, 29.88884921345732 ], [ -95.652803081538963, 29.889080214013557 ], [ -95.652860080985207, 29.889251213709947 ], [ -95.652886081244191, 29.889304213861312 ], [ -95.652909081588973, 29.889363213443378 ], [ -95.653069081678012, 29.889574213603602 ], [ -95.653225082081036, 29.889704214066736 ], [ -95.653408081677725, 29.889809214246 ], [ -95.653570081594083, 29.889826213725026 ], [ -95.653700081603716, 29.889839213551021 ], [ -95.653921081975781, 29.889834213700659 ], [ -95.654106082016, 29.889811213955031 ], [ -95.654266081422605, 29.889779213848996 ], [ -95.654581081793125, 29.889623213558188 ], [ -95.65492808234778, 29.889452213615748 ], [ -95.655049082088965, 29.88939921327896 ], [ -95.655129082041256, 29.889359213928977 ], [ -95.655389082043101, 29.889247213562712 ], [ -95.655743082380667, 29.88909421352097 ], [ -95.656071081834469, 29.888952213990642 ], [ -95.656143082475111, 29.888924213769187 ], [ -95.656189082560033, 29.888911213332854 ], [ -95.65620908228783, 29.888904213229814 ], [ -95.656278082029672, 29.88886621353938 ], [ -95.656353081996926, 29.888847213424238 ], [ -95.656452082839422, 29.888802213642141 ], [ -95.656541082555165, 29.888771213380657 ], [ -95.657032082624212, 29.888620213049659 ], [ -95.657237082269276, 29.888562213042807 ], [ -95.65739008266705, 29.888523213313526 ], [ -95.657931082856152, 29.888407213103484 ], [ -95.658426083328621, 29.888331213102344 ], [ -95.658749083344247, 29.888288213197093 ], [ -95.658823083252798, 29.888282213542166 ], [ -95.659361082839837, 29.888268213039716 ], [ -95.659768083707831, 29.888263213349763 ], [ -95.660261082888042, 29.888261213171134 ], [ -95.660366083600863, 29.888264212986613 ], [ -95.660595083821704, 29.888283213725021 ], [ -95.660720083161564, 29.888294213113944 ], [ -95.66107008350177, 29.888340213636198 ], [ -95.661516083922493, 29.888416213154816 ], [ -95.662086083483956, 29.888515212873518 ], [ -95.662344084036093, 29.888582212887929 ], [ -95.662470084210597, 29.88862221326195 ], [ -95.662683084420919, 29.888696213622083 ], [ -95.662945083615327, 29.888810213665877 ], [ -95.663027084000888, 29.888857213384433 ], [ -95.6631880841352, 29.888940213404208 ], [ -95.663260084362022, 29.888982213182395 ], [ -95.663632083855674, 29.889226213354441 ], [ -95.663961084170211, 29.889459213343958 ], [ -95.664122084681907, 29.889580213740256 ], [ -95.664365084832554, 29.889765213454758 ], [ -95.664518084253061, 29.889854213507377 ], [ -95.664592084754162, 29.889919213542946 ], [ -95.664750084157603, 29.890010213133174 ], [ -95.664908084495011, 29.890085213710872 ], [ -95.665124084908854, 29.890169213714596 ], [ -95.66526008450181, 29.890214213700634 ], [ -95.665444084778613, 29.890261213344662 ], [ -95.665591084940033, 29.890294213314551 ], [ -95.665741085231289, 29.890318213301782 ], [ -95.665902085268712, 29.890336213630526 ], [ -95.666154084877391, 29.89035121376644 ], [ -95.66638308519029, 29.890350213605881 ], [ -95.666861085366762, 29.890325213406413 ], [ -95.667461084934743, 29.890278213555675 ], [ -95.667739085310444, 29.890270213851124 ], [ -95.668469085540039, 29.890256213505189 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 369, "Tract": "48201541404", "Area_SqMi": 0.48113682454234963, "total_2009": 174, "total_2010": 140, "total_2011": 193, "total_2012": 266, "total_2013": 302, "total_2014": 310, "total_2015": 318, "total_2016": 301, "total_2017": 303, "total_2018": 315, "total_2019": 357, "total_2020": 635, "age1": 194, "age2": 181, "age3": 49, "earn1": 174, "earn2": 163, "earn3": 87, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 3, "naics_s06": 18, "naics_s07": 71, "naics_s08": 8, "naics_s09": 1, "naics_s10": 8, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 3, "naics_s15": 12, "naics_s16": 26, "naics_s17": 0, "naics_s18": 237, "naics_s19": 26, "naics_s20": 0, "race1": 271, "race2": 73, "race3": 3, "race4": 67, "race5": 0, "race6": 10, "ethnicity1": 298, "ethnicity2": 126, "edu1": 55, "edu2": 61, "edu3": 72, "edu4": 42, "Shape_Length": 24181.518989908454, "Shape_Area": 13413271.194335584, "total_2021": 795, "total_2022": 424 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.66987208494146, 29.861025207574066 ], [ -95.669878084969824, 29.860843206934202 ], [ -95.669869084939933, 29.860562207273805 ], [ -95.669847084972503, 29.860289207451828 ], [ -95.66981208492092, 29.860037207187407 ], [ -95.669760084967038, 29.859768207308665 ], [ -95.669683084741564, 29.859472207233328 ], [ -95.669133084217222, 29.859497207001478 ], [ -95.667620083937464, 29.859465207421295 ], [ -95.667020084057626, 29.859453207323476 ], [ -95.666500083385714, 29.859458206953516 ], [ -95.665265083769654, 29.859505207476783 ], [ -95.665269083466811, 29.85940920735079 ], [ -95.66469108334735, 29.859414207573103 ], [ -95.662630083017731, 29.859428207074334 ], [ -95.660578081678466, 29.859451207179472 ], [ -95.660584082268699, 29.85983120716644 ], [ -95.659571081899784, 29.859817207557782 ], [ -95.659620082175053, 29.860528207738565 ], [ -95.659651081879886, 29.861308207941853 ], [ -95.659686082335554, 29.861996208149066 ], [ -95.658885081582469, 29.862017208237891 ], [ -95.658871082221069, 29.861423207566247 ], [ -95.657383081563211, 29.86131320825514 ], [ -95.657375081381531, 29.86161520758624 ], [ -95.657411081765346, 29.862098207824619 ], [ -95.657690081829784, 29.862707208517715 ], [ -95.657630081725046, 29.863235207855805 ], [ -95.657436081380965, 29.863513208556384 ], [ -95.657195081786327, 29.863705208572775 ], [ -95.656922081259708, 29.863803208279393 ], [ -95.656646081639622, 29.863858208135206 ], [ -95.655957081560175, 29.863880208110217 ], [ -95.655870080880632, 29.864525208341107 ], [ -95.655878081478789, 29.864976208559472 ], [ -95.655054081282302, 29.865291209139851 ], [ -95.654824080955976, 29.865384208913287 ], [ -95.654433080429328, 29.865435209164211 ], [ -95.654114080598589, 29.865427208673466 ], [ -95.654068080442684, 29.864322209031712 ], [ -95.653589080660325, 29.864331208262829 ], [ -95.652931080110051, 29.864339209047593 ], [ -95.652394080065392, 29.864432208862539 ], [ -95.651513080111229, 29.864900208428566 ], [ -95.650855079835281, 29.864274208692731 ], [ -95.650049080060285, 29.863493208218742 ], [ -95.64985307986386, 29.863355208854198 ], [ -95.649165078867185, 29.862871208293612 ], [ -95.648728079588068, 29.862638208271026 ], [ -95.648157078704386, 29.862394208211228 ], [ -95.647664078694561, 29.86225020807499 ], [ -95.646944078562868, 29.862086208131277 ], [ -95.646948078211324, 29.861628208626797 ], [ -95.646943078563524, 29.861211208343811 ], [ -95.646923078815647, 29.861047208624928 ], [ -95.646858079169405, 29.860873208074416 ], [ -95.646724078742764, 29.860719208462832 ], [ -95.646595078704863, 29.860599208285866 ], [ -95.646436078300923, 29.860505208484291 ], [ -95.646217078296715, 29.86040120788774 ], [ -95.645869077899732, 29.860376207784903 ], [ -95.645502078750269, 29.860381208044693 ], [ -95.645090078033803, 29.860396207830604 ], [ -95.645100078577556, 29.860860207947557 ], [ -95.645100078109408, 29.86208120824806 ], [ -95.645100078717732, 29.862151208434177 ], [ -95.645100078300757, 29.862197208199941 ], [ -95.645105078129518, 29.86285120873529 ], [ -95.645113078005409, 29.863908209158733 ], [ -95.645114078157917, 29.864003208561712 ], [ -95.645117078539485, 29.864379208895887 ], [ -95.645123078712203, 29.865171208829928 ], [ -95.645125078695941, 29.865441209079773 ], [ -95.645129078476089, 29.86581720896482 ], [ -95.645130078582341, 29.865974208875731 ], [ -95.645133078775643, 29.866272209372571 ], [ -95.645133078979711, 29.866316208988891 ], [ -95.64514007813365, 29.866617209435791 ], [ -95.645145078567253, 29.86681220935678 ], [ -95.645151078851143, 29.867086209532541 ], [ -95.645153078407134, 29.867186209725613 ], [ -95.645156078689112, 29.867302209605956 ], [ -95.645160078599602, 29.867429209784977 ], [ -95.645164078411426, 29.867565209524162 ], [ -95.645168078412226, 29.867678209865201 ], [ -95.645787078199191, 29.867671209260148 ], [ -95.645937079150471, 29.867670209554564 ], [ -95.646179078800586, 29.867668209970095 ], [ -95.646475078659549, 29.867668209758467 ], [ -95.647008078607186, 29.867667209254478 ], [ -95.64732707939875, 29.867667209835858 ], [ -95.647507078877936, 29.867667209929525 ], [ -95.648601079581695, 29.867642209210935 ], [ -95.648721079192498, 29.867638209459269 ], [ -95.648841079828571, 29.867634209626104 ], [ -95.649351079570977, 29.867618209343469 ], [ -95.650066080071511, 29.867606209200002 ], [ -95.651087079972228, 29.867590209654441 ], [ -95.652210080368164, 29.867595209146788 ], [ -95.6531740801979, 29.867609209624682 ], [ -95.653544080973305, 29.867609209630064 ], [ -95.653673080507971, 29.867609209039504 ], [ -95.653694080753908, 29.86760920940149 ], [ -95.654037081103525, 29.867602209291007 ], [ -95.654209080368162, 29.867595208995315 ], [ -95.654558080697612, 29.867568209082705 ], [ -95.654732080644337, 29.86754820952741 ], [ -95.655079080773845, 29.867494209389363 ], [ -95.655251081483655, 29.867463209311431 ], [ -95.655593081213695, 29.867386209296637 ], [ -95.655761081474523, 29.867343209328133 ], [ -95.656093081816394, 29.867243209447466 ], [ -95.65641608104967, 29.867126209205775 ], [ -95.656575081824784, 29.867062209425256 ], [ -95.656731081066667, 29.866994209369039 ], [ -95.656886081195537, 29.866921209259811 ], [ -95.657191081975, 29.866759208596783 ], [ -95.657495081172769, 29.866581208583899 ], [ -95.658262082175156, 29.866090208554088 ], [ -95.658417081820232, 29.865996208372557 ], [ -95.658732082296083, 29.8658212090461 ], [ -95.658894082137422, 29.865741209183756 ], [ -95.659061082440033, 29.865667208508796 ], [ -95.659406082289692, 29.865532208528791 ], [ -95.659581082597967, 29.865470208470768 ], [ -95.659936082035046, 29.865360208284638 ], [ -95.660300081893297, 29.865265208154771 ], [ -95.660488082813501, 29.865224208515542 ], [ -95.660681081904272, 29.865188208729784 ], [ -95.660876082723746, 29.865158208247927 ], [ -95.661269082642903, 29.865114208744235 ], [ -95.661467082206997, 29.86510120887047 ], [ -95.662275082987691, 29.865081208167179 ], [ -95.663192082846763, 29.865079208052112 ], [ -95.663290083089734, 29.865079208815985 ], [ -95.665016083682403, 29.865085208082959 ], [ -95.665523083990195, 29.865087208383702 ], [ -95.665569083633031, 29.865087208253364 ], [ -95.66566608392678, 29.865088208648455 ], [ -95.665869083997848, 29.865089208121411 ], [ -95.666320083394581, 29.865091207973453 ], [ -95.666805083482586, 29.865100208493033 ], [ -95.667580083664845, 29.865125208233483 ], [ -95.667676084348457, 29.865130208706443 ], [ -95.667943084328201, 29.865144207867374 ], [ -95.668233083897661, 29.865168208695703 ], [ -95.66849308395075, 29.865201207994083 ], [ -95.669058084661984, 29.865285208661287 ], [ -95.669077084185474, 29.865208208371712 ], [ -95.669303084944275, 29.864081207743716 ], [ -95.66932708451526, 29.863965207848839 ], [ -95.669473084420076, 29.863271207599588 ], [ -95.669558084926308, 29.862837207832897 ], [ -95.669705084948376, 29.862136207291719 ], [ -95.669803084991401, 29.861611207920706 ], [ -95.669839084753448, 29.861357207615271 ], [ -95.66987208494146, 29.861025207574066 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 370, "Tract": "48201421205", "Area_SqMi": 0.15519496292733714, "total_2009": 555, "total_2010": 567, "total_2011": 619, "total_2012": 1671, "total_2013": 1706, "total_2014": 399, "total_2015": 434, "total_2016": 431, "total_2017": 369, "total_2018": 357, "total_2019": 439, "total_2020": 513, "age1": 178, "age2": 317, "age3": 148, "earn1": 167, "earn2": 318, "earn3": 158, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 0, "naics_s07": 50, "naics_s08": 1, "naics_s09": 0, "naics_s10": 82, "naics_s11": 10, "naics_s12": 24, "naics_s13": 0, "naics_s14": 334, "naics_s15": 1, "naics_s16": 64, "naics_s17": 0, "naics_s18": 68, "naics_s19": 5, "naics_s20": 0, "race1": 479, "race2": 69, "race3": 9, "race4": 75, "race5": 1, "race6": 10, "ethnicity1": 405, "ethnicity2": 238, "edu1": 108, "edu2": 124, "edu3": 139, "edu4": 94, "Shape_Length": 9943.9314623341834, "Shape_Area": 4326569.9475804754, "total_2021": 589, "total_2022": 643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.499295034446661, 29.716846184099055 ], [ -95.499177034700367, 29.716731183482914 ], [ -95.499075033944635, 29.716630183967524 ], [ -95.49890503430511, 29.716463183600709 ], [ -95.498392034259638, 29.716042183667817 ], [ -95.498000034209312, 29.715698183745303 ], [ -95.497771033799026, 29.715495183278815 ], [ -95.49760903360999, 29.715354183436197 ], [ -95.497135034211496, 29.714945183346426 ], [ -95.497122033911921, 29.714956183311518 ], [ -95.496610033889439, 29.715384183977648 ], [ -95.496223033522909, 29.715644183468992 ], [ -95.495700033119192, 29.715901183344119 ], [ -95.4952390333805, 29.716070184213645 ], [ -95.494929033517963, 29.716178184226923 ], [ -95.494544033432021, 29.716255184265044 ], [ -95.494281032708727, 29.716291183734128 ], [ -95.493997033174338, 29.716321183738295 ], [ -95.493325032636207, 29.716350183657259 ], [ -95.493116032457181, 29.716343183441971 ], [ -95.492797033291197, 29.716342183766621 ], [ -95.491625032117824, 29.716355184163024 ], [ -95.491436032547227, 29.7163581839302 ], [ -95.490134032643482, 29.716372184343729 ], [ -95.4889680322744, 29.716387183639792 ], [ -95.488974031414202, 29.717158184347333 ], [ -95.488980032389961, 29.718168184700087 ], [ -95.488981032300558, 29.718328184654514 ], [ -95.489010031794038, 29.720008184428721 ], [ -95.489638032265034, 29.720005185085842 ], [ -95.490228032360022, 29.720005184897548 ], [ -95.490401032497715, 29.720011184769948 ], [ -95.490810032475565, 29.720001185009163 ], [ -95.491183032620583, 29.71999218434852 ], [ -95.491386032573004, 29.719997184291348 ], [ -95.491998032923306, 29.719985185034023 ], [ -95.493159033309837, 29.719968184205531 ], [ -95.493156033520151, 29.720320185090802 ], [ -95.49315203334136, 29.720861184918075 ], [ -95.493182033598302, 29.721548185280291 ], [ -95.493183032896852, 29.721817184910439 ], [ -95.493127032902038, 29.722099185126201 ], [ -95.493187032688596, 29.72225418518736 ], [ -95.493383032988419, 29.722083184781244 ], [ -95.494103033032147, 29.721452184870053 ], [ -95.494993033928495, 29.720662184856177 ], [ -95.499088033977188, 29.717030184187081 ], [ -95.499295034446661, 29.716846184099055 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 371, "Tract": "48291700301", "Area_SqMi": 18.233091354259006, "total_2009": 187, "total_2010": 10, "total_2011": 28, "total_2012": 38, "total_2013": 47, "total_2014": 49, "total_2015": 82, "total_2016": 82, "total_2017": 88, "total_2018": 135, "total_2019": 89, "total_2020": 108, "age1": 41, "age2": 86, "age3": 35, "earn1": 17, "earn2": 43, "earn3": 102, "naics_s01": 0, "naics_s02": 13, "naics_s03": 3, "naics_s04": 136, "naics_s05": 4, "naics_s06": 0, "naics_s07": 1, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 3, "naics_s19": 0, "naics_s20": 0, "race1": 151, "race2": 6, "race3": 0, "race4": 5, "race5": 0, "race6": 0, "ethnicity1": 118, "ethnicity2": 44, "edu1": 33, "edu2": 48, "edu3": 26, "edu4": 14, "Shape_Length": 137351.53598786372, "Shape_Area": 508307380.7090084, "total_2021": 156, "total_2022": 162 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.136928966508648, 30.270639309209081 ], [ -95.136917966763846, 30.270612309569501 ], [ -95.135965966577842, 30.268125309142857 ], [ -95.135959966252031, 30.268110308838718 ], [ -95.13534296630597, 30.266528308979428 ], [ -95.134171965549939, 30.263526308107181 ], [ -95.134124965979595, 30.263405308140399 ], [ -95.133870965314088, 30.262708307548152 ], [ -95.133535965774271, 30.261790307793586 ], [ -95.133108965673628, 30.260618307454877 ], [ -95.132855964849227, 30.259922307181174 ], [ -95.132821965119916, 30.259836307539288 ], [ -95.132722965209865, 30.259579307153011 ], [ -95.132690965438073, 30.259494307166882 ], [ -95.132677965007389, 30.259454306759867 ], [ -95.13264196471809, 30.259338307028557 ], [ -95.132629964854587, 30.259299307407964 ], [ -95.132553965242508, 30.259091306849371 ], [ -95.132325964766508, 30.258469306591405 ], [ -95.132250964835407, 30.258262306523843 ], [ -95.132231964795267, 30.258208307343541 ], [ -95.132174964928154, 30.258049307200569 ], [ -95.132156964508809, 30.257996306969464 ], [ -95.132140964924886, 30.257953306855207 ], [ -95.132095964705044, 30.257824306872291 ], [ -95.13208096536097, 30.257781306592378 ], [ -95.13205596502452, 30.257717307002569 ], [ -95.131983964461284, 30.257527306904453 ], [ -95.131959964786063, 30.257464307187625 ], [ -95.131945965427079, 30.257426306933819 ], [ -95.131646965152839, 30.256594306312078 ], [ -95.130749964344673, 30.254098305944204 ], [ -95.130451964215325, 30.253267306222366 ], [ -95.130218964386842, 30.252625306259567 ], [ -95.129522963722962, 30.250701305625668 ], [ -95.129453963823011, 30.250508305489738 ], [ -95.129042964120259, 30.250266305736375 ], [ -95.129024964134999, 30.250256305013046 ], [ -95.128970964097391, 30.250226305533062 ], [ -95.128952963377543, 30.250217305727109 ], [ -95.12892796343597, 30.250152305202317 ], [ -95.128853963844321, 30.249957305261141 ], [ -95.12882996410498, 30.249892305481183 ], [ -95.12828696358747, 30.248474305473902 ], [ -95.127086963408573, 30.245649304770403 ], [ -95.127081962640332, 30.245634304618548 ], [ -95.125600962813948, 30.24188030409341 ], [ -95.125215962483381, 30.241623304054954 ], [ -95.125007962186231, 30.241509303675979 ], [ -95.12460196227191, 30.241322303916579 ], [ -95.124310962700093, 30.241212303720598 ], [ -95.124247962243771, 30.241174303415107 ], [ -95.124170962479212, 30.241091303949407 ], [ -95.12408296186409, 30.241020303380601 ], [ -95.123993962498133, 30.240987303936762 ], [ -95.12363896205909, 30.240910303703309 ], [ -95.123575962358814, 30.240877303346288 ], [ -95.123182961592647, 30.240575303643258 ], [ -95.123138961665219, 30.240454304000487 ], [ -95.12310096166803, 30.24042130386653 ], [ -95.123017962008305, 30.240399303775224 ], [ -95.122935962282355, 30.240361303610698 ], [ -95.122789962040414, 30.240218303461276 ], [ -95.122574961931846, 30.240108303526416 ], [ -95.122485961904715, 30.240036303682388 ], [ -95.122390962100923, 30.2399053038951 ], [ -95.122264961867998, 30.239844303938646 ], [ -95.122213961265061, 30.239839303350777 ], [ -95.122061961949512, 30.239866303669512 ], [ -95.122004961282713, 30.239861303487483 ], [ -95.121801961882866, 30.2397843039486 ], [ -95.121725961685399, 30.239773303944506 ], [ -95.121624961189156, 30.239790303703678 ], [ -95.121561961819069, 30.239790303197786 ], [ -95.121510961314968, 30.239773303516632 ], [ -95.12145996176821, 30.239735303637044 ], [ -95.121465960975968, 30.239707303480934 ], [ -95.121535961088483, 30.239636303375622 ], [ -95.121548961329154, 30.239608303607458 ], [ -95.121541961728624, 30.23958130363555 ], [ -95.121516961816084, 30.2395533031833 ], [ -95.121408960951925, 30.239531303949992 ], [ -95.12137796153327, 30.239542303296997 ], [ -95.121276960991423, 30.239608303578351 ], [ -95.12113096127311, 30.23965830360055 ], [ -95.121016961764084, 30.23978430334736 ], [ -95.120927961268421, 30.239856303714134 ], [ -95.120832961196101, 30.239905303251369 ], [ -95.120794961309258, 30.239911303596063 ], [ -95.1207699617202, 30.239905303276647 ], [ -95.120756961186501, 30.239861303666899 ], [ -95.120788961633252, 30.239790303948045 ], [ -95.120902961221589, 30.239663303432948 ], [ -95.120915961267997, 30.23962530318542 ], [ -95.120908961791486, 30.239581303180891 ], [ -95.120870961565231, 30.239564303217264 ], [ -95.120630961487748, 30.23954330387328 ], [ -95.120452960841547, 30.239488303419574 ], [ -95.120389961189915, 30.239482303837892 ], [ -95.120345960980444, 30.239499303235775 ], [ -95.120313961219566, 30.23954830351898 ], [ -95.120351960903591, 30.239774303902774 ], [ -95.120338961507741, 30.239807303853382 ], [ -95.120319960607702, 30.239834303850031 ], [ -95.120288961372623, 30.239851303274811 ], [ -95.120237960639898, 30.23986730394989 ], [ -95.120174961574818, 30.239873304026617 ], [ -95.120104960951636, 30.239851303910712 ], [ -95.120041961570109, 30.239812303329114 ], [ -95.119933961423413, 30.239631303495173 ], [ -95.1198899606255, 30.239620303945745 ], [ -95.119604960837563, 30.239681303753201 ], [ -95.119547960479977, 30.239681303702795 ], [ -95.119452960641297, 30.239653303596224 ], [ -95.119439960999472, 30.239637303553579 ], [ -95.119433961244368, 30.239598303651793 ], [ -95.119439960741261, 30.239560303944852 ], [ -95.119490961220791, 30.239494303598605 ], [ -95.119635960518067, 30.23937330339464 ], [ -95.119680961229633, 30.239318303950281 ], [ -95.119686961296139, 30.239296303298104 ], [ -95.119641960879903, 30.239246303453513 ], [ -95.119477960698248, 30.239202303199495 ], [ -95.119426960598886, 30.239202303629423 ], [ -95.11931296066571, 30.239257303602571 ], [ -95.119097960499587, 30.23934030375095 ], [ -95.119034960429417, 30.23934530320572 ], [ -95.118932960600119, 30.239329303769249 ], [ -95.118882960862265, 30.239285303389433 ], [ -95.11887596125176, 30.239241303242935 ], [ -95.118888960323517, 30.239214303727092 ], [ -95.118939961001857, 30.239180303495218 ], [ -95.119173960879451, 30.239092303096264 ], [ -95.119274961040603, 30.239043303449716 ], [ -95.119312960331342, 30.239004303553788 ], [ -95.119325960630803, 30.238938303742 ], [ -95.119306960757285, 30.238916303712454 ], [ -95.119236960843892, 30.238889303766054 ], [ -95.119147960545547, 30.23887830305085 ], [ -95.119059960382444, 30.238895303729169 ], [ -95.118951960693565, 30.238955303324396 ], [ -95.118805960242867, 30.238994303843011 ], [ -95.118767960273075, 30.238994303286155 ], [ -95.118723960746138, 30.238950303404195 ], [ -95.118704960588644, 30.238917303587296 ], [ -95.118704960502356, 30.23888930387967 ], [ -95.118793960367, 30.238774303495195 ], [ -95.118786961142419, 30.238713303328147 ], [ -95.118748960683007, 30.238669303079856 ], [ -95.118660960187171, 30.238647303183342 ], [ -95.118482960831528, 30.238647303043059 ], [ -95.118343960614581, 30.23865830387718 ], [ -95.11821696003247, 30.238691303318245 ], [ -95.118083960291059, 30.238752303588139 ], [ -95.118014960996746, 30.238802303521215 ], [ -95.117906960912279, 30.238901303494647 ], [ -95.117862960540236, 30.238923303259043 ], [ -95.11776796093767, 30.238939303410049 ], [ -95.117678959887101, 30.238934303829836 ], [ -95.11759096043177, 30.23891230326667 ], [ -95.117533960688348, 30.238879303286023 ], [ -95.117482959917353, 30.238807303558414 ], [ -95.117425960763626, 30.238620303292162 ], [ -95.117387960624797, 30.238565303855573 ], [ -95.117247960345253, 30.238428303657333 ], [ -95.117241959987012, 30.238362303022964 ], [ -95.117291959812988, 30.238230303483533 ], [ -95.117279960214162, 30.238197303137326 ], [ -95.117253959886852, 30.238170303726481 ], [ -95.117171959864635, 30.238142303148848 ], [ -95.117095960255881, 30.238131303199356 ], [ -95.116975960004893, 30.23817530358059 ], [ -95.116937960503066, 30.238181303743229 ], [ -95.116873959764959, 30.238175303398123 ], [ -95.116797960414416, 30.238120303584211 ], [ -95.116791960349303, 30.238049303548941 ], [ -95.116892960310381, 30.237928303513403 ], [ -95.116899960456834, 30.237884303515141 ], [ -95.116880960255202, 30.237867303377598 ], [ -95.116854960350864, 30.237856302966069 ], [ -95.116778960138731, 30.237851303141493 ], [ -95.116690960218676, 30.237862303747775 ], [ -95.11649396036961, 30.237939303223722 ], [ -95.116360960065364, 30.237972302964916 ], [ -95.116202959728795, 30.23799430380333 ], [ -95.116057960224154, 30.238000303133088 ], [ -95.115987959547383, 30.237983303778634 ], [ -95.115968960344219, 30.237939303855004 ], [ -95.115968959950166, 30.237895303222778 ], [ -95.115999959457682, 30.237868303328202 ], [ -95.116075960242142, 30.237829302988821 ], [ -95.116215960240112, 30.237785303557274 ], [ -95.116265960344151, 30.237747303209495 ], [ -95.11628496017039, 30.237670303660504 ], [ -95.116259959919404, 30.23763130334271 ], [ -95.116208960183812, 30.237598303428143 ], [ -95.116145959858642, 30.237587303325114 ], [ -95.116050960234872, 30.237593303497988 ], [ -95.115942960299549, 30.237670303462618 ], [ -95.11587995994941, 30.237780303601973 ], [ -95.115809959878959, 30.237802303612252 ], [ -95.11572195968327, 30.237796303542776 ], [ -95.1154489595109, 30.237731303388951 ], [ -95.115391960074248, 30.237725303047696 ], [ -95.115328959782644, 30.237736303782608 ], [ -95.115296959290006, 30.237753302976245 ], [ -95.115183959752613, 30.237874303143354 ], [ -95.115157959954232, 30.237890302994934 ], [ -95.115119959378816, 30.237896303516965 ], [ -95.115088959688677, 30.237896303520063 ], [ -95.115068959882635, 30.237885303490987 ], [ -95.114980959763557, 30.237742303465474 ], [ -95.114948960047172, 30.237725303421222 ], [ -95.11488595985594, 30.237709303356592 ], [ -95.114670959107684, 30.237725303594001 ], [ -95.11460096004123, 30.237720303315772 ], [ -95.114562959548465, 30.237698303027749 ], [ -95.114505959650117, 30.237599303437033 ], [ -95.1144359599285, 30.237522303551749 ], [ -95.114435959025258, 30.237500303201909 ], [ -95.11455595910428, 30.237363303482343 ], [ -95.114574959046465, 30.237308303552354 ], [ -95.114562959382084, 30.237258302874242 ], [ -95.114524959164498, 30.237231303197273 ], [ -95.114448959319091, 30.237225302897073 ], [ -95.114365959543207, 30.237236303668791 ], [ -95.114182959651288, 30.237335303410685 ], [ -95.114131959329228, 30.237352303655182 ], [ -95.114017959205185, 30.237330303024571 ], [ -95.113947959641209, 30.237280303474581 ], [ -95.113928959271604, 30.2372473029004 ], [ -95.113922959046974, 30.237187303263223 ], [ -95.113966958888923, 30.237132302902189 ], [ -95.114042958992371, 30.237082303055008 ], [ -95.114099959206328, 30.237060303337742 ], [ -95.114258959635251, 30.237038303161409 ], [ -95.114314959858689, 30.237005303664137 ], [ -95.114327959891369, 30.236978303661104 ], [ -95.114321959301449, 30.236917303071937 ], [ -95.114289959395649, 30.236857303146284 ], [ -95.114194959697485, 30.236785303032384 ], [ -95.114029958891038, 30.236692303094191 ], [ -95.113820959491093, 30.236588303207121 ], [ -95.113580959728864, 30.236505302885245 ], [ -95.113516959615978, 30.236472303008902 ], [ -95.113294959105161, 30.236318303233933 ], [ -95.113174959558734, 30.2362913034702 ], [ -95.113098959392943, 30.236291303616479 ], [ -95.113016959170096, 30.236308302954356 ], [ -95.112763959403836, 30.23639630287461 ], [ -95.112611959423134, 30.236418303020766 ], [ -95.112503959199529, 30.236401303086208 ], [ -95.112452958891467, 30.236379303189807 ], [ -95.112395959020986, 30.236346303613956 ], [ -95.112351959180003, 30.236302303283946 ], [ -95.112332958717275, 30.236258303627437 ], [ -95.112338958631952, 30.236220303221067 ], [ -95.112364958521155, 30.236198303563011 ], [ -95.112414958619752, 30.236181303086845 ], [ -95.112630959134904, 30.236143303451733 ], [ -95.1126939592978, 30.236104303298863 ], [ -95.112693959229716, 30.23606630294174 ], [ -95.112617958673511, 30.236000303558423 ], [ -95.112560959059351, 30.235961302805553 ], [ -95.112509958894236, 30.235945303266554 ], [ -95.112300958886877, 30.235934303478366 ], [ -95.112205959232298, 30.235945302994953 ], [ -95.112123958557277, 30.235978302687901 ], [ -95.112066958536602, 30.236033303462335 ], [ -95.112015958334737, 30.236127302789217 ], [ -95.112003959089307, 30.236182303304531 ], [ -95.111958958939667, 30.236226303337315 ], [ -95.111927959146456, 30.23624230350725 ], [ -95.111895958913564, 30.236242303652691 ], [ -95.111825958522573, 30.236215303310374 ], [ -95.111794959087959, 30.236187302755468 ], [ -95.111781958358932, 30.236154303608458 ], [ -95.111787959256219, 30.236088303453858 ], [ -95.111958959243324, 30.235901302850497 ], [ -95.111996959042344, 30.235835303390676 ], [ -95.112028958529663, 30.235753303028908 ], [ -95.111990959237261, 30.235698302813919 ], [ -95.111907958269157, 30.235643302749818 ], [ -95.111711958918676, 30.235555302985983 ], [ -95.111641958889749, 30.235467302644334 ], [ -95.111603958535838, 30.235450302651202 ], [ -95.111477958780853, 30.235445303497158 ], [ -95.111420958997726, 30.235434302933431 ], [ -95.111223958586308, 30.235313303205178 ], [ -95.111166958270843, 30.235291302783825 ], [ -95.110995958527397, 30.235302303137967 ], [ -95.110907958455144, 30.235330302713638 ], [ -95.110843958814229, 30.235374303252591 ], [ -95.110812958053984, 30.235418302951135 ], [ -95.110717958631213, 30.235627302904373 ], [ -95.110660958765521, 30.235687303400866 ], [ -95.110590958187586, 30.235704303114467 ], [ -95.110540958106597, 30.235693303111244 ], [ -95.110514958801048, 30.235599302979413 ], [ -95.110521958854477, 30.235522303091955 ], [ -95.110558958783969, 30.235401303534452 ], [ -95.110546958086388, 30.235379303079309 ], [ -95.110527958161398, 30.235368303240374 ], [ -95.110444958144868, 30.235363303349022 ], [ -95.110204958758601, 30.235369302869813 ], [ -95.110109957879615, 30.235259302885126 ], [ -95.110052958430813, 30.235160302959994 ], [ -95.110001958070754, 30.235033303215261 ], [ -95.110001958151017, 30.234989303370003 ], [ -95.110071958126426, 30.234874302771196 ], [ -95.110071957870744, 30.234813302828485 ], [ -95.110033958456441, 30.234725302782817 ], [ -95.109982958008146, 30.234670302678136 ], [ -95.109925958214092, 30.234670303003785 ], [ -95.109868957823309, 30.234703302502616 ], [ -95.109792958332648, 30.234813302662303 ], [ -95.10975495808276, 30.23484630323583 ], [ -95.10972295805945, 30.234852303207649 ], [ -95.109691958073796, 30.234813303272276 ], [ -95.10969195774112, 30.234742302736407 ], [ -95.109703957702635, 30.234692302674102 ], [ -95.109804958337946, 30.234560302497801 ], [ -95.109817957763184, 30.234462303229069 ], [ -95.109804958222966, 30.234401303144118 ], [ -95.109766957746047, 30.234363303179489 ], [ -95.109697958296834, 30.234330303149129 ], [ -95.109570957868286, 30.234401302967814 ], [ -95.109513958096642, 30.234423302596532 ], [ -95.109386957770425, 30.234528303334113 ], [ -95.109361957783349, 30.23452830297018 ], [ -95.109190957688597, 30.234434302972332 ], [ -95.109076957574146, 30.234396302484946 ], [ -95.109013957793238, 30.234385302577323 ], [ -95.108937958337435, 30.234324303094965 ], [ -95.108924957850803, 30.23397830328059 ], [ -95.109069957689812, 30.233774302843241 ], [ -95.10910195779293, 30.233747302701204 ], [ -95.109190957628883, 30.233708302771213 ], [ -95.109291957833761, 30.23380230267999 ], [ -95.109335957578551, 30.233824302830509 ], [ -95.109405958143526, 30.233807302883985 ], [ -95.109430958513627, 30.233780302572114 ], [ -95.10946895840361, 30.233708302488594 ], [ -95.109468958541868, 30.233686303004443 ], [ -95.109468957814755, 30.233642303103935 ], [ -95.109418957988751, 30.233516303101542 ], [ -95.109386957638009, 30.233400303009482 ], [ -95.109335958154062, 30.23332930258622 ], [ -95.109234957930681, 30.233263302526606 ], [ -95.109164957533721, 30.233247302239345 ], [ -95.10900695799846, 30.233241302809873 ], [ -95.108943957903364, 30.233230302834041 ], [ -95.108892958219215, 30.23320330301906 ], [ -95.108867957684495, 30.233164302937993 ], [ -95.108860957609181, 30.233120302907679 ], [ -95.108866958252875, 30.233071302845108 ], [ -95.108892957381869, 30.233027302504247 ], [ -95.108923958265265, 30.232999302346069 ], [ -95.108999958388935, 30.23296130237501 ], [ -95.10903795751382, 30.232955302665371 ], [ -95.109196957552214, 30.232961303005478 ], [ -95.109259958376455, 30.232955302786181 ], [ -95.109291957563485, 30.232939302320183 ], [ -95.10937395841556, 30.232856302302629 ], [ -95.10941795832359, 30.232735303014362 ], [ -95.109455957620185, 30.232669302349063 ], [ -95.109588957707786, 30.232537302715141 ], [ -95.109601958021869, 30.23243830244806 ], [ -95.109594958306445, 30.232345302261667 ], [ -95.109541958339051, 30.232167302697608 ], [ -95.109531958163316, 30.232130302158435 ], [ -95.109524957916449, 30.232048302592599 ], [ -95.109550958271271, 30.231971301998719 ], [ -95.109588958199282, 30.23190530220608 ], [ -95.109936957597597, 30.23169630221166 ], [ -95.110227958106705, 30.231630302151501 ], [ -95.110379958392826, 30.231569302534233 ], [ -95.110398958600697, 30.231558302036163 ], [ -95.110411958031207, 30.231481302056196 ], [ -95.110404958441208, 30.231437302104588 ], [ -95.110366958024599, 30.231415302286951 ], [ -95.11027195839452, 30.231311302522798 ], [ -95.1102469578003, 30.231250302257749 ], [ -95.11023395802043, 30.231179302425581 ], [ -95.110233957674609, 30.23109630197672 ], [ -95.110195958453261, 30.230986302297921 ], [ -95.110163957810116, 30.230942302050714 ], [ -95.110125957976024, 30.230915301871541 ], [ -95.109992958439179, 30.23088230212235 ], [ -95.10993595826578, 30.230849302209652 ], [ -95.109878958262939, 30.230772302348033 ], [ -95.10986695839847, 30.230706301863425 ], [ -95.109922958086329, 30.230250302219396 ], [ -95.109922958109124, 30.230123301801331 ], [ -95.109783957948594, 30.229870301991209 ], [ -95.109758958330943, 30.229804302208429 ], [ -95.109719957880444, 30.229639301641406 ], [ -95.109605957640383, 30.229562301719021 ], [ -95.109567958319602, 30.229557301791072 ], [ -95.109453958195957, 30.229634302034142 ], [ -95.109403958111002, 30.229848301562274 ], [ -95.109340957434043, 30.229903302059448 ], [ -95.109162957654036, 30.229937302034653 ], [ -95.109118958129784, 30.229959301701474 ], [ -95.109011957397286, 30.230162302082487 ], [ -95.108966957941604, 30.23021730187347 ], [ -95.108770958092379, 30.230228302320921 ], [ -95.108637958144385, 30.230206301839075 ], [ -95.108434957976073, 30.230118301960001 ], [ -95.108320958054549, 30.230091302189983 ], [ -95.108004957584967, 30.230080301784984 ], [ -95.107757956920224, 30.230020302296975 ], [ -95.107636957596611, 30.229937301960582 ], [ -95.107605956984031, 30.229882302208864 ], [ -95.10759295765304, 30.229690301874509 ], [ -95.107630957064799, 30.229607302407999 ], [ -95.107661957046233, 30.229497301998606 ], [ -95.10764295745895, 30.229459301849367 ], [ -95.107598957721976, 30.229409302035631 ], [ -95.107376957408334, 30.229283302084191 ], [ -95.107269957124643, 30.229211301534075 ], [ -95.107117956768803, 30.229118301739966 ], [ -95.107003956707715, 30.228992301932212 ], [ -95.106882956885855, 30.22892630186098 ], [ -95.10672495745105, 30.228887302027886 ], [ -95.106528957098064, 30.228882301760624 ], [ -95.106369956693058, 30.228871302264938 ], [ -95.10616095684442, 30.228838301951882 ], [ -95.106113956888223, 30.229469301974202 ], [ -95.106355957157419, 30.22997230174915 ], [ -95.106264956899366, 30.230358301994848 ], [ -95.106264957478672, 30.230747302288357 ], [ -95.10630995746321, 30.230851302236001 ], [ -95.106109956568829, 30.231121302706285 ], [ -95.10604895696278, 30.231327301973931 ], [ -95.10610995697624, 30.231647302168255 ], [ -95.106308956967382, 30.231639302202375 ], [ -95.106567957301522, 30.231321302516566 ], [ -95.106765956882597, 30.231729302637049 ], [ -95.10671895694685, 30.232183302204572 ], [ -95.106458956739857, 30.232350302921212 ], [ -95.106000956983593, 30.232090302967656 ], [ -95.105787956835016, 30.232181302421324 ], [ -95.105023956362572, 30.232580302365403 ], [ -95.105174956801818, 30.23280630235465 ], [ -95.104976956661574, 30.232840302324501 ], [ -95.104823956861182, 30.232873302355692 ], [ -95.104518956385661, 30.232800302539111 ], [ -95.104517957154528, 30.23309930255261 ], [ -95.104365956747955, 30.233243302501563 ], [ -95.104166956730523, 30.233330302657667 ], [ -95.103892956468044, 30.233227303116035 ], [ -95.103601956796425, 30.233329302732763 ], [ -95.103189956521803, 30.233233303147717 ], [ -95.102684956616613, 30.233411303065484 ], [ -95.10227095616851, 30.23407130319287 ], [ -95.102270956168567, 30.234659303596686 ], [ -95.101963956602603, 30.235227303369946 ], [ -95.101611956287883, 30.235658303552363 ], [ -95.101198956321852, 30.235890303457825 ], [ -95.100893956428052, 30.235839303375183 ], [ -95.10054295601104, 30.235923303459312 ], [ -95.100236955627366, 30.236166303307719 ], [ -95.100128955296825, 30.23641830329203 ], [ -95.099930956129043, 30.236494304021321 ], [ -95.099670955448715, 30.236425303885142 ], [ -95.099212955471685, 30.23643130376092 ], [ -95.09834195564693, 30.236873303999456 ], [ -95.098142955728591, 30.236835304144083 ], [ -95.098037954795089, 30.236765304050113 ], [ -95.097623954870443, 30.237032303403304 ], [ -95.09742495492867, 30.237261304270472 ], [ -95.09707395512423, 30.237378303829619 ], [ -95.096659954962973, 30.237614303820788 ], [ -95.096354954996627, 30.237972303999474 ], [ -95.096246954450933, 30.238235304379689 ], [ -95.096306954406316, 30.238457304609739 ], [ -95.096200955336258, 30.23872430451976 ], [ -95.095894954372596, 30.238891304590844 ], [ -95.095848955276082, 30.239220304816062 ], [ -95.095999954602277, 30.239842304219 ], [ -95.095937954901515, 30.239999304859644 ], [ -95.095539955079516, 30.240627304250079 ], [ -95.095386954438041, 30.240940305174263 ], [ -95.095432955233917, 30.241043304965192 ], [ -95.095889954986191, 30.241155304389242 ], [ -95.095782955069936, 30.241338304966135 ], [ -95.095537954800335, 30.241467304445774 ], [ -95.095384954471925, 30.241654305040807 ], [ -95.095383955194251, 30.24221130456856 ], [ -95.095229954914771, 30.242677305086193 ], [ -95.095015955054606, 30.243340305353193 ], [ -95.09496895499818, 30.243688305759225 ], [ -95.095166954392653, 30.243955305054829 ], [ -95.095426955212048, 30.244231305412892 ], [ -95.095470954817571, 30.244483305283051 ], [ -95.095363954779558, 30.244899305375331 ], [ -95.095361954918786, 30.245521305947715 ], [ -95.095574954756671, 30.245789306100047 ], [ -95.095986955084769, 30.245961305383034 ], [ -95.095925955145901, 30.246446305644174 ], [ -95.09587795559662, 30.246663305501226 ], [ -95.095618954620278, 30.246930306086558 ], [ -95.095420955030562, 30.247059306256119 ], [ -95.095313955293207, 30.247250305759895 ], [ -95.095311955270745, 30.247421306245979 ], [ -95.095570955627366, 30.247812305722256 ], [ -95.095570955629185, 30.248209306535855 ], [ -95.095662954885213, 30.248408306466079 ], [ -95.09618195550155, 30.248454305940793 ], [ -95.096226955254608, 30.248045305826189 ], [ -95.096226955235451, 30.24777830609246 ], [ -95.096334955434955, 30.247690306471291 ], [ -95.096441954955793, 30.247703306029457 ], [ -95.096592955551785, 30.247875306524897 ], [ -95.096592955430467, 30.248272306305658 ], [ -95.096547955643189, 30.24862730614235 ], [ -95.096501955666724, 30.248707306657042 ], [ -95.096346954875543, 30.248791306543474 ], [ -95.096133955142491, 30.248886306022087 ], [ -95.095889954839691, 30.249006306743905 ], [ -95.095736955363137, 30.249102305975313 ], [ -95.095583955459986, 30.249228306707607 ], [ -95.095476955698231, 30.249453306318763 ], [ -95.095429955016584, 30.249636306690199 ], [ -95.095429955030994, 30.249895306726632 ], [ -95.095310955472499, 30.250212306332386 ], [ -95.095176955487048, 30.251000306759664 ], [ -95.095386955515053, 30.251506307323513 ], [ -95.095333955418866, 30.252033306839831 ], [ -95.094935955313773, 30.252789306962988 ], [ -95.095066955402118, 30.253179307365745 ], [ -95.095012954832455, 30.253683307777475 ], [ -95.094774955469845, 30.254256307526941 ], [ -95.094800955690644, 30.254532307455012 ], [ -95.095195955232697, 30.255037307159245 ], [ -95.095247955450631, 30.255748307809103 ], [ -95.095510955391575, 30.256206307579227 ], [ -95.095457955855323, 30.256641307592908 ], [ -95.095297955546698, 30.256939308106709 ], [ -95.094690955270337, 30.257146307962021 ], [ -95.094453955825472, 30.257465307720071 ], [ -95.094452955468668, 30.257476308172151 ], [ -95.094459954936568, 30.257537307697618 ], [ -95.094421954962911, 30.257614308149783 ], [ -95.094098955463664, 30.25800430798434 ], [ -95.094091955048413, 30.258070307893629 ], [ -95.094117955086489, 30.258120308264253 ], [ -95.094193955437973, 30.258180307978311 ], [ -95.094288955226148, 30.258186307970536 ], [ -95.094434955819366, 30.258180307937888 ], [ -95.0944789552793, 30.258241308219567 ], [ -95.094472955423001, 30.258296308595042 ], [ -95.094396955567092, 30.258405308005504 ], [ -95.09419395478325, 30.25853830871392 ], [ -95.094155955681956, 30.258593307946047 ], [ -95.094149955159537, 30.258675308797677 ], [ -95.094174955711082, 30.259263308267005 ], [ -95.094054955202736, 30.259478308574625 ], [ -95.094048955043618, 30.259533308901734 ], [ -95.094073955813187, 30.259610308738456 ], [ -95.094105955366203, 30.25966530823333 ], [ -95.094111954939862, 30.259703308212849 ], [ -95.09411195509378, 30.25975330901019 ], [ -95.094073955493315, 30.259808308190117 ], [ -95.093851955356598, 30.259907308862491 ], [ -95.093788955160605, 30.25992330826973 ], [ -95.093623955114651, 30.259934308295708 ], [ -95.093224954819334, 30.260193308609857 ], [ -95.093174955219865, 30.260242308414103 ], [ -95.093117954758554, 30.260341308976866 ], [ -95.093098955544036, 30.260429308433416 ], [ -95.093009954856669, 30.260539309023258 ], [ -95.09276295483609, 30.26060530843284 ], [ -95.092617955102639, 30.260704309034381 ], [ -95.092547955200914, 30.260737308749718 ], [ -95.092465954579438, 30.260897308902642 ], [ -95.09226895527425, 30.260781309121807 ], [ -95.09215495473147, 30.260787308527341 ], [ -95.092104954875168, 30.260820308910187 ], [ -95.092078954502682, 30.260842309232739 ], [ -95.092059954900137, 30.260941309113441 ], [ -95.092066955156696, 30.261172308535446 ], [ -95.092040955095285, 30.261238309337884 ], [ -95.091990955219686, 30.261265309367435 ], [ -95.091939954872615, 30.261271309041447 ], [ -95.091850954874772, 30.261260308939789 ], [ -95.091641954575238, 30.261177309206207 ], [ -95.091356954924379, 30.26110030872006 ], [ -95.091186954410276, 30.261069309226965 ], [ -95.091147954293689, 30.26106230872902 ], [ -95.09086295411538, 30.261051308806945 ], [ -95.09076795427076, 30.261057308909859 ], [ -95.089323953740802, 30.261310308898413 ], [ -95.089051954581223, 30.26136530888866 ], [ -95.088842953577711, 30.261425309573067 ], [ -95.088652953522995, 30.261486309463738 ], [ -95.088493953790717, 30.261552308970746 ], [ -95.088386953563855, 30.261601309532185 ], [ -95.088196953948909, 30.261717309001543 ], [ -95.08800695367087, 30.261849309034986 ], [ -95.087442953565713, 30.262355308993271 ], [ -95.087341953640006, 30.262426309126997 ], [ -95.087239954053786, 30.262476309723848 ], [ -95.0870629538679, 30.262492309077292 ], [ -95.086859953409416, 30.262498309467226 ], [ -95.086371953531128, 30.262487309872384 ], [ -95.086144953498334, 30.262482309771706 ], [ -95.085941953148691, 30.262465309366437 ], [ -95.085599952883427, 30.262405309871163 ], [ -95.085314953273411, 30.262394309158541 ], [ -95.08518795268057, 30.262377309020291 ], [ -95.08485895312792, 30.262278309779767 ], [ -95.084712952827772, 30.262257309005435 ], [ -95.084666953388336, 30.262256309258362 ], [ -95.084700952837537, 30.262439309247064 ], [ -95.084749953513722, 30.262607309479918 ], [ -95.084838953415414, 30.262912309159866 ], [ -95.084889952773921, 30.263149309688018 ], [ -95.084983953299613, 30.263575309315655 ], [ -95.085002953021274, 30.263729310174988 ], [ -95.085002953318892, 30.26392130948701 ], [ -95.084940953235517, 30.264471309672263 ], [ -95.084724953309475, 30.26588231028601 ], [ -95.084700952936672, 30.266043310498045 ], [ -95.084588953044019, 30.26679431014384 ], [ -95.08453595324805, 30.267142310820791 ], [ -95.084503953193632, 30.26735831044039 ], [ -95.084489953281377, 30.267544310114733 ], [ -95.084459953059365, 30.267968310783434 ], [ -95.084448953252405, 30.268298311107927 ], [ -95.084526952939811, 30.269282310847622 ], [ -95.084559953828062, 30.269552310879451 ], [ -95.084605953467033, 30.269806310669587 ], [ -95.084788953171753, 30.27054331150903 ], [ -95.084943953580506, 30.270933311060233 ], [ -95.085114953128496, 30.27136231157321 ], [ -95.085224953442804, 30.271753311371892 ], [ -95.08524395349886, 30.271922311436622 ], [ -95.085249954128415, 30.272134311234442 ], [ -95.085249953996836, 30.272145311770476 ], [ -95.085255953294435, 30.272360311654754 ], [ -95.085245953306199, 30.272566311784669 ], [ -95.085248953140152, 30.272657311360124 ], [ -95.085248953311861, 30.272685311830251 ], [ -95.085260953272908, 30.273043311620345 ], [ -95.08526595388102, 30.273163312070949 ], [ -95.085261953283222, 30.273643312049145 ], [ -95.085254953254648, 30.274634311603748 ], [ -95.085254954051464, 30.274676311836629 ], [ -95.085267954099947, 30.275586312538827 ], [ -95.085261954158014, 30.276549311919762 ], [ -95.085288954144659, 30.27846131316506 ], [ -95.085291953738263, 30.279214313226351 ], [ -95.085298953663397, 30.280728313159262 ], [ -95.085298953565982, 30.28075931275502 ], [ -95.085298954242973, 30.280852313373025 ], [ -95.085298954039644, 30.280884313009242 ], [ -95.085306954406036, 30.281332313011436 ], [ -95.085307953652659, 30.281383313659646 ], [ -95.08530895387598, 30.281395313483305 ], [ -95.085323954037193, 30.281495313460553 ], [ -95.08538595398656, 30.281722313110446 ], [ -95.085669954156657, 30.282624313620666 ], [ -95.085753953895619, 30.282892313223083 ], [ -95.08580395476136, 30.283053313808807 ], [ -95.085926953827794, 30.283438313462721 ], [ -95.086152954304964, 30.284139313890357 ], [ -95.086269953980391, 30.28460431361145 ], [ -95.086326954725465, 30.284829314185746 ], [ -95.086369954605317, 30.284997314346221 ], [ -95.086388954315268, 30.285072313594082 ], [ -95.086424955056003, 30.285276314089529 ], [ -95.086552954083686, 30.286001314468351 ], [ -95.086566954949006, 30.286120314707933 ], [ -95.086601954876656, 30.286404314631323 ], [ -95.086612955121225, 30.286493313949002 ], [ -95.08664595454951, 30.286763314668747 ], [ -95.086656954778974, 30.286853314008191 ], [ -95.086665954172844, 30.286930314239154 ], [ -95.086685955182872, 30.28715131429896 ], [ -95.086745954820387, 30.287811314994279 ], [ -95.086767954863987, 30.288046314932323 ], [ -95.08677695460787, 30.288133314633146 ], [ -95.086796954804612, 30.288345315050314 ], [ -95.086808954371449, 30.288486314761098 ], [ -95.086844955224208, 30.288910314834528 ], [ -95.086857955329037, 30.289052314724749 ], [ -95.086864954427796, 30.289230315057491 ], [ -95.086887954752015, 30.289767314701688 ], [ -95.086895954366398, 30.28994631519479 ], [ -95.086897954846776, 30.290011314577612 ], [ -95.08690695454672, 30.290207315005865 ], [ -95.086909954382762, 30.290273315470571 ], [ -95.086915955120546, 30.29055831540196 ], [ -95.086934954847877, 30.291414315105076 ], [ -95.08694195511589, 30.291700315078046 ], [ -95.084877954506467, 30.291689315258314 ], [ -95.084750953909861, 30.291689315777926 ], [ -95.084644953929228, 30.291690315543129 ], [ -95.083266953765559, 30.291710315112269 ], [ -95.083006954447114, 30.291710315498193 ], [ -95.081492953175768, 30.291712315750722 ], [ -95.08028295326541, 30.29171431574699 ], [ -95.079942953159133, 30.291719315815794 ], [ -95.07877595261381, 30.291739315948398 ], [ -95.07868895325376, 30.291739315288051 ], [ -95.076626952018245, 30.291761315501223 ], [ -95.07593695231381, 30.291771315566802 ], [ -95.075757952163187, 30.291774315693164 ], [ -95.074258952188771, 30.291768315733712 ], [ -95.073868951876236, 30.291771315426697 ], [ -95.073179951658432, 30.291777315898653 ], [ -95.072769950879746, 30.291780316086637 ], [ -95.071539951270708, 30.291789315568121 ], [ -95.071130950497093, 30.291793315608999 ], [ -95.070306950705103, 30.291801315707509 ], [ -95.068006949855814, 30.291825315798089 ], [ -95.067836949680924, 30.291824316100669 ], [ -95.067013949914752, 30.291822315787119 ], [ -95.065836949281262, 30.291825316504077 ], [ -95.062506948183824, 30.291835315932744 ], [ -95.062305949143422, 30.291833316564119 ], [ -95.061873948899517, 30.291831316367269 ], [ -95.061129947934859, 30.291843316554495 ], [ -95.060858948711171, 30.291844316382885 ], [ -95.060048948315384, 30.291847316320048 ], [ -95.059829947787478, 30.291848316727538 ], [ -95.059779947610465, 30.291849316517379 ], [ -95.058510947813659, 30.291874316293114 ], [ -95.058214947529763, 30.291880316064457 ], [ -95.05780194759825, 30.2918753161787 ], [ -95.054704946808883, 30.291892316502643 ], [ -95.053436946837607, 30.29190031684811 ], [ -95.052879946119816, 30.29189931646544 ], [ -95.051212945753548, 30.291898316913308 ], [ -95.050656945832429, 30.291898316871045 ], [ -95.05045694530493, 30.291897316513872 ], [ -95.049859945373527, 30.291896316935169 ], [ -95.049660944888629, 30.29189631679067 ], [ -95.049360945461274, 30.291897316800267 ], [ -95.048462945068962, 30.291902316471283 ], [ -95.048163944519118, 30.291904316993183 ], [ -95.047779944643395, 30.291904316906827 ], [ -95.046629944942808, 30.291908316629808 ], [ -95.046369945016508, 30.291909316782224 ], [ -95.046247944374727, 30.2919243166189 ], [ -95.04621594485765, 30.29172431664373 ], [ -95.046203944923874, 30.29164931709342 ], [ -95.046130943983542, 30.291507317119276 ], [ -95.046031944032066, 30.29137131698792 ], [ -95.045950944065353, 30.291289316283486 ], [ -95.045884944596864, 30.291233316713466 ], [ -95.045855944042998, 30.291209316270397 ], [ -95.04580294448111, 30.291178316839325 ], [ -95.045705944841771, 30.291146316475675 ], [ -95.045542944733199, 30.291132316508037 ], [ -95.045107944549628, 30.2911273168571 ], [ -95.044832944431917, 30.29114131655562 ], [ -95.043888943568035, 30.291306317117368 ], [ -95.043644943906173, 30.291350316570366 ], [ -95.043452943296785, 30.291377316560446 ], [ -95.043333943827761, 30.291385316690224 ], [ -95.043089943683938, 30.291377316907045 ], [ -95.042853943269549, 30.291344316581391 ], [ -95.041756942843861, 30.291148317030135 ], [ -95.038709942208612, 30.290618316425565 ], [ -95.038469942056977, 30.29057331641145 ], [ -95.036669941521993, 30.290238317050481 ], [ -95.036157942104666, 30.290145316991172 ], [ -95.034621941752533, 30.289866316624991 ], [ -95.034110941114349, 30.289773316401032 ], [ -95.033980941047261, 30.289750316603126 ], [ -95.033592941429703, 30.28968431685081 ], [ -95.033463941478232, 30.289662317167263 ], [ -95.033042941439646, 30.289590316758296 ], [ -95.032813941370719, 30.289538316843377 ], [ -95.032630941413217, 30.289468316398221 ], [ -95.032430940550768, 30.289364316688985 ], [ -95.03239394066776, 30.289338316689509 ], [ -95.031852940827022, 30.288954316492401 ], [ -95.030986940212813, 30.288258316964949 ], [ -95.030263939977928, 30.287715316608587 ], [ -95.029719940158373, 30.287266316867768 ], [ -95.029110940026882, 30.286763316159288 ], [ -95.028840940150005, 30.286560316484245 ], [ -95.028811939830888, 30.286575316278999 ], [ -95.028784939545332, 30.286626316680124 ], [ -95.028660939691335, 30.286866316224128 ], [ -95.028619939449626, 30.286947316294931 ], [ -95.028488939486664, 30.287201316810688 ], [ -95.028450940049524, 30.287339316583818 ], [ -95.028462939387907, 30.28744331633418 ], [ -95.028538939950522, 30.287669316509305 ], [ -95.028899939821102, 30.288081316342645 ], [ -95.028927939721015, 30.288098316880784 ], [ -95.028988939511606, 30.28813631663763 ], [ -95.02926793982482, 30.288246316597601 ], [ -95.029387939645574, 30.288362316899374 ], [ -95.029450940060883, 30.288444316578143 ], [ -95.029457939971863, 30.288510316424045 ], [ -95.02941993954326, 30.288565316944958 ], [ -95.029330939855825, 30.28860931638361 ], [ -95.029089939714936, 30.288631317097867 ], [ -95.029038939635456, 30.288675316374 ], [ -95.028994940144216, 30.288785316423972 ], [ -95.028994940394014, 30.288884316752071 ], [ -95.028918939963475, 30.289093316950421 ], [ -95.028988940300863, 30.28924731702288 ], [ -95.029057940247071, 30.289319317120693 ], [ -95.029393939753845, 30.28954931682793 ], [ -95.029456940383554, 30.289627317117986 ], [ -95.029501940502584, 30.289709316868986 ], [ -95.029564940064361, 30.290061317420378 ], [ -95.029691940285332, 30.29026431737719 ], [ -95.029767940167986, 30.290358317011108 ], [ -95.029881940622744, 30.290468317327413 ], [ -95.030045940208197, 30.290600317445161 ], [ -95.030434940322564, 30.290883316775286 ], [ -95.030520940645744, 30.290946317319264 ], [ -95.030634940388254, 30.291040316904173 ], [ -95.030748940665347, 30.291161317018627 ], [ -95.030843940428781, 30.291298317698455 ], [ -95.030907940175993, 30.291419317450838 ], [ -95.031148940642794, 30.292001317404374 ], [ -95.031344940874234, 30.292475317214148 ], [ -95.031451940323919, 30.292690317740867 ], [ -95.03148994060443, 30.292844317495248 ], [ -95.03148394040295, 30.292921317398605 ], [ -95.031445940880332, 30.293036317235799 ], [ -95.031362940867055, 30.293135317289817 ], [ -95.031128940898384, 30.293305317900348 ], [ -95.03107194040966, 30.293360317731224 ], [ -95.031033941152771, 30.293415317748472 ], [ -95.031008940913466, 30.293465317760131 ], [ -95.030950940416332, 30.293800317984051 ], [ -95.030912940442249, 30.29387231797698 ], [ -95.030862941080414, 30.293921317869405 ], [ -95.030798941115819, 30.293965317444265 ], [ -95.030437940232446, 30.294070317983987 ], [ -95.03032994096769, 30.294114317862682 ], [ -95.03022294042195, 30.294180317613453 ], [ -95.030165940732886, 30.294229317663614 ], [ -95.030095940375219, 30.29430631791891 ], [ -95.030031940489025, 30.294405318370838 ], [ -95.029967940773858, 30.294542318183968 ], [ -95.029886940070014, 30.294718318223104 ], [ -95.02979794016008, 30.294839317722875 ], [ -95.029448940083711, 30.295147317700653 ], [ -95.029385940584262, 30.295235317839921 ], [ -95.029353940669893, 30.295427318508501 ], [ -95.029378940386792, 30.295521318574743 ], [ -95.029423940105318, 30.295598317775855 ], [ -95.029594940789053, 30.295818317865724 ], [ -95.029638940279582, 30.295906317883674 ], [ -95.029638939900025, 30.295983318465854 ], [ -95.029575940421083, 30.296115318364514 ], [ -95.029600940887562, 30.296175318324135 ], [ -95.029670939966593, 30.296230318274876 ], [ -95.029682940417317, 30.296280318142351 ], [ -95.029670940027216, 30.296351318544616 ], [ -95.029467940669818, 30.2967423186109 ], [ -95.029473940409943, 30.296786318211847 ], [ -95.029600940114477, 30.296918318056981 ], [ -95.030132940338632, 30.297110318363309 ], [ -95.030227940950809, 30.2971103188402 ], [ -95.03029794080085, 30.297072318840815 ], [ -95.030322940576795, 30.296978318423687 ], [ -95.030354940942132, 30.296912318194352 ], [ -95.030398941067958, 30.296896318616405 ], [ -95.030538940505124, 30.296923318540198 ], [ -95.030810940932682, 30.296995318833062 ], [ -95.031171941230625, 30.29714331806111 ], [ -95.031285940653845, 30.297215318133599 ], [ -95.031323940660343, 30.297303318556832 ], [ -95.031304940597494, 30.297380318049228 ], [ -95.031228940722315, 30.297473318944942 ], [ -95.031108941147821, 30.297506318280188 ], [ -95.030918940469022, 30.297517318225616 ], [ -95.030810941097641, 30.297572318207241 ], [ -95.030721940992862, 30.297649318552157 ], [ -95.030670940423434, 30.297759318288282 ], [ -95.03066494104462, 30.297864318631575 ], [ -95.030721940629491, 30.297941318806078 ], [ -95.030753940401453, 30.297957318356723 ], [ -95.030810940461137, 30.297941318955569 ], [ -95.030937941119944, 30.297836318308949 ], [ -95.031038940702288, 30.297776318433574 ], [ -95.031152941185226, 30.297743318427255 ], [ -95.031279940682879, 30.297776318474266 ], [ -95.031342941320034, 30.297825318567568 ], [ -95.031380940455094, 30.297941318601428 ], [ -95.031374940545021, 30.298084318242545 ], [ -95.031393940760779, 30.298249318983206 ], [ -95.031437940720693, 30.298342318520273 ], [ -95.031494941071372, 30.298524318490728 ], [ -95.031494941361387, 30.2986893190991 ], [ -95.031551941086121, 30.299189318587413 ], [ -95.031633941083555, 30.299645319120426 ], [ -95.031696940939767, 30.29986531885995 ], [ -95.03175394163739, 30.299986318996805 ], [ -95.031836940808887, 30.300091318633395 ], [ -95.031937941351629, 30.300179318608151 ], [ -95.032102941711202, 30.300267318833981 ], [ -95.032241941484969, 30.300327318853391 ], [ -95.032723940945345, 30.300509318726679 ], [ -95.032824941765696, 30.300580318921565 ], [ -95.032932941217311, 30.300679318962121 ], [ -95.033027941890637, 30.300800319083589 ], [ -95.033141941970555, 30.301004319593112 ], [ -95.033198941850316, 30.301152319444466 ], [ -95.033337942086419, 30.301592319628586 ], [ -95.033400941193008, 30.301708319237626 ], [ -95.033489941675256, 30.301790319004542 ], [ -95.033578942189706, 30.301840318885699 ], [ -95.033857941590583, 30.301961319679869 ], [ -95.034047941829655, 30.302054319725205 ], [ -95.034300941862284, 30.302203319212293 ], [ -95.034427942436707, 30.302329319846496 ], [ -95.034528941798143, 30.302483319137501 ], [ -95.03457994183907, 30.302610319286195 ], [ -95.034598942313337, 30.302714319623618 ], [ -95.034604941661229, 30.302830319690184 ], [ -95.034591942095204, 30.302934319564791 ], [ -95.034522941896398, 30.303152319572497 ], [ -95.034490941927686, 30.303253319636895 ], [ -95.034319941774328, 30.30357732005967 ], [ -95.034287941495577, 30.303654319764938 ], [ -95.034293942234925, 30.30370931951872 ], [ -95.034319942238682, 30.303775320001403 ], [ -95.034376942157223, 30.303858319457703 ], [ -95.034484941750506, 30.30394632012829 ], [ -95.034807942427534, 30.304149319865786 ], [ -95.034883941801624, 30.304210319358074 ], [ -95.035016942628431, 30.304358319994165 ], [ -95.035079942656083, 30.304501319923034 ], [ -95.035180942444157, 30.304974319691592 ], [ -95.035244942020356, 30.305139320189816 ], [ -95.035345941919843, 30.305304320010666 ], [ -95.035472942719466, 30.305447320166476 ], [ -95.03551094278761, 30.305464319950399 ], [ -95.035554942640459, 30.305469319678206 ], [ -95.035598942185544, 30.305464319798965 ], [ -95.035934942661754, 30.305321320284108 ], [ -95.036004942495055, 30.305310319569731 ], [ -95.036171942576587, 30.305304319799529 ], [ -95.036245942487696, 30.305315320375119 ], [ -95.036327942229761, 30.3053483199438 ], [ -95.036403942715737, 30.305403320040384 ], [ -95.036492942604184, 30.305508319518619 ], [ -95.036593942200739, 30.305722319757436 ], [ -95.036701943225125, 30.306069320125488 ], [ -95.036733942442027, 30.306140319815341 ], [ -95.036802942237415, 30.306250320331749 ], [ -95.036923942417843, 30.306371320114444 ], [ -95.037049942423607, 30.306470320469092 ], [ -95.037835942606065, 30.306971320401647 ], [ -95.037975942744808, 30.307086319796753 ], [ -95.038266943654989, 30.307372320172867 ], [ -95.038450942776237, 30.307576319921619 ], [ -95.03855194318416, 30.307746320793758 ], [ -95.038595943046104, 30.307845320269134 ], [ -95.038621942769225, 30.307933320703544 ], [ -95.03862794346216, 30.30816432015164 ], [ -95.038589943272228, 30.30887932095435 ], [ -95.03860194367229, 30.308945320308506 ], [ -95.038639942834891, 30.30902232096895 ], [ -95.03892594309491, 30.309390320609246 ], [ -95.03905194353689, 30.309489320608449 ], [ -95.039552943353982, 30.309786320436764 ], [ -95.039818943428656, 30.310215320356466 ], [ -95.039938943966163, 30.31034732058064 ], [ -95.040033943815601, 30.310529321061871 ], [ -95.040116944058155, 30.310782321280104 ], [ -95.040185943937857, 30.31106732115888 ], [ -95.040293944074861, 30.311249320730894 ], [ -95.040397944295023, 30.311352320973285 ], [ -95.040158943605803, 30.311412321094611 ], [ -95.039843943479013, 30.311499321303859 ], [ -95.039924943572032, 30.311558320878266 ], [ -95.040366944131861, 30.311928321001616 ], [ -95.040633944463295, 30.312340321103701 ], [ -95.040763943728848, 30.312596320867062 ], [ -95.040880943851278, 30.313102321290643 ], [ -95.040939944228853, 30.31342532155298 ], [ -95.041006943938712, 30.313790321206618 ], [ -95.041013944656768, 30.313835321254306 ], [ -95.041164944680276, 30.314242322036225 ], [ -95.041196944664009, 30.314457321935272 ], [ -95.041227944576121, 30.314671321259635 ], [ -95.041368944319032, 30.315099322024579 ], [ -95.041387944360451, 30.315163321540311 ], [ -95.041400944845506, 30.315204321623316 ], [ -95.041435944822197, 30.315632321935926 ], [ -95.041594944256261, 30.315889322109491 ], [ -95.041804944185074, 30.316274321874218 ], [ -95.042106944745541, 30.316562321687766 ], [ -95.04240194516629, 30.316975322502056 ], [ -95.04280794433754, 30.317468321872088 ], [ -95.042987944679837, 30.317877321983669 ], [ -95.04335794493646, 30.31851932241571 ], [ -95.043508944566284, 30.318926322828151 ], [ -95.043569944735609, 30.319380322430398 ], [ -95.04366294548629, 30.319814322870446 ], [ -95.043724944877781, 30.320233323058464 ], [ -95.043727945508891, 30.320469323009018 ], [ -95.043729944733357, 30.320690322727451 ], [ -95.043678945635989, 30.321089323126746 ], [ -95.043543944939685, 30.321258322998684 ], [ -95.043824945409526, 30.32145532309325 ], [ -95.04385894532281, 30.321480323099568 ], [ -95.044769945453908, 30.322159322997422 ], [ -95.045552945647771, 30.322740322769913 ], [ -95.045701945996697, 30.322851322764269 ], [ -95.047061946363243, 30.323861323523175 ], [ -95.047239946668725, 30.323996322998148 ], [ -95.047637946645736, 30.324298323058699 ], [ -95.048414946758143, 30.324837323040512 ], [ -95.04888994699057, 30.325205323807438 ], [ -95.048945946520959, 30.325246323572376 ], [ -95.049272947220757, 30.325485323891055 ], [ -95.049786946559379, 30.325861323960027 ], [ -95.050220947066109, 30.326179323647953 ], [ -95.050652946828578, 30.326496323616194 ], [ -95.050698947252002, 30.32653032354558 ], [ -95.051251947066049, 30.326936323363793 ], [ -95.05227794798202, 30.327713323957571 ], [ -95.052342948148478, 30.327763323501831 ], [ -95.05234594780913, 30.327061323533098 ], [ -95.052347947344032, 30.326800323575629 ], [ -95.052359947404184, 30.325878323941957 ], [ -95.052356947855813, 30.325532323380024 ], [ -95.052357947907211, 30.325500323585295 ], [ -95.052370947866862, 30.324955323492077 ], [ -95.052388947192469, 30.324254323421165 ], [ -95.052412947903491, 30.323612323228719 ], [ -95.052412947284338, 30.323388323359147 ], [ -95.052412947795858, 30.322679323255073 ], [ -95.052442947278294, 30.321849322739318 ], [ -95.052447947609807, 30.321710322461296 ], [ -95.05242394797483, 30.320792322288614 ], [ -95.052423947365995, 30.320774322510378 ], [ -95.052390947769069, 30.3199273226648 ], [ -95.052697947308758, 30.319923322580891 ], [ -95.053316947194745, 30.31991532237193 ], [ -95.053621947847404, 30.319919322408889 ], [ -95.053929948048861, 30.319925322117577 ], [ -95.054345947483981, 30.31992732251372 ], [ -95.05464494821365, 30.319929322284711 ], [ -95.055596947736518, 30.319913321910835 ], [ -95.056013948857697, 30.319907321822033 ], [ -95.056434947918561, 30.319917322493506 ], [ -95.056615948918292, 30.319922322405034 ], [ -95.05726294882713, 30.319922322276987 ], [ -95.05769794828403, 30.319931322444432 ], [ -95.058119948643636, 30.319940321832068 ], [ -95.05862294893835, 30.319925321698435 ], [ -95.059754949464278, 30.319927322435415 ], [ -95.061664949766083, 30.319937322215921 ], [ -95.061833949941004, 30.319934322415122 ], [ -95.062118949792662, 30.319928322162319 ], [ -95.062530949530057, 30.319920321771793 ], [ -95.062859950286125, 30.319912322131451 ], [ -95.063664950000344, 30.319894321889102 ], [ -95.066705951098896, 30.319875321938529 ], [ -95.068181951104606, 30.319892321398875 ], [ -95.069239951535494, 30.319891321565837 ], [ -95.071190952082546, 30.319888321414631 ], [ -95.071291951993544, 30.319887321892562 ], [ -95.071595951860502, 30.319887321437232 ], [ -95.071697952325621, 30.319887321929514 ], [ -95.072034952333354, 30.319885321200488 ], [ -95.072775952914526, 30.319883321312933 ], [ -95.073045953168915, 30.319883321330344 ], [ -95.073383952498759, 30.31988232201417 ], [ -95.073674952701595, 30.319879321565175 ], [ -95.074550952715384, 30.319873321786172 ], [ -95.074843952928902, 30.31987232117967 ], [ -95.075092953444212, 30.319868321733992 ], [ -95.07521095364487, 30.319866321607062 ], [ -95.075573952928622, 30.319861321866554 ], [ -95.075842953961327, 30.319878321096535 ], [ -95.075950953598664, 30.319885321799319 ], [ -95.076077953396052, 30.319885321301154 ], [ -95.076092953052481, 30.319885321239273 ], [ -95.076171953978161, 30.319888321117094 ], [ -95.07624895308011, 30.319892321356281 ], [ -95.076576953466912, 30.319907321214558 ], [ -95.076651953808678, 30.319907321573123 ], [ -95.077035953975582, 30.319910321247146 ], [ -95.077306953378539, 30.319912321116682 ], [ -95.077521954264512, 30.319914321346744 ], [ -95.078281954250755, 30.319920320986494 ], [ -95.078330954494859, 30.319919321852034 ], [ -95.078890954512104, 30.319909321158676 ], [ -95.079062953814741, 30.319905321127766 ], [ -95.079477954607952, 30.319897321106176 ], [ -95.079578954202063, 30.31989632168607 ], [ -95.079751954972664, 30.319894321090171 ], [ -95.08062395429954, 30.319887321579568 ], [ -95.080803954242867, 30.319886321064409 ], [ -95.083523955799777, 30.319900321532344 ], [ -95.085107955534625, 30.319890321404937 ], [ -95.08615495614599, 30.319902320889778 ], [ -95.087369956134424, 30.319898321430532 ], [ -95.087402956529502, 30.320246321492842 ], [ -95.087527956831764, 30.321198320943921 ], [ -95.087599956556744, 30.32185432118558 ], [ -95.087597956382282, 30.322202321856768 ], [ -95.087554956155813, 30.322591321847039 ], [ -95.087550956205732, 30.322613321812916 ], [ -95.08748795694585, 30.322960322151566 ], [ -95.08745495642934, 30.323121322170486 ], [ -95.087381956305492, 30.323396321720175 ], [ -95.087268956414945, 30.32373132203762 ], [ -95.087207956226976, 30.323848321972761 ], [ -95.087183956751772, 30.323896322228485 ], [ -95.087104956027517, 30.324021322241116 ], [ -95.086815956431678, 30.3243603220625 ], [ -95.086684956943714, 30.324479321695375 ], [ -95.08620195614813, 30.324862322241739 ], [ -95.086188956258653, 30.324875322288097 ], [ -95.085975956333158, 30.325105322555906 ], [ -95.085871956485249, 30.32524232262794 ], [ -95.086508956211162, 30.325279322137529 ], [ -95.086609956576709, 30.325280321883536 ], [ -95.088289957354263, 30.325302322240304 ], [ -95.088829957104679, 30.32530432195686 ], [ -95.089569956740561, 30.325308322463176 ], [ -95.089749957288262, 30.325309322430083 ], [ -95.090290957692062, 30.325312321885075 ], [ -95.090471956993397, 30.325313321884263 ], [ -95.091077957619021, 30.325323322205247 ], [ -95.091621958102806, 30.325333322271085 ], [ -95.092430958089821, 30.325407322407901 ], [ -95.092895958133866, 30.325402322336974 ], [ -95.093502958289832, 30.325396322295571 ], [ -95.093975958759685, 30.325389322028187 ], [ -95.095393958501305, 30.325369321992174 ], [ -95.095867959323201, 30.325363321536656 ], [ -95.09589795904408, 30.325362321462666 ], [ -95.095933958686118, 30.325362321932648 ], [ -95.095987959205843, 30.325362322198945 ], [ -95.096018958738895, 30.325362322202913 ], [ -95.09648895912251, 30.325363322064391 ], [ -95.096814958769272, 30.325365322111089 ], [ -95.097610958827218, 30.325378322049147 ], [ -95.097898959035788, 30.325373321859718 ], [ -95.098369959916326, 30.325366321395006 ], [ -95.098514959332334, 30.325119321659439 ], [ -95.098751959346586, 30.324718321982925 ], [ -95.098958959121276, 30.324386321386722 ], [ -95.099111959495289, 30.324145321670652 ], [ -95.099128959439909, 30.324116321238527 ], [ -95.09916095993924, 30.324067321355404 ], [ -95.099182959715222, 30.324032321103978 ], [ -95.099200959448666, 30.324005321667439 ], [ -95.099295959742065, 30.32385632179923 ], [ -95.099383959521745, 30.323720321690562 ], [ -95.099548959756262, 30.323483321405551 ], [ -95.099598959384664, 30.323436321650018 ], [ -95.099691960089558, 30.323402321218836 ], [ -95.099733959882514, 30.323402321065181 ], [ -95.099780960129308, 30.323414321478346 ], [ -95.099797959760238, 30.323385320952205 ], [ -95.099851959947173, 30.323297321360755 ], [ -95.099869959369173, 30.323269320901169 ], [ -95.100528959829077, 30.322140321080784 ], [ -95.10061596026874, 30.321992320749796 ], [ -95.101687960428791, 30.320175320554966 ], [ -95.102513960326306, 30.318760319889641 ], [ -95.102881960654784, 30.318131319940708 ], [ -95.10315896082092, 30.317624320293291 ], [ -95.103471960149989, 30.317104320063368 ], [ -95.103836960479597, 30.31649931965822 ], [ -95.104411960418986, 30.31554631949178 ], [ -95.104582960766095, 30.315261319116736 ], [ -95.104725961123464, 30.315027319935609 ], [ -95.104798960209564, 30.314899319572522 ], [ -95.105016961042679, 30.314518319289114 ], [ -95.10505296046027, 30.314455319490197 ], [ -95.105090960284045, 30.314392319740179 ], [ -95.105582960435981, 30.313538319331048 ], [ -95.105596961215724, 30.3135143190392 ], [ -95.10697096097239, 30.311135318979158 ], [ -95.107056961330031, 30.310986318773576 ], [ -95.10711596082686, 30.310883318505176 ], [ -95.107624961086287, 30.310008318025542 ], [ -95.11048896185234, 30.305128317291079 ], [ -95.112078961652202, 30.302114316913279 ], [ -95.112206962078957, 30.301872316812553 ], [ -95.113474961700931, 30.299969315704658 ], [ -95.114135962626875, 30.299096315895792 ], [ -95.114545962634409, 30.298587316104925 ], [ -95.114906961974299, 30.298138315380516 ], [ -95.115139962268429, 30.297850315368926 ], [ -95.116135963133928, 30.29665431563247 ], [ -95.116735962605148, 30.295962315211771 ], [ -95.117137962784, 30.295500314838733 ], [ -95.11728996251847, 30.29531931463994 ], [ -95.117301963293144, 30.295306315343257 ], [ -95.117772962730697, 30.294732314501932 ], [ -95.118067962655132, 30.294366314810958 ], [ -95.118607962949028, 30.293692314287725 ], [ -95.119896963440596, 30.292086313973424 ], [ -95.12022796355474, 30.291673314287429 ], [ -95.120768963638739, 30.291000314092294 ], [ -95.121429963605436, 30.290189313791128 ], [ -95.122721964066358, 30.288608313205572 ], [ -95.123417964688727, 30.287762313062764 ], [ -95.124082964362856, 30.286955313038053 ], [ -95.124404964438781, 30.286560312798969 ], [ -95.125369964084982, 30.285377313064281 ], [ -95.125692964139361, 30.28498331238022 ], [ -95.126104964929311, 30.284484312843215 ], [ -95.126431964386214, 30.284091312623854 ], [ -95.127337965064925, 30.282986312429237 ], [ -95.12774896536763, 30.282486312489873 ], [ -95.128857964989592, 30.281144311894334 ], [ -95.130521966013077, 30.279050311570362 ], [ -95.131843965769832, 30.277494311225851 ], [ -95.132995966574754, 30.276081310645964 ], [ -95.134392966476639, 30.2743413104882 ], [ -95.135052966027899, 30.273440310224764 ], [ -95.136928966508648, 30.270639309209081 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 372, "Tract": "48291700302", "Area_SqMi": 56.191754792277983, "total_2009": 65, "total_2010": 34, "total_2011": 21, "total_2012": 24, "total_2013": 35, "total_2014": 65, "total_2015": 76, "total_2016": 78, "total_2017": 75, "total_2018": 57, "total_2019": 52, "total_2020": 75, "age1": 32, "age2": 66, "age3": 29, "earn1": 43, "earn2": 41, "earn3": 43, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 72, "naics_s05": 9, "naics_s06": 2, "naics_s07": 26, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 3, "naics_s16": 0, "naics_s17": 0, "naics_s18": 3, "naics_s19": 3, "naics_s20": 0, "race1": 110, "race2": 10, "race3": 1, "race4": 5, "race5": 1, "race6": 0, "ethnicity1": 84, "ethnicity2": 43, "edu1": 31, "edu2": 29, "edu3": 22, "edu4": 13, "Shape_Length": 231633.7609473709, "Shape_Area": 1566529950.4592144, "total_2021": 85, "total_2022": 127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.125600962813948, 30.24188030409341 ], [ -95.12557496285298, 30.241815303602426 ], [ -95.12519896203402, 30.240836303520581 ], [ -95.12516896215925, 30.240759303615064 ], [ -95.125139962635032, 30.240683303656294 ], [ -95.123294961807304, 30.235884302533488 ], [ -95.122646961071155, 30.234198302098228 ], [ -95.121406960529598, 30.230969302115358 ], [ -95.121080961002988, 30.230123302070496 ], [ -95.120788960246031, 30.229369301887786 ], [ -95.120763960727615, 30.229302301574229 ], [ -95.120688960744516, 30.229103301565111 ], [ -95.120664960465561, 30.22903730118955 ], [ -95.120037960188668, 30.227405301481664 ], [ -95.119821960578975, 30.226845300952316 ], [ -95.119518959909271, 30.226059300616122 ], [ -95.119171960330036, 30.225155300964559 ], [ -95.119157960341596, 30.225115300257002 ], [ -95.119113960158856, 30.225002300446718 ], [ -95.119064960212725, 30.224873300839587 ], [ -95.118863960196848, 30.224379300096391 ], [ -95.118856960452817, 30.224362300355782 ], [ -95.117241959263836, 30.220239299831235 ], [ -95.116580958896989, 30.2185562990805 ], [ -95.115923958874831, 30.216885299337008 ], [ -95.115851958456133, 30.216688298689871 ], [ -95.115221958340641, 30.215180298837865 ], [ -95.115208958560714, 30.215149298937149 ], [ -95.114884958764435, 30.214322299033519 ], [ -95.114780958725419, 30.214054298914657 ], [ -95.113682958228964, 30.211262298346778 ], [ -95.113631958408561, 30.211131298223897 ], [ -95.113319958347589, 30.210337298129012 ], [ -95.112458957154189, 30.208151297268508 ], [ -95.111558957554124, 30.20586529688585 ], [ -95.109350956874195, 30.200251295792583 ], [ -95.109148955878055, 30.199742295890317 ], [ -95.109109956793816, 30.199643295766801 ], [ -95.109013956268186, 30.199388296144438 ], [ -95.108964956257353, 30.199258296088257 ], [ -95.108645956294438, 30.198413295919355 ], [ -95.108613955902001, 30.198326295727149 ], [ -95.108480956120545, 30.197972295186371 ], [ -95.108413956546514, 30.197810295491927 ], [ -95.108212956147, 30.197325295229334 ], [ -95.108145956508196, 30.197164295405909 ], [ -95.108111956276645, 30.19708229533429 ], [ -95.107960956023518, 30.196721295544187 ], [ -95.107627955994033, 30.195864294703931 ], [ -95.106109955185545, 30.191951293945969 ], [ -95.105603955089876, 30.190647294079191 ], [ -95.105561955220409, 30.190540294249452 ], [ -95.105437955313519, 30.190220293917683 ], [ -95.105396955408239, 30.190114294141097 ], [ -95.105119955326245, 30.189401293492093 ], [ -95.104615954244551, 30.188106294022877 ], [ -95.1042889545039, 30.187265293635001 ], [ -95.104011954416137, 30.18655429318893 ], [ -95.103961954953121, 30.186424292912726 ], [ -95.103976954898911, 30.186416293295974 ], [ -95.100986953745405, 30.178022291681561 ], [ -95.100553953039665, 30.17680629106124 ], [ -95.100196952696393, 30.176808291489845 ], [ -95.098947952971557, 30.1735402907713 ], [ -95.098493952688997, 30.172352291025256 ], [ -95.098028952330907, 30.171152290130482 ], [ -95.097829952430843, 30.170621290249983 ], [ -95.097819952340032, 30.170596290462264 ], [ -95.097730951756944, 30.170402290677977 ], [ -95.097701951740433, 30.170311289988735 ], [ -95.09687195223789, 30.167713290124226 ], [ -95.096714951567535, 30.167219289787049 ], [ -95.096482951166251, 30.166577289519083 ], [ -95.0964649520634, 30.166527289908764 ], [ -95.096403951607982, 30.16638428978175 ], [ -95.096393951082945, 30.166331289080389 ], [ -95.096314951720828, 30.166115289889774 ], [ -95.096080951513301, 30.165467289497389 ], [ -95.096003951037687, 30.165251289340954 ], [ -95.095842950904895, 30.164803289136799 ], [ -95.095680950814341, 30.164355289385071 ], [ -95.095567951437346, 30.16404328868877 ], [ -95.095477951285915, 30.163794288653563 ], [ -95.093698950456314, 30.159588288474669 ], [ -95.093272950058235, 30.158580288423547 ], [ -95.093234950816452, 30.158493287828147 ], [ -95.093067950801213, 30.158098288312566 ], [ -95.092991950715302, 30.157895287747074 ], [ -95.09198594973455, 30.15520328774813 ], [ -95.08829194888898, 30.145315285747611 ], [ -95.087060947572368, 30.142019284757911 ], [ -95.086980947982283, 30.141805284968846 ], [ -95.086740947972601, 30.141165284416232 ], [ -95.086661947635946, 30.140952284616876 ], [ -95.086643948218395, 30.14090528501276 ], [ -95.086591948019972, 30.140766284944434 ], [ -95.086574947644294, 30.140720284709513 ], [ -95.086564948180836, 30.140705284673476 ], [ -95.08637694798675, 30.140200284556897 ], [ -95.086033948150956, 30.139277283925932 ], [ -95.085815948024731, 30.138688284485017 ], [ -95.085628947828539, 30.138185284031287 ], [ -95.08558094752415, 30.138056284359187 ], [ -95.085436947202624, 30.137671283601712 ], [ -95.085388947279711, 30.137543283937017 ], [ -95.085383947296435, 30.137530284174989 ], [ -95.085368947388986, 30.137491283985668 ], [ -95.085364947380981, 30.13747928364501 ], [ -95.08533294715896, 30.137394283871618 ], [ -95.085255946848676, 30.137188283937075 ], [ -95.085241947175604, 30.137138283696586 ], [ -95.085217947737107, 30.137051283657872 ], [ -95.084880946764372, 30.136231283307193 ], [ -95.084677947269242, 30.135666283253094 ], [ -95.084597946867689, 30.135503283904828 ], [ -95.084513947355489, 30.135267283964769 ], [ -95.083844947150382, 30.133383283265786 ], [ -95.083660946288504, 30.132865282934016 ], [ -95.083635946261154, 30.132794282964738 ], [ -95.083560947180089, 30.132583283255631 ], [ -95.083535947168841, 30.132513283364048 ], [ -95.082705946327209, 30.130180282567132 ], [ -95.080215945159551, 30.123182281531076 ], [ -95.079386944720071, 30.120850281041431 ], [ -95.079201944699435, 30.120330281092883 ], [ -95.07864694451375, 30.118770280556436 ], [ -95.078462944446372, 30.118251280239971 ], [ -95.078050944950903, 30.117093280179894 ], [ -95.076814944244163, 30.113619279316406 ], [ -95.076402943602517, 30.112461279112924 ], [ -95.076036943944374, 30.111432278741113 ], [ -95.075042943614676, 30.108639278879632 ], [ -95.074938943162309, 30.108346278784207 ], [ -95.074573943418855, 30.107318277763575 ], [ -95.074320943316039, 30.106607277895389 ], [ -95.073561942914651, 30.104476277492829 ], [ -95.073309942859112, 30.103766277677508 ], [ -95.073291942692521, 30.103714277306253 ], [ -95.072770942220927, 30.103227277487036 ], [ -95.072609942883474, 30.103059277789868 ], [ -95.072473942002816, 30.103074277712615 ], [ -95.072360942293784, 30.103005277479582 ], [ -95.072251942186782, 30.102965277486497 ], [ -95.072160942080473, 30.10296627751357 ], [ -95.072072942835646, 30.103000277121911 ], [ -95.072024942642315, 30.10306027768123 ], [ -95.071908941970591, 30.103263277790255 ], [ -95.071713942325573, 30.103497277093552 ], [ -95.071623942018192, 30.103588277290399 ], [ -95.07137594179693, 30.103715277854999 ], [ -95.071209941938449, 30.103769277621812 ], [ -95.070973942114151, 30.103778277869388 ], [ -95.070889941740617, 30.103769277282037 ], [ -95.07076294164797, 30.103710277615999 ], [ -95.070705942277144, 30.103679277971906 ], [ -95.070593941769602, 30.103593277191848 ], [ -95.07053794210097, 30.103533277852289 ], [ -95.070462941652323, 30.103473277398333 ], [ -95.070086942257305, 30.103089277380235 ], [ -95.069793942265662, 30.102845277059849 ], [ -95.069723941666169, 30.102808277103538 ], [ -95.069646941593973, 30.102781277731253 ], [ -95.069556941497794, 30.10276927744416 ], [ -95.069446941234844, 30.102772277381604 ], [ -95.069167941523347, 30.102792277902491 ], [ -95.069034941329122, 30.102808277355813 ], [ -95.068920941534486, 30.102841277371745 ], [ -95.068860941402889, 30.102899277794343 ], [ -95.068535940998458, 30.10321527745883 ], [ -95.068345941192135, 30.103380277996717 ], [ -95.068231941877073, 30.10343527747019 ], [ -95.068060941637881, 30.103479277577765 ], [ -95.067965941042914, 30.103518278026282 ], [ -95.067902941758035, 30.103523277651732 ], [ -95.067580941765726, 30.103688277368363 ], [ -95.06748594108349, 30.103771277506251 ], [ -95.067358941481416, 30.103859277411818 ], [ -95.067245941587146, 30.103952277504465 ], [ -95.066675940589178, 30.104343278185315 ], [ -95.066503940538652, 30.104481277690667 ], [ -95.066397941047953, 30.104568278050955 ], [ -95.065866941148684, 30.104964277881667 ], [ -95.065746940500787, 30.105025278273033 ], [ -95.065645940898378, 30.105058277771001 ], [ -95.065430941141983, 30.105063278510823 ], [ -95.065341940629537, 30.105074277767361 ], [ -95.065189940242519, 30.105074277865441 ], [ -95.064791940427625, 30.105228277839867 ], [ -95.064696940776827, 30.105278278330037 ], [ -95.064620940564964, 30.105344278089014 ], [ -95.064228940434489, 30.105575278340144 ], [ -95.06414694073105, 30.105646277957046 ], [ -95.064045940643155, 30.10569027852965 ], [ -95.06395094039442, 30.105696278455643 ], [ -95.063906940416416, 30.105679278185221 ], [ -95.063842940858308, 30.105624278046427 ], [ -95.063773940280399, 30.105613278639346 ], [ -95.063703940390198, 30.105624277942614 ], [ -95.063507940334375, 30.105712278008436 ], [ -95.063406940137256, 30.105729278369193 ], [ -95.06324294031316, 30.10570127805109 ], [ -95.062944940510789, 30.105635278429677 ], [ -95.062609940072647, 30.105608278137424 ], [ -95.062324940378673, 30.105619278347071 ], [ -95.062179939894548, 30.105652278366737 ], [ -95.06191394022882, 30.105751278249301 ], [ -95.061781939555203, 30.105811278330815 ], [ -95.061679939444616, 30.105877278588643 ], [ -95.061578939983619, 30.105971278168465 ], [ -95.061515939809581, 30.106075278119199 ], [ -95.06147794012567, 30.106180278431577 ], [ -95.061414939437014, 30.106433278793283 ], [ -95.061287940046967, 30.106642278244454 ], [ -95.061262939721004, 30.106735278674915 ], [ -95.061248939900679, 30.106757278400075 ], [ -95.06111093969082, 30.106971278294271 ], [ -95.061066940257675, 30.107059278427698 ], [ -95.061053939509904, 30.107153278428147 ], [ -95.061098939656318, 30.107252278474611 ], [ -95.061313939473862, 30.107422278241195 ], [ -95.061382939894003, 30.107532278501012 ], [ -95.061414939591472, 30.107609278500902 ], [ -95.061433939890435, 30.107851279199775 ], [ -95.061420939915763, 30.107928278924287 ], [ -95.061382939687803, 30.107983278371691 ], [ -95.061332940297632, 30.108022279084928 ], [ -95.061167939866564, 30.108082278695665 ], [ -95.061098939988085, 30.108126278476274 ], [ -95.061003939464626, 30.108467279009513 ], [ -95.060878939973207, 30.108668278739788 ], [ -95.060813939932302, 30.108775278778467 ], [ -95.060794939271048, 30.108841279097788 ], [ -95.060788939549809, 30.108929279385347 ], [ -95.060794939471521, 30.109083279207674 ], [ -95.060788939605715, 30.10913227918201 ], [ -95.060763940115351, 30.109171279138764 ], [ -95.060611939498685, 30.109286279408401 ], [ -95.060200939648979, 30.109308278861278 ], [ -95.060105939218658, 30.109402278913304 ], [ -95.06002394004679, 30.109457279540877 ], [ -95.059858939831514, 30.109534278807697 ], [ -95.059795939402107, 30.109589279085029 ], [ -95.059637939387969, 30.109880279479512 ], [ -95.059352939199854, 30.110524279651862 ], [ -95.059256939471979, 30.110707279759694 ], [ -95.059213939096821, 30.110788279688478 ], [ -95.059061939157104, 30.11100227964592 ], [ -95.059011939753773, 30.111046279233463 ], [ -95.058922939137247, 30.111095279070941 ], [ -95.058808939053733, 30.111139279347263 ], [ -95.058669939207689, 30.111216279259171 ], [ -95.058492938929533, 30.111414279482542 ], [ -95.058429939571425, 30.11163427963594 ], [ -95.058423939454642, 30.111805280065074 ], [ -95.058442939277228, 30.111909279331591 ], [ -95.058543939184389, 30.11199227948212 ], [ -95.058650939449493, 30.111997279750678 ], [ -95.058796939596817, 30.11197027995766 ], [ -95.05891393957161, 30.111910279884903 ], [ -95.059093939600771, 30.111821279362974 ], [ -95.059295939787177, 30.111640279294377 ], [ -95.059359939199098, 30.111612279349373 ], [ -95.059397939959368, 30.111612280033157 ], [ -95.0594669400067, 30.11162927956773 ], [ -95.059669939138061, 30.111794279412113 ], [ -95.059846939631257, 30.111992279371492 ], [ -95.060080939234467, 30.112377279611479 ], [ -95.060238940164879, 30.112613280228956 ], [ -95.060232940161029, 30.112679279491356 ], [ -95.0600929398056, 30.112773279798347 ], [ -95.060004939939375, 30.112778279919425 ], [ -95.059909939403269, 30.112762279892898 ], [ -95.059757939640164, 30.112674279687734 ], [ -95.05969494004016, 30.112674279521073 ], [ -95.059650939491107, 30.112690280189486 ], [ -95.059599939715511, 30.112734279553703 ], [ -95.059504939588706, 30.112910280183105 ], [ -95.059428939447358, 30.113020279756192 ], [ -95.059416939080421, 30.113103280339015 ], [ -95.059504939990674, 30.113289279602185 ], [ -95.05958793940475, 30.113421279979935 ], [ -95.059631939782662, 30.113553280242311 ], [ -95.059650939572577, 30.114043280257587 ], [ -95.059624939228343, 30.114092279848858 ], [ -95.059479939588272, 30.114191279881858 ], [ -95.059378939153476, 30.11427927975614 ], [ -95.059232939495232, 30.114290280118531 ], [ -95.059011939790096, 30.114230280563763 ], [ -95.05894193919832, 30.114219280252236 ], [ -95.058884939655144, 30.114219280472845 ], [ -95.05883493943864, 30.114252280427291 ], [ -95.05878393971463, 30.114307279929847 ], [ -95.058720939821583, 30.114488280649677 ], [ -95.058726939013283, 30.11464228029217 ], [ -95.058745939834935, 30.1147142800192 ], [ -95.058783939594335, 30.114763280465372 ], [ -95.058815939100441, 30.114807280443408 ], [ -95.058967939480837, 30.115093280410754 ], [ -95.059178939382804, 30.115336279941644 ], [ -95.059283939788955, 30.115456280086686 ], [ -95.059346940107204, 30.115549280874017 ], [ -95.059346939353546, 30.115621280563314 ], [ -95.059296939868375, 30.115819280867385 ], [ -95.05922693991289, 30.115951280955212 ], [ -95.059175940163712, 30.115984280628432 ], [ -95.059093939557016, 30.115995280756739 ], [ -95.059030939582669, 30.115973280367921 ], [ -95.05897393954308, 30.115940280247475 ], [ -95.058929939673604, 30.115901280368863 ], [ -95.058891939067834, 30.115896280802765 ], [ -95.058853940062505, 30.115901280681257 ], [ -95.058828939892692, 30.11591828026399 ], [ -95.058834939916551, 30.116033280517158 ], [ -95.058866939948075, 30.116160280602212 ], [ -95.058960939525065, 30.116297280127046 ], [ -95.058986939548191, 30.116358280461384 ], [ -95.059005939262988, 30.116446280188956 ], [ -95.058998939365495, 30.116512280713653 ], [ -95.058979939927383, 30.116550280910872 ], [ -95.058922939931406, 30.11661128043551 ], [ -95.058771939267416, 30.116732280730865 ], [ -95.058492939365948, 30.116941280361644 ], [ -95.058170938938261, 30.117100281113466 ], [ -95.05799393962846, 30.117237280418049 ], [ -95.057569939286878, 30.117496280491967 ], [ -95.057417939148905, 30.11765528078827 ], [ -95.057354939616417, 30.117743281249247 ], [ -95.057322938901819, 30.11784228111274 ], [ -95.057322938972334, 30.117897280551482 ], [ -95.057348939664735, 30.117963280903091 ], [ -95.057373939265474, 30.118002281124905 ], [ -95.057424939735341, 30.11802428066483 ], [ -95.057664939528777, 30.117991281300334 ], [ -95.057816939027944, 30.117996280691639 ], [ -95.057860939290791, 30.118024281375931 ], [ -95.057879939042593, 30.118057280900043 ], [ -95.057860939268366, 30.118189281449673 ], [ -95.057860938926453, 30.118271281412468 ], [ -95.057885939174497, 30.118337281194041 ], [ -95.05793093981967, 30.118381280608755 ], [ -95.05794293933856, 30.118420281434041 ], [ -95.057936939621513, 30.118469281163794 ], [ -95.057898939721866, 30.11852428138689 ], [ -95.057816939076616, 30.118585281404968 ], [ -95.057740939870186, 30.118612280806115 ], [ -95.057613939851365, 30.118689281285821 ], [ -95.057556938982984, 30.118733280871311 ], [ -95.057525939774962, 30.118783280730213 ], [ -95.057468939861849, 30.118838280731737 ], [ -95.057405939733584, 30.118876281465983 ], [ -95.057120939174752, 30.118964280967774 ], [ -95.057025939490856, 30.119019281375504 ], [ -95.056911939016885, 30.119052281561586 ], [ -95.056772939344427, 30.119080280945695 ], [ -95.056558938630275, 30.119175281445035 ], [ -95.056399939442812, 30.119245281249249 ], [ -95.055925938722709, 30.119432281633948 ], [ -95.055887939252088, 30.119437281599751 ], [ -95.055817938787357, 30.119465280887162 ], [ -95.055779938683969, 30.119498281480656 ], [ -95.055779939363205, 30.119536281579727 ], [ -95.055804939179694, 30.119574281058235 ], [ -95.055842938503332, 30.119596281664162 ], [ -95.055893939441503, 30.119618281770784 ], [ -95.055975938711782, 30.119635281438821 ], [ -95.056064939243655, 30.119684281742231 ], [ -95.056095939291012, 30.119728280941573 ], [ -95.056108938961827, 30.119789281417393 ], [ -95.056108939419332, 30.119860280969618 ], [ -95.056089938923066, 30.119915280973022 ], [ -95.056057938838777, 30.119954281414643 ], [ -95.055975939406224, 30.12001428116017 ], [ -95.055837939169649, 30.120092281559085 ], [ -95.055703939065808, 30.120168281562012 ], [ -95.055608938684827, 30.12021228145661 ], [ -95.055482938548366, 30.120256281860328 ], [ -95.055317939138874, 30.120267281446377 ], [ -95.055083938636741, 30.120240281238395 ], [ -95.054995939181126, 30.120245281887502 ], [ -95.054745938456534, 30.120386281523338 ], [ -95.054704938521922, 30.120410281185137 ], [ -95.054622938218685, 30.120482281553649 ], [ -95.054508938569711, 30.120630281937981 ], [ -95.054773938734513, 30.120636281980342 ], [ -95.054849938926566, 30.12064128178168 ], [ -95.054894938694503, 30.120658281605419 ], [ -95.054950939037127, 30.120707281231457 ], [ -95.054995938720097, 30.120784281934295 ], [ -95.055026938556693, 30.120927281557343 ], [ -95.055039938508202, 30.121202281729541 ], [ -95.055033938420067, 30.12148228203143 ], [ -95.055020938768109, 30.121565281652629 ], [ -95.054995938731452, 30.121631281928476 ], [ -95.054906938786417, 30.121746281775007 ], [ -95.054615938445423, 30.121966282119967 ], [ -95.05457193904904, 30.122016281721383 ], [ -95.054533939079676, 30.122071281910497 ], [ -95.05449593823144, 30.122164282117257 ], [ -95.054482938397058, 30.122241281856134 ], [ -95.05448993859639, 30.122280281605736 ], [ -95.054514939265445, 30.12232428202325 ], [ -95.054704938822383, 30.122522281833646 ], [ -95.054748938519467, 30.122593282276817 ], [ -95.054754938381137, 30.122654282374182 ], [ -95.054735938781846, 30.122714281886147 ], [ -95.054672938745554, 30.122720282062055 ], [ -95.054590938976773, 30.122714282088989 ], [ -95.0543629386314, 30.122659281983189 ], [ -95.054046938971723, 30.122599282175688 ], [ -95.05398393830238, 30.122599282191388 ], [ -95.053881938266542, 30.122621282293125 ], [ -95.053780938403364, 30.122670282418156 ], [ -95.053654938668586, 30.122769282387001 ], [ -95.053262938489908, 30.123237282097303 ], [ -95.053148938768288, 30.123358282586487 ], [ -95.053028938122665, 30.123457282035357 ], [ -95.052654938162064, 30.123709282306397 ], [ -95.05251593856795, 30.123819281898772 ], [ -95.052446938574761, 30.123863282806887 ], [ -95.052275937942085, 30.123924281983751 ], [ -95.051914938056697, 30.123984282254469 ], [ -95.051864937994296, 30.124012282713586 ], [ -95.051535937785118, 30.124248282179273 ], [ -95.051408938262242, 30.124325282406183 ], [ -95.051117937704149, 30.124468282383649 ], [ -95.05097893780605, 30.124518282236036 ], [ -95.050858937705755, 30.124551282715309 ], [ -95.050738937774597, 30.124567282854134 ], [ -95.050440937719515, 30.124573282312706 ], [ -95.050339937443027, 30.124589282254775 ], [ -95.050187937863981, 30.124683283019593 ], [ -95.050086937916575, 30.124793282372575 ], [ -95.050042937494325, 30.124886282978267 ], [ -95.050042937226308, 30.125007283094064 ], [ -95.049993937580794, 30.125182283011057 ], [ -95.050050937457584, 30.125369282696802 ], [ -95.049910937685809, 30.12552828236538 ], [ -95.049778937352713, 30.125578282611897 ], [ -95.049575937856957, 30.125605283126863 ], [ -95.049506937229125, 30.125622282914001 ], [ -95.049430937993193, 30.125671283118407 ], [ -95.049404937309376, 30.12571028314122 ], [ -95.049316937367522, 30.125935283182795 ], [ -95.049272937534568, 30.125990282590998 ], [ -95.049139938011663, 30.126084282535594 ], [ -95.049107937400635, 30.126089282678734 ], [ -95.04905693782699, 30.126078283275397 ], [ -95.048987937913139, 30.126045283132488 ], [ -95.048658937327232, 30.125803283215905 ], [ -95.048633937612834, 30.125765282471814 ], [ -95.048633937531008, 30.125682283301167 ], [ -95.048664936909503, 30.125556282600069 ], [ -95.048626936979204, 30.12547328259441 ], [ -95.048588937055158, 30.12543528258557 ], [ -95.048348937467551, 30.12545128317478 ], [ -95.048222937109031, 30.125501283104814 ], [ -95.048114937418475, 30.125556282631564 ], [ -95.04792493710201, 30.125737283177909 ], [ -95.047810937530642, 30.12574328256941 ], [ -95.047722936935969, 30.125737282654988 ], [ -95.047665937279675, 30.125765282591928 ], [ -95.047583937331808, 30.125825282769433 ], [ -95.047500936820754, 30.125919282870928 ], [ -95.047438936729861, 30.126027282611421 ], [ -95.04733693691432, 30.126204283038927 ], [ -95.04725493660159, 30.126292282778831 ], [ -95.04710293682065, 30.126364282909112 ], [ -95.047039936530226, 30.12640828325738 ], [ -95.046937937400472, 30.126512282724175 ], [ -95.046899937266929, 30.126529283461839 ], [ -95.046805936549646, 30.126529283338179 ], [ -95.046653937389152, 30.126650283490868 ], [ -95.046577936528067, 30.126672283333413 ], [ -95.046507936662209, 30.126672282680076 ], [ -95.046431936388629, 30.126639283038699 ], [ -95.046020936242982, 30.126391283430671 ], [ -95.045938936633732, 30.126375283377943 ], [ -95.045773936176843, 30.126386283257641 ], [ -95.045717936668012, 30.126435282745156 ], [ -95.045672936651414, 30.12650728346506 ], [ -95.045666936281464, 30.126595282866656 ], [ -95.045672936448355, 30.126892283088775 ], [ -95.045639936587662, 30.126958282976052 ], [ -95.045584936712913, 30.127068283066947 ], [ -95.045539936167586, 30.127271283296228 ], [ -95.045501936502845, 30.127326283738768 ], [ -95.045444936624008, 30.127364283059869 ], [ -95.045368937006842, 30.127386283175888 ], [ -95.045217936490772, 30.127403283211965 ], [ -95.045084936138593, 30.127485283201924 ], [ -95.045052936206034, 30.127529283517756 ], [ -95.045052936437301, 30.12768328316864 ], [ -95.045254936212658, 30.127914283851062 ], [ -95.045292937061944, 30.128002283608048 ], [ -95.045305936675518, 30.128090283828026 ], [ -95.045286936409354, 30.128140283554394 ], [ -95.045235936179381, 30.128217283385226 ], [ -95.045198936737123, 30.128283283784889 ], [ -95.045153937002382, 30.128327283657072 ], [ -95.045052936830558, 30.128398283661742 ], [ -95.045001936864594, 30.128453283470794 ], [ -95.04495793647223, 30.128525283545066 ], [ -95.044932937050888, 30.128596283535405 ], [ -95.044938936932766, 30.128750283550556 ], [ -95.044887936709614, 30.128986283421931 ], [ -95.044856936301684, 30.129036284010393 ], [ -95.044799936479933, 30.129113283246657 ], [ -95.044742936422068, 30.129157283899641 ], [ -95.044590936622157, 30.129223283274712 ], [ -95.044464937020592, 30.129349283550106 ], [ -95.044451937014301, 30.129630283397958 ], [ -95.044274936951965, 30.129679283450521 ], [ -95.044261936349585, 30.129773284249932 ], [ -95.04427493655065, 30.130284283866789 ], [ -95.044217936677853, 30.130367283570205 ], [ -95.044071936355024, 30.130405283992669 ], [ -95.043818936410631, 30.130399283546833 ], [ -95.04360993677011, 30.130416283581219 ], [ -95.043356935978039, 30.130355283755986 ], [ -95.043217936731622, 30.130366283790888 ], [ -95.04316093598284, 30.130471283883836 ], [ -95.043072936699772, 30.130487283734706 ], [ -95.042939936059369, 30.130410284209191 ], [ -95.042787936395555, 30.130234284076398 ], [ -95.042711936182769, 30.130196283627669 ], [ -95.042534936186058, 30.130273283906 ], [ -95.042313935863888, 30.130333284205882 ], [ -95.042237935485403, 30.130333284452323 ], [ -95.042148935969749, 30.130229284028239 ], [ -95.042053936033639, 30.130075284151424 ], [ -95.0420229360832, 30.1299872837224 ], [ -95.041737935832302, 30.129992283967137 ], [ -95.041703935633663, 30.130001283594908 ], [ -95.041503935686663, 30.130058283778403 ], [ -95.041047935867383, 30.130394283713184 ], [ -95.040896935729009, 30.130570283814912 ], [ -95.040718936100689, 30.130800284347934 ], [ -95.040687935854677, 30.130866284148258 ], [ -95.04057393558918, 30.131009284171565 ], [ -95.040440935517523, 30.131130284419839 ], [ -95.040383935642822, 30.131147284538955 ], [ -95.040301935909838, 30.131158284424075 ], [ -95.040105934953388, 30.131213284551666 ], [ -95.04000893536481, 30.131216283941487 ], [ -95.039966935277477, 30.13121828414198 ], [ -95.039915935869956, 30.131196284531185 ], [ -95.039744935324507, 30.131042284618378 ], [ -95.039814934887332, 30.131158284666316 ], [ -95.039820935662021, 30.131202284347392 ], [ -95.039801935366356, 30.13124628441355 ], [ -95.039668935091711, 30.131350284571024 ], [ -95.039459935115474, 30.131477284297336 ], [ -95.039371935203405, 30.131542284057947 ], [ -95.039276935488758, 30.131597284021655 ], [ -95.039048935406456, 30.131696284350038 ], [ -95.03897293483567, 30.131713284832088 ], [ -95.038865935198899, 30.13170228417005 ], [ -95.038631935335701, 30.131592283996415 ], [ -95.038498934621913, 30.131570284009452 ], [ -95.038422935287684, 30.1315702848668 ], [ -95.038200935413883, 30.131614284161355 ], [ -95.038125935074476, 30.131680284367125 ], [ -95.037954935289434, 30.131806284527269 ], [ -95.037656934645611, 30.132153284970986 ], [ -95.037429935310101, 30.132378284938238 ], [ -95.037359934813097, 30.132515284477936 ], [ -95.03728993481684, 30.132620284634058 ], [ -95.037226934420104, 30.132713284640239 ], [ -95.037137934559496, 30.132768284803507 ], [ -95.037062935061101, 30.132774284415643 ], [ -95.037008934246543, 30.132763285073555 ], [ -95.036979935166073, 30.132757284660897 ], [ -95.036922934254434, 30.132730284306227 ], [ -95.036872934339769, 30.132741284511724 ], [ -95.036828934601772, 30.132768284722776 ], [ -95.036745934986286, 30.132851284306884 ], [ -95.036606934853523, 30.132906284731845 ], [ -95.036562934286451, 30.132961284614936 ], [ -95.036517934752752, 30.133098284832876 ], [ -95.036372934221987, 30.133313284626475 ], [ -95.036271934127257, 30.133384284546779 ], [ -95.036138934572946, 30.133527285154422 ], [ -95.036100934871882, 30.133587284531238 ], [ -95.03607493428467, 30.133796284580651 ], [ -95.036036934379737, 30.133895285036143 ], [ -95.036005934911046, 30.133928285243556 ], [ -95.035663934280734, 30.133983285145945 ], [ -95.035252934262246, 30.13411528505026 ], [ -95.034974934042481, 30.134176284961072 ], [ -95.034803933877456, 30.13424228478469 ], [ -95.034752934402889, 30.134280285105358 ], [ -95.034714934130889, 30.134346284815088 ], [ -95.034664934026011, 30.134494285462765 ], [ -95.034600934209934, 30.134599285146791 ], [ -95.034474934168514, 30.134709285242128 ], [ -95.034309933683176, 30.134896285543125 ], [ -95.034240934065011, 30.134989285120618 ], [ -95.034094934394162, 30.135099285489481 ], [ -95.034005934152034, 30.135138285303981 ], [ -95.033917933756044, 30.13514328515604 ], [ -95.033771934395659, 30.135127285286419 ], [ -95.033537934003533, 30.1350612853991 ], [ -95.033487934054548, 30.135061285755022 ], [ -95.033354934012934, 30.135110284927318 ], [ -95.033278934072342, 30.135181285226569 ], [ -95.033240933985354, 30.135253285267147 ], [ -95.0332349342508, 30.135423285067557 ], [ -95.033234933689741, 30.135522285304937 ], [ -95.033278933563011, 30.13564928502154 ], [ -95.033366933627093, 30.135847285745701 ], [ -95.033423934037714, 30.136012285257241 ], [ -95.033430933462981, 30.136061285480555 ], [ -95.033404933826702, 30.136138285325835 ], [ -95.033360934157159, 30.136166285462487 ], [ -95.033176934085375, 30.136166285479081 ], [ -95.032999933862499, 30.136182285126853 ], [ -95.032828934177729, 30.13622128559345 ], [ -95.032765933353843, 30.136254285323691 ], [ -95.032601933423948, 30.136369285434391 ], [ -95.032442933397618, 30.136666286049284 ], [ -95.032272933923707, 30.136858285987614 ], [ -95.032196934180078, 30.136957285465364 ], [ -95.032120933873159, 30.13704028565925 ], [ -95.032037933271212, 30.137106285748285 ], [ -95.031936933828646, 30.137150285584298 ], [ -95.03186093397089, 30.137144285728194 ], [ -95.031810933703369, 30.137128285353551 ], [ -95.031740933150886, 30.137089286034417 ], [ -95.031645933326232, 30.137007285858157 ], [ -95.031620933973713, 30.136847285317149 ], [ -95.031657933432982, 30.136683285687123 ], [ -95.03165293311551, 30.136594285340117 ], [ -95.031614933104535, 30.136528285368826 ], [ -95.031576933815899, 30.136484285363004 ], [ -95.031525933503573, 30.136457285620107 ], [ -95.031468933840088, 30.136440286067181 ], [ -95.031348933187289, 30.136457285687218 ], [ -95.031304933488158, 30.136479285343022 ], [ -95.031234932901867, 30.136523285867391 ], [ -95.031063933533616, 30.136682286046973 ], [ -95.030677933677609, 30.136935285470329 ], [ -95.03046893333503, 30.137023285834445 ], [ -95.030253933568702, 30.137138286294451 ], [ -95.030133933156023, 30.137182285431383 ], [ -95.029969933630866, 30.137188285457171 ], [ -95.029848933090733, 30.137182285762549 ], [ -95.029773933472143, 30.137155285523118 ], [ -95.029703933379807, 30.137094286073896 ], [ -95.029551933258375, 30.136885286002027 ], [ -95.029374932906919, 30.136742285950849 ], [ -95.029273933254359, 30.136715285999863 ], [ -95.029115932374268, 30.136704285778176 ], [ -95.029058933379588, 30.136726285455598 ], [ -95.029020932455239, 30.136770285443699 ], [ -95.028995933330776, 30.136825286105324 ], [ -95.028950933332652, 30.136984285696165 ], [ -95.028931933250306, 30.137264285940621 ], [ -95.028912932511446, 30.137325285687616 ], [ -95.028893933291712, 30.137352285854789 ], [ -95.028855933039566, 30.137385286281898 ], [ -95.028779933330966, 30.137385286322747 ], [ -95.028602933247583, 30.13730828609857 ], [ -95.028526932733712, 30.137303286265009 ], [ -95.028450933082823, 30.137325286090508 ], [ -95.028400932983118, 30.137358285894557 ], [ -95.028298932354375, 30.137523286268799 ], [ -95.028165932853028, 30.137897285690691 ], [ -95.028045932790235, 30.138139286328123 ], [ -95.027919932822869, 30.1383032861313 ], [ -95.027836932505508, 30.138369286423043 ], [ -95.027741932609516, 30.13840828644528 ], [ -95.027596932778238, 30.138435285867633 ], [ -95.027526932281376, 30.138479286323861 ], [ -95.027440932922971, 30.138586285829156 ], [ -95.027406932230548, 30.138628285931791 ], [ -95.027317932586158, 30.138815285897088 ], [ -95.027260932226426, 30.13888628623997 ], [ -95.027109932934636, 30.139018286794755 ], [ -95.026957931953831, 30.139095286118319 ], [ -95.026919932161263, 30.139150285991626 ], [ -95.026583932767039, 30.139469286764388 ], [ -95.026393932302369, 30.139711286871037 ], [ -95.026317932109094, 30.139837286411868 ], [ -95.026216931864482, 30.139964286693658 ], [ -95.0260649318313, 30.140085286798339 ], [ -95.025982932684187, 30.140194286474919 ], [ -95.025919932448843, 30.140260286204462 ], [ -95.025836932110707, 30.140293286708317 ], [ -95.025571931709266, 30.140271286994924 ], [ -95.025501932357628, 30.14024428686745 ], [ -95.025463932198349, 30.140194286213713 ], [ -95.025533932287559, 30.13998528659695 ], [ -95.025590931990536, 30.139886286247673 ], [ -95.025634931926078, 30.139732286810169 ], [ -95.025628932110195, 30.139639286865382 ], [ -95.025584931926488, 30.139584286148963 ], [ -95.02552093216913, 30.13955628625164 ], [ -95.025419932033415, 30.139557286884887 ], [ -95.025331932033055, 30.139567286371864 ], [ -95.025255932002111, 30.139589286237438 ], [ -95.025033932319431, 30.13974928661068 ], [ -95.024964931875516, 30.139820286117892 ], [ -95.024634932381218, 30.140315286854285 ], [ -95.024476932255027, 30.140546286446927 ], [ -95.024426931816819, 30.140639286687904 ], [ -95.024413931472651, 30.140694286426097 ], [ -95.024343931469886, 30.140810286820173 ], [ -95.023805932001679, 30.141305287075895 ], [ -95.023552931830181, 30.141612287345986 ], [ -95.023324931340866, 30.141838287094981 ], [ -95.023071931137338, 30.141827286666306 ], [ -95.022957931948241, 30.141788287157432 ], [ -95.022825931591385, 30.141706287119888 ], [ -95.022534931315604, 30.141557287089061 ], [ -95.022439931376582, 30.141524287331798 ], [ -95.022375931143628, 30.141535287098183 ], [ -95.022325930876775, 30.141574287240459 ], [ -95.022192931272926, 30.141706286692035 ], [ -95.02208493095479, 30.141749286980325 ], [ -95.021983931469393, 30.141766287068073 ], [ -95.021648931497623, 30.141881286913179 ], [ -95.021527931018227, 30.14195328670252 ], [ -95.02140193109939, 30.14209028724326 ], [ -95.021262931483847, 30.142200287077721 ], [ -95.021154930592985, 30.142217287061982 ], [ -95.021066931163617, 30.142211287311071 ], [ -95.020888930519163, 30.142156287257656 ], [ -95.020825931172439, 30.142096287385947 ], [ -95.020775931168941, 30.142008286816139 ], [ -95.020800930896598, 30.141936287372641 ], [ -95.020857930519639, 30.141876287379752 ], [ -95.020901930769739, 30.141799287057275 ], [ -95.020920931309234, 30.141722287324843 ], [ -95.020908930975423, 30.141595286881035 ], [ -95.020876931400338, 30.141529287158583 ], [ -95.020604930616287, 30.141271287271554 ], [ -95.020547931182392, 30.141227287071306 ], [ -95.020364931085538, 30.141155286988269 ], [ -95.020136931163464, 30.141095287124688 ], [ -95.019940930647522, 30.141127287331869 ], [ -95.019870930663799, 30.141166286923021 ], [ -95.01982093041596, 30.141215287390953 ], [ -95.019794930732431, 30.141364287305013 ], [ -95.019839930661533, 30.141468286723764 ], [ -95.019984931129628, 30.141551287340477 ], [ -95.02002893047451, 30.141589286899503 ], [ -95.020054930372581, 30.141639286977529 ], [ -95.020079930779161, 30.141853287479879 ], [ -95.020072930793006, 30.141919287014183 ], [ -95.020009931220301, 30.142029286771116 ], [ -95.01995293066804, 30.142095287124977 ], [ -95.019617931074876, 30.142288287040675 ], [ -95.019535931077755, 30.1423102876259 ], [ -95.019250930637327, 30.142293287310544 ], [ -95.019174930765814, 30.142266286846819 ], [ -95.019098930924272, 30.14219928685452 ], [ -95.018984930883235, 30.142139287671686 ], [ -95.018775930435638, 30.14200128681232 ], [ -95.018510930760669, 30.141864287174215 ], [ -95.018421930566376, 30.141858287648049 ], [ -95.018333930732254, 30.141864287557681 ], [ -95.018238930396677, 30.141886287042162 ], [ -95.01816893071161, 30.141908287300808 ], [ -95.018086930431664, 30.141963287444185 ], [ -95.018023930055833, 30.142029287220808 ], [ -95.017782929801228, 30.142380287551816 ], [ -95.017605929777005, 30.142556286964126 ], [ -95.017403930569429, 30.142710287032411 ], [ -95.017383930643334, 30.14272728727401 ], [ -95.017238929758122, 30.14279328773247 ], [ -95.016902929655032, 30.143002287696923 ], [ -95.016791930077147, 30.143028287695067 ], [ -95.016801930308716, 30.143123287703531 ], [ -95.016750930465903, 30.14322728768726 ], [ -95.016731929845591, 30.14330928749802 ], [ -95.016700930463898, 30.143370287747192 ], [ -95.016624929754627, 30.143436287323027 ], [ -95.016567930067964, 30.143529287828798 ], [ -95.016535929912735, 30.143612287278337 ], [ -95.016529929955567, 30.143755287804446 ], [ -95.016541930015649, 30.143837287671413 ], [ -95.0166179303136, 30.14397528786402 ], [ -95.016807930137318, 30.144068287914795 ], [ -95.01686492992755, 30.144129288131346 ], [ -95.016902929603262, 30.144195287744623 ], [ -95.01690893017404, 30.144261287565175 ], [ -95.016902929717077, 30.144349287633588 ], [ -95.01686493052992, 30.14443128809128 ], [ -95.016762930481818, 30.144591287549737 ], [ -95.016686929839977, 30.144629288246232 ], [ -95.016591930136457, 30.144657288285789 ], [ -95.016389929951814, 30.144689288169641 ], [ -95.01623192989446, 30.144799288008457 ], [ -95.016041930367493, 30.144975287627201 ], [ -95.015940930002188, 30.145014287752687 ], [ -95.015604929889719, 30.145102287833524 ], [ -95.015307929334469, 30.145239287604237 ], [ -95.015168930131722, 30.14531628813214 ], [ -95.014965929838581, 30.145360288453695 ], [ -95.014725929931146, 30.145343287812651 ], [ -95.014674929092124, 30.145349287611491 ], [ -95.014598930001796, 30.145382288395513 ], [ -95.014459929981953, 30.145541288305516 ], [ -95.014402929874052, 30.145563288223137 ], [ -95.014326929481953, 30.145574287928184 ], [ -95.014200929193848, 30.145547288009418 ], [ -95.014092929844821, 30.14548628826595 ], [ -95.013883929441704, 30.145315287682781 ], [ -95.013807929265184, 30.145282288012147 ], [ -95.013637929485711, 30.145238287661471 ], [ -95.013384928724435, 30.145106287750394 ], [ -95.013263929702575, 30.145128287733094 ], [ -95.01302392947855, 30.145277288209005 ], [ -95.012852928823392, 30.145530288329233 ], [ -95.012820929050122, 30.14555728818414 ], [ -95.012713928712273, 30.145590287871233 ], [ -95.012498929083065, 30.145507287781623 ], [ -95.012447929455931, 30.145463287841554 ], [ -95.01232792934799, 30.145188288128153 ], [ -95.012226928750053, 30.145067288332978 ], [ -95.012099928644417, 30.144974288333618 ], [ -95.012023928989208, 30.144930288088343 ], [ -95.011910928534419, 30.144897287934661 ], [ -95.011543928706658, 30.14484228804951 ], [ -95.01132192837396, 30.144853287708255 ], [ -95.011087928586349, 30.144820287669837 ], [ -95.010992928693014, 30.144831288012991 ], [ -95.010771928951087, 30.144957288260994 ], [ -95.010669928647118, 30.145023287965866 ], [ -95.010613928355681, 30.145072287703268 ], [ -95.010568928876651, 30.145133288419572 ], [ -95.010543928109584, 30.145204287758936 ], [ -95.010498927993453, 30.145402288241502 ], [ -95.010467928456009, 30.145474288490156 ], [ -95.010435928340485, 30.145518288084808 ], [ -95.010277928354441, 30.145606288334328 ], [ -95.009967928043579, 30.145748288745075 ], [ -95.009682928386368, 30.145506288409184 ], [ -95.009524928323543, 30.145396288511851 ], [ -95.009454928349129, 30.14538028863749 ], [ -95.009227927745172, 30.145374287876212 ], [ -95.008999928242616, 30.145319288014896 ], [ -95.008904927646128, 30.145319288222542 ], [ -95.008803928137709, 30.145358288518374 ], [ -95.008676928456083, 30.145429288467003 ], [ -95.008575928416221, 30.145506287887134 ], [ -95.008537928460697, 30.145555288362416 ], [ -95.008499928507504, 30.145627288074547 ], [ -95.00846192803634, 30.145731288124857 ], [ -95.008391927481426, 30.145995288158481 ], [ -95.008360928226438, 30.146078288425414 ], [ -95.008284927852969, 30.146177288448065 ], [ -95.008138927569661, 30.146287288531575 ], [ -95.007853927413791, 30.146550288311619 ], [ -95.007676927671469, 30.146644288398818 ], [ -95.007594927718614, 30.146655288609772 ], [ -95.007518927881009, 30.146655288577993 ], [ -95.007429927593193, 30.146616288629694 ], [ -95.007214927248455, 30.146407288757164 ], [ -95.007170927932293, 30.146391288639986 ], [ -95.00682892801666, 30.146401288731237 ], [ -95.0067469271969, 30.146368288337264 ], [ -95.006594928047505, 30.146324288115096 ], [ -95.006455927562811, 30.146297288520007 ], [ -95.006329927618339, 30.146286288623628 ], [ -95.00625992737848, 30.146302288369007 ], [ -95.006196927465922, 30.146346288197112 ], [ -95.006158927239724, 30.146396288144075 ], [ -95.006132927708919, 30.146478288232082 ], [ -95.006120927438801, 30.146594288479879 ], [ -95.006119927671762, 30.146781288400206 ], [ -95.006094927486018, 30.146885288387068 ], [ -95.006062927284518, 30.146957288662847 ], [ -95.006031927339407, 30.146990288503435 ], [ -95.005980927508631, 30.147012288869259 ], [ -95.005828927262002, 30.147039288494028 ], [ -95.005778927532589, 30.147061288694193 ], [ -95.005714927513793, 30.147110289016023 ], [ -95.005702926950477, 30.147160289115302 ], [ -95.005708927053988, 30.147215289087612 ], [ -95.005777926921965, 30.147314288656702 ], [ -95.005872927628786, 30.147396289065416 ], [ -95.005942927641982, 30.147473288418723 ], [ -95.005999927550221, 30.147583288549576 ], [ -95.005986927878425, 30.147666289271214 ], [ -95.005935926961371, 30.147803288525253 ], [ -95.005897927401293, 30.147875288431937 ], [ -95.005853927311122, 30.147924288730053 ], [ -95.005783927715797, 30.147979288599505 ], [ -95.00574692695254, 30.147996288729814 ], [ -95.005632927713748, 30.147996288514378 ], [ -95.005265927575493, 30.147940288823161 ], [ -95.005056927136764, 30.147946289198121 ], [ -95.004986927438978, 30.147968289072722 ], [ -95.004847927479886, 30.148072288851644 ], [ -95.004803927167316, 30.148138289121981 ], [ -95.004733926694101, 30.148358289086357 ], [ -95.004695927324974, 30.148446288857347 ], [ -95.004644926878143, 30.148529289073064 ], [ -95.004562926994566, 30.148627289266148 ], [ -95.004397926986726, 30.148715288804979 ], [ -95.004328927574704, 30.148765289045784 ], [ -95.004125926888321, 30.148842289120545 ], [ -95.004043927133552, 30.14888628952329 ], [ -95.003980927179256, 30.148941288807393 ], [ -95.003916926805474, 30.149018289058471 ], [ -95.003878926581891, 30.149084289456219 ], [ -95.003834926872685, 30.149293289137475 ], [ -95.003846927224757, 30.149540289058326 ], [ -95.003840926493012, 30.149666288894224 ], [ -95.003815927157092, 30.149776289197021 ], [ -95.003663926578241, 30.150156289603586 ], [ -95.00363792740491, 30.150271289660822 ], [ -95.003675926580598, 30.150574289848407 ], [ -95.003738926521066, 30.150711289174449 ], [ -95.00375792650982, 30.150953289586543 ], [ -95.003744926913356, 30.151030289308178 ], [ -95.003713927479552, 30.151113289392963 ], [ -95.003662926571806, 30.151201289814921 ], [ -95.003624926889785, 30.151294289850121 ], [ -95.003592926994344, 30.151525289269838 ], [ -95.003573927151109, 30.151580289421254 ], [ -95.003510927337885, 30.151651289557574 ], [ -95.003428926647288, 30.151723289425355 ], [ -95.003358926662088, 30.151750290018235 ], [ -95.003206926834608, 30.151745290147748 ], [ -95.00312492683446, 30.151695290150297 ], [ -95.003092926921369, 30.151635289655491 ], [ -95.003080927335262, 30.151585289807258 ], [ -95.003074926872443, 30.151404289552278 ], [ -95.00306192677472, 30.151327290030494 ], [ -95.00302392703891, 30.151277289387824 ], [ -95.002979926904686, 30.1512502892984 ], [ -95.002928926931034, 30.151244289600498 ], [ -95.002688926868274, 30.151354289905992 ], [ -95.002650927149318, 30.151387289489882 ], [ -95.002631926488206, 30.15143128994659 ], [ -95.002624926857251, 30.151547289451461 ], [ -95.002637926832804, 30.151634289347125 ], [ -95.002662926799317, 30.15171728969101 ], [ -95.002725926586692, 30.151833289558883 ], [ -95.002789926352577, 30.151921289469897 ], [ -95.00283992663843, 30.152020289932697 ], [ -95.002852926578413, 30.152080290063761 ], [ -95.002833927262785, 30.152168289684752 ], [ -95.002769926663191, 30.152300289831512 ], [ -95.002712926851359, 30.152377289908021 ], [ -95.002674927047778, 30.152404289656971 ], [ -95.002605926733921, 30.152432289912291 ], [ -95.002503926992418, 30.152448290100558 ], [ -95.00226992629544, 30.152465289527051 ], [ -95.002187926390192, 30.152426290336628 ], [ -95.002099926242565, 30.152360289964719 ], [ -95.001820926422468, 30.152019289848376 ], [ -95.001738926957017, 30.151970290040403 ], [ -95.001700926730535, 30.151958290100886 ], [ -95.001650926803691, 30.151953289989383 ], [ -95.001498926965724, 30.151969289892737 ], [ -95.001251926702778, 30.152008290176656 ], [ -95.001080925902912, 30.151997290106856 ], [ -95.000783926292527, 30.152019289531346 ], [ -95.000682926419643, 30.152071290031618 ], [ -95.000624926283365, 30.152101289813878 ], [ -95.000536926560869, 30.152260290102394 ], [ -95.000510926661093, 30.152337290265802 ], [ -95.000504925875546, 30.152464290061705 ], [ -95.00054892674612, 30.152772289647874 ], [ -95.000649926382962, 30.152931290052745 ], [ -95.000668925985877, 30.152986290340763 ], [ -95.00064992593154, 30.153157289986286 ], [ -95.000624926448467, 30.15321728980917 ], [ -95.000548926095107, 30.153322289914339 ], [ -95.000478926514603, 30.15338229042689 ], [ -95.000415926348879, 30.153421290614109 ], [ -95.000333926360199, 30.15345429017535 ], [ -95.00030792599631, 30.153448289941085 ], [ -95.000250925698836, 30.153421290595276 ], [ -95.000010925624196, 30.153178290461984 ], [ -94.999818925704275, 30.15324628981751 ], [ -94.999679926127001, 30.15332429023038 ], [ -94.999609926017129, 30.153417289860641 ], [ -94.999609926439021, 30.153533290683921 ], [ -94.99959092659094, 30.153615290032111 ], [ -94.999603926380331, 30.153736289902096 ], [ -94.999641926292497, 30.153851290494224 ], [ -94.999685926244609, 30.153917290133052 ], [ -94.999685926202801, 30.15401629062297 ], [ -94.999610926545955, 30.154154290645035 ], [ -94.999629926250691, 30.154291290352134 ], [ -94.999660925877549, 30.15438529046137 ], [ -94.999831926563061, 30.154495290869335 ], [ -94.999945926042258, 30.154495290373646 ], [ -95.000155926450176, 30.154575290024457 ], [ -95.000243926123957, 30.154702290054537 ], [ -95.000224926247853, 30.154823290630443 ], [ -95.000230926286122, 30.155059290434657 ], [ -95.000161926543711, 30.155318290797755 ], [ -95.000103926229244, 30.155631290810113 ], [ -94.999876925937215, 30.155781290508909 ], [ -94.999706925900483, 30.155809290944209 ], [ -94.99964292667201, 30.155891290725592 ], [ -94.99956092628446, 30.156056290691151 ], [ -94.999440925654795, 30.15663429072908 ], [ -94.999358926338601, 30.156821290567446 ], [ -94.99927692569976, 30.156870290568424 ], [ -94.999194926008414, 30.156826290894085 ], [ -94.999029925857698, 30.15670629109826 ], [ -94.998858926140144, 30.156629291222785 ], [ -94.998687926238972, 30.156596291098918 ], [ -94.998339925884821, 30.156590290565976 ], [ -94.998099925740661, 30.156689290646778 ], [ -94.998042925642366, 30.1567342911666 ], [ -94.997916925762908, 30.156871291151468 ], [ -94.997814925592664, 30.15702029069654 ], [ -94.997688925940054, 30.157267291346258 ], [ -94.997568925230013, 30.157471290865644 ], [ -94.997562925514245, 30.157795291103998 ], [ -94.997916925375947, 30.15794929154141 ], [ -94.998030926273003, 30.158037291627704 ], [ -94.998112925781314, 30.158125291032352 ], [ -94.99811392573811, 30.158240291511024 ], [ -94.998132926200014, 30.158350291575832 ], [ -94.998005926164609, 30.158620291642585 ], [ -94.997986925446455, 30.158680291561996 ], [ -94.997974926417868, 30.158790291041733 ], [ -94.998062925981344, 30.15898329127447 ], [ -94.99811992626806, 30.159070291503994 ], [ -94.998423926233528, 30.159312291340605 ], [ -94.998423926217683, 30.159439291448802 ], [ -94.998196925533549, 30.159554291361484 ], [ -94.998215926445539, 30.159835291391143 ], [ -94.998341925514012, 30.159956291831804 ], [ -94.998525926307423, 30.160225291407031 ], [ -94.998519925936719, 30.160456291685602 ], [ -94.998380926481985, 30.160593291690137 ], [ -94.998228926381913, 30.160698291804046 ], [ -94.998063925537934, 30.160715291510652 ], [ -94.997994925774293, 30.160693291590587 ], [ -94.997956926464752, 30.160649291378817 ], [ -94.997810925500573, 30.160561291724736 ], [ -94.997684925763622, 30.160517292028235 ], [ -94.997551925881922, 30.160484291989434 ], [ -94.997412926060264, 30.16049029135257 ], [ -94.997253926174281, 30.160567291756941 ], [ -94.997184925804035, 30.160682291798093 ], [ -94.997171925330477, 30.160792292043347 ], [ -94.997184925420996, 30.160886292196444 ], [ -94.997228925683771, 30.160995292221408 ], [ -94.997425925606663, 30.161210291621515 ], [ -94.997488925968526, 30.161320291887858 ], [ -94.997520926280103, 30.161474292248805 ], [ -94.997526926000035, 30.161644291843249 ], [ -94.997362925833485, 30.16208429224789 ], [ -94.997229926075789, 30.16234829177229 ], [ -94.997065925693732, 30.162486292293714 ], [ -94.996818925505877, 30.162535292616539 ], [ -94.996704925360149, 30.162601292372475 ], [ -94.996679925351415, 30.162645292130989 ], [ -94.996654925768041, 30.162761292474574 ], [ -94.996647925550221, 30.163052292621185 ], [ -94.99655392583459, 30.163509292798761 ], [ -94.99630092523536, 30.163817292029954 ], [ -94.996110925456549, 30.164070292468846 ], [ -94.996028925986835, 30.164125292228238 ], [ -94.995977925273024, 30.164141292735714 ], [ -94.995648925315109, 30.164120292770903 ], [ -94.995591925702172, 30.164098292332703 ], [ -94.995458925219936, 30.163993292518278 ], [ -94.995351925386885, 30.163867292213808 ], [ -94.995294925402717, 30.163834292106912 ], [ -94.995148925899983, 30.163845292727604 ], [ -94.995098925862621, 30.163889292677577 ], [ -94.995053925147872, 30.163971292574477 ], [ -94.994978925074875, 30.164323292222718 ], [ -94.994981925850482, 30.164710292833298 ], [ -94.99498492490217, 30.165038292546711 ], [ -94.995048925463436, 30.165214292695225 ], [ -94.995155925353089, 30.165362293079458 ], [ -94.995174924982251, 30.16547229327605 ], [ -94.995168925927743, 30.165533292629288 ], [ -94.995149925830646, 30.165582292571177 ], [ -94.995048925557953, 30.165731292561411 ], [ -94.994820925188279, 30.166028292655092 ], [ -94.994675925836844, 30.166176293035509 ], [ -94.994643925184846, 30.166232293037648 ], [ -94.994618925235969, 30.166342293101799 ], [ -94.994624925684988, 30.16637429324728 ], [ -94.994720925821781, 30.166578292662606 ], [ -94.994732925378131, 30.166633292719144 ], [ -94.994726924994723, 30.166765293278274 ], [ -94.99473992536484, 30.167150293115089 ], [ -94.994714925706944, 30.167177293171147 ], [ -94.994676925253131, 30.167177292895197 ], [ -94.99453692491555, 30.167111293571018 ], [ -94.994486925532001, 30.167117293275396 ], [ -94.994448925774961, 30.167133293065188 ], [ -94.994378925681502, 30.167199292968796 ], [ -94.994365925625715, 30.16723829330995 ], [ -94.994347925095866, 30.167260293477614 ], [ -94.994309925632351, 30.16763929333192 ], [ -94.994265924860628, 30.167793293373919 ], [ -94.994284925018547, 30.167903293618568 ], [ -94.994284925508026, 30.167991293310752 ], [ -94.994258925039333, 30.168041293310857 ], [ -94.99418992531146, 30.16807429368432 ], [ -94.994056924956766, 30.168178293360931 ], [ -94.99400592568719, 30.1682392931646 ], [ -94.993986925359664, 30.168283293219201 ], [ -94.993980925156379, 30.168338293531036 ], [ -94.993999925711307, 30.168464293913043 ], [ -94.994240925761162, 30.168844293646792 ], [ -94.994322925565896, 30.169058293567446 ], [ -94.994322925361729, 30.169129293882843 ], [ -94.9942979258647, 30.169174293295061 ], [ -94.994227925205522, 30.169212293374148 ], [ -94.99414592498097, 30.169223293990868 ], [ -94.993854924816205, 30.169124293896829 ], [ -94.99375992506404, 30.169113293621663 ], [ -94.993708925190646, 30.169146293566751 ], [ -94.993683925165342, 30.169185293947827 ], [ -94.993671925564286, 30.169240293406979 ], [ -94.993633925693118, 30.169311294110031 ], [ -94.993601925057803, 30.169322293898375 ], [ -94.993550924971004, 30.169322293460208 ], [ -94.993481925076068, 30.169289293744505 ], [ -94.993399925686475, 30.169201293873655 ], [ -94.993392925199529, 30.169141293983472 ], [ -94.993398925103037, 30.169097293202089 ], [ -94.993462925396798, 30.168921293376425 ], [ -94.993462925100616, 30.168849293805625 ], [ -94.993424924679431, 30.168773293153439 ], [ -94.993373924969035, 30.168712293493527 ], [ -94.993215925115194, 30.168624294004104 ], [ -94.993139924856479, 30.168613293137501 ], [ -94.99304492506343, 30.168619293466779 ], [ -94.993044924550688, 30.168674293705653 ], [ -94.993082925110443, 30.168800293232707 ], [ -94.993126925076638, 30.168861293954848 ], [ -94.993234925006718, 30.169097293471495 ], [ -94.99324092537303, 30.16913529346143 ], [ -94.99322192524275, 30.169202293447057 ], [ -94.993171925099347, 30.169256293877837 ], [ -94.993076925586635, 30.16932829399979 ], [ -94.993013925451038, 30.169345293643246 ], [ -94.992842925176078, 30.169339293663324 ], [ -94.992804924643522, 30.169328293373614 ], [ -94.992759925103357, 30.169301293923088 ], [ -94.992728924885427, 30.169235293353122 ], [ -94.992683925127054, 30.169196293337915 ], [ -94.992607925213633, 30.169174293589137 ], [ -94.992481925028713, 30.169169294071793 ], [ -94.992443925100829, 30.169180293614708 ], [ -94.99239992445645, 30.169218293645805 ], [ -94.992323925384127, 30.169378293837809 ], [ -94.992291925019401, 30.169411294149285 ], [ -94.992247924928023, 30.169433294042875 ], [ -94.992209924632633, 30.169433294002907 ], [ -94.992152924899202, 30.169416293718569 ], [ -94.99209592446563, 30.169416293614336 ], [ -94.992044924606006, 30.169433293742216 ], [ -94.991975924847935, 30.169559294191885 ], [ -94.991937924318236, 30.169724293916257 ], [ -94.991918924547349, 30.169867293785916 ], [ -94.991918924378297, 30.169977294268524 ], [ -94.991899924913781, 30.170082294113847 ], [ -94.991859924758444, 30.170152294204197 ], [ -94.991836924618624, 30.170192293474642 ], [ -94.991778924599913, 30.170336294177631 ], [ -94.991760924397965, 30.17038429440516 ], [ -94.991931924890565, 30.17047829355727 ], [ -94.991950924771146, 30.170511293922925 ], [ -94.992020924532667, 30.1707202936751 ], [ -94.992077924810687, 30.171000293675249 ], [ -94.992134925102704, 30.171159293687047 ], [ -94.992678925099213, 30.171352294355497 ], [ -94.992697925385826, 30.171385294603972 ], [ -94.992754925090438, 30.171434293884897 ], [ -94.992767925462687, 30.171484294353832 ], [ -94.992761925321616, 30.171533293856339 ], [ -94.992723924855625, 30.171599294573706 ], [ -94.992653925326167, 30.17164929441579 ], [ -94.992622925594603, 30.171715294202858 ], [ -94.992641925573281, 30.171775294028695 ], [ -94.992710925311542, 30.171869294090158 ], [ -94.992736925113931, 30.171968293965083 ], [ -94.992723924746997, 30.172166293937622 ], [ -94.992863925240712, 30.172836294792102 ], [ -94.992875924991296, 30.173023294189832 ], [ -94.992863925503954, 30.173117294502351 ], [ -94.992888925617024, 30.173188294612988 ], [ -94.992933925432865, 30.173238294834725 ], [ -94.993059925772215, 30.173326294509543 ], [ -94.993692925168915, 30.173573294411231 ], [ -94.993958925876996, 30.173694294521983 ], [ -94.994161925434796, 30.173935294600124 ], [ -94.994205925911089, 30.174067294952753 ], [ -94.994237925843265, 30.174364294874515 ], [ -94.994256925267322, 30.174452294910115 ], [ -94.994288925532686, 30.174496295035748 ], [ -94.994313926022713, 30.174518294509269 ], [ -94.994535925302046, 30.174573294425876 ], [ -94.994615925785979, 30.174657294662154 ], [ -94.994712925419307, 30.174760294902388 ], [ -94.994864925840702, 30.174820294386357 ], [ -94.995041925848625, 30.174919294970572 ], [ -94.995028925740982, 30.175123294607722 ], [ -94.9950799255368, 30.175293295194862 ], [ -94.995086926298697, 30.17560729452039 ], [ -94.994997925604565, 30.176063295186527 ], [ -94.995004926285617, 30.176228295218372 ], [ -94.99497992637987, 30.176514295481493 ], [ -94.995023926470594, 30.176657294818334 ], [ -94.995061926377019, 30.176723295285196 ], [ -94.995156926308852, 30.176844295374565 ], [ -94.995295925790913, 30.176959295426975 ], [ -94.995352926516574, 30.177025295358352 ], [ -94.995409926172073, 30.177069295399512 ], [ -94.995460925840092, 30.177086295160915 ], [ -94.995504925874016, 30.177152295328881 ], [ -94.995523925893536, 30.17720129507218 ], [ -94.995498925674369, 30.17730029538972 ], [ -94.995435925985447, 30.177432295070819 ], [ -94.995359926371847, 30.177526295181465 ], [ -94.995391926279837, 30.177636295315605 ], [ -94.995549926425213, 30.17774629579953 ], [ -94.995606926258546, 30.177745295071713 ], [ -94.995853926480791, 30.177822295300302 ], [ -94.995992926625718, 30.177822295775016 ], [ -94.996049926493029, 30.177839295122023 ], [ -94.99610092624664, 30.177938295013615 ], [ -94.996131926499714, 30.177976295728595 ], [ -94.996264926391163, 30.178015295151834 ], [ -94.996309926836062, 30.17804829571249 ], [ -94.9963289259898, 30.178108295640779 ], [ -94.99625892638619, 30.178339295488062 ], [ -94.996277926303776, 30.178411295008058 ], [ -94.99629092618855, 30.178427295519832 ], [ -94.996796925977591, 30.178619295821466 ], [ -94.996929926494786, 30.178636295659668 ], [ -94.996993926956691, 30.178619295873506 ], [ -94.997050926785064, 30.178581295708089 ], [ -94.99714492676722, 30.178575295057584 ], [ -94.997176926689477, 30.178608295787843 ], [ -94.997208926622463, 30.178685295215978 ], [ -94.997170926281697, 30.178839295304687 ], [ -94.997170926089709, 30.178987295939265 ], [ -94.997202927021107, 30.179092295868042 ], [ -94.997233926675122, 30.179125295700729 ], [ -94.997525926801501, 30.179196295638345 ], [ -94.997588926639651, 30.179202295499557 ], [ -94.997746927044957, 30.17916929588014 ], [ -94.997784926753269, 30.179141295557141 ], [ -94.997809927229085, 30.179097295796161 ], [ -94.997790927070625, 30.178982295255015 ], [ -94.997689926298861, 30.178663295698946 ], [ -94.997689926372715, 30.178608295745903 ], [ -94.99779692716919, 30.178503295456363 ], [ -94.997834926634724, 30.178503295598691 ], [ -94.997910926680078, 30.178531295467224 ], [ -94.998075926743823, 30.178652295570753 ], [ -94.998271926501005, 30.178877295906002 ], [ -94.998499927166236, 30.179091295842785 ], [ -94.998639926507906, 30.17931729565532 ], [ -94.998658927370883, 30.179366295783364 ], [ -94.99865192743512, 30.179482295756294 ], [ -94.998601926623792, 30.179603295692459 ], [ -94.998639926784108, 30.179768295364923 ], [ -94.99867792713313, 30.179872295329705 ], [ -94.998842927090379, 30.180114295385749 ], [ -94.999051926902226, 30.180488296033488 ], [ -94.999190927129376, 30.180741295466301 ], [ -94.999444927662225, 30.18112029617123 ], [ -94.999513927716336, 30.181296295825621 ], [ -94.999589927413965, 30.181461295582 ], [ -94.999590927525944, 30.181692296196822 ], [ -94.999552927692221, 30.182049296010259 ], [ -94.999653927470376, 30.182549296530482 ], [ -94.999717927288529, 30.182703296469757 ], [ -94.999799927861332, 30.18277529608492 ], [ -95.000011927240607, 30.183004296250637 ], [ -95.00028392748456, 30.183240296678349 ], [ -95.000201928060434, 30.183565296518168 ], [ -95.000314927250614, 30.183834296731472 ], [ -95.000523927226382, 30.184225296927732 ], [ -95.000466927951109, 30.184665296177766 ], [ -95.000497927417683, 30.18501729700904 ], [ -95.00057992776614, 30.185104296757974 ], [ -95.000649927322954, 30.185225296466783 ], [ -95.000699927638379, 30.185407297002261 ], [ -95.000718927935281, 30.185660296580231 ], [ -95.000712928262615, 30.185935296619007 ], [ -95.000566927903634, 30.186331296679768 ], [ -95.000541927762427, 30.186435297133542 ], [ -95.000528927521771, 30.186534297139765 ], [ -95.000541927569699, 30.18660629698163 ], [ -95.000566928356747, 30.186650296580574 ], [ -95.000813927440021, 30.186864297166967 ], [ -95.001116927587191, 30.18717229733458 ], [ -95.001127928399939, 30.187180297460309 ], [ -95.001230928025237, 30.187255297460077 ], [ -95.001464928331202, 30.187343297436609 ], [ -95.001749928282777, 30.187436297312985 ], [ -95.001907928224838, 30.187508296813139 ], [ -95.001983928771409, 30.187563297006893 ], [ -95.002179928074881, 30.18780529731529 ], [ -95.002211928109844, 30.187871297479507 ], [ -95.002230928337895, 30.187948297155337 ], [ -95.002230928348354, 30.188053296854957 ], [ -95.002211927987375, 30.188124297045434 ], [ -95.002014927927476, 30.188421296912395 ], [ -95.001945928260881, 30.188542297357049 ], [ -95.001913928421445, 30.188613297612751 ], [ -95.001887928315725, 30.18875129745442 ], [ -95.001837928057597, 30.18891029778398 ], [ -95.001526928497739, 30.189383297617194 ], [ -95.001488928275592, 30.189515297594166 ], [ -95.001482928414376, 30.189641297264949 ], [ -95.001488928018446, 30.18971829793691 ], [ -95.001513927790924, 30.189817297782593 ], [ -95.001558928641501, 30.189922297714251 ], [ -95.001621928308339, 30.190032297683658 ], [ -95.001665927886975, 30.190065297935355 ], [ -95.001741928570993, 30.190087297297264 ], [ -95.001836928619525, 30.190087297276058 ], [ -95.002051927937714, 30.190043297521754 ], [ -95.002247928560038, 30.190071297734871 ], [ -95.002311927916452, 30.19007129801869 ], [ -95.002507928556241, 30.190021297552601 ], [ -95.002564928624196, 30.190027298054115 ], [ -95.002608928952696, 30.190038297441621 ], [ -95.002659928073896, 30.19006529792652 ], [ -95.002710928314514, 30.19010929755029 ], [ -95.002842928226656, 30.190291298010369 ], [ -95.002887928511427, 30.190329297416977 ], [ -95.002937928415889, 30.190357298002194 ], [ -95.003001928326569, 30.190368297348463 ], [ -95.003273928590701, 30.190351297313786 ], [ -95.00360892901233, 30.190423297952037 ], [ -95.003647928636127, 30.190449297224824 ], [ -95.003754929199275, 30.190522298101381 ], [ -95.003792928984069, 30.190561297917924 ], [ -95.003830928950748, 30.190632297552142 ], [ -95.003830928402039, 30.190682297486369 ], [ -95.003811928667503, 30.190753297825619 ], [ -95.00368492841109, 30.191001298068997 ], [ -95.003652929096233, 30.19108829767584 ], [ -95.003639928587674, 30.191143297509672 ], [ -95.003658928986113, 30.191248298029286 ], [ -95.004000929130228, 30.191309297555815 ], [ -95.004025929042086, 30.191320298207238 ], [ -95.004095928906807, 30.19141329799578 ], [ -95.004120929403626, 30.191496298219281 ], [ -95.004165929242973, 30.191584297966159 ], [ -95.004253928553482, 30.191727297664979 ], [ -95.004285928629386, 30.191760298144871 ], [ -95.004392929557866, 30.191815298316087 ], [ -95.004513928739698, 30.19184829825296 ], [ -95.004778929120647, 30.191793298028724 ], [ -95.004842928650746, 30.191787298248197 ], [ -95.005044928788365, 30.19185929832042 ], [ -95.005120929265743, 30.191859297862045 ], [ -95.005285929451361, 30.191787297725455 ], [ -95.005475928890846, 30.191749297483977 ], [ -95.005538929115787, 30.191766298140529 ], [ -95.005620929181106, 30.191815297459335 ], [ -95.005690929664837, 30.191887297743278 ], [ -95.005715929330663, 30.192030297642308 ], [ -95.005709929338678, 30.192156298118032 ], [ -95.005715929216905, 30.192233297527594 ], [ -95.005747929927097, 30.192266297653077 ], [ -95.00594392962455, 30.19234929810559 ], [ -95.00609592950525, 30.192464298331611 ], [ -95.006139929039264, 30.192481298025758 ], [ -95.006323929129906, 30.192497297544083 ], [ -95.006398929475509, 30.19253029814324 ], [ -95.00655092976578, 30.192662297827479 ], [ -95.006588929683062, 30.192684297680035 ], [ -95.006645929339484, 30.19269029818857 ], [ -95.006778930201932, 30.192684297819248 ], [ -95.006911930205931, 30.192629298437449 ], [ -95.006987929380358, 30.192618298415727 ], [ -95.007139930326474, 30.192618297936221 ], [ -95.007285929488518, 30.192580297540257 ], [ -95.007329929431634, 30.192586298396758 ], [ -95.007386929536182, 30.192613298112729 ], [ -95.007418929860933, 30.192652297534842 ], [ -95.007449929766807, 30.19272929835267 ], [ -95.007468929440179, 30.192811298402962 ], [ -95.007455930173037, 30.192844298035503 ], [ -95.007379930009975, 30.192948298164275 ], [ -95.007373929776961, 30.192987298463844 ], [ -95.007386930336295, 30.193047297841272 ], [ -95.007417929732611, 30.193108297854362 ], [ -95.00745592996121, 30.193136298088238 ], [ -95.007493930257425, 30.19315229795243 ], [ -95.007626929893902, 30.193136298349629 ], [ -95.007803930051935, 30.193020298107491 ], [ -95.007911930473895, 30.193009298209532 ], [ -95.008398930430261, 30.193196297880327 ], [ -95.008506930445492, 30.193257297821919 ], [ -95.008569929931639, 30.193400298459721 ], [ -95.00860793028545, 30.19345529847724 ], [ -95.008664930007214, 30.193504298105641 ], [ -95.008740930295062, 30.1935482983633 ], [ -95.009063930813412, 30.193653298028192 ], [ -95.009139930382304, 30.193686297781099 ], [ -95.009202930016158, 30.193746298423243 ], [ -95.00922193041113, 30.193779298463102 ], [ -95.009227930146224, 30.193813298503365 ], [ -95.009215930774985, 30.193873298254996 ], [ -95.009120930236023, 30.193944298351965 ], [ -95.009018930593243, 30.194005298283887 ], [ -95.008974930828359, 30.194060298061174 ], [ -95.008942930127176, 30.194137298526972 ], [ -95.008942930820183, 30.194197298492025 ], [ -95.009113930779151, 30.194461298162096 ], [ -95.009157930359137, 30.194549297894572 ], [ -95.009233930465371, 30.194753298226562 ], [ -95.009271930547584, 30.194802298270684 ], [ -95.009385930350319, 30.194896298219952 ], [ -95.009499930246832, 30.194973298104834 ], [ -95.009588930825046, 30.195022298391677 ], [ -95.009657930285073, 30.195039297985755 ], [ -95.009714930119699, 30.195033298612167 ], [ -95.009904930340113, 30.194924298234998 ], [ -95.010043931151074, 30.194885298435103 ], [ -95.010081930442382, 30.194896298782446 ], [ -95.010126930221048, 30.194929298632996 ], [ -95.010170930654851, 30.19497929858397 ], [ -95.010195930342192, 30.195039298586146 ], [ -95.010195930770635, 30.195078298127857 ], [ -95.010144930338896, 30.195215298689188 ], [ -95.010125930275223, 30.195303298723491 ], [ -95.010144930772142, 30.195418298060385 ], [ -95.010189930586066, 30.195545298575794 ], [ -95.010252930453333, 30.195655298388569 ], [ -95.010220931173862, 30.195721298901237 ], [ -95.010189931188251, 30.195759298155931 ], [ -95.010112930748306, 30.1959412988484 ], [ -95.010100930784787, 30.196023298164704 ], [ -95.010106930637022, 30.19617229826277 ], [ -95.010169930614055, 30.196260298518702 ], [ -95.010233930947692, 30.19630929819785 ], [ -95.010460931086243, 30.196414298531987 ], [ -95.010581930826604, 30.196507298924669 ], [ -95.010650931180933, 30.196595298977865 ], [ -95.010726930584894, 30.196727298862108 ], [ -95.010770931223547, 30.196865298569481 ], [ -95.010777930638341, 30.197024298520976 ], [ -95.010758931382668, 30.197156298598525 ], [ -95.010637930630608, 30.197393298854099 ], [ -95.010599930593671, 30.197497298740466 ], [ -95.010593930694085, 30.19756929886298 ], [ -95.010599931444673, 30.197646298691332 ], [ -95.010624931021468, 30.197701298907706 ], [ -95.010770931099273, 30.197849299258348 ], [ -95.010802931505239, 30.19791529866302 ], [ -95.010801931225771, 30.19809129874319 ], [ -95.01082793099576, 30.198163298697143 ], [ -95.010985930727628, 30.198443298732521 ], [ -95.011023931356974, 30.198636299298617 ], [ -95.011035931569353, 30.198790298784402 ], [ -95.010997931080993, 30.198938298679277 ], [ -95.010972931306071, 30.198971299405535 ], [ -95.010928931168039, 30.199004299295243 ], [ -95.010890931436691, 30.199009299064603 ], [ -95.010839931083169, 30.198993299468945 ], [ -95.010624930689275, 30.198784299459305 ], [ -95.010491930820592, 30.198729299454264 ], [ -95.010415930534919, 30.198729299492253 ], [ -95.010358930712982, 30.198740298821765 ], [ -95.010245930844079, 30.198779298996566 ], [ -95.010168930993359, 30.198806299099697 ], [ -95.010079930327791, 30.198828299407381 ], [ -95.009902930502875, 30.198850299312635 ], [ -95.00982693124412, 30.198872299493893 ], [ -95.00978293064712, 30.19889929929624 ], [ -95.009744931180308, 30.198965299567238 ], [ -95.009782930496897, 30.199146299242098 ], [ -95.009775931219664, 30.199212298843403 ], [ -95.009699931094957, 30.199388299300082 ], [ -95.009687930479402, 30.199476299076519 ], [ -95.009693930544472, 30.199520299127606 ], [ -95.009725930684056, 30.199564299205541 ], [ -95.009876931347335, 30.199658299615361 ], [ -95.009997930358963, 30.199762299601279 ], [ -95.010085930588204, 30.199790299129642 ], [ -95.010320930497016, 30.199812299683643 ], [ -95.01042793058366, 30.19988329973701 ], [ -95.01046593128028, 30.199933299385567 ], [ -95.010522931114878, 30.200038299135137 ], [ -95.010554931073358, 30.200120299230136 ], [ -95.010573930644753, 30.200203299476442 ], [ -95.010566931229647, 30.200318299526391 ], [ -95.010547930933555, 30.200356299793459 ], [ -95.010509931136383, 30.200384299089173 ], [ -95.010465931020519, 30.200395299309726 ], [ -95.010408931066138, 30.200384299154223 ], [ -95.010294930727909, 30.200323299314434 ], [ -95.010085931168618, 30.200175299462757 ], [ -95.010041930872902, 30.20015329979778 ], [ -95.009965930559801, 30.200153299612573 ], [ -95.009914930946195, 30.200175299056841 ], [ -95.009832930989518, 30.200279299380174 ], [ -95.009693931007519, 30.200345299156073 ], [ -95.009560930841133, 30.200384299734292 ], [ -95.00950993092124, 30.20042229974333 ], [ -95.009389931209085, 30.200620299203614 ], [ -95.009376930501901, 30.200686299526524 ], [ -95.009414930915469, 30.200796299224862 ], [ -95.009490930762738, 30.200862299168019 ], [ -95.009591930426978, 30.200928299236732 ], [ -95.009730930570072, 30.200961299666098 ], [ -95.010021931175046, 30.20090129995269 ], [ -95.010085930940775, 30.200906299564803 ], [ -95.010534931553664, 30.201099299247129 ], [ -95.010585931084464, 30.201137299307025 ], [ -95.01062993126645, 30.201192299390023 ], [ -95.010743930792103, 30.201495299805433 ], [ -95.010787931214679, 30.201550299828682 ], [ -95.010933931395684, 30.201660299382446 ], [ -95.010977930754535, 30.201709299601774 ], [ -95.011059931743375, 30.201924300078577 ], [ -95.011091931161303, 30.201973299326347 ], [ -95.011230931258467, 30.202072299348092 ], [ -95.011255931020315, 30.202111299507891 ], [ -95.011281930868947, 30.202232299620412 ], [ -95.011325930845487, 30.202292299921211 ], [ -95.011363931399487, 30.202320299723741 ], [ -95.011521931514338, 30.202386299551183 ], [ -95.011559930878022, 30.202413300061796 ], [ -95.011584931917611, 30.202457299784847 ], [ -95.011603931492587, 30.202534300069111 ], [ -95.011591931347709, 30.202633300074471 ], [ -95.011559931237429, 30.202716299721949 ], [ -95.011502931471895, 30.202787300169931 ], [ -95.011337931855778, 30.202925300174631 ], [ -95.011154931826781, 30.203166300329269 ], [ -95.010976930946924, 30.203359300087488 ], [ -95.010926931652833, 30.20345229966399 ], [ -95.010894931012217, 30.203562300025492 ], [ -95.010887931429266, 30.203645300337058 ], [ -95.010900931396876, 30.203716300088136 ], [ -95.010938930928958, 30.203793300328833 ], [ -95.011172931793766, 30.204019299731936 ], [ -95.011216931632248, 30.204090300191375 ], [ -95.011229931809751, 30.20426129992013 ], [ -95.011242931673621, 30.204310300126597 ], [ -95.011349931513678, 30.204459300583348 ], [ -95.011425931357266, 30.204690300257287 ], [ -95.011431931658691, 30.204745300300111 ], [ -95.011457931843651, 30.204789300713706 ], [ -95.011495931307167, 30.204827300478183 ], [ -95.011748931811496, 30.20500330073838 ], [ -95.011792931432041, 30.205064299959258 ], [ -95.011817931175869, 30.205245300450823 ], [ -95.011811931703519, 30.205366300728723 ], [ -95.011786931443339, 30.205476300128598 ], [ -95.0117479318872, 30.205570300127278 ], [ -95.011703931947565, 30.205636300815563 ], [ -95.011640931185056, 30.205696300188677 ], [ -95.011602931500093, 30.205713300502563 ], [ -95.011570931636228, 30.20571330090814 ], [ -95.011342932005007, 30.205619300243555 ], [ -95.011247930979053, 30.205608300870107 ], [ -95.011203931829712, 30.20561930049865 ], [ -95.011178931364697, 30.205641300109068 ], [ -95.01096993129056, 30.206048300363523 ], [ -95.010950931434408, 30.206108301006061 ], [ -95.010943931757211, 30.206191300330765 ], [ -95.01103893165525, 30.206488301017309 ], [ -95.011114931305272, 30.206598300450963 ], [ -95.011513931125535, 30.206972301035076 ], [ -95.01158293116886, 30.207021300664493 ], [ -95.011975931364589, 30.207126300450181 ], [ -95.012032931641755, 30.207159301058809 ], [ -95.012253931623988, 30.20742330099527 ], [ -95.012323932332023, 30.20748330115309 ], [ -95.012373931756741, 30.207511300400505 ], [ -95.012462931421268, 30.207533300913546 ], [ -95.012557931974257, 30.207538300568309 ], [ -95.012753932371211, 30.207412300732042 ], [ -95.012823932402441, 30.207407300567926 ], [ -95.01292493249403, 30.207418300462436 ], [ -95.013006932071448, 30.207440300858451 ], [ -95.013133932332195, 30.207539300392931 ], [ -95.013253931934699, 30.20767630103737 ], [ -95.013367931966741, 30.207847300470686 ], [ -95.013532931843656, 30.208199300661086 ], [ -95.013606931937161, 30.208400301361035 ], [ -95.013633932336262, 30.208474301272474 ], [ -95.013728932168064, 30.208804300871581 ], [ -95.013740932174613, 30.20907830098642 ], [ -95.013734932304288, 30.20916630150159 ], [ -95.013696932094163, 30.209243300976876 ], [ -95.013620932612113, 30.209348301501706 ], [ -95.013423932370415, 30.209535301426328 ], [ -95.013423931987575, 30.20960630105662 ], [ -95.013480932232781, 30.209980301387471 ], [ -95.013474932130137, 30.210118301264544 ], [ -95.013423931962834, 30.210497301247816 ], [ -95.013442932238632, 30.210569301370153 ], [ -95.013474932390451, 30.21059130169704 ], [ -95.013511932631417, 30.210596301341887 ], [ -95.013562931825447, 30.210580301063693 ], [ -95.013695932042225, 30.210464301580252 ], [ -95.013771932232927, 30.210426301188523 ], [ -95.013860932642828, 30.210448301590773 ], [ -95.013898932453614, 30.210497301565489 ], [ -95.01391093279949, 30.210547301607296 ], [ -95.013879932454557, 30.210811301603659 ], [ -95.013904932640415, 30.211306301445106 ], [ -95.013912932804985, 30.211373301973904 ], [ -95.013923932265996, 30.211471301318277 ], [ -95.013922932879638, 30.211949302081191 ], [ -95.013884932465317, 30.212185301373609 ], [ -95.014005932181107, 30.212185302096799 ], [ -95.014068932489735, 30.212196302142672 ], [ -95.014119932882068, 30.212235301506915 ], [ -95.014157932956977, 30.21229530150185 ], [ -95.014176932664995, 30.212405301433371 ], [ -95.014156932546868, 30.212570301679847 ], [ -95.01405593270799, 30.212994301853403 ], [ -95.014169932945819, 30.213285302378235 ], [ -95.01421993223002, 30.213527302102296 ], [ -95.014238932288833, 30.213769301831359 ], [ -95.014111932346296, 30.213912302412517 ], [ -95.014074932091802, 30.214005302320309 ], [ -95.014086932401341, 30.214088301767362 ], [ -95.01412493309482, 30.214192302271695 ], [ -95.014194932501411, 30.214319301989704 ], [ -95.014282932536005, 30.214451302590685 ], [ -95.014365932873389, 30.214605302476691 ], [ -95.014383932345766, 30.214671301887144 ], [ -95.014371932935092, 30.214781302657279 ], [ -95.014301932685029, 30.214990302202395 ], [ -95.014231932253679, 30.215116302011165 ], [ -95.014010932329711, 30.215424302004781 ], [ -95.013991932177902, 30.215518302416015 ], [ -95.013997932961885, 30.21563330227066 ], [ -95.014041932252326, 30.215765302451725 ], [ -95.014117933151468, 30.215886302334464 ], [ -95.014123933082047, 30.215957302523186 ], [ -95.014117932359625, 30.216024302614937 ], [ -95.014073932846557, 30.21612230237541 ], [ -95.013997932739642, 30.216249302285348 ], [ -95.013781932700866, 30.216579303032997 ], [ -95.013730933127164, 30.21667830307576 ], [ -95.013699932827038, 30.216777302335903 ], [ -95.013699932383759, 30.21686530242982 ], [ -95.0137249324533, 30.216953302732584 ], [ -95.013756932494019, 30.216997303119321 ], [ -95.013908933048242, 30.217063302776356 ], [ -95.013946932812146, 30.21703030299469 ], [ -95.013984932266851, 30.216969302384033 ], [ -95.014028932435664, 30.216925302321513 ], [ -95.014091933108418, 30.216903302787454 ], [ -95.014136932851514, 30.21689830253386 ], [ -95.014180933050085, 30.216903302485861 ], [ -95.014237933141743, 30.216931302272506 ], [ -95.014262933133523, 30.216964302740926 ], [ -95.01435193311552, 30.217244303154285 ], [ -95.014541932487163, 30.217431302931121 ], [ -95.015028933506457, 30.217778303102754 ], [ -95.015332933236564, 30.218031303143544 ], [ -95.015503932912623, 30.218218303122324 ], [ -95.015553933555523, 30.218289303083427 ], [ -95.015585933119823, 30.218372302951291 ], [ -95.015616933054005, 30.218493302901205 ], [ -95.015616933309204, 30.218548302567019 ], [ -95.015585933577796, 30.218636302953485 ], [ -95.015540933664539, 30.218718302679832 ], [ -95.015464933622212, 30.218762302853925 ], [ -95.015167933290996, 30.218784302979262 ], [ -95.015078932787461, 30.218801302826517 ], [ -95.015021933423796, 30.218828303138736 ], [ -95.014977932699608, 30.218867303024219 ], [ -95.014945932966185, 30.218927302674938 ], [ -95.014926933231067, 30.219009302881133 ], [ -95.014901933532343, 30.219224302899004 ], [ -95.014882933377677, 30.219279303298986 ], [ -95.014736933235596, 30.219433303364447 ], [ -95.014666933125113, 30.219532303468895 ], [ -95.014647933442149, 30.219581303295499 ], [ -95.014628933219171, 30.21969730295265 ], [ -95.014622932792435, 30.219834303088657 ], [ -95.014647932878148, 30.219933303173836 ], [ -95.014704933297949, 30.22005430310503 ], [ -95.01477493331997, 30.22016430323221 ], [ -95.014837933141706, 30.220208303038667 ], [ -95.014894933175569, 30.220219303594405 ], [ -95.014995933345205, 30.220203303531335 ], [ -95.015109933099723, 30.220164303394107 ], [ -95.015217932692849, 30.220142303117029 ], [ -95.015280933250096, 30.220142303213244 ], [ -95.015318933600611, 30.220159303153643 ], [ -95.01536993296628, 30.220197303464349 ], [ -95.01539493309167, 30.220230303646439 ], [ -95.015413933581087, 30.220357303629022 ], [ -95.015381933057952, 30.220423302975053 ], [ -95.015160933414137, 30.220731303511215 ], [ -95.015134932723015, 30.220797303489455 ], [ -95.015141932693084, 30.2208523036157 ], [ -95.015166933139085, 30.2209073031405 ], [ -95.015273932962032, 30.221055303173678 ], [ -95.015375932812148, 30.221220303780449 ], [ -95.015413933333988, 30.221303303376668 ], [ -95.015476932779066, 30.221396303675782 ], [ -95.015546933397815, 30.221468303456518 ], [ -95.015609933187633, 30.2214953040037 ], [ -95.015698933444298, 30.221501303134922 ], [ -95.015932933124915, 30.22148430324917 ], [ -95.016001933798634, 30.22150130338915 ], [ -95.016166933011434, 30.221578303118111 ], [ -95.016248933059757, 30.2216443032518 ], [ -95.016394933353283, 30.221798303431552 ], [ -95.016495933575158, 30.221946303533105 ], [ -95.016527933222406, 30.222018303804223 ], [ -95.016565933618878, 30.222188303654931 ], [ -95.016615933573988, 30.222282303275978 ], [ -95.016698933303758, 30.222392304151281 ], [ -95.016755933230868, 30.222425304044666 ], [ -95.016793933344445, 30.222425303783638 ], [ -95.016818933620854, 30.222419303735652 ], [ -95.016869933440361, 30.222381303767701 ], [ -95.016894933827714, 30.222320303257661 ], [ -95.016900934074201, 30.222150303874542 ], [ -95.016919933812432, 30.222056303346601 ], [ -95.016957933844694, 30.22200130348569 ], [ -95.017008933442909, 30.221979304003309 ], [ -95.017059933398855, 30.221974303341234 ], [ -95.017109933593602, 30.222001303952478 ], [ -95.01719193379347, 30.222111303838659 ], [ -95.017249934243424, 30.222166303522361 ], [ -95.017299933343253, 30.222200303753137 ], [ -95.017394934180601, 30.222205304072865 ], [ -95.01746493418139, 30.222194303398304 ], [ -95.017521933997614, 30.222172303420535 ], [ -95.017571934007506, 30.222128303764002 ], [ -95.017685934342467, 30.221991303455546 ], [ -95.017730934413095, 30.221903303500113 ], [ -95.017787934432562, 30.221760303333383 ], [ -95.017989933799285, 30.221782303591826 ], [ -95.018338934310378, 30.221875303786604 ], [ -95.018578934100603, 30.222002303778059 ], [ -95.018983934013093, 30.222068303369955 ], [ -95.018971934561677, 30.222222303518855 ], [ -95.019009934572679, 30.222299303219245 ], [ -95.019066934489814, 30.222348303548991 ], [ -95.019129934567516, 30.222371303850917 ], [ -95.019186934521528, 30.222376303795649 ], [ -95.019427934705931, 30.222349303539833 ], [ -95.019484934291441, 30.222360303884503 ], [ -95.019591934019644, 30.222420304025828 ], [ -95.019699934818675, 30.222541303926278 ], [ -95.019768934166692, 30.222574303478815 ], [ -95.020104934398645, 30.222646303516218 ], [ -95.020218934354148, 30.222662303981853 ], [ -95.020382934271012, 30.222756303725344 ], [ -95.020414934801209, 30.222800304102456 ], [ -95.02043393412302, 30.222855303816914 ], [ -95.020414934131267, 30.222976303501628 ], [ -95.020306934147712, 30.223185303839337 ], [ -95.020262934963696, 30.223218303985004 ], [ -95.019793934805435, 30.223316303701679 ], [ -95.01973093464926, 30.223349304211499 ], [ -95.019705934566019, 30.223388304132154 ], [ -95.019679934563953, 30.223624303741268 ], [ -95.019686934939458, 30.223657304251184 ], [ -95.019736934058159, 30.223718304104452 ], [ -95.019876934983955, 30.223762304335736 ], [ -95.0199079345347, 30.223784303952712 ], [ -95.019933934793414, 30.223817303858294 ], [ -95.019933934332869, 30.22388330428614 ], [ -95.019907934933741, 30.223949304165625 ], [ -95.01986993467807, 30.223993303805592 ], [ -95.019799934013761, 30.224037304145615 ], [ -95.019724934799754, 30.224059303638413 ], [ -95.019648934328004, 30.224037303880326 ], [ -95.019451934270364, 30.22389430434664 ], [ -95.019394934827787, 30.223872303949562 ], [ -95.019166934614276, 30.223866303918758 ], [ -95.019021934435131, 30.223888303595178 ], [ -95.018881934567602, 30.223932304019652 ], [ -95.018755933832949, 30.224020304320913 ], [ -95.018660933765545, 30.224113303835672 ], [ -95.018634934186252, 30.224163303865303 ], [ -95.0186289347468, 30.224300303798238 ], [ -95.018647934042946, 30.224350304207398 ], [ -95.018761934412154, 30.224487303970555 ], [ -95.018881934020072, 30.224608304509001 ], [ -95.019046934094192, 30.224718304247428 ], [ -95.019109933982207, 30.224779304243043 ], [ -95.019134934740208, 30.224817304059098 ], [ -95.019134934413287, 30.224856303892789 ], [ -95.019109934101877, 30.224911304202919 ], [ -95.019065934823871, 30.224966304106633 ], [ -95.019027934189111, 30.224982303730091 ], [ -95.018982934569536, 30.224988303986819 ], [ -95.018786934637944, 30.224949304448945 ], [ -95.018710934324133, 30.224944303889803 ], [ -95.01867293460414, 30.22497130441678 ], [ -95.018653934456083, 30.225015304211919 ], [ -95.018672933853026, 30.225087303842191 ], [ -95.018710934673919, 30.225164304435229 ], [ -95.018767933983753, 30.225224303939097 ], [ -95.018856934372252, 30.225285303935667 ], [ -95.018919934224513, 30.225312304601808 ], [ -95.019020933885542, 30.225312304627938 ], [ -95.019109934474983, 30.225329304177357 ], [ -95.019343934937325, 30.225439303966013 ], [ -95.019368934766632, 30.225444304392131 ], [ -95.019400934287304, 30.22548330447713 ], [ -95.019508934935573, 30.225730304548819 ], [ -95.019615935001411, 30.226077304459665 ], [ -95.019583934135014, 30.226099304350385 ], [ -95.019552934313268, 30.22614330417419 ], [ -95.019482934805467, 30.226341304381549 ], [ -95.019482934375347, 30.226390304158418 ], [ -95.01936293405322, 30.226588304342098 ], [ -95.019324934229942, 30.226725304765338 ], [ -95.019298934718194, 30.226780304415758 ], [ -95.019267934565065, 30.226824304161262 ], [ -95.019020934902528, 30.2270393050377 ], [ -95.018943934729634, 30.227231304995939 ], [ -95.018918934352854, 30.227358304317605 ], [ -95.018937934685766, 30.227479304525506 ], [ -95.018948934477606, 30.227500304899145 ], [ -95.018981934395313, 30.227561304951127 ], [ -95.019178934242603, 30.227677305102834 ], [ -95.019216934300758, 30.227710304272204 ], [ -95.019241934439592, 30.22777630461913 ], [ -95.019235935075258, 30.227842304477807 ], [ -95.019203934995147, 30.227880304797253 ], [ -95.019146934071742, 30.227919305162967 ], [ -95.019083934354853, 30.227935304828627 ], [ -95.018943934202937, 30.227902304994121 ], [ -95.018836934227849, 30.227864304746358 ], [ -95.018519934002896, 30.227715304973174 ], [ -95.018399934818859, 30.227671304805853 ], [ -95.018240934478953, 30.227671304786721 ], [ -95.018101934446122, 30.227682304997767 ], [ -95.018000934475339, 30.227720304966756 ], [ -95.017880933997162, 30.227808305036355 ], [ -95.017759934401724, 30.227869304672161 ], [ -95.017708934688883, 30.227924304648635 ], [ -95.01760193372364, 30.228012304497359 ], [ -95.017506933780325, 30.228050304683133 ], [ -95.017322934571609, 30.228061305182102 ], [ -95.017252933741133, 30.228045305287253 ], [ -95.017069934342487, 30.227973305165822 ], [ -95.017012934245898, 30.227979304486301 ], [ -95.016961934455352, 30.228000304812479 ], [ -95.016917934139386, 30.228033304760888 ], [ -95.016892933630814, 30.228083305101581 ], [ -95.016892933969729, 30.228116305302105 ], [ -95.016929934134524, 30.228171304553996 ], [ -95.017088934438192, 30.228325305161903 ], [ -95.017271933641808, 30.228468305121449 ], [ -95.017328934513486, 30.228495304986282 ], [ -95.017525934175083, 30.228556304502749 ], [ -95.017613933843137, 30.228606305294459 ], [ -95.017664933857574, 30.228666304585253 ], [ -95.017702933774416, 30.22874930492328 ], [ -95.017721934263349, 30.228825304954388 ], [ -95.017708934026473, 30.22888630482305 ], [ -95.017613934703689, 30.229122305232575 ], [ -95.017664934637452, 30.229304305199697 ], [ -95.017702934085534, 30.229392305026927 ], [ -95.017720934771219, 30.229760305359815 ], [ -95.017758934501529, 30.229925305522581 ], [ -95.017828934620098, 30.230052305682872 ], [ -95.01791793453323, 30.230151304832674 ], [ -95.017967934712374, 30.230189304955779 ], [ -95.018024934311953, 30.230211304904184 ], [ -95.018138934490068, 30.230266305706849 ], [ -95.0182339344409, 30.230327305498069 ], [ -95.018309934164307, 30.230398305566553 ], [ -95.018385934274832, 30.230530305451424 ], [ -95.018423934806464, 30.230618305029346 ], [ -95.018486934207303, 30.230871305360363 ], [ -95.018568934139722, 30.231020305283241 ], [ -95.018575934936109, 30.231080305371549 ], [ -95.018562934014142, 30.231190305842652 ], [ -95.018530934735537, 30.231284305411297 ], [ -95.018454934322179, 30.231438305893512 ], [ -95.01841093449552, 30.231570305806688 ], [ -95.018397934960078, 30.231712305424164 ], [ -95.018492934877955, 30.23193230594979 ], [ -95.01860093504294, 30.232075306042869 ], [ -95.018916934324068, 30.232356305579838 ], [ -95.018980935042933, 30.232433305572233 ], [ -95.019043935243999, 30.232537305326119 ], [ -95.019068935022432, 30.232598306003446 ], [ -95.019081935004891, 30.232680305659784 ], [ -95.01907493423964, 30.232768305630344 ], [ -95.019030934639545, 30.232922305739447 ], [ -95.019024934829744, 30.233010305511574 ], [ -95.019036935125982, 30.233148305634163 ], [ -95.019055934565088, 30.233214306204886 ], [ -95.019195934988375, 30.233368305987934 ], [ -95.019270935266846, 30.23346730614038 ], [ -95.019353934653395, 30.233621305513473 ], [ -95.019365934941959, 30.233692306197682 ], [ -95.019359935308728, 30.233758305895687 ], [ -95.019308934425979, 30.233907306203239 ], [ -95.019308934626068, 30.233984306407887 ], [ -95.019353935089157, 30.234094305855898 ], [ -95.019397935357091, 30.234127306208077 ], [ -95.019460934608887, 30.234154306335491 ], [ -95.019568935366664, 30.234099305852165 ], [ -95.019669934591704, 30.23402830634312 ], [ -95.019910934864924, 30.233747305649967 ], [ -95.019973934640447, 30.233698305453995 ], [ -95.020043935139697, 30.23367030545473 ], [ -95.020119935253746, 30.233659305495031 ], [ -95.02018993469045, 30.2336703059778 ], [ -95.020258935336003, 30.233720305466679 ], [ -95.02030393463329, 30.233781305827996 ], [ -95.02034093500852, 30.234143306318188 ], [ -95.020404934930454, 30.234231306412635 ], [ -95.020473934727875, 30.234308306206692 ], [ -95.020600935418798, 30.234391305865152 ], [ -95.020720935019739, 30.234407305855296 ], [ -95.020752935700315, 30.234380306179023 ], [ -95.02080393479001, 30.234259305906207 ], [ -95.020822934826526, 30.234243305600046 ], [ -95.020853935081973, 30.234232305658001 ], [ -95.020898935737819, 30.234237305637127 ], [ -95.020929935067784, 30.234254306198391 ], [ -95.021018935595478, 30.234419305774573 ], [ -95.021062935015053, 30.234584305774053 ], [ -95.021163935848762, 30.234749306046332 ], [ -95.021265935553757, 30.234831306230422 ], [ -95.021398935565216, 30.234996305997253 ], [ -95.021448935735989, 30.235144306607264 ], [ -95.021258935207243, 30.235221306165244 ], [ -95.021227934934146, 30.235260305833748 ], [ -95.021214934939422, 30.235304306228645 ], [ -95.021239935363326, 30.235364306307929 ], [ -95.02127793579443, 30.23541430611245 ], [ -95.02139793587331, 30.23548530644333 ], [ -95.021442935598614, 30.235546306347512 ], [ -95.021429935432494, 30.235623305889824 ], [ -95.021296935637579, 30.235788306654285 ], [ -95.021271935109382, 30.235837306648907 ], [ -95.021264935062391, 30.235881306534608 ], [ -95.021277935499185, 30.235920306747751 ], [ -95.021435935391594, 30.236151305976872 ], [ -95.021448935107472, 30.23621130608355 ], [ -95.02144893563154, 30.236277306163494 ], [ -95.021277935533689, 30.236563306014435 ], [ -95.021194935465644, 30.236772306679857 ], [ -95.021144935724465, 30.236849306706471 ], [ -95.02117593539738, 30.236953306259945 ], [ -95.021220935135872, 30.237009306673873 ], [ -95.021422935453586, 30.2371573066543 ], [ -95.02163193526458, 30.237234306891605 ], [ -95.02198693526995, 30.237322306138843 ], [ -95.022169936207135, 30.237388306366356 ], [ -95.022277935415204, 30.237454306420073 ], [ -95.02232193580933, 30.237493306195823 ], [ -95.022359936183648, 30.237542306429027 ], [ -95.022397936283767, 30.237636306728572 ], [ -95.022378935624928, 30.237707306329188 ], [ -95.022239936150228, 30.237844307081645 ], [ -95.022201936013118, 30.237938306838672 ], [ -95.02220793629094, 30.237998306710001 ], [ -95.022270936212266, 30.238070306388263 ], [ -95.022327935543117, 30.238114306981604 ], [ -95.022397935866096, 30.238147307124521 ], [ -95.022479936103963, 30.238169307009656 ], [ -95.022536935989351, 30.238175307121075 ], [ -95.022593936220474, 30.23816930713852 ], [ -95.022650936405057, 30.23815330631199 ], [ -95.022707936465054, 30.238114306283126 ], [ -95.022872936231508, 30.237971306298171 ], [ -95.022923936268228, 30.237949306344266 ], [ -95.022986936274805, 30.237949307005916 ], [ -95.023049936145952, 30.237971306726582 ], [ -95.023106935758818, 30.2380153069921 ], [ -95.023144935989237, 30.238065307053514 ], [ -95.023233936571046, 30.238241306494846 ], [ -95.023296936092265, 30.238290306478664 ], [ -95.023341935838971, 30.238312306936496 ], [ -95.023480935989951, 30.238345306351036 ], [ -95.023518935655986, 30.238367306699459 ], [ -95.02372793667881, 30.238565307091271 ], [ -95.023778935764838, 30.23858730675726 ], [ -95.023806935998138, 30.238592306382948 ], [ -95.023841936686807, 30.238598307026379 ], [ -95.024069936673499, 30.238554306686037 ], [ -95.024139936114395, 30.238560306379686 ], [ -95.024284936731348, 30.238642306494484 ], [ -95.02433593600044, 30.238692306416667 ], [ -95.02438593602858, 30.238769306982146 ], [ -95.024474936544749, 30.238983306739136 ], [ -95.024480936386084, 30.239198307236613 ], [ -95.024506936140995, 30.239269307134816 ], [ -95.024556936021085, 30.239335306712345 ], [ -95.024639936725166, 30.239385307244611 ], [ -95.024753936516106, 30.239423306757523 ], [ -95.024797936831064, 30.239423307002028 ], [ -95.024829936166327, 30.239412306749159 ], [ -95.024860936270372, 30.239379306803507 ], [ -95.024892936113659, 30.239269306683749 ], [ -95.024955936368087, 30.239170306537829 ], [ -95.024987936993725, 30.239154306786027 ], [ -95.025044936125255, 30.239165307096901 ], [ -95.025107936676761, 30.239225307089573 ], [ -95.025227936598938, 30.239429307174479 ], [ -95.025297936967277, 30.239478307026982 ], [ -95.025341936593662, 30.239500307038799 ], [ -95.025449936883916, 30.239533307154904 ], [ -95.025500936454833, 30.239566307033513 ], [ -95.025550936387191, 30.239621307132754 ], [ -95.025582936497003, 30.239693307077925 ], [ -95.025582936568213, 30.239753307387474 ], [ -95.02543693646308, 30.239935306812644 ], [ -95.025398937133872, 30.239995307325689 ], [ -95.025398936424082, 30.240089306725501 ], [ -95.02542493702579, 30.240199306838324 ], [ -95.02545593716161, 30.240265307482058 ], [ -95.025512936654934, 30.240320307495079 ], [ -95.025620936894867, 30.240386307367501 ], [ -95.02570893637477, 30.240413306669737 ], [ -95.025987936844444, 30.240468307171049 ], [ -95.026095937335839, 30.240501306724802 ], [ -95.026190937061372, 30.240545306973104 ], [ -95.026278937354746, 30.240600307247473 ], [ -95.026361937301786, 30.240666306986473 ], [ -95.02652593677135, 30.24083730722932 ], [ -95.026576937569288, 30.240859306716093 ], [ -95.026728936845771, 30.24087030718502 ], [ -95.026798937170156, 30.240842307275155 ], [ -95.026905937207118, 30.24075430672854 ], [ -95.026994937276498, 30.240666307497783 ], [ -95.027064936989433, 30.240634307117446 ], [ -95.027127936712517, 30.240623306715325 ], [ -95.02723593773257, 30.240639306709529 ], [ -95.027260937171903, 30.24066630725283 ], [ -95.027311937008207, 30.240765307131191 ], [ -95.027311937034327, 30.240936307162617 ], [ -95.027336937593631, 30.240980307261552 ], [ -95.027387937430944, 30.241013307276155 ], [ -95.027501937239549, 30.24103530669586 ], [ -95.027602937464408, 30.241040307457897 ], [ -95.027767937707111, 30.240975307006892 ], [ -95.027811937375802, 30.240980307526225 ], [ -95.02808393728553, 30.24116730697185 ], [ -95.028267938044877, 30.241343306870302 ], [ -95.028362937331991, 30.24145930757037 ], [ -95.028393937685379, 30.241525307440952 ], [ -95.028412937074009, 30.241601307015213 ], [ -95.028419937348261, 30.241728306869867 ], [ -95.028406937239453, 30.241843307030468 ], [ -95.028311937432463, 30.242179307601912 ], [ -95.028330937253514, 30.242256307255772 ], [ -95.028368938029246, 30.242327307292641 ], [ -95.028406937250423, 30.24235530750915 ], [ -95.028551937219078, 30.242426307170522 ], [ -95.028589937354909, 30.242470307708682 ], [ -95.02860893765174, 30.2425203070122 ], [ -95.028615937832782, 30.242591307830143 ], [ -95.028475938112109, 30.24291030752876 ], [ -95.028431938083514, 30.243053307975398 ], [ -95.028431937976094, 30.243108307753232 ], [ -95.028450938061923, 30.24318530735955 ], [ -95.02848193799322, 30.243229307220783 ], [ -95.028519937583113, 30.243257307394508 ], [ -95.028735937461917, 30.243295307960015 ], [ -95.028785937978881, 30.243312307333444 ], [ -95.028874937984824, 30.24338930714547 ], [ -95.028937937373755, 30.243477307237075 ], [ -95.028988938074264, 30.24361430744375 ], [ -95.029020937994702, 30.24377430774944 ], [ -95.029013937809481, 30.243862307604246 ], [ -95.028925938229534, 30.2442463081731 ], [ -95.028905938094113, 30.24438930795791 ], [ -95.028924938308521, 30.244686308197441 ], [ -95.028918937778101, 30.244989308055388 ], [ -95.028975937836989, 30.245121307794797 ], [ -95.029026938260699, 30.245176307861865 ], [ -95.029216938317489, 30.245258307713637 ], [ -95.029393938157725, 30.245401307707041 ], [ -95.029431937781808, 30.245456307834512 ], [ -95.02945093781392, 30.245511308204925 ], [ -95.029450937882572, 30.24562730807903 ], [ -95.029418938069156, 30.245786308137856 ], [ -95.029336937771006, 30.246094308260613 ], [ -95.029367938539934, 30.246226308261111 ], [ -95.029405938542737, 30.246292308316814 ], [ -95.029456937785298, 30.246331307815002 ], [ -95.029500938002258, 30.246342308174601 ], [ -95.029576938057545, 30.2463313081027 ], [ -95.029766938071134, 30.246254308469211 ], [ -95.029811938140909, 30.246243308549325 ], [ -95.029874937887314, 30.246248308016401 ], [ -95.029937938028425, 30.246270307859536 ], [ -95.030039938404599, 30.246336308270319 ], [ -95.030121938293377, 30.246408307882295 ], [ -95.030210938359943, 30.246534308523884 ], [ -95.030286938290942, 30.2466943084093 ], [ -95.030266938399791, 30.246892307872656 ], [ -95.030266938060677, 30.24700230808584 ], [ -95.030311938050033, 30.247172308173933 ], [ -95.030406938433046, 30.247287308673993 ], [ -95.030488938188356, 30.247343308593845 ], [ -95.030722938296506, 30.247442308343498 ], [ -95.03085593796898, 30.247530308269802 ], [ -95.030957938544873, 30.24762330813099 ], [ -95.03122993888158, 30.24797530880322 ], [ -95.031368939086676, 30.248178308627125 ], [ -95.031419938522788, 30.248239308053147 ], [ -95.031507939078651, 30.248310308363862 ], [ -95.031786938874987, 30.24853030825517 ], [ -95.031894939217736, 30.248596308807748 ], [ -95.032337939145791, 30.248772309000127 ], [ -95.03261693918202, 30.248943308818909 ], [ -95.032698939403303, 30.249014308406107 ], [ -95.033040939442074, 30.249388308281794 ], [ -95.03311493938547, 30.24951630897916 ], [ -95.033217939310262, 30.249696308496752 ], [ -95.033255938817632, 30.249806308682569 ], [ -95.033268939241893, 30.249911308573004 ], [ -95.03325093880342, 30.250004308671659 ], [ -95.033092939182168, 30.251275309265953 ], [ -95.033053938809942, 30.252435309127172 ], [ -95.033256939228181, 30.253078309170903 ], [ -95.033743939051632, 30.253854309942902 ], [ -95.034598939821748, 30.254558309213714 ], [ -95.034858940250913, 30.254833310006731 ], [ -95.034899939774832, 30.25493130930619 ], [ -95.03497894009881, 30.255119310148 ], [ -95.035218940456247, 30.255608309512365 ], [ -95.035301939798828, 30.256092309693312 ], [ -95.035263940530371, 30.2564273102751 ], [ -95.035183940119822, 30.256894310104148 ], [ -95.035174939621868, 30.25694431037132 ], [ -95.035231939539599, 30.257329310513029 ], [ -95.035326940148735, 30.25761031007076 ], [ -95.035477940096513, 30.257890309907527 ], [ -95.03562994053172, 30.258099310568202 ], [ -95.035756940659056, 30.258341310276904 ], [ -95.035864939749374, 30.258489310822238 ], [ -95.036003940479148, 30.258588310605624 ], [ -95.036250940786104, 30.258737310890492 ], [ -95.036345940491188, 30.258819310132431 ], [ -95.036408940372041, 30.258896310342699 ], [ -95.036674940039063, 30.259159310895143 ], [ -95.036681940639653, 30.259166310711201 ], [ -95.036972940252696, 30.259391310839963 ], [ -95.037156940848917, 30.259589310824818 ], [ -95.037479940662848, 30.260040310958257 ], [ -95.03787794141121, 30.260700310541555 ], [ -95.037896941072063, 30.260805310707187 ], [ -95.037877940575157, 30.260909311121885 ], [ -95.037808940927022, 30.26103631057703 ], [ -95.03768194058442, 30.261212310910068 ], [ -95.037624940579988, 30.261333310904938 ], [ -95.037611941183172, 30.26143731092812 ], [ -95.037630940980506, 30.261547310540255 ], [ -95.037712940462569, 30.261701310950659 ], [ -95.037738941401756, 30.261805311223281 ], [ -95.037750940752531, 30.262102311452519 ], [ -95.037814941405898, 30.262520310751512 ], [ -95.037839940818344, 30.262614311511967 ], [ -95.037928940762995, 30.262685310816977 ], [ -95.038042940804303, 30.262707311164096 ], [ -95.038124941062762, 30.262696311041314 ], [ -95.03819494136286, 30.262630311610526 ], [ -95.03828294071198, 30.262515311240413 ], [ -95.038358941283391, 30.262449311329235 ], [ -95.038453941489621, 30.262438310727987 ], [ -95.038498941480881, 30.262449311071894 ], [ -95.038574941466621, 30.262509311313522 ], [ -95.038605940873182, 30.262548311435779 ], [ -95.038599940749705, 30.26265831106279 ], [ -95.038567941353506, 30.262729311424554 ], [ -95.038365940647324, 30.262938311564341 ], [ -95.038301940770523, 30.263037311076555 ], [ -95.038276941553164, 30.263103311166919 ], [ -95.038314941111992, 30.263257311001919 ], [ -95.038421941428524, 30.263532311431515 ], [ -95.03843494084019, 30.263620311540777 ], [ -95.03842894140314, 30.263664311276401 ], [ -95.038409941331054, 30.263703310953474 ], [ -95.038301940909037, 30.263697311603803 ], [ -95.038130941308012, 30.263587311307933 ], [ -95.038048940678991, 30.263570311385941 ], [ -95.037997940666614, 30.263581310959943 ], [ -95.037959940855572, 30.263614311735097 ], [ -95.037896941474983, 30.263702311773077 ], [ -95.0379159410314, 30.263790311553116 ], [ -95.037984940592381, 30.263845311582816 ], [ -95.038073941207941, 30.263873311499623 ], [ -95.038130940830612, 30.26390631169037 ], [ -95.038130940994222, 30.263988311710694 ], [ -95.038092941109269, 30.264021311615991 ], [ -95.038029941469148, 30.264049311335043 ], [ -95.037877941206816, 30.264076311028145 ], [ -95.037731940553272, 30.264159311160892 ], [ -95.037680941005036, 30.264203311919356 ], [ -95.037610941434522, 30.264296311986907 ], [ -95.037566940955813, 30.264439311267257 ], [ -95.037560940598127, 30.264549311689503 ], [ -95.037617940810605, 30.264643311617213 ], [ -95.037686940675343, 30.264720311423172 ], [ -95.03777594138073, 30.264769311991678 ], [ -95.037796940538641, 30.264777312044806 ], [ -95.037845940615156, 30.26479731170177 ], [ -95.037933941365708, 30.264802311432351 ], [ -95.038187941073758, 30.264780311449471 ], [ -95.038383941017713, 30.264808311372516 ], [ -95.038446940832515, 30.26484131189266 ], [ -95.038573941352638, 30.264956311199704 ], [ -95.038630941802595, 30.265094311735911 ], [ -95.038624941710069, 30.265176312118985 ], [ -95.038586941376153, 30.265237311269107 ], [ -95.03850394136586, 30.265319311335777 ], [ -95.038402941017168, 30.265385311540097 ], [ -95.038263940913453, 30.265446311838968 ], [ -95.037705941060324, 30.265627311856758 ], [ -95.037597941245153, 30.265698311663435 ], [ -95.037490941159788, 30.265748311441445 ], [ -95.037376941007381, 30.265863311620215 ], [ -95.037186940656227, 30.266100311970003 ], [ -95.037072940569473, 30.266298311921162 ], [ -95.037033941143719, 30.26644631221415 ], [ -95.037033941113648, 30.266595312033537 ], [ -95.037141941403405, 30.26681531183554 ], [ -95.037166940689872, 30.266892312322074 ], [ -95.03716094097571, 30.266946311701613 ], [ -95.037135941077295, 30.266985312445552 ], [ -95.037078940560022, 30.266996312054989 ], [ -95.036995940820859, 30.266985312371435 ], [ -95.036818941389754, 30.266902311910485 ], [ -95.036742940716309, 30.266891312236773 ], [ -95.036672941201815, 30.266899311650242 ], [ -95.03664794135058, 30.266902311763015 ], [ -95.036584940704074, 30.266919311891836 ], [ -95.036520940579649, 30.266979312467392 ], [ -95.036482941193626, 30.267067311923078 ], [ -95.036431940443293, 30.267353311730442 ], [ -95.036450940834101, 30.26741931198957 ], [ -95.036526940921107, 30.267485311771264 ], [ -95.036723941181549, 30.267557311938919 ], [ -95.036735940872333, 30.267612312111332 ], [ -95.036697940907203, 30.267733311927696 ], [ -95.036640941265787, 30.267804312579639 ], [ -95.036571940784924, 30.267854312494453 ], [ -95.036482940461781, 30.267870311885719 ], [ -95.036406940767932, 30.267865312466373 ], [ -95.036311940688591, 30.267810311976898 ], [ -95.036254940893514, 30.267755312390221 ], [ -95.036216940973048, 30.267689312543105 ], [ -95.03619194052051, 30.267606312368788 ], [ -95.036184940339766, 30.267447312594022 ], [ -95.036159940845621, 30.267359312104066 ], [ -95.036108940551273, 30.267282312468986 ], [ -95.0360209411228, 30.267243312135523 ], [ -95.035937940504468, 30.267221311960874 ], [ -95.0358369409646, 30.267232312131078 ], [ -95.035697940838872, 30.267293312560355 ], [ -95.035665940581808, 30.267342312531785 ], [ -95.035665940966155, 30.267408312349954 ], [ -95.035690940170213, 30.267452311860925 ], [ -95.035855940439006, 30.267612312226525 ], [ -95.036013940257376, 30.267837312738848 ], [ -95.036077940962528, 30.268007312049342 ], [ -95.036077940954328, 30.268090312031649 ], [ -95.036032940316076, 30.268145312536753 ], [ -95.035988940870325, 30.26817231269419 ], [ -95.035944940543814, 30.268167312536356 ], [ -95.035880941196297, 30.268134312199436 ], [ -95.035842941120023, 30.268079312063644 ], [ -95.035671940363741, 30.267947312040651 ], [ -95.035532940783625, 30.267958312677592 ], [ -95.035449940500712, 30.268029311983128 ], [ -95.03537394055806, 30.268040312117471 ], [ -95.035240940380845, 30.267980312032073 ], [ -95.035183940220918, 30.26799631209721 ], [ -95.035152940755083, 30.268106311994529 ], [ -95.035139940772439, 30.268200312707645 ], [ -95.035152940497525, 30.268282312638512 ], [ -95.035177940733092, 30.268326312258438 ], [ -95.035228940625416, 30.268332312091999 ], [ -95.035323940227727, 30.26830431242885 ], [ -95.035513940161621, 30.268299312636557 ], [ -95.035766940751472, 30.268370312568525 ], [ -95.035956940502444, 30.268480312387105 ], [ -95.036254941125094, 30.268486312041755 ], [ -95.036273940648798, 30.268667312488596 ], [ -95.036228940584266, 30.268827312636926 ], [ -95.036007940626789, 30.269267312813714 ], [ -95.035931941073528, 30.269371312976229 ], [ -95.035886940598047, 30.269525312587337 ], [ -95.035861941004995, 30.269690313085288 ], [ -95.035259940184957, 30.270493312910798 ], [ -95.035218940626976, 30.27057231331009 ], [ -95.035138940541358, 30.270729313281386 ], [ -95.035088940920843, 30.270867313324143 ], [ -95.034954940461887, 30.271515312754346 ], [ -95.034904940614155, 30.272054312969612 ], [ -95.034511940694188, 30.273165313126114 ], [ -95.034434940280818, 30.27359431338483 ], [ -95.034352940319735, 30.274375313917467 ], [ -95.034301940324099, 30.274534313375309 ], [ -95.03422594013189, 30.274633313975965 ], [ -95.034136941023078, 30.274710314010957 ], [ -95.03394694089539, 30.274842313842701 ], [ -95.033667940967561, 30.275040314241835 ], [ -95.033490940956142, 30.275188313673109 ], [ -95.03336394020603, 30.275315313728633 ], [ -95.032571940611703, 30.276343313888127 ], [ -95.032520940540195, 30.276436313942011 ], [ -95.032489940365949, 30.276530313767157 ], [ -95.032482940043835, 30.27660131417154 ], [ -95.032501940216449, 30.276706314459719 ], [ -95.032546939946187, 30.276815314524189 ], [ -95.032596940315074, 30.276898314024709 ], [ -95.032843940313057, 30.277145314338121 ], [ -95.033233940661631, 30.277458314600416 ], [ -95.0336929402268, 30.277827314448306 ], [ -95.033926940364665, 30.278102314139868 ], [ -95.03409794092822, 30.278322314408026 ], [ -95.034256940981123, 30.278553314675875 ], [ -95.034395940617458, 30.278779314961671 ], [ -95.034496941292119, 30.278966315010184 ], [ -95.034604941021811, 30.279241315130928 ], [ -95.034636941400024, 30.279373314766914 ], [ -95.03464294059718, 30.279444315154542 ], [ -95.03462994144428, 30.279499314880514 ], [ -95.034574941410426, 30.27963131480201 ], [ -95.034528940680474, 30.279741314753728 ], [ -95.034521941392498, 30.279802314555386 ], [ -95.034629941231984, 30.280280315003285 ], [ -95.034629940970575, 30.28043931461567 ], [ -95.034585940690548, 30.280637314640952 ], [ -95.034508941335915, 30.280830314945216 ], [ -95.034426941079701, 30.280962315051763 ], [ -95.034280941313639, 30.281110314641403 ], [ -95.034040940975558, 30.281308314955567 ], [ -95.034001941186361, 30.281334315418018 ], [ -95.033710940968831, 30.281539314961197 ], [ -95.033463941128062, 30.281687315482198 ], [ -95.032728940703848, 30.282083314918509 ], [ -95.032512940166299, 30.282215315079995 ], [ -95.032227940026175, 30.282435315831538 ], [ -95.032056940182173, 30.282616315147507 ], [ -95.031815940220653, 30.282935315559556 ], [ -95.0315439405191, 30.283227315870082 ], [ -95.031467940376416, 30.283331316009431 ], [ -95.031372939947985, 30.283513316056816 ], [ -95.031334940740621, 30.283628315348885 ], [ -95.031105940483243, 30.284612315768062 ], [ -95.031029940069658, 30.28489831556395 ], [ -95.030890939887314, 30.285277315688983 ], [ -95.030794940164952, 30.285464315891904 ], [ -95.030712940264422, 30.285569315751744 ], [ -95.030592940574593, 30.285690315960956 ], [ -95.030539940308259, 30.28572831607682 ], [ -95.030414940648342, 30.285822316130211 ], [ -95.030269940066091, 30.285910316588499 ], [ -95.030091939651257, 30.285987315797435 ], [ -95.029831940266547, 30.286069316374089 ], [ -95.029432940123897, 30.286146315905324 ], [ -95.029350939412723, 30.286173316654605 ], [ -95.02931893954937, 30.28620631585013 ], [ -95.029293940105333, 30.28627231664354 ], [ -95.029248940124816, 30.286327316613402 ], [ -95.029191939358867, 30.286371315979661 ], [ -95.029109939923842, 30.286421316175886 ], [ -95.028950939445735, 30.286459316603143 ], [ -95.028868939637135, 30.286503316291391 ], [ -95.028840940150005, 30.286560316484245 ], [ -95.029110940026882, 30.286763316159288 ], [ -95.029719940158373, 30.287266316867768 ], [ -95.030263939977928, 30.287715316608587 ], [ -95.030986940212813, 30.288258316964949 ], [ -95.031852940827022, 30.288954316492401 ], [ -95.03239394066776, 30.289338316689509 ], [ -95.032430940550768, 30.289364316688985 ], [ -95.032630941413217, 30.289468316398221 ], [ -95.032813941370719, 30.289538316843377 ], [ -95.033042941439646, 30.289590316758296 ], [ -95.033463941478232, 30.289662317167263 ], [ -95.033592941429703, 30.28968431685081 ], [ -95.033980941047261, 30.289750316603126 ], [ -95.034110941114349, 30.289773316401032 ], [ -95.034621941752533, 30.289866316624991 ], [ -95.036157942104666, 30.290145316991172 ], [ -95.036669941521993, 30.290238317050481 ], [ -95.038469942056977, 30.29057331641145 ], [ -95.038709942208612, 30.290618316425565 ], [ -95.041756942843861, 30.291148317030135 ], [ -95.042853943269549, 30.291344316581391 ], [ -95.043089943683938, 30.291377316907045 ], [ -95.043333943827761, 30.291385316690224 ], [ -95.043452943296785, 30.291377316560446 ], [ -95.043644943906173, 30.291350316570366 ], [ -95.043888943568035, 30.291306317117368 ], [ -95.044832944431917, 30.29114131655562 ], [ -95.045107944549628, 30.2911273168571 ], [ -95.045542944733199, 30.291132316508037 ], [ -95.045705944841771, 30.291146316475675 ], [ -95.04580294448111, 30.291178316839325 ], [ -95.045855944042998, 30.291209316270397 ], [ -95.045884944596864, 30.291233316713466 ], [ -95.045950944065353, 30.291289316283486 ], [ -95.046031944032066, 30.29137131698792 ], [ -95.046130943983542, 30.291507317119276 ], [ -95.046203944923874, 30.29164931709342 ], [ -95.04621594485765, 30.29172431664373 ], [ -95.046247944374727, 30.2919243166189 ], [ -95.046369945016508, 30.291909316782224 ], [ -95.046629944942808, 30.291908316629808 ], [ -95.047779944643395, 30.291904316906827 ], [ -95.048163944519118, 30.291904316993183 ], [ -95.048462945068962, 30.291902316471283 ], [ -95.049360945461274, 30.291897316800267 ], [ -95.049660944888629, 30.29189631679067 ], [ -95.049859945373527, 30.291896316935169 ], [ -95.05045694530493, 30.291897316513872 ], [ -95.050656945832429, 30.291898316871045 ], [ -95.051212945753548, 30.291898316913308 ], [ -95.052879946119816, 30.29189931646544 ], [ -95.053436946837607, 30.29190031684811 ], [ -95.054704946808883, 30.291892316502643 ], [ -95.05780194759825, 30.2918753161787 ], [ -95.058214947529763, 30.291880316064457 ], [ -95.058510947813659, 30.291874316293114 ], [ -95.059779947610465, 30.291849316517379 ], [ -95.059829947787478, 30.291848316727538 ], [ -95.060048948315384, 30.291847316320048 ], [ -95.060858948711171, 30.291844316382885 ], [ -95.061129947934859, 30.291843316554495 ], [ -95.061873948899517, 30.291831316367269 ], [ -95.062305949143422, 30.291833316564119 ], [ -95.062506948183824, 30.291835315932744 ], [ -95.065836949281262, 30.291825316504077 ], [ -95.067013949914752, 30.291822315787119 ], [ -95.067836949680924, 30.291824316100669 ], [ -95.068006949855814, 30.291825315798089 ], [ -95.070306950705103, 30.291801315707509 ], [ -95.071130950497093, 30.291793315608999 ], [ -95.071539951270708, 30.291789315568121 ], [ -95.072769950879746, 30.291780316086637 ], [ -95.073179951658432, 30.291777315898653 ], [ -95.073868951876236, 30.291771315426697 ], [ -95.074258952188771, 30.291768315733712 ], [ -95.075757952163187, 30.291774315693164 ], [ -95.07593695231381, 30.291771315566802 ], [ -95.076626952018245, 30.291761315501223 ], [ -95.07868895325376, 30.291739315288051 ], [ -95.07877595261381, 30.291739315948398 ], [ -95.079942953159133, 30.291719315815794 ], [ -95.08028295326541, 30.29171431574699 ], [ -95.081492953175768, 30.291712315750722 ], [ -95.083006954447114, 30.291710315498193 ], [ -95.083266953765559, 30.291710315112269 ], [ -95.084644953929228, 30.291690315543129 ], [ -95.084750953909861, 30.291689315777926 ], [ -95.084877954506467, 30.291689315258314 ], [ -95.08694195511589, 30.291700315078046 ], [ -95.086934954847877, 30.291414315105076 ], [ -95.086915955120546, 30.29055831540196 ], [ -95.086909954382762, 30.290273315470571 ], [ -95.08690695454672, 30.290207315005865 ], [ -95.086897954846776, 30.290011314577612 ], [ -95.086895954366398, 30.28994631519479 ], [ -95.086887954752015, 30.289767314701688 ], [ -95.086864954427796, 30.289230315057491 ], [ -95.086857955329037, 30.289052314724749 ], [ -95.086844955224208, 30.288910314834528 ], [ -95.086808954371449, 30.288486314761098 ], [ -95.086796954804612, 30.288345315050314 ], [ -95.08677695460787, 30.288133314633146 ], [ -95.086767954863987, 30.288046314932323 ], [ -95.086745954820387, 30.287811314994279 ], [ -95.086685955182872, 30.28715131429896 ], [ -95.086665954172844, 30.286930314239154 ], [ -95.086656954778974, 30.286853314008191 ], [ -95.08664595454951, 30.286763314668747 ], [ -95.086612955121225, 30.286493313949002 ], [ -95.086601954876656, 30.286404314631323 ], [ -95.086566954949006, 30.286120314707933 ], [ -95.086552954083686, 30.286001314468351 ], [ -95.086424955056003, 30.285276314089529 ], [ -95.086388954315268, 30.285072313594082 ], [ -95.086369954605317, 30.284997314346221 ], [ -95.086326954725465, 30.284829314185746 ], [ -95.086269953980391, 30.28460431361145 ], [ -95.086152954304964, 30.284139313890357 ], [ -95.085926953827794, 30.283438313462721 ], [ -95.08580395476136, 30.283053313808807 ], [ -95.085753953895619, 30.282892313223083 ], [ -95.085669954156657, 30.282624313620666 ], [ -95.08538595398656, 30.281722313110446 ], [ -95.085323954037193, 30.281495313460553 ], [ -95.08530895387598, 30.281395313483305 ], [ -95.085307953652659, 30.281383313659646 ], [ -95.085306954406036, 30.281332313011436 ], [ -95.085298954039644, 30.280884313009242 ], [ -95.085298954242973, 30.280852313373025 ], [ -95.085298953565982, 30.28075931275502 ], [ -95.085298953663397, 30.280728313159262 ], [ -95.085291953738263, 30.279214313226351 ], [ -95.085288954144659, 30.27846131316506 ], [ -95.085261954158014, 30.276549311919762 ], [ -95.085267954099947, 30.275586312538827 ], [ -95.085254954051464, 30.274676311836629 ], [ -95.085254953254648, 30.274634311603748 ], [ -95.085261953283222, 30.273643312049145 ], [ -95.08526595388102, 30.273163312070949 ], [ -95.085260953272908, 30.273043311620345 ], [ -95.085248953311861, 30.272685311830251 ], [ -95.085248953140152, 30.272657311360124 ], [ -95.085245953306199, 30.272566311784669 ], [ -95.085255953294435, 30.272360311654754 ], [ -95.085249953996836, 30.272145311770476 ], [ -95.085249954128415, 30.272134311234442 ], [ -95.08524395349886, 30.271922311436622 ], [ -95.085224953442804, 30.271753311371892 ], [ -95.085114953128496, 30.27136231157321 ], [ -95.084943953580506, 30.270933311060233 ], [ -95.084788953171753, 30.27054331150903 ], [ -95.084605953467033, 30.269806310669587 ], [ -95.084559953828062, 30.269552310879451 ], [ -95.084526952939811, 30.269282310847622 ], [ -95.084448953252405, 30.268298311107927 ], [ -95.084459953059365, 30.267968310783434 ], [ -95.084489953281377, 30.267544310114733 ], [ -95.084503953193632, 30.26735831044039 ], [ -95.08453595324805, 30.267142310820791 ], [ -95.084588953044019, 30.26679431014384 ], [ -95.084700952936672, 30.266043310498045 ], [ -95.084724953309475, 30.26588231028601 ], [ -95.084940953235517, 30.264471309672263 ], [ -95.085002953318892, 30.26392130948701 ], [ -95.085002953021274, 30.263729310174988 ], [ -95.084983953299613, 30.263575309315655 ], [ -95.084889952773921, 30.263149309688018 ], [ -95.084838953415414, 30.262912309159866 ], [ -95.084749953513722, 30.262607309479918 ], [ -95.084700952837537, 30.262439309247064 ], [ -95.084666953388336, 30.262256309258362 ], [ -95.084712952827772, 30.262257309005435 ], [ -95.08485895312792, 30.262278309779767 ], [ -95.08518795268057, 30.262377309020291 ], [ -95.085314953273411, 30.262394309158541 ], [ -95.085599952883427, 30.262405309871163 ], [ -95.085941953148691, 30.262465309366437 ], [ -95.086144953498334, 30.262482309771706 ], [ -95.086371953531128, 30.262487309872384 ], [ -95.086859953409416, 30.262498309467226 ], [ -95.0870629538679, 30.262492309077292 ], [ -95.087239954053786, 30.262476309723848 ], [ -95.087341953640006, 30.262426309126997 ], [ -95.087442953565713, 30.262355308993271 ], [ -95.08800695367087, 30.261849309034986 ], [ -95.088196953948909, 30.261717309001543 ], [ -95.088386953563855, 30.261601309532185 ], [ -95.088493953790717, 30.261552308970746 ], [ -95.088652953522995, 30.261486309463738 ], [ -95.088842953577711, 30.261425309573067 ], [ -95.089051954581223, 30.26136530888866 ], [ -95.089323953740802, 30.261310308898413 ], [ -95.09076795427076, 30.261057308909859 ], [ -95.09086295411538, 30.261051308806945 ], [ -95.091147954293689, 30.26106230872902 ], [ -95.091186954410276, 30.261069309226965 ], [ -95.091356954924379, 30.26110030872006 ], [ -95.091641954575238, 30.261177309206207 ], [ -95.091850954874772, 30.261260308939789 ], [ -95.091939954872615, 30.261271309041447 ], [ -95.091990955219686, 30.261265309367435 ], [ -95.092040955095285, 30.261238309337884 ], [ -95.092066955156696, 30.261172308535446 ], [ -95.092059954900137, 30.260941309113441 ], [ -95.092078954502682, 30.260842309232739 ], [ -95.092104954875168, 30.260820308910187 ], [ -95.09215495473147, 30.260787308527341 ], [ -95.09226895527425, 30.260781309121807 ], [ -95.092465954579438, 30.260897308902642 ], [ -95.092547955200914, 30.260737308749718 ], [ -95.092617955102639, 30.260704309034381 ], [ -95.09276295483609, 30.26060530843284 ], [ -95.093009954856669, 30.260539309023258 ], [ -95.093098955544036, 30.260429308433416 ], [ -95.093117954758554, 30.260341308976866 ], [ -95.093174955219865, 30.260242308414103 ], [ -95.093224954819334, 30.260193308609857 ], [ -95.093623955114651, 30.259934308295708 ], [ -95.093788955160605, 30.25992330826973 ], [ -95.093851955356598, 30.259907308862491 ], [ -95.094073955493315, 30.259808308190117 ], [ -95.09411195509378, 30.25975330901019 ], [ -95.094111954939862, 30.259703308212849 ], [ -95.094105955366203, 30.25966530823333 ], [ -95.094073955813187, 30.259610308738456 ], [ -95.094048955043618, 30.259533308901734 ], [ -95.094054955202736, 30.259478308574625 ], [ -95.094174955711082, 30.259263308267005 ], [ -95.094149955159537, 30.258675308797677 ], [ -95.094155955681956, 30.258593307946047 ], [ -95.09419395478325, 30.25853830871392 ], [ -95.094396955567092, 30.258405308005504 ], [ -95.094472955423001, 30.258296308595042 ], [ -95.0944789552793, 30.258241308219567 ], [ -95.094434955819366, 30.258180307937888 ], [ -95.094288955226148, 30.258186307970536 ], [ -95.094193955437973, 30.258180307978311 ], [ -95.094117955086489, 30.258120308264253 ], [ -95.094091955048413, 30.258070307893629 ], [ -95.094098955463664, 30.25800430798434 ], [ -95.094421954962911, 30.257614308149783 ], [ -95.094459954936568, 30.257537307697618 ], [ -95.094452955468668, 30.257476308172151 ], [ -95.094453955825472, 30.257465307720071 ], [ -95.094690955270337, 30.257146307962021 ], [ -95.095297955546698, 30.256939308106709 ], [ -95.095457955855323, 30.256641307592908 ], [ -95.095510955391575, 30.256206307579227 ], [ -95.095247955450631, 30.255748307809103 ], [ -95.095195955232697, 30.255037307159245 ], [ -95.094800955690644, 30.254532307455012 ], [ -95.094774955469845, 30.254256307526941 ], [ -95.095012954832455, 30.253683307777475 ], [ -95.095066955402118, 30.253179307365745 ], [ -95.094935955313773, 30.252789306962988 ], [ -95.095333955418866, 30.252033306839831 ], [ -95.095386955515053, 30.251506307323513 ], [ -95.095176955487048, 30.251000306759664 ], [ -95.095310955472499, 30.250212306332386 ], [ -95.095429955030994, 30.249895306726632 ], [ -95.095429955016584, 30.249636306690199 ], [ -95.095476955698231, 30.249453306318763 ], [ -95.095583955459986, 30.249228306707607 ], [ -95.095736955363137, 30.249102305975313 ], [ -95.095889954839691, 30.249006306743905 ], [ -95.096133955142491, 30.248886306022087 ], [ -95.096346954875543, 30.248791306543474 ], [ -95.096501955666724, 30.248707306657042 ], [ -95.096547955643189, 30.24862730614235 ], [ -95.096592955430467, 30.248272306305658 ], [ -95.096592955551785, 30.247875306524897 ], [ -95.096441954955793, 30.247703306029457 ], [ -95.096334955434955, 30.247690306471291 ], [ -95.096226955235451, 30.24777830609246 ], [ -95.096226955254608, 30.248045305826189 ], [ -95.09618195550155, 30.248454305940793 ], [ -95.095662954885213, 30.248408306466079 ], [ -95.095570955629185, 30.248209306535855 ], [ -95.095570955627366, 30.247812305722256 ], [ -95.095311955270745, 30.247421306245979 ], [ -95.095313955293207, 30.247250305759895 ], [ -95.095420955030562, 30.247059306256119 ], [ -95.095618954620278, 30.246930306086558 ], [ -95.09587795559662, 30.246663305501226 ], [ -95.095925955145901, 30.246446305644174 ], [ -95.095986955084769, 30.245961305383034 ], [ -95.095574954756671, 30.245789306100047 ], [ -95.095361954918786, 30.245521305947715 ], [ -95.095363954779558, 30.244899305375331 ], [ -95.095470954817571, 30.244483305283051 ], [ -95.095426955212048, 30.244231305412892 ], [ -95.095166954392653, 30.243955305054829 ], [ -95.09496895499818, 30.243688305759225 ], [ -95.095015955054606, 30.243340305353193 ], [ -95.095229954914771, 30.242677305086193 ], [ -95.095383955194251, 30.24221130456856 ], [ -95.095384954471925, 30.241654305040807 ], [ -95.095537954800335, 30.241467304445774 ], [ -95.095782955069936, 30.241338304966135 ], [ -95.095889954986191, 30.241155304389242 ], [ -95.095432955233917, 30.241043304965192 ], [ -95.095386954438041, 30.240940305174263 ], [ -95.095539955079516, 30.240627304250079 ], [ -95.095937954901515, 30.239999304859644 ], [ -95.095999954602277, 30.239842304219 ], [ -95.095848955276082, 30.239220304816062 ], [ -95.095894954372596, 30.238891304590844 ], [ -95.096200955336258, 30.23872430451976 ], [ -95.096306954406316, 30.238457304609739 ], [ -95.096246954450933, 30.238235304379689 ], [ -95.096354954996627, 30.237972303999474 ], [ -95.096659954962973, 30.237614303820788 ], [ -95.09707395512423, 30.237378303829619 ], [ -95.09742495492867, 30.237261304270472 ], [ -95.097623954870443, 30.237032303403304 ], [ -95.098037954795089, 30.236765304050113 ], [ -95.098142955728591, 30.236835304144083 ], [ -95.09834195564693, 30.236873303999456 ], [ -95.099212955471685, 30.23643130376092 ], [ -95.099670955448715, 30.236425303885142 ], [ -95.099930956129043, 30.236494304021321 ], [ -95.100128955296825, 30.23641830329203 ], [ -95.100236955627366, 30.236166303307719 ], [ -95.10054295601104, 30.235923303459312 ], [ -95.100893956428052, 30.235839303375183 ], [ -95.101198956321852, 30.235890303457825 ], [ -95.101611956287883, 30.235658303552363 ], [ -95.101963956602603, 30.235227303369946 ], [ -95.102270956168567, 30.234659303596686 ], [ -95.10227095616851, 30.23407130319287 ], [ -95.102684956616613, 30.233411303065484 ], [ -95.103189956521803, 30.233233303147717 ], [ -95.103601956796425, 30.233329302732763 ], [ -95.103892956468044, 30.233227303116035 ], [ -95.104166956730523, 30.233330302657667 ], [ -95.104365956747955, 30.233243302501563 ], [ -95.104517957154528, 30.23309930255261 ], [ -95.104518956385661, 30.232800302539111 ], [ -95.104823956861182, 30.232873302355692 ], [ -95.104976956661574, 30.232840302324501 ], [ -95.105174956801818, 30.23280630235465 ], [ -95.105023956362572, 30.232580302365403 ], [ -95.105787956835016, 30.232181302421324 ], [ -95.106000956983593, 30.232090302967656 ], [ -95.106458956739857, 30.232350302921212 ], [ -95.10671895694685, 30.232183302204572 ], [ -95.106765956882597, 30.231729302637049 ], [ -95.106567957301522, 30.231321302516566 ], [ -95.106308956967382, 30.231639302202375 ], [ -95.10610995697624, 30.231647302168255 ], [ -95.10604895696278, 30.231327301973931 ], [ -95.106109956568829, 30.231121302706285 ], [ -95.10630995746321, 30.230851302236001 ], [ -95.106264957478672, 30.230747302288357 ], [ -95.106264956899366, 30.230358301994848 ], [ -95.106355957157419, 30.22997230174915 ], [ -95.106113956888223, 30.229469301974202 ], [ -95.10616095684442, 30.228838301951882 ], [ -95.106369956693058, 30.228871302264938 ], [ -95.106528957098064, 30.228882301760624 ], [ -95.10672495745105, 30.228887302027886 ], [ -95.106882956885855, 30.22892630186098 ], [ -95.107003956707715, 30.228992301932212 ], [ -95.107117956768803, 30.229118301739966 ], [ -95.107269957124643, 30.229211301534075 ], [ -95.107376957408334, 30.229283302084191 ], [ -95.107598957721976, 30.229409302035631 ], [ -95.10764295745895, 30.229459301849367 ], [ -95.107661957046233, 30.229497301998606 ], [ -95.107630957064799, 30.229607302407999 ], [ -95.10759295765304, 30.229690301874509 ], [ -95.107605956984031, 30.229882302208864 ], [ -95.107636957596611, 30.229937301960582 ], [ -95.107757956920224, 30.230020302296975 ], [ -95.108004957584967, 30.230080301784984 ], [ -95.108320958054549, 30.230091302189983 ], [ -95.108434957976073, 30.230118301960001 ], [ -95.108637958144385, 30.230206301839075 ], [ -95.108770958092379, 30.230228302320921 ], [ -95.108966957941604, 30.23021730187347 ], [ -95.109011957397286, 30.230162302082487 ], [ -95.109118958129784, 30.229959301701474 ], [ -95.109162957654036, 30.229937302034653 ], [ -95.109340957434043, 30.229903302059448 ], [ -95.109403958111002, 30.229848301562274 ], [ -95.109453958195957, 30.229634302034142 ], [ -95.109567958319602, 30.229557301791072 ], [ -95.109605957640383, 30.229562301719021 ], [ -95.109719957880444, 30.229639301641406 ], [ -95.109758958330943, 30.229804302208429 ], [ -95.109783957948594, 30.229870301991209 ], [ -95.109922958109124, 30.230123301801331 ], [ -95.109922958086329, 30.230250302219396 ], [ -95.10986695839847, 30.230706301863425 ], [ -95.109878958262939, 30.230772302348033 ], [ -95.10993595826578, 30.230849302209652 ], [ -95.109992958439179, 30.23088230212235 ], [ -95.110125957976024, 30.230915301871541 ], [ -95.110163957810116, 30.230942302050714 ], [ -95.110195958453261, 30.230986302297921 ], [ -95.110233957674609, 30.23109630197672 ], [ -95.11023395802043, 30.231179302425581 ], [ -95.1102469578003, 30.231250302257749 ], [ -95.11027195839452, 30.231311302522798 ], [ -95.110366958024599, 30.231415302286951 ], [ -95.110404958441208, 30.231437302104588 ], [ -95.110411958031207, 30.231481302056196 ], [ -95.110398958600697, 30.231558302036163 ], [ -95.110379958392826, 30.231569302534233 ], [ -95.110227958106705, 30.231630302151501 ], [ -95.109936957597597, 30.23169630221166 ], [ -95.109588958199282, 30.23190530220608 ], [ -95.109550958271271, 30.231971301998719 ], [ -95.109524957916449, 30.232048302592599 ], [ -95.109531958163316, 30.232130302158435 ], [ -95.109541958339051, 30.232167302697608 ], [ -95.109594958306445, 30.232345302261667 ], [ -95.109601958021869, 30.23243830244806 ], [ -95.109588957707786, 30.232537302715141 ], [ -95.109455957620185, 30.232669302349063 ], [ -95.10941795832359, 30.232735303014362 ], [ -95.10937395841556, 30.232856302302629 ], [ -95.109291957563485, 30.232939302320183 ], [ -95.109259958376455, 30.232955302786181 ], [ -95.109196957552214, 30.232961303005478 ], [ -95.10903795751382, 30.232955302665371 ], [ -95.108999958388935, 30.23296130237501 ], [ -95.108923958265265, 30.232999302346069 ], [ -95.108892957381869, 30.233027302504247 ], [ -95.108866958252875, 30.233071302845108 ], [ -95.108860957609181, 30.233120302907679 ], [ -95.108867957684495, 30.233164302937993 ], [ -95.108892958219215, 30.23320330301906 ], [ -95.108943957903364, 30.233230302834041 ], [ -95.10900695799846, 30.233241302809873 ], [ -95.109164957533721, 30.233247302239345 ], [ -95.109234957930681, 30.233263302526606 ], [ -95.109335958154062, 30.23332930258622 ], [ -95.109386957638009, 30.233400303009482 ], [ -95.109418957988751, 30.233516303101542 ], [ -95.109468957814755, 30.233642303103935 ], [ -95.109468958541868, 30.233686303004443 ], [ -95.10946895840361, 30.233708302488594 ], [ -95.109430958513627, 30.233780302572114 ], [ -95.109405958143526, 30.233807302883985 ], [ -95.109335957578551, 30.233824302830509 ], [ -95.109291957833761, 30.23380230267999 ], [ -95.109190957628883, 30.233708302771213 ], [ -95.10910195779293, 30.233747302701204 ], [ -95.109069957689812, 30.233774302843241 ], [ -95.108924957850803, 30.23397830328059 ], [ -95.108937958337435, 30.234324303094965 ], [ -95.109013957793238, 30.234385302577323 ], [ -95.109076957574146, 30.234396302484946 ], [ -95.109190957688597, 30.234434302972332 ], [ -95.109361957783349, 30.23452830297018 ], [ -95.109386957770425, 30.234528303334113 ], [ -95.109513958096642, 30.234423302596532 ], [ -95.109570957868286, 30.234401302967814 ], [ -95.109697958296834, 30.234330303149129 ], [ -95.109766957746047, 30.234363303179489 ], [ -95.109804958222966, 30.234401303144118 ], [ -95.109817957763184, 30.234462303229069 ], [ -95.109804958337946, 30.234560302497801 ], [ -95.109703957702635, 30.234692302674102 ], [ -95.10969195774112, 30.234742302736407 ], [ -95.109691958073796, 30.234813303272276 ], [ -95.10972295805945, 30.234852303207649 ], [ -95.10975495808276, 30.23484630323583 ], [ -95.109792958332648, 30.234813302662303 ], [ -95.109868957823309, 30.234703302502616 ], [ -95.109925958214092, 30.234670303003785 ], [ -95.109982958008146, 30.234670302678136 ], [ -95.110033958456441, 30.234725302782817 ], [ -95.110071957870744, 30.234813302828485 ], [ -95.110071958126426, 30.234874302771196 ], [ -95.110001958151017, 30.234989303370003 ], [ -95.110001958070754, 30.235033303215261 ], [ -95.110052958430813, 30.235160302959994 ], [ -95.110109957879615, 30.235259302885126 ], [ -95.110204958758601, 30.235369302869813 ], [ -95.110444958144868, 30.235363303349022 ], [ -95.110527958161398, 30.235368303240374 ], [ -95.110546958086388, 30.235379303079309 ], [ -95.110558958783969, 30.235401303534452 ], [ -95.110521958854477, 30.235522303091955 ], [ -95.110514958801048, 30.235599302979413 ], [ -95.110540958106597, 30.235693303111244 ], [ -95.110590958187586, 30.235704303114467 ], [ -95.110660958765521, 30.235687303400866 ], [ -95.110717958631213, 30.235627302904373 ], [ -95.110812958053984, 30.235418302951135 ], [ -95.110843958814229, 30.235374303252591 ], [ -95.110907958455144, 30.235330302713638 ], [ -95.110995958527397, 30.235302303137967 ], [ -95.111166958270843, 30.235291302783825 ], [ -95.111223958586308, 30.235313303205178 ], [ -95.111420958997726, 30.235434302933431 ], [ -95.111477958780853, 30.235445303497158 ], [ -95.111603958535838, 30.235450302651202 ], [ -95.111641958889749, 30.235467302644334 ], [ -95.111711958918676, 30.235555302985983 ], [ -95.111907958269157, 30.235643302749818 ], [ -95.111990959237261, 30.235698302813919 ], [ -95.112028958529663, 30.235753303028908 ], [ -95.111996959042344, 30.235835303390676 ], [ -95.111958959243324, 30.235901302850497 ], [ -95.111787959256219, 30.236088303453858 ], [ -95.111781958358932, 30.236154303608458 ], [ -95.111794959087959, 30.236187302755468 ], [ -95.111825958522573, 30.236215303310374 ], [ -95.111895958913564, 30.236242303652691 ], [ -95.111927959146456, 30.23624230350725 ], [ -95.111958958939667, 30.236226303337315 ], [ -95.112003959089307, 30.236182303304531 ], [ -95.112015958334737, 30.236127302789217 ], [ -95.112066958536602, 30.236033303462335 ], [ -95.112123958557277, 30.235978302687901 ], [ -95.112205959232298, 30.235945302994953 ], [ -95.112300958886877, 30.235934303478366 ], [ -95.112509958894236, 30.235945303266554 ], [ -95.112560959059351, 30.235961302805553 ], [ -95.112617958673511, 30.236000303558423 ], [ -95.112693959229716, 30.23606630294174 ], [ -95.1126939592978, 30.236104303298863 ], [ -95.112630959134904, 30.236143303451733 ], [ -95.112414958619752, 30.236181303086845 ], [ -95.112364958521155, 30.236198303563011 ], [ -95.112338958631952, 30.236220303221067 ], [ -95.112332958717275, 30.236258303627437 ], [ -95.112351959180003, 30.236302303283946 ], [ -95.112395959020986, 30.236346303613956 ], [ -95.112452958891467, 30.236379303189807 ], [ -95.112503959199529, 30.236401303086208 ], [ -95.112611959423134, 30.236418303020766 ], [ -95.112763959403836, 30.23639630287461 ], [ -95.113016959170096, 30.236308302954356 ], [ -95.113098959392943, 30.236291303616479 ], [ -95.113174959558734, 30.2362913034702 ], [ -95.113294959105161, 30.236318303233933 ], [ -95.113516959615978, 30.236472303008902 ], [ -95.113580959728864, 30.236505302885245 ], [ -95.113820959491093, 30.236588303207121 ], [ -95.114029958891038, 30.236692303094191 ], [ -95.114194959697485, 30.236785303032384 ], [ -95.114289959395649, 30.236857303146284 ], [ -95.114321959301449, 30.236917303071937 ], [ -95.114327959891369, 30.236978303661104 ], [ -95.114314959858689, 30.237005303664137 ], [ -95.114258959635251, 30.237038303161409 ], [ -95.114099959206328, 30.237060303337742 ], [ -95.114042958992371, 30.237082303055008 ], [ -95.113966958888923, 30.237132302902189 ], [ -95.113922959046974, 30.237187303263223 ], [ -95.113928959271604, 30.2372473029004 ], [ -95.113947959641209, 30.237280303474581 ], [ -95.114017959205185, 30.237330303024571 ], [ -95.114131959329228, 30.237352303655182 ], [ -95.114182959651288, 30.237335303410685 ], [ -95.114365959543207, 30.237236303668791 ], [ -95.114448959319091, 30.237225302897073 ], [ -95.114524959164498, 30.237231303197273 ], [ -95.114562959382084, 30.237258302874242 ], [ -95.114574959046465, 30.237308303552354 ], [ -95.11455595910428, 30.237363303482343 ], [ -95.114435959025258, 30.237500303201909 ], [ -95.1144359599285, 30.237522303551749 ], [ -95.114505959650117, 30.237599303437033 ], [ -95.114562959548465, 30.237698303027749 ], [ -95.11460096004123, 30.237720303315772 ], [ -95.114670959107684, 30.237725303594001 ], [ -95.11488595985594, 30.237709303356592 ], [ -95.114948960047172, 30.237725303421222 ], [ -95.114980959763557, 30.237742303465474 ], [ -95.115068959882635, 30.237885303490987 ], [ -95.115088959688677, 30.237896303520063 ], [ -95.115119959378816, 30.237896303516965 ], [ -95.115157959954232, 30.237890302994934 ], [ -95.115183959752613, 30.237874303143354 ], [ -95.115296959290006, 30.237753302976245 ], [ -95.115328959782644, 30.237736303782608 ], [ -95.115391960074248, 30.237725303047696 ], [ -95.1154489595109, 30.237731303388951 ], [ -95.11572195968327, 30.237796303542776 ], [ -95.115809959878959, 30.237802303612252 ], [ -95.11587995994941, 30.237780303601973 ], [ -95.115942960299549, 30.237670303462618 ], [ -95.116050960234872, 30.237593303497988 ], [ -95.116145959858642, 30.237587303325114 ], [ -95.116208960183812, 30.237598303428143 ], [ -95.116259959919404, 30.23763130334271 ], [ -95.11628496017039, 30.237670303660504 ], [ -95.116265960344151, 30.237747303209495 ], [ -95.116215960240112, 30.237785303557274 ], [ -95.116075960242142, 30.237829302988821 ], [ -95.115999959457682, 30.237868303328202 ], [ -95.115968959950166, 30.237895303222778 ], [ -95.115968960344219, 30.237939303855004 ], [ -95.115987959547383, 30.237983303778634 ], [ -95.116057960224154, 30.238000303133088 ], [ -95.116202959728795, 30.23799430380333 ], [ -95.116360960065364, 30.237972302964916 ], [ -95.11649396036961, 30.237939303223722 ], [ -95.116690960218676, 30.237862303747775 ], [ -95.116778960138731, 30.237851303141493 ], [ -95.116854960350864, 30.237856302966069 ], [ -95.116880960255202, 30.237867303377598 ], [ -95.116899960456834, 30.237884303515141 ], [ -95.116892960310381, 30.237928303513403 ], [ -95.116791960349303, 30.238049303548941 ], [ -95.116797960414416, 30.238120303584211 ], [ -95.116873959764959, 30.238175303398123 ], [ -95.116937960503066, 30.238181303743229 ], [ -95.116975960004893, 30.23817530358059 ], [ -95.117095960255881, 30.238131303199356 ], [ -95.117171959864635, 30.238142303148848 ], [ -95.117253959886852, 30.238170303726481 ], [ -95.117279960214162, 30.238197303137326 ], [ -95.117291959812988, 30.238230303483533 ], [ -95.117241959987012, 30.238362303022964 ], [ -95.117247960345253, 30.238428303657333 ], [ -95.117387960624797, 30.238565303855573 ], [ -95.117425960763626, 30.238620303292162 ], [ -95.117482959917353, 30.238807303558414 ], [ -95.117533960688348, 30.238879303286023 ], [ -95.11759096043177, 30.23891230326667 ], [ -95.117678959887101, 30.238934303829836 ], [ -95.11776796093767, 30.238939303410049 ], [ -95.117862960540236, 30.238923303259043 ], [ -95.117906960912279, 30.238901303494647 ], [ -95.118014960996746, 30.238802303521215 ], [ -95.118083960291059, 30.238752303588139 ], [ -95.11821696003247, 30.238691303318245 ], [ -95.118343960614581, 30.23865830387718 ], [ -95.118482960831528, 30.238647303043059 ], [ -95.118660960187171, 30.238647303183342 ], [ -95.118748960683007, 30.238669303079856 ], [ -95.118786961142419, 30.238713303328147 ], [ -95.118793960367, 30.238774303495195 ], [ -95.118704960502356, 30.23888930387967 ], [ -95.118704960588644, 30.238917303587296 ], [ -95.118723960746138, 30.238950303404195 ], [ -95.118767960273075, 30.238994303286155 ], [ -95.118805960242867, 30.238994303843011 ], [ -95.118951960693565, 30.238955303324396 ], [ -95.119059960382444, 30.238895303729169 ], [ -95.119147960545547, 30.23887830305085 ], [ -95.119236960843892, 30.238889303766054 ], [ -95.119306960757285, 30.238916303712454 ], [ -95.119325960630803, 30.238938303742 ], [ -95.119312960331342, 30.239004303553788 ], [ -95.119274961040603, 30.239043303449716 ], [ -95.119173960879451, 30.239092303096264 ], [ -95.118939961001857, 30.239180303495218 ], [ -95.118888960323517, 30.239214303727092 ], [ -95.11887596125176, 30.239241303242935 ], [ -95.118882960862265, 30.239285303389433 ], [ -95.118932960600119, 30.239329303769249 ], [ -95.119034960429417, 30.23934530320572 ], [ -95.119097960499587, 30.23934030375095 ], [ -95.11931296066571, 30.239257303602571 ], [ -95.119426960598886, 30.239202303629423 ], [ -95.119477960698248, 30.239202303199495 ], [ -95.119641960879903, 30.239246303453513 ], [ -95.119686961296139, 30.239296303298104 ], [ -95.119680961229633, 30.239318303950281 ], [ -95.119635960518067, 30.23937330339464 ], [ -95.119490961220791, 30.239494303598605 ], [ -95.119439960741261, 30.239560303944852 ], [ -95.119433961244368, 30.239598303651793 ], [ -95.119439960999472, 30.239637303553579 ], [ -95.119452960641297, 30.239653303596224 ], [ -95.119547960479977, 30.239681303702795 ], [ -95.119604960837563, 30.239681303753201 ], [ -95.1198899606255, 30.239620303945745 ], [ -95.119933961423413, 30.239631303495173 ], [ -95.120041961570109, 30.239812303329114 ], [ -95.120104960951636, 30.239851303910712 ], [ -95.120174961574818, 30.239873304026617 ], [ -95.120237960639898, 30.23986730394989 ], [ -95.120288961372623, 30.239851303274811 ], [ -95.120319960607702, 30.239834303850031 ], [ -95.120338961507741, 30.239807303853382 ], [ -95.120351960903591, 30.239774303902774 ], [ -95.120313961219566, 30.23954830351898 ], [ -95.120345960980444, 30.239499303235775 ], [ -95.120389961189915, 30.239482303837892 ], [ -95.120452960841547, 30.239488303419574 ], [ -95.120630961487748, 30.23954330387328 ], [ -95.120870961565231, 30.239564303217264 ], [ -95.120908961791486, 30.239581303180891 ], [ -95.120915961267997, 30.23962530318542 ], [ -95.120902961221589, 30.239663303432948 ], [ -95.120788961633252, 30.239790303948045 ], [ -95.120756961186501, 30.239861303666899 ], [ -95.1207699617202, 30.239905303276647 ], [ -95.120794961309258, 30.239911303596063 ], [ -95.120832961196101, 30.239905303251369 ], [ -95.120927961268421, 30.239856303714134 ], [ -95.121016961764084, 30.23978430334736 ], [ -95.12113096127311, 30.23965830360055 ], [ -95.121276960991423, 30.239608303578351 ], [ -95.12137796153327, 30.239542303296997 ], [ -95.121408960951925, 30.239531303949992 ], [ -95.121516961816084, 30.2395533031833 ], [ -95.121541961728624, 30.23958130363555 ], [ -95.121548961329154, 30.239608303607458 ], [ -95.121535961088483, 30.239636303375622 ], [ -95.121465960975968, 30.239707303480934 ], [ -95.12145996176821, 30.239735303637044 ], [ -95.121510961314968, 30.239773303516632 ], [ -95.121561961819069, 30.239790303197786 ], [ -95.121624961189156, 30.239790303703678 ], [ -95.121725961685399, 30.239773303944506 ], [ -95.121801961882866, 30.2397843039486 ], [ -95.122004961282713, 30.239861303487483 ], [ -95.122061961949512, 30.239866303669512 ], [ -95.122213961265061, 30.239839303350777 ], [ -95.122264961867998, 30.239844303938646 ], [ -95.122390962100923, 30.2399053038951 ], [ -95.122485961904715, 30.240036303682388 ], [ -95.122574961931846, 30.240108303526416 ], [ -95.122789962040414, 30.240218303461276 ], [ -95.122935962282355, 30.240361303610698 ], [ -95.123017962008305, 30.240399303775224 ], [ -95.12310096166803, 30.24042130386653 ], [ -95.123138961665219, 30.240454304000487 ], [ -95.123182961592647, 30.240575303643258 ], [ -95.123575962358814, 30.240877303346288 ], [ -95.12363896205909, 30.240910303703309 ], [ -95.123993962498133, 30.240987303936762 ], [ -95.12408296186409, 30.241020303380601 ], [ -95.124170962479212, 30.241091303949407 ], [ -95.124247962243771, 30.241174303415107 ], [ -95.124310962700093, 30.241212303720598 ], [ -95.12460196227191, 30.241322303916579 ], [ -95.125007962186231, 30.241509303675979 ], [ -95.125215962483381, 30.241623304054954 ], [ -95.125600962813948, 30.24188030409341 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 373, "Tract": "48291700801", "Area_SqMi": 23.412615365997464, "total_2009": 242, "total_2010": 119, "total_2011": 174, "total_2012": 97, "total_2013": 74, "total_2014": 118, "total_2015": 103, "total_2016": 115, "total_2017": 88, "total_2018": 58, "total_2019": 81, "total_2020": 67, "age1": 15, "age2": 18, "age3": 19, "earn1": 23, "earn2": 14, "earn3": 15, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 7, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 6, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 10, "naics_s19": 0, "naics_s20": 0, "race1": 45, "race2": 5, "race3": 0, "race4": 1, "race5": 0, "race6": 1, "ethnicity1": 44, "ethnicity2": 8, "edu1": 10, "edu2": 17, "edu3": 7, "edu4": 3, "Shape_Length": 160179.25270166027, "Shape_Area": 652703645.31233394, "total_2021": 72, "total_2022": 52 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.939867911453817, 30.180696297535523 ], [ -94.939848911544885, 30.180655297488691 ], [ -94.939794911906006, 30.180533297716863 ], [ -94.939776912055478, 30.18049329817454 ], [ -94.939713912261155, 30.180354298064639 ], [ -94.939709911559859, 30.180345298026193 ], [ -94.939519912094127, 30.179898297633073 ], [ -94.939456911757844, 30.179749297828334 ], [ -94.939129911624462, 30.178978297289898 ], [ -94.938839911485829, 30.178333297872729 ], [ -94.938603911654198, 30.177765297556725 ], [ -94.938353911755087, 30.177136297411082 ], [ -94.937300911397514, 30.174528296363683 ], [ -94.937100911112736, 30.17404129673659 ], [ -94.93651391052552, 30.172614296082351 ], [ -94.936318910585769, 30.172123296226385 ], [ -94.935828910520016, 30.170884296120736 ], [ -94.935742910198371, 30.170650295991805 ], [ -94.935560910700175, 30.17015529574094 ], [ -94.934927909891684, 30.168578295201428 ], [ -94.933030909666243, 30.163849294409662 ], [ -94.932398909644576, 30.162273294228552 ], [ -94.932162908773975, 30.161674293977057 ], [ -94.931457908526198, 30.159878293651207 ], [ -94.931222909023205, 30.159280294182246 ], [ -94.931075908603489, 30.15891329405202 ], [ -94.930637908763302, 30.157813293750177 ], [ -94.930491908108337, 30.157447293234267 ], [ -94.92992790836152, 30.156033293600071 ], [ -94.92863090775252, 30.152780292746503 ], [ -94.928300907547239, 30.151771292142044 ], [ -94.928266907953144, 30.151665291966772 ], [ -94.928092907329827, 30.151051291949639 ], [ -94.927988907445382, 30.150497291735665 ], [ -94.927952907808503, 30.150293292362935 ], [ -94.927867907650182, 30.149808292175674 ], [ -94.92781590764001, 30.149388292094031 ], [ -94.927791907251745, 30.149133291790754 ], [ -94.927781907484018, 30.149014292052424 ], [ -94.927746906960181, 30.148490291973427 ], [ -94.92774690708778, 30.147921291355797 ], [ -94.927781907357613, 30.146243291087856 ], [ -94.927799907588152, 30.145621290881561 ], [ -94.927815906829508, 30.145120291215441 ], [ -94.927848906728357, 30.144451291047947 ], [ -94.927854906680878, 30.144183291160349 ], [ -94.927876907410933, 30.14338029074429 ], [ -94.927884906906968, 30.143113290951216 ], [ -94.927901907150655, 30.142723290726906 ], [ -94.927953907018534, 30.141555290461152 ], [ -94.92797190726948, 30.141166290638768 ], [ -94.92798190685744, 30.141038289857349 ], [ -94.928013906911474, 30.140657289838749 ], [ -94.928024906923369, 30.140530289680765 ], [ -94.928030907119563, 30.140354289665165 ], [ -94.928049906908598, 30.139829289557131 ], [ -94.92805290685952, 30.139765289519648 ], [ -94.928056906501396, 30.139654290112514 ], [ -94.92810990733814, 30.138261289338221 ], [ -94.928255906350742, 30.131080288584432 ], [ -94.928251906913545, 30.131014288241062 ], [ -94.928250906612845, 30.130982288240979 ], [ -94.92825090636012, 30.130950287826902 ], [ -94.928248907130268, 30.130923288139616 ], [ -94.928246906440748, 30.130895288253981 ], [ -94.928243906699649, 30.130862288042756 ], [ -94.928240906532423, 30.130816288526628 ], [ -94.928165906314931, 30.130100287909684 ], [ -94.928142906712068, 30.129882288210734 ], [ -94.928123906689549, 30.129740287711758 ], [ -94.928084906291303, 30.129438287911416 ], [ -94.928071906655518, 30.129340288091843 ], [ -94.928050906491606, 30.129207287953403 ], [ -94.927944906344678, 30.128515287848675 ], [ -94.927909906569894, 30.128285287416951 ], [ -94.927889906388558, 30.128168287446837 ], [ -94.927829906377937, 30.127820287056618 ], [ -94.927810906778632, 30.127704287712234 ], [ -94.927700906272378, 30.127050287226204 ], [ -94.927655906025052, 30.126804287254821 ], [ -94.927358905854518, 30.125166286625007 ], [ -94.927167905790071, 30.124110286400501 ], [ -94.92700590582416, 30.123212286755521 ], [ -94.926955905798337, 30.122938286404462 ], [ -94.926823906374821, 30.122211286458921 ], [ -94.926281905326519, 30.119211286211296 ], [ -94.926193905292223, 30.118722285750181 ], [ -94.926095905691909, 30.118212285731065 ], [ -94.926059905070403, 30.118027285784624 ], [ -94.925920905775484, 30.117247285589137 ], [ -94.925879905663066, 30.117017285707885 ], [ -94.925707905222808, 30.116126285454982 ], [ -94.925500904788933, 30.115132285286254 ], [ -94.925375905605591, 30.114605285294896 ], [ -94.925309904924177, 30.114370284799726 ], [ -94.925044905126853, 30.113427284885855 ], [ -94.924928905122329, 30.113031284539701 ], [ -94.924914904911645, 30.112981284541974 ], [ -94.924842904926734, 30.112756284845773 ], [ -94.924665905332986, 30.112234284419685 ], [ -94.924529904333625, 30.111860284724202 ], [ -94.924389905083999, 30.111473284268914 ], [ -94.924142905001233, 30.110866283775454 ], [ -94.924063904456943, 30.110671283679075 ], [ -94.923858904231764, 30.110169283620262 ], [ -94.923399904688708, 30.109047283762767 ], [ -94.923152904230349, 30.108441283382643 ], [ -94.922848904566877, 30.107701284004428 ], [ -94.9220129034411, 30.105665283543484 ], [ -94.921934903387864, 30.105481283032393 ], [ -94.921803904254617, 30.105171283372453 ], [ -94.921628903801818, 30.104743283274537 ], [ -94.921403903424974, 30.104191282752524 ], [ -94.921394904111523, 30.104170282487374 ], [ -94.921015903447, 30.103281282383062 ], [ -94.920674903034723, 30.102459282218543 ], [ -94.920437902869509, 30.101888282114526 ], [ -94.92039590338301, 30.101786282380246 ], [ -94.920301902937609, 30.101558282258402 ], [ -94.920179902831237, 30.101259282544873 ], [ -94.919902903260919, 30.100569282139602 ], [ -94.919770902627448, 30.100239281881247 ], [ -94.919729903180624, 30.100140281996474 ], [ -94.919606903245324, 30.099843282181705 ], [ -94.919565903080908, 30.09974428220038 ], [ -94.919470902824727, 30.099514282116875 ], [ -94.919370902686993, 30.099270282174771 ], [ -94.918792902695543, 30.097847281587967 ], [ -94.918742902796666, 30.097724281989382 ], [ -94.91859590243395, 30.097375281788594 ], [ -94.918435902851172, 30.096995281325562 ], [ -94.918316902460305, 30.09671228168358 ], [ -94.917998902467787, 30.095929281208207 ], [ -94.917968902680627, 30.095851281377545 ], [ -94.917823902778977, 30.095467281427862 ], [ -94.917690902471264, 30.095125280875042 ], [ -94.917627902177529, 30.094964281088565 ], [ -94.91727290172156, 30.094109281328411 ], [ -94.917250901920752, 30.09405528097783 ], [ -94.917132902378853, 30.093771281101805 ], [ -94.91707290187297, 30.09363328118808 ], [ -94.916895902398764, 30.093219281219547 ], [ -94.916836902215138, 30.0930812808421 ], [ -94.916722901698179, 30.092814281147668 ], [ -94.916704901694359, 30.092775281063446 ], [ -94.916604901459905, 30.092558280870673 ], [ -94.916477901728413, 30.092226281044024 ], [ -94.916381901358534, 30.091980280659108 ], [ -94.916331901627473, 30.091849280141684 ], [ -94.916211901816368, 30.091539280610334 ], [ -94.916077901415477, 30.091192280684506 ], [ -94.915979901479304, 30.091123280410311 ], [ -94.915915901915028, 30.090970280232664 ], [ -94.915635902000858, 30.090301280174316 ], [ -94.915173901114073, 30.089142279577388 ], [ -94.915130901293196, 30.089034280242174 ], [ -94.914977901600793, 30.088649279677984 ], [ -94.914932901011696, 30.088531279991383 ], [ -94.913336901183612, 30.089125279796548 ], [ -94.912880901142657, 30.089295280128248 ], [ -94.912600900345566, 30.089401279762299 ], [ -94.912566901045338, 30.089414280048167 ], [ -94.909666899567668, 30.090501280329708 ], [ -94.909152899914147, 30.09069528064855 ], [ -94.905905899168943, 30.091928281327739 ], [ -94.901902898266712, 30.093434281042644 ], [ -94.898138896937056, 30.094854281351409 ], [ -94.893695896535561, 30.096526282263561 ], [ -94.891827896049477, 30.097225282622453 ], [ -94.889679895207763, 30.098029282701372 ], [ -94.889501894629277, 30.09809628309349 ], [ -94.888142894561014, 30.098602282931722 ], [ -94.886046894677989, 30.099384282741411 ], [ -94.884426893788316, 30.100006283111004 ], [ -94.882669893841907, 30.100670283957371 ], [ -94.880617892800771, 30.101446283708178 ], [ -94.876848891759124, 30.102845284320654 ], [ -94.873288891373278, 30.10418728478443 ], [ -94.872523890953488, 30.104483284402185 ], [ -94.871164890740616, 30.105011284922742 ], [ -94.871000890307926, 30.105075284568109 ], [ -94.87030889043551, 30.105332285113597 ], [ -94.869140890710028, 30.105751285463423 ], [ -94.868386890239506, 30.106041284834884 ], [ -94.867667890315488, 30.106316285190019 ], [ -94.866622889612756, 30.10671928539476 ], [ -94.864662889067432, 30.107454285579582 ], [ -94.863243889347473, 30.107992285328923 ], [ -94.863128888866854, 30.108036285554956 ], [ -94.861767888158212, 30.108547285783928 ], [ -94.861369888409186, 30.108683285785069 ], [ -94.860358888543573, 30.109031285621068 ], [ -94.860177887911632, 30.109093285717488 ], [ -94.859780888483854, 30.109230285923257 ], [ -94.859427887815784, 30.109343285998538 ], [ -94.858369887489758, 30.109684285823651 ], [ -94.858017888020058, 30.109799286400371 ], [ -94.85692788714141, 30.110154286673968 ], [ -94.856547887098543, 30.110278286229484 ], [ -94.854866886743892, 30.110818286317407 ], [ -94.853890886140121, 30.111125286350553 ], [ -94.853653886009369, 30.111202287016535 ], [ -94.85256588646439, 30.111560286967702 ], [ -94.85127488573157, 30.111980286579765 ], [ -94.849503885118537, 30.112576287094285 ], [ -94.847953884802848, 30.113063287098928 ], [ -94.847529884625658, 30.113196287627598 ], [ -94.846950885235159, 30.113379287721912 ], [ -94.845469884896488, 30.11385228766019 ], [ -94.844636884295724, 30.114119287158733 ], [ -94.843745883719492, 30.114408287499138 ], [ -94.841538883802031, 30.11512028808697 ], [ -94.840344883453625, 30.115507288223625 ], [ -94.8396508834402, 30.115736287753037 ], [ -94.839366883482114, 30.1158302877786 ], [ -94.839143882514051, 30.115901288342162 ], [ -94.839064882640102, 30.115926288437031 ], [ -94.838159882743099, 30.116214288574565 ], [ -94.835275882122374, 30.117152288392287 ], [ -94.833190881394628, 30.117818288713178 ], [ -94.832412881794824, 30.11806928875588 ], [ -94.831192881479936, 30.118463288606268 ], [ -94.829345880130347, 30.119069289288838 ], [ -94.82779788006367, 30.119560288953412 ], [ -94.827740880319666, 30.119574289641893 ], [ -94.827554880553322, 30.119622289433391 ], [ -94.827367880069048, 30.11967128970312 ], [ -94.827239879751176, 30.119705289764987 ], [ -94.827110879876244, 30.119740289569503 ], [ -94.826965880010022, 30.119778289777386 ], [ -94.825901879799645, 30.120003289142549 ], [ -94.825330880003094, 30.120087289587019 ], [ -94.824594879445343, 30.12019728941825 ], [ -94.824244879381112, 30.1202652891394 ], [ -94.823781879517682, 30.120298289826433 ], [ -94.822271879134078, 30.120386289905017 ], [ -94.821201878222112, 30.120473289944133 ], [ -94.820546878905233, 30.120530289752256 ], [ -94.819340877816956, 30.120636289864436 ], [ -94.819121878282701, 30.120653289822283 ], [ -94.818550878182322, 30.120699289697622 ], [ -94.817050877881414, 30.12084229027684 ], [ -94.816926877085137, 30.120856290215333 ], [ -94.816556877223277, 30.12090028974626 ], [ -94.816433877634523, 30.120915289881577 ], [ -94.816421877031516, 30.121129289688941 ], [ -94.816408877064688, 30.12134228979097 ], [ -94.816373876971539, 30.121945290201655 ], [ -94.816495877823641, 30.12250629045781 ], [ -94.817258877442569, 30.12288728995944 ], [ -94.817290878074189, 30.122868290526267 ], [ -94.818559878416494, 30.12216828988716 ], [ -94.81982387836797, 30.121865289745621 ], [ -94.820996878949003, 30.121584289544487 ], [ -94.822201879256554, 30.121726290216138 ], [ -94.823223879206225, 30.122116290241554 ], [ -94.823955879193534, 30.123099289962255 ], [ -94.824046879014901, 30.123221289915648 ], [ -94.824457879151126, 30.123881290348738 ], [ -94.824863879931215, 30.124533290446799 ], [ -94.82520487944241, 30.125256290163207 ], [ -94.82535087973902, 30.125248290426526 ], [ -94.825787879915609, 30.125225290086519 ], [ -94.825934879529797, 30.125218290232695 ], [ -94.825865880081551, 30.125148290204638 ], [ -94.825838879621287, 30.12500129032815 ], [ -94.825753879769195, 30.124932290252136 ], [ -94.825635879419849, 30.124837290858526 ], [ -94.825553879431041, 30.124749290839514 ], [ -94.825420879737464, 30.124743290030416 ], [ -94.825344879463074, 30.124622290304075 ], [ -94.82532587940976, 30.124540290826616 ], [ -94.825243880043317, 30.124336290538128 ], [ -94.825155879694705, 30.124177290142644 ], [ -94.825134879977597, 30.124150290305426 ], [ -94.825009880144975, 30.123984289853837 ], [ -94.824933879668876, 30.123858290687085 ], [ -94.825439879397621, 30.123764290157837 ], [ -94.825661879801785, 30.123715290181281 ], [ -94.825939879563805, 30.123682289734081 ], [ -94.82602188000682, 30.123687290277427 ], [ -94.826078880321134, 30.123709289804221 ], [ -94.82619888036028, 30.12379229002077 ], [ -94.826287879620764, 30.123830289935523 ], [ -94.826616880492224, 30.123880290552329 ], [ -94.826685879890732, 30.123902290283244 ], [ -94.826717879846342, 30.123940290279126 ], [ -94.826730880591384, 30.124039290700324 ], [ -94.826711880365778, 30.124374289985216 ], [ -94.826717879986163, 30.124561289967083 ], [ -94.826740880645374, 30.124642290409767 ], [ -94.82675587969868, 30.124693290585217 ], [ -94.826819880578029, 30.124847290648045 ], [ -94.826903880003798, 30.125004290760575 ], [ -94.827048880513942, 30.125296290666849 ], [ -94.827219880289292, 30.125499290652062 ], [ -94.827396880812259, 30.125604290418902 ], [ -94.827567880707747, 30.125642290779751 ], [ -94.827675880307567, 30.125637290757922 ], [ -94.827789880130695, 30.125587290598588 ], [ -94.827877880956649, 30.125488290662481 ], [ -94.827921880686915, 30.125114290699024 ], [ -94.828010880855473, 30.125004290742211 ], [ -94.828020880840896, 30.124963290031062 ], [ -94.828204880563135, 30.124891290585072 ], [ -94.82841388015774, 30.124864290343879 ], [ -94.828647880642364, 30.12480329075596 ], [ -94.828767880802403, 30.124710290081136 ], [ -94.828855881094185, 30.124605290195845 ], [ -94.829115881076987, 30.124446289947763 ], [ -94.829197881233924, 30.124407290258691 ], [ -94.829399881352543, 30.124346289874239 ], [ -94.829513881097242, 30.124357290624122 ], [ -94.829583880499428, 30.124396290513989 ], [ -94.829621881195749, 30.124456290394765 ], [ -94.829640880660378, 30.124632290376855 ], [ -94.829627880957247, 30.124847290094429 ], [ -94.829646881210735, 30.124885290603242 ], [ -94.82971088102876, 30.12495128990728 ], [ -94.829787880650244, 30.125004289995189 ], [ -94.829838881055792, 30.125042290737802 ], [ -94.83001588132673, 30.125114289911128 ], [ -94.830806880719862, 30.125196290730962 ], [ -94.830926881312408, 30.125312289932058 ], [ -94.83100288176, 30.125592290427551 ], [ -94.831053881105944, 30.125669290643433 ], [ -94.831205881178292, 30.125796290617579 ], [ -94.831483881828106, 30.125955290683024 ], [ -94.831863881395776, 30.126060290294305 ], [ -94.831989881550825, 30.12615329050864 ], [ -94.832160881541824, 30.126373290548859 ], [ -94.832192881598488, 30.126392290129246 ], [ -94.832299881974279, 30.126455290521481 ], [ -94.832976881921994, 30.126703290809697 ], [ -94.833090881933927, 30.126785290670142 ], [ -94.833141881629345, 30.12691729019258 ], [ -94.833103881747746, 30.127478291049648 ], [ -94.833122882401696, 30.127566291146184 ], [ -94.833217882117808, 30.127660291074896 ], [ -94.833299882272414, 30.127660290650141 ], [ -94.833394882043237, 30.127616290380224 ], [ -94.833666881976157, 30.127346290790186 ], [ -94.833754881985996, 30.127346290922947 ], [ -94.833969881914001, 30.12734629046874 ], [ -94.834134882580017, 30.127451291081957 ], [ -94.834324881989971, 30.127731290911889 ], [ -94.834653882898237, 30.12804429056661 ], [ -94.834685881919555, 30.128173290658307 ], [ -94.834697882108429, 30.128220290905354 ], [ -94.834469882380645, 30.128462290777957 ], [ -94.833679881941649, 30.128809291117978 ], [ -94.833597882322152, 30.128858290862205 ], [ -94.833546881667829, 30.12899029122827 ], [ -94.833559882120596, 30.129100290765436 ], [ -94.833679882398101, 30.129425291004246 ], [ -94.833964882680974, 30.129903291393862 ], [ -94.834185882400348, 30.130431290953428 ], [ -94.834122882487861, 30.130558291670738 ], [ -94.8339588821554, 30.130695291510378 ], [ -94.833888881984322, 30.130800291516771 ], [ -94.833799881954846, 30.131254291840801 ], [ -94.833762882529157, 30.131448291283863 ], [ -94.833445882572761, 30.131916291412562 ], [ -94.833439882533, 30.132031291639091 ], [ -94.833483881947657, 30.132119291461052 ], [ -94.833616882425815, 30.13214129141457 ], [ -94.833838882728969, 30.132097291205255 ], [ -94.833952882382633, 30.131905291599992 ], [ -94.834244882155758, 30.131675291328495 ], [ -94.834344882584546, 30.131597291929719 ], [ -94.834647882870925, 30.13151429176876 ], [ -94.83475588227661, 30.13148729181875 ], [ -94.834976882256925, 30.131465291681089 ], [ -94.835242882296541, 30.131470291367808 ], [ -94.83538888305003, 30.131520291047337 ], [ -94.835889882702077, 30.131829291613538 ], [ -94.83591388336653, 30.131844291831232 ], [ -94.835976882634967, 30.131861291183903 ], [ -94.836463882640004, 30.131981291206483 ], [ -94.836779883289481, 30.131789291696183 ], [ -94.836881883432412, 30.131668291334517 ], [ -94.836843883510937, 30.131585291556807 ], [ -94.83669188326374, 30.131536291184997 ], [ -94.836590883218889, 30.131443291736559 ], [ -94.836627883313284, 30.131267291354622 ], [ -94.836786883070815, 30.131118291178169 ], [ -94.837260882845825, 30.130860291444861 ], [ -94.837399882784851, 30.130837291024154 ], [ -94.83750088344172, 30.130848291299991 ], [ -94.837810883055127, 30.130980291455053 ], [ -94.838317883169395, 30.131255290950651 ], [ -94.838570883591515, 30.131272291080364 ], [ -94.838816883334516, 30.131195290947119 ], [ -94.838943883767087, 30.13107929082172 ], [ -94.838930883253866, 30.131002290816372 ], [ -94.838810883282534, 30.130887291580809 ], [ -94.838576883917227, 30.13077129142162 ], [ -94.838506883835123, 30.130634291441716 ], [ -94.838538883117266, 30.130419291273149 ], [ -94.838696883906408, 30.130249291215403 ], [ -94.838917883558651, 30.130166290806475 ], [ -94.839386883294765, 30.130238290771761 ], [ -94.839588883331089, 30.130221291134202 ], [ -94.83972788387014, 30.130172290887597 ], [ -94.839873883483804, 30.130012291064649 ], [ -94.839986884269265, 30.129776291090174 ], [ -94.840119883495035, 30.129649291113314 ], [ -94.841553884054676, 30.128596290926478 ], [ -94.841656883855791, 30.128521290186672 ], [ -94.841909883818133, 30.128417290351802 ], [ -94.842403884462385, 30.128373290975855 ], [ -94.842605884094965, 30.128296290523078 ], [ -94.843010884056213, 30.128054290234417 ], [ -94.843275885027296, 30.127993290191249 ], [ -94.8456168854689, 30.12802629010784 ], [ -94.846287885887705, 30.127998290355926 ], [ -94.848191886300739, 30.128069289962454 ], [ -94.850177886040512, 30.128030289943226 ], [ -94.850589886933165, 30.128068290534671 ], [ -94.851190886615669, 30.128227290006038 ], [ -94.851443886881199, 30.128359290178246 ], [ -94.851645886317357, 30.128568290192622 ], [ -94.852284887068777, 30.129046290242911 ], [ -94.853069886846455, 30.129464290244254 ], [ -94.853341887778754, 30.129519290199035 ], [ -94.853632887399243, 30.129503290498008 ], [ -94.854050887902844, 30.129618290156799 ], [ -94.854936888061403, 30.130135290170948 ], [ -94.856144887813258, 30.130448290184724 ], [ -94.856739888615479, 30.130552290690314 ], [ -94.857473888626103, 30.130728290443017 ], [ -94.857802888875867, 30.130821290509427 ], [ -94.858523889053458, 30.131101290324107 ], [ -94.859808889088697, 30.131552290380686 ], [ -94.861225889921485, 30.132096290439502 ], [ -94.861953889215812, 30.132326291043373 ], [ -94.862522889412816, 30.13244129052325 ], [ -94.863503889526669, 30.132573291102371 ], [ -94.864129889752164, 30.132628290610924 ], [ -94.864294890104929, 30.132650290840107 ], [ -94.864736890496715, 30.132826290880185 ], [ -94.864983890447107, 30.132968291103882 ], [ -94.8650668907908, 30.133067290972338 ], [ -94.86513589011966, 30.133265290762619 ], [ -94.865243890471717, 30.133425290567928 ], [ -94.865344890679495, 30.133458290671751 ], [ -94.866065891230278, 30.133435290529285 ], [ -94.866824890687326, 30.133133290820712 ], [ -94.866995890896689, 30.132979290279142 ], [ -94.867179891387281, 30.132874290304713 ], [ -94.867387890756433, 30.13260429065037 ], [ -94.867583891400301, 30.132571290285679 ], [ -94.867836891438358, 30.13258229095252 ], [ -94.868380891539744, 30.132555290817749 ], [ -94.86860289110237, 30.132417290707643 ], [ -94.86874189112784, 30.132219290425187 ], [ -94.868810891367616, 30.132191290186736 ], [ -94.869089891312342, 30.132433290782981 ], [ -94.869892891639992, 30.132378290335417 ], [ -94.870000891207965, 30.132268290628044 ], [ -94.870044891778591, 30.132086290124843 ], [ -94.870056891172922, 30.131657290138239 ], [ -94.870429892125344, 30.131476290443061 ], [ -94.870967891940822, 30.130975290141709 ], [ -94.870999891871946, 30.130909290029496 ], [ -94.870986891911286, 30.130662290085155 ], [ -94.871011891611701, 30.130579289683276 ], [ -94.871308891624722, 30.130464289959669 ], [ -94.871397891888336, 30.13040329017737 ], [ -94.871416891479655, 30.130227289993773 ], [ -94.871390891985499, 30.130046289527019 ], [ -94.871453891564158, 30.129963290230208 ], [ -94.871605892463293, 30.129936290286487 ], [ -94.871630891501667, 30.129943289804032 ], [ -94.87173289248048, 30.129974290304155 ], [ -94.871915892506152, 30.129963290175461 ], [ -94.872118892409858, 30.129831289916499 ], [ -94.872541891996377, 30.129754289771409 ], [ -94.872693892059772, 30.129666289898854 ], [ -94.872953892535108, 30.129723289922897 ], [ -94.873035892234554, 30.129742290123957 ], [ -94.87328889221267, 30.129720289556783 ], [ -94.873412892834878, 30.129678289709194 ], [ -94.873461892174234, 30.129805289342094 ], [ -94.873517892936647, 30.129951289467822 ], [ -94.873613893013598, 30.130187290091698 ], [ -94.873665892972909, 30.130314289602254 ], [ -94.873741892839249, 30.130521289832359 ], [ -94.873781892620585, 30.130628289589598 ], [ -94.873937892118249, 30.130998290360285 ], [ -94.873997892555892, 30.131132289886803 ], [ -94.874020892559841, 30.131183290154272 ], [ -94.87408989296523, 30.131334289692315 ], [ -94.874123892417302, 30.131407289903997 ], [ -94.874214892252169, 30.131578289737643 ], [ -94.874499892686359, 30.132075290384858 ], [ -94.87495589335407, 30.132868290133473 ], [ -94.875705893262889, 30.134143290548717 ], [ -94.875779892954398, 30.134274290808381 ], [ -94.875952893525664, 30.13457829035552 ], [ -94.876227893494686, 30.134995291130814 ], [ -94.876378893832069, 30.135270291165202 ], [ -94.876509893489327, 30.135488291075152 ], [ -94.876674893946173, 30.135744290665535 ], [ -94.876793893966465, 30.135917291229113 ], [ -94.877833894141148, 30.137431290955433 ], [ -94.878050893837511, 30.137793291196537 ], [ -94.878190893952393, 30.138079290916707 ], [ -94.87832089441261, 30.138403291790418 ], [ -94.87842589440973, 30.13868129143415 ], [ -94.878432893690771, 30.138707291777774 ], [ -94.878512894265143, 30.138968291488624 ], [ -94.878590893955987, 30.139389291455583 ], [ -94.878628894385329, 30.139770292083103 ], [ -94.87869589434068, 30.140451291910257 ], [ -94.878790893940462, 30.141171291973272 ], [ -94.878816894119169, 30.141365291879705 ], [ -94.878904893911681, 30.141867292229687 ], [ -94.878982894760654, 30.142108292563194 ], [ -94.879114894548977, 30.142458292441376 ], [ -94.879180894360559, 30.142582292069353 ], [ -94.87929689460573, 30.142776292277585 ], [ -94.879578895063815, 30.143170292254329 ], [ -94.880803895189914, 30.144811292661853 ], [ -94.881648895761316, 30.145942292406932 ], [ -94.881662894928397, 30.145956292717837 ], [ -94.881678895459913, 30.145973292504582 ], [ -94.881768895702791, 30.146066292786909 ], [ -94.881799895637656, 30.146098292948562 ], [ -94.882204895450016, 30.146583292669312 ], [ -94.882328895288197, 30.146718293031697 ], [ -94.88243289602471, 30.146832293298392 ], [ -94.883468895796995, 30.147753292855533 ], [ -94.883967896346903, 30.148138292952122 ], [ -94.884190896563837, 30.148301293139092 ], [ -94.884601896655624, 30.148602293469349 ], [ -94.884840896255213, 30.148794292853133 ], [ -94.885017896241479, 30.148936293577066 ], [ -94.88527889630997, 30.149169293766281 ], [ -94.885425895955819, 30.149301293517123 ], [ -94.885547896700089, 30.149445293101856 ], [ -94.885670896946962, 30.149589293340405 ], [ -94.885847896516637, 30.149825293336086 ], [ -94.886036896271136, 30.150113293710994 ], [ -94.886241896305066, 30.150439293538074 ], [ -94.886294896316542, 30.150560293410674 ], [ -94.886372897137562, 30.150737293992609 ], [ -94.886485896789523, 30.151104293596692 ], [ -94.886600896421186, 30.151355293422387 ], [ -94.886613897036241, 30.15138329370804 ], [ -94.886818897268967, 30.151987293813995 ], [ -94.88686689722141, 30.152141293694395 ], [ -94.886949897330055, 30.152405294243717 ], [ -94.887008896877674, 30.152624293971897 ], [ -94.887187897507388, 30.153281294471995 ], [ -94.887247897328493, 30.153501294035884 ], [ -94.887294897025157, 30.153683294521826 ], [ -94.887359897249027, 30.153928294623498 ], [ -94.887430896977804, 30.154233294308877 ], [ -94.887474897624614, 30.154417294453722 ], [ -94.887489897431038, 30.154483293969623 ], [ -94.887529897541555, 30.154680294760837 ], [ -94.887543897140986, 30.154746294374625 ], [ -94.887545896994226, 30.154757294046455 ], [ -94.887563896820893, 30.154863294024018 ], [ -94.887601897251244, 30.155079294363389 ], [ -94.887625897721676, 30.155216294846632 ], [ -94.887647897149876, 30.155334294363286 ], [ -94.88770389685061, 30.155651294648951 ], [ -94.887707897690007, 30.155674294168261 ], [ -94.887852897310594, 30.156400294872999 ], [ -94.887889897657573, 30.156554294460058 ], [ -94.887926897405976, 30.156687294349741 ], [ -94.887938897143755, 30.156729294883803 ], [ -94.888038897085053, 30.157014295236653 ], [ -94.888173897251676, 30.157284295088573 ], [ -94.888383897792764, 30.157601295277022 ], [ -94.888809897551013, 30.158140295161139 ], [ -94.888861897783386, 30.1582062949924 ], [ -94.889060897744955, 30.158427294912151 ], [ -94.889274897447621, 30.158612295045945 ], [ -94.889459897738433, 30.158747295541417 ], [ -94.889979897573127, 30.159053294894875 ], [ -94.890802898232835, 30.159462294972482 ], [ -94.892307898294064, 30.160240295239188 ], [ -94.892740899102918, 30.160464295208637 ], [ -94.893028899351478, 30.160617295630683 ], [ -94.893280898807447, 30.160794295013943 ], [ -94.893490898832241, 30.160928295229066 ], [ -94.893701898841201, 30.161110295904088 ], [ -94.893937899270938, 30.161331295214509 ], [ -94.894256899239991, 30.161653295149829 ], [ -94.894502899017198, 30.161914295862548 ], [ -94.895393899806791, 30.162903295808171 ], [ -94.895801899589557, 30.163348295803988 ], [ -94.897088900428358, 30.164755295799313 ], [ -94.898522900239058, 30.16634829633707 ], [ -94.898677900327584, 30.166544296311883 ], [ -94.898850900487091, 30.166797296281125 ], [ -94.899044901138012, 30.167128296833909 ], [ -94.899207900631197, 30.167434296200287 ], [ -94.899343900652511, 30.16777629640934 ], [ -94.899464900670637, 30.168125297011478 ], [ -94.899547900459737, 30.168438296607285 ], [ -94.899600900712144, 30.168715297218696 ], [ -94.89963890116843, 30.169061296686806 ], [ -94.899653900685536, 30.169345297291795 ], [ -94.899638900887879, 30.169858297290631 ], [ -94.899632901554682, 30.172081297865379 ], [ -94.899628901270205, 30.174104297677463 ], [ -94.899647901240712, 30.174549298483694 ], [ -94.89967090106974, 30.174951298433967 ], [ -94.899687901285773, 30.175066297859054 ], [ -94.899726900887401, 30.175302298248326 ], [ -94.899746901608069, 30.175424298022875 ], [ -94.899752901237179, 30.175465298119253 ], [ -94.899769901592606, 30.175573298303618 ], [ -94.899774901493316, 30.175591298009532 ], [ -94.899786900880798, 30.175632298598028 ], [ -94.89986490166622, 30.175900298672872 ], [ -94.899928901296576, 30.176058298469016 ], [ -94.900071900988422, 30.176407298493324 ], [ -94.900484901223891, 30.177289298779016 ], [ -94.900675901452587, 30.177697298352168 ], [ -94.901981901992471, 30.180534299043185 ], [ -94.905083902924304, 30.187274300306601 ], [ -94.905761902975712, 30.188705301144687 ], [ -94.905905903569149, 30.189025300434309 ], [ -94.905912903901196, 30.189041300771276 ], [ -94.906751903984429, 30.190830301419751 ], [ -94.90696390396009, 30.191284301391256 ], [ -94.907067904102874, 30.19153330112692 ], [ -94.907228904535998, 30.191875301177806 ], [ -94.907250904069954, 30.191922301430342 ], [ -94.907523904355884, 30.192525301576712 ], [ -94.907621904297841, 30.192742301640116 ], [ -94.907822904202348, 30.193261301565602 ], [ -94.907926904591477, 30.193602301858057 ], [ -94.90816290425947, 30.194567302145465 ], [ -94.908333904521825, 30.195262302119549 ], [ -94.908565904820591, 30.196213301907562 ], [ -94.908778904174042, 30.197079302209666 ], [ -94.909006904580977, 30.198064302320706 ], [ -94.909259904615524, 30.199068302965664 ], [ -94.909500905493474, 30.200018302665175 ], [ -94.909600905478143, 30.200441303228533 ], [ -94.909733904595413, 30.201000303428664 ], [ -94.909909904840262, 30.201711303093287 ], [ -94.910014905635137, 30.202134303278324 ], [ -94.9100549048934, 30.202308303052025 ], [ -94.910175905492821, 30.202831303017426 ], [ -94.910216905230158, 30.203006303420651 ], [ -94.910267905278815, 30.203222303387655 ], [ -94.910423905579137, 30.203873303399334 ], [ -94.910475905407367, 30.204090303903772 ], [ -94.910512905590579, 30.204242304158509 ], [ -94.910623905516189, 30.204701304249415 ], [ -94.910661905093207, 30.204854304215434 ], [ -94.910716905655562, 30.205077303480692 ], [ -94.910884905528491, 30.205749303989123 ], [ -94.910940905992177, 30.205973303769564 ], [ -94.911030905296514, 30.2063543040558 ], [ -94.91115390554306, 30.206868303788298 ], [ -94.911333906250036, 30.207489304573265 ], [ -94.911443905494679, 30.20786630471817 ], [ -94.911754906503035, 30.208908304326375 ], [ -94.912689906509954, 30.212034305041669 ], [ -94.913001906949177, 30.213077305275288 ], [ -94.913402906300604, 30.214442305772245 ], [ -94.913497906959535, 30.214765305484956 ], [ -94.914103906983399, 30.216720306289403 ], [ -94.914380906623592, 30.217694306377208 ], [ -94.914508907389049, 30.218098306207676 ], [ -94.914638907015473, 30.21853130683661 ], [ -94.914902907177918, 30.219408306473508 ], [ -94.915053907417089, 30.219893306401229 ], [ -94.915092907471106, 30.220021306723059 ], [ -94.915259907190588, 30.220460306884753 ], [ -94.915300907441363, 30.220550307234689 ], [ -94.915446907955342, 30.220861306955737 ], [ -94.915750907518955, 30.221396307249616 ], [ -94.915965907386152, 30.221735307115402 ], [ -94.91637790807853, 30.22227030743278 ], [ -94.916423908266708, 30.222326306886195 ], [ -94.916602907733179, 30.22254330722113 ], [ -94.916887907640202, 30.222855306918806 ], [ -94.917504908136607, 30.223495307157933 ], [ -94.917669908454684, 30.22367530744086 ], [ -94.918517908172504, 30.22459930773541 ], [ -94.918732908918841, 30.224816307709112 ], [ -94.919524908921161, 30.225692307729418 ], [ -94.919974909423559, 30.226174307877649 ], [ -94.92055590912922, 30.226795308059703 ], [ -94.920748909593897, 30.227003308172385 ], [ -94.921551909872164, 30.227868307832544 ], [ -94.923742910471887, 30.230226308424086 ], [ -94.923959910161813, 30.230465308617983 ], [ -94.924754910864152, 30.231339308642848 ], [ -94.9249059099824, 30.231205308575635 ], [ -94.925192910201389, 30.230952308822395 ], [ -94.925375910982098, 30.230827308441238 ], [ -94.925542910278665, 30.230714308711004 ], [ -94.925692910872996, 30.230622308514395 ], [ -94.925706910773698, 30.230615308976247 ], [ -94.925981910784799, 30.23049530884845 ], [ -94.926027910378167, 30.230224308898297 ], [ -94.926049911163133, 30.2301003088694 ], [ -94.926032911025843, 30.230037308073896 ], [ -94.925984910345633, 30.229868308452165 ], [ -94.925845910467615, 30.229631308326251 ], [ -94.92578091065424, 30.229433308040988 ], [ -94.925791910720235, 30.229388308150064 ], [ -94.925835910170875, 30.229219307997763 ], [ -94.926261910175143, 30.228497307704501 ], [ -94.926474910601129, 30.227952308098551 ], [ -94.926644910908806, 30.227464307934987 ], [ -94.926687911147795, 30.227345308211166 ], [ -94.92700491041613, 30.226862307674448 ], [ -94.927133910862679, 30.22666430738678 ], [ -94.927451911124976, 30.226216307601057 ], [ -94.927518910837094, 30.226123307288308 ], [ -94.927594910462332, 30.225953307675656 ], [ -94.927772910834321, 30.225671307201083 ], [ -94.928211911054959, 30.225359307745595 ], [ -94.928320910768235, 30.225093307323494 ], [ -94.928438910968453, 30.224824306983479 ], [ -94.928765911366739, 30.22457530770469 ], [ -94.92900791084638, 30.224422307195656 ], [ -94.929147910872629, 30.224270307149574 ], [ -94.929196911070946, 30.223970307383638 ], [ -94.929011911087329, 30.223595307415952 ], [ -94.928731910577994, 30.223026307144043 ], [ -94.928716910522454, 30.222718306982202 ], [ -94.928829910771086, 30.222483306907876 ], [ -94.929099911076435, 30.222322306381013 ], [ -94.929303910939694, 30.222363307033881 ], [ -94.929397910731765, 30.22238130649254 ], [ -94.929516911484683, 30.222405307054427 ], [ -94.929940911735955, 30.222672306475221 ], [ -94.930180911371139, 30.222786306841375 ], [ -94.93037591171398, 30.222763307063069 ], [ -94.930488911568062, 30.222584306762965 ], [ -94.930941911041714, 30.221688306760075 ], [ -94.930981911912795, 30.221340306630481 ], [ -94.93091891120946, 30.221096306492704 ], [ -94.930495911572677, 30.220704306598982 ], [ -94.930328910832216, 30.22051730618519 ], [ -94.929916910952059, 30.220059305931091 ], [ -94.929707911624249, 30.219497306005788 ], [ -94.92937891069019, 30.218984305692981 ], [ -94.9292899114525, 30.218562306013013 ], [ -94.929343910913303, 30.218463306204434 ], [ -94.929695911029583, 30.217713305735252 ], [ -94.92978291081927, 30.217261306058116 ], [ -94.92974091116966, 30.216741306014217 ], [ -94.929567911405329, 30.216374305377201 ], [ -94.929098910535771, 30.215957305518565 ], [ -94.928719910664853, 30.215824305898465 ], [ -94.928367911107117, 30.215739305313146 ], [ -94.927998910593558, 30.21559030538209 ], [ -94.92773991007374, 30.215450305353631 ], [ -94.927602910023808, 30.215287304969099 ], [ -94.927591910291895, 30.215224304940538 ], [ -94.927478910425492, 30.214548305617523 ], [ -94.927546910642448, 30.214192305589215 ], [ -94.92768991020381, 30.213796305025021 ], [ -94.927804910697446, 30.213277305335868 ], [ -94.92779091066366, 30.21275930501206 ], [ -94.927691909911346, 30.212418305164448 ], [ -94.927350910391539, 30.212237304883061 ], [ -94.927071910025404, 30.212249304861174 ], [ -94.926904910451455, 30.21231930479831 ], [ -94.926653909748268, 30.212350305017697 ], [ -94.926466910137677, 30.212305304455541 ], [ -94.92611190976055, 30.212231304521676 ], [ -94.925971910075162, 30.212122304466355 ], [ -94.925980909864222, 30.212024305010885 ], [ -94.925989909541613, 30.211941304661618 ], [ -94.926005910288694, 30.21162730490661 ], [ -94.926224909540224, 30.211252304715405 ], [ -94.926231910029813, 30.211031304653751 ], [ -94.926226909735959, 30.210299304184449 ], [ -94.926274909531458, 30.210178304268183 ], [ -94.926398909722124, 30.20986830405343 ], [ -94.926593909752398, 30.209635304541415 ], [ -94.926742909928365, 30.209456303937827 ], [ -94.927295910335587, 30.208965304440724 ], [ -94.927894910412661, 30.208610303844821 ], [ -94.928138909776408, 30.208449304029831 ], [ -94.928241910100866, 30.208361304166257 ], [ -94.92843091020886, 30.208086304068051 ], [ -94.928460909777471, 30.207859303713295 ], [ -94.928333909692611, 30.20768830422103 ], [ -94.928318910221691, 30.207429303436459 ], [ -94.928388909815098, 30.207086303756604 ], [ -94.928416910460442, 30.20695030367548 ], [ -94.928522909935822, 30.206700304015044 ], [ -94.929104910055059, 30.206086303659283 ], [ -94.929210910438812, 30.205844303554581 ], [ -94.929400910285793, 30.205390303002837 ], [ -94.929673910455918, 30.205101303417401 ], [ -94.929814910762659, 30.204891302815042 ], [ -94.929826910103657, 30.204736303576169 ], [ -94.92962691035693, 30.204426303461535 ], [ -94.929481910503924, 30.204076303292716 ], [ -94.929533909958423, 30.203695303332427 ], [ -94.929704909856056, 30.203379303318375 ], [ -94.930184910066501, 30.202855302622527 ], [ -94.930334910417685, 30.202589303039865 ], [ -94.930340910580114, 30.202150302699867 ], [ -94.93028091031843, 30.201736302677936 ], [ -94.930366910339188, 30.201551302206973 ], [ -94.930552910181945, 30.201519302521127 ], [ -94.930703910737122, 30.201405302888027 ], [ -94.930882910334645, 30.201163302360541 ], [ -94.93169491104257, 30.20004930230316 ], [ -94.931820910642045, 30.199538302217334 ], [ -94.931806911192467, 30.199198302320411 ], [ -94.93161391058014, 30.199067301780708 ], [ -94.931336910901479, 30.199006302219058 ], [ -94.931106910946141, 30.198915302134008 ], [ -94.93100791072041, 30.198711301837388 ], [ -94.931006910073521, 30.198570301728221 ], [ -94.931005910648409, 30.198038302156327 ], [ -94.931226910305398, 30.19752830143268 ], [ -94.932101910787154, 30.19647130099893 ], [ -94.932393911049061, 30.196108301121225 ], [ -94.93238991070919, 30.195702301370119 ], [ -94.932283910716038, 30.195598301377476 ], [ -94.932182910366748, 30.195499301399913 ], [ -94.931334910308308, 30.19518230132968 ], [ -94.931077909955889, 30.195033301237135 ], [ -94.930836910444938, 30.194893300858336 ], [ -94.930724909907866, 30.194734300652971 ], [ -94.930701910570747, 30.194423301280587 ], [ -94.930826910535316, 30.193898300572041 ], [ -94.93186591008768, 30.192138300085695 ], [ -94.932131910848213, 30.191607299962964 ], [ -94.932139910016645, 30.191539300168948 ], [ -94.932142910059667, 30.191524300473247 ], [ -94.932212910029335, 30.191049300197989 ], [ -94.932277910335586, 30.190204299708824 ], [ -94.932284910173223, 30.190044300253351 ], [ -94.932250910124168, 30.189840299643315 ], [ -94.932246910604746, 30.189813299835041 ], [ -94.932379910098106, 30.189527299824903 ], [ -94.932398910024972, 30.189467299536741 ], [ -94.932423910441898, 30.189109299569772 ], [ -94.932486910595486, 30.18887930026067 ], [ -94.932530910305402, 30.188829299561458 ], [ -94.932551910214272, 30.188811300124911 ], [ -94.932632910841846, 30.188747299388154 ], [ -94.932853910712879, 30.188604299882243 ], [ -94.932904910919632, 30.188571299814495 ], [ -94.932980910585584, 30.188510299761138 ], [ -94.93305691078568, 30.188422299806735 ], [ -94.933113910536576, 30.188296299273762 ], [ -94.933132911047238, 30.188230299919486 ], [ -94.933189910498399, 30.188169299615524 ], [ -94.933265910165773, 30.188109299534641 ], [ -94.933455910255887, 30.188059299458232 ], [ -94.933531910186474, 30.188026300018731 ], [ -94.933632910200842, 30.188010299963771 ], [ -94.933784910996735, 30.187927299583514 ], [ -94.93394891121612, 30.187801299510799 ], [ -94.934113910955674, 30.187614299903721 ], [ -94.934189911049515, 30.187493299574776 ], [ -94.934252910956658, 30.187311299314292 ], [ -94.934290910550132, 30.18709729956749 ], [ -94.934334911019675, 30.186948299051245 ], [ -94.934371910888572, 30.186870299289229 ], [ -94.934379911304219, 30.186855298959639 ], [ -94.934429910819588, 30.18670629912323 ], [ -94.934543910395632, 30.186624299002432 ], [ -94.934809910418238, 30.186547299641077 ], [ -94.935043911138123, 30.186503299623233 ], [ -94.935297911111903, 30.186514299321491 ], [ -94.935695910997026, 30.186486299287697 ], [ -94.935816911287532, 30.186398299374293 ], [ -94.935828911445327, 30.186261299299531 ], [ -94.935860911566394, 30.186091298732229 ], [ -94.935771911070731, 30.185832298693473 ], [ -94.935746910653251, 30.185717298685262 ], [ -94.935778911252442, 30.185579298647905 ], [ -94.935790911103865, 30.185458298789719 ], [ -94.935784911429607, 30.185288298652448 ], [ -94.936240911068623, 30.185013299155713 ], [ -94.93641191098007, 30.184886298911632 ], [ -94.93652491109367, 30.184787299077357 ], [ -94.936778911561319, 30.184611298983043 ], [ -94.936993911413609, 30.184413298652075 ], [ -94.937043910953278, 30.184292298769918 ], [ -94.937170911172331, 30.184237298972342 ], [ -94.937195911601208, 30.184177298634506 ], [ -94.937297911836382, 30.184105299019528 ], [ -94.937360911265628, 30.183957298969268 ], [ -94.937664911772046, 30.183825298785031 ], [ -94.937727911750585, 30.183737298240565 ], [ -94.937835912037684, 30.183363298472987 ], [ -94.937917911269949, 30.183237298690095 ], [ -94.938126911851427, 30.183088298768524 ], [ -94.938746912014437, 30.182808297925359 ], [ -94.938974912053965, 30.182775298482671 ], [ -94.939037911631146, 30.182742298143555 ], [ -94.939082911778982, 30.182703298088644 ], [ -94.939132911814482, 30.182626298654977 ], [ -94.939157912274396, 30.182538297939249 ], [ -94.939158911307487, 30.182483298386746 ], [ -94.939164911793199, 30.182269298247014 ], [ -94.93903191216323, 30.182016298132467 ], [ -94.93891191160273, 30.181823298094912 ], [ -94.938892911593825, 30.181521298249553 ], [ -94.938949912050006, 30.181328298250722 ], [ -94.938961911773958, 30.181207298023775 ], [ -94.939062911452908, 30.181108297695634 ], [ -94.939183911612176, 30.180960297849051 ], [ -94.93922191187886, 30.180889298056531 ], [ -94.93949391193982, 30.18089929808907 ], [ -94.939702911405405, 30.180790298262654 ], [ -94.939778911402897, 30.180729298095802 ], [ -94.939822911972797, 30.180713297711005 ], [ -94.939867911453817, 30.180696297535523 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 374, "Tract": "48291700303", "Area_SqMi": 3.0095884658268708, "total_2009": 1230, "total_2010": 1164, "total_2011": 1280, "total_2012": 1097, "total_2013": 1166, "total_2014": 1125, "total_2015": 1133, "total_2016": 1379, "total_2017": 1319, "total_2018": 1587, "total_2019": 1674, "total_2020": 1836, "age1": 549, "age2": 1696, "age3": 591, "earn1": 328, "earn2": 964, "earn3": 1544, "naics_s01": 0, "naics_s02": 9, "naics_s03": 0, "naics_s04": 86, "naics_s05": 5, "naics_s06": 18, "naics_s07": 121, "naics_s08": 0, "naics_s09": 9, "naics_s10": 22, "naics_s11": 9, "naics_s12": 20, "naics_s13": 0, "naics_s14": 0, "naics_s15": 1845, "naics_s16": 630, "naics_s17": 0, "naics_s18": 46, "naics_s19": 8, "naics_s20": 8, "race1": 2261, "race2": 394, "race3": 27, "race4": 99, "race5": 6, "race6": 49, "ethnicity1": 1976, "ethnicity2": 860, "edu1": 501, "edu2": 599, "edu3": 652, "edu4": 535, "Shape_Length": 41904.685340426127, "Shape_Area": 83902175.465114415, "total_2021": 2543, "total_2022": 2836 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.099780960129308, 30.323414321478346 ], [ -95.099733959882514, 30.323402321065181 ], [ -95.099691960089558, 30.323402321218836 ], [ -95.099598959384664, 30.323436321650018 ], [ -95.099548959756262, 30.323483321405551 ], [ -95.099383959521745, 30.323720321690562 ], [ -95.099295959742065, 30.32385632179923 ], [ -95.099200959448666, 30.324005321667439 ], [ -95.099182959715222, 30.324032321103978 ], [ -95.09916095993924, 30.324067321355404 ], [ -95.099128959439909, 30.324116321238527 ], [ -95.099111959495289, 30.324145321670652 ], [ -95.098958959121276, 30.324386321386722 ], [ -95.098751959346586, 30.324718321982925 ], [ -95.098514959332334, 30.325119321659439 ], [ -95.098369959916326, 30.325366321395006 ], [ -95.097898959035788, 30.325373321859718 ], [ -95.097610958827218, 30.325378322049147 ], [ -95.096814958769272, 30.325365322111089 ], [ -95.09648895912251, 30.325363322064391 ], [ -95.096018958738895, 30.325362322202913 ], [ -95.095987959205843, 30.325362322198945 ], [ -95.095933958686118, 30.325362321932648 ], [ -95.09589795904408, 30.325362321462666 ], [ -95.095867959323201, 30.325363321536656 ], [ -95.095393958501305, 30.325369321992174 ], [ -95.093975958759685, 30.325389322028187 ], [ -95.093502958289832, 30.325396322295571 ], [ -95.092895958133866, 30.325402322336974 ], [ -95.092430958089821, 30.325407322407901 ], [ -95.091621958102806, 30.325333322271085 ], [ -95.091077957619021, 30.325323322205247 ], [ -95.090471956993397, 30.325313321884263 ], [ -95.090290957692062, 30.325312321885075 ], [ -95.089749957288262, 30.325309322430083 ], [ -95.089569956740561, 30.325308322463176 ], [ -95.088829957104679, 30.32530432195686 ], [ -95.088289957354263, 30.325302322240304 ], [ -95.086609956576709, 30.325280321883536 ], [ -95.086508956211162, 30.325279322137529 ], [ -95.085871956485249, 30.32524232262794 ], [ -95.085975956333158, 30.325105322555906 ], [ -95.086188956258653, 30.324875322288097 ], [ -95.08620195614813, 30.324862322241739 ], [ -95.086684956943714, 30.324479321695375 ], [ -95.086815956431678, 30.3243603220625 ], [ -95.087104956027517, 30.324021322241116 ], [ -95.087183956751772, 30.323896322228485 ], [ -95.087207956226976, 30.323848321972761 ], [ -95.087268956414945, 30.32373132203762 ], [ -95.087381956305492, 30.323396321720175 ], [ -95.08745495642934, 30.323121322170486 ], [ -95.08748795694585, 30.322960322151566 ], [ -95.087550956205732, 30.322613321812916 ], [ -95.087554956155813, 30.322591321847039 ], [ -95.087597956382282, 30.322202321856768 ], [ -95.087599956556744, 30.32185432118558 ], [ -95.087527956831764, 30.321198320943921 ], [ -95.087402956529502, 30.320246321492842 ], [ -95.087369956134424, 30.319898321430532 ], [ -95.08615495614599, 30.319902320889778 ], [ -95.085107955534625, 30.319890321404937 ], [ -95.083523955799777, 30.319900321532344 ], [ -95.080803954242867, 30.319886321064409 ], [ -95.08062395429954, 30.319887321579568 ], [ -95.079751954972664, 30.319894321090171 ], [ -95.079578954202063, 30.31989632168607 ], [ -95.079477954607952, 30.319897321106176 ], [ -95.079062953814741, 30.319905321127766 ], [ -95.078890954512104, 30.319909321158676 ], [ -95.078330954494859, 30.319919321852034 ], [ -95.078281954250755, 30.319920320986494 ], [ -95.077521954264512, 30.319914321346744 ], [ -95.077306953378539, 30.319912321116682 ], [ -95.077035953975582, 30.319910321247146 ], [ -95.076651953808678, 30.319907321573123 ], [ -95.076576953466912, 30.319907321214558 ], [ -95.07624895308011, 30.319892321356281 ], [ -95.076171953978161, 30.319888321117094 ], [ -95.076092953052481, 30.319885321239273 ], [ -95.076077953396052, 30.319885321301154 ], [ -95.075950953598664, 30.319885321799319 ], [ -95.075842953961327, 30.319878321096535 ], [ -95.075573952928622, 30.319861321866554 ], [ -95.07521095364487, 30.319866321607062 ], [ -95.075092953444212, 30.319868321733992 ], [ -95.074843952928902, 30.31987232117967 ], [ -95.074550952715384, 30.319873321786172 ], [ -95.073674952701595, 30.319879321565175 ], [ -95.073383952498759, 30.31988232201417 ], [ -95.073045953168915, 30.319883321330344 ], [ -95.072775952914526, 30.319883321312933 ], [ -95.072034952333354, 30.319885321200488 ], [ -95.071697952325621, 30.319887321929514 ], [ -95.071595951860502, 30.319887321437232 ], [ -95.071291951993544, 30.319887321892562 ], [ -95.071190952082546, 30.319888321414631 ], [ -95.069239951535494, 30.319891321565837 ], [ -95.068181951104606, 30.319892321398875 ], [ -95.066705951098896, 30.319875321938529 ], [ -95.063664950000344, 30.319894321889102 ], [ -95.062859950286125, 30.319912322131451 ], [ -95.062530949530057, 30.319920321771793 ], [ -95.062118949792662, 30.319928322162319 ], [ -95.061833949941004, 30.319934322415122 ], [ -95.061664949766083, 30.319937322215921 ], [ -95.059754949464278, 30.319927322435415 ], [ -95.05862294893835, 30.319925321698435 ], [ -95.058119948643636, 30.319940321832068 ], [ -95.05769794828403, 30.319931322444432 ], [ -95.05726294882713, 30.319922322276987 ], [ -95.056615948918292, 30.319922322405034 ], [ -95.056434947918561, 30.319917322493506 ], [ -95.056013948857697, 30.319907321822033 ], [ -95.055596947736518, 30.319913321910835 ], [ -95.05464494821365, 30.319929322284711 ], [ -95.054345947483981, 30.31992732251372 ], [ -95.053929948048861, 30.319925322117577 ], [ -95.053621947847404, 30.319919322408889 ], [ -95.053316947194745, 30.31991532237193 ], [ -95.052697947308758, 30.319923322580891 ], [ -95.052390947769069, 30.3199273226648 ], [ -95.052423947365995, 30.320774322510378 ], [ -95.05242394797483, 30.320792322288614 ], [ -95.052447947609807, 30.321710322461296 ], [ -95.052442947278294, 30.321849322739318 ], [ -95.052412947795858, 30.322679323255073 ], [ -95.052412947284338, 30.323388323359147 ], [ -95.052412947903491, 30.323612323228719 ], [ -95.052388947192469, 30.324254323421165 ], [ -95.052370947866862, 30.324955323492077 ], [ -95.052357947907211, 30.325500323585295 ], [ -95.052356947855813, 30.325532323380024 ], [ -95.052359947404184, 30.325878323941957 ], [ -95.052347947344032, 30.326800323575629 ], [ -95.05234594780913, 30.327061323533098 ], [ -95.052342948148478, 30.327763323501831 ], [ -95.052481947290346, 30.327863324337699 ], [ -95.052900948226693, 30.328163324118727 ], [ -95.053040947920195, 30.328264323881502 ], [ -95.053823948272182, 30.328852323814999 ], [ -95.054485948396007, 30.329333324469506 ], [ -95.054970948768897, 30.329699324635349 ], [ -95.055172948080141, 30.329851324368988 ], [ -95.055737948271428, 30.330273324648676 ], [ -95.056098948495318, 30.330554324019083 ], [ -95.058275949476069, 30.332197325051627 ], [ -95.060131950013883, 30.333579324706466 ], [ -95.060443950435442, 30.333811325181362 ], [ -95.06051595009869, 30.33386832484857 ], [ -95.060734949963361, 30.334040324691305 ], [ -95.060781950358901, 30.334078324934193 ], [ -95.061961950800921, 30.334962324722959 ], [ -95.062231950694738, 30.335155325252043 ], [ -95.062521951129469, 30.335386324791845 ], [ -95.062656950528648, 30.335487325527215 ], [ -95.062748950626826, 30.335555325427997 ], [ -95.062757950816803, 30.335562324997689 ], [ -95.063024951010419, 30.335761324775774 ], [ -95.063116951244112, 30.335830325335831 ], [ -95.063226951069325, 30.335913324875637 ], [ -95.063558950755095, 30.336164325421525 ], [ -95.063669950906089, 30.336248324927571 ], [ -95.063893951253291, 30.336417325215738 ], [ -95.064225951085845, 30.336668324871759 ], [ -95.064849951440408, 30.337140325277812 ], [ -95.065504951445803, 30.337637325560671 ], [ -95.065894951568765, 30.337928325305132 ], [ -95.066032951666813, 30.338031325144055 ], [ -95.066452951998556, 30.338348325754811 ], [ -95.067084952353525, 30.338828325593006 ], [ -95.067748952356041, 30.339326325686766 ], [ -95.068092952601731, 30.339551325967506 ], [ -95.06821495254276, 30.339623326097119 ], [ -95.068424952502809, 30.339746325639339 ], [ -95.068785952050234, 30.339959325914567 ], [ -95.069088952741694, 30.340109326265416 ], [ -95.069135952559535, 30.340132325660068 ], [ -95.069279952231696, 30.340196326282101 ], [ -95.069567953195488, 30.340324326187986 ], [ -95.069819952394056, 30.340421325525192 ], [ -95.069893952803469, 30.340448325931646 ], [ -95.070118953188711, 30.340529325895492 ], [ -95.070193952460841, 30.340557325493872 ], [ -95.070301952518648, 30.340595326227248 ], [ -95.070346952533157, 30.340611326284233 ], [ -95.070631952922895, 30.340689325467075 ], [ -95.070742952883904, 30.34072032558851 ], [ -95.070882953610862, 30.340758325500222 ], [ -95.070968952907933, 30.340782325727147 ], [ -95.071306953368037, 30.340854325839302 ], [ -95.071449952971548, 30.340885325760283 ], [ -95.071783953736627, 30.34095032615328 ], [ -95.072024953949438, 30.340988326100454 ], [ -95.072396953897396, 30.341047325693641 ], [ -95.072726953624965, 30.341067326184021 ], [ -95.072838953212312, 30.341072326030382 ], [ -95.073774953895736, 30.341091325627755 ], [ -95.07387895410676, 30.341094326207084 ], [ -95.074359954153977, 30.341094326164999 ], [ -95.074562953934858, 30.341094325884342 ], [ -95.075174954153994, 30.341094325752856 ], [ -95.075378954704547, 30.341095325427471 ], [ -95.075795954059089, 30.341094325836881 ], [ -95.077045954603761, 30.341093325535653 ], [ -95.077463954584417, 30.341093325562497 ], [ -95.077674954518969, 30.341090325917456 ], [ -95.078310955533581, 30.34108532576305 ], [ -95.078522955014932, 30.34108432593629 ], [ -95.078709955060717, 30.341083325918465 ], [ -95.079274955016643, 30.341080326036852 ], [ -95.079462955857593, 30.3410803261281 ], [ -95.079686954978072, 30.341079326031345 ], [ -95.080359955175751, 30.341077325615665 ], [ -95.080584956106293, 30.341077326104145 ], [ -95.080817955817736, 30.341077325945253 ], [ -95.080957955652309, 30.341077325334879 ], [ -95.081517955712485, 30.341078325992488 ], [ -95.081751956258685, 30.341079325356283 ], [ -95.082829956233994, 30.341080325468742 ], [ -95.084037956745647, 30.341082325901418 ], [ -95.08429395683136, 30.341099325821883 ], [ -95.084792957004794, 30.34114732589779 ], [ -95.085231957067165, 30.341243325121166 ], [ -95.085726957483203, 30.341361325919358 ], [ -95.085980957107452, 30.341434325976046 ], [ -95.086310957342192, 30.341564325742407 ], [ -95.086527957004506, 30.341654325605937 ], [ -95.086879957696169, 30.341801325803246 ], [ -95.087178957497926, 30.341932325900547 ], [ -95.087395957131577, 30.342028325310846 ], [ -95.087618957217188, 30.342122325206958 ], [ -95.088287957694035, 30.342405325316587 ], [ -95.088510958251717, 30.3425003255084 ], [ -95.088544957920902, 30.342513325908342 ], [ -95.088648958056496, 30.342552325557605 ], [ -95.088683957671691, 30.342566326073648 ], [ -95.088795957711525, 30.34237232557221 ], [ -95.08913095833347, 30.341790325165967 ], [ -95.089243957573103, 30.341597325303123 ], [ -95.089436957676199, 30.341259325391182 ], [ -95.089953957933261, 30.340361325159236 ], [ -95.090022958011033, 30.340250324889436 ], [ -95.090228958213416, 30.33992032468727 ], [ -95.090333958313337, 30.33973532482123 ], [ -95.090648958340708, 30.339181324714456 ], [ -95.090754957845277, 30.338997324626199 ], [ -95.090862958102178, 30.338809324646167 ], [ -95.091188958431701, 30.338245324386492 ], [ -95.091297957980586, 30.338058325059432 ], [ -95.091749958011007, 30.337272324442885 ], [ -95.09253095807162, 30.335915324175033 ], [ -95.092634958022586, 30.335734324183179 ], [ -95.093014958153006, 30.335120324282649 ], [ -95.093122958541272, 30.3349253240774 ], [ -95.093564958300036, 30.334134324015185 ], [ -95.094065958359749, 30.333296323828218 ], [ -95.094207959142423, 30.333060323521885 ], [ -95.095538959160223, 30.330764323020251 ], [ -95.096029959554429, 30.329920323213084 ], [ -95.09606495883132, 30.329854323076322 ], [ -95.096168959650285, 30.32965632260867 ], [ -95.096204959640616, 30.329590322539008 ], [ -95.096734959330206, 30.328723322872435 ], [ -95.096938959671959, 30.328365322083609 ], [ -95.097622959894792, 30.327169322437825 ], [ -95.098489959846745, 30.325663321714039 ], [ -95.099055959589364, 30.3247093212754 ], [ -95.099082959132687, 30.324659321943322 ], [ -95.099689959537216, 30.3235743212608 ], [ -95.099780960129308, 30.323414321478346 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 375, "Tract": "48291700802", "Area_SqMi": 17.071263304204646, "total_2009": 973, "total_2010": 598, "total_2011": 651, "total_2012": 1548, "total_2013": 1482, "total_2014": 1538, "total_2015": 1781, "total_2016": 1816, "total_2017": 1883, "total_2018": 1797, "total_2019": 1827, "total_2020": 1750, "age1": 347, "age2": 1161, "age3": 447, "earn1": 337, "earn2": 615, "earn3": 1003, "naics_s01": 1, "naics_s02": 10, "naics_s03": 0, "naics_s04": 137, "naics_s05": 84, "naics_s06": 0, "naics_s07": 74, "naics_s08": 9, "naics_s09": 0, "naics_s10": 33, "naics_s11": 13, "naics_s12": 22, "naics_s13": 0, "naics_s14": 1, "naics_s15": 1243, "naics_s16": 132, "naics_s17": 5, "naics_s18": 56, "naics_s19": 1, "naics_s20": 134, "race1": 1680, "race2": 220, "race3": 17, "race4": 21, "race5": 0, "race6": 17, "ethnicity1": 1523, "ethnicity2": 432, "edu1": 277, "edu2": 458, "edu3": 536, "edu4": 337, "Shape_Length": 110516.17697699768, "Shape_Area": 475917603.16207373, "total_2021": 1881, "total_2022": 1955 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.914932901011696, 30.088531279991383 ], [ -94.91488690135067, 30.088411280263941 ], [ -94.914731901049947, 30.088057279850517 ], [ -94.914677901263687, 30.087935279368793 ], [ -94.914454901062996, 30.087423279513246 ], [ -94.914053901046884, 30.086461279354314 ], [ -94.913925900362671, 30.086145279836725 ], [ -94.913804900763338, 30.085847279463458 ], [ -94.913749900885733, 30.085701279026967 ], [ -94.913728900544825, 30.085533279142513 ], [ -94.913636900824258, 30.085319279344663 ], [ -94.913554900354782, 30.085130279103289 ], [ -94.913367901059601, 30.084677279151286 ], [ -94.913279900161058, 30.084463278697541 ], [ -94.913108900211711, 30.084049278615321 ], [ -94.913008900461321, 30.083806278983342 ], [ -94.912748900474924, 30.083175278999658 ], [ -94.912195900453099, 30.081835278524178 ], [ -94.911942900488611, 30.081221278164321 ], [ -94.911924900398233, 30.081179278418968 ], [ -94.911880900379941, 30.081078278125759 ], [ -94.911748900559843, 30.080778278564775 ], [ -94.911705899666899, 30.080678278062539 ], [ -94.91162290052408, 30.080469278255574 ], [ -94.911486899655799, 30.080121278051973 ], [ -94.911042900234094, 30.078987278068595 ], [ -94.911021900255207, 30.078933277716242 ], [ -94.910830899931625, 30.078454277901834 ], [ -94.910609899509652, 30.077899277491017 ], [ -94.910408899318057, 30.077435277637502 ], [ -94.909807899843244, 30.076045277127761 ], [ -94.909777899033656, 30.075977277186588 ], [ -94.909626899348098, 30.075625277365948 ], [ -94.909607899387964, 30.075582277245601 ], [ -94.909570899497425, 30.075498277096134 ], [ -94.909462899655637, 30.07524627758341 ], [ -94.909426899744247, 30.075163277297811 ], [ -94.909410899080612, 30.075127277606679 ], [ -94.909375899464791, 30.075047277594766 ], [ -94.909329898957026, 30.074940277295131 ], [ -94.909287899170934, 30.074844277054442 ], [ -94.909082899010997, 30.07436527713952 ], [ -94.90902289865312, 30.074226277175008 ], [ -94.90900289925213, 30.074181276840132 ], [ -94.908042898341662, 30.071977276590918 ], [ -94.907696899035173, 30.071182276869713 ], [ -94.907597898491616, 30.070954276438311 ], [ -94.907300898066467, 30.070273275997835 ], [ -94.907201898438728, 30.07004627625701 ], [ -94.907185898330894, 30.070010276200197 ], [ -94.907138898774804, 30.069903275980437 ], [ -94.907123898337915, 30.069868276749354 ], [ -94.907036898203287, 30.069661276707819 ], [ -94.907002898204425, 30.069579276083999 ], [ -94.906874897901005, 30.069334275980133 ], [ -94.906726897917466, 30.069064275855023 ], [ -94.906619898599217, 30.068868275895085 ], [ -94.906453898170554, 30.068566276418359 ], [ -94.906376898613487, 30.068425275686266 ], [ -94.906084897638635, 30.067941275942221 ], [ -94.905977897560547, 30.067784276177552 ], [ -94.905913898427315, 30.067690276287369 ], [ -94.905883898383507, 30.067646275957109 ], [ -94.90572289744479, 30.067405275500008 ], [ -94.905624897963904, 30.067261275755008 ], [ -94.905333897958101, 30.066832275825981 ], [ -94.905236897316612, 30.06669027584357 ], [ -94.905156897954484, 30.066572275552996 ], [ -94.905046897351355, 30.066410275510652 ], [ -94.904651898065538, 30.065829275983614 ], [ -94.9034648973131, 30.064037275379068 ], [ -94.900887896049682, 30.060221274521787 ], [ -94.900723895871579, 30.059976274652126 ], [ -94.899149895436253, 30.05763527427154 ], [ -94.899000895526186, 30.057413274454809 ], [ -94.89886889574035, 30.057218273916096 ], [ -94.898834895337643, 30.057168273904075 ], [ -94.898734896044346, 30.05701827441877 ], [ -94.898701895227305, 30.056969274370097 ], [ -94.898335895350755, 30.056436274211432 ], [ -94.898236895302546, 30.056290273939769 ], [ -94.897555894969514, 30.055289273398195 ], [ -94.896839894898505, 30.054258273829792 ], [ -94.896371895169352, 30.053583273079123 ], [ -94.895898894420696, 30.052868273263226 ], [ -94.894479894281062, 30.050723273275004 ], [ -94.894007894299293, 30.050009272536506 ], [ -94.89375989357714, 30.049637272318311 ], [ -94.893017893329557, 30.048521272594691 ], [ -94.892770893796651, 30.04814927274219 ], [ -94.892697893488148, 30.048039272116544 ], [ -94.892478893580318, 30.047711272175032 ], [ -94.892406893164505, 30.047602272325921 ], [ -94.892252893517494, 30.047373272487111 ], [ -94.89179189387464, 30.046687271725528 ], [ -94.89163289281133, 30.046461272155376 ], [ -94.891643892971857, 30.046454272196797 ], [ -94.891583893214573, 30.046375271807658 ], [ -94.891023892840494, 30.045479272233624 ], [ -94.890714892650436, 30.045031271388254 ], [ -94.890654892627325, 30.044940271724322 ], [ -94.890474893290389, 30.044668271851382 ], [ -94.890414892747472, 30.044578271334423 ], [ -94.890334892491865, 30.044464271796716 ], [ -94.890096892442457, 30.044125271436737 ], [ -94.890049892514753, 30.044057271925283 ], [ -94.890017893175994, 30.044012271792756 ], [ -94.889622892829323, 30.044242271553482 ], [ -94.888438892484473, 30.044934271629149 ], [ -94.888044892329617, 30.045165271518208 ], [ -94.88783889257941, 30.045298272168253 ], [ -94.887711892015332, 30.045382272078466 ], [ -94.887250892398129, 30.045741272135999 ], [ -94.887057891991816, 30.04589227227472 ], [ -94.886239892048479, 30.046516272324325 ], [ -94.885205892123565, 30.0473272721261 ], [ -94.8851658913335, 30.047360272419802 ], [ -94.884489891680914, 30.04790727303434 ], [ -94.884476891366376, 30.047920272837054 ], [ -94.884421891317587, 30.047961272789575 ], [ -94.884182891796783, 30.048141272256533 ], [ -94.883840891169427, 30.048407272922212 ], [ -94.883591891040197, 30.048576272478716 ], [ -94.883559891482093, 30.048599272603436 ], [ -94.883130891501025, 30.048883272920445 ], [ -94.882825891083669, 30.049053272554779 ], [ -94.882563891583587, 30.049201273119074 ], [ -94.882393891286938, 30.04928927295617 ], [ -94.882231890879041, 30.04927727308332 ], [ -94.882136891505411, 30.049316272782026 ], [ -94.881726891244938, 30.049462272902034 ], [ -94.881534890553198, 30.049521273202213 ], [ -94.881323890575587, 30.049577273453458 ], [ -94.881100891093496, 30.049634273172749 ], [ -94.880761890386324, 30.049696273384367 ], [ -94.880050890562629, 30.049799272727387 ], [ -94.878591890458011, 30.050014273669955 ], [ -94.87838489030149, 30.050045273323924 ], [ -94.87540688910299, 30.050469273893121 ], [ -94.873887888663035, 30.050700273436156 ], [ -94.873348889001846, 30.050776273281564 ], [ -94.871825888715705, 30.051014273695962 ], [ -94.87096088805427, 30.05114627376264 ], [ -94.868628887464823, 30.051501273742403 ], [ -94.866488886667284, 30.051810273685181 ], [ -94.866470886790665, 30.051813273975416 ], [ -94.865502887293914, 30.051953274541003 ], [ -94.864942887078357, 30.052037274470809 ], [ -94.862454885645136, 30.052408273930201 ], [ -94.862353885731949, 30.05242327429692 ], [ -94.860849885335554, 30.052641274129932 ], [ -94.858497884801622, 30.052983274202376 ], [ -94.857617885346386, 30.053111274242525 ], [ -94.856264884505393, 30.053319274754678 ], [ -94.856039883981694, 30.053351275000797 ], [ -94.855707884199205, 30.053399275063057 ], [ -94.854435884241909, 30.053585274748919 ], [ -94.854281883956304, 30.053607274849007 ], [ -94.852205883009475, 30.05391327512417 ], [ -94.848246881978099, 30.05449827565258 ], [ -94.845518881885027, 30.054907275307801 ], [ -94.843290881163568, 30.055242275781918 ], [ -94.843462880883038, 30.055400275727518 ], [ -94.84352688085373, 30.055438275391516 ], [ -94.843696881033281, 30.055504275259636 ], [ -94.84374788166599, 30.055537275232929 ], [ -94.843798881853985, 30.055592275235 ], [ -94.843867881174177, 30.055647275808962 ], [ -94.843962881639513, 30.055686275536029 ], [ -94.844512881817849, 30.055740275490862 ], [ -94.844613881295757, 30.055740275217047 ], [ -94.844746881846234, 30.055729275416972 ], [ -94.845298881964837, 30.055627275420015 ], [ -94.845346882258099, 30.055619275503851 ], [ -94.845644881432079, 30.055603275402277 ], [ -94.846250882378726, 30.055614275366349 ], [ -94.84638988167967, 30.055597275778009 ], [ -94.84654788212535, 30.055553275479244 ], [ -94.846693882270174, 30.05549827555814 ], [ -94.847059882305899, 30.055294275044876 ], [ -94.847154881766357, 30.05525027513071 ], [ -94.84724988244956, 30.055228275232281 ], [ -94.847502881976524, 30.055212275148303 ], [ -94.847584882668841, 30.055223275531343 ], [ -94.847635882223599, 30.055239274959714 ], [ -94.84769888283266, 30.055278275322522 ], [ -94.847767881999857, 30.055327275304592 ], [ -94.847831882722559, 30.055393275077282 ], [ -94.847913882323056, 30.055503275836852 ], [ -94.847938882327242, 30.055542275483901 ], [ -94.847900882706995, 30.055712275779385 ], [ -94.847856882176373, 30.055783275095244 ], [ -94.847667882003719, 30.056015275992745 ], [ -94.84756588241089, 30.056163275550855 ], [ -94.847471882627488, 30.05635027572319 ], [ -94.847225881961648, 30.057246275772322 ], [ -94.847187882852694, 30.057560275748916 ], [ -94.847180882004665, 30.057697276332224 ], [ -94.847193882434823, 30.058027275790874 ], [ -94.847149882897583, 30.058247275804494 ], [ -94.846799881980644, 30.058919276228377 ], [ -94.846795881921508, 30.058929276533721 ], [ -94.846410882584749, 30.059628276804805 ], [ -94.846271882012545, 30.059930276475406 ], [ -94.846201882706268, 30.060106276802966 ], [ -94.84616488175358, 30.060238276046071 ], [ -94.846145882713103, 30.060414276543945 ], [ -94.84618388190566, 30.060755276269802 ], [ -94.846183881866025, 30.060849276616725 ], [ -94.846167882604831, 30.060932276681957 ], [ -94.846120881880296, 30.061173276242052 ], [ -94.846126882303054, 30.061250277109032 ], [ -94.846177882568682, 30.061360276417901 ], [ -94.846215882638035, 30.061415276953003 ], [ -94.846664882918361, 30.061745276447915 ], [ -94.846714882953876, 30.061795276538611 ], [ -94.846855882647546, 30.06202427650388 ], [ -94.846878882018842, 30.062060276966374 ], [ -94.846898882712807, 30.062106277074562 ], [ -94.846942882659491, 30.062201276882579 ], [ -94.847012882287402, 30.062465276959617 ], [ -94.846695882587085, 30.062570276778583 ], [ -94.846632882195948, 30.062603277374972 ], [ -94.846563882519632, 30.062658276674778 ], [ -94.846487882220615, 30.062751276784496 ], [ -94.846386882468067, 30.062911277098369 ], [ -94.846304882146782, 30.062988277062807 ], [ -94.84622888206907, 30.063021277403283 ], [ -94.846095882799318, 30.063048276825619 ], [ -94.845848882325583, 30.062999277245027 ], [ -94.845551882070041, 30.062851276622993 ], [ -94.845488882394932, 30.062840276734129 ], [ -94.845419882202279, 30.062840276822175 ], [ -94.845324882419646, 30.062867276649222 ], [ -94.845292881874826, 30.062906276611621 ], [ -94.845261881753757, 30.062988277486095 ], [ -94.845230882153388, 30.063287276766381 ], [ -94.845229882315351, 30.063307277032582 ], [ -94.845210882561517, 30.063401277609874 ], [ -94.845128882344014, 30.063555277300143 ], [ -94.84508488209417, 30.063665277336717 ], [ -94.84506588161787, 30.063747277214876 ], [ -94.845065881856456, 30.063945277106214 ], [ -94.845097882401816, 30.064275277726228 ], [ -94.845135881740319, 30.0644572773395 ], [ -94.845185881968689, 30.064605277192513 ], [ -94.845280881828373, 30.064825277315421 ], [ -94.845407881751385, 30.065056277626336 ], [ -94.845451882525197, 30.06511627792921 ], [ -94.845533882292898, 30.065188277251195 ], [ -94.845837882089199, 30.065347277712281 ], [ -94.846564882701983, 30.06564427762746 ], [ -94.847569883225262, 30.065891277967111 ], [ -94.847721882875121, 30.065919277609456 ], [ -94.847961883014889, 30.065979277871161 ], [ -94.848202882759736, 30.066083277777597 ], [ -94.848328883474551, 30.066149277456319 ], [ -94.848480882979587, 30.06627027790984 ], [ -94.848549883169369, 30.066353277648162 ], [ -94.848568882638375, 30.066391277334869 ], [ -94.848657882943769, 30.066633277933917 ], [ -94.848670882745282, 30.066754277886819 ], [ -94.848657883491256, 30.066853277343196 ], [ -94.848625883536499, 30.066914277996283 ], [ -94.848543882793336, 30.066991277439751 ], [ -94.84843088332677, 30.06707927749089 ], [ -94.847880882518879, 30.067381277537617 ], [ -94.847791883243573, 30.067442278252653 ], [ -94.84769088334474, 30.067535277516626 ], [ -94.847646882594162, 30.067612277820391 ], [ -94.847627882919767, 30.067684277704963 ], [ -94.84763388305764, 30.067766278370065 ], [ -94.847728883045207, 30.068063278280654 ], [ -94.847709883179078, 30.068124277741095 ], [ -94.84765988252623, 30.068195278321728 ], [ -94.847589883290652, 30.068250277943527 ], [ -94.847532882552514, 30.068283278395999 ], [ -94.847311882974665, 30.06836027851848 ], [ -94.847216882889668, 30.068415278201304 ], [ -94.847077883050503, 30.068553278276692 ], [ -94.846932882623264, 30.068619277732481 ], [ -94.846869882673516, 30.068624278245952 ], [ -94.846514883160054, 30.068619278498723 ], [ -94.846312882785767, 30.068663277938235 ], [ -94.846268882417959, 30.068685278421576 ], [ -94.846154882542379, 30.06879027803236 ], [ -94.846059882450575, 30.068922278060722 ], [ -94.846021882734604, 30.069010278686864 ], [ -94.84599088209535, 30.069560278526314 ], [ -94.845946882251766, 30.069703278109579 ], [ -94.845883882425355, 30.069851278199057 ], [ -94.845813883005292, 30.069950278590529 ], [ -94.845630882639895, 30.070253278446788 ], [ -94.845573883028706, 30.070330278896581 ], [ -94.8452578825204, 30.070632278796666 ], [ -94.845169882866259, 30.070907278833392 ], [ -94.845055882133252, 30.071171278913976 ], [ -94.844872882318128, 30.071485279070899 ], [ -94.84482788238779, 30.071578278779135 ], [ -94.844758882713109, 30.071644278502408 ], [ -94.844707881996172, 30.07172827860003 ], [ -94.844575882416265, 30.071952278834331 ], [ -94.844493882163263, 30.072123278604838 ], [ -94.844423881977249, 30.072293279028493 ], [ -94.844373882714834, 30.072497279082491 ], [ -94.844341882837199, 30.07268927894134 ], [ -94.844354882848876, 30.073162279644784 ], [ -94.844455882101528, 30.074229279538763 ], [ -94.844468882097075, 30.074482279105283 ], [ -94.844456882919914, 30.074614279459354 ], [ -94.844399882687114, 30.0748452795806 ], [ -94.844298882503494, 30.075125279562172 ], [ -94.84413388262638, 30.075406279593096 ], [ -94.843988882785027, 30.07558727928226 ], [ -94.843838881845045, 30.075726280051594 ], [ -94.843798882386466, 30.075763280120178 ], [ -94.843672882494232, 30.075851279633273 ], [ -94.843223882042793, 30.07609327995516 ], [ -94.842641881896952, 30.076391280160752 ], [ -94.842233882417744, 30.076609280428862 ], [ -94.841718882365569, 30.076886279635406 ], [ -94.841143881964669, 30.077260280574322 ], [ -94.840916881214042, 30.077337279982309 ], [ -94.840637881362682, 30.077364280258578 ], [ -94.840271881189537, 30.077452279965673 ], [ -94.83984788168317, 30.077793280287601 ], [ -94.839329881073382, 30.07825628010788 ], [ -94.839127880771699, 30.07837728024214 ], [ -94.838899881220058, 30.07844328021929 ], [ -94.838608881452558, 30.078476280731788 ], [ -94.838374881580322, 30.07852028011558 ], [ -94.837868881255716, 30.078564280115899 ], [ -94.837666880567014, 30.078536280610397 ], [ -94.83737588051261, 30.078476280498005 ], [ -94.837295881092288, 30.078444280823341 ], [ -94.837059880418394, 30.078350280237217 ], [ -94.83693288051127, 30.078399280834095 ], [ -94.836838880286805, 30.07846528044664 ], [ -94.836787881107483, 30.078553280291626 ], [ -94.836755880553397, 30.078685280740096 ], [ -94.836699880315734, 30.079054280654873 ], [ -94.8365538806286, 30.079328281167331 ], [ -94.83634588093409, 30.079637280917698 ], [ -94.836323881088887, 30.079664281017223 ], [ -94.83625688101381, 30.079747280493635 ], [ -94.836136880209878, 30.079813281249223 ], [ -94.836035880365458, 30.079835281215328 ], [ -94.835757880731265, 30.079769281140258 ], [ -94.835529880160522, 30.079763280855254 ], [ -94.835181880092208, 30.079849280873045 ], [ -94.835061880372464, 30.079879280690594 ], [ -94.834979879759274, 30.079923280824829 ], [ -94.83488488065079, 30.079950280924372 ], [ -94.834751880280308, 30.080016281172774 ], [ -94.834454880566696, 30.080198281276562 ], [ -94.834151880315844, 30.080401281359183 ], [ -94.833911880291353, 30.080550280781598 ], [ -94.833386879720564, 30.080809281139313 ], [ -94.83266587961603, 30.081089280796064 ], [ -94.832418879455432, 30.081210281537096 ], [ -94.832267880064578, 30.081315281678243 ], [ -94.832178879200498, 30.081397281109922 ], [ -94.832033879729778, 30.081609281008788 ], [ -94.831350879253819, 30.082618281243594 ], [ -94.831623879552581, 30.082491281321868 ], [ -94.831660879687988, 30.082475281733522 ], [ -94.831774879890958, 30.082447281566427 ], [ -94.831869879172999, 30.082442281712922 ], [ -94.831926879902269, 30.082475281117009 ], [ -94.831976880056899, 30.082557281826158 ], [ -94.832027880034389, 30.082667281240074 ], [ -94.832039879742823, 30.08280528121001 ], [ -94.83201487991056, 30.083014282029104 ], [ -94.832008879343434, 30.083030281537962 ], [ -94.831932879670632, 30.083283281440742 ], [ -94.83192687962574, 30.083320281576537 ], [ -94.831882879540302, 30.083586281487378 ], [ -94.831907880124717, 30.083734282147788 ], [ -94.831976879507181, 30.0838282821516 ], [ -94.832135879943124, 30.083987281941951 ], [ -94.83217987982276, 30.084070281713299 ], [ -94.832229880164263, 30.084279281576858 ], [ -94.832236879878181, 30.084444281674752 ], [ -94.832287879465937, 30.084719282368901 ], [ -94.832287879284834, 30.085021282442877 ], [ -94.832223879713851, 30.085340282165433 ], [ -94.83214187992624, 30.085555282440282 ], [ -94.832065880148178, 30.085654282070191 ], [ -94.831888880182234, 30.085786282668671 ], [ -94.831743879420259, 30.085879282612183 ], [ -94.831477879468721, 30.085989282624467 ], [ -94.831267879190975, 30.086012282581251 ], [ -94.831231879965983, 30.086017282030635 ], [ -94.830915879310282, 30.086066282496308 ], [ -94.830579879067514, 30.086226282666715 ], [ -94.830377879639414, 30.086418282564239 ], [ -94.83006187894749, 30.086792282149897 ], [ -94.829865879065679, 30.087056282343621 ], [ -94.829631878957741, 30.087331282704181 ], [ -94.829359878802435, 30.087524282464443 ], [ -94.829201878953398, 30.087766282742223 ], [ -94.829107879308609, 30.08795828254237 ], [ -94.829018879390006, 30.088057282466917 ], [ -94.828879879200926, 30.088134282763143 ], [ -94.828708879148465, 30.088184282955947 ], [ -94.828373878532076, 30.088206282974838 ], [ -94.827861879082988, 30.08812928278498 ], [ -94.827665879017019, 30.088090283181987 ], [ -94.827513878871983, 30.087986282791899 ], [ -94.827393878358535, 30.087931282416179 ], [ -94.827247878960662, 30.087926282942007 ], [ -94.82706487888413, 30.087992282798897 ], [ -94.827083879121588, 30.088250282609152 ], [ -94.827191879136848, 30.088585282890168 ], [ -94.827184879145193, 30.088866282658991 ], [ -94.827197878304062, 30.088970282749706 ], [ -94.82724887835009, 30.089058282970623 ], [ -94.827330879129306, 30.089157282638869 ], [ -94.827431878791216, 30.089339282868028 ], [ -94.82746387848033, 30.089416283202151 ], [ -94.827463879207002, 30.089537283081686 ], [ -94.827380879005062, 30.089768283369754 ], [ -94.827355878333165, 30.089938283412977 ], [ -94.827362878443694, 30.090026283595886 ], [ -94.827387878748411, 30.090125283203271 ], [ -94.827520879065034, 30.090472283134758 ], [ -94.827520878893893, 30.090565283659753 ], [ -94.827482878540636, 30.090670283352086 ], [ -94.827406878587979, 30.090769283117943 ], [ -94.827311878354521, 30.090824283692037 ], [ -94.827172879202237, 30.090879283352997 ], [ -94.827058879167524, 30.090950283042758 ], [ -94.826869878596199, 30.091126283643092 ], [ -94.826698878424239, 30.09133028328921 ], [ -94.82666687837974, 30.091418283285524 ], [ -94.826679878891213, 30.091808283602901 ], [ -94.826666878725618, 30.091918283825525 ], [ -94.826628878927309, 30.0920782834236 ], [ -94.82657887910996, 30.092177283758726 ], [ -94.826453878796755, 30.092366283653465 ], [ -94.826426879002696, 30.092408283396459 ], [ -94.826116879025747, 30.092842283477559 ], [ -94.826015878870891, 30.093040284274476 ], [ -94.825939878936779, 30.093238283994669 ], [ -94.825901878852633, 30.09339228395849 ], [ -94.825826878560164, 30.093573284173939 ], [ -94.825781878358612, 30.093716283909284 ], [ -94.825775878075675, 30.093788284354801 ], [ -94.825781878342411, 30.093887283653295 ], [ -94.825800878220377, 30.093969284202565 ], [ -94.825889878787208, 30.094217284126461 ], [ -94.825921879088128, 30.094382284136785 ], [ -94.825933878775956, 30.094508284570772 ], [ -94.825889878697964, 30.094767284241406 ], [ -94.825845878926586, 30.094926283884224 ], [ -94.825756879019124, 30.095113284710393 ], [ -94.825636878229403, 30.095207284753599 ], [ -94.825440878322453, 30.095328284411238 ], [ -94.825412878346157, 30.095349284819921 ], [ -94.825263878506902, 30.095460284720748 ], [ -94.825187878837937, 30.095586284087016 ], [ -94.825118878264632, 30.095740284256244 ], [ -94.825054878007151, 30.095944284401437 ], [ -94.825035878702181, 30.096103284716808 ], [ -94.824922878811819, 30.096494284249818 ], [ -94.824904878029088, 30.096557284760419 ], [ -94.824795878003869, 30.096934284630077 ], [ -94.824719878389502, 30.097110284595907 ], [ -94.824701878308531, 30.097258284782811 ], [ -94.824669878609683, 30.097341285041264 ], [ -94.824663878741106, 30.097423284653473 ], [ -94.824663878412991, 30.097473284615962 ], [ -94.824672878756402, 30.097516284692237 ], [ -94.824091877975889, 30.097516285278793 ], [ -94.822349877944987, 30.097516285071677 ], [ -94.821769877962424, 30.09751728526075 ], [ -94.821591877451581, 30.097539284781121 ], [ -94.821057877419307, 30.097605284696748 ], [ -94.820879877563101, 30.097627285109397 ], [ -94.82101587710514, 30.097838284813225 ], [ -94.821116878012916, 30.098384284950157 ], [ -94.820845877509612, 30.099019284984639 ], [ -94.820613877168384, 30.099562285173942 ], [ -94.819667876813881, 30.100440286045107 ], [ -94.818141876568859, 30.101100285391766 ], [ -94.815669876379005, 30.101660286210429 ], [ -94.813258875583941, 30.102282286567512 ], [ -94.812380875955228, 30.102898286610856 ], [ -94.812348875073113, 30.102919286150929 ], [ -94.812312875936598, 30.102946286017982 ], [ -94.811671875635525, 30.103865286344373 ], [ -94.811808874923656, 30.104926287177044 ], [ -94.811887874983782, 30.105046286773518 ], [ -94.812572875766861, 30.106085286834748 ], [ -94.812900875754707, 30.106661287188508 ], [ -94.813744876000257, 30.107513287310685 ], [ -94.814587875787552, 30.108365287283547 ], [ -94.814785876841952, 30.108565287520289 ], [ -94.815349876093109, 30.109679287425784 ], [ -94.815227876381982, 30.110671287569055 ], [ -94.814342876620572, 30.111659287965786 ], [ -94.81243587572051, 30.112833288659079 ], [ -94.812131875991639, 30.112958288452678 ], [ -94.81028487492884, 30.113721288345165 ], [ -94.807247874957923, 30.114205288713244 ], [ -94.805965874071006, 30.114151288972437 ], [ -94.805141874384191, 30.114151288719842 ], [ -94.804195874047878, 30.114369289369723 ], [ -94.803692873762543, 30.115250289006919 ], [ -94.803692873535553, 30.116898290008027 ], [ -94.804317873806426, 30.118142289827901 ], [ -94.805279874265722, 30.118687289811088 ], [ -94.806286874929683, 30.118729289568687 ], [ -94.807430874800801, 30.118344289532114 ], [ -94.809139874824922, 30.116803289305413 ], [ -94.810468875225965, 30.115593289217813 ], [ -94.811175875786901, 30.115234288838181 ], [ -94.812116875765454, 30.114758288776045 ], [ -94.813519876716569, 30.114430289083568 ], [ -94.814531876947925, 30.114427288644233 ], [ -94.814908876183566, 30.114426288593371 ], [ -94.816434877588719, 30.115757288718083 ], [ -94.816876877289005, 30.117581288819789 ], [ -94.816734877361114, 30.118837289799348 ], [ -94.816693877714201, 30.119198289685531 ], [ -94.816373877041045, 30.120392289982092 ], [ -94.816433877634523, 30.120915289881577 ], [ -94.816556877223277, 30.12090028974626 ], [ -94.816926877085137, 30.120856290215333 ], [ -94.817050877881414, 30.12084229027684 ], [ -94.818550878182322, 30.120699289697622 ], [ -94.819121878282701, 30.120653289822283 ], [ -94.819340877816956, 30.120636289864436 ], [ -94.820546878905233, 30.120530289752256 ], [ -94.821201878222112, 30.120473289944133 ], [ -94.822271879134078, 30.120386289905017 ], [ -94.823781879517682, 30.120298289826433 ], [ -94.824244879381112, 30.1202652891394 ], [ -94.824594879445343, 30.12019728941825 ], [ -94.825330880003094, 30.120087289587019 ], [ -94.825901879799645, 30.120003289142549 ], [ -94.826965880010022, 30.119778289777386 ], [ -94.827110879876244, 30.119740289569503 ], [ -94.827239879751176, 30.119705289764987 ], [ -94.827367880069048, 30.11967128970312 ], [ -94.827554880553322, 30.119622289433391 ], [ -94.827740880319666, 30.119574289641893 ], [ -94.82779788006367, 30.119560288953412 ], [ -94.829345880130347, 30.119069289288838 ], [ -94.831192881479936, 30.118463288606268 ], [ -94.832412881794824, 30.11806928875588 ], [ -94.833190881394628, 30.117818288713178 ], [ -94.835275882122374, 30.117152288392287 ], [ -94.838159882743099, 30.116214288574565 ], [ -94.839064882640102, 30.115926288437031 ], [ -94.839143882514051, 30.115901288342162 ], [ -94.839366883482114, 30.1158302877786 ], [ -94.8396508834402, 30.115736287753037 ], [ -94.840344883453625, 30.115507288223625 ], [ -94.841538883802031, 30.11512028808697 ], [ -94.843745883719492, 30.114408287499138 ], [ -94.844636884295724, 30.114119287158733 ], [ -94.845469884896488, 30.11385228766019 ], [ -94.846950885235159, 30.113379287721912 ], [ -94.847529884625658, 30.113196287627598 ], [ -94.847953884802848, 30.113063287098928 ], [ -94.849503885118537, 30.112576287094285 ], [ -94.85127488573157, 30.111980286579765 ], [ -94.85256588646439, 30.111560286967702 ], [ -94.853653886009369, 30.111202287016535 ], [ -94.853890886140121, 30.111125286350553 ], [ -94.854866886743892, 30.110818286317407 ], [ -94.856547887098543, 30.110278286229484 ], [ -94.85692788714141, 30.110154286673968 ], [ -94.858017888020058, 30.109799286400371 ], [ -94.858369887489758, 30.109684285823651 ], [ -94.859427887815784, 30.109343285998538 ], [ -94.859780888483854, 30.109230285923257 ], [ -94.860177887911632, 30.109093285717488 ], [ -94.860358888543573, 30.109031285621068 ], [ -94.861369888409186, 30.108683285785069 ], [ -94.861767888158212, 30.108547285783928 ], [ -94.863128888866854, 30.108036285554956 ], [ -94.863243889347473, 30.107992285328923 ], [ -94.864662889067432, 30.107454285579582 ], [ -94.866622889612756, 30.10671928539476 ], [ -94.867667890315488, 30.106316285190019 ], [ -94.868386890239506, 30.106041284834884 ], [ -94.869140890710028, 30.105751285463423 ], [ -94.87030889043551, 30.105332285113597 ], [ -94.871000890307926, 30.105075284568109 ], [ -94.871164890740616, 30.105011284922742 ], [ -94.872523890953488, 30.104483284402185 ], [ -94.873288891373278, 30.10418728478443 ], [ -94.876848891759124, 30.102845284320654 ], [ -94.880617892800771, 30.101446283708178 ], [ -94.882669893841907, 30.100670283957371 ], [ -94.884426893788316, 30.100006283111004 ], [ -94.886046894677989, 30.099384282741411 ], [ -94.888142894561014, 30.098602282931722 ], [ -94.889501894629277, 30.09809628309349 ], [ -94.889679895207763, 30.098029282701372 ], [ -94.891827896049477, 30.097225282622453 ], [ -94.893695896535561, 30.096526282263561 ], [ -94.898138896937056, 30.094854281351409 ], [ -94.901902898266712, 30.093434281042644 ], [ -94.905905899168943, 30.091928281327739 ], [ -94.909152899914147, 30.09069528064855 ], [ -94.909666899567668, 30.090501280329708 ], [ -94.912566901045338, 30.089414280048167 ], [ -94.912600900345566, 30.089401279762299 ], [ -94.912880901142657, 30.089295280128248 ], [ -94.913336901183612, 30.089125279796548 ], [ -94.914932901011696, 30.088531279991383 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 376, "Tract": "48201553700", "Area_SqMi": 1.2206886610516547, "total_2009": 1046, "total_2010": 1153, "total_2011": 1182, "total_2012": 1241, "total_2013": 1472, "total_2014": 1088, "total_2015": 1306, "total_2016": 1187, "total_2017": 1125, "total_2018": 868, "total_2019": 930, "total_2020": 877, "age1": 252, "age2": 527, "age3": 209, "earn1": 205, "earn2": 311, "earn3": 472, "naics_s01": 2, "naics_s02": 6, "naics_s03": 25, "naics_s04": 23, "naics_s05": 46, "naics_s06": 19, "naics_s07": 38, "naics_s08": 65, "naics_s09": 2, "naics_s10": 120, "naics_s11": 27, "naics_s12": 123, "naics_s13": 0, "naics_s14": 5, "naics_s15": 14, "naics_s16": 211, "naics_s17": 83, "naics_s18": 142, "naics_s19": 37, "naics_s20": 0, "race1": 784, "race2": 112, "race3": 10, "race4": 63, "race5": 2, "race6": 17, "ethnicity1": 716, "ethnicity2": 272, "edu1": 119, "edu2": 186, "edu3": 215, "edu4": 216, "Shape_Length": 29415.345307259755, "Shape_Area": 34030710.640596673, "total_2021": 936, "total_2022": 988 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.523776054776604, 30.021023245210589 ], [ -95.523650054084484, 30.020932244963266 ], [ -95.523350054479039, 30.020690244804491 ], [ -95.523092054507302, 30.02048124518755 ], [ -95.522523053987626, 30.020017244755461 ], [ -95.522338054575016, 30.019866244920504 ], [ -95.521274053395189, 30.01899524441723 ], [ -95.520788053752128, 30.018605244818364 ], [ -95.520558053721118, 30.018409244291352 ], [ -95.520408053180333, 30.018267244808008 ], [ -95.520307053229388, 30.018157244530208 ], [ -95.520206053069671, 30.018030244504885 ], [ -95.520143053540181, 30.017943244399646 ], [ -95.519221052762404, 30.016709244625694 ], [ -95.518989052727036, 30.016399244092199 ], [ -95.518738052692484, 30.016044243823647 ], [ -95.518670052482861, 30.01594524378342 ], [ -95.518584053132884, 30.015820243916512 ], [ -95.518398052947461, 30.015551244213935 ], [ -95.518369053104749, 30.015510244002584 ], [ -95.518058052397791, 30.015079244274478 ], [ -95.517588052952306, 30.014427243814389 ], [ -95.517335052623011, 30.014084244046646 ], [ -95.517127052944602, 30.013801243671164 ], [ -95.517084052456823, 30.013741244125629 ], [ -95.517044052302566, 30.013686244003363 ], [ -95.517024052253177, 30.01365924350403 ], [ -95.51686205266175, 30.013433244056667 ], [ -95.516802052828638, 30.013350243291725 ], [ -95.516739051910463, 30.01324924346914 ], [ -95.516658052555954, 30.013147243520383 ], [ -95.516289052075194, 30.012637243129408 ], [ -95.515872052185301, 30.012072243838908 ], [ -95.515368052213674, 30.011372243256407 ], [ -95.515244052354006, 30.011202243605798 ], [ -95.514857051633854, 30.010674243008534 ], [ -95.514244051296501, 30.009831242868323 ], [ -95.513658051724335, 30.009023242888066 ], [ -95.513423051456314, 30.008712242450585 ], [ -95.513045050667216, 30.008172243161376 ], [ -95.512766051400092, 30.007723242942848 ], [ -95.512617050800159, 30.007501242863672 ], [ -95.512074051094245, 30.006754242241946 ], [ -95.512035050756026, 30.006700242882104 ], [ -95.51178705106399, 30.007054242497304 ], [ -95.511330051059261, 30.008128242944075 ], [ -95.510922050325078, 30.009275242707961 ], [ -95.510783050520587, 30.009450243096961 ], [ -95.510523050702957, 30.009549242878791 ], [ -95.510324050993304, 30.009514243048976 ], [ -95.509551050689055, 30.009119242670838 ], [ -95.509154050581813, 30.009045243010075 ], [ -95.508922049940537, 30.009112243102308 ], [ -95.508609050058951, 30.009336243145732 ], [ -95.507988049684016, 30.009525243624338 ], [ -95.507624050001098, 30.009576242939367 ], [ -95.506927049905116, 30.009590243370322 ], [ -95.506023049742595, 30.00950024338545 ], [ -95.505291049441567, 30.009283243646607 ], [ -95.505003049381244, 30.009273242930629 ], [ -95.504799048605818, 30.009283242825159 ], [ -95.504580049432363, 30.009442243504562 ], [ -95.504424048806015, 30.00948624309234 ], [ -95.503773049128412, 30.009444243130531 ], [ -95.503468049268875, 30.009338243215424 ], [ -95.503308048453349, 30.009176243720788 ], [ -95.503204049111247, 30.00898124367858 ], [ -95.502746048888596, 30.008678243375236 ], [ -95.502462048330699, 30.008426242958375 ], [ -95.502174048477883, 30.008390243170425 ], [ -95.501702048164759, 30.008519243401754 ], [ -95.501498047986161, 30.00868824298901 ], [ -95.501433048491791, 30.009037243254603 ], [ -95.501470048502412, 30.009139243471335 ], [ -95.501727047991849, 30.009418243384701 ], [ -95.501722048006016, 30.009658243874302 ], [ -95.501451048497742, 30.009920243455504 ], [ -95.501217047788685, 30.010066243803305 ], [ -95.50107404834543, 30.01035724340116 ], [ -95.501093048054756, 30.010568244068576 ], [ -95.501300048554342, 30.011256244027749 ], [ -95.501308048425003, 30.011398244159992 ], [ -95.501240048141938, 30.011601244005014 ], [ -95.500733048209099, 30.01189724423703 ], [ -95.500536047997841, 30.011944243825226 ], [ -95.499609047908535, 30.01183424384978 ], [ -95.499394047960422, 30.011730244123644 ], [ -95.499137048004485, 30.011507244030813 ], [ -95.498854047382324, 30.011454244202149 ], [ -95.498736047589659, 30.011481244083729 ], [ -95.498290047149496, 30.011790244319723 ], [ -95.497319047306505, 30.012467244596017 ], [ -95.49709804680532, 30.012726243938673 ], [ -95.496892046885606, 30.013156243895519 ], [ -95.496743047170639, 30.013328244686669 ], [ -95.496847047344644, 30.013385244068722 ], [ -95.497024047716508, 30.0135172445856 ], [ -95.497144047703216, 30.013583244297145 ], [ -95.497207047862489, 30.013599244029741 ], [ -95.497251047282361, 30.013621244071544 ], [ -95.497283047393267, 30.013654244873472 ], [ -95.497308047260134, 30.013759244757289 ], [ -95.497302046919515, 30.013830244604165 ], [ -95.49723304717341, 30.013973244712837 ], [ -95.497233047531793, 30.014028244224388 ], [ -95.497239047888783, 30.014050244510909 ], [ -95.49731504705619, 30.014088244626819 ], [ -95.497359047826237, 30.014094244919232 ], [ -95.497447047871859, 30.014072244960861 ], [ -95.497624047038101, 30.013989244085167 ], [ -95.497738047445694, 30.013901244013912 ], [ -95.497858047566183, 30.013907244266079 ], [ -95.49790204731687, 30.013934244293978 ], [ -95.498009047361506, 30.013962244860359 ], [ -95.498054048077975, 30.013951244137903 ], [ -95.498085047092232, 30.013923244180379 ], [ -95.498104047849765, 30.013890244449325 ], [ -95.498123047813564, 30.013791244761425 ], [ -95.498148047134109, 30.013747244802513 ], [ -95.4981860473317, 30.013709244600225 ], [ -95.498262047724211, 30.01367624408082 ], [ -95.498344047648999, 30.01368124437252 ], [ -95.498420047958575, 30.013719244797276 ], [ -95.498679047778438, 30.013912244557748 ], [ -95.498736047634864, 30.013934244461669 ], [ -95.498831047687887, 30.013906244387929 ], [ -95.498856047913776, 30.013906244276352 ], [ -95.498881048058507, 30.013912244396661 ], [ -95.498957047691448, 30.013967244260527 ], [ -95.499033047559379, 30.014038244719604 ], [ -95.499090047562888, 30.014060244472343 ], [ -95.499304048269607, 30.014049244571527 ], [ -95.499336047967276, 30.014060244878877 ], [ -95.499399047969973, 30.014109244866908 ], [ -95.499431048008987, 30.014153244660154 ], [ -95.499551048140958, 30.014219244858531 ], [ -95.49959504753258, 30.014263244073199 ], [ -95.499595047960042, 30.014313244252854 ], [ -95.499570048317636, 30.014379244416318 ], [ -95.499456048070641, 30.01447824463223 ], [ -95.499387048089858, 30.014516244308084 ], [ -95.499286047789298, 30.014654244395135 ], [ -95.499267047786773, 30.01474724485676 ], [ -95.499273048119846, 30.014852244690825 ], [ -95.499337048233855, 30.015275244807665 ], [ -95.499337047961816, 30.015357244402253 ], [ -95.4993120475974, 30.015396244330919 ], [ -95.499286048486709, 30.015412244406523 ], [ -95.49926204761104, 30.015418244709263 ], [ -95.499242048009606, 30.015412245008271 ], [ -95.499211048349807, 30.015363244895937 ], [ -95.499173047848402, 30.015225244780083 ], [ -95.499135047785316, 30.015159244776665 ], [ -95.499059047927886, 30.015066244465139 ], [ -95.499014047678969, 30.015033244713226 ], [ -95.498964047567597, 30.015017244384005 ], [ -95.498882047782416, 30.015022244899399 ], [ -95.49886304802699, 30.015033244788114 ], [ -95.498876047635619, 30.015176244418807 ], [ -95.498850047537857, 30.015242244547341 ], [ -95.498806048342701, 30.015297244492825 ], [ -95.498705047397905, 30.015380244674695 ], [ -95.498453048175733, 30.015550245163027 ], [ -95.498440047929748, 30.015605245144322 ], [ -95.498465047387057, 30.01569924515589 ], [ -95.498440047658463, 30.015831244983342 ], [ -95.498447047298356, 30.015907244471734 ], [ -95.498491047856305, 30.015968244710649 ], [ -95.498636048275344, 30.016089245024641 ], [ -95.498706047571488, 30.016133245182431 ], [ -95.498737048337702, 30.016204244479894 ], [ -95.498737047357707, 30.016237244838713 ], [ -95.498699048341635, 30.016287244777608 ], [ -95.498693047713203, 30.016325245112437 ], [ -95.498750048355532, 30.016595244696852 ], [ -95.498712047502892, 30.016743244784042 ], [ -95.498662048297916, 30.01708924489315 ], [ -95.498687047624358, 30.017392244745267 ], [ -95.498738047869736, 30.017529245176757 ], [ -95.498928048399691, 30.017754244842262 ], [ -95.498972048070598, 30.017837244773126 ], [ -95.499042048514667, 30.018029244975693 ], [ -95.49911804844298, 30.018145245118735 ], [ -95.499149047785195, 30.018183245656864 ], [ -95.499351048448844, 30.018337245031656 ], [ -95.499415048081701, 30.01841924509295 ], [ -95.499457048591097, 30.018509245351918 ], [ -95.499521047908942, 30.018646245625739 ], [ -95.499585048645685, 30.018782244954345 ], [ -95.499611047791277, 30.018881245561154 ], [ -95.49966804863233, 30.018996245784109 ], [ -95.499769048150199, 30.019084245010959 ], [ -95.499927048294964, 30.019161245816761 ], [ -95.50000904870717, 30.019183245617462 ], [ -95.500357048432846, 30.019177245442652 ], [ -95.501154048674778, 30.019067245362283 ], [ -95.501450048439523, 30.019067245812433 ], [ -95.501684048908785, 30.01914424517383 ], [ -95.50225204919407, 30.019458245430013 ], [ -95.502650048515406, 30.019662245430474 ], [ -95.502823048779675, 30.019683245760678 ], [ -95.503143049546125, 30.019722245844388 ], [ -95.503339049467385, 30.019761245489953 ], [ -95.503440049498209, 30.019843245235858 ], [ -95.50364804905243, 30.020096245898824 ], [ -95.503869049782352, 30.020476245228618 ], [ -95.504134049288183, 30.020789245713896 ], [ -95.504412049916269, 30.021081245553106 ], [ -95.505081049244922, 30.021735245577208 ], [ -95.505252049781078, 30.021873246219663 ], [ -95.506041049831836, 30.022032245638211 ], [ -95.506224050005457, 30.022236246156023 ], [ -95.506445049990731, 30.022703246293009 ], [ -95.506483050121659, 30.022808246109101 ], [ -95.506508049817413, 30.023011246111913 ], [ -95.506515049754015, 30.023209246324356 ], [ -95.506533049987709, 30.023352246347425 ], [ -95.506647050596968, 30.023600245985907 ], [ -95.506862050031387, 30.023951245760159 ], [ -95.507026050120913, 30.024259246359563 ], [ -95.507095050755794, 30.024309246705389 ], [ -95.507424050259928, 30.02447424596512 ], [ -95.507695050447552, 30.024628246452494 ], [ -95.508017050636923, 30.024914245923387 ], [ -95.508156050192653, 30.025084246693456 ], [ -95.508308051257174, 30.025348246237524 ], [ -95.508491050873232, 30.025810246258466 ], [ -95.50850905126309, 30.025964246165046 ], [ -95.508468050349393, 30.02623524652574 ], [ -95.508459051252871, 30.026294246569044 ], [ -95.508421050884792, 30.026371246290708 ], [ -95.508358050292145, 30.026448247062469 ], [ -95.508267050659882, 30.026505246978555 ], [ -95.508193050888309, 30.026552246954825 ], [ -95.508042051000103, 30.02666224695643 ], [ -95.507915051029272, 30.02681624653373 ], [ -95.507827050650334, 30.027063246404005 ], [ -95.507630050298516, 30.028179247432629 ], [ -95.507238050939435, 30.029828247693434 ], [ -95.507219050770075, 30.029966247376262 ], [ -95.507160050221827, 30.030169247250541 ], [ -95.50885405125598, 30.029231247584793 ], [ -95.508993050784227, 30.029160247526388 ], [ -95.509390051543647, 30.02894224670381 ], [ -95.5095130510785, 30.028867247312444 ], [ -95.509654051038524, 30.02878924688558 ], [ -95.510515051256817, 30.028314247053633 ], [ -95.51097505105308, 30.028051247228369 ], [ -95.511767051678689, 30.02760524662321 ], [ -95.511865051960768, 30.027559246866186 ], [ -95.511911051703066, 30.027530246951699 ], [ -95.512679051982815, 30.027103246813994 ], [ -95.513042052066936, 30.026901247002215 ], [ -95.513406052597929, 30.026700246953617 ], [ -95.513513051766864, 30.026641246269524 ], [ -95.513612052272407, 30.026594246821166 ], [ -95.514034051821213, 30.026364246388074 ], [ -95.514141052495873, 30.026300245999973 ], [ -95.514256052744614, 30.026245246661595 ], [ -95.514365051822608, 30.02618224653013 ], [ -95.515141052711542, 30.025764246435504 ], [ -95.515359052428835, 30.025650246003256 ], [ -95.515573052255604, 30.025531246033349 ], [ -95.515675052661479, 30.025469246612854 ], [ -95.515873052659245, 30.025359245808371 ], [ -95.515969052204866, 30.025312246268129 ], [ -95.516467053079225, 30.025026246115008 ], [ -95.516513052414922, 30.024994246363249 ], [ -95.516752052417857, 30.024859246001235 ], [ -95.516870053330834, 30.024800246328841 ], [ -95.516925053321017, 30.024764245886875 ], [ -95.517568053278168, 30.024407245551249 ], [ -95.51875605347621, 30.023752245535441 ], [ -95.518914052875985, 30.023665245279336 ], [ -95.519301052994919, 30.023454245779934 ], [ -95.519649053680567, 30.023261245479521 ], [ -95.519751053493636, 30.023205245916962 ], [ -95.519920053481798, 30.023113245896866 ], [ -95.520136053476691, 30.022993245478034 ], [ -95.520214053729106, 30.022950245335611 ], [ -95.520787053916195, 30.022632245844488 ], [ -95.521423053596124, 30.02228324502325 ], [ -95.52171505440694, 30.022120245444988 ], [ -95.521996054426964, 30.021966245056365 ], [ -95.522167053949332, 30.021872245236878 ], [ -95.522482054254112, 30.021700245221936 ], [ -95.522834054391112, 30.021507244711472 ], [ -95.523078054655542, 30.021381244812606 ], [ -95.52332305433697, 30.021259245194646 ], [ -95.523450054615665, 30.021196245184505 ], [ -95.523626054727444, 30.021102244783854 ], [ -95.523776054776604, 30.021023245210589 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 377, "Tract": "48201554600", "Area_SqMi": 1.4108423437689717, "total_2009": 873, "total_2010": 797, "total_2011": 731, "total_2012": 696, "total_2013": 795, "total_2014": 1001, "total_2015": 1016, "total_2016": 1431, "total_2017": 1357, "total_2018": 1431, "total_2019": 1338, "total_2020": 1198, "age1": 480, "age2": 784, "age3": 307, "earn1": 393, "earn2": 567, "earn3": 611, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 115, "naics_s05": 12, "naics_s06": 30, "naics_s07": 300, "naics_s08": 1, "naics_s09": 2, "naics_s10": 104, "naics_s11": 26, "naics_s12": 107, "naics_s13": 0, "naics_s14": 109, "naics_s15": 89, "naics_s16": 273, "naics_s17": 59, "naics_s18": 223, "naics_s19": 121, "naics_s20": 0, "race1": 1249, "race2": 202, "race3": 12, "race4": 88, "race5": 2, "race6": 18, "ethnicity1": 1160, "ethnicity2": 411, "edu1": 197, "edu2": 299, "edu3": 337, "edu4": 258, "Shape_Length": 28810.892061803796, "Shape_Area": 39331869.863474891, "total_2021": 1416, "total_2022": 1571 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.63560508233472, 30.004291237800643 ], [ -95.635521082383576, 30.004258237493904 ], [ -95.635404082688211, 30.004203238029184 ], [ -95.635343082239018, 30.004184237975469 ], [ -95.635188082398031, 30.004121237714163 ], [ -95.634645081905376, 30.003886237998458 ], [ -95.63461608192803, 30.003873237895114 ], [ -95.634523081816866, 30.003840238000866 ], [ -95.634298081915617, 30.003727237883414 ], [ -95.634220081739088, 30.003676237970613 ], [ -95.634048082281495, 30.003543237542207 ], [ -95.632736081434572, 30.002452237381217 ], [ -95.632683081792678, 30.002403237759129 ], [ -95.632621081933792, 30.002358237270482 ], [ -95.632279081160817, 30.002073237412059 ], [ -95.631242080764508, 30.001214236983074 ], [ -95.630148081186206, 30.000307236920737 ], [ -95.630026080252279, 30.000218237513543 ], [ -95.628955080541687, 29.999323237250287 ], [ -95.627589079888679, 29.998172237146676 ], [ -95.627118079872702, 29.997765236268709 ], [ -95.626189079534811, 29.996970236380204 ], [ -95.625859079398907, 29.996702236091377 ], [ -95.625750079447982, 29.996606236761139 ], [ -95.625431079219894, 29.996358236662012 ], [ -95.625249079765368, 29.996177236552985 ], [ -95.62517507975619, 29.996132236815402 ], [ -95.625108079603706, 29.996076236755918 ], [ -95.624577078999494, 29.995648236377299 ], [ -95.624305079079917, 29.995428236162301 ], [ -95.623475079029774, 29.994700236362831 ], [ -95.623361078471902, 29.994608236530492 ], [ -95.623204078309158, 29.994467236075529 ], [ -95.622646078730057, 29.99398523643746 ], [ -95.622003078783536, 29.99342123610646 ], [ -95.621905078361834, 29.993345235946784 ], [ -95.621860078386646, 29.993306236247179 ], [ -95.621625078743662, 29.993105235892795 ], [ -95.621524078442476, 29.99301823561192 ], [ -95.621350078440074, 29.992843236043225 ], [ -95.621236078319626, 29.992772235507598 ], [ -95.621052078466562, 29.992614236057808 ], [ -95.620974078338577, 29.992532235481974 ], [ -95.62088007848962, 29.992461235957116 ], [ -95.620762077658298, 29.992358235791542 ], [ -95.620445078214885, 29.992090235836759 ], [ -95.620356078059046, 29.992008236072706 ], [ -95.619844077695731, 29.991577235781154 ], [ -95.61902707773028, 29.990870235617141 ], [ -95.618809077656493, 29.990690235782367 ], [ -95.618695077055136, 29.990582235866981 ], [ -95.618576077663192, 29.990485235648634 ], [ -95.618125076803437, 29.990100235813447 ], [ -95.617996077215963, 29.989985235624111 ], [ -95.617677076831839, 29.989714234966453 ], [ -95.617568077166595, 29.989621235662963 ], [ -95.616355076963075, 29.988575234811115 ], [ -95.615677075986653, 29.9880002354849 ], [ -95.615516076014472, 29.988141235535501 ], [ -95.615452076849621, 29.988188234769478 ], [ -95.61535807611375, 29.988282235185746 ], [ -95.615316075980388, 29.988325235394559 ], [ -95.61479407596957, 29.988776235070979 ], [ -95.614446075999581, 29.989078234983964 ], [ -95.613806075811311, 29.989646235334742 ], [ -95.613672076219203, 29.989758235561549 ], [ -95.613427075594061, 29.989986235253863 ], [ -95.612708076045593, 29.990626235496613 ], [ -95.612504075341562, 29.990808235925332 ], [ -95.612400076251035, 29.990894235609311 ], [ -95.611750076024819, 29.991484236327807 ], [ -95.611791075696857, 29.991567236066416 ], [ -95.611804075881849, 29.991592235961956 ], [ -95.611947076186397, 29.991830235758183 ], [ -95.612052076229006, 29.991979236374782 ], [ -95.612176076228792, 29.992133236069122 ], [ -95.6123190754099, 29.99229023653287 ], [ -95.61239307607633, 29.992378236329944 ], [ -95.612839076359705, 29.992847236445968 ], [ -95.613092076448368, 29.993137236143461 ], [ -95.613238076126436, 29.993303236415667 ], [ -95.613292076529447, 29.993378236534596 ], [ -95.61346407665981, 29.993657236203767 ], [ -95.613495076688011, 29.993711236271878 ], [ -95.613603076085411, 29.993929236522195 ], [ -95.613782075849343, 29.994341236728278 ], [ -95.61382907676338, 29.994467236120062 ], [ -95.613868076198585, 29.99457123645578 ], [ -95.613937076252569, 29.994791236974336 ], [ -95.613992076107834, 29.995007236430482 ], [ -95.614058076677054, 29.995323236906504 ], [ -95.614105076280254, 29.995634236599319 ], [ -95.614132076895118, 29.995990236506231 ], [ -95.614134076220409, 29.996138237089411 ], [ -95.614124076397644, 29.996394236682072 ], [ -95.614097076943509, 29.99675123724948 ], [ -95.61400607678388, 29.997260237143653 ], [ -95.61394207617704, 29.997524237449007 ], [ -95.613856075953422, 29.997770236986536 ], [ -95.613837076128931, 29.997856236891128 ], [ -95.613789076772392, 29.997980237423082 ], [ -95.613761076296257, 29.99802423715985 ], [ -95.613748076128545, 29.998085237158616 ], [ -95.613714076157578, 29.998139237432202 ], [ -95.613664076236716, 29.998242237677189 ], [ -95.613642076121067, 29.998298237228507 ], [ -95.613585076843535, 29.998402236998135 ], [ -95.613575076330434, 29.998419236966061 ], [ -95.613561076404594, 29.998469237730845 ], [ -95.613524076721234, 29.998531237371498 ], [ -95.613455075895956, 29.998679237582468 ], [ -95.613412076136044, 29.998734237432213 ], [ -95.613207076508218, 29.999052237480623 ], [ -95.613169076099609, 29.999100237735707 ], [ -95.613135076542278, 29.999133237528351 ], [ -95.61309507632069, 29.999187237077116 ], [ -95.613073076266758, 29.999216237897294 ], [ -95.613041076438591, 29.999274237049796 ], [ -95.612999076698841, 29.999330237630417 ], [ -95.612948076258164, 29.99937823765168 ], [ -95.612838075969563, 29.999509237759206 ], [ -95.612572076335326, 29.999804238015077 ], [ -95.612504076123287, 29.999862238040453 ], [ -95.612439076267577, 29.999924237948946 ], [ -95.612400076323823, 29.999965237939907 ], [ -95.612256075671795, 30.000099237577238 ], [ -95.61180807646987, 30.000494238109081 ], [ -95.611752076533222, 30.000545237985278 ], [ -95.611278075644037, 30.000973237603237 ], [ -95.611223076296866, 30.001011237928022 ], [ -95.611194076380244, 30.00103723780234 ], [ -95.610579076099043, 30.0015812384108 ], [ -95.609921075654739, 30.002154238198898 ], [ -95.609709075522787, 30.002345238392881 ], [ -95.609584075729828, 30.002467238046886 ], [ -95.609446075346071, 30.002612238338735 ], [ -95.60930907579008, 30.002768238657755 ], [ -95.609106075248974, 30.003017238564297 ], [ -95.608906075708347, 30.003288238460829 ], [ -95.608850075320376, 30.003372238566406 ], [ -95.608642075754375, 30.003719238578395 ], [ -95.608596075473912, 30.003824238659686 ], [ -95.608387075238483, 30.004258238733417 ], [ -95.608230075346682, 30.004699238337761 ], [ -95.608171074971693, 30.00492123854972 ], [ -95.608098075794928, 30.005250238893776 ], [ -95.608062074916106, 30.005473238538805 ], [ -95.608027075290977, 30.005795238773135 ], [ -95.608018074977551, 30.006095238978777 ], [ -95.608019075743016, 30.006233239248932 ], [ -95.608022074922431, 30.006689238758906 ], [ -95.608020074925861, 30.007774239373646 ], [ -95.608019075599842, 30.008949239928757 ], [ -95.608019075574362, 30.009164239331788 ], [ -95.608018075564829, 30.010184239888584 ], [ -95.608017075931826, 30.010869240137175 ], [ -95.608020075663561, 30.011218240195639 ], [ -95.608013075662413, 30.011391239929658 ], [ -95.608023075987802, 30.011577240356093 ], [ -95.6080210752841, 30.012472240245653 ], [ -95.607985075579506, 30.012724240664745 ], [ -95.60821807601576, 30.012730240762465 ], [ -95.60823007593514, 30.012729240458501 ], [ -95.608285075853118, 30.012724239956114 ], [ -95.608896075614254, 30.012773240411729 ], [ -95.608970075819585, 30.012765239947122 ], [ -95.609159075467645, 30.012776240652236 ], [ -95.609262076002139, 30.012782240207219 ], [ -95.610351076297761, 30.012845240693728 ], [ -95.610488076792947, 30.012851240648729 ], [ -95.610597076048165, 30.012863240775221 ], [ -95.610896076250469, 30.012876240740308 ], [ -95.611031076698026, 30.012879240190934 ], [ -95.611128076017806, 30.012893240449518 ], [ -95.611206076922144, 30.012886240407667 ], [ -95.61152207677074, 30.012898239971658 ], [ -95.611873076788882, 30.012905240555416 ], [ -95.612449077104785, 30.012896240359343 ], [ -95.612704076589935, 30.012886240254797 ], [ -95.614176077551278, 30.012807240583708 ], [ -95.614609077595134, 30.012784239791436 ], [ -95.615321077372613, 30.01274124057948 ], [ -95.615422077109685, 30.01274023997507 ], [ -95.615654077427607, 30.012724240542639 ], [ -95.615959077223309, 30.012703240118256 ], [ -95.616047077245028, 30.012690239984622 ], [ -95.616474078031715, 30.012664240003502 ], [ -95.616572078279759, 30.012650240473398 ], [ -95.616696077726374, 30.012647240510923 ], [ -95.617092077463909, 30.012571239817568 ], [ -95.617131077828333, 30.012554239740307 ], [ -95.617304078324366, 30.012488240468208 ], [ -95.617521078567052, 30.012385240099672 ], [ -95.617671077917592, 30.012299239560413 ], [ -95.618075077917268, 30.012028239549398 ], [ -95.618176078730585, 30.01196823991403 ], [ -95.618263078359803, 30.011907239740395 ], [ -95.618340078758905, 30.011845239610128 ], [ -95.618401078704053, 30.01177924007558 ], [ -95.618745078790226, 30.011531239790116 ], [ -95.618814078496627, 30.011478239385283 ], [ -95.618901078805891, 30.011430239863959 ], [ -95.618953078506436, 30.011394239516306 ], [ -95.619005078435237, 30.011351239983913 ], [ -95.619143078569593, 30.011263239988075 ], [ -95.619202078574006, 30.011215239595579 ], [ -95.619335078981237, 30.011122239888604 ], [ -95.619454078038686, 30.011032239747774 ], [ -95.621433079202646, 30.009567238901731 ], [ -95.62273507921013, 30.008603239343795 ], [ -95.623692079811775, 30.007873239183382 ], [ -95.624089079883333, 30.00757523843571 ], [ -95.62428807950711, 30.007440238601074 ], [ -95.62440307943892, 30.007356238442309 ], [ -95.625604079690476, 30.006432238305653 ], [ -95.625792079487226, 30.006283238723618 ], [ -95.625825079827578, 30.006257238810349 ], [ -95.626009079530689, 30.006115238714855 ], [ -95.626153080390807, 30.006014238760372 ], [ -95.626259079764708, 30.005948238629085 ], [ -95.626354080262729, 30.005899238550775 ], [ -95.62643408040617, 30.005872238293122 ], [ -95.626521080321339, 30.005852238752301 ], [ -95.626683079673541, 30.005828237968153 ], [ -95.626933080243518, 30.005808238212239 ], [ -95.627101080036141, 30.005802237962605 ], [ -95.627366080049754, 30.005801238754369 ], [ -95.627437079909257, 30.005800238750741 ], [ -95.6275200804848, 30.005793238479232 ], [ -95.627947080512484, 30.005793238224911 ], [ -95.628310080846347, 30.005785238529398 ], [ -95.628462080078279, 30.005783238453891 ], [ -95.62945408048806, 30.005776238213144 ], [ -95.629617080457294, 30.005783238564732 ], [ -95.629686081226041, 30.00578623779889 ], [ -95.629748081399597, 30.005774238113634 ], [ -95.629820080810603, 30.005773238463188 ], [ -95.629889081160442, 30.005786238582999 ], [ -95.630029080646509, 30.005772237925427 ], [ -95.630522081544598, 30.005767238019189 ], [ -95.630661080704741, 30.005760237855785 ], [ -95.630782081061696, 30.005768238440677 ], [ -95.631020081000813, 30.005754237940724 ], [ -95.631229081732428, 30.005753238267854 ], [ -95.631324081685619, 30.005744237808745 ], [ -95.631559081488092, 30.00574323796112 ], [ -95.63195108176626, 30.005730238048326 ], [ -95.63210708195605, 30.005735238561627 ], [ -95.632237081358468, 30.005732237712738 ], [ -95.632351081773734, 30.005724238144417 ], [ -95.63260008178554, 30.005724238177049 ], [ -95.63271208212862, 30.005719237833894 ], [ -95.633184082074678, 30.005678238435731 ], [ -95.633311081603381, 30.005646237820017 ], [ -95.63348508182095, 30.005592237859005 ], [ -95.633664081630613, 30.005523238278968 ], [ -95.63377808169443, 30.005475238044905 ], [ -95.633865082163254, 30.005449238264088 ], [ -95.633947082418757, 30.005414237605976 ], [ -95.634128081850776, 30.005325237706867 ], [ -95.634213081872915, 30.005271237874812 ], [ -95.634295082458138, 30.005213237714976 ], [ -95.634509081972453, 30.005079237897995 ], [ -95.634573082539262, 30.005040238050391 ], [ -95.63463208185631, 30.005011237519138 ], [ -95.634682081808634, 30.004987238092479 ], [ -95.635029081989941, 30.004747238024496 ], [ -95.6352070824355, 30.004614237906424 ], [ -95.635323081939788, 30.004530237415395 ], [ -95.63560508233472, 30.004291237800643 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 378, "Tract": "48201233200", "Area_SqMi": 1.2278465380648331, "total_2009": 1259, "total_2010": 1569, "total_2011": 1651, "total_2012": 1444, "total_2013": 1514, "total_2014": 1540, "total_2015": 1493, "total_2016": 1508, "total_2017": 1386, "total_2018": 844, "total_2019": 781, "total_2020": 682, "age1": 208, "age2": 341, "age3": 136, "earn1": 172, "earn2": 248, "earn3": 265, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 40, "naics_s05": 14, "naics_s06": 8, "naics_s07": 211, "naics_s08": 6, "naics_s09": 0, "naics_s10": 11, "naics_s11": 5, "naics_s12": 21, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 128, "naics_s17": 0, "naics_s18": 168, "naics_s19": 70, "naics_s20": 0, "race1": 506, "race2": 120, "race3": 7, "race4": 46, "race5": 1, "race6": 5, "ethnicity1": 360, "ethnicity2": 325, "edu1": 124, "edu2": 131, "edu3": 125, "edu4": 97, "Shape_Length": 26968.29251325212, "Shape_Area": 34230260.000895143, "total_2021": 629, "total_2022": 685 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.205065962316681, 29.777036205998449 ], [ -95.205071961360801, 29.776926206436166 ], [ -95.205058961809783, 29.776833205682415 ], [ -95.20500296219565, 29.776657205998642 ], [ -95.204573961806844, 29.775904205848125 ], [ -95.204617962127415, 29.775832205767799 ], [ -95.204680961756125, 29.775766206004597 ], [ -95.204699961371333, 29.775618206103275 ], [ -95.204667961319529, 29.775557205991092 ], [ -95.20473796175682, 29.775355205527095 ], [ -95.204352961188249, 29.775253205305809 ], [ -95.20361996139151, 29.775147205451805 ], [ -95.202890961479824, 29.775102205850803 ], [ -95.201355961260333, 29.775007205580845 ], [ -95.200717960742253, 29.775152205609267 ], [ -95.200111960103982, 29.775460205906768 ], [ -95.19918896058698, 29.776332205771308 ], [ -95.198806960071465, 29.776608206302662 ], [ -95.198515960161018, 29.776745206126968 ], [ -95.197796959770471, 29.776901206183815 ], [ -95.197507959378669, 29.776890206224834 ], [ -95.197146960005043, 29.776814206142827 ], [ -95.196740959986201, 29.776635206683697 ], [ -95.195970959260208, 29.776094206352337 ], [ -95.195750958987986, 29.775832205971074 ], [ -95.195309958801559, 29.775119205921101 ], [ -95.19515695880591, 29.77452420545897 ], [ -95.195190959475028, 29.77423920625484 ], [ -95.195422959400176, 29.773898206128784 ], [ -95.196738959446108, 29.772608205810723 ], [ -95.197018959345954, 29.772128205363718 ], [ -95.197033959259983, 29.772055204946611 ], [ -95.197062959152504, 29.771917205297058 ], [ -95.197043959246386, 29.771671205001656 ], [ -95.197033959342477, 29.77153920557279 ], [ -95.196774959369989, 29.771523205427158 ], [ -95.196511959263034, 29.771507204984214 ], [ -95.19520795861304, 29.771427204903684 ], [ -95.194006958619227, 29.771323205110068 ], [ -95.192698958805238, 29.771181205290379 ], [ -95.191526958217707, 29.771099205311657 ], [ -95.188267956997535, 29.770875205265053 ], [ -95.187914957370992, 29.770856205362161 ], [ -95.18738495737216, 29.770827205664379 ], [ -95.186699956324901, 29.770795205016494 ], [ -95.186522956425321, 29.770789205831374 ], [ -95.186324957130068, 29.770783205478129 ], [ -95.182929955518276, 29.770639205241626 ], [ -95.182841956000331, 29.770636205702004 ], [ -95.182830956072578, 29.770895205690607 ], [ -95.1828059558474, 29.771575206175175 ], [ -95.182807955352345, 29.771608205713456 ], [ -95.182815956329094, 29.7717642060916 ], [ -95.182828955805419, 29.772240205894327 ], [ -95.182838956296294, 29.773096205939421 ], [ -95.182853955678723, 29.773994205873212 ], [ -95.182885956408612, 29.774909206692609 ], [ -95.182917955795617, 29.775847206418103 ], [ -95.182917956585811, 29.775955206482713 ], [ -95.182940956296406, 29.776791207129019 ], [ -95.182951956297501, 29.777317207125741 ], [ -95.18296295645888, 29.77771820726436 ], [ -95.182981955786687, 29.778647206924518 ], [ -95.183012956308659, 29.779598207700442 ], [ -95.183029956637341, 29.78023820773647 ], [ -95.183046955819066, 29.780856207737916 ], [ -95.183070956523764, 29.781798208013591 ], [ -95.183089955981899, 29.782718208345958 ], [ -95.183119956150421, 29.783638208478063 ], [ -95.183143956634837, 29.784535208040328 ], [ -95.183172956213213, 29.785412208546436 ], [ -95.183197956682392, 29.786282209084192 ], [ -95.183207956542674, 29.787173208820992 ], [ -95.183239956176664, 29.788088209467762 ], [ -95.183803956731154, 29.788078209282755 ], [ -95.186959958023706, 29.788004209404946 ], [ -95.187397957993426, 29.788001208962285 ], [ -95.189266958465609, 29.787966208431421 ], [ -95.191353958708817, 29.787922208779396 ], [ -95.193329959207233, 29.787899208433064 ], [ -95.193086959080219, 29.788194209147431 ], [ -95.192921959233487, 29.78839420847849 ], [ -95.193028959472812, 29.788392208879799 ], [ -95.193574959340651, 29.788383208926817 ], [ -95.193708959742068, 29.788381209194174 ], [ -95.194070959884584, 29.787942208709151 ], [ -95.195297959638154, 29.786454208180078 ], [ -95.195498959375769, 29.78658220848347 ], [ -95.196127960183475, 29.786954208305378 ], [ -95.196873959854344, 29.787416208745384 ], [ -95.196973959791777, 29.7873092082054 ], [ -95.197023960339862, 29.787237208401717 ], [ -95.197130960289996, 29.787116208674124 ], [ -95.197307960521783, 29.78703420845795 ], [ -95.197326959906505, 29.787029208538023 ], [ -95.197373960031044, 29.787018208419095 ], [ -95.197464960150981, 29.786932208105835 ], [ -95.197571960739168, 29.786929208353779 ], [ -95.197761960035933, 29.786786207959594 ], [ -95.197817960755486, 29.78664920842856 ], [ -95.197909960154277, 29.786514208624137 ], [ -95.19796396066252, 29.786434208469533 ], [ -95.19797395991074, 29.78642120796383 ], [ -95.198038960163913, 29.786291208625528 ], [ -95.198049960828868, 29.786251207818928 ], [ -95.198055960456713, 29.786231208038288 ], [ -95.198151960498535, 29.786115207889473 ], [ -95.198230960712479, 29.786080207855196 ], [ -95.198334960708166, 29.78601620807579 ], [ -95.198435960944678, 29.785978208510528 ], [ -95.198593960131106, 29.785945207982554 ], [ -95.198689960123403, 29.785940208204732 ], [ -95.198744960798962, 29.785945208348735 ], [ -95.198914960856825, 29.785983207706273 ], [ -95.198983960744485, 29.786011208433447 ], [ -95.199099960492745, 29.786072207897458 ], [ -95.199121960407339, 29.786084208551046 ], [ -95.199179960852476, 29.786115208346509 ], [ -95.199368960281518, 29.786159208160015 ], [ -95.199482960644303, 29.786170207710246 ], [ -95.199517960745254, 29.786169207925038 ], [ -95.199677960926238, 29.786165207990777 ], [ -95.199834961222464, 29.786137208437509 ], [ -95.199935960920072, 29.786110208061981 ], [ -95.199973961053573, 29.78610920836492 ], [ -95.199988961374956, 29.786109208494189 ], [ -95.200276961462933, 29.786104207887547 ], [ -95.200357961190136, 29.78609120798065 ], [ -95.200421961211944, 29.786082208004874 ], [ -95.200692961517959, 29.785983208317393 ], [ -95.200735961024364, 29.78595720808671 ], [ -95.200905961503707, 29.785854208374019 ], [ -95.201309960845137, 29.785591207643893 ], [ -95.201417961326413, 29.785554207683472 ], [ -95.201517960916519, 29.785472207797902 ], [ -95.201801961551183, 29.785186207889108 ], [ -95.201843961488862, 29.785133208077138 ], [ -95.202085961769114, 29.78483420818559 ], [ -95.202223961625833, 29.784669207918895 ], [ -95.202419961348966, 29.784399207625643 ], [ -95.202576961793255, 29.7841742075273 ], [ -95.202601961440038, 29.784113207197898 ], [ -95.202646961645229, 29.783899207789773 ], [ -95.20263996141864, 29.783811207287847 ], [ -95.202519961436025, 29.78356420777126 ], [ -95.202475961499502, 29.783393207104151 ], [ -95.202437961717422, 29.783289207041676 ], [ -95.202418960925229, 29.783212207107201 ], [ -95.202412961373611, 29.783047207386055 ], [ -95.202538961019343, 29.782678207311847 ], [ -95.202683961623777, 29.782442207040202 ], [ -95.202866961902672, 29.782288206849923 ], [ -95.202916961271612, 29.782233207287351 ], [ -95.202941961616574, 29.782189207482876 ], [ -95.202948961107097, 29.78213920744556 ], [ -95.202972961973231, 29.782055206777937 ], [ -95.203004961392111, 29.781947206906043 ], [ -95.203061961653802, 29.781826206896987 ], [ -95.203086961132087, 29.781661207071902 ], [ -95.203062961949144, 29.781491207346559 ], [ -95.203054961556163, 29.781434207050445 ], [ -95.202928961642272, 29.781098207295038 ], [ -95.203046961602425, 29.780938207407761 ], [ -95.203117961166356, 29.780816206594341 ], [ -95.203620961649236, 29.779943206462185 ], [ -95.203731961894192, 29.779749206920187 ], [ -95.203901961553328, 29.779454206933785 ], [ -95.20404496208171, 29.77920820617442 ], [ -95.204420961953517, 29.778758206672446 ], [ -95.204508961406688, 29.778651206569666 ], [ -95.204649962090073, 29.77848420631361 ], [ -95.204756961604232, 29.778295206449638 ], [ -95.204758961321033, 29.778150206028119 ], [ -95.204832961889366, 29.777952205937154 ], [ -95.204858962201854, 29.777656205879502 ], [ -95.204832961561593, 29.777531206246451 ], [ -95.204838961634152, 29.777465206260057 ], [ -95.204882961307305, 29.777416206051445 ], [ -95.204989961409836, 29.777328205784691 ], [ -95.205027961871863, 29.777267205727647 ], [ -95.205065962316681, 29.777036205998449 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 379, "Tract": "48201233400", "Area_SqMi": 1.0073210402364829, "total_2009": 1948, "total_2010": 1923, "total_2011": 1930, "total_2012": 1893, "total_2013": 1794, "total_2014": 1848, "total_2015": 2340, "total_2016": 2005, "total_2017": 2283, "total_2018": 2441, "total_2019": 2097, "total_2020": 2036, "age1": 490, "age2": 985, "age3": 425, "earn1": 331, "earn2": 584, "earn3": 985, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 129, "naics_s05": 66, "naics_s06": 414, "naics_s07": 301, "naics_s08": 66, "naics_s09": 77, "naics_s10": 110, "naics_s11": 21, "naics_s12": 45, "naics_s13": 0, "naics_s14": 68, "naics_s15": 31, "naics_s16": 150, "naics_s17": 14, "naics_s18": 196, "naics_s19": 75, "naics_s20": 137, "race1": 1462, "race2": 290, "race3": 21, "race4": 100, "race5": 5, "race6": 22, "ethnicity1": 1036, "ethnicity2": 864, "edu1": 366, "edu2": 411, "edu3": 413, "edu4": 220, "Shape_Length": 31127.437552562427, "Shape_Area": 28082386.554602396, "total_2021": 1976, "total_2022": 1900 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.265499977093626, 29.769047202393818 ], [ -95.265546976974562, 29.768283201913096 ], [ -95.265282977145318, 29.768279202428484 ], [ -95.26511797718689, 29.768277202574684 ], [ -95.26435897690601, 29.768266202096058 ], [ -95.263915976886679, 29.768263202734257 ], [ -95.263481976323249, 29.768233202430178 ], [ -95.263137976133663, 29.768198201944635 ], [ -95.262125976058527, 29.768214202675331 ], [ -95.261184975804355, 29.768233202209522 ], [ -95.259876975205856, 29.768255202128412 ], [ -95.259406975607263, 29.76824920282839 ], [ -95.25940597589036, 29.768702202285123 ], [ -95.259318975090949, 29.768690202476193 ], [ -95.258970975105541, 29.768640202395282 ], [ -95.257887975090512, 29.768475202519458 ], [ -95.256062974076769, 29.768184202946298 ], [ -95.256075974481291, 29.767930202842056 ], [ -95.251856972985792, 29.767318202495808 ], [ -95.251147972893008, 29.767227202741704 ], [ -95.250427972875087, 29.767190202883818 ], [ -95.249726972959863, 29.767186202606027 ], [ -95.247363972317615, 29.767234202854965 ], [ -95.245203971919139, 29.76727720254593 ], [ -95.243626970774471, 29.76730020242552 ], [ -95.24205597125399, 29.767328203169697 ], [ -95.240438970772672, 29.76735220308748 ], [ -95.238832969655775, 29.767363202751554 ], [ -95.233818969066789, 29.767441203002054 ], [ -95.232788969000651, 29.767454203280217 ], [ -95.231884968055681, 29.767475203542233 ], [ -95.230188967783889, 29.767495202906066 ], [ -95.229190967881223, 29.767508202899517 ], [ -95.228482967322947, 29.767520203632884 ], [ -95.226982967009278, 29.767552203523937 ], [ -95.226570967096492, 29.767548203143118 ], [ -95.226369966549356, 29.767556203455513 ], [ -95.225976967045341, 29.767564203315523 ], [ -95.225666966454853, 29.767564203008714 ], [ -95.225430966347986, 29.767556203299261 ], [ -95.225171966164908, 29.767520203451415 ], [ -95.224926966409399, 29.767463203524137 ], [ -95.224662965973863, 29.767378203165666 ], [ -95.224302965818566, 29.76724020341403 ], [ -95.223956966298843, 29.767096203363398 ], [ -95.22377996578382, 29.767491203878389 ], [ -95.223696966366688, 29.767677203398499 ], [ -95.223617966429273, 29.768185204059126 ], [ -95.223592965728599, 29.768287203318554 ], [ -95.223576966260381, 29.768355203282439 ], [ -95.2238409662896, 29.768545204166042 ], [ -95.223941966359092, 29.768709203903544 ], [ -95.224112966804768, 29.768687204082088 ], [ -95.224400966300649, 29.76855720401397 ], [ -95.224848966906123, 29.768583203917153 ], [ -95.225107966532221, 29.768714203509663 ], [ -95.225210966190659, 29.769126203964529 ], [ -95.225269966268073, 29.769502203711184 ], [ -95.225569967013527, 29.769543203554594 ], [ -95.226101966666334, 29.769235203950316 ], [ -95.226343966700171, 29.769000203985371 ], [ -95.226517967351612, 29.768932203688689 ], [ -95.226846966962256, 29.768929203704765 ], [ -95.227156967550926, 29.769173203454152 ], [ -95.227275966742951, 29.76942920391302 ], [ -95.227197967620228, 29.76955920367875 ], [ -95.227210967491686, 29.769663204038729 ], [ -95.227261967418229, 29.769791203700315 ], [ -95.227070967128881, 29.770409203867221 ], [ -95.227306966970957, 29.770923203727776 ], [ -95.22733996676223, 29.770983204465924 ], [ -95.227504966806876, 29.771174204480868 ], [ -95.227492967199723, 29.771564204324495 ], [ -95.227724967884996, 29.771614203840649 ], [ -95.227858967444234, 29.771882204650481 ], [ -95.227978967568944, 29.772121204729597 ], [ -95.231152968171884, 29.772824204143546 ], [ -95.23271096857043, 29.773162204552555 ], [ -95.232909968701065, 29.773206203953251 ], [ -95.23312796844823, 29.773253204184499 ], [ -95.235249969209249, 29.773725204255502 ], [ -95.235789969646888, 29.773811204336756 ], [ -95.236161969309634, 29.773861204515782 ], [ -95.236707970028135, 29.773890204379047 ], [ -95.237571969819996, 29.773882203980371 ], [ -95.240474970616319, 29.773850204659407 ], [ -95.24167997111482, 29.773837204091929 ], [ -95.24485997236583, 29.773803203898954 ], [ -95.24714597202761, 29.773767203570646 ], [ -95.247374972522564, 29.773764203966195 ], [ -95.247559972879571, 29.773762204285916 ], [ -95.250233973353318, 29.773771203795683 ], [ -95.250318973557313, 29.773777203770489 ], [ -95.250390973747045, 29.773775204079033 ], [ -95.250533973320046, 29.773779204220048 ], [ -95.251238973361353, 29.773796204049226 ], [ -95.251307973803819, 29.773798203729932 ], [ -95.251521973458367, 29.773803204050971 ], [ -95.252148973874924, 29.773844203481453 ], [ -95.252833974298539, 29.773914203999453 ], [ -95.253730974562544, 29.774045203504237 ], [ -95.254698974819377, 29.774198203829435 ], [ -95.255061974513069, 29.77425520340142 ], [ -95.257701974863679, 29.774685204070451 ], [ -95.258775975775535, 29.774860203946133 ], [ -95.262022975935452, 29.775388203639732 ], [ -95.263482976723225, 29.775626204214543 ], [ -95.263911976976999, 29.775698203471748 ], [ -95.263948977105997, 29.775713204074311 ], [ -95.263973976810163, 29.775707203973113 ], [ -95.264083977155778, 29.775726203865656 ], [ -95.264112977316501, 29.775587203941203 ], [ -95.264122976580012, 29.775538204032127 ], [ -95.264131976504814, 29.775496203692093 ], [ -95.264195976669413, 29.775191203746576 ], [ -95.264317976631091, 29.774631203366074 ], [ -95.265185976764457, 29.77063020257663 ], [ -95.265395976663726, 29.769696202975538 ], [ -95.265413977121185, 29.769613202239039 ], [ -95.265461977053647, 29.769390202629879 ], [ -95.265499977093626, 29.769047202393818 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 380, "Tract": "48201311100", "Area_SqMi": 1.0696446052877067, "total_2009": 891, "total_2010": 674, "total_2011": 940, "total_2012": 740, "total_2013": 707, "total_2014": 801, "total_2015": 798, "total_2016": 729, "total_2017": 853, "total_2018": 891, "total_2019": 898, "total_2020": 871, "age1": 144, "age2": 423, "age3": 234, "earn1": 90, "earn2": 219, "earn3": 492, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 159, "naics_s06": 92, "naics_s07": 14, "naics_s08": 281, "naics_s09": 0, "naics_s10": 4, "naics_s11": 0, "naics_s12": 14, "naics_s13": 0, "naics_s14": 63, "naics_s15": 0, "naics_s16": 41, "naics_s17": 0, "naics_s18": 122, "naics_s19": 11, "naics_s20": 0, "race1": 680, "race2": 84, "race3": 8, "race4": 21, "race5": 2, "race6": 6, "ethnicity1": 386, "ethnicity2": 415, "edu1": 185, "edu2": 184, "edu3": 183, "edu4": 105, "Shape_Length": 26624.381012509639, "Shape_Area": 29819860.880382873, "total_2021": 824, "total_2022": 801 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.294873982728035, 29.728037193169495 ], [ -95.294905982688562, 29.72795019304413 ], [ -95.294801982882547, 29.727952192682324 ], [ -95.294601983050882, 29.727884193075909 ], [ -95.294340982939076, 29.727708192780579 ], [ -95.294049982330336, 29.727403193059097 ], [ -95.293605982790197, 29.726754192674615 ], [ -95.293267982248977, 29.726490192543746 ], [ -95.292898982362487, 29.726329192977154 ], [ -95.29169398129369, 29.726077193123118 ], [ -95.291278981946206, 29.725845192280829 ], [ -95.291069981991058, 29.725578192711129 ], [ -95.290493981166819, 29.723923192624671 ], [ -95.290318981162088, 29.723638191939369 ], [ -95.290132981609133, 29.723495192570962 ], [ -95.289841981040794, 29.723360191761842 ], [ -95.289314981524797, 29.723272192284671 ], [ -95.288616980395446, 29.723338192482267 ], [ -95.288415980473786, 29.723385192277675 ], [ -95.288059981063014, 29.723469192018271 ], [ -95.287812980916542, 29.723461192199522 ], [ -95.287272980927114, 29.723281192618696 ], [ -95.286437980763097, 29.722664191943817 ], [ -95.286182980419142, 29.722638192265382 ], [ -95.286028979655725, 29.722622192569176 ], [ -95.28562798055664, 29.722692192011642 ], [ -95.284828979830323, 29.722521192254977 ], [ -95.284143979312049, 29.722375191974685 ], [ -95.28363897952913, 29.722476191975439 ], [ -95.283621979446238, 29.722490192324784 ], [ -95.283594979254545, 29.722497191920386 ], [ -95.283390979094349, 29.722623192548649 ], [ -95.283379979139355, 29.722638192547958 ], [ -95.283060979267859, 29.723081192715181 ], [ -95.282632979619677, 29.723833192349446 ], [ -95.282399979251167, 29.724243192906656 ], [ -95.282073979078575, 29.724702192681761 ], [ -95.282030979039945, 29.724913192402802 ], [ -95.28203497948094, 29.724930192897542 ], [ -95.282224979091296, 29.725724193146341 ], [ -95.282223979650283, 29.725976192802108 ], [ -95.282117978969552, 29.726472193433597 ], [ -95.281904978965741, 29.727094193025241 ], [ -95.281866979338602, 29.727157193553296 ], [ -95.28177097912409, 29.727316193495959 ], [ -95.281673979718903, 29.727384193730131 ], [ -95.281355978752373, 29.727452193427045 ], [ -95.280827978942185, 29.727400193288606 ], [ -95.280506978647907, 29.727453193360084 ], [ -95.28017397872695, 29.727433193276319 ], [ -95.278937978068257, 29.727521193039024 ], [ -95.278890978063046, 29.727520193397766 ], [ -95.278441978786759, 29.727509193513953 ], [ -95.278047978523148, 29.727405193543401 ], [ -95.277500978163133, 29.72702219381129 ], [ -95.277223977829252, 29.726955193724638 ], [ -95.276519977946478, 29.72665219325425 ], [ -95.276315977319982, 29.726766193801147 ], [ -95.275316977894988, 29.727326193737746 ], [ -95.27529097759556, 29.727341193937143 ], [ -95.275186978009557, 29.727399193449926 ], [ -95.275922978081141, 29.728648193818859 ], [ -95.276151977816838, 29.729151193491479 ], [ -95.276433977861259, 29.730241193867084 ], [ -95.276468978375007, 29.730887194052858 ], [ -95.276918978239237, 29.732941194493428 ], [ -95.277159978600977, 29.733478194634522 ], [ -95.277497978672457, 29.733885194385426 ], [ -95.277588978196931, 29.734272194642379 ], [ -95.277929978650747, 29.734967194706037 ], [ -95.278001979082589, 29.735358195424638 ], [ -95.278885978654131, 29.737185194971484 ], [ -95.279054978733228, 29.737667195156298 ], [ -95.27925397949501, 29.737896195217672 ], [ -95.279790979734869, 29.738707195648839 ], [ -95.280227979152428, 29.7395241955461 ], [ -95.281223979394966, 29.740720195907464 ], [ -95.281413979471367, 29.741063196246706 ], [ -95.28179797972237, 29.741510196316899 ], [ -95.282874980179358, 29.742767196020434 ], [ -95.283046979866285, 29.742845196398143 ], [ -95.283125980177161, 29.742881196738534 ], [ -95.283842980466375, 29.743480196570349 ], [ -95.284774980538685, 29.744627196326068 ], [ -95.284951980706282, 29.74502819643368 ], [ -95.284917980494441, 29.745205196552622 ], [ -95.284897981290257, 29.745312196686786 ], [ -95.284957980931139, 29.745446196759158 ], [ -95.286580981889458, 29.748163197370346 ], [ -95.286657981196768, 29.748293197524752 ], [ -95.286909981964854, 29.748530197044047 ], [ -95.287059981359775, 29.748639197865913 ], [ -95.288605981884203, 29.749761197257367 ], [ -95.288301982287706, 29.748225197365898 ], [ -95.288256981366089, 29.747857196991571 ], [ -95.288239982280942, 29.747769197663118 ], [ -95.288204982131091, 29.747580196875099 ], [ -95.288193981779273, 29.74687419737899 ], [ -95.28817898182389, 29.746166196696574 ], [ -95.28817798203616, 29.745440196860084 ], [ -95.288167981359933, 29.744734196646569 ], [ -95.288157981269975, 29.744008196298985 ], [ -95.288134982032858, 29.74333419620638 ], [ -95.28810698187371, 29.743165195897635 ], [ -95.288102981453065, 29.743138196612975 ], [ -95.288077981881656, 29.743052196073826 ], [ -95.288024982031942, 29.742747196036973 ], [ -95.288292982049725, 29.74204819637702 ], [ -95.288378982058461, 29.741843195753624 ], [ -95.288586982093989, 29.741371195583802 ], [ -95.288840981605603, 29.740708196181632 ], [ -95.289101982167438, 29.740029195921043 ], [ -95.289377981951787, 29.739348195878524 ], [ -95.289639982131007, 29.738680195316341 ], [ -95.289925981735308, 29.737994194825617 ], [ -95.29020698172009, 29.737340194678609 ], [ -95.290514981876314, 29.736556194820476 ], [ -95.290834982201872, 29.735748194428403 ], [ -95.291100981794017, 29.735080194190584 ], [ -95.291381982173036, 29.734408194530843 ], [ -95.291638982421404, 29.733747194452199 ], [ -95.291763982519541, 29.733440194604231 ], [ -95.29188298257526, 29.733165194174934 ], [ -95.291889982145207, 29.733147194172478 ], [ -95.292065981985786, 29.732698194157994 ], [ -95.292155982131916, 29.732556194113933 ], [ -95.292448982340218, 29.731834193777193 ], [ -95.292456981777903, 29.731809193957837 ], [ -95.292470981952491, 29.73177019427192 ], [ -95.292503982099234, 29.7317071933977 ], [ -95.292641982338424, 29.731344193811417 ], [ -95.292703982739326, 29.731185193475429 ], [ -95.292989982230338, 29.730456193654081 ], [ -95.293154982473041, 29.730232193492661 ], [ -95.293240982559553, 29.730138193742974 ], [ -95.293250982121108, 29.730128193297002 ], [ -95.293625982028829, 29.729784193474369 ], [ -95.294124982961804, 29.72925019341497 ], [ -95.294625982264748, 29.728686193499659 ], [ -95.294815982736012, 29.728189192838364 ], [ -95.294873982728035, 29.728037193169495 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 381, "Tract": "48201311300", "Area_SqMi": 0.56948310432438254, "total_2009": 626, "total_2010": 783, "total_2011": 908, "total_2012": 816, "total_2013": 798, "total_2014": 885, "total_2015": 821, "total_2016": 622, "total_2017": 465, "total_2018": 426, "total_2019": 405, "total_2020": 311, "age1": 62, "age2": 169, "age3": 59, "earn1": 63, "earn2": 116, "earn3": 111, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 7, "naics_s06": 0, "naics_s07": 19, "naics_s08": 11, "naics_s09": 0, "naics_s10": 15, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 3, "naics_s15": 127, "naics_s16": 11, "naics_s17": 0, "naics_s18": 94, "naics_s19": 0, "naics_s20": 0, "race1": 220, "race2": 40, "race3": 2, "race4": 24, "race5": 2, "race6": 2, "ethnicity1": 121, "ethnicity2": 169, "edu1": 67, "edu2": 60, "edu3": 63, "edu4": 38, "Shape_Length": 19249.380743447044, "Shape_Area": 15876214.268489636, "total_2021": 331, "total_2022": 290 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.305106984801114, 29.708430188321454 ], [ -95.30500098466517, 29.708359188850959 ], [ -95.304325984511536, 29.707909188201747 ], [ -95.302296983259666, 29.706555188730967 ], [ -95.302034983918375, 29.706373187912213 ], [ -95.301560983311731, 29.706044188156223 ], [ -95.301137982870799, 29.705769188146665 ], [ -95.299200982202066, 29.704511188340284 ], [ -95.297798982458701, 29.703634188340924 ], [ -95.297519982155478, 29.703460188066359 ], [ -95.29561398211105, 29.702231187887381 ], [ -95.295459981672707, 29.702131187579141 ], [ -95.295274981981947, 29.702346187423089 ], [ -95.294843981869192, 29.702879188217668 ], [ -95.294429981399603, 29.703322187795887 ], [ -95.29395998173004, 29.703664187907929 ], [ -95.293383981715607, 29.703845188178679 ], [ -95.292862981364365, 29.703868188095491 ], [ -95.291554980824131, 29.703832188095678 ], [ -95.291106980853755, 29.703887188573844 ], [ -95.29051998052168, 29.704048188673102 ], [ -95.290277980105984, 29.704226188269214 ], [ -95.289991980869061, 29.704468188569024 ], [ -95.289811979988229, 29.704658188501252 ], [ -95.289731980535763, 29.704876188367532 ], [ -95.28988998025946, 29.705635189015982 ], [ -95.290059980042301, 29.706408188557667 ], [ -95.290090980072875, 29.707141188567931 ], [ -95.290105980079034, 29.707885188700388 ], [ -95.290104980805992, 29.707979188824247 ], [ -95.290119980749552, 29.708620189074928 ], [ -95.290137980328524, 29.709368189703582 ], [ -95.290137980705239, 29.710139189717527 ], [ -95.290156980707408, 29.710703189214108 ], [ -95.290166980908054, 29.710915189528695 ], [ -95.29018098093789, 29.711679190237373 ], [ -95.290196980772151, 29.712202189801847 ], [ -95.289401980696724, 29.712809190219861 ], [ -95.288536980138048, 29.713469189855438 ], [ -95.288354979896837, 29.713614189872079 ], [ -95.287912980027997, 29.71393519065678 ], [ -95.287177979800418, 29.714485190321348 ], [ -95.286115980110623, 29.714492190187478 ], [ -95.285966979688553, 29.714567190686434 ], [ -95.285943979622729, 29.714652190942179 ], [ -95.285906979285954, 29.714791190509541 ], [ -95.285947979345423, 29.715532190495011 ], [ -95.285957980382619, 29.716775191063384 ], [ -95.285961980174108, 29.716849191387364 ], [ -95.286027980367408, 29.717989191236239 ], [ -95.286049980133896, 29.719074191508739 ], [ -95.286081979821105, 29.7191121914049 ], [ -95.290284980662591, 29.716744190853806 ], [ -95.290502981388954, 29.716635191013999 ], [ -95.294857982522927, 29.714177190111464 ], [ -95.296609982205425, 29.713201190095774 ], [ -95.298604983222205, 29.712076189671595 ], [ -95.299865982896492, 29.711365189235114 ], [ -95.302333983933138, 29.709981189251017 ], [ -95.304943984002975, 29.708523188480488 ], [ -95.305106984801114, 29.708430188321454 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 382, "Tract": "48201311400", "Area_SqMi": 1.0090442034761726, "total_2009": 2214, "total_2010": 2078, "total_2011": 2097, "total_2012": 2279, "total_2013": 2356, "total_2014": 2191, "total_2015": 1900, "total_2016": 1952, "total_2017": 1437, "total_2018": 1379, "total_2019": 1417, "total_2020": 1062, "age1": 293, "age2": 716, "age3": 309, "earn1": 227, "earn2": 275, "earn3": 816, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 257, "naics_s06": 207, "naics_s07": 47, "naics_s08": 417, "naics_s09": 0, "naics_s10": 34, "naics_s11": 2, "naics_s12": 20, "naics_s13": 0, "naics_s14": 0, "naics_s15": 88, "naics_s16": 42, "naics_s17": 0, "naics_s18": 33, "naics_s19": 145, "naics_s20": 0, "race1": 959, "race2": 257, "race3": 13, "race4": 75, "race5": 0, "race6": 14, "ethnicity1": 836, "ethnicity2": 482, "edu1": 244, "edu2": 292, "edu3": 301, "edu4": 188, "Shape_Length": 22911.645853753169, "Shape_Area": 28130425.396501586, "total_2021": 1279, "total_2022": 1318 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.286915980253497, 29.72110819218452 ], [ -95.286713979897371, 29.720754192001415 ], [ -95.286565979917157, 29.720498191374148 ], [ -95.286423980592787, 29.72036619155104 ], [ -95.286268979726657, 29.720262191994031 ], [ -95.28609797990255, 29.720172191771319 ], [ -95.286043980157771, 29.720149191300397 ], [ -95.285990980454898, 29.720126191456313 ], [ -95.285867980057247, 29.720087191887426 ], [ -95.28567498042645, 29.720041191422489 ], [ -95.285278980247654, 29.719994191554036 ], [ -95.285117979878564, 29.719655191178237 ], [ -95.28569797971744, 29.719325191646217 ], [ -95.285848980274082, 29.719244191516569 ], [ -95.286005980107248, 29.719156191065643 ], [ -95.286081979821105, 29.7191121914049 ], [ -95.286049980133896, 29.719074191508739 ], [ -95.286027980367408, 29.717989191236239 ], [ -95.285961980174108, 29.716849191387364 ], [ -95.285957980382619, 29.716775191063384 ], [ -95.284364979873303, 29.71675719088131 ], [ -95.284305979867, 29.716745191105925 ], [ -95.28361197908302, 29.716605190985167 ], [ -95.28273197857979, 29.716233191328001 ], [ -95.282036978708561, 29.715933190606968 ], [ -95.280867978762487, 29.715656191290226 ], [ -95.280721978169097, 29.715655190806402 ], [ -95.28028697839342, 29.715652190531642 ], [ -95.279988978334941, 29.715380191135978 ], [ -95.278207977341012, 29.713821190321067 ], [ -95.277637977526624, 29.71354419093122 ], [ -95.276723977043559, 29.713104190491585 ], [ -95.275791976595201, 29.712764190655619 ], [ -95.275394977117045, 29.712522190849629 ], [ -95.275205976790005, 29.712406190247428 ], [ -95.274499977193656, 29.712067190082614 ], [ -95.273852976167873, 29.711818190284536 ], [ -95.272328975685042, 29.711303189906445 ], [ -95.271625976092963, 29.711043190730635 ], [ -95.270570975923931, 29.710711189853196 ], [ -95.26948897517974, 29.710457190100879 ], [ -95.268644974693245, 29.710270190011126 ], [ -95.268298975291458, 29.71019319068267 ], [ -95.268152974891507, 29.710156190007229 ], [ -95.267894975020965, 29.710092189798658 ], [ -95.267587974661552, 29.710015190333749 ], [ -95.267183974666864, 29.709914189977418 ], [ -95.266958975124965, 29.71017818984463 ], [ -95.266924974483146, 29.71021119008784 ], [ -95.266792974486975, 29.710445190733736 ], [ -95.266721974272926, 29.710564190129475 ], [ -95.266685974289288, 29.710635190768901 ], [ -95.266653975011067, 29.71068519048659 ], [ -95.266474974897775, 29.711163190383107 ], [ -95.26637497431544, 29.711649190466801 ], [ -95.266317974901568, 29.711904190417354 ], [ -95.266300974748205, 29.712186190481347 ], [ -95.266271974715849, 29.712838190972153 ], [ -95.266262975064109, 29.713070191207599 ], [ -95.266281975100924, 29.713399191155663 ], [ -95.266304974288587, 29.713807190688801 ], [ -95.266304975124228, 29.713900190800086 ], [ -95.26629997432083, 29.714000190952685 ], [ -95.266322974652311, 29.714276190889699 ], [ -95.266315974454386, 29.714356190974122 ], [ -95.26629297434728, 29.71530819111414 ], [ -95.266269974985349, 29.716220191387663 ], [ -95.266269975285894, 29.716243191354891 ], [ -95.266264975096831, 29.716481191211773 ], [ -95.266262974326281, 29.716570191550847 ], [ -95.266262975166839, 29.717806191484019 ], [ -95.266224975379771, 29.718386191587843 ], [ -95.266214974540503, 29.721364192923154 ], [ -95.266213975204806, 29.721465192690456 ], [ -95.266210975205567, 29.722345193098434 ], [ -95.266274975429781, 29.723285193113867 ], [ -95.26634397509055, 29.723773192888274 ], [ -95.266347974671746, 29.723804192989352 ], [ -95.266420974734402, 29.724124193309812 ], [ -95.266519974900959, 29.724860192977598 ], [ -95.266531975369887, 29.724944193353696 ], [ -95.266796974826178, 29.724924193332082 ], [ -95.269327976130853, 29.72473419306521 ], [ -95.269898975837137, 29.724651193020765 ], [ -95.270476976301055, 29.724845192875414 ], [ -95.271010976209027, 29.724885193287662 ], [ -95.27116097625418, 29.724925192777565 ], [ -95.271643976319837, 29.725053193154388 ], [ -95.273745977246861, 29.726437193548982 ], [ -95.274459977005364, 29.72690719366646 ], [ -95.275186978009557, 29.727399193449926 ], [ -95.27529097759556, 29.727341193937143 ], [ -95.275316977894988, 29.727326193737746 ], [ -95.276315977319982, 29.726766193801147 ], [ -95.276519977946478, 29.72665219325425 ], [ -95.277223977829252, 29.726955193724638 ], [ -95.277500978163133, 29.72702219381129 ], [ -95.278047978523148, 29.727405193543401 ], [ -95.278441978786759, 29.727509193513953 ], [ -95.278890978063046, 29.727520193397766 ], [ -95.278937978068257, 29.727521193039024 ], [ -95.28017397872695, 29.727433193276319 ], [ -95.280506978647907, 29.727453193360084 ], [ -95.280827978942185, 29.727400193288606 ], [ -95.281355978752373, 29.727452193427045 ], [ -95.281673979718903, 29.727384193730131 ], [ -95.28177097912409, 29.727316193495959 ], [ -95.281866979338602, 29.727157193553296 ], [ -95.281904978965741, 29.727094193025241 ], [ -95.282117978969552, 29.726472193433597 ], [ -95.282223979650283, 29.725976192802108 ], [ -95.282224979091296, 29.725724193146341 ], [ -95.28203497948094, 29.724930192897542 ], [ -95.282030979039945, 29.724913192402802 ], [ -95.282073979078575, 29.724702192681761 ], [ -95.282399979251167, 29.724243192906656 ], [ -95.282632979619677, 29.723833192349446 ], [ -95.283060979267859, 29.723081192715181 ], [ -95.283379979139355, 29.722638192547958 ], [ -95.283390979094349, 29.722623192548649 ], [ -95.283594979254545, 29.722497191920386 ], [ -95.283621979446238, 29.722490192324784 ], [ -95.28363897952913, 29.722476191975439 ], [ -95.284143979312049, 29.722375191974685 ], [ -95.284828979830323, 29.722521192254977 ], [ -95.28562798055664, 29.722692192011642 ], [ -95.286028979655725, 29.722622192569176 ], [ -95.286182980419142, 29.722638192265382 ], [ -95.286316980644457, 29.722359192216967 ], [ -95.286711979760369, 29.721532192209089 ], [ -95.286915980253497, 29.72110819218452 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 383, "Tract": "48201233600", "Area_SqMi": 1.523504490644735, "total_2009": 807, "total_2010": 614, "total_2011": 1151, "total_2012": 317, "total_2013": 309, "total_2014": 161, "total_2015": 295, "total_2016": 451, "total_2017": 590, "total_2018": 435, "total_2019": 392, "total_2020": 329, "age1": 332, "age2": 670, "age3": 234, "earn1": 187, "earn2": 247, "earn3": 802, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1054, "naics_s05": 15, "naics_s06": 33, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 1, "naics_s13": 12, "naics_s14": 78, "naics_s15": 0, "naics_s16": 24, "naics_s17": 0, "naics_s18": 0, "naics_s19": 18, "naics_s20": 0, "race1": 1024, "race2": 176, "race3": 15, "race4": 12, "race5": 0, "race6": 9, "ethnicity1": 409, "ethnicity2": 827, "edu1": 318, "edu2": 264, "edu3": 227, "edu4": 95, "Shape_Length": 33970.015805399882, "Shape_Area": 42472697.695179693, "total_2021": 327, "total_2022": 1236 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.265577976407585, 29.767363202013069 ], [ -95.265566977090188, 29.767000201815787 ], [ -95.265518976741333, 29.76543120146674 ], [ -95.265457977174705, 29.763445201027793 ], [ -95.265369976518286, 29.760573200520636 ], [ -95.265363976483414, 29.760373200780077 ], [ -95.265344976118882, 29.759724200756875 ], [ -95.265197976728658, 29.754611199268474 ], [ -95.2650179759125, 29.747801198238381 ], [ -95.264961975998673, 29.746275197665771 ], [ -95.264953975785346, 29.746032197365093 ], [ -95.264951976035221, 29.745989197676305 ], [ -95.264907975865782, 29.744778197077945 ], [ -95.264932975847884, 29.74344019759037 ], [ -95.264911975928229, 29.74285919733568 ], [ -95.264960975457242, 29.74192719693065 ], [ -95.265002975183933, 29.74136919694104 ], [ -95.265061975741645, 29.740867196630305 ], [ -95.265288975218041, 29.739217196168752 ], [ -95.26543197566221, 29.738250196380449 ], [ -95.265179975456306, 29.738087195685573 ], [ -95.264746975260863, 29.737807196156911 ], [ -95.26444697551085, 29.737630196193805 ], [ -95.263525974942482, 29.73706419632736 ], [ -95.263071975053265, 29.736769195556104 ], [ -95.261026973839719, 29.735391195717487 ], [ -95.257789973743328, 29.733210195279739 ], [ -95.256974973443562, 29.732676195601083 ], [ -95.256647973341302, 29.732469195022912 ], [ -95.256422973366682, 29.732327195163286 ], [ -95.256007972965904, 29.732133195066893 ], [ -95.255599972521452, 29.732032195125512 ], [ -95.255099972463057, 29.731986195354125 ], [ -95.255130972449223, 29.732723195137115 ], [ -95.253612972757878, 29.732760195022472 ], [ -95.253607972357216, 29.733148195210678 ], [ -95.253602971800916, 29.733444195628188 ], [ -95.253628972798893, 29.734125195887586 ], [ -95.253646972600748, 29.734810195978529 ], [ -95.253670972317821, 29.735498195500515 ], [ -95.25368397210849, 29.736192196233088 ], [ -95.253706972165716, 29.736884196269759 ], [ -95.253714972807273, 29.737567196532197 ], [ -95.253730972806608, 29.738255196553268 ], [ -95.253711972602844, 29.738960196740493 ], [ -95.253771972461323, 29.739623197174836 ], [ -95.253788972944832, 29.74032419655504 ], [ -95.253810972227754, 29.740998196815934 ], [ -95.253829972639622, 29.741697197293497 ], [ -95.253856972309762, 29.742382197477649 ], [ -95.253913972810309, 29.744445197444044 ], [ -95.253950973139439, 29.746194198433802 ], [ -95.253997972500841, 29.746193198062716 ], [ -95.253957972978185, 29.746483198013369 ], [ -95.254079973366984, 29.749945198987994 ], [ -95.254310973422236, 29.757501200737689 ], [ -95.254296973238965, 29.757561200579186 ], [ -95.254296973539141, 29.757601200822904 ], [ -95.253804973681426, 29.75760820067029 ], [ -95.253155972833724, 29.757610200035945 ], [ -95.251631972416618, 29.757614200479935 ], [ -95.251713973038775, 29.759702200826943 ], [ -95.251722973102488, 29.75992420062256 ], [ -95.251851973047152, 29.75995520057981 ], [ -95.251950973254509, 29.759953200929999 ], [ -95.253250973486246, 29.759922201176771 ], [ -95.255870973636959, 29.759896200455987 ], [ -95.255889973831145, 29.76050120073587 ], [ -95.255909974376891, 29.76082820088719 ], [ -95.255969974077431, 29.763761201949247 ], [ -95.255984974520004, 29.764146201821067 ], [ -95.256021974774413, 29.765792202309111 ], [ -95.256075974910331, 29.767719202142711 ], [ -95.256075974481291, 29.767930202842056 ], [ -95.256062974076769, 29.768184202946298 ], [ -95.257887975090512, 29.768475202519458 ], [ -95.258970975105541, 29.768640202395282 ], [ -95.259318975090949, 29.768690202476193 ], [ -95.25940597589036, 29.768702202285123 ], [ -95.259406975607263, 29.76824920282839 ], [ -95.259876975205856, 29.768255202128412 ], [ -95.261184975804355, 29.768233202209522 ], [ -95.262125976058527, 29.768214202675331 ], [ -95.263137976133663, 29.768198201944635 ], [ -95.263481976323249, 29.768233202430178 ], [ -95.263915976886679, 29.768263202734257 ], [ -95.26435897690601, 29.768266202096058 ], [ -95.26511797718689, 29.768277202574684 ], [ -95.265282977145318, 29.768279202428484 ], [ -95.265546976974562, 29.768283201913096 ], [ -95.265558976617413, 29.768087202181785 ], [ -95.265577976407585, 29.767363202013069 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 384, "Tract": "48167720400", "Area_SqMi": 5.813171868699782, "total_2009": 766, "total_2010": 824, "total_2011": 1084, "total_2012": 923, "total_2013": 1016, "total_2014": 1007, "total_2015": 1019, "total_2016": 1006, "total_2017": 1074, "total_2018": 1224, "total_2019": 1371, "total_2020": 1451, "age1": 595, "age2": 754, "age3": 301, "earn1": 449, "earn2": 551, "earn3": 650, "naics_s01": 0, "naics_s02": 8, "naics_s03": 47, "naics_s04": 24, "naics_s05": 7, "naics_s06": 59, "naics_s07": 448, "naics_s08": 12, "naics_s09": 15, "naics_s10": 94, "naics_s11": 5, "naics_s12": 111, "naics_s13": 0, "naics_s14": 132, "naics_s15": 65, "naics_s16": 165, "naics_s17": 5, "naics_s18": 219, "naics_s19": 123, "naics_s20": 111, "race1": 1311, "race2": 210, "race3": 12, "race4": 98, "race5": 0, "race6": 19, "ethnicity1": 1136, "ethnicity2": 514, "edu1": 192, "edu2": 284, "edu3": 331, "edu4": 248, "Shape_Length": 56327.880292492038, "Shape_Area": 162061282.35626143, "total_2021": 1470, "total_2022": 1650 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.225736953542281, 29.466586141427438 ], [ -95.225493953905328, 29.4665581416353 ], [ -95.224644952742651, 29.466568141416282 ], [ -95.224204953546007, 29.466558141472866 ], [ -95.221725952331752, 29.466558141225992 ], [ -95.218414951123108, 29.466525142185436 ], [ -95.211604950372077, 29.466446141673735 ], [ -95.210759949823, 29.466431141977896 ], [ -95.210475949407453, 29.466401142052032 ], [ -95.210018949869323, 29.466341142334091 ], [ -95.209863949798802, 29.466337142311367 ], [ -95.209637949142149, 29.46633314180616 ], [ -95.20960194962187, 29.46633414173689 ], [ -95.209031949074614, 29.466341141723337 ], [ -95.208687949093274, 29.466352141772628 ], [ -95.208339949380218, 29.46636314207273 ], [ -95.208194948477285, 29.466368141938158 ], [ -95.207945948466417, 29.466376141707205 ], [ -95.207654948933268, 29.466386141897846 ], [ -95.206538948749596, 29.466412142235129 ], [ -95.206517948958606, 29.466412141777205 ], [ -95.206390948610789, 29.466416142285638 ], [ -95.206215948633087, 29.466419142542083 ], [ -95.205588948804589, 29.466434141780908 ], [ -95.203831947381474, 29.46648514240281 ], [ -95.200153946618471, 29.466593142219494 ], [ -95.199834946574896, 29.466609142223195 ], [ -95.199551946280621, 29.466619142002926 ], [ -95.199410947175878, 29.466703142040373 ], [ -95.199164946177916, 29.466944142812867 ], [ -95.199046946849819, 29.467086142622957 ], [ -95.198923947090137, 29.467211142626351 ], [ -95.198918946990503, 29.467263142597922 ], [ -95.198893946882421, 29.467290142753562 ], [ -95.198865946705126, 29.467321142584467 ], [ -95.198776946639811, 29.467357142389577 ], [ -95.198567946596825, 29.467593142711632 ], [ -95.198463946860642, 29.467696142559831 ], [ -95.198452946223838, 29.467708142428375 ], [ -95.198331946414214, 29.46778114235039 ], [ -95.19788194667457, 29.467980142774191 ], [ -95.197180945955893, 29.468284143208393 ], [ -95.196346945829745, 29.46863114330262 ], [ -95.193945945323478, 29.469721142915372 ], [ -95.188961943961061, 29.46913714311156 ], [ -95.188679943769557, 29.468806143269685 ], [ -95.188520944091437, 29.468618143000203 ], [ -95.188196943475461, 29.468068143409276 ], [ -95.188055944073639, 29.467998143003282 ], [ -95.186026943030413, 29.467970143501041 ], [ -95.185222943514503, 29.467951143593602 ], [ -95.184643942945257, 29.467937142752444 ], [ -95.183024942935901, 29.467899142952216 ], [ -95.178500941737866, 29.467808143497667 ], [ -95.178395941088098, 29.467805143590219 ], [ -95.178505941062838, 29.469443143664883 ], [ -95.178461941060817, 29.469522143635061 ], [ -95.178538941988649, 29.470719144085663 ], [ -95.17864094141278, 29.472294144199154 ], [ -95.178850942184638, 29.475550144577728 ], [ -95.178912941551857, 29.47665314520399 ], [ -95.178963941553349, 29.477536145439615 ], [ -95.178971941824031, 29.477727145716152 ], [ -95.178979942131377, 29.478655145269926 ], [ -95.178979942385382, 29.478698145294612 ], [ -95.178271941530156, 29.478733146001336 ], [ -95.176144941390518, 29.478837145264812 ], [ -95.175503941400933, 29.478869145866724 ], [ -95.17478794120656, 29.479772145503468 ], [ -95.1747659409086, 29.479800146255151 ], [ -95.174410940991507, 29.480247145814158 ], [ -95.174116941156356, 29.480617145720096 ], [ -95.173565941111221, 29.481302146384703 ], [ -95.172412940614834, 29.482758146556854 ], [ -95.17225194001503, 29.482961146493086 ], [ -95.171926940892163, 29.483373146433756 ], [ -95.17134694047239, 29.484106146804727 ], [ -95.170589940592478, 29.485059147619747 ], [ -95.169808939531777, 29.486046147326505 ], [ -95.169055939916532, 29.486996147226108 ], [ -95.168410940055111, 29.487810147634946 ], [ -95.167827939728426, 29.488546147650773 ], [ -95.167253939913778, 29.489270148246188 ], [ -95.166956939695453, 29.489646148128809 ], [ -95.166608939631899, 29.490085147902263 ], [ -95.166496939552715, 29.490225148401898 ], [ -95.16635693952901, 29.490404147970679 ], [ -95.166207939301898, 29.49059114867303 ], [ -95.16632193923418, 29.490617148437391 ], [ -95.166399939805089, 29.490634148352683 ], [ -95.166549939580335, 29.490668148311133 ], [ -95.168468939867736, 29.491094148122855 ], [ -95.170520940571237, 29.491564148160045 ], [ -95.171600940553404, 29.491981148489284 ], [ -95.172536941413753, 29.492356148645804 ], [ -95.174710941161294, 29.49322814847849 ], [ -95.176247941811624, 29.493867148530811 ], [ -95.176876941798213, 29.494249148952008 ], [ -95.177504942115064, 29.494632148620354 ], [ -95.177837942410036, 29.494932149066646 ], [ -95.178597942675552, 29.495616148747281 ], [ -95.179390943177765, 29.496709149387041 ], [ -95.17972094337469, 29.497375149402732 ], [ -95.180927943379601, 29.499526149482225 ], [ -95.181149943026597, 29.499922149484128 ], [ -95.181224943516114, 29.500060149495706 ], [ -95.181319943786676, 29.500237150016758 ], [ -95.181581943962343, 29.500672149748734 ], [ -95.181660943721297, 29.500803149908268 ], [ -95.181756943963819, 29.500988150072683 ], [ -95.181906944195177, 29.501281150137071 ], [ -95.18207594361445, 29.501606149743495 ], [ -95.182355944027549, 29.502019150432016 ], [ -95.182768944253866, 29.502784150751967 ], [ -95.183081944024437, 29.503281150483371 ], [ -95.183526944351058, 29.503932150331032 ], [ -95.183873944611264, 29.504386150401547 ], [ -95.184677944204637, 29.505436150491491 ], [ -95.18539594510672, 29.506233150966025 ], [ -95.185529944658853, 29.506352151424313 ], [ -95.186311945453156, 29.507028151605603 ], [ -95.18756394502897, 29.508165151408814 ], [ -95.188163946185156, 29.508806151405988 ], [ -95.188424945357653, 29.509257151827292 ], [ -95.189768945741577, 29.508031151163994 ], [ -95.191215946340321, 29.506710150859437 ], [ -95.192060946770511, 29.505938150565541 ], [ -95.192872946553592, 29.505251150201705 ], [ -95.193518947297648, 29.504663150502619 ], [ -95.19421994685446, 29.504022149955841 ], [ -95.194903946781309, 29.503396149740816 ], [ -95.195058947185032, 29.503286149863893 ], [ -95.196146947871668, 29.5025131500798 ], [ -95.1973649478075, 29.501903149915123 ], [ -95.198111947599102, 29.501568149832032 ], [ -95.199028947843644, 29.501155149433611 ], [ -95.199201947855187, 29.501077149801734 ], [ -95.200195948110903, 29.500644149638347 ], [ -95.200245948371261, 29.500617149529123 ], [ -95.200764949041002, 29.500332149145923 ], [ -95.201582948847673, 29.499826149177043 ], [ -95.201692948315213, 29.499752148815698 ], [ -95.202133948546816, 29.499452148656605 ], [ -95.202977948554377, 29.498681148906279 ], [ -95.204978949063246, 29.49685414806676 ], [ -95.207447949620928, 29.494509148225841 ], [ -95.20868495079435, 29.493334147228506 ], [ -95.209228950423949, 29.49276014754069 ], [ -95.210444950430869, 29.491475147413624 ], [ -95.210648951155861, 29.491260147118037 ], [ -95.212337950979048, 29.489475146405589 ], [ -95.212901951241776, 29.488880146836109 ], [ -95.213744951434904, 29.487987146567981 ], [ -95.214005951840917, 29.487713146726303 ], [ -95.214286951810564, 29.487407145816185 ], [ -95.21573795142325, 29.485829145608204 ], [ -95.216046952038468, 29.485492146066193 ], [ -95.216286952045252, 29.485214145683816 ], [ -95.216884951900028, 29.484581145863935 ], [ -95.217808952325157, 29.48368114491187 ], [ -95.218573952579135, 29.482697145459966 ], [ -95.218797952861081, 29.482300145273083 ], [ -95.21912995279753, 29.481636144558337 ], [ -95.219201952886721, 29.481521144938462 ], [ -95.219748952798426, 29.47955314422402 ], [ -95.219872952264268, 29.478905144266392 ], [ -95.220190952954539, 29.477240144327936 ], [ -95.220647952719048, 29.475330143533292 ], [ -95.220813952327859, 29.474780142926416 ], [ -95.220906952232994, 29.474417143201354 ], [ -95.221456953081372, 29.47317214326609 ], [ -95.222172952301023, 29.471802143039159 ], [ -95.222388953203136, 29.471468142280003 ], [ -95.222805953196143, 29.470823142374162 ], [ -95.223244952566006, 29.470189142207762 ], [ -95.224930953284698, 29.467739141556002 ], [ -95.225125953197093, 29.467470141644434 ], [ -95.225248953362339, 29.46729814130498 ], [ -95.225736953542281, 29.466586141427438 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 385, "Tract": "48167720900", "Area_SqMi": 2.5855198473886412, "total_2009": 894, "total_2010": 911, "total_2011": 899, "total_2012": 826, "total_2013": 874, "total_2014": 1080, "total_2015": 1117, "total_2016": 1150, "total_2017": 981, "total_2018": 914, "total_2019": 2481, "total_2020": 2428, "age1": 442, "age2": 1601, "age3": 632, "earn1": 289, "earn2": 867, "earn3": 1519, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 98, "naics_s05": 0, "naics_s06": 55, "naics_s07": 131, "naics_s08": 38, "naics_s09": 31, "naics_s10": 36, "naics_s11": 9, "naics_s12": 26, "naics_s13": 0, "naics_s14": 11, "naics_s15": 1807, "naics_s16": 137, "naics_s17": 0, "naics_s18": 135, "naics_s19": 63, "naics_s20": 98, "race1": 2179, "race2": 370, "race3": 24, "race4": 68, "race5": 3, "race6": 31, "ethnicity1": 1965, "ethnicity2": 710, "edu1": 367, "edu2": 556, "edu3": 742, "edu4": 568, "Shape_Length": 34535.664058647366, "Shape_Area": 72079868.183750793, "total_2021": 2588, "total_2022": 2675 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.080095915437468, 29.453527143507372 ], [ -95.080406915411274, 29.453362143264279 ], [ -95.08000991497849, 29.452869143817445 ], [ -95.079847915201384, 29.452668143574002 ], [ -95.079572915274866, 29.452325143328707 ], [ -95.077071914820692, 29.449218143228933 ], [ -95.076992914517831, 29.449120142834779 ], [ -95.076873914207397, 29.448975142975055 ], [ -95.07481891349029, 29.446420142131533 ], [ -95.074750914216864, 29.446336141937426 ], [ -95.074738914191244, 29.446320142752533 ], [ -95.074526914095699, 29.446057142574617 ], [ -95.074315913523563, 29.44579414250304 ], [ -95.074136913866042, 29.445572141967268 ], [ -95.074032913665746, 29.445443141806834 ], [ -95.074019913581267, 29.445426141733563 ], [ -95.073924913903923, 29.445303142465722 ], [ -95.073841913203438, 29.445206141851404 ], [ -95.073802913743961, 29.44515714220617 ], [ -95.073651913081804, 29.444969142103226 ], [ -95.072241912548861, 29.443218142101752 ], [ -95.072062912950969, 29.443281142005162 ], [ -95.0717919134254, 29.443252141956332 ], [ -95.071049912618449, 29.443323141847443 ], [ -95.069993912570823, 29.443391141720237 ], [ -95.069879912365195, 29.443424141554296 ], [ -95.069675912077301, 29.443482142310021 ], [ -95.068153911819763, 29.443993141972939 ], [ -95.067835912478571, 29.444097142358647 ], [ -95.06680191127785, 29.44443614249996 ], [ -95.066505911576101, 29.44450414264163 ], [ -95.064766910991835, 29.445056142766376 ], [ -95.064129911228761, 29.445258142605898 ], [ -95.063646910736196, 29.445409142725033 ], [ -95.062759910962029, 29.445537142597438 ], [ -95.061176909943171, 29.445775142694924 ], [ -95.060082910010607, 29.445940143161724 ], [ -95.058775909674239, 29.446134142470015 ], [ -95.057545909720204, 29.446318142690931 ], [ -95.056594909025691, 29.446459142742579 ], [ -95.056018908590062, 29.446545142873287 ], [ -95.055527908479675, 29.446618143200769 ], [ -95.05511090873685, 29.446680142702686 ], [ -95.054941908695781, 29.446697142777218 ], [ -95.05463990830458, 29.446743143223511 ], [ -95.053153907907145, 29.446967142996165 ], [ -95.052310908272119, 29.447093143261164 ], [ -95.051021907695926, 29.447285142993561 ], [ -95.050261907767236, 29.447399142980476 ], [ -95.048624907235279, 29.447643143497675 ], [ -95.048365906916217, 29.447681143650183 ], [ -95.046565907023549, 29.447962143942338 ], [ -95.046281906525181, 29.448029143306265 ], [ -95.045895906202077, 29.448151143658361 ], [ -95.045587906543176, 29.448309143393494 ], [ -95.04523490662946, 29.448540144100409 ], [ -95.044679906575439, 29.448974143784692 ], [ -95.041375905829014, 29.451620144661288 ], [ -95.040260905434451, 29.452512144875833 ], [ -95.039871905435135, 29.452824145050172 ], [ -95.039330904821625, 29.453190144998089 ], [ -95.039238905182103, 29.453261145378086 ], [ -95.039084904582467, 29.453381144658934 ], [ -95.039044904656336, 29.453405145243607 ], [ -95.041631905528334, 29.456198145087843 ], [ -95.042054905886488, 29.456654145348761 ], [ -95.042340905717069, 29.456955145781233 ], [ -95.042679905763009, 29.457329145288949 ], [ -95.045559906974106, 29.46042714623886 ], [ -95.046883907333807, 29.461850146106798 ], [ -95.046990907150828, 29.461966146570479 ], [ -95.047505907653431, 29.462519146751045 ], [ -95.047901907728175, 29.462944146609779 ], [ -95.052490908761541, 29.467838147142167 ], [ -95.052834909462703, 29.468204147667418 ], [ -95.05342890934719, 29.468838147978552 ], [ -95.055516910275742, 29.47109014825886 ], [ -95.055686909970049, 29.470968147842768 ], [ -95.056553910278069, 29.470346147852052 ], [ -95.057313909946402, 29.469772147706646 ], [ -95.057396910171533, 29.46971414793336 ], [ -95.058111910937484, 29.469209147712821 ], [ -95.058584910165976, 29.468888147491249 ], [ -95.058977910741532, 29.468603147815017 ], [ -95.059093910631077, 29.468519147356453 ], [ -95.059724910917083, 29.468062147676594 ], [ -95.059807911088981, 29.468002147653905 ], [ -95.06050291074186, 29.467498146853096 ], [ -95.061170911234683, 29.467014147214616 ], [ -95.06134291089522, 29.466889147389601 ], [ -95.061459910960949, 29.466804147058806 ], [ -95.061823911630214, 29.466544147090016 ], [ -95.062446911584644, 29.466099146727586 ], [ -95.06296091170752, 29.465764146801099 ], [ -95.063677911850093, 29.46526414691354 ], [ -95.063996911870632, 29.465048146986813 ], [ -95.064212912230758, 29.46489114633961 ], [ -95.064561912317146, 29.464637146026416 ], [ -95.065994912076619, 29.463596146287017 ], [ -95.067030912284807, 29.462843145934784 ], [ -95.067543912656845, 29.462485145845339 ], [ -95.06933191317853, 29.461240145348135 ], [ -95.069631913051595, 29.461031145286977 ], [ -95.069732913467718, 29.460954145518027 ], [ -95.070079913377853, 29.460713145168921 ], [ -95.070803913749131, 29.460212145442807 ], [ -95.07207991368459, 29.459275144854896 ], [ -95.072638913917046, 29.458863144806209 ], [ -95.072865913484193, 29.458699145036292 ], [ -95.073617913783352, 29.458162144711302 ], [ -95.074190913856555, 29.457753144600186 ], [ -95.074363913805144, 29.457629144885964 ], [ -95.074658914197414, 29.457419144772636 ], [ -95.0747219141236, 29.45737414500784 ], [ -95.075099914613048, 29.457104144946261 ], [ -95.075482914496533, 29.456832144773752 ], [ -95.076016914302585, 29.456452144108123 ], [ -95.07630091501683, 29.456250143962567 ], [ -95.076619914462057, 29.456013143899785 ], [ -95.077068915001746, 29.455678144598188 ], [ -95.078095915126298, 29.454956144026969 ], [ -95.07940291528314, 29.454031143501471 ], [ -95.080095915437468, 29.453527143507372 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 386, "Tract": "48201311600", "Area_SqMi": 0.18960566785636865, "total_2009": 246, "total_2010": 246, "total_2011": 305, "total_2012": 477, "total_2013": 462, "total_2014": 427, "total_2015": 474, "total_2016": 385, "total_2017": 430, "total_2018": 345, "total_2019": 350, "total_2020": 326, "age1": 39, "age2": 163, "age3": 79, "earn1": 19, "earn2": 67, "earn3": 195, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 34, "naics_s06": 134, "naics_s07": 12, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 63, "naics_s12": 30, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 6, "naics_s19": 1, "naics_s20": 0, "race1": 195, "race2": 53, "race3": 3, "race4": 24, "race5": 2, "race6": 4, "ethnicity1": 150, "ethnicity2": 131, "edu1": 70, "edu2": 73, "edu3": 63, "edu4": 36, "Shape_Length": 9554.2431183277549, "Shape_Area": 5285881.5064917877, "total_2021": 292, "total_2022": 281 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.291144980410934, 29.699411186856647 ], [ -95.291189979986811, 29.699392187407611 ], [ -95.290125980222925, 29.698610187084224 ], [ -95.289556980244015, 29.698147187042078 ], [ -95.289109980254594, 29.697744187253249 ], [ -95.28897497992925, 29.697638187132377 ], [ -95.288738979449619, 29.697454187244343 ], [ -95.288600979871163, 29.697471186952498 ], [ -95.288510979450436, 29.697484187350788 ], [ -95.287678979892419, 29.697668187209057 ], [ -95.28763997903377, 29.697677187365429 ], [ -95.286285978805594, 29.698061187304138 ], [ -95.286140978784033, 29.698106187165688 ], [ -95.285289978744018, 29.698371187442021 ], [ -95.28483497845238, 29.698528187041312 ], [ -95.284469979123898, 29.698651187013866 ], [ -95.284384978969356, 29.698680187509353 ], [ -95.284006978497757, 29.698832187701392 ], [ -95.283812979029832, 29.698911187819391 ], [ -95.283002977952222, 29.699320187772379 ], [ -95.282375978207909, 29.699682187527984 ], [ -95.281418977838143, 29.700233187812056 ], [ -95.280781978197126, 29.700629188199606 ], [ -95.280553978020947, 29.701093188146753 ], [ -95.280263978055359, 29.701399187859355 ], [ -95.280507977864744, 29.701362187782113 ], [ -95.280758977718378, 29.70129118820968 ], [ -95.281432978029287, 29.701313188050253 ], [ -95.281791978043174, 29.701368187731585 ], [ -95.28205697784459, 29.701538187943452 ], [ -95.282301977927773, 29.701934188025344 ], [ -95.282308978186663, 29.701973187719886 ], [ -95.282478978678384, 29.702396188499403 ], [ -95.282660978580765, 29.702660187983312 ], [ -95.282899978516781, 29.702842188189173 ], [ -95.283137978753146, 29.702995187981983 ], [ -95.28316497872548, 29.703012188705372 ], [ -95.283397978262599, 29.70329018801009 ], [ -95.283441978820505, 29.703342187919276 ], [ -95.283819978510707, 29.703881188780098 ], [ -95.284895979032981, 29.704634188837922 ], [ -95.285469979229191, 29.705069188228002 ], [ -95.2857909793413, 29.70514618849743 ], [ -95.286029978944768, 29.705146188354664 ], [ -95.286306979102179, 29.705096188462459 ], [ -95.286936979511751, 29.704811188820074 ], [ -95.28767397929397, 29.704404188060433 ], [ -95.288303980121825, 29.703981188218407 ], [ -95.288542980413325, 29.703662188439335 ], [ -95.289878980108341, 29.701765188184233 ], [ -95.289922979941494, 29.701540187810238 ], [ -95.28992297995741, 29.701391188100875 ], [ -95.28979697963203, 29.700632187502261 ], [ -95.289853980498961, 29.700412187181499 ], [ -95.289865980116801, 29.700319187622483 ], [ -95.28990798047208, 29.700257187499336 ], [ -95.290010980613289, 29.700104187155009 ], [ -95.290199980227328, 29.699912187628389 ], [ -95.290640980599491, 29.699731187336944 ], [ -95.290875980819365, 29.699521187544153 ], [ -95.290960980572152, 29.699486187220121 ], [ -95.291144980410934, 29.699411186856647 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 387, "Tract": "48201240600", "Area_SqMi": 0.99507479064618365, "total_2009": 200, "total_2010": 178, "total_2011": 226, "total_2012": 205, "total_2013": 211, "total_2014": 234, "total_2015": 242, "total_2016": 216, "total_2017": 226, "total_2018": 276, "total_2019": 249, "total_2020": 244, "age1": 71, "age2": 177, "age3": 74, "earn1": 50, "earn2": 102, "earn3": 170, "naics_s01": 0, "naics_s02": 12, "naics_s03": 0, "naics_s04": 0, "naics_s05": 9, "naics_s06": 19, "naics_s07": 91, "naics_s08": 56, "naics_s09": 0, "naics_s10": 12, "naics_s11": 20, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 0, "naics_s19": 95, "naics_s20": 0, "race1": 230, "race2": 62, "race3": 1, "race4": 18, "race5": 0, "race6": 11, "ethnicity1": 202, "ethnicity2": 120, "edu1": 49, "edu2": 67, "edu3": 78, "edu4": 57, "Shape_Length": 25544.856949971974, "Shape_Area": 27740982.0756905, "total_2021": 274, "total_2022": 322 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.419259025473053, 29.965736237113262 ], [ -95.41918302498101, 29.965420237518199 ], [ -95.419135024904236, 29.965296237655185 ], [ -95.419068024884609, 29.965083236833333 ], [ -95.418991025522516, 29.964834237260884 ], [ -95.418854025375325, 29.964228236951865 ], [ -95.418770025068952, 29.963681236553512 ], [ -95.418705025120431, 29.963017237154169 ], [ -95.418672025189693, 29.962314236854478 ], [ -95.418663025175022, 29.96078323610686 ], [ -95.418678024295616, 29.95919523561512 ], [ -95.418671024828072, 29.958240236180782 ], [ -95.418620024382449, 29.956881235211821 ], [ -95.418449024853601, 29.956880235467015 ], [ -95.41840502490632, 29.956880236017792 ], [ -95.418236024888458, 29.956879235184449 ], [ -95.418114024559983, 29.956879235280233 ], [ -95.417982024696272, 29.956878235576138 ], [ -95.417838024929438, 29.956878235184821 ], [ -95.417682024052084, 29.95687723567924 ], [ -95.41756302447665, 29.956877235909616 ], [ -95.417481023877912, 29.956873235508205 ], [ -95.417317024787693, 29.956866235594301 ], [ -95.416673023738994, 29.956800235983664 ], [ -95.416319023931308, 29.956651235728302 ], [ -95.415877024366509, 29.956387235429677 ], [ -95.415784024075862, 29.9562862357154 ], [ -95.415644023869419, 29.956134235260922 ], [ -95.415265024006843, 29.955832235431934 ], [ -95.414994023444237, 29.955590235745881 ], [ -95.414684023718834, 29.955337235629706 ], [ -95.414482023551571, 29.955084235164495 ], [ -95.414261023663613, 29.954914235597862 ], [ -95.414003023704836, 29.954672235222866 ], [ -95.413810023229786, 29.954529234856878 ], [ -95.413706023401318, 29.954452235061638 ], [ -95.413416022775237, 29.954303234804676 ], [ -95.413018022902691, 29.954171235568289 ], [ -95.412172023197868, 29.954122234800277 ], [ -95.411787022987539, 29.954111235494612 ], [ -95.411522023064848, 29.954034235468725 ], [ -95.411301022322505, 29.953951235308232 ], [ -95.411261022424114, 29.953950235619246 ], [ -95.410859022132755, 29.953935235602707 ], [ -95.408428021992265, 29.953549235701946 ], [ -95.40792302184947, 29.953456234933771 ], [ -95.407809022139105, 29.953401235489878 ], [ -95.407500021704195, 29.953148234755943 ], [ -95.407399021984986, 29.952988235420449 ], [ -95.407292021754742, 29.952686234857296 ], [ -95.407185021283595, 29.95248823487557 ], [ -95.406964021030745, 29.952197234925773 ], [ -95.406857021711019, 29.95199923464979 ], [ -95.406809021584806, 29.951924235227914 ], [ -95.406667021235904, 29.951696235051763 ], [ -95.406602021478022, 29.951573234967235 ], [ -95.406550021261438, 29.951473234541854 ], [ -95.40649702095547, 29.951372235216883 ], [ -95.406118021455569, 29.950734235014547 ], [ -95.405982021579064, 29.95051923501855 ], [ -95.405933020673928, 29.950442234422304 ], [ -95.405676021302327, 29.950036234911682 ], [ -95.405456020687183, 29.9498052341415 ], [ -95.405304021383529, 29.949684234590858 ], [ -95.405197020881033, 29.949574234835723 ], [ -95.404944020846202, 29.949409234382884 ], [ -95.404521020755453, 29.949304234117097 ], [ -95.404067020403389, 29.949205234881855 ], [ -95.403606020427944, 29.949084234207501 ], [ -95.403489020035579, 29.949041234523868 ], [ -95.403196020733844, 29.948936234809818 ], [ -95.402407020128862, 29.948705234515476 ], [ -95.401447019979159, 29.948407234385449 ], [ -95.401144019936893, 29.94834723403525 ], [ -95.400772019569587, 29.948369234383943 ], [ -95.400557019722314, 29.948303234686527 ], [ -95.400273019045329, 29.948132234604959 ], [ -95.399951019084597, 29.947907234590023 ], [ -95.399623019202323, 29.94765923417258 ], [ -95.399030019218287, 29.947065233930335 ], [ -95.398708019364307, 29.946719234342279 ], [ -95.398411018783008, 29.946378234369977 ], [ -95.39810201913788, 29.945993234513004 ], [ -95.397805018550798, 29.945674234078602 ], [ -95.397534018392236, 29.945443233596485 ], [ -95.397168019131414, 29.945245234061787 ], [ -95.396821018526737, 29.945174234060069 ], [ -95.396410018367064, 29.945163233791376 ], [ -95.396063018284678, 29.945179234274157 ], [ -95.396035018692061, 29.945183233937154 ], [ -95.396155018557195, 29.945603233997289 ], [ -95.396374018794788, 29.946215234230767 ], [ -95.396436018754812, 29.946340234485948 ], [ -95.396570018681402, 29.946597234046145 ], [ -95.396713018693333, 29.946840234550791 ], [ -95.397054018385674, 29.947307234500517 ], [ -95.39725701921347, 29.947516233991966 ], [ -95.397558018863307, 29.947836234427886 ], [ -95.39776401890748, 29.948054234911147 ], [ -95.398078019239946, 29.948394234437043 ], [ -95.398550019400503, 29.948929235024615 ], [ -95.398732019638885, 29.949160234712906 ], [ -95.39894701932927, 29.949474234809252 ], [ -95.399194019744201, 29.949907234955667 ], [ -95.399409019503977, 29.950386235104215 ], [ -95.399483019819044, 29.950603234968106 ], [ -95.399678019213596, 29.951483235015637 ], [ -95.399701019735986, 29.951706234947729 ], [ -95.399748019464681, 29.95232123561933 ], [ -95.399765019781626, 29.952512235154071 ], [ -95.399768019674937, 29.952544235342341 ], [ -95.39978901939449, 29.952722235370835 ], [ -95.399847019318415, 29.953330235889343 ], [ -95.399868019789977, 29.953582235959573 ], [ -95.39987901936415, 29.953823235855211 ], [ -95.399903020042046, 29.954306236083035 ], [ -95.399927019577191, 29.954792235546389 ], [ -95.399994019521458, 29.955060235499356 ], [ -95.39999801999079, 29.955073235572307 ], [ -95.400076019520455, 29.955309236094738 ], [ -95.400156020206794, 29.955516236261065 ], [ -95.40025101957167, 29.955734235973701 ], [ -95.400665019696305, 29.956604236342876 ], [ -95.400857019701945, 29.956990236231366 ], [ -95.400883019786264, 29.957042236308496 ], [ -95.400948020310196, 29.957175236284407 ], [ -95.401006020061942, 29.957309236386063 ], [ -95.401048019851189, 29.957376236032392 ], [ -95.401072020595791, 29.95745723638009 ], [ -95.401101019851112, 29.957536236046121 ], [ -95.401158020704159, 29.957719236001743 ], [ -95.40122002029203, 29.957938236658631 ], [ -95.40128201987136, 29.958199236304992 ], [ -95.401307020018095, 29.958341236031043 ], [ -95.401347020681129, 29.958636236429854 ], [ -95.401359020457022, 29.958778236983768 ], [ -95.401375020236401, 29.959099236176755 ], [ -95.401383020561369, 29.95927523707573 ], [ -95.401387020080506, 29.95984323681532 ], [ -95.401416020335233, 29.960930236915846 ], [ -95.401441020109402, 29.961718237137571 ], [ -95.401461020033423, 29.961917237348121 ], [ -95.401494020283792, 29.962113237302038 ], [ -95.401612020580032, 29.962681237272569 ], [ -95.40165302045402, 29.962830237302299 ], [ -95.401994020782936, 29.963907238030433 ], [ -95.402038020684117, 29.964066237831336 ], [ -95.402076020998479, 29.964223237341404 ], [ -95.402106020974031, 29.96437823801465 ], [ -95.402155020535417, 29.964689237982711 ], [ -95.40219302063565, 29.964991237578754 ], [ -95.402215020693063, 29.965260238059084 ], [ -95.402249020842461, 29.965980237690331 ], [ -95.402612021074745, 29.965988237597067 ], [ -95.40367002107584, 29.965978237779208 ], [ -95.405026022013644, 29.965958237618384 ], [ -95.405778021597229, 29.9659472382357 ], [ -95.406051021802696, 29.96594623797527 ], [ -95.406520022420111, 29.965939238082161 ], [ -95.407941022149942, 29.96592023765918 ], [ -95.409878022497921, 29.965891237842939 ], [ -95.41205702294198, 29.965866237951566 ], [ -95.41247002335129, 29.965858237208671 ], [ -95.414109023600091, 29.965836237978177 ], [ -95.414693023625532, 29.965828237906354 ], [ -95.415247024520482, 29.965821237804025 ], [ -95.417379024948289, 29.965762237300712 ], [ -95.417768024841152, 29.965752237764072 ], [ -95.418007025020842, 29.96574623724652 ], [ -95.418310024989452, 29.965750237428807 ], [ -95.418322024990402, 29.965750237096938 ], [ -95.418421025030057, 29.965752236956128 ], [ -95.418566025366246, 29.965754237054856 ], [ -95.418805025408432, 29.965748237822663 ], [ -95.418900024832723, 29.965746237729356 ], [ -95.419005025574592, 29.965743237048788 ], [ -95.419089025251182, 29.965740237638144 ], [ -95.419170025013415, 29.965738237679794 ], [ -95.419259025473053, 29.965736237113262 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 388, "Tract": "48201311800", "Area_SqMi": 0.96544948439906819, "total_2009": 3311, "total_2010": 2902, "total_2011": 2757, "total_2012": 3186, "total_2013": 3282, "total_2014": 3058, "total_2015": 2908, "total_2016": 3126, "total_2017": 3224, "total_2018": 3072, "total_2019": 2947, "total_2020": 2717, "age1": 381, "age2": 1537, "age3": 726, "earn1": 327, "earn2": 687, "earn3": 1630, "naics_s01": 0, "naics_s02": 0, "naics_s03": 15, "naics_s04": 179, "naics_s05": 346, "naics_s06": 637, "naics_s07": 157, "naics_s08": 142, "naics_s09": 0, "naics_s10": 22, "naics_s11": 17, "naics_s12": 63, "naics_s13": 0, "naics_s14": 16, "naics_s15": 14, "naics_s16": 0, "naics_s17": 915, "naics_s18": 117, "naics_s19": 4, "naics_s20": 0, "race1": 1772, "race2": 637, "race3": 33, "race4": 163, "race5": 5, "race6": 34, "ethnicity1": 1569, "ethnicity2": 1075, "edu1": 558, "edu2": 576, "edu3": 686, "edu4": 443, "Shape_Length": 26584.807803640502, "Shape_Area": 26915079.24173931, "total_2021": 2557, "total_2022": 2644 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.332923991732457, 29.714377189118014 ], [ -95.332877991644409, 29.714229188865009 ], [ -95.33249499117187, 29.712993188417865 ], [ -95.331533990960494, 29.710169188109891 ], [ -95.330792991335784, 29.707938187535138 ], [ -95.327567989575229, 29.698400186095736 ], [ -95.32753198956965, 29.69829918596777 ], [ -95.326747989191617, 29.69574318515901 ], [ -95.326691989405148, 29.695562185565628 ], [ -95.326670989070422, 29.69547118495014 ], [ -95.325986989299096, 29.695896185350517 ], [ -95.324852988989505, 29.69661018592058 ], [ -95.324219988413532, 29.696999185910627 ], [ -95.324066989285186, 29.697093185475271 ], [ -95.323240988983571, 29.69761018619803 ], [ -95.323078988957164, 29.697712185437929 ], [ -95.322227988835337, 29.698253185925459 ], [ -95.321005988538943, 29.698995185893597 ], [ -95.318174987347788, 29.700782186234456 ], [ -95.315134986519695, 29.702691186728991 ], [ -95.308980985295193, 29.706337187961434 ], [ -95.30689698504591, 29.707404188744309 ], [ -95.3059859841226, 29.707926188659577 ], [ -95.305440984855167, 29.708239188698712 ], [ -95.305335984503614, 29.708298188890659 ], [ -95.305221984728192, 29.708360188617039 ], [ -95.305106984801114, 29.708430188321454 ], [ -95.305291984613348, 29.70855318871337 ], [ -95.306031985170662, 29.709047188873175 ], [ -95.306238984578513, 29.709188188695418 ], [ -95.307494984720705, 29.710044189288006 ], [ -95.308669985910797, 29.710844189447851 ], [ -95.310110985777072, 29.711800189131559 ], [ -95.310560986024996, 29.712110188876277 ], [ -95.310628986130126, 29.712158188803041 ], [ -95.310697986202442, 29.712205188974476 ], [ -95.310781985788068, 29.712138189605511 ], [ -95.310892986253748, 29.712050188972366 ], [ -95.311072985915004, 29.711907189355767 ], [ -95.312677986746337, 29.710359189158119 ], [ -95.312772986491865, 29.710123188735881 ], [ -95.312816986207707, 29.709407188183132 ], [ -95.313132986036223, 29.709048188542383 ], [ -95.313431987067318, 29.708910188712366 ], [ -95.313678986856004, 29.708796188450872 ], [ -95.313919986170234, 29.708746188696775 ], [ -95.314247986386363, 29.708758188605081 ], [ -95.314998987005694, 29.7089531882608 ], [ -95.316576987838062, 29.709477188864074 ], [ -95.316617987158125, 29.709499188525395 ], [ -95.316654986965844, 29.709523188668779 ], [ -95.316684986987454, 29.709534188896626 ], [ -95.316838987504411, 29.709614188064712 ], [ -95.316924987209504, 29.709659188195662 ], [ -95.317307988113512, 29.709933188212286 ], [ -95.317561988135864, 29.710050188881517 ], [ -95.318631987644224, 29.710050188423747 ], [ -95.318998987899889, 29.71009818815703 ], [ -95.319143988057917, 29.71016718887013 ], [ -95.319571988031768, 29.710595188514709 ], [ -95.320093988560458, 29.711117188607044 ], [ -95.320836988150774, 29.711979189031812 ], [ -95.321012989149438, 29.712123188879421 ], [ -95.32125698840656, 29.712322188593564 ], [ -95.321644988914883, 29.712523188549998 ], [ -95.321929988636128, 29.712527189212249 ], [ -95.322270988543778, 29.712376188909758 ], [ -95.322661988975767, 29.712204188387691 ], [ -95.3229449889959, 29.712158188895945 ], [ -95.323156989662834, 29.712172188522629 ], [ -95.323313989134832, 29.712182189190699 ], [ -95.324343989884909, 29.712435188481102 ], [ -95.324957990070274, 29.712450188503755 ], [ -95.327379990082463, 29.711636188217227 ], [ -95.327892990637025, 29.711504188094018 ], [ -95.328180990067722, 29.711512188084324 ], [ -95.328378990695128, 29.711560188070187 ], [ -95.328578990845855, 29.711686188815598 ], [ -95.329137990798131, 29.712210188208257 ], [ -95.330708991531267, 29.712499188343973 ], [ -95.331070990786998, 29.712666188578947 ], [ -95.331306991205693, 29.712866188751885 ], [ -95.331412991367017, 29.713019188484395 ], [ -95.331533991166097, 29.713656188418405 ], [ -95.331660991092306, 29.713960188678779 ], [ -95.331827991036121, 29.714117188571013 ], [ -95.332351992019113, 29.71440118877204 ], [ -95.332672991480294, 29.714457189255146 ], [ -95.332923991732457, 29.714377189118014 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 389, "Tract": "48201311900", "Area_SqMi": 0.81770059440126042, "total_2009": 5710, "total_2010": 6620, "total_2011": 7020, "total_2012": 5935, "total_2013": 6185, "total_2014": 13954, "total_2015": 13970, "total_2016": 8911, "total_2017": 9629, "total_2018": 9073, "total_2019": 8949, "total_2020": 8859, "age1": 1417, "age2": 4866, "age3": 2418, "earn1": 966, "earn2": 2494, "earn3": 5241, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 32, "naics_s05": 278, "naics_s06": 290, "naics_s07": 169, "naics_s08": 341, "naics_s09": 1, "naics_s10": 24, "naics_s11": 0, "naics_s12": 318, "naics_s13": 0, "naics_s14": 267, "naics_s15": 6441, "naics_s16": 189, "naics_s17": 13, "naics_s18": 315, "naics_s19": 23, "naics_s20": 0, "race1": 5615, "race2": 1440, "race3": 50, "race4": 1443, "race5": 18, "race6": 135, "ethnicity1": 6549, "ethnicity2": 2152, "edu1": 1119, "edu2": 1330, "edu3": 1831, "edu4": 3004, "Shape_Length": 24646.451906358776, "Shape_Area": 22796093.063352928, "total_2021": 8337, "total_2022": 8701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.337529993437414, 29.728590192046159 ], [ -95.337490993561872, 29.728432191707338 ], [ -95.337460994082363, 29.72830919160916 ], [ -95.33741699337186, 29.72812919153062 ], [ -95.337278993749749, 29.727569191590934 ], [ -95.337224993277474, 29.72733319175822 ], [ -95.337171993448194, 29.727156191499716 ], [ -95.336929993587034, 29.726394190853913 ], [ -95.336726993094928, 29.725791191332348 ], [ -95.334137991817798, 29.717977189947362 ], [ -95.333667992201754, 29.716674189475292 ], [ -95.333324992392079, 29.715685189391767 ], [ -95.33296699228076, 29.714518189028539 ], [ -95.332923991732457, 29.714377189118014 ], [ -95.332672991480294, 29.714457189255146 ], [ -95.332351992019113, 29.71440118877204 ], [ -95.331827991036121, 29.714117188571013 ], [ -95.331660991092306, 29.713960188678779 ], [ -95.331533991166097, 29.713656188418405 ], [ -95.331412991367017, 29.713019188484395 ], [ -95.331306991205693, 29.712866188751885 ], [ -95.331070990786998, 29.712666188578947 ], [ -95.330708991531267, 29.712499188343973 ], [ -95.329137990798131, 29.712210188208257 ], [ -95.328578990845855, 29.711686188815598 ], [ -95.328378990695128, 29.711560188070187 ], [ -95.328180990067722, 29.711512188084324 ], [ -95.327892990637025, 29.711504188094018 ], [ -95.327379990082463, 29.711636188217227 ], [ -95.324957990070274, 29.712450188503755 ], [ -95.324343989884909, 29.712435188481102 ], [ -95.323313989134832, 29.712182189190699 ], [ -95.323156989662834, 29.712172188522629 ], [ -95.3229449889959, 29.712158188895945 ], [ -95.322661988975767, 29.712204188387691 ], [ -95.322270988543778, 29.712376188909758 ], [ -95.321929988636128, 29.712527189212249 ], [ -95.321644988914883, 29.712523188549998 ], [ -95.32125698840656, 29.712322188593564 ], [ -95.321012989149438, 29.712123188879421 ], [ -95.320836988150774, 29.711979189031812 ], [ -95.320093988560458, 29.711117188607044 ], [ -95.319571988031768, 29.710595188514709 ], [ -95.319143988057917, 29.71016718887013 ], [ -95.318998987899889, 29.71009818815703 ], [ -95.318631987644224, 29.710050188423747 ], [ -95.317561988135864, 29.710050188881517 ], [ -95.317307988113512, 29.709933188212286 ], [ -95.316924987209504, 29.709659188195662 ], [ -95.316838987504411, 29.709614188064712 ], [ -95.316684986987454, 29.709534188896626 ], [ -95.316654986965844, 29.709523188668779 ], [ -95.316617987158125, 29.709499188525395 ], [ -95.316576987838062, 29.709477188864074 ], [ -95.314998987005694, 29.7089531882608 ], [ -95.314247986386363, 29.708758188605081 ], [ -95.313919986170234, 29.708746188696775 ], [ -95.313678986856004, 29.708796188450872 ], [ -95.313431987067318, 29.708910188712366 ], [ -95.313132986036223, 29.709048188542383 ], [ -95.312816986207707, 29.709407188183132 ], [ -95.312772986491865, 29.710123188735881 ], [ -95.312677986746337, 29.710359189158119 ], [ -95.311072985915004, 29.711907189355767 ], [ -95.310892986253748, 29.712050188972366 ], [ -95.310781985788068, 29.712138189605511 ], [ -95.310697986202442, 29.712205188974476 ], [ -95.310819985740693, 29.712289188941018 ], [ -95.311690985898949, 29.712888188969124 ], [ -95.313288986577248, 29.713948189927137 ], [ -95.31516298741461, 29.715164189317473 ], [ -95.31532498709187, 29.715270189928486 ], [ -95.315421987228717, 29.715333189828954 ], [ -95.316230988068654, 29.715858189683075 ], [ -95.318789988622569, 29.717451190341261 ], [ -95.319476988106317, 29.717878189946251 ], [ -95.320177988289501, 29.718245190523454 ], [ -95.320594988953971, 29.718460190314786 ], [ -95.32069798874187, 29.718513190321413 ], [ -95.320845988531929, 29.718589190186822 ], [ -95.32113698940941, 29.718739189859246 ], [ -95.322038989455706, 29.719203190217144 ], [ -95.325075990309244, 29.720775190622117 ], [ -95.325486989880915, 29.720994190167218 ], [ -95.325775990769316, 29.721167190781479 ], [ -95.326589990261368, 29.721653190674271 ], [ -95.327605991001576, 29.722308190423274 ], [ -95.328375991436815, 29.722801190530699 ], [ -95.328661990703566, 29.7229841906973 ], [ -95.330671991873615, 29.72425819143713 ], [ -95.331898991670158, 29.725042191014804 ], [ -95.332394991683842, 29.725394191065213 ], [ -95.333193992463904, 29.725895190865167 ], [ -95.333379992513827, 29.726011191610784 ], [ -95.333427992239336, 29.726041191005077 ], [ -95.335247993017575, 29.727182191772069 ], [ -95.335726993116637, 29.727455191905943 ], [ -95.336514993056142, 29.727951191198571 ], [ -95.336945993514561, 29.72822319170087 ], [ -95.337529993437414, 29.728590192046159 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 390, "Tract": "48201312000", "Area_SqMi": 0.72059870976427243, "total_2009": 720, "total_2010": 716, "total_2011": 233, "total_2012": 184, "total_2013": 210, "total_2014": 314, "total_2015": 356, "total_2016": 382, "total_2017": 390, "total_2018": 425, "total_2019": 401, "total_2020": 259, "age1": 245, "age2": 128, "age3": 42, "earn1": 240, "earn2": 85, "earn3": 90, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 0, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 70, "naics_s12": 5, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 75, "naics_s17": 0, "naics_s18": 239, "naics_s19": 2, "naics_s20": 0, "race1": 263, "race2": 114, "race3": 7, "race4": 24, "race5": 0, "race6": 7, "ethnicity1": 299, "ethnicity2": 116, "edu1": 35, "edu2": 46, "edu3": 49, "edu4": 40, "Shape_Length": 32024.818787158336, "Shape_Area": 20089058.711210202, "total_2021": 351, "total_2022": 415 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.356537997545004, 29.709749186752767 ], [ -95.35655299779593, 29.709710187340182 ], [ -95.356086997288017, 29.709529186821321 ], [ -95.355359997684829, 29.709409186793945 ], [ -95.354584996985139, 29.709347186977027 ], [ -95.353643996727371, 29.709377187030864 ], [ -95.353014996851002, 29.709454187294856 ], [ -95.351753996664172, 29.709762187149362 ], [ -95.350526996205687, 29.710275187709382 ], [ -95.350149996185763, 29.710394187368852 ], [ -95.350025996340406, 29.710434187374339 ], [ -95.348660995839452, 29.710805187642304 ], [ -95.346940995461495, 29.711149188107797 ], [ -95.346692994878893, 29.71127518744234 ], [ -95.346429994869126, 29.711457187687209 ], [ -95.345157995310885, 29.712341187688949 ], [ -95.344863994588025, 29.712469188016524 ], [ -95.344464995080799, 29.712550187841934 ], [ -95.343892994146955, 29.712514188013866 ], [ -95.342065993727118, 29.712091187847506 ], [ -95.341751994027703, 29.711866188117476 ], [ -95.341515993812749, 29.711804187655918 ], [ -95.341279993483269, 29.711741188396655 ], [ -95.340688993706664, 29.711414187751689 ], [ -95.340292993255034, 29.711318188080202 ], [ -95.340103993579604, 29.711338188446327 ], [ -95.340059993491508, 29.711361187945499 ], [ -95.339894993299524, 29.711450188009387 ], [ -95.339572993636438, 29.711818187771669 ], [ -95.339342993664474, 29.712277188086418 ], [ -95.339255993771431, 29.712846188465399 ], [ -95.339225993660108, 29.713597188127853 ], [ -95.339135993049723, 29.713909188478024 ], [ -95.339031993148851, 29.714098188932745 ], [ -95.338939993755474, 29.714265188519882 ], [ -95.338725993414286, 29.714653188348173 ], [ -95.338483993141594, 29.714848189226974 ], [ -95.338205992727609, 29.714904188456426 ], [ -95.337768993020077, 29.714804188429657 ], [ -95.336840993221884, 29.714269189062215 ], [ -95.33601399225509, 29.713869188616354 ], [ -95.334934992485913, 29.713274188866727 ], [ -95.334780991880891, 29.71322818823807 ], [ -95.334122991634075, 29.713223188984205 ], [ -95.334031992526207, 29.713251188229872 ], [ -95.333889992125705, 29.71329418866458 ], [ -95.3335059922683, 29.713576188890599 ], [ -95.333417992036289, 29.713641188814076 ], [ -95.333333992166075, 29.713798189007225 ], [ -95.333139991647613, 29.714160189061744 ], [ -95.332923991732457, 29.714377189118014 ], [ -95.33296699228076, 29.714518189028539 ], [ -95.333324992392079, 29.715685189391767 ], [ -95.333667992201754, 29.716674189475292 ], [ -95.334137991817798, 29.717977189947362 ], [ -95.336726993094928, 29.725791191332348 ], [ -95.336929993587034, 29.726394190853913 ], [ -95.337171993448194, 29.727156191499716 ], [ -95.337224993277474, 29.72733319175822 ], [ -95.337278993749749, 29.727569191590934 ], [ -95.33741699337186, 29.72812919153062 ], [ -95.337460994082363, 29.72830919160916 ], [ -95.337490993561872, 29.728432191707338 ], [ -95.337529993437414, 29.728590192046159 ], [ -95.338001994037853, 29.728887191316669 ], [ -95.338206993413706, 29.729016192074688 ], [ -95.338460994302423, 29.729176191363067 ], [ -95.338650994363974, 29.729296191479992 ], [ -95.340492994334866, 29.730537191756177 ], [ -95.341341994276945, 29.731237192153841 ], [ -95.341905994917042, 29.731699191861971 ], [ -95.342073995322664, 29.731828192356293 ], [ -95.342132994752475, 29.731685192246481 ], [ -95.34217499470374, 29.731583192540196 ], [ -95.342238995129804, 29.731427192233184 ], [ -95.34231199501076, 29.731249191972214 ], [ -95.342369995374852, 29.731108191894123 ], [ -95.342500994795486, 29.730824191930289 ], [ -95.342784995210778, 29.730149191881743 ], [ -95.343065994963183, 29.7294751916059 ], [ -95.343346995212144, 29.728807191753933 ], [ -95.343632995431165, 29.728125191791218 ], [ -95.343968995425982, 29.727280191241185 ], [ -95.342869994741363, 29.726943191436963 ], [ -95.341857994335925, 29.726609191170041 ], [ -95.341756994512281, 29.726579190804038 ], [ -95.34075799392312, 29.726288191463851 ], [ -95.33971099369785, 29.726038191508529 ], [ -95.339518994362905, 29.726001191115703 ], [ -95.339036993478999, 29.725864191059539 ], [ -95.3386529942902, 29.72582719077856 ], [ -95.338312993951718, 29.725784191477469 ], [ -95.338034993487554, 29.725710191148384 ], [ -95.337811993072307, 29.725654191397528 ], [ -95.337735993315675, 29.725591191444899 ], [ -95.337444993785795, 29.725077190822603 ], [ -95.337115993444755, 29.72378319048785 ], [ -95.337600993538928, 29.722508190461788 ], [ -95.337929993732587, 29.721735190113442 ], [ -95.338164993707409, 29.721117189775928 ], [ -95.33831899307495, 29.720794189625895 ], [ -95.338387993177562, 29.720626189921031 ], [ -95.338669993755644, 29.719909189859361 ], [ -95.339040993741563, 29.71899818963837 ], [ -95.339702993276163, 29.71737418893423 ], [ -95.339880993812727, 29.716861189599193 ], [ -95.339955993352405, 29.716582189212208 ], [ -95.339997993717361, 29.716337189318768 ], [ -95.340003993600718, 29.716096189354701 ], [ -95.339995993838855, 29.715868189111017 ], [ -95.340187993345168, 29.715897188948045 ], [ -95.341172993984173, 29.716202188971192 ], [ -95.34158999460665, 29.716332188998866 ], [ -95.342187994129972, 29.716511189144182 ], [ -95.343072994385039, 29.716773189483469 ], [ -95.344629994698423, 29.717244189500082 ], [ -95.345876995610183, 29.717621189133393 ], [ -95.346373995300553, 29.717767189147352 ], [ -95.347009995259043, 29.717961189095185 ], [ -95.348432995899387, 29.718389188978954 ], [ -95.350825996122794, 29.71911618907799 ], [ -95.351229996521653, 29.71923118883938 ], [ -95.352565996844746, 29.719649189318638 ], [ -95.35263099707123, 29.719508189590748 ], [ -95.352744996795408, 29.719251189166307 ], [ -95.352769997087762, 29.719185188908451 ], [ -95.352907997393629, 29.718833189314978 ], [ -95.353121996835867, 29.718293188605283 ], [ -95.353354997485468, 29.717727188620401 ], [ -95.353434996892574, 29.717511188700446 ], [ -95.353497997472047, 29.71734518850775 ], [ -95.35353299744402, 29.717256189228245 ], [ -95.353694997548757, 29.716853188967587 ], [ -95.353851996873786, 29.716482188718508 ], [ -95.354030996776785, 29.716005188648634 ], [ -95.354300997081054, 29.715328188550998 ], [ -95.354445996904289, 29.715024188343982 ], [ -95.354605997821764, 29.714581187963244 ], [ -95.35491199774593, 29.713831188059093 ], [ -95.35519499745061, 29.713064187759592 ], [ -95.355510997692065, 29.71233018780644 ], [ -95.355880997995556, 29.711406187645011 ], [ -95.35613899796904, 29.710760187442904 ], [ -95.356349997662491, 29.710233187712401 ], [ -95.356537997545004, 29.709749186752767 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 391, "Tract": "48201252100", "Area_SqMi": 9.6697748389565135, "total_2009": 257, "total_2010": 263, "total_2011": 285, "total_2012": 703, "total_2013": 817, "total_2014": 798, "total_2015": 910, "total_2016": 710, "total_2017": 685, "total_2018": 828, "total_2019": 876, "total_2020": 905, "age1": 101, "age2": 325, "age3": 129, "earn1": 48, "earn2": 85, "earn3": 422, "naics_s01": 0, "naics_s02": 86, "naics_s03": 0, "naics_s04": 51, "naics_s05": 243, "naics_s06": 87, "naics_s07": 0, "naics_s08": 57, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 0, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 19, "naics_s19": 0, "naics_s20": 0, "race1": 452, "race2": 79, "race3": 3, "race4": 16, "race5": 2, "race6": 3, "ethnicity1": 347, "ethnicity2": 208, "edu1": 111, "edu2": 139, "edu3": 132, "edu4": 72, "Shape_Length": 75849.928759724979, "Shape_Area": 269576772.52506775, "total_2021": 439, "total_2022": 555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.166446954862991, 29.851795222486899 ], [ -95.166456955554082, 29.851729222750699 ], [ -95.166377955151347, 29.851742222772984 ], [ -95.166311954951539, 29.851764222297486 ], [ -95.163145954660081, 29.853078222700017 ], [ -95.158848953370111, 29.854947224016836 ], [ -95.153779952240399, 29.857153224011348 ], [ -95.150226951730701, 29.858724224628322 ], [ -95.14760595121659, 29.859928225493046 ], [ -95.146971950651931, 29.86019522490281 ], [ -95.136816947995101, 29.864494226780899 ], [ -95.136445948288909, 29.864651226640717 ], [ -95.133503946902607, 29.865914227053572 ], [ -95.128191945791031, 29.868194227267928 ], [ -95.122663944359232, 29.870619228285186 ], [ -95.114851942923167, 29.874144228648777 ], [ -95.112368942500112, 29.875027229250435 ], [ -95.111475941918556, 29.875425229673294 ], [ -95.106597940674547, 29.87759722962814 ], [ -95.105217940219916, 29.878105230623824 ], [ -95.096627938177804, 29.87999923097545 ], [ -95.09538193815456, 29.880240230961672 ], [ -95.095542938248613, 29.880349231434167 ], [ -95.096173937990855, 29.881026230940154 ], [ -95.096346938846025, 29.881271231301085 ], [ -95.096410938933033, 29.881420231290214 ], [ -95.096521938572508, 29.881675230957875 ], [ -95.096809938617241, 29.88329223175057 ], [ -95.096853938936547, 29.885823232473733 ], [ -95.097019938828367, 29.887681232100153 ], [ -95.097405938923202, 29.888508232408597 ], [ -95.099373939523673, 29.890660232592488 ], [ -95.101892939993647, 29.892591232872793 ], [ -95.103440941007491, 29.893307233449935 ], [ -95.10369394067348, 29.893372233388522 ], [ -95.104708940889495, 29.89342323382472 ], [ -95.105159941483763, 29.893373233782807 ], [ -95.106674941528226, 29.893003232896575 ], [ -95.107486942428949, 29.892724233083399 ], [ -95.108675941717507, 29.892315232595628 ], [ -95.109141941834878, 29.892081232812984 ], [ -95.109388942719988, 29.891841233094297 ], [ -95.109960942798367, 29.891429232649109 ], [ -95.110891942872016, 29.891039232781154 ], [ -95.111286943173667, 29.890983232792003 ], [ -95.112154942657412, 29.890861232833917 ], [ -95.112899943587195, 29.890859232810097 ], [ -95.113242943652239, 29.890987232427825 ], [ -95.113471943101985, 29.891191232344088 ], [ -95.11414494361712, 29.891791232596749 ], [ -95.114907944056924, 29.892864232637077 ], [ -95.115612944146008, 29.893754233365129 ], [ -95.116003944623657, 29.894468233431983 ], [ -95.116335944363414, 29.895769233293944 ], [ -95.11663294487839, 29.89640323395324 ], [ -95.116822944403353, 29.897066234037744 ], [ -95.116952944231002, 29.897558233510974 ], [ -95.117125944745268, 29.898589233985156 ], [ -95.117260944223574, 29.898891233690442 ], [ -95.117533944686485, 29.899252234580466 ], [ -95.11789194497365, 29.899600234618571 ], [ -95.118340945469967, 29.899857234571414 ], [ -95.118719944982175, 29.900196234146058 ], [ -95.11900494545057, 29.9004512345949 ], [ -95.119346944974254, 29.900655234368163 ], [ -95.120370945642591, 29.901136234299699 ], [ -95.120561945432698, 29.901275234698513 ], [ -95.120985946132066, 29.901721234279165 ], [ -95.121409945548734, 29.902168234296948 ], [ -95.121616945919513, 29.902385234757499 ], [ -95.122188945748235, 29.902795234299205 ], [ -95.122317946559306, 29.902888234629053 ], [ -95.122847946072142, 29.903393234965929 ], [ -95.123443946578959, 29.903840234645532 ], [ -95.124336946777518, 29.905051235253183 ], [ -95.124864946551028, 29.905605235380325 ], [ -95.125075946971378, 29.905964235178391 ], [ -95.12505794658955, 29.906464235598428 ], [ -95.125051946762895, 29.906646235439833 ], [ -95.124802947021351, 29.908035235293614 ], [ -95.124168947127146, 29.910236235827082 ], [ -95.124034947434993, 29.910864235933118 ], [ -95.123896946916716, 29.911512236620581 ], [ -95.123802947516964, 29.912264236401739 ], [ -95.1238339467196, 29.912802237015057 ], [ -95.124018946944844, 29.913281236734154 ], [ -95.124783947786639, 29.914681237114575 ], [ -95.124992947672112, 29.914992236995442 ], [ -95.125457947501744, 29.915451237183426 ], [ -95.125776947766326, 29.91558523750243 ], [ -95.12590594736109, 29.915865237070594 ], [ -95.12869794872627, 29.917497237410995 ], [ -95.131706948964975, 29.918836237263964 ], [ -95.132517949496432, 29.919348237925064 ], [ -95.132798949299229, 29.919525237909831 ], [ -95.132904949597631, 29.91945923810577 ], [ -95.13293094970679, 29.919484237824026 ], [ -95.13410894990102, 29.918933237963618 ], [ -95.135285950087493, 29.918381237881132 ], [ -95.13548495001298, 29.918287237494809 ], [ -95.135684949884222, 29.918194237801451 ], [ -95.14121495139608, 29.915602236551194 ], [ -95.141290951895783, 29.915613236516162 ], [ -95.141277951212942, 29.915591236286645 ], [ -95.142032951432867, 29.915225236468739 ], [ -95.143837952032385, 29.914352236636859 ], [ -95.143954952288169, 29.914317236461148 ], [ -95.143985952596907, 29.914282236658376 ], [ -95.144018951775237, 29.914271236065648 ], [ -95.144568952063693, 29.91422423617119 ], [ -95.144765952425445, 29.914213235853577 ], [ -95.14520995209061, 29.914014236043577 ], [ -95.146346952651768, 29.91348123596828 ], [ -95.146618953037063, 29.91336023595434 ], [ -95.146839952900336, 29.91325023615428 ], [ -95.147098952944077, 29.913063236208178 ], [ -95.147287953130657, 29.912909235665886 ], [ -95.147413952709215, 29.912783236317424 ], [ -95.147666952765348, 29.912458235616668 ], [ -95.147761952638646, 29.912304235869279 ], [ -95.148392953006933, 29.910886235056765 ], [ -95.148702953413334, 29.910171235299146 ], [ -95.14914495309857, 29.909220234812558 ], [ -95.149946953650939, 29.90742823513165 ], [ -95.150186953971058, 29.906905234686679 ], [ -95.15133095333141, 29.904250233905913 ], [ -95.152573953615686, 29.90143523309855 ], [ -95.152656953867634, 29.901248233067665 ], [ -95.152820954130803, 29.900902233550223 ], [ -95.152903953972142, 29.900714233176675 ], [ -95.153136954176404, 29.900181233308405 ], [ -95.15323795350659, 29.899934233131546 ], [ -95.15342095352662, 29.899588233235249 ], [ -95.153616953627022, 29.899065233243295 ], [ -95.154399953812714, 29.897284232404527 ], [ -95.154727954372063, 29.896624232427971 ], [ -95.155024954062739, 29.895899232026032 ], [ -95.155289954365969, 29.895338232315325 ], [ -95.155908954018429, 29.893941231447847 ], [ -95.156432954972743, 29.892715231172392 ], [ -95.156912954633341, 29.891665231016972 ], [ -95.157386955159907, 29.8905652309282 ], [ -95.157556954185523, 29.890197230895382 ], [ -95.158080954293709, 29.889010230582819 ], [ -95.158207954754076, 29.888696230895668 ], [ -95.158415955250973, 29.888251230320819 ], [ -95.15859295439455, 29.887816229947521 ], [ -95.158990955198831, 29.886981230570431 ], [ -95.159105954859129, 29.886712230037407 ], [ -95.159280954603645, 29.886304230328292 ], [ -95.159419955261555, 29.886030229693731 ], [ -95.159495955109378, 29.885788230078255 ], [ -95.159703954944334, 29.885562229488663 ], [ -95.160000955089558, 29.885353229821888 ], [ -95.160321955342553, 29.885183229947057 ], [ -95.160631954831601, 29.885007229400298 ], [ -95.160780955175497, 29.884884229362982 ], [ -95.160858954848806, 29.884820229696562 ], [ -95.161047954940344, 29.884628230024301 ], [ -95.161117955152818, 29.884474229346388 ], [ -95.161132955504385, 29.884360229785955 ], [ -95.16115595580095, 29.88419322963729 ], [ -95.16112395525532, 29.883655229293403 ], [ -95.161121955281786, 29.883471229306043 ], [ -95.161111955746605, 29.882654229174388 ], [ -95.161106954711073, 29.879239228095724 ], [ -95.161093955321689, 29.87899722874393 ], [ -95.161093954762876, 29.878733228277184 ], [ -95.161068955066114, 29.878381228066047 ], [ -95.161093955172802, 29.877601228198433 ], [ -95.161081954695476, 29.877210228278074 ], [ -95.161106955451899, 29.876924227916859 ], [ -95.16118295508852, 29.876644228355929 ], [ -95.161302954571838, 29.876012227698059 ], [ -95.16140995525862, 29.875528227728942 ], [ -95.161536955121264, 29.875000227915162 ], [ -95.16190195500549, 29.873426227302534 ], [ -95.162141955437377, 29.872244227495589 ], [ -95.162570954941003, 29.870396226360885 ], [ -95.163416954757864, 29.866526225525426 ], [ -95.163586955181984, 29.865794225562283 ], [ -95.163915954924377, 29.864299224949001 ], [ -95.164615954892909, 29.861060225139237 ], [ -95.164679955576744, 29.860813225079784 ], [ -95.165007954821789, 29.859306223903157 ], [ -95.165297955371713, 29.858102223644813 ], [ -95.165777954729506, 29.855881223829044 ], [ -95.166011954795394, 29.85474322378596 ], [ -95.166187955430246, 29.853687223012784 ], [ -95.166408955308924, 29.852235222412055 ], [ -95.166446954862991, 29.851795222486899 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 392, "Tract": "48201253000", "Area_SqMi": 6.67790463975102, "total_2009": 172, "total_2010": 217, "total_2011": 207, "total_2012": 239, "total_2013": 264, "total_2014": 321, "total_2015": 356, "total_2016": 309, "total_2017": 308, "total_2018": 335, "total_2019": 340, "total_2020": 363, "age1": 112, "age2": 319, "age3": 129, "earn1": 39, "earn2": 81, "earn3": 440, "naics_s01": 10, "naics_s02": 0, "naics_s03": 2, "naics_s04": 63, "naics_s05": 30, "naics_s06": 24, "naics_s07": 55, "naics_s08": 322, "naics_s09": 0, "naics_s10": 2, "naics_s11": 3, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 21, "naics_s16": 0, "naics_s17": 0, "naics_s18": 18, "naics_s19": 10, "naics_s20": 0, "race1": 431, "race2": 103, "race3": 7, "race4": 7, "race5": 1, "race6": 11, "ethnicity1": 355, "ethnicity2": 205, "edu1": 118, "edu2": 131, "edu3": 123, "edu4": 76, "Shape_Length": 62066.250916069526, "Shape_Area": 186168552.00824091, "total_2021": 405, "total_2022": 560 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.04910992444384, 29.841737224952514 ], [ -95.049078924991548, 29.841521224684417 ], [ -95.049066924212298, 29.84142222489201 ], [ -95.048870924317939, 29.840207224713343 ], [ -95.048823924769266, 29.839250224195702 ], [ -95.048801923929233, 29.838049223653872 ], [ -95.048779924782366, 29.836859223330954 ], [ -95.048681924593311, 29.836620223766488 ], [ -95.048199923673863, 29.836550223780918 ], [ -95.047848923916817, 29.836519223660304 ], [ -95.047824923640462, 29.836513223591044 ], [ -95.0477969241865, 29.836401223889219 ], [ -95.047693923912902, 29.834829223604029 ], [ -95.044625923362048, 29.834822223151964 ], [ -95.044526923031768, 29.834754223279283 ], [ -95.044495922636315, 29.833879222988429 ], [ -95.044462922522115, 29.831205222976749 ], [ -95.044286922954996, 29.831068222340942 ], [ -95.043521922678849, 29.831049222328307 ], [ -95.043514922919456, 29.830689222939743 ], [ -95.043512922890045, 29.830615222233426 ], [ -95.043385922257002, 29.829182222006189 ], [ -95.043025922701645, 29.828971221863373 ], [ -95.043001922821361, 29.82866922190011 ], [ -95.042943921930529, 29.827603222404488 ], [ -95.042949922560524, 29.827573222116147 ], [ -95.042962922324236, 29.827504221894081 ], [ -95.042924922805597, 29.827427222280736 ], [ -95.042868922388152, 29.827410222189563 ], [ -95.039349921379767, 29.827448222242918 ], [ -95.039027921681551, 29.827448222097637 ], [ -95.038674921224825, 29.827360222333223 ], [ -95.038390921162687, 29.827327221880441 ], [ -95.036681921240771, 29.827360222229149 ], [ -95.036132921086079, 29.827343221806004 ], [ -95.034915919880078, 29.827343222544311 ], [ -95.034865920771097, 29.827266222177144 ], [ -95.034688920400257, 29.825858221473762 ], [ -95.034556920491056, 29.824665221519108 ], [ -95.034411920408743, 29.823505221308835 ], [ -95.034323920461091, 29.823450221027429 ], [ -95.036315920838177, 29.823373221187921 ], [ -95.036191920379636, 29.822829221244369 ], [ -95.036035920058183, 29.82219022090085 ], [ -95.035926920566624, 29.821742221074199 ], [ -95.035891920449174, 29.821583221277074 ], [ -95.035815919826732, 29.821246221290057 ], [ -95.03570492073014, 29.82074222042149 ], [ -95.035611920143197, 29.820361221059841 ], [ -95.035352919841941, 29.819302220084019 ], [ -95.034653919924835, 29.816713219729632 ], [ -95.033992919548083, 29.81434921916858 ], [ -95.033480918808635, 29.812499219449215 ], [ -95.033455919268192, 29.812393218782965 ], [ -95.033344918798889, 29.812008219131041 ], [ -95.033299918786568, 29.811834219201852 ], [ -95.033263919433566, 29.811698219100855 ], [ -95.033258918927231, 29.81168221906433 ], [ -95.033242919296555, 29.811619219321717 ], [ -95.033230919093924, 29.811579218706662 ], [ -95.033188919097043, 29.811448219111398 ], [ -95.033156919263845, 29.811342218825615 ], [ -95.03312091945773, 29.811209219342295 ], [ -95.033048919140086, 29.81096021885433 ], [ -95.032938919058154, 29.810559219200208 ], [ -95.032907919115061, 29.810454218844068 ], [ -95.032879919148854, 29.810354219052368 ], [ -95.032831918797385, 29.810190219046113 ], [ -95.032729918816131, 29.809835218339391 ], [ -95.032272919142414, 29.808219218241529 ], [ -95.032125919193476, 29.80762221823268 ], [ -95.032093919003728, 29.807455218519909 ], [ -95.032075918744638, 29.807260218576573 ], [ -95.0320669191928, 29.806961217773541 ], [ -95.032061918621594, 29.806807217729393 ], [ -95.032059919060785, 29.806753218071023 ], [ -95.032058919029495, 29.806698217972841 ], [ -95.032058918590224, 29.806682217810504 ], [ -95.03205591900408, 29.806578218322372 ], [ -95.031993918263908, 29.804711217659534 ], [ -95.03196591878141, 29.803160217338025 ], [ -95.031944918506639, 29.801465216986944 ], [ -95.031938918564492, 29.801144217080527 ], [ -95.031925918274041, 29.800136216392168 ], [ -95.031913918565223, 29.799314216928625 ], [ -95.031911918781262, 29.799154216360513 ], [ -95.031908917860534, 29.798926216048265 ], [ -95.031912918042863, 29.798898216786675 ], [ -95.031900917891178, 29.798681216255357 ], [ -95.031888917765755, 29.798439216090525 ], [ -95.031885917812588, 29.797906216409984 ], [ -95.031883917818774, 29.797628216605048 ], [ -95.031695918256332, 29.797698216626788 ], [ -95.029692917660299, 29.798443216144729 ], [ -95.029383917927674, 29.798558216221373 ], [ -95.02870491771813, 29.798811216135938 ], [ -95.028660917237389, 29.798825216673176 ], [ -95.02858491770661, 29.798856216523063 ], [ -95.028551917904608, 29.798868216595409 ], [ -95.02785591747886, 29.799128216717548 ], [ -95.027216916729103, 29.799352216846685 ], [ -95.026723917213502, 29.799505217087557 ], [ -95.026243917047836, 29.799631217139591 ], [ -95.025623916245479, 29.799756216843665 ], [ -95.025080916126242, 29.799841217213498 ], [ -95.024529916910126, 29.799895217199687 ], [ -95.023994916795246, 29.79991821718432 ], [ -95.023830916252521, 29.799923216647493 ], [ -95.023380915918111, 29.799935217016753 ], [ -95.021075915141694, 29.799968217306372 ], [ -95.020498915453317, 29.799986217466017 ], [ -95.018683915418947, 29.800043217530074 ], [ -95.017101914238111, 29.800092216855166 ], [ -95.016908914267816, 29.800096217080547 ], [ -95.016699914600139, 29.80010121755166 ], [ -95.015020913718629, 29.800094217524183 ], [ -95.013582913457157, 29.800123217713015 ], [ -95.013016913815747, 29.800140217447499 ], [ -95.011907913304285, 29.800172217406349 ], [ -95.011220912885733, 29.800212217842319 ], [ -95.011013912561523, 29.800224217402093 ], [ -95.009901912548699, 29.800356217133274 ], [ -95.00867691226054, 29.800543217292748 ], [ -95.00476591149058, 29.801154217971661 ], [ -95.004328911643668, 29.801222218195932 ], [ -95.00305491122181, 29.80141821759824 ], [ -95.000311909938233, 29.801840218294757 ], [ -94.997972910066778, 29.802227218159587 ], [ -94.99781490932844, 29.802251218099546 ], [ -94.997593909725751, 29.802284218517606 ], [ -94.99762691008452, 29.802386217924163 ], [ -94.997658909349127, 29.802512218614002 ], [ -94.997677909154277, 29.802600218096039 ], [ -94.997946909984208, 29.803625218313591 ], [ -94.998083909510115, 29.804149218746208 ], [ -94.99814390968524, 29.804376218767125 ], [ -94.998404910441238, 29.805297219223128 ], [ -94.998607910532158, 29.80605321912974 ], [ -94.998939910529998, 29.807261219082559 ], [ -94.999031910093137, 29.807573219292596 ], [ -94.999063909985779, 29.807703219447781 ], [ -94.999132910715559, 29.807940219816658 ], [ -94.999201910552856, 29.808241219473292 ], [ -94.999213910428836, 29.808312219403462 ], [ -94.999236910165934, 29.808486219787678 ], [ -94.999246910062411, 29.808830219406424 ], [ -94.999261910116616, 29.809002219745619 ], [ -94.999266909886359, 29.809155219405859 ], [ -94.999267910604232, 29.809185219574609 ], [ -94.999251910727452, 29.809388219460303 ], [ -94.999242910197452, 29.81009322013572 ], [ -94.99926091082871, 29.810928220382873 ], [ -94.999279910598176, 29.812725220327991 ], [ -94.999310910649456, 29.815161221193591 ], [ -94.999336910275915, 29.816959221223538 ], [ -94.999340910270206, 29.81748022173328 ], [ -94.999349910434205, 29.818152221824693 ], [ -94.999364910320296, 29.819859222135179 ], [ -94.999360910617625, 29.820071221496171 ], [ -94.998884910231268, 29.820076221485856 ], [ -94.998547910617518, 29.820079221785189 ], [ -94.997629910920381, 29.820093221965504 ], [ -94.997648910015243, 29.820197222023587 ], [ -94.99766391044686, 29.820255221610356 ], [ -94.997672910740292, 29.820330222203211 ], [ -94.997702909935043, 29.820411221905843 ], [ -94.997833910992625, 29.820992221912885 ], [ -94.997861910161504, 29.82113522191106 ], [ -94.998228910329345, 29.822791222906581 ], [ -94.998306911132161, 29.82316522238629 ], [ -94.998477911205001, 29.823930223186743 ], [ -94.998663910582835, 29.824838223329145 ], [ -94.998687911202708, 29.824954222609648 ], [ -94.998706911109224, 29.825045222831751 ], [ -94.998723911227302, 29.825129223078111 ], [ -94.998825911146525, 29.825525222978502 ], [ -94.998908910600349, 29.825899222797467 ], [ -94.999098911553887, 29.826750223574471 ], [ -94.999108911027534, 29.82679722353943 ], [ -94.99917591142389, 29.827116223543495 ], [ -94.999377911014832, 29.827996223713523 ], [ -94.999538910805853, 29.828747224074085 ], [ -94.999779910891291, 29.829818224149854 ], [ -94.999900911912491, 29.830395223808292 ], [ -95.000095911738001, 29.831287224197371 ], [ -95.000298912119476, 29.832227224820105 ], [ -95.000375911747298, 29.832491224386974 ], [ -95.000401912211686, 29.832665224132331 ], [ -95.000630911695055, 29.833699224288502 ], [ -95.000918912380783, 29.835040224880039 ], [ -95.001211911562862, 29.836337225584387 ], [ -95.001396911956348, 29.837228225777551 ], [ -95.001627912724231, 29.838264225467004 ], [ -95.001669911831357, 29.838433225590798 ], [ -95.001765911805919, 29.838757225562389 ], [ -95.001824911878373, 29.8389122255095 ], [ -95.001893911839502, 29.839061226072136 ], [ -95.001972912567823, 29.83920222589003 ], [ -95.002060912874967, 29.839336226022965 ], [ -95.002431912754645, 29.839861225455639 ], [ -95.002512912908315, 29.839991225946964 ], [ -95.002584912101497, 29.840122225499119 ], [ -95.002646912425945, 29.840257225773481 ], [ -95.002697912586044, 29.840396225823781 ], [ -95.002733913037872, 29.840535225570228 ], [ -95.002756912269319, 29.840675226155195 ], [ -95.002767912754237, 29.840817226107088 ], [ -95.002777913145735, 29.841403225754437 ], [ -95.002808912294668, 29.842391226269847 ], [ -95.002867912525403, 29.842399226469727 ], [ -95.002941912404538, 29.842403225955032 ], [ -95.003387912661296, 29.842392226558303 ], [ -95.003672913023593, 29.842392226505893 ], [ -95.004637912855486, 29.842376226689982 ], [ -95.005260913648229, 29.842368226024991 ], [ -95.005844913153027, 29.842358226673728 ], [ -95.006458914081051, 29.842350225914487 ], [ -95.006737913743294, 29.842346226587114 ], [ -95.006944914058963, 29.842344226311962 ], [ -95.007436913540403, 29.842338226641413 ], [ -95.007892913769638, 29.842330226357134 ], [ -95.008458914429681, 29.84232522621771 ], [ -95.009026914460222, 29.842320226324297 ], [ -95.009546914734514, 29.842312225807699 ], [ -95.009915914709012, 29.842304225949793 ], [ -95.01022191461125, 29.842302226123532 ], [ -95.010579914432597, 29.842299226001106 ], [ -95.010861914523119, 29.84229622635328 ], [ -95.011575914774596, 29.842287225676039 ], [ -95.012340914769709, 29.842279225943358 ], [ -95.012621915147662, 29.842275226041608 ], [ -95.013321915802422, 29.84225222628686 ], [ -95.013586915327437, 29.842251225997966 ], [ -95.014046915532987, 29.842254226052933 ], [ -95.014115915427297, 29.842255226227802 ], [ -95.016145916230499, 29.84222322580851 ], [ -95.017111916394938, 29.842218225472873 ], [ -95.018326916853823, 29.842197225625156 ], [ -95.019522916684281, 29.842188225852997 ], [ -95.019734916595766, 29.842174226049213 ], [ -95.019961917092758, 29.842169225428925 ], [ -95.020214916797627, 29.842179225815759 ], [ -95.022163918157361, 29.842160225877496 ], [ -95.022914917729722, 29.842153225656247 ], [ -95.024446918177077, 29.842130225268185 ], [ -95.025011918381452, 29.842123225435635 ], [ -95.025183918166121, 29.842120225431177 ], [ -95.02640191832873, 29.842103225198077 ], [ -95.027414918941787, 29.842099225674996 ], [ -95.02789691931612, 29.842092225613762 ], [ -95.028654919487451, 29.842079225070339 ], [ -95.029653919889171, 29.842063225539814 ], [ -95.032414920807895, 29.842028225207741 ], [ -95.032521920134457, 29.84202622556942 ], [ -95.032805920278619, 29.84202222524322 ], [ -95.033432920336352, 29.842015225052524 ], [ -95.034995920802785, 29.841996225077168 ], [ -95.036011921489091, 29.841983224805574 ], [ -95.036249921229, 29.841984225240846 ], [ -95.036723921418115, 29.841973225143256 ], [ -95.040832922743959, 29.841927225120131 ], [ -95.044127923594687, 29.841868224882461 ], [ -95.045358923870964, 29.841840225257211 ], [ -95.045931923918403, 29.841818224680381 ], [ -95.046498923766094, 29.841788224449317 ], [ -95.046745924240483, 29.84177522481632 ], [ -95.047280924010323, 29.841761224783163 ], [ -95.04910992444384, 29.841737224952514 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 393, "Tract": "48201253300", "Area_SqMi": 8.3079209879618627, "total_2009": 534, "total_2010": 407, "total_2011": 380, "total_2012": 418, "total_2013": 474, "total_2014": 456, "total_2015": 363, "total_2016": 585, "total_2017": 561, "total_2018": 468, "total_2019": 634, "total_2020": 717, "age1": 207, "age2": 431, "age3": 169, "earn1": 57, "earn2": 135, "earn3": 615, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 23, "naics_s06": 34, "naics_s07": 2, "naics_s08": 161, "naics_s09": 0, "naics_s10": 4, "naics_s11": 0, "naics_s12": 36, "naics_s13": 12, "naics_s14": 41, "naics_s15": 0, "naics_s16": 362, "naics_s17": 0, "naics_s18": 36, "naics_s19": 79, "naics_s20": 0, "race1": 713, "race2": 55, "race3": 12, "race4": 18, "race5": 1, "race6": 8, "ethnicity1": 337, "ethnicity2": 470, "edu1": 177, "edu2": 154, "edu3": 162, "edu4": 107, "Shape_Length": 65861.744040390346, "Shape_Area": 231610617.99549755, "total_2021": 795, "total_2022": 807 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.08269192969307, 29.764143207405294 ], [ -95.081399929751612, 29.764087207680458 ], [ -95.08028592934717, 29.763856208035207 ], [ -95.07948192898931, 29.763705207741953 ], [ -95.078129928754663, 29.763052207322104 ], [ -95.077681928081489, 29.762771207022308 ], [ -95.077320928735716, 29.762545207630687 ], [ -95.076205927998316, 29.761789207352642 ], [ -95.074573927911445, 29.761077207458165 ], [ -95.07429592746675, 29.760893207127435 ], [ -95.072604927441844, 29.759772207408197 ], [ -95.070667926684763, 29.758750207230076 ], [ -95.070453926660392, 29.758578206783788 ], [ -95.070102926792288, 29.758277206728231 ], [ -95.069705925802083, 29.757972206735317 ], [ -95.069247925977308, 29.757575206713163 ], [ -95.068835926422508, 29.757117206755733 ], [ -95.068439925385107, 29.756770206632172 ], [ -95.068088925431169, 29.756374206067299 ], [ -95.067722925650131, 29.755881206830889 ], [ -95.067264925414889, 29.7552672059788 ], [ -95.066913925499335, 29.754726205928765 ], [ -95.066455925596259, 29.753940205655677 ], [ -95.065952925061666, 29.753005205761671 ], [ -95.064826924835273, 29.750785205132413 ], [ -95.060948923711408, 29.743137204369567 ], [ -95.059630923060567, 29.740411203788206 ], [ -95.059604922944118, 29.740356203652873 ], [ -95.059543923084476, 29.739822203542278 ], [ -95.059497922665628, 29.740104203524989 ], [ -95.059345922418089, 29.739886203212325 ], [ -95.059146922506955, 29.739509203633663 ], [ -95.058887922228479, 29.739257203451757 ], [ -95.058643922567825, 29.738990203435925 ], [ -95.0583379226386, 29.738586203560477 ], [ -95.058124922185414, 29.738505202702004 ], [ -95.057620921725203, 29.738101203521701 ], [ -95.056308921842671, 29.7373422025547 ], [ -95.05398992080238, 29.73606020311879 ], [ -95.050998920527803, 29.734274202295484 ], [ -95.04833691931519, 29.732622202170674 ], [ -95.044767918861154, 29.731184202121508 ], [ -95.041854917389415, 29.730751202291305 ], [ -95.040438917121364, 29.730628202270061 ], [ -95.036728916894447, 29.730379202481146 ], [ -95.035364915876158, 29.730260202145768 ], [ -95.034572916416764, 29.730286202637437 ], [ -95.034628915737542, 29.730726202723947 ], [ -95.034686916078883, 29.7309302025199 ], [ -95.034660915676014, 29.732491202693012 ], [ -95.0345819160367, 29.737309204079367 ], [ -95.034399916450269, 29.748463205842661 ], [ -95.033776916318416, 29.748555206204887 ], [ -95.033676916852372, 29.748570205962334 ], [ -95.033925916083234, 29.748749206374875 ], [ -95.034070917020969, 29.748865206522215 ], [ -95.034196916990865, 29.748936205995307 ], [ -95.034505916529156, 29.749046206395143 ], [ -95.034555916978405, 29.749096205757457 ], [ -95.034594916240295, 29.749111206525846 ], [ -95.034643916704709, 29.749129206146282 ], [ -95.034668916680374, 29.749151205945314 ], [ -95.034668916464639, 29.749195206137191 ], [ -95.034605916676881, 29.74929920642337 ], [ -95.034473916991317, 29.749426205803275 ], [ -95.034397916790937, 29.749464206366866 ], [ -95.034445916358365, 29.749530206515075 ], [ -95.034287916599837, 29.749637206571652 ], [ -95.03405291707972, 29.750056206200906 ], [ -95.033820916270841, 29.750302206608691 ], [ -95.033787916841987, 29.750394206048725 ], [ -95.033879916691589, 29.750462206805182 ], [ -95.033955916300371, 29.75051820658155 ], [ -95.03445991640568, 29.750759206577591 ], [ -95.035242917476992, 29.7510302060717 ], [ -95.035398917514044, 29.751105206564965 ], [ -95.035666916804502, 29.751235206285291 ], [ -95.035981916762992, 29.751538206627227 ], [ -95.03627791778726, 29.752006207013316 ], [ -95.036339917607421, 29.752332206948378 ], [ -95.036286916942117, 29.752850207044464 ], [ -95.03598091715854, 29.753637206699572 ], [ -95.035271917573439, 29.755166207429365 ], [ -95.034583917399232, 29.756755207987702 ], [ -95.03435891700741, 29.757217207463881 ], [ -95.033674916705991, 29.758766207913077 ], [ -95.032971917072842, 29.76040320848201 ], [ -95.032599916676176, 29.761058208413068 ], [ -95.032155916624205, 29.761892208550453 ], [ -95.032094916654756, 29.762043208954889 ], [ -95.032031916630586, 29.762244208532792 ], [ -95.031990916308075, 29.76243220909047 ], [ -95.031966916566688, 29.76261520902225 ], [ -95.031957916609599, 29.76279620940749 ], [ -95.031958916968009, 29.763082208753282 ], [ -95.031953916453261, 29.763441209123339 ], [ -95.031950916792454, 29.763650209027666 ], [ -95.031943917110695, 29.764248209248116 ], [ -95.031901917027355, 29.767601210133286 ], [ -95.031863916953895, 29.76880021053524 ], [ -95.031865916553073, 29.769363210515507 ], [ -95.031856916790517, 29.769866210274483 ], [ -95.031845916646134, 29.772330211095401 ], [ -95.031955916792413, 29.775594211430548 ], [ -95.032016916963784, 29.77750921228694 ], [ -95.032021917608176, 29.778886212415802 ], [ -95.032024917361937, 29.779500212124816 ], [ -95.032018917975222, 29.781072212908608 ], [ -95.032032917867625, 29.781538213183811 ], [ -95.032036917778299, 29.782633213141331 ], [ -95.032355917358942, 29.782759212932078 ], [ -95.032711917540396, 29.782914212923295 ], [ -95.036068918873596, 29.784379213312015 ], [ -95.037598918752721, 29.785000213142261 ], [ -95.038313919512987, 29.78529021380464 ], [ -95.039840919238557, 29.785948213753954 ], [ -95.041717920631058, 29.786731213880604 ], [ -95.042938920390299, 29.787242213829838 ], [ -95.043325920267904, 29.78740521336567 ], [ -95.043779921029071, 29.787595213523012 ], [ -95.043845920467632, 29.787619213886309 ], [ -95.044854921136249, 29.787996213382108 ], [ -95.045245920929588, 29.788120213967638 ], [ -95.046190921550547, 29.788420213788239 ], [ -95.04690392163873, 29.78864721400587 ], [ -95.047719922053219, 29.788895214058936 ], [ -95.049340922335233, 29.789389213562924 ], [ -95.049779922759555, 29.789522213800929 ], [ -95.049920922618767, 29.789565214325624 ], [ -95.050790922684484, 29.789787214318181 ], [ -95.050645922789158, 29.78988021362148 ], [ -95.050445922452752, 29.7900512135786 ], [ -95.050157922356775, 29.790235213806579 ], [ -95.049929922708145, 29.790388214167763 ], [ -95.049436922925466, 29.7907032139771 ], [ -95.049124922245568, 29.790858214596167 ], [ -95.04931692205777, 29.79099121453871 ], [ -95.049447922186033, 29.791082214548229 ], [ -95.049804922645237, 29.790981214259588 ], [ -95.050559922324851, 29.790802213824055 ], [ -95.051137922473259, 29.790698214451556 ], [ -95.051756923465177, 29.790593214146718 ], [ -95.052411923029055, 29.790517213757632 ], [ -95.052956923152323, 29.790473213720333 ], [ -95.053090923227089, 29.790468213734353 ], [ -95.053441923748721, 29.790454213650822 ], [ -95.054151923913295, 29.790443213683339 ], [ -95.054506924151084, 29.790455213670022 ], [ -95.054916924197698, 29.790484214275882 ], [ -95.05543792363278, 29.790548213491597 ], [ -95.056033923723732, 29.790646213885637 ], [ -95.056603924655704, 29.790780214222732 ], [ -95.057007924321255, 29.79089321384928 ], [ -95.057369924896776, 29.79102421409921 ], [ -95.057663924850885, 29.791132213727927 ], [ -95.058014925057094, 29.791267213623236 ], [ -95.058797924650747, 29.791599213610667 ], [ -95.058956925421086, 29.791666213899919 ], [ -95.059370925491564, 29.791841213990732 ], [ -95.05985492520044, 29.792071214225892 ], [ -95.060189925615219, 29.79222421414935 ], [ -95.060829925875836, 29.792517214052317 ], [ -95.061033925149644, 29.792403214227974 ], [ -95.061832925545701, 29.791887214134633 ], [ -95.06248892531454, 29.79129621414998 ], [ -95.0631909256998, 29.790640213919861 ], [ -95.064609926198045, 29.7894042130619 ], [ -95.065311926356756, 29.788741213167302 ], [ -95.06618092692139, 29.788077213051562 ], [ -95.067142926891876, 29.787360212511874 ], [ -95.068042926778631, 29.786754212920911 ], [ -95.06871492728952, 29.786235212855367 ], [ -95.070834927688466, 29.784602212296143 ], [ -95.071933928018325, 29.783668211896611 ], [ -95.072955928079821, 29.782745211349329 ], [ -95.073611928567928, 29.782184211962839 ], [ -95.074313928330824, 29.781501211763022 ], [ -95.07498592844118, 29.780715211146987 ], [ -95.075687929066376, 29.780082211050168 ], [ -95.07594692861484, 29.779124210842191 ], [ -95.076495928805102, 29.777827210906551 ], [ -95.076862929155155, 29.776706210485262 ], [ -95.077060928935637, 29.77551920975063 ], [ -95.077319929069816, 29.775375210375309 ], [ -95.077258928620083, 29.775031210314921 ], [ -95.077258928720397, 29.774547210345844 ], [ -95.077365928610035, 29.773631210163217 ], [ -95.077319928891484, 29.772655209199371 ], [ -95.077167928463595, 29.771770209758827 ], [ -95.076953928539126, 29.770881209240528 ], [ -95.076993929110046, 29.770152208749671 ], [ -95.077221928238913, 29.769580209130392 ], [ -95.077518928276533, 29.768836208288167 ], [ -95.077869928603917, 29.768142208377622 ], [ -95.078282928377007, 29.767383208706875 ], [ -95.078678928393003, 29.766891208553506 ], [ -95.079090928569499, 29.766364207809083 ], [ -95.080052929638654, 29.765247207997934 ], [ -95.080578929289871, 29.764945207688754 ], [ -95.081318929436335, 29.764521207632807 ], [ -95.08269192969307, 29.764143207405294 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 394, "Tract": "48201312200", "Area_SqMi": 0.41960991294768279, "total_2009": 345, "total_2010": 391, "total_2011": 418, "total_2012": 447, "total_2013": 395, "total_2014": 360, "total_2015": 399, "total_2016": 416, "total_2017": 266, "total_2018": 225, "total_2019": 167, "total_2020": 173, "age1": 22, "age2": 88, "age3": 37, "earn1": 13, "earn2": 44, "earn3": 90, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 3, "naics_s06": 34, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 22, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 77, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 55, "race2": 80, "race3": 0, "race4": 10, "race5": 1, "race6": 1, "ethnicity1": 126, "ethnicity2": 21, "edu1": 16, "edu2": 40, "edu3": 45, "edu4": 24, "Shape_Length": 13953.402027993972, "Shape_Area": 11698006.203437895, "total_2021": 153, "total_2022": 147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.35814099922365, 29.730428191660511 ], [ -95.358087999083608, 29.730412191448327 ], [ -95.357083998891142, 29.73009419134905 ], [ -95.355776998677854, 29.729713191534771 ], [ -95.354512998379846, 29.729269191069708 ], [ -95.353402997342755, 29.72885419079374 ], [ -95.352014996924609, 29.728463191524352 ], [ -95.351613997040147, 29.72833719136008 ], [ -95.351134997231838, 29.728192191475973 ], [ -95.350397996436726, 29.727973190885685 ], [ -95.349898996546287, 29.72784919122007 ], [ -95.349738996230315, 29.727791191272651 ], [ -95.349558996203328, 29.727772190678309 ], [ -95.349353996306561, 29.727764190983883 ], [ -95.348897996685309, 29.727774191446876 ], [ -95.348492996221609, 29.727815191212581 ], [ -95.348096996626225, 29.72787219142927 ], [ -95.347633996505095, 29.727966191511847 ], [ -95.347263995918325, 29.728009190825638 ], [ -95.346873995824026, 29.728036191622195 ], [ -95.346442995723422, 29.727998191236264 ], [ -95.346175996021188, 29.727960191166513 ], [ -95.345955995817945, 29.727908191189705 ], [ -95.345880996093626, 29.727891191451519 ], [ -95.345813995413522, 29.727872191096793 ], [ -95.344746995074587, 29.727529190792477 ], [ -95.343968995425982, 29.727280191241185 ], [ -95.343632995431165, 29.728125191791218 ], [ -95.343346995212144, 29.728807191753933 ], [ -95.343065994963183, 29.7294751916059 ], [ -95.342784995210778, 29.730149191881743 ], [ -95.342500994795486, 29.730824191930289 ], [ -95.342369995374852, 29.731108191894123 ], [ -95.34231199501076, 29.731249191972214 ], [ -95.342238995129804, 29.731427192233184 ], [ -95.34217499470374, 29.731583192540196 ], [ -95.342132994752475, 29.731685192246481 ], [ -95.342073995322664, 29.731828192356293 ], [ -95.34228899486088, 29.731993192132652 ], [ -95.34274999559436, 29.732347192520077 ], [ -95.343100994919411, 29.732622192607209 ], [ -95.344949995385832, 29.73407119283323 ], [ -95.345193995854459, 29.734248192852174 ], [ -95.345555995602965, 29.73451019238021 ], [ -95.345970996430566, 29.73481119252391 ], [ -95.346995996447717, 29.735474192478293 ], [ -95.347298996521459, 29.735669192601637 ], [ -95.347427996326715, 29.735753192725273 ], [ -95.349030997110134, 29.736789192793299 ], [ -95.34968599756769, 29.737197192896613 ], [ -95.35092299723128, 29.737968192757027 ], [ -95.351564998012108, 29.738368193294285 ], [ -95.351683998121928, 29.738442193107044 ], [ -95.351728997417638, 29.738471193026022 ], [ -95.351796998151599, 29.738386192964462 ], [ -95.351862997634768, 29.738304193028167 ], [ -95.351999997822361, 29.73813219342783 ], [ -95.352163997387464, 29.737927193160107 ], [ -95.352228997710256, 29.73784419275723 ], [ -95.35260699749405, 29.737372193088152 ], [ -95.353089998256507, 29.736797193128229 ], [ -95.353369998352903, 29.736442193090109 ], [ -95.353884998545638, 29.735868192308828 ], [ -95.354326998471578, 29.735282192294786 ], [ -95.354787998245712, 29.734652192383386 ], [ -95.355266998151819, 29.734108192129426 ], [ -95.355377998312022, 29.73403519233721 ], [ -95.355532998585176, 29.733781192384562 ], [ -95.355797998494765, 29.733412192254988 ], [ -95.356306998367515, 29.732785191902167 ], [ -95.356764998986662, 29.732216191561847 ], [ -95.357222998887238, 29.731658191510789 ], [ -95.357650998753357, 29.731091191462188 ], [ -95.357818998769488, 29.730833191508271 ], [ -95.35814099922365, 29.730428191660511 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 395, "Tract": "48201312400", "Area_SqMi": 0.41786016639010565, "total_2009": 402, "total_2010": 440, "total_2011": 415, "total_2012": 539, "total_2013": 333, "total_2014": 292, "total_2015": 118, "total_2016": 139, "total_2017": 132, "total_2018": 130, "total_2019": 118, "total_2020": 87, "age1": 68, "age2": 60, "age3": 22, "earn1": 48, "earn2": 50, "earn3": 52, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 4, "naics_s07": 13, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 31, "naics_s13": 0, "naics_s14": 0, "naics_s15": 4, "naics_s16": 27, "naics_s17": 25, "naics_s18": 41, "naics_s19": 1, "naics_s20": 0, "race1": 66, "race2": 57, "race3": 2, "race4": 18, "race5": 0, "race6": 7, "ethnicity1": 122, "ethnicity2": 28, "edu1": 16, "edu2": 28, "edu3": 29, "edu4": 9, "Shape_Length": 18455.560849678332, "Shape_Area": 11649226.264133805, "total_2021": 95, "total_2022": 150 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372245002945945, 29.733583191559404 ], [ -95.372522002775924, 29.733463191119498 ], [ -95.372129002667648, 29.733220191517518 ], [ -95.371766002709862, 29.732995191040811 ], [ -95.371486002769913, 29.732822191293387 ], [ -95.371300002263894, 29.732707191162479 ], [ -95.371211002238439, 29.732652191440554 ], [ -95.371047001880768, 29.732551191593682 ], [ -95.370556001826415, 29.732248191723336 ], [ -95.369857002485148, 29.731837191190774 ], [ -95.369702001756195, 29.73173119166167 ], [ -95.368850001456792, 29.731223190973413 ], [ -95.367999001779395, 29.730709190860615 ], [ -95.36716200083842, 29.730209190558476 ], [ -95.366279001461479, 29.72967019070494 ], [ -95.365444000441073, 29.729182191062179 ], [ -95.364563000091309, 29.728650190424737 ], [ -95.362859000018233, 29.727596190222755 ], [ -95.362187000370966, 29.727202190133706 ], [ -95.361226000046031, 29.726619190449206 ], [ -95.360790999281576, 29.727155190351144 ], [ -95.360639999430688, 29.727008190473416 ], [ -95.360248999034297, 29.726887190864375 ], [ -95.358570999103478, 29.726375190378722 ], [ -95.357299998493616, 29.725983190468448 ], [ -95.356381997803581, 29.725709190726644 ], [ -95.356009998541779, 29.725591190298303 ], [ -95.356125997750155, 29.725294190014669 ], [ -95.356280998494555, 29.724901190065104 ], [ -95.356066998287943, 29.724880189978776 ], [ -95.355954998637984, 29.724886190612036 ], [ -95.355685998405008, 29.724911189866805 ], [ -95.355475997802358, 29.724940190510914 ], [ -95.355280998324858, 29.724950190515653 ], [ -95.355112998125051, 29.724946190501132 ], [ -95.35493999766058, 29.724927190694984 ], [ -95.354735997866783, 29.72489219016343 ], [ -95.353991997607409, 29.724657190645718 ], [ -95.353221997484809, 29.724430189884572 ], [ -95.352463996933977, 29.724191190682106 ], [ -95.351709997432636, 29.72396018999196 ], [ -95.350941996900985, 29.723733190549527 ], [ -95.350523996397271, 29.72480019004421 ], [ -95.350092996489977, 29.725836190679292 ], [ -95.349944997074047, 29.726213190697155 ], [ -95.349872996203615, 29.726426191031148 ], [ -95.349819996368467, 29.726660190912508 ], [ -95.349765997011843, 29.726976190927321 ], [ -95.349769997097312, 29.727184190652917 ], [ -95.349786997149451, 29.727326191358994 ], [ -95.349816996504956, 29.72745619131685 ], [ -95.349898996546287, 29.72784919122007 ], [ -95.350397996436726, 29.727973190885685 ], [ -95.351134997231838, 29.728192191475973 ], [ -95.351613997040147, 29.72833719136008 ], [ -95.352014996924609, 29.728463191524352 ], [ -95.353402997342755, 29.72885419079374 ], [ -95.354512998379846, 29.729269191069708 ], [ -95.355776998677854, 29.729713191534771 ], [ -95.357083998891142, 29.73009419134905 ], [ -95.358087999083608, 29.730412191448327 ], [ -95.35814099922365, 29.730428191660511 ], [ -95.358204998658152, 29.730446191529929 ], [ -95.358610999060929, 29.730642191703431 ], [ -95.359088998758068, 29.730890191036266 ], [ -95.359465998834651, 29.731102191853953 ], [ -95.359888999719658, 29.731370191601943 ], [ -95.360741999220082, 29.731880191241419 ], [ -95.361616999841758, 29.732413191635171 ], [ -95.362457999813657, 29.732900191259066 ], [ -95.363293000084425, 29.733427191470934 ], [ -95.364155000381118, 29.733950191684141 ], [ -95.365017000588338, 29.734474191614655 ], [ -95.365882000752165, 29.734977192343816 ], [ -95.366742001895943, 29.735469192446107 ], [ -95.367603001667675, 29.735957192407255 ], [ -95.3680620016586, 29.736228191858725 ], [ -95.368390002313959, 29.73642119231565 ], [ -95.368663002450646, 29.736580192185201 ], [ -95.368863001821055, 29.736699192199591 ], [ -95.369092002533904, 29.736831192008204 ], [ -95.369458002634744, 29.73633919214058 ], [ -95.369707001704242, 29.736050192029435 ], [ -95.370290002610261, 29.735401192123177 ], [ -95.370674002235148, 29.734962191524811 ], [ -95.370999002196143, 29.734591192145331 ], [ -95.371266002603292, 29.734224191307966 ], [ -95.37146500222849, 29.734063192046754 ], [ -95.371652002815779, 29.733938191952447 ], [ -95.371723002141565, 29.733878191632986 ], [ -95.371768002822037, 29.733849191690076 ], [ -95.371945002527227, 29.733731191358508 ], [ -95.372245002945945, 29.733583191559404 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 396, "Tract": "48167721000", "Area_SqMi": 3.7577073325940495, "total_2009": 153, "total_2010": 166, "total_2011": 188, "total_2012": 93, "total_2013": 170, "total_2014": 168, "total_2015": 149, "total_2016": 190, "total_2017": 180, "total_2018": 207, "total_2019": 173, "total_2020": 248, "age1": 37, "age2": 122, "age3": 64, "earn1": 32, "earn2": 71, "earn3": 120, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 29, "naics_s05": 73, "naics_s06": 20, "naics_s07": 22, "naics_s08": 6, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 27, "naics_s19": 12, "naics_s20": 29, "race1": 180, "race2": 26, "race3": 4, "race4": 10, "race5": 0, "race6": 3, "ethnicity1": 169, "ethnicity2": 54, "edu1": 46, "edu2": 46, "edu3": 56, "edu4": 38, "Shape_Length": 67381.866149045163, "Shape_Area": 104758449.0523462, "total_2021": 250, "total_2022": 223 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.047344907059525, 29.462658146619468 ], [ -95.047505907653431, 29.462519146751045 ], [ -95.046990907150828, 29.461966146570479 ], [ -95.046883907333807, 29.461850146106798 ], [ -95.045559906974106, 29.46042714623886 ], [ -95.042679905763009, 29.457329145288949 ], [ -95.042340905717069, 29.456955145781233 ], [ -95.042054905886488, 29.456654145348761 ], [ -95.041631905528334, 29.456198145087843 ], [ -95.039044904656336, 29.453405145243607 ], [ -95.03887590450968, 29.453505144554828 ], [ -95.038592904443391, 29.453579144658583 ], [ -95.038457904668377, 29.45359814466341 ], [ -95.037483904369694, 29.453739145319862 ], [ -95.037143904943377, 29.453777145464471 ], [ -95.036707903973323, 29.453846144683698 ], [ -95.03639190435176, 29.453885144823644 ], [ -95.036208903885012, 29.453907144747792 ], [ -95.035773903987462, 29.45395514500472 ], [ -95.035659903793416, 29.4539681450857 ], [ -95.035127903694701, 29.453980145540235 ], [ -95.034465903943598, 29.453980144812746 ], [ -95.034361903560566, 29.453977144845755 ], [ -95.033856903828678, 29.453965145109038 ], [ -95.0334419032298, 29.453956145548442 ], [ -95.033210903301736, 29.453941145103073 ], [ -95.03321590306129, 29.451662144401197 ], [ -95.033216903552301, 29.450811144587636 ], [ -95.033219902906296, 29.449736143984861 ], [ -95.033219903742676, 29.449428144642425 ], [ -95.033176903771604, 29.449393144723441 ], [ -95.033105903400042, 29.449372144676261 ], [ -95.028854902002962, 29.449378144496894 ], [ -95.024029901250373, 29.449381144419899 ], [ -95.024028900753677, 29.449834144514341 ], [ -95.024024900965401, 29.450817145160602 ], [ -95.024017901060347, 29.452939145628399 ], [ -95.024018901217573, 29.454482145441283 ], [ -95.024018900682563, 29.454520145929973 ], [ -95.024094901689921, 29.455138146065128 ], [ -95.02413290135263, 29.45559514584853 ], [ -95.023950901071942, 29.456463145930257 ], [ -95.023899901477563, 29.456816146265808 ], [ -95.022588900765257, 29.456942146632297 ], [ -95.021501900762757, 29.456915146203364 ], [ -95.021296900171606, 29.456916146462692 ], [ -95.018959900400645, 29.456935145933546 ], [ -95.018440900228669, 29.458067146447167 ], [ -95.018138899320945, 29.458728147118912 ], [ -95.018316899811168, 29.45943414661032 ], [ -95.018661900132656, 29.460039146638373 ], [ -95.01959290079634, 29.460772147048981 ], [ -95.019843900405078, 29.461287147535753 ], [ -95.019875900032076, 29.461482147180785 ], [ -95.019893900494125, 29.46212914698237 ], [ -95.018996900627755, 29.463416147527575 ], [ -95.018188899797352, 29.463802147779333 ], [ -95.017079899518336, 29.463808148262732 ], [ -95.016111899419798, 29.463735148011828 ], [ -95.015048899271903, 29.463920148336857 ], [ -95.014654899003233, 29.464259147933586 ], [ -95.014547899401293, 29.464490147852207 ], [ -95.014523899384557, 29.464706148032754 ], [ -95.014177899214857, 29.46486814795297 ], [ -95.013915899084651, 29.465577148765568 ], [ -95.013691899184053, 29.465692148591646 ], [ -95.013514899286434, 29.465669148158092 ], [ -95.013313898755868, 29.465669148301586 ], [ -95.012851898467261, 29.465584148667102 ], [ -95.012396898905749, 29.465376148667858 ], [ -95.012042898325333, 29.464883148359416 ], [ -95.011672898637599, 29.464398148591595 ], [ -95.011358897845739, 29.464047147716748 ], [ -95.011120897842119, 29.463786147777185 ], [ -95.010447898023685, 29.462321147908721 ], [ -95.010330897561374, 29.46242314818236 ], [ -95.010309897589678, 29.462444148056818 ], [ -95.010306898223519, 29.462015147602738 ], [ -95.010150897657738, 29.461676147890255 ], [ -95.010056897503418, 29.461628147854757 ], [ -95.009762898103418, 29.461368147561529 ], [ -95.009684897777845, 29.461355147213595 ], [ -95.00831289776427, 29.461125147290364 ], [ -95.004154896047581, 29.462128147569441 ], [ -95.003668896320377, 29.46157314772665 ], [ -95.003564896255966, 29.459793147015628 ], [ -95.002130895435045, 29.45890714695399 ], [ -95.000551894864088, 29.460111147838898 ], [ -95.000549895740718, 29.461069147464308 ], [ -94.999305895630982, 29.462042148031163 ], [ -94.997933895085097, 29.461578148472864 ], [ -94.99764289493551, 29.460702147952453 ], [ -94.996134894356189, 29.459116147396131 ], [ -94.995716894310036, 29.458580147703817 ], [ -94.992857893273808, 29.455690147227539 ], [ -94.992400892709028, 29.453101146183066 ], [ -94.990866892220481, 29.453193146223857 ], [ -94.989501892646459, 29.452765146714722 ], [ -94.988644891887105, 29.452144146165168 ], [ -94.987742891938979, 29.44974914569811 ], [ -94.985704891579275, 29.449171145572237 ], [ -94.982332890752616, 29.450228145788799 ], [ -94.979312889356322, 29.451889146953782 ], [ -94.97722388910708, 29.452417147203999 ], [ -94.976280888712935, 29.453010146827324 ], [ -94.976284889058931, 29.453863147025416 ], [ -94.976295889407282, 29.454930147274574 ], [ -94.975107888510578, 29.459178148499412 ], [ -94.973855888914898, 29.460507148771697 ], [ -94.973553888886542, 29.460633148498484 ], [ -94.97289688799296, 29.460898148748907 ], [ -94.97251988812782, 29.461050148294792 ], [ -94.973404888914501, 29.462550149453151 ], [ -94.97385788875944, 29.463315148796255 ], [ -94.973906888425546, 29.463406149247593 ], [ -94.974457888451767, 29.464418149796408 ], [ -94.974690889422618, 29.4649671490568 ], [ -94.974903888836039, 29.465469149654023 ], [ -94.975370888713684, 29.46656915012365 ], [ -94.975616889337303, 29.467081150044571 ], [ -94.975782889339115, 29.467416149708853 ], [ -94.976318889827482, 29.468233150095166 ], [ -94.976731889163474, 29.468735150534389 ], [ -94.977293889543461, 29.469328150564642 ], [ -94.978303889789544, 29.470471150932703 ], [ -94.978487890431126, 29.470697150261959 ], [ -94.978951890276846, 29.471365150653845 ], [ -94.979446890760585, 29.471478150358429 ], [ -94.981956891552002, 29.472049150724676 ], [ -94.985771891901521, 29.472917150765898 ], [ -94.986375892056842, 29.473033151059884 ], [ -94.987029892373684, 29.47315815111223 ], [ -94.987394892375491, 29.473190150843585 ], [ -94.987751892296117, 29.473221150943598 ], [ -94.993439893735328, 29.472335150582332 ], [ -94.997658895587193, 29.471650149744157 ], [ -95.003580896509945, 29.470687149577692 ], [ -95.00686089704655, 29.470175149790101 ], [ -95.010867897995979, 29.469547149198803 ], [ -95.011158898973051, 29.469548149637706 ], [ -95.012158898928092, 29.469505149430869 ], [ -95.012945899175918, 29.469471149329543 ], [ -95.013235898876601, 29.469458148773771 ], [ -95.013954899593486, 29.469427149421424 ], [ -95.014130898848464, 29.469419148940489 ], [ -95.014338899498483, 29.469410149251289 ], [ -95.014741898989897, 29.469367149340378 ], [ -95.015194899111563, 29.469259148901092 ], [ -95.016035899832275, 29.469044149248251 ], [ -95.016619899929935, 29.468900148727837 ], [ -95.018351900047833, 29.468452148433826 ], [ -95.01971290024963, 29.468099148679755 ], [ -95.019805901080886, 29.468076148588683 ], [ -95.021391901284886, 29.467690148374274 ], [ -95.022339901599224, 29.467460148801756 ], [ -95.022811901236125, 29.467342148314714 ], [ -95.02295590104363, 29.467306147960201 ], [ -95.024126901941813, 29.46701414865985 ], [ -95.026551901830388, 29.466410148090596 ], [ -95.027787902238785, 29.466101148307708 ], [ -95.028934903285688, 29.465815147977306 ], [ -95.029262902886998, 29.465727147933443 ], [ -95.031303903210059, 29.465179147503573 ], [ -95.032148903324668, 29.464956147410717 ], [ -95.032731903785603, 29.464803147209423 ], [ -95.033207903964623, 29.464677147484032 ], [ -95.033970904594028, 29.464476147586364 ], [ -95.034319904508379, 29.464385147566979 ], [ -95.034639904814171, 29.464324147631906 ], [ -95.035996905033016, 29.463934147126469 ], [ -95.036777905043081, 29.463774146823912 ], [ -95.037341905357607, 29.463660147026125 ], [ -95.037483905201015, 29.463659147151024 ], [ -95.038827904910576, 29.463628146948107 ], [ -95.039620905535841, 29.463610147226703 ], [ -95.040769905666849, 29.463588147145163 ], [ -95.041960905843197, 29.463565147141676 ], [ -95.043169906275836, 29.46354214696925 ], [ -95.044091906633653, 29.463524147071293 ], [ -95.044315906268224, 29.463521147068693 ], [ -95.046032907113158, 29.463475146797592 ], [ -95.046203907516954, 29.463453147103873 ], [ -95.046277907436249, 29.463442147172213 ], [ -95.046462907202041, 29.463385146931348 ], [ -95.046518907833303, 29.463359146646031 ], [ -95.046652907352225, 29.463264147030756 ], [ -95.047344907059525, 29.462658146619468 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 397, "Tract": "48039660708", "Area_SqMi": 11.615829101838269, "total_2009": 647, "total_2010": 573, "total_2011": 715, "total_2012": 596, "total_2013": 621, "total_2014": 745, "total_2015": 809, "total_2016": 788, "total_2017": 776, "total_2018": 697, "total_2019": 635, "total_2020": 777, "age1": 188, "age2": 441, "age3": 190, "earn1": 152, "earn2": 237, "earn3": 430, "naics_s01": 4, "naics_s02": 0, "naics_s03": 0, "naics_s04": 42, "naics_s05": 78, "naics_s06": 32, "naics_s07": 74, "naics_s08": 5, "naics_s09": 12, "naics_s10": 2, "naics_s11": 11, "naics_s12": 42, "naics_s13": 0, "naics_s14": 50, "naics_s15": 12, "naics_s16": 206, "naics_s17": 4, "naics_s18": 97, "naics_s19": 28, "naics_s20": 120, "race1": 607, "race2": 141, "race3": 6, "race4": 52, "race5": 5, "race6": 8, "ethnicity1": 605, "ethnicity2": 214, "edu1": 125, "edu2": 170, "edu3": 200, "edu4": 136, "Shape_Length": 76382.618610627629, "Shape_Area": 323829434.6690526, "total_2021": 914, "total_2022": 819 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.401187999444815, 29.482614139167076 ], [ -95.400740998555008, 29.482459138715964 ], [ -95.400232998873491, 29.482284139371952 ], [ -95.399405998542775, 29.481998139088823 ], [ -95.398603998091417, 29.481722138759821 ], [ -95.398317998353178, 29.481623139050679 ], [ -95.398342998588205, 29.481564138637484 ], [ -95.393859996796976, 29.480068139028138 ], [ -95.391030995956029, 29.47910413898969 ], [ -95.385383994992921, 29.47718013823852 ], [ -95.378679992737815, 29.474897138299728 ], [ -95.373077991605243, 29.472975138407428 ], [ -95.371781991259326, 29.472532138011434 ], [ -95.370945990860577, 29.472242137607935 ], [ -95.366883989952584, 29.470843137301166 ], [ -95.364557989702078, 29.470049137389111 ], [ -95.363472989231624, 29.469677137668345 ], [ -95.362427988965692, 29.469322137610586 ], [ -95.360412988365155, 29.468635137630987 ], [ -95.359359987754033, 29.4682761378244 ], [ -95.358205987407914, 29.467883137425851 ], [ -95.357148987209371, 29.467523137761166 ], [ -95.356033986626429, 29.467146137032188 ], [ -95.355986986823169, 29.467291137439616 ], [ -95.355759986968522, 29.467810137299058 ], [ -95.355663986882433, 29.468041137641855 ], [ -95.355634987143262, 29.468136137308676 ], [ -95.355313987216491, 29.468950138069388 ], [ -95.355202986874929, 29.469270138168383 ], [ -95.35506198722986, 29.469876137547384 ], [ -95.355032986328396, 29.470042137813547 ], [ -95.354787986876929, 29.472116138400228 ], [ -95.354727986683528, 29.472600138491138 ], [ -95.354661986643748, 29.473216138321565 ], [ -95.354657987107643, 29.47324913868059 ], [ -95.354595986535514, 29.473590138359562 ], [ -95.354531986821712, 29.473891138494977 ], [ -95.354445987247104, 29.474222139118417 ], [ -95.354384987007791, 29.474447138818253 ], [ -95.354296986478445, 29.474676139300364 ], [ -95.35404498696137, 29.47524613903196 ], [ -95.353645986830045, 29.476167139264746 ], [ -95.353315986735169, 29.476852139256959 ], [ -95.353192986340716, 29.477134139125027 ], [ -95.352319986297218, 29.479131139585739 ], [ -95.352009986792936, 29.479829140147924 ], [ -95.351720986516781, 29.480482139900968 ], [ -95.351285986317365, 29.481491140657482 ], [ -95.351017986197888, 29.482109140263535 ], [ -95.350921986601236, 29.482420140841811 ], [ -95.350841985922983, 29.482802141116448 ], [ -95.350799986454447, 29.483123140780311 ], [ -95.350789985942953, 29.483270140945734 ], [ -95.350743985939403, 29.484380141430542 ], [ -95.350675986873824, 29.486783141410882 ], [ -95.350667986670089, 29.487489142099662 ], [ -95.350550986508566, 29.490013142184559 ], [ -95.350531986810282, 29.490282142208049 ], [ -95.350501986191887, 29.4904811420489 ], [ -95.3504059867047, 29.490895142520635 ], [ -95.350324986062532, 29.491163142492262 ], [ -95.350207986071624, 29.491426142966123 ], [ -95.350121986045139, 29.491624142246906 ], [ -95.350008986694533, 29.491849142199889 ], [ -95.349904986526056, 29.492045143047708 ], [ -95.349771986735476, 29.492255142918385 ], [ -95.349648986613829, 29.492413142372421 ], [ -95.349542985924359, 29.492564143222268 ], [ -95.349359985868489, 29.492795142880851 ], [ -95.349119985852113, 29.493047142498604 ], [ -95.347609986377847, 29.494562142863611 ], [ -95.346128986082604, 29.496106143646756 ], [ -95.344740985626871, 29.497542144053831 ], [ -95.344145985560942, 29.49815514446605 ], [ -95.343440984587104, 29.498907144716764 ], [ -95.343077984594032, 29.499259144666503 ], [ -95.342415984591142, 29.499981144235868 ], [ -95.34188698447231, 29.500559144247468 ], [ -95.341455985091557, 29.500992144787819 ], [ -95.341430985045946, 29.501018145104503 ], [ -95.339769984426084, 29.502771144908749 ], [ -95.337787984029461, 29.504847146029764 ], [ -95.337749983615012, 29.504884145805057 ], [ -95.336209983732104, 29.506454146039076 ], [ -95.335382983089616, 29.507296146062398 ], [ -95.334482983515244, 29.508234146818843 ], [ -95.334386982776252, 29.508328146703914 ], [ -95.333691983420223, 29.508914147079008 ], [ -95.333426983237089, 29.509122146312009 ], [ -95.332486982940097, 29.509889146681783 ], [ -95.332114982142386, 29.510184147250424 ], [ -95.331909982444927, 29.510357147404367 ], [ -95.331641982491846, 29.510646146858843 ], [ -95.331409982195993, 29.510908147452803 ], [ -95.331237982643344, 29.511111147378958 ], [ -95.331116982643664, 29.511300147332221 ], [ -95.330971982209149, 29.511524147111153 ], [ -95.330670982855324, 29.512062147100096 ], [ -95.330557982006283, 29.512328147887214 ], [ -95.33049098212247, 29.512536147245971 ], [ -95.330447982067213, 29.512686147859853 ], [ -95.330400982821743, 29.512906147397505 ], [ -95.330364982605929, 29.513037147210497 ], [ -95.330298982377428, 29.51334314811421 ], [ -95.330272982017476, 29.513742147807953 ], [ -95.330264982447943, 29.513873148114691 ], [ -95.330263982855342, 29.514390147528648 ], [ -95.330317982877332, 29.51581314783796 ], [ -95.330325982116534, 29.517017148259946 ], [ -95.330359982503978, 29.518599148817419 ], [ -95.330371982742008, 29.519237148916122 ], [ -95.330378982491069, 29.519936148962628 ], [ -95.330428982455928, 29.523810150087986 ], [ -95.330432982472615, 29.524076150331727 ], [ -95.330445982536844, 29.525072150263149 ], [ -95.330459982875212, 29.526089150510057 ], [ -95.330484983077156, 29.528051150390851 ], [ -95.330495983145752, 29.528621150874546 ], [ -95.330524983081119, 29.530335151302754 ], [ -95.330687982961351, 29.530332150737692 ], [ -95.331413983027844, 29.530319151290243 ], [ -95.332009983893855, 29.530318151349334 ], [ -95.332563983474898, 29.530299150747823 ], [ -95.33408298396651, 29.530284151010488 ], [ -95.334866984577332, 29.530277151183508 ], [ -95.336191984080045, 29.530265150709134 ], [ -95.336841984360504, 29.530251151099318 ], [ -95.338013985021902, 29.530233150932503 ], [ -95.338996984974159, 29.530215150974403 ], [ -95.341056986054099, 29.530199150992292 ], [ -95.341701986376791, 29.530188150476672 ], [ -95.342410985797159, 29.530171150683639 ], [ -95.343836986137077, 29.530153150921379 ], [ -95.347010987219079, 29.530115150802409 ], [ -95.347253987253737, 29.53011915014725 ], [ -95.350566987786067, 29.530061150851832 ], [ -95.352251989124909, 29.5300301507142 ], [ -95.352456988291337, 29.530027150257723 ], [ -95.35282198919127, 29.53002015009297 ], [ -95.354364989087159, 29.52999415007552 ], [ -95.355583989269377, 29.529981150440737 ], [ -95.357097989972999, 29.529954150535595 ], [ -95.358302989962553, 29.529940149742981 ], [ -95.359663990904806, 29.529925150411138 ], [ -95.36082199117827, 29.529913150153483 ], [ -95.361992990707748, 29.529903150116912 ], [ -95.364230991371272, 29.529861149709578 ], [ -95.366270992532733, 29.529839149838317 ], [ -95.366870992363999, 29.529832149885774 ], [ -95.367045992764005, 29.529826149808279 ], [ -95.367402992606785, 29.529884149950902 ], [ -95.367461992620107, 29.529893149996457 ], [ -95.36759799268313, 29.529894149833066 ], [ -95.367758992482095, 29.529899149875558 ], [ -95.368008993083194, 29.529898149892347 ], [ -95.368329992485215, 29.529852149503213 ], [ -95.368728993008219, 29.529775149994197 ], [ -95.369014992442445, 29.529701150050041 ], [ -95.369288992936376, 29.529617150107768 ], [ -95.369450993365362, 29.529560149569864 ], [ -95.369690993516059, 29.529482149299149 ], [ -95.370210993579931, 29.529312150055667 ], [ -95.370424992894755, 29.529255149267222 ], [ -95.370716993008855, 29.529191149189995 ], [ -95.371012993237386, 29.529146150042141 ], [ -95.371237993643192, 29.52912414976695 ], [ -95.371538993696973, 29.529110149986529 ], [ -95.371838993936706, 29.529116149176339 ], [ -95.372063993778681, 29.52913214918452 ], [ -95.372286993501305, 29.529158149901424 ], [ -95.372509994300742, 29.529195149878923 ], [ -95.372728994074222, 29.529241149333952 ], [ -95.372944993702205, 29.529297149471262 ], [ -95.37315699370771, 29.529364149576843 ], [ -95.373483994335146, 29.529486149972914 ], [ -95.373692994375205, 29.529542149467524 ], [ -95.373980994442078, 29.529609149766113 ], [ -95.374292994533675, 29.529666149191872 ], [ -95.374591994757765, 29.529707149457877 ], [ -95.374695994391573, 29.529717149977873 ], [ -95.375210994682959, 29.529730149814451 ], [ -95.375287994755652, 29.529731149818488 ], [ -95.375489994865063, 29.529728149223128 ], [ -95.375543995050933, 29.529726149552161 ], [ -95.375598994781768, 29.5297231496675 ], [ -95.375653994868543, 29.529719149560442 ], [ -95.375712994793972, 29.529715149542582 ], [ -95.375963994322845, 29.529691149745801 ], [ -95.376090994726638, 29.529675149793771 ], [ -95.376158994540319, 29.529662149734033 ], [ -95.376296994908898, 29.529638149097501 ], [ -95.376437994807844, 29.529605149203011 ], [ -95.376511995143488, 29.529588149187454 ], [ -95.376588994374742, 29.529573149587648 ], [ -95.376663995197632, 29.529549149865673 ], [ -95.376736994904306, 29.529530149270041 ], [ -95.37680799480222, 29.529512149710598 ], [ -95.376875994720322, 29.529492149635189 ], [ -95.37693799540078, 29.529475149151899 ], [ -95.37699499529451, 29.529457149215258 ], [ -95.377094995096073, 29.529421149008982 ], [ -95.377301995231747, 29.529302149516319 ], [ -95.377810995050382, 29.52904114970675 ], [ -95.378187994779879, 29.528760149700926 ], [ -95.378747995539754, 29.528340148984704 ], [ -95.378782994993443, 29.528303149593039 ], [ -95.378816995437646, 29.528272148758784 ], [ -95.378997995539763, 29.528113149040372 ], [ -95.379213995456396, 29.527923149045101 ], [ -95.379252995492777, 29.527889149288594 ], [ -95.379365995065044, 29.527789149445503 ], [ -95.379418995407718, 29.527743148979834 ], [ -95.379476995245923, 29.527695148972363 ], [ -95.379539995921547, 29.527644149244338 ], [ -95.379605995487438, 29.527595148974179 ], [ -95.379674995798226, 29.527542148760027 ], [ -95.379748995172193, 29.527485148550706 ], [ -95.379823995130508, 29.527433149360956 ], [ -95.379900995850392, 29.527373149379994 ], [ -95.379970995736784, 29.527321149214419 ], [ -95.379990995728065, 29.527307148953451 ], [ -95.380047995566969, 29.527270149201868 ], [ -95.380131995765225, 29.527222148856744 ], [ -95.380162995669011, 29.527205148807276 ], [ -95.380218995836756, 29.527176148862669 ], [ -95.380353995363379, 29.52711814877015 ], [ -95.380324996139038, 29.527077148497458 ], [ -95.38047299569071, 29.527067149219928 ], [ -95.380648995577474, 29.526992148661737 ], [ -95.380743996062705, 29.52695514926479 ], [ -95.380852995647686, 29.526916149239284 ], [ -95.38099899546161, 29.52687214863646 ], [ -95.381075995906301, 29.526854148632879 ], [ -95.381153995788438, 29.526835148350809 ], [ -95.381234996180254, 29.526816148906008 ], [ -95.381321996075329, 29.526799148841068 ], [ -95.381409995828506, 29.526783148912219 ], [ -95.381499995788872, 29.526771148836168 ], [ -95.381592996438101, 29.526755148744886 ], [ -95.381684995700127, 29.526743148498323 ], [ -95.381773996568228, 29.526734148904449 ], [ -95.381859996586201, 29.526726148583016 ], [ -95.38194699618478, 29.526720148595338 ], [ -95.382027995669205, 29.526714148652839 ], [ -95.382107996600396, 29.526713148857979 ], [ -95.382250996452669, 29.526714149118167 ], [ -95.382382995917268, 29.526720148672226 ], [ -95.382455996263559, 29.526720149001889 ], [ -95.382534995974808, 29.52671914893914 ], [ -95.38261899589051, 29.526717148517989 ], [ -95.382703996442956, 29.526717148455312 ], [ -95.382792996689219, 29.526717149140563 ], [ -95.382883996116803, 29.526714149072301 ], [ -95.382973996125457, 29.526712148287888 ], [ -95.383057996281664, 29.526709148292436 ], [ -95.383334996511422, 29.52669914890377 ], [ -95.384337996451507, 29.526602148268395 ], [ -95.384562996876923, 29.526580148359329 ], [ -95.386033997260341, 29.526438148552309 ], [ -95.386357996896393, 29.526373148235386 ], [ -95.386565997348967, 29.526338148546532 ], [ -95.387040997636987, 29.526215148435689 ], [ -95.387023997263213, 29.525548148323239 ], [ -95.386968996793669, 29.523406148105497 ], [ -95.386951997668831, 29.523118147859403 ], [ -95.38691799707901, 29.522540147724754 ], [ -95.386861997572538, 29.52045614735686 ], [ -95.386915997268403, 29.518915147189752 ], [ -95.387191997188609, 29.516152146527578 ], [ -95.387504996597272, 29.513376145684099 ], [ -95.387635996458755, 29.512318145758581 ], [ -95.387653996892311, 29.512157145276287 ], [ -95.387755996689037, 29.511223145625916 ], [ -95.388016996697331, 29.508708144388724 ], [ -95.388269996920982, 29.506723144741475 ], [ -95.388275996739068, 29.506674143980497 ], [ -95.388590996855243, 29.504124143858078 ], [ -95.388961997070808, 29.502358143863631 ], [ -95.389112996370471, 29.501731143327394 ], [ -95.389441997063287, 29.500604143364658 ], [ -95.390329996661663, 29.498109142828202 ], [ -95.390478997019414, 29.497686142532164 ], [ -95.391555996747599, 29.495434141769412 ], [ -95.39341699745772, 29.492376141267851 ], [ -95.397655998690453, 29.487033140181033 ], [ -95.398387998345783, 29.486109139395435 ], [ -95.398732998349203, 29.485699140094695 ], [ -95.399239998696885, 29.485096139466076 ], [ -95.401187999444815, 29.482614139167076 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 398, "Tract": "48039660805", "Area_SqMi": 1.9635090625108209, "total_2009": 134, "total_2010": 108, "total_2011": 111, "total_2012": 92, "total_2013": 106, "total_2014": 105, "total_2015": 127, "total_2016": 123, "total_2017": 76, "total_2018": 125, "total_2019": 98, "total_2020": 88, "age1": 21, "age2": 59, "age3": 29, "earn1": 27, "earn2": 45, "earn3": 37, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 4, "naics_s06": 0, "naics_s07": 0, "naics_s08": 17, "naics_s09": 1, "naics_s10": 2, "naics_s11": 1, "naics_s12": 8, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 25, "naics_s17": 2, "naics_s18": 0, "naics_s19": 16, "naics_s20": 0, "race1": 72, "race2": 23, "race3": 0, "race4": 12, "race5": 0, "race6": 2, "ethnicity1": 78, "ethnicity2": 31, "edu1": 20, "edu2": 27, "edu3": 21, "edu4": 20, "Shape_Length": 33289.883979917453, "Shape_Area": 54739272.083455071, "total_2021": 97, "total_2022": 109 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.330712983705709, 29.541254153508731 ], [ -95.330701983750146, 29.540592153432247 ], [ -95.330692983689801, 29.54005515340797 ], [ -95.330676983667388, 29.539145152880717 ], [ -95.330656983735764, 29.537900152940598 ], [ -95.330652983762135, 29.537600152353335 ], [ -95.330642983333036, 29.536979152980948 ], [ -95.330616983217851, 29.535681152117281 ], [ -95.330622983315095, 29.535119152373881 ], [ -95.330589983421149, 29.532991152093427 ], [ -95.330579983646714, 29.532395151310968 ], [ -95.330555983583423, 29.531385151272119 ], [ -95.330541982920579, 29.530896151698848 ], [ -95.330524983081119, 29.530335151302754 ], [ -95.330446982786157, 29.530338151313618 ], [ -95.330299983041328, 29.530343151608907 ], [ -95.330018982915888, 29.530346151354628 ], [ -95.328424982250411, 29.53036715165883 ], [ -95.32790898295049, 29.530377151449677 ], [ -95.32508498152464, 29.530430151017338 ], [ -95.323736980956724, 29.530445151736952 ], [ -95.322146980925268, 29.530466151192979 ], [ -95.32102998030139, 29.530479151870303 ], [ -95.320456980222176, 29.530488151898677 ], [ -95.31955498061366, 29.530504151872488 ], [ -95.318999979922367, 29.530510151245846 ], [ -95.314999979332697, 29.53057015208617 ], [ -95.31399297901315, 29.530586151399458 ], [ -95.313643978404173, 29.530589152004026 ], [ -95.313296978667381, 29.530598152263732 ], [ -95.312941978776067, 29.530604151470843 ], [ -95.312353978590565, 29.530614151996723 ], [ -95.311832978642329, 29.530614151842624 ], [ -95.311714978783698, 29.530618151615403 ], [ -95.311113978268892, 29.530631151601916 ], [ -95.310515977940469, 29.530637151566992 ], [ -95.310123977576325, 29.530642151938228 ], [ -95.308599977974083, 29.530661151580677 ], [ -95.305735976420607, 29.530703151705925 ], [ -95.305421976870164, 29.530708152477942 ], [ -95.3038129760494, 29.530728151770813 ], [ -95.30309797624281, 29.530739151828005 ], [ -95.302968976241814, 29.530734151793929 ], [ -95.302284975978637, 29.530735152123906 ], [ -95.301219975950289, 29.530747151815646 ], [ -95.300923975281052, 29.530767152376239 ], [ -95.300713975307858, 29.530769151963788 ], [ -95.297586974656369, 29.530787152746782 ], [ -95.297420974270352, 29.530787151990907 ], [ -95.297427974265958, 29.531088152452366 ], [ -95.29742997488097, 29.531160152212799 ], [ -95.297459975065266, 29.532325152419766 ], [ -95.297484974958977, 29.533362153249779 ], [ -95.297500975218114, 29.534395152830047 ], [ -95.297502974908241, 29.53447915345793 ], [ -95.297511974624541, 29.535030153536873 ], [ -95.297530975101694, 29.536176153378662 ], [ -95.297525975001577, 29.53630715323774 ], [ -95.297540975046303, 29.536966153508423 ], [ -95.297565975438744, 29.538045153841534 ], [ -95.2975799752885, 29.538882154183273 ], [ -95.29761097477521, 29.540766154465871 ], [ -95.297617975470288, 29.540899154779982 ], [ -95.297654975388554, 29.542620155075817 ], [ -95.297699975639745, 29.545294155787658 ], [ -95.297744975828024, 29.547871155483556 ], [ -95.297765975647778, 29.549032155698587 ], [ -95.2977709756331, 29.549413156443407 ], [ -95.298499975595234, 29.549218156245175 ], [ -95.300831976607199, 29.549105156393864 ], [ -95.301748976110943, 29.548762156294163 ], [ -95.303531976739791, 29.547182155186995 ], [ -95.303871976627264, 29.547044155696621 ], [ -95.304228976614979, 29.546833155669038 ], [ -95.30456597725285, 29.546696155739106 ], [ -95.304751976835504, 29.546647155099379 ], [ -95.304940977061307, 29.546630154953782 ], [ -95.305804977325579, 29.546588155297378 ], [ -95.306031977035417, 29.546583155421384 ], [ -95.310092978534172, 29.546496154782986 ], [ -95.313226979537603, 29.546430155360699 ], [ -95.314259979689268, 29.546146154785966 ], [ -95.317550980434788, 29.545241154719619 ], [ -95.318257980498132, 29.544989154866602 ], [ -95.318345980946617, 29.54487415492677 ], [ -95.318362980724217, 29.544852154150647 ], [ -95.318547980510559, 29.541851153573958 ], [ -95.318678980339158, 29.541599154185359 ], [ -95.319019980478899, 29.54146115366693 ], [ -95.330712983705709, 29.541254153508731 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 399, "Tract": "48039660613", "Area_SqMi": 2.7477087227072379, "total_2009": 23, "total_2010": 25, "total_2011": 34, "total_2012": 49, "total_2013": 55, "total_2014": 1083, "total_2015": 1195, "total_2016": 1211, "total_2017": 793, "total_2018": 1424, "total_2019": 2009, "total_2020": 1300, "age1": 274, "age2": 608, "age3": 181, "earn1": 111, "earn2": 178, "earn3": 774, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 991, "naics_s05": 0, "naics_s06": 0, "naics_s07": 1, "naics_s08": 11, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 40, "naics_s17": 0, "naics_s18": 3, "naics_s19": 14, "naics_s20": 0, "race1": 923, "race2": 91, "race3": 25, "race4": 9, "race5": 0, "race6": 15, "ethnicity1": 570, "ethnicity2": 493, "edu1": 228, "edu2": 231, "edu3": 235, "edu4": 95, "Shape_Length": 36231.797100770535, "Shape_Area": 76601416.438598901, "total_2021": 1602, "total_2022": 1063 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.443398011646252, 29.5102161430029 ], [ -95.443333011211692, 29.510217143162549 ], [ -95.443231010677451, 29.510219142854456 ], [ -95.443086011565782, 29.510224143439096 ], [ -95.442835011401698, 29.51023314370412 ], [ -95.44254501115411, 29.510257142937938 ], [ -95.442358010839754, 29.510346143510809 ], [ -95.442229010924407, 29.51041414355387 ], [ -95.442114010465815, 29.510487143383273 ], [ -95.441014010256836, 29.510531143521103 ], [ -95.440887010805227, 29.510536143477388 ], [ -95.439047010179081, 29.510570143878901 ], [ -95.437470009794694, 29.510604143952182 ], [ -95.435798008834723, 29.510641143854222 ], [ -95.435026008673532, 29.510650143566849 ], [ -95.433235008476544, 29.510670144157331 ], [ -95.433046008961227, 29.510689144142869 ], [ -95.432804008569931, 29.51071414420144 ], [ -95.432462008569999, 29.51081714422855 ], [ -95.431681007715312, 29.511125144219189 ], [ -95.431164008553196, 29.511290143799723 ], [ -95.430810008092692, 29.511346143927561 ], [ -95.430266007302649, 29.511345144328079 ], [ -95.429046007533202, 29.511387144093277 ], [ -95.427590006874624, 29.511414144011077 ], [ -95.424616006009458, 29.511468144027244 ], [ -95.424509006314622, 29.511470143798608 ], [ -95.423989006034276, 29.511480144541473 ], [ -95.423289005536461, 29.511499144467251 ], [ -95.422045006184007, 29.511529144476143 ], [ -95.421040005284098, 29.511554144012241 ], [ -95.42029800565571, 29.511581144558367 ], [ -95.41963900481764, 29.511579144081843 ], [ -95.417520005017863, 29.51163614404874 ], [ -95.416457004023286, 29.511683144250778 ], [ -95.416211004707904, 29.511694144315005 ], [ -95.416162004214584, 29.511696144343116 ], [ -95.416174004603292, 29.512186144650297 ], [ -95.416207004444189, 29.512965144434371 ], [ -95.416231004729738, 29.513754144922991 ], [ -95.416265004847986, 29.514563144796085 ], [ -95.416285004866708, 29.51535714527251 ], [ -95.416305004009857, 29.515762145693756 ], [ -95.416316004578704, 29.516164145239273 ], [ -95.416342004549136, 29.516953145499183 ], [ -95.416370004436246, 29.517750145776333 ], [ -95.416381004396726, 29.518107146001476 ], [ -95.416400004262044, 29.518532145953866 ], [ -95.416414004256779, 29.519101146375593 ], [ -95.416596005234823, 29.526206147532108 ], [ -95.416692005096067, 29.528863148148211 ], [ -95.416697004641236, 29.529001148008067 ], [ -95.416705005478832, 29.529320147834422 ], [ -95.41671900512361, 29.529923148189411 ], [ -95.416758005097961, 29.530607148568215 ], [ -95.41679000481885, 29.531739148409205 ], [ -95.41679800532745, 29.532474149185919 ], [ -95.416802005354583, 29.532620148999285 ], [ -95.416864005136134, 29.534682149534717 ], [ -95.416865005129083, 29.534717148947436 ], [ -95.416881005031158, 29.534999149612915 ], [ -95.416889005507059, 29.535149149020786 ], [ -95.416891005399549, 29.535258149216546 ], [ -95.416995005837606, 29.53900214991533 ], [ -95.417000005815396, 29.539171150133672 ], [ -95.417063006042184, 29.540479150046878 ], [ -95.417064005778613, 29.540488150620632 ], [ -95.417068005275752, 29.540572150615528 ], [ -95.417045006223333, 29.540728150753672 ], [ -95.417183005360229, 29.540725150743455 ], [ -95.417346006201811, 29.5407221507309 ], [ -95.41896600648758, 29.540693150768647 ], [ -95.420034006666668, 29.540663149909772 ], [ -95.421199006816721, 29.540637150617108 ], [ -95.422565007140307, 29.540610150013304 ], [ -95.423293007530248, 29.540583150510045 ], [ -95.423574007749579, 29.540573150435105 ], [ -95.424209007799945, 29.540559150408345 ], [ -95.424632007850633, 29.540549149905797 ], [ -95.425411007651547, 29.540532149672753 ], [ -95.425987008343995, 29.540520150255492 ], [ -95.426566008608702, 29.540507149801819 ], [ -95.427572008016753, 29.540471150236542 ], [ -95.427866008635192, 29.540464149690806 ], [ -95.429459009113828, 29.540432150316065 ], [ -95.430587008692839, 29.540407150252744 ], [ -95.43080000921519, 29.540399149787905 ], [ -95.431274009089734, 29.540381149513905 ], [ -95.431726009948804, 29.540325149818692 ], [ -95.431924009850903, 29.540292149534196 ], [ -95.432365010093775, 29.540167149577254 ], [ -95.432676009656717, 29.540082150108084 ], [ -95.432948010058155, 29.540016149413599 ], [ -95.433131010280718, 29.539977149537872 ], [ -95.433539010180468, 29.53994514984635 ], [ -95.433723009809327, 29.539937149284594 ], [ -95.433935010349771, 29.53993714941338 ], [ -95.434855010332669, 29.539936149792588 ], [ -95.434987010220624, 29.539936149890206 ], [ -95.435312010628309, 29.539930150078078 ], [ -95.436284010117021, 29.53637614883775 ], [ -95.436440010626399, 29.535800148609525 ], [ -95.436848010572348, 29.534307148137142 ], [ -95.437248010464359, 29.532832147772339 ], [ -95.437279010524762, 29.532725148071545 ], [ -95.437784011046432, 29.530880147479639 ], [ -95.438080010897878, 29.529794147244523 ], [ -95.438177010668625, 29.529438147081226 ], [ -95.438257010409146, 29.529153147244958 ], [ -95.438277010809728, 29.529064147472457 ], [ -95.439273010724804, 29.525424146176427 ], [ -95.439379011133752, 29.525035146391268 ], [ -95.439499010413812, 29.524599146468983 ], [ -95.439548011079893, 29.524415146712141 ], [ -95.439612010504334, 29.524181145847237 ], [ -95.439644010557572, 29.524062146377389 ], [ -95.439725010442103, 29.523766146598515 ], [ -95.439933010831069, 29.523005145800298 ], [ -95.439939011215728, 29.522981145679648 ], [ -95.439946011179401, 29.522955145612716 ], [ -95.439960010334545, 29.522904145650958 ], [ -95.440174010347548, 29.522122145776361 ], [ -95.440189010361848, 29.522067145486012 ], [ -95.440193010520971, 29.522051145996137 ], [ -95.44032301092939, 29.521577146028321 ], [ -95.440429011235977, 29.521183145241324 ], [ -95.44047801054748, 29.521006145522364 ], [ -95.440640010939475, 29.520412145312243 ], [ -95.440647011101944, 29.520388145598126 ], [ -95.440655010421082, 29.520357145851996 ], [ -95.440759010441951, 29.5199791451717 ], [ -95.440857010970319, 29.519615145356717 ], [ -95.440868011294015, 29.519576145409005 ], [ -95.440875010788488, 29.519550145275101 ], [ -95.440881011143219, 29.519531145175094 ], [ -95.44094201050315, 29.519305145617487 ], [ -95.441063010793684, 29.518865144728441 ], [ -95.441089011351465, 29.518765145002813 ], [ -95.441115010794704, 29.518672144798337 ], [ -95.441217011410401, 29.518298145429604 ], [ -95.442086011343804, 29.51511514409048 ], [ -95.442371011287733, 29.514072144019067 ], [ -95.442763010789889, 29.51263614373573 ], [ -95.442760011203845, 29.512597143849348 ], [ -95.443398011646252, 29.5102161430029 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 400, "Tract": "48039660504", "Area_SqMi": 2.0651077443265549, "total_2009": 142, "total_2010": 141, "total_2011": 106, "total_2012": 102, "total_2013": 140, "total_2014": 159, "total_2015": 122, "total_2016": 123, "total_2017": 130, "total_2018": 105, "total_2019": 106, "total_2020": 103, "age1": 20, "age2": 69, "age3": 39, "earn1": 25, "earn2": 33, "earn3": 70, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 49, "naics_s05": 18, "naics_s06": 5, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 2, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 18, "naics_s19": 11, "naics_s20": 8, "race1": 113, "race2": 7, "race3": 1, "race4": 3, "race5": 1, "race6": 3, "ethnicity1": 67, "ethnicity2": 61, "edu1": 31, "edu2": 23, "edu3": 36, "edu4": 18, "Shape_Length": 40413.785853490022, "Shape_Area": 57571669.444595948, "total_2021": 119, "total_2022": 128 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.337132987577718, 29.58801816307879 ], [ -95.337093986911782, 29.583113161405361 ], [ -95.336887987048812, 29.583107161574759 ], [ -95.336862987342158, 29.582061161757451 ], [ -95.33686998670278, 29.582021161860681 ], [ -95.336888987427756, 29.581925161214826 ], [ -95.336897986728317, 29.581880161785442 ], [ -95.333781986653293, 29.581924161973053 ], [ -95.333758986229583, 29.580545161687834 ], [ -95.33365298632279, 29.580295161012998 ], [ -95.330792985850636, 29.580273161546213 ], [ -95.330786985465139, 29.580662161834493 ], [ -95.330638985027079, 29.580650161388103 ], [ -95.3306509854891, 29.581033161339068 ], [ -95.330692985338928, 29.582344161857332 ], [ -95.330668985871284, 29.583389162436706 ], [ -95.327766984439506, 29.583422162442542 ], [ -95.327570984393446, 29.583431162376403 ], [ -95.327575984868417, 29.583942162617817 ], [ -95.327604984462809, 29.584641162549936 ], [ -95.327608984704412, 29.584770162293914 ], [ -95.327621985243823, 29.585231162979618 ], [ -95.327629984848016, 29.585396162719466 ], [ -95.327549985027133, 29.585398163021448 ], [ -95.327496985130892, 29.585398163040438 ], [ -95.324390984375512, 29.58543716235523 ], [ -95.324298983981663, 29.585437162725754 ], [ -95.321244983126419, 29.585501162925809 ], [ -95.321265983127418, 29.586353162591042 ], [ -95.321203982777831, 29.586353162648933 ], [ -95.318378982758432, 29.586404162898127 ], [ -95.314885981093738, 29.586454163000028 ], [ -95.314884981385646, 29.586298163561441 ], [ -95.314879981625424, 29.586202163309082 ], [ -95.314755981946263, 29.586202162917463 ], [ -95.311805981192563, 29.586211163314406 ], [ -95.311625980544662, 29.586211163143634 ], [ -95.30830398026329, 29.58622816324791 ], [ -95.308287979979752, 29.585541163258927 ], [ -95.308266980254274, 29.584710162948344 ], [ -95.308236979718103, 29.584711162936578 ], [ -95.30815297953113, 29.584707162702333 ], [ -95.304939978773163, 29.584741163467346 ], [ -95.301555978306837, 29.584777163772365 ], [ -95.301563978191766, 29.58510416353527 ], [ -95.301571978097414, 29.585455163067905 ], [ -95.30145697757635, 29.585457163074395 ], [ -95.298015977584129, 29.585531163217571 ], [ -95.295000976643578, 29.585597163603602 ], [ -95.294998976232137, 29.586487163900593 ], [ -95.295025976549994, 29.588041164459909 ], [ -95.295040976695702, 29.588780164378822 ], [ -95.295089976202675, 29.588917164857012 ], [ -95.295206976916802, 29.589316164095678 ], [ -95.295461976797057, 29.59010416460594 ], [ -95.295501976992369, 29.590283164895339 ], [ -95.295676976727307, 29.590874164921669 ], [ -95.296050977177643, 29.592105164763236 ], [ -95.296274976914219, 29.592843164756815 ], [ -95.296322977347302, 29.593031165105518 ], [ -95.296509976857777, 29.593648165467066 ], [ -95.297019976874012, 29.595290166020799 ], [ -95.297417977762166, 29.596527165659278 ], [ -95.297515978038007, 29.596522166127716 ], [ -95.297583977718276, 29.596537165608861 ], [ -95.29786197767163, 29.59667516553635 ], [ -95.29801097717754, 29.596749165939045 ], [ -95.298367978047693, 29.596926165773358 ], [ -95.298459977828685, 29.596984165630438 ], [ -95.298489977702843, 29.596987165869766 ], [ -95.298601978164569, 29.597043166143965 ], [ -95.298709977518001, 29.597010165546997 ], [ -95.298965977600602, 29.596932165989163 ], [ -95.299136977806683, 29.596879166000651 ], [ -95.299197977923683, 29.59686216632738 ], [ -95.299721977855029, 29.596127165532781 ], [ -95.300330978590765, 29.596127165793874 ], [ -95.300935978428498, 29.59593116579822 ], [ -95.301321978865559, 29.595807165554639 ], [ -95.301655978136708, 29.595674165385081 ], [ -95.301787978947331, 29.595609165474706 ], [ -95.301808978227655, 29.595601165648887 ], [ -95.302098978226681, 29.595504165390224 ], [ -95.302209978906205, 29.595484165642933 ], [ -95.302517979072263, 29.595430165767034 ], [ -95.302938978968726, 29.595356165932035 ], [ -95.303946978917821, 29.595179165042428 ], [ -95.305753979096323, 29.595243165521719 ], [ -95.306386980111142, 29.595191165367911 ], [ -95.307890980018215, 29.59502116541347 ], [ -95.308493980077685, 29.594936165237169 ], [ -95.308654980268358, 29.594921165272947 ], [ -95.309755980842581, 29.595042165292089 ], [ -95.311096981352605, 29.595777165300795 ], [ -95.311242981032137, 29.595856165685809 ], [ -95.311347980776134, 29.595914165640199 ], [ -95.311566981581137, 29.596034165175272 ], [ -95.311899981037882, 29.596215165231158 ], [ -95.312244981795274, 29.596410165122485 ], [ -95.312902981732279, 29.596838165551858 ], [ -95.313608981963071, 29.597299165265799 ], [ -95.314708981785046, 29.598013165957333 ], [ -95.315164981707142, 29.598079165346963 ], [ -95.316270982265735, 29.598253165509881 ], [ -95.316319982688555, 29.598247165785661 ], [ -95.317204983035879, 29.598036165273019 ], [ -95.31751898274598, 29.597961165283792 ], [ -95.317886983181893, 29.597931165473021 ], [ -95.318000982562339, 29.597929165846317 ], [ -95.318024982970613, 29.597897165239264 ], [ -95.318052983002502, 29.597902165122552 ], [ -95.318080983146231, 29.597908165212871 ], [ -95.31812298308742, 29.597919165297867 ], [ -95.318150982427696, 29.597927165770777 ], [ -95.31819098289634, 29.59794016538595 ], [ -95.31823398297054, 29.597953165396675 ], [ -95.318264983210611, 29.597963165805321 ], [ -95.318315983114871, 29.597983165357952 ], [ -95.318348982561545, 29.597997165638038 ], [ -95.318398982980995, 29.598020165361739 ], [ -95.318444983018153, 29.598044165315251 ], [ -95.318476983244366, 29.598063165290963 ], [ -95.31852298288706, 29.598092165351254 ], [ -95.318561983320592, 29.59812016575226 ], [ -95.31860698284305, 29.598155165695815 ], [ -95.318641982621372, 29.598173165817911 ], [ -95.318676983443879, 29.598191165959097 ], [ -95.318711983131521, 29.59820816584994 ], [ -95.31877198308031, 29.59823616541437 ], [ -95.318818982661668, 29.598256165721374 ], [ -95.318854982934397, 29.59827016539673 ], [ -95.318892983081568, 29.598285165236366 ], [ -95.318920983201537, 29.598298165709434 ], [ -95.318947983353326, 29.598310165532769 ], [ -95.318986983386964, 29.598325165776618 ], [ -95.319029982692456, 29.59833816550201 ], [ -95.319070982902986, 29.598348165546966 ], [ -95.319112983654037, 29.598355165399447 ], [ -95.319164982884132, 29.598360165501138 ], [ -95.319195983225299, 29.598361165610633 ], [ -95.319240983600864, 29.598360165938921 ], [ -95.319300983535186, 29.598354165360316 ], [ -95.319331983082719, 29.598349165965455 ], [ -95.319378983103334, 29.598339165217489 ], [ -95.319419983560124, 29.598327165971263 ], [ -95.319461983407024, 29.598311165386907 ], [ -95.319506983476302, 29.598292165460219 ], [ -95.31954998299662, 29.598275165964068 ], [ -95.319604983255985, 29.598275165265832 ], [ -95.319705983164155, 29.598231165154036 ], [ -95.32127198413076, 29.597197165446381 ], [ -95.321504984154487, 29.59705416502263 ], [ -95.321557984000847, 29.597020165516167 ], [ -95.322083983906197, 29.596697164962404 ], [ -95.322228983485843, 29.596669165502909 ], [ -95.322303984102874, 29.59666916472473 ], [ -95.322448984366233, 29.596730164687518 ], [ -95.322894984227233, 29.596873165104569 ], [ -95.323209984070701, 29.597016165361456 ], [ -95.323360984663537, 29.597170165370219 ], [ -95.323486984433259, 29.597351165279711 ], [ -95.323555983778547, 29.597433164898014 ], [ -95.323681983899164, 29.59751016549696 ], [ -95.32384598474323, 29.597560165587602 ], [ -95.324329984440382, 29.597648165628577 ], [ -95.324734984587579, 29.597818165376353 ], [ -95.324820984815531, 29.59784816558107 ], [ -95.324947984512775, 29.597893164983194 ], [ -95.325336985098332, 29.598022165240955 ], [ -95.325366984250948, 29.598033165580642 ], [ -95.325429984545394, 29.598051165719831 ], [ -95.325461984616737, 29.598057164894353 ], [ -95.325484984403687, 29.598061165578095 ], [ -95.325509984603926, 29.59806316572304 ], [ -95.32555198467027, 29.598065165196431 ], [ -95.325582984554472, 29.598064165204441 ], [ -95.325629984865515, 29.598060165340872 ], [ -95.325678984915939, 29.598056165320564 ], [ -95.325954984378342, 29.598016165422457 ], [ -95.326099985269849, 29.598007164833817 ], [ -95.326158984824048, 29.597997165390144 ], [ -95.326219984928358, 29.597991164819877 ], [ -95.326286985217592, 29.597985165606037 ], [ -95.326343985172215, 29.597981165675009 ], [ -95.326410985052505, 29.597978165205546 ], [ -95.326466985526238, 29.597976165272456 ], [ -95.326528985222126, 29.597974164857291 ], [ -95.326589984991188, 29.597977165075189 ], [ -95.326658985216454, 29.597972164832303 ], [ -95.326940984645645, 29.598000164843388 ], [ -95.327482985528405, 29.598055165583489 ], [ -95.327883985280863, 29.598093165573978 ], [ -95.32799498546828, 29.598104165362916 ], [ -95.328141985728564, 29.598118165335784 ], [ -95.328183985012672, 29.598121165069411 ], [ -95.328231985772291, 29.598125165426183 ], [ -95.328332985696264, 29.598138165293129 ], [ -95.328419985853103, 29.598153164917807 ], [ -95.328506986059423, 29.598173165521409 ], [ -95.328584985673004, 29.598194164796546 ], [ -95.328798985135521, 29.598285165439393 ], [ -95.329007985789644, 29.598372164939523 ], [ -95.329144986150524, 29.598452164817765 ], [ -95.329333985588207, 29.598570165692646 ], [ -95.329461986131378, 29.598639165160815 ], [ -95.329548986338779, 29.598697165696141 ], [ -95.329594985626898, 29.598728164963671 ], [ -95.329682986108068, 29.598796165126441 ], [ -95.329723985640825, 29.59884316498108 ], [ -95.32975698558667, 29.598865164962948 ], [ -95.329768986301985, 29.598879164900186 ], [ -95.329799985820941, 29.598907165389715 ], [ -95.329825986435395, 29.598928165396739 ], [ -95.329868986029751, 29.598958165109913 ], [ -95.329906986462461, 29.598980165026326 ], [ -95.329924986337986, 29.598989165108012 ], [ -95.329960985615401, 29.599005165740728 ], [ -95.329997986413588, 29.599019165441899 ], [ -95.330045985639032, 29.599032165143473 ], [ -95.33012398593263, 29.599052165108468 ], [ -95.330176986156857, 29.599063165230522 ], [ -95.330237985640053, 29.599075165612909 ], [ -95.330312986314709, 29.599086165276336 ], [ -95.330391985778746, 29.599094165642477 ], [ -95.330601986143662, 29.599099164944992 ], [ -95.330714986154021, 29.599105165707776 ], [ -95.330827986443865, 29.599112165685877 ], [ -95.330939986321496, 29.599121165623824 ], [ -95.331152986283001, 29.599113165113415 ], [ -95.331330985928304, 29.599074164851991 ], [ -95.331646986897439, 29.599109165229031 ], [ -95.331669986708746, 29.599103165485346 ], [ -95.331729986065127, 29.599105165488027 ], [ -95.331761986335437, 29.599097165674689 ], [ -95.331793986357454, 29.599088165641142 ], [ -95.331908986074907, 29.599069165431011 ], [ -95.331946986342587, 29.599064165511031 ], [ -95.33199598605762, 29.59905416553886 ], [ -95.332055985995666, 29.599038165318042 ], [ -95.332125986503655, 29.599013165695336 ], [ -95.332169986317979, 29.598993165534107 ], [ -95.332223986722795, 29.59896416507415 ], [ -95.332264986599938, 29.59893916555653 ], [ -95.332312986469375, 29.59887716527102 ], [ -95.332381986950764, 29.598840165421262 ], [ -95.332466986191577, 29.598742165515148 ], [ -95.332511986234849, 29.598692164828382 ], [ -95.332587986623466, 29.598611165376077 ], [ -95.332650986547847, 29.598546164839437 ], [ -95.332722986741189, 29.598475165133053 ], [ -95.332780986382971, 29.598419164721676 ], [ -95.332807986943678, 29.598395165138811 ], [ -95.332840986978169, 29.598368165100794 ], [ -95.332876987142143, 29.598343164657472 ], [ -95.332941986276538, 29.598305164768799 ], [ -95.333010986675944, 29.598274164936161 ], [ -95.333072986928059, 29.598247165386965 ], [ -95.333127987182095, 29.598240164912742 ], [ -95.333194987046056, 29.598222165183408 ], [ -95.333269986643529, 29.59820716504451 ], [ -95.333320986787257, 29.598190164730752 ], [ -95.333424986736347, 29.598156164690547 ], [ -95.333443986739056, 29.5981501651525 ], [ -95.333489986908887, 29.598154164753026 ], [ -95.333525986587645, 29.598132164743802 ], [ -95.333575986383195, 29.59812916507245 ], [ -95.333622986903436, 29.598108165238642 ], [ -95.333675987016534, 29.598077165271697 ], [ -95.33373198720291, 29.598044164946444 ], [ -95.333792986536338, 29.597999164631595 ], [ -95.333846987157173, 29.597948165338948 ], [ -95.333889986684525, 29.597880165261518 ], [ -95.333925986719649, 29.597841165273831 ], [ -95.333977987221274, 29.59777016477971 ], [ -95.334002986496529, 29.597723164970983 ], [ -95.334039987378489, 29.597688165219559 ], [ -95.334099987404443, 29.597601164858997 ], [ -95.334224986571954, 29.597499165099119 ], [ -95.33424198683403, 29.597486165182712 ], [ -95.334310986616529, 29.597430164959544 ], [ -95.334436987507132, 29.597228164677361 ], [ -95.3346199869342, 29.597000164409607 ], [ -95.33479198689912, 29.596786165113709 ], [ -95.334860986902655, 29.596671164229445 ], [ -95.334905987620417, 29.596565164815104 ], [ -95.334952987036573, 29.596452164542288 ], [ -95.334979987029712, 29.596415164557726 ], [ -95.335021987476637, 29.59636216421686 ], [ -95.335062986774076, 29.596301164579717 ], [ -95.33511598688942, 29.596264164638807 ], [ -95.335186987691856, 29.596210164149991 ], [ -95.335278987448717, 29.59615316414946 ], [ -95.335363987461278, 29.596108164371753 ], [ -95.335423986794282, 29.596080164721574 ], [ -95.335497986772666, 29.596051164711863 ], [ -95.335734986826608, 29.595959164461416 ], [ -95.335772987523299, 29.595946164563774 ], [ -95.335801987668958, 29.595937164481054 ], [ -95.336159987270605, 29.595818164661463 ], [ -95.336200987246983, 29.595801164724435 ], [ -95.336237987697103, 29.59578016454584 ], [ -95.336271987133074, 29.595754164189024 ], [ -95.336326987529276, 29.595711164073865 ], [ -95.336378987593122, 29.595676164654986 ], [ -95.336437987727805, 29.595645164564846 ], [ -95.336649987217029, 29.595544164073932 ], [ -95.336837987570959, 29.595445164566755 ], [ -95.33673698783511, 29.591669163834677 ], [ -95.336637987596433, 29.588024162920206 ], [ -95.336804986747836, 29.588023163066342 ], [ -95.337005987726087, 29.588020163010953 ], [ -95.337132987577718, 29.58801816307879 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 401, "Tract": "48039660707", "Area_SqMi": 1.6098347963518878, "total_2009": 152, "total_2010": 83, "total_2011": 291, "total_2012": 146, "total_2013": 220, "total_2014": 240, "total_2015": 221, "total_2016": 154, "total_2017": 184, "total_2018": 204, "total_2019": 205, "total_2020": 166, "age1": 48, "age2": 89, "age3": 32, "earn1": 54, "earn2": 52, "earn3": 63, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 3, "naics_s06": 20, "naics_s07": 9, "naics_s08": 59, "naics_s09": 4, "naics_s10": 3, "naics_s11": 0, "naics_s12": 25, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 19, "naics_s17": 0, "naics_s18": 0, "naics_s19": 5, "naics_s20": 0, "race1": 101, "race2": 51, "race3": 2, "race4": 13, "race5": 0, "race6": 2, "ethnicity1": 109, "ethnicity2": 60, "edu1": 28, "edu2": 30, "edu3": 36, "edu4": 27, "Shape_Length": 31733.193854973557, "Shape_Area": 44879438.862500198, "total_2021": 139, "total_2022": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.368008993444178, 29.539379152106321 ], [ -95.367869992837811, 29.538774151665113 ], [ -95.367800992583682, 29.538561151650963 ], [ -95.367718992492641, 29.538351151996398 ], [ -95.367589993237431, 29.538078151219569 ], [ -95.367546993005092, 29.537998151415419 ], [ -95.367439992683074, 29.537814151179038 ], [ -95.367126992358891, 29.53734715130761 ], [ -95.367052992940302, 29.537274151781613 ], [ -95.366872992426906, 29.537097151179221 ], [ -95.366686993104238, 29.536863151327371 ], [ -95.366441992837053, 29.536410150834833 ], [ -95.366217992756873, 29.535926150748946 ], [ -95.366115992232693, 29.535612151224775 ], [ -95.366032992344969, 29.535370150628342 ], [ -95.365900992256073, 29.534527150911906 ], [ -95.365888992631227, 29.534256151182252 ], [ -95.365882992355566, 29.534117151010335 ], [ -95.365889992468183, 29.533715150780939 ], [ -95.365944992455823, 29.533357150229861 ], [ -95.365987992035357, 29.53308015019093 ], [ -95.366059991809806, 29.532830150630179 ], [ -95.366173992825765, 29.532440150027089 ], [ -95.366437992340153, 29.531824150539457 ], [ -95.366551992642499, 29.531514150254456 ], [ -95.366635992919868, 29.531252149911261 ], [ -95.366685991894613, 29.531070150499449 ], [ -95.366701992698538, 29.531011150408887 ], [ -95.366744991894464, 29.530829150305333 ], [ -95.366761992817402, 29.530756150051104 ], [ -95.366826992656058, 29.53040715009346 ], [ -95.366859992548001, 29.529965149927794 ], [ -95.366870992363999, 29.529832149885774 ], [ -95.366270992532733, 29.529839149838317 ], [ -95.364230991371272, 29.529861149709578 ], [ -95.361992990707748, 29.529903150116912 ], [ -95.36082199117827, 29.529913150153483 ], [ -95.359663990904806, 29.529925150411138 ], [ -95.358302989962553, 29.529940149742981 ], [ -95.357097989972999, 29.529954150535595 ], [ -95.355583989269377, 29.529981150440737 ], [ -95.354364989087159, 29.52999415007552 ], [ -95.35282198919127, 29.53002015009297 ], [ -95.352456988291337, 29.530027150257723 ], [ -95.352251989124909, 29.5300301507142 ], [ -95.350566987786067, 29.530061150851832 ], [ -95.347253987253737, 29.53011915014725 ], [ -95.347010987219079, 29.530115150802409 ], [ -95.343836986137077, 29.530153150921379 ], [ -95.342410985797159, 29.530171150683639 ], [ -95.341701986376791, 29.530188150476672 ], [ -95.341056986054099, 29.530199150992292 ], [ -95.338996984974159, 29.530215150974403 ], [ -95.338013985021902, 29.530233150932503 ], [ -95.336841984360504, 29.530251151099318 ], [ -95.336191984080045, 29.530265150709134 ], [ -95.334866984577332, 29.530277151183508 ], [ -95.33408298396651, 29.530284151010488 ], [ -95.332563983474898, 29.530299150747823 ], [ -95.332009983893855, 29.530318151349334 ], [ -95.331413983027844, 29.530319151290243 ], [ -95.330687982961351, 29.530332150737692 ], [ -95.330524983081119, 29.530335151302754 ], [ -95.330541982920579, 29.530896151698848 ], [ -95.330555983583423, 29.531385151272119 ], [ -95.330579983646714, 29.532395151310968 ], [ -95.330589983421149, 29.532991152093427 ], [ -95.330622983315095, 29.535119152373881 ], [ -95.330616983217851, 29.535681152117281 ], [ -95.330642983333036, 29.536979152980948 ], [ -95.330652983762135, 29.537600152353335 ], [ -95.330656983735764, 29.537900152940598 ], [ -95.330676983667388, 29.539145152880717 ], [ -95.330692983689801, 29.54005515340797 ], [ -95.330701983750146, 29.540592153432247 ], [ -95.330712983705709, 29.541254153508731 ], [ -95.337250985081567, 29.541136153016105 ], [ -95.339140985624027, 29.541102153524076 ], [ -95.343018986453984, 29.540988152511154 ], [ -95.347456987831677, 29.540959152801392 ], [ -95.347464988363214, 29.541510152862845 ], [ -95.347476988073112, 29.54221115343519 ], [ -95.349770988280369, 29.542168153291264 ], [ -95.350078989014648, 29.542165153175596 ], [ -95.351789988698258, 29.54215515274003 ], [ -95.352530989560393, 29.542126152600289 ], [ -95.35301498937271, 29.542063152503044 ], [ -95.353350989301703, 29.542003152625334 ], [ -95.353729989733964, 29.541922152934884 ], [ -95.354400989725008, 29.541727152532587 ], [ -95.355435989693405, 29.541366152495886 ], [ -95.356635990644904, 29.540948152361644 ], [ -95.356772989994766, 29.540900152562344 ], [ -95.359781991045111, 29.539846152139457 ], [ -95.359966991309662, 29.53978415227202 ], [ -95.36273199130197, 29.538970151827002 ], [ -95.362839991859204, 29.538949151693107 ], [ -95.363327991619386, 29.538856151407526 ], [ -95.363706991581495, 29.538829151538209 ], [ -95.363761991558604, 29.538826151878105 ], [ -95.364005991995327, 29.538809152006817 ], [ -95.36481499255521, 29.538849151933789 ], [ -95.365221991886429, 29.538905151995696 ], [ -95.365618992355124, 29.538996151757125 ], [ -95.366593992482606, 29.539255152194038 ], [ -95.366842992723278, 29.539290152191594 ], [ -95.367067993054917, 29.539322151617785 ], [ -95.368008993444178, 29.539379152106321 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 402, "Tract": "48039661901", "Area_SqMi": 62.111539495187813, "total_2009": 519, "total_2010": 523, "total_2011": 771, "total_2012": 779, "total_2013": 809, "total_2014": 723, "total_2015": 752, "total_2016": 792, "total_2017": 956, "total_2018": 984, "total_2019": 994, "total_2020": 961, "age1": 143, "age2": 641, "age3": 245, "earn1": 89, "earn2": 132, "earn3": 808, "naics_s01": 1, "naics_s02": 0, "naics_s03": 100, "naics_s04": 81, "naics_s05": 190, "naics_s06": 20, "naics_s07": 19, "naics_s08": 354, "naics_s09": 12, "naics_s10": 0, "naics_s11": 56, "naics_s12": 3, "naics_s13": 0, "naics_s14": 7, "naics_s15": 102, "naics_s16": 51, "naics_s17": 1, "naics_s18": 0, "naics_s19": 0, "naics_s20": 32, "race1": 868, "race2": 107, "race3": 8, "race4": 33, "race5": 0, "race6": 13, "ethnicity1": 770, "ethnicity2": 259, "edu1": 158, "edu2": 242, "edu3": 282, "edu4": 204, "Shape_Length": 194621.60550861867, "Shape_Area": 1731563416.1635628, "total_2021": 990, "total_2022": 1029 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.591004041147002, 29.326538100670906 ], [ -95.590924040570741, 29.326401100381009 ], [ -95.589448040300766, 29.325837100214617 ], [ -95.588762040365623, 29.325576100871412 ], [ -95.587953040493431, 29.325001100491416 ], [ -95.587317039771079, 29.323873100193378 ], [ -95.586720039446703, 29.320848099567439 ], [ -95.586508039874161, 29.319590099751451 ], [ -95.585972039710057, 29.31891709952427 ], [ -95.584737038861945, 29.318409098962444 ], [ -95.58462703856074, 29.318364098795989 ], [ -95.58103103835478, 29.318132099613369 ], [ -95.580561037424843, 29.318059098795839 ], [ -95.579911037255826, 29.317842099268361 ], [ -95.579505037391172, 29.31751909891268 ], [ -95.579508037739515, 29.31694709883903 ], [ -95.579683037685356, 29.316600099351799 ], [ -95.579796037465272, 29.316377098660986 ], [ -95.580573038023076, 29.315665099029594 ], [ -95.581798037883573, 29.315134098688283 ], [ -95.58335003810933, 29.314212098160564 ], [ -95.583837038924869, 29.313281098152832 ], [ -95.584172038722429, 29.31264309784418 ], [ -95.584173038758948, 29.312454097599414 ], [ -95.584180038612516, 29.311000097362509 ], [ -95.583985038045853, 29.309213096905864 ], [ -95.583103037816912, 29.307541097100895 ], [ -95.582581037736006, 29.307005096967483 ], [ -95.581690038126624, 29.30656309722352 ], [ -95.581634037768339, 29.306539097285707 ], [ -95.580158037563393, 29.305930097165113 ], [ -95.578929037411569, 29.305315096864735 ], [ -95.578093036381318, 29.304700096457196 ], [ -95.577258036208178, 29.304024096039626 ], [ -95.577029036332846, 29.30334909605644 ], [ -95.576979036329078, 29.302723095918722 ], [ -95.577088036114063, 29.302363095829033 ], [ -95.577232036338373, 29.302003096486537 ], [ -95.577555036844331, 29.301613095517641 ], [ -95.577987036455113, 29.301051095799089 ], [ -95.578595036818569, 29.300755095928352 ], [ -95.579113036999587, 29.300773095714945 ], [ -95.579630037328144, 29.30091609606815 ], [ -95.580432036816376, 29.301264096056034 ], [ -95.581838037659892, 29.302037095711754 ], [ -95.582604037784748, 29.302431095752802 ], [ -95.583388037773844, 29.302685096091619 ], [ -95.583995038444868, 29.302687096377998 ], [ -95.584584038275921, 29.302674095857906 ], [ -95.584978038550119, 29.302550096061253 ], [ -95.585426038309905, 29.302270095646616 ], [ -95.58569503813608, 29.301824096101917 ], [ -95.586078038806974, 29.300722095501275 ], [ -95.586379038281876, 29.299398094918466 ], [ -95.586631038372488, 29.298717094663726 ], [ -95.58671903897806, 29.298479094803323 ], [ -95.587486039083657, 29.297404094775903 ], [ -95.588705038555489, 29.295396094325103 ], [ -95.589131039414127, 29.294183093795287 ], [ -95.589499039609223, 29.293026093930873 ], [ -95.589599039397442, 29.29271309377031 ], [ -95.589774038899094, 29.291389093806078 ], [ -95.5898210390245, 29.290358093559387 ], [ -95.589323038586301, 29.289253093013823 ], [ -95.58861303876597, 29.288551092688415 ], [ -95.587736038204227, 29.287885092528715 ], [ -95.586732038449497, 29.287329093020876 ], [ -95.586106037765262, 29.286701092477113 ], [ -95.585857037855874, 29.286185092657973 ], [ -95.585776037466857, 29.285596092755558 ], [ -95.585779037728415, 29.284970091977907 ], [ -95.585908038052963, 29.284382092583435 ], [ -95.58633203800072, 29.283463091928933 ], [ -95.587179038268474, 29.281811091676079 ], [ -95.587226038305573, 29.281579091320737 ], [ -95.587394038257557, 29.280744090992819 ], [ -95.58714603830613, 29.279897090979944 ], [ -95.586395037587224, 29.279121090712074 ], [ -95.584388037499664, 29.278083090649179 ], [ -95.583008036592602, 29.277268090934928 ], [ -95.582340036927334, 29.276677090504496 ], [ -95.581674035978693, 29.275754090357378 ], [ -95.581053036450101, 29.274059090071919 ], [ -95.58059903613902, 29.272659089998118 ], [ -95.579933035480096, 29.271736089537455 ], [ -95.579348035366152, 29.27129208936076 ], [ -95.578845035549804, 29.271180089653999 ], [ -95.578342035077284, 29.271141090054989 ], [ -95.578006035780774, 29.271287089350817 ], [ -95.577837035318012, 29.271470089662493 ], [ -95.577583035302382, 29.271948089917476 ], [ -95.577371035250181, 29.27253609036833 ], [ -95.577284035468111, 29.273161090054465 ], [ -95.577279035664333, 29.273971090364373 ], [ -95.577276034961258, 29.274670090701331 ], [ -95.576974035344719, 29.276288090770475 ], [ -95.576761035407372, 29.27706009069399 ], [ -95.576381035468046, 29.277611090748323 ], [ -95.576044034950741, 29.277793091495809 ], [ -95.575666035363938, 29.277865090761114 ], [ -95.575164034717417, 29.277679091474958 ], [ -95.574830034245281, 29.277384091030893 ], [ -95.574289034615518, 29.276682091231876 ], [ -95.573916033951662, 29.27572409104048 ], [ -95.573338034148151, 29.273992090833016 ], [ -95.573012034248706, 29.272187090054977 ], [ -95.573274034037766, 29.270128089876238 ], [ -95.57399803376552, 29.267959089546636 ], [ -95.574592034364358, 29.266526089002017 ], [ -95.575185034438917, 29.265388088497847 ], [ -95.575527034388415, 29.264101087959098 ], [ -95.575532034339545, 29.262997088054959 ], [ -95.575330033971724, 29.261524087432655 ], [ -95.574959034228442, 29.260308087819372 ], [ -95.574544033930025, 29.259460087467634 ], [ -95.574169034099143, 29.259054087692025 ], [ -95.573709033946088, 29.258757087611521 ], [ -95.572997033647965, 29.258681087675107 ], [ -95.57236803332917, 29.258715087185326 ], [ -95.571905033365937, 29.25904508751951 ], [ -95.571400032591185, 29.259374087517017 ], [ -95.570978033384961, 29.260072087754619 ], [ -95.570723032816801, 29.260623087507309 ], [ -95.57067803323352, 29.261285088247813 ], [ -95.570674032625178, 29.261984087581606 ], [ -95.570796033274561, 29.262721088183724 ], [ -95.570918032957493, 29.263494088659613 ], [ -95.571081032880372, 29.264378088064536 ], [ -95.57107903305743, 29.264856088956599 ], [ -95.571035033427833, 29.265187088327252 ], [ -95.570865032966253, 29.26555508839192 ], [ -95.570570033126742, 29.265848088921501 ], [ -95.570150032966794, 29.26606708928556 ], [ -95.569730033210007, 29.266176088503975 ], [ -95.569017032284464, 29.266173088498775 ], [ -95.567928032844293, 29.266095088927333 ], [ -95.566378032474105, 29.265868089023837 ], [ -95.565248032094857, 29.265459089232479 ], [ -95.564496031406122, 29.264977088481519 ], [ -95.563661031440333, 29.264201089110706 ], [ -95.563245031397528, 29.263647088625493 ], [ -95.563247030825849, 29.263206088131188 ], [ -95.563255031516874, 29.263173088953074 ], [ -95.56341803070066, 29.262507088017234 ], [ -95.564012031518473, 29.261258088182245 ], [ -95.565109031497087, 29.259864087396988 ], [ -95.566204031648795, 29.25898508748659 ], [ -95.568306031943152, 29.257707087306095 ], [ -95.569106032702678, 29.25704608722652 ], [ -95.569361032830301, 29.2565690865482 ], [ -95.56940503209367, 29.256127087084906 ], [ -95.569071032752547, 29.255721087007981 ], [ -95.568570032037414, 29.255351086884339 ], [ -95.568110031801524, 29.255165086646517 ], [ -95.566770031809227, 29.254866086268606 ], [ -95.56488403082713, 29.254784086803198 ], [ -95.562487030544176, 29.254547086383237 ], [ -95.561797030119237, 29.254372086663 ], [ -95.561130030209625, 29.254076086334909 ], [ -95.560665029607705, 29.253487086359751 ], [ -95.560667030559813, 29.253150086863211 ], [ -95.560668029851371, 29.252900086829452 ], [ -95.560827030201409, 29.252523086663544 ], [ -95.560939029836618, 29.252256086596205 ], [ -95.561243030601091, 29.251814086269565 ], [ -95.561545030217374, 29.251378086384378 ], [ -95.561910030707239, 29.2505870858697 ], [ -95.561730029800387, 29.250585086083721 ], [ -95.561507030217342, 29.250580085882827 ], [ -95.559868029949044, 29.250593086146282 ], [ -95.559688029390216, 29.250748085655296 ], [ -95.559236029493633, 29.251104086199216 ], [ -95.558928029423953, 29.251234086268621 ], [ -95.558565029409195, 29.251364085904619 ], [ -95.557978029755688, 29.25145908615643 ], [ -95.556733028483393, 29.251501086532269 ], [ -95.554359028062834, 29.251546086005753 ], [ -95.548107026861501, 29.251688086610695 ], [ -95.545134026232077, 29.251750086463741 ], [ -95.543574025473831, 29.25178608667402 ], [ -95.542066025249994, 29.251810086952236 ], [ -95.53802902415346, 29.25189608675046 ], [ -95.536080023291078, 29.251942086969031 ], [ -95.53159902265854, 29.252025086871555 ], [ -95.531440022756115, 29.252014086941752 ], [ -95.531214022877137, 29.251991086891682 ], [ -95.530979022351801, 29.251939087033254 ], [ -95.530776022782703, 29.251882086988861 ], [ -95.53058402268438, 29.251812087513123 ], [ -95.530389022694024, 29.25171408759422 ], [ -95.530224022524692, 29.251618086826596 ], [ -95.530141022256174, 29.251558087454818 ], [ -95.529780022231677, 29.251680087115787 ], [ -95.529587021923007, 29.25186608744734 ], [ -95.528916022293657, 29.252511087321363 ], [ -95.528778022327913, 29.25260808739813 ], [ -95.528649022323904, 29.252753087408081 ], [ -95.528513021345972, 29.252753087614778 ], [ -95.527655021242495, 29.252771087503589 ], [ -95.526593021353008, 29.252792087673832 ], [ -95.525709020634665, 29.252820087712838 ], [ -95.523826020730141, 29.252862087550614 ], [ -95.520412019310953, 29.252985087692895 ], [ -95.519838019797461, 29.25303208752857 ], [ -95.518744019753925, 29.253109087802407 ], [ -95.518408018892728, 29.253131087740748 ], [ -95.518065018889629, 29.253144088034784 ], [ -95.517675019564493, 29.253149087614531 ], [ -95.517312019103386, 29.253129088050915 ], [ -95.517086019126282, 29.253129088034793 ], [ -95.516642018604784, 29.253126087573953 ], [ -95.515949018373135, 29.253105088082574 ], [ -95.515464018041399, 29.253098088333275 ], [ -95.515312018249517, 29.253101088198711 ], [ -95.514980018022356, 29.253105088055353 ], [ -95.514560018395144, 29.253120088205975 ], [ -95.514100018025601, 29.253144087597526 ], [ -95.513756018161402, 29.253169087623238 ], [ -95.513230018310793, 29.253195088250187 ], [ -95.512757017662281, 29.253224088068936 ], [ -95.512267017771975, 29.253262088540883 ], [ -95.511992017199503, 29.253295088070271 ], [ -95.511751017553578, 29.253347088031969 ], [ -95.511507017687748, 29.253423088373502 ], [ -95.510759017410024, 29.253726088071573 ], [ -95.51049101771541, 29.253812088084395 ], [ -95.510130017082702, 29.253864088481752 ], [ -95.509974017446524, 29.253869088170635 ], [ -95.509580016750121, 29.253863087881168 ], [ -95.509039017335681, 29.253837088586373 ], [ -95.508819016468337, 29.253764088265331 ], [ -95.50873301713554, 29.253735088479626 ], [ -95.508513016945884, 29.253671088746316 ], [ -95.508242017098652, 29.25359708858662 ], [ -95.50793001693016, 29.253495088333572 ], [ -95.50749501644006, 29.253456088424013 ], [ -95.506975016667795, 29.253425088044509 ], [ -95.506727015816239, 29.253407088589253 ], [ -95.506277015793501, 29.253366088427036 ], [ -95.505635015848554, 29.253337088136973 ], [ -95.505387016076014, 29.253331087966803 ], [ -95.504879015329593, 29.253340088630061 ], [ -95.504251015758683, 29.253359088336254 ], [ -95.503978015467581, 29.253372088723403 ], [ -95.503034015162854, 29.253415088441059 ], [ -95.501649014783951, 29.253473088602846 ], [ -95.500877015295401, 29.253490088477371 ], [ -95.499981014764515, 29.253504088621415 ], [ -95.498492014370711, 29.253518088232649 ], [ -95.496641013713159, 29.253580088450189 ], [ -95.496440013721269, 29.253570088889074 ], [ -95.488425011664333, 29.253697088689925 ], [ -95.485505010931874, 29.253745089459866 ], [ -95.484535010260544, 29.253763088935269 ], [ -95.482779009763576, 29.253789089163302 ], [ -95.4807060097055, 29.253784089020499 ], [ -95.478385009001613, 29.253827088999483 ], [ -95.476532009069203, 29.253875089473848 ], [ -95.470931007588561, 29.253953089757836 ], [ -95.470348006739968, 29.253961089538052 ], [ -95.463412005076293, 29.254100089991049 ], [ -95.461858004502332, 29.254117089654422 ], [ -95.460215004545304, 29.254148090250766 ], [ -95.459665004767487, 29.254126090172075 ], [ -95.459323004399621, 29.254085089904951 ], [ -95.45949400410376, 29.253250090152257 ], [ -95.459606004538117, 29.252816089545028 ], [ -95.459711004200045, 29.252413089834523 ], [ -95.459919003803122, 29.251661089419727 ], [ -95.460389004166913, 29.250137089500143 ], [ -95.461216004512707, 29.24760208881866 ], [ -95.460209004556575, 29.247632088826339 ], [ -95.457575004002933, 29.247728088894071 ], [ -95.455950003193436, 29.247786089209729 ], [ -95.453740002108248, 29.247867089060797 ], [ -95.453499002157812, 29.247875088485543 ], [ -95.453257002213221, 29.247882088620319 ], [ -95.452725002060404, 29.247891089276635 ], [ -95.446806000776093, 29.248086089449679 ], [ -95.447994001256106, 29.253684090302951 ], [ -95.449087001769811, 29.258562091530919 ], [ -95.449249001678794, 29.259285091570767 ], [ -95.44945000192827, 29.260181091833793 ], [ -95.449645002297146, 29.26105109181853 ], [ -95.449785001926841, 29.261668092070757 ], [ -95.448478001986956, 29.263751092370942 ], [ -95.447285001402179, 29.265622092907453 ], [ -95.446617001532076, 29.266645092719259 ], [ -95.443980000855873, 29.270755093759515 ], [ -95.440694999891207, 29.275841094894734 ], [ -95.439704000434347, 29.277362095305573 ], [ -95.438480000009406, 29.279279095576637 ], [ -95.437381000207893, 29.28098409601191 ], [ -95.436008999553749, 29.283112097001048 ], [ -95.434960999237873, 29.284728097303876 ], [ -95.434779999486068, 29.28501409719091 ], [ -95.43417699868867, 29.285964097220084 ], [ -95.431182998086527, 29.290590098066971 ], [ -95.430062998717915, 29.292341098598197 ], [ -95.429451998445685, 29.293269099457838 ], [ -95.428756997614684, 29.294458099356014 ], [ -95.428082997781587, 29.29578809942295 ], [ -95.427949997866435, 29.296051099611528 ], [ -95.427410998316375, 29.297294100305962 ], [ -95.426928997375569, 29.298474099814261 ], [ -95.42642099784284, 29.300028100629223 ], [ -95.426247997262067, 29.30064210072775 ], [ -95.426013997675383, 29.301607100845061 ], [ -95.425699997799114, 29.302951100891946 ], [ -95.425529997507638, 29.303958101641772 ], [ -95.425389997936392, 29.305047101230105 ], [ -95.425300998053643, 29.306147102267488 ], [ -95.425242997924542, 29.307083101761894 ], [ -95.425234997985626, 29.308244102023394 ], [ -95.425267997533425, 29.309290102220444 ], [ -95.425287997739105, 29.3099341026325 ], [ -95.425463998111383, 29.317573104248549 ], [ -95.425593998575948, 29.323050105420638 ], [ -95.425708999088016, 29.326517105622564 ], [ -95.42575299887487, 29.327903106231833 ], [ -95.425893999436397, 29.334203107438462 ], [ -95.42594499885638, 29.33644310834076 ], [ -95.425986999347359, 29.337831108597801 ], [ -95.426026999544575, 29.339171108871383 ], [ -95.426049998916426, 29.340912108758481 ], [ -95.42605599993864, 29.341214108845886 ], [ -95.426057998978123, 29.34130310885849 ], [ -95.426062999354158, 29.341545108934529 ], [ -95.426069998948535, 29.34187710923997 ], [ -95.426073999500062, 29.342043109256746 ], [ -95.426130999497204, 29.342947109736595 ], [ -95.426260999760828, 29.344957110235647 ], [ -95.426445999652842, 29.347689110681653 ], [ -95.426492000104503, 29.348166110370158 ], [ -95.426517000312316, 29.348527110560923 ], [ -95.426588999750464, 29.349570110807775 ], [ -95.42666000026486, 29.350614111371094 ], [ -95.426701999562042, 29.35122811071885 ], [ -95.426712000515352, 29.351380110834086 ], [ -95.426733000367989, 29.351680111579736 ], [ -95.426742999946143, 29.351822111163475 ], [ -95.426762999606964, 29.352109111015949 ], [ -95.427295999946381, 29.352119111465171 ], [ -95.427706999869358, 29.352127111497289 ], [ -95.427920000359151, 29.352135111407943 ], [ -95.428520000716958, 29.352159111601839 ], [ -95.428891001065594, 29.352173111301525 ], [ -95.42915200117362, 29.352167111326633 ], [ -95.430995001422048, 29.352128111455077 ], [ -95.431112001520304, 29.352126111122452 ], [ -95.43114000077297, 29.352125111312944 ], [ -95.432131001606621, 29.35209911143647 ], [ -95.433360002182752, 29.352067111378531 ], [ -95.440659003453661, 29.351940110580067 ], [ -95.441686004087543, 29.351931111064875 ], [ -95.445478004352381, 29.351850110309098 ], [ -95.445504005333135, 29.351849110236856 ], [ -95.447981005625095, 29.351802110593656 ], [ -95.448333005442237, 29.351795110920779 ], [ -95.448686006106001, 29.351789110095822 ], [ -95.450311005920355, 29.351759110786691 ], [ -95.450736006009606, 29.351778110525522 ], [ -95.450958006328023, 29.351806110726741 ], [ -95.451313006128203, 29.351889110892113 ], [ -95.45172300634853, 29.352053110897387 ], [ -95.452025006804504, 29.35222311034526 ], [ -95.452296006668774, 29.352433110795303 ], [ -95.45295200686634, 29.353111110731987 ], [ -95.453139006720562, 29.353290110372626 ], [ -95.45342100704292, 29.353560110692641 ], [ -95.453646007060087, 29.353723111155958 ], [ -95.453924007346998, 29.353880110849595 ], [ -95.454062007507773, 29.353943111166039 ], [ -95.454179007089451, 29.353997111060654 ], [ -95.454447007117608, 29.354089111205788 ], [ -95.454690007174364, 29.354161111162107 ], [ -95.454900007291215, 29.354180110636754 ], [ -95.455140007113442, 29.354196110681052 ], [ -95.455443007158351, 29.354197111147098 ], [ -95.455508007805335, 29.354195111099965 ], [ -95.457271008392425, 29.354145110287543 ], [ -95.459060008032793, 29.354088111031288 ], [ -95.459579008913508, 29.354083110299481 ], [ -95.460884008790927, 29.354036110823703 ], [ -95.462077009247324, 29.35398511034413 ], [ -95.46225000947905, 29.354002110805808 ], [ -95.462392008748765, 29.354028110914712 ], [ -95.462440009621005, 29.354025110718823 ], [ -95.462676009664662, 29.354010110767646 ], [ -95.462837009674331, 29.354029110584161 ], [ -95.463551009866606, 29.354005110285609 ], [ -95.4666890100155, 29.353888110691354 ], [ -95.467551010603302, 29.353859110159171 ], [ -95.468448010876642, 29.353819110705974 ], [ -95.470202010831116, 29.353755109880701 ], [ -95.471513011477839, 29.353706109955276 ], [ -95.472366012233891, 29.353680110114553 ], [ -95.47397501180302, 29.353632110272759 ], [ -95.475587012265436, 29.353583109630744 ], [ -95.475966012330048, 29.353572110048002 ], [ -95.476269012929976, 29.353535110185231 ], [ -95.476567013267541, 29.353520109643981 ], [ -95.478259013632737, 29.353486109583905 ], [ -95.480934013828232, 29.353424109358929 ], [ -95.483470014536579, 29.353365109265109 ], [ -95.485224015075275, 29.353328109560692 ], [ -95.487547015680178, 29.353281109155851 ], [ -95.488131015753851, 29.353269109905714 ], [ -95.489683016227062, 29.353237109907987 ], [ -95.490995016868297, 29.353211109122856 ], [ -95.491670016913304, 29.353192109679878 ], [ -95.493991016812203, 29.353127109714222 ], [ -95.49754701845518, 29.353050108975552 ], [ -95.498386018020184, 29.353034109527755 ], [ -95.503507019526225, 29.352947109024825 ], [ -95.505227020308268, 29.352909108633341 ], [ -95.505481020340994, 29.352903109283542 ], [ -95.506790020353833, 29.352876108501956 ], [ -95.507093020880973, 29.352870108640985 ], [ -95.50779102039067, 29.352855108847486 ], [ -95.509730021543263, 29.352846109056518 ], [ -95.51042502175406, 29.35284410911876 ], [ -95.513307022534207, 29.352751108181483 ], [ -95.516845023300093, 29.35268510820541 ], [ -95.518282023369167, 29.352694108592786 ], [ -95.518514023546786, 29.352703108472557 ], [ -95.519495024121639, 29.352744108788848 ], [ -95.520907024559094, 29.352802108703425 ], [ -95.522480024344134, 29.352952108349601 ], [ -95.527552025736938, 29.35349010830042 ], [ -95.53138102680343, 29.353929108112315 ], [ -95.53370402710361, 29.354166108215544 ], [ -95.534787027296332, 29.354277107819986 ], [ -95.535780028245355, 29.354274108335289 ], [ -95.537313028416023, 29.354270107799525 ], [ -95.539523028636225, 29.35422610813621 ], [ -95.540478029024897, 29.354221108035368 ], [ -95.541538029128745, 29.354210108344759 ], [ -95.541989030044618, 29.354199108264059 ], [ -95.542960030089318, 29.354151108298804 ], [ -95.543371030155313, 29.354112108063156 ], [ -95.544693030408155, 29.35391510807835 ], [ -95.545331030885166, 29.353747107500197 ], [ -95.54618203019335, 29.353496108031052 ], [ -95.546992030761302, 29.353195107696976 ], [ -95.547797030899829, 29.352859107125802 ], [ -95.548295030825585, 29.352631107048285 ], [ -95.548790031286813, 29.352407106917546 ], [ -95.549257031064172, 29.35220010739733 ], [ -95.549909031738963, 29.351912106903534 ], [ -95.550805032170459, 29.351498106799152 ], [ -95.55114103168286, 29.35135210671422 ], [ -95.551521032089198, 29.35118710709159 ], [ -95.55210803226035, 29.350972107138322 ], [ -95.5525220326127, 29.350863106794264 ], [ -95.553769032936131, 29.350586107097698 ], [ -95.554827033202812, 29.350523107162154 ], [ -95.555441033102142, 29.350498106647024 ], [ -95.556240032837351, 29.350490106343553 ], [ -95.55741403351351, 29.350456106985256 ], [ -95.558122033590848, 29.350458106833532 ], [ -95.564030035199409, 29.350353106462659 ], [ -95.566873035999379, 29.350299106642424 ], [ -95.57037103695113, 29.350211105986272 ], [ -95.574816038145855, 29.350089106109742 ], [ -95.578716038993434, 29.350005105676551 ], [ -95.581394039031466, 29.349928105756618 ], [ -95.582261040157803, 29.349916105941713 ], [ -95.582322039492254, 29.349915105383094 ], [ -95.582464039313891, 29.349913105462932 ], [ -95.582647040330585, 29.349910105308091 ], [ -95.582646040159617, 29.349867105875362 ], [ -95.582617039292757, 29.348575105659744 ], [ -95.582178039405918, 29.347523105554814 ], [ -95.581350039194035, 29.346186104604119 ], [ -95.579217038532832, 29.343732104316665 ], [ -95.578844038975944, 29.342868104616748 ], [ -95.578770038269695, 29.342122104081273 ], [ -95.578962038746624, 29.341114103767424 ], [ -95.579207038147274, 29.340625104090137 ], [ -95.579605038145374, 29.340134104190032 ], [ -95.58118903900781, 29.339124103998785 ], [ -95.583029039277989, 29.33844510307463 ], [ -95.583808039717582, 29.338159103625937 ], [ -95.584432039893258, 29.337930103245878 ], [ -95.585014039533178, 29.337716103074165 ], [ -95.585593039687211, 29.337522103295857 ], [ -95.585817040065621, 29.337447102998436 ], [ -95.587194040927642, 29.336909102931788 ], [ -95.588307040682679, 29.3359131028886 ], [ -95.589113040448126, 29.334625102433918 ], [ -95.589435041114115, 29.332430102229246 ], [ -95.589399040297025, 29.330474101172896 ], [ -95.589510040358192, 29.329838101299714 ], [ -95.589667040970738, 29.329375101299469 ], [ -95.589772040785761, 29.329066101215151 ], [ -95.59049804092335, 29.327868100856417 ], [ -95.590800040769082, 29.32749010100375 ], [ -95.590820041247866, 29.327392100534698 ], [ -95.591004041147002, 29.326538100670906 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 403, "Tract": "48039660611", "Area_SqMi": 1.4389860283371301, "total_2009": 70, "total_2010": 119, "total_2011": 144, "total_2012": 36, "total_2013": 53, "total_2014": 52, "total_2015": 282, "total_2016": 75, "total_2017": 115, "total_2018": 188, "total_2019": 250, "total_2020": 139, "age1": 62, "age2": 104, "age3": 19, "earn1": 70, "earn2": 62, "earn3": 53, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 1, "naics_s06": 5, "naics_s07": 47, "naics_s08": 3, "naics_s09": 3, "naics_s10": 0, "naics_s11": 6, "naics_s12": 14, "naics_s13": 1, "naics_s14": 6, "naics_s15": 12, "naics_s16": 33, "naics_s17": 12, "naics_s18": 34, "naics_s19": 4, "naics_s20": 0, "race1": 99, "race2": 47, "race3": 5, "race4": 29, "race5": 0, "race6": 5, "ethnicity1": 134, "ethnicity2": 51, "edu1": 20, "edu2": 34, "edu3": 36, "edu4": 33, "Shape_Length": 31125.02145886164, "Shape_Area": 40116467.620837606, "total_2021": 156, "total_2022": 185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.435312010628309, 29.539930150078078 ], [ -95.434987010220624, 29.539936149890206 ], [ -95.434855010332669, 29.539936149792588 ], [ -95.433935010349771, 29.53993714941338 ], [ -95.433723009809327, 29.539937149284594 ], [ -95.433539010180468, 29.53994514984635 ], [ -95.433131010280718, 29.539977149537872 ], [ -95.432948010058155, 29.540016149413599 ], [ -95.432676009656717, 29.540082150108084 ], [ -95.432365010093775, 29.540167149577254 ], [ -95.431924009850903, 29.540292149534196 ], [ -95.431726009948804, 29.540325149818692 ], [ -95.431274009089734, 29.540381149513905 ], [ -95.43080000921519, 29.540399149787905 ], [ -95.430587008692839, 29.540407150252744 ], [ -95.429459009113828, 29.540432150316065 ], [ -95.427866008635192, 29.540464149690806 ], [ -95.427572008016753, 29.540471150236542 ], [ -95.426566008608702, 29.540507149801819 ], [ -95.425987008343995, 29.540520150255492 ], [ -95.425411007651547, 29.540532149672753 ], [ -95.424632007850633, 29.540549149905797 ], [ -95.424209007799945, 29.540559150408345 ], [ -95.423574007749579, 29.540573150435105 ], [ -95.423293007530248, 29.540583150510045 ], [ -95.422565007140307, 29.540610150013304 ], [ -95.421199006816721, 29.540637150617108 ], [ -95.420034006666668, 29.540663149909772 ], [ -95.41896600648758, 29.540693150768647 ], [ -95.417346006201811, 29.5407221507309 ], [ -95.417183005360229, 29.540725150743455 ], [ -95.417045006223333, 29.540728150753672 ], [ -95.416826005326485, 29.540734150503525 ], [ -95.412935004844627, 29.540834150220839 ], [ -95.411556004816688, 29.540869150328206 ], [ -95.408552003493639, 29.540924151050575 ], [ -95.405996002975073, 29.540971150858756 ], [ -95.404871002676913, 29.540992150976681 ], [ -95.404029002196367, 29.54101215057003 ], [ -95.402209001981419, 29.541053151256474 ], [ -95.400759001660845, 29.541086151304832 ], [ -95.400529001862495, 29.541091151293038 ], [ -95.400369001114157, 29.541095151328861 ], [ -95.400374001152855, 29.541259150925207 ], [ -95.40041200204081, 29.542873151383411 ], [ -95.400428002003821, 29.54335515139611 ], [ -95.400444001820006, 29.54394315177824 ], [ -95.400465001553712, 29.544663151467443 ], [ -95.400516001637101, 29.546183152364041 ], [ -95.400736002050763, 29.546177151731808 ], [ -95.401086001880643, 29.546167152002521 ], [ -95.401327001887836, 29.546180152511564 ], [ -95.401568002025542, 29.546203151871346 ], [ -95.401837001725369, 29.546222152431312 ], [ -95.402128002257186, 29.546222152109987 ], [ -95.402409001875611, 29.546202151610974 ], [ -95.402696002387259, 29.546172152011241 ], [ -95.402914002178846, 29.546149151980433 ], [ -95.403244002766286, 29.546096151590945 ], [ -95.403545002711425, 29.546040152396337 ], [ -95.403859003004058, 29.545971152060002 ], [ -95.404093002688612, 29.545908151846717 ], [ -95.404344002857258, 29.545835152360745 ], [ -95.404618002785739, 29.545749151746126 ], [ -95.40496200291588, 29.545620151973036 ], [ -95.405295002844156, 29.545498152169731 ], [ -95.405625003193379, 29.545389152032129 ], [ -95.405847003423887, 29.545340152175918 ], [ -95.406045002777574, 29.545313152112513 ], [ -95.406130003384277, 29.545302151717642 ], [ -95.406326002761205, 29.54527715204388 ], [ -95.406699003324078, 29.545254152139108 ], [ -95.406996003375099, 29.545244151608362 ], [ -95.407250003474687, 29.545251152026953 ], [ -95.40742900355697, 29.545274152108306 ], [ -95.40766300320972, 29.545320151946878 ], [ -95.407878003392099, 29.5453931517916 ], [ -95.408102003147931, 29.545492151742774 ], [ -95.408337004121762, 29.545627151523632 ], [ -95.408528003519578, 29.545776151569832 ], [ -95.408642003727863, 29.545896151866575 ], [ -95.408717003376239, 29.545974151518028 ], [ -95.408839003689465, 29.546139151509564 ], [ -95.408941003785515, 29.546317152089543 ], [ -95.409030003520982, 29.546535151633936 ], [ -95.409070003468841, 29.546681151557088 ], [ -95.40910300425378, 29.546938152358695 ], [ -95.409126004103115, 29.547708152546541 ], [ -95.40913300408441, 29.547860151993504 ], [ -95.409156003619813, 29.548074151882801 ], [ -95.409195003608602, 29.548233152677753 ], [ -95.409265004168077, 29.54841115198257 ], [ -95.40933400447075, 29.548547152228775 ], [ -95.409420004336951, 29.548689152430704 ], [ -95.409590003751191, 29.548934152647689 ], [ -95.409813004729997, 29.548833151917659 ], [ -95.410391004714526, 29.548640152591918 ], [ -95.410738004034357, 29.548602152397422 ], [ -95.411177004168863, 29.548586152449992 ], [ -95.411278004843354, 29.548582152567107 ], [ -95.411519005015165, 29.54859515257581 ], [ -95.412009004580156, 29.548630151951293 ], [ -95.412728005074456, 29.548762152366809 ], [ -95.413125005295157, 29.548968152189957 ], [ -95.413402004746757, 29.549129152212007 ], [ -95.413621004898957, 29.549257152149714 ], [ -95.413999005580337, 29.549661152216309 ], [ -95.414134004877923, 29.549807152391221 ], [ -95.414289005556256, 29.550037152703126 ], [ -95.414844005495183, 29.550818152167057 ], [ -95.415103006051524, 29.551103153017081 ], [ -95.415343005810541, 29.551289152771538 ], [ -95.415491005898147, 29.551395152751692 ], [ -95.415767005447606, 29.551548152557132 ], [ -95.416133006326106, 29.551690152570238 ], [ -95.416449006085088, 29.551778152414897 ], [ -95.416683005984481, 29.551770152514823 ], [ -95.416960006062979, 29.551773152919715 ], [ -95.417363006583017, 29.551750152992522 ], [ -95.417374006711398, 29.552076152504451 ], [ -95.41738900630439, 29.552527152456985 ], [ -95.417444006192852, 29.554247153281036 ], [ -95.417473006678776, 29.555156153435675 ], [ -95.417475006907665, 29.555217153802914 ], [ -95.417477006092611, 29.55531415386703 ], [ -95.417877006452883, 29.555305153798606 ], [ -95.423504008113113, 29.555181153193498 ], [ -95.425799008854341, 29.555122153194091 ], [ -95.42706500906867, 29.555090152948026 ], [ -95.429798009327271, 29.555021152721928 ], [ -95.43081900954158, 29.554995152844601 ], [ -95.43110200986483, 29.554991152555637 ], [ -95.431175009661231, 29.554990152628022 ], [ -95.431193009698688, 29.554926153299586 ], [ -95.431398009607165, 29.554140153024427 ], [ -95.43171700982667, 29.552923152813182 ], [ -95.431943009771871, 29.552060152115462 ], [ -95.431955009861568, 29.552014152154744 ], [ -95.431980009837588, 29.551919152159591 ], [ -95.432189010499968, 29.551117152190969 ], [ -95.432192010363281, 29.551105152320922 ], [ -95.432344010181453, 29.550527152348376 ], [ -95.43247301010382, 29.550034152290021 ], [ -95.432560009637271, 29.54970315191683 ], [ -95.433115010347251, 29.547583151034711 ], [ -95.433192010338175, 29.547292151038427 ], [ -95.433782010440339, 29.545539150489141 ], [ -95.433875010513049, 29.545200150603375 ], [ -95.43394401062784, 29.544955150459824 ], [ -95.433958010520215, 29.54489415111895 ], [ -95.433974009786908, 29.544841150660414 ], [ -95.434000010650763, 29.544751150805524 ], [ -95.434151009812553, 29.544191150539859 ], [ -95.434170010048263, 29.544120150823794 ], [ -95.434293010589045, 29.543669150267359 ], [ -95.434814010026642, 29.541778150477814 ], [ -95.435312010628309, 29.539930150078078 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 404, "Tract": "48039660301", "Area_SqMi": 1.2235255047756446, "total_2009": 2833, "total_2010": 3214, "total_2011": 3130, "total_2012": 2466, "total_2013": 2583, "total_2014": 2410, "total_2015": 2580, "total_2016": 2496, "total_2017": 2062, "total_2018": 2027, "total_2019": 2249, "total_2020": 1516, "age1": 640, "age2": 1045, "age3": 419, "earn1": 785, "earn2": 719, "earn3": 600, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 65, "naics_s05": 10, "naics_s06": 43, "naics_s07": 341, "naics_s08": 10, "naics_s09": 0, "naics_s10": 61, "naics_s11": 28, "naics_s12": 134, "naics_s13": 0, "naics_s14": 20, "naics_s15": 12, "naics_s16": 355, "naics_s17": 622, "naics_s18": 232, "naics_s19": 167, "naics_s20": 0, "race1": 1567, "race2": 355, "race3": 21, "race4": 111, "race5": 6, "race6": 44, "ethnicity1": 1409, "ethnicity2": 695, "edu1": 282, "edu2": 434, "edu3": 468, "edu4": 280, "Shape_Length": 25757.578080730971, "Shape_Area": 34109796.988314956, "total_2021": 1623, "total_2022": 2104 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.286069972842753, 29.563682159791643 ], [ -95.286049972991123, 29.561923159373386 ], [ -95.286053972836598, 29.561772159507473 ], [ -95.285987972827144, 29.560620158670567 ], [ -95.285871972848184, 29.560065159137384 ], [ -95.28582797274747, 29.559956158967477 ], [ -95.285688972428972, 29.559613158872864 ], [ -95.285497972766208, 29.559267158769277 ], [ -95.285408973192801, 29.559153158486961 ], [ -95.284881972910526, 29.558316158761695 ], [ -95.284748972494512, 29.558113158304756 ], [ -95.284049972685963, 29.55708115832925 ], [ -95.283710972738092, 29.556571158337256 ], [ -95.283429971966839, 29.556160158056525 ], [ -95.282906972482181, 29.555398158330114 ], [ -95.282350971656058, 29.554548157375486 ], [ -95.28186297217168, 29.553803157592426 ], [ -95.281382971045502, 29.553084157534762 ], [ -95.280907971029123, 29.552372157144383 ], [ -95.279332971108502, 29.550110156914943 ], [ -95.279005970627907, 29.549617156680128 ], [ -95.277052969929429, 29.546666156725596 ], [ -95.276571970244717, 29.54669715666595 ], [ -95.276246969699343, 29.546710155953136 ], [ -95.274488969983295, 29.546745156205059 ], [ -95.270910968265554, 29.546816156735417 ], [ -95.270774968570279, 29.546819156713504 ], [ -95.268873968335072, 29.546856156622137 ], [ -95.268635967962354, 29.546860156392061 ], [ -95.26859396766686, 29.546861156263901 ], [ -95.266627967150086, 29.546899156617709 ], [ -95.265654967508041, 29.54695215705171 ], [ -95.264967967276121, 29.546970156978215 ], [ -95.264740966920414, 29.546976156968828 ], [ -95.263948967231087, 29.546990156707196 ], [ -95.263540966376851, 29.546956156425182 ], [ -95.263244966680716, 29.546864156947979 ], [ -95.262993966387441, 29.546758156400301 ], [ -95.26278796687572, 29.546615156861606 ], [ -95.262292966029335, 29.546226156553942 ], [ -95.262098966582059, 29.5461711564786 ], [ -95.262007966440322, 29.546197157075312 ], [ -95.261857965936528, 29.546306157170175 ], [ -95.261767966128801, 29.546389156633179 ], [ -95.261408966069709, 29.546751156443992 ], [ -95.261306966504236, 29.546839157083195 ], [ -95.261136966181056, 29.546988157302167 ], [ -95.26075896637505, 29.547333157255117 ], [ -95.260216965478833, 29.547834156823022 ], [ -95.259678966169218, 29.54833715747078 ], [ -95.259129965755676, 29.548845157280393 ], [ -95.258591965143836, 29.549332157140842 ], [ -95.255193964594227, 29.552524158037723 ], [ -95.256521965073063, 29.553060158485646 ], [ -95.256851965541301, 29.553193158028275 ], [ -95.258638966018253, 29.553939158857553 ], [ -95.259931966255124, 29.554465158186758 ], [ -95.260711966196482, 29.554780158927326 ], [ -95.263175966932764, 29.555776159035126 ], [ -95.263221966709509, 29.555795158953927 ], [ -95.263422967318988, 29.555876158978897 ], [ -95.263484967201109, 29.555902158883136 ], [ -95.26640696831268, 29.557086158569756 ], [ -95.266947967886907, 29.557305158584885 ], [ -95.268296968465037, 29.557850158841383 ], [ -95.269011968265261, 29.558140159327213 ], [ -95.269848969195451, 29.558489158652083 ], [ -95.271050968940841, 29.558973158944045 ], [ -95.272088969505916, 29.559368158714271 ], [ -95.273828970149921, 29.560114159445618 ], [ -95.27397197000694, 29.560175158942393 ], [ -95.274590969812081, 29.560503158840117 ], [ -95.275495970362485, 29.561016159680623 ], [ -95.277393970706285, 29.562029159532127 ], [ -95.279564970991984, 29.563148159667666 ], [ -95.280068971478016, 29.563367159479817 ], [ -95.280364972057797, 29.563466160080296 ], [ -95.280606971810528, 29.563537159282003 ], [ -95.280870971585813, 29.563606160079882 ], [ -95.281291971705542, 29.563687159780251 ], [ -95.281728972089283, 29.563739159499825 ], [ -95.282084972640163, 29.563764159260312 ], [ -95.282398971776217, 29.563771159918829 ], [ -95.282738972218908, 29.563757159255069 ], [ -95.283121972191765, 29.563740159680215 ], [ -95.283825972551796, 29.563732159969959 ], [ -95.284617973044178, 29.56367915933096 ], [ -95.285001972798753, 29.563662159598675 ], [ -95.286069972842753, 29.563682159791643 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 405, "Tract": "48039660615", "Area_SqMi": 4.8056998617786473, "total_2009": 39, "total_2010": 91, "total_2011": 248, "total_2012": 303, "total_2013": 244, "total_2014": 238, "total_2015": 344, "total_2016": 350, "total_2017": 478, "total_2018": 128, "total_2019": 190, "total_2020": 226, "age1": 58, "age2": 188, "age3": 95, "earn1": 80, "earn2": 96, "earn3": 165, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 90, "naics_s05": 1, "naics_s06": 17, "naics_s07": 10, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 98, "naics_s17": 1, "naics_s18": 0, "naics_s19": 114, "naics_s20": 0, "race1": 248, "race2": 54, "race3": 2, "race4": 29, "race5": 3, "race6": 5, "ethnicity1": 200, "ethnicity2": 141, "edu1": 85, "edu2": 72, "edu3": 69, "edu4": 57, "Shape_Length": 65695.383779792042, "Shape_Area": 133974687.10887301, "total_2021": 223, "total_2022": 341 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436023008929723, 29.496811140542135 ], [ -95.435922008735957, 29.494430140635739 ], [ -95.435448008257751, 29.494234140423309 ], [ -95.435394008809808, 29.494212140005612 ], [ -95.432883008019346, 29.493338140418604 ], [ -95.429527006741068, 29.492202139735241 ], [ -95.429384006979248, 29.492154140392255 ], [ -95.428882006773478, 29.491984139753832 ], [ -95.427128006220926, 29.491389139751409 ], [ -95.426697006441771, 29.491241139522593 ], [ -95.426645006416422, 29.491223140094551 ], [ -95.426052005420345, 29.491021139528755 ], [ -95.425903006348648, 29.490970139598144 ], [ -95.421000004838277, 29.489295139388968 ], [ -95.419937003956051, 29.488931139711081 ], [ -95.41823800400833, 29.488350139508611 ], [ -95.41589300298007, 29.48755113968932 ], [ -95.415786003579896, 29.487514139988846 ], [ -95.415756003106964, 29.487504139366564 ], [ -95.415429002546034, 29.487393139335978 ], [ -95.413423002520247, 29.486751139438095 ], [ -95.404895000180474, 29.48383413938431 ], [ -95.403733000042266, 29.483436138680531 ], [ -95.403722999763474, 29.483457139379944 ], [ -95.402523999283162, 29.483062139255836 ], [ -95.401711998770011, 29.482795139013593 ], [ -95.401187999444815, 29.482614139167076 ], [ -95.399239998696885, 29.485096139466076 ], [ -95.398732998349203, 29.485699140094695 ], [ -95.398387998345783, 29.486109139395435 ], [ -95.397655998690453, 29.487033140181033 ], [ -95.39341699745772, 29.492376141267851 ], [ -95.391555996747599, 29.495434141769412 ], [ -95.390478997019414, 29.497686142532164 ], [ -95.390329996661663, 29.498109142828202 ], [ -95.389441997063287, 29.500604143364658 ], [ -95.389112996370471, 29.501731143327394 ], [ -95.388961997070808, 29.502358143863631 ], [ -95.388590996855243, 29.504124143858078 ], [ -95.388275996739068, 29.506674143980497 ], [ -95.388269996920982, 29.506723144741475 ], [ -95.388016996697331, 29.508708144388724 ], [ -95.387755996689037, 29.511223145625916 ], [ -95.387653996892311, 29.512157145276287 ], [ -95.387635996458755, 29.512318145758581 ], [ -95.387504996597272, 29.513376145684099 ], [ -95.387191997188609, 29.516152146527578 ], [ -95.386915997268403, 29.518915147189752 ], [ -95.386861997572538, 29.52045614735686 ], [ -95.38691799707901, 29.522540147724754 ], [ -95.386951997668831, 29.523118147859403 ], [ -95.386968996793669, 29.523406148105497 ], [ -95.387023997263213, 29.525548148323239 ], [ -95.387282997261181, 29.525605148487269 ], [ -95.387344997673438, 29.525619147887344 ], [ -95.387498997100565, 29.525588147945701 ], [ -95.387570997696059, 29.52557814801148 ], [ -95.387569997261977, 29.525544148235674 ], [ -95.387569997772601, 29.525533148678523 ], [ -95.387712997493779, 29.525527148006628 ], [ -95.387793997806625, 29.525507148046231 ], [ -95.388100997637736, 29.525365148545728 ], [ -95.388315998191501, 29.525228148115918 ], [ -95.388453997799928, 29.525130147793686 ], [ -95.388734998262152, 29.524818147697193 ], [ -95.38883099801356, 29.524725148143414 ], [ -95.388868998010238, 29.524698148097805 ], [ -95.388900998009504, 29.524685147739032 ], [ -95.388959997908444, 29.524660148449787 ], [ -95.388957997840635, 29.524538147702181 ], [ -95.388989997920604, 29.524501147773126 ], [ -95.389387998316053, 29.524038147614583 ], [ -95.39077699872395, 29.522984147801068 ], [ -95.392190998264439, 29.522250147364911 ], [ -95.393604998472881, 29.521517147080331 ], [ -95.394348999192218, 29.520928147575262 ], [ -95.394416999353155, 29.520875147334412 ], [ -95.394888998830041, 29.520807147139546 ], [ -95.395647999820739, 29.520898147334478 ], [ -95.396512999162056, 29.521540146773429 ], [ -95.39674799982329, 29.521837146816644 ], [ -95.396747999713398, 29.522135147573142 ], [ -95.396714999581192, 29.522274146893007 ], [ -95.396617999711808, 29.522685147838633 ], [ -95.395569999502129, 29.524564147655052 ], [ -95.395491999024514, 29.524930148007137 ], [ -95.395517999612338, 29.525778148300944 ], [ -95.396278000288319, 29.526855147850593 ], [ -95.396854000213366, 29.527290148752815 ], [ -95.397509000529709, 29.527473148240873 ], [ -95.399998001127443, 29.527037148488898 ], [ -95.40167400091272, 29.526189147987484 ], [ -95.403507001793869, 29.525135147747541 ], [ -95.404136002168201, 29.524837147399854 ], [ -95.404923002318284, 29.524637147965006 ], [ -95.405589001839502, 29.524467147265845 ], [ -95.407829002380453, 29.523897146949505 ], [ -95.408851003392542, 29.523851147038137 ], [ -95.410029002675245, 29.523003147258407 ], [ -95.411339003889424, 29.522590147270066 ], [ -95.411672003223174, 29.522280146770147 ], [ -95.411757003488091, 29.522201146715499 ], [ -95.413067003848411, 29.521673146743201 ], [ -95.413591003724619, 29.521742146885313 ], [ -95.414246004556915, 29.521994146333071 ], [ -95.414411004717479, 29.522175146484919 ], [ -95.414665003993576, 29.522452147028609 ], [ -95.414823004629767, 29.522933147243272 ], [ -95.414849004806328, 29.523414146612733 ], [ -95.414194003827546, 29.524078147344063 ], [ -95.4141940042785, 29.524720146937703 ], [ -95.414273004269873, 29.524789147621185 ], [ -95.41424700443757, 29.525247147663446 ], [ -95.413933004320427, 29.525682147504298 ], [ -95.413933004593957, 29.526530147514109 ], [ -95.413488004599671, 29.527744147846072 ], [ -95.41322700417706, 29.528134148042056 ], [ -95.413227004728867, 29.528912148244615 ], [ -95.413437003834872, 29.529806148232609 ], [ -95.413673004805005, 29.530424148333644 ], [ -95.414302004852928, 29.531066148543697 ], [ -95.414459004882929, 29.531524148195583 ], [ -95.41474700494355, 29.531890149014171 ], [ -95.415088004597479, 29.532119148445712 ], [ -95.415795004741753, 29.532188149098179 ], [ -95.416243005371641, 29.532380148807508 ], [ -95.416507004704116, 29.532494149130695 ], [ -95.416622005355919, 29.532543148641835 ], [ -95.416802005354583, 29.532620148999285 ], [ -95.41679800532745, 29.532474149185919 ], [ -95.41679000481885, 29.531739148409205 ], [ -95.416758005097961, 29.530607148568215 ], [ -95.41671900512361, 29.529923148189411 ], [ -95.416705005478832, 29.529320147834422 ], [ -95.416697004641236, 29.529001148008067 ], [ -95.416692005096067, 29.528863148148211 ], [ -95.416596005234823, 29.526206147532108 ], [ -95.416414004256779, 29.519101146375593 ], [ -95.416400004262044, 29.518532145953866 ], [ -95.416381004396726, 29.518107146001476 ], [ -95.416370004436246, 29.517750145776333 ], [ -95.416342004549136, 29.516953145499183 ], [ -95.416316004578704, 29.516164145239273 ], [ -95.416305004009857, 29.515762145693756 ], [ -95.416285004866708, 29.51535714527251 ], [ -95.416265004847986, 29.514563144796085 ], [ -95.416231004729738, 29.513754144922991 ], [ -95.416207004444189, 29.512965144434371 ], [ -95.416174004603292, 29.512186144650297 ], [ -95.416162004214584, 29.511696144343116 ], [ -95.416058004061483, 29.509258143625715 ], [ -95.41603200382383, 29.508440144181964 ], [ -95.416006004114195, 29.50764814356933 ], [ -95.415977003520055, 29.506703143134096 ], [ -95.415910003346454, 29.504570143243903 ], [ -95.415907003712277, 29.504477143126692 ], [ -95.415905003351341, 29.504417143138454 ], [ -95.415896004054403, 29.503954143111979 ], [ -95.415889003713872, 29.503416142508563 ], [ -95.415839003526884, 29.501919142156527 ], [ -95.415800003798708, 29.500774141920576 ], [ -95.415725003478769, 29.49794014177106 ], [ -95.415721003601803, 29.497778142039262 ], [ -95.41570700331809, 29.497345141571063 ], [ -95.415699003882196, 29.497104141980973 ], [ -95.415853003571783, 29.497105141546051 ], [ -95.416039003790928, 29.497104141120079 ], [ -95.416435003667601, 29.497082141602331 ], [ -95.417499004435484, 29.497051141283059 ], [ -95.418673004753515, 29.497025141182622 ], [ -95.419721004296392, 29.496993141053036 ], [ -95.420208005027575, 29.496962141736287 ], [ -95.423825005165796, 29.496926140942819 ], [ -95.42396300588382, 29.496925141361427 ], [ -95.426774006012977, 29.496899141312138 ], [ -95.432329007318543, 29.4968451411508 ], [ -95.432447008036362, 29.496845140731896 ], [ -95.436023008929723, 29.496811140542135 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 406, "Tract": "48039660901", "Area_SqMi": 7.9805810256490499, "total_2009": 328, "total_2010": 29, "total_2011": 23, "total_2012": 65, "total_2013": 76, "total_2014": 66, "total_2015": 85, "total_2016": 87, "total_2017": 229, "total_2018": 115, "total_2019": 159, "total_2020": 158, "age1": 37, "age2": 93, "age3": 47, "earn1": 20, "earn2": 60, "earn3": 97, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 23, "naics_s06": 50, "naics_s07": 2, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 6, "naics_s13": 0, "naics_s14": 50, "naics_s15": 0, "naics_s16": 0, "naics_s17": 2, "naics_s18": 14, "naics_s19": 3, "naics_s20": 0, "race1": 158, "race2": 9, "race3": 2, "race4": 3, "race5": 0, "race6": 5, "ethnicity1": 128, "ethnicity2": 49, "edu1": 40, "edu2": 36, "edu3": 35, "edu4": 29, "Shape_Length": 78478.332467693646, "Shape_Area": 222484940.09416103, "total_2021": 146, "total_2022": 177 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.330557982006283, 29.512328147887214 ], [ -95.330670982855324, 29.512062147100096 ], [ -95.330486982402078, 29.511976146974945 ], [ -95.330386982142741, 29.511891147460901 ], [ -95.330321982386224, 29.511799147635774 ], [ -95.33029098215458, 29.509752146602327 ], [ -95.330285981660353, 29.508992146451064 ], [ -95.330263982328347, 29.508247146845342 ], [ -95.330213981434966, 29.505060146039401 ], [ -95.329752981934163, 29.503738145915655 ], [ -95.329363981227772, 29.502705145624418 ], [ -95.329160981317358, 29.502151145742491 ], [ -95.32889798163859, 29.501549145624281 ], [ -95.328761981811979, 29.501114145534721 ], [ -95.328239981492089, 29.499756145026645 ], [ -95.327567980854568, 29.497925144595946 ], [ -95.327460980791543, 29.497643144893257 ], [ -95.327368980657198, 29.497557144481181 ], [ -95.327187980781332, 29.49741114429785 ], [ -95.325379979850226, 29.496017143907345 ], [ -95.325297980113618, 29.495949143926932 ], [ -95.324598979646638, 29.495425143936394 ], [ -95.324490980176094, 29.495344143949705 ], [ -95.32180797952276, 29.493337144223535 ], [ -95.3206289792696, 29.492454143753914 ], [ -95.320137978766695, 29.492085143665481 ], [ -95.319729979084983, 29.491781143335562 ], [ -95.319016978648207, 29.491240143317476 ], [ -95.318938978114673, 29.491181143073874 ], [ -95.31884897823663, 29.491113143256605 ], [ -95.318166978094993, 29.490623142996764 ], [ -95.317125977812665, 29.489875143431412 ], [ -95.314969977704109, 29.488272143451358 ], [ -95.31384897669956, 29.487438142688251 ], [ -95.311952976341288, 29.486023142568392 ], [ -95.30856997536813, 29.483493142521699 ], [ -95.306535974862584, 29.48196614193678 ], [ -95.305758974430944, 29.48138414174192 ], [ -95.305481974401772, 29.481164141961038 ], [ -95.30470397415553, 29.48054714164838 ], [ -95.303667973988098, 29.479787141290704 ], [ -95.303124974328739, 29.479377141833666 ], [ -95.302989973399491, 29.479273141653934 ], [ -95.301824973456931, 29.478382141762495 ], [ -95.301694973702197, 29.478280141865344 ], [ -95.301390972933334, 29.478060141244963 ], [ -95.300730972762096, 29.477559141449824 ], [ -95.299474972444443, 29.476607141183681 ], [ -95.298757972502074, 29.476067140773296 ], [ -95.2982979720354, 29.475727140688537 ], [ -95.297107972099838, 29.474853140424347 ], [ -95.296036972002014, 29.4740681408332 ], [ -95.295998971827331, 29.474040140423277 ], [ -95.294062970968767, 29.476013141490245 ], [ -95.293865970849822, 29.476214141501639 ], [ -95.293857971136305, 29.476222140910526 ], [ -95.293402971393476, 29.476687141353917 ], [ -95.293117971115123, 29.476978141111218 ], [ -95.292845971569818, 29.47725514192572 ], [ -95.292697970824349, 29.477394141483959 ], [ -95.29265397113106, 29.477435141160914 ], [ -95.292442971100684, 29.477854142066462 ], [ -95.29231897103277, 29.477761141636758 ], [ -95.292094970644598, 29.477595141434005 ], [ -95.292079970997847, 29.477584141388345 ], [ -95.291870971097708, 29.477428141513883 ], [ -95.291095970650716, 29.476851141519901 ], [ -95.289774970767198, 29.475870141561408 ], [ -95.28900296962388, 29.475301141618655 ], [ -95.288893970333106, 29.475220141191492 ], [ -95.288427969471272, 29.474876141545131 ], [ -95.285855968779046, 29.473003140594685 ], [ -95.285720969523652, 29.472940141244415 ], [ -95.285628968743652, 29.47289614114165 ], [ -95.28538396929487, 29.472842140435557 ], [ -95.284131968984752, 29.472835140538955 ], [ -95.283947968531493, 29.472835140715048 ], [ -95.283674968372807, 29.472833140871639 ], [ -95.283523968312423, 29.472836141013758 ], [ -95.281545968126622, 29.472865140767581 ], [ -95.281431967909171, 29.472863140634747 ], [ -95.281126968167499, 29.472861141401598 ], [ -95.280424967783176, 29.472880140968787 ], [ -95.278662966883644, 29.472896140860318 ], [ -95.278322967302458, 29.472902140941642 ], [ -95.276892967373158, 29.472929140792516 ], [ -95.275818966395406, 29.472954140770376 ], [ -95.275388966508274, 29.47295514123126 ], [ -95.275275966332458, 29.472941140890551 ], [ -95.275226966408837, 29.472847140889904 ], [ -95.273635966262205, 29.472858141584386 ], [ -95.271778965925705, 29.472877141732933 ], [ -95.270478964778334, 29.472906141403868 ], [ -95.27037896522242, 29.472907141535998 ], [ -95.268979965349686, 29.47293314100844 ], [ -95.267583964031957, 29.472957141417073 ], [ -95.265886963747107, 29.472986141813738 ], [ -95.265772964497756, 29.472986141486171 ], [ -95.264206963340229, 29.473006141486735 ], [ -95.263780963248337, 29.473013141220491 ], [ -95.262851963448227, 29.473022141911244 ], [ -95.262695963740285, 29.473104142089646 ], [ -95.262652963358107, 29.47323314164802 ], [ -95.262674963422256, 29.473760141945764 ], [ -95.262730963077459, 29.475223141872462 ], [ -95.262747963001061, 29.475897141843888 ], [ -95.262781963404109, 29.477272142859182 ], [ -95.262808963366098, 29.478420142748067 ], [ -95.262835963446065, 29.479723143191411 ], [ -95.262833963517025, 29.479807143457261 ], [ -95.262676963448172, 29.479922143022726 ], [ -95.262338963892248, 29.479939142847698 ], [ -95.262245963750175, 29.479940143304251 ], [ -95.261346962763909, 29.479951143525216 ], [ -95.259829962610922, 29.479973143347294 ], [ -95.259066963053058, 29.479983143288354 ], [ -95.257518962504321, 29.480028143061848 ], [ -95.256784962071038, 29.480047142848328 ], [ -95.25526196149282, 29.48009114319176 ], [ -95.254761961983817, 29.480104143308946 ], [ -95.252192960892913, 29.480177143240319 ], [ -95.251877960292205, 29.480187143425777 ], [ -95.250432960404368, 29.48022714353765 ], [ -95.250004960435831, 29.480241143373021 ], [ -95.248447960151708, 29.48028314336252 ], [ -95.247173959497218, 29.480314143212016 ], [ -95.24603295900036, 29.480349143892152 ], [ -95.246041958804241, 29.480520144142158 ], [ -95.246043958929292, 29.480607143927504 ], [ -95.246077959494784, 29.481915144384214 ], [ -95.246101959109993, 29.482386143871402 ], [ -95.246119959773168, 29.482729144486346 ], [ -95.246127959071572, 29.483596144252758 ], [ -95.246128959495707, 29.483683144784077 ], [ -95.246169959303302, 29.48493214459177 ], [ -95.246199959832097, 29.485592144463297 ], [ -95.246238959364518, 29.48646014456525 ], [ -95.246287959422276, 29.48711714543736 ], [ -95.246400959619265, 29.489386145934272 ], [ -95.246435960120635, 29.489993145778524 ], [ -95.246455959838897, 29.490453145681542 ], [ -95.246579959994037, 29.49288014642736 ], [ -95.246592960120253, 29.493197146324896 ], [ -95.246650960058005, 29.494294146595916 ], [ -95.246715960476124, 29.495539146555746 ], [ -95.246796959899612, 29.497011146885214 ], [ -95.246889960326001, 29.498957147481864 ], [ -95.246964960428116, 29.499978147775529 ], [ -95.246996960573142, 29.500394147562016 ], [ -95.24718396087053, 29.501405148431601 ], [ -95.247191960275615, 29.501447147937984 ], [ -95.247197960427144, 29.501477147886064 ], [ -95.247222960220938, 29.501611147632449 ], [ -95.247224960037215, 29.501622147857535 ], [ -95.247235960332674, 29.501657147724167 ], [ -95.247287960815569, 29.50182514768548 ], [ -95.247298960090433, 29.501860148418277 ], [ -95.24730696049221, 29.501886148456268 ], [ -95.247312960280155, 29.501906147692008 ], [ -95.247353960732596, 29.502037148167879 ], [ -95.249038960798615, 29.50201514826496 ], [ -95.249994960891357, 29.502004148352643 ], [ -95.250646961718147, 29.50199514764482 ], [ -95.252076961431996, 29.501973147584714 ], [ -95.25230096152761, 29.501969147755755 ], [ -95.252529962035752, 29.501962147996405 ], [ -95.253936962557447, 29.501928148218528 ], [ -95.255196962495461, 29.50189614801668 ], [ -95.255597962588311, 29.501886148185012 ], [ -95.256004963008749, 29.501877147583837 ], [ -95.25636396317276, 29.501866147597198 ], [ -95.257245963385202, 29.501858147929376 ], [ -95.257471963331085, 29.501857147447531 ], [ -95.2588939633726, 29.501817147626458 ], [ -95.259053963357658, 29.501814147985559 ], [ -95.259913963578768, 29.501763147985567 ], [ -95.260937963560195, 29.501739147938306 ], [ -95.262188964275182, 29.501704147219254 ], [ -95.26465896451964, 29.501642147206518 ], [ -95.266440965706678, 29.501593147495932 ], [ -95.26675996534577, 29.501586146940113 ], [ -95.268653966111401, 29.501533147117165 ], [ -95.268784966089015, 29.501529147431704 ], [ -95.269450966286229, 29.501504146892966 ], [ -95.270102966115502, 29.501515147459141 ], [ -95.270447966289765, 29.501505147151008 ], [ -95.272079966550763, 29.50145414684377 ], [ -95.273255966914036, 29.501418146820232 ], [ -95.273609966890447, 29.501408147395573 ], [ -95.27374496769697, 29.501419147015781 ], [ -95.27539596723804, 29.501560147220836 ], [ -95.277051968398268, 29.501701147072996 ], [ -95.278704969105803, 29.501839146730493 ], [ -95.280065968529826, 29.501949147185741 ], [ -95.280142969144379, 29.501955146934208 ], [ -95.280284968810449, 29.501954146760426 ], [ -95.280458969055175, 29.501972147008793 ], [ -95.280581969191857, 29.501967146686045 ], [ -95.280612969396529, 29.501967147305997 ], [ -95.280812969417255, 29.501971146904729 ], [ -95.281274968867649, 29.501962146540105 ], [ -95.281556969773902, 29.501966147253306 ], [ -95.283462969409783, 29.501940147078106 ], [ -95.284453969847632, 29.50192314694705 ], [ -95.285294970535588, 29.501902147256892 ], [ -95.286950970430524, 29.501858146709981 ], [ -95.287133970394606, 29.501852146927892 ], [ -95.287676970843378, 29.501854146704471 ], [ -95.288627971002541, 29.501836146305074 ], [ -95.289704971294825, 29.501848146248744 ], [ -95.290043971360532, 29.50183614680661 ], [ -95.290936972226277, 29.501824146319262 ], [ -95.291357972037204, 29.501830146813685 ], [ -95.292410971601711, 29.501818146542615 ], [ -95.296226972658417, 29.501784146197519 ], [ -95.296754973707607, 29.50177914675281 ], [ -95.299749973774809, 29.501752145904209 ], [ -95.304143975158382, 29.501780146174127 ], [ -95.31014297624661, 29.501609145584634 ], [ -95.310383976248048, 29.501603145480267 ], [ -95.310646976329934, 29.501596146293025 ], [ -95.310757977178056, 29.501593145868224 ], [ -95.312402977081575, 29.501568146019935 ], [ -95.312702977590931, 29.501563145887236 ], [ -95.314066977729922, 29.50154214603004 ], [ -95.31425097751648, 29.50153914558339 ], [ -95.314357977711026, 29.50155514547529 ], [ -95.314462977537218, 29.501578145902421 ], [ -95.31451197783511, 29.501592145395666 ], [ -95.31471997748082, 29.501598145603005 ], [ -95.315619978368446, 29.501618145599874 ], [ -95.316580977958637, 29.501597145697485 ], [ -95.316639978231862, 29.501642145517796 ], [ -95.318092979218079, 29.502722146368505 ], [ -95.318725979230123, 29.50320314597413 ], [ -95.31942997909556, 29.503728146122612 ], [ -95.320718979691819, 29.504707146388942 ], [ -95.320886979390522, 29.504859146078729 ], [ -95.320960979599747, 29.505035146259544 ], [ -95.320945979554764, 29.505176146615408 ], [ -95.320973980040932, 29.507263146665281 ], [ -95.321068980213468, 29.513725148480919 ], [ -95.321072979996444, 29.515925148936034 ], [ -95.321301979631713, 29.515922148907752 ], [ -95.324509981338579, 29.515887148787268 ], [ -95.324786981431402, 29.515891148081607 ], [ -95.324986980880411, 29.515888148703336 ], [ -95.326401981511566, 29.51586914857744 ], [ -95.328055981763555, 29.515851148379937 ], [ -95.33029798276938, 29.515812148289509 ], [ -95.330317982877332, 29.51581314783796 ], [ -95.330263982855342, 29.514390147528648 ], [ -95.330264982447943, 29.513873148114691 ], [ -95.330272982017476, 29.513742147807953 ], [ -95.330298982377428, 29.51334314811421 ], [ -95.330364982605929, 29.513037147210497 ], [ -95.330400982821743, 29.512906147397505 ], [ -95.330447982067213, 29.512686147859853 ], [ -95.33049098212247, 29.512536147245971 ], [ -95.330557982006283, 29.512328147887214 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 407, "Tract": "48039660614", "Area_SqMi": 1.7104996067879044, "total_2009": 29, "total_2010": 54, "total_2011": 28, "total_2012": 38, "total_2013": 33, "total_2014": 37, "total_2015": 37, "total_2016": 39, "total_2017": 50, "total_2018": 48, "total_2019": 84, "total_2020": 99, "age1": 47, "age2": 55, "age3": 21, "earn1": 46, "earn2": 41, "earn3": 36, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 17, "naics_s07": 37, "naics_s08": 3, "naics_s09": 0, "naics_s10": 3, "naics_s11": 1, "naics_s12": 15, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 30, "naics_s17": 0, "naics_s18": 9, "naics_s19": 8, "naics_s20": 0, "race1": 63, "race2": 30, "race3": 1, "race4": 26, "race5": 0, "race6": 3, "ethnicity1": 89, "ethnicity2": 34, "edu1": 13, "edu2": 20, "edu3": 20, "edu4": 23, "Shape_Length": 29139.667401654267, "Shape_Area": 47685801.487911396, "total_2021": 80, "total_2022": 123 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446283011847143, 29.499730141051607 ], [ -95.446307011820323, 29.499642140810408 ], [ -95.44624501159015, 29.499606140669297 ], [ -95.446148011324766, 29.499554140951474 ], [ -95.445992011181701, 29.499464140848971 ], [ -95.445407011150337, 29.499156140764956 ], [ -95.444585011164548, 29.4987191411401 ], [ -95.444199011116552, 29.498502141311384 ], [ -95.443918010513713, 29.498372140415018 ], [ -95.443350010911345, 29.498062140561107 ], [ -95.441926009857255, 29.497452140972346 ], [ -95.441792010288466, 29.497381140299208 ], [ -95.44152501001922, 29.497248140739359 ], [ -95.441250009929377, 29.497110140547196 ], [ -95.440538010039148, 29.4967521404499 ], [ -95.439389009508687, 29.496157140590554 ], [ -95.437274008950169, 29.495069140827535 ], [ -95.436976009307259, 29.494912140095934 ], [ -95.436829008500951, 29.494844140260035 ], [ -95.436088009057997, 29.494499140162343 ], [ -95.435922008735957, 29.494430140635739 ], [ -95.436023008929723, 29.496811140542135 ], [ -95.432447008036362, 29.496845140731896 ], [ -95.432329007318543, 29.4968451411508 ], [ -95.426774006012977, 29.496899141312138 ], [ -95.42396300588382, 29.496925141361427 ], [ -95.423825005165796, 29.496926140942819 ], [ -95.420208005027575, 29.496962141736287 ], [ -95.419721004296392, 29.496993141053036 ], [ -95.418673004753515, 29.497025141182622 ], [ -95.417499004435484, 29.497051141283059 ], [ -95.416435003667601, 29.497082141602331 ], [ -95.416039003790928, 29.497104141120079 ], [ -95.415853003571783, 29.497105141546051 ], [ -95.415699003882196, 29.497104141980973 ], [ -95.41570700331809, 29.497345141571063 ], [ -95.415721003601803, 29.497778142039262 ], [ -95.415725003478769, 29.49794014177106 ], [ -95.415800003798708, 29.500774141920576 ], [ -95.415839003526884, 29.501919142156527 ], [ -95.415889003713872, 29.503416142508563 ], [ -95.415896004054403, 29.503954143111979 ], [ -95.415905003351341, 29.504417143138454 ], [ -95.415907003712277, 29.504477143126692 ], [ -95.415910003346454, 29.504570143243903 ], [ -95.415977003520055, 29.506703143134096 ], [ -95.416006004114195, 29.50764814356933 ], [ -95.41603200382383, 29.508440144181964 ], [ -95.416058004061483, 29.509258143625715 ], [ -95.416162004214584, 29.511696144343116 ], [ -95.416211004707904, 29.511694144315005 ], [ -95.416457004023286, 29.511683144250778 ], [ -95.417520005017863, 29.51163614404874 ], [ -95.41963900481764, 29.511579144081843 ], [ -95.42029800565571, 29.511581144558367 ], [ -95.421040005284098, 29.511554144012241 ], [ -95.422045006184007, 29.511529144476143 ], [ -95.423289005536461, 29.511499144467251 ], [ -95.423989006034276, 29.511480144541473 ], [ -95.424509006314622, 29.511470143798608 ], [ -95.424616006009458, 29.511468144027244 ], [ -95.427590006874624, 29.511414144011077 ], [ -95.429046007533202, 29.511387144093277 ], [ -95.430266007302649, 29.511345144328079 ], [ -95.430810008092692, 29.511346143927561 ], [ -95.431164008553196, 29.511290143799723 ], [ -95.431681007715312, 29.511125144219189 ], [ -95.432462008569999, 29.51081714422855 ], [ -95.432804008569931, 29.51071414420144 ], [ -95.433046008961227, 29.510689144142869 ], [ -95.433235008476544, 29.510670144157331 ], [ -95.435026008673532, 29.510650143566849 ], [ -95.435798008834723, 29.510641143854222 ], [ -95.437470009794694, 29.510604143952182 ], [ -95.439047010179081, 29.510570143878901 ], [ -95.440887010805227, 29.510536143477388 ], [ -95.441014010256836, 29.510531143521103 ], [ -95.442114010465815, 29.510487143383273 ], [ -95.442229010924407, 29.51041414355387 ], [ -95.442358010839754, 29.510346143510809 ], [ -95.44254501115411, 29.510257142937938 ], [ -95.442835011401698, 29.51023314370412 ], [ -95.443086011565782, 29.510224143439096 ], [ -95.443231010677451, 29.510219142854456 ], [ -95.443333011211692, 29.510217143162549 ], [ -95.443398011646252, 29.5102161430029 ], [ -95.443878011553522, 29.508492143156161 ], [ -95.443958010972651, 29.508204142550635 ], [ -95.446078011360939, 29.500485141147973 ], [ -95.446094011084014, 29.500430141429405 ], [ -95.446152011693158, 29.500217141483294 ], [ -95.446188011462311, 29.500085141153743 ], [ -95.446229011822993, 29.499932141460146 ], [ -95.446283011847143, 29.499730141051607 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 408, "Tract": "48039660902", "Area_SqMi": 9.4062763175117894, "total_2009": 806, "total_2010": 548, "total_2011": 892, "total_2012": 1011, "total_2013": 1108, "total_2014": 1100, "total_2015": 1171, "total_2016": 1075, "total_2017": 1069, "total_2018": 1133, "total_2019": 1201, "total_2020": 1200, "age1": 220, "age2": 725, "age3": 286, "earn1": 86, "earn2": 223, "earn3": 922, "naics_s01": 0, "naics_s02": 15, "naics_s03": 0, "naics_s04": 206, "naics_s05": 328, "naics_s06": 44, "naics_s07": 124, "naics_s08": 23, "naics_s09": 0, "naics_s10": 0, "naics_s11": 326, "naics_s12": 9, "naics_s13": 0, "naics_s14": 75, "naics_s15": 1, "naics_s16": 47, "naics_s17": 0, "naics_s18": 4, "naics_s19": 29, "naics_s20": 0, "race1": 1014, "race2": 97, "race3": 8, "race4": 94, "race5": 2, "race6": 16, "ethnicity1": 806, "ethnicity2": 425, "edu1": 227, "edu2": 292, "edu3": 285, "edu4": 207, "Shape_Length": 77612.623125975108, "Shape_Area": 262230884.72941548, "total_2021": 1009, "total_2022": 1231 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.330524983081119, 29.530335151302754 ], [ -95.330495983145752, 29.528621150874546 ], [ -95.330484983077156, 29.528051150390851 ], [ -95.330459982875212, 29.526089150510057 ], [ -95.330445982536844, 29.525072150263149 ], [ -95.330432982472615, 29.524076150331727 ], [ -95.330428982455928, 29.523810150087986 ], [ -95.330378982491069, 29.519936148962628 ], [ -95.330371982742008, 29.519237148916122 ], [ -95.330359982503978, 29.518599148817419 ], [ -95.330325982116534, 29.517017148259946 ], [ -95.330317982877332, 29.51581314783796 ], [ -95.33029798276938, 29.515812148289509 ], [ -95.328055981763555, 29.515851148379937 ], [ -95.326401981511566, 29.51586914857744 ], [ -95.324986980880411, 29.515888148703336 ], [ -95.324786981431402, 29.515891148081607 ], [ -95.324509981338579, 29.515887148787268 ], [ -95.321301979631713, 29.515922148907752 ], [ -95.321072979996444, 29.515925148936034 ], [ -95.321068980213468, 29.513725148480919 ], [ -95.320973980040932, 29.507263146665281 ], [ -95.320945979554764, 29.505176146615408 ], [ -95.320960979599747, 29.505035146259544 ], [ -95.320886979390522, 29.504859146078729 ], [ -95.320718979691819, 29.504707146388942 ], [ -95.31942997909556, 29.503728146122612 ], [ -95.318725979230123, 29.50320314597413 ], [ -95.318092979218079, 29.502722146368505 ], [ -95.316639978231862, 29.501642145517796 ], [ -95.316580977958637, 29.501597145697485 ], [ -95.315619978368446, 29.501618145599874 ], [ -95.31471997748082, 29.501598145603005 ], [ -95.31451197783511, 29.501592145395666 ], [ -95.314462977537218, 29.501578145902421 ], [ -95.314357977711026, 29.50155514547529 ], [ -95.31425097751648, 29.50153914558339 ], [ -95.314066977729922, 29.50154214603004 ], [ -95.312702977590931, 29.501563145887236 ], [ -95.312402977081575, 29.501568146019935 ], [ -95.310757977178056, 29.501593145868224 ], [ -95.310646976329934, 29.501596146293025 ], [ -95.310383976248048, 29.501603145480267 ], [ -95.31014297624661, 29.501609145584634 ], [ -95.304143975158382, 29.501780146174127 ], [ -95.299749973774809, 29.501752145904209 ], [ -95.296754973707607, 29.50177914675281 ], [ -95.296226972658417, 29.501784146197519 ], [ -95.292410971601711, 29.501818146542615 ], [ -95.291357972037204, 29.501830146813685 ], [ -95.290936972226277, 29.501824146319262 ], [ -95.290043971360532, 29.50183614680661 ], [ -95.289704971294825, 29.501848146248744 ], [ -95.288627971002541, 29.501836146305074 ], [ -95.287676970843378, 29.501854146704471 ], [ -95.287133970394606, 29.501852146927892 ], [ -95.286950970430524, 29.501858146709981 ], [ -95.285294970535588, 29.501902147256892 ], [ -95.284453969847632, 29.50192314694705 ], [ -95.283462969409783, 29.501940147078106 ], [ -95.281556969773902, 29.501966147253306 ], [ -95.281274968867649, 29.501962146540105 ], [ -95.280812969417255, 29.501971146904729 ], [ -95.280612969396529, 29.501967147305997 ], [ -95.280581969191857, 29.501967146686045 ], [ -95.280458969055175, 29.501972147008793 ], [ -95.280284968810449, 29.501954146760426 ], [ -95.280142969144379, 29.501955146934208 ], [ -95.280065968529826, 29.501949147185741 ], [ -95.278704969105803, 29.501839146730493 ], [ -95.277051968398268, 29.501701147072996 ], [ -95.27539596723804, 29.501560147220836 ], [ -95.27374496769697, 29.501419147015781 ], [ -95.273609966890447, 29.501408147395573 ], [ -95.273255966914036, 29.501418146820232 ], [ -95.272079966550763, 29.50145414684377 ], [ -95.270447966289765, 29.501505147151008 ], [ -95.270102966115502, 29.501515147459141 ], [ -95.269450966286229, 29.501504146892966 ], [ -95.268784966089015, 29.501529147431704 ], [ -95.268653966111401, 29.501533147117165 ], [ -95.26675996534577, 29.501586146940113 ], [ -95.266440965706678, 29.501593147495932 ], [ -95.26465896451964, 29.501642147206518 ], [ -95.262188964275182, 29.501704147219254 ], [ -95.260937963560195, 29.501739147938306 ], [ -95.259913963578768, 29.501763147985567 ], [ -95.259053963357658, 29.501814147985559 ], [ -95.2588939633726, 29.501817147626458 ], [ -95.257471963331085, 29.501857147447531 ], [ -95.257245963385202, 29.501858147929376 ], [ -95.25636396317276, 29.501866147597198 ], [ -95.256004963008749, 29.501877147583837 ], [ -95.255597962588311, 29.501886148185012 ], [ -95.255196962495461, 29.50189614801668 ], [ -95.253936962557447, 29.501928148218528 ], [ -95.252529962035752, 29.501962147996405 ], [ -95.25230096152761, 29.501969147755755 ], [ -95.252076961431996, 29.501973147584714 ], [ -95.250646961718147, 29.50199514764482 ], [ -95.249994960891357, 29.502004148352643 ], [ -95.249038960798615, 29.50201514826496 ], [ -95.247353960732596, 29.502037148167879 ], [ -95.247384961014347, 29.502140147914904 ], [ -95.247391960098696, 29.502163147968144 ], [ -95.247512960155021, 29.502560148200413 ], [ -95.248016960315425, 29.503681148383993 ], [ -95.248239961074063, 29.503999148750726 ], [ -95.248685960531731, 29.504635149035241 ], [ -95.248881961106562, 29.504914148841593 ], [ -95.249394961320363, 29.5056471488951 ], [ -95.249493961645385, 29.505799149163639 ], [ -95.250331961125198, 29.507075149075863 ], [ -95.250439961332887, 29.50726714913365 ], [ -95.25051396148443, 29.507336148771707 ], [ -95.250743961735807, 29.507688149561865 ], [ -95.250953961961102, 29.508007149441852 ], [ -95.251430961636174, 29.508653148996334 ], [ -95.251817961554067, 29.509215149513491 ], [ -95.252907962156172, 29.510750149477982 ], [ -95.253336963001942, 29.511393149806736 ], [ -95.253556962541268, 29.511725149463619 ], [ -95.254054962340234, 29.512452150041995 ], [ -95.254395962736098, 29.512949150206769 ], [ -95.254845962984348, 29.513638150629514 ], [ -95.255056962664241, 29.513950150307071 ], [ -95.255709962810784, 29.514914150837882 ], [ -95.256662963406924, 29.516323150887612 ], [ -95.256731963284139, 29.516424150752869 ], [ -95.258057963529595, 29.51837015070015 ], [ -95.258326964135435, 29.518726151102683 ], [ -95.258613963710019, 29.519154151303777 ], [ -95.258905964511683, 29.519575150935157 ], [ -95.258941964691545, 29.519629151510728 ], [ -95.259702964248461, 29.520751151606788 ], [ -95.259983964640568, 29.521168152066839 ], [ -95.260109965001973, 29.521368151890158 ], [ -95.260181964184582, 29.521489151776514 ], [ -95.260433964621868, 29.521915151709777 ], [ -95.261456965031698, 29.523416152370206 ], [ -95.261703965671856, 29.523779152399854 ], [ -95.263064965855008, 29.525775152682044 ], [ -95.264488966258085, 29.527900152499846 ], [ -95.265201965852839, 29.529004153360653 ], [ -95.265376965884656, 29.529274152729204 ], [ -95.266060967116289, 29.530290152971666 ], [ -95.266302966163408, 29.530650153407073 ], [ -95.266543966376261, 29.53100815384564 ], [ -95.267999966944686, 29.53317415388247 ], [ -95.268062966773229, 29.533264153742703 ], [ -95.268985967760528, 29.534591153778774 ], [ -95.270278967902073, 29.536506154435525 ], [ -95.270301968345365, 29.53654915448087 ], [ -95.270349967497978, 29.536639154375681 ], [ -95.270402967681648, 29.536719154182627 ], [ -95.271214968587216, 29.537939154994945 ], [ -95.272374968326119, 29.53968315459689 ], [ -95.27370496871454, 29.541671155026918 ], [ -95.273895968824036, 29.541957155853034 ], [ -95.273986969134654, 29.542092155254988 ], [ -95.274331969085054, 29.54260415593977 ], [ -95.275809969370584, 29.544802156019859 ], [ -95.276663970501374, 29.546082156300347 ], [ -95.277052969929429, 29.546666156725596 ], [ -95.280137970491225, 29.546636156305674 ], [ -95.281197971178088, 29.546590155812964 ], [ -95.281589970966081, 29.546538156313041 ], [ -95.282142970912943, 29.546390156302099 ], [ -95.282407971477596, 29.54631515641324 ], [ -95.282898971665119, 29.546126155953544 ], [ -95.283650972045763, 29.545772155779503 ], [ -95.28416797197022, 29.545609155444303 ], [ -95.284690971765258, 29.54550415540497 ], [ -95.285397972186388, 29.545471155365291 ], [ -95.287284973139194, 29.54543915587481 ], [ -95.288608972748619, 29.545419155666114 ], [ -95.29010497334545, 29.545393155292466 ], [ -95.290056973599377, 29.545257155405004 ], [ -95.289745972902011, 29.544784155619411 ], [ -95.289468973215236, 29.544403155576298 ], [ -95.289382973375226, 29.544186155555295 ], [ -95.289348973426797, 29.543961155118126 ], [ -95.289325973029221, 29.542846155243421 ], [ -95.289303973397537, 29.5416941544865 ], [ -95.289291973094521, 29.541104155051418 ], [ -95.289260972611714, 29.539460154400334 ], [ -95.28925897243488, 29.539156154255799 ], [ -95.289252973202707, 29.538155153954477 ], [ -95.289247973262036, 29.537142154025965 ], [ -95.289244973203552, 29.536441154256245 ], [ -95.289209973205928, 29.534387153552224 ], [ -95.289151972155224, 29.531338152619742 ], [ -95.289143972668342, 29.530936153109586 ], [ -95.289143972059605, 29.53089015233099 ], [ -95.291013972642503, 29.530869152840239 ], [ -95.291997973212204, 29.530856152247303 ], [ -95.294445974006521, 29.530823152423366 ], [ -95.295998974145235, 29.53080515266652 ], [ -95.297420974270352, 29.530787151990907 ], [ -95.297586974656369, 29.530787152746782 ], [ -95.300713975307858, 29.530769151963788 ], [ -95.300923975281052, 29.530767152376239 ], [ -95.301219975950289, 29.530747151815646 ], [ -95.302284975978637, 29.530735152123906 ], [ -95.302968976241814, 29.530734151793929 ], [ -95.30309797624281, 29.530739151828005 ], [ -95.3038129760494, 29.530728151770813 ], [ -95.305421976870164, 29.530708152477942 ], [ -95.305735976420607, 29.530703151705925 ], [ -95.308599977974083, 29.530661151580677 ], [ -95.310123977576325, 29.530642151938228 ], [ -95.310515977940469, 29.530637151566992 ], [ -95.311113978268892, 29.530631151601916 ], [ -95.311714978783698, 29.530618151615403 ], [ -95.311832978642329, 29.530614151842624 ], [ -95.312353978590565, 29.530614151996723 ], [ -95.312941978776067, 29.530604151470843 ], [ -95.313296978667381, 29.530598152263732 ], [ -95.313643978404173, 29.530589152004026 ], [ -95.31399297901315, 29.530586151399458 ], [ -95.314999979332697, 29.53057015208617 ], [ -95.318999979922367, 29.530510151245846 ], [ -95.31955498061366, 29.530504151872488 ], [ -95.320456980222176, 29.530488151898677 ], [ -95.32102998030139, 29.530479151870303 ], [ -95.322146980925268, 29.530466151192979 ], [ -95.323736980956724, 29.530445151736952 ], [ -95.32508498152464, 29.530430151017338 ], [ -95.32790898295049, 29.530377151449677 ], [ -95.328424982250411, 29.53036715165883 ], [ -95.330018982915888, 29.530346151354628 ], [ -95.330299983041328, 29.530343151608907 ], [ -95.330446982786157, 29.530338151313618 ], [ -95.330524983081119, 29.530335151302754 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 409, "Tract": "48039660616", "Area_SqMi": 1.986351418044682, "total_2009": 68, "total_2010": 77, "total_2011": 69, "total_2012": 6, "total_2013": 11, "total_2014": 20, "total_2015": 25, "total_2016": 89, "total_2017": 183, "total_2018": 189, "total_2019": 200, "total_2020": 144, "age1": 25, "age2": 80, "age3": 33, "earn1": 22, "earn2": 51, "earn3": 65, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 1, "naics_s06": 0, "naics_s07": 11, "naics_s08": 0, "naics_s09": 11, "naics_s10": 0, "naics_s11": 2, "naics_s12": 12, "naics_s13": 0, "naics_s14": 7, "naics_s15": 6, "naics_s16": 84, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 94, "race2": 25, "race3": 0, "race4": 17, "race5": 0, "race6": 2, "ethnicity1": 96, "ethnicity2": 42, "edu1": 29, "edu2": 20, "edu3": 28, "edu4": 36, "Shape_Length": 34996.209425614623, "Shape_Area": 55376077.860656902, "total_2021": 159, "total_2022": 138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.417068005275752, 29.540572150615528 ], [ -95.417064005778613, 29.540488150620632 ], [ -95.417063006042184, 29.540479150046878 ], [ -95.417000005815396, 29.539171150133672 ], [ -95.416995005837606, 29.53900214991533 ], [ -95.416891005399549, 29.535258149216546 ], [ -95.416889005507059, 29.535149149020786 ], [ -95.416881005031158, 29.534999149612915 ], [ -95.416865005129083, 29.534717148947436 ], [ -95.416864005136134, 29.534682149534717 ], [ -95.416802005354583, 29.532620148999285 ], [ -95.416622005355919, 29.532543148641835 ], [ -95.416507004704116, 29.532494149130695 ], [ -95.416243005371641, 29.532380148807508 ], [ -95.415795004741753, 29.532188149098179 ], [ -95.415088004597479, 29.532119148445712 ], [ -95.41474700494355, 29.531890149014171 ], [ -95.414459004882929, 29.531524148195583 ], [ -95.414302004852928, 29.531066148543697 ], [ -95.413673004805005, 29.530424148333644 ], [ -95.413437003834872, 29.529806148232609 ], [ -95.413227004728867, 29.528912148244615 ], [ -95.41322700417706, 29.528134148042056 ], [ -95.413488004599671, 29.527744147846072 ], [ -95.413933004593957, 29.526530147514109 ], [ -95.413933004320427, 29.525682147504298 ], [ -95.41424700443757, 29.525247147663446 ], [ -95.414273004269873, 29.524789147621185 ], [ -95.4141940042785, 29.524720146937703 ], [ -95.414194003827546, 29.524078147344063 ], [ -95.414849004806328, 29.523414146612733 ], [ -95.414823004629767, 29.522933147243272 ], [ -95.414665003993576, 29.522452147028609 ], [ -95.414411004717479, 29.522175146484919 ], [ -95.414246004556915, 29.521994146333071 ], [ -95.413591003724619, 29.521742146885313 ], [ -95.413067003848411, 29.521673146743201 ], [ -95.411757003488091, 29.522201146715499 ], [ -95.411672003223174, 29.522280146770147 ], [ -95.411339003889424, 29.522590147270066 ], [ -95.410029002675245, 29.523003147258407 ], [ -95.408851003392542, 29.523851147038137 ], [ -95.407829002380453, 29.523897146949505 ], [ -95.405589001839502, 29.524467147265845 ], [ -95.404923002318284, 29.524637147965006 ], [ -95.404136002168201, 29.524837147399854 ], [ -95.403507001793869, 29.525135147747541 ], [ -95.40167400091272, 29.526189147987484 ], [ -95.399998001127443, 29.527037148488898 ], [ -95.397509000529709, 29.527473148240873 ], [ -95.396854000213366, 29.527290148752815 ], [ -95.396278000288319, 29.526855147850593 ], [ -95.395517999612338, 29.525778148300944 ], [ -95.395491999024514, 29.524930148007137 ], [ -95.395569999502129, 29.524564147655052 ], [ -95.396617999711808, 29.522685147838633 ], [ -95.396714999581192, 29.522274146893007 ], [ -95.396747999713398, 29.522135147573142 ], [ -95.39674799982329, 29.521837146816644 ], [ -95.396512999162056, 29.521540146773429 ], [ -95.395647999820739, 29.520898147334478 ], [ -95.394888998830041, 29.520807147139546 ], [ -95.394416999353155, 29.520875147334412 ], [ -95.394348999192218, 29.520928147575262 ], [ -95.393604998472881, 29.521517147080331 ], [ -95.392190998264439, 29.522250147364911 ], [ -95.39077699872395, 29.522984147801068 ], [ -95.389387998316053, 29.524038147614583 ], [ -95.388989997920604, 29.524501147773126 ], [ -95.388957997840635, 29.524538147702181 ], [ -95.388959997908444, 29.524660148449787 ], [ -95.388900998009504, 29.524685147739032 ], [ -95.388868998010238, 29.524698148097805 ], [ -95.38883099801356, 29.524725148143414 ], [ -95.388734998262152, 29.524818147697193 ], [ -95.388453997799928, 29.525130147793686 ], [ -95.388315998191501, 29.525228148115918 ], [ -95.388100997637736, 29.525365148545728 ], [ -95.387793997806625, 29.525507148046231 ], [ -95.387712997493779, 29.525527148006628 ], [ -95.387569997772601, 29.525533148678523 ], [ -95.387569997261977, 29.525544148235674 ], [ -95.387570997696059, 29.52557814801148 ], [ -95.387498997100565, 29.525588147945701 ], [ -95.387344997673438, 29.525619147887344 ], [ -95.387282997261181, 29.525605148487269 ], [ -95.387023997263213, 29.525548148323239 ], [ -95.387040997636987, 29.526215148435689 ], [ -95.387055997494684, 29.526802148227858 ], [ -95.387058997766673, 29.526919148824376 ], [ -95.387080997356321, 29.527810148731305 ], [ -95.387137997856968, 29.529366149389922 ], [ -95.387140997799563, 29.529821149274945 ], [ -95.387141997581935, 29.529952149168899 ], [ -95.387147997642927, 29.530095149454628 ], [ -95.387173997742565, 29.530679149293494 ], [ -95.387200997466152, 29.531271149726166 ], [ -95.387203997697597, 29.531342149748792 ], [ -95.387194997614301, 29.531778149819829 ], [ -95.387231997951616, 29.532764149383148 ], [ -95.387259997711936, 29.533486150015207 ], [ -95.387309998142953, 29.535475150290786 ], [ -95.387383998464614, 29.538402150586723 ], [ -95.387426998349767, 29.54012515160213 ], [ -95.387462998159947, 29.541186151920773 ], [ -95.387470997668771, 29.541413151657807 ], [ -95.387820997824619, 29.541409151256214 ], [ -95.389246998934397, 29.541394151397899 ], [ -95.389632998343316, 29.541361151167902 ], [ -95.389786999272062, 29.541348151772354 ], [ -95.390191999301578, 29.541335151607704 ], [ -95.390381998976665, 29.541330151055277 ], [ -95.393708999954413, 29.541251150912114 ], [ -95.393902999372585, 29.541246151244081 ], [ -95.397230000210868, 29.541166151016348 ], [ -95.39791400132205, 29.541150151297 ], [ -95.398855000814862, 29.541128150816853 ], [ -95.400072001061744, 29.541101151389324 ], [ -95.400142001203008, 29.541100151077128 ], [ -95.400369001114157, 29.541095151328861 ], [ -95.400529001862495, 29.541091151293038 ], [ -95.400759001660845, 29.541086151304832 ], [ -95.402209001981419, 29.541053151256474 ], [ -95.404029002196367, 29.54101215057003 ], [ -95.404871002676913, 29.540992150976681 ], [ -95.405996002975073, 29.540971150858756 ], [ -95.408552003493639, 29.540924151050575 ], [ -95.411556004816688, 29.540869150328206 ], [ -95.412935004844627, 29.540834150220839 ], [ -95.416826005326485, 29.540734150503525 ], [ -95.417045006223333, 29.540728150753672 ], [ -95.417068005275752, 29.540572150615528 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 410, "Tract": "48039660706", "Area_SqMi": 1.0823450383734821, "total_2009": 43, "total_2010": 57, "total_2011": 75, "total_2012": 61, "total_2013": 51, "total_2014": 199, "total_2015": 128, "total_2016": 108, "total_2017": 138, "total_2018": 145, "total_2019": 472, "total_2020": 335, "age1": 112, "age2": 188, "age3": 59, "earn1": 59, "earn2": 87, "earn3": 213, "naics_s01": 9, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1, "naics_s06": 7, "naics_s07": 229, "naics_s08": 9, "naics_s09": 4, "naics_s10": 3, "naics_s11": 9, "naics_s12": 16, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 56, "naics_s17": 0, "naics_s18": 7, "naics_s19": 6, "naics_s20": 0, "race1": 262, "race2": 50, "race3": 3, "race4": 36, "race5": 1, "race6": 7, "ethnicity1": 247, "ethnicity2": 112, "edu1": 37, "edu2": 73, "edu3": 70, "edu4": 67, "Shape_Length": 22452.351631190657, "Shape_Area": 30173927.217805825, "total_2021": 354, "total_2022": 359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.387470997668771, 29.541413151657807 ], [ -95.387462998159947, 29.541186151920773 ], [ -95.387426998349767, 29.54012515160213 ], [ -95.387383998464614, 29.538402150586723 ], [ -95.387309998142953, 29.535475150290786 ], [ -95.387259997711936, 29.533486150015207 ], [ -95.387231997951616, 29.532764149383148 ], [ -95.387194997614301, 29.531778149819829 ], [ -95.387203997697597, 29.531342149748792 ], [ -95.387200997466152, 29.531271149726166 ], [ -95.387173997742565, 29.530679149293494 ], [ -95.387147997642927, 29.530095149454628 ], [ -95.387141997581935, 29.529952149168899 ], [ -95.387140997799563, 29.529821149274945 ], [ -95.387137997856968, 29.529366149389922 ], [ -95.387080997356321, 29.527810148731305 ], [ -95.387058997766673, 29.526919148824376 ], [ -95.387055997494684, 29.526802148227858 ], [ -95.387040997636987, 29.526215148435689 ], [ -95.386565997348967, 29.526338148546532 ], [ -95.386357996896393, 29.526373148235386 ], [ -95.386033997260341, 29.526438148552309 ], [ -95.384562996876923, 29.526580148359329 ], [ -95.384337996451507, 29.526602148268395 ], [ -95.383334996511422, 29.52669914890377 ], [ -95.383057996281664, 29.526709148292436 ], [ -95.382973996125457, 29.526712148287888 ], [ -95.382883996116803, 29.526714149072301 ], [ -95.382792996689219, 29.526717149140563 ], [ -95.382703996442956, 29.526717148455312 ], [ -95.38261899589051, 29.526717148517989 ], [ -95.382534995974808, 29.52671914893914 ], [ -95.382455996263559, 29.526720149001889 ], [ -95.382382995917268, 29.526720148672226 ], [ -95.382250996452669, 29.526714149118167 ], [ -95.382107996600396, 29.526713148857979 ], [ -95.382027995669205, 29.526714148652839 ], [ -95.38194699618478, 29.526720148595338 ], [ -95.381859996586201, 29.526726148583016 ], [ -95.381773996568228, 29.526734148904449 ], [ -95.381684995700127, 29.526743148498323 ], [ -95.381592996438101, 29.526755148744886 ], [ -95.381499995788872, 29.526771148836168 ], [ -95.381409995828506, 29.526783148912219 ], [ -95.381321996075329, 29.526799148841068 ], [ -95.381234996180254, 29.526816148906008 ], [ -95.381153995788438, 29.526835148350809 ], [ -95.381075995906301, 29.526854148632879 ], [ -95.38099899546161, 29.52687214863646 ], [ -95.380852995647686, 29.526916149239284 ], [ -95.380743996062705, 29.52695514926479 ], [ -95.380648995577474, 29.526992148661737 ], [ -95.38047299569071, 29.527067149219928 ], [ -95.380324996139038, 29.527077148497458 ], [ -95.380353995363379, 29.52711814877015 ], [ -95.380218995836756, 29.527176148862669 ], [ -95.380162995669011, 29.527205148807276 ], [ -95.380131995765225, 29.527222148856744 ], [ -95.380047995566969, 29.527270149201868 ], [ -95.379990995728065, 29.527307148953451 ], [ -95.379970995736784, 29.527321149214419 ], [ -95.379900995850392, 29.527373149379994 ], [ -95.379823995130508, 29.527433149360956 ], [ -95.379748995172193, 29.527485148550706 ], [ -95.379674995798226, 29.527542148760027 ], [ -95.379605995487438, 29.527595148974179 ], [ -95.379539995921547, 29.527644149244338 ], [ -95.379476995245923, 29.527695148972363 ], [ -95.379418995407718, 29.527743148979834 ], [ -95.379365995065044, 29.527789149445503 ], [ -95.379252995492777, 29.527889149288594 ], [ -95.379213995456396, 29.527923149045101 ], [ -95.378997995539763, 29.528113149040372 ], [ -95.378816995437646, 29.528272148758784 ], [ -95.378782994993443, 29.528303149593039 ], [ -95.378747995539754, 29.528340148984704 ], [ -95.378187994779879, 29.528760149700926 ], [ -95.377810995050382, 29.52904114970675 ], [ -95.377301995231747, 29.529302149516319 ], [ -95.377094995096073, 29.529421149008982 ], [ -95.37699499529451, 29.529457149215258 ], [ -95.37693799540078, 29.529475149151899 ], [ -95.376875994720322, 29.529492149635189 ], [ -95.37680799480222, 29.529512149710598 ], [ -95.376736994904306, 29.529530149270041 ], [ -95.376663995197632, 29.529549149865673 ], [ -95.376588994374742, 29.529573149587648 ], [ -95.376511995143488, 29.529588149187454 ], [ -95.376437994807844, 29.529605149203011 ], [ -95.376296994908898, 29.529638149097501 ], [ -95.376158994540319, 29.529662149734033 ], [ -95.376090994726638, 29.529675149793771 ], [ -95.375963994322845, 29.529691149745801 ], [ -95.375712994793972, 29.529715149542582 ], [ -95.375653994868543, 29.529719149560442 ], [ -95.375598994781768, 29.5297231496675 ], [ -95.375543995050933, 29.529726149552161 ], [ -95.375489994865063, 29.529728149223128 ], [ -95.375287994755652, 29.529731149818488 ], [ -95.375210994682959, 29.529730149814451 ], [ -95.374695994391573, 29.529717149977873 ], [ -95.374591994757765, 29.529707149457877 ], [ -95.374292994533675, 29.529666149191872 ], [ -95.373980994442078, 29.529609149766113 ], [ -95.373692994375205, 29.529542149467524 ], [ -95.373483994335146, 29.529486149972914 ], [ -95.37315699370771, 29.529364149576843 ], [ -95.372944993702205, 29.529297149471262 ], [ -95.372728994074222, 29.529241149333952 ], [ -95.372509994300742, 29.529195149878923 ], [ -95.372286993501305, 29.529158149901424 ], [ -95.372063993778681, 29.52913214918452 ], [ -95.371838993936706, 29.529116149176339 ], [ -95.371538993696973, 29.529110149986529 ], [ -95.371237993643192, 29.52912414976695 ], [ -95.371012993237386, 29.529146150042141 ], [ -95.370716993008855, 29.529191149189995 ], [ -95.370424992894755, 29.529255149267222 ], [ -95.370210993579931, 29.529312150055667 ], [ -95.369690993516059, 29.529482149299149 ], [ -95.369450993365362, 29.529560149569864 ], [ -95.369288992936376, 29.529617150107768 ], [ -95.369014992442445, 29.529701150050041 ], [ -95.368728993008219, 29.529775149994197 ], [ -95.368329992485215, 29.529852149503213 ], [ -95.368008993083194, 29.529898149892347 ], [ -95.367758992482095, 29.529899149875558 ], [ -95.36759799268313, 29.529894149833066 ], [ -95.367461992620107, 29.529893149996457 ], [ -95.367402992606785, 29.529884149950902 ], [ -95.367045992764005, 29.529826149808279 ], [ -95.366870992363999, 29.529832149885774 ], [ -95.366859992548001, 29.529965149927794 ], [ -95.366826992656058, 29.53040715009346 ], [ -95.366761992817402, 29.530756150051104 ], [ -95.366744991894464, 29.530829150305333 ], [ -95.366701992698538, 29.531011150408887 ], [ -95.366685991894613, 29.531070150499449 ], [ -95.366635992919868, 29.531252149911261 ], [ -95.366551992642499, 29.531514150254456 ], [ -95.366437992340153, 29.531824150539457 ], [ -95.366173992825765, 29.532440150027089 ], [ -95.366059991809806, 29.532830150630179 ], [ -95.365987992035357, 29.53308015019093 ], [ -95.365944992455823, 29.533357150229861 ], [ -95.365889992468183, 29.533715150780939 ], [ -95.365882992355566, 29.534117151010335 ], [ -95.365888992631227, 29.534256151182252 ], [ -95.365900992256073, 29.534527150911906 ], [ -95.366032992344969, 29.535370150628342 ], [ -95.366115992232693, 29.535612151224775 ], [ -95.366217992756873, 29.535926150748946 ], [ -95.366441992837053, 29.536410150834833 ], [ -95.366686993104238, 29.536863151327371 ], [ -95.366872992426906, 29.537097151179221 ], [ -95.367052992940302, 29.537274151781613 ], [ -95.367126992358891, 29.53734715130761 ], [ -95.367439992683074, 29.537814151179038 ], [ -95.367546993005092, 29.537998151415419 ], [ -95.367589993237431, 29.538078151219569 ], [ -95.367718992492641, 29.538351151996398 ], [ -95.367800992583682, 29.538561151650963 ], [ -95.367869992837811, 29.538774151665113 ], [ -95.368008993444178, 29.539379152106321 ], [ -95.368622993538466, 29.539357151666426 ], [ -95.369209993633646, 29.539413151870622 ], [ -95.369488993537004, 29.539462152071803 ], [ -95.370122993263379, 29.53962415212256 ], [ -95.37082699354103, 29.539879152181069 ], [ -95.371164993514611, 29.540017152121006 ], [ -95.371436994010125, 29.540128151669396 ], [ -95.371660994238795, 29.540233152100836 ], [ -95.371932994200208, 29.540388151627401 ], [ -95.372322994743342, 29.540641151830446 ], [ -95.372755994416536, 29.540906151768112 ], [ -95.373354994931262, 29.541253152052178 ], [ -95.373711994261299, 29.541414151783272 ], [ -95.374093994824449, 29.541530152108297 ], [ -95.374206994516612, 29.541564151659415 ], [ -95.374574994934051, 29.541639152388452 ], [ -95.374792994974172, 29.541685152081012 ], [ -95.37553099481822, 29.541694151676964 ], [ -95.378065995987399, 29.541636152170216 ], [ -95.379576995776702, 29.541601151611459 ], [ -95.380337996727732, 29.541584151794986 ], [ -95.381941997053332, 29.541546152002272 ], [ -95.383832997750034, 29.541502151888444 ], [ -95.384779997637708, 29.541480151676211 ], [ -95.386746997993541, 29.541436151445659 ], [ -95.387006997870913, 29.541430151499998 ], [ -95.387260997947195, 29.541419151300907 ], [ -95.387470997668771, 29.541413151657807 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 411, "Tract": "48039660303", "Area_SqMi": 1.484663193699975, "total_2009": 552, "total_2010": 563, "total_2011": 655, "total_2012": 612, "total_2013": 616, "total_2014": 946, "total_2015": 1015, "total_2016": 973, "total_2017": 1005, "total_2018": 991, "total_2019": 1164, "total_2020": 746, "age1": 246, "age2": 378, "age3": 163, "earn1": 161, "earn2": 383, "earn3": 243, "naics_s01": 17, "naics_s02": 6, "naics_s03": 0, "naics_s04": 58, "naics_s05": 32, "naics_s06": 4, "naics_s07": 392, "naics_s08": 7, "naics_s09": 0, "naics_s10": 5, "naics_s11": 8, "naics_s12": 6, "naics_s13": 0, "naics_s14": 8, "naics_s15": 10, "naics_s16": 200, "naics_s17": 2, "naics_s18": 4, "naics_s19": 28, "naics_s20": 0, "race1": 513, "race2": 190, "race3": 3, "race4": 64, "race5": 1, "race6": 16, "ethnicity1": 558, "ethnicity2": 229, "edu1": 131, "edu2": 165, "edu3": 159, "edu4": 86, "Shape_Length": 34651.215089098747, "Shape_Area": 41389868.813903891, "total_2021": 701, "total_2022": 787 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.270217967417565, 29.536538154650668 ], [ -95.270278967902073, 29.536506154435525 ], [ -95.268985967760528, 29.534591153778774 ], [ -95.268062966773229, 29.533264153742703 ], [ -95.267999966944686, 29.53317415388247 ], [ -95.266543966376261, 29.53100815384564 ], [ -95.266302966163408, 29.530650153407073 ], [ -95.266060967116289, 29.530290152971666 ], [ -95.265376965884656, 29.529274152729204 ], [ -95.265201965852839, 29.529004153360653 ], [ -95.264488966258085, 29.527900152499846 ], [ -95.263064965855008, 29.525775152682044 ], [ -95.261703965671856, 29.523779152399854 ], [ -95.261456965031698, 29.523416152370206 ], [ -95.260433964621868, 29.521915151709777 ], [ -95.260181964184582, 29.521489151776514 ], [ -95.260109965001973, 29.521368151890158 ], [ -95.259854964464267, 29.521598151382122 ], [ -95.259453964222146, 29.521966151770208 ], [ -95.259283964983268, 29.522127152274361 ], [ -95.258941964665709, 29.522451152190882 ], [ -95.258709964328602, 29.522669152139699 ], [ -95.257894964367665, 29.523418151862295 ], [ -95.257578964012524, 29.523710152653326 ], [ -95.257454964115823, 29.523818152115933 ], [ -95.256864964272225, 29.524412152338162 ], [ -95.254323963599305, 29.526771153244699 ], [ -95.252192963453041, 29.528745153909941 ], [ -95.251935963252933, 29.528982153209725 ], [ -95.251822962842525, 29.529086153581893 ], [ -95.251638962602883, 29.529257153679755 ], [ -95.25133196274821, 29.529544154088363 ], [ -95.251032962247621, 29.529804154030654 ], [ -95.250693962409954, 29.530121153938602 ], [ -95.250178962546812, 29.530590154318375 ], [ -95.249238961883535, 29.531442153871662 ], [ -95.249167962228157, 29.531507153758248 ], [ -95.248523962290903, 29.532104154468136 ], [ -95.247183962113709, 29.533351154496387 ], [ -95.246928961633074, 29.533588154689802 ], [ -95.245849962113766, 29.534590154764903 ], [ -95.244765961170003, 29.535599154883759 ], [ -95.242780961382991, 29.537425155488766 ], [ -95.242570961296892, 29.537614155805006 ], [ -95.241732960831698, 29.538367156139898 ], [ -95.240935960693946, 29.539085155545493 ], [ -95.240305960008641, 29.539652156247236 ], [ -95.238952960083139, 29.540901156478977 ], [ -95.238684960315354, 29.541148156647633 ], [ -95.238432960004218, 29.541381156168068 ], [ -95.23785795974554, 29.541911156774546 ], [ -95.236224959407963, 29.543417157222152 ], [ -95.235173959426149, 29.54438515700275 ], [ -95.232637959192488, 29.546730157659951 ], [ -95.231921958912096, 29.547394157609048 ], [ -95.232545958315413, 29.547650158153655 ], [ -95.23297195898725, 29.547792158379774 ], [ -95.233262958654166, 29.547863158076868 ], [ -95.233720959531539, 29.547957158241324 ], [ -95.234085958977332, 29.547992158148162 ], [ -95.234419959029253, 29.548013158077993 ], [ -95.234768959309449, 29.548021158442907 ], [ -95.235433959438851, 29.547996157980368 ], [ -95.235797959301308, 29.547981158019283 ], [ -95.237364960044076, 29.547889157901441 ], [ -95.239476960069581, 29.547783157561433 ], [ -95.241810961382257, 29.547669157630345 ], [ -95.242200961167796, 29.547671157525095 ], [ -95.242548961329902, 29.547693158017442 ], [ -95.242701961283629, 29.547708157805342 ], [ -95.242806960993917, 29.547720157484669 ], [ -95.243018961532186, 29.547752157881167 ], [ -95.243261961638623, 29.547800158033947 ], [ -95.243559961569133, 29.547869158002097 ], [ -95.24364796164943, 29.547889157993644 ], [ -95.244146961808738, 29.548041157755069 ], [ -95.244563961952821, 29.548196157928597 ], [ -95.244656961514409, 29.548235157799656 ], [ -95.248525962780747, 29.544593156602797 ], [ -95.253082963475208, 29.540398156205129 ], [ -95.253249963377385, 29.540244155633406 ], [ -95.253672963763918, 29.539842155331971 ], [ -95.255901964574562, 29.537726154821563 ], [ -95.258903965340465, 29.535059154505614 ], [ -95.259331964679888, 29.534683154115751 ], [ -95.259668965645574, 29.534992154832334 ], [ -95.260263965674795, 29.535449154692294 ], [ -95.261156965244865, 29.536184155094578 ], [ -95.26183796619155, 29.536764154413028 ], [ -95.261897965976161, 29.53681615452226 ], [ -95.262142965958532, 29.537068155122078 ], [ -95.262380966011847, 29.537327155289315 ], [ -95.262523966344304, 29.537537155177048 ], [ -95.262775965705487, 29.537884155221786 ], [ -95.262952966221022, 29.538129154621604 ], [ -95.263554966470096, 29.538731154811948 ], [ -95.2639729668699, 29.538449155435959 ], [ -95.264168966967119, 29.538317154798492 ], [ -95.264472966592393, 29.5381311552675 ], [ -95.264787966180933, 29.537959155174992 ], [ -95.265112967129994, 29.537802154768137 ], [ -95.265431966658483, 29.537667154572411 ], [ -95.265789967125841, 29.537536155224423 ], [ -95.266139966465516, 29.537428154499651 ], [ -95.266376967333713, 29.537366155111734 ], [ -95.266857966684441, 29.537260154353856 ], [ -95.268818967965714, 29.536950154939991 ], [ -95.269063967358676, 29.536914154555223 ], [ -95.269304967884395, 29.536865154613249 ], [ -95.269541968092682, 29.536804154430964 ], [ -95.269773967613702, 29.536728154297698 ], [ -95.269998967420449, 29.536638154675199 ], [ -95.270217967417565, 29.536538154650668 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 412, "Tract": "48039660612", "Area_SqMi": 1.3181725728063283, "total_2009": 407, "total_2010": 725, "total_2011": 1193, "total_2012": 1308, "total_2013": 1711, "total_2014": 1521, "total_2015": 1777, "total_2016": 1829, "total_2017": 1978, "total_2018": 2068, "total_2019": 2245, "total_2020": 2426, "age1": 1447, "age2": 1138, "age3": 417, "earn1": 1220, "earn2": 1130, "earn3": 652, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 2, "naics_s06": 16, "naics_s07": 821, "naics_s08": 100, "naics_s09": 0, "naics_s10": 21, "naics_s11": 19, "naics_s12": 134, "naics_s13": 0, "naics_s14": 80, "naics_s15": 55, "naics_s16": 328, "naics_s17": 7, "naics_s18": 1333, "naics_s19": 79, "naics_s20": 0, "race1": 1842, "race2": 777, "race3": 21, "race4": 278, "race5": 8, "race6": 76, "ethnicity1": 2043, "ethnicity2": 959, "edu1": 345, "edu2": 451, "edu3": 440, "edu4": 319, "Shape_Length": 28770.931203933629, "Shape_Area": 36748395.254934527, "total_2021": 2521, "total_2022": 3002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.417477006092611, 29.55531415386703 ], [ -95.417475006907665, 29.555217153802914 ], [ -95.417473006678776, 29.555156153435675 ], [ -95.417444006192852, 29.554247153281036 ], [ -95.41738900630439, 29.552527152456985 ], [ -95.417374006711398, 29.552076152504451 ], [ -95.417363006583017, 29.551750152992522 ], [ -95.416960006062979, 29.551773152919715 ], [ -95.416683005984481, 29.551770152514823 ], [ -95.416449006085088, 29.551778152414897 ], [ -95.416133006326106, 29.551690152570238 ], [ -95.415767005447606, 29.551548152557132 ], [ -95.415491005898147, 29.551395152751692 ], [ -95.415343005810541, 29.551289152771538 ], [ -95.415103006051524, 29.551103153017081 ], [ -95.414844005495183, 29.550818152167057 ], [ -95.414289005556256, 29.550037152703126 ], [ -95.414134004877923, 29.549807152391221 ], [ -95.413999005580337, 29.549661152216309 ], [ -95.413621004898957, 29.549257152149714 ], [ -95.413402004746757, 29.549129152212007 ], [ -95.413125005295157, 29.548968152189957 ], [ -95.412728005074456, 29.548762152366809 ], [ -95.412009004580156, 29.548630151951293 ], [ -95.411519005015165, 29.54859515257581 ], [ -95.411278004843354, 29.548582152567107 ], [ -95.411177004168863, 29.548586152449992 ], [ -95.410738004034357, 29.548602152397422 ], [ -95.410391004714526, 29.548640152591918 ], [ -95.409813004729997, 29.548833151917659 ], [ -95.409590003751191, 29.548934152647689 ], [ -95.409420004336951, 29.548689152430704 ], [ -95.40933400447075, 29.548547152228775 ], [ -95.409265004168077, 29.54841115198257 ], [ -95.409195003608602, 29.548233152677753 ], [ -95.409156003619813, 29.548074151882801 ], [ -95.40913300408441, 29.547860151993504 ], [ -95.409126004103115, 29.547708152546541 ], [ -95.40910300425378, 29.546938152358695 ], [ -95.409070003468841, 29.546681151557088 ], [ -95.409030003520982, 29.546535151633936 ], [ -95.408941003785515, 29.546317152089543 ], [ -95.408839003689465, 29.546139151509564 ], [ -95.408717003376239, 29.545974151518028 ], [ -95.408642003727863, 29.545896151866575 ], [ -95.408528003519578, 29.545776151569832 ], [ -95.408337004121762, 29.545627151523632 ], [ -95.408102003147931, 29.545492151742774 ], [ -95.407878003392099, 29.5453931517916 ], [ -95.40766300320972, 29.545320151946878 ], [ -95.40742900355697, 29.545274152108306 ], [ -95.407250003474687, 29.545251152026953 ], [ -95.406996003375099, 29.545244151608362 ], [ -95.406699003324078, 29.545254152139108 ], [ -95.406326002761205, 29.54527715204388 ], [ -95.406130003384277, 29.545302151717642 ], [ -95.406045002777574, 29.545313152112513 ], [ -95.405847003423887, 29.545340152175918 ], [ -95.405625003193379, 29.545389152032129 ], [ -95.405295002844156, 29.545498152169731 ], [ -95.40496200291588, 29.545620151973036 ], [ -95.404618002785739, 29.545749151746126 ], [ -95.404344002857258, 29.545835152360745 ], [ -95.404093002688612, 29.545908151846717 ], [ -95.403859003004058, 29.545971152060002 ], [ -95.403545002711425, 29.546040152396337 ], [ -95.403244002766286, 29.546096151590945 ], [ -95.402914002178846, 29.546149151980433 ], [ -95.402696002387259, 29.546172152011241 ], [ -95.402409001875611, 29.546202151610974 ], [ -95.402128002257186, 29.546222152109987 ], [ -95.401837001725369, 29.546222152431312 ], [ -95.401568002025542, 29.546203151871346 ], [ -95.401327001887836, 29.546180152511564 ], [ -95.401086001880643, 29.546167152002521 ], [ -95.400736002050763, 29.546177151731808 ], [ -95.400516001637101, 29.546183152364041 ], [ -95.400465001553712, 29.544663151467443 ], [ -95.400444001820006, 29.54394315177824 ], [ -95.400428002003821, 29.54335515139611 ], [ -95.40041200204081, 29.542873151383411 ], [ -95.400374001152855, 29.541259150925207 ], [ -95.400369001114157, 29.541095151328861 ], [ -95.400142001203008, 29.541100151077128 ], [ -95.400072001061744, 29.541101151389324 ], [ -95.398855000814862, 29.541128150816853 ], [ -95.39791400132205, 29.541150151297 ], [ -95.397230000210868, 29.541166151016348 ], [ -95.393902999372585, 29.541246151244081 ], [ -95.393708999954413, 29.541251150912114 ], [ -95.390381998976665, 29.541330151055277 ], [ -95.390191999301578, 29.541335151607704 ], [ -95.389786999272062, 29.541348151772354 ], [ -95.389632998343316, 29.541361151167902 ], [ -95.389246998934397, 29.541394151397899 ], [ -95.387820997824619, 29.541409151256214 ], [ -95.387470997668771, 29.541413151657807 ], [ -95.38748499808257, 29.541815151493047 ], [ -95.38749399821539, 29.542194151422404 ], [ -95.387566998217039, 29.545036152517898 ], [ -95.387645998034486, 29.547225152700804 ], [ -95.387675998401576, 29.548056152925042 ], [ -95.387759999088829, 29.550773153946032 ], [ -95.387783999159282, 29.551554153699502 ], [ -95.387801998633748, 29.552487153618365 ], [ -95.3878579993019, 29.555222154593714 ], [ -95.387903998755448, 29.555876154497131 ], [ -95.388480998685054, 29.555858154930114 ], [ -95.390779999888025, 29.555926154346412 ], [ -95.39098099997598, 29.555920154653222 ], [ -95.391318999420847, 29.555910154493009 ], [ -95.392245000558432, 29.5558831540211 ], [ -95.395017000487073, 29.555811154563379 ], [ -95.395210000972824, 29.555807154427338 ], [ -95.397989001262232, 29.555756154566495 ], [ -95.400771001794297, 29.555700154245134 ], [ -95.407105003602339, 29.555566153969583 ], [ -95.414725005927579, 29.555373153307848 ], [ -95.417477006092611, 29.55531415386703 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 413, "Tract": "48039660703", "Area_SqMi": 1.2587993367786054, "total_2009": 1273, "total_2010": 1230, "total_2011": 1186, "total_2012": 1274, "total_2013": 1307, "total_2014": 1583, "total_2015": 1677, "total_2016": 1756, "total_2017": 1781, "total_2018": 1682, "total_2019": 1940, "total_2020": 1598, "age1": 728, "age2": 650, "age3": 281, "earn1": 641, "earn2": 588, "earn3": 430, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 4, "naics_s06": 0, "naics_s07": 768, "naics_s08": 2, "naics_s09": 31, "naics_s10": 22, "naics_s11": 10, "naics_s12": 102, "naics_s13": 8, "naics_s14": 18, "naics_s15": 35, "naics_s16": 107, "naics_s17": 25, "naics_s18": 428, "naics_s19": 98, "naics_s20": 0, "race1": 1157, "race2": 355, "race3": 12, "race4": 105, "race5": 1, "race6": 29, "ethnicity1": 1042, "ethnicity2": 617, "edu1": 249, "edu2": 252, "edu3": 260, "edu4": 170, "Shape_Length": 24469.831414424421, "Shape_Area": 35093171.052790664, "total_2021": 1585, "total_2022": 1659 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.387903998755448, 29.555876154497131 ], [ -95.3878579993019, 29.555222154593714 ], [ -95.387801998633748, 29.552487153618365 ], [ -95.387783999159282, 29.551554153699502 ], [ -95.387759999088829, 29.550773153946032 ], [ -95.387675998401576, 29.548056152925042 ], [ -95.387645998034486, 29.547225152700804 ], [ -95.387566998217039, 29.545036152517898 ], [ -95.38749399821539, 29.542194151422404 ], [ -95.38748499808257, 29.541815151493047 ], [ -95.387470997668771, 29.541413151657807 ], [ -95.387260997947195, 29.541419151300907 ], [ -95.387006997870913, 29.541430151499998 ], [ -95.386746997993541, 29.541436151445659 ], [ -95.384779997637708, 29.541480151676211 ], [ -95.383832997750034, 29.541502151888444 ], [ -95.381941997053332, 29.541546152002272 ], [ -95.380337996727732, 29.541584151794986 ], [ -95.379576995776702, 29.541601151611459 ], [ -95.378065995987399, 29.541636152170216 ], [ -95.37553099481822, 29.541694151676964 ], [ -95.374792994974172, 29.541685152081012 ], [ -95.374574994934051, 29.541639152388452 ], [ -95.374206994516612, 29.541564151659415 ], [ -95.374093994824449, 29.541530152108297 ], [ -95.373711994261299, 29.541414151783272 ], [ -95.373354994931262, 29.541253152052178 ], [ -95.372755994416536, 29.540906151768112 ], [ -95.372322994743342, 29.540641151830446 ], [ -95.371932994200208, 29.540388151627401 ], [ -95.371660994238795, 29.540233152100836 ], [ -95.371436994010125, 29.540128151669396 ], [ -95.371164993514611, 29.540017152121006 ], [ -95.37082699354103, 29.539879152181069 ], [ -95.370122993263379, 29.53962415212256 ], [ -95.369488993537004, 29.539462152071803 ], [ -95.369209993633646, 29.539413151870622 ], [ -95.368622993538466, 29.539357151666426 ], [ -95.368008993444178, 29.539379152106321 ], [ -95.368025993317218, 29.539479151907262 ], [ -95.368078992666995, 29.539721151933588 ], [ -95.368117993095026, 29.539965152107783 ], [ -95.368141993583549, 29.540210152124718 ], [ -95.368150992994074, 29.540456151964328 ], [ -95.368143993576098, 29.540733152468672 ], [ -95.368115993520789, 29.541029152466731 ], [ -95.36807599286891, 29.541273152298192 ], [ -95.368025993674124, 29.541498151858995 ], [ -95.367899993695119, 29.541910152476035 ], [ -95.367869993000369, 29.541989151991388 ], [ -95.36786399318855, 29.542003152609706 ], [ -95.367795993267407, 29.542182152657283 ], [ -95.367727993298189, 29.542363152183764 ], [ -95.367681993654941, 29.542486152288006 ], [ -95.367592993441662, 29.542652152221795 ], [ -95.367543993078314, 29.542752152613005 ], [ -95.367456993014898, 29.542954152933348 ], [ -95.36738199264073, 29.54316115257858 ], [ -95.367319992778462, 29.543372152371063 ], [ -95.367271992935216, 29.54358215226026 ], [ -95.367257992844856, 29.543680152519439 ], [ -95.367238993599798, 29.543779152564454 ], [ -95.367225993171658, 29.543888152484854 ], [ -95.367209993466815, 29.544102152401162 ], [ -95.367207993335072, 29.544319153262162 ], [ -95.367218993269233, 29.544535153253367 ], [ -95.367243993275508, 29.54475115266651 ], [ -95.367275993393179, 29.548152153851326 ], [ -95.367314993749659, 29.549006154067285 ], [ -95.367429993639377, 29.551487154680956 ], [ -95.367440993136924, 29.551714154746175 ], [ -95.36745299390445, 29.552314154446872 ], [ -95.367489993855187, 29.553009155025599 ], [ -95.367517993326103, 29.553551154703779 ], [ -95.367407993258411, 29.554356154570783 ], [ -95.367373993200118, 29.554508155076938 ], [ -95.367336993234289, 29.554754154856155 ], [ -95.367304993325789, 29.555050155428518 ], [ -95.367311993554182, 29.555226155320298 ], [ -95.367320993238778, 29.555415155331726 ], [ -95.367362993359848, 29.555644155553743 ], [ -95.367462994062933, 29.556089155485726 ], [ -95.367605994230786, 29.556461155522573 ], [ -95.367667993309212, 29.556600154911074 ], [ -95.367722993751897, 29.556721155440137 ], [ -95.367853993612087, 29.5566821553269 ], [ -95.368501994369439, 29.556506155385343 ], [ -95.368896994401808, 29.556400154839483 ], [ -95.369442993763741, 29.556327155042293 ], [ -95.369913994352459, 29.556287154966469 ], [ -95.37007199394607, 29.55628215512953 ], [ -95.370832994191048, 29.556257155132357 ], [ -95.372405994600044, 29.5562051549926 ], [ -95.372898995184556, 29.556190155105032 ], [ -95.373161995607916, 29.556181155308195 ], [ -95.374781995512421, 29.556132155087926 ], [ -95.374910995680153, 29.556128155243268 ], [ -95.37624299567311, 29.556089155406333 ], [ -95.377354996357298, 29.55605715535016 ], [ -95.377687996125346, 29.556051155152744 ], [ -95.378691996756231, 29.556035154547274 ], [ -95.381107996890435, 29.555997155167905 ], [ -95.381543997664636, 29.555990155019568 ], [ -95.382032996962721, 29.55598215459268 ], [ -95.383733997367571, 29.555974154380188 ], [ -95.38393499801802, 29.555973154549307 ], [ -95.384286998295011, 29.555971154260341 ], [ -95.384559998012378, 29.555962154223078 ], [ -95.385984998136749, 29.5559131543035 ], [ -95.386768998803859, 29.555899154151586 ], [ -95.386904998554712, 29.555897154462084 ], [ -95.387455999219753, 29.555887154408953 ], [ -95.38769399905965, 29.555883154901828 ], [ -95.387903998755448, 29.555876154497131 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 414, "Tract": "48039660302", "Area_SqMi": 1.1454107803191662, "total_2009": 450, "total_2010": 453, "total_2011": 409, "total_2012": 1182, "total_2013": 1218, "total_2014": 1340, "total_2015": 1510, "total_2016": 1683, "total_2017": 1697, "total_2018": 1564, "total_2019": 1625, "total_2020": 1933, "age1": 416, "age2": 1171, "age3": 326, "earn1": 263, "earn2": 636, "earn3": 1014, "naics_s01": 0, "naics_s02": 0, "naics_s03": 95, "naics_s04": 64, "naics_s05": 6, "naics_s06": 3, "naics_s07": 12, "naics_s08": 4, "naics_s09": 8, "naics_s10": 8, "naics_s11": 1, "naics_s12": 25, "naics_s13": 0, "naics_s14": 429, "naics_s15": 44, "naics_s16": 100, "naics_s17": 146, "naics_s18": 157, "naics_s19": 46, "naics_s20": 765, "race1": 1466, "race2": 317, "race3": 15, "race4": 80, "race5": 1, "race6": 34, "ethnicity1": 1319, "ethnicity2": 594, "edu1": 278, "edu2": 412, "edu3": 548, "edu4": 259, "Shape_Length": 27118.774580746693, "Shape_Area": 31932092.165155411, "total_2021": 1919, "total_2022": 1913 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.277052969929429, 29.546666156725596 ], [ -95.276663970501374, 29.546082156300347 ], [ -95.275809969370584, 29.544802156019859 ], [ -95.274331969085054, 29.54260415593977 ], [ -95.273986969134654, 29.542092155254988 ], [ -95.273895968824036, 29.541957155853034 ], [ -95.27370496871454, 29.541671155026918 ], [ -95.272374968326119, 29.53968315459689 ], [ -95.271214968587216, 29.537939154994945 ], [ -95.270402967681648, 29.536719154182627 ], [ -95.270349967497978, 29.536639154375681 ], [ -95.270301968345365, 29.53654915448087 ], [ -95.270278967902073, 29.536506154435525 ], [ -95.270217967417565, 29.536538154650668 ], [ -95.269998967420449, 29.536638154675199 ], [ -95.269773967613702, 29.536728154297698 ], [ -95.269541968092682, 29.536804154430964 ], [ -95.269304967884395, 29.536865154613249 ], [ -95.269063967358676, 29.536914154555223 ], [ -95.268818967965714, 29.536950154939991 ], [ -95.266857966684441, 29.537260154353856 ], [ -95.266376967333713, 29.537366155111734 ], [ -95.266139966465516, 29.537428154499651 ], [ -95.265789967125841, 29.537536155224423 ], [ -95.265431966658483, 29.537667154572411 ], [ -95.265112967129994, 29.537802154768137 ], [ -95.264787966180933, 29.537959155174992 ], [ -95.264472966592393, 29.5381311552675 ], [ -95.264168966967119, 29.538317154798492 ], [ -95.2639729668699, 29.538449155435959 ], [ -95.263554966470096, 29.538731154811948 ], [ -95.262952966221022, 29.538129154621604 ], [ -95.262775965705487, 29.537884155221786 ], [ -95.262523966344304, 29.537537155177048 ], [ -95.262380966011847, 29.537327155289315 ], [ -95.262142965958532, 29.537068155122078 ], [ -95.261897965976161, 29.53681615452226 ], [ -95.26183796619155, 29.536764154413028 ], [ -95.261156965244865, 29.536184155094578 ], [ -95.260263965674795, 29.535449154692294 ], [ -95.259668965645574, 29.534992154832334 ], [ -95.259331964679888, 29.534683154115751 ], [ -95.258903965340465, 29.535059154505614 ], [ -95.255901964574562, 29.537726154821563 ], [ -95.253672963763918, 29.539842155331971 ], [ -95.253249963377385, 29.540244155633406 ], [ -95.253082963475208, 29.540398156205129 ], [ -95.248525962780747, 29.544593156602797 ], [ -95.244656961514409, 29.548235157799656 ], [ -95.245263961786549, 29.548487157553932 ], [ -95.24732496292981, 29.549331157909648 ], [ -95.247399963120415, 29.549362157862024 ], [ -95.247797962782798, 29.549524157686132 ], [ -95.248562962650368, 29.549836157612443 ], [ -95.248898962679888, 29.549972157822548 ], [ -95.250208963447506, 29.550523157742759 ], [ -95.25102996359972, 29.550836158349906 ], [ -95.251508964051624, 29.551037158525457 ], [ -95.252842963600173, 29.55157815849174 ], [ -95.254627964553464, 29.552291158135027 ], [ -95.255193964594227, 29.552524158037723 ], [ -95.258591965143836, 29.549332157140842 ], [ -95.259129965755676, 29.548845157280393 ], [ -95.259678966169218, 29.54833715747078 ], [ -95.260216965478833, 29.547834156823022 ], [ -95.26075896637505, 29.547333157255117 ], [ -95.261136966181056, 29.546988157302167 ], [ -95.261306966504236, 29.546839157083195 ], [ -95.261408966069709, 29.546751156443992 ], [ -95.261767966128801, 29.546389156633179 ], [ -95.261857965936528, 29.546306157170175 ], [ -95.262007966440322, 29.546197157075312 ], [ -95.262098966582059, 29.5461711564786 ], [ -95.262292966029335, 29.546226156553942 ], [ -95.26278796687572, 29.546615156861606 ], [ -95.262993966387441, 29.546758156400301 ], [ -95.263244966680716, 29.546864156947979 ], [ -95.263540966376851, 29.546956156425182 ], [ -95.263948967231087, 29.546990156707196 ], [ -95.264740966920414, 29.546976156968828 ], [ -95.264967967276121, 29.546970156978215 ], [ -95.265654967508041, 29.54695215705171 ], [ -95.266627967150086, 29.546899156617709 ], [ -95.26859396766686, 29.546861156263901 ], [ -95.268635967962354, 29.546860156392061 ], [ -95.268873968335072, 29.546856156622137 ], [ -95.270774968570279, 29.546819156713504 ], [ -95.270910968265554, 29.546816156735417 ], [ -95.274488969983295, 29.546745156205059 ], [ -95.276246969699343, 29.546710155953136 ], [ -95.276571970244717, 29.54669715666595 ], [ -95.277052969929429, 29.546666156725596 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 415, "Tract": "48039660803", "Area_SqMi": 1.6082144025079661, "total_2009": 421, "total_2010": 384, "total_2011": 506, "total_2012": 488, "total_2013": 478, "total_2014": 455, "total_2015": 514, "total_2016": 461, "total_2017": 490, "total_2018": 459, "total_2019": 474, "total_2020": 549, "age1": 129, "age2": 254, "age3": 128, "earn1": 92, "earn2": 168, "earn3": 251, "naics_s01": 0, "naics_s02": 15, "naics_s03": 0, "naics_s04": 45, "naics_s05": 25, "naics_s06": 10, "naics_s07": 95, "naics_s08": 19, "naics_s09": 0, "naics_s10": 14, "naics_s11": 21, "naics_s12": 46, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 101, "naics_s17": 0, "naics_s18": 27, "naics_s19": 89, "naics_s20": 0, "race1": 379, "race2": 63, "race3": 3, "race4": 55, "race5": 2, "race6": 9, "ethnicity1": 371, "ethnicity2": 140, "edu1": 79, "edu2": 94, "edu3": 138, "edu4": 71, "Shape_Length": 28371.078356575697, "Shape_Area": 44834265.055463448, "total_2021": 462, "total_2022": 511 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.331035984081112, 29.559300157188837 ], [ -95.331013984204034, 29.558169156982153 ], [ -95.331001983976179, 29.55780315694685 ], [ -95.330993984321722, 29.557244156451777 ], [ -95.330986984098843, 29.556969156971 ], [ -95.330972984578437, 29.555781156643384 ], [ -95.330959984453855, 29.555301156710108 ], [ -95.330948984757029, 29.554117156059661 ], [ -95.330928984504922, 29.552832156179257 ], [ -95.330910983857521, 29.552029155462218 ], [ -95.330901983799734, 29.551939155306219 ], [ -95.330861984304761, 29.549542155387293 ], [ -95.330858983765822, 29.549400155045547 ], [ -95.330873983843475, 29.548462155176686 ], [ -95.330853984438107, 29.547876155056379 ], [ -95.330790984364, 29.54599415401993 ], [ -95.330771984207956, 29.544856154422579 ], [ -95.330762983504073, 29.544345154252767 ], [ -95.330755983543526, 29.544249154233583 ], [ -95.330758983545039, 29.543662153479982 ], [ -95.330758983745142, 29.543650153571765 ], [ -95.330758983383703, 29.543533154175279 ], [ -95.330760983495466, 29.543175153388759 ], [ -95.33076198367948, 29.543033153404998 ], [ -95.330721983459654, 29.541836153300665 ], [ -95.330712983705709, 29.541254153508731 ], [ -95.319019980478899, 29.54146115366693 ], [ -95.318678980339158, 29.541599154185359 ], [ -95.318547980510559, 29.541851153573958 ], [ -95.318362980724217, 29.544852154150647 ], [ -95.318345980946617, 29.54487415492677 ], [ -95.318257980498132, 29.544989154866602 ], [ -95.317550980434788, 29.545241154719619 ], [ -95.314259979689268, 29.546146154785966 ], [ -95.313226979537603, 29.546430155360699 ], [ -95.310092978534172, 29.546496154782986 ], [ -95.306031977035417, 29.546583155421384 ], [ -95.305804977325579, 29.546588155297378 ], [ -95.305979977686889, 29.546625155449949 ], [ -95.305985977569492, 29.547038155745234 ], [ -95.305990977215188, 29.547340155822255 ], [ -95.305995977917803, 29.547671155190848 ], [ -95.305998977932063, 29.547865155201684 ], [ -95.30601297773535, 29.548806156203284 ], [ -95.306046977647028, 29.550848156038764 ], [ -95.306076978172854, 29.552354156802473 ], [ -95.306071977798439, 29.55283715626905 ], [ -95.306083978180951, 29.552954156411843 ], [ -95.306123977503091, 29.554875156790342 ], [ -95.306116978258828, 29.555177157070776 ], [ -95.306160978334134, 29.555793157353907 ], [ -95.306204977725926, 29.557333157948761 ], [ -95.306206977938814, 29.557558157560386 ], [ -95.306220977974746, 29.558623157812832 ], [ -95.306234978208892, 29.559625158293866 ], [ -95.307638978757765, 29.559611158315978 ], [ -95.307703978056026, 29.559606158222824 ], [ -95.307896978984957, 29.559591157685393 ], [ -95.308141978235412, 29.559565158295623 ], [ -95.308983979002647, 29.55955515782632 ], [ -95.310399978721577, 29.559525157772743 ], [ -95.310934979375773, 29.559517157555739 ], [ -95.312476979749945, 29.559487157657646 ], [ -95.313139979737585, 29.559473158088625 ], [ -95.314279979792175, 29.559456157990599 ], [ -95.31447898008318, 29.559452157782847 ], [ -95.315790980576679, 29.559430157390121 ], [ -95.316905981039966, 29.559421157468023 ], [ -95.317872980837421, 29.559414157463845 ], [ -95.318047981517637, 29.559410157325491 ], [ -95.319712981634254, 29.559393157788829 ], [ -95.32061698154817, 29.559388157620152 ], [ -95.321339982214596, 29.559369157702662 ], [ -95.32231298260308, 29.559345157008622 ], [ -95.323829982484753, 29.559330157248482 ], [ -95.324443982741101, 29.559319157256024 ], [ -95.326563983477783, 29.559300156950034 ], [ -95.326963983812149, 29.559295157254947 ], [ -95.327580983569845, 29.559289156836872 ], [ -95.328316983640676, 29.5592801570502 ], [ -95.329247984527555, 29.559260156977203 ], [ -95.331035984081112, 29.559300157188837 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 416, "Tract": "48039660607", "Area_SqMi": 0.98948522175390685, "total_2009": 435, "total_2010": 558, "total_2011": 1011, "total_2012": 836, "total_2013": 998, "total_2014": 1525, "total_2015": 1173, "total_2016": 1197, "total_2017": 1440, "total_2018": 1774, "total_2019": 1768, "total_2020": 1989, "age1": 904, "age2": 1017, "age3": 340, "earn1": 659, "earn2": 869, "earn3": 733, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 35, "naics_s05": 0, "naics_s06": 5, "naics_s07": 816, "naics_s08": 162, "naics_s09": 30, "naics_s10": 65, "naics_s11": 52, "naics_s12": 39, "naics_s13": 0, "naics_s14": 53, "naics_s15": 49, "naics_s16": 492, "naics_s17": 71, "naics_s18": 365, "naics_s19": 27, "naics_s20": 0, "race1": 1474, "race2": 471, "race3": 24, "race4": 252, "race5": 3, "race6": 37, "ethnicity1": 1424, "ethnicity2": 837, "edu1": 329, "edu2": 320, "edu3": 381, "edu4": 327, "Shape_Length": 29881.701340099778, "Shape_Area": 27585154.461616594, "total_2021": 2018, "total_2022": 2261 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.40953900491013, 29.574009157812004 ], [ -95.408845005030372, 29.570783156735949 ], [ -95.408409004797988, 29.570862156613231 ], [ -95.407865005090784, 29.57095515655929 ], [ -95.406978003991227, 29.571266156854492 ], [ -95.406248004726379, 29.571621156765222 ], [ -95.405806004531641, 29.571819157109768 ], [ -95.404874003831168, 29.572339157228022 ], [ -95.404653004399648, 29.572411157410045 ], [ -95.404463004292396, 29.572458157122853 ], [ -95.404379003870318, 29.572474157776419 ], [ -95.404250003419293, 29.572498156994236 ], [ -95.404086003862247, 29.572517157445066 ], [ -95.404026003669472, 29.572524157802221 ], [ -95.403800003809863, 29.572534157340673 ], [ -95.403583003436552, 29.572530157485691 ], [ -95.403348003426245, 29.572509157410035 ], [ -95.403071003708277, 29.572465157632941 ], [ -95.402870003873545, 29.572418157075546 ], [ -95.402657003463545, 29.572352157438949 ], [ -95.402450003375804, 29.572270157793504 ], [ -95.40226000285044, 29.572178157316035 ], [ -95.402087003727502, 29.572078157417003 ], [ -95.401916003591055, 29.571962157416046 ], [ -95.40174900292034, 29.571828157492696 ], [ -95.401657002702535, 29.571739157397609 ], [ -95.401598003473111, 29.57167215753309 ], [ -95.400911002498276, 29.5721531573965 ], [ -95.400513002621807, 29.572386157896606 ], [ -95.400214002932472, 29.572543157779737 ], [ -95.400041002608404, 29.57262815762034 ], [ -95.399714002286103, 29.572776157445428 ], [ -95.398327001956687, 29.573325158056484 ], [ -95.397469001941502, 29.572062157170834 ], [ -95.397291002322405, 29.571771157800189 ], [ -95.397128001692877, 29.571473157332992 ], [ -95.396989002131335, 29.571184157730542 ], [ -95.396862002342388, 29.570882157334736 ], [ -95.396758002242066, 29.57059915727778 ], [ -95.396735002329109, 29.570523157387459 ], [ -95.396662002287513, 29.570289157053871 ], [ -95.396588001951429, 29.569999157591194 ], [ -95.396545001964441, 29.569711156912845 ], [ -95.396531002007393, 29.569563157006989 ], [ -95.396516001298991, 29.569291157353618 ], [ -95.39651800131368, 29.568986157046368 ], [ -95.396539001856141, 29.56869815655315 ], [ -95.39657600215763, 29.568419156503889 ], [ -95.39663200181532, 29.568135156435922 ], [ -95.396665001747152, 29.568001156366311 ], [ -95.396742001440089, 29.567734156673882 ], [ -95.396833001250499, 29.567477156949327 ], [ -95.396916002192782, 29.567327156685188 ], [ -95.397694001650706, 29.565932156571463 ], [ -95.398400001762909, 29.564664156190336 ], [ -95.398864002310646, 29.563480155371344 ], [ -95.398915002480848, 29.563155156045902 ], [ -95.398960002554588, 29.562869155327185 ], [ -95.398965001998263, 29.562563155883964 ], [ -95.398950001743572, 29.562277155298993 ], [ -95.398912001803623, 29.561875155296729 ], [ -95.398828002340082, 29.561362154888965 ], [ -95.398690002146211, 29.560909155338525 ], [ -95.398629001780947, 29.56074515483148 ], [ -95.398567002076376, 29.560573155587011 ], [ -95.398216001584473, 29.559493154776284 ], [ -95.398177002214766, 29.559386154775606 ], [ -95.398108001921841, 29.558963154570748 ], [ -95.398074001404069, 29.55862215452299 ], [ -95.398052001478206, 29.557765154610177 ], [ -95.397989001262232, 29.555756154566495 ], [ -95.395210000972824, 29.555807154427338 ], [ -95.395017000487073, 29.555811154563379 ], [ -95.392245000558432, 29.5558831540211 ], [ -95.391318999420847, 29.555910154493009 ], [ -95.39098099997598, 29.555920154653222 ], [ -95.390779999888025, 29.555926154346412 ], [ -95.388480998685054, 29.555858154930114 ], [ -95.387903998755448, 29.555876154497131 ], [ -95.387921999285751, 29.556910154787825 ], [ -95.387920998592378, 29.557684154623285 ], [ -95.38789799876821, 29.55858915501376 ], [ -95.38784499854637, 29.559557155459835 ], [ -95.387603998609166, 29.562013155923438 ], [ -95.387558998651002, 29.562467155614147 ], [ -95.387513998866538, 29.562936155539784 ], [ -95.387398999367392, 29.564119156027456 ], [ -95.387345999308394, 29.564677155943532 ], [ -95.387194999584977, 29.566164156415827 ], [ -95.386818999388339, 29.570147157078534 ], [ -95.3867869989799, 29.57049215785209 ], [ -95.386768999741449, 29.570706158011372 ], [ -95.386757999529792, 29.570840157217571 ], [ -95.386563999013546, 29.57279415825424 ], [ -95.386505999397244, 29.573384158231981 ], [ -95.386396998852007, 29.574492158626544 ], [ -95.386376999582723, 29.575341158209955 ], [ -95.386371999878023, 29.575514158262699 ], [ -95.38636199904505, 29.575903158641111 ], [ -95.386520999581748, 29.575884158377534 ], [ -95.386687999197846, 29.57586515828261 ], [ -95.386787999454043, 29.575850158709006 ], [ -95.387041000051326, 29.575812158696859 ], [ -95.387655000232897, 29.575719158744217 ], [ -95.387855999751395, 29.575689158893827 ], [ -95.387976000268438, 29.57567115818453 ], [ -95.38844299953405, 29.575598158639288 ], [ -95.389766999802973, 29.57535515881812 ], [ -95.390928000452874, 29.575193158815448 ], [ -95.391280000555241, 29.575085158245429 ], [ -95.391532000894571, 29.574816158027687 ], [ -95.391631000645688, 29.574896158188526 ], [ -95.392063000356586, 29.57535515794811 ], [ -95.392387000423497, 29.575976158834017 ], [ -95.393550001613562, 29.575842158425452 ], [ -95.399003002818148, 29.575216158319133 ], [ -95.406768004535039, 29.574325157248868 ], [ -95.40953900491013, 29.574009157812004 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 417, "Tract": "48039660502", "Area_SqMi": 2.1441629088709626, "total_2009": 683, "total_2010": 946, "total_2011": 1098, "total_2012": 720, "total_2013": 1019, "total_2014": 1186, "total_2015": 995, "total_2016": 965, "total_2017": 989, "total_2018": 966, "total_2019": 966, "total_2020": 852, "age1": 175, "age2": 434, "age3": 197, "earn1": 102, "earn2": 196, "earn3": 508, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 119, "naics_s05": 77, "naics_s06": 235, "naics_s07": 124, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 29, "naics_s12": 5, "naics_s13": 0, "naics_s14": 15, "naics_s15": 31, "naics_s16": 61, "naics_s17": 0, "naics_s18": 67, "naics_s19": 35, "naics_s20": 2, "race1": 684, "race2": 69, "race3": 8, "race4": 34, "race5": 0, "race6": 11, "ethnicity1": 515, "ethnicity2": 291, "edu1": 135, "edu2": 184, "edu3": 193, "edu4": 119, "Shape_Length": 32475.746273424254, "Shape_Area": 59775592.127827667, "total_2021": 823, "total_2022": 806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.327629984848016, 29.585396162719466 ], [ -95.327621985243823, 29.585231162979618 ], [ -95.327608984704412, 29.584770162293914 ], [ -95.327604984462809, 29.584641162549936 ], [ -95.327575984868417, 29.583942162617817 ], [ -95.327570984393446, 29.583431162376403 ], [ -95.32756798417158, 29.583160161940427 ], [ -95.327560985158456, 29.582983161773779 ], [ -95.32754198439045, 29.582535162219042 ], [ -95.327525984402911, 29.581038161748697 ], [ -95.327519984271817, 29.580782161398282 ], [ -95.327445984074728, 29.577911160820587 ], [ -95.327441983873385, 29.577780161339195 ], [ -95.327438984582585, 29.577625160780062 ], [ -95.327395984649854, 29.576733161228532 ], [ -95.327391984171129, 29.576327161115977 ], [ -95.327380984767984, 29.575656160748448 ], [ -95.327372984614627, 29.575120160292133 ], [ -95.327367984282901, 29.574931160649008 ], [ -95.327308984373005, 29.573813160494936 ], [ -95.327271983632016, 29.572186160044346 ], [ -95.327249984331317, 29.571134159287645 ], [ -95.327214983808403, 29.569468159254608 ], [ -95.327210984030984, 29.569316159536616 ], [ -95.327204984123441, 29.56900915929215 ], [ -95.327184984207264, 29.568062159311548 ], [ -95.327132984176146, 29.565975158742432 ], [ -95.327083983739044, 29.563923158578628 ], [ -95.327032983917093, 29.561461157640739 ], [ -95.326973983693662, 29.560195157836922 ], [ -95.326962983616497, 29.559489157263869 ], [ -95.326963983812149, 29.559295157254947 ], [ -95.326563983477783, 29.559300156950034 ], [ -95.324443982741101, 29.559319157256024 ], [ -95.323829982484753, 29.559330157248482 ], [ -95.32231298260308, 29.559345157008622 ], [ -95.321339982214596, 29.559369157702662 ], [ -95.32061698154817, 29.559388157620152 ], [ -95.319712981634254, 29.559393157788829 ], [ -95.318047981517637, 29.559410157325491 ], [ -95.317872980837421, 29.559414157463845 ], [ -95.316905981039966, 29.559421157468023 ], [ -95.315790980576679, 29.559430157390121 ], [ -95.31447898008318, 29.559452157782847 ], [ -95.314279979792175, 29.559456157990599 ], [ -95.313139979737585, 29.559473158088625 ], [ -95.312476979749945, 29.559487157657646 ], [ -95.310934979375773, 29.559517157555739 ], [ -95.310399978721577, 29.559525157772743 ], [ -95.308983979002647, 29.55955515782632 ], [ -95.308141978235412, 29.559565158295623 ], [ -95.307896978984957, 29.559591157685393 ], [ -95.307703978056026, 29.559606158222824 ], [ -95.307638978757765, 29.559611158315978 ], [ -95.306234978208892, 29.559625158293866 ], [ -95.306226978290383, 29.559780157631693 ], [ -95.306226978038353, 29.560487158077297 ], [ -95.306246977790479, 29.560727157923392 ], [ -95.306280977854797, 29.560879158477157 ], [ -95.306331977937589, 29.560994158191388 ], [ -95.306382978090298, 29.56109315795241 ], [ -95.30645597797924, 29.561203158421289 ], [ -95.306528978003143, 29.561302158219341 ], [ -95.306794978633192, 29.561557158814363 ], [ -95.307020978381345, 29.561723158407734 ], [ -95.307241978399446, 29.561913158434326 ], [ -95.307428978958612, 29.56210315808897 ], [ -95.307487978739317, 29.562186158064488 ], [ -95.307569978437101, 29.562301158299757 ], [ -95.307607978552682, 29.562345158349039 ], [ -95.307700978359321, 29.562453158261153 ], [ -95.307702978685626, 29.562536158681652 ], [ -95.30771097867428, 29.562977159071181 ], [ -95.307721979136289, 29.563597158937995 ], [ -95.307772979113835, 29.565307158837829 ], [ -95.30778397877539, 29.566094158942818 ], [ -95.307827979115856, 29.56683715942123 ], [ -95.307874979408197, 29.568336160158232 ], [ -95.307908979317801, 29.569434159575998 ], [ -95.307920979157657, 29.570113160175978 ], [ -95.307940979484798, 29.571161160715263 ], [ -95.307977979696162, 29.572933160956868 ], [ -95.307984978896528, 29.573258160588431 ], [ -95.307992979001099, 29.573594160434052 ], [ -95.308022979664713, 29.574610161088177 ], [ -95.308065979611698, 29.576337161335321 ], [ -95.308063979640821, 29.577011161461822 ], [ -95.308063979082135, 29.577036161462413 ], [ -95.308095979090439, 29.578177161441218 ], [ -95.308154979544852, 29.57998916259173 ], [ -95.308175979460998, 29.580663162382404 ], [ -95.308207979903159, 29.581964162534813 ], [ -95.308243979514998, 29.583738162582055 ], [ -95.308248979602197, 29.58395616255337 ], [ -95.308263979352333, 29.584581163355409 ], [ -95.308266980254274, 29.584710162948344 ], [ -95.308287979979752, 29.585541163258927 ], [ -95.30830398026329, 29.58622816324791 ], [ -95.311625980544662, 29.586211163143634 ], [ -95.311805981192563, 29.586211163314406 ], [ -95.314755981946263, 29.586202162917463 ], [ -95.314879981625424, 29.586202163309082 ], [ -95.314884981385646, 29.586298163561441 ], [ -95.314885981093738, 29.586454163000028 ], [ -95.318378982758432, 29.586404162898127 ], [ -95.321203982777831, 29.586353162648933 ], [ -95.321265983127418, 29.586353162591042 ], [ -95.321244983126419, 29.585501162925809 ], [ -95.324298983981663, 29.585437162725754 ], [ -95.324390984375512, 29.58543716235523 ], [ -95.327496985130892, 29.585398163040438 ], [ -95.327549985027133, 29.585398163021448 ], [ -95.327629984848016, 29.585396162719466 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 418, "Tract": "48039660402", "Area_SqMi": 1.0290407510310118, "total_2009": 92, "total_2010": 99, "total_2011": 159, "total_2012": 134, "total_2013": 188, "total_2014": 193, "total_2015": 210, "total_2016": 210, "total_2017": 217, "total_2018": 210, "total_2019": 245, "total_2020": 270, "age1": 86, "age2": 159, "age3": 70, "earn1": 65, "earn2": 129, "earn3": 121, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 5, "naics_s06": 4, "naics_s07": 18, "naics_s08": 38, "naics_s09": 0, "naics_s10": 28, "naics_s11": 14, "naics_s12": 14, "naics_s13": 2, "naics_s14": 6, "naics_s15": 8, "naics_s16": 71, "naics_s17": 0, "naics_s18": 40, "naics_s19": 61, "naics_s20": 0, "race1": 203, "race2": 46, "race3": 3, "race4": 60, "race5": 0, "race6": 3, "ethnicity1": 210, "ethnicity2": 105, "edu1": 63, "edu2": 54, "edu3": 74, "edu4": 38, "Shape_Length": 22545.727838660503, "Shape_Area": 28687894.917897318, "total_2021": 326, "total_2022": 315 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.27776297182514, 29.582697164091488 ], [ -95.27775797176939, 29.582490163583238 ], [ -95.277720971340059, 29.581041163653392 ], [ -95.277675971520736, 29.57877116294965 ], [ -95.277664971435513, 29.578227163094006 ], [ -95.277601971566995, 29.574840162222742 ], [ -95.277593971392292, 29.574462161929038 ], [ -95.277587971754485, 29.57418716204306 ], [ -95.277559970915817, 29.572780161939104 ], [ -95.277562971145585, 29.571999161450861 ], [ -95.277533971618794, 29.571338161292935 ], [ -95.277508971267807, 29.570768161191868 ], [ -95.277478970814911, 29.569329161105838 ], [ -95.2774889716666, 29.569249161305162 ], [ -95.277464971536617, 29.568451161260107 ], [ -95.277437971452031, 29.567574160671914 ], [ -95.277448971036875, 29.567456161036443 ], [ -95.277444971581986, 29.566558160173301 ], [ -95.277432971191104, 29.564579160002186 ], [ -95.277402970514814, 29.562272159661994 ], [ -95.277393970706285, 29.562029159532127 ], [ -95.275495970362485, 29.561016159680623 ], [ -95.274590969812081, 29.560503158840117 ], [ -95.27397197000694, 29.560175158942393 ], [ -95.273768969765314, 29.56030915918409 ], [ -95.272226969460789, 29.561720159233516 ], [ -95.271484969768139, 29.562405160066387 ], [ -95.271255968903731, 29.562626159500812 ], [ -95.271070969378243, 29.562793159801657 ], [ -95.270779968919129, 29.563057160135909 ], [ -95.269471968890159, 29.564280159873498 ], [ -95.269352968934342, 29.56439316032753 ], [ -95.268894969063737, 29.56480216052389 ], [ -95.268614969006421, 29.565057160574142 ], [ -95.268429968545547, 29.565225160289081 ], [ -95.267998968575938, 29.565627160956879 ], [ -95.266978968788109, 29.566552160477162 ], [ -95.266102967694167, 29.567222161183082 ], [ -95.265206968147339, 29.567673161151063 ], [ -95.26483396744743, 29.567876161356171 ], [ -95.26427196767105, 29.568236161482037 ], [ -95.263270967954938, 29.569079161778127 ], [ -95.260956966885033, 29.571239161704533 ], [ -95.260987967486088, 29.571265162384613 ], [ -95.2613069671971, 29.571539161621999 ], [ -95.261438967229608, 29.57169816190288 ], [ -95.261300967370914, 29.571824161796041 ], [ -95.261697967628223, 29.572153162246494 ], [ -95.262128967840042, 29.572500162549566 ], [ -95.262489967496819, 29.572861161889616 ], [ -95.262573967378017, 29.572972162524774 ], [ -95.262669967551773, 29.573097162241119 ], [ -95.26314196722322, 29.573666162410291 ], [ -95.263502967803845, 29.574194162848844 ], [ -95.263654967503925, 29.57443316276002 ], [ -95.264057967772899, 29.575068162336311 ], [ -95.264710968463447, 29.575970162754039 ], [ -95.265362968464885, 29.5769421629089 ], [ -95.265924968155389, 29.577718162911601 ], [ -95.265966968812606, 29.577780163495941 ], [ -95.266506968562609, 29.578586163542486 ], [ -95.267534969272546, 29.580154163602042 ], [ -95.267679969483794, 29.58036016380526 ], [ -95.268266968868062, 29.581190163520258 ], [ -95.268509969133177, 29.581571163429661 ], [ -95.268624969256976, 29.581802163465955 ], [ -95.268739969811136, 29.582149163522047 ], [ -95.268832969359337, 29.582483164217745 ], [ -95.268825970064185, 29.58265616435817 ], [ -95.268820969473808, 29.582783163782445 ], [ -95.268810969448595, 29.582861164293874 ], [ -95.268878970077182, 29.582980164457329 ], [ -95.268970969945542, 29.583107164209856 ], [ -95.269120969436926, 29.583211164223009 ], [ -95.269224970140115, 29.583234164435503 ], [ -95.269374969261321, 29.583257163855691 ], [ -95.269536969523656, 29.583222164223791 ], [ -95.26972396971631, 29.583215163828605 ], [ -95.269778969444772, 29.583187163943013 ], [ -95.269894969661522, 29.58309516442646 ], [ -95.270076969542203, 29.583042164446507 ], [ -95.27034696970486, 29.582948164211338 ], [ -95.270648970432731, 29.582886163806222 ], [ -95.271053970619107, 29.58282316429111 ], [ -95.271397970479796, 29.582792163853373 ], [ -95.273092970341096, 29.582782163454443 ], [ -95.274434970881828, 29.582750163447606 ], [ -95.276234971100976, 29.582698164163844 ], [ -95.27776297182514, 29.582697164091488 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 419, "Tract": "48039660403", "Area_SqMi": 1.4411944047518377, "total_2009": 810, "total_2010": 886, "total_2011": 660, "total_2012": 670, "total_2013": 732, "total_2014": 857, "total_2015": 981, "total_2016": 996, "total_2017": 1044, "total_2018": 1797, "total_2019": 1920, "total_2020": 2055, "age1": 849, "age2": 817, "age3": 319, "earn1": 704, "earn2": 807, "earn3": 474, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 17, "naics_s06": 8, "naics_s07": 876, "naics_s08": 7, "naics_s09": 0, "naics_s10": 66, "naics_s11": 36, "naics_s12": 52, "naics_s13": 10, "naics_s14": 6, "naics_s15": 25, "naics_s16": 178, "naics_s17": 29, "naics_s18": 568, "naics_s19": 95, "naics_s20": 0, "race1": 1493, "race2": 285, "race3": 15, "race4": 140, "race5": 4, "race6": 48, "ethnicity1": 1246, "ethnicity2": 739, "edu1": 261, "edu2": 324, "edu3": 353, "edu4": 198, "Shape_Length": 41355.553083531653, "Shape_Area": 40178033.37560565, "total_2021": 2172, "total_2022": 1985 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.27397197000694, 29.560175158942393 ], [ -95.273828970149921, 29.560114159445618 ], [ -95.272088969505916, 29.559368158714271 ], [ -95.271050968940841, 29.558973158944045 ], [ -95.269848969195451, 29.558489158652083 ], [ -95.269011968265261, 29.558140159327213 ], [ -95.268296968465037, 29.557850158841383 ], [ -95.266947967886907, 29.557305158584885 ], [ -95.26640696831268, 29.557086158569756 ], [ -95.263484967201109, 29.555902158883136 ], [ -95.263422967318988, 29.555876158978897 ], [ -95.263221966709509, 29.555795158953927 ], [ -95.263175966932764, 29.555776159035126 ], [ -95.260711966196482, 29.554780158927326 ], [ -95.259931966255124, 29.554465158186758 ], [ -95.258638966018253, 29.553939158857553 ], [ -95.256851965541301, 29.553193158028275 ], [ -95.256521965073063, 29.553060158485646 ], [ -95.255193964594227, 29.552524158037723 ], [ -95.253958964370753, 29.553948158811043 ], [ -95.25405196407489, 29.554107158639521 ], [ -95.254070964339164, 29.554206158295464 ], [ -95.25407096425559, 29.554338158884661 ], [ -95.254088964716644, 29.554454158925164 ], [ -95.254120964680595, 29.554536158514281 ], [ -95.254202964803142, 29.554630158742992 ], [ -95.254459964293474, 29.554767158422482 ], [ -95.25467996472311, 29.554916158649334 ], [ -95.254767964786424, 29.55499315913627 ], [ -95.254805965011485, 29.555086158576284 ], [ -95.254824964454514, 29.555279158629208 ], [ -95.254880964662163, 29.555411158651896 ], [ -95.2548929646441, 29.555520158525823 ], [ -95.254912964837317, 29.555713158584759 ], [ -95.255075964639119, 29.556214158692356 ], [ -95.255144965166977, 29.55658215952085 ], [ -95.25517596528104, 29.556846159313707 ], [ -95.255150965342679, 29.556967159395455 ], [ -95.255043965396609, 29.557170159070136 ], [ -95.254949965077387, 29.55727515926856 ], [ -95.254860964699958, 29.557352159222436 ], [ -95.254735964860259, 29.557423159590712 ], [ -95.254558965293654, 29.557478159317171 ], [ -95.254433965067633, 29.55750015956264 ], [ -95.254081964854706, 29.55750515939706 ], [ -95.253823964243324, 29.557494159184188 ], [ -95.253062964502845, 29.55736715911188 ], [ -95.252930964012023, 29.55738415922497 ], [ -95.252816964566293, 29.557417159190841 ], [ -95.252747964339406, 29.55745515924092 ], [ -95.252571963932638, 29.557670159048158 ], [ -95.252489964552197, 29.557807159343522 ], [ -95.25248396382041, 29.557950159522989 ], [ -95.252495964218539, 29.557985159268689 ], [ -95.252539964839855, 29.558115159295436 ], [ -95.252690963993288, 29.558357159206963 ], [ -95.252759964470428, 29.558478159768839 ], [ -95.252791964148358, 29.558555159311137 ], [ -95.252791964845159, 29.55861515997454 ], [ -95.252759964505032, 29.558753159787464 ], [ -95.252595964114363, 29.559055159881073 ], [ -95.25257096426985, 29.559165159633935 ], [ -95.252570964060709, 29.559264159554392 ], [ -95.2525969639523, 29.559374159475059 ], [ -95.252639964389999, 29.559556159914631 ], [ -95.252652963968032, 29.559754160230767 ], [ -95.252645964143483, 29.559853159879125 ], [ -95.252538964114933, 29.560023159780286 ], [ -95.252362964314031, 29.560369159588443 ], [ -95.252367964194036, 29.560567159595632 ], [ -95.25249896434471, 29.560790159660421 ], [ -95.252896964670683, 29.561245160098938 ], [ -95.253184964369098, 29.561512159968864 ], [ -95.253400964462486, 29.561712160053641 ], [ -95.253802964594257, 29.562687160806874 ], [ -95.254437965136859, 29.563480160870025 ], [ -95.254881965515665, 29.56373816090834 ], [ -95.255003965426809, 29.563881160800715 ], [ -95.255040964882852, 29.563971160955134 ], [ -95.255662965491211, 29.565499161170454 ], [ -95.255732964980851, 29.565814160932241 ], [ -95.25572896503644, 29.566029160635921 ], [ -95.255451965220985, 29.567006161282237 ], [ -95.255454965075558, 29.567183161183525 ], [ -95.256011965533247, 29.568216161536014 ], [ -95.256659965773608, 29.568652161244955 ], [ -95.256776965935927, 29.569141161202158 ], [ -95.25692496575077, 29.569419161593295 ], [ -95.257220966403565, 29.56976216187585 ], [ -95.257824965858745, 29.570247162166428 ], [ -95.258514966175738, 29.571089162263494 ], [ -95.258540966053829, 29.571370162242431 ], [ -95.258328966236519, 29.571760162386163 ], [ -95.258255966688751, 29.572002162190554 ], [ -95.258385966877029, 29.57226216193903 ], [ -95.258375966425859, 29.572870162113883 ], [ -95.258449966276501, 29.573037162267742 ], [ -95.258683966148141, 29.573291161973643 ], [ -95.258784966538613, 29.573400162648166 ], [ -95.258947966966346, 29.573650162606423 ], [ -95.25967296675725, 29.57442816250655 ], [ -95.259737966917029, 29.574961162539228 ], [ -95.259672966770864, 29.575853162901705 ], [ -95.259625966452646, 29.575990162867829 ], [ -95.259391966751721, 29.576370163448345 ], [ -95.25927996719102, 29.576444163392679 ], [ -95.258869966636667, 29.576715163171507 ], [ -95.258781966836523, 29.576876163513287 ], [ -95.25880196658315, 29.577880163689954 ], [ -95.25893896704558, 29.578127163748324 ], [ -95.258961966864788, 29.578168163843813 ], [ -95.259494966738671, 29.578615163462068 ], [ -95.259884966715248, 29.579123163456284 ], [ -95.260206967557693, 29.579659163908694 ], [ -95.260432966963123, 29.58036016401612 ], [ -95.260703967859641, 29.580676164337408 ], [ -95.261160967213996, 29.581085164298475 ], [ -95.261194967174347, 29.581188164263203 ], [ -95.261078967984488, 29.581529163853876 ], [ -95.260667967401318, 29.581824163965035 ], [ -95.260546967251159, 29.581970163693896 ], [ -95.260159967857845, 29.583855164640237 ], [ -95.26020296739425, 29.583956165007958 ], [ -95.260350967206634, 29.584081164561571 ], [ -95.260822967974633, 29.58430016454588 ], [ -95.261067968128145, 29.584539164739923 ], [ -95.261190967269144, 29.584989165127542 ], [ -95.261120967546304, 29.585524164896515 ], [ -95.261164967975105, 29.58569916459043 ], [ -95.261384968266867, 29.585958164872373 ], [ -95.261969968014313, 29.586462165400455 ], [ -95.262129967798117, 29.586714165013991 ], [ -95.262167968267036, 29.586926164803316 ], [ -95.262140967897963, 29.587140164915652 ], [ -95.261521967933533, 29.588030165176267 ], [ -95.261279968406328, 29.58919316545386 ], [ -95.261087967700917, 29.589324165542493 ], [ -95.260963967590456, 29.589359165778209 ], [ -95.260502968141466, 29.589491165515145 ], [ -95.260377967404366, 29.589633166091176 ], [ -95.260316967672139, 29.589795165792978 ], [ -95.260298967677912, 29.589888165762787 ], [ -95.260299967560982, 29.59000316569885 ], [ -95.260404967706179, 29.590073166082171 ], [ -95.260400967278301, 29.590168166108654 ], [ -95.260402968052276, 29.590267166005148 ], [ -95.260575967369221, 29.590429166237225 ], [ -95.260949968302128, 29.590651166350568 ], [ -95.260982968120686, 29.590703166250009 ], [ -95.261017968238235, 29.590777165659549 ], [ -95.261043967796837, 29.590828165535232 ], [ -95.261027967914202, 29.591038165875137 ], [ -95.260899967630309, 29.591488166496276 ], [ -95.260887968277871, 29.591741166507067 ], [ -95.260991967483278, 29.59203616590122 ], [ -95.261029967574331, 29.592145165883686 ], [ -95.26116996840139, 29.59254416672799 ], [ -95.261301967996161, 29.592796165921513 ], [ -95.2614719677685, 29.593049166500158 ], [ -95.261612967937438, 29.593162166053517 ], [ -95.261921968469323, 29.593351166068093 ], [ -95.26199396792947, 29.593371166758402 ], [ -95.26209496843552, 29.593402166016325 ], [ -95.262653968446756, 29.593564166504905 ], [ -95.262830969022957, 29.593621166667742 ], [ -95.263579968270363, 29.59386316673486 ], [ -95.263914968530599, 29.59392416692361 ], [ -95.264476968549985, 29.593959166047362 ], [ -95.264941969292366, 29.594012166694821 ], [ -95.265338969040684, 29.594100166325951 ], [ -95.26540996934321, 29.594116166136306 ], [ -95.265610968838089, 29.594248166050882 ], [ -95.265898968964265, 29.594530166219752 ], [ -95.266048968933816, 29.5946021663617 ], [ -95.266082969132839, 29.594607166864723 ], [ -95.26624796946831, 29.59462816689101 ], [ -95.266333969588189, 29.594640166905457 ], [ -95.266331969184506, 29.594610166621298 ], [ -95.266290969542212, 29.592280166460817 ], [ -95.266248968944836, 29.58982816548221 ], [ -95.266248968865497, 29.589050165806547 ], [ -95.266255969402053, 29.588955165522993 ], [ -95.266021969400839, 29.588945165320194 ], [ -95.266046968649377, 29.588689165269813 ], [ -95.266118969100432, 29.588328165283976 ], [ -95.26620596876036, 29.58786716501222 ], [ -95.266421968749498, 29.587333165075538 ], [ -95.267719969882535, 29.585141164244341 ], [ -95.268527969795826, 29.583973163969382 ], [ -95.268599969606825, 29.583786164078564 ], [ -95.268728969123828, 29.583384164575595 ], [ -95.268786969992448, 29.583072163702504 ], [ -95.268810969448595, 29.582861164293874 ], [ -95.268820969473808, 29.582783163782445 ], [ -95.268825970064185, 29.58265616435817 ], [ -95.268832969359337, 29.582483164217745 ], [ -95.268739969811136, 29.582149163522047 ], [ -95.268624969256976, 29.581802163465955 ], [ -95.268509969133177, 29.581571163429661 ], [ -95.268266968868062, 29.581190163520258 ], [ -95.267679969483794, 29.58036016380526 ], [ -95.267534969272546, 29.580154163602042 ], [ -95.266506968562609, 29.578586163542486 ], [ -95.265966968812606, 29.577780163495941 ], [ -95.265924968155389, 29.577718162911601 ], [ -95.265362968464885, 29.5769421629089 ], [ -95.264710968463447, 29.575970162754039 ], [ -95.264057967772899, 29.575068162336311 ], [ -95.263654967503925, 29.57443316276002 ], [ -95.263502967803845, 29.574194162848844 ], [ -95.26314196722322, 29.573666162410291 ], [ -95.262669967551773, 29.573097162241119 ], [ -95.262573967378017, 29.572972162524774 ], [ -95.262489967496819, 29.572861161889616 ], [ -95.262128967840042, 29.572500162549566 ], [ -95.261697967628223, 29.572153162246494 ], [ -95.261300967370914, 29.571824161796041 ], [ -95.261438967229608, 29.57169816190288 ], [ -95.2613069671971, 29.571539161621999 ], [ -95.260987967486088, 29.571265162384613 ], [ -95.260956966885033, 29.571239161704533 ], [ -95.263270967954938, 29.569079161778127 ], [ -95.26427196767105, 29.568236161482037 ], [ -95.26483396744743, 29.567876161356171 ], [ -95.265206968147339, 29.567673161151063 ], [ -95.266102967694167, 29.567222161183082 ], [ -95.266978968788109, 29.566552160477162 ], [ -95.267998968575938, 29.565627160956879 ], [ -95.268429968545547, 29.565225160289081 ], [ -95.268614969006421, 29.565057160574142 ], [ -95.268894969063737, 29.56480216052389 ], [ -95.269352968934342, 29.56439316032753 ], [ -95.269471968890159, 29.564280159873498 ], [ -95.270779968919129, 29.563057160135909 ], [ -95.271070969378243, 29.562793159801657 ], [ -95.271255968903731, 29.562626159500812 ], [ -95.271484969768139, 29.562405160066387 ], [ -95.272226969460789, 29.561720159233516 ], [ -95.273768969765314, 29.56030915918409 ], [ -95.27397197000694, 29.560175158942393 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 420, "Tract": "48039660401", "Area_SqMi": 1.743654646275981, "total_2009": 4356, "total_2010": 4349, "total_2011": 4353, "total_2012": 4219, "total_2013": 4379, "total_2014": 1232, "total_2015": 1339, "total_2016": 1395, "total_2017": 1393, "total_2018": 1428, "total_2019": 1475, "total_2020": 1458, "age1": 440, "age2": 749, "age3": 427, "earn1": 215, "earn2": 724, "earn3": 677, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 231, "naics_s05": 200, "naics_s06": 35, "naics_s07": 574, "naics_s08": 0, "naics_s09": 0, "naics_s10": 85, "naics_s11": 15, "naics_s12": 33, "naics_s13": 0, "naics_s14": 253, "naics_s15": 21, "naics_s16": 43, "naics_s17": 0, "naics_s18": 95, "naics_s19": 26, "naics_s20": 0, "race1": 1222, "race2": 259, "race3": 16, "race4": 86, "race5": 4, "race6": 29, "ethnicity1": 997, "ethnicity2": 619, "edu1": 333, "edu2": 364, "edu3": 335, "edu4": 144, "Shape_Length": 38366.000161837648, "Shape_Area": 48610107.243421763, "total_2021": 1412, "total_2022": 1616 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.286598975165958, 29.595387166024008 ], [ -95.286568974912583, 29.592520165181451 ], [ -95.286563974419138, 29.590990164935658 ], [ -95.286536973999432, 29.589570164408357 ], [ -95.286524974697812, 29.589299165172214 ], [ -95.286506974238961, 29.58886916466966 ], [ -95.286473974160913, 29.586720164420008 ], [ -95.286467974132705, 29.586357164066147 ], [ -95.286458974408092, 29.585669163792932 ], [ -95.286435974595747, 29.584464163968285 ], [ -95.286431974339649, 29.584267163638057 ], [ -95.286417974020367, 29.582777163185543 ], [ -95.286412973815928, 29.58219616352849 ], [ -95.286411974206672, 29.582008163546043 ], [ -95.286407973697848, 29.581374163517708 ], [ -95.286332973749722, 29.57904116290063 ], [ -95.286329973453931, 29.578786162714856 ], [ -95.286315973344543, 29.577045162118502 ], [ -95.286284973685895, 29.575765161963272 ], [ -95.286264974082911, 29.57531416210221 ], [ -95.28618597321676, 29.571936161042885 ], [ -95.286181973724624, 29.571761161471059 ], [ -95.286144973239587, 29.569240160881439 ], [ -95.286109973471298, 29.5674431600543 ], [ -95.286069973075016, 29.56561915974061 ], [ -95.286069972842753, 29.563682159791643 ], [ -95.285001972798753, 29.563662159598675 ], [ -95.284617973044178, 29.56367915933096 ], [ -95.283825972551796, 29.563732159969959 ], [ -95.283121972191765, 29.563740159680215 ], [ -95.282738972218908, 29.563757159255069 ], [ -95.282398971776217, 29.563771159918829 ], [ -95.282084972640163, 29.563764159260312 ], [ -95.281728972089283, 29.563739159499825 ], [ -95.281291971705542, 29.563687159780251 ], [ -95.280870971585813, 29.563606160079882 ], [ -95.280606971810528, 29.563537159282003 ], [ -95.280364972057797, 29.563466160080296 ], [ -95.280068971478016, 29.563367159479817 ], [ -95.279564970991984, 29.563148159667666 ], [ -95.277393970706285, 29.562029159532127 ], [ -95.277402970514814, 29.562272159661994 ], [ -95.277432971191104, 29.564579160002186 ], [ -95.277444971581986, 29.566558160173301 ], [ -95.277448971036875, 29.567456161036443 ], [ -95.277437971452031, 29.567574160671914 ], [ -95.277464971536617, 29.568451161260107 ], [ -95.2774889716666, 29.569249161305162 ], [ -95.277478970814911, 29.569329161105838 ], [ -95.277508971267807, 29.570768161191868 ], [ -95.277533971618794, 29.571338161292935 ], [ -95.277562971145585, 29.571999161450861 ], [ -95.277559970915817, 29.572780161939104 ], [ -95.277587971754485, 29.57418716204306 ], [ -95.277593971392292, 29.574462161929038 ], [ -95.277601971566995, 29.574840162222742 ], [ -95.277664971435513, 29.578227163094006 ], [ -95.277675971520736, 29.57877116294965 ], [ -95.277720971340059, 29.581041163653392 ], [ -95.27775797176939, 29.582490163583238 ], [ -95.27776297182514, 29.582697164091488 ], [ -95.276234971100976, 29.582698164163844 ], [ -95.274434970881828, 29.582750163447606 ], [ -95.273092970341096, 29.582782163454443 ], [ -95.271397970479796, 29.582792163853373 ], [ -95.271053970619107, 29.58282316429111 ], [ -95.270648970432731, 29.582886163806222 ], [ -95.27034696970486, 29.582948164211338 ], [ -95.270076969542203, 29.583042164446507 ], [ -95.269894969661522, 29.58309516442646 ], [ -95.269778969444772, 29.583187163943013 ], [ -95.26972396971631, 29.583215163828605 ], [ -95.269536969523656, 29.583222164223791 ], [ -95.269374969261321, 29.583257163855691 ], [ -95.269224970140115, 29.583234164435503 ], [ -95.269120969436926, 29.583211164223009 ], [ -95.268970969945542, 29.583107164209856 ], [ -95.268878970077182, 29.582980164457329 ], [ -95.268810969448595, 29.582861164293874 ], [ -95.268786969992448, 29.583072163702504 ], [ -95.268728969123828, 29.583384164575595 ], [ -95.268599969606825, 29.583786164078564 ], [ -95.268527969795826, 29.583973163969382 ], [ -95.267719969882535, 29.585141164244341 ], [ -95.266421968749498, 29.587333165075538 ], [ -95.26620596876036, 29.58786716501222 ], [ -95.266118969100432, 29.588328165283976 ], [ -95.266046968649377, 29.588689165269813 ], [ -95.266021969400839, 29.588945165320194 ], [ -95.266255969402053, 29.588955165522993 ], [ -95.266248968865497, 29.589050165806547 ], [ -95.266248968944836, 29.58982816548221 ], [ -95.266290969542212, 29.592280166460817 ], [ -95.266331969184506, 29.594610166621298 ], [ -95.266333969588189, 29.594640166905457 ], [ -95.266459969362785, 29.594659166356308 ], [ -95.266680969270922, 29.594652166195402 ], [ -95.266931970104721, 29.594577166149993 ], [ -95.267117969258308, 29.594447166548942 ], [ -95.267199969824119, 29.594321166057068 ], [ -95.267223970065004, 29.594205166089484 ], [ -95.267291970079071, 29.594020166040021 ], [ -95.267420969259931, 29.593904166539556 ], [ -95.267576969562455, 29.593847166232834 ], [ -95.267870969481478, 29.593843166002195 ], [ -95.268047970105457, 29.593839166245495 ], [ -95.268197969748101, 29.593849166309607 ], [ -95.268336969451497, 29.593858166051039 ], [ -95.268635969703126, 29.593862166403543 ], [ -95.268841969824209, 29.593912166029479 ], [ -95.268965970089013, 29.593983165957923 ], [ -95.268978970351597, 29.593988166778413 ], [ -95.269038970029186, 29.594023166302129 ], [ -95.269201969972443, 29.594159166062752 ], [ -95.269259970559546, 29.594207166801759 ], [ -95.269333969724727, 29.594284166115305 ], [ -95.269363970500891, 29.594315166587478 ], [ -95.269445969865131, 29.594400165957275 ], [ -95.269596970091385, 29.594552166330747 ], [ -95.269773970150112, 29.594631166561655 ], [ -95.270219969966078, 29.594727166488646 ], [ -95.270425970751631, 29.594714166686515 ], [ -95.270595970799732, 29.594659166378335 ], [ -95.2708399709731, 29.594556166183889 ], [ -95.271072970180398, 29.59442916678233 ], [ -95.271456970426826, 29.59428716674249 ], [ -95.271592971207369, 29.594272166207364 ], [ -95.271638971057641, 29.594276166416542 ], [ -95.271677970955722, 29.594280166502134 ], [ -95.271834971082015, 29.594291166417001 ], [ -95.271973970708828, 29.594318166368783 ], [ -95.272117971176343, 29.594390166626948 ], [ -95.272143971101585, 29.594428166649916 ], [ -95.272280970706134, 29.594569166657323 ], [ -95.272586970586275, 29.595033166828813 ], [ -95.272822971434962, 29.595083166528763 ], [ -95.272860971430461, 29.595085166841042 ], [ -95.273183970915326, 29.594963166529681 ], [ -95.273206971063118, 29.594936166676121 ], [ -95.273239971530955, 29.594897166514688 ], [ -95.273272971502522, 29.594837166168869 ], [ -95.273344971019995, 29.594699166093918 ], [ -95.273406971552788, 29.594578166546039 ], [ -95.273450970823347, 29.594495165944249 ], [ -95.273555971496876, 29.594417165943248 ], [ -95.27366997103509, 29.594393165869782 ], [ -95.273804971705658, 29.594404166297846 ], [ -95.273998971785929, 29.594523166660704 ], [ -95.274158971108008, 29.594725166193058 ], [ -95.274335971291222, 29.594948166128876 ], [ -95.274374971990454, 29.594997166418871 ], [ -95.274521971691513, 29.595065166304252 ], [ -95.274666971153408, 29.595132166064595 ], [ -95.274744971311762, 29.595155165970851 ], [ -95.274926971367393, 29.595210166761266 ], [ -95.274939971733687, 29.595206166797787 ], [ -95.27505597175039, 29.595171166437247 ], [ -95.275218971299893, 29.595118166225628 ], [ -95.275489971515086, 29.594937166349979 ], [ -95.275706972149578, 29.594886166476755 ], [ -95.275848971622636, 29.594862165938956 ], [ -95.276316972477119, 29.594854166066057 ], [ -95.276463972540782, 29.594853166549818 ], [ -95.276664971839637, 29.594859166590659 ], [ -95.276782971929805, 29.594909166153233 ], [ -95.276856971920282, 29.594968166182124 ], [ -95.277011972647472, 29.595222166304616 ], [ -95.27704697187248, 29.595381166343991 ], [ -95.277054972302537, 29.595419166321765 ], [ -95.277071971746551, 29.595623166447158 ], [ -95.277081972170151, 29.595711166352313 ], [ -95.277099971830253, 29.59577616622531 ], [ -95.277137972141944, 29.595909166341716 ], [ -95.277200972575258, 29.595986166421795 ], [ -95.277228972343607, 29.596006166496444 ], [ -95.277292972123391, 29.596067166424355 ], [ -95.277362972852586, 29.596111166158902 ], [ -95.277436972758849, 29.596134166877015 ], [ -95.277494972725052, 29.596128166365464 ], [ -95.277553972169699, 29.596090166701828 ], [ -95.277596972119653, 29.596058166371101 ], [ -95.277755972582199, 29.595985166532664 ], [ -95.277832972505294, 29.595973166035566 ], [ -95.277878972200611, 29.5959661661464 ], [ -95.277896972315446, 29.595964166434054 ], [ -95.277919972301632, 29.595960166373811 ], [ -95.278394972804534, 29.595628166680779 ], [ -95.278724972940353, 29.595499166718486 ], [ -95.278839972893707, 29.595453166256608 ], [ -95.278979972807178, 29.595432166115824 ], [ -95.279224972859254, 29.595439165939318 ], [ -95.279761973449098, 29.595417166183331 ], [ -95.279824972857682, 29.595420166679677 ], [ -95.279858972607258, 29.595426166571681 ], [ -95.280109972609125, 29.595450166572171 ], [ -95.280250973314878, 29.595526166496754 ], [ -95.280393972849637, 29.595713165984222 ], [ -95.280466973594244, 29.595788166757089 ], [ -95.280522973485503, 29.595893166303007 ], [ -95.280640973656958, 29.596058166050685 ], [ -95.280786973542533, 29.596256166042647 ], [ -95.281192973246718, 29.596521166133449 ], [ -95.281421973355407, 29.596684166649851 ], [ -95.281513973953636, 29.596811166554289 ], [ -95.281550973115245, 29.596863166511437 ], [ -95.281595973206436, 29.597036166312641 ], [ -95.281718973593854, 29.597223166174455 ], [ -95.281771973198161, 29.5972571663075 ], [ -95.281880973973401, 29.597326166198915 ], [ -95.282314974055794, 29.597560166738059 ], [ -95.282494973278716, 29.597632166485553 ], [ -95.282579973861303, 29.597687166476845 ], [ -95.282815973966024, 29.597754166369189 ], [ -95.282955973477613, 29.597758166585749 ], [ -95.283131974157413, 29.597751167013385 ], [ -95.283464974200939, 29.597716166382295 ], [ -95.283627974350679, 29.597690166416523 ], [ -95.283774974511857, 29.597649166242906 ], [ -95.283896973628316, 29.597598166123689 ], [ -95.283963974200205, 29.597576166485034 ], [ -95.284148973939338, 29.597595166692816 ], [ -95.284282973881318, 29.597643166490712 ], [ -95.284397974461427, 29.597719166349208 ], [ -95.284516974000141, 29.597813166465734 ], [ -95.284602974800606, 29.597872166709447 ], [ -95.284754974735108, 29.597932166649006 ], [ -95.284903974833284, 29.597964166344223 ], [ -95.285084974433516, 29.597955166274815 ], [ -95.285278974175924, 29.597907166363711 ], [ -95.285556974840148, 29.597700166403484 ], [ -95.285695974079474, 29.597654166571147 ], [ -95.286173974186042, 29.597836166688587 ], [ -95.286499974307617, 29.59789116620253 ], [ -95.286512975017416, 29.597610166916112 ], [ -95.286512975187151, 29.597593166818079 ], [ -95.286508974311019, 29.597498166799884 ], [ -95.286598975165958, 29.595387166024008 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 421, "Tract": "48039660606", "Area_SqMi": 0.74204907055034219, "total_2009": 310, "total_2010": 436, "total_2011": 139, "total_2012": 121, "total_2013": 126, "total_2014": 132, "total_2015": 412, "total_2016": 320, "total_2017": 374, "total_2018": 468, "total_2019": 570, "total_2020": 710, "age1": 291, "age2": 439, "age3": 134, "earn1": 170, "earn2": 328, "earn3": 366, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 3, "naics_s07": 15, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 45, "naics_s13": 0, "naics_s14": 61, "naics_s15": 26, "naics_s16": 483, "naics_s17": 1, "naics_s18": 120, "naics_s19": 108, "naics_s20": 0, "race1": 551, "race2": 173, "race3": 4, "race4": 116, "race5": 3, "race6": 17, "ethnicity1": 632, "ethnicity2": 232, "edu1": 121, "edu2": 141, "edu3": 161, "edu4": 150, "Shape_Length": 19469.213881505566, "Shape_Area": 20687058.057266429, "total_2021": 631, "total_2022": 864 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.409180004828102, 29.566370156324194 ], [ -95.409159004512702, 29.56348015568663 ], [ -95.408979004825895, 29.558698154165171 ], [ -95.408464003969797, 29.558702154567758 ], [ -95.407200003767528, 29.558735154084705 ], [ -95.407153003715237, 29.557162154212346 ], [ -95.407105003602339, 29.555566153969583 ], [ -95.400771001794297, 29.555700154245134 ], [ -95.397989001262232, 29.555756154566495 ], [ -95.398052001478206, 29.557765154610177 ], [ -95.398074001404069, 29.55862215452299 ], [ -95.398108001921841, 29.558963154570748 ], [ -95.398177002214766, 29.559386154775606 ], [ -95.398216001584473, 29.559493154776284 ], [ -95.398567002076376, 29.560573155587011 ], [ -95.398629001780947, 29.56074515483148 ], [ -95.398690002146211, 29.560909155338525 ], [ -95.398828002340082, 29.561362154888965 ], [ -95.398912001803623, 29.561875155296729 ], [ -95.398950001743572, 29.562277155298993 ], [ -95.398965001998263, 29.562563155883964 ], [ -95.398960002554588, 29.562869155327185 ], [ -95.398915002480848, 29.563155156045902 ], [ -95.398864002310646, 29.563480155371344 ], [ -95.398400001762909, 29.564664156190336 ], [ -95.397694001650706, 29.565932156571463 ], [ -95.396916002192782, 29.567327156685188 ], [ -95.396833001250499, 29.567477156949327 ], [ -95.396742001440089, 29.567734156673882 ], [ -95.396665001747152, 29.568001156366311 ], [ -95.39663200181532, 29.568135156435922 ], [ -95.39657600215763, 29.568419156503889 ], [ -95.396539001856141, 29.56869815655315 ], [ -95.39651800131368, 29.568986157046368 ], [ -95.396516001298991, 29.569291157353618 ], [ -95.396531002007393, 29.569563157006989 ], [ -95.396545001964441, 29.569711156912845 ], [ -95.396588001951429, 29.569999157591194 ], [ -95.396662002287513, 29.570289157053871 ], [ -95.396735002329109, 29.570523157387459 ], [ -95.396758002242066, 29.57059915727778 ], [ -95.396862002342388, 29.570882157334736 ], [ -95.396989002131335, 29.571184157730542 ], [ -95.397128001692877, 29.571473157332992 ], [ -95.397291002322405, 29.571771157800189 ], [ -95.397469001941502, 29.572062157170834 ], [ -95.398327001956687, 29.573325158056484 ], [ -95.399714002286103, 29.572776157445428 ], [ -95.400041002608404, 29.57262815762034 ], [ -95.400214002932472, 29.572543157779737 ], [ -95.400513002621807, 29.572386157896606 ], [ -95.400911002498276, 29.5721531573965 ], [ -95.401598003473111, 29.57167215753309 ], [ -95.401657002702535, 29.571739157397609 ], [ -95.40174900292034, 29.571828157492696 ], [ -95.401916003591055, 29.571962157416046 ], [ -95.402087003727502, 29.572078157417003 ], [ -95.40226000285044, 29.572178157316035 ], [ -95.402450003375804, 29.572270157793504 ], [ -95.402657003463545, 29.572352157438949 ], [ -95.402870003873545, 29.572418157075546 ], [ -95.403071003708277, 29.572465157632941 ], [ -95.403348003426245, 29.572509157410035 ], [ -95.403583003436552, 29.572530157485691 ], [ -95.403800003809863, 29.572534157340673 ], [ -95.404026003669472, 29.572524157802221 ], [ -95.404086003862247, 29.572517157445066 ], [ -95.404250003419293, 29.572498156994236 ], [ -95.404379003870318, 29.572474157776419 ], [ -95.404463004292396, 29.572458157122853 ], [ -95.404653004399648, 29.572411157410045 ], [ -95.404874003831168, 29.572339157228022 ], [ -95.405806004531641, 29.571819157109768 ], [ -95.406248004726379, 29.571621156765222 ], [ -95.406978003991227, 29.571266156854492 ], [ -95.407865005090784, 29.57095515655929 ], [ -95.408409004797988, 29.570862156613231 ], [ -95.408845005030372, 29.570783156735949 ], [ -95.409180004828102, 29.566370156324194 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 422, "Tract": "48039660605", "Area_SqMi": 0.98689067582670409, "total_2009": 275, "total_2010": 375, "total_2011": 221, "total_2012": 39, "total_2013": 52, "total_2014": 79, "total_2015": 83, "total_2016": 172, "total_2017": 229, "total_2018": 322, "total_2019": 340, "total_2020": 249, "age1": 134, "age2": 152, "age3": 52, "earn1": 100, "earn2": 153, "earn3": 85, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 3, "naics_s05": 2, "naics_s06": 0, "naics_s07": 100, "naics_s08": 2, "naics_s09": 1, "naics_s10": 0, "naics_s11": 4, "naics_s12": 22, "naics_s13": 0, "naics_s14": 36, "naics_s15": 33, "naics_s16": 56, "naics_s17": 0, "naics_s18": 59, "naics_s19": 19, "naics_s20": 0, "race1": 205, "race2": 77, "race3": 3, "race4": 44, "race5": 2, "race6": 7, "ethnicity1": 246, "ethnicity2": 92, "edu1": 44, "edu2": 54, "edu3": 46, "edu4": 60, "Shape_Length": 27726.481428922907, "Shape_Area": 27512822.961775914, "total_2021": 265, "total_2022": 338 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.426774009142449, 29.571215156791023 ], [ -95.426425009057681, 29.571035156582074 ], [ -95.425754009238403, 29.570705156560255 ], [ -95.4206180080716, 29.568178156046791 ], [ -95.417810006911935, 29.566774156098212 ], [ -95.416769006261049, 29.566283155666845 ], [ -95.416832006332811, 29.566026155308421 ], [ -95.417263006639956, 29.565000155201595 ], [ -95.417590006355525, 29.564093155493421 ], [ -95.417720006535959, 29.563630155251769 ], [ -95.41775100705506, 29.563513155384285 ], [ -95.417779006809852, 29.562683154541538 ], [ -95.417740007038049, 29.561973154711072 ], [ -95.417598006493989, 29.560894154775127 ], [ -95.417494006799473, 29.560095154633672 ], [ -95.417397006653843, 29.558882153865419 ], [ -95.41738500643639, 29.558707154392295 ], [ -95.41738200652587, 29.55856815381421 ], [ -95.41737500625419, 29.558180154329492 ], [ -95.417450006810554, 29.557377154065549 ], [ -95.417524006768303, 29.556520153449128 ], [ -95.417531006618702, 29.556207153370501 ], [ -95.417482006351875, 29.555478153377326 ], [ -95.417477006092611, 29.55531415386703 ], [ -95.414725005927579, 29.555373153307848 ], [ -95.407105003602339, 29.555566153969583 ], [ -95.407153003715237, 29.557162154212346 ], [ -95.407200003767528, 29.558735154084705 ], [ -95.408464003969797, 29.558702154567758 ], [ -95.408979004825895, 29.558698154165171 ], [ -95.409159004512702, 29.56348015568663 ], [ -95.409180004828102, 29.566370156324194 ], [ -95.408845005030372, 29.570783156735949 ], [ -95.40953900491013, 29.574009157812004 ], [ -95.410406005426566, 29.574195157767537 ], [ -95.413376005929337, 29.573768156995563 ], [ -95.413742006532559, 29.573742157793067 ], [ -95.415033006322105, 29.573655156987488 ], [ -95.417688007426506, 29.573343157189555 ], [ -95.417654007270897, 29.574030157099166 ], [ -95.417642007628743, 29.574222157191322 ], [ -95.417469007199401, 29.577085157593263 ], [ -95.417801007921767, 29.577130157782108 ], [ -95.418490007486184, 29.577237157545401 ], [ -95.419400007799126, 29.577415158278765 ], [ -95.420066008279321, 29.577569157662619 ], [ -95.420586008162346, 29.577716157490386 ], [ -95.421298008732762, 29.577930157996331 ], [ -95.422369009226898, 29.578315157904822 ], [ -95.423005009191399, 29.578580157657029 ], [ -95.424044008765094, 29.579060157747282 ], [ -95.424185008737268, 29.579126158269258 ], [ -95.424395008794988, 29.579223158464149 ], [ -95.42450800977781, 29.579275158575562 ], [ -95.424569009535645, 29.579307158568994 ], [ -95.424881009303149, 29.578159158116538 ], [ -95.425235008977921, 29.576859157912224 ], [ -95.425356009340334, 29.576419157720071 ], [ -95.425674009005263, 29.575258156914312 ], [ -95.426774009142449, 29.571215156791023 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 423, "Tract": "48039660604", "Area_SqMi": 0.67631586967125656, "total_2009": 9, "total_2010": 12, "total_2011": 15, "total_2012": 22, "total_2013": 21, "total_2014": 16, "total_2015": 20, "total_2016": 40, "total_2017": 37, "total_2018": 64, "total_2019": 108, "total_2020": 95, "age1": 57, "age2": 93, "age3": 33, "earn1": 40, "earn2": 93, "earn3": 50, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 0, "naics_s07": 2, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 29, "naics_s13": 0, "naics_s14": 76, "naics_s15": 0, "naics_s16": 46, "naics_s17": 0, "naics_s18": 6, "naics_s19": 19, "naics_s20": 0, "race1": 88, "race2": 65, "race3": 0, "race4": 27, "race5": 0, "race6": 3, "ethnicity1": 133, "ethnicity2": 50, "edu1": 29, "edu2": 34, "edu3": 31, "edu4": 32, "Shape_Length": 18116.582363361522, "Shape_Area": 18854528.920255203, "total_2021": 129, "total_2022": 183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.431132009776547, 29.555158152577086 ], [ -95.431175009661231, 29.554990152628022 ], [ -95.43110200986483, 29.554991152555637 ], [ -95.43081900954158, 29.554995152844601 ], [ -95.429798009327271, 29.555021152721928 ], [ -95.42706500906867, 29.555090152948026 ], [ -95.425799008854341, 29.555122153194091 ], [ -95.423504008113113, 29.555181153193498 ], [ -95.417877006452883, 29.555305153798606 ], [ -95.417477006092611, 29.55531415386703 ], [ -95.417482006351875, 29.555478153377326 ], [ -95.417531006618702, 29.556207153370501 ], [ -95.417524006768303, 29.556520153449128 ], [ -95.417450006810554, 29.557377154065549 ], [ -95.41737500625419, 29.558180154329492 ], [ -95.41738200652587, 29.55856815381421 ], [ -95.41738500643639, 29.558707154392295 ], [ -95.417397006653843, 29.558882153865419 ], [ -95.417494006799473, 29.560095154633672 ], [ -95.417598006493989, 29.560894154775127 ], [ -95.417740007038049, 29.561973154711072 ], [ -95.417779006809852, 29.562683154541538 ], [ -95.41775100705506, 29.563513155384285 ], [ -95.417720006535959, 29.563630155251769 ], [ -95.417590006355525, 29.564093155493421 ], [ -95.417263006639956, 29.565000155201595 ], [ -95.416832006332811, 29.566026155308421 ], [ -95.416769006261049, 29.566283155666845 ], [ -95.417810006911935, 29.566774156098212 ], [ -95.4206180080716, 29.568178156046791 ], [ -95.425754009238403, 29.570705156560255 ], [ -95.426425009057681, 29.571035156582074 ], [ -95.426774009142449, 29.571215156791023 ], [ -95.427141009126331, 29.569871155913333 ], [ -95.42821100969077, 29.565940155273822 ], [ -95.430140010342043, 29.558853154028238 ], [ -95.430790009990602, 29.55647115304566 ], [ -95.431105009844146, 29.555261152884043 ], [ -95.431132009776547, 29.555158152577086 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 424, "Tract": "48167720507", "Area_SqMi": 1.5759952451163317, "total_2009": 97, "total_2010": 64, "total_2011": 141, "total_2012": 113, "total_2013": 126, "total_2014": 212, "total_2015": 155, "total_2016": 229, "total_2017": 225, "total_2018": 168, "total_2019": 168, "total_2020": 130, "age1": 45, "age2": 86, "age3": 42, "earn1": 58, "earn2": 54, "earn3": 61, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 18, "naics_s07": 8, "naics_s08": 0, "naics_s09": 3, "naics_s10": 2, "naics_s11": 6, "naics_s12": 10, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 32, "naics_s17": 55, "naics_s18": 14, "naics_s19": 10, "naics_s20": 0, "race1": 145, "race2": 15, "race3": 0, "race4": 11, "race5": 0, "race6": 2, "ethnicity1": 129, "ethnicity2": 44, "edu1": 22, "edu2": 33, "edu3": 44, "edu4": 29, "Shape_Length": 33576.858461770316, "Shape_Area": 43936050.091023669, "total_2021": 159, "total_2022": 173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.161614937355822, 29.468237144427359 ], [ -95.159700936780439, 29.468244143924682 ], [ -95.159249936203423, 29.468273143973718 ], [ -95.157896935950632, 29.468280144172812 ], [ -95.156612935728873, 29.46828914459212 ], [ -95.155007935205603, 29.468301144458291 ], [ -95.149567933715815, 29.468371144442951 ], [ -95.148686933568001, 29.468364144498622 ], [ -95.147990933930373, 29.468372144462617 ], [ -95.146131932731734, 29.46839514435354 ], [ -95.146039933464877, 29.468396144919524 ], [ -95.144592932880741, 29.468414144813408 ], [ -95.143189931917178, 29.468428145067165 ], [ -95.139060931389579, 29.468463144920449 ], [ -95.136742930486591, 29.468491144688699 ], [ -95.13532393085265, 29.468509145324472 ], [ -95.133600929575081, 29.468531144749903 ], [ -95.133331929425083, 29.468527144870311 ], [ -95.132441929770891, 29.468545144798718 ], [ -95.129836929094907, 29.468590145008214 ], [ -95.126727928345872, 29.468675145575268 ], [ -95.126394928207958, 29.468753145323085 ], [ -95.126393927850771, 29.469173145135375 ], [ -95.126391928037606, 29.469986145888583 ], [ -95.126389927670445, 29.47076714535595 ], [ -95.126388927704355, 29.471088146140922 ], [ -95.126434928234374, 29.471594145797592 ], [ -95.126734928637518, 29.472379145617641 ], [ -95.126967928352997, 29.472676145719646 ], [ -95.127224928430621, 29.472951145873633 ], [ -95.127388928461045, 29.473063146320634 ], [ -95.127551928156706, 29.473201145834224 ], [ -95.127733928872829, 29.473289146048426 ], [ -95.128006928896525, 29.473518146322643 ], [ -95.128444928873392, 29.473836146634515 ], [ -95.128937928928067, 29.474421146698486 ], [ -95.12915792913337, 29.474859146876337 ], [ -95.129209929562933, 29.475271146172613 ], [ -95.129243929030764, 29.476250146422235 ], [ -95.129243928952036, 29.476299146980239 ], [ -95.129260928752402, 29.477969146610029 ], [ -95.129260929409099, 29.478570146927943 ], [ -95.12927892928937, 29.479103147129738 ], [ -95.129226929280463, 29.479652147125368 ], [ -95.12905492923305, 29.480271147435108 ], [ -95.128814929314487, 29.480615147767921 ], [ -95.128384929437416, 29.480993147418168 ], [ -95.127955928696139, 29.481577148092089 ], [ -95.127840928598104, 29.481835147692234 ], [ -95.127683928648992, 29.482217148260798 ], [ -95.127655929299095, 29.482745148307281 ], [ -95.127737928861237, 29.483440148449883 ], [ -95.127829928707584, 29.483711148733001 ], [ -95.128528929012077, 29.483683148662365 ], [ -95.129099929894579, 29.483636148213197 ], [ -95.129667929298407, 29.483576148568361 ], [ -95.1301039297485, 29.483488147904797 ], [ -95.130689929974338, 29.483346148025621 ], [ -95.130944930188093, 29.483265148512523 ], [ -95.13114293039294, 29.483193148275223 ], [ -95.131361930156373, 29.483116147653597 ], [ -95.131487930266502, 29.48307214849185 ], [ -95.131954930344151, 29.48290314776786 ], [ -95.133331930270558, 29.482396147487506 ], [ -95.134062930171979, 29.482253148020529 ], [ -95.134831930330179, 29.482139148025038 ], [ -95.134919930495442, 29.482127147945452 ], [ -95.135296931307479, 29.482141147540744 ], [ -95.135294930828181, 29.483801148041852 ], [ -95.135291931070256, 29.484540147879546 ], [ -95.135291930800136, 29.485049148199924 ], [ -95.135288931632743, 29.486932148811025 ], [ -95.135285931657194, 29.488646149517422 ], [ -95.135296930827678, 29.489358149555034 ], [ -95.139460931748985, 29.486045148428708 ], [ -95.140484932929709, 29.48526614799469 ], [ -95.14077493203213, 29.485046148103216 ], [ -95.140941932851035, 29.484905148500445 ], [ -95.143069933121154, 29.483339147598194 ], [ -95.145057933031126, 29.481880147116385 ], [ -95.145974933658465, 29.481175147554723 ], [ -95.148919934126695, 29.478594146523864 ], [ -95.150895934896056, 29.476874146440952 ], [ -95.151261934927263, 29.476564145688943 ], [ -95.154042935243609, 29.474108145283299 ], [ -95.155116936078556, 29.473305144841881 ], [ -95.15518793582558, 29.473220145542637 ], [ -95.161614937355822, 29.468237144427359 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 425, "Tract": "48201312700", "Area_SqMi": 0.33307321404406964, "total_2009": 1727, "total_2010": 1460, "total_2011": 2104, "total_2012": 201, "total_2013": 1415, "total_2014": 853, "total_2015": 867, "total_2016": 766, "total_2017": 893, "total_2018": 857, "total_2019": 824, "total_2020": 874, "age1": 83, "age2": 539, "age3": 362, "earn1": 407, "earn2": 208, "earn3": 369, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 3, "naics_s07": 11, "naics_s08": 0, "naics_s09": 21, "naics_s10": 0, "naics_s11": 5, "naics_s12": 43, "naics_s13": 0, "naics_s14": 5, "naics_s15": 605, "naics_s16": 253, "naics_s17": 0, "naics_s18": 21, "naics_s19": 10, "naics_s20": 3, "race1": 195, "race2": 702, "race3": 3, "race4": 65, "race5": 0, "race6": 19, "ethnicity1": 890, "ethnicity2": 94, "edu1": 128, "edu2": 206, "edu3": 294, "edu4": 273, "Shape_Length": 12764.275390297596, "Shape_Area": 9285511.1470455565, "total_2021": 931, "total_2022": 984 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.375011003535633, 29.726606189845551 ], [ -95.374732002747677, 29.726438189806039 ], [ -95.374433002450644, 29.726264190268154 ], [ -95.374138002386019, 29.72609318957409 ], [ -95.372462002228758, 29.725065189851854 ], [ -95.370750002140184, 29.724029189605304 ], [ -95.370147002247649, 29.723679189629557 ], [ -95.369041001352599, 29.723002189466307 ], [ -95.367318000661953, 29.72197018929057 ], [ -95.365677000799067, 29.720973189503326 ], [ -95.365080999901664, 29.721731189627 ], [ -95.364995000845568, 29.72185318963254 ], [ -95.36497300024196, 29.721972189173407 ], [ -95.364831000097382, 29.722001189263295 ], [ -95.364751000586025, 29.722074189434139 ], [ -95.364694999952832, 29.722158189195305 ], [ -95.364300000433559, 29.722585189842551 ], [ -95.364229000355635, 29.72274718972109 ], [ -95.364164000120212, 29.72284318979835 ], [ -95.363640000322405, 29.723450189411622 ], [ -95.363165999517008, 29.724065190109158 ], [ -95.362685000294064, 29.724724189697714 ], [ -95.362200999458096, 29.725375190517681 ], [ -95.361742999602939, 29.725986190556796 ], [ -95.361226000046031, 29.726619190449206 ], [ -95.362187000370966, 29.727202190133706 ], [ -95.362859000018233, 29.727596190222755 ], [ -95.364563000091309, 29.728650190424737 ], [ -95.365444000441073, 29.729182191062179 ], [ -95.366279001461479, 29.72967019070494 ], [ -95.36716200083842, 29.730209190558476 ], [ -95.367999001779395, 29.730709190860615 ], [ -95.368850001456792, 29.731223190973413 ], [ -95.369702001756195, 29.73173119166167 ], [ -95.369857002485148, 29.731837191190774 ], [ -95.370556001826415, 29.732248191723336 ], [ -95.371047001880768, 29.732551191593682 ], [ -95.371211002238439, 29.732652191440554 ], [ -95.371300002263894, 29.732707191162479 ], [ -95.371486002769913, 29.732822191293387 ], [ -95.371766002709862, 29.732995191040811 ], [ -95.371817002290086, 29.732780191726409 ], [ -95.371944002456772, 29.732241190857824 ], [ -95.372252002643094, 29.731397191388336 ], [ -95.372409002667339, 29.730745190679542 ], [ -95.372453002571262, 29.730609191224996 ], [ -95.372548002164606, 29.730261190773845 ], [ -95.372626002268063, 29.729948190530688 ], [ -95.372733002950937, 29.729727190673703 ], [ -95.372977003016302, 29.729209190873984 ], [ -95.373084002524891, 29.729017190894361 ], [ -95.373267002707863, 29.72876919039102 ], [ -95.373512003350712, 29.728465190063435 ], [ -95.37401300329087, 29.727843190193667 ], [ -95.374366003344093, 29.727383189787982 ], [ -95.374477003383717, 29.727243189906915 ], [ -95.375011003535633, 29.726606189845551 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 426, "Tract": "48201312800", "Area_SqMi": 0.36087698244135025, "total_2009": 1982, "total_2010": 2054, "total_2011": 1938, "total_2012": 223, "total_2013": 1575, "total_2014": 1529, "total_2015": 1575, "total_2016": 1493, "total_2017": 1515, "total_2018": 1492, "total_2019": 1676, "total_2020": 1580, "age1": 137, "age2": 712, "age3": 552, "earn1": 324, "earn2": 360, "earn3": 717, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 13, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 1132, "naics_s16": 2, "naics_s17": 0, "naics_s18": 251, "naics_s19": 0, "naics_s20": 1, "race1": 340, "race2": 942, "race3": 5, "race4": 94, "race5": 0, "race6": 20, "ethnicity1": 1226, "ethnicity2": 175, "edu1": 182, "edu2": 249, "edu3": 350, "edu4": 483, "Shape_Length": 13173.84548666008, "Shape_Area": 10060632.623336541, "total_2021": 1390, "total_2022": 1401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.365677000799067, 29.720973189503326 ], [ -95.365595000459962, 29.720923189421363 ], [ -95.364689000600521, 29.720398189051792 ], [ -95.364002000092682, 29.719986188651653 ], [ -95.363877000450117, 29.719989188980485 ], [ -95.362669999485092, 29.719591188632986 ], [ -95.361735999493689, 29.719296188515596 ], [ -95.361382999793264, 29.719190188765392 ], [ -95.358831998989714, 29.718401188962329 ], [ -95.356270998258381, 29.717628188667742 ], [ -95.354341997164866, 29.717047188904285 ], [ -95.353694997548757, 29.716853188967587 ], [ -95.35353299744402, 29.717256189228245 ], [ -95.353497997472047, 29.71734518850775 ], [ -95.353434996892574, 29.717511188700446 ], [ -95.353354997485468, 29.717727188620401 ], [ -95.353121996835867, 29.718293188605283 ], [ -95.352907997393629, 29.718833189314978 ], [ -95.352769997087762, 29.719185188908451 ], [ -95.352744996795408, 29.719251189166307 ], [ -95.35263099707123, 29.719508189590748 ], [ -95.352565996844746, 29.719649189318638 ], [ -95.352243997143262, 29.720455189815503 ], [ -95.35213399659699, 29.720764189310611 ], [ -95.351936996508329, 29.721246189263841 ], [ -95.351801997058516, 29.721566190086435 ], [ -95.35166499735621, 29.721920189903546 ], [ -95.351418997091187, 29.722536189648178 ], [ -95.350941996900985, 29.723733190549527 ], [ -95.351709997432636, 29.72396018999196 ], [ -95.352463996933977, 29.724191190682106 ], [ -95.353221997484809, 29.724430189884572 ], [ -95.353991997607409, 29.724657190645718 ], [ -95.354735997866783, 29.72489219016343 ], [ -95.35493999766058, 29.724927190694984 ], [ -95.355112998125051, 29.724946190501132 ], [ -95.355280998324858, 29.724950190515653 ], [ -95.355475997802358, 29.724940190510914 ], [ -95.355685998405008, 29.724911189866805 ], [ -95.355954998637984, 29.724886190612036 ], [ -95.356066998287943, 29.724880189978776 ], [ -95.356280998494555, 29.724901190065104 ], [ -95.356125997750155, 29.725294190014669 ], [ -95.356009998541779, 29.725591190298303 ], [ -95.356381997803581, 29.725709190726644 ], [ -95.357299998493616, 29.725983190468448 ], [ -95.358570999103478, 29.726375190378722 ], [ -95.360248999034297, 29.726887190864375 ], [ -95.360639999430688, 29.727008190473416 ], [ -95.360790999281576, 29.727155190351144 ], [ -95.361226000046031, 29.726619190449206 ], [ -95.361742999602939, 29.725986190556796 ], [ -95.362200999458096, 29.725375190517681 ], [ -95.362685000294064, 29.724724189697714 ], [ -95.363165999517008, 29.724065190109158 ], [ -95.363640000322405, 29.723450189411622 ], [ -95.364164000120212, 29.72284318979835 ], [ -95.364229000355635, 29.72274718972109 ], [ -95.364300000433559, 29.722585189842551 ], [ -95.364694999952832, 29.722158189195305 ], [ -95.364751000586025, 29.722074189434139 ], [ -95.364831000097382, 29.722001189263295 ], [ -95.36497300024196, 29.721972189173407 ], [ -95.364995000845568, 29.72185318963254 ], [ -95.365080999901664, 29.721731189627 ], [ -95.365677000799067, 29.720973189503326 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 427, "Tract": "48201313300", "Area_SqMi": 0.8831843503047796, "total_2009": 264, "total_2010": 270, "total_2011": 230, "total_2012": 265, "total_2013": 283, "total_2014": 287, "total_2015": 260, "total_2016": 197, "total_2017": 232, "total_2018": 241, "total_2019": 204, "total_2020": 164, "age1": 17, "age2": 87, "age3": 80, "earn1": 33, "earn2": 59, "earn3": 92, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 31, "naics_s06": 0, "naics_s07": 3, "naics_s08": 25, "naics_s09": 0, "naics_s10": 0, "naics_s11": 20, "naics_s12": 17, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 28, "naics_s17": 0, "naics_s18": 2, "naics_s19": 46, "naics_s20": 0, "race1": 104, "race2": 68, "race3": 1, "race4": 7, "race5": 0, "race6": 4, "ethnicity1": 124, "ethnicity2": 60, "edu1": 39, "edu2": 44, "edu3": 50, "edu4": 34, "Shape_Length": 21879.69529002444, "Shape_Area": 24621668.101374704, "total_2021": 189, "total_2022": 184 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.345486994081398, 29.701317185697931 ], [ -95.345679994117887, 29.700872185979211 ], [ -95.34480499392204, 29.700608185527788 ], [ -95.344240993815887, 29.700426185438687 ], [ -95.343440994383073, 29.700185185506943 ], [ -95.342981993723114, 29.700033185383482 ], [ -95.342234994069528, 29.699801185426864 ], [ -95.34180199294407, 29.699657185933784 ], [ -95.341530992873373, 29.69957418602031 ], [ -95.341172992763447, 29.699454185904383 ], [ -95.34074899350378, 29.699324185838808 ], [ -95.340459992877399, 29.69923418524526 ], [ -95.338946992717695, 29.698616185529655 ], [ -95.337768992831386, 29.698224185137757 ], [ -95.336772992504365, 29.697897185451836 ], [ -95.336622991672755, 29.697847185612741 ], [ -95.335924992277199, 29.697612185067431 ], [ -95.335206992142005, 29.697390185498964 ], [ -95.335008991134302, 29.697312185714729 ], [ -95.334039991150334, 29.696989185401783 ], [ -95.332150990298643, 29.696391185263018 ], [ -95.331705991111292, 29.69623418500327 ], [ -95.331348990824608, 29.69611618564473 ], [ -95.330400989855988, 29.69581518515308 ], [ -95.329860990560078, 29.695639184998303 ], [ -95.32952798979953, 29.695537185100129 ], [ -95.327952989378346, 29.695138185290652 ], [ -95.327520989160874, 29.695029184872716 ], [ -95.327264989315609, 29.695133184911814 ], [ -95.326950989649632, 29.695312185225902 ], [ -95.326670989070422, 29.69547118495014 ], [ -95.326691989405148, 29.695562185565628 ], [ -95.326747989191617, 29.69574318515901 ], [ -95.32753198956965, 29.69829918596777 ], [ -95.327567989575229, 29.698400186095736 ], [ -95.330792991335784, 29.707938187535138 ], [ -95.331533990960494, 29.710169188109891 ], [ -95.33249499117187, 29.712993188417865 ], [ -95.332877991644409, 29.714229188865009 ], [ -95.332923991732457, 29.714377189118014 ], [ -95.333139991647613, 29.714160189061744 ], [ -95.333333992166075, 29.713798189007225 ], [ -95.333417992036289, 29.713641188814076 ], [ -95.3335059922683, 29.713576188890599 ], [ -95.333889992125705, 29.71329418866458 ], [ -95.334031992526207, 29.713251188229872 ], [ -95.334122991634075, 29.713223188984205 ], [ -95.334780991880891, 29.71322818823807 ], [ -95.334934992485913, 29.713274188866727 ], [ -95.33601399225509, 29.713869188616354 ], [ -95.336840993221884, 29.714269189062215 ], [ -95.337768993020077, 29.714804188429657 ], [ -95.338205992727609, 29.714904188456426 ], [ -95.338483993141594, 29.714848189226974 ], [ -95.338725993414286, 29.714653188348173 ], [ -95.338939993755474, 29.714265188519882 ], [ -95.339031993148851, 29.714098188932745 ], [ -95.339135993049723, 29.713909188478024 ], [ -95.339225993660108, 29.713597188127853 ], [ -95.339255993771431, 29.712846188465399 ], [ -95.339342993664474, 29.712277188086418 ], [ -95.339572993636438, 29.711818187771669 ], [ -95.339894993299524, 29.711450188009387 ], [ -95.340059993491508, 29.711361187945499 ], [ -95.340103993579604, 29.711338188446327 ], [ -95.340292993255034, 29.711318188080202 ], [ -95.340688993706664, 29.711414187751689 ], [ -95.341279993483269, 29.711741188396655 ], [ -95.341515993812749, 29.711804187655918 ], [ -95.341533993741578, 29.711687187639381 ], [ -95.34157399353829, 29.711436188259437 ], [ -95.34163399415398, 29.711081187978355 ], [ -95.341718993765468, 29.710619188250977 ], [ -95.341817993788553, 29.710273187724901 ], [ -95.341921994234752, 29.710020187476911 ], [ -95.342095993650531, 29.709598187238608 ], [ -95.342174994483244, 29.709412187345929 ], [ -95.34268899363029, 29.708130187515923 ], [ -95.342851993793388, 29.707751186822335 ], [ -95.343356993952654, 29.706513187351863 ], [ -95.343491994258343, 29.706205186688749 ], [ -95.34357999451089, 29.705992186782293 ], [ -95.343921993934302, 29.705134186870239 ], [ -95.344277994424004, 29.704302186489798 ], [ -95.34446599469203, 29.703832186685752 ], [ -95.344563994685544, 29.703564186674164 ], [ -95.344595994384463, 29.703473186508131 ], [ -95.344932994198771, 29.702651186499178 ], [ -95.345196994766141, 29.702019185795802 ], [ -95.34528399458523, 29.701799185977514 ], [ -95.345433994935107, 29.701440185562628 ], [ -95.345486994081398, 29.701317185697931 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 428, "Tract": "48167721103", "Area_SqMi": 5.0526008573223873, "total_2009": 535, "total_2010": 863, "total_2011": 382, "total_2012": 274, "total_2013": 290, "total_2014": 243, "total_2015": 336, "total_2016": 471, "total_2017": 633, "total_2018": 759, "total_2019": 610, "total_2020": 672, "age1": 92, "age2": 251, "age3": 88, "earn1": 46, "earn2": 85, "earn3": 300, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 287, "naics_s05": 47, "naics_s06": 27, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 9, "naics_s13": 0, "naics_s14": 20, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 16, "naics_s19": 15, "naics_s20": 0, "race1": 371, "race2": 40, "race3": 0, "race4": 15, "race5": 1, "race6": 4, "ethnicity1": 290, "ethnicity2": 141, "edu1": 88, "edu2": 81, "edu3": 118, "edu4": 52, "Shape_Length": 62103.507852792085, "Shape_Area": 140857864.28935534, "total_2021": 476, "total_2022": 431 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.047263908923014, 29.49259815263893 ], [ -95.047259908746085, 29.492375152490663 ], [ -95.047253908285001, 29.492031152475029 ], [ -95.04724990867426, 29.491860152996562 ], [ -95.047249908730009, 29.491840152250788 ], [ -95.047246908239615, 29.491724152327439 ], [ -95.04724690888122, 29.491696152743668 ], [ -95.04721290862696, 29.489808151786161 ], [ -95.04716290869716, 29.48710915195279 ], [ -95.047156908899296, 29.486860152063716 ], [ -95.047130908072731, 29.485683151806075 ], [ -95.047107908174496, 29.48463715150034 ], [ -95.047106908265249, 29.484562151055879 ], [ -95.047095908476095, 29.484072151451887 ], [ -95.047052908292557, 29.482028150607587 ], [ -95.047043908389796, 29.481638150655996 ], [ -95.044722908073524, 29.481681150914131 ], [ -95.042358907387182, 29.481725151157807 ], [ -95.040748906476153, 29.481751151194036 ], [ -95.037693906026277, 29.481800150891534 ], [ -95.03770190573168, 29.482378150977063 ], [ -95.037702906347477, 29.482408151214443 ], [ -95.03770290549123, 29.482428151126097 ], [ -95.037703905450741, 29.482522150599522 ], [ -95.037688905667878, 29.482640150765718 ], [ -95.037621905875397, 29.482718150991975 ], [ -95.037510905556275, 29.482718150846704 ], [ -95.034107905212835, 29.482771151238428 ], [ -95.033057904931766, 29.48278815092327 ], [ -95.032060904815353, 29.482803151120081 ], [ -95.028996903272869, 29.482867150945999 ], [ -95.026785903535682, 29.482881151284467 ], [ -95.026744902866326, 29.481095151471241 ], [ -95.026739903400369, 29.480863151511905 ], [ -95.026718903238432, 29.479905151080811 ], [ -95.026709902954636, 29.47948515042491 ], [ -95.026707903116076, 29.479397150665342 ], [ -95.026697902791753, 29.478948150764626 ], [ -95.02677490255941, 29.478692150315716 ], [ -95.026940903032198, 29.478450150197467 ], [ -95.027004903455889, 29.4783601505872 ], [ -95.027208902855307, 29.478207150869327 ], [ -95.027706902629774, 29.477888149942174 ], [ -95.028128902883438, 29.477608150104338 ], [ -95.028519902909395, 29.477350149923602 ], [ -95.028689903522448, 29.477237150397283 ], [ -95.028919903760482, 29.47709615020154 ], [ -95.029142903927067, 29.476945150576949 ], [ -95.029239903191893, 29.476879149706587 ], [ -95.02947190357331, 29.476662149693162 ], [ -95.029456903632379, 29.475813150303033 ], [ -95.029450903115432, 29.475435150249773 ], [ -95.029446903267342, 29.475178149532482 ], [ -95.029426903408364, 29.474020149856557 ], [ -95.029372903315746, 29.471514149073851 ], [ -95.029363903148123, 29.471094149124394 ], [ -95.029357903396416, 29.470690148597878 ], [ -95.029344902689914, 29.469849148735012 ], [ -95.02933890291132, 29.469442148958485 ], [ -95.029326903004943, 29.468988148176546 ], [ -95.029320903074122, 29.468736148850304 ], [ -95.029308903587847, 29.468127148375753 ], [ -95.029293902798273, 29.467322147931856 ], [ -95.029284903276803, 29.466865148502521 ], [ -95.029262902886998, 29.465727147933443 ], [ -95.028934903285688, 29.465815147977306 ], [ -95.027787902238785, 29.466101148307708 ], [ -95.026551901830388, 29.466410148090596 ], [ -95.024126901941813, 29.46701414865985 ], [ -95.02295590104363, 29.467306147960201 ], [ -95.022811901236125, 29.467342148314714 ], [ -95.022339901599224, 29.467460148801756 ], [ -95.021391901284886, 29.467690148374274 ], [ -95.019805901080886, 29.468076148588683 ], [ -95.01971290024963, 29.468099148679755 ], [ -95.018351900047833, 29.468452148433826 ], [ -95.016619899929935, 29.468900148727837 ], [ -95.016035899832275, 29.469044149248251 ], [ -95.015194899111563, 29.469259148901092 ], [ -95.014741898989897, 29.469367149340378 ], [ -95.014338899498483, 29.469410149251289 ], [ -95.014130898848464, 29.469419148940489 ], [ -95.013954899593486, 29.469427149421424 ], [ -95.013235898876601, 29.469458148773771 ], [ -95.012945899175918, 29.469471149329543 ], [ -95.012158898928092, 29.469505149430869 ], [ -95.011158898973051, 29.469548149637706 ], [ -95.010867897995979, 29.469547149198803 ], [ -95.00686089704655, 29.470175149790101 ], [ -95.003580896509945, 29.470687149577692 ], [ -94.997658895587193, 29.471650149744157 ], [ -94.993439893735328, 29.472335150582332 ], [ -94.987751892296117, 29.473221150943598 ], [ -94.987394892375491, 29.473190150843585 ], [ -94.987029892373684, 29.47315815111223 ], [ -94.986375892056842, 29.473033151059884 ], [ -94.985771891901521, 29.472917150765898 ], [ -94.981956891552002, 29.472049150724676 ], [ -94.979446890760585, 29.471478150358429 ], [ -94.978951890276846, 29.471365150653845 ], [ -94.979663890188462, 29.472391150992948 ], [ -94.981504890710013, 29.475532151185163 ], [ -94.984341892100886, 29.48037115255541 ], [ -94.985108892118944, 29.481679152436261 ], [ -94.985487892038151, 29.482325152935598 ], [ -94.98738289360179, 29.485560152974717 ], [ -94.990158894302681, 29.49030415438077 ], [ -94.990547894315498, 29.490975154119575 ], [ -94.99162189460219, 29.492805154432705 ], [ -94.992947894735863, 29.495071155494543 ], [ -94.993608894846773, 29.496201155477472 ], [ -94.995123896045826, 29.49879015542334 ], [ -94.995374895898664, 29.498653156098541 ], [ -94.995786895935822, 29.498427155288436 ], [ -94.996497895633738, 29.498090155662901 ], [ -94.996982895702189, 29.497861155178143 ], [ -94.997954896479399, 29.497405155482806 ], [ -94.998524896896754, 29.497122155310471 ], [ -94.99919189706857, 29.49679215548225 ], [ -95.000653897198049, 29.496068154719339 ], [ -95.002414897438214, 29.495282154592921 ], [ -95.002763897090531, 29.49512515460513 ], [ -95.003830897731362, 29.494650154859666 ], [ -95.004965898413616, 29.494172154751446 ], [ -95.005708897763199, 29.493895154511492 ], [ -95.006772898800534, 29.49354615389791 ], [ -95.007362899033907, 29.493400154643332 ], [ -95.00788989827717, 29.493269154252776 ], [ -95.008694899106246, 29.493108153755045 ], [ -95.009660899079407, 29.49295615436375 ], [ -95.010303898874596, 29.492867154196272 ], [ -95.010774899275859, 29.492828153920961 ], [ -95.013179900448733, 29.492781154402625 ], [ -95.014970900418675, 29.492746154081598 ], [ -95.015044901001957, 29.492744153789761 ], [ -95.015542901060869, 29.492736153696814 ], [ -95.016925901079887, 29.492709154231161 ], [ -95.019001901407577, 29.492669153689896 ], [ -95.019319901379959, 29.492663153786662 ], [ -95.019442901342643, 29.492660154164025 ], [ -95.019493901950923, 29.492659153634317 ], [ -95.02017690133583, 29.492646153559807 ], [ -95.021384901783819, 29.492629153435917 ], [ -95.021700902703344, 29.492624153674768 ], [ -95.026998903299884, 29.492544153055103 ], [ -95.027988903662319, 29.492523152999322 ], [ -95.028815904298611, 29.492586153493761 ], [ -95.029609904443802, 29.492605153051873 ], [ -95.03045390430573, 29.49267015343106 ], [ -95.031989904987327, 29.492767153677121 ], [ -95.032476905263621, 29.492789153354572 ], [ -95.034440905322299, 29.492789153683212 ], [ -95.034780906023911, 29.492789153357105 ], [ -95.037047906228281, 29.492763153019641 ], [ -95.037492906430444, 29.492758153372822 ], [ -95.047061908730953, 29.492601152985355 ], [ -95.047263908923014, 29.49259815263893 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 429, "Tract": "48167721503", "Area_SqMi": 0.78403555492943022, "total_2009": 442, "total_2010": 619, "total_2011": 613, "total_2012": 476, "total_2013": 517, "total_2014": 500, "total_2015": 449, "total_2016": 449, "total_2017": 435, "total_2018": 388, "total_2019": 425, "total_2020": 449, "age1": 123, "age2": 195, "age3": 77, "earn1": 63, "earn2": 183, "earn3": 149, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 3, "naics_s06": 14, "naics_s07": 16, "naics_s08": 8, "naics_s09": 10, "naics_s10": 25, "naics_s11": 17, "naics_s12": 168, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 66, "naics_s19": 25, "naics_s20": 19, "race1": 344, "race2": 21, "race3": 10, "race4": 10, "race5": 0, "race6": 10, "ethnicity1": 241, "ethnicity2": 154, "edu1": 53, "edu2": 81, "edu3": 81, "edu4": 57, "Shape_Length": 21636.065256416849, "Shape_Area": 21857569.381169204, "total_2021": 405, "total_2022": 395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.042662910505328, 29.547891164166906 ], [ -95.041609909366812, 29.544839163511501 ], [ -95.041474909894973, 29.544646164172473 ], [ -95.041417909471619, 29.544589163923369 ], [ -95.041369909408061, 29.544557164067218 ], [ -95.041332909644339, 29.544542163660747 ], [ -95.041183909815103, 29.544573164028176 ], [ -95.040986909537622, 29.544608164159779 ], [ -95.040786909431233, 29.544634163660081 ], [ -95.040653909161691, 29.544646163908695 ], [ -95.040519909502166, 29.544654163926761 ], [ -95.040247908975957, 29.544661163337992 ], [ -95.040274908865555, 29.544161163286152 ], [ -95.040300908766937, 29.543677163637469 ], [ -95.040320908983816, 29.543274163090587 ], [ -95.040333909668817, 29.543038163242571 ], [ -95.040347908935914, 29.542786163787191 ], [ -95.040370909538652, 29.542297163050087 ], [ -95.040371908797667, 29.542276162876192 ], [ -95.04038190951556, 29.542097163446222 ], [ -95.040382908896433, 29.542068163584556 ], [ -95.040385909391134, 29.542056163086002 ], [ -95.0403919093349, 29.542030163263711 ], [ -95.040398909170577, 29.54200516356233 ], [ -95.040406909476815, 29.541980162796207 ], [ -95.040416909555702, 29.541955163477464 ], [ -95.040427909559114, 29.541931163377189 ], [ -95.040440909402832, 29.54190716291998 ], [ -95.040453908661718, 29.541884163646944 ], [ -95.040468908825474, 29.54186116314489 ], [ -95.040484908876692, 29.54183916276186 ], [ -95.040501908780229, 29.541818163399178 ], [ -95.040519909149012, 29.541797162969203 ], [ -95.040538909369559, 29.541777163558827 ], [ -95.040558909511716, 29.541758163364108 ], [ -95.040589908845178, 29.54173016301387 ], [ -95.040612909193513, 29.541713162887074 ], [ -95.040635908992172, 29.541697163039998 ], [ -95.040659909219769, 29.541681163024641 ], [ -95.040694909111195, 29.54165716315801 ], [ -95.040716909531127, 29.541639162893794 ], [ -95.040737909507797, 29.541621162790804 ], [ -95.040758908951659, 29.541602163271911 ], [ -95.040786908990086, 29.541572162833109 ], [ -95.040803909327593, 29.541550163147001 ], [ -95.040818908823482, 29.541528162887953 ], [ -95.040839909479999, 29.541493163109156 ], [ -95.040857908855202, 29.541458162922524 ], [ -95.040871909625565, 29.54142116289033 ], [ -95.040882909625637, 29.541383163070542 ], [ -95.040888909403563, 29.541357163222216 ], [ -95.040891908885911, 29.541335163295358 ], [ -95.040769909587382, 29.54133116312185 ], [ -95.040792909115794, 29.541249163308908 ], [ -95.040420908995614, 29.541206162886173 ], [ -95.039313908323635, 29.541078163167874 ], [ -95.03780690801122, 29.540961163530422 ], [ -95.037242908638262, 29.540928163515165 ], [ -95.036878908594574, 29.540893163385991 ], [ -95.036766908089092, 29.540885163131406 ], [ -95.036557907710588, 29.540870163173299 ], [ -95.035894907850704, 29.540822162847821 ], [ -95.035757908221981, 29.540814163496197 ], [ -95.035498907595425, 29.540799163458423 ], [ -95.035380907829904, 29.540791162889143 ], [ -95.035263907880704, 29.540784163277408 ], [ -95.034739908061496, 29.540753163118559 ], [ -95.034361908019363, 29.540731162778712 ], [ -95.033885906993859, 29.540702163513266 ], [ -95.033756907321987, 29.540695163197906 ], [ -95.033594906876729, 29.540685163220804 ], [ -95.032086906842665, 29.540682163174516 ], [ -95.031757906377706, 29.540680163173644 ], [ -95.031197906751672, 29.540679163052452 ], [ -95.030364906194308, 29.540678162857443 ], [ -95.029137906173887, 29.540675163454225 ], [ -95.028776905787183, 29.5406741629374 ], [ -95.028522906083353, 29.540678163732114 ], [ -95.028365906446297, 29.540680163350228 ], [ -95.027926905499896, 29.540686162940641 ], [ -95.027692905509426, 29.540689163822854 ], [ -95.027617906101455, 29.540690163805245 ], [ -95.027542905299569, 29.540690163400207 ], [ -95.027146905857052, 29.540696163397687 ], [ -95.026642905917782, 29.540702163728007 ], [ -95.026238904955335, 29.54070816337752 ], [ -95.026218905738816, 29.540708163879597 ], [ -95.026117905557172, 29.540709163887417 ], [ -95.026085905762727, 29.540710163669598 ], [ -95.026057905611864, 29.540711163162378 ], [ -95.026039905185641, 29.540711163466142 ], [ -95.026018905576962, 29.540711163091522 ], [ -95.025922905426228, 29.540712163518311 ], [ -95.025502905734115, 29.540718163858127 ], [ -95.025379904807295, 29.540720163184456 ], [ -95.024255904705285, 29.540749163782859 ], [ -95.022740904448526, 29.540788163657691 ], [ -95.022655904295547, 29.540791163684954 ], [ -95.02210390456132, 29.540811163171274 ], [ -95.021438903947143, 29.540835163587104 ], [ -95.021225904241518, 29.540843163937023 ], [ -95.020858904542365, 29.540857164013996 ], [ -95.02080890379726, 29.540867163975104 ], [ -95.020784904382424, 29.540872163497458 ], [ -95.020763903857699, 29.540876163494694 ], [ -95.020662904248439, 29.540897163717862 ], [ -95.020183904305298, 29.540995163596186 ], [ -95.019852903347555, 29.541063163914895 ], [ -95.020056904269907, 29.541400164097723 ], [ -95.020616903627428, 29.542324164240217 ], [ -95.020827903979267, 29.542673163752145 ], [ -95.021178904422143, 29.543254164267008 ], [ -95.021493904206437, 29.543774164352492 ], [ -95.021578904515678, 29.54396016394735 ], [ -95.022040905049849, 29.544977164226239 ], [ -95.022204904836201, 29.545715164825346 ], [ -95.022264904834302, 29.546034164666132 ], [ -95.022317905017559, 29.546302164576495 ], [ -95.022578904874919, 29.54738116464145 ], [ -95.022797904676651, 29.548277165214785 ], [ -95.022978904883743, 29.549058165466992 ], [ -95.023086904548762, 29.549442165755245 ], [ -95.023153904595077, 29.549451165244882 ], [ -95.02322290496528, 29.549461164915215 ], [ -95.023286905058157, 29.549425165285058 ], [ -95.023799905404431, 29.549375165231282 ], [ -95.025074905590373, 29.549247165123472 ], [ -95.026054905564834, 29.548705165191393 ], [ -95.026682905534969, 29.548304165422891 ], [ -95.027285906199552, 29.547896164506035 ], [ -95.027742905758657, 29.547634164832122 ], [ -95.028348906766666, 29.547497165137599 ], [ -95.028501906468094, 29.547454164933701 ], [ -95.028725906029962, 29.547656164503096 ], [ -95.028737906518174, 29.547768164766953 ], [ -95.028814906619047, 29.548339165020671 ], [ -95.028805906760454, 29.548517165403403 ], [ -95.028776906960687, 29.549040165173643 ], [ -95.028699906460403, 29.550447164932422 ], [ -95.028755906985864, 29.550834165471294 ], [ -95.028830907087524, 29.551348165432561 ], [ -95.029110906311132, 29.551808166016404 ], [ -95.029566906834944, 29.552198165766885 ], [ -95.030356906633912, 29.552293165614632 ], [ -95.031309907056254, 29.552115165604704 ], [ -95.031839907061695, 29.552139165619494 ], [ -95.032947907840196, 29.552234165757746 ], [ -95.033009908085319, 29.552256165644351 ], [ -95.033295907833732, 29.552358165200825 ], [ -95.03401990778778, 29.552618165733008 ], [ -95.035456908745047, 29.553075165414462 ], [ -95.035716908008041, 29.552835165815925 ], [ -95.035994908801811, 29.552573165615179 ], [ -95.036009908862354, 29.552560165867277 ], [ -95.036819908579062, 29.551846165278633 ], [ -95.036966908369095, 29.551718165166854 ], [ -95.037380908838273, 29.55135616568565 ], [ -95.039161909308021, 29.549799165147483 ], [ -95.040745909803036, 29.548414164774616 ], [ -95.040766909417016, 29.548411164603433 ], [ -95.041020909076167, 29.548339164859716 ], [ -95.041294909508068, 29.548264164608316 ], [ -95.042662910505328, 29.547891164166906 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 430, "Tract": "48167720605", "Area_SqMi": 16.36660015088626, "total_2009": 365, "total_2010": 317, "total_2011": 332, "total_2012": 380, "total_2013": 337, "total_2014": 295, "total_2015": 306, "total_2016": 295, "total_2017": 288, "total_2018": 360, "total_2019": 444, "total_2020": 448, "age1": 142, "age2": 240, "age3": 97, "earn1": 92, "earn2": 188, "earn3": 199, "naics_s01": 20, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 9, "naics_s06": 3, "naics_s07": 176, "naics_s08": 0, "naics_s09": 0, "naics_s10": 9, "naics_s11": 0, "naics_s12": 29, "naics_s13": 2, "naics_s14": 47, "naics_s15": 53, "naics_s16": 16, "naics_s17": 15, "naics_s18": 31, "naics_s19": 39, "naics_s20": 0, "race1": 367, "race2": 79, "race3": 1, "race4": 21, "race5": 1, "race6": 10, "ethnicity1": 358, "ethnicity2": 121, "edu1": 72, "edu2": 106, "edu3": 108, "edu4": 51, "Shape_Length": 104884.01779182376, "Shape_Area": 456272800.49059743, "total_2021": 530, "total_2022": 479 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.229438954121747, 29.461238140296363 ], [ -95.229824954304561, 29.460672140228336 ], [ -95.226121953398021, 29.455017139320443 ], [ -95.225476952729295, 29.45406213859702 ], [ -95.225436953100072, 29.454002138952738 ], [ -95.225192953160629, 29.453642138738623 ], [ -95.223870952743326, 29.451685138708235 ], [ -95.222609952403843, 29.449820137913647 ], [ -95.221543951871666, 29.448232138029088 ], [ -95.220157951680861, 29.446167137334559 ], [ -95.220135951325261, 29.4461341378498 ], [ -95.218176950406217, 29.443215136967115 ], [ -95.217812950070311, 29.44267413671664 ], [ -95.21649694970678, 29.440692136386154 ], [ -95.215308949882214, 29.438911136390487 ], [ -95.214711949416525, 29.437937135595945 ], [ -95.214566949695822, 29.437722135807483 ], [ -95.214144949090382, 29.437086136108114 ], [ -95.213480949455757, 29.43608513531569 ], [ -95.209346947275066, 29.42998513486457 ], [ -95.208345947271326, 29.42999113429109 ], [ -95.207773946914756, 29.430011135005628 ], [ -95.207498946917596, 29.430011134883571 ], [ -95.207015947525207, 29.430086134460733 ], [ -95.206764947362473, 29.43012913474621 ], [ -95.206217946522457, 29.430294134854094 ], [ -95.205631946442836, 29.43053813430009 ], [ -95.205032946809894, 29.430907134765615 ], [ -95.204520946868229, 29.431319135284728 ], [ -95.203667946724295, 29.432300135470864 ], [ -95.202846946647298, 29.43315313572759 ], [ -95.202122946080777, 29.433931135358502 ], [ -95.201706945469411, 29.434315135875046 ], [ -95.201354945406422, 29.434538135421295 ], [ -95.200915945408696, 29.434734135416548 ], [ -95.200757945863685, 29.434805135513141 ], [ -95.200107945188833, 29.43499713548216 ], [ -95.199440945307884, 29.435035136066926 ], [ -95.19882894484391, 29.435070136075378 ], [ -95.198317944726995, 29.435099135839817 ], [ -95.195950944533919, 29.435221135769879 ], [ -95.194042944320316, 29.43530113618564 ], [ -95.193734944137333, 29.435321136530334 ], [ -95.192761943484371, 29.435385136012741 ], [ -95.191930943217415, 29.435455136396918 ], [ -95.190858943375304, 29.435495136368264 ], [ -95.18747994234694, 29.435690136375722 ], [ -95.184446941178336, 29.435840136943778 ], [ -95.183632941119228, 29.435855136457281 ], [ -95.183555941115188, 29.435856136513372 ], [ -95.183444941035347, 29.435859136880229 ], [ -95.183168940804109, 29.435864136679161 ], [ -95.181215940334368, 29.435875136893699 ], [ -95.176847940056774, 29.435888137270151 ], [ -95.176553939290997, 29.435888136655972 ], [ -95.176298939429003, 29.435887136777289 ], [ -95.173989939041107, 29.435877137072762 ], [ -95.172004938631801, 29.435891136748573 ], [ -95.171604937809875, 29.435926136603854 ], [ -95.169967938234663, 29.436039137045519 ], [ -95.169719937478604, 29.435343136989889 ], [ -95.16962393806287, 29.434879137212633 ], [ -95.169655938179503, 29.434319136585088 ], [ -95.169335937552987, 29.433807136867095 ], [ -95.169143937201767, 29.433471136712974 ], [ -95.169271937039795, 29.433199136854679 ], [ -95.16981593777848, 29.432911136044172 ], [ -95.169815937949608, 29.43260713623091 ], [ -95.169591937155758, 29.432415136455734 ], [ -95.169031937641506, 29.432159136371595 ], [ -95.168695937560216, 29.431935136023807 ], [ -95.168439937184189, 29.431519136357142 ], [ -95.167815936853145, 29.431343135735137 ], [ -95.167335936538962, 29.431279135825449 ], [ -95.167060937132703, 29.431311135743293 ], [ -95.166535937108662, 29.431375136467103 ], [ -95.165945936251532, 29.431311136453665 ], [ -95.165092936755755, 29.430993136058138 ], [ -95.164305936641327, 29.43067613640725 ], [ -95.16363293548288, 29.430597136512684 ], [ -95.162779935899806, 29.430406135697829 ], [ -95.162189935565749, 29.430073136438637 ], [ -95.161303935115271, 29.429676135848716 ], [ -95.160729935465639, 29.429295136300322 ], [ -95.160237935059243, 29.428724135926569 ], [ -95.159433935315434, 29.428422135739773 ], [ -95.15849893483329, 29.428200135575306 ], [ -95.157317933863254, 29.428359136323035 ], [ -95.15666193456498, 29.428184136042663 ], [ -95.156369933627445, 29.427977135932625 ], [ -95.156084934412974, 29.427819135987551 ], [ -95.155660933720142, 29.427800135704935 ], [ -95.155181933601796, 29.427883135653598 ], [ -95.154842934134777, 29.428331135921784 ], [ -95.154409933930168, 29.428683136219622 ], [ -95.154023933381168, 29.428731135869349 ], [ -95.153607932842661, 29.428299136056882 ], [ -95.152974932698484, 29.428059136317167 ], [ -95.151291932967126, 29.428139135771303 ], [ -95.150797932563634, 29.428539136569665 ], [ -95.150365932159772, 29.428747136413158 ], [ -95.150055932752878, 29.427899136454876 ], [ -95.14974693196929, 29.427623135799898 ], [ -95.149438931833387, 29.427540136359902 ], [ -95.148768931778847, 29.427766135795807 ], [ -95.148227932224444, 29.42827613652749 ], [ -95.147685931350424, 29.428291136255037 ], [ -95.146889932012712, 29.428832136151183 ], [ -95.146570931593686, 29.429463136587206 ], [ -95.146220931301286, 29.42959913649085 ], [ -95.145583931357507, 29.429448136660604 ], [ -95.144844931629564, 29.429319136107885 ], [ -95.144506931085203, 29.429344136788899 ], [ -95.143223930256269, 29.429666136660124 ], [ -95.142775930934789, 29.429966136897722 ], [ -95.142679930421124, 29.430430136906462 ], [ -95.142487930410013, 29.430590136863 ], [ -95.141784930661402, 29.43036613669338 ], [ -95.141256930407266, 29.430430136798631 ], [ -95.140521929777634, 29.42993413659676 ], [ -95.140034930072474, 29.429724136745133 ], [ -95.139706929453837, 29.42958313635172 ], [ -95.138826929818734, 29.429519137060954 ], [ -95.137995929768365, 29.429327136368578 ], [ -95.137260928978563, 29.429039137131497 ], [ -95.136333928951515, 29.428431136226763 ], [ -95.135517928458924, 29.428175136643645 ], [ -95.134910928957268, 29.428335136892976 ], [ -95.134494928173723, 29.428255136656315 ], [ -95.133935927969489, 29.428367136359459 ], [ -95.133535928311161, 29.428223136867306 ], [ -95.13284892753282, 29.428399136490992 ], [ -95.131969928226454, 29.428351137039016 ], [ -95.131489927989549, 29.428415136333548 ], [ -95.130690927258286, 29.428367136468939 ], [ -95.130018927025105, 29.42859113721515 ], [ -95.129712927002956, 29.428697136423395 ], [ -95.129331927246255, 29.428831137096864 ], [ -95.128771927402184, 29.428943137018397 ], [ -95.128420926610161, 29.429311137106485 ], [ -95.12840192676272, 29.429331136609036 ], [ -95.128381927050683, 29.42957313689017 ], [ -95.128269926395802, 29.42969113701416 ], [ -95.128185926820322, 29.429752137491128 ], [ -95.128135926798691, 29.42979513697717 ], [ -95.128116927175157, 29.429813136757407 ], [ -95.128058926548107, 29.429847137214786 ], [ -95.127969926776117, 29.42987213718612 ], [ -95.127841926955085, 29.42988113727419 ], [ -95.127743926917077, 29.42988313743864 ], [ -95.127640927238986, 29.429885137007531 ], [ -95.127542927209277, 29.429900137273737 ], [ -95.127443927042236, 29.42991913764148 ], [ -95.127369926348848, 29.429945137307229 ], [ -95.127275926629721, 29.43000913702884 ], [ -95.127150926383081, 29.430073136862344 ], [ -95.126978926093415, 29.43011713713436 ], [ -95.126852926484943, 29.430106136893645 ], [ -95.126755926666377, 29.430039137625677 ], [ -95.126716926512543, 29.429979137031381 ], [ -95.126661926894542, 29.429955137186244 ], [ -95.126579926662458, 29.429939137483963 ], [ -95.126486926708168, 29.429946136985215 ], [ -95.126357926451945, 29.429969136982724 ], [ -95.126253926288797, 29.429988137700231 ], [ -95.12617192626449, 29.429986137400721 ], [ -95.126079926086561, 29.429961137148513 ], [ -95.126018926172549, 29.429922137270843 ], [ -95.125996926399878, 29.429907137420372 ], [ -95.125663925909052, 29.429697136865538 ], [ -95.125504925882808, 29.429617136952356 ], [ -95.12538192630673, 29.429545137379254 ], [ -95.125275926392291, 29.429483137356915 ], [ -95.12519092620758, 29.429413137490119 ], [ -95.125170926304747, 29.429391137464211 ], [ -95.12512192626032, 29.429339137492779 ], [ -95.125094926173759, 29.429244137404169 ], [ -95.125057926026287, 29.429139136675406 ], [ -95.125055925614973, 29.429049136695706 ], [ -95.125074926347452, 29.428960136991201 ], [ -95.12509792556834, 29.42885813748423 ], [ -95.125092925895842, 29.428753137191013 ], [ -95.125074925603315, 29.428685137226804 ], [ -95.125044925771235, 29.428653137447576 ], [ -95.124921926426367, 29.428654137481018 ], [ -95.124854926422401, 29.428656136736905 ], [ -95.124670925901427, 29.428666136779047 ], [ -95.124546925575956, 29.428672136896928 ], [ -95.124321926060446, 29.42868313685382 ], [ -95.124251925792507, 29.428677136631102 ], [ -95.124236925992633, 29.428670137075287 ], [ -95.124220925666066, 29.428673136739242 ], [ -95.124193925375522, 29.428671137060743 ], [ -95.124145925906674, 29.428653137054738 ], [ -95.124094925921412, 29.428633136921334 ], [ -95.124051925613102, 29.428617137218126 ], [ -95.123965925959524, 29.428570136935559 ], [ -95.123920925361659, 29.428537137258388 ], [ -95.123854926214563, 29.428508136857491 ], [ -95.123767925420182, 29.42850513675598 ], [ -95.123659925721057, 29.428516137026271 ], [ -95.123519925963649, 29.428539137276232 ], [ -95.123420925608841, 29.428563137039816 ], [ -95.123270925223665, 29.428585137132693 ], [ -95.123142925271978, 29.428586136614552 ], [ -95.123024925020914, 29.42857413711473 ], [ -95.122978925068722, 29.428566137227396 ], [ -95.122922925650187, 29.428557137421699 ], [ -95.122856925425779, 29.428542137056411 ], [ -95.122801925538823, 29.428530137335947 ], [ -95.122624925579913, 29.428492137499358 ], [ -95.122538925661445, 29.428449137461755 ], [ -95.122544925594482, 29.428388137270996 ], [ -95.122549924995297, 29.428292137300623 ], [ -95.122542925050482, 29.428213137068177 ], [ -95.122519925742779, 29.42812913664055 ], [ -95.122485925480234, 29.428070136624076 ], [ -95.122415925360997, 29.428036136994908 ], [ -95.122199925570925, 29.428035137389539 ], [ -95.122096924825541, 29.428027136837436 ], [ -95.122037924875372, 29.428030137064361 ], [ -95.121978924921706, 29.428033137265224 ], [ -95.121873925236301, 29.4280511368198 ], [ -95.121787924963769, 29.428063137356073 ], [ -95.1216739256257, 29.428082136606172 ], [ -95.121584924630028, 29.428111137103844 ], [ -95.121506924669234, 29.428154137125311 ], [ -95.121389925546438, 29.428254137329791 ], [ -95.121335925326633, 29.428306137315246 ], [ -95.121213925495312, 29.428479136737579 ], [ -95.121135925278224, 29.428575137042934 ], [ -95.121049924806471, 29.428681137230218 ], [ -95.120937925050768, 29.42877213693852 ], [ -95.120863924573641, 29.428819137509464 ], [ -95.120657925063909, 29.428919137457182 ], [ -95.120590924737613, 29.428917136987579 ], [ -95.120545925241643, 29.428889137675917 ], [ -95.120468924721905, 29.428780136934588 ], [ -95.120382924796829, 29.428718137030224 ], [ -95.120285924967206, 29.428679136750048 ], [ -95.120197924566526, 29.428667136897872 ], [ -95.120157924407678, 29.428662137000341 ], [ -95.120039924292172, 29.428654136960223 ], [ -95.120006925206553, 29.428648136994624 ], [ -95.119932924629538, 29.42863713685189 ], [ -95.119800924570086, 29.428606137337685 ], [ -95.119730924161161, 29.428590137155783 ], [ -95.11968792494271, 29.42858013695264 ], [ -95.119585924145355, 29.428568137054299 ], [ -95.119472924864937, 29.428556137075589 ], [ -95.119362924570993, 29.428557136857851 ], [ -95.119282924248964, 29.428555137135834 ], [ -95.119253924656107, 29.428554137338168 ], [ -95.119226924720437, 29.42855313696186 ], [ -95.119107924643373, 29.428559137408858 ], [ -95.118967924721474, 29.42859113741682 ], [ -95.118843924567358, 29.428626137330969 ], [ -95.118771924798267, 29.428646137171206 ], [ -95.118670924383835, 29.428674137007718 ], [ -95.118566924146918, 29.42870313745178 ], [ -95.118505923824614, 29.42872313725535 ], [ -95.118438923973301, 29.428745137491443 ], [ -95.118326924712022, 29.428759137292904 ], [ -95.118223924643161, 29.428761137688223 ], [ -95.118142923767863, 29.42873613742109 ], [ -95.118051924646039, 29.428697137487511 ], [ -95.117987923924346, 29.428679136851304 ], [ -95.117959924313794, 29.428672136958838 ], [ -95.117820924388042, 29.42865913690822 ], [ -95.117677924034155, 29.428650137172223 ], [ -95.117590924249981, 29.428652137283898 ], [ -95.117471923695192, 29.428671137457275 ], [ -95.117403923908384, 29.428705136987453 ], [ -95.11725792448442, 29.428771137114349 ], [ -95.117193924163857, 29.428816136954222 ], [ -95.117150923835823, 29.428881137637827 ], [ -95.117079924027493, 29.429011137269669 ], [ -95.117060924092854, 29.429060137602118 ], [ -95.116994924438799, 29.429141136967083 ], [ -95.116984924199727, 29.429170137474046 ], [ -95.116926924248034, 29.429209137427431 ], [ -95.116832924407191, 29.429229137537241 ], [ -95.116807924103156, 29.42922413764704 ], [ -95.116667924032541, 29.429181137150227 ], [ -95.116592923598674, 29.429134137710538 ], [ -95.116532923387368, 29.429083137177724 ], [ -95.116487923664167, 29.429054137065819 ], [ -95.116389924084402, 29.428959137692718 ], [ -95.116378924242483, 29.428948137706321 ], [ -95.116258923898741, 29.428854137002524 ], [ -95.116208923902079, 29.428826137023687 ], [ -95.116101923935389, 29.428796137143099 ], [ -95.115968924171256, 29.428794136925603 ], [ -95.115921924030317, 29.428795137099229 ], [ -95.115833923255764, 29.428815137644168 ], [ -95.115775924094862, 29.428849137433584 ], [ -95.115706923608727, 29.428900137398973 ], [ -95.115574923235201, 29.428996137529392 ], [ -95.115491923751904, 29.429143137317926 ], [ -95.11541592389851, 29.429257137549538 ], [ -95.115351923800219, 29.429314137439292 ], [ -95.115263923066678, 29.429425137885289 ], [ -95.115137923834482, 29.429501137341141 ], [ -95.115002923495894, 29.42958313754292 ], [ -95.114961922974373, 29.429626137668158 ], [ -95.114806923153637, 29.429790137537875 ], [ -95.114766923604989, 29.429800137850073 ], [ -95.114715923612962, 29.429806137404444 ], [ -95.114722922910971, 29.429859137585925 ], [ -95.114731923695246, 29.429932137907869 ], [ -95.1147359233359, 29.42999213778479 ], [ -95.114795923280695, 29.43099113773275 ], [ -95.114817923566704, 29.432158137762865 ], [ -95.114858923507256, 29.43315713791019 ], [ -95.114860923905226, 29.433757138593588 ], [ -95.114882923389544, 29.434697138567458 ], [ -95.114930923882355, 29.436986139352559 ], [ -95.114947923483712, 29.437794138883284 ], [ -95.114379923478054, 29.437842138873993 ], [ -95.11327492350712, 29.437944139130082 ], [ -95.112750923644072, 29.438020139125829 ], [ -95.1114099234034, 29.438127139377116 ], [ -95.110771922365331, 29.438189139547998 ], [ -95.110955923257706, 29.446753140953486 ], [ -95.111196923705819, 29.457932143362996 ], [ -95.112472924326966, 29.456785143095644 ], [ -95.11260992397726, 29.463689144534634 ], [ -95.112709924279173, 29.468726145324542 ], [ -95.112712924452055, 29.468833145804929 ], [ -95.11374092468472, 29.468818145836021 ], [ -95.113745924397236, 29.468959145795054 ], [ -95.115181925678542, 29.468933145582096 ], [ -95.115310925415926, 29.468931145834794 ], [ -95.120854926675648, 29.468893145053279 ], [ -95.122758927449311, 29.468854145541655 ], [ -95.123270927784276, 29.468843145026305 ], [ -95.126255927873274, 29.468784145034093 ], [ -95.126394928207958, 29.468753145323085 ], [ -95.126727928345872, 29.468675145575268 ], [ -95.129836929094907, 29.468590145008214 ], [ -95.132441929770891, 29.468545144798718 ], [ -95.133331929425083, 29.468527144870311 ], [ -95.133600929575081, 29.468531144749903 ], [ -95.13532393085265, 29.468509145324472 ], [ -95.136742930486591, 29.468491144688699 ], [ -95.139060931389579, 29.468463144920449 ], [ -95.143189931917178, 29.468428145067165 ], [ -95.144592932880741, 29.468414144813408 ], [ -95.146039933464877, 29.468396144919524 ], [ -95.146131932731734, 29.46839514435354 ], [ -95.147990933930373, 29.468372144462617 ], [ -95.148686933568001, 29.468364144498622 ], [ -95.149567933715815, 29.468371144442951 ], [ -95.155007935205603, 29.468301144458291 ], [ -95.156612935728873, 29.46828914459212 ], [ -95.157896935950632, 29.468280144172812 ], [ -95.159249936203423, 29.468273143973718 ], [ -95.159700936780439, 29.468244143924682 ], [ -95.159755936218218, 29.468219144311007 ], [ -95.15979193653024, 29.468202144277978 ], [ -95.160862936681454, 29.467018144095 ], [ -95.162025937519743, 29.465708143474266 ], [ -95.162117936661843, 29.465658143504303 ], [ -95.162279937143538, 29.465630143745322 ], [ -95.165196937942085, 29.465454143073405 ], [ -95.16587993834078, 29.465412143685661 ], [ -95.165992938418228, 29.465398143608017 ], [ -95.166119937953383, 29.465334143020144 ], [ -95.167416938802262, 29.464644143088513 ], [ -95.167845938466414, 29.46440414278899 ], [ -95.168029938822613, 29.464362143106058 ], [ -95.169093938789942, 29.464467143070106 ], [ -95.171624939461879, 29.464666143286554 ], [ -95.171784940064683, 29.464679143084748 ], [ -95.173029939826066, 29.464780142954268 ], [ -95.173610940306091, 29.464827142851586 ], [ -95.173948940249872, 29.464876142934266 ], [ -95.174042940290235, 29.464905142832901 ], [ -95.174651940025285, 29.465091142580413 ], [ -95.175442940590031, 29.465334143143785 ], [ -95.176287940441512, 29.46556714336489 ], [ -95.177626941390685, 29.467180142875801 ], [ -95.178162941041478, 29.467800143102878 ], [ -95.178395941088098, 29.467805143590219 ], [ -95.178500941737866, 29.467808143497667 ], [ -95.183024942935901, 29.467899142952216 ], [ -95.184643942945257, 29.467937142752444 ], [ -95.185222943514503, 29.467951143593602 ], [ -95.186026943030413, 29.467970143501041 ], [ -95.188055944073639, 29.467998143003282 ], [ -95.188196943475461, 29.468068143409276 ], [ -95.188520944091437, 29.468618143000203 ], [ -95.188679943769557, 29.468806143269685 ], [ -95.188961943961061, 29.46913714311156 ], [ -95.193945945323478, 29.469721142915372 ], [ -95.196346945829745, 29.46863114330262 ], [ -95.197180945955893, 29.468284143208393 ], [ -95.19788194667457, 29.467980142774191 ], [ -95.198331946414214, 29.46778114235039 ], [ -95.198452946223838, 29.467708142428375 ], [ -95.198463946860642, 29.467696142559831 ], [ -95.198567946596825, 29.467593142711632 ], [ -95.198776946639811, 29.467357142389577 ], [ -95.198865946705126, 29.467321142584467 ], [ -95.198893946882421, 29.467290142753562 ], [ -95.198918946990503, 29.467263142597922 ], [ -95.198923947090137, 29.467211142626351 ], [ -95.199046946849819, 29.467086142622957 ], [ -95.199164946177916, 29.466944142812867 ], [ -95.199410947175878, 29.466703142040373 ], [ -95.199551946280621, 29.466619142002926 ], [ -95.199834946574896, 29.466609142223195 ], [ -95.200153946618471, 29.466593142219494 ], [ -95.203831947381474, 29.46648514240281 ], [ -95.205588948804589, 29.466434141780908 ], [ -95.206215948633087, 29.466419142542083 ], [ -95.206390948610789, 29.466416142285638 ], [ -95.206517948958606, 29.466412141777205 ], [ -95.206538948749596, 29.466412142235129 ], [ -95.207654948933268, 29.466386141897846 ], [ -95.207945948466417, 29.466376141707205 ], [ -95.208194948477285, 29.466368141938158 ], [ -95.208339949380218, 29.46636314207273 ], [ -95.208687949093274, 29.466352141772628 ], [ -95.209031949074614, 29.466341141723337 ], [ -95.20960194962187, 29.46633414173689 ], [ -95.209637949142149, 29.46633314180616 ], [ -95.209863949798802, 29.466337142311367 ], [ -95.210018949869323, 29.466341142334091 ], [ -95.210475949407453, 29.466401142052032 ], [ -95.210759949823, 29.466431141977896 ], [ -95.211604950372077, 29.466446141673735 ], [ -95.218414951123108, 29.466525142185436 ], [ -95.221725952331752, 29.466558141225992 ], [ -95.224204953546007, 29.466558141472866 ], [ -95.224644952742651, 29.466568141416282 ], [ -95.225493953905328, 29.4665581416353 ], [ -95.225736953542281, 29.466586141427438 ], [ -95.225864953003907, 29.46640214141366 ], [ -95.226140954064604, 29.466003141815012 ], [ -95.22688695412333, 29.46492514086874 ], [ -95.227666953462645, 29.46379814067447 ], [ -95.228341954441547, 29.462823140343016 ], [ -95.229438954121747, 29.461238140296363 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 431, "Tract": "48167720701", "Area_SqMi": 1.9026424596228535, "total_2009": 1621, "total_2010": 1506, "total_2011": 1549, "total_2012": 1596, "total_2013": 1656, "total_2014": 1684, "total_2015": 1769, "total_2016": 1863, "total_2017": 1915, "total_2018": 1635, "total_2019": 1443, "total_2020": 1980, "age1": 519, "age2": 1200, "age3": 452, "earn1": 382, "earn2": 589, "earn3": 1200, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 240, "naics_s05": 114, "naics_s06": 134, "naics_s07": 146, "naics_s08": 40, "naics_s09": 59, "naics_s10": 77, "naics_s11": 8, "naics_s12": 95, "naics_s13": 33, "naics_s14": 107, "naics_s15": 13, "naics_s16": 211, "naics_s17": 127, "naics_s18": 238, "naics_s19": 124, "naics_s20": 405, "race1": 1768, "race2": 278, "race3": 18, "race4": 70, "race5": 2, "race6": 35, "ethnicity1": 1555, "ethnicity2": 616, "edu1": 312, "edu2": 493, "edu3": 542, "edu4": 305, "Shape_Length": 41911.605672981706, "Shape_Area": 53042415.369170517, "total_2021": 2209, "total_2022": 2171 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.106186925205051, 29.516593156071245 ], [ -95.106165925115533, 29.516126155367807 ], [ -95.106026924623336, 29.515786155905243 ], [ -95.105931924865459, 29.515659155875078 ], [ -95.104825924315193, 29.51419215539168 ], [ -95.104472924811375, 29.513598155644139 ], [ -95.10446492450005, 29.513584154976549 ], [ -95.104042924692223, 29.512567155302733 ], [ -95.103839924402649, 29.511794155200167 ], [ -95.103858923951435, 29.511562154737035 ], [ -95.103880923762773, 29.51129515490404 ], [ -95.103896923829183, 29.511275155133603 ], [ -95.103967924104225, 29.511128154811185 ], [ -95.104068924492282, 29.510959155024374 ], [ -95.104204923809618, 29.510819154508603 ], [ -95.104348924570829, 29.510701155083471 ], [ -95.10452592388809, 29.5106101545718 ], [ -95.104741924579201, 29.510526155016883 ], [ -95.104983923960219, 29.510467154429662 ], [ -95.105131924400368, 29.510428154467501 ], [ -95.10520592488335, 29.510386154728021 ], [ -95.10547692418713, 29.5103331541643 ], [ -95.103435923426105, 29.508235154419456 ], [ -95.101473923771977, 29.506220153846627 ], [ -95.09869692273405, 29.503385153419803 ], [ -95.096477921373875, 29.501119152602065 ], [ -95.091207920705017, 29.495740151743998 ], [ -95.091259920231565, 29.495703152348096 ], [ -95.088733919220488, 29.493054151821482 ], [ -95.08807291897196, 29.492549151123395 ], [ -95.086999919336719, 29.491444151431889 ], [ -95.086890919053374, 29.49128815155499 ], [ -95.085192918708174, 29.489694150713227 ], [ -95.084202918495492, 29.488487150305488 ], [ -95.083662918307624, 29.487951150525756 ], [ -95.082894917921138, 29.487165150187746 ], [ -95.081480917368665, 29.48572815007406 ], [ -95.080062916716528, 29.484288149698468 ], [ -95.07956091704429, 29.483772150131895 ], [ -95.078658916498512, 29.482845149966632 ], [ -95.077558915764811, 29.481726149991566 ], [ -95.077527916239319, 29.481699149959557 ], [ -95.077237916430136, 29.481405149420112 ], [ -95.07653191546656, 29.480676149504148 ], [ -95.075831916014522, 29.479953149297504 ], [ -95.074500914989741, 29.478596148733246 ], [ -95.073680914793542, 29.477737148749366 ], [ -95.07281891428984, 29.478352148879789 ], [ -95.072243914191958, 29.478761149453156 ], [ -95.071552914422341, 29.479254148982996 ], [ -95.07070891383357, 29.479854149765149 ], [ -95.06988891418203, 29.480438149584984 ], [ -95.069463914252523, 29.480741149884093 ], [ -95.068884913528223, 29.481153149834853 ], [ -95.068319913465956, 29.481555150058838 ], [ -95.06665891301013, 29.482738150432009 ], [ -95.066487913756532, 29.48286014973516 ], [ -95.069703914538565, 29.486312150907519 ], [ -95.070223914913242, 29.486869150536865 ], [ -95.071590914891061, 29.488336151249452 ], [ -95.071664915086131, 29.488416150800504 ], [ -95.077209916377782, 29.494350152408277 ], [ -95.077362916332305, 29.494498152290014 ], [ -95.077475916899076, 29.494600152201524 ], [ -95.077604916462448, 29.494742152382099 ], [ -95.079471917059081, 29.496725152835232 ], [ -95.081489918322902, 29.498741152583921 ], [ -95.082797917843067, 29.500126152963713 ], [ -95.08296691832237, 29.500368153305267 ], [ -95.083068918060661, 29.500516153372747 ], [ -95.083659918116496, 29.501206153226651 ], [ -95.086490919470805, 29.504088154247995 ], [ -95.089079920415799, 29.507075154178104 ], [ -95.091774920596976, 29.509966154951901 ], [ -95.096866922471577, 29.515428156258867 ], [ -95.099369923167473, 29.51806615662559 ], [ -95.099692923498949, 29.518407156830733 ], [ -95.102268923678807, 29.521209157051882 ], [ -95.102443924211542, 29.521400157015439 ], [ -95.10246992400792, 29.521392157205273 ], [ -95.102546923920357, 29.521336156453575 ], [ -95.102633923775031, 29.521280156532143 ], [ -95.102642924273809, 29.521275156623609 ], [ -95.102715923949432, 29.521230156946768 ], [ -95.102772924291827, 29.521198156702951 ], [ -95.102799924646476, 29.521182156628825 ], [ -95.10285892413863, 29.521148157188392 ], [ -95.102958924050341, 29.521075156562208 ], [ -95.10302292457024, 29.521029156780084 ], [ -95.103211924562331, 29.520858156904183 ], [ -95.103281924820209, 29.520746156837617 ], [ -95.103407924869245, 29.520544156503458 ], [ -95.103456924741025, 29.520150156752845 ], [ -95.103222924004427, 29.519436156054653 ], [ -95.103142923926015, 29.519269156553587 ], [ -95.103054923877238, 29.519053156168777 ], [ -95.102998923930187, 29.518823156596675 ], [ -95.103006923854664, 29.518607156363174 ], [ -95.103021924289308, 29.518551156039862 ], [ -95.103062923766927, 29.518397156153217 ], [ -95.103108924488694, 29.518326156144383 ], [ -95.1031379242865, 29.518270155891031 ], [ -95.103174923748327, 29.51821815617938 ], [ -95.103218923900457, 29.518172156439597 ], [ -95.103259924237264, 29.518135155771869 ], [ -95.103327924467337, 29.518063155784048 ], [ -95.103559924470147, 29.517909156348516 ], [ -95.103832924928469, 29.517791155861126 ], [ -95.104200924251586, 29.517665156216626 ], [ -95.104561924164841, 29.517568155808515 ], [ -95.104865924628456, 29.517491155747905 ], [ -95.10524992441141, 29.517387156406475 ], [ -95.105512925028322, 29.517291156382303 ], [ -95.105635925226125, 29.517238156260799 ], [ -95.10607992479467, 29.51686515555728 ], [ -95.106186925205051, 29.516593156071245 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 432, "Tract": "48167721210", "Area_SqMi": 1.5109589084987578, "total_2009": 17, "total_2010": 18, "total_2011": 57, "total_2012": 91, "total_2013": 122, "total_2014": 141, "total_2015": 85, "total_2016": 134, "total_2017": 176, "total_2018": 287, "total_2019": 281, "total_2020": 126, "age1": 47, "age2": 102, "age3": 37, "earn1": 48, "earn2": 75, "earn3": 63, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 11, "naics_s07": 26, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 4, "naics_s12": 15, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 66, "naics_s17": 0, "naics_s18": 14, "naics_s19": 29, "naics_s20": 0, "race1": 142, "race2": 16, "race3": 3, "race4": 21, "race5": 0, "race6": 4, "ethnicity1": 133, "ethnicity2": 53, "edu1": 28, "edu2": 43, "edu3": 32, "edu4": 36, "Shape_Length": 30678.105824806909, "Shape_Area": 42122948.336928286, "total_2021": 122, "total_2022": 186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.03680290681335, 29.508713156661901 ], [ -95.036471906532398, 29.508161156776005 ], [ -95.033219905480308, 29.502620155779795 ], [ -95.032713905265766, 29.502465155310936 ], [ -95.03263890497594, 29.502646155333341 ], [ -95.03258190537025, 29.502766155273541 ], [ -95.032468905624413, 29.502942155870532 ], [ -95.032281905749599, 29.503143155554696 ], [ -95.032114905257288, 29.503275155893622 ], [ -95.030898904980205, 29.504181156102604 ], [ -95.030735905175263, 29.504287155396078 ], [ -95.030558904613287, 29.504374156168989 ], [ -95.030370905316161, 29.504441156040034 ], [ -95.030173905256248, 29.504485155598495 ], [ -95.029957905175721, 29.504512155746948 ], [ -95.029631904737201, 29.50455015560588 ], [ -95.029339904347452, 29.504625156178818 ], [ -95.029183904212445, 29.504690155658107 ], [ -95.028844904726952, 29.504901156131623 ], [ -95.026825904010877, 29.506401156495176 ], [ -95.026361904000936, 29.505651156551508 ], [ -95.025819904202208, 29.504760155706474 ], [ -95.025567903204262, 29.504378155904448 ], [ -95.025145903352055, 29.503681156165761 ], [ -95.016648901691397, 29.509975157283421 ], [ -95.012965900971651, 29.50721115732372 ], [ -95.009121899365454, 29.509834157308042 ], [ -95.007477898917045, 29.510963157740555 ], [ -95.006132898937338, 29.511833158058312 ], [ -95.005150899216517, 29.512468158113748 ], [ -95.004694898229729, 29.512532158708524 ], [ -95.004539898379491, 29.512660158325389 ], [ -95.004201898971729, 29.51287915869197 ], [ -95.00408289820092, 29.513162158198313 ], [ -95.004031898250602, 29.513191158424451 ], [ -95.003918898075497, 29.513253158915465 ], [ -95.003681898527333, 29.513354158404638 ], [ -95.003790898563167, 29.513535158752003 ], [ -95.004502898886841, 29.514749158869904 ], [ -95.004962898421368, 29.515531158956765 ], [ -95.005146898930562, 29.51584915885244 ], [ -95.006126899315831, 29.517544159510738 ], [ -95.006486899064839, 29.518164159270714 ], [ -95.008141900167033, 29.521018160396931 ], [ -95.008172899939979, 29.521072159691265 ], [ -95.008275899565362, 29.521250159645795 ], [ -95.009911900152233, 29.524071160317607 ], [ -95.011171901242932, 29.526243160805212 ], [ -95.011457901127869, 29.526106161243696 ], [ -95.011556901303649, 29.526062161045697 ], [ -95.012152901271506, 29.525799160529527 ], [ -95.012390901566462, 29.52568516064548 ], [ -95.012884901306734, 29.525452160503093 ], [ -95.014202901749357, 29.524778160418446 ], [ -95.016140901907875, 29.523599159902581 ], [ -95.016661902459688, 29.523210160412621 ], [ -95.016992902394051, 29.522965160418934 ], [ -95.018387902942592, 29.521962159590512 ], [ -95.018460903090741, 29.521911159626978 ], [ -95.019799902549295, 29.520922159229695 ], [ -95.021092902767577, 29.51992415971284 ], [ -95.022821903525212, 29.518619158566075 ], [ -95.022926903775542, 29.518534158985254 ], [ -95.02382290413685, 29.517874158658692 ], [ -95.025976903947381, 29.516290158724171 ], [ -95.027084904389937, 29.515460158629899 ], [ -95.027623904726397, 29.515134158162532 ], [ -95.028094905159165, 29.514900158501799 ], [ -95.028188905229328, 29.514855158225789 ], [ -95.028595905296044, 29.514655157773298 ], [ -95.029784905701845, 29.514065157837106 ], [ -95.030838905174051, 29.513463157815426 ], [ -95.032512906011718, 29.512248157122372 ], [ -95.032677905494864, 29.512120157528553 ], [ -95.033465906041982, 29.511444157106112 ], [ -95.033613906314883, 29.511317156884338 ], [ -95.033875906587312, 29.511118157059169 ], [ -95.035205906464384, 29.509974157147646 ], [ -95.03643990645844, 29.508986156115217 ], [ -95.03680290681335, 29.508713156661901 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 433, "Tract": "48167720504", "Area_SqMi": 0.84844666991169992, "total_2009": 27, "total_2010": 33, "total_2011": 38, "total_2012": 63, "total_2013": 81, "total_2014": 177, "total_2015": 120, "total_2016": 126, "total_2017": 200, "total_2018": 9, "total_2019": 35, "total_2020": 4, "age1": 1, "age2": 9, "age3": 0, "earn1": 1, "earn2": 6, "earn3": 3, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 6, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 7, "race2": 3, "race3": 0, "race4": 0, "race5": 0, "race6": 0, "ethnicity1": 8, "ethnicity2": 2, "edu1": 2, "edu2": 4, "edu3": 2, "edu4": 1, "Shape_Length": 23600.417641003914, "Shape_Area": 23653241.026149828, "total_2021": 1, "total_2022": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.178979942385382, 29.478698145294612 ], [ -95.178979942131377, 29.478655145269926 ], [ -95.178971941824031, 29.477727145716152 ], [ -95.178963941553349, 29.477536145439615 ], [ -95.178912941551857, 29.47665314520399 ], [ -95.178850942184638, 29.475550144577728 ], [ -95.17864094141278, 29.472294144199154 ], [ -95.178538941988649, 29.470719144085663 ], [ -95.178461941060817, 29.469522143635061 ], [ -95.178505941062838, 29.469443143664883 ], [ -95.178395941088098, 29.467805143590219 ], [ -95.178162941041478, 29.467800143102878 ], [ -95.177626941390685, 29.467180142875801 ], [ -95.176287940441512, 29.46556714336489 ], [ -95.175442940590031, 29.465334143143785 ], [ -95.174651940025285, 29.465091142580413 ], [ -95.174479940705297, 29.465769143122014 ], [ -95.174312939944997, 29.466215142847478 ], [ -95.173977940136695, 29.466662143299541 ], [ -95.173494940470718, 29.467220143521846 ], [ -95.173103940212698, 29.467963143823752 ], [ -95.172648940370991, 29.469059143417525 ], [ -95.172129939523003, 29.47007114426814 ], [ -95.171497939979076, 29.470953144447805 ], [ -95.170823939845917, 29.471688144064046 ], [ -95.169923939227374, 29.47242714487178 ], [ -95.16770993890691, 29.474049144628605 ], [ -95.167369938761027, 29.47447114515829 ], [ -95.167318938784604, 29.474506145352549 ], [ -95.166979938474896, 29.474751145281122 ], [ -95.166844938272646, 29.474912145588771 ], [ -95.166658938265172, 29.475139145299543 ], [ -95.166549939139216, 29.475283145421457 ], [ -95.166422938904859, 29.475468144990117 ], [ -95.166266938436152, 29.475742145003121 ], [ -95.166160939044914, 29.475884145482752 ], [ -95.16580593897686, 29.476453145324999 ], [ -95.165418938856334, 29.477349145353887 ], [ -95.165031938559423, 29.479051145676362 ], [ -95.164734938893645, 29.480033146209731 ], [ -95.164547938287967, 29.480707146186646 ], [ -95.164177938651292, 29.482455147004281 ], [ -95.164061937947594, 29.483010147323029 ], [ -95.163674937848597, 29.483880146854837 ], [ -95.163247938546206, 29.484614147225081 ], [ -95.162702938405232, 29.485456147649401 ], [ -95.162322937986389, 29.486254147606406 ], [ -95.162278937812872, 29.486327148115318 ], [ -95.162046937882025, 29.486722148137471 ], [ -95.161283938407209, 29.489498148616033 ], [ -95.164227939020108, 29.490152148754159 ], [ -95.165843938767978, 29.490511148017941 ], [ -95.166117939701891, 29.490572148695538 ], [ -95.166207939301898, 29.49059114867303 ], [ -95.16635693952901, 29.490404147970679 ], [ -95.166496939552715, 29.490225148401898 ], [ -95.166608939631899, 29.490085147902263 ], [ -95.166956939695453, 29.489646148128809 ], [ -95.167253939913778, 29.489270148246188 ], [ -95.167827939728426, 29.488546147650773 ], [ -95.168410940055111, 29.487810147634946 ], [ -95.169055939916532, 29.486996147226108 ], [ -95.169808939531777, 29.486046147326505 ], [ -95.170589940592478, 29.485059147619747 ], [ -95.17134694047239, 29.484106146804727 ], [ -95.171926940892163, 29.483373146433756 ], [ -95.17225194001503, 29.482961146493086 ], [ -95.172412940614834, 29.482758146556854 ], [ -95.173565941111221, 29.481302146384703 ], [ -95.174116941156356, 29.480617145720096 ], [ -95.174410940991507, 29.480247145814158 ], [ -95.1747659409086, 29.479800146255151 ], [ -95.17478794120656, 29.479772145503468 ], [ -95.175503941400933, 29.478869145866724 ], [ -95.176144941390518, 29.478837145264812 ], [ -95.178271941530156, 29.478733146001336 ], [ -95.178979942385382, 29.478698145294612 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 434, "Tract": "48167720601", "Area_SqMi": 1.4310363211786108, "total_2009": 1280, "total_2010": 1250, "total_2011": 1409, "total_2012": 1387, "total_2013": 1489, "total_2014": 1346, "total_2015": 1480, "total_2016": 1269, "total_2017": 1225, "total_2018": 1094, "total_2019": 1067, "total_2020": 1077, "age1": 357, "age2": 647, "age3": 299, "earn1": 276, "earn2": 438, "earn3": 589, "naics_s01": 0, "naics_s02": 42, "naics_s03": 0, "naics_s04": 7, "naics_s05": 17, "naics_s06": 87, "naics_s07": 612, "naics_s08": 1, "naics_s09": 0, "naics_s10": 19, "naics_s11": 38, "naics_s12": 48, "naics_s13": 0, "naics_s14": 2, "naics_s15": 5, "naics_s16": 129, "naics_s17": 24, "naics_s18": 255, "naics_s19": 17, "naics_s20": 0, "race1": 1042, "race2": 165, "race3": 9, "race4": 65, "race5": 2, "race6": 20, "ethnicity1": 927, "ethnicity2": 376, "edu1": 176, "edu2": 278, "edu3": 334, "edu4": 158, "Shape_Length": 40067.035671312158, "Shape_Area": 39894843.391317874, "total_2021": 1092, "total_2022": 1303 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.114947923483712, 29.437794138883284 ], [ -95.114930923882355, 29.436986139352559 ], [ -95.114882923389544, 29.434697138567458 ], [ -95.114860923905226, 29.433757138593588 ], [ -95.114858923507256, 29.43315713791019 ], [ -95.114817923566704, 29.432158137762865 ], [ -95.114795923280695, 29.43099113773275 ], [ -95.1147359233359, 29.42999213778479 ], [ -95.114731923695246, 29.429932137907869 ], [ -95.114722922910971, 29.429859137585925 ], [ -95.114715923612962, 29.429806137404444 ], [ -95.114699923353669, 29.429679137492158 ], [ -95.114610923683628, 29.429685137390983 ], [ -95.11452392382833, 29.429692137936264 ], [ -95.114393923106277, 29.429702137671192 ], [ -95.114316923609465, 29.429709137444689 ], [ -95.114244923091647, 29.429707137279369 ], [ -95.114096923561519, 29.42968013725033 ], [ -95.114003923194971, 29.429668137700471 ], [ -95.113927923130305, 29.429648137445238 ], [ -95.113805923328727, 29.429626137711487 ], [ -95.113697923044043, 29.429614137498874 ], [ -95.113696922976843, 29.42950913728837 ], [ -95.113658923101525, 29.429508137983468 ], [ -95.113490923560121, 29.429505137550137 ], [ -95.113332922945602, 29.429517137210656 ], [ -95.11322692339813, 29.429470137358315 ], [ -95.113141923483539, 29.429432137422527 ], [ -95.11307292306978, 29.429389137562268 ], [ -95.112953922603879, 29.429314137952932 ], [ -95.112894923144751, 29.429174137157371 ], [ -95.112843922911921, 29.429031137144296 ], [ -95.112802922467466, 29.428902137178415 ], [ -95.112717922697627, 29.428814137236813 ], [ -95.112556922424275, 29.42873313707091 ], [ -95.112412922565568, 29.42874013720872 ], [ -95.11223292312286, 29.428821137062247 ], [ -95.112088922543251, 29.428935137494889 ], [ -95.11199392269684, 29.429042137657152 ], [ -95.111790922716423, 29.429160137501722 ], [ -95.111584922637434, 29.429211137826911 ], [ -95.111533922747967, 29.429192137655441 ], [ -95.111485923029377, 29.429174137551584 ], [ -95.111330922414012, 29.429108137270244 ], [ -95.111249922451066, 29.429023137279341 ], [ -95.111109922107815, 29.428931137753981 ], [ -95.110892922122233, 29.428861137676982 ], [ -95.110778922002297, 29.428843137284751 ], [ -95.110631922553296, 29.428828137208598 ], [ -95.110392922491329, 29.42881013781485 ], [ -95.109972922624394, 29.428788137816351 ], [ -95.109818922259279, 29.428803137881875 ], [ -95.109608921992617, 29.428836137791862 ], [ -95.109428921515445, 29.428884137473517 ], [ -95.1092449224939, 29.428990137262215 ], [ -95.109115922429567, 29.429090137655432 ], [ -95.108953921917418, 29.429218137334487 ], [ -95.108876921553815, 29.429265137916307 ], [ -95.10880292190555, 29.429310137712815 ], [ -95.108600922221115, 29.429399137856578 ], [ -95.108383921826402, 29.429384137672717 ], [ -95.108287922171272, 29.429340138148479 ], [ -95.108261921497061, 29.429332137283215 ], [ -95.10812592212703, 29.429292137796903 ], [ -95.107961922147538, 29.429128137747107 ], [ -95.107754921283643, 29.429020137985287 ], [ -95.107610921248551, 29.428917137578644 ], [ -95.107413921001879, 29.428822137466703 ], [ -95.107143921195686, 29.428710137287087 ], [ -95.10676092095278, 29.428642137289227 ], [ -95.106508921028833, 29.42861113799616 ], [ -95.106405920739078, 29.4286331380472 ], [ -95.106207921454953, 29.428656137337793 ], [ -95.106078921217289, 29.42869413774082 ], [ -95.105870920689654, 29.428854137445576 ], [ -95.105518921152864, 29.429126137973256 ], [ -95.105268921085965, 29.429288137680167 ], [ -95.104408920471158, 29.429902137586677 ], [ -95.103711920690202, 29.430178137666747 ], [ -95.103549920756947, 29.430088137956361 ], [ -95.103274920540585, 29.429935137720395 ], [ -95.102900919985544, 29.429854138011802 ], [ -95.102495920072968, 29.430016137894139 ], [ -95.102449920108612, 29.430054137674791 ], [ -95.10222791984441, 29.43023513778364 ], [ -95.101934920605444, 29.430361138447374 ], [ -95.101795920047167, 29.430367138328915 ], [ -95.101606920319583, 29.430374137770265 ], [ -95.101382919505411, 29.430512138174546 ], [ -95.100875919710461, 29.43082613864404 ], [ -95.100189920262991, 29.431269137979854 ], [ -95.10002392000473, 29.431382138552323 ], [ -95.099878920191344, 29.43150113833854 ], [ -95.099411919734692, 29.431662138231715 ], [ -95.099220919975494, 29.431677138879916 ], [ -95.098725919118479, 29.431716138142722 ], [ -95.098476919448913, 29.431851138431234 ], [ -95.097697919048528, 29.432077138214243 ], [ -95.097444919311258, 29.432278138292904 ], [ -95.09719991935809, 29.432472138444314 ], [ -95.096420918800462, 29.433066138572599 ], [ -95.095983918686187, 29.433208139323799 ], [ -95.095921918760141, 29.433228138605728 ], [ -95.095392919023936, 29.433228139222475 ], [ -95.095329918703328, 29.433282139232695 ], [ -95.094918918977513, 29.43352013883592 ], [ -95.094653918756947, 29.433700139451108 ], [ -95.094476918035113, 29.434173139283295 ], [ -95.094426918353832, 29.434307139062174 ], [ -95.094388918021068, 29.434467139265095 ], [ -95.09413491816305, 29.434738139035161 ], [ -95.093966917956962, 29.434965139410647 ], [ -95.093834918661472, 29.435144139659108 ], [ -95.093638917742879, 29.43566113965408 ], [ -95.093595917929349, 29.435806139596739 ], [ -95.093530918598049, 29.435919139891585 ], [ -95.093398918106686, 29.436115139478556 ], [ -95.093086918484019, 29.436250139855808 ], [ -95.093032918366731, 29.436270139857186 ], [ -95.092183918050281, 29.436578139819812 ], [ -95.092120917842792, 29.436601139751506 ], [ -95.09199091802229, 29.436673139689962 ], [ -95.091778918232819, 29.436790139837118 ], [ -95.090686917914809, 29.43737114029625 ], [ -95.090189917907495, 29.437869140243425 ], [ -95.090126917118241, 29.438301139852449 ], [ -95.090033917089883, 29.438949140691079 ], [ -95.089721917587681, 29.439165140258421 ], [ -95.089381917776578, 29.439262140514899 ], [ -95.089284917333103, 29.439290140045337 ], [ -95.089191917361916, 29.439359140097718 ], [ -95.088724916747125, 29.439704140423487 ], [ -95.088683916648662, 29.439707140472059 ], [ -95.088257916953424, 29.439731140214466 ], [ -95.088237917538564, 29.439710140265596 ], [ -95.088070917316344, 29.439542140318288 ], [ -95.088039916673068, 29.439327140546084 ], [ -95.087852916637758, 29.438814140262345 ], [ -95.08760391714128, 29.438490140064857 ], [ -95.087287916662973, 29.438377139823316 ], [ -95.087209916220004, 29.438367140223882 ], [ -95.08687791619333, 29.438327140450159 ], [ -95.086611916435771, 29.438453140358465 ], [ -95.086293916123353, 29.438846140631004 ], [ -95.086169916039864, 29.439354140514016 ], [ -95.085900916884711, 29.439405140110573 ], [ -95.085640916202607, 29.439354140456764 ], [ -95.085017916451548, 29.439300140648566 ], [ -95.084767915704958, 29.439354140572071 ], [ -95.083739915588595, 29.439354140233711 ], [ -95.083490915934647, 29.438679140461161 ], [ -95.083320915620348, 29.438765140758115 ], [ -95.083085916084997, 29.439084140845672 ], [ -95.082804915297004, 29.439138140692435 ], [ -95.082573915530375, 29.439204140489593 ], [ -95.082057914990102, 29.439596140793601 ], [ -95.081745915061319, 29.440001140767365 ], [ -95.081652915708815, 29.440379140680395 ], [ -95.081496915196411, 29.440703140712554 ], [ -95.081029915562127, 29.440811141296582 ], [ -95.080312915354526, 29.440352140922712 ], [ -95.079907915202043, 29.440244140822976 ], [ -95.079781914444126, 29.440263140861422 ], [ -95.079360914621432, 29.440328140871518 ], [ -95.078914914393181, 29.440318140791945 ], [ -95.078794914671903, 29.440392140781018 ], [ -95.078835915113842, 29.440615141344693 ], [ -95.078503914503955, 29.440794140690567 ], [ -95.078150914593991, 29.440996140926494 ], [ -95.07789191430922, 29.441171141474463 ], [ -95.07768691451372, 29.441317141233508 ], [ -95.077433914170996, 29.441560141339281 ], [ -95.077319914536957, 29.441653141589807 ], [ -95.077107914233295, 29.441701141133802 ], [ -95.076802914178558, 29.441701141020935 ], [ -95.076647914031994, 29.441666140849495 ], [ -95.076484914512477, 29.44162414167948 ], [ -95.076242913620803, 29.441578141303349 ], [ -95.076016914482381, 29.441587141020072 ], [ -95.075831913583599, 29.441665141185211 ], [ -95.075650913510373, 29.441835141783432 ], [ -95.075540913538347, 29.44200614139563 ], [ -95.075446914273911, 29.442179141342365 ], [ -95.075204914328879, 29.4426121411807 ], [ -95.075053914002993, 29.442791141511542 ], [ -95.075022913475266, 29.442828141157584 ], [ -95.074935913319948, 29.442951141380554 ], [ -95.074889913222123, 29.443027142006816 ], [ -95.074800913509804, 29.443178141706653 ], [ -95.074712914058821, 29.443423142064873 ], [ -95.074677914141645, 29.443665141717897 ], [ -95.074694914049658, 29.443886141858346 ], [ -95.074763913336938, 29.444132142233467 ], [ -95.074806913780648, 29.444376141657084 ], [ -95.07481591370032, 29.444589141602304 ], [ -95.074727913442317, 29.444853142377173 ], [ -95.074635914150477, 29.444938141742117 ], [ -95.074583913378035, 29.444986142329189 ], [ -95.074378913417235, 29.445101142124994 ], [ -95.074323913699899, 29.445125141844244 ], [ -95.074221913474943, 29.445171141885183 ], [ -95.073924913903923, 29.445303142465722 ], [ -95.074019913581267, 29.445426141733563 ], [ -95.074032913665746, 29.445443141806834 ], [ -95.074136913866042, 29.445572141967268 ], [ -95.074315913523563, 29.44579414250304 ], [ -95.074526914095699, 29.446057142574617 ], [ -95.074738914191244, 29.446320142752533 ], [ -95.074750914216864, 29.446336141937426 ], [ -95.07481891349029, 29.446420142131533 ], [ -95.076873914207397, 29.448975142975055 ], [ -95.076992914517831, 29.449120142834779 ], [ -95.077071914820692, 29.449218143228933 ], [ -95.079572915274866, 29.452325143328707 ], [ -95.079847915201384, 29.452668143574002 ], [ -95.08000991497849, 29.452869143817445 ], [ -95.080406915411274, 29.453362143264279 ], [ -95.080522915818349, 29.453506143318361 ], [ -95.081692916424345, 29.454941144000106 ], [ -95.082219916354035, 29.455587144151743 ], [ -95.08228491612175, 29.455667143837314 ], [ -95.082616916646543, 29.456075143660534 ], [ -95.08279891628257, 29.456297144365472 ], [ -95.082928916533348, 29.456458144291844 ], [ -95.082969916764867, 29.456425143900542 ], [ -95.083107916857657, 29.456320143687265 ], [ -95.083185916857474, 29.456261144081957 ], [ -95.083257916776233, 29.456206143963371 ], [ -95.084093916667328, 29.455621144287658 ], [ -95.084702916495289, 29.45519414378419 ], [ -95.084721916935536, 29.455170143584173 ], [ -95.084825916309342, 29.455153144201361 ], [ -95.084820916606432, 29.454941143463277 ], [ -95.084788916352636, 29.453272143331841 ], [ -95.084759916393907, 29.452087143525265 ], [ -95.084604916807336, 29.445766141988688 ], [ -95.084599916275835, 29.445643141901684 ], [ -95.085869917098805, 29.445043142034564 ], [ -95.086477916777497, 29.444756141867334 ], [ -95.086593916387187, 29.444701141927769 ], [ -95.087434917184794, 29.444303141136611 ], [ -95.088625917112651, 29.443739140988018 ], [ -95.090216918022691, 29.442987141309665 ], [ -95.090736917816102, 29.44274114084325 ], [ -95.090866917546919, 29.442681141097029 ], [ -95.09242791806308, 29.441964140477918 ], [ -95.092476917917821, 29.441944140615405 ], [ -95.095612919422834, 29.440686140821448 ], [ -95.095823919431353, 29.440601140347201 ], [ -95.09622891892819, 29.440439140497688 ], [ -95.097252918990677, 29.440028140382395 ], [ -95.097341919121206, 29.439992139960648 ], [ -95.097588919599801, 29.439893139924187 ], [ -95.098226919318492, 29.439655140605801 ], [ -95.098899919715308, 29.439404140155261 ], [ -95.099346919910857, 29.439319139886937 ], [ -95.100502920107786, 29.439184139631475 ], [ -95.100568919947548, 29.439176140317439 ], [ -95.10298992123208, 29.438943139921651 ], [ -95.103914921315294, 29.438853140128479 ], [ -95.104098920981087, 29.43883613977923 ], [ -95.106600921439934, 29.438576139505603 ], [ -95.108909921897535, 29.43836713953711 ], [ -95.109258922841576, 29.438336139332744 ], [ -95.109443922898294, 29.438319139149741 ], [ -95.110771922365331, 29.438189139547998 ], [ -95.1114099234034, 29.438127139377116 ], [ -95.112750923644072, 29.438020139125829 ], [ -95.11327492350712, 29.437944139130082 ], [ -95.114379923478054, 29.437842138873993 ], [ -95.114947923483712, 29.437794138883284 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 435, "Tract": "48167720506", "Area_SqMi": 1.0593182206363136, "total_2009": 98, "total_2010": 98, "total_2011": 163, "total_2012": 220, "total_2013": 317, "total_2014": 466, "total_2015": 711, "total_2016": 812, "total_2017": 923, "total_2018": 173, "total_2019": 201, "total_2020": 210, "age1": 36, "age2": 124, "age3": 46, "earn1": 24, "earn2": 46, "earn3": 136, "naics_s01": 0, "naics_s02": 0, "naics_s03": 45, "naics_s04": 10, "naics_s05": 9, "naics_s06": 10, "naics_s07": 1, "naics_s08": 2, "naics_s09": 1, "naics_s10": 0, "naics_s11": 0, "naics_s12": 80, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 32, "naics_s17": 2, "naics_s18": 0, "naics_s19": 8, "naics_s20": 0, "race1": 171, "race2": 18, "race3": 0, "race4": 13, "race5": 0, "race6": 4, "ethnicity1": 160, "ethnicity2": 46, "edu1": 23, "edu2": 37, "edu3": 48, "edu4": 62, "Shape_Length": 24663.73975579187, "Shape_Area": 29531978.950086005, "total_2021": 201, "total_2022": 206 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.157267936227584, 29.485432147504547 ], [ -95.157278936317283, 29.485176147994867 ], [ -95.157217936489559, 29.482301147135377 ], [ -95.157184936580123, 29.480003146793976 ], [ -95.157168936881959, 29.4799151468555 ], [ -95.157080936675882, 29.479832146665014 ], [ -95.156964936685696, 29.479816146110391 ], [ -95.154238935799171, 29.479816146771633 ], [ -95.154018935431907, 29.479706146373431 ], [ -95.153875935493872, 29.479547146500135 ], [ -95.153814935478508, 29.479376146405855 ], [ -95.153803935837601, 29.477584146048361 ], [ -95.153788935263293, 29.477344146116963 ], [ -95.153644935513526, 29.477139145651023 ], [ -95.153440935742324, 29.476957145712138 ], [ -95.153176935266117, 29.476849145886142 ], [ -95.152924934891558, 29.476798145950035 ], [ -95.152654935512501, 29.476781145969309 ], [ -95.152407935466442, 29.476732146052104 ], [ -95.152143935378959, 29.476655145640962 ], [ -95.151973935072476, 29.476582145659513 ], [ -95.151897934457409, 29.476541146223198 ], [ -95.15159493462707, 29.476569146080848 ], [ -95.151368934800828, 29.476567145719336 ], [ -95.151261934927263, 29.476564145688943 ], [ -95.150895934896056, 29.476874146440952 ], [ -95.148919934126695, 29.478594146523864 ], [ -95.145974933658465, 29.481175147554723 ], [ -95.145057933031126, 29.481880147116385 ], [ -95.143069933121154, 29.483339147598194 ], [ -95.140941932851035, 29.484905148500445 ], [ -95.14077493203213, 29.485046148103216 ], [ -95.140484932929709, 29.48526614799469 ], [ -95.139460931748985, 29.486045148428708 ], [ -95.135296930827678, 29.489358149555034 ], [ -95.134403931002822, 29.490069149352241 ], [ -95.133514930352391, 29.490744149636772 ], [ -95.133450930513618, 29.490794149156248 ], [ -95.133417930550181, 29.490816149360182 ], [ -95.133446931093502, 29.491326150063099 ], [ -95.133499931190812, 29.494014150468725 ], [ -95.133631931624947, 29.49798215134642 ], [ -95.134600931582384, 29.497601151299943 ], [ -95.135267931742959, 29.497330151149093 ], [ -95.137336932303199, 29.49649215056321 ], [ -95.137414932405548, 29.496460150864607 ], [ -95.138198932493694, 29.496142150208438 ], [ -95.139558932976911, 29.495591150687364 ], [ -95.140002932477785, 29.495410150127356 ], [ -95.141042932891594, 29.494989149929101 ], [ -95.141630933449562, 29.494750150441625 ], [ -95.143422933706319, 29.494024149735424 ], [ -95.145642933982373, 29.493121149277002 ], [ -95.149086934915417, 29.49172014962906 ], [ -95.150013935436817, 29.491343149589916 ], [ -95.151483935745844, 29.490744148945815 ], [ -95.152229935917234, 29.490441148835416 ], [ -95.153152935376269, 29.49008914844676 ], [ -95.154282936307354, 29.489657148606643 ], [ -95.155414936797712, 29.489374149008906 ], [ -95.155922937054939, 29.489247148641432 ], [ -95.156520937145203, 29.48918414831493 ], [ -95.157004936417408, 29.489133148116007 ], [ -95.157017936574078, 29.48541714775607 ], [ -95.157058936465234, 29.485417147888132 ], [ -95.157267936227584, 29.485432147504547 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 436, "Tract": "48167721502", "Area_SqMi": 1.4645319214290382, "total_2009": 315, "total_2010": 360, "total_2011": 325, "total_2012": 503, "total_2013": 516, "total_2014": 491, "total_2015": 486, "total_2016": 516, "total_2017": 449, "total_2018": 331, "total_2019": 338, "total_2020": 376, "age1": 85, "age2": 172, "age3": 103, "earn1": 77, "earn2": 128, "earn3": 155, "naics_s01": 4, "naics_s02": 2, "naics_s03": 0, "naics_s04": 38, "naics_s05": 0, "naics_s06": 23, "naics_s07": 14, "naics_s08": 4, "naics_s09": 1, "naics_s10": 8, "naics_s11": 5, "naics_s12": 26, "naics_s13": 0, "naics_s14": 43, "naics_s15": 0, "naics_s16": 49, "naics_s17": 28, "naics_s18": 88, "naics_s19": 27, "naics_s20": 0, "race1": 301, "race2": 30, "race3": 3, "race4": 17, "race5": 1, "race6": 8, "ethnicity1": 279, "ethnicity2": 81, "edu1": 51, "edu2": 71, "edu3": 81, "edu4": 72, "Shape_Length": 27917.813777336381, "Shape_Area": 40828643.398007013, "total_2021": 343, "total_2022": 360 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.06324291611925, 29.558986166191332 ], [ -95.064271916302673, 29.558849165776213 ], [ -95.06285391515263, 29.552890165144625 ], [ -95.062488914811439, 29.551348164167358 ], [ -95.062135914892892, 29.549111163797392 ], [ -95.061731914951295, 29.547365163808273 ], [ -95.061673914874476, 29.547118163395862 ], [ -95.061560914882662, 29.546624163236991 ], [ -95.061405914457794, 29.546229163472553 ], [ -95.061179914945143, 29.545932163425096 ], [ -95.060953914286472, 29.545720163446667 ], [ -95.060502914006619, 29.545416162832051 ], [ -95.060367914592589, 29.545325163034832 ], [ -95.060268913987343, 29.545226163462949 ], [ -95.060014914519655, 29.544986163574688 ], [ -95.059810914729297, 29.544534163367953 ], [ -95.059795914092447, 29.544435163462712 ], [ -95.059779913721599, 29.544316163422788 ], [ -95.059676913690936, 29.54357416254723 ], [ -95.059521913601245, 29.542449162825434 ], [ -95.058898913805308, 29.542514162280465 ], [ -95.058052913619179, 29.542464163036421 ], [ -95.057147913074388, 29.542412162933882 ], [ -95.055162913357805, 29.542296162925112 ], [ -95.054569913237728, 29.542252162839144 ], [ -95.054366913177788, 29.542237163014658 ], [ -95.052325912588046, 29.54208716327485 ], [ -95.050540912147326, 29.541956163164318 ], [ -95.046595911201408, 29.541666162739848 ], [ -95.043684910430144, 29.54145616273177 ], [ -95.042396909614823, 29.54136416332825 ], [ -95.041325909486901, 29.541287162665373 ], [ -95.040977909743035, 29.541262163033174 ], [ -95.040792909115794, 29.541249163308908 ], [ -95.040769909587382, 29.54133116312185 ], [ -95.040891908885911, 29.541335163295358 ], [ -95.040888909403563, 29.541357163222216 ], [ -95.040882909625637, 29.541383163070542 ], [ -95.040871909625565, 29.54142116289033 ], [ -95.040857908855202, 29.541458162922524 ], [ -95.040839909479999, 29.541493163109156 ], [ -95.040818908823482, 29.541528162887953 ], [ -95.040803909327593, 29.541550163147001 ], [ -95.040786908990086, 29.541572162833109 ], [ -95.040758908951659, 29.541602163271911 ], [ -95.040737909507797, 29.541621162790804 ], [ -95.040716909531127, 29.541639162893794 ], [ -95.040694909111195, 29.54165716315801 ], [ -95.040659909219769, 29.541681163024641 ], [ -95.040635908992172, 29.541697163039998 ], [ -95.040612909193513, 29.541713162887074 ], [ -95.040589908845178, 29.54173016301387 ], [ -95.040558909511716, 29.541758163364108 ], [ -95.040538909369559, 29.541777163558827 ], [ -95.040519909149012, 29.541797162969203 ], [ -95.040501908780229, 29.541818163399178 ], [ -95.040484908876692, 29.54183916276186 ], [ -95.040468908825474, 29.54186116314489 ], [ -95.040453908661718, 29.541884163646944 ], [ -95.040440909402832, 29.54190716291998 ], [ -95.040427909559114, 29.541931163377189 ], [ -95.040416909555702, 29.541955163477464 ], [ -95.040406909476815, 29.541980162796207 ], [ -95.040398909170577, 29.54200516356233 ], [ -95.0403919093349, 29.542030163263711 ], [ -95.040385909391134, 29.542056163086002 ], [ -95.040382908896433, 29.542068163584556 ], [ -95.04038190951556, 29.542097163446222 ], [ -95.040371908797667, 29.542276162876192 ], [ -95.040370909538652, 29.542297163050087 ], [ -95.040347908935914, 29.542786163787191 ], [ -95.040333909668817, 29.543038163242571 ], [ -95.040320908983816, 29.543274163090587 ], [ -95.040300908766937, 29.543677163637469 ], [ -95.040274908865555, 29.544161163286152 ], [ -95.040247908975957, 29.544661163337992 ], [ -95.040519909502166, 29.544654163926761 ], [ -95.040653909161691, 29.544646163908695 ], [ -95.040786909431233, 29.544634163660081 ], [ -95.040986909537622, 29.544608164159779 ], [ -95.041183909815103, 29.544573164028176 ], [ -95.041332909644339, 29.544542163660747 ], [ -95.041369909408061, 29.544557164067218 ], [ -95.041417909471619, 29.544589163923369 ], [ -95.041474909894973, 29.544646164172473 ], [ -95.041609909366812, 29.544839163511501 ], [ -95.042662910505328, 29.547891164166906 ], [ -95.041294909508068, 29.548264164608316 ], [ -95.041020909076167, 29.548339164859716 ], [ -95.040766909417016, 29.548411164603433 ], [ -95.040745909803036, 29.548414164774616 ], [ -95.039161909308021, 29.549799165147483 ], [ -95.037380908838273, 29.55135616568565 ], [ -95.036966908369095, 29.551718165166854 ], [ -95.036819908579062, 29.551846165278633 ], [ -95.036009908862354, 29.552560165867277 ], [ -95.035994908801811, 29.552573165615179 ], [ -95.035716908008041, 29.552835165815925 ], [ -95.035456908745047, 29.553075165414462 ], [ -95.037323908510047, 29.553667165611706 ], [ -95.038292909206277, 29.553994165462058 ], [ -95.039001909419326, 29.554111165815726 ], [ -95.039940909391419, 29.554266165982224 ], [ -95.041892909631727, 29.554602166121043 ], [ -95.043328910437324, 29.555105166105651 ], [ -95.043365910154904, 29.555118166113129 ], [ -95.043764910874842, 29.555258165456319 ], [ -95.04472591076977, 29.555722165974878 ], [ -95.044802910386778, 29.555759165994019 ], [ -95.044877911008811, 29.555796165519627 ], [ -95.044994911250072, 29.555853165540729 ], [ -95.045188910951353, 29.555946165844752 ], [ -95.04587791119836, 29.556565166007715 ], [ -95.046125910884086, 29.556788166027658 ], [ -95.046772911163728, 29.55737016589368 ], [ -95.048180911462808, 29.557978166026125 ], [ -95.048886912014879, 29.558186166385521 ], [ -95.049889912567053, 29.558482165971263 ], [ -95.050132912154609, 29.558554166471662 ], [ -95.050219912830471, 29.558564166348724 ], [ -95.051380912802102, 29.558711166339688 ], [ -95.051668912508276, 29.558747166016488 ], [ -95.053796913556567, 29.558987166504028 ], [ -95.055896914118975, 29.559083165918665 ], [ -95.05598091406938, 29.559087166551606 ], [ -95.05624591352391, 29.559099166042682 ], [ -95.057219914136212, 29.559119166184249 ], [ -95.058176914025339, 29.559139166333384 ], [ -95.058623914349184, 29.559149166602083 ], [ -95.060730915258787, 29.559120166055454 ], [ -95.06324291611925, 29.558986166191332 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 437, "Tract": "48167721401", "Area_SqMi": 1.1070455931260923, "total_2009": 306, "total_2010": 264, "total_2011": 293, "total_2012": 328, "total_2013": 345, "total_2014": 339, "total_2015": 292, "total_2016": 314, "total_2017": 296, "total_2018": 410, "total_2019": 359, "total_2020": 270, "age1": 73, "age2": 169, "age3": 95, "earn1": 77, "earn2": 126, "earn3": 134, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 33, "naics_s05": 1, "naics_s06": 9, "naics_s07": 80, "naics_s08": 2, "naics_s09": 0, "naics_s10": 5, "naics_s11": 11, "naics_s12": 37, "naics_s13": 0, "naics_s14": 13, "naics_s15": 1, "naics_s16": 108, "naics_s17": 0, "naics_s18": 8, "naics_s19": 29, "naics_s20": 0, "race1": 246, "race2": 61, "race3": 1, "race4": 23, "race5": 1, "race6": 5, "ethnicity1": 254, "ethnicity2": 83, "edu1": 45, "edu2": 87, "edu3": 80, "edu4": 52, "Shape_Length": 24692.527174829127, "Shape_Area": 30862536.408886634, "total_2021": 396, "total_2022": 337 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.07627091714572, 29.523152158317664 ], [ -95.076357917324998, 29.522998158030045 ], [ -95.076154917827068, 29.522919157872948 ], [ -95.075881917631406, 29.522901157925325 ], [ -95.075239917249334, 29.523006157883891 ], [ -95.073851916758414, 29.52323315858661 ], [ -95.073141917139054, 29.523367158616718 ], [ -95.072901916641243, 29.523412158354329 ], [ -95.071260916435378, 29.523704158416162 ], [ -95.070958916686777, 29.523757158461486 ], [ -95.06978491621588, 29.523962158212392 ], [ -95.068973915301711, 29.524104158209816 ], [ -95.065800914518462, 29.524408158522697 ], [ -95.065611915100703, 29.524426158703967 ], [ -95.064621914275293, 29.524521158384406 ], [ -95.064131914500223, 29.524561159223964 ], [ -95.063534914201171, 29.524613158887075 ], [ -95.061332913521483, 29.524806158913226 ], [ -95.057484913038437, 29.525144158981455 ], [ -95.055567912132958, 29.525312159694661 ], [ -95.055365912489307, 29.52533015910905 ], [ -95.054681912346439, 29.525422159639657 ], [ -95.05114491072878, 29.525902159278502 ], [ -95.050473911300017, 29.525993159330145 ], [ -95.048151910772006, 29.526308159925751 ], [ -95.047917910116311, 29.526339159384506 ], [ -95.047945910630489, 29.52656615996894 ], [ -95.048021910322774, 29.527079159781515 ], [ -95.048096910226164, 29.527455160040429 ], [ -95.048146910121616, 29.527717159658241 ], [ -95.048296910576497, 29.528706160594609 ], [ -95.048484910693446, 29.529394160293457 ], [ -95.048565911113243, 29.529637160241265 ], [ -95.048684910992264, 29.529995160444475 ], [ -95.048965911368441, 29.530693160198808 ], [ -95.049072911392699, 29.530958161048446 ], [ -95.049107911026255, 29.531037161063388 ], [ -95.04928491079319, 29.531434161125727 ], [ -95.049574911466536, 29.531914161269345 ], [ -95.049908910983888, 29.532359161100334 ], [ -95.050280911459978, 29.532786160597471 ], [ -95.050660911578703, 29.533158161254129 ], [ -95.05110691198152, 29.533529160900208 ], [ -95.051616911311712, 29.533863161227046 ], [ -95.052043912221791, 29.534104161552531 ], [ -95.052582911852156, 29.534374161159839 ], [ -95.053148912601557, 29.534568161149721 ], [ -95.053733912547756, 29.534745161043759 ], [ -95.054234912462661, 29.534838161123361 ], [ -95.05431191219985, 29.534851161702722 ], [ -95.055692912305901, 29.535101160846551 ], [ -95.055786912874225, 29.53511816139758 ], [ -95.056383912825581, 29.535208161705597 ], [ -95.057133913603522, 29.535401161430364 ], [ -95.057704913356531, 29.535606161465214 ], [ -95.058185913317274, 29.535805161368007 ], [ -95.058679913691321, 29.53606816175132 ], [ -95.059128914000155, 29.536376161471292 ], [ -95.05951991414679, 29.536659161553185 ], [ -95.059832914064643, 29.53688416187935 ], [ -95.059957913933928, 29.53698016199823 ], [ -95.06047691418533, 29.5373841618852 ], [ -95.060841913755624, 29.537757162074165 ], [ -95.061072914295551, 29.538068161770791 ], [ -95.061213914199627, 29.538297162042554 ], [ -95.061462914483926, 29.538729161755931 ], [ -95.061646914010254, 29.539182161669348 ], [ -95.061834914366926, 29.539502162322243 ], [ -95.061870914640181, 29.539562161599395 ], [ -95.061904915056218, 29.539619162463129 ], [ -95.062176914699265, 29.539982162310078 ], [ -95.062379914539719, 29.540216162387864 ], [ -95.062425914447743, 29.540269162348338 ], [ -95.062856915158889, 29.540632162554434 ], [ -95.063165914768049, 29.540878161842929 ], [ -95.063408914868916, 29.540696162428496 ], [ -95.064078914710663, 29.540010162091278 ], [ -95.064404915283745, 29.539636162058763 ], [ -95.064459914925578, 29.539573161986024 ], [ -95.064791915812648, 29.539193161692978 ], [ -95.064828915632972, 29.539149161744735 ], [ -95.06549591546964, 29.538386162031163 ], [ -95.066379916123793, 29.537375161048974 ], [ -95.068428916189163, 29.535017160430979 ], [ -95.070016916753559, 29.533189160115736 ], [ -95.070260915996343, 29.532935160726414 ], [ -95.071029916846967, 29.531827160285211 ], [ -95.071403916240016, 29.531240159801868 ], [ -95.071463916308232, 29.531143160366764 ], [ -95.071541917053182, 29.531018159869969 ], [ -95.071795916424037, 29.530605159521738 ], [ -95.071895916605143, 29.530445159457781 ], [ -95.072492916605071, 29.529479159735917 ], [ -95.072600917048362, 29.529295159680046 ], [ -95.072823916852613, 29.528917159776043 ], [ -95.072953916490206, 29.528694159640018 ], [ -95.07333391746549, 29.528049158954751 ], [ -95.073693917407908, 29.527438159341347 ], [ -95.074197916994578, 29.526580159007501 ], [ -95.07477691774946, 29.5255951588992 ], [ -95.075031916982667, 29.525179158625708 ], [ -95.075406916937993, 29.524562158164322 ], [ -95.075843917597552, 29.523849158458134 ], [ -95.07627091714572, 29.523152158317664 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 438, "Tract": "48167720603", "Area_SqMi": 0.77937987384469976, "total_2009": 233, "total_2010": 232, "total_2011": 198, "total_2012": 33, "total_2013": 39, "total_2014": 50, "total_2015": 66, "total_2016": 64, "total_2017": 42, "total_2018": 126, "total_2019": 142, "total_2020": 159, "age1": 50, "age2": 124, "age3": 29, "earn1": 30, "earn2": 37, "earn3": 136, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 0, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 147, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 47, "naics_s19": 1, "naics_s20": 0, "race1": 161, "race2": 23, "race3": 3, "race4": 12, "race5": 1, "race6": 3, "ethnicity1": 137, "ethnicity2": 66, "edu1": 35, "edu2": 41, "edu3": 45, "edu4": 32, "Shape_Length": 18700.217836688425, "Shape_Area": 21727776.960804731, "total_2021": 157, "total_2022": 203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.110955923257706, 29.446753140953486 ], [ -95.110771922365331, 29.438189139547998 ], [ -95.109443922898294, 29.438319139149741 ], [ -95.109258922841576, 29.438336139332744 ], [ -95.108909921897535, 29.43836713953711 ], [ -95.106600921439934, 29.438576139505603 ], [ -95.104098920981087, 29.43883613977923 ], [ -95.103914921315294, 29.438853140128479 ], [ -95.10298992123208, 29.438943139921651 ], [ -95.100568919947548, 29.439176140317439 ], [ -95.100502920107786, 29.439184139631475 ], [ -95.099346919910857, 29.439319139886937 ], [ -95.098899919715308, 29.439404140155261 ], [ -95.098226919318492, 29.439655140605801 ], [ -95.097588919599801, 29.439893139924187 ], [ -95.097341919121206, 29.439992139960648 ], [ -95.097252918990677, 29.440028140382395 ], [ -95.09622891892819, 29.440439140497688 ], [ -95.095823919431353, 29.440601140347201 ], [ -95.095612919422834, 29.440686140821448 ], [ -95.092476917917821, 29.441944140615405 ], [ -95.092543918476011, 29.442085140427938 ], [ -95.092610918154023, 29.442226141074908 ], [ -95.09285591843711, 29.442667140808485 ], [ -95.094131919167509, 29.444977141454558 ], [ -95.09456791849091, 29.445792141284464 ], [ -95.095333918768858, 29.447752141527982 ], [ -95.095380919544723, 29.447903142023119 ], [ -95.095579919760823, 29.448668141980246 ], [ -95.095846919258179, 29.45003814247837 ], [ -95.095886919053342, 29.45039914234933 ], [ -95.095927919171899, 29.451309142236866 ], [ -95.095952919329633, 29.452046142999269 ], [ -95.095963919896278, 29.452575142979779 ], [ -95.097479920212052, 29.452264142406175 ], [ -95.097637919874643, 29.452234142373328 ], [ -95.09928292066428, 29.451925142449088 ], [ -95.099705920050724, 29.451856142283887 ], [ -95.100092920338355, 29.451832142411629 ], [ -95.100564921114909, 29.451828142558664 ], [ -95.10117892088914, 29.451828142265494 ], [ -95.10163092138481, 29.45180714290878 ], [ -95.101789920722666, 29.451795142807502 ], [ -95.101889921142003, 29.451789142403854 ], [ -95.10200192107915, 29.451783142713939 ], [ -95.102115921142115, 29.45176314292657 ], [ -95.102334921426788, 29.4516411429336 ], [ -95.10264492157161, 29.451502142040606 ], [ -95.103503921238556, 29.450997142059098 ], [ -95.103873921490901, 29.450745142166781 ], [ -95.104265921318429, 29.450500142227387 ], [ -95.104340922119434, 29.45049614186421 ], [ -95.104479921823796, 29.450489141850479 ], [ -95.104931921917625, 29.450273142594561 ], [ -95.105233921952831, 29.450061142537994 ], [ -95.106072922533855, 29.449670141870332 ], [ -95.106626922384066, 29.449411141903965 ], [ -95.107154922735162, 29.449331141519234 ], [ -95.107369921940418, 29.449211142122063 ], [ -95.107583922285116, 29.449042141961694 ], [ -95.10807292264937, 29.448842141981348 ], [ -95.108715922544761, 29.448718141811995 ], [ -95.109234922877633, 29.448638141993989 ], [ -95.109568922680396, 29.448548141348979 ], [ -95.109932922612884, 29.448159141603558 ], [ -95.110470923602904, 29.447421141037243 ], [ -95.110955923257706, 29.446753140953486 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 439, "Tract": "48167721702", "Area_SqMi": 0.47646721925318036, "total_2009": 251, "total_2010": 314, "total_2011": 322, "total_2012": 230, "total_2013": 252, "total_2014": 309, "total_2015": 368, "total_2016": 372, "total_2017": 352, "total_2018": 372, "total_2019": 353, "total_2020": 278, "age1": 91, "age2": 130, "age3": 68, "earn1": 95, "earn2": 138, "earn3": 56, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 22, "naics_s06": 5, "naics_s07": 56, "naics_s08": 0, "naics_s09": 0, "naics_s10": 16, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 173, "naics_s19": 3, "naics_s20": 0, "race1": 221, "race2": 38, "race3": 2, "race4": 26, "race5": 0, "race6": 2, "ethnicity1": 199, "ethnicity2": 90, "edu1": 44, "edu2": 70, "edu3": 43, "edu4": 41, "Shape_Length": 17247.704255753568, "Shape_Area": 13283090.590982871, "total_2021": 277, "total_2022": 289 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.000040897705901, 29.509566157720169 ], [ -95.001051897550695, 29.508873157409276 ], [ -94.999068897102688, 29.505497157430035 ], [ -94.998561896339751, 29.504634156741819 ], [ -94.998382896516688, 29.504331156827245 ], [ -94.997705896719637, 29.503180156382214 ], [ -94.997087896143327, 29.502131156023662 ], [ -94.997030896127399, 29.50203615613427 ], [ -94.996964896451971, 29.501923156223882 ], [ -94.996635895631726, 29.501365156611275 ], [ -94.995813896254319, 29.499969155845655 ], [ -94.995716895835926, 29.499802155992413 ], [ -94.995123896045826, 29.49879015542334 ], [ -94.993608894846773, 29.496201155477472 ], [ -94.99319589485134, 29.49648815552473 ], [ -94.993033894604039, 29.496602155008226 ], [ -94.992839895438806, 29.496733155447199 ], [ -94.992483895136715, 29.496972155203661 ], [ -94.992412895057981, 29.497020155871461 ], [ -94.991614894186455, 29.497514155426838 ], [ -94.990864894108128, 29.498052155681616 ], [ -94.99044989415053, 29.498350156155087 ], [ -94.990090894671752, 29.498584155698129 ], [ -94.989302893811299, 29.49909915634754 ], [ -94.988916894230371, 29.499351156375635 ], [ -94.988551894407749, 29.49960815624852 ], [ -94.98983289473783, 29.501042156668539 ], [ -94.990583895010161, 29.501881156888956 ], [ -94.991314894414401, 29.502699156871579 ], [ -94.992596894831223, 29.504133156688432 ], [ -94.993180894992932, 29.50478715700989 ], [ -94.993075895162747, 29.504860157026467 ], [ -94.992425895587147, 29.505306156848821 ], [ -94.991801895255762, 29.50573415750943 ], [ -94.99164389549442, 29.505843157491611 ], [ -94.991152894723186, 29.50618015788659 ], [ -94.990878894753422, 29.506369157292351 ], [ -94.990505894834087, 29.50662515716192 ], [ -94.990119894780648, 29.506890157991652 ], [ -94.989870894500655, 29.507061157591124 ], [ -94.989357894878054, 29.507414157586439 ], [ -94.989225894751158, 29.507504157935077 ], [ -94.988574894777514, 29.507951157952913 ], [ -94.987955894126429, 29.508377158107795 ], [ -94.988676894251199, 29.509223158485778 ], [ -94.988775894926818, 29.509332158535511 ], [ -94.989593894982832, 29.510239158181172 ], [ -94.989673894896413, 29.510330158450135 ], [ -94.989739894516845, 29.510281158554641 ], [ -94.990066894593838, 29.510642158552905 ], [ -94.990237894872507, 29.510864158214787 ], [ -94.990720895302275, 29.511357158148311 ], [ -94.991224895418597, 29.511971158516527 ], [ -94.991344895252112, 29.512022158302411 ], [ -94.991435895004216, 29.512032158917965 ], [ -94.991516895108703, 29.512032158803585 ], [ -94.991648895710711, 29.51198015841825 ], [ -94.993846895486413, 29.513019158965115 ], [ -94.994540896633566, 29.513374158817676 ], [ -94.995097896366701, 29.512971158604536 ], [ -94.995654896197877, 29.512592158412808 ], [ -94.996073896211072, 29.51230615849132 ], [ -94.996792896684497, 29.511814158758543 ], [ -94.998450897232345, 29.510670157764505 ], [ -94.999282896879365, 29.510096158218811 ], [ -95.000040897705901, 29.509566157720169 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 440, "Tract": "48167721209", "Area_SqMi": 1.5833086311032236, "total_2009": 150, "total_2010": 159, "total_2011": 199, "total_2012": 288, "total_2013": 314, "total_2014": 374, "total_2015": 466, "total_2016": 402, "total_2017": 515, "total_2018": 643, "total_2019": 672, "total_2020": 1289, "age1": 584, "age2": 513, "age3": 180, "earn1": 402, "earn2": 539, "earn3": 336, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 1, "naics_s06": 13, "naics_s07": 536, "naics_s08": 67, "naics_s09": 12, "naics_s10": 5, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 73, "naics_s15": 42, "naics_s16": 88, "naics_s17": 9, "naics_s18": 347, "naics_s19": 61, "naics_s20": 0, "race1": 990, "race2": 177, "race3": 15, "race4": 71, "race5": 2, "race6": 22, "ethnicity1": 830, "ethnicity2": 447, "edu1": 157, "edu2": 187, "edu3": 226, "edu4": 123, "Shape_Length": 37751.65737587594, "Shape_Area": 44139934.775353, "total_2021": 1144, "total_2022": 1277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.07689391621247, 29.494435152133853 ], [ -95.077209916377782, 29.494350152408277 ], [ -95.071664915086131, 29.488416150800504 ], [ -95.071590914891061, 29.488336151249452 ], [ -95.070223914913242, 29.486869150536865 ], [ -95.069703914538565, 29.486312150907519 ], [ -95.066487913756532, 29.48286014973516 ], [ -95.066267912986845, 29.483016150204062 ], [ -95.065159912659666, 29.48380615053421 ], [ -95.064380912528819, 29.484360150686499 ], [ -95.064132912282943, 29.484536150722956 ], [ -95.063856913109461, 29.484735150473973 ], [ -95.063621912478879, 29.484904150332454 ], [ -95.063094912054737, 29.48528515095775 ], [ -95.062281911863735, 29.485871151289274 ], [ -95.061463911765117, 29.486461151496663 ], [ -95.0610259123915, 29.486778150741731 ], [ -95.060680911730671, 29.487026150959746 ], [ -95.059865911379106, 29.487615151385231 ], [ -95.059020911855143, 29.488224151328875 ], [ -95.057553910914805, 29.489282151837539 ], [ -95.055490911091482, 29.490753152255191 ], [ -95.055155910223604, 29.490993152578771 ], [ -95.054492911051753, 29.491401152256589 ], [ -95.053703910158859, 29.491755152405091 ], [ -95.052934909944426, 29.49204815224887 ], [ -95.052054909536594, 29.492301152271292 ], [ -95.051194909473296, 29.492453152318948 ], [ -95.050070909910644, 29.492554152515122 ], [ -95.047263908923014, 29.49259815263893 ], [ -95.047061908730953, 29.492601152985355 ], [ -95.037492906430444, 29.492758153372822 ], [ -95.037047906228281, 29.492763153019641 ], [ -95.034780906023911, 29.492789153357105 ], [ -95.034440905322299, 29.492789153683212 ], [ -95.034516905504248, 29.495075153584935 ], [ -95.034478905506163, 29.496436153584323 ], [ -95.034509905308937, 29.497427153769323 ], [ -95.034396906187979, 29.502861155033116 ], [ -95.033911905705835, 29.502771155159255 ], [ -95.033619906040499, 29.502742155217156 ], [ -95.033219905480308, 29.502620155779795 ], [ -95.036471906532398, 29.508161156776005 ], [ -95.03680290681335, 29.508713156661901 ], [ -95.037408906735749, 29.50825915622347 ], [ -95.039007907155096, 29.507077156378308 ], [ -95.039672907122622, 29.506588155994354 ], [ -95.041331907581238, 29.505360155450958 ], [ -95.041866908111515, 29.504938155890919 ], [ -95.043015908549833, 29.503942155340997 ], [ -95.043648908023528, 29.503405155159072 ], [ -95.044936908903793, 29.502298155274538 ], [ -95.045063908229579, 29.502190154715613 ], [ -95.045432909091716, 29.501911155112637 ], [ -95.046169908392756, 29.501356154940748 ], [ -95.046399908932813, 29.501195154435727 ], [ -95.046839908651194, 29.500916154315004 ], [ -95.047276908731703, 29.500664154508645 ], [ -95.047372909449749, 29.500608154624818 ], [ -95.047567909484044, 29.500503154304575 ], [ -95.0477499092828, 29.500379154331856 ], [ -95.048062909502207, 29.500210153941943 ], [ -95.049239910091615, 29.499700154636862 ], [ -95.049397909519925, 29.499640154105823 ], [ -95.049712909387168, 29.499535153738762 ], [ -95.050004909943581, 29.499459154304166 ], [ -95.050756910209728, 29.499251153889183 ], [ -95.051435909987589, 29.499115154045651 ], [ -95.051512909928974, 29.499100154004861 ], [ -95.052092910696686, 29.498984154257347 ], [ -95.052983910497545, 29.498835153533246 ], [ -95.053800910361701, 29.498688153503281 ], [ -95.054438910672005, 29.498529154143242 ], [ -95.054820910834607, 29.498448153903393 ], [ -95.055299911078919, 29.498291153433382 ], [ -95.056547911674613, 29.497825153836985 ], [ -95.05666791192121, 29.497779153631782 ], [ -95.056843911050876, 29.497710153781632 ], [ -95.05687991195353, 29.497696153707277 ], [ -95.057608911594215, 29.497364153829729 ], [ -95.058402911588175, 29.49699515296901 ], [ -95.059266911888102, 29.496587153295842 ], [ -95.059675912374317, 29.496395153555923 ], [ -95.06058991196582, 29.495970153065063 ], [ -95.061133912622708, 29.495730152584613 ], [ -95.061613913078062, 29.495564153207528 ], [ -95.062665913001723, 29.495260152956767 ], [ -95.062831913247848, 29.495220153026679 ], [ -95.063136913380433, 29.495146152496911 ], [ -95.063484912619302, 29.495062152810057 ], [ -95.063965913376379, 29.494946152761646 ], [ -95.064974913040743, 29.494685152293066 ], [ -95.065438913078893, 29.494561152275441 ], [ -95.066322913587172, 29.49437915241252 ], [ -95.066877913994773, 29.494311152791436 ], [ -95.067511914458947, 29.494266152541599 ], [ -95.068043913769088, 29.494255151998114 ], [ -95.068678914798156, 29.494300152262444 ], [ -95.069187914546106, 29.494311152457829 ], [ -95.070082914928491, 29.494368152473417 ], [ -95.070684915275379, 29.494392152186389 ], [ -95.070909914972844, 29.494402152522468 ], [ -95.072751915392701, 29.494514152334101 ], [ -95.073871916131125, 29.494584152612148 ], [ -95.075020916504741, 29.494656152617164 ], [ -95.075714916586833, 29.494656152276985 ], [ -95.076077915760905, 29.494626152497897 ], [ -95.076386916470369, 29.494570151933853 ], [ -95.07689391621247, 29.494435152133853 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 441, "Tract": "48167723401", "Area_SqMi": 7.118131670378955, "total_2009": 115, "total_2010": 115, "total_2011": 151, "total_2012": 137, "total_2013": 149, "total_2014": 132, "total_2015": 186, "total_2016": 210, "total_2017": 210, "total_2018": 195, "total_2019": 155, "total_2020": 144, "age1": 40, "age2": 91, "age3": 39, "earn1": 37, "earn2": 41, "earn3": 92, "naics_s01": 9, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 75, "naics_s06": 17, "naics_s07": 18, "naics_s08": 2, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 14, "naics_s18": 0, "naics_s19": 10, "naics_s20": 0, "race1": 151, "race2": 7, "race3": 3, "race4": 3, "race5": 0, "race6": 6, "ethnicity1": 122, "ethnicity2": 48, "edu1": 28, "edu2": 33, "edu3": 40, "edu4": 29, "Shape_Length": 65235.621064867846, "Shape_Area": 198441328.16605467, "total_2021": 146, "total_2022": 170 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.208345947271326, 29.42999113429109 ], [ -95.209346947275066, 29.42998513486457 ], [ -95.206982946921556, 29.426550133529663 ], [ -95.2069279474143, 29.426467133811538 ], [ -95.201104944968563, 29.417660132330965 ], [ -95.200700944509819, 29.417032132556628 ], [ -95.200671944886778, 29.416987131778342 ], [ -95.20056994519571, 29.416851132018195 ], [ -95.199345944394409, 29.41500013165528 ], [ -95.198992944709545, 29.414461131717768 ], [ -95.198222944248442, 29.413272131382559 ], [ -95.198211944001272, 29.41324913132577 ], [ -95.19592494362594, 29.409465130763817 ], [ -95.1920539428165, 29.40816913025979 ], [ -95.189556941722628, 29.40730813042056 ], [ -95.186845940639131, 29.406359130101748 ], [ -95.181550939709524, 29.4045611303013 ], [ -95.178438938983618, 29.403487129928507 ], [ -95.174865937790671, 29.402270130099136 ], [ -95.174361937749111, 29.402085130275065 ], [ -95.172599937205547, 29.401494129986826 ], [ -95.172324937148815, 29.401399129797138 ], [ -95.170413936337098, 29.400735129429801 ], [ -95.169769936714587, 29.400512129410291 ], [ -95.169635936275824, 29.400466129277177 ], [ -95.167599936067404, 29.39976712928679 ], [ -95.161106933831249, 29.397496129630618 ], [ -95.157934933477293, 29.396427129507025 ], [ -95.155784932932264, 29.395664129354376 ], [ -95.15304593209666, 29.394714128864756 ], [ -95.149600930602915, 29.393530129365701 ], [ -95.148605930722013, 29.393181128549305 ], [ -95.147212930312079, 29.392693128834555 ], [ -95.146877930020906, 29.393390129109171 ], [ -95.146369930041089, 29.394519129570224 ], [ -95.146235930047979, 29.394817129281911 ], [ -95.145683930087728, 29.396046130048635 ], [ -95.145661929527392, 29.396093129987754 ], [ -95.145280929536113, 29.396941129859243 ], [ -95.144426930075511, 29.39880113025017 ], [ -95.144163929758875, 29.399404130606928 ], [ -95.144134929829534, 29.399503130508759 ], [ -95.143976930002978, 29.399831130882855 ], [ -95.143876929762897, 29.399995130676214 ], [ -95.143788929628343, 29.400094130857898 ], [ -95.14371892910745, 29.400141130758296 ], [ -95.143572929964648, 29.400188130089077 ], [ -95.143086929462328, 29.400299130794309 ], [ -95.141299929465504, 29.400880130328382 ], [ -95.141214928617728, 29.400907130919652 ], [ -95.140641928534805, 29.401141130403758 ], [ -95.140302929086985, 29.401299130518648 ], [ -95.140113928796495, 29.401406130508313 ], [ -95.140100929033579, 29.401504130582179 ], [ -95.140094928810583, 29.401635130705376 ], [ -95.140089928623567, 29.401752131186402 ], [ -95.140086928861578, 29.40337713172277 ], [ -95.140078928824252, 29.406522131756713 ], [ -95.14008992885266, 29.408085132680224 ], [ -95.140083928785458, 29.408908132441614 ], [ -95.140082928604585, 29.409510132463016 ], [ -95.140081929470796, 29.409853132299084 ], [ -95.14008192930514, 29.409918132633624 ], [ -95.140077929398956, 29.412361133298464 ], [ -95.140077929107733, 29.412484132739358 ], [ -95.140076929347629, 29.412604133090635 ], [ -95.143921930149929, 29.412625133045292 ], [ -95.143913930287468, 29.414442133209427 ], [ -95.143898930446738, 29.417438134451395 ], [ -95.144049930793344, 29.417439133860192 ], [ -95.146381930805845, 29.417445134022234 ], [ -95.146569931371218, 29.417445133695228 ], [ -95.148830931670688, 29.417452134228508 ], [ -95.149051932023525, 29.417452134221524 ], [ -95.149060932009107, 29.417458133724164 ], [ -95.149338931834436, 29.417461133952184 ], [ -95.14939993142562, 29.417449133554008 ], [ -95.149544931574212, 29.417437134084171 ], [ -95.149628931943099, 29.417425134175534 ], [ -95.149749932155444, 29.417419133932157 ], [ -95.150408931926833, 29.417419133879061 ], [ -95.151545932035091, 29.417437133709871 ], [ -95.152306932915394, 29.417437133536797 ], [ -95.153709933083931, 29.417467133616984 ], [ -95.15402393346271, 29.417449133882513 ], [ -95.154797933409853, 29.417461133588603 ], [ -95.155359933821813, 29.417467133390705 ], [ -95.156072933088524, 29.417467133517508 ], [ -95.156344933128238, 29.417473133291313 ], [ -95.156508933729882, 29.417467133278318 ], [ -95.157088933707016, 29.417473133815594 ], [ -95.158134933784012, 29.417473133728596 ], [ -95.158408933618162, 29.417478133277381 ], [ -95.158787934023039, 29.417486133837752 ], [ -95.159218934297527, 29.417499133640543 ], [ -95.159250934287215, 29.417675133724419 ], [ -95.159258934025658, 29.417721133412911 ], [ -95.159300934319333, 29.417884133863357 ], [ -95.159288933993665, 29.417963133915901 ], [ -95.159276934324296, 29.418066133724878 ], [ -95.159276934490464, 29.418217133290081 ], [ -95.159234934783697, 29.41824713377218 ], [ -95.159198934262619, 29.41829013362107 ], [ -95.159161934159314, 29.41836213388482 ], [ -95.159131934827343, 29.418441133506317 ], [ -95.159046933846739, 29.418519133353385 ], [ -95.158962933823304, 29.418549133573826 ], [ -95.158913933819036, 29.418616133818446 ], [ -95.158853934103817, 29.418676134287367 ], [ -95.158799934098496, 29.418707133695712 ], [ -95.158780934569407, 29.4187131341791 ], [ -95.158714933979823, 29.418688134115815 ], [ -95.158678934610791, 29.418707134124642 ], [ -95.158635933791871, 29.418761134257633 ], [ -95.158599934545634, 29.418815133570444 ], [ -95.15857593391101, 29.418894134114208 ], [ -95.15855193372397, 29.419045133886637 ], [ -95.158533933700596, 29.419166134157717 ], [ -95.158502933931175, 29.419347133550591 ], [ -95.15845493461471, 29.419547134194151 ], [ -95.158430934096089, 29.419698133927543 ], [ -95.158369933986677, 29.419849134513466 ], [ -95.1583219342929, 29.419946134115364 ], [ -95.158291934520676, 29.420091133726135 ], [ -95.15828693408973, 29.420267133888046 ], [ -95.158213934051105, 29.420502134017589 ], [ -95.158213934457251, 29.42059113455436 ], [ -95.158270934030639, 29.420721134714903 ], [ -95.158246934424255, 29.42091613454042 ], [ -95.158100934313239, 29.421208134563635 ], [ -95.158100934255899, 29.421273134442501 ], [ -95.158059934097693, 29.421403134546388 ], [ -95.15798693463195, 29.42152413402237 ], [ -95.157929934486916, 29.421646134559367 ], [ -95.157913934643034, 29.421760134272702 ], [ -95.157913933867277, 29.421963134393462 ], [ -95.157978934468474, 29.422084134728593 ], [ -95.158100934548585, 29.422255134596863 ], [ -95.158173934559485, 29.422376134752348 ], [ -95.15827893432602, 29.422531134529201 ], [ -95.158303934230943, 29.422660134557606 ], [ -95.158278934714829, 29.422758134361072 ], [ -95.158230934378437, 29.422863134414222 ], [ -95.158213934169325, 29.422920134896092 ], [ -95.158230933801534, 29.423042134757882 ], [ -95.158270934296084, 29.423172135086389 ], [ -95.158270933991858, 29.423318134903358 ], [ -95.158222934679458, 29.423650134768863 ], [ -95.158222934108665, 29.423894134936393 ], [ -95.158295934654817, 29.424082135390957 ], [ -95.158353934268447, 29.424323134860757 ], [ -95.158608934006494, 29.424721134735318 ], [ -95.158761934084538, 29.425076135290571 ], [ -95.158619934743214, 29.425348134954678 ], [ -95.158531934004372, 29.425509135444738 ], [ -95.158348934201001, 29.425687135274604 ], [ -95.158278934010937, 29.425933135421385 ], [ -95.15822593403351, 29.426125135030528 ], [ -95.157879934012271, 29.426286135422679 ], [ -95.157676934678307, 29.426425135421383 ], [ -95.157396934314448, 29.426436135853205 ], [ -95.157113933680805, 29.426616135247162 ], [ -95.157060934140631, 29.426852135442029 ], [ -95.156960934057679, 29.426921135911279 ], [ -95.156871934440176, 29.42701613539559 ], [ -95.15670293369719, 29.427251135342203 ], [ -95.156522934279266, 29.427473136173422 ], [ -95.156530933902062, 29.427612135762871 ], [ -95.156469933645212, 29.42772913558159 ], [ -95.156369933627445, 29.427977135932625 ], [ -95.15666193456498, 29.428184136042663 ], [ -95.157317933863254, 29.428359136323035 ], [ -95.15849893483329, 29.428200135575306 ], [ -95.159433935315434, 29.428422135739773 ], [ -95.160237935059243, 29.428724135926569 ], [ -95.160729935465639, 29.429295136300322 ], [ -95.161303935115271, 29.429676135848716 ], [ -95.162189935565749, 29.430073136438637 ], [ -95.162779935899806, 29.430406135697829 ], [ -95.16363293548288, 29.430597136512684 ], [ -95.164305936641327, 29.43067613640725 ], [ -95.165092936755755, 29.430993136058138 ], [ -95.165945936251532, 29.431311136453665 ], [ -95.166535937108662, 29.431375136467103 ], [ -95.167060937132703, 29.431311135743293 ], [ -95.167335936538962, 29.431279135825449 ], [ -95.167815936853145, 29.431343135735137 ], [ -95.168439937184189, 29.431519136357142 ], [ -95.168695937560216, 29.431935136023807 ], [ -95.169031937641506, 29.432159136371595 ], [ -95.169591937155758, 29.432415136455734 ], [ -95.169815937949608, 29.43260713623091 ], [ -95.16981593777848, 29.432911136044172 ], [ -95.169271937039795, 29.433199136854679 ], [ -95.169143937201767, 29.433471136712974 ], [ -95.169335937552987, 29.433807136867095 ], [ -95.169655938179503, 29.434319136585088 ], [ -95.16962393806287, 29.434879137212633 ], [ -95.169719937478604, 29.435343136989889 ], [ -95.169967938234663, 29.436039137045519 ], [ -95.171604937809875, 29.435926136603854 ], [ -95.172004938631801, 29.435891136748573 ], [ -95.173989939041107, 29.435877137072762 ], [ -95.176298939429003, 29.435887136777289 ], [ -95.176553939290997, 29.435888136655972 ], [ -95.176847940056774, 29.435888137270151 ], [ -95.181215940334368, 29.435875136893699 ], [ -95.183168940804109, 29.435864136679161 ], [ -95.183444941035347, 29.435859136880229 ], [ -95.183555941115188, 29.435856136513372 ], [ -95.183632941119228, 29.435855136457281 ], [ -95.184446941178336, 29.435840136943778 ], [ -95.18747994234694, 29.435690136375722 ], [ -95.190858943375304, 29.435495136368264 ], [ -95.191930943217415, 29.435455136396918 ], [ -95.192761943484371, 29.435385136012741 ], [ -95.193734944137333, 29.435321136530334 ], [ -95.194042944320316, 29.43530113618564 ], [ -95.195950944533919, 29.435221135769879 ], [ -95.198317944726995, 29.435099135839817 ], [ -95.19882894484391, 29.435070136075378 ], [ -95.199440945307884, 29.435035136066926 ], [ -95.200107945188833, 29.43499713548216 ], [ -95.200757945863685, 29.434805135513141 ], [ -95.200915945408696, 29.434734135416548 ], [ -95.201354945406422, 29.434538135421295 ], [ -95.201706945469411, 29.434315135875046 ], [ -95.202122946080777, 29.433931135358502 ], [ -95.202846946647298, 29.43315313572759 ], [ -95.203667946724295, 29.432300135470864 ], [ -95.204520946868229, 29.431319135284728 ], [ -95.205032946809894, 29.430907134765615 ], [ -95.205631946442836, 29.43053813430009 ], [ -95.206217946522457, 29.430294134854094 ], [ -95.206764947362473, 29.43012913474621 ], [ -95.207015947525207, 29.430086134460733 ], [ -95.207498946917596, 29.430011134883571 ], [ -95.207773946914756, 29.430011135005628 ], [ -95.208345947271326, 29.42999113429109 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 442, "Tract": "48167723504", "Area_SqMi": 3.9294077982174165, "total_2009": 154, "total_2010": 133, "total_2011": 174, "total_2012": 226, "total_2013": 213, "total_2014": 204, "total_2015": 199, "total_2016": 206, "total_2017": 193, "total_2018": 196, "total_2019": 172, "total_2020": 166, "age1": 53, "age2": 99, "age3": 34, "earn1": 67, "earn2": 73, "earn3": 46, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 7, "naics_s06": 16, "naics_s07": 17, "naics_s08": 7, "naics_s09": 2, "naics_s10": 3, "naics_s11": 2, "naics_s12": 24, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 25, "naics_s17": 0, "naics_s18": 56, "naics_s19": 8, "naics_s20": 0, "race1": 160, "race2": 9, "race3": 3, "race4": 9, "race5": 0, "race6": 5, "ethnicity1": 122, "ethnicity2": 64, "edu1": 24, "edu2": 41, "edu3": 35, "edu4": 33, "Shape_Length": 51390.061436905278, "Shape_Area": 109545164.1656418, "total_2021": 194, "total_2022": 186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.139275927530875, 29.386875128325432 ], [ -95.140130928273109, 29.384973127594971 ], [ -95.137853927866288, 29.384180127359606 ], [ -95.137560927177176, 29.38408212716984 ], [ -95.135728926852536, 29.3834471270725 ], [ -95.134794926644574, 29.383123127251601 ], [ -95.134170926186584, 29.382911127453657 ], [ -95.13352492668713, 29.382688126897666 ], [ -95.132672925935339, 29.382401127430665 ], [ -95.131303925975999, 29.381935127450802 ], [ -95.131507925730133, 29.3814821267814 ], [ -95.131907926009987, 29.380596127249596 ], [ -95.133078926231761, 29.377958126525375 ], [ -95.127470923982415, 29.376033125622921 ], [ -95.126770923955434, 29.375793126409139 ], [ -95.127141923758643, 29.374967125527036 ], [ -95.127297924418841, 29.374625126112591 ], [ -95.128032924580936, 29.372978125853816 ], [ -95.128677924526485, 29.371521125416994 ], [ -95.129106924533644, 29.370552124706045 ], [ -95.129265924283715, 29.370194124860017 ], [ -95.129282924850656, 29.370168125120909 ], [ -95.129347925037337, 29.370065125154611 ], [ -95.12965392450613, 29.370065124447706 ], [ -95.130578924644709, 29.370046124800126 ], [ -95.132084925251121, 29.370065124653745 ], [ -95.13316792512812, 29.370065124377412 ], [ -95.133646925649373, 29.370065124176698 ], [ -95.134246925399566, 29.370051124300101 ], [ -95.134455925742984, 29.370063124380131 ], [ -95.134693925840025, 29.370042124243444 ], [ -95.134839926186601, 29.369978124943607 ], [ -95.134923926069717, 29.369893124719752 ], [ -95.134947926466666, 29.369709124434259 ], [ -95.134926926003175, 29.368976124118241 ], [ -95.134927926282813, 29.368751124141614 ], [ -95.134934926239083, 29.36438712373187 ], [ -95.134936925753379, 29.363411123150016 ], [ -95.134937925416736, 29.362982122805544 ], [ -95.134940925532362, 29.360893122372133 ], [ -95.134943925584651, 29.359283121927202 ], [ -95.134942925520008, 29.358890122281196 ], [ -95.131334924871879, 29.358920122685891 ], [ -95.127347923195231, 29.358938122467162 ], [ -95.127319923783716, 29.355314121405367 ], [ -95.127319923781002, 29.35499912141232 ], [ -95.127295923632715, 29.354940121678961 ], [ -95.127117923098979, 29.354690121997479 ], [ -95.126708923363012, 29.354390121590722 ], [ -95.125533923041957, 29.354375121716739 ], [ -95.125060922653631, 29.354369121307347 ], [ -95.125009922804111, 29.354368121591595 ], [ -95.120614921479515, 29.354392121515197 ], [ -95.118433920779808, 29.354386121750871 ], [ -95.118111920878505, 29.354386121968282 ], [ -95.11737992136581, 29.354386121924534 ], [ -95.115738920656668, 29.354385121631761 ], [ -95.115000920677375, 29.35438912201959 ], [ -95.11365892004892, 29.354389122163635 ], [ -95.110838919617692, 29.354389122450044 ], [ -95.109599918639162, 29.354389122355883 ], [ -95.106563917580843, 29.354392122457202 ], [ -95.102297916994587, 29.354396122409081 ], [ -95.10083891704339, 29.354390122454152 ], [ -95.100481916032322, 29.354379122885454 ], [ -95.100350916399435, 29.354385122815852 ], [ -95.100299916516676, 29.354385122094826 ], [ -95.098606915838388, 29.354361122198103 ], [ -95.097984916155454, 29.3543521222396 ], [ -95.098021915937338, 29.356442123199926 ], [ -95.097995916470097, 29.357081122967212 ], [ -95.098005916261613, 29.35897312389498 ], [ -95.097939916171001, 29.361709124175146 ], [ -95.098016916075323, 29.365376124490158 ], [ -95.098027916775862, 29.372792126287106 ], [ -95.098030917281335, 29.374865126428414 ], [ -95.098026916631227, 29.374920126993278 ], [ -95.098019916827596, 29.375017127127141 ], [ -95.098003917272251, 29.375102126711848 ], [ -95.097777916341556, 29.375638127071273 ], [ -95.102317917884548, 29.377221127084688 ], [ -95.105393918296571, 29.378273127529603 ], [ -95.106570919120117, 29.378676127502889 ], [ -95.107700919019734, 29.379061127356685 ], [ -95.111361920411284, 29.380288127471367 ], [ -95.111825920480371, 29.380464127748571 ], [ -95.111892920438223, 29.380493127468775 ], [ -95.11220292050713, 29.380605127482522 ], [ -95.112419920804626, 29.380679127501367 ], [ -95.113094920747017, 29.380909127926429 ], [ -95.116929922277492, 29.38222212777379 ], [ -95.118013922301586, 29.382591127530574 ], [ -95.119091922781919, 29.382958127365352 ], [ -95.12029292260361, 29.383388127561595 ], [ -95.121481922973032, 29.383790127740316 ], [ -95.122552923076555, 29.384152127729056 ], [ -95.123680923884095, 29.384540128160893 ], [ -95.129262925735716, 29.386459127748623 ], [ -95.136299927163307, 29.388830128726781 ], [ -95.138083927620542, 29.389514128562933 ], [ -95.138146928040641, 29.389384128078511 ], [ -95.138340927654497, 29.388952128407219 ], [ -95.13897192825543, 29.387550128314203 ], [ -95.139066927553927, 29.387309127563096 ], [ -95.139275927530875, 29.386875128325432 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 443, "Tract": "48167721204", "Area_SqMi": 1.4426781203702448, "total_2009": 203, "total_2010": 179, "total_2011": 196, "total_2012": 148, "total_2013": 169, "total_2014": 199, "total_2015": 250, "total_2016": 250, "total_2017": 338, "total_2018": 421, "total_2019": 356, "total_2020": 266, "age1": 74, "age2": 81, "age3": 35, "earn1": 85, "earn2": 67, "earn3": 38, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 1, "naics_s06": 2, "naics_s07": 11, "naics_s08": 0, "naics_s09": 0, "naics_s10": 13, "naics_s11": 5, "naics_s12": 3, "naics_s13": 0, "naics_s14": 10, "naics_s15": 57, "naics_s16": 18, "naics_s17": 0, "naics_s18": 52, "naics_s19": 12, "naics_s20": 0, "race1": 136, "race2": 22, "race3": 2, "race4": 28, "race5": 0, "race6": 2, "ethnicity1": 150, "ethnicity2": 40, "edu1": 28, "edu2": 33, "edu3": 31, "edu4": 24, "Shape_Length": 26298.77361198809, "Shape_Area": 40219396.82764218, "total_2021": 314, "total_2022": 190 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.07869691849595, 29.520256157314225 ], [ -95.078082917775987, 29.517492156873342 ], [ -95.078014918100209, 29.517184156444326 ], [ -95.077854917971194, 29.516462156581863 ], [ -95.077797917262885, 29.516204156675055 ], [ -95.077734917126463, 29.515920156276309 ], [ -95.077663917781166, 29.515601156325584 ], [ -95.077592917108404, 29.515268156651775 ], [ -95.077224917363694, 29.513528156240433 ], [ -95.077092917651285, 29.512902156128547 ], [ -95.077050916844385, 29.512708156148186 ], [ -95.076858917497361, 29.511808156151815 ], [ -95.076777916806591, 29.511422156084869 ], [ -95.076600916614453, 29.510569155428868 ], [ -95.07643091685901, 29.509751155315701 ], [ -95.076318917352424, 29.509211155108176 ], [ -95.076258917430891, 29.508928155068702 ], [ -95.076101917303731, 29.508176155391517 ], [ -95.07595491643724, 29.507473154723186 ], [ -95.075826916992739, 29.50686415456072 ], [ -95.075640916518495, 29.505972154483082 ], [ -95.075571916969466, 29.505649154841951 ], [ -95.074989915939028, 29.502914154365186 ], [ -95.074880916475465, 29.502393154355072 ], [ -95.074441916006819, 29.500305153438894 ], [ -95.07428991639091, 29.500317153672771 ], [ -95.073005915266179, 29.500324153938642 ], [ -95.072778915548597, 29.500325153507045 ], [ -95.07104691517732, 29.500360153677732 ], [ -95.069784915085862, 29.500369153842176 ], [ -95.068543914196582, 29.500388153481065 ], [ -95.068370914420939, 29.50039115395596 ], [ -95.066468914097655, 29.500423153613561 ], [ -95.064922913476877, 29.500423153397659 ], [ -95.061885913364037, 29.5004741538438 ], [ -95.060963912596961, 29.500490153669269 ], [ -95.058041912144859, 29.500540153748467 ], [ -95.058211912126922, 29.501129153848176 ], [ -95.058995912561699, 29.503507154861808 ], [ -95.059609912989742, 29.505454155489161 ], [ -95.059727912362234, 29.505864155200005 ], [ -95.059831912894467, 29.506225155175883 ], [ -95.060328912327478, 29.507754155670941 ], [ -95.06064291333729, 29.508734155693588 ], [ -95.060980913349354, 29.509824155595254 ], [ -95.061164912846053, 29.510420155611115 ], [ -95.061302912869948, 29.510837156074633 ], [ -95.061563912823033, 29.511625156463701 ], [ -95.061635912852879, 29.511844156334245 ], [ -95.062247913979107, 29.51379315701714 ], [ -95.062288913084487, 29.513922156777525 ], [ -95.062478913988372, 29.514518156612713 ], [ -95.062507913211235, 29.514600157034213 ], [ -95.062844913739212, 29.515539157334601 ], [ -95.063056913567337, 29.516333157138114 ], [ -95.063309913959642, 29.517130156917883 ], [ -95.063569914186118, 29.517948157129876 ], [ -95.063634914591034, 29.518156157214246 ], [ -95.063869914164798, 29.518895157770736 ], [ -95.063979913814393, 29.519242157309026 ], [ -95.06417091414221, 29.519844157638424 ], [ -95.064199913940513, 29.5199371581012 ], [ -95.064293914521684, 29.520239157556432 ], [ -95.064357914672328, 29.520443158060779 ], [ -95.064453914241852, 29.520746157818092 ], [ -95.064814914725488, 29.521892157904485 ], [ -95.065304914472492, 29.522965158458447 ], [ -95.065800914518462, 29.524408158522697 ], [ -95.068973915301711, 29.524104158209816 ], [ -95.06978491621588, 29.523962158212392 ], [ -95.070958916686777, 29.523757158461486 ], [ -95.071260916435378, 29.523704158416162 ], [ -95.072901916641243, 29.523412158354329 ], [ -95.073141917139054, 29.523367158616718 ], [ -95.073851916758414, 29.52323315858661 ], [ -95.075239917249334, 29.523006157883891 ], [ -95.075881917631406, 29.522901157925325 ], [ -95.076154917827068, 29.522919157872948 ], [ -95.076357917324998, 29.522998158030045 ], [ -95.076386917291813, 29.522945157731236 ], [ -95.07665891756163, 29.522465158086771 ], [ -95.076975917314911, 29.521908157795263 ], [ -95.077108917936812, 29.52167415741722 ], [ -95.0774919174508, 29.52120415759191 ], [ -95.07766191739384, 29.521070157756053 ], [ -95.078075917641073, 29.520744157653791 ], [ -95.07869691849595, 29.520256157314225 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 444, "Tract": "48167721902", "Area_SqMi": 22.351397311676781, "total_2009": 2639, "total_2010": 2806, "total_2011": 2950, "total_2012": 3321, "total_2013": 3877, "total_2014": 3814, "total_2015": 3130, "total_2016": 3612, "total_2017": 3555, "total_2018": 3047, "total_2019": 3107, "total_2020": 3095, "age1": 787, "age2": 1378, "age3": 675, "earn1": 885, "earn2": 923, "earn3": 1032, "naics_s01": 0, "naics_s02": 2, "naics_s03": 99, "naics_s04": 234, "naics_s05": 288, "naics_s06": 83, "naics_s07": 477, "naics_s08": 82, "naics_s09": 3, "naics_s10": 290, "naics_s11": 57, "naics_s12": 46, "naics_s13": 47, "naics_s14": 62, "naics_s15": 0, "naics_s16": 446, "naics_s17": 20, "naics_s18": 524, "naics_s19": 78, "naics_s20": 2, "race1": 1960, "race2": 698, "race3": 20, "race4": 130, "race5": 2, "race6": 30, "ethnicity1": 2048, "ethnicity2": 792, "edu1": 426, "edu2": 608, "edu3": 646, "edu4": 373, "Shape_Length": 167064.88174857048, "Shape_Area": 623118702.25072563, "total_2021": 2756, "total_2022": 2840 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.039084904582467, 29.453381144658934 ], [ -95.039238905182103, 29.453261145378086 ], [ -95.037573904337137, 29.451527145063924 ], [ -95.037276904146211, 29.451217144401173 ], [ -95.037162904785376, 29.450830144506572 ], [ -95.037136904785584, 29.450809144660404 ], [ -95.036854903910665, 29.450534144073757 ], [ -95.035974903845073, 29.449701144356325 ], [ -95.032805902982531, 29.446276143460732 ], [ -95.032471903188124, 29.445922143638441 ], [ -95.031446902931847, 29.444811143626975 ], [ -95.031341902248442, 29.444698143614957 ], [ -95.030226902086042, 29.443509143202693 ], [ -95.028718901340028, 29.441891143149601 ], [ -95.028702901937237, 29.441704143272172 ], [ -95.028700901694833, 29.441663142773113 ], [ -95.028677901568003, 29.441389143141496 ], [ -95.028773901615367, 29.44051214289313 ], [ -95.028789901803151, 29.440132142760049 ], [ -95.029199902087427, 29.437748142101274 ], [ -95.029408901359133, 29.436815142118711 ], [ -95.02950190214915, 29.436356142019431 ], [ -95.029745901738522, 29.434975141239875 ], [ -95.03083790210971, 29.4294101405101 ], [ -95.031130901411231, 29.427627139618068 ], [ -95.031229901318738, 29.42685813972599 ], [ -95.031248901893576, 29.426172139198837 ], [ -95.031239901453944, 29.42272713885928 ], [ -95.030898901121915, 29.422733138842535 ], [ -95.029924901276161, 29.422697139126097 ], [ -95.028756900750835, 29.422636139175289 ], [ -95.021817899036577, 29.422640139552136 ], [ -95.021404899134481, 29.42263213881327 ], [ -95.020771898950045, 29.422438139457384 ], [ -95.020577899079044, 29.422387139407196 ], [ -95.020222898370179, 29.422387138920801 ], [ -95.019962898368107, 29.4223871396091 ], [ -95.019577899112832, 29.422677139571615 ], [ -95.0088388952542, 29.41179213745977 ], [ -95.008213895456919, 29.411158137684236 ], [ -95.004197894329963, 29.407011136971374 ], [ -94.999166892279874, 29.401747135530353 ], [ -94.998498891866006, 29.40107613503065 ], [ -94.998350891789286, 29.400928135880442 ], [ -94.996579891426421, 29.399150135010387 ], [ -94.995972891712356, 29.398556135150343 ], [ -94.99595889186574, 29.398496135426999 ], [ -94.996351891324679, 29.398078134888873 ], [ -94.996434891353871, 29.397980134948778 ], [ -94.99669589144662, 29.397674134884912 ], [ -94.996135891880598, 29.397624134670387 ], [ -94.995611891077431, 29.397525134371598 ], [ -94.995463890988773, 29.397497134610045 ], [ -94.995260890939122, 29.397459134489253 ], [ -94.994821890782475, 29.397376134902721 ], [ -94.99460289101836, 29.397335134844518 ], [ -94.993439891081124, 29.397022135154746 ], [ -94.99195789042524, 29.396629135095829 ], [ -94.991208890002852, 29.396456134916303 ], [ -94.990263890198307, 29.396260134860409 ], [ -94.988727889181192, 29.396237135213109 ], [ -94.987826889592313, 29.396262135171067 ], [ -94.986383889318589, 29.396304135226039 ], [ -94.986161888995042, 29.396310134659075 ], [ -94.985913889148236, 29.396317135066123 ], [ -94.985397889199305, 29.396332134684005 ], [ -94.984541888684674, 29.396356134618156 ], [ -94.980033887017456, 29.39646313503253 ], [ -94.97907388685411, 29.396362135561674 ], [ -94.978510886519771, 29.396244134851699 ], [ -94.977214887050152, 29.39597313496315 ], [ -94.976045886055715, 29.395760135236618 ], [ -94.975398886069641, 29.395668135197134 ], [ -94.974181885740435, 29.395668135281685 ], [ -94.967153884367761, 29.395670135088729 ], [ -94.965417883870032, 29.395674135322192 ], [ -94.963940883403666, 29.395675135735374 ], [ -94.963236883236448, 29.395676135410916 ], [ -94.963008882560644, 29.395676135814416 ], [ -94.960747881900446, 29.395437135593021 ], [ -94.959257882225231, 29.395374135959774 ], [ -94.958213881961953, 29.395330135490195 ], [ -94.956084880923754, 29.39533113536579 ], [ -94.955626881069136, 29.395331135638145 ], [ -94.955361880637469, 29.395331135997175 ], [ -94.952254880541659, 29.395333135940319 ], [ -94.951584879769712, 29.395332135555119 ], [ -94.951532879493229, 29.395333136209572 ], [ -94.951075880125273, 29.39533313586762 ], [ -94.951077879370999, 29.395067135723473 ], [ -94.951098879719154, 29.392362135618296 ], [ -94.951096879702064, 29.39171713514472 ], [ -94.951085879902735, 29.38808813393803 ], [ -94.951090879845339, 29.386264133872373 ], [ -94.951089879888741, 29.385608133880822 ], [ -94.951088878997837, 29.385212133296061 ], [ -94.951086879755962, 29.384474133285391 ], [ -94.951084879753481, 29.383561133156004 ], [ -94.951082879786625, 29.382648132889162 ], [ -94.95108087916266, 29.381723132702433 ], [ -94.951079879405782, 29.380992132574757 ], [ -94.95107887920102, 29.380835132943748 ], [ -94.951075879419577, 29.379922132632604 ], [ -94.951074879121151, 29.379555133007241 ], [ -94.951072879125292, 29.379171132180502 ], [ -94.950789879202844, 29.379175132867456 ], [ -94.950053879411087, 29.379184132684902 ], [ -94.949642878594418, 29.379135132923796 ], [ -94.948899878387024, 29.379165132715805 ], [ -94.948739878514232, 29.379166132340828 ], [ -94.947600877775272, 29.379206132564253 ], [ -94.947374878747226, 29.379213132326107 ], [ -94.946858878206385, 29.379213132345065 ], [ -94.946846877912208, 29.379219133033413 ], [ -94.945015877965233, 29.37924013274792 ], [ -94.944777877721322, 29.379242132801448 ], [ -94.943034876653726, 29.379249133056266 ], [ -94.942631877474241, 29.379254133169017 ], [ -94.941536877222674, 29.379270133123285 ], [ -94.941107876568651, 29.379274133084898 ], [ -94.940641876548156, 29.379271132461561 ], [ -94.940629876828694, 29.379918133008339 ], [ -94.940610877035866, 29.381654133365014 ], [ -94.940598876431267, 29.382545133741175 ], [ -94.940597877048944, 29.382635133878342 ], [ -94.940610876465541, 29.383553133980701 ], [ -94.940605877026485, 29.383902133448053 ], [ -94.940597876744121, 29.384457133646723 ], [ -94.940612876635882, 29.386245134446984 ], [ -94.940617876651487, 29.386831134619335 ], [ -94.940621876774514, 29.387354134105696 ], [ -94.940629877079658, 29.388274134738236 ], [ -94.940635876943134, 29.388978135155423 ], [ -94.940638877033322, 29.389295134989535 ], [ -94.940636876478038, 29.389622135288967 ], [ -94.940628876449011, 29.390304135304344 ], [ -94.94062187686653, 29.390961135052208 ], [ -94.940618876594101, 29.391209135277343 ], [ -94.940625876826957, 29.391780135341531 ], [ -94.940630876640171, 29.392202135885974 ], [ -94.940626877289631, 29.392524135755998 ], [ -94.940624876635937, 29.392636135737622 ], [ -94.940618877530298, 29.393081135907778 ], [ -94.940619877377259, 29.39343113615147 ], [ -94.940619877339728, 29.393531135783892 ], [ -94.940620876651394, 29.394032135780265 ], [ -94.940620877278874, 29.394263136190865 ], [ -94.940623877062748, 29.395228136090903 ], [ -94.940623876940293, 29.395326135878893 ], [ -94.937243875962977, 29.395292136603615 ], [ -94.937246876413852, 29.396254136325538 ], [ -94.937248876609104, 29.39659513689379 ], [ -94.937247876451991, 29.397048136775005 ], [ -94.937246876195175, 29.397288136242931 ], [ -94.937245876810138, 29.397981137084574 ], [ -94.937243876121144, 29.399115136854398 ], [ -94.937243876967287, 29.399292136960284 ], [ -94.937242876456509, 29.400111137419479 ], [ -94.937241877035262, 29.400400137143688 ], [ -94.937240876927376, 29.400804137288649 ], [ -94.937240876194352, 29.400980137841504 ], [ -94.937239876437616, 29.401497137685297 ], [ -94.937239876477918, 29.402110138081529 ], [ -94.937239876946691, 29.402170137848252 ], [ -94.937235876217954, 29.403362138176956 ], [ -94.937233876477819, 29.404043137892689 ], [ -94.937231877196751, 29.404723138090095 ], [ -94.937229877045525, 29.405429138421876 ], [ -94.937226876548294, 29.406527138652919 ], [ -94.937225876861433, 29.406938139078438 ], [ -94.937228876505117, 29.408056139132288 ], [ -94.937231877102064, 29.408746139277245 ], [ -94.937233877186145, 29.40945913964747 ], [ -94.937235876491741, 29.41019813922037 ], [ -94.937239876965236, 29.411376139858618 ], [ -94.937239877209578, 29.412157140225535 ], [ -94.937239877365968, 29.412924140025947 ], [ -94.937239877530288, 29.41315114029344 ], [ -94.937239876898261, 29.413883140152631 ], [ -94.937239876694832, 29.414809140154929 ], [ -94.937240876872039, 29.417253140736349 ], [ -94.937254877436118, 29.420719141800536 ], [ -94.937189877668146, 29.421482141300405 ], [ -94.937284877480593, 29.42149914141617 ], [ -94.937453877331322, 29.421381141281657 ], [ -94.937748877931512, 29.421237141441349 ], [ -94.937830877585355, 29.421211141276583 ], [ -94.93791487777051, 29.42107214120723 ], [ -94.938465877218789, 29.420911141428157 ], [ -94.939104877660384, 29.420924141568477 ], [ -94.939400878298684, 29.420902141251542 ], [ -94.939616877695912, 29.420831141552107 ], [ -94.939633878388889, 29.420649141020633 ], [ -94.939611877998459, 29.420555141253441 ], [ -94.939446877539339, 29.420598141643566 ], [ -94.93945987784285, 29.420771141227025 ], [ -94.938202878037302, 29.420826141481307 ], [ -94.938003877719439, 29.420932141150431 ], [ -94.937923877114045, 29.420902141800113 ], [ -94.937872877712408, 29.420822141143692 ], [ -94.937986877453071, 29.420716141705327 ], [ -94.938075877952812, 29.420636141166316 ], [ -94.938151878029302, 29.420534141807366 ], [ -94.938202877717458, 29.420289141222067 ], [ -94.938240877742487, 29.420217141311433 ], [ -94.938274877494564, 29.420056141723371 ], [ -94.938257877647473, 29.419828141672806 ], [ -94.938236877388889, 29.419760141514391 ], [ -94.938269877240955, 29.41960014165095 ], [ -94.938269877784066, 29.419249141204329 ], [ -94.938425877339839, 29.419087141525736 ], [ -94.938550877393169, 29.41868214116257 ], [ -94.938612877554803, 29.41800714138083 ], [ -94.938550877599326, 29.41760314126407 ], [ -94.938332877793741, 29.417495141275317 ], [ -94.937895877907124, 29.417144140480939 ], [ -94.937553877804433, 29.41679314031391 ], [ -94.937584877050682, 29.416145140531402 ], [ -94.937709877674763, 29.416064140967208 ], [ -94.937771877023494, 29.415903140970954 ], [ -94.939079877749236, 29.41579514046833 ], [ -94.939578877961551, 29.415525140104677 ], [ -94.940388877957844, 29.415120140307746 ], [ -94.94060687766202, 29.41499414005791 ], [ -94.941136877856962, 29.414688140205403 ], [ -94.941915878495479, 29.414607139706728 ], [ -94.943784878965488, 29.414526140080937 ], [ -94.944468878678251, 29.414552140318914 ], [ -94.944688879373601, 29.414526140246924 ], [ -94.944709878585073, 29.414490139664437 ], [ -94.946210878980921, 29.414215139796735 ], [ -94.946470879763979, 29.414167140004974 ], [ -94.946857880103579, 29.414891139807569 ], [ -94.946170880012517, 29.418512140491242 ], [ -94.94532887971657, 29.419450141215631 ], [ -94.944870879421515, 29.419960140971682 ], [ -94.943569879000805, 29.419960141238207 ], [ -94.944070878914317, 29.420684140886859 ], [ -94.945770879673447, 29.420684141549017 ], [ -94.947922879887145, 29.421409141064348 ], [ -94.948890880091696, 29.421167140935705 ], [ -94.95082688141845, 29.421529141421981 ], [ -94.952569881748289, 29.420081141014482 ], [ -94.953440881092732, 29.420322141160018 ], [ -94.954508882302079, 29.421167141055296 ], [ -94.95560888175028, 29.423340141078086 ], [ -94.955409881823812, 29.424420142090195 ], [ -94.955338882746119, 29.424805141529799 ], [ -94.955208881988597, 29.425513141741554 ], [ -94.954699882232163, 29.425820142216537 ], [ -94.954408882545479, 29.425995142209626 ], [ -94.954221882110033, 29.426076142294402 ], [ -94.954190881691474, 29.426346142033157 ], [ -94.953754881865564, 29.426967142364024 ], [ -94.953380881669318, 29.427210142574115 ], [ -94.952664882051778, 29.427588142363511 ], [ -94.952383881706993, 29.427857142582479 ], [ -94.952165881618441, 29.428127142746984 ], [ -94.951573880996108, 29.428505142407648 ], [ -94.951199881046051, 29.428640142507227 ], [ -94.950888881627421, 29.428640143168767 ], [ -94.950701881188849, 29.428829142737118 ], [ -94.950483880857561, 29.428829142837078 ], [ -94.950296880647841, 29.429261142573999 ], [ -94.950545881487415, 29.429234142567434 ], [ -94.950607881368882, 29.429126143197713 ], [ -94.950857881594231, 29.429315142513754 ], [ -94.950701881093295, 29.429396142500735 ], [ -94.950514881330264, 29.429396142837607 ], [ -94.950327880844952, 29.429585142821175 ], [ -94.94982888074226, 29.429800143056738 ], [ -94.949610880537449, 29.429693143329771 ], [ -94.949330880778561, 29.429558143426657 ], [ -94.949112881313155, 29.429854143450633 ], [ -94.948894881101623, 29.429827143349211 ], [ -94.948831880986361, 29.429639142931684 ], [ -94.948551880390241, 29.429693143165341 ], [ -94.948644880814513, 29.429935142776696 ], [ -94.948738880435954, 29.430043143039111 ], [ -94.948676880773391, 29.430313143023792 ], [ -94.948364880431868, 29.430745143594812 ], [ -94.948458880724175, 29.431150143761943 ], [ -94.948458880600512, 29.431986143510873 ], [ -94.948551880753712, 29.432337143978817 ], [ -94.948551880873211, 29.432526143912575 ], [ -94.948613880832411, 29.432688143751569 ], [ -94.948925880624031, 29.432958143257416 ], [ -94.949330881129725, 29.433282144016065 ], [ -94.949174881305737, 29.433390143673073 ], [ -94.94898788138687, 29.433390143894741 ], [ -94.947962880569435, 29.432162143256765 ], [ -94.94788088043812, 29.432001143259086 ], [ -94.947844880243665, 29.431786143323652 ], [ -94.9477878802536, 29.431776143725781 ], [ -94.947738880756191, 29.431801143569778 ], [ -94.947699880451381, 29.43182814325354 ], [ -94.94764488104596, 29.431849143786952 ], [ -94.947592880210578, 29.431907143463043 ], [ -94.947529880091764, 29.432225143775021 ], [ -94.94758588095992, 29.432202143181669 ], [ -94.947984881064045, 29.432383143882227 ], [ -94.948839880874957, 29.433481143363686 ], [ -94.948606880833708, 29.433514144077535 ], [ -94.948393880812532, 29.433576143714152 ], [ -94.948208880582001, 29.433596143677693 ], [ -94.947871880614798, 29.433672143709792 ], [ -94.947274880930408, 29.433632144048751 ], [ -94.947024880070416, 29.4334171436556 ], [ -94.946900879963437, 29.433201143920975 ], [ -94.946647880118775, 29.433126143899496 ], [ -94.946588880037794, 29.432796143921372 ], [ -94.946495880389975, 29.432634143786913 ], [ -94.946650879959947, 29.43236414337154 ], [ -94.94658887981484, 29.432094143638668 ], [ -94.946277879804512, 29.432013143509689 ], [ -94.946432880408423, 29.431609143526494 ], [ -94.946183879732004, 29.431501143096774 ], [ -94.946308880615419, 29.431366143580181 ], [ -94.946183879894519, 29.431231143605252 ], [ -94.946308880316735, 29.430826143669272 ], [ -94.946308880252147, 29.430664143054592 ], [ -94.946530880117535, 29.430553142897093 ], [ -94.94655488003815, 29.430470143581161 ], [ -94.946582879989833, 29.430366143677357 ], [ -94.946575880134887, 29.430307143534986 ], [ -94.946699879789392, 29.430266143418237 ], [ -94.946724880417136, 29.430224143625978 ], [ -94.946942880435145, 29.430013143584102 ], [ -94.947031880760477, 29.429823142993438 ], [ -94.947083880639894, 29.429688142796348 ], [ -94.947322880105148, 29.429529143091383 ], [ -94.947651880452682, 29.429384143383039 ], [ -94.947613880319167, 29.429325143347576 ], [ -94.947474880477003, 29.429366143200042 ], [ -94.947381879938888, 29.429339142803123 ], [ -94.947191879818604, 29.429377142864809 ], [ -94.947132879985517, 29.429308142893653 ], [ -94.947125880221606, 29.429391142727248 ], [ -94.946869880413786, 29.429450142805468 ], [ -94.946758880347346, 29.42993414345792 ], [ -94.946699879882573, 29.430055142848236 ], [ -94.946533880388628, 29.430155142787253 ], [ -94.94649288029882, 29.430200142778876 ], [ -94.946027879735041, 29.430394143514381 ], [ -94.945653879733598, 29.430475143001253 ], [ -94.945311879587166, 29.430556143402125 ], [ -94.94481288005484, 29.430664142994132 ], [ -94.94446988008913, 29.430691143484857 ], [ -94.944283880062883, 29.430907143604976 ], [ -94.943940879581532, 29.431096143468373 ], [ -94.943815879894004, 29.431015143847279 ], [ -94.943254879897225, 29.43101514339256 ], [ -94.943099879441647, 29.43142014314844 ], [ -94.942787879500855, 29.431743143828896 ], [ -94.942569879675304, 29.431743143858434 ], [ -94.942257878967112, 29.431689143989569 ], [ -94.941946878771589, 29.431689143954983 ], [ -94.941728878767165, 29.431905143372013 ], [ -94.941691879032007, 29.432082143664772 ], [ -94.941665879357544, 29.432202144065723 ], [ -94.941011879299182, 29.43271514416692 ], [ -94.940419879030898, 29.43282314412637 ], [ -94.940165878592836, 29.433043144216843 ], [ -94.940139879109992, 29.433066143753102 ], [ -94.939952878252498, 29.43306614392181 ], [ -94.939640878649939, 29.433525143800619 ], [ -94.939266878037188, 29.433686143983834 ], [ -94.938986877925174, 29.433713144050891 ], [ -94.938363878310213, 29.434145144055538 ], [ -94.937522878360241, 29.434820144554589 ], [ -94.937477877951608, 29.434885144624801 ], [ -94.937505878335443, 29.434958144460246 ], [ -94.937429878421398, 29.435141144898616 ], [ -94.937428878191156, 29.435387144875016 ], [ -94.936393878036384, 29.43568214443837 ], [ -94.933996877620487, 29.438937144992789 ], [ -94.934702877773077, 29.442023146455362 ], [ -94.935964878087333, 29.442876145911779 ], [ -94.936433877829245, 29.443960145976096 ], [ -94.93557287846005, 29.445891146455317 ], [ -94.935052877458403, 29.447337147520244 ], [ -94.932805877897223, 29.449681147626723 ], [ -94.93094487733191, 29.448792147788467 ], [ -94.922754874338665, 29.446120147676691 ], [ -94.92186087493431, 29.445862147633516 ], [ -94.921098874386601, 29.445862147053827 ], [ -94.920175873948736, 29.445621146987573 ], [ -94.91915387403229, 29.445210147556445 ], [ -94.918208873173967, 29.445577147596957 ], [ -94.918018873421062, 29.445614147591741 ], [ -94.918142873844161, 29.445857147618167 ], [ -94.918173873416478, 29.446046147284854 ], [ -94.918609874077177, 29.446720147737757 ], [ -94.918828874165925, 29.446829147604859 ], [ -94.919146873363673, 29.447033147635565 ], [ -94.923787875383283, 29.449384147644693 ], [ -94.923921875341577, 29.44980114784855 ], [ -94.924014875762381, 29.449915147809541 ], [ -94.924263874904582, 29.45016414788919 ], [ -94.924408875461253, 29.450465147941905 ], [ -94.924543875572084, 29.450672148127342 ], [ -94.924761875332365, 29.450931148288607 ], [ -94.92487587521012, 29.451066148314798 ], [ -94.925041875967963, 29.451512148579084 ], [ -94.925165875726321, 29.451792148673807 ], [ -94.925393875295129, 29.452051148433394 ], [ -94.925621875377473, 29.452238148644042 ], [ -94.925766875747541, 29.452434148810145 ], [ -94.925870875691544, 29.45249714888002 ], [ -94.925984876026078, 29.452528148311327 ], [ -94.926098876064302, 29.452476148266289 ], [ -94.92617187576964, 29.452393148036229 ], [ -94.926305876038256, 29.452352148644636 ], [ -94.926637875906124, 29.45240314810507 ], [ -94.926782876070746, 29.452466148239235 ], [ -94.927301876627155, 29.45248614871489 ], [ -94.927404876010939, 29.452414148219418 ], [ -94.92757087625597, 29.45221714850371 ], [ -94.927715876053682, 29.452113148590524 ], [ -94.927881875932044, 29.452061147919533 ], [ -94.92812087626956, 29.452092148089044 ], [ -94.928400875984622, 29.452238148673629 ], [ -94.928462876974294, 29.452341148062004 ], [ -94.928659876493512, 29.452517148373623 ], [ -94.928742876161749, 29.452652148832712 ], [ -94.928835876414681, 29.45279714877233 ], [ -94.929260876495249, 29.452849148808451 ], [ -94.929488876482353, 29.452922148237285 ], [ -94.929841876644304, 29.453139148845125 ], [ -94.930110876451579, 29.45326414891084 ], [ -94.930370877152583, 29.453316148432346 ], [ -94.930556876591965, 29.453336148773364 ], [ -94.931095877123568, 29.453751148681576 ], [ -94.931272877728247, 29.453533148196477 ], [ -94.931406877250197, 29.453388148865532 ], [ -94.931562876955638, 29.453305148697783 ], [ -94.931734877572964, 29.453280148575246 ], [ -94.93331987805314, 29.455095148365999 ], [ -94.940697879816497, 29.459429149821815 ], [ -94.944812880680018, 29.461563149507871 ], [ -94.944843880962097, 29.461779150099996 ], [ -94.945061881439699, 29.461887149985905 ], [ -94.945311881355096, 29.461995150230383 ], [ -94.94549888176617, 29.462049149576497 ], [ -94.945778881791014, 29.46223815015513 ], [ -94.946090881189917, 29.462292150311562 ], [ -94.946277881468319, 29.462508150006212 ], [ -94.946588881443063, 29.462643150059765 ], [ -94.946900881891182, 29.463047150156875 ], [ -94.947398881979339, 29.463749150540693 ], [ -94.947616881726134, 29.464154150289616 ], [ -94.948613881829104, 29.464829150067633 ], [ -94.949018882377786, 29.465206150660343 ], [ -94.949361881927132, 29.465422150578668 ], [ -94.949579882781165, 29.465962150403215 ], [ -94.949860882218246, 29.46604315047934 ], [ -94.950015882301827, 29.466286150330202 ], [ -94.950420882745092, 29.466583150517483 ], [ -94.951386883498543, 29.467176150772804 ], [ -94.951542882639046, 29.467203150401701 ], [ -94.951822883599732, 29.467257150958506 ], [ -94.952477883846797, 29.469738151140739 ], [ -94.952936883513701, 29.469355150898178 ], [ -94.953740883659151, 29.468781151323515 ], [ -94.95403988384642, 29.468575151080831 ], [ -94.955226884249115, 29.468373151150775 ], [ -94.956482884029001, 29.468171150937806 ], [ -94.957312884454666, 29.467745150731425 ], [ -94.957916884446192, 29.467384150611604 ], [ -94.958365885168419, 29.467117150057284 ], [ -94.959546885165835, 29.466847150767851 ], [ -94.95965988471194, 29.466758149896169 ], [ -94.962295885401886, 29.465208150085655 ], [ -94.964836886467467, 29.464331149312184 ], [ -94.966908886974508, 29.464147149514673 ], [ -94.968314887521714, 29.463721149783591 ], [ -94.970461888247456, 29.46256114928736 ], [ -94.970773887617028, 29.46233814902606 ], [ -94.972479888591764, 29.461117148449834 ], [ -94.97251988812782, 29.461050148294792 ], [ -94.97289688799296, 29.460898148748907 ], [ -94.973553888886542, 29.460633148498484 ], [ -94.973855888914898, 29.460507148771697 ], [ -94.975107888510578, 29.459178148499412 ], [ -94.976295889407282, 29.454930147274574 ], [ -94.976284889058931, 29.453863147025416 ], [ -94.976280888712935, 29.453010146827324 ], [ -94.97722388910708, 29.452417147203999 ], [ -94.979312889356322, 29.451889146953782 ], [ -94.982332890752616, 29.450228145788799 ], [ -94.985704891579275, 29.449171145572237 ], [ -94.987742891938979, 29.44974914569811 ], [ -94.988644891887105, 29.452144146165168 ], [ -94.989501892646459, 29.452765146714722 ], [ -94.990866892220481, 29.453193146223857 ], [ -94.992400892709028, 29.453101146183066 ], [ -94.992857893273808, 29.455690147227539 ], [ -94.995716894310036, 29.458580147703817 ], [ -94.996134894356189, 29.459116147396131 ], [ -94.99764289493551, 29.460702147952453 ], [ -94.997933895085097, 29.461578148472864 ], [ -94.999305895630982, 29.462042148031163 ], [ -95.000549895740718, 29.461069147464308 ], [ -95.000551894864088, 29.460111147838898 ], [ -95.002130895435045, 29.45890714695399 ], [ -95.003564896255966, 29.459793147015628 ], [ -95.003668896320377, 29.46157314772665 ], [ -95.004154896047581, 29.462128147569441 ], [ -95.00831289776427, 29.461125147290364 ], [ -95.009684897777845, 29.461355147213595 ], [ -95.009762898103418, 29.461368147561529 ], [ -95.010056897503418, 29.461628147854757 ], [ -95.010150897657738, 29.461676147890255 ], [ -95.010306898223519, 29.462015147602738 ], [ -95.010309897589678, 29.462444148056818 ], [ -95.010330897561374, 29.46242314818236 ], [ -95.010447898023685, 29.462321147908721 ], [ -95.011120897842119, 29.463786147777185 ], [ -95.011358897845739, 29.464047147716748 ], [ -95.011672898637599, 29.464398148591595 ], [ -95.012042898325333, 29.464883148359416 ], [ -95.012396898905749, 29.465376148667858 ], [ -95.012851898467261, 29.465584148667102 ], [ -95.013313898755868, 29.465669148301586 ], [ -95.013514899286434, 29.465669148158092 ], [ -95.013691899184053, 29.465692148591646 ], [ -95.013915899084651, 29.465577148765568 ], [ -95.014177899214857, 29.46486814795297 ], [ -95.014523899384557, 29.464706148032754 ], [ -95.014547899401293, 29.464490147852207 ], [ -95.014654899003233, 29.464259147933586 ], [ -95.015048899271903, 29.463920148336857 ], [ -95.016111899419798, 29.463735148011828 ], [ -95.017079899518336, 29.463808148262732 ], [ -95.018188899797352, 29.463802147779333 ], [ -95.018996900627755, 29.463416147527575 ], [ -95.019893900494125, 29.46212914698237 ], [ -95.019875900032076, 29.461482147180785 ], [ -95.019843900405078, 29.461287147535753 ], [ -95.01959290079634, 29.460772147048981 ], [ -95.018661900132656, 29.460039146638373 ], [ -95.018316899811168, 29.45943414661032 ], [ -95.018138899320945, 29.458728147118912 ], [ -95.018440900228669, 29.458067146447167 ], [ -95.018959900400645, 29.456935145933546 ], [ -95.021296900171606, 29.456916146462692 ], [ -95.021501900762757, 29.456915146203364 ], [ -95.022588900765257, 29.456942146632297 ], [ -95.023899901477563, 29.456816146265808 ], [ -95.023950901071942, 29.456463145930257 ], [ -95.02413290135263, 29.45559514584853 ], [ -95.024094901689921, 29.455138146065128 ], [ -95.024018900682563, 29.454520145929973 ], [ -95.024018901217573, 29.454482145441283 ], [ -95.024017901060347, 29.452939145628399 ], [ -95.024024900965401, 29.450817145160602 ], [ -95.024028900753677, 29.449834144514341 ], [ -95.024029901250373, 29.449381144419899 ], [ -95.028854902002962, 29.449378144496894 ], [ -95.033105903400042, 29.449372144676261 ], [ -95.033176903771604, 29.449393144723441 ], [ -95.033219903742676, 29.449428144642425 ], [ -95.033219902906296, 29.449736143984861 ], [ -95.033216903552301, 29.450811144587636 ], [ -95.03321590306129, 29.451662144401197 ], [ -95.033210903301736, 29.453941145103073 ], [ -95.0334419032298, 29.453956145548442 ], [ -95.033856903828678, 29.453965145109038 ], [ -95.034361903560566, 29.453977144845755 ], [ -95.034465903943598, 29.453980144812746 ], [ -95.035127903694701, 29.453980145540235 ], [ -95.035659903793416, 29.4539681450857 ], [ -95.035773903987462, 29.45395514500472 ], [ -95.036208903885012, 29.453907144747792 ], [ -95.03639190435176, 29.453885144823644 ], [ -95.036707903973323, 29.453846144683698 ], [ -95.037143904943377, 29.453777145464471 ], [ -95.037483904369694, 29.453739145319862 ], [ -95.038457904668377, 29.45359814466341 ], [ -95.038592904443391, 29.453579144658583 ], [ -95.03887590450968, 29.453505144554828 ], [ -95.039044904656336, 29.453405145243607 ], [ -95.039084904582467, 29.453381144658934 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 445, "Tract": "48167721203", "Area_SqMi": 0.57621985324095337, "total_2009": 85, "total_2010": 95, "total_2011": 76, "total_2012": 252, "total_2013": 249, "total_2014": 285, "total_2015": 305, "total_2016": 258, "total_2017": 282, "total_2018": 259, "total_2019": 250, "total_2020": 297, "age1": 95, "age2": 95, "age3": 19, "earn1": 79, "earn2": 78, "earn3": 52, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 2, "naics_s08": 0, "naics_s09": 0, "naics_s10": 22, "naics_s11": 4, "naics_s12": 17, "naics_s13": 0, "naics_s14": 9, "naics_s15": 23, "naics_s16": 31, "naics_s17": 33, "naics_s18": 0, "naics_s19": 68, "naics_s20": 0, "race1": 163, "race2": 30, "race3": 1, "race4": 11, "race5": 1, "race6": 3, "ethnicity1": 146, "ethnicity2": 63, "edu1": 15, "edu2": 30, "edu3": 34, "edu4": 35, "Shape_Length": 23723.477741693627, "Shape_Area": 16064023.298222627, "total_2021": 264, "total_2022": 209 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.082622918242947, 29.50014915347144 ], [ -95.082797917843067, 29.500126152963713 ], [ -95.081489918322902, 29.498741152583921 ], [ -95.079471917059081, 29.496725152835232 ], [ -95.077604916462448, 29.494742152382099 ], [ -95.077475916899076, 29.494600152201524 ], [ -95.077362916332305, 29.494498152290014 ], [ -95.077209916377782, 29.494350152408277 ], [ -95.07689391621247, 29.494435152133853 ], [ -95.076386916470369, 29.494570151933853 ], [ -95.076077915760905, 29.494626152497897 ], [ -95.075714916586833, 29.494656152276985 ], [ -95.075020916504741, 29.494656152617164 ], [ -95.073871916131125, 29.494584152612148 ], [ -95.072751915392701, 29.494514152334101 ], [ -95.070909914972844, 29.494402152522468 ], [ -95.070684915275379, 29.494392152186389 ], [ -95.070082914928491, 29.494368152473417 ], [ -95.069187914546106, 29.494311152457829 ], [ -95.068678914798156, 29.494300152262444 ], [ -95.068043913769088, 29.494255151998114 ], [ -95.067511914458947, 29.494266152541599 ], [ -95.066877913994773, 29.494311152791436 ], [ -95.066322913587172, 29.49437915241252 ], [ -95.065438913078893, 29.494561152275441 ], [ -95.064974913040743, 29.494685152293066 ], [ -95.063965913376379, 29.494946152761646 ], [ -95.063484912619302, 29.495062152810057 ], [ -95.063136913380433, 29.495146152496911 ], [ -95.062831913247848, 29.495220153026679 ], [ -95.062665913001723, 29.495260152956767 ], [ -95.061613913078062, 29.495564153207528 ], [ -95.061133912622708, 29.495730152584613 ], [ -95.06058991196582, 29.495970153065063 ], [ -95.059675912374317, 29.496395153555923 ], [ -95.059266911888102, 29.496587153295842 ], [ -95.058402911588175, 29.49699515296901 ], [ -95.057608911594215, 29.497364153829729 ], [ -95.05687991195353, 29.497696153707277 ], [ -95.056843911050876, 29.497710153781632 ], [ -95.05666791192121, 29.497779153631782 ], [ -95.056547911674613, 29.497825153836985 ], [ -95.055299911078919, 29.498291153433382 ], [ -95.054820910834607, 29.498448153903393 ], [ -95.054438910672005, 29.498529154143242 ], [ -95.053800910361701, 29.498688153503281 ], [ -95.052983910497545, 29.498835153533246 ], [ -95.052092910696686, 29.498984154257347 ], [ -95.051512909928974, 29.499100154004861 ], [ -95.051435909987589, 29.499115154045651 ], [ -95.050756910209728, 29.499251153889183 ], [ -95.050004909943581, 29.499459154304166 ], [ -95.049712909387168, 29.499535153738762 ], [ -95.049397909519925, 29.499640154105823 ], [ -95.049239910091615, 29.499700154636862 ], [ -95.048062909502207, 29.500210153941943 ], [ -95.0477499092828, 29.500379154331856 ], [ -95.048152909326419, 29.500375154792007 ], [ -95.052263910323603, 29.50048915443983 ], [ -95.054469910854976, 29.500508154602368 ], [ -95.054720910724029, 29.500510154350838 ], [ -95.054920911476501, 29.500512153994173 ], [ -95.057658912194924, 29.500536154067746 ], [ -95.058041912144859, 29.500540153748467 ], [ -95.060963912596961, 29.500490153669269 ], [ -95.061885913364037, 29.5004741538438 ], [ -95.064922913476877, 29.500423153397659 ], [ -95.066468914097655, 29.500423153613561 ], [ -95.068370914420939, 29.50039115395596 ], [ -95.068543914196582, 29.500388153481065 ], [ -95.069784915085862, 29.500369153842176 ], [ -95.07104691517732, 29.500360153677732 ], [ -95.072778915548597, 29.500325153507045 ], [ -95.073005915266179, 29.500324153938642 ], [ -95.07428991639091, 29.500317153672771 ], [ -95.074441916006819, 29.500305153438894 ], [ -95.076250916381369, 29.500278153460822 ], [ -95.076988916489967, 29.500268153207642 ], [ -95.082349917903457, 29.500185152914977 ], [ -95.082622918242947, 29.50014915347144 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 446, "Tract": "48167721102", "Area_SqMi": 1.3711698851779204, "total_2009": 313, "total_2010": 105, "total_2011": 482, "total_2012": 136, "total_2013": 143, "total_2014": 187, "total_2015": 89, "total_2016": 93, "total_2017": 84, "total_2018": 75, "total_2019": 64, "total_2020": 238, "age1": 40, "age2": 177, "age3": 94, "earn1": 101, "earn2": 120, "earn3": 90, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 0, "naics_s07": 39, "naics_s08": 10, "naics_s09": 0, "naics_s10": 0, "naics_s11": 33, "naics_s12": 0, "naics_s13": 0, "naics_s14": 3, "naics_s15": 155, "naics_s16": 3, "naics_s17": 0, "naics_s18": 38, "naics_s19": 26, "naics_s20": 0, "race1": 236, "race2": 43, "race3": 3, "race4": 27, "race5": 0, "race6": 2, "ethnicity1": 225, "ethnicity2": 86, "edu1": 44, "edu2": 69, "edu3": 88, "edu4": 70, "Shape_Length": 25554.289436891868, "Shape_Area": 38225869.618047863, "total_2021": 279, "total_2022": 311 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.047043908389796, 29.481638150655996 ], [ -95.047031908015697, 29.481087150061491 ], [ -95.047018908044194, 29.480485150036543 ], [ -95.047018907916865, 29.480472150510163 ], [ -95.046966908320258, 29.478005149357191 ], [ -95.046949908366273, 29.477186149956527 ], [ -95.046916907709004, 29.4755291491037 ], [ -95.046911908180874, 29.475275149557891 ], [ -95.046901908021184, 29.474752149329916 ], [ -95.046893907886258, 29.474380148765153 ], [ -95.046887907418608, 29.474054148553865 ], [ -95.046875907415739, 29.47346414847344 ], [ -95.046866907971093, 29.473054148816953 ], [ -95.046856907495155, 29.472504148940683 ], [ -95.046855908063947, 29.472444148490659 ], [ -95.046853907932288, 29.472320149010748 ], [ -95.046852907922656, 29.472270148954465 ], [ -95.046840907401062, 29.471660148715287 ], [ -95.046823907759233, 29.470814147934856 ], [ -95.046811907713646, 29.470230148430602 ], [ -95.046804907309181, 29.469844148346883 ], [ -95.046786907354189, 29.468961147605725 ], [ -95.046782908030465, 29.468760147850166 ], [ -95.046768907106809, 29.468167147465262 ], [ -95.046763907462264, 29.467996147327824 ], [ -95.046742907060874, 29.467126147299854 ], [ -95.046732907043406, 29.466718147012564 ], [ -95.046727907998687, 29.466524147760175 ], [ -95.046685907258166, 29.46634714765916 ], [ -95.046600907385937, 29.466188147356728 ], [ -95.046559907497766, 29.466112147076846 ], [ -95.046340907011952, 29.465767147421282 ], [ -95.046322906937547, 29.465653146830917 ], [ -95.04630090759936, 29.464586146932824 ], [ -95.046271907173335, 29.463827146438831 ], [ -95.046250906874093, 29.463623147000764 ], [ -95.046203907516954, 29.463453147103873 ], [ -95.046032907113158, 29.463475146797592 ], [ -95.044315906268224, 29.463521147068693 ], [ -95.044091906633653, 29.463524147071293 ], [ -95.043169906275836, 29.46354214696925 ], [ -95.041960905843197, 29.463565147141676 ], [ -95.040769905666849, 29.463588147145163 ], [ -95.039620905535841, 29.463610147226703 ], [ -95.038827904910576, 29.463628146948107 ], [ -95.037483905201015, 29.463659147151024 ], [ -95.037341905357607, 29.463660147026125 ], [ -95.036777905043081, 29.463774146823912 ], [ -95.035996905033016, 29.463934147126469 ], [ -95.034639904814171, 29.464324147631906 ], [ -95.034319904508379, 29.464385147566979 ], [ -95.033970904594028, 29.464476147586364 ], [ -95.033207903964623, 29.464677147484032 ], [ -95.032731903785603, 29.464803147209423 ], [ -95.032148903324668, 29.464956147410717 ], [ -95.031303903210059, 29.465179147503573 ], [ -95.029262902886998, 29.465727147933443 ], [ -95.029284903276803, 29.466865148502521 ], [ -95.029293902798273, 29.467322147931856 ], [ -95.029308903587847, 29.468127148375753 ], [ -95.029320903074122, 29.468736148850304 ], [ -95.029326903004943, 29.468988148176546 ], [ -95.02933890291132, 29.469442148958485 ], [ -95.029344902689914, 29.469849148735012 ], [ -95.029357903396416, 29.470690148597878 ], [ -95.029363903148123, 29.471094149124394 ], [ -95.029372903315746, 29.471514149073851 ], [ -95.029426903408364, 29.474020149856557 ], [ -95.029446903267342, 29.475178149532482 ], [ -95.029450903115432, 29.475435150249773 ], [ -95.029456903632379, 29.475813150303033 ], [ -95.02947190357331, 29.476662149693162 ], [ -95.029239903191893, 29.476879149706587 ], [ -95.029142903927067, 29.476945150576949 ], [ -95.028919903760482, 29.47709615020154 ], [ -95.028689903522448, 29.477237150397283 ], [ -95.028519902909395, 29.477350149923602 ], [ -95.028128902883438, 29.477608150104338 ], [ -95.027706902629774, 29.477888149942174 ], [ -95.027208902855307, 29.478207150869327 ], [ -95.027004903455889, 29.4783601505872 ], [ -95.026940903032198, 29.478450150197467 ], [ -95.02677490255941, 29.478692150315716 ], [ -95.026697902791753, 29.478948150764626 ], [ -95.026707903116076, 29.479397150665342 ], [ -95.026709902954636, 29.47948515042491 ], [ -95.026718903238432, 29.479905151080811 ], [ -95.026739903400369, 29.480863151511905 ], [ -95.026744902866326, 29.481095151471241 ], [ -95.026785903535682, 29.482881151284467 ], [ -95.028996903272869, 29.482867150945999 ], [ -95.032060904815353, 29.482803151120081 ], [ -95.033057904931766, 29.48278815092327 ], [ -95.034107905212835, 29.482771151238428 ], [ -95.037510905556275, 29.482718150846704 ], [ -95.037621905875397, 29.482718150991975 ], [ -95.037688905667878, 29.482640150765718 ], [ -95.037703905450741, 29.482522150599522 ], [ -95.03770290549123, 29.482428151126097 ], [ -95.037702906347477, 29.482408151214443 ], [ -95.03770190573168, 29.482378150977063 ], [ -95.037693906026277, 29.481800150891534 ], [ -95.040748906476153, 29.481751151194036 ], [ -95.042358907387182, 29.481725151157807 ], [ -95.044722908073524, 29.481681150914131 ], [ -95.047043908389796, 29.481638150655996 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 447, "Tract": "48167726101", "Area_SqMi": 17.543604139049044, "total_2009": 296, "total_2010": 185, "total_2011": 184, "total_2012": 266, "total_2013": 255, "total_2014": 243, "total_2015": 233, "total_2016": 263, "total_2017": 247, "total_2018": 386, "total_2019": 276, "total_2020": 444, "age1": 113, "age2": 223, "age3": 119, "earn1": 64, "earn2": 117, "earn3": 274, "naics_s01": 0, "naics_s02": 21, "naics_s03": 0, "naics_s04": 11, "naics_s05": 7, "naics_s06": 6, "naics_s07": 27, "naics_s08": 116, "naics_s09": 31, "naics_s10": 11, "naics_s11": 63, "naics_s12": 13, "naics_s13": 0, "naics_s14": 39, "naics_s15": 5, "naics_s16": 1, "naics_s17": 76, "naics_s18": 9, "naics_s19": 0, "naics_s20": 19, "race1": 396, "race2": 35, "race3": 5, "race4": 12, "race5": 0, "race6": 7, "ethnicity1": 361, "ethnicity2": 94, "edu1": 61, "edu2": 104, "edu3": 99, "edu4": 78, "Shape_Length": 104069.12415443751, "Shape_Area": 489085657.2181173, "total_2021": 451, "total_2022": 455 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.021351891523963, 29.23417610001102 ], [ -95.021387891018918, 29.234170099888697 ], [ -95.016708889389704, 29.228704099017001 ], [ -95.012414888035764, 29.22368709787435 ], [ -95.008759887672895, 29.219436097326117 ], [ -95.004458886073621, 29.214449096506208 ], [ -95.003646885789664, 29.213507096799205 ], [ -95.002928885316408, 29.212675096448933 ], [ -95.002918885652861, 29.212663096394525 ], [ -95.000271884148276, 29.209592095696738 ], [ -94.99877388442988, 29.207803095753395 ], [ -94.998368883565647, 29.207367095354247 ], [ -94.998334884568962, 29.20733109490358 ], [ -94.992322882746905, 29.200876094308072 ], [ -94.991672882267622, 29.200253094329899 ], [ -94.991629882525572, 29.200197093728459 ], [ -94.991291882320127, 29.199759093731981 ], [ -94.990700881621123, 29.199004093999235 ], [ -94.990560881314082, 29.198826094015832 ], [ -94.990454882168308, 29.198686093733826 ], [ -94.989979881653923, 29.198059093774081 ], [ -94.989380881311092, 29.197313093801842 ], [ -94.989263881347782, 29.197167093148696 ], [ -94.98857688141905, 29.196312092973745 ], [ -94.988255881355386, 29.195912092901352 ], [ -94.987921880885821, 29.195496092711462 ], [ -94.986967880612212, 29.19430809288901 ], [ -94.985187879943325, 29.192067092801647 ], [ -94.983264879505072, 29.189630092164197 ], [ -94.982840879112544, 29.189121092295117 ], [ -94.982404879687593, 29.188613091495299 ], [ -94.981993879523003, 29.188104091531269 ], [ -94.981605878711534, 29.187572091820854 ], [ -94.98117387906737, 29.187033091761784 ], [ -94.980522878929605, 29.186220091317622 ], [ -94.980016878097501, 29.185594091587276 ], [ -94.979543878329636, 29.185009091601628 ], [ -94.979049878186359, 29.184398090793383 ], [ -94.978568878222177, 29.183787091237548 ], [ -94.978092878254785, 29.183183090727397 ], [ -94.977598877231287, 29.182568090497391 ], [ -94.97712587726808, 29.181955090256423 ], [ -94.976465876930575, 29.181156090912182 ], [ -94.976234876966146, 29.180905090666997 ], [ -94.976350877375623, 29.180836090671228 ], [ -94.977629877962343, 29.180064090466306 ], [ -94.978319878013608, 29.17964709022802 ], [ -94.978994877683292, 29.179238090022324 ], [ -94.979165877468802, 29.179136090424866 ], [ -94.982398878572198, 29.177186089478909 ], [ -94.983612879159963, 29.176454089587157 ], [ -94.983400878604641, 29.176236089353363 ], [ -94.983168878426056, 29.175949089149196 ], [ -94.982807878951405, 29.175477088985279 ], [ -94.982513878328135, 29.175015088834108 ], [ -94.981811878903841, 29.174010088695034 ], [ -94.978862877359774, 29.175804089479723 ], [ -94.968760875340251, 29.181825091168825 ], [ -94.951787871631424, 29.191942093896309 ], [ -94.939811869147434, 29.199020095770585 ], [ -94.93486586764476, 29.202040096497146 ], [ -94.925552865152753, 29.207519097813933 ], [ -94.926053865101053, 29.208437097488389 ], [ -94.926412865939596, 29.208759097883394 ], [ -94.926853865916598, 29.209587098354483 ], [ -94.927222865535782, 29.210280097756456 ], [ -94.927736866495195, 29.211247098175221 ], [ -94.927820866247004, 29.211402098704848 ], [ -94.927962866099875, 29.211681098440899 ], [ -94.928082865972456, 29.211935098635973 ], [ -94.929447866789218, 29.214454099193464 ], [ -94.929668867062574, 29.214894099064903 ], [ -94.929869867240001, 29.215216099400621 ], [ -94.929783866833333, 29.215253098934749 ], [ -94.929431866188608, 29.215439098893832 ], [ -94.929325866479772, 29.21549509949137 ], [ -94.929146866862041, 29.215589099404561 ], [ -94.928498866841338, 29.21589009946657 ], [ -94.927936866453848, 29.216122099316653 ], [ -94.927102865959881, 29.216452099263901 ], [ -94.926488865939191, 29.216706099641897 ], [ -94.925938865510744, 29.216927099957221 ], [ -94.925527865857987, 29.217100099583948 ], [ -94.925249865637653, 29.217280100063391 ], [ -94.925023865903597, 29.217500099379766 ], [ -94.924878866029957, 29.217674099904464 ], [ -94.923965865849752, 29.219068100283334 ], [ -94.923921865259175, 29.219104100133862 ], [ -94.923825865206382, 29.219211099813819 ], [ -94.923888865511898, 29.219233100466631 ], [ -94.92396586513668, 29.219317100030338 ], [ -94.924063865076931, 29.219471099911569 ], [ -94.926006865824235, 29.223155100452804 ], [ -94.926046866294342, 29.223230100817521 ], [ -94.926610866125031, 29.224301100934824 ], [ -94.926665866690911, 29.224348100928534 ], [ -94.926731866045401, 29.22436310149596 ], [ -94.926819866209442, 29.224356101451317 ], [ -94.926907866441255, 29.224337101238469 ], [ -94.926962866058247, 29.224323101031001 ], [ -94.932705867822179, 29.221960100635425 ], [ -94.932769868324968, 29.221970100319552 ], [ -94.933292868125648, 29.221791100729106 ], [ -94.933714867645662, 29.22167210028449 ], [ -94.934105868394823, 29.221526100365917 ], [ -94.934225867997824, 29.221482100559854 ], [ -94.935142868023775, 29.221399099861596 ], [ -94.935864868582868, 29.221519099966216 ], [ -94.936934868848113, 29.222163100604867 ], [ -94.937541868655373, 29.222926100518251 ], [ -94.937478868692963, 29.225356100789522 ], [ -94.937569869496485, 29.226517101567644 ], [ -94.937770869109485, 29.227039101300516 ], [ -94.937983869290889, 29.227427101020304 ], [ -94.938581869208406, 29.228013101194644 ], [ -94.939528870099451, 29.228314101946975 ], [ -94.940355870112839, 29.228484101443897 ], [ -94.940715869731207, 29.228420101346231 ], [ -94.941117870705426, 29.228484101874585 ], [ -94.941371870722705, 29.22850510121668 ], [ -94.942250870523083, 29.228869101131597 ], [ -94.943192871084264, 29.228961101782186 ], [ -94.945381871261702, 29.230934102155782 ], [ -94.946989872233729, 29.231185102023389 ], [ -94.947553871915957, 29.230600101661331 ], [ -94.949286872715064, 29.230328101326563 ], [ -94.950199872394549, 29.230170101601736 ], [ -94.950351872694711, 29.230310101674672 ], [ -94.951202872903892, 29.230703101402057 ], [ -94.951718872754171, 29.230873101914124 ], [ -94.952154873545197, 29.231439101683833 ], [ -94.95233087297872, 29.231944101835136 ], [ -94.952792873346041, 29.233269102246375 ], [ -94.955774874710713, 29.237027103228883 ], [ -94.96144187587069, 29.244101104345933 ], [ -94.961611875784214, 29.244314103947719 ], [ -94.961973875973015, 29.244765103764927 ], [ -94.963310876611871, 29.246435104446292 ], [ -94.963918877018727, 29.247267104451581 ], [ -94.964196876818875, 29.247613104453272 ], [ -94.967470877997329, 29.251682105889394 ], [ -94.97483388056871, 29.257207106125502 ], [ -94.984714882623393, 29.264747107852326 ], [ -94.987248883333095, 29.267284107983695 ], [ -94.989023884026111, 29.265616108025323 ], [ -94.989024883885619, 29.26559410756629 ], [ -94.989081884605184, 29.265383107268761 ], [ -94.989169884206291, 29.265237107813643 ], [ -94.989269884378984, 29.265132107668684 ], [ -94.989336884496609, 29.264958107284084 ], [ -94.989448884040968, 29.264896107059016 ], [ -94.989565884343037, 29.264798107800583 ], [ -94.989565884078502, 29.264731107908457 ], [ -94.989651884177434, 29.264647107482407 ], [ -94.989739884668296, 29.264547107209317 ], [ -94.989754884316369, 29.264471107425138 ], [ -94.989847884018275, 29.264442107107193 ], [ -94.989937883980318, 29.264514107238231 ], [ -94.990095883940512, 29.264478107271817 ], [ -94.990272884122888, 29.264351107515843 ], [ -94.990427884829145, 29.264106107446416 ], [ -94.99049188404949, 29.263941107123376 ], [ -94.990536884118953, 29.263946107050561 ], [ -94.990606884603167, 29.263908107404589 ], [ -94.990641884766376, 29.263848107173462 ], [ -94.99066588483403, 29.263769106928134 ], [ -94.990727884962638, 29.26374510734551 ], [ -94.990758884018547, 29.26370210758034 ], [ -94.990761884482708, 29.263638106933456 ], [ -94.990787884360373, 29.263583106874474 ], [ -94.990761884680239, 29.263519107209287 ], [ -94.990840884382806, 29.263509107415715 ], [ -94.990758884301158, 29.263454107217768 ], [ -94.990828884240628, 29.263280106982261 ], [ -94.990918884278031, 29.263196106897389 ], [ -94.991057884895966, 29.263163107127564 ], [ -94.991133884696353, 29.263141107421092 ], [ -94.99121488465974, 29.263182107466118 ], [ -94.991279884374691, 29.263141106812963 ], [ -94.991336884293602, 29.263082107369002 ], [ -94.991431884394558, 29.262936106656294 ], [ -94.991448884185985, 29.262908107472136 ], [ -94.991510884748578, 29.262798107140679 ], [ -94.991520884617898, 29.262662106697828 ], [ -94.991486884279865, 29.262547107289855 ], [ -94.991522885104601, 29.262478106590819 ], [ -94.991653885028228, 29.262435106736792 ], [ -94.991773884364576, 29.262318106791575 ], [ -94.991844884897247, 29.262194107295098 ], [ -94.991985884211985, 29.2620411070322 ], [ -94.992073884720014, 29.261885106733196 ], [ -94.992140885236665, 29.261822106416567 ], [ -94.992136884429698, 29.261657107028817 ], [ -94.992169884260548, 29.261557106762574 ], [ -94.992248885259656, 29.261509106920929 ], [ -94.992307884780047, 29.261499106380022 ], [ -94.992396884582647, 29.261392106700765 ], [ -94.992436884651667, 29.261232106402794 ], [ -94.992537884736635, 29.26119910680271 ], [ -94.992594885282031, 29.26121310709933 ], [ -94.992747884476131, 29.261120106575863 ], [ -94.992818885374462, 29.261034106812513 ], [ -94.99285488515001, 29.260891106979557 ], [ -94.992806884394412, 29.260898106812085 ], [ -94.992675885251117, 29.260831106793614 ], [ -94.99268488458263, 29.260783106231891 ], [ -94.992743884640149, 29.260744106775395 ], [ -94.992790884822668, 29.260745106872093 ], [ -94.992799884701299, 29.260714106148903 ], [ -94.992828884375442, 29.260697106710129 ], [ -94.99283288525352, 29.260662106865972 ], [ -94.992821884539964, 29.260597106627689 ], [ -94.992866884376468, 29.260577106694097 ], [ -94.992878884814118, 29.260554106052314 ], [ -94.992873885395596, 29.260509106539239 ], [ -94.992899885164945, 29.260504106128 ], [ -94.992937885357094, 29.260478106690854 ], [ -94.992980884804766, 29.26049210674417 ], [ -94.993007885144337, 29.260509106421438 ], [ -94.993028885358498, 29.260485106848694 ], [ -94.993014885329629, 29.260449106421074 ], [ -94.993066884758463, 29.260411106245005 ], [ -94.993083885443582, 29.260375106711756 ], [ -94.99306288504512, 29.260339106256762 ], [ -94.993174885133485, 29.26027010598774 ], [ -94.993293885498659, 29.26030610659711 ], [ -94.993295884695243, 29.260349106388272 ], [ -94.993381884560094, 29.260351106810909 ], [ -94.993489884856189, 29.260244105962283 ], [ -94.993496885469625, 29.260153106485792 ], [ -94.99353988535843, 29.2601061059895 ], [ -94.993637884855858, 29.260101106801816 ], [ -94.993758885135009, 29.259893105980844 ], [ -94.993878885334667, 29.259824106293795 ], [ -94.993954885525056, 29.259745106140123 ], [ -94.993957885262802, 29.259645105960491 ], [ -94.99402188477606, 29.259602106680685 ], [ -94.994128884944971, 29.259518106180561 ], [ -94.994207885186242, 29.259485106125076 ], [ -94.994279885339552, 29.259354105855017 ], [ -94.994081885305064, 29.259280105755277 ], [ -94.994043885535049, 29.259170106005932 ], [ -94.994052885005871, 29.259034106058774 ], [ -94.994279884738546, 29.258929105708788 ], [ -94.994353885374238, 29.258848105939364 ], [ -94.994508885321039, 29.258781106222322 ], [ -94.994682885814228, 29.258857105883408 ], [ -94.994763885309922, 29.258776105802486 ], [ -94.994971884877657, 29.258678105716982 ], [ -94.995188885214546, 29.258447105550545 ], [ -94.99519188544582, 29.258237106266112 ], [ -94.995224885212693, 29.25815310568478 ], [ -94.995250885371021, 29.258115105564265 ], [ -94.995379885266743, 29.258098105725075 ], [ -94.995410885699343, 29.25802010589803 ], [ -94.99546388543807, 29.258010106179089 ], [ -94.995520885283739, 29.257969106149343 ], [ -94.995539885099419, 29.257898105884649 ], [ -94.995572885988793, 29.257855105623889 ], [ -94.995680885726159, 29.257786105989648 ], [ -94.99571688571821, 29.257695106211699 ], [ -94.995830885625807, 29.257657105573173 ], [ -94.995916885504357, 29.257678105873321 ], [ -94.995990885177051, 29.257647106122331 ], [ -94.99609688603077, 29.257548105718957 ], [ -94.996293885928296, 29.257349106110873 ], [ -94.996396885906179, 29.257191106012275 ], [ -94.996427885367027, 29.257041105224719 ], [ -94.996487885369092, 29.257027105336988 ], [ -94.996692885842037, 29.256848105279786 ], [ -94.996756886062244, 29.256743105871557 ], [ -94.996725885400281, 29.256673105810819 ], [ -94.996747885743218, 29.256635105388888 ], [ -94.996811885375919, 29.256621105387293 ], [ -94.996859886086185, 29.256576105806694 ], [ -94.996816885286179, 29.256473105488176 ], [ -94.997033885311495, 29.25630110575295 ], [ -94.997169885703627, 29.256323105529674 ], [ -94.997305885390503, 29.256232105892291 ], [ -94.997680885875937, 29.255793105625248 ], [ -94.99782188580302, 29.255504105610346 ], [ -94.997809885570703, 29.255411105433907 ], [ -94.997919886334714, 29.255325105660749 ], [ -94.998212885636292, 29.25506210557884 ], [ -94.998351886351486, 29.254826104790027 ], [ -94.998293886472098, 29.254611105455481 ], [ -94.998355886429451, 29.25457610486465 ], [ -94.99842988618903, 29.254568104915865 ], [ -94.998460886304315, 29.254513105513045 ], [ -94.998489885684478, 29.254432105285094 ], [ -94.998587886557161, 29.254292105424692 ], [ -94.998682886230498, 29.254265104938852 ], [ -94.998737886603919, 29.254260105343278 ], [ -94.99878788626053, 29.254198104807454 ], [ -94.999012886111984, 29.254146104650509 ], [ -94.999183886391222, 29.253996104933023 ], [ -94.999322886685491, 29.253752104827583 ], [ -94.999367886378252, 29.253671105185266 ], [ -94.999339886134052, 29.253623105296569 ], [ -94.999389885753416, 29.253578105263095 ], [ -94.99936288606402, 29.253528104889138 ], [ -94.999365886533568, 29.253449105046634 ], [ -94.999339886243149, 29.253406104679865 ], [ -94.999362885967145, 29.253382104593832 ], [ -94.999346886486677, 29.253358105137842 ], [ -94.999362885798206, 29.253308104983731 ], [ -94.999604885987196, 29.253253104681654 ], [ -94.999570886334212, 29.253101104887083 ], [ -94.999656886262699, 29.252972104762307 ], [ -94.999627885985333, 29.252809104768012 ], [ -94.999689886419574, 29.252774104512646 ], [ -94.99983788596515, 29.252766104254665 ], [ -94.999892886738706, 29.252793104924653 ], [ -94.999903885991174, 29.252829104867438 ], [ -94.999960886735877, 29.25281210451115 ], [ -94.999984886178638, 29.252762105084042 ], [ -95.000209886688737, 29.252503104241026 ], [ -95.000318886501077, 29.252472104144797 ], [ -95.000379886015281, 29.252317104322696 ], [ -95.000581886347192, 29.25210010420265 ], [ -95.000658886432547, 29.25183710477663 ], [ -95.000642886034342, 29.251667104274034 ], [ -95.00073588635405, 29.251667104522348 ], [ -95.000906886886753, 29.251605104682255 ], [ -95.000983886172349, 29.251497104054554 ], [ -95.001122886849032, 29.251358103968872 ], [ -95.001370886315144, 29.251249104022428 ], [ -95.001493886937567, 29.251064104534962 ], [ -95.001757887139135, 29.250754104229571 ], [ -95.001911886375737, 29.250537104387895 ], [ -95.001989887103832, 29.250228104174219 ], [ -95.00217488668028, 29.250027104199262 ], [ -95.002422887079931, 29.249625104327524 ], [ -95.002546886836456, 29.249300104240199 ], [ -95.002546886414692, 29.24905210335989 ], [ -95.002700886569741, 29.24888210339671 ], [ -95.002824886575482, 29.248758104167536 ], [ -95.002932886790745, 29.248541103499118 ], [ -95.002979886860018, 29.248201103724252 ], [ -95.003041886530141, 29.24795410325471 ], [ -95.002979887092806, 29.247706103246937 ], [ -95.002871886701598, 29.24766010306648 ], [ -95.002700886889286, 29.247520103766163 ], [ -95.002809886794665, 29.247381103503162 ], [ -95.002855887133876, 29.247257103751021 ], [ -95.002979887418135, 29.247273103417459 ], [ -95.003180886884877, 29.247304103062795 ], [ -95.003381887095571, 29.247273103561838 ], [ -95.003567887404145, 29.247211103349265 ], [ -95.003675887309527, 29.247102103106645 ], [ -95.003799887280721, 29.246994103388136 ], [ -95.003954887021493, 29.246917103251342 ], [ -95.004201886730826, 29.246839103058903 ], [ -95.004371886976386, 29.246731103056675 ], [ -95.004542887418438, 29.246499103533338 ], [ -95.004588887323493, 29.246375103231554 ], [ -95.004696886994367, 29.246298102888463 ], [ -95.004867887077623, 29.246221102786883 ], [ -95.005099887079737, 29.246190103530679 ], [ -95.005300887319919, 29.246066102962523 ], [ -95.00548588784315, 29.246044102653777 ], [ -95.005663887612968, 29.24593110334639 ], [ -95.005874887747979, 29.245623103368569 ], [ -95.005987887768555, 29.245364103321133 ], [ -95.006133887762729, 29.245218103321029 ], [ -95.006327887516207, 29.245186102489146 ], [ -95.006457887404423, 29.245153103112894 ], [ -95.006538888231603, 29.245024102598219 ], [ -95.006667888080472, 29.244797102617518 ], [ -95.00673288748014, 29.244716103051566 ], [ -95.006732887352555, 29.244619102474712 ], [ -95.006975888202703, 29.244311102513144 ], [ -95.007251888229959, 29.244100102531139 ], [ -95.007348888397374, 29.244084102283143 ], [ -95.007396888069778, 29.244035102199746 ], [ -95.00754288794451, 29.243744102794377 ], [ -95.007704887514691, 29.243566102114485 ], [ -95.007801888089475, 29.243533102677858 ], [ -95.007996887727401, 29.243501102382965 ], [ -95.008109888499746, 29.243355102509057 ], [ -95.008223887874479, 29.243355102754595 ], [ -95.008417888391563, 29.243339102062659 ], [ -95.00877388862898, 29.243047102803676 ], [ -95.009097888773567, 29.242675102647578 ], [ -95.009195887935391, 29.242496102266788 ], [ -95.009178888091995, 29.242302102350084 ], [ -95.009211887806771, 29.242156102550766 ], [ -95.009292888326655, 29.24210810248886 ], [ -95.009324888680027, 29.242027102411296 ], [ -95.009648888030355, 29.241832102267985 ], [ -95.009843888909117, 29.241703101605871 ], [ -95.010037888360003, 29.2412491020768 ], [ -95.010280888591453, 29.2410711016243 ], [ -95.010329888652521, 29.240990101852521 ], [ -95.01044288862802, 29.24086010224773 ], [ -95.010636889129785, 29.240795101651813 ], [ -95.010879888852983, 29.240795101728757 ], [ -95.011138888925103, 29.240666101429479 ], [ -95.011835888714899, 29.240261101845178 ], [ -95.012240889512782, 29.240115101816574 ], [ -95.012564889046999, 29.240099101278055 ], [ -95.01275888926142, 29.240050101592342 ], [ -95.014547889882579, 29.239056101667881 ], [ -95.014669889279716, 29.238979101431529 ], [ -95.014910889767648, 29.238722101431154 ], [ -95.015006890075796, 29.238706101107699 ], [ -95.01505488963727, 29.23865710112571 ], [ -95.015135889737294, 29.238593100948396 ], [ -95.015183889250906, 29.238593101303117 ], [ -95.015247889844574, 29.238529101153684 ], [ -95.015231890216199, 29.238384100922431 ], [ -95.015327890228448, 29.238320101248966 ], [ -95.0156498893177, 29.23822410067233 ], [ -95.01577789020098, 29.238143101379855 ], [ -95.015825890149628, 29.237999101469352 ], [ -95.01590689032065, 29.237951101157378 ], [ -95.016018889524659, 29.23795110104076 ], [ -95.016179889807006, 29.23787010089692 ], [ -95.016259890316476, 29.237694100558418 ], [ -95.016436890281526, 29.237565100694628 ], [ -95.016645889785821, 29.237308101071861 ], [ -95.016683890182492, 29.23726910052039 ], [ -95.016837889937321, 29.237115100858244 ], [ -95.017030890526812, 29.237019100858724 ], [ -95.017287890622228, 29.236955100395807 ], [ -95.01748089003128, 29.236906101179226 ], [ -95.017673889980713, 29.236778100558606 ], [ -95.01776989073511, 29.236665100677069 ], [ -95.017882890239846, 29.236537100338868 ], [ -95.018010890036649, 29.236521100525824 ], [ -95.01818789029177, 29.236441100611707 ], [ -95.018396890850966, 29.236280100231419 ], [ -95.018620890575932, 29.236151100355752 ], [ -95.018797890176188, 29.236087100841811 ], [ -95.01903889040068, 29.236055101005046 ], [ -95.019504890324143, 29.236055100982064 ], [ -95.019665890694853, 29.236039100118834 ], [ -95.019777891295561, 29.235927100318683 ], [ -95.019986891254803, 29.23567010028631 ], [ -95.020147890817597, 29.235589100022548 ], [ -95.020307890809207, 29.235380100803031 ], [ -95.020307890834999, 29.235075100326583 ], [ -95.0203398903992, 29.23488210031028 ], [ -95.020371890818268, 29.234770100322581 ], [ -95.020548891159507, 29.234609100105757 ], [ -95.020693891306337, 29.234561100093323 ], [ -95.020918891320861, 29.234513100211775 ], [ -95.021110890686742, 29.234417099857932 ], [ -95.021207891003854, 29.234304100402099 ], [ -95.021351891523963, 29.23417610001102 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 448, "Tract": "48167723402", "Area_SqMi": 6.7008945189256508, "total_2009": 115, "total_2010": 134, "total_2011": 154, "total_2012": 123, "total_2013": 135, "total_2014": 143, "total_2015": 144, "total_2016": 74, "total_2017": 109, "total_2018": 200, "total_2019": 142, "total_2020": 103, "age1": 32, "age2": 61, "age3": 23, "earn1": 11, "earn2": 37, "earn3": 68, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 46, "naics_s05": 4, "naics_s06": 3, "naics_s07": 0, "naics_s08": 2, "naics_s09": 7, "naics_s10": 5, "naics_s11": 0, "naics_s12": 18, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 0, "naics_s17": 6, "naics_s18": 0, "naics_s19": 7, "naics_s20": 0, "race1": 104, "race2": 9, "race3": 0, "race4": 1, "race5": 1, "race6": 1, "ethnicity1": 88, "ethnicity2": 28, "edu1": 11, "edu2": 22, "edu3": 32, "edu4": 19, "Shape_Length": 79542.911891025724, "Shape_Area": 186809470.49205816, "total_2021": 105, "total_2022": 116 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.159288933993665, 29.417963133915901 ], [ -95.159300934319333, 29.417884133863357 ], [ -95.159258934025658, 29.417721133412911 ], [ -95.159250934287215, 29.417675133724419 ], [ -95.159218934297527, 29.417499133640543 ], [ -95.158787934023039, 29.417486133837752 ], [ -95.158408933618162, 29.417478133277381 ], [ -95.158134933784012, 29.417473133728596 ], [ -95.157088933707016, 29.417473133815594 ], [ -95.156508933729882, 29.417467133278318 ], [ -95.156344933128238, 29.417473133291313 ], [ -95.156072933088524, 29.417467133517508 ], [ -95.155359933821813, 29.417467133390705 ], [ -95.154797933409853, 29.417461133588603 ], [ -95.15402393346271, 29.417449133882513 ], [ -95.153709933083931, 29.417467133616984 ], [ -95.152306932915394, 29.417437133536797 ], [ -95.151545932035091, 29.417437133709871 ], [ -95.150408931926833, 29.417419133879061 ], [ -95.149749932155444, 29.417419133932157 ], [ -95.149628931943099, 29.417425134175534 ], [ -95.149544931574212, 29.417437134084171 ], [ -95.14939993142562, 29.417449133554008 ], [ -95.149338931834436, 29.417461133952184 ], [ -95.149060932009107, 29.417458133724164 ], [ -95.149051932023525, 29.417452134221524 ], [ -95.148830931670688, 29.417452134228508 ], [ -95.146569931371218, 29.417445133695228 ], [ -95.146381930805845, 29.417445134022234 ], [ -95.144049930793344, 29.417439133860192 ], [ -95.143898930446738, 29.417438134451395 ], [ -95.143913930287468, 29.414442133209427 ], [ -95.143921930149929, 29.412625133045292 ], [ -95.140076929347629, 29.412604133090635 ], [ -95.140077929107733, 29.412484132739358 ], [ -95.140077929398956, 29.412361133298464 ], [ -95.14008192930514, 29.409918132633624 ], [ -95.140081929470796, 29.409853132299084 ], [ -95.140082928604585, 29.409510132463016 ], [ -95.140083928785458, 29.408908132441614 ], [ -95.14008992885266, 29.408085132680224 ], [ -95.140078928824252, 29.406522131756713 ], [ -95.140086928861578, 29.40337713172277 ], [ -95.140089928623567, 29.401752131186402 ], [ -95.140094928810583, 29.401635130705376 ], [ -95.140100929033579, 29.401504130582179 ], [ -95.140113928796495, 29.401406130508313 ], [ -95.140302929086985, 29.401299130518648 ], [ -95.140641928534805, 29.401141130403758 ], [ -95.141214928617728, 29.400907130919652 ], [ -95.141299929465504, 29.400880130328382 ], [ -95.143086929462328, 29.400299130794309 ], [ -95.143572929964648, 29.400188130089077 ], [ -95.14371892910745, 29.400141130758296 ], [ -95.143788929628343, 29.400094130857898 ], [ -95.143876929762897, 29.399995130676214 ], [ -95.143976930002978, 29.399831130882855 ], [ -95.144134929829534, 29.399503130508759 ], [ -95.144163929758875, 29.399404130606928 ], [ -95.144426930075511, 29.39880113025017 ], [ -95.145280929536113, 29.396941129859243 ], [ -95.145661929527392, 29.396093129987754 ], [ -95.145259929596293, 29.395918129856362 ], [ -95.14513193007771, 29.395862129553283 ], [ -95.144957930178762, 29.395835129337634 ], [ -95.139284927684329, 29.393888129324587 ], [ -95.139150927822968, 29.393842129523133 ], [ -95.138034928287937, 29.393456128916831 ], [ -95.136548927323418, 29.392944129389019 ], [ -95.13483592764473, 29.396766130168277 ], [ -95.134546926742416, 29.397410130284218 ], [ -95.134058927247708, 29.398479130502345 ], [ -95.13389192730196, 29.398846130998969 ], [ -95.133064926847865, 29.400657131113753 ], [ -95.131694926651591, 29.400174131267086 ], [ -95.130689926705145, 29.39983313083097 ], [ -95.130153925800485, 29.399650130601035 ], [ -95.130134925920757, 29.399644130570454 ], [ -95.130007925724442, 29.399601130533256 ], [ -95.130766926243496, 29.397905130071692 ], [ -95.130984926241354, 29.397419130795203 ], [ -95.127493925532505, 29.396219130102715 ], [ -95.126460925481027, 29.398526131136737 ], [ -95.125729925288269, 29.398224130766863 ], [ -95.12429692488935, 29.397631130449216 ], [ -95.123598924583931, 29.399194130833145 ], [ -95.123578924214883, 29.399240131027383 ], [ -95.122897924423782, 29.399008131012426 ], [ -95.121698923860009, 29.398596130665823 ], [ -95.121556923974254, 29.398547130864046 ], [ -95.120505923954568, 29.398186130820367 ], [ -95.120320923129924, 29.398599131206968 ], [ -95.119919923377608, 29.399495130998474 ], [ -95.119654922899002, 29.40008713140228 ], [ -95.119441923558625, 29.40001413132245 ], [ -95.119408923030576, 29.400002130846968 ], [ -95.118618923166437, 29.399690131103231 ], [ -95.117344923044342, 29.399275130962373 ], [ -95.116650923046961, 29.399053130832147 ], [ -95.116405922708282, 29.399594130886289 ], [ -95.116389922829455, 29.399628131758924 ], [ -95.116222922051989, 29.399996131222458 ], [ -95.116159922787787, 29.400135131230304 ], [ -95.115868922151208, 29.400774131144583 ], [ -95.115765922133576, 29.401083131388198 ], [ -95.115739922005261, 29.401404131986691 ], [ -95.115744922393262, 29.40311613171934 ], [ -95.115749922874429, 29.404434131876169 ], [ -95.115466922624051, 29.404428132756447 ], [ -95.113819922083437, 29.404440132251942 ], [ -95.113383922049465, 29.404428132340527 ], [ -95.113020921496187, 29.404343132244644 ], [ -95.112233921450141, 29.404113131946271 ], [ -95.111967921740131, 29.404040132276741 ], [ -95.111676921900241, 29.404016132185252 ], [ -95.110720921138636, 29.404016132836585 ], [ -95.110260921388928, 29.404016132304704 ], [ -95.109763921080528, 29.404016132737212 ], [ -95.108128920849524, 29.404028132576975 ], [ -95.104606919183382, 29.404064133016316 ], [ -95.10173391894152, 29.404095132357899 ], [ -95.101742918648355, 29.406234133432598 ], [ -95.101709918770695, 29.406510133469027 ], [ -95.101562919230673, 29.406572133485358 ], [ -95.098975918366193, 29.406538133503364 ], [ -95.098508918333422, 29.406540133572786 ], [ -95.095552917763726, 29.406540133684747 ], [ -95.095249917513627, 29.406654133749917 ], [ -95.093856917253746, 29.406844133850701 ], [ -95.09277091650354, 29.406972133416204 ], [ -95.092136916661588, 29.406971133477185 ], [ -95.09213791655759, 29.407957133479876 ], [ -95.092138916504851, 29.408863133739644 ], [ -95.092142917165205, 29.411716134415755 ], [ -95.092144916422342, 29.412735135167758 ], [ -95.092144916460541, 29.413516135289282 ], [ -95.092144916494163, 29.414180135175084 ], [ -95.092144917331552, 29.415204135426073 ], [ -95.092145917409567, 29.415992135046917 ], [ -95.09214491742992, 29.416451135853368 ], [ -95.092144917429977, 29.416842135828333 ], [ -95.092144916592019, 29.418046136122065 ], [ -95.092144917235856, 29.419194136060486 ], [ -95.09214491668962, 29.419957136044623 ], [ -95.09214491768455, 29.421403136365367 ], [ -95.092144917179368, 29.422046136966152 ], [ -95.092145917409695, 29.422556136611444 ], [ -95.092146917649231, 29.422792136619083 ], [ -95.092149917061789, 29.42538713716425 ], [ -95.092149917584933, 29.425523137508968 ], [ -95.09215791723399, 29.427041138016669 ], [ -95.092148917831253, 29.42729813786065 ], [ -95.092148917451453, 29.428640137711049 ], [ -95.092149917293526, 29.428853138510028 ], [ -95.092148917425362, 29.429382138107847 ], [ -95.092147917379037, 29.429800137880417 ], [ -95.092144917420654, 29.431666138757528 ], [ -95.092171918190019, 29.435635139456767 ], [ -95.092176918037197, 29.436349139423154 ], [ -95.092183918050281, 29.436578139819812 ], [ -95.093032918366731, 29.436270139857186 ], [ -95.093086918484019, 29.436250139855808 ], [ -95.093398918106686, 29.436115139478556 ], [ -95.093530918598049, 29.435919139891585 ], [ -95.093595917929349, 29.435806139596739 ], [ -95.093638917742879, 29.43566113965408 ], [ -95.093834918661472, 29.435144139659108 ], [ -95.093966917956962, 29.434965139410647 ], [ -95.09413491816305, 29.434738139035161 ], [ -95.094388918021068, 29.434467139265095 ], [ -95.094426918353832, 29.434307139062174 ], [ -95.094476918035113, 29.434173139283295 ], [ -95.094653918756947, 29.433700139451108 ], [ -95.094918918977513, 29.43352013883592 ], [ -95.095329918703328, 29.433282139232695 ], [ -95.095392919023936, 29.433228139222475 ], [ -95.095921918760141, 29.433228138605728 ], [ -95.095983918686187, 29.433208139323799 ], [ -95.096420918800462, 29.433066138572599 ], [ -95.09719991935809, 29.432472138444314 ], [ -95.097444919311258, 29.432278138292904 ], [ -95.097697919048528, 29.432077138214243 ], [ -95.098476919448913, 29.431851138431234 ], [ -95.098725919118479, 29.431716138142722 ], [ -95.099220919975494, 29.431677138879916 ], [ -95.099411919734692, 29.431662138231715 ], [ -95.099878920191344, 29.43150113833854 ], [ -95.10002392000473, 29.431382138552323 ], [ -95.100189920262991, 29.431269137979854 ], [ -95.100875919710461, 29.43082613864404 ], [ -95.101382919505411, 29.430512138174546 ], [ -95.101606920319583, 29.430374137770265 ], [ -95.101795920047167, 29.430367138328915 ], [ -95.101934920605444, 29.430361138447374 ], [ -95.10222791984441, 29.43023513778364 ], [ -95.102449920108612, 29.430054137674791 ], [ -95.102495920072968, 29.430016137894139 ], [ -95.102900919985544, 29.429854138011802 ], [ -95.103274920540585, 29.429935137720395 ], [ -95.103549920756947, 29.430088137956361 ], [ -95.103711920690202, 29.430178137666747 ], [ -95.104408920471158, 29.429902137586677 ], [ -95.105268921085965, 29.429288137680167 ], [ -95.105518921152864, 29.429126137973256 ], [ -95.105870920689654, 29.428854137445576 ], [ -95.106078921217289, 29.42869413774082 ], [ -95.106207921454953, 29.428656137337793 ], [ -95.106405920739078, 29.4286331380472 ], [ -95.106508921028833, 29.42861113799616 ], [ -95.10676092095278, 29.428642137289227 ], [ -95.107143921195686, 29.428710137287087 ], [ -95.107413921001879, 29.428822137466703 ], [ -95.107610921248551, 29.428917137578644 ], [ -95.107754921283643, 29.429020137985287 ], [ -95.107961922147538, 29.429128137747107 ], [ -95.10812592212703, 29.429292137796903 ], [ -95.108261921497061, 29.429332137283215 ], [ -95.108287922171272, 29.429340138148479 ], [ -95.108383921826402, 29.429384137672717 ], [ -95.108600922221115, 29.429399137856578 ], [ -95.10880292190555, 29.429310137712815 ], [ -95.108876921553815, 29.429265137916307 ], [ -95.108953921917418, 29.429218137334487 ], [ -95.109115922429567, 29.429090137655432 ], [ -95.1092449224939, 29.428990137262215 ], [ -95.109428921515445, 29.428884137473517 ], [ -95.109608921992617, 29.428836137791862 ], [ -95.109818922259279, 29.428803137881875 ], [ -95.109972922624394, 29.428788137816351 ], [ -95.110392922491329, 29.42881013781485 ], [ -95.110631922553296, 29.428828137208598 ], [ -95.110778922002297, 29.428843137284751 ], [ -95.110892922122233, 29.428861137676982 ], [ -95.111109922107815, 29.428931137753981 ], [ -95.111249922451066, 29.429023137279341 ], [ -95.111330922414012, 29.429108137270244 ], [ -95.111485923029377, 29.429174137551584 ], [ -95.111533922747967, 29.429192137655441 ], [ -95.111584922637434, 29.429211137826911 ], [ -95.111790922716423, 29.429160137501722 ], [ -95.11199392269684, 29.429042137657152 ], [ -95.112088922543251, 29.428935137494889 ], [ -95.11223292312286, 29.428821137062247 ], [ -95.112412922565568, 29.42874013720872 ], [ -95.112556922424275, 29.42873313707091 ], [ -95.112717922697627, 29.428814137236813 ], [ -95.112802922467466, 29.428902137178415 ], [ -95.112843922911921, 29.429031137144296 ], [ -95.112894923144751, 29.429174137157371 ], [ -95.112953922603879, 29.429314137952932 ], [ -95.11307292306978, 29.429389137562268 ], [ -95.113141923483539, 29.429432137422527 ], [ -95.11322692339813, 29.429470137358315 ], [ -95.113332922945602, 29.429517137210656 ], [ -95.113490923560121, 29.429505137550137 ], [ -95.113658923101525, 29.429508137983468 ], [ -95.113696922976843, 29.42950913728837 ], [ -95.113697923044043, 29.429614137498874 ], [ -95.113805923328727, 29.429626137711487 ], [ -95.113927923130305, 29.429648137445238 ], [ -95.114003923194971, 29.429668137700471 ], [ -95.114096923561519, 29.42968013725033 ], [ -95.114244923091647, 29.429707137279369 ], [ -95.114316923609465, 29.429709137444689 ], [ -95.114393923106277, 29.429702137671192 ], [ -95.11452392382833, 29.429692137936264 ], [ -95.114610923683628, 29.429685137390983 ], [ -95.114699923353669, 29.429679137492158 ], [ -95.114715923612962, 29.429806137404444 ], [ -95.114766923604989, 29.429800137850073 ], [ -95.114806923153637, 29.429790137537875 ], [ -95.114961922974373, 29.429626137668158 ], [ -95.115002923495894, 29.42958313754292 ], [ -95.115137923834482, 29.429501137341141 ], [ -95.115263923066678, 29.429425137885289 ], [ -95.115351923800219, 29.429314137439292 ], [ -95.11541592389851, 29.429257137549538 ], [ -95.115491923751904, 29.429143137317926 ], [ -95.115574923235201, 29.428996137529392 ], [ -95.115706923608727, 29.428900137398973 ], [ -95.115775924094862, 29.428849137433584 ], [ -95.115833923255764, 29.428815137644168 ], [ -95.115921924030317, 29.428795137099229 ], [ -95.115968924171256, 29.428794136925603 ], [ -95.116101923935389, 29.428796137143099 ], [ -95.116208923902079, 29.428826137023687 ], [ -95.116258923898741, 29.428854137002524 ], [ -95.116378924242483, 29.428948137706321 ], [ -95.116389924084402, 29.428959137692718 ], [ -95.116487923664167, 29.429054137065819 ], [ -95.116532923387368, 29.429083137177724 ], [ -95.116592923598674, 29.429134137710538 ], [ -95.116667924032541, 29.429181137150227 ], [ -95.116807924103156, 29.42922413764704 ], [ -95.116832924407191, 29.429229137537241 ], [ -95.116926924248034, 29.429209137427431 ], [ -95.116984924199727, 29.429170137474046 ], [ -95.116994924438799, 29.429141136967083 ], [ -95.117060924092854, 29.429060137602118 ], [ -95.117079924027493, 29.429011137269669 ], [ -95.117150923835823, 29.428881137637827 ], [ -95.117193924163857, 29.428816136954222 ], [ -95.11725792448442, 29.428771137114349 ], [ -95.117403923908384, 29.428705136987453 ], [ -95.117471923695192, 29.428671137457275 ], [ -95.117590924249981, 29.428652137283898 ], [ -95.117677924034155, 29.428650137172223 ], [ -95.117820924388042, 29.42865913690822 ], [ -95.117959924313794, 29.428672136958838 ], [ -95.117987923924346, 29.428679136851304 ], [ -95.118051924646039, 29.428697137487511 ], [ -95.118142923767863, 29.42873613742109 ], [ -95.118223924643161, 29.428761137688223 ], [ -95.118326924712022, 29.428759137292904 ], [ -95.118438923973301, 29.428745137491443 ], [ -95.118505923824614, 29.42872313725535 ], [ -95.118566924146918, 29.42870313745178 ], [ -95.118670924383835, 29.428674137007718 ], [ -95.118771924798267, 29.428646137171206 ], [ -95.118843924567358, 29.428626137330969 ], [ -95.118967924721474, 29.42859113741682 ], [ -95.119107924643373, 29.428559137408858 ], [ -95.119226924720437, 29.42855313696186 ], [ -95.119253924656107, 29.428554137338168 ], [ -95.119282924248964, 29.428555137135834 ], [ -95.119362924570993, 29.428557136857851 ], [ -95.119472924864937, 29.428556137075589 ], [ -95.119585924145355, 29.428568137054299 ], [ -95.11968792494271, 29.42858013695264 ], [ -95.119730924161161, 29.428590137155783 ], [ -95.119800924570086, 29.428606137337685 ], [ -95.119932924629538, 29.42863713685189 ], [ -95.120006925206553, 29.428648136994624 ], [ -95.120039924292172, 29.428654136960223 ], [ -95.120157924407678, 29.428662137000341 ], [ -95.120197924566526, 29.428667136897872 ], [ -95.120285924967206, 29.428679136750048 ], [ -95.120382924796829, 29.428718137030224 ], [ -95.120468924721905, 29.428780136934588 ], [ -95.120545925241643, 29.428889137675917 ], [ -95.120590924737613, 29.428917136987579 ], [ -95.120657925063909, 29.428919137457182 ], [ -95.120863924573641, 29.428819137509464 ], [ -95.120937925050768, 29.42877213693852 ], [ -95.121049924806471, 29.428681137230218 ], [ -95.121135925278224, 29.428575137042934 ], [ -95.121213925495312, 29.428479136737579 ], [ -95.121335925326633, 29.428306137315246 ], [ -95.121389925546438, 29.428254137329791 ], [ -95.121506924669234, 29.428154137125311 ], [ -95.121584924630028, 29.428111137103844 ], [ -95.1216739256257, 29.428082136606172 ], [ -95.121787924963769, 29.428063137356073 ], [ -95.121873925236301, 29.4280511368198 ], [ -95.121978924921706, 29.428033137265224 ], [ -95.122037924875372, 29.428030137064361 ], [ -95.122096924825541, 29.428027136837436 ], [ -95.122199925570925, 29.428035137389539 ], [ -95.122415925360997, 29.428036136994908 ], [ -95.122485925480234, 29.428070136624076 ], [ -95.122519925742779, 29.42812913664055 ], [ -95.122542925050482, 29.428213137068177 ], [ -95.122549924995297, 29.428292137300623 ], [ -95.122544925594482, 29.428388137270996 ], [ -95.122538925661445, 29.428449137461755 ], [ -95.122624925579913, 29.428492137499358 ], [ -95.122801925538823, 29.428530137335947 ], [ -95.122856925425779, 29.428542137056411 ], [ -95.122922925650187, 29.428557137421699 ], [ -95.122978925068722, 29.428566137227396 ], [ -95.123024925020914, 29.42857413711473 ], [ -95.123142925271978, 29.428586136614552 ], [ -95.123270925223665, 29.428585137132693 ], [ -95.123420925608841, 29.428563137039816 ], [ -95.123519925963649, 29.428539137276232 ], [ -95.123659925721057, 29.428516137026271 ], [ -95.123767925420182, 29.42850513675598 ], [ -95.123854926214563, 29.428508136857491 ], [ -95.123920925361659, 29.428537137258388 ], [ -95.123965925959524, 29.428570136935559 ], [ -95.124051925613102, 29.428617137218126 ], [ -95.124094925921412, 29.428633136921334 ], [ -95.124145925906674, 29.428653137054738 ], [ -95.124193925375522, 29.428671137060743 ], [ -95.124220925666066, 29.428673136739242 ], [ -95.124236925992633, 29.428670137075287 ], [ -95.124251925792507, 29.428677136631102 ], [ -95.124321926060446, 29.42868313685382 ], [ -95.124546925575956, 29.428672136896928 ], [ -95.124670925901427, 29.428666136779047 ], [ -95.124854926422401, 29.428656136736905 ], [ -95.124921926426367, 29.428654137481018 ], [ -95.125044925771235, 29.428653137447576 ], [ -95.125074925603315, 29.428685137226804 ], [ -95.125092925895842, 29.428753137191013 ], [ -95.12509792556834, 29.42885813748423 ], [ -95.125074926347452, 29.428960136991201 ], [ -95.125055925614973, 29.429049136695706 ], [ -95.125057926026287, 29.429139136675406 ], [ -95.125094926173759, 29.429244137404169 ], [ -95.12512192626032, 29.429339137492779 ], [ -95.125170926304747, 29.429391137464211 ], [ -95.12519092620758, 29.429413137490119 ], [ -95.125275926392291, 29.429483137356915 ], [ -95.12538192630673, 29.429545137379254 ], [ -95.125504925882808, 29.429617136952356 ], [ -95.125663925909052, 29.429697136865538 ], [ -95.125996926399878, 29.429907137420372 ], [ -95.126018926172549, 29.429922137270843 ], [ -95.126079926086561, 29.429961137148513 ], [ -95.12617192626449, 29.429986137400721 ], [ -95.126253926288797, 29.429988137700231 ], [ -95.126357926451945, 29.429969136982724 ], [ -95.126486926708168, 29.429946136985215 ], [ -95.126579926662458, 29.429939137483963 ], [ -95.126661926894542, 29.429955137186244 ], [ -95.126716926512543, 29.429979137031381 ], [ -95.126755926666377, 29.430039137625677 ], [ -95.126852926484943, 29.430106136893645 ], [ -95.126978926093415, 29.43011713713436 ], [ -95.127150926383081, 29.430073136862344 ], [ -95.127275926629721, 29.43000913702884 ], [ -95.127369926348848, 29.429945137307229 ], [ -95.127443927042236, 29.42991913764148 ], [ -95.127542927209277, 29.429900137273737 ], [ -95.127640927238986, 29.429885137007531 ], [ -95.127743926917077, 29.42988313743864 ], [ -95.127841926955085, 29.42988113727419 ], [ -95.127969926776117, 29.42987213718612 ], [ -95.128058926548107, 29.429847137214786 ], [ -95.128116927175157, 29.429813136757407 ], [ -95.128135926798691, 29.42979513697717 ], [ -95.128185926820322, 29.429752137491128 ], [ -95.128269926395802, 29.42969113701416 ], [ -95.128381927050683, 29.42957313689017 ], [ -95.12840192676272, 29.429331136609036 ], [ -95.128420926610161, 29.429311137106485 ], [ -95.128771927402184, 29.428943137018397 ], [ -95.129331927246255, 29.428831137096864 ], [ -95.129712927002956, 29.428697136423395 ], [ -95.130018927025105, 29.42859113721515 ], [ -95.130690927258286, 29.428367136468939 ], [ -95.131489927989549, 29.428415136333548 ], [ -95.131969928226454, 29.428351137039016 ], [ -95.13284892753282, 29.428399136490992 ], [ -95.133535928311161, 29.428223136867306 ], [ -95.133935927969489, 29.428367136359459 ], [ -95.134494928173723, 29.428255136656315 ], [ -95.134910928957268, 29.428335136892976 ], [ -95.135517928458924, 29.428175136643645 ], [ -95.136333928951515, 29.428431136226763 ], [ -95.137260928978563, 29.429039137131497 ], [ -95.137995929768365, 29.429327136368578 ], [ -95.138826929818734, 29.429519137060954 ], [ -95.139706929453837, 29.42958313635172 ], [ -95.140034930072474, 29.429724136745133 ], [ -95.140521929777634, 29.42993413659676 ], [ -95.141256930407266, 29.430430136798631 ], [ -95.141784930661402, 29.43036613669338 ], [ -95.142487930410013, 29.430590136863 ], [ -95.142679930421124, 29.430430136906462 ], [ -95.142775930934789, 29.429966136897722 ], [ -95.143223930256269, 29.429666136660124 ], [ -95.144506931085203, 29.429344136788899 ], [ -95.144844931629564, 29.429319136107885 ], [ -95.145583931357507, 29.429448136660604 ], [ -95.146220931301286, 29.42959913649085 ], [ -95.146570931593686, 29.429463136587206 ], [ -95.146889932012712, 29.428832136151183 ], [ -95.147685931350424, 29.428291136255037 ], [ -95.148227932224444, 29.42827613652749 ], [ -95.148768931778847, 29.427766135795807 ], [ -95.149438931833387, 29.427540136359902 ], [ -95.14974693196929, 29.427623135799898 ], [ -95.150055932752878, 29.427899136454876 ], [ -95.150365932159772, 29.428747136413158 ], [ -95.150797932563634, 29.428539136569665 ], [ -95.151291932967126, 29.428139135771303 ], [ -95.152974932698484, 29.428059136317167 ], [ -95.153607932842661, 29.428299136056882 ], [ -95.154023933381168, 29.428731135869349 ], [ -95.154409933930168, 29.428683136219622 ], [ -95.154842934134777, 29.428331135921784 ], [ -95.155181933601796, 29.427883135653598 ], [ -95.155660933720142, 29.427800135704935 ], [ -95.156084934412974, 29.427819135987551 ], [ -95.156369933627445, 29.427977135932625 ], [ -95.156469933645212, 29.42772913558159 ], [ -95.156530933902062, 29.427612135762871 ], [ -95.156522934279266, 29.427473136173422 ], [ -95.15670293369719, 29.427251135342203 ], [ -95.156871934440176, 29.42701613539559 ], [ -95.156960934057679, 29.426921135911279 ], [ -95.157060934140631, 29.426852135442029 ], [ -95.157113933680805, 29.426616135247162 ], [ -95.157396934314448, 29.426436135853205 ], [ -95.157676934678307, 29.426425135421383 ], [ -95.157879934012271, 29.426286135422679 ], [ -95.15822593403351, 29.426125135030528 ], [ -95.158278934010937, 29.425933135421385 ], [ -95.158348934201001, 29.425687135274604 ], [ -95.158531934004372, 29.425509135444738 ], [ -95.158619934743214, 29.425348134954678 ], [ -95.158761934084538, 29.425076135290571 ], [ -95.158608934006494, 29.424721134735318 ], [ -95.158353934268447, 29.424323134860757 ], [ -95.158295934654817, 29.424082135390957 ], [ -95.158222934108665, 29.423894134936393 ], [ -95.158222934679458, 29.423650134768863 ], [ -95.158270933991858, 29.423318134903358 ], [ -95.158270934296084, 29.423172135086389 ], [ -95.158230933801534, 29.423042134757882 ], [ -95.158213934169325, 29.422920134896092 ], [ -95.158230934378437, 29.422863134414222 ], [ -95.158278934714829, 29.422758134361072 ], [ -95.158303934230943, 29.422660134557606 ], [ -95.15827893432602, 29.422531134529201 ], [ -95.158173934559485, 29.422376134752348 ], [ -95.158100934548585, 29.422255134596863 ], [ -95.157978934468474, 29.422084134728593 ], [ -95.157913933867277, 29.421963134393462 ], [ -95.157913934643034, 29.421760134272702 ], [ -95.157929934486916, 29.421646134559367 ], [ -95.15798693463195, 29.42152413402237 ], [ -95.158059934097693, 29.421403134546388 ], [ -95.158100934255899, 29.421273134442501 ], [ -95.158100934313239, 29.421208134563635 ], [ -95.158246934424255, 29.42091613454042 ], [ -95.158270934030639, 29.420721134714903 ], [ -95.158213934457251, 29.42059113455436 ], [ -95.158213934051105, 29.420502134017589 ], [ -95.15828693408973, 29.420267133888046 ], [ -95.158291934520676, 29.420091133726135 ], [ -95.1583219342929, 29.419946134115364 ], [ -95.158369933986677, 29.419849134513466 ], [ -95.158430934096089, 29.419698133927543 ], [ -95.15845493461471, 29.419547134194151 ], [ -95.158502933931175, 29.419347133550591 ], [ -95.158533933700596, 29.419166134157717 ], [ -95.15855193372397, 29.419045133886637 ], [ -95.15857593391101, 29.418894134114208 ], [ -95.158599934545634, 29.418815133570444 ], [ -95.158635933791871, 29.418761134257633 ], [ -95.158678934610791, 29.418707134124642 ], [ -95.158714933979823, 29.418688134115815 ], [ -95.158780934569407, 29.4187131341791 ], [ -95.158799934098496, 29.418707133695712 ], [ -95.158853934103817, 29.418676134287367 ], [ -95.158913933819036, 29.418616133818446 ], [ -95.158962933823304, 29.418549133573826 ], [ -95.159046933846739, 29.418519133353385 ], [ -95.159131934827343, 29.418441133506317 ], [ -95.159161934159314, 29.41836213388482 ], [ -95.159198934262619, 29.41829013362107 ], [ -95.159234934783697, 29.41824713377218 ], [ -95.159276934490464, 29.418217133290081 ], [ -95.159276934324296, 29.418066133724878 ], [ -95.159288933993665, 29.417963133915901 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 449, "Tract": "48167721501", "Area_SqMi": 1.1007652505085317, "total_2009": 1837, "total_2010": 2067, "total_2011": 2356, "total_2012": 2274, "total_2013": 2253, "total_2014": 2289, "total_2015": 2122, "total_2016": 2424, "total_2017": 2504, "total_2018": 2528, "total_2019": 3974, "total_2020": 4160, "age1": 806, "age2": 2607, "age3": 1003, "earn1": 462, "earn2": 819, "earn3": 3135, "naics_s01": 0, "naics_s02": 194, "naics_s03": 0, "naics_s04": 34, "naics_s05": 90, "naics_s06": 198, "naics_s07": 25, "naics_s08": 22, "naics_s09": 20, "naics_s10": 1284, "naics_s11": 37, "naics_s12": 99, "naics_s13": 0, "naics_s14": 56, "naics_s15": 0, "naics_s16": 170, "naics_s17": 121, "naics_s18": 356, "naics_s19": 1710, "naics_s20": 0, "race1": 3789, "race2": 417, "race3": 34, "race4": 126, "race5": 2, "race6": 48, "ethnicity1": 2943, "ethnicity2": 1473, "edu1": 766, "edu2": 981, "edu3": 1129, "edu4": 734, "Shape_Length": 26222.631981874907, "Shape_Area": 30687451.205622856, "total_2021": 4435, "total_2022": 4416 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.078258919050867, 29.547308163524445 ], [ -95.077689919162069, 29.54612516266306 ], [ -95.077536918870706, 29.545808162513776 ], [ -95.077236919083489, 29.544945162280417 ], [ -95.077166918796138, 29.544070162408961 ], [ -95.076973918563709, 29.543403162178642 ], [ -95.076866918605504, 29.543051162613839 ], [ -95.076369918102515, 29.54144316192987 ], [ -95.075991918030581, 29.540219161386137 ], [ -95.075757918244619, 29.539459161241982 ], [ -95.075661918192893, 29.539147161537592 ], [ -95.075251917576054, 29.537762161106766 ], [ -95.074845917796523, 29.536389161381678 ], [ -95.074696918149812, 29.535891160896004 ], [ -95.074519917504887, 29.535298160687052 ], [ -95.074387917212434, 29.534859160521343 ], [ -95.074138917068368, 29.534026160023775 ], [ -95.073878917191081, 29.533158160459646 ], [ -95.073354917456484, 29.531410159822837 ], [ -95.073269917209714, 29.531117160188568 ], [ -95.07323591742373, 29.531002159700027 ], [ -95.073076917528809, 29.530462159986673 ], [ -95.072754916846861, 29.529599159910649 ], [ -95.072492916605071, 29.529479159735917 ], [ -95.071895916605143, 29.530445159457781 ], [ -95.071795916424037, 29.530605159521738 ], [ -95.071541917053182, 29.531018159869969 ], [ -95.071463916308232, 29.531143160366764 ], [ -95.071403916240016, 29.531240159801868 ], [ -95.071029916846967, 29.531827160285211 ], [ -95.070260915996343, 29.532935160726414 ], [ -95.070016916753559, 29.533189160115736 ], [ -95.068428916189163, 29.535017160430979 ], [ -95.066379916123793, 29.537375161048974 ], [ -95.06549591546964, 29.538386162031163 ], [ -95.064828915632972, 29.539149161744735 ], [ -95.064791915812648, 29.539193161692978 ], [ -95.064459914925578, 29.539573161986024 ], [ -95.064404915283745, 29.539636162058763 ], [ -95.064078914710663, 29.540010162091278 ], [ -95.063408914868916, 29.540696162428496 ], [ -95.063165914768049, 29.540878161842929 ], [ -95.062568914729169, 29.541324162693936 ], [ -95.062407915288389, 29.541444162468235 ], [ -95.062221915112062, 29.5415451622105 ], [ -95.061934914960759, 29.541701162211282 ], [ -95.061521914836575, 29.541927162847898 ], [ -95.060336914273094, 29.542364162870992 ], [ -95.059521913601245, 29.542449162825434 ], [ -95.059676913690936, 29.54357416254723 ], [ -95.059779913721599, 29.544316163422788 ], [ -95.059795914092447, 29.544435163462712 ], [ -95.059810914729297, 29.544534163367953 ], [ -95.060014914519655, 29.544986163574688 ], [ -95.060268913987343, 29.545226163462949 ], [ -95.060367914592589, 29.545325163034832 ], [ -95.060502914006619, 29.545416162832051 ], [ -95.060953914286472, 29.545720163446667 ], [ -95.061179914945143, 29.545932163425096 ], [ -95.061405914457794, 29.546229163472553 ], [ -95.061560914882662, 29.546624163236991 ], [ -95.061673914874476, 29.547118163395862 ], [ -95.061731914951295, 29.547365163808273 ], [ -95.062135914892892, 29.549111163797392 ], [ -95.062488914811439, 29.551348164167358 ], [ -95.06285391515263, 29.552890165144625 ], [ -95.064271916302673, 29.558849165776213 ], [ -95.064831916117384, 29.558774165903426 ], [ -95.066858916758719, 29.558203165539418 ], [ -95.068335917369922, 29.557490165508042 ], [ -95.069013917278227, 29.556385165654131 ], [ -95.069426916707144, 29.555722165129328 ], [ -95.069770917341998, 29.554999164615882 ], [ -95.070325917536138, 29.553834164813807 ], [ -95.070781917037365, 29.552104164331453 ], [ -95.071126917337381, 29.550710163735435 ], [ -95.072056917606048, 29.549291163917388 ], [ -95.072102917496593, 29.549264164129333 ], [ -95.072734917390747, 29.54889816320139 ], [ -95.073798918340501, 29.548279163476753 ], [ -95.074312917821359, 29.548191163179201 ], [ -95.07649191855883, 29.547805163610612 ], [ -95.077307918738697, 29.547575163527821 ], [ -95.078258919050867, 29.547308163524445 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 450, "Tract": "48167721101", "Area_SqMi": 1.360708417334014, "total_2009": 137, "total_2010": 185, "total_2011": 353, "total_2012": 407, "total_2013": 401, "total_2014": 463, "total_2015": 174, "total_2016": 185, "total_2017": 214, "total_2018": 292, "total_2019": 918, "total_2020": 737, "age1": 67, "age2": 212, "age3": 77, "earn1": 52, "earn2": 101, "earn3": 203, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 67, "naics_s05": 35, "naics_s06": 40, "naics_s07": 29, "naics_s08": 9, "naics_s09": 0, "naics_s10": 0, "naics_s11": 29, "naics_s12": 20, "naics_s13": 0, "naics_s14": 15, "naics_s15": 6, "naics_s16": 13, "naics_s17": 0, "naics_s18": 49, "naics_s19": 32, "naics_s20": 12, "race1": 311, "race2": 27, "race3": 3, "race4": 10, "race5": 0, "race6": 5, "ethnicity1": 231, "ethnicity2": 125, "edu1": 69, "edu2": 79, "edu3": 85, "edu4": 56, "Shape_Length": 28019.586520636469, "Shape_Area": 37934221.799540915, "total_2021": 782, "total_2022": 356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.066267912986845, 29.483016150204062 ], [ -95.066487913756532, 29.48286014973516 ], [ -95.065284912662761, 29.481569149681484 ], [ -95.065081912391193, 29.481352149548002 ], [ -95.06500491307655, 29.481270149992561 ], [ -95.063714912811633, 29.47988814973051 ], [ -95.063677912819173, 29.479849150077008 ], [ -95.063657912847404, 29.479827149979268 ], [ -95.057807910238196, 29.473561148146423 ], [ -95.055516910275742, 29.47109014825886 ], [ -95.05342890934719, 29.468838147978552 ], [ -95.052834909462703, 29.468204147667418 ], [ -95.052490908761541, 29.467838147142167 ], [ -95.047901907728175, 29.462944146609779 ], [ -95.047505907653431, 29.462519146751045 ], [ -95.047344907059525, 29.462658146619468 ], [ -95.046652907352225, 29.463264147030756 ], [ -95.046518907833303, 29.463359146646031 ], [ -95.046462907202041, 29.463385146931348 ], [ -95.046277907436249, 29.463442147172213 ], [ -95.046203907516954, 29.463453147103873 ], [ -95.046250906874093, 29.463623147000764 ], [ -95.046271907173335, 29.463827146438831 ], [ -95.04630090759936, 29.464586146932824 ], [ -95.046322906937547, 29.465653146830917 ], [ -95.046340907011952, 29.465767147421282 ], [ -95.046559907497766, 29.466112147076846 ], [ -95.046600907385937, 29.466188147356728 ], [ -95.046685907258166, 29.46634714765916 ], [ -95.046727907998687, 29.466524147760175 ], [ -95.046732907043406, 29.466718147012564 ], [ -95.046742907060874, 29.467126147299854 ], [ -95.046763907462264, 29.467996147327824 ], [ -95.046768907106809, 29.468167147465262 ], [ -95.046782908030465, 29.468760147850166 ], [ -95.046786907354189, 29.468961147605725 ], [ -95.046804907309181, 29.469844148346883 ], [ -95.046811907713646, 29.470230148430602 ], [ -95.046823907759233, 29.470814147934856 ], [ -95.046840907401062, 29.471660148715287 ], [ -95.046852907922656, 29.472270148954465 ], [ -95.046853907932288, 29.472320149010748 ], [ -95.046855908063947, 29.472444148490659 ], [ -95.046856907495155, 29.472504148940683 ], [ -95.046866907971093, 29.473054148816953 ], [ -95.046875907415739, 29.47346414847344 ], [ -95.046887907418608, 29.474054148553865 ], [ -95.046893907886258, 29.474380148765153 ], [ -95.046901908021184, 29.474752149329916 ], [ -95.046911908180874, 29.475275149557891 ], [ -95.046916907709004, 29.4755291491037 ], [ -95.046949908366273, 29.477186149956527 ], [ -95.046966908320258, 29.478005149357191 ], [ -95.047018907916865, 29.480472150510163 ], [ -95.047018908044194, 29.480485150036543 ], [ -95.047031908015697, 29.481087150061491 ], [ -95.047043908389796, 29.481638150655996 ], [ -95.047052908292557, 29.482028150607587 ], [ -95.047095908476095, 29.484072151451887 ], [ -95.047106908265249, 29.484562151055879 ], [ -95.047107908174496, 29.48463715150034 ], [ -95.047130908072731, 29.485683151806075 ], [ -95.047156908899296, 29.486860152063716 ], [ -95.04716290869716, 29.48710915195279 ], [ -95.04721290862696, 29.489808151786161 ], [ -95.04724690888122, 29.491696152743668 ], [ -95.047246908239615, 29.491724152327439 ], [ -95.047249908730009, 29.491840152250788 ], [ -95.04724990867426, 29.491860152996562 ], [ -95.047253908285001, 29.492031152475029 ], [ -95.047259908746085, 29.492375152490663 ], [ -95.047263908923014, 29.49259815263893 ], [ -95.050070909910644, 29.492554152515122 ], [ -95.051194909473296, 29.492453152318948 ], [ -95.052054909536594, 29.492301152271292 ], [ -95.052934909944426, 29.49204815224887 ], [ -95.053703910158859, 29.491755152405091 ], [ -95.054492911051753, 29.491401152256589 ], [ -95.055155910223604, 29.490993152578771 ], [ -95.055490911091482, 29.490753152255191 ], [ -95.057553910914805, 29.489282151837539 ], [ -95.059020911855143, 29.488224151328875 ], [ -95.059865911379106, 29.487615151385231 ], [ -95.060680911730671, 29.487026150959746 ], [ -95.0610259123915, 29.486778150741731 ], [ -95.061463911765117, 29.486461151496663 ], [ -95.062281911863735, 29.485871151289274 ], [ -95.063094912054737, 29.48528515095775 ], [ -95.063621912478879, 29.484904150332454 ], [ -95.063856913109461, 29.484735150473973 ], [ -95.064132912282943, 29.484536150722956 ], [ -95.064380912528819, 29.484360150686499 ], [ -95.065159912659666, 29.48380615053421 ], [ -95.066267912986845, 29.483016150204062 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 451, "Tract": "48167720505", "Area_SqMi": 1.0254064014160658, "total_2009": 42, "total_2010": 69, "total_2011": 88, "total_2012": 260, "total_2013": 321, "total_2014": 523, "total_2015": 715, "total_2016": 803, "total_2017": 1087, "total_2018": 148, "total_2019": 146, "total_2020": 200, "age1": 42, "age2": 94, "age3": 43, "earn1": 54, "earn2": 60, "earn3": 65, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 11, "naics_s06": 7, "naics_s07": 1, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 13, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 49, "naics_s17": 2, "naics_s18": 73, "naics_s19": 1, "naics_s20": 0, "race1": 146, "race2": 10, "race3": 2, "race4": 12, "race5": 0, "race6": 9, "ethnicity1": 137, "ethnicity2": 42, "edu1": 18, "edu2": 44, "edu3": 39, "edu4": 36, "Shape_Length": 28135.937693156393, "Shape_Area": 28586575.470884152, "total_2021": 199, "total_2022": 179 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.174479940705297, 29.465769143122014 ], [ -95.174651940025285, 29.465091142580413 ], [ -95.174042940290235, 29.464905142832901 ], [ -95.173948940249872, 29.464876142934266 ], [ -95.173610940306091, 29.464827142851586 ], [ -95.173029939826066, 29.464780142954268 ], [ -95.171784940064683, 29.464679143084748 ], [ -95.171624939461879, 29.464666143286554 ], [ -95.169093938789942, 29.464467143070106 ], [ -95.168029938822613, 29.464362143106058 ], [ -95.167845938466414, 29.46440414278899 ], [ -95.167416938802262, 29.464644143088513 ], [ -95.166119937953383, 29.465334143020144 ], [ -95.165992938418228, 29.465398143608017 ], [ -95.16587993834078, 29.465412143685661 ], [ -95.165196937942085, 29.465454143073405 ], [ -95.162279937143538, 29.465630143745322 ], [ -95.162117936661843, 29.465658143504303 ], [ -95.162025937519743, 29.465708143474266 ], [ -95.160862936681454, 29.467018144095 ], [ -95.15979193653024, 29.468202144277978 ], [ -95.159755936218218, 29.468219144311007 ], [ -95.159700936780439, 29.468244143924682 ], [ -95.161614937355822, 29.468237144427359 ], [ -95.15518793582558, 29.473220145542637 ], [ -95.155116936078556, 29.473305144841881 ], [ -95.154042935243609, 29.474108145283299 ], [ -95.151261934927263, 29.476564145688943 ], [ -95.151368934800828, 29.476567145719336 ], [ -95.15159493462707, 29.476569146080848 ], [ -95.151897934457409, 29.476541146223198 ], [ -95.151973935072476, 29.476582145659513 ], [ -95.152143935378959, 29.476655145640962 ], [ -95.152407935466442, 29.476732146052104 ], [ -95.152654935512501, 29.476781145969309 ], [ -95.152924934891558, 29.476798145950035 ], [ -95.153176935266117, 29.476849145886142 ], [ -95.153440935742324, 29.476957145712138 ], [ -95.153644935513526, 29.477139145651023 ], [ -95.153788935263293, 29.477344146116963 ], [ -95.153803935837601, 29.477584146048361 ], [ -95.153814935478508, 29.479376146405855 ], [ -95.153875935493872, 29.479547146500135 ], [ -95.154018935431907, 29.479706146373431 ], [ -95.154238935799171, 29.479816146771633 ], [ -95.156964936685696, 29.479816146110391 ], [ -95.157080936675882, 29.479832146665014 ], [ -95.157168936881959, 29.4799151468555 ], [ -95.157184936580123, 29.480003146793976 ], [ -95.157217936489559, 29.482301147135377 ], [ -95.157278936317283, 29.485176147994867 ], [ -95.157267936227584, 29.485432147504547 ], [ -95.157058936465234, 29.485417147888132 ], [ -95.157017936574078, 29.48541714775607 ], [ -95.157004936417408, 29.489133148116007 ], [ -95.157479936788292, 29.489083148588342 ], [ -95.157944937550809, 29.489056148819749 ], [ -95.158872937559323, 29.489098148711278 ], [ -95.159413937560927, 29.489147148505438 ], [ -95.15965693731728, 29.489169148281498 ], [ -95.160580938213599, 29.489327148189403 ], [ -95.161283938407209, 29.489498148616033 ], [ -95.162046937882025, 29.486722148137471 ], [ -95.162278937812872, 29.486327148115318 ], [ -95.162322937986389, 29.486254147606406 ], [ -95.162702938405232, 29.485456147649401 ], [ -95.163247938546206, 29.484614147225081 ], [ -95.163674937848597, 29.483880146854837 ], [ -95.164061937947594, 29.483010147323029 ], [ -95.164177938651292, 29.482455147004281 ], [ -95.164547938287967, 29.480707146186646 ], [ -95.164734938893645, 29.480033146209731 ], [ -95.165031938559423, 29.479051145676362 ], [ -95.165418938856334, 29.477349145353887 ], [ -95.16580593897686, 29.476453145324999 ], [ -95.166160939044914, 29.475884145482752 ], [ -95.166266938436152, 29.475742145003121 ], [ -95.166422938904859, 29.475468144990117 ], [ -95.166549939139216, 29.475283145421457 ], [ -95.166658938265172, 29.475139145299543 ], [ -95.166844938272646, 29.474912145588771 ], [ -95.166979938474896, 29.474751145281122 ], [ -95.167318938784604, 29.474506145352549 ], [ -95.167369938761027, 29.47447114515829 ], [ -95.16770993890691, 29.474049144628605 ], [ -95.169923939227374, 29.47242714487178 ], [ -95.170823939845917, 29.471688144064046 ], [ -95.171497939979076, 29.470953144447805 ], [ -95.172129939523003, 29.47007114426814 ], [ -95.172648940370991, 29.469059143417525 ], [ -95.173103940212698, 29.467963143823752 ], [ -95.173494940470718, 29.467220143521846 ], [ -95.173977940136695, 29.466662143299541 ], [ -95.174312939944997, 29.466215142847478 ], [ -95.174479940705297, 29.465769143122014 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 452, "Tract": "48167721701", "Area_SqMi": 0.68659886371495704, "total_2009": 263, "total_2010": 261, "total_2011": 235, "total_2012": 221, "total_2013": 213, "total_2014": 282, "total_2015": 291, "total_2016": 288, "total_2017": 275, "total_2018": 326, "total_2019": 295, "total_2020": 282, "age1": 49, "age2": 111, "age3": 66, "earn1": 74, "earn2": 101, "earn3": 51, "naics_s01": 0, "naics_s02": 0, "naics_s03": 16, "naics_s04": 2, "naics_s05": 32, "naics_s06": 10, "naics_s07": 53, "naics_s08": 0, "naics_s09": 0, "naics_s10": 2, "naics_s11": 5, "naics_s12": 7, "naics_s13": 0, "naics_s14": 45, "naics_s15": 0, "naics_s16": 12, "naics_s17": 5, "naics_s18": 9, "naics_s19": 28, "naics_s20": 0, "race1": 176, "race2": 10, "race3": 0, "race4": 34, "race5": 1, "race6": 5, "ethnicity1": 173, "ethnicity2": 53, "edu1": 41, "edu2": 47, "edu3": 55, "edu4": 34, "Shape_Length": 21616.542674248391, "Shape_Area": 19141201.194673374, "total_2021": 312, "total_2022": 226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.993853895525035, 29.513835159060164 ], [ -94.994540896633566, 29.513374158817676 ], [ -94.993846895486413, 29.513019158965115 ], [ -94.991648895710711, 29.51198015841825 ], [ -94.991516895108703, 29.512032158803585 ], [ -94.991435895004216, 29.512032158917965 ], [ -94.991344895252112, 29.512022158302411 ], [ -94.991224895418597, 29.511971158516527 ], [ -94.990720895302275, 29.511357158148311 ], [ -94.990237894872507, 29.510864158214787 ], [ -94.990066894593838, 29.510642158552905 ], [ -94.989739894516845, 29.510281158554641 ], [ -94.989673894896413, 29.510330158450135 ], [ -94.989593894982832, 29.510239158181172 ], [ -94.988775894926818, 29.509332158535511 ], [ -94.988676894251199, 29.509223158485778 ], [ -94.987955894126429, 29.508377158107795 ], [ -94.988574894777514, 29.507951157952913 ], [ -94.989225894751158, 29.507504157935077 ], [ -94.989357894878054, 29.507414157586439 ], [ -94.989870894500655, 29.507061157591124 ], [ -94.990119894780648, 29.506890157991652 ], [ -94.990505894834087, 29.50662515716192 ], [ -94.990878894753422, 29.506369157292351 ], [ -94.991152894723186, 29.50618015788659 ], [ -94.99164389549442, 29.505843157491611 ], [ -94.991801895255762, 29.50573415750943 ], [ -94.992425895587147, 29.505306156848821 ], [ -94.993075895162747, 29.504860157026467 ], [ -94.993180894992932, 29.50478715700989 ], [ -94.992596894831223, 29.504133156688432 ], [ -94.991314894414401, 29.502699156871579 ], [ -94.990583895010161, 29.501881156888956 ], [ -94.98983289473783, 29.501042156668539 ], [ -94.988551894407749, 29.49960815624852 ], [ -94.987774894136962, 29.500147156709978 ], [ -94.987019894091546, 29.500670156467184 ], [ -94.986261893160048, 29.501195156549237 ], [ -94.985486893257615, 29.501731156425571 ], [ -94.984729892845834, 29.502255157148255 ], [ -94.984600893255148, 29.502345157331437 ], [ -94.983945892679031, 29.502787156618954 ], [ -94.983351892950907, 29.503188157379729 ], [ -94.983184892266124, 29.503297156919452 ], [ -94.983125892860897, 29.503337157055949 ], [ -94.982413892152152, 29.503829157523509 ], [ -94.981660892377946, 29.504350157056212 ], [ -94.980895892574978, 29.504876157102878 ], [ -94.980121891694623, 29.505407157388792 ], [ -94.979354892225984, 29.505931157700171 ], [ -94.978593891763822, 29.506453157603296 ], [ -94.977821891781772, 29.506981158309912 ], [ -94.977057891387958, 29.507504158277523 ], [ -94.976804891250453, 29.507674157947015 ], [ -94.976277890899624, 29.50803115846081 ], [ -94.975512891205668, 29.508551158622836 ], [ -94.974779891170698, 29.509083158957935 ], [ -94.974159891179866, 29.509457158364135 ], [ -94.97398589038022, 29.50963015911454 ], [ -94.973100890207419, 29.510187158979758 ], [ -94.974009890274417, 29.51044515913053 ], [ -94.974528890581382, 29.510616158630651 ], [ -94.975030891374118, 29.510770158599502 ], [ -94.975320890883097, 29.510986158680147 ], [ -94.975808890957794, 29.511042158974792 ], [ -94.976215890907909, 29.511113158635617 ], [ -94.976519891135453, 29.511260158749902 ], [ -94.97666789115334, 29.511332158611243 ], [ -94.976771891289886, 29.511350158758141 ], [ -94.977171891939847, 29.511421158719891 ], [ -94.978063892062337, 29.511678159381638 ], [ -94.978321891869925, 29.511878158639266 ], [ -94.978725891985775, 29.512128158876106 ], [ -94.979307892482765, 29.512381159095884 ], [ -94.980005892492343, 29.512538159585858 ], [ -94.980703892856525, 29.512727159500088 ], [ -94.980994892433714, 29.512862159575942 ], [ -94.981416893033511, 29.512982159454232 ], [ -94.981566892770729, 29.513029158790555 ], [ -94.98201689266773, 29.513170159394146 ], [ -94.982728893522207, 29.513474159574198 ], [ -94.983326893365486, 29.513809159707545 ], [ -94.984264893207992, 29.514311158958392 ], [ -94.984895893234039, 29.514598159046344 ], [ -94.985478893455308, 29.514818159844037 ], [ -94.986142894040469, 29.515056159653682 ], [ -94.986526893716544, 29.515290159596461 ], [ -94.986853894411922, 29.515490159513501 ], [ -94.987612894154381, 29.515941159970872 ], [ -94.98859889437604, 29.516444159352424 ], [ -94.989312895286346, 29.516880159363911 ], [ -94.989663894638966, 29.517095160110724 ], [ -94.990010895208101, 29.516612159751158 ], [ -94.990028895122776, 29.51652715978808 ], [ -94.99009089553158, 29.516452159566317 ], [ -94.990112895535574, 29.516424159702957 ], [ -94.990358895674206, 29.516224159339913 ], [ -94.990603895696111, 29.516028159616223 ], [ -94.991041895302089, 29.515690159357209 ], [ -94.991072895707063, 29.515672159851849 ], [ -94.991352895086948, 29.515509159229168 ], [ -94.991462895553497, 29.51543015945175 ], [ -94.991917895573323, 29.515121159165883 ], [ -94.992301896099093, 29.51487215934695 ], [ -94.992623896133637, 29.514659159104305 ], [ -94.992717895423993, 29.514596159473108 ], [ -94.992932895836134, 29.514453158808461 ], [ -94.993380896313468, 29.51415315893151 ], [ -94.993736895472068, 29.513915158880728 ], [ -94.993768895901781, 29.513893158582007 ], [ -94.993853895525035, 29.513835159060164 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 453, "Tract": "48167721703", "Area_SqMi": 3.4575146985584722, "total_2009": 70, "total_2010": 68, "total_2011": 63, "total_2012": 56, "total_2013": 54, "total_2014": 58, "total_2015": 71, "total_2016": 98, "total_2017": 105, "total_2018": 103, "total_2019": 118, "total_2020": 103, "age1": 18, "age2": 67, "age3": 48, "earn1": 20, "earn2": 30, "earn3": 83, "naics_s01": 0, "naics_s02": 0, "naics_s03": 8, "naics_s04": 7, "naics_s05": 13, "naics_s06": 0, "naics_s07": 17, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 14, "naics_s13": 0, "naics_s14": 63, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 9, "naics_s20": 0, "race1": 109, "race2": 11, "race3": 2, "race4": 7, "race5": 0, "race6": 4, "ethnicity1": 118, "ethnicity2": 15, "edu1": 17, "edu2": 33, "edu3": 45, "edu4": 20, "Shape_Length": 43053.825866352665, "Shape_Area": 96389592.200262293, "total_2021": 143, "total_2022": 133 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.99319589485134, 29.49648815552473 ], [ -94.993608894846773, 29.496201155477472 ], [ -94.992947894735863, 29.495071155494543 ], [ -94.99162189460219, 29.492805154432705 ], [ -94.990547894315498, 29.490975154119575 ], [ -94.990158894302681, 29.49030415438077 ], [ -94.98738289360179, 29.485560152974717 ], [ -94.985487892038151, 29.482325152935598 ], [ -94.985108892118944, 29.481679152436261 ], [ -94.984341892100886, 29.48037115255541 ], [ -94.981504890710013, 29.475532151185163 ], [ -94.979663890188462, 29.472391150992948 ], [ -94.978951890276846, 29.471365150653845 ], [ -94.97758089002744, 29.471053151014786 ], [ -94.976399890013667, 29.470784150784507 ], [ -94.975341888917512, 29.470547150826381 ], [ -94.974872889325965, 29.470442150660393 ], [ -94.974630889640437, 29.470440150725068 ], [ -94.974279889374415, 29.470471150507215 ], [ -94.973880889137632, 29.470565150335979 ], [ -94.973481888426903, 29.470737150645153 ], [ -94.973169889052627, 29.470987151133365 ], [ -94.972934889130556, 29.47120615127011 ], [ -94.97273288867575, 29.471565150663952 ], [ -94.972140888656398, 29.473591151119773 ], [ -94.971561888532108, 29.475574151832014 ], [ -94.971115888974992, 29.477103152449139 ], [ -94.9700888887525, 29.480622152646912 ], [ -94.969152887906148, 29.48382615344158 ], [ -94.969065888071952, 29.484126153811488 ], [ -94.968994888023943, 29.484369153809311 ], [ -94.968953888593603, 29.484508153952898 ], [ -94.968703887967862, 29.485373154187517 ], [ -94.968604887979367, 29.485636153665254 ], [ -94.968582888430518, 29.485792153879625 ], [ -94.968300888332109, 29.486768153759442 ], [ -94.968267888542087, 29.486881154393906 ], [ -94.96749688816611, 29.489551154747122 ], [ -94.967446888262458, 29.489738155127178 ], [ -94.966971888321368, 29.490343154906355 ], [ -94.966890888404009, 29.490432154739455 ], [ -94.966484887666141, 29.490632155398025 ], [ -94.966098887782479, 29.490758155371335 ], [ -94.965901887861847, 29.490775155236367 ], [ -94.965589887862222, 29.490797154868702 ], [ -94.965524887279614, 29.490799154840573 ], [ -94.965009887253387, 29.490733155460596 ], [ -94.964320887081442, 29.490581154692936 ], [ -94.963097887510699, 29.4903101549795 ], [ -94.962651886724544, 29.490212155485967 ], [ -94.961443886831319, 29.489943155455023 ], [ -94.958280885796938, 29.489245154698995 ], [ -94.9577768854666, 29.490949155743845 ], [ -94.957242885652008, 29.492735155791681 ], [ -94.956207885485853, 29.496308156907766 ], [ -94.955806885231837, 29.497688156973783 ], [ -94.955159885557535, 29.499871157311087 ], [ -94.955118885638441, 29.499967157239443 ], [ -94.954126885299971, 29.50342915831531 ], [ -94.954802885846661, 29.503611157813133 ], [ -94.954918885760733, 29.503652158004172 ], [ -94.95524888512621, 29.503767158512744 ], [ -94.955321885720451, 29.503793158323873 ], [ -94.955700885284983, 29.503926157906459 ], [ -94.95847888661298, 29.50490015831355 ], [ -94.958706886177524, 29.504980158585987 ], [ -94.959147886378361, 29.505135158687892 ], [ -94.959363886248894, 29.505210158063715 ], [ -94.959233886951665, 29.505670158213739 ], [ -94.958895886930407, 29.506384158135276 ], [ -94.958830886327519, 29.506525158745131 ], [ -94.958967886165013, 29.50653815893115 ], [ -94.959017887052894, 29.506564159057291 ], [ -94.9595168863531, 29.506826158270115 ], [ -94.959683886870053, 29.506914158710991 ], [ -94.959882886449492, 29.507019158651278 ], [ -94.959976886806615, 29.507030159101653 ], [ -94.960254887013591, 29.50710515863242 ], [ -94.960513886606321, 29.507205158508235 ], [ -94.960594887344712, 29.507188159003888 ], [ -94.960677887293642, 29.507171158483693 ], [ -94.961010887236071, 29.507109158310431 ], [ -94.961417887556152, 29.50719615859326 ], [ -94.961862886959452, 29.507263158903744 ], [ -94.961879887096671, 29.50726615894682 ], [ -94.961968887796971, 29.50727915834911 ], [ -94.962134887205792, 29.507346159083749 ], [ -94.96239888785658, 29.50745315876728 ], [ -94.962566887689746, 29.507486158511878 ], [ -94.963241887545081, 29.507617158973773 ], [ -94.963818888458405, 29.507736159118942 ], [ -94.964290888596551, 29.508077158553878 ], [ -94.964480888009689, 29.508176158441167 ], [ -94.964940888527593, 29.508418158671411 ], [ -94.965901888901058, 29.508537158584719 ], [ -94.966522888552191, 29.508523159105334 ], [ -94.96689288845046, 29.508465158991108 ], [ -94.967365889061412, 29.50851015870569 ], [ -94.968311889537873, 29.508895158592757 ], [ -94.969849889700299, 29.50937015900562 ], [ -94.970950889998122, 29.509686158581925 ], [ -94.970987889990852, 29.509697158996762 ], [ -94.971563889667891, 29.509964158555732 ], [ -94.971888890162646, 29.510082159271327 ], [ -94.972243890466359, 29.510157159050614 ], [ -94.972687889928324, 29.510172158646405 ], [ -94.972908890729116, 29.510143159218195 ], [ -94.973100890207419, 29.510187158979758 ], [ -94.97398589038022, 29.50963015911454 ], [ -94.974159891179866, 29.509457158364135 ], [ -94.974779891170698, 29.509083158957935 ], [ -94.975512891205668, 29.508551158622836 ], [ -94.976277890899624, 29.50803115846081 ], [ -94.976804891250453, 29.507674157947015 ], [ -94.977057891387958, 29.507504158277523 ], [ -94.977821891781772, 29.506981158309912 ], [ -94.978593891763822, 29.506453157603296 ], [ -94.979354892225984, 29.505931157700171 ], [ -94.980121891694623, 29.505407157388792 ], [ -94.980895892574978, 29.504876157102878 ], [ -94.981660892377946, 29.504350157056212 ], [ -94.982413892152152, 29.503829157523509 ], [ -94.983125892860897, 29.503337157055949 ], [ -94.983184892266124, 29.503297156919452 ], [ -94.983351892950907, 29.503188157379729 ], [ -94.983945892679031, 29.502787156618954 ], [ -94.984600893255148, 29.502345157331437 ], [ -94.984729892845834, 29.502255157148255 ], [ -94.985486893257615, 29.501731156425571 ], [ -94.986261893160048, 29.501195156549237 ], [ -94.987019894091546, 29.500670156467184 ], [ -94.987774894136962, 29.500147156709978 ], [ -94.988551894407749, 29.49960815624852 ], [ -94.988916894230371, 29.499351156375635 ], [ -94.989302893811299, 29.49909915634754 ], [ -94.990090894671752, 29.498584155698129 ], [ -94.99044989415053, 29.498350156155087 ], [ -94.990864894108128, 29.498052155681616 ], [ -94.991614894186455, 29.497514155426838 ], [ -94.992412895057981, 29.497020155871461 ], [ -94.992483895136715, 29.496972155203661 ], [ -94.992839895438806, 29.496733155447199 ], [ -94.993033894604039, 29.496602155008226 ], [ -94.99319589485134, 29.49648815552473 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 454, "Tract": "48167720702", "Area_SqMi": 1.3082606602397973, "total_2009": 1845, "total_2010": 1916, "total_2011": 2149, "total_2012": 1994, "total_2013": 2138, "total_2014": 1915, "total_2015": 1618, "total_2016": 1538, "total_2017": 1451, "total_2018": 1365, "total_2019": 1517, "total_2020": 1175, "age1": 372, "age2": 633, "age3": 248, "earn1": 310, "earn2": 374, "earn3": 569, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 1, "naics_s06": 2, "naics_s07": 302, "naics_s08": 200, "naics_s09": 0, "naics_s10": 92, "naics_s11": 22, "naics_s12": 86, "naics_s13": 0, "naics_s14": 4, "naics_s15": 4, "naics_s16": 195, "naics_s17": 30, "naics_s18": 257, "naics_s19": 44, "naics_s20": 0, "race1": 935, "race2": 188, "race3": 15, "race4": 93, "race5": 1, "race6": 21, "ethnicity1": 872, "ethnicity2": 381, "edu1": 182, "edu2": 224, "edu3": 296, "edu4": 179, "Shape_Length": 27682.795639862856, "Shape_Area": 36472068.096987545, "total_2021": 1258, "total_2022": 1253 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.11715992718635, 29.508059153801312 ], [ -95.117145927266492, 29.508036153994038 ], [ -95.117042927898041, 29.507938153472129 ], [ -95.116768926941674, 29.507676153605146 ], [ -95.114217926301976, 29.503277152370199 ], [ -95.1141129264591, 29.503104152658189 ], [ -95.114010926779372, 29.502935152758248 ], [ -95.112318925928392, 29.500124151870018 ], [ -95.111345925276325, 29.498558151572052 ], [ -95.110683925191111, 29.497368151609507 ], [ -95.110570925477205, 29.497184151793043 ], [ -95.11037392564738, 29.496845152043214 ], [ -95.110106924819846, 29.496385151244258 ], [ -95.109901925086561, 29.496031151785033 ], [ -95.107264923737389, 29.491696150745682 ], [ -95.106935924361309, 29.491132150353028 ], [ -95.106868924087749, 29.491020150084598 ], [ -95.106671923627516, 29.490692150559397 ], [ -95.106536923425423, 29.490450150500028 ], [ -95.105444923282334, 29.488635150168413 ], [ -95.105137923144113, 29.488902150065773 ], [ -95.104170923238556, 29.489950150655272 ], [ -95.103692923105598, 29.490433150590878 ], [ -95.10341192313463, 29.490640150615608 ], [ -95.103125923466223, 29.490847150524033 ], [ -95.102923922560279, 29.49095815023399 ], [ -95.102706922504282, 29.49104315056961 ], [ -95.102451922694542, 29.491122150897436 ], [ -95.102048922744231, 29.49123915106447 ], [ -95.101757922659104, 29.491332150386526 ], [ -95.10103792286526, 29.491339150731179 ], [ -95.099659921813469, 29.491332151227883 ], [ -95.097813921764327, 29.491304151123039 ], [ -95.097506921130346, 29.491297151139481 ], [ -95.097373921200159, 29.491290150474118 ], [ -95.097373921568845, 29.491178150967713 ], [ -95.095869921246603, 29.491166150456881 ], [ -95.094493920608443, 29.491183150502167 ], [ -95.091112919891714, 29.491224150780024 ], [ -95.090575920259241, 29.491230150805443 ], [ -95.08770691928305, 29.491279151260237 ], [ -95.087704919063825, 29.491431151334805 ], [ -95.086999919336719, 29.491444151431889 ], [ -95.08807291897196, 29.492549151123395 ], [ -95.088733919220488, 29.493054151821482 ], [ -95.091259920231565, 29.495703152348096 ], [ -95.091207920705017, 29.495740151743998 ], [ -95.096477921373875, 29.501119152602065 ], [ -95.09869692273405, 29.503385153419803 ], [ -95.101473923771977, 29.506220153846627 ], [ -95.103435923426105, 29.508235154419456 ], [ -95.10547692418713, 29.5103331541643 ], [ -95.10568892447391, 29.510292154545315 ], [ -95.105795924697418, 29.510296154236372 ], [ -95.105912924576558, 29.510268154314502 ], [ -95.106120924283886, 29.510219154325803 ], [ -95.106345925000696, 29.510156154160679 ], [ -95.106778924968708, 29.510031154296016 ], [ -95.10705292475761, 29.509926154430048 ], [ -95.107418925354949, 29.509783153980656 ], [ -95.107742925030749, 29.509682153908482 ], [ -95.108054925549254, 29.509602154549317 ], [ -95.108274925364881, 29.50958015457482 ], [ -95.108512925009848, 29.509591154260992 ], [ -95.108928925360473, 29.509655154612311 ], [ -95.109362925647773, 29.50978315431766 ], [ -95.109747925553876, 29.50994215439249 ], [ -95.110064926092363, 29.510102154329047 ], [ -95.110388925494192, 29.510298154415711 ], [ -95.110676925974715, 29.510484154088282 ], [ -95.110999926307173, 29.510639154235712 ], [ -95.111305925928306, 29.510750154613529 ], [ -95.111629926526774, 29.510851154202594 ], [ -95.111977926615864, 29.510905154295138 ], [ -95.11238192626881, 29.510931154752885 ], [ -95.112753926255579, 29.510889154510597 ], [ -95.113120926448659, 29.510830154654034 ], [ -95.113425926232978, 29.51074515444877 ], [ -95.113578926414078, 29.510702154050477 ], [ -95.113902926933889, 29.510548154758322 ], [ -95.114177926777529, 29.510362154568178 ], [ -95.114428926455815, 29.51013915423405 ], [ -95.114697926709795, 29.50985715434058 ], [ -95.114857927192261, 29.50964215439269 ], [ -95.115186927250832, 29.509224154433657 ], [ -95.115503927002422, 29.508900154032872 ], [ -95.115693926978267, 29.508767153776816 ], [ -95.1158399275497, 29.508688153860195 ], [ -95.116000926688827, 29.508622153709933 ], [ -95.11605992756401, 29.50860215363031 ], [ -95.116267926868105, 29.508544153557608 ], [ -95.116481926951707, 29.508464153344544 ], [ -95.116689927576516, 29.508347153908293 ], [ -95.11677792683092, 29.508300153312192 ], [ -95.116854927786918, 29.508256153551958 ], [ -95.116992927397249, 29.508188153296018 ], [ -95.117025927383864, 29.508171153869597 ], [ -95.117092927029191, 29.508116153677648 ], [ -95.11715992718635, 29.508059153801312 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 455, "Tract": "48167726102", "Area_SqMi": 31.252564125032848, "total_2009": 204, "total_2010": 247, "total_2011": 284, "total_2012": 540, "total_2013": 533, "total_2014": 563, "total_2015": 397, "total_2016": 464, "total_2017": 477, "total_2018": 586, "total_2019": 644, "total_2020": 537, "age1": 92, "age2": 212, "age3": 86, "earn1": 48, "earn2": 111, "earn3": 231, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 0, "naics_s07": 32, "naics_s08": 0, "naics_s09": 0, "naics_s10": 154, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 46, "naics_s15": 0, "naics_s16": 0, "naics_s17": 74, "naics_s18": 71, "naics_s19": 4, "naics_s20": 0, "race1": 271, "race2": 81, "race3": 1, "race4": 30, "race5": 0, "race6": 7, "ethnicity1": 300, "ethnicity2": 90, "edu1": 60, "edu2": 87, "edu3": 91, "edu4": 60, "Shape_Length": 155534.23926163485, "Shape_Area": 871267998.50783587, "total_2021": 557, "total_2022": 390 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.129941912537447, 29.085623065395193 ], [ -95.12895891247463, 29.084671065136646 ], [ -95.125359911869594, 29.081182065248107 ], [ -95.125238910920928, 29.081064064736616 ], [ -95.123979911540943, 29.080296064505546 ], [ -95.120686910530196, 29.083473065831797 ], [ -95.119249910446243, 29.084854066325335 ], [ -95.118891910007264, 29.085198066333493 ], [ -95.11861290945474, 29.084608065433315 ], [ -95.117905909452531, 29.083951066132705 ], [ -95.117472909504826, 29.08377906567712 ], [ -95.11741990989637, 29.083758066130738 ], [ -95.116138909018048, 29.083372065705358 ], [ -95.115809909017287, 29.083372066038574 ], [ -95.115343908492463, 29.083372065504577 ], [ -95.114415908226903, 29.083526065958395 ], [ -95.113575908903044, 29.083874065769123 ], [ -95.112026908468039, 29.084428065740042 ], [ -95.109880907476253, 29.085198065912351 ], [ -95.108185906819301, 29.085805066185433 ], [ -95.106815907340433, 29.087156066731151 ], [ -95.105931907012106, 29.0885460669626 ], [ -95.10491590681886, 29.089280066945975 ], [ -95.102617906578075, 29.092832068509846 ], [ -95.100143905234788, 29.095805069123248 ], [ -95.096166904443848, 29.099705069344036 ], [ -95.094443904391184, 29.101173070440691 ], [ -95.09117390344548, 29.10399107064638 ], [ -95.084898902113352, 29.108856071568283 ], [ -95.084633901909982, 29.108934072252957 ], [ -95.078357900337537, 29.113413073363876 ], [ -95.074070900174675, 29.116463073646447 ], [ -95.069650898891425, 29.119436074478042 ], [ -95.065319897222437, 29.122294075385948 ], [ -95.056568895314214, 29.128086077209741 ], [ -95.053753894754706, 29.129749077414225 ], [ -95.053563894604878, 29.129862077003484 ], [ -95.036768890945751, 29.140597080193729 ], [ -95.028191888767438, 29.145810081140951 ], [ -95.017448886691255, 29.152451083451048 ], [ -95.008208884799274, 29.158050084658832 ], [ -94.98878988003753, 29.1697650878986 ], [ -94.981811878903841, 29.174010088695034 ], [ -94.982513878328135, 29.175015088834108 ], [ -94.982807878951405, 29.175477088985279 ], [ -94.983168878426056, 29.175949089149196 ], [ -94.983400878604641, 29.176236089353363 ], [ -94.983612879159963, 29.176454089587157 ], [ -94.982398878572198, 29.177186089478909 ], [ -94.979165877468802, 29.179136090424866 ], [ -94.978994877683292, 29.179238090022324 ], [ -94.978319878013608, 29.17964709022802 ], [ -94.977629877962343, 29.180064090466306 ], [ -94.976350877375623, 29.180836090671228 ], [ -94.976234876966146, 29.180905090666997 ], [ -94.976465876930575, 29.181156090912182 ], [ -94.97712587726808, 29.181955090256423 ], [ -94.977598877231287, 29.182568090497391 ], [ -94.978092878254785, 29.183183090727397 ], [ -94.978568878222177, 29.183787091237548 ], [ -94.979049878186359, 29.184398090793383 ], [ -94.979543878329636, 29.185009091601628 ], [ -94.980016878097501, 29.185594091587276 ], [ -94.980522878929605, 29.186220091317622 ], [ -94.98117387906737, 29.187033091761784 ], [ -94.981605878711534, 29.187572091820854 ], [ -94.981993879523003, 29.188104091531269 ], [ -94.982404879687593, 29.188613091495299 ], [ -94.982840879112544, 29.189121092295117 ], [ -94.983264879505072, 29.189630092164197 ], [ -94.985187879943325, 29.192067092801647 ], [ -94.986967880612212, 29.19430809288901 ], [ -94.987921880885821, 29.195496092711462 ], [ -94.988255881355386, 29.195912092901352 ], [ -94.98857688141905, 29.196312092973745 ], [ -94.989263881347782, 29.197167093148696 ], [ -94.989380881311092, 29.197313093801842 ], [ -94.989979881653923, 29.198059093774081 ], [ -94.990454882168308, 29.198686093733826 ], [ -94.990560881314082, 29.198826094015832 ], [ -94.990700881621123, 29.199004093999235 ], [ -94.991291882320127, 29.199759093731981 ], [ -94.991629882525572, 29.200197093728459 ], [ -94.991672882267622, 29.200253094329899 ], [ -94.992322882746905, 29.200876094308072 ], [ -94.998334884568962, 29.20733109490358 ], [ -94.998368883565647, 29.207367095354247 ], [ -94.99877388442988, 29.207803095753395 ], [ -95.000271884148276, 29.209592095696738 ], [ -95.002918885652861, 29.212663096394525 ], [ -95.002928885316408, 29.212675096448933 ], [ -95.003646885789664, 29.213507096799205 ], [ -95.004458886073621, 29.214449096506208 ], [ -95.008759887672895, 29.219436097326117 ], [ -95.012414888035764, 29.22368709787435 ], [ -95.016708889389704, 29.228704099017001 ], [ -95.021387891018918, 29.234170099888697 ], [ -95.021560890828482, 29.234143099887358 ], [ -95.021640890755577, 29.23416010039324 ], [ -95.021657890972264, 29.234256100337998 ], [ -95.02180189121438, 29.234320100199028 ], [ -95.02202689114489, 29.234288099663281 ], [ -95.022138891285962, 29.234192100067435 ], [ -95.022331890984631, 29.234047100466729 ], [ -95.022636891842836, 29.233886100249308 ], [ -95.022765891380104, 29.233758100367758 ], [ -95.022845891420147, 29.233597099948366 ], [ -95.023183891102136, 29.233276099892905 ], [ -95.023263891608039, 29.233067100218577 ], [ -95.023359891457631, 29.233067099752152 ], [ -95.02347289135372, 29.232955099755241 ], [ -95.02356889125555, 29.232842099530444 ], [ -95.023729891453328, 29.232730099459946 ], [ -95.023857892129044, 29.232521099535607 ], [ -95.023922892075717, 29.232296099535766 ], [ -95.02401889175205, 29.232216099920628 ], [ -95.024034891561826, 29.232119099375677 ], [ -95.024130891417144, 29.232007099131557 ], [ -95.024195891417477, 29.232023099954031 ], [ -95.024275891852071, 29.231991099547002 ], [ -95.024371892009654, 29.23195909963945 ], [ -95.024468892158325, 29.231830099476948 ], [ -95.024500892297127, 29.231766099448038 ], [ -95.024532891728612, 29.231718099669468 ], [ -95.024580892289464, 29.231686099823623 ], [ -95.024644892344085, 29.231686099219466 ], [ -95.024725891809553, 29.231654099459739 ], [ -95.024757892233822, 29.231541099096518 ], [ -95.02478989210212, 29.231477098996045 ], [ -95.024885891779846, 29.231413099069346 ], [ -95.024998892328611, 29.231316099607593 ], [ -95.025046891896579, 29.231188099716551 ], [ -95.025094892167843, 29.23102709892073 ], [ -95.025110891499537, 29.230850099576458 ], [ -95.025142892436634, 29.230626099364066 ], [ -95.025191891549511, 29.230529099640467 ], [ -95.025271891501419, 29.230497099562673 ], [ -95.025351892364341, 29.23052909967042 ], [ -95.025496892029764, 29.230497099426849 ], [ -95.025640891613975, 29.230449098724577 ], [ -95.025737892406497, 29.230368099454481 ], [ -95.025849892567095, 29.230176098889142 ], [ -95.02593089184721, 29.230079098782891 ], [ -95.026026892554185, 29.230015099017866 ], [ -95.026026892200264, 29.229951098810982 ], [ -95.026122892156906, 29.229854098956885 ], [ -95.026251891916615, 29.229790098831568 ], [ -95.02636389268784, 29.229678099256429 ], [ -95.026444892205376, 29.229485099029024 ], [ -95.026476892532742, 29.229212099169487 ], [ -95.026540892004562, 29.229099099021887 ], [ -95.026652891758886, 29.2290350991147 ], [ -95.026717892652229, 29.22903509851103 ], [ -95.026877892361696, 29.229019099182157 ], [ -95.027022892204982, 29.228939099248791 ], [ -95.027279892792464, 29.228537099139949 ], [ -95.027536892857796, 29.228216098466959 ], [ -95.02766489217349, 29.227927098294646 ], [ -95.027680892080511, 29.227718098198547 ], [ -95.027690892460996, 29.227600098800625 ], [ -95.02791089239588, 29.22709609881176 ], [ -95.028303892864969, 29.22632309804197 ], [ -95.028601892611647, 29.225771098510755 ], [ -95.028881892823662, 29.224959098003886 ], [ -95.029032892907878, 29.224381097815169 ], [ -95.029263893034638, 29.223953097573027 ], [ -95.029309892782038, 29.223745097655975 ], [ -95.029418892864527, 29.223500097182491 ], [ -95.029638892680396, 29.223311097348187 ], [ -95.029669892445824, 29.22301209751021 ], [ -95.029827893029648, 29.222444097353041 ], [ -95.02976489236147, 29.222034097122247 ], [ -95.029732893110904, 29.221876097027593 ], [ -95.029858892664748, 29.221781097143232 ], [ -95.02988989230812, 29.221513097420203 ], [ -95.029764892937038, 29.2212140971419 ], [ -95.029937892873249, 29.220946096942594 ], [ -95.03014189312789, 29.220741097118829 ], [ -95.030204892869975, 29.220504097340033 ], [ -95.030094893094059, 29.220315096628827 ], [ -95.030141892336374, 29.22012609685444 ], [ -95.030471893014052, 29.219511096312381 ], [ -95.030581892996466, 29.218990097023052 ], [ -95.030439893008122, 29.218549096514277 ], [ -95.030691892856936, 29.218296096590354 ], [ -95.03075389318802, 29.217855096246524 ], [ -95.030800892387518, 29.217256096635381 ], [ -95.031083892598119, 29.216909096638016 ], [ -95.031523893309952, 29.216420095755069 ], [ -95.031727893359829, 29.216011096129851 ], [ -95.032120893168354, 29.215727095720659 ], [ -95.032591893439104, 29.215285095922614 ], [ -95.032921892919248, 29.215033096096864 ], [ -95.033078893629963, 29.214828096036868 ], [ -95.032984893465795, 29.214655095605814 ], [ -95.032827893156778, 29.214607095904753 ], [ -95.032811893318637, 29.214465095457147 ], [ -95.032937893023629, 29.214213095806983 ], [ -95.032974893507145, 29.214116095631994 ], [ -95.033047892794073, 29.213929095912633 ], [ -95.033314893374751, 29.213756095133636 ], [ -95.033548893340495, 29.212745094816498 ], [ -95.0336918934767, 29.212126095375513 ], [ -95.0353698937042, 29.210459094988053 ], [ -95.046713896423555, 29.204351093509821 ], [ -95.051897897354465, 29.202449092289136 ], [ -95.052063897254499, 29.202336092178399 ], [ -95.052150898105396, 29.202243092134445 ], [ -95.052276897289445, 29.202128092232996 ], [ -95.052447897318828, 29.202307092286944 ], [ -95.052526897983938, 29.202197092788122 ], [ -95.052856897510566, 29.202055092702423 ], [ -95.052918897941652, 29.201865092161221 ], [ -95.053107898227935, 29.201818092001108 ], [ -95.053186898395296, 29.201676092624879 ], [ -95.053563898084676, 29.201645091900723 ], [ -95.05376789828594, 29.201645092040874 ], [ -95.053845898439363, 29.201487092281415 ], [ -95.053939898032908, 29.201361091812259 ], [ -95.054222897770202, 29.201298092061062 ], [ -95.054646898685235, 29.201077091780789 ], [ -95.055070898749008, 29.200840091788052 ], [ -95.055338898591415, 29.200777091626236 ], [ -95.055479898311262, 29.200667092290111 ], [ -95.055503898399451, 29.200614091730785 ], [ -95.055557898074781, 29.200493092311941 ], [ -95.055506898363262, 29.20010409203994 ], [ -95.055773898333612, 29.200056092000377 ], [ -95.055915898786651, 29.200104091466983 ], [ -95.0560408982072, 29.200215091742546 ], [ -95.056258898913384, 29.200196092341617 ], [ -95.056380898193282, 29.20015309218309 ], [ -95.056570898903473, 29.200070091604356 ], [ -95.056602898846307, 29.200011091690921 ], [ -95.056545898331976, 29.199921092183779 ], [ -95.056145899080093, 29.199284091810377 ], [ -95.056550899041028, 29.198652091691876 ], [ -95.061681899675946, 29.19065709004331 ], [ -95.066185900159837, 29.183639087895127 ], [ -95.06783090130709, 29.181076087197745 ], [ -95.070607901570924, 29.176746086776035 ], [ -95.071586901127191, 29.175221085918466 ], [ -95.077522902743212, 29.165989084467064 ], [ -95.085131903881219, 29.154478081126996 ], [ -95.085642904748099, 29.153704081136564 ], [ -95.088499905, 29.149382080036425 ], [ -95.08958290513705, 29.147717079982385 ], [ -95.090552904893556, 29.14622607951323 ], [ -95.090651904773367, 29.146074079306715 ], [ -95.092594905676961, 29.143086078721275 ], [ -95.096274905816969, 29.137428077380676 ], [ -95.102927908061346, 29.127190075545741 ], [ -95.104228908048867, 29.1251900748221 ], [ -95.125173911602147, 29.093063067323349 ], [ -95.129941912537447, 29.085623065395193 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 456, "Tract": "48167721402", "Area_SqMi": 0.55330807969773776, "total_2009": 801, "total_2010": 837, "total_2011": 927, "total_2012": 789, "total_2013": 767, "total_2014": 830, "total_2015": 818, "total_2016": 879, "total_2017": 903, "total_2018": 880, "total_2019": 931, "total_2020": 878, "age1": 358, "age2": 334, "age3": 129, "earn1": 251, "earn2": 411, "earn3": 159, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 13, "naics_s06": 2, "naics_s07": 400, "naics_s08": 20, "naics_s09": 7, "naics_s10": 0, "naics_s11": 42, "naics_s12": 6, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 299, "naics_s19": 18, "naics_s20": 0, "race1": 631, "race2": 139, "race3": 1, "race4": 36, "race5": 2, "race6": 12, "ethnicity1": 568, "ethnicity2": 253, "edu1": 104, "edu2": 144, "edu3": 140, "edu4": 75, "Shape_Length": 16619.598827496873, "Shape_Area": 15425282.265730107, "total_2021": 898, "total_2022": 821 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.036878908594574, 29.540893163385991 ], [ -95.036844908485762, 29.540777163294813 ], [ -95.036689907862751, 29.540250162851869 ], [ -95.036422908124919, 29.53930816252986 ], [ -95.036340908371471, 29.539060162779634 ], [ -95.036107908237881, 29.538302162393638 ], [ -95.035762907601182, 29.537154162084946 ], [ -95.035369907459241, 29.535881162507557 ], [ -95.034976907231794, 29.534498162112982 ], [ -95.034827907547736, 29.534088161349647 ], [ -95.034795906920877, 29.533952161314208 ], [ -95.034432907366977, 29.532855161777206 ], [ -95.034331907667038, 29.532550161536893 ], [ -95.034101907357027, 29.531894161059348 ], [ -95.033383906627279, 29.529820160667885 ], [ -95.033289907294929, 29.529845160533959 ], [ -95.033254907297703, 29.529854161105849 ], [ -95.032941906663496, 29.529937160788382 ], [ -95.030238905972084, 29.530649161008224 ], [ -95.029799905582934, 29.530766161469188 ], [ -95.029072905806132, 29.530960161717072 ], [ -95.028951905861206, 29.530988160946279 ], [ -95.028230905783346, 29.53115516146147 ], [ -95.027423904967947, 29.531409161454217 ], [ -95.027333905811119, 29.531467161593952 ], [ -95.027270904867848, 29.53151016135266 ], [ -95.026743904828024, 29.531859161769464 ], [ -95.025758905450331, 29.532581161447421 ], [ -95.024906904970976, 29.53320016202516 ], [ -95.024345904865697, 29.53360716223542 ], [ -95.022433904551036, 29.535039162662208 ], [ -95.021783903670709, 29.535528162181492 ], [ -95.020974903848369, 29.536133162796215 ], [ -95.020033904130457, 29.536838162541958 ], [ -95.019936903768453, 29.536911162623063 ], [ -95.018764903549155, 29.537725162999642 ], [ -95.018633902887217, 29.537800163197304 ], [ -95.018386903129127, 29.537940162761224 ], [ -95.018149903189837, 29.538075162973392 ], [ -95.018871904025289, 29.539443163391621 ], [ -95.019509903484433, 29.540492163935888 ], [ -95.019852903347555, 29.541063163914895 ], [ -95.020183904305298, 29.540995163596186 ], [ -95.020662904248439, 29.540897163717862 ], [ -95.020763903857699, 29.540876163494694 ], [ -95.020784904382424, 29.540872163497458 ], [ -95.02080890379726, 29.540867163975104 ], [ -95.020858904542365, 29.540857164013996 ], [ -95.021225904241518, 29.540843163937023 ], [ -95.021438903947143, 29.540835163587104 ], [ -95.02210390456132, 29.540811163171274 ], [ -95.022655904295547, 29.540791163684954 ], [ -95.022740904448526, 29.540788163657691 ], [ -95.024255904705285, 29.540749163782859 ], [ -95.025379904807295, 29.540720163184456 ], [ -95.025502905734115, 29.540718163858127 ], [ -95.025922905426228, 29.540712163518311 ], [ -95.026018905576962, 29.540711163091522 ], [ -95.026039905185641, 29.540711163466142 ], [ -95.026057905611864, 29.540711163162378 ], [ -95.026085905762727, 29.540710163669598 ], [ -95.026117905557172, 29.540709163887417 ], [ -95.026218905738816, 29.540708163879597 ], [ -95.026238904955335, 29.54070816337752 ], [ -95.026642905917782, 29.540702163728007 ], [ -95.027146905857052, 29.540696163397687 ], [ -95.027542905299569, 29.540690163400207 ], [ -95.027617906101455, 29.540690163805245 ], [ -95.027692905509426, 29.540689163822854 ], [ -95.027926905499896, 29.540686162940641 ], [ -95.028365906446297, 29.540680163350228 ], [ -95.028522906083353, 29.540678163732114 ], [ -95.028776905787183, 29.5406741629374 ], [ -95.029137906173887, 29.540675163454225 ], [ -95.030364906194308, 29.540678162857443 ], [ -95.031197906751672, 29.540679163052452 ], [ -95.031757906377706, 29.540680163173644 ], [ -95.032086906842665, 29.540682163174516 ], [ -95.033594906876729, 29.540685163220804 ], [ -95.033756907321987, 29.540695163197906 ], [ -95.033885906993859, 29.540702163513266 ], [ -95.034361908019363, 29.540731162778712 ], [ -95.034739908061496, 29.540753163118559 ], [ -95.035263907880704, 29.540784163277408 ], [ -95.035380907829904, 29.540791162889143 ], [ -95.035498907595425, 29.540799163458423 ], [ -95.035757908221981, 29.540814163496197 ], [ -95.035894907850704, 29.540822162847821 ], [ -95.036557907710588, 29.540870163173299 ], [ -95.036766908089092, 29.540885163131406 ], [ -95.036878908594574, 29.540893163385991 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 457, "Tract": "48167723503", "Area_SqMi": 8.0543850858458264, "total_2009": 188, "total_2010": 138, "total_2011": 126, "total_2012": 191, "total_2013": 152, "total_2014": 168, "total_2015": 268, "total_2016": 184, "total_2017": 158, "total_2018": 174, "total_2019": 158, "total_2020": 132, "age1": 20, "age2": 57, "age3": 57, "earn1": 20, "earn2": 53, "earn3": 61, "naics_s01": 17, "naics_s02": 7, "naics_s03": 0, "naics_s04": 13, "naics_s05": 64, "naics_s06": 10, "naics_s07": 12, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 5, "naics_s20": 0, "race1": 128, "race2": 2, "race3": 0, "race4": 4, "race5": 0, "race6": 0, "ethnicity1": 105, "ethnicity2": 29, "edu1": 22, "edu2": 29, "edu3": 35, "edu4": 28, "Shape_Length": 77063.943983569872, "Shape_Area": 224542470.97553572, "total_2021": 122, "total_2022": 134 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.19592494362594, 29.409465130763817 ], [ -95.19531194332977, 29.408492130423646 ], [ -95.19428294317153, 29.407280130199936 ], [ -95.19339494210989, 29.406081130106152 ], [ -95.192196942317054, 29.40437212987241 ], [ -95.191725942133118, 29.403671129567872 ], [ -95.190511942028593, 29.401869129242495 ], [ -95.190493941332051, 29.401845129712385 ], [ -95.190475941888963, 29.401819129647023 ], [ -95.190460941296493, 29.401796129331828 ], [ -95.190207941253661, 29.401417129371577 ], [ -95.189643941896009, 29.4005161290338 ], [ -95.189240941511443, 29.399873129328011 ], [ -95.189221941192869, 29.399842128865487 ], [ -95.187979940879558, 29.397859128392884 ], [ -95.186906940705427, 29.396214127849312 ], [ -95.184330939735048, 29.392266127792951 ], [ -95.18366793930285, 29.391250127612526 ], [ -95.183465939478054, 29.391166127222149 ], [ -95.177881938090096, 29.383015125462034 ], [ -95.17771593772467, 29.382773125460137 ], [ -95.175601937089652, 29.379630124955728 ], [ -95.172967936435157, 29.375524124022984 ], [ -95.169425934832205, 29.370206123527819 ], [ -95.16940193496572, 29.370171123152968 ], [ -95.169367935233453, 29.370120123551455 ], [ -95.169330935223655, 29.370059123349819 ], [ -95.169299935349088, 29.370013123732353 ], [ -95.169284935235964, 29.369992123057884 ], [ -95.165562933855426, 29.36383512245386 ], [ -95.159463931583133, 29.354925120420752 ], [ -95.152700929111234, 29.345080118384672 ], [ -95.150742929106443, 29.342232118681739 ], [ -95.149480928020509, 29.340394118244269 ], [ -95.149459928440834, 29.340364117874138 ], [ -95.148482928360423, 29.338941117594743 ], [ -95.146815927498238, 29.336515117438648 ], [ -95.14845792840795, 29.338966117708043 ], [ -95.144896927474946, 29.342458118691813 ], [ -95.143708927446013, 29.343634118379953 ], [ -95.142605927389383, 29.344707118724259 ], [ -95.140899926306275, 29.346369119373495 ], [ -95.140725926537684, 29.346539119099539 ], [ -95.138940926228514, 29.348301119698789 ], [ -95.138490925650018, 29.348761119861649 ], [ -95.137381925413635, 29.349850120108716 ], [ -95.13644192542958, 29.350779120178952 ], [ -95.136011925444151, 29.3512151207889 ], [ -95.135796925698713, 29.351419120365325 ], [ -95.135064924924478, 29.35210012113992 ], [ -95.134935925780255, 29.35239612060813 ], [ -95.134933925059016, 29.355018121617491 ], [ -95.1349369255786, 29.356151121527965 ], [ -95.134942925520008, 29.358890122281196 ], [ -95.134943925584651, 29.359283121927202 ], [ -95.134940925532362, 29.360893122372133 ], [ -95.134937925416736, 29.362982122805544 ], [ -95.134936925753379, 29.363411123150016 ], [ -95.134934926239083, 29.36438712373187 ], [ -95.134927926282813, 29.368751124141614 ], [ -95.134926926003175, 29.368976124118241 ], [ -95.134947926466666, 29.369709124434259 ], [ -95.134923926069717, 29.369893124719752 ], [ -95.134839926186601, 29.369978124943607 ], [ -95.134693925840025, 29.370042124243444 ], [ -95.134455925742984, 29.370063124380131 ], [ -95.134246925399566, 29.370051124300101 ], [ -95.133646925649373, 29.370065124176698 ], [ -95.13316792512812, 29.370065124377412 ], [ -95.132084925251121, 29.370065124653745 ], [ -95.130578924644709, 29.370046124800126 ], [ -95.12965392450613, 29.370065124447706 ], [ -95.129347925037337, 29.370065125154611 ], [ -95.129282924850656, 29.370168125120909 ], [ -95.129265924283715, 29.370194124860017 ], [ -95.129106924533644, 29.370552124706045 ], [ -95.128677924526485, 29.371521125416994 ], [ -95.128032924580936, 29.372978125853816 ], [ -95.127297924418841, 29.374625126112591 ], [ -95.127141923758643, 29.374967125527036 ], [ -95.126770923955434, 29.375793126409139 ], [ -95.127470923982415, 29.376033125622921 ], [ -95.133078926231761, 29.377958126525375 ], [ -95.131907926009987, 29.380596127249596 ], [ -95.131507925730133, 29.3814821267814 ], [ -95.131303925975999, 29.381935127450802 ], [ -95.132672925935339, 29.382401127430665 ], [ -95.13352492668713, 29.382688126897666 ], [ -95.134170926186584, 29.382911127453657 ], [ -95.134794926644574, 29.383123127251601 ], [ -95.135728926852536, 29.3834471270725 ], [ -95.137560927177176, 29.38408212716984 ], [ -95.137853927866288, 29.384180127359606 ], [ -95.140130928273109, 29.384973127594971 ], [ -95.139275927530875, 29.386875128325432 ], [ -95.139066927553927, 29.387309127563096 ], [ -95.13897192825543, 29.387550128314203 ], [ -95.138340927654497, 29.388952128407219 ], [ -95.138146928040641, 29.389384128078511 ], [ -95.138083927620542, 29.389514128562933 ], [ -95.139564928304722, 29.390033128917224 ], [ -95.142992928599497, 29.39122012833587 ], [ -95.147212930312079, 29.392693128834555 ], [ -95.148605930722013, 29.393181128549305 ], [ -95.149600930602915, 29.393530129365701 ], [ -95.15304593209666, 29.394714128864756 ], [ -95.155784932932264, 29.395664129354376 ], [ -95.157934933477293, 29.396427129507025 ], [ -95.161106933831249, 29.397496129630618 ], [ -95.167599936067404, 29.39976712928679 ], [ -95.169635936275824, 29.400466129277177 ], [ -95.169769936714587, 29.400512129410291 ], [ -95.170413936337098, 29.400735129429801 ], [ -95.172324937148815, 29.401399129797138 ], [ -95.172599937205547, 29.401494129986826 ], [ -95.174361937749111, 29.402085130275065 ], [ -95.174865937790671, 29.402270130099136 ], [ -95.178438938983618, 29.403487129928507 ], [ -95.181550939709524, 29.4045611303013 ], [ -95.186845940639131, 29.406359130101748 ], [ -95.189556941722628, 29.40730813042056 ], [ -95.1920539428165, 29.40816913025979 ], [ -95.19592494362594, 29.409465130763817 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 458, "Tract": "48167723505", "Area_SqMi": 11.427443085471909, "total_2009": 161, "total_2010": 176, "total_2011": 91, "total_2012": 80, "total_2013": 66, "total_2014": 72, "total_2015": 115, "total_2016": 76, "total_2017": 107, "total_2018": 92, "total_2019": 125, "total_2020": 121, "age1": 30, "age2": 61, "age3": 23, "earn1": 24, "earn2": 41, "earn3": 49, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 29, "naics_s05": 48, "naics_s06": 4, "naics_s07": 6, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 4, "naics_s13": 2, "naics_s14": 10, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 5, "naics_s20": 0, "race1": 107, "race2": 3, "race3": 0, "race4": 2, "race5": 0, "race6": 2, "ethnicity1": 77, "ethnicity2": 37, "edu1": 19, "edu2": 25, "edu3": 31, "edu4": 9, "Shape_Length": 74990.784811557518, "Shape_Area": 318577554.95864785, "total_2021": 111, "total_2022": 114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.14845792840795, 29.338966117708043 ], [ -95.146815927498238, 29.336515117438648 ], [ -95.145046927478958, 29.333717116643438 ], [ -95.144471927072757, 29.332858116841695 ], [ -95.140796925980368, 29.327367115902685 ], [ -95.138816924727536, 29.324409114903553 ], [ -95.131861923121562, 29.314017112997757 ], [ -95.12816392119791, 29.308422112398205 ], [ -95.119961919372088, 29.296115109450586 ], [ -95.11975591938355, 29.295845109322354 ], [ -95.119703919069181, 29.295871109738691 ], [ -95.119508919102358, 29.296033109935234 ], [ -95.119113918979721, 29.296396110133291 ], [ -95.118708918526778, 29.296795109612635 ], [ -95.118413918840801, 29.29710110980502 ], [ -95.115306918149855, 29.300164110462347 ], [ -95.114559918255097, 29.300900110692265 ], [ -95.112100917066726, 29.303387111110304 ], [ -95.111234917278679, 29.304241111673388 ], [ -95.109739917125239, 29.30573111222451 ], [ -95.109626917102119, 29.305847111986878 ], [ -95.108790916904027, 29.306635112621887 ], [ -95.108670916348288, 29.306749112590857 ], [ -95.106592916293778, 29.3088541130283 ], [ -95.105554915437565, 29.309701113467902 ], [ -95.105112915631366, 29.309855112759983 ], [ -95.104985916100532, 29.309909113377046 ], [ -95.104925915984865, 29.309920112717851 ], [ -95.104813915272331, 29.309942112898128 ], [ -95.104702915857231, 29.309965112756171 ], [ -95.100797915049071, 29.31076011382487 ], [ -95.097841913925507, 29.311315114028321 ], [ -95.092775912259299, 29.312267113967771 ], [ -95.091975913028506, 29.312418114123471 ], [ -95.090767912351041, 29.312652114481157 ], [ -95.086227911029198, 29.313528114827911 ], [ -95.085379911349222, 29.313683114350905 ], [ -95.084819910782713, 29.313785114881419 ], [ -95.083137910697829, 29.314091114300357 ], [ -95.081571909493107, 29.314475115101754 ], [ -95.081338910332093, 29.314532114602486 ], [ -95.08111091022441, 29.314619115145781 ], [ -95.080845910210897, 29.315381115069517 ], [ -95.080849909822518, 29.316430115090323 ], [ -95.08084990968014, 29.319030115729809 ], [ -95.080847909864943, 29.320403115635042 ], [ -95.080849910068096, 29.320603116309183 ], [ -95.080849910465929, 29.320691116291567 ], [ -95.080849909586632, 29.321387116075826 ], [ -95.080849910166705, 29.322072116741161 ], [ -95.080858910140549, 29.324126116915707 ], [ -95.080926909926845, 29.328023117642008 ], [ -95.080939910411118, 29.329940118307828 ], [ -95.080954910834436, 29.332287118827537 ], [ -95.080954910079214, 29.332369118470215 ], [ -95.080954910467753, 29.333358118720287 ], [ -95.08095491019526, 29.334802119016267 ], [ -95.080954910606991, 29.335577119624755 ], [ -95.08095491112249, 29.336031119441756 ], [ -95.080954910354251, 29.338989119651522 ], [ -95.080954910715377, 29.339711119692812 ], [ -95.08095491059332, 29.339788120345556 ], [ -95.080962911132218, 29.340608119894405 ], [ -95.080988911534178, 29.343411120910723 ], [ -95.08101191077813, 29.347009121317296 ], [ -95.081014910960036, 29.348958121917718 ], [ -95.081017911836696, 29.350780122409617 ], [ -95.081018911472711, 29.352702123005983 ], [ -95.081018911521525, 29.353636123165238 ], [ -95.081019911879508, 29.354404123354534 ], [ -95.083054912556818, 29.354399122694709 ], [ -95.085238912423279, 29.354397123265965 ], [ -95.089501914086597, 29.354392122505253 ], [ -95.092108914536695, 29.354389122512682 ], [ -95.093752914801669, 29.354378122589278 ], [ -95.095981915678493, 29.354365122738962 ], [ -95.097984916155454, 29.3543521222396 ], [ -95.098606915838388, 29.354361122198103 ], [ -95.100299916516676, 29.354385122094826 ], [ -95.100350916399435, 29.354385122815852 ], [ -95.100481916032322, 29.354379122885454 ], [ -95.10083891704339, 29.354390122454152 ], [ -95.102297916994587, 29.354396122409081 ], [ -95.106563917580843, 29.354392122457202 ], [ -95.109599918639162, 29.354389122355883 ], [ -95.110838919617692, 29.354389122450044 ], [ -95.11365892004892, 29.354389122163635 ], [ -95.115000920677375, 29.35438912201959 ], [ -95.115738920656668, 29.354385121631761 ], [ -95.11737992136581, 29.354386121924534 ], [ -95.118111920878505, 29.354386121968282 ], [ -95.118433920779808, 29.354386121750871 ], [ -95.120614921479515, 29.354392121515197 ], [ -95.125009922804111, 29.354368121591595 ], [ -95.125060922653631, 29.354369121307347 ], [ -95.125533923041957, 29.354375121716739 ], [ -95.126708923363012, 29.354390121590722 ], [ -95.127117923098979, 29.354690121997479 ], [ -95.127295923632715, 29.354940121678961 ], [ -95.127319923781002, 29.35499912141232 ], [ -95.127319923783716, 29.355314121405367 ], [ -95.127347923195231, 29.358938122467162 ], [ -95.131334924871879, 29.358920122685891 ], [ -95.134942925520008, 29.358890122281196 ], [ -95.1349369255786, 29.356151121527965 ], [ -95.134933925059016, 29.355018121617491 ], [ -95.134935925780255, 29.35239612060813 ], [ -95.135064924924478, 29.35210012113992 ], [ -95.135796925698713, 29.351419120365325 ], [ -95.136011925444151, 29.3512151207889 ], [ -95.13644192542958, 29.350779120178952 ], [ -95.137381925413635, 29.349850120108716 ], [ -95.138490925650018, 29.348761119861649 ], [ -95.138940926228514, 29.348301119698789 ], [ -95.140725926537684, 29.346539119099539 ], [ -95.140899926306275, 29.346369119373495 ], [ -95.142605927389383, 29.344707118724259 ], [ -95.143708927446013, 29.343634118379953 ], [ -95.144896927474946, 29.342458118691813 ], [ -95.14845792840795, 29.338966117708043 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 459, "Tract": "48167723403", "Area_SqMi": 4.0648158536332817, "total_2009": 448, "total_2010": 550, "total_2011": 549, "total_2012": 1117, "total_2013": 1035, "total_2014": 1056, "total_2015": 1076, "total_2016": 1133, "total_2017": 1178, "total_2018": 1281, "total_2019": 1383, "total_2020": 1517, "age1": 327, "age2": 834, "age3": 354, "earn1": 291, "earn2": 471, "earn3": 753, "naics_s01": 11, "naics_s02": 0, "naics_s03": 0, "naics_s04": 71, "naics_s05": 7, "naics_s06": 50, "naics_s07": 188, "naics_s08": 2, "naics_s09": 3, "naics_s10": 43, "naics_s11": 7, "naics_s12": 14, "naics_s13": 0, "naics_s14": 9, "naics_s15": 711, "naics_s16": 141, "naics_s17": 6, "naics_s18": 97, "naics_s19": 25, "naics_s20": 130, "race1": 1373, "race2": 76, "race3": 10, "race4": 33, "race5": 1, "race6": 22, "ethnicity1": 1216, "ethnicity2": 299, "edu1": 192, "edu2": 324, "edu3": 373, "edu4": 299, "Shape_Length": 58573.58073784475, "Shape_Area": 113320108.9974331, "total_2021": 1481, "total_2022": 1515 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.146877930020906, 29.393390129109171 ], [ -95.147212930312079, 29.392693128834555 ], [ -95.142992928599497, 29.39122012833587 ], [ -95.139564928304722, 29.390033128917224 ], [ -95.138083927620542, 29.389514128562933 ], [ -95.136299927163307, 29.388830128726781 ], [ -95.129262925735716, 29.386459127748623 ], [ -95.123680923884095, 29.384540128160893 ], [ -95.122552923076555, 29.384152127729056 ], [ -95.121481922973032, 29.383790127740316 ], [ -95.12029292260361, 29.383388127561595 ], [ -95.119091922781919, 29.382958127365352 ], [ -95.118013922301586, 29.382591127530574 ], [ -95.116929922277492, 29.38222212777379 ], [ -95.113094920747017, 29.380909127926429 ], [ -95.112419920804626, 29.380679127501367 ], [ -95.11220292050713, 29.380605127482522 ], [ -95.111892920438223, 29.380493127468775 ], [ -95.111825920480371, 29.380464127748571 ], [ -95.111361920411284, 29.380288127471367 ], [ -95.107700919019734, 29.379061127356685 ], [ -95.106570919120117, 29.378676127502889 ], [ -95.105393918296571, 29.378273127529603 ], [ -95.102317917884548, 29.377221127084688 ], [ -95.097777916341556, 29.375638127071273 ], [ -95.096086916349478, 29.375063126702731 ], [ -95.094965916302428, 29.374674127095354 ], [ -95.093778915493203, 29.374268126416602 ], [ -95.093233915599001, 29.374080127163868 ], [ -95.092369914898924, 29.373782126652159 ], [ -95.089495915009678, 29.372791126389597 ], [ -95.089509914325333, 29.373724126683875 ], [ -95.08951191494566, 29.374222126630158 ], [ -95.089515914444263, 29.374575127372331 ], [ -95.089514915019549, 29.375145127186926 ], [ -95.089496914675806, 29.37652312780213 ], [ -95.089508915062979, 29.377392127227367 ], [ -95.089508914867949, 29.378906128069307 ], [ -95.089508914516401, 29.379489128365464 ], [ -95.089545914857183, 29.380184128527194 ], [ -95.089632915273654, 29.380643128424005 ], [ -95.089703915346746, 29.380792128459646 ], [ -95.089880914472289, 29.381164127950441 ], [ -95.090141914773795, 29.3815241282412 ], [ -95.090509915301354, 29.381851128619743 ], [ -95.09106491550358, 29.382271128167176 ], [ -95.091509915818818, 29.382678128766219 ], [ -95.091768915988439, 29.382987128510013 ], [ -95.091817915124551, 29.383123128992846 ], [ -95.092027915427281, 29.383567129076702 ], [ -95.092138915965947, 29.384073129085664 ], [ -95.092138916120291, 29.384382128876357 ], [ -95.092138915953001, 29.388160129914642 ], [ -95.092132915608858, 29.389518129811545 ], [ -95.092128916166587, 29.390480130528399 ], [ -95.092137916338331, 29.391052130193177 ], [ -95.092137915625145, 29.392765131059821 ], [ -95.092127916052476, 29.395721131253641 ], [ -95.092128916127834, 29.398061132176359 ], [ -95.092138916335728, 29.406758133879954 ], [ -95.092136916661588, 29.406971133477185 ], [ -95.09277091650354, 29.406972133416204 ], [ -95.093856917253746, 29.406844133850701 ], [ -95.095249917513627, 29.406654133749917 ], [ -95.095552917763726, 29.406540133684747 ], [ -95.098508918333422, 29.406540133572786 ], [ -95.098975918366193, 29.406538133503364 ], [ -95.101562919230673, 29.406572133485358 ], [ -95.101709918770695, 29.406510133469027 ], [ -95.101742918648355, 29.406234133432598 ], [ -95.10173391894152, 29.404095132357899 ], [ -95.104606919183382, 29.404064133016316 ], [ -95.108128920849524, 29.404028132576975 ], [ -95.109763921080528, 29.404016132737212 ], [ -95.110260921388928, 29.404016132304704 ], [ -95.110720921138636, 29.404016132836585 ], [ -95.111676921900241, 29.404016132185252 ], [ -95.111967921740131, 29.404040132276741 ], [ -95.112233921450141, 29.404113131946271 ], [ -95.113020921496187, 29.404343132244644 ], [ -95.113383922049465, 29.404428132340527 ], [ -95.113819922083437, 29.404440132251942 ], [ -95.115466922624051, 29.404428132756447 ], [ -95.115749922874429, 29.404434131876169 ], [ -95.115744922393262, 29.40311613171934 ], [ -95.115739922005261, 29.401404131986691 ], [ -95.115765922133576, 29.401083131388198 ], [ -95.115868922151208, 29.400774131144583 ], [ -95.116159922787787, 29.400135131230304 ], [ -95.116222922051989, 29.399996131222458 ], [ -95.116389922829455, 29.399628131758924 ], [ -95.116405922708282, 29.399594130886289 ], [ -95.116650923046961, 29.399053130832147 ], [ -95.117344923044342, 29.399275130962373 ], [ -95.118618923166437, 29.399690131103231 ], [ -95.119408923030576, 29.400002130846968 ], [ -95.119441923558625, 29.40001413132245 ], [ -95.119654922899002, 29.40008713140228 ], [ -95.119919923377608, 29.399495130998474 ], [ -95.120320923129924, 29.398599131206968 ], [ -95.120505923954568, 29.398186130820367 ], [ -95.121556923974254, 29.398547130864046 ], [ -95.121698923860009, 29.398596130665823 ], [ -95.122897924423782, 29.399008131012426 ], [ -95.123578924214883, 29.399240131027383 ], [ -95.123598924583931, 29.399194130833145 ], [ -95.12429692488935, 29.397631130449216 ], [ -95.125729925288269, 29.398224130766863 ], [ -95.126460925481027, 29.398526131136737 ], [ -95.127493925532505, 29.396219130102715 ], [ -95.130984926241354, 29.397419130795203 ], [ -95.130766926243496, 29.397905130071692 ], [ -95.130007925724442, 29.399601130533256 ], [ -95.130134925920757, 29.399644130570454 ], [ -95.130153925800485, 29.399650130601035 ], [ -95.130689926705145, 29.39983313083097 ], [ -95.131694926651591, 29.400174131267086 ], [ -95.133064926847865, 29.400657131113753 ], [ -95.13389192730196, 29.398846130998969 ], [ -95.134058927247708, 29.398479130502345 ], [ -95.134546926742416, 29.397410130284218 ], [ -95.13483592764473, 29.396766130168277 ], [ -95.136548927323418, 29.392944129389019 ], [ -95.138034928287937, 29.393456128916831 ], [ -95.139150927822968, 29.393842129523133 ], [ -95.139284927684329, 29.393888129324587 ], [ -95.144957930178762, 29.395835129337634 ], [ -95.14513193007771, 29.395862129553283 ], [ -95.145259929596293, 29.395918129856362 ], [ -95.145661929527392, 29.396093129987754 ], [ -95.145683930087728, 29.396046130048635 ], [ -95.146235930047979, 29.394817129281911 ], [ -95.146369930041089, 29.394519129570224 ], [ -95.146877930020906, 29.393390129109171 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 460, "Tract": "48167721901", "Area_SqMi": 6.5248572057436753, "total_2009": 524, "total_2010": 516, "total_2011": 517, "total_2012": 384, "total_2013": 507, "total_2014": 524, "total_2015": 589, "total_2016": 681, "total_2017": 733, "total_2018": 608, "total_2019": 682, "total_2020": 781, "age1": 200, "age2": 638, "age3": 292, "earn1": 181, "earn2": 381, "earn3": 568, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 16, "naics_s05": 0, "naics_s06": 129, "naics_s07": 131, "naics_s08": 73, "naics_s09": 0, "naics_s10": 40, "naics_s11": 17, "naics_s12": 53, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 425, "naics_s17": 0, "naics_s18": 132, "naics_s19": 103, "naics_s20": 0, "race1": 833, "race2": 229, "race3": 11, "race4": 43, "race5": 0, "race6": 14, "ethnicity1": 825, "ethnicity2": 305, "edu1": 176, "edu2": 255, "edu3": 343, "edu4": 156, "Shape_Length": 71357.267953085844, "Shape_Area": 181901851.49141735, "total_2021": 846, "total_2022": 1130 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.072062912950969, 29.443281142005162 ], [ -95.072241912548861, 29.443218142101752 ], [ -95.070469912153726, 29.441017140909917 ], [ -95.069932912507298, 29.440350141408153 ], [ -95.06714591152614, 29.437452140969302 ], [ -95.066593911638847, 29.436892140718466 ], [ -95.065013910959735, 29.435283140220115 ], [ -95.064166910807444, 29.434429140484898 ], [ -95.060560909742264, 29.430765139645356 ], [ -95.060288909687372, 29.430472139413226 ], [ -95.059972909689819, 29.430130139432809 ], [ -95.055485908407462, 29.425537138697184 ], [ -95.055102908285193, 29.425148138870149 ], [ -95.054590907423957, 29.424631138057883 ], [ -95.05407690728417, 29.424113137981283 ], [ -95.052054906540135, 29.422074137650949 ], [ -95.049176906230869, 29.419160137815229 ], [ -95.046682905448449, 29.416634137387991 ], [ -95.04219590426753, 29.412078136504139 ], [ -95.042106903938375, 29.411987136642047 ], [ -95.042010903981449, 29.41188913640493 ], [ -95.041877904395179, 29.411755136244622 ], [ -95.041705903539921, 29.411580136467759 ], [ -95.040658903479112, 29.410517136107103 ], [ -95.040394903742097, 29.410249135993929 ], [ -95.036904901924458, 29.406705135612675 ], [ -95.036698902774049, 29.406499135019089 ], [ -95.036622902224721, 29.406423135518907 ], [ -95.036408902474506, 29.406209135369686 ], [ -95.035954902400732, 29.405750135473269 ], [ -95.033086901608812, 29.402830135110424 ], [ -95.032949901534934, 29.402690134322917 ], [ -95.032667901356049, 29.40290813508139 ], [ -95.032307901207787, 29.403186134667834 ], [ -95.031646901016586, 29.403957135396908 ], [ -95.031592900985231, 29.404072134558628 ], [ -95.031300900720694, 29.404701134861604 ], [ -95.031237900662518, 29.405120135173725 ], [ -95.031107901339837, 29.405067135458488 ], [ -95.031001901068009, 29.405024135501179 ], [ -95.030198900802702, 29.404699135457751 ], [ -95.028760900668217, 29.404104135030661 ], [ -95.027194899805423, 29.403481134782723 ], [ -95.026188899078264, 29.403133134706241 ], [ -95.023980898744355, 29.402495134719324 ], [ -95.020399897809341, 29.40157913497713 ], [ -95.02018089829555, 29.401522135133121 ], [ -95.01983589816308, 29.401434134858729 ], [ -95.019727898245364, 29.401407134583415 ], [ -95.015243896378834, 29.400208134484199 ], [ -95.014559896061826, 29.400024134432584 ], [ -95.014207896512943, 29.399928134284583 ], [ -95.012771896423573, 29.399541134649994 ], [ -95.011370895754936, 29.399163135081334 ], [ -95.011104894960795, 29.399091134501436 ], [ -95.010940895784159, 29.39904713454677 ], [ -95.009369895192322, 29.398662134276019 ], [ -95.008846894470821, 29.398534134373087 ], [ -95.008535894508881, 29.398461134473049 ], [ -95.006575894274093, 29.398000134899252 ], [ -95.004816893742074, 29.397833134665596 ], [ -95.003789893647706, 29.397875134955289 ], [ -95.003384893623846, 29.397869135016105 ], [ -95.000816893241023, 29.397794134437003 ], [ -95.000484893008306, 29.397825134740568 ], [ -94.997375892222308, 29.397736135150645 ], [ -94.99669589144662, 29.397674134884912 ], [ -94.996434891353871, 29.397980134948778 ], [ -94.996351891324679, 29.398078134888873 ], [ -94.99595889186574, 29.398496135426999 ], [ -94.995972891712356, 29.398556135150343 ], [ -94.996579891426421, 29.399150135010387 ], [ -94.998350891789286, 29.400928135880442 ], [ -94.998498891866006, 29.40107613503065 ], [ -94.999166892279874, 29.401747135530353 ], [ -95.004197894329963, 29.407011136971374 ], [ -95.008213895456919, 29.411158137684236 ], [ -95.0088388952542, 29.41179213745977 ], [ -95.019577899112832, 29.422677139571615 ], [ -95.019962898368107, 29.4223871396091 ], [ -95.020222898370179, 29.422387138920801 ], [ -95.020577899079044, 29.422387139407196 ], [ -95.020771898950045, 29.422438139457384 ], [ -95.021404899134481, 29.42263213881327 ], [ -95.021817899036577, 29.422640139552136 ], [ -95.028756900750835, 29.422636139175289 ], [ -95.029924901276161, 29.422697139126097 ], [ -95.030898901121915, 29.422733138842535 ], [ -95.031239901453944, 29.42272713885928 ], [ -95.031248901893576, 29.426172139198837 ], [ -95.031229901318738, 29.42685813972599 ], [ -95.031130901411231, 29.427627139618068 ], [ -95.03083790210971, 29.4294101405101 ], [ -95.029745901738522, 29.434975141239875 ], [ -95.02950190214915, 29.436356142019431 ], [ -95.029408901359133, 29.436815142118711 ], [ -95.029199902087427, 29.437748142101274 ], [ -95.028789901803151, 29.440132142760049 ], [ -95.028773901615367, 29.44051214289313 ], [ -95.028677901568003, 29.441389143141496 ], [ -95.028700901694833, 29.441663142773113 ], [ -95.028702901937237, 29.441704143272172 ], [ -95.028718901340028, 29.441891143149601 ], [ -95.030226902086042, 29.443509143202693 ], [ -95.031341902248442, 29.444698143614957 ], [ -95.031446902931847, 29.444811143626975 ], [ -95.032471903188124, 29.445922143638441 ], [ -95.032805902982531, 29.446276143460732 ], [ -95.035974903845073, 29.449701144356325 ], [ -95.036854903910665, 29.450534144073757 ], [ -95.037136904785584, 29.450809144660404 ], [ -95.037162904785376, 29.450830144506572 ], [ -95.037276904146211, 29.451217144401173 ], [ -95.037573904337137, 29.451527145063924 ], [ -95.039238905182103, 29.453261145378086 ], [ -95.039330904821625, 29.453190144998089 ], [ -95.039871905435135, 29.452824145050172 ], [ -95.040260905434451, 29.452512144875833 ], [ -95.041375905829014, 29.451620144661288 ], [ -95.044679906575439, 29.448974143784692 ], [ -95.04523490662946, 29.448540144100409 ], [ -95.045587906543176, 29.448309143393494 ], [ -95.045895906202077, 29.448151143658361 ], [ -95.046281906525181, 29.448029143306265 ], [ -95.046565907023549, 29.447962143942338 ], [ -95.048365906916217, 29.447681143650183 ], [ -95.048624907235279, 29.447643143497675 ], [ -95.050261907767236, 29.447399142980476 ], [ -95.051021907695926, 29.447285142993561 ], [ -95.052310908272119, 29.447093143261164 ], [ -95.053153907907145, 29.446967142996165 ], [ -95.05463990830458, 29.446743143223511 ], [ -95.054941908695781, 29.446697142777218 ], [ -95.05511090873685, 29.446680142702686 ], [ -95.055527908479675, 29.446618143200769 ], [ -95.056018908590062, 29.446545142873287 ], [ -95.056594909025691, 29.446459142742579 ], [ -95.057545909720204, 29.446318142690931 ], [ -95.058775909674239, 29.446134142470015 ], [ -95.060082910010607, 29.445940143161724 ], [ -95.061176909943171, 29.445775142694924 ], [ -95.062759910962029, 29.445537142597438 ], [ -95.063646910736196, 29.445409142725033 ], [ -95.064129911228761, 29.445258142605898 ], [ -95.064766910991835, 29.445056142766376 ], [ -95.066505911576101, 29.44450414264163 ], [ -95.06680191127785, 29.44443614249996 ], [ -95.067835912478571, 29.444097142358647 ], [ -95.068153911819763, 29.443993141972939 ], [ -95.069675912077301, 29.443482142310021 ], [ -95.069879912365195, 29.443424141554296 ], [ -95.069993912570823, 29.443391141720237 ], [ -95.071049912618449, 29.443323141847443 ], [ -95.0717919134254, 29.443252141956332 ], [ -95.072062912950969, 29.443281142005162 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 461, "Tract": "48201323900", "Area_SqMi": 1.096034349330484, "total_2009": 2085, "total_2010": 2129, "total_2011": 2648, "total_2012": 2402, "total_2013": 2825, "total_2014": 2989, "total_2015": 3015, "total_2016": 2758, "total_2017": 3836, "total_2018": 4695, "total_2019": 4778, "total_2020": 5023, "age1": 1089, "age2": 2907, "age3": 1211, "earn1": 388, "earn2": 760, "earn3": 4059, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 3315, "naics_s05": 656, "naics_s06": 276, "naics_s07": 58, "naics_s08": 394, "naics_s09": 5, "naics_s10": 5, "naics_s11": 44, "naics_s12": 55, "naics_s13": 0, "naics_s14": 161, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 217, "naics_s19": 15, "naics_s20": 0, "race1": 4331, "race2": 595, "race3": 63, "race4": 143, "race5": 11, "race6": 64, "ethnicity1": 2623, "ethnicity2": 2584, "edu1": 1210, "edu2": 1171, "edu3": 1084, "edu4": 653, "Shape_Length": 22760.882456647952, "Shape_Area": 30555561.777797181, "total_2021": 5390, "total_2022": 5207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.172520949013418, 29.680616187803171 ], [ -95.17253394911215, 29.679876187198452 ], [ -95.172515949240434, 29.679570187225849 ], [ -95.172487949186134, 29.679112186830597 ], [ -95.172486948818928, 29.678912187135285 ], [ -95.172484949384099, 29.678440186519175 ], [ -95.172484948685451, 29.678285186915065 ], [ -95.172481949088734, 29.677155186502812 ], [ -95.172447949141173, 29.67587218673069 ], [ -95.172430948933339, 29.675008186248114 ], [ -95.172400948859575, 29.673493185889534 ], [ -95.172370948450265, 29.672143185257791 ], [ -95.172364948262427, 29.670819185801051 ], [ -95.172364948241977, 29.670666185472697 ], [ -95.172365949019522, 29.670348185349109 ], [ -95.172362948320085, 29.6702431852876 ], [ -95.172350948694685, 29.669696185364302 ], [ -95.172313948678834, 29.668783185176419 ], [ -95.172303948672237, 29.668519185339441 ], [ -95.172272948781824, 29.66695518476795 ], [ -95.172260948512886, 29.666339184485498 ], [ -95.172240948221599, 29.665324184415045 ], [ -95.171359948361982, 29.665343184023566 ], [ -95.171155947693279, 29.665347184517938 ], [ -95.17082494814494, 29.665354184340821 ], [ -95.170131948094991, 29.665370184253639 ], [ -95.169860948001499, 29.665375184430289 ], [ -95.169555947474223, 29.665382184770014 ], [ -95.169376947725098, 29.66538518455371 ], [ -95.169121947666198, 29.665389184074353 ], [ -95.168620947181211, 29.665391184168751 ], [ -95.167647946809979, 29.665402184636253 ], [ -95.167040947488729, 29.665407184364561 ], [ -95.166615947494719, 29.665422184171501 ], [ -95.166397946854318, 29.665431184824882 ], [ -95.166222947013168, 29.665437184617318 ], [ -95.166034946578421, 29.665444184898103 ], [ -95.16540094634027, 29.665468184695122 ], [ -95.164985946908644, 29.665484184397389 ], [ -95.164301945981336, 29.665500184514489 ], [ -95.163950946744478, 29.665510184497762 ], [ -95.162901945995102, 29.665536184236334 ], [ -95.160857945121123, 29.665572184739652 ], [ -95.160448945737528, 29.665574184807895 ], [ -95.160151945644202, 29.665576184423049 ], [ -95.159863945266039, 29.665576184703898 ], [ -95.158702944849821, 29.665598184808907 ], [ -95.15794794429975, 29.665612184618517 ], [ -95.157265944119715, 29.66562618503794 ], [ -95.157133944654859, 29.665628185002923 ], [ -95.156719944846316, 29.665637185271869 ], [ -95.156548944536382, 29.665639185218119 ], [ -95.156153944184751, 29.665648184896295 ], [ -95.155869944429952, 29.665653185234987 ], [ -95.155656944149314, 29.665656185127922 ], [ -95.155659944278057, 29.665824184921355 ], [ -95.155698944133292, 29.666308185227297 ], [ -95.155764944663588, 29.667797185133775 ], [ -95.155855944860775, 29.668904185136441 ], [ -95.155903943938441, 29.669688185923082 ], [ -95.155954944328855, 29.670683185467666 ], [ -95.155992945074573, 29.673032186641688 ], [ -95.156018944908055, 29.67443418631013 ], [ -95.156030944643817, 29.675887187272732 ], [ -95.156024944265852, 29.676101187252321 ], [ -95.156037944235209, 29.67628718724551 ], [ -95.156062944400361, 29.677067186776995 ], [ -95.156087945149608, 29.677581187726343 ], [ -95.156062944718911, 29.678203187523039 ], [ -95.156011945096552, 29.678901187991098 ], [ -95.155903945372984, 29.679434187584292 ], [ -95.155757945068444, 29.679993188011125 ], [ -95.155643945055317, 29.680361187579798 ], [ -95.155472944493923, 29.680913187617225 ], [ -95.155327945210786, 29.681361188422553 ], [ -95.155269944972829, 29.68152918804331 ], [ -95.155514944829363, 29.68151718831346 ], [ -95.155792944425883, 29.681504188455985 ], [ -95.15662194486363, 29.68149718845428 ], [ -95.15701294514335, 29.681494187809225 ], [ -95.15791094498141, 29.681487187884429 ], [ -95.162749947190818, 29.681448188258571 ], [ -95.163093946287731, 29.68144218790518 ], [ -95.163114947062169, 29.681445188324293 ], [ -95.164119946873612, 29.681433187860602 ], [ -95.164781946774042, 29.681431187893942 ], [ -95.165399947177036, 29.681427187831229 ], [ -95.165672947454169, 29.681428187346217 ], [ -95.166321947858464, 29.681426187525719 ], [ -95.166793947642745, 29.681423187443379 ], [ -95.167852948398092, 29.681419187608451 ], [ -95.168310948453794, 29.681418187258281 ], [ -95.16851894768682, 29.681386188032096 ], [ -95.168867948097727, 29.681374187322298 ], [ -95.169361948705969, 29.681415187785174 ], [ -95.169779948218434, 29.681476187842758 ], [ -95.170186948161913, 29.681583187643017 ], [ -95.170497948769878, 29.681677187983357 ], [ -95.170884949205558, 29.681801188000648 ], [ -95.171196948448994, 29.681921187808278 ], [ -95.171521948552567, 29.682034187802682 ], [ -95.171721949116105, 29.682101187938134 ], [ -95.171961948956749, 29.682162188094495 ], [ -95.172236948733584, 29.682209187728194 ], [ -95.1725279494528, 29.682251188096345 ], [ -95.17252694905747, 29.681390187681011 ], [ -95.172520949013418, 29.680616187803171 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 462, "Tract": "48201453604", "Area_SqMi": 0.45773004500158709, "total_2009": 338, "total_2010": 246, "total_2011": 299, "total_2012": 405, "total_2013": 408, "total_2014": 331, "total_2015": 371, "total_2016": 358, "total_2017": 343, "total_2018": 409, "total_2019": 344, "total_2020": 345, "age1": 108, "age2": 151, "age3": 56, "earn1": 130, "earn2": 115, "earn3": 70, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 2, "naics_s06": 56, "naics_s07": 63, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 17, "naics_s17": 2, "naics_s18": 143, "naics_s19": 13, "naics_s20": 0, "race1": 199, "race2": 80, "race3": 2, "race4": 32, "race5": 0, "race6": 2, "ethnicity1": 192, "ethnicity2": 123, "edu1": 63, "edu2": 60, "edu3": 42, "edu4": 42, "Shape_Length": 16620.361307217921, "Shape_Area": 12760730.241842685, "total_2021": 333, "total_2022": 315 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.587486055915605, 29.684562174561432 ], [ -95.587464055887395, 29.683619174185278 ], [ -95.587451055422804, 29.68290617401772 ], [ -95.587428055227235, 29.681684173954963 ], [ -95.587382055622825, 29.679284173422761 ], [ -95.587340055222199, 29.676985172653012 ], [ -95.587286055297554, 29.675222172437593 ], [ -95.58519305500738, 29.67512317222387 ], [ -95.584450054899165, 29.675077172087406 ], [ -95.583459054173787, 29.675017172452687 ], [ -95.583099053574415, 29.674988172424207 ], [ -95.581939053611265, 29.674912172716688 ], [ -95.581529053270287, 29.674887172384068 ], [ -95.581150053932532, 29.674864172865249 ], [ -95.580882053869317, 29.674842172825002 ], [ -95.579986053621269, 29.674762172667648 ], [ -95.579631053182709, 29.67473817246125 ], [ -95.577762052829328, 29.674641172891459 ], [ -95.577271052410865, 29.674633172582251 ], [ -95.576220052822109, 29.674567172281009 ], [ -95.575892052212197, 29.674547172483848 ], [ -95.575278051925196, 29.674520172323977 ], [ -95.574482051866724, 29.674477173020129 ], [ -95.574533052346638, 29.6763051725836 ], [ -95.574534052139981, 29.676551172732985 ], [ -95.574539051948236, 29.67748717297323 ], [ -95.574546051765068, 29.677640173327259 ], [ -95.574541051930169, 29.677795172913552 ], [ -95.574547051965311, 29.678876173928238 ], [ -95.574549052362116, 29.679539173334685 ], [ -95.574551052032618, 29.680066173911253 ], [ -95.574557051887851, 29.680301174018165 ], [ -95.574573051936412, 29.681387174429119 ], [ -95.574579052023097, 29.682028173738551 ], [ -95.574584052538498, 29.682693174680043 ], [ -95.575301052019739, 29.682672174146461 ], [ -95.57530005270425, 29.681880174378389 ], [ -95.575290052364707, 29.681085174026329 ], [ -95.575998052401061, 29.681075174086541 ], [ -95.576439052906679, 29.681031174279877 ], [ -95.577078052408794, 29.680903173504099 ], [ -95.578027053060794, 29.680686174068171 ], [ -95.57806805351602, 29.681500174025029 ], [ -95.578115052757752, 29.682308173814935 ], [ -95.578241053628787, 29.683113174581827 ], [ -95.578315053526111, 29.68362117401886 ], [ -95.578342052732651, 29.683885174786305 ], [ -95.578325053123322, 29.684207174758399 ], [ -95.57832805313457, 29.68438917418225 ], [ -95.579675053376519, 29.684247174329531 ], [ -95.580883053854066, 29.684135174394996 ], [ -95.580985054127524, 29.684126174681467 ], [ -95.581274054210127, 29.684170174702665 ], [ -95.581766054201978, 29.684648174385199 ], [ -95.582181053948233, 29.684654174597512 ], [ -95.582364054791384, 29.684621174172602 ], [ -95.582464054094501, 29.684505174395742 ], [ -95.582779053913953, 29.684197174168016 ], [ -95.586059054971571, 29.684164174221944 ], [ -95.586368055698088, 29.684444174118422 ], [ -95.586557054895096, 29.684543174171129 ], [ -95.587486055915605, 29.684562174561432 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 463, "Tract": "48201324000", "Area_SqMi": 3.0812197816040641, "total_2009": 4767, "total_2010": 4826, "total_2011": 5312, "total_2012": 5580, "total_2013": 5705, "total_2014": 6051, "total_2015": 6806, "total_2016": 6535, "total_2017": 6494, "total_2018": 6475, "total_2019": 7394, "total_2020": 6208, "age1": 1835, "age2": 3387, "age3": 1527, "earn1": 1299, "earn2": 2172, "earn3": 3278, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 400, "naics_s05": 327, "naics_s06": 164, "naics_s07": 1169, "naics_s08": 1032, "naics_s09": 0, "naics_s10": 167, "naics_s11": 9, "naics_s12": 326, "naics_s13": 25, "naics_s14": 511, "naics_s15": 24, "naics_s16": 1392, "naics_s17": 12, "naics_s18": 1016, "naics_s19": 175, "naics_s20": 0, "race1": 5062, "race2": 1220, "race3": 67, "race4": 297, "race5": 9, "race6": 94, "ethnicity1": 4137, "ethnicity2": 2612, "edu1": 1165, "edu2": 1432, "edu3": 1482, "edu4": 835, "Shape_Length": 55138.226731001247, "Shape_Area": 85899133.95076035, "total_2021": 6427, "total_2022": 6749 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.197289953118556, 29.622671174656507 ], [ -95.197513953424945, 29.622504174472702 ], [ -95.197202952818088, 29.622175174432389 ], [ -95.19635095225415, 29.621275174571942 ], [ -95.196104952988279, 29.621015174414573 ], [ -95.195949952992578, 29.620893173985916 ], [ -95.194586951920684, 29.619151173962255 ], [ -95.194446951847411, 29.618979173725474 ], [ -95.192514951740421, 29.616802173697465 ], [ -95.192249951583122, 29.616528173101109 ], [ -95.192059951539136, 29.616332173072664 ], [ -95.1919099509783, 29.61617717366321 ], [ -95.191479951483927, 29.616490173215322 ], [ -95.19109695081103, 29.616765173227865 ], [ -95.190632951036477, 29.617060173789348 ], [ -95.189983950660604, 29.617484173621573 ], [ -95.188854950524984, 29.618085173857541 ], [ -95.187231950737328, 29.618919174437007 ], [ -95.184187949094067, 29.620407174554028 ], [ -95.181439949388832, 29.621958174885371 ], [ -95.180356948162327, 29.622661175576717 ], [ -95.179353948607087, 29.623368175510393 ], [ -95.179212947875783, 29.623488175756524 ], [ -95.17652794797786, 29.625411175698527 ], [ -95.174776947881185, 29.626698176346494 ], [ -95.174568947153389, 29.626825176590149 ], [ -95.174080946794135, 29.627182176438208 ], [ -95.173649947250823, 29.627507176335332 ], [ -95.173231946572443, 29.62785117661025 ], [ -95.17276794646618, 29.628269176995921 ], [ -95.172137946536353, 29.628840176815185 ], [ -95.171042946289518, 29.62990117716587 ], [ -95.170572946103164, 29.63034317682505 ], [ -95.170314946584639, 29.630586177221087 ], [ -95.17006394610236, 29.630799176989317 ], [ -95.167645945729575, 29.633078177673962 ], [ -95.1675279458115, 29.633189178063834 ], [ -95.167318946199785, 29.633385178202282 ], [ -95.166134945035466, 29.63449117839243 ], [ -95.16511594565641, 29.635436178067394 ], [ -95.164063945214778, 29.636428178258306 ], [ -95.163812945166598, 29.636660178642966 ], [ -95.163245944387683, 29.637191178713092 ], [ -95.162813944476667, 29.637593178507981 ], [ -95.161578944701716, 29.638700179296162 ], [ -95.161151944466127, 29.639105179058785 ], [ -95.161047944179046, 29.639213179424161 ], [ -95.160840944, 29.639390179274134 ], [ -95.160735943880326, 29.639474179190664 ], [ -95.160600943898288, 29.639596178895996 ], [ -95.159862944324175, 29.640356179938745 ], [ -95.159504944105549, 29.64076817925752 ], [ -95.159060943480767, 29.641354180183903 ], [ -95.158712944119046, 29.64186417960374 ], [ -95.158392943967527, 29.642401179577213 ], [ -95.158181943571762, 29.642884180226073 ], [ -95.157751943270313, 29.643872180095599 ], [ -95.156952943150031, 29.645995180975142 ], [ -95.156791944026168, 29.646463180673035 ], [ -95.156619944141681, 29.647224180880286 ], [ -95.156442943241899, 29.6479051811841 ], [ -95.156368943801439, 29.648312181376767 ], [ -95.156264943774005, 29.648881181568665 ], [ -95.156183943128681, 29.649421181552981 ], [ -95.15614694313534, 29.649592181338264 ], [ -95.156146944023163, 29.649673182014258 ], [ -95.156131943809058, 29.649856181884044 ], [ -95.156123943320523, 29.650006181601782 ], [ -95.156079943823016, 29.650531181519941 ], [ -95.156035943882856, 29.651153182236367 ], [ -95.156020943918122, 29.651789182274371 ], [ -95.156027944130599, 29.652513182614339 ], [ -95.156035943418786, 29.654550182266618 ], [ -95.156036943884871, 29.654962182937862 ], [ -95.156109943667786, 29.657850183305566 ], [ -95.156117944156179, 29.658036183269452 ], [ -95.156116944298461, 29.658286182952786 ], [ -95.156146944517559, 29.659697183924745 ], [ -95.156145943899489, 29.659721183508797 ], [ -95.156138944140039, 29.660379183416961 ], [ -95.156081943614197, 29.661077184176165 ], [ -95.155905943658524, 29.662310184046223 ], [ -95.155738943579266, 29.66330518465643 ], [ -95.155663943983086, 29.66401518446909 ], [ -95.155643944593251, 29.66443418491523 ], [ -95.155628944329536, 29.664955184395303 ], [ -95.155652944019096, 29.665475185106853 ], [ -95.155651943737752, 29.665526184780905 ], [ -95.155656944149314, 29.665656185127922 ], [ -95.155869944429952, 29.665653185234987 ], [ -95.156153944184751, 29.665648184896295 ], [ -95.156548944536382, 29.665639185218119 ], [ -95.156719944846316, 29.665637185271869 ], [ -95.157133944654859, 29.665628185002923 ], [ -95.157265944119715, 29.66562618503794 ], [ -95.15794794429975, 29.665612184618517 ], [ -95.158702944849821, 29.665598184808907 ], [ -95.159863945266039, 29.665576184703898 ], [ -95.160151945644202, 29.665576184423049 ], [ -95.160448945737528, 29.665574184807895 ], [ -95.160857945121123, 29.665572184739652 ], [ -95.162901945995102, 29.665536184236334 ], [ -95.163950946744478, 29.665510184497762 ], [ -95.164301945981336, 29.665500184514489 ], [ -95.164985946908644, 29.665484184397389 ], [ -95.16540094634027, 29.665468184695122 ], [ -95.166034946578421, 29.665444184898103 ], [ -95.166222947013168, 29.665437184617318 ], [ -95.166397946854318, 29.665431184824882 ], [ -95.166615947494719, 29.665422184171501 ], [ -95.167040947488729, 29.665407184364561 ], [ -95.167647946809979, 29.665402184636253 ], [ -95.168620947181211, 29.665391184168751 ], [ -95.169121947666198, 29.665389184074353 ], [ -95.169376947725098, 29.66538518455371 ], [ -95.169555947474223, 29.665382184770014 ], [ -95.169860948001499, 29.665375184430289 ], [ -95.170131948094991, 29.665370184253639 ], [ -95.17082494814494, 29.665354184340821 ], [ -95.171155947693279, 29.665347184517938 ], [ -95.171359948361982, 29.665343184023566 ], [ -95.172240948221599, 29.665324184415045 ], [ -95.172118948349606, 29.664782184578435 ], [ -95.172109947938623, 29.664373183616469 ], [ -95.172052948626558, 29.661718183979279 ], [ -95.172020948118643, 29.660201182800705 ], [ -95.171987948046294, 29.658669183199788 ], [ -95.171975947718778, 29.657801182652619 ], [ -95.171879948378475, 29.657229182964826 ], [ -95.171671947941491, 29.656557182542311 ], [ -95.171547948259828, 29.656040182580348 ], [ -95.171505947715161, 29.655413181811316 ], [ -95.171494948264154, 29.654994182503327 ], [ -95.171468947381712, 29.654049182070388 ], [ -95.171457947419782, 29.653651182150561 ], [ -95.17144194751458, 29.65306818130502 ], [ -95.171418948059639, 29.652238181571349 ], [ -95.171404947147167, 29.651728181885414 ], [ -95.17137794791347, 29.65070218157371 ], [ -95.17137194790854, 29.650166181392212 ], [ -95.171367947561279, 29.649739181206581 ], [ -95.171364947179129, 29.649523181229206 ], [ -95.171339947393889, 29.648653180774232 ], [ -95.171312947140621, 29.647758181027029 ], [ -95.171209947362371, 29.644315179690203 ], [ -95.171118947064485, 29.640639179086694 ], [ -95.171353947025736, 29.640515179567739 ], [ -95.171432947291194, 29.640496179103785 ], [ -95.171651947052865, 29.640443178922297 ], [ -95.17588394828681, 29.640370178739591 ], [ -95.177928949078819, 29.640334178635502 ], [ -95.178312948815872, 29.6403831791934 ], [ -95.179304949647005, 29.640699179345916 ], [ -95.179758948857938, 29.640786179030183 ], [ -95.180226948928379, 29.640802178946323 ], [ -95.18041694981288, 29.640814179196809 ], [ -95.180997949486624, 29.640794179139455 ], [ -95.181301949491498, 29.640784178814418 ], [ -95.181291950086461, 29.640463178434409 ], [ -95.181382949203211, 29.638614178343502 ], [ -95.181376949392671, 29.638120178567341 ], [ -95.181349949909205, 29.637345177962573 ], [ -95.181370949826615, 29.636154177581197 ], [ -95.181299949800604, 29.634566177735607 ], [ -95.181292949062538, 29.634150177448181 ], [ -95.181251949751072, 29.632229176815926 ], [ -95.181236948746445, 29.631528176744379 ], [ -95.18121594908888, 29.630367176760309 ], [ -95.181594948878839, 29.63036517663258 ], [ -95.182068949076466, 29.63036417705332 ], [ -95.182115949850171, 29.63036117674363 ], [ -95.183234949464889, 29.630375176867798 ], [ -95.184324950258798, 29.630334177091896 ], [ -95.18500795032385, 29.630332176234894 ], [ -95.1850669505111, 29.630329176652122 ], [ -95.185880950256333, 29.630301176817277 ], [ -95.186079950317378, 29.630300176552062 ], [ -95.186329950627098, 29.630297176488629 ], [ -95.186352950726913, 29.630296176346658 ], [ -95.186384950759418, 29.630295176311233 ], [ -95.186525950370864, 29.630293176904615 ], [ -95.186666951042724, 29.630291176477147 ], [ -95.186991950634194, 29.630286176942125 ], [ -95.18773495071116, 29.630276176388683 ], [ -95.188488951065324, 29.630264176729305 ], [ -95.18884295114718, 29.630263176381074 ], [ -95.188977951676137, 29.630267176483127 ], [ -95.189109951660484, 29.630270176520295 ], [ -95.189304950932325, 29.630275176307862 ], [ -95.18943795169578, 29.630273176250768 ], [ -95.189542951392212, 29.63027117674687 ], [ -95.189962951123434, 29.630264176367643 ], [ -95.190383951041397, 29.630256176730004 ], [ -95.190402951137273, 29.630256175999538 ], [ -95.19049795155594, 29.63025517658162 ], [ -95.190641951360618, 29.630255176578441 ], [ -95.190789952044014, 29.630255176564361 ], [ -95.190791952005711, 29.630314176167161 ], [ -95.190794951911585, 29.630365176157408 ], [ -95.190813951376342, 29.631213176788819 ], [ -95.190824951616378, 29.631410176379585 ], [ -95.191255951371915, 29.631400176390422 ], [ -95.192792952164027, 29.631375176693812 ], [ -95.19279795173361, 29.631328176933096 ], [ -95.192815951768978, 29.631111176468476 ], [ -95.192933952244175, 29.62985317586968 ], [ -95.192962952087441, 29.629593176579046 ], [ -95.193208952449424, 29.626743175224878 ], [ -95.193184952095763, 29.62633017529388 ], [ -95.194159952610264, 29.625658175274879 ], [ -95.195042952186995, 29.625010175064705 ], [ -95.195599952351103, 29.624558175204751 ], [ -95.195915952543501, 29.624037175327324 ], [ -95.196297953040201, 29.623550174967114 ], [ -95.196981953043945, 29.622900175084656 ], [ -95.197289953118556, 29.622671174656507 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 464, "Tract": "48201330200", "Area_SqMi": 1.692153033952259, "total_2009": 624, "total_2010": 692, "total_2011": 850, "total_2012": 893, "total_2013": 908, "total_2014": 877, "total_2015": 1345, "total_2016": 1430, "total_2017": 1424, "total_2018": 1271, "total_2019": 1257, "total_2020": 1194, "age1": 276, "age2": 603, "age3": 337, "earn1": 183, "earn2": 488, "earn3": 545, "naics_s01": 0, "naics_s02": 0, "naics_s03": 4, "naics_s04": 133, "naics_s05": 34, "naics_s06": 45, "naics_s07": 173, "naics_s08": 7, "naics_s09": 2, "naics_s10": 36, "naics_s11": 13, "naics_s12": 35, "naics_s13": 0, "naics_s14": 156, "naics_s15": 45, "naics_s16": 461, "naics_s17": 0, "naics_s18": 29, "naics_s19": 43, "naics_s20": 0, "race1": 766, "race2": 324, "race3": 14, "race4": 86, "race5": 2, "race6": 24, "ethnicity1": 814, "ethnicity2": 402, "edu1": 219, "edu2": 231, "edu3": 275, "edu4": 215, "Shape_Length": 29013.084064142866, "Shape_Area": 47174330.437726833, "total_2021": 1072, "total_2022": 1216 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465027021346827, 29.628713167062962 ], [ -95.465192021485592, 29.627285166255689 ], [ -95.463649021530003, 29.627291166687531 ], [ -95.462973021687986, 29.627299166844011 ], [ -95.4621870215461, 29.627302166718394 ], [ -95.46035202089611, 29.627366166350171 ], [ -95.458810020711056, 29.627363166686884 ], [ -95.457093019800766, 29.62737016658992 ], [ -95.45674402000283, 29.627361167206661 ], [ -95.456528020038107, 29.62737616691151 ], [ -95.456480019211511, 29.627378167156749 ], [ -95.456078019270691, 29.62739316662487 ], [ -95.455951019643464, 29.627389166835965 ], [ -95.455089019306229, 29.627414166792899 ], [ -95.454131019149457, 29.627427167344045 ], [ -95.451735018432871, 29.627451166771809 ], [ -95.449352018229234, 29.627468167423714 ], [ -95.448330017090953, 29.627505167306325 ], [ -95.448162017592452, 29.627429167397288 ], [ -95.447556017575749, 29.627449166920073 ], [ -95.447307017682064, 29.627476166903463 ], [ -95.44682201734706, 29.627528167300184 ], [ -95.446164016754054, 29.627572167663899 ], [ -95.446158016728702, 29.62802516698212 ], [ -95.446187017204338, 29.628760167536196 ], [ -95.44621701756536, 29.629398167319426 ], [ -95.446232017083048, 29.630636167482116 ], [ -95.446291017399389, 29.634173168472664 ], [ -95.446315017320643, 29.636572169346831 ], [ -95.446325017073178, 29.637255169588713 ], [ -95.446329017025775, 29.637527169454113 ], [ -95.446344017349844, 29.638516169960756 ], [ -95.446350018019359, 29.638944169354485 ], [ -95.446381017528026, 29.64112217039154 ], [ -95.446438017782157, 29.643910170489011 ], [ -95.44647601775479, 29.645748171449842 ], [ -95.44648801809204, 29.646334171167144 ], [ -95.446503017668206, 29.647103171241188 ], [ -95.446517017463293, 29.647876171452328 ], [ -95.446559018156506, 29.65035617221875 ], [ -95.446568018593553, 29.650894172225385 ], [ -95.446582018270419, 29.651691171978666 ], [ -95.446587017757722, 29.65224517199821 ], [ -95.446594018262047, 29.653224172329729 ], [ -95.446597018363221, 29.653518172491292 ], [ -95.446603017943858, 29.653904172421981 ], [ -95.446672018624483, 29.653883172831009 ], [ -95.446858018334964, 29.653834172858733 ], [ -95.446922018389415, 29.653817172839425 ], [ -95.447419018034608, 29.653656172906857 ], [ -95.449954018931905, 29.652893172009986 ], [ -95.45088601877498, 29.652571172470882 ], [ -95.452695019555051, 29.65186017174819 ], [ -95.453570019584788, 29.651518171915836 ], [ -95.454533020483211, 29.651150171653981 ], [ -95.457658020553467, 29.649903171695641 ], [ -95.460283021012444, 29.648862171620355 ], [ -95.460745022116015, 29.648662170803046 ], [ -95.462940022408532, 29.647822170903137 ], [ -95.463363022618651, 29.647661171290434 ], [ -95.463743021857454, 29.647495170840486 ], [ -95.463741022709726, 29.647370171190119 ], [ -95.463737022033243, 29.647168170451437 ], [ -95.463728022193735, 29.646727170951994 ], [ -95.463726022295972, 29.646572170976505 ], [ -95.463722022676677, 29.646053170088027 ], [ -95.463704022265702, 29.645248170460896 ], [ -95.463650021953455, 29.64358016963682 ], [ -95.463611021565598, 29.641689169239388 ], [ -95.46357902200532, 29.640812169011227 ], [ -95.463578022076746, 29.64072116943785 ], [ -95.463574022225487, 29.639283169184736 ], [ -95.463565021891228, 29.636428168500231 ], [ -95.463551021455487, 29.636225168178033 ], [ -95.463539022286142, 29.636044168333935 ], [ -95.463477021364668, 29.635106168379263 ], [ -95.463481021486359, 29.63487016798986 ], [ -95.463484021658985, 29.634759167826658 ], [ -95.463481021820897, 29.633983168000135 ], [ -95.46348602150222, 29.632891168092449 ], [ -95.46348602144964, 29.632846167968435 ], [ -95.463486021673035, 29.632826167418163 ], [ -95.463489021666888, 29.632168167234944 ], [ -95.463489021952554, 29.63198516803282 ], [ -95.463565021634864, 29.631703167911709 ], [ -95.463631021415083, 29.631594167369101 ], [ -95.463720022135192, 29.631417167711181 ], [ -95.463872021445781, 29.630945167738997 ], [ -95.464111022051725, 29.630350166990887 ], [ -95.464387021311737, 29.629880167235694 ], [ -95.4646040213063, 29.629574166939374 ], [ -95.464751022270249, 29.629291166841945 ], [ -95.465027021346827, 29.628713167062962 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 465, "Tract": "48201330400", "Area_SqMi": 1.6883891054196258, "total_2009": 308, "total_2010": 292, "total_2011": 352, "total_2012": 328, "total_2013": 330, "total_2014": 487, "total_2015": 574, "total_2016": 476, "total_2017": 482, "total_2018": 516, "total_2019": 517, "total_2020": 533, "age1": 106, "age2": 293, "age3": 130, "earn1": 46, "earn2": 145, "earn3": 338, "naics_s01": 0, "naics_s02": 0, "naics_s03": 16, "naics_s04": 298, "naics_s05": 60, "naics_s06": 15, "naics_s07": 37, "naics_s08": 36, "naics_s09": 0, "naics_s10": 6, "naics_s11": 6, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 4, "naics_s16": 31, "naics_s17": 0, "naics_s18": 10, "naics_s19": 10, "naics_s20": 0, "race1": 409, "race2": 68, "race3": 7, "race4": 36, "race5": 0, "race6": 9, "ethnicity1": 323, "ethnicity2": 206, "edu1": 101, "edu2": 117, "edu3": 120, "edu4": 85, "Shape_Length": 27647.890897299483, "Shape_Area": 47069398.552265085, "total_2021": 480, "total_2022": 529 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465192021485592, 29.627285166255689 ], [ -95.465137022025928, 29.625013166056341 ], [ -95.465141022127341, 29.624455166265413 ], [ -95.465144021606434, 29.624151165603724 ], [ -95.465139021772032, 29.623998166268294 ], [ -95.465125021397085, 29.623525166130417 ], [ -95.465115021574945, 29.623159165617039 ], [ -95.465100021691384, 29.622659166104697 ], [ -95.465095021480749, 29.622497165212071 ], [ -95.465072021652816, 29.621683165009653 ], [ -95.465069021280698, 29.620594165378197 ], [ -95.465076021406801, 29.620170165374301 ], [ -95.46506102129743, 29.619799165221263 ], [ -95.465034021255306, 29.619106164642346 ], [ -95.46502802172283, 29.61903816455299 ], [ -95.465004021834716, 29.61827716498566 ], [ -95.465021021836009, 29.618064164348663 ], [ -95.465024021386697, 29.617437164524034 ], [ -95.464978021273026, 29.616376164382483 ], [ -95.464920020796754, 29.615245163765646 ], [ -95.464925021125808, 29.615073164236353 ], [ -95.464933021137412, 29.613688163833626 ], [ -95.464941020657463, 29.612241163404384 ], [ -95.464979021548203, 29.611658163298692 ], [ -95.464975021403802, 29.61137016361473 ], [ -95.46497302147408, 29.611255163675214 ], [ -95.46494502054675, 29.60944216335006 ], [ -95.464913020847874, 29.607613162186926 ], [ -95.464887020478599, 29.607271162150639 ], [ -95.464740021222966, 29.606227162615593 ], [ -95.464725020605457, 29.605799162290527 ], [ -95.464250020273184, 29.605826161797328 ], [ -95.459683019531255, 29.605873162579257 ], [ -95.458021018902784, 29.605903162753002 ], [ -95.457808019040186, 29.605907162404154 ], [ -95.457249018768934, 29.605920162921866 ], [ -95.457008018485638, 29.605927162364981 ], [ -95.45682301863981, 29.605930162471704 ], [ -95.456369019121013, 29.60592916279143 ], [ -95.454990018290758, 29.605964162773574 ], [ -95.4520180175289, 29.606003162949129 ], [ -95.450986017243963, 29.606020162607866 ], [ -95.450939017544997, 29.606021162624472 ], [ -95.449062016858477, 29.606033162825216 ], [ -95.446951015758557, 29.60608316310844 ], [ -95.446520016304419, 29.606093163233535 ], [ -95.445959016274131, 29.606106162839463 ], [ -95.445985015637277, 29.606807163058392 ], [ -95.44598201588154, 29.607522163439356 ], [ -95.446025016375486, 29.608265163743447 ], [ -95.446016015790875, 29.608985163310884 ], [ -95.446032016188411, 29.609709164081423 ], [ -95.446057016638463, 29.610452164251949 ], [ -95.44604101591041, 29.611177164328204 ], [ -95.446057016169831, 29.611736164188258 ], [ -95.44603101630058, 29.612165164197549 ], [ -95.445897016174328, 29.613335164656167 ], [ -95.445949015978542, 29.616110164808255 ], [ -95.445976016994123, 29.618717165377451 ], [ -95.44597701605052, 29.618785165636737 ], [ -95.445978017038883, 29.618868165804564 ], [ -95.445992016311877, 29.620257165737826 ], [ -95.446164016754054, 29.627572167663899 ], [ -95.44682201734706, 29.627528167300184 ], [ -95.447307017682064, 29.627476166903463 ], [ -95.447556017575749, 29.627449166920073 ], [ -95.448162017592452, 29.627429167397288 ], [ -95.448330017090953, 29.627505167306325 ], [ -95.449352018229234, 29.627468167423714 ], [ -95.451735018432871, 29.627451166771809 ], [ -95.454131019149457, 29.627427167344045 ], [ -95.455089019306229, 29.627414166792899 ], [ -95.455951019643464, 29.627389166835965 ], [ -95.456078019270691, 29.62739316662487 ], [ -95.456480019211511, 29.627378167156749 ], [ -95.456528020038107, 29.62737616691151 ], [ -95.45674402000283, 29.627361167206661 ], [ -95.457093019800766, 29.62737016658992 ], [ -95.458810020711056, 29.627363166686884 ], [ -95.46035202089611, 29.627366166350171 ], [ -95.4621870215461, 29.627302166718394 ], [ -95.462973021687986, 29.627299166844011 ], [ -95.463649021530003, 29.627291166687531 ], [ -95.465192021485592, 29.627285166255689 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 466, "Tract": "48201330500", "Area_SqMi": 1.0552176944334841, "total_2009": 69, "total_2010": 42, "total_2011": 62, "total_2012": 57, "total_2013": 66, "total_2014": 53, "total_2015": 63, "total_2016": 93, "total_2017": 77, "total_2018": 60, "total_2019": 75, "total_2020": 71, "age1": 18, "age2": 39, "age3": 9, "earn1": 19, "earn2": 27, "earn3": 20, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 14, "naics_s06": 0, "naics_s07": 16, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 0, "naics_s17": 1, "naics_s18": 5, "naics_s19": 14, "naics_s20": 0, "race1": 39, "race2": 13, "race3": 1, "race4": 10, "race5": 0, "race6": 3, "ethnicity1": 38, "ethnicity2": 28, "edu1": 14, "edu2": 14, "edu3": 15, "edu4": 5, "Shape_Length": 26499.95787375548, "Shape_Area": 29417663.297671854, "total_2021": 64, "total_2022": 66 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446164016754054, 29.627572167663899 ], [ -95.445992016311877, 29.620257165737826 ], [ -95.445978017038883, 29.618868165804564 ], [ -95.44597701605052, 29.618785165636737 ], [ -95.441945015365732, 29.620517165896629 ], [ -95.441630015000342, 29.62059616640401 ], [ -95.441190015500936, 29.620616166104064 ], [ -95.440952015132964, 29.620599166279835 ], [ -95.440454014823388, 29.620438165774043 ], [ -95.438574014722178, 29.619495165689184 ], [ -95.438342014172463, 29.619362166268367 ], [ -95.438034014359474, 29.619187166198159 ], [ -95.437632014191237, 29.619023166063815 ], [ -95.437207014783098, 29.61891916568969 ], [ -95.436716014438119, 29.618887165527475 ], [ -95.434390013192441, 29.618907165492651 ], [ -95.433523013411516, 29.618914165619969 ], [ -95.432631013413427, 29.618922166288915 ], [ -95.432487013350809, 29.618923166366283 ], [ -95.432330013563487, 29.618959166102904 ], [ -95.431830012455222, 29.619200166021837 ], [ -95.431757013076336, 29.619242165662786 ], [ -95.431389012704315, 29.619456166029327 ], [ -95.431120012810808, 29.619539166188069 ], [ -95.430799012862238, 29.619467166167706 ], [ -95.430759012532647, 29.619454166591908 ], [ -95.430104011995269, 29.61912416641534 ], [ -95.430046012681345, 29.619097165995445 ], [ -95.429710012237223, 29.618991166041337 ], [ -95.429547012263626, 29.618993166185302 ], [ -95.427912011812126, 29.619471165978439 ], [ -95.427262011625999, 29.619534166495445 ], [ -95.427029012152076, 29.619467166316085 ], [ -95.426349011371173, 29.619014165912695 ], [ -95.426150011208932, 29.618970166330072 ], [ -95.425822010942397, 29.618975165878165 ], [ -95.425600011094318, 29.619061166200034 ], [ -95.42473601063746, 29.619685166695579 ], [ -95.424491011007376, 29.619861166853667 ], [ -95.42387101107289, 29.620042166497665 ], [ -95.422783011036458, 29.620064166453485 ], [ -95.422434010934566, 29.620071166333986 ], [ -95.422190010342547, 29.620044166716543 ], [ -95.421569010270787, 29.619874166192346 ], [ -95.418387009055081, 29.619110166109767 ], [ -95.417985009799935, 29.619049166937032 ], [ -95.417443009028986, 29.619039166222485 ], [ -95.417416009375387, 29.619107166781419 ], [ -95.41606900927016, 29.62249716732137 ], [ -95.415175009357156, 29.624678167326572 ], [ -95.414895009112101, 29.625362167871746 ], [ -95.414434009148891, 29.626548167992517 ], [ -95.413990009162006, 29.627695168290771 ], [ -95.414179009294543, 29.627710168804256 ], [ -95.414535009382377, 29.627723168713921 ], [ -95.414967008836825, 29.627747168332249 ], [ -95.415417009407463, 29.627788168818849 ], [ -95.415644008934464, 29.62783216842606 ], [ -95.415762008682478, 29.627863168792874 ], [ -95.416011009696106, 29.627913168669444 ], [ -95.416363008989208, 29.627972168475441 ], [ -95.416909009079887, 29.628041168814423 ], [ -95.417685010089059, 29.628063168642399 ], [ -95.419554010496199, 29.628033168291854 ], [ -95.42163701097364, 29.628000168033438 ], [ -95.421861011181349, 29.627996168596734 ], [ -95.422840011240481, 29.627966168183839 ], [ -95.424694011942961, 29.627935168021711 ], [ -95.425305011530526, 29.627933168382224 ], [ -95.428095012748201, 29.62787316787642 ], [ -95.429566012714545, 29.627855167684427 ], [ -95.430879013368894, 29.627826168153614 ], [ -95.434466014442293, 29.627760167742249 ], [ -95.434766013750206, 29.627757167897684 ], [ -95.435343014322584, 29.6277641678234 ], [ -95.435438014129815, 29.62777216774732 ], [ -95.43802701497944, 29.627708167884983 ], [ -95.438717014782497, 29.627694167761522 ], [ -95.43965301538627, 29.62767416751392 ], [ -95.44070801592207, 29.627664167354677 ], [ -95.441711015507579, 29.627654167198997 ], [ -95.443945016298215, 29.627604167514718 ], [ -95.444980016755807, 29.627596167654161 ], [ -95.445544016597836, 29.62758616712442 ], [ -95.446164016754054, 29.627572167663899 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 467, "Tract": "48201522101", "Area_SqMi": 0.34614741894610268, "total_2009": 583, "total_2010": 573, "total_2011": 628, "total_2012": 755, "total_2013": 723, "total_2014": 765, "total_2015": 667, "total_2016": 508, "total_2017": 495, "total_2018": 496, "total_2019": 489, "total_2020": 500, "age1": 198, "age2": 312, "age3": 129, "earn1": 203, "earn2": 240, "earn3": 196, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 48, "naics_s05": 0, "naics_s06": 5, "naics_s07": 209, "naics_s08": 2, "naics_s09": 0, "naics_s10": 35, "naics_s11": 3, "naics_s12": 32, "naics_s13": 0, "naics_s14": 25, "naics_s15": 15, "naics_s16": 123, "naics_s17": 44, "naics_s18": 88, "naics_s19": 10, "naics_s20": 0, "race1": 444, "race2": 111, "race3": 4, "race4": 64, "race5": 0, "race6": 16, "ethnicity1": 402, "ethnicity2": 237, "edu1": 107, "edu2": 119, "edu3": 123, "edu4": 92, "Shape_Length": 12522.191198274606, "Shape_Area": 9649997.6029889118, "total_2021": 577, "total_2022": 639 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.545267051469793, 29.822713204300886 ], [ -95.54526105133256, 29.821278203235089 ], [ -95.545253050763719, 29.820886203156022 ], [ -95.545243050695788, 29.820050202876757 ], [ -95.545243051064631, 29.819576203600445 ], [ -95.545233051254684, 29.8190562032072 ], [ -95.545229050582321, 29.818508203089056 ], [ -95.545226051052552, 29.817698202663117 ], [ -95.545235051227323, 29.817276202378601 ], [ -95.545219050351676, 29.816566202668657 ], [ -95.545211051074489, 29.815937202596217 ], [ -95.545205051050019, 29.815401202106582 ], [ -95.545211050630968, 29.815033202365456 ], [ -95.54520805054625, 29.8147192022772 ], [ -95.545210050770237, 29.81430220223886 ], [ -95.545211050548019, 29.814020202538696 ], [ -95.54521605102579, 29.8126922015011 ], [ -95.544098049887978, 29.812686202073419 ], [ -95.542251050158953, 29.812711201953132 ], [ -95.541894049924878, 29.812715202158198 ], [ -95.541233049694682, 29.812715201530239 ], [ -95.540702049198529, 29.812729201910084 ], [ -95.540152049440906, 29.812711202380964 ], [ -95.539700049609053, 29.812661202310352 ], [ -95.539250049285528, 29.812584201901476 ], [ -95.538747048804439, 29.812469201823077 ], [ -95.538295048963576, 29.812325202406889 ], [ -95.537892049140012, 29.812172202255088 ], [ -95.537092048661123, 29.812952202048052 ], [ -95.537014048381678, 29.813041202399663 ], [ -95.536947048331484, 29.813162201978848 ], [ -95.536894048382763, 29.813355201788337 ], [ -95.536887048415252, 29.813524202346887 ], [ -95.536892048591952, 29.813817202501596 ], [ -95.536902048297534, 29.814584202850323 ], [ -95.536910048885431, 29.815348202546001 ], [ -95.53691604902059, 29.815858202973295 ], [ -95.536924048472244, 29.816615202582557 ], [ -95.536914048797016, 29.817089203147784 ], [ -95.536889048732604, 29.817477203407019 ], [ -95.536839048898315, 29.817952203354274 ], [ -95.536817048306204, 29.818467203612276 ], [ -95.53683104824988, 29.818823203444065 ], [ -95.536854048714304, 29.819131203734514 ], [ -95.53689804902379, 29.819572203787573 ], [ -95.536915049079298, 29.819982203901812 ], [ -95.536916048741091, 29.82032320394244 ], [ -95.53691604904175, 29.820368203655789 ], [ -95.53690604832957, 29.820730204019085 ], [ -95.536898049156292, 29.821063203684616 ], [ -95.536891049112313, 29.821920204031404 ], [ -95.536899049326351, 29.822484204176085 ], [ -95.537591049124629, 29.822633203959374 ], [ -95.538399048934167, 29.822682204314216 ], [ -95.539122049827654, 29.822687204172468 ], [ -95.539745049482107, 29.822690204358643 ], [ -95.540532050081836, 29.82269620375471 ], [ -95.541103050278608, 29.822694204031368 ], [ -95.541299049953565, 29.822699204043957 ], [ -95.541506049549923, 29.822693203969475 ], [ -95.543418050595321, 29.822699204025561 ], [ -95.544090050686705, 29.822704203597873 ], [ -95.545267051469793, 29.822713204300886 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 468, "Tract": "48201350202", "Area_SqMi": 0.72141395585663681, "total_2009": 309, "total_2010": 55, "total_2011": 63, "total_2012": 131, "total_2013": 93, "total_2014": 77, "total_2015": 89, "total_2016": 69, "total_2017": 56, "total_2018": 111, "total_2019": 105, "total_2020": 46, "age1": 6, "age2": 32, "age3": 17, "earn1": 16, "earn2": 30, "earn3": 9, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 0, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 2, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 4, "naics_s19": 9, "naics_s20": 0, "race1": 44, "race2": 3, "race3": 5, "race4": 3, "race5": 0, "race6": 0, "ethnicity1": 26, "ethnicity2": 29, "edu1": 12, "edu2": 9, "edu3": 21, "edu4": 7, "Shape_Length": 21069.546983958884, "Shape_Area": 20111786.376957688, "total_2021": 47, "total_2022": 55 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.25031096534039, 29.598337168203557 ], [ -95.249320965575549, 29.597551167668723 ], [ -95.249267965089047, 29.597509167881153 ], [ -95.249206965349146, 29.597460167867339 ], [ -95.248665964557105, 29.597033167265067 ], [ -95.246411964105917, 29.595205167529198 ], [ -95.245898964524997, 29.595457167002579 ], [ -95.245420963709293, 29.594713167410895 ], [ -95.24494996428416, 29.594168167189988 ], [ -95.244913963797174, 29.594138167072721 ], [ -95.243361963701034, 29.592835167350213 ], [ -95.243269963806483, 29.592758166610569 ], [ -95.243190963403208, 29.592692166925648 ], [ -95.243078962983247, 29.592598167316098 ], [ -95.241102962882451, 29.590998166966969 ], [ -95.240650962459682, 29.590627166495501 ], [ -95.240371962890663, 29.5903981662515 ], [ -95.240266962074671, 29.5903121667981 ], [ -95.24025896288552, 29.590305166919798 ], [ -95.240007962150401, 29.590098166246182 ], [ -95.239693962290261, 29.589841166222374 ], [ -95.23936596275243, 29.589571165985618 ], [ -95.239219962337984, 29.589450166625614 ], [ -95.238767962122353, 29.589074166241062 ], [ -95.238200961671311, 29.588604166088512 ], [ -95.237358962062132, 29.587906166142748 ], [ -95.237081961171924, 29.587680165755138 ], [ -95.236827961283012, 29.587473166337652 ], [ -95.236054960940507, 29.58677216612579 ], [ -95.235465961337383, 29.586021166143901 ], [ -95.235146960777158, 29.585460165257835 ], [ -95.232946960750922, 29.586290165988178 ], [ -95.232117960818243, 29.586487165920442 ], [ -95.232289959978985, 29.58703816582474 ], [ -95.23260796071817, 29.587359166574412 ], [ -95.235417960838845, 29.589680166708497 ], [ -95.235061961315083, 29.590006166212614 ], [ -95.235005960971534, 29.590057166390253 ], [ -95.234687960840688, 29.590348166480435 ], [ -95.234074961357734, 29.590908166845008 ], [ -95.233471960480912, 29.591458166573677 ], [ -95.232862961273625, 29.592018166831398 ], [ -95.232050960086525, 29.592757167502679 ], [ -95.231430959972883, 29.593323167200776 ], [ -95.23081996010103, 29.593876167346615 ], [ -95.230199959689557, 29.594446167925611 ], [ -95.229595960211626, 29.594997168147131 ], [ -95.22897496021065, 29.595562168244324 ], [ -95.228025959397826, 29.596430168350089 ], [ -95.22787895946017, 29.596565167859559 ], [ -95.228045960007648, 29.596664167950518 ], [ -95.228284959450832, 29.596846168112052 ], [ -95.228523959516195, 29.597065168382912 ], [ -95.228592959477695, 29.597120168551978 ], [ -95.229202960027521, 29.597602168510971 ], [ -95.229448960080134, 29.59779616887586 ], [ -95.229491960625694, 29.597858168575129 ], [ -95.22953096041347, 29.597912168270952 ], [ -95.229920960302607, 29.598225168366053 ], [ -95.230048960002023, 29.598345168377318 ], [ -95.230374959975549, 29.598654168848658 ], [ -95.230651960282302, 29.598780168699768 ], [ -95.230732960752036, 29.598868168672002 ], [ -95.230783960690658, 29.598923168688426 ], [ -95.231047960253676, 29.599170169027115 ], [ -95.231387960428521, 29.599462169109323 ], [ -95.231725961037654, 29.599718168539216 ], [ -95.23192296053908, 29.599868169087909 ], [ -95.23243896120195, 29.600297168750977 ], [ -95.232664960675706, 29.600474168734678 ], [ -95.23283796069444, 29.600627168819347 ], [ -95.232959961339091, 29.60072216889489 ], [ -95.23578696189648, 29.600700168732228 ], [ -95.237007961927816, 29.600664168424142 ], [ -95.237675962569682, 29.60064516918349 ], [ -95.241438963436138, 29.600641168944346 ], [ -95.242846963297865, 29.600601168517009 ], [ -95.244401964386043, 29.600640168329292 ], [ -95.244671964091083, 29.60063916830331 ], [ -95.247337964653795, 29.600638168671598 ], [ -95.247521964621626, 29.600638168194049 ], [ -95.24781296541839, 29.600617168598024 ], [ -95.247863964942027, 29.600565168052398 ], [ -95.248204964616036, 29.600219168745522 ], [ -95.248608965666293, 29.599858167955503 ], [ -95.24912196561975, 29.599399168460337 ], [ -95.25031096534039, 29.598337168203557 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 469, "Tract": "48201350201", "Area_SqMi": 0.64180887684861854, "total_2009": 642, "total_2010": 716, "total_2011": 681, "total_2012": 659, "total_2013": 704, "total_2014": 829, "total_2015": 753, "total_2016": 322, "total_2017": 402, "total_2018": 735, "total_2019": 454, "total_2020": 307, "age1": 49, "age2": 79, "age3": 39, "earn1": 49, "earn2": 67, "earn3": 51, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 2, "naics_s07": 21, "naics_s08": 0, "naics_s09": 14, "naics_s10": 6, "naics_s11": 5, "naics_s12": 4, "naics_s13": 0, "naics_s14": 29, "naics_s15": 1, "naics_s16": 46, "naics_s17": 3, "naics_s18": 21, "naics_s19": 4, "naics_s20": 0, "race1": 123, "race2": 22, "race3": 1, "race4": 17, "race5": 0, "race6": 4, "ethnicity1": 96, "ethnicity2": 71, "edu1": 25, "edu2": 46, "edu3": 27, "edu4": 20, "Shape_Length": 20557.029005979988, "Shape_Area": 17892533.019668519, "total_2021": 147, "total_2022": 167 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.235061961315083, 29.590006166212614 ], [ -95.235417960838845, 29.589680166708497 ], [ -95.23260796071817, 29.587359166574412 ], [ -95.232289959978985, 29.58703816582474 ], [ -95.232117960818243, 29.586487165920442 ], [ -95.231106960413783, 29.586593165878234 ], [ -95.230838959820915, 29.586621165903331 ], [ -95.230586960442935, 29.586648166522075 ], [ -95.229909959537366, 29.586706165996471 ], [ -95.229026959333808, 29.586874166307332 ], [ -95.228167959459967, 29.587173166340257 ], [ -95.2276129594309, 29.587441166027499 ], [ -95.227079959578603, 29.587699166896211 ], [ -95.226415958679425, 29.588222166379094 ], [ -95.226277958601059, 29.588350166290862 ], [ -95.225829958888838, 29.588768166344739 ], [ -95.225224958728759, 29.589354167055703 ], [ -95.224608958240495, 29.589894166941214 ], [ -95.223994958569662, 29.590441167182547 ], [ -95.223377958002715, 29.590993166944745 ], [ -95.222922958529963, 29.59123716700946 ], [ -95.222236957756621, 29.591805167076245 ], [ -95.222107957862306, 29.591911167181777 ], [ -95.221961958190093, 29.59203116790524 ], [ -95.221527957497557, 29.592451167253547 ], [ -95.221129957309799, 29.592878167440208 ], [ -95.220673957602685, 29.593559167955931 ], [ -95.220069957853283, 29.59410416758972 ], [ -95.219459957879636, 29.594651167933165 ], [ -95.219107957452934, 29.594984168107107 ], [ -95.218908957552628, 29.595172167876765 ], [ -95.218800956978811, 29.595287168428186 ], [ -95.218673957162352, 29.595388168351789 ], [ -95.218368957331833, 29.595675168116959 ], [ -95.217784957469107, 29.596236168262404 ], [ -95.217188957169839, 29.596845168428775 ], [ -95.216728956685586, 29.597460169037248 ], [ -95.216458956750998, 29.598012169359865 ], [ -95.216244957007461, 29.598451169041695 ], [ -95.216014956645438, 29.599278169015584 ], [ -95.216004957116184, 29.59937116913596 ], [ -95.215968957219175, 29.600811169485333 ], [ -95.215980956681932, 29.600916169084876 ], [ -95.215996956809136, 29.601048169982093 ], [ -95.216297956682979, 29.601040169837276 ], [ -95.217522957018531, 29.600952169800415 ], [ -95.218718957931941, 29.600939169113968 ], [ -95.219328958161242, 29.600932169307864 ], [ -95.222681958979479, 29.600894169065526 ], [ -95.226404959327326, 29.600833168878516 ], [ -95.228376959595167, 29.60080416876756 ], [ -95.228540960228145, 29.600785169540856 ], [ -95.228701960092536, 29.600785169398787 ], [ -95.228913959976836, 29.600792169397341 ], [ -95.232279961431715, 29.600751169202852 ], [ -95.232702961202875, 29.600732168627918 ], [ -95.232959961339091, 29.60072216889489 ], [ -95.23283796069444, 29.600627168819347 ], [ -95.232664960675706, 29.600474168734678 ], [ -95.23243896120195, 29.600297168750977 ], [ -95.23192296053908, 29.599868169087909 ], [ -95.231725961037654, 29.599718168539216 ], [ -95.231387960428521, 29.599462169109323 ], [ -95.231047960253676, 29.599170169027115 ], [ -95.230783960690658, 29.598923168688426 ], [ -95.230732960752036, 29.598868168672002 ], [ -95.230651960282302, 29.598780168699768 ], [ -95.230374959975549, 29.598654168848658 ], [ -95.230048960002023, 29.598345168377318 ], [ -95.229920960302607, 29.598225168366053 ], [ -95.22953096041347, 29.597912168270952 ], [ -95.229491960625694, 29.597858168575129 ], [ -95.229448960080134, 29.59779616887586 ], [ -95.229202960027521, 29.597602168510971 ], [ -95.228592959477695, 29.597120168551978 ], [ -95.228523959516195, 29.597065168382912 ], [ -95.228284959450832, 29.596846168112052 ], [ -95.228045960007648, 29.596664167950518 ], [ -95.22787895946017, 29.596565167859559 ], [ -95.228025959397826, 29.596430168350089 ], [ -95.22897496021065, 29.595562168244324 ], [ -95.229595960211626, 29.594997168147131 ], [ -95.230199959689557, 29.594446167925611 ], [ -95.23081996010103, 29.593876167346615 ], [ -95.231430959972883, 29.593323167200776 ], [ -95.232050960086525, 29.592757167502679 ], [ -95.232862961273625, 29.592018166831398 ], [ -95.233471960480912, 29.591458166573677 ], [ -95.234074961357734, 29.590908166845008 ], [ -95.234687960840688, 29.590348166480435 ], [ -95.235005960971534, 29.590057166390253 ], [ -95.235061961315083, 29.590006166212614 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 470, "Tract": "48201321101", "Area_SqMi": 1.1502894870290423, "total_2009": 4541, "total_2010": 3756, "total_2011": 4324, "total_2012": 4050, "total_2013": 4494, "total_2014": 4418, "total_2015": 5307, "total_2016": 5028, "total_2017": 5526, "total_2018": 5936, "total_2019": 6448, "total_2020": 6055, "age1": 1120, "age2": 3849, "age3": 1488, "earn1": 540, "earn2": 978, "earn3": 4939, "naics_s01": 0, "naics_s02": 17, "naics_s03": 35, "naics_s04": 1315, "naics_s05": 122, "naics_s06": 660, "naics_s07": 46, "naics_s08": 330, "naics_s09": 426, "naics_s10": 184, "naics_s11": 57, "naics_s12": 1289, "naics_s13": 5, "naics_s14": 984, "naics_s15": 24, "naics_s16": 801, "naics_s17": 0, "naics_s18": 131, "naics_s19": 31, "naics_s20": 0, "race1": 4959, "race2": 969, "race3": 46, "race4": 374, "race5": 10, "race6": 99, "ethnicity1": 4474, "ethnicity2": 1983, "edu1": 918, "edu2": 1385, "edu3": 1715, "edu4": 1319, "Shape_Length": 24020.621167044061, "Shape_Area": 32068102.158236772, "total_2021": 6223, "total_2022": 6457 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.221053958658999, 29.620657173029048 ], [ -95.221177959253481, 29.62058717342379 ], [ -95.220539959171731, 29.619988172910485 ], [ -95.219322958933589, 29.618851173066425 ], [ -95.216128957477125, 29.615996172447471 ], [ -95.214488957341374, 29.614503171940299 ], [ -95.213117956415104, 29.613251172096941 ], [ -95.211456956349721, 29.611631171966767 ], [ -95.210670955707258, 29.610957172163612 ], [ -95.208314955357309, 29.608857171847138 ], [ -95.207258954787036, 29.60791617096632 ], [ -95.206635954199157, 29.607344171106561 ], [ -95.206557954755837, 29.60727317144303 ], [ -95.205984954462323, 29.60674917109856 ], [ -95.205872954726843, 29.606646171398765 ], [ -95.205699954377067, 29.606487171388704 ], [ -95.205554954370498, 29.606355171006221 ], [ -95.205445954583837, 29.606429170962119 ], [ -95.205261954044602, 29.606555171025708 ], [ -95.204922954366538, 29.606808170948746 ], [ -95.204817953897205, 29.606890171122171 ], [ -95.204529953847796, 29.607097171385767 ], [ -95.204464954222288, 29.60714517136616 ], [ -95.204005954032922, 29.607510171155873 ], [ -95.202516953779636, 29.608571171829997 ], [ -95.200433952992782, 29.610055171567748 ], [ -95.200150953499303, 29.610256172440721 ], [ -95.197461952656795, 29.612146172220392 ], [ -95.196258952030576, 29.612991172257612 ], [ -95.192287950945243, 29.615889173122131 ], [ -95.192032950992996, 29.616089173188715 ], [ -95.1919099509783, 29.61617717366321 ], [ -95.192059951539136, 29.616332173072664 ], [ -95.192249951583122, 29.616528173101109 ], [ -95.192514951740421, 29.616802173697465 ], [ -95.194446951847411, 29.618979173725474 ], [ -95.194586951920684, 29.619151173962255 ], [ -95.195949952992578, 29.620893173985916 ], [ -95.196104952988279, 29.621015174414573 ], [ -95.19635095225415, 29.621275174571942 ], [ -95.197202952818088, 29.622175174432389 ], [ -95.197513953424945, 29.622504174472702 ], [ -95.198014953632537, 29.623005175145202 ], [ -95.199016953113798, 29.622936174301152 ], [ -95.199743953732963, 29.622915174221664 ], [ -95.200895953983377, 29.622876174662412 ], [ -95.202056954230898, 29.622832174847485 ], [ -95.203218954491021, 29.622795174250886 ], [ -95.204417954907882, 29.622736174343547 ], [ -95.205558955287302, 29.622692174529742 ], [ -95.206711955315441, 29.622653174162188 ], [ -95.207854955555547, 29.622611174077765 ], [ -95.209032955564581, 29.622560174295291 ], [ -95.210208956266428, 29.622514174619454 ], [ -95.211418956628634, 29.622453174133486 ], [ -95.212616956438978, 29.622426174032729 ], [ -95.213790957087809, 29.622375173667756 ], [ -95.214933957071409, 29.622324174395569 ], [ -95.216122957302701, 29.622277173544674 ], [ -95.217024957611272, 29.622237173711614 ], [ -95.21729095778538, 29.6222331740261 ], [ -95.218423958413027, 29.622189173618676 ], [ -95.219610958436448, 29.622138173789846 ], [ -95.220093958433182, 29.622152173809681 ], [ -95.220465959384811, 29.622284173957766 ], [ -95.220785959082107, 29.622540173693157 ], [ -95.220721959333801, 29.621149173676852 ], [ -95.220722958465842, 29.620845173197839 ], [ -95.220919958904176, 29.620733173152328 ], [ -95.221053958658999, 29.620657173029048 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 471, "Tract": "48201453405", "Area_SqMi": 0.48745232892227347, "total_2009": 5117, "total_2010": 5140, "total_2011": 5075, "total_2012": 4522, "total_2013": 5612, "total_2014": 4868, "total_2015": 3726, "total_2016": 2713, "total_2017": 2314, "total_2018": 2435, "total_2019": 2387, "total_2020": 2149, "age1": 317, "age2": 1183, "age3": 556, "earn1": 249, "earn2": 729, "earn3": 1078, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 31, "naics_s05": 106, "naics_s06": 176, "naics_s07": 72, "naics_s08": 91, "naics_s09": 97, "naics_s10": 172, "naics_s11": 41, "naics_s12": 213, "naics_s13": 0, "naics_s14": 475, "naics_s15": 20, "naics_s16": 507, "naics_s17": 0, "naics_s18": 0, "naics_s19": 55, "naics_s20": 0, "race1": 1181, "race2": 360, "race3": 17, "race4": 471, "race5": 3, "race6": 24, "ethnicity1": 1423, "ethnicity2": 633, "edu1": 424, "edu2": 357, "edu3": 489, "edu4": 469, "Shape_Length": 15670.634410402943, "Shape_Area": 13589336.647354087, "total_2021": 2131, "total_2022": 2056 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.579412052782232, 29.663196170498413 ], [ -95.579734052967979, 29.662409170117066 ], [ -95.579033052210605, 29.662202170048619 ], [ -95.578783051997078, 29.662130169912636 ], [ -95.578015052053829, 29.661890170156539 ], [ -95.577892052303454, 29.661852169510251 ], [ -95.576621051533763, 29.661476170130562 ], [ -95.575978051984308, 29.661281169884216 ], [ -95.575321051219973, 29.661081169608618 ], [ -95.574598051221457, 29.660861169844889 ], [ -95.573562050617682, 29.660545169740406 ], [ -95.573204051198303, 29.660435169808473 ], [ -95.572986051151361, 29.660364170028242 ], [ -95.572607050692014, 29.660264170086574 ], [ -95.572447050360722, 29.660206169400166 ], [ -95.57215605011686, 29.660110169747924 ], [ -95.571695050641665, 29.659975169674578 ], [ -95.571114050849218, 29.659805169572053 ], [ -95.57071405061636, 29.659689169383313 ], [ -95.569679050020227, 29.659376169954484 ], [ -95.569033049984711, 29.661395170447019 ], [ -95.568968049426104, 29.661604169802207 ], [ -95.568941049727044, 29.661785170044229 ], [ -95.568890049882981, 29.662054170373519 ], [ -95.568870049886456, 29.662192170230991 ], [ -95.56877605034542, 29.662945170677229 ], [ -95.568706049948432, 29.663618170111061 ], [ -95.56869205039348, 29.663876170361338 ], [ -95.568688049477558, 29.664548170528455 ], [ -95.568828049997208, 29.666245171134534 ], [ -95.568923049944118, 29.666690170737979 ], [ -95.568965049734345, 29.667063171082756 ], [ -95.569133050381808, 29.667710171550969 ], [ -95.569203049815812, 29.667947171444091 ], [ -95.569271049875596, 29.668154171276974 ], [ -95.569287050454903, 29.668221171931389 ], [ -95.569547050263679, 29.668967171384651 ], [ -95.569634050651558, 29.669220171716525 ], [ -95.569851050309978, 29.669892172022784 ], [ -95.569934050231879, 29.670127171986362 ], [ -95.570007050560378, 29.670374171750286 ], [ -95.570121050657548, 29.670735172067314 ], [ -95.570200050821768, 29.67097217246631 ], [ -95.570235050572734, 29.67114817249087 ], [ -95.570273050843781, 29.671210171756687 ], [ -95.570320050425977, 29.671708172342321 ], [ -95.570356050394764, 29.672002172199086 ], [ -95.570364050732408, 29.672329172006844 ], [ -95.570363051045646, 29.672476172168711 ], [ -95.570396050393839, 29.673609172796834 ], [ -95.570396050956759, 29.67422517267449 ], [ -95.571299051470277, 29.674284172950166 ], [ -95.571862051070482, 29.674300172229298 ], [ -95.574482051866724, 29.674477173020129 ], [ -95.575278051925196, 29.674520172323977 ], [ -95.575892052212197, 29.674547172483848 ], [ -95.576220052822109, 29.674567172281009 ], [ -95.577271052410865, 29.674633172582251 ], [ -95.577377052483712, 29.673501172217851 ], [ -95.577399052701494, 29.673126172655799 ], [ -95.577434052277525, 29.672726171901093 ], [ -95.577440052846711, 29.672588171840882 ], [ -95.577403052348942, 29.671951172072081 ], [ -95.577205052465771, 29.671154172077131 ], [ -95.577031052297571, 29.670355172026035 ], [ -95.576972052306644, 29.669849171708865 ], [ -95.577043051949133, 29.669297171290026 ], [ -95.577165052617332, 29.668862171549627 ], [ -95.577393052656674, 29.668309171554537 ], [ -95.577499052460951, 29.668064170770897 ], [ -95.57787705200019, 29.667080171082773 ], [ -95.577997052487234, 29.666796170847963 ], [ -95.578181052252276, 29.666291170950409 ], [ -95.578341052143941, 29.6658981708187 ], [ -95.57848905279377, 29.665528170897691 ], [ -95.57880605277137, 29.664734170529908 ], [ -95.579114052079973, 29.663964169871377 ], [ -95.579412052782232, 29.663196170498413 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 472, "Tract": "48201453404", "Area_SqMi": 0.44165829222799141, "total_2009": 65, "total_2010": 86, "total_2011": 168, "total_2012": 170, "total_2013": 199, "total_2014": 197, "total_2015": 205, "total_2016": 201, "total_2017": 215, "total_2018": 210, "total_2019": 182, "total_2020": 174, "age1": 41, "age2": 113, "age3": 47, "earn1": 31, "earn2": 75, "earn3": 95, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 1, "naics_s06": 0, "naics_s07": 45, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 10, "naics_s12": 9, "naics_s13": 0, "naics_s14": 11, "naics_s15": 99, "naics_s16": 4, "naics_s17": 0, "naics_s18": 3, "naics_s19": 7, "naics_s20": 0, "race1": 132, "race2": 40, "race3": 3, "race4": 21, "race5": 1, "race6": 4, "ethnicity1": 112, "ethnicity2": 89, "edu1": 43, "edu2": 37, "edu3": 45, "edu4": 35, "Shape_Length": 20900.941069554785, "Shape_Area": 12312677.281594619, "total_2021": 189, "total_2022": 201 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.58538105403683, 29.662066169674198 ], [ -95.585233053875271, 29.661917169652476 ], [ -95.585059053975371, 29.661733169775129 ], [ -95.584821054056349, 29.6614671694423 ], [ -95.584350053751493, 29.660831169033724 ], [ -95.583989053346926, 29.660139169438672 ], [ -95.583741053684477, 29.659431169240719 ], [ -95.583145053464776, 29.659574169101461 ], [ -95.582736053675063, 29.659618168952385 ], [ -95.582182052718778, 29.659646169705638 ], [ -95.581691053383551, 29.659607169012059 ], [ -95.581489053463443, 29.659563169110616 ], [ -95.580702052513118, 29.659322169196848 ], [ -95.580243052156803, 29.659113169077362 ], [ -95.579909052488517, 29.659030169073574 ], [ -95.579840052258206, 29.659019169430323 ], [ -95.579708052207565, 29.658997168998248 ], [ -95.579462052769799, 29.658920169471152 ], [ -95.579141052284811, 29.65884916903228 ], [ -95.578745051738139, 29.658734168913075 ], [ -95.577914052434522, 29.65845916882958 ], [ -95.577532051796808, 29.658307168876892 ], [ -95.577265051984327, 29.65820116887765 ], [ -95.576938052119701, 29.65811316904421 ], [ -95.576793051787476, 29.658052169450137 ], [ -95.576466051791058, 29.657948169090083 ], [ -95.576032051772046, 29.657838168919042 ], [ -95.575887051308456, 29.657777169215134 ], [ -95.57562305098152, 29.657690169194659 ], [ -95.574597051322115, 29.657442169014441 ], [ -95.574326050709701, 29.657393169066363 ], [ -95.574154050841571, 29.657373168687588 ], [ -95.573986051020981, 29.65735416949531 ], [ -95.573803050521875, 29.657316169122652 ], [ -95.573470050690659, 29.657162169152009 ], [ -95.573281050288458, 29.657052169437954 ], [ -95.573080050675159, 29.656970169167842 ], [ -95.572759051097222, 29.656865168603495 ], [ -95.572362050754094, 29.656717168939693 ], [ -95.57164404999854, 29.656491169142068 ], [ -95.570784049918942, 29.656220168567216 ], [ -95.570777049935671, 29.656310168845682 ], [ -95.570721050513782, 29.656559169346103 ], [ -95.570677050327475, 29.656731169333856 ], [ -95.570613049923182, 29.65696716891388 ], [ -95.570530050081331, 29.657183169236252 ], [ -95.57020804957655, 29.658014169149432 ], [ -95.57003105001391, 29.658462169259057 ], [ -95.569903050228078, 29.658774169531966 ], [ -95.569679050020227, 29.659376169954484 ], [ -95.57071405061636, 29.659689169383313 ], [ -95.571114050849218, 29.659805169572053 ], [ -95.571695050641665, 29.659975169674578 ], [ -95.57215605011686, 29.660110169747924 ], [ -95.572447050360722, 29.660206169400166 ], [ -95.572607050692014, 29.660264170086574 ], [ -95.572986051151361, 29.660364170028242 ], [ -95.573204051198303, 29.660435169808473 ], [ -95.573562050617682, 29.660545169740406 ], [ -95.574598051221457, 29.660861169844889 ], [ -95.575321051219973, 29.661081169608618 ], [ -95.575978051984308, 29.661281169884216 ], [ -95.576621051533763, 29.661476170130562 ], [ -95.577892052303454, 29.661852169510251 ], [ -95.578015052053829, 29.661890170156539 ], [ -95.578783051997078, 29.662130169912636 ], [ -95.579033052210605, 29.662202170048619 ], [ -95.579734052967979, 29.662409170117066 ], [ -95.579412052782232, 29.663196170498413 ], [ -95.579114052079973, 29.663964169871377 ], [ -95.57880605277137, 29.664734170529908 ], [ -95.57848905279377, 29.665528170897691 ], [ -95.578341052143941, 29.6658981708187 ], [ -95.578181052252276, 29.666291170950409 ], [ -95.577997052487234, 29.666796170847963 ], [ -95.57787705200019, 29.667080171082773 ], [ -95.577499052460951, 29.668064170770897 ], [ -95.577393052656674, 29.668309171554537 ], [ -95.577165052617332, 29.668862171549627 ], [ -95.577043051949133, 29.669297171290026 ], [ -95.576972052306644, 29.669849171708865 ], [ -95.577031052297571, 29.670355172026035 ], [ -95.577205052465771, 29.671154172077131 ], [ -95.577403052348942, 29.671951172072081 ], [ -95.577440052846711, 29.672588171840882 ], [ -95.577434052277525, 29.672726171901093 ], [ -95.577399052701494, 29.673126172655799 ], [ -95.577377052483712, 29.673501172217851 ], [ -95.577271052410865, 29.674633172582251 ], [ -95.577762052829328, 29.674641172891459 ], [ -95.579631053182709, 29.67473817246125 ], [ -95.579986053621269, 29.674762172667648 ], [ -95.580882053869317, 29.674842172825002 ], [ -95.581150053932532, 29.674864172865249 ], [ -95.581529053270287, 29.674887172384068 ], [ -95.581256053524868, 29.674325172236021 ], [ -95.581281053514815, 29.673058171696905 ], [ -95.581604053964114, 29.671086172040443 ], [ -95.581724053402269, 29.67047017109898 ], [ -95.581716053389172, 29.670342171228782 ], [ -95.583439053438482, 29.66645117073886 ], [ -95.583443054029388, 29.666441170497162 ], [ -95.583466053946069, 29.666389170603338 ], [ -95.58538105403683, 29.662066169674198 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 473, "Tract": "48201453702", "Area_SqMi": 0.38981292785235333, "total_2009": 435, "total_2010": 487, "total_2011": 496, "total_2012": 549, "total_2013": 613, "total_2014": 717, "total_2015": 732, "total_2016": 884, "total_2017": 1086, "total_2018": 1103, "total_2019": 1071, "total_2020": 1091, "age1": 232, "age2": 460, "age3": 321, "earn1": 514, "earn2": 352, "earn3": 147, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 1, "naics_s06": 3, "naics_s07": 53, "naics_s08": 3, "naics_s09": 0, "naics_s10": 2, "naics_s11": 9, "naics_s12": 10, "naics_s13": 0, "naics_s14": 11, "naics_s15": 1, "naics_s16": 862, "naics_s17": 0, "naics_s18": 24, "naics_s19": 26, "naics_s20": 3, "race1": 560, "race2": 356, "race3": 12, "race4": 71, "race5": 0, "race6": 14, "ethnicity1": 659, "ethnicity2": 354, "edu1": 170, "edu2": 226, "edu3": 239, "edu4": 146, "Shape_Length": 13766.694553419176, "Shape_Area": 10867317.257029781, "total_2021": 1066, "total_2022": 1013 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.604264060006457, 29.688947174599381 ], [ -95.604223060253034, 29.686190174003869 ], [ -95.604210060107476, 29.685625174190903 ], [ -95.604206060430229, 29.685327174059722 ], [ -95.604205059956882, 29.684937173538813 ], [ -95.604200060298723, 29.684427173333205 ], [ -95.604193060135032, 29.683958173967582 ], [ -95.604186059347015, 29.683876173849502 ], [ -95.604161060240685, 29.683582173112942 ], [ -95.604111059747638, 29.683216173559483 ], [ -95.604019059458395, 29.682798173252326 ], [ -95.603908059943393, 29.682444173088761 ], [ -95.603726059853969, 29.682006172843419 ], [ -95.60342005923718, 29.681407172735998 ], [ -95.603099059538962, 29.680796172543186 ], [ -95.602954059294191, 29.680442172477633 ], [ -95.602719059545905, 29.679718172643099 ], [ -95.602609059608426, 29.678873172518294 ], [ -95.602615059437582, 29.678746172763532 ], [ -95.602645058952078, 29.678051172353769 ], [ -95.602243059271927, 29.677933172607219 ], [ -95.60029105876005, 29.677358172074989 ], [ -95.599651058563836, 29.677188172303808 ], [ -95.598815058354717, 29.676942172235126 ], [ -95.598074057668697, 29.676736172672676 ], [ -95.59752105737762, 29.676582172506347 ], [ -95.597064057338301, 29.676456172618416 ], [ -95.596789057505504, 29.676380171943588 ], [ -95.596162057724982, 29.676205171795687 ], [ -95.595912056910137, 29.676136172016744 ], [ -95.595665057342615, 29.676066172133684 ], [ -95.595676057425592, 29.676519172609407 ], [ -95.595693057654358, 29.677229172854123 ], [ -95.595703057857548, 29.677630172290275 ], [ -95.595714057679018, 29.678450172679085 ], [ -95.595731057902853, 29.679698172885729 ], [ -95.595742057733375, 29.680609172712874 ], [ -95.595759057204347, 29.681019172982182 ], [ -95.595766058001047, 29.681864173186298 ], [ -95.59581405730016, 29.683879173669812 ], [ -95.595827058116029, 29.684441173598351 ], [ -95.595826057995922, 29.684700173888299 ], [ -95.595836057928153, 29.685243173715044 ], [ -95.595842058250497, 29.685545173698941 ], [ -95.595847057539316, 29.685829174095407 ], [ -95.595867057456161, 29.686273174570335 ], [ -95.595870057701589, 29.686541174582381 ], [ -95.595868058013693, 29.687241174331586 ], [ -95.595884057561207, 29.687982175041995 ], [ -95.59591205765436, 29.689093175027317 ], [ -95.598411058150262, 29.689053175118776 ], [ -95.600373059289083, 29.689085174701805 ], [ -95.60410005995962, 29.688953174651456 ], [ -95.604264060006457, 29.688947174599381 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 474, "Tract": "48201455103", "Area_SqMi": 0.57016779109746341, "total_2009": 687, "total_2010": 625, "total_2011": 649, "total_2012": 697, "total_2013": 719, "total_2014": 687, "total_2015": 739, "total_2016": 767, "total_2017": 733, "total_2018": 715, "total_2019": 638, "total_2020": 546, "age1": 163, "age2": 239, "age3": 130, "earn1": 156, "earn2": 176, "earn3": 200, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 23, "naics_s07": 117, "naics_s08": 0, "naics_s09": 0, "naics_s10": 20, "naics_s11": 3, "naics_s12": 29, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 86, "naics_s17": 0, "naics_s18": 143, "naics_s19": 93, "naics_s20": 0, "race1": 393, "race2": 62, "race3": 1, "race4": 64, "race5": 2, "race6": 10, "ethnicity1": 377, "ethnicity2": 155, "edu1": 73, "edu2": 89, "edu3": 119, "edu4": 88, "Shape_Length": 20231.01601133501, "Shape_Area": 15895302.163870007, "total_2021": 549, "total_2022": 532 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.770856106202018, 29.767297185186649 ], [ -95.770986105691748, 29.767244184665611 ], [ -95.770733105812042, 29.766781184740172 ], [ -95.770297105890037, 29.765980184362807 ], [ -95.770089105639883, 29.765603184320806 ], [ -95.769337105338536, 29.764219183896575 ], [ -95.769251105263521, 29.764061184439399 ], [ -95.768240105432454, 29.762216183968025 ], [ -95.768064104665243, 29.76188118410273 ], [ -95.76802210508842, 29.761808183508158 ], [ -95.767727105521857, 29.761263183552902 ], [ -95.767684105049355, 29.761190183957783 ], [ -95.767462104824617, 29.760766183390142 ], [ -95.767329104914154, 29.760488183840089 ], [ -95.767290104930652, 29.760395183827011 ], [ -95.767242104946405, 29.760301183243474 ], [ -95.767128104393294, 29.760008183345828 ], [ -95.766997104283362, 29.759613183655606 ], [ -95.766890104354971, 29.759235183408908 ], [ -95.766840104675921, 29.759028183203032 ], [ -95.766734104855232, 29.758533183246559 ], [ -95.766639104787743, 29.757990183214819 ], [ -95.766627104601241, 29.757899182841985 ], [ -95.766567104697572, 29.757907183240242 ], [ -95.765733104336732, 29.75801218328316 ], [ -95.765260104454896, 29.758058183525918 ], [ -95.764738104174938, 29.758092183487872 ], [ -95.764413104312183, 29.758103183169073 ], [ -95.764114103647984, 29.758114183511253 ], [ -95.76364110383193, 29.758116182817417 ], [ -95.763508103600913, 29.7581171828968 ], [ -95.763121103580502, 29.758127182894196 ], [ -95.762913103778274, 29.758130183191678 ], [ -95.762604103210194, 29.758148183595239 ], [ -95.762255103994292, 29.758184183621086 ], [ -95.761920102914871, 29.758231183158941 ], [ -95.761538103033928, 29.758300183628837 ], [ -95.760522102755502, 29.758521182988559 ], [ -95.760411102949817, 29.758551183700259 ], [ -95.760289103249477, 29.758572183227457 ], [ -95.759586102563361, 29.758730183429773 ], [ -95.759308102940224, 29.758784183373386 ], [ -95.758830102381992, 29.758857183383647 ], [ -95.758636102734243, 29.758877183630577 ], [ -95.75831710263806, 29.758897183373623 ], [ -95.758227102758497, 29.758891183709206 ], [ -95.75809710287686, 29.758905183178108 ], [ -95.757802102602952, 29.758900183239021 ], [ -95.757573102442834, 29.758891183671331 ], [ -95.757143102229861, 29.758854183841478 ], [ -95.756942102246867, 29.758826183668948 ], [ -95.756821101912692, 29.758803183662071 ], [ -95.756371101849297, 29.758722183947828 ], [ -95.756178102385661, 29.758674183773184 ], [ -95.755996101753126, 29.758628183438109 ], [ -95.755505102280452, 29.758520184012649 ], [ -95.755389101258331, 29.758502183986831 ], [ -95.755255101627029, 29.758474183402832 ], [ -95.754941101801933, 29.758432183357556 ], [ -95.754626101621341, 29.758401183352934 ], [ -95.754255101172348, 29.758385183643409 ], [ -95.754141101718162, 29.758386183379368 ], [ -95.754045101852228, 29.758393183433732 ], [ -95.753780101210708, 29.758395183244001 ], [ -95.753580101661328, 29.758403183565257 ], [ -95.753351101054591, 29.758421183733134 ], [ -95.753307100792242, 29.758427183964688 ], [ -95.752871100717243, 29.758485183983442 ], [ -95.752552101177898, 29.75852218365397 ], [ -95.752332101267172, 29.75853818348077 ], [ -95.752227100821045, 29.758551183779971 ], [ -95.752118101120672, 29.758559183347071 ], [ -95.751935101314103, 29.758564183309158 ], [ -95.751858100674553, 29.75855818395209 ], [ -95.751722101016071, 29.758561183705915 ], [ -95.75160010061586, 29.758556183746855 ], [ -95.751601100487775, 29.758664183661978 ], [ -95.751602100891844, 29.759040184013816 ], [ -95.751645101247647, 29.759578183918414 ], [ -95.751649100725658, 29.76004118433973 ], [ -95.751653101025965, 29.76041618409365 ], [ -95.751656101464519, 29.761428184017742 ], [ -95.751647101228372, 29.761664184444211 ], [ -95.751633101189327, 29.763285184333981 ], [ -95.751626100782616, 29.764058184551427 ], [ -95.751626100695987, 29.764140184741827 ], [ -95.751629101081093, 29.764320184755846 ], [ -95.751629101127818, 29.764430184742377 ], [ -95.75162910140493, 29.764509184761128 ], [ -95.751627100582567, 29.76465518523543 ], [ -95.751624100757041, 29.764752184860622 ], [ -95.751620101457249, 29.764853184854395 ], [ -95.751616101553552, 29.76498818496836 ], [ -95.751610101305943, 29.765143184665295 ], [ -95.751643100884394, 29.765582185544304 ], [ -95.751644100684544, 29.765904184781732 ], [ -95.751651101016591, 29.76624618525873 ], [ -95.751658100943828, 29.766554185569539 ], [ -95.75166310115435, 29.76697618534951 ], [ -95.751678101401538, 29.768107185807001 ], [ -95.751697100885409, 29.769080185536708 ], [ -95.751703101828525, 29.769589186139523 ], [ -95.751704101450571, 29.769663185615315 ], [ -95.752016101040468, 29.769652186004489 ], [ -95.752259101120686, 29.769631186381613 ], [ -95.752400101745749, 29.769609185822972 ], [ -95.752537101771793, 29.769583186333907 ], [ -95.752761101308948, 29.769528185617894 ], [ -95.752822101593395, 29.769512186146081 ], [ -95.75287310115047, 29.769497186282493 ], [ -95.752983101962741, 29.769465186202446 ], [ -95.753152101703876, 29.76939418629031 ], [ -95.753291101740103, 29.769324186021887 ], [ -95.753487101681543, 29.769228185856718 ], [ -95.753567101641494, 29.769189185626452 ], [ -95.753616102240073, 29.769170185579373 ], [ -95.753731102240707, 29.769129185454506 ], [ -95.753885101746889, 29.769090185895447 ], [ -95.754021101500811, 29.769069186232741 ], [ -95.754146101624102, 29.769059185990116 ], [ -95.754266101471813, 29.76905618586246 ], [ -95.754432102130821, 29.769065185655769 ], [ -95.754536102204412, 29.769076185785465 ], [ -95.754611102538902, 29.769089185881111 ], [ -95.754745101745073, 29.769118185834266 ], [ -95.754906101782808, 29.769164186028881 ], [ -95.755075102654544, 29.769240185544536 ], [ -95.755193102294513, 29.769314185521178 ], [ -95.755247101977815, 29.769356185627377 ], [ -95.755340102393021, 29.76943918541274 ], [ -95.755623102421936, 29.769206186085128 ], [ -95.756101101889811, 29.768813186107582 ], [ -95.758834102746022, 29.766541184745769 ], [ -95.759035102586708, 29.766724184731721 ], [ -95.759088103284043, 29.766784185416402 ], [ -95.759151103127479, 29.766842184985837 ], [ -95.759224103405359, 29.766899185316763 ], [ -95.759593103553144, 29.76723218545623 ], [ -95.761632103460357, 29.765546184931406 ], [ -95.76188310380185, 29.765355185194181 ], [ -95.762108103816871, 29.765207184628931 ], [ -95.762343103804199, 29.765072185014084 ], [ -95.762508104321796, 29.764988184531614 ], [ -95.76275210385532, 29.764876184462686 ], [ -95.762971103707173, 29.764790184429167 ], [ -95.763051104222356, 29.764762184690031 ], [ -95.763264104442371, 29.764694184661121 ], [ -95.763494103872375, 29.764628184289013 ], [ -95.763730104063498, 29.764574184684047 ], [ -95.763938103763053, 29.764539184676735 ], [ -95.764175103963737, 29.764509184476751 ], [ -95.764272104200487, 29.764503184116698 ], [ -95.764475104675242, 29.764491184767081 ], [ -95.765251105054134, 29.764487184150504 ], [ -95.76536110494861, 29.764482184554343 ], [ -95.765476104707759, 29.764486184185611 ], [ -95.765830105077995, 29.764481184890354 ], [ -95.766430105135072, 29.764486184096359 ], [ -95.767205105139894, 29.764486184349519 ], [ -95.767457105218128, 29.764494184836302 ], [ -95.767575105661464, 29.764505184116949 ], [ -95.767688105578429, 29.764522184849085 ], [ -95.767734105663109, 29.764531184674475 ], [ -95.767794105650879, 29.764543184747517 ], [ -95.767920105094632, 29.764568184247302 ], [ -95.768128104919896, 29.764631184808252 ], [ -95.768244105031769, 29.764677184051653 ], [ -95.768336105580744, 29.764714184319168 ], [ -95.768400104890773, 29.764744184039944 ], [ -95.76845210512468, 29.764774184108134 ], [ -95.768523105038739, 29.764807184862164 ], [ -95.768667105512648, 29.764896184268942 ], [ -95.768741105881674, 29.764948184248755 ], [ -95.768934105113743, 29.765101184919946 ], [ -95.769067105700898, 29.765227184168378 ], [ -95.769162105948325, 29.765334184953812 ], [ -95.769254105359948, 29.765454184407218 ], [ -95.769340105917024, 29.765587184269691 ], [ -95.770383106336624, 29.76749418514493 ], [ -95.770856106202018, 29.767297185186649 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 475, "Tract": "48201432806", "Area_SqMi": 0.15992331013427197, "total_2009": 2646, "total_2010": 2400, "total_2011": 4776, "total_2012": 4629, "total_2013": 4650, "total_2014": 4643, "total_2015": 4506, "total_2016": 4988, "total_2017": 5012, "total_2018": 4964, "total_2019": 4741, "total_2020": 4307, "age1": 465, "age2": 1976, "age3": 1480, "earn1": 2834, "earn2": 745, "earn3": 342, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 0, "naics_s07": 10, "naics_s08": 3, "naics_s09": 2, "naics_s10": 0, "naics_s11": 38, "naics_s12": 83, "naics_s13": 0, "naics_s14": 43, "naics_s15": 0, "naics_s16": 3727, "naics_s17": 0, "naics_s18": 4, "naics_s19": 9, "naics_s20": 0, "race1": 1472, "race2": 2149, "race3": 28, "race4": 223, "race5": 1, "race6": 48, "ethnicity1": 3042, "ethnicity2": 879, "edu1": 888, "edu2": 989, "edu3": 1064, "edu4": 515, "Shape_Length": 9497.0933592557049, "Shape_Area": 4458388.1750626946, "total_2021": 4007, "total_2022": 3921 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.518065039511171, 29.713022182626442 ], [ -95.518050039267052, 29.711985182423234 ], [ -95.518048038809013, 29.711883182233144 ], [ -95.518045038888943, 29.711687181822381 ], [ -95.518038038611408, 29.711209181748185 ], [ -95.518034039162217, 29.710905181957784 ], [ -95.518031038619043, 29.710765181507391 ], [ -95.518027038811852, 29.710398181632563 ], [ -95.518019039160009, 29.709809181628945 ], [ -95.518022039333928, 29.709730181681596 ], [ -95.516170038726713, 29.709741181843508 ], [ -95.51569103862802, 29.709752181762724 ], [ -95.515149038054275, 29.709747181449725 ], [ -95.513945037992755, 29.709763181926107 ], [ -95.513587037540944, 29.709765182277877 ], [ -95.512912037375301, 29.709685181437145 ], [ -95.512580037409919, 29.709635182178314 ], [ -95.512055037249226, 29.709490182012363 ], [ -95.51141303687794, 29.709249182238135 ], [ -95.511193037739261, 29.70915918142596 ], [ -95.510824037433679, 29.708951181472489 ], [ -95.51039803716381, 29.708660181832421 ], [ -95.509592036527096, 29.708010182003676 ], [ -95.509506037039216, 29.707941181835864 ], [ -95.509422036202338, 29.707874181610975 ], [ -95.507757036065456, 29.709349182402914 ], [ -95.506470035891397, 29.710489181927528 ], [ -95.506588036349427, 29.710595182333169 ], [ -95.507335036195997, 29.711219182291572 ], [ -95.507603036444578, 29.711453182798031 ], [ -95.508508036522827, 29.712243182421183 ], [ -95.508671036361989, 29.712379182604671 ], [ -95.508834037184883, 29.712496182811591 ], [ -95.509168036883281, 29.71269518245975 ], [ -95.509419036555244, 29.712819182762768 ], [ -95.509718036976906, 29.712926182878682 ], [ -95.509873037111234, 29.712977183053301 ], [ -95.510035037067667, 29.713010182554477 ], [ -95.510330037066353, 29.713070182807854 ], [ -95.510595037092401, 29.713096182574727 ], [ -95.510919036926595, 29.71309518258683 ], [ -95.511953037238371, 29.713088182678295 ], [ -95.512120037359182, 29.713084182271015 ], [ -95.512303038117722, 29.713080182198265 ], [ -95.513624037531102, 29.713070182774548 ], [ -95.514684037856739, 29.713050182484238 ], [ -95.515036037921035, 29.713043182797062 ], [ -95.515214038491465, 29.713054182378425 ], [ -95.515727038614116, 29.713053182269377 ], [ -95.517377038969187, 29.71303518231711 ], [ -95.518065039511171, 29.713022182626442 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 476, "Tract": "48201455104", "Area_SqMi": 0.48447300751319045, "total_2009": 398, "total_2010": 336, "total_2011": 383, "total_2012": 469, "total_2013": 483, "total_2014": 545, "total_2015": 541, "total_2016": 602, "total_2017": 473, "total_2018": 492, "total_2019": 455, "total_2020": 492, "age1": 108, "age2": 249, "age3": 106, "earn1": 95, "earn2": 159, "earn3": 209, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 46, "naics_s05": 1, "naics_s06": 4, "naics_s07": 58, "naics_s08": 0, "naics_s09": 0, "naics_s10": 58, "naics_s11": 12, "naics_s12": 77, "naics_s13": 0, "naics_s14": 47, "naics_s15": 0, "naics_s16": 96, "naics_s17": 3, "naics_s18": 54, "naics_s19": 7, "naics_s20": 0, "race1": 373, "race2": 34, "race3": 1, "race4": 49, "race5": 2, "race6": 4, "ethnicity1": 315, "ethnicity2": 148, "edu1": 77, "edu2": 91, "edu3": 102, "edu4": 85, "Shape_Length": 16630.388575427507, "Shape_Area": 13506278.265628405, "total_2021": 429, "total_2022": 463 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.768995105796975, 29.773631186582254 ], [ -95.769008106093949, 29.773257185920006 ], [ -95.768510105755638, 29.773223186219671 ], [ -95.768328105647967, 29.773218185819353 ], [ -95.767749105659831, 29.773220186012839 ], [ -95.7677461057594, 29.772728186024253 ], [ -95.767751105643782, 29.772248186366301 ], [ -95.767767105334187, 29.772100185570391 ], [ -95.767797105096477, 29.771953185804016 ], [ -95.767841105665667, 29.771809186277228 ], [ -95.767898105166012, 29.771667186231621 ], [ -95.767965105239554, 29.771532185806091 ], [ -95.768041105674072, 29.771410185544305 ], [ -95.7681561055972, 29.771253186136516 ], [ -95.76826110571217, 29.771132185627703 ], [ -95.768357105627146, 29.771042185323786 ], [ -95.767731105551633, 29.770478185969164 ], [ -95.76710510538544, 29.76991218513281 ], [ -95.76647310504589, 29.769342185058964 ], [ -95.76601610519235, 29.768932185625573 ], [ -95.765959105195122, 29.76886418568089 ], [ -95.765895105141567, 29.768806185187216 ], [ -95.765833105214583, 29.768763184980308 ], [ -95.765232105206366, 29.768222185369307 ], [ -95.764877105000735, 29.767902185317045 ], [ -95.764716104868583, 29.767742184753175 ], [ -95.764608104596959, 29.767628185218658 ], [ -95.764457104560393, 29.767455184955864 ], [ -95.764265104844867, 29.767208185256969 ], [ -95.764101103950253, 29.766972184967877 ], [ -95.763984104027188, 29.766784184720546 ], [ -95.7638791041811, 29.766591185034663 ], [ -95.763724104381751, 29.766271184923372 ], [ -95.763470104493621, 29.765716184505937 ], [ -95.763437103674349, 29.76562818511983 ], [ -95.763382104245238, 29.765534184806175 ], [ -95.763092103974316, 29.764880184994968 ], [ -95.763051104222356, 29.764762184690031 ], [ -95.762971103707173, 29.764790184429167 ], [ -95.76275210385532, 29.764876184462686 ], [ -95.762508104321796, 29.764988184531614 ], [ -95.762343103804199, 29.765072185014084 ], [ -95.762108103816871, 29.765207184628931 ], [ -95.76188310380185, 29.765355185194181 ], [ -95.761632103460357, 29.765546184931406 ], [ -95.759593103553144, 29.76723218545623 ], [ -95.759224103405359, 29.766899185316763 ], [ -95.759151103127479, 29.766842184985837 ], [ -95.759088103284043, 29.766784185416402 ], [ -95.759035102586708, 29.766724184731721 ], [ -95.758834102746022, 29.766541184745769 ], [ -95.756101101889811, 29.768813186107582 ], [ -95.755623102421936, 29.769206186085128 ], [ -95.755340102393021, 29.76943918541274 ], [ -95.755247101977815, 29.769356185627377 ], [ -95.755193102294513, 29.769314185521178 ], [ -95.755075102654544, 29.769240185544536 ], [ -95.754906101782808, 29.769164186028881 ], [ -95.754745101745073, 29.769118185834266 ], [ -95.754611102538902, 29.769089185881111 ], [ -95.754536102204412, 29.769076185785465 ], [ -95.754432102130821, 29.769065185655769 ], [ -95.754266101471813, 29.76905618586246 ], [ -95.754146101624102, 29.769059185990116 ], [ -95.754021101500811, 29.769069186232741 ], [ -95.753885101746889, 29.769090185895447 ], [ -95.753731102240707, 29.769129185454506 ], [ -95.753616102240073, 29.769170185579373 ], [ -95.753567101641494, 29.769189185626452 ], [ -95.753487101681543, 29.769228185856718 ], [ -95.753291101740103, 29.769324186021887 ], [ -95.753152101703876, 29.76939418629031 ], [ -95.752983101962741, 29.769465186202446 ], [ -95.75287310115047, 29.769497186282493 ], [ -95.752822101593395, 29.769512186146081 ], [ -95.752761101308948, 29.769528185617894 ], [ -95.752537101771793, 29.769583186333907 ], [ -95.752400101745749, 29.769609185822972 ], [ -95.752259101120686, 29.769631186381613 ], [ -95.752016101040468, 29.769652186004489 ], [ -95.751704101450571, 29.769663185615315 ], [ -95.751724101838775, 29.770759186199605 ], [ -95.751734101902812, 29.771087185912361 ], [ -95.751739100922592, 29.771242186587759 ], [ -95.751737101473736, 29.772068186444901 ], [ -95.751737101501348, 29.772100186403538 ], [ -95.751737101768796, 29.772206186832765 ], [ -95.751746101044247, 29.772518186541827 ], [ -95.75175010146026, 29.772667186988489 ], [ -95.75175210119157, 29.772753186926607 ], [ -95.751755101859231, 29.772832186368298 ], [ -95.751754101909555, 29.773121187007007 ], [ -95.751762100990803, 29.77329718653645 ], [ -95.751759101045423, 29.773426186775691 ], [ -95.75179910122722, 29.773594187035055 ], [ -95.751761101935045, 29.773649186991229 ], [ -95.75177810140687, 29.774600186911911 ], [ -95.751776102076278, 29.774757186701763 ], [ -95.752058101188481, 29.774754187439697 ], [ -95.752841102196768, 29.774756186668 ], [ -95.75301110232553, 29.774760187136742 ], [ -95.753094102121892, 29.774756186794562 ], [ -95.753233101763456, 29.774761186944431 ], [ -95.75336210158342, 29.774760187179673 ], [ -95.75348210229221, 29.774754186552247 ], [ -95.754506101778205, 29.774753187381084 ], [ -95.75469210280302, 29.77475218662083 ], [ -95.754818102484435, 29.774748186659199 ], [ -95.755041102257593, 29.774753187149685 ], [ -95.755149102746202, 29.774752187186245 ], [ -95.755229102067929, 29.774744186676834 ], [ -95.755449102247852, 29.774740186494235 ], [ -95.756265102652947, 29.77474418668427 ], [ -95.756356102930823, 29.774752187252204 ], [ -95.756478102873245, 29.774756186833685 ], [ -95.756597102630877, 29.774753186435035 ], [ -95.757152103055574, 29.774784186866249 ], [ -95.757548103388118, 29.774811186740539 ], [ -95.75792010332097, 29.774849186702909 ], [ -95.758228103011149, 29.774890186576428 ], [ -95.758775102900884, 29.774963186613288 ], [ -95.759140103077101, 29.775013186904125 ], [ -95.759645103969362, 29.775074187044972 ], [ -95.760092103199653, 29.775117186608739 ], [ -95.760440103615196, 29.775143187209405 ], [ -95.760926104153384, 29.775171187231557 ], [ -95.761447104419034, 29.775186186639761 ], [ -95.761709104638726, 29.775182186482976 ], [ -95.762000104217464, 29.775186186454068 ], [ -95.762134103834597, 29.775180186853731 ], [ -95.762284104130259, 29.775182186869984 ], [ -95.762553104021777, 29.775177187132748 ], [ -95.762695104416906, 29.775181186699676 ], [ -95.762810104885361, 29.775176186967528 ], [ -95.763042104552596, 29.775181186612979 ], [ -95.7632561046251, 29.775175186536043 ], [ -95.764088104626936, 29.775168186383329 ], [ -95.764229104894142, 29.775173186402796 ], [ -95.764777104671978, 29.775169186520777 ], [ -95.76490710492989, 29.77516218684406 ], [ -95.76580910533302, 29.775166186547075 ], [ -95.765947105386417, 29.775160186712473 ], [ -95.766379104969516, 29.775152187004352 ], [ -95.766527105818653, 29.775161186735435 ], [ -95.767071105481719, 29.77516018672555 ], [ -95.767194105692212, 29.775151186465148 ], [ -95.76745010569303, 29.77515018666066 ], [ -95.767572105685389, 29.775158186255023 ], [ -95.767673105381888, 29.775158187010192 ], [ -95.767760105710678, 29.775152186426642 ], [ -95.767898105423669, 29.775151186635778 ], [ -95.768395105685926, 29.775149186814705 ], [ -95.768552106302707, 29.775144186695794 ], [ -95.768836105950129, 29.775144186973392 ], [ -95.768836106227425, 29.774893186110681 ], [ -95.768844105760806, 29.774555185969557 ], [ -95.768872106149786, 29.774160186755548 ], [ -95.76895310610189, 29.77381218595605 ], [ -95.768995105796975, 29.773631186582254 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 477, "Tract": "48201433601", "Area_SqMi": 0.25672715236213378, "total_2009": 4363, "total_2010": 4503, "total_2011": 5406, "total_2012": 4598, "total_2013": 4367, "total_2014": 4770, "total_2015": 4970, "total_2016": 5564, "total_2017": 5281, "total_2018": 5837, "total_2019": 6058, "total_2020": 5751, "age1": 1111, "age2": 2680, "age3": 1147, "earn1": 1059, "earn2": 1686, "earn3": 2193, "naics_s01": 0, "naics_s02": 12, "naics_s03": 0, "naics_s04": 38, "naics_s05": 11, "naics_s06": 37, "naics_s07": 722, "naics_s08": 106, "naics_s09": 190, "naics_s10": 156, "naics_s11": 197, "naics_s12": 336, "naics_s13": 0, "naics_s14": 561, "naics_s15": 0, "naics_s16": 2026, "naics_s17": 6, "naics_s18": 455, "naics_s19": 84, "naics_s20": 1, "race1": 2768, "race2": 1228, "race3": 50, "race4": 795, "race5": 5, "race6": 92, "ethnicity1": 3444, "ethnicity2": 1494, "edu1": 758, "edu2": 964, "edu3": 1120, "edu4": 985, "Shape_Length": 11564.513960588343, "Shape_Area": 7157113.6149436645, "total_2021": 5828, "total_2022": 4938 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.560370048297315, 29.670059172233533 ], [ -95.560357047882107, 29.669902171756618 ], [ -95.560287047671366, 29.668519171820627 ], [ -95.56026704800756, 29.667936171726549 ], [ -95.560231048275085, 29.667393171823253 ], [ -95.560209048052229, 29.667184171505923 ], [ -95.560174047524029, 29.666851171224923 ], [ -95.560138047939205, 29.666585171106323 ], [ -95.56008604830842, 29.666270171368677 ], [ -95.560045047598891, 29.666001171355855 ], [ -95.559950047490091, 29.665499171365333 ], [ -95.559809047166922, 29.664869171105021 ], [ -95.559656047882314, 29.664283171239703 ], [ -95.559290047213835, 29.663372171007573 ], [ -95.559142047072726, 29.662983171127227 ], [ -95.558925047679736, 29.662495170721868 ], [ -95.558811046838599, 29.662242170366223 ], [ -95.558455047638532, 29.661616170149685 ], [ -95.558384047433577, 29.661491170613196 ], [ -95.558318047286406, 29.661350170196371 ], [ -95.558224047627107, 29.661188170102854 ], [ -95.558131047059561, 29.661053170299731 ], [ -95.55791604742808, 29.661258170019266 ], [ -95.557830046680706, 29.66134117028389 ], [ -95.557644047366651, 29.661521170902297 ], [ -95.557532046884219, 29.661629170953972 ], [ -95.557255047345564, 29.661888170155965 ], [ -95.557140047291341, 29.661992170750491 ], [ -95.55695504691586, 29.662161170310519 ], [ -95.55586104616026, 29.66316217077128 ], [ -95.553390045555489, 29.66542117119565 ], [ -95.553275046057479, 29.665520171546234 ], [ -95.552244045455723, 29.666547172124236 ], [ -95.550863045527763, 29.667795172229162 ], [ -95.55006504562391, 29.668572172488897 ], [ -95.548931045328786, 29.669626172227922 ], [ -95.548976044851358, 29.669707172192982 ], [ -95.549047045276893, 29.669821172452298 ], [ -95.549355044860732, 29.670054172702564 ], [ -95.549737045317173, 29.670308173014856 ], [ -95.550324045592845, 29.670619172604827 ], [ -95.550471045944562, 29.670725172320097 ], [ -95.550757045103808, 29.67093317306901 ], [ -95.550875045759554, 29.671093172428723 ], [ -95.551406045357112, 29.670835172321734 ], [ -95.551708045378746, 29.670750172792285 ], [ -95.551942046416244, 29.670710172912827 ], [ -95.552504046520625, 29.67068517250576 ], [ -95.552639046550908, 29.670685172721267 ], [ -95.553163046151568, 29.67066617210088 ], [ -95.553281046714019, 29.670637172500289 ], [ -95.553343045771499, 29.67062217262237 ], [ -95.553473046246083, 29.670590172690492 ], [ -95.553769046009236, 29.670584172471518 ], [ -95.553889046259187, 29.670578172665973 ], [ -95.554287046927172, 29.670574172195462 ], [ -95.554366046486237, 29.670568172792724 ], [ -95.554682046113413, 29.670562172591492 ], [ -95.554932046163529, 29.670569172881297 ], [ -95.555303046742225, 29.670564172217222 ], [ -95.555782046392167, 29.670548172836561 ], [ -95.556106047411632, 29.670451172814587 ], [ -95.556344046879929, 29.670357172666709 ], [ -95.556437047049897, 29.670321172627901 ], [ -95.556649047113041, 29.670265172494631 ], [ -95.557024046767083, 29.670192172643773 ], [ -95.557253047735585, 29.670181172339635 ], [ -95.557557047315342, 29.670171172206516 ], [ -95.557770047598254, 29.670169172365281 ], [ -95.558536047822315, 29.67013317216928 ], [ -95.558616047424579, 29.670130171998721 ], [ -95.559830048404166, 29.670084172389924 ], [ -95.560170047712404, 29.670068171726093 ], [ -95.560370048297315, 29.670059172233533 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 478, "Tract": "48201453603", "Area_SqMi": 0.52995234168064398, "total_2009": 570, "total_2010": 607, "total_2011": 634, "total_2012": 548, "total_2013": 588, "total_2014": 590, "total_2015": 681, "total_2016": 677, "total_2017": 697, "total_2018": 730, "total_2019": 724, "total_2020": 614, "age1": 265, "age2": 504, "age3": 243, "earn1": 411, "earn2": 402, "earn3": 199, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 9, "naics_s06": 17, "naics_s07": 327, "naics_s08": 0, "naics_s09": 0, "naics_s10": 23, "naics_s11": 30, "naics_s12": 28, "naics_s13": 1, "naics_s14": 24, "naics_s15": 17, "naics_s16": 416, "naics_s17": 31, "naics_s18": 55, "naics_s19": 34, "naics_s20": 0, "race1": 418, "race2": 151, "race3": 6, "race4": 426, "race5": 2, "race6": 9, "ethnicity1": 763, "ethnicity2": 249, "edu1": 213, "edu2": 191, "edu3": 194, "edu4": 149, "Shape_Length": 22797.917565307271, "Shape_Area": 14774164.26355865, "total_2021": 644, "total_2022": 1012 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.587594055329305, 29.688931174994291 ], [ -95.587584055603031, 29.688059174917377 ], [ -95.587534055344193, 29.68732317502613 ], [ -95.587518055879826, 29.686545174494434 ], [ -95.587512055650137, 29.685765174756146 ], [ -95.587496055564642, 29.684987173883105 ], [ -95.587486055915605, 29.684562174561432 ], [ -95.586557054895096, 29.684543174171129 ], [ -95.586368055698088, 29.684444174118422 ], [ -95.586059054971571, 29.684164174221944 ], [ -95.582779053913953, 29.684197174168016 ], [ -95.582464054094501, 29.684505174395742 ], [ -95.582364054791384, 29.684621174172602 ], [ -95.582181053948233, 29.684654174597512 ], [ -95.581766054201978, 29.684648174385199 ], [ -95.581274054210127, 29.684170174702665 ], [ -95.580985054127524, 29.684126174681467 ], [ -95.580883053854066, 29.684135174394996 ], [ -95.579675053376519, 29.684247174329531 ], [ -95.57832805313457, 29.68438917418225 ], [ -95.578325053123322, 29.684207174758399 ], [ -95.578342052732651, 29.683885174786305 ], [ -95.578315053526111, 29.68362117401886 ], [ -95.578241053628787, 29.683113174581827 ], [ -95.578115052757752, 29.682308173814935 ], [ -95.57806805351602, 29.681500174025029 ], [ -95.578027053060794, 29.680686174068171 ], [ -95.577078052408794, 29.680903173504099 ], [ -95.576439052906679, 29.681031174279877 ], [ -95.575998052401061, 29.681075174086541 ], [ -95.575290052364707, 29.681085174026329 ], [ -95.57530005270425, 29.681880174378389 ], [ -95.575301052019739, 29.682672174146461 ], [ -95.574584052538498, 29.682693174680043 ], [ -95.574579052023097, 29.682028173738551 ], [ -95.574573051936412, 29.681387174429119 ], [ -95.574557051887851, 29.680301174018165 ], [ -95.574551052032618, 29.680066173911253 ], [ -95.574549052362116, 29.679539173334685 ], [ -95.574547051965311, 29.678876173928238 ], [ -95.574541051930169, 29.677795172913552 ], [ -95.574546051765068, 29.677640173327259 ], [ -95.574539051948236, 29.67748717297323 ], [ -95.574534052139981, 29.676551172732985 ], [ -95.574533052346638, 29.6763051725836 ], [ -95.574482051866724, 29.674477173020129 ], [ -95.571862051070482, 29.674300172229298 ], [ -95.571299051470277, 29.674284172950166 ], [ -95.570396050956759, 29.67422517267449 ], [ -95.570392050630218, 29.674760172627192 ], [ -95.570434051356372, 29.675325173072082 ], [ -95.57053705123711, 29.675950172825598 ], [ -95.570599050745955, 29.676395172907611 ], [ -95.57062305135787, 29.676681173531456 ], [ -95.570669050731311, 29.677528173095975 ], [ -95.570606050980615, 29.678384173609611 ], [ -95.570437050799399, 29.679111173240781 ], [ -95.570214051090687, 29.679839174107773 ], [ -95.570164050790311, 29.679955174107175 ], [ -95.570069050539772, 29.680629173814037 ], [ -95.57006905151853, 29.681454174190954 ], [ -95.570061051529521, 29.681682174429074 ], [ -95.570042050917749, 29.681820174160471 ], [ -95.569970050682471, 29.682230174029772 ], [ -95.569768050985516, 29.682980174734272 ], [ -95.569548050967441, 29.683859174826342 ], [ -95.569521051091456, 29.684031174977957 ], [ -95.569515051088374, 29.684160174377826 ], [ -95.569502050805923, 29.684589174942822 ], [ -95.569494050865146, 29.684816174880211 ], [ -95.569545051436933, 29.685569175143804 ], [ -95.569597051527197, 29.685906174987018 ], [ -95.569656051243626, 29.686178175510562 ], [ -95.569761051470664, 29.686505175108067 ], [ -95.569959051729853, 29.687281175727772 ], [ -95.570040051673985, 29.687573175090222 ], [ -95.570263051671532, 29.688381175640014 ], [ -95.571225051440038, 29.688181175879986 ], [ -95.572002051494309, 29.688083175537969 ], [ -95.572581052256552, 29.688074175616112 ], [ -95.573003051832998, 29.688073175534029 ], [ -95.574034052351166, 29.688055175540136 ], [ -95.574658052962988, 29.68804917561075 ], [ -95.575493052815759, 29.688044175134177 ], [ -95.575931052657353, 29.688045175404394 ], [ -95.576582052656832, 29.688055175558389 ], [ -95.577187053608398, 29.688108175333934 ], [ -95.577801053349674, 29.688207174998539 ], [ -95.577999053026161, 29.688244174954757 ], [ -95.578665053991145, 29.688364175184013 ], [ -95.579639053780781, 29.688532175458899 ], [ -95.580316053864763, 29.688661175002721 ], [ -95.581248054133809, 29.68882517530664 ], [ -95.581526054109119, 29.688858175656048 ], [ -95.58181205487351, 29.688893175001613 ], [ -95.582280054701201, 29.688920175036326 ], [ -95.582973055150788, 29.688945175205721 ], [ -95.583442054890341, 29.688943175188047 ], [ -95.584774055024198, 29.68891917563888 ], [ -95.585499055076681, 29.688927175323176 ], [ -95.587594055329305, 29.688931174994291 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 479, "Tract": "48201432803", "Area_SqMi": 0.12516450820460953, "total_2009": 1279, "total_2010": 1655, "total_2011": 2372, "total_2012": 2929, "total_2013": 2067, "total_2014": 2412, "total_2015": 2429, "total_2016": 2855, "total_2017": 2579, "total_2018": 2014, "total_2019": 2030, "total_2020": 1993, "age1": 265, "age2": 976, "age3": 524, "earn1": 750, "earn2": 348, "earn3": 667, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 282, "naics_s05": 0, "naics_s06": 239, "naics_s07": 93, "naics_s08": 0, "naics_s09": 47, "naics_s10": 0, "naics_s11": 46, "naics_s12": 79, "naics_s13": 0, "naics_s14": 25, "naics_s15": 73, "naics_s16": 877, "naics_s17": 0, "naics_s18": 1, "naics_s19": 3, "naics_s20": 0, "race1": 911, "race2": 609, "race3": 21, "race4": 197, "race5": 3, "race6": 24, "ethnicity1": 1148, "ethnicity2": 617, "edu1": 393, "edu2": 383, "edu3": 425, "edu4": 299, "Shape_Length": 7752.2274965004181, "Shape_Area": 3489372.267547763, "total_2021": 1504, "total_2022": 1765 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.520418039526461, 29.713902182868019 ], [ -95.520815039784139, 29.713179182028934 ], [ -95.52038003985389, 29.713032182680521 ], [ -95.520153039761681, 29.713000182416739 ], [ -95.519306039851429, 29.713016182700375 ], [ -95.518997039639999, 29.713013182492837 ], [ -95.518065039511171, 29.713022182626442 ], [ -95.517377038969187, 29.71303518231711 ], [ -95.515727038614116, 29.713053182269377 ], [ -95.515214038491465, 29.713054182378425 ], [ -95.515036037921035, 29.713043182797062 ], [ -95.514684037856739, 29.713050182484238 ], [ -95.513624037531102, 29.713070182774548 ], [ -95.513646038274373, 29.713985182845825 ], [ -95.513640038280272, 29.714646182764032 ], [ -95.51365003768835, 29.714840182938786 ], [ -95.513670037805838, 29.715877183258062 ], [ -95.513690038424073, 29.71674018341746 ], [ -95.513521038177061, 29.717551183743538 ], [ -95.513556038416155, 29.717724183739147 ], [ -95.5141430381628, 29.717699183215533 ], [ -95.51459703886519, 29.717682183774201 ], [ -95.514772038739437, 29.717676183787599 ], [ -95.514877038477508, 29.717672183088357 ], [ -95.515103038896967, 29.717679183566386 ], [ -95.51533303844532, 29.717672183007821 ], [ -95.515789038291459, 29.717675183561955 ], [ -95.51665403907684, 29.717665183287963 ], [ -95.517612039503575, 29.717640183428596 ], [ -95.5178390397854, 29.717629183127919 ], [ -95.518597039287556, 29.717633183054872 ], [ -95.519077039953402, 29.717653183714368 ], [ -95.519998039934265, 29.717757182935397 ], [ -95.519999040086617, 29.717603183025691 ], [ -95.520004040036227, 29.717085182949745 ], [ -95.519975039945109, 29.716249183188612 ], [ -95.519984039849589, 29.715737182911699 ], [ -95.519994039751495, 29.715434182895432 ], [ -95.520136039857448, 29.714674182656314 ], [ -95.520296040240538, 29.714159182927546 ], [ -95.520418039526461, 29.713902182868019 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 480, "Tract": "48201432805", "Area_SqMi": 0.34001066708287081, "total_2009": 4613, "total_2010": 4191, "total_2011": 1458, "total_2012": 1571, "total_2013": 1525, "total_2014": 2621, "total_2015": 2867, "total_2016": 3092, "total_2017": 2673, "total_2018": 2631, "total_2019": 2802, "total_2020": 2733, "age1": 758, "age2": 1265, "age3": 658, "earn1": 794, "earn2": 1100, "earn3": 787, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 286, "naics_s07": 652, "naics_s08": 14, "naics_s09": 0, "naics_s10": 96, "naics_s11": 27, "naics_s12": 162, "naics_s13": 11, "naics_s14": 993, "naics_s15": 0, "naics_s16": 115, "naics_s17": 6, "naics_s18": 259, "naics_s19": 60, "naics_s20": 0, "race1": 1351, "race2": 818, "race3": 16, "race4": 455, "race5": 4, "race6": 37, "ethnicity1": 1961, "ethnicity2": 720, "edu1": 449, "edu2": 464, "edu3": 576, "edu4": 434, "Shape_Length": 13905.858562332554, "Shape_Area": 9478915.4641977903, "total_2021": 2804, "total_2022": 2681 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.521341039396461, 29.708984181053133 ], [ -95.521352039716675, 29.708418181543497 ], [ -95.521310039563431, 29.707433180855809 ], [ -95.521295040145475, 29.706421180873665 ], [ -95.521310039312212, 29.705144180673926 ], [ -95.521249039654293, 29.704502180680084 ], [ -95.521130039060012, 29.704008180738789 ], [ -95.521025039599238, 29.703701180597665 ], [ -95.520955039051586, 29.703529180165617 ], [ -95.520896039408413, 29.703406180320876 ], [ -95.520702039188194, 29.703063180074288 ], [ -95.520540039257369, 29.702818179757205 ], [ -95.520380039720692, 29.702609179936758 ], [ -95.520270039090377, 29.702462180150878 ], [ -95.52013903900577, 29.702325180208465 ], [ -95.519968039091438, 29.702157180090833 ], [ -95.518868038558679, 29.701219179904431 ], [ -95.518484038458354, 29.700904179871603 ], [ -95.518016038436372, 29.70053217960357 ], [ -95.517863038071965, 29.700385179760492 ], [ -95.517734038067161, 29.700500179535769 ], [ -95.515825037902317, 29.702213180373047 ], [ -95.515471037964531, 29.702524180205792 ], [ -95.513407037593439, 29.704315180536181 ], [ -95.513274037403235, 29.704431180465619 ], [ -95.513064037729379, 29.70461918075134 ], [ -95.510650037169626, 29.706782180910352 ], [ -95.510261036525179, 29.707131181236569 ], [ -95.509422036202338, 29.707874181610975 ], [ -95.509506037039216, 29.707941181835864 ], [ -95.509592036527096, 29.708010182003676 ], [ -95.51039803716381, 29.708660181832421 ], [ -95.510824037433679, 29.708951181472489 ], [ -95.511193037739261, 29.70915918142596 ], [ -95.51141303687794, 29.709249182238135 ], [ -95.512055037249226, 29.709490182012363 ], [ -95.512580037409919, 29.709635182178314 ], [ -95.512912037375301, 29.709685181437145 ], [ -95.513587037540944, 29.709765182277877 ], [ -95.513945037992755, 29.709763181926107 ], [ -95.515149038054275, 29.709747181449725 ], [ -95.51569103862802, 29.709752181762724 ], [ -95.516170038726713, 29.709741181843508 ], [ -95.518022039333928, 29.709730181681596 ], [ -95.518019039160009, 29.709809181628945 ], [ -95.518027038811852, 29.710398181632563 ], [ -95.518031038619043, 29.710765181507391 ], [ -95.518034039162217, 29.710905181957784 ], [ -95.518038038611408, 29.711209181748185 ], [ -95.518045038888943, 29.711687181822381 ], [ -95.518048038809013, 29.711883182233144 ], [ -95.518050039267052, 29.711985182423234 ], [ -95.518065039511171, 29.713022182626442 ], [ -95.518997039639999, 29.713013182492837 ], [ -95.519306039851429, 29.713016182700375 ], [ -95.520153039761681, 29.713000182416739 ], [ -95.52038003985389, 29.713032182680521 ], [ -95.520815039784139, 29.713179182028934 ], [ -95.521088040075782, 29.71254318196485 ], [ -95.521262039705505, 29.711879181602505 ], [ -95.521321039846526, 29.711341181772529 ], [ -95.521329040254642, 29.709394181355595 ], [ -95.521341039396461, 29.708984181053133 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 481, "Tract": "48201454802", "Area_SqMi": 0.65489334347944306, "total_2009": 900, "total_2010": 845, "total_2011": 937, "total_2012": 969, "total_2013": 989, "total_2014": 885, "total_2015": 953, "total_2016": 958, "total_2017": 909, "total_2018": 763, "total_2019": 808, "total_2020": 820, "age1": 338, "age2": 415, "age3": 173, "earn1": 233, "earn2": 396, "earn3": 297, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 10, "naics_s06": 12, "naics_s07": 517, "naics_s08": 76, "naics_s09": 0, "naics_s10": 31, "naics_s11": 6, "naics_s12": 15, "naics_s13": 1, "naics_s14": 37, "naics_s15": 12, "naics_s16": 39, "naics_s17": 0, "naics_s18": 155, "naics_s19": 7, "naics_s20": 0, "race1": 674, "race2": 137, "race3": 14, "race4": 85, "race5": 0, "race6": 16, "ethnicity1": 554, "ethnicity2": 372, "edu1": 149, "edu2": 162, "edu3": 153, "edu4": 124, "Shape_Length": 19495.166315070219, "Shape_Area": 18257305.555047456, "total_2021": 886, "total_2022": 926 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.751704101450571, 29.769663185615315 ], [ -95.751703101828525, 29.769589186139523 ], [ -95.751697100885409, 29.769080185536708 ], [ -95.751678101401538, 29.768107185807001 ], [ -95.75166310115435, 29.76697618534951 ], [ -95.751658100943828, 29.766554185569539 ], [ -95.751651101016591, 29.76624618525873 ], [ -95.751644100684544, 29.765904184781732 ], [ -95.751643100884394, 29.765582185544304 ], [ -95.751610101305943, 29.765143184665295 ], [ -95.751616101553552, 29.76498818496836 ], [ -95.751620101457249, 29.764853184854395 ], [ -95.751624100757041, 29.764752184860622 ], [ -95.751627100582567, 29.76465518523543 ], [ -95.75162910140493, 29.764509184761128 ], [ -95.751629101127818, 29.764430184742377 ], [ -95.751629101081093, 29.764320184755846 ], [ -95.751626100695987, 29.764140184741827 ], [ -95.751626100782616, 29.764058184551427 ], [ -95.751633101189327, 29.763285184333981 ], [ -95.751647101228372, 29.761664184444211 ], [ -95.751656101464519, 29.761428184017742 ], [ -95.751653101025965, 29.76041618409365 ], [ -95.751649100725658, 29.76004118433973 ], [ -95.751645101247647, 29.759578183918414 ], [ -95.751602100891844, 29.759040184013816 ], [ -95.751601100487775, 29.758664183661978 ], [ -95.75160010061586, 29.758556183746855 ], [ -95.751534100875048, 29.758553183894222 ], [ -95.75037110075921, 29.758560184207955 ], [ -95.749334100249655, 29.758585184103001 ], [ -95.748755100245248, 29.758590183477907 ], [ -95.748625100062512, 29.758593183951053 ], [ -95.748447100142272, 29.75859718397966 ], [ -95.748391099887229, 29.758597183503035 ], [ -95.748140100165912, 29.75859818421953 ], [ -95.748044100289661, 29.758598184084395 ], [ -95.74794409988661, 29.758607183906918 ], [ -95.747833100014205, 29.758609183447774 ], [ -95.74771210012149, 29.758605183529117 ], [ -95.747532099961575, 29.758606184161948 ], [ -95.747460100224842, 29.758607184030264 ], [ -95.747049099229031, 29.758610183819904 ], [ -95.746712099922036, 29.758614183809531 ], [ -95.746574099201439, 29.758605184099551 ], [ -95.746443099123056, 29.758611183634638 ], [ -95.74538709911775, 29.758626183924481 ], [ -95.744963099588077, 29.758626183653529 ], [ -95.744872098964478, 29.75863218390657 ], [ -95.744762099442937, 29.758629184144535 ], [ -95.74356509915674, 29.758642184375908 ], [ -95.742718098755631, 29.758649183937656 ], [ -95.742237098829051, 29.758654184273549 ], [ -95.741859097902875, 29.75865918440455 ], [ -95.741577097804409, 29.758662183692223 ], [ -95.741311098510124, 29.758683184494679 ], [ -95.741181097910385, 29.758687184125368 ], [ -95.741031098405131, 29.758699184233702 ], [ -95.740811097827731, 29.758724183791436 ], [ -95.740502098058627, 29.758776184227905 ], [ -95.740436098375369, 29.758800184179574 ], [ -95.740180097550947, 29.758841184398747 ], [ -95.739267097664595, 29.759020184684687 ], [ -95.7390440974293, 29.759069183869936 ], [ -95.738927097428643, 29.759087184465667 ], [ -95.738526097712651, 29.75916618423334 ], [ -95.738376097701803, 29.759195184238958 ], [ -95.738293097217507, 29.759220184599272 ], [ -95.738188097608358, 29.759228184500333 ], [ -95.73810309786009, 29.759257184164206 ], [ -95.737996097087333, 29.759271184314859 ], [ -95.737230097390096, 29.759399184457333 ], [ -95.736828096749377, 29.759453184864068 ], [ -95.736622096856351, 29.75946818486802 ], [ -95.736524097497849, 29.759470184795543 ], [ -95.736427097010164, 29.759480184204683 ], [ -95.735988096641663, 29.759509184722582 ], [ -95.734885096430972, 29.759524184311129 ], [ -95.734339096514006, 29.759527184490651 ], [ -95.734335096393806, 29.759967185007326 ], [ -95.734355096639192, 29.761024185202594 ], [ -95.734372096253765, 29.761228185269715 ], [ -95.734420096159297, 29.761563185338392 ], [ -95.734482096606044, 29.761874184759787 ], [ -95.734633096622957, 29.76243018555455 ], [ -95.734710096808897, 29.762683184746262 ], [ -95.734807096875358, 29.763069185674652 ], [ -95.73483009626456, 29.763215185542716 ], [ -95.73486409654852, 29.76351318570438 ], [ -95.734884096738227, 29.763686185428611 ], [ -95.734878096711995, 29.763753185061908 ], [ -95.734890097204357, 29.764209185037185 ], [ -95.734885097032645, 29.764302185344864 ], [ -95.734888097157494, 29.764670185312664 ], [ -95.734896097196824, 29.764757185182425 ], [ -95.7348930963296, 29.764894185432464 ], [ -95.734896096741295, 29.765266185588686 ], [ -95.734909096446316, 29.765334186053707 ], [ -95.734899097329503, 29.765391185994485 ], [ -95.734900096646797, 29.765457185485275 ], [ -95.734913097050693, 29.765519185596876 ], [ -95.7349170966706, 29.765539185882925 ], [ -95.734903096452641, 29.765586186108706 ], [ -95.734889097092861, 29.76568018560711 ], [ -95.73490009705263, 29.766063186296222 ], [ -95.734904097296834, 29.76660818598566 ], [ -95.735035096536819, 29.766606185963536 ], [ -95.735433096724194, 29.76660918568755 ], [ -95.735881096785931, 29.766604185820288 ], [ -95.736406097362106, 29.766588186152056 ], [ -95.736843097507816, 29.766562185604386 ], [ -95.737205097747832, 29.766536186262009 ], [ -95.737723097722167, 29.766493185387777 ], [ -95.738161097344587, 29.76644518552127 ], [ -95.738559098325211, 29.766391186124238 ], [ -95.739033097748361, 29.766318186161879 ], [ -95.739295098415212, 29.766277185713999 ], [ -95.739827098439704, 29.766181185703161 ], [ -95.743430099469705, 29.765459185828092 ], [ -95.743493099026708, 29.765707185241936 ], [ -95.743532098778189, 29.765790185603883 ], [ -95.743535099079153, 29.765869185535973 ], [ -95.743636099350724, 29.766246185260947 ], [ -95.743665099341314, 29.766354185935871 ], [ -95.743700098717028, 29.766421185560681 ], [ -95.743779099151382, 29.766723185881862 ], [ -95.7437880987261, 29.766801185275316 ], [ -95.743837099412843, 29.766957185466556 ], [ -95.743851098824877, 29.767014185964975 ], [ -95.743872099140688, 29.767107185369269 ], [ -95.743900098863648, 29.76718518607592 ], [ -95.743922099018178, 29.767267185650301 ], [ -95.743932099295307, 29.767353185428785 ], [ -95.743955098848147, 29.767442186215121 ], [ -95.743991098804145, 29.767534186223688 ], [ -95.744002099598248, 29.767627185432303 ], [ -95.744057099702701, 29.767834186192633 ], [ -95.744069098949922, 29.767941186087246 ], [ -95.744130099814186, 29.768054186324807 ], [ -95.744158099009297, 29.768166186197526 ], [ -95.744172099651237, 29.768276186127309 ], [ -95.744216099113586, 29.768388185685286 ], [ -95.744301099850404, 29.768717185669843 ], [ -95.744318099379768, 29.768824186035381 ], [ -95.744356099540084, 29.768927186377859 ], [ -95.744457098958136, 29.769313186411431 ], [ -95.744460099886112, 29.769351186585677 ], [ -95.744465099683637, 29.769403186480634 ], [ -95.74450009994402, 29.76953218668249 ], [ -95.744533098995561, 29.769605186482583 ], [ -95.744554099999434, 29.769682186585861 ], [ -95.744565099650657, 29.769763185858888 ], [ -95.744588099678396, 29.769848186231101 ], [ -95.744622099035453, 29.769939186058245 ], [ -95.744775099683238, 29.770529186063399 ], [ -95.744960099392557, 29.771211186558276 ], [ -95.744982099914807, 29.77130418645854 ], [ -95.744993099813655, 29.771390186839771 ], [ -95.745049099855379, 29.771633187031142 ], [ -95.745072100142892, 29.771708186693619 ], [ -95.745236099296505, 29.771702186229266 ], [ -95.745486099532457, 29.771686186710955 ], [ -95.745737099664481, 29.771655186691177 ], [ -95.746027099662058, 29.771605186147646 ], [ -95.746232099672426, 29.771564186952087 ], [ -95.746548100464977, 29.771482186546059 ], [ -95.746808099817073, 29.771407186609693 ], [ -95.747043100141738, 29.771324186375686 ], [ -95.747198099741553, 29.771261186614012 ], [ -95.747496100263717, 29.771128186504978 ], [ -95.747628100184002, 29.771061186543211 ], [ -95.748272100728414, 29.770715185932627 ], [ -95.748546100721285, 29.770567186133057 ], [ -95.748697100223794, 29.770486185897624 ], [ -95.749049100166104, 29.770296185913438 ], [ -95.749183100434934, 29.770227185932903 ], [ -95.749444100585563, 29.770104186314054 ], [ -95.749513100380454, 29.770075185766107 ], [ -95.74961210088324, 29.770035186520033 ], [ -95.749777100977411, 29.7699671860201 ], [ -95.749989100730076, 29.769910185769447 ], [ -95.750013101040423, 29.769904186196619 ], [ -95.750078100492146, 29.769868186340709 ], [ -95.750253100685057, 29.769823186265928 ], [ -95.750479100884291, 29.769773185768678 ], [ -95.750620101046835, 29.769746185875189 ], [ -95.750902100651075, 29.769704186302224 ], [ -95.750994100888065, 29.769694185896601 ], [ -95.751266101427618, 29.769676186385762 ], [ -95.751556101124848, 29.769668186321272 ], [ -95.751582101189683, 29.769667185580371 ], [ -95.751704101450571, 29.769663185615315 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 482, "Tract": "48201433505", "Area_SqMi": 0.076767529122050704, "total_2009": 65, "total_2010": 94, "total_2011": 26, "total_2012": 40, "total_2013": 15, "total_2014": 15, "total_2015": 25, "total_2016": 8, "total_2017": 12, "total_2018": 26, "total_2019": 25, "total_2020": 28, "age1": 4, "age2": 18, "age3": 14, "earn1": 32, "earn2": 2, "earn3": 2, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 34, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 7, "race2": 28, "race3": 0, "race4": 1, "race5": 0, "race6": 0, "ethnicity1": 34, "ethnicity2": 2, "edu1": 8, "edu2": 8, "edu3": 10, "edu4": 6, "Shape_Length": 7197.6535061757086, "Shape_Area": 2140147.3229835606, "total_2021": 29, "total_2022": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.555525047534587, 29.68174017467242 ], [ -95.555665046988707, 29.681030174279201 ], [ -95.553961047155866, 29.680508174472536 ], [ -95.553852046463319, 29.680726174416925 ], [ -95.55366604729538, 29.680933174986698 ], [ -95.553130046973322, 29.68190617459582 ], [ -95.553006046602817, 29.682055175138657 ], [ -95.551979046255383, 29.681207175103427 ], [ -95.551667045868484, 29.68084717420863 ], [ -95.55154304579888, 29.680944174896378 ], [ -95.55141304664869, 29.681037174795545 ], [ -95.551064046072398, 29.681227174882757 ], [ -95.550791046408236, 29.681351174650139 ], [ -95.550485045835472, 29.6814841751196 ], [ -95.550681046145499, 29.681897175108414 ], [ -95.551026046198004, 29.682657175197726 ], [ -95.551119046724651, 29.682851174769983 ], [ -95.551282046446772, 29.683205175318733 ], [ -95.551415046080706, 29.683567174819672 ], [ -95.551489046838242, 29.683958175678473 ], [ -95.551523046472084, 29.684314175281834 ], [ -95.551451046674828, 29.68545617553071 ], [ -95.551401046887591, 29.686062175515403 ], [ -95.551509046571326, 29.686450175761994 ], [ -95.551591046952112, 29.686622175644345 ], [ -95.553944047040773, 29.685673175688287 ], [ -95.553994047428048, 29.685656175884951 ], [ -95.553919047016791, 29.685503175943708 ], [ -95.553587047184962, 29.684824175750691 ], [ -95.5540420467551, 29.684644175079978 ], [ -95.554830047442493, 29.684322175355323 ], [ -95.555631047606525, 29.684009175368843 ], [ -95.555423047264185, 29.683517175226477 ], [ -95.555353047223363, 29.683255175256452 ], [ -95.555321047075893, 29.68284017475785 ], [ -95.555525047534587, 29.68174017467242 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 483, "Tract": "48201432904", "Area_SqMi": 0.43930914598861215, "total_2009": 230, "total_2010": 224, "total_2011": 222, "total_2012": 203, "total_2013": 269, "total_2014": 300, "total_2015": 272, "total_2016": 265, "total_2017": 263, "total_2018": 277, "total_2019": 282, "total_2020": 244, "age1": 60, "age2": 177, "age3": 76, "earn1": 57, "earn2": 136, "earn3": 120, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 23, "naics_s07": 13, "naics_s08": 3, "naics_s09": 0, "naics_s10": 5, "naics_s11": 59, "naics_s12": 12, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 108, "naics_s17": 0, "naics_s18": 72, "naics_s19": 8, "naics_s20": 0, "race1": 140, "race2": 16, "race3": 0, "race4": 155, "race5": 0, "race6": 2, "ethnicity1": 231, "ethnicity2": 82, "edu1": 69, "edu2": 52, "edu3": 53, "edu4": 79, "Shape_Length": 16679.298593006835, "Shape_Area": 12247187.105044696, "total_2021": 250, "total_2022": 313 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.536166043442776, 29.706509180102302 ], [ -95.536158043298627, 29.705023180135864 ], [ -95.53595304292358, 29.705020180460085 ], [ -95.535279043451453, 29.705033180579502 ], [ -95.534362042488283, 29.705055179998993 ], [ -95.533500043121236, 29.705046180250182 ], [ -95.532752042989998, 29.70505218027095 ], [ -95.53224504264179, 29.705050180157397 ], [ -95.531116042218812, 29.705049180040788 ], [ -95.530267042340441, 29.705081180091483 ], [ -95.528364041838884, 29.705095180160022 ], [ -95.527469041588319, 29.705105180389037 ], [ -95.526566041408685, 29.705105180700318 ], [ -95.526358040755838, 29.705109180592906 ], [ -95.525636040458693, 29.705118180193299 ], [ -95.525253040324785, 29.705123180526915 ], [ -95.524872040459059, 29.705123180476178 ], [ -95.524714040276962, 29.705124180464136 ], [ -95.521310039312212, 29.705144180673926 ], [ -95.521295040145475, 29.706421180873665 ], [ -95.523821039946682, 29.706406180456643 ], [ -95.524005040711359, 29.706477180494858 ], [ -95.524079040351864, 29.706631181192797 ], [ -95.524106040441197, 29.707668180648394 ], [ -95.524117040085372, 29.708674181188535 ], [ -95.524124040997833, 29.709657181239159 ], [ -95.524123040739269, 29.710638181633609 ], [ -95.52413804068371, 29.711632181654046 ], [ -95.524161041163993, 29.712626182326211 ], [ -95.524168041015173, 29.713614181933686 ], [ -95.524169040342017, 29.714259182406831 ], [ -95.524182040598077, 29.714651182298336 ], [ -95.525526041368806, 29.714632182396915 ], [ -95.526281041252957, 29.7146221826012 ], [ -95.528010042121423, 29.714603182646798 ], [ -95.529021042316245, 29.714595182729866 ], [ -95.530871042394892, 29.714579182221978 ], [ -95.531455043095406, 29.714575182096254 ], [ -95.53275904296035, 29.714575181899594 ], [ -95.534388043583576, 29.71455518172575 ], [ -95.535102043745795, 29.714546181759598 ], [ -95.535073043828334, 29.712325181494247 ], [ -95.535036043506793, 29.710968181269514 ], [ -95.534997043033016, 29.710550181473426 ], [ -95.534693043730854, 29.709928181503578 ], [ -95.534402043400647, 29.709077181321195 ], [ -95.534132043495006, 29.70825518120672 ], [ -95.533880042560781, 29.707461180244294 ], [ -95.533767042448218, 29.707060181019273 ], [ -95.53382404286323, 29.706853180442351 ], [ -95.533941042739926, 29.706702180874451 ], [ -95.534200043312453, 29.706548180093321 ], [ -95.534570043334213, 29.706531180820786 ], [ -95.534884043252589, 29.706517180753732 ], [ -95.536166043442776, 29.706509180102302 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 484, "Tract": "48201433504", "Area_SqMi": 0.36079617179376805, "total_2009": 3403, "total_2010": 3723, "total_2011": 4172, "total_2012": 4645, "total_2013": 4438, "total_2014": 4188, "total_2015": 4418, "total_2016": 4553, "total_2017": 4454, "total_2018": 5262, "total_2019": 5775, "total_2020": 5795, "age1": 1223, "age2": 3059, "age3": 1475, "earn1": 2378, "earn2": 1658, "earn3": 1721, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 44, "naics_s05": 8, "naics_s06": 2, "naics_s07": 264, "naics_s08": 5, "naics_s09": 936, "naics_s10": 103, "naics_s11": 25, "naics_s12": 242, "naics_s13": 0, "naics_s14": 1180, "naics_s15": 53, "naics_s16": 2662, "naics_s17": 0, "naics_s18": 113, "naics_s19": 120, "naics_s20": 0, "race1": 2131, "race2": 2914, "race3": 42, "race4": 556, "race5": 7, "race6": 107, "ethnicity1": 4434, "ethnicity2": 1323, "edu1": 1026, "edu2": 1231, "edu3": 1417, "edu4": 860, "Shape_Length": 17813.792228297079, "Shape_Area": 10058379.760790754, "total_2021": 5152, "total_2022": 5757 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.553760047131604, 29.676425173501691 ], [ -95.553753046380109, 29.67612117331241 ], [ -95.553730046424477, 29.675749173098357 ], [ -95.553662046222087, 29.675090173284243 ], [ -95.552723046745299, 29.675158173539593 ], [ -95.552336045914885, 29.675172173653824 ], [ -95.551899046484152, 29.675216173352105 ], [ -95.551270046163282, 29.67525617381073 ], [ -95.550675045721661, 29.675308173282477 ], [ -95.550160045634243, 29.675354173623909 ], [ -95.549746045389071, 29.675380173501789 ], [ -95.549529045815774, 29.675395173224722 ], [ -95.548705045510317, 29.675447173452316 ], [ -95.54787204523906, 29.675492173954801 ], [ -95.546067045109297, 29.675592173833042 ], [ -95.543890043677749, 29.675767173851661 ], [ -95.542565044019298, 29.675842174105391 ], [ -95.54218504399843, 29.675876174069646 ], [ -95.541651043856248, 29.676374174080674 ], [ -95.540198042913786, 29.677727174376621 ], [ -95.539136042548108, 29.678716174889722 ], [ -95.538651043163014, 29.679145175145877 ], [ -95.537849042487281, 29.679895174975623 ], [ -95.537082042364574, 29.6806131748396 ], [ -95.536873042528327, 29.680802174916074 ], [ -95.536801042857689, 29.680866175135346 ], [ -95.537015043013739, 29.680994174978679 ], [ -95.537118042966455, 29.681056175300341 ], [ -95.537484042605072, 29.681050174772615 ], [ -95.538329042993581, 29.680353174704294 ], [ -95.538583043214857, 29.680239174989623 ], [ -95.539029043442753, 29.680198174944394 ], [ -95.543928044063691, 29.680865175227122 ], [ -95.547558045673412, 29.681669175019227 ], [ -95.547683045001165, 29.681708175266625 ], [ -95.547905045620837, 29.681778174629073 ], [ -95.54842404526201, 29.682128174897699 ], [ -95.548609045261884, 29.682319175408882 ], [ -95.5490040457981, 29.683068174922433 ], [ -95.549393046304473, 29.683933174977735 ], [ -95.549456045460687, 29.684178175427423 ], [ -95.549445045441985, 29.684464175100974 ], [ -95.549342046281197, 29.684884175172527 ], [ -95.548989046308535, 29.685841176220446 ], [ -95.548762046205653, 29.686638175614906 ], [ -95.548768046061227, 29.687105176072965 ], [ -95.54887904637269, 29.687450176395188 ], [ -95.549119046253239, 29.687821176458797 ], [ -95.549184046409906, 29.687734176038937 ], [ -95.549241046457212, 29.687668176095467 ], [ -95.549536045813582, 29.68748117572817 ], [ -95.550481046781002, 29.687069175863083 ], [ -95.551591046952112, 29.686622175644345 ], [ -95.551509046571326, 29.686450175761994 ], [ -95.551401046887591, 29.686062175515403 ], [ -95.551451046674828, 29.68545617553071 ], [ -95.551523046472084, 29.684314175281834 ], [ -95.551489046838242, 29.683958175678473 ], [ -95.551415046080706, 29.683567174819672 ], [ -95.551282046446772, 29.683205175318733 ], [ -95.551119046724651, 29.682851174769983 ], [ -95.551026046198004, 29.682657175197726 ], [ -95.550681046145499, 29.681897175108414 ], [ -95.550485045835472, 29.6814841751196 ], [ -95.550791046408236, 29.681351174650139 ], [ -95.551064046072398, 29.681227174882757 ], [ -95.55141304664869, 29.681037174795545 ], [ -95.55154304579888, 29.680944174896378 ], [ -95.551667045868484, 29.68084717420863 ], [ -95.551911045967742, 29.680635174585184 ], [ -95.55215704683954, 29.68036717461511 ], [ -95.552385046144991, 29.680031174910273 ], [ -95.552487046387327, 29.679844174010217 ], [ -95.552595046747371, 29.679600173952881 ], [ -95.552626046208502, 29.679505174582033 ], [ -95.552829046778783, 29.678997174452483 ], [ -95.552867046297649, 29.678903173944821 ], [ -95.553463046688876, 29.677493173734849 ], [ -95.553677046577818, 29.676901173765803 ], [ -95.553697046280419, 29.67682117364944 ], [ -95.553760047131604, 29.676425173501691 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 485, "Tract": "48201453701", "Area_SqMi": 0.5110531376310854, "total_2009": 230, "total_2010": 261, "total_2011": 362, "total_2012": 295, "total_2013": 283, "total_2014": 321, "total_2015": 387, "total_2016": 267, "total_2017": 275, "total_2018": 274, "total_2019": 268, "total_2020": 261, "age1": 61, "age2": 151, "age3": 72, "earn1": 62, "earn2": 145, "earn3": 77, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 1, "naics_s06": 22, "naics_s07": 54, "naics_s08": 0, "naics_s09": 34, "naics_s10": 10, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 125, "naics_s17": 0, "naics_s18": 7, "naics_s19": 5, "naics_s20": 0, "race1": 120, "race2": 114, "race3": 7, "race4": 36, "race5": 1, "race6": 6, "ethnicity1": 199, "ethnicity2": 85, "edu1": 50, "edu2": 56, "edu3": 68, "edu4": 49, "Shape_Length": 16973.65142761013, "Shape_Area": 14247286.800967963, "total_2021": 250, "total_2022": 284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.614473062085523, 29.68437517291984 ], [ -95.614483062192946, 29.683913173547712 ], [ -95.614438062397269, 29.681912172661175 ], [ -95.614433062042636, 29.681618172823203 ], [ -95.614428062248635, 29.681206172285471 ], [ -95.614427061902916, 29.681153172595959 ], [ -95.614425061873391, 29.680915172754833 ], [ -95.614414062024935, 29.679679172621775 ], [ -95.614411061774405, 29.679301172134871 ], [ -95.61441006203647, 29.679204171954403 ], [ -95.614435061873337, 29.678624172293727 ], [ -95.614434062519095, 29.678062171586344 ], [ -95.614435062184512, 29.677625171495727 ], [ -95.614409062114348, 29.676814171691234 ], [ -95.614407062604982, 29.676410171598686 ], [ -95.614414062091612, 29.676128171960308 ], [ -95.614421062445587, 29.67582317149979 ], [ -95.614437062262155, 29.675484171744341 ], [ -95.614442062534479, 29.675402171459908 ], [ -95.61433706171097, 29.675399171480169 ], [ -95.614259061923917, 29.675401171508305 ], [ -95.614029061740041, 29.675406171250312 ], [ -95.61364806223915, 29.675407171875914 ], [ -95.61352506204932, 29.675413171059947 ], [ -95.613383061553279, 29.675409171286102 ], [ -95.61308806192892, 29.675410171195484 ], [ -95.612295062002204, 29.675413171519409 ], [ -95.612061061847456, 29.675414171821725 ], [ -95.611869061243212, 29.675414171148816 ], [ -95.611258061334794, 29.675417171098232 ], [ -95.610160061480386, 29.675431171918838 ], [ -95.610066061228039, 29.675439171271545 ], [ -95.609982060807397, 29.675459171502805 ], [ -95.609909061445705, 29.675494171251273 ], [ -95.60987806097522, 29.675517171534764 ], [ -95.609846060708037, 29.675542172000082 ], [ -95.609797060885086, 29.675603171304552 ], [ -95.609758060447277, 29.675679171887282 ], [ -95.609468060589663, 29.67646417158948 ], [ -95.609429060788486, 29.676570171941488 ], [ -95.609218060654797, 29.677132171840324 ], [ -95.609151060980025, 29.677314172199111 ], [ -95.608908060987446, 29.677974172175539 ], [ -95.608787061277781, 29.678303171905984 ], [ -95.608738060549257, 29.678438172102261 ], [ -95.608613061221007, 29.678769172587085 ], [ -95.60833306048697, 29.679514172816745 ], [ -95.608310060433041, 29.679578172520927 ], [ -95.608247060721979, 29.679704172511407 ], [ -95.605394059990971, 29.678804172134129 ], [ -95.604689059962425, 29.678604172012864 ], [ -95.60425005967268, 29.678500172362792 ], [ -95.60372805971096, 29.67835017270389 ], [ -95.602645058952078, 29.678051172353769 ], [ -95.602615059437582, 29.678746172763532 ], [ -95.602609059608426, 29.678873172518294 ], [ -95.602719059545905, 29.679718172643099 ], [ -95.602954059294191, 29.680442172477633 ], [ -95.603099059538962, 29.680796172543186 ], [ -95.60342005923718, 29.681407172735998 ], [ -95.603726059853969, 29.682006172843419 ], [ -95.603908059943393, 29.682444173088761 ], [ -95.604019059458395, 29.682798173252326 ], [ -95.604111059747638, 29.683216173559483 ], [ -95.604161060240685, 29.683582173112942 ], [ -95.604186059347015, 29.683876173849502 ], [ -95.604193060135032, 29.683958173967582 ], [ -95.604200060298723, 29.684427173333205 ], [ -95.604205059956882, 29.684937173538813 ], [ -95.604206060430229, 29.685327174059722 ], [ -95.604210060107476, 29.685625174190903 ], [ -95.604223060253034, 29.686190174003869 ], [ -95.604264060006457, 29.688947174599381 ], [ -95.606622060687542, 29.688924174798444 ], [ -95.60716506064071, 29.688920174159385 ], [ -95.60844506084571, 29.688868174774115 ], [ -95.609503061396865, 29.688856174654656 ], [ -95.609671061296027, 29.688843174612746 ], [ -95.609835061134618, 29.688841174513779 ], [ -95.609989061493721, 29.688846174581773 ], [ -95.610669062092839, 29.688834174629971 ], [ -95.611282061854496, 29.688824174626404 ], [ -95.611597062418866, 29.688804174436275 ], [ -95.611758062379948, 29.688790174165611 ], [ -95.612082061881864, 29.688748174236625 ], [ -95.612241061642962, 29.688721174586629 ], [ -95.612401061928296, 29.688685173784314 ], [ -95.612556062063518, 29.688656174353174 ], [ -95.612704062672123, 29.688636173794951 ], [ -95.612999061888075, 29.688586173714565 ], [ -95.613284062140366, 29.688548174168631 ], [ -95.613550062173985, 29.688527173789382 ], [ -95.613912062551449, 29.688514174244443 ], [ -95.61433506298566, 29.688513173919194 ], [ -95.614331062597657, 29.688436174336935 ], [ -95.614384062721555, 29.685244173646012 ], [ -95.614471062680195, 29.685089173483036 ], [ -95.614472062792956, 29.684546173143584 ], [ -95.614473062085523, 29.68437517291984 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 486, "Tract": "48201450301", "Area_SqMi": 0.38205848204073911, "total_2009": 867, "total_2010": 877, "total_2011": 514, "total_2012": 627, "total_2013": 677, "total_2014": 654, "total_2015": 577, "total_2016": 596, "total_2017": 559, "total_2018": 568, "total_2019": 632, "total_2020": 537, "age1": 121, "age2": 248, "age3": 146, "earn1": 126, "earn2": 211, "earn3": 178, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 9, "naics_s05": 0, "naics_s06": 16, "naics_s07": 199, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 34, "naics_s12": 3, "naics_s13": 0, "naics_s14": 9, "naics_s15": 79, "naics_s16": 41, "naics_s17": 0, "naics_s18": 86, "naics_s19": 36, "naics_s20": 0, "race1": 367, "race2": 83, "race3": 8, "race4": 52, "race5": 1, "race6": 4, "ethnicity1": 355, "ethnicity2": 160, "edu1": 84, "edu2": 86, "edu3": 122, "edu4": 102, "Shape_Length": 15398.872524007284, "Shape_Area": 10651136.579668624, "total_2021": 566, "total_2022": 515 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.600469063033032, 29.772775192121017 ], [ -95.600481062622436, 29.772409192152296 ], [ -95.600456063269903, 29.77149619166736 ], [ -95.600457062294822, 29.771348191650254 ], [ -95.600445062344079, 29.770822191693494 ], [ -95.600437062708068, 29.770584191555773 ], [ -95.600430063195972, 29.770198191362539 ], [ -95.600187062430081, 29.77019819170129 ], [ -95.599977062169799, 29.770202191596152 ], [ -95.599748062880224, 29.77020519101465 ], [ -95.599469062739772, 29.770208191280208 ], [ -95.599328062330656, 29.770208191345493 ], [ -95.598761062328336, 29.770217191583036 ], [ -95.598457062722986, 29.770222191788051 ], [ -95.598362062080668, 29.77022319141351 ], [ -95.598203062574839, 29.770224191145434 ], [ -95.597799062259469, 29.770229191360624 ], [ -95.59665006185989, 29.770162191108728 ], [ -95.595970061864335, 29.770114191019086 ], [ -95.595707061997658, 29.770096191654766 ], [ -95.594652061709937, 29.770014191251672 ], [ -95.59439006121714, 29.769994191029223 ], [ -95.593713061417873, 29.769967191761687 ], [ -95.593434060929866, 29.76997519165111 ], [ -95.592808060921669, 29.770034191639127 ], [ -95.592659060576167, 29.770060191346076 ], [ -95.59251506061652, 29.77008519157101 ], [ -95.592325060185047, 29.770118191597462 ], [ -95.591869060508969, 29.77022919126798 ], [ -95.591556060384349, 29.770327191318049 ], [ -95.59117506081374, 29.770468191778484 ], [ -95.590979060318432, 29.77054819158656 ], [ -95.590660060253896, 29.770703191287087 ], [ -95.590439059852216, 29.770825191932765 ], [ -95.590238059834533, 29.770960191451412 ], [ -95.589804059784797, 29.77124319162068 ], [ -95.589863060108627, 29.771565191712511 ], [ -95.589925060362546, 29.771915192193624 ], [ -95.589986059937658, 29.772315191717105 ], [ -95.590018060530298, 29.772712192253657 ], [ -95.590035060193998, 29.773180192316261 ], [ -95.590050059854391, 29.773969192348694 ], [ -95.590073060533925, 29.774864192684163 ], [ -95.59009606031529, 29.775763193127894 ], [ -95.590111060011552, 29.776609193349575 ], [ -95.590135060863432, 29.777499192680846 ], [ -95.590164060438482, 29.778306193015521 ], [ -95.590173060467393, 29.779163193507813 ], [ -95.590188060157615, 29.779961193860515 ], [ -95.590195060344726, 29.780754194038114 ], [ -95.590214060240157, 29.781241194131525 ], [ -95.590234060869918, 29.78152219349878 ], [ -95.590255060791179, 29.782268194047465 ], [ -95.590257060777674, 29.782697193895302 ], [ -95.590682060340896, 29.782722194244393 ], [ -95.591435061403075, 29.782684193787805 ], [ -95.591901061037461, 29.782610194058581 ], [ -95.592467061005522, 29.782482193889511 ], [ -95.592635060817742, 29.782413193845397 ], [ -95.592781061290879, 29.782316194127041 ], [ -95.592936061357761, 29.782279193797585 ], [ -95.593329061561008, 29.782149194103983 ], [ -95.593731062001083, 29.782137193524179 ], [ -95.59464306209037, 29.782108193815343 ], [ -95.594862061408051, 29.782119194260762 ], [ -95.594848061694179, 29.781497193889457 ], [ -95.594847062087055, 29.780223193666465 ], [ -95.59484406203714, 29.78010119390126 ], [ -95.594827061483855, 29.779279193451924 ], [ -95.594827061900645, 29.779079193264479 ], [ -95.594811061713131, 29.778210192919364 ], [ -95.594793062006715, 29.777516192806488 ], [ -95.594772062019317, 29.776923192394207 ], [ -95.594726061431118, 29.776563192778504 ], [ -95.594714061856294, 29.776252192318637 ], [ -95.594984061780536, 29.776276192882733 ], [ -95.595269061358024, 29.776311192260451 ], [ -95.595498061819313, 29.776402192567645 ], [ -95.59564206184703, 29.776484192485086 ], [ -95.595895062044036, 29.776664192493733 ], [ -95.596663061952597, 29.77717719257765 ], [ -95.596859062319552, 29.777270192973297 ], [ -95.597202062304774, 29.77735819266055 ], [ -95.597428062232979, 29.777374193175394 ], [ -95.598788062599709, 29.777359193029625 ], [ -95.59878106294039, 29.777059193037147 ], [ -95.598787062897586, 29.77695919269954 ], [ -95.598833062262898, 29.776704192361116 ], [ -95.598894062830396, 29.776506192456413 ], [ -95.599033063101487, 29.776143192773294 ], [ -95.599357062911508, 29.775440192444592 ], [ -95.599514063173856, 29.775116192190488 ], [ -95.599808063201237, 29.774450192018744 ], [ -95.600066062618438, 29.773885192431756 ], [ -95.600285062963991, 29.773414191863722 ], [ -95.600358062917337, 29.773223192085204 ], [ -95.600436062731816, 29.772958192265641 ], [ -95.600469063033032, 29.772775192121017 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 487, "Tract": "48201450302", "Area_SqMi": 0.61091628431477374, "total_2009": 4088, "total_2010": 3949, "total_2011": 4347, "total_2012": 5200, "total_2013": 5517, "total_2014": 5169, "total_2015": 5363, "total_2016": 4980, "total_2017": 5209, "total_2018": 4894, "total_2019": 5013, "total_2020": 4728, "age1": 1118, "age2": 2592, "age3": 1068, "earn1": 741, "earn2": 1106, "earn3": 2931, "naics_s01": 0, "naics_s02": 435, "naics_s03": 0, "naics_s04": 69, "naics_s05": 82, "naics_s06": 192, "naics_s07": 1064, "naics_s08": 21, "naics_s09": 8, "naics_s10": 161, "naics_s11": 162, "naics_s12": 783, "naics_s13": 8, "naics_s14": 781, "naics_s15": 90, "naics_s16": 294, "naics_s17": 20, "naics_s18": 525, "naics_s19": 83, "naics_s20": 0, "race1": 3445, "race2": 808, "race3": 30, "race4": 429, "race5": 5, "race6": 61, "ethnicity1": 3443, "ethnicity2": 1335, "edu1": 694, "edu2": 878, "edu3": 1082, "edu4": 1006, "Shape_Length": 20959.6942338402, "Shape_Area": 17031300.413025469, "total_2021": 4181, "total_2022": 4778 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.606510065444979, 29.784962194369147 ], [ -95.606506064619921, 29.78476719440765 ], [ -95.606502065283323, 29.784595193760904 ], [ -95.606490065286707, 29.78425119403024 ], [ -95.606460065115996, 29.783761194268354 ], [ -95.606459065280148, 29.783578193637105 ], [ -95.606453065263921, 29.783289193450777 ], [ -95.606459064825117, 29.782771193648259 ], [ -95.606461064638609, 29.782658193794447 ], [ -95.606462064492632, 29.78255419377588 ], [ -95.606464065137331, 29.782353193462864 ], [ -95.606467065092474, 29.782166193489516 ], [ -95.606463064526466, 29.781760193845315 ], [ -95.60646206477513, 29.781602193497132 ], [ -95.606450064419334, 29.78142919310482 ], [ -95.606457064829527, 29.781221193241816 ], [ -95.606450064845802, 29.781012193519842 ], [ -95.60645306507304, 29.78076619280916 ], [ -95.606438064673512, 29.780297193259958 ], [ -95.606426065067538, 29.779955193266773 ], [ -95.606419064184323, 29.77979719342585 ], [ -95.60639906449876, 29.779074192733326 ], [ -95.606397064794919, 29.77898319272331 ], [ -95.606402064184792, 29.778374192292521 ], [ -95.606399064383368, 29.777969192350668 ], [ -95.606380064830986, 29.777759192672459 ], [ -95.606350064805667, 29.777397192465315 ], [ -95.606346064458734, 29.777228192580147 ], [ -95.606331064099507, 29.776727192376502 ], [ -95.606324064348087, 29.776482192771358 ], [ -95.606319064571721, 29.776326192159484 ], [ -95.606325064864137, 29.77613419247556 ], [ -95.606310064651382, 29.775855192094632 ], [ -95.606300064397701, 29.775693192464654 ], [ -95.606296064333009, 29.775517191873064 ], [ -95.606298064081159, 29.775253191809096 ], [ -95.606317064272673, 29.774987192393152 ], [ -95.606349064752663, 29.774549191714136 ], [ -95.606350064466696, 29.774091192159368 ], [ -95.606347064187105, 29.773881192087192 ], [ -95.606347063921859, 29.773775191575567 ], [ -95.60634206454678, 29.773484191339126 ], [ -95.606340064334915, 29.773378191620758 ], [ -95.606325064456868, 29.772599191955301 ], [ -95.606313064086279, 29.771909191273917 ], [ -95.606308064328658, 29.771672191243759 ], [ -95.606307064264712, 29.771404191288276 ], [ -95.606290064446725, 29.770673190916224 ], [ -95.60628606473918, 29.770477190966847 ], [ -95.606285063782408, 29.77039819093244 ], [ -95.606281064098482, 29.770101190805256 ], [ -95.605672063996153, 29.770104191388437 ], [ -95.60558306380058, 29.770108191326521 ], [ -95.605038063419244, 29.77011619122959 ], [ -95.604854063367085, 29.770118191105315 ], [ -95.604584064079816, 29.770137191405023 ], [ -95.604241063655024, 29.770141191298833 ], [ -95.604198063838396, 29.770142191267375 ], [ -95.603983063897843, 29.770146190790214 ], [ -95.603756063780679, 29.770144191290157 ], [ -95.603537063782426, 29.77014419125771 ], [ -95.603293063158901, 29.770148191204743 ], [ -95.603091063771657, 29.770152191161184 ], [ -95.602829063521042, 29.770160191107028 ], [ -95.602653062893594, 29.770161191176303 ], [ -95.602220063106174, 29.770170191096863 ], [ -95.601825063504847, 29.770175191543974 ], [ -95.601752063395523, 29.770177191004201 ], [ -95.601607062946044, 29.770179191506127 ], [ -95.601448062627156, 29.770180191453335 ], [ -95.601289062907483, 29.770183191411626 ], [ -95.600971062813883, 29.770187191464633 ], [ -95.600847063282117, 29.770190191347321 ], [ -95.600602062261117, 29.770192191531422 ], [ -95.600430063195972, 29.770198191362539 ], [ -95.600437062708068, 29.770584191555773 ], [ -95.600445062344079, 29.770822191693494 ], [ -95.600457062294822, 29.771348191650254 ], [ -95.600456063269903, 29.77149619166736 ], [ -95.600481062622436, 29.772409192152296 ], [ -95.600469063033032, 29.772775192121017 ], [ -95.600436062731816, 29.772958192265641 ], [ -95.600358062917337, 29.773223192085204 ], [ -95.600285062963991, 29.773414191863722 ], [ -95.600066062618438, 29.773885192431756 ], [ -95.599808063201237, 29.774450192018744 ], [ -95.599514063173856, 29.775116192190488 ], [ -95.599357062911508, 29.775440192444592 ], [ -95.599033063101487, 29.776143192773294 ], [ -95.598894062830396, 29.776506192456413 ], [ -95.598833062262898, 29.776704192361116 ], [ -95.598787062897586, 29.77695919269954 ], [ -95.59878106294039, 29.777059193037147 ], [ -95.598788062599709, 29.777359193029625 ], [ -95.597428062232979, 29.777374193175394 ], [ -95.597202062304774, 29.77735819266055 ], [ -95.596859062319552, 29.777270192973297 ], [ -95.596663061952597, 29.77717719257765 ], [ -95.595895062044036, 29.776664192493733 ], [ -95.59564206184703, 29.776484192485086 ], [ -95.595498061819313, 29.776402192567645 ], [ -95.595269061358024, 29.776311192260451 ], [ -95.594984061780536, 29.776276192882733 ], [ -95.594714061856294, 29.776252192318637 ], [ -95.594726061431118, 29.776563192778504 ], [ -95.594772062019317, 29.776923192394207 ], [ -95.594793062006715, 29.777516192806488 ], [ -95.594811061713131, 29.778210192919364 ], [ -95.594827061900645, 29.779079193264479 ], [ -95.594827061483855, 29.779279193451924 ], [ -95.59484406203714, 29.78010119390126 ], [ -95.594847062087055, 29.780223193666465 ], [ -95.594848061694179, 29.781497193889457 ], [ -95.594862061408051, 29.782119194260762 ], [ -95.59464306209037, 29.782108193815343 ], [ -95.593731062001083, 29.782137193524179 ], [ -95.593329061561008, 29.782149194103983 ], [ -95.592936061357761, 29.782279193797585 ], [ -95.592781061290879, 29.782316194127041 ], [ -95.592635060817742, 29.782413193845397 ], [ -95.592467061005522, 29.782482193889511 ], [ -95.591901061037461, 29.782610194058581 ], [ -95.591435061403075, 29.782684193787805 ], [ -95.590682060340896, 29.782722194244393 ], [ -95.590257060777674, 29.782697193895302 ], [ -95.590260060827546, 29.783105194649622 ], [ -95.590262060713385, 29.783441194037007 ], [ -95.590263060476246, 29.783653194563509 ], [ -95.59027106118775, 29.784178194060512 ], [ -95.590285060613979, 29.784557194720303 ], [ -95.590290060501019, 29.784715194553147 ], [ -95.590295061308112, 29.784925194606984 ], [ -95.590530060736569, 29.784932194346357 ], [ -95.591176061074648, 29.784910194997476 ], [ -95.592302060870423, 29.784932194099699 ], [ -95.596084062057102, 29.784947194798459 ], [ -95.597923063245688, 29.784932193961321 ], [ -95.604572064342378, 29.784992193783904 ], [ -95.606268065403682, 29.784970193839928 ], [ -95.606510065444979, 29.784962194369147 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 488, "Tract": "48201451606", "Area_SqMi": 1.3094433795888083, "total_2009": 696, "total_2010": 667, "total_2011": 656, "total_2012": 666, "total_2013": 680, "total_2014": 690, "total_2015": 675, "total_2016": 718, "total_2017": 632, "total_2018": 660, "total_2019": 663, "total_2020": 607, "age1": 171, "age2": 261, "age3": 124, "earn1": 173, "earn2": 179, "earn3": 204, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 11, "naics_s06": 81, "naics_s07": 144, "naics_s08": 1, "naics_s09": 3, "naics_s10": 3, "naics_s11": 5, "naics_s12": 41, "naics_s13": 0, "naics_s14": 17, "naics_s15": 3, "naics_s16": 21, "naics_s17": 0, "naics_s18": 194, "naics_s19": 15, "naics_s20": 0, "race1": 351, "race2": 93, "race3": 1, "race4": 99, "race5": 1, "race6": 11, "ethnicity1": 380, "ethnicity2": 176, "edu1": 73, "edu2": 99, "edu3": 98, "edu4": 115, "Shape_Length": 25748.159733387965, "Shape_Area": 36505040.288193576, "total_2021": 528, "total_2022": 556 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644548073434237, 29.752872186407011 ], [ -95.644550073551315, 29.752821186055613 ], [ -95.644537073425056, 29.752548186212422 ], [ -95.64452407299737, 29.751739185936422 ], [ -95.644527073509749, 29.751576185563724 ], [ -95.64452407268243, 29.751419186149267 ], [ -95.644519073463911, 29.751213185680445 ], [ -95.644525073186486, 29.751033185804836 ], [ -95.644523073212255, 29.750668186118961 ], [ -95.644516073552623, 29.750413185398855 ], [ -95.644513072886028, 29.750178185458292 ], [ -95.644516072791305, 29.749978185384986 ], [ -95.644510073049929, 29.749182185870168 ], [ -95.644529073094702, 29.744292184901521 ], [ -95.644515073206975, 29.743898184696349 ], [ -95.644386072923552, 29.742746184572258 ], [ -95.644362073189782, 29.742589184134754 ], [ -95.644322072409764, 29.742217184316708 ], [ -95.644178073006984, 29.740980183648702 ], [ -95.644172072855, 29.74090418358745 ], [ -95.644160072753721, 29.74041918332129 ], [ -95.64413607205698, 29.739091183661035 ], [ -95.644136072812657, 29.738915183128803 ], [ -95.644118072624707, 29.738117183574488 ], [ -95.644099072808871, 29.737085182675393 ], [ -95.64409207192071, 29.736420183312788 ], [ -95.644059072469247, 29.735649182695195 ], [ -95.642357071409492, 29.735671182996601 ], [ -95.641889071772965, 29.735689182877927 ], [ -95.641422072041678, 29.735690182971705 ], [ -95.640837071820542, 29.735710183212028 ], [ -95.640041071376629, 29.735705182438597 ], [ -95.638779071104068, 29.735723183205486 ], [ -95.638227071304229, 29.735751183011462 ], [ -95.637807071273201, 29.735750182647102 ], [ -95.636599070055595, 29.735770183332075 ], [ -95.635143069912246, 29.735797183023475 ], [ -95.634356069949618, 29.735811183173592 ], [ -95.632022069700753, 29.735830183557564 ], [ -95.628742068087845, 29.735868183402442 ], [ -95.626747067682018, 29.735888183005116 ], [ -95.626753067713636, 29.738775184265645 ], [ -95.626762068449992, 29.740545184460473 ], [ -95.626773068272797, 29.741162184594632 ], [ -95.62683906827364, 29.742989185264797 ], [ -95.626867068163676, 29.743100184818381 ], [ -95.626825068494725, 29.743115184852275 ], [ -95.626732068284767, 29.74313818506349 ], [ -95.627462068810999, 29.743154184485597 ], [ -95.627700068543646, 29.743148184993636 ], [ -95.627880068570477, 29.74314818446425 ], [ -95.628013068502526, 29.743149185111935 ], [ -95.628219068330026, 29.743156184751797 ], [ -95.628242069198123, 29.746382185126336 ], [ -95.628297068829681, 29.748874186015652 ], [ -95.628741069453483, 29.748876186076807 ], [ -95.628784069114346, 29.749166186080075 ], [ -95.628785069345852, 29.749439186515545 ], [ -95.628805068777609, 29.749544185707688 ], [ -95.628885069139542, 29.749593185681729 ], [ -95.629194069619501, 29.749618186095677 ], [ -95.629562069688106, 29.749622185946162 ], [ -95.629882069652069, 29.74959718613135 ], [ -95.629991069498899, 29.750116185783298 ], [ -95.629950069606295, 29.750523186144665 ], [ -95.629914068958769, 29.75072218595168 ], [ -95.629828069225312, 29.751003186579158 ], [ -95.629679069670487, 29.751336186747118 ], [ -95.629621069173979, 29.751765186402999 ], [ -95.629654069337931, 29.752110186553377 ], [ -95.62977006902689, 29.75252918696528 ], [ -95.629975069316828, 29.752874186887372 ], [ -95.630125069356481, 29.752940187085521 ], [ -95.630355070068063, 29.753067187158802 ], [ -95.630708069257949, 29.753210187033169 ], [ -95.630955069327499, 29.753225186448478 ], [ -95.631339069857091, 29.75323818705483 ], [ -95.631511069670424, 29.753212187147206 ], [ -95.631691070406802, 29.753184186689552 ], [ -95.631998070288716, 29.753080187097979 ], [ -95.63233206972005, 29.752931186238943 ], [ -95.632440070601433, 29.752868186278469 ], [ -95.632526070342763, 29.752969186808865 ], [ -95.633004070775101, 29.753508186466561 ], [ -95.633157070189569, 29.753874186856393 ], [ -95.633180070198932, 29.754244186586458 ], [ -95.633107070143794, 29.754506187100354 ], [ -95.633044070370318, 29.754934187297899 ], [ -95.633022070592617, 29.755675187509624 ], [ -95.633017069911077, 29.755778187398146 ], [ -95.632955069907297, 29.755810187490837 ], [ -95.632930070622962, 29.75590518689112 ], [ -95.633064070775148, 29.755916187360924 ], [ -95.634387070597441, 29.755923187213636 ], [ -95.635825070889624, 29.755915187016644 ], [ -95.637486071400218, 29.755893187375889 ], [ -95.637594071820558, 29.755893186996051 ], [ -95.637854071373042, 29.755893186992012 ], [ -95.638920072406137, 29.75588218695583 ], [ -95.63950507221243, 29.755876187172071 ], [ -95.639571072366195, 29.755876187006866 ], [ -95.639730072332497, 29.755875186624689 ], [ -95.641001072872328, 29.755870187193047 ], [ -95.641201072987002, 29.75587118676291 ], [ -95.64156407241471, 29.755873187314453 ], [ -95.6422050732793, 29.755869186792005 ], [ -95.64296007289326, 29.755865187076832 ], [ -95.64306207255602, 29.755866187286284 ], [ -95.644510073218484, 29.755877187249617 ], [ -95.644513073776551, 29.755635186617447 ], [ -95.644519073640382, 29.755469186354599 ], [ -95.644520073478461, 29.755408186308824 ], [ -95.644519073504895, 29.755184186294734 ], [ -95.644522073166058, 29.754943186582562 ], [ -95.644525072813025, 29.754702186854114 ], [ -95.644532073337459, 29.754494186336309 ], [ -95.644526073170596, 29.754124186589927 ], [ -95.644537072899567, 29.753290186204097 ], [ -95.644534073120909, 29.753148186382123 ], [ -95.644540072886102, 29.752958186640512 ], [ -95.644548073434237, 29.752872186407011 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 489, "Tract": "48201433507", "Area_SqMi": 0.18343395229619067, "total_2009": 590, "total_2010": 676, "total_2011": 587, "total_2012": 831, "total_2013": 778, "total_2014": 720, "total_2015": 786, "total_2016": 766, "total_2017": 894, "total_2018": 893, "total_2019": 990, "total_2020": 853, "age1": 274, "age2": 625, "age3": 226, "earn1": 422, "earn2": 233, "earn3": 470, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 5, "naics_s07": 26, "naics_s08": 0, "naics_s09": 9, "naics_s10": 26, "naics_s11": 10, "naics_s12": 25, "naics_s13": 259, "naics_s14": 23, "naics_s15": 447, "naics_s16": 280, "naics_s17": 0, "naics_s18": 0, "naics_s19": 14, "naics_s20": 1, "race1": 598, "race2": 378, "race3": 7, "race4": 119, "race5": 0, "race6": 23, "ethnicity1": 830, "ethnicity2": 295, "edu1": 164, "edu2": 235, "edu3": 235, "edu4": 217, "Shape_Length": 12580.810893169741, "Shape_Area": 5113824.6396707743, "total_2021": 974, "total_2022": 1125 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.560479048767945, 29.674681173475332 ], [ -95.560482048371355, 29.674632172950218 ], [ -95.56026804840927, 29.674643172668478 ], [ -95.559950048651615, 29.674660173387679 ], [ -95.559586048127542, 29.674680173228307 ], [ -95.559480048269705, 29.674686173359007 ], [ -95.559161048077542, 29.674704172807523 ], [ -95.55848704729398, 29.674767172724181 ], [ -95.557870048072431, 29.674808173272041 ], [ -95.557714047358587, 29.674818173275039 ], [ -95.556925047499348, 29.674876173133882 ], [ -95.556408046755806, 29.674908173005708 ], [ -95.555991047650167, 29.67493917338669 ], [ -95.555163046780862, 29.674987172933548 ], [ -95.553887046249528, 29.675088173218825 ], [ -95.553662046222087, 29.675090173284243 ], [ -95.553730046424477, 29.675749173098357 ], [ -95.553753046380109, 29.67612117331241 ], [ -95.553760047131604, 29.676425173501691 ], [ -95.553697046280419, 29.67682117364944 ], [ -95.553677046577818, 29.676901173765803 ], [ -95.553463046688876, 29.677493173734849 ], [ -95.554171046478473, 29.677615174082771 ], [ -95.554681047014682, 29.67761017373261 ], [ -95.554883047328346, 29.677597174331286 ], [ -95.555432046976065, 29.677562174240677 ], [ -95.555455046697418, 29.677561173695281 ], [ -95.555636047610292, 29.677550173848971 ], [ -95.556208047175247, 29.677519174267911 ], [ -95.556249047021865, 29.678123173548258 ], [ -95.556230047338332, 29.678425174005945 ], [ -95.556045046919721, 29.679236174334275 ], [ -95.555983047409768, 29.679492173902901 ], [ -95.555974047615052, 29.679589174161343 ], [ -95.55592304700339, 29.679861174323165 ], [ -95.555904047296636, 29.679950174475099 ], [ -95.555824047237962, 29.680343174333078 ], [ -95.555665046988707, 29.681030174279201 ], [ -95.555525047534587, 29.68174017467242 ], [ -95.555321047075893, 29.68284017475785 ], [ -95.555353047223363, 29.683255175256452 ], [ -95.555423047264185, 29.683517175226477 ], [ -95.555631047606525, 29.684009175368843 ], [ -95.554830047442493, 29.684322175355323 ], [ -95.5540420467551, 29.684644175079978 ], [ -95.553587047184962, 29.684824175750691 ], [ -95.553919047016791, 29.685503175943708 ], [ -95.553994047428048, 29.685656175884951 ], [ -95.554435046966915, 29.685502175183021 ], [ -95.556066048041657, 29.684848175300711 ], [ -95.55660704732432, 29.684672175126938 ], [ -95.557130048092134, 29.684628175316501 ], [ -95.558019048500967, 29.684654174873842 ], [ -95.558145048011383, 29.684658175595079 ], [ -95.558275048122539, 29.684662175225942 ], [ -95.558461048167672, 29.684667175411391 ], [ -95.559230048150823, 29.680983174776504 ], [ -95.559253048315341, 29.680873174192531 ], [ -95.559502048519647, 29.679681174262967 ], [ -95.559579048358117, 29.679290174209772 ], [ -95.559677047767735, 29.678854173588324 ], [ -95.559919048361394, 29.677776174182704 ], [ -95.560140047868714, 29.676887173240942 ], [ -95.560261048205476, 29.676219173720092 ], [ -95.56040404863073, 29.675209172830588 ], [ -95.560453048023405, 29.674863173303837 ], [ -95.560479048767945, 29.674681173475332 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 490, "Tract": "48201453002", "Area_SqMi": 0.79336661818212761, "total_2009": 900, "total_2010": 1140, "total_2011": 1115, "total_2012": 958, "total_2013": 923, "total_2014": 890, "total_2015": 904, "total_2016": 879, "total_2017": 910, "total_2018": 849, "total_2019": 925, "total_2020": 897, "age1": 238, "age2": 395, "age3": 271, "earn1": 256, "earn2": 477, "earn3": 171, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 0, "naics_s06": 26, "naics_s07": 262, "naics_s08": 8, "naics_s09": 0, "naics_s10": 34, "naics_s11": 23, "naics_s12": 64, "naics_s13": 1, "naics_s14": 49, "naics_s15": 0, "naics_s16": 91, "naics_s17": 3, "naics_s18": 250, "naics_s19": 63, "naics_s20": 0, "race1": 342, "race2": 52, "race3": 7, "race4": 482, "race5": 6, "race6": 15, "ethnicity1": 710, "ethnicity2": 194, "edu1": 194, "edu2": 158, "edu3": 190, "edu4": 124, "Shape_Length": 19252.799234649792, "Shape_Area": 22117703.454380039, "total_2021": 834, "total_2022": 904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.587870056833879, 29.703746177857077 ], [ -95.587841056584097, 29.703204177941089 ], [ -95.587831057029106, 29.702917177514141 ], [ -95.587763056543523, 29.699886177090058 ], [ -95.587784056296655, 29.699560177389465 ], [ -95.587719056417214, 29.696817176523222 ], [ -95.587707055719306, 29.696160176561641 ], [ -95.587705056306191, 29.69604017671287 ], [ -95.58769205666556, 29.695591176171284 ], [ -95.587670055704621, 29.694872176633407 ], [ -95.587652056020062, 29.69410817619378 ], [ -95.587635055964014, 29.693342175559494 ], [ -95.587630056253417, 29.692568175445853 ], [ -95.587636055991027, 29.692372175480013 ], [ -95.5876360557955, 29.692232175375931 ], [ -95.587612055513134, 29.691800175836175 ], [ -95.587606055682429, 29.69102817542699 ], [ -95.587594055329305, 29.688931174994291 ], [ -95.585499055076681, 29.688927175323176 ], [ -95.584774055024198, 29.68891917563888 ], [ -95.583442054890341, 29.688943175188047 ], [ -95.582973055150788, 29.688945175205721 ], [ -95.582280054701201, 29.688920175036326 ], [ -95.58181205487351, 29.688893175001613 ], [ -95.581526054109119, 29.688858175656048 ], [ -95.581248054133809, 29.68882517530664 ], [ -95.580316053864763, 29.688661175002721 ], [ -95.579639053780781, 29.688532175458899 ], [ -95.578665053991145, 29.688364175184013 ], [ -95.577999053026161, 29.688244174954757 ], [ -95.577801053349674, 29.688207174998539 ], [ -95.577187053608398, 29.688108175333934 ], [ -95.576582052656832, 29.688055175558389 ], [ -95.575931052657353, 29.688045175404394 ], [ -95.575493052815759, 29.688044175134177 ], [ -95.574658052962988, 29.68804917561075 ], [ -95.574663052674182, 29.688888175755114 ], [ -95.57465905241942, 29.689296175983454 ], [ -95.57465705299542, 29.690230176158529 ], [ -95.574683052868338, 29.691186175575623 ], [ -95.574682053155527, 29.691628176066686 ], [ -95.574693052515656, 29.69190017598725 ], [ -95.57472305219423, 29.691997176037262 ], [ -95.574763052414085, 29.692402176385379 ], [ -95.574893052742155, 29.693398176450565 ], [ -95.575064052598265, 29.694662177112818 ], [ -95.575250052570794, 29.69610117707829 ], [ -95.575292053490898, 29.696755177134737 ], [ -95.575299053049875, 29.697419177639826 ], [ -95.575316052803814, 29.698226177187124 ], [ -95.575322053424173, 29.699044177291977 ], [ -95.57532805343557, 29.699828177708987 ], [ -95.575362053727204, 29.701774178458443 ], [ -95.575357053513855, 29.702378178294662 ], [ -95.575372053032154, 29.703027178425092 ], [ -95.575376052940427, 29.703749178287062 ], [ -95.575388053163351, 29.703870178849719 ], [ -95.57727705384265, 29.703829178700186 ], [ -95.578149054058727, 29.703826178145409 ], [ -95.579447054450071, 29.70380917835033 ], [ -95.580350054293007, 29.70380317862325 ], [ -95.580865054913502, 29.703798178593289 ], [ -95.581108054692351, 29.703791178572089 ], [ -95.581475055346061, 29.703783178659453 ], [ -95.581928055038929, 29.70377917794249 ], [ -95.583134055644777, 29.703783177911394 ], [ -95.584563055902137, 29.703764178656584 ], [ -95.585614056411757, 29.703759178332078 ], [ -95.586338056289222, 29.703756178301571 ], [ -95.586918056575186, 29.703747178498215 ], [ -95.5871620559587, 29.703738178314325 ], [ -95.587870056833879, 29.703746177857077 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 491, "Tract": "48201451605", "Area_SqMi": 0.33962858552628628, "total_2009": 196, "total_2010": 185, "total_2011": 325, "total_2012": 315, "total_2013": 297, "total_2014": 303, "total_2015": 351, "total_2016": 361, "total_2017": 368, "total_2018": 377, "total_2019": 399, "total_2020": 614, "age1": 172, "age2": 371, "age3": 232, "earn1": 190, "earn2": 399, "earn3": 186, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 7, "naics_s07": 24, "naics_s08": 4, "naics_s09": 0, "naics_s10": 4, "naics_s11": 67, "naics_s12": 16, "naics_s13": 0, "naics_s14": 384, "naics_s15": 0, "naics_s16": 162, "naics_s17": 10, "naics_s18": 90, "naics_s19": 7, "naics_s20": 0, "race1": 331, "race2": 358, "race3": 6, "race4": 71, "race5": 0, "race6": 9, "ethnicity1": 575, "ethnicity2": 200, "edu1": 154, "edu2": 161, "edu3": 153, "edu4": 135, "Shape_Length": 19648.478362044618, "Shape_Area": 9468263.6843393333, "total_2021": 746, "total_2022": 775 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.633180070198932, 29.754244186586458 ], [ -95.633157070189569, 29.753874186856393 ], [ -95.633004070775101, 29.753508186466561 ], [ -95.632526070342763, 29.752969186808865 ], [ -95.632440070601433, 29.752868186278469 ], [ -95.63233206972005, 29.752931186238943 ], [ -95.631998070288716, 29.753080187097979 ], [ -95.631691070406802, 29.753184186689552 ], [ -95.631511069670424, 29.753212187147206 ], [ -95.631339069857091, 29.75323818705483 ], [ -95.630955069327499, 29.753225186448478 ], [ -95.630708069257949, 29.753210187033169 ], [ -95.630355070068063, 29.753067187158802 ], [ -95.630125069356481, 29.752940187085521 ], [ -95.629975069316828, 29.752874186887372 ], [ -95.62977006902689, 29.75252918696528 ], [ -95.629654069337931, 29.752110186553377 ], [ -95.629621069173979, 29.751765186402999 ], [ -95.629679069670487, 29.751336186747118 ], [ -95.629828069225312, 29.751003186579158 ], [ -95.629914068958769, 29.75072218595168 ], [ -95.629950069606295, 29.750523186144665 ], [ -95.629991069498899, 29.750116185783298 ], [ -95.629882069652069, 29.74959718613135 ], [ -95.629562069688106, 29.749622185946162 ], [ -95.629194069619501, 29.749618186095677 ], [ -95.628885069139542, 29.749593185681729 ], [ -95.628805068777609, 29.749544185707688 ], [ -95.628785069345852, 29.749439186515545 ], [ -95.628784069114346, 29.749166186080075 ], [ -95.628741069453483, 29.748876186076807 ], [ -95.628297068829681, 29.748874186015652 ], [ -95.628242069198123, 29.746382185126336 ], [ -95.628219068330026, 29.743156184751797 ], [ -95.628013068502526, 29.743149185111935 ], [ -95.627880068570477, 29.74314818446425 ], [ -95.627700068543646, 29.743148184993636 ], [ -95.627462068810999, 29.743154184485597 ], [ -95.626732068284767, 29.74313818506349 ], [ -95.626825068494725, 29.743115184852275 ], [ -95.626867068163676, 29.743100184818381 ], [ -95.62683906827364, 29.742989185264797 ], [ -95.626773068272797, 29.741162184594632 ], [ -95.626762068449992, 29.740545184460473 ], [ -95.626753067713636, 29.738775184265645 ], [ -95.626747067682018, 29.735888183005116 ], [ -95.625483067796054, 29.735907183524549 ], [ -95.625344067995883, 29.735848183195735 ], [ -95.625083067978494, 29.735851183276392 ], [ -95.625050067557225, 29.735852183330497 ], [ -95.624658066915629, 29.735858183472875 ], [ -95.623825067305447, 29.735865183412027 ], [ -95.623804067323249, 29.736017183288773 ], [ -95.623796066880075, 29.73607218372279 ], [ -95.623795066846867, 29.736082183852286 ], [ -95.623772067055896, 29.736561183679619 ], [ -95.623770066946577, 29.736707183390987 ], [ -95.623732067301034, 29.737071184023918 ], [ -95.623648066756658, 29.737411183759846 ], [ -95.623642067472375, 29.737477184206913 ], [ -95.62358906732409, 29.737678183730171 ], [ -95.623556067449655, 29.737884184111927 ], [ -95.623533066863089, 29.738124184301249 ], [ -95.623525067121349, 29.738363184249277 ], [ -95.623534066819602, 29.740158184109585 ], [ -95.623543067787793, 29.740462184404262 ], [ -95.62359106702678, 29.741176184629843 ], [ -95.623598067369585, 29.741217184413475 ], [ -95.623686067727746, 29.741620184671117 ], [ -95.623712067383011, 29.741697184651503 ], [ -95.623824066940401, 29.742035184962806 ], [ -95.623878067198902, 29.742322184630464 ], [ -95.623926067358624, 29.742681185160009 ], [ -95.623967067177944, 29.743204185336257 ], [ -95.623966067159898, 29.743327185252134 ], [ -95.623993067347484, 29.743790185248493 ], [ -95.624066067394139, 29.744173185020848 ], [ -95.624117067927784, 29.74437518476611 ], [ -95.624300068045159, 29.744880185512812 ], [ -95.624715068016869, 29.745874185868061 ], [ -95.624898067424766, 29.746371185587574 ], [ -95.62500406780488, 29.746725185348861 ], [ -95.625115067921001, 29.747178185605115 ], [ -95.625205068261707, 29.747668185491637 ], [ -95.62521406755647, 29.748065186241536 ], [ -95.625217068247665, 29.748159185668744 ], [ -95.625217067651874, 29.748226185529028 ], [ -95.625229068108382, 29.749250186049871 ], [ -95.625232068001836, 29.749447185885167 ], [ -95.625238068168983, 29.74995218671393 ], [ -95.625258067943136, 29.751624186692762 ], [ -95.625267068655049, 29.752337186999917 ], [ -95.625266068485089, 29.753035186642222 ], [ -95.625266068191323, 29.753531186648381 ], [ -95.625266068821205, 29.753884187159926 ], [ -95.625266068279615, 29.754091186991207 ], [ -95.62526606802389, 29.754914187597521 ], [ -95.626483069119672, 29.755373187654119 ], [ -95.626701068969894, 29.755458187631394 ], [ -95.627562069037452, 29.755739186976797 ], [ -95.627750068907559, 29.75578518754336 ], [ -95.628293069472463, 29.755885187470358 ], [ -95.629094069806911, 29.755917187284386 ], [ -95.629240068963696, 29.75592418710325 ], [ -95.631437069626884, 29.755919187372051 ], [ -95.632336070717486, 29.755911187232659 ], [ -95.63262007037153, 29.755908187430069 ], [ -95.632930070622962, 29.75590518689112 ], [ -95.632955069907297, 29.755810187490837 ], [ -95.633017069911077, 29.755778187398146 ], [ -95.633022070592617, 29.755675187509624 ], [ -95.633044070370318, 29.754934187297899 ], [ -95.633107070143794, 29.754506187100354 ], [ -95.633180070198932, 29.754244186586458 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 492, "Tract": "48201432502", "Area_SqMi": 0.28752015620522764, "total_2009": 644, "total_2010": 612, "total_2011": 651, "total_2012": 603, "total_2013": 575, "total_2014": 595, "total_2015": 795, "total_2016": 828, "total_2017": 770, "total_2018": 788, "total_2019": 755, "total_2020": 695, "age1": 217, "age2": 430, "age3": 210, "earn1": 329, "earn2": 306, "earn3": 222, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 66, "naics_s05": 25, "naics_s06": 42, "naics_s07": 86, "naics_s08": 25, "naics_s09": 0, "naics_s10": 2, "naics_s11": 11, "naics_s12": 5, "naics_s13": 0, "naics_s14": 175, "naics_s15": 24, "naics_s16": 41, "naics_s17": 141, "naics_s18": 116, "naics_s19": 98, "naics_s20": 0, "race1": 588, "race2": 118, "race3": 13, "race4": 114, "race5": 1, "race6": 23, "ethnicity1": 508, "ethnicity2": 349, "edu1": 169, "edu2": 177, "edu3": 158, "edu4": 136, "Shape_Length": 11352.218833624014, "Shape_Area": 8015569.859336325, "total_2021": 717, "total_2022": 857 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.52915804230426, 29.726745184706871 ], [ -95.529139042117677, 29.726220185046703 ], [ -95.529147042501165, 29.726005184570642 ], [ -95.529134042249609, 29.725593184433006 ], [ -95.52902304182571, 29.72070818348023 ], [ -95.529010042024609, 29.720508183760209 ], [ -95.527444042403687, 29.720676183199284 ], [ -95.526321041460363, 29.720746183372661 ], [ -95.522207040623144, 29.721075183798106 ], [ -95.52025803965202, 29.721245184386884 ], [ -95.520315040311786, 29.721467183945638 ], [ -95.520334040054394, 29.721535184223907 ], [ -95.52049104060734, 29.722474184482209 ], [ -95.520530039783225, 29.723791184912002 ], [ -95.520553040775141, 29.724614184998607 ], [ -95.520577039906655, 29.725364184548049 ], [ -95.520583040522055, 29.725544185074444 ], [ -95.520588040779572, 29.726142184674863 ], [ -95.520605040323545, 29.726831184943798 ], [ -95.520598040217052, 29.727564185477373 ], [ -95.520619040058378, 29.727983185448899 ], [ -95.520634039966396, 29.728247185400132 ], [ -95.520622040097351, 29.728405185777088 ], [ -95.520569040116357, 29.728808185103482 ], [ -95.52050104057902, 29.729070185288055 ], [ -95.521023041102325, 29.729060185169768 ], [ -95.52180004093195, 29.729052185549872 ], [ -95.521980040476734, 29.729051185153008 ], [ -95.522529041261819, 29.729061185831615 ], [ -95.523490040801136, 29.729041185452576 ], [ -95.524139041854966, 29.729035185822713 ], [ -95.524699041470683, 29.729035185564815 ], [ -95.525093041954591, 29.729041185088366 ], [ -95.526060041762591, 29.729023184989607 ], [ -95.526925042166695, 29.729011185216368 ], [ -95.527788042067485, 29.72899918487672 ], [ -95.528594042143823, 29.728988185035107 ], [ -95.52869004287912, 29.728995185084088 ], [ -95.528713042266816, 29.728715185508914 ], [ -95.528790042795592, 29.728288185384923 ], [ -95.528899042365211, 29.72799018524271 ], [ -95.528997042239979, 29.727760185398424 ], [ -95.529098042203032, 29.727452185085244 ], [ -95.529129043032057, 29.727320185116103 ], [ -95.52915804230426, 29.726745184706871 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 493, "Tract": "48201550305", "Area_SqMi": 0.92362231169864673, "total_2009": 706, "total_2010": 380, "total_2011": 962, "total_2012": 197, "total_2013": 186, "total_2014": 176, "total_2015": 184, "total_2016": 214, "total_2017": 224, "total_2018": 239, "total_2019": 268, "total_2020": 800, "age1": 66, "age2": 184, "age3": 50, "earn1": 56, "earn2": 83, "earn3": 161, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 3, "naics_s05": 21, "naics_s06": 8, "naics_s07": 70, "naics_s08": 16, "naics_s09": 0, "naics_s10": 8, "naics_s11": 57, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 2, "naics_s16": 26, "naics_s17": 23, "naics_s18": 62, "naics_s19": 2, "naics_s20": 0, "race1": 232, "race2": 45, "race3": 2, "race4": 18, "race5": 0, "race6": 3, "ethnicity1": 185, "ethnicity2": 115, "edu1": 69, "edu2": 62, "edu3": 59, "edu4": 44, "Shape_Length": 21795.146763480574, "Shape_Area": 25749009.254773095, "total_2021": 479, "total_2022": 300 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.447186034591027, 30.009775245231737 ], [ -95.446957034325479, 30.009480245015737 ], [ -95.446612033721081, 30.009004245633363 ], [ -95.446461034299006, 30.008818244942923 ], [ -95.446324033712955, 30.008617245300591 ], [ -95.445865033767618, 30.008006244941324 ], [ -95.445371033951929, 30.007319244707073 ], [ -95.445200033243452, 30.007087244844435 ], [ -95.444998033861893, 30.00679324493802 ], [ -95.444760033264984, 30.006403244979136 ], [ -95.444641033349242, 30.00620724430544 ], [ -95.444400033127451, 30.005846244332968 ], [ -95.443990033015609, 30.005300244520292 ], [ -95.443303032850253, 30.004349244707932 ], [ -95.443218033020145, 30.004230244588427 ], [ -95.443153032924187, 30.00411724450645 ], [ -95.443066033471922, 30.004013244539287 ], [ -95.442909032640813, 30.003798244641963 ], [ -95.442873033183233, 30.003761244135813 ], [ -95.442812033293379, 30.003699244425576 ], [ -95.442783032967895, 30.003639244682784 ], [ -95.442751032902848, 30.003573244571982 ], [ -95.442424032619869, 30.003115244385359 ], [ -95.44235003237624, 30.00302124394906 ], [ -95.442245033269984, 30.00288524404316 ], [ -95.442115033205411, 30.002734244366469 ], [ -95.441609032633593, 30.00215024439494 ], [ -95.441489032656122, 30.002001243692678 ], [ -95.441284032318279, 30.001744243742607 ], [ -95.441218032146267, 30.00164224375759 ], [ -95.440923032865953, 30.001251243535211 ], [ -95.440675032094475, 30.000906244201129 ], [ -95.440153032003025, 30.000184243444131 ], [ -95.439903032441038, 29.999837243479 ], [ -95.439493032103258, 29.999282243196777 ], [ -95.439327031796111, 29.99905224349979 ], [ -95.439021031639101, 29.998630243604808 ], [ -95.438696031598965, 29.99820324336849 ], [ -95.438316031412668, 29.997679242764434 ], [ -95.438159031698774, 29.997477243454377 ], [ -95.438076030980866, 29.997377243114361 ], [ -95.437901031405616, 29.997181243059341 ], [ -95.437713031029006, 29.996992243166616 ], [ -95.437519031790032, 29.996812243283973 ], [ -95.437100031321009, 29.996487242853522 ], [ -95.436995031681221, 29.996412242837074 ], [ -95.436490031356598, 29.996091242827077 ], [ -95.436084031230479, 29.995843243006252 ], [ -95.436003030684006, 29.995879243236729 ], [ -95.43534203035739, 29.996262242868251 ], [ -95.435162030837859, 29.996370242635706 ], [ -95.434875030234821, 29.996532243235716 ], [ -95.43458403089717, 29.996678243499844 ], [ -95.434291030702212, 29.996806243060835 ], [ -95.434026030830466, 29.996908243625061 ], [ -95.433754030416395, 29.996997242925925 ], [ -95.433475030104546, 29.997076242930202 ], [ -95.433191030431615, 29.997146243527546 ], [ -95.432900030420228, 29.997203243644108 ], [ -95.43260503043625, 29.997249243618043 ], [ -95.432314030186987, 29.997282243671297 ], [ -95.432029030250334, 29.997303243780149 ], [ -95.43191603004783, 29.99730724340024 ], [ -95.431605030112749, 29.997309243022645 ], [ -95.430757029895474, 29.997278243802146 ], [ -95.430479029660702, 29.997280243107344 ], [ -95.430374029191569, 29.997283243658703 ], [ -95.429643029783705, 29.997306243470597 ], [ -95.429364029184555, 29.997317243336241 ], [ -95.429121028981058, 29.997327243802747 ], [ -95.429009029211585, 29.997331243208521 ], [ -95.428966029477508, 29.997333243715268 ], [ -95.428432029107896, 29.997369243729754 ], [ -95.428190029273694, 29.997392243774584 ], [ -95.427680028563302, 29.99744324365129 ], [ -95.427583028322786, 29.997456243333886 ], [ -95.426488028239447, 29.997533243423881 ], [ -95.426024028463146, 29.997573243491249 ], [ -95.425750028194656, 29.997619243924262 ], [ -95.42561502800163, 29.997644243579405 ], [ -95.425654028469097, 29.9978142435819 ], [ -95.425680028798084, 29.99798424330907 ], [ -95.426061028030375, 30.000046244506994 ], [ -95.426267028833607, 30.001135244420009 ], [ -95.426301028477994, 30.001314244158916 ], [ -95.426547028753276, 30.002751244950499 ], [ -95.426875029137079, 30.004435244892427 ], [ -95.427095029130186, 30.005598245516019 ], [ -95.4271410293956, 30.005807245291827 ], [ -95.427170029472194, 30.005937245649605 ], [ -95.427449029196353, 30.005919245677255 ], [ -95.42756802887385, 30.005906245202304 ], [ -95.427807028978734, 30.005881245339854 ], [ -95.429621029188539, 30.005689245380385 ], [ -95.429750030224113, 30.005675245199125 ], [ -95.430135029893904, 30.005635244951343 ], [ -95.430146029463515, 30.005716245219606 ], [ -95.430221029908267, 30.006226245558228 ], [ -95.430222030170171, 30.006235245604838 ], [ -95.430254029484232, 30.006308245621693 ], [ -95.430308030131769, 30.00635524565585 ], [ -95.430347030377277, 30.006363245451642 ], [ -95.43038602959281, 30.006371245208616 ], [ -95.430628030104558, 30.006329245018474 ], [ -95.430918030047309, 30.006250244854058 ], [ -95.430986030339227, 30.006221245555281 ], [ -95.43107302974623, 30.006201245188585 ], [ -95.43137503061736, 30.00662224537114 ], [ -95.431435029965044, 30.006739245108172 ], [ -95.431474029824741, 30.006864245232975 ], [ -95.43148803034174, 30.006992245715015 ], [ -95.431478030504962, 30.007327245548762 ], [ -95.431484030738488, 30.007430245002816 ], [ -95.431510030698078, 30.007529245685042 ], [ -95.431561030772158, 30.00762224581041 ], [ -95.431854030766615, 30.008047245760867 ], [ -95.43200503010938, 30.008303245224631 ], [ -95.432088029984172, 30.008399245882227 ], [ -95.432102030474638, 30.008416245972445 ], [ -95.432296030201286, 30.008691245572781 ], [ -95.432943030504717, 30.009576246148544 ], [ -95.432908030783068, 30.009603246213359 ], [ -95.43338003074544, 30.010233245983535 ], [ -95.434181030897619, 30.011337245740375 ], [ -95.434986031248869, 30.012439246582844 ], [ -95.435012031894061, 30.012437245982181 ], [ -95.43503703114159, 30.012474246290186 ], [ -95.435174031500054, 30.012647246093515 ], [ -95.435302031291556, 30.012788246082042 ], [ -95.435885031717888, 30.013568246898981 ], [ -95.436224032271099, 30.014045246628015 ], [ -95.436272032049629, 30.014111246484941 ], [ -95.437112032200758, 30.015257247065144 ], [ -95.439692032742116, 30.013853246459423 ], [ -95.440648032602894, 30.013333246566646 ], [ -95.447186034591027, 30.009775245231737 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 494, "Tract": "48201453001", "Area_SqMi": 0.26426839394437307, "total_2009": 117, "total_2010": 114, "total_2011": 110, "total_2012": 165, "total_2013": 141, "total_2014": 101, "total_2015": 142, "total_2016": 135, "total_2017": 128, "total_2018": 137, "total_2019": 124, "total_2020": 166, "age1": 105, "age2": 83, "age3": 38, "earn1": 87, "earn2": 99, "earn3": 40, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 14, "naics_s07": 29, "naics_s08": 0, "naics_s09": 79, "naics_s10": 2, "naics_s11": 2, "naics_s12": 6, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 64, "naics_s19": 17, "naics_s20": 0, "race1": 96, "race2": 23, "race3": 3, "race4": 95, "race5": 1, "race6": 8, "ethnicity1": 160, "ethnicity2": 66, "edu1": 34, "edu2": 23, "edu3": 42, "edu4": 22, "Shape_Length": 14176.381358653969, "Shape_Area": 7367350.5232925341, "total_2021": 185, "total_2022": 226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.575388053163351, 29.703870178849719 ], [ -95.575376052940427, 29.703749178287062 ], [ -95.575372053032154, 29.703027178425092 ], [ -95.575357053513855, 29.702378178294662 ], [ -95.575362053727204, 29.701774178458443 ], [ -95.57532805343557, 29.699828177708987 ], [ -95.575322053424173, 29.699044177291977 ], [ -95.575316052803814, 29.698226177187124 ], [ -95.575299053049875, 29.697419177639826 ], [ -95.575292053490898, 29.696755177134737 ], [ -95.575250052570794, 29.69610117707829 ], [ -95.575064052598265, 29.694662177112818 ], [ -95.574893052742155, 29.693398176450565 ], [ -95.574763052414085, 29.692402176385379 ], [ -95.57472305219423, 29.691997176037262 ], [ -95.574693052515656, 29.69190017598725 ], [ -95.574682053155527, 29.691628176066686 ], [ -95.574683052868338, 29.691186175575623 ], [ -95.57465705299542, 29.690230176158529 ], [ -95.57465905241942, 29.689296175983454 ], [ -95.574663052674182, 29.688888175755114 ], [ -95.574658052962988, 29.68804917561075 ], [ -95.574034052351166, 29.688055175540136 ], [ -95.573003051832998, 29.688073175534029 ], [ -95.572581052256552, 29.688074175616112 ], [ -95.572002051494309, 29.688083175537969 ], [ -95.571225051440038, 29.688181175879986 ], [ -95.570263051671532, 29.688381175640014 ], [ -95.570557051551901, 29.689460175671677 ], [ -95.57065805178992, 29.689832175546393 ], [ -95.570920052038574, 29.69083517585338 ], [ -95.570976051382203, 29.691179175781123 ], [ -95.571019051747484, 29.691485175762164 ], [ -95.571043052208267, 29.691807175823516 ], [ -95.571050051610399, 29.692046176370894 ], [ -95.571068052287487, 29.692449176050495 ], [ -95.571079051448535, 29.693236176341632 ], [ -95.571073051672428, 29.693978176256483 ], [ -95.571091051565375, 29.694758176827467 ], [ -95.571109051587257, 29.695522177118264 ], [ -95.571111052339049, 29.696155177020994 ], [ -95.571127052185687, 29.696805177149805 ], [ -95.571144051604577, 29.697578177741093 ], [ -95.571156052484284, 29.69834717788007 ], [ -95.571149052329631, 29.699109177942173 ], [ -95.571161051817825, 29.699873178039642 ], [ -95.571215052232873, 29.703415178473076 ], [ -95.571219052673612, 29.703931178352409 ], [ -95.571776052866937, 29.703907178754815 ], [ -95.572021052751296, 29.703904178264374 ], [ -95.573532052720054, 29.703886178713223 ], [ -95.57406105265909, 29.703878179025484 ], [ -95.574755053173561, 29.703871178629349 ], [ -95.575388053163351, 29.703870178849719 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 495, "Tract": "48201433503", "Area_SqMi": 0.12155131161968352, "total_2009": 148, "total_2010": 176, "total_2011": 274, "total_2012": 190, "total_2013": 208, "total_2014": 417, "total_2015": 494, "total_2016": 351, "total_2017": 286, "total_2018": 307, "total_2019": 337, "total_2020": 336, "age1": 61, "age2": 148, "age3": 54, "earn1": 38, "earn2": 104, "earn3": 121, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 80, "naics_s06": 0, "naics_s07": 54, "naics_s08": 0, "naics_s09": 0, "naics_s10": 55, "naics_s11": 8, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 47, "naics_s19": 6, "naics_s20": 0, "race1": 174, "race2": 31, "race3": 2, "race4": 52, "race5": 0, "race6": 4, "ethnicity1": 158, "ethnicity2": 105, "edu1": 49, "edu2": 60, "edu3": 48, "edu4": 45, "Shape_Length": 7971.2401211481265, "Shape_Area": 3388642.5308077857, "total_2021": 244, "total_2022": 263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.558461048167672, 29.684667175411391 ], [ -95.558275048122539, 29.684662175225942 ], [ -95.558145048011383, 29.684658175595079 ], [ -95.558019048500967, 29.684654174873842 ], [ -95.557130048092134, 29.684628175316501 ], [ -95.55660704732432, 29.684672175126938 ], [ -95.556066048041657, 29.684848175300711 ], [ -95.554435046966915, 29.685502175183021 ], [ -95.553994047428048, 29.685656175884951 ], [ -95.553944047040773, 29.685673175688287 ], [ -95.551591046952112, 29.686622175644345 ], [ -95.550481046781002, 29.687069175863083 ], [ -95.549536045813582, 29.68748117572817 ], [ -95.549241046457212, 29.687668176095467 ], [ -95.549184046409906, 29.687734176038937 ], [ -95.549119046253239, 29.687821176458797 ], [ -95.54962504655623, 29.688239176448185 ], [ -95.551390046906832, 29.689289176742417 ], [ -95.551930046445818, 29.689665176632143 ], [ -95.552188047003455, 29.689929176475115 ], [ -95.55229504722611, 29.689889176106291 ], [ -95.552759046863116, 29.689750176189545 ], [ -95.553844047569285, 29.689406176402546 ], [ -95.554513047290982, 29.68929017590979 ], [ -95.554865047356813, 29.689236176117483 ], [ -95.555339047476451, 29.689220176589966 ], [ -95.556087048179734, 29.689228176169941 ], [ -95.556880047658012, 29.689325176292925 ], [ -95.557130048116832, 29.689361175804112 ], [ -95.557287048181749, 29.68939117595502 ], [ -95.557482048212648, 29.689429176301431 ], [ -95.557526048207919, 29.689211176286754 ], [ -95.557677048605655, 29.688462176074641 ], [ -95.55783804849851, 29.687700175580268 ], [ -95.558012047723963, 29.686806175554644 ], [ -95.558065048198131, 29.686533175869798 ], [ -95.558160048483202, 29.686055175686217 ], [ -95.558461048167672, 29.684667175411391 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 496, "Tract": "48201454901", "Area_SqMi": 0.41453277135522265, "total_2009": 309, "total_2010": 287, "total_2011": 395, "total_2012": 49, "total_2013": 71, "total_2014": 79, "total_2015": 182, "total_2016": 168, "total_2017": 403, "total_2018": 466, "total_2019": 563, "total_2020": 509, "age1": 104, "age2": 217, "age3": 82, "earn1": 59, "earn2": 155, "earn3": 189, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 2, "naics_s06": 0, "naics_s07": 95, "naics_s08": 1, "naics_s09": 0, "naics_s10": 2, "naics_s11": 9, "naics_s12": 17, "naics_s13": 0, "naics_s14": 158, "naics_s15": 4, "naics_s16": 54, "naics_s17": 0, "naics_s18": 22, "naics_s19": 14, "naics_s20": 0, "race1": 220, "race2": 118, "race3": 0, "race4": 58, "race5": 1, "race6": 6, "ethnicity1": 334, "ethnicity2": 69, "edu1": 41, "edu2": 70, "edu3": 82, "edu4": 106, "Shape_Length": 13561.169442411272, "Shape_Area": 11556464.185454786, "total_2021": 527, "total_2022": 403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.734339096514006, 29.759527184490651 ], [ -95.734335096767239, 29.758842184744925 ], [ -95.734334095928801, 29.758066184507939 ], [ -95.734335096717473, 29.757673184040325 ], [ -95.734331096025741, 29.757572183942639 ], [ -95.734324096528439, 29.757343183878248 ], [ -95.734324096595998, 29.756485183534679 ], [ -95.734317096691498, 29.755900184158456 ], [ -95.73431909583644, 29.75563718359675 ], [ -95.734315096654356, 29.755360183957219 ], [ -95.734309096427609, 29.754945183550603 ], [ -95.734308095881119, 29.754537183545295 ], [ -95.734303096688336, 29.753841183039615 ], [ -95.734308096435342, 29.753356183376262 ], [ -95.734297095673526, 29.752254183369303 ], [ -95.734295096290467, 29.75199818302135 ], [ -95.734292096346394, 29.751479182691273 ], [ -95.734285096391332, 29.751325182581819 ], [ -95.734272095915969, 29.751168183142166 ], [ -95.73425309636329, 29.751014182990545 ], [ -95.734198095919282, 29.750711182889553 ], [ -95.734177096101249, 29.750613182736625 ], [ -95.734167096305271, 29.750564183113493 ], [ -95.734074096252314, 29.750262182833104 ], [ -95.733964095402897, 29.749966182731058 ], [ -95.733903096080766, 29.749820182753577 ], [ -95.733837095952623, 29.749676182817453 ], [ -95.733769096002973, 29.749540182451831 ], [ -95.733606095604941, 29.749259182567155 ], [ -95.733430095225316, 29.748995182533765 ], [ -95.733337095608817, 29.748868182255475 ], [ -95.733138095787751, 29.748623182803193 ], [ -95.732931095137261, 29.748398182406287 ], [ -95.732731095927676, 29.748202181912806 ], [ -95.732438095552581, 29.747957182544717 ], [ -95.732125094979352, 29.747720182619769 ], [ -95.731929095360869, 29.747590182585668 ], [ -95.731776095352899, 29.747493181801655 ], [ -95.731123094828718, 29.747125182449778 ], [ -95.729401094867939, 29.746159181769269 ], [ -95.7292830940671, 29.746318182273075 ], [ -95.72892909454437, 29.746763181982097 ], [ -95.728618093929455, 29.747122182338611 ], [ -95.728367094770803, 29.747396181874304 ], [ -95.726589093615402, 29.749228182922337 ], [ -95.726441094210955, 29.749371182626724 ], [ -95.724420093927947, 29.751453183519576 ], [ -95.7238300936244, 29.752071183380703 ], [ -95.723767093880994, 29.752137183644887 ], [ -95.723328093465781, 29.752588183157851 ], [ -95.722846093088123, 29.753070183205754 ], [ -95.722361092723446, 29.753565183974114 ], [ -95.723012093688439, 29.754041183463158 ], [ -95.723116093063126, 29.754117183927463 ], [ -95.724025093795802, 29.754791184313177 ], [ -95.724087093981595, 29.754837184107785 ], [ -95.724151093391384, 29.754891183637429 ], [ -95.724436093794665, 29.755095183787304 ], [ -95.725001094160319, 29.755513184251345 ], [ -95.725702093728543, 29.756041183957858 ], [ -95.727376095013298, 29.757281183870887 ], [ -95.728414094388455, 29.758039184511432 ], [ -95.728631095393055, 29.758185184586726 ], [ -95.728964095082702, 29.758388184586614 ], [ -95.729181095363515, 29.758510184866768 ], [ -95.72939109496086, 29.75861918456728 ], [ -95.729497095687449, 29.75866718438224 ], [ -95.729706095564936, 29.758771184120505 ], [ -95.730082095154756, 29.758924184927906 ], [ -95.730334095840817, 29.759021184605782 ], [ -95.730682095031909, 29.759137184964708 ], [ -95.73094609586748, 29.759212184199821 ], [ -95.731084096091379, 29.759245184378379 ], [ -95.731215095339252, 29.759281184413187 ], [ -95.731621096003551, 29.759368184546947 ], [ -95.731895096105418, 29.759415184803224 ], [ -95.732305095837589, 29.759470184471798 ], [ -95.732570095983519, 29.759497184636526 ], [ -95.732826096170086, 29.75951518450405 ], [ -95.733189096563919, 29.759527184510745 ], [ -95.734339096514006, 29.759527184490651 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 497, "Tract": "48473680501", "Area_SqMi": 59.417185572843209, "total_2009": 1743, "total_2010": 1813, "total_2011": 1777, "total_2012": 1563, "total_2013": 1737, "total_2014": 2053, "total_2015": 1816, "total_2016": 1669, "total_2017": 1720, "total_2018": 2090, "total_2019": 2002, "total_2020": 1692, "age1": 351, "age2": 710, "age3": 409, "earn1": 350, "earn2": 518, "earn3": 602, "naics_s01": 2, "naics_s02": 5, "naics_s03": 0, "naics_s04": 58, "naics_s05": 83, "naics_s06": 324, "naics_s07": 261, "naics_s08": 18, "naics_s09": 11, "naics_s10": 22, "naics_s11": 3, "naics_s12": 39, "naics_s13": 0, "naics_s14": 4, "naics_s15": 26, "naics_s16": 274, "naics_s17": 0, "naics_s18": 130, "naics_s19": 16, "naics_s20": 194, "race1": 1061, "race2": 309, "race3": 23, "race4": 49, "race5": 5, "race6": 23, "ethnicity1": 930, "ethnicity2": 540, "edu1": 322, "edu2": 295, "edu3": 317, "edu4": 185, "Shape_Length": 328660.27979524934, "Shape_Area": 1656449440.2414205, "total_2021": 1659, "total_2022": 1470 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.131746205160411, 29.936734206955844 ], [ -96.13166920526821, 29.935862206977102 ], [ -96.131589205219058, 29.934967206683559 ], [ -96.131562205546999, 29.934885206721752 ], [ -96.131537205492236, 29.934804206078915 ], [ -96.131398205133607, 29.934363206090907 ], [ -96.131259205762575, 29.93392320671207 ], [ -96.131199205000414, 29.933739206257314 ], [ -96.131078204846617, 29.933602206096719 ], [ -96.130060204485872, 29.9324432059115 ], [ -96.128562204966983, 29.931464205632963 ], [ -96.126621204262847, 29.930792206010594 ], [ -96.125255203113454, 29.930461206049831 ], [ -96.122652202810144, 29.929216205643279 ], [ -96.120118201949566, 29.928570205349029 ], [ -96.119683201957528, 29.928459205946808 ], [ -96.119483202535989, 29.928189205304193 ], [ -96.119238202133744, 29.927840205667316 ], [ -96.119186202391447, 29.927765205407798 ], [ -96.119134202416106, 29.927691205044553 ], [ -96.118994201561819, 29.927493205155987 ], [ -96.118854201757557, 29.927165204937928 ], [ -96.116324200847004, 29.921211204420434 ], [ -96.114555200417044, 29.917843203279105 ], [ -96.114171199723742, 29.917111203909322 ], [ -96.114148200694942, 29.917067203472712 ], [ -96.113937199831241, 29.916663203010742 ], [ -96.11372520055383, 29.916260203149346 ], [ -96.113664200462978, 29.916144203618025 ], [ -96.113364199416125, 29.915570203336433 ], [ -96.11333220020083, 29.915359203133004 ], [ -96.113327200252911, 29.915321202941321 ], [ -96.113326199875615, 29.915306203231061 ], [ -96.112807199349504, 29.915401203342412 ], [ -96.111668199998988, 29.915612203134387 ], [ -96.111251198969086, 29.915693202878984 ], [ -96.110734199599861, 29.915794203406943 ], [ -96.110624199471928, 29.915815203005135 ], [ -96.110290199347304, 29.915864203663087 ], [ -96.109762199349248, 29.915942203490012 ], [ -96.108953199172319, 29.916009203506448 ], [ -96.108677198797849, 29.916032203126861 ], [ -96.10850619822736, 29.916035203093763 ], [ -96.108025198603485, 29.91604520346813 ], [ -96.107968198688482, 29.916042203787395 ], [ -96.106482198575748, 29.915963203089117 ], [ -96.106359197900986, 29.915949203824862 ], [ -96.105825198449665, 29.91589020365344 ], [ -96.103956197205207, 29.915683203776052 ], [ -96.102401197278752, 29.915511203984163 ], [ -96.098352196375899, 29.915058203289355 ], [ -96.096485196115992, 29.914849203445474 ], [ -96.095774195655054, 29.914769203301205 ], [ -96.093835195446729, 29.914555203401704 ], [ -96.089308194150817, 29.914056203368698 ], [ -96.088207193941201, 29.913944203528139 ], [ -96.085884192549074, 29.913691203704939 ], [ -96.08578119266042, 29.913680203476709 ], [ -96.083235191734332, 29.913398204156216 ], [ -96.082741192357588, 29.913343203513676 ], [ -96.081259191863623, 29.913178204089171 ], [ -96.08076619129919, 29.913124204249836 ], [ -96.079895191515632, 29.91302720426248 ], [ -96.077282191121199, 29.912737203465674 ], [ -96.076412190013315, 29.912641204214676 ], [ -96.075730190534372, 29.912565204310575 ], [ -96.074514190291779, 29.912431204310032 ], [ -96.073686189706535, 29.91233720375487 ], [ -96.073280190104171, 29.912291203579077 ], [ -96.073004189420956, 29.912275203483471 ], [ -96.072825189645897, 29.91226420358776 ], [ -96.072290189076028, 29.912232203586434 ], [ -96.072112189351074, 29.912222203733982 ], [ -96.072010189730307, 29.912215203620569 ], [ -96.071741189344905, 29.912200203763138 ], [ -96.071704189355685, 29.91220020422524 ], [ -96.071602188986176, 29.912202204146976 ], [ -96.070570188806755, 29.912213204037183 ], [ -96.069729188792451, 29.912222204050028 ], [ -96.067477188227471, 29.912263204433376 ], [ -96.066446187405262, 29.912282203934616 ], [ -96.06624318758179, 29.912285204118735 ], [ -96.065634187353822, 29.912296204501743 ], [ -96.065431187651257, 29.912300204305488 ], [ -96.064505187087121, 29.912315204332359 ], [ -96.061728186631015, 29.912361204229491 ], [ -96.061113186873044, 29.912372204396863 ], [ -96.06080318685261, 29.91237520432114 ], [ -96.06066318606787, 29.912377203969061 ], [ -96.05725818528218, 29.912417204721674 ], [ -96.056067184949825, 29.912435204743463 ], [ -96.055722185641471, 29.912460204649857 ], [ -96.055345184644992, 29.912510204991385 ], [ -96.055272184615106, 29.91252820425596 ], [ -96.055044185469114, 29.912585204538679 ], [ -96.054816184825512, 29.912662204177838 ], [ -96.054643184945022, 29.912722204777129 ], [ -96.054336185015714, 29.912862204577021 ], [ -96.054086184769318, 29.913007204566672 ], [ -96.053873184846708, 29.913159204556496 ], [ -96.053717185145928, 29.913255205095236 ], [ -96.05359118447312, 29.913372204921647 ], [ -96.053243184592887, 29.913696205121877 ], [ -96.05308618441461, 29.913841204572989 ], [ -96.05271718487019, 29.914138205050655 ], [ -96.052473184828131, 29.914303205472237 ], [ -96.052419184134905, 29.91433420547818 ], [ -96.052132184249544, 29.914502204785038 ], [ -96.051865184696126, 29.914625204935895 ], [ -96.05161618375395, 29.914725205052768 ], [ -96.051259184438166, 29.914827205482254 ], [ -96.050928183871491, 29.914894205123936 ], [ -96.050182184117162, 29.91494120548554 ], [ -96.049400183286266, 29.914966205709728 ], [ -96.048838183173928, 29.914985205517532 ], [ -96.048356182977898, 29.914992204937271 ], [ -96.045970183229414, 29.915026205328434 ], [ -96.042472181864426, 29.915076205208621 ], [ -96.038815181013348, 29.915155205555475 ], [ -96.037368180120254, 29.915187206176263 ], [ -96.036580180133456, 29.915224205439372 ], [ -96.036434180804392, 29.915254205716796 ], [ -96.036310180714182, 29.915276205592217 ], [ -96.036100179821318, 29.915315205988357 ], [ -96.035943179861704, 29.915362205578667 ], [ -96.035823180021566, 29.915399205910845 ], [ -96.035762179801239, 29.915418206029802 ], [ -96.035434180315306, 29.915595205579471 ], [ -96.035094179631443, 29.915766205789804 ], [ -96.034764180329631, 29.916004205943718 ], [ -96.034461179778987, 29.916234205714616 ], [ -96.03412817994554, 29.91655120602622 ], [ -96.033786179776044, 29.916802205982354 ], [ -96.033668179605669, 29.91686920640554 ], [ -96.033406180108543, 29.917019206338285 ], [ -96.032987179541593, 29.9172002064055 ], [ -96.032571179161636, 29.91733620622669 ], [ -96.032066179482371, 29.917416206332661 ], [ -96.031310178872829, 29.917443206296877 ], [ -96.029787179280177, 29.917489206822868 ], [ -96.025904177832174, 29.917582206261315 ], [ -96.023282177207449, 29.917645206295354 ], [ -96.023582177066331, 29.918363207020299 ], [ -96.024094177317778, 29.919586207018202 ], [ -96.024478178039161, 29.920522207643941 ], [ -96.024774177474995, 29.921243206961613 ], [ -96.025580177708463, 29.923205208117167 ], [ -96.027177178091634, 29.92709520806924 ], [ -96.027987178833968, 29.929098208430798 ], [ -96.028200179264829, 29.929623208848202 ], [ -96.028775179153968, 29.931069209497441 ], [ -96.029227179531517, 29.932204209133019 ], [ -96.029548179701763, 29.932979209507678 ], [ -96.030274179839125, 29.934728209867707 ], [ -96.031281179560722, 29.937196210499568 ], [ -96.031894180708932, 29.938699210568696 ], [ -96.032335180154348, 29.939780210791842 ], [ -96.032668180746043, 29.940610210813954 ], [ -96.032573181034408, 29.940612210995162 ], [ -96.031451179912537, 29.940630210920187 ], [ -96.03114217979909, 29.940635211355637 ], [ -96.030624179925709, 29.940644210899734 ], [ -96.026567179107275, 29.940702211194509 ], [ -96.026014178759851, 29.94071021111796 ], [ -96.025042178381042, 29.940722210954036 ], [ -96.023563177939977, 29.940740211621456 ], [ -96.01956317704672, 29.940790211444792 ], [ -96.019127177375921, 29.940792211390978 ], [ -96.017649176903447, 29.940803211990154 ], [ -96.017206176997078, 29.94080621168159 ], [ -96.016821176253998, 29.940810211701077 ], [ -96.015109176563286, 29.940831212065429 ], [ -96.01433717636111, 29.940836211562512 ], [ -96.013510175920828, 29.940842211363936 ], [ -96.012959175130874, 29.940847212141861 ], [ -96.012910175872847, 29.94084821207505 ], [ -96.012545175526014, 29.94084621199157 ], [ -96.011309175431634, 29.940861211864146 ], [ -96.010759175189875, 29.940869212187025 ], [ -96.010798175305865, 29.942164212230075 ], [ -96.010837174945522, 29.94344821229409 ], [ -96.0108671748267, 29.944563212462278 ], [ -96.010927175362497, 29.946049213301574 ], [ -96.010955174844142, 29.946741213363797 ], [ -96.010988175855957, 29.947344213389197 ], [ -96.009389174970124, 29.947363213239189 ], [ -96.007287174433429, 29.947403213262049 ], [ -96.006799173966698, 29.947413213636541 ], [ -96.004340173216661, 29.947432213548094 ], [ -95.999211172810874, 29.947505213329098 ], [ -95.996600171842545, 29.947554213946077 ], [ -95.99618317120644, 29.947558213873315 ], [ -95.994495171035894, 29.947575214102255 ], [ -95.994237171573289, 29.947564214039524 ], [ -95.994093171572089, 29.94747821407406 ], [ -95.994059171207297, 29.947296213707119 ], [ -95.9940201714778, 29.946973213792361 ], [ -95.994019171030175, 29.946228213105435 ], [ -95.994025170944312, 29.945918213589682 ], [ -95.99401717097021, 29.945326213698237 ], [ -95.993993171312212, 29.943337212970878 ], [ -95.99398617127315, 29.942752212909877 ], [ -95.993985170777691, 29.942675212659616 ], [ -95.993984170592185, 29.942622212941693 ], [ -95.993984171091398, 29.942352212873921 ], [ -95.993986170893692, 29.94138321242205 ], [ -95.99398717115406, 29.941060212151534 ], [ -95.99395817074506, 29.93829621168711 ], [ -95.993922170334002, 29.934769211500917 ], [ -95.993908170697026, 29.931908211031661 ], [ -95.993866170546738, 29.931802210738887 ], [ -95.993845169959229, 29.931747210673088 ], [ -95.993698169999718, 29.931688210293711 ], [ -95.993595169735357, 29.93168621043176 ], [ -95.992128170316462, 29.931702210395716 ], [ -95.991701169445548, 29.931707210917697 ], [ -95.989842169426709, 29.931726210646453 ], [ -95.989365168767804, 29.93173221062068 ], [ -95.989283168880661, 29.931730210938479 ], [ -95.988550169438852, 29.931738210531432 ], [ -95.986107168520846, 29.931767210465779 ], [ -95.98529316815015, 29.931778211002218 ], [ -95.985232167974914, 29.931779211007324 ], [ -95.98355316752486, 29.931806210935729 ], [ -95.980962166638733, 29.93185021135108 ], [ -95.978334165998632, 29.931854210758441 ], [ -95.97829616588146, 29.931855210909834 ], [ -95.977154166559856, 29.93186021088691 ], [ -95.976595165975013, 29.931863210772505 ], [ -95.975139165516751, 29.931869211140011 ], [ -95.973527164804963, 29.931640210876683 ], [ -95.972892164927501, 29.931646210917563 ], [ -95.970264164716482, 29.93167521180882 ], [ -95.961738162189448, 29.931766212157047 ], [ -95.960246161741452, 29.931782211396133 ], [ -95.958020160720778, 29.931779212171648 ], [ -95.958039160944168, 29.933230211917476 ], [ -95.958096161928466, 29.937585213082986 ], [ -95.958116161232709, 29.939037213592901 ], [ -95.958144161540645, 29.941202213875261 ], [ -95.958230161456839, 29.947699215055348 ], [ -95.958240161926227, 29.948451214821546 ], [ -95.958263161660142, 29.94986521561189 ], [ -95.958297162070167, 29.952007215799785 ], [ -95.958402162681878, 29.958433216940691 ], [ -95.958406162242866, 29.958621217673816 ], [ -95.958476162303114, 29.959099217650593 ], [ -95.958615163051931, 29.959548217852067 ], [ -95.958634162687886, 29.959592217259196 ], [ -95.958872162983312, 29.960142217809011 ], [ -95.959021162245122, 29.960464217511571 ], [ -95.959194163190631, 29.960851217472474 ], [ -95.95946616256019, 29.961529218155654 ], [ -95.95953716338218, 29.961706218301419 ], [ -95.959624163609291, 29.96497721812198 ], [ -95.959656163600599, 29.966132218483335 ], [ -95.959734163579981, 29.966470219066917 ], [ -95.959971163590808, 29.967486219458337 ], [ -95.960050163003558, 29.967825218760058 ], [ -95.960930163646225, 29.967816219442398 ], [ -95.963569163909398, 29.967791219210753 ], [ -95.964450164811112, 29.967783218504518 ], [ -95.964629164455658, 29.96778121887855 ], [ -95.964809164570624, 29.967780219009317 ], [ -95.964928164765709, 29.967778219300968 ], [ -95.965827164412644, 29.967771219208849 ], [ -95.966365165348819, 29.967765218699842 ], [ -95.966844165434054, 29.967761218974669 ], [ -95.96811816555973, 29.967748218959041 ], [ -95.971676166189681, 29.967715218842471 ], [ -95.971942166671113, 29.96771321841474 ], [ -95.973217166251843, 29.967709218257585 ], [ -95.973299167143082, 29.967708218250451 ], [ -95.974286166875089, 29.967696218436163 ], [ -95.977492168190324, 29.967659218426487 ], [ -95.97856216837188, 29.96764721876913 ], [ -95.979579168457363, 29.967635217926397 ], [ -95.982631169589069, 29.967600217830384 ], [ -95.983649169459227, 29.967589218524896 ], [ -95.992230171877296, 29.96750821803073 ], [ -95.992604172049198, 29.967515217928334 ], [ -95.992607172100094, 29.967852218374624 ], [ -95.992615171185875, 29.968625218090299 ], [ -95.992625171847607, 29.969786218461714 ], [ -95.992629171787598, 29.97004221810143 ], [ -95.992631171751725, 29.970237218248272 ], [ -95.992632171466468, 29.970432218544069 ], [ -95.992685172306793, 29.972474218632776 ], [ -95.992705171902799, 29.973889219418567 ], [ -95.992713172397643, 29.974279219405901 ], [ -95.992719172293491, 29.974585219615882 ], [ -95.992761172000854, 29.976674219970867 ], [ -95.992776171905234, 29.977371220129207 ], [ -95.992783172255827, 29.977882220052688 ], [ -95.992785171881636, 29.980555220617095 ], [ -95.992701172316387, 29.982379220619428 ], [ -95.992644172365772, 29.984336221254232 ], [ -95.992647171961565, 29.984457221617127 ], [ -95.992658172655297, 29.984822221336607 ], [ -95.992662172165765, 29.984944221437278 ], [ -95.99266717260204, 29.98512722177545 ], [ -95.992683172900385, 29.985677221551832 ], [ -95.992689172267347, 29.985861221577156 ], [ -95.994239172514071, 29.985845221955522 ], [ -95.997442174103753, 29.985813221834032 ], [ -95.99888917388688, 29.985796221528453 ], [ -96.000439174677382, 29.985779220891807 ], [ -96.00128217467271, 29.985770221355637 ], [ -96.001486174841631, 29.985767221174491 ], [ -96.004630175818505, 29.985723220719859 ], [ -96.005678176176161, 29.985709220729944 ], [ -96.006204175783708, 29.985701220794937 ], [ -96.007783176151619, 29.985680220815997 ], [ -96.008310176259229, 29.985673221322951 ], [ -96.008441176699876, 29.985670220764934 ], [ -96.008836176218296, 29.98566522102649 ], [ -96.008968176275175, 29.985664221317101 ], [ -96.009145176998487, 29.985662220969921 ], [ -96.009709176667798, 29.985653220579866 ], [ -96.011933177859021, 29.98561922069791 ], [ -96.012655177858491, 29.985608220527954 ], [ -96.012675177506594, 29.985608220430802 ], [ -96.01383417739882, 29.985587221024133 ], [ -96.016150178442174, 29.98554822072434 ], [ -96.017311178584848, 29.985532220983423 ], [ -96.01847117950264, 29.985517220549266 ], [ -96.018683178883805, 29.986501220751308 ], [ -96.01891217891486, 29.987557221259575 ], [ -96.019326179306162, 29.989426221661148 ], [ -96.019331179740945, 29.989453221405089 ], [ -96.01954117963605, 29.9904392218392 ], [ -96.019715179689115, 29.991261222122677 ], [ -96.019951180077385, 29.9923352218593 ], [ -96.021190179784739, 29.997975223074008 ], [ -96.02119917993393, 29.998020223294873 ], [ -96.021611180113837, 29.999917223591531 ], [ -96.02162418086705, 29.99997922356102 ], [ -96.021665180953931, 30.000166223445802 ], [ -96.021679179991906, 30.000229223797756 ], [ -96.021781180432043, 30.000700223285001 ], [ -96.022127181133229, 30.002269224010526 ], [ -96.02219818114034, 30.002588223687269 ], [ -96.022523181236934, 30.004089224103225 ], [ -96.022557180644426, 30.00424822388943 ], [ -96.023292181264807, 30.00758322497116 ], [ -96.023465181633171, 30.008392225497268 ], [ -96.023904181411339, 30.010435225570109 ], [ -96.025090181607865, 30.010414225692447 ], [ -96.025943181992247, 30.010400225708437 ], [ -96.027874182687455, 30.010361225577132 ], [ -96.028648183076271, 30.010342225463791 ], [ -96.02948118341665, 30.010322225077374 ], [ -96.029834182851388, 30.010316224785154 ], [ -96.031060183716647, 30.01029422552201 ], [ -96.031114183076227, 30.010292225052023 ], [ -96.034957184257195, 30.010208225439349 ], [ -96.036238184630363, 30.010180224639246 ], [ -96.036216184641503, 30.009386225236653 ], [ -96.036187184622662, 30.008264224577918 ], [ -96.036136184382457, 30.007006224309524 ], [ -96.0361041839774, 30.006213224345391 ], [ -96.040626185662319, 30.005452224318073 ], [ -96.041156185861198, 30.005360224012815 ], [ -96.041948186006394, 30.005225224195996 ], [ -96.044575186152173, 30.004757223986882 ], [ -96.044861186942654, 30.00470922321551 ], [ -96.04553418673288, 30.004597223318882 ], [ -96.046777186862286, 30.004382223605756 ], [ -96.047660187545006, 30.004234223716811 ], [ -96.05146718824831, 30.003578223127239 ], [ -96.052005188343415, 30.003496223355199 ], [ -96.052294188713731, 30.003436223226245 ], [ -96.052376188521393, 30.003394223007419 ], [ -96.05243618798626, 30.003332222775413 ], [ -96.052480188385871, 30.003250223375709 ], [ -96.052493188149526, 30.003141222973309 ], [ -96.052478187959636, 30.002975223233729 ], [ -96.05174818794579, 29.99973822190859 ], [ -96.051756188319743, 29.999626222068077 ], [ -96.051802187818495, 29.999546222288785 ], [ -96.05181518814571, 29.999525222417166 ], [ -96.051926188133834, 29.999456222302836 ], [ -96.052138188030568, 29.999419222046395 ], [ -96.053671188132597, 29.999258222330781 ], [ -96.055622188944852, 29.99906722217332 ], [ -96.056556189575559, 29.998985222001959 ], [ -96.05668618978585, 29.998977222074327 ], [ -96.056772189782208, 29.998930221569434 ], [ -96.056834189368089, 29.998871222344707 ], [ -96.056880189771675, 29.998921222331813 ], [ -96.056931189282707, 29.998958221946211 ], [ -96.057036189549706, 29.998974222387091 ], [ -96.057223189771065, 29.998962222027355 ], [ -96.058702189645189, 29.9987112218957 ], [ -96.060526190431887, 29.99837422194922 ], [ -96.061178190226272, 29.998259221535548 ], [ -96.061345190320921, 29.998238221815633 ], [ -96.061466190201187, 29.998240221677744 ], [ -96.061548190383746, 29.998278221632049 ], [ -96.06160819011518, 29.998351221865885 ], [ -96.061649190875627, 29.998517221633058 ], [ -96.061995190801198, 30.000147222189401 ], [ -96.062180191263153, 30.001074222012591 ], [ -96.062242190974743, 30.001379222527607 ], [ -96.062504191443438, 30.00254022214666 ], [ -96.06259019151004, 30.002880222366766 ], [ -96.062595191039392, 30.002953222308275 ], [ -96.062623190981867, 30.002971222880749 ], [ -96.063008191503584, 30.003180222760854 ], [ -96.06313419114565, 30.003268222449844 ], [ -96.063330190752794, 30.003450222302231 ], [ -96.063347190939638, 30.003503222793981 ], [ -96.063372190937031, 30.003535222249901 ], [ -96.063532191480505, 30.003738222604401 ], [ -96.063592191360058, 30.003786223048376 ], [ -96.063619191742362, 30.003813222403789 ], [ -96.063641190845928, 30.003843223170257 ], [ -96.063652191296853, 30.003915222527077 ], [ -96.063648191542399, 30.003987222506673 ], [ -96.063745191127055, 30.004054223095178 ], [ -96.063998191000067, 30.004290222877369 ], [ -96.064121191366681, 30.00438522306353 ], [ -96.064179191335342, 30.004436222562131 ], [ -96.06443119189224, 30.004624222887578 ], [ -96.064540191605587, 30.004732223289949 ], [ -96.064557192018327, 30.004765222685215 ], [ -96.064582191334452, 30.004834223050217 ], [ -96.064596192003393, 30.004905222956996 ], [ -96.064608191552466, 30.004932222809963 ], [ -96.064687191766282, 30.004934223287716 ], [ -96.064858191591114, 30.004928222944109 ], [ -96.064978191325181, 30.004999222971296 ], [ -96.065155191395846, 30.005126223105147 ], [ -96.06520519227071, 30.00514222290867 ], [ -96.06542019209077, 30.005153223106099 ], [ -96.065578191912138, 30.005131222682408 ], [ -96.065622191427352, 30.005126223094173 ], [ -96.065995192099251, 30.00505422274324 ], [ -96.066108191994971, 30.0049882229474 ], [ -96.066172191925205, 30.0049342231037 ], [ -96.066374192300444, 30.004648222866471 ], [ -96.066374192277067, 30.004774223201416 ], [ -96.066361192187784, 30.004835222582283 ], [ -96.066171192567182, 30.005164222873848 ], [ -96.066146191574489, 30.005225222760497 ], [ -96.066083192170666, 30.005423223270853 ], [ -96.066070191539993, 30.005544222577878 ], [ -96.066140192185742, 30.005648223055299 ], [ -96.066209191735425, 30.005703223221762 ], [ -96.066291192550835, 30.005752222635621 ], [ -96.066430191624448, 30.005807223426618 ], [ -96.066481191935111, 30.005840223165215 ], [ -96.066513192572756, 30.005873223139321 ], [ -96.066517191787867, 30.005888223369016 ], [ -96.066538192434294, 30.005967223524404 ], [ -96.066544191999327, 30.006203222959595 ], [ -96.066569192605598, 30.006330223044102 ], [ -96.066601192418574, 30.006423222918531 ], [ -96.066607192297084, 30.006555222773059 ], [ -96.066576191801616, 30.006626223461048 ], [ -96.066519192283039, 30.006681222833485 ], [ -96.06643719256509, 30.006747223060586 ], [ -96.066153191784025, 30.006934223016426 ], [ -96.066071192187579, 30.006967223328505 ], [ -96.066020191902254, 30.006967223156323 ], [ -96.065932192143876, 30.006940223255885 ], [ -96.06588119187208, 30.006940223030966 ], [ -96.06582419226487, 30.006956222959506 ], [ -96.065774192166543, 30.007006223738113 ], [ -96.065647191572964, 30.007170223479815 ], [ -96.065471192377032, 30.007308223695052 ], [ -96.065294191691166, 30.007396223511908 ], [ -96.06516819194411, 30.007418223322802 ], [ -96.064965191681367, 30.00748422348218 ], [ -96.064871191347152, 30.007539223306807 ], [ -96.064820191800763, 30.007599223550812 ], [ -96.064675191678745, 30.00772022381571 ], [ -96.064593191898723, 30.007747223783777 ], [ -96.064479191753122, 30.007748223543402 ], [ -96.064353191372632, 30.007703223275268 ], [ -96.064296191451334, 30.007693223121887 ], [ -96.064220192176919, 30.007698223329399 ], [ -96.064157191414097, 30.007720223535415 ], [ -96.064081191884, 30.007769223263455 ], [ -96.063961191207824, 30.007907223370829 ], [ -96.063917191168443, 30.007945223933842 ], [ -96.063810191291893, 30.008000223199929 ], [ -96.063608191825466, 30.008044223557192 ], [ -96.063336191749954, 30.008050223896923 ], [ -96.063279191095077, 30.008066223641453 ], [ -96.063224190997104, 30.008114223572296 ], [ -96.063185191049129, 30.008149223375508 ], [ -96.063115191617172, 30.008248223738622 ], [ -96.0630331916568, 30.008303223825695 ], [ -96.062957191492515, 30.008336223469012 ], [ -96.06274919082783, 30.008358223310083 ], [ -96.062692190887731, 30.008380224084373 ], [ -96.06265419156216, 30.008429223583708 ], [ -96.062642191256401, 30.008489223778071 ], [ -96.062667191142481, 30.008588223502667 ], [ -96.062661191373905, 30.008654223488328 ], [ -96.062635191145958, 30.008704223524038 ], [ -96.062490190961796, 30.008819223824638 ], [ -96.062301191304243, 30.008896223728772 ], [ -96.062118191708862, 30.008902223871004 ], [ -96.06194119146123, 30.008907224200883 ], [ -96.061871191280773, 30.008935224054387 ], [ -96.061638190975671, 30.009072223623015 ], [ -96.061587191289718, 30.009122223572504 ], [ -96.061574190723917, 30.009215224059847 ], [ -96.061600191047674, 30.009253224338167 ], [ -96.061650191582828, 30.009303224110198 ], [ -96.061795190848997, 30.009385223880777 ], [ -96.061833191052571, 30.009446223642414 ], [ -96.061840191508523, 30.009512223624132 ], [ -96.061833191325292, 30.009583223790351 ], [ -96.06178919109577, 30.009765224061237 ], [ -96.061808191014975, 30.009852223740499 ], [ -96.061808191069503, 30.009962223623457 ], [ -96.061739190681706, 30.010061224354828 ], [ -96.061600190695586, 30.010133224393705 ], [ -96.061505191350278, 30.010160224271761 ], [ -96.061416191458548, 30.010226224500439 ], [ -96.061391191213659, 30.01026522370319 ], [ -96.061366191325959, 30.01035322384628 ], [ -96.061366191001085, 30.010424224569572 ], [ -96.061398191207431, 30.010462224343559 ], [ -96.061448191542738, 30.010501224257553 ], [ -96.061486191334794, 30.010512224140989 ], [ -96.061619191365722, 30.01050622412528 ], [ -96.061789191289975, 30.010451224545104 ], [ -96.06182119073992, 30.01045122406591 ], [ -96.061855191387437, 30.010470224092458 ], [ -96.061909191039462, 30.010501224488447 ], [ -96.061922190895771, 30.010539223738213 ], [ -96.061922191034483, 30.010572224329024 ], [ -96.061846190877276, 30.01072122446881 ], [ -96.06182119135299, 30.010803224331358 ], [ -96.061795191200162, 30.010924223997591 ], [ -96.061783191073346, 30.011100224272987 ], [ -96.061909191702895, 30.011281224275685 ], [ -96.06193419110393, 30.011358224244095 ], [ -96.061934191365822, 30.011430223951699 ], [ -96.061903191281218, 30.011501224453145 ], [ -96.061802191397334, 30.011556224318412 ], [ -96.061739190912135, 30.011611224006963 ], [ -96.061656190715183, 30.011710224416817 ], [ -96.061631191600355, 30.011771224358704 ], [ -96.061606190963673, 30.01229322424334 ], [ -96.061442190683366, 30.012348224897366 ], [ -96.061214190949443, 30.012348224807926 ], [ -96.061025191247325, 30.012298224744519 ], [ -96.060911191270321, 30.012232224143705 ], [ -96.060829191267089, 30.012227224810005 ], [ -96.060772190961728, 30.012243224437061 ], [ -96.060722191060563, 30.012287224810841 ], [ -96.060678190754473, 30.01233722411493 ], [ -96.060608191304368, 30.012458224726274 ], [ -96.06053919057706, 30.012672225055784 ], [ -96.060539191177625, 30.012732224960814 ], [ -96.060564190665005, 30.012870224957364 ], [ -96.060665191307777, 30.012980224354884 ], [ -96.060678191265723, 30.013013225060117 ], [ -96.060671190861598, 30.013145224884116 ], [ -96.060640191294027, 30.013194224414733 ], [ -96.06061419128585, 30.013260224358852 ], [ -96.060627190902039, 30.013381225058097 ], [ -96.060709191326012, 30.013535225180242 ], [ -96.060722190920472, 30.013634225180645 ], [ -96.060703191286549, 30.013755225194547 ], [ -96.060621191494647, 30.013843225291534 ], [ -96.060570190832706, 30.013864224785934 ], [ -96.060526191535715, 30.013870224509553 ], [ -96.06048819130379, 30.013892224942147 ], [ -96.060476191318486, 30.013925224664359 ], [ -96.06055119075765, 30.014431224981394 ], [ -96.060532190767901, 30.014755225060636 ], [ -96.060507190946623, 30.014870225145625 ], [ -96.060438191282117, 30.01499122491359 ], [ -96.060362191199204, 30.015079225252464 ], [ -96.060185191266569, 30.015233225008799 ], [ -96.060103191235299, 30.015266225369878 ], [ -96.06002719129485, 30.015315225537137 ], [ -96.059945190670021, 30.0153812254329 ], [ -96.059901190904881, 30.015447224795253 ], [ -96.059857190543596, 30.01559022509683 ], [ -96.059857190544349, 30.015656225279397 ], [ -96.059800190412076, 30.015931225705252 ], [ -96.059743190628495, 30.016085225628732 ], [ -96.059522190837782, 30.016261225191894 ], [ -96.059035191226002, 30.016755225831361 ], [ -96.058983190858868, 30.016797225267503 ], [ -96.058821190460804, 30.016931225848133 ], [ -96.058454190417322, 30.017206225646586 ], [ -96.05809419009303, 30.01751422574317 ], [ -96.057191190575438, 30.018195225817529 ], [ -96.057002190023752, 30.018327225962331 ], [ -96.056951190765801, 30.018415226015744 ], [ -96.056901190816035, 30.018602226060928 ], [ -96.056882189859209, 30.01864022594264 ], [ -96.056863190171057, 30.018745225907665 ], [ -96.056830190032755, 30.019075225739623 ], [ -96.056825190029699, 30.019135226115253 ], [ -96.056850189933357, 30.019289225974799 ], [ -96.056844190472034, 30.019388226069939 ], [ -96.056812190000556, 30.019553226190485 ], [ -96.056749190204528, 30.019712226450395 ], [ -96.056699190308223, 30.019965226481318 ], [ -96.056661189938694, 30.020080226145179 ], [ -96.056635190501297, 30.020295226612713 ], [ -96.056576190670967, 30.020481226118509 ], [ -96.056509189970896, 30.020696226273241 ], [ -96.056496189826234, 30.020773226628997 ], [ -96.0564811900949, 30.020810226648127 ], [ -96.056454190688285, 30.020874226563738 ], [ -96.05642818990205, 30.020938226691779 ], [ -96.056421190645253, 30.020954226167845 ], [ -96.056143189779419, 30.021262226066611 ], [ -96.056067189964622, 30.02139422613984 ], [ -96.056054189928332, 30.021526226676293 ], [ -96.056067189884814, 30.021652226185982 ], [ -96.056117190072669, 30.021894226740685 ], [ -96.056168189898557, 30.022064227076449 ], [ -96.056162190277988, 30.022268227058227 ], [ -96.056225189915068, 30.022378226996242 ], [ -96.056263190135866, 30.022405226720455 ], [ -96.056370190721267, 30.022427226958396 ], [ -96.056433190770605, 30.022432226809261 ], [ -96.056566190728802, 30.022421226529826 ], [ -96.056825190950846, 30.022422227101831 ], [ -96.056926190891033, 30.022394226535145 ], [ -96.057020190203531, 30.022389226504036 ], [ -96.057090190996533, 30.022400226300093 ], [ -96.057166190407671, 30.022432226398198 ], [ -96.057223190947738, 30.022471226620784 ], [ -96.05731119020507, 30.022477226592372 ], [ -96.057576190500995, 30.02240522687552 ], [ -96.057658191015065, 30.022416226539036 ], [ -96.057709190216869, 30.02245422698644 ], [ -96.057778191086115, 30.022531227135119 ], [ -96.057830190356214, 30.022622226346186 ], [ -96.057873191212039, 30.02269622684954 ], [ -96.057968190381388, 30.022834227223221 ], [ -96.058113190363741, 30.023015227117313 ], [ -96.058353190834779, 30.023136226846923 ], [ -96.058404190786732, 30.023175226928181 ], [ -96.058580191351496, 30.02325722672224 ], [ -96.058663191062465, 30.023290226573895 ], [ -96.058820191521392, 30.023312226464903 ], [ -96.058959191057696, 30.023367226991457 ], [ -96.059218191231423, 30.023504227038519 ], [ -96.059439191262825, 30.023785226756662 ], [ -96.059667191223852, 30.024026226948244 ], [ -96.059749191740423, 30.024285226755993 ], [ -96.059736191438134, 30.024428227253857 ], [ -96.059585191104858, 30.024604227051885 ], [ -96.059559191557369, 30.024647227015869 ], [ -96.05954019122467, 30.024713227222204 ], [ -96.059572190790931, 30.024906227568025 ], [ -96.059603191287835, 30.02496122743684 ], [ -96.059654191245031, 30.02500522740862 ], [ -96.060210191131276, 30.025291227492872 ], [ -96.060450191542884, 30.02537322697215 ], [ -96.060652191783873, 30.025455226816021 ], [ -96.060690192094683, 30.025516227336819 ], [ -96.0606961920316, 30.025609226857039 ], [ -96.060740191230352, 30.025769227170873 ], [ -96.060740191758953, 30.025890227199103 ], [ -96.060709191892755, 30.025956227659101 ], [ -96.060639191680622, 30.026044227467693 ], [ -96.060349191311673, 30.02626322712544 ], [ -96.060355191343305, 30.026472227129396 ], [ -96.060336191639195, 30.02667622756335 ], [ -96.060311192053945, 30.026736227115354 ], [ -96.06017219159439, 30.026934227962684 ], [ -96.060153191258308, 30.027000227299112 ], [ -96.060153191050631, 30.027049227950126 ], [ -96.0602161919888, 30.027154227987015 ], [ -96.06026019134309, 30.027187227185319 ], [ -96.06029919127127, 30.027230227925255 ], [ -96.060311191172701, 30.027242227574163 ], [ -96.060532191876064, 30.027593227994476 ], [ -96.060683191253673, 30.028044227477345 ], [ -96.060709191700454, 30.028143227936194 ], [ -96.060715191888946, 30.028209228201231 ], [ -96.060709191962189, 30.02840122800426 ], [ -96.060652191508694, 30.028456227480177 ], [ -96.06051919176835, 30.028511227646451 ], [ -96.060437191228118, 30.028676228003349 ], [ -96.060304191540538, 30.029033228197715 ], [ -96.060285191150399, 30.029165228264944 ], [ -96.060304191680117, 30.029347228129332 ], [ -96.060393191230801, 30.029605227616052 ], [ -96.0604121915256, 30.029720227685328 ], [ -96.060412191370219, 30.029825228202409 ], [ -96.060399191876087, 30.0298802281098 ], [ -96.060336191324396, 30.029968228311109 ], [ -96.060285191779343, 30.030017227734341 ], [ -96.060266192098993, 30.030077228530221 ], [ -96.060279191302726, 30.030176227936867 ], [ -96.060311191896872, 30.030248227847281 ], [ -96.060311191913883, 30.030298228345377 ], [ -96.060311191701317, 30.030325228392531 ], [ -96.060292192004852, 30.030385228283457 ], [ -96.060241191314987, 30.030435228466658 ], [ -96.060178191188982, 30.030479228413036 ], [ -96.060071192026413, 30.030495228670222 ], [ -96.060026191962862, 30.03052322865901 ], [ -96.06000119155857, 30.030578228568231 ], [ -96.060007191775853, 30.03097322800328 ], [ -96.059988192088667, 30.031028228336595 ], [ -96.05983119117225, 30.03122122879487 ], [ -96.059774192137738, 30.031633228796359 ], [ -96.059786191447259, 30.031704228941678 ], [ -96.059875191550972, 30.031792228200487 ], [ -96.0599251921372, 30.031880228741809 ], [ -96.05996319170201, 30.032133228325382 ], [ -96.05991319209619, 30.032287228253029 ], [ -96.059887192084801, 30.032413228996699 ], [ -96.059862191993901, 30.032562228573784 ], [ -96.059856191202883, 30.032798229108671 ], [ -96.059811191214536, 30.032952229164245 ], [ -96.059654191428663, 30.033199228529995 ], [ -96.059578191682832, 30.033243228923816 ], [ -96.059786191644477, 30.033512228499536 ], [ -96.059809191245094, 30.033546229290987 ], [ -96.059919191706541, 30.033710229118942 ], [ -96.059963191609825, 30.033837228857493 ], [ -96.060014191724136, 30.034046229162676 ], [ -96.060058191622844, 30.034287229211646 ], [ -96.060101191869038, 30.034636229053579 ], [ -96.060108192091562, 30.034689228903051 ], [ -96.060121192387072, 30.03490822881135 ], [ -96.060146191584991, 30.034996229057619 ], [ -96.060157191786814, 30.035010229157631 ], [ -96.060203191568036, 30.035068228857515 ], [ -96.060443192080527, 30.035255228770179 ], [ -96.060468192110733, 30.035304229254223 ], [ -96.060475192397675, 30.0353702295698 ], [ -96.060456192159279, 30.035573229479898 ], [ -96.060475192494309, 30.035645229067583 ], [ -96.060512191619168, 30.035700229692441 ], [ -96.060544191910836, 30.035722228958825 ], [ -96.060582192294774, 30.03579322909987 ], [ -96.060588191815469, 30.035859229164021 ], [ -96.060576192519974, 30.035914229201236 ], [ -96.060544192167768, 30.035969229428922 ], [ -96.060462192153622, 30.036002229222113 ], [ -96.060266192312483, 30.036008229556767 ], [ -96.060231191740129, 30.036031229562973 ], [ -96.060203191856516, 30.036052229493485 ], [ -96.060178192184239, 30.036085229772983 ], [ -96.060209191467806, 30.03615622936778 ], [ -96.060203192358344, 30.036249229567815 ], [ -96.060216192025976, 30.036332229458097 ], [ -96.060253192163685, 30.036436229744726 ], [ -96.060285191497073, 30.036486229835177 ], [ -96.060374191726069, 30.03657922981342 ], [ -96.06054419222977, 30.036684229699393 ], [ -96.060582192538632, 30.036717229122374 ], [ -96.060632191985817, 30.03677722926604 ], [ -96.060658192509848, 30.036848229489348 ], [ -96.060651192062565, 30.037019229689662 ], [ -96.06063919253873, 30.037101229689647 ], [ -96.0606071926222, 30.037189229302374 ], [ -96.060557192235777, 30.037250229565647 ], [ -96.060317192042135, 30.03742622958444 ], [ -96.060291191608087, 30.037519229901168 ], [ -96.060298191854415, 30.03756322968545 ], [ -96.060342192022432, 30.037656229808391 ], [ -96.060336192426902, 30.037788229619697 ], [ -96.060291191886805, 30.038041229488549 ], [ -96.060272191720486, 30.038222229617194 ], [ -96.060272192457148, 30.038327229831328 ], [ -96.06024719233956, 30.038475230180765 ], [ -96.060222192498145, 30.038525229628124 ], [ -96.060178191572135, 30.038558230256172 ], [ -96.060020191620112, 30.038596229919115 ], [ -96.059906191706347, 30.038646229708473 ], [ -96.05982419155238, 30.038717229791224 ], [ -96.059685191553854, 30.03893122984238 ], [ -96.059647191948613, 30.039041230162717 ], [ -96.059596192048716, 30.039377229923932 ], [ -96.059596192085991, 30.039497230375236 ], [ -96.0596151918527, 30.039706230484668 ], [ -96.059629191963197, 30.03975623030323 ], [ -96.059678191578797, 30.039921229745051 ], [ -96.059830192572747, 30.040245230208399 ], [ -96.059874191921608, 30.040481230219896 ], [ -96.05991819206811, 30.040597230723442 ], [ -96.059956191892582, 30.040800230031369 ], [ -96.060057192553373, 30.041069229979279 ], [ -96.060070192386135, 30.041157230120994 ], [ -96.060146192496305, 30.041328230025563 ], [ -96.060342192428294, 30.041558230751185 ], [ -96.060462192287474, 30.041646230352608 ], [ -96.06050619258184, 30.041734230756411 ], [ -96.060512191960584, 30.041811230444463 ], [ -96.060500192031938, 30.041916230640819 ], [ -96.060436192782262, 30.042020230639956 ], [ -96.060481192483437, 30.042174230776254 ], [ -96.060556192367258, 30.042256230258218 ], [ -96.060714192791309, 30.042344230488585 ], [ -96.060725192823099, 30.04235123029914 ], [ -96.061005192819167, 30.042542230955107 ], [ -96.061055192808595, 30.042592230884647 ], [ -96.061112192226815, 30.042669230366513 ], [ -96.06118219281521, 30.04280123049903 ], [ -96.061226192101785, 30.042949230710722 ], [ -96.061245192967803, 30.043059230554896 ], [ -96.061289192139043, 30.04318523119214 ], [ -96.061377192459659, 30.043806231269262 ], [ -96.061371192861614, 30.044131230666235 ], [ -96.061352192702671, 30.04436723113913 ], [ -96.061314192513137, 30.044488231464477 ], [ -96.061238192195304, 30.04459823133713 ], [ -96.061011192440219, 30.044834230761417 ], [ -96.060828193049446, 30.044982231089371 ], [ -96.060720192895616, 30.04509223114119 ], [ -96.06063219258229, 30.045274231480498 ], [ -96.060638192998056, 30.04535623146155 ], [ -96.060720192235763, 30.045642231709987 ], [ -96.06072019279631, 30.045708231171101 ], [ -96.060676192222658, 30.045895231256168 ], [ -96.060638192124586, 30.046005231597839 ], [ -96.06049919248531, 30.046214231724559 ], [ -96.060482192469337, 30.046306231146513 ], [ -96.060474192269808, 30.046351231062456 ], [ -96.060499192256898, 30.046571231491207 ], [ -96.060474192758761, 30.046615231511158 ], [ -96.060423192166368, 30.046664231748739 ], [ -96.060423192855609, 30.046697231929343 ], [ -96.060468192588402, 30.046802231463463 ], [ -96.060480192829701, 30.046857231891618 ], [ -96.060537193012735, 30.046961231356377 ], [ -96.060562192719303, 30.046988231133561 ], [ -96.060670192559414, 30.047049231405307 ], [ -96.060758192420906, 30.047186231150508 ], [ -96.060790192346431, 30.047285232045507 ], [ -96.060834192353141, 30.047346231310911 ], [ -96.060859192293776, 30.047401231707731 ], [ -96.06088519282001, 30.047549231601462 ], [ -96.06088419287488, 30.047604231945829 ], [ -96.060878192188, 30.047632231346309 ], [ -96.060847192623527, 30.047654231563229 ], [ -96.060752192671771, 30.047670231548736 ], [ -96.060695193082779, 30.047692231660747 ], [ -96.060670192933244, 30.047719231665827 ], [ -96.060644192997003, 30.047796231632844 ], [ -96.060619192223896, 30.047840231637238 ], [ -96.060575192888308, 30.04786823202404 ], [ -96.060461192512889, 30.047906231777958 ], [ -96.060436192849778, 30.047923231896373 ], [ -96.060411192120796, 30.047961231590222 ], [ -96.060411192872252, 30.048044231928014 ], [ -96.060379192423639, 30.048203231873956 ], [ -96.060265192701834, 30.048313232048312 ], [ -96.060259192691305, 30.048340231538251 ], [ -96.060259192456343, 30.048417231573033 ], [ -96.060278193025042, 30.048511232104129 ], [ -96.060322192169806, 30.04852223222543 ], [ -96.060430192169903, 30.048588232101114 ], [ -96.060461192777296, 30.04864823150719 ], [ -96.060442192981498, 30.048709231884487 ], [ -96.060360192256312, 30.048758231793713 ], [ -96.060190192252918, 30.048802232274074 ], [ -96.059949191977267, 30.048816232062041 ], [ -96.059905192644777, 30.048819232151878 ], [ -96.059861192545114, 30.04884623239677 ], [ -96.059823192433583, 30.048852231626245 ], [ -96.059754192918533, 30.048945232110388 ], [ -96.059747192012779, 30.04898923225845 ], [ -96.059741191929277, 30.049165232302766 ], [ -96.059773192744046, 30.049280231711975 ], [ -96.059760192466001, 30.04933523211259 ], [ -96.059716192453664, 30.049357231936145 ], [ -96.059589192429684, 30.04933523174747 ], [ -96.059539192291993, 30.049363232272487 ], [ -96.059520192309336, 30.049390232480761 ], [ -96.059545192472484, 30.049478232325356 ], [ -96.059652192572415, 30.049511232438068 ], [ -96.059728192816593, 30.049599232553742 ], [ -96.059766192453509, 30.049676231814178 ], [ -96.059722192756922, 30.049731231780569 ], [ -96.059690192006101, 30.04973623237743 ], [ -96.059665192860479, 30.049813232360833 ], [ -96.059653192835242, 30.049923232585083 ], [ -96.059665192638434, 30.050072232127395 ], [ -96.059690192643046, 30.050127231784405 ], [ -96.059785192760529, 30.050198232358216 ], [ -96.059848192821477, 30.050220231993332 ], [ -96.059899192357108, 30.050259232607328 ], [ -96.059918192800367, 30.050308232460136 ], [ -96.059924192218858, 30.050341232065946 ], [ -96.05991119292905, 30.050374232098864 ], [ -96.059874192071945, 30.050401232041231 ], [ -96.059804192405011, 30.050522232048756 ], [ -96.059823192134132, 30.050588231902825 ], [ -96.059867192439555, 30.050638232561131 ], [ -96.059886192412208, 30.050676232660752 ], [ -96.059987192193503, 30.050704232586551 ], [ -96.060101192712253, 30.050687231885711 ], [ -96.060265192273633, 30.050682232376847 ], [ -96.060303192616104, 30.050737231976097 ], [ -96.060297193027168, 30.05082523221752 ], [ -96.060202192541411, 30.050880232233876 ], [ -96.060063192279458, 30.050913232272872 ], [ -96.060006193017273, 30.050973232606125 ], [ -96.059943193073522, 30.051072231986506 ], [ -96.059918192768635, 30.051215232185005 ], [ -96.059848192270593, 30.051319232168439 ], [ -96.059501192474613, 30.051671232912216 ], [ -96.059621192768418, 30.051913232604715 ], [ -96.059608192979269, 30.052341233044725 ], [ -96.059564192265981, 30.052495232311447 ], [ -96.059551192691345, 30.0525892330174 ], [ -96.059488192366643, 30.052726232617587 ], [ -96.05939319230589, 30.052770232349264 ], [ -96.059298192894417, 30.052743232362797 ], [ -96.059216192319553, 30.052737232925146 ], [ -96.059147192065197, 30.052825232647105 ], [ -96.059115192901672, 30.053012232745086 ], [ -96.059083192937592, 30.053093233264416 ], [ -96.059071192130048, 30.05312723327857 ], [ -96.059115192860858, 30.053221233053129 ], [ -96.059115192418233, 30.053303233332937 ], [ -96.059140192328101, 30.053369232743769 ], [ -96.059153192179991, 30.053490232649892 ], [ -96.059134192769093, 30.053551232778386 ], [ -96.059121191996823, 30.053671233325282 ], [ -96.059039192798437, 30.053743232727214 ], [ -96.058938192705241, 30.053820232705355 ], [ -96.058831192904464, 30.053941232894431 ], [ -96.058742192754153, 30.054106233237295 ], [ -96.058692192388833, 30.054232232912302 ], [ -96.058641192399108, 30.054298233342976 ], [ -96.05851519251172, 30.054364233067545 ], [ -96.058306192673257, 30.05444123339436 ], [ -96.058281191952233, 30.054457233197574 ], [ -96.058218192344171, 30.05454023344187 ], [ -96.058184192611392, 30.054666232980736 ], [ -96.058155191961276, 30.054776233535303 ], [ -96.058130192634351, 30.055155233324793 ], [ -96.058097192680393, 30.055248232966388 ], [ -96.058079192739797, 30.055304233679692 ], [ -96.058009192705995, 30.055408233563217 ], [ -96.05794619199699, 30.055480233017622 ], [ -96.057896192696603, 30.055501233711766 ], [ -96.057782192609366, 30.055518233550458 ], [ -96.057706192557802, 30.055567233267436 ], [ -96.057738192106086, 30.055743233551024 ], [ -96.057725192714713, 30.055804233041748 ], [ -96.057643192495604, 30.055908233556874 ], [ -96.057441191683822, 30.055963233832863 ], [ -96.057327192137492, 30.055963233324171 ], [ -96.057226191623315, 30.056013233107958 ], [ -96.057201192274704, 30.056046233629115 ], [ -96.057169191657366, 30.056161233607444 ], [ -96.057087191732037, 30.056348233920243 ], [ -96.057040192523374, 30.056392233449262 ], [ -96.057017191873626, 30.056414233754357 ], [ -96.056916192551114, 30.056480233425081 ], [ -96.056834191909871, 30.056518233300707 ], [ -96.056739192415762, 30.056535233202837 ], [ -96.05663819159534, 30.056524233671635 ], [ -96.056499191899121, 30.056463233919519 ], [ -96.056417192111994, 30.056491233731805 ], [ -96.056354191769415, 30.056535233653872 ], [ -96.056316192328609, 30.056645233446808 ], [ -96.056202191951428, 30.056842233427499 ], [ -96.05615219221265, 30.056958234116838 ], [ -96.056120191942597, 30.056991233618756 ], [ -96.056019192178482, 30.057024233449351 ], [ -96.055950191943538, 30.057057233804628 ], [ -96.055804192078412, 30.057073234211185 ], [ -96.05565319153412, 30.057106234096466 ], [ -96.055539192031091, 30.057183233773447 ], [ -96.05550719197231, 30.057221233503586 ], [ -96.055457192014046, 30.057260234069862 ], [ -96.055331191821608, 30.057265233786417 ], [ -96.055116191426322, 30.057221233493625 ], [ -96.054686191944555, 30.057188234126826 ], [ -96.054636191797215, 30.057205234037951 ], [ -96.054553191643208, 30.057254233829894 ], [ -96.054465191917942, 30.057359233528942 ], [ -96.054389191336611, 30.057425234083095 ], [ -96.054345191868606, 30.057436234276725 ], [ -96.05420919115906, 30.057433233935086 ], [ -96.054067191146473, 30.057430233725164 ], [ -96.05396619151945, 30.057441233486085 ], [ -96.053107190687371, 30.057655234264775 ], [ -96.053005191012005, 30.057699234029563 ], [ -96.052942190924057, 30.057749233551036 ], [ -96.052911191589217, 30.057798233592386 ], [ -96.052879190772984, 30.058057234336374 ], [ -96.052879191208774, 30.058106234518956 ], [ -96.05291119145329, 30.058238234358914 ], [ -96.052904191219483, 30.058298234184527 ], [ -96.052879191491485, 30.058353234260512 ], [ -96.052847190616603, 30.058370233796651 ], [ -96.052797191446501, 30.058370233974859 ], [ -96.052626191046684, 30.058304233945258 ], [ -96.052576190607823, 30.058315233738263 ], [ -96.052544191040113, 30.058337234501906 ], [ -96.052525191041738, 30.058370233969196 ], [ -96.052525191037091, 30.058430233865391 ], [ -96.052544190563708, 30.05848023452906 ], [ -96.052569191555975, 30.058634233821827 ], [ -96.052550190656333, 30.058700234247343 ], [ -96.052291191349227, 30.058903234521846 ], [ -96.052127191475776, 30.058958234565203 ], [ -96.051906191400008, 30.059062234296551 ], [ -96.051893191171786, 30.059123234118001 ], [ -96.051868191035453, 30.059167234272866 ], [ -96.051862191251971, 30.059244234305492 ], [ -96.05194419058104, 30.05951323423966 ], [ -96.051950191083165, 30.059661234447461 ], [ -96.051931191358548, 30.059722234433476 ], [ -96.051824191028516, 30.059854234222932 ], [ -96.051779190737278, 30.059942234056859 ], [ -96.05177319082992, 30.06000223408487 ], [ -96.051798191072834, 30.060090234212389 ], [ -96.051805191223693, 30.060150234201267 ], [ -96.051798190883133, 30.060238234540112 ], [ -96.051773191171151, 30.060277234310611 ], [ -96.051710190864469, 30.06032623426017 ], [ -96.051634191044627, 30.060403234812583 ], [ -96.051520191297769, 30.060574234552725 ], [ -96.051470191070152, 30.0607162342971 ], [ -96.05145719057461, 30.060958234402811 ], [ -96.051438190593004, 30.06102423465952 ], [ -96.051350191210076, 30.06119523513436 ], [ -96.05121719132147, 30.061365234836142 ], [ -96.050996190545689, 30.061552234976325 ], [ -96.050958190477957, 30.061601235272093 ], [ -96.050932190831901, 30.061733234494074 ], [ -96.05086319065768, 30.061821234474568 ], [ -96.050831190539952, 30.061920234632144 ], [ -96.050831190546873, 30.061980235373518 ], [ -96.050844191277221, 30.062008235123045 ], [ -96.050907191003915, 30.062057234907186 ], [ -96.05098319041646, 30.062074234536865 ], [ -96.05115419036018, 30.062167235323521 ], [ -96.051248191103497, 30.062393235289665 ], [ -96.051286191427792, 30.062437234789709 ], [ -96.051305190475276, 30.062585234854389 ], [ -96.051248191002813, 30.062667235399758 ], [ -96.051059190999439, 30.062854235506887 ], [ -96.051014190647805, 30.062997235384053 ], [ -96.050995190635831, 30.063171235561725 ], [ -96.050989190967599, 30.063228234924971 ], [ -96.05105219078736, 30.063321235242395 ], [ -96.051128190566033, 30.063365235447549 ], [ -96.051147190892735, 30.063387234757062 ], [ -96.051141190810952, 30.063492235215833 ], [ -96.051059191371465, 30.063640235059278 ], [ -96.051040190956215, 30.063750234930939 ], [ -96.051040190693911, 30.063860235601275 ], [ -96.050945190546486, 30.06405223504996 ], [ -96.050938190415522, 30.064124235178703 ], [ -96.050964190626331, 30.064223235304222 ], [ -96.051002190733996, 30.064272235195475 ], [ -96.051046190906064, 30.064289235725113 ], [ -96.051147190735122, 30.064283235684872 ], [ -96.051210191361008, 30.064228235769786 ], [ -96.051261190994794, 30.064146235409702 ], [ -96.051311191423892, 30.064118235207221 ], [ -96.051343190915929, 30.064113235593371 ], [ -96.051374191210144, 30.06412423577499 ], [ -96.051393190694952, 30.064146235020733 ], [ -96.051412191038523, 30.064201235199743 ], [ -96.051475191054536, 30.064316235577216 ], [ -96.051482191230093, 30.064410235389424 ], [ -96.051469191383418, 30.064476235434196 ], [ -96.051444191479149, 30.064514235212169 ], [ -96.051399191173985, 30.064536235699645 ], [ -96.051261190756264, 30.064564235882301 ], [ -96.051121191373099, 30.064673235582156 ], [ -96.051084191334226, 30.064778235466569 ], [ -96.051090191056261, 30.064948235731357 ], [ -96.051052190967212, 30.065152235337678 ], [ -96.051058190945554, 30.065251235222487 ], [ -96.05102019077313, 30.06566823587028 ], [ -96.051027191373095, 30.065795235673097 ], [ -96.051001190851835, 30.065987235352914 ], [ -96.05098219136714, 30.066047236116287 ], [ -96.050913191098488, 30.066168236035857 ], [ -96.050793191395655, 30.066245235459348 ], [ -96.050742190764382, 30.066295235483867 ], [ -96.050635191345137, 30.066449235406608 ], [ -96.050660191165221, 30.066476235882202 ], [ -96.050831190599979, 30.066542236111438 ], [ -96.050938190733348, 30.066619235986217 ], [ -96.050957191161118, 30.066652235883108 ], [ -96.050951191361136, 30.066789236315842 ], [ -96.050982191255201, 30.066855235925093 ], [ -96.05114019106, 30.067004235620423 ], [ -96.051311191435744, 30.067339236302285 ], [ -96.051431191111845, 30.06753123567837 ], [ -96.051607191342086, 30.067889236519683 ], [ -96.051778190822517, 30.068312236609678 ], [ -96.05185419114072, 30.068466235809773 ], [ -96.051873191763448, 30.068658235995585 ], [ -96.051879190952917, 30.068878236710223 ], [ -96.051898191403808, 30.068966236652791 ], [ -96.051930191673009, 30.069048236272923 ], [ -96.052151190993811, 30.069268236553111 ], [ -96.052195191715199, 30.069510236013812 ], [ -96.052258191708418, 30.069609236579478 ], [ -96.052309191649101, 30.06967523664861 ], [ -96.052429191206301, 30.069752236826897 ], [ -96.052549191867584, 30.06981223610078 ], [ -96.05296619148298, 30.069823236404446 ], [ -96.053067191235129, 30.069856236786801 ], [ -96.053130191523096, 30.069889236148182 ], [ -96.053206191681028, 30.070054236801763 ], [ -96.053218191338942, 30.070089236036107 ], [ -96.053313191675954, 30.070356236521487 ], [ -96.053376191480439, 30.070499236991537 ], [ -96.053503192181466, 30.070829236779627 ], [ -96.053540191544144, 30.070956236672544 ], [ -96.053585192304666, 30.071054236483821 ], [ -96.053673192136216, 30.071153236432981 ], [ -96.053781191825195, 30.07125223695575 ], [ -96.053989191820406, 30.071406237008929 ], [ -96.054248192438905, 30.071637236537995 ], [ -96.054419192124911, 30.071890236985482 ], [ -96.054772191975104, 30.072280236692141 ], [ -96.054994192570689, 30.072572236531055 ], [ -96.05530919205242, 30.072940236693015 ], [ -96.055493192016939, 30.073193236941233 ], [ -96.055663192905854, 30.073445237233429 ], [ -96.055726192514044, 30.073555237351901 ], [ -96.055809192092653, 30.07383623730987 ], [ -96.055827192719661, 30.073957236965278 ], [ -96.055872192811378, 30.074055237613301 ], [ -96.056017192634513, 30.074237237417933 ], [ -96.056377192506375, 30.074616236993556 ], [ -96.056421192758762, 30.074710237637284 ], [ -96.056447192334929, 30.074825237001722 ], [ -96.056434192691228, 30.075001237319025 ], [ -96.056415193191285, 30.075056237378629 ], [ -96.056402192713421, 30.075380237005401 ], [ -96.056358192812112, 30.075594237308341 ], [ -96.056270192907391, 30.075820237472506 ], [ -96.056149192680721, 30.076023237724961 ], [ -96.056074193125582, 30.076100237151802 ], [ -96.055998192985967, 30.076155237899012 ], [ -96.055909192589922, 30.076188237986734 ], [ -96.05556219217361, 30.076221237758389 ], [ -96.05544819215045, 30.076226237376474 ], [ -96.055246192737258, 30.076221237221588 ], [ -96.055018192720638, 30.076188238031456 ], [ -96.054848192250631, 30.076177237728213 ], [ -96.054614192624285, 30.076127237401675 ], [ -96.054064191830889, 30.075951237730568 ], [ -96.053887192475003, 30.07588023766575 ], [ -96.053729192255901, 30.075765237306637 ], [ -96.053597192425627, 30.075704237328218 ], [ -96.053502191693468, 30.075677237494212 ], [ -96.053357192345786, 30.075578237334618 ], [ -96.053319192469246, 30.075561237511437 ], [ -96.053274191673978, 30.075567237733086 ], [ -96.053236191605535, 30.075588237174568 ], [ -96.053192192425357, 30.075599237999629 ], [ -96.053161192224351, 30.07563823719962 ], [ -96.053047192122207, 30.075720237753856 ], [ -96.052927192272108, 30.075742238042821 ], [ -96.052838191876035, 30.075770237587342 ], [ -96.052737192124951, 30.07577523743025 ], [ -96.052636191658152, 30.075770237414957 ], [ -96.05257919209059, 30.075792237848763 ], [ -96.052421192104703, 30.075902237451704 ], [ -96.052225191471834, 30.075957237429677 ], [ -96.052099191388649, 30.075973237859479 ], [ -96.051998191778878, 30.076017238143368 ], [ -96.051846191549359, 30.076099237362399 ], [ -96.051777191497138, 30.076149237337553 ], [ -96.051688191784208, 30.076303238086247 ], [ -96.05164419132268, 30.076352237679018 ], [ -96.051593191245985, 30.076385238076028 ], [ -96.051536191888161, 30.076385237870515 ], [ -96.051467191430106, 30.076363237732615 ], [ -96.051397192081723, 30.076292237454901 ], [ -96.051353191143789, 30.076281237436802 ], [ -96.051214191487304, 30.076297237998407 ], [ -96.051151192009158, 30.07635823807658 ], [ -96.051100191859575, 30.076468237673335 ], [ -96.051056191472256, 30.076506237426042 ], [ -96.051025190988923, 30.076561237931827 ], [ -96.051031191440117, 30.076638238082094 ], [ -96.051050191376248, 30.076665237567777 ], [ -96.051126191344537, 30.076720237894275 ], [ -96.05113219125036, 30.076748238173543 ], [ -96.051126191875596, 30.076786237628081 ], [ -96.050936191823538, 30.076968238343792 ], [ -96.050867191490894, 30.077072238032159 ], [ -96.050873191713052, 30.077166238043578 ], [ -96.050917191312649, 30.077380237648129 ], [ -96.050917191814108, 30.077429238400082 ], [ -96.050904191298855, 30.077462238243253 ], [ -96.050866191211796, 30.077506238017634 ], [ -96.050822191048141, 30.077539238264691 ], [ -96.050607191725803, 30.077633237971956 ], [ -96.050481191758095, 30.077721237759235 ], [ -96.050468191297284, 30.077759237894973 ], [ -96.050468191427356, 30.07784723780572 ], [ -96.050481190925595, 30.077896238572205 ], [ -96.050557190992649, 30.078045238399426 ], [ -96.050544191709179, 30.078149238260423 ], [ -96.0505251917712, 30.078188238417219 ], [ -96.050456191488706, 30.078276237894784 ], [ -96.050247191439937, 30.078429238299989 ], [ -96.050215191012697, 30.078468238340282 ], [ -96.050146191370217, 30.078512238179947 ], [ -96.049944191012813, 30.078589237934395 ], [ -96.04976019141921, 30.078677238592963 ], [ -96.049735191510578, 30.07876523855526 ], [ -96.049748190799178, 30.078814238473644 ], [ -96.04973519147174, 30.078864238090119 ], [ -96.049691191443614, 30.078924238502957 ], [ -96.049647191322336, 30.078957238370581 ], [ -96.049602191046446, 30.078968238639145 ], [ -96.049463191135814, 30.078946238180567 ], [ -96.049362191097558, 30.078951238256298 ], [ -96.049204191385144, 30.079017238253428 ], [ -96.049128191094766, 30.079061238242343 ], [ -96.049090191294297, 30.079094238778996 ], [ -96.049040190621724, 30.079166238563715 ], [ -96.048996191182894, 30.079259238612281 ], [ -96.048958190832124, 30.079309238062489 ], [ -96.048800191006734, 30.079430238535569 ], [ -96.048718190626715, 30.079506238300127 ], [ -96.048553190797975, 30.079572238196775 ], [ -96.048351190451271, 30.079660238857368 ], [ -96.048307191029082, 30.079671239014431 ], [ -96.048105190691402, 30.07969323871805 ], [ -96.047953191277315, 30.079699238687098 ], [ -96.047833191099258, 30.079693238611604 ], [ -96.047631190944728, 30.079732238380156 ], [ -96.047485190810221, 30.079781238325207 ], [ -96.047365190967994, 30.07991323835925 ], [ -96.047315191072812, 30.079946238368791 ], [ -96.047188190997701, 30.079957239076425 ], [ -96.047150190258037, 30.0800562387513 ], [ -96.047131191172127, 30.080254238373563 ], [ -96.047100190756737, 30.080325238851742 ], [ -96.047062190412689, 30.080397238874976 ], [ -96.046998190663601, 30.080451238412852 ], [ -96.046939190316152, 30.080516239087284 ], [ -96.046859190458818, 30.08060523868232 ], [ -96.046815190247855, 30.080682238931136 ], [ -96.046790190477552, 30.080776238566163 ], [ -96.046809190950626, 30.080957239086096 ], [ -96.046790191055848, 30.081325239005537 ], [ -96.046821190482305, 30.081380238617818 ], [ -96.046941190218661, 30.08151223865363 ], [ -96.047219191271267, 30.081760239161827 ], [ -96.047251191043699, 30.081919238772773 ], [ -96.047238190296767, 30.082045239299489 ], [ -96.047264190747441, 30.082100239091986 ], [ -96.047384190974455, 30.082238238889172 ], [ -96.047680190600275, 30.082408239160262 ], [ -96.047763191395248, 30.082430239009597 ], [ -96.04780119066902, 30.082485239547587 ], [ -96.047807190974765, 30.08255623949966 ], [ -96.047838190702095, 30.082584239238436 ], [ -96.047990190579981, 30.082633239305846 ], [ -96.048167190697058, 30.082710238889518 ], [ -96.048300190880497, 30.082782239334264 ], [ -96.048338191325115, 30.082826239193018 ], [ -96.048357191142202, 30.082870238828118 ], [ -96.048363191095206, 30.082914239135036 ], [ -96.048344190911479, 30.082969238905044 ], [ -96.048281191453881, 30.083057239010664 ], [ -96.048249191268027, 30.083150239556986 ], [ -96.048243191327956, 30.083222239398104 ], [ -96.04825519105043, 30.08326623967185 ], [ -96.048287190788358, 30.083309239661375 ], [ -96.048420191164709, 30.083430239709692 ], [ -96.048445190806632, 30.083469238954709 ], [ -96.048470191051905, 30.083601239188102 ], [ -96.048464190801994, 30.08369423929576 ], [ -96.048388191646865, 30.083804239385085 ], [ -96.048344191632836, 30.083821239771655 ], [ -96.048312190666493, 30.083815239111527 ], [ -96.048230191642432, 30.083777239118035 ], [ -96.048135191441276, 30.083771239610083 ], [ -96.048085190962482, 30.083804238978459 ], [ -96.048078191283196, 30.08386523977817 ], [ -96.048116191139712, 30.083996239524875 ], [ -96.048262191638329, 30.08424923908964 ], [ -96.048419191011874, 30.084568239433501 ], [ -96.048495191198839, 30.084760239530272 ], [ -96.04849519129796, 30.084799239517768 ], [ -96.048483190949582, 30.084815239538838 ], [ -96.048445191441459, 30.08483223993181 ], [ -96.048287191296637, 30.084821239722778 ], [ -96.048255191640308, 30.084837239241416 ], [ -96.048223191365267, 30.084870239473535 ], [ -96.04819219096899, 30.084887240043628 ], [ -96.048015191017797, 30.085057239960605 ], [ -96.047964191248127, 30.085162239666612 ], [ -96.047893191139252, 30.085275239668157 ], [ -96.047852191411451, 30.085338239971229 ], [ -96.04773119060134, 30.085530240115578 ], [ -96.0476921913735, 30.085594239959633 ], [ -96.047579191346458, 30.085772239492293 ], [ -96.047545191342934, 30.085827240019338 ], [ -96.04750919073237, 30.085887240242982 ], [ -96.047433191478021, 30.085969240306422 ], [ -96.047105190628415, 30.08612324035834 ], [ -96.047079191399618, 30.086140239514751 ], [ -96.047029190889972, 30.086206240070183 ], [ -96.047029190836454, 30.086272239611962 ], [ -96.047041191108931, 30.086294239810826 ], [ -96.047100191286574, 30.086342239548067 ], [ -96.047155191110591, 30.086387240189129 ], [ -96.04717419089279, 30.086420240305763 ], [ -96.047187191175553, 30.086546240414652 ], [ -96.047175190765955, 30.086584240460979 ], [ -96.047168190804925, 30.086607240170768 ], [ -96.047130190912881, 30.086656240073854 ], [ -96.047085190553162, 30.086700240214793 ], [ -96.047067190709583, 30.086710239895613 ], [ -96.046978190792473, 30.086766239659315 ], [ -96.046921190599804, 30.086832239844746 ], [ -96.04690819074608, 30.086871240358821 ], [ -96.046915190598071, 30.086909239869509 ], [ -96.046965191145262, 30.08696423970213 ], [ -96.046997190625049, 30.087019240324569 ], [ -96.047003190717703, 30.087096240394388 ], [ -96.04699119091832, 30.087113240174848 ], [ -96.04694619058013, 30.087178240525528 ], [ -96.046926190997482, 30.087266240410383 ], [ -96.046942190868862, 30.087300240418976 ], [ -96.046993190603558, 30.087404240210056 ], [ -96.047010190881224, 30.087439240404628 ], [ -96.046964190702099, 30.087475240231857 ], [ -96.047047191370694, 30.087569240102258 ], [ -96.047079190648887, 30.087662239852062 ], [ -96.047092190972705, 30.087788239910477 ], [ -96.047054191094915, 30.087871240317281 ], [ -96.047016190612126, 30.08791523984555 ], [ -96.046908191418268, 30.087997240679446 ], [ -96.046858190892181, 30.088058239926667 ], [ -96.046851191358286, 30.088129240322022 ], [ -96.046858190665006, 30.088201240337675 ], [ -96.046878191148409, 30.088242240754937 ], [ -96.046965190770464, 30.088415240704503 ], [ -96.046972190662387, 30.088448240773662 ], [ -96.046978191241337, 30.088481240552522 ], [ -96.046965191512726, 30.088541240398776 ], [ -96.04692119070522, 30.088591240064744 ], [ -96.046826190907666, 30.088640240523993 ], [ -96.04678219102604, 30.08869024016531 ], [ -96.046731191091055, 30.08878324072932 ], [ -96.046737191086436, 30.088860240759217 ], [ -96.046775190952403, 30.08898124090333 ], [ -96.046857191168485, 30.089146240286695 ], [ -96.046889190729928, 30.08931624090879 ], [ -96.046895191157986, 30.089492241020931 ], [ -96.046883191327808, 30.089608240876771 ], [ -96.046895190926179, 30.089706240222988 ], [ -96.046921191582243, 30.089800240713604 ], [ -96.046927191218785, 30.089987240380143 ], [ -96.046889190599487, 30.090086240596342 ], [ -96.046832190768342, 30.090168240631137 ], [ -96.046687191247941, 30.09031624114586 ], [ -96.046661190558879, 30.090399240534001 ], [ -96.04667419106508, 30.090558241131102 ], [ -96.046769190918795, 30.090789241142922 ], [ -96.04678119125569, 30.090861240832037 ], [ -96.046781190947385, 30.090921240962786 ], [ -96.046756191244427, 30.09097624127735 ], [ -96.046693190638152, 30.091064240484311 ], [ -96.046680190763539, 30.091157240866274 ], [ -96.046762190893148, 30.091443241170474 ], [ -96.046775190747141, 30.091608240963819 ], [ -96.046718190978439, 30.091778241339838 ], [ -96.046711191244057, 30.091861241112174 ], [ -96.046716191604176, 30.091901241522628 ], [ -96.046756191380169, 30.092202241543362 ], [ -96.046775191372546, 30.0922572408235 ], [ -96.046800191165616, 30.092438241419764 ], [ -96.046863190974051, 30.09270724131903 ], [ -96.046882190899012, 30.092905241629158 ], [ -96.046894191428066, 30.093279241432459 ], [ -96.046888191515023, 30.093471241126167 ], [ -96.046900190764234, 30.09405424116698 ], [ -96.046856191589683, 30.094098241510839 ], [ -96.046780191406143, 30.094142241996995 ], [ -96.046730191710381, 30.094185241481853 ], [ -96.046723191427574, 30.094235241497067 ], [ -96.04674219164032, 30.094279241146047 ], [ -96.046780191412708, 30.094312241568037 ], [ -96.046983190792545, 30.094389241721995 ], [ -96.0470581912505, 30.094455241225099 ], [ -96.047096191592289, 30.094515241948098 ], [ -96.047141191516559, 30.094620242091242 ], [ -96.047292190931472, 30.094785241684225 ], [ -96.047336191224773, 30.094917241829659 ], [ -96.047381191260911, 30.095005242100143 ], [ -96.047406191676771, 30.095010241791034 ], [ -96.047494191534028, 30.094988241907405 ], [ -96.047614191692034, 30.094922241453286 ], [ -96.047684191472896, 30.094922241560585 ], [ -96.0478171916577, 30.094944241478149 ], [ -96.048145191500993, 30.095021241677358 ], [ -96.048613191618784, 30.095098241260242 ], [ -96.048733192161762, 30.095131241482679 ], [ -96.048904191571467, 30.095219241576537 ], [ -96.048948191377107, 30.095269241943274 ], [ -96.048999191760004, 30.095307242155311 ], [ -96.049043192040926, 30.095368242077758 ], [ -96.049163192015641, 30.095576241592649 ], [ -96.049207192152963, 30.095714242104112 ], [ -96.049257191721637, 30.095818242073271 ], [ -96.049352192377413, 30.095895241894461 ], [ -96.049390192342656, 30.095895241898351 ], [ -96.049447191912421, 30.095912241631634 ], [ -96.049517191759975, 30.095950241604985 ], [ -96.049567192116498, 30.096011242131034 ], [ -96.049605192384746, 30.096121241445189 ], [ -96.049700192155981, 30.096494242237103 ], [ -96.049744191699446, 30.096615241833909 ], [ -96.049795192343339, 30.096835242261051 ], [ -96.049795192336717, 30.096934242015536 ], [ -96.049719192182351, 30.097352242169791 ], [ -96.04973119176131, 30.097412241886648 ], [ -96.049756192051376, 30.097473242453212 ], [ -96.049914191753672, 30.09771424232439 ], [ -96.049940192699907, 30.097775242238217 ], [ -96.049946192142897, 30.097819242178385 ], [ -96.049927192615527, 30.097934241850851 ], [ -96.04987619177993, 30.098022242099276 ], [ -96.049813192187344, 30.098149242363935 ], [ -96.049624192387981, 30.098605241944512 ], [ -96.049510191929102, 30.098802242560154 ], [ -96.049421192555329, 30.098923242304426 ], [ -96.04926919236884, 30.099066242097877 ], [ -96.049130191608612, 30.099121242603712 ], [ -96.0490551925066, 30.099171242126236 ], [ -96.049004192274737, 30.099226242452396 ], [ -96.048985192475328, 30.09928124294002 ], [ -96.048985192430251, 30.099341242854184 ], [ -96.049111192458838, 30.099577243016817 ], [ -96.049111191887363, 30.099649242350687 ], [ -96.049187191651029, 30.099885242514521 ], [ -96.049547192307557, 30.100275243079345 ], [ -96.049598192032221, 30.100358242829302 ], [ -96.049633192363643, 30.100439242811678 ], [ -96.049648192639651, 30.100473242890505 ], [ -96.049680192440775, 30.100600242685314 ], [ -96.049762191798976, 30.100732242372938 ], [ -96.04985119217109, 30.100803242433752 ], [ -96.049895192802452, 30.100951242962577 ], [ -96.050046192906251, 30.101149242846549 ], [ -96.050287192298626, 30.10126524326396 ], [ -96.05058419298156, 30.101303242981988 ], [ -96.050697192976287, 30.101298243029163 ], [ -96.050900192722793, 30.101320242560227 ], [ -96.051121192823089, 30.1014522430646 ], [ -96.051140192180412, 30.101573243233595 ], [ -96.051203192271913, 30.101727243121058 ], [ -96.05122219273369, 30.101809242676513 ], [ -96.051254193134028, 30.10188624273912 ], [ -96.051342192888796, 30.102029243406346 ], [ -96.05146819250082, 30.102161242917898 ], [ -96.051759193171364, 30.102403242940387 ], [ -96.05205619327063, 30.102584243272197 ], [ -96.052253192590555, 30.102713243002558 ], [ -96.052572192932331, 30.102922243533715 ], [ -96.052701193427211, 30.103007242996267 ], [ -96.05284019333871, 30.103112243314499 ], [ -96.053048193711305, 30.103392243065795 ], [ -96.053112193233503, 30.103464243270366 ], [ -96.05338319295015, 30.103513243012724 ], [ -96.05342119354944, 30.103552243297628 ], [ -96.053416193373835, 30.103596242873191 ], [ -96.053415193427099, 30.103617243619329 ], [ -96.053358193686961, 30.103689243680524 ], [ -96.053168192799333, 30.103881243625551 ], [ -96.053213193131029, 30.103964242974495 ], [ -96.053257193151211, 30.104008243287847 ], [ -96.053560193234844, 30.104189243356132 ], [ -96.053604193683853, 30.104196243655124 ], [ -96.05365519385677, 30.104206243515097 ], [ -96.0540031936644, 30.104200243780245 ], [ -96.054091193365267, 30.104211243517661 ], [ -96.054173193823701, 30.104255243025772 ], [ -96.054312193860369, 30.104409243708776 ], [ -96.054388193526009, 30.104453243385088 ], [ -96.054540194195965, 30.104519243575652 ], [ -96.054622193347697, 30.104590243001557 ], [ -96.054654194059964, 30.104667243006244 ], [ -96.054628193386918, 30.104986243671785 ], [ -96.054603193966457, 30.105093243139724 ], [ -96.054584193605763, 30.105178243190206 ], [ -96.054603193825827, 30.105453243168132 ], [ -96.054599193305108, 30.105646243254409 ], [ -96.054596193756524, 30.105821244045366 ], [ -96.054614193411581, 30.10591924335273 ], [ -96.054622193965216, 30.105959243905527 ], [ -96.054862194207885, 30.106410243753512 ], [ -96.054856193413585, 30.106448243822395 ], [ -96.054824193649438, 30.106503243600201 ], [ -96.054773193410981, 30.10655224401771 ], [ -96.054684193825295, 30.106606243585997 ], [ -96.054647193540148, 30.106629243411586 ], [ -96.054615194293902, 30.10665724384004 ], [ -96.054590194021216, 30.106701243933735 ], [ -96.054577193870728, 30.106767244186315 ], [ -96.054583194090952, 30.106838243940295 ], [ -96.054584193541601, 30.106849243690352 ], [ -96.054603193969726, 30.106948243993823 ], [ -96.054634193767384, 30.107036244072752 ], [ -96.05463419407856, 30.10708624409914 ], [ -96.054565194147756, 30.107195244229921 ], [ -96.054481193826646, 30.107300243857861 ], [ -96.054369193701589, 30.10744324441194 ], [ -96.054312193721699, 30.107553243617147 ], [ -96.054293193505572, 30.107624244427086 ], [ -96.05429319409663, 30.107679243821327 ], [ -96.054331193812544, 30.107734244414235 ], [ -96.0543751933576, 30.10777224409545 ], [ -96.054400193768359, 30.107833244343052 ], [ -96.054596193584828, 30.108014244119339 ], [ -96.054678193889572, 30.108124243864179 ], [ -96.054824194253825, 30.108218243925368 ], [ -96.054956193845953, 30.108273244460868 ], [ -96.055020193598551, 30.108289244297833 ], [ -96.055057194408391, 30.108377243876312 ], [ -96.055064194492331, 30.108425243996173 ], [ -96.055070194317835, 30.1084652439792 ], [ -96.055076194298792, 30.108795244232951 ], [ -96.055095193963822, 30.108910244133785 ], [ -96.055108193713238, 30.10894024434349 ], [ -96.055133193546467, 30.108998243876712 ], [ -96.055247194153722, 30.109158244522405 ], [ -96.055380194565714, 30.109394244424067 ], [ -96.055550194450603, 30.109520244314659 ], [ -96.05580319426592, 30.10962524446014 ], [ -96.056075194340721, 30.109713244381254 ], [ -96.056359194590996, 30.109773244657166 ], [ -96.056499194867058, 30.10966924403586 ], [ -96.056574193940037, 30.109630244489008 ], [ -96.056857194235022, 30.109527244401647 ], [ -96.056878195009062, 30.109520244650742 ], [ -96.057086194425437, 30.109488244197273 ], [ -96.057339194685454, 30.109504244657028 ], [ -96.057497194943124, 30.109537243999267 ], [ -96.057687194250903, 30.109548243969023 ], [ -96.057794194646092, 30.109477244081209 ], [ -96.057813194947443, 30.109433243943855 ], [ -96.057851194572279, 30.109389244344062 ], [ -96.057984194321691, 30.109339244602609 ], [ -96.05805419466418, 30.10932324385611 ], [ -96.058123194363802, 30.109290244108529 ], [ -96.058313195318036, 30.109152244200573 ], [ -96.058389195009013, 30.109081244358595 ], [ -96.058401195177893, 30.109037244433935 ], [ -96.058389195387008, 30.108977244092486 ], [ -96.058325194620167, 30.1088612441688 ], [ -96.058313195179153, 30.108762244279365 ], [ -96.058332194502199, 30.10871324377749 ], [ -96.058439194495008, 30.108674243809606 ], [ -96.058585194599686, 30.108685243930363 ], [ -96.058869195306684, 30.108784243924578 ], [ -96.059223195068213, 30.108927244196053 ], [ -96.059444195252269, 30.109037243679989 ], [ -96.059520194718516, 30.109054243699088 ], [ -96.059615194809837, 30.109043243964312 ], [ -96.059703194806815, 30.10901524399296 ], [ -96.059760195665703, 30.108955244427591 ], [ -96.059792195719453, 30.10893824413462 ], [ -96.059912195074773, 30.108757243943408 ], [ -96.05994419554726, 30.108751244023669 ], [ -96.060216194900249, 30.108647243852143 ], [ -96.060393195158866, 30.108625244355864 ], [ -96.06047519526409, 30.108674243674578 ], [ -96.060500195703526, 30.108702244194692 ], [ -96.060506195308022, 30.108740244134658 ], [ -96.060475195573474, 30.10893824421283 ], [ -96.060481195821652, 30.109037244480721 ], [ -96.060544195665884, 30.109098243819254 ], [ -96.060652195730682, 30.109136244180277 ], [ -96.060715195523144, 30.109147244420871 ], [ -96.060841195230921, 30.109197243935519 ], [ -96.060873195154031, 30.10918024428879 ], [ -96.06094919509458, 30.108999243597591 ], [ -96.060993195630132, 30.108949244198854 ], [ -96.061037195505193, 30.108922243631152 ], [ -96.061347196027924, 30.10892724370818 ], [ -96.061600195216002, 30.108883243839305 ], [ -96.061663195273084, 30.108883244151368 ], [ -96.061720196033207, 30.108889244342212 ], [ -96.061872196029753, 30.108933244105749 ], [ -96.061947195365505, 30.108938244093949 ], [ -96.062023196015758, 30.108922244243335 ], [ -96.062112195979537, 30.108889244442711 ], [ -96.062333195497587, 30.108927243829047 ], [ -96.06256119556484, 30.10894424413873 ], [ -96.062643195535884, 30.108960243628701 ], [ -96.06275019560259, 30.109004244046375 ], [ -96.062832196233344, 30.109054243577383 ], [ -96.062959195816973, 30.109180244133555 ], [ -96.062990196494255, 30.109197243967078 ], [ -96.063085196273121, 30.109180244357017 ], [ -96.063155195782599, 30.109153244176088 ], [ -96.063224195707008, 30.109114244429708 ], [ -96.063281196274588, 30.10907024406238 ], [ -96.063326195960386, 30.109054244226808 ], [ -96.063395196379687, 30.109054243901813 ], [ -96.063446195726172, 30.109076243809302 ], [ -96.063465196658541, 30.10910924386053 ], [ -96.063471196373101, 30.109153243770479 ], [ -96.063452196566018, 30.109268243652998 ], [ -96.063389195999022, 30.109373244195055 ], [ -96.063300196129731, 30.109466244332122 ], [ -96.063155196510536, 30.10962524391589 ], [ -96.0630471965449, 30.109801244217408 ], [ -96.062826196145394, 30.10997224439414 ], [ -96.062719195838611, 30.110142244474517 ], [ -96.062655195577335, 30.110192244359382 ], [ -96.062579195963608, 30.110275244086576 ], [ -96.062561196386881, 30.110296244396167 ], [ -96.062535195855318, 30.110345244112146 ], [ -96.062529195541103, 30.110395244675786 ], [ -96.062548195517181, 30.110466244431354 ], [ -96.062655196376667, 30.110703244341639 ], [ -96.062706196319382, 30.110780244632053 ], [ -96.062864195590024, 30.110939244734944 ], [ -96.062940196435662, 30.110977244593659 ], [ -96.063256195887249, 30.111087244755517 ], [ -96.063629195886961, 30.1113072444663 ], [ -96.063743196100191, 30.111423244015882 ], [ -96.063799196732205, 30.111533244065214 ], [ -96.063818196694399, 30.111621244088226 ], [ -96.063825196478646, 30.111857244464879 ], [ -96.063844196678417, 30.111917244501765 ], [ -96.063875196759994, 30.111983244936223 ], [ -96.063926196336169, 30.112055244430621 ], [ -96.063989196787972, 30.112121244971529 ], [ -96.064052196396744, 30.112176244183328 ], [ -96.064109196722711, 30.112203244181526 ], [ -96.064381196977706, 30.112269244215373 ], [ -96.064608196686677, 30.112379244825132 ], [ -96.064644196488445, 30.11240224427009 ], [ -96.064817196467459, 30.112516244838918 ], [ -96.064874196310058, 30.11259324429281 ], [ -96.064931196455959, 30.112813244935776 ], [ -96.064906196293904, 30.112940244978674 ], [ -96.064921196297959, 30.113029244880284 ], [ -96.064924196821906, 30.113044244334304 ], [ -96.064931197063586, 30.113154244680505 ], [ -96.064918196557258, 30.113258245181598 ], [ -96.06489919665637, 30.113286244693811 ], [ -96.064899196676734, 30.113368244815117 ], [ -96.065994196730486, 30.113473244934173 ], [ -96.066407197545757, 30.113513244661771 ], [ -96.069278198253741, 30.113816244549756 ], [ -96.069581198254198, 30.113849245037965 ], [ -96.07038219836123, 30.11393724481481 ], [ -96.070494198152772, 30.113950244414603 ], [ -96.070715197928919, 30.113963244686172 ], [ -96.07090619819158, 30.113972245112247 ], [ -96.071123197932465, 30.113990244467473 ], [ -96.071852198061407, 30.114063245041308 ], [ -96.072155198952331, 30.114086244647734 ], [ -96.07252619922275, 30.114122244751581 ], [ -96.072798199148551, 30.114149244381657 ], [ -96.073695198708464, 30.114239245096574 ], [ -96.075252199097832, 30.114490244245701 ], [ -96.075333199333244, 30.114509244365848 ], [ -96.07539119959317, 30.114516244925049 ], [ -96.076076199393, 30.114602244813604 ], [ -96.076348199702323, 30.114651244208861 ], [ -96.076632199499727, 30.11470424434534 ], [ -96.077446200363696, 30.114851244520789 ], [ -96.078195199791281, 30.115005244347788 ], [ -96.078895200836513, 30.115155244734719 ], [ -96.078986200769137, 30.115176244767834 ], [ -96.079862200344365, 30.115385244471803 ], [ -96.080000200361155, 30.115420244465565 ], [ -96.080414200955673, 30.115525244496432 ], [ -96.080553201258056, 30.115561244736629 ], [ -96.080585200663108, 30.115411244849533 ], [ -96.080617200688593, 30.115260244193848 ], [ -96.080738200633803, 30.114689244771647 ], [ -96.081047201339871, 30.113231243851665 ], [ -96.081292200512166, 30.112072243918593 ], [ -96.08147820053297, 30.111201243756948 ], [ -96.081552200796978, 30.11088724365618 ], [ -96.081776201349356, 30.109946243786073 ], [ -96.081852201265662, 30.109633243349144 ], [ -96.081968201091357, 30.109128243737949 ], [ -96.08205320102843, 30.108550243380122 ], [ -96.082062200742016, 30.108252243461074 ], [ -96.082072200520287, 30.107921243398501 ], [ -96.081973201232387, 30.107428243211945 ], [ -96.081671200975265, 30.106556242698723 ], [ -96.08128220061252, 30.105554242458783 ], [ -96.080805200447017, 30.104269242472206 ], [ -96.080318200138379, 30.102957241960798 ], [ -96.080071199871981, 30.102240242081393 ], [ -96.079957199950087, 30.101909241558886 ], [ -96.079808200429554, 30.101495241482201 ], [ -96.079694200308438, 30.101177241630282 ], [ -96.079598199550702, 30.100696242030313 ], [ -96.079603199872238, 30.100228241225896 ], [ -96.079605200079016, 30.100043241682432 ], [ -96.079615200279591, 30.099286241152555 ], [ -96.079622199946996, 30.099105241315598 ], [ -96.079639200079228, 30.098726241270395 ], [ -96.07964520004613, 30.098563241744746 ], [ -96.079653199389981, 30.0983832408801 ], [ -96.079665200208169, 30.09819624116794 ], [ -96.079679199727948, 30.097984241118478 ], [ -96.079701199651623, 30.097636240854541 ], [ -96.079713199595687, 30.097450240941651 ], [ -96.079808199283235, 30.097453240724615 ], [ -96.080095199556908, 30.097463241486256 ], [ -96.080191200055012, 30.097467240944397 ], [ -96.08034919975951, 30.09747324074295 ], [ -96.080825199819429, 30.097491240949505 ], [ -96.080984200367908, 30.097498240844129 ], [ -96.081216200195243, 30.097505241349623 ], [ -96.081913200286451, 30.0975262414192 ], [ -96.082146199985601, 30.097534241131907 ], [ -96.082154200211406, 30.097346241189076 ], [ -96.082182200072623, 30.096784241170518 ], [ -96.082192200368453, 30.096597241129647 ], [ -96.082199200002947, 30.096409241066144 ], [ -96.082223200760495, 30.095847240703044 ], [ -96.082232200463594, 30.095660240541807 ], [ -96.082239200323841, 30.095473240289103 ], [ -96.08226220025206, 30.094914240188722 ], [ -96.082270200760604, 30.094728240713287 ], [ -96.082277199845279, 30.094545240772021 ], [ -96.082299200161032, 30.093998240725718 ], [ -96.082307199915292, 30.093816240662328 ], [ -96.082314199875739, 30.093630240154678 ], [ -96.082339200113822, 30.093072240528286 ], [ -96.082347200727796, 30.09288723989664 ], [ -96.082358200308633, 30.092696240109351 ], [ -96.082392200622309, 30.092124239709577 ], [ -96.082404199753469, 30.091934239770993 ], [ -96.082410200492902, 30.091755240030281 ], [ -96.082432200354319, 30.091219239817445 ], [ -96.082440200053966, 30.091041239960717 ], [ -96.082447200617239, 30.090855239271082 ], [ -96.082470199709647, 30.090297239855218 ], [ -96.082478199841177, 30.090112239921272 ], [ -96.082487199971652, 30.089926239237403 ], [ -96.082516199841393, 30.089371239507908 ], [ -96.082526200539562, 30.08918623960146 ], [ -96.08253519970161, 30.088995239456214 ], [ -96.082566200540597, 30.088425238795669 ], [ -96.082577199569229, 30.088235239449826 ], [ -96.08258120048481, 30.088151239273511 ], [ -96.082594200469956, 30.087902239237103 ], [ -96.082599200000161, 30.087819238935342 ], [ -96.082603200534678, 30.087717239173912 ], [ -96.082619200381089, 30.087411239084386 ], [ -96.082625199859564, 30.087310239239336 ], [ -96.082631199937239, 30.087131239172621 ], [ -96.082653200350663, 30.08659423906288 ], [ -96.082661200336787, 30.086416238901251 ], [ -96.082668200220013, 30.086233238403274 ], [ -96.082673199728362, 30.086139238509354 ], [ -96.082684200431174, 30.085861238201268 ], [ -96.082691199952379, 30.085683238843338 ], [ -96.082698200143199, 30.085504238709337 ], [ -96.08270519989712, 30.085321238145916 ], [ -96.0827301999296, 30.084774238112679 ], [ -96.082739199514634, 30.08459223835332 ], [ -96.082747200159176, 30.08441123844171 ], [ -96.08277319950065, 30.083871238286328 ], [ -96.082782199668017, 30.083691238231555 ], [ -96.082833199701795, 30.082938238001734 ], [ -96.082869199859189, 30.082776237628416 ], [ -96.082944199607297, 30.082418237490998 ], [ -96.083039199472111, 30.082060238032945 ], [ -96.083071200218527, 30.081986237484017 ], [ -96.083417199974619, 30.081210237566619 ], [ -96.08354420008007, 30.080986237751535 ], [ -96.083623199641707, 30.080845237788534 ], [ -96.083839200103327, 30.08052023764607 ], [ -96.083995199809152, 30.080317237548911 ], [ -96.084131200221364, 30.080121237636391 ], [ -96.084512200349792, 30.079744237659238 ], [ -96.085055200055265, 30.079185237377384 ], [ -96.085175200150175, 30.079064236815146 ], [ -96.085229200654098, 30.079013237019797 ], [ -96.085366200051169, 30.078880237206295 ], [ -96.085623199984241, 30.078636236892343 ], [ -96.085776200622178, 30.078480237089838 ], [ -96.08591120038642, 30.078345236940251 ], [ -96.085931200899722, 30.078323237262062 ], [ -96.085994200466203, 30.078258237192621 ], [ -96.086015200562684, 30.078237237387899 ], [ -96.086048200223061, 30.078202236760493 ], [ -96.086148200048143, 30.078099237327706 ], [ -96.086182200273115, 30.078065236573686 ], [ -96.086306200231292, 30.077935237063123 ], [ -96.086403200403424, 30.077836236919893 ], [ -96.086682200849779, 30.077549236522351 ], [ -96.086808200823953, 30.07742123723396 ], [ -96.087583200688712, 30.076653236429742 ], [ -96.088700201371211, 30.07554823626278 ], [ -96.089888201401351, 30.074327236489992 ], [ -96.089951201537161, 30.074263236273108 ], [ -96.090668201336484, 30.073563235531687 ], [ -96.091412201421193, 30.072837235339243 ], [ -96.092406201672844, 30.071832235839889 ], [ -96.093056202432962, 30.071194235027903 ], [ -96.093586201562644, 30.070659235040704 ], [ -96.094014201963546, 30.070206235519699 ], [ -96.094581202311858, 30.069583235290622 ], [ -96.095286202158263, 30.06877323467371 ], [ -96.095912202639511, 30.06809323449464 ], [ -96.096644202574566, 30.06727023405044 ], [ -96.097420203009676, 30.066354234254351 ], [ -96.097572202721381, 30.066220233855692 ], [ -96.097735203216644, 30.066037233900005 ], [ -96.097897202474527, 30.065855233669961 ], [ -96.098350203496764, 30.065346234373134 ], [ -96.099768202791694, 30.063715233861434 ], [ -96.100351203514236, 30.063108233179822 ], [ -96.102230203756378, 30.060988233049457 ], [ -96.102377203865103, 30.06082223246716 ], [ -96.102845203837731, 30.060314232614473 ], [ -96.103132203673198, 30.060003232712617 ], [ -96.103725203996163, 30.059295232833637 ], [ -96.10405220397449, 30.058914232086455 ], [ -96.10438320460247, 30.058547232048333 ], [ -96.104397204429901, 30.058531232309864 ], [ -96.104644204132398, 30.058178232459856 ], [ -96.10470720447077, 30.05808923192323 ], [ -96.104899203866637, 30.057758231874626 ], [ -96.105143203975047, 30.057375232280744 ], [ -96.105305203985878, 30.056999232452505 ], [ -96.105485203910646, 30.056585231936666 ], [ -96.105588204734659, 30.056348231699488 ], [ -96.105742204512111, 30.055883231886696 ], [ -96.105771204393349, 30.055799231786967 ], [ -96.105774204943657, 30.055784231377867 ], [ -96.105871204776818, 30.055209231552791 ], [ -96.106029204858018, 30.05365823137144 ], [ -96.106033204535564, 30.053626230979336 ], [ -96.106057204445278, 30.052911230930434 ], [ -96.106354204036307, 30.050057230397204 ], [ -96.106527204502314, 30.048613229933736 ], [ -96.106660204239475, 30.048054229859606 ], [ -96.10680620432197, 30.047432229668019 ], [ -96.107196204521813, 30.046712229495487 ], [ -96.107696204398238, 30.046089229872688 ], [ -96.108343204344465, 30.045406229671183 ], [ -96.108965204355272, 30.044857229213875 ], [ -96.109562205246448, 30.044391229284969 ], [ -96.110398205567478, 30.043730229531679 ], [ -96.110196204996001, 30.043420228815947 ], [ -96.109999204633482, 30.043119228651463 ], [ -96.109801204468639, 30.042818229199604 ], [ -96.10960520510649, 30.04252022877197 ], [ -96.107729204301734, 30.039093228609659 ], [ -96.107472203635865, 30.038623228388758 ], [ -96.107364204299401, 30.03797022805945 ], [ -96.107064203776815, 30.036154228102248 ], [ -96.10723620386058, 30.034724227684222 ], [ -96.107718204118243, 30.033257226718874 ], [ -96.108677204113562, 30.032006226757744 ], [ -96.110154204852094, 30.031080227049795 ], [ -96.112122204902846, 30.029949226377674 ], [ -96.112846204937469, 30.029538226574015 ], [ -96.113071205476615, 30.029281226416877 ], [ -96.113296204657573, 30.029033225774199 ], [ -96.113296205271212, 30.028578225790714 ], [ -96.113228205134888, 30.027002225870767 ], [ -96.11208220454246, 30.026102225624836 ], [ -96.110735204112316, 30.02584122565839 ], [ -96.108350204168175, 30.024855225180932 ], [ -96.106308203287568, 30.024911225523351 ], [ -96.104693202764736, 30.025143226002488 ], [ -96.102981202322511, 30.02569922587351 ], [ -96.101630201829195, 30.026659225616154 ], [ -96.10062220174558, 30.027542226038861 ], [ -96.099924202164431, 30.028157226795162 ], [ -96.099045201944392, 30.028072226077477 ], [ -96.098843201297598, 30.028053226690236 ], [ -96.097664201534258, 30.027988226840581 ], [ -96.09751220102099, 30.027980226713598 ], [ -96.096963201310743, 30.027753226528823 ], [ -96.096637200531575, 30.027618226428082 ], [ -96.09584820021098, 30.026950225850339 ], [ -96.094910200550913, 30.025656226354631 ], [ -96.094717200105762, 30.025389226215669 ], [ -96.09363119961175, 30.022357225566036 ], [ -96.092979199432918, 30.020337224884603 ], [ -96.092441198840788, 30.018669224706869 ], [ -96.092173199109951, 30.017913224459562 ], [ -96.090906199119772, 30.014797223924656 ], [ -96.090524198403756, 30.014043223833568 ], [ -96.088391198352213, 30.010745223111901 ], [ -96.087987197445273, 30.010181223232841 ], [ -96.087759198180422, 30.009863223099096 ], [ -96.086754197332056, 30.008456223148222 ], [ -96.085193197213883, 30.006206222454107 ], [ -96.084640197172959, 30.005294222686366 ], [ -96.084548196847521, 30.00514222230392 ], [ -96.084555196701217, 30.005034221974256 ], [ -96.084613196956937, 30.00410522181139 ], [ -96.084591196853054, 30.002851222210264 ], [ -96.084822196800445, 30.001868221948715 ], [ -96.086194196913581, 30.000079221489766 ], [ -96.086293196951601, 29.999950221255538 ], [ -96.086413197330387, 29.999955220857334 ], [ -96.086635196984432, 29.999965221008384 ], [ -96.086983197274762, 29.999734221300656 ], [ -96.087658197173127, 29.999333221217363 ], [ -96.088429197718909, 29.998943221005312 ], [ -96.08923019751343, 29.998607220708095 ], [ -96.090121197530863, 29.998393220871652 ], [ -96.090784197869297, 29.998288221019514 ], [ -96.091574197971795, 29.998223220450662 ], [ -96.093184198363588, 29.999154220616287 ], [ -96.09362019900594, 29.999406220777214 ], [ -96.094239199070842, 29.999909220455919 ], [ -96.094612199244096, 30.000212221334699 ], [ -96.095105198792382, 30.000739220934598 ], [ -96.096347199662091, 30.001777220825208 ], [ -96.097388199506639, 30.002801221170746 ], [ -96.098446200508505, 30.004052221191195 ], [ -96.098831200349721, 30.004230221636856 ], [ -96.099696200113229, 30.004301221334799 ], [ -96.100521200700825, 30.004235221934902 ], [ -96.101131200470007, 30.004062221896419 ], [ -96.101261201280479, 30.003963221080191 ], [ -96.101556201474523, 30.003738221474276 ], [ -96.101603201219319, 30.003615221423452 ], [ -96.101708200976176, 30.003346221681291 ], [ -96.101715200648329, 30.003329220935576 ], [ -96.10173520124205, 30.003282221131961 ], [ -96.101762201448324, 30.003218221477614 ], [ -96.101783201464826, 30.00316922086115 ], [ -96.10181220104586, 30.003102221304399 ], [ -96.101840201425745, 30.003030221427888 ], [ -96.101870201144749, 30.002953220943649 ], [ -96.101928201048082, 30.002804221451843 ], [ -96.101977200927877, 30.0026792212741 ], [ -96.102025200699273, 30.002555221062494 ], [ -96.102073201445577, 30.002433221559823 ], [ -96.102120201558535, 30.002311221208366 ], [ -96.10214420078573, 30.00223622097084 ], [ -96.102163200987135, 30.00217722143687 ], [ -96.1022512013149, 30.00191422121074 ], [ -96.102478201069047, 30.001048220926258 ], [ -96.102492200771508, 30.000988220961631 ], [ -96.10270320152145, 30.000227220438557 ], [ -96.104129201248625, 29.997215219703058 ], [ -96.104523201137795, 29.996383220148971 ], [ -96.104541200876184, 29.996214219989142 ], [ -96.103825201250856, 29.995028219568532 ], [ -96.103401200513545, 29.99375821932772 ], [ -96.103275200686355, 29.992931218975034 ], [ -96.102968201136775, 29.989654218154982 ], [ -96.102835200411505, 29.989229218174589 ], [ -96.102542200460277, 29.988301218134264 ], [ -96.102249200644664, 29.987373217942945 ], [ -96.102177200612402, 29.987145217932149 ], [ -96.102019200653544, 29.986645217506439 ], [ -96.101992200445537, 29.986559217700709 ], [ -96.101968199876069, 29.986515218294567 ], [ -96.101761200417215, 29.986181218020871 ], [ -96.100308199469637, 29.983815216991708 ], [ -96.098992198917799, 29.982129217347651 ], [ -96.09672819837256, 29.979487216240543 ], [ -96.095710198346879, 29.978144216064859 ], [ -96.09585519793221, 29.977382216113782 ], [ -96.095921198720646, 29.97704321623058 ], [ -96.09594519862091, 29.976922215969385 ], [ -96.095987198033669, 29.976704216252635 ], [ -96.096061198476434, 29.976624216005483 ], [ -96.09621519822177, 29.976459216475202 ], [ -96.09746219883057, 29.974855215326883 ], [ -96.100409198994129, 29.971646214962217 ], [ -96.10289019978778, 29.967766214232999 ], [ -96.102904199559063, 29.96757721380207 ], [ -96.102930200143618, 29.967567214239914 ], [ -96.102950199830971, 29.967552213791485 ], [ -96.10290520012019, 29.967183213894593 ], [ -96.102705199451535, 29.967073214049627 ], [ -96.102455199944089, 29.967002213826657 ], [ -96.102185199492141, 29.966787214297732 ], [ -96.101861199015374, 29.966609213457723 ], [ -96.101154198820069, 29.966227214020037 ], [ -96.100386198526223, 29.965950214061746 ], [ -96.098044198639073, 29.965121214132154 ], [ -96.094670197778726, 29.964310213718235 ], [ -96.093038197081796, 29.963245213297995 ], [ -96.092775197091257, 29.961493213173998 ], [ -96.094953197496011, 29.959825212851424 ], [ -96.096914198141079, 29.959845213052009 ], [ -96.098198197901795, 29.960549212360014 ], [ -96.099048198009143, 29.961109213002068 ], [ -96.100580199112542, 29.961210212640616 ], [ -96.102085199458656, 29.961310213163753 ], [ -96.102415199448259, 29.961341213216571 ], [ -96.102746199780526, 29.961372212378038 ], [ -96.103123199656068, 29.961365212625076 ], [ -96.103505199673364, 29.961359213095324 ], [ -96.103466199442451, 29.961070212612793 ], [ -96.103450199068547, 29.96095521274772 ], [ -96.103764199343317, 29.960753212242821 ], [ -96.103944199999844, 29.96000421284365 ], [ -96.105141200191909, 29.959248212599135 ], [ -96.10524819949984, 29.959183212573873 ], [ -96.105265200050667, 29.959177212260069 ], [ -96.107332200184985, 29.9593842119634 ], [ -96.107699200434908, 29.959330211845014 ], [ -96.108378200254378, 29.959716212076547 ], [ -96.109199200533936, 29.960182212348322 ], [ -96.110068201379974, 29.960882212613186 ], [ -96.110184200739639, 29.961163212535013 ], [ -96.11103320100105, 29.961742212720768 ], [ -96.114421201945916, 29.962499212899566 ], [ -96.115236203053058, 29.963094212488095 ], [ -96.11728420332544, 29.96459321284777 ], [ -96.12015220378396, 29.967104213463244 ], [ -96.12061020467192, 29.967358213019789 ], [ -96.122761204443293, 29.968550213148571 ], [ -96.123003205027771, 29.968480213189494 ], [ -96.124249204870054, 29.968118213580855 ], [ -96.124334204858727, 29.968005213738927 ], [ -96.124336205293019, 29.967989213793494 ], [ -96.124537205392187, 29.967728213052933 ], [ -96.12472920527027, 29.967469213157656 ], [ -96.125189205650855, 29.966916212840072 ], [ -96.125579205799042, 29.966342212596416 ], [ -96.125864205189643, 29.965732212480034 ], [ -96.126045204987662, 29.964974212938714 ], [ -96.126004205343051, 29.964411212304917 ], [ -96.125961205277292, 29.963829212829328 ], [ -96.125718205757806, 29.963161212365222 ], [ -96.125302204917617, 29.962456212060257 ], [ -96.125252204579098, 29.962371212256357 ], [ -96.124495205149373, 29.960403211722138 ], [ -96.12420320482471, 29.959203211434691 ], [ -96.124138204618205, 29.958967211569242 ], [ -96.123138204569202, 29.957815210938101 ], [ -96.121781204055068, 29.956523211292222 ], [ -96.120909203838792, 29.955958210910872 ], [ -96.119467202942786, 29.955022211308812 ], [ -96.119194202974668, 29.955004211145699 ], [ -96.118009202677911, 29.954918210771169 ], [ -96.114142201497771, 29.955557210879689 ], [ -96.111910201369056, 29.955715211460578 ], [ -96.109351200552965, 29.955897211903689 ], [ -96.107777200104422, 29.955692211378814 ], [ -96.107312200225977, 29.955631211597279 ], [ -96.106359199822393, 29.955505211789848 ], [ -96.106214199890843, 29.955320211048384 ], [ -96.105970199842488, 29.955011211817411 ], [ -96.105726199670343, 29.954701211254967 ], [ -96.105185199902238, 29.954070211204638 ], [ -96.104856199637553, 29.953685210750955 ], [ -96.103758199444357, 29.952407211095739 ], [ -96.10364019894368, 29.951373210418861 ], [ -96.103075198741976, 29.949692210091893 ], [ -96.103664199238523, 29.94817721003179 ], [ -96.103659199027973, 29.948126209968517 ], [ -96.103623198468398, 29.947745209681429 ], [ -96.103552198547717, 29.946991210031449 ], [ -96.103515198514245, 29.946595209920186 ], [ -96.102969198750486, 29.945974209366636 ], [ -96.102832198555575, 29.945822209748624 ], [ -96.102762199064884, 29.945744209718484 ], [ -96.102700198801003, 29.945672209430384 ], [ -96.102378198488253, 29.945313209278638 ], [ -96.102059198741742, 29.944953209932866 ], [ -96.100803198090887, 29.943531209456726 ], [ -96.101380198178632, 29.941414208742216 ], [ -96.102279198633667, 29.940910208372678 ], [ -96.103123198794478, 29.940437208740338 ], [ -96.105010199395551, 29.940344208297883 ], [ -96.105752199565444, 29.940310208263103 ], [ -96.10584319960104, 29.940310208049876 ], [ -96.106625199138051, 29.940272208439872 ], [ -96.106840199213167, 29.940312208218494 ], [ -96.106952199072239, 29.940333208754659 ], [ -96.108443199440387, 29.940635208809169 ], [ -96.11022120059981, 29.941554208642977 ], [ -96.111493200673706, 29.942253208435467 ], [ -96.11204820081177, 29.942557208871143 ], [ -96.11221920054021, 29.942651208445469 ], [ -96.112668200920197, 29.942909208520888 ], [ -96.112778201511304, 29.942972208318569 ], [ -96.112888201177284, 29.94303520890444 ], [ -96.113073201544339, 29.943141208749857 ], [ -96.113320201245713, 29.943417208524959 ], [ -96.11343820088058, 29.943549209116778 ], [ -96.113737200990983, 29.943881208854453 ], [ -96.11374520139708, 29.943899208848844 ], [ -96.113783201166257, 29.944058209014148 ], [ -96.113816201298192, 29.944103209119369 ], [ -96.114010201231523, 29.944366208941723 ], [ -96.114041201605062, 29.94445420859498 ], [ -96.114048201291808, 29.94464620927674 ], [ -96.114073201723244, 29.944789209115733 ], [ -96.114149201587011, 29.944959209212094 ], [ -96.114642201637551, 29.945481208937654 ], [ -96.114875202119364, 29.945751209181456 ], [ -96.115235201468536, 29.946141208957769 ], [ -96.115595202209974, 29.946487209435748 ], [ -96.115683202392304, 29.946547208950246 ], [ -96.11586020195837, 29.946646209298596 ], [ -96.116113201689473, 29.946750209805529 ], [ -96.116479201744596, 29.946822208998846 ], [ -96.116586202365696, 29.946855209335052 ], [ -96.117021202532186, 29.94705220949206 ], [ -96.117122201960512, 29.947118209606529 ], [ -96.117211202677623, 29.947190209631785 ], [ -96.117331202757228, 29.947261209224465 ], [ -96.117438202057272, 29.947338209763494 ], [ -96.117798202576608, 29.947459209655769 ], [ -96.118082202816979, 29.947519209386684 ], [ -96.11829720237229, 29.947624209345218 ], [ -96.118373202204339, 29.947654209108538 ], [ -96.118548202987185, 29.94772420947298 ], [ -96.118608202759702, 29.947748209146489 ], [ -96.118668202566766, 29.947785209534487 ], [ -96.119195203196114, 29.948110209688132 ], [ -96.121494203095352, 29.949194209573918 ], [ -96.122912203978586, 29.949031209231286 ], [ -96.123722204354877, 29.948552209511163 ], [ -96.124278204463153, 29.947961209808302 ], [ -96.12524420454794, 29.945840209157591 ], [ -96.125509204287695, 29.944946208886805 ], [ -96.126038204497135, 29.944281208312777 ], [ -96.126550205065371, 29.943757208379704 ], [ -96.126714204149138, 29.943464208250198 ], [ -96.127168205158114, 29.942908208211609 ], [ -96.127413204844345, 29.942644208037898 ], [ -96.127556205091921, 29.942490208245481 ], [ -96.127641205226453, 29.942416208085195 ], [ -96.127947204695388, 29.942155207688394 ], [ -96.12821520456859, 29.941918207649422 ], [ -96.128376205447211, 29.941793207917382 ], [ -96.129221205346241, 29.940969207936195 ], [ -96.129772204999895, 29.940390207592866 ], [ -96.129790204740075, 29.940385207465308 ], [ -96.130582205484245, 29.939570207725104 ], [ -96.131132205096279, 29.938736207564094 ], [ -96.131657206065114, 29.937509207372539 ], [ -96.131746205160411, 29.936734206955844 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 498, "Tract": "48201330600", "Area_SqMi": 1.4312383963665576, "total_2009": 715, "total_2010": 767, "total_2011": 870, "total_2012": 695, "total_2013": 735, "total_2014": 768, "total_2015": 817, "total_2016": 813, "total_2017": 849, "total_2018": 917, "total_2019": 1172, "total_2020": 1094, "age1": 281, "age2": 654, "age3": 328, "earn1": 276, "earn2": 627, "earn3": 360, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 55, "naics_s06": 0, "naics_s07": 288, "naics_s08": 1, "naics_s09": 1, "naics_s10": 12, "naics_s11": 112, "naics_s12": 12, "naics_s13": 0, "naics_s14": 387, "naics_s15": 0, "naics_s16": 88, "naics_s17": 0, "naics_s18": 297, "naics_s19": 7, "naics_s20": 0, "race1": 866, "race2": 241, "race3": 17, "race4": 118, "race5": 7, "race6": 14, "ethnicity1": 732, "ethnicity2": 531, "edu1": 278, "edu2": 261, "edu3": 247, "edu4": 196, "Shape_Length": 26711.21547148866, "Shape_Area": 39900476.901702687, "total_2021": 1194, "total_2022": 1263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446057016169831, 29.611736164188258 ], [ -95.44604101591041, 29.611177164328204 ], [ -95.446057016638463, 29.610452164251949 ], [ -95.446032016188411, 29.609709164081423 ], [ -95.446016015790875, 29.608985163310884 ], [ -95.446025016375486, 29.608265163743447 ], [ -95.44598201588154, 29.607522163439356 ], [ -95.445985015637277, 29.606807163058392 ], [ -95.445959016274131, 29.606106162839463 ], [ -95.445878015660369, 29.606090163002847 ], [ -95.445081015732384, 29.606097162893171 ], [ -95.444406015172888, 29.606109163296775 ], [ -95.442711014856371, 29.606129162681558 ], [ -95.441781015290132, 29.606139162782345 ], [ -95.440915014907105, 29.606148163536048 ], [ -95.440826014273426, 29.606149162917291 ], [ -95.440586014669734, 29.606161163038013 ], [ -95.44039701466906, 29.606161163499777 ], [ -95.440148014712179, 29.606162163361645 ], [ -95.439988014565159, 29.606170162670235 ], [ -95.439828014634628, 29.606164162945216 ], [ -95.439496013953203, 29.606168163200529 ], [ -95.439328013803532, 29.606174163307081 ], [ -95.439163014343123, 29.606172163126846 ], [ -95.438997013713418, 29.606177163504523 ], [ -95.438673014570711, 29.606178162936164 ], [ -95.438623013716878, 29.60617916359773 ], [ -95.438136014085742, 29.606183163320985 ], [ -95.437211013881594, 29.606192163509526 ], [ -95.436139013464199, 29.606204163423534 ], [ -95.4353560129681, 29.606211163316058 ], [ -95.434741013241251, 29.606218162853963 ], [ -95.43389801249937, 29.606228163521855 ], [ -95.433264013003395, 29.606236163651882 ], [ -95.429894011435962, 29.606275163171862 ], [ -95.429821012147741, 29.606276163380251 ], [ -95.429190011656218, 29.606281163240013 ], [ -95.428249011947628, 29.606290163763116 ], [ -95.427271010890081, 29.606301163808638 ], [ -95.426252010462164, 29.606312163737396 ], [ -95.424925011016143, 29.606336163587649 ], [ -95.424556010744539, 29.6063321639385 ], [ -95.423656010738327, 29.606338163969987 ], [ -95.422871010434079, 29.60634816342376 ], [ -95.422742009669221, 29.606356163980497 ], [ -95.422675010520749, 29.60636516419607 ], [ -95.422413010237449, 29.606351163506929 ], [ -95.421781010213593, 29.608176164178804 ], [ -95.421017010207407, 29.609989164446596 ], [ -95.42095701005681, 29.610144164285089 ], [ -95.420475009378777, 29.611383165193665 ], [ -95.419599009866246, 29.613633165737461 ], [ -95.419224009570385, 29.614569165398841 ], [ -95.418900009623741, 29.615377165583013 ], [ -95.41822400892616, 29.61705816582359 ], [ -95.418017009558397, 29.617574166285642 ], [ -95.417684009530845, 29.618433166336345 ], [ -95.417469009718417, 29.618973166349331 ], [ -95.417443009028986, 29.619039166222485 ], [ -95.417985009799935, 29.619049166937032 ], [ -95.418387009055081, 29.619110166109767 ], [ -95.421569010270787, 29.619874166192346 ], [ -95.422190010342547, 29.620044166716543 ], [ -95.422434010934566, 29.620071166333986 ], [ -95.422783011036458, 29.620064166453485 ], [ -95.42387101107289, 29.620042166497665 ], [ -95.424491011007376, 29.619861166853667 ], [ -95.42473601063746, 29.619685166695579 ], [ -95.425600011094318, 29.619061166200034 ], [ -95.425822010942397, 29.618975165878165 ], [ -95.426150011208932, 29.618970166330072 ], [ -95.426349011371173, 29.619014165912695 ], [ -95.427029012152076, 29.619467166316085 ], [ -95.427262011625999, 29.619534166495445 ], [ -95.427912011812126, 29.619471165978439 ], [ -95.429547012263626, 29.618993166185302 ], [ -95.429710012237223, 29.618991166041337 ], [ -95.430046012681345, 29.619097165995445 ], [ -95.430104011995269, 29.61912416641534 ], [ -95.430759012532647, 29.619454166591908 ], [ -95.430799012862238, 29.619467166167706 ], [ -95.431120012810808, 29.619539166188069 ], [ -95.431389012704315, 29.619456166029327 ], [ -95.431757013076336, 29.619242165662786 ], [ -95.431830012455222, 29.619200166021837 ], [ -95.432330013563487, 29.618959166102904 ], [ -95.432487013350809, 29.618923166366283 ], [ -95.432631013413427, 29.618922166288915 ], [ -95.433523013411516, 29.618914165619969 ], [ -95.434390013192441, 29.618907165492651 ], [ -95.436716014438119, 29.618887165527475 ], [ -95.437207014783098, 29.61891916568969 ], [ -95.437632014191237, 29.619023166063815 ], [ -95.438034014359474, 29.619187166198159 ], [ -95.438342014172463, 29.619362166268367 ], [ -95.438574014722178, 29.619495165689184 ], [ -95.440454014823388, 29.620438165774043 ], [ -95.440952015132964, 29.620599166279835 ], [ -95.441190015500936, 29.620616166104064 ], [ -95.441630015000342, 29.62059616640401 ], [ -95.441945015365732, 29.620517165896629 ], [ -95.44597701605052, 29.618785165636737 ], [ -95.445976016994123, 29.618717165377451 ], [ -95.445949015978542, 29.616110164808255 ], [ -95.445897016174328, 29.613335164656167 ], [ -95.44603101630058, 29.612165164197549 ], [ -95.446057016169831, 29.611736164188258 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 499, "Tract": "48201330700", "Area_SqMi": 2.4033087812894842, "total_2009": 586, "total_2010": 543, "total_2011": 600, "total_2012": 1025, "total_2013": 1122, "total_2014": 1184, "total_2015": 681, "total_2016": 609, "total_2017": 654, "total_2018": 559, "total_2019": 657, "total_2020": 687, "age1": 160, "age2": 577, "age3": 283, "earn1": 55, "earn2": 159, "earn3": 806, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 71, "naics_s05": 494, "naics_s06": 103, "naics_s07": 79, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 17, "naics_s14": 41, "naics_s15": 79, "naics_s16": 0, "naics_s17": 5, "naics_s18": 4, "naics_s19": 122, "naics_s20": 0, "race1": 794, "race2": 139, "race3": 9, "race4": 57, "race5": 3, "race6": 18, "ethnicity1": 622, "ethnicity2": 398, "edu1": 193, "edu2": 216, "edu3": 247, "edu4": 204, "Shape_Length": 36814.59106790962, "Shape_Area": 67000135.518262669, "total_2021": 728, "total_2022": 1020 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.46501702049396, 29.59968616096641 ], [ -95.465052020936852, 29.599604161000379 ], [ -95.460250019300403, 29.597259160841102 ], [ -95.458726019084295, 29.596538160879806 ], [ -95.458198018862376, 29.596298160914383 ], [ -95.456708018260926, 29.595621160221615 ], [ -95.456526018382675, 29.595538160756679 ], [ -95.45638601821905, 29.595472160820517 ], [ -95.456297017934858, 29.595430160066876 ], [ -95.456272018513118, 29.595418160120481 ], [ -95.455632017734231, 29.595117159964175 ], [ -95.45532901754315, 29.594974160471821 ], [ -95.455187017825338, 29.594907160235689 ], [ -95.455110017640152, 29.594871159944631 ], [ -95.455096017396698, 29.594864160540507 ], [ -95.45488201756973, 29.594760160156167 ], [ -95.453751017649395, 29.594228160357552 ], [ -95.453262017067914, 29.594024160278479 ], [ -95.452088016476736, 29.593534160485561 ], [ -95.451860016449771, 29.593426160388947 ], [ -95.451616016493901, 29.59331116032185 ], [ -95.451449016820348, 29.593232160513548 ], [ -95.451264016731216, 29.593144159813669 ], [ -95.451173016985209, 29.59310015989832 ], [ -95.450649016867828, 29.592848159905987 ], [ -95.450452017007194, 29.592753159774102 ], [ -95.450130016863, 29.592587159796377 ], [ -95.448831015699994, 29.591915159851961 ], [ -95.448520015884384, 29.591754159874764 ], [ -95.44787601610544, 29.59142116007154 ], [ -95.447400015399481, 29.591176159766302 ], [ -95.447326016100007, 29.591138160139661 ], [ -95.446977015268899, 29.590983160153755 ], [ -95.446346015244814, 29.590703159826408 ], [ -95.446277015789718, 29.590672160065182 ], [ -95.445437014722216, 29.59029915945068 ], [ -95.440422013440212, 29.588070159124033 ], [ -95.440388013883876, 29.588055159780097 ], [ -95.440253013545757, 29.587995159081657 ], [ -95.440115013554461, 29.587933159294803 ], [ -95.438109013237067, 29.586908159145704 ], [ -95.437146013099152, 29.586416159390424 ], [ -95.435797012737424, 29.58572615944281 ], [ -95.435625012542289, 29.585638159480219 ], [ -95.431524011235368, 29.583826158754874 ], [ -95.431325011347766, 29.583738158498281 ], [ -95.431206010967585, 29.583647158793998 ], [ -95.431069011704722, 29.58354315839178 ], [ -95.431034011568684, 29.583514158911434 ], [ -95.431023011572222, 29.583562158548634 ], [ -95.430953011267732, 29.583838158442564 ], [ -95.430978011674526, 29.584203159351702 ], [ -95.430981011384617, 29.584239159321424 ], [ -95.430949011246938, 29.584885159366987 ], [ -95.430791010963503, 29.585442158879967 ], [ -95.430689010742427, 29.585803158837216 ], [ -95.430675011266473, 29.585835159420157 ], [ -95.429694010662942, 29.588037160161413 ], [ -95.429304011222953, 29.589055159818486 ], [ -95.428689010917296, 29.590659160042019 ], [ -95.428270010733257, 29.591751160412013 ], [ -95.428096010985357, 29.592313160845098 ], [ -95.427923010989076, 29.593043160503193 ], [ -95.427735010390393, 29.593720161302976 ], [ -95.427517010478141, 29.594480161071846 ], [ -95.427155011161702, 29.595376161264912 ], [ -95.427087010319312, 29.595507161605475 ], [ -95.426574010297301, 29.596759161775193 ], [ -95.426441010464245, 29.597076161727152 ], [ -95.426403010193255, 29.597188161695943 ], [ -95.42629001039252, 29.597485161347823 ], [ -95.425846010229833, 29.59862616196942 ], [ -95.425778010838243, 29.598758161869164 ], [ -95.425586010886448, 29.599238162248707 ], [ -95.425276010158896, 29.600005161994776 ], [ -95.424973010743287, 29.600698162311595 ], [ -95.424218010540216, 29.602090163100012 ], [ -95.423880010121778, 29.602716162983707 ], [ -95.423273009951274, 29.604200162933953 ], [ -95.422976009793999, 29.605073163840611 ], [ -95.422772009645612, 29.605555163731669 ], [ -95.422486010060467, 29.60623516378115 ], [ -95.422413010237449, 29.606351163506929 ], [ -95.422675010520749, 29.60636516419607 ], [ -95.422742009669221, 29.606356163980497 ], [ -95.422871010434079, 29.60634816342376 ], [ -95.423656010738327, 29.606338163969987 ], [ -95.424556010744539, 29.6063321639385 ], [ -95.424925011016143, 29.606336163587649 ], [ -95.426252010462164, 29.606312163737396 ], [ -95.427271010890081, 29.606301163808638 ], [ -95.428249011947628, 29.606290163763116 ], [ -95.429190011656218, 29.606281163240013 ], [ -95.429821012147741, 29.606276163380251 ], [ -95.429894011435962, 29.606275163171862 ], [ -95.433264013003395, 29.606236163651882 ], [ -95.43389801249937, 29.606228163521855 ], [ -95.434741013241251, 29.606218162853963 ], [ -95.4353560129681, 29.606211163316058 ], [ -95.436139013464199, 29.606204163423534 ], [ -95.437211013881594, 29.606192163509526 ], [ -95.438136014085742, 29.606183163320985 ], [ -95.438623013716878, 29.60617916359773 ], [ -95.438673014570711, 29.606178162936164 ], [ -95.438997013713418, 29.606177163504523 ], [ -95.439163014343123, 29.606172163126846 ], [ -95.439328013803532, 29.606174163307081 ], [ -95.439496013953203, 29.606168163200529 ], [ -95.439828014634628, 29.606164162945216 ], [ -95.439988014565159, 29.606170162670235 ], [ -95.440148014712179, 29.606162163361645 ], [ -95.44039701466906, 29.606161163499777 ], [ -95.440586014669734, 29.606161163038013 ], [ -95.440826014273426, 29.606149162917291 ], [ -95.440915014907105, 29.606148163536048 ], [ -95.441781015290132, 29.606139162782345 ], [ -95.442711014856371, 29.606129162681558 ], [ -95.444406015172888, 29.606109163296775 ], [ -95.445081015732384, 29.606097162893171 ], [ -95.445878015660369, 29.606090163002847 ], [ -95.445959016274131, 29.606106162839463 ], [ -95.446520016304419, 29.606093163233535 ], [ -95.446951015758557, 29.60608316310844 ], [ -95.449062016858477, 29.606033162825216 ], [ -95.450939017544997, 29.606021162624472 ], [ -95.450986017243963, 29.606020162607866 ], [ -95.4520180175289, 29.606003162949129 ], [ -95.454990018290758, 29.605964162773574 ], [ -95.456369019121013, 29.60592916279143 ], [ -95.45682301863981, 29.605930162471704 ], [ -95.457008018485638, 29.605927162364981 ], [ -95.457249018768934, 29.605920162921866 ], [ -95.457808019040186, 29.605907162404154 ], [ -95.458021018902784, 29.605903162753002 ], [ -95.459683019531255, 29.605873162579257 ], [ -95.464250020273184, 29.605826161797328 ], [ -95.464725020605457, 29.605799162290527 ], [ -95.464715021029406, 29.60479616231904 ], [ -95.464583020414324, 29.603964161815504 ], [ -95.464480021080064, 29.603127161954291 ], [ -95.464467020878033, 29.602313161080886 ], [ -95.464460020999553, 29.601647161490064 ], [ -95.464498020645891, 29.601214161272889 ], [ -95.46459202025531, 29.600671160705513 ], [ -95.464746020630969, 29.600266161460407 ], [ -95.464783020086088, 29.600154161429664 ], [ -95.464943020560128, 29.599849160642659 ], [ -95.46501702049396, 29.59968616096641 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 500, "Tract": "48321730503", "Area_SqMi": 142.81339676267001, "total_2009": 64, "total_2010": 1468, "total_2011": 760, "total_2012": 74, "total_2013": 71, "total_2014": 1211, "total_2015": 1647, "total_2016": 216, "total_2017": 368, "total_2018": 1215, "total_2019": 63, "total_2020": 39, "age1": 12, "age2": 41, "age3": 16, "earn1": 24, "earn2": 19, "earn3": 26, "naics_s01": 16, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 3, "naics_s06": 0, "naics_s07": 20, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 8, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 9, "naics_s19": 1, "naics_s20": 0, "race1": 60, "race2": 3, "race3": 0, "race4": 2, "race5": 0, "race6": 4, "ethnicity1": 52, "ethnicity2": 17, "edu1": 15, "edu2": 22, "edu3": 18, "edu4": 2, "Shape_Length": 355279.00038128527, "Shape_Area": 3981393074.1718349, "total_2021": 64, "total_2022": 69 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.794553074783423, 28.881741001931267 ], [ -95.794435073916205, 28.881671001943658 ], [ -95.793464074113288, 28.881322002206264 ], [ -95.79269507365882, 28.880909001875207 ], [ -95.792124073558483, 28.880387001950744 ], [ -95.791399073856653, 28.880259001956077 ], [ -95.791023072928368, 28.880125002226073 ], [ -95.790639073121639, 28.879989001884013 ], [ -95.790379072743008, 28.879846001900678 ], [ -95.789638073165122, 28.879323002105838 ], [ -95.789350072942057, 28.879059002343048 ], [ -95.789270072943211, 28.878938001595813 ], [ -95.789226073136604, 28.878829001972832 ], [ -95.789147072916535, 28.878484001743754 ], [ -95.789130072852259, 28.878259002187338 ], [ -95.789214072921311, 28.877972001932964 ], [ -95.78923607252004, 28.877927002116703 ], [ -95.789469073049631, 28.877443001516578 ], [ -95.789905072617145, 28.877042001390887 ], [ -95.79082907306794, 28.876569001037545 ], [ -95.790894072886871, 28.876407001714739 ], [ -95.790877073560026, 28.87616700162398 ], [ -95.790754072946157, 28.875853001077473 ], [ -95.790536072668274, 28.875425001199176 ], [ -95.790412072563441, 28.875117000673047 ], [ -95.790397073079703, 28.874334001178521 ], [ -95.790280073228786, 28.873702001082087 ], [ -95.790109072466791, 28.87326400045519 ], [ -95.789897072686998, 28.872621000520851 ], [ -95.789897072220228, 28.872357000557958 ], [ -95.78983507302479, 28.871643000231881 ], [ -95.789728072517391, 28.871428000185968 ], [ -95.789647072973466, 28.871307000642371 ], [ -95.789466072401126, 28.871109000384987 ], [ -95.789329072114512, 28.870889000652621 ], [ -95.789248072680081, 28.870833999942572 ], [ -95.789229071987705, 28.870801000577273 ], [ -95.789235072504269, 28.870741000454476 ], [ -95.789304072709868, 28.870647999862808 ], [ -95.789260072047114, 28.870465999796512 ], [ -95.78923507235946, 28.8704279998666 ], [ -95.789341072768309, 28.870119999662347 ], [ -95.789404072934403, 28.869768000234753 ], [ -95.78946607247488, 28.869602999909524 ], [ -95.789572072984768, 28.869394000001908 ], [ -95.789660072770673, 28.869294999740795 ], [ -95.78979107268708, 28.869201999839838 ], [ -95.789841072373974, 28.869130000285153 ], [ -95.789854072557134, 28.869048000211308 ], [ -95.789866072956414, 28.869026000173712 ], [ -95.790185073117399, 28.868954000196766 ], [ -95.790353072599984, 28.868887999582732 ], [ -95.790385072563936, 28.868822999420718 ], [ -95.79037807217253, 28.868707000136979 ], [ -95.79041607318463, 28.868624999335513 ], [ -95.790509072201203, 28.86834399947967 ], [ -95.790466072326126, 28.868283999639637 ], [ -95.790291072843956, 28.868145999906531 ], [ -95.790241072601859, 28.868124000057769 ], [ -95.790235072166851, 28.868085999960197 ], [ -95.790260072425738, 28.868024999293027 ], [ -95.790366072170386, 28.86788799985754 ], [ -95.790534072833282, 28.867623999145938 ], [ -95.790647072961605, 28.867326999438657 ], [ -95.790734073012302, 28.867161999674014 ], [ -95.790734072265025, 28.867040998944567 ], [ -95.790691072620959, 28.866573999154404 ], [ -95.790503072985402, 28.866078999471306 ], [ -95.790428072152324, 28.865963999197056 ], [ -95.790410072879268, 28.865847999519282 ], [ -95.790404072334098, 28.865512999047422 ], [ -95.790385072940765, 28.865358999140124 ], [ -95.790285072964551, 28.865149999025942 ], [ -95.790160072588208, 28.865067999447863 ], [ -95.78989807190095, 28.864753999194356 ], [ -95.789886072380085, 28.86473899898921 ], [ -95.789792072779051, 28.864671999013225 ], [ -95.789723072844879, 28.864649999182962 ], [ -95.78963607249419, 28.864605999034552 ], [ -95.789592072210795, 28.86455699920214 ], [ -95.789417072392055, 28.864286999028845 ], [ -95.789405072624817, 28.864248999195389 ], [ -95.789348072497248, 28.864160998558191 ], [ -95.789255072371844, 28.864072998747304 ], [ -95.789124071728295, 28.863984999165766 ], [ -95.788974071918247, 28.863901998686178 ], [ -95.788693071784735, 28.863797999107049 ], [ -95.7884680722577, 28.863742998662502 ], [ -95.788049071479847, 28.863725999128405 ], [ -95.787762071358699, 28.86369899886531 ], [ -95.787594071712036, 28.863626998522527 ], [ -95.787475071623021, 28.863522998508884 ], [ -95.78731907190398, 28.863423998888077 ], [ -95.787182071800373, 28.863351998595398 ], [ -95.786663071868219, 28.863192998453052 ], [ -95.786569071330462, 28.863148998387892 ], [ -95.786470071736815, 28.863120998411809 ], [ -95.786388071726989, 28.863043998325896 ], [ -95.786289070948143, 28.862911998571377 ], [ -95.786157071540657, 28.862494998807062 ], [ -95.786089071334288, 28.862131998240887 ], [ -95.786008071734258, 28.862004998728445 ], [ -95.785895071771506, 28.861922998297143 ], [ -95.78583307154318, 28.86183999870666 ], [ -95.785808071021762, 28.861713998555068 ], [ -95.785839071305517, 28.861636998408816 ], [ -95.785945071186461, 28.861482998575941 ], [ -95.785933070877476, 28.861400998640857 ], [ -95.785895070799086, 28.861361998257909 ], [ -95.785883071376986, 28.861328998064938 ], [ -95.785883071284772, 28.861273998167075 ], [ -95.785939071647718, 28.861075998239816 ], [ -95.785870071549382, 28.860877998283897 ], [ -95.785789071573717, 28.860542998445531 ], [ -95.785750071345191, 28.86049899818974 ], [ -95.785639070735087, 28.860372998299763 ], [ -95.785608071598134, 28.860300997972409 ], [ -95.78554607150113, 28.859965998317037 ], [ -95.785515070580388, 28.859849998180096 ], [ -95.785396070911801, 28.859607997664632 ], [ -95.78538107118176, 28.859542997612248 ], [ -95.78533407065045, 28.859338997942867 ], [ -95.785308071395818, 28.859280998287613 ], [ -95.785265070617641, 28.859184998261803 ], [ -95.785234070805686, 28.859008998176371 ], [ -95.785221071301251, 28.858992997505997 ], [ -95.785153070860176, 28.858887998217575 ], [ -95.785065070465905, 28.858821997459554 ], [ -95.784990071097113, 28.858744997960066 ], [ -95.784953070841169, 28.858673997699725 ], [ -95.784922071036632, 28.858414998023417 ], [ -95.784853070396593, 28.857782997423005 ], [ -95.784847070466853, 28.857502997967234 ], [ -95.784471070318446, 28.856371997611433 ], [ -95.78422607028358, 28.856153996958575 ], [ -95.784022070504548, 28.856081997466848 ], [ -95.783039070145207, 28.856043997709978 ], [ -95.782835069836153, 28.85597099708054 ], [ -95.781034069804534, 28.855930997527725 ], [ -95.780584070033399, 28.855857997577584 ], [ -95.780011069336339, 28.855675997602333 ], [ -95.779929069139456, 28.855603997772921 ], [ -95.778824068797206, 28.855492996923005 ], [ -95.778620069024342, 28.855383997684367 ], [ -95.778456068690005, 28.855383997804548 ], [ -95.777638068991294, 28.855092997704865 ], [ -95.776697068142411, 28.85505499756793 ], [ -95.776165068427431, 28.854944997700315 ], [ -95.774814067800563, 28.854941997741395 ], [ -95.774733068383597, 28.854869997240908 ], [ -95.773505067399768, 28.854794997039821 ], [ -95.773137067642168, 28.85450499705534 ], [ -95.770681066881608, 28.854535997526384 ], [ -95.770109066966398, 28.854064997173268 ], [ -95.770030066850779, 28.852876996735951 ], [ -95.76998006676726, 28.852705997003305 ], [ -95.7698740665993, 28.852557997059023 ], [ -95.769824066320197, 28.85242599714708 ], [ -95.769824067120453, 28.852232997156953 ], [ -95.76984306654397, 28.852002996652878 ], [ -95.769824067165899, 28.851870997004163 ], [ -95.769749067206263, 28.85172199701065 ], [ -95.769344067110978, 28.851435996656406 ], [ -95.769200066212974, 28.851270996552969 ], [ -95.769100066445219, 28.85111199636567 ], [ -95.769000066788792, 28.850918997109396 ], [ -95.768894066291097, 28.850660996962365 ], [ -95.768726066078301, 28.850319996773276 ], [ -95.76867006606065, 28.850072996365245 ], [ -95.768739066474623, 28.849764996839756 ], [ -95.768857066031785, 28.849517996428474 ], [ -95.768889066657309, 28.849429996167128 ], [ -95.768926066028612, 28.849099996582702 ], [ -95.769051066389409, 28.848747996431534 ], [ -95.76915106596482, 28.848582996213949 ], [ -95.769257066120844, 28.848445996273284 ], [ -95.769526066270174, 28.848148996520958 ], [ -95.769663066953541, 28.848016995750481 ], [ -95.769776066082798, 28.847873995777178 ], [ -95.769826066572179, 28.847763995843632 ], [ -95.769844067004499, 28.847681996257638 ], [ -95.769838066505741, 28.847510996030195 ], [ -95.769851066502198, 28.847329995766327 ], [ -95.769851066927785, 28.847120995555354 ], [ -95.769901066242625, 28.84680199625954 ], [ -95.769888067029868, 28.846713996209232 ], [ -95.769845066840119, 28.846664995691739 ], [ -95.769789066200616, 28.846625995798167 ], [ -95.769608066231314, 28.84658799570256 ], [ -95.769539066665843, 28.846559995637445 ], [ -95.769464066685742, 28.846504995386042 ], [ -95.769224066244078, 28.846418995902248 ], [ -95.768927066789004, 28.846312995647768 ], [ -95.768527066669094, 28.846125995669102 ], [ -95.768272065693623, 28.845993995609383 ], [ -95.768172065800229, 28.845954995740808 ], [ -95.768066065998752, 28.845949995908587 ], [ -95.767828066411298, 28.845954995997257 ], [ -95.767772065869039, 28.84591599613038 ], [ -95.767678066461102, 28.84587799587969 ], [ -95.767522066402634, 28.845855995907886 ], [ -95.767148066035077, 28.845541995582355 ], [ -95.767035065503364, 28.845431995726742 ], [ -95.766842065640091, 28.845327995373587 ], [ -95.766642065322003, 28.845233995820099 ], [ -95.766393065807975, 28.845063995797307 ], [ -95.76619906561065, 28.844887995735252 ], [ -95.766099065654714, 28.844854995359391 ], [ -95.765487065704491, 28.844744995182594 ], [ -95.764632065060397, 28.844524995137807 ], [ -95.763983065362126, 28.844238995643899 ], [ -95.763764065141856, 28.844095995348191 ], [ -95.763627064939129, 28.843974995924341 ], [ -95.763558065048016, 28.843858995431024 ], [ -95.763521064344516, 28.843677995544184 ], [ -95.763508064958643, 28.843479995248778 ], [ -95.76351506434365, 28.843330994901368 ], [ -95.763540065073485, 28.843149995009803 ], [ -95.763590064799843, 28.843006994839183 ], [ -95.763808064536477, 28.842781995504733 ], [ -95.763846064580179, 28.842671995037279 ], [ -95.7639210647135, 28.842616995531682 ], [ -95.764121064432317, 28.842577994763467 ], [ -95.764833065547847, 28.842517995587077 ], [ -95.766312065850471, 28.842589995460564 ], [ -95.767648065671636, 28.842600994774291 ], [ -95.768029066240231, 28.842485994655593 ], [ -95.76815406604203, 28.842474994622524 ], [ -95.768273065899479, 28.842507994610834 ], [ -95.768622066233789, 28.842557995228017 ], [ -95.769116066088259, 28.84261299516487 ], [ -95.769596066644354, 28.842590995205729 ], [ -95.76980906659368, 28.842563994744353 ], [ -95.77002706621947, 28.84247599519999 ], [ -95.77008306624019, 28.842392995344522 ], [ -95.770102066555182, 28.842321994997103 ], [ -95.770190066191631, 28.842244994588707 ], [ -95.770296066922995, 28.842238995346406 ], [ -95.770527066743142, 28.842288995131884 ], [ -95.77060206614334, 28.842288994733828 ], [ -95.770733066693978, 28.842244994995653 ], [ -95.770914066190031, 28.842096995036073 ], [ -95.770970066284846, 28.842008994822582 ], [ -95.771289066573445, 28.841788995113028 ], [ -95.771345066220718, 28.841727995145902 ], [ -95.771345066696043, 28.84168999455612 ], [ -95.771301066870379, 28.841617994868439 ], [ -95.771033066948604, 28.841392994600493 ], [ -95.770989066358496, 28.841337994268919 ], [ -95.770958066167012, 28.84124999441315 ], [ -95.770939066878327, 28.84110699471271 ], [ -95.770977066556441, 28.840919994616382 ], [ -95.771108066105455, 28.840435994717645 ], [ -95.771158066578195, 28.840364994287196 ], [ -95.771245066707351, 28.840325994813917 ], [ -95.771495066666773, 28.840260994442019 ], [ -95.771907066505065, 28.840073994717002 ], [ -95.772088067031277, 28.839974994107191 ], [ -95.772301067410908, 28.839831993984721 ], [ -95.772394067100947, 28.839842994343837 ], [ -95.772519066557322, 28.83990899435523 ], [ -95.772613066741656, 28.839947994177827 ], [ -95.772706067053804, 28.839952994142191 ], [ -95.77288106736998, 28.83990899475495 ], [ -95.772919067507431, 28.839842994536255 ], [ -95.772931067473237, 28.839677994395625 ], [ -95.773050067076738, 28.83944199451965 ], [ -95.773200066651455, 28.839237994512398 ], [ -95.773300066732091, 28.83916199419582 ], [ -95.773406067125379, 28.839155994350293 ], [ -95.773575067029213, 28.839166994579386 ], [ -95.773643067567576, 28.839095993722665 ], [ -95.773718067045053, 28.83891399378723 ], [ -95.773725067395773, 28.838842993912905 ], [ -95.773693067594365, 28.838820994164752 ], [ -95.773512067145433, 28.838748993807442 ], [ -95.77338106717491, 28.838715993913251 ], [ -95.7733060672265, 28.838682994323168 ], [ -95.773306066844384, 28.838611994054986 ], [ -95.773344067097625, 28.838561993933926 ], [ -95.77355606664328, 28.838391994284379 ], [ -95.773656066846641, 28.83827699386995 ], [ -95.773725067451807, 28.838166993957071 ], [ -95.773775067570028, 28.838050994364433 ], [ -95.773956067572925, 28.8375229938082 ], [ -95.774018066917776, 28.837374993698933 ], [ -95.774093067265895, 28.837088993705354 ], [ -95.774168067404531, 28.836885993387991 ], [ -95.774256067322682, 28.836588993898008 ], [ -95.774275067088311, 28.836456993705955 ], [ -95.774250066973281, 28.836082993743513 ], [ -95.774262067316116, 28.836022993647134 ], [ -95.774575067616468, 28.835703993567115 ], [ -95.774693067153663, 28.835566993302717 ], [ -95.7747810678527, 28.835401993106217 ], [ -95.774806066985903, 28.835208993021475 ], [ -95.774756067840713, 28.835076993137367 ], [ -95.774662067611771, 28.834972992886634 ], [ -95.774631067780447, 28.834917993592416 ], [ -95.774594067472492, 28.834834993303275 ], [ -95.774575067243774, 28.834752993522162 ], [ -95.774681067108418, 28.834433992878353 ], [ -95.774650067736275, 28.834213993467944 ], [ -95.774656067358549, 28.834037992649044 ], [ -95.77465006689728, 28.833966992894748 ], [ -95.774675067456982, 28.833883992957301 ], [ -95.774719067501422, 28.833790993234643 ], [ -95.774925067705468, 28.833565993070149 ], [ -95.775218067225254, 28.83328499303024 ], [ -95.775281067220831, 28.833213992777921 ], [ -95.775300067295348, 28.832927992580128 ], [ -95.775356067591304, 28.832767993039511 ], [ -95.775418067021931, 28.832641992773176 ], [ -95.775487067749069, 28.832586993021227 ], [ -95.775637067193998, 28.832394992794839 ], [ -95.775918067509451, 28.832080992772713 ], [ -95.776230067987882, 28.831795992751061 ], [ -95.776417067279056, 28.831679992962247 ], [ -95.776611067635798, 28.831602992104067 ], [ -95.776717067607137, 28.831597992688504 ], [ -95.776811067812744, 28.831547992550977 ], [ -95.776855067371287, 28.831509992194349 ], [ -95.776942068030138, 28.831509992676288 ], [ -95.777029068199255, 28.8315369925533 ], [ -95.777104067424176, 28.831520992096998 ], [ -95.777154067874193, 28.831454992324879 ], [ -95.777154067322172, 28.831399992301748 ], [ -95.777167068097597, 28.831350992090762 ], [ -95.777242067690892, 28.831333992291324 ], [ -95.777398067685453, 28.831333992700308 ], [ -95.777498067922437, 28.831295992743353 ], [ -95.777616068189118, 28.831174992105677 ], [ -95.777660068332096, 28.831102992588956 ], [ -95.777704068234897, 28.830987992509783 ], [ -95.7777600675211, 28.830954992413584 ], [ -95.777841067825861, 28.830882992575866 ], [ -95.77809706767691, 28.830734991902009 ], [ -95.77823406768259, 28.830564992498719 ], [ -95.778409068075007, 28.830388992249521 ], [ -95.778628068124817, 28.830201992131649 ], [ -95.778659067776886, 28.830108991761229 ], [ -95.778665068583891, 28.830020992392758 ], [ -95.778615068018027, 28.829915991636572 ], [ -95.778559067847382, 28.829844992248635 ], [ -95.778478067908495, 28.82980599233607 ], [ -95.778310067728128, 28.829690991742783 ], [ -95.778247067882674, 28.829624992079896 ], [ -95.778172067767997, 28.829464992051417 ], [ -95.7781100680252, 28.829365991673384 ], [ -95.777829068141202, 28.829079992382173 ], [ -95.777748068195493, 28.829019991821927 ], [ -95.777617067780156, 28.828964991855429 ], [ -95.777392067383587, 28.828947991947636 ], [ -95.777124067430137, 28.828947991803354 ], [ -95.776275067502951, 28.82883299227829 ], [ -95.775875067334425, 28.828623991974961 ], [ -95.775607067199772, 28.828452992084372 ], [ -95.775326067576231, 28.828238992192823 ], [ -95.77483906707289, 28.827743992096394 ], [ -95.774564067401613, 28.827558991661686 ], [ -95.774446066854935, 28.827479992113908 ], [ -95.774171066845582, 28.82728199207574 ], [ -95.773666066683134, 28.826890991453457 ], [ -95.773447066680703, 28.826742991214171 ], [ -95.773322066441281, 28.826555991377486 ], [ -95.772898066515452, 28.826110991110461 ], [ -95.772761066067929, 28.826033991632016 ], [ -95.772499066617485, 28.825780991561615 ], [ -95.772368066102786, 28.825604991328792 ], [ -95.77223706579889, 28.825461991545954 ], [ -95.772074066330021, 28.825334991082968 ], [ -95.771906066046057, 28.825224991071757 ], [ -95.771725065728546, 28.825081991003699 ], [ -95.771425066304289, 28.82478499100414 ], [ -95.77095106559257, 28.824460990880791 ], [ -95.770857066344064, 28.824410991154799 ], [ -95.770757065382824, 28.824372991099622 ], [ -95.770651065349185, 28.824278991013678 ], [ -95.770414065384173, 28.824031990950203 ], [ -95.769965065285348, 28.823630990880581 ], [ -95.769722065087961, 28.823333990575009 ], [ -95.769459065919889, 28.823113991136651 ], [ -95.769210065510364, 28.822931991200257 ], [ -95.768698064982885, 28.822618990643559 ], [ -95.768561065463203, 28.82246999066421 ], [ -95.768399064691593, 28.822233990759766 ], [ -95.768030065406407, 28.821908990577789 ], [ -95.767793065006785, 28.821683990470277 ], [ -95.767594064516629, 28.821435991043124 ], [ -95.767469064717389, 28.82133199055388 ], [ -95.766901064823813, 28.820957991035343 ], [ -95.76676606521292, 28.820853990966526 ], [ -95.766702064504386, 28.820804990436063 ], [ -95.766601064392546, 28.820726990675862 ], [ -95.766464064208421, 28.820588990398861 ], [ -95.766046064863573, 28.820363990936649 ], [ -95.765653064594247, 28.820187990679237 ], [ -95.765297064133193, 28.81993499013868 ], [ -95.765054063812798, 28.819730990600448 ], [ -95.764960064723567, 28.81967599012696 ], [ -95.764841064005864, 28.819560990388911 ], [ -95.764698064096251, 28.819488990418218 ], [ -95.764529064350057, 28.819483990023233 ], [ -95.764404064157162, 28.819549990648763 ], [ -95.764280064333647, 28.819554990796348 ], [ -95.764155063832519, 28.81935699052746 ], [ -95.764055064260944, 28.819219990560867 ], [ -95.763893063594992, 28.819081990163959 ], [ -95.763805064074333, 28.818905990078527 ], [ -95.763762063916587, 28.818850990654507 ], [ -95.763525063896381, 28.818779990098282 ], [ -95.763331064004745, 28.8186919898973 ], [ -95.762819064015531, 28.81839499035728 ], [ -95.762370063072296, 28.818163990073501 ], [ -95.762020063209476, 28.818025989933705 ], [ -95.761827063666033, 28.817932990184904 ], [ -95.76167106345865, 28.817833989751449 ], [ -95.761565063256171, 28.817734990152736 ], [ -95.761315062983556, 28.81764099006854 ], [ -95.761197063515212, 28.81760799034906 ], [ -95.761078062882945, 28.817536989780947 ], [ -95.760947062929304, 28.817420990447832 ], [ -95.760903063555688, 28.817349989797055 ], [ -95.760797063506999, 28.817266989803066 ], [ -95.760641062948139, 28.817189990357132 ], [ -95.760329063236014, 28.817129990231773 ], [ -95.760198062468703, 28.817085989860402 ], [ -95.759961062336529, 28.816980990043646 ], [ -95.759867062624224, 28.81695399009282 ], [ -95.759518062706533, 28.816820989549957 ], [ -95.759225062328071, 28.816749989933246 ], [ -95.759143062707523, 28.816672989702681 ], [ -95.758944062973654, 28.816600990188029 ], [ -95.758682062372714, 28.816479990367252 ], [ -95.758507062650793, 28.816430990034569 ], [ -95.75825106286706, 28.816287990063902 ], [ -95.757995062308979, 28.816199989817175 ], [ -95.757933062510347, 28.816155989543976 ], [ -95.757814061985329, 28.815968989751727 ], [ -95.757677061844589, 28.815836990112416 ], [ -95.757452062067173, 28.815781990142508 ], [ -95.757284062139675, 28.815698989433184 ], [ -95.757215061986841, 28.815638989978176 ], [ -95.75717806158157, 28.815539989491892 ], [ -95.757028062083734, 28.815297989737797 ], [ -95.756959061705217, 28.815220989690758 ], [ -95.756847061672616, 28.815170989491303 ], [ -95.756491061772422, 28.815093989842303 ], [ -95.756423061819746, 28.815033990018939 ], [ -95.756466061518978, 28.81489098951393 ], [ -95.75644106188345, 28.814730989949098 ], [ -95.75645406179639, 28.814560989877567 ], [ -95.756448061463558, 28.814477989461096 ], [ -95.75629806171105, 28.814241989911991 ], [ -95.756267061888224, 28.81395598912464 ], [ -95.756167061614804, 28.81379698957296 ], [ -95.75613606151768, 28.813658989120508 ], [ -95.756186062096901, 28.813559989209118 ], [ -95.756380062131001, 28.813416988974584 ], [ -95.756448061903797, 28.813334989582369 ], [ -95.756486061722697, 28.813219989474526 ], [ -95.756542062136319, 28.813114989586548 ], [ -95.756717062357993, 28.812900989047954 ], [ -95.756979061676887, 28.812603989529599 ], [ -95.757017061652419, 28.812466988828586 ], [ -95.757092061895435, 28.812345989530819 ], [ -95.757198061505719, 28.81227398921774 ], [ -95.757504061707451, 28.812158988757083 ], [ -95.757691062471437, 28.812020989101494 ], [ -95.757785062251145, 28.811933989467882 ], [ -95.757879061705637, 28.811746989303877 ], [ -95.75796006242237, 28.811526988687532 ], [ -95.758010061624034, 28.811333988780124 ], [ -95.757966061821406, 28.810905988654721 ], [ -95.757898062372021, 28.810723988634525 ], [ -95.757642061557434, 28.810338988329075 ], [ -95.757461061536702, 28.810206988717269 ], [ -95.75729306217616, 28.810140988256983 ], [ -95.757105061560125, 28.81009198868291 ], [ -95.757081061728726, 28.810089988782572 ], [ -95.756843061407579, 28.810074988727056 ], [ -95.756637062034443, 28.810167988526196 ], [ -95.756013061665769, 28.810563988377929 ], [ -95.755713061508416, 28.810794989203679 ], [ -95.755601061528182, 28.810970989164051 ], [ -95.755488061460667, 28.811102988923366 ], [ -95.755338061234269, 28.811206988975144 ], [ -95.755107061168815, 28.811310988601775 ], [ -95.754870061258515, 28.811349988869001 ], [ -95.75460206109895, 28.811371988669027 ], [ -95.754458061031301, 28.81139398920854 ], [ -95.754321061123946, 28.811431988594279 ], [ -95.75399606117945, 28.811717989512339 ], [ -95.753734060774562, 28.811970989524795 ], [ -95.753365060858627, 28.812250988825397 ], [ -95.752754061000431, 28.812673989139501 ], [ -95.752310061125442, 28.812997989042007 ], [ -95.752173061155929, 28.813074989042381 ], [ -95.751911060193081, 28.813173989407169 ], [ -95.75164806063971, 28.813255989643967 ], [ -95.751374060987203, 28.813387989499603 ], [ -95.750930059938781, 28.813689989860116 ], [ -95.750830059958503, 28.813777989809012 ], [ -95.750774060620003, 28.813892989334704 ], [ -95.750730059913622, 28.814085989269412 ], [ -95.750643060685874, 28.814266989770722 ], [ -95.750537059841818, 28.814453989327323 ], [ -95.75046205983908, 28.814557990103445 ], [ -95.750324059928261, 28.814695989653377 ], [ -95.750010060180742, 28.814800990184963 ], [ -95.74989806057981, 28.814827990320982 ], [ -95.749804060432794, 28.814816989728275 ], [ -95.749704060194304, 28.814717989993014 ], [ -95.749604060187565, 28.81456999004121 ], [ -95.749498060308781, 28.814465989449147 ], [ -95.749423060204478, 28.814410989690714 ], [ -95.749267059985002, 28.814349989504528 ], [ -95.749129060275607, 28.814349989994135 ], [ -95.749023059989526, 28.814366989990067 ], [ -95.748930060318557, 28.814404989946116 ], [ -95.748786059691099, 28.814487989562807 ], [ -95.748705060013606, 28.814597989818665 ], [ -95.748649059545869, 28.814767989768033 ], [ -95.748606059643706, 28.814943989670596 ], [ -95.748475060146902, 28.81516999026092 ], [ -95.74839405991969, 28.815218989735126 ], [ -95.748269060040911, 28.81526299013683 ], [ -95.747607059727727, 28.815362990309957 ], [ -95.747214059847906, 28.815378990161978 ], [ -95.747108059283434, 28.815340990066218 ], [ -95.747033059800799, 28.815274990502637 ], [ -95.74689505974591, 28.815071990292271 ], [ -95.746845059420266, 28.814977990424694 ], [ -95.746820059113759, 28.814895989774229 ], [ -95.746752059598222, 28.814812989575692 ], [ -95.746695059794149, 28.814779990257545 ], [ -95.746608059384897, 28.814768990122758 ], [ -95.746546059385125, 28.81481899031208 ], [ -95.746415059764317, 28.814889989639763 ], [ -95.746271058821989, 28.814928990054469 ], [ -95.745946059027915, 28.814961990432661 ], [ -95.745503058735835, 28.814923989747808 ], [ -95.745310059428206, 28.814939989614164 ], [ -95.745035058802827, 28.814978989720696 ], [ -95.744854058684851, 28.815033989871527 ], [ -95.744567059162662, 28.815154990089752 ], [ -95.744224059139796, 28.815374989944232 ], [ -95.743956058229898, 28.81551299041627 ], [ -95.743750058664844, 28.815567989788583 ], [ -95.743562058653836, 28.815556990038338 ], [ -95.742826058166614, 28.815573989823434 ], [ -95.742501058049385, 28.815606989963737 ], [ -95.742420058150913, 28.815600989936801 ], [ -95.742301058522045, 28.815556989931704 ], [ -95.742045058008316, 28.815331990448257 ], [ -95.741977058337014, 28.815282990526548 ], [ -95.741852057811414, 28.815282990166462 ], [ -95.741821057911153, 28.815337989893738 ], [ -95.74123505847372, 28.81543999068592 ], [ -95.740826057912457, 28.815113989904663 ], [ -95.740254057248961, 28.815003990188806 ], [ -95.739682057953232, 28.81471298982251 ], [ -95.739396057434604, 28.814712990518512 ], [ -95.738945057823187, 28.815072990417317 ], [ -95.738699057723494, 28.815144990190923 ], [ -95.738371056943606, 28.815143990324508 ], [ -95.738044057674784, 28.815250990531446 ], [ -95.737348057192662, 28.815249990595575 ], [ -95.737103057221233, 28.815031990297292 ], [ -95.737022057202097, 28.814814990168365 ], [ -95.736859056673765, 28.81466999031457 ], [ -95.736573057051331, 28.81466899017558 ], [ -95.73636805707217, 28.814849990590787 ], [ -95.736247056229217, 28.814848990099875 ], [ -95.736204057054849, 28.814848990038911 ], [ -95.735809056160107, 28.814652990239466 ], [ -95.735428056078348, 28.814289990274933 ], [ -95.735066056656478, 28.814086990458652 ], [ -95.734516055828351, 28.813702990546133 ], [ -95.734111056470184, 28.813570990093762 ], [ -95.733755056417081, 28.813432990410309 ], [ -95.733393056319386, 28.813235989717054 ], [ -95.73286205606945, 28.813295989848427 ], [ -95.73262505577938, 28.813229990228631 ], [ -95.732525055637097, 28.81317599023388 ], [ -95.732369055761197, 28.813048989790055 ], [ -95.732319055642463, 28.812916990383609 ], [ -95.732275055618658, 28.812680989672291 ], [ -95.732244055985205, 28.81257099002206 ], [ -95.73215605545947, 28.812433990292693 ], [ -95.73199405509996, 28.812251990015852 ], [ -95.731494055530206, 28.811916989664265 ], [ -95.731438055140401, 28.81185099019272 ], [ -95.731107055277093, 28.811533989418013 ], [ -95.730855055624005, 28.811293990048558 ], [ -95.730895055620294, 28.81091698933389 ], [ -95.731138055657937, 28.810773989783915 ], [ -95.731348055261336, 28.810716989903856 ], [ -95.731759055493555, 28.810355989358662 ], [ -95.731882055123066, 28.810138989836236 ], [ -95.731924055794408, 28.809849989110582 ], [ -95.732334055314723, 28.809489989560035 ], [ -95.732867056061906, 28.809310989629221 ], [ -95.733726055353685, 28.809276989273478 ], [ -95.734095056158907, 28.808951988908163 ], [ -95.734137056193461, 28.808626988892275 ], [ -95.734301056028713, 28.808446989311591 ], [ -95.73446605553211, 28.808048988816328 ], [ -95.734509056324427, 28.807325988915597 ], [ -95.734757056339959, 28.806639989046875 ], [ -95.735208055841838, 28.806207988429009 ], [ -95.735456056609664, 28.805520988175029 ], [ -95.735703056033941, 28.805087988699526 ], [ -95.736441056754799, 28.804402988466126 ], [ -95.736647056045371, 28.80404198784781 ], [ -95.736689056065131, 28.803788988338678 ], [ -95.736895056360495, 28.803319987652799 ], [ -95.737736056563534, 28.802616988039041 ], [ -95.737760056710712, 28.80126198758008 ], [ -95.738047056965911, 28.800972987238815 ], [ -95.738334057154177, 28.80079298712964 ], [ -95.738458056604472, 28.800467987152341 ], [ -95.738459057044338, 28.800142987117628 ], [ -95.738133057030112, 28.799779986743324 ], [ -95.7381340564406, 28.799454986663722 ], [ -95.738299056797189, 28.799165986611282 ], [ -95.738299056963925, 28.79887698687298 ], [ -95.738177056127, 28.798695986739784 ], [ -95.7381780568316, 28.798406987209166 ], [ -95.739326057208714, 28.797577986539508 ], [ -95.7398580568819, 28.797470986430344 ], [ -95.740718056619244, 28.797111986802399 ], [ -95.741375057686056, 28.79642598618052 ], [ -95.741907057839228, 28.796246986148045 ], [ -95.742399057838043, 28.795850985957095 ], [ -95.742522057053407, 28.795814986443272 ], [ -95.742768057207698, 28.795597985963727 ], [ -95.74293305787053, 28.795345985815217 ], [ -95.743099058106907, 28.794622986248775 ], [ -95.743222057652716, 28.79436998587482 ], [ -95.743264057476068, 28.794189985922678 ], [ -95.743224058073153, 28.793719985619017 ], [ -95.74249005790719, 28.793066985503547 ], [ -95.742491057628897, 28.792813985805132 ], [ -95.742655057308411, 28.792669985508603 ], [ -95.743105057826497, 28.792526985882091 ], [ -95.743269057845566, 28.792526985814277 ], [ -95.743558057327249, 28.792416985116891 ], [ -95.743702058065665, 28.792407985017643 ], [ -95.74386205787431, 28.792243985202528 ], [ -95.743973057522709, 28.791879984924229 ], [ -95.743914057857864, 28.791700985183631 ], [ -95.743713057303268, 28.791409984852599 ], [ -95.743268057113099, 28.791036984824721 ], [ -95.743192057981346, 28.790941985123425 ], [ -95.743192057016543, 28.790682985061718 ], [ -95.743685057948795, 28.790250985156753 ], [ -95.743767057205673, 28.790105984606917 ], [ -95.743768057858375, 28.789852985011393 ], [ -95.74352305767232, 28.789598985086926 ], [ -95.743237057909369, 28.789489984474105 ], [ -95.742911056898123, 28.789199984831409 ], [ -95.742912057570464, 28.788910984732144 ], [ -95.743158056912122, 28.788694985049499 ], [ -95.743240057579712, 28.788513984415573 ], [ -95.743241057153256, 28.788188984755873 ], [ -95.743037057434449, 28.788043984950363 ], [ -95.742750057165594, 28.788078984849214 ], [ -95.742178056971653, 28.788041984644998 ], [ -95.741852057322603, 28.78775198406214 ], [ -95.74182705671123, 28.787472984793283 ], [ -95.741819057500734, 28.787391984373116 ], [ -95.741812057258386, 28.787317984520921 ], [ -95.74173005737866, 28.787244984253867 ], [ -95.742590056954015, 28.786957983863338 ], [ -95.743287057038742, 28.786344984591665 ], [ -95.743370057066116, 28.786200983829101 ], [ -95.743331057668271, 28.785441984386104 ], [ -95.743456056929247, 28.784863983758758 ], [ -95.743661057410989, 28.784466984170706 ], [ -95.744524057226585, 28.783202983853254 ], [ -95.744648057939131, 28.782769983298909 ], [ -95.744812057778617, 28.782516982927458 ], [ -95.744813057533946, 28.7822999829406 ], [ -95.7450590574974, 28.782083982969191 ], [ -95.74575405827413, 28.782085983233511 ], [ -95.746040057410568, 28.782194983346386 ], [ -95.746695057759851, 28.782268983604094 ], [ -95.747512058741549, 28.782450983016073 ], [ -95.748165058199177, 28.782813983677773 ], [ -95.748369058722119, 28.782995983507359 ], [ -95.748491058471402, 28.78324898316631 ], [ -95.748448058322424, 28.783898983686282 ], [ -95.74799705814759, 28.784476984070778 ], [ -95.747382058724227, 28.78494498378198 ], [ -95.74623505779104, 28.78533998388577 ], [ -95.745825057925529, 28.785700984048653 ], [ -95.745743057795863, 28.785844983687277 ], [ -95.745783058436999, 28.786314983897046 ], [ -95.745946058062628, 28.78645998434386 ], [ -95.746272057957896, 28.786605983791006 ], [ -95.747172057904734, 28.786643983756083 ], [ -95.747826058843572, 28.786789983860093 ], [ -95.748481058590457, 28.786790984366732 ], [ -95.748767058962542, 28.786719984319308 ], [ -95.749095059144665, 28.786430984143738 ], [ -95.749342059233655, 28.785997983627361 ], [ -95.749507058997452, 28.785528983412213 ], [ -95.749550059133114, 28.784769983986884 ], [ -95.749305058957646, 28.784479983571003 ], [ -95.749307059270578, 28.78408198350002 ], [ -95.74988105861442, 28.783540983003999 ], [ -95.750007058705151, 28.783532983485475 ], [ -95.750139058988509, 28.783533983510779 ], [ -95.75022105933725, 28.783461983060494 ], [ -95.750240059330082, 28.783461983417371 ], [ -95.75099805874963, 28.7834639829737 ], [ -95.75144805972927, 28.7835739836352 ], [ -95.752061059943756, 28.783610983732373 ], [ -95.752470059565908, 28.783539983699605 ], [ -95.75308406006954, 28.783323983600535 ], [ -95.753166059475745, 28.783324983194955 ], [ -95.753453059524887, 28.783180983362936 ], [ -95.754230060131846, 28.783181983209523 ], [ -95.755047060302857, 28.783436983564986 ], [ -95.755579060181901, 28.783438983494232 ], [ -95.755824060898235, 28.783366983450406 ], [ -95.756357060730338, 28.782969983218546 ], [ -95.75648106052482, 28.782753983182349 ], [ -95.756523060385689, 28.782355982746093 ], [ -95.756852060210491, 28.781669983007923 ], [ -95.756895060416582, 28.780765982890216 ], [ -95.756937061051403, 28.780657982778756 ], [ -95.757429061072614, 28.780152982304447 ], [ -95.757920060844086, 28.779936981978476 ], [ -95.758411060776766, 28.779937982023625 ], [ -95.759106061632608, 28.780120982213578 ], [ -95.759882060912517, 28.78041198211633 ], [ -95.760700061824977, 28.780376982119932 ], [ -95.761069061458315, 28.780196982419312 ], [ -95.761315061341364, 28.779980982172841 ], [ -95.76156106169303, 28.779655982236754 ], [ -95.761849062204433, 28.77907798169581 ], [ -95.762302062278906, 28.7779229816541 ], [ -95.76226306180827, 28.777379982109171 ], [ -95.761650061306284, 28.77694498136206 ], [ -95.761038061589375, 28.776762981803209 ], [ -95.760383060824736, 28.77676198119336 ], [ -95.758827061361828, 28.777372981758663 ], [ -95.75821406092976, 28.777370981505189 ], [ -95.757969060910483, 28.777297982283052 ], [ -95.757642060651946, 28.777080981843422 ], [ -95.756786060003208, 28.77631998153905 ], [ -95.756419059929328, 28.775703981857156 ], [ -95.756381060083299, 28.774908981157662 ], [ -95.756545060451899, 28.77461998146142 ], [ -95.756750060024714, 28.774439980990788 ], [ -95.756955060555455, 28.774331980911139 ], [ -95.757282060059111, 28.774295981667084 ], [ -95.758510060448288, 28.773792981206938 ], [ -95.758756061008157, 28.773756981256572 ], [ -95.759737061526806, 28.773759981258152 ], [ -95.759942060749424, 28.773831980887689 ], [ -95.76075906136019, 28.77390598103673 ], [ -95.761331061295508, 28.774051980716603 ], [ -95.761658061951962, 28.774197980734669 ], [ -95.761944061192011, 28.77445098125277 ], [ -95.762310061309961, 28.775210981418944 ], [ -95.762390061616784, 28.775825981600516 ], [ -95.762675062135031, 28.776332981868809 ], [ -95.763042062488282, 28.776658981433091 ], [ -95.76353206233938, 28.776840981623341 ], [ -95.764023062306336, 28.776841981129294 ], [ -95.764678061906025, 28.776625981799022 ], [ -95.765169062389759, 28.776337981122996 ], [ -95.7656610629531, 28.775832981471655 ], [ -95.765867062438119, 28.775399981504084 ], [ -95.765868062309238, 28.774965980750199 ], [ -95.765461062294406, 28.774386980723648 ], [ -95.765380062538028, 28.774024981240292 ], [ -95.76513606262067, 28.773517980834729 ], [ -95.764810061806315, 28.77322898045491 ], [ -95.764320062316017, 28.773010980761264 ], [ -95.764033062137628, 28.773009980961362 ], [ -95.763501062282529, 28.773152980589078 ], [ -95.762602061795491, 28.773114981197423 ], [ -95.762071061431016, 28.772679981019451 ], [ -95.761990061136544, 28.772534981059234 ], [ -95.761909061053103, 28.77231798047125 ], [ -95.761910061631184, 28.771847980903964 ], [ -95.762116061512813, 28.771450980582138 ], [ -95.762608061870466, 28.77105497998846 ], [ -95.76330306224061, 28.770911980055761 ], [ -95.76465306227081, 28.770950980666932 ], [ -95.765715062853801, 28.771169979925592 ], [ -95.76628706213809, 28.771387980589957 ], [ -95.767349063303172, 28.772040980702716 ], [ -95.767635062647315, 28.77211398019125 ], [ -95.768487062848166, 28.771805980271388 ], [ -95.769079063249606, 28.771591979994859 ], [ -95.769355062869579, 28.771141980265952 ], [ -95.769643063487777, 28.770310979983428 ], [ -95.770178064008576, 28.769226979477999 ], [ -95.770221063288929, 28.768323979320126 ], [ -95.770142063735904, 28.767310979505581 ], [ -95.770021063175463, 28.766949979207745 ], [ -95.769898062871206, 28.766768979028825 ], [ -95.769042062878952, 28.76604397885675 ], [ -95.768920063065991, 28.765753978646803 ], [ -95.768961063344989, 28.765500978674254 ], [ -95.769289063161679, 28.765212978872817 ], [ -95.769739063603026, 28.765104978659558 ], [ -95.770067063803552, 28.765105978921259 ], [ -95.77018906378855, 28.765033979136959 ], [ -95.770557063697183, 28.765034978698186 ], [ -95.77117106330364, 28.764782978750166 ], [ -95.772114063889887, 28.763916978223637 ], [ -95.772360063761553, 28.763772978438219 ], [ -95.773628064417878, 28.763558978198049 ], [ -95.773996064559356, 28.763450978472171 ], [ -95.774365064714758, 28.763198978785255 ], [ -95.774570064775361, 28.762945978717177 ], [ -95.774859064606062, 28.762042978363244 ], [ -95.775475064318897, 28.761176977588928 ], [ -95.77588606426545, 28.760381977963256 ], [ -95.77588606457293, 28.760092977414153 ], [ -95.775805064201137, 28.759947978034418 ], [ -95.775479064021397, 28.759549977706893 ], [ -95.775112064832911, 28.759223977860888 ], [ -95.77405106430443, 28.758317977027581 ], [ -95.773765064183507, 28.758172977558559 ], [ -95.773356064320822, 28.758171977703501 ], [ -95.77290606334671, 28.758314977587492 ], [ -95.772211063414275, 28.758385977156113 ], [ -95.771393062880648, 28.758564977720816 ], [ -95.77045206279108, 28.758562977099398 ], [ -95.769717063042947, 28.758271977870901 ], [ -95.768287062765353, 28.757871977652425 ], [ -95.767757062662852, 28.757472977604092 ], [ -95.767553062643387, 28.757182977721403 ], [ -95.767514062292335, 28.756640977040416 ], [ -95.767761062164325, 28.756098976902177 ], [ -95.768212062541181, 28.755701977247895 ], [ -95.768457062948045, 28.755630976691865 ], [ -95.769030062173059, 28.75530697736416 ], [ -95.770014063151564, 28.75447697674279 ], [ -95.770178063004849, 28.754260977087291 ], [ -95.770301062477245, 28.753971977005161 ], [ -95.770303063257785, 28.753248976913373 ], [ -95.770182062887628, 28.752886976327694 ], [ -95.76977506234698, 28.752126976263181 ], [ -95.769367062952526, 28.751763976425732 ], [ -95.769081062732837, 28.751618976212796 ], [ -95.768550061997487, 28.751508976073499 ], [ -95.768019062535629, 28.751290975866951 ], [ -95.767530061717039, 28.750856976266245 ], [ -95.767367061725594, 28.750602975675225 ], [ -95.767359061619842, 28.750405976042199 ], [ -95.767332061520591, 28.749766975668834 ], [ -95.767306061855535, 28.749721975805105 ], [ -95.766965061410403, 28.749129975691307 ], [ -95.758450060137875, 28.749345975942997 ], [ -95.753041057875706, 28.749416975907568 ], [ -95.748346057052515, 28.748281975912896 ], [ -95.748044057001636, 28.748140975826967 ], [ -95.745994056571959, 28.747434976259949 ], [ -95.745666056633937, 28.74724697588946 ], [ -95.742809055312676, 28.7461359757975 ], [ -95.740165054564031, 28.744832976022188 ], [ -95.739018054623699, 28.744083975696494 ], [ -95.737610054187385, 28.743277975175193 ], [ -95.733269052831702, 28.741254975050502 ], [ -95.730715051801724, 28.740095974680404 ], [ -95.726877051199764, 28.739858974974812 ], [ -95.71043504775777, 28.745239976606523 ], [ -95.709870046806444, 28.745397976787125 ], [ -95.709873047069181, 28.745269976549405 ], [ -95.709938046790057, 28.744566976249434 ], [ -95.70983404764732, 28.744641976287944 ], [ -95.709271047475056, 28.744703976734399 ], [ -95.709084046970901, 28.744750976364394 ], [ -95.708862047072017, 28.744829976724645 ], [ -95.70869404737843, 28.744925976524637 ], [ -95.708600046363287, 28.744911976978365 ], [ -95.708469047334461, 28.744947976421443 ], [ -95.708376047003725, 28.74502497691887 ], [ -95.708350046666709, 28.745089976421667 ], [ -95.708302047226397, 28.745115976712786 ], [ -95.708163047031576, 28.745136976609182 ], [ -95.708040047158448, 28.745114976813753 ], [ -95.707919046593418, 28.745124976811507 ], [ -95.707786046411968, 28.74518797635616 ], [ -95.707713046893531, 28.745246976340479 ], [ -95.707525046655547, 28.745192977070243 ], [ -95.707441046251745, 28.745195976372351 ], [ -95.707319046556961, 28.745247976408816 ], [ -95.707254046694786, 28.745289976379301 ], [ -95.707237046500651, 28.745356976488594 ], [ -95.707174046765772, 28.745424976997345 ], [ -95.706903046043919, 28.745505976972233 ], [ -95.706769045952342, 28.745524976383166 ], [ -95.706547046045998, 28.745586976845829 ], [ -95.706464046804996, 28.745697977339169 ], [ -95.706409046369131, 28.745739976909771 ], [ -95.706269046339713, 28.745769977072346 ], [ -95.70599104654282, 28.745924976661527 ], [ -95.705897045771948, 28.745944977378802 ], [ -95.705587046398037, 28.746014977347095 ], [ -95.7054190465266, 28.746083976848567 ], [ -95.705261046431204, 28.746120977176364 ], [ -95.705082046500195, 28.746147977374321 ], [ -95.704811046244117, 28.746169976929465 ], [ -95.704680045411934, 28.746240976832599 ], [ -95.70464304589305, 28.746241976948539 ], [ -95.704547045734998, 28.746169976677077 ], [ -95.704348045335607, 28.746107977023556 ], [ -95.704198046220469, 28.746110976791933 ], [ -95.704085045421991, 28.746130977244455 ], [ -95.703977045484947, 28.746118977295268 ], [ -95.703955045772403, 28.746101977129559 ], [ -95.703974045729581, 28.746029977336253 ], [ -95.703999046136502, 28.746013976951659 ], [ -95.704192045947181, 28.745991976742584 ], [ -95.704329045376383, 28.745985976630731 ], [ -95.704529045885451, 28.745892977009945 ], [ -95.704616045687473, 28.745864976908081 ], [ -95.704678045540035, 28.745864976925564 ], [ -95.704753046142955, 28.745848977131644 ], [ -95.705059045976384, 28.745727977179993 ], [ -95.705115045926846, 28.745716976571263 ], [ -95.705215046428066, 28.745721976863567 ], [ -95.7054580462747, 28.745496977023564 ], [ -95.705651046173912, 28.745397976763389 ], [ -95.700405044103334, 28.734557974455733 ], [ -95.699791043793567, 28.733198974085866 ], [ -95.699645043709992, 28.732854973978295 ], [ -95.699498043708587, 28.732511974283693 ], [ -95.697031043038322, 28.727583973619254 ], [ -95.696995043185936, 28.727507972975264 ], [ -95.696958043513462, 28.727432973799463 ], [ -95.697002043553056, 28.727471973172879 ], [ -95.696900042837882, 28.726657973059655 ], [ -95.696489042947078, 28.726304973005572 ], [ -95.696407042788238, 28.726105972983209 ], [ -95.696265043193193, 28.725815973418275 ], [ -95.695956042634563, 28.725182973310023 ], [ -95.668558036351612, 28.740272977040082 ], [ -95.659841034497305, 28.74471397798759 ], [ -95.658944033802783, 28.745246978091998 ], [ -95.657213033552921, 28.747803979116025 ], [ -95.65673303349557, 28.747972978471473 ], [ -95.655194033355514, 28.747972978940943 ], [ -95.65372003343586, 28.748337979341532 ], [ -95.633850028722904, 28.758256981658754 ], [ -95.610905022723813, 28.76994298524701 ], [ -95.596155019546558, 28.777251987106574 ], [ -95.588231017340831, 28.781218988113721 ], [ -95.586962017094933, 28.78201398837912 ], [ -95.586644017429307, 28.782092988310556 ], [ -95.586100016916163, 28.782172987789846 ], [ -95.585103016656333, 28.782887988593391 ], [ -95.581067015579194, 28.785152989241162 ], [ -95.564915012572854, 28.793378991631748 ], [ -95.554542009270477, 28.798663992369811 ], [ -95.554280009766131, 28.798797993110036 ], [ -95.554280010114653, 28.799248992484976 ], [ -95.553499009255788, 28.799716992641972 ], [ -95.552793009317782, 28.800401993136102 ], [ -95.552355009663088, 28.800668993152939 ], [ -95.551249009353228, 28.801253993310834 ], [ -95.549495008342802, 28.801971993327147 ], [ -95.548484008154432, 28.80193899364313 ], [ -95.539351006385289, 28.806900995236226 ], [ -95.516856001055658, 28.819065998387075 ], [ -95.506999998994544, 28.824497999822398 ], [ -95.507092998927348, 28.825005999253349 ], [ -95.50719899829582, 28.825373999976708 ], [ -95.507312998355019, 28.825765999436761 ], [ -95.507273998897304, 28.825814999354645 ], [ -95.50713099907361, 28.826452999588476 ], [ -95.506768998668406, 28.827203999974753 ], [ -95.506260998247441, 28.82777800024639 ], [ -95.505439997906848, 28.827998000102347 ], [ -95.504627998553389, 28.828203000734995 ], [ -95.50441799852149, 28.82830000003705 ], [ -95.504181998375188, 28.828444000434295 ], [ -95.504081997756302, 28.828655000620671 ], [ -95.504156998016484, 28.828937000562878 ], [ -95.504259998107358, 28.829259001007525 ], [ -95.504526998312429, 28.829840000423399 ], [ -95.504529997823482, 28.829875000494503 ], [ -95.504598998082187, 28.830828001143338 ], [ -95.504600997963436, 28.831606000943456 ], [ -95.504428998044247, 28.8321880015768 ], [ -95.504065998709819, 28.832786000958841 ], [ -95.503887998305601, 28.8336670011048 ], [ -95.503895998042665, 28.834933001960739 ], [ -95.503959998736875, 28.83632500186129 ], [ -95.504018998903035, 28.837522002250349 ], [ -95.50410299874099, 28.837740001979764 ], [ -95.504148997964862, 28.83776100225348 ], [ -95.504433998814847, 28.837893001983058 ], [ -95.504983998318522, 28.837907002461954 ], [ -95.507261999301136, 28.837429002115861 ], [ -95.508681999395804, 28.837131001719897 ], [ -95.509826000338734, 28.836812001971921 ], [ -95.510146999884611, 28.83672200160234 ], [ -95.510819999731254, 28.836534001487188 ], [ -95.511288000651405, 28.836404002070449 ], [ -95.51137400055002, 28.836380001581421 ], [ -95.511385000422791, 28.836377001875483 ], [ -95.511403000715035, 28.836372001442779 ], [ -95.511493000009736, 28.836347001894822 ], [ -95.51196600034271, 28.836215001898658 ], [ -95.512725000682423, 28.836003001339709 ], [ -95.513114000977296, 28.835895001553848 ], [ -95.515986001133967, 28.835114001652176 ], [ -95.518262001939576, 28.834581001562285 ], [ -95.518600002094374, 28.834502000816812 ], [ -95.520529001981259, 28.834012001008496 ], [ -95.521105002295457, 28.833995000579364 ], [ -95.521891002694147, 28.833855000965833 ], [ -95.522814002956068, 28.833247000724537 ], [ -95.530478004407911, 28.829103000094147 ], [ -95.531018005333109, 28.829068999305825 ], [ -95.531711005147045, 28.829480999347975 ], [ -95.531897005320673, 28.829590999714863 ], [ -95.532540005733296, 28.82972600016431 ], [ -95.532647005128212, 28.829747999504235 ], [ -95.532735005630187, 28.829765999962557 ], [ -95.532753005003713, 28.829769999737191 ], [ -95.532983005158584, 28.829816999475192 ], [ -95.533213005642395, 28.829864999961142 ], [ -95.533334005394124, 28.829889999411794 ], [ -95.533557005353074, 28.829937999766386 ], [ -95.533633005660477, 28.829968999983187 ], [ -95.533713005301692, 28.830006999724635 ], [ -95.533794005718605, 28.830045999603918 ], [ -95.534289005473624, 28.830268999820625 ], [ -95.53437700629739, 28.830308999948748 ], [ -95.534464005439062, 28.830347999810932 ], [ -95.534619006183817, 28.830417999914793 ], [ -95.53467000605751, 28.830440999570435 ], [ -95.534760006423824, 28.830481999505633 ], [ -95.534870006119817, 28.830624999645874 ], [ -95.534976006223062, 28.830763999969147 ], [ -95.535003006281968, 28.830800000069573 ], [ -95.535137006442568, 28.830975000264978 ], [ -95.535178006295482, 28.830963999613722 ], [ -95.535294005792423, 28.83092500034757 ], [ -95.535453006438658, 28.830871000054326 ], [ -95.535848006249722, 28.830962000050437 ], [ -95.53601900675892, 28.83107699970601 ], [ -95.535995006590724, 28.831560999613057 ], [ -95.535771006201429, 28.831977000146694 ], [ -95.53572900620884, 28.832053999746712 ], [ -95.535632006491966, 28.832274999872389 ], [ -95.535723006109123, 28.832360000518825 ], [ -95.535739005863419, 28.83237499998938 ], [ -95.535748006609282, 28.832401000031389 ], [ -95.535793006606085, 28.832426000236449 ], [ -95.535970006302222, 28.832616000165974 ], [ -95.536221006889235, 28.832685000191038 ], [ -95.536658006785771, 28.832796000307241 ], [ -95.536864006688532, 28.832845000373261 ], [ -95.537092006258462, 28.832904000333023 ], [ -95.537277006566725, 28.832922000725574 ], [ -95.537461006380212, 28.832940000044506 ], [ -95.537563006722181, 28.832950000191456 ], [ -95.538039006426985, 28.832926000034934 ], [ -95.538256006580426, 28.832915999804591 ], [ -95.538261007422761, 28.8329060005094 ], [ -95.538365007332757, 28.832681000497683 ], [ -95.53838400724662, 28.832341000200522 ], [ -95.53847800695614, 28.83219100017077 ], [ -95.538488006479625, 28.831831999908513 ], [ -95.538608006911048, 28.831549000406365 ], [ -95.538744007514538, 28.831445000303294 ], [ -95.539116006688872, 28.831491000278227 ], [ -95.539691007173133, 28.831627999910982 ], [ -95.539784006927036, 28.831635999850551 ], [ -95.539868007814803, 28.831639999872156 ], [ -95.539949007571479, 28.831618999619486 ], [ -95.539995007665794, 28.831607000267518 ], [ -95.540013006921143, 28.83158500005575 ], [ -95.54004800758149, 28.831566999688235 ], [ -95.540249007414758, 28.831464999718683 ], [ -95.540360007197691, 28.831460000278682 ], [ -95.540371007132066, 28.831458999589554 ], [ -95.540374007602296, 28.831448999555395 ], [ -95.540415007024805, 28.831321000065831 ], [ -95.541102007165563, 28.830453999444128 ], [ -95.541407007184901, 28.830379999241668 ], [ -95.541728008179746, 28.830470999450874 ], [ -95.541861007996886, 28.830822999654679 ], [ -95.541697007938708, 28.831584999952472 ], [ -95.541812008108039, 28.83214600000418 ], [ -95.541891008254822, 28.832263000121284 ], [ -95.541956007750599, 28.832316999694196 ], [ -95.54200900840307, 28.832361999649098 ], [ -95.542147008325514, 28.83239500047409 ], [ -95.542428008002418, 28.832496999629804 ], [ -95.542899008352492, 28.832592000332731 ], [ -95.542947008057752, 28.832602000382234 ], [ -95.543170008113279, 28.832648000102733 ], [ -95.543467008114291, 28.832637000340828 ], [ -95.543622007917946, 28.832631999816691 ], [ -95.543675008447863, 28.832606000254717 ], [ -95.543898008743412, 28.832491000201664 ], [ -95.544121008285629, 28.83237499952989 ], [ -95.544296008687922, 28.832284000060294 ], [ -95.544325008158424, 28.832269000176623 ], [ -95.544443008911401, 28.832208000110413 ], [ -95.544766009073911, 28.832040999769319 ], [ -95.544785008095516, 28.832030999817331 ], [ -95.545243009082299, 28.831793999407171 ], [ -95.545721008312313, 28.831546999916419 ], [ -95.546654009382024, 28.831063999834779 ], [ -95.54758700968253, 28.830580999726639 ], [ -95.547806009243118, 28.83047699934119 ], [ -95.547996008939393, 28.830387999259415 ], [ -95.548027009460768, 28.830372999165377 ], [ -95.548714009218855, 28.829883998923954 ], [ -95.548727009126807, 28.829876999369993 ], [ -95.549091009578518, 28.829671999383127 ], [ -95.549471010023609, 28.829459999144873 ], [ -95.549537009781105, 28.829405999039636 ], [ -95.549977009856121, 28.829041998752107 ], [ -95.550223009935877, 28.828800999371094 ], [ -95.550271009606675, 28.828788998828337 ], [ -95.550405010157164, 28.82877799869766 ], [ -95.550818009714192, 28.828742999277051 ], [ -95.551031010117782, 28.828806999408929 ], [ -95.551299010157635, 28.828886998939453 ], [ -95.551719010144311, 28.829011998701876 ], [ -95.552319010729235, 28.829449999363618 ], [ -95.552648010531726, 28.829575999375233 ], [ -95.553083010123856, 28.829742999554277 ], [ -95.553281010485264, 28.829782999027675 ], [ -95.553353010306566, 28.829846999147374 ], [ -95.553398010357, 28.829886999543991 ], [ -95.554536010862179, 28.830329999402597 ], [ -95.554623010569728, 28.830333999316331 ], [ -95.554664010566384, 28.830335999379777 ], [ -95.554912011058263, 28.830426999545871 ], [ -95.555378011619368, 28.830379999595561 ], [ -95.555871011812755, 28.830116999542291 ], [ -95.556664011449485, 28.830192999463865 ], [ -95.557413011595614, 28.830504999585269 ], [ -95.557483011867546, 28.830533998728395 ], [ -95.557586012109411, 28.830562999440922 ], [ -95.557681012083293, 28.830534999572365 ], [ -95.557828011525331, 28.830535999529889 ], [ -95.558028011856763, 28.830536999351065 ], [ -95.558130012418758, 28.830536999431921 ], [ -95.55819401227518, 28.830536999252715 ], [ -95.558340011489719, 28.830520999429222 ], [ -95.558464011577144, 28.830412998983849 ], [ -95.558684012213732, 28.830311999481264 ], [ -95.558715012516345, 28.830297998967204 ], [ -95.559126012479084, 28.830132998824883 ], [ -95.559691012554083, 28.829889998518681 ], [ -95.560492012540365, 28.829928999084967 ], [ -95.562861012762298, 28.829909998711944 ], [ -95.563254013386057, 28.829773998930154 ], [ -95.563515013389008, 28.829603998622133 ], [ -95.563602013483361, 28.829584999053981 ], [ -95.563908013624939, 28.82951899888241 ], [ -95.564052013617271, 28.829561999058644 ], [ -95.564356013306508, 28.829651998618914 ], [ -95.564945013419674, 28.830226998478285 ], [ -95.565178013764367, 28.830409998910813 ], [ -95.565189013847458, 28.830418998502477 ], [ -95.565307013571086, 28.830529998537465 ], [ -95.565519013999136, 28.830545998572379 ], [ -95.565533014048142, 28.830546998950378 ], [ -95.565902013867472, 28.830573998753081 ], [ -95.566046014061271, 28.830502999140123 ], [ -95.566413014325974, 28.830118998498847 ], [ -95.566968014627406, 28.829971998549933 ], [ -95.567428014078203, 28.829771998793706 ], [ -95.567526013940309, 28.829728998346535 ], [ -95.567715014327206, 28.829762998472074 ], [ -95.568614015073791, 28.83022499855884 ], [ -95.569525014472831, 28.830691998395157 ], [ -95.569933015279574, 28.830805999155327 ], [ -95.569994015058882, 28.830840998797751 ], [ -95.570171015335973, 28.830941998733664 ], [ -95.570466015344536, 28.831109998896881 ], [ -95.571048015721217, 28.831238999178883 ], [ -95.571136015617427, 28.83128899850853 ], [ -95.571290015307142, 28.831374998871595 ], [ -95.57174701499774, 28.832079999059776 ], [ -95.571773015464203, 28.832158998923415 ], [ -95.571888015606277, 28.832239998782761 ], [ -95.572246015975992, 28.832254999123585 ], [ -95.572343015388128, 28.832228999383076 ], [ -95.57296501615636, 28.832368998884814 ], [ -95.573678015558983, 28.832771999370568 ], [ -95.573967015746234, 28.833193998916293 ], [ -95.574119015686193, 28.833483999329378 ], [ -95.574788016337791, 28.834468999563239 ], [ -95.575471016880812, 28.835264999597111 ], [ -95.576300017193446, 28.835948999264897 ], [ -95.576756017189012, 28.83631699958951 ], [ -95.576823017079519, 28.836369999501358 ], [ -95.576976016730754, 28.836539999982044 ], [ -95.577023017137023, 28.836624999787908 ], [ -95.577046017509119, 28.836836999497681 ], [ -95.577068016790918, 28.837033999744094 ], [ -95.577147016866334, 28.837486000422349 ], [ -95.577841017114309, 28.838034000052637 ], [ -95.578165017115325, 28.838613999863124 ], [ -95.578459017231964, 28.838875000375964 ], [ -95.578563017819903, 28.838968000511542 ], [ -95.579028017634712, 28.839633000775756 ], [ -95.579149017783877, 28.840150000093224 ], [ -95.579282017351844, 28.840580000508929 ], [ -95.579396017431122, 28.841241001108202 ], [ -95.579382017569444, 28.841676000884625 ], [ -95.579357017621803, 28.842460001168028 ], [ -95.579289017728769, 28.842798001379496 ], [ -95.579215018322159, 28.842961001056054 ], [ -95.579104017933204, 28.843205001260284 ], [ -95.57864401748742, 28.843811000856363 ], [ -95.578574017227879, 28.843995001545476 ], [ -95.578555017308972, 28.844046001225287 ], [ -95.578430018007182, 28.844206001057085 ], [ -95.578312017754712, 28.844357001229152 ], [ -95.578280018056233, 28.844565001574352 ], [ -95.578214017578489, 28.844639001431183 ], [ -95.578006017680863, 28.845160001249351 ], [ -95.577698017671693, 28.846231001547817 ], [ -95.577562018016508, 28.846644001754392 ], [ -95.577536017971795, 28.846698002137302 ], [ -95.577443017120771, 28.847195002184229 ], [ -95.577458017315834, 28.847294001644904 ], [ -95.577496017418554, 28.847541002214744 ], [ -95.577310017598776, 28.848130002418504 ], [ -95.577194017583722, 28.84830000260008 ], [ -95.576902017225734, 28.848484001874681 ], [ -95.576817017316188, 28.848603001955993 ], [ -95.576695017247232, 28.848774002568831 ], [ -95.576694017202101, 28.848807002416052 ], [ -95.576690017157873, 28.848911002605554 ], [ -95.576612017226353, 28.849054002564269 ], [ -95.576624017518256, 28.849319002611633 ], [ -95.576791017312701, 28.849543002384053 ], [ -95.576868017179876, 28.849646002282455 ], [ -95.576892017968945, 28.849957002607432 ], [ -95.576793017580215, 28.850247002424272 ], [ -95.576647017018175, 28.850678002826573 ], [ -95.576615017788654, 28.850958003191906 ], [ -95.576530017359033, 28.851199003151098 ], [ -95.57645801771713, 28.851496002620127 ], [ -95.576383017815857, 28.851616003246736 ], [ -95.576368017780538, 28.851641003234523 ], [ -95.576163017074634, 28.852426003288507 ], [ -95.576229017299312, 28.852661002997365 ], [ -95.576228017788139, 28.852763003353413 ], [ -95.576228017788864, 28.852820002898007 ], [ -95.576287017373531, 28.853011003363072 ], [ -95.57628601755286, 28.853107003235472 ], [ -95.576284017182587, 28.853401002905201 ], [ -95.57641201751062, 28.853798003204872 ], [ -95.576419017801854, 28.853837003045278 ], [ -95.576507017809774, 28.854332003788539 ], [ -95.576726017774973, 28.85496700376962 ], [ -95.57691601794744, 28.854998003779418 ], [ -95.577028017318355, 28.855063004073379 ], [ -95.577957018422524, 28.855601003516455 ], [ -95.578283018019306, 28.855927003961973 ], [ -95.578608018083514, 28.856471004246842 ], [ -95.579299018901679, 28.857305004385314 ], [ -95.579420018638032, 28.857631004306779 ], [ -95.579457018414303, 28.858534004707433 ], [ -95.579375017985996, 28.85860600445249 ], [ -95.579291018159296, 28.858931004215485 ], [ -95.579126018934957, 28.859147004164864 ], [ -95.579125017999402, 28.859400004679618 ], [ -95.579247018743345, 28.859618004877778 ], [ -95.579695018808621, 28.860017004408643 ], [ -95.579940018397721, 28.860163004461295 ], [ -95.580635018494377, 28.860346004254215 ], [ -95.581166018779442, 28.860565004567064 ], [ -95.583131019859252, 28.860609004607664 ], [ -95.583376019387956, 28.860790004325889 ], [ -95.583416019619008, 28.860935004742988 ], [ -95.583558020067684, 28.861062004282026 ], [ -95.583987020136092, 28.861371004900377 ], [ -95.584967020140596, 28.861881005246069 ], [ -95.585293019968972, 28.862171004498045 ], [ -95.585659019952104, 28.862679004682814 ], [ -95.585902020451528, 28.863077004614325 ], [ -95.586307020300652, 28.863982004975743 ], [ -95.586346020448502, 28.864344005354443 ], [ -95.587005020960589, 28.865258005749297 ], [ -95.587033021105015, 28.865297005600151 ], [ -95.587047020834021, 28.865316005852321 ], [ -95.587078020267498, 28.865359005133339 ], [ -95.587103020894446, 28.865520005211078 ], [ -95.587118021044716, 28.865612005288646 ], [ -95.587103020903086, 28.865645005575807 ], [ -95.58703502025061, 28.865792005848149 ], [ -95.58703302058629, 28.86619000591628 ], [ -95.587278021191693, 28.866408005429424 ], [ -95.587620020537443, 28.866561005643238 ], [ -95.587686020967169, 28.866590005316716 ], [ -95.587931020499809, 28.866699005922339 ], [ -95.588421021284844, 28.867099005471289 ], [ -95.588625021319459, 28.867280006085018 ], [ -95.58886802108961, 28.867679005630123 ], [ -95.589521021255209, 28.868223005576606 ], [ -95.58976602191575, 28.868369005626068 ], [ -95.589929021803769, 28.868369006417378 ], [ -95.590133021589764, 28.868515005691574 ], [ -95.590255021555933, 28.86869600637046 ], [ -95.590294021872324, 28.869163006339313 ], [ -95.590753021373189, 28.869753006628951 ], [ -95.590762022264585, 28.869764006335149 ], [ -95.59082302212218, 28.869819006471381 ], [ -95.591069021637026, 28.869819006575874 ], [ -95.591315021472354, 28.869676006454554 ], [ -95.591683022052237, 28.869677005865235 ], [ -95.592174021751646, 28.869787006130547 ], [ -95.592541022032933, 28.870114005835731 ], [ -95.593029022877573, 28.87080300671861 ], [ -95.593600022241361, 28.871275006362026 ], [ -95.593885022394218, 28.87160100679035 ], [ -95.59445802316587, 28.871748006934496 ], [ -95.594866023262355, 28.87193000647299 ], [ -95.595478023348875, 28.872330007066392 ], [ -95.59584702365423, 28.872367006742216 ], [ -95.595939023555104, 28.872398006326403 ], [ -95.595995022929372, 28.872417006762674 ], [ -95.596174023775944, 28.872477007097956 ], [ -95.596418023343176, 28.872695006544017 ], [ -95.596499023596422, 28.872948006593329 ], [ -95.596793023317744, 28.873250007178612 ], [ -95.597306023850351, 28.87352400698909 ], [ -95.597315024152465, 28.873529006669777 ], [ -95.598255023907655, 28.873967007236395 ], [ -95.600092024762844, 28.87500500670107 ], [ -95.601996024683856, 28.876150006929063 ], [ -95.602078024876235, 28.876150007521506 ], [ -95.602149025275622, 28.876208006828882 ], [ -95.60216502520889, 28.876221007359522 ], [ -95.602568025425981, 28.876550007363193 ], [ -95.602810025004089, 28.877165007388747 ], [ -95.602970025636182, 28.878105008043601 ], [ -95.603174024984398, 28.878287007860401 ], [ -95.603582025519543, 28.878469007561176 ], [ -95.603949025820512, 28.878759007302847 ], [ -95.60408402541367, 28.878765007903059 ], [ -95.604178025620172, 28.878770008107541 ], [ -95.604768026125171, 28.878798007613366 ], [ -95.605054026068089, 28.878872008149163 ], [ -95.605545026506093, 28.879090007688411 ], [ -95.605667026491645, 28.879091007377816 ], [ -95.606198026418284, 28.879454007935117 ], [ -95.606934026008432, 28.879674007710467 ], [ -95.607219026100822, 28.880000007624144 ], [ -95.607219026400074, 28.880108008100102 ], [ -95.60746202673009, 28.880543007850015 ], [ -95.607502026611755, 28.880868008206519 ], [ -95.607869026497781, 28.881195008408127 ], [ -95.608400026478606, 28.881378007684482 ], [ -95.609178026854238, 28.881381007845892 ], [ -95.609750026989389, 28.881708008482502 ], [ -95.611014027791398, 28.882761008313572 ], [ -95.611219027481994, 28.882870008195606 ], [ -95.612857028446641, 28.882876008409603 ], [ -95.613470028101432, 28.883095008493139 ], [ -95.614082027858714, 28.883567008753953 ], [ -95.614530028470767, 28.884110008359841 ], [ -95.614852028857385, 28.884397008154178 ], [ -95.614897028795397, 28.884437008144921 ], [ -95.615235028520971, 28.884613008418437 ], [ -95.615387028667328, 28.88469200869061 ], [ -95.616082028699154, 28.884875008547922 ], [ -95.616491028679562, 28.885057009056624 ], [ -95.616899029391504, 28.885456008721963 ], [ -95.617507029696796, 28.886759008509689 ], [ -95.617710029054408, 28.887049009265535 ], [ -95.618607029659231, 28.887956009295522 ], [ -95.618972029958726, 28.888680009555479 ], [ -95.619217030371658, 28.889006009447098 ], [ -95.619624030270629, 28.88936900915181 ], [ -95.619829030194097, 28.889442008982456 ], [ -95.620359030459298, 28.889878009377494 ], [ -95.62053803038728, 28.890110009644236 ], [ -95.620615030795705, 28.890209009384026 ], [ -95.620807030838677, 28.890457009428285 ], [ -95.620847030782585, 28.890638009251603 ], [ -95.621051030247344, 28.890892009402744 ], [ -95.621295030683356, 28.89132600958493 ], [ -95.621294030256465, 28.891435009712843 ], [ -95.621741031043328, 28.892159009763102 ], [ -95.622027030591639, 28.892495009701115 ], [ -95.62214603083892, 28.892634009924599 ], [ -95.622270030955221, 28.892780010488856 ], [ -95.622438030636985, 28.892977010429522 ], [ -95.622534031191634, 28.893089010057974 ], [ -95.622552031381076, 28.89311001003859 ], [ -95.622638030902763, 28.89321001000248 ], [ -95.623250031177264, 28.893719010447715 ], [ -95.623701030986595, 28.89385301005764 ], [ -95.623740031136919, 28.89386500988239 ], [ -95.623779031151088, 28.893865009791579 ], [ -95.624232031362439, 28.893867009861722 ], [ -95.624477031798293, 28.893976009935454 ], [ -95.625007031356631, 28.894064009897502 ], [ -95.625132031199911, 28.894048010514975 ], [ -95.625214031697524, 28.894121010511906 ], [ -95.626461032094511, 28.894493009830008 ], [ -95.626686031777226, 28.894560010540776 ], [ -95.627013031860983, 28.89470601054526 ], [ -95.627911032529482, 28.895395010588643 ], [ -95.628237032248165, 28.895794010610299 ], [ -95.629216032660608, 28.896665011019174 ], [ -95.630196033206246, 28.897246010818833 ], [ -95.630656033039713, 28.897373010748847 ], [ -95.630728033099118, 28.897393011145489 ], [ -95.630763032720068, 28.897393010433689 ], [ -95.630841033224442, 28.897393010576394 ], [ -95.63097503274561, 28.897394010919381 ], [ -95.631342033625529, 28.897395010726235 ], [ -95.632080033150388, 28.897289010463535 ], [ -95.632981033533738, 28.897292010726733 ], [ -95.63330803386593, 28.897365010697403 ], [ -95.633513033825096, 28.897474010941192 ], [ -95.634451034276751, 28.898381010707482 ], [ -95.635102033918017, 28.899323011352262 ], [ -95.635101034597142, 28.899431011014787 ], [ -95.635223034761793, 28.899576011128499 ], [ -95.635426034665016, 28.900047010846574 ], [ -95.635587034622176, 28.900698011662261 ], [ -95.635669034182413, 28.900770010958855 ], [ -95.635747034999312, 28.901674011426792 ], [ -95.635828034863252, 28.901783011271469 ], [ -95.635889034478225, 28.902095011258485 ], [ -95.635948034897297, 28.902398011921456 ], [ -95.636111035013954, 28.902760011472068 ], [ -95.636518034609352, 28.903231012077587 ], [ -95.637047034719544, 28.903536011652264 ], [ -95.637213034919839, 28.903631011369399 ], [ -95.637540035586554, 28.903740011650278 ], [ -95.638605034966744, 28.903744011730069 ], [ -95.638892035547968, 28.903672011520616 ], [ -95.639754035993789, 28.90327801167815 ], [ -95.640532035593893, 28.903280011583302 ], [ -95.641186036563724, 28.903463011782161 ], [ -95.641415036129359, 28.90359901143427 ], [ -95.641439035810095, 28.903613011727153 ], [ -95.641677035871581, 28.903754011996554 ], [ -95.642125036616946, 28.904262011564761 ], [ -95.642532036506481, 28.904877011777415 ], [ -95.642897036117347, 28.905782012181387 ], [ -95.643711036761985, 28.906905012128782 ], [ -95.644280036796715, 28.907991012335561 ], [ -95.644929037115517, 28.908946012430398 ], [ -95.645461037552124, 28.90972901326797 ], [ -95.645499037568115, 28.910344013234283 ], [ -95.645375037030604, 28.910488013209211 ], [ -95.645044037852927, 28.911318013581663 ], [ -95.645040037494894, 28.912294013701985 ], [ -95.645567037239786, 28.913633014058462 ], [ -95.646787038305959, 28.915805013622261 ], [ -95.64813203798677, 28.917436014400856 ], [ -95.648622038977763, 28.917835014074885 ], [ -95.64927603917539, 28.918126014304825 ], [ -95.651074039069599, 28.919252014663776 ], [ -95.651318038857752, 28.91947001480737 ], [ -95.651416039119027, 28.919622014782508 ], [ -95.651448039519437, 28.919672014676333 ], [ -95.651481039578258, 28.919723014684735 ], [ -95.651562038917817, 28.920013015044933 ], [ -95.651558039480591, 28.920916014564551 ], [ -95.651226039419015, 28.921927015454493 ], [ -95.651224039008383, 28.922433015376669 ], [ -95.6517940392703, 28.923338015746495 ], [ -95.65190703950266, 28.925687015570229 ], [ -95.651700039466562, 28.926229016358128 ], [ -95.651329039374801, 28.926878016277147 ], [ -95.651241040117824, 28.928251016278676 ], [ -95.65111603951884, 28.928648016408651 ], [ -95.650746039179595, 28.929044016819471 ], [ -95.650292039114447, 28.929766016811595 ], [ -95.650328039170091, 28.931030017083803 ], [ -95.650080039866808, 28.931572016939093 ], [ -95.649503039127779, 28.93247301754057 ], [ -95.649047039339948, 28.933664017813623 ], [ -95.649005039784882, 28.933989017525406 ], [ -95.648756039773886, 28.934711017927754 ], [ -95.648384039185629, 28.935324017638735 ], [ -95.648219039372961, 28.93575701819336 ], [ -95.647972039048099, 28.9359730181204 ], [ -95.647559039528147, 28.936623018626474 ], [ -95.646120038994283, 28.93795501874531 ], [ -95.645830038307565, 28.938532018877847 ], [ -95.645829038303773, 28.938893019248187 ], [ -95.646564038749688, 28.939546018518911 ], [ -95.646808039511072, 28.940017018699628 ], [ -95.64770603886214, 28.94067001951306 ], [ -95.647910039642042, 28.940996018944535 ], [ -95.64868503909166, 28.941685019121046 ], [ -95.649379040241612, 28.942519019845349 ], [ -95.649541039772956, 28.942844019148342 ], [ -95.649621039659493, 28.943242019473953 ], [ -95.650315040170526, 28.943931019599617 ], [ -95.650519040127406, 28.944257020020149 ], [ -95.650557040162568, 28.944835019994866 ], [ -95.650760040350576, 28.945342020071976 ], [ -95.651086039856267, 28.945704020006989 ], [ -95.651493040558123, 28.946464020651785 ], [ -95.652269040508642, 28.947153020675032 ], [ -95.652799040794761, 28.947842020587835 ], [ -95.65300204139136, 28.948276020483036 ], [ -95.653041041038847, 28.948601020492749 ], [ -95.653171041168079, 28.948994020369604 ], [ -95.653181041282764, 28.949024021141334 ], [ -95.653244040640175, 28.949216020706434 ], [ -95.653775041454651, 28.949615020644138 ], [ -95.654307041255024, 28.949726020445869 ], [ -95.654593041182139, 28.950016021108361 ], [ -95.654715040956901, 28.950197021076889 ], [ -95.654713041489728, 28.950666020667757 ], [ -95.654794041096011, 28.95084702143691 ], [ -95.654793041716147, 28.951064020746021 ], [ -95.655078041658285, 28.951535021028185 ], [ -95.655405042137701, 28.951716021299262 ], [ -95.656430041988784, 28.951792021042095 ], [ -95.656960042168393, 28.95226302084675 ], [ -95.65700104206627, 28.952408021366431 ], [ -95.657368042396016, 28.95269802152416 ], [ -95.658311042398864, 28.952701020994127 ], [ -95.658557042659695, 28.952738021622491 ], [ -95.65863804252308, 28.952811020905539 ], [ -95.659549042383134, 28.95292202127391 ], [ -95.659867042924745, 28.953031021044776 ], [ -95.660112043114381, 28.953249021174425 ], [ -95.660315043027268, 28.953611021850413 ], [ -95.660596043390626, 28.953860021923859 ], [ -95.660611043412302, 28.953873021380694 ], [ -95.660642042824065, 28.953901021433985 ], [ -95.661052043009704, 28.953975021035454 ], [ -95.661503043499451, 28.95390402157501 ], [ -95.661585043317544, 28.953832021356888 ], [ -95.661954043337289, 28.953833021486748 ], [ -95.662607044134688, 28.95441302159821 ], [ -95.663263043620262, 28.9543070216308 ], [ -95.663387043545328, 28.95423502107699 ], [ -95.664083044093914, 28.954237021495807 ], [ -95.664614044491856, 28.954781021561125 ], [ -95.665023044699367, 28.954999021420878 ], [ -95.665473043942754, 28.955145021642 ], [ -95.665637044585552, 28.95514502161662 ], [ -95.665719044738353, 28.955218021636615 ], [ -95.666824044644727, 28.955583021870829 ], [ -95.667316045079758, 28.955620021885398 ], [ -95.668298045043855, 28.956021021556314 ], [ -95.668420045608045, 28.956130021381586 ], [ -95.668870045784928, 28.956239022162588 ], [ -95.669401045367366, 28.956711021730143 ], [ -95.670012045779956, 28.95776102162251 ], [ -95.670174046013727, 28.958267022274114 ], [ -95.670337045330399, 28.958556022318508 ], [ -95.67128004599914, 28.959664022201313 ], [ -95.671380046371425, 28.959801022810549 ], [ -95.671680046402969, 28.960131022038695 ], [ -95.671743046305167, 28.960219022128676 ], [ -95.671830046691099, 28.960368022527483 ], [ -95.671961046110169, 28.96069202258219 ], [ -95.671999046671345, 28.960769022756651 ], [ -95.672032046624821, 28.960795022749387 ], [ -95.672180046759749, 28.96091202228914 ], [ -95.672605046019299, 28.961154022196975 ], [ -95.672818046178136, 28.961319022797827 ], [ -95.672987047078934, 28.961401022598174 ], [ -95.673093046972042, 28.961484022845479 ], [ -95.673312047077957, 28.96167602299175 ], [ -95.673374046484142, 28.961764022485976 ], [ -95.673530046429349, 28.962028023044635 ], [ -95.673612047204713, 28.96210502234208 ], [ -95.67380504709169, 28.962265022638068 ], [ -95.674174046879529, 28.962512022749433 ], [ -95.674249046676294, 28.962578022992894 ], [ -95.674374046549602, 28.962743023046471 ], [ -95.674599046761557, 28.963133022584859 ], [ -95.674712047154273, 28.963364022609944 ], [ -95.675012047249197, 28.964062023466688 ], [ -95.675137046999467, 28.964249023569849 ], [ -95.675249047643831, 28.964315023257679 ], [ -95.675431047243478, 28.964343023351578 ], [ -95.67549904707586, 28.964370023125621 ], [ -95.675606047649353, 28.964447023374429 ], [ -95.675793047037516, 28.96448602293346 ], [ -95.675900047246529, 28.96453002345795 ], [ -95.676006047900458, 28.964590022909242 ], [ -95.676062047223951, 28.964640023100827 ], [ -95.676125047840031, 28.964717023239146 ], [ -95.67621804751866, 28.964777023351402 ], [ -95.676350047366711, 28.964816022812091 ], [ -95.676525047814849, 28.964821023188339 ], [ -95.676825047619843, 28.964816023360672 ], [ -95.67775004767789, 28.964700022924344 ], [ -95.677856047958926, 28.964717022994055 ], [ -95.678037047640046, 28.964788023055604 ], [ -95.678156047555746, 28.964948023657477 ], [ -95.67819404814432, 28.965025022797899 ], [ -95.678200048220887, 28.965261023639229 ], [ -95.67835604836641, 28.965459023681195 ], [ -95.678425047882655, 28.965519022874556 ], [ -95.678650048299886, 28.965607023475236 ], [ -95.678794048202263, 28.965651023359218 ], [ -95.678994048233648, 28.965679023121265 ], [ -95.679200048723175, 28.965723023130952 ], [ -95.679350048711825, 28.965739023087664 ], [ -95.679557048469476, 28.96573902326881 ], [ -95.679669048012286, 28.965712022890759 ], [ -95.679850048028754, 28.965607023720416 ], [ -95.680250048640019, 28.965321023010322 ], [ -95.680744048218685, 28.964997023217649 ], [ -95.681188049036663, 28.964656023085439 ], [ -95.681551048572729, 28.964315022709027 ], [ -95.682045049389757, 28.963771022784698 ], [ -95.682254048921735, 28.963453022827217 ], [ -95.682261048668678, 28.963443023078103 ], [ -95.682363049229011, 28.96328702305453 ], [ -95.682501049205314, 28.962902023040662 ], [ -95.68250704955345, 28.962787022347538 ], [ -95.682532048887978, 28.962650022812642 ], [ -95.68272004857333, 28.962237022499231 ], [ -95.682845048617551, 28.96210002212025 ], [ -95.682970049585819, 28.961918022532441 ], [ -95.68318204928039, 28.961693022742601 ], [ -95.683251048978164, 28.961539022441894 ], [ -95.68328204961324, 28.961242022084154 ], [ -95.68332004868239, 28.961050022447449 ], [ -95.683382049194933, 28.960852021877727 ], [ -95.683432049449607, 28.960758021761169 ], [ -95.683689049373839, 28.96053302179341 ], [ -95.683826049122089, 28.960472021939168 ], [ -95.683964049558739, 28.960461021750543 ], [ -95.684126049721584, 28.960467022234322 ], [ -95.684251049249141, 28.960478022360864 ], [ -95.684339049716371, 28.960500021673454 ], [ -95.684457049813602, 28.960560022073029 ], [ -95.684751049506502, 28.960863022495811 ], [ -95.685214049545422, 28.961275022482496 ], [ -95.685720049841606, 28.961709022034068 ], [ -95.685758050178507, 28.961720021921401 ], [ -95.685845049924325, 28.961775022631912 ], [ -95.686027049874625, 28.961935022092071 ], [ -95.686283049706418, 28.962188022126877 ], [ -95.686552049739447, 28.962484022057811 ], [ -95.68664504980471, 28.962611022790746 ], [ -95.686827050331331, 28.962743022714115 ], [ -95.687002049762611, 28.962842022750458 ], [ -95.687189050027243, 28.962930022397153 ], [ -95.687452050806812, 28.963034022962578 ], [ -95.687696050541291, 28.963177022287557 ], [ -95.688008050027392, 28.963326022899313 ], [ -95.688115050937014, 28.963391022224862 ], [ -95.688371050296865, 28.963479022946451 ], [ -95.688746050204244, 28.96354002263309 ], [ -95.688890051182625, 28.963584022411865 ], [ -95.689077050277362, 28.963661022518856 ], [ -95.689171051083434, 28.963688022729073 ], [ -95.689296050570476, 28.963754022656509 ], [ -95.689471050582327, 28.963903023008768 ], [ -95.689615051275084, 28.963991022626558 ], [ -95.689721050608966, 28.964046022569043 ], [ -95.689809051057267, 28.964057022278734 ], [ -95.690015050578154, 28.964128022597624 ], [ -95.690115050551256, 28.964222022351322 ], [ -95.69020305078358, 28.964337022658867 ], [ -95.690415051434442, 28.964535022819156 ], [ -95.690426050948645, 28.964552022893088 ], [ -95.690501051418693, 28.964662022451197 ], [ -95.690757051633526, 28.964482022864129 ], [ -95.691762051449928, 28.963775022588333 ], [ -95.692154052016747, 28.963514022244272 ], [ -95.693953052230626, 28.962279022154174 ], [ -95.696205052257611, 28.960806021731596 ], [ -95.696977052383332, 28.960312021737092 ], [ -95.697903053310014, 28.959801021766388 ], [ -95.698221053316033, 28.959617021104226 ], [ -95.698343052669728, 28.959543021385493 ], [ -95.699048052656963, 28.9591460214573 ], [ -95.700934053937573, 28.958052020804999 ], [ -95.703489054363345, 28.956624020968309 ], [ -95.704910054899059, 28.955786020353429 ], [ -95.706742054467227, 28.954733019769659 ], [ -95.707652054990646, 28.954228020331549 ], [ -95.708064054817484, 28.953999019697381 ], [ -95.708691055641879, 28.953653020348142 ], [ -95.709301055901548, 28.953290020067243 ], [ -95.70972005576111, 28.953028019740881 ], [ -95.71010705531782, 28.952730019876117 ], [ -95.7104150562065, 28.952415019607418 ], [ -95.710538055850009, 28.952264019765913 ], [ -95.710751055788947, 28.952002019858821 ], [ -95.711068056104992, 28.951578019227671 ], [ -95.713743056757096, 28.948007018224065 ], [ -95.714026056753269, 28.947666018933599 ], [ -95.714401056533745, 28.947216018805005 ], [ -95.714447056817463, 28.947169018303203 ], [ -95.714606056507463, 28.947002017934238 ], [ -95.7148590565685, 28.946758018301235 ], [ -95.715323056232393, 28.946382017978923 ], [ -95.717791057052921, 28.944562018000266 ], [ -95.719073057592823, 28.943619017349349 ], [ -95.719226058039382, 28.943487017574189 ], [ -95.719819058061958, 28.943061017107901 ], [ -95.722134058379083, 28.941364017349098 ], [ -95.722599058358426, 28.941023017006668 ], [ -95.722850058053979, 28.940839016618497 ], [ -95.723330058587578, 28.940475016369803 ], [ -95.73014505966951, 28.935689015704085 ], [ -95.731369059999665, 28.934747015031931 ], [ -95.731638060362613, 28.934521015523661 ], [ -95.73272106052417, 28.93352501523206 ], [ -95.737626061463757, 28.929024014240696 ], [ -95.737832061626364, 28.928835014220546 ], [ -95.738935061500925, 28.92783501392643 ], [ -95.739376062335708, 28.927537013285178 ], [ -95.740044061931798, 28.927165013070532 ], [ -95.740513062346054, 28.926936013526859 ], [ -95.741057062836163, 28.926709013103793 ], [ -95.741526062712538, 28.926573013131382 ], [ -95.741990062632183, 28.926493013232317 ], [ -95.743130063073281, 28.926216013290368 ], [ -95.743683062832687, 28.926032013408072 ], [ -95.743787063407424, 28.925981012734137 ], [ -95.744130063615557, 28.925813013099411 ], [ -95.744719063084574, 28.925446012626491 ], [ -95.745447063451067, 28.924854012635578 ], [ -95.748192064254425, 28.922344011738538 ], [ -95.749083064749115, 28.92148701225835 ], [ -95.7501750644673, 28.920410011606538 ], [ -95.756580065608361, 28.91456701032207 ], [ -95.758305066587994, 28.912994010196797 ], [ -95.760386066660743, 28.911096009690606 ], [ -95.762665067103143, 28.909016009148022 ], [ -95.765621068051558, 28.906320008370603 ], [ -95.765916067923385, 28.906063007826543 ], [ -95.766426067628231, 28.90564500825354 ], [ -95.767946067944479, 28.904398007387723 ], [ -95.770600069521691, 28.902222007190392 ], [ -95.77371606952336, 28.899667006689416 ], [ -95.776922070375193, 28.897038006194055 ], [ -95.777017070925837, 28.896960005646825 ], [ -95.780316070766929, 28.894254005659331 ], [ -95.782944071770387, 28.892099005199515 ], [ -95.783827072429588, 28.891303004617022 ], [ -95.78507107177424, 28.890329004619954 ], [ -95.785342072291471, 28.890091004151948 ], [ -95.785572071968986, 28.889889004207312 ], [ -95.785690072033915, 28.889786004561543 ], [ -95.78573907266933, 28.889744004586941 ], [ -95.785789072851841, 28.889703004583726 ], [ -95.787856072763176, 28.88788400345042 ], [ -95.790639073607522, 28.885354002796443 ], [ -95.793273073939588, 28.882959002224396 ], [ -95.794553074783423, 28.881741001931267 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 501, "Tract": "48321730502", "Area_SqMi": 337.43032473682007, "total_2009": 1847, "total_2010": 1340, "total_2011": 1590, "total_2012": 1473, "total_2013": 1508, "total_2014": 805, "total_2015": 764, "total_2016": 1882, "total_2017": 1878, "total_2018": 1055, "total_2019": 1956, "total_2020": 1709, "age1": 219, "age2": 995, "age3": 518, "earn1": 124, "earn2": 152, "earn3": 1456, "naics_s01": 58, "naics_s02": 0, "naics_s03": 1010, "naics_s04": 196, "naics_s05": 242, "naics_s06": 12, "naics_s07": 49, "naics_s08": 10, "naics_s09": 0, "naics_s10": 14, "naics_s11": 0, "naics_s12": 29, "naics_s13": 0, "naics_s14": 11, "naics_s15": 40, "naics_s16": 0, "naics_s17": 5, "naics_s18": 54, "naics_s19": 2, "naics_s20": 0, "race1": 1529, "race2": 118, "race3": 16, "race4": 40, "race5": 3, "race6": 26, "ethnicity1": 1307, "ethnicity2": 425, "edu1": 217, "edu2": 396, "edu3": 523, "edu4": 377, "Shape_Length": 782557.83211507578, "Shape_Area": 9406979935.8899593, "total_2021": 2086, "total_2022": 1732 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.379960203053685, 28.383330880771545 ], [ -96.379984202479307, 28.383217881192035 ], [ -96.378698202738406, 28.382868880951893 ], [ -96.378002202729917, 28.382680881217105 ], [ -96.376963202004688, 28.382719881457291 ], [ -96.376105201377129, 28.383117880810598 ], [ -96.375699202164668, 28.383792881269724 ], [ -96.375259201651204, 28.383986881695105 ], [ -96.375157201429261, 28.384031881248124 ], [ -96.374253201443295, 28.383911880977021 ], [ -96.373350201183527, 28.384031881326319 ], [ -96.373079200754233, 28.38379288149007 ], [ -96.371859201053354, 28.384031881798094 ], [ -96.371453200806314, 28.384309881266287 ], [ -96.370053200131522, 28.384547881396195 ], [ -96.369691200626264, 28.384984881508881 ], [ -96.369104200529478, 28.386176881854531 ], [ -96.369194200141081, 28.386931882399416 ], [ -96.369104199984122, 28.387885881895468 ], [ -96.370775200953503, 28.393409883293508 ], [ -96.37059520064804, 28.393886883702098 ], [ -96.370369200508506, 28.394720883537644 ], [ -96.370324200536913, 28.394839884008256 ], [ -96.370285200545254, 28.395403884104681 ], [ -96.369196201101161, 28.39645988438911 ], [ -96.367630200316924, 28.397900884863446 ], [ -96.366088200161613, 28.39936488444706 ], [ -96.365808199514021, 28.399567884469047 ], [ -96.357585198385252, 28.40580688623902 ], [ -96.356004198110838, 28.4068798866608 ], [ -96.352119196958924, 28.409859887367382 ], [ -96.35135119622025, 28.410535887716179 ], [ -96.350267196236288, 28.411369887333034 ], [ -96.349002196662866, 28.412363888064146 ], [ -96.346879195910276, 28.41395288879432 ], [ -96.345659195346329, 28.414747888435954 ], [ -96.344258195111408, 28.415621889012183 ], [ -96.343852195417014, 28.416138888525619 ], [ -96.341728194324915, 28.417410889613219 ], [ -96.336081192924212, 28.420509890176131 ], [ -96.333572192763711, 28.421968890341624 ], [ -96.331020192472266, 28.422972890924946 ], [ -96.330297191619437, 28.423449890830298 ], [ -96.329755191570243, 28.423092891092931 ], [ -96.318549188672407, 28.412561888613194 ], [ -96.318052188071704, 28.412402888780722 ], [ -96.312132187298985, 28.417290890019402 ], [ -96.312132186774093, 28.417528889878632 ], [ -96.318820189452836, 28.423688891427627 ], [ -96.318820189017345, 28.423926891172528 ], [ -96.317058188731224, 28.426231891768118 ], [ -96.31547618803107, 28.428178892369964 ], [ -96.306078186336322, 28.436245894268595 ], [ -96.301017185443143, 28.440020895623405 ], [ -96.298035184528672, 28.44244489623021 ], [ -96.29123418275762, 28.447176896828715 ], [ -96.290170182937075, 28.447944896969876 ], [ -96.289182182369231, 28.448746897138381 ], [ -96.28697818215538, 28.450350897366889 ], [ -96.286370181888699, 28.450551897469627 ], [ -96.285077181948594, 28.451587897907057 ], [ -96.275082178926198, 28.457401899235311 ], [ -96.269686177691753, 28.460809900764335 ], [ -96.266721177052304, 28.462647900559272 ], [ -96.253645174229192, 28.47041590314068 ], [ -96.239581170721877, 28.478508905409242 ], [ -96.237055170736852, 28.47999790531858 ], [ -96.22490816807462, 28.486582907328998 ], [ -96.222281167282858, 28.486268907251361 ], [ -96.220406166637559, 28.489815908085511 ], [ -96.214653165634715, 28.49288990885357 ], [ -96.207603163276517, 28.496562909318332 ], [ -96.200646162495175, 28.500001910261815 ], [ -96.197304161421343, 28.501694911051715 ], [ -96.193620159966855, 28.503492911645321 ], [ -96.189700159669428, 28.505493912373705 ], [ -96.185187158333662, 28.507764912436144 ], [ -96.181235157067135, 28.509655913147942 ], [ -96.179449157271264, 28.510589913383033 ], [ -96.175235155925634, 28.512502914089055 ], [ -96.172017154952655, 28.514090914006271 ], [ -96.170548155452266, 28.514827914792885 ], [ -96.167990154155191, 28.515986914823433 ], [ -96.165482153626371, 28.517168915645904 ], [ -96.159188151926088, 28.520185915711387 ], [ -96.154824150886853, 28.522174916649504 ], [ -96.1521411508093, 28.52343791706172 ], [ -96.145990149391196, 28.526256917947965 ], [ -96.140798147544984, 28.528695918070703 ], [ -96.136801146901888, 28.530441918768698 ], [ -96.134833146954378, 28.531419919110064 ], [ -96.131975146168372, 28.532743919816962 ], [ -96.130151145330643, 28.533556920136135 ], [ -96.125002144460922, 28.53586792072365 ], [ -96.119169143088513, 28.538563921556261 ], [ -96.113605141456134, 28.541127922196775 ], [ -96.106602139833313, 28.544400922513635 ], [ -96.09945013865763, 28.547761923887599 ], [ -96.092472136675184, 28.550907924429378 ], [ -96.085525135202488, 28.553909925110265 ], [ -96.074549132217072, 28.558566926713773 ], [ -96.074480132533083, 28.558616926696065 ], [ -96.073926132331266, 28.558825926653146 ], [ -96.059450128356104, 28.564811928358168 ], [ -96.053883127199754, 28.567157929286399 ], [ -96.04620512542752, 28.570333930055323 ], [ -96.039666124459515, 28.572976930642632 ], [ -96.03305912255837, 28.575619931124621 ], [ -96.026912121098761, 28.578123932547335 ], [ -96.024458120437032, 28.579098932808069 ], [ -96.024048120511978, 28.578322932488533 ], [ -96.023990120552924, 28.578348932148469 ], [ -96.018168119011179, 28.580687933105608 ], [ -96.005522115692713, 28.585078934681999 ], [ -96.002784115023161, 28.586012934863383 ], [ -95.999820114811129, 28.586866934742105 ], [ -95.997127113445629, 28.587800935085255 ], [ -95.996245113299068, 28.58791993486258 ], [ -95.996086114144433, 28.587681934739436 ], [ -95.995498113833534, 28.587621935420437 ], [ -95.994751113505913, 28.587780935570336 ], [ -95.994373113344793, 28.587942935412798 ], [ -95.993996113056539, 28.587824935555037 ], [ -95.993081112533972, 28.588131934848732 ], [ -95.992543113194245, 28.588816935804829 ], [ -95.992247112944057, 28.589525935363593 ], [ -95.990875112672541, 28.590069936190549 ], [ -95.989153112059824, 28.590754935719307 ], [ -95.988776112063576, 28.590990935644616 ], [ -95.988372111507402, 28.591155935727109 ], [ -95.98721511194033, 28.591817936520783 ], [ -95.986354110919365, 28.592077935930281 ], [ -95.9853581109316, 28.592124936629681 ], [ -95.98479311096618, 28.592006936166129 ], [ -95.984766111104165, 28.59188893618035 ], [ -95.985009110877371, 28.591132935846197 ], [ -95.984820110754015, 28.590825936208944 ], [ -95.984363110870007, 28.590683936398829 ], [ -95.983932110713894, 28.590683936125668 ], [ -95.983779111113023, 28.590771936014658 ], [ -95.983368111057729, 28.59101393635758 ], [ -95.983121110780246, 28.591318935842406 ], [ -95.983099110576006, 28.591344936307173 ], [ -95.982380110858742, 28.593543936648018 ], [ -95.982103110559763, 28.594393937276156 ], [ -95.98188811012318, 28.595007936812383 ], [ -95.981485110123756, 28.595007936836112 ], [ -95.980703109940066, 28.595195936788365 ], [ -95.980166110341159, 28.595550937097244 ], [ -95.979870109573568, 28.596023937275735 ], [ -95.979762110239648, 28.596211937658389 ], [ -95.979223109912013, 28.595834936994372 ], [ -95.978928109436922, 28.595716937216825 ], [ -95.978776109515181, 28.595716937081921 ], [ -95.978740109466017, 28.59571693749794 ], [ -95.978729109908087, 28.595713937207481 ], [ -95.978513109926894, 28.595649936880765 ], [ -95.978497109873715, 28.595645937034231 ], [ -95.9770701091755, 28.595763937657335 ], [ -95.976075108470965, 28.596117937275569 ], [ -95.974918108421747, 28.596637937933469 ], [ -95.973895108469009, 28.597062937503146 ], [ -95.970693107957047, 28.598409937984993 ], [ -95.962781105781971, 28.601576938859417 ], [ -95.962566106111595, 28.601694939176209 ], [ -95.956510104316166, 28.60405793970763 ], [ -95.954653104189305, 28.604954940136462 ], [ -95.951666103075326, 28.60611294061632 ], [ -95.950993102494976, 28.606301940406134 ], [ -95.936647099823475, 28.611712941651991 ], [ -95.9361090989198, 28.612020941965717 ], [ -95.928519097094707, 28.615091943274138 ], [ -95.927308097341935, 28.615635942830622 ], [ -95.923270096407634, 28.617147943919075 ], [ -95.910431092851198, 28.622156945264692 ], [ -95.909139092845408, 28.622557944942681 ], [ -95.90496609164029, 28.62432994586127 ], [ -95.898075090641839, 28.626976946407233 ], [ -95.897591090670474, 28.627047946019886 ], [ -95.896756090273286, 28.627472946465669 ], [ -95.895895089827164, 28.627661946432816 ], [ -95.894819090008227, 28.628158946349092 ], [ -95.89218108905709, 28.629292947216172 ], [ -95.89107708846268, 28.629883947304503 ], [ -95.888762088518803, 28.63071094702217 ], [ -95.885612087026459, 28.631986947776038 ], [ -95.883351086967195, 28.632931947638131 ], [ -95.882705086827613, 28.633309948077898 ], [ -95.881520086033447, 28.633640947821288 ], [ -95.880686086602253, 28.633899947972949 ], [ -95.877213085397685, 28.635388948997587 ], [ -95.87691708534858, 28.635483948793883 ], [ -95.873471084785777, 28.636947948949654 ], [ -95.868248083552899, 28.639239949805674 ], [ -95.856537080363566, 28.644201950803993 ], [ -95.854329080371443, 28.645241951044845 ], [ -95.843459077070179, 28.649927952899787 ], [ -95.843425077489485, 28.649943952753471 ], [ -95.839817076837434, 28.651526953464828 ], [ -95.836882075534803, 28.652849953665847 ], [ -95.832027074417979, 28.654960953979163 ], [ -95.829742073693154, 28.656062954390595 ], [ -95.827610074069199, 28.657032955169747 ], [ -95.825820073054118, 28.657934954737254 ], [ -95.819384071338959, 28.660807955372213 ], [ -95.807465069130245, 28.666755956915196 ], [ -95.803621068473348, 28.668526957493025 ], [ -95.800232066837452, 28.670397957959185 ], [ -95.793833065323227, 28.673572959461893 ], [ -95.78073106302945, 28.680322960988445 ], [ -95.779512062292952, 28.680890961322664 ], [ -95.779055062743083, 28.68142496152106 ], [ -95.776084062010739, 28.682895961961759 ], [ -95.770752060521332, 28.685768962797606 ], [ -95.766829059657354, 28.687974962867703 ], [ -95.757751057242118, 28.692421964467801 ], [ -95.756085057356998, 28.693180964739167 ], [ -95.749230055047818, 28.697170965492603 ], [ -95.737346052398294, 28.703352966712895 ], [ -95.706528044917846, 28.71984597128025 ], [ -95.699255043228817, 28.723666972469001 ], [ -95.695956042634563, 28.725182973310023 ], [ -95.696265043193193, 28.725815973418275 ], [ -95.696407042788238, 28.726105972983209 ], [ -95.696489042947078, 28.726304973005572 ], [ -95.696900042837882, 28.726657973059655 ], [ -95.697002043553056, 28.727471973172879 ], [ -95.696958043513462, 28.727432973799463 ], [ -95.696995043185936, 28.727507972975264 ], [ -95.697031043038322, 28.727583973619254 ], [ -95.699498043708587, 28.732511974283693 ], [ -95.699645043709992, 28.732854973978295 ], [ -95.699791043793567, 28.733198974085866 ], [ -95.700405044103334, 28.734557974455733 ], [ -95.705651046173912, 28.745397976763389 ], [ -95.7054580462747, 28.745496977023564 ], [ -95.705215046428066, 28.745721976863567 ], [ -95.705115045926846, 28.745716976571263 ], [ -95.705059045976384, 28.745727977179993 ], [ -95.704753046142955, 28.745848977131644 ], [ -95.704678045540035, 28.745864976925564 ], [ -95.704616045687473, 28.745864976908081 ], [ -95.704529045885451, 28.745892977009945 ], [ -95.704329045376383, 28.745985976630731 ], [ -95.704192045947181, 28.745991976742584 ], [ -95.703999046136502, 28.746013976951659 ], [ -95.703974045729581, 28.746029977336253 ], [ -95.703955045772403, 28.746101977129559 ], [ -95.703977045484947, 28.746118977295268 ], [ -95.704085045421991, 28.746130977244455 ], [ -95.704198046220469, 28.746110976791933 ], [ -95.704348045335607, 28.746107977023556 ], [ -95.704547045734998, 28.746169976677077 ], [ -95.70464304589305, 28.746241976948539 ], [ -95.704680045411934, 28.746240976832599 ], [ -95.704811046244117, 28.746169976929465 ], [ -95.705082046500195, 28.746147977374321 ], [ -95.705261046431204, 28.746120977176364 ], [ -95.7054190465266, 28.746083976848567 ], [ -95.705587046398037, 28.746014977347095 ], [ -95.705897045771948, 28.745944977378802 ], [ -95.70599104654282, 28.745924976661527 ], [ -95.706269046339713, 28.745769977072346 ], [ -95.706409046369131, 28.745739976909771 ], [ -95.706464046804996, 28.745697977339169 ], [ -95.706547046045998, 28.745586976845829 ], [ -95.706769045952342, 28.745524976383166 ], [ -95.706903046043919, 28.745505976972233 ], [ -95.707174046765772, 28.745424976997345 ], [ -95.707237046500651, 28.745356976488594 ], [ -95.707254046694786, 28.745289976379301 ], [ -95.707319046556961, 28.745247976408816 ], [ -95.707441046251745, 28.745195976372351 ], [ -95.707525046655547, 28.745192977070243 ], [ -95.707713046893531, 28.745246976340479 ], [ -95.707786046411968, 28.74518797635616 ], [ -95.707919046593418, 28.745124976811507 ], [ -95.708040047158448, 28.745114976813753 ], [ -95.708163047031576, 28.745136976609182 ], [ -95.708302047226397, 28.745115976712786 ], [ -95.708350046666709, 28.745089976421667 ], [ -95.708376047003725, 28.74502497691887 ], [ -95.708469047334461, 28.744947976421443 ], [ -95.708600046363287, 28.744911976978365 ], [ -95.70869404737843, 28.744925976524637 ], [ -95.708862047072017, 28.744829976724645 ], [ -95.709084046970901, 28.744750976364394 ], [ -95.709271047475056, 28.744703976734399 ], [ -95.70983404764732, 28.744641976287944 ], [ -95.709938046790057, 28.744566976249434 ], [ -95.709873047069181, 28.745269976549405 ], [ -95.709870046806444, 28.745397976787125 ], [ -95.71043504775777, 28.745239976606523 ], [ -95.726877051199764, 28.739858974974812 ], [ -95.730715051801724, 28.740095974680404 ], [ -95.733269052831702, 28.741254975050502 ], [ -95.737610054187385, 28.743277975175193 ], [ -95.739018054623699, 28.744083975696494 ], [ -95.740165054564031, 28.744832976022188 ], [ -95.742809055312676, 28.7461359757975 ], [ -95.745666056633937, 28.74724697588946 ], [ -95.745994056571959, 28.747434976259949 ], [ -95.748044057001636, 28.748140975826967 ], [ -95.748346057052515, 28.748281975912896 ], [ -95.753041057875706, 28.749416975907568 ], [ -95.758450060137875, 28.749345975942997 ], [ -95.766965061410403, 28.749129975691307 ], [ -95.767306061855535, 28.749721975805105 ], [ -95.767332061520591, 28.749766975668834 ], [ -95.767359061619842, 28.750405976042199 ], [ -95.767367061725594, 28.750602975675225 ], [ -95.767530061717039, 28.750856976266245 ], [ -95.768019062535629, 28.751290975866951 ], [ -95.768550061997487, 28.751508976073499 ], [ -95.769081062732837, 28.751618976212796 ], [ -95.769367062952526, 28.751763976425732 ], [ -95.76977506234698, 28.752126976263181 ], [ -95.770182062887628, 28.752886976327694 ], [ -95.770303063257785, 28.753248976913373 ], [ -95.770301062477245, 28.753971977005161 ], [ -95.770178063004849, 28.754260977087291 ], [ -95.770014063151564, 28.75447697674279 ], [ -95.769030062173059, 28.75530697736416 ], [ -95.768457062948045, 28.755630976691865 ], [ -95.768212062541181, 28.755701977247895 ], [ -95.767761062164325, 28.756098976902177 ], [ -95.767514062292335, 28.756640977040416 ], [ -95.767553062643387, 28.757182977721403 ], [ -95.767757062662852, 28.757472977604092 ], [ -95.768287062765353, 28.757871977652425 ], [ -95.769717063042947, 28.758271977870901 ], [ -95.77045206279108, 28.758562977099398 ], [ -95.771393062880648, 28.758564977720816 ], [ -95.772211063414275, 28.758385977156113 ], [ -95.77290606334671, 28.758314977587492 ], [ -95.773356064320822, 28.758171977703501 ], [ -95.773765064183507, 28.758172977558559 ], [ -95.77405106430443, 28.758317977027581 ], [ -95.775112064832911, 28.759223977860888 ], [ -95.775479064021397, 28.759549977706893 ], [ -95.775805064201137, 28.759947978034418 ], [ -95.77588606457293, 28.760092977414153 ], [ -95.77588606426545, 28.760381977963256 ], [ -95.775475064318897, 28.761176977588928 ], [ -95.774859064606062, 28.762042978363244 ], [ -95.774570064775361, 28.762945978717177 ], [ -95.774365064714758, 28.763198978785255 ], [ -95.773996064559356, 28.763450978472171 ], [ -95.773628064417878, 28.763558978198049 ], [ -95.772360063761553, 28.763772978438219 ], [ -95.772114063889887, 28.763916978223637 ], [ -95.77117106330364, 28.764782978750166 ], [ -95.770557063697183, 28.765034978698186 ], [ -95.77018906378855, 28.765033979136959 ], [ -95.770067063803552, 28.765105978921259 ], [ -95.769739063603026, 28.765104978659558 ], [ -95.769289063161679, 28.765212978872817 ], [ -95.768961063344989, 28.765500978674254 ], [ -95.768920063065991, 28.765753978646803 ], [ -95.769042062878952, 28.76604397885675 ], [ -95.769898062871206, 28.766768979028825 ], [ -95.770021063175463, 28.766949979207745 ], [ -95.770142063735904, 28.767310979505581 ], [ -95.770221063288929, 28.768323979320126 ], [ -95.770178064008576, 28.769226979477999 ], [ -95.769643063487777, 28.770310979983428 ], [ -95.769355062869579, 28.771141980265952 ], [ -95.769079063249606, 28.771591979994859 ], [ -95.768487062848166, 28.771805980271388 ], [ -95.767635062647315, 28.77211398019125 ], [ -95.767349063303172, 28.772040980702716 ], [ -95.76628706213809, 28.771387980589957 ], [ -95.765715062853801, 28.771169979925592 ], [ -95.76465306227081, 28.770950980666932 ], [ -95.76330306224061, 28.770911980055761 ], [ -95.762608061870466, 28.77105497998846 ], [ -95.762116061512813, 28.771450980582138 ], [ -95.761910061631184, 28.771847980903964 ], [ -95.761909061053103, 28.77231798047125 ], [ -95.761990061136544, 28.772534981059234 ], [ -95.762071061431016, 28.772679981019451 ], [ -95.762602061795491, 28.773114981197423 ], [ -95.763501062282529, 28.773152980589078 ], [ -95.764033062137628, 28.773009980961362 ], [ -95.764320062316017, 28.773010980761264 ], [ -95.764810061806315, 28.77322898045491 ], [ -95.76513606262067, 28.773517980834729 ], [ -95.765380062538028, 28.774024981240292 ], [ -95.765461062294406, 28.774386980723648 ], [ -95.765868062309238, 28.774965980750199 ], [ -95.765867062438119, 28.775399981504084 ], [ -95.7656610629531, 28.775832981471655 ], [ -95.765169062389759, 28.776337981122996 ], [ -95.764678061906025, 28.776625981799022 ], [ -95.764023062306336, 28.776841981129294 ], [ -95.76353206233938, 28.776840981623341 ], [ -95.763042062488282, 28.776658981433091 ], [ -95.762675062135031, 28.776332981868809 ], [ -95.762390061616784, 28.775825981600516 ], [ -95.762310061309961, 28.775210981418944 ], [ -95.761944061192011, 28.77445098125277 ], [ -95.761658061951962, 28.774197980734669 ], [ -95.761331061295508, 28.774051980716603 ], [ -95.76075906136019, 28.77390598103673 ], [ -95.759942060749424, 28.773831980887689 ], [ -95.759737061526806, 28.773759981258152 ], [ -95.758756061008157, 28.773756981256572 ], [ -95.758510060448288, 28.773792981206938 ], [ -95.757282060059111, 28.774295981667084 ], [ -95.756955060555455, 28.774331980911139 ], [ -95.756750060024714, 28.774439980990788 ], [ -95.756545060451899, 28.77461998146142 ], [ -95.756381060083299, 28.774908981157662 ], [ -95.756419059929328, 28.775703981857156 ], [ -95.756786060003208, 28.77631998153905 ], [ -95.757642060651946, 28.777080981843422 ], [ -95.757969060910483, 28.777297982283052 ], [ -95.75821406092976, 28.777370981505189 ], [ -95.758827061361828, 28.777372981758663 ], [ -95.760383060824736, 28.77676198119336 ], [ -95.761038061589375, 28.776762981803209 ], [ -95.761650061306284, 28.77694498136206 ], [ -95.76226306180827, 28.777379982109171 ], [ -95.762302062278906, 28.7779229816541 ], [ -95.761849062204433, 28.77907798169581 ], [ -95.76156106169303, 28.779655982236754 ], [ -95.761315061341364, 28.779980982172841 ], [ -95.761069061458315, 28.780196982419312 ], [ -95.760700061824977, 28.780376982119932 ], [ -95.759882060912517, 28.78041198211633 ], [ -95.759106061632608, 28.780120982213578 ], [ -95.758411060776766, 28.779937982023625 ], [ -95.757920060844086, 28.779936981978476 ], [ -95.757429061072614, 28.780152982304447 ], [ -95.756937061051403, 28.780657982778756 ], [ -95.756895060416582, 28.780765982890216 ], [ -95.756852060210491, 28.781669983007923 ], [ -95.756523060385689, 28.782355982746093 ], [ -95.75648106052482, 28.782753983182349 ], [ -95.756357060730338, 28.782969983218546 ], [ -95.755824060898235, 28.783366983450406 ], [ -95.755579060181901, 28.783438983494232 ], [ -95.755047060302857, 28.783436983564986 ], [ -95.754230060131846, 28.783181983209523 ], [ -95.753453059524887, 28.783180983362936 ], [ -95.753166059475745, 28.783324983194955 ], [ -95.75308406006954, 28.783323983600535 ], [ -95.752470059565908, 28.783539983699605 ], [ -95.752061059943756, 28.783610983732373 ], [ -95.75144805972927, 28.7835739836352 ], [ -95.75099805874963, 28.7834639829737 ], [ -95.750240059330082, 28.783461983417371 ], [ -95.75022105933725, 28.783461983060494 ], [ -95.750139058988509, 28.783533983510779 ], [ -95.750007058705151, 28.783532983485475 ], [ -95.74988105861442, 28.783540983003999 ], [ -95.749307059270578, 28.78408198350002 ], [ -95.749305058957646, 28.784479983571003 ], [ -95.749550059133114, 28.784769983986884 ], [ -95.749507058997452, 28.785528983412213 ], [ -95.749342059233655, 28.785997983627361 ], [ -95.749095059144665, 28.786430984143738 ], [ -95.748767058962542, 28.786719984319308 ], [ -95.748481058590457, 28.786790984366732 ], [ -95.747826058843572, 28.786789983860093 ], [ -95.747172057904734, 28.786643983756083 ], [ -95.746272057957896, 28.786605983791006 ], [ -95.745946058062628, 28.78645998434386 ], [ -95.745783058436999, 28.786314983897046 ], [ -95.745743057795863, 28.785844983687277 ], [ -95.745825057925529, 28.785700984048653 ], [ -95.74623505779104, 28.78533998388577 ], [ -95.747382058724227, 28.78494498378198 ], [ -95.74799705814759, 28.784476984070778 ], [ -95.748448058322424, 28.783898983686282 ], [ -95.748491058471402, 28.78324898316631 ], [ -95.748369058722119, 28.782995983507359 ], [ -95.748165058199177, 28.782813983677773 ], [ -95.747512058741549, 28.782450983016073 ], [ -95.746695057759851, 28.782268983604094 ], [ -95.746040057410568, 28.782194983346386 ], [ -95.74575405827413, 28.782085983233511 ], [ -95.7450590574974, 28.782083982969191 ], [ -95.744813057533946, 28.7822999829406 ], [ -95.744812057778617, 28.782516982927458 ], [ -95.744648057939131, 28.782769983298909 ], [ -95.744524057226585, 28.783202983853254 ], [ -95.743661057410989, 28.784466984170706 ], [ -95.743456056929247, 28.784863983758758 ], [ -95.743331057668271, 28.785441984386104 ], [ -95.743370057066116, 28.786200983829101 ], [ -95.743287057038742, 28.786344984591665 ], [ -95.742590056954015, 28.786957983863338 ], [ -95.74173005737866, 28.787244984253867 ], [ -95.741812057258386, 28.787317984520921 ], [ -95.741819057500734, 28.787391984373116 ], [ -95.74182705671123, 28.787472984793283 ], [ -95.741852057322603, 28.78775198406214 ], [ -95.742178056971653, 28.788041984644998 ], [ -95.742750057165594, 28.788078984849214 ], [ -95.743037057434449, 28.788043984950363 ], [ -95.743241057153256, 28.788188984755873 ], [ -95.743240057579712, 28.788513984415573 ], [ -95.743158056912122, 28.788694985049499 ], [ -95.742912057570464, 28.788910984732144 ], [ -95.742911056898123, 28.789199984831409 ], [ -95.743237057909369, 28.789489984474105 ], [ -95.74352305767232, 28.789598985086926 ], [ -95.743768057858375, 28.789852985011393 ], [ -95.743767057205673, 28.790105984606917 ], [ -95.743685057948795, 28.790250985156753 ], [ -95.743192057016543, 28.790682985061718 ], [ -95.743192057981346, 28.790941985123425 ], [ -95.743268057113099, 28.791036984824721 ], [ -95.743713057303268, 28.791409984852599 ], [ -95.743914057857864, 28.791700985183631 ], [ -95.743973057522709, 28.791879984924229 ], [ -95.74386205787431, 28.792243985202528 ], [ -95.743702058065665, 28.792407985017643 ], [ -95.743558057327249, 28.792416985116891 ], [ -95.743269057845566, 28.792526985814277 ], [ -95.743105057826497, 28.792526985882091 ], [ -95.742655057308411, 28.792669985508603 ], [ -95.742491057628897, 28.792813985805132 ], [ -95.74249005790719, 28.793066985503547 ], [ -95.743224058073153, 28.793719985619017 ], [ -95.743264057476068, 28.794189985922678 ], [ -95.743222057652716, 28.79436998587482 ], [ -95.743099058106907, 28.794622986248775 ], [ -95.74293305787053, 28.795345985815217 ], [ -95.742768057207698, 28.795597985963727 ], [ -95.742522057053407, 28.795814986443272 ], [ -95.742399057838043, 28.795850985957095 ], [ -95.741907057839228, 28.796246986148045 ], [ -95.741375057686056, 28.79642598618052 ], [ -95.740718056619244, 28.797111986802399 ], [ -95.7398580568819, 28.797470986430344 ], [ -95.739326057208714, 28.797577986539508 ], [ -95.7381780568316, 28.798406987209166 ], [ -95.738177056127, 28.798695986739784 ], [ -95.738299056963925, 28.79887698687298 ], [ -95.738299056797189, 28.799165986611282 ], [ -95.7381340564406, 28.799454986663722 ], [ -95.738133057030112, 28.799779986743324 ], [ -95.738459057044338, 28.800142987117628 ], [ -95.738458056604472, 28.800467987152341 ], [ -95.738334057154177, 28.80079298712964 ], [ -95.738047056965911, 28.800972987238815 ], [ -95.737760056710712, 28.80126198758008 ], [ -95.737736056563534, 28.802616988039041 ], [ -95.736895056360495, 28.803319987652799 ], [ -95.736689056065131, 28.803788988338678 ], [ -95.736647056045371, 28.80404198784781 ], [ -95.736441056754799, 28.804402988466126 ], [ -95.735703056033941, 28.805087988699526 ], [ -95.735456056609664, 28.805520988175029 ], [ -95.735208055841838, 28.806207988429009 ], [ -95.734757056339959, 28.806639989046875 ], [ -95.734509056324427, 28.807325988915597 ], [ -95.73446605553211, 28.808048988816328 ], [ -95.734301056028713, 28.808446989311591 ], [ -95.734137056193461, 28.808626988892275 ], [ -95.734095056158907, 28.808951988908163 ], [ -95.733726055353685, 28.809276989273478 ], [ -95.732867056061906, 28.809310989629221 ], [ -95.732334055314723, 28.809489989560035 ], [ -95.731924055794408, 28.809849989110582 ], [ -95.731882055123066, 28.810138989836236 ], [ -95.731759055493555, 28.810355989358662 ], [ -95.731348055261336, 28.810716989903856 ], [ -95.731138055657937, 28.810773989783915 ], [ -95.730895055620294, 28.81091698933389 ], [ -95.730855055624005, 28.811293990048558 ], [ -95.731107055277093, 28.811533989418013 ], [ -95.731438055140401, 28.81185099019272 ], [ -95.731494055530206, 28.811916989664265 ], [ -95.73199405509996, 28.812251990015852 ], [ -95.73215605545947, 28.812433990292693 ], [ -95.732244055985205, 28.81257099002206 ], [ -95.732275055618658, 28.812680989672291 ], [ -95.732319055642463, 28.812916990383609 ], [ -95.732369055761197, 28.813048989790055 ], [ -95.732525055637097, 28.81317599023388 ], [ -95.73262505577938, 28.813229990228631 ], [ -95.73286205606945, 28.813295989848427 ], [ -95.733393056319386, 28.813235989717054 ], [ -95.733755056417081, 28.813432990410309 ], [ -95.734111056470184, 28.813570990093762 ], [ -95.734516055828351, 28.813702990546133 ], [ -95.735066056656478, 28.814086990458652 ], [ -95.735428056078348, 28.814289990274933 ], [ -95.735809056160107, 28.814652990239466 ], [ -95.736204057054849, 28.814848990038911 ], [ -95.736247056229217, 28.814848990099875 ], [ -95.73636805707217, 28.814849990590787 ], [ -95.736573057051331, 28.81466899017558 ], [ -95.736859056673765, 28.81466999031457 ], [ -95.737022057202097, 28.814814990168365 ], [ -95.737103057221233, 28.815031990297292 ], [ -95.737348057192662, 28.815249990595575 ], [ -95.738044057674784, 28.815250990531446 ], [ -95.738371056943606, 28.815143990324508 ], [ -95.738699057723494, 28.815144990190923 ], [ -95.738945057823187, 28.815072990417317 ], [ -95.739396057434604, 28.814712990518512 ], [ -95.739682057953232, 28.81471298982251 ], [ -95.740254057248961, 28.815003990188806 ], [ -95.740826057912457, 28.815113989904663 ], [ -95.74123505847372, 28.81543999068592 ], [ -95.741821057911153, 28.815337989893738 ], [ -95.741852057811414, 28.815282990166462 ], [ -95.741977058337014, 28.815282990526548 ], [ -95.742045058008316, 28.815331990448257 ], [ -95.742301058522045, 28.815556989931704 ], [ -95.742420058150913, 28.815600989936801 ], [ -95.742501058049385, 28.815606989963737 ], [ -95.742826058166614, 28.815573989823434 ], [ -95.743562058653836, 28.815556990038338 ], [ -95.743750058664844, 28.815567989788583 ], [ -95.743956058229898, 28.81551299041627 ], [ -95.744224059139796, 28.815374989944232 ], [ -95.744567059162662, 28.815154990089752 ], [ -95.744854058684851, 28.815033989871527 ], [ -95.745035058802827, 28.814978989720696 ], [ -95.745310059428206, 28.814939989614164 ], [ -95.745503058735835, 28.814923989747808 ], [ -95.745946059027915, 28.814961990432661 ], [ -95.746271058821989, 28.814928990054469 ], [ -95.746415059764317, 28.814889989639763 ], [ -95.746546059385125, 28.81481899031208 ], [ -95.746608059384897, 28.814768990122758 ], [ -95.746695059794149, 28.814779990257545 ], [ -95.746752059598222, 28.814812989575692 ], [ -95.746820059113759, 28.814895989774229 ], [ -95.746845059420266, 28.814977990424694 ], [ -95.74689505974591, 28.815071990292271 ], [ -95.747033059800799, 28.815274990502637 ], [ -95.747108059283434, 28.815340990066218 ], [ -95.747214059847906, 28.815378990161978 ], [ -95.747607059727727, 28.815362990309957 ], [ -95.748269060040911, 28.81526299013683 ], [ -95.74839405991969, 28.815218989735126 ], [ -95.748475060146902, 28.81516999026092 ], [ -95.748606059643706, 28.814943989670596 ], [ -95.748649059545869, 28.814767989768033 ], [ -95.748705060013606, 28.814597989818665 ], [ -95.748786059691099, 28.814487989562807 ], [ -95.748930060318557, 28.814404989946116 ], [ -95.749023059989526, 28.814366989990067 ], [ -95.749129060275607, 28.814349989994135 ], [ -95.749267059985002, 28.814349989504528 ], [ -95.749423060204478, 28.814410989690714 ], [ -95.749498060308781, 28.814465989449147 ], [ -95.749604060187565, 28.81456999004121 ], [ -95.749704060194304, 28.814717989993014 ], [ -95.749804060432794, 28.814816989728275 ], [ -95.74989806057981, 28.814827990320982 ], [ -95.750010060180742, 28.814800990184963 ], [ -95.750324059928261, 28.814695989653377 ], [ -95.75046205983908, 28.814557990103445 ], [ -95.750537059841818, 28.814453989327323 ], [ -95.750643060685874, 28.814266989770722 ], [ -95.750730059913622, 28.814085989269412 ], [ -95.750774060620003, 28.813892989334704 ], [ -95.750830059958503, 28.813777989809012 ], [ -95.750930059938781, 28.813689989860116 ], [ -95.751374060987203, 28.813387989499603 ], [ -95.75164806063971, 28.813255989643967 ], [ -95.751911060193081, 28.813173989407169 ], [ -95.752173061155929, 28.813074989042381 ], [ -95.752310061125442, 28.812997989042007 ], [ -95.752754061000431, 28.812673989139501 ], [ -95.753365060858627, 28.812250988825397 ], [ -95.753734060774562, 28.811970989524795 ], [ -95.75399606117945, 28.811717989512339 ], [ -95.754321061123946, 28.811431988594279 ], [ -95.754458061031301, 28.81139398920854 ], [ -95.75460206109895, 28.811371988669027 ], [ -95.754870061258515, 28.811349988869001 ], [ -95.755107061168815, 28.811310988601775 ], [ -95.755338061234269, 28.811206988975144 ], [ -95.755488061460667, 28.811102988923366 ], [ -95.755601061528182, 28.810970989164051 ], [ -95.755713061508416, 28.810794989203679 ], [ -95.756013061665769, 28.810563988377929 ], [ -95.756637062034443, 28.810167988526196 ], [ -95.756843061407579, 28.810074988727056 ], [ -95.757081061728726, 28.810089988782572 ], [ -95.757105061560125, 28.81009198868291 ], [ -95.75729306217616, 28.810140988256983 ], [ -95.757461061536702, 28.810206988717269 ], [ -95.757642061557434, 28.810338988329075 ], [ -95.757898062372021, 28.810723988634525 ], [ -95.757966061821406, 28.810905988654721 ], [ -95.758010061624034, 28.811333988780124 ], [ -95.75796006242237, 28.811526988687532 ], [ -95.757879061705637, 28.811746989303877 ], [ -95.757785062251145, 28.811933989467882 ], [ -95.757691062471437, 28.812020989101494 ], [ -95.757504061707451, 28.812158988757083 ], [ -95.757198061505719, 28.81227398921774 ], [ -95.757092061895435, 28.812345989530819 ], [ -95.757017061652419, 28.812466988828586 ], [ -95.756979061676887, 28.812603989529599 ], [ -95.756717062357993, 28.812900989047954 ], [ -95.756542062136319, 28.813114989586548 ], [ -95.756486061722697, 28.813219989474526 ], [ -95.756448061903797, 28.813334989582369 ], [ -95.756380062131001, 28.813416988974584 ], [ -95.756186062096901, 28.813559989209118 ], [ -95.75613606151768, 28.813658989120508 ], [ -95.756167061614804, 28.81379698957296 ], [ -95.756267061888224, 28.81395598912464 ], [ -95.75629806171105, 28.814241989911991 ], [ -95.756448061463558, 28.814477989461096 ], [ -95.75645406179639, 28.814560989877567 ], [ -95.75644106188345, 28.814730989949098 ], [ -95.756466061518978, 28.81489098951393 ], [ -95.756423061819746, 28.815033990018939 ], [ -95.756491061772422, 28.815093989842303 ], [ -95.756847061672616, 28.815170989491303 ], [ -95.756959061705217, 28.815220989690758 ], [ -95.757028062083734, 28.815297989737797 ], [ -95.75717806158157, 28.815539989491892 ], [ -95.757215061986841, 28.815638989978176 ], [ -95.757284062139675, 28.815698989433184 ], [ -95.757452062067173, 28.815781990142508 ], [ -95.757677061844589, 28.815836990112416 ], [ -95.757814061985329, 28.815968989751727 ], [ -95.757933062510347, 28.816155989543976 ], [ -95.757995062308979, 28.816199989817175 ], [ -95.75825106286706, 28.816287990063902 ], [ -95.758507062650793, 28.816430990034569 ], [ -95.758682062372714, 28.816479990367252 ], [ -95.758944062973654, 28.816600990188029 ], [ -95.759143062707523, 28.816672989702681 ], [ -95.759225062328071, 28.816749989933246 ], [ -95.759518062706533, 28.816820989549957 ], [ -95.759867062624224, 28.81695399009282 ], [ -95.759961062336529, 28.816980990043646 ], [ -95.760198062468703, 28.817085989860402 ], [ -95.760329063236014, 28.817129990231773 ], [ -95.760641062948139, 28.817189990357132 ], [ -95.760797063506999, 28.817266989803066 ], [ -95.760903063555688, 28.817349989797055 ], [ -95.760947062929304, 28.817420990447832 ], [ -95.761078062882945, 28.817536989780947 ], [ -95.761197063515212, 28.81760799034906 ], [ -95.761315062983556, 28.81764099006854 ], [ -95.761565063256171, 28.817734990152736 ], [ -95.76167106345865, 28.817833989751449 ], [ -95.761827063666033, 28.817932990184904 ], [ -95.762020063209476, 28.818025989933705 ], [ -95.762370063072296, 28.818163990073501 ], [ -95.762819064015531, 28.81839499035728 ], [ -95.763331064004745, 28.8186919898973 ], [ -95.763525063896381, 28.818779990098282 ], [ -95.763762063916587, 28.818850990654507 ], [ -95.763805064074333, 28.818905990078527 ], [ -95.763893063594992, 28.819081990163959 ], [ -95.764055064260944, 28.819219990560867 ], [ -95.764155063832519, 28.81935699052746 ], [ -95.764280064333647, 28.819554990796348 ], [ -95.764404064157162, 28.819549990648763 ], [ -95.764529064350057, 28.819483990023233 ], [ -95.764698064096251, 28.819488990418218 ], [ -95.764841064005864, 28.819560990388911 ], [ -95.764960064723567, 28.81967599012696 ], [ -95.765054063812798, 28.819730990600448 ], [ -95.765297064133193, 28.81993499013868 ], [ -95.765653064594247, 28.820187990679237 ], [ -95.766046064863573, 28.820363990936649 ], [ -95.766464064208421, 28.820588990398861 ], [ -95.766601064392546, 28.820726990675862 ], [ -95.766702064504386, 28.820804990436063 ], [ -95.76676606521292, 28.820853990966526 ], [ -95.766901064823813, 28.820957991035343 ], [ -95.767469064717389, 28.82133199055388 ], [ -95.767594064516629, 28.821435991043124 ], [ -95.767793065006785, 28.821683990470277 ], [ -95.768030065406407, 28.821908990577789 ], [ -95.768399064691593, 28.822233990759766 ], [ -95.768561065463203, 28.82246999066421 ], [ -95.768698064982885, 28.822618990643559 ], [ -95.769210065510364, 28.822931991200257 ], [ -95.769459065919889, 28.823113991136651 ], [ -95.769722065087961, 28.823333990575009 ], [ -95.769965065285348, 28.823630990880581 ], [ -95.770414065384173, 28.824031990950203 ], [ -95.770651065349185, 28.824278991013678 ], [ -95.770757065382824, 28.824372991099622 ], [ -95.770857066344064, 28.824410991154799 ], [ -95.77095106559257, 28.824460990880791 ], [ -95.771425066304289, 28.82478499100414 ], [ -95.771725065728546, 28.825081991003699 ], [ -95.771906066046057, 28.825224991071757 ], [ -95.772074066330021, 28.825334991082968 ], [ -95.77223706579889, 28.825461991545954 ], [ -95.772368066102786, 28.825604991328792 ], [ -95.772499066617485, 28.825780991561615 ], [ -95.772761066067929, 28.826033991632016 ], [ -95.772898066515452, 28.826110991110461 ], [ -95.773322066441281, 28.826555991377486 ], [ -95.773447066680703, 28.826742991214171 ], [ -95.773666066683134, 28.826890991453457 ], [ -95.774171066845582, 28.82728199207574 ], [ -95.774446066854935, 28.827479992113908 ], [ -95.774564067401613, 28.827558991661686 ], [ -95.77483906707289, 28.827743992096394 ], [ -95.775326067576231, 28.828238992192823 ], [ -95.775607067199772, 28.828452992084372 ], [ -95.775875067334425, 28.828623991974961 ], [ -95.776275067502951, 28.82883299227829 ], [ -95.777124067430137, 28.828947991803354 ], [ -95.777392067383587, 28.828947991947636 ], [ -95.777617067780156, 28.828964991855429 ], [ -95.777748068195493, 28.829019991821927 ], [ -95.777829068141202, 28.829079992382173 ], [ -95.7781100680252, 28.829365991673384 ], [ -95.778172067767997, 28.829464992051417 ], [ -95.778247067882674, 28.829624992079896 ], [ -95.778310067728128, 28.829690991742783 ], [ -95.778478067908495, 28.82980599233607 ], [ -95.778559067847382, 28.829844992248635 ], [ -95.778615068018027, 28.829915991636572 ], [ -95.778665068583891, 28.830020992392758 ], [ -95.778659067776886, 28.830108991761229 ], [ -95.778628068124817, 28.830201992131649 ], [ -95.778409068075007, 28.830388992249521 ], [ -95.77823406768259, 28.830564992498719 ], [ -95.77809706767691, 28.830734991902009 ], [ -95.777841067825861, 28.830882992575866 ], [ -95.7777600675211, 28.830954992413584 ], [ -95.777704068234897, 28.830987992509783 ], [ -95.777660068332096, 28.831102992588956 ], [ -95.777616068189118, 28.831174992105677 ], [ -95.777498067922437, 28.831295992743353 ], [ -95.777398067685453, 28.831333992700308 ], [ -95.777242067690892, 28.831333992291324 ], [ -95.777167068097597, 28.831350992090762 ], [ -95.777154067322172, 28.831399992301748 ], [ -95.777154067874193, 28.831454992324879 ], [ -95.777104067424176, 28.831520992096998 ], [ -95.777029068199255, 28.8315369925533 ], [ -95.776942068030138, 28.831509992676288 ], [ -95.776855067371287, 28.831509992194349 ], [ -95.776811067812744, 28.831547992550977 ], [ -95.776717067607137, 28.831597992688504 ], [ -95.776611067635798, 28.831602992104067 ], [ -95.776417067279056, 28.831679992962247 ], [ -95.776230067987882, 28.831795992751061 ], [ -95.775918067509451, 28.832080992772713 ], [ -95.775637067193998, 28.832394992794839 ], [ -95.775487067749069, 28.832586993021227 ], [ -95.775418067021931, 28.832641992773176 ], [ -95.775356067591304, 28.832767993039511 ], [ -95.775300067295348, 28.832927992580128 ], [ -95.775281067220831, 28.833213992777921 ], [ -95.775218067225254, 28.83328499303024 ], [ -95.774925067705468, 28.833565993070149 ], [ -95.774719067501422, 28.833790993234643 ], [ -95.774675067456982, 28.833883992957301 ], [ -95.77465006689728, 28.833966992894748 ], [ -95.774656067358549, 28.834037992649044 ], [ -95.774650067736275, 28.834213993467944 ], [ -95.774681067108418, 28.834433992878353 ], [ -95.774575067243774, 28.834752993522162 ], [ -95.774594067472492, 28.834834993303275 ], [ -95.774631067780447, 28.834917993592416 ], [ -95.774662067611771, 28.834972992886634 ], [ -95.774756067840713, 28.835076993137367 ], [ -95.774806066985903, 28.835208993021475 ], [ -95.7747810678527, 28.835401993106217 ], [ -95.774693067153663, 28.835566993302717 ], [ -95.774575067616468, 28.835703993567115 ], [ -95.774262067316116, 28.836022993647134 ], [ -95.774250066973281, 28.836082993743513 ], [ -95.774275067088311, 28.836456993705955 ], [ -95.774256067322682, 28.836588993898008 ], [ -95.774168067404531, 28.836885993387991 ], [ -95.774093067265895, 28.837088993705354 ], [ -95.774018066917776, 28.837374993698933 ], [ -95.773956067572925, 28.8375229938082 ], [ -95.773775067570028, 28.838050994364433 ], [ -95.773725067451807, 28.838166993957071 ], [ -95.773656066846641, 28.83827699386995 ], [ -95.77355606664328, 28.838391994284379 ], [ -95.773344067097625, 28.838561993933926 ], [ -95.773306066844384, 28.838611994054986 ], [ -95.7733060672265, 28.838682994323168 ], [ -95.77338106717491, 28.838715993913251 ], [ -95.773512067145433, 28.838748993807442 ], [ -95.773693067594365, 28.838820994164752 ], [ -95.773725067395773, 28.838842993912905 ], [ -95.773718067045053, 28.83891399378723 ], [ -95.773643067567576, 28.839095993722665 ], [ -95.773575067029213, 28.839166994579386 ], [ -95.773406067125379, 28.839155994350293 ], [ -95.773300066732091, 28.83916199419582 ], [ -95.773200066651455, 28.839237994512398 ], [ -95.773050067076738, 28.83944199451965 ], [ -95.772931067473237, 28.839677994395625 ], [ -95.772919067507431, 28.839842994536255 ], [ -95.77288106736998, 28.83990899475495 ], [ -95.772706067053804, 28.839952994142191 ], [ -95.772613066741656, 28.839947994177827 ], [ -95.772519066557322, 28.83990899435523 ], [ -95.772394067100947, 28.839842994343837 ], [ -95.772301067410908, 28.839831993984721 ], [ -95.772088067031277, 28.839974994107191 ], [ -95.771907066505065, 28.840073994717002 ], [ -95.771495066666773, 28.840260994442019 ], [ -95.771245066707351, 28.840325994813917 ], [ -95.771158066578195, 28.840364994287196 ], [ -95.771108066105455, 28.840435994717645 ], [ -95.770977066556441, 28.840919994616382 ], [ -95.770939066878327, 28.84110699471271 ], [ -95.770958066167012, 28.84124999441315 ], [ -95.770989066358496, 28.841337994268919 ], [ -95.771033066948604, 28.841392994600493 ], [ -95.771301066870379, 28.841617994868439 ], [ -95.771345066696043, 28.84168999455612 ], [ -95.771345066220718, 28.841727995145902 ], [ -95.771289066573445, 28.841788995113028 ], [ -95.770970066284846, 28.842008994822582 ], [ -95.770914066190031, 28.842096995036073 ], [ -95.770733066693978, 28.842244994995653 ], [ -95.77060206614334, 28.842288994733828 ], [ -95.770527066743142, 28.842288995131884 ], [ -95.770296066922995, 28.842238995346406 ], [ -95.770190066191631, 28.842244994588707 ], [ -95.770102066555182, 28.842321994997103 ], [ -95.77008306624019, 28.842392995344522 ], [ -95.77002706621947, 28.84247599519999 ], [ -95.76980906659368, 28.842563994744353 ], [ -95.769596066644354, 28.842590995205729 ], [ -95.769116066088259, 28.84261299516487 ], [ -95.768622066233789, 28.842557995228017 ], [ -95.768273065899479, 28.842507994610834 ], [ -95.76815406604203, 28.842474994622524 ], [ -95.768029066240231, 28.842485994655593 ], [ -95.767648065671636, 28.842600994774291 ], [ -95.766312065850471, 28.842589995460564 ], [ -95.764833065547847, 28.842517995587077 ], [ -95.764121064432317, 28.842577994763467 ], [ -95.7639210647135, 28.842616995531682 ], [ -95.763846064580179, 28.842671995037279 ], [ -95.763808064536477, 28.842781995504733 ], [ -95.763590064799843, 28.843006994839183 ], [ -95.763540065073485, 28.843149995009803 ], [ -95.76351506434365, 28.843330994901368 ], [ -95.763508064958643, 28.843479995248778 ], [ -95.763521064344516, 28.843677995544184 ], [ -95.763558065048016, 28.843858995431024 ], [ -95.763627064939129, 28.843974995924341 ], [ -95.763764065141856, 28.844095995348191 ], [ -95.763983065362126, 28.844238995643899 ], [ -95.764632065060397, 28.844524995137807 ], [ -95.765487065704491, 28.844744995182594 ], [ -95.766099065654714, 28.844854995359391 ], [ -95.76619906561065, 28.844887995735252 ], [ -95.766393065807975, 28.845063995797307 ], [ -95.766642065322003, 28.845233995820099 ], [ -95.766842065640091, 28.845327995373587 ], [ -95.767035065503364, 28.845431995726742 ], [ -95.767148066035077, 28.845541995582355 ], [ -95.767522066402634, 28.845855995907886 ], [ -95.767678066461102, 28.84587799587969 ], [ -95.767772065869039, 28.84591599613038 ], [ -95.767828066411298, 28.845954995997257 ], [ -95.768066065998752, 28.845949995908587 ], [ -95.768172065800229, 28.845954995740808 ], [ -95.768272065693623, 28.845993995609383 ], [ -95.768527066669094, 28.846125995669102 ], [ -95.768927066789004, 28.846312995647768 ], [ -95.769224066244078, 28.846418995902248 ], [ -95.769464066685742, 28.846504995386042 ], [ -95.769539066665843, 28.846559995637445 ], [ -95.769608066231314, 28.84658799570256 ], [ -95.769789066200616, 28.846625995798167 ], [ -95.769845066840119, 28.846664995691739 ], [ -95.769888067029868, 28.846713996209232 ], [ -95.769901066242625, 28.84680199625954 ], [ -95.769851066927785, 28.847120995555354 ], [ -95.769851066502198, 28.847329995766327 ], [ -95.769838066505741, 28.847510996030195 ], [ -95.769844067004499, 28.847681996257638 ], [ -95.769826066572179, 28.847763995843632 ], [ -95.769776066082798, 28.847873995777178 ], [ -95.769663066953541, 28.848016995750481 ], [ -95.769526066270174, 28.848148996520958 ], [ -95.769257066120844, 28.848445996273284 ], [ -95.76915106596482, 28.848582996213949 ], [ -95.769051066389409, 28.848747996431534 ], [ -95.768926066028612, 28.849099996582702 ], [ -95.768889066657309, 28.849429996167128 ], [ -95.768857066031785, 28.849517996428474 ], [ -95.768739066474623, 28.849764996839756 ], [ -95.76867006606065, 28.850072996365245 ], [ -95.768726066078301, 28.850319996773276 ], [ -95.768894066291097, 28.850660996962365 ], [ -95.769000066788792, 28.850918997109396 ], [ -95.769100066445219, 28.85111199636567 ], [ -95.769200066212974, 28.851270996552969 ], [ -95.769344067110978, 28.851435996656406 ], [ -95.769749067206263, 28.85172199701065 ], [ -95.769824067165899, 28.851870997004163 ], [ -95.76984306654397, 28.852002996652878 ], [ -95.769824067120453, 28.852232997156953 ], [ -95.769824066320197, 28.85242599714708 ], [ -95.7698740665993, 28.852557997059023 ], [ -95.76998006676726, 28.852705997003305 ], [ -95.770030066850779, 28.852876996735951 ], [ -95.770109066966398, 28.854064997173268 ], [ -95.770681066881608, 28.854535997526384 ], [ -95.773137067642168, 28.85450499705534 ], [ -95.773505067399768, 28.854794997039821 ], [ -95.774733068383597, 28.854869997240908 ], [ -95.774814067800563, 28.854941997741395 ], [ -95.776165068427431, 28.854944997700315 ], [ -95.776697068142411, 28.85505499756793 ], [ -95.777638068991294, 28.855092997704865 ], [ -95.778456068690005, 28.855383997804548 ], [ -95.778620069024342, 28.855383997684367 ], [ -95.778824068797206, 28.855492996923005 ], [ -95.779929069139456, 28.855603997772921 ], [ -95.780011069336339, 28.855675997602333 ], [ -95.780584070033399, 28.855857997577584 ], [ -95.781034069804534, 28.855930997527725 ], [ -95.782835069836153, 28.85597099708054 ], [ -95.783039070145207, 28.856043997709978 ], [ -95.784022070504548, 28.856081997466848 ], [ -95.78422607028358, 28.856153996958575 ], [ -95.784471070318446, 28.856371997611433 ], [ -95.784847070466853, 28.857502997967234 ], [ -95.784853070396593, 28.857782997423005 ], [ -95.784922071036632, 28.858414998023417 ], [ -95.784953070841169, 28.858673997699725 ], [ -95.784990071097113, 28.858744997960066 ], [ -95.785065070465905, 28.858821997459554 ], [ -95.785153070860176, 28.858887998217575 ], [ -95.785221071301251, 28.858992997505997 ], [ -95.785234070805686, 28.859008998176371 ], [ -95.785265070617641, 28.859184998261803 ], [ -95.785308071395818, 28.859280998287613 ], [ -95.78533407065045, 28.859338997942867 ], [ -95.78538107118176, 28.859542997612248 ], [ -95.785396070911801, 28.859607997664632 ], [ -95.785515070580388, 28.859849998180096 ], [ -95.78554607150113, 28.859965998317037 ], [ -95.785608071598134, 28.860300997972409 ], [ -95.785639070735087, 28.860372998299763 ], [ -95.785750071345191, 28.86049899818974 ], [ -95.785789071573717, 28.860542998445531 ], [ -95.785870071549382, 28.860877998283897 ], [ -95.785939071647718, 28.861075998239816 ], [ -95.785883071284772, 28.861273998167075 ], [ -95.785883071376986, 28.861328998064938 ], [ -95.785895070799086, 28.861361998257909 ], [ -95.785933070877476, 28.861400998640857 ], [ -95.785945071186461, 28.861482998575941 ], [ -95.785839071305517, 28.861636998408816 ], [ -95.785808071021762, 28.861713998555068 ], [ -95.78583307154318, 28.86183999870666 ], [ -95.785895071771506, 28.861922998297143 ], [ -95.786008071734258, 28.862004998728445 ], [ -95.786089071334288, 28.862131998240887 ], [ -95.786157071540657, 28.862494998807062 ], [ -95.786289070948143, 28.862911998571377 ], [ -95.786388071726989, 28.863043998325896 ], [ -95.786470071736815, 28.863120998411809 ], [ -95.786569071330462, 28.863148998387892 ], [ -95.786663071868219, 28.863192998453052 ], [ -95.787182071800373, 28.863351998595398 ], [ -95.78731907190398, 28.863423998888077 ], [ -95.787475071623021, 28.863522998508884 ], [ -95.787594071712036, 28.863626998522527 ], [ -95.787762071358699, 28.86369899886531 ], [ -95.788049071479847, 28.863725999128405 ], [ -95.7884680722577, 28.863742998662502 ], [ -95.788693071784735, 28.863797999107049 ], [ -95.788974071918247, 28.863901998686178 ], [ -95.789124071728295, 28.863984999165766 ], [ -95.789255072371844, 28.864072998747304 ], [ -95.789348072497248, 28.864160998558191 ], [ -95.789405072624817, 28.864248999195389 ], [ -95.789417072392055, 28.864286999028845 ], [ -95.789592072210795, 28.86455699920214 ], [ -95.78963607249419, 28.864605999034552 ], [ -95.789723072844879, 28.864649999182962 ], [ -95.789792072779051, 28.864671999013225 ], [ -95.789886072380085, 28.86473899898921 ], [ -95.78989807190095, 28.864753999194356 ], [ -95.790160072588208, 28.865067999447863 ], [ -95.790285072964551, 28.865149999025942 ], [ -95.790385072940765, 28.865358999140124 ], [ -95.790404072334098, 28.865512999047422 ], [ -95.790410072879268, 28.865847999519282 ], [ -95.790428072152324, 28.865963999197056 ], [ -95.790503072985402, 28.866078999471306 ], [ -95.790691072620959, 28.866573999154404 ], [ -95.790734072265025, 28.867040998944567 ], [ -95.790734073012302, 28.867161999674014 ], [ -95.790647072961605, 28.867326999438657 ], [ -95.790534072833282, 28.867623999145938 ], [ -95.790366072170386, 28.86788799985754 ], [ -95.790260072425738, 28.868024999293027 ], [ -95.790235072166851, 28.868085999960197 ], [ -95.790241072601859, 28.868124000057769 ], [ -95.790291072843956, 28.868145999906531 ], [ -95.790466072326126, 28.868283999639637 ], [ -95.790509072201203, 28.86834399947967 ], [ -95.79041607318463, 28.868624999335513 ], [ -95.79037807217253, 28.868707000136979 ], [ -95.790385072563936, 28.868822999420718 ], [ -95.790353072599984, 28.868887999582732 ], [ -95.790185073117399, 28.868954000196766 ], [ -95.789866072956414, 28.869026000173712 ], [ -95.789854072557134, 28.869048000211308 ], [ -95.789841072373974, 28.869130000285153 ], [ -95.78979107268708, 28.869201999839838 ], [ -95.789660072770673, 28.869294999740795 ], [ -95.789572072984768, 28.869394000001908 ], [ -95.78946607247488, 28.869602999909524 ], [ -95.789404072934403, 28.869768000234753 ], [ -95.789341072768309, 28.870119999662347 ], [ -95.78923507235946, 28.8704279998666 ], [ -95.789260072047114, 28.870465999796512 ], [ -95.789304072709868, 28.870647999862808 ], [ -95.789235072504269, 28.870741000454476 ], [ -95.789229071987705, 28.870801000577273 ], [ -95.789248072680081, 28.870833999942572 ], [ -95.789329072114512, 28.870889000652621 ], [ -95.789466072401126, 28.871109000384987 ], [ -95.789647072973466, 28.871307000642371 ], [ -95.789728072517391, 28.871428000185968 ], [ -95.78983507302479, 28.871643000231881 ], [ -95.789897072220228, 28.872357000557958 ], [ -95.789897072686998, 28.872621000520851 ], [ -95.790109072466791, 28.87326400045519 ], [ -95.790280073228786, 28.873702001082087 ], [ -95.790397073079703, 28.874334001178521 ], [ -95.790412072563441, 28.875117000673047 ], [ -95.790536072668274, 28.875425001199176 ], [ -95.790754072946157, 28.875853001077473 ], [ -95.790877073560026, 28.87616700162398 ], [ -95.790894072886871, 28.876407001714739 ], [ -95.79082907306794, 28.876569001037545 ], [ -95.789905072617145, 28.877042001390887 ], [ -95.789469073049631, 28.877443001516578 ], [ -95.78923607252004, 28.877927002116703 ], [ -95.789214072921311, 28.877972001932964 ], [ -95.789130072852259, 28.878259002187338 ], [ -95.789147072916535, 28.878484001743754 ], [ -95.789226073136604, 28.878829001972832 ], [ -95.789270072943211, 28.878938001595813 ], [ -95.789350072942057, 28.879059002343048 ], [ -95.789638073165122, 28.879323002105838 ], [ -95.790379072743008, 28.879846001900678 ], [ -95.790639073121639, 28.879989001884013 ], [ -95.791023072928368, 28.880125002226073 ], [ -95.791399073856653, 28.880259001956077 ], [ -95.792124073558483, 28.880387001950744 ], [ -95.79269507365882, 28.880909001875207 ], [ -95.793464074113288, 28.881322002206264 ], [ -95.794435073916205, 28.881671001943658 ], [ -95.794553074783423, 28.881741001931267 ], [ -95.793273073939588, 28.882959002224396 ], [ -95.794179074044862, 28.883695003015404 ], [ -95.79733807495532, 28.886259003101621 ], [ -95.79749607545854, 28.886396003253555 ], [ -95.797662075601465, 28.886562003443455 ], [ -95.797814074908217, 28.886737003321105 ], [ -95.797945074927654, 28.886913003457 ], [ -95.798063075726901, 28.887099003331315 ], [ -95.798144075095294, 28.887249003174031 ], [ -95.79816207544232, 28.88728200318511 ], [ -95.798247075096739, 28.887471003306437 ], [ -95.798320075036969, 28.887671003161039 ], [ -95.798614075884558, 28.888738003276803 ], [ -95.798632075311176, 28.888802003212415 ], [ -95.798799075554697, 28.889411003417923 ], [ -95.798844076049235, 28.889555003573733 ], [ -95.798918075883876, 28.889745003705759 ], [ -95.7990310754451, 28.88997300409245 ], [ -95.799139075621255, 28.890151004242156 ], [ -95.799254075421743, 28.890311003681688 ], [ -95.799390075738586, 28.890474003958715 ], [ -95.799536075936189, 28.890625003668088 ], [ -95.799701075594328, 28.890773003592869 ], [ -95.802468076808637, 28.893160004487683 ], [ -95.805359078054138, 28.895655004930752 ], [ -95.805692077494342, 28.895952004724855 ], [ -95.806007077315542, 28.896251004566722 ], [ -95.80644007835663, 28.89669200492559 ], [ -95.806738077818437, 28.897021004803264 ], [ -95.809222079253331, 28.899944005371228 ], [ -95.809321078955833, 28.900041005620388 ], [ -95.809454078528475, 28.900152005915295 ], [ -95.8095990791291, 28.900250005841684 ], [ -95.8097570793974, 28.900337005311499 ], [ -95.810018079295745, 28.900454005717449 ], [ -95.811330078942532, 28.901041005696886 ], [ -95.811513079646019, 28.901123005451314 ], [ -95.811761079073918, 28.901246005528396 ], [ -95.811965079271673, 28.901364005611544 ], [ -95.812171079982278, 28.901498005568939 ], [ -95.81237907943509, 28.901652006034098 ], [ -95.812774079454385, 28.901987006056988 ], [ -95.81340408012997, 28.902527006445624 ], [ -95.816717080375568, 28.905361006625462 ], [ -95.816746080829688, 28.90539300637381 ], [ -95.816981080820284, 28.905647006948829 ], [ -95.820989081858244, 28.90894600726293 ], [ -95.824966082618275, 28.905434006679794 ], [ -95.825044083078538, 28.905403006612328 ], [ -95.825160082928321, 28.905357006519374 ], [ -95.82532208273166, 28.905307006139736 ], [ -95.829604084607496, 28.905225005959291 ], [ -95.835905085541242, 28.905104005966994 ], [ -95.841349087422557, 28.904999005725195 ], [ -95.843394087143707, 28.904960005446046 ], [ -95.84392008812658, 28.90495000552259 ], [ -95.853921090556099, 28.904758005316069 ], [ -95.853919090379975, 28.904712005555204 ], [ -95.853891090525352, 28.903060005101359 ], [ -95.85393808995093, 28.9028190046253 ], [ -95.853948089794599, 28.902789004537482 ], [ -95.853977089901946, 28.902703004725797 ], [ -95.854031090086892, 28.902540004815279 ], [ -95.854073089777685, 28.902214004821882 ], [ -95.853984090273528, 28.90191300432258 ], [ -95.853866089825544, 28.901580004219284 ], [ -95.8538260898696, 28.901286004094988 ], [ -95.853814090421977, 28.900962004048932 ], [ -95.85368708988959, 28.897531004078729 ], [ -95.853696090219898, 28.897274003945459 ], [ -95.854025090003447, 28.897261004012414 ], [ -95.855318089966786, 28.897230004037425 ], [ -95.857649091247538, 28.897175003751027 ], [ -95.8635950929404, 28.897035003139916 ], [ -95.866252093008924, 28.896956003431548 ], [ -95.869546093853288, 28.896855002668595 ], [ -95.871813094646981, 28.896811002917477 ], [ -95.874584095721787, 28.8967230028546 ], [ -95.880590097135013, 28.896566002720988 ], [ -95.881405097400915, 28.896551002269629 ], [ -95.881541097339081, 28.896527002412377 ], [ -95.881619097287555, 28.89642700224536 ], [ -95.881647096930052, 28.896306002330832 ], [ -95.88148809720559, 28.891991001669702 ], [ -95.885739097520357, 28.891886001397101 ], [ -95.892956099373279, 28.891683001151655 ], [ -95.894272099971872, 28.891646001295264 ], [ -95.894590100061947, 28.891637001514795 ], [ -95.898308100887249, 28.891532000811555 ], [ -95.907881103610009, 28.891262000479792 ], [ -95.908006103267738, 28.891259000805285 ], [ -95.908110103131975, 28.891256000647218 ], [ -95.921639106590078, 28.890875000480559 ], [ -95.925533107489031, 28.890772000228111 ], [ -95.92568910764227, 28.890705999773679 ], [ -95.925762108312185, 28.890568999930583 ], [ -95.925618107674325, 28.88656099916399 ], [ -95.925609108268574, 28.886224999014459 ], [ -95.926063108083582, 28.886185999004134 ], [ -95.929715108327159, 28.886097998585875 ], [ -95.935738110543753, 28.885951998419067 ], [ -95.938880110839577, 28.885887998264984 ], [ -95.941843111561923, 28.885810998185676 ], [ -95.943242112350319, 28.88578599889912 ], [ -95.943361112710889, 28.885782998711132 ], [ -95.952935114289673, 28.885512997942786 ], [ -95.953205115227689, 28.885504997931559 ], [ -95.95188111443187, 28.881375997361403 ], [ -95.950787113599745, 28.877967996641008 ], [ -95.950554113424872, 28.877230996498497 ], [ -95.950431114094755, 28.876841996704616 ], [ -95.957199115809615, 28.875062996143527 ], [ -95.957659115622278, 28.874940995603868 ], [ -95.965244117259246, 28.872930995071194 ], [ -95.966539117640039, 28.872783994899002 ], [ -95.969659118288902, 28.871752994277369 ], [ -95.971054118362304, 28.871428994405701 ], [ -95.978891120913602, 28.871426994025153 ], [ -95.98320212175885, 28.871302994591986 ], [ -95.98373012152814, 28.871295994143583 ], [ -95.987190122846513, 28.871250994470714 ], [ -95.996256124818416, 28.871047993631453 ], [ -95.999066125510993, 28.871098993240647 ], [ -96.000327126136142, 28.871121993471071 ], [ -96.000615126678099, 28.871161993932088 ], [ -96.002081126755755, 28.87136499351703 ], [ -96.00338312673459, 28.871325993744033 ], [ -96.004234127381963, 28.871121993892615 ], [ -96.005795127591483, 28.871310993465624 ], [ -96.011896129470003, 28.871077992941 ], [ -96.012734129089452, 28.871045993430556 ], [ -96.012786129043846, 28.871183993396404 ], [ -96.013150129152692, 28.87134499314725 ], [ -96.013435129456624, 28.871688993696079 ], [ -96.013874129721543, 28.872926993627264 ], [ -96.013742129924282, 28.873475993394237 ], [ -96.013610129418012, 28.873670994151375 ], [ -96.012907129113174, 28.874710994327927 ], [ -96.012749129596358, 28.875328994180755 ], [ -96.012717129520908, 28.877344994727952 ], [ -96.012879129554022, 28.88050999486865 ], [ -96.012964130247468, 28.882155995721472 ], [ -96.012804130149306, 28.883758995606581 ], [ -96.012041130146216, 28.886894996938221 ], [ -96.0118541295395, 28.888886997015078 ], [ -96.011876130099793, 28.889140996980746 ], [ -96.011951129839005, 28.891589997466507 ], [ -96.011746130015396, 28.897583999145123 ], [ -96.011725130027344, 28.898206998628392 ], [ -96.011827130286179, 28.899076999344569 ], [ -96.012553130601603, 28.900269999085712 ], [ -96.013800130707565, 28.901050999188428 ], [ -96.014482130573256, 28.901331999095383 ], [ -96.01458013065853, 28.901372999230954 ], [ -96.014918131438634, 28.901304999559841 ], [ -96.015104130634086, 28.901305999809779 ], [ -96.015440131405384, 28.90130699960757 ], [ -96.016326131680827, 28.901307999085422 ], [ -96.017132131855746, 28.901400999176097 ], [ -96.019579132580162, 28.901979999055317 ], [ -96.020530132718775, 28.902143999067896 ], [ -96.02077613246486, 28.90218799897713 ], [ -96.021282132590429, 28.90232799913521 ], [ -96.024416133198358, 28.90320699931333 ], [ -96.025682133926281, 28.903542999088131 ], [ -96.025940134352012, 28.903614999638449 ], [ -96.026002134002468, 28.903549999123399 ], [ -96.026220133853499, 28.903046999403891 ], [ -96.026515134375529, 28.902805999292227 ], [ -96.026711134465927, 28.902408998949142 ], [ -96.027971134676804, 28.900465999228842 ], [ -96.028137134850624, 28.900107998728526 ], [ -96.028413134913066, 28.899795998730013 ], [ -96.028684134955228, 28.899391998700402 ], [ -96.028729134776825, 28.899294998328116 ], [ -96.029674134277656, 28.897253997803855 ], [ -96.030122134989455, 28.896608997575868 ], [ -96.030614134841557, 28.896184998202166 ], [ -96.030707134994458, 28.896104997905592 ], [ -96.032287135682253, 28.895138997570431 ], [ -96.033013135749684, 28.894610996992256 ], [ -96.033229135654054, 28.894377996938296 ], [ -96.033401135684969, 28.894192997563135 ], [ -96.033599135875065, 28.893718997028778 ], [ -96.033657134999785, 28.89321699753523 ], [ -96.033482135549818, 28.892475996551301 ], [ -96.033310135709328, 28.892108997007711 ], [ -96.031865134515726, 28.890270996557909 ], [ -96.031772134561947, 28.889969996798566 ], [ -96.031708134612444, 28.889760996341177 ], [ -96.031755135003152, 28.889183996193537 ], [ -96.031866134929089, 28.8888759965993 ], [ -96.032238135270163, 28.888402995967787 ], [ -96.032948134973836, 28.887977995857344 ], [ -96.034320135756531, 28.887333996272691 ], [ -96.035638135492022, 28.886605995340219 ], [ -96.036335135673824, 28.886102995881373 ], [ -96.036775135496939, 28.885674995476901 ], [ -96.036857136343755, 28.885551995159112 ], [ -96.037023135585983, 28.885301995121527 ], [ -96.037215136534414, 28.884750995662834 ], [ -96.037112135483568, 28.884071995293368 ], [ -96.036976136434689, 28.883506994831425 ], [ -96.036071135147225, 28.881690994372057 ], [ -96.035883135874286, 28.881175994784542 ], [ -96.035837135933988, 28.880962994910274 ], [ -96.035746135513705, 28.880536994835047 ], [ -96.035725135762732, 28.879814994175714 ], [ -96.035763135634909, 28.879528993906245 ], [ -96.036146135686678, 28.878732993611219 ], [ -96.037811136331641, 28.876330993565752 ], [ -96.038778136361003, 28.874780992886826 ], [ -96.039129135763275, 28.874323993240345 ], [ -96.039581136075952, 28.873734992727137 ], [ -96.039870135927714, 28.873203992439944 ], [ -96.040149136318078, 28.87231699283274 ], [ -96.040180136503452, 28.871921992138503 ], [ -96.040124135904037, 28.871345992394151 ], [ -96.039980136586436, 28.870782992016071 ], [ -96.039570136155149, 28.870159991882065 ], [ -96.038754135833628, 28.869400992304083 ], [ -96.038560135907446, 28.869268992055559 ], [ -96.038163135323757, 28.869003992049958 ], [ -96.037627135897196, 28.868739991659297 ], [ -96.0371091349502, 28.868330991932837 ], [ -96.036647134719004, 28.867824991898566 ], [ -96.036281134755598, 28.867261991367325 ], [ -96.035834134777872, 28.866192991564208 ], [ -96.035669134896864, 28.865447991375952 ], [ -96.035598134397517, 28.864511991220049 ], [ -96.035254134504484, 28.86324899118409 ], [ -96.03486613472441, 28.862375990673563 ], [ -96.034471134551183, 28.861743990268092 ], [ -96.034218134602682, 28.86141499032836 ], [ -96.033773134231041, 28.86098799033881 ], [ -96.033388134367314, 28.860618990205413 ], [ -96.032789133490269, 28.860241990392055 ], [ -96.031596133737864, 28.859688990723889 ], [ -96.031067133718352, 28.859290990386608 ], [ -96.03061113323885, 28.858876990465266 ], [ -96.030235133297737, 28.858658990287019 ], [ -96.029940132762007, 28.857440989834892 ], [ -96.029922132862808, 28.856431989882349 ], [ -96.029843132936207, 28.855678989682719 ], [ -96.029846133096285, 28.854994989458966 ], [ -96.029728133267255, 28.854316989159852 ], [ -96.029575133247846, 28.853657989054479 ], [ -96.029420132599824, 28.853246989072243 ], [ -96.028704132391013, 28.852280988511104 ], [ -96.028300132039362, 28.851958989190653 ], [ -96.026106131346751, 28.850634988648057 ], [ -96.0256371314983, 28.850284988692856 ], [ -96.025019131161471, 28.849758987982256 ], [ -96.024587131840292, 28.849104987989776 ], [ -96.024260130967662, 28.848248987888507 ], [ -96.024197131192452, 28.847530987780594 ], [ -96.024371130893513, 28.846604988119239 ], [ -96.025047131454343, 28.844824987136896 ], [ -96.025066131401644, 28.844247987066247 ], [ -96.025059131798159, 28.844181987226545 ], [ -96.025021131774849, 28.8438169868149 ], [ -96.024870130758231, 28.843366986990983 ], [ -96.024637131660555, 28.84290598712041 ], [ -96.024401131290901, 28.842566987110558 ], [ -96.023901130822395, 28.842024987195447 ], [ -96.023508130854822, 28.841767986603884 ], [ -96.022251130129163, 28.841090986933036 ], [ -96.021075130464169, 28.840559987054061 ], [ -96.020794130470662, 28.840432986683794 ], [ -96.018988129437361, 28.839375986578169 ], [ -96.018267129053058, 28.838737986270718 ], [ -96.017642129179478, 28.837890985859712 ], [ -96.017398129282043, 28.837354986548473 ], [ -96.01714612922099, 28.836405985954823 ], [ -96.017065128723303, 28.833662985472898 ], [ -96.016871128432442, 28.832776985237413 ], [ -96.016489128823665, 28.831784985143226 ], [ -96.01569612858296, 28.830180984939631 ], [ -96.015308128408734, 28.829586984984633 ], [ -96.014905128074005, 28.829130984498377 ], [ -96.014399127570869, 28.828709984664428 ], [ -96.013200127878179, 28.827894984161905 ], [ -96.011355127098327, 28.826823983827335 ], [ -96.011171127082008, 28.826680984140769 ], [ -96.010566126954075, 28.826001984082552 ], [ -96.010079126980457, 28.825218983926892 ], [ -96.009779126340348, 28.824319983975478 ], [ -96.009726126643613, 28.823707983942459 ], [ -96.009859126409609, 28.822232983531478 ], [ -96.009725126707664, 28.821556983442676 ], [ -96.009623126825133, 28.821282982647293 ], [ -96.009382126026836, 28.820864982669342 ], [ -96.008861126429863, 28.820308982503498 ], [ -96.008239125794674, 28.819790982904763 ], [ -96.008113126525302, 28.819734982469999 ], [ -96.007180126085132, 28.819322982673572 ], [ -96.005664125491847, 28.81903198239868 ], [ -96.004787125152305, 28.818734982234478 ], [ -96.004548124624833, 28.818594982573867 ], [ -96.003798124728064, 28.818157982334984 ], [ -96.003366124627519, 28.817782982210343 ], [ -96.002929125051352, 28.81730698286999 ], [ -96.002374124609332, 28.816504982614347 ], [ -96.00198712424006, 28.816084982391715 ], [ -95.999613123996085, 28.813894981739917 ], [ -95.998718123693479, 28.812909981749652 ], [ -95.99783912286415, 28.811608981851546 ], [ -95.997561123092026, 28.811046981662347 ], [ -95.997235122986027, 28.809779981111216 ], [ -95.997142123139469, 28.809024980579018 ], [ -95.997186122583926, 28.808045980673992 ], [ -95.997617123020518, 28.80624398027215 ], [ -95.997952122928055, 28.805391979700396 ], [ -95.998576122589554, 28.804543980156701 ], [ -95.998741122994602, 28.804383980012208 ], [ -95.999343123464698, 28.803894979549849 ], [ -96.000104123780162, 28.803450979463168 ], [ -96.000264123874018, 28.803357979723941 ], [ -96.000571123465335, 28.803179979431352 ], [ -96.001342123277809, 28.802533979114248 ], [ -96.001672123281821, 28.802077979764121 ], [ -96.001844123914452, 28.801633979100231 ], [ -96.001876124172426, 28.801309979351899 ], [ -96.001802123729121, 28.800809979090147 ], [ -96.001633123166556, 28.800326978947485 ], [ -96.001368123622839, 28.799719979241207 ], [ -96.001142123042513, 28.799336979135084 ], [ -96.001043123675601, 28.798986979100775 ], [ -96.000769122942913, 28.798383978305907 ], [ -96.000526123490218, 28.797980978500348 ], [ -96.000187123168445, 28.796939978077702 ], [ -95.999864122922816, 28.796237977870216 ], [ -95.99917012281189, 28.794968977741711 ], [ -95.998831122611918, 28.794117978194283 ], [ -95.997935122608808, 28.792217977330807 ], [ -95.997522122223671, 28.791269977442514 ], [ -95.99705012193607, 28.790002977175629 ], [ -95.996856122349243, 28.789771977136549 ], [ -95.99663012140276, 28.789346976593226 ], [ -95.996559121988142, 28.789238977084374 ], [ -95.995932121947561, 28.788284976370097 ], [ -95.995246121813224, 28.7875209767363 ], [ -95.993784120933356, 28.786536976579743 ], [ -95.992218120236544, 28.785754976292232 ], [ -95.990929120445074, 28.784926976017065 ], [ -95.990527120473146, 28.784459976198189 ], [ -95.990362119626667, 28.784266976054386 ], [ -95.990110119521589, 28.78377197588053 ], [ -95.990033119617479, 28.783418975816573 ], [ -95.990187119846809, 28.782859975486449 ], [ -95.990407119688399, 28.782393975578948 ], [ -95.990731120419014, 28.781893975840898 ], [ -95.990952120002589, 28.781552975422535 ], [ -95.991307119758346, 28.781125975530003 ], [ -95.99157112045873, 28.780955974915123 ], [ -95.992155120833857, 28.780306975004493 ], [ -95.992853120546343, 28.779375975213185 ], [ -95.994150120579803, 28.777844974423715 ], [ -95.996497120974482, 28.775185973953153 ], [ -95.997920121098019, 28.77357297353349 ], [ -96.000321121713313, 28.771502972934094 ], [ -96.001775122861162, 28.769849972296925 ], [ -96.002192122592888, 28.769077972112868 ], [ -96.002250122050555, 28.768969972237425 ], [ -96.002499122057799, 28.768206971892916 ], [ -96.002588122404887, 28.767670972627783 ], [ -96.002620122469111, 28.766695971645589 ], [ -96.002501122791983, 28.765366971499901 ], [ -96.002406122682274, 28.765017971374046 ], [ -96.002372122667722, 28.763466971602615 ], [ -96.00236912246973, 28.763453971660226 ], [ -96.002181122525485, 28.762726971013421 ], [ -96.001985121949346, 28.762240971016926 ], [ -96.001372121862119, 28.761058970422464 ], [ -96.000616121536282, 28.760206970435526 ], [ -96.000339121610608, 28.759935970701239 ], [ -95.999004121206298, 28.758626970452262 ], [ -95.998425121485894, 28.757972970003475 ], [ -95.998069120557403, 28.757362970297986 ], [ -95.997882121187274, 28.756971970157235 ], [ -95.99768712082934, 28.756563969723796 ], [ -95.997444120904092, 28.755546970212666 ], [ -95.99744712112799, 28.755497969482668 ], [ -95.997667120541223, 28.752368969428716 ], [ -95.997893121082924, 28.751674969434081 ], [ -95.998667120825246, 28.750200968286883 ], [ -95.99948912120152, 28.748837968126416 ], [ -95.999767120790082, 28.74811996851496 ], [ -95.999957121096941, 28.746902967957851 ], [ -95.999924121041801, 28.746579968225177 ], [ -95.999870121119287, 28.746039967582657 ], [ -95.999574121191557, 28.745327967406336 ], [ -95.999075120769575, 28.744755967550514 ], [ -95.998481120939303, 28.744259967350885 ], [ -95.997262120140761, 28.743470967365045 ], [ -95.996364120023259, 28.742998967654369 ], [ -95.995383119249411, 28.742483967426011 ], [ -95.993671118944263, 28.741713967023394 ], [ -95.991483118864423, 28.74100796705013 ], [ -95.990847118241277, 28.740876967098167 ], [ -95.990484118844776, 28.740820966855644 ], [ -95.989018118457125, 28.740734966621968 ], [ -95.987302118000443, 28.740757966896897 ], [ -95.985726117016469, 28.740956967286575 ], [ -95.984408116522474, 28.741235967128116 ], [ -95.982375116528445, 28.741652967626955 ], [ -95.981683116666147, 28.741619967120741 ], [ -95.980800115799909, 28.741467967610003 ], [ -95.979272115224305, 28.740957967467605 ], [ -95.976881115353976, 28.74001996766869 ], [ -95.974917114602079, 28.739147967480154 ], [ -95.974766114082229, 28.739080966943614 ], [ -95.974498113985518, 28.738915967556579 ], [ -95.973788114516424, 28.73831896732279 ], [ -95.973004114005434, 28.737440967281497 ], [ -95.97254111390815, 28.736556967012195 ], [ -95.972353113629538, 28.735668966650419 ], [ -95.971986113585899, 28.734038966187502 ], [ -95.971615113646422, 28.733005966087969 ], [ -95.971425113493567, 28.732265965504489 ], [ -95.971261113583566, 28.731262965954187 ], [ -95.971213113366659, 28.730271965310639 ], [ -95.971202113513854, 28.730035964968216 ], [ -95.971206112869098, 28.729709965537396 ], [ -95.971395113001506, 28.728492965137864 ], [ -95.971908113507681, 28.72611496451999 ], [ -95.971915112927476, 28.724271963886444 ], [ -95.971771112866492, 28.722613963777789 ], [ -95.971877112687167, 28.72127196357749 ], [ -95.971997112970854, 28.720776963148655 ], [ -95.972022113250119, 28.720702963418717 ], [ -95.972274113166776, 28.719982963632098 ], [ -95.972435113158269, 28.719690962820874 ], [ -95.97279911294774, 28.719210962804638 ], [ -95.973522113246872, 28.718625962802815 ], [ -95.975155113733408, 28.717666962270542 ], [ -95.975868113531121, 28.717125962536727 ], [ -95.976218113871596, 28.716772962841958 ], [ -95.976810113944723, 28.71595096248555 ], [ -95.976824114027707, 28.715846962707378 ], [ -95.97673111350548, 28.715494962545907 ], [ -95.976551113535024, 28.715014962422359 ], [ -95.975912113284181, 28.713884962120758 ], [ -95.975674113464279, 28.7132319620118 ], [ -95.975624113765988, 28.71290996159248 ], [ -95.975679113102018, 28.712442961343523 ], [ -95.975805113199328, 28.711987961403821 ], [ -95.976073113605452, 28.71138896112199 ], [ -95.976364113469657, 28.710844961258882 ], [ -95.977143113592859, 28.709699960918456 ], [ -95.977345113360101, 28.709265960776762 ], [ -95.977464113669924, 28.708808960450764 ], [ -95.977479113745176, 28.707978960616249 ], [ -95.977420113847614, 28.707502960303376 ], [ -95.976371113442838, 28.703489959646628 ], [ -95.976268113440895, 28.70219195983967 ], [ -95.976303113503775, 28.700095959185226 ], [ -95.9763621131154, 28.699691959368195 ], [ -95.976354113329307, 28.699366958813506 ], [ -95.976538112867743, 28.698552958455256 ], [ -95.976698113276626, 28.698145958231123 ], [ -95.977062113525946, 28.697222958454716 ], [ -95.977336113557314, 28.696779958193478 ], [ -95.977776113090556, 28.696214957943642 ], [ -95.978640113720616, 28.695238957575711 ], [ -95.978732113489457, 28.695135957753781 ], [ -95.979435113674953, 28.694481957945957 ], [ -95.979730113673995, 28.694090957242356 ], [ -95.979884113421917, 28.693835957896237 ], [ -95.980371114044488, 28.693836957823645 ], [ -95.980423114010449, 28.693736957205058 ], [ -95.98047611439253, 28.693637957816339 ], [ -95.980152113872123, 28.692855957543614 ], [ -95.980118113916177, 28.69260495735486 ], [ -95.979971113833443, 28.692232957499318 ], [ -95.979959113799609, 28.692205956874933 ], [ -95.979587113643419, 28.691720956871336 ], [ -95.97871011363506, 28.690963956983669 ], [ -95.978099112717089, 28.690541957139036 ], [ -95.977813113488693, 28.690400956648883 ], [ -95.976886112867831, 28.689704957162981 ], [ -95.97669211236483, 28.689559956922871 ], [ -95.976387112278957, 28.689133956425511 ], [ -95.976169112389883, 28.688666956992481 ], [ -95.976106112171848, 28.688237956825358 ], [ -95.976094112416007, 28.687550956549526 ], [ -95.976276112243781, 28.686114956429808 ], [ -95.976485112105237, 28.682905955558738 ], [ -95.976456112800705, 28.682769955219801 ], [ -95.976401112174528, 28.68251695497327 ], [ -95.976344112513985, 28.682476955122922 ], [ -95.975664111885791, 28.682016955721178 ], [ -95.976250112668893, 28.68165295543508 ], [ -95.97720811272481, 28.681237955134325 ], [ -95.977567112794191, 28.681066955052163 ], [ -95.978246113179608, 28.680946955201215 ], [ -95.979906113267361, 28.680209954583137 ], [ -95.980680113803729, 28.679866954293768 ], [ -95.981249113767333, 28.679518954664427 ], [ -95.982729114271521, 28.678916954060895 ], [ -95.983360114440728, 28.678618954039695 ], [ -95.983510113794139, 28.678547954613737 ], [ -95.984667114879244, 28.678001954098125 ], [ -95.985537115014921, 28.677403954476421 ], [ -95.985721114677858, 28.677370954283614 ], [ -95.986165114859986, 28.677114953902752 ], [ -95.987175115186204, 28.676827953751332 ], [ -95.989325115036621, 28.675870953436558 ], [ -95.990433115474133, 28.675324953059881 ], [ -95.990936115340503, 28.67508495341955 ], [ -95.991702116049879, 28.674836953124192 ], [ -95.992545116168202, 28.674403952976231 ], [ -95.992954116600018, 28.67416495298821 ], [ -95.994852116929778, 28.673325952518859 ], [ -95.996890117713619, 28.672330952278909 ], [ -95.999012118205201, 28.67140395232979 ], [ -95.9998571181779, 28.670966951874256 ], [ -96.000250118405944, 28.67080795266876 ], [ -96.000971117776132, 28.670516952444913 ], [ -96.001735118892469, 28.670100952089761 ], [ -96.002959118339234, 28.669586951846828 ], [ -96.004049119384419, 28.669020951574204 ], [ -96.004573119418765, 28.668818951334067 ], [ -96.005497119635194, 28.668286951578388 ], [ -96.006253119505814, 28.668013951671938 ], [ -96.006651119251629, 28.667942951282114 ], [ -96.007571119462398, 28.667404951167249 ], [ -96.008288119989032, 28.66714495124728 ], [ -96.009048119781724, 28.666720951468935 ], [ -96.010184120218838, 28.666235950820806 ], [ -96.010503120934658, 28.666181951265909 ], [ -96.011422120489215, 28.665801950992829 ], [ -96.011553120247186, 28.665641950895356 ], [ -96.011661120636063, 28.665509951078963 ], [ -96.011306120714067, 28.665114950531358 ], [ -96.011234121088592, 28.664975950371787 ], [ -96.011086120760481, 28.664688950681875 ], [ -96.010881120890275, 28.664463950459997 ], [ -96.010344120082095, 28.664224950586032 ], [ -96.009965120486413, 28.663896950326816 ], [ -96.009558119710334, 28.663312950158286 ], [ -96.009512120070681, 28.663226950787223 ], [ -96.009127120108843, 28.662509949840533 ], [ -96.008858119388933, 28.662008950536183 ], [ -96.008510120046864, 28.661007949622928 ], [ -96.008263119924692, 28.659835949490486 ], [ -96.008165119304522, 28.658718949881177 ], [ -96.008179119766837, 28.656985948996564 ], [ -96.008131119240673, 28.656566948755778 ], [ -96.008015118934438, 28.656220949019161 ], [ -96.008132119481644, 28.656030948801806 ], [ -96.008259119647946, 28.655574949249946 ], [ -96.008208119785309, 28.654891948247272 ], [ -96.008207119078108, 28.653701948400755 ], [ -96.008354119517321, 28.651946947682191 ], [ -96.008969119927045, 28.651012947821446 ], [ -96.01059712025129, 28.648140947160087 ], [ -96.010838120010419, 28.647805947331609 ], [ -96.010875119816731, 28.647766947458475 ], [ -96.011216119691255, 28.64740294738931 ], [ -96.011497120162829, 28.647177946529141 ], [ -96.012152120142133, 28.646631947287887 ], [ -96.012370119957126, 28.64587294635276 ], [ -96.01235812030184, 28.64517894642325 ], [ -96.011908119784408, 28.644561946204242 ], [ -96.01135211995306, 28.643431946254179 ], [ -96.012886120563678, 28.642725946417183 ], [ -96.051133128892701, 28.625274941243848 ], [ -96.125251147047052, 28.590856931462518 ], [ -96.222819169115269, 28.530336916588986 ], [ -96.232631171119493, 28.524257914922565 ], [ -96.25025417538788, 28.513336911773713 ], [ -96.250254174731424, 28.513201911684398 ], [ -96.271178179410555, 28.500281908831841 ], [ -96.272031180304566, 28.500281908372262 ], [ -96.318055191073739, 28.471099900924209 ], [ -96.320764191148356, 28.469398900962631 ], [ -96.321863191347006, 28.468580900826289 ], [ -96.329314192731502, 28.463389899093777 ], [ -96.343947195935286, 28.452552896899409 ], [ -96.344565196323671, 28.453089896294934 ], [ -96.344852196528151, 28.453220896173427 ], [ -96.345727196938768, 28.453304896596464 ], [ -96.346323197082384, 28.453023896678197 ], [ -96.34686619668696, 28.452808896863882 ], [ -96.347325197312514, 28.452424896256105 ], [ -96.347591197096861, 28.452104896559849 ], [ -96.348114197143545, 28.45157189591843 ], [ -96.348366197733228, 28.451121895815117 ], [ -96.349113198048911, 28.450707896371433 ], [ -96.349190197439754, 28.450709895835033 ], [ -96.349286198199209, 28.450611896155493 ], [ -96.367554201619669, 28.440469892880486 ], [ -96.370702202580347, 28.426302889963008 ], [ -96.37339720233426, 28.413514887133346 ], [ -96.373784202449698, 28.411623887226529 ], [ -96.374405202639096, 28.408823886068262 ], [ -96.374872202028669, 28.407045886407179 ], [ -96.375258202374539, 28.404449885447512 ], [ -96.375925202674921, 28.401896884955455 ], [ -96.376049203013324, 28.401270885207577 ], [ -96.376150202500455, 28.400763884841233 ], [ -96.376247202585674, 28.400254884479597 ], [ -96.377038202893473, 28.396528883747187 ], [ -96.377405202155941, 28.394761883202214 ], [ -96.378104202402881, 28.391795883244484 ], [ -96.378739202951323, 28.388991882488412 ], [ -96.378786202605426, 28.388776881957337 ], [ -96.379027203041545, 28.387677882166344 ], [ -96.379065203113015, 28.387505881884245 ], [ -96.379511202532441, 28.385499881471013 ], [ -96.379960203053685, 28.383330880771545 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 502, "Tract": "48321730204", "Area_SqMi": 1.7512586736562363, "total_2009": 1796, "total_2010": 1830, "total_2011": 1843, "total_2012": 1620, "total_2013": 1567, "total_2014": 1463, "total_2015": 1513, "total_2016": 1424, "total_2017": 1437, "total_2018": 1424, "total_2019": 1371, "total_2020": 1236, "age1": 289, "age2": 574, "age3": 265, "earn1": 253, "earn2": 429, "earn3": 446, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 30, "naics_s05": 4, "naics_s06": 10, "naics_s07": 101, "naics_s08": 3, "naics_s09": 15, "naics_s10": 28, "naics_s11": 11, "naics_s12": 37, "naics_s13": 0, "naics_s14": 70, "naics_s15": 0, "naics_s16": 470, "naics_s17": 0, "naics_s18": 291, "naics_s19": 52, "naics_s20": 0, "race1": 924, "race2": 132, "race3": 11, "race4": 43, "race5": 1, "race6": 17, "ethnicity1": 675, "ethnicity2": 453, "edu1": 184, "edu2": 236, "edu3": 268, "edu4": 151, "Shape_Length": 38605.190114906072, "Shape_Area": 48822094.512360357, "total_2021": 1190, "total_2022": 1128 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.970497123517376, 28.994260020098711 ], [ -95.970459123904462, 28.993557019515936 ], [ -95.970397123423027, 28.992292019210119 ], [ -95.970332123278453, 28.991288019516038 ], [ -95.970297123498852, 28.990295019537683 ], [ -95.970196123773007, 28.98928601932926 ], [ -95.9701601228805, 28.988214018326612 ], [ -95.970126122928249, 28.987174018364307 ], [ -95.970092123289376, 28.986167018231232 ], [ -95.970116123456563, 28.985092017992702 ], [ -95.970117122930631, 28.985070017967946 ], [ -95.97010212305328, 28.984607017833316 ], [ -95.970084122917044, 28.984080017497188 ], [ -95.970012122746752, 28.983008017306041 ], [ -95.968803122626198, 28.983032017935983 ], [ -95.9675941229047, 28.983068017332982 ], [ -95.96660312225525, 28.983108017428144 ], [ -95.966393122244213, 28.983116017448651 ], [ -95.965641121629929, 28.983136017663032 ], [ -95.965334121768436, 28.983145017834072 ], [ -95.963993121256991, 28.983181017680131 ], [ -95.962807120855373, 28.983214018118222 ], [ -95.961587120427595, 28.983259018072619 ], [ -95.960478120987929, 28.983277018408277 ], [ -95.959285120087173, 28.983304018026075 ], [ -95.958145119643135, 28.983335018457691 ], [ -95.956994119556271, 28.983379018261612 ], [ -95.95564711932991, 28.983408017899048 ], [ -95.954479119287129, 28.983437018149782 ], [ -95.95327611840294, 28.983456018162187 ], [ -95.952077118499545, 28.983385018016893 ], [ -95.951999118581526, 28.983380018573172 ], [ -95.951075118100974, 28.983276018101211 ], [ -95.950357118206725, 28.983216018110934 ], [ -95.950002118218165, 28.983182018031908 ], [ -95.948862118091398, 28.983103018495889 ], [ -95.947708117524826, 28.983008018652804 ], [ -95.94654211715546, 28.982901018584183 ], [ -95.946115116515216, 28.982867018356856 ], [ -95.94553611645415, 28.982812018508152 ], [ -95.944473116232587, 28.982725018324896 ], [ -95.942446116220637, 28.982560018743989 ], [ -95.941735115996579, 28.98258501845147 ], [ -95.94139511587835, 28.982611018289649 ], [ -95.941060115561172, 28.982668018372486 ], [ -95.940720115083181, 28.982777018196987 ], [ -95.939910115420332, 28.983079018884482 ], [ -95.938975115403863, 28.983581018834077 ], [ -95.938831115597694, 28.983661019001346 ], [ -95.938856114914842, 28.984739019397182 ], [ -95.938875115473309, 28.985233018918859 ], [ -95.938921115032642, 28.986358019075457 ], [ -95.9389631157878, 28.98782301996598 ], [ -95.938971114955223, 28.987956019666953 ], [ -95.937172114611656, 28.988032019952058 ], [ -95.936121114176046, 28.988111020115738 ], [ -95.936676114402445, 28.989519020374228 ], [ -95.937599114549499, 28.989230019918679 ], [ -95.938993115496373, 28.988810019509597 ], [ -95.939017115419134, 28.989207020157018 ], [ -95.939018115235939, 28.989262020198066 ], [ -95.939018115209024, 28.989274020076049 ], [ -95.939036114959691, 28.989935019833858 ], [ -95.939080115180516, 28.990609020468955 ], [ -95.939107115184683, 28.991377020266643 ], [ -95.939873115777758, 28.991394020200758 ], [ -95.94000311616503, 28.991394020103261 ], [ -95.940089116266066, 28.991372019898943 ], [ -95.940176116241872, 28.9913440201416 ], [ -95.940389115592708, 28.991229020336341 ], [ -95.940535115469629, 28.991404020546284 ], [ -95.940712115706816, 28.991612020725764 ], [ -95.943519116543968, 28.989919019951543 ], [ -95.944057116502535, 28.989605019863866 ], [ -95.944917116544488, 28.989115019815571 ], [ -95.946038117119173, 28.988611019186237 ], [ -95.946457117563057, 28.988457019652007 ], [ -95.94749011714292, 28.988107019773025 ], [ -95.947958117846184, 28.987967019378694 ], [ -95.948377117428947, 28.987844019088502 ], [ -95.948409117555315, 28.987843019404046 ], [ -95.948288118083866, 28.988028019648855 ], [ -95.948057117414734, 28.988099019650985 ], [ -95.947916117474577, 28.988179019033296 ], [ -95.947652117255089, 28.988330019453254 ], [ -95.947613118003957, 28.988352019181029 ], [ -95.947925117960736, 28.98878901935268 ], [ -95.947952117811838, 28.988827019629522 ], [ -95.947985118074527, 28.988788019683181 ], [ -95.948003117580839, 28.988768019296245 ], [ -95.948255117986463, 28.988594019439311 ], [ -95.9506141188143, 28.991667020411413 ], [ -95.951185118289857, 28.9924110201692 ], [ -95.950990119057337, 28.992467020064339 ], [ -95.950942118506973, 28.992484020434489 ], [ -95.950888118378913, 28.992504019946725 ], [ -95.950852118219004, 28.992517020464781 ], [ -95.950744118657937, 28.992592020616282 ], [ -95.950647118434091, 28.992682020404388 ], [ -95.950576118959461, 28.99282001994678 ], [ -95.949311118320523, 28.996811021203907 ], [ -95.949086117899057, 28.997523020941799 ], [ -95.948695118674735, 28.998777021853122 ], [ -95.94822411849529, 29.000198021643609 ], [ -95.947839118607547, 29.001392022469496 ], [ -95.947556118376127, 29.002290022509897 ], [ -95.947396118391211, 29.002798022895348 ], [ -95.94657811783496, 29.005331023311012 ], [ -95.946542117527528, 29.005646022887003 ], [ -95.946599118440986, 29.005912023166225 ], [ -95.946694118144848, 29.005865023030601 ], [ -95.947336117933361, 29.005547022872928 ], [ -95.949747118934212, 29.004356022487698 ], [ -95.950001118846089, 29.004232022611447 ], [ -95.951472118739602, 29.003506022437037 ], [ -95.95186611887128, 29.003312022022467 ], [ -95.952424119523897, 29.003018022316873 ], [ -95.952519119539588, 29.002968022247796 ], [ -95.953186119468256, 29.002635022017991 ], [ -95.953320119726911, 29.002568022460018 ], [ -95.95338311979863, 29.002537022514442 ], [ -95.953512119942218, 29.00247402251437 ], [ -95.95699812089498, 29.000764021307624 ], [ -95.959890120793716, 28.999331021414037 ], [ -95.961048121251068, 28.998802021129727 ], [ -95.961649121224184, 28.998527021114676 ], [ -95.962103121450724, 28.998309020941207 ], [ -95.962395121620872, 28.998169020801591 ], [ -95.962963121650489, 28.997892021063066 ], [ -95.96415212240079, 28.997309020819603 ], [ -95.964316122590105, 28.997238020463286 ], [ -95.965480122881388, 28.996733020772073 ], [ -95.965531122947851, 28.996708020251038 ], [ -95.965928122958061, 28.996515020828856 ], [ -95.966833122274949, 28.996074020722631 ], [ -95.968017123112745, 28.995502020531461 ], [ -95.969130122928732, 28.994957020394057 ], [ -95.96919512335792, 28.994925019804512 ], [ -95.970497123517376, 28.994260020098711 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 503, "Tract": "48321730203", "Area_SqMi": 102.3314273670594, "total_2009": 365, "total_2010": 385, "total_2011": 457, "total_2012": 583, "total_2013": 615, "total_2014": 678, "total_2015": 615, "total_2016": 660, "total_2017": 567, "total_2018": 756, "total_2019": 672, "total_2020": 611, "age1": 152, "age2": 372, "age3": 184, "earn1": 154, "earn2": 234, "earn3": 320, "naics_s01": 11, "naics_s02": 10, "naics_s03": 7, "naics_s04": 34, "naics_s05": 34, "naics_s06": 54, "naics_s07": 58, "naics_s08": 1, "naics_s09": 83, "naics_s10": 0, "naics_s11": 3, "naics_s12": 24, "naics_s13": 0, "naics_s14": 7, "naics_s15": 201, "naics_s16": 63, "naics_s17": 0, "naics_s18": 49, "naics_s19": 69, "naics_s20": 0, "race1": 614, "race2": 56, "race3": 5, "race4": 23, "race5": 2, "race6": 8, "ethnicity1": 533, "ethnicity2": 175, "edu1": 111, "edu2": 161, "edu3": 178, "edu4": 106, "Shape_Length": 278286.17365601246, "Shape_Area": 2852825053.0052824, "total_2021": 660, "total_2022": 708 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.982203132691197, 29.137382048881477 ], [ -95.98419613254768, 29.136271048820962 ], [ -95.982077132280807, 29.126149046879856 ], [ -95.98191313233427, 29.125365046319104 ], [ -95.981586131565535, 29.123931046268979 ], [ -95.981110131117191, 29.12161104558475 ], [ -95.980794131028887, 29.120134045731849 ], [ -95.980677131765503, 29.119542045283595 ], [ -95.980313131652196, 29.11763504520539 ], [ -95.979818130732738, 29.114940044046172 ], [ -95.979459130348133, 29.112909044390214 ], [ -95.979262130342491, 29.111760043829712 ], [ -95.978971130405199, 29.110295043488193 ], [ -95.978954131092166, 29.110208043258901 ], [ -95.978880130830248, 29.109837043154815 ], [ -95.978494130627837, 29.10781104278978 ], [ -95.978464130636453, 29.107720042993137 ], [ -95.978159130269404, 29.105889043100351 ], [ -95.977277129316562, 29.101190041581745 ], [ -95.976860129509248, 29.099043041257541 ], [ -95.975995129192484, 29.094565040041829 ], [ -95.975900128690725, 29.093771040530697 ], [ -95.97553712921102, 29.091899040212326 ], [ -95.975028128747851, 29.089485039841673 ], [ -95.974825128672748, 29.087892039049382 ], [ -95.974732128845247, 29.087146038956043 ], [ -95.973798128187966, 29.082537037776685 ], [ -95.973609127666805, 29.081517037541872 ], [ -95.972367127796815, 29.074831036347547 ], [ -95.972134127569674, 29.073576036235746 ], [ -95.971118127246299, 29.068103035248029 ], [ -95.97039112596994, 29.063936034595997 ], [ -95.970028126597683, 29.06184203422108 ], [ -95.969983126375325, 29.060420033300502 ], [ -95.970046126258936, 29.058348033030665 ], [ -95.970354125632809, 29.05603803292906 ], [ -95.971907126482037, 29.044450029826251 ], [ -95.972020125571603, 29.043603029661544 ], [ -95.972061126265189, 29.043260029870304 ], [ -95.97218212637172, 29.042281030180487 ], [ -95.972412125567644, 29.040428029206154 ], [ -95.97330412602534, 29.033602027584525 ], [ -95.97385512564982, 29.029209027458627 ], [ -95.973875125908265, 29.029040027055263 ], [ -95.97387612596863, 29.029030026833706 ], [ -95.974411125677207, 29.024473026231519 ], [ -95.974429126230689, 29.024318026321712 ], [ -95.974467126060802, 29.023919026016937 ], [ -95.974489126190662, 29.023505025431891 ], [ -95.974493125880315, 29.023114025557256 ], [ -95.974487125874248, 29.022918025945685 ], [ -95.974481125559791, 29.022691025880473 ], [ -95.974465125298224, 29.022268025483328 ], [ -95.97443112531937, 29.021364025738599 ], [ -95.974297125179433, 29.017466024684254 ], [ -95.974278125396111, 29.017084024445651 ], [ -95.974253125394085, 29.016575024504299 ], [ -95.97421012512126, 29.015722023990595 ], [ -95.974198125112622, 29.015551024658254 ], [ -95.974208125157887, 29.015406024587389 ], [ -95.974208125566562, 29.015120024070118 ], [ -95.974142125014396, 29.014222024201754 ], [ -95.974058125021884, 29.013581024038569 ], [ -95.97385412539478, 29.012114023174732 ], [ -95.973702124676592, 29.011068023595442 ], [ -95.973650124951575, 29.01070102342738 ], [ -95.973539125452362, 29.009902023046479 ], [ -95.973471125307668, 29.009420022665751 ], [ -95.973447125219081, 29.009245023094028 ], [ -95.973048125008361, 29.007145022725467 ], [ -95.972857124573295, 29.006110021872232 ], [ -95.972651124868605, 29.005159022480612 ], [ -95.972615124524992, 29.004986022394995 ], [ -95.97248112440262, 29.004342022122966 ], [ -95.972263124638019, 29.003225021945241 ], [ -95.972052124110959, 29.002102021828822 ], [ -95.97184712392415, 29.001081021499445 ], [ -95.971824124301151, 29.000967021626071 ], [ -95.971681124021771, 29.000217021470277 ], [ -95.971448123849768, 28.999065020663473 ], [ -95.971032123674959, 28.997003020159223 ], [ -95.970961123864214, 28.996540020541012 ], [ -95.970835123364694, 28.995942020230402 ], [ -95.970731123392682, 28.995451020587531 ], [ -95.970665123445755, 28.995114020483296 ], [ -95.970497123517376, 28.994260020098711 ], [ -95.96919512335792, 28.994925019804512 ], [ -95.969130122928732, 28.994957020394057 ], [ -95.968017123112745, 28.995502020531461 ], [ -95.966833122274949, 28.996074020722631 ], [ -95.965928122958061, 28.996515020828856 ], [ -95.965531122947851, 28.996708020251038 ], [ -95.965480122881388, 28.996733020772073 ], [ -95.964316122590105, 28.997238020463286 ], [ -95.96415212240079, 28.997309020819603 ], [ -95.962963121650489, 28.997892021063066 ], [ -95.962395121620872, 28.998169020801591 ], [ -95.962103121450724, 28.998309020941207 ], [ -95.961649121224184, 28.998527021114676 ], [ -95.961048121251068, 28.998802021129727 ], [ -95.959890120793716, 28.999331021414037 ], [ -95.95699812089498, 29.000764021307624 ], [ -95.953512119942218, 29.00247402251437 ], [ -95.95338311979863, 29.002537022514442 ], [ -95.953320119726911, 29.002568022460018 ], [ -95.953186119468256, 29.002635022017991 ], [ -95.952519119539588, 29.002968022247796 ], [ -95.952424119523897, 29.003018022316873 ], [ -95.95186611887128, 29.003312022022467 ], [ -95.951472118739602, 29.003506022437037 ], [ -95.950001118846089, 29.004232022611447 ], [ -95.949747118934212, 29.004356022487698 ], [ -95.947336117933361, 29.005547022872928 ], [ -95.946694118144848, 29.005865023030601 ], [ -95.946599118440986, 29.005912023166225 ], [ -95.946542117527528, 29.005646022887003 ], [ -95.94657811783496, 29.005331023311012 ], [ -95.947396118391211, 29.002798022895348 ], [ -95.947556118376127, 29.002290022509897 ], [ -95.947839118607547, 29.001392022469496 ], [ -95.94822411849529, 29.000198021643609 ], [ -95.948695118674735, 28.998777021853122 ], [ -95.949086117899057, 28.997523020941799 ], [ -95.949311118320523, 28.996811021203907 ], [ -95.950576118959461, 28.99282001994678 ], [ -95.950647118434091, 28.992682020404388 ], [ -95.950744118657937, 28.992592020616282 ], [ -95.950852118219004, 28.992517020464781 ], [ -95.950888118378913, 28.992504019946725 ], [ -95.950942118506973, 28.992484020434489 ], [ -95.950990119057337, 28.992467020064339 ], [ -95.951185118289857, 28.9924110201692 ], [ -95.9506141188143, 28.991667020411413 ], [ -95.948255117986463, 28.988594019439311 ], [ -95.948003117580839, 28.988768019296245 ], [ -95.947985118074527, 28.988788019683181 ], [ -95.947952117811838, 28.988827019629522 ], [ -95.947925117960736, 28.98878901935268 ], [ -95.947613118003957, 28.988352019181029 ], [ -95.947652117255089, 28.988330019453254 ], [ -95.947916117474577, 28.988179019033296 ], [ -95.948057117414734, 28.988099019650985 ], [ -95.948288118083866, 28.988028019648855 ], [ -95.948409117555315, 28.987843019404046 ], [ -95.948377117428947, 28.987844019088502 ], [ -95.947958117846184, 28.987967019378694 ], [ -95.94749011714292, 28.988107019773025 ], [ -95.946457117563057, 28.988457019652007 ], [ -95.946038117119173, 28.988611019186237 ], [ -95.944917116544488, 28.989115019815571 ], [ -95.944057116502535, 28.989605019863866 ], [ -95.943519116543968, 28.989919019951543 ], [ -95.940712115706816, 28.991612020725764 ], [ -95.940535115469629, 28.991404020546284 ], [ -95.940389115592708, 28.991229020336341 ], [ -95.940176116241872, 28.9913440201416 ], [ -95.940089116266066, 28.991372019898943 ], [ -95.94000311616503, 28.991394020103261 ], [ -95.939873115777758, 28.991394020200758 ], [ -95.939107115184683, 28.991377020266643 ], [ -95.939080115180516, 28.990609020468955 ], [ -95.939036114959691, 28.989935019833858 ], [ -95.939018115209024, 28.989274020076049 ], [ -95.939018115235939, 28.989262020198066 ], [ -95.939017115419134, 28.989207020157018 ], [ -95.938993115496373, 28.988810019509597 ], [ -95.937599114549499, 28.989230019918679 ], [ -95.936676114402445, 28.989519020374228 ], [ -95.936121114176046, 28.988111020115738 ], [ -95.937172114611656, 28.988032019952058 ], [ -95.938971114955223, 28.987956019666953 ], [ -95.9389631157878, 28.98782301996598 ], [ -95.938921115032642, 28.986358019075457 ], [ -95.938875115473309, 28.985233018918859 ], [ -95.938856114914842, 28.984739019397182 ], [ -95.938831115597694, 28.983661019001346 ], [ -95.937930114611731, 28.98419801861618 ], [ -95.936916114738139, 28.984819019231324 ], [ -95.935917114810806, 28.985370019554143 ], [ -95.934029114013683, 28.9864680191533 ], [ -95.933316113560693, 28.986895019678496 ], [ -95.932908113856797, 28.987139019854357 ], [ -95.931117113363115, 28.988209020127538 ], [ -95.930829113545002, 28.988381019989639 ], [ -95.928982113366146, 28.989469020478133 ], [ -95.927174112008458, 28.990534020228775 ], [ -95.926619112589549, 28.990864020394071 ], [ -95.926418112525852, 28.991016021142826 ], [ -95.926384112186383, 28.991041020610353 ], [ -95.925162112445634, 28.991824021138459 ], [ -95.924555111659998, 28.992208020739621 ], [ -95.924516111789188, 28.992231021189919 ], [ -95.923549111628034, 28.992685021343927 ], [ -95.922526111229274, 28.993301021164157 ], [ -95.922311110965694, 28.993431020981209 ], [ -95.920305110843643, 28.994609021303095 ], [ -95.918974110962608, 28.995380021745699 ], [ -95.918515110650986, 28.99565002187753 ], [ -95.916389110488396, 28.996904021847101 ], [ -95.916322110055191, 28.99694502237773 ], [ -95.914943109130462, 28.997760022698809 ], [ -95.914391109854051, 28.998087022846708 ], [ -95.913707109554622, 28.9984910225824 ], [ -95.913203109045099, 28.998790022867478 ], [ -95.91278010867893, 28.999040023189714 ], [ -95.910709109194926, 29.000265022677667 ], [ -95.909043108276009, 29.001241022982871 ], [ -95.90762610829394, 29.002070023935804 ], [ -95.906950107661018, 29.002498023447526 ], [ -95.906290107413753, 29.002915023725205 ], [ -95.905875107332008, 29.003187024258988 ], [ -95.905366107183042, 29.003650023742306 ], [ -95.904711107757308, 29.004232024462461 ], [ -95.903595106894798, 29.005270024710232 ], [ -95.903336106656823, 29.005506024296785 ], [ -95.902965107281858, 29.005844024884492 ], [ -95.901841106729606, 29.006882024372846 ], [ -95.900471106731501, 29.008106024829146 ], [ -95.900266106610772, 29.008290025519297 ], [ -95.898680105605081, 29.009728025875397 ], [ -95.897819105734627, 29.01052202557667 ], [ -95.89589810500334, 29.012131026124528 ], [ -95.895181105694931, 29.012794025957589 ], [ -95.893719104907788, 29.014252026715852 ], [ -95.893287104614657, 29.014640027038197 ], [ -95.892502104198044, 29.015347026524115 ], [ -95.892400104180922, 29.015439026882881 ], [ -95.891923104788077, 29.015879026581832 ], [ -95.891155104762504, 29.016577027143704 ], [ -95.890387104500505, 29.017290027539637 ], [ -95.889587103839176, 29.017999027696032 ], [ -95.88881110405778, 29.018719027519513 ], [ -95.88802510373273, 29.019423027696401 ], [ -95.887249103538963, 29.020143027879641 ], [ -95.885421102701827, 29.021692028600615 ], [ -95.884901102575128, 29.022162028429776 ], [ -95.884612102784047, 29.022407028790262 ], [ -95.884012103089631, 29.02294602890494 ], [ -95.883705102370186, 29.023224028664043 ], [ -95.883335103156597, 29.02354202920268 ], [ -95.882490102402329, 29.024302028975058 ], [ -95.879211101817774, 29.027335030020755 ], [ -95.878473101590075, 29.028005029497038 ], [ -95.878210101615267, 29.028234030284224 ], [ -95.877390101310937, 29.028987029710027 ], [ -95.875978100708792, 29.030312030284293 ], [ -95.875725100681407, 29.030540030886417 ], [ -95.875238100658947, 29.030984030137695 ], [ -95.873808101110228, 29.03253103073834 ], [ -95.873314100887569, 29.033031030772751 ], [ -95.873172100721234, 29.033165031270013 ], [ -95.871989100708149, 29.034276031404872 ], [ -95.870545100026433, 29.035605031610746 ], [ -95.870287100201139, 29.035833032065913 ], [ -95.864621098365518, 29.041113032689147 ], [ -95.864455098138137, 29.041286032589891 ], [ -95.863796098212774, 29.041852032949645 ], [ -95.863154098147902, 29.042457033526659 ], [ -95.86221509813015, 29.043247033709982 ], [ -95.861548097814364, 29.043768033620829 ], [ -95.860921098015623, 29.044193033908215 ], [ -95.860201097690847, 29.044615033434155 ], [ -95.859695097462591, 29.04490603361479 ], [ -95.858706097142189, 29.045454034432414 ], [ -95.857683096968515, 29.046029034577607 ], [ -95.856988097186289, 29.046458034696311 ], [ -95.856541097189961, 29.046751034346354 ], [ -95.856185097028572, 29.047042034885095 ], [ -95.855651096961125, 29.047502034952892 ], [ -95.855242097030541, 29.047923034887255 ], [ -95.854882096324062, 29.04832503523826 ], [ -95.854571096237876, 29.048726034720033 ], [ -95.854214096195946, 29.049238034849804 ], [ -95.853460095807478, 29.050350035498859 ], [ -95.852821095720714, 29.051318035140632 ], [ -95.851777096327751, 29.052589035747559 ], [ -95.851291095460653, 29.053031035484519 ], [ -95.850670096129619, 29.053616035706355 ], [ -95.850567095267593, 29.053709036199734 ], [ -95.84959509568759, 29.054586036268962 ], [ -95.847670094705492, 29.056322036395439 ], [ -95.847520094910763, 29.056456037115264 ], [ -95.84553309491902, 29.058231037301017 ], [ -95.845088093959319, 29.058641037225179 ], [ -95.845031094283897, 29.05869403741319 ], [ -95.842119094264078, 29.061319038297427 ], [ -95.841364093364746, 29.062015037632758 ], [ -95.840841093076747, 29.062497038208548 ], [ -95.840502093620131, 29.062800037846511 ], [ -95.840271093330841, 29.062984038324458 ], [ -95.839560093272894, 29.063536038777169 ], [ -95.839178092872473, 29.063777038599813 ], [ -95.838789092764614, 29.063974038314882 ], [ -95.838388093335567, 29.064159038805311 ], [ -95.837926092621885, 29.064331039048604 ], [ -95.837488092564556, 29.064461039016035 ], [ -95.837057092678592, 29.064572038431542 ], [ -95.836520092112394, 29.064652038420302 ], [ -95.834076091834007, 29.0649680384529 ], [ -95.82998509045413, 29.065416039555327 ], [ -95.827211090327395, 29.065749039498751 ], [ -95.823845089296114, 29.066045039708108 ], [ -95.820156088382262, 29.066295039587242 ], [ -95.819529087912045, 29.066351039574869 ], [ -95.818149087599508, 29.066481039824044 ], [ -95.817926088292523, 29.066509039312059 ], [ -95.817233087172283, 29.066593040122175 ], [ -95.811025086345339, 29.067348040516642 ], [ -95.81044908556423, 29.067418039853234 ], [ -95.810089086237809, 29.067458040523643 ], [ -95.809002085926693, 29.067584040437712 ], [ -95.807071085502045, 29.067822040161111 ], [ -95.804773084483998, 29.068096040065384 ], [ -95.802600083798609, 29.068353040156996 ], [ -95.802095083883714, 29.068408040538905 ], [ -95.800362083957339, 29.068633040339702 ], [ -95.797250083050457, 29.069009040670604 ], [ -95.796391082625192, 29.069113041325135 ], [ -95.795943081856038, 29.06917904112203 ], [ -95.794272082402827, 29.069377041256676 ], [ -95.794018081586785, 29.069409041157396 ], [ -95.79364208222691, 29.06945604128952 ], [ -95.793460081637562, 29.069471041438053 ], [ -95.793091081392362, 29.069517041492858 ], [ -95.791368081055708, 29.069732041605484 ], [ -95.790641081515204, 29.069829041670442 ], [ -95.789450080911919, 29.069948041358217 ], [ -95.789300080864436, 29.069968041387227 ], [ -95.789405080415833, 29.070149041588706 ], [ -95.789512080759991, 29.070347041398726 ], [ -95.7896120812444, 29.070473041458349 ], [ -95.78974308085823, 29.070572041678606 ], [ -95.789943081038416, 29.070660041441617 ], [ -95.790419081089354, 29.070803041144526 ], [ -95.790713080705146, 29.070853041624765 ], [ -95.791101081421132, 29.070963041545522 ], [ -95.791357081030455, 29.071012041320557 ], [ -95.791626081534773, 29.071122041187305 ], [ -95.791833081205311, 29.071216041701497 ], [ -95.791996081075681, 29.071331041914132 ], [ -95.792102081329119, 29.071441041991513 ], [ -95.792434081504481, 29.071870041978723 ], [ -95.792527081548229, 29.071947041438001 ], [ -95.79263408186776, 29.072013041467589 ], [ -95.792703081136878, 29.072024041586705 ], [ -95.793003082137133, 29.072029042118572 ], [ -95.793109082215906, 29.072040041755375 ], [ -95.793228081505248, 29.072095041504515 ], [ -95.793441081628117, 29.072227041486418 ], [ -95.793629081436166, 29.072431041334685 ], [ -95.793672082210705, 29.072491042111434 ], [ -95.793691082090731, 29.072628041848724 ], [ -95.793691082243868, 29.072799041844991 ], [ -95.793766081461271, 29.072980042233848 ], [ -95.793941081691514, 29.073222041742937 ], [ -95.794010082479801, 29.073266042253241 ], [ -95.794179082265586, 29.07329904215209 ], [ -95.794342081789765, 29.073398042041564 ], [ -95.794479082065635, 29.073602041650499 ], [ -95.794592082326659, 29.073926042079147 ], [ -95.794661082469361, 29.074025042460352 ], [ -95.794780082723022, 29.07412904179883 ], [ -95.794980082633785, 29.074206041771625 ], [ -95.795074082369354, 29.074261041656211 ], [ -95.795130081903991, 29.074305041710804 ], [ -95.795161082523322, 29.074371041962632 ], [ -95.795174082340935, 29.074608041956211 ], [ -95.795161081893923, 29.074723042552332 ], [ -95.795080082236936, 29.075031042304193 ], [ -95.795061082590578, 29.075174042157851 ], [ -95.795061082262436, 29.075366041982196 ], [ -95.795124082657978, 29.075597042591124 ], [ -95.795205082403143, 29.076257042357863 ], [ -95.795293082042321, 29.076609042305549 ], [ -95.795311082947819, 29.076724042833192 ], [ -95.79539308246548, 29.0768720426369 ], [ -95.795474082976455, 29.076966042648692 ], [ -95.795662082998746, 29.077087042455155 ], [ -95.795837082529729, 29.077175043016695 ], [ -95.795968082626288, 29.07732304225118 ], [ -95.796081082813274, 29.077472042412431 ], [ -95.796444082655754, 29.077813042450401 ], [ -95.796594082990055, 29.07793304320144 ], [ -95.796744083124935, 29.078126042477201 ], [ -95.796913083101359, 29.078527042636932 ], [ -95.796932082547201, 29.078841042507708 ], [ -95.796926082886031, 29.079187042797692 ], [ -95.797013082616246, 29.079945042890436 ], [ -95.797082082756077, 29.080105043015532 ], [ -95.797220082894924, 29.080193043086012 ], [ -95.797376083476323, 29.080264043603481 ], [ -95.797539083437542, 29.080314043633123 ], [ -95.797708083506649, 29.080303043105324 ], [ -95.797813083403156, 29.080264043350308 ], [ -95.797964083017504, 29.080182043482168 ], [ -95.798177083771677, 29.080143042775841 ], [ -95.798284082892295, 29.080149043213446 ], [ -95.798496083513484, 29.080215043626048 ], [ -95.79862808377807, 29.080237043017362 ], [ -95.799035083095845, 29.080215042863667 ], [ -95.799147083133704, 29.080198043486238 ], [ -95.799548084082915, 29.080105042730949 ], [ -95.800161083472219, 29.079924043471976 ], [ -95.800486084120379, 29.079808043225075 ], [ -95.800849084035733, 29.079715043154831 ], [ -95.801106084078697, 29.079753043020673 ], [ -95.801300083635581, 29.079847043362911 ], [ -95.801475083943416, 29.079995042667285 ], [ -95.801613083768601, 29.080243043065447 ], [ -95.801631084377348, 29.080479042800448 ], [ -95.801519084047342, 29.081166042957324 ], [ -95.801406084710038, 29.081496043546665 ], [ -95.801250083726231, 29.08206204377219 ], [ -95.801268083959798, 29.082200043467076 ], [ -95.801337084393737, 29.08232604363851 ], [ -95.801431083809106, 29.082452043325617 ], [ -95.801594084764247, 29.082496043596475 ], [ -95.801832084213842, 29.082524043108521 ], [ -95.801919084214376, 29.082524043769919 ], [ -95.802082084880084, 29.082590043474319 ], [ -95.802163084539373, 29.082634043429874 ], [ -95.802251084839497, 29.082700043666687 ], [ -95.80236408459416, 29.082815043249521 ], [ -95.802401084136093, 29.082892044017484 ], [ -95.802501084558401, 29.083008043681396 ], [ -95.802614084814365, 29.083293043290546 ], [ -95.80272008464577, 29.083431043400889 ], [ -95.802827084257402, 29.083519043789259 ], [ -95.802989084902677, 29.083596043601041 ], [ -95.80314608513801, 29.083684044091289 ], [ -95.803190084311481, 29.083728043867303 ], [ -95.803302084772, 29.083876043924324 ], [ -95.803396084578722, 29.084003044098452 ], [ -95.803553084712448, 29.084497043670648 ], [ -95.803559084889059, 29.084844043964313 ], [ -95.803546085011291, 29.085338043816439 ], [ -95.803559084660762, 29.085674044257352 ], [ -95.803578085438389, 29.085861044062295 ], [ -95.803565084493187, 29.085998044311932 ], [ -95.803571084657065, 29.086174044229928 ], [ -95.803531084790066, 29.08650804438032 ], [ -95.803515084574386, 29.086636044225006 ], [ -95.803521084955463, 29.086867044222444 ], [ -95.803559084527706, 29.08713004433098 ], [ -95.803553084869421, 29.087323044137005 ], [ -95.803571085423869, 29.087554044327142 ], [ -95.803615084762214, 29.087807044192576 ], [ -95.803684085409444, 29.088004044758005 ], [ -95.803784085198672, 29.088197044246201 ], [ -95.803909084943783, 29.08837804435402 ], [ -95.804110085558634, 29.088560044906846 ], [ -95.804297085012379, 29.088752044647752 ], [ -95.804460084923605, 29.088900044734686 ], [ -95.804785085324653, 29.089159044863973 ], [ -95.805130085574859, 29.089346044708204 ], [ -95.805399085261243, 29.089538044844119 ], [ -95.80554908552827, 29.08970904495278 ], [ -95.805680085720255, 29.089890044633048 ], [ -95.805756085293481, 29.090060044985389 ], [ -95.805806085807717, 29.090418045455852 ], [ -95.805912086071061, 29.090544045219634 ], [ -95.806031085382344, 29.090550045463512 ], [ -95.806150085579645, 29.090572044645924 ], [ -95.806306085759886, 29.090533044885564 ], [ -95.806413086124621, 29.090522044772623 ], [ -95.806525086301164, 29.090495045442673 ], [ -95.806701085541093, 29.090478044793365 ], [ -95.807057085922722, 29.090704045246493 ], [ -95.807164086519421, 29.090748045452408 ], [ -95.807339086098025, 29.090731045249846 ], [ -95.807495086040291, 29.090692044998931 ], [ -95.807614086114299, 29.090704044825792 ], [ -95.807664086430378, 29.090725045013546 ], [ -95.807802086544186, 29.090896045314388 ], [ -95.807815086197863, 29.090956044653268 ], [ -95.80788308646315, 29.091105045181568 ], [ -95.807990086756377, 29.091182044698908 ], [ -95.808309086380078, 29.091231045196373 ], [ -95.808572086395003, 29.091286044718451 ], [ -95.808772086609935, 29.091281045492178 ], [ -95.808929086153256, 29.09125304495085 ], [ -95.80911008679584, 29.091121044649405 ], [ -95.809273086634221, 29.090912045040035 ], [ -95.809404086173117, 29.090791044596156 ], [ -95.810243086841467, 29.090313044800894 ], [ -95.81060608675979, 29.090132044643102 ], [ -95.811025086642857, 29.089972044456648 ], [ -95.811294087558181, 29.089890044466916 ], [ -95.811520086862657, 29.089835044691512 ], [ -95.811663086684746, 29.089824045135661 ], [ -95.811901087745838, 29.089862044983779 ], [ -95.813272087766052, 29.089939044871372 ], [ -95.813641087635531, 29.089989044564149 ], [ -95.814142087362754, 29.090038044746429 ], [ -95.814430087768955, 29.08999404443141 ], [ -95.814624088285626, 29.08989004468895 ], [ -95.814843088255401, 29.089851045033161 ], [ -95.81542508857224, 29.08986204425241 ], [ -95.815569088706823, 29.089846044672861 ], [ -95.815700088517147, 29.089807044345225 ], [ -95.81588108802768, 29.089692044147931 ], [ -95.816113087906501, 29.089697044593841 ], [ -95.816357088183921, 29.089829044450557 ], [ -95.816501088712329, 29.089840044648721 ], [ -95.81685208887518, 29.089763044702138 ], [ -95.817202088388356, 29.08960404453175 ], [ -95.8175590881809, 29.089505044529563 ], [ -95.817584088921535, 29.089503044340727 ], [ -95.81766408887809, 29.089496044813984 ], [ -95.817711088477267, 29.089492044842007 ], [ -95.817765088657978, 29.08948804431278 ], [ -95.817966088393106, 29.089598044105411 ], [ -95.818116088561609, 29.08970204487763 ], [ -95.818310088702063, 29.089790044762726 ], [ -95.81884208928156, 29.089917044241545 ], [ -95.819192088981325, 29.090115044270618 ], [ -95.819605089454768, 29.090395044429208 ], [ -95.819806089177774, 29.090494044986571 ], [ -95.820006089506876, 29.090538044973112 ], [ -95.82021208906616, 29.090532044490725 ], [ -95.820726089481198, 29.090439044732037 ], [ -95.821214089259698, 29.090499044348107 ], [ -95.82178309018181, 29.090647044145264 ], [ -95.822134089994904, 29.090686044455097 ], [ -95.823091089670925, 29.090587044712009 ], [ -95.825294090888093, 29.090323044826054 ], [ -95.825532090477267, 29.090306044713635 ], [ -95.825739091232094, 29.090257044565274 ], [ -95.825895090470283, 29.090158044007538 ], [ -95.82604509078989, 29.090004043984642 ], [ -95.826239091210013, 29.089888044632513 ], [ -95.826452090593861, 29.089778043970561 ], [ -95.826765090633813, 29.089690044624948 ], [ -95.827021091299457, 29.089674044202166 ], [ -95.827459090801881, 29.089663044481672 ], [ -95.827816091698665, 29.089701044530067 ], [ -95.828092091475057, 29.089767044284443 ], [ -95.828417091799224, 29.089668044550614 ], [ -95.828661091814467, 29.089465043870209 ], [ -95.828749091386442, 29.089371043804885 ], [ -95.828874091837051, 29.089091044264354 ], [ -95.82897409181372, 29.089025043746261 ], [ -95.829049091877664, 29.088926044445561 ], [ -95.829124091780486, 29.088920043682052 ], [ -95.829218091468945, 29.08900304386481 ], [ -95.829318091300109, 29.089052044271288 ], [ -95.829450092081501, 29.089272044224277 ], [ -95.829612091534557, 29.089437043861665 ], [ -95.829656092230721, 29.089498044508169 ], [ -95.829788091694084, 29.089679044165099 ], [ -95.829904091704918, 29.089747044549902 ], [ -95.829957092218038, 29.089778044318379 ], [ -95.830044092364801, 29.089844044184758 ], [ -95.830332092138235, 29.090030044418793 ], [ -95.830564092288739, 29.09034904431233 ], [ -95.830645091961642, 29.090437044304675 ], [ -95.830727092514508, 29.090498043922711 ], [ -95.830833092423589, 29.090608044031711 ], [ -95.830958092233971, 29.090690044201118 ], [ -95.831277091954576, 29.090844044037382 ], [ -95.83140909211663, 29.090921044421375 ], [ -95.831584091854751, 29.091113044715495 ], [ -95.831766092302601, 29.091338044206537 ], [ -95.831985092358394, 29.09170704413803 ], [ -95.832041092889298, 29.091888044334535 ], [ -95.832022092747692, 29.092256044972228 ], [ -95.831991092104673, 29.092432044606383 ], [ -95.832004092892561, 29.092537044783658 ], [ -95.83208509259002, 29.092614044780305 ], [ -95.832179092418883, 29.092658044659821 ], [ -95.832486092991758, 29.092746045077927 ], [ -95.832855093035221, 29.092932045075013 ], [ -95.832968092350512, 29.093037044801289 ], [ -95.833030092773939, 29.093114044419327 ], [ -95.833212092876892, 29.093295044701975 ], [ -95.833575092898059, 29.093702044940141 ], [ -95.833844092774385, 29.093977045155796 ], [ -95.834007092967767, 29.094075045042228 ], [ -95.834151092677928, 29.094119044692466 ], [ -95.834245093373156, 29.09410304533813 ], [ -95.834357093444282, 29.094059045275035 ], [ -95.834439093045262, 29.093998044855823 ], [ -95.83460809347568, 29.093833044979686 ], [ -95.834845093477824, 29.093575044812148 ], [ -95.834996093128694, 29.093328044938954 ], [ -95.835177093368515, 29.093102044747368 ], [ -95.835340093382499, 29.09293704486236 ], [ -95.835496093175891, 29.092833044159008 ], [ -95.83580909346334, 29.092712044518688 ], [ -95.836022093127596, 29.092695044238486 ], [ -95.83617809365613, 29.092712044687165 ], [ -95.836260093373028, 29.092745044459928 ], [ -95.836460093794258, 29.09285504428831 ], [ -95.837023093985806, 29.093355044314215 ], [ -95.837336094414539, 29.093657044406694 ], [ -95.837837094536397, 29.094212045029852 ], [ -95.838207094215477, 29.094718045103491 ], [ -95.838426094564213, 29.094954045269837 ], [ -95.838532094013175, 29.095091044935238 ], [ -95.83867609433014, 29.095487045151739 ], [ -95.838739094443298, 29.095800044912089 ], [ -95.838783094709555, 29.095960045182917 ], [ -95.838808094864305, 29.096383045261597 ], [ -95.838796094878589, 29.096570045051205 ], [ -95.838808094463332, 29.096916045682431 ], [ -95.83889609483704, 29.097329045313103 ], [ -95.838965094365847, 29.09743304540379 ], [ -95.839052094510919, 29.097603045399666 ], [ -95.839240094836271, 29.097752045322057 ], [ -95.839428094517956, 29.097917045645691 ], [ -95.839747094388841, 29.098081045694848 ], [ -95.839998094435003, 29.098197045461607 ], [ -95.84020309529312, 29.098263045486032 ], [ -95.840227095109213, 29.098271045891227 ], [ -95.840315095118967, 29.09829904564274 ], [ -95.84066109448014, 29.098411045172028 ], [ -95.840968095110753, 29.098482045330563 ], [ -95.841150095365094, 29.09851504535856 ], [ -95.84150609526769, 29.09862504584293 ], [ -95.841738095191289, 29.098927045587871 ], [ -95.841807095410132, 29.098977045635014 ], [ -95.841901095709318, 29.099098045880371 ], [ -95.84209509530686, 29.099570045523176 ], [ -95.842195095510249, 29.099752045700018 ], [ -95.842214095684696, 29.099922046223885 ], [ -95.842176095618854, 29.100060045530078 ], [ -95.842139095870195, 29.100153046208209 ], [ -95.842039095227932, 29.100236045702871 ], [ -95.841857095069969, 29.100324045948277 ], [ -95.841282094773675, 29.1003790458462 ], [ -95.841219095138271, 29.100400045532336 ], [ -95.841159095559419, 29.100421045965529 ], [ -95.841056095420271, 29.100456046433361 ], [ -95.840956095568714, 29.100538045906116 ], [ -95.840906095397884, 29.100665046373052 ], [ -95.840912095266418, 29.100851046220612 ], [ -95.840969095210852, 29.101066045779767 ], [ -95.841038095185354, 29.101170046472507 ], [ -95.841426095778488, 29.101533045866514 ], [ -95.841764095340267, 29.101775045947932 ], [ -95.842152095555818, 29.102000046009323 ], [ -95.842378095661687, 29.102110046405354 ], [ -95.842565095141381, 29.102231046582578 ], [ -95.842866096056298, 29.102456046416862 ], [ -95.842935096115454, 29.102621046490011 ], [ -95.842985095298815, 29.102786046376895 ], [ -95.842898096024058, 29.103473046880122 ], [ -95.842910096151101, 29.103880047055501 ], [ -95.843104096295065, 29.104265046597941 ], [ -95.843512095866842, 29.105160047166468 ], [ -95.843581096028345, 29.105457046480076 ], [ -95.843506096049026, 29.105826046852833 ], [ -95.843205096270452, 29.106315047464975 ], [ -95.843212096049655, 29.106573047573626 ], [ -95.843494096035968, 29.106908047153372 ], [ -95.843600096308137, 29.106974047487267 ], [ -95.843731096080745, 29.10702904744598 ], [ -95.843850096095764, 29.107024046896434 ], [ -95.844063095852746, 29.106996047649965 ], [ -95.844138095808816, 29.106963047513577 ], [ -95.844476096236178, 29.106875046841829 ], [ -95.844777095839945, 29.10680904743203 ], [ -95.845121096027469, 29.10677004686185 ], [ -95.845459096008042, 29.106809047064441 ], [ -95.845935096289537, 29.106935047058755 ], [ -95.846123096345138, 29.107056047536204 ], [ -95.846248097014723, 29.107171047516417 ], [ -95.846342096284303, 29.107281047041251 ], [ -95.846386097085642, 29.107435046957225 ], [ -95.846386096924675, 29.107584047334271 ], [ -95.846367096757433, 29.107699047368648 ], [ -95.846317097174733, 29.107804047247683 ], [ -95.846210096711957, 29.107919047009755 ], [ -95.845998097176391, 29.108122047117131 ], [ -95.845804096371197, 29.108287047716594 ], [ -95.845109096230303, 29.108843047128708 ], [ -95.844703096697927, 29.109233048044437 ], [ -95.844114095942786, 29.109948048000977 ], [ -95.84395209676704, 29.110195048154651 ], [ -95.843802095900955, 29.110448048234623 ], [ -95.843664096642812, 29.110751047929057 ], [ -95.843583095963908, 29.110987047966141 ], [ -95.843577095745459, 29.111240047677494 ], [ -95.843652096038568, 29.112114048700434 ], [ -95.843715096291845, 29.112422047935009 ], [ -95.843715096139732, 29.112537048516373 ], [ -95.843677095965091, 29.112680048040264 ], [ -95.843615096484754, 29.112785048661593 ], [ -95.84355209661247, 29.112867048170223 ], [ -95.843246096471333, 29.113115048617779 ], [ -95.843052096271649, 29.1132140488393 ], [ -95.842726096271633, 29.113362048642124 ], [ -95.842664096571369, 29.113445049056676 ], [ -95.842523095567444, 29.113736048654264 ], [ -95.842432096398838, 29.113923048904113 ], [ -95.842351095747404, 29.114027048637503 ], [ -95.842269096208724, 29.114099048578655 ], [ -95.842058095449914, 29.114211048819453 ], [ -95.842032096278714, 29.114225049054735 ], [ -95.841960095629616, 29.114241048940048 ], [ -95.841906095634727, 29.11425304906615 ], [ -95.841810096165602, 29.114245049129963 ], [ -95.84152509623577, 29.114220048567791 ], [ -95.841268095425974, 29.114215048561409 ], [ -95.841126095631395, 29.114267048404859 ], [ -95.841018095758358, 29.11436904920124 ], [ -95.840905095236124, 29.114506048612885 ], [ -95.840811095993089, 29.114693048862115 ], [ -95.840780095584535, 29.114946049312845 ], [ -95.840811095570373, 29.115105049399496 ], [ -95.840829096106859, 29.11520004888153 ], [ -95.841043095270592, 29.115429048906346 ], [ -95.841200095332184, 29.115561048885265 ], [ -95.841513096160085, 29.115726048975951 ], [ -95.84178809642556, 29.115896049497671 ], [ -95.842070095778055, 29.11607804938216 ], [ -95.842233095662124, 29.116204049541086 ], [ -95.842333096183737, 29.116353049314821 ], [ -95.842411096590766, 29.116523049555497 ], [ -95.842446096482661, 29.116600049240507 ], [ -95.842439096003716, 29.116671049434292 ], [ -95.842352096423554, 29.116803049360687 ], [ -95.842239095753982, 29.116924049232512 ], [ -95.84209509614891, 29.117023049713513 ], [ -95.841892095913593, 29.117083049197092 ], [ -95.841882096537162, 29.117090049607121 ], [ -95.841651095893837, 29.117287049344153 ], [ -95.841588096028005, 29.11735904916096 ], [ -95.841513096191818, 29.117546049233948 ], [ -95.841482095529571, 29.117743049244588 ], [ -95.84147609611037, 29.11795804932715 ], [ -95.841488095537301, 29.118095050002346 ], [ -95.841526095643886, 29.118304049380203 ], [ -95.841545096361315, 29.118640050028095 ], [ -95.841526096211894, 29.119030049423614 ], [ -95.841508095857293, 29.119145049985221 ], [ -95.841458095752884, 29.119261049874638 ], [ -95.841408096074701, 29.119343049930713 ], [ -95.841308096403026, 29.119464049671258 ], [ -95.841176095965409, 29.11959105025581 ], [ -95.841038095567214, 29.119756049633519 ], [ -95.840882096302039, 29.11989904993148 ], [ -95.840769095936494, 29.120085049655017 ], [ -95.84072609619308, 29.120338049663996 ], [ -95.840676095740974, 29.120547050080734 ], [ -95.840657095862795, 29.120828050624983 ], [ -95.840457095828086, 29.121465050321756 ], [ -95.840419096176333, 29.121674050159903 ], [ -95.840413095948364, 29.121867050380747 ], [ -95.84043209616047, 29.122004050251739 ], [ -95.840482096043857, 29.1220970504367 ], [ -95.840714096375891, 29.122334050125708 ], [ -95.84078309551343, 29.122416050638265 ], [ -95.840921096181361, 29.122653050209593 ], [ -95.840952096134004, 29.122790050322173 ], [ -95.84097109640912, 29.123120050917922 ], [ -95.840865096317216, 29.123614050313769 ], [ -95.840833095676544, 29.123994050980549 ], [ -95.840733096001429, 29.124252050692412 ], [ -95.840508096366634, 29.124516050707808 ], [ -95.840144096342712, 29.125005050702413 ], [ -95.840013096345302, 29.12522505133164 ], [ -95.839882095845255, 29.125549051598949 ], [ -95.839744095991477, 29.125791050832554 ], [ -95.839600095329558, 29.125989051481628 ], [ -95.839475096151659, 29.126181051618786 ], [ -95.839289095893946, 29.126592051074859 ], [ -95.839187095740201, 29.126819051622075 ], [ -95.839056096087845, 29.127011051586717 ], [ -95.838997095624364, 29.127121051799872 ], [ -95.838968096016728, 29.127176051595129 ], [ -95.838831095346634, 29.127484051344343 ], [ -95.838743096152953, 29.127852051824942 ], [ -95.838643095674385, 29.128089051354433 ], [ -95.838512095827724, 29.128644051688074 ], [ -95.838343095509074, 29.128869052066928 ], [ -95.838167095991324, 29.129133051841222 ], [ -95.838011095729271, 29.129298052461809 ], [ -95.837617095207662, 29.12968305241991 ], [ -95.837548095156535, 29.129919052445462 ], [ -95.837567095121344, 29.130139051934364 ], [ -95.83764209544583, 29.130398052240551 ], [ -95.837792095345023, 29.130607052003299 ], [ -95.837955095542881, 29.131255052355641 ], [ -95.837980095962308, 29.131684052167401 ], [ -95.837930095897775, 29.132025052981678 ], [ -95.837924095938604, 29.132228052783208 ], [ -95.837937095310437, 29.132530052264475 ], [ -95.837937095720889, 29.132893053054733 ], [ -95.837887095645783, 29.133124053162838 ], [ -95.83776809557385, 29.133569052688479 ], [ -95.837856095273608, 29.134185053413088 ], [ -95.838081095894822, 29.135103053117998 ], [ -95.838169096197035, 29.135301053401591 ], [ -95.838238096168936, 29.135389053214503 ], [ -95.838357096375645, 29.135609053427558 ], [ -95.838407096327217, 29.135757053584239 ], [ -95.838413095631807, 29.135872052980865 ], [ -95.838395096300857, 29.135993053149342 ], [ -95.838326096308336, 29.13628505307188 ], [ -95.838313095822315, 29.136433053284129 ], [ -95.838326096431857, 29.136818053600933 ], [ -95.838489095750845, 29.136961053718824 ], [ -95.838602096399953, 29.137082053992131 ], [ -95.838796096004771, 29.137384053922055 ], [ -95.838952096411987, 29.137532053251157 ], [ -95.839052096194848, 29.137714053551278 ], [ -95.83918409649354, 29.137890054104616 ], [ -95.83930309631846, 29.138088053541143 ], [ -95.839328096193114, 29.138241053750214 ], [ -95.839347096664696, 29.138731054297565 ], [ -95.839497096305863, 29.138951054193178 ], [ -95.83952909648238, 29.139104054375412 ], [ -95.83957909596505, 29.139220053575535 ], [ -95.83968509626537, 29.139374054217839 ], [ -95.839836096106197, 29.139753053864279 ], [ -95.839986096341889, 29.140077054582164 ], [ -95.840024096496862, 29.140187054099055 ], [ -95.840055096311033, 29.140523054700491 ], [ -95.840086096355449, 29.140709054056153 ], [ -95.840074096248657, 29.140924053993601 ], [ -95.840024096475219, 29.141078054707965 ], [ -95.839868096395946, 29.141430054639155 ], [ -95.839805096304033, 29.141649054607051 ], [ -95.83979309619636, 29.141963054278069 ], [ -95.839818096651214, 29.142150054989312 ], [ -95.839887097045477, 29.142265054268819 ], [ -95.840037096909072, 29.142386054493659 ], [ -95.840187097110132, 29.142523054278939 ], [ -95.840356096289241, 29.142650054466383 ], [ -95.840488096490006, 29.142710054726791 ], [ -95.840619096905527, 29.142716054503794 ], [ -95.840851096432829, 29.14271005511095 ], [ -95.841477097218174, 29.14266105429958 ], [ -95.841871096755654, 29.142562054403577 ], [ -95.842498097008274, 29.142363054253067 ], [ -95.842729097554255, 29.142303054930295 ], [ -95.842917097608662, 29.14229205432882 ], [ -95.843124097715986, 29.142303054930064 ], [ -95.84330509709612, 29.142374054641671 ], [ -95.84349309792826, 29.142490054454811 ], [ -95.843618097862603, 29.142660054897771 ], [ -95.843669097094335, 29.142874054819064 ], [ -95.843700097864982, 29.143237054692413 ], [ -95.843612097867791, 29.143501054636854 ], [ -95.843612097908718, 29.143737055199065 ], [ -95.843750097531569, 29.144078054553656 ], [ -95.843869097828815, 29.14418305520805 ], [ -95.844020098018717, 29.144342054932249 ], [ -95.844295097789839, 29.144683054842716 ], [ -95.844671098400056, 29.145111055426433 ], [ -95.844759097852346, 29.145238055267608 ], [ -95.844978098433899, 29.145381054682371 ], [ -95.845323097943776, 29.145436055127281 ], [ -95.845586097695346, 29.145452054681201 ], [ -95.845748098543382, 29.14544605507675 ], [ -95.84593609854447, 29.145468055065869 ], [ -95.846374098134646, 29.145611055031907 ], [ -95.846600098755104, 29.145655055399423 ], [ -95.847207099037348, 29.145820054678261 ], [ -95.847702098580712, 29.146095055392355 ], [ -95.84806509885648, 29.146237055379149 ], [ -95.848203098728476, 29.146474055659567 ], [ -95.848216098477664, 29.146683055278714 ], [ -95.848166098641698, 29.146864055577467 ], [ -95.84804709866647, 29.14711705498048 ], [ -95.847978098999064, 29.147474055363709 ], [ -95.848078098633721, 29.147804055889253 ], [ -95.848141098473121, 29.148233055847886 ], [ -95.848285099192609, 29.148420055938175 ], [ -95.848442098643744, 29.148678055438335 ], [ -95.848674099234572, 29.148925055695379 ], [ -95.848824098743563, 29.149189056062777 ], [ -95.84891209919931, 29.149244055686392 ], [ -95.848993099477852, 29.149266056206177 ], [ -95.849137099015351, 29.149288055825728 ], [ -95.849231099395737, 29.149348056198871 ], [ -95.849306098898808, 29.149574056137308 ], [ -95.84931909947035, 29.149744056027473 ], [ -95.849463099043319, 29.150057055487551 ], [ -95.849526099413424, 29.150162055732189 ], [ -95.849645099620673, 29.150250055538237 ], [ -95.849770099138595, 29.150431055770216 ], [ -95.849783099774001, 29.150530055801067 ], [ -95.849770099212336, 29.150728055937964 ], [ -95.849908099533224, 29.150931056269187 ], [ -95.850290099340612, 29.151184056112033 ], [ -95.850453099550805, 29.15141505633127 ], [ -95.850628099944643, 29.151635055894776 ], [ -95.850710100044537, 29.151882056547635 ], [ -95.850704100064959, 29.152107056559178 ], [ -95.850695099522085, 29.152189056369654 ], [ -95.850666099836232, 29.152454056519236 ], [ -95.850654099990848, 29.152844056601303 ], [ -95.85062310015222, 29.152910056503984 ], [ -95.850510100019434, 29.153009056836716 ], [ -95.850197099878557, 29.153355056598492 ], [ -95.850022099361937, 29.153575056286996 ], [ -95.849909099970361, 29.153746056962319 ], [ -95.849790099479563, 29.153894056614924 ], [ -95.849653099078793, 29.154010057144248 ], [ -95.849496099412377, 29.154098056934309 ], [ -95.849314099145246, 29.154235056521212 ], [ -95.849120099063526, 29.154449057010993 ], [ -95.84905209956564, 29.154625057084939 ], [ -95.849020099229946, 29.154785056933157 ], [ -95.84906409905058, 29.154983056776388 ], [ -95.849190099865922, 29.155192057240569 ], [ -95.849315099346342, 29.155345057125682 ], [ -95.849547099662047, 29.155686056669165 ], [ -95.85025509934303, 29.156115057455079 ], [ -95.850499100120246, 29.156494057573152 ], [ -95.850499099989008, 29.15692805712969 ], [ -95.850380100033703, 29.157027057277762 ], [ -95.850242099593018, 29.157104056996193 ], [ -95.850061099865457, 29.157242057102746 ], [ -95.849967099396395, 29.15734105773112 ], [ -95.849892099677376, 29.157610057235654 ], [ -95.849867099395723, 29.157984057831495 ], [ -95.850017099324489, 29.158440057722817 ], [ -95.850112099476675, 29.158781057630506 ], [ -95.850168100386341, 29.159039058085753 ], [ -95.850193099565445, 29.159941057465698 ], [ -95.850131100150236, 29.160067057996411 ], [ -95.849956100078259, 29.16019405837168 ], [ -95.849660100273226, 29.160316057646863 ], [ -95.849367100223091, 29.160436058330482 ], [ -95.849235099524407, 29.160386058272817 ], [ -95.848910099389101, 29.160122058143163 ], [ -95.848678099940614, 29.159990058262249 ], [ -95.848446099844395, 29.159914058160968 ], [ -95.848139099424785, 29.159919058020655 ], [ -95.847883099603635, 29.16009005843582 ], [ -95.847783099553965, 29.160216057768995 ], [ -95.847707099226696, 29.16035405808708 ], [ -95.847908098996157, 29.161458058508874 ], [ -95.848078099692685, 29.162046058767114 ], [ -95.848121099120164, 29.162354058665809 ], [ -95.848140099379364, 29.162717058528241 ], [ -95.848053099280307, 29.163168058348649 ], [ -95.848084099610944, 29.163366058538092 ], [ -95.848153099195741, 29.163558058757939 ], [ -95.848260099889785, 29.163712058747599 ], [ -95.848748100044631, 29.164075058425688 ], [ -95.848861099611341, 29.164234058823293 ], [ -95.848955099697008, 29.16438805848135 ], [ -95.848962099677294, 29.164690058536799 ], [ -95.84893710030147, 29.164910058573099 ], [ -95.848912099685691, 29.165004058844112 ], [ -95.848567099528182, 29.165262058953488 ], [ -95.848505099476668, 29.16533405888319 ], [ -95.84839209949422, 29.165422058752515 ], [ -95.848317099227131, 29.165432058670401 ], [ -95.84808509936677, 29.165422059042221 ], [ -95.847929099574401, 29.165477058940979 ], [ -95.847853099897094, 29.165482059483995 ], [ -95.847759099393215, 29.165471059517692 ], [ -95.847553099603658, 29.165394059462567 ], [ -95.847384099754677, 29.165361059358254 ], [ -95.847214099366838, 29.165383058878465 ], [ -95.847058099764695, 29.165427058844227 ], [ -95.846745098862002, 29.16555905912421 ], [ -95.846563099581047, 29.165823058941132 ], [ -95.846545098801045, 29.165988059057423 ], [ -95.846545099471911, 29.166208059299755 ], [ -95.846657099141595, 29.166373059542273 ], [ -95.846820099405321, 29.166664059772966 ], [ -95.846914099498861, 29.16675205917149 ], [ -95.847002099753098, 29.16707105912711 ], [ -95.847015099354792, 29.167230059143229 ], [ -95.846952099000873, 29.167379059691012 ], [ -95.846883099268808, 29.167478059724793 ], [ -95.846614099572889, 29.167643060000582 ], [ -95.846476099098027, 29.167643060046046 ], [ -95.84627609919275, 29.167610059550093 ], [ -95.845994099265454, 29.16750605926476 ], [ -95.845712099137188, 29.16748405973275 ], [ -95.845199099429195, 29.167561059765802 ], [ -95.844979098803975, 29.167671059898399 ], [ -95.844635099045547, 29.167874059384722 ], [ -95.844109099161955, 29.168424059797697 ], [ -95.843865098194513, 29.168638060235889 ], [ -95.84322009859136, 29.169040060179199 ], [ -95.843120098666645, 29.169034060018042 ], [ -95.84280709873002, 29.168919059657714 ], [ -95.842625098612572, 29.16882605972275 ], [ -95.842443098178151, 29.168677060181722 ], [ -95.842331098603324, 29.168562060198891 ], [ -95.842149098279251, 29.16844105990717 ], [ -95.841811098083625, 29.168260060324915 ], [ -95.841266098465397, 29.168166059997542 ], [ -95.84058309831434, 29.168084059488827 ], [ -95.84027609827325, 29.168090060028025 ], [ -95.840032097626406, 29.168178060003498 ], [ -95.839838097998395, 29.168310059849638 ], [ -95.839731097211853, 29.168447059646503 ], [ -95.839669098132859, 29.168590059994919 ], [ -95.83963109799484, 29.168711060379849 ], [ -95.839556097310222, 29.168810059761803 ], [ -95.839525097981195, 29.168898059674937 ], [ -95.839544097645103, 29.169002060254865 ], [ -95.839995097484973, 29.169563059834775 ], [ -95.840183097477592, 29.169766060597805 ], [ -95.840289097403527, 29.169970060706483 ], [ -95.840296098217408, 29.170211060653482 ], [ -95.84039009797165, 29.170519060602736 ], [ -95.840440097955792, 29.171041060855849 ], [ -95.840377097946643, 29.171333060972426 ], [ -95.840327097803893, 29.17144806036335 ], [ -95.84011409802109, 29.171679060875178 ], [ -95.839983098242001, 29.171767061138173 ], [ -95.839657098169553, 29.171938060597942 ], [ -95.839551097891814, 29.172015060602234 ], [ -95.839457097612737, 29.172103060714448 ], [ -95.839369097674805, 29.172251060457839 ], [ -95.839363097804991, 29.172372060805223 ], [ -95.839369097366472, 29.172509061179586 ], [ -95.839419098139857, 29.172674060738078 ], [ -95.839526097292151, 29.172806060747163 ], [ -95.839676098307564, 29.17289406138373 ], [ -95.839814098000389, 29.172949061078189 ], [ -95.840102097890622, 29.172883061085489 ], [ -95.840296097761708, 29.172899061187834 ], [ -95.840898098236863, 29.173037060975226 ], [ -95.841574098126955, 29.173410061058732 ], [ -95.841714098483521, 29.173526061109328 ], [ -95.84162509884591, 29.173607061078474 ], [ -95.840290098567237, 29.174823061037863 ], [ -95.838686097488704, 29.17628506152252 ], [ -95.838378097798966, 29.176569061692252 ], [ -95.840145098095462, 29.178091062131806 ], [ -95.841769099071215, 29.179489062401299 ], [ -95.841850098712513, 29.17955706265214 ], [ -95.841965098653546, 29.17965706202693 ], [ -95.843093099298585, 29.18063506254737 ], [ -95.852932101480405, 29.189094063772909 ], [ -95.852960101445305, 29.189119063453859 ], [ -95.85308210177071, 29.189228064010976 ], [ -95.854357102534962, 29.190365063855019 ], [ -95.854569102056018, 29.190554064365877 ], [ -95.85457710254957, 29.190561063775 ], [ -95.854584102110678, 29.190568063927543 ], [ -95.854596101884383, 29.190579064443039 ], [ -95.854630101923462, 29.190609064390859 ], [ -95.854675102750647, 29.19064906367808 ], [ -95.854730102201657, 29.190698063767101 ], [ -95.854896101979946, 29.190846064201356 ], [ -95.857812102899601, 29.193320064171065 ], [ -95.857778103769419, 29.193350064683244 ], [ -95.85758110309736, 29.193522064383668 ], [ -95.857439103066312, 29.193645064914275 ], [ -95.857391103628174, 29.193687064537478 ], [ -95.857305102702412, 29.193762064454088 ], [ -95.857295103578508, 29.19377106460913 ], [ -95.857202103458022, 29.193852064531775 ], [ -95.855883102344805, 29.195003065362854 ], [ -95.855758102777159, 29.195110064935132 ], [ -95.855538102773963, 29.195300065035614 ], [ -95.855460103025734, 29.195367064621443 ], [ -95.855444102984777, 29.195381065468407 ], [ -95.855369102272149, 29.195445064936958 ], [ -95.855029102615546, 29.19573806522498 ], [ -95.854492102824011, 29.196201065152231 ], [ -95.854366102805955, 29.19631006542021 ], [ -95.853957102953842, 29.19666306494701 ], [ -95.849439101116488, 29.200556066042971 ], [ -95.849231101250965, 29.200735066592056 ], [ -95.849102101892555, 29.20084806667742 ], [ -95.8490221012853, 29.200918066327421 ], [ -95.844674100741699, 29.204681067326089 ], [ -95.844936100850603, 29.204913067628652 ], [ -95.848155100929347, 29.207656067700775 ], [ -95.848843102073488, 29.208242068090875 ], [ -95.850617102052055, 29.209742068517119 ], [ -95.850636101895546, 29.209758068467494 ], [ -95.854662103758713, 29.213162068381326 ], [ -95.855446103734522, 29.213825068624359 ], [ -95.85715710424337, 29.215280068832477 ], [ -95.859194105077222, 29.217012069413364 ], [ -95.859237104400819, 29.217035069530738 ], [ -95.859312104881582, 29.21705706896017 ], [ -95.859334104797639, 29.217061069806974 ], [ -95.861692104952184, 29.21920406968815 ], [ -95.867308107186091, 29.224058070979247 ], [ -95.874035108456241, 29.22970707181312 ], [ -95.875237109618652, 29.228512071540802 ], [ -95.88121311050854, 29.223239069584288 ], [ -95.884093111621155, 29.220627069065561 ], [ -95.884098110636202, 29.220596068934469 ], [ -95.884100111258363, 29.220584068959472 ], [ -95.884133110765973, 29.220490069545136 ], [ -95.884216110900041, 29.220370069257648 ], [ -95.884312111470834, 29.220272068871846 ], [ -95.884690110777242, 29.219886068882921 ], [ -95.885658110974063, 29.219013068593632 ], [ -95.885833111946056, 29.218855069026155 ], [ -95.887248111347517, 29.21756506819915 ], [ -95.890973112810585, 29.214196067770061 ], [ -95.891176113095867, 29.214008067940025 ], [ -95.893526113596252, 29.211939067498815 ], [ -95.89365511343297, 29.211822067285919 ], [ -95.895031113072179, 29.210577066434599 ], [ -95.895615113296572, 29.210056066523642 ], [ -95.895704113791268, 29.209976066430652 ], [ -95.896942114012063, 29.208813066506661 ], [ -95.898996114140118, 29.206912065859147 ], [ -95.899067114678473, 29.20683506581242 ], [ -95.899160114517102, 29.206748066279076 ], [ -95.899240114727874, 29.206664066105009 ], [ -95.912303117557968, 29.19479506267243 ], [ -95.912713117223092, 29.194424063165506 ], [ -95.91278011747724, 29.194363063045657 ], [ -95.917193118312113, 29.190366061581944 ], [ -95.917272117812573, 29.190295062109847 ], [ -95.917318118341484, 29.190254062197212 ], [ -95.917364118023528, 29.190212062119649 ], [ -95.920958119121607, 29.186956060842963 ], [ -95.925598119606477, 29.182752060566781 ], [ -95.932694121723273, 29.176322058476973 ], [ -95.933708121903905, 29.175403058777263 ], [ -95.942657124239318, 29.167296056826071 ], [ -95.964056128462147, 29.14791005163428 ], [ -95.965203128686753, 29.146870051753716 ], [ -95.979623132248548, 29.138821049034632 ], [ -95.979808132388214, 29.138717049020009 ], [ -95.979933131655187, 29.138648049077286 ], [ -95.982203132691197, 29.137382048881477 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 504, "Tract": "48473680201", "Area_SqMi": 119.66388891314536, "total_2009": 813, "total_2010": 886, "total_2011": 1012, "total_2012": 1394, "total_2013": 1391, "total_2014": 1911, "total_2015": 1779, "total_2016": 1154, "total_2017": 1130, "total_2018": 1309, "total_2019": 1371, "total_2020": 1405, "age1": 176, "age2": 655, "age3": 342, "earn1": 89, "earn2": 188, "earn3": 896, "naics_s01": 52, "naics_s02": 1, "naics_s03": 2, "naics_s04": 259, "naics_s05": 549, "naics_s06": 23, "naics_s07": 26, "naics_s08": 90, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 59, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 41, "naics_s17": 7, "naics_s18": 18, "naics_s19": 25, "naics_s20": 1, "race1": 992, "race2": 125, "race3": 10, "race4": 24, "race5": 0, "race6": 22, "ethnicity1": 676, "ethnicity2": 497, "edu1": 282, "edu2": 274, "edu3": 274, "edu4": 167, "Shape_Length": 307836.74726549356, "Shape_Area": 3336024416.1057482, "total_2021": 1132, "total_2022": 1173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.126281202228967, 29.900513199919519 ], [ -96.126239202106206, 29.899322199558267 ], [ -96.126251202508541, 29.899164199144717 ], [ -96.126263202129564, 29.899009199406692 ], [ -96.12627420197191, 29.898855198940971 ], [ -96.125956202530205, 29.8977141995917 ], [ -96.125417201858298, 29.896826198878866 ], [ -96.12524520162637, 29.896538199320613 ], [ -96.124157201958624, 29.895051198822028 ], [ -96.123795202050914, 29.894787198239509 ], [ -96.123520201801767, 29.894586198319036 ], [ -96.123440201317379, 29.894527198386427 ], [ -96.122570201025397, 29.893926198726291 ], [ -96.11735419970671, 29.8908971981371 ], [ -96.113482198812136, 29.889687198198153 ], [ -96.113393198884651, 29.889638198120203 ], [ -96.113292198695518, 29.889614198197052 ], [ -96.113150198741266, 29.889574197940355 ], [ -96.112360198952544, 29.889411197873009 ], [ -96.111109198480591, 29.889189197966708 ], [ -96.109830198095793, 29.888973198312325 ], [ -96.109701197998589, 29.888951198004474 ], [ -96.109571197491277, 29.888929197681129 ], [ -96.109319197409562, 29.888887198324568 ], [ -96.109263197571224, 29.888808197903536 ], [ -96.109157197215723, 29.888659197533382 ], [ -96.109052198014751, 29.888509197938557 ], [ -96.109014197792305, 29.888457198204964 ], [ -96.108808197446209, 29.888179197744485 ], [ -96.108605197888835, 29.887905198166873 ], [ -96.108314197335858, 29.887499197691962 ], [ -96.107314197280971, 29.886102197378637 ], [ -96.10569219616707, 29.883693196653699 ], [ -96.104347196187675, 29.882646197203279 ], [ -96.102533195705064, 29.882724196557763 ], [ -96.101679195251521, 29.882760196764437 ], [ -96.101123195403588, 29.882777196579308 ], [ -96.10079319521536, 29.882879196642577 ], [ -96.100731194911646, 29.882898196967854 ], [ -96.100668195703676, 29.882916197396497 ], [ -96.099993195409127, 29.883117197184944 ], [ -96.099831194916192, 29.883166197269425 ], [ -96.098114194890073, 29.883682197429412 ], [ -96.094707193932038, 29.884084197528782 ], [ -96.094167193759418, 29.883950197746586 ], [ -96.092746193026215, 29.882770197217528 ], [ -96.092483193164171, 29.881826196964525 ], [ -96.092609192643721, 29.881177196569205 ], [ -96.092653192725891, 29.880944197018344 ], [ -96.092718192813066, 29.880596196647602 ], [ -96.092787193512393, 29.880227196498026 ], [ -96.092811193493958, 29.880114196495708 ], [ -96.092828192726543, 29.880023197028994 ], [ -96.092862193520446, 29.879835196653232 ], [ -96.092913193267734, 29.879556196766675 ], [ -96.09294419285925, 29.879384196339984 ], [ -96.093505193159089, 29.87885519616006 ], [ -96.095815193710962, 29.876681196237595 ], [ -96.097532194240969, 29.876097196026858 ], [ -96.097715193902928, 29.876036196168467 ], [ -96.098184194674118, 29.875877195474185 ], [ -96.098484194385605, 29.875772195969933 ], [ -96.098558194800134, 29.875747195741926 ], [ -96.098632194143406, 29.875722195450553 ], [ -96.098727194732859, 29.875690195689749 ], [ -96.098813194855879, 29.87566119601297 ], [ -96.098995194170442, 29.875601195310907 ], [ -96.099551194629143, 29.875426195628734 ], [ -96.100078194594161, 29.875233195048288 ], [ -96.10073519535328, 29.875043195776211 ], [ -96.101903194875689, 29.874721194951345 ], [ -96.103485195944515, 29.874427195622111 ], [ -96.104690195738499, 29.874261194864598 ], [ -96.105612195960205, 29.874164195225973 ], [ -96.106416196416163, 29.874178194994521 ], [ -96.106768196122161, 29.874177194638779 ], [ -96.107908197084427, 29.874176194656261 ], [ -96.108239196779095, 29.87417619526072 ], [ -96.110287197152374, 29.873821195060664 ], [ -96.11088819747296, 29.873433195104269 ], [ -96.112234197446924, 29.872562194838046 ], [ -96.112341197202724, 29.872037194296588 ], [ -96.112674197668539, 29.870262193990513 ], [ -96.112190197415615, 29.866361192880628 ], [ -96.11210719716739, 29.865688193215423 ], [ -96.111947197436237, 29.86509019315838 ], [ -96.11159919706806, 29.863793192831753 ], [ -96.111251196578124, 29.862495192741267 ], [ -96.110768196518194, 29.86070819234342 ], [ -96.1102091963362, 29.858677192204052 ], [ -96.109596196127427, 29.857948191386711 ], [ -96.109153196445419, 29.857674192056859 ], [ -96.108510196123305, 29.857271191583241 ], [ -96.108091196012964, 29.857008191818796 ], [ -96.107867196029019, 29.85686719153302 ], [ -96.10743519613672, 29.85659719125869 ], [ -96.104835195378044, 29.855509191208295 ], [ -96.101664194582128, 29.853968191226087 ], [ -96.10085719360967, 29.85331219101165 ], [ -96.100946194406262, 29.852519191052139 ], [ -96.102131194444411, 29.8516211909605 ], [ -96.102644194713818, 29.851232190770084 ], [ -96.102742193843383, 29.851192190416075 ], [ -96.102901194815047, 29.851127190208636 ], [ -96.103350193952778, 29.85094319058037 ], [ -96.10351519399569, 29.850875190295074 ], [ -96.10363219472427, 29.850827190271868 ], [ -96.103750194399424, 29.850779190058347 ], [ -96.104522194937431, 29.850465190481046 ], [ -96.10466519434992, 29.850441190115177 ], [ -96.106282195135478, 29.850179190446653 ], [ -96.106982194963791, 29.850009189743187 ], [ -96.107472195512798, 29.849892190360244 ], [ -96.109409195993919, 29.849892190268708 ], [ -96.110046196077846, 29.850047190145354 ], [ -96.110460195884286, 29.85002519026574 ], [ -96.111086196300562, 29.849734190068901 ], [ -96.11124119672958, 29.849668189660552 ], [ -96.111390195950634, 29.849598189988527 ], [ -96.111898196981358, 29.849358190065551 ], [ -96.112561196425375, 29.84905718966872 ], [ -96.11352319695466, 29.848605189890048 ], [ -96.114741197523017, 29.848278189949948 ], [ -96.115569197234706, 29.847929189647637 ], [ -96.116252197169615, 29.847511189295481 ], [ -96.117819197867561, 29.846236189045836 ], [ -96.118125197476573, 29.845974188816044 ], [ -96.118805197640057, 29.84539318872261 ], [ -96.119787198652091, 29.844063188624556 ], [ -96.119856198595983, 29.843969188503941 ], [ -96.119972198556951, 29.84380918820041 ], [ -96.121320198310045, 29.841968187889272 ], [ -96.121905198607692, 29.840072187359912 ], [ -96.122104198341532, 29.839409187140394 ], [ -96.12183219858197, 29.83813718747118 ], [ -96.12178519876656, 29.837852186826353 ], [ -96.121684198570279, 29.837505187122083 ], [ -96.121412198583826, 29.836657186617153 ], [ -96.120717198216738, 29.83516618705184 ], [ -96.119892197595561, 29.833815186847826 ], [ -96.118875197328464, 29.832586186478494 ], [ -96.116733197177624, 29.830667185825387 ], [ -96.116040197097036, 29.830063185811721 ], [ -96.115989196661047, 29.830018185707807 ], [ -96.115276196076522, 29.829397185242051 ], [ -96.114563196807566, 29.828776185223802 ], [ -96.11403819617972, 29.828319185957472 ], [ -96.11247119523, 29.826736185426803 ], [ -96.111683195497889, 29.825866185042692 ], [ -96.110832195630834, 29.824769185206172 ], [ -96.10923919466245, 29.823202185016196 ], [ -96.10793219391897, 29.822285184588406 ], [ -96.107420194440394, 29.82218018456021 ], [ -96.106685194312888, 29.822245184662169 ], [ -96.10663219394452, 29.822274184302881 ], [ -96.106570194108428, 29.822308184479354 ], [ -96.106508193629693, 29.822341184653073 ], [ -96.106148193458068, 29.822540184173889 ], [ -96.105786193671861, 29.822738184752538 ], [ -96.105651193668734, 29.822811184938605 ], [ -96.105418193716531, 29.822938184733946 ], [ -96.104183193404992, 29.824417185269905 ], [ -96.102758193183405, 29.825475185436201 ], [ -96.100114192122206, 29.826936186089871 ], [ -96.099568192369901, 29.827357185864056 ], [ -96.098995192699391, 29.827387185993508 ], [ -96.098179192245553, 29.826733185773886 ], [ -96.097850192008053, 29.825839185159786 ], [ -96.098201191594612, 29.823992184940831 ], [ -96.098277192102486, 29.823594184950821 ], [ -96.098413191727829, 29.823236184772327 ], [ -96.098483191828947, 29.823052184775371 ], [ -96.098561192152445, 29.822846185390262 ], [ -96.0985191917637, 29.822444185216717 ], [ -96.098484192138301, 29.822091184806652 ], [ -96.098503192002326, 29.821949185190608 ], [ -96.09852419241858, 29.821795185080607 ], [ -96.09853819234371, 29.821697184820341 ], [ -96.098547192324119, 29.821627184526289 ], [ -96.098557191573732, 29.821556184229497 ], [ -96.098637191525512, 29.820953184117322 ], [ -96.098733191830874, 29.8202721845825 ], [ -96.100552192461393, 29.817371183499432 ], [ -96.101064192415279, 29.816670183157601 ], [ -96.101441192267657, 29.816155183559495 ], [ -96.101908192632379, 29.815199183027431 ], [ -96.102124192838374, 29.814754183569896 ], [ -96.102342192352893, 29.814325183057772 ], [ -96.102355192938532, 29.814299183366774 ], [ -96.102537193082313, 29.81395318312407 ], [ -96.102720192565542, 29.813592183097008 ], [ -96.10318019224205, 29.812697182408563 ], [ -96.103315192681521, 29.81243618242619 ], [ -96.103121192880096, 29.810715182633338 ], [ -96.102588192023561, 29.809813182253883 ], [ -96.102503192077663, 29.809670182405366 ], [ -96.102190191904043, 29.809609182430457 ], [ -96.101725192060556, 29.809514182368712 ], [ -96.101518191671531, 29.809474181744587 ], [ -96.101245192392085, 29.809462182508994 ], [ -96.098130191025334, 29.809355182086627 ], [ -96.095797190500747, 29.809025182619894 ], [ -96.095449190658769, 29.808977182560216 ], [ -96.095102190799722, 29.808929182497891 ], [ -96.095069190813589, 29.808935182097994 ], [ -96.092853189858189, 29.808604182205819 ], [ -96.0908591898053, 29.807823181739931 ], [ -96.087210188464638, 29.806395181855322 ], [ -96.085716188065447, 29.805894181970388 ], [ -96.084163187291423, 29.805371182147688 ], [ -96.082610187082665, 29.804847182004096 ], [ -96.082282186763081, 29.804738181708153 ], [ -96.082196187312064, 29.804729182159864 ], [ -96.079553186532991, 29.804425181705234 ], [ -96.077095186032281, 29.804576182199593 ], [ -96.074308185235651, 29.805148182632955 ], [ -96.07178518490727, 29.805992182589723 ], [ -96.069865184172627, 29.806960182595638 ], [ -96.068569183744501, 29.807041182728874 ], [ -96.068094183069931, 29.807106182384199 ], [ -96.067476183638121, 29.807096182762624 ], [ -96.067145183364943, 29.807134183232282 ], [ -96.066637182928332, 29.807096182391543 ], [ -96.066405182677627, 29.807079182434368 ], [ -96.066173183512504, 29.807062183000287 ], [ -96.064607182607418, 29.806944182759072 ], [ -96.063738182451246, 29.806597183212407 ], [ -96.06300518180926, 29.8063061828915 ], [ -96.062271182464968, 29.806015182736921 ], [ -96.062112181682792, 29.80595218301784 ], [ -96.062074181686654, 29.805911182553945 ], [ -96.061418182244367, 29.805200182350319 ], [ -96.061245181400778, 29.805015182724119 ], [ -96.060831181342223, 29.804574182898769 ], [ -96.060163181294797, 29.803231182347929 ], [ -96.059572180841769, 29.801527181624103 ], [ -96.059000180619975, 29.800365181810726 ], [ -96.05827918112206, 29.799759181372472 ], [ -96.057541180992516, 29.799587181256101 ], [ -96.056266179839199, 29.799665181538806 ], [ -96.055896180444577, 29.79996318175764 ], [ -96.055683180466616, 29.800135181559728 ], [ -96.05510618035305, 29.800796182159178 ], [ -96.054896179428113, 29.801036181949346 ], [ -96.054722180208742, 29.801243182468404 ], [ -96.054465179916363, 29.801517181682669 ], [ -96.054376179797046, 29.801609181764647 ], [ -96.054360179417174, 29.801629181750119 ], [ -96.054209179870483, 29.801791182535727 ], [ -96.054195179270707, 29.801806182329418 ], [ -96.054160179247305, 29.801843182302061 ], [ -96.05408117927071, 29.80192718188885 ], [ -96.053952179783806, 29.802064182614984 ], [ -96.053796179196041, 29.802231182140986 ], [ -96.05364018005686, 29.802397182444945 ], [ -96.053585179497091, 29.802379182551238 ], [ -96.05350917915213, 29.802330182068079 ], [ -96.053421179710782, 29.802313182452774 ], [ -96.053351179039808, 29.802313182703251 ], [ -96.05207217928232, 29.802670182581835 ], [ -96.051976178916888, 29.802689182200925 ], [ -96.051132179485208, 29.802853182653376 ], [ -96.050810178514467, 29.803104182595849 ], [ -96.050407178743669, 29.803155182936909 ], [ -96.050002178633591, 29.803192182583665 ], [ -96.04985717839952, 29.80320518294231 ], [ -96.04924117837723, 29.803192182485695 ], [ -96.049062178873214, 29.803117182826604 ], [ -96.048919178846461, 29.803013182652755 ], [ -96.048388177944005, 29.802468182270626 ], [ -96.047856177828621, 29.801923182841104 ], [ -96.047734178408035, 29.801797182105499 ], [ -96.047611177558551, 29.801671182659319 ], [ -96.046954177841855, 29.800995181831905 ], [ -96.044367176736571, 29.79780618152515 ], [ -96.044133177111419, 29.797516181959079 ], [ -96.042671176795466, 29.795808181737677 ], [ -96.042249176591881, 29.795319181578801 ], [ -96.041960176148393, 29.79437418130113 ], [ -96.041679176449378, 29.793455181058349 ], [ -96.041399176137332, 29.792536181168465 ], [ -96.041372175576385, 29.79244818055939 ], [ -96.041374176439476, 29.792373180829831 ], [ -96.041391175665893, 29.79083918022128 ], [ -96.041396175905334, 29.790219180427382 ], [ -96.041401176403767, 29.789756179870444 ], [ -96.04140617579661, 29.789293180130301 ], [ -96.041453176312999, 29.788925179883918 ], [ -96.041499175948815, 29.788557180062273 ], [ -96.041842175647929, 29.785858179578863 ], [ -96.042869175661863, 29.782254178297467 ], [ -96.043016176311383, 29.779134178113647 ], [ -96.042050175520032, 29.777231177617423 ], [ -96.040614174695747, 29.775896177501082 ], [ -96.038635174692388, 29.774688177157003 ], [ -96.038120174084938, 29.774292176793129 ], [ -96.03738117392696, 29.773722177012996 ], [ -96.037095174010346, 29.773242177295611 ], [ -96.036827173648263, 29.772794176468317 ], [ -96.036559173519592, 29.77234617680622 ], [ -96.036404173688766, 29.772088177055796 ], [ -96.036283173539289, 29.771748177008444 ], [ -96.03623617393194, 29.771761176366869 ], [ -96.036166173644943, 29.77178017693997 ], [ -96.035968174042452, 29.771836176720829 ], [ -96.035816173689668, 29.771878176561255 ], [ -96.035700173758855, 29.771911176537373 ], [ -96.035378174042165, 29.771985177223012 ], [ -96.034763173407228, 29.772134177087313 ], [ -96.031957172458817, 29.772818177392502 ], [ -96.03102217235697, 29.773047177392911 ], [ -96.030532172264145, 29.773163177358416 ], [ -96.029065172186279, 29.773512177173693 ], [ -96.028576171766616, 29.773629177783874 ], [ -96.024352170672302, 29.774622177795308 ], [ -96.024171171059621, 29.7746651777917 ], [ -96.020496169888588, 29.775545178372766 ], [ -96.016702169434382, 29.776453178727913 ], [ -96.004595165900952, 29.779352179420819 ], [ -96.002604165178923, 29.779838179215592 ], [ -95.99520616419116, 29.781603180251022 ], [ -95.993603163634006, 29.781981179927243 ], [ -95.990695162737111, 29.782670180699643 ], [ -95.988795162360518, 29.783111180753451 ], [ -95.988067162518419, 29.783281180310144 ], [ -95.987482162030346, 29.783425180590708 ], [ -95.987339161683963, 29.78346118042947 ], [ -95.987195162320404, 29.783496181130456 ], [ -95.987055161857995, 29.783529180414874 ], [ -95.98691416135695, 29.783561180542687 ], [ -95.985951161339074, 29.783786180978261 ], [ -95.98576416191851, 29.783831180737323 ], [ -95.985051160886556, 29.784008180986799 ], [ -95.984419160977225, 29.784196181228815 ], [ -95.984067160927353, 29.784320181119224 ], [ -95.983877161054892, 29.784410181094849 ], [ -95.983642160919729, 29.784490180813552 ], [ -95.983374160484431, 29.784633181036629 ], [ -95.98276216112518, 29.784938181291686 ], [ -95.981943160320327, 29.785410181293489 ], [ -95.981725160101419, 29.785531181358138 ], [ -95.981161160955963, 29.785845181262236 ], [ -95.98092516025676, 29.785972181686457 ], [ -95.980751160609117, 29.786062181197345 ], [ -95.980416160313069, 29.786194181834968 ], [ -95.980495160234412, 29.786345181443068 ], [ -95.980539160410729, 29.786477181431739 ], [ -95.980552160536021, 29.786587181689409 ], [ -95.980520160398484, 29.786724181768346 ], [ -95.980451160411661, 29.78694918216063 ], [ -95.980275160819303, 29.787510182184768 ], [ -95.980231159822154, 29.787725181540907 ], [ -95.980237160552889, 29.788065181634391 ], [ -95.980219160113094, 29.788208181991578 ], [ -95.980181160086985, 29.788335182180123 ], [ -95.980137160127981, 29.788434181716955 ], [ -95.98006116024591, 29.788538182326104 ], [ -95.979784160660984, 29.788857181857733 ], [ -95.979728160470202, 29.788950182553712 ], [ -95.979702160594456, 29.789055182265585 ], [ -95.979696159987043, 29.789753181861681 ], [ -95.979627160590013, 29.790148182245076 ], [ -95.979610160176009, 29.790380182219824 ], [ -95.979602160346275, 29.790495182196551 ], [ -95.979514160601937, 29.790879182165398 ], [ -95.979458160496023, 29.791050182528817 ], [ -95.97938215998218, 29.791215182562787 ], [ -95.979181160120092, 29.791550182996986 ], [ -95.979073160026161, 29.791704182887077 ], [ -95.978985160576855, 29.791863183059206 ], [ -95.978872159793269, 29.79195718306757 ], [ -95.97867715997856, 29.792072183183944 ], [ -95.978532159685969, 29.792122182920764 ], [ -95.97834316041579, 29.792111182763588 ], [ -95.978110160460417, 29.792116183185676 ], [ -95.977883160357166, 29.79212818307051 ], [ -95.977669159768993, 29.792166183178239 ], [ -95.977606159659302, 29.792166182432137 ], [ -95.977536159833619, 29.792161182690531 ], [ -95.977303160108676, 29.792111182752617 ], [ -95.977177159903789, 29.792111182690842 ], [ -95.977051159370816, 29.792144182426441 ], [ -95.976761159168817, 29.792265182740248 ], [ -95.97656615986628, 29.792304182735862 ], [ -95.976415159288052, 29.792364182942478 ], [ -95.976320159857167, 29.792392182695071 ], [ -95.976232159351554, 29.792403183252716 ], [ -95.976144158985832, 29.792397182891129 ], [ -95.975967159812399, 29.792359182992318 ], [ -95.975804159812, 29.792348182736532 ], [ -95.975728158997825, 29.792359182917803 ], [ -95.975602159438736, 29.792403183110896 ], [ -95.975526158874189, 29.792409183194923 ], [ -95.975356159182155, 29.792458183190359 ], [ -95.97523715896169, 29.792513183008708 ], [ -95.975174159306533, 29.792524182917806 ], [ -95.975129159032036, 29.792524182839063 ], [ -95.974947159461607, 29.792469183411974 ], [ -95.974802158759161, 29.792486182828092 ], [ -95.974739159329346, 29.792546183346516 ], [ -95.974745159066273, 29.792794182878634 ], [ -95.974720159596444, 29.792832182697211 ], [ -95.97451215911893, 29.792838183327603 ], [ -95.974506159571504, 29.792986183004832 ], [ -95.974481159579113, 29.793035182745754 ], [ -95.974392158714053, 29.793052182986571 ], [ -95.974210159354328, 29.793036183410798 ], [ -95.973920158785845, 29.793063183269314 ], [ -95.973806159353231, 29.793113182824399 ], [ -95.973737159397785, 29.793157182832399 ], [ -95.973687158852357, 29.793228182977789 ], [ -95.97358615853355, 29.793300183351025 ], [ -95.973277158653644, 29.793432183212584 ], [ -95.973032158276951, 29.793503183592044 ], [ -95.972931158811164, 29.79356418352214 ], [ -95.972798158644792, 29.793586183733797 ], [ -95.972231158804234, 29.793432182891404 ], [ -95.97215015805601, 29.793502183564641 ], [ -95.972120159012547, 29.793512183755578 ], [ -95.972003158308453, 29.793359182928715 ], [ -95.97196415895796, 29.793352182879662 ], [ -95.971799158532875, 29.793341183139503 ], [ -95.971468158369134, 29.79334618299519 ], [ -95.971305158004583, 29.793368183560748 ], [ -95.971265157889235, 29.793377183237471 ], [ -95.971153158320405, 29.793425183337778 ], [ -95.970891158461171, 29.793600183687442 ], [ -95.970648158514905, 29.79379518326915 ], [ -95.970487157651917, 29.793907183694618 ], [ -95.970328157586437, 29.79400518314052 ], [ -95.970250158523314, 29.794053183776864 ], [ -95.970123158486146, 29.794144183299633 ], [ -95.969822158002714, 29.794391183586871 ], [ -95.969698158043244, 29.794486183737764 ], [ -95.969539158132903, 29.794601184054166 ], [ -95.969482157775104, 29.794650183319767 ], [ -95.969490158328071, 29.794685183630698 ], [ -95.969493158369986, 29.794725183705491 ], [ -95.969464157665001, 29.79474018331139 ], [ -95.96937715754494, 29.794746183996764 ], [ -95.969283157672734, 29.794878184142398 ], [ -95.969106158018121, 29.794856183343541 ], [ -95.969056157753613, 29.794856183726651 ], [ -95.969018157577167, 29.794867183738315 ], [ -95.968993158084118, 29.794889183449492 ], [ -95.968962157841645, 29.794950183705545 ], [ -95.968935158062237, 29.795044184109098 ], [ -95.96891815808587, 29.795109184114953 ], [ -95.968873157512903, 29.795170183675609 ], [ -95.968804158094088, 29.795214183917977 ], [ -95.968596158169177, 29.795285183531 ], [ -95.968363157387046, 29.795390184180768 ], [ -95.968149157390613, 29.795417183761113 ], [ -95.968080157135745, 29.795456183626278 ], [ -95.968042157450611, 29.79551118422286 ], [ -95.968036157949996, 29.795593183801248 ], [ -95.968048157670239, 29.795681184323119 ], [ -95.968099157745627, 29.795829184148651 ], [ -95.968092158102266, 29.79586818372649 ], [ -95.968017157373041, 29.795972184038693 ], [ -95.96802715730594, 29.7960651835389 ], [ -95.9679941576521, 29.796080183544824 ], [ -95.967954157845227, 29.796084184076747 ], [ -95.967914157713537, 29.796083183694169 ], [ -95.967874157896802, 29.79607218422375 ], [ -95.967835157489617, 29.796079183854861 ], [ -95.967798157684214, 29.796095183586822 ], [ -95.96776515754236, 29.796116184420185 ], [ -95.967732157688459, 29.796138184348148 ], [ -95.967691157048193, 29.796145183820432 ], [ -95.967653157039379, 29.79615918435746 ], [ -95.967633157709642, 29.796301183935078 ], [ -95.967616157788513, 29.796370183770904 ], [ -95.967616157296945, 29.796406183706519 ], [ -95.967643157703122, 29.796471184250741 ], [ -95.967641157776171, 29.796506184085924 ], [ -95.96762815796626, 29.796540184202701 ], [ -95.967664157563178, 29.796555184406717 ], [ -95.96768915752132, 29.796615183919254 ], [ -95.967778157413321, 29.796714184232943 ], [ -95.967841157876563, 29.796802183982123 ], [ -95.967841157397189, 29.796879183843423 ], [ -95.967828157260811, 29.796923183951304 ], [ -95.967790157510947, 29.796984184456733 ], [ -95.967696157778377, 29.797060184497713 ], [ -95.967564157698945, 29.79714318409226 ], [ -95.967488157353458, 29.797165184193215 ], [ -95.96726115738791, 29.797264184270549 ], [ -95.966545157651154, 29.797711184255416 ], [ -95.966422157554817, 29.797787184245124 ], [ -95.966056157008296, 29.798015184653373 ], [ -95.966045157238796, 29.798023184797316 ], [ -95.965991156697896, 29.79806618462662 ], [ -95.965943157603448, 29.798104184889993 ], [ -95.966799157418734, 29.79888818470906 ], [ -95.968048158138529, 29.800031184645377 ], [ -95.968465157637624, 29.800413185135955 ], [ -95.969351158364546, 29.801231184895503 ], [ -95.97013715808859, 29.801958184870742 ], [ -95.97026315853104, 29.80207318543675 ], [ -95.970602158536153, 29.802386185162348 ], [ -95.970778158380227, 29.802547184862174 ], [ -95.970771158175836, 29.802810185381514 ], [ -95.970781159125877, 29.803436185831579 ], [ -95.970819159112594, 29.805979186101869 ], [ -95.970779158805598, 29.806160185748123 ], [ -95.970729158652048, 29.806318186083889 ], [ -95.970725159011735, 29.806332185894622 ], [ -95.970597158594387, 29.806545186115386 ], [ -95.970282158451937, 29.806914186265477 ], [ -95.970238158318438, 29.8069681862533 ], [ -95.970149158979027, 29.807082186140477 ], [ -95.969438158657269, 29.807983186717475 ], [ -95.969077158818365, 29.808440186245527 ], [ -95.968326158023302, 29.809396187072515 ], [ -95.967299157993338, 29.810679186563423 ], [ -95.967267158158663, 29.810720187244172 ], [ -95.966608157612768, 29.811596186876987 ], [ -95.966033157532365, 29.812365187633365 ], [ -95.965667157495972, 29.812857187476965 ], [ -95.964278157304832, 29.81465018748013 ], [ -95.963960157204724, 29.815063187818193 ], [ -95.963707157122968, 29.815422187668684 ], [ -95.963378157119919, 29.815890188103211 ], [ -95.962390156679461, 29.817294188092568 ], [ -95.962062156910605, 29.817763189011565 ], [ -95.961004156825609, 29.817788188507357 ], [ -95.958918155882856, 29.817840188543624 ], [ -95.957833156239914, 29.817850188871649 ], [ -95.956776155676607, 29.817860188646058 ], [ -95.955617155569499, 29.817864189190949 ], [ -95.95447115468221, 29.817876188838742 ], [ -95.950962153799495, 29.817915188791584 ], [ -95.947558152931819, 29.817946189545516 ], [ -95.945254153203791, 29.817967189564051 ], [ -95.945013152325018, 29.817969188911615 ], [ -95.944210152869246, 29.817975188881441 ], [ -95.941078151423795, 29.818000189526902 ], [ -95.940474151059306, 29.818006189651864 ], [ -95.940035151295902, 29.818002189115887 ], [ -95.940030151933044, 29.817561189468073 ], [ -95.940017151656434, 29.816241188828073 ], [ -95.940013151201057, 29.815801189176984 ], [ -95.939942151147662, 29.81580118885611 ], [ -95.939872150868851, 29.81580118875198 ], [ -95.93827115142453, 29.81580218880314 ], [ -95.93658615050326, 29.815818189194474 ], [ -95.930611149354846, 29.815877189436605 ], [ -95.926308148022983, 29.815923189532093 ], [ -95.922883147374094, 29.815960189598407 ], [ -95.922448147281159, 29.815962189688303 ], [ -95.919652145937761, 29.815977190017083 ], [ -95.915633144895537, 29.816001189567704 ], [ -95.91238914476348, 29.816029189936078 ], [ -95.90996014373377, 29.816049189835994 ], [ -95.906896142785172, 29.816076190140667 ], [ -95.906813143148682, 29.8160771897027 ], [ -95.906730142772361, 29.816077190092479 ], [ -95.903376141881722, 29.816107190257799 ], [ -95.900400141714556, 29.816134190084874 ], [ -95.893317139124846, 29.816184190355308 ], [ -95.892683139511945, 29.816189190632624 ], [ -95.8899641381458, 29.816203190610604 ], [ -95.889994138449197, 29.819162191259274 ], [ -95.890068139520494, 29.826236192757793 ], [ -95.890089139583353, 29.828039192983713 ], [ -95.89012613902689, 29.830998193620239 ], [ -95.89014513971955, 29.832559194133619 ], [ -95.890152139724151, 29.833855194134554 ], [ -95.890186139866799, 29.839283195321865 ], [ -95.890238139682282, 29.84242719634149 ], [ -95.890279139837759, 29.844877196442397 ], [ -95.890283139545943, 29.845081196495499 ], [ -95.890286140213661, 29.845285196837551 ], [ -95.890297140078943, 29.845981196361496 ], [ -95.890297140052724, 29.846107196490237 ], [ -95.890312140119988, 29.848576197439534 ], [ -95.890318140416923, 29.849399197662208 ], [ -95.890320140536772, 29.84985219796906 ], [ -95.89032913993158, 29.851212197639676 ], [ -95.890332140812305, 29.851666198328925 ], [ -95.890334140271108, 29.851986198411687 ], [ -95.890340140373922, 29.852949198505009 ], [ -95.890343140602724, 29.853270198194114 ], [ -95.890354140814338, 29.854581198654561 ], [ -95.890366140024454, 29.855895199165879 ], [ -95.890380140149404, 29.857572199487866 ], [ -95.890389141086999, 29.858519198914131 ], [ -95.890397140905861, 29.859173199222845 ], [ -95.890405140827397, 29.859827199398033 ], [ -95.890447140546101, 29.862737200090795 ], [ -95.890477140514506, 29.864794200323608 ], [ -95.890432140833923, 29.865673200712582 ], [ -95.890565141511203, 29.871465201770601 ], [ -95.890570141459477, 29.871651201741198 ], [ -95.890518141881444, 29.874376202840612 ], [ -95.888283141356965, 29.874388202180135 ], [ -95.881581139119433, 29.874424202778624 ], [ -95.879347138942336, 29.874437202936232 ], [ -95.878257138282265, 29.874442202705222 ], [ -95.874987137671468, 29.874461203070933 ], [ -95.873897136859114, 29.874467203529473 ], [ -95.870574136084969, 29.874485203479278 ], [ -95.860608133648981, 29.874540203252117 ], [ -95.859793133548635, 29.874545203589829 ], [ -95.857286133368788, 29.874583203623747 ], [ -95.857200133003204, 29.874583203480103 ], [ -95.857168133334866, 29.874583203864297 ], [ -95.856943133292006, 29.874583203615341 ], [ -95.856858133277171, 29.874583204125148 ], [ -95.856864132967701, 29.874604203887998 ], [ -95.856884132639237, 29.87467120401384 ], [ -95.85689113294228, 29.874693203750933 ], [ -95.856926133123807, 29.87481120419924 ], [ -95.857031132811713, 29.875168203625122 ], [ -95.857067132893093, 29.875287203969499 ], [ -95.857097133161901, 29.875389203645703 ], [ -95.85718813281791, 29.875696204343217 ], [ -95.857219132909364, 29.875799203928199 ], [ -95.858123133586645, 29.87829720439985 ], [ -95.860040133564965, 29.883597205201529 ], [ -95.861957135011906, 29.888897206559729 ], [ -95.862016135118438, 29.889059206346428 ], [ -95.862282135117155, 29.889461206896112 ], [ -95.862228135040894, 29.889684206282325 ], [ -95.862492135021057, 29.890432206900826 ], [ -95.86254313510311, 29.890577207112628 ], [ -95.862593134542792, 29.89072120646804 ], [ -95.862803134712479, 29.891326207116443 ], [ -95.863433135664309, 29.89314120694835 ], [ -95.863643135690737, 29.893747207372989 ], [ -95.864007135377975, 29.894798207982188 ], [ -95.865101135976815, 29.897951207746839 ], [ -95.865466136125846, 29.899002208496587 ], [ -95.865772135985438, 29.899886208717234 ], [ -95.866693137096775, 29.90253820893383 ], [ -95.867000136291978, 29.903423209213962 ], [ -95.867015137195892, 29.903466209639323 ], [ -95.86706113649339, 29.903598208859528 ], [ -95.867077136364742, 29.903642209118097 ], [ -95.867083136807125, 29.903660209095197 ], [ -95.86710113711186, 29.903714209 ], [ -95.867108136452103, 29.903733209719732 ], [ -95.86746113693674, 29.904696209161891 ], [ -95.868522137031164, 29.907588209669015 ], [ -95.868876137116217, 29.908552210623292 ], [ -95.868904137498106, 29.908644210087434 ], [ -95.868973137940444, 29.908833209853665 ], [ -95.869134137296214, 29.908760210583857 ], [ -95.869582137471923, 29.908485210160936 ], [ -95.8698151380176, 29.908314210409763 ], [ -95.870030138206516, 29.908139210184981 ], [ -95.870149137575936, 29.908067210310271 ], [ -95.870257137645453, 29.908034210495472 ], [ -95.870446137358286, 29.908012210327559 ], [ -95.870585138044504, 29.907984210165395 ], [ -95.870711137685646, 29.907973209721643 ], [ -95.870850137929096, 29.907973209784263 ], [ -95.871197137691993, 29.907946210202258 ], [ -95.871430137953737, 29.907913210252936 ], [ -95.871783138437038, 29.90784120980458 ], [ -95.872231138650463, 29.907797210040066 ], [ -95.87247713883076, 29.907747210064574 ], [ -95.872742137947711, 29.907720209790671 ], [ -95.872868138667926, 29.907719209921968 ], [ -95.872969138100601, 29.907747210005041 ], [ -95.873070138640529, 29.907824210224256 ], [ -95.873146138171364, 29.907895210079346 ], [ -95.873304138810724, 29.90800521005179 ], [ -95.873468139092111, 29.908148210121414 ], [ -95.873638138141843, 29.908340209998894 ], [ -95.873998138957816, 29.908642210477481 ], [ -95.874408138928359, 29.908933210285205 ], [ -95.875005139408643, 29.909378210628976 ], [ -95.875030139168814, 29.90940021027356 ], [ -95.875112139083754, 29.909548210251383 ], [ -95.875169138867577, 29.909763210054493 ], [ -95.875226139117103, 29.909873210576915 ], [ -95.875711139613244, 29.91034021033548 ], [ -95.875806139330493, 29.910450210695654 ], [ -95.876033138908539, 29.910593209974596 ], [ -95.876153139310546, 29.91065421067087 ], [ -95.87627913930389, 29.910703210298099 ], [ -95.876689139491745, 29.910962210350103 ], [ -95.876815139245352, 29.911066210346537 ], [ -95.877521139483548, 29.911539210306604 ], [ -95.877830140345566, 29.911770210157776 ], [ -95.877937139435645, 29.911864210313531 ], [ -95.878045140189613, 29.91197921075511 ], [ -95.878309140277452, 29.912215210357978 ], [ -95.878455139751935, 29.912358210212986 ], [ -95.878587139686573, 29.912468210683826 ], [ -95.87876313994154, 29.912567211030485 ], [ -95.878946139877016, 29.912688211071782 ], [ -95.879085140140276, 29.912787210646272 ], [ -95.879123140136144, 29.912826210927619 ], [ -95.87995514068507, 29.913403211030591 ], [ -95.880372140089037, 29.913607211220775 ], [ -95.880542140175308, 29.913662211239579 ], [ -95.88070014074232, 29.913733210739355 ], [ -95.8808451403969, 29.913805211130509 ], [ -95.880927140741861, 29.913876211196659 ], [ -95.881040140809546, 29.913931210789524 ], [ -95.881621141003492, 29.914080211329619 ], [ -95.881917140827042, 29.914075211285166 ], [ -95.882176141035117, 29.914091210789806 ], [ -95.882390140773012, 29.914141210782205 ], [ -95.882485140952141, 29.914223211079733 ], [ -95.882548141403575, 29.914278211318258 ], [ -95.882561141136676, 29.914333210788918 ], [ -95.882592140833509, 29.914383210573575 ], [ -95.882636140936469, 29.914498210537378 ], [ -95.88257914124334, 29.914680210759009 ], [ -95.882447141642956, 29.914866210652487 ], [ -95.882384140834759, 29.914993211424555 ], [ -95.882333141164608, 29.915158211334802 ], [ -95.882295141373689, 29.915482211413888 ], [ -95.882238140807416, 29.915581211230226 ], [ -95.882169141182402, 29.915658211585995 ], [ -95.882131140954499, 29.915740210824939 ], [ -95.882124141363263, 29.915823210882245 ], [ -95.882124141263702, 29.915911210987367 ], [ -95.882137141509617, 29.915976211191211 ], [ -95.882131141657595, 29.916059211001272 ], [ -95.882023141125146, 29.916202211030189 ], [ -95.881935140926188, 29.916251211735727 ], [ -95.881853141130748, 29.916251211040752 ], [ -95.881784140915357, 29.916295210921604 ], [ -95.881739141417327, 29.916356211195819 ], [ -95.8817141413912, 29.916438211806199 ], [ -95.881727141321235, 29.916625211470365 ], [ -95.881764140588416, 29.916790211365473 ], [ -95.881796141548435, 29.916878211241887 ], [ -95.881771141194164, 29.91701521166884 ], [ -95.88174514074575, 29.917367211699815 ], [ -95.881808140656261, 29.917675211690902 ], [ -95.881802141193361, 29.917713211447357 ], [ -95.881694140821907, 29.917939211345697 ], [ -95.881549141109545, 29.918142212071622 ], [ -95.881518141524765, 29.918241211866281 ], [ -95.88151714129873, 29.918307211678552 ], [ -95.881562140847663, 29.918389211348092 ], [ -95.88166914090462, 29.91848321171604 ], [ -95.881763140824759, 29.918532211411279 ], [ -95.882053141458499, 29.91884521208512 ], [ -95.882243141371376, 29.919120212173105 ], [ -95.882489141554544, 29.919247211554399 ], [ -95.882646141764354, 29.919357212342344 ], [ -95.882709141712056, 29.919489211641153 ], [ -95.88282314145745, 29.919681211798537 ], [ -95.882949141623669, 29.919846212208757 ], [ -95.882990141934741, 29.919885212295014 ], [ -95.883100141741878, 29.91998921227168 ], [ -95.883277141602605, 29.920138211971981 ], [ -95.883416141445267, 29.920226212122436 ], [ -95.88358614166134, 29.920358211666436 ], [ -95.883596141660874, 29.920478212074865 ], [ -95.883605142246793, 29.920588212047509 ], [ -95.883554141552111, 29.920759211985796 ], [ -95.88343414121691, 29.921045212022115 ], [ -95.883466141408306, 29.921248212449662 ], [ -95.883522141684693, 29.921341211995948 ], [ -95.88358514169424, 29.92140221226742 ], [ -95.883661141989819, 29.921424211932862 ], [ -95.883825142111846, 29.921440212344031 ], [ -95.884065142409113, 29.921435212009332 ], [ -95.884229141846035, 29.921441212125156 ], [ -95.884515141799881, 29.921465212279486 ], [ -95.884544142540875, 29.921468212073449 ], [ -95.884690141562345, 29.92147421258494 ], [ -95.885024142564291, 29.921457212022201 ], [ -95.885201142263412, 29.921419212169042 ], [ -95.885358142337751, 29.921347212634213 ], [ -95.885598142797178, 29.921304212205882 ], [ -95.88576214277748, 29.921293212642283 ], [ -95.88588814210604, 29.921298212641773 ], [ -95.88619814214222, 29.921452212634289 ], [ -95.886242142734844, 29.921485211903782 ], [ -95.886235142712607, 29.921535212669095 ], [ -95.886134142173262, 29.921760212062956 ], [ -95.886128142260034, 29.922002211905141 ], [ -95.886084142596715, 29.922348212313924 ], [ -95.88612114274747, 29.922617212687751 ], [ -95.886090142485941, 29.922678212352608 ], [ -95.885982142888054, 29.922799212194008 ], [ -95.885938142713613, 29.922876212209992 ], [ -95.88584314229989, 29.922997212985337 ], [ -95.885780142671365, 29.923095213002039 ], [ -95.885787141952889, 29.923299212855689 ], [ -95.88578014271566, 29.923343212826641 ], [ -95.885641142074121, 29.923502212475277 ], [ -95.885572142083987, 29.923557213127921 ], [ -95.885540142865878, 29.923623212834823 ], [ -95.885780142495619, 29.923947212656209 ], [ -95.885894142297815, 29.924024213205559 ], [ -95.886045142451678, 29.924151212594225 ], [ -95.886095142653915, 29.924228212849904 ], [ -95.88611414227114, 29.924299212458962 ], [ -95.88610814267382, 29.924371212414123 ], [ -95.885950142121658, 29.924552213304082 ], [ -95.885843142224644, 29.924722212509025 ], [ -95.885735142798396, 29.924918213107102 ], [ -95.885660142296857, 29.925058213408764 ], [ -95.885615142629163, 29.925173212685447 ], [ -95.885647141949434, 29.925244213423341 ], [ -95.8857411429763, 29.925310213275612 ], [ -95.885861142306865, 29.925338213326903 ], [ -95.886208142864334, 29.925355213421007 ], [ -95.886492142761796, 29.925443212614155 ], [ -95.886833142576293, 29.925498212692151 ], [ -95.88716714238339, 29.925596212803001 ], [ -95.88718614239184, 29.925610212660565 ], [ -95.887357143082482, 29.92570721285453 ], [ -95.887466142704199, 29.925790213186247 ], [ -95.887502142665298, 29.925817213386182 ], [ -95.887697143242065, 29.925993212694216 ], [ -95.887779143551356, 29.926141213326137 ], [ -95.887804142587029, 29.926267213213393 ], [ -95.887811143347832, 29.926377213140078 ], [ -95.887697143387456, 29.926663212854596 ], [ -95.887688143005562, 29.926713213249279 ], [ -95.887646143132429, 29.926960213584771 ], [ -95.887615143224963, 29.927064213392271 ], [ -95.88779114329806, 29.927075213602155 ], [ -95.888189143711472, 29.927218213617625 ], [ -95.888268143052429, 29.927235213370295 ], [ -95.888416143794473, 29.927268212945904 ], [ -95.888637143561212, 29.927329213325184 ], [ -95.889312143604784, 29.927554213131181 ], [ -95.889570143894602, 29.927620213676526 ], [ -95.889804143473981, 29.927653213485911 ], [ -95.889949143804159, 29.927692212970008 ], [ -95.890107143674996, 29.927758213157567 ], [ -95.890225143489772, 29.927798213106186 ], [ -95.890302143637683, 29.927824212932357 ], [ -95.890479143670433, 29.927917213533387 ], [ -95.89085814366517, 29.928044213336886 ], [ -95.891003144260864, 29.928093213213113 ], [ -95.89105914394419, 29.928088213436361 ], [ -95.891148143777642, 29.928099213093013 ], [ -95.89141914454143, 29.928209213057762 ], [ -95.891564144622123, 29.928236213765945 ], [ -95.891697144639721, 29.92829121370087 ], [ -95.891766144621087, 29.928352213337988 ], [ -95.8917911439394, 29.928423213680752 ], [ -95.891822144278947, 29.928477213516981 ], [ -95.89187314409152, 29.928566213439694 ], [ -95.891968144760924, 29.928687213276898 ], [ -95.89204314437049, 29.928759213299731 ], [ -95.892163143949659, 29.928814213177581 ], [ -95.892359144643862, 29.928874213333597 ], [ -95.892447144807647, 29.928913213507776 ], [ -95.892523144308569, 29.928957213655409 ], [ -95.892624144717701, 29.929039213906652 ], [ -95.892813144803213, 29.929133213789999 ], [ -95.892927144268455, 29.929221213999742 ], [ -95.893040144203738, 29.929232213746168 ], [ -95.893072144976003, 29.929210213135171 ], [ -95.893261144229427, 29.929160213417699 ], [ -95.893362145147748, 29.929204213197057 ], [ -95.893425145012955, 29.929259214012543 ], [ -95.893501144543734, 29.929309213428539 ], [ -95.893633144625085, 29.929342213176557 ], [ -95.893734144847983, 29.929347213678781 ], [ -95.894044145257539, 29.929287213514073 ], [ -95.894223144767452, 29.929264213207979 ], [ -95.894271144888307, 29.929259213816799 ], [ -95.894410144798414, 29.929221213276566 ], [ -95.894517145390452, 29.929144213395521 ], [ -95.89458614492834, 29.929078213065544 ], [ -95.894694144973343, 29.929034213633301 ], [ -95.894801145129392, 29.929018213708527 ], [ -95.894952144664273, 29.929023213791371 ], [ -95.895173144827226, 29.929100213611253 ], [ -95.895362144991978, 29.929128213416366 ], [ -95.895501144902596, 29.929029213386823 ], [ -95.895539145615132, 29.928980213599342 ], [ -95.895571145304885, 29.928897213104246 ], [ -95.89560914551933, 29.928837213578319 ], [ -95.895659145026812, 29.928782213434808 ], [ -95.895728145328206, 29.928743213636306 ], [ -95.895804145057852, 29.928727213504356 ], [ -95.895874144723052, 29.928749213455987 ], [ -95.896006145076214, 29.928815213610719 ], [ -95.89608814521938, 29.928842213738157 ], [ -95.896164144853643, 29.928848213713906 ], [ -95.896505145667135, 29.928765213265802 ], [ -95.896606144936129, 29.928776213240425 ], [ -95.897028145991186, 29.928931213114542 ], [ -95.897262145395871, 29.928969213184345 ], [ -95.897369145602994, 29.928964213634398 ], [ -95.897684145305107, 29.928903213313887 ], [ -95.897823145662755, 29.928887213201875 ], [ -95.898139145644649, 29.928892213288687 ], [ -95.898328146073354, 29.928887213427092 ], [ -95.898947146145815, 29.92882121367964 ], [ -95.899133146356164, 29.928773213148563 ], [ -95.899177145943042, 29.928759213707465 ], [ -95.899306146152213, 29.928717212820853 ], [ -95.899550146452725, 29.928666213118685 ], [ -95.899840146099848, 29.928592212825112 ], [ -95.900033146158975, 29.928330213454412 ], [ -95.900816146338755, 29.927739212780811 ], [ -95.90150114699577, 29.927721213118534 ], [ -95.901917146592751, 29.927505212851241 ], [ -95.902309146312973, 29.927423213323419 ], [ -95.902585146887333, 29.927450212558544 ], [ -95.902862146953979, 29.927404212849886 ], [ -95.903351147495329, 29.927449212912173 ], [ -95.903582147511358, 29.927372212747898 ], [ -95.903985147470834, 29.927329212831047 ], [ -95.904255147417729, 29.927411213082461 ], [ -95.904737147663525, 29.927678212735628 ], [ -95.904890147228443, 29.92772521321276 ], [ -95.90511914799265, 29.927797212434868 ], [ -95.90576014734711, 29.928171213129371 ], [ -95.905911147389659, 29.928221213160178 ], [ -95.906147147759043, 29.92816821306776 ], [ -95.906295148231351, 29.928228212732161 ], [ -95.906438147713942, 29.928398212923586 ], [ -95.906643148184031, 29.929087213284447 ], [ -95.906833147982383, 29.929271213529496 ], [ -95.907040148236533, 29.929378213062321 ], [ -95.907870148317357, 29.929620213411333 ], [ -95.907871148325199, 29.929689212737539 ], [ -95.907876148157399, 29.930150213098045 ], [ -95.907886148197974, 29.930982213618176 ], [ -95.907894148095849, 29.931743213310348 ], [ -95.907900148569368, 29.932275213471474 ], [ -95.907807148851347, 29.932430213585757 ], [ -95.909053148565917, 29.932404213974188 ], [ -95.913336150324, 29.932318213436346 ], [ -95.91476414991476, 29.932290213112797 ], [ -95.916715150633976, 29.932250213702137 ], [ -95.922571152183039, 29.932133213520508 ], [ -95.924523152497414, 29.932094213023316 ], [ -95.924540152727403, 29.932094212622676 ], [ -95.926606152872054, 29.932053213408047 ], [ -95.928766154194662, 29.9320342132572 ], [ -95.941497156789254, 29.931923212046307 ], [ -95.945741158555492, 29.931886212565615 ], [ -95.948196158617407, 29.931864212082097 ], [ -95.955564160875454, 29.931800211613275 ], [ -95.958020160720778, 29.931779212171648 ], [ -95.960246161741452, 29.931782211396133 ], [ -95.961738162189448, 29.931766212157047 ], [ -95.970264164716482, 29.93167521180882 ], [ -95.972892164927501, 29.931646210917563 ], [ -95.973527164804963, 29.931640210876683 ], [ -95.975139165516751, 29.931869211140011 ], [ -95.976595165975013, 29.931863210772505 ], [ -95.977154166559856, 29.93186021088691 ], [ -95.97829616588146, 29.931855210909834 ], [ -95.978334165998632, 29.931854210758441 ], [ -95.980962166638733, 29.93185021135108 ], [ -95.98355316752486, 29.931806210935729 ], [ -95.985232167974914, 29.931779211007324 ], [ -95.98529316815015, 29.931778211002218 ], [ -95.986107168520846, 29.931767210465779 ], [ -95.988550169438852, 29.931738210531432 ], [ -95.989283168880661, 29.931730210938479 ], [ -95.989365168767804, 29.93173221062068 ], [ -95.989842169426709, 29.931726210646453 ], [ -95.991701169445548, 29.931707210917697 ], [ -95.992128170316462, 29.931702210395716 ], [ -95.993595169735357, 29.93168621043176 ], [ -95.993698169999718, 29.931688210293711 ], [ -95.993845169959229, 29.931747210673088 ], [ -95.993866170546738, 29.931802210738887 ], [ -95.993908170697026, 29.931908211031661 ], [ -95.993922170334002, 29.934769211500917 ], [ -95.99395817074506, 29.93829621168711 ], [ -95.99398717115406, 29.941060212151534 ], [ -95.993986170893692, 29.94138321242205 ], [ -95.993984171091398, 29.942352212873921 ], [ -95.993984170592185, 29.942622212941693 ], [ -95.993985170777691, 29.942675212659616 ], [ -95.99398617127315, 29.942752212909877 ], [ -95.993993171312212, 29.943337212970878 ], [ -95.99401717097021, 29.945326213698237 ], [ -95.994025170944312, 29.945918213589682 ], [ -95.994019171030175, 29.946228213105435 ], [ -95.9940201714778, 29.946973213792361 ], [ -95.994059171207297, 29.947296213707119 ], [ -95.994093171572089, 29.94747821407406 ], [ -95.994237171573289, 29.947564214039524 ], [ -95.994495171035894, 29.947575214102255 ], [ -95.99618317120644, 29.947558213873315 ], [ -95.996600171842545, 29.947554213946077 ], [ -95.999211172810874, 29.947505213329098 ], [ -96.004340173216661, 29.947432213548094 ], [ -96.006799173966698, 29.947413213636541 ], [ -96.007287174433429, 29.947403213262049 ], [ -96.009389174970124, 29.947363213239189 ], [ -96.010988175855957, 29.947344213389197 ], [ -96.010955174844142, 29.946741213363797 ], [ -96.010927175362497, 29.946049213301574 ], [ -96.0108671748267, 29.944563212462278 ], [ -96.010837174945522, 29.94344821229409 ], [ -96.010798175305865, 29.942164212230075 ], [ -96.010759175189875, 29.940869212187025 ], [ -96.011309175431634, 29.940861211864146 ], [ -96.012545175526014, 29.94084621199157 ], [ -96.012910175872847, 29.94084821207505 ], [ -96.012959175130874, 29.940847212141861 ], [ -96.013510175920828, 29.940842211363936 ], [ -96.01433717636111, 29.940836211562512 ], [ -96.015109176563286, 29.940831212065429 ], [ -96.016821176253998, 29.940810211701077 ], [ -96.017206176997078, 29.94080621168159 ], [ -96.017649176903447, 29.940803211990154 ], [ -96.019127177375921, 29.940792211390978 ], [ -96.01956317704672, 29.940790211444792 ], [ -96.023563177939977, 29.940740211621456 ], [ -96.025042178381042, 29.940722210954036 ], [ -96.026014178759851, 29.94071021111796 ], [ -96.026567179107275, 29.940702211194509 ], [ -96.030624179925709, 29.940644210899734 ], [ -96.03114217979909, 29.940635211355637 ], [ -96.031451179912537, 29.940630210920187 ], [ -96.032573181034408, 29.940612210995162 ], [ -96.032668180746043, 29.940610210813954 ], [ -96.032335180154348, 29.939780210791842 ], [ -96.031894180708932, 29.938699210568696 ], [ -96.031281179560722, 29.937196210499568 ], [ -96.030274179839125, 29.934728209867707 ], [ -96.029548179701763, 29.932979209507678 ], [ -96.029227179531517, 29.932204209133019 ], [ -96.028775179153968, 29.931069209497441 ], [ -96.028200179264829, 29.929623208848202 ], [ -96.027987178833968, 29.929098208430798 ], [ -96.027177178091634, 29.92709520806924 ], [ -96.025580177708463, 29.923205208117167 ], [ -96.024774177474995, 29.921243206961613 ], [ -96.024478178039161, 29.920522207643941 ], [ -96.024094177317778, 29.919586207018202 ], [ -96.023582177066331, 29.918363207020299 ], [ -96.023282177207449, 29.917645206295354 ], [ -96.025904177832174, 29.917582206261315 ], [ -96.029787179280177, 29.917489206822868 ], [ -96.031310178872829, 29.917443206296877 ], [ -96.032066179482371, 29.917416206332661 ], [ -96.032571179161636, 29.91733620622669 ], [ -96.032987179541593, 29.9172002064055 ], [ -96.033406180108543, 29.917019206338285 ], [ -96.033668179605669, 29.91686920640554 ], [ -96.033786179776044, 29.916802205982354 ], [ -96.03412817994554, 29.91655120602622 ], [ -96.034461179778987, 29.916234205714616 ], [ -96.034764180329631, 29.916004205943718 ], [ -96.035094179631443, 29.915766205789804 ], [ -96.035434180315306, 29.915595205579471 ], [ -96.035762179801239, 29.915418206029802 ], [ -96.035823180021566, 29.915399205910845 ], [ -96.035943179861704, 29.915362205578667 ], [ -96.036100179821318, 29.915315205988357 ], [ -96.036310180714182, 29.915276205592217 ], [ -96.036434180804392, 29.915254205716796 ], [ -96.036580180133456, 29.915224205439372 ], [ -96.037368180120254, 29.915187206176263 ], [ -96.038815181013348, 29.915155205555475 ], [ -96.042472181864426, 29.915076205208621 ], [ -96.045970183229414, 29.915026205328434 ], [ -96.048356182977898, 29.914992204937271 ], [ -96.048838183173928, 29.914985205517532 ], [ -96.049400183286266, 29.914966205709728 ], [ -96.050182184117162, 29.91494120548554 ], [ -96.050928183871491, 29.914894205123936 ], [ -96.051259184438166, 29.914827205482254 ], [ -96.05161618375395, 29.914725205052768 ], [ -96.051865184696126, 29.914625204935895 ], [ -96.052132184249544, 29.914502204785038 ], [ -96.052419184134905, 29.91433420547818 ], [ -96.052473184828131, 29.914303205472237 ], [ -96.05271718487019, 29.914138205050655 ], [ -96.05308618441461, 29.913841204572989 ], [ -96.053243184592887, 29.913696205121877 ], [ -96.05359118447312, 29.913372204921647 ], [ -96.053717185145928, 29.913255205095236 ], [ -96.053873184846708, 29.913159204556496 ], [ -96.054086184769318, 29.913007204566672 ], [ -96.054336185015714, 29.912862204577021 ], [ -96.054643184945022, 29.912722204777129 ], [ -96.054816184825512, 29.912662204177838 ], [ -96.055044185469114, 29.912585204538679 ], [ -96.055272184615106, 29.91252820425596 ], [ -96.055345184644992, 29.912510204991385 ], [ -96.055722185641471, 29.912460204649857 ], [ -96.056067184949825, 29.912435204743463 ], [ -96.05725818528218, 29.912417204721674 ], [ -96.06066318606787, 29.912377203969061 ], [ -96.06080318685261, 29.91237520432114 ], [ -96.061113186873044, 29.912372204396863 ], [ -96.061728186631015, 29.912361204229491 ], [ -96.064505187087121, 29.912315204332359 ], [ -96.065431187651257, 29.912300204305488 ], [ -96.065634187353822, 29.912296204501743 ], [ -96.06624318758179, 29.912285204118735 ], [ -96.066446187405262, 29.912282203934616 ], [ -96.067477188227471, 29.912263204433376 ], [ -96.069729188792451, 29.912222204050028 ], [ -96.070570188806755, 29.912213204037183 ], [ -96.071602188986176, 29.912202204146976 ], [ -96.071704189355685, 29.91220020422524 ], [ -96.071741189344905, 29.912200203763138 ], [ -96.072010189730307, 29.912215203620569 ], [ -96.072112189351074, 29.912222203733982 ], [ -96.072290189076028, 29.912232203586434 ], [ -96.072825189645897, 29.91226420358776 ], [ -96.073004189420956, 29.912275203483471 ], [ -96.073280190104171, 29.912291203579077 ], [ -96.073686189706535, 29.91233720375487 ], [ -96.074514190291779, 29.912431204310032 ], [ -96.075730190534372, 29.912565204310575 ], [ -96.076412190013315, 29.912641204214676 ], [ -96.077282191121199, 29.912737203465674 ], [ -96.079895191515632, 29.91302720426248 ], [ -96.08076619129919, 29.913124204249836 ], [ -96.081259191863623, 29.913178204089171 ], [ -96.082741192357588, 29.913343203513676 ], [ -96.083235191734332, 29.913398204156216 ], [ -96.08578119266042, 29.913680203476709 ], [ -96.085884192549074, 29.913691203704939 ], [ -96.088207193941201, 29.913944203528139 ], [ -96.089308194150817, 29.914056203368698 ], [ -96.093835195446729, 29.914555203401704 ], [ -96.095774195655054, 29.914769203301205 ], [ -96.096485196115992, 29.914849203445474 ], [ -96.098352196375899, 29.915058203289355 ], [ -96.102401197278752, 29.915511203984163 ], [ -96.103956197205207, 29.915683203776052 ], [ -96.105825198449665, 29.91589020365344 ], [ -96.106359197900986, 29.915949203824862 ], [ -96.106482198575748, 29.915963203089117 ], [ -96.107968198688482, 29.916042203787395 ], [ -96.108025198603485, 29.91604520346813 ], [ -96.10850619822736, 29.916035203093763 ], [ -96.108677198797849, 29.916032203126861 ], [ -96.108953199172319, 29.916009203506448 ], [ -96.109762199349248, 29.915942203490012 ], [ -96.110290199347304, 29.915864203663087 ], [ -96.110624199471928, 29.915815203005135 ], [ -96.110734199599861, 29.915794203406943 ], [ -96.111251198969086, 29.915693202878984 ], [ -96.111668199998988, 29.915612203134387 ], [ -96.112807199349504, 29.915401203342412 ], [ -96.113326199875615, 29.915306203231061 ], [ -96.113316200377355, 29.915243202848078 ], [ -96.113256200163875, 29.914863203279129 ], [ -96.11317719991861, 29.914361203248827 ], [ -96.113878200170618, 29.912848202416466 ], [ -96.114003200147152, 29.912751202215471 ], [ -96.114288200516654, 29.912532202164115 ], [ -96.114573199635402, 29.912313202393932 ], [ -96.114649200296071, 29.912255202286261 ], [ -96.114725200187777, 29.912196202188944 ], [ -96.114865200304862, 29.912091202031053 ], [ -96.114963199695609, 29.912011202359921 ], [ -96.115127200032589, 29.911886202094923 ], [ -96.115139200114911, 29.911558202015676 ], [ -96.115145200225086, 29.911404202628571 ], [ -96.116465200561876, 29.910861201760181 ], [ -96.120793201497051, 29.908870201140726 ], [ -96.123837202663012, 29.907154200716768 ], [ -96.124069202428188, 29.906730201198695 ], [ -96.12435420273664, 29.906210201019718 ], [ -96.124731202000206, 29.90552320094606 ], [ -96.125377202828176, 29.904664200651542 ], [ -96.125637202668798, 29.904293200609715 ], [ -96.125722202378341, 29.904089200394456 ], [ -96.125792202122994, 29.903918200590397 ], [ -96.126141202857966, 29.903234200343341 ], [ -96.126161202973734, 29.903014200603202 ], [ -96.12622120306429, 29.902122199979598 ], [ -96.12623520227271, 29.90191120009478 ], [ -96.126281202228967, 29.900513199919519 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 505, "Tract": "48473680303", "Area_SqMi": 53.987355466406356, "total_2009": 322, "total_2010": 366, "total_2011": 472, "total_2012": 515, "total_2013": 459, "total_2014": 761, "total_2015": 819, "total_2016": 884, "total_2017": 1051, "total_2018": 784, "total_2019": 860, "total_2020": 1037, "age1": 267, "age2": 685, "age3": 274, "earn1": 171, "earn2": 261, "earn3": 794, "naics_s01": 22, "naics_s02": 270, "naics_s03": 0, "naics_s04": 297, "naics_s05": 231, "naics_s06": 23, "naics_s07": 148, "naics_s08": 10, "naics_s09": 0, "naics_s10": 11, "naics_s11": 14, "naics_s12": 14, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 11, "naics_s17": 9, "naics_s18": 147, "naics_s19": 13, "naics_s20": 0, "race1": 1009, "race2": 145, "race3": 17, "race4": 37, "race5": 1, "race6": 17, "ethnicity1": 801, "ethnicity2": 425, "edu1": 243, "edu2": 303, "edu3": 262, "edu4": 151, "Shape_Length": 255073.78445948684, "Shape_Area": 1505075070.1210663, "total_2021": 967, "total_2022": 1226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.066607192297084, 30.006555222773059 ], [ -96.066601192418574, 30.006423222918531 ], [ -96.066569192605598, 30.006330223044102 ], [ -96.066544191999327, 30.006203222959595 ], [ -96.066538192434294, 30.005967223524404 ], [ -96.066517191787867, 30.005888223369016 ], [ -96.066513192572756, 30.005873223139321 ], [ -96.066481191935111, 30.005840223165215 ], [ -96.066430191624448, 30.005807223426618 ], [ -96.066291192550835, 30.005752222635621 ], [ -96.066209191735425, 30.005703223221762 ], [ -96.066140192185742, 30.005648223055299 ], [ -96.066070191539993, 30.005544222577878 ], [ -96.066083192170666, 30.005423223270853 ], [ -96.066146191574489, 30.005225222760497 ], [ -96.066171192567182, 30.005164222873848 ], [ -96.066361192187784, 30.004835222582283 ], [ -96.066374192277067, 30.004774223201416 ], [ -96.066374192300444, 30.004648222866471 ], [ -96.066172191925205, 30.0049342231037 ], [ -96.066108191994971, 30.0049882229474 ], [ -96.065995192099251, 30.00505422274324 ], [ -96.065622191427352, 30.005126223094173 ], [ -96.065578191912138, 30.005131222682408 ], [ -96.06542019209077, 30.005153223106099 ], [ -96.06520519227071, 30.00514222290867 ], [ -96.065155191395846, 30.005126223105147 ], [ -96.064978191325181, 30.004999222971296 ], [ -96.064858191591114, 30.004928222944109 ], [ -96.064687191766282, 30.004934223287716 ], [ -96.064608191552466, 30.004932222809963 ], [ -96.064596192003393, 30.004905222956996 ], [ -96.064582191334452, 30.004834223050217 ], [ -96.064557192018327, 30.004765222685215 ], [ -96.064540191605587, 30.004732223289949 ], [ -96.06443119189224, 30.004624222887578 ], [ -96.064179191335342, 30.004436222562131 ], [ -96.064121191366681, 30.00438522306353 ], [ -96.063998191000067, 30.004290222877369 ], [ -96.063745191127055, 30.004054223095178 ], [ -96.063648191542399, 30.003987222506673 ], [ -96.063652191296853, 30.003915222527077 ], [ -96.063641190845928, 30.003843223170257 ], [ -96.063619191742362, 30.003813222403789 ], [ -96.063592191360058, 30.003786223048376 ], [ -96.063532191480505, 30.003738222604401 ], [ -96.063372190937031, 30.003535222249901 ], [ -96.063347190939638, 30.003503222793981 ], [ -96.063330190752794, 30.003450222302231 ], [ -96.06313419114565, 30.003268222449844 ], [ -96.063008191503584, 30.003180222760854 ], [ -96.062623190981867, 30.002971222880749 ], [ -96.062595191039392, 30.002953222308275 ], [ -96.06259019151004, 30.002880222366766 ], [ -96.062504191443438, 30.00254022214666 ], [ -96.062242190974743, 30.001379222527607 ], [ -96.062180191263153, 30.001074222012591 ], [ -96.061995190801198, 30.000147222189401 ], [ -96.061649190875627, 29.998517221633058 ], [ -96.06160819011518, 29.998351221865885 ], [ -96.061548190383746, 29.998278221632049 ], [ -96.061466190201187, 29.998240221677744 ], [ -96.061345190320921, 29.998238221815633 ], [ -96.061178190226272, 29.998259221535548 ], [ -96.060526190431887, 29.99837422194922 ], [ -96.058702189645189, 29.9987112218957 ], [ -96.057223189771065, 29.998962222027355 ], [ -96.057036189549706, 29.998974222387091 ], [ -96.056931189282707, 29.998958221946211 ], [ -96.056880189771675, 29.998921222331813 ], [ -96.056834189368089, 29.998871222344707 ], [ -96.056772189782208, 29.998930221569434 ], [ -96.05668618978585, 29.998977222074327 ], [ -96.056556189575559, 29.998985222001959 ], [ -96.055622188944852, 29.99906722217332 ], [ -96.053671188132597, 29.999258222330781 ], [ -96.052138188030568, 29.999419222046395 ], [ -96.051926188133834, 29.999456222302836 ], [ -96.05181518814571, 29.999525222417166 ], [ -96.051802187818495, 29.999546222288785 ], [ -96.051756188319743, 29.999626222068077 ], [ -96.05174818794579, 29.99973822190859 ], [ -96.052478187959636, 30.002975223233729 ], [ -96.052493188149526, 30.003141222973309 ], [ -96.052480188385871, 30.003250223375709 ], [ -96.05243618798626, 30.003332222775413 ], [ -96.052376188521393, 30.003394223007419 ], [ -96.052294188713731, 30.003436223226245 ], [ -96.052005188343415, 30.003496223355199 ], [ -96.05146718824831, 30.003578223127239 ], [ -96.047660187545006, 30.004234223716811 ], [ -96.046777186862286, 30.004382223605756 ], [ -96.04553418673288, 30.004597223318882 ], [ -96.044861186942654, 30.00470922321551 ], [ -96.044575186152173, 30.004757223986882 ], [ -96.041948186006394, 30.005225224195996 ], [ -96.041156185861198, 30.005360224012815 ], [ -96.040626185662319, 30.005452224318073 ], [ -96.0361041839774, 30.006213224345391 ], [ -96.036136184382457, 30.007006224309524 ], [ -96.036187184622662, 30.008264224577918 ], [ -96.036216184641503, 30.009386225236653 ], [ -96.036238184630363, 30.010180224639246 ], [ -96.034957184257195, 30.010208225439349 ], [ -96.031114183076227, 30.010292225052023 ], [ -96.031060183716647, 30.01029422552201 ], [ -96.029834182851388, 30.010316224785154 ], [ -96.02948118341665, 30.010322225077374 ], [ -96.028648183076271, 30.010342225463791 ], [ -96.027874182687455, 30.010361225577132 ], [ -96.025943181992247, 30.010400225708437 ], [ -96.025090181607865, 30.010414225692447 ], [ -96.023904181411339, 30.010435225570109 ], [ -96.023465181633171, 30.008392225497268 ], [ -96.023292181264807, 30.00758322497116 ], [ -96.022557180644426, 30.00424822388943 ], [ -96.022523181236934, 30.004089224103225 ], [ -96.02219818114034, 30.002588223687269 ], [ -96.022127181133229, 30.002269224010526 ], [ -96.021781180432043, 30.000700223285001 ], [ -96.021679179991906, 30.000229223797756 ], [ -96.021665180953931, 30.000166223445802 ], [ -96.02162418086705, 29.99997922356102 ], [ -96.021611180113837, 29.999917223591531 ], [ -96.02119917993393, 29.998020223294873 ], [ -96.021190179784739, 29.997975223074008 ], [ -96.019951180077385, 29.9923352218593 ], [ -96.019715179689115, 29.991261222122677 ], [ -96.01954117963605, 29.9904392218392 ], [ -96.019331179740945, 29.989453221405089 ], [ -96.019326179306162, 29.989426221661148 ], [ -96.01891217891486, 29.987557221259575 ], [ -96.018683178883805, 29.986501220751308 ], [ -96.01847117950264, 29.985517220549266 ], [ -96.017311178584848, 29.985532220983423 ], [ -96.016150178442174, 29.98554822072434 ], [ -96.01383417739882, 29.985587221024133 ], [ -96.012675177506594, 29.985608220430802 ], [ -96.012655177858491, 29.985608220527954 ], [ -96.011933177859021, 29.98561922069791 ], [ -96.009709176667798, 29.985653220579866 ], [ -96.009145176998487, 29.985662220969921 ], [ -96.008968176275175, 29.985664221317101 ], [ -96.008836176218296, 29.98566522102649 ], [ -96.008441176699876, 29.985670220764934 ], [ -96.008310176259229, 29.985673221322951 ], [ -96.007783176151619, 29.985680220815997 ], [ -96.006204175783708, 29.985701220794937 ], [ -96.005678176176161, 29.985709220729944 ], [ -96.004630175818505, 29.985723220719859 ], [ -96.001486174841631, 29.985767221174491 ], [ -96.00128217467271, 29.985770221355637 ], [ -96.000439174677382, 29.985779220891807 ], [ -95.99888917388688, 29.985796221528453 ], [ -95.997442174103753, 29.985813221834032 ], [ -95.994239172514071, 29.985845221955522 ], [ -95.992689172267347, 29.985861221577156 ], [ -95.992704172897973, 29.986398221365103 ], [ -95.992752172816438, 29.988013221962621 ], [ -95.992768172953916, 29.988551221973875 ], [ -95.99280217264743, 29.989715222449302 ], [ -95.992905173172105, 29.993208223357485 ], [ -95.99294017280495, 29.994373223379373 ], [ -95.992951172573598, 29.994772222932653 ], [ -95.992987172815219, 29.995971223295772 ], [ -95.992999172913329, 29.99637122327427 ], [ -95.993005173521922, 29.996577223726323 ], [ -95.993023173447881, 29.997195224042748 ], [ -95.993029172605134, 29.997402224327171 ], [ -95.993038173236556, 29.997859224136231 ], [ -95.993076173416242, 29.997998223631015 ], [ -95.993090173371826, 29.998970223951471 ], [ -95.993160173758866, 30.003691225333348 ], [ -95.993184173779809, 30.005265225652469 ], [ -95.99321617321074, 30.007431225892891 ], [ -95.993220173702767, 30.007742226042534 ], [ -95.993248173440094, 30.009598226168642 ], [ -95.99330817424503, 30.013624227323028 ], [ -95.993331174249775, 30.015173227677728 ], [ -95.993368174455426, 30.01765022793499 ], [ -95.993379173752686, 30.0184492283636 ], [ -95.993386174585851, 30.018889228172533 ], [ -95.99340417461913, 30.020129228665173 ], [ -95.993414174705606, 30.020849228601591 ], [ -95.993420173936684, 30.021202228858712 ], [ -95.993411174200617, 30.021389229003809 ], [ -95.993322174583909, 30.021634228397133 ], [ -95.993278174536641, 30.021634228374609 ], [ -95.993146174368221, 30.021634229122427 ], [ -95.99310317456947, 30.021635228784682 ], [ -95.992664174283362, 30.021636228743553 ], [ -95.992616173786757, 30.021637229131183 ], [ -95.992129173994599, 30.021639228638072 ], [ -95.991521173918414, 30.021641229054875 ], [ -95.991350173266738, 30.021641229271623 ], [ -95.990912173507724, 30.021644228605265 ], [ -95.990676173467321, 30.021644228847578 ], [ -95.989968173195237, 30.021648228569802 ], [ -95.989819173010787, 30.021649228677379 ], [ -95.989733173174315, 30.021653229305532 ], [ -95.989733173700245, 30.021921228657661 ], [ -95.989734173842891, 30.022727228915361 ], [ -95.989735173537213, 30.02299622880907 ], [ -95.989735173461526, 30.023087229616291 ], [ -95.989729173046612, 30.025043229667197 ], [ -95.989722173666593, 30.027671230326678 ], [ -95.989775173912278, 30.031187230788007 ], [ -95.989786174160486, 30.031903230642847 ], [ -95.98982317438103, 30.033235231259734 ], [ -95.989837174351294, 30.033760231739052 ], [ -95.989882174110477, 30.035338231802562 ], [ -95.989889174519803, 30.035567231992328 ], [ -95.989894174403773, 30.035864232105496 ], [ -95.98991017452849, 30.03679623220339 ], [ -95.989961174654042, 30.039595232492594 ], [ -95.989962174012831, 30.039634232553421 ], [ -95.989987174425053, 30.040528233162039 ], [ -95.99000117385431, 30.041006232648265 ], [ -95.990006174812919, 30.041226232563044 ], [ -95.990014174506086, 30.041484233140153 ], [ -95.990066174108392, 30.043320233617681 ], [ -95.990078174857814, 30.043740233539683 ], [ -95.990077174430866, 30.04401923349889 ], [ -95.99007617410328, 30.04413423345099 ], [ -95.990076174274336, 30.044387233707216 ], [ -95.990072174643515, 30.044482233212673 ], [ -95.990069174901635, 30.044598233400414 ], [ -95.990066174664875, 30.044673233584064 ], [ -95.990061174773132, 30.044799233206927 ], [ -95.990054174097409, 30.044898233718936 ], [ -95.990049174455763, 30.044974233247029 ], [ -95.990039174492367, 30.045110233697258 ], [ -95.990031174678279, 30.045236233796746 ], [ -95.989952174286444, 30.045508233539206 ], [ -95.989914174489741, 30.045640233503565 ], [ -95.989790174667633, 30.046116234145831 ], [ -95.989726174397788, 30.046443233577747 ], [ -95.98965017416387, 30.046836234439471 ], [ -95.989647174434111, 30.047140234021416 ], [ -95.989644174780992, 30.047389233967525 ], [ -95.989677174390877, 30.048914234653711 ], [ -95.989695174474662, 30.049740235020092 ], [ -95.989703174939379, 30.050125235098466 ], [ -95.989706174518631, 30.050349235127264 ], [ -95.989731174677075, 30.052179234741896 ], [ -95.989740175060362, 30.052790235342137 ], [ -95.989752174629487, 30.053702235711729 ], [ -95.989780175142172, 30.053915235051431 ], [ -95.98979617439602, 30.054033235109127 ], [ -95.989877175309559, 30.054386235343067 ], [ -95.990049174570629, 30.054720235533427 ], [ -95.990301175267902, 30.055026235372683 ], [ -95.991779175758936, 30.056561235486797 ], [ -95.992052175150462, 30.056845236162921 ], [ -95.992328175583737, 30.057170236371132 ], [ -95.992467175458856, 30.057445236343671 ], [ -95.992618175407102, 30.057729235750017 ], [ -95.992652176152859, 30.057944236318903 ], [ -95.992680175590905, 30.058113235956338 ], [ -95.992723176256604, 30.058562236246043 ], [ -95.992747176283231, 30.05956023604509 ], [ -95.992761175618426, 30.060100236491341 ], [ -95.992770175585761, 30.06047423637353 ], [ -95.992797175858172, 30.061596236605215 ], [ -95.992807176183831, 30.061970236991467 ], [ -95.992808176350408, 30.062036236829563 ], [ -95.99281117580162, 30.062236237022059 ], [ -95.992812176495335, 30.062303236769782 ], [ -95.992867175678526, 30.06307923694748 ], [ -95.992882175684059, 30.063584237123123 ], [ -95.992847176082222, 30.063861237045227 ], [ -95.992839176265079, 30.064081237281687 ], [ -95.992809176526151, 30.064329237181163 ], [ -95.992658175726461, 30.065221237549245 ], [ -95.992606176465898, 30.065568237329995 ], [ -95.992598176648258, 30.065681237846626 ], [ -95.992583176108482, 30.065907237754125 ], [ -95.992580176474164, 30.066368237899212 ], [ -95.992592175889456, 30.067342238489029 ], [ -95.99263817592157, 30.070730239057777 ], [ -95.992642176582336, 30.070882238664314 ], [ -95.992687175986035, 30.071506238847874 ], [ -95.992747176552157, 30.072105239398688 ], [ -95.992789176312144, 30.072317239213469 ], [ -95.99286917649961, 30.072737239019748 ], [ -95.993834177054566, 30.072977239220219 ], [ -95.994668177299204, 30.073184239199939 ], [ -95.995462176867761, 30.07338923895869 ], [ -95.996564177609329, 30.073675238794959 ], [ -95.997851178087757, 30.073977239634186 ], [ -95.998090177836929, 30.074034239281456 ], [ -95.998468178508745, 30.074146239295359 ], [ -95.998555177928282, 30.074171238920631 ], [ -95.998642177943267, 30.074197239302929 ], [ -95.999091178429111, 30.074303239451289 ], [ -96.000438178573944, 30.074622239643251 ], [ -96.000888178283745, 30.074729239639513 ], [ -96.00129417833341, 30.074825239643289 ], [ -96.002512178720139, 30.075113239400739 ], [ -96.002918179598012, 30.075214239339214 ], [ -96.003369179766167, 30.075325239248645 ], [ -96.004157179376847, 30.075520239023959 ], [ -96.004724179931003, 30.075656239305065 ], [ -96.005176179701806, 30.075765239281445 ], [ -96.005166179482003, 30.076047239162996 ], [ -96.005171179735896, 30.076434239237496 ], [ -96.005205179916985, 30.077793239274012 ], [ -96.005225179922363, 30.078435239815573 ], [ -96.005239180204555, 30.078850240356093 ], [ -96.005243179704252, 30.078972239997835 ], [ -96.00525418052311, 30.080212240606002 ], [ -96.005301180116106, 30.081772240754887 ], [ -96.005279180614053, 30.082286240603572 ], [ -96.00524117988499, 30.082512241103711 ], [ -96.005230179676715, 30.082585241035261 ], [ -96.005185180360442, 30.082749241075113 ], [ -96.00501518040079, 30.083075240609663 ], [ -96.004695180457318, 30.083536240970151 ], [ -96.004619180248412, 30.083661241027805 ], [ -96.004524179655562, 30.083820240963291 ], [ -96.004429180203374, 30.083978240960278 ], [ -96.004079179922755, 30.084529241368568 ], [ -96.003933180031282, 30.084823241603189 ], [ -96.003861180410155, 30.085082241194684 ], [ -96.003828180120152, 30.08535424119027 ], [ -96.003825179708869, 30.085684241112016 ], [ -96.003825180094296, 30.085764241607595 ], [ -96.003857180477837, 30.086565241900956 ], [ -96.003916180289409, 30.089127242405382 ], [ -96.003977180180669, 30.090413242294787 ], [ -96.004004180710794, 30.091266242223881 ], [ -96.003963180538477, 30.091871242769987 ], [ -96.003912180029175, 30.092458242506069 ], [ -96.003908180574626, 30.092843243033325 ], [ -96.003935180115789, 30.093039242913818 ], [ -96.004025179824268, 30.093503242708486 ], [ -96.004125180887371, 30.093915242576397 ], [ -96.004177180634287, 30.094312242964264 ], [ -96.004253180104556, 30.095268243398678 ], [ -96.004287180280926, 30.09599024330419 ], [ -96.004288180929052, 30.096363243214572 ], [ -96.004289180645259, 30.096485243833889 ], [ -96.004321180333605, 30.098078243476543 ], [ -96.00436518073937, 30.099281243641961 ], [ -96.00441718104743, 30.101084244661084 ], [ -96.004432180350875, 30.101502244663507 ], [ -96.004448180800168, 30.102422244383529 ], [ -96.004446181306861, 30.10256224444645 ], [ -96.003813180598343, 30.102536244749167 ], [ -96.003653181167493, 30.102530245031875 ], [ -96.00304318086593, 30.102517244655441 ], [ -96.001917180295436, 30.102480245257272 ], [ -96.001285180400856, 30.102460244444472 ], [ -96.000069180053458, 30.102426244573437 ], [ -95.999413179208844, 30.102398244582123 ], [ -95.998541179537156, 30.102401245007517 ], [ -95.998202178893251, 30.102427244785069 ], [ -95.998041179251416, 30.102401245363236 ], [ -95.997937178746213, 30.102375244902685 ], [ -95.997813179269926, 30.102303245209413 ], [ -95.997741178879636, 30.102250244587875 ], [ -95.997725179045304, 30.10227224498788 ], [ -95.99729017895865, 30.102441245398502 ], [ -95.996909178893404, 30.10253924542533 ], [ -95.996526179202533, 30.102611245039935 ], [ -95.996146178628734, 30.102627244618269 ], [ -95.995766178450666, 30.102627244917308 ], [ -95.991909177863946, 30.102623245383253 ], [ -95.99170117808508, 30.102636244831704 ], [ -95.991658177136927, 30.102643244981468 ], [ -95.99151217755248, 30.102655245111908 ], [ -95.991277177786358, 30.102733245426759 ], [ -95.991016177457254, 30.102856245165029 ], [ -95.990811177370404, 30.102985245215969 ], [ -95.990799177708979, 30.102994245528077 ], [ -95.990602177520572, 30.103199245324962 ], [ -95.990442177073064, 30.103454245249075 ], [ -95.990336177185156, 30.10373224536205 ], [ -95.990293176861726, 30.104050245861742 ], [ -95.990276177337577, 30.10459224568795 ], [ -95.99003117752325, 30.104578245965794 ], [ -95.989901177606086, 30.104523245367549 ], [ -95.989729177630437, 30.104384245992129 ], [ -95.989469176704773, 30.104208245920134 ], [ -95.988530177312413, 30.103675245353166 ], [ -95.987491176838532, 30.103115245030079 ], [ -95.98725517681261, 30.102984245240521 ], [ -95.987161176728051, 30.102919245437526 ], [ -95.987073175976718, 30.102859244970169 ], [ -95.986924176129207, 30.102696245330772 ], [ -95.986784175868181, 30.102530245346035 ], [ -95.986659176689244, 30.102335245200411 ], [ -95.986594176605919, 30.102138245032393 ], [ -95.986563175976286, 30.101974245070089 ], [ -95.986554175935922, 30.10192524546483 ], [ -95.986543176748839, 30.101592245566188 ], [ -95.985988176593736, 30.101602245259439 ], [ -95.984323175736577, 30.101636245511447 ], [ -95.983768175288859, 30.10164724496374 ], [ -95.983122175596037, 30.101659245414428 ], [ -95.982110175282202, 30.101680245040384 ], [ -95.981187175431103, 30.101710245144702 ], [ -95.980543175119308, 30.101731245554106 ], [ -95.979406174710746, 30.10176824546582 ], [ -95.977950174548994, 30.101830245190506 ], [ -95.976597173846073, 30.101889245916905 ], [ -95.975655173505373, 30.101926245850049 ], [ -95.974171173245708, 30.101958246026488 ], [ -95.972843172754736, 30.101987245967756 ], [ -95.971164172639035, 30.102023245597024 ], [ -95.970171172127209, 30.102040245481106 ], [ -95.968341171298931, 30.102072246320759 ], [ -95.968108171861303, 30.10209124610974 ], [ -95.967578171601886, 30.102082245565459 ], [ -95.967576171071926, 30.101992245998282 ], [ -95.967570171631451, 30.101722245520971 ], [ -95.967569171899967, 30.101633245843686 ], [ -95.967548171183509, 30.099037245215499 ], [ -95.967542171194211, 30.098170244892927 ], [ -95.967536170644422, 30.095081244193619 ], [ -95.967545171135669, 30.094110244006497 ], [ -95.967529171103962, 30.094013244099042 ], [ -95.967502171377021, 30.093927244064925 ], [ -95.967313171250581, 30.093931244165528 ], [ -95.966025170913952, 30.093900244449429 ], [ -95.965951170672909, 30.093895244723232 ], [ -95.965469170833217, 30.093920244221401 ], [ -95.965369170686358, 30.09389024472312 ], [ -95.965318170251336, 30.09384824405549 ], [ -95.965303171013687, 30.093773244329554 ], [ -95.965299170489189, 30.093611244445896 ], [ -95.9652981704333, 30.093383244044276 ], [ -95.965298170616208, 30.091498243614598 ], [ -95.96528217017719, 30.090788243373815 ], [ -95.965270170738378, 30.09024624335494 ], [ -95.965236169779047, 30.088620243463705 ], [ -95.965232170724121, 30.088425242950215 ], [ -95.965225170181199, 30.088078242987102 ], [ -95.965219170301808, 30.087845243448601 ], [ -95.96520416991207, 30.08714624291294 ], [ -95.965204170078636, 30.087109242960146 ], [ -95.965214170013496, 30.08691424335646 ], [ -95.96507217003176, 30.086906242595653 ], [ -95.965023170263976, 30.086904243130775 ], [ -95.964647170304644, 30.086907243284045 ], [ -95.964506170015738, 30.086909242751975 ], [ -95.963854170129082, 30.086919242617881 ], [ -95.96267216982109, 30.086939242808391 ], [ -95.962035169876131, 30.086955242737492 ], [ -95.961901169030668, 30.086958243213935 ], [ -95.96125016919305, 30.086976243258199 ], [ -95.961092169024042, 30.086980242791157 ], [ -95.960618168772811, 30.086994242795658 ], [ -95.960461169067557, 30.086999243350711 ], [ -95.960436169213466, 30.086999243111311 ], [ -95.960363168689241, 30.087001243143536 ], [ -95.960339169403923, 30.087002242847856 ], [ -95.958586168324686, 30.087048243568397 ], [ -95.955394168029628, 30.087148242984039 ], [ -95.949187165751113, 30.087329243697052 ], [ -95.948784165561591, 30.087341243916637 ], [ -95.94690316505185, 30.087399244113094 ], [ -95.943203165107548, 30.087514243417687 ], [ -95.940054164207183, 30.087612244403424 ], [ -95.939761163254971, 30.087622243974252 ], [ -95.937771163158217, 30.087684244328056 ], [ -95.937118162532286, 30.087704244438722 ], [ -95.935162162758274, 30.087765244486157 ], [ -95.934972162668544, 30.087771244522965 ], [ -95.934512162174755, 30.087818244066241 ], [ -95.934527162566411, 30.089461244627152 ], [ -95.934530162273461, 30.089508244582976 ], [ -95.934560162559492, 30.089959245025035 ], [ -95.934647162139925, 30.090377244803847 ], [ -95.934773162211243, 30.090889244882899 ], [ -95.935562162642157, 30.092905245587819 ], [ -95.936110163081295, 30.094302245158584 ], [ -95.936728163351802, 30.095876246214829 ], [ -95.936706163049308, 30.095893246051425 ], [ -95.936640163134982, 30.095944245562571 ], [ -95.936619163227249, 30.095962245519271 ], [ -95.937018163370226, 30.097067245930084 ], [ -95.938217163600001, 30.100384246201976 ], [ -95.938617164512593, 30.1014902465453 ], [ -95.938648163743366, 30.101577247027866 ], [ -95.93874316386065, 30.101839246967494 ], [ -95.93877516383678, 30.101927246624079 ], [ -95.939205164023832, 30.103118247360303 ], [ -95.940498165181381, 30.106691248069556 ], [ -95.940929164546191, 30.107883248374339 ], [ -95.941222164906506, 30.108693248381883 ], [ -95.942101165800509, 30.111123248723356 ], [ -95.942394165016339, 30.111934249117471 ], [ -95.942416165522005, 30.111995248474177 ], [ -95.943336165974614, 30.114539249583054 ], [ -95.946162167378432, 30.122357250844516 ], [ -95.947096166982718, 30.12493925102476 ], [ -95.947105167032603, 30.124963251435858 ], [ -95.947723167575418, 30.126698251255167 ], [ -95.949578168201981, 30.131904252556396 ], [ -95.950197168434215, 30.133640253296676 ], [ -95.950215168637399, 30.133690253245529 ], [ -95.950396168178372, 30.134199253360126 ], [ -95.950993169048687, 30.135876253489041 ], [ -95.951193169008448, 30.136435253595181 ], [ -95.951196168519942, 30.136445253649416 ], [ -95.951207168791498, 30.136475253155393 ], [ -95.951211169158938, 30.136485253331941 ], [ -95.951220169354059, 30.136511253086827 ], [ -95.951626168771554, 30.137653254091429 ], [ -95.952847169194115, 30.141079254752551 ], [ -95.953255169547091, 30.14222225434256 ], [ -95.953351169856973, 30.142491254489567 ], [ -95.953430169633037, 30.142713254988468 ], [ -95.953447169772602, 30.142761254401027 ], [ -95.953789170142159, 30.14372125467683 ], [ -95.953955169939391, 30.144188254518681 ], [ -95.954131169539707, 30.144680254568883 ], [ -95.954307170269345, 30.145168254755163 ], [ -95.954325170358288, 30.145218254732981 ], [ -95.9549071705285, 30.14683225523039 ], [ -95.955102170243578, 30.147371255359399 ], [ -95.95525717097351, 30.14780125541737 ], [ -95.955340170875047, 30.148033255926794 ], [ -95.955722170759287, 30.149092255527886 ], [ -95.955878170559984, 30.149523256185478 ], [ -95.956076170550233, 30.150072255787077 ], [ -95.956671171234291, 30.151722256050196 ], [ -95.956870171549383, 30.15227225645733 ], [ -95.956974171258935, 30.152562256700765 ], [ -95.957286171008292, 30.153433256556863 ], [ -95.95739117114978, 30.153724257132655 ], [ -95.957568171859265, 30.154230256533644 ], [ -95.958099171452773, 30.15575125746826 ], [ -95.958277171237242, 30.156259256948005 ], [ -95.958594172156538, 30.157167257538216 ], [ -95.959547172030497, 30.159894258013331 ], [ -95.959865171884701, 30.160803258163838 ], [ -95.959881171736868, 30.160819258480558 ], [ -95.959893172043309, 30.160881258267107 ], [ -95.959900172202509, 30.160901257779745 ], [ -95.959910171751019, 30.160933257664642 ], [ -95.959913172617505, 30.160942258450287 ], [ -95.960078172547114, 30.161437258000174 ], [ -95.960574173018685, 30.162924258022166 ], [ -95.960740172328158, 30.163420258811687 ], [ -95.9607671727602, 30.163396258993981 ], [ -95.960989172167999, 30.163396258353881 ], [ -95.961166172237526, 30.163407258516788 ], [ -95.961285172808431, 30.163433258850866 ], [ -95.961868173077335, 30.163561258897523 ], [ -95.962064172446617, 30.163627258373946 ], [ -95.962197172881829, 30.163726258690669 ], [ -95.96276617344121, 30.164044259038409 ], [ -95.962810172947329, 30.164071258763723 ], [ -95.96305117271055, 30.16422025831714 ], [ -95.963152173758942, 30.164368258256676 ], [ -95.963178173128014, 30.164460258355778 ], [ -95.963705173011178, 30.164449258603405 ], [ -95.965287173509211, 30.164419258335954 ], [ -95.965815174094246, 30.164409258332334 ], [ -95.967249174631817, 30.164378258405399 ], [ -95.967679173939516, 30.164440258285261 ], [ -95.968071174444844, 30.164570258976791 ], [ -95.968095174818302, 30.164586258939341 ], [ -95.968426174678243, 30.16481225861337 ], [ -95.968595174522349, 30.165003258241722 ], [ -95.96878517509559, 30.165246258292566 ], [ -95.968833174605464, 30.165459258689754 ], [ -95.968883174789937, 30.166417259164518 ], [ -95.968951174501257, 30.16827325886802 ], [ -95.969051175378851, 30.171034259686252 ], [ -95.969059175031319, 30.17120725989103 ], [ -95.969157174886732, 30.173212259982328 ], [ -95.969162174707421, 30.17351726054223 ], [ -95.970366174986594, 30.173460260166813 ], [ -95.970984175925622, 30.173432260490916 ], [ -95.971091175378263, 30.173429259820658 ], [ -95.973139176660993, 30.173371260113271 ], [ -95.973980176115816, 30.173347259739923 ], [ -95.974857176134947, 30.173323260266802 ], [ -95.975186176938962, 30.173314259903471 ], [ -95.976475177306384, 30.173277260210561 ], [ -95.976641176926378, 30.173273259734216 ], [ -95.977401177097221, 30.17329326039803 ], [ -95.977924177265848, 30.173318260000716 ], [ -95.979154177527178, 30.173439259893904 ], [ -95.980330178228286, 30.173563260043757 ], [ -95.981003177900931, 30.173635259956214 ], [ -95.981101178405879, 30.173642260149759 ], [ -95.981164178143317, 30.173647259574889 ], [ -95.981613177863366, 30.173695260057258 ], [ -95.982389178428647, 30.17374625952915 ], [ -95.982753179146272, 30.173729259527288 ], [ -95.983712178685394, 30.17362525959896 ], [ -95.983768179163476, 30.173620260212729 ], [ -95.986018179883189, 30.173123259366868 ], [ -95.988475179600272, 30.172633259620586 ], [ -95.988741179913504, 30.172576259553168 ], [ -95.989288179799175, 30.172423259497659 ], [ -95.989675180209247, 30.172264259748168 ], [ -95.989847179946921, 30.172164259626896 ], [ -95.990060180304624, 30.17204225893402 ], [ -95.99046618088353, 30.171690259098146 ], [ -95.990875180777422, 30.171119258684712 ], [ -95.991085181162248, 30.170533258483974 ], [ -95.991179180737859, 30.170377259220842 ], [ -95.991185180111088, 30.170184259219386 ], [ -95.991128180107268, 30.166087258071755 ], [ -95.991333180304593, 30.165381257538016 ], [ -95.991558180873028, 30.165004257693244 ], [ -95.991645180949817, 30.164874257605785 ], [ -95.991795180113002, 30.164693257786173 ], [ -95.991963180228154, 30.16451825782179 ], [ -95.992151180819235, 30.164356258082957 ], [ -95.992408180318378, 30.164182257923503 ], [ -95.99262518028101, 30.164057257291855 ], [ -95.993007180777013, 30.163875257824717 ], [ -95.993218181057458, 30.16378625718913 ], [ -95.994894181685382, 30.163025256906501 ], [ -95.995355180982116, 30.162821257525138 ], [ -95.995637181504065, 30.162707257307513 ], [ -95.995959181324494, 30.162607256943243 ], [ -95.996173181537316, 30.162563256687456 ], [ -95.996403181205437, 30.162539256787998 ], [ -95.996659181805072, 30.162512257002938 ], [ -95.997437182084099, 30.162541257204754 ], [ -95.998965182341081, 30.162971256676002 ], [ -95.999459182771361, 30.163134257205222 ], [ -96.003841183588122, 30.164397257624785 ], [ -96.00601218450997, 30.165246257351452 ], [ -96.006710184439328, 30.165518257645143 ], [ -96.00735718404691, 30.165796257072785 ], [ -96.008623184750576, 30.166340257210141 ], [ -96.009372185397382, 30.166897257890227 ], [ -96.010228184946499, 30.167422257207619 ], [ -96.011212185848549, 30.167779257749824 ], [ -96.011235185421185, 30.167788257462728 ], [ -96.011836185406892, 30.16786225765637 ], [ -96.012658186043197, 30.16792525762612 ], [ -96.012977185814407, 30.1679492572054 ], [ -96.01329718653291, 30.167974257344891 ], [ -96.013753186400308, 30.168009257616305 ], [ -96.013967186446976, 30.168028257175543 ], [ -96.014294186836935, 30.16805825794647 ], [ -96.014484186967849, 30.168075257774348 ], [ -96.014674186124509, 30.168092257310882 ], [ -96.016130187140149, 30.168157257194348 ], [ -96.016732186678141, 30.168240257176006 ], [ -96.017895187018468, 30.168618257763697 ], [ -96.018222187096313, 30.168725257789202 ], [ -96.019174187980184, 30.169037258014818 ], [ -96.020939187854651, 30.169566257735447 ], [ -96.021082188566623, 30.169605257612851 ], [ -96.022799188775096, 30.170147258038504 ], [ -96.02435718916999, 30.170652257609333 ], [ -96.024611189608208, 30.170725257656759 ], [ -96.025645189562368, 30.171057257829236 ], [ -96.026210189676121, 30.171217257509305 ], [ -96.026532189916168, 30.171280258195377 ], [ -96.026877189376847, 30.171345257894526 ], [ -96.027459189942931, 30.171396257481014 ], [ -96.0278381901975, 30.171395258241169 ], [ -96.028203190574274, 30.171345258213261 ], [ -96.028229189835884, 30.171341258124354 ], [ -96.02847718989004, 30.171289257396495 ], [ -96.028798189928139, 30.171167257521148 ], [ -96.02883119071187, 30.171153258151129 ], [ -96.029490190065331, 30.17088025735254 ], [ -96.030438190457858, 30.170417257236082 ], [ -96.030632190948353, 30.170338257869869 ], [ -96.031243190671105, 30.170091257714937 ], [ -96.031231191289777, 30.169995256961908 ], [ -96.031102190808184, 30.169655257059759 ], [ -96.031079190501586, 30.169593257673089 ], [ -96.031048191025477, 30.169533257472178 ], [ -96.030978190733876, 30.169308257318068 ], [ -96.030978190954016, 30.169220257494914 ], [ -96.031003190238664, 30.169066257541569 ], [ -96.031181190784579, 30.168835256775388 ], [ -96.031193190334463, 30.168797257217054 ], [ -96.031193191221135, 30.168703257364058 ], [ -96.031136190540565, 30.168544257385534 ], [ -96.031124191223313, 30.168384256826918 ], [ -96.031121190499078, 30.16837225733812 ], [ -96.031105190712623, 30.168285257173775 ], [ -96.031048190869882, 30.168159256865639 ], [ -96.031004190699889, 30.168104256911782 ], [ -96.030960190984686, 30.167967257110394 ], [ -96.030960190610358, 30.167948257149604 ], [ -96.030960190547532, 30.167934257373073 ], [ -96.030960190737503, 30.167868257018256 ], [ -96.030947190294498, 30.167818257167276 ], [ -96.030884190559959, 30.16769725720431 ], [ -96.030884190861457, 30.167609257323619 ], [ -96.030893190594441, 30.167589256657408 ], [ -96.030972191124093, 30.167428257058727 ], [ -96.031105190273308, 30.167060256893016 ], [ -96.031188190532731, 30.16688425642236 ], [ -96.031219190733623, 30.166758256509507 ], [ -96.031219191074982, 30.166631256823944 ], [ -96.031182190674613, 30.166528256717001 ], [ -96.031087190317663, 30.166263256461374 ], [ -96.031065190146805, 30.166170256437045 ], [ -96.031061190135119, 30.166153256363291 ], [ -96.031067190368731, 30.166119256490013 ], [ -96.031087190153698, 30.166010256862549 ], [ -96.031144190811915, 30.165911256372492 ], [ -96.031167190428889, 30.16584825672215 ], [ -96.031188190369662, 30.165796256482931 ], [ -96.031188190100806, 30.16563725683271 ], [ -96.031226190173214, 30.165345256530511 ], [ -96.031277190459207, 30.165131256546449 ], [ -96.031290190101529, 30.165016256686823 ], [ -96.031296190518091, 30.164884256451813 ], [ -96.031289190152592, 30.164831256721321 ], [ -96.031264190790466, 30.16461425615239 ], [ -96.031271190988733, 30.164565256104328 ], [ -96.031299190408575, 30.164496256579618 ], [ -96.031303190201044, 30.164485256163818 ], [ -96.031316190376273, 30.164454255952659 ], [ -96.031321190066862, 30.164444256697156 ], [ -96.031416190854983, 30.164312256305809 ], [ -96.031536190118388, 30.16418025595981 ], [ -96.031695190252208, 30.164037256534421 ], [ -96.03179019039446, 30.163911255903461 ], [ -96.032005190871104, 30.16371925582191 ], [ -96.032017190963515, 30.16370925573532 ], [ -96.032081190972036, 30.163664256155158 ], [ -96.032365190870479, 30.163559256080003 ], [ -96.03247319059075, 30.163505256105513 ], [ -96.032530190452121, 30.163439255650548 ], [ -96.032568190485307, 30.16334525619337 ], [ -96.032625191233009, 30.16327925571677 ], [ -96.032656190451945, 30.163252255570139 ], [ -96.032916191165555, 30.163114255945288 ], [ -96.033029190769, 30.163032256095374 ], [ -96.033099190784199, 30.162966255987914 ], [ -96.033226191274267, 30.162779255776513 ], [ -96.033396190733853, 30.162669255717041 ], [ -96.033662191295917, 30.162593256238313 ], [ -96.033757191214661, 30.162516256222503 ], [ -96.033820190964207, 30.162406255729636 ], [ -96.033877190825422, 30.162246255546304 ], [ -96.033985191437438, 30.162092256092688 ], [ -96.034086191262929, 30.161994255747306 ], [ -96.034143191488937, 30.161917255291858 ], [ -96.034162191651916, 30.16187825554201 ], [ -96.034182191190993, 30.161771255969754 ], [ -96.034206191092522, 30.161653255898024 ], [ -96.034314191285532, 30.161362255906543 ], [ -96.034542190948216, 30.160993255894258 ], [ -96.034580191600014, 30.16090625575292 ], [ -96.034592190794285, 30.160851255532339 ], [ -96.034649191008242, 30.160851255577924 ], [ -96.034871191471325, 30.160823255435325 ], [ -96.035092191847028, 30.160774255747437 ], [ -96.03518719170566, 30.160741255654216 ], [ -96.035301191002404, 30.160669255563885 ], [ -96.035377191271238, 30.160582255026601 ], [ -96.035402191427863, 30.160538255354606 ], [ -96.035415191342565, 30.160461254988665 ], [ -96.035440191087062, 30.160400255021472 ], [ -96.035560191586967, 30.160312255665357 ], [ -96.035870191206328, 30.160125255327454 ], [ -96.035902191696039, 30.160120255304776 ], [ -96.035952191733926, 30.160126254956605 ], [ -96.036117191966312, 30.160159255399773 ], [ -96.036237191957241, 30.160202255661829 ], [ -96.036278191260394, 30.16023625507032 ], [ -96.036351191363892, 30.1602962553225 ], [ -96.036401191669299, 30.16032325541558 ], [ -96.036490191203228, 30.160351255205242 ], [ -96.036616192028859, 30.160356255557264 ], [ -96.036692191422588, 30.160346254987353 ], [ -96.036762191625925, 30.160324254823767 ], [ -96.036825191968177, 30.160285255412543 ], [ -96.03692619149605, 30.160258255427944 ], [ -96.036989192177572, 30.160263255063747 ], [ -96.037072191759975, 30.160252255166032 ], [ -96.037249192154206, 30.160181255408016 ], [ -96.037375191734796, 30.160148255054196 ], [ -96.037559192041769, 30.160115255581527 ], [ -96.037774191809518, 30.160087255385744 ], [ -96.037894192547554, 30.160087254922431 ], [ -96.038008192239303, 30.160126254726805 ], [ -96.038096192397546, 30.160120255275935 ], [ -96.038185191817121, 30.160082255279271 ], [ -96.03828619204873, 30.159994254923074 ], [ -96.03835619221681, 30.159862255267573 ], [ -96.038394191907145, 30.15978025515798 ], [ -96.038469192250119, 30.159747254754528 ], [ -96.038533192682763, 30.159752254923163 ], [ -96.038596192193168, 30.159785255188378 ], [ -96.038615192540135, 30.159818255335647 ], [ -96.038621192404136, 30.159868254783841 ], [ -96.03864719250825, 30.159923255125193 ], [ -96.038684192370084, 30.159972254758408 ], [ -96.038722192036303, 30.15999425498925 ], [ -96.038982192388616, 30.160016255156251 ], [ -96.039032192504564, 30.160022255467634 ], [ -96.039108192841127, 30.160005255470633 ], [ -96.039171192026132, 30.159967254811388 ], [ -96.039254192142238, 30.159873254672746 ], [ -96.039317192236737, 30.159851255279591 ], [ -96.039361192122797, 30.15985725519419 ], [ -96.039576192569072, 30.159956254674366 ], [ -96.039639192756724, 30.159950254640513 ], [ -96.039779192536798, 30.15990125465645 ], [ -96.039817192074366, 30.159874255292841 ], [ -96.039829192173741, 30.159824254851781 ], [ -96.039791192528725, 30.159527254704468 ], [ -96.03975319290997, 30.159395255211898 ], [ -96.039697192960602, 30.159335254531889 ], [ -96.039576192367363, 30.159313254884182 ], [ -96.039412192572243, 30.159313255193123 ], [ -96.039336192472561, 30.1593022548597 ], [ -96.039247192064522, 30.159258254698244 ], [ -96.039203192064534, 30.159225254994592 ], [ -96.03915319204647, 30.159109255149779 ], [ -96.039083192333166, 30.159000254545678 ], [ -96.0390071917939, 30.158840254571469 ], [ -96.03898819221736, 30.158780254734125 ], [ -96.038875191873927, 30.158565255035775 ], [ -96.038828192686537, 30.158448254429025 ], [ -96.03880519212619, 30.158296254536825 ], [ -96.038856192378532, 30.158225254552072 ], [ -96.038881192394157, 30.158214254938382 ], [ -96.03891919248349, 30.158236255152044 ], [ -96.038957191808819, 30.158302254468698 ], [ -96.038995192339442, 30.158318254623289 ], [ -96.039052192117879, 30.158318254630579 ], [ -96.039102192472825, 30.158291255145524 ], [ -96.039197192110606, 30.158170254905922 ], [ -96.039343192692726, 30.157922254320024 ], [ -96.039703192058582, 30.157247254589304 ], [ -96.039830192697991, 30.15709825445856 ], [ -96.039857192023803, 30.157056254340752 ], [ -96.039918192258355, 30.156961254476059 ], [ -96.04012719244129, 30.156845254825537 ], [ -96.040216192172949, 30.156752254138922 ], [ -96.040317192690523, 30.156560254436684 ], [ -96.040393192529635, 30.156235254269937 ], [ -96.040488192225553, 30.156126254096314 ], [ -96.040526192237934, 30.156016254612336 ], [ -96.040501192815256, 30.155823254667997 ], [ -96.04038719202957, 30.155680254429793 ], [ -96.040286192794341, 30.15560925462378 ], [ -96.040115192453712, 30.155521254029001 ], [ -96.039944192618592, 30.1555592542901 ], [ -96.039628191984079, 30.155763253967898 ], [ -96.039495192182912, 30.155801254122935 ], [ -96.039356192597481, 30.155818254151047 ], [ -96.039248192661631, 30.155818254579334 ], [ -96.039166191802778, 30.155763254606878 ], [ -96.039059192623782, 30.155559254388596 ], [ -96.038762192261643, 30.155328254450069 ], [ -96.038464192011759, 30.155026254469316 ], [ -96.038363192059563, 30.154949253989813 ], [ -96.038262192296045, 30.15490025398886 ], [ -96.038212191975461, 30.154889254024464 ], [ -96.038180192211669, 30.154965254479304 ], [ -96.038079192222384, 30.155004254536195 ], [ -96.03804119194217, 30.155031254318171 ], [ -96.037946191317403, 30.155048254095625 ], [ -96.037781191462244, 30.15494925415728 ], [ -96.037630191779229, 30.154822253972217 ], [ -96.037573191430212, 30.154762253651221 ], [ -96.037541191576182, 30.154729254003431 ], [ -96.037459191252864, 30.154586253616301 ], [ -96.037396192175024, 30.154322253647962 ], [ -96.037491191918988, 30.153828253723365 ], [ -96.037687191938403, 30.153487254064135 ], [ -96.037599191282553, 30.153295253881989 ], [ -96.037485191110434, 30.153152253608571 ], [ -96.037447191757195, 30.152954254154825 ], [ -96.037238191052467, 30.152366253647664 ], [ -96.037415191237898, 30.152190254012101 ], [ -96.037498191762126, 30.152058253778215 ], [ -96.037548191113984, 30.15193225335473 ], [ -96.037586191891151, 30.151728253208073 ], [ -96.037618191485876, 30.151673253477359 ], [ -96.037953192026194, 30.151371253611217 ], [ -96.038035191811119, 30.15124525362474 ], [ -96.038092191913321, 30.151047252926048 ], [ -96.038156191692963, 30.150915253585929 ], [ -96.038371192087922, 30.150646253046627 ], [ -96.038491192058501, 30.150349253124656 ], [ -96.038497192224739, 30.150074252996721 ], [ -96.038485191336505, 30.150024252988509 ], [ -96.038478191612285, 30.149997253375023 ], [ -96.03842819185212, 30.149865253142263 ], [ -96.038264191698815, 30.149635253048864 ], [ -96.038131191890812, 30.1489702529609 ], [ -96.038055191947336, 30.14878325265963 ], [ -96.038049191102772, 30.148689252710025 ], [ -96.038055191308061, 30.148596252423044 ], [ -96.038074191755356, 30.148513252694407 ], [ -96.038156191518368, 30.148453252415401 ], [ -96.038694191727728, 30.14823925296762 ], [ -96.039029192088847, 30.148003252901631 ], [ -96.039238191817205, 30.147816252702491 ], [ -96.039390191614615, 30.147700252289869 ], [ -96.039554191669424, 30.147590252337665 ], [ -96.039712192165439, 30.147404252537054 ], [ -96.039719191411436, 30.147316252697461 ], [ -96.03970619230563, 30.147250252854363 ], [ -96.039599191665673, 30.147046252163573 ], [ -96.039491192312212, 30.14689825231947 ], [ -96.039421191556286, 30.146733252583555 ], [ -96.039371192122246, 30.146568252576134 ], [ -96.03930819207693, 30.146035251859526 ], [ -96.039251191809228, 30.145887252358037 ], [ -96.039074191768876, 30.145749251810543 ], [ -96.03897319131687, 30.145766251884883 ], [ -96.038884191677482, 30.145766252154822 ], [ -96.03867619188793, 30.145837251969656 ], [ -96.038543191813105, 30.145941251885962 ], [ -96.038404191927356, 30.145974252103795 ], [ -96.038284191614949, 30.145969252450584 ], [ -96.038189191597255, 30.145952252457043 ], [ -96.03811919175628, 30.145925251897477 ], [ -96.038062191049846, 30.145821252099083 ], [ -96.037873191452618, 30.145293252313749 ], [ -96.037822191731948, 30.145216251750149 ], [ -96.037765191592143, 30.145100252538278 ], [ -96.037727191203913, 30.144974252497505 ], [ -96.037721191129307, 30.144743252232296 ], [ -96.037683191718912, 30.14456725181115 ], [ -96.037614191715761, 30.144435252154807 ], [ -96.037506191044244, 30.14430925191019 ], [ -96.037424190993761, 30.144177251927196 ], [ -96.037342191190547, 30.143968251587403 ], [ -96.037336191231589, 30.143913251507708 ], [ -96.037342191312959, 30.143864252270181 ], [ -96.037380191515823, 30.143776251963182 ], [ -96.037443191361604, 30.143677252300254 ], [ -96.037481191581847, 30.143639251448629 ], [ -96.037582191409868, 30.143567251899341 ], [ -96.037614191268531, 30.143529251535128 ], [ -96.037671190711791, 30.143507251698303 ], [ -96.037785191349585, 30.143507251395068 ], [ -96.037854191653153, 30.143534251842787 ], [ -96.038183190923831, 30.143836251983839 ], [ -96.038227190894375, 30.143859251941805 ], [ -96.038354191700748, 30.143897251499489 ], [ -96.038429191753536, 30.143908251451862 ], [ -96.038682191019063, 30.143903251722573 ], [ -96.038784191947371, 30.143881252040138 ], [ -96.038878191177915, 30.143837251533874 ], [ -96.038904191359592, 30.143815251988933 ], [ -96.038935191396831, 30.143738251804876 ], [ -96.038961191229845, 30.143705251942997 ], [ -96.039125191914422, 30.143622251493003 ], [ -96.039479191417087, 30.143502251817676 ], [ -96.039720191625179, 30.143381251967263 ], [ -96.039777192019514, 30.143351251463383 ], [ -96.039925192287555, 30.143272252078759 ], [ -96.039979191851259, 30.143243252105027 ], [ -96.040143192054273, 30.143139251495228 ], [ -96.040226191840162, 30.143068251799154 ], [ -96.040263192003707, 30.142969251874248 ], [ -96.040251192139223, 30.142820251922576 ], [ -96.040150191321032, 30.142573251945539 ], [ -96.040087191915276, 30.142496251658059 ], [ -96.040042191669514, 30.142408251802465 ], [ -96.040049191324158, 30.142073251240753 ], [ -96.040074191765214, 30.141864251390263 ], [ -96.040005191929353, 30.141650251399277 ], [ -96.03998619194293, 30.141551251125392 ], [ -96.039967191302097, 30.141127250882228 ], [ -96.039935192029816, 30.140886250989002 ], [ -96.039948192063605, 30.140699251136127 ], [ -96.039923191746752, 30.140534251384331 ], [ -96.040144191716621, 30.140259251266002 ], [ -96.040233191410607, 30.140166251172342 ], [ -96.040467192109872, 30.140089250670574 ], [ -96.040606191467091, 30.140078250849804 ], [ -96.041033191808879, 30.140069250692388 ], [ -96.04165519203346, 30.140056250710682 ], [ -96.041845191838192, 30.14002325063651 ], [ -96.041908192063076, 30.139985251416835 ], [ -96.041965192033388, 30.139924250602135 ], [ -96.04206619201355, 30.139886251229267 ], [ -96.042446191962838, 30.139875251211198 ], [ -96.042572192021936, 30.139825251347013 ], [ -96.042850191926547, 30.139672250670063 ], [ -96.043034192429189, 30.139606250599481 ], [ -96.043242192456702, 30.139551251068923 ], [ -96.043349192820855, 30.139504251200641 ], [ -96.043394192777754, 30.139485251054786 ], [ -96.043590192521052, 30.139369250944334 ], [ -96.044031192515135, 30.139063251073118 ], [ -96.044128193002948, 30.13899625106971 ], [ -96.044261192247802, 30.138924250318503 ], [ -96.044520192945555, 30.13882625085644 ], [ -96.044596193246434, 30.138787250980631 ], [ -96.044665192783853, 30.138738250232407 ], [ -96.04469719299837, 30.138650250508203 ], [ -96.044602192791316, 30.138298250821833 ], [ -96.044571193223717, 30.137996250651593 ], [ -96.044539193027816, 30.13789125042457 ], [ -96.044488192383014, 30.137781250334537 ], [ -96.04445019246603, 30.137765250560957 ], [ -96.044400192517017, 30.137770250485648 ], [ -96.044299192464351, 30.137886250910594 ], [ -96.044242192141624, 30.13793525071981 ], [ -96.044166193029284, 30.137924250897026 ], [ -96.043951192227979, 30.137704250799988 ], [ -96.043806192088041, 30.137385250798122 ], [ -96.043888192777274, 30.137270249991651 ], [ -96.044027192621854, 30.137149249898791 ], [ -96.044090192073114, 30.137127250194158 ], [ -96.044286192665808, 30.137012249864284 ], [ -96.044577192394627, 30.136825249845291 ], [ -96.044748192703324, 30.136704249981353 ], [ -96.044988192533907, 30.136358250248957 ], [ -96.045089193040553, 30.13630825029157 ], [ -96.045203192535297, 30.136078249713389 ], [ -96.045222193175164, 30.135962250501596 ], [ -96.045311192827384, 30.135814249998965 ], [ -96.045393192679427, 30.135649249594032 ], [ -96.045408192930296, 30.135478250223315 ], [ -96.045431192630602, 30.135220249680106 ], [ -96.045412192845362, 30.135050249667525 ], [ -96.045393192897322, 30.134990250141332 ], [ -96.045305192584735, 30.134869249401032 ], [ -96.045121193033296, 30.134676249502515 ], [ -96.045090192889191, 30.134610249729864 ], [ -96.045090192442999, 30.134489249769402 ], [ -96.045071192222679, 30.134341249381329 ], [ -96.045020192641488, 30.134253249985402 ], [ -96.044932192815921, 30.13406124947366 ], [ -96.044729192198304, 30.133901249413711 ], [ -96.044502192759509, 30.133813249920998 ], [ -96.044230192830895, 30.133786249323794 ], [ -96.044122192465423, 30.13379124976186 ], [ -96.044072192418099, 30.133863249564161 ], [ -96.04404719204247, 30.133852249438974 ], [ -96.043977192475708, 30.133846249739747 ], [ -96.043926192700098, 30.133780249638651 ], [ -96.043870192102773, 30.133527249506859 ], [ -96.043844192143936, 30.133450249751103 ], [ -96.043800192042042, 30.133385249866141 ], [ -96.043712192546522, 30.133170249703532 ], [ -96.043642192242473, 30.133066249374757 ], [ -96.043528191969372, 30.132967249579504 ], [ -96.043509192059147, 30.132928249605957 ], [ -96.043484191792658, 30.132675249214927 ], [ -96.04349019222721, 30.132483249714348 ], [ -96.043560192593347, 30.132192249636425 ], [ -96.043478191868928, 30.13198924948199 ], [ -96.043459192380951, 30.131890249364933 ], [ -96.043465192168412, 30.131730249139625 ], [ -96.043459192603123, 30.131681249234951 ], [ -96.043573192058986, 30.131587249592251 ], [ -96.043611192180791, 30.131521248897872 ], [ -96.043725192192085, 30.131379249212124 ], [ -96.043725192305871, 30.131032249354359 ], [ -96.04399019221843, 30.130235249237714 ], [ -96.044148192055673, 30.130098248933518 ], [ -96.044199192150003, 30.129939249164547 ], [ -96.044256192154023, 30.129812248824528 ], [ -96.044300192449114, 30.129680248635182 ], [ -96.044180191826811, 30.129125249008116 ], [ -96.044187191725555, 30.128993248830028 ], [ -96.044281192669573, 30.128845248508153 ], [ -96.04442719178806, 30.12874624895337 ], [ -96.044547192736118, 30.128642249004667 ], [ -96.044673192580078, 30.128565248136979 ], [ -96.044781192815819, 30.128521248912577 ], [ -96.044939192358015, 30.128493248592964 ], [ -96.04513519280907, 30.128405248861853 ], [ -96.045217192828531, 30.128340248525504 ], [ -96.045299192797131, 30.128252248472378 ], [ -96.045388192754714, 30.12813624881025 ], [ -96.045451192608724, 30.1280652486879 ], [ -96.045489192197863, 30.128037248710317 ], [ -96.045710192226181, 30.127779248504794 ], [ -96.045869192908995, 30.127664248111618 ], [ -96.045938192466409, 30.127592247908161 ], [ -96.04603319275644, 30.127537247908208 ], [ -96.046153192937467, 30.127482248177781 ], [ -96.046368192810291, 30.127356248404844 ], [ -96.046589192692082, 30.127356247880833 ], [ -96.046678192395717, 30.127427247924697 ], [ -96.046773192427764, 30.127488248312908 ], [ -96.046887193005972, 30.127526248299322 ], [ -96.047114193127214, 30.127636248571829 ], [ -96.047184193053411, 30.127664248351063 ], [ -96.047329193233466, 30.127697248707481 ], [ -96.047449193068942, 30.12770824811091 ], [ -96.048056193530329, 30.127675248201914 ], [ -96.048107193604977, 30.127686247887777 ], [ -96.04817019363928, 30.127669248395655 ], [ -96.048239193316533, 30.127625247850034 ], [ -96.0483531928937, 30.127488248102416 ], [ -96.048429193693181, 30.12741724855319 ], [ -96.048518192961396, 30.127356248596083 ], [ -96.04861319296424, 30.127312248047538 ], [ -96.048960193471558, 30.127323248124753 ], [ -96.049434193396522, 30.127367248478237 ], [ -96.049517193427363, 30.127351248370417 ], [ -96.049618193480796, 30.127312248122305 ], [ -96.049706193439604, 30.127230248116287 ], [ -96.049725193081912, 30.127180248254408 ], [ -96.049732193387314, 30.127136247909576 ], [ -96.04970019355379, 30.127087248298047 ], [ -96.049453193754672, 30.126895247798199 ], [ -96.049220193852022, 30.126763248189331 ], [ -96.049080193213811, 30.126647247787652 ], [ -96.049036193007026, 30.126559247979269 ], [ -96.04903619369577, 30.126488248366094 ], [ -96.049131193659662, 30.126384248178201 ], [ -96.049125193729964, 30.126274247512267 ], [ -96.04913119336986, 30.126197247637862 ], [ -96.049118193441728, 30.126026247648504 ], [ -96.049131193469933, 30.125933248242923 ], [ -96.049163192815783, 30.125839247958172 ], [ -96.049181193199544, 30.125801248101535 ], [ -96.049226192808646, 30.125713247945384 ], [ -96.049296193750067, 30.125620248226262 ], [ -96.049346192858295, 30.125565247763451 ], [ -96.04939719321483, 30.125526248182926 ], [ -96.049473193077503, 30.12548824817225 ], [ -96.049530193575251, 30.125422247460289 ], [ -96.049631193017646, 30.125416247356814 ], [ -96.049833193600605, 30.125471248037588 ], [ -96.050086193669571, 30.125515247560653 ], [ -96.050206193775821, 30.125493248030185 ], [ -96.050465193224014, 30.125235247771549 ], [ -96.050630193880352, 30.125224247769996 ], [ -96.050832193356655, 30.125295247518594 ], [ -96.050914194186731, 30.125345247524528 ], [ -96.05099019397062, 30.125378248103985 ], [ -96.051091193869212, 30.12538324726647 ], [ -96.051167193559948, 30.125356247560724 ], [ -96.051287193624873, 30.125378247565951 ], [ -96.051388194045643, 30.125356247383884 ], [ -96.051445193859834, 30.125356247962607 ], [ -96.051508193431175, 30.125241247265539 ], [ -96.051496194137798, 30.125153247650591 ], [ -96.051381193955024, 30.125007247495006 ], [ -96.051337193948115, 30.124798247262628 ], [ -96.051400193358617, 30.124721247888182 ], [ -96.051476194202493, 30.124688247929228 ], [ -96.051634194185311, 30.124628247724416 ], [ -96.051837193660347, 30.124578247810813 ], [ -96.052216194275331, 30.124507247148582 ], [ -96.052317194322313, 30.124496247529226 ], [ -96.052425193751191, 30.12446324711004 ], [ -96.052551193625163, 30.124386247104631 ], [ -96.052772193898093, 30.124282247624116 ], [ -96.052962194653233, 30.124238247383726 ], [ -96.0530631937647, 30.124205247393622 ], [ -96.053177194602569, 30.124183247366112 ], [ -96.053360194576442, 30.124172247649689 ], [ -96.053499194816879, 30.124128247457378 ], [ -96.053594194214497, 30.12411724718956 ], [ -96.053790194518172, 30.124139247552197 ], [ -96.053866194459104, 30.124161247079876 ], [ -96.053999194304353, 30.124167247294153 ], [ -96.054182194134356, 30.124156247361366 ], [ -96.054277195022863, 30.12413924744024 ], [ -96.054404194622734, 30.124084247562042 ], [ -96.054568194995625, 30.123941247389631 ], [ -96.054600194234084, 30.123875247564506 ], [ -96.054619194204165, 30.123793247648731 ], [ -96.054612194450215, 30.123688247246395 ], [ -96.054638194604706, 30.12351824712114 ], [ -96.054732194716607, 30.123381247173537 ], [ -96.054783194141265, 30.123287247429523 ], [ -96.054821194339567, 30.123166247248136 ], [ -96.05484019415573, 30.123040246782921 ], [ -96.054834194265055, 30.122985247210515 ], [ -96.054764194918718, 30.122743247137073 ], [ -96.05470119481042, 30.122446246892565 ], [ -96.054669194212835, 30.122375246766328 ], [ -96.054549194877424, 30.122199246549382 ], [ -96.054486194616672, 30.122150246832835 ], [ -96.054423194170255, 30.122122247020599 ], [ -96.054360194716921, 30.122117246876563 ], [ -96.054183193938783, 30.122122246503881 ], [ -96.054094193953745, 30.122078246826163 ], [ -96.054063194186639, 30.121990247229441 ], [ -96.054050194758318, 30.121781247200161 ], [ -96.054075194412533, 30.121732247120747 ], [ -96.054109194265138, 30.121686247040262 ], [ -96.054316194876137, 30.121556246887387 ], [ -96.054398194399937, 30.121463246506426 ], [ -96.054404194856374, 30.121397246721624 ], [ -96.054379194055059, 30.121298246442127 ], [ -96.054227193857116, 30.120897246829593 ], [ -96.054227194585451, 30.120869246910701 ], [ -96.054259193887077, 30.120776247037924 ], [ -96.054328194033602, 30.120715246553754 ], [ -96.054385194331886, 30.120715246856854 ], [ -96.054455194590261, 30.120732246245208 ], [ -96.054524194526735, 30.12076524685763 ], [ -96.054568194844819, 30.120759246536288 ], [ -96.054606194322403, 30.120743246952706 ], [ -96.054619194560289, 30.120693246724443 ], [ -96.054543194799734, 30.120457246739324 ], [ -96.054543194703115, 30.120397246483357 ], [ -96.054581194737651, 30.120248246306986 ], [ -96.054657194475155, 30.120171246721974 ], [ -96.054733194957905, 30.120138246758799 ], [ -96.054872194710342, 30.120122246945677 ], [ -96.055100194555521, 30.120166246735241 ], [ -96.055163194921889, 30.120160246220248 ], [ -96.055479194974453, 30.119979246063654 ], [ -96.055618194711201, 30.119935246451398 ], [ -96.055839194837304, 30.119896246135013 ], [ -96.055884194246431, 30.119869246553634 ], [ -96.055903194299631, 30.119836246257606 ], [ -96.055909194289455, 30.119776246492297 ], [ -96.055953194366495, 30.119600246358214 ], [ -96.055985195034538, 30.119550246781959 ], [ -96.056042194484988, 30.119528246555898 ], [ -96.056174194723923, 30.119512246521289 ], [ -96.056238194958709, 30.119424246563394 ], [ -96.056238194447886, 30.119330246240452 ], [ -96.056263195030922, 30.119138246452358 ], [ -96.056326194412918, 30.119061246563085 ], [ -96.056434194961724, 30.119028246644334 ], [ -96.056478195055277, 30.119028245824651 ], [ -96.056548195133033, 30.118984245823722 ], [ -96.056567194637935, 30.118825246579352 ], [ -96.056567194663813, 30.118710246294455 ], [ -96.056554194694826, 30.11865524603413 ], [ -96.056510195234139, 30.118611246329557 ], [ -96.056295194497707, 30.118479246156003 ], [ -96.056238194767644, 30.118413246250583 ], [ -96.056232195221412, 30.118336245924446 ], [ -96.056244194436289, 30.118303245750639 ], [ -96.056358195029631, 30.118231246055331 ], [ -96.056491194870659, 30.118231245672984 ], [ -96.056655194691743, 30.118264246053254 ], [ -96.056718194415737, 30.118264245839566 ], [ -96.056807194475837, 30.118226246498601 ], [ -96.056933194853102, 30.117984245974856 ], [ -96.056927195001123, 30.117946245989536 ], [ -96.056940194569705, 30.117885246035279 ], [ -96.057003194737334, 30.117808245836667 ], [ -96.057054195387821, 30.117704245564237 ], [ -96.057155194720849, 30.11745124605217 ], [ -96.057174194898252, 30.117363245525784 ], [ -96.057174195248834, 30.117248246099724 ], [ -96.057117194849056, 30.116654245837726 ], [ -96.057123194902772, 30.116566246000339 ], [ -96.057243195085547, 30.116335245926521 ], [ -96.057250195313387, 30.116253245520788 ], [ -96.057218194555205, 30.1161702455775 ], [ -96.057155194530239, 30.116083245570096 ], [ -96.057022194853317, 30.116050245425271 ], [ -96.056877194452241, 30.116050245363866 ], [ -96.056814194894926, 30.116039245249798 ], [ -96.056763194974195, 30.115984245401187 ], [ -96.056712194857255, 30.115813245244347 ], [ -96.056706195261583, 30.115747245241959 ], [ -96.056637194682224, 30.115588245711717 ], [ -96.056599194462819, 30.115385245351337 ], [ -96.056554194968697, 30.115324245744524 ], [ -96.056460194768349, 30.115280245362552 ], [ -96.056371194634664, 30.115275245519765 ], [ -96.056302194428028, 30.115308245284471 ], [ -96.056207195083616, 30.115406245073682 ], [ -96.056156194485141, 30.115478245649115 ], [ -96.056106194581048, 30.115511245186479 ], [ -96.056023194559415, 30.115533245714914 ], [ -96.05592919471006, 30.115533245590811 ], [ -96.055777194166836, 30.115434245590162 ], [ -96.055669194191637, 30.115280245696447 ], [ -96.055499194791537, 30.114972245620105 ], [ -96.055467194055012, 30.114945245164467 ], [ -96.055366194455786, 30.114912245448192 ], [ -96.055309194765144, 30.114906245375284 ], [ -96.055195193996013, 30.114934245375707 ], [ -96.055158194835826, 30.114967245869426 ], [ -96.055113194240135, 30.11508224555666 ], [ -96.055075194382837, 30.115115245773922 ], [ -96.054974194045357, 30.115164245086344 ], [ -96.054936194741188, 30.115170245154896 ], [ -96.054886194131299, 30.115153245275927 ], [ -96.054867194454332, 30.115082245378741 ], [ -96.054873194229799, 30.115016245408441 ], [ -96.05486019452492, 30.114983245650606 ], [ -96.054797194020566, 30.114895245459341 ], [ -96.054759193906463, 30.114868245204146 ], [ -96.054652193883996, 30.114857245163595 ], [ -96.05458919448246, 30.114802245146215 ], [ -96.054532194645873, 30.114499245111691 ], [ -96.054424194397143, 30.114214245612661 ], [ -96.054361194303056, 30.114109245562915 ], [ -96.054266194330268, 30.114027245521378 ], [ -96.053982193581888, 30.113878245362695 ], [ -96.053735193738078, 30.113785245718002 ], [ -96.053470194148389, 30.113697244969924 ], [ -96.0534451943645, 30.113669245001354 ], [ -96.05341319340495, 30.113587245655676 ], [ -96.053419193663203, 30.11354324559051 ], [ -96.05350119428681, 30.113483244992405 ], [ -96.05355219334605, 30.113433245201826 ], [ -96.053577193648536, 30.113389245370659 ], [ -96.053590194194044, 30.113125245459315 ], [ -96.053565193503687, 30.112873245282959 ], [ -96.053666193399096, 30.112460244836889 ], [ -96.053710194191822, 30.112310245221536 ], [ -96.053729193534139, 30.112251244847499 ], [ -96.053805193453172, 30.112037245074504 ], [ -96.053913194348993, 30.111823245083833 ], [ -96.053999193990265, 30.111618244701035 ], [ -96.054001193586899, 30.11159924490347 ], [ -96.054023193895304, 30.11155924462247 ], [ -96.05403019374242, 30.111545244525065 ], [ -96.054052194045411, 30.111493244866953 ], [ -96.054187194417125, 30.111197244596024 ], [ -96.054273193468461, 30.111010244413059 ], [ -96.054324193621326, 30.110823244644369 ], [ -96.054330194022057, 30.110751244461888 ], [ -96.054311194415618, 30.110691244744235 ], [ -96.054248194049833, 30.110641244662418 ], [ -96.05416619350278, 30.110608244923494 ], [ -96.054103194034369, 30.110592244976623 ], [ -96.054058193542417, 30.110625244998214 ], [ -96.054027193642341, 30.110680244779683 ], [ -96.054010193713566, 30.110687244197731 ], [ -96.053970193935072, 30.110707244389516 ], [ -96.053900193617395, 30.110718244576091 ], [ -96.053837194250789, 30.110691245004674 ], [ -96.053796193625104, 30.110695244205779 ], [ -96.053772194109513, 30.110668244378807 ], [ -96.053749194044173, 30.110601244455282 ], [ -96.053730193943508, 30.110569244683806 ], [ -96.053711193854483, 30.110550245061805 ], [ -96.053677193257371, 30.110516244486302 ], [ -96.053642193363302, 30.110498244340651 ], [ -96.053572193493707, 30.110487244452752 ], [ -96.053515193527417, 30.110498244996652 ], [ -96.053420193181665, 30.110493244292872 ], [ -96.053275194121468, 30.110449244889242 ], [ -96.053192193281234, 30.110372244454759 ], [ -96.053180193189988, 30.110311244638659 ], [ -96.053180194076091, 30.110212244584829 ], [ -96.053237193770912, 30.110048244633255 ], [ -96.053294193125424, 30.109800244460608 ], [ -96.053281193764363, 30.109674244515304 ], [ -96.053249193923136, 30.109547244378351 ], [ -96.053060193184393, 30.109322244673709 ], [ -96.053022193177497, 30.109262244379476 ], [ -96.052984193715588, 30.109152244087682 ], [ -96.052971193805476, 30.109069244039642 ], [ -96.05297119315567, 30.108932244188114 ], [ -96.052984193160853, 30.108789243910643 ], [ -96.053028193423941, 30.108569244115458 ], [ -96.053035193978914, 30.108481244382769 ], [ -96.053022193298048, 30.108316243811487 ], [ -96.053003193664708, 30.108239244163034 ], [ -96.052972193270278, 30.108157243859608 ], [ -96.052858193164056, 30.107954243838915 ], [ -96.052788193018856, 30.107855243733795 ], [ -96.052643193493452, 30.107717244500492 ], [ -96.052618193335064, 30.107629243690681 ], [ -96.052630192893446, 30.107453243637298 ], [ -96.052618192986699, 30.107355243827385 ], [ -96.052567193680815, 30.107289244354511 ], [ -96.052491193420877, 30.107256244137467 ], [ -96.052302192862811, 30.107195244123549 ], [ -96.052264193382413, 30.107140243825143 ], [ -96.052245192774407, 30.107036243772686 ], [ -96.052277193090788, 30.106777244002647 ], [ -96.052321193035596, 30.106667244001809 ], [ -96.05240319366446, 30.106464243884524 ], [ -96.052409192747007, 30.106310243952169 ], [ -96.052436193593792, 30.106169243374339 ], [ -96.052447192918933, 30.106118243577111 ], [ -96.052498192939041, 30.105931244123305 ], [ -96.05264319368446, 30.105590244030406 ], [ -96.052757193360762, 30.105200243664171 ], [ -96.052808193707605, 30.105090243472585 ], [ -96.052960192877322, 30.104865243814238 ], [ -96.052979193618327, 30.104810243830986 ], [ -96.052970192788138, 30.104735243638725 ], [ -96.052960193475514, 30.104645243285091 ], [ -96.052890192758994, 30.104436243213168 ], [ -96.052890193670706, 30.104348243363532 ], [ -96.052909192962488, 30.104288243068769 ], [ -96.052938193207254, 30.104242243616643 ], [ -96.053001192946397, 30.104176243624256 ], [ -96.053010192790993, 30.104167243438063 ], [ -96.053137192908295, 30.104068243128587 ], [ -96.053149192924607, 30.104041243236018 ], [ -96.053157192853263, 30.103971243158544 ], [ -96.053168192799333, 30.103881243625551 ], [ -96.053358193686961, 30.103689243680524 ], [ -96.053415193427099, 30.103617243619329 ], [ -96.053416193373835, 30.103596242873191 ], [ -96.05342119354944, 30.103552243297628 ], [ -96.05338319295015, 30.103513243012724 ], [ -96.053112193233503, 30.103464243270366 ], [ -96.053048193711305, 30.103392243065795 ], [ -96.05284019333871, 30.103112243314499 ], [ -96.052701193427211, 30.103007242996267 ], [ -96.052572192932331, 30.102922243533715 ], [ -96.052253192590555, 30.102713243002558 ], [ -96.05205619327063, 30.102584243272197 ], [ -96.051759193171364, 30.102403242940387 ], [ -96.05146819250082, 30.102161242917898 ], [ -96.051342192888796, 30.102029243406346 ], [ -96.051254193134028, 30.10188624273912 ], [ -96.05122219273369, 30.101809242676513 ], [ -96.051203192271913, 30.101727243121058 ], [ -96.051140192180412, 30.101573243233595 ], [ -96.051121192823089, 30.1014522430646 ], [ -96.050900192722793, 30.101320242560227 ], [ -96.050697192976287, 30.101298243029163 ], [ -96.05058419298156, 30.101303242981988 ], [ -96.050287192298626, 30.10126524326396 ], [ -96.050046192906251, 30.101149242846549 ], [ -96.049895192802452, 30.100951242962577 ], [ -96.04985119217109, 30.100803242433752 ], [ -96.049762191798976, 30.100732242372938 ], [ -96.049680192440775, 30.100600242685314 ], [ -96.049648192639651, 30.100473242890505 ], [ -96.049633192363643, 30.100439242811678 ], [ -96.049598192032221, 30.100358242829302 ], [ -96.049547192307557, 30.100275243079345 ], [ -96.049187191651029, 30.099885242514521 ], [ -96.049111191887363, 30.099649242350687 ], [ -96.049111192458838, 30.099577243016817 ], [ -96.048985192430251, 30.099341242854184 ], [ -96.048985192475328, 30.09928124294002 ], [ -96.049004192274737, 30.099226242452396 ], [ -96.0490551925066, 30.099171242126236 ], [ -96.049130191608612, 30.099121242603712 ], [ -96.04926919236884, 30.099066242097877 ], [ -96.049421192555329, 30.098923242304426 ], [ -96.049510191929102, 30.098802242560154 ], [ -96.049624192387981, 30.098605241944512 ], [ -96.049813192187344, 30.098149242363935 ], [ -96.04987619177993, 30.098022242099276 ], [ -96.049927192615527, 30.097934241850851 ], [ -96.049946192142897, 30.097819242178385 ], [ -96.049940192699907, 30.097775242238217 ], [ -96.049914191753672, 30.09771424232439 ], [ -96.049756192051376, 30.097473242453212 ], [ -96.04973119176131, 30.097412241886648 ], [ -96.049719192182351, 30.097352242169791 ], [ -96.049795192336717, 30.096934242015536 ], [ -96.049795192343339, 30.096835242261051 ], [ -96.049744191699446, 30.096615241833909 ], [ -96.049700192155981, 30.096494242237103 ], [ -96.049605192384746, 30.096121241445189 ], [ -96.049567192116498, 30.096011242131034 ], [ -96.049517191759975, 30.095950241604985 ], [ -96.049447191912421, 30.095912241631634 ], [ -96.049390192342656, 30.095895241898351 ], [ -96.049352192377413, 30.095895241894461 ], [ -96.049257191721637, 30.095818242073271 ], [ -96.049207192152963, 30.095714242104112 ], [ -96.049163192015641, 30.095576241592649 ], [ -96.049043192040926, 30.095368242077758 ], [ -96.048999191760004, 30.095307242155311 ], [ -96.048948191377107, 30.095269241943274 ], [ -96.048904191571467, 30.095219241576537 ], [ -96.048733192161762, 30.095131241482679 ], [ -96.048613191618784, 30.095098241260242 ], [ -96.048145191500993, 30.095021241677358 ], [ -96.0478171916577, 30.094944241478149 ], [ -96.047684191472896, 30.094922241560585 ], [ -96.047614191692034, 30.094922241453286 ], [ -96.047494191534028, 30.094988241907405 ], [ -96.047406191676771, 30.095010241791034 ], [ -96.047381191260911, 30.095005242100143 ], [ -96.047336191224773, 30.094917241829659 ], [ -96.047292190931472, 30.094785241684225 ], [ -96.047141191516559, 30.094620242091242 ], [ -96.047096191592289, 30.094515241948098 ], [ -96.0470581912505, 30.094455241225099 ], [ -96.046983190792545, 30.094389241721995 ], [ -96.046780191412708, 30.094312241568037 ], [ -96.04674219164032, 30.094279241146047 ], [ -96.046723191427574, 30.094235241497067 ], [ -96.046730191710381, 30.094185241481853 ], [ -96.046780191406143, 30.094142241996995 ], [ -96.046856191589683, 30.094098241510839 ], [ -96.046900190764234, 30.09405424116698 ], [ -96.046888191515023, 30.093471241126167 ], [ -96.046894191428066, 30.093279241432459 ], [ -96.046882190899012, 30.092905241629158 ], [ -96.046863190974051, 30.09270724131903 ], [ -96.046800191165616, 30.092438241419764 ], [ -96.046775191372546, 30.0922572408235 ], [ -96.046756191380169, 30.092202241543362 ], [ -96.046716191604176, 30.091901241522628 ], [ -96.046711191244057, 30.091861241112174 ], [ -96.046718190978439, 30.091778241339838 ], [ -96.046775190747141, 30.091608240963819 ], [ -96.046762190893148, 30.091443241170474 ], [ -96.046680190763539, 30.091157240866274 ], [ -96.046693190638152, 30.091064240484311 ], [ -96.046756191244427, 30.09097624127735 ], [ -96.046781190947385, 30.090921240962786 ], [ -96.04678119125569, 30.090861240832037 ], [ -96.046769190918795, 30.090789241142922 ], [ -96.04667419106508, 30.090558241131102 ], [ -96.046661190558879, 30.090399240534001 ], [ -96.046687191247941, 30.09031624114586 ], [ -96.046832190768342, 30.090168240631137 ], [ -96.046889190599487, 30.090086240596342 ], [ -96.046927191218785, 30.089987240380143 ], [ -96.046921191582243, 30.089800240713604 ], [ -96.046895190926179, 30.089706240222988 ], [ -96.046883191327808, 30.089608240876771 ], [ -96.046895191157986, 30.089492241020931 ], [ -96.046889190729928, 30.08931624090879 ], [ -96.046857191168485, 30.089146240286695 ], [ -96.046775190952403, 30.08898124090333 ], [ -96.046737191086436, 30.088860240759217 ], [ -96.046731191091055, 30.08878324072932 ], [ -96.04678219102604, 30.08869024016531 ], [ -96.046826190907666, 30.088640240523993 ], [ -96.04692119070522, 30.088591240064744 ], [ -96.046965191512726, 30.088541240398776 ], [ -96.046978191241337, 30.088481240552522 ], [ -96.046972190662387, 30.088448240773662 ], [ -96.046965190770464, 30.088415240704503 ], [ -96.046878191148409, 30.088242240754937 ], [ -96.046858190665006, 30.088201240337675 ], [ -96.046851191358286, 30.088129240322022 ], [ -96.046858190892181, 30.088058239926667 ], [ -96.046908191418268, 30.087997240679446 ], [ -96.047016190612126, 30.08791523984555 ], [ -96.047054191094915, 30.087871240317281 ], [ -96.047092190972705, 30.087788239910477 ], [ -96.047079190648887, 30.087662239852062 ], [ -96.047047191370694, 30.087569240102258 ], [ -96.046964190702099, 30.087475240231857 ], [ -96.047010190881224, 30.087439240404628 ], [ -96.046993190603558, 30.087404240210056 ], [ -96.046942190868862, 30.087300240418976 ], [ -96.046926190997482, 30.087266240410383 ], [ -96.04694619058013, 30.087178240525528 ], [ -96.04699119091832, 30.087113240174848 ], [ -96.047003190717703, 30.087096240394388 ], [ -96.046997190625049, 30.087019240324569 ], [ -96.046965191145262, 30.08696423970213 ], [ -96.046915190598071, 30.086909239869509 ], [ -96.04690819074608, 30.086871240358821 ], [ -96.046921190599804, 30.086832239844746 ], [ -96.046978190792473, 30.086766239659315 ], [ -96.047067190709583, 30.086710239895613 ], [ -96.047085190553162, 30.086700240214793 ], [ -96.047130190912881, 30.086656240073854 ], [ -96.047168190804925, 30.086607240170768 ], [ -96.047175190765955, 30.086584240460979 ], [ -96.047187191175553, 30.086546240414652 ], [ -96.04717419089279, 30.086420240305763 ], [ -96.047155191110591, 30.086387240189129 ], [ -96.047100191286574, 30.086342239548067 ], [ -96.047041191108931, 30.086294239810826 ], [ -96.047029190836454, 30.086272239611962 ], [ -96.047029190889972, 30.086206240070183 ], [ -96.047079191399618, 30.086140239514751 ], [ -96.047105190628415, 30.08612324035834 ], [ -96.047433191478021, 30.085969240306422 ], [ -96.04750919073237, 30.085887240242982 ], [ -96.047545191342934, 30.085827240019338 ], [ -96.047579191346458, 30.085772239492293 ], [ -96.0476921913735, 30.085594239959633 ], [ -96.04773119060134, 30.085530240115578 ], [ -96.047852191411451, 30.085338239971229 ], [ -96.047893191139252, 30.085275239668157 ], [ -96.047964191248127, 30.085162239666612 ], [ -96.048015191017797, 30.085057239960605 ], [ -96.04819219096899, 30.084887240043628 ], [ -96.048223191365267, 30.084870239473535 ], [ -96.048255191640308, 30.084837239241416 ], [ -96.048287191296637, 30.084821239722778 ], [ -96.048445191441459, 30.08483223993181 ], [ -96.048483190949582, 30.084815239538838 ], [ -96.04849519129796, 30.084799239517768 ], [ -96.048495191198839, 30.084760239530272 ], [ -96.048419191011874, 30.084568239433501 ], [ -96.048262191638329, 30.08424923908964 ], [ -96.048116191139712, 30.083996239524875 ], [ -96.048078191283196, 30.08386523977817 ], [ -96.048085190962482, 30.083804238978459 ], [ -96.048135191441276, 30.083771239610083 ], [ -96.048230191642432, 30.083777239118035 ], [ -96.048312190666493, 30.083815239111527 ], [ -96.048344191632836, 30.083821239771655 ], [ -96.048388191646865, 30.083804239385085 ], [ -96.048464190801994, 30.08369423929576 ], [ -96.048470191051905, 30.083601239188102 ], [ -96.048445190806632, 30.083469238954709 ], [ -96.048420191164709, 30.083430239709692 ], [ -96.048287190788358, 30.083309239661375 ], [ -96.04825519105043, 30.08326623967185 ], [ -96.048243191327956, 30.083222239398104 ], [ -96.048249191268027, 30.083150239556986 ], [ -96.048281191453881, 30.083057239010664 ], [ -96.048344190911479, 30.082969238905044 ], [ -96.048363191095206, 30.082914239135036 ], [ -96.048357191142202, 30.082870238828118 ], [ -96.048338191325115, 30.082826239193018 ], [ -96.048300190880497, 30.082782239334264 ], [ -96.048167190697058, 30.082710238889518 ], [ -96.047990190579981, 30.082633239305846 ], [ -96.047838190702095, 30.082584239238436 ], [ -96.047807190974765, 30.08255623949966 ], [ -96.04780119066902, 30.082485239547587 ], [ -96.047763191395248, 30.082430239009597 ], [ -96.047680190600275, 30.082408239160262 ], [ -96.047384190974455, 30.082238238889172 ], [ -96.047264190747441, 30.082100239091986 ], [ -96.047238190296767, 30.082045239299489 ], [ -96.047251191043699, 30.081919238772773 ], [ -96.047219191271267, 30.081760239161827 ], [ -96.046941190218661, 30.08151223865363 ], [ -96.046821190482305, 30.081380238617818 ], [ -96.046790191055848, 30.081325239005537 ], [ -96.046809190950626, 30.080957239086096 ], [ -96.046790190477552, 30.080776238566163 ], [ -96.046815190247855, 30.080682238931136 ], [ -96.046859190458818, 30.08060523868232 ], [ -96.046939190316152, 30.080516239087284 ], [ -96.046998190663601, 30.080451238412852 ], [ -96.047062190412689, 30.080397238874976 ], [ -96.047100190756737, 30.080325238851742 ], [ -96.047131191172127, 30.080254238373563 ], [ -96.047150190258037, 30.0800562387513 ], [ -96.047188190997701, 30.079957239076425 ], [ -96.047315191072812, 30.079946238368791 ], [ -96.047365190967994, 30.07991323835925 ], [ -96.047485190810221, 30.079781238325207 ], [ -96.047631190944728, 30.079732238380156 ], [ -96.047833191099258, 30.079693238611604 ], [ -96.047953191277315, 30.079699238687098 ], [ -96.048105190691402, 30.07969323871805 ], [ -96.048307191029082, 30.079671239014431 ], [ -96.048351190451271, 30.079660238857368 ], [ -96.048553190797975, 30.079572238196775 ], [ -96.048718190626715, 30.079506238300127 ], [ -96.048800191006734, 30.079430238535569 ], [ -96.048958190832124, 30.079309238062489 ], [ -96.048996191182894, 30.079259238612281 ], [ -96.049040190621724, 30.079166238563715 ], [ -96.049090191294297, 30.079094238778996 ], [ -96.049128191094766, 30.079061238242343 ], [ -96.049204191385144, 30.079017238253428 ], [ -96.049362191097558, 30.078951238256298 ], [ -96.049463191135814, 30.078946238180567 ], [ -96.049602191046446, 30.078968238639145 ], [ -96.049647191322336, 30.078957238370581 ], [ -96.049691191443614, 30.078924238502957 ], [ -96.04973519147174, 30.078864238090119 ], [ -96.049748190799178, 30.078814238473644 ], [ -96.049735191510578, 30.07876523855526 ], [ -96.04976019141921, 30.078677238592963 ], [ -96.049944191012813, 30.078589237934395 ], [ -96.050146191370217, 30.078512238179947 ], [ -96.050215191012697, 30.078468238340282 ], [ -96.050247191439937, 30.078429238299989 ], [ -96.050456191488706, 30.078276237894784 ], [ -96.0505251917712, 30.078188238417219 ], [ -96.050544191709179, 30.078149238260423 ], [ -96.050557190992649, 30.078045238399426 ], [ -96.050481190925595, 30.077896238572205 ], [ -96.050468191427356, 30.07784723780572 ], [ -96.050468191297284, 30.077759237894973 ], [ -96.050481191758095, 30.077721237759235 ], [ -96.050607191725803, 30.077633237971956 ], [ -96.050822191048141, 30.077539238264691 ], [ -96.050866191211796, 30.077506238017634 ], [ -96.050904191298855, 30.077462238243253 ], [ -96.050917191814108, 30.077429238400082 ], [ -96.050917191312649, 30.077380237648129 ], [ -96.050873191713052, 30.077166238043578 ], [ -96.050867191490894, 30.077072238032159 ], [ -96.050936191823538, 30.076968238343792 ], [ -96.051126191875596, 30.076786237628081 ], [ -96.05113219125036, 30.076748238173543 ], [ -96.051126191344537, 30.076720237894275 ], [ -96.051050191376248, 30.076665237567777 ], [ -96.051031191440117, 30.076638238082094 ], [ -96.051025190988923, 30.076561237931827 ], [ -96.051056191472256, 30.076506237426042 ], [ -96.051100191859575, 30.076468237673335 ], [ -96.051151192009158, 30.07635823807658 ], [ -96.051214191487304, 30.076297237998407 ], [ -96.051353191143789, 30.076281237436802 ], [ -96.051397192081723, 30.076292237454901 ], [ -96.051467191430106, 30.076363237732615 ], [ -96.051536191888161, 30.076385237870515 ], [ -96.051593191245985, 30.076385238076028 ], [ -96.05164419132268, 30.076352237679018 ], [ -96.051688191784208, 30.076303238086247 ], [ -96.051777191497138, 30.076149237337553 ], [ -96.051846191549359, 30.076099237362399 ], [ -96.051998191778878, 30.076017238143368 ], [ -96.052099191388649, 30.075973237859479 ], [ -96.052225191471834, 30.075957237429677 ], [ -96.052421192104703, 30.075902237451704 ], [ -96.05257919209059, 30.075792237848763 ], [ -96.052636191658152, 30.075770237414957 ], [ -96.052737192124951, 30.07577523743025 ], [ -96.052838191876035, 30.075770237587342 ], [ -96.052927192272108, 30.075742238042821 ], [ -96.053047192122207, 30.075720237753856 ], [ -96.053161192224351, 30.07563823719962 ], [ -96.053192192425357, 30.075599237999629 ], [ -96.053236191605535, 30.075588237174568 ], [ -96.053274191673978, 30.075567237733086 ], [ -96.053319192469246, 30.075561237511437 ], [ -96.053357192345786, 30.075578237334618 ], [ -96.053502191693468, 30.075677237494212 ], [ -96.053597192425627, 30.075704237328218 ], [ -96.053729192255901, 30.075765237306637 ], [ -96.053887192475003, 30.07588023766575 ], [ -96.054064191830889, 30.075951237730568 ], [ -96.054614192624285, 30.076127237401675 ], [ -96.054848192250631, 30.076177237728213 ], [ -96.055018192720638, 30.076188238031456 ], [ -96.055246192737258, 30.076221237221588 ], [ -96.05544819215045, 30.076226237376474 ], [ -96.05556219217361, 30.076221237758389 ], [ -96.055909192589922, 30.076188237986734 ], [ -96.055998192985967, 30.076155237899012 ], [ -96.056074193125582, 30.076100237151802 ], [ -96.056149192680721, 30.076023237724961 ], [ -96.056270192907391, 30.075820237472506 ], [ -96.056358192812112, 30.075594237308341 ], [ -96.056402192713421, 30.075380237005401 ], [ -96.056415193191285, 30.075056237378629 ], [ -96.056434192691228, 30.075001237319025 ], [ -96.056447192334929, 30.074825237001722 ], [ -96.056421192758762, 30.074710237637284 ], [ -96.056377192506375, 30.074616236993556 ], [ -96.056017192634513, 30.074237237417933 ], [ -96.055872192811378, 30.074055237613301 ], [ -96.055827192719661, 30.073957236965278 ], [ -96.055809192092653, 30.07383623730987 ], [ -96.055726192514044, 30.073555237351901 ], [ -96.055663192905854, 30.073445237233429 ], [ -96.055493192016939, 30.073193236941233 ], [ -96.05530919205242, 30.072940236693015 ], [ -96.054994192570689, 30.072572236531055 ], [ -96.054772191975104, 30.072280236692141 ], [ -96.054419192124911, 30.071890236985482 ], [ -96.054248192438905, 30.071637236537995 ], [ -96.053989191820406, 30.071406237008929 ], [ -96.053781191825195, 30.07125223695575 ], [ -96.053673192136216, 30.071153236432981 ], [ -96.053585192304666, 30.071054236483821 ], [ -96.053540191544144, 30.070956236672544 ], [ -96.053503192181466, 30.070829236779627 ], [ -96.053376191480439, 30.070499236991537 ], [ -96.053313191675954, 30.070356236521487 ], [ -96.053218191338942, 30.070089236036107 ], [ -96.053206191681028, 30.070054236801763 ], [ -96.053130191523096, 30.069889236148182 ], [ -96.053067191235129, 30.069856236786801 ], [ -96.05296619148298, 30.069823236404446 ], [ -96.052549191867584, 30.06981223610078 ], [ -96.052429191206301, 30.069752236826897 ], [ -96.052309191649101, 30.06967523664861 ], [ -96.052258191708418, 30.069609236579478 ], [ -96.052195191715199, 30.069510236013812 ], [ -96.052151190993811, 30.069268236553111 ], [ -96.051930191673009, 30.069048236272923 ], [ -96.051898191403808, 30.068966236652791 ], [ -96.051879190952917, 30.068878236710223 ], [ -96.051873191763448, 30.068658235995585 ], [ -96.05185419114072, 30.068466235809773 ], [ -96.051778190822517, 30.068312236609678 ], [ -96.051607191342086, 30.067889236519683 ], [ -96.051431191111845, 30.06753123567837 ], [ -96.051311191435744, 30.067339236302285 ], [ -96.05114019106, 30.067004235620423 ], [ -96.050982191255201, 30.066855235925093 ], [ -96.050951191361136, 30.066789236315842 ], [ -96.050957191161118, 30.066652235883108 ], [ -96.050938190733348, 30.066619235986217 ], [ -96.050831190599979, 30.066542236111438 ], [ -96.050660191165221, 30.066476235882202 ], [ -96.050635191345137, 30.066449235406608 ], [ -96.050742190764382, 30.066295235483867 ], [ -96.050793191395655, 30.066245235459348 ], [ -96.050913191098488, 30.066168236035857 ], [ -96.05098219136714, 30.066047236116287 ], [ -96.051001190851835, 30.065987235352914 ], [ -96.051027191373095, 30.065795235673097 ], [ -96.05102019077313, 30.06566823587028 ], [ -96.051058190945554, 30.065251235222487 ], [ -96.051052190967212, 30.065152235337678 ], [ -96.051090191056261, 30.064948235731357 ], [ -96.051084191334226, 30.064778235466569 ], [ -96.051121191373099, 30.064673235582156 ], [ -96.051261190756264, 30.064564235882301 ], [ -96.051399191173985, 30.064536235699645 ], [ -96.051444191479149, 30.064514235212169 ], [ -96.051469191383418, 30.064476235434196 ], [ -96.051482191230093, 30.064410235389424 ], [ -96.051475191054536, 30.064316235577216 ], [ -96.051412191038523, 30.064201235199743 ], [ -96.051393190694952, 30.064146235020733 ], [ -96.051374191210144, 30.06412423577499 ], [ -96.051343190915929, 30.064113235593371 ], [ -96.051311191423892, 30.064118235207221 ], [ -96.051261190994794, 30.064146235409702 ], [ -96.051210191361008, 30.064228235769786 ], [ -96.051147190735122, 30.064283235684872 ], [ -96.051046190906064, 30.064289235725113 ], [ -96.051002190733996, 30.064272235195475 ], [ -96.050964190626331, 30.064223235304222 ], [ -96.050938190415522, 30.064124235178703 ], [ -96.050945190546486, 30.06405223504996 ], [ -96.051040190693911, 30.063860235601275 ], [ -96.051040190956215, 30.063750234930939 ], [ -96.051059191371465, 30.063640235059278 ], [ -96.051141190810952, 30.063492235215833 ], [ -96.051147190892735, 30.063387234757062 ], [ -96.051128190566033, 30.063365235447549 ], [ -96.05105219078736, 30.063321235242395 ], [ -96.050989190967599, 30.063228234924971 ], [ -96.050995190635831, 30.063171235561725 ], [ -96.051014190647805, 30.062997235384053 ], [ -96.051059190999439, 30.062854235506887 ], [ -96.051248191002813, 30.062667235399758 ], [ -96.051305190475276, 30.062585234854389 ], [ -96.051286191427792, 30.062437234789709 ], [ -96.051248191103497, 30.062393235289665 ], [ -96.05115419036018, 30.062167235323521 ], [ -96.05098319041646, 30.062074234536865 ], [ -96.050907191003915, 30.062057234907186 ], [ -96.050844191277221, 30.062008235123045 ], [ -96.050831190546873, 30.061980235373518 ], [ -96.050831190539952, 30.061920234632144 ], [ -96.05086319065768, 30.061821234474568 ], [ -96.050932190831901, 30.061733234494074 ], [ -96.050958190477957, 30.061601235272093 ], [ -96.050996190545689, 30.061552234976325 ], [ -96.05121719132147, 30.061365234836142 ], [ -96.051350191210076, 30.06119523513436 ], [ -96.051438190593004, 30.06102423465952 ], [ -96.05145719057461, 30.060958234402811 ], [ -96.051470191070152, 30.0607162342971 ], [ -96.051520191297769, 30.060574234552725 ], [ -96.051634191044627, 30.060403234812583 ], [ -96.051710190864469, 30.06032623426017 ], [ -96.051773191171151, 30.060277234310611 ], [ -96.051798190883133, 30.060238234540112 ], [ -96.051805191223693, 30.060150234201267 ], [ -96.051798191072834, 30.060090234212389 ], [ -96.05177319082992, 30.06000223408487 ], [ -96.051779190737278, 30.059942234056859 ], [ -96.051824191028516, 30.059854234222932 ], [ -96.051931191358548, 30.059722234433476 ], [ -96.051950191083165, 30.059661234447461 ], [ -96.05194419058104, 30.05951323423966 ], [ -96.051862191251971, 30.059244234305492 ], [ -96.051868191035453, 30.059167234272866 ], [ -96.051893191171786, 30.059123234118001 ], [ -96.051906191400008, 30.059062234296551 ], [ -96.052127191475776, 30.058958234565203 ], [ -96.052291191349227, 30.058903234521846 ], [ -96.052550190656333, 30.058700234247343 ], [ -96.052569191555975, 30.058634233821827 ], [ -96.052544190563708, 30.05848023452906 ], [ -96.052525191037091, 30.058430233865391 ], [ -96.052525191041738, 30.058370233969196 ], [ -96.052544191040113, 30.058337234501906 ], [ -96.052576190607823, 30.058315233738263 ], [ -96.052626191046684, 30.058304233945258 ], [ -96.052797191446501, 30.058370233974859 ], [ -96.052847190616603, 30.058370233796651 ], [ -96.052879191491485, 30.058353234260512 ], [ -96.052904191219483, 30.058298234184527 ], [ -96.05291119145329, 30.058238234358914 ], [ -96.052879191208774, 30.058106234518956 ], [ -96.052879190772984, 30.058057234336374 ], [ -96.052911191589217, 30.057798233592386 ], [ -96.052942190924057, 30.057749233551036 ], [ -96.053005191012005, 30.057699234029563 ], [ -96.053107190687371, 30.057655234264775 ], [ -96.05396619151945, 30.057441233486085 ], [ -96.054067191146473, 30.057430233725164 ], [ -96.05420919115906, 30.057433233935086 ], [ -96.054345191868606, 30.057436234276725 ], [ -96.054389191336611, 30.057425234083095 ], [ -96.054465191917942, 30.057359233528942 ], [ -96.054553191643208, 30.057254233829894 ], [ -96.054636191797215, 30.057205234037951 ], [ -96.054686191944555, 30.057188234126826 ], [ -96.055116191426322, 30.057221233493625 ], [ -96.055331191821608, 30.057265233786417 ], [ -96.055457192014046, 30.057260234069862 ], [ -96.05550719197231, 30.057221233503586 ], [ -96.055539192031091, 30.057183233773447 ], [ -96.05565319153412, 30.057106234096466 ], [ -96.055804192078412, 30.057073234211185 ], [ -96.055950191943538, 30.057057233804628 ], [ -96.056019192178482, 30.057024233449351 ], [ -96.056120191942597, 30.056991233618756 ], [ -96.05615219221265, 30.056958234116838 ], [ -96.056202191951428, 30.056842233427499 ], [ -96.056316192328609, 30.056645233446808 ], [ -96.056354191769415, 30.056535233653872 ], [ -96.056417192111994, 30.056491233731805 ], [ -96.056499191899121, 30.056463233919519 ], [ -96.05663819159534, 30.056524233671635 ], [ -96.056739192415762, 30.056535233202837 ], [ -96.056834191909871, 30.056518233300707 ], [ -96.056916192551114, 30.056480233425081 ], [ -96.057017191873626, 30.056414233754357 ], [ -96.057040192523374, 30.056392233449262 ], [ -96.057087191732037, 30.056348233920243 ], [ -96.057169191657366, 30.056161233607444 ], [ -96.057201192274704, 30.056046233629115 ], [ -96.057226191623315, 30.056013233107958 ], [ -96.057327192137492, 30.055963233324171 ], [ -96.057441191683822, 30.055963233832863 ], [ -96.057643192495604, 30.055908233556874 ], [ -96.057725192714713, 30.055804233041748 ], [ -96.057738192106086, 30.055743233551024 ], [ -96.057706192557802, 30.055567233267436 ], [ -96.057782192609366, 30.055518233550458 ], [ -96.057896192696603, 30.055501233711766 ], [ -96.05794619199699, 30.055480233017622 ], [ -96.058009192705995, 30.055408233563217 ], [ -96.058079192739797, 30.055304233679692 ], [ -96.058097192680393, 30.055248232966388 ], [ -96.058130192634351, 30.055155233324793 ], [ -96.058155191961276, 30.054776233535303 ], [ -96.058184192611392, 30.054666232980736 ], [ -96.058218192344171, 30.05454023344187 ], [ -96.058281191952233, 30.054457233197574 ], [ -96.058306192673257, 30.05444123339436 ], [ -96.05851519251172, 30.054364233067545 ], [ -96.058641192399108, 30.054298233342976 ], [ -96.058692192388833, 30.054232232912302 ], [ -96.058742192754153, 30.054106233237295 ], [ -96.058831192904464, 30.053941232894431 ], [ -96.058938192705241, 30.053820232705355 ], [ -96.059039192798437, 30.053743232727214 ], [ -96.059121191996823, 30.053671233325282 ], [ -96.059134192769093, 30.053551232778386 ], [ -96.059153192179991, 30.053490232649892 ], [ -96.059140192328101, 30.053369232743769 ], [ -96.059115192418233, 30.053303233332937 ], [ -96.059115192860858, 30.053221233053129 ], [ -96.059071192130048, 30.05312723327857 ], [ -96.059083192937592, 30.053093233264416 ], [ -96.059115192901672, 30.053012232745086 ], [ -96.059147192065197, 30.052825232647105 ], [ -96.059216192319553, 30.052737232925146 ], [ -96.059298192894417, 30.052743232362797 ], [ -96.05939319230589, 30.052770232349264 ], [ -96.059488192366643, 30.052726232617587 ], [ -96.059551192691345, 30.0525892330174 ], [ -96.059564192265981, 30.052495232311447 ], [ -96.059608192979269, 30.052341233044725 ], [ -96.059621192768418, 30.051913232604715 ], [ -96.059501192474613, 30.051671232912216 ], [ -96.059848192270593, 30.051319232168439 ], [ -96.059918192768635, 30.051215232185005 ], [ -96.059943193073522, 30.051072231986506 ], [ -96.060006193017273, 30.050973232606125 ], [ -96.060063192279458, 30.050913232272872 ], [ -96.060202192541411, 30.050880232233876 ], [ -96.060297193027168, 30.05082523221752 ], [ -96.060303192616104, 30.050737231976097 ], [ -96.060265192273633, 30.050682232376847 ], [ -96.060101192712253, 30.050687231885711 ], [ -96.059987192193503, 30.050704232586551 ], [ -96.059886192412208, 30.050676232660752 ], [ -96.059867192439555, 30.050638232561131 ], [ -96.059823192134132, 30.050588231902825 ], [ -96.059804192405011, 30.050522232048756 ], [ -96.059874192071945, 30.050401232041231 ], [ -96.05991119292905, 30.050374232098864 ], [ -96.059924192218858, 30.050341232065946 ], [ -96.059918192800367, 30.050308232460136 ], [ -96.059899192357108, 30.050259232607328 ], [ -96.059848192821477, 30.050220231993332 ], [ -96.059785192760529, 30.050198232358216 ], [ -96.059690192643046, 30.050127231784405 ], [ -96.059665192638434, 30.050072232127395 ], [ -96.059653192835242, 30.049923232585083 ], [ -96.059665192860479, 30.049813232360833 ], [ -96.059690192006101, 30.04973623237743 ], [ -96.059722192756922, 30.049731231780569 ], [ -96.059766192453509, 30.049676231814178 ], [ -96.059728192816593, 30.049599232553742 ], [ -96.059652192572415, 30.049511232438068 ], [ -96.059545192472484, 30.049478232325356 ], [ -96.059520192309336, 30.049390232480761 ], [ -96.059539192291993, 30.049363232272487 ], [ -96.059589192429684, 30.04933523174747 ], [ -96.059716192453664, 30.049357231936145 ], [ -96.059760192466001, 30.04933523211259 ], [ -96.059773192744046, 30.049280231711975 ], [ -96.059741191929277, 30.049165232302766 ], [ -96.059747192012779, 30.04898923225845 ], [ -96.059754192918533, 30.048945232110388 ], [ -96.059823192433583, 30.048852231626245 ], [ -96.059861192545114, 30.04884623239677 ], [ -96.059905192644777, 30.048819232151878 ], [ -96.059949191977267, 30.048816232062041 ], [ -96.060190192252918, 30.048802232274074 ], [ -96.060360192256312, 30.048758231793713 ], [ -96.060442192981498, 30.048709231884487 ], [ -96.060461192777296, 30.04864823150719 ], [ -96.060430192169903, 30.048588232101114 ], [ -96.060322192169806, 30.04852223222543 ], [ -96.060278193025042, 30.048511232104129 ], [ -96.060259192456343, 30.048417231573033 ], [ -96.060259192691305, 30.048340231538251 ], [ -96.060265192701834, 30.048313232048312 ], [ -96.060379192423639, 30.048203231873956 ], [ -96.060411192872252, 30.048044231928014 ], [ -96.060411192120796, 30.047961231590222 ], [ -96.060436192849778, 30.047923231896373 ], [ -96.060461192512889, 30.047906231777958 ], [ -96.060575192888308, 30.04786823202404 ], [ -96.060619192223896, 30.047840231637238 ], [ -96.060644192997003, 30.047796231632844 ], [ -96.060670192933244, 30.047719231665827 ], [ -96.060695193082779, 30.047692231660747 ], [ -96.060752192671771, 30.047670231548736 ], [ -96.060847192623527, 30.047654231563229 ], [ -96.060878192188, 30.047632231346309 ], [ -96.06088419287488, 30.047604231945829 ], [ -96.06088519282001, 30.047549231601462 ], [ -96.060859192293776, 30.047401231707731 ], [ -96.060834192353141, 30.047346231310911 ], [ -96.060790192346431, 30.047285232045507 ], [ -96.060758192420906, 30.047186231150508 ], [ -96.060670192559414, 30.047049231405307 ], [ -96.060562192719303, 30.046988231133561 ], [ -96.060537193012735, 30.046961231356377 ], [ -96.060480192829701, 30.046857231891618 ], [ -96.060468192588402, 30.046802231463463 ], [ -96.060423192855609, 30.046697231929343 ], [ -96.060423192166368, 30.046664231748739 ], [ -96.060474192758761, 30.046615231511158 ], [ -96.060499192256898, 30.046571231491207 ], [ -96.060474192269808, 30.046351231062456 ], [ -96.060482192469337, 30.046306231146513 ], [ -96.06049919248531, 30.046214231724559 ], [ -96.060638192124586, 30.046005231597839 ], [ -96.060676192222658, 30.045895231256168 ], [ -96.06072019279631, 30.045708231171101 ], [ -96.060720192235763, 30.045642231709987 ], [ -96.060638192998056, 30.04535623146155 ], [ -96.06063219258229, 30.045274231480498 ], [ -96.060720192895616, 30.04509223114119 ], [ -96.060828193049446, 30.044982231089371 ], [ -96.061011192440219, 30.044834230761417 ], [ -96.061238192195304, 30.04459823133713 ], [ -96.061314192513137, 30.044488231464477 ], [ -96.061352192702671, 30.04436723113913 ], [ -96.061371192861614, 30.044131230666235 ], [ -96.061377192459659, 30.043806231269262 ], [ -96.061289192139043, 30.04318523119214 ], [ -96.061245192967803, 30.043059230554896 ], [ -96.061226192101785, 30.042949230710722 ], [ -96.06118219281521, 30.04280123049903 ], [ -96.061112192226815, 30.042669230366513 ], [ -96.061055192808595, 30.042592230884647 ], [ -96.061005192819167, 30.042542230955107 ], [ -96.060725192823099, 30.04235123029914 ], [ -96.060714192791309, 30.042344230488585 ], [ -96.060556192367258, 30.042256230258218 ], [ -96.060481192483437, 30.042174230776254 ], [ -96.060436192782262, 30.042020230639956 ], [ -96.060500192031938, 30.041916230640819 ], [ -96.060512191960584, 30.041811230444463 ], [ -96.06050619258184, 30.041734230756411 ], [ -96.060462192287474, 30.041646230352608 ], [ -96.060342192428294, 30.041558230751185 ], [ -96.060146192496305, 30.041328230025563 ], [ -96.060070192386135, 30.041157230120994 ], [ -96.060057192553373, 30.041069229979279 ], [ -96.059956191892582, 30.040800230031369 ], [ -96.05991819206811, 30.040597230723442 ], [ -96.059874191921608, 30.040481230219896 ], [ -96.059830192572747, 30.040245230208399 ], [ -96.059678191578797, 30.039921229745051 ], [ -96.059629191963197, 30.03975623030323 ], [ -96.0596151918527, 30.039706230484668 ], [ -96.059596192085991, 30.039497230375236 ], [ -96.059596192048716, 30.039377229923932 ], [ -96.059647191948613, 30.039041230162717 ], [ -96.059685191553854, 30.03893122984238 ], [ -96.05982419155238, 30.038717229791224 ], [ -96.059906191706347, 30.038646229708473 ], [ -96.060020191620112, 30.038596229919115 ], [ -96.060178191572135, 30.038558230256172 ], [ -96.060222192498145, 30.038525229628124 ], [ -96.06024719233956, 30.038475230180765 ], [ -96.060272192457148, 30.038327229831328 ], [ -96.060272191720486, 30.038222229617194 ], [ -96.060291191886805, 30.038041229488549 ], [ -96.060336192426902, 30.037788229619697 ], [ -96.060342192022432, 30.037656229808391 ], [ -96.060298191854415, 30.03756322968545 ], [ -96.060291191608087, 30.037519229901168 ], [ -96.060317192042135, 30.03742622958444 ], [ -96.060557192235777, 30.037250229565647 ], [ -96.0606071926222, 30.037189229302374 ], [ -96.06063919253873, 30.037101229689647 ], [ -96.060651192062565, 30.037019229689662 ], [ -96.060658192509848, 30.036848229489348 ], [ -96.060632191985817, 30.03677722926604 ], [ -96.060582192538632, 30.036717229122374 ], [ -96.06054419222977, 30.036684229699393 ], [ -96.060374191726069, 30.03657922981342 ], [ -96.060285191497073, 30.036486229835177 ], [ -96.060253192163685, 30.036436229744726 ], [ -96.060216192025976, 30.036332229458097 ], [ -96.060203192358344, 30.036249229567815 ], [ -96.060209191467806, 30.03615622936778 ], [ -96.060178192184239, 30.036085229772983 ], [ -96.060203191856516, 30.036052229493485 ], [ -96.060231191740129, 30.036031229562973 ], [ -96.060266192312483, 30.036008229556767 ], [ -96.060462192153622, 30.036002229222113 ], [ -96.060544192167768, 30.035969229428922 ], [ -96.060576192519974, 30.035914229201236 ], [ -96.060588191815469, 30.035859229164021 ], [ -96.060582192294774, 30.03579322909987 ], [ -96.060544191910836, 30.035722228958825 ], [ -96.060512191619168, 30.035700229692441 ], [ -96.060475192494309, 30.035645229067583 ], [ -96.060456192159279, 30.035573229479898 ], [ -96.060475192397675, 30.0353702295698 ], [ -96.060468192110733, 30.035304229254223 ], [ -96.060443192080527, 30.035255228770179 ], [ -96.060203191568036, 30.035068228857515 ], [ -96.060157191786814, 30.035010229157631 ], [ -96.060146191584991, 30.034996229057619 ], [ -96.060121192387072, 30.03490822881135 ], [ -96.060108192091562, 30.034689228903051 ], [ -96.060101191869038, 30.034636229053579 ], [ -96.060058191622844, 30.034287229211646 ], [ -96.060014191724136, 30.034046229162676 ], [ -96.059963191609825, 30.033837228857493 ], [ -96.059919191706541, 30.033710229118942 ], [ -96.059809191245094, 30.033546229290987 ], [ -96.059786191644477, 30.033512228499536 ], [ -96.059578191682832, 30.033243228923816 ], [ -96.059654191428663, 30.033199228529995 ], [ -96.059811191214536, 30.032952229164245 ], [ -96.059856191202883, 30.032798229108671 ], [ -96.059862191993901, 30.032562228573784 ], [ -96.059887192084801, 30.032413228996699 ], [ -96.05991319209619, 30.032287228253029 ], [ -96.05996319170201, 30.032133228325382 ], [ -96.0599251921372, 30.031880228741809 ], [ -96.059875191550972, 30.031792228200487 ], [ -96.059786191447259, 30.031704228941678 ], [ -96.059774192137738, 30.031633228796359 ], [ -96.05983119117225, 30.03122122879487 ], [ -96.059988192088667, 30.031028228336595 ], [ -96.060007191775853, 30.03097322800328 ], [ -96.06000119155857, 30.030578228568231 ], [ -96.060026191962862, 30.03052322865901 ], [ -96.060071192026413, 30.030495228670222 ], [ -96.060178191188982, 30.030479228413036 ], [ -96.060241191314987, 30.030435228466658 ], [ -96.060292192004852, 30.030385228283457 ], [ -96.060311191701317, 30.030325228392531 ], [ -96.060311191913883, 30.030298228345377 ], [ -96.060311191896872, 30.030248227847281 ], [ -96.060279191302726, 30.030176227936867 ], [ -96.060266192098993, 30.030077228530221 ], [ -96.060285191779343, 30.030017227734341 ], [ -96.060336191324396, 30.029968228311109 ], [ -96.060399191876087, 30.0298802281098 ], [ -96.060412191370219, 30.029825228202409 ], [ -96.0604121915256, 30.029720227685328 ], [ -96.060393191230801, 30.029605227616052 ], [ -96.060304191680117, 30.029347228129332 ], [ -96.060285191150399, 30.029165228264944 ], [ -96.060304191540538, 30.029033228197715 ], [ -96.060437191228118, 30.028676228003349 ], [ -96.06051919176835, 30.028511227646451 ], [ -96.060652191508694, 30.028456227480177 ], [ -96.060709191962189, 30.02840122800426 ], [ -96.060715191888946, 30.028209228201231 ], [ -96.060709191700454, 30.028143227936194 ], [ -96.060683191253673, 30.028044227477345 ], [ -96.060532191876064, 30.027593227994476 ], [ -96.060311191172701, 30.027242227574163 ], [ -96.06029919127127, 30.027230227925255 ], [ -96.06026019134309, 30.027187227185319 ], [ -96.0602161919888, 30.027154227987015 ], [ -96.060153191050631, 30.027049227950126 ], [ -96.060153191258308, 30.027000227299112 ], [ -96.06017219159439, 30.026934227962684 ], [ -96.060311192053945, 30.026736227115354 ], [ -96.060336191639195, 30.02667622756335 ], [ -96.060355191343305, 30.026472227129396 ], [ -96.060349191311673, 30.02626322712544 ], [ -96.060639191680622, 30.026044227467693 ], [ -96.060709191892755, 30.025956227659101 ], [ -96.060740191758953, 30.025890227199103 ], [ -96.060740191230352, 30.025769227170873 ], [ -96.0606961920316, 30.025609226857039 ], [ -96.060690192094683, 30.025516227336819 ], [ -96.060652191783873, 30.025455226816021 ], [ -96.060450191542884, 30.02537322697215 ], [ -96.060210191131276, 30.025291227492872 ], [ -96.059654191245031, 30.02500522740862 ], [ -96.059603191287835, 30.02496122743684 ], [ -96.059572190790931, 30.024906227568025 ], [ -96.05954019122467, 30.024713227222204 ], [ -96.059559191557369, 30.024647227015869 ], [ -96.059585191104858, 30.024604227051885 ], [ -96.059736191438134, 30.024428227253857 ], [ -96.059749191740423, 30.024285226755993 ], [ -96.059667191223852, 30.024026226948244 ], [ -96.059439191262825, 30.023785226756662 ], [ -96.059218191231423, 30.023504227038519 ], [ -96.058959191057696, 30.023367226991457 ], [ -96.058820191521392, 30.023312226464903 ], [ -96.058663191062465, 30.023290226573895 ], [ -96.058580191351496, 30.02325722672224 ], [ -96.058404190786732, 30.023175226928181 ], [ -96.058353190834779, 30.023136226846923 ], [ -96.058113190363741, 30.023015227117313 ], [ -96.057968190381388, 30.022834227223221 ], [ -96.057873191212039, 30.02269622684954 ], [ -96.057830190356214, 30.022622226346186 ], [ -96.057778191086115, 30.022531227135119 ], [ -96.057709190216869, 30.02245422698644 ], [ -96.057658191015065, 30.022416226539036 ], [ -96.057576190500995, 30.02240522687552 ], [ -96.05731119020507, 30.022477226592372 ], [ -96.057223190947738, 30.022471226620784 ], [ -96.057166190407671, 30.022432226398198 ], [ -96.057090190996533, 30.022400226300093 ], [ -96.057020190203531, 30.022389226504036 ], [ -96.056926190891033, 30.022394226535145 ], [ -96.056825190950846, 30.022422227101831 ], [ -96.056566190728802, 30.022421226529826 ], [ -96.056433190770605, 30.022432226809261 ], [ -96.056370190721267, 30.022427226958396 ], [ -96.056263190135866, 30.022405226720455 ], [ -96.056225189915068, 30.022378226996242 ], [ -96.056162190277988, 30.022268227058227 ], [ -96.056168189898557, 30.022064227076449 ], [ -96.056117190072669, 30.021894226740685 ], [ -96.056067189884814, 30.021652226185982 ], [ -96.056054189928332, 30.021526226676293 ], [ -96.056067189964622, 30.02139422613984 ], [ -96.056143189779419, 30.021262226066611 ], [ -96.056421190645253, 30.020954226167845 ], [ -96.05642818990205, 30.020938226691779 ], [ -96.056454190688285, 30.020874226563738 ], [ -96.0564811900949, 30.020810226648127 ], [ -96.056496189826234, 30.020773226628997 ], [ -96.056509189970896, 30.020696226273241 ], [ -96.056576190670967, 30.020481226118509 ], [ -96.056635190501297, 30.020295226612713 ], [ -96.056661189938694, 30.020080226145179 ], [ -96.056699190308223, 30.019965226481318 ], [ -96.056749190204528, 30.019712226450395 ], [ -96.056812190000556, 30.019553226190485 ], [ -96.056844190472034, 30.019388226069939 ], [ -96.056850189933357, 30.019289225974799 ], [ -96.056825190029699, 30.019135226115253 ], [ -96.056830190032755, 30.019075225739623 ], [ -96.056863190171057, 30.018745225907665 ], [ -96.056882189859209, 30.01864022594264 ], [ -96.056901190816035, 30.018602226060928 ], [ -96.056951190765801, 30.018415226015744 ], [ -96.057002190023752, 30.018327225962331 ], [ -96.057191190575438, 30.018195225817529 ], [ -96.05809419009303, 30.01751422574317 ], [ -96.058454190417322, 30.017206225646586 ], [ -96.058821190460804, 30.016931225848133 ], [ -96.058983190858868, 30.016797225267503 ], [ -96.059035191226002, 30.016755225831361 ], [ -96.059522190837782, 30.016261225191894 ], [ -96.059743190628495, 30.016085225628732 ], [ -96.059800190412076, 30.015931225705252 ], [ -96.059857190544349, 30.015656225279397 ], [ -96.059857190543596, 30.01559022509683 ], [ -96.059901190904881, 30.015447224795253 ], [ -96.059945190670021, 30.0153812254329 ], [ -96.06002719129485, 30.015315225537137 ], [ -96.060103191235299, 30.015266225369878 ], [ -96.060185191266569, 30.015233225008799 ], [ -96.060362191199204, 30.015079225252464 ], [ -96.060438191282117, 30.01499122491359 ], [ -96.060507190946623, 30.014870225145625 ], [ -96.060532190767901, 30.014755225060636 ], [ -96.06055119075765, 30.014431224981394 ], [ -96.060476191318486, 30.013925224664359 ], [ -96.06048819130379, 30.013892224942147 ], [ -96.060526191535715, 30.013870224509553 ], [ -96.060570190832706, 30.013864224785934 ], [ -96.060621191494647, 30.013843225291534 ], [ -96.060703191286549, 30.013755225194547 ], [ -96.060722190920472, 30.013634225180645 ], [ -96.060709191326012, 30.013535225180242 ], [ -96.060627190902039, 30.013381225058097 ], [ -96.06061419128585, 30.013260224358852 ], [ -96.060640191294027, 30.013194224414733 ], [ -96.060671190861598, 30.013145224884116 ], [ -96.060678191265723, 30.013013225060117 ], [ -96.060665191307777, 30.012980224354884 ], [ -96.060564190665005, 30.012870224957364 ], [ -96.060539191177625, 30.012732224960814 ], [ -96.06053919057706, 30.012672225055784 ], [ -96.060608191304368, 30.012458224726274 ], [ -96.060678190754473, 30.01233722411493 ], [ -96.060722191060563, 30.012287224810841 ], [ -96.060772190961728, 30.012243224437061 ], [ -96.060829191267089, 30.012227224810005 ], [ -96.060911191270321, 30.012232224143705 ], [ -96.061025191247325, 30.012298224744519 ], [ -96.061214190949443, 30.012348224807926 ], [ -96.061442190683366, 30.012348224897366 ], [ -96.061606190963673, 30.01229322424334 ], [ -96.061631191600355, 30.011771224358704 ], [ -96.061656190715183, 30.011710224416817 ], [ -96.061739190912135, 30.011611224006963 ], [ -96.061802191397334, 30.011556224318412 ], [ -96.061903191281218, 30.011501224453145 ], [ -96.061934191365822, 30.011430223951699 ], [ -96.06193419110393, 30.011358224244095 ], [ -96.061909191702895, 30.011281224275685 ], [ -96.061783191073346, 30.011100224272987 ], [ -96.061795191200162, 30.010924223997591 ], [ -96.06182119135299, 30.010803224331358 ], [ -96.061846190877276, 30.01072122446881 ], [ -96.061922191034483, 30.010572224329024 ], [ -96.061922190895771, 30.010539223738213 ], [ -96.061909191039462, 30.010501224488447 ], [ -96.061855191387437, 30.010470224092458 ], [ -96.06182119073992, 30.01045122406591 ], [ -96.061789191289975, 30.010451224545104 ], [ -96.061619191365722, 30.01050622412528 ], [ -96.061486191334794, 30.010512224140989 ], [ -96.061448191542738, 30.010501224257553 ], [ -96.061398191207431, 30.010462224343559 ], [ -96.061366191001085, 30.010424224569572 ], [ -96.061366191325959, 30.01035322384628 ], [ -96.061391191213659, 30.01026522370319 ], [ -96.061416191458548, 30.010226224500439 ], [ -96.061505191350278, 30.010160224271761 ], [ -96.061600190695586, 30.010133224393705 ], [ -96.061739190681706, 30.010061224354828 ], [ -96.061808191069503, 30.009962223623457 ], [ -96.061808191014975, 30.009852223740499 ], [ -96.06178919109577, 30.009765224061237 ], [ -96.061833191325292, 30.009583223790351 ], [ -96.061840191508523, 30.009512223624132 ], [ -96.061833191052571, 30.009446223642414 ], [ -96.061795190848997, 30.009385223880777 ], [ -96.061650191582828, 30.009303224110198 ], [ -96.061600191047674, 30.009253224338167 ], [ -96.061574190723917, 30.009215224059847 ], [ -96.061587191289718, 30.009122223572504 ], [ -96.061638190975671, 30.009072223623015 ], [ -96.061871191280773, 30.008935224054387 ], [ -96.06194119146123, 30.008907224200883 ], [ -96.062118191708862, 30.008902223871004 ], [ -96.062301191304243, 30.008896223728772 ], [ -96.062490190961796, 30.008819223824638 ], [ -96.062635191145958, 30.008704223524038 ], [ -96.062661191373905, 30.008654223488328 ], [ -96.062667191142481, 30.008588223502667 ], [ -96.062642191256401, 30.008489223778071 ], [ -96.06265419156216, 30.008429223583708 ], [ -96.062692190887731, 30.008380224084373 ], [ -96.06274919082783, 30.008358223310083 ], [ -96.062957191492515, 30.008336223469012 ], [ -96.0630331916568, 30.008303223825695 ], [ -96.063115191617172, 30.008248223738622 ], [ -96.063185191049129, 30.008149223375508 ], [ -96.063224190997104, 30.008114223572296 ], [ -96.063279191095077, 30.008066223641453 ], [ -96.063336191749954, 30.008050223896923 ], [ -96.063608191825466, 30.008044223557192 ], [ -96.063810191291893, 30.008000223199929 ], [ -96.063917191168443, 30.007945223933842 ], [ -96.063961191207824, 30.007907223370829 ], [ -96.064081191884, 30.007769223263455 ], [ -96.064157191414097, 30.007720223535415 ], [ -96.064220192176919, 30.007698223329399 ], [ -96.064296191451334, 30.007693223121887 ], [ -96.064353191372632, 30.007703223275268 ], [ -96.064479191753122, 30.007748223543402 ], [ -96.064593191898723, 30.007747223783777 ], [ -96.064675191678745, 30.00772022381571 ], [ -96.064820191800763, 30.007599223550812 ], [ -96.064871191347152, 30.007539223306807 ], [ -96.064965191681367, 30.00748422348218 ], [ -96.06516819194411, 30.007418223322802 ], [ -96.065294191691166, 30.007396223511908 ], [ -96.065471192377032, 30.007308223695052 ], [ -96.065647191572964, 30.007170223479815 ], [ -96.065774192166543, 30.007006223738113 ], [ -96.06582419226487, 30.006956222959506 ], [ -96.06588119187208, 30.006940223030966 ], [ -96.065932192143876, 30.006940223255885 ], [ -96.066020191902254, 30.006967223156323 ], [ -96.066071192187579, 30.006967223328505 ], [ -96.066153191784025, 30.006934223016426 ], [ -96.06643719256509, 30.006747223060586 ], [ -96.066519192283039, 30.006681222833485 ], [ -96.066576191801616, 30.006626223461048 ], [ -96.066607192297084, 30.006555222773059 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 506, "Tract": "48473680502", "Area_SqMi": 93.445574625323303, "total_2009": 364, "total_2010": 351, "total_2011": 324, "total_2012": 406, "total_2013": 426, "total_2014": 449, "total_2015": 365, "total_2016": 404, "total_2017": 417, "total_2018": 420, "total_2019": 428, "total_2020": 580, "age1": 104, "age2": 326, "age3": 173, "earn1": 62, "earn2": 165, "earn3": 376, "naics_s01": 16, "naics_s02": 3, "naics_s03": 0, "naics_s04": 59, "naics_s05": 81, "naics_s06": 23, "naics_s07": 109, "naics_s08": 7, "naics_s09": 0, "naics_s10": 24, "naics_s11": 5, "naics_s12": 10, "naics_s13": 0, "naics_s14": 99, "naics_s15": 0, "naics_s16": 19, "naics_s17": 4, "naics_s18": 12, "naics_s19": 132, "naics_s20": 0, "race1": 498, "race2": 51, "race3": 5, "race4": 38, "race5": 2, "race6": 9, "ethnicity1": 432, "ethnicity2": 171, "edu1": 123, "edu2": 158, "edu3": 120, "edu4": 98, "Shape_Length": 350445.71714686172, "Shape_Area": 2605102686.8546414, "total_2021": 604, "total_2022": 603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.192215230306601, 30.136669244648399 ], [ -96.192021230102227, 30.135992245053785 ], [ -96.191941230119184, 30.13571224505182 ], [ -96.191425230170722, 30.134674244459429 ], [ -96.190088229259771, 30.133823244075625 ], [ -96.189779229259429, 30.133512244714748 ], [ -96.188295228892372, 30.13201624443991 ], [ -96.187549229109607, 30.130298243590328 ], [ -96.187207228967779, 30.129463243709136 ], [ -96.187184228832692, 30.1294082436503 ], [ -96.187115228168167, 30.129236243669663 ], [ -96.187062228005317, 30.129105244011438 ], [ -96.187045228045946, 30.129064243491381 ], [ -96.187037228959582, 30.129045243534986 ], [ -96.186375227943728, 30.128152243832464 ], [ -96.186274228158524, 30.128061243049771 ], [ -96.185496227900785, 30.127374243044365 ], [ -96.184718227633283, 30.126687243548322 ], [ -96.184658227728775, 30.126634243384192 ], [ -96.184587228217666, 30.126571242874824 ], [ -96.184341227963642, 30.126415243434739 ], [ -96.182453226812342, 30.125222242824861 ], [ -96.182118226803979, 30.124915243411309 ], [ -96.180578227096689, 30.123502242984443 ], [ -96.179879226461765, 30.122997242978993 ], [ -96.179575225943907, 30.12243824248468 ], [ -96.178907226481002, 30.120948241981036 ], [ -96.178694226192974, 30.119778241971535 ], [ -96.178876226112735, 30.118448241597118 ], [ -96.179271226414059, 30.117756241295922 ], [ -96.179818226513305, 30.117357241803958 ], [ -96.180851226848802, 30.117065241151533 ], [ -96.183009227203243, 30.117091241035254 ], [ -96.18531822766036, 30.117809241601933 ], [ -96.187425227718492, 30.118599241823599 ], [ -96.18759522813437, 30.118611241139511 ], [ -96.187765227867786, 30.118624241871743 ], [ -96.189768228669294, 30.118486241196042 ], [ -96.190531229347954, 30.118019241516439 ], [ -96.191242228497245, 30.117582241459147 ], [ -96.191665228926141, 30.116692241350904 ], [ -96.191682229076036, 30.116206241066116 ], [ -96.191715228592543, 30.115240240939368 ], [ -96.191106229010487, 30.113877240042907 ], [ -96.189659228151427, 30.111795240266858 ], [ -96.188660227936552, 30.110468239926252 ], [ -96.187505228074542, 30.109643239705324 ], [ -96.186108227679085, 30.109271239398087 ], [ -96.184619227180505, 30.109138239611518 ], [ -96.183555227000653, 30.109217240147164 ], [ -96.182067226778585, 30.109723240331906 ], [ -96.179150225811753, 30.110946240162956 ], [ -96.177023225446646, 30.111744240526544 ], [ -96.175929224480825, 30.112117241070756 ], [ -96.175053224555626, 30.112440240971992 ], [ -96.1744062248532, 30.111829241005822 ], [ -96.173880224414916, 30.111327240566613 ], [ -96.172617224276692, 30.110760240833667 ], [ -96.171888223966945, 30.110148240238448 ], [ -96.171463223553602, 30.109350240680843 ], [ -96.17143222349705, 30.108100239768312 ], [ -96.172344224206356, 30.106291239189218 ], [ -96.174106224193025, 30.103817238895783 ], [ -96.174667223759357, 30.102707238552767 ], [ -96.174411223571354, 30.10212523846188 ], [ -96.173833224082131, 30.100811238646806 ], [ -96.173650223440774, 30.10004023844494 ], [ -96.172830223799963, 30.099348238573331 ], [ -96.171311223158582, 30.098896238415755 ], [ -96.169943222275322, 30.09879023817539 ], [ -96.168151222289268, 30.099003238535932 ], [ -96.166085221567755, 30.099880238226866 ], [ -96.164292221595801, 30.101157238868765 ], [ -96.162378221028177, 30.103472239767193 ], [ -96.161071220819309, 30.106823240428191 ], [ -96.160278221118091, 30.108071240798537 ], [ -96.159514220937567, 30.108118240588205 ], [ -96.159161220320186, 30.108140240291245 ], [ -96.157668219627737, 30.108552240474186 ], [ -96.155906219464029, 30.108659240789386 ], [ -96.15499521932108, 30.108526240681492 ], [ -96.153992218759825, 30.107994240404171 ], [ -96.153354218595155, 30.107222240681903 ], [ -96.152868218263748, 30.105839240427898 ], [ -96.152503218523506, 30.104216240081023 ], [ -96.152564218277107, 30.102540239261025 ], [ -96.153415218633612, 30.101370239152587 ], [ -96.155452219569128, 30.099509238394056 ], [ -96.156180219392894, 30.098843238821988 ], [ -96.157668219325174, 30.098311238510099 ], [ -96.158367220204411, 30.097726237927475 ], [ -96.159005220158207, 30.097034238205516 ], [ -96.159400219823283, 30.095731238334228 ], [ -96.159248220013751, 30.094108237959777 ], [ -96.158428219969565, 30.091714237158435 ], [ -96.157000218543956, 30.089852237005264 ], [ -96.156297218862477, 30.089105236804901 ], [ -96.156149218830564, 30.08894723672087 ], [ -96.155333218966391, 30.087796236468883 ], [ -96.154357218271173, 30.086527236505379 ], [ -96.153445218146885, 30.085755235725767 ], [ -96.152078217076905, 30.085037236099851 ], [ -96.150467217288679, 30.084718236357205 ], [ -96.148158216670765, 30.084904235996081 ], [ -96.147615216410259, 30.084952236466901 ], [ -96.146366216052698, 30.085064236315691 ], [ -96.145333216309581, 30.085250236334016 ], [ -96.144543215711948, 30.085117236010181 ], [ -96.143509215384285, 30.084984236231151 ], [ -96.142902215525609, 30.084638236399456 ], [ -96.142294214670045, 30.084239235859577 ], [ -96.141656214632988, 30.083202236005754 ], [ -96.141200214512381, 30.081180235517838 ], [ -96.141322214063734, 30.078812234740084 ], [ -96.140927214441973, 30.076844235163517 ], [ -96.140532214217657, 30.076232234844237 ], [ -96.139681213695766, 30.075567234655232 ], [ -96.137038213476615, 30.074317234724624 ], [ -96.136963213038214, 30.074269234754262 ], [ -96.135386212366669, 30.07324723418489 ], [ -96.135219212246653, 30.072912234083457 ], [ -96.13491121271359, 30.072295234354975 ], [ -96.133787211967899, 30.070965233604685 ], [ -96.133574211887861, 30.068970233297538 ], [ -96.134090212249518, 30.068092233152811 ], [ -96.134668212406098, 30.067534232834753 ], [ -96.135579212030592, 30.067161232880895 ], [ -96.13700721302051, 30.067002232503281 ], [ -96.137159212606107, 30.067138233276776 ], [ -96.140606213539314, 30.069260232905805 ], [ -96.142865215042036, 30.070947233301101 ], [ -96.143527215145127, 30.071758233596789 ], [ -96.144810214851248, 30.073330234178545 ], [ -96.146301215160975, 30.074951233895149 ], [ -96.147359216253946, 30.075705234180901 ], [ -96.147499216141483, 30.075804234277989 ], [ -96.147638216070717, 30.075903234662114 ], [ -96.147832215683991, 30.076042234065827 ], [ -96.149136216017126, 30.076637234597474 ], [ -96.149214215939438, 30.076639234190772 ], [ -96.150444216952806, 30.076667234041789 ], [ -96.151254217451424, 30.076401234022324 ], [ -96.151681217374758, 30.075770233826908 ], [ -96.151885217181587, 30.07516623405812 ], [ -96.151727216822735, 30.074643233568498 ], [ -96.151312216805749, 30.073450233593359 ], [ -96.15052221656822, 30.072206233488195 ], [ -96.150012215947541, 30.071731233414909 ], [ -96.149181216431145, 30.071430233631261 ], [ -96.148852216322737, 30.071327233097655 ], [ -96.147929216050102, 30.071158233017307 ], [ -96.14656121567198, 30.07060823335453 ], [ -96.146059214897491, 30.070229232962731 ], [ -96.145933215230968, 30.070185233110148 ], [ -96.145800215734099, 30.070118232826076 ], [ -96.145503215396076, 30.069926233624706 ], [ -96.145320215164332, 30.069723233039245 ], [ -96.145257215598079, 30.069613233462995 ], [ -96.145188215311251, 30.069376233123698 ], [ -96.145125215497302, 30.069063232914257 ], [ -96.145087215149729, 30.068953232594726 ], [ -96.144973214723606, 30.068794232698046 ], [ -96.144733215000656, 30.068530233274917 ], [ -96.144373214435021, 30.068161232862071 ], [ -96.144291214804383, 30.068057232617342 ], [ -96.144209215169283, 30.067832232705406 ], [ -96.144161214626649, 30.067511232906227 ], [ -96.144132214512325, 30.067317233085291 ], [ -96.144151214662628, 30.06689423226792 ], [ -96.144997215372143, 30.066647232157997 ], [ -96.145600215086091, 30.066176232791317 ], [ -96.146269215420688, 30.065805231916343 ], [ -96.146628215291713, 30.065148232034243 ], [ -96.146448215311381, 30.064491232139282 ], [ -96.145649215241136, 30.063492232011061 ], [ -96.144785215054597, 30.062706231687905 ], [ -96.144527214494431, 30.062225231956639 ], [ -96.144122214885428, 30.061471231486248 ], [ -96.143533214613072, 30.061180231213378 ], [ -96.142298214165692, 30.059990231276359 ], [ -96.140636213092307, 30.058230231203698 ], [ -96.138956213137007, 30.056944230718475 ], [ -96.137007212695309, 30.056088231120047 ], [ -96.135620212180541, 30.055654230268321 ], [ -96.134696211841216, 30.055361230821216 ], [ -96.133800211218428, 30.055158230614495 ], [ -96.129925210318916, 30.054278230491498 ], [ -96.129087210081479, 30.0540202306961 ], [ -96.12675520959057, 30.053305230411056 ], [ -96.125971209549661, 30.05287323008595 ], [ -96.125239209436145, 30.052535230327234 ], [ -96.125139209715968, 30.052622230574272 ], [ -96.121840207983183, 30.050881229898696 ], [ -96.120814208027753, 30.050719230512868 ], [ -96.120344208127136, 30.050645230546184 ], [ -96.119749207264633, 30.050620230074859 ], [ -96.117935206924088, 30.050305230283779 ], [ -96.117221207116984, 30.050131230091285 ], [ -96.117144207184495, 30.050100230016266 ], [ -96.116830207031072, 30.049976230493264 ], [ -96.116540207315595, 30.049863230340172 ], [ -96.116439206401267, 30.049823230379413 ], [ -96.116410207239255, 30.049811230496054 ], [ -96.115937206351148, 30.049625230470124 ], [ -96.115364206642951, 30.049261230401822 ], [ -96.11467820608496, 30.048813230244331 ], [ -96.112057205209652, 30.046263229323266 ], [ -96.111152205055404, 30.044879228992283 ], [ -96.110709205298534, 30.044202229170274 ], [ -96.110423204757197, 30.043768229362986 ], [ -96.110398205567478, 30.043730229531679 ], [ -96.109562205246448, 30.044391229284969 ], [ -96.108965204355272, 30.044857229213875 ], [ -96.108343204344465, 30.045406229671183 ], [ -96.107696204398238, 30.046089229872688 ], [ -96.107196204521813, 30.046712229495487 ], [ -96.10680620432197, 30.047432229668019 ], [ -96.106660204239475, 30.048054229859606 ], [ -96.106527204502314, 30.048613229933736 ], [ -96.106354204036307, 30.050057230397204 ], [ -96.106057204445278, 30.052911230930434 ], [ -96.106033204535564, 30.053626230979336 ], [ -96.106029204858018, 30.05365823137144 ], [ -96.105871204776818, 30.055209231552791 ], [ -96.105774204943657, 30.055784231377867 ], [ -96.105771204393349, 30.055799231786967 ], [ -96.105742204512111, 30.055883231886696 ], [ -96.105588204734659, 30.056348231699488 ], [ -96.105485203910646, 30.056585231936666 ], [ -96.105305203985878, 30.056999232452505 ], [ -96.105143203975047, 30.057375232280744 ], [ -96.104899203866637, 30.057758231874626 ], [ -96.10470720447077, 30.05808923192323 ], [ -96.104644204132398, 30.058178232459856 ], [ -96.104397204429901, 30.058531232309864 ], [ -96.10438320460247, 30.058547232048333 ], [ -96.10405220397449, 30.058914232086455 ], [ -96.103725203996163, 30.059295232833637 ], [ -96.103132203673198, 30.060003232712617 ], [ -96.102845203837731, 30.060314232614473 ], [ -96.102377203865103, 30.06082223246716 ], [ -96.102230203756378, 30.060988233049457 ], [ -96.100351203514236, 30.063108233179822 ], [ -96.099768202791694, 30.063715233861434 ], [ -96.098350203496764, 30.065346234373134 ], [ -96.097897202474527, 30.065855233669961 ], [ -96.097735203216644, 30.066037233900005 ], [ -96.097572202721381, 30.066220233855692 ], [ -96.097420203009676, 30.066354234254351 ], [ -96.096644202574566, 30.06727023405044 ], [ -96.095912202639511, 30.06809323449464 ], [ -96.095286202158263, 30.06877323467371 ], [ -96.094581202311858, 30.069583235290622 ], [ -96.094014201963546, 30.070206235519699 ], [ -96.093586201562644, 30.070659235040704 ], [ -96.093056202432962, 30.071194235027903 ], [ -96.092406201672844, 30.071832235839889 ], [ -96.091412201421193, 30.072837235339243 ], [ -96.090668201336484, 30.073563235531687 ], [ -96.089951201537161, 30.074263236273108 ], [ -96.089888201401351, 30.074327236489992 ], [ -96.088700201371211, 30.07554823626278 ], [ -96.087583200688712, 30.076653236429742 ], [ -96.086808200823953, 30.07742123723396 ], [ -96.086682200849779, 30.077549236522351 ], [ -96.086403200403424, 30.077836236919893 ], [ -96.086306200231292, 30.077935237063123 ], [ -96.086182200273115, 30.078065236573686 ], [ -96.086148200048143, 30.078099237327706 ], [ -96.086048200223061, 30.078202236760493 ], [ -96.086015200562684, 30.078237237387899 ], [ -96.085994200466203, 30.078258237192621 ], [ -96.085931200899722, 30.078323237262062 ], [ -96.08591120038642, 30.078345236940251 ], [ -96.085776200622178, 30.078480237089838 ], [ -96.085623199984241, 30.078636236892343 ], [ -96.085366200051169, 30.078880237206295 ], [ -96.085229200654098, 30.079013237019797 ], [ -96.085175200150175, 30.079064236815146 ], [ -96.085055200055265, 30.079185237377384 ], [ -96.084512200349792, 30.079744237659238 ], [ -96.084131200221364, 30.080121237636391 ], [ -96.083995199809152, 30.080317237548911 ], [ -96.083839200103327, 30.08052023764607 ], [ -96.083623199641707, 30.080845237788534 ], [ -96.08354420008007, 30.080986237751535 ], [ -96.083417199974619, 30.081210237566619 ], [ -96.083071200218527, 30.081986237484017 ], [ -96.083039199472111, 30.082060238032945 ], [ -96.082944199607297, 30.082418237490998 ], [ -96.082869199859189, 30.082776237628416 ], [ -96.082833199701795, 30.082938238001734 ], [ -96.082782199668017, 30.083691238231555 ], [ -96.08277319950065, 30.083871238286328 ], [ -96.082747200159176, 30.08441123844171 ], [ -96.082739199514634, 30.08459223835332 ], [ -96.0827301999296, 30.084774238112679 ], [ -96.08270519989712, 30.085321238145916 ], [ -96.082698200143199, 30.085504238709337 ], [ -96.082691199952379, 30.085683238843338 ], [ -96.082684200431174, 30.085861238201268 ], [ -96.082673199728362, 30.086139238509354 ], [ -96.082668200220013, 30.086233238403274 ], [ -96.082661200336787, 30.086416238901251 ], [ -96.082653200350663, 30.08659423906288 ], [ -96.082631199937239, 30.087131239172621 ], [ -96.082625199859564, 30.087310239239336 ], [ -96.082619200381089, 30.087411239084386 ], [ -96.082603200534678, 30.087717239173912 ], [ -96.082599200000161, 30.087819238935342 ], [ -96.082594200469956, 30.087902239237103 ], [ -96.08258120048481, 30.088151239273511 ], [ -96.082577199569229, 30.088235239449826 ], [ -96.082566200540597, 30.088425238795669 ], [ -96.08253519970161, 30.088995239456214 ], [ -96.082526200539562, 30.08918623960146 ], [ -96.082516199841393, 30.089371239507908 ], [ -96.082487199971652, 30.089926239237403 ], [ -96.082478199841177, 30.090112239921272 ], [ -96.082470199709647, 30.090297239855218 ], [ -96.082447200617239, 30.090855239271082 ], [ -96.082440200053966, 30.091041239960717 ], [ -96.082432200354319, 30.091219239817445 ], [ -96.082410200492902, 30.091755240030281 ], [ -96.082404199753469, 30.091934239770993 ], [ -96.082392200622309, 30.092124239709577 ], [ -96.082358200308633, 30.092696240109351 ], [ -96.082347200727796, 30.09288723989664 ], [ -96.082339200113822, 30.093072240528286 ], [ -96.082314199875739, 30.093630240154678 ], [ -96.082307199915292, 30.093816240662328 ], [ -96.082299200161032, 30.093998240725718 ], [ -96.082277199845279, 30.094545240772021 ], [ -96.082270200760604, 30.094728240713287 ], [ -96.08226220025206, 30.094914240188722 ], [ -96.082239200323841, 30.095473240289103 ], [ -96.082232200463594, 30.095660240541807 ], [ -96.082223200760495, 30.095847240703044 ], [ -96.082199200002947, 30.096409241066144 ], [ -96.082192200368453, 30.096597241129647 ], [ -96.082182200072623, 30.096784241170518 ], [ -96.082154200211406, 30.097346241189076 ], [ -96.082146199985601, 30.097534241131907 ], [ -96.081913200286451, 30.0975262414192 ], [ -96.081216200195243, 30.097505241349623 ], [ -96.080984200367908, 30.097498240844129 ], [ -96.080825199819429, 30.097491240949505 ], [ -96.08034919975951, 30.09747324074295 ], [ -96.080191200055012, 30.097467240944397 ], [ -96.080095199556908, 30.097463241486256 ], [ -96.079808199283235, 30.097453240724615 ], [ -96.079713199595687, 30.097450240941651 ], [ -96.079701199651623, 30.097636240854541 ], [ -96.079679199727948, 30.097984241118478 ], [ -96.079665200208169, 30.09819624116794 ], [ -96.079653199389981, 30.0983832408801 ], [ -96.07964520004613, 30.098563241744746 ], [ -96.079639200079228, 30.098726241270395 ], [ -96.079622199946996, 30.099105241315598 ], [ -96.079615200279591, 30.099286241152555 ], [ -96.079605200079016, 30.100043241682432 ], [ -96.079603199872238, 30.100228241225896 ], [ -96.079598199550702, 30.100696242030313 ], [ -96.079694200308438, 30.101177241630282 ], [ -96.079808200429554, 30.101495241482201 ], [ -96.079957199950087, 30.101909241558886 ], [ -96.080071199871981, 30.102240242081393 ], [ -96.080318200138379, 30.102957241960798 ], [ -96.080805200447017, 30.104269242472206 ], [ -96.08128220061252, 30.105554242458783 ], [ -96.081671200975265, 30.106556242698723 ], [ -96.081973201232387, 30.107428243211945 ], [ -96.082072200520287, 30.107921243398501 ], [ -96.082062200742016, 30.108252243461074 ], [ -96.08205320102843, 30.108550243380122 ], [ -96.081968201091357, 30.109128243737949 ], [ -96.081852201265662, 30.109633243349144 ], [ -96.081776201349356, 30.109946243786073 ], [ -96.081552200796978, 30.11088724365618 ], [ -96.08147820053297, 30.111201243756948 ], [ -96.081292200512166, 30.112072243918593 ], [ -96.081047201339871, 30.113231243851665 ], [ -96.080738200633803, 30.114689244771647 ], [ -96.080617200688593, 30.115260244193848 ], [ -96.080585200663108, 30.115411244849533 ], [ -96.080553201258056, 30.115561244736629 ], [ -96.080414200955673, 30.115525244496432 ], [ -96.080000200361155, 30.115420244465565 ], [ -96.079862200344365, 30.115385244471803 ], [ -96.078986200769137, 30.115176244767834 ], [ -96.078895200836513, 30.115155244734719 ], [ -96.078195199791281, 30.115005244347788 ], [ -96.077446200363696, 30.114851244520789 ], [ -96.076632199499727, 30.11470424434534 ], [ -96.076348199702323, 30.114651244208861 ], [ -96.076076199393, 30.114602244813604 ], [ -96.07539119959317, 30.114516244925049 ], [ -96.075333199333244, 30.114509244365848 ], [ -96.075252199097832, 30.114490244245701 ], [ -96.073695198708464, 30.114239245096574 ], [ -96.072798199148551, 30.114149244381657 ], [ -96.07252619922275, 30.114122244751581 ], [ -96.072155198952331, 30.114086244647734 ], [ -96.071852198061407, 30.114063245041308 ], [ -96.071123197932465, 30.113990244467473 ], [ -96.07090619819158, 30.113972245112247 ], [ -96.070715197928919, 30.113963244686172 ], [ -96.070494198152772, 30.113950244414603 ], [ -96.07038219836123, 30.11393724481481 ], [ -96.069581198254198, 30.113849245037965 ], [ -96.069278198253741, 30.113816244549756 ], [ -96.066407197545757, 30.113513244661771 ], [ -96.065994196730486, 30.113473244934173 ], [ -96.064899196676734, 30.113368244815117 ], [ -96.06489919665637, 30.113286244693811 ], [ -96.064918196557258, 30.113258245181598 ], [ -96.064931197063586, 30.113154244680505 ], [ -96.064924196821906, 30.113044244334304 ], [ -96.064921196297959, 30.113029244880284 ], [ -96.064906196293904, 30.112940244978674 ], [ -96.064931196455959, 30.112813244935776 ], [ -96.064874196310058, 30.11259324429281 ], [ -96.064817196467459, 30.112516244838918 ], [ -96.064644196488445, 30.11240224427009 ], [ -96.064608196686677, 30.112379244825132 ], [ -96.064381196977706, 30.112269244215373 ], [ -96.064109196722711, 30.112203244181526 ], [ -96.064052196396744, 30.112176244183328 ], [ -96.063989196787972, 30.112121244971529 ], [ -96.063926196336169, 30.112055244430621 ], [ -96.063875196759994, 30.111983244936223 ], [ -96.063844196678417, 30.111917244501765 ], [ -96.063825196478646, 30.111857244464879 ], [ -96.063818196694399, 30.111621244088226 ], [ -96.063799196732205, 30.111533244065214 ], [ -96.063743196100191, 30.111423244015882 ], [ -96.063629195886961, 30.1113072444663 ], [ -96.063256195887249, 30.111087244755517 ], [ -96.062940196435662, 30.110977244593659 ], [ -96.062864195590024, 30.110939244734944 ], [ -96.062706196319382, 30.110780244632053 ], [ -96.062655196376667, 30.110703244341639 ], [ -96.062548195517181, 30.110466244431354 ], [ -96.062529195541103, 30.110395244675786 ], [ -96.062535195855318, 30.110345244112146 ], [ -96.062561196386881, 30.110296244396167 ], [ -96.062579195963608, 30.110275244086576 ], [ -96.062655195577335, 30.110192244359382 ], [ -96.062719195838611, 30.110142244474517 ], [ -96.062826196145394, 30.10997224439414 ], [ -96.0630471965449, 30.109801244217408 ], [ -96.063155196510536, 30.10962524391589 ], [ -96.063300196129731, 30.109466244332122 ], [ -96.063389195999022, 30.109373244195055 ], [ -96.063452196566018, 30.109268243652998 ], [ -96.063471196373101, 30.109153243770479 ], [ -96.063465196658541, 30.10910924386053 ], [ -96.063446195726172, 30.109076243809302 ], [ -96.063395196379687, 30.109054243901813 ], [ -96.063326195960386, 30.109054244226808 ], [ -96.063281196274588, 30.10907024406238 ], [ -96.063224195707008, 30.109114244429708 ], [ -96.063155195782599, 30.109153244176088 ], [ -96.063085196273121, 30.109180244357017 ], [ -96.062990196494255, 30.109197243967078 ], [ -96.062959195816973, 30.109180244133555 ], [ -96.062832196233344, 30.109054243577383 ], [ -96.06275019560259, 30.109004244046375 ], [ -96.062643195535884, 30.108960243628701 ], [ -96.06256119556484, 30.10894424413873 ], [ -96.062333195497587, 30.108927243829047 ], [ -96.062112195979537, 30.108889244442711 ], [ -96.062023196015758, 30.108922244243335 ], [ -96.061947195365505, 30.108938244093949 ], [ -96.061872196029753, 30.108933244105749 ], [ -96.061720196033207, 30.108889244342212 ], [ -96.061663195273084, 30.108883244151368 ], [ -96.061600195216002, 30.108883243839305 ], [ -96.061347196027924, 30.10892724370818 ], [ -96.061037195505193, 30.108922243631152 ], [ -96.060993195630132, 30.108949244198854 ], [ -96.06094919509458, 30.108999243597591 ], [ -96.060873195154031, 30.10918024428879 ], [ -96.060841195230921, 30.109197243935519 ], [ -96.060715195523144, 30.109147244420871 ], [ -96.060652195730682, 30.109136244180277 ], [ -96.060544195665884, 30.109098243819254 ], [ -96.060481195821652, 30.109037244480721 ], [ -96.060475195573474, 30.10893824421283 ], [ -96.060506195308022, 30.108740244134658 ], [ -96.060500195703526, 30.108702244194692 ], [ -96.06047519526409, 30.108674243674578 ], [ -96.060393195158866, 30.108625244355864 ], [ -96.060216194900249, 30.108647243852143 ], [ -96.05994419554726, 30.108751244023669 ], [ -96.059912195074773, 30.108757243943408 ], [ -96.059792195719453, 30.10893824413462 ], [ -96.059760195665703, 30.108955244427591 ], [ -96.059703194806815, 30.10901524399296 ], [ -96.059615194809837, 30.109043243964312 ], [ -96.059520194718516, 30.109054243699088 ], [ -96.059444195252269, 30.109037243679989 ], [ -96.059223195068213, 30.108927244196053 ], [ -96.058869195306684, 30.108784243924578 ], [ -96.058585194599686, 30.108685243930363 ], [ -96.058439194495008, 30.108674243809606 ], [ -96.058332194502199, 30.10871324377749 ], [ -96.058313195179153, 30.108762244279365 ], [ -96.058325194620167, 30.1088612441688 ], [ -96.058389195387008, 30.108977244092486 ], [ -96.058401195177893, 30.109037244433935 ], [ -96.058389195009013, 30.109081244358595 ], [ -96.058313195318036, 30.109152244200573 ], [ -96.058123194363802, 30.109290244108529 ], [ -96.05805419466418, 30.10932324385611 ], [ -96.057984194321691, 30.109339244602609 ], [ -96.057851194572279, 30.109389244344062 ], [ -96.057813194947443, 30.109433243943855 ], [ -96.057794194646092, 30.109477244081209 ], [ -96.057687194250903, 30.109548243969023 ], [ -96.057497194943124, 30.109537243999267 ], [ -96.057339194685454, 30.109504244657028 ], [ -96.057086194425437, 30.109488244197273 ], [ -96.056878195009062, 30.109520244650742 ], [ -96.056857194235022, 30.109527244401647 ], [ -96.056574193940037, 30.109630244489008 ], [ -96.056499194867058, 30.10966924403586 ], [ -96.056359194590996, 30.109773244657166 ], [ -96.056075194340721, 30.109713244381254 ], [ -96.05580319426592, 30.10962524446014 ], [ -96.055550194450603, 30.109520244314659 ], [ -96.055380194565714, 30.109394244424067 ], [ -96.055247194153722, 30.109158244522405 ], [ -96.055133193546467, 30.108998243876712 ], [ -96.055108193713238, 30.10894024434349 ], [ -96.055095193963822, 30.108910244133785 ], [ -96.055076194298792, 30.108795244232951 ], [ -96.055070194317835, 30.1084652439792 ], [ -96.055064194492331, 30.108425243996173 ], [ -96.055057194408391, 30.108377243876312 ], [ -96.055020193598551, 30.108289244297833 ], [ -96.054956193845953, 30.108273244460868 ], [ -96.054824194253825, 30.108218243925368 ], [ -96.054678193889572, 30.108124243864179 ], [ -96.054596193584828, 30.108014244119339 ], [ -96.054400193768359, 30.107833244343052 ], [ -96.0543751933576, 30.10777224409545 ], [ -96.054331193812544, 30.107734244414235 ], [ -96.05429319409663, 30.107679243821327 ], [ -96.054293193505572, 30.107624244427086 ], [ -96.054312193721699, 30.107553243617147 ], [ -96.054369193701589, 30.10744324441194 ], [ -96.054481193826646, 30.107300243857861 ], [ -96.054565194147756, 30.107195244229921 ], [ -96.05463419407856, 30.10708624409914 ], [ -96.054634193767384, 30.107036244072752 ], [ -96.054603193969726, 30.106948243993823 ], [ -96.054584193541601, 30.106849243690352 ], [ -96.054583194090952, 30.106838243940295 ], [ -96.054577193870728, 30.106767244186315 ], [ -96.054590194021216, 30.106701243933735 ], [ -96.054615194293902, 30.10665724384004 ], [ -96.054647193540148, 30.106629243411586 ], [ -96.054684193825295, 30.106606243585997 ], [ -96.054773193410981, 30.10655224401771 ], [ -96.054824193649438, 30.106503243600201 ], [ -96.054856193413585, 30.106448243822395 ], [ -96.054862194207885, 30.106410243753512 ], [ -96.054622193965216, 30.105959243905527 ], [ -96.054614193411581, 30.10591924335273 ], [ -96.054596193756524, 30.105821244045366 ], [ -96.054599193305108, 30.105646243254409 ], [ -96.054603193825827, 30.105453243168132 ], [ -96.054584193605763, 30.105178243190206 ], [ -96.054603193966457, 30.105093243139724 ], [ -96.054628193386918, 30.104986243671785 ], [ -96.054654194059964, 30.104667243006244 ], [ -96.054622193347697, 30.104590243001557 ], [ -96.054540194195965, 30.104519243575652 ], [ -96.054388193526009, 30.104453243385088 ], [ -96.054312193860369, 30.104409243708776 ], [ -96.054173193823701, 30.104255243025772 ], [ -96.054091193365267, 30.104211243517661 ], [ -96.0540031936644, 30.104200243780245 ], [ -96.05365519385677, 30.104206243515097 ], [ -96.053604193683853, 30.104196243655124 ], [ -96.053560193234844, 30.104189243356132 ], [ -96.053257193151211, 30.104008243287847 ], [ -96.053213193131029, 30.103964242974495 ], [ -96.053168192799333, 30.103881243625551 ], [ -96.053157192853263, 30.103971243158544 ], [ -96.053149192924607, 30.104041243236018 ], [ -96.053137192908295, 30.104068243128587 ], [ -96.053010192790993, 30.104167243438063 ], [ -96.053001192946397, 30.104176243624256 ], [ -96.052938193207254, 30.104242243616643 ], [ -96.052909192962488, 30.104288243068769 ], [ -96.052890193670706, 30.104348243363532 ], [ -96.052890192758994, 30.104436243213168 ], [ -96.052960193475514, 30.104645243285091 ], [ -96.052970192788138, 30.104735243638725 ], [ -96.052979193618327, 30.104810243830986 ], [ -96.052960192877322, 30.104865243814238 ], [ -96.052808193707605, 30.105090243472585 ], [ -96.052757193360762, 30.105200243664171 ], [ -96.05264319368446, 30.105590244030406 ], [ -96.052498192939041, 30.105931244123305 ], [ -96.052447192918933, 30.106118243577111 ], [ -96.052436193593792, 30.106169243374339 ], [ -96.052409192747007, 30.106310243952169 ], [ -96.05240319366446, 30.106464243884524 ], [ -96.052321193035596, 30.106667244001809 ], [ -96.052277193090788, 30.106777244002647 ], [ -96.052245192774407, 30.107036243772686 ], [ -96.052264193382413, 30.107140243825143 ], [ -96.052302192862811, 30.107195244123549 ], [ -96.052491193420877, 30.107256244137467 ], [ -96.052567193680815, 30.107289244354511 ], [ -96.052618192986699, 30.107355243827385 ], [ -96.052630192893446, 30.107453243637298 ], [ -96.052618193335064, 30.107629243690681 ], [ -96.052643193493452, 30.107717244500492 ], [ -96.052788193018856, 30.107855243733795 ], [ -96.052858193164056, 30.107954243838915 ], [ -96.052972193270278, 30.108157243859608 ], [ -96.053003193664708, 30.108239244163034 ], [ -96.053022193298048, 30.108316243811487 ], [ -96.053035193978914, 30.108481244382769 ], [ -96.053028193423941, 30.108569244115458 ], [ -96.052984193160853, 30.108789243910643 ], [ -96.05297119315567, 30.108932244188114 ], [ -96.052971193805476, 30.109069244039642 ], [ -96.052984193715588, 30.109152244087682 ], [ -96.053022193177497, 30.109262244379476 ], [ -96.053060193184393, 30.109322244673709 ], [ -96.053249193923136, 30.109547244378351 ], [ -96.053281193764363, 30.109674244515304 ], [ -96.053294193125424, 30.109800244460608 ], [ -96.053237193770912, 30.110048244633255 ], [ -96.053180194076091, 30.110212244584829 ], [ -96.053180193189988, 30.110311244638659 ], [ -96.053192193281234, 30.110372244454759 ], [ -96.053275194121468, 30.110449244889242 ], [ -96.053420193181665, 30.110493244292872 ], [ -96.053515193527417, 30.110498244996652 ], [ -96.053572193493707, 30.110487244452752 ], [ -96.053642193363302, 30.110498244340651 ], [ -96.053677193257371, 30.110516244486302 ], [ -96.053711193854483, 30.110550245061805 ], [ -96.053730193943508, 30.110569244683806 ], [ -96.053749194044173, 30.110601244455282 ], [ -96.053772194109513, 30.110668244378807 ], [ -96.053796193625104, 30.110695244205779 ], [ -96.053837194250789, 30.110691245004674 ], [ -96.053900193617395, 30.110718244576091 ], [ -96.053970193935072, 30.110707244389516 ], [ -96.054010193713566, 30.110687244197731 ], [ -96.054027193642341, 30.110680244779683 ], [ -96.054058193542417, 30.110625244998214 ], [ -96.054103194034369, 30.110592244976623 ], [ -96.05416619350278, 30.110608244923494 ], [ -96.054248194049833, 30.110641244662418 ], [ -96.054311194415618, 30.110691244744235 ], [ -96.054330194022057, 30.110751244461888 ], [ -96.054324193621326, 30.110823244644369 ], [ -96.054273193468461, 30.111010244413059 ], [ -96.054187194417125, 30.111197244596024 ], [ -96.054052194045411, 30.111493244866953 ], [ -96.05403019374242, 30.111545244525065 ], [ -96.054023193895304, 30.11155924462247 ], [ -96.054001193586899, 30.11159924490347 ], [ -96.053999193990265, 30.111618244701035 ], [ -96.053913194348993, 30.111823245083833 ], [ -96.053805193453172, 30.112037245074504 ], [ -96.053729193534139, 30.112251244847499 ], [ -96.053710194191822, 30.112310245221536 ], [ -96.053666193399096, 30.112460244836889 ], [ -96.053565193503687, 30.112873245282959 ], [ -96.053590194194044, 30.113125245459315 ], [ -96.053577193648536, 30.113389245370659 ], [ -96.05355219334605, 30.113433245201826 ], [ -96.05350119428681, 30.113483244992405 ], [ -96.053419193663203, 30.11354324559051 ], [ -96.05341319340495, 30.113587245655676 ], [ -96.0534451943645, 30.113669245001354 ], [ -96.053470194148389, 30.113697244969924 ], [ -96.053735193738078, 30.113785245718002 ], [ -96.053982193581888, 30.113878245362695 ], [ -96.054266194330268, 30.114027245521378 ], [ -96.054361194303056, 30.114109245562915 ], [ -96.054424194397143, 30.114214245612661 ], [ -96.054532194645873, 30.114499245111691 ], [ -96.05458919448246, 30.114802245146215 ], [ -96.054652193883996, 30.114857245163595 ], [ -96.054759193906463, 30.114868245204146 ], [ -96.054797194020566, 30.114895245459341 ], [ -96.05486019452492, 30.114983245650606 ], [ -96.054873194229799, 30.115016245408441 ], [ -96.054867194454332, 30.115082245378741 ], [ -96.054886194131299, 30.115153245275927 ], [ -96.054936194741188, 30.115170245154896 ], [ -96.054974194045357, 30.115164245086344 ], [ -96.055075194382837, 30.115115245773922 ], [ -96.055113194240135, 30.11508224555666 ], [ -96.055158194835826, 30.114967245869426 ], [ -96.055195193996013, 30.114934245375707 ], [ -96.055309194765144, 30.114906245375284 ], [ -96.055366194455786, 30.114912245448192 ], [ -96.055467194055012, 30.114945245164467 ], [ -96.055499194791537, 30.114972245620105 ], [ -96.055669194191637, 30.115280245696447 ], [ -96.055777194166836, 30.115434245590162 ], [ -96.05592919471006, 30.115533245590811 ], [ -96.056023194559415, 30.115533245714914 ], [ -96.056106194581048, 30.115511245186479 ], [ -96.056156194485141, 30.115478245649115 ], [ -96.056207195083616, 30.115406245073682 ], [ -96.056302194428028, 30.115308245284471 ], [ -96.056371194634664, 30.115275245519765 ], [ -96.056460194768349, 30.115280245362552 ], [ -96.056554194968697, 30.115324245744524 ], [ -96.056599194462819, 30.115385245351337 ], [ -96.056637194682224, 30.115588245711717 ], [ -96.056706195261583, 30.115747245241959 ], [ -96.056712194857255, 30.115813245244347 ], [ -96.056763194974195, 30.115984245401187 ], [ -96.056814194894926, 30.116039245249798 ], [ -96.056877194452241, 30.116050245363866 ], [ -96.057022194853317, 30.116050245425271 ], [ -96.057155194530239, 30.116083245570096 ], [ -96.057218194555205, 30.1161702455775 ], [ -96.057250195313387, 30.116253245520788 ], [ -96.057243195085547, 30.116335245926521 ], [ -96.057123194902772, 30.116566246000339 ], [ -96.057117194849056, 30.116654245837726 ], [ -96.057174195248834, 30.117248246099724 ], [ -96.057174194898252, 30.117363245525784 ], [ -96.057155194720849, 30.11745124605217 ], [ -96.057054195387821, 30.117704245564237 ], [ -96.057003194737334, 30.117808245836667 ], [ -96.056940194569705, 30.117885246035279 ], [ -96.056927195001123, 30.117946245989536 ], [ -96.056933194853102, 30.117984245974856 ], [ -96.056807194475837, 30.118226246498601 ], [ -96.056718194415737, 30.118264245839566 ], [ -96.056655194691743, 30.118264246053254 ], [ -96.056491194870659, 30.118231245672984 ], [ -96.056358195029631, 30.118231246055331 ], [ -96.056244194436289, 30.118303245750639 ], [ -96.056232195221412, 30.118336245924446 ], [ -96.056238194767644, 30.118413246250583 ], [ -96.056295194497707, 30.118479246156003 ], [ -96.056510195234139, 30.118611246329557 ], [ -96.056554194694826, 30.11865524603413 ], [ -96.056567194663813, 30.118710246294455 ], [ -96.056567194637935, 30.118825246579352 ], [ -96.056548195133033, 30.118984245823722 ], [ -96.056478195055277, 30.119028245824651 ], [ -96.056434194961724, 30.119028246644334 ], [ -96.056326194412918, 30.119061246563085 ], [ -96.056263195030922, 30.119138246452358 ], [ -96.056238194447886, 30.119330246240452 ], [ -96.056238194958709, 30.119424246563394 ], [ -96.056174194723923, 30.119512246521289 ], [ -96.056042194484988, 30.119528246555898 ], [ -96.055985195034538, 30.119550246781959 ], [ -96.055953194366495, 30.119600246358214 ], [ -96.055909194289455, 30.119776246492297 ], [ -96.055903194299631, 30.119836246257606 ], [ -96.055884194246431, 30.119869246553634 ], [ -96.055839194837304, 30.119896246135013 ], [ -96.055618194711201, 30.119935246451398 ], [ -96.055479194974453, 30.119979246063654 ], [ -96.055163194921889, 30.120160246220248 ], [ -96.055100194555521, 30.120166246735241 ], [ -96.054872194710342, 30.120122246945677 ], [ -96.054733194957905, 30.120138246758799 ], [ -96.054657194475155, 30.120171246721974 ], [ -96.054581194737651, 30.120248246306986 ], [ -96.054543194703115, 30.120397246483357 ], [ -96.054543194799734, 30.120457246739324 ], [ -96.054619194560289, 30.120693246724443 ], [ -96.054606194322403, 30.120743246952706 ], [ -96.054568194844819, 30.120759246536288 ], [ -96.054524194526735, 30.12076524685763 ], [ -96.054455194590261, 30.120732246245208 ], [ -96.054385194331886, 30.120715246856854 ], [ -96.054328194033602, 30.120715246553754 ], [ -96.054259193887077, 30.120776247037924 ], [ -96.054227194585451, 30.120869246910701 ], [ -96.054227193857116, 30.120897246829593 ], [ -96.054379194055059, 30.121298246442127 ], [ -96.054404194856374, 30.121397246721624 ], [ -96.054398194399937, 30.121463246506426 ], [ -96.054316194876137, 30.121556246887387 ], [ -96.054109194265138, 30.121686247040262 ], [ -96.054075194412533, 30.121732247120747 ], [ -96.054050194758318, 30.121781247200161 ], [ -96.054063194186639, 30.121990247229441 ], [ -96.054094193953745, 30.122078246826163 ], [ -96.054183193938783, 30.122122246503881 ], [ -96.054360194716921, 30.122117246876563 ], [ -96.054423194170255, 30.122122247020599 ], [ -96.054486194616672, 30.122150246832835 ], [ -96.054549194877424, 30.122199246549382 ], [ -96.054669194212835, 30.122375246766328 ], [ -96.05470119481042, 30.122446246892565 ], [ -96.054764194918718, 30.122743247137073 ], [ -96.054834194265055, 30.122985247210515 ], [ -96.05484019415573, 30.123040246782921 ], [ -96.054821194339567, 30.123166247248136 ], [ -96.054783194141265, 30.123287247429523 ], [ -96.054732194716607, 30.123381247173537 ], [ -96.054638194604706, 30.12351824712114 ], [ -96.054612194450215, 30.123688247246395 ], [ -96.054619194204165, 30.123793247648731 ], [ -96.054600194234084, 30.123875247564506 ], [ -96.054568194995625, 30.123941247389631 ], [ -96.054404194622734, 30.124084247562042 ], [ -96.054277195022863, 30.12413924744024 ], [ -96.054182194134356, 30.124156247361366 ], [ -96.053999194304353, 30.124167247294153 ], [ -96.053866194459104, 30.124161247079876 ], [ -96.053790194518172, 30.124139247552197 ], [ -96.053594194214497, 30.12411724718956 ], [ -96.053499194816879, 30.124128247457378 ], [ -96.053360194576442, 30.124172247649689 ], [ -96.053177194602569, 30.124183247366112 ], [ -96.0530631937647, 30.124205247393622 ], [ -96.052962194653233, 30.124238247383726 ], [ -96.052772193898093, 30.124282247624116 ], [ -96.052551193625163, 30.124386247104631 ], [ -96.052425193751191, 30.12446324711004 ], [ -96.052317194322313, 30.124496247529226 ], [ -96.052216194275331, 30.124507247148582 ], [ -96.051837193660347, 30.124578247810813 ], [ -96.051634194185311, 30.124628247724416 ], [ -96.051476194202493, 30.124688247929228 ], [ -96.051400193358617, 30.124721247888182 ], [ -96.051337193948115, 30.124798247262628 ], [ -96.051381193955024, 30.125007247495006 ], [ -96.051496194137798, 30.125153247650591 ], [ -96.051508193431175, 30.125241247265539 ], [ -96.051445193859834, 30.125356247962607 ], [ -96.051388194045643, 30.125356247383884 ], [ -96.051287193624873, 30.125378247565951 ], [ -96.051167193559948, 30.125356247560724 ], [ -96.051091193869212, 30.12538324726647 ], [ -96.05099019397062, 30.125378248103985 ], [ -96.050914194186731, 30.125345247524528 ], [ -96.050832193356655, 30.125295247518594 ], [ -96.050630193880352, 30.125224247769996 ], [ -96.050465193224014, 30.125235247771549 ], [ -96.050206193775821, 30.125493248030185 ], [ -96.050086193669571, 30.125515247560653 ], [ -96.049833193600605, 30.125471248037588 ], [ -96.049631193017646, 30.125416247356814 ], [ -96.049530193575251, 30.125422247460289 ], [ -96.049473193077503, 30.12548824817225 ], [ -96.04939719321483, 30.125526248182926 ], [ -96.049346192858295, 30.125565247763451 ], [ -96.049296193750067, 30.125620248226262 ], [ -96.049226192808646, 30.125713247945384 ], [ -96.049181193199544, 30.125801248101535 ], [ -96.049163192815783, 30.125839247958172 ], [ -96.049131193469933, 30.125933248242923 ], [ -96.049118193441728, 30.126026247648504 ], [ -96.04913119336986, 30.126197247637862 ], [ -96.049125193729964, 30.126274247512267 ], [ -96.049131193659662, 30.126384248178201 ], [ -96.04903619369577, 30.126488248366094 ], [ -96.049036193007026, 30.126559247979269 ], [ -96.049080193213811, 30.126647247787652 ], [ -96.049220193852022, 30.126763248189331 ], [ -96.049453193754672, 30.126895247798199 ], [ -96.04970019355379, 30.127087248298047 ], [ -96.049732193387314, 30.127136247909576 ], [ -96.049725193081912, 30.127180248254408 ], [ -96.049706193439604, 30.127230248116287 ], [ -96.049618193480796, 30.127312248122305 ], [ -96.049517193427363, 30.127351248370417 ], [ -96.049434193396522, 30.127367248478237 ], [ -96.048960193471558, 30.127323248124753 ], [ -96.04861319296424, 30.127312248047538 ], [ -96.048518192961396, 30.127356248596083 ], [ -96.048429193693181, 30.12741724855319 ], [ -96.0483531928937, 30.127488248102416 ], [ -96.048239193316533, 30.127625247850034 ], [ -96.04817019363928, 30.127669248395655 ], [ -96.048107193604977, 30.127686247887777 ], [ -96.048056193530329, 30.127675248201914 ], [ -96.047449193068942, 30.12770824811091 ], [ -96.047329193233466, 30.127697248707481 ], [ -96.047184193053411, 30.127664248351063 ], [ -96.047114193127214, 30.127636248571829 ], [ -96.046887193005972, 30.127526248299322 ], [ -96.046773192427764, 30.127488248312908 ], [ -96.046678192395717, 30.127427247924697 ], [ -96.046589192692082, 30.127356247880833 ], [ -96.046368192810291, 30.127356248404844 ], [ -96.046153192937467, 30.127482248177781 ], [ -96.04603319275644, 30.127537247908208 ], [ -96.045938192466409, 30.127592247908161 ], [ -96.045869192908995, 30.127664248111618 ], [ -96.045710192226181, 30.127779248504794 ], [ -96.045489192197863, 30.128037248710317 ], [ -96.045451192608724, 30.1280652486879 ], [ -96.045388192754714, 30.12813624881025 ], [ -96.045299192797131, 30.128252248472378 ], [ -96.045217192828531, 30.128340248525504 ], [ -96.04513519280907, 30.128405248861853 ], [ -96.044939192358015, 30.128493248592964 ], [ -96.044781192815819, 30.128521248912577 ], [ -96.044673192580078, 30.128565248136979 ], [ -96.044547192736118, 30.128642249004667 ], [ -96.04442719178806, 30.12874624895337 ], [ -96.044281192669573, 30.128845248508153 ], [ -96.044187191725555, 30.128993248830028 ], [ -96.044180191826811, 30.129125249008116 ], [ -96.044300192449114, 30.129680248635182 ], [ -96.044256192154023, 30.129812248824528 ], [ -96.044199192150003, 30.129939249164547 ], [ -96.044148192055673, 30.130098248933518 ], [ -96.04399019221843, 30.130235249237714 ], [ -96.043725192305871, 30.131032249354359 ], [ -96.043725192192085, 30.131379249212124 ], [ -96.043611192180791, 30.131521248897872 ], [ -96.043573192058986, 30.131587249592251 ], [ -96.043459192603123, 30.131681249234951 ], [ -96.043465192168412, 30.131730249139625 ], [ -96.043459192380951, 30.131890249364933 ], [ -96.043478191868928, 30.13198924948199 ], [ -96.043560192593347, 30.132192249636425 ], [ -96.04349019222721, 30.132483249714348 ], [ -96.043484191792658, 30.132675249214927 ], [ -96.043509192059147, 30.132928249605957 ], [ -96.043528191969372, 30.132967249579504 ], [ -96.043642192242473, 30.133066249374757 ], [ -96.043712192546522, 30.133170249703532 ], [ -96.043800192042042, 30.133385249866141 ], [ -96.043844192143936, 30.133450249751103 ], [ -96.043870192102773, 30.133527249506859 ], [ -96.043926192700098, 30.133780249638651 ], [ -96.043977192475708, 30.133846249739747 ], [ -96.04404719204247, 30.133852249438974 ], [ -96.044072192418099, 30.133863249564161 ], [ -96.044122192465423, 30.13379124976186 ], [ -96.044230192830895, 30.133786249323794 ], [ -96.044502192759509, 30.133813249920998 ], [ -96.044729192198304, 30.133901249413711 ], [ -96.044932192815921, 30.13406124947366 ], [ -96.045020192641488, 30.134253249985402 ], [ -96.045071192222679, 30.134341249381329 ], [ -96.045090192442999, 30.134489249769402 ], [ -96.045090192889191, 30.134610249729864 ], [ -96.045121193033296, 30.134676249502515 ], [ -96.045305192584735, 30.134869249401032 ], [ -96.045393192897322, 30.134990250141332 ], [ -96.045412192845362, 30.135050249667525 ], [ -96.045431192630602, 30.135220249680106 ], [ -96.045408192930296, 30.135478250223315 ], [ -96.045393192679427, 30.135649249594032 ], [ -96.045311192827384, 30.135814249998965 ], [ -96.045222193175164, 30.135962250501596 ], [ -96.045203192535297, 30.136078249713389 ], [ -96.045089193040553, 30.13630825029157 ], [ -96.044988192533907, 30.136358250248957 ], [ -96.044748192703324, 30.136704249981353 ], [ -96.044577192394627, 30.136825249845291 ], [ -96.044286192665808, 30.137012249864284 ], [ -96.044090192073114, 30.137127250194158 ], [ -96.044027192621854, 30.137149249898791 ], [ -96.043888192777274, 30.137270249991651 ], [ -96.043806192088041, 30.137385250798122 ], [ -96.043951192227979, 30.137704250799988 ], [ -96.044166193029284, 30.137924250897026 ], [ -96.044242192141624, 30.13793525071981 ], [ -96.044299192464351, 30.137886250910594 ], [ -96.044400192517017, 30.137770250485648 ], [ -96.04445019246603, 30.137765250560957 ], [ -96.044488192383014, 30.137781250334537 ], [ -96.044539193027816, 30.13789125042457 ], [ -96.044571193223717, 30.137996250651593 ], [ -96.044602192791316, 30.138298250821833 ], [ -96.04469719299837, 30.138650250508203 ], [ -96.044665192783853, 30.138738250232407 ], [ -96.044596193246434, 30.138787250980631 ], [ -96.044520192945555, 30.13882625085644 ], [ -96.044261192247802, 30.138924250318503 ], [ -96.044128193002948, 30.13899625106971 ], [ -96.044031192515135, 30.139063251073118 ], [ -96.043590192521052, 30.139369250944334 ], [ -96.043394192777754, 30.139485251054786 ], [ -96.043349192820855, 30.139504251200641 ], [ -96.043242192456702, 30.139551251068923 ], [ -96.043034192429189, 30.139606250599481 ], [ -96.042850191926547, 30.139672250670063 ], [ -96.042572192021936, 30.139825251347013 ], [ -96.042446191962838, 30.139875251211198 ], [ -96.04206619201355, 30.139886251229267 ], [ -96.041965192033388, 30.139924250602135 ], [ -96.041908192063076, 30.139985251416835 ], [ -96.041845191838192, 30.14002325063651 ], [ -96.04165519203346, 30.140056250710682 ], [ -96.041033191808879, 30.140069250692388 ], [ -96.040606191467091, 30.140078250849804 ], [ -96.040467192109872, 30.140089250670574 ], [ -96.040233191410607, 30.140166251172342 ], [ -96.040144191716621, 30.140259251266002 ], [ -96.039923191746752, 30.140534251384331 ], [ -96.039948192063605, 30.140699251136127 ], [ -96.039935192029816, 30.140886250989002 ], [ -96.039967191302097, 30.141127250882228 ], [ -96.03998619194293, 30.141551251125392 ], [ -96.040005191929353, 30.141650251399277 ], [ -96.040074191765214, 30.141864251390263 ], [ -96.040049191324158, 30.142073251240753 ], [ -96.040042191669514, 30.142408251802465 ], [ -96.040087191915276, 30.142496251658059 ], [ -96.040150191321032, 30.142573251945539 ], [ -96.040251192139223, 30.142820251922576 ], [ -96.040263192003707, 30.142969251874248 ], [ -96.040226191840162, 30.143068251799154 ], [ -96.040143192054273, 30.143139251495228 ], [ -96.039979191851259, 30.143243252105027 ], [ -96.039925192287555, 30.143272252078759 ], [ -96.039777192019514, 30.143351251463383 ], [ -96.039720191625179, 30.143381251967263 ], [ -96.039479191417087, 30.143502251817676 ], [ -96.039125191914422, 30.143622251493003 ], [ -96.038961191229845, 30.143705251942997 ], [ -96.038935191396831, 30.143738251804876 ], [ -96.038904191359592, 30.143815251988933 ], [ -96.038878191177915, 30.143837251533874 ], [ -96.038784191947371, 30.143881252040138 ], [ -96.038682191019063, 30.143903251722573 ], [ -96.038429191753536, 30.143908251451862 ], [ -96.038354191700748, 30.143897251499489 ], [ -96.038227190894375, 30.143859251941805 ], [ -96.038183190923831, 30.143836251983839 ], [ -96.037854191653153, 30.143534251842787 ], [ -96.037785191349585, 30.143507251395068 ], [ -96.037671190711791, 30.143507251698303 ], [ -96.037614191268531, 30.143529251535128 ], [ -96.037582191409868, 30.143567251899341 ], [ -96.037481191581847, 30.143639251448629 ], [ -96.037443191361604, 30.143677252300254 ], [ -96.037380191515823, 30.143776251963182 ], [ -96.037342191312959, 30.143864252270181 ], [ -96.037336191231589, 30.143913251507708 ], [ -96.037342191190547, 30.143968251587403 ], [ -96.037424190993761, 30.144177251927196 ], [ -96.037506191044244, 30.14430925191019 ], [ -96.037614191715761, 30.144435252154807 ], [ -96.037683191718912, 30.14456725181115 ], [ -96.037721191129307, 30.144743252232296 ], [ -96.037727191203913, 30.144974252497505 ], [ -96.037765191592143, 30.145100252538278 ], [ -96.037822191731948, 30.145216251750149 ], [ -96.037873191452618, 30.145293252313749 ], [ -96.038062191049846, 30.145821252099083 ], [ -96.03811919175628, 30.145925251897477 ], [ -96.038189191597255, 30.145952252457043 ], [ -96.038284191614949, 30.145969252450584 ], [ -96.038404191927356, 30.145974252103795 ], [ -96.038543191813105, 30.145941251885962 ], [ -96.03867619188793, 30.145837251969656 ], [ -96.038884191677482, 30.145766252154822 ], [ -96.03897319131687, 30.145766251884883 ], [ -96.039074191768876, 30.145749251810543 ], [ -96.039251191809228, 30.145887252358037 ], [ -96.03930819207693, 30.146035251859526 ], [ -96.039371192122246, 30.146568252576134 ], [ -96.039421191556286, 30.146733252583555 ], [ -96.039491192312212, 30.14689825231947 ], [ -96.039599191665673, 30.147046252163573 ], [ -96.03970619230563, 30.147250252854363 ], [ -96.039719191411436, 30.147316252697461 ], [ -96.039712192165439, 30.147404252537054 ], [ -96.039554191669424, 30.147590252337665 ], [ -96.039390191614615, 30.147700252289869 ], [ -96.039238191817205, 30.147816252702491 ], [ -96.039029192088847, 30.148003252901631 ], [ -96.038694191727728, 30.14823925296762 ], [ -96.038156191518368, 30.148453252415401 ], [ -96.038074191755356, 30.148513252694407 ], [ -96.038055191308061, 30.148596252423044 ], [ -96.038049191102772, 30.148689252710025 ], [ -96.038055191947336, 30.14878325265963 ], [ -96.038131191890812, 30.1489702529609 ], [ -96.038264191698815, 30.149635253048864 ], [ -96.03842819185212, 30.149865253142263 ], [ -96.038478191612285, 30.149997253375023 ], [ -96.038485191336505, 30.150024252988509 ], [ -96.038497192224739, 30.150074252996721 ], [ -96.038491192058501, 30.150349253124656 ], [ -96.038371192087922, 30.150646253046627 ], [ -96.038156191692963, 30.150915253585929 ], [ -96.038092191913321, 30.151047252926048 ], [ -96.038035191811119, 30.15124525362474 ], [ -96.037953192026194, 30.151371253611217 ], [ -96.037618191485876, 30.151673253477359 ], [ -96.037586191891151, 30.151728253208073 ], [ -96.037548191113984, 30.15193225335473 ], [ -96.037498191762126, 30.152058253778215 ], [ -96.037415191237898, 30.152190254012101 ], [ -96.037238191052467, 30.152366253647664 ], [ -96.037447191757195, 30.152954254154825 ], [ -96.037485191110434, 30.153152253608571 ], [ -96.037599191282553, 30.153295253881989 ], [ -96.037687191938403, 30.153487254064135 ], [ -96.037491191918988, 30.153828253723365 ], [ -96.037396192175024, 30.154322253647962 ], [ -96.037459191252864, 30.154586253616301 ], [ -96.037541191576182, 30.154729254003431 ], [ -96.037573191430212, 30.154762253651221 ], [ -96.037630191779229, 30.154822253972217 ], [ -96.037781191462244, 30.15494925415728 ], [ -96.037946191317403, 30.155048254095625 ], [ -96.03804119194217, 30.155031254318171 ], [ -96.038079192222384, 30.155004254536195 ], [ -96.038180192211669, 30.154965254479304 ], [ -96.038212191975461, 30.154889254024464 ], [ -96.038262192296045, 30.15490025398886 ], [ -96.038363192059563, 30.154949253989813 ], [ -96.038464192011759, 30.155026254469316 ], [ -96.038762192261643, 30.155328254450069 ], [ -96.039059192623782, 30.155559254388596 ], [ -96.039166191802778, 30.155763254606878 ], [ -96.039248192661631, 30.155818254579334 ], [ -96.039356192597481, 30.155818254151047 ], [ -96.039495192182912, 30.155801254122935 ], [ -96.039628191984079, 30.155763253967898 ], [ -96.039944192618592, 30.1555592542901 ], [ -96.040115192453712, 30.155521254029001 ], [ -96.040286192794341, 30.15560925462378 ], [ -96.04038719202957, 30.155680254429793 ], [ -96.040501192815256, 30.155823254667997 ], [ -96.040526192237934, 30.156016254612336 ], [ -96.040488192225553, 30.156126254096314 ], [ -96.040393192529635, 30.156235254269937 ], [ -96.040317192690523, 30.156560254436684 ], [ -96.040216192172949, 30.156752254138922 ], [ -96.04012719244129, 30.156845254825537 ], [ -96.039918192258355, 30.156961254476059 ], [ -96.039857192023803, 30.157056254340752 ], [ -96.039830192697991, 30.15709825445856 ], [ -96.039703192058582, 30.157247254589304 ], [ -96.039343192692726, 30.157922254320024 ], [ -96.039197192110606, 30.158170254905922 ], [ -96.039102192472825, 30.158291255145524 ], [ -96.039052192117879, 30.158318254630579 ], [ -96.038995192339442, 30.158318254623289 ], [ -96.038957191808819, 30.158302254468698 ], [ -96.03891919248349, 30.158236255152044 ], [ -96.038881192394157, 30.158214254938382 ], [ -96.038856192378532, 30.158225254552072 ], [ -96.03880519212619, 30.158296254536825 ], [ -96.038828192686537, 30.158448254429025 ], [ -96.038875191873927, 30.158565255035775 ], [ -96.03898819221736, 30.158780254734125 ], [ -96.0390071917939, 30.158840254571469 ], [ -96.039083192333166, 30.159000254545678 ], [ -96.03915319204647, 30.159109255149779 ], [ -96.039203192064534, 30.159225254994592 ], [ -96.039247192064522, 30.159258254698244 ], [ -96.039336192472561, 30.1593022548597 ], [ -96.039412192572243, 30.159313255193123 ], [ -96.039576192367363, 30.159313254884182 ], [ -96.039697192960602, 30.159335254531889 ], [ -96.03975319290997, 30.159395255211898 ], [ -96.039791192528725, 30.159527254704468 ], [ -96.039829192173741, 30.159824254851781 ], [ -96.039817192074366, 30.159874255292841 ], [ -96.039779192536798, 30.15990125465645 ], [ -96.039639192756724, 30.159950254640513 ], [ -96.039576192569072, 30.159956254674366 ], [ -96.039361192122797, 30.15985725519419 ], [ -96.039317192236737, 30.159851255279591 ], [ -96.039254192142238, 30.159873254672746 ], [ -96.039171192026132, 30.159967254811388 ], [ -96.039108192841127, 30.160005255470633 ], [ -96.039032192504564, 30.160022255467634 ], [ -96.038982192388616, 30.160016255156251 ], [ -96.038722192036303, 30.15999425498925 ], [ -96.038684192370084, 30.159972254758408 ], [ -96.03864719250825, 30.159923255125193 ], [ -96.038621192404136, 30.159868254783841 ], [ -96.038615192540135, 30.159818255335647 ], [ -96.038596192193168, 30.159785255188378 ], [ -96.038533192682763, 30.159752254923163 ], [ -96.038469192250119, 30.159747254754528 ], [ -96.038394191907145, 30.15978025515798 ], [ -96.03835619221681, 30.159862255267573 ], [ -96.03828619204873, 30.159994254923074 ], [ -96.038185191817121, 30.160082255279271 ], [ -96.038096192397546, 30.160120255275935 ], [ -96.038008192239303, 30.160126254726805 ], [ -96.037894192547554, 30.160087254922431 ], [ -96.037774191809518, 30.160087255385744 ], [ -96.037559192041769, 30.160115255581527 ], [ -96.037375191734796, 30.160148255054196 ], [ -96.037249192154206, 30.160181255408016 ], [ -96.037072191759975, 30.160252255166032 ], [ -96.036989192177572, 30.160263255063747 ], [ -96.03692619149605, 30.160258255427944 ], [ -96.036825191968177, 30.160285255412543 ], [ -96.036762191625925, 30.160324254823767 ], [ -96.036692191422588, 30.160346254987353 ], [ -96.036616192028859, 30.160356255557264 ], [ -96.036490191203228, 30.160351255205242 ], [ -96.036401191669299, 30.16032325541558 ], [ -96.036351191363892, 30.1602962553225 ], [ -96.036278191260394, 30.16023625507032 ], [ -96.036237191957241, 30.160202255661829 ], [ -96.036117191966312, 30.160159255399773 ], [ -96.035952191733926, 30.160126254956605 ], [ -96.035902191696039, 30.160120255304776 ], [ -96.035870191206328, 30.160125255327454 ], [ -96.035560191586967, 30.160312255665357 ], [ -96.035440191087062, 30.160400255021472 ], [ -96.035415191342565, 30.160461254988665 ], [ -96.035402191427863, 30.160538255354606 ], [ -96.035377191271238, 30.160582255026601 ], [ -96.035301191002404, 30.160669255563885 ], [ -96.03518719170566, 30.160741255654216 ], [ -96.035092191847028, 30.160774255747437 ], [ -96.034871191471325, 30.160823255435325 ], [ -96.034649191008242, 30.160851255577924 ], [ -96.034592190794285, 30.160851255532339 ], [ -96.034580191600014, 30.16090625575292 ], [ -96.034542190948216, 30.160993255894258 ], [ -96.034314191285532, 30.161362255906543 ], [ -96.034206191092522, 30.161653255898024 ], [ -96.034182191190993, 30.161771255969754 ], [ -96.034162191651916, 30.16187825554201 ], [ -96.034143191488937, 30.161917255291858 ], [ -96.034086191262929, 30.161994255747306 ], [ -96.033985191437438, 30.162092256092688 ], [ -96.033877190825422, 30.162246255546304 ], [ -96.033820190964207, 30.162406255729636 ], [ -96.033757191214661, 30.162516256222503 ], [ -96.033662191295917, 30.162593256238313 ], [ -96.033396190733853, 30.162669255717041 ], [ -96.033226191274267, 30.162779255776513 ], [ -96.033099190784199, 30.162966255987914 ], [ -96.033029190769, 30.163032256095374 ], [ -96.032916191165555, 30.163114255945288 ], [ -96.032656190451945, 30.163252255570139 ], [ -96.032625191233009, 30.16327925571677 ], [ -96.032568190485307, 30.16334525619337 ], [ -96.032530190452121, 30.163439255650548 ], [ -96.03247319059075, 30.163505256105513 ], [ -96.032365190870479, 30.163559256080003 ], [ -96.032081190972036, 30.163664256155158 ], [ -96.032017190963515, 30.16370925573532 ], [ -96.032005190871104, 30.16371925582191 ], [ -96.03179019039446, 30.163911255903461 ], [ -96.031695190252208, 30.164037256534421 ], [ -96.031536190118388, 30.16418025595981 ], [ -96.031416190854983, 30.164312256305809 ], [ -96.031321190066862, 30.164444256697156 ], [ -96.031316190376273, 30.164454255952659 ], [ -96.031303190201044, 30.164485256163818 ], [ -96.031299190408575, 30.164496256579618 ], [ -96.031271190988733, 30.164565256104328 ], [ -96.031264190790466, 30.16461425615239 ], [ -96.031289190152592, 30.164831256721321 ], [ -96.031296190518091, 30.164884256451813 ], [ -96.031290190101529, 30.165016256686823 ], [ -96.031277190459207, 30.165131256546449 ], [ -96.031226190173214, 30.165345256530511 ], [ -96.031188190100806, 30.16563725683271 ], [ -96.031188190369662, 30.165796256482931 ], [ -96.031167190428889, 30.16584825672215 ], [ -96.031144190811915, 30.165911256372492 ], [ -96.031087190153698, 30.166010256862549 ], [ -96.031067190368731, 30.166119256490013 ], [ -96.031061190135119, 30.166153256363291 ], [ -96.031065190146805, 30.166170256437045 ], [ -96.031087190317663, 30.166263256461374 ], [ -96.031182190674613, 30.166528256717001 ], [ -96.031219191074982, 30.166631256823944 ], [ -96.031219190733623, 30.166758256509507 ], [ -96.031188190532731, 30.16688425642236 ], [ -96.031105190273308, 30.167060256893016 ], [ -96.030972191124093, 30.167428257058727 ], [ -96.030893190594441, 30.167589256657408 ], [ -96.030884190861457, 30.167609257323619 ], [ -96.030884190559959, 30.16769725720431 ], [ -96.030947190294498, 30.167818257167276 ], [ -96.030960190737503, 30.167868257018256 ], [ -96.030960190547532, 30.167934257373073 ], [ -96.030960190610358, 30.167948257149604 ], [ -96.030960190984686, 30.167967257110394 ], [ -96.031004190699889, 30.168104256911782 ], [ -96.031048190869882, 30.168159256865639 ], [ -96.031105190712623, 30.168285257173775 ], [ -96.031121190499078, 30.16837225733812 ], [ -96.031124191223313, 30.168384256826918 ], [ -96.031136190540565, 30.168544257385534 ], [ -96.031193191221135, 30.168703257364058 ], [ -96.031193190334463, 30.168797257217054 ], [ -96.031181190784579, 30.168835256775388 ], [ -96.031003190238664, 30.169066257541569 ], [ -96.030978190954016, 30.169220257494914 ], [ -96.030978190733876, 30.169308257318068 ], [ -96.031048191025477, 30.169533257472178 ], [ -96.031079190501586, 30.169593257673089 ], [ -96.031102190808184, 30.169655257059759 ], [ -96.031231191289777, 30.169995256961908 ], [ -96.031243190671105, 30.170091257714937 ], [ -96.030632190948353, 30.170338257869869 ], [ -96.030438190457858, 30.170417257236082 ], [ -96.029490190065331, 30.17088025735254 ], [ -96.02883119071187, 30.171153258151129 ], [ -96.028798189928139, 30.171167257521148 ], [ -96.02847718989004, 30.171289257396495 ], [ -96.028229189835884, 30.171341258124354 ], [ -96.028203190574274, 30.171345258213261 ], [ -96.0278381901975, 30.171395258241169 ], [ -96.027459189942931, 30.171396257481014 ], [ -96.026877189376847, 30.171345257894526 ], [ -96.026532189916168, 30.171280258195377 ], [ -96.026210189676121, 30.171217257509305 ], [ -96.025645189562368, 30.171057257829236 ], [ -96.024611189608208, 30.170725257656759 ], [ -96.02435718916999, 30.170652257609333 ], [ -96.022799188775096, 30.170147258038504 ], [ -96.021082188566623, 30.169605257612851 ], [ -96.020939187854651, 30.169566257735447 ], [ -96.019174187980184, 30.169037258014818 ], [ -96.018222187096313, 30.168725257789202 ], [ -96.017895187018468, 30.168618257763697 ], [ -96.016732186678141, 30.168240257176006 ], [ -96.016130187140149, 30.168157257194348 ], [ -96.014674186124509, 30.168092257310882 ], [ -96.014484186967849, 30.168075257774348 ], [ -96.014294186836935, 30.16805825794647 ], [ -96.013967186446976, 30.168028257175543 ], [ -96.013753186400308, 30.168009257616305 ], [ -96.01329718653291, 30.167974257344891 ], [ -96.012977185814407, 30.1679492572054 ], [ -96.012658186043197, 30.16792525762612 ], [ -96.011836185406892, 30.16786225765637 ], [ -96.011235185421185, 30.167788257462728 ], [ -96.011212185848549, 30.167779257749824 ], [ -96.010228184946499, 30.167422257207619 ], [ -96.009372185397382, 30.166897257890227 ], [ -96.008623184750576, 30.166340257210141 ], [ -96.00735718404691, 30.165796257072785 ], [ -96.006710184439328, 30.165518257645143 ], [ -96.00601218450997, 30.165246257351452 ], [ -96.003841183588122, 30.164397257624785 ], [ -95.999459182771361, 30.163134257205222 ], [ -95.998965182341081, 30.162971256676002 ], [ -95.997437182084099, 30.162541257204754 ], [ -95.996659181805072, 30.162512257002938 ], [ -95.996403181205437, 30.162539256787998 ], [ -95.996173181537316, 30.162563256687456 ], [ -95.995959181324494, 30.162607256943243 ], [ -95.995637181504065, 30.162707257307513 ], [ -95.995355180982116, 30.162821257525138 ], [ -95.994894181685382, 30.163025256906501 ], [ -95.993218181057458, 30.16378625718913 ], [ -95.993007180777013, 30.163875257824717 ], [ -95.99262518028101, 30.164057257291855 ], [ -95.992408180318378, 30.164182257923503 ], [ -95.992151180819235, 30.164356258082957 ], [ -95.991963180228154, 30.16451825782179 ], [ -95.991795180113002, 30.164693257786173 ], [ -95.991645180949817, 30.164874257605785 ], [ -95.991558180873028, 30.165004257693244 ], [ -95.991333180304593, 30.165381257538016 ], [ -95.991128180107268, 30.166087258071755 ], [ -95.991185180111088, 30.170184259219386 ], [ -95.991179180737859, 30.170377259220842 ], [ -95.991085181162248, 30.170533258483974 ], [ -95.990875180777422, 30.171119258684712 ], [ -95.99046618088353, 30.171690259098146 ], [ -95.990060180304624, 30.17204225893402 ], [ -95.989847179946921, 30.172164259626896 ], [ -95.989675180209247, 30.172264259748168 ], [ -95.989288179799175, 30.172423259497659 ], [ -95.988741179913504, 30.172576259553168 ], [ -95.988475179600272, 30.172633259620586 ], [ -95.986018179883189, 30.173123259366868 ], [ -95.983768179163476, 30.173620260212729 ], [ -95.983712178685394, 30.17362525959896 ], [ -95.982753179146272, 30.173729259527288 ], [ -95.982389178428647, 30.17374625952915 ], [ -95.981613177863366, 30.173695260057258 ], [ -95.981164178143317, 30.173647259574889 ], [ -95.981101178405879, 30.173642260149759 ], [ -95.981003177900931, 30.173635259956214 ], [ -95.980330178228286, 30.173563260043757 ], [ -95.979154177527178, 30.173439259893904 ], [ -95.977924177265848, 30.173318260000716 ], [ -95.977401177097221, 30.17329326039803 ], [ -95.976641176926378, 30.173273259734216 ], [ -95.976475177306384, 30.173277260210561 ], [ -95.975186176938962, 30.173314259903471 ], [ -95.974857176134947, 30.173323260266802 ], [ -95.973980176115816, 30.173347259739923 ], [ -95.973139176660993, 30.173371260113271 ], [ -95.971091175378263, 30.173429259820658 ], [ -95.970984175925622, 30.173432260490916 ], [ -95.970366174986594, 30.173460260166813 ], [ -95.969162174707421, 30.17351726054223 ], [ -95.969165174841152, 30.173737259885971 ], [ -95.969175175428376, 30.174397260469643 ], [ -95.969179175032437, 30.174618260450675 ], [ -95.969190175054351, 30.175311260816599 ], [ -95.969215175004706, 30.176015260756596 ], [ -95.969266174984725, 30.177372261439359 ], [ -95.969307175622149, 30.178496260893763 ], [ -95.96937917603482, 30.180207261503899 ], [ -95.969439175713532, 30.181605261816603 ], [ -95.969445175621459, 30.181754261891019 ], [ -95.969463175450755, 30.18220126205799 ], [ -95.969470175696273, 30.182350262058531 ], [ -95.96949617536167, 30.182975262537749 ], [ -95.96954317526658, 30.184060262536025 ], [ -95.969586176214577, 30.18485226217873 ], [ -95.969620175732899, 30.185478262369216 ], [ -95.969640176198979, 30.185856263181918 ], [ -95.969674175937755, 30.186484262811696 ], [ -95.969688176444578, 30.186992262758377 ], [ -95.969700176262023, 30.187371263520834 ], [ -95.969701175872785, 30.187422262669216 ], [ -95.969696176405151, 30.188489263616276 ], [ -95.969696176077889, 30.188602263132974 ], [ -95.969653175636964, 30.189553263509776 ], [ -95.969624176059213, 30.19079026413792 ], [ -95.969572176448324, 30.191438263563143 ], [ -95.969525176056976, 30.191839264090596 ], [ -95.96951517635901, 30.191935263613942 ], [ -95.969284176388285, 30.192931264611296 ], [ -95.969176176434459, 30.193387264168031 ], [ -95.969167175966092, 30.193419264513661 ], [ -95.969067175993857, 30.193806264347366 ], [ -95.969019175877847, 30.194275264681494 ], [ -95.968995176471338, 30.194909264803243 ], [ -95.968980175951003, 30.195341264302222 ], [ -95.968982175823214, 30.195411265060226 ], [ -95.969031176701677, 30.197263265216446 ], [ -95.969040176426759, 30.197603264766276 ], [ -95.969122175963122, 30.200434265459307 ], [ -95.969161176694385, 30.202681265867007 ], [ -95.969158176091909, 30.202822266192776 ], [ -95.969148176668938, 30.203517266309774 ], [ -95.969116176259149, 30.203973266056881 ], [ -95.969080176826907, 30.204145266875681 ], [ -95.969044177077691, 30.204287266644585 ], [ -95.9689451766058, 30.204406266180662 ], [ -95.968817176063069, 30.204546266509087 ], [ -95.968790176718372, 30.204569267007685 ], [ -95.968667176114423, 30.204672266984371 ], [ -95.968476176364845, 30.204745266779646 ], [ -95.968221176665253, 30.204778266497293 ], [ -95.9666461760456, 30.204831267129205 ], [ -95.965885175802583, 30.204857266844503 ], [ -95.964146175590145, 30.204909267016433 ], [ -95.963380175103907, 30.204911266951857 ], [ -95.963075175052779, 30.204951266871788 ], [ -95.962893175388089, 30.205026266674405 ], [ -95.962866174849907, 30.205055266919647 ], [ -95.962755175474072, 30.205172266854138 ], [ -95.962710174664991, 30.205226266993737 ], [ -95.96264617465377, 30.205298267167571 ], [ -95.962550174666774, 30.205494267209993 ], [ -95.96259917515988, 30.207454267613244 ], [ -95.962602174965127, 30.207728267234931 ], [ -95.962631174760503, 30.209926267634252 ], [ -95.962634175042311, 30.210164267773216 ], [ -95.962659175457091, 30.211197267853805 ], [ -95.962706175106916, 30.213067268661117 ], [ -95.962747175280327, 30.215013269230454 ], [ -95.962766175135002, 30.215872268831497 ], [ -95.962721175292685, 30.216106268956331 ], [ -95.962587175726128, 30.216218269225116 ], [ -95.962248174987209, 30.215986268837799 ], [ -95.961653175204162, 30.215673268781053 ], [ -95.961184175492406, 30.215489269017933 ], [ -95.960928174841854, 30.2154272686799 ], [ -95.960732174647774, 30.215380269249923 ], [ -95.960223175386758, 30.215340269256014 ], [ -95.960146175315273, 30.21533426866727 ], [ -95.959010174556482, 30.215327268890274 ], [ -95.955958174207126, 30.215374269236058 ], [ -95.955387173985528, 30.215377269356569 ], [ -95.954705173406737, 30.215382269171634 ], [ -95.954083172867854, 30.215386269568327 ], [ -95.953541172818305, 30.215333269292067 ], [ -95.95313317317293, 30.215258268907093 ], [ -95.952896173055208, 30.215178268924195 ], [ -95.952681172896504, 30.215107268838917 ], [ -95.952245172962606, 30.214921269110754 ], [ -95.951755172565555, 30.214632269597821 ], [ -95.951229172625574, 30.21431526922899 ], [ -95.951125172435297, 30.21428026898311 ], [ -95.950496171869347, 30.214070268941548 ], [ -95.950395172131977, 30.214038268864968 ], [ -95.94984217259595, 30.213945269134872 ], [ -95.949169171968279, 30.213900268720742 ], [ -95.94866717230002, 30.213915268865708 ], [ -95.947080171868507, 30.213963268936553 ], [ -95.943306170882735, 30.214031269601065 ], [ -95.943138170587872, 30.214035268937312 ], [ -95.941296170413594, 30.2140842697866 ], [ -95.941349170518237, 30.215781270105179 ], [ -95.941510170127145, 30.220875270490687 ], [ -95.941554170898499, 30.222248270708725 ], [ -95.941599170059391, 30.222571271455472 ], [ -95.941668170395658, 30.22305727159662 ], [ -95.941811171051611, 30.223632271596255 ], [ -95.941946171116044, 30.223979271438566 ], [ -95.94214417056601, 30.224484271523544 ], [ -95.9425721703698, 30.225264271561056 ], [ -95.943559171609962, 30.226738271535332 ], [ -95.944243171572708, 30.227678272032886 ], [ -95.945101171520477, 30.228856271957241 ], [ -95.945563172339945, 30.229491272050748 ], [ -95.945802171962512, 30.229818272716013 ], [ -95.946945172097969, 30.231400272512179 ], [ -95.947405172682821, 30.232038272504628 ], [ -95.947558172445994, 30.232250273043761 ], [ -95.948018172424653, 30.232889273076651 ], [ -95.948172172567823, 30.233103272589865 ], [ -95.948243172794363, 30.233202272879097 ], [ -95.948458172758023, 30.23349927276427 ], [ -95.948519172941502, 30.233584273110726 ], [ -95.948528172914834, 30.233600273364203 ], [ -95.948713172832825, 30.233932273322065 ], [ -95.949270173146502, 30.234929273078773 ], [ -95.949456173548882, 30.235262273474511 ], [ -95.949546173409033, 30.23542327321001 ], [ -95.949631173146756, 30.235589273428179 ], [ -95.950138173350041, 30.236579273939206 ], [ -95.950308173754109, 30.236910273482078 ], [ -95.950356173123069, 30.23691127390661 ], [ -95.953780173745201, 30.236969273353377 ], [ -95.958029175701157, 30.236697273471769 ], [ -95.965188176902856, 30.236239273330632 ], [ -95.966091176846234, 30.236181272700595 ], [ -95.966401177658994, 30.236161272796149 ], [ -95.966711177284168, 30.236141273056379 ], [ -95.966997177933052, 30.236123273175338 ], [ -95.967283177170515, 30.236104272816757 ], [ -95.969999177988939, 30.235931272564727 ], [ -95.974387179372513, 30.235650272435688 ], [ -95.974708179512945, 30.235629272480175 ], [ -95.982084181504518, 30.235157272602518 ], [ -95.984376181861407, 30.235009272402003 ], [ -95.985851182727941, 30.234914272349613 ], [ -95.991252183639489, 30.23456927169741 ], [ -95.993545184692962, 30.234423271607369 ], [ -95.993914184579666, 30.234390271879366 ], [ -95.995021184819009, 30.23429527142731 ], [ -95.995391184463912, 30.234264271605284 ], [ -95.995426184900424, 30.234261271603575 ], [ -95.996337184772088, 30.23418327148126 ], [ -95.99637518490141, 30.234181271204449 ], [ -96.00024018601745, 30.23402027095894 ], [ -96.001223186164808, 30.233957271030437 ], [ -96.00318418665185, 30.233831271104066 ], [ -96.004805187124873, 30.233727271177337 ], [ -96.009071187742776, 30.233454270507902 ], [ -96.011033188682816, 30.233329270803079 ], [ -96.011096189012846, 30.233325271201853 ], [ -96.011286189025441, 30.233312271101493 ], [ -96.011350188732294, 30.233309270835903 ], [ -96.014448189878706, 30.233130270916671 ], [ -96.021896191245887, 30.232699270738507 ], [ -96.025476192044465, 30.232492270437724 ], [ -96.027451192344785, 30.232378269821996 ], [ -96.032126193524462, 30.232107270115712 ], [ -96.036350195136521, 30.23186326976121 ], [ -96.041244196485806, 30.231580269167484 ], [ -96.041302196695497, 30.231576269241046 ], [ -96.041479196311101, 30.23156626898361 ], [ -96.041538196154477, 30.23156326908855 ], [ -96.041926196389838, 30.231540269824599 ], [ -96.043092196326185, 30.231472269371427 ], [ -96.043481196464299, 30.231450269377916 ], [ -96.046549197622653, 30.231272269623222 ], [ -96.052942198677414, 30.230917269014796 ], [ -96.054427199288199, 30.230833268939605 ], [ -96.054769199263959, 30.230814268951612 ], [ -96.054934199852724, 30.230808268545882 ], [ -96.055086199291992, 30.230802268747404 ], [ -96.056911199732454, 30.230738268488775 ], [ -96.06329920156621, 30.230342268588899 ], [ -96.069326203479349, 30.229969267907155 ], [ -96.071433204219957, 30.229677267868222 ], [ -96.071639204327042, 30.229650268130467 ], [ -96.072856203680843, 30.229496268232715 ], [ -96.074510204758866, 30.229432267880043 ], [ -96.078219205626695, 30.229273267316348 ], [ -96.07951320572225, 30.229229267598086 ], [ -96.079571206066007, 30.229226267313994 ], [ -96.079748205998484, 30.229220267642692 ], [ -96.079816205743441, 30.229216267728585 ], [ -96.079890205542895, 30.229212267959813 ], [ -96.080516206183731, 30.229178267813101 ], [ -96.088948208096085, 30.228723266868592 ], [ -96.089917208458431, 30.227438266873154 ], [ -96.090201208647315, 30.227173267111162 ], [ -96.091460208951986, 30.225999266144427 ], [ -96.091891208623281, 30.225798266396399 ], [ -96.092316209367894, 30.225596266767216 ], [ -96.09268720898595, 30.225421266173846 ], [ -96.092723208950645, 30.225403266221452 ], [ -96.092919209018035, 30.225309265992564 ], [ -96.093172209658249, 30.225192266718171 ], [ -96.093163209343217, 30.225164266105409 ], [ -96.093136209414766, 30.225080266087481 ], [ -96.093127209565679, 30.225053266200973 ], [ -96.092669209011831, 30.223645266097087 ], [ -96.092674208463933, 30.223529266042522 ], [ -96.092749208438278, 30.222025265413503 ], [ -96.093129208814617, 30.220452265281882 ], [ -96.094070209368184, 30.219078265144169 ], [ -96.094973209358329, 30.217761264525116 ], [ -96.095362209195756, 30.217117264436123 ], [ -96.095751209738324, 30.21647426479608 ], [ -96.096026209154132, 30.215873264623557 ], [ -96.096713209607458, 30.214877264507912 ], [ -96.097442209459999, 30.214477264065472 ], [ -96.097489210029707, 30.214482264009405 ], [ -96.097967209463661, 30.2145352637658 ], [ -96.098943210370152, 30.214530264145182 ], [ -96.099502210279837, 30.214770263967964 ], [ -96.100583210444384, 30.215394263925038 ], [ -96.10102421086934, 30.215679264215169 ], [ -96.102656211478774, 30.216298263805918 ], [ -96.103391211257346, 30.216577264424412 ], [ -96.105196212142886, 30.217552264024224 ], [ -96.106837212573652, 30.218438264109395 ], [ -96.107939213012983, 30.219072264565476 ], [ -96.109413213199062, 30.219919264573079 ], [ -96.109693212867526, 30.220576264457119 ], [ -96.109848213489414, 30.220940264636713 ], [ -96.110989213336751, 30.222320264821597 ], [ -96.112142214066466, 30.22448626518484 ], [ -96.112950214664863, 30.225765265544872 ], [ -96.11297521414096, 30.226180265725965 ], [ -96.113711214841331, 30.227208265768553 ], [ -96.114785215075685, 30.227903266391458 ], [ -96.115936215515646, 30.227886266267149 ], [ -96.117166215331807, 30.227280265552675 ], [ -96.117221214977675, 30.226995265846163 ], [ -96.117282215278706, 30.226685265705495 ], [ -96.117538215159016, 30.226113265310843 ], [ -96.11762921515357, 30.225784265520705 ], [ -96.11766621539428, 30.225653265501244 ], [ -96.117743215028057, 30.225260265727972 ], [ -96.118025215417418, 30.224217265478099 ], [ -96.118576215659274, 30.223375264592235 ], [ -96.119167216104231, 30.222731264540371 ], [ -96.120161215996802, 30.221498264314594 ], [ -96.125243217130119, 30.215190262786354 ], [ -96.126070217077441, 30.213916262835298 ], [ -96.127247217301061, 30.212542262426496 ], [ -96.128235217521024, 30.211610262755364 ], [ -96.129254217870695, 30.210983262617699 ], [ -96.130114217499738, 30.21076026173635 ], [ -96.131006218449144, 30.210728262490658 ], [ -96.131619218639841, 30.210707262245467 ], [ -96.133990218421772, 30.210562261853884 ], [ -96.136322218956352, 30.210811262151363 ], [ -96.13816421964107, 30.211352262098504 ], [ -96.140197220068643, 30.212229262463381 ], [ -96.141887221151393, 30.213884262026358 ], [ -96.142565221577115, 30.215050262096163 ], [ -96.142781220783988, 30.215441262638727 ], [ -96.143538221946386, 30.216814262523741 ], [ -96.144402221934868, 30.217948262615696 ], [ -96.145082221538644, 30.218571263549755 ], [ -96.145833222684359, 30.218467262973753 ], [ -96.146235222168912, 30.218411263194906 ], [ -96.146489221862296, 30.218430263240926 ], [ -96.146982222653136, 30.21823126263455 ], [ -96.147435223037689, 30.217981262570383 ], [ -96.147856223000659, 30.217589262553616 ], [ -96.148461222933818, 30.216583262420368 ], [ -96.149470222943407, 30.214549262119345 ], [ -96.149892223159, 30.213029261866062 ], [ -96.150530222941967, 30.212455261310922 ], [ -96.151558222899723, 30.211530261751466 ], [ -96.153576223706551, 30.210112261282141 ], [ -96.155861223903443, 30.208665261125425 ], [ -96.156620224682285, 30.208106260622895 ], [ -96.157030224947405, 30.207907260141805 ], [ -96.157144224207656, 30.207603260398212 ], [ -96.157272224116127, 30.207263260655388 ], [ -96.158479224565568, 30.20681726004614 ], [ -96.158748225212008, 30.206717259914971 ], [ -96.159017225385725, 30.206618259957715 ], [ -96.159090224897497, 30.206242260478394 ], [ -96.159059225105636, 30.205959260433236 ], [ -96.159005225391454, 30.205459259645586 ], [ -96.159273224452022, 30.20457326018817 ], [ -96.159337224997557, 30.203407259647893 ], [ -96.159209225334337, 30.202018259427224 ], [ -96.159212224835926, 30.201785259628309 ], [ -96.15919222433034, 30.201673259046622 ], [ -96.159166224311235, 30.201572258836503 ], [ -96.159078225050038, 30.201302259355728 ], [ -96.158289224501402, 30.199224258661925 ], [ -96.158641224655639, 30.197160258212481 ], [ -96.159101224987083, 30.195864257986123 ], [ -96.159157224487089, 30.195058257670638 ], [ -96.159066224204295, 30.19434025797948 ], [ -96.158489223728964, 30.19263825726242 ], [ -96.157099223697969, 30.190503257165457 ], [ -96.157160223481156, 30.190323257058601 ], [ -96.157024223423733, 30.189632257181611 ], [ -96.157024223621235, 30.189129256857903 ], [ -96.157271223425155, 30.188110256826445 ], [ -96.157359224044995, 30.187916256275034 ], [ -96.157695223477461, 30.187198256060064 ], [ -96.158531223977917, 30.18585525600669 ], [ -96.159024223876173, 30.18481225543006 ], [ -96.159284224062674, 30.184261255387341 ], [ -96.159673223870612, 30.183483255612771 ], [ -96.159782224407323, 30.183185255730574 ], [ -96.159969224235368, 30.182114255525946 ], [ -96.159739223772561, 30.181102255326138 ], [ -96.159238223788591, 30.180418254974157 ], [ -96.156635222676812, 30.178885254482616 ], [ -96.155390222503158, 30.177981254857993 ], [ -96.154585222507905, 30.17714625443066 ], [ -96.154569222243808, 30.177129254795872 ], [ -96.154807222988183, 30.176073254636211 ], [ -96.154934222922563, 30.175507254499088 ], [ -96.154934222025901, 30.174389254301879 ], [ -96.15520722212527, 30.173166253451132 ], [ -96.156848223224301, 30.171304253561768 ], [ -96.158671223616864, 30.1700542528481 ], [ -96.159856223422111, 30.169335252931127 ], [ -96.160919223463708, 30.168564252337124 ], [ -96.161262224081767, 30.167959252113054 ], [ -96.161275224186937, 30.167845252760522 ], [ -96.161375224243557, 30.166968252126242 ], [ -96.161831223346624, 30.166037251727026 ], [ -96.162013223731378, 30.164920252139783 ], [ -96.161375223755044, 30.163430251777097 ], [ -96.160038223458912, 30.161834250812944 ], [ -96.158793223143718, 30.161195251205861 ], [ -96.157334221998227, 30.160637251274352 ], [ -96.155238221648617, 30.160105250995574 ], [ -96.154113221734008, 30.15978625071569 ], [ -96.153415221461742, 30.159493251225644 ], [ -96.153229220845589, 30.15912125059381 ], [ -96.153113220748779, 30.158889250838193 ], [ -96.152997221204373, 30.158658250794204 ], [ -96.151561221319895, 30.157445250505415 ], [ -96.150650220554311, 30.156301250626385 ], [ -96.150133220277183, 30.155450249922751 ], [ -96.150012220242601, 30.154279249899247 ], [ -96.150407220045324, 30.152071249539919 ], [ -96.150893219856201, 30.150821249200774 ], [ -96.151136220458511, 30.149917249147578 ], [ -96.15112722027618, 30.149745249078787 ], [ -96.151118220128694, 30.149574248834508 ], [ -96.151114220530246, 30.149503248818572 ], [ -96.15111021990397, 30.14943324861553 ], [ -96.15109322058224, 30.149253249178997 ], [ -96.151075220412608, 30.149071248711365 ], [ -96.150936220613033, 30.14765324845153 ], [ -96.151089220124931, 30.14685624810804 ], [ -96.15155822010766, 30.145659248499911 ], [ -96.151744220360172, 30.145182247875283 ], [ -96.152534220506581, 30.143133247732777 ], [ -96.153536220168519, 30.141963247125407 ], [ -96.154873221227845, 30.141378247659429 ], [ -96.155967221033293, 30.141298247214873 ], [ -96.156939221191081, 30.14140424759486 ], [ -96.158853221896791, 30.142149247382779 ], [ -96.160646222444328, 30.143133247140163 ], [ -96.161983222364782, 30.144118247832438 ], [ -96.162834222769689, 30.144863247686281 ], [ -96.164509223920831, 30.14657724832233 ], [ -96.165416223317237, 30.147147248248263 ], [ -96.167027223895559, 30.148161248103523 ], [ -96.168455224574856, 30.149172248041584 ], [ -96.170278224835371, 30.150129248085246 ], [ -96.171432225246079, 30.150821248577767 ], [ -96.172616226344658, 30.151607248678488 ], [ -96.173056226306997, 30.152035248530606 ], [ -96.173497225695215, 30.152463248838366 ], [ -96.174743226260162, 30.153674249241526 ], [ -96.176296226729008, 30.154826248919516 ], [ -96.177565227605669, 30.155501249189861 ], [ -96.177653227806218, 30.155548248936345 ], [ -96.178736227862501, 30.155809249222241 ], [ -96.179666228258952, 30.155769249095091 ], [ -96.18066922765081, 30.155689249507088 ], [ -96.181368228478576, 30.155077249125419 ], [ -96.18255322860422, 30.153987249240462 ], [ -96.183221228918882, 30.152444248463457 ], [ -96.183160228728738, 30.150715248090744 ], [ -96.182644228645316, 30.149411247724309 ], [ -96.181884228439287, 30.148134247502032 ], [ -96.180330227387316, 30.146538247450128 ], [ -96.178238226772464, 30.144996246824945 ], [ -96.174592225849906, 30.143665247041266 ], [ -96.173898226014231, 30.142994247348526 ], [ -96.173349225421759, 30.14246324698999 ], [ -96.171949225530184, 30.14116524704853 ], [ -96.171767225473246, 30.139835246574833 ], [ -96.1726172255633, 30.138638246262044 ], [ -96.174410226144047, 30.137760246227504 ], [ -96.175929225723777, 30.137733246037254 ], [ -96.177144226520852, 30.138159245899406 ], [ -96.179059226928885, 30.138824246017116 ], [ -96.18183422811282, 30.140908246104996 ], [ -96.182480228278038, 30.141102246064435 ], [ -96.183575228517569, 30.141430246297848 ], [ -96.186138228570144, 30.141936246507679 ], [ -96.187809228954748, 30.141697245863487 ], [ -96.190179229917433, 30.140207245518599 ], [ -96.191789230620756, 30.13842524511708 ], [ -96.192215230306601, 30.136669244648399 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 507, "Tract": "48473680301", "Area_SqMi": 9.4854073044287404, "total_2009": 1450, "total_2010": 3325, "total_2011": 3376, "total_2012": 635, "total_2013": 635, "total_2014": 682, "total_2015": 939, "total_2016": 1104, "total_2017": 1218, "total_2018": 1633, "total_2019": 2375, "total_2020": 2312, "age1": 444, "age2": 1226, "age3": 672, "earn1": 286, "earn2": 568, "earn3": 1488, "naics_s01": 4, "naics_s02": 55, "naics_s03": 0, "naics_s04": 114, "naics_s05": 178, "naics_s06": 141, "naics_s07": 365, "naics_s08": 7, "naics_s09": 31, "naics_s10": 36, "naics_s11": 118, "naics_s12": 9, "naics_s13": 0, "naics_s14": 51, "naics_s15": 904, "naics_s16": 63, "naics_s17": 0, "naics_s18": 127, "naics_s19": 139, "naics_s20": 0, "race1": 1404, "race2": 734, "race3": 14, "race4": 153, "race5": 1, "race6": 36, "ethnicity1": 1830, "ethnicity2": 512, "edu1": 285, "edu2": 495, "edu3": 564, "edu4": 554, "Shape_Length": 129224.53513595923, "Shape_Area": 264436921.2106224, "total_2021": 2152, "total_2022": 2342 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.005279180614053, 30.082286240603572 ], [ -96.005301180116106, 30.081772240754887 ], [ -96.00525418052311, 30.080212240606002 ], [ -96.005243179704252, 30.078972239997835 ], [ -96.005239180204555, 30.078850240356093 ], [ -96.005225179922363, 30.078435239815573 ], [ -96.005205179916985, 30.077793239274012 ], [ -96.005171179735896, 30.076434239237496 ], [ -96.005166179482003, 30.076047239162996 ], [ -96.005176179701806, 30.075765239281445 ], [ -96.004724179931003, 30.075656239305065 ], [ -96.004157179376847, 30.075520239023959 ], [ -96.003369179766167, 30.075325239248645 ], [ -96.002918179598012, 30.075214239339214 ], [ -96.002512178720139, 30.075113239400739 ], [ -96.00129417833341, 30.074825239643289 ], [ -96.000888178283745, 30.074729239639513 ], [ -96.000438178573944, 30.074622239643251 ], [ -95.999091178429111, 30.074303239451289 ], [ -95.998642177943267, 30.074197239302929 ], [ -95.998555177928282, 30.074171238920631 ], [ -95.998468178508745, 30.074146239295359 ], [ -95.998090177836929, 30.074034239281456 ], [ -95.997851178087757, 30.073977239634186 ], [ -95.996564177609329, 30.073675238794959 ], [ -95.995462176867761, 30.07338923895869 ], [ -95.994668177299204, 30.073184239199939 ], [ -95.993834177054566, 30.072977239220219 ], [ -95.99286917649961, 30.072737239019748 ], [ -95.992207176030831, 30.072570239458067 ], [ -95.991994176449495, 30.072516239397569 ], [ -95.991828175823045, 30.07247423905288 ], [ -95.991282176313263, 30.07234123895293 ], [ -95.990892176350357, 30.072247239457432 ], [ -95.98939717556847, 30.071790238859133 ], [ -95.988518175578918, 30.071559239491357 ], [ -95.987593175209881, 30.071315238946514 ], [ -95.987315175388872, 30.071250238694933 ], [ -95.984587174251473, 30.070610238669172 ], [ -95.983692174207491, 30.070390238876687 ], [ -95.982487173446629, 30.070095239023015 ], [ -95.982460173502318, 30.07008823917171 ], [ -95.982379174137932, 30.070068238596665 ], [ -95.982353173763642, 30.070062239406631 ], [ -95.981816173241654, 30.069929238844711 ], [ -95.980205172786299, 30.069531239333013 ], [ -95.97966917301018, 30.069399238892629 ], [ -95.979169172760564, 30.069277239319458 ], [ -95.978135172299645, 30.069027238752792 ], [ -95.977669172774469, 30.068914238909031 ], [ -95.97724917226293, 30.068812239231207 ], [ -95.976791172308424, 30.068700239196101 ], [ -95.975654172043321, 30.068422239132396 ], [ -95.975275171787402, 30.068330238675571 ], [ -95.975059171444528, 30.068277238444459 ], [ -95.974412171839745, 30.0681182392204 ], [ -95.974197171825367, 30.068066239244999 ], [ -95.974146171846357, 30.068053238603255 ], [ -95.973996171046664, 30.068016238908655 ], [ -95.973946171607736, 30.068004238960086 ], [ -95.973795171810607, 30.067967239110157 ], [ -95.97369917097987, 30.06794423871078 ], [ -95.973344171244236, 30.067862238749964 ], [ -95.973241171415438, 30.067839239263858 ], [ -95.972643171564712, 30.067697238400953 ], [ -95.97259317137852, 30.067685238826311 ], [ -95.97199117149313, 30.067543238784292 ], [ -95.97121617044003, 30.067361238649589 ], [ -95.970991170453019, 30.067308238364109 ], [ -95.970441170989005, 30.067179238521241 ], [ -95.969990170212895, 30.067072238634644 ], [ -95.968638170181578, 30.066754238534415 ], [ -95.968445169921466, 30.066709239150139 ], [ -95.968188169773924, 30.066646238907609 ], [ -95.968086169517093, 30.066620238373325 ], [ -95.967984170322381, 30.066594238686609 ], [ -95.966975169540675, 30.066338238746599 ], [ -95.965864168924753, 30.066067238683221 ], [ -95.965206169548267, 30.065907238590416 ], [ -95.964592169006423, 30.065761238411771 ], [ -95.96297216900291, 30.065359238354013 ], [ -95.961173168024871, 30.064914238625583 ], [ -95.960673168048544, 30.064790238742486 ], [ -95.960393167893812, 30.064724238717417 ], [ -95.960316168371847, 30.06470623907876 ], [ -95.960125168190757, 30.064660238570031 ], [ -95.958885167251836, 30.064368238842484 ], [ -95.95849116772159, 30.06427623896511 ], [ -95.958024167600172, 30.064166238994744 ], [ -95.957491166795492, 30.064035238930774 ], [ -95.956666167356872, 30.063834238188122 ], [ -95.956558166554032, 30.063808238190589 ], [ -95.955787166790728, 30.063621238633569 ], [ -95.955727166655294, 30.063607238315065 ], [ -95.954895166783018, 30.063407238449368 ], [ -95.953838166624479, 30.063147238760394 ], [ -95.953476166253495, 30.063059238504856 ], [ -95.952706166171467, 30.062873238126269 ], [ -95.951107165672553, 30.06248523892878 ], [ -95.950054165184312, 30.062230238791681 ], [ -95.947426164233889, 30.061607238628259 ], [ -95.94597916376749, 30.06123623809064 ], [ -95.945623163568115, 30.061148238034885 ], [ -95.944331163352814, 30.060830238145474 ], [ -95.942684163634397, 30.060443238810798 ], [ -95.939144162714825, 30.059578238332527 ], [ -95.937821162025728, 30.059280237896193 ], [ -95.937448161890401, 30.059195237993965 ], [ -95.937409161310939, 30.059187238053745 ], [ -95.936496161115841, 30.058954238688489 ], [ -95.93633516133076, 30.058915238111034 ], [ -95.935964161919102, 30.058826238436598 ], [ -95.935624161661423, 30.058744238156489 ], [ -95.935048160916011, 30.058605238190676 ], [ -95.934607161212213, 30.05849723830325 ], [ -95.934269161189775, 30.058414238721308 ], [ -95.934195160602187, 30.058395238201182 ], [ -95.933974160939727, 30.05834123825105 ], [ -95.933901160460479, 30.058323238639279 ], [ -95.933899160458012, 30.058268238076657 ], [ -95.93389416135679, 30.058106238214524 ], [ -95.933893160350252, 30.058052237793238 ], [ -95.933891160768013, 30.058007238231404 ], [ -95.933888161289431, 30.057872238469034 ], [ -95.933887160782916, 30.057827238230335 ], [ -95.933884160959622, 30.057733237850581 ], [ -95.933881161114698, 30.057639238369294 ], [ -95.9338751612393, 30.057455238167258 ], [ -95.933873160418955, 30.057362237920486 ], [ -95.933860161127853, 30.056934238436753 ], [ -95.933835160398999, 30.05605223792676 ], [ -95.93383116042331, 30.055651237405595 ], [ -95.933827160972712, 30.055224238006641 ], [ -95.933824160723645, 30.054950237422098 ], [ -95.933815161055705, 30.054128237328296 ], [ -95.933813160826617, 30.053855237705587 ], [ -95.933805160436222, 30.053100237634617 ], [ -95.933801160730255, 30.052767236730229 ], [ -95.933788161061258, 30.05253123671379 ], [ -95.933785160252, 30.052491237283682 ], [ -95.933779160991065, 30.052373236952551 ], [ -95.933777160184405, 30.052334236790621 ], [ -95.933774160711906, 30.051999237104962 ], [ -95.933766160379164, 30.050994237101719 ], [ -95.933764159981976, 30.050659236576742 ], [ -95.933764159992251, 30.050437236743313 ], [ -95.933764160300257, 30.049784236129671 ], [ -95.933763160884141, 30.049774236667474 ], [ -95.933759160818241, 30.049553236573736 ], [ -95.933757160730195, 30.049486236753644 ], [ -95.93375416046446, 30.04928623615854 ], [ -95.933753160321359, 30.049220236505601 ], [ -95.933746160282368, 30.048880236694448 ], [ -95.933734160049966, 30.048290235915623 ], [ -95.933725160296902, 30.047863235865652 ], [ -95.933719160364234, 30.04752423605736 ], [ -95.933716160739678, 30.047383236212021 ], [ -95.933708159849417, 30.046977235534914 ], [ -95.933709160675008, 30.046963235977962 ], [ -95.933723160612047, 30.046824235738399 ], [ -95.93373716000238, 30.046676236167595 ], [ -95.933748159942482, 30.046554235656323 ], [ -95.933775160369393, 30.046280235480488 ], [ -95.933854160551007, 30.046086235997841 ], [ -95.933977160210787, 30.045785235848747 ], [ -95.934080159995617, 30.045535235689314 ], [ -95.934252159995339, 30.045116235792598 ], [ -95.934392160572415, 30.044932235999585 ], [ -95.934920160104426, 30.044243235617447 ], [ -95.935852160516021, 30.043511235001681 ], [ -95.936363160350808, 30.043054235333894 ], [ -95.935693161088437, 30.042834234718459 ], [ -95.935585161087275, 30.042817235331317 ], [ -95.935250160975528, 30.042856235297812 ], [ -95.935175160321023, 30.042856235080418 ], [ -95.935080160874463, 30.042834235232927 ], [ -95.934852160416469, 30.042746234683641 ], [ -95.934638159873458, 30.042630234797151 ], [ -95.934568159877571, 30.042575235116416 ], [ -95.934461160202474, 30.042463234992102 ], [ -95.934442160414022, 30.042443235376883 ], [ -95.93430915987534, 30.042345234786776 ], [ -95.934240159980064, 30.042312235327227 ], [ -95.934126159992033, 30.042279235345134 ], [ -95.934000159787587, 30.042229235309247 ], [ -95.933880159880061, 30.042152235092047 ], [ -95.933785160534981, 30.042075234813048 ], [ -95.933728160435749, 30.042004234650587 ], [ -95.933501160177926, 30.041581235333318 ], [ -95.933418160153124, 30.041449234702252 ], [ -95.933115159836646, 30.041091234559669 ], [ -95.932989160252404, 30.040954234572474 ], [ -95.9329071598235, 30.040888235238246 ], [ -95.932812159304035, 30.040855234510641 ], [ -95.932686159812576, 30.040828235082408 ], [ -95.932578159950253, 30.040773235124327 ], [ -95.932142159790033, 30.040487234572897 ], [ -95.932060159422079, 30.040459234590827 ], [ -95.931713159916313, 30.040399235156837 ], [ -95.931656159726771, 30.040371234453811 ], [ -95.931372159269941, 30.040179234674195 ], [ -95.931315159811902, 30.040157234296913 ], [ -95.931094159800381, 30.040113234785547 ], [ -95.930917159230532, 30.040058234312859 ], [ -95.930715158814422, 30.039970234508488 ], [ -95.930614159689924, 30.039910234333359 ], [ -95.930311159047861, 30.039673234719668 ], [ -95.930210159384927, 30.039635234405196 ], [ -95.930001158766174, 30.039602234706138 ], [ -95.92988115854881, 30.039547234505225 ], [ -95.929748158732437, 30.039470234814626 ], [ -95.929465158449688, 30.039223234196601 ], [ -95.929452158719883, 30.039212234883252 ], [ -95.92940115869223, 30.039179234369833 ], [ -95.929262158383153, 30.039140234179779 ], [ -95.929003159111943, 30.039151234243231 ], [ -95.928927158732662, 30.039135234966341 ], [ -95.928858158722647, 30.039091234314885 ], [ -95.928776158591674, 30.039003234826996 ], [ -95.928763158760646, 30.038843234524311 ], [ -95.928713158920246, 30.038651234731166 ], [ -95.928504158190037, 30.038124234067762 ], [ -95.928460158247148, 30.037953234359051 ], [ -95.928466158496803, 30.037761234639579 ], [ -95.928498158773309, 30.037211234036608 ], [ -95.92847315897987, 30.036986233816766 ], [ -95.92845515881946, 30.036960233982004 ], [ -95.928390158510211, 30.036865234239606 ], [ -95.928176158316248, 30.036618233659162 ], [ -95.928150158123287, 30.036557233904517 ], [ -95.928144157949788, 30.036502234248029 ], [ -95.928150158245344, 30.036359233633959 ], [ -95.928182158489236, 30.036233234110036 ], [ -95.92820715827348, 30.036172234158762 ], [ -95.928403158548022, 30.035936234187904 ], [ -95.928567158158472, 30.035837233671042 ], [ -95.928637158798907, 30.035760233600829 ], [ -95.928643158527862, 30.035634233521854 ], [ -95.928631158922769, 30.035579233927958 ], [ -95.928593158896859, 30.035540233655308 ], [ -95.928517158570472, 30.035502233826893 ], [ -95.928441158575055, 30.035480233723707 ], [ -95.928283158411588, 30.035409233524661 ], [ -95.928100158520479, 30.035348234006026 ], [ -95.92804915861467, 30.035343233597807 ], [ -95.928005158723536, 30.035321233762588 ], [ -95.927961158276673, 30.035295234184002 ], [ -95.927866157965695, 30.035238234154388 ], [ -95.927734157956792, 30.03511723379912 ], [ -95.927607157728772, 30.035046233967829 ], [ -95.927255158080854, 30.034926234185249 ], [ -95.927235158577346, 30.034919234018609 ], [ -95.926830157784636, 30.034831233612582 ], [ -95.926691158230383, 30.034743234020159 ], [ -95.926464158128596, 30.034628234159701 ], [ -95.926407157397534, 30.03458423398488 ], [ -95.926363157469069, 30.034513233431419 ], [ -95.926350157658575, 30.034463233814837 ], [ -95.926363157658145, 30.034216233581805 ], [ -95.926338157976119, 30.034155233707146 ], [ -95.926306157738168, 30.034106233496296 ], [ -95.926129157387024, 30.033968233936175 ], [ -95.926047158067192, 30.033891233522304 ], [ -95.925990157361156, 30.033798233873227 ], [ -95.925902157906677, 30.033512233469427 ], [ -95.925813157471069, 30.033402233868276 ], [ -95.925750157518578, 30.033336233937817 ], [ -95.925630157500834, 30.033237233573061 ], [ -95.925561157833755, 30.033155233669135 ], [ -95.925548157238978, 30.033012233183534 ], [ -95.925643157569922, 30.032853233787566 ], [ -95.925649157123772, 30.032820233464509 ], [ -95.925624157858152, 30.032732233492773 ], [ -95.925586157947649, 30.03269323318397 ], [ -95.925517157449804, 30.032649233277152 ], [ -95.925409158014602, 30.032605233572198 ], [ -95.925365157282627, 30.032572233555985 ], [ -95.925327157201295, 30.032528233511506 ], [ -95.92524515778301, 30.032320233495362 ], [ -95.925119157886073, 30.032160233105142 ], [ -95.924885157035476, 30.032017233581094 ], [ -95.924721156788294, 30.031880233354268 ], [ -95.924411157022931, 30.031583233407869 ], [ -95.924285157575099, 30.031495233512061 ], [ -95.924209156713104, 30.031396233466918 ], [ -95.924190157437707, 30.031352232988727 ], [ -95.924159156938728, 30.031182232690945 ], [ -95.924134156687245, 30.030924233170239 ], [ -95.924052156843743, 30.030676233145723 ], [ -95.923887157260978, 30.030346232913299 ], [ -95.923849157039811, 30.030253233019025 ], [ -95.923805157321709, 30.030066233038188 ], [ -95.923780156829352, 30.030000232859617 ], [ -95.923729156787289, 30.029929232525934 ], [ -95.923622157039176, 30.029863233081144 ], [ -95.923388156354235, 30.029764233087665 ], [ -95.923212156905123, 30.029632232761671 ], [ -95.922946156984381, 30.029483232756952 ], [ -95.922833156483264, 30.029434233065228 ], [ -95.922687156551831, 30.02940123273466 ], [ -95.922631156418319, 30.029324232455629 ], [ -95.922605157044501, 30.029264233103532 ], [ -95.922586156990562, 30.029170232996709 ], [ -95.922567156451805, 30.028763232354045 ], [ -95.922536156440529, 30.028665232915138 ], [ -95.922454157070533, 30.028538232466438 ], [ -95.922429156588194, 30.028461232712303 ], [ -95.922448156551781, 30.028258233012757 ], [ -95.922397156572274, 30.028203232817908 ], [ -95.922264156458112, 30.028137232310844 ], [ -95.92225815640009, 30.02798323247216 ], [ -95.922277156723624, 30.027923232194762 ], [ -95.922309156758431, 30.02787923258219 ], [ -95.92234015628101, 30.027857232936402 ], [ -95.922435157009076, 30.027818232878065 ], [ -95.922662157118367, 30.027769232345456 ], [ -95.922770157011129, 30.027730232845833 ], [ -95.922820156432309, 30.027703232651103 ], [ -95.922858156300165, 30.027620232145029 ], [ -95.922871156694526, 30.027422232696267 ], [ -95.922852156573171, 30.027329232493329 ], [ -95.922814156351663, 30.027236232157083 ], [ -95.922763156435124, 30.027164232310692 ], [ -95.922656156476876, 30.027065232347521 ], [ -95.92257415654457, 30.027027232227585 ], [ -95.922479156870097, 30.027010232534575 ], [ -95.922403156471802, 30.027010232710015 ], [ -95.922321156500217, 30.027027232367232 ], [ -95.922265155989223, 30.027027232097527 ], [ -95.922189156462665, 30.027016232004176 ], [ -95.922094156408406, 30.026972232025471 ], [ -95.922006156174177, 30.026862232473249 ], [ -95.921968156129353, 30.026785232603231 ], [ -95.921949156621608, 30.026735232087027 ], [ -95.921930156796748, 30.026587232668806 ], [ -95.921911156539167, 30.026565232067092 ], [ -95.921873156214602, 30.026549232606165 ], [ -95.921728156689611, 30.026543232365114 ], [ -95.921677156272267, 30.026532232509467 ], [ -95.921481156670211, 30.026439232668171 ], [ -95.921361155820293, 30.026417231859085 ], [ -95.921279156068152, 30.026406231837516 ], [ -95.921064156529766, 30.026411232650403 ], [ -95.920913156230213, 30.026384232588718 ], [ -95.920856156318891, 30.026334231988255 ], [ -95.920825155667387, 30.026241232570573 ], [ -95.92074215632654, 30.026076232128116 ], [ -95.920705156245006, 30.026021232555784 ], [ -95.920629155610982, 30.025944232278608 ], [ -95.920547156393937, 30.02588923200673 ], [ -95.920484156134634, 30.025823231943413 ], [ -95.920389156175403, 30.025669232533854 ], [ -95.920364155602186, 30.025642232578853 ], [ -95.920313155941713, 30.02561423242247 ], [ -95.920187155660514, 30.025570232549789 ], [ -95.920117156190429, 30.025521232293535 ], [ -95.92006715566626, 30.025449232564082 ], [ -95.920042155392807, 30.025400232191242 ], [ -95.920029156234435, 30.025257232406464 ], [ -95.920073155945232, 30.025196232394698 ], [ -95.920187156011806, 30.025119232412255 ], [ -95.920218156225602, 30.025081231601128 ], [ -95.920244156114393, 30.02492723207839 ], [ -95.920269155613028, 30.024894232367675 ], [ -95.920319155502057, 30.024861231691499 ], [ -95.920446155955446, 30.024828232370318 ], [ -95.920578156166883, 30.024768231965403 ], [ -95.920616155569476, 30.024735232308398 ], [ -95.92064815546189, 30.024685231632315 ], [ -95.920667156116721, 30.024603232050449 ], [ -95.920661155523433, 30.024537231520728 ], [ -95.920642155883598, 30.024504232345524 ], [ -95.920616155965291, 30.024476232145599 ], [ -95.920585156003682, 30.024460232079175 ], [ -95.920541156303443, 30.024399232125955 ], [ -95.920534155972206, 30.024268231874792 ], [ -95.920522155966182, 30.02420723158178 ], [ -95.920496156095311, 30.024163231497468 ], [ -95.920383155576701, 30.024048231993344 ], [ -95.920339155304077, 30.023943232108365 ], [ -95.920288155942288, 30.023762231959207 ], [ -95.920092155909614, 30.023311231455438 ], [ -95.920042155339473, 30.023229231379446 ], [ -95.920004155210236, 30.02313523188862 ], [ -95.919966155822323, 30.023080231675571 ], [ -95.919922155672765, 30.023042231771015 ], [ -95.919827155310927, 30.022981232015727 ], [ -95.919726155297326, 30.022937231626134 ], [ -95.919676155603639, 30.022926231330057 ], [ -95.919461155987534, 30.022926231544698 ], [ -95.91936015525431, 30.022943231426691 ], [ -95.919202155113467, 30.023058231984532 ], [ -95.919170155545288, 30.023075231784382 ], [ -95.919126155387275, 30.023069231348433 ], [ -95.919012155028881, 30.022998231889311 ], [ -95.918924155750133, 30.022921231507549 ], [ -95.918836155341424, 30.022860231809855 ], [ -95.918760155119841, 30.022789231728815 ], [ -95.91873515485004, 30.02275623181017 ], [ -95.918709155345041, 30.02265123165871 ], [ -95.91869015567741, 30.022613231581246 ], [ -95.918627155514002, 30.022547231399763 ], [ -95.918469155358551, 30.022410231980679 ], [ -95.918311155101293, 30.022344231409249 ], [ -95.918267154807239, 30.022311231509573 ], [ -95.918242154814706, 30.022278231493519 ], [ -95.918217155161614, 30.022190231397456 ], [ -95.918217155511229, 30.022096231114581 ], [ -95.918236154999491, 30.02204123181404 ], [ -95.918343154841764, 30.021866231593936 ], [ -95.91834915534173, 30.021822231249391 ], [ -95.918349155296838, 30.021646231681256 ], [ -95.918337155610345, 30.021503231834771 ], [ -95.918312154757231, 30.021470231798343 ], [ -95.918141155657267, 30.021393231348213 ], [ -95.917958154800218, 30.02124423160565 ], [ -95.917851155106618, 30.021074230978183 ], [ -95.91783215527073, 30.021030231121582 ], [ -95.917825155344943, 30.020981231596981 ], [ -95.917705155419725, 30.020821231592112 ], [ -95.917661155230491, 30.020744231544697 ], [ -95.917680154867327, 30.020684230810669 ], [ -95.917769155450884, 30.02061223117251 ], [ -95.917832154843268, 30.020535230973724 ], [ -95.917851155311837, 30.020480230818674 ], [ -95.917838155225198, 30.020387230902188 ], [ -95.917750155220233, 30.020299231189579 ], [ -95.917503154456455, 30.02010123123765 ], [ -95.917099154603477, 30.019749230976242 ], [ -95.916986154619281, 30.019601231223351 ], [ -95.916967154396019, 30.0195572311973 ], [ -95.916960154744316, 30.019431231021628 ], [ -95.91702415447223, 30.019194230783068 ], [ -95.917030154985369, 30.019101230813366 ], [ -95.917011155076779, 30.018996231006785 ], [ -95.916929154300192, 30.018903230561435 ], [ -95.916834154759002, 30.01883123098207 ], [ -95.916601155135893, 30.018683230541136 ], [ -95.916537154865821, 30.018617230614669 ], [ -95.916235154185017, 30.017589230351525 ], [ -95.916165154584419, 30.01724323077579 ], [ -95.916096153989017, 30.017128230743346 ], [ -95.915900154261621, 30.01697923078402 ], [ -95.91562815440885, 30.016880230832403 ], [ -95.915395154252238, 30.016721230523263 ], [ -95.914252154149679, 30.016127230032804 ], [ -95.914163153426799, 30.016045230502723 ], [ -95.913885153548378, 30.01585223018014 ], [ -95.913841154129827, 30.015836230349887 ], [ -95.913740153880752, 30.015830230029344 ], [ -95.913709153736193, 30.015841230205318 ], [ -95.913380153715849, 30.015880230809337 ], [ -95.913323153863047, 30.015874230250549 ], [ -95.913178153587893, 30.015819230578195 ], [ -95.912604153143548, 30.015456230615271 ], [ -95.912414153750206, 30.015302229911562 ], [ -95.912263153419431, 30.015198230550027 ], [ -95.912162153149751, 30.015187230228602 ], [ -95.912010152838121, 30.015203230145023 ], [ -95.911625153201257, 30.015214230638019 ], [ -95.911473153028197, 30.015203230673041 ], [ -95.911113153476165, 30.015071229981537 ], [ -95.911000152618939, 30.014989230581129 ], [ -95.910949152552078, 30.014917230109649 ], [ -95.910892153052103, 30.014741230557838 ], [ -95.910823153441271, 30.01462023062723 ], [ -95.910779153071701, 30.014571229907737 ], [ -95.910652152515198, 30.014489230463106 ], [ -95.910526152787384, 30.014472230177056 ], [ -95.910286152922453, 30.01448322997615 ], [ -95.910135152662747, 30.014461230456849 ], [ -95.90998315318086, 30.014406230504314 ], [ -95.909819152826188, 30.014312230115088 ], [ -95.909712152412837, 30.014214230450474 ], [ -95.909648152865458, 30.014093230247532 ], [ -95.909617152988247, 30.013856229740412 ], [ -95.909573152130648, 30.013735230131612 ], [ -95.909541152776058, 30.013686229767327 ], [ -95.909472152294441, 30.013527230365025 ], [ -95.909465152399193, 30.013455229721529 ], [ -95.909560152409895, 30.013356229646401 ], [ -95.909667152187126, 30.013285230422003 ], [ -95.909699152876826, 30.013235230319303 ], [ -95.909705152459765, 30.013191230128875 ], [ -95.909699153079401, 30.013147230098276 ], [ -95.90959815269126, 30.013043229654457 ], [ -95.90955415229422, 30.012960229574979 ], [ -95.909447152521111, 30.012862229628006 ], [ -95.909402152109664, 30.0128502302891 ], [ -95.909346152263936, 30.012856229534581 ], [ -95.909219152793312, 30.012905229965128 ], [ -95.909131152380155, 30.012905229704888 ], [ -95.908891152619503, 30.01292722990403 ], [ -95.908638151895673, 30.012845229930274 ], [ -95.908430152586789, 30.012806230067788 ], [ -95.908291152632032, 30.012762229668205 ], [ -95.907893152297149, 30.012586229734563 ], [ -95.907577152512317, 30.012416229547167 ], [ -95.907521152547645, 30.012377229743425 ], [ -95.90747015236775, 30.01231722980457 ], [ -95.907451151496048, 30.012240230095337 ], [ -95.90744515238886, 30.01188323005038 ], [ -95.907521152254319, 30.011674229939786 ], [ -95.907515151501542, 30.011201229275589 ], [ -95.907489151594945, 30.01097022983387 ], [ -95.907489151546486, 30.010866229511464 ], [ -95.907534151568541, 30.010729229979521 ], [ -95.907591152047303, 30.01063522982799 ], [ -95.907717152146105, 30.010487229884621 ], [ -95.907850152511671, 30.0103882292881 ], [ -95.908001152450566, 30.010311229127293 ], [ -95.908077151790224, 30.010262229349305 ], [ -95.908184152349833, 30.010135229103607 ], [ -95.908210151910495, 30.010075229850603 ], [ -95.908279151662441, 30.009772229673061 ], [ -95.908374152615693, 30.009492229033171 ], [ -95.908462151645494, 30.009393229185143 ], [ -95.908532152142413, 30.009338229532876 ], [ -95.90862715212306, 30.009206229221995 ], [ -95.90867115232173, 30.009086228764431 ], [ -95.908671152594692, 30.009031229212436 ], [ -95.908652152216604, 30.008965228971274 ], [ -95.908564152010825, 30.008844228867346 ], [ -95.908532152345046, 30.008789229368588 ], [ -95.908519152089838, 30.008739229081282 ], [ -95.908507152619961, 30.008618228799293 ], [ -95.908538152301077, 30.00839822910612 ], [ -95.908532152252661, 30.008278228731143 ], [ -95.908501152021259, 30.008157228889608 ], [ -95.908412152252382, 30.007975228949849 ], [ -95.90831115238629, 30.007920228941202 ], [ -95.908223151906114, 30.007904228893583 ], [ -95.908071152467159, 30.007860229387553 ], [ -95.908027152003882, 30.007838228725905 ], [ -95.90797715148129, 30.00779422927841 ], [ -95.907939151919678, 30.007689228809799 ], [ -95.907920152292618, 30.007316228638743 ], [ -95.907945151684686, 30.00723322842456 ], [ -95.907977151492233, 30.007189229191681 ], [ -95.908059151735046, 30.007112229235275 ], [ -95.908236151645198, 30.007035228890452 ], [ -95.908362152326148, 30.006958228795884 ], [ -95.908526152318785, 30.006755228418463 ], [ -95.908634152039951, 30.006656228410108 ], [ -95.908678151652936, 30.006568228756976 ], [ -95.908691152017383, 30.006519228338348 ], [ -95.908691151792183, 30.006469228443006 ], [ -95.908634151518214, 30.006283228650361 ], [ -95.908571152322011, 30.006200228476199 ], [ -95.908514152409481, 30.006162228424898 ], [ -95.908476152203647, 30.006123228837172 ], [ -95.908369151462921, 30.005991228585977 ], [ -95.908318151454139, 30.005859228297023 ], [ -95.908299151655896, 30.005590228458423 ], [ -95.908261151838431, 30.005474228595968 ], [ -95.90820515204004, 30.005376228587732 ], [ -95.908123152053491, 30.005271228883171 ], [ -95.908034151974917, 30.005183228602821 ], [ -95.907987151349502, 30.005156228597798 ], [ -95.907838152134516, 30.005068227993142 ], [ -95.907719151701485, 30.005013228219358 ], [ -95.907580152100707, 30.004963228856269 ], [ -95.907365151455636, 30.004908228119643 ], [ -95.907232151203559, 30.004853228696799 ], [ -95.907144151096176, 30.004793228501306 ], [ -95.906873151668549, 30.004567228674841 ], [ -95.906835151314212, 30.004545228532869 ], [ -95.906607151275693, 30.004452228048784 ], [ -95.906468151525871, 30.004419228360039 ], [ -95.906127151113239, 30.004298228221753 ], [ -95.906064151499351, 30.004226227929212 ], [ -95.905976151314093, 30.003924228469419 ], [ -95.905850151532505, 30.003787228181075 ], [ -95.905818151331857, 30.003721228456023 ], [ -95.905749150968262, 30.003633227824512 ], [ -95.905641150671173, 30.003556227995308 ], [ -95.905376151238286, 30.003479228635719 ], [ -95.905250150611081, 30.003385228078184 ], [ -95.905149150743952, 30.003336227839615 ], [ -95.905023151411768, 30.0033302286176 ], [ -95.904953151047124, 30.003391227989784 ], [ -95.904909151124173, 30.003402228039768 ], [ -95.904757151126006, 30.003413227841857 ], [ -95.904688151119942, 30.003429228207406 ], [ -95.904505151083043, 30.00351222790162 ], [ -95.90442915123549, 30.003539228689366 ], [ -95.904347150610377, 30.003555228025785 ], [ -95.904050150255017, 30.003588228080481 ], [ -95.903848150793891, 30.003588228527075 ], [ -95.903772150742384, 30.003577228295381 ], [ -95.903684150251507, 30.003550228450624 ], [ -95.903488150856731, 30.003418228490286 ], [ -95.903457150085572, 30.003412228095659 ], [ -95.903400150741518, 30.003379228207763 ], [ -95.903387150878473, 30.00335722845735 ], [ -95.903387150848971, 30.003253228659013 ], [ -95.903356150352636, 30.003154227849933 ], [ -95.903210150772779, 30.002967227781273 ], [ -95.902750150370835, 30.002489228270996 ], [ -95.902516150392941, 30.00231822811093 ], [ -95.902447150116785, 30.002285228130582 ], [ -95.902345150283253, 30.002252227968917 ], [ -95.902402150075417, 30.002405228253927 ], [ -95.907525152174145, 30.016431230987624 ], [ -95.907749152286897, 30.017045231098166 ], [ -95.909521153326139, 30.021902232222708 ], [ -95.909552153096897, 30.021987231527966 ], [ -95.909583152891983, 30.022072231725229 ], [ -95.909606152773037, 30.022136231516061 ], [ -95.909643153173178, 30.022235231661963 ], [ -95.909678152969121, 30.022331231991945 ], [ -95.909702153146398, 30.022397232077783 ], [ -95.913680154137595, 30.033302233982827 ], [ -95.914122154304991, 30.034513234325804 ], [ -95.914212154964957, 30.034761233848791 ], [ -95.915101155557565, 30.037194234470327 ], [ -95.918048156083145, 30.045273236120639 ], [ -95.918654156652565, 30.046935236071576 ], [ -95.920424156795463, 30.051785237456979 ], [ -95.920474156999589, 30.051922237459461 ], [ -95.921081157352631, 30.053585237986209 ], [ -95.921171157600639, 30.053832237620448 ], [ -95.921277157548445, 30.054065237421415 ], [ -95.921321157653153, 30.054332237552416 ], [ -95.921322157259496, 30.054510237784967 ], [ -95.921323158005848, 30.054812238442075 ], [ -95.921323157701963, 30.054995237916685 ], [ -95.921180157593312, 30.055296237714415 ], [ -95.92137215780906, 30.055630238377532 ], [ -95.921432158011442, 30.056073238320604 ], [ -95.921432158071298, 30.056124237990847 ], [ -95.921419158126, 30.056961238209734 ], [ -95.921431157162999, 30.057769239045644 ], [ -95.921463157580703, 30.058530238451407 ], [ -95.921467157881466, 30.058713239049332 ], [ -95.921447157998884, 30.05916923890479 ], [ -95.921437158185398, 30.060091238835394 ], [ -95.921437157398969, 30.060101238932223 ], [ -95.921442157503051, 30.06066223881367 ], [ -95.921446157637575, 30.060943239635986 ], [ -95.92145215770195, 30.06160823955322 ], [ -95.921453158033799, 30.06168123952499 ], [ -95.921466157587389, 30.062440239563639 ], [ -95.921471157382527, 30.062616239875982 ], [ -95.921475157915225, 30.062776239323536 ], [ -95.921488158169254, 30.063270239504345 ], [ -95.921498157832787, 30.063634239945504 ], [ -95.921507158307961, 30.063976239972909 ], [ -95.921509157612945, 30.06403323967438 ], [ -95.922194158433598, 30.064002239967188 ], [ -95.923282158831384, 30.063953239893369 ], [ -95.92484715884386, 30.063915239903739 ], [ -95.925091158583527, 30.063910239508186 ], [ -95.925107158800387, 30.064777240035827 ], [ -95.925105158968066, 30.065072239768277 ], [ -95.925100158460921, 30.065574239671417 ], [ -95.925116158527416, 30.066359240049085 ], [ -95.92511715877302, 30.066394240207419 ], [ -95.925163158669889, 30.067205240356429 ], [ -95.925232159017611, 30.068721240542011 ], [ -95.926570158971671, 30.06868824047103 ], [ -95.92685016000452, 30.069233240516212 ], [ -95.926866159364536, 30.069279240555417 ], [ -95.926892159363845, 30.069352240444051 ], [ -95.926904159471761, 30.069386241199833 ], [ -95.926927159289306, 30.069448241094261 ], [ -95.926939159447443, 30.069482240943866 ], [ -95.926975159970084, 30.069584240483579 ], [ -95.927020160123632, 30.069712240510459 ], [ -95.927063159952837, 30.069832240579746 ], [ -95.927121159683907, 30.070011241049688 ], [ -95.927157159808701, 30.070119240902578 ], [ -95.927215159227629, 30.07029524064717 ], [ -95.927524160123497, 30.071236241092414 ], [ -95.927640159723538, 30.071587241022094 ], [ -95.927952160333007, 30.072541241420534 ], [ -95.928068159834254, 30.072847241857975 ], [ -95.928225159919904, 30.073248241387059 ], [ -95.928231159727062, 30.073262241920446 ], [ -95.928312160643685, 30.073469241311578 ], [ -95.928881160549395, 30.07500824213562 ], [ -95.929333160889186, 30.07623424186551 ], [ -95.92940516091015, 30.076430242287334 ], [ -95.929478160463205, 30.076626242015127 ], [ -95.930169161222153, 30.078497242270505 ], [ -95.932241161291941, 30.084109243465704 ], [ -95.93293316173002, 30.085981243702257 ], [ -95.933380161676894, 30.087192244271161 ], [ -95.934723162458127, 30.090827245192031 ], [ -95.935171162626148, 30.092039244865131 ], [ -95.93546016275539, 30.092823245212774 ], [ -95.935490162703246, 30.092905245287369 ], [ -95.936329163605507, 30.095177245286113 ], [ -95.936568163090854, 30.095822245829456 ], [ -95.936619163227249, 30.095962245519271 ], [ -95.936640163134982, 30.095944245562571 ], [ -95.936706163049308, 30.095893246051425 ], [ -95.936728163351802, 30.095876246214829 ], [ -95.936110163081295, 30.094302245158584 ], [ -95.935562162642157, 30.092905245587819 ], [ -95.934773162211243, 30.090889244882899 ], [ -95.934647162139925, 30.090377244803847 ], [ -95.934560162559492, 30.089959245025035 ], [ -95.934530162273461, 30.089508244582976 ], [ -95.934527162566411, 30.089461244627152 ], [ -95.934512162174755, 30.087818244066241 ], [ -95.934972162668544, 30.087771244522965 ], [ -95.935162162758274, 30.087765244486157 ], [ -95.937118162532286, 30.087704244438722 ], [ -95.937771163158217, 30.087684244328056 ], [ -95.939761163254971, 30.087622243974252 ], [ -95.940054164207183, 30.087612244403424 ], [ -95.943203165107548, 30.087514243417687 ], [ -95.94690316505185, 30.087399244113094 ], [ -95.948784165561591, 30.087341243916637 ], [ -95.949187165751113, 30.087329243697052 ], [ -95.955394168029628, 30.087148242984039 ], [ -95.958586168324686, 30.087048243568397 ], [ -95.960339169403923, 30.087002242847856 ], [ -95.960363168689241, 30.087001243143536 ], [ -95.960436169213466, 30.086999243111311 ], [ -95.960461169067557, 30.086999243350711 ], [ -95.960618168772811, 30.086994242795658 ], [ -95.961092169024042, 30.086980242791157 ], [ -95.96125016919305, 30.086976243258199 ], [ -95.961901169030668, 30.086958243213935 ], [ -95.962035169876131, 30.086955242737492 ], [ -95.96267216982109, 30.086939242808391 ], [ -95.963854170129082, 30.086919242617881 ], [ -95.964506170015738, 30.086909242751975 ], [ -95.964647170304644, 30.086907243284045 ], [ -95.965023170263976, 30.086904243130775 ], [ -95.96507217003176, 30.086906242595653 ], [ -95.965214170013496, 30.08691424335646 ], [ -95.965832169882646, 30.086942242880138 ], [ -95.967330170345249, 30.086992242771668 ], [ -95.968554171530684, 30.087033242831282 ], [ -95.969593171235445, 30.087068242845408 ], [ -95.970506171742784, 30.087099242556672 ], [ -95.972507172044843, 30.087159243035533 ], [ -95.978576173651732, 30.087341242651082 ], [ -95.978922173166765, 30.08735224274638 ], [ -95.98191517430422, 30.08750424267663 ], [ -95.986250175487129, 30.087766242012737 ], [ -95.987129175838291, 30.087829242151635 ], [ -95.987263176239978, 30.087837242450128 ], [ -95.987621175809167, 30.087861242175755 ], [ -95.987667175681707, 30.087862242084515 ], [ -95.987802176254093, 30.087865242211048 ], [ -95.988028175542354, 30.087873242513773 ], [ -95.988708175836265, 30.087898242564506 ], [ -95.988935176101691, 30.087907241995229 ], [ -95.989744176471419, 30.087908242167227 ], [ -95.990059176999523, 30.087906241912314 ], [ -95.993432177166383, 30.087895241837941 ], [ -95.99455717813747, 30.087892242080574 ], [ -95.995292178060737, 30.087889241811464 ], [ -95.996151178446794, 30.087887241809501 ], [ -95.996857178427973, 30.087941242344431 ], [ -95.997141178625284, 30.088041242402699 ], [ -95.997393177990688, 30.088178242525331 ], [ -95.99743217839773, 30.088210241922695 ], [ -95.997569178189124, 30.088325242404782 ], [ -95.997788178094638, 30.088550241796646 ], [ -95.997904178656469, 30.088748242463424 ], [ -95.997908178242639, 30.088761241941167 ], [ -95.998000178102544, 30.089042241929072 ], [ -95.99803517890679, 30.089342242335793 ], [ -95.998048178136131, 30.089701242409085 ], [ -95.998052178488692, 30.089808242665772 ], [ -95.998100178704362, 30.091734242971938 ], [ -95.998094178729119, 30.092574243076548 ], [ -95.998091178821127, 30.093016242904859 ], [ -95.998104179136391, 30.093532243505265 ], [ -95.998106178332264, 30.093629243324312 ], [ -95.998113178536144, 30.093922243266974 ], [ -95.998116178731365, 30.094020243651318 ], [ -95.998116178736012, 30.094563243264968 ], [ -95.998119178687929, 30.096048243842194 ], [ -95.998121178502075, 30.096195243521404 ], [ -95.998131179474697, 30.096739243837941 ], [ -95.998141178594224, 30.097305244285888 ], [ -95.998140178903441, 30.097408244036984 ], [ -95.998136179074436, 30.099416244552014 ], [ -95.998136179481207, 30.099453244074287 ], [ -95.998156179528252, 30.100086244063501 ], [ -95.998159179179922, 30.100199244337297 ], [ -95.998168178776424, 30.100539244128644 ], [ -95.998172179503698, 30.100653244959428 ], [ -95.99818217946239, 30.100989244904081 ], [ -95.998158178804857, 30.101261244667523 ], [ -95.998153179387216, 30.101437244300872 ], [ -95.998005178758632, 30.101810245007087 ], [ -95.997877178787988, 30.102066244864645 ], [ -95.997741178879636, 30.102250244587875 ], [ -95.997813179269926, 30.102303245209413 ], [ -95.997937178746213, 30.102375244902685 ], [ -95.998041179251416, 30.102401245363236 ], [ -95.998202178893251, 30.102427244785069 ], [ -95.998541179537156, 30.102401245007517 ], [ -95.999413179208844, 30.102398244582123 ], [ -96.000069180053458, 30.102426244573437 ], [ -96.001285180400856, 30.102460244444472 ], [ -96.001917180295436, 30.102480245257272 ], [ -96.00304318086593, 30.102517244655441 ], [ -96.003653181167493, 30.102530245031875 ], [ -96.003813180598343, 30.102536244749167 ], [ -96.004446181306861, 30.10256224444645 ], [ -96.004448180800168, 30.102422244383529 ], [ -96.004432180350875, 30.101502244663507 ], [ -96.00441718104743, 30.101084244661084 ], [ -96.00436518073937, 30.099281243641961 ], [ -96.004321180333605, 30.098078243476543 ], [ -96.004289180645259, 30.096485243833889 ], [ -96.004288180929052, 30.096363243214572 ], [ -96.004287180280926, 30.09599024330419 ], [ -96.004253180104556, 30.095268243398678 ], [ -96.004177180634287, 30.094312242964264 ], [ -96.004125180887371, 30.093915242576397 ], [ -96.004025179824268, 30.093503242708486 ], [ -96.003935180115789, 30.093039242913818 ], [ -96.003908180574626, 30.092843243033325 ], [ -96.003912180029175, 30.092458242506069 ], [ -96.003963180538477, 30.091871242769987 ], [ -96.004004180710794, 30.091266242223881 ], [ -96.003977180180669, 30.090413242294787 ], [ -96.003916180289409, 30.089127242405382 ], [ -96.003857180477837, 30.086565241900956 ], [ -96.003825180094296, 30.085764241607595 ], [ -96.003825179708869, 30.085684241112016 ], [ -96.003828180120152, 30.08535424119027 ], [ -96.003861180410155, 30.085082241194684 ], [ -96.003933180031282, 30.084823241603189 ], [ -96.004079179922755, 30.084529241368568 ], [ -96.004429180203374, 30.083978240960278 ], [ -96.004524179655562, 30.083820240963291 ], [ -96.004619180248412, 30.083661241027805 ], [ -96.004695180457318, 30.083536240970151 ], [ -96.00501518040079, 30.083075240609663 ], [ -96.005185180360442, 30.082749241075113 ], [ -96.005230179676715, 30.082585241035261 ], [ -96.00524117988499, 30.082512241103711 ], [ -96.005279180614053, 30.082286240603572 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 508, "Tract": "48473680601", "Area_SqMi": 25.788809283648412, "total_2009": 1505, "total_2010": 302, "total_2011": 345, "total_2012": 312, "total_2013": 532, "total_2014": 344, "total_2015": 382, "total_2016": 402, "total_2017": 369, "total_2018": 440, "total_2019": 502, "total_2020": 394, "age1": 115, "age2": 152, "age3": 106, "earn1": 76, "earn2": 166, "earn3": 131, "naics_s01": 9, "naics_s02": 1, "naics_s03": 12, "naics_s04": 31, "naics_s05": 17, "naics_s06": 8, "naics_s07": 4, "naics_s08": 0, "naics_s09": 1, "naics_s10": 1, "naics_s11": 1, "naics_s12": 13, "naics_s13": 0, "naics_s14": 31, "naics_s15": 0, "naics_s16": 0, "naics_s17": 238, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 328, "race2": 24, "race3": 3, "race4": 8, "race5": 0, "race6": 10, "ethnicity1": 258, "ethnicity2": 115, "edu1": 69, "edu2": 59, "edu3": 67, "edu4": 63, "Shape_Length": 151750.19238750983, "Shape_Area": 718947864.83990717, "total_2021": 331, "total_2022": 373 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.944590167483597, 30.148363255651009 ], [ -95.944652167830824, 30.148319255701622 ], [ -95.944512168203971, 30.148173256438451 ], [ -95.944177167636226, 30.147931255722749 ], [ -95.944107168039139, 30.147928256173625 ], [ -95.943519167925189, 30.147499255554965 ], [ -95.942595167551517, 30.147060256037587 ], [ -95.942431167225052, 30.146917255511081 ], [ -95.942355166953561, 30.14678525556976 ], [ -95.94233616705921, 30.146724255920489 ], [ -95.942241167564191, 30.146642255921151 ], [ -95.941894167257502, 30.146482255606518 ], [ -95.941824166943377, 30.146438256001929 ], [ -95.941716166587753, 30.146323255406958 ], [ -95.941603167395996, 30.14617525591817 ], [ -95.941426166508663, 30.146087255315898 ], [ -95.941078167142564, 30.145807255761245 ], [ -95.940996166716673, 30.145774255903259 ], [ -95.940901166537145, 30.145752256017328 ], [ -95.940781166570815, 30.145735255528962 ], [ -95.940641166429728, 30.145741255879603 ], [ -95.940566166609699, 30.145708256125122 ], [ -95.940553166213164, 30.145603256030302 ], [ -95.940686166209218, 30.145164256010773 ], [ -95.940951166728922, 30.144729255438161 ], [ -95.940983167098651, 30.144658255819312 ], [ -95.940995166193773, 30.1445752558067 ], [ -95.940983166554261, 30.144482255421622 ], [ -95.940863167077097, 30.144339255107891 ], [ -95.940793166673004, 30.144306255416829 ], [ -95.940736166260209, 30.144306255111264 ], [ -95.940635166805265, 30.144235255080382 ], [ -95.940464166451036, 30.144180255747038 ], [ -95.940269166719162, 30.144121254982505 ], [ -95.940224166154835, 30.144108255443303 ], [ -95.940129166613346, 30.14404825574659 ], [ -95.939939166820423, 30.143960255142872 ], [ -95.939864166419426, 30.143949255097411 ], [ -95.939737166260386, 30.143949255761996 ], [ -95.93970016598918, 30.143957255127074 ], [ -95.939648166193763, 30.14397125549884 ], [ -95.939514166413872, 30.144035255397874 ], [ -95.939478165906991, 30.144053255538996 ], [ -95.939313166029379, 30.144114255137453 ], [ -95.938453166265859, 30.144532255516147 ], [ -95.938415166111938, 30.144581255934671 ], [ -95.938327166524417, 30.14464125515477 ], [ -95.938283166249818, 30.144724255847034 ], [ -95.938175166317592, 30.144839255498518 ], [ -95.937834165860792, 30.145169255843598 ], [ -95.937733166125909, 30.14529525528458 ], [ -95.937568165772987, 30.145416255780543 ], [ -95.937461165558375, 30.145477255871768 ], [ -95.937397165696751, 30.145493255420892 ], [ -95.937252166088214, 30.145422255597591 ], [ -95.937163165554793, 30.145394255860442 ], [ -95.937050165694444, 30.145103256129477 ], [ -95.936854165987214, 30.144883256103572 ], [ -95.93641116522906, 30.144663256026366 ], [ -95.936095165278701, 30.14449325520048 ], [ -95.935621164843269, 30.144103255299452 ], [ -95.935557165115497, 30.144081255609748 ], [ -95.935425164964926, 30.144086255961099 ], [ -95.935140165333792, 30.144169255940898 ], [ -95.934950165311861, 30.144328255174823 ], [ -95.934830165478388, 30.144619255612529 ], [ -95.934653164987566, 30.144757256113703 ], [ -95.93439416532938, 30.144620255758664 ], [ -95.934223165271774, 30.144477255790438 ], [ -95.934185164780246, 30.144389255354366 ], [ -95.933995164934444, 30.144251255578514 ], [ -95.9337241652388, 30.144185255642569 ], [ -95.933534164503129, 30.144125255302981 ], [ -95.933135164997509, 30.143938255175296 ], [ -95.933028164742566, 30.143817255348203 ], [ -95.93273116464492, 30.143372255908226 ], [ -95.932598164529708, 30.143289255086138 ], [ -95.932522164362041, 30.143278255193362 ], [ -95.932294163881807, 30.143273255693479 ], [ -95.93218716443269, 30.14331125518892 ], [ -95.932086164441486, 30.143399255803711 ], [ -95.93203516443991, 30.143509255251022 ], [ -95.931991164394944, 30.143713255659151 ], [ -95.931769163861375, 30.14402025567173 ], [ -95.93161816445398, 30.144312255667263 ], [ -95.931485164200851, 30.144460255531708 ], [ -95.931384163932336, 30.144482255888953 ], [ -95.931219164171253, 30.144498256204901 ], [ -95.931030163989419, 30.144498255698117 ], [ -95.930891164316364, 30.144438255436267 ], [ -95.930726163640074, 30.144328255875603 ], [ -95.930492164035968, 30.144240255859714 ], [ -95.929917163369666, 30.14415825583497 ], [ -95.929708163253508, 30.144152256154751 ], [ -95.92906316402015, 30.144180256030833 ], [ -95.92893716401025, 30.144163255917007 ], [ -95.928810164014919, 30.144119255755605 ], [ -95.928633163520132, 30.143987255523527 ], [ -95.92857016328847, 30.143844255538443 ], [ -95.928551163952491, 30.143663255465327 ], [ -95.92855116373201, 30.143564255775932 ], [ -95.928513163249931, 30.143476255391281 ], [ -95.928393163514514, 30.143405255224721 ], [ -95.92826616352977, 30.143344255518269 ], [ -95.928209163442247, 30.143273256075062 ], [ -95.928159163106216, 30.143163255672185 ], [ -95.927969163401826, 30.142970255962684 ], [ -95.927868163714606, 30.142932255908224 ], [ -95.927748162963354, 30.142784255610955 ], [ -95.927609163175362, 30.142437255069499 ], [ -95.927350162775909, 30.142135255489908 ], [ -95.926983162994404, 30.141871254961437 ], [ -95.926603163165694, 30.141563255453537 ], [ -95.926445162948653, 30.141519255798332 ], [ -95.926319162311287, 30.14150325571142 ], [ -95.926230162937856, 30.141520255305956 ], [ -95.926167162936295, 30.141563254926456 ], [ -95.926173162388778, 30.141607255360068 ], [ -95.926243162775023, 30.141662254979689 ], [ -95.926256163117529, 30.141701255291263 ], [ -95.926218162660334, 30.141739255452784 ], [ -95.925857163033996, 30.141811255793051 ], [ -95.92544016250946, 30.141926255590878 ], [ -95.925313162440673, 30.141976255075633 ], [ -95.924757162198958, 30.142322255562476 ], [ -95.924630162578424, 30.142377255672844 ], [ -95.924559162397784, 30.142392255265097 ], [ -95.924428161832367, 30.142421255953408 ], [ -95.92437116254726, 30.142399255674697 ], [ -95.924276162612387, 30.14228325521951 ], [ -95.924276162027311, 30.142173255691247 ], [ -95.924327162107417, 30.141932255441326 ], [ -95.924327162148529, 30.141811255328427 ], [ -95.924276162533985, 30.14169525549049 ], [ -95.924080162299461, 30.14151425581386 ], [ -95.924049162062005, 30.141448255493628 ], [ -95.924024161718251, 30.141332255301286 ], [ -95.924024162580849, 30.141162255174276 ], [ -95.924169161934429, 30.140794255078823 ], [ -95.924283162177602, 30.140541255305628 ], [ -95.924454162449379, 30.140233255224036 ], [ -95.924561161875971, 30.139915254809452 ], [ -95.924555162749698, 30.139656255383628 ], [ -95.924365162182326, 30.139420254718814 ], [ -95.923840162351127, 30.139002254566119 ], [ -95.923619161532784, 30.138705255309365 ], [ -95.92356216235072, 30.138645255156792 ], [ -95.92337316146201, 30.13860625511731 ], [ -95.923113162071047, 30.138606254627966 ], [ -95.922355161736718, 30.138771255304047 ], [ -95.922038161278195, 30.138788255323085 ], [ -95.921893161400448, 30.13877725520496 ], [ -95.921773161847227, 30.138749254911094 ], [ -95.921697161365628, 30.138672255069608 ], [ -95.921640161677388, 30.138535255238828 ], [ -95.921665161810807, 30.138381254822885 ], [ -95.921950161112761, 30.138013254785751 ], [ -95.922001161245618, 30.137908254583262 ], [ -95.922026161822657, 30.137765254696369 ], [ -95.921988160969306, 30.136677254130827 ], [ -95.921900160933504, 30.13651825483749 ], [ -95.921845161416798, 30.136453254127893 ], [ -95.921438161424604, 30.135974254636956 ], [ -95.921324160755759, 30.135869254136924 ], [ -95.921059161553316, 30.135754253972692 ], [ -95.920540160825183, 30.135567254601092 ], [ -95.920452160624365, 30.135501254141449 ], [ -95.920180161246094, 30.135265254727553 ], [ -95.920009161274223, 30.135221254507194 ], [ -95.91987616122185, 30.13522625438496 ], [ -95.919807161281213, 30.135259254673851 ], [ -95.919674160657081, 30.135396254617362 ], [ -95.919554161194824, 30.135457254386388 ], [ -95.91946516053126, 30.135490254022599 ], [ -95.9193901606602, 30.135506254791554 ], [ -95.919263160975035, 30.135517254575387 ], [ -95.919168161161195, 30.135505254109258 ], [ -95.919130160654063, 30.13550125416582 ], [ -95.919010160819923, 30.135396254097138 ], [ -95.918903160749196, 30.135072254748284 ], [ -95.918830160667326, 30.134964254711598 ], [ -95.918719160626225, 30.134797254134106 ], [ -95.918719160035465, 30.13477525466655 ], [ -95.918707160293948, 30.134577254529933 ], [ -95.918764160904004, 30.134368254117923 ], [ -95.91883316011328, 30.134193254148002 ], [ -95.918808160120648, 30.134127254372753 ], [ -95.918669160010879, 30.134006254457645 ], [ -95.918353160449854, 30.133918254337303 ], [ -95.918087159864996, 30.133714254411359 ], [ -95.918018160556613, 30.133703253970868 ], [ -95.917879160134149, 30.133714254498251 ], [ -95.917853160692459, 30.133802254059805 ], [ -95.917828160215237, 30.133808254535982 ], [ -95.91779716047175, 30.133802254185341 ], [ -95.917759160063071, 30.133758254478238 ], [ -95.917468159858231, 30.133643253974476 ], [ -95.917291160090556, 30.133588253736093 ], [ -95.917164159874105, 30.133500253858809 ], [ -95.917126159633597, 30.133434253586579 ], [ -95.917126159564617, 30.133379253997706 ], [ -95.917152159779121, 30.133313254042434 ], [ -95.917196159966778, 30.13328625366989 ], [ -95.917246160353912, 30.133220254143602 ], [ -95.917354159762198, 30.133165254208851 ], [ -95.917398159746739, 30.133115254397591 ], [ -95.917417160515186, 30.133038253980629 ], [ -95.917405159962641, 30.132758254061947 ], [ -95.917315159857765, 30.132741253607584 ], [ -95.917208159739317, 30.132680253478803 ], [ -95.917088159966269, 30.132598253541314 ], [ -95.916754160362288, 30.132207254235432 ], [ -95.916633160049841, 30.131943253695596 ], [ -95.916570159396571, 30.131839253568241 ], [ -95.91650716010642, 30.131779253320563 ], [ -95.91631715935543, 30.131663253349455 ], [ -95.916242159662517, 30.131586253986345 ], [ -95.91600815934757, 30.131306253821528 ], [ -95.915584159543343, 30.130971253865653 ], [ -95.915521159407319, 30.130932253601163 ], [ -95.915356159768976, 30.130910253422634 ], [ -95.915300159646208, 30.130916253652135 ], [ -95.915249159141823, 30.130970253398456 ], [ -95.915217159802822, 30.131031254078842 ], [ -95.915109159832625, 30.131135253498414 ], [ -95.913351158817989, 30.131146253843401 ], [ -95.913029159139427, 30.131234253553426 ], [ -95.912738158722547, 30.131146254040683 ], [ -95.912592158334022, 30.130877253773466 ], [ -95.912201158201356, 30.130558254059594 ], [ -95.911922159074464, 30.130371253280824 ], [ -95.911733158600001, 30.129975253395159 ], [ -95.911619158970481, 30.12979925320198 ], [ -95.911259158478941, 30.129634253254554 ], [ -95.911082158812249, 30.129563253394661 ], [ -95.911063157871226, 30.129535253107441 ], [ -95.911006158655411, 30.129035253614266 ], [ -95.911012157919359, 30.128738253158481 ], [ -95.911063158214972, 30.128678252848982 ], [ -95.911145158830976, 30.128436253028571 ], [ -95.911153158465879, 30.128211253158053 ], [ -95.911140158325736, 30.128172252816167 ], [ -95.911089158256431, 30.128112252833688 ], [ -95.911007158040221, 30.128084253265172 ], [ -95.910938157967237, 30.128084253334229 ], [ -95.910834158191733, 30.128067253563991 ], [ -95.910710158491867, 30.1280462532171 ], [ -95.910596158417789, 30.128057253543233 ], [ -95.91040715788202, 30.128128253093834 ], [ -95.910280157967634, 30.128128253483553 ], [ -95.910141157749663, 30.12809025360913 ], [ -95.909654158383347, 30.127787253378084 ], [ -95.909243157971829, 30.12750725268393 ], [ -95.909123158223608, 30.127479253227648 ], [ -95.908782157735203, 30.127435252691996 ], [ -95.90808015717009, 30.127160253154283 ], [ -95.907145156961406, 30.126830253052308 ], [ -95.907012157532535, 30.126803253168191 ], [ -95.906885157582522, 30.126792253230491 ], [ -95.906771156902408, 30.126814252782896 ], [ -95.906677157185811, 30.126902253426543 ], [ -95.906613156807197, 30.127078252797197 ], [ -95.906493157239268, 30.127248253513152 ], [ -95.906360157151113, 30.127319253001513 ], [ -95.905975157320924, 30.12738025329941 ], [ -95.905741156525963, 30.127440252848665 ], [ -95.905589156369444, 30.127462253523259 ], [ -95.905437156975907, 30.127506253628372 ], [ -95.90536815726125, 30.127512252941489 ], [ -95.905330156530766, 30.12747325343728 ], [ -95.905229156566719, 30.127319253621977 ], [ -95.905026157003789, 30.127143253515751 ], [ -95.904913156209645, 30.127066252901123 ], [ -95.90475515612404, 30.126896253007722 ], [ -95.904723156769279, 30.126808252854193 ], [ -95.904717156847141, 30.126654252994051 ], [ -95.904812156546512, 30.126264252866736 ], [ -95.904824156103885, 30.126148252755698 ], [ -95.9047991567152, 30.126088252935702 ], [ -95.904698156322127, 30.126049252784274 ], [ -95.904306156767532, 30.125939253194701 ], [ -95.904041156758993, 30.12581325339886 ], [ -95.903453156024767, 30.12536825281202 ], [ -95.903193155813156, 30.125131252878752 ], [ -95.90317515609182, 30.125087252540524 ], [ -95.903054155741287, 30.125082252897133 ], [ -95.902884156117594, 30.125005252875301 ], [ -95.902600155987059, 30.124846252652855 ], [ -95.902549155576637, 30.124802253018942 ], [ -95.902480155694363, 30.124692252398933 ], [ -95.90237315587953, 30.124082252752984 ], [ -95.902335155972366, 30.123731252473974 ], [ -95.902284156250587, 30.123659252778722 ], [ -95.902316155347563, 30.123219252553849 ], [ -95.902297156200419, 30.123137252629977 ], [ -95.902215155392781, 30.123027252856833 ], [ -95.902189155880023, 30.123005252721896 ], [ -95.90207615565194, 30.122961252525837 ], [ -95.902038155459209, 30.122934252590081 ], [ -95.901854155255606, 30.12285125228868 ], [ -95.901804155935238, 30.122851252089468 ], [ -95.901753155919891, 30.122906252290438 ], [ -95.901703155583974, 30.123016252041506 ], [ -95.901646155166887, 30.123060252232474 ], [ -95.901564155200376, 30.123054252663181 ], [ -95.90151915513097, 30.123038252684154 ], [ -95.90128515541177, 30.122994252857904 ], [ -95.901165155624057, 30.122950252163733 ], [ -95.900742155093766, 30.122735252471269 ], [ -95.90057115568257, 30.122686252421822 ], [ -95.900438155045492, 30.122664252531731 ], [ -95.900129155020394, 30.122664252441258 ], [ -95.899970155586416, 30.122691252722625 ], [ -95.899857155550947, 30.122697252057673 ], [ -95.899680154834925, 30.122691252723715 ], [ -95.899559154756446, 30.122664252921833 ], [ -95.899465155128794, 30.12263125243177 ], [ -95.899420155144966, 30.122603252910363 ], [ -95.899338154769069, 30.122537252407295 ], [ -95.899281155296222, 30.122455252213122 ], [ -95.899218155458485, 30.122296252021922 ], [ -95.899218154700137, 30.122197252633278 ], [ -95.899282154830402, 30.122098252319606 ], [ -95.899402154531458, 30.121982252295588 ], [ -95.899408155468564, 30.121949252166395 ], [ -95.899402155430138, 30.121894252768101 ], [ -95.899326155235329, 30.121718252352576 ], [ -95.899320155035014, 30.121674251870225 ], [ -95.89933815459662, 30.121609252608948 ], [ -95.89944015546078, 30.121378252181543 ], [ -95.899445155303127, 30.121273252207818 ], [ -95.899420154836676, 30.121224251884101 ], [ -95.89923015544214, 30.121053252523893 ], [ -95.89916115449266, 30.121015251914354 ], [ -95.898896154912038, 30.120950252542436 ], [ -95.898707154960391, 30.120972252231869 ], [ -95.89862415498942, 30.120933252619693 ], [ -95.898523154624712, 30.120917252574142 ], [ -95.898466155027677, 30.120928251965438 ], [ -95.898416154524952, 30.120961251775213 ], [ -95.898390154582671, 30.120999252257629 ], [ -95.898371154384407, 30.121098252123719 ], [ -95.898365155135835, 30.121230252597272 ], [ -95.898340155002771, 30.121346252318983 ], [ -95.89816915471819, 30.121741252052157 ], [ -95.897884154401794, 30.12214825263208 ], [ -95.897688154771458, 30.122313252479415 ], [ -95.89739115407356, 30.122538252812337 ], [ -95.897227154294569, 30.122637252960313 ], [ -95.897151154700111, 30.122664252339156 ], [ -95.897012154048497, 30.122697252380551 ], [ -95.89678715399711, 30.122702252601318 ], [ -95.896664154176307, 30.122692252925994 ], [ -95.896556153862718, 30.122675252474231 ], [ -95.896019154021587, 30.122477252415639 ], [ -95.89566515372023, 30.122329252962 ], [ -95.895551154386851, 30.122263252429164 ], [ -95.895450154207495, 30.122164252714729 ], [ -95.895368153568256, 30.122098252414091 ], [ -95.895229154455265, 30.122043252830103 ], [ -95.895102153783171, 30.121960252121767 ], [ -95.895039153805953, 30.121894252547801 ], [ -95.894938153590218, 30.121680252663396 ], [ -95.894907154382409, 30.121471252008952 ], [ -95.894907153515973, 30.121356252223084 ], [ -95.894951153902923, 30.12103125243555 ], [ -95.894932153500662, 30.120938252282148 ], [ -95.894888153781864, 30.120850252056336 ], [ -95.894654153408098, 30.120636252247639 ], [ -95.894325154003653, 30.120394252215309 ], [ -95.894243153873731, 30.120350252651001 ], [ -95.894047154009158, 30.120278251971673 ], [ -95.893794153311305, 30.120229251753457 ], [ -95.893561153048253, 30.120256251816986 ], [ -95.89328915329925, 30.120289252518223 ], [ -95.893080153324362, 30.120327251881111 ], [ -95.892909153253996, 30.120338252377444 ], [ -95.892606153423287, 30.12029425220943 ], [ -95.892448153353669, 30.120256252107428 ], [ -95.892271152994354, 30.120168252525708 ], [ -95.892113152926214, 30.12004725178824 ], [ -95.891790153360731, 30.119800251773576 ], [ -95.891531153188595, 30.119591251897472 ], [ -95.891462152742108, 30.119525251695759 ], [ -95.891424153088366, 30.119464251861707 ], [ -95.891285153160027, 30.119299252080712 ], [ -95.8910001527627, 30.11910725224886 ], [ -95.890811153127984, 30.119024251638734 ], [ -95.890558152582202, 30.118986252291133 ], [ -95.890330152714341, 30.118936252267869 ], [ -95.890109152890261, 30.118909251814472 ], [ -95.890002152582696, 30.118914251668713 ], [ -95.889888152465559, 30.118936252217733 ], [ -95.8897301523658, 30.118986252284898 ], [ -95.889673152906241, 30.119024251736167 ], [ -95.889483152659608, 30.119106252085484 ], [ -95.889376152845713, 30.119172252037977 ], [ -95.889350152142171, 30.119216252090123 ], [ -95.889344152384865, 30.119332252215926 ], [ -95.889420152381447, 30.119508252553583 ], [ -95.889515152357774, 30.119651252254172 ], [ -95.889616152153422, 30.119749252286301 ], [ -95.889919152065403, 30.119920252685642 ], [ -95.889982152146715, 30.120002252400859 ], [ -95.889982152801309, 30.12008525269049 ], [ -95.889881152105303, 30.12020025265678 ], [ -95.889857152172851, 30.1202202525945 ], [ -95.889824152330846, 30.12025025192851 ], [ -95.88966015247631, 30.120316252462366 ], [ -95.889476152862301, 30.12036525211953 ], [ -95.889261151877974, 30.120370252504244 ], [ -95.888705151720174, 30.120293252596916 ], [ -95.888376152539692, 30.120233252072911 ], [ -95.888168151901766, 30.119991252722759 ], [ -95.888130152212184, 30.119958251999694 ], [ -95.888067152459001, 30.119925252194118 ], [ -95.887871152100473, 30.119908252544541 ], [ -95.887795152299446, 30.119914252256144 ], [ -95.887662151699388, 30.11995825231374 ], [ -95.887529151573986, 30.120035252761138 ], [ -95.887479151508472, 30.120079252077815 ], [ -95.887390152289498, 30.120194252731157 ], [ -95.887346152230833, 30.120282252252807 ], [ -95.88727015158446, 30.120535252784009 ], [ -95.887162151564993, 30.120744252297314 ], [ -95.887067151784009, 30.120848252960922 ], [ -95.886998151989033, 30.120892252744298 ], [ -95.886979151303777, 30.120897252887016 ], [ -95.886878151344249, 30.120925252555132 ], [ -95.886777151379476, 30.120941252375935 ], [ -95.886568151851449, 30.120919252772126 ], [ -95.886530152156396, 30.120908252242241 ], [ -95.886492151534938, 30.1208812522828 ], [ -95.886429152146448, 30.120859252501663 ], [ -95.886296151761385, 30.120793252558027 ], [ -95.886050151245158, 30.120534252551533 ], [ -95.885892151165081, 30.120402252617563 ], [ -95.88581615118953, 30.12034725242259 ], [ -95.885727151721554, 30.120303252468041 ], [ -95.885595151822756, 30.120259252139682 ], [ -95.885512151162231, 30.120210252436866 ], [ -95.885493151899766, 30.120166252476135 ], [ -95.885424151231462, 30.120072252626738 ], [ -95.885342151418811, 30.119919252316667 ], [ -95.885241150812462, 30.11982025267524 ], [ -95.885159151191445, 30.119781252422115 ], [ -95.884963151437347, 30.119743252295184 ], [ -95.884855151109775, 30.119731252675262 ], [ -95.884647151208114, 30.11972025228329 ], [ -95.884514151454596, 30.119726252818335 ], [ -95.884318151102519, 30.11972025235869 ], [ -95.883774151124626, 30.11979225235569 ], [ -95.883496150493514, 30.119792252558192 ], [ -95.883338150878913, 30.119775252345843 ], [ -95.883123150536534, 30.119780252841959 ], [ -95.883072150591559, 30.119797252463691 ], [ -95.882996151220894, 30.119835252824327 ], [ -95.88282615047865, 30.120006252422261 ], [ -95.882781151162106, 30.120066252550536 ], [ -95.882724150411804, 30.120198252983766 ], [ -95.882705150803972, 30.120258252852647 ], [ -95.882674151033996, 30.120511252630191 ], [ -95.88259115036216, 30.120962252368042 ], [ -95.882547150933746, 30.121061252996171 ], [ -95.882503150677792, 30.121121252714381 ], [ -95.882420150706537, 30.121204252345226 ], [ -95.882292150522076, 30.121323253195783 ], [ -95.88196515066042, 30.121632252544146 ], [ -95.881775150881083, 30.121907253048715 ], [ -95.881737150885414, 30.12198925330064 ], [ -95.881706150830198, 30.122165252725679 ], [ -95.881712150668093, 30.122457253510156 ], [ -95.881674150088443, 30.12258325320845 ], [ -95.881465150716295, 30.122951253435392 ], [ -95.881459150193223, 30.123110252811934 ], [ -95.881212150435985, 30.123204253665232 ], [ -95.881098150530292, 30.123237253077001 ], [ -95.880946150692822, 30.123264253438386 ], [ -95.880839150299721, 30.123253253025087 ], [ -95.880700150778395, 30.123182253335063 ], [ -95.880625150325599, 30.123084253090681 ], [ -95.880599149887587, 30.123050253387561 ], [ -95.880542150218488, 30.122956253265119 ], [ -95.880498150541555, 30.122852253241096 ], [ -95.880270150190327, 30.122506253123696 ], [ -95.880188150487996, 30.122396252896912 ], [ -95.880112150354648, 30.122335252748439 ], [ -95.879910149861331, 30.122115253069733 ], [ -95.879752150023663, 30.121890252724473 ], [ -95.879708150103838, 30.121785253358862 ], [ -95.879740150270194, 30.12159325280652 ], [ -95.87971514979742, 30.121159252721313 ], [ -95.879689150336034, 30.121060252523595 ], [ -95.879645150106796, 30.12097225241526 ], [ -95.879588149611536, 30.120895252880086 ], [ -95.879414150198002, 30.120724253003083 ], [ -95.879380149614832, 30.120691253202814 ], [ -95.879222149983022, 30.120565252826818 ], [ -95.879051149361999, 30.120450252775544 ], [ -95.878969149894147, 30.120405252882207 ], [ -95.878893149702066, 30.12038425277099 ], [ -95.878735149219722, 30.120361253107166 ], [ -95.878599149687105, 30.120366253199798 ], [ -95.878580150132933, 30.120372253001207 ], [ -95.878217149479894, 30.120438252534164 ], [ -95.87775514900207, 30.120482252581439 ], [ -95.877665149043722, 30.120497252862361 ], [ -95.877414149138716, 30.120542253169319 ], [ -95.8772051495272, 30.120603252984203 ], [ -95.876661148988262, 30.120877252790368 ], [ -95.876547148796874, 30.120927253098934 ], [ -95.876471149424034, 30.120943252755382 ], [ -95.876332149251283, 30.120949252993782 ], [ -95.876275149301136, 30.120938253171627 ], [ -95.876218149025888, 30.120916252521823 ], [ -95.876117148813265, 30.120855253239828 ], [ -95.876023148997632, 30.120828252724145 ], [ -95.875915148736212, 30.120822252605826 ], [ -95.875814148609606, 30.120855252599679 ], [ -95.875725149046829, 30.12089925322401 ], [ -95.875656148596462, 30.120954252597734 ], [ -95.875422149275963, 30.121179253134152 ], [ -95.875182148745168, 30.121430253140591 ], [ -95.875008148687954, 30.121614252791328 ], [ -95.874503148479036, 30.122086253010881 ], [ -95.874326148320449, 30.122202253291647 ], [ -95.87421814826395, 30.122224252889865 ], [ -95.874060148791003, 30.122230253278062 ], [ -95.873940148316365, 30.122191253689312 ], [ -95.873750148517104, 30.12210925351253 ], [ -95.873529148633992, 30.121977253576251 ], [ -95.873371148696421, 30.121856253025104 ], [ -95.873295148789566, 30.121708253256564 ], [ -95.87325714848825, 30.121543253081626 ], [ -95.873194148195893, 30.121439252710665 ], [ -95.873092148601245, 30.121340253031224 ], [ -95.872526147927772, 30.120885253332354 ], [ -95.872169148434736, 30.120598253032927 ], [ -95.872099147916913, 30.120494252618407 ], [ -95.872023148233424, 30.120263253189684 ], [ -95.872023147461462, 30.120005253053879 ], [ -95.872061147619988, 30.119845252445376 ], [ -95.872130147656662, 30.11973525260488 ], [ -95.872219148383792, 30.119631252554694 ], [ -95.872313147776879, 30.119587253170998 ], [ -95.872427148568946, 30.11955925263204 ], [ -95.872623148295816, 30.119548253010965 ], [ -95.872699148352012, 30.119532252838351 ], [ -95.872768148607875, 30.119345252421791 ], [ -95.872794148380407, 30.119202252597645 ], [ -95.872819147626487, 30.11895525241923 ], [ -95.872812147831524, 30.118729252628235 ], [ -95.872793148155267, 30.118553252667297 ], [ -95.872686147729226, 30.118339252146136 ], [ -95.872496148155804, 30.118097252530109 ], [ -95.872331147731458, 30.117960252394521 ], [ -95.872129147622474, 30.117889252891469 ], [ -95.871825148131848, 30.117878252392131 ], [ -95.870757147591149, 30.117917252118463 ], [ -95.870599147158387, 30.117955252640574 ], [ -95.870498147043762, 30.117994252630915 ], [ -95.870384146942229, 30.11800025260176 ], [ -95.870188147289511, 30.117983252306207 ], [ -95.869170147424271, 30.117819252422603 ], [ -95.868664147070561, 30.117649252756227 ], [ -95.868456146948247, 30.117544252658817 ], [ -95.868418147423682, 30.11751525213284 ], [ -95.868291147019477, 30.117418252745281 ], [ -95.868215147332393, 30.117248252455109 ], [ -95.868145146738172, 30.116874252803228 ], [ -95.868120147185223, 30.11656625193547 ], [ -95.868126146434349, 30.11631325240273 ], [ -95.868145146681854, 30.116231252660469 ], [ -95.868208147170776, 30.116082251920915 ], [ -95.868398146817512, 30.115961252187304 ], [ -95.86849914653591, 30.115884252594558 ], [ -95.868518147286792, 30.115786252409425 ], [ -95.868517147168532, 30.11567625233555 ], [ -95.868467146596984, 30.115610251754976 ], [ -95.868328146618239, 30.115522251840364 ], [ -95.868132147116285, 30.115368252318504 ], [ -95.867980146681404, 30.11532225242961 ], [ -95.867582146395321, 30.115203251804587 ], [ -95.867535146897012, 30.115170251977435 ], [ -95.867480146708203, 30.115132252123818 ], [ -95.867413146710376, 30.11507125180583 ], [ -95.867367146841389, 30.115028251707557 ], [ -95.867303146457061, 30.114940252264308 ], [ -95.867208145991981, 30.114841251788324 ], [ -95.867113146061115, 30.114769251600844 ], [ -95.866981146189261, 30.11471525238311 ], [ -95.866791146332872, 30.114693251793454 ], [ -95.866633146568191, 30.114660252019959 ], [ -95.866348146134783, 30.114654252436829 ], [ -95.866247146180129, 30.114632251852473 ], [ -95.866171146169762, 30.114600251623425 ], [ -95.866095146288799, 30.114545252450323 ], [ -95.865994146645505, 30.114490251839253 ], [ -95.86587414577815, 30.114468252191536 ], [ -95.865729145852555, 30.114462252328384 ], [ -95.865424145952986, 30.114298252317756 ], [ -95.865088145630253, 30.114028251979079 ], [ -95.864885145496785, 30.113813251981657 ], [ -95.864288145701011, 30.113236252244825 ], [ -95.864015145165169, 30.112989252110548 ], [ -95.86373614591048, 30.112813251586648 ], [ -95.863583145865533, 30.112682252177216 ], [ -95.863437145238308, 30.112539251700749 ], [ -95.863335145116423, 30.112396252111601 ], [ -95.863234145613433, 30.112138251294393 ], [ -95.863075145483009, 30.111911251228239 ], [ -95.862827145386987, 30.111664251272973 ], [ -95.862554145348824, 30.111455251845385 ], [ -95.862491145139458, 30.111346251493067 ], [ -95.862382144629137, 30.11107625101754 ], [ -95.862338144787202, 30.110950251293819 ], [ -95.862369145297066, 30.110779251741619 ], [ -95.862464145015181, 30.110702251017695 ], [ -95.863116145184122, 30.110369251081661 ], [ -95.863426144817012, 30.110236251608725 ], [ -95.863520145632222, 30.110137251279109 ], [ -95.863539145836157, 30.10999525159119 ], [ -95.863463145804431, 30.109846251442356 ], [ -95.863361144965666, 30.10969125085278 ], [ -95.863222145547155, 30.109554251119334 ], [ -95.863170144960023, 30.109444251346641 ], [ -95.863151144864545, 30.109356251462479 ], [ -95.863151144971184, 30.109279250731849 ], [ -95.863183145537633, 30.109109250703881 ], [ -95.863252145673755, 30.108954250569308 ], [ -95.863277145219229, 30.108811250987177 ], [ -95.863276144936691, 30.108365250674574 ], [ -95.863250144667802, 30.10788025070212 ], [ -95.863185145178733, 30.107313250248442 ], [ -95.863122145158471, 30.10697725085285 ], [ -95.862981144917597, 30.106675250178306 ], [ -95.862841144927302, 30.106488250450237 ], [ -95.862514145304729, 30.106276250530986 ], [ -95.862309144403966, 30.106142250783755 ], [ -95.862200144651808, 30.106043250688558 ], [ -95.862125144412857, 30.105938250179598 ], [ -95.862016144569921, 30.105730250798686 ], [ -95.861934144759346, 30.105613250258859 ], [ -95.861749144516381, 30.105520249958868 ], [ -95.861441144215135, 30.105362250279523 ], [ -95.861228144574696, 30.105301250101981 ], [ -95.860912144617004, 30.105296250222572 ], [ -95.86045314421591, 30.105373250683385 ], [ -95.860283143920626, 30.105411250246782 ], [ -95.860201143917976, 30.105383250303571 ], [ -95.86003114389159, 30.105274250779797 ], [ -95.859030144345795, 30.104985250467436 ], [ -95.858439143958037, 30.104787250699776 ], [ -95.857929144106862, 30.104694250758101 ], [ -95.857709143101189, 30.104607250384824 ], [ -95.857388143439778, 30.104404250587571 ], [ -95.857193143058097, 30.10422925050139 ], [ -95.857130143253642, 30.104081250256357 ], [ -95.857029143382974, 30.103583250103789 ], [ -95.856991143411307, 30.103069249831758 ], [ -95.856997143787495, 30.102756250077039 ], [ -95.856993142810495, 30.102260249582862 ], [ -95.856992143274056, 30.102199250057399 ], [ -95.856947142846295, 30.101908249433688 ], [ -95.856909142815937, 30.101803249524426 ], [ -95.856795143124089, 30.101743250111912 ], [ -95.856650143618481, 30.101726249908555 ], [ -95.856530142882079, 30.101737249616956 ], [ -95.856410142685291, 30.101770250183982 ], [ -95.856340142715666, 30.101858250098495 ], [ -95.856284143646548, 30.102051249443001 ], [ -95.856201143519101, 30.102095250294848 ], [ -95.855999142609562, 30.102106250158748 ], [ -95.855727143421191, 30.102078249563949 ], [ -95.855399142642568, 30.102002249415204 ], [ -95.854728143164877, 30.101743250013925 ], [ -95.854457142711638, 30.101689249676745 ], [ -95.853578142075222, 30.101738250148951 ], [ -95.852725142376656, 30.101876249895703 ], [ -95.852276141839894, 30.101915250010567 ], [ -95.851770142322422, 30.101893250119694 ], [ -95.851625141757665, 30.10190425037873 ], [ -95.851208141912352, 30.10213025046572 ], [ -95.851037141595441, 30.10217424965203 ], [ -95.850835141426643, 30.102157250313496 ], [ -95.850576142045369, 30.102097250220318 ], [ -95.850082141147169, 30.10139324991799 ], [ -95.85004414123739, 30.101289249607621 ], [ -95.850044141129231, 30.101207249692656 ], [ -95.850126141550419, 30.101108249701074 ], [ -95.8501331411764, 30.101014249532827 ], [ -95.850095141063846, 30.100888250027975 ], [ -95.849842141927368, 30.100558249340612 ], [ -95.849709141842325, 30.100443249639053 ], [ -95.849424141204437, 30.100250249378398 ], [ -95.849152141413867, 30.100174249843878 ], [ -95.848925141204973, 30.100146250076541 ], [ -95.848691141201684, 30.100152249302862 ], [ -95.847459141145535, 30.100409250122521 ], [ -95.84728414090354, 30.100445249746361 ], [ -95.847111140652032, 30.100482249936022 ], [ -95.846752140560156, 30.100499249732586 ], [ -95.84665614042261, 30.100504249782794 ], [ -95.8465741402417, 30.100499249450113 ], [ -95.846491140685416, 30.100460249906959 ], [ -95.846422140719426, 30.100372250296161 ], [ -95.846327140446007, 30.100059250167327 ], [ -95.84637714023421, 30.099586249786505 ], [ -95.846371140761136, 30.099422249792763 ], [ -95.846295140184964, 30.099317249622381 ], [ -95.846155140798942, 30.099083249986826 ], [ -95.846137140587487, 30.099053249736379 ], [ -95.846023140299692, 30.098487249678612 ], [ -95.845947139846928, 30.097905249389889 ], [ -95.846010139936553, 30.097646249580443 ], [ -95.846105139845264, 30.097476249018417 ], [ -95.846105140138647, 30.097388249372383 ], [ -95.846041139965422, 30.097328249042647 ], [ -95.845839140567264, 30.097245249639695 ], [ -95.845460140479744, 30.096982248960522 ], [ -95.845036140372471, 30.09672324958574 ], [ -95.844809140189, 30.096641249392626 ], [ -95.84463814017532, 30.096647249562899 ], [ -95.844315139478113, 30.096696249258478 ], [ -95.844082140090165, 30.096658249027026 ], [ -95.84391713981654, 30.096575249566978 ], [ -95.843746139965162, 30.096355249269784 ], [ -95.843622139600143, 30.096122249251223 ], [ -95.843595139498404, 30.096070249248669 ], [ -95.843468139594393, 30.095921249083514 ], [ -95.843203139298481, 30.095702248626804 ], [ -95.842969139301957, 30.095284249309948 ], [ -95.842754139707495, 30.094839249091415 ], [ -95.842747139367461, 30.094646248794039 ], [ -95.842797139237319, 30.094130248895897 ], [ -95.842861139511584, 30.09377324826151 ], [ -95.842919139081914, 30.093284248115129 ], [ -95.842999138850502, 30.092624248092608 ], [ -95.843214139826586, 30.091970248518933 ], [ -95.843302139629998, 30.09186524834994 ], [ -95.843568139494749, 30.091662248389945 ], [ -95.843770139901011, 30.091409248242577 ], [ -95.844022139351097, 30.090848248040274 ], [ -95.844155139539623, 30.090628247919678 ], [ -95.844344139922583, 30.089892247533339 ], [ -95.844445139328414, 30.089578247358979 ], [ -95.844685139084305, 30.089276247706024 ], [ -95.84471713938018, 30.089188247867771 ], [ -95.844729139795618, 30.08908124752487 ], [ -95.84474813957813, 30.088919247544396 ], [ -95.844691139755312, 30.088660247974616 ], [ -95.844597139839877, 30.088309247580856 ], [ -95.844438139042339, 30.087935247425953 ], [ -95.844255139257243, 30.087616247432639 ], [ -95.844091138863888, 30.087385247307026 ], [ -95.843907139624704, 30.087199247175494 ], [ -95.843877139362718, 30.087179247392569 ], [ -95.843527139602116, 30.086945247418171 ], [ -95.842428138861933, 30.086213247247752 ], [ -95.842308139174534, 30.086133246700964 ], [ -95.841889138890167, 30.085902246753299 ], [ -95.841409138563748, 30.085635247117313 ], [ -95.840673137905327, 30.085280246876199 ], [ -95.840504137850701, 30.085220246949039 ], [ -95.840329138040602, 30.085182246858903 ], [ -95.839917138091735, 30.085045246849788 ], [ -95.839617137837024, 30.084892246923754 ], [ -95.839330137861197, 30.084690246670114 ], [ -95.839142137573717, 30.084516246598131 ], [ -95.839068138158083, 30.084357246964487 ], [ -95.839075138027638, 30.084206246888378 ], [ -95.839157138318143, 30.083874246520924 ], [ -95.839182137560869, 30.083684246304507 ], [ -95.839169138140008, 30.083575246909309 ], [ -95.839039138376179, 30.08335824677329 ], [ -95.838951138171694, 30.083248246550152 ], [ -95.838818137315144, 30.083155246506085 ], [ -95.838628137376915, 30.083094246721263 ], [ -95.838224137312352, 30.083095246561431 ], [ -95.83799613754698, 30.083117246298904 ], [ -95.837428137613657, 30.0832542470399 ], [ -95.836865137047667, 30.083573246824386 ], [ -95.836398137124363, 30.083744246395973 ], [ -95.835709137049889, 30.083892246464931 ], [ -95.834660136748013, 30.084184246662488 ], [ -95.834546136255213, 30.084255247167238 ], [ -95.834199136897766, 30.084590246667105 ], [ -95.833838136202601, 30.084915247446421 ], [ -95.8335101369901, 30.08506324691842 ], [ -95.833219136231094, 30.085129247258362 ], [ -95.833048136881672, 30.085129247142675 ], [ -95.832853136376912, 30.085085247552747 ], [ -95.832644136365275, 30.084959247422244 ], [ -95.832252135716772, 30.084536247575681 ], [ -95.832075135708152, 30.084421247049775 ], [ -95.831949136134554, 30.084355247162602 ], [ -95.831828136311927, 30.084377247129584 ], [ -95.83164513589945, 30.084448247306227 ], [ -95.831443135833595, 30.0844702467841 ], [ -95.831215135654432, 30.084448247097928 ], [ -95.830868136219152, 30.084388246782904 ], [ -95.830520135458983, 30.084228246715199 ], [ -95.830286135536937, 30.084086247404063 ], [ -95.830103135153649, 30.083948246854742 ], [ -95.830002135940404, 30.08374524715105 ], [ -95.829958135655616, 30.083575247144424 ], [ -95.829958135542654, 30.083507247164153 ], [ -95.829958135457389, 30.083415246977339 ], [ -95.830046135045521, 30.083250247251485 ], [ -95.830059135147437, 30.083140247032738 ], [ -95.830046136006629, 30.083036247077846 ], [ -95.829509135774686, 30.082343246982955 ], [ -95.829482134962376, 30.082314246592706 ], [ -95.829344135241087, 30.082168247067635 ], [ -95.829110134918835, 30.082036246584966 ], [ -95.828971135449223, 30.081992247027905 ], [ -95.828807135182913, 30.081920246967456 ], [ -95.828586134665755, 30.081783246556064 ], [ -95.828497135442419, 30.081739246424934 ], [ -95.828402135353002, 30.081728246897306 ], [ -95.828352135020552, 30.081739247055097 ], [ -95.82829113472836, 30.081772247059504 ], [ -95.828263135467282, 30.081788246972692 ], [ -95.8281181354523, 30.081981246426917 ], [ -95.828023135185077, 30.082019247025642 ], [ -95.826279134618176, 30.082141246968753 ], [ -95.825707134345691, 30.082200247227913 ], [ -95.825173134568132, 30.082256246481464 ], [ -95.824819134374664, 30.082333247344479 ], [ -95.824648134509928, 30.082416247272938 ], [ -95.824358134472561, 30.082449247021838 ], [ -95.824099134191741, 30.082427247404549 ], [ -95.823309133529918, 30.082361247023094 ], [ -95.822727133161237, 30.082235246773791 ], [ -95.822026132975566, 30.082218247015071 ], [ -95.821896133386829, 30.082247246874925 ], [ -95.821735133181619, 30.082284246949261 ], [ -95.821457133645822, 30.082389246977087 ], [ -95.821242133205089, 30.082565246861741 ], [ -95.82108413297864, 30.082636247229683 ], [ -95.820894133225423, 30.082686247466146 ], [ -95.820730132874431, 30.082762246910928 ], [ -95.820616132758104, 30.082867247198308 ], [ -95.820505132893274, 30.082931246976226 ], [ -95.82036413278351, 30.083015247018388 ], [ -95.820231133564064, 30.083015247511369 ], [ -95.820073132604406, 30.082993247251189 ], [ -95.819896133311062, 30.082999246864144 ], [ -95.819770132681455, 30.083048246855878 ], [ -95.819605133334136, 30.083076246960403 ], [ -95.81941613319232, 30.083092247497852 ], [ -95.819277132720401, 30.083092247667093 ], [ -95.819131133009634, 30.083015247662548 ], [ -95.81861313259347, 30.082603246773491 ], [ -95.818317132514082, 30.082323246842211 ], [ -95.818183132154019, 30.082197246739458 ], [ -95.817993131991713, 30.082059246683649 ], [ -95.817621132713754, 30.08187824679981 ], [ -95.817052132142209, 30.081784246765427 ], [ -95.816995132126877, 30.081801247200588 ], [ -95.816925132592758, 30.081861247575919 ], [ -95.816729132114787, 30.082131247557356 ], [ -95.816477132335919, 30.082625247262023 ], [ -95.816464132336819, 30.082763247473554 ], [ -95.816603132536073, 30.083005247523435 ], [ -95.816603132077859, 30.083126247060392 ], [ -95.816540131944819, 30.083769247766103 ], [ -95.816357132316284, 30.084560247359633 ], [ -95.816256132081975, 30.084917247853802 ], [ -95.816155132564816, 30.085093248128395 ], [ -95.81609913208051, 30.085167247470597 ], [ -95.815922132105783, 30.085279247770497 ], [ -95.815786132279712, 30.085327248314815 ], [ -95.815640132069319, 30.085322248099658 ], [ -95.815389131952074, 30.085295247484506 ], [ -95.815138131544444, 30.08518824789164 ], [ -95.814402131854507, 30.084692247728452 ], [ -95.81380213106732, 30.084553248109287 ], [ -95.813226130911289, 30.08443724735293 ], [ -95.812948130793032, 30.084399248084342 ], [ -95.812747130853211, 30.084385247354341 ], [ -95.812610130720273, 30.084339247673189 ], [ -95.812436130916936, 30.084319248006036 ], [ -95.812292130957132, 30.084328247340554 ], [ -95.812123130532981, 30.084400248112416 ], [ -95.811754130660916, 30.084819247488834 ], [ -95.811525131438998, 30.084963247891515 ], [ -95.811082130568238, 30.085093247713385 ], [ -95.810868130531716, 30.085169247871999 ], [ -95.81056813032653, 30.085205247876058 ], [ -95.810030130663733, 30.085176247756902 ], [ -95.809759129964803, 30.085237248378892 ], [ -95.809607130284633, 30.085319248120058 ], [ -95.809285130882799, 30.085649248122195 ], [ -95.809146130630765, 30.085858248270174 ], [ -95.809051129878071, 30.08621524811393 ], [ -95.809045130157955, 30.086732248258706 ], [ -95.80907013027641, 30.086913248085228 ], [ -95.809095130067462, 30.086979248831476 ], [ -95.809152130642374, 30.087023248741044 ], [ -95.809221129952164, 30.087050248371323 ], [ -95.809430130031018, 30.087160248498538 ], [ -95.809538130546343, 30.087408248875938 ], [ -95.809601130663935, 30.087661248623469 ], [ -95.809626130963267, 30.087842248257935 ], [ -95.809588130919266, 30.088067248244368 ], [ -95.809500130473879, 30.088221248479535 ], [ -95.809335130984351, 30.088337248634474 ], [ -95.809146130901865, 30.088447248844567 ], [ -95.808981130240696, 30.088490248683957 ], [ -95.808729130753818, 30.088540248709517 ], [ -95.80819113046293, 30.088611248845073 ], [ -95.808084130043056, 30.0886442488417 ], [ -95.807989130139077, 30.088710249087587 ], [ -95.807913130300662, 30.088798248626134 ], [ -95.807837130466496, 30.088925249252142 ], [ -95.807743130363491, 30.0889802484947 ], [ -95.806415129458671, 30.089474248822697 ], [ -95.806302129843516, 30.089568249064314 ], [ -95.806106129268144, 30.089656248956818 ], [ -95.805878129698229, 30.089716249148605 ], [ -95.805644129719326, 30.089804249020784 ], [ -95.805347129292556, 30.089826249373274 ], [ -95.80517612924163, 30.089826249184167 ], [ -95.804905129002691, 30.089771249433145 ], [ -95.804772129203201, 30.089766249588809 ], [ -95.804563129226793, 30.089788249350679 ], [ -95.803697129589835, 30.089997249063785 ], [ -95.803337128571044, 30.090101249266802 ], [ -95.803690130390308, 30.113806254412996 ], [ -95.80368913008482, 30.113822253849929 ], [ -95.803689130427315, 30.113886253747374 ], [ -95.803691130471719, 30.114137254256608 ], [ -95.803697130692527, 30.114890254735116 ], [ -95.803700130438187, 30.115141254537889 ], [ -95.803699130277749, 30.115225254437583 ], [ -95.803699130582388, 30.115464254188051 ], [ -95.803699129870338, 30.115480254810212 ], [ -95.803699130845658, 30.115566253979825 ], [ -95.803693130640212, 30.116972254862333 ], [ -95.803675131017926, 30.121190255629138 ], [ -95.803675130928241, 30.121293256012116 ], [ -95.803688130613068, 30.122597255458359 ], [ -95.803688131067773, 30.122640255825679 ], [ -95.803690131004146, 30.122772255458454 ], [ -95.803691130868174, 30.12281625603358 ], [ -95.803701131046196, 30.123471256277696 ], [ -95.803733130922822, 30.12543925633021 ], [ -95.803744131070729, 30.126095256105621 ], [ -95.803747131155433, 30.126281256206934 ], [ -95.803788131147769, 30.132484258112243 ], [ -95.803786131396762, 30.136009258870953 ], [ -95.803791131849437, 30.137551258688276 ], [ -95.803808131315066, 30.142178260134532 ], [ -95.80381413190679, 30.143721259978975 ], [ -95.804271132009973, 30.143729259694833 ], [ -95.804379131475244, 30.143829260130666 ], [ -95.804553132145898, 30.143828260141955 ], [ -95.805080132280722, 30.143830259786814 ], [ -95.805255132548254, 30.143830259984348 ], [ -95.805255132234493, 30.143795260223641 ], [ -95.805303132128316, 30.14351926012953 ], [ -95.805369131978949, 30.143143259976384 ], [ -95.805532132055347, 30.142717259782021 ], [ -95.805574132170321, 30.142609259951492 ], [ -95.805665132402098, 30.142474259925443 ], [ -95.805800132508068, 30.142240259728982 ], [ -95.805874131989725, 30.142111259682203 ], [ -95.806043131692462, 30.141882259290998 ], [ -95.806138132446378, 30.141754259476873 ], [ -95.806287132352622, 30.14159825973789 ], [ -95.806474132275525, 30.141404259957756 ], [ -95.806618132283404, 30.141276259745261 ], [ -95.806768131860579, 30.141146259373819 ], [ -95.80696213205141, 30.140869259663482 ], [ -95.806983132068453, 30.140834259278307 ], [ -95.807083132281093, 30.140671259457662 ], [ -95.807130132885931, 30.140785259069371 ], [ -95.807174132115151, 30.140840259140287 ], [ -95.80731913241101, 30.140933259823182 ], [ -95.807414132205011, 30.140955259169385 ], [ -95.807711132986086, 30.140988259187584 ], [ -95.807819132935606, 30.141060259321417 ], [ -95.807977132203874, 30.141203259396843 ], [ -95.808300132996678, 30.141543259885612 ], [ -95.80831413246986, 30.141580259521337 ], [ -95.808325132989921, 30.141610259886576 ], [ -95.808325132942031, 30.141719259724951 ], [ -95.80828713230629, 30.141945259579298 ], [ -95.808287132940038, 30.142027259894377 ], [ -95.808319132419214, 30.142247259608194 ], [ -95.808426132685625, 30.142604260078357 ], [ -95.80844513241135, 30.142720259713574 ], [ -95.808432132694207, 30.142780259370248 ], [ -95.808388132981136, 30.14283025990623 ], [ -95.807983133218542, 30.142907259876491 ], [ -95.807914132267015, 30.142945260060685 ], [ -95.807869132320405, 30.142995260161378 ], [ -95.807832132619751, 30.143077259663333 ], [ -95.807819132982885, 30.143143259657869 ], [ -95.807832132438122, 30.143220260175212 ], [ -95.807876132885355, 30.143363259713585 ], [ -95.807920132785981, 30.143445259879716 ], [ -95.807983132595325, 30.143506259603544 ], [ -95.808192132422988, 30.143643259624312 ], [ -95.80827413234482, 30.143715259639247 ], [ -95.808357132753116, 30.14387425968469 ], [ -95.808401132395332, 30.143923259760204 ], [ -95.808477133047418, 30.143967259571575 ], [ -95.808540133080669, 30.143989259629009 ], [ -95.808660132935401, 30.143995260433922 ], [ -95.808717132991063, 30.143978260376301 ], [ -95.808799133344849, 30.143940260415739 ], [ -95.809014132594825, 30.143775260218892 ], [ -95.80905813301338, 30.143764259795823 ], [ -95.809115132766166, 30.143764259920562 ], [ -95.809217133118338, 30.143781260124417 ], [ -95.809273133514367, 30.143808260345921 ], [ -95.809311133584757, 30.143863259892807 ], [ -95.809343132836517, 30.144028260220804 ], [ -95.809394132748139, 30.14416026005614 ], [ -95.809387133225684, 30.144198259557331 ], [ -95.80936213330078, 30.144226259854715 ], [ -95.809204132952459, 30.14428625970006 ], [ -95.80914713354548, 30.144325259903081 ], [ -95.809128132681337, 30.144363259907909 ], [ -95.809134132896276, 30.14440225991277 ], [ -95.809172133182344, 30.144440260039822 ], [ -95.809200133441266, 30.144456260393959 ], [ -95.809229133413169, 30.144473260001526 ], [ -95.809394133359746, 30.144544259693738 ], [ -95.809432133151375, 30.144572259684313 ], [ -95.809476132953606, 30.144632260241028 ], [ -95.809488133173573, 30.144847260178565 ], [ -95.809507133547001, 30.144929259748292 ], [ -95.809539133053462, 30.145028260205017 ], [ -95.809640132870186, 30.145248260382235 ], [ -95.809628133285599, 30.145402260373412 ], [ -95.809741133560436, 30.145462260088983 ], [ -95.810082133004911, 30.145551260632516 ], [ -95.81010213372204, 30.145556260660531 ], [ -95.810456133819713, 30.145611260090526 ], [ -95.81070313335772, 30.145484260043716 ], [ -95.810772134004083, 30.145490260059628 ], [ -95.810861133260076, 30.145528260279466 ], [ -95.810911133659886, 30.145567259985484 ], [ -95.811050133378927, 30.145721260320698 ], [ -95.811117133657447, 30.145766259899524 ], [ -95.811139134112224, 30.145781260281499 ], [ -95.811607133578562, 30.146018260021997 ], [ -95.811670133576627, 30.146067260717803 ], [ -95.811847133929362, 30.146287260683142 ], [ -95.811854134140532, 30.146331260309029 ], [ -95.811828133895602, 30.1463802607738 ], [ -95.811784134351356, 30.146430260544825 ], [ -95.811727133972354, 30.14646826007143 ], [ -95.811525133411379, 30.146562260143313 ], [ -95.811462133433878, 30.146617260279442 ], [ -95.811436134076388, 30.146661260222544 ], [ -95.811436133854272, 30.146694260053927 ], [ -95.811474133836157, 30.146727260785795 ], [ -95.811632134327994, 30.146760260109986 ], [ -95.811696133617261, 30.146754260362442 ], [ -95.811930133485589, 30.146699260497957 ], [ -95.812018134075359, 30.146705260680342 ], [ -95.812094134095304, 30.146721260739323 ], [ -95.812145134033457, 30.146743260744454 ], [ -95.812214133867371, 30.146809260158346 ], [ -95.812258133917325, 30.146875260074712 ], [ -95.812290133588291, 30.147012260017863 ], [ -95.81237213417667, 30.147073260087218 ], [ -95.812625133928222, 30.147122260611617 ], [ -95.812682134600365, 30.147194260124056 ], [ -95.812777133681791, 30.147397260354825 ], [ -95.812771133746878, 30.147524260499445 ], [ -95.812879134325513, 30.14759826048655 ], [ -95.812954133772735, 30.147650260246611 ], [ -95.813359134333879, 30.147864260165285 ], [ -95.813447134735398, 30.147886260680355 ], [ -95.813713134412495, 30.147864260998769 ], [ -95.813982134616694, 30.147864260426498 ], [ -95.814090134080018, 30.147774260284237 ], [ -95.814417134262186, 30.147504260935399 ], [ -95.814526134789986, 30.147415260600759 ], [ -95.814729134150397, 30.14750226018262 ], [ -95.814842134837562, 30.147517260315631 ], [ -95.814902134754249, 30.147526260493059 ], [ -95.815846135210123, 30.147502260445428 ], [ -95.815971134680396, 30.147499260032198 ], [ -95.816182135325192, 30.147498260510353 ], [ -95.816507134998076, 30.147493260327217 ], [ -95.817485135777943, 30.147477260292483 ], [ -95.81781113499639, 30.147473260665681 ], [ -95.818502135539276, 30.147493260205682 ], [ -95.81863413583261, 30.147495259993541 ], [ -95.819330135870601, 30.147504260771729 ], [ -95.820178135997509, 30.147496260476892 ], [ -95.820574135796718, 30.147502259906027 ], [ -95.821265136611729, 30.147514260402794 ], [ -95.821352135857467, 30.147515260116325 ], [ -95.821614136641472, 30.147518260055321 ], [ -95.821702136732071, 30.147520260536769 ], [ -95.822429136986713, 30.147507260367302 ], [ -95.822926136988642, 30.147527260072099 ], [ -95.823593137056392, 30.147537260460769 ], [ -95.824960137360264, 30.147497260357881 ], [ -95.825509137387414, 30.147481259973922 ], [ -95.826829137620379, 30.147442259849669 ], [ -95.826880137472116, 30.147441259878292 ], [ -95.827013137915159, 30.147438260147329 ], [ -95.827062137931506, 30.147436259958791 ], [ -95.828207138020034, 30.147368260152657 ], [ -95.828483138624406, 30.147388260280309 ], [ -95.828588138602797, 30.147448260060653 ], [ -95.82867513811793, 30.147550260260797 ], [ -95.828716138221083, 30.147698260231611 ], [ -95.828747138024937, 30.148244260546907 ], [ -95.828805138440586, 30.149950260596281 ], [ -95.828815138202231, 30.150394260335339 ], [ -95.828810137883352, 30.150733260891919 ], [ -95.828799138067907, 30.151598260641219 ], [ -95.828806138761479, 30.151751260711539 ], [ -95.828808138080021, 30.151763260695546 ], [ -95.8288571387817, 30.151878260663729 ], [ -95.828916138660631, 30.151972260899971 ], [ -95.828991138853553, 30.152024261305456 ], [ -95.829029138523467, 30.152049261176082 ], [ -95.829131138984124, 30.152079260987936 ], [ -95.829352138962065, 30.152120261171248 ], [ -95.829402138940736, 30.152121260806855 ], [ -95.829808138632373, 30.152130261333284 ], [ -95.830685138507405, 30.152112260940619 ], [ -95.830746138531651, 30.152111261289427 ], [ -95.831113138643715, 30.152107260898767 ], [ -95.832992139271326, 30.152085261021888 ], [ -95.834388140011015, 30.152070260276638 ], [ -95.83458413972815, 30.152072261075311 ], [ -95.834764139505864, 30.152074260584882 ], [ -95.835081140230898, 30.152098260737986 ], [ -95.835290140408134, 30.152155260606424 ], [ -95.835521140493938, 30.15228726060748 ], [ -95.835775140374153, 30.152521260797482 ], [ -95.835968140533453, 30.152715261004275 ], [ -95.836150140288851, 30.152841260474077 ], [ -95.83634014075615, 30.152922260783292 ], [ -95.836578140877123, 30.15295326072318 ], [ -95.838330140651266, 30.152884260861491 ], [ -95.838356140760141, 30.152883260995434 ], [ -95.840060140940523, 30.15284526103315 ], [ -95.840235141119408, 30.152851260819691 ], [ -95.841378141924963, 30.152872260186932 ], [ -95.842502141819693, 30.152894260449152 ], [ -95.843773142344432, 30.152890260519268 ], [ -95.844325142847211, 30.152923260153624 ], [ -95.844651142609877, 30.152999260462394 ], [ -95.844777142643977, 30.153075260672647 ], [ -95.844964142927523, 30.153188260883368 ], [ -95.845269142474891, 30.153379260445824 ], [ -95.845547143295121, 30.15348826057101 ], [ -95.845814143263325, 30.153501260655585 ], [ -95.846090143369636, 30.153514260920023 ], [ -95.846160143064765, 30.153514260282851 ], [ -95.846209142503653, 30.153514260980163 ], [ -95.847202143610644, 30.153526260880511 ], [ -95.847550143602447, 30.153531260364549 ], [ -95.847898143303624, 30.15353426094233 ], [ -95.847925143709105, 30.153535260806414 ], [ -95.848300143845293, 30.153539260203377 ], [ -95.848795143336773, 30.153545260606997 ], [ -95.848942143890397, 30.153546260622615 ], [ -95.849291143759487, 30.153550260165904 ], [ -95.849576143878011, 30.153553260161139 ], [ -95.850431144222668, 30.153562260132595 ], [ -95.850717144498162, 30.153566260268132 ], [ -95.850871144222936, 30.153568260372058 ], [ -95.850924144578983, 30.153567260146136 ], [ -95.851213144289275, 30.153561260030418 ], [ -95.852701144459587, 30.153531260692944 ], [ -95.853198145098744, 30.153522260711597 ], [ -95.853447145093227, 30.153516260588034 ], [ -95.853989144651266, 30.153506260639031 ], [ -95.85419714456873, 30.153502260410903 ], [ -95.854447144608969, 30.153497260063922 ], [ -95.85462114542176, 30.153494260140043 ], [ -95.855123144779554, 30.153430259897533 ], [ -95.855291144840706, 30.15339926061586 ], [ -95.855665144935742, 30.153317259907798 ], [ -95.856051145151397, 30.153263260546506 ], [ -95.856834145237983, 30.153230259823296 ], [ -95.856848145295118, 30.153230260209153 ], [ -95.856898145481736, 30.153225260141738 ], [ -95.856952146194402, 30.153227259860458 ], [ -95.859036146056056, 30.153182259805117 ], [ -95.861503146629772, 30.153107260217759 ], [ -95.863060147687776, 30.153060259827491 ], [ -95.863056147644826, 30.153108260057436 ], [ -95.863069147108561, 30.153191259625622 ], [ -95.863183147486879, 30.15346025962873 ], [ -95.863246147119327, 30.15355325973378 ], [ -95.86331614758366, 30.153619259718113 ], [ -95.863392147774704, 30.153669260383456 ], [ -95.863746147164122, 30.153679259847546 ], [ -95.863860147188504, 30.153712259765349 ], [ -95.863961146976422, 30.153773259635031 ], [ -95.864043147189278, 30.153850259847999 ], [ -95.864132147656434, 30.153888260194829 ], [ -95.864366148081089, 30.153910260105818 ], [ -95.864499148126626, 30.153948260475815 ], [ -95.864556147311092, 30.154003260226936 ], [ -95.864714147429012, 30.154190260113673 ], [ -95.864891147795831, 30.15429525970902 ], [ -95.865157148248514, 30.154481259695963 ], [ -95.865233147736575, 30.154558260091825 ], [ -95.865454148205856, 30.154838259872228 ], [ -95.865524148300977, 30.154943260016715 ], [ -95.865562147551714, 30.155234259832657 ], [ -95.865581148160402, 30.155306260094473 ], [ -95.865625148290206, 30.155371260492362 ], [ -95.865714148115728, 30.155421260278345 ], [ -95.865790147899418, 30.155448260050715 ], [ -95.86600514841713, 30.155503260413891 ], [ -95.866321148320097, 30.155640260738558 ], [ -95.866441148174289, 30.155679260324273 ], [ -95.866543147982341, 30.15570626056499 ], [ -95.866821148169194, 30.155745260185689 ], [ -95.867023148597326, 30.15579425999238 ], [ -95.867150147954888, 30.155849260532712 ], [ -95.867454148277503, 30.156019260458891 ], [ -95.867567148526291, 30.156102260237798 ], [ -95.867713148449894, 30.156228260239882 ], [ -95.86775714820601, 30.156277260626158 ], [ -95.867776148671453, 30.156321260705216 ], [ -95.867789148386251, 30.156541260718114 ], [ -95.867833148477018, 30.156657260425295 ], [ -95.867922149007427, 30.156750260531865 ], [ -95.868023149136263, 30.156821260630114 ], [ -95.868200149025469, 30.156882260149995 ], [ -95.868441149010835, 30.15692626088827 ], [ -95.869162149441166, 30.157123260402816 ], [ -95.869390148824095, 30.157167260115735 ], [ -95.869529148852862, 30.15721126073942 ], [ -95.869693148943767, 30.157585260506714 ], [ -95.869820148887698, 30.158074260689983 ], [ -95.869890148925109, 30.158294260617122 ], [ -95.870320149620994, 30.158749260657146 ], [ -95.870706148984993, 30.158914260920817 ], [ -95.870801149167903, 30.158969260800738 ], [ -95.87071914985097, 30.159244261298504 ], [ -95.870814149502408, 30.159541260801316 ], [ -95.870858149412399, 30.159623261060965 ], [ -95.870972149884267, 30.159766261068061 ], [ -95.870991149280684, 30.159810260558888 ], [ -95.870998149251903, 30.159881260597075 ], [ -95.87097214935045, 30.159947260814441 ], [ -95.870846149524596, 30.160079261234326 ], [ -95.870808149517444, 30.160162261194081 ], [ -95.870814149775114, 30.16021126107556 ], [ -95.870865149724679, 30.160349261128776 ], [ -95.870922150020718, 30.160437260714723 ], [ -95.871118149230767, 30.160629260785047 ], [ -95.871251149173915, 30.160843261547022 ], [ -95.871378149505617, 30.160903260885203 ], [ -95.871618149641478, 30.160958260968037 ], [ -95.871669150201598, 30.160980261297333 ], [ -95.871702149769916, 30.161003260811786 ], [ -95.871871149890964, 30.161123261426042 ], [ -95.872010149526062, 30.16123326123159 ], [ -95.872150150247037, 30.161359261686687 ], [ -95.872194149523594, 30.161381261490774 ], [ -95.872384149497066, 30.16140926127294 ], [ -95.872548150483411, 30.161398261681136 ], [ -95.873326150045798, 30.161293261020933 ], [ -95.873478149819988, 30.16129326090137 ], [ -95.873630150524249, 30.161309261623483 ], [ -95.873769150578312, 30.161342261507947 ], [ -95.873902150450519, 30.161397261164158 ], [ -95.874288150124755, 30.161600260970424 ], [ -95.874471150499346, 30.161660261393955 ], [ -95.87462315011453, 30.1616822612073 ], [ -95.875005151184723, 30.16169826104586 ], [ -95.875118150993501, 30.161770261496454 ], [ -95.875276150788565, 30.161819261636719 ], [ -95.875466151248958, 30.161896261676407 ], [ -95.875776150879219, 30.16211126148735 ], [ -95.875757151357178, 30.16218826142617 ], [ -95.875757150830921, 30.162243260884001 ], [ -95.875820150489389, 30.162369261640141 ], [ -95.875965150614491, 30.162490261739212 ], [ -95.876124151341131, 30.162578261800931 ], [ -95.876231151272165, 30.162617261798019 ], [ -95.876364150790408, 30.162611261014789 ], [ -95.876573150840215, 30.162622260932558 ], [ -95.876762151118129, 30.162743261750649 ], [ -95.876851151713382, 30.162859261036068 ], [ -95.876945150718953, 30.163007261790014 ], [ -95.87741315135186, 30.163837261488482 ], [ -95.877546151481098, 30.163991261904133 ], [ -95.877704151078973, 30.164112261999243 ], [ -95.878096152006691, 30.164382261238668 ], [ -95.878678152165236, 30.164618262136841 ], [ -95.879519151877233, 30.164806262122394 ], [ -95.881005152494808, 30.165488261708948 ], [ -95.881327152721298, 30.165664261456122 ], [ -95.881479152164786, 30.165697262021521 ], [ -95.881764152910733, 30.165702261401215 ], [ -95.881909152740036, 30.16568626172587 ], [ -95.881987152224085, 30.165649262081221 ], [ -95.882122153106266, 30.165729261683431 ], [ -95.882582152701218, 30.1660512621721 ], [ -95.88321515328343, 30.166494261525571 ], [ -95.88325315300699, 30.166455261664975 ], [ -95.883282152674369, 30.166427261469856 ], [ -95.883366152761724, 30.166342261888406 ], [ -95.883629152698759, 30.166083261737366 ], [ -95.883823153566155, 30.165889261371014 ], [ -95.883975152866796, 30.165738261537392 ], [ -95.884488152725481, 30.165226261720232 ], [ -95.885501153260506, 30.164219261218157 ], [ -95.886052153785812, 30.163715261514259 ], [ -95.886177153725399, 30.163602260962552 ], [ -95.886621153786834, 30.163266261149971 ], [ -95.886759154221735, 30.163162261168679 ], [ -95.886861153337861, 30.163109260809641 ], [ -95.887303153915269, 30.162883260778187 ], [ -95.887637154333703, 30.162729261101685 ], [ -95.887788153792172, 30.16266026087818 ], [ -95.887906154417976, 30.162627261241717 ], [ -95.888013154525723, 30.162597261236126 ], [ -95.888171154347205, 30.162552261001014 ], [ -95.888478154366894, 30.162467260678081 ], [ -95.888878153780809, 30.16238826063644 ], [ -95.888978154439272, 30.162369261054227 ], [ -95.889250153947359, 30.162320260637241 ], [ -95.889283154168936, 30.162317260437646 ], [ -95.889341154424812, 30.162312260854282 ], [ -95.889449154251778, 30.162302260754263 ], [ -95.889892154909788, 30.162267260541313 ], [ -95.889998154500645, 30.162259260472982 ], [ -95.892845155481524, 30.162231260734707 ], [ -95.89452115533777, 30.162195260571487 ], [ -95.894698155463814, 30.162191260713293 ], [ -95.894805155298599, 30.16219326078058 ], [ -95.894867155486253, 30.162188260889163 ], [ -95.895222156341418, 30.16218126044652 ], [ -95.895577155620529, 30.162175260724563 ], [ -95.895865156062257, 30.16217026018953 ], [ -95.898339156986609, 30.162098260353357 ], [ -95.898815156341243, 30.16210726007845 ], [ -95.899445156445069, 30.162120260763981 ], [ -95.900391156762552, 30.162282260388153 ], [ -95.902409157407533, 30.162717260442303 ], [ -95.903710158088586, 30.163034260656282 ], [ -95.903768158341961, 30.163048260804864 ], [ -95.904403158080143, 30.163139260281227 ], [ -95.904971158871902, 30.163221260745157 ], [ -95.906503158958373, 30.163214260755822 ], [ -95.907206159016482, 30.163211260829407 ], [ -95.907415159097397, 30.163209260272986 ], [ -95.908044159129716, 30.163207260635573 ], [ -95.908168159368884, 30.16320626022058 ], [ -95.908254158927548, 30.163206259975155 ], [ -95.90831015916504, 30.163205259955735 ], [ -95.908479159000194, 30.163205260707251 ], [ -95.90853615903427, 30.163205259985812 ], [ -95.911073159406897, 30.163194260394793 ], [ -95.911394159981853, 30.163192260047126 ], [ -95.911428159949295, 30.163192259879636 ], [ -95.911961160174727, 30.163189260240124 ], [ -95.914955160563125, 30.163236260281884 ], [ -95.916313161430637, 30.163262260403254 ], [ -95.916768161694435, 30.163272260167737 ], [ -95.917976162096025, 30.163278260427251 ], [ -95.918777162131178, 30.163403260146222 ], [ -95.919933162197353, 30.163754260052695 ], [ -95.920207162351176, 30.163832259651507 ], [ -95.921997162960864, 30.164366259893928 ], [ -95.922740162487983, 30.164559259808804 ], [ -95.923275163553711, 30.1646922600107 ], [ -95.923789163666896, 30.164748260046515 ], [ -95.924534163337327, 30.16475626009484 ], [ -95.924975163758816, 30.164758260351331 ], [ -95.92626116353857, 30.164746260379474 ], [ -95.926387163620092, 30.164741260427906 ], [ -95.928735164180495, 30.164698260232132 ], [ -95.929996164400265, 30.164675259947177 ], [ -95.931470165062066, 30.164692259918031 ], [ -95.932434165747651, 30.164758259700548 ], [ -95.932737166031643, 30.164819259561163 ], [ -95.933277165157975, 30.164923259526628 ], [ -95.933973165982252, 30.164939260005099 ], [ -95.937040166100104, 30.164835259829527 ], [ -95.938523167142563, 30.164828259460528 ], [ -95.939112167575374, 30.164673259204093 ], [ -95.939493167254298, 30.164415259804063 ], [ -95.939849167165278, 30.164000259731061 ], [ -95.939980167192402, 30.163604259185341 ], [ -95.940021167100653, 30.162912258782367 ], [ -95.939863167422317, 30.158731258391452 ], [ -95.939686166443096, 30.154713257230004 ], [ -95.939658166514519, 30.15342225709573 ], [ -95.939658167163458, 30.152751257447523 ], [ -95.939751166635816, 30.152375257022037 ], [ -95.939882166269172, 30.152126256572647 ], [ -95.939943166974331, 30.152015256597441 ], [ -95.940543167303503, 30.151415257022467 ], [ -95.942635167096512, 30.149833256717933 ], [ -95.944549168260266, 30.148393255896746 ], [ -95.944590167483597, 30.148363255651009 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 509, "Tract": "48473680602", "Area_SqMi": 53.922201178820778, "total_2009": 281, "total_2010": 307, "total_2011": 401, "total_2012": 362, "total_2013": 386, "total_2014": 430, "total_2015": 421, "total_2016": 459, "total_2017": 483, "total_2018": 477, "total_2019": 511, "total_2020": 510, "age1": 128, "age2": 347, "age3": 169, "earn1": 115, "earn2": 225, "earn3": 304, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 168, "naics_s05": 64, "naics_s06": 167, "naics_s07": 41, "naics_s08": 0, "naics_s09": 0, "naics_s10": 10, "naics_s11": 1, "naics_s12": 35, "naics_s13": 0, "naics_s14": 128, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 0, "naics_s19": 19, "naics_s20": 1, "race1": 566, "race2": 38, "race3": 5, "race4": 21, "race5": 0, "race6": 14, "ethnicity1": 472, "ethnicity2": 172, "edu1": 106, "edu2": 159, "edu3": 164, "edu4": 87, "Shape_Length": 190473.74563825279, "Shape_Area": 1503258680.0958581, "total_2021": 508, "total_2022": 644 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.969701175872785, 30.187422262669216 ], [ -95.969700176262023, 30.187371263520834 ], [ -95.969688176444578, 30.186992262758377 ], [ -95.969674175937755, 30.186484262811696 ], [ -95.969640176198979, 30.185856263181918 ], [ -95.969620175732899, 30.185478262369216 ], [ -95.969586176214577, 30.18485226217873 ], [ -95.96954317526658, 30.184060262536025 ], [ -95.96949617536167, 30.182975262537749 ], [ -95.969470175696273, 30.182350262058531 ], [ -95.969463175450755, 30.18220126205799 ], [ -95.969445175621459, 30.181754261891019 ], [ -95.969439175713532, 30.181605261816603 ], [ -95.96937917603482, 30.180207261503899 ], [ -95.969307175622149, 30.178496260893763 ], [ -95.969266174984725, 30.177372261439359 ], [ -95.969215175004706, 30.176015260756596 ], [ -95.969190175054351, 30.175311260816599 ], [ -95.969179175032437, 30.174618260450675 ], [ -95.969175175428376, 30.174397260469643 ], [ -95.969165174841152, 30.173737259885971 ], [ -95.969162174707421, 30.17351726054223 ], [ -95.969157174886732, 30.173212259982328 ], [ -95.969059175031319, 30.17120725989103 ], [ -95.969051175378851, 30.171034259686252 ], [ -95.968951174501257, 30.16827325886802 ], [ -95.968883174789937, 30.166417259164518 ], [ -95.968833174605464, 30.165459258689754 ], [ -95.96878517509559, 30.165246258292566 ], [ -95.968595174522349, 30.165003258241722 ], [ -95.968426174678243, 30.16481225861337 ], [ -95.968095174818302, 30.164586258939341 ], [ -95.968071174444844, 30.164570258976791 ], [ -95.967679173939516, 30.164440258285261 ], [ -95.967249174631817, 30.164378258405399 ], [ -95.965815174094246, 30.164409258332334 ], [ -95.965287173509211, 30.164419258335954 ], [ -95.963705173011178, 30.164449258603405 ], [ -95.963178173128014, 30.164460258355778 ], [ -95.963152173758942, 30.164368258256676 ], [ -95.96305117271055, 30.16422025831714 ], [ -95.962810172947329, 30.164071258763723 ], [ -95.96276617344121, 30.164044259038409 ], [ -95.962197172881829, 30.163726258690669 ], [ -95.962064172446617, 30.163627258373946 ], [ -95.961868173077335, 30.163561258897523 ], [ -95.961285172808431, 30.163433258850866 ], [ -95.961166172237526, 30.163407258516788 ], [ -95.960989172167999, 30.163396258353881 ], [ -95.9607671727602, 30.163396258993981 ], [ -95.960740172328158, 30.163420258811687 ], [ -95.960723173076858, 30.1634512589272 ], [ -95.960686172604369, 30.163479258856622 ], [ -95.960672172641196, 30.16349025887796 ], [ -95.960623172124457, 30.163528258990659 ], [ -95.960622172345239, 30.163586258778022 ], [ -95.960622172514036, 30.163633258191172 ], [ -95.960508172950455, 30.163688258821814 ], [ -95.96044517231222, 30.163644259020238 ], [ -95.960331172573817, 30.163589258207224 ], [ -95.960318172661118, 30.163501258229619 ], [ -95.960350172836101, 30.163473258244807 ], [ -95.960363172511904, 30.163440258321192 ], [ -95.960331172796003, 30.16341325902269 ], [ -95.960116172508549, 30.163369258976143 ], [ -95.95980617260534, 30.163264258693214 ], [ -95.959572172587841, 30.163270258880704 ], [ -95.959117172334828, 30.163248258352244 ], [ -95.958946172374382, 30.16318825835036 ], [ -95.958864172307315, 30.163122258923988 ], [ -95.958661171836795, 30.162929258793309 ], [ -95.958610171583956, 30.162539258315004 ], [ -95.9585161718623, 30.16242425803534 ], [ -95.958351171516483, 30.16229825861577 ], [ -95.957978171949506, 30.162127258593067 ], [ -95.957959171665664, 30.162127258585922 ], [ -95.95772417122204, 30.162135258805794 ], [ -95.957618171453447, 30.162131258556659 ], [ -95.957508171933043, 30.162124258405065 ], [ -95.957092171713242, 30.161992258654024 ], [ -95.95672517146572, 30.161700258004299 ], [ -95.956459171812384, 30.161540258277142 ], [ -95.956086171043594, 30.161364257937645 ], [ -95.955934171033689, 30.161325257893587 ], [ -95.955826171372365, 30.161270257989862 ], [ -95.955757170823645, 30.16119325783492 ], [ -95.955733170826079, 30.161034258226415 ], [ -95.955726171132824, 30.160951258282573 ], [ -95.95563117118634, 30.160594258131109 ], [ -95.955574170767349, 30.16046225830997 ], [ -95.955441171368662, 30.160314258140613 ], [ -95.954581170386177, 30.159655257784298 ], [ -95.954467170842321, 30.159512258214029 ], [ -95.954391170662404, 30.159166257784769 ], [ -95.954385171066662, 30.159001258043276 ], [ -95.954423171134081, 30.158748258084895 ], [ -95.954404170566647, 30.158550257817694 ], [ -95.954258170430705, 30.158303257651845 ], [ -95.954151170522096, 30.158209257546474 ], [ -95.954018170126005, 30.15811625790041 ], [ -95.95365117044463, 30.158017257380195 ], [ -95.953512170394802, 30.158017257845376 ], [ -95.953392170435507, 30.158045258072413 ], [ -95.953158170088585, 30.158138257730268 ], [ -95.953107170010384, 30.158231258146664 ], [ -95.953084170616194, 30.15827425810485 ], [ -95.952932170209266, 30.158269257488897 ], [ -95.952894170435485, 30.158256257643167 ], [ -95.95279916986874, 30.158243257344576 ], [ -95.952772170492409, 30.158122257361864 ], [ -95.952779169899159, 30.158074257582886 ], [ -95.952867170766964, 30.157490258051951 ], [ -95.952817170318454, 30.157281257866551 ], [ -95.952797170263509, 30.157193257966 ], [ -95.952759170199727, 30.157116257836961 ], [ -95.952702170435288, 30.157044257221557 ], [ -95.952480170386167, 30.156988257987592 ], [ -95.952361169685233, 30.156959257164875 ], [ -95.952271169900357, 30.156820257108716 ], [ -95.952181170334654, 30.156681257886351 ], [ -95.952014170341997, 30.156520257755922 ], [ -95.951961169787907, 30.156469257269286 ], [ -95.951883169504384, 30.156459257499055 ], [ -95.951849170464129, 30.156391257263959 ], [ -95.951418170120192, 30.156193257385528 ], [ -95.951286170342598, 30.156182257533466 ], [ -95.951165169539721, 30.156160257263988 ], [ -95.950969169616215, 30.156077257740169 ], [ -95.950742169798843, 30.155995257331178 ], [ -95.950609169807692, 30.155979257311611 ], [ -95.950558169748348, 30.156034257013815 ], [ -95.950558169329085, 30.156171257367831 ], [ -95.950546169835661, 30.156248257525117 ], [ -95.950482169564992, 30.156264257911641 ], [ -95.950438169603601, 30.156270257085726 ], [ -95.950267169628077, 30.156242257829426 ], [ -95.949882169964255, 30.156116257137697 ], [ -95.949856169424194, 30.156006257819392 ], [ -95.949840169773879, 30.155979257576689 ], [ -95.94969816967162, 30.155742257406562 ], [ -95.949736169912924, 30.155588256948931 ], [ -95.949698169131324, 30.155484257314342 ], [ -95.949647169398645, 30.155446257216973 ], [ -95.949565168929965, 30.155435257555315 ], [ -95.949186168967643, 30.155297256867133 ], [ -95.949104169583634, 30.155308256971221 ], [ -95.948965169535043, 30.155303257777323 ], [ -95.948712168926107, 30.15524825744685 ], [ -95.948604168832745, 30.155215257714925 ], [ -95.948484168932112, 30.155209257691531 ], [ -95.948288168695868, 30.15521525774767 ], [ -95.948243169257424, 30.15519825708262 ], [ -95.948174168777044, 30.155143257173975 ], [ -95.94815516864719, 30.155116257234276 ], [ -95.948161168907887, 30.15506725761157 ], [ -95.948206169327676, 30.155045257655029 ], [ -95.948225168492868, 30.154995256999129 ], [ -95.948199169004354, 30.154924257061641 ], [ -95.948098168917269, 30.154819257480046 ], [ -95.947984169366435, 30.154731256866409 ], [ -95.947881169214426, 30.154552256807637 ], [ -95.947864169018871, 30.154522257426798 ], [ -95.947617168795432, 30.154369256762681 ], [ -95.947548169189503, 30.154314257416505 ], [ -95.947466169178114, 30.154308256752458 ], [ -95.947459169163849, 30.154336256982255 ], [ -95.947485168667299, 30.154402256798164 ], [ -95.947485169113207, 30.154451257189358 ], [ -95.947579169047899, 30.154511257323108 ], [ -95.947611168873749, 30.154566257401598 ], [ -95.947611168866786, 30.154594257616665 ], [ -95.947560168310346, 30.154627257085618 ], [ -95.947472169018354, 30.154649257708876 ], [ -95.947390169073444, 30.154720257599397 ], [ -95.94731416887852, 30.154687257276393 ], [ -95.947295168783228, 30.154627257593393 ], [ -95.947295168775, 30.154583257510129 ], [ -95.947320168337299, 30.154534257623425 ], [ -95.947383168662014, 30.154512257538322 ], [ -95.94739016896996, 30.154473256848068 ], [ -95.947377169128927, 30.154446257557183 ], [ -95.947345168459677, 30.15443525748352 ], [ -95.947137168697253, 30.154457256879862 ], [ -95.947073168488629, 30.154451257405647 ], [ -95.946789169060011, 30.154193256759527 ], [ -95.946827168717689, 30.154160256741683 ], [ -95.946941169046042, 30.154099257476396 ], [ -95.946934169108204, 30.154022256841603 ], [ -95.946903168456771, 30.153978257166489 ], [ -95.94679516867869, 30.153984257534923 ], [ -95.946707168045677, 30.15385225727163 ], [ -95.946713168146516, 30.153775257441026 ], [ -95.946827168530149, 30.153704256772176 ], [ -95.947061168978394, 30.153264256681169 ], [ -95.947111168137454, 30.153143257013319 ], [ -95.947080168549363, 30.153006256858088 ], [ -95.946972168953025, 30.152846256586116 ], [ -95.946890168159015, 30.152780257329042 ], [ -95.946650168060174, 30.152528256651937 ], [ -95.946529168941169, 30.152385256707866 ], [ -95.94646016882416, 30.152324256522533 ], [ -95.946371168287953, 30.152264257061937 ], [ -95.946276168199404, 30.15227525723402 ], [ -95.946194168843405, 30.152269256668209 ], [ -95.946049167867614, 30.15212125712689 ], [ -95.945834167895839, 30.151967256495194 ], [ -95.945802168512444, 30.151907256505211 ], [ -95.945808168419333, 30.151835256941272 ], [ -95.945903167971878, 30.151676256762698 ], [ -95.945878168350475, 30.151560256331937 ], [ -95.945872168689291, 30.151472257002716 ], [ -95.945815167962863, 30.151132256250953 ], [ -95.945764168447411, 30.151071256382139 ], [ -95.945694167855606, 30.151033256453875 ], [ -95.945619167758366, 30.151038256974509 ], [ -95.945555168067088, 30.151077256774528 ], [ -95.945517167786193, 30.151143257015775 ], [ -95.945492168237578, 30.151154256660085 ], [ -95.945454168239237, 30.151148256461017 ], [ -95.945448168516862, 30.151110256535443 ], [ -95.945506167628537, 30.151055256923929 ], [ -95.945530167654127, 30.15103325665353 ], [ -95.945562167649996, 30.150978256941951 ], [ -95.945555168048259, 30.150884256341101 ], [ -95.945517168186683, 30.150840256180203 ], [ -95.945511167994937, 30.150813256735326 ], [ -95.945549168473974, 30.150753256681316 ], [ -95.945549168011325, 30.150725256399465 ], [ -95.945460168440391, 30.150725256343819 ], [ -95.945334167643736, 30.150593256681034 ], [ -95.945195168361707, 30.150494256521327 ], [ -95.945195168453253, 30.150434256446356 ], [ -95.945264167802492, 30.150357256636827 ], [ -95.945315167749825, 30.15031825600612 ], [ -95.945321167867405, 30.150225256208387 ], [ -95.945353167721933, 30.150170256528646 ], [ -95.945359168177887, 30.150104256228627 ], [ -95.945239167725958, 30.149681256669325 ], [ -95.94523916749219, 30.149615256377839 ], [ -95.945258168358009, 30.149549256154575 ], [ -95.945296167998734, 30.149499255845591 ], [ -95.945347167734241, 30.149505256171011 ], [ -95.945378167971839, 30.149560255916878 ], [ -95.945416168353503, 30.149565256282244 ], [ -95.945435168298118, 30.149543256205618 ], [ -95.94547916853071, 30.149434256505053 ], [ -95.945524168544011, 30.14936225614451 ], [ -95.945479167697655, 30.149340255909749 ], [ -95.945454167717799, 30.14929625664583 ], [ -95.945460167926498, 30.149247256103745 ], [ -95.945492167996633, 30.149203255980872 ], [ -95.945397168010913, 30.14910425589327 ], [ -95.945340168130826, 30.149005255806959 ], [ -95.945176168148919, 30.148862256196573 ], [ -95.944652167830824, 30.148319255701622 ], [ -95.944590167483597, 30.148363255651009 ], [ -95.944549168260266, 30.148393255896746 ], [ -95.942635167096512, 30.149833256717933 ], [ -95.940543167303503, 30.151415257022467 ], [ -95.939943166974331, 30.152015256597441 ], [ -95.939882166269172, 30.152126256572647 ], [ -95.939751166635816, 30.152375257022037 ], [ -95.939658167163458, 30.152751257447523 ], [ -95.939658166514519, 30.15342225709573 ], [ -95.939686166443096, 30.154713257230004 ], [ -95.939863167422317, 30.158731258391452 ], [ -95.940021167100653, 30.162912258782367 ], [ -95.939980167192402, 30.163604259185341 ], [ -95.939849167165278, 30.164000259731061 ], [ -95.939493167254298, 30.164415259804063 ], [ -95.939112167575374, 30.164673259204093 ], [ -95.938523167142563, 30.164828259460528 ], [ -95.937040166100104, 30.164835259829527 ], [ -95.933973165982252, 30.164939260005099 ], [ -95.933277165157975, 30.164923259526628 ], [ -95.932737166031643, 30.164819259561163 ], [ -95.932434165747651, 30.164758259700548 ], [ -95.931470165062066, 30.164692259918031 ], [ -95.929996164400265, 30.164675259947177 ], [ -95.928735164180495, 30.164698260232132 ], [ -95.926387163620092, 30.164741260427906 ], [ -95.92626116353857, 30.164746260379474 ], [ -95.924975163758816, 30.164758260351331 ], [ -95.924534163337327, 30.16475626009484 ], [ -95.923789163666896, 30.164748260046515 ], [ -95.923275163553711, 30.1646922600107 ], [ -95.922740162487983, 30.164559259808804 ], [ -95.921997162960864, 30.164366259893928 ], [ -95.920207162351176, 30.163832259651507 ], [ -95.919933162197353, 30.163754260052695 ], [ -95.918777162131178, 30.163403260146222 ], [ -95.917976162096025, 30.163278260427251 ], [ -95.916768161694435, 30.163272260167737 ], [ -95.916313161430637, 30.163262260403254 ], [ -95.914955160563125, 30.163236260281884 ], [ -95.911961160174727, 30.163189260240124 ], [ -95.911428159949295, 30.163192259879636 ], [ -95.911394159981853, 30.163192260047126 ], [ -95.911073159406897, 30.163194260394793 ], [ -95.90853615903427, 30.163205259985812 ], [ -95.908479159000194, 30.163205260707251 ], [ -95.90831015916504, 30.163205259955735 ], [ -95.908254158927548, 30.163206259975155 ], [ -95.908168159368884, 30.16320626022058 ], [ -95.908044159129716, 30.163207260635573 ], [ -95.907415159097397, 30.163209260272986 ], [ -95.907206159016482, 30.163211260829407 ], [ -95.906503158958373, 30.163214260755822 ], [ -95.904971158871902, 30.163221260745157 ], [ -95.904403158080143, 30.163139260281227 ], [ -95.903768158341961, 30.163048260804864 ], [ -95.903710158088586, 30.163034260656282 ], [ -95.902409157407533, 30.162717260442303 ], [ -95.900391156762552, 30.162282260388153 ], [ -95.899445156445069, 30.162120260763981 ], [ -95.898815156341243, 30.16210726007845 ], [ -95.898339156986609, 30.162098260353357 ], [ -95.895865156062257, 30.16217026018953 ], [ -95.895577155620529, 30.162175260724563 ], [ -95.895222156341418, 30.16218126044652 ], [ -95.894867155486253, 30.162188260889163 ], [ -95.894805155298599, 30.16219326078058 ], [ -95.894698155463814, 30.162191260713293 ], [ -95.89452115533777, 30.162195260571487 ], [ -95.892845155481524, 30.162231260734707 ], [ -95.889998154500645, 30.162259260472982 ], [ -95.889892154909788, 30.162267260541313 ], [ -95.889449154251778, 30.162302260754263 ], [ -95.889341154424812, 30.162312260854282 ], [ -95.889283154168936, 30.162317260437646 ], [ -95.889250153947359, 30.162320260637241 ], [ -95.888978154439272, 30.162369261054227 ], [ -95.888878153780809, 30.16238826063644 ], [ -95.888478154366894, 30.162467260678081 ], [ -95.888171154347205, 30.162552261001014 ], [ -95.888013154525723, 30.162597261236126 ], [ -95.887906154417976, 30.162627261241717 ], [ -95.887788153792172, 30.16266026087818 ], [ -95.887637154333703, 30.162729261101685 ], [ -95.887303153915269, 30.162883260778187 ], [ -95.886861153337861, 30.163109260809641 ], [ -95.886759154221735, 30.163162261168679 ], [ -95.886621153786834, 30.163266261149971 ], [ -95.886177153725399, 30.163602260962552 ], [ -95.886052153785812, 30.163715261514259 ], [ -95.885501153260506, 30.164219261218157 ], [ -95.884488152725481, 30.165226261720232 ], [ -95.883975152866796, 30.165738261537392 ], [ -95.883823153566155, 30.165889261371014 ], [ -95.883629152698759, 30.166083261737366 ], [ -95.883366152761724, 30.166342261888406 ], [ -95.883282152674369, 30.166427261469856 ], [ -95.88325315300699, 30.166455261664975 ], [ -95.88321515328343, 30.166494261525571 ], [ -95.882582152701218, 30.1660512621721 ], [ -95.882122153106266, 30.165729261683431 ], [ -95.881987152224085, 30.165649262081221 ], [ -95.881909152740036, 30.16568626172587 ], [ -95.881764152910733, 30.165702261401215 ], [ -95.881479152164786, 30.165697262021521 ], [ -95.881327152721298, 30.165664261456122 ], [ -95.881005152494808, 30.165488261708948 ], [ -95.879519151877233, 30.164806262122394 ], [ -95.878678152165236, 30.164618262136841 ], [ -95.878096152006691, 30.164382261238668 ], [ -95.877704151078973, 30.164112261999243 ], [ -95.877546151481098, 30.163991261904133 ], [ -95.87741315135186, 30.163837261488482 ], [ -95.876945150718953, 30.163007261790014 ], [ -95.876851151713382, 30.162859261036068 ], [ -95.876762151118129, 30.162743261750649 ], [ -95.876573150840215, 30.162622260932558 ], [ -95.876364150790408, 30.162611261014789 ], [ -95.876231151272165, 30.162617261798019 ], [ -95.876124151341131, 30.162578261800931 ], [ -95.875965150614491, 30.162490261739212 ], [ -95.875820150489389, 30.162369261640141 ], [ -95.875757150830921, 30.162243260884001 ], [ -95.875757151357178, 30.16218826142617 ], [ -95.875776150879219, 30.16211126148735 ], [ -95.875466151248958, 30.161896261676407 ], [ -95.875276150788565, 30.161819261636719 ], [ -95.875118150993501, 30.161770261496454 ], [ -95.875005151184723, 30.16169826104586 ], [ -95.87462315011453, 30.1616822612073 ], [ -95.874471150499346, 30.161660261393955 ], [ -95.874288150124755, 30.161600260970424 ], [ -95.873902150450519, 30.161397261164158 ], [ -95.873769150578312, 30.161342261507947 ], [ -95.873630150524249, 30.161309261623483 ], [ -95.873478149819988, 30.16129326090137 ], [ -95.873326150045798, 30.161293261020933 ], [ -95.872548150483411, 30.161398261681136 ], [ -95.872384149497066, 30.16140926127294 ], [ -95.872194149523594, 30.161381261490774 ], [ -95.872150150247037, 30.161359261686687 ], [ -95.872010149526062, 30.16123326123159 ], [ -95.871871149890964, 30.161123261426042 ], [ -95.871702149769916, 30.161003260811786 ], [ -95.871669150201598, 30.160980261297333 ], [ -95.871618149641478, 30.160958260968037 ], [ -95.871378149505617, 30.160903260885203 ], [ -95.871251149173915, 30.160843261547022 ], [ -95.871118149230767, 30.160629260785047 ], [ -95.870922150020718, 30.160437260714723 ], [ -95.870865149724679, 30.160349261128776 ], [ -95.870814149775114, 30.16021126107556 ], [ -95.870808149517444, 30.160162261194081 ], [ -95.870846149524596, 30.160079261234326 ], [ -95.87097214935045, 30.159947260814441 ], [ -95.870998149251903, 30.159881260597075 ], [ -95.870991149280684, 30.159810260558888 ], [ -95.870972149884267, 30.159766261068061 ], [ -95.870858149412399, 30.159623261060965 ], [ -95.870814149502408, 30.159541260801316 ], [ -95.87071914985097, 30.159244261298504 ], [ -95.870801149167903, 30.158969260800738 ], [ -95.870706148984993, 30.158914260920817 ], [ -95.870320149620994, 30.158749260657146 ], [ -95.869890148925109, 30.158294260617122 ], [ -95.869820148887698, 30.158074260689983 ], [ -95.869693148943767, 30.157585260506714 ], [ -95.869529148852862, 30.15721126073942 ], [ -95.869390148824095, 30.157167260115735 ], [ -95.869162149441166, 30.157123260402816 ], [ -95.868441149010835, 30.15692626088827 ], [ -95.868200149025469, 30.156882260149995 ], [ -95.868023149136263, 30.156821260630114 ], [ -95.867922149007427, 30.156750260531865 ], [ -95.867833148477018, 30.156657260425295 ], [ -95.867789148386251, 30.156541260718114 ], [ -95.867776148671453, 30.156321260705216 ], [ -95.86775714820601, 30.156277260626158 ], [ -95.867713148449894, 30.156228260239882 ], [ -95.867567148526291, 30.156102260237798 ], [ -95.867454148277503, 30.156019260458891 ], [ -95.867150147954888, 30.155849260532712 ], [ -95.867023148597326, 30.15579425999238 ], [ -95.866821148169194, 30.155745260185689 ], [ -95.866543147982341, 30.15570626056499 ], [ -95.866441148174289, 30.155679260324273 ], [ -95.866321148320097, 30.155640260738558 ], [ -95.86600514841713, 30.155503260413891 ], [ -95.865790147899418, 30.155448260050715 ], [ -95.865714148115728, 30.155421260278345 ], [ -95.865625148290206, 30.155371260492362 ], [ -95.865581148160402, 30.155306260094473 ], [ -95.865562147551714, 30.155234259832657 ], [ -95.865524148300977, 30.154943260016715 ], [ -95.865454148205856, 30.154838259872228 ], [ -95.865233147736575, 30.154558260091825 ], [ -95.865157148248514, 30.154481259695963 ], [ -95.864891147795831, 30.15429525970902 ], [ -95.864714147429012, 30.154190260113673 ], [ -95.864556147311092, 30.154003260226936 ], [ -95.864499148126626, 30.153948260475815 ], [ -95.864366148081089, 30.153910260105818 ], [ -95.864132147656434, 30.153888260194829 ], [ -95.864043147189278, 30.153850259847999 ], [ -95.863961146976422, 30.153773259635031 ], [ -95.863860147188504, 30.153712259765349 ], [ -95.863746147164122, 30.153679259847546 ], [ -95.863392147774704, 30.153669260383456 ], [ -95.86331614758366, 30.153619259718113 ], [ -95.863246147119327, 30.15355325973378 ], [ -95.863183147486879, 30.15346025962873 ], [ -95.863069147108561, 30.153191259625622 ], [ -95.863056147644826, 30.153108260057436 ], [ -95.863060147687776, 30.153060259827491 ], [ -95.861503146629772, 30.153107260217759 ], [ -95.859036146056056, 30.153182259805117 ], [ -95.856952146194402, 30.153227259860458 ], [ -95.856898145481736, 30.153225260141738 ], [ -95.856848145295118, 30.153230260209153 ], [ -95.856834145237983, 30.153230259823296 ], [ -95.856051145151397, 30.153263260546506 ], [ -95.855665144935742, 30.153317259907798 ], [ -95.855291144840706, 30.15339926061586 ], [ -95.855123144779554, 30.153430259897533 ], [ -95.85462114542176, 30.153494260140043 ], [ -95.854447144608969, 30.153497260063922 ], [ -95.85419714456873, 30.153502260410903 ], [ -95.853989144651266, 30.153506260639031 ], [ -95.853447145093227, 30.153516260588034 ], [ -95.853198145098744, 30.153522260711597 ], [ -95.852701144459587, 30.153531260692944 ], [ -95.851213144289275, 30.153561260030418 ], [ -95.850924144578983, 30.153567260146136 ], [ -95.850871144222936, 30.153568260372058 ], [ -95.850717144498162, 30.153566260268132 ], [ -95.850431144222668, 30.153562260132595 ], [ -95.849576143878011, 30.153553260161139 ], [ -95.849291143759487, 30.153550260165904 ], [ -95.848942143890397, 30.153546260622615 ], [ -95.848795143336773, 30.153545260606997 ], [ -95.848300143845293, 30.153539260203377 ], [ -95.847925143709105, 30.153535260806414 ], [ -95.847898143303624, 30.15353426094233 ], [ -95.847550143602447, 30.153531260364549 ], [ -95.847202143610644, 30.153526260880511 ], [ -95.846209142503653, 30.153514260980163 ], [ -95.846160143064765, 30.153514260282851 ], [ -95.846090143369636, 30.153514260920023 ], [ -95.845814143263325, 30.153501260655585 ], [ -95.845547143295121, 30.15348826057101 ], [ -95.845269142474891, 30.153379260445824 ], [ -95.844964142927523, 30.153188260883368 ], [ -95.844777142643977, 30.153075260672647 ], [ -95.844651142609877, 30.152999260462394 ], [ -95.844325142847211, 30.152923260153624 ], [ -95.843773142344432, 30.152890260519268 ], [ -95.842502141819693, 30.152894260449152 ], [ -95.841378141924963, 30.152872260186932 ], [ -95.840235141119408, 30.152851260819691 ], [ -95.840060140940523, 30.15284526103315 ], [ -95.838356140760141, 30.152883260995434 ], [ -95.838330140651266, 30.152884260861491 ], [ -95.836578140877123, 30.15295326072318 ], [ -95.83634014075615, 30.152922260783292 ], [ -95.836150140288851, 30.152841260474077 ], [ -95.835968140533453, 30.152715261004275 ], [ -95.835775140374153, 30.152521260797482 ], [ -95.835521140493938, 30.15228726060748 ], [ -95.835290140408134, 30.152155260606424 ], [ -95.835081140230898, 30.152098260737986 ], [ -95.834764139505864, 30.152074260584882 ], [ -95.83458413972815, 30.152072261075311 ], [ -95.834388140011015, 30.152070260276638 ], [ -95.832992139271326, 30.152085261021888 ], [ -95.831113138643715, 30.152107260898767 ], [ -95.830746138531651, 30.152111261289427 ], [ -95.830685138507405, 30.152112260940619 ], [ -95.829808138632373, 30.152130261333284 ], [ -95.829402138940736, 30.152121260806855 ], [ -95.829352138962065, 30.152120261171248 ], [ -95.829131138984124, 30.152079260987936 ], [ -95.829029138523467, 30.152049261176082 ], [ -95.828991138853553, 30.152024261305456 ], [ -95.828916138660631, 30.151972260899971 ], [ -95.8288571387817, 30.151878260663729 ], [ -95.828808138080021, 30.151763260695546 ], [ -95.828806138761479, 30.151751260711539 ], [ -95.828799138067907, 30.151598260641219 ], [ -95.828810137883352, 30.150733260891919 ], [ -95.828815138202231, 30.150394260335339 ], [ -95.828805138440586, 30.149950260596281 ], [ -95.828747138024937, 30.148244260546907 ], [ -95.828716138221083, 30.147698260231611 ], [ -95.82867513811793, 30.147550260260797 ], [ -95.828588138602797, 30.147448260060653 ], [ -95.828483138624406, 30.147388260280309 ], [ -95.828207138020034, 30.147368260152657 ], [ -95.827062137931506, 30.147436259958791 ], [ -95.827013137915159, 30.147438260147329 ], [ -95.826880137472116, 30.147441259878292 ], [ -95.826829137620379, 30.147442259849669 ], [ -95.825509137387414, 30.147481259973922 ], [ -95.824960137360264, 30.147497260357881 ], [ -95.823593137056392, 30.147537260460769 ], [ -95.822926136988642, 30.147527260072099 ], [ -95.822429136986713, 30.147507260367302 ], [ -95.821702136732071, 30.147520260536769 ], [ -95.821614136641472, 30.147518260055321 ], [ -95.821352135857467, 30.147515260116325 ], [ -95.821265136611729, 30.147514260402794 ], [ -95.820574135796718, 30.147502259906027 ], [ -95.820178135997509, 30.147496260476892 ], [ -95.819330135870601, 30.147504260771729 ], [ -95.81863413583261, 30.147495259993541 ], [ -95.818502135539276, 30.147493260205682 ], [ -95.81781113499639, 30.147473260665681 ], [ -95.817485135777943, 30.147477260292483 ], [ -95.816507134998076, 30.147493260327217 ], [ -95.816182135325192, 30.147498260510353 ], [ -95.815971134680396, 30.147499260032198 ], [ -95.815846135210123, 30.147502260445428 ], [ -95.814902134754249, 30.147526260493059 ], [ -95.814842134837562, 30.147517260315631 ], [ -95.814729134150397, 30.14750226018262 ], [ -95.814526134789986, 30.147415260600759 ], [ -95.814417134262186, 30.147504260935399 ], [ -95.814090134080018, 30.147774260284237 ], [ -95.813982134616694, 30.147864260426498 ], [ -95.813713134412495, 30.147864260998769 ], [ -95.813447134735398, 30.147886260680355 ], [ -95.813359134333879, 30.147864260165285 ], [ -95.812954133772735, 30.147650260246611 ], [ -95.812879134325513, 30.14759826048655 ], [ -95.812771133746878, 30.147524260499445 ], [ -95.812777133681791, 30.147397260354825 ], [ -95.812682134600365, 30.147194260124056 ], [ -95.812625133928222, 30.147122260611617 ], [ -95.81237213417667, 30.147073260087218 ], [ -95.812290133588291, 30.147012260017863 ], [ -95.812258133917325, 30.146875260074712 ], [ -95.812214133867371, 30.146809260158346 ], [ -95.812145134033457, 30.146743260744454 ], [ -95.812094134095304, 30.146721260739323 ], [ -95.812018134075359, 30.146705260680342 ], [ -95.811930133485589, 30.146699260497957 ], [ -95.811696133617261, 30.146754260362442 ], [ -95.811632134327994, 30.146760260109986 ], [ -95.811474133836157, 30.146727260785795 ], [ -95.811436133854272, 30.146694260053927 ], [ -95.811436134076388, 30.146661260222544 ], [ -95.811462133433878, 30.146617260279442 ], [ -95.811525133411379, 30.146562260143313 ], [ -95.811727133972354, 30.14646826007143 ], [ -95.811784134351356, 30.146430260544825 ], [ -95.811828133895602, 30.1463802607738 ], [ -95.811854134140532, 30.146331260309029 ], [ -95.811847133929362, 30.146287260683142 ], [ -95.811670133576627, 30.146067260717803 ], [ -95.811607133578562, 30.146018260021997 ], [ -95.811139134112224, 30.145781260281499 ], [ -95.811117133657447, 30.145766259899524 ], [ -95.811050133378927, 30.145721260320698 ], [ -95.810911133659886, 30.145567259985484 ], [ -95.810861133260076, 30.145528260279466 ], [ -95.810772134004083, 30.145490260059628 ], [ -95.81070313335772, 30.145484260043716 ], [ -95.810456133819713, 30.145611260090526 ], [ -95.81010213372204, 30.145556260660531 ], [ -95.810082133004911, 30.145551260632516 ], [ -95.809741133560436, 30.145462260088983 ], [ -95.809628133285599, 30.145402260373412 ], [ -95.809640132870186, 30.145248260382235 ], [ -95.809539133053462, 30.145028260205017 ], [ -95.809507133547001, 30.144929259748292 ], [ -95.809488133173573, 30.144847260178565 ], [ -95.809476132953606, 30.144632260241028 ], [ -95.809432133151375, 30.144572259684313 ], [ -95.809394133359746, 30.144544259693738 ], [ -95.809229133413169, 30.144473260001526 ], [ -95.809200133441266, 30.144456260393959 ], [ -95.809172133182344, 30.144440260039822 ], [ -95.809134132896276, 30.14440225991277 ], [ -95.809128132681337, 30.144363259907909 ], [ -95.80914713354548, 30.144325259903081 ], [ -95.809204132952459, 30.14428625970006 ], [ -95.80936213330078, 30.144226259854715 ], [ -95.809387133225684, 30.144198259557331 ], [ -95.809394132748139, 30.14416026005614 ], [ -95.809343132836517, 30.144028260220804 ], [ -95.809311133584757, 30.143863259892807 ], [ -95.809273133514367, 30.143808260345921 ], [ -95.809217133118338, 30.143781260124417 ], [ -95.809115132766166, 30.143764259920562 ], [ -95.80905813301338, 30.143764259795823 ], [ -95.809014132594825, 30.143775260218892 ], [ -95.808799133344849, 30.143940260415739 ], [ -95.808717132991063, 30.143978260376301 ], [ -95.808660132935401, 30.143995260433922 ], [ -95.808540133080669, 30.143989259629009 ], [ -95.808477133047418, 30.143967259571575 ], [ -95.808401132395332, 30.143923259760204 ], [ -95.808357132753116, 30.14387425968469 ], [ -95.80827413234482, 30.143715259639247 ], [ -95.808192132422988, 30.143643259624312 ], [ -95.807983132595325, 30.143506259603544 ], [ -95.807920132785981, 30.143445259879716 ], [ -95.807876132885355, 30.143363259713585 ], [ -95.807832132438122, 30.143220260175212 ], [ -95.807819132982885, 30.143143259657869 ], [ -95.807832132619751, 30.143077259663333 ], [ -95.807869132320405, 30.142995260161378 ], [ -95.807914132267015, 30.142945260060685 ], [ -95.807983133218542, 30.142907259876491 ], [ -95.808388132981136, 30.14283025990623 ], [ -95.808432132694207, 30.142780259370248 ], [ -95.80844513241135, 30.142720259713574 ], [ -95.808426132685625, 30.142604260078357 ], [ -95.808319132419214, 30.142247259608194 ], [ -95.808287132940038, 30.142027259894377 ], [ -95.80828713230629, 30.141945259579298 ], [ -95.808325132942031, 30.141719259724951 ], [ -95.808325132989921, 30.141610259886576 ], [ -95.80831413246986, 30.141580259521337 ], [ -95.808300132996678, 30.141543259885612 ], [ -95.807977132203874, 30.141203259396843 ], [ -95.807819132935606, 30.141060259321417 ], [ -95.807711132986086, 30.140988259187584 ], [ -95.807414132205011, 30.140955259169385 ], [ -95.80731913241101, 30.140933259823182 ], [ -95.807174132115151, 30.140840259140287 ], [ -95.807130132885931, 30.140785259069371 ], [ -95.807083132281093, 30.140671259457662 ], [ -95.806983132068453, 30.140834259278307 ], [ -95.80696213205141, 30.140869259663482 ], [ -95.806768131860579, 30.141146259373819 ], [ -95.806618132283404, 30.141276259745261 ], [ -95.806474132275525, 30.141404259957756 ], [ -95.806287132352622, 30.14159825973789 ], [ -95.806138132446378, 30.141754259476873 ], [ -95.806043131692462, 30.141882259290998 ], [ -95.805874131989725, 30.142111259682203 ], [ -95.805800132508068, 30.142240259728982 ], [ -95.805665132402098, 30.142474259925443 ], [ -95.805574132170321, 30.142609259951492 ], [ -95.805532132055347, 30.142717259782021 ], [ -95.805369131978949, 30.143143259976384 ], [ -95.805303132128316, 30.14351926012953 ], [ -95.805255132234493, 30.143795260223641 ], [ -95.805255132548254, 30.143830259984348 ], [ -95.805080132280722, 30.143830259786814 ], [ -95.804553132145898, 30.143828260141955 ], [ -95.804379131475244, 30.143829260130666 ], [ -95.804271132009973, 30.143729259694833 ], [ -95.80381413190679, 30.143721259978975 ], [ -95.803815131390962, 30.143939259982162 ], [ -95.803821131741984, 30.144593259903626 ], [ -95.80382313191339, 30.144812260056739 ], [ -95.803835131916657, 30.15095826120476 ], [ -95.803836132407781, 30.151589261626448 ], [ -95.803847132150452, 30.157103262611621 ], [ -95.803851132086805, 30.158765263536907 ], [ -95.803854132785631, 30.160428263884228 ], [ -95.803856132505246, 30.161365264084271 ], [ -95.803858132261723, 30.16230226392954 ], [ -95.803865132809449, 30.166255264783793 ], [ -95.803873132541739, 30.17020926577807 ], [ -95.803876132724284, 30.171920265535135 ], [ -95.803889133319927, 30.178344267018865 ], [ -95.803893133769549, 30.178697266932193 ], [ -95.803894133647617, 30.178774266873713 ], [ -95.803895133658344, 30.178909267434172 ], [ -95.803915133774638, 30.180865267857961 ], [ -95.803984133943757, 30.187369268779836 ], [ -95.804007133754808, 30.189537269368287 ], [ -95.804009133728641, 30.189764269178664 ], [ -95.804002134324818, 30.190302269628109 ], [ -95.803999133894408, 30.190624269882917 ], [ -95.803968133502451, 30.192599269654494 ], [ -95.803956133509416, 30.19336527047242 ], [ -95.803962134069678, 30.194488270373334 ], [ -95.803980134328427, 30.197857271397197 ], [ -95.803986134488341, 30.198838271676927 ], [ -95.803987134485197, 30.198981271161124 ], [ -95.803996134471191, 30.200730271653754 ], [ -95.804025134742531, 30.205978273112358 ], [ -95.804035135069952, 30.207728273156661 ], [ -95.804054135189787, 30.211407273447502 ], [ -95.804100135498246, 30.220295275933854 ], [ -95.804111135404796, 30.222444276069403 ], [ -95.80413013584311, 30.226124276765393 ], [ -95.804124135941663, 30.226192277030304 ], [ -95.804108135625853, 30.22639627653998 ], [ -95.804104135816786, 30.226465277227458 ], [ -95.804084135639542, 30.226648277202983 ], [ -95.804127135764205, 30.230286277489359 ], [ -95.8042241364288, 30.238266279227386 ], [ -95.804266136452497, 30.241752279890289 ], [ -95.804310136083799, 30.245352280345813 ], [ -95.804313136644168, 30.245575280971007 ], [ -95.804879137029872, 30.245650280807713 ], [ -95.805061137028787, 30.24563728057414 ], [ -95.811714138011794, 30.245079280177258 ], [ -95.814508138772453, 30.244845280179234 ], [ -95.814674138802459, 30.244842279809031 ], [ -95.815173138908165, 30.244837279852451 ], [ -95.815286139777768, 30.244836280310391 ], [ -95.815340139387004, 30.244836280407306 ], [ -95.815361138909253, 30.244836279779676 ], [ -95.81540313912123, 30.24483528047568 ], [ -95.818414139786015, 30.244802279694632 ], [ -95.818894139975797, 30.244793279631484 ], [ -95.819191140454521, 30.24478727955125 ], [ -95.820951140285118, 30.244762279620293 ], [ -95.820974140805234, 30.244760279591564 ], [ -95.821046140386372, 30.244758280247932 ], [ -95.821070140515346, 30.24475828007715 ], [ -95.821110140868853, 30.244757279615328 ], [ -95.821206140573423, 30.244755280003972 ], [ -95.82271514170769, 30.244635279584365 ], [ -95.822873140918077, 30.244604279825925 ], [ -95.823013140824429, 30.244577279771395 ], [ -95.828430142656401, 30.244238279960225 ], [ -95.828614143010284, 30.244227279533543 ], [ -95.828932142652164, 30.244209279462321 ], [ -95.829003142900731, 30.244204279813008 ], [ -95.829019142880568, 30.2442042793556 ], [ -95.83121714315827, 30.244078279006519 ], [ -95.832656144016937, 30.24400727917002 ], [ -95.834901143846494, 30.243875279222703 ], [ -95.839747145172637, 30.243588279201802 ], [ -95.839896145577967, 30.243579279225759 ], [ -95.840045146014177, 30.243571278952476 ], [ -95.842145146349864, 30.243450278617708 ], [ -95.852107148659286, 30.242461278391712 ], [ -95.853334148610557, 30.242374278307715 ], [ -95.853371148545662, 30.242371277868834 ], [ -95.855378149487933, 30.242229277930047 ], [ -95.855705149491115, 30.242217278056263 ], [ -95.858164150633272, 30.242056278467157 ], [ -95.860603150514692, 30.241897278360156 ], [ -95.861134151171584, 30.241863278296439 ], [ -95.867317152036961, 30.241459277414766 ], [ -95.867382151970531, 30.24145427775915 ], [ -95.868315152445575, 30.241383277423409 ], [ -95.869332152746011, 30.241306277865192 ], [ -95.869403152486043, 30.241301277752108 ], [ -95.871871153985524, 30.241113277100592 ], [ -95.872029153855735, 30.2411022777905 ], [ -95.87322715358421, 30.241011276932973 ], [ -95.877977155112546, 30.24065027711444 ], [ -95.878414155447658, 30.240617276701613 ], [ -95.879504155989991, 30.240535277359474 ], [ -95.882506156732333, 30.240297276876209 ], [ -95.886621156888921, 30.239972276951129 ], [ -95.888033157526849, 30.239861276540324 ], [ -95.888629157409298, 30.239814276447913 ], [ -95.890126158425645, 30.23969527638474 ], [ -95.890163158041247, 30.239692276705291 ], [ -95.895609159775404, 30.239310275910292 ], [ -95.898510160214911, 30.239107275950847 ], [ -95.899576160036645, 30.239031275918233 ], [ -95.899651160593649, 30.239026276240306 ], [ -95.89971016082626, 30.239022276180581 ], [ -95.900487160926886, 30.238995275730005 ], [ -95.900694160355741, 30.238981275680128 ], [ -95.90289016125017, 30.238823275348537 ], [ -95.904362161247548, 30.238713275959849 ], [ -95.907839162716968, 30.238448275517975 ], [ -95.911227163197438, 30.238259275330073 ], [ -95.911545164032205, 30.238241274992873 ], [ -95.918773164871581, 30.237710274797703 ], [ -95.918878165412352, 30.237703275303662 ], [ -95.923031166498973, 30.23731227454785 ], [ -95.923046166628723, 30.237310274691037 ], [ -95.923094166024271, 30.23730627475463 ], [ -95.923110166796903, 30.237305275045106 ], [ -95.92329016701801, 30.237289274415325 ], [ -95.92427916661029, 30.237291274937949 ], [ -95.926422166802396, 30.237297274283861 ], [ -95.927777167849698, 30.237475274836619 ], [ -95.928938167558911, 30.237629274456683 ], [ -95.929200168204829, 30.237629274669281 ], [ -95.929744168245449, 30.237598274924324 ], [ -95.929853167852301, 30.237591274150702 ], [ -95.929956168366033, 30.237598274265778 ], [ -95.930275168082929, 30.237616274206715 ], [ -95.930508168008458, 30.237613274481511 ], [ -95.930631168339517, 30.237609274119286 ], [ -95.930865168211724, 30.237615274447169 ], [ -95.93099316854736, 30.237610274163963 ], [ -95.931117168235644, 30.23761027477164 ], [ -95.931374168875166, 30.237609274269744 ], [ -95.931501168515425, 30.237614274447019 ], [ -95.931886168630925, 30.237630274128911 ], [ -95.932013169106668, 30.237638274287129 ], [ -95.932390168347482, 30.237622274687002 ], [ -95.932514168920065, 30.237624274626175 ], [ -95.93288616900017, 30.23759527454181 ], [ -95.933117169248462, 30.237590274696437 ], [ -95.933447168762939, 30.237579274800034 ], [ -95.933560169179614, 30.237572274609498 ], [ -95.933893169371487, 30.23755427443961 ], [ -95.934112169260075, 30.237544274740909 ], [ -95.934483168920636, 30.237233274283227 ], [ -95.934886169820473, 30.237531274784889 ], [ -95.935106169864611, 30.23753127395533 ], [ -95.935215169816445, 30.237526273968779 ], [ -95.935328170040961, 30.237518274252256 ], [ -95.93543817006146, 30.23750627445418 ], [ -95.935623169915644, 30.237519274681613 ], [ -95.935814169877077, 30.237524274344604 ], [ -95.935908169553073, 30.237529274746727 ], [ -95.936106169533858, 30.237521274639519 ], [ -95.936202170134777, 30.23751827466317 ], [ -95.936286169837345, 30.237527274070178 ], [ -95.936383169395853, 30.237518274149178 ], [ -95.936647169959414, 30.237517273951536 ], [ -95.936899170001652, 30.237517274435316 ], [ -95.93714617014335, 30.237516274578898 ], [ -95.937309170202383, 30.237517274762176 ], [ -95.937470169682015, 30.237518274369005 ], [ -95.937548169947448, 30.237520273877454 ], [ -95.937626170188764, 30.237522274242487 ], [ -95.937776170008988, 30.237524274044716 ], [ -95.93859717048619, 30.237564273872302 ], [ -95.940106170364544, 30.237429274396963 ], [ -95.942145170974854, 30.237304273943607 ], [ -95.948265172742381, 30.236929274223247 ], [ -95.948965172738156, 30.236887273389971 ], [ -95.950308173754109, 30.236910273482078 ], [ -95.950138173350041, 30.236579273939206 ], [ -95.949631173146756, 30.235589273428179 ], [ -95.949546173409033, 30.23542327321001 ], [ -95.949456173548882, 30.235262273474511 ], [ -95.949270173146502, 30.234929273078773 ], [ -95.948713172832825, 30.233932273322065 ], [ -95.948528172914834, 30.233600273364203 ], [ -95.948519172941502, 30.233584273110726 ], [ -95.948458172758023, 30.23349927276427 ], [ -95.948243172794363, 30.233202272879097 ], [ -95.948172172567823, 30.233103272589865 ], [ -95.948018172424653, 30.232889273076651 ], [ -95.947558172445994, 30.232250273043761 ], [ -95.947405172682821, 30.232038272504628 ], [ -95.946945172097969, 30.231400272512179 ], [ -95.945802171962512, 30.229818272716013 ], [ -95.945563172339945, 30.229491272050748 ], [ -95.945101171520477, 30.228856271957241 ], [ -95.944243171572708, 30.227678272032886 ], [ -95.943559171609962, 30.226738271535332 ], [ -95.9425721703698, 30.225264271561056 ], [ -95.94214417056601, 30.224484271523544 ], [ -95.941946171116044, 30.223979271438566 ], [ -95.941811171051611, 30.223632271596255 ], [ -95.941668170395658, 30.22305727159662 ], [ -95.941599170059391, 30.222571271455472 ], [ -95.941554170898499, 30.222248270708725 ], [ -95.941510170127145, 30.220875270490687 ], [ -95.941349170518237, 30.215781270105179 ], [ -95.941296170413594, 30.2140842697866 ], [ -95.943138170587872, 30.214035268937312 ], [ -95.943306170882735, 30.214031269601065 ], [ -95.947080171868507, 30.213963268936553 ], [ -95.94866717230002, 30.213915268865708 ], [ -95.949169171968279, 30.213900268720742 ], [ -95.94984217259595, 30.213945269134872 ], [ -95.950395172131977, 30.214038268864968 ], [ -95.950496171869347, 30.214070268941548 ], [ -95.951125172435297, 30.21428026898311 ], [ -95.951229172625574, 30.21431526922899 ], [ -95.951755172565555, 30.214632269597821 ], [ -95.952245172962606, 30.214921269110754 ], [ -95.952681172896504, 30.215107268838917 ], [ -95.952896173055208, 30.215178268924195 ], [ -95.95313317317293, 30.215258268907093 ], [ -95.953541172818305, 30.215333269292067 ], [ -95.954083172867854, 30.215386269568327 ], [ -95.954705173406737, 30.215382269171634 ], [ -95.955387173985528, 30.215377269356569 ], [ -95.955958174207126, 30.215374269236058 ], [ -95.959010174556482, 30.215327268890274 ], [ -95.960146175315273, 30.21533426866727 ], [ -95.960223175386758, 30.215340269256014 ], [ -95.960732174647774, 30.215380269249923 ], [ -95.960928174841854, 30.2154272686799 ], [ -95.961184175492406, 30.215489269017933 ], [ -95.961653175204162, 30.215673268781053 ], [ -95.962248174987209, 30.215986268837799 ], [ -95.962587175726128, 30.216218269225116 ], [ -95.962721175292685, 30.216106268956331 ], [ -95.962766175135002, 30.215872268831497 ], [ -95.962747175280327, 30.215013269230454 ], [ -95.962706175106916, 30.213067268661117 ], [ -95.962659175457091, 30.211197267853805 ], [ -95.962634175042311, 30.210164267773216 ], [ -95.962631174760503, 30.209926267634252 ], [ -95.962602174965127, 30.207728267234931 ], [ -95.96259917515988, 30.207454267613244 ], [ -95.962550174666774, 30.205494267209993 ], [ -95.96264617465377, 30.205298267167571 ], [ -95.962710174664991, 30.205226266993737 ], [ -95.962755175474072, 30.205172266854138 ], [ -95.962866174849907, 30.205055266919647 ], [ -95.962893175388089, 30.205026266674405 ], [ -95.963075175052779, 30.204951266871788 ], [ -95.963380175103907, 30.204911266951857 ], [ -95.964146175590145, 30.204909267016433 ], [ -95.965885175802583, 30.204857266844503 ], [ -95.9666461760456, 30.204831267129205 ], [ -95.968221176665253, 30.204778266497293 ], [ -95.968476176364845, 30.204745266779646 ], [ -95.968667176114423, 30.204672266984371 ], [ -95.968790176718372, 30.204569267007685 ], [ -95.968817176063069, 30.204546266509087 ], [ -95.9689451766058, 30.204406266180662 ], [ -95.969044177077691, 30.204287266644585 ], [ -95.969080176826907, 30.204145266875681 ], [ -95.969116176259149, 30.203973266056881 ], [ -95.969148176668938, 30.203517266309774 ], [ -95.969158176091909, 30.202822266192776 ], [ -95.969161176694385, 30.202681265867007 ], [ -95.969122175963122, 30.200434265459307 ], [ -95.969040176426759, 30.197603264766276 ], [ -95.969031176701677, 30.197263265216446 ], [ -95.968982175823214, 30.195411265060226 ], [ -95.968980175951003, 30.195341264302222 ], [ -95.968995176471338, 30.194909264803243 ], [ -95.969019175877847, 30.194275264681494 ], [ -95.969067175993857, 30.193806264347366 ], [ -95.969167175966092, 30.193419264513661 ], [ -95.969176176434459, 30.193387264168031 ], [ -95.969284176388285, 30.192931264611296 ], [ -95.96951517635901, 30.191935263613942 ], [ -95.969525176056976, 30.191839264090596 ], [ -95.969572176448324, 30.191438263563143 ], [ -95.969624176059213, 30.19079026413792 ], [ -95.969653175636964, 30.189553263509776 ], [ -95.969696176077889, 30.188602263132974 ], [ -95.969696176405151, 30.188489263616276 ], [ -95.969701175872785, 30.187422262669216 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 510, "Tract": "48473680302", "Area_SqMi": 43.717506055488478, "total_2009": 1536, "total_2010": 300, "total_2011": 326, "total_2012": 747, "total_2013": 629, "total_2014": 747, "total_2015": 838, "total_2016": 875, "total_2017": 1001, "total_2018": 1059, "total_2019": 1022, "total_2020": 679, "age1": 119, "age2": 381, "age3": 177, "earn1": 78, "earn2": 210, "earn3": 389, "naics_s01": 13, "naics_s02": 0, "naics_s03": 0, "naics_s04": 56, "naics_s05": 290, "naics_s06": 56, "naics_s07": 1, "naics_s08": 71, "naics_s09": 0, "naics_s10": 2, "naics_s11": 1, "naics_s12": 41, "naics_s13": 0, "naics_s14": 85, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 51, "naics_s19": 6, "naics_s20": 0, "race1": 577, "race2": 67, "race3": 3, "race4": 19, "race5": 2, "race6": 9, "ethnicity1": 439, "ethnicity2": 238, "edu1": 131, "edu2": 150, "edu3": 158, "edu4": 119, "Shape_Length": 182813.02000631337, "Shape_Area": 1218769245.56761, "total_2021": 577, "total_2022": 677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.993420173936684, 30.021202228858712 ], [ -95.993414174705606, 30.020849228601591 ], [ -95.99340417461913, 30.020129228665173 ], [ -95.993386174585851, 30.018889228172533 ], [ -95.993379173752686, 30.0184492283636 ], [ -95.993368174455426, 30.01765022793499 ], [ -95.993331174249775, 30.015173227677728 ], [ -95.99330817424503, 30.013624227323028 ], [ -95.993248173440094, 30.009598226168642 ], [ -95.993220173702767, 30.007742226042534 ], [ -95.99321617321074, 30.007431225892891 ], [ -95.993184173779809, 30.005265225652469 ], [ -95.993160173758866, 30.003691225333348 ], [ -95.993090173371826, 29.998970223951471 ], [ -95.993076173416242, 29.997998223631015 ], [ -95.993038173236556, 29.997859224136231 ], [ -95.993029172605134, 29.997402224327171 ], [ -95.993023173447881, 29.997195224042748 ], [ -95.993005173521922, 29.996577223726323 ], [ -95.992999172913329, 29.99637122327427 ], [ -95.992987172815219, 29.995971223295772 ], [ -95.992951172573598, 29.994772222932653 ], [ -95.99294017280495, 29.994373223379373 ], [ -95.992905173172105, 29.993208223357485 ], [ -95.99280217264743, 29.989715222449302 ], [ -95.992768172953916, 29.988551221973875 ], [ -95.992752172816438, 29.988013221962621 ], [ -95.992704172897973, 29.986398221365103 ], [ -95.992689172267347, 29.985861221577156 ], [ -95.992683172900385, 29.985677221551832 ], [ -95.99266717260204, 29.98512722177545 ], [ -95.992662172165765, 29.984944221437278 ], [ -95.992658172655297, 29.984822221336607 ], [ -95.992647171961565, 29.984457221617127 ], [ -95.992644172365772, 29.984336221254232 ], [ -95.992701172316387, 29.982379220619428 ], [ -95.992785171881636, 29.980555220617095 ], [ -95.992783172255827, 29.977882220052688 ], [ -95.992776171905234, 29.977371220129207 ], [ -95.992761172000854, 29.976674219970867 ], [ -95.992719172293491, 29.974585219615882 ], [ -95.992713172397643, 29.974279219405901 ], [ -95.992705171902799, 29.973889219418567 ], [ -95.992685172306793, 29.972474218632776 ], [ -95.992632171466468, 29.970432218544069 ], [ -95.992631171751725, 29.970237218248272 ], [ -95.992629171787598, 29.97004221810143 ], [ -95.992625171847607, 29.969786218461714 ], [ -95.992615171185875, 29.968625218090299 ], [ -95.992607172100094, 29.967852218374624 ], [ -95.992604172049198, 29.967515217928334 ], [ -95.992230171877296, 29.96750821803073 ], [ -95.983649169459227, 29.967589218524896 ], [ -95.982631169589069, 29.967600217830384 ], [ -95.979579168457363, 29.967635217926397 ], [ -95.97856216837188, 29.96764721876913 ], [ -95.977492168190324, 29.967659218426487 ], [ -95.974286166875089, 29.967696218436163 ], [ -95.973299167143082, 29.967708218250451 ], [ -95.973217166251843, 29.967709218257585 ], [ -95.971942166671113, 29.96771321841474 ], [ -95.971676166189681, 29.967715218842471 ], [ -95.96811816555973, 29.967748218959041 ], [ -95.966844165434054, 29.967761218974669 ], [ -95.966365165348819, 29.967765218699842 ], [ -95.965827164412644, 29.967771219208849 ], [ -95.964928164765709, 29.967778219300968 ], [ -95.964809164570624, 29.967780219009317 ], [ -95.964629164455658, 29.96778121887855 ], [ -95.964450164811112, 29.967783218504518 ], [ -95.963569163909398, 29.967791219210753 ], [ -95.960930163646225, 29.967816219442398 ], [ -95.960050163003558, 29.967825218760058 ], [ -95.959971163590808, 29.967486219458337 ], [ -95.959734163579981, 29.966470219066917 ], [ -95.959656163600599, 29.966132218483335 ], [ -95.959624163609291, 29.96497721812198 ], [ -95.95953716338218, 29.961706218301419 ], [ -95.95946616256019, 29.961529218155654 ], [ -95.959194163190631, 29.960851217472474 ], [ -95.959021162245122, 29.960464217511571 ], [ -95.958872162983312, 29.960142217809011 ], [ -95.958634162687886, 29.959592217259196 ], [ -95.958615163051931, 29.959548217852067 ], [ -95.958476162303114, 29.959099217650593 ], [ -95.958406162242866, 29.958621217673816 ], [ -95.958402162681878, 29.958433216940691 ], [ -95.958297162070167, 29.952007215799785 ], [ -95.958263161660142, 29.94986521561189 ], [ -95.958240161926227, 29.948451214821546 ], [ -95.958230161456839, 29.947699215055348 ], [ -95.958144161540645, 29.941202213875261 ], [ -95.958116161232709, 29.939037213592901 ], [ -95.958096161928466, 29.937585213082986 ], [ -95.958039160944168, 29.933230211917476 ], [ -95.958020160720778, 29.931779212171648 ], [ -95.955564160875454, 29.931800211613275 ], [ -95.948196158617407, 29.931864212082097 ], [ -95.945741158555492, 29.931886212565615 ], [ -95.941497156789254, 29.931923212046307 ], [ -95.928766154194662, 29.9320342132572 ], [ -95.926606152872054, 29.932053213408047 ], [ -95.924540152727403, 29.932094212622676 ], [ -95.924523152497414, 29.932094213023316 ], [ -95.922571152183039, 29.932133213520508 ], [ -95.916715150633976, 29.932250213702137 ], [ -95.91476414991476, 29.932290213112797 ], [ -95.913336150324, 29.932318213436346 ], [ -95.909053148565917, 29.932404213974188 ], [ -95.907807148851347, 29.932430213585757 ], [ -95.907900148569368, 29.932275213471474 ], [ -95.907894148095849, 29.931743213310348 ], [ -95.907886148197974, 29.930982213618176 ], [ -95.907876148157399, 29.930150213098045 ], [ -95.907871148325199, 29.929689212737539 ], [ -95.907870148317357, 29.929620213411333 ], [ -95.907040148236533, 29.929378213062321 ], [ -95.906833147982383, 29.929271213529496 ], [ -95.906643148184031, 29.929087213284447 ], [ -95.906438147713942, 29.928398212923586 ], [ -95.906295148231351, 29.928228212732161 ], [ -95.906147147759043, 29.92816821306776 ], [ -95.905911147389659, 29.928221213160178 ], [ -95.90576014734711, 29.928171213129371 ], [ -95.90511914799265, 29.927797212434868 ], [ -95.904890147228443, 29.92772521321276 ], [ -95.904737147663525, 29.927678212735628 ], [ -95.904255147417729, 29.927411213082461 ], [ -95.903985147470834, 29.927329212831047 ], [ -95.903582147511358, 29.927372212747898 ], [ -95.903351147495329, 29.927449212912173 ], [ -95.902862146953979, 29.927404212849886 ], [ -95.902585146887333, 29.927450212558544 ], [ -95.902309146312973, 29.927423213323419 ], [ -95.901917146592751, 29.927505212851241 ], [ -95.90150114699577, 29.927721213118534 ], [ -95.900816146338755, 29.927739212780811 ], [ -95.900033146158975, 29.928330213454412 ], [ -95.899840146099848, 29.928592212825112 ], [ -95.899550146452725, 29.928666213118685 ], [ -95.899306146152213, 29.928717212820853 ], [ -95.899177145943042, 29.928759213707465 ], [ -95.899133146356164, 29.928773213148563 ], [ -95.898947146145815, 29.92882121367964 ], [ -95.898328146073354, 29.928887213427092 ], [ -95.898139145644649, 29.928892213288687 ], [ -95.897823145662755, 29.928887213201875 ], [ -95.897684145305107, 29.928903213313887 ], [ -95.897369145602994, 29.928964213634398 ], [ -95.897262145395871, 29.928969213184345 ], [ -95.897028145991186, 29.928931213114542 ], [ -95.896606144936129, 29.928776213240425 ], [ -95.896505145667135, 29.928765213265802 ], [ -95.896164144853643, 29.928848213713906 ], [ -95.89608814521938, 29.928842213738157 ], [ -95.896006145076214, 29.928815213610719 ], [ -95.895874144723052, 29.928749213455987 ], [ -95.895804145057852, 29.928727213504356 ], [ -95.895728145328206, 29.928743213636306 ], [ -95.895659145026812, 29.928782213434808 ], [ -95.89560914551933, 29.928837213578319 ], [ -95.895571145304885, 29.928897213104246 ], [ -95.895539145615132, 29.928980213599342 ], [ -95.895501144902596, 29.929029213386823 ], [ -95.895362144991978, 29.929128213416366 ], [ -95.895173144827226, 29.929100213611253 ], [ -95.894952144664273, 29.929023213791371 ], [ -95.894801145129392, 29.929018213708527 ], [ -95.894694144973343, 29.929034213633301 ], [ -95.89458614492834, 29.929078213065544 ], [ -95.894517145390452, 29.929144213395521 ], [ -95.894410144798414, 29.929221213276566 ], [ -95.894271144888307, 29.929259213816799 ], [ -95.894223144767452, 29.929264213207979 ], [ -95.894044145257539, 29.929287213514073 ], [ -95.893734144847983, 29.929347213678781 ], [ -95.893633144625085, 29.929342213176557 ], [ -95.893501144543734, 29.929309213428539 ], [ -95.893425145012955, 29.929259214012543 ], [ -95.893362145147748, 29.929204213197057 ], [ -95.893261144229427, 29.929160213417699 ], [ -95.893072144976003, 29.929210213135171 ], [ -95.893040144203738, 29.929232213746168 ], [ -95.892927144268455, 29.929221213999742 ], [ -95.892813144803213, 29.929133213789999 ], [ -95.892624144717701, 29.929039213906652 ], [ -95.892523144308569, 29.928957213655409 ], [ -95.892447144807647, 29.928913213507776 ], [ -95.892359144643862, 29.928874213333597 ], [ -95.892163143949659, 29.928814213177581 ], [ -95.89204314437049, 29.928759213299731 ], [ -95.891968144760924, 29.928687213276898 ], [ -95.89187314409152, 29.928566213439694 ], [ -95.891822144278947, 29.928477213516981 ], [ -95.8917911439394, 29.928423213680752 ], [ -95.891766144621087, 29.928352213337988 ], [ -95.891697144639721, 29.92829121370087 ], [ -95.891564144622123, 29.928236213765945 ], [ -95.89141914454143, 29.928209213057762 ], [ -95.891148143777642, 29.928099213093013 ], [ -95.89105914394419, 29.928088213436361 ], [ -95.891003144260864, 29.928093213213113 ], [ -95.89085814366517, 29.928044213336886 ], [ -95.890479143670433, 29.927917213533387 ], [ -95.890302143637683, 29.927824212932357 ], [ -95.890225143489772, 29.927798213106186 ], [ -95.890107143674996, 29.927758213157567 ], [ -95.889949143804159, 29.927692212970008 ], [ -95.889804143473981, 29.927653213485911 ], [ -95.889570143894602, 29.927620213676526 ], [ -95.889312143604784, 29.927554213131181 ], [ -95.888637143561212, 29.927329213325184 ], [ -95.888416143794473, 29.927268212945904 ], [ -95.888268143052429, 29.927235213370295 ], [ -95.888189143711472, 29.927218213617625 ], [ -95.88779114329806, 29.927075213602155 ], [ -95.887615143224963, 29.927064213392271 ], [ -95.887646143132429, 29.926960213584771 ], [ -95.887688143005562, 29.926713213249279 ], [ -95.887697143387456, 29.926663212854596 ], [ -95.887811143347832, 29.926377213140078 ], [ -95.887804142587029, 29.926267213213393 ], [ -95.887779143551356, 29.926141213326137 ], [ -95.887697143242065, 29.925993212694216 ], [ -95.887502142665298, 29.925817213386182 ], [ -95.887466142704199, 29.925790213186247 ], [ -95.887357143082482, 29.92570721285453 ], [ -95.88718614239184, 29.925610212660565 ], [ -95.88716714238339, 29.925596212803001 ], [ -95.886833142576293, 29.925498212692151 ], [ -95.886492142761796, 29.925443212614155 ], [ -95.886208142864334, 29.925355213421007 ], [ -95.885861142306865, 29.925338213326903 ], [ -95.8857411429763, 29.925310213275612 ], [ -95.885647141949434, 29.925244213423341 ], [ -95.885615142629163, 29.925173212685447 ], [ -95.885660142296857, 29.925058213408764 ], [ -95.885735142798396, 29.924918213107102 ], [ -95.885843142224644, 29.924722212509025 ], [ -95.885950142121658, 29.924552213304082 ], [ -95.88610814267382, 29.924371212414123 ], [ -95.88611414227114, 29.924299212458962 ], [ -95.886095142653915, 29.924228212849904 ], [ -95.886045142451678, 29.924151212594225 ], [ -95.885894142297815, 29.924024213205559 ], [ -95.885780142495619, 29.923947212656209 ], [ -95.885540142865878, 29.923623212834823 ], [ -95.885572142083987, 29.923557213127921 ], [ -95.885641142074121, 29.923502212475277 ], [ -95.88578014271566, 29.923343212826641 ], [ -95.885787141952889, 29.923299212855689 ], [ -95.885780142671365, 29.923095213002039 ], [ -95.88584314229989, 29.922997212985337 ], [ -95.885938142713613, 29.922876212209992 ], [ -95.885982142888054, 29.922799212194008 ], [ -95.886090142485941, 29.922678212352608 ], [ -95.88612114274747, 29.922617212687751 ], [ -95.886084142596715, 29.922348212313924 ], [ -95.886128142260034, 29.922002211905141 ], [ -95.886134142173262, 29.921760212062956 ], [ -95.886235142712607, 29.921535212669095 ], [ -95.886242142734844, 29.921485211903782 ], [ -95.88619814214222, 29.921452212634289 ], [ -95.88588814210604, 29.921298212641773 ], [ -95.88576214277748, 29.921293212642283 ], [ -95.885598142797178, 29.921304212205882 ], [ -95.885358142337751, 29.921347212634213 ], [ -95.885201142263412, 29.921419212169042 ], [ -95.885024142564291, 29.921457212022201 ], [ -95.884690141562345, 29.92147421258494 ], [ -95.884544142540875, 29.921468212073449 ], [ -95.884515141799881, 29.921465212279486 ], [ -95.884229141846035, 29.921441212125156 ], [ -95.884065142409113, 29.921435212009332 ], [ -95.883825142111846, 29.921440212344031 ], [ -95.883661141989819, 29.921424211932862 ], [ -95.88358514169424, 29.92140221226742 ], [ -95.883522141684693, 29.921341211995948 ], [ -95.883466141408306, 29.921248212449662 ], [ -95.88343414121691, 29.921045212022115 ], [ -95.883554141552111, 29.920759211985796 ], [ -95.883605142246793, 29.920588212047509 ], [ -95.883596141660874, 29.920478212074865 ], [ -95.88358614166134, 29.920358211666436 ], [ -95.883416141445267, 29.920226212122436 ], [ -95.883277141602605, 29.920138211971981 ], [ -95.883100141741878, 29.91998921227168 ], [ -95.882990141934741, 29.919885212295014 ], [ -95.882949141623669, 29.919846212208757 ], [ -95.88282314145745, 29.919681211798537 ], [ -95.882709141712056, 29.919489211641153 ], [ -95.882646141764354, 29.919357212342344 ], [ -95.882489141554544, 29.919247211554399 ], [ -95.882243141371376, 29.919120212173105 ], [ -95.882053141458499, 29.91884521208512 ], [ -95.881763140824759, 29.918532211411279 ], [ -95.88166914090462, 29.91848321171604 ], [ -95.881562140847663, 29.918389211348092 ], [ -95.88151714129873, 29.918307211678552 ], [ -95.881518141524765, 29.918241211866281 ], [ -95.881549141109545, 29.918142212071622 ], [ -95.881694140821907, 29.917939211345697 ], [ -95.881802141193361, 29.917713211447357 ], [ -95.881808140656261, 29.917675211690902 ], [ -95.88174514074575, 29.917367211699815 ], [ -95.881771141194164, 29.91701521166884 ], [ -95.881796141548435, 29.916878211241887 ], [ -95.881764140588416, 29.916790211365473 ], [ -95.881727141321235, 29.916625211470365 ], [ -95.8817141413912, 29.916438211806199 ], [ -95.881739141417327, 29.916356211195819 ], [ -95.881784140915357, 29.916295210921604 ], [ -95.881853141130748, 29.916251211040752 ], [ -95.881935140926188, 29.916251211735727 ], [ -95.882023141125146, 29.916202211030189 ], [ -95.882131141657595, 29.916059211001272 ], [ -95.882137141509617, 29.915976211191211 ], [ -95.882124141263702, 29.915911210987367 ], [ -95.882124141363263, 29.915823210882245 ], [ -95.882131140954499, 29.915740210824939 ], [ -95.882169141182402, 29.915658211585995 ], [ -95.882238140807416, 29.915581211230226 ], [ -95.882295141373689, 29.915482211413888 ], [ -95.882333141164608, 29.915158211334802 ], [ -95.882384140834759, 29.914993211424555 ], [ -95.882447141642956, 29.914866210652487 ], [ -95.88257914124334, 29.914680210759009 ], [ -95.882636140936469, 29.914498210537378 ], [ -95.882592140833509, 29.914383210573575 ], [ -95.882561141136676, 29.914333210788918 ], [ -95.882548141403575, 29.914278211318258 ], [ -95.882485140952141, 29.914223211079733 ], [ -95.882390140773012, 29.914141210782205 ], [ -95.882176141035117, 29.914091210789806 ], [ -95.881917140827042, 29.914075211285166 ], [ -95.881621141003492, 29.914080211329619 ], [ -95.881040140809546, 29.913931210789524 ], [ -95.880927140741861, 29.913876211196659 ], [ -95.8808451403969, 29.913805211130509 ], [ -95.88070014074232, 29.913733210739355 ], [ -95.880542140175308, 29.913662211239579 ], [ -95.880372140089037, 29.913607211220775 ], [ -95.87995514068507, 29.913403211030591 ], [ -95.879123140136144, 29.912826210927619 ], [ -95.879085140140276, 29.912787210646272 ], [ -95.878946139877016, 29.912688211071782 ], [ -95.87876313994154, 29.912567211030485 ], [ -95.878587139686573, 29.912468210683826 ], [ -95.878455139751935, 29.912358210212986 ], [ -95.878309140277452, 29.912215210357978 ], [ -95.878045140189613, 29.91197921075511 ], [ -95.877937139435645, 29.911864210313531 ], [ -95.877830140345566, 29.911770210157776 ], [ -95.877521139483548, 29.911539210306604 ], [ -95.876815139245352, 29.911066210346537 ], [ -95.876689139491745, 29.910962210350103 ], [ -95.87627913930389, 29.910703210298099 ], [ -95.876153139310546, 29.91065421067087 ], [ -95.876033138908539, 29.910593209974596 ], [ -95.875806139330493, 29.910450210695654 ], [ -95.875711139613244, 29.91034021033548 ], [ -95.875226139117103, 29.909873210576915 ], [ -95.875169138867577, 29.909763210054493 ], [ -95.875112139083754, 29.909548210251383 ], [ -95.875030139168814, 29.90940021027356 ], [ -95.875005139408643, 29.909378210628976 ], [ -95.874408138928359, 29.908933210285205 ], [ -95.873998138957816, 29.908642210477481 ], [ -95.873638138141843, 29.908340209998894 ], [ -95.873468139092111, 29.908148210121414 ], [ -95.873304138810724, 29.90800521005179 ], [ -95.873146138171364, 29.907895210079346 ], [ -95.873070138640529, 29.907824210224256 ], [ -95.872969138100601, 29.907747210005041 ], [ -95.872868138667926, 29.907719209921968 ], [ -95.872742137947711, 29.907720209790671 ], [ -95.87247713883076, 29.907747210064574 ], [ -95.872231138650463, 29.907797210040066 ], [ -95.871783138437038, 29.90784120980458 ], [ -95.871430137953737, 29.907913210252936 ], [ -95.871197137691993, 29.907946210202258 ], [ -95.870850137929096, 29.907973209784263 ], [ -95.870711137685646, 29.907973209721643 ], [ -95.870585138044504, 29.907984210165395 ], [ -95.870446137358286, 29.908012210327559 ], [ -95.870257137645453, 29.908034210495472 ], [ -95.870149137575936, 29.908067210310271 ], [ -95.870030138206516, 29.908139210184981 ], [ -95.8698151380176, 29.908314210409763 ], [ -95.869582137471923, 29.908485210160936 ], [ -95.869134137296214, 29.908760210583857 ], [ -95.868973137940444, 29.908833209853665 ], [ -95.871015138302141, 29.914452210914945 ], [ -95.87108613816369, 29.914648211327997 ], [ -95.872972138982632, 29.919835211980921 ], [ -95.87880914156348, 29.935976215158028 ], [ -95.878841141696654, 29.936066215028369 ], [ -95.878874140771075, 29.9361562155493 ], [ -95.882817142692076, 29.946999217717469 ], [ -95.887879144693642, 29.960979220143017 ], [ -95.889159145388618, 29.964720221331675 ], [ -95.889283145649742, 29.965081221277654 ], [ -95.890197145238318, 29.968347221863475 ], [ -95.892222146633983, 29.975637223161474 ], [ -95.892356146747034, 29.975928223454822 ], [ -95.892453146619928, 29.976137222824093 ], [ -95.89264614639518, 29.976845222897627 ], [ -95.892697146293585, 29.977030223624887 ], [ -95.892762146592858, 29.977142223728393 ], [ -95.892944146787727, 29.977447223078247 ], [ -95.893108147175312, 29.977720223138377 ], [ -95.893313146984681, 29.978440223516362 ], [ -95.893411147378572, 29.978783223936166 ], [ -95.893512146502431, 29.979119223498557 ], [ -95.893816146818708, 29.980130223709502 ], [ -95.893918147457555, 29.98046722420656 ], [ -95.894003147490224, 29.980558223969805 ], [ -95.894069147640039, 29.98065422357918 ], [ -95.894132146768115, 29.980780223727642 ], [ -95.894176147269775, 29.980885224031052 ], [ -95.8941891468547, 29.981017223715288 ], [ -95.895247147455379, 29.983735224642146 ], [ -95.898424148695028, 29.991889226056504 ], [ -95.899483149173946, 29.994608226349811 ], [ -95.899554148888782, 29.994797226708993 ], [ -95.89966114876691, 29.99508322638065 ], [ -95.899767149501656, 29.995367226429572 ], [ -95.89983814884539, 29.995557226504662 ], [ -95.902345150283253, 30.002252227968917 ], [ -95.902447150116785, 30.002285228130582 ], [ -95.902516150392941, 30.00231822811093 ], [ -95.902750150370835, 30.002489228270996 ], [ -95.903210150772779, 30.002967227781273 ], [ -95.903356150352636, 30.003154227849933 ], [ -95.903387150848971, 30.003253228659013 ], [ -95.903387150878473, 30.00335722845735 ], [ -95.903400150741518, 30.003379228207763 ], [ -95.903457150085572, 30.003412228095659 ], [ -95.903488150856731, 30.003418228490286 ], [ -95.903684150251507, 30.003550228450624 ], [ -95.903772150742384, 30.003577228295381 ], [ -95.903848150793891, 30.003588228527075 ], [ -95.904050150255017, 30.003588228080481 ], [ -95.904347150610377, 30.003555228025785 ], [ -95.90442915123549, 30.003539228689366 ], [ -95.904505151083043, 30.00351222790162 ], [ -95.904688151119942, 30.003429228207406 ], [ -95.904757151126006, 30.003413227841857 ], [ -95.904909151124173, 30.003402228039768 ], [ -95.904953151047124, 30.003391227989784 ], [ -95.905023151411768, 30.0033302286176 ], [ -95.905149150743952, 30.003336227839615 ], [ -95.905250150611081, 30.003385228078184 ], [ -95.905376151238286, 30.003479228635719 ], [ -95.905641150671173, 30.003556227995308 ], [ -95.905749150968262, 30.003633227824512 ], [ -95.905818151331857, 30.003721228456023 ], [ -95.905850151532505, 30.003787228181075 ], [ -95.905976151314093, 30.003924228469419 ], [ -95.906064151499351, 30.004226227929212 ], [ -95.906127151113239, 30.004298228221753 ], [ -95.906468151525871, 30.004419228360039 ], [ -95.906607151275693, 30.004452228048784 ], [ -95.906835151314212, 30.004545228532869 ], [ -95.906873151668549, 30.004567228674841 ], [ -95.907144151096176, 30.004793228501306 ], [ -95.907232151203559, 30.004853228696799 ], [ -95.907365151455636, 30.004908228119643 ], [ -95.907580152100707, 30.004963228856269 ], [ -95.907719151701485, 30.005013228219358 ], [ -95.907838152134516, 30.005068227993142 ], [ -95.907987151349502, 30.005156228597798 ], [ -95.908034151974917, 30.005183228602821 ], [ -95.908123152053491, 30.005271228883171 ], [ -95.90820515204004, 30.005376228587732 ], [ -95.908261151838431, 30.005474228595968 ], [ -95.908299151655896, 30.005590228458423 ], [ -95.908318151454139, 30.005859228297023 ], [ -95.908369151462921, 30.005991228585977 ], [ -95.908476152203647, 30.006123228837172 ], [ -95.908514152409481, 30.006162228424898 ], [ -95.908571152322011, 30.006200228476199 ], [ -95.908634151518214, 30.006283228650361 ], [ -95.908691151792183, 30.006469228443006 ], [ -95.908691152017383, 30.006519228338348 ], [ -95.908678151652936, 30.006568228756976 ], [ -95.908634152039951, 30.006656228410108 ], [ -95.908526152318785, 30.006755228418463 ], [ -95.908362152326148, 30.006958228795884 ], [ -95.908236151645198, 30.007035228890452 ], [ -95.908059151735046, 30.007112229235275 ], [ -95.907977151492233, 30.007189229191681 ], [ -95.907945151684686, 30.00723322842456 ], [ -95.907920152292618, 30.007316228638743 ], [ -95.907939151919678, 30.007689228809799 ], [ -95.90797715148129, 30.00779422927841 ], [ -95.908027152003882, 30.007838228725905 ], [ -95.908071152467159, 30.007860229387553 ], [ -95.908223151906114, 30.007904228893583 ], [ -95.90831115238629, 30.007920228941202 ], [ -95.908412152252382, 30.007975228949849 ], [ -95.908501152021259, 30.008157228889608 ], [ -95.908532152252661, 30.008278228731143 ], [ -95.908538152301077, 30.00839822910612 ], [ -95.908507152619961, 30.008618228799293 ], [ -95.908519152089838, 30.008739229081282 ], [ -95.908532152345046, 30.008789229368588 ], [ -95.908564152010825, 30.008844228867346 ], [ -95.908652152216604, 30.008965228971274 ], [ -95.908671152594692, 30.009031229212436 ], [ -95.90867115232173, 30.009086228764431 ], [ -95.90862715212306, 30.009206229221995 ], [ -95.908532152142413, 30.009338229532876 ], [ -95.908462151645494, 30.009393229185143 ], [ -95.908374152615693, 30.009492229033171 ], [ -95.908279151662441, 30.009772229673061 ], [ -95.908210151910495, 30.010075229850603 ], [ -95.908184152349833, 30.010135229103607 ], [ -95.908077151790224, 30.010262229349305 ], [ -95.908001152450566, 30.010311229127293 ], [ -95.907850152511671, 30.0103882292881 ], [ -95.907717152146105, 30.010487229884621 ], [ -95.907591152047303, 30.01063522982799 ], [ -95.907534151568541, 30.010729229979521 ], [ -95.907489151546486, 30.010866229511464 ], [ -95.907489151594945, 30.01097022983387 ], [ -95.907515151501542, 30.011201229275589 ], [ -95.907521152254319, 30.011674229939786 ], [ -95.90744515238886, 30.01188323005038 ], [ -95.907451151496048, 30.012240230095337 ], [ -95.90747015236775, 30.01231722980457 ], [ -95.907521152547645, 30.012377229743425 ], [ -95.907577152512317, 30.012416229547167 ], [ -95.907893152297149, 30.012586229734563 ], [ -95.908291152632032, 30.012762229668205 ], [ -95.908430152586789, 30.012806230067788 ], [ -95.908638151895673, 30.012845229930274 ], [ -95.908891152619503, 30.01292722990403 ], [ -95.909131152380155, 30.012905229704888 ], [ -95.909219152793312, 30.012905229965128 ], [ -95.909346152263936, 30.012856229534581 ], [ -95.909402152109664, 30.0128502302891 ], [ -95.909447152521111, 30.012862229628006 ], [ -95.90955415229422, 30.012960229574979 ], [ -95.90959815269126, 30.013043229654457 ], [ -95.909699153079401, 30.013147230098276 ], [ -95.909705152459765, 30.013191230128875 ], [ -95.909699152876826, 30.013235230319303 ], [ -95.909667152187126, 30.013285230422003 ], [ -95.909560152409895, 30.013356229646401 ], [ -95.909465152399193, 30.013455229721529 ], [ -95.909472152294441, 30.013527230365025 ], [ -95.909541152776058, 30.013686229767327 ], [ -95.909573152130648, 30.013735230131612 ], [ -95.909617152988247, 30.013856229740412 ], [ -95.909648152865458, 30.014093230247532 ], [ -95.909712152412837, 30.014214230450474 ], [ -95.909819152826188, 30.014312230115088 ], [ -95.90998315318086, 30.014406230504314 ], [ -95.910135152662747, 30.014461230456849 ], [ -95.910286152922453, 30.01448322997615 ], [ -95.910526152787384, 30.014472230177056 ], [ -95.910652152515198, 30.014489230463106 ], [ -95.910779153071701, 30.014571229907737 ], [ -95.910823153441271, 30.01462023062723 ], [ -95.910892153052103, 30.014741230557838 ], [ -95.910949152552078, 30.014917230109649 ], [ -95.911000152618939, 30.014989230581129 ], [ -95.911113153476165, 30.015071229981537 ], [ -95.911473153028197, 30.015203230673041 ], [ -95.911625153201257, 30.015214230638019 ], [ -95.912010152838121, 30.015203230145023 ], [ -95.912162153149751, 30.015187230228602 ], [ -95.912263153419431, 30.015198230550027 ], [ -95.912414153750206, 30.015302229911562 ], [ -95.912604153143548, 30.015456230615271 ], [ -95.913178153587893, 30.015819230578195 ], [ -95.913323153863047, 30.015874230250549 ], [ -95.913380153715849, 30.015880230809337 ], [ -95.913709153736193, 30.015841230205318 ], [ -95.913740153880752, 30.015830230029344 ], [ -95.913841154129827, 30.015836230349887 ], [ -95.913885153548378, 30.01585223018014 ], [ -95.914163153426799, 30.016045230502723 ], [ -95.914252154149679, 30.016127230032804 ], [ -95.915395154252238, 30.016721230523263 ], [ -95.91562815440885, 30.016880230832403 ], [ -95.915900154261621, 30.01697923078402 ], [ -95.916096153989017, 30.017128230743346 ], [ -95.916165154584419, 30.01724323077579 ], [ -95.916235154185017, 30.017589230351525 ], [ -95.916537154865821, 30.018617230614669 ], [ -95.916601155135893, 30.018683230541136 ], [ -95.916834154759002, 30.01883123098207 ], [ -95.916929154300192, 30.018903230561435 ], [ -95.917011155076779, 30.018996231006785 ], [ -95.917030154985369, 30.019101230813366 ], [ -95.91702415447223, 30.019194230783068 ], [ -95.916960154744316, 30.019431231021628 ], [ -95.916967154396019, 30.0195572311973 ], [ -95.916986154619281, 30.019601231223351 ], [ -95.917099154603477, 30.019749230976242 ], [ -95.917503154456455, 30.02010123123765 ], [ -95.917750155220233, 30.020299231189579 ], [ -95.917838155225198, 30.020387230902188 ], [ -95.917851155311837, 30.020480230818674 ], [ -95.917832154843268, 30.020535230973724 ], [ -95.917769155450884, 30.02061223117251 ], [ -95.917680154867327, 30.020684230810669 ], [ -95.917661155230491, 30.020744231544697 ], [ -95.917705155419725, 30.020821231592112 ], [ -95.917825155344943, 30.020981231596981 ], [ -95.91783215527073, 30.021030231121582 ], [ -95.917851155106618, 30.021074230978183 ], [ -95.917958154800218, 30.02124423160565 ], [ -95.918141155657267, 30.021393231348213 ], [ -95.918312154757231, 30.021470231798343 ], [ -95.918337155610345, 30.021503231834771 ], [ -95.918349155296838, 30.021646231681256 ], [ -95.91834915534173, 30.021822231249391 ], [ -95.918343154841764, 30.021866231593936 ], [ -95.918236154999491, 30.02204123181404 ], [ -95.918217155511229, 30.022096231114581 ], [ -95.918217155161614, 30.022190231397456 ], [ -95.918242154814706, 30.022278231493519 ], [ -95.918267154807239, 30.022311231509573 ], [ -95.918311155101293, 30.022344231409249 ], [ -95.918469155358551, 30.022410231980679 ], [ -95.918627155514002, 30.022547231399763 ], [ -95.91869015567741, 30.022613231581246 ], [ -95.918709155345041, 30.02265123165871 ], [ -95.91873515485004, 30.02275623181017 ], [ -95.918760155119841, 30.022789231728815 ], [ -95.918836155341424, 30.022860231809855 ], [ -95.918924155750133, 30.022921231507549 ], [ -95.919012155028881, 30.022998231889311 ], [ -95.919126155387275, 30.023069231348433 ], [ -95.919170155545288, 30.023075231784382 ], [ -95.919202155113467, 30.023058231984532 ], [ -95.91936015525431, 30.022943231426691 ], [ -95.919461155987534, 30.022926231544698 ], [ -95.919676155603639, 30.022926231330057 ], [ -95.919726155297326, 30.022937231626134 ], [ -95.919827155310927, 30.022981232015727 ], [ -95.919922155672765, 30.023042231771015 ], [ -95.919966155822323, 30.023080231675571 ], [ -95.920004155210236, 30.02313523188862 ], [ -95.920042155339473, 30.023229231379446 ], [ -95.920092155909614, 30.023311231455438 ], [ -95.920288155942288, 30.023762231959207 ], [ -95.920339155304077, 30.023943232108365 ], [ -95.920383155576701, 30.024048231993344 ], [ -95.920496156095311, 30.024163231497468 ], [ -95.920522155966182, 30.02420723158178 ], [ -95.920534155972206, 30.024268231874792 ], [ -95.920541156303443, 30.024399232125955 ], [ -95.920585156003682, 30.024460232079175 ], [ -95.920616155965291, 30.024476232145599 ], [ -95.920642155883598, 30.024504232345524 ], [ -95.920661155523433, 30.024537231520728 ], [ -95.920667156116721, 30.024603232050449 ], [ -95.92064815546189, 30.024685231632315 ], [ -95.920616155569476, 30.024735232308398 ], [ -95.920578156166883, 30.024768231965403 ], [ -95.920446155955446, 30.024828232370318 ], [ -95.920319155502057, 30.024861231691499 ], [ -95.920269155613028, 30.024894232367675 ], [ -95.920244156114393, 30.02492723207839 ], [ -95.920218156225602, 30.025081231601128 ], [ -95.920187156011806, 30.025119232412255 ], [ -95.920073155945232, 30.025196232394698 ], [ -95.920029156234435, 30.025257232406464 ], [ -95.920042155392807, 30.025400232191242 ], [ -95.92006715566626, 30.025449232564082 ], [ -95.920117156190429, 30.025521232293535 ], [ -95.920187155660514, 30.025570232549789 ], [ -95.920313155941713, 30.02561423242247 ], [ -95.920364155602186, 30.025642232578853 ], [ -95.920389156175403, 30.025669232533854 ], [ -95.920484156134634, 30.025823231943413 ], [ -95.920547156393937, 30.02588923200673 ], [ -95.920629155610982, 30.025944232278608 ], [ -95.920705156245006, 30.026021232555784 ], [ -95.92074215632654, 30.026076232128116 ], [ -95.920825155667387, 30.026241232570573 ], [ -95.920856156318891, 30.026334231988255 ], [ -95.920913156230213, 30.026384232588718 ], [ -95.921064156529766, 30.026411232650403 ], [ -95.921279156068152, 30.026406231837516 ], [ -95.921361155820293, 30.026417231859085 ], [ -95.921481156670211, 30.026439232668171 ], [ -95.921677156272267, 30.026532232509467 ], [ -95.921728156689611, 30.026543232365114 ], [ -95.921873156214602, 30.026549232606165 ], [ -95.921911156539167, 30.026565232067092 ], [ -95.921930156796748, 30.026587232668806 ], [ -95.921949156621608, 30.026735232087027 ], [ -95.921968156129353, 30.026785232603231 ], [ -95.922006156174177, 30.026862232473249 ], [ -95.922094156408406, 30.026972232025471 ], [ -95.922189156462665, 30.027016232004176 ], [ -95.922265155989223, 30.027027232097527 ], [ -95.922321156500217, 30.027027232367232 ], [ -95.922403156471802, 30.027010232710015 ], [ -95.922479156870097, 30.027010232534575 ], [ -95.92257415654457, 30.027027232227585 ], [ -95.922656156476876, 30.027065232347521 ], [ -95.922763156435124, 30.027164232310692 ], [ -95.922814156351663, 30.027236232157083 ], [ -95.922852156573171, 30.027329232493329 ], [ -95.922871156694526, 30.027422232696267 ], [ -95.922858156300165, 30.027620232145029 ], [ -95.922820156432309, 30.027703232651103 ], [ -95.922770157011129, 30.027730232845833 ], [ -95.922662157118367, 30.027769232345456 ], [ -95.922435157009076, 30.027818232878065 ], [ -95.92234015628101, 30.027857232936402 ], [ -95.922309156758431, 30.02787923258219 ], [ -95.922277156723624, 30.027923232194762 ], [ -95.92225815640009, 30.02798323247216 ], [ -95.922264156458112, 30.028137232310844 ], [ -95.922397156572274, 30.028203232817908 ], [ -95.922448156551781, 30.028258233012757 ], [ -95.922429156588194, 30.028461232712303 ], [ -95.922454157070533, 30.028538232466438 ], [ -95.922536156440529, 30.028665232915138 ], [ -95.922567156451805, 30.028763232354045 ], [ -95.922586156990562, 30.029170232996709 ], [ -95.922605157044501, 30.029264233103532 ], [ -95.922631156418319, 30.029324232455629 ], [ -95.922687156551831, 30.02940123273466 ], [ -95.922833156483264, 30.029434233065228 ], [ -95.922946156984381, 30.029483232756952 ], [ -95.923212156905123, 30.029632232761671 ], [ -95.923388156354235, 30.029764233087665 ], [ -95.923622157039176, 30.029863233081144 ], [ -95.923729156787289, 30.029929232525934 ], [ -95.923780156829352, 30.030000232859617 ], [ -95.923805157321709, 30.030066233038188 ], [ -95.923849157039811, 30.030253233019025 ], [ -95.923887157260978, 30.030346232913299 ], [ -95.924052156843743, 30.030676233145723 ], [ -95.924134156687245, 30.030924233170239 ], [ -95.924159156938728, 30.031182232690945 ], [ -95.924190157437707, 30.031352232988727 ], [ -95.924209156713104, 30.031396233466918 ], [ -95.924285157575099, 30.031495233512061 ], [ -95.924411157022931, 30.031583233407869 ], [ -95.924721156788294, 30.031880233354268 ], [ -95.924885157035476, 30.032017233581094 ], [ -95.925119157886073, 30.032160233105142 ], [ -95.92524515778301, 30.032320233495362 ], [ -95.925327157201295, 30.032528233511506 ], [ -95.925365157282627, 30.032572233555985 ], [ -95.925409158014602, 30.032605233572198 ], [ -95.925517157449804, 30.032649233277152 ], [ -95.925586157947649, 30.03269323318397 ], [ -95.925624157858152, 30.032732233492773 ], [ -95.925649157123772, 30.032820233464509 ], [ -95.925643157569922, 30.032853233787566 ], [ -95.925548157238978, 30.033012233183534 ], [ -95.925561157833755, 30.033155233669135 ], [ -95.925630157500834, 30.033237233573061 ], [ -95.925750157518578, 30.033336233937817 ], [ -95.925813157471069, 30.033402233868276 ], [ -95.925902157906677, 30.033512233469427 ], [ -95.925990157361156, 30.033798233873227 ], [ -95.926047158067192, 30.033891233522304 ], [ -95.926129157387024, 30.033968233936175 ], [ -95.926306157738168, 30.034106233496296 ], [ -95.926338157976119, 30.034155233707146 ], [ -95.926363157658145, 30.034216233581805 ], [ -95.926350157658575, 30.034463233814837 ], [ -95.926363157469069, 30.034513233431419 ], [ -95.926407157397534, 30.03458423398488 ], [ -95.926464158128596, 30.034628234159701 ], [ -95.926691158230383, 30.034743234020159 ], [ -95.926830157784636, 30.034831233612582 ], [ -95.927235158577346, 30.034919234018609 ], [ -95.927255158080854, 30.034926234185249 ], [ -95.927607157728772, 30.035046233967829 ], [ -95.927734157956792, 30.03511723379912 ], [ -95.927866157965695, 30.035238234154388 ], [ -95.927961158276673, 30.035295234184002 ], [ -95.928005158723536, 30.035321233762588 ], [ -95.92804915861467, 30.035343233597807 ], [ -95.928100158520479, 30.035348234006026 ], [ -95.928283158411588, 30.035409233524661 ], [ -95.928441158575055, 30.035480233723707 ], [ -95.928517158570472, 30.035502233826893 ], [ -95.928593158896859, 30.035540233655308 ], [ -95.928631158922769, 30.035579233927958 ], [ -95.928643158527862, 30.035634233521854 ], [ -95.928637158798907, 30.035760233600829 ], [ -95.928567158158472, 30.035837233671042 ], [ -95.928403158548022, 30.035936234187904 ], [ -95.92820715827348, 30.036172234158762 ], [ -95.928182158489236, 30.036233234110036 ], [ -95.928150158245344, 30.036359233633959 ], [ -95.928144157949788, 30.036502234248029 ], [ -95.928150158123287, 30.036557233904517 ], [ -95.928176158316248, 30.036618233659162 ], [ -95.928390158510211, 30.036865234239606 ], [ -95.92845515881946, 30.036960233982004 ], [ -95.92847315897987, 30.036986233816766 ], [ -95.928498158773309, 30.037211234036608 ], [ -95.928466158496803, 30.037761234639579 ], [ -95.928460158247148, 30.037953234359051 ], [ -95.928504158190037, 30.038124234067762 ], [ -95.928713158920246, 30.038651234731166 ], [ -95.928763158760646, 30.038843234524311 ], [ -95.928776158591674, 30.039003234826996 ], [ -95.928858158722647, 30.039091234314885 ], [ -95.928927158732662, 30.039135234966341 ], [ -95.929003159111943, 30.039151234243231 ], [ -95.929262158383153, 30.039140234179779 ], [ -95.92940115869223, 30.039179234369833 ], [ -95.929452158719883, 30.039212234883252 ], [ -95.929465158449688, 30.039223234196601 ], [ -95.929748158732437, 30.039470234814626 ], [ -95.92988115854881, 30.039547234505225 ], [ -95.930001158766174, 30.039602234706138 ], [ -95.930210159384927, 30.039635234405196 ], [ -95.930311159047861, 30.039673234719668 ], [ -95.930614159689924, 30.039910234333359 ], [ -95.930715158814422, 30.039970234508488 ], [ -95.930917159230532, 30.040058234312859 ], [ -95.931094159800381, 30.040113234785547 ], [ -95.931315159811902, 30.040157234296913 ], [ -95.931372159269941, 30.040179234674195 ], [ -95.931656159726771, 30.040371234453811 ], [ -95.931713159916313, 30.040399235156837 ], [ -95.932060159422079, 30.040459234590827 ], [ -95.932142159790033, 30.040487234572897 ], [ -95.932578159950253, 30.040773235124327 ], [ -95.932686159812576, 30.040828235082408 ], [ -95.932812159304035, 30.040855234510641 ], [ -95.9329071598235, 30.040888235238246 ], [ -95.932989160252404, 30.040954234572474 ], [ -95.933115159836646, 30.041091234559669 ], [ -95.933418160153124, 30.041449234702252 ], [ -95.933501160177926, 30.041581235333318 ], [ -95.933728160435749, 30.042004234650587 ], [ -95.933785160534981, 30.042075234813048 ], [ -95.933880159880061, 30.042152235092047 ], [ -95.934000159787587, 30.042229235309247 ], [ -95.934126159992033, 30.042279235345134 ], [ -95.934240159980064, 30.042312235327227 ], [ -95.93430915987534, 30.042345234786776 ], [ -95.934442160414022, 30.042443235376883 ], [ -95.934461160202474, 30.042463234992102 ], [ -95.934568159877571, 30.042575235116416 ], [ -95.934638159873458, 30.042630234797151 ], [ -95.934852160416469, 30.042746234683641 ], [ -95.935080160874463, 30.042834235232927 ], [ -95.935175160321023, 30.042856235080418 ], [ -95.935250160975528, 30.042856235297812 ], [ -95.935585161087275, 30.042817235331317 ], [ -95.935693161088437, 30.042834234718459 ], [ -95.936363160350808, 30.043054235333894 ], [ -95.935852160516021, 30.043511235001681 ], [ -95.934920160104426, 30.044243235617447 ], [ -95.934392160572415, 30.044932235999585 ], [ -95.934252159995339, 30.045116235792598 ], [ -95.934080159995617, 30.045535235689314 ], [ -95.933977160210787, 30.045785235848747 ], [ -95.933854160551007, 30.046086235997841 ], [ -95.933775160369393, 30.046280235480488 ], [ -95.933748159942482, 30.046554235656323 ], [ -95.93373716000238, 30.046676236167595 ], [ -95.933723160612047, 30.046824235738399 ], [ -95.933709160675008, 30.046963235977962 ], [ -95.933708159849417, 30.046977235534914 ], [ -95.933716160739678, 30.047383236212021 ], [ -95.933719160364234, 30.04752423605736 ], [ -95.933725160296902, 30.047863235865652 ], [ -95.933734160049966, 30.048290235915623 ], [ -95.933746160282368, 30.048880236694448 ], [ -95.933753160321359, 30.049220236505601 ], [ -95.93375416046446, 30.04928623615854 ], [ -95.933757160730195, 30.049486236753644 ], [ -95.933759160818241, 30.049553236573736 ], [ -95.933763160884141, 30.049774236667474 ], [ -95.933764160300257, 30.049784236129671 ], [ -95.933764159992251, 30.050437236743313 ], [ -95.933764159981976, 30.050659236576742 ], [ -95.933766160379164, 30.050994237101719 ], [ -95.933774160711906, 30.051999237104962 ], [ -95.933777160184405, 30.052334236790621 ], [ -95.933779160991065, 30.052373236952551 ], [ -95.933785160252, 30.052491237283682 ], [ -95.933788161061258, 30.05253123671379 ], [ -95.933801160730255, 30.052767236730229 ], [ -95.933805160436222, 30.053100237634617 ], [ -95.933813160826617, 30.053855237705587 ], [ -95.933815161055705, 30.054128237328296 ], [ -95.933824160723645, 30.054950237422098 ], [ -95.933827160972712, 30.055224238006641 ], [ -95.93383116042331, 30.055651237405595 ], [ -95.933835160398999, 30.05605223792676 ], [ -95.933860161127853, 30.056934238436753 ], [ -95.933873160418955, 30.057362237920486 ], [ -95.9338751612393, 30.057455238167258 ], [ -95.933881161114698, 30.057639238369294 ], [ -95.933884160959622, 30.057733237850581 ], [ -95.933887160782916, 30.057827238230335 ], [ -95.933888161289431, 30.057872238469034 ], [ -95.933891160768013, 30.058007238231404 ], [ -95.933893160350252, 30.058052237793238 ], [ -95.93389416135679, 30.058106238214524 ], [ -95.933899160458012, 30.058268238076657 ], [ -95.933901160460479, 30.058323238639279 ], [ -95.933974160939727, 30.05834123825105 ], [ -95.934195160602187, 30.058395238201182 ], [ -95.934269161189775, 30.058414238721308 ], [ -95.934607161212213, 30.05849723830325 ], [ -95.935048160916011, 30.058605238190676 ], [ -95.935624161661423, 30.058744238156489 ], [ -95.935964161919102, 30.058826238436598 ], [ -95.93633516133076, 30.058915238111034 ], [ -95.936496161115841, 30.058954238688489 ], [ -95.937409161310939, 30.059187238053745 ], [ -95.937448161890401, 30.059195237993965 ], [ -95.937821162025728, 30.059280237896193 ], [ -95.939144162714825, 30.059578238332527 ], [ -95.942684163634397, 30.060443238810798 ], [ -95.944331163352814, 30.060830238145474 ], [ -95.945623163568115, 30.061148238034885 ], [ -95.94597916376749, 30.06123623809064 ], [ -95.947426164233889, 30.061607238628259 ], [ -95.950054165184312, 30.062230238791681 ], [ -95.951107165672553, 30.06248523892878 ], [ -95.952706166171467, 30.062873238126269 ], [ -95.953476166253495, 30.063059238504856 ], [ -95.953838166624479, 30.063147238760394 ], [ -95.954895166783018, 30.063407238449368 ], [ -95.955727166655294, 30.063607238315065 ], [ -95.955787166790728, 30.063621238633569 ], [ -95.956558166554032, 30.063808238190589 ], [ -95.956666167356872, 30.063834238188122 ], [ -95.957491166795492, 30.064035238930774 ], [ -95.958024167600172, 30.064166238994744 ], [ -95.95849116772159, 30.06427623896511 ], [ -95.958885167251836, 30.064368238842484 ], [ -95.960125168190757, 30.064660238570031 ], [ -95.960316168371847, 30.06470623907876 ], [ -95.960393167893812, 30.064724238717417 ], [ -95.960673168048544, 30.064790238742486 ], [ -95.961173168024871, 30.064914238625583 ], [ -95.96297216900291, 30.065359238354013 ], [ -95.964592169006423, 30.065761238411771 ], [ -95.965206169548267, 30.065907238590416 ], [ -95.965864168924753, 30.066067238683221 ], [ -95.966975169540675, 30.066338238746599 ], [ -95.967984170322381, 30.066594238686609 ], [ -95.968086169517093, 30.066620238373325 ], [ -95.968188169773924, 30.066646238907609 ], [ -95.968445169921466, 30.066709239150139 ], [ -95.968638170181578, 30.066754238534415 ], [ -95.969990170212895, 30.067072238634644 ], [ -95.970441170989005, 30.067179238521241 ], [ -95.970991170453019, 30.067308238364109 ], [ -95.97121617044003, 30.067361238649589 ], [ -95.97199117149313, 30.067543238784292 ], [ -95.97259317137852, 30.067685238826311 ], [ -95.972643171564712, 30.067697238400953 ], [ -95.973241171415438, 30.067839239263858 ], [ -95.973344171244236, 30.067862238749964 ], [ -95.97369917097987, 30.06794423871078 ], [ -95.973795171810607, 30.067967239110157 ], [ -95.973946171607736, 30.068004238960086 ], [ -95.973996171046664, 30.068016238908655 ], [ -95.974146171846357, 30.068053238603255 ], [ -95.974197171825367, 30.068066239244999 ], [ -95.974412171839745, 30.0681182392204 ], [ -95.975059171444528, 30.068277238444459 ], [ -95.975275171787402, 30.068330238675571 ], [ -95.975654172043321, 30.068422239132396 ], [ -95.976791172308424, 30.068700239196101 ], [ -95.97724917226293, 30.068812239231207 ], [ -95.977669172774469, 30.068914238909031 ], [ -95.978135172299645, 30.069027238752792 ], [ -95.979169172760564, 30.069277239319458 ], [ -95.97966917301018, 30.069399238892629 ], [ -95.980205172786299, 30.069531239333013 ], [ -95.981816173241654, 30.069929238844711 ], [ -95.982353173763642, 30.070062239406631 ], [ -95.982379174137932, 30.070068238596665 ], [ -95.982460173502318, 30.07008823917171 ], [ -95.982487173446629, 30.070095239023015 ], [ -95.983692174207491, 30.070390238876687 ], [ -95.984587174251473, 30.070610238669172 ], [ -95.987315175388872, 30.071250238694933 ], [ -95.987593175209881, 30.071315238946514 ], [ -95.988518175578918, 30.071559239491357 ], [ -95.98939717556847, 30.071790238859133 ], [ -95.990892176350357, 30.072247239457432 ], [ -95.991282176313263, 30.07234123895293 ], [ -95.991828175823045, 30.07247423905288 ], [ -95.991994176449495, 30.072516239397569 ], [ -95.992207176030831, 30.072570239458067 ], [ -95.99286917649961, 30.072737239019748 ], [ -95.992789176312144, 30.072317239213469 ], [ -95.992747176552157, 30.072105239398688 ], [ -95.992687175986035, 30.071506238847874 ], [ -95.992642176582336, 30.070882238664314 ], [ -95.99263817592157, 30.070730239057777 ], [ -95.992592175889456, 30.067342238489029 ], [ -95.992580176474164, 30.066368237899212 ], [ -95.992583176108482, 30.065907237754125 ], [ -95.992598176648258, 30.065681237846626 ], [ -95.992606176465898, 30.065568237329995 ], [ -95.992658175726461, 30.065221237549245 ], [ -95.992809176526151, 30.064329237181163 ], [ -95.992839176265079, 30.064081237281687 ], [ -95.992847176082222, 30.063861237045227 ], [ -95.992882175684059, 30.063584237123123 ], [ -95.992867175678526, 30.06307923694748 ], [ -95.992812176495335, 30.062303236769782 ], [ -95.99281117580162, 30.062236237022059 ], [ -95.992808176350408, 30.062036236829563 ], [ -95.992807176183831, 30.061970236991467 ], [ -95.992797175858172, 30.061596236605215 ], [ -95.992770175585761, 30.06047423637353 ], [ -95.992761175618426, 30.060100236491341 ], [ -95.992747176283231, 30.05956023604509 ], [ -95.992723176256604, 30.058562236246043 ], [ -95.992680175590905, 30.058113235956338 ], [ -95.992652176152859, 30.057944236318903 ], [ -95.992618175407102, 30.057729235750017 ], [ -95.992467175458856, 30.057445236343671 ], [ -95.992328175583737, 30.057170236371132 ], [ -95.992052175150462, 30.056845236162921 ], [ -95.991779175758936, 30.056561235486797 ], [ -95.990301175267902, 30.055026235372683 ], [ -95.990049174570629, 30.054720235533427 ], [ -95.989877175309559, 30.054386235343067 ], [ -95.98979617439602, 30.054033235109127 ], [ -95.989780175142172, 30.053915235051431 ], [ -95.989752174629487, 30.053702235711729 ], [ -95.989740175060362, 30.052790235342137 ], [ -95.989731174677075, 30.052179234741896 ], [ -95.989706174518631, 30.050349235127264 ], [ -95.989703174939379, 30.050125235098466 ], [ -95.989695174474662, 30.049740235020092 ], [ -95.989677174390877, 30.048914234653711 ], [ -95.989644174780992, 30.047389233967525 ], [ -95.989647174434111, 30.047140234021416 ], [ -95.98965017416387, 30.046836234439471 ], [ -95.989726174397788, 30.046443233577747 ], [ -95.989790174667633, 30.046116234145831 ], [ -95.989914174489741, 30.045640233503565 ], [ -95.989952174286444, 30.045508233539206 ], [ -95.990031174678279, 30.045236233796746 ], [ -95.990039174492367, 30.045110233697258 ], [ -95.990049174455763, 30.044974233247029 ], [ -95.990054174097409, 30.044898233718936 ], [ -95.990061174773132, 30.044799233206927 ], [ -95.990066174664875, 30.044673233584064 ], [ -95.990069174901635, 30.044598233400414 ], [ -95.990072174643515, 30.044482233212673 ], [ -95.990076174274336, 30.044387233707216 ], [ -95.99007617410328, 30.04413423345099 ], [ -95.990077174430866, 30.04401923349889 ], [ -95.990078174857814, 30.043740233539683 ], [ -95.990066174108392, 30.043320233617681 ], [ -95.990014174506086, 30.041484233140153 ], [ -95.990006174812919, 30.041226232563044 ], [ -95.99000117385431, 30.041006232648265 ], [ -95.989987174425053, 30.040528233162039 ], [ -95.989962174012831, 30.039634232553421 ], [ -95.989961174654042, 30.039595232492594 ], [ -95.98991017452849, 30.03679623220339 ], [ -95.989894174403773, 30.035864232105496 ], [ -95.989889174519803, 30.035567231992328 ], [ -95.989882174110477, 30.035338231802562 ], [ -95.989837174351294, 30.033760231739052 ], [ -95.98982317438103, 30.033235231259734 ], [ -95.989786174160486, 30.031903230642847 ], [ -95.989775173912278, 30.031187230788007 ], [ -95.989722173666593, 30.027671230326678 ], [ -95.989729173046612, 30.025043229667197 ], [ -95.989735173461526, 30.023087229616291 ], [ -95.989735173537213, 30.02299622880907 ], [ -95.989734173842891, 30.022727228915361 ], [ -95.989733173700245, 30.021921228657661 ], [ -95.989733173174315, 30.021653229305532 ], [ -95.989819173010787, 30.021649228677379 ], [ -95.989968173195237, 30.021648228569802 ], [ -95.990676173467321, 30.021644228847578 ], [ -95.990912173507724, 30.021644228605265 ], [ -95.991350173266738, 30.021641229271623 ], [ -95.991521173918414, 30.021641229054875 ], [ -95.992129173994599, 30.021639228638072 ], [ -95.992616173786757, 30.021637229131183 ], [ -95.992664174283362, 30.021636228743553 ], [ -95.99310317456947, 30.021635228784682 ], [ -95.993146174368221, 30.021634229122427 ], [ -95.993278174536641, 30.021634228374609 ], [ -95.993322174583909, 30.021634228397133 ], [ -95.993411174200617, 30.021389229003809 ], [ -95.993420173936684, 30.021202228858712 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 511, "Tract": "48473680202", "Area_SqMi": 32.272585443685244, "total_2009": 1961, "total_2010": 2077, "total_2011": 2356, "total_2012": 2324, "total_2013": 2398, "total_2014": 2170, "total_2015": 2262, "total_2016": 2167, "total_2017": 2293, "total_2018": 2557, "total_2019": 2766, "total_2020": 2717, "age1": 591, "age2": 1921, "age3": 903, "earn1": 711, "earn2": 834, "earn3": 1870, "naics_s01": 32, "naics_s02": 0, "naics_s03": 15, "naics_s04": 109, "naics_s05": 661, "naics_s06": 609, "naics_s07": 347, "naics_s08": 102, "naics_s09": 8, "naics_s10": 18, "naics_s11": 35, "naics_s12": 149, "naics_s13": 0, "naics_s14": 246, "naics_s15": 21, "naics_s16": 610, "naics_s17": 20, "naics_s18": 265, "naics_s19": 82, "naics_s20": 86, "race1": 2635, "race2": 465, "race3": 31, "race4": 223, "race5": 6, "race6": 55, "ethnicity1": 2315, "ethnicity2": 1100, "edu1": 673, "edu2": 751, "edu3": 794, "edu4": 606, "Shape_Length": 151067.79223571563, "Shape_Area": 899704447.0879302, "total_2021": 3185, "total_2022": 3415 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.040080173486103, 29.738155169459986 ], [ -96.040021173432692, 29.737974169404083 ], [ -96.039936173703182, 29.737715169856923 ], [ -96.03985117334544, 29.737457169310929 ], [ -96.039635173230849, 29.737238169483714 ], [ -96.039329173532479, 29.736938169682883 ], [ -96.038869172765317, 29.736653169854758 ], [ -96.038460172786699, 29.736188169391799 ], [ -96.037802172251773, 29.735617169600157 ], [ -96.037195172848058, 29.734177169046575 ], [ -96.0371511726362, 29.73364416933644 ], [ -96.036590172345527, 29.733062168821213 ], [ -96.036414171661534, 29.732969169047102 ], [ -96.036326172026094, 29.732886169036195 ], [ -96.036307172128531, 29.732865168375742 ], [ -96.036268172335454, 29.732823168389842 ], [ -96.034398171352322, 29.731869169089503 ], [ -96.033838171007318, 29.730983168597916 ], [ -96.033282171392884, 29.730101168204023 ], [ -96.033077171562724, 29.7294431679748 ], [ -96.033036170705671, 29.729311168390776 ], [ -96.032990171276651, 29.729153168111054 ], [ -96.032718171439996, 29.727949167796996 ], [ -96.032463171097334, 29.727951168358334 ], [ -96.032067170397212, 29.727954168391797 ], [ -96.031219170236909, 29.727961167678568 ], [ -96.03070817020938, 29.727966168445768 ], [ -96.028578170068016, 29.727982167823004 ], [ -96.0273161698438, 29.728002168560945 ], [ -96.026558169438502, 29.727999167852072 ], [ -96.025448168995425, 29.728008168068886 ], [ -96.022745168551594, 29.728031168538827 ], [ -96.021203168016442, 29.72804516850735 ], [ -96.020873168128105, 29.728025168756616 ], [ -96.020653167561008, 29.728006168721734 ], [ -96.020390167830186, 29.727999168719059 ], [ -96.020189167481007, 29.727996168226557 ], [ -96.016675166727467, 29.728041168287636 ], [ -96.016505167275298, 29.728046168569275 ], [ -96.015231166608828, 29.728048168135647 ], [ -96.01457916642255, 29.728044168873378 ], [ -96.013675166490088, 29.728061168500584 ], [ -96.012629166006775, 29.728072168828415 ], [ -96.01078216548153, 29.728083168724112 ], [ -96.008969164976222, 29.728091168500637 ], [ -96.008510164743171, 29.728088168840525 ], [ -96.006944164872166, 29.728114168439134 ], [ -96.006661164175654, 29.728115168516421 ], [ -96.0054351642885, 29.728130169266226 ], [ -96.004152163848161, 29.728145169336575 ], [ -96.002928163081918, 29.728171169416171 ], [ -96.001968163422461, 29.728182169377202 ], [ -95.999825162693014, 29.728225169437554 ], [ -95.998715162800337, 29.728258168797993 ], [ -95.998392162715135, 29.72826716874782 ], [ -95.997935162414251, 29.728274168768447 ], [ -95.997574162483787, 29.728280168963774 ], [ -95.996822161566229, 29.728295169024925 ], [ -95.994959161370062, 29.728316169105813 ], [ -95.9940661608601, 29.728318169401316 ], [ -95.99388216078809, 29.728323168929574 ], [ -95.993657161287572, 29.728331169664209 ], [ -95.990044160533685, 29.728385169056438 ], [ -95.988746159822327, 29.728386169188894 ], [ -95.988347159588727, 29.72839316946304 ], [ -95.984505158896155, 29.72845916939163 ], [ -95.981542158199929, 29.728496169956671 ], [ -95.978977157565765, 29.728536170096312 ], [ -95.978892157810733, 29.728537170273825 ], [ -95.978706157383968, 29.728540169732405 ], [ -95.978107157554689, 29.728540170330064 ], [ -95.97750315694914, 29.728543170092856 ], [ -95.972570155511889, 29.728647170093268 ], [ -95.972421155768004, 29.72864017009962 ], [ -95.972177155988661, 29.728626169862185 ], [ -95.971931155537277, 29.728616170053151 ], [ -95.971672155486118, 29.728602170094462 ], [ -95.971404155482446, 29.728590170177505 ], [ -95.970947155077624, 29.728559170546188 ], [ -95.970947155135704, 29.728812170290528 ], [ -95.97094615559854, 29.729019170112906 ], [ -95.970947155059349, 29.729223169945008 ], [ -95.970948155761235, 29.729421170596687 ], [ -95.97094815561168, 29.729616170219206 ], [ -95.971096156110534, 29.735963171875969 ], [ -95.971110155846901, 29.736142171526513 ], [ -95.971126155246921, 29.736323172178224 ], [ -95.971140155283621, 29.736506171871127 ], [ -95.971156155854175, 29.736687171622723 ], [ -95.971294155425454, 29.740459172823716 ], [ -95.960504153462125, 29.740635173423833 ], [ -95.950938150648213, 29.740774173596844 ], [ -95.948019150233037, 29.741954173869537 ], [ -95.9455391495421, 29.742918173924867 ], [ -95.944968149791762, 29.743140174373291 ], [ -95.939492148024328, 29.745272174993943 ], [ -95.932227146680518, 29.748099175139817 ], [ -95.932102146505088, 29.748147175194514 ], [ -95.920599143244544, 29.752619177000604 ], [ -95.920599144042853, 29.752648176739754 ], [ -95.92061514385, 29.753592177398712 ], [ -95.920668144180425, 29.756513177238709 ], [ -95.92068614427437, 29.757487177382544 ], [ -95.920698143511132, 29.758125177982933 ], [ -95.920766144387287, 29.760968178716407 ], [ -95.920932144318186, 29.767783179614177 ], [ -95.920930144385636, 29.768466179623164 ], [ -95.920869144798743, 29.768789179850831 ], [ -95.92074514487129, 29.769256179926927 ], [ -95.920566144660029, 29.769875180389146 ], [ -95.920535144318976, 29.769981180144747 ], [ -95.920434144720375, 29.770427179997121 ], [ -95.920402144407277, 29.770907180940551 ], [ -95.920414144192648, 29.771349180498802 ], [ -95.920420143935289, 29.77157118026863 ], [ -95.920447144020898, 29.774832181420617 ], [ -95.920451144418294, 29.775311181343408 ], [ -95.920452144612355, 29.775455181230903 ], [ -95.92046314420881, 29.776751181627802 ], [ -95.920466144216505, 29.777126182051351 ], [ -95.920467144813003, 29.777290182163963 ], [ -95.92047014429869, 29.777646182242108 ], [ -95.920478144451167, 29.778214181985987 ], [ -95.92048814465501, 29.778886182124975 ], [ -95.92052214446467, 29.781163182379313 ], [ -95.920532145286217, 29.78177418294397 ], [ -95.920540144571191, 29.782146183012461 ], [ -95.920546144669288, 29.782437182982473 ], [ -95.920578145031968, 29.782956183033182 ], [ -95.920632144679118, 29.783806182672784 ], [ -95.920688145070685, 29.78539018380577 ], [ -95.920692144937149, 29.785491183060508 ], [ -95.920713144748333, 29.786202183980151 ], [ -95.920561144903033, 29.786201183985217 ], [ -95.920408144542364, 29.786200183394723 ], [ -95.920420144996527, 29.786456183286401 ], [ -95.917712144832052, 29.786444184026958 ], [ -95.913406142811525, 29.786427184009725 ], [ -95.909222142369856, 29.786410183729807 ], [ -95.906392141477511, 29.786399184172723 ], [ -95.905139141454427, 29.786394184454114 ], [ -95.901380140296666, 29.78638118452395 ], [ -95.900128139475768, 29.786377184544559 ], [ -95.898032139453122, 29.786366184743343 ], [ -95.891744137269541, 29.786335184513288 ], [ -95.889649137128984, 29.786325185127883 ], [ -95.889649137436791, 29.786432184453645 ], [ -95.8896491377171, 29.786539184678031 ], [ -95.889648136868885, 29.787742184873665 ], [ -95.88964813768105, 29.788004185228324 ], [ -95.889649136772022, 29.788123185335564 ], [ -95.889685137843188, 29.79199318548487 ], [ -95.889691137362107, 29.792586185979939 ], [ -95.889703137628644, 29.793411186023938 ], [ -95.889709137797695, 29.793851186431432 ], [ -95.889715138045958, 29.794291185880507 ], [ -95.88973713765408, 29.795938186285873 ], [ -95.88975813727339, 29.797473187097985 ], [ -95.889765137487956, 29.800955187567101 ], [ -95.889767138189356, 29.801971188268421 ], [ -95.889792138532712, 29.803520188178602 ], [ -95.889833138183192, 29.80604818887192 ], [ -95.889840137715069, 29.806468188877684 ], [ -95.889853138646686, 29.807538189264513 ], [ -95.88991213800945, 29.812009190252997 ], [ -95.889932138184577, 29.813500189762667 ], [ -95.889939139026595, 29.814040190141299 ], [ -95.889960138953384, 29.815662190705137 ], [ -95.889962138941357, 29.815780190472214 ], [ -95.8899641381458, 29.816203190610604 ], [ -95.892683139511945, 29.816189190632624 ], [ -95.893317139124846, 29.816184190355308 ], [ -95.900400141714556, 29.816134190084874 ], [ -95.903376141881722, 29.816107190257799 ], [ -95.906730142772361, 29.816077190092479 ], [ -95.906813143148682, 29.8160771897027 ], [ -95.906896142785172, 29.816076190140667 ], [ -95.90996014373377, 29.816049189835994 ], [ -95.91238914476348, 29.816029189936078 ], [ -95.915633144895537, 29.816001189567704 ], [ -95.919652145937761, 29.815977190017083 ], [ -95.922448147281159, 29.815962189688303 ], [ -95.922883147374094, 29.815960189598407 ], [ -95.926308148022983, 29.815923189532093 ], [ -95.930611149354846, 29.815877189436605 ], [ -95.93658615050326, 29.815818189194474 ], [ -95.93827115142453, 29.81580218880314 ], [ -95.939872150868851, 29.81580118875198 ], [ -95.939942151147662, 29.81580118885611 ], [ -95.940013151201057, 29.815801189176984 ], [ -95.940017151656434, 29.816241188828073 ], [ -95.940030151933044, 29.817561189468073 ], [ -95.940035151295902, 29.818002189115887 ], [ -95.940474151059306, 29.818006189651864 ], [ -95.941078151423795, 29.818000189526902 ], [ -95.944210152869246, 29.817975188881441 ], [ -95.945013152325018, 29.817969188911615 ], [ -95.945254153203791, 29.817967189564051 ], [ -95.947558152931819, 29.817946189545516 ], [ -95.950962153799495, 29.817915188791584 ], [ -95.95447115468221, 29.817876188838742 ], [ -95.955617155569499, 29.817864189190949 ], [ -95.956776155676607, 29.817860188646058 ], [ -95.957833156239914, 29.817850188871649 ], [ -95.958918155882856, 29.817840188543624 ], [ -95.961004156825609, 29.817788188507357 ], [ -95.962062156910605, 29.817763189011565 ], [ -95.962390156679461, 29.817294188092568 ], [ -95.963378157119919, 29.815890188103211 ], [ -95.963707157122968, 29.815422187668684 ], [ -95.963960157204724, 29.815063187818193 ], [ -95.964278157304832, 29.81465018748013 ], [ -95.965667157495972, 29.812857187476965 ], [ -95.966033157532365, 29.812365187633365 ], [ -95.966608157612768, 29.811596186876987 ], [ -95.967267158158663, 29.810720187244172 ], [ -95.967299157993338, 29.810679186563423 ], [ -95.968326158023302, 29.809396187072515 ], [ -95.969077158818365, 29.808440186245527 ], [ -95.969438158657269, 29.807983186717475 ], [ -95.970149158979027, 29.807082186140477 ], [ -95.970238158318438, 29.8069681862533 ], [ -95.970282158451937, 29.806914186265477 ], [ -95.970597158594387, 29.806545186115386 ], [ -95.970725159011735, 29.806332185894622 ], [ -95.970729158652048, 29.806318186083889 ], [ -95.970779158805598, 29.806160185748123 ], [ -95.970819159112594, 29.805979186101869 ], [ -95.970781159125877, 29.803436185831579 ], [ -95.970771158175836, 29.802810185381514 ], [ -95.970778158380227, 29.802547184862174 ], [ -95.970602158536153, 29.802386185162348 ], [ -95.97026315853104, 29.80207318543675 ], [ -95.97013715808859, 29.801958184870742 ], [ -95.969351158364546, 29.801231184895503 ], [ -95.968465157637624, 29.800413185135955 ], [ -95.968048158138529, 29.800031184645377 ], [ -95.966799157418734, 29.79888818470906 ], [ -95.965943157603448, 29.798104184889993 ], [ -95.965991156697896, 29.79806618462662 ], [ -95.966045157238796, 29.798023184797316 ], [ -95.966056157008296, 29.798015184653373 ], [ -95.966422157554817, 29.797787184245124 ], [ -95.966545157651154, 29.797711184255416 ], [ -95.96726115738791, 29.797264184270549 ], [ -95.967488157353458, 29.797165184193215 ], [ -95.967564157698945, 29.79714318409226 ], [ -95.967696157778377, 29.797060184497713 ], [ -95.967790157510947, 29.796984184456733 ], [ -95.967828157260811, 29.796923183951304 ], [ -95.967841157397189, 29.796879183843423 ], [ -95.967841157876563, 29.796802183982123 ], [ -95.967778157413321, 29.796714184232943 ], [ -95.96768915752132, 29.796615183919254 ], [ -95.967664157563178, 29.796555184406717 ], [ -95.96762815796626, 29.796540184202701 ], [ -95.967641157776171, 29.796506184085924 ], [ -95.967643157703122, 29.796471184250741 ], [ -95.967616157296945, 29.796406183706519 ], [ -95.967616157788513, 29.796370183770904 ], [ -95.967633157709642, 29.796301183935078 ], [ -95.967653157039379, 29.79615918435746 ], [ -95.967691157048193, 29.796145183820432 ], [ -95.967732157688459, 29.796138184348148 ], [ -95.96776515754236, 29.796116184420185 ], [ -95.967798157684214, 29.796095183586822 ], [ -95.967835157489617, 29.796079183854861 ], [ -95.967874157896802, 29.79607218422375 ], [ -95.967914157713537, 29.796083183694169 ], [ -95.967954157845227, 29.796084184076747 ], [ -95.9679941576521, 29.796080183544824 ], [ -95.96802715730594, 29.7960651835389 ], [ -95.968017157373041, 29.795972184038693 ], [ -95.968092158102266, 29.79586818372649 ], [ -95.968099157745627, 29.795829184148651 ], [ -95.968048157670239, 29.795681184323119 ], [ -95.968036157949996, 29.795593183801248 ], [ -95.968042157450611, 29.79551118422286 ], [ -95.968080157135745, 29.795456183626278 ], [ -95.968149157390613, 29.795417183761113 ], [ -95.968363157387046, 29.795390184180768 ], [ -95.968596158169177, 29.795285183531 ], [ -95.968804158094088, 29.795214183917977 ], [ -95.968873157512903, 29.795170183675609 ], [ -95.96891815808587, 29.795109184114953 ], [ -95.968935158062237, 29.795044184109098 ], [ -95.968962157841645, 29.794950183705545 ], [ -95.968993158084118, 29.794889183449492 ], [ -95.969018157577167, 29.794867183738315 ], [ -95.969056157753613, 29.794856183726651 ], [ -95.969106158018121, 29.794856183343541 ], [ -95.969283157672734, 29.794878184142398 ], [ -95.96937715754494, 29.794746183996764 ], [ -95.969464157665001, 29.79474018331139 ], [ -95.969493158369986, 29.794725183705491 ], [ -95.969490158328071, 29.794685183630698 ], [ -95.969482157775104, 29.794650183319767 ], [ -95.969539158132903, 29.794601184054166 ], [ -95.969698158043244, 29.794486183737764 ], [ -95.969822158002714, 29.794391183586871 ], [ -95.970123158486146, 29.794144183299633 ], [ -95.970250158523314, 29.794053183776864 ], [ -95.970328157586437, 29.79400518314052 ], [ -95.970487157651917, 29.793907183694618 ], [ -95.970648158514905, 29.79379518326915 ], [ -95.970891158461171, 29.793600183687442 ], [ -95.971153158320405, 29.793425183337778 ], [ -95.971265157889235, 29.793377183237471 ], [ -95.971305158004583, 29.793368183560748 ], [ -95.971468158369134, 29.79334618299519 ], [ -95.971799158532875, 29.793341183139503 ], [ -95.97196415895796, 29.793352182879662 ], [ -95.972003158308453, 29.793359182928715 ], [ -95.972120159012547, 29.793512183755578 ], [ -95.97215015805601, 29.793502183564641 ], [ -95.972231158804234, 29.793432182891404 ], [ -95.972798158644792, 29.793586183733797 ], [ -95.972931158811164, 29.79356418352214 ], [ -95.973032158276951, 29.793503183592044 ], [ -95.973277158653644, 29.793432183212584 ], [ -95.97358615853355, 29.793300183351025 ], [ -95.973687158852357, 29.793228182977789 ], [ -95.973737159397785, 29.793157182832399 ], [ -95.973806159353231, 29.793113182824399 ], [ -95.973920158785845, 29.793063183269314 ], [ -95.974210159354328, 29.793036183410798 ], [ -95.974392158714053, 29.793052182986571 ], [ -95.974481159579113, 29.793035182745754 ], [ -95.974506159571504, 29.792986183004832 ], [ -95.97451215911893, 29.792838183327603 ], [ -95.974720159596444, 29.792832182697211 ], [ -95.974745159066273, 29.792794182878634 ], [ -95.974739159329346, 29.792546183346516 ], [ -95.974802158759161, 29.792486182828092 ], [ -95.974947159461607, 29.792469183411974 ], [ -95.975129159032036, 29.792524182839063 ], [ -95.975174159306533, 29.792524182917806 ], [ -95.97523715896169, 29.792513183008708 ], [ -95.975356159182155, 29.792458183190359 ], [ -95.975526158874189, 29.792409183194923 ], [ -95.975602159438736, 29.792403183110896 ], [ -95.975728158997825, 29.792359182917803 ], [ -95.975804159812, 29.792348182736532 ], [ -95.975967159812399, 29.792359182992318 ], [ -95.976144158985832, 29.792397182891129 ], [ -95.976232159351554, 29.792403183252716 ], [ -95.976320159857167, 29.792392182695071 ], [ -95.976415159288052, 29.792364182942478 ], [ -95.97656615986628, 29.792304182735862 ], [ -95.976761159168817, 29.792265182740248 ], [ -95.977051159370816, 29.792144182426441 ], [ -95.977177159903789, 29.792111182690842 ], [ -95.977303160108676, 29.792111182752617 ], [ -95.977536159833619, 29.792161182690531 ], [ -95.977606159659302, 29.792166182432137 ], [ -95.977669159768993, 29.792166183178239 ], [ -95.977883160357166, 29.79212818307051 ], [ -95.978110160460417, 29.792116183185676 ], [ -95.97834316041579, 29.792111182763588 ], [ -95.978532159685969, 29.792122182920764 ], [ -95.97867715997856, 29.792072183183944 ], [ -95.978872159793269, 29.79195718306757 ], [ -95.978985160576855, 29.791863183059206 ], [ -95.979073160026161, 29.791704182887077 ], [ -95.979181160120092, 29.791550182996986 ], [ -95.97938215998218, 29.791215182562787 ], [ -95.979458160496023, 29.791050182528817 ], [ -95.979514160601937, 29.790879182165398 ], [ -95.979602160346275, 29.790495182196551 ], [ -95.979610160176009, 29.790380182219824 ], [ -95.979627160590013, 29.790148182245076 ], [ -95.979696159987043, 29.789753181861681 ], [ -95.979702160594456, 29.789055182265585 ], [ -95.979728160470202, 29.788950182553712 ], [ -95.979784160660984, 29.788857181857733 ], [ -95.98006116024591, 29.788538182326104 ], [ -95.980137160127981, 29.788434181716955 ], [ -95.980181160086985, 29.788335182180123 ], [ -95.980219160113094, 29.788208181991578 ], [ -95.980237160552889, 29.788065181634391 ], [ -95.980231159822154, 29.787725181540907 ], [ -95.980275160819303, 29.787510182184768 ], [ -95.980451160411661, 29.78694918216063 ], [ -95.980520160398484, 29.786724181768346 ], [ -95.980552160536021, 29.786587181689409 ], [ -95.980539160410729, 29.786477181431739 ], [ -95.980495160234412, 29.786345181443068 ], [ -95.980416160313069, 29.786194181834968 ], [ -95.980751160609117, 29.786062181197345 ], [ -95.98092516025676, 29.785972181686457 ], [ -95.981161160955963, 29.785845181262236 ], [ -95.981725160101419, 29.785531181358138 ], [ -95.981943160320327, 29.785410181293489 ], [ -95.98276216112518, 29.784938181291686 ], [ -95.983374160484431, 29.784633181036629 ], [ -95.983642160919729, 29.784490180813552 ], [ -95.983877161054892, 29.784410181094849 ], [ -95.984067160927353, 29.784320181119224 ], [ -95.984419160977225, 29.784196181228815 ], [ -95.985051160886556, 29.784008180986799 ], [ -95.98576416191851, 29.783831180737323 ], [ -95.985951161339074, 29.783786180978261 ], [ -95.98691416135695, 29.783561180542687 ], [ -95.987055161857995, 29.783529180414874 ], [ -95.987195162320404, 29.783496181130456 ], [ -95.987339161683963, 29.78346118042947 ], [ -95.987482162030346, 29.783425180590708 ], [ -95.988067162518419, 29.783281180310144 ], [ -95.988795162360518, 29.783111180753451 ], [ -95.990695162737111, 29.782670180699643 ], [ -95.993603163634006, 29.781981179927243 ], [ -95.99520616419116, 29.781603180251022 ], [ -96.002604165178923, 29.779838179215592 ], [ -96.004595165900952, 29.779352179420819 ], [ -96.016702169434382, 29.776453178727913 ], [ -96.020496169888588, 29.775545178372766 ], [ -96.024171171059621, 29.7746651777917 ], [ -96.024352170672302, 29.774622177795308 ], [ -96.028576171766616, 29.773629177783874 ], [ -96.029065172186279, 29.773512177173693 ], [ -96.030532172264145, 29.773163177358416 ], [ -96.03102217235697, 29.773047177392911 ], [ -96.031957172458817, 29.772818177392502 ], [ -96.034763173407228, 29.772134177087313 ], [ -96.035378174042165, 29.771985177223012 ], [ -96.035700173758855, 29.771911176537373 ], [ -96.035816173689668, 29.771878176561255 ], [ -96.035968174042452, 29.771836176720829 ], [ -96.036166173644943, 29.77178017693997 ], [ -96.03623617393194, 29.771761176366869 ], [ -96.036283173539289, 29.771748177008444 ], [ -96.036097173331711, 29.771225176970745 ], [ -96.03606517357467, 29.77112917686172 ], [ -96.036032173444596, 29.77103417626887 ], [ -96.035762173473287, 29.7702621766047 ], [ -96.035491173192938, 29.769489176582475 ], [ -96.035463173499394, 29.769440175886295 ], [ -96.034614172876658, 29.767045176225501 ], [ -96.034605172729783, 29.767019175837703 ], [ -96.034553173105479, 29.766877176150725 ], [ -96.03450017342935, 29.766734175974058 ], [ -96.03174517201451, 29.759929174695483 ], [ -96.031082171546558, 29.758292174214908 ], [ -96.030859171930217, 29.757736173622877 ], [ -96.030808172024635, 29.757609174123345 ], [ -96.029603171513315, 29.754671173789809 ], [ -96.029266171366018, 29.752590172891541 ], [ -96.029384171300393, 29.751705172808148 ], [ -96.029584171458566, 29.750222172865769 ], [ -96.029950171454232, 29.748289171925656 ], [ -96.030459171171984, 29.747121171580545 ], [ -96.031022170989544, 29.746038171603953 ], [ -96.032068171717683, 29.744981171163143 ], [ -96.033405172041853, 29.743960170974283 ], [ -96.034780171901829, 29.742941171098991 ], [ -96.036299172185679, 29.741787170527342 ], [ -96.037269173187951, 29.741052170081645 ], [ -96.038596172825038, 29.740360170337066 ], [ -96.039612173333026, 29.739777169846967 ], [ -96.039699173118976, 29.739727169798044 ], [ -96.039996172977183, 29.738880170360687 ], [ -96.040080173486103, 29.738155169459986 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 512, "Tract": "48473980000", "Area_SqMi": 1.9193308439159718, "total_2009": null, "total_2010": null, "total_2011": null, "total_2012": 3041, "total_2013": 3078, "total_2014": 2710, "total_2015": 3006, "total_2016": 2891, "total_2017": 2984, "total_2018": 2614, "total_2019": 1956, "total_2020": 1869, "age1": 760, "age2": 665, "age3": 340, "earn1": 871, "earn2": 436, "earn3": 458, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 8, "naics_s12": 0, "naics_s13": 0, "naics_s14": 157, "naics_s15": 1595, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 487, "race2": 1156, "race3": 9, "race4": 88, "race5": 1, "race6": 24, "ethnicity1": 1536, "ethnicity2": 229, "edu1": 156, "edu2": 218, "edu3": 309, "edu4": 322, "Shape_Length": 32196.364623343743, "Shape_Area": 53507658.96080748, "total_2021": 1648, "total_2022": 1765 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.99818217946239, 30.100989244904081 ], [ -95.998172179503698, 30.100653244959428 ], [ -95.998168178776424, 30.100539244128644 ], [ -95.998159179179922, 30.100199244337297 ], [ -95.998156179528252, 30.100086244063501 ], [ -95.998136179481207, 30.099453244074287 ], [ -95.998136179074436, 30.099416244552014 ], [ -95.998140178903441, 30.097408244036984 ], [ -95.998141178594224, 30.097305244285888 ], [ -95.998131179474697, 30.096739243837941 ], [ -95.998121178502075, 30.096195243521404 ], [ -95.998119178687929, 30.096048243842194 ], [ -95.998116178736012, 30.094563243264968 ], [ -95.998116178731365, 30.094020243651318 ], [ -95.998113178536144, 30.093922243266974 ], [ -95.998106178332264, 30.093629243324312 ], [ -95.998104179136391, 30.093532243505265 ], [ -95.998091178821127, 30.093016242904859 ], [ -95.998094178729119, 30.092574243076548 ], [ -95.998100178704362, 30.091734242971938 ], [ -95.998052178488692, 30.089808242665772 ], [ -95.998048178136131, 30.089701242409085 ], [ -95.99803517890679, 30.089342242335793 ], [ -95.998000178102544, 30.089042241929072 ], [ -95.997908178242639, 30.088761241941167 ], [ -95.997904178656469, 30.088748242463424 ], [ -95.997788178094638, 30.088550241796646 ], [ -95.997569178189124, 30.088325242404782 ], [ -95.99743217839773, 30.088210241922695 ], [ -95.997393177990688, 30.088178242525331 ], [ -95.997141178625284, 30.088041242402699 ], [ -95.996857178427973, 30.087941242344431 ], [ -95.996151178446794, 30.087887241809501 ], [ -95.995292178060737, 30.087889241811464 ], [ -95.99455717813747, 30.087892242080574 ], [ -95.993432177166383, 30.087895241837941 ], [ -95.990059176999523, 30.087906241912314 ], [ -95.989744176471419, 30.087908242167227 ], [ -95.988935176101691, 30.087907241995229 ], [ -95.988708175836265, 30.087898242564506 ], [ -95.988028175542354, 30.087873242513773 ], [ -95.987802176254093, 30.087865242211048 ], [ -95.987667175681707, 30.087862242084515 ], [ -95.987621175809167, 30.087861242175755 ], [ -95.987263176239978, 30.087837242450128 ], [ -95.987129175838291, 30.087829242151635 ], [ -95.986250175487129, 30.087766242012737 ], [ -95.98191517430422, 30.08750424267663 ], [ -95.978922173166765, 30.08735224274638 ], [ -95.978576173651732, 30.087341242651082 ], [ -95.972507172044843, 30.087159243035533 ], [ -95.970506171742784, 30.087099242556672 ], [ -95.969593171235445, 30.087068242845408 ], [ -95.968554171530684, 30.087033242831282 ], [ -95.967330170345249, 30.086992242771668 ], [ -95.965832169882646, 30.086942242880138 ], [ -95.965214170013496, 30.08691424335646 ], [ -95.965204170078636, 30.087109242960146 ], [ -95.96520416991207, 30.08714624291294 ], [ -95.965219170301808, 30.087845243448601 ], [ -95.965225170181199, 30.088078242987102 ], [ -95.965232170724121, 30.088425242950215 ], [ -95.965236169779047, 30.088620243463705 ], [ -95.965270170738378, 30.09024624335494 ], [ -95.96528217017719, 30.090788243373815 ], [ -95.965298170616208, 30.091498243614598 ], [ -95.9652981704333, 30.093383244044276 ], [ -95.965299170489189, 30.093611244445896 ], [ -95.965303171013687, 30.093773244329554 ], [ -95.965318170251336, 30.09384824405549 ], [ -95.965369170686358, 30.09389024472312 ], [ -95.965469170833217, 30.093920244221401 ], [ -95.965951170672909, 30.093895244723232 ], [ -95.966025170913952, 30.093900244449429 ], [ -95.967313171250581, 30.093931244165528 ], [ -95.967502171377021, 30.093927244064925 ], [ -95.967529171103962, 30.094013244099042 ], [ -95.967545171135669, 30.094110244006497 ], [ -95.967536170644422, 30.095081244193619 ], [ -95.967542171194211, 30.098170244892927 ], [ -95.967548171183509, 30.099037245215499 ], [ -95.967569171899967, 30.101633245843686 ], [ -95.967570171631451, 30.101722245520971 ], [ -95.967576171071926, 30.101992245998282 ], [ -95.967578171601886, 30.102082245565459 ], [ -95.968108171861303, 30.10209124610974 ], [ -95.968341171298931, 30.102072246320759 ], [ -95.970171172127209, 30.102040245481106 ], [ -95.971164172639035, 30.102023245597024 ], [ -95.972843172754736, 30.101987245967756 ], [ -95.974171173245708, 30.101958246026488 ], [ -95.975655173505373, 30.101926245850049 ], [ -95.976597173846073, 30.101889245916905 ], [ -95.977950174548994, 30.101830245190506 ], [ -95.979406174710746, 30.10176824546582 ], [ -95.980543175119308, 30.101731245554106 ], [ -95.981187175431103, 30.101710245144702 ], [ -95.982110175282202, 30.101680245040384 ], [ -95.983122175596037, 30.101659245414428 ], [ -95.983768175288859, 30.10164724496374 ], [ -95.984323175736577, 30.101636245511447 ], [ -95.985988176593736, 30.101602245259439 ], [ -95.986543176748839, 30.101592245566188 ], [ -95.986554175935922, 30.10192524546483 ], [ -95.986563175976286, 30.101974245070089 ], [ -95.986594176605919, 30.102138245032393 ], [ -95.986659176689244, 30.102335245200411 ], [ -95.986784175868181, 30.102530245346035 ], [ -95.986924176129207, 30.102696245330772 ], [ -95.987073175976718, 30.102859244970169 ], [ -95.987161176728051, 30.102919245437526 ], [ -95.98725517681261, 30.102984245240521 ], [ -95.987491176838532, 30.103115245030079 ], [ -95.988530177312413, 30.103675245353166 ], [ -95.989469176704773, 30.104208245920134 ], [ -95.989729177630437, 30.104384245992129 ], [ -95.989901177606086, 30.104523245367549 ], [ -95.99003117752325, 30.104578245965794 ], [ -95.990276177337577, 30.10459224568795 ], [ -95.990293176861726, 30.104050245861742 ], [ -95.990336177185156, 30.10373224536205 ], [ -95.990442177073064, 30.103454245249075 ], [ -95.990602177520572, 30.103199245324962 ], [ -95.990799177708979, 30.102994245528077 ], [ -95.990811177370404, 30.102985245215969 ], [ -95.991016177457254, 30.102856245165029 ], [ -95.991277177786358, 30.102733245426759 ], [ -95.99151217755248, 30.102655245111908 ], [ -95.991658177136927, 30.102643244981468 ], [ -95.99170117808508, 30.102636244831704 ], [ -95.991909177863946, 30.102623245383253 ], [ -95.995766178450666, 30.102627244917308 ], [ -95.996146178628734, 30.102627244618269 ], [ -95.996526179202533, 30.102611245039935 ], [ -95.996909178893404, 30.10253924542533 ], [ -95.99729017895865, 30.102441245398502 ], [ -95.997725179045304, 30.10227224498788 ], [ -95.997741178879636, 30.102250244587875 ], [ -95.997877178787988, 30.102066244864645 ], [ -95.998005178758632, 30.101810245007087 ], [ -95.998153179387216, 30.101437244300872 ], [ -95.998158178804857, 30.101261244667523 ], [ -95.99818217946239, 30.100989244904081 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 513, "Tract": "48201320500", "Area_SqMi": 2.2432300864932406, "total_2009": 1277, "total_2010": 1149, "total_2011": 1263, "total_2012": 2079, "total_2013": 2589, "total_2014": 1749, "total_2015": 2003, "total_2016": 2261, "total_2017": 2294, "total_2018": 2299, "total_2019": 1856, "total_2020": 1886, "age1": 189, "age2": 836, "age3": 394, "earn1": 54, "earn2": 137, "earn3": 1228, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 892, "naics_s06": 163, "naics_s07": 35, "naics_s08": 87, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 33, "naics_s13": 3, "naics_s14": 41, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 0, "naics_s19": 141, "naics_s20": 0, "race1": 1053, "race2": 287, "race3": 12, "race4": 42, "race5": 3, "race6": 22, "ethnicity1": 1015, "ethnicity2": 404, "edu1": 204, "edu2": 340, "edu3": 427, "edu4": 259, "Shape_Length": 38489.251851013716, "Shape_Area": 62537415.484767713, "total_2021": 1934, "total_2022": 1419 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.265234974362926, 29.702734188971277 ], [ -95.265268974059907, 29.701977189004864 ], [ -95.265165973911579, 29.70152018832048 ], [ -95.264722973959692, 29.700912188668571 ], [ -95.263142973066095, 29.699389188124737 ], [ -95.262493972978888, 29.698563187681398 ], [ -95.262166973226499, 29.697982187831634 ], [ -95.262041972836968, 29.697413188122731 ], [ -95.262517973439643, 29.697239187912682 ], [ -95.262676972888428, 29.69712618783765 ], [ -95.262767972591931, 29.696892187391697 ], [ -95.262756973122691, 29.696502187640228 ], [ -95.26268197297189, 29.696382187188266 ], [ -95.262619972526764, 29.696284187429594 ], [ -95.262443972739746, 29.696191187912518 ], [ -95.261628973019953, 29.696089187684294 ], [ -95.261423972808316, 29.695819187390239 ], [ -95.260872972592665, 29.695094187705607 ], [ -95.260525971925844, 29.694985187049731 ], [ -95.260498971924207, 29.694960187171251 ], [ -95.260098972704654, 29.694596187540085 ], [ -95.259899972134164, 29.69446718747577 ], [ -95.25959697207584, 29.694355187709814 ], [ -95.259315972081225, 29.694392187407651 ], [ -95.258542971521251, 29.694637187259623 ], [ -95.258297971600811, 29.694658187296969 ], [ -95.257989972079258, 29.694558187419062 ], [ -95.257559971839626, 29.694172187369002 ], [ -95.257372971260153, 29.694100187334467 ], [ -95.25688097115659, 29.694068187532501 ], [ -95.256100971367687, 29.694100187263416 ], [ -95.255777970935611, 29.694049187054613 ], [ -95.255502970719036, 29.693743187445108 ], [ -95.25535097078405, 29.693348187642908 ], [ -95.255419970809101, 29.692959187530228 ], [ -95.25577397106548, 29.692479187408107 ], [ -95.256052970805968, 29.692215186983596 ], [ -95.25654897085424, 29.691893186566105 ], [ -95.256730971612896, 29.691725187077012 ], [ -95.2567239712278, 29.69163118709 ], [ -95.256652971408528, 29.690542186614131 ], [ -95.256547971167123, 29.69019718680039 ], [ -95.255985971405721, 29.689582186010018 ], [ -95.255652970954117, 29.689375186774303 ], [ -95.255132970705688, 29.689168186125517 ], [ -95.254443970337121, 29.689244186360323 ], [ -95.254076970461497, 29.689235186098109 ], [ -95.253184970425664, 29.688976186639128 ], [ -95.252624970143799, 29.688758186449544 ], [ -95.252401970084875, 29.688551186358794 ], [ -95.251794969353682, 29.687662185926197 ], [ -95.251561970026813, 29.687499186031069 ], [ -95.251411969541863, 29.687394186055226 ], [ -95.251259969836781, 29.687341185781644 ], [ -95.250850969496852, 29.687332185811169 ], [ -95.24948596959409, 29.687549186372113 ], [ -95.249082969452047, 29.687720185891585 ], [ -95.248869969545282, 29.687887185897907 ], [ -95.248658969241788, 29.6881461865913 ], [ -95.248383969079811, 29.688215186103758 ], [ -95.24813996881737, 29.68820218639701 ], [ -95.247911968802839, 29.688051186304438 ], [ -95.247754968975997, 29.687841186361617 ], [ -95.247573968362332, 29.687407186648905 ], [ -95.247407969071091, 29.687205186615714 ], [ -95.247236969128664, 29.686911185991558 ], [ -95.247198968660456, 29.686928186026286 ], [ -95.246142968554651, 29.687422186348655 ], [ -95.245546968019141, 29.68787818647791 ], [ -95.245151968444944, 29.68821918666584 ], [ -95.244890968080384, 29.68846018672248 ], [ -95.24461496751762, 29.68876918682065 ], [ -95.242919967314364, 29.691004187174961 ], [ -95.241584967682556, 29.692783187128949 ], [ -95.240088967471976, 29.694753187792124 ], [ -95.239124967181823, 29.696030188699826 ], [ -95.239062967022207, 29.696049188105317 ], [ -95.238570966463698, 29.696308188714578 ], [ -95.238355967054972, 29.695998188139928 ], [ -95.237825966827074, 29.695258188473531 ], [ -95.236845965876114, 29.693831187951346 ], [ -95.236382966335796, 29.693159187504438 ], [ -95.235632965634636, 29.692071187801346 ], [ -95.235069965322978, 29.691252187015991 ], [ -95.234548965291893, 29.69049618711027 ], [ -95.233500965493164, 29.690516187450669 ], [ -95.232626964562101, 29.690526187767841 ], [ -95.231740965287301, 29.69053018739168 ], [ -95.230846964610947, 29.690538187861332 ], [ -95.229975963934734, 29.690555187317429 ], [ -95.229088963959668, 29.690563187214977 ], [ -95.228094963885184, 29.690568187852286 ], [ -95.228094963485034, 29.691286188106055 ], [ -95.227993963982641, 29.691840188088541 ], [ -95.227959963902038, 29.69241118776878 ], [ -95.227955964337781, 29.692831188171635 ], [ -95.227974963833049, 29.693559188253641 ], [ -95.227983963830326, 29.69429618824315 ], [ -95.227995964341986, 29.694411188538627 ], [ -95.227985963810568, 29.695016188626184 ], [ -95.228007964054967, 29.695735188760771 ], [ -95.228021964100805, 29.696443188564448 ], [ -95.228028964251109, 29.697158189315029 ], [ -95.228066964611301, 29.697915189106009 ], [ -95.228080963824198, 29.698652189118736 ], [ -95.228107963781511, 29.699829189606124 ], [ -95.228114963957324, 29.700914189403395 ], [ -95.228127964448987, 29.701545190002616 ], [ -95.22817096493614, 29.705198190635262 ], [ -95.228176964241996, 29.706249190633478 ], [ -95.228190964931542, 29.706904190960547 ], [ -95.228130964331513, 29.707147190768556 ], [ -95.22813596473371, 29.707465190802242 ], [ -95.228144964667337, 29.707663191029361 ], [ -95.228297964911505, 29.707609191156521 ], [ -95.228822965180257, 29.707510190781157 ], [ -95.229545964616236, 29.707423191295973 ], [ -95.230461965489226, 29.707345190838009 ], [ -95.230648965353652, 29.707325190961377 ], [ -95.231569965062874, 29.707227190456873 ], [ -95.231733965790283, 29.707213191280697 ], [ -95.231903965678427, 29.70720119050241 ], [ -95.236427966518079, 29.706792190468008 ], [ -95.236883966986625, 29.706751190466296 ], [ -95.238363967523284, 29.706617190702602 ], [ -95.242467968423853, 29.706246190376458 ], [ -95.243094967956694, 29.706161190109 ], [ -95.244010968206524, 29.706092190577674 ], [ -95.244888969013616, 29.706032189947788 ], [ -95.245162969297809, 29.706032190613378 ], [ -95.245630968910987, 29.706033190026321 ], [ -95.246294969171572, 29.706071189964767 ], [ -95.246907969397881, 29.706135189776731 ], [ -95.247491969382011, 29.70621219012903 ], [ -95.247996969941795, 29.706301190485636 ], [ -95.248438969771385, 29.706402190371271 ], [ -95.250340970274593, 29.706720190577414 ], [ -95.251573970917406, 29.706906190553973 ], [ -95.252319970554026, 29.707034189745588 ], [ -95.252847970731963, 29.707125190015805 ], [ -95.253695970725857, 29.707271190072383 ], [ -95.25617097165221, 29.707696190415174 ], [ -95.256551971843777, 29.707760189960752 ], [ -95.256904972236711, 29.707820190378726 ], [ -95.257058971761211, 29.707620190322388 ], [ -95.257086972017589, 29.707583190094507 ], [ -95.257520971683959, 29.707198190333237 ], [ -95.258157972484753, 29.706865190103006 ], [ -95.259631972789194, 29.705877190019926 ], [ -95.261519972913163, 29.705145189615617 ], [ -95.263210973678952, 29.704564189276706 ], [ -95.264348973834544, 29.703909189029432 ], [ -95.264724974090541, 29.703627188697467 ], [ -95.264944973768806, 29.703366188916334 ], [ -95.265164974399923, 29.702979189110465 ], [ -95.265234974362926, 29.702734188971277 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 514, "Tract": "48201320700", "Area_SqMi": 1.3323735755398289, "total_2009": 2880, "total_2010": 2637, "total_2011": 2505, "total_2012": 2671, "total_2013": 2777, "total_2014": 3332, "total_2015": 3586, "total_2016": 3648, "total_2017": 3497, "total_2018": 3458, "total_2019": 3389, "total_2020": 3380, "age1": 601, "age2": 1994, "age3": 832, "earn1": 311, "earn2": 817, "earn3": 2299, "naics_s01": 20, "naics_s02": 11, "naics_s03": 95, "naics_s04": 972, "naics_s05": 606, "naics_s06": 601, "naics_s07": 100, "naics_s08": 88, "naics_s09": 0, "naics_s10": 37, "naics_s11": 85, "naics_s12": 100, "naics_s13": 1, "naics_s14": 331, "naics_s15": 0, "naics_s16": 12, "naics_s17": 0, "naics_s18": 95, "naics_s19": 273, "naics_s20": 0, "race1": 2818, "race2": 416, "race3": 31, "race4": 116, "race5": 9, "race6": 37, "ethnicity1": 2059, "ethnicity2": 1368, "edu1": 673, "edu2": 772, "edu3": 894, "edu4": 487, "Shape_Length": 35068.195241888796, "Shape_Area": 37144294.905885436, "total_2021": 3165, "total_2022": 3427 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.26095997095652, 29.667051181308217 ], [ -95.261003970801198, 29.666876181256168 ], [ -95.260293970550009, 29.665796181139012 ], [ -95.259915971113557, 29.665222181459626 ], [ -95.258776970595193, 29.663420180683335 ], [ -95.258582970128998, 29.663113180711896 ], [ -95.258557970496113, 29.663073181290187 ], [ -95.258546970617743, 29.663056180801298 ], [ -95.258372970039147, 29.662781181092885 ], [ -95.258333970150929, 29.66272218078031 ], [ -95.256330969669222, 29.65971318041078 ], [ -95.254641969092006, 29.657164179551859 ], [ -95.251707968391116, 29.652673178869215 ], [ -95.251599968426405, 29.652508179147649 ], [ -95.251382968369214, 29.652557178686731 ], [ -95.251194967886406, 29.652585178557981 ], [ -95.250955968240717, 29.652621178620894 ], [ -95.250383967849274, 29.652795179477959 ], [ -95.250140967537817, 29.65282217874001 ], [ -95.250121967930994, 29.652831179184638 ], [ -95.249853967577877, 29.652949178667278 ], [ -95.249562967296967, 29.653046179509413 ], [ -95.249190967432142, 29.653305179034664 ], [ -95.249216967520468, 29.65339917951113 ], [ -95.249262967608331, 29.655708179379868 ], [ -95.249272967807315, 29.656211179395399 ], [ -95.249300968086402, 29.656549179828534 ], [ -95.249306968312581, 29.65716617964479 ], [ -95.24931896779465, 29.658454180585853 ], [ -95.249355967519335, 29.659495180669985 ], [ -95.249353967509819, 29.659705180341899 ], [ -95.249390967593129, 29.661295180754859 ], [ -95.24941096776972, 29.662196181231568 ], [ -95.24946196827409, 29.663666181731283 ], [ -95.249493968304407, 29.664741181972929 ], [ -95.249510968614715, 29.665718181391004 ], [ -95.249517968630784, 29.666008181743329 ], [ -95.249513968070801, 29.667249181880553 ], [ -95.249526968127185, 29.668227182544779 ], [ -95.249526968398627, 29.668383182142527 ], [ -95.249526968388508, 29.668519182011423 ], [ -95.249522968704085, 29.669628182405443 ], [ -95.24951396847365, 29.669671182166876 ], [ -95.249488967957518, 29.669703182700637 ], [ -95.249443968024025, 29.669735182605919 ], [ -95.249478968192619, 29.670347182902862 ], [ -95.248527968317717, 29.670177183014331 ], [ -95.248231967792236, 29.670133182647053 ], [ -95.247924967943348, 29.67012218272264 ], [ -95.24768596788212, 29.670110182251975 ], [ -95.247328968368095, 29.670115182990404 ], [ -95.246718968245645, 29.670123183032985 ], [ -95.246025967468753, 29.670132182967709 ], [ -95.245699967677297, 29.670142183102218 ], [ -95.245493967360048, 29.670148182693183 ], [ -95.244187967282613, 29.670172183284716 ], [ -95.243135967030312, 29.670186183029539 ], [ -95.242111966373102, 29.670200183256945 ], [ -95.24173396665249, 29.670205182614215 ], [ -95.241664966082567, 29.670206182934692 ], [ -95.241173966704963, 29.670221182561747 ], [ -95.240709966330058, 29.670235182777628 ], [ -95.240233966583773, 29.670259183236901 ], [ -95.239765966390735, 29.670324183467194 ], [ -95.239554965938453, 29.670381183413344 ], [ -95.239058966050877, 29.670324182848912 ], [ -95.237949965070015, 29.670341183228942 ], [ -95.236362965529011, 29.670358182889434 ], [ -95.236169965176742, 29.670328182883775 ], [ -95.235543964903869, 29.670318182986097 ], [ -95.235577964944923, 29.670343183037804 ], [ -95.235684965385815, 29.67043718338611 ], [ -95.235772965241196, 29.670547183613223 ], [ -95.235842965452804, 29.670662183360143 ], [ -95.235993964697101, 29.670871183247723 ], [ -95.236018964870027, 29.67096518325085 ], [ -95.236012965313222, 29.671129183345872 ], [ -95.236114965332035, 29.671352183203208 ], [ -95.236226965100656, 29.671597183552212 ], [ -95.23633396535125, 29.671756183677914 ], [ -95.236447964931628, 29.671888183314611 ], [ -95.236671964926671, 29.672074183133706 ], [ -95.236806965662595, 29.672185183339607 ], [ -95.237341965257045, 29.672790183896065 ], [ -95.237502965114871, 29.672889183903816 ], [ -95.237536965045862, 29.672910183449417 ], [ -95.237669965087989, 29.672960183861477 ], [ -95.237864965759741, 29.673004183863775 ], [ -95.238317966064557, 29.673090183438532 ], [ -95.23873396563441, 29.673168183749443 ], [ -95.239035966302609, 29.673284183934022 ], [ -95.239136965810047, 29.673328183486902 ], [ -95.239211965603417, 29.673405183595346 ], [ -95.239312966522476, 29.673586183337633 ], [ -95.239344966201969, 29.673630183469765 ], [ -95.239520965727408, 29.674075183939554 ], [ -95.239709966504975, 29.674411183955659 ], [ -95.239754966187547, 29.674559183952137 ], [ -95.239842966395301, 29.674768184161454 ], [ -95.239905966242901, 29.675087184340477 ], [ -95.239955966695121, 29.675219184068698 ], [ -95.240019965921348, 29.675340183716674 ], [ -95.240132965986945, 29.675466183905836 ], [ -95.240352966862105, 29.675664183673874 ], [ -95.240548966788651, 29.675895184084194 ], [ -95.240705966381128, 29.67617518450238 ], [ -95.240882966115379, 29.67641718394961 ], [ -95.240957966886398, 29.676477183860182 ], [ -95.241083966800645, 29.676554183910724 ], [ -95.241184967014135, 29.676587183971968 ], [ -95.241335967057083, 29.676565184078907 ], [ -95.241474966663304, 29.676505183914948 ], [ -95.241751966496906, 29.676428184067671 ], [ -95.241845966801677, 29.676411184176498 ], [ -95.242179966651094, 29.676416184079002 ], [ -95.24251396708037, 29.67649318393671 ], [ -95.243363967256599, 29.676614184392999 ], [ -95.243579966881754, 29.67661818423089 ], [ -95.244080967824601, 29.676586183851011 ], [ -95.244282967476806, 29.676624184226469 ], [ -95.244402967505366, 29.676690183764812 ], [ -95.244496967197335, 29.676795184240024 ], [ -95.244591967059719, 29.67693218423123 ], [ -95.244648967910678, 29.67735018396877 ], [ -95.244698967963075, 29.677510183918056 ], [ -95.244799967281281, 29.67760818400561 ], [ -95.24519696795285, 29.677955184552999 ], [ -95.245219967599994, 29.677985184138556 ], [ -95.245328967814586, 29.678132184670812 ], [ -95.245495968167219, 29.678740184255126 ], [ -95.245543967916376, 29.678912184362446 ], [ -95.246334968256136, 29.679414184732771 ], [ -95.24638096815633, 29.679484184658214 ], [ -95.246456967756629, 29.679597184284951 ], [ -95.246469968315907, 29.679811184652486 ], [ -95.246051968288072, 29.680535184988276 ], [ -95.245752968207469, 29.681389185523798 ], [ -95.245499968180624, 29.682648185103581 ], [ -95.24541996827746, 29.683185185192063 ], [ -95.245210968347124, 29.684584185842393 ], [ -95.245204968315647, 29.684940185677032 ], [ -95.245336968102649, 29.685160186048549 ], [ -95.246570967893305, 29.685901186366909 ], [ -95.246748968125559, 29.686075186005841 ], [ -95.246844968349436, 29.68603718627848 ], [ -95.246945969006362, 29.685839185993959 ], [ -95.246989968948299, 29.685773186049612 ], [ -95.247058968821193, 29.685734185616205 ], [ -95.247367968686163, 29.685646185559648 ], [ -95.247467968995792, 29.685558186025194 ], [ -95.247555968827044, 29.685464185560519 ], [ -95.247681968412806, 29.685360185421501 ], [ -95.247751969138037, 29.685327185952751 ], [ -95.247832968327842, 29.685320185923118 ], [ -95.248166969180133, 29.685294186221256 ], [ -95.248261968974674, 29.685255186151771 ], [ -95.248324969273213, 29.685184185457786 ], [ -95.248349968430631, 29.685096186130338 ], [ -95.248355969037533, 29.684997185677354 ], [ -95.248349968954741, 29.684909186150552 ], [ -95.248323968783922, 29.684848186082689 ], [ -95.248241968525477, 29.684738185509815 ], [ -95.248304968799573, 29.684661185383234 ], [ -95.24843696889161, 29.684590185327707 ], [ -95.248575969021687, 29.684568185631491 ], [ -95.249003969218194, 29.684518185735254 ], [ -95.249397969083716, 29.68451218541561 ], [ -95.249520969590847, 29.684501185680631 ], [ -95.249589969075245, 29.684463185983613 ], [ -95.249645969194262, 29.684386185963355 ], [ -95.249759969461024, 29.68419318594464 ], [ -95.249821969445904, 29.684105185528281 ], [ -95.250010969082936, 29.684034185380966 ], [ -95.250387968917266, 29.683994185579706 ], [ -95.250746969525665, 29.683983185006877 ], [ -95.251060969001429, 29.683934185688504 ], [ -95.251659969713998, 29.683654185730216 ], [ -95.252093969942464, 29.683461185399075 ], [ -95.252459970272, 29.683236184824121 ], [ -95.252884970382965, 29.682858185205482 ], [ -95.253089970066284, 29.682675184776567 ], [ -95.253146969849624, 29.682577185325485 ], [ -95.253206970073094, 29.682514184980249 ], [ -95.253360970300506, 29.682351184660117 ], [ -95.253738970355855, 29.682192185322226 ], [ -95.253750970090593, 29.682010184645126 ], [ -95.25374896984232, 29.681895185230655 ], [ -95.253738969724253, 29.681455184485895 ], [ -95.253763969551798, 29.681230184764555 ], [ -95.253763970234615, 29.681120184576621 ], [ -95.253801970247125, 29.680900184928163 ], [ -95.254167970348718, 29.680169184315904 ], [ -95.254085970204642, 29.67989418465972 ], [ -95.254066970375305, 29.679866184376934 ], [ -95.254098969705268, 29.679712184760099 ], [ -95.254287969765656, 29.679685184329752 ], [ -95.254463970500666, 29.679547184225495 ], [ -95.254501970452026, 29.679421183973613 ], [ -95.254652970347394, 29.679108184546401 ], [ -95.25469696969607, 29.678970184383029 ], [ -95.254728970712293, 29.678800184051937 ], [ -95.254621970257631, 29.678651183932686 ], [ -95.25458396973896, 29.678552184477525 ], [ -95.254508970174683, 29.678404184196701 ], [ -95.254477969661892, 29.678178184456538 ], [ -95.254470969866361, 29.678052184533612 ], [ -95.25450296987762, 29.677925184089123 ], [ -95.254559970592908, 29.67785418424679 ], [ -95.254634970349116, 29.677782183988111 ], [ -95.254861969674124, 29.677596183763935 ], [ -95.254911970089935, 29.677464183812948 ], [ -95.255208970257499, 29.676837183651514 ], [ -95.255290969793677, 29.676540184036824 ], [ -95.25532897040442, 29.676315183717637 ], [ -95.255378970741134, 29.676243183415632 ], [ -95.255517969940001, 29.676084183532282 ], [ -95.255548969890114, 29.676029183364964 ], [ -95.255548970286327, 29.675974183678065 ], [ -95.255454970402752, 29.675886183932185 ], [ -95.255460970669958, 29.675781183683636 ], [ -95.255706970610476, 29.675017183476392 ], [ -95.255735970496843, 29.674898183515591 ], [ -95.255750970438527, 29.674836183003652 ], [ -95.255883970421692, 29.674522183108902 ], [ -95.25595897017395, 29.674401183677258 ], [ -95.256021970209318, 29.674352183172413 ], [ -95.25626797049776, 29.674286183676251 ], [ -95.256456970737574, 29.674209183586342 ], [ -95.256632970918361, 29.674055182856605 ], [ -95.256752970229783, 29.673912182795736 ], [ -95.256853970962922, 29.673670183295677 ], [ -95.256960970401238, 29.67348918268728 ], [ -95.257193970887272, 29.673247183168915 ], [ -95.257394971083642, 29.67316518315349 ], [ -95.257394970552625, 29.673071182533775 ], [ -95.257426970558086, 29.672775183206856 ], [ -95.257407970743017, 29.67267018265067 ], [ -95.257470971019387, 29.672582183308137 ], [ -95.257705970348638, 29.672423182975013 ], [ -95.258587971214666, 29.671825182394528 ], [ -95.25908597098875, 29.671475182426658 ], [ -95.259163971245883, 29.671384182896539 ], [ -95.259179971408756, 29.671261182830985 ], [ -95.259160971208686, 29.671176182163691 ], [ -95.259157970826578, 29.671027182858747 ], [ -95.259172970827578, 29.670793182278942 ], [ -95.259146971429601, 29.670704182877515 ], [ -95.259041971343152, 29.670604182521089 ], [ -95.259016970961881, 29.670530182532257 ], [ -95.259020971220394, 29.670472182033532 ], [ -95.259191970583984, 29.670313182632597 ], [ -95.259223970570687, 29.670287182223653 ], [ -95.259342971128291, 29.670147182436878 ], [ -95.25941397118882, 29.670056182150308 ], [ -95.259472971062436, 29.669866182473285 ], [ -95.259581971110023, 29.669760181855629 ], [ -95.259587971335563, 29.669654182080933 ], [ -95.259442970581148, 29.669246181787702 ], [ -95.259538970767935, 29.669185182116902 ], [ -95.259646970713817, 29.669185181926146 ], [ -95.259858970758373, 29.669102182223906 ], [ -95.259941970803396, 29.668969182294585 ], [ -95.260057971016195, 29.668818182439789 ], [ -95.260327971670662, 29.668394182242295 ], [ -95.260797971109753, 29.667548181587687 ], [ -95.26081997080955, 29.667493181597333 ], [ -95.260895971010171, 29.667303181308444 ], [ -95.26095997095652, 29.667051181308217 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 515, "Tract": "48201320800", "Area_SqMi": 1.1277774727848189, "total_2009": 2457, "total_2010": 2285, "total_2011": 2346, "total_2012": 2890, "total_2013": 2991, "total_2014": 3074, "total_2015": 3154, "total_2016": 2566, "total_2017": 2481, "total_2018": 2539, "total_2019": 2522, "total_2020": 2359, "age1": 406, "age2": 1216, "age3": 652, "earn1": 325, "earn2": 685, "earn3": 1264, "naics_s01": 0, "naics_s02": 5, "naics_s03": 15, "naics_s04": 504, "naics_s05": 596, "naics_s06": 294, "naics_s07": 178, "naics_s08": 12, "naics_s09": 22, "naics_s10": 4, "naics_s11": 22, "naics_s12": 44, "naics_s13": 0, "naics_s14": 106, "naics_s15": 0, "naics_s16": 33, "naics_s17": 2, "naics_s18": 208, "naics_s19": 142, "naics_s20": 87, "race1": 1923, "race2": 152, "race3": 27, "race4": 145, "race5": 3, "race6": 24, "ethnicity1": 1149, "ethnicity2": 1125, "edu1": 537, "edu2": 521, "edu3": 508, "edu4": 302, "Shape_Length": 24614.323987851265, "Shape_Area": 31440505.73080527, "total_2021": 2339, "total_2022": 2274 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.249526968398627, 29.668383182142527 ], [ -95.249526968127185, 29.668227182544779 ], [ -95.249513968070801, 29.667249181880553 ], [ -95.249517968630784, 29.666008181743329 ], [ -95.249510968614715, 29.665718181391004 ], [ -95.249493968304407, 29.664741181972929 ], [ -95.24946196827409, 29.663666181731283 ], [ -95.24941096776972, 29.662196181231568 ], [ -95.249390967593129, 29.661295180754859 ], [ -95.249353967509819, 29.659705180341899 ], [ -95.249355967519335, 29.659495180669985 ], [ -95.24931896779465, 29.658454180585853 ], [ -95.249306968312581, 29.65716617964479 ], [ -95.249300968086402, 29.656549179828534 ], [ -95.249272967807315, 29.656211179395399 ], [ -95.249262967608331, 29.655708179379868 ], [ -95.249216967520468, 29.65339917951113 ], [ -95.249190967432142, 29.653305179034664 ], [ -95.249174967834747, 29.652218178931772 ], [ -95.246683967254967, 29.652306178966366 ], [ -95.245722966730852, 29.652340179075804 ], [ -95.244713966773659, 29.652501179242648 ], [ -95.244579966220428, 29.652454179163225 ], [ -95.242806965647205, 29.652470179289907 ], [ -95.241308965137179, 29.652500178898809 ], [ -95.240982965163198, 29.652508179127508 ], [ -95.23928796552687, 29.652532179259293 ], [ -95.239031964762219, 29.652534179475381 ], [ -95.237441964878514, 29.652547179379049 ], [ -95.237228964371795, 29.652551179316788 ], [ -95.235601964578123, 29.652587179352139 ], [ -95.235400963784002, 29.652588179207278 ], [ -95.233701963617406, 29.652584179597248 ], [ -95.233458963299356, 29.652601179897019 ], [ -95.232026963683509, 29.652620179371482 ], [ -95.230124962676811, 29.652646180074225 ], [ -95.229680963096513, 29.652631179597286 ], [ -95.229081962041874, 29.652612180032541 ], [ -95.226104962069741, 29.652661179620051 ], [ -95.22578196145561, 29.652661179639605 ], [ -95.225897961776084, 29.652782179755832 ], [ -95.22616296209064, 29.653053179484946 ], [ -95.226390961512251, 29.65328518029952 ], [ -95.226747961680118, 29.653650179924913 ], [ -95.22681796211009, 29.653721180267713 ], [ -95.227100962301719, 29.654010180197993 ], [ -95.227571962207563, 29.654491180119575 ], [ -95.228331962612572, 29.655268180681514 ], [ -95.229065962138847, 29.65601818004151 ], [ -95.229281962865514, 29.65628718041042 ], [ -95.229730962396587, 29.656800180221321 ], [ -95.230430963532356, 29.657596180554076 ], [ -95.23115296370166, 29.658362181167821 ], [ -95.231869963760445, 29.659121181391711 ], [ -95.232148963744692, 29.659416180913812 ], [ -95.232593963505323, 29.659887180878957 ], [ -95.233328963811289, 29.660646181611323 ], [ -95.23409296387868, 29.661452181563334 ], [ -95.234578964794252, 29.661965181317733 ], [ -95.234846964320624, 29.66226718170094 ], [ -95.235269964042388, 29.66271518165652 ], [ -95.235636965028505, 29.663104181382455 ], [ -95.236362965032782, 29.663874181853043 ], [ -95.237099965454505, 29.664656181915344 ], [ -95.237772964778074, 29.665368181728716 ], [ -95.238475965674496, 29.666162182652553 ], [ -95.239194965629252, 29.666961182218149 ], [ -95.239886965391449, 29.667728182222703 ], [ -95.240587966069924, 29.668508182807447 ], [ -95.241305966439754, 29.669303183141292 ], [ -95.241957966592807, 29.670027182603626 ], [ -95.242111966373102, 29.670200183256945 ], [ -95.243135967030312, 29.670186183029539 ], [ -95.244187967282613, 29.670172183284716 ], [ -95.245493967360048, 29.670148182693183 ], [ -95.245699967677297, 29.670142183102218 ], [ -95.246025967468753, 29.670132182967709 ], [ -95.246718968245645, 29.670123183032985 ], [ -95.247328968368095, 29.670115182990404 ], [ -95.24768596788212, 29.670110182251975 ], [ -95.247924967943348, 29.67012218272264 ], [ -95.248231967792236, 29.670133182647053 ], [ -95.248527968317717, 29.670177183014331 ], [ -95.249478968192619, 29.670347182902862 ], [ -95.249443968024025, 29.669735182605919 ], [ -95.249488967957518, 29.669703182700637 ], [ -95.24951396847365, 29.669671182166876 ], [ -95.249522968704085, 29.669628182405443 ], [ -95.249526968388508, 29.668519182011423 ], [ -95.249526968398627, 29.668383182142527 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 516, "Tract": "48201321200", "Area_SqMi": 1.147942785370861, "total_2009": 429, "total_2010": 392, "total_2011": 482, "total_2012": 579, "total_2013": 697, "total_2014": 743, "total_2015": 684, "total_2016": 752, "total_2017": 824, "total_2018": 825, "total_2019": 702, "total_2020": 379, "age1": 140, "age2": 289, "age3": 110, "earn1": 71, "earn2": 170, "earn3": 298, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 123, "naics_s05": 14, "naics_s06": 49, "naics_s07": 113, "naics_s08": 24, "naics_s09": 0, "naics_s10": 0, "naics_s11": 39, "naics_s12": 0, "naics_s13": 0, "naics_s14": 54, "naics_s15": 65, "naics_s16": 23, "naics_s17": 0, "naics_s18": 19, "naics_s19": 15, "naics_s20": 0, "race1": 424, "race2": 70, "race3": 8, "race4": 29, "race5": 3, "race6": 5, "ethnicity1": 277, "ethnicity2": 262, "edu1": 91, "edu2": 126, "edu3": 108, "edu4": 74, "Shape_Length": 27602.610588345458, "Shape_Area": 32002680.132426705, "total_2021": 524, "total_2022": 539 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.210809956763072, 29.637143176714673 ], [ -95.21103095673287, 29.636986177185634 ], [ -95.210698956944412, 29.636647176782233 ], [ -95.209532957138606, 29.635360176571989 ], [ -95.209181956958361, 29.635005177167915 ], [ -95.208868956630212, 29.63468817696058 ], [ -95.207777956219431, 29.633491176470852 ], [ -95.207116955477886, 29.632778176793288 ], [ -95.206695956005817, 29.632324176245671 ], [ -95.206519955414791, 29.63214217670965 ], [ -95.206112955319867, 29.631712176630693 ], [ -95.206034955757175, 29.631612176259612 ], [ -95.205743955429696, 29.631314175892307 ], [ -95.205315955118976, 29.630863175812671 ], [ -95.204721955702112, 29.630217175515789 ], [ -95.204564955561267, 29.630053176365294 ], [ -95.203693955333733, 29.629142175558957 ], [ -95.202072954418753, 29.627392175838434 ], [ -95.200450954400367, 29.625648175066711 ], [ -95.200332953893152, 29.625522175454446 ], [ -95.200180954239627, 29.625355175546318 ], [ -95.199645954120896, 29.624778175278951 ], [ -95.19930595320595, 29.624416175254957 ], [ -95.198812953082736, 29.623885174448336 ], [ -95.198014953632537, 29.623005175145202 ], [ -95.197513953424945, 29.622504174472702 ], [ -95.197289953118556, 29.622671174656507 ], [ -95.196981953043945, 29.622900175084656 ], [ -95.196297953040201, 29.623550174967114 ], [ -95.195915952543501, 29.624037175327324 ], [ -95.195599952351103, 29.624558175204751 ], [ -95.195042952186995, 29.625010175064705 ], [ -95.194159952610264, 29.625658175274879 ], [ -95.193184952095763, 29.62633017529388 ], [ -95.193208952449424, 29.626743175224878 ], [ -95.192962952087441, 29.629593176579046 ], [ -95.192933952244175, 29.62985317586968 ], [ -95.192815951768978, 29.631111176468476 ], [ -95.19279795173361, 29.631328176933096 ], [ -95.192792952164027, 29.631375176693812 ], [ -95.192714952607119, 29.632153176965918 ], [ -95.19259095272794, 29.633395176589037 ], [ -95.192538952657685, 29.634016176854143 ], [ -95.192537952303681, 29.634292177327655 ], [ -95.19255295200476, 29.634411177153684 ], [ -95.19263395234664, 29.634572177041889 ], [ -95.19280195230067, 29.634799176893171 ], [ -95.193046952406135, 29.635102177694222 ], [ -95.193302952431864, 29.635454177421419 ], [ -95.193512952282717, 29.6357261772811 ], [ -95.19467395261141, 29.637260177759298 ], [ -95.195702953484172, 29.638624177846374 ], [ -95.19676995383162, 29.640025178539364 ], [ -95.197395953428554, 29.640853178206779 ], [ -95.198179954003876, 29.641869178539672 ], [ -95.19832695372709, 29.642081178762016 ], [ -95.198433954501283, 29.64222317825929 ], [ -95.199790954695644, 29.644010179099233 ], [ -95.19983895462488, 29.64407417926467 ], [ -95.199870954210795, 29.644128178663774 ], [ -95.200724955141709, 29.645226178721376 ], [ -95.200967955022463, 29.645562179605353 ], [ -95.201142954460579, 29.645787179601694 ], [ -95.20163095488958, 29.646473179513073 ], [ -95.202669955898031, 29.647823179835946 ], [ -95.203426956130173, 29.648830180017427 ], [ -95.203758955398328, 29.649266179471955 ], [ -95.203864956043546, 29.649404179874733 ], [ -95.204125955794922, 29.649750179581545 ], [ -95.204542955842442, 29.650298180189861 ], [ -95.205127956175261, 29.651055180617433 ], [ -95.205228955899244, 29.651206179968241 ], [ -95.206446956249664, 29.6528551809044 ], [ -95.206792956350782, 29.653325180804959 ], [ -95.207030957106781, 29.653619181093745 ], [ -95.207356957145308, 29.654020180965258 ], [ -95.208131957228261, 29.65496718103563 ], [ -95.208118956811504, 29.654634180630872 ], [ -95.208098957516071, 29.653653180898022 ], [ -95.208090957577696, 29.653448180431869 ], [ -95.208062956596265, 29.652754180392371 ], [ -95.208041956973432, 29.652231179963479 ], [ -95.208022957508092, 29.651767180010797 ], [ -95.207996956627937, 29.651465180026811 ], [ -95.207990956854459, 29.651131179708489 ], [ -95.207980956577345, 29.650985180066336 ], [ -95.207955957205911, 29.650823179724352 ], [ -95.207956957257039, 29.650559179634463 ], [ -95.207954956729324, 29.650060180080253 ], [ -95.207939956686019, 29.649828179855 ], [ -95.207940956473678, 29.649632179823652 ], [ -95.207927957090604, 29.649137179978396 ], [ -95.207925957319404, 29.649050179335394 ], [ -95.207931957095823, 29.648523179612749 ], [ -95.207909956321842, 29.647650179616686 ], [ -95.207896956907689, 29.647120179650983 ], [ -95.207870956806246, 29.646516178918201 ], [ -95.207864956386175, 29.646178179040447 ], [ -95.207857956585471, 29.645999179031083 ], [ -95.207849956934197, 29.645754178927813 ], [ -95.207834956388325, 29.645342178770981 ], [ -95.207817957019998, 29.64485317924029 ], [ -95.207799957063841, 29.644064178288545 ], [ -95.207797956806147, 29.643997178485353 ], [ -95.20779495638773, 29.643859178312123 ], [ -95.207785956309991, 29.643432178427773 ], [ -95.207742956966371, 29.641908178508764 ], [ -95.207769956229313, 29.641195177699892 ], [ -95.207821956026663, 29.640881177969291 ], [ -95.207895956707574, 29.640573178291763 ], [ -95.208073956331077, 29.64007817821879 ], [ -95.208308956695831, 29.63961617735032 ], [ -95.208488956508319, 29.639311177785498 ], [ -95.20862595677319, 29.639072177431327 ], [ -95.209193956668585, 29.638368177136378 ], [ -95.20958595691728, 29.638030177589393 ], [ -95.21060195711587, 29.637294177021882 ], [ -95.210809956763072, 29.637143176714673 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 517, "Tract": "48201321500", "Area_SqMi": 0.364103429481902, "total_2009": 684, "total_2010": 744, "total_2011": 882, "total_2012": 802, "total_2013": 867, "total_2014": 944, "total_2015": 924, "total_2016": 918, "total_2017": 972, "total_2018": 943, "total_2019": 1310, "total_2020": 895, "age1": 372, "age2": 375, "age3": 172, "earn1": 253, "earn2": 475, "earn3": 191, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 7, "naics_s06": 5, "naics_s07": 463, "naics_s08": 1, "naics_s09": 3, "naics_s10": 77, "naics_s11": 26, "naics_s12": 7, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 119, "naics_s17": 5, "naics_s18": 193, "naics_s19": 3, "naics_s20": 0, "race1": 688, "race2": 120, "race3": 11, "race4": 85, "race5": 0, "race6": 15, "ethnicity1": 453, "ethnicity2": 466, "edu1": 164, "edu2": 143, "edu3": 148, "edu4": 92, "Shape_Length": 15735.49647783631, "Shape_Area": 10150580.444707824, "total_2021": 932, "total_2022": 919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.218752960400877, 29.669976183914294 ], [ -95.219533960503895, 29.669960183533203 ], [ -95.21860596010518, 29.668668182988004 ], [ -95.218019959816687, 29.667927183297952 ], [ -95.217815960471938, 29.667648183617668 ], [ -95.217549960105401, 29.667285183445692 ], [ -95.216909960109177, 29.666538182992532 ], [ -95.216489959414204, 29.665936182475569 ], [ -95.216262960148526, 29.6656081826508 ], [ -95.216145959755735, 29.665445183135851 ], [ -95.215591959531878, 29.664656182213424 ], [ -95.214790959122325, 29.663722182689874 ], [ -95.214573958987145, 29.663394182427442 ], [ -95.214470958740776, 29.663268182730388 ], [ -95.214041959122738, 29.662745181899506 ], [ -95.213299959230113, 29.661767181795724 ], [ -95.213118959105728, 29.661535182254656 ], [ -95.212571958913784, 29.660807181679591 ], [ -95.212346958528656, 29.660497182342262 ], [ -95.211925958536241, 29.659920182178027 ], [ -95.211647958547687, 29.659537181829901 ], [ -95.21143195799462, 29.659277182122935 ], [ -95.210928957829921, 29.658672181993932 ], [ -95.210877958204819, 29.658566181449835 ], [ -95.21013495829493, 29.657604181499131 ], [ -95.20942095720423, 29.656608181514063 ], [ -95.209133957849161, 29.656313181137858 ], [ -95.208634957289547, 29.655640180591377 ], [ -95.208388957640153, 29.655313180616922 ], [ -95.208366957677413, 29.655284180964621 ], [ -95.208131957228261, 29.65496718103563 ], [ -95.208130956899751, 29.655067180735831 ], [ -95.208129956948198, 29.655313180966708 ], [ -95.208122957425431, 29.656377181636209 ], [ -95.208176957609879, 29.658005181250363 ], [ -95.208184957492108, 29.658230181457398 ], [ -95.208200957394752, 29.658722181365231 ], [ -95.208204957239516, 29.658916181296789 ], [ -95.208209956943733, 29.659213182181873 ], [ -95.208214957601612, 29.659522182161027 ], [ -95.208218957898239, 29.6597771822501 ], [ -95.20822795702702, 29.660329182193458 ], [ -95.208240957144881, 29.66108718189945 ], [ -95.208246958011998, 29.661445182247913 ], [ -95.208165957996286, 29.661877182018269 ], [ -95.208106957790775, 29.662185182184622 ], [ -95.20797795752469, 29.662871182589338 ], [ -95.207906957460452, 29.663244182247148 ], [ -95.207863957134592, 29.664253183237058 ], [ -95.207839957155073, 29.664806183261096 ], [ -95.207866957796469, 29.665683182968802 ], [ -95.207873957816787, 29.665890182913873 ], [ -95.207887957591296, 29.666343183351291 ], [ -95.20789595725779, 29.666594183491291 ], [ -95.207906957260406, 29.666941183522823 ], [ -95.207946957366175, 29.667718183800194 ], [ -95.207931957265359, 29.668533183468714 ], [ -95.207963957970634, 29.670094183679698 ], [ -95.210143958015365, 29.670070184324111 ], [ -95.212423959263347, 29.670045183815507 ], [ -95.213314958678879, 29.670031183555441 ], [ -95.214246959619757, 29.670017184095691 ], [ -95.21511895928731, 29.670034183919608 ], [ -95.216030960172347, 29.670008183497227 ], [ -95.21694596010984, 29.670008183394987 ], [ -95.218752960400877, 29.669976183914294 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 518, "Tract": "48201321600", "Area_SqMi": 1.1140425832597805, "total_2009": 912, "total_2010": 1038, "total_2011": 1234, "total_2012": 1229, "total_2013": 1574, "total_2014": 1457, "total_2015": 1493, "total_2016": 1238, "total_2017": 1261, "total_2018": 1333, "total_2019": 1410, "total_2020": 1221, "age1": 376, "age2": 572, "age3": 298, "earn1": 297, "earn2": 424, "earn3": 525, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 442, "naics_s05": 6, "naics_s06": 10, "naics_s07": 352, "naics_s08": 4, "naics_s09": 0, "naics_s10": 19, "naics_s11": 28, "naics_s12": 18, "naics_s13": 0, "naics_s14": 152, "naics_s15": 0, "naics_s16": 50, "naics_s17": 0, "naics_s18": 150, "naics_s19": 15, "naics_s20": 0, "race1": 1017, "race2": 123, "race3": 13, "race4": 75, "race5": 1, "race6": 17, "ethnicity1": 649, "ethnicity2": 597, "edu1": 276, "edu2": 262, "edu3": 201, "edu4": 131, "Shape_Length": 29872.312935311158, "Shape_Area": 31057600.518345557, "total_2021": 1153, "total_2022": 1246 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.230665964161417, 29.675741184390944 ], [ -95.230648963549768, 29.675024184477227 ], [ -95.230631964212634, 29.674490184109377 ], [ -95.230618963928762, 29.673771184215646 ], [ -95.23060996415181, 29.6733651837122 ], [ -95.230556964012962, 29.670822183854295 ], [ -95.230541963560682, 29.669789183598688 ], [ -95.229022962705997, 29.669815182867008 ], [ -95.228546963495788, 29.669823183491541 ], [ -95.22825496283167, 29.669828183473687 ], [ -95.227972962655699, 29.669832183638256 ], [ -95.226080962818202, 29.669864183340938 ], [ -95.225973962582387, 29.669859183577291 ], [ -95.224487962099857, 29.669886183668993 ], [ -95.221508960818923, 29.669934183802308 ], [ -95.219533960503895, 29.669960183533203 ], [ -95.218752960400877, 29.669976183914294 ], [ -95.21694596010984, 29.670008183394987 ], [ -95.216030960172347, 29.670008183497227 ], [ -95.21511895928731, 29.670034183919608 ], [ -95.214246959619757, 29.670017184095691 ], [ -95.213314958678879, 29.670031183555441 ], [ -95.212423959263347, 29.670045183815507 ], [ -95.210143958015365, 29.670070184324111 ], [ -95.207963957970634, 29.670094183679698 ], [ -95.207970958203077, 29.67042718432495 ], [ -95.207983958142634, 29.671034183793179 ], [ -95.207985957840194, 29.67112818459491 ], [ -95.207965957878599, 29.672150184491681 ], [ -95.2079749583379, 29.672567184425279 ], [ -95.208005958351833, 29.673901184697765 ], [ -95.208013957504221, 29.674176185112632 ], [ -95.208246957604985, 29.674140184901908 ], [ -95.208391957622297, 29.674173185242296 ], [ -95.208542957917587, 29.67423818459956 ], [ -95.208750958689336, 29.674376184727269 ], [ -95.209014958681635, 29.674634184521732 ], [ -95.209568958918368, 29.67532718486742 ], [ -95.209902958832728, 29.676086185251393 ], [ -95.210016959098695, 29.676322184966967 ], [ -95.210030958195773, 29.676357185462578 ], [ -95.21041395885031, 29.677345185470259 ], [ -95.210640958410124, 29.677746185709182 ], [ -95.210917958558838, 29.678021185430495 ], [ -95.211395959300845, 29.67842218604634 ], [ -95.211603959450045, 29.67852718572524 ], [ -95.211811959173119, 29.678615185840357 ], [ -95.212239958911127, 29.678675185913779 ], [ -95.212674959122808, 29.678703186058247 ], [ -95.21294495949229, 29.67875718586199 ], [ -95.213259959951188, 29.67885118569945 ], [ -95.213434959366651, 29.678979185683243 ], [ -95.213681959931861, 29.679159185694484 ], [ -95.213814959488928, 29.679346185579533 ], [ -95.214046959307382, 29.679864185603922 ], [ -95.214097959388013, 29.679978185736182 ], [ -95.214368960401956, 29.680671185906618 ], [ -95.21453296005285, 29.681061185810218 ], [ -95.214841960331583, 29.681600186497086 ], [ -95.214910960079862, 29.681688186622587 ], [ -95.215030960435826, 29.681930186060651 ], [ -95.215162960358171, 29.682155185970551 ], [ -95.215357960032108, 29.682402186681003 ], [ -95.215521960599418, 29.682562186541805 ], [ -95.215603960502875, 29.682677186757576 ], [ -95.215656960317418, 29.6830041859806 ], [ -95.215666960480547, 29.683068186434923 ], [ -95.215748960822367, 29.683343186956616 ], [ -95.215855960189884, 29.683436186470242 ], [ -95.216107960078958, 29.683810186890639 ], [ -95.216164960926648, 29.684008186928157 ], [ -95.216151960389325, 29.684272186346352 ], [ -95.216076960775595, 29.684794186554008 ], [ -95.216089960719998, 29.685119186477046 ], [ -95.216170960695536, 29.685283186590379 ], [ -95.216422960948435, 29.685569186924472 ], [ -95.216530960477854, 29.685839187283495 ], [ -95.216555960792959, 29.685998186955715 ], [ -95.21658696109354, 29.68611418708786 ], [ -95.216675960394554, 29.686350187368319 ], [ -95.216851960784808, 29.686581187535673 ], [ -95.217141961053798, 29.686834186734352 ], [ -95.217254960501819, 29.686971186980749 ], [ -95.217368961034339, 29.687285187648406 ], [ -95.217399960733729, 29.687780186991926 ], [ -95.217418960984361, 29.687912187082809 ], [ -95.217431960540111, 29.688307187093528 ], [ -95.217349961537849, 29.688775187450819 ], [ -95.217343960768076, 29.688951187577967 ], [ -95.217368960757867, 29.689121187464071 ], [ -95.217469960629856, 29.690155188229749 ], [ -95.217538961446493, 29.690745187827996 ], [ -95.218000961670612, 29.690727188034504 ], [ -95.218449961024504, 29.69070618805091 ], [ -95.218707961851962, 29.690699187825661 ], [ -95.219081962044285, 29.690704187461378 ], [ -95.219429962053212, 29.690687187467464 ], [ -95.219678961928423, 29.690676187654468 ], [ -95.221201961964098, 29.690644187836529 ], [ -95.221618962299587, 29.690634187385882 ], [ -95.221616961999217, 29.690021187809684 ], [ -95.221615961904362, 29.689556187513364 ], [ -95.221611961868859, 29.68830718752497 ], [ -95.221609962539162, 29.688061187668364 ], [ -95.2215989623148, 29.686645186736506 ], [ -95.221565961919282, 29.684934186196426 ], [ -95.221548961421121, 29.684034186308491 ], [ -95.22153696211474, 29.683358186015518 ], [ -95.222875961704219, 29.683358186642607 ], [ -95.224714962719062, 29.683340186316219 ], [ -95.225022962330655, 29.683369186456002 ], [ -95.225401963210558, 29.683363185972606 ], [ -95.226059962582312, 29.683354186482948 ], [ -95.227027963236651, 29.683342186417541 ], [ -95.227991963252578, 29.68329418624754 ], [ -95.229520963849367, 29.68332318583424 ], [ -95.229030963823618, 29.682609185916185 ], [ -95.22848396319749, 29.681847185622196 ], [ -95.228235963537756, 29.681522185475792 ], [ -95.227682963531137, 29.680715185961162 ], [ -95.227296963594952, 29.680126185518429 ], [ -95.22722896342998, 29.680030185060239 ], [ -95.226710963020651, 29.679344185620874 ], [ -95.22658796291303, 29.67918218490583 ], [ -95.225584962557576, 29.677796185439899 ], [ -95.224629961995348, 29.676524185125832 ], [ -95.22414396254679, 29.675882184285523 ], [ -95.224634961942456, 29.675854184791845 ], [ -95.225100962407055, 29.675853184975839 ], [ -95.225710962796725, 29.675845184917435 ], [ -95.226108963197163, 29.675829184980124 ], [ -95.226548962596667, 29.675819184567917 ], [ -95.227384963359228, 29.675812184526599 ], [ -95.228041963256672, 29.675798184427514 ], [ -95.228296963425237, 29.675791184249999 ], [ -95.228366963617873, 29.675790184566932 ], [ -95.228429963363951, 29.675789184426282 ], [ -95.228575963273386, 29.675786184870837 ], [ -95.229011963717866, 29.67577718490536 ], [ -95.230665964161417, 29.675741184390944 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 519, "Tract": "48201331100", "Area_SqMi": 1.2473224387879143, "total_2009": 1396, "total_2010": 1554, "total_2011": 1707, "total_2012": 1178, "total_2013": 1168, "total_2014": 1286, "total_2015": 1226, "total_2016": 940, "total_2017": 1200, "total_2018": 1211, "total_2019": 1940, "total_2020": 1663, "age1": 201, "age2": 712, "age3": 452, "earn1": 87, "earn2": 278, "earn3": 1000, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 70, "naics_s05": 1014, "naics_s06": 86, "naics_s07": 12, "naics_s08": 35, "naics_s09": 0, "naics_s10": 4, "naics_s11": 0, "naics_s12": 12, "naics_s13": 0, "naics_s14": 18, "naics_s15": 0, "naics_s16": 56, "naics_s17": 0, "naics_s18": 45, "naics_s19": 13, "naics_s20": 0, "race1": 936, "race2": 279, "race3": 9, "race4": 118, "race5": 7, "race6": 16, "ethnicity1": 709, "ethnicity2": 656, "edu1": 396, "edu2": 286, "edu3": 320, "edu4": 162, "Shape_Length": 25994.444475676177, "Shape_Area": 34773214.779717423, "total_2021": 1347, "total_2022": 1365 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.383277002415838, 29.668136177778784 ], [ -95.383400002334312, 29.667899177887463 ], [ -95.382859002247855, 29.667902177289104 ], [ -95.382297002101765, 29.66790517750389 ], [ -95.381513002432271, 29.667953177633073 ], [ -95.381049002063776, 29.668072178083026 ], [ -95.380460002007936, 29.668222177943221 ], [ -95.378371001491843, 29.668952177635433 ], [ -95.377831000810971, 29.669110177903924 ], [ -95.376982001379389, 29.669277177993067 ], [ -95.376117001007344, 29.669324177850413 ], [ -95.375344000484162, 29.669326178151536 ], [ -95.375273000817359, 29.669325178336379 ], [ -95.374442000091051, 29.669324178570083 ], [ -95.373570999858885, 29.669356178308991 ], [ -95.372769000352832, 29.669368177964195 ], [ -95.372076999352203, 29.669383178174318 ], [ -95.371944999372431, 29.669378178302871 ], [ -95.370519998941973, 29.669399178270677 ], [ -95.370316999261959, 29.669398178020369 ], [ -95.369488998976848, 29.669406178137681 ], [ -95.368676998968667, 29.669441178693603 ], [ -95.368112998846527, 29.669435178400864 ], [ -95.366033998675093, 29.669459179001436 ], [ -95.364341997821327, 29.669482178366852 ], [ -95.363888997373564, 29.669495178506569 ], [ -95.362283997090486, 29.669519178907585 ], [ -95.362057997559731, 29.669507179185317 ], [ -95.36137899676784, 29.669521178485763 ], [ -95.360336997310128, 29.669543179092816 ], [ -95.359382996768645, 29.669557179271209 ], [ -95.358986996739873, 29.669562178725108 ], [ -95.357481996293572, 29.669569178926913 ], [ -95.356949996401781, 29.669483178925237 ], [ -95.355721995949182, 29.669099178418843 ], [ -95.355721995166633, 29.669462178752266 ], [ -95.355750995869343, 29.670244179232256 ], [ -95.355778995262057, 29.671047179575503 ], [ -95.355786995773514, 29.671786179771718 ], [ -95.355807995370782, 29.672539179648822 ], [ -95.35582299573214, 29.673328179671081 ], [ -95.355839995651849, 29.67411117960874 ], [ -95.355855995683214, 29.674559179962042 ], [ -95.35585899623689, 29.674954179707449 ], [ -95.355880996210686, 29.675549180297242 ], [ -95.355898996206207, 29.676376180631301 ], [ -95.355917995705681, 29.677113180912198 ], [ -95.355948996338554, 29.678685180608785 ], [ -95.355942996074006, 29.678822180975104 ], [ -95.355937996142629, 29.679039180535888 ], [ -95.355936996182308, 29.679894180726457 ], [ -95.355962996659912, 29.680369181183224 ], [ -95.35596899581526, 29.680741181080379 ], [ -95.355971995945652, 29.680926181301995 ], [ -95.356480996503805, 29.680818181625138 ], [ -95.357478996893576, 29.680669181515398 ], [ -95.358283997072363, 29.680592181211427 ], [ -95.358862996905174, 29.68057518091284 ], [ -95.359685997527663, 29.680551181064502 ], [ -95.36055099761748, 29.680556181114646 ], [ -95.362234998186139, 29.680693181128547 ], [ -95.362594998399203, 29.680722181061647 ], [ -95.363211998343814, 29.680772180773101 ], [ -95.363875998364222, 29.680826181077332 ], [ -95.366655998511163, 29.680979181225464 ], [ -95.36705299906906, 29.680976180905347 ], [ -95.370914999839826, 29.680944181216375 ], [ -95.371667000722979, 29.680937181169377 ], [ -95.373863001076998, 29.680891180917669 ], [ -95.374546000505788, 29.68087218043328 ], [ -95.375512001103985, 29.680844180656518 ], [ -95.376421001577157, 29.680818180630048 ], [ -95.379281002227756, 29.680770180854566 ], [ -95.380767002517985, 29.680735180098644 ], [ -95.380983002668671, 29.680730180268252 ], [ -95.381130002350616, 29.680722180419359 ], [ -95.381211002637883, 29.680721180574974 ], [ -95.381220003163577, 29.680684180044302 ], [ -95.38124800262564, 29.680575180489253 ], [ -95.381260002324325, 29.680530180198403 ], [ -95.38129000233063, 29.680413180062111 ], [ -95.381367003116978, 29.680116180626694 ], [ -95.381550002313915, 29.679188179916473 ], [ -95.381633003072736, 29.678629179705649 ], [ -95.381714002307149, 29.677987179509213 ], [ -95.38177300236238, 29.675895179468359 ], [ -95.381785002700155, 29.675444178891446 ], [ -95.381790002269966, 29.675227179651372 ], [ -95.381797002431568, 29.674970178756475 ], [ -95.3818030021705, 29.674853178805328 ], [ -95.381896002059008, 29.673149178947739 ], [ -95.38188700233286, 29.672120178405102 ], [ -95.381940002911747, 29.671749178326792 ], [ -95.382045002398684, 29.671202178781236 ], [ -95.382104002407175, 29.67093017841427 ], [ -95.382222002447534, 29.670504178384164 ], [ -95.382390002337459, 29.670025177781 ], [ -95.382779003059284, 29.66909117782733 ], [ -95.382995002191464, 29.668675178224387 ], [ -95.383147003042012, 29.668385177413427 ], [ -95.383277002415838, 29.668136177778784 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 520, "Tract": "48201331200", "Area_SqMi": 1.3688360199020437, "total_2009": 486, "total_2010": 521, "total_2011": 494, "total_2012": 470, "total_2013": 510, "total_2014": 458, "total_2015": 396, "total_2016": 429, "total_2017": 607, "total_2018": 644, "total_2019": 596, "total_2020": 542, "age1": 165, "age2": 270, "age3": 121, "earn1": 254, "earn2": 226, "earn3": 76, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 1, "naics_s06": 0, "naics_s07": 75, "naics_s08": 0, "naics_s09": 2, "naics_s10": 17, "naics_s11": 10, "naics_s12": 6, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 79, "naics_s17": 0, "naics_s18": 339, "naics_s19": 13, "naics_s20": 0, "race1": 229, "race2": 256, "race3": 4, "race4": 57, "race5": 0, "race6": 10, "ethnicity1": 430, "ethnicity2": 126, "edu1": 96, "edu2": 104, "edu3": 133, "edu4": 58, "Shape_Length": 26934.755986540789, "Shape_Area": 38160805.448606767, "total_2021": 538, "total_2022": 556 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.387500003675171, 29.657778175438573 ], [ -95.387521003306063, 29.657631175442965 ], [ -95.387005002982065, 29.657630175351649 ], [ -95.386746002995181, 29.657629175466354 ], [ -95.386530002923507, 29.657633175897438 ], [ -95.385984003273336, 29.65766317544254 ], [ -95.385362002811078, 29.657722175643684 ], [ -95.384990002980942, 29.657783175787518 ], [ -95.384827002137072, 29.657786175658185 ], [ -95.384469002920866, 29.657792175320733 ], [ -95.383739002252725, 29.657819175295604 ], [ -95.382680002024728, 29.657858175451473 ], [ -95.381576001992357, 29.6578991761357 ], [ -95.380840001106705, 29.657918175451766 ], [ -95.379265000928271, 29.657960175943117 ], [ -95.378729001029456, 29.657970175499841 ], [ -95.376307000228124, 29.658017176294631 ], [ -95.375618000062033, 29.658035176132689 ], [ -95.375345000431778, 29.658150176082778 ], [ -95.372473999090019, 29.658225176216384 ], [ -95.371991999318425, 29.658225176059851 ], [ -95.370927999484607, 29.658230176533028 ], [ -95.370300999196047, 29.658242176049569 ], [ -95.369823999199681, 29.658237176380943 ], [ -95.36922399845848, 29.658236175851808 ], [ -95.368696998688478, 29.658246176330845 ], [ -95.368276998257343, 29.658253176007506 ], [ -95.368019998563412, 29.658264176534072 ], [ -95.365906997529294, 29.658295176653059 ], [ -95.36491299766827, 29.658322176045068 ], [ -95.364435997795113, 29.658315176682386 ], [ -95.364151997455821, 29.65831317609624 ], [ -95.363965996901399, 29.658317176011938 ], [ -95.363654997439909, 29.658318176321302 ], [ -95.361826997175655, 29.658350176860662 ], [ -95.35860299541568, 29.658376176897104 ], [ -95.355525995382749, 29.658442177049238 ], [ -95.355527995655152, 29.659164176554743 ], [ -95.355533995636932, 29.659858176740716 ], [ -95.355537994831181, 29.660580177151981 ], [ -95.355564995575051, 29.661310176861601 ], [ -95.355574995135314, 29.662178177713351 ], [ -95.355594995632259, 29.66325117785539 ], [ -95.355629995072974, 29.664365178324065 ], [ -95.355664995236012, 29.665338177872691 ], [ -95.355674995818362, 29.66603717844723 ], [ -95.355685995386565, 29.666741178119434 ], [ -95.355697995349686, 29.667485178814719 ], [ -95.355721995949182, 29.669099178418843 ], [ -95.356949996401781, 29.669483178925237 ], [ -95.357481996293572, 29.669569178926913 ], [ -95.358986996739873, 29.669562178725108 ], [ -95.359382996768645, 29.669557179271209 ], [ -95.360336997310128, 29.669543179092816 ], [ -95.36137899676784, 29.669521178485763 ], [ -95.362057997559731, 29.669507179185317 ], [ -95.362283997090486, 29.669519178907585 ], [ -95.363888997373564, 29.669495178506569 ], [ -95.364341997821327, 29.669482178366852 ], [ -95.366033998675093, 29.669459179001436 ], [ -95.368112998846527, 29.669435178400864 ], [ -95.368676998968667, 29.669441178693603 ], [ -95.369488998976848, 29.669406178137681 ], [ -95.370316999261959, 29.669398178020369 ], [ -95.370519998941973, 29.669399178270677 ], [ -95.371944999372431, 29.669378178302871 ], [ -95.372076999352203, 29.669383178174318 ], [ -95.372769000352832, 29.669368177964195 ], [ -95.373570999858885, 29.669356178308991 ], [ -95.374442000091051, 29.669324178570083 ], [ -95.375273000817359, 29.669325178336379 ], [ -95.375344000484162, 29.669326178151536 ], [ -95.376117001007344, 29.669324177850413 ], [ -95.376982001379389, 29.669277177993067 ], [ -95.377831000810971, 29.669110177903924 ], [ -95.378371001491843, 29.668952177635433 ], [ -95.380460002007936, 29.668222177943221 ], [ -95.381049002063776, 29.668072178083026 ], [ -95.381513002432271, 29.667953177633073 ], [ -95.382297002101765, 29.66790517750389 ], [ -95.382859002247855, 29.667902177289104 ], [ -95.383400002334312, 29.667899177887463 ], [ -95.383485002193993, 29.667736178024668 ], [ -95.383566002608504, 29.667581177987294 ], [ -95.385242002979808, 29.664372176739249 ], [ -95.385848003064993, 29.663274176995667 ], [ -95.386141002876911, 29.662687176576821 ], [ -95.386473003287122, 29.661909176435433 ], [ -95.386675003192977, 29.661238175982994 ], [ -95.38683000338213, 29.660766175660896 ], [ -95.387008003536693, 29.66020417614827 ], [ -95.387172003718916, 29.659603176177736 ], [ -95.387300002838543, 29.658987175695561 ], [ -95.387416003041679, 29.658381175238006 ], [ -95.387500003675171, 29.657778175438573 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 521, "Tract": "48201331300", "Area_SqMi": 1.7614473779480768, "total_2009": 56, "total_2010": 28, "total_2011": 64, "total_2012": 202, "total_2013": 199, "total_2014": 240, "total_2015": 291, "total_2016": 356, "total_2017": 609, "total_2018": 725, "total_2019": 544, "total_2020": 445, "age1": 159, "age2": 404, "age3": 131, "earn1": 66, "earn2": 195, "earn3": 433, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 206, "naics_s07": 30, "naics_s08": 1, "naics_s09": 6, "naics_s10": 0, "naics_s11": 19, "naics_s12": 57, "naics_s13": 0, "naics_s14": 348, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 21, "naics_s19": 1, "naics_s20": 0, "race1": 414, "race2": 208, "race3": 3, "race4": 55, "race5": 3, "race6": 11, "ethnicity1": 492, "ethnicity2": 202, "edu1": 115, "edu2": 135, "edu3": 165, "edu4": 120, "Shape_Length": 30932.586784794959, "Shape_Area": 49106138.149875194, "total_2021": 534, "total_2022": 694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.387676002980086, 29.65576717547512 ], [ -95.387642003406455, 29.65294817490782 ], [ -95.387612002627705, 29.651490174052014 ], [ -95.387599002534387, 29.650408174243633 ], [ -95.387586003363538, 29.649712173743506 ], [ -95.387517002759282, 29.646009172820108 ], [ -95.387513002505045, 29.645260172884569 ], [ -95.387501002344621, 29.644618172953166 ], [ -95.387498002966723, 29.6441851728149 ], [ -95.38748700300772, 29.64364017297758 ], [ -95.387483002887762, 29.643479172257695 ], [ -95.387482002855933, 29.643430172528216 ], [ -95.387403002343831, 29.639653172043367 ], [ -95.387395002115952, 29.638488171506832 ], [ -95.387354002565672, 29.636163170715218 ], [ -95.387288002529871, 29.63230717021171 ], [ -95.387287002193602, 29.632217170041329 ], [ -95.386753001709238, 29.63189117058792 ], [ -95.386554001405315, 29.631769170382878 ], [ -95.385365001641134, 29.630918170183737 ], [ -95.385226001291755, 29.630786169954867 ], [ -95.384894001029139, 29.630096169907528 ], [ -95.384700001647388, 29.629866169975259 ], [ -95.384472001560482, 29.629718169838725 ], [ -95.384131001030269, 29.629602169419329 ], [ -95.383154001417324, 29.629370170163057 ], [ -95.382386000347893, 29.629280169384831 ], [ -95.382063000991565, 29.629296170081997 ], [ -95.381422001006882, 29.629414169520633 ], [ -95.380879000126484, 29.629572169831214 ], [ -95.380155000521754, 29.629878169585492 ], [ -95.379966000108254, 29.630011170165044 ], [ -95.379901000072863, 29.630142170210974 ], [ -95.379866999772887, 29.630681170160848 ], [ -95.379924000583074, 29.631460170414034 ], [ -95.379894000201347, 29.631636170513378 ], [ -95.379728000067942, 29.631790170412529 ], [ -95.378765000033169, 29.632247170436148 ], [ -95.378229000073759, 29.632501170884019 ], [ -95.378080999560453, 29.632664171069106 ], [ -95.377845999514832, 29.634819170673147 ], [ -95.377983000193382, 29.635672171148915 ], [ -95.377917000303469, 29.635986171573503 ], [ -95.377821999513898, 29.636101171694087 ], [ -95.37756199956921, 29.636270171370096 ], [ -95.376684999532159, 29.636455171749557 ], [ -95.376422999460772, 29.636552171302494 ], [ -95.3761299999491, 29.636800171324559 ], [ -95.375498999007718, 29.637582171775886 ], [ -95.375488999214184, 29.637758171839025 ], [ -95.375602998929494, 29.638296172233002 ], [ -95.375622998915915, 29.638392171947444 ], [ -95.375926999914171, 29.639284172345704 ], [ -95.375955999890692, 29.639568172346401 ], [ -95.375866999719435, 29.639917171873247 ], [ -95.375696999756514, 29.640240171993355 ], [ -95.375558998937862, 29.640371172612497 ], [ -95.375174998905806, 29.640480171992529 ], [ -95.374152998953861, 29.640339172590192 ], [ -95.373763998714452, 29.640438172369127 ], [ -95.373563998607807, 29.640614172126224 ], [ -95.372859999326792, 29.641709173102281 ], [ -95.372620998790296, 29.641903173109327 ], [ -95.371254998560673, 29.642144172974746 ], [ -95.371024998446117, 29.64221917286568 ], [ -95.370848998220964, 29.642348172559217 ], [ -95.370717998502826, 29.642569172671887 ], [ -95.370462998127024, 29.643321173269953 ], [ -95.370346997768721, 29.64346817342448 ], [ -95.370008998539362, 29.643725173123677 ], [ -95.368905998334156, 29.644273172998055 ], [ -95.368369997602912, 29.644324173788203 ], [ -95.368371997765024, 29.644403173195737 ], [ -95.368383998024797, 29.645173173848683 ], [ -95.368432998200305, 29.646094173529907 ], [ -95.368440998080828, 29.646466174107616 ], [ -95.368443997473264, 29.646872173433412 ], [ -95.368444997559763, 29.647204174316762 ], [ -95.368438997807488, 29.647630174104968 ], [ -95.368451997678861, 29.647987173836274 ], [ -95.368468998295214, 29.648414174024879 ], [ -95.368479998459819, 29.648791174560351 ], [ -95.368491998284682, 29.649187174084751 ], [ -95.368516998311961, 29.649938174553842 ], [ -95.368552998213232, 29.651340174924158 ], [ -95.36854999827834, 29.651645174788129 ], [ -95.368556998262932, 29.652206175137181 ], [ -95.368555998143478, 29.653063175066521 ], [ -95.36859499819721, 29.653926175184719 ], [ -95.36860699829532, 29.654199175155906 ], [ -95.368602998595605, 29.654779175367931 ], [ -95.368609998342251, 29.65514617594263 ], [ -95.368617998877937, 29.655620175319296 ], [ -95.368580998288664, 29.656137175748849 ], [ -95.368504998755924, 29.656445175845501 ], [ -95.368431997873216, 29.656651175461604 ], [ -95.368248998346573, 29.657042176140056 ], [ -95.368160998799681, 29.657220176091219 ], [ -95.368053998702038, 29.657623176248425 ], [ -95.368042998322252, 29.657784176099899 ], [ -95.368033998805501, 29.658027176559443 ], [ -95.368019998563412, 29.658264176534072 ], [ -95.368276998257343, 29.658253176007506 ], [ -95.368696998688478, 29.658246176330845 ], [ -95.36922399845848, 29.658236175851808 ], [ -95.369823999199681, 29.658237176380943 ], [ -95.370300999196047, 29.658242176049569 ], [ -95.370927999484607, 29.658230176533028 ], [ -95.371991999318425, 29.658225176059851 ], [ -95.372473999090019, 29.658225176216384 ], [ -95.375345000431778, 29.658150176082778 ], [ -95.375618000062033, 29.658035176132689 ], [ -95.376307000228124, 29.658017176294631 ], [ -95.378729001029456, 29.657970175499841 ], [ -95.379265000928271, 29.657960175943117 ], [ -95.380840001106705, 29.657918175451766 ], [ -95.381576001992357, 29.6578991761357 ], [ -95.382680002024728, 29.657858175451473 ], [ -95.383739002252725, 29.657819175295604 ], [ -95.384469002920866, 29.657792175320733 ], [ -95.384827002137072, 29.657786175658185 ], [ -95.384990002980942, 29.657783175787518 ], [ -95.385362002811078, 29.657722175643684 ], [ -95.385984003273336, 29.65766317544254 ], [ -95.386530002923507, 29.657633175897438 ], [ -95.386746002995181, 29.657629175466354 ], [ -95.387005002982065, 29.657630175351649 ], [ -95.387521003306063, 29.657631175442965 ], [ -95.387588003491771, 29.657151175390091 ], [ -95.387629003149755, 29.656593175598431 ], [ -95.387676002980086, 29.65576717547512 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 522, "Tract": "48201331400", "Area_SqMi": 0.60638695330392833, "total_2009": 198, "total_2010": 202, "total_2011": 261, "total_2012": 261, "total_2013": 278, "total_2014": 241, "total_2015": 291, "total_2016": 289, "total_2017": 314, "total_2018": 292, "total_2019": 293, "total_2020": 302, "age1": 104, "age2": 149, "age3": 85, "earn1": 81, "earn2": 132, "earn3": 125, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 176, "naics_s08": 0, "naics_s09": 5, "naics_s10": 0, "naics_s11": 78, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 31, "naics_s16": 8, "naics_s17": 0, "naics_s18": 40, "naics_s19": 0, "naics_s20": 0, "race1": 203, "race2": 100, "race3": 4, "race4": 26, "race5": 0, "race6": 5, "ethnicity1": 209, "ethnicity2": 129, "edu1": 69, "edu2": 59, "edu3": 60, "edu4": 46, "Shape_Length": 17281.297567241927, "Shape_Area": 16905030.416470598, "total_2021": 293, "total_2022": 338 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.368617998877937, 29.655620175319296 ], [ -95.368609998342251, 29.65514617594263 ], [ -95.368602998595605, 29.654779175367931 ], [ -95.36860699829532, 29.654199175155906 ], [ -95.36859499819721, 29.653926175184719 ], [ -95.368555998143478, 29.653063175066521 ], [ -95.368556998262932, 29.652206175137181 ], [ -95.36854999827834, 29.651645174788129 ], [ -95.368552998213232, 29.651340174924158 ], [ -95.368516998311961, 29.649938174553842 ], [ -95.368491998284682, 29.649187174084751 ], [ -95.368479998459819, 29.648791174560351 ], [ -95.368468998295214, 29.648414174024879 ], [ -95.368451997678861, 29.647987173836274 ], [ -95.368438997807488, 29.647630174104968 ], [ -95.368444997559763, 29.647204174316762 ], [ -95.368443997473264, 29.646872173433412 ], [ -95.368440998080828, 29.646466174107616 ], [ -95.368432998200305, 29.646094173529907 ], [ -95.368383998024797, 29.645173173848683 ], [ -95.368371997765024, 29.644403173195737 ], [ -95.368369997602912, 29.644324173788203 ], [ -95.367765997966629, 29.644382173460002 ], [ -95.367467997926099, 29.644490173183154 ], [ -95.367321997452635, 29.644783173537927 ], [ -95.367213997683777, 29.645240174030132 ], [ -95.367163997073575, 29.645451173927 ], [ -95.367031997964389, 29.645673173437189 ], [ -95.366791997644995, 29.645868173459881 ], [ -95.365822997023884, 29.646449174290414 ], [ -95.365594997254036, 29.646528174164775 ], [ -95.365312996883091, 29.646552173799712 ], [ -95.364168996545345, 29.64648217397469 ], [ -95.364059997222085, 29.646487173815739 ], [ -95.363944996763195, 29.646563173589264 ], [ -95.363817996618209, 29.646647173721888 ], [ -95.363284996489284, 29.646644173643967 ], [ -95.360092995745447, 29.647288174486256 ], [ -95.359849995990487, 29.647417174163017 ], [ -95.359607996120602, 29.64782717457954 ], [ -95.35936899554045, 29.648019174806109 ], [ -95.359180995166341, 29.648087174792686 ], [ -95.358852995152589, 29.648097174448075 ], [ -95.357974995636084, 29.647954174437569 ], [ -95.357609995138759, 29.647937174688451 ], [ -95.356638994648577, 29.648061174605484 ], [ -95.356378994905683, 29.648169174442909 ], [ -95.356292994875133, 29.648220174477224 ], [ -95.356292995087458, 29.648290174977319 ], [ -95.356300994584657, 29.649109174394265 ], [ -95.356256994728994, 29.649439174891555 ], [ -95.3562139954185, 29.649848174959118 ], [ -95.356148995441472, 29.650104174772743 ], [ -95.356066994479747, 29.650505174838024 ], [ -95.35584099487663, 29.651120175091101 ], [ -95.355548994655635, 29.652267175273671 ], [ -95.355480994962193, 29.652642175725042 ], [ -95.35541499455951, 29.653491175479051 ], [ -95.355416995132884, 29.654001176111073 ], [ -95.355420995368746, 29.654249175990898 ], [ -95.355469994590507, 29.655926175778987 ], [ -95.355478994698558, 29.656668175972012 ], [ -95.355488994598929, 29.657130176557327 ], [ -95.355495994785585, 29.657608176915758 ], [ -95.355525995382749, 29.658442177049238 ], [ -95.35860299541568, 29.658376176897104 ], [ -95.361826997175655, 29.658350176860662 ], [ -95.363654997439909, 29.658318176321302 ], [ -95.363965996901399, 29.658317176011938 ], [ -95.364151997455821, 29.65831317609624 ], [ -95.364435997795113, 29.658315176682386 ], [ -95.36491299766827, 29.658322176045068 ], [ -95.365906997529294, 29.658295176653059 ], [ -95.368019998563412, 29.658264176534072 ], [ -95.368033998805501, 29.658027176559443 ], [ -95.368042998322252, 29.657784176099899 ], [ -95.368053998702038, 29.657623176248425 ], [ -95.368160998799681, 29.657220176091219 ], [ -95.368248998346573, 29.657042176140056 ], [ -95.368431997873216, 29.656651175461604 ], [ -95.368504998755924, 29.656445175845501 ], [ -95.368580998288664, 29.656137175748849 ], [ -95.368617998877937, 29.655620175319296 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 523, "Tract": "48201321700", "Area_SqMi": 0.7472959507098913, "total_2009": 314, "total_2010": 289, "total_2011": 315, "total_2012": 271, "total_2013": 399, "total_2014": 330, "total_2015": 301, "total_2016": 264, "total_2017": 189, "total_2018": 247, "total_2019": 277, "total_2020": 299, "age1": 60, "age2": 132, "age3": 66, "earn1": 51, "earn2": 96, "earn3": 111, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 69, "naics_s07": 97, "naics_s08": 0, "naics_s09": 0, "naics_s10": 9, "naics_s11": 0, "naics_s12": 7, "naics_s13": 0, "naics_s14": 22, "naics_s15": 0, "naics_s16": 23, "naics_s17": 1, "naics_s18": 18, "naics_s19": 7, "naics_s20": 0, "race1": 205, "race2": 33, "race3": 1, "race4": 19, "race5": 0, "race6": 0, "ethnicity1": 131, "ethnicity2": 127, "edu1": 56, "edu2": 47, "edu3": 50, "edu4": 45, "Shape_Length": 20944.966737525876, "Shape_Area": 20833332.095989518, "total_2021": 244, "total_2022": 258 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.246469968315907, 29.679811184652486 ], [ -95.246456967756629, 29.679597184284951 ], [ -95.24638096815633, 29.679484184658214 ], [ -95.246334968256136, 29.679414184732771 ], [ -95.245543967916376, 29.678912184362446 ], [ -95.245495968167219, 29.678740184255126 ], [ -95.245328967814586, 29.678132184670812 ], [ -95.245219967599994, 29.677985184138556 ], [ -95.24519696795285, 29.677955184552999 ], [ -95.244799967281281, 29.67760818400561 ], [ -95.244698967963075, 29.677510183918056 ], [ -95.244648967910678, 29.67735018396877 ], [ -95.244591967059719, 29.67693218423123 ], [ -95.244496967197335, 29.676795184240024 ], [ -95.244402967505366, 29.676690183764812 ], [ -95.244282967476806, 29.676624184226469 ], [ -95.244080967824601, 29.676586183851011 ], [ -95.243579966881754, 29.67661818423089 ], [ -95.243363967256599, 29.676614184392999 ], [ -95.24251396708037, 29.67649318393671 ], [ -95.242179966651094, 29.676416184079002 ], [ -95.241845966801677, 29.676411184176498 ], [ -95.241751966496906, 29.676428184067671 ], [ -95.241474966663304, 29.676505183914948 ], [ -95.241335967057083, 29.676565184078907 ], [ -95.241184967014135, 29.676587183971968 ], [ -95.241083966800645, 29.676554183910724 ], [ -95.240957966886398, 29.676477183860182 ], [ -95.240882966115379, 29.67641718394961 ], [ -95.240705966381128, 29.67617518450238 ], [ -95.240548966788651, 29.675895184084194 ], [ -95.240352966862105, 29.675664183673874 ], [ -95.240132965986945, 29.675466183905836 ], [ -95.240019965921348, 29.675340183716674 ], [ -95.239955966695121, 29.675219184068698 ], [ -95.239905966242901, 29.675087184340477 ], [ -95.239842966395301, 29.674768184161454 ], [ -95.239754966187547, 29.674559183952137 ], [ -95.239709966504975, 29.674411183955659 ], [ -95.239520965727408, 29.674075183939554 ], [ -95.239344966201969, 29.673630183469765 ], [ -95.239312966522476, 29.673586183337633 ], [ -95.239211965603417, 29.673405183595346 ], [ -95.239136965810047, 29.673328183486902 ], [ -95.239035966302609, 29.673284183934022 ], [ -95.23873396563441, 29.673168183749443 ], [ -95.238317966064557, 29.673090183438532 ], [ -95.237864965759741, 29.673004183863775 ], [ -95.237669965087989, 29.672960183861477 ], [ -95.237536965045862, 29.672910183449417 ], [ -95.237502965114871, 29.672889183903816 ], [ -95.237341965257045, 29.672790183896065 ], [ -95.236806965662595, 29.672185183339607 ], [ -95.236671964926671, 29.672074183133706 ], [ -95.236447964931628, 29.671888183314611 ], [ -95.23633396535125, 29.671756183677914 ], [ -95.236226965100656, 29.671597183552212 ], [ -95.236114965332035, 29.671352183203208 ], [ -95.236012965313222, 29.671129183345872 ], [ -95.236018964870027, 29.67096518325085 ], [ -95.235993964697101, 29.670871183247723 ], [ -95.235842965452804, 29.670662183360143 ], [ -95.235772965241196, 29.670547183613223 ], [ -95.235684965385815, 29.67043718338611 ], [ -95.235577964944923, 29.670343183037804 ], [ -95.235543964903869, 29.670318182986097 ], [ -95.235503964739664, 29.670288182836913 ], [ -95.234137964682475, 29.669746182998797 ], [ -95.233531964865676, 29.669754183115046 ], [ -95.233391963915523, 29.669763182785228 ], [ -95.233164964766232, 29.669918183346102 ], [ -95.232876964390925, 29.66984018335204 ], [ -95.232663964550156, 29.669778183573104 ], [ -95.232412964380188, 29.669757183531456 ], [ -95.230541963560682, 29.669789183598688 ], [ -95.230556964012962, 29.670822183854295 ], [ -95.23060996415181, 29.6733651837122 ], [ -95.230618963928762, 29.673771184215646 ], [ -95.230631964212634, 29.674490184109377 ], [ -95.230648963549768, 29.675024184477227 ], [ -95.230665964161417, 29.675741184390944 ], [ -95.229011963717866, 29.67577718490536 ], [ -95.228575963273386, 29.675786184870837 ], [ -95.228429963363951, 29.675789184426282 ], [ -95.228366963617873, 29.675790184566932 ], [ -95.228296963425237, 29.675791184249999 ], [ -95.228041963256672, 29.675798184427514 ], [ -95.227384963359228, 29.675812184526599 ], [ -95.226548962596667, 29.675819184567917 ], [ -95.226108963197163, 29.675829184980124 ], [ -95.225710962796725, 29.675845184917435 ], [ -95.225100962407055, 29.675853184975839 ], [ -95.224634961942456, 29.675854184791845 ], [ -95.22414396254679, 29.675882184285523 ], [ -95.224629961995348, 29.676524185125832 ], [ -95.225584962557576, 29.677796185439899 ], [ -95.22658796291303, 29.67918218490583 ], [ -95.226710963020651, 29.679344185620874 ], [ -95.22722896342998, 29.680030185060239 ], [ -95.227296963594952, 29.680126185518429 ], [ -95.227682963531137, 29.680715185961162 ], [ -95.228235963537756, 29.681522185475792 ], [ -95.22848396319749, 29.681847185622196 ], [ -95.229030963823618, 29.682609185916185 ], [ -95.229520963849367, 29.68332318583424 ], [ -95.229851963747137, 29.683349186397084 ], [ -95.230089963830665, 29.683374186135087 ], [ -95.230328964645125, 29.683388186004429 ], [ -95.231094964655867, 29.683384185813342 ], [ -95.232144964345622, 29.683378186123061 ], [ -95.232930964826537, 29.683367186139243 ], [ -95.234013965087769, 29.683358186115068 ], [ -95.234532965539984, 29.683353185450827 ], [ -95.236183965871248, 29.683316185948783 ], [ -95.238931966374537, 29.683338185631953 ], [ -95.240518966560217, 29.683313185278845 ], [ -95.241128967141094, 29.683307185532747 ], [ -95.241401966775172, 29.683309185983784 ], [ -95.2418769672325, 29.683290185250431 ], [ -95.242864967452007, 29.683303185138204 ], [ -95.24499796835515, 29.683244185732523 ], [ -95.245341968268733, 29.683196185615646 ], [ -95.24541996827746, 29.683185185192063 ], [ -95.245499968180624, 29.682648185103581 ], [ -95.245752968207469, 29.681389185523798 ], [ -95.246051968288072, 29.680535184988276 ], [ -95.246469968315907, 29.679811184652486 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 524, "Tract": "48201321900", "Area_SqMi": 0.95306047025616414, "total_2009": 480, "total_2010": 359, "total_2011": 416, "total_2012": 1104, "total_2013": 1259, "total_2014": 1252, "total_2015": 1219, "total_2016": 1205, "total_2017": 1092, "total_2018": 1073, "total_2019": 1153, "total_2020": 1158, "age1": 222, "age2": 646, "age3": 422, "earn1": 110, "earn2": 338, "earn3": 842, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 698, "naics_s06": 35, "naics_s07": 120, "naics_s08": 28, "naics_s09": 0, "naics_s10": 9, "naics_s11": 78, "naics_s12": 134, "naics_s13": 0, "naics_s14": 104, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 28, "naics_s19": 38, "naics_s20": 0, "race1": 870, "race2": 124, "race3": 15, "race4": 261, "race5": 2, "race6": 18, "ethnicity1": 688, "ethnicity2": 602, "edu1": 367, "edu2": 274, "edu3": 307, "edu4": 120, "Shape_Length": 27065.65980945979, "Shape_Area": 26569694.731444765, "total_2021": 1274, "total_2022": 1290 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.234548965291893, 29.69049618711027 ], [ -95.234380965344997, 29.690239187552788 ], [ -95.233796965062353, 29.689397187142514 ], [ -95.233049964991153, 29.68832718724726 ], [ -95.232425964722481, 29.687428187068679 ], [ -95.231979964517365, 29.686797186253845 ], [ -95.231893965153034, 29.686686187097219 ], [ -95.23150896469437, 29.686147186478749 ], [ -95.231159964006622, 29.685659186849932 ], [ -95.23102196461295, 29.685454186535001 ], [ -95.229520963849367, 29.68332318583424 ], [ -95.227991963252578, 29.68329418624754 ], [ -95.227027963236651, 29.683342186417541 ], [ -95.226059962582312, 29.683354186482948 ], [ -95.225401963210558, 29.683363185972606 ], [ -95.225022962330655, 29.683369186456002 ], [ -95.224714962719062, 29.683340186316219 ], [ -95.222875961704219, 29.683358186642607 ], [ -95.22153696211474, 29.683358186015518 ], [ -95.221548961421121, 29.684034186308491 ], [ -95.221565961919282, 29.684934186196426 ], [ -95.2215989623148, 29.686645186736506 ], [ -95.221609962539162, 29.688061187668364 ], [ -95.221611961868859, 29.68830718752497 ], [ -95.221615961904362, 29.689556187513364 ], [ -95.221616961999217, 29.690021187809684 ], [ -95.221618962299587, 29.690634187385882 ], [ -95.221201961964098, 29.690644187836529 ], [ -95.219678961928423, 29.690676187654468 ], [ -95.21969196205319, 29.691397188024972 ], [ -95.219697962261094, 29.691760187668855 ], [ -95.219705961809495, 29.692166187911617 ], [ -95.219680962170841, 29.6925611884357 ], [ -95.21971496136463, 29.692944188313838 ], [ -95.219777961863727, 29.694231188527567 ], [ -95.21977796198864, 29.694817188746359 ], [ -95.219784962334543, 29.695295188394418 ], [ -95.219788961946321, 29.69559518908936 ], [ -95.21981596174777, 29.696375189112324 ], [ -95.219825961716296, 29.696731188652532 ], [ -95.219837962209297, 29.697196189230649 ], [ -95.219789962382023, 29.697977189667036 ], [ -95.219834961741512, 29.699454189515425 ], [ -95.219846962390321, 29.700804189990208 ], [ -95.219845962723014, 29.701416189928807 ], [ -95.219844962348631, 29.701639189808649 ], [ -95.219850962595146, 29.702189189978284 ], [ -95.219855961797052, 29.702672190113404 ], [ -95.219855961774272, 29.702760190607812 ], [ -95.219862962222024, 29.703520190854167 ], [ -95.21986496213357, 29.703691190331927 ], [ -95.219871962408661, 29.704367190769052 ], [ -95.219880961989787, 29.705254190753351 ], [ -95.219891962224921, 29.705447190648812 ], [ -95.219913962425579, 29.705831190879259 ], [ -95.2199359629725, 29.706216191282127 ], [ -95.219938962472142, 29.706368191390393 ], [ -95.21994996245067, 29.706865190869422 ], [ -95.219961962341813, 29.707356191066872 ], [ -95.219964962421187, 29.707467191580776 ], [ -95.2199749622512, 29.707907191364118 ], [ -95.21998496252985, 29.708349191524256 ], [ -95.219986962342219, 29.708436191249891 ], [ -95.21998996287131, 29.708560191754135 ], [ -95.219994962620802, 29.708795191558075 ], [ -95.219998962406351, 29.708948192015129 ], [ -95.219963962851665, 29.709242191791674 ], [ -95.219931962672277, 29.709836191736962 ], [ -95.219959962330535, 29.710114191545948 ], [ -95.219978962731091, 29.710295191497728 ], [ -95.221645963175249, 29.710086191637924 ], [ -95.2221569635809, 29.710022192114103 ], [ -95.222542963372035, 29.70994419164829 ], [ -95.223099963371766, 29.709832191471985 ], [ -95.22379796406122, 29.709642192029104 ], [ -95.22419796332548, 29.709523191234233 ], [ -95.224911963820318, 29.709258191917431 ], [ -95.225030963866956, 29.709200191504372 ], [ -95.225393963908175, 29.709022191825962 ], [ -95.227420964283041, 29.707928190837858 ], [ -95.227836964542774, 29.707770191504775 ], [ -95.228144964667337, 29.707663191029361 ], [ -95.22813596473371, 29.707465190802242 ], [ -95.228130964331513, 29.707147190768556 ], [ -95.228190964931542, 29.706904190960547 ], [ -95.228176964241996, 29.706249190633478 ], [ -95.22817096493614, 29.705198190635262 ], [ -95.228127964448987, 29.701545190002616 ], [ -95.228114963957324, 29.700914189403395 ], [ -95.228107963781511, 29.699829189606124 ], [ -95.228080963824198, 29.698652189118736 ], [ -95.228066964611301, 29.697915189106009 ], [ -95.228028964251109, 29.697158189315029 ], [ -95.228021964100805, 29.696443188564448 ], [ -95.228007964054967, 29.695735188760771 ], [ -95.227985963810568, 29.695016188626184 ], [ -95.227995964341986, 29.694411188538627 ], [ -95.227983963830326, 29.69429618824315 ], [ -95.227974963833049, 29.693559188253641 ], [ -95.227955964337781, 29.692831188171635 ], [ -95.227959963902038, 29.69241118776878 ], [ -95.227993963982641, 29.691840188088541 ], [ -95.228094963485034, 29.691286188106055 ], [ -95.228094963885184, 29.690568187852286 ], [ -95.229088963959668, 29.690563187214977 ], [ -95.229975963934734, 29.690555187317429 ], [ -95.230846964610947, 29.690538187861332 ], [ -95.231740965287301, 29.69053018739168 ], [ -95.232626964562101, 29.690526187767841 ], [ -95.233500965493164, 29.690516187450669 ], [ -95.234548965291893, 29.69049618711027 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 525, "Tract": "48201322000", "Area_SqMi": 0.27668748342002408, "total_2009": 265, "total_2010": 209, "total_2011": 186, "total_2012": 183, "total_2013": 201, "total_2014": 183, "total_2015": 160, "total_2016": 163, "total_2017": 185, "total_2018": 134, "total_2019": 117, "total_2020": 72, "age1": 38, "age2": 70, "age3": 23, "earn1": 35, "earn2": 48, "earn3": 48, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 54, "naics_s06": 0, "naics_s07": 10, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 6, "naics_s17": 0, "naics_s18": 57, "naics_s19": 0, "naics_s20": 0, "race1": 93, "race2": 10, "race3": 1, "race4": 23, "race5": 0, "race6": 4, "ethnicity1": 68, "ethnicity2": 63, "edu1": 32, "edu2": 20, "edu3": 30, "edu4": 11, "Shape_Length": 16518.710664242222, "Shape_Area": 7713573.4823896158, "total_2021": 73, "total_2022": 131 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.219998962406351, 29.708948192015129 ], [ -95.219994962620802, 29.708795191558075 ], [ -95.21998996287131, 29.708560191754135 ], [ -95.219986962342219, 29.708436191249891 ], [ -95.21998496252985, 29.708349191524256 ], [ -95.2199749622512, 29.707907191364118 ], [ -95.219964962421187, 29.707467191580776 ], [ -95.219961962341813, 29.707356191066872 ], [ -95.21994996245067, 29.706865190869422 ], [ -95.219938962472142, 29.706368191390393 ], [ -95.2199359629725, 29.706216191282127 ], [ -95.219913962425579, 29.705831190879259 ], [ -95.219891962224921, 29.705447190648812 ], [ -95.219880961989787, 29.705254190753351 ], [ -95.219871962408661, 29.704367190769052 ], [ -95.21986496213357, 29.703691190331927 ], [ -95.219862962222024, 29.703520190854167 ], [ -95.219855961774272, 29.702760190607812 ], [ -95.219855961797052, 29.702672190113404 ], [ -95.219850962595146, 29.702189189978284 ], [ -95.219844962348631, 29.701639189808649 ], [ -95.219845962723014, 29.701416189928807 ], [ -95.219846962390321, 29.700804189990208 ], [ -95.219834961741512, 29.699454189515425 ], [ -95.219789962382023, 29.697977189667036 ], [ -95.219837962209297, 29.697196189230649 ], [ -95.219825961716296, 29.696731188652532 ], [ -95.21981596174777, 29.696375189112324 ], [ -95.219788961946321, 29.69559518908936 ], [ -95.219784962334543, 29.695295188394418 ], [ -95.21977796198864, 29.694817188746359 ], [ -95.219777961863727, 29.694231188527567 ], [ -95.21971496136463, 29.692944188313838 ], [ -95.219680962170841, 29.6925611884357 ], [ -95.219705961809495, 29.692166187911617 ], [ -95.219697962261094, 29.691760187668855 ], [ -95.21969196205319, 29.691397188024972 ], [ -95.219678961928423, 29.690676187654468 ], [ -95.219429962053212, 29.690687187467464 ], [ -95.219081962044285, 29.690704187461378 ], [ -95.218707961851962, 29.690699187825661 ], [ -95.218449961024504, 29.69070618805091 ], [ -95.218000961670612, 29.690727188034504 ], [ -95.217538961446493, 29.690745187827996 ], [ -95.217545961338445, 29.690804187891036 ], [ -95.21753396136755, 29.690969187615508 ], [ -95.217476961615503, 29.691106188378924 ], [ -95.217432961627665, 29.691178187645971 ], [ -95.217356961517225, 29.691238188459959 ], [ -95.217199960626232, 29.69131018824417 ], [ -95.217092960984374, 29.691370187870969 ], [ -95.216972961520625, 29.691414187718522 ], [ -95.21685396114141, 29.691513187769509 ], [ -95.216771961262978, 29.691596187976721 ], [ -95.216651960688026, 29.691794188056477 ], [ -95.216601960877242, 29.69193118855312 ], [ -95.216482960688154, 29.69340518871677 ], [ -95.216425961482969, 29.693724188288783 ], [ -95.216287961188215, 29.694158188512635 ], [ -95.216268961003081, 29.694268188806738 ], [ -95.216268961047476, 29.69439018873404 ], [ -95.216268961162427, 29.694472189129275 ], [ -95.216350960705995, 29.69484018907357 ], [ -95.21648996061522, 29.69521418852246 ], [ -95.216558960643596, 29.695329189354482 ], [ -95.216906960912922, 29.696068188943492 ], [ -95.216960961250408, 29.696421189321772 ], [ -95.216792960849574, 29.69800918928652 ], [ -95.216515961770881, 29.699787189658512 ], [ -95.216493961148146, 29.699930189716156 ], [ -95.216404961696355, 29.700498189743517 ], [ -95.21634296125923, 29.701176190486176 ], [ -95.216345961471518, 29.701678190353547 ], [ -95.216346961260655, 29.701785189833245 ], [ -95.216583961788714, 29.703416191008852 ], [ -95.216628961724524, 29.703723190349553 ], [ -95.216646961357668, 29.704545191012809 ], [ -95.216612961981795, 29.705191191035553 ], [ -95.216587961797941, 29.705249191165656 ], [ -95.216565962004296, 29.705298191108898 ], [ -95.21660196113281, 29.705438191440688 ], [ -95.216569961083266, 29.70575919100887 ], [ -95.216427961323674, 29.706169191558015 ], [ -95.215677961109051, 29.707396191715457 ], [ -95.215569961698861, 29.707813191296534 ], [ -95.215516961049872, 29.708384191336634 ], [ -95.215534961001268, 29.708433191246748 ], [ -95.215616961263876, 29.70865619206343 ], [ -95.216019962018095, 29.70915119198008 ], [ -95.216107961126511, 29.709795192142767 ], [ -95.216474961718049, 29.710310192041078 ], [ -95.216478962133181, 29.710327192172553 ], [ -95.2165349614951, 29.710542191692696 ], [ -95.216575962130037, 29.710701191727146 ], [ -95.216735961550839, 29.710684191826687 ], [ -95.217309961973029, 29.710623191830809 ], [ -95.217652962198784, 29.710587192049875 ], [ -95.218210962449618, 29.710517192133235 ], [ -95.219665962942656, 29.710334191584064 ], [ -95.219978962731091, 29.710295191497728 ], [ -95.219959962330535, 29.710114191545948 ], [ -95.219931962672277, 29.709836191736962 ], [ -95.219963962851665, 29.709242191791674 ], [ -95.219998962406351, 29.708948192015129 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 526, "Tract": "48201322100", "Area_SqMi": 0.84038421368822003, "total_2009": 1811, "total_2010": 1881, "total_2011": 1820, "total_2012": 1869, "total_2013": 1836, "total_2014": 1836, "total_2015": 2209, "total_2016": 1806, "total_2017": 1739, "total_2018": 2065, "total_2019": 2376, "total_2020": 1894, "age1": 527, "age2": 999, "age3": 492, "earn1": 571, "earn2": 794, "earn3": 653, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 31, "naics_s05": 100, "naics_s06": 19, "naics_s07": 579, "naics_s08": 58, "naics_s09": 2, "naics_s10": 74, "naics_s11": 15, "naics_s12": 61, "naics_s13": 8, "naics_s14": 515, "naics_s15": 23, "naics_s16": 367, "naics_s17": 0, "naics_s18": 38, "naics_s19": 128, "naics_s20": 0, "race1": 1499, "race2": 333, "race3": 21, "race4": 123, "race5": 7, "race6": 35, "ethnicity1": 1075, "ethnicity2": 943, "edu1": 468, "edu2": 379, "edu3": 401, "edu4": 243, "Shape_Length": 27317.444712440891, "Shape_Area": 23428473.545670945, "total_2021": 2024, "total_2022": 2018 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.217545961338445, 29.690804187891036 ], [ -95.217538961446493, 29.690745187827996 ], [ -95.217469960629856, 29.690155188229749 ], [ -95.217368960757867, 29.689121187464071 ], [ -95.217343960768076, 29.688951187577967 ], [ -95.217349961537849, 29.688775187450819 ], [ -95.217431960540111, 29.688307187093528 ], [ -95.217418960984361, 29.687912187082809 ], [ -95.217399960733729, 29.687780186991926 ], [ -95.217368961034339, 29.687285187648406 ], [ -95.217254960501819, 29.686971186980749 ], [ -95.217141961053798, 29.686834186734352 ], [ -95.216851960784808, 29.686581187535673 ], [ -95.216675960394554, 29.686350187368319 ], [ -95.21658696109354, 29.68611418708786 ], [ -95.216555960792959, 29.685998186955715 ], [ -95.216530960477854, 29.685839187283495 ], [ -95.216422960948435, 29.685569186924472 ], [ -95.216170960695536, 29.685283186590379 ], [ -95.216089960719998, 29.685119186477046 ], [ -95.216076960775595, 29.684794186554008 ], [ -95.216151960389325, 29.684272186346352 ], [ -95.216164960926648, 29.684008186928157 ], [ -95.216107960078958, 29.683810186890639 ], [ -95.215855960189884, 29.683436186470242 ], [ -95.215748960822367, 29.683343186956616 ], [ -95.215666960480547, 29.683068186434923 ], [ -95.215656960317418, 29.6830041859806 ], [ -95.215603960502875, 29.682677186757576 ], [ -95.215521960599418, 29.682562186541805 ], [ -95.215357960032108, 29.682402186681003 ], [ -95.215162960358171, 29.682155185970551 ], [ -95.215030960435826, 29.681930186060651 ], [ -95.214910960079862, 29.681688186622587 ], [ -95.214841960331583, 29.681600186497086 ], [ -95.21453296005285, 29.681061185810218 ], [ -95.214368960401956, 29.680671185906618 ], [ -95.214097959388013, 29.679978185736182 ], [ -95.214046959307382, 29.679864185603922 ], [ -95.213814959488928, 29.679346185579533 ], [ -95.213681959931861, 29.679159185694484 ], [ -95.213434959366651, 29.678979185683243 ], [ -95.213259959951188, 29.67885118569945 ], [ -95.21294495949229, 29.67875718586199 ], [ -95.212674959122808, 29.678703186058247 ], [ -95.212239958911127, 29.678675185913779 ], [ -95.211811959173119, 29.678615185840357 ], [ -95.211603959450045, 29.67852718572524 ], [ -95.211395959300845, 29.67842218604634 ], [ -95.210917958558838, 29.678021185430495 ], [ -95.210640958410124, 29.677746185709182 ], [ -95.21041395885031, 29.677345185470259 ], [ -95.210030958195773, 29.676357185462578 ], [ -95.210016959098695, 29.676322184966967 ], [ -95.209902958832728, 29.676086185251393 ], [ -95.209568958918368, 29.67532718486742 ], [ -95.209014958681635, 29.674634184521732 ], [ -95.208750958689336, 29.674376184727269 ], [ -95.208542957917587, 29.67423818459956 ], [ -95.208391957622297, 29.674173185242296 ], [ -95.208246957604985, 29.674140184901908 ], [ -95.208013957504221, 29.674176185112632 ], [ -95.208045958451677, 29.67527218489856 ], [ -95.208176957772807, 29.67649218564728 ], [ -95.208568957897015, 29.677390185409568 ], [ -95.208845958508363, 29.678085185562519 ], [ -95.208850958378548, 29.678195185266755 ], [ -95.208857958330157, 29.678315186031497 ], [ -95.208863958044546, 29.678427185593954 ], [ -95.208890958088006, 29.678889186110787 ], [ -95.208916958181703, 29.679344185593685 ], [ -95.208922958657027, 29.679579186002336 ], [ -95.208942958056085, 29.68016318644224 ], [ -95.208953958861258, 29.680751186526514 ], [ -95.208957958814509, 29.681033186550479 ], [ -95.208971958739127, 29.681797186334869 ], [ -95.208985959093567, 29.68256418663141 ], [ -95.208994958221069, 29.683055186963109 ], [ -95.208995958566206, 29.683594186998718 ], [ -95.20900395857646, 29.684280187092263 ], [ -95.209025959167803, 29.685373187583011 ], [ -95.209074959293531, 29.687181187228212 ], [ -95.209160959398872, 29.687972187263892 ], [ -95.209800959436478, 29.688924188067134 ], [ -95.210778959779958, 29.689839187616968 ], [ -95.211073959300251, 29.690270187636528 ], [ -95.211091959935217, 29.690317188113095 ], [ -95.211271959595521, 29.690772188352025 ], [ -95.209281959110868, 29.690802187954439 ], [ -95.208499958827062, 29.690811188034843 ], [ -95.208285958597827, 29.690815188092312 ], [ -95.207542958903403, 29.690800188590849 ], [ -95.207242958776419, 29.690796188550731 ], [ -95.206695958493455, 29.690814188762833 ], [ -95.206177957782302, 29.690834188275957 ], [ -95.205175958110985, 29.690848188730161 ], [ -95.204138957905144, 29.690875188013212 ], [ -95.203069957933366, 29.69086818883066 ], [ -95.202733957209475, 29.690866188265421 ], [ -95.201985957070661, 29.690865188892317 ], [ -95.200982956620393, 29.690878188978274 ], [ -95.200929956457855, 29.692209189003144 ], [ -95.200930956808847, 29.692412188671966 ], [ -95.201015957486121, 29.694082189322703 ], [ -95.201024957002815, 29.694420188916386 ], [ -95.201030956742272, 29.694659189203154 ], [ -95.20104595710724, 29.695211188989077 ], [ -95.201058957603124, 29.695676189732126 ], [ -95.201068957234071, 29.696018189532111 ], [ -95.201059957292614, 29.696693189449981 ], [ -95.201076957419147, 29.697164190133492 ], [ -95.201084957219877, 29.697423189942953 ], [ -95.201053957614548, 29.698134189866128 ], [ -95.203157957794019, 29.698167190065629 ], [ -95.204214957690638, 29.698124190162257 ], [ -95.204752958527791, 29.698120189787691 ], [ -95.205239958714202, 29.698116189938066 ], [ -95.205897958486389, 29.698110189956076 ], [ -95.207312958652409, 29.698095189783412 ], [ -95.208353959417522, 29.698080189513 ], [ -95.208680959494103, 29.698075189777278 ], [ -95.208858958799524, 29.698072189715106 ], [ -95.209375959202319, 29.698063189905948 ], [ -95.210773959826057, 29.698062189540167 ], [ -95.211455959797746, 29.698060189605705 ], [ -95.21353496054418, 29.698043189839446 ], [ -95.214075960784143, 29.698039189915079 ], [ -95.21494496074007, 29.698029189102449 ], [ -95.216698961227223, 29.698010189553443 ], [ -95.216792960849574, 29.69800918928652 ], [ -95.216960961250408, 29.696421189321772 ], [ -95.216906960912922, 29.696068188943492 ], [ -95.216558960643596, 29.695329189354482 ], [ -95.21648996061522, 29.69521418852246 ], [ -95.216350960705995, 29.69484018907357 ], [ -95.216268961162427, 29.694472189129275 ], [ -95.216268961047476, 29.69439018873404 ], [ -95.216268961003081, 29.694268188806738 ], [ -95.216287961188215, 29.694158188512635 ], [ -95.216425961482969, 29.693724188288783 ], [ -95.216482960688154, 29.69340518871677 ], [ -95.216601960877242, 29.69193118855312 ], [ -95.216651960688026, 29.691794188056477 ], [ -95.216771961262978, 29.691596187976721 ], [ -95.21685396114141, 29.691513187769509 ], [ -95.216972961520625, 29.691414187718522 ], [ -95.217092960984374, 29.691370187870969 ], [ -95.217199960626232, 29.69131018824417 ], [ -95.217356961517225, 29.691238188459959 ], [ -95.217432961627665, 29.691178187645971 ], [ -95.217476961615503, 29.691106188378924 ], [ -95.21753396136755, 29.690969187615508 ], [ -95.217545961338445, 29.690804187891036 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 527, "Tract": "48201322200", "Area_SqMi": 0.3699130687565339, "total_2009": 66, "total_2010": 71, "total_2011": 84, "total_2012": 362, "total_2013": 340, "total_2014": 64, "total_2015": 67, "total_2016": 76, "total_2017": 60, "total_2018": 64, "total_2019": 62, "total_2020": 65, "age1": 12, "age2": 51, "age3": 19, "earn1": 27, "earn2": 27, "earn3": 28, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 0, "naics_s07": 17, "naics_s08": 20, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 0, "naics_s19": 14, "naics_s20": 0, "race1": 70, "race2": 8, "race3": 2, "race4": 1, "race5": 1, "race6": 0, "ethnicity1": 38, "ethnicity2": 44, "edu1": 16, "edu2": 19, "edu3": 30, "edu4": 5, "Shape_Length": 14227.591779774852, "Shape_Area": 10312543.244387569, "total_2021": 130, "total_2022": 82 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.216792960849574, 29.69800918928652 ], [ -95.216698961227223, 29.698010189553443 ], [ -95.21494496074007, 29.698029189102449 ], [ -95.214075960784143, 29.698039189915079 ], [ -95.21353496054418, 29.698043189839446 ], [ -95.211455959797746, 29.698060189605705 ], [ -95.210773959826057, 29.698062189540167 ], [ -95.209375959202319, 29.698063189905948 ], [ -95.209378959719558, 29.698801189641216 ], [ -95.209387959352597, 29.699272189827774 ], [ -95.209392959331879, 29.699522190015315 ], [ -95.20941995958097, 29.699822189960905 ], [ -95.209429959818692, 29.699925190002748 ], [ -95.209415959320467, 29.700235190542688 ], [ -95.209416959209506, 29.700995190285049 ], [ -95.209423959778505, 29.701723190397669 ], [ -95.209492960154137, 29.703508190523948 ], [ -95.209445959333891, 29.705356191193058 ], [ -95.209463959516938, 29.707056191236013 ], [ -95.209464959706224, 29.707203191204368 ], [ -95.209481959437852, 29.707728191703836 ], [ -95.209493959757495, 29.708111192001887 ], [ -95.209521959492278, 29.708973192410383 ], [ -95.209523959649985, 29.710777192315462 ], [ -95.209530960395213, 29.711110192771581 ], [ -95.209532960314917, 29.71120519272873 ], [ -95.209535960001347, 29.711357192405369 ], [ -95.210605959995164, 29.711258192141038 ], [ -95.211634960243032, 29.711164191893683 ], [ -95.212661960403949, 29.711070192228231 ], [ -95.213707960687231, 29.710974192496437 ], [ -95.214501961092338, 29.710901191875195 ], [ -95.215136961966195, 29.710843191847683 ], [ -95.215753961977256, 29.710788191756368 ], [ -95.21641696158126, 29.710718191673447 ], [ -95.216575962130037, 29.710701191727146 ], [ -95.2165349614951, 29.710542191692696 ], [ -95.216478962133181, 29.710327192172553 ], [ -95.216474961718049, 29.710310192041078 ], [ -95.216107961126511, 29.709795192142767 ], [ -95.216019962018095, 29.70915119198008 ], [ -95.215616961263876, 29.70865619206343 ], [ -95.215534961001268, 29.708433191246748 ], [ -95.215516961049872, 29.708384191336634 ], [ -95.215569961698861, 29.707813191296534 ], [ -95.215677961109051, 29.707396191715457 ], [ -95.216427961323674, 29.706169191558015 ], [ -95.216569961083266, 29.70575919100887 ], [ -95.21660196113281, 29.705438191440688 ], [ -95.216565962004296, 29.705298191108898 ], [ -95.216587961797941, 29.705249191165656 ], [ -95.216612961981795, 29.705191191035553 ], [ -95.216646961357668, 29.704545191012809 ], [ -95.216628961724524, 29.703723190349553 ], [ -95.216583961788714, 29.703416191008852 ], [ -95.216346961260655, 29.701785189833245 ], [ -95.216345961471518, 29.701678190353547 ], [ -95.21634296125923, 29.701176190486176 ], [ -95.216404961696355, 29.700498189743517 ], [ -95.216493961148146, 29.699930189716156 ], [ -95.216515961770881, 29.699787189658512 ], [ -95.216792960849574, 29.69800918928652 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 528, "Tract": "48201331700", "Area_SqMi": 2.0024920813754865, "total_2009": 349, "total_2010": 364, "total_2011": 275, "total_2012": 268, "total_2013": 274, "total_2014": 269, "total_2015": 266, "total_2016": 280, "total_2017": 263, "total_2018": 306, "total_2019": 451, "total_2020": 479, "age1": 37, "age2": 139, "age3": 63, "earn1": 26, "earn2": 65, "earn3": 148, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 98, "naics_s05": 0, "naics_s06": 21, "naics_s07": 20, "naics_s08": 28, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 47, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 23, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 171, "race2": 46, "race3": 2, "race4": 14, "race5": 2, "race6": 4, "ethnicity1": 131, "ethnicity2": 108, "edu1": 57, "edu2": 60, "edu3": 57, "edu4": 28, "Shape_Length": 41546.04122291653, "Shape_Area": 55826051.929298356, "total_2021": 280, "total_2022": 239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.356292994875133, 29.648220174477224 ], [ -95.356291994834081, 29.648149174553009 ], [ -95.356287994764088, 29.647705174599974 ], [ -95.356228994421897, 29.646860174410808 ], [ -95.356156994907693, 29.646108174296124 ], [ -95.356128994717508, 29.64535517382069 ], [ -95.356100994410596, 29.644620173871676 ], [ -95.356080994435032, 29.644140173415643 ], [ -95.356073994901962, 29.643299173431007 ], [ -95.356022994137831, 29.64241217345797 ], [ -95.355999994190668, 29.641377172826697 ], [ -95.355993994405736, 29.640849173035384 ], [ -95.356000994346829, 29.640705172950284 ], [ -95.355992994739964, 29.640473172943413 ], [ -95.355960994460375, 29.639691172447492 ], [ -95.355965994655108, 29.639061172733413 ], [ -95.355952994196471, 29.63822517260688 ], [ -95.355797994101707, 29.638225172164905 ], [ -95.355506993980029, 29.638226172905917 ], [ -95.354411993948531, 29.638216172488015 ], [ -95.353000993479469, 29.638205172776072 ], [ -95.352555993292668, 29.6381971725258 ], [ -95.349371992221592, 29.638170172751757 ], [ -95.349379992983387, 29.638101172841122 ], [ -95.348837992317726, 29.63793517299144 ], [ -95.348834992823257, 29.637693172843644 ], [ -95.348832992597067, 29.637513173045267 ], [ -95.348857992240738, 29.637282172472876 ], [ -95.348914992159152, 29.636974172539539 ], [ -95.348912992186811, 29.636286172457542 ], [ -95.348851992809401, 29.636285172647543 ], [ -95.348707992429539, 29.636227172106853 ], [ -95.348321992466538, 29.636258172475966 ], [ -95.347452992382401, 29.636330172065566 ], [ -95.346588991571238, 29.63639317260191 ], [ -95.346153992137118, 29.636430172568133 ], [ -95.345719991928746, 29.636460172687755 ], [ -95.345553991925584, 29.636472172799714 ], [ -95.344807991063291, 29.636530172203056 ], [ -95.343925990991224, 29.636609172645521 ], [ -95.343104991035617, 29.636666172544988 ], [ -95.342167990868319, 29.636741172523433 ], [ -95.341929990250932, 29.636757172482817 ], [ -95.341782990317327, 29.636762172293334 ], [ -95.341541990210885, 29.636782172497593 ], [ -95.340722990097291, 29.63686217277262 ], [ -95.340020990162586, 29.636910172396465 ], [ -95.339396989889053, 29.636964172690519 ], [ -95.337738989872449, 29.637142172518431 ], [ -95.337603989144341, 29.637158173296907 ], [ -95.33685598934737, 29.637241172703458 ], [ -95.336505989574178, 29.637261172790232 ], [ -95.335971989518754, 29.637318173357571 ], [ -95.335539988651476, 29.637350173215953 ], [ -95.335085988888281, 29.637381172960936 ], [ -95.334810989235351, 29.637404173047585 ], [ -95.334222988918853, 29.637464173297658 ], [ -95.333789988833843, 29.637482173530209 ], [ -95.3335409889266, 29.637505172848016 ], [ -95.333267989009713, 29.637532172997556 ], [ -95.332610988638152, 29.637575173441675 ], [ -95.331946988562493, 29.637596173092437 ], [ -95.331335988146265, 29.637596172984789 ], [ -95.331182988270015, 29.637591173491558 ], [ -95.329964987919439, 29.637581172851235 ], [ -95.328616986844978, 29.637569173657763 ], [ -95.328002986869592, 29.637557172969878 ], [ -95.327721986698208, 29.637558173706925 ], [ -95.327555986726509, 29.637558173604134 ], [ -95.326875986853736, 29.637548173241207 ], [ -95.325684986250891, 29.637541172968465 ], [ -95.32399898589189, 29.637528173502918 ], [ -95.324002986274365, 29.637927173145705 ], [ -95.323992986280317, 29.638825173458113 ], [ -95.321336985025397, 29.638851173954286 ], [ -95.319616985244195, 29.638875173954908 ], [ -95.319523985052356, 29.638876173957236 ], [ -95.317243984856475, 29.638910173726302 ], [ -95.316459984120456, 29.638921174181927 ], [ -95.312107982640228, 29.638995174181897 ], [ -95.311643983329915, 29.639003173896644 ], [ -95.310107982832832, 29.639041174204838 ], [ -95.309801982973553, 29.63905217416297 ], [ -95.310276982537161, 29.640532174469701 ], [ -95.310735982885475, 29.642040174598243 ], [ -95.311121983576541, 29.643351175175905 ], [ -95.311321982859752, 29.644031174908847 ], [ -95.311733982953712, 29.645485175833812 ], [ -95.311907983402122, 29.645996175798718 ], [ -95.312839983563975, 29.649073176124091 ], [ -95.313493983853633, 29.651285176312374 ], [ -95.313784984060092, 29.652237176651113 ], [ -95.313954984461347, 29.652797176752472 ], [ -95.314152984604902, 29.653460177131162 ], [ -95.314328984317712, 29.654085177581312 ], [ -95.314524984871142, 29.654665176948853 ], [ -95.314629984683606, 29.65494717714266 ], [ -95.314652984177613, 29.655009177175835 ], [ -95.314900984938191, 29.654957177671982 ], [ -95.31540398446495, 29.654852177469238 ], [ -95.316148984586562, 29.654522177536126 ], [ -95.316600984645191, 29.654162177002316 ], [ -95.316925984844019, 29.653709177320206 ], [ -95.317081984689324, 29.653341177205345 ], [ -95.317202984761209, 29.652706176869049 ], [ -95.317307984595359, 29.652512176896423 ], [ -95.317461985145428, 29.652346176453758 ], [ -95.317808985623941, 29.652158176813614 ], [ -95.317885984718728, 29.652070176222225 ], [ -95.318037985680817, 29.651902176611625 ], [ -95.318949985121165, 29.651176176661536 ], [ -95.319533985986212, 29.650852175944333 ], [ -95.320138985637527, 29.650632176559714 ], [ -95.321861986623631, 29.650526175800294 ], [ -95.323947986820087, 29.650505175732032 ], [ -95.324969986501401, 29.650439176361445 ], [ -95.325833986760586, 29.650047176370226 ], [ -95.326691987327493, 29.649578175411538 ], [ -95.327075987150053, 29.64946317550573 ], [ -95.327966987628201, 29.649565176058665 ], [ -95.328521987940562, 29.649675176074268 ], [ -95.328803987845021, 29.649647175957075 ], [ -95.328993987520462, 29.649578176071728 ], [ -95.329212987777026, 29.649419175646468 ], [ -95.329693987681594, 29.648931175204883 ], [ -95.331328988784819, 29.646691174729849 ], [ -95.331719988271473, 29.646437175024971 ], [ -95.331985988778357, 29.64634617535684 ], [ -95.332313988176409, 29.646344174532654 ], [ -95.332898988566853, 29.646447175078023 ], [ -95.333178989371461, 29.646398174851445 ], [ -95.33345598925824, 29.646455174704219 ], [ -95.333812989452298, 29.646415174648606 ], [ -95.334074989113489, 29.646148175183143 ], [ -95.334558988921472, 29.645656174327321 ], [ -95.334812988882732, 29.645480175153466 ], [ -95.335133989098722, 29.645438174786957 ], [ -95.335846989415799, 29.645593175020515 ], [ -95.336535989963352, 29.645494174841382 ], [ -95.336875990227227, 29.645238175056274 ], [ -95.336990989729912, 29.645125174565532 ], [ -95.337718989502704, 29.644411174375463 ], [ -95.337860990412523, 29.64434117470385 ], [ -95.338181990279253, 29.644301174748801 ], [ -95.338462989957137, 29.644344174489532 ], [ -95.340510990421137, 29.645253174304468 ], [ -95.340785990534471, 29.645409174809306 ], [ -95.340989991080932, 29.645587174229476 ], [ -95.341336991416142, 29.646027174442246 ], [ -95.341580990565049, 29.646156174519259 ], [ -95.341907991084781, 29.646225174451327 ], [ -95.342268991411174, 29.646257174901649 ], [ -95.343580991581319, 29.646371174355224 ], [ -95.344170991567239, 29.646506174156805 ], [ -95.344373991485483, 29.646676174495934 ], [ -95.344924991740925, 29.647671175249947 ], [ -95.345097992168718, 29.647820175256559 ], [ -95.345294991618232, 29.647862174439297 ], [ -95.345696992270049, 29.647814174773032 ], [ -95.347918992834167, 29.647086174358414 ], [ -95.348569992360211, 29.647065174369246 ], [ -95.3490599932815, 29.647214174617293 ], [ -95.349780993035395, 29.647548174867055 ], [ -95.351664993216033, 29.64811017446614 ], [ -95.351764994230521, 29.648221174325077 ], [ -95.351916993968445, 29.64880717442535 ], [ -95.352057994329982, 29.64897617496252 ], [ -95.352192993495876, 29.649052174785524 ], [ -95.353065993607729, 29.649325174905872 ], [ -95.354044993838571, 29.649389174808764 ], [ -95.354691994028315, 29.649366174396484 ], [ -95.355408994834534, 29.649108175155032 ], [ -95.355522994291704, 29.649011174784114 ], [ -95.355672994432751, 29.648646174486739 ], [ -95.355804994535831, 29.648509174461022 ], [ -95.35614099468954, 29.648310175006944 ], [ -95.356292994875133, 29.648220174477224 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 529, "Tract": "48201331800", "Area_SqMi": 0.89977614677045736, "total_2009": 130, "total_2010": 149, "total_2011": 150, "total_2012": 137, "total_2013": 158, "total_2014": 206, "total_2015": 192, "total_2016": 243, "total_2017": 250, "total_2018": 240, "total_2019": 212, "total_2020": 183, "age1": 47, "age2": 83, "age3": 33, "earn1": 51, "earn2": 64, "earn3": 48, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 52, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 47, "naics_s16": 10, "naics_s17": 0, "naics_s18": 48, "naics_s19": 6, "naics_s20": 0, "race1": 64, "race2": 66, "race3": 1, "race4": 26, "race5": 0, "race6": 6, "ethnicity1": 116, "ethnicity2": 47, "edu1": 24, "edu2": 29, "edu3": 27, "edu4": 36, "Shape_Length": 22054.77089270985, "Shape_Area": 25084218.989694342, "total_2021": 176, "total_2022": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.356300994584657, 29.649109174394265 ], [ -95.356292995087458, 29.648290174977319 ], [ -95.356292994875133, 29.648220174477224 ], [ -95.35614099468954, 29.648310175006944 ], [ -95.355804994535831, 29.648509174461022 ], [ -95.355672994432751, 29.648646174486739 ], [ -95.355522994291704, 29.649011174784114 ], [ -95.355408994834534, 29.649108175155032 ], [ -95.354691994028315, 29.649366174396484 ], [ -95.354044993838571, 29.649389174808764 ], [ -95.353065993607729, 29.649325174905872 ], [ -95.352192993495876, 29.649052174785524 ], [ -95.352057994329982, 29.64897617496252 ], [ -95.351916993968445, 29.64880717442535 ], [ -95.351764994230521, 29.648221174325077 ], [ -95.351664993216033, 29.64811017446614 ], [ -95.349780993035395, 29.647548174867055 ], [ -95.3490599932815, 29.647214174617293 ], [ -95.348569992360211, 29.647065174369246 ], [ -95.347918992834167, 29.647086174358414 ], [ -95.345696992270049, 29.647814174773032 ], [ -95.345294991618232, 29.647862174439297 ], [ -95.345097992168718, 29.647820175256559 ], [ -95.344924991740925, 29.647671175249947 ], [ -95.344373991485483, 29.646676174495934 ], [ -95.344170991567239, 29.646506174156805 ], [ -95.343580991581319, 29.646371174355224 ], [ -95.342268991411174, 29.646257174901649 ], [ -95.341907991084781, 29.646225174451327 ], [ -95.341580990565049, 29.646156174519259 ], [ -95.341336991416142, 29.646027174442246 ], [ -95.340989991080932, 29.645587174229476 ], [ -95.340785990534471, 29.645409174809306 ], [ -95.340510990421137, 29.645253174304468 ], [ -95.338462989957137, 29.644344174489532 ], [ -95.338181990279253, 29.644301174748801 ], [ -95.337860990412523, 29.64434117470385 ], [ -95.337718989502704, 29.644411174375463 ], [ -95.336990989729912, 29.645125174565532 ], [ -95.336996989537454, 29.645183174872308 ], [ -95.337003989406909, 29.645240174370777 ], [ -95.337131990065828, 29.646366175153371 ], [ -95.337229990450979, 29.647183174954279 ], [ -95.337290989890832, 29.648018175517961 ], [ -95.337222990007589, 29.648836175627288 ], [ -95.336994990139061, 29.649690175581778 ], [ -95.336822989591951, 29.650108175927887 ], [ -95.336506990252531, 29.650921176074078 ], [ -95.336431990080143, 29.651412175567398 ], [ -95.336387990242343, 29.651848176138472 ], [ -95.336396990446403, 29.65232617573642 ], [ -95.336395990342083, 29.65308217602767 ], [ -95.336412990268101, 29.6538481760869 ], [ -95.336436990268794, 29.654621176649751 ], [ -95.336446990132075, 29.655388176368405 ], [ -95.336456989815261, 29.656161177076871 ], [ -95.336479990253522, 29.656941177320213 ], [ -95.336511989959163, 29.657728176789792 ], [ -95.336510990382408, 29.657919176794639 ], [ -95.336519990680287, 29.658627176988652 ], [ -95.337320989958371, 29.658575177460158 ], [ -95.337829990533479, 29.658568177679967 ], [ -95.338258990981728, 29.658569177204974 ], [ -95.339785991139095, 29.65855917695794 ], [ -95.340284991193201, 29.658538176998544 ], [ -95.341220991046583, 29.658538177353666 ], [ -95.342117992107802, 29.6585281768828 ], [ -95.343102991562404, 29.658518176929668 ], [ -95.343618991856317, 29.658514177247874 ], [ -95.344301991996588, 29.658508176611026 ], [ -95.345438992865539, 29.658499177352144 ], [ -95.34613899267238, 29.658487177192089 ], [ -95.348891993873124, 29.658445177147062 ], [ -95.351833993998241, 29.658406176533685 ], [ -95.352662994393199, 29.658409176424822 ], [ -95.354856994855169, 29.658373177058913 ], [ -95.3553229951915, 29.658439176555614 ], [ -95.355367995330738, 29.658440177040966 ], [ -95.355525995382749, 29.658442177049238 ], [ -95.355495994785585, 29.657608176915758 ], [ -95.355488994598929, 29.657130176557327 ], [ -95.355478994698558, 29.656668175972012 ], [ -95.355469994590507, 29.655926175778987 ], [ -95.355420995368746, 29.654249175990898 ], [ -95.355416995132884, 29.654001176111073 ], [ -95.35541499455951, 29.653491175479051 ], [ -95.355480994962193, 29.652642175725042 ], [ -95.355548994655635, 29.652267175273671 ], [ -95.35584099487663, 29.651120175091101 ], [ -95.356066994479747, 29.650505174838024 ], [ -95.356148995441472, 29.650104174772743 ], [ -95.3562139954185, 29.649848174959118 ], [ -95.356256994728994, 29.649439174891555 ], [ -95.356300994584657, 29.649109174394265 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 530, "Tract": "48201331900", "Area_SqMi": 0.6491926952247985, "total_2009": 206, "total_2010": 136, "total_2011": 157, "total_2012": 114, "total_2013": 363, "total_2014": 394, "total_2015": 119, "total_2016": 113, "total_2017": 116, "total_2018": 101, "total_2019": 84, "total_2020": 86, "age1": 33, "age2": 51, "age3": 31, "earn1": 26, "earn2": 69, "earn3": 20, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 0, "naics_s07": 68, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 24, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 9, "naics_s19": 0, "naics_s20": 0, "race1": 71, "race2": 30, "race3": 0, "race4": 11, "race5": 1, "race6": 2, "ethnicity1": 81, "ethnicity2": 34, "edu1": 18, "edu2": 22, "edu3": 31, "edu4": 11, "Shape_Length": 18846.125745204678, "Shape_Area": 18098381.238464963, "total_2021": 72, "total_2022": 115 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355721995949182, 29.669099178418843 ], [ -95.355697995349686, 29.667485178814719 ], [ -95.355685995386565, 29.666741178119434 ], [ -95.355674995818362, 29.66603717844723 ], [ -95.355664995236012, 29.665338177872691 ], [ -95.355629995072974, 29.664365178324065 ], [ -95.355594995632259, 29.66325117785539 ], [ -95.355574995135314, 29.662178177713351 ], [ -95.355564995575051, 29.661310176861601 ], [ -95.355537994831181, 29.660580177151981 ], [ -95.355533995636932, 29.659858176740716 ], [ -95.355527995655152, 29.659164176554743 ], [ -95.355525995382749, 29.658442177049238 ], [ -95.355367995330738, 29.658440177040966 ], [ -95.3553229951915, 29.658439176555614 ], [ -95.354856994855169, 29.658373177058913 ], [ -95.352662994393199, 29.658409176424822 ], [ -95.351833993998241, 29.658406176533685 ], [ -95.348891993873124, 29.658445177147062 ], [ -95.34613899267238, 29.658487177192089 ], [ -95.345438992865539, 29.658499177352144 ], [ -95.344301991996588, 29.658508176611026 ], [ -95.343618991856317, 29.658514177247874 ], [ -95.343102991562404, 29.658518176929668 ], [ -95.342117992107802, 29.6585281768828 ], [ -95.341220991046583, 29.658538177353666 ], [ -95.340284991193201, 29.658538176998544 ], [ -95.339785991139095, 29.65855917695794 ], [ -95.338258990981728, 29.658569177204974 ], [ -95.337829990533479, 29.658568177679967 ], [ -95.337320989958371, 29.658575177460158 ], [ -95.336519990680287, 29.658627176988652 ], [ -95.336558990077719, 29.659980177334258 ], [ -95.336576990584689, 29.660742177342406 ], [ -95.33661099047238, 29.661159177723075 ], [ -95.336612989897205, 29.661258178097988 ], [ -95.336622989926326, 29.661686178148326 ], [ -95.336669990348128, 29.661936177578138 ], [ -95.336823990352599, 29.66241817822597 ], [ -95.33703999020878, 29.663165178527716 ], [ -95.337138990279442, 29.663905178356227 ], [ -95.337163990944646, 29.664663178617975 ], [ -95.337192990539279, 29.665440178880861 ], [ -95.337194990852467, 29.665860179131656 ], [ -95.337201990855576, 29.666311179344195 ], [ -95.337201990538773, 29.666344179227405 ], [ -95.337650991130502, 29.666332178456514 ], [ -95.33792599081147, 29.666314178749651 ], [ -95.338272991461011, 29.666312178578593 ], [ -95.34074799207319, 29.666282178852512 ], [ -95.341822991657665, 29.666254178666986 ], [ -95.342007991492963, 29.666241179169202 ], [ -95.342700992506508, 29.666236178924446 ], [ -95.343585992444631, 29.666218178648823 ], [ -95.344170992782423, 29.666214178288062 ], [ -95.344468993140325, 29.666209178291318 ], [ -95.345347992965515, 29.666207178834867 ], [ -95.346037992818921, 29.666317178403929 ], [ -95.346833993085795, 29.666566178988038 ], [ -95.347606993736491, 29.666781178215547 ], [ -95.34849599341031, 29.666893178372518 ], [ -95.348940993801847, 29.666874178256457 ], [ -95.349803994026118, 29.666875178474392 ], [ -95.350490994028164, 29.666991178848882 ], [ -95.351515994078511, 29.667295179004178 ], [ -95.352162994247095, 29.667500178292517 ], [ -95.353115994695841, 29.66777717859555 ], [ -95.353607994943317, 29.667998178371093 ], [ -95.35407899501665, 29.668305178860777 ], [ -95.354647994958398, 29.6687011787701 ], [ -95.355108995056497, 29.66890317909894 ], [ -95.355589995192162, 29.669057179087002 ], [ -95.355721995949182, 29.669099178418843 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 531, "Tract": "48201332100", "Area_SqMi": 0.41483184416532931, "total_2009": 129, "total_2010": 123, "total_2011": 120, "total_2012": 149, "total_2013": 133, "total_2014": 146, "total_2015": 120, "total_2016": 165, "total_2017": 119, "total_2018": 201, "total_2019": 169, "total_2020": 129, "age1": 40, "age2": 94, "age3": 61, "earn1": 29, "earn2": 77, "earn3": 89, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 24, "naics_s05": 50, "naics_s06": 31, "naics_s07": 37, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 26, "naics_s19": 9, "naics_s20": 0, "race1": 141, "race2": 23, "race3": 1, "race4": 27, "race5": 0, "race6": 3, "ethnicity1": 112, "ethnicity2": 83, "edu1": 58, "edu2": 45, "edu3": 32, "edu4": 20, "Shape_Length": 15933.090956319984, "Shape_Area": 11564801.82353233, "total_2021": 119, "total_2022": 195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355971995945652, 29.680926181301995 ], [ -95.35596899581526, 29.680741181080379 ], [ -95.355962996659912, 29.680369181183224 ], [ -95.355800996280209, 29.680348181359648 ], [ -95.355732996210719, 29.6803391811879 ], [ -95.354699995770289, 29.679988181500924 ], [ -95.352422995484105, 29.679336181070735 ], [ -95.352195994842177, 29.679347180997503 ], [ -95.352062995173398, 29.679363180854327 ], [ -95.351789994948987, 29.679406180966076 ], [ -95.351230994854333, 29.679256181500474 ], [ -95.351089994961967, 29.679213180954633 ], [ -95.350303995125572, 29.678999181485896 ], [ -95.349385994352417, 29.678698181195905 ], [ -95.34842599441113, 29.678435181397031 ], [ -95.347497994347606, 29.678142180918115 ], [ -95.346562993409364, 29.677848181210507 ], [ -95.345602992909818, 29.677578181070462 ], [ -95.344679992882476, 29.677283181134523 ], [ -95.343737993285401, 29.677011180882108 ], [ -95.342808992898682, 29.676712180948595 ], [ -95.341868992314488, 29.676447180700976 ], [ -95.340925992131005, 29.676166180842475 ], [ -95.339984992010429, 29.675882180461752 ], [ -95.338991991328157, 29.675566180692964 ], [ -95.338136991772828, 29.675516180819059 ], [ -95.337675991318946, 29.675425180829315 ], [ -95.337507991097723, 29.675405180548655 ], [ -95.336443991023401, 29.675424180821214 ], [ -95.336452991299538, 29.676209181351361 ], [ -95.336508991468563, 29.676972180997755 ], [ -95.33661899120878, 29.67845418180703 ], [ -95.336832990974969, 29.67894918187314 ], [ -95.337132990965443, 29.679352181134 ], [ -95.337819991580503, 29.679946181769839 ], [ -95.338591992257108, 29.680524182032428 ], [ -95.339116991401667, 29.681164182136392 ], [ -95.339467991737791, 29.681884182110569 ], [ -95.339603991891138, 29.682222181864695 ], [ -95.339762992480743, 29.68261418190691 ], [ -95.340058991902708, 29.683344181922582 ], [ -95.340320992556926, 29.684066182761956 ], [ -95.34060599258278, 29.684800182655817 ], [ -95.340788992764729, 29.685239182926956 ], [ -95.340889992825538, 29.685540182544763 ], [ -95.34094799286116, 29.685712183118849 ], [ -95.343920993113329, 29.684843182110036 ], [ -95.349202994762905, 29.683256181613046 ], [ -95.350021994974711, 29.682960181632883 ], [ -95.351495995582738, 29.682318181736257 ], [ -95.352763995373536, 29.681781181878865 ], [ -95.353551995330065, 29.68149918181944 ], [ -95.354288995378027, 29.681289181690641 ], [ -95.354505996013671, 29.681227181009945 ], [ -95.354873996473628, 29.681151181308323 ], [ -95.355621996577298, 29.680997181100896 ], [ -95.355773995960931, 29.680966181203338 ], [ -95.355971995945652, 29.680926181301995 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 532, "Tract": "48201332200", "Area_SqMi": 1.1152153791864081, "total_2009": 2200, "total_2010": 2342, "total_2011": 2468, "total_2012": 2464, "total_2013": 2342, "total_2014": 2204, "total_2015": 2725, "total_2016": 2756, "total_2017": 2842, "total_2018": 2735, "total_2019": 2691, "total_2020": 2840, "age1": 552, "age2": 1634, "age3": 617, "earn1": 339, "earn2": 676, "earn3": 1788, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 311, "naics_s05": 160, "naics_s06": 887, "naics_s07": 109, "naics_s08": 966, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 18, "naics_s13": 1, "naics_s14": 236, "naics_s15": 80, "naics_s16": 16, "naics_s17": 0, "naics_s18": 13, "naics_s19": 5, "naics_s20": 0, "race1": 1893, "race2": 733, "race3": 21, "race4": 107, "race5": 5, "race6": 44, "ethnicity1": 1695, "ethnicity2": 1108, "edu1": 555, "edu2": 668, "edu3": 667, "edu4": 361, "Shape_Length": 23560.343063862041, "Shape_Area": 31090296.061519649, "total_2021": 3011, "total_2022": 2803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.34094799286116, 29.685712183118849 ], [ -95.340889992825538, 29.685540182544763 ], [ -95.340788992764729, 29.685239182926956 ], [ -95.34060599258278, 29.684800182655817 ], [ -95.340320992556926, 29.684066182761956 ], [ -95.340058991902708, 29.683344181922582 ], [ -95.339762992480743, 29.68261418190691 ], [ -95.339603991891138, 29.682222181864695 ], [ -95.339467991737791, 29.681884182110569 ], [ -95.339116991401667, 29.681164182136392 ], [ -95.338591992257108, 29.680524182032428 ], [ -95.337819991580503, 29.679946181769839 ], [ -95.337132990965443, 29.679352181134 ], [ -95.336832990974969, 29.67894918187314 ], [ -95.33661899120878, 29.67845418180703 ], [ -95.336508991468563, 29.676972180997755 ], [ -95.336452991299538, 29.676209181351361 ], [ -95.336443991023401, 29.675424180821214 ], [ -95.33641099070968, 29.674685180980859 ], [ -95.336416990831651, 29.674229180756853 ], [ -95.336412990761318, 29.673877180783069 ], [ -95.336442990488308, 29.673762180488616 ], [ -95.336563991316183, 29.672968180410251 ], [ -95.336788990494725, 29.672349179834313 ], [ -95.336826990863187, 29.672244179962906 ], [ -95.336964991377656, 29.671885179682583 ], [ -95.332361989835789, 29.671982180003585 ], [ -95.33071098901523, 29.672014180215086 ], [ -95.328598988658669, 29.672062179985161 ], [ -95.327810988393637, 29.672085180660257 ], [ -95.326487988337277, 29.672113180829889 ], [ -95.325346988052488, 29.672137180906134 ], [ -95.324411987768926, 29.672157180985899 ], [ -95.323864987844914, 29.672168180311981 ], [ -95.321099986686548, 29.672236180890259 ], [ -95.320877987153324, 29.672204180799998 ], [ -95.320518987113601, 29.672064180303053 ], [ -95.320150986506135, 29.672664180377417 ], [ -95.319990986621434, 29.672895181154047 ], [ -95.321461987714429, 29.677803181504601 ], [ -95.321799987846504, 29.67886218190705 ], [ -95.322946987615254, 29.682701182580782 ], [ -95.32296198800374, 29.682753182749934 ], [ -95.323456987645656, 29.684419183357257 ], [ -95.323724988637125, 29.685315183105587 ], [ -95.323941988338689, 29.686124183645724 ], [ -95.324047988664915, 29.686481183380497 ], [ -95.324396988809468, 29.687660183544754 ], [ -95.324926988300987, 29.689386184043681 ], [ -95.325359989144829, 29.690810184109104 ], [ -95.325518989124703, 29.691387184071139 ], [ -95.325646988637089, 29.691722184698271 ], [ -95.325721988915305, 29.69196718472509 ], [ -95.325948989055107, 29.691860184936143 ], [ -95.329224990057085, 29.690323183993925 ], [ -95.33006699042862, 29.689925184015795 ], [ -95.332118990007572, 29.688910184145389 ], [ -95.332649990673971, 29.688670183887666 ], [ -95.335064991029299, 29.687586182903338 ], [ -95.335867991393499, 29.687270183595157 ], [ -95.336864991225269, 29.686941183297879 ], [ -95.337418991545633, 29.686771182870594 ], [ -95.34094799286116, 29.685712183118849 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 533, "Tract": "48201332400", "Area_SqMi": 1.4252213606380986, "total_2009": 159, "total_2010": 154, "total_2011": 94, "total_2012": 98, "total_2013": 106, "total_2014": 103, "total_2015": 127, "total_2016": 64, "total_2017": 123, "total_2018": 133, "total_2019": 115, "total_2020": 110, "age1": 26, "age2": 54, "age3": 28, "earn1": 43, "earn2": 43, "earn3": 22, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 0, "naics_s07": 43, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 23, "naics_s17": 0, "naics_s18": 20, "naics_s19": 7, "naics_s20": 0, "race1": 54, "race2": 45, "race3": 0, "race4": 5, "race5": 0, "race6": 4, "ethnicity1": 72, "ethnicity2": 36, "edu1": 27, "edu2": 21, "edu3": 27, "edu4": 7, "Shape_Length": 31382.569746681183, "Shape_Area": 39732732.243852824, "total_2021": 97, "total_2022": 108 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.337309991109208, 29.669985179811409 ], [ -95.337293990534192, 29.669198179540405 ], [ -95.337258990845129, 29.668407179389497 ], [ -95.33723399040214, 29.667604179580149 ], [ -95.337216990923309, 29.666935179077623 ], [ -95.337201990538773, 29.666344179227405 ], [ -95.337201990855576, 29.666311179344195 ], [ -95.337194990852467, 29.665860179131656 ], [ -95.337192990539279, 29.665440178880861 ], [ -95.337163990944646, 29.664663178617975 ], [ -95.337138990279442, 29.663905178356227 ], [ -95.33703999020878, 29.663165178527716 ], [ -95.336823990352599, 29.66241817822597 ], [ -95.336669990348128, 29.661936177578138 ], [ -95.336622989926326, 29.661686178148326 ], [ -95.336612989897205, 29.661258178097988 ], [ -95.33661099047238, 29.661159177723075 ], [ -95.336576990584689, 29.660742177342406 ], [ -95.336558990077719, 29.659980177334258 ], [ -95.336519990680287, 29.658627176988652 ], [ -95.336510990382408, 29.657919176794639 ], [ -95.336511989959163, 29.657728176789792 ], [ -95.336479990253522, 29.656941177320213 ], [ -95.336456989815261, 29.656161177076871 ], [ -95.336446990132075, 29.655388176368405 ], [ -95.336436990268794, 29.654621176649751 ], [ -95.336412990268101, 29.6538481760869 ], [ -95.336395990342083, 29.65308217602767 ], [ -95.336396990446403, 29.65232617573642 ], [ -95.336387990242343, 29.651848176138472 ], [ -95.336431990080143, 29.651412175567398 ], [ -95.336506990252531, 29.650921176074078 ], [ -95.336822989591951, 29.650108175927887 ], [ -95.336994990139061, 29.649690175581778 ], [ -95.337222990007589, 29.648836175627288 ], [ -95.337290989890832, 29.648018175517961 ], [ -95.337229990450979, 29.647183174954279 ], [ -95.337131990065828, 29.646366175153371 ], [ -95.337003989406909, 29.645240174370777 ], [ -95.336996989537454, 29.645183174872308 ], [ -95.336990989729912, 29.645125174565532 ], [ -95.336875990227227, 29.645238175056274 ], [ -95.336535989963352, 29.645494174841382 ], [ -95.335846989415799, 29.645593175020515 ], [ -95.335133989098722, 29.645438174786957 ], [ -95.334812988882732, 29.645480175153466 ], [ -95.334558988921472, 29.645656174327321 ], [ -95.334074989113489, 29.646148175183143 ], [ -95.333812989452298, 29.646415174648606 ], [ -95.33345598925824, 29.646455174704219 ], [ -95.333178989371461, 29.646398174851445 ], [ -95.332898988566853, 29.646447175078023 ], [ -95.332313988176409, 29.646344174532654 ], [ -95.331985988778357, 29.64634617535684 ], [ -95.331719988271473, 29.646437175024971 ], [ -95.331328988784819, 29.646691174729849 ], [ -95.329693987681594, 29.648931175204883 ], [ -95.329212987777026, 29.649419175646468 ], [ -95.328993987520462, 29.649578176071728 ], [ -95.328803987845021, 29.649647175957075 ], [ -95.328521987940562, 29.649675176074268 ], [ -95.327966987628201, 29.649565176058665 ], [ -95.327075987150053, 29.64946317550573 ], [ -95.326691987327493, 29.649578175411538 ], [ -95.325833986760586, 29.650047176370226 ], [ -95.324969986501401, 29.650439176361445 ], [ -95.323947986820087, 29.650505175732032 ], [ -95.321861986623631, 29.650526175800294 ], [ -95.320138985637527, 29.650632176559714 ], [ -95.319533985986212, 29.650852175944333 ], [ -95.318949985121165, 29.651176176661536 ], [ -95.318037985680817, 29.651902176611625 ], [ -95.317885984718728, 29.652070176222225 ], [ -95.317808985623941, 29.652158176813614 ], [ -95.317461985145428, 29.652346176453758 ], [ -95.317307984595359, 29.652512176896423 ], [ -95.317202984761209, 29.652706176869049 ], [ -95.317081984689324, 29.653341177205345 ], [ -95.316925984844019, 29.653709177320206 ], [ -95.316600984645191, 29.654162177002316 ], [ -95.316148984586562, 29.654522177536126 ], [ -95.31540398446495, 29.654852177469238 ], [ -95.314900984938191, 29.654957177671982 ], [ -95.314652984177613, 29.655009177175835 ], [ -95.314674984337273, 29.655084177526515 ], [ -95.315913985264274, 29.659347178567142 ], [ -95.316438985388118, 29.661075178900425 ], [ -95.316590984819854, 29.661579178284335 ], [ -95.316854985829508, 29.661569178259622 ], [ -95.318687985555655, 29.661541178756249 ], [ -95.320863986757203, 29.661514178685376 ], [ -95.321071986831527, 29.661508178282464 ], [ -95.321876986801101, 29.661497178801117 ], [ -95.323623986790821, 29.661475178170218 ], [ -95.32420898691089, 29.661461178043044 ], [ -95.324273987578735, 29.661460178096849 ], [ -95.324778987876201, 29.661448178088506 ], [ -95.32511098773449, 29.661440178591299 ], [ -95.328553988401723, 29.661370178537297 ], [ -95.328553987929254, 29.661415178126624 ], [ -95.328555987979826, 29.66171317818004 ], [ -95.32856098850533, 29.661860178310501 ], [ -95.328581988307519, 29.662576178288532 ], [ -95.328602988313349, 29.663320178974356 ], [ -95.328619988652008, 29.664064179041354 ], [ -95.328633988054875, 29.664838179113403 ], [ -95.32864598889779, 29.665279178959686 ], [ -95.328652988062302, 29.665597178808977 ], [ -95.328663988979542, 29.6663081791155 ], [ -95.328681988216886, 29.666458179556951 ], [ -95.328684988181593, 29.66648817907987 ], [ -95.328703988240065, 29.667507179147162 ], [ -95.32871898856726, 29.66810917959641 ], [ -95.328735988274133, 29.668571179307303 ], [ -95.328716989251149, 29.669360179953653 ], [ -95.328666988642325, 29.670144179656901 ], [ -95.328621988598869, 29.670954180445612 ], [ -95.328598988658669, 29.672062179985161 ], [ -95.33071098901523, 29.672014180215086 ], [ -95.332361989835789, 29.671982180003585 ], [ -95.336964991377656, 29.671885179682583 ], [ -95.337241990880599, 29.670782180029509 ], [ -95.337309991109208, 29.669985179811409 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 534, "Tract": "48201332500", "Area_SqMi": 0.70307232317319135, "total_2009": 94, "total_2010": 81, "total_2011": 98, "total_2012": 79, "total_2013": 85, "total_2014": 78, "total_2015": 166, "total_2016": 121, "total_2017": 121, "total_2018": 93, "total_2019": 85, "total_2020": 81, "age1": 19, "age2": 40, "age3": 18, "earn1": 23, "earn2": 33, "earn3": 21, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 0, "naics_s07": 9, "naics_s08": 15, "naics_s09": 0, "naics_s10": 6, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 23, "naics_s19": 2, "naics_s20": 0, "race1": 47, "race2": 21, "race3": 0, "race4": 9, "race5": 0, "race6": 0, "ethnicity1": 51, "ethnicity2": 26, "edu1": 10, "edu2": 16, "edu3": 20, "edu4": 12, "Shape_Length": 24986.088252979935, "Shape_Area": 19600453.049761303, "total_2021": 74, "total_2022": 77 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.317315985958885, 29.666340179758532 ], [ -95.317976985540668, 29.666183179394658 ], [ -95.316590984819854, 29.661579178284335 ], [ -95.316438985388118, 29.661075178900425 ], [ -95.315913985264274, 29.659347178567142 ], [ -95.314674984337273, 29.655084177526515 ], [ -95.314652984177613, 29.655009177175835 ], [ -95.314381984521319, 29.655060177358671 ], [ -95.313753983812788, 29.655181177416864 ], [ -95.313144984280072, 29.655161177223153 ], [ -95.31263398419577, 29.655345177284389 ], [ -95.312229983512964, 29.655795177185656 ], [ -95.311748983378081, 29.656853177448074 ], [ -95.311354983470082, 29.657201177478978 ], [ -95.31051698356309, 29.657385178042894 ], [ -95.309437982789262, 29.657620178448209 ], [ -95.308776983602229, 29.657937178351428 ], [ -95.307863982820507, 29.659358178058511 ], [ -95.307596983376541, 29.660111178461175 ], [ -95.307187982904821, 29.66097017889707 ], [ -95.305090982116056, 29.662811179014227 ], [ -95.304814982446914, 29.662954179638213 ], [ -95.304276982002037, 29.663556179574883 ], [ -95.303080981539807, 29.664375179983445 ], [ -95.301454981369375, 29.665265179538764 ], [ -95.300186981133677, 29.666012179762056 ], [ -95.298396980873136, 29.667198180100016 ], [ -95.297320980532277, 29.66821118074909 ], [ -95.2971559803904, 29.668540180411565 ], [ -95.297262981147369, 29.671230181144253 ], [ -95.297104981247472, 29.671685181602594 ], [ -95.296935980492677, 29.671936181188752 ], [ -95.296383980201199, 29.672299181953051 ], [ -95.295442979996253, 29.672647181304377 ], [ -95.292936979876032, 29.673122181414218 ], [ -95.292473979343711, 29.672930181822345 ], [ -95.292269979892993, 29.6729141817151 ], [ -95.292017979305925, 29.67282218173451 ], [ -95.291789979747762, 29.672778182195433 ], [ -95.291593979339567, 29.672791181799294 ], [ -95.291285979690059, 29.672840181926826 ], [ -95.291033978894447, 29.672951181639061 ], [ -95.290713979559129, 29.673135181813681 ], [ -95.290560979096071, 29.673254181884342 ], [ -95.290331978897655, 29.673540181733461 ], [ -95.290453979139016, 29.673571182376698 ], [ -95.290550979416139, 29.673596182295089 ], [ -95.291020979602095, 29.6736921819138 ], [ -95.291749979708797, 29.673767181578217 ], [ -95.292878979515251, 29.673763182035046 ], [ -95.293829980216444, 29.673735182126961 ], [ -95.294578979910455, 29.673657181491272 ], [ -95.295595980958112, 29.673502181559009 ], [ -95.29785898062444, 29.673144181198282 ], [ -95.297997980568837, 29.673122181420876 ], [ -95.299787981953159, 29.672825181400064 ], [ -95.300058981026979, 29.67276118163079 ], [ -95.300549981795896, 29.672606181380033 ], [ -95.301345982029773, 29.672238181789169 ], [ -95.301935981621696, 29.671790181216888 ], [ -95.302203981535314, 29.671551180968553 ], [ -95.303010982655579, 29.670865181241819 ], [ -95.30388398273189, 29.670246180590418 ], [ -95.304732982261669, 29.66974818111715 ], [ -95.305016982549404, 29.669581180770464 ], [ -95.305461982792409, 29.669325180668018 ], [ -95.305968983005286, 29.669061180490374 ], [ -95.306145982555577, 29.668966180316918 ], [ -95.306681983049586, 29.668686180196634 ], [ -95.307084982755228, 29.668593180011737 ], [ -95.307331982831769, 29.668517180343436 ], [ -95.308738983245803, 29.668113180497254 ], [ -95.309579983612309, 29.667934179752571 ], [ -95.309766984149078, 29.667895179900427 ], [ -95.309984983992891, 29.667850180043715 ], [ -95.310225983599111, 29.667794179732411 ], [ -95.310463983952246, 29.667729180333634 ], [ -95.311361984257687, 29.667546179756272 ], [ -95.312260983934777, 29.667332180289922 ], [ -95.313263984755025, 29.667114179477071 ], [ -95.314501985466094, 29.666835179551391 ], [ -95.315483985253735, 29.666651179327403 ], [ -95.316839985460149, 29.666440179168386 ], [ -95.317315985958885, 29.666340179758532 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 535, "Tract": "48089750200", "Area_SqMi": 263.19250249742009, "total_2009": 216, "total_2010": 207, "total_2011": 260, "total_2012": 747, "total_2013": 768, "total_2014": 796, "total_2015": 716, "total_2016": 533, "total_2017": 508, "total_2018": 539, "total_2019": 564, "total_2020": 571, "age1": 63, "age2": 295, "age3": 216, "earn1": 96, "earn2": 185, "earn3": 293, "naics_s01": 96, "naics_s02": 79, "naics_s03": 9, "naics_s04": 7, "naics_s05": 1, "naics_s06": 56, "naics_s07": 44, "naics_s08": 15, "naics_s09": 0, "naics_s10": 0, "naics_s11": 14, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 238, "naics_s16": 0, "naics_s17": 0, "naics_s18": 12, "naics_s19": 3, "naics_s20": 0, "race1": 495, "race2": 60, "race3": 5, "race4": 8, "race5": 1, "race6": 5, "ethnicity1": 416, "ethnicity2": 158, "edu1": 116, "edu2": 142, "edu3": 160, "edu4": 93, "Shape_Length": 487159.99577538623, "Shape_Area": 7337356511.1580992, "total_2021": 556, "total_2022": 574 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.706162330780472, 29.486701096264042 ], [ -96.705816330764691, 29.486283096028579 ], [ -96.705143330260796, 29.485473095772765 ], [ -96.70444333012847, 29.484735096001199 ], [ -96.704412330234419, 29.484702095577756 ], [ -96.704345329945028, 29.484632095729484 ], [ -96.704261330493452, 29.484543095754297 ], [ -96.704110329937293, 29.484383095802162 ], [ -96.703853330417758, 29.484111096288679 ], [ -96.703620330264059, 29.48381009546258 ], [ -96.703327329692428, 29.483501096107918 ], [ -96.703315329419212, 29.48348709571172 ], [ -96.703154329744393, 29.483318095753106 ], [ -96.6982753287013, 29.478204094670009 ], [ -96.697092328024368, 29.476964094372288 ], [ -96.692852327036491, 29.472298093514834 ], [ -96.692339326792919, 29.47173309389024 ], [ -96.691060326134973, 29.470327093683558 ], [ -96.688921325869146, 29.467973092733637 ], [ -96.687589324806552, 29.466501092656859 ], [ -96.683307324224529, 29.462176091825057 ], [ -96.683121324270047, 29.461988092056604 ], [ -96.680673322850083, 29.459517091259915 ], [ -96.680606323093997, 29.459450091973313 ], [ -96.680539323445984, 29.459383091750187 ], [ -96.680483323050424, 29.459326091409128 ], [ -96.679836323004508, 29.458666091240374 ], [ -96.679189322984499, 29.458007091263067 ], [ -96.679117322775554, 29.457934091317451 ], [ -96.67906132292218, 29.457878091189727 ], [ -96.677446321821165, 29.456244090909998 ], [ -96.677363322468807, 29.456160090730307 ], [ -96.677291321728191, 29.456087091526115 ], [ -96.677213321753783, 29.456008091222699 ], [ -96.67615532123969, 29.454938090789515 ], [ -96.675096321783883, 29.45386809107303 ], [ -96.675048321723736, 29.453819090762522 ], [ -96.675000321678482, 29.453771090375632 ], [ -96.67490532089144, 29.453675090691981 ], [ -96.673597321240422, 29.452322090465252 ], [ -96.672855321185537, 29.451551090277324 ], [ -96.672112320736019, 29.450779089950096 ], [ -96.671982320907631, 29.450644090525202 ], [ -96.671852320411915, 29.450509090050353 ], [ -96.671798320664195, 29.450453089927876 ], [ -96.671744320007676, 29.450396089823126 ], [ -96.671553320776709, 29.450198090031645 ], [ -96.671363320406869, 29.450000090209549 ], [ -96.670662319930074, 29.449271089723801 ], [ -96.670037319847395, 29.448621089553363 ], [ -96.669960319969988, 29.448541089572874 ], [ -96.669902319841086, 29.448481089478957 ], [ -96.669844319780168, 29.44842108935924 ], [ -96.669796319655177, 29.448371089786864 ], [ -96.669748319577124, 29.448321090196799 ], [ -96.663870317786206, 29.442239088587034 ], [ -96.663749318344443, 29.442115088444272 ], [ -96.663641318055511, 29.442002088403946 ], [ -96.663540317633007, 29.441897088426018 ], [ -96.663439318304398, 29.441793088331245 ], [ -96.655675316033069, 29.43376708754537 ], [ -96.647911312970763, 29.425742086258083 ], [ -96.647243313034352, 29.425051085501138 ], [ -96.64466431243892, 29.422405085450247 ], [ -96.644557312372513, 29.422295085440791 ], [ -96.644451312139182, 29.422186084875257 ], [ -96.644369312598627, 29.422101084913052 ], [ -96.644287311812093, 29.422017085730179 ], [ -96.644168312355703, 29.421895085500669 ], [ -96.644049312152504, 29.421773085144341 ], [ -96.642347311924311, 29.420025085360137 ], [ -96.642249311364381, 29.419925084728817 ], [ -96.641905312015538, 29.419572084748349 ], [ -96.638589310827086, 29.41621108393181 ], [ -96.633033309304338, 29.410579083813381 ], [ -96.627477307426446, 29.404947082635356 ], [ -96.625260306818248, 29.402699082188981 ], [ -96.621557305572054, 29.398789081028312 ], [ -96.621511305851257, 29.398741081244903 ], [ -96.621466305876822, 29.398693081202062 ], [ -96.621411305726127, 29.398636081159395 ], [ -96.621355305934472, 29.398579081335829 ], [ -96.616592303945552, 29.393658080641032 ], [ -96.608296301118727, 29.385086079428113 ], [ -96.608283301215238, 29.385073078950636 ], [ -96.604239300770317, 29.380961078761011 ], [ -96.604210300110722, 29.380931078296467 ], [ -96.604086300580377, 29.380805078364798 ], [ -96.601268299436299, 29.377855077959303 ], [ -96.600723298866399, 29.377285078038785 ], [ -96.598735299154868, 29.375199077029645 ], [ -96.593928297336191, 29.370117076692107 ], [ -96.593894297129353, 29.370081076850997 ], [ -96.593745297088574, 29.369923076345444 ], [ -96.59359329681034, 29.369743076378374 ], [ -96.59357429694424, 29.369730076317733 ], [ -96.593484297552976, 29.369633076798046 ], [ -96.593398297462983, 29.369538076148903 ], [ -96.593289297200641, 29.369426076438678 ], [ -96.593184297103079, 29.369315076523133 ], [ -96.593091297163284, 29.3692130760158 ], [ -96.592738297256005, 29.368826075951443 ], [ -96.586465294903178, 29.362319075214206 ], [ -96.578307292943691, 29.353855073365899 ], [ -96.578174292344343, 29.353717073261237 ], [ -96.578041292081977, 29.3535790739232 ], [ -96.576518291620886, 29.351999073261648 ], [ -96.575320292221591, 29.350756073502872 ], [ -96.560562287558895, 29.335444070883216 ], [ -96.563988287825197, 29.332908069939059 ], [ -96.564051288485786, 29.332862070118949 ], [ -96.566576288923045, 29.331008069573588 ], [ -96.570745290113436, 29.327947068265853 ], [ -96.570773289725651, 29.327927068449306 ], [ -96.573189290491015, 29.326149068308808 ], [ -96.577003291270103, 29.323343067910422 ], [ -96.577077291009118, 29.323288067952742 ], [ -96.588776293175329, 29.314678065667259 ], [ -96.588818293952258, 29.314647065410618 ], [ -96.588940293849589, 29.314557065279015 ], [ -96.5952272955046, 29.309932064164276 ], [ -96.595364295008736, 29.309831064452734 ], [ -96.598069296057758, 29.307840063389452 ], [ -96.60666129733373, 29.301517062350261 ], [ -96.606915298018748, 29.301330061681057 ], [ -96.608656297597108, 29.300048062165967 ], [ -96.614951299848215, 29.295421060311522 ], [ -96.615337299613145, 29.295137060488162 ], [ -96.617049300226782, 29.293878060644044 ], [ -96.617141299727933, 29.293811060280742 ], [ -96.625298302080751, 29.288145058757049 ], [ -96.627060302255472, 29.286811058242407 ], [ -96.628948302627094, 29.285433058416942 ], [ -96.630384303155239, 29.284384057768055 ], [ -96.631339303306021, 29.283657057500641 ], [ -96.63227130369502, 29.282977057242604 ], [ -96.632754303120507, 29.282623057579681 ], [ -96.635608304117113, 29.280539056986548 ], [ -96.640318305372332, 29.277106056053935 ], [ -96.643392305212046, 29.274870055903833 ], [ -96.643471305879331, 29.274813055180882 ], [ -96.64931930674787, 29.270552054824734 ], [ -96.656119308235404, 29.265597052994561 ], [ -96.6584733084985, 29.263881052938732 ], [ -96.649353306506853, 29.255678051711904 ], [ -96.64627030554675, 29.252903051304017 ], [ -96.646121305866956, 29.252771051228617 ], [ -96.645972305855963, 29.252638050993887 ], [ -96.643323304256342, 29.250255050125975 ], [ -96.642310304145127, 29.249581050437616 ], [ -96.640429303368791, 29.247904050251009 ], [ -96.640322304110697, 29.247809050304181 ], [ -96.640083303732538, 29.247936049748308 ], [ -96.635728302781061, 29.250255051099888 ], [ -96.629998301692851, 29.253374052031326 ], [ -96.627746301194534, 29.254598052355753 ], [ -96.626312300723683, 29.255381052426326 ], [ -96.626298300926408, 29.255389052158225 ], [ -96.625258300189174, 29.255956052042336 ], [ -96.622820300069364, 29.257170052823771 ], [ -96.617587298823338, 29.259775053193447 ], [ -96.617535298520551, 29.259801053288033 ], [ -96.617170298340525, 29.259983053609517 ], [ -96.612401297010521, 29.262143054224762 ], [ -96.604348295299076, 29.265785054800212 ], [ -96.60432829578923, 29.265800055387981 ], [ -96.604266295233217, 29.265828054839261 ], [ -96.600181294774316, 29.268102055112536 ], [ -96.600161294159463, 29.268113055133853 ], [ -96.599993293976098, 29.268207055622355 ], [ -96.595361293642256, 29.270787055947888 ], [ -96.586994291799385, 29.275447057919468 ], [ -96.586960291724253, 29.275465057126524 ], [ -96.586696291328863, 29.275612057108312 ], [ -96.583209290264307, 29.277554058454378 ], [ -96.581603290329838, 29.278447058392974 ], [ -96.580992290208755, 29.278787058186623 ], [ -96.573838288437898, 29.282770059483532 ], [ -96.573669288101527, 29.282864059856131 ], [ -96.57323728863814, 29.283105059353588 ], [ -96.572422288306768, 29.283559059220629 ], [ -96.57241128840856, 29.283572059209561 ], [ -96.57085328746281, 29.284432060050975 ], [ -96.567221287317551, 29.28645505996478 ], [ -96.56712728722006, 29.286507060534678 ], [ -96.557319284209072, 29.291968061884695 ], [ -96.551700283087058, 29.295098062378745 ], [ -96.537901279751495, 29.302782065069632 ], [ -96.531904279182271, 29.306122065683969 ], [ -96.52526027752441, 29.309823066826045 ], [ -96.52464727685576, 29.31014906668398 ], [ -96.5243042775585, 29.310343066298188 ], [ -96.513158274410841, 29.316556068351986 ], [ -96.513140275068196, 29.31655306862935 ], [ -96.513110274722038, 29.316583067911814 ], [ -96.512783274997048, 29.316759067925716 ], [ -96.512749274143673, 29.316767068519731 ], [ -96.51096527449684, 29.317779068425629 ], [ -96.510810274385165, 29.317865068856122 ], [ -96.505165272353224, 29.321011069054425 ], [ -96.504915272367285, 29.321150069536664 ], [ -96.50485827224648, 29.321182069336334 ], [ -96.500279271698574, 29.323737069819913 ], [ -96.496814270937193, 29.325808070724001 ], [ -96.496738270962581, 29.325854070736046 ], [ -96.49672527070588, 29.325862070490761 ], [ -96.496633270868188, 29.325911070810733 ], [ -96.493971270060058, 29.32737507066166 ], [ -96.491931269751248, 29.3284970716151 ], [ -96.491487269541068, 29.328741071077712 ], [ -96.490024269282344, 29.329545072099226 ], [ -96.481985267066264, 29.3340240732716 ], [ -96.481936267210557, 29.334052072764774 ], [ -96.481808267907596, 29.334123073232398 ], [ -96.481758267831253, 29.33415107274023 ], [ -96.477157265929051, 29.336702073812837 ], [ -96.47707526641554, 29.336748074001086 ], [ -96.466766263783725, 29.342465074721815 ], [ -96.466591264105617, 29.342562074838462 ], [ -96.466537264022548, 29.342592074959619 ], [ -96.461077263022602, 29.345637076022246 ], [ -96.440734258433579, 29.35699007857454 ], [ -96.438587257706203, 29.358188079153042 ], [ -96.438544257947257, 29.358212078918946 ], [ -96.438513257305459, 29.358229078788963 ], [ -96.433342256656871, 29.361111080204424 ], [ -96.424947254680689, 29.365806081499404 ], [ -96.424790254914825, 29.365894080969166 ], [ -96.419082253415311, 29.369086081683395 ], [ -96.41835825271518, 29.369491082258293 ], [ -96.418224252522748, 29.369566082104345 ], [ -96.418204253096732, 29.369577082525762 ], [ -96.418183252717498, 29.369589082541122 ], [ -96.417672253109771, 29.36987508208945 ], [ -96.417657252278772, 29.369883082545698 ], [ -96.417519252267439, 29.369960081948555 ], [ -96.412270251761242, 29.372896082771422 ], [ -96.411587251099263, 29.373279083063615 ], [ -96.410808251018508, 29.373714082875491 ], [ -96.410646251181532, 29.373803083720137 ], [ -96.408015250397654, 29.375251083751223 ], [ -96.407750250453873, 29.375387083302062 ], [ -96.403330249767436, 29.377969084366121 ], [ -96.402309248857293, 29.378549084538761 ], [ -96.402275249174224, 29.378565084603508 ], [ -96.402266249105708, 29.378570084592869 ], [ -96.401478249211848, 29.379013084405198 ], [ -96.401405249233036, 29.379055084293466 ], [ -96.401331249250518, 29.379096084529365 ], [ -96.400965249104345, 29.379302084456377 ], [ -96.394965247115891, 29.38267608552713 ], [ -96.388917246229781, 29.386079086489335 ], [ -96.385352245397257, 29.388087086868389 ], [ -96.385341245615436, 29.388093087201337 ], [ -96.383833245517593, 29.388941087254981 ], [ -96.383791244749446, 29.388964087530866 ], [ -96.382756244347917, 29.389525087607495 ], [ -96.38259824483454, 29.389611087522869 ], [ -96.377791244105381, 29.392212088312558 ], [ -96.377379243694648, 29.392435088325932 ], [ -96.376049243031687, 29.393146088691058 ], [ -96.375861243320898, 29.393253087967402 ], [ -96.375830243072897, 29.393271088050259 ], [ -96.375821243465353, 29.393276088109722 ], [ -96.367868241747175, 29.397098089898815 ], [ -96.367574241099334, 29.397239089576786 ], [ -96.363799239970916, 29.399053089989202 ], [ -96.363401240312953, 29.39924409015374 ], [ -96.362462240217624, 29.399695089821428 ], [ -96.362415240588476, 29.399722090405934 ], [ -96.361383239723665, 29.400490090311489 ], [ -96.360247239718888, 29.400963090041568 ], [ -96.353245238451947, 29.404717091918471 ], [ -96.353201237807696, 29.404741091884034 ], [ -96.353114237517019, 29.40477409162094 ], [ -96.352224238122247, 29.405117091190956 ], [ -96.352162237380526, 29.405141091324666 ], [ -96.351222237412728, 29.40553709160131 ], [ -96.351207237722846, 29.405541091955246 ], [ -96.350853237128177, 29.405633091521008 ], [ -96.350593237639984, 29.405701092087725 ], [ -96.349224237184131, 29.406057091548483 ], [ -96.348934237111592, 29.406396091704877 ], [ -96.348628237215095, 29.406797091876875 ], [ -96.347563236533333, 29.410922093205947 ], [ -96.347489236432608, 29.411210092686431 ], [ -96.347452237146015, 29.411351092848221 ], [ -96.3473652367841, 29.411574093380263 ], [ -96.348988237425871, 29.412453093420911 ], [ -96.349568237204849, 29.412836093184044 ], [ -96.349929237755447, 29.413110093260958 ], [ -96.350498237969987, 29.413679093158631 ], [ -96.350914237882463, 29.414084093216079 ], [ -96.351177237943631, 29.414445093213644 ], [ -96.351319238420373, 29.41473009402193 ], [ -96.351681238393752, 29.41554809403474 ], [ -96.352027238623137, 29.416855094150865 ], [ -96.352723238795505, 29.418626094399016 ], [ -96.353076238392433, 29.419197094571331 ], [ -96.35343423878308, 29.419637094450316 ], [ -96.354095238634073, 29.420418094712968 ], [ -96.354593238924537, 29.420849094687551 ], [ -96.355167239008182, 29.421130094996474 ], [ -96.35566923901186, 29.421293094410569 ], [ -96.356269239302961, 29.421421094735177 ], [ -96.356597239268666, 29.421440094989883 ], [ -96.35667123948248, 29.421430094690528 ], [ -96.356882239177466, 29.421403095176874 ], [ -96.357420239500414, 29.421227094544335 ], [ -96.358295240471918, 29.420825094953273 ], [ -96.3589542403857, 29.420621094095718 ], [ -96.359375239764006, 29.420399094043233 ], [ -96.360626240655108, 29.420150094781288 ], [ -96.362795241396526, 29.419954094483998 ], [ -96.36450724176035, 29.419742094358309 ], [ -96.365865241860519, 29.41976209386231 ], [ -96.366710242548294, 29.419920093952125 ], [ -96.367515242599438, 29.420279094287658 ], [ -96.368575242772607, 29.421127093865941 ], [ -96.368870242375735, 29.42164209406301 ], [ -96.36903324242202, 29.422087094273007 ], [ -96.369170242545209, 29.422688094284261 ], [ -96.369180242430161, 29.423012094527436 ], [ -96.369106242685902, 29.42354909511382 ], [ -96.368886243275483, 29.424318094821555 ], [ -96.368654242908377, 29.424896095475489 ], [ -96.368194242524737, 29.42564709483322 ], [ -96.367575242961138, 29.426410095426881 ], [ -96.366850242433387, 29.42681509564196 ], [ -96.366643242487442, 29.426875095220346 ], [ -96.366538241861605, 29.426905095538501 ], [ -96.364965242103224, 29.427533095489505 ], [ -96.364492241337814, 29.427657095918185 ], [ -96.363777241734425, 29.427933096219466 ], [ -96.363076241867674, 29.428144096372133 ], [ -96.361768240894463, 29.428658096164821 ], [ -96.36125024072453, 29.428951095937954 ], [ -96.360063240749824, 29.429802096287876 ], [ -96.359377240578738, 29.430417096325943 ], [ -96.358569240203536, 29.431231096293605 ], [ -96.358239239976257, 29.431442097073724 ], [ -96.357561239970494, 29.432157096786288 ], [ -96.357470240724425, 29.432430097162662 ], [ -96.357433239772149, 29.432785097421544 ], [ -96.357454240268439, 29.433140097085126 ], [ -96.357094239725583, 29.433989097580987 ], [ -96.356728240270314, 29.435278097975651 ], [ -96.356709240497892, 29.43563809764234 ], [ -96.356864240455749, 29.436345098132694 ], [ -96.357303240060688, 29.437238098391994 ], [ -96.357533240471597, 29.437492098433033 ], [ -96.357900240760898, 29.437722098340895 ], [ -96.358447240581611, 29.437676098337036 ], [ -96.358512240735038, 29.437671097557651 ], [ -96.358826240978303, 29.437570097542533 ], [ -96.358860240371556, 29.437559098260621 ], [ -96.358945240534609, 29.437527098236817 ], [ -96.360025240646621, 29.437124098100899 ], [ -96.360180241447708, 29.437081098003123 ], [ -96.360490241618265, 29.436904097965872 ], [ -96.361146241689383, 29.436365098094836 ], [ -96.361420241035418, 29.435804097893389 ], [ -96.36154924108105, 29.435278097006051 ], [ -96.361539241406931, 29.434993097440731 ], [ -96.361863241598783, 29.433877097105864 ], [ -96.362381242023503, 29.433412097079351 ], [ -96.363249241555351, 29.432865097150398 ], [ -96.365241241855941, 29.4321780971054 ], [ -96.365638241864161, 29.432084096742265 ], [ -96.366651242848064, 29.43193009701848 ], [ -96.366854242238233, 29.431866096931703 ], [ -96.367038242414338, 29.431807096598568 ], [ -96.367734242479699, 29.431763096329586 ], [ -96.368103243118981, 29.431790096694044 ], [ -96.369327242877802, 29.432149096577401 ], [ -96.369751242964796, 29.432372096297602 ], [ -96.370806243938318, 29.433177096889032 ], [ -96.371025244065635, 29.433392096939151 ], [ -96.371347243525463, 29.434054096685575 ], [ -96.371507244266539, 29.434761097428389 ], [ -96.371521243655238, 29.435265096845338 ], [ -96.37146024372332, 29.436019096989643 ], [ -96.371370243556726, 29.436435097664187 ], [ -96.371281244245608, 29.436636097204698 ], [ -96.371230243546194, 29.437209097148454 ], [ -96.370828243493278, 29.438229097933327 ], [ -96.370616244362438, 29.438659097538284 ], [ -96.37029024333259, 29.439128098133871 ], [ -96.370081244131228, 29.439427098233306 ], [ -96.369789243889599, 29.440139098153658 ], [ -96.369577243638673, 29.440983098630102 ], [ -96.369565243645923, 29.441595098482818 ], [ -96.3696422435887, 29.442095098970295 ], [ -96.369838243941118, 29.442682098392567 ], [ -96.370083243774559, 29.443217099106189 ], [ -96.370459244366288, 29.443859099238438 ], [ -96.370893243744732, 29.444427098884322 ], [ -96.371546244346661, 29.445070099038674 ], [ -96.371884244967291, 29.445331099445195 ], [ -96.372404244150374, 29.445547099385934 ], [ -96.372533244575379, 29.445579099514308 ], [ -96.372997244627058, 29.445696098793974 ], [ -96.373402244662998, 29.445666099209909 ], [ -96.373876244690095, 29.445461098666065 ], [ -96.375598245017756, 29.446515099494569 ], [ -96.376373245362373, 29.446851099661178 ], [ -96.376889246171913, 29.447075098870684 ], [ -96.378056245642583, 29.447432099275709 ], [ -96.379208246446893, 29.447710099506825 ], [ -96.380786246918433, 29.447909099578879 ], [ -96.381287246597452, 29.447972099382095 ], [ -96.382168247420609, 29.448160099397711 ], [ -96.382671247333377, 29.448318099358389 ], [ -96.38321124711544, 29.448541099804789 ], [ -96.383608248010063, 29.448705099299463 ], [ -96.384497247767484, 29.449500099351859 ], [ -96.384826247808292, 29.449716099276547 ], [ -96.385198248406809, 29.449870100032427 ], [ -96.385989248305208, 29.450067099759686 ], [ -96.38711024823948, 29.450115099619911 ], [ -96.38713624884862, 29.45011709999417 ], [ -96.388039249276275, 29.450045099790604 ], [ -96.389357248752859, 29.450036099423709 ], [ -96.391250249662207, 29.450086099088072 ], [ -96.391621249380506, 29.450096099213106 ], [ -96.392801250317291, 29.45025409957092 ], [ -96.393322250199148, 29.450468099274094 ], [ -96.393869250460241, 29.450620099098128 ], [ -96.394838251030109, 29.45109809912751 ], [ -96.3953552502267, 29.451507099711005 ], [ -96.396008250503144, 29.452294099934509 ], [ -96.396247250555518, 29.452713099522796 ], [ -96.396414250747227, 29.453096100154085 ], [ -96.396571251255054, 29.453454099911411 ], [ -96.396655251281288, 29.453770099727212 ], [ -96.396715251573298, 29.45437910057176 ], [ -96.396719250702219, 29.45461109988668 ], [ -96.396727251443835, 29.455028099824332 ], [ -96.396647251446765, 29.456179100902293 ], [ -96.396704251434286, 29.457078100961763 ], [ -96.396813251280065, 29.457424100779939 ], [ -96.396801251446064, 29.457856100557862 ], [ -96.396918251625223, 29.458312100780905 ], [ -96.396894251346637, 29.458816100697533 ], [ -96.396794251436191, 29.459350101533083 ], [ -96.396684251866489, 29.459735101027654 ], [ -96.396512250928069, 29.460062101330209 ], [ -96.395704251447611, 29.46140010150965 ], [ -96.395354251545413, 29.461846101737034 ], [ -96.394960250807785, 29.462300101440373 ], [ -96.394733250741538, 29.462454101896373 ], [ -96.394394250483629, 29.46281110197593 ], [ -96.393577250808789, 29.463677101672655 ], [ -96.393366250937461, 29.46384910224177 ], [ -96.392753251063951, 29.464275102288333 ], [ -96.391675250512137, 29.464872102024245 ], [ -96.391609250030854, 29.464894102242454 ], [ -96.39134425072254, 29.465100102101481 ], [ -96.390247249553823, 29.465244102740201 ], [ -96.390004250055327, 29.465290102409263 ], [ -96.389931250358785, 29.465286102508422 ], [ -96.389224249453093, 29.465243102993835 ], [ -96.388367249291107, 29.465342102723014 ], [ -96.387032249107079, 29.465714102810868 ], [ -96.38575424842287, 29.466214102777833 ], [ -96.384891248499926, 29.46663710299476 ], [ -96.384030248259435, 29.467192103330383 ], [ -96.383665248535422, 29.467626103380546 ], [ -96.383405247924827, 29.468116103072976 ], [ -96.383275248438764, 29.468753103574766 ], [ -96.383313248830234, 29.468971103130293 ], [ -96.383366248865769, 29.469273103262847 ], [ -96.383488248195277, 29.46966710348358 ], [ -96.383770248396033, 29.470056103640413 ], [ -96.384109248911173, 29.47025610422142 ], [ -96.38443324826936, 29.470586104256864 ], [ -96.385263248770798, 29.471288104167328 ], [ -96.385844248692749, 29.471941104470403 ], [ -96.386034248818774, 29.472301103992827 ], [ -96.386139249279239, 29.47264910404936 ], [ -96.386294249842877, 29.47357510431954 ], [ -96.386293249457367, 29.473957104465658 ], [ -96.386155249737129, 29.474513104606707 ], [ -96.385840248942117, 29.475178104940074 ], [ -96.385534249213208, 29.475470104770974 ], [ -96.385355249102361, 29.475711104691467 ], [ -96.384834249552952, 29.476060104943702 ], [ -96.38373024841313, 29.476532105386056 ], [ -96.383299248650374, 29.476653104974528 ], [ -96.382158248343757, 29.476792105124137 ], [ -96.380830248018896, 29.477041105572713 ], [ -96.378978248087506, 29.477198105355296 ], [ -96.377799247521509, 29.477298105132448 ], [ -96.376849246659447, 29.477730105877672 ], [ -96.376625247323943, 29.4778881054085 ], [ -96.376326247309478, 29.478231105215066 ], [ -96.376081246461169, 29.478360106047493 ], [ -96.375226246952906, 29.479188106257141 ], [ -96.374913246721533, 29.479733106015029 ], [ -96.37471724722802, 29.480454105938577 ], [ -96.374618247061775, 29.481350106119251 ], [ -96.374667246652692, 29.481744106642793 ], [ -96.375019246949904, 29.482434106771613 ], [ -96.375547247458684, 29.483031106378625 ], [ -96.376077246796186, 29.483429106990286 ], [ -96.376667247226848, 29.483684106803601 ], [ -96.376926247016499, 29.483767106691531 ], [ -96.377323247403424, 29.48389310720836 ], [ -96.37788024779185, 29.484265107056306 ], [ -96.378082248148289, 29.484446107127241 ], [ -96.378253248303807, 29.484599107329842 ], [ -96.378647248404178, 29.484792106512071 ], [ -96.378958247713143, 29.485339107425869 ], [ -96.379121247743271, 29.48589610674011 ], [ -96.379129248054269, 29.486112106958725 ], [ -96.379033248183745, 29.486645107508199 ], [ -96.379167248245182, 29.487007107699117 ], [ -96.379777248719336, 29.488068107924239 ], [ -96.38057824828293, 29.489236108007926 ], [ -96.381057249045355, 29.489568107585168 ], [ -96.381807248874068, 29.489947107904626 ], [ -96.383216249765454, 29.490454107628043 ], [ -96.384142249338055, 29.490629107855213 ], [ -96.384553249925716, 29.490647107817157 ], [ -96.385121249903747, 29.490737107838129 ], [ -96.385771249709848, 29.490656107794841 ], [ -96.386131249854969, 29.490570107586638 ], [ -96.386525250513586, 29.490476108027551 ], [ -96.387718250808177, 29.490433107561085 ], [ -96.38812325076438, 29.490497107709079 ], [ -96.388628250210672, 29.490652108005161 ], [ -96.389172251318641, 29.490972107854216 ], [ -96.389525250951849, 29.491325108251573 ], [ -96.389932250965231, 29.491910108407804 ], [ -96.390128250777295, 29.49238210787794 ], [ -96.390109250765548, 29.49276110782516 ], [ -96.390082251380605, 29.493318107828888 ], [ -96.38999425123032, 29.493816108769142 ], [ -96.38958625127934, 29.494795108620973 ], [ -96.389486251359827, 29.495292108559831 ], [ -96.38942325096528, 29.496047108838965 ], [ -96.389495251473036, 29.49640110912765 ], [ -96.389714251424266, 29.496625108512468 ], [ -96.389924251269065, 29.49705510916133 ], [ -96.390170251376048, 29.49822610967745 ], [ -96.390315251055583, 29.499408109287074 ], [ -96.390436251065466, 29.499827109494639 ], [ -96.390811251641225, 29.500588109450614 ], [ -96.39134625134227, 29.501134109727555 ], [ -96.39167125166027, 29.501289110236492 ], [ -96.39179225227339, 29.501326109743168 ], [ -96.393410252770963, 29.501537109552711 ], [ -96.394656252357535, 29.501822109773702 ], [ -96.396126253219379, 29.502092109393168 ], [ -96.396383252685837, 29.502113109785668 ], [ -96.396894253480028, 29.502256109402143 ], [ -96.398125253389779, 29.50266911012363 ], [ -96.398306254038772, 29.502837109463368 ], [ -96.398379254143691, 29.502905110317165 ], [ -96.398744253957659, 29.503139109522035 ], [ -96.399217253458659, 29.503259110051552 ], [ -96.400111254219752, 29.503705109826356 ], [ -96.400690254408715, 29.503901110273606 ], [ -96.400993254694725, 29.504004110203692 ], [ -96.402037254399929, 29.50420510983891 ], [ -96.403385255039495, 29.504652110551813 ], [ -96.404406254966602, 29.505320110302559 ], [ -96.404704255900356, 29.505705110043653 ], [ -96.405981255498929, 29.506558110541565 ], [ -96.407246256596409, 29.507588110127774 ], [ -96.407986256863438, 29.508361110307824 ], [ -96.408237256821494, 29.508854111156772 ], [ -96.408547256892348, 29.509561110813848 ], [ -96.408741257056192, 29.510279110799349 ], [ -96.408784256754274, 29.511035111336795 ], [ -96.408747256768095, 29.51258511148291 ], [ -96.408576256952799, 29.513803112125306 ], [ -96.408312256734533, 29.514931111929059 ], [ -96.408199257190134, 29.51519211215021 ], [ -96.408178256773212, 29.515286111757867 ], [ -96.407916257054495, 29.516466112112457 ], [ -96.40748725683622, 29.517519112689484 ], [ -96.407245256901277, 29.517977112248346 ], [ -96.407175256090753, 29.518050113085419 ], [ -96.406953256566212, 29.518278112624987 ], [ -96.406401256275331, 29.518656112847413 ], [ -96.406014256767719, 29.518862113284946 ], [ -96.404795255864499, 29.519197112968349 ], [ -96.404760255918745, 29.519207112917396 ], [ -96.403788255399675, 29.519386112857948 ], [ -96.402095255310698, 29.519779113106498 ], [ -96.401122255078761, 29.52007711332752 ], [ -96.400811254786817, 29.520191113527691 ], [ -96.400019254483794, 29.520480113137761 ], [ -96.399283254789879, 29.520807113666969 ], [ -96.398291254881457, 29.521389114046038 ], [ -96.398095254254812, 29.521573113364632 ], [ -96.39685325463077, 29.522465113592762 ], [ -96.396523254583215, 29.522787114044892 ], [ -96.396337253936167, 29.523067113975952 ], [ -96.396185254516112, 29.523548114464326 ], [ -96.396062254533803, 29.524188114739335 ], [ -96.396058253823057, 29.524692114261171 ], [ -96.396291254617239, 29.525036114751103 ], [ -96.396665253919437, 29.525587114785594 ], [ -96.397197254666665, 29.525855114752673 ], [ -96.399446254642669, 29.526226114894218 ], [ -96.401919255284312, 29.52677911426186 ], [ -96.403319256477999, 29.527210115041616 ], [ -96.404049256480292, 29.527617115063027 ], [ -96.405177256037703, 29.528405114404428 ], [ -96.405741256790563, 29.528929114824045 ], [ -96.406314257328958, 29.529842115150622 ], [ -96.406463256774231, 29.530291115196096 ], [ -96.406421257153937, 29.530867115468659 ], [ -96.406342256664047, 29.531220115639915 ], [ -96.406193257399579, 29.53145911540555 ], [ -96.406117257138462, 29.531813115839466 ], [ -96.405895256575874, 29.532357115497632 ], [ -96.405037257035431, 29.533458116230577 ], [ -96.404424256255396, 29.533820115775413 ], [ -96.404084256350671, 29.533986115690748 ], [ -96.402696256301311, 29.534664115856057 ], [ -96.402485256343908, 29.534817116058207 ], [ -96.401974255712318, 29.534954116097108 ], [ -96.401695255920572, 29.535108115981753 ], [ -96.401355255984669, 29.535422116193075 ], [ -96.400673255402509, 29.536279116354539 ], [ -96.400226255902098, 29.536927116405273 ], [ -96.399819255688584, 29.537637116873128 ], [ -96.399590255590425, 29.538139117455792 ], [ -96.398865255329596, 29.54028211758439 ], [ -96.398291255472401, 29.542274117611552 ], [ -96.398113255601899, 29.542512118276754 ], [ -96.397869254969137, 29.543008118271601 ], [ -96.397834254867007, 29.543294118341809 ], [ -96.397954255260871, 29.543971117994758 ], [ -96.397907255254594, 29.544329118185601 ], [ -96.397920255844625, 29.545046118430921 ], [ -96.398195255267424, 29.545422118102216 ], [ -96.398183255271221, 29.546900118429495 ], [ -96.398393255500181, 29.547633119249895 ], [ -96.398668256169159, 29.54815711896374 ], [ -96.398726255530704, 29.548291118965579 ], [ -96.399059255426465, 29.549067118927333 ], [ -96.399148255968825, 29.549381119192514 ], [ -96.399681256280317, 29.550312119844076 ], [ -96.400053256346766, 29.551114119804151 ], [ -96.400434256579658, 29.552068119417839 ], [ -96.400851256527332, 29.553425119726001 ], [ -96.401298256775021, 29.554395120336153 ], [ -96.40144625649539, 29.554916120764094 ], [ -96.401904256869926, 29.556529120286722 ], [ -96.402013256778545, 29.557356120971097 ], [ -96.402033256693969, 29.557835120544542 ], [ -96.402045256814262, 29.557919120979058 ], [ -96.402013256794078, 29.557990120870471 ], [ -96.401939256849005, 29.558533120945498 ], [ -96.401723256868465, 29.55887912096285 ], [ -96.401368257239966, 29.559725121358817 ], [ -96.401180256504119, 29.560028121603114 ], [ -96.400244256428095, 29.562142121500404 ], [ -96.399679256524578, 29.563147122301743 ], [ -96.399490257019423, 29.563893122259529 ], [ -96.399502256689857, 29.564882122699398 ], [ -96.399895257017462, 29.566371122644174 ], [ -96.400407257128379, 29.56731512250494 ], [ -96.400631257027712, 29.567619123274049 ], [ -96.401618257869501, 29.568636122987932 ], [ -96.402268257407584, 29.569382123253419 ], [ -96.402849257835783, 29.569990123304315 ], [ -96.403210257849921, 29.570283123611187 ], [ -96.40374225803707, 29.570926123656971 ], [ -96.405006258772843, 29.572164124075435 ], [ -96.406274258710681, 29.573514123945365 ], [ -96.407308258942209, 29.574037123974676 ], [ -96.409621260072853, 29.574904123832937 ], [ -96.410656259955417, 29.57535312462818 ], [ -96.411980260123869, 29.576018124521436 ], [ -96.41327426101661, 29.57679212426488 ], [ -96.416415261481561, 29.579131124945487 ], [ -96.417142262092838, 29.579828125275402 ], [ -96.417212262035989, 29.579860124548809 ], [ -96.417615262417812, 29.580282124549317 ], [ -96.417918262011057, 29.580572124944243 ], [ -96.41798726232291, 29.580638124859831 ], [ -96.418073261705629, 29.580721124574882 ], [ -96.41844526207629, 29.581141124678794 ], [ -96.420474262403118, 29.583429125042343 ], [ -96.422578263193415, 29.586159126344775 ], [ -96.422669263482078, 29.586310126195428 ], [ -96.423134264142675, 29.586950125791585 ], [ -96.423919263400052, 29.58823712676914 ], [ -96.425188264806891, 29.589566126353425 ], [ -96.426143264132861, 29.590362127003477 ], [ -96.426672264953652, 29.590707126507187 ], [ -96.427358264468182, 29.591039126389191 ], [ -96.428154265282316, 29.591350127225258 ], [ -96.429075265371694, 29.591709127113997 ], [ -96.430844265916875, 29.592201126901873 ], [ -96.431772265716745, 29.592380127325956 ], [ -96.433194266266867, 29.592556127269816 ], [ -96.436780267724444, 29.592709127115366 ], [ -96.439003267894037, 29.592856127046836 ], [ -96.440695268809009, 29.592900126311271 ], [ -96.442305268260597, 29.592880126944127 ], [ -96.442921269094057, 29.592824126724647 ], [ -96.445066269158019, 29.592850126161885 ], [ -96.445559269195613, 29.59281312673642 ], [ -96.447127269819404, 29.592835126541459 ], [ -96.447458269697862, 29.59279212652665 ], [ -96.447780269903319, 29.592853126068029 ], [ -96.448811270186596, 29.592876126008452 ], [ -96.449401270199658, 29.593036126186128 ], [ -96.450178270443999, 29.593121126430812 ], [ -96.450781270730488, 29.593355126457393 ], [ -96.452741271974205, 29.594789126808578 ], [ -96.453361272166504, 29.595509127188098 ], [ -96.454258272113591, 29.596398127291646 ], [ -96.455479272267667, 29.597758127549376 ], [ -96.455996272524601, 29.598170127460008 ], [ -96.456456272615739, 29.598721127715031 ], [ -96.456526272755795, 29.598780127029052 ], [ -96.45669227242648, 29.598920127705156 ], [ -96.456828272536299, 29.599141127010423 ], [ -96.456950272559411, 29.599512127859228 ], [ -96.456959272459429, 29.599541127802787 ], [ -96.457239272989867, 29.599480127641215 ], [ -96.457377273152744, 29.599425127557641 ], [ -96.457421272696877, 29.599430127728805 ], [ -96.457440273228386, 29.599447127851573 ], [ -96.45744627241433, 29.599518127305835 ], [ -96.457472273361873, 29.599568127942664 ], [ -96.457522273222864, 29.599601127891454 ], [ -96.457616273249258, 29.599634127284677 ], [ -96.4576732732083, 29.599628127663376 ], [ -96.457698273181748, 29.599617127622146 ], [ -96.457755273025938, 29.599557127051156 ], [ -96.457805272920311, 29.599557127639265 ], [ -96.457849273072057, 29.599601127536062 ], [ -96.457912272505723, 29.599711127703728 ], [ -96.457937273385056, 29.599848127451772 ], [ -96.457924273278138, 29.599958127654116 ], [ -96.457843272902366, 29.600096127756579 ], [ -96.457824273288054, 29.600145128019186 ], [ -96.457818273013956, 29.600183127630565 ], [ -96.457824272962625, 29.600249127314985 ], [ -96.458031273446011, 29.600568127292657 ], [ -96.45815127314404, 29.600695128155504 ], [ -96.458157273234377, 29.600739128019111 ], [ -96.458145272609002, 29.600783127963009 ], [ -96.458120273083651, 29.600821127642249 ], [ -96.458025273572389, 29.60089812758082 ], [ -96.458006273287808, 29.600931127750975 ], [ -96.45805727339264, 29.601492127996924 ], [ -96.458051272700814, 29.601569127435994 ], [ -96.458076273257817, 29.601602127818836 ], [ -96.45815727323037, 29.601640127740254 ], [ -96.458164273171093, 29.601717127772808 ], [ -96.45834027276689, 29.602086127666244 ], [ -96.458365273387145, 29.602168128213695 ], [ -96.458353273699018, 29.602283128193079 ], [ -96.45813227293084, 29.602525127865722 ], [ -96.458095272820657, 29.602553128394415 ], [ -96.45808227280115, 29.602580128244686 ], [ -96.45807027356075, 29.602789127946451 ], [ -96.458082272683654, 29.602822127698538 ], [ -96.45818927298555, 29.602976128268192 ], [ -96.458214273521577, 29.603037128086022 ], [ -96.458296272767271, 29.603081128515633 ], [ -96.45845327310748, 29.603130128236341 ], [ -96.45859827323487, 29.603158128342095 ], [ -96.458780273366074, 29.603136127800997 ], [ -96.459321273349005, 29.603037128003777 ], [ -96.459422273209654, 29.602982128063069 ], [ -96.459447273434265, 29.602949127916855 ], [ -96.459498273222337, 29.602927128094287 ], [ -96.459523273993852, 29.602927128065048 ], [ -96.4595922736288, 29.602976127901364 ], [ -96.459642273304894, 29.603070128379411 ], [ -96.459649273706077, 29.603240128051283 ], [ -96.459667273668956, 29.603311128625769 ], [ -96.459699273633859, 29.603361128024257 ], [ -96.45988127408323, 29.603421128107925 ], [ -96.460108273424069, 29.603608128165355 ], [ -96.460190273847928, 29.603757128352072 ], [ -96.460120273441703, 29.603933128076395 ], [ -96.460114274143791, 29.603966128020893 ], [ -96.460121273397235, 29.604120128417851 ], [ -96.459982274055093, 29.604361128097114 ], [ -96.459976274006848, 29.604389128276569 ], [ -96.460026273744319, 29.604642128491985 ], [ -96.460070273649691, 29.604763128083935 ], [ -96.460127273298042, 29.604785128630027 ], [ -96.460209274087845, 29.604779128632224 ], [ -96.46033527358145, 29.604735128143826 ], [ -96.460404274313589, 29.60473012851466 ], [ -96.460448273808566, 29.604741128229961 ], [ -96.460473274140767, 29.604785128441275 ], [ -96.460523273781803, 29.604983128555862 ], [ -96.460517273814631, 29.605027128829889 ], [ -96.460492274133102, 29.605065128914813 ], [ -96.460442273774518, 29.605186128528537 ], [ -96.460423273495579, 29.605219128106977 ], [ -96.460391273529979, 29.605247128495126 ], [ -96.460121273621468, 29.605367128175956 ], [ -96.460001273289507, 29.605384128229719 ], [ -96.459831273227692, 29.605373128966054 ], [ -96.459800273546819, 29.605362128560511 ], [ -96.45968027330251, 29.605280128928616 ], [ -96.459599273237387, 29.60528012896642 ], [ -96.459529274007011, 29.605291128775342 ], [ -96.459422273454237, 29.605324128821689 ], [ -96.459259273279116, 29.605472128990002 ], [ -96.459246273951635, 29.605555128767143 ], [ -96.459102273935855, 29.605928128640443 ], [ -96.459089273864677, 29.606005128693003 ], [ -96.459095273474517, 29.606038129006233 ], [ -96.459183273258915, 29.606126128569045 ], [ -96.459404274050755, 29.606286129017391 ], [ -96.459454273943322, 29.606302129000269 ], [ -96.45958027373328, 29.606297128985403 ], [ -96.459819273422411, 29.606269129128531 ], [ -96.459901273962402, 29.606269128982575 ], [ -96.459951274277316, 29.606280129046052 ], [ -96.460014273371442, 29.606368129068688 ], [ -96.460001273399513, 29.606467128951227 ], [ -96.460033273902368, 29.606511128533388 ], [ -96.460303273605192, 29.606681129251417 ], [ -96.460543274246035, 29.606863128921752 ], [ -96.460580273571935, 29.606923128537026 ], [ -96.460599273513964, 29.606978128858405 ], [ -96.460637274283755, 29.607028129029857 ], [ -96.460737274079094, 29.607061128878954 ], [ -96.460832273707254, 29.607105128857906 ], [ -96.460951274126018, 29.60713812900449 ], [ -96.461128274425107, 29.607160129069772 ], [ -96.461203274662424, 29.607160128858684 ], [ -96.461260273713435, 29.607149128791448 ], [ -96.461360273854922, 29.60711012923797 ], [ -96.461581273817472, 29.606995128614223 ], [ -96.46168727393696, 29.606956128928392 ], [ -96.461700274493765, 29.607006129251292 ], [ -96.46167527443788, 29.60731312896484 ], [ -96.461706274137697, 29.607357128989428 ], [ -96.461914274399348, 29.607528128822928 ], [ -96.461964273910169, 29.607550129326651 ], [ -96.462008274312765, 29.607610128643156 ], [ -96.462096273924601, 29.607654129399997 ], [ -96.462285274062197, 29.607693128986526 ], [ -96.462619275012472, 29.607709129287684 ], [ -96.462675274796808, 29.607737129270202 ], [ -96.462707274761598, 29.607781129062801 ], [ -96.462807274671931, 29.607819128875896 ], [ -96.462908274184841, 29.607885128938872 ], [ -96.462977274261775, 29.607918128635543 ], [ -96.463034274410603, 29.607935129058436 ], [ -96.463160275104073, 29.607951129058893 ], [ -96.463179274409001, 29.607984129220284 ], [ -96.463317274887515, 29.608077128671724 ], [ -96.46351227442851, 29.608061129430663 ], [ -96.463537275223871, 29.608066129265765 ], [ -96.463562274367916, 29.608088129066278 ], [ -96.463569274397116, 29.608116129409311 ], [ -96.46360027515594, 29.608160128986892 ], [ -96.463764274954599, 29.608281129240421 ], [ -96.463864275347305, 29.608330129472495 ], [ -96.463915274880392, 29.608336129176575 ], [ -96.463946275380238, 29.608363128663594 ], [ -96.463984274624039, 29.608462128803808 ], [ -96.464047275055293, 29.608528128889951 ], [ -96.464104275370687, 29.60855612916518 ], [ -96.464210274929812, 29.608556129006331 ], [ -96.46429927547733, 29.608512129363156 ], [ -96.464475274794964, 29.60835212919698 ], [ -96.465041275257406, 29.608083129391108 ], [ -96.465154274684608, 29.60801712924512 ], [ -96.46534927513683, 29.607659129326255 ], [ -96.465456275006062, 29.607516128586571 ], [ -96.465494275279241, 29.607445129241796 ], [ -96.465550275041863, 29.607390128817421 ], [ -96.465720274900235, 29.607258128343105 ], [ -96.466091275177391, 29.606999128732035 ], [ -96.466481275089436, 29.606857128747059 ], [ -96.466639275774256, 29.606834128778907 ], [ -96.46669527527655, 29.60683412856007 ], [ -96.466815275880165, 29.60685112881357 ], [ -96.467249276040917, 29.607093128648032 ], [ -96.46746327552728, 29.60710412900622 ], [ -96.467689275705709, 29.607148128742541 ], [ -96.467922276190336, 29.607390129008973 ], [ -96.467960275482156, 29.607439128856129 ], [ -96.467966275650994, 29.607582129127316 ], [ -96.46798527635076, 29.607604129198329 ], [ -96.468149275792925, 29.607675128498933 ], [ -96.468212276177752, 29.607725128356883 ], [ -96.468292275640991, 29.607767128953078 ], [ -96.468558276273384, 29.607906128900506 ], [ -96.468803276419337, 29.6079671287462 ], [ -96.469036276500304, 29.608044128628098 ], [ -96.469149276005581, 29.608132128571501 ], [ -96.469262276712115, 29.608434128588986 ], [ -96.46926927628671, 29.608571129007135 ], [ -96.469212276322494, 29.609077129088476 ], [ -96.469168275816443, 29.609160129002529 ], [ -96.469168275989219, 29.609226129032102 ], [ -96.469212276293177, 29.609352129494724 ], [ -96.469294276458967, 29.609478129323364 ], [ -96.469602276059177, 29.60978612874883 ], [ -96.469672276763148, 29.609847128771246 ], [ -96.469753276304402, 29.609896128909547 ], [ -96.46990527649902, 29.609962129443669 ], [ -96.470162276870809, 29.610056128839769 ], [ -96.47081027629153, 29.610143129318061 ], [ -96.470911277189671, 29.610187128909654 ], [ -96.470980276520251, 29.610231129181365 ], [ -96.471119276322938, 29.610352129573542 ], [ -96.471364277189025, 29.610534129646776 ], [ -96.471478277074823, 29.610649129557274 ], [ -96.471679277380957, 29.610682128870028 ], [ -96.472100276868119, 29.610715129026183 ], [ -96.472233277506291, 29.610737129549065 ], [ -96.472440277221992, 29.610803129111861 ], [ -96.47256627726037, 29.610874129731567 ], [ -96.472830277472866, 29.611067129686134 ], [ -96.472912277644724, 29.611144128951885 ], [ -96.473044277534385, 29.611319129240169 ], [ -96.473145277443351, 29.611490129043951 ], [ -96.473221277637592, 29.611638129080976 ], [ -96.473302277893197, 29.611858129218611 ], [ -96.473334277130263, 29.61208912941969 ], [ -96.473365277940147, 29.612183129219552 ], [ -96.473479277581035, 29.612364129931727 ], [ -96.473542277091383, 29.612446129830069 ], [ -96.473711277847698, 29.612507129457065 ], [ -96.47392427716872, 29.612569129996391 ], [ -96.474322277338317, 29.612738129736851 ], [ -96.474624277787939, 29.612765129558625 ], [ -96.474863277435517, 29.612820129592919 ], [ -96.474989277717356, 29.612908129574944 ], [ -96.475033277871248, 29.612985129701716 ], [ -96.475077277608051, 29.61320512987287 ], [ -96.475083277979934, 29.613419129950756 ], [ -96.475109278239714, 29.613491130027107 ], [ -96.4751022774755, 29.613540129642562 ], [ -96.475234277547514, 29.613590130092383 ], [ -96.47536627801199, 29.613617129910562 ], [ -96.475540278304891, 29.613663129367538 ], [ -96.475757277733081, 29.613721129492525 ], [ -96.476795278538276, 29.613837129346802 ], [ -96.477078278580592, 29.613633129484068 ], [ -96.47716627867689, 29.613617129784981 ], [ -96.47712227808627, 29.613243129204051 ], [ -96.47682527865193, 29.612485129922096 ], [ -96.477260278279672, 29.612413129076632 ], [ -96.47778227898209, 29.612280129411094 ], [ -96.47811627881147, 29.612159129117277 ], [ -96.478191278931178, 29.612116128970694 ], [ -96.478468279070555, 29.611912129579085 ], [ -96.479348278698041, 29.611538129631448 ], [ -96.479569278636077, 29.611406129468563 ], [ -96.479732278872206, 29.611334128812334 ], [ -96.479845279551483, 29.611312129292301 ], [ -96.47999627880435, 29.611301128973611 ], [ -96.480072279197316, 29.611274129474612 ], [ -96.48033627874787, 29.611070128751376 ], [ -96.480393279294248, 29.611015129388139 ], [ -96.480537279632827, 29.611018129457197 ], [ -96.480657279142036, 29.61102112875162 ], [ -96.480764279047818, 29.611048129121507 ], [ -96.480852278909794, 29.611114128689504 ], [ -96.480890279160079, 29.611114129291494 ], [ -96.481091279490641, 29.611021128785875 ], [ -96.481588279543502, 29.610740128794255 ], [ -96.481984279088721, 29.610399128725728 ], [ -96.482066279904828, 29.610366128553505 ], [ -96.482217279151186, 29.610388129291728 ], [ -96.48243727939392, 29.610487128591277 ], [ -96.482494280196022, 29.61052012875172 ], [ -96.482544280102701, 29.610624128498337 ], [ -96.482532279642854, 29.610828129335971 ], [ -96.482412280012582, 29.611053128613865 ], [ -96.482393279746105, 29.611136129195991 ], [ -96.482406279759985, 29.611334128704897 ], [ -96.482557279397625, 29.611570129405901 ], [ -96.482589279547739, 29.611675128848375 ], [ -96.482639279270686, 29.611746129506614 ], [ -96.482689279471117, 29.611751129428786 ], [ -96.482941280051222, 29.611729129359787 ], [ -96.483230279620841, 29.61195512904921 ], [ -96.483319280168473, 29.611999128973693 ], [ -96.483463280316045, 29.612103129069133 ], [ -96.48358928014278, 29.612142129078357 ], [ -96.483721279994242, 29.61215812940441 ], [ -96.483816279798063, 29.612147129453778 ], [ -96.483904279870046, 29.612114129050767 ], [ -96.483998279910239, 29.612059128957874 ], [ -96.48412428007633, 29.61195512950172 ], [ -96.484193280595292, 29.611828129093954 ], [ -96.484294280476774, 29.611537128706487 ], [ -96.484331279698267, 29.611454128732966 ], [ -96.484394280483244, 29.61136612869684 ], [ -96.484501280506876, 29.611245129167308 ], [ -96.484627280404055, 29.611124129317982 ], [ -96.484746280464776, 29.611025129178227 ], [ -96.484866280700913, 29.610948129319119 ], [ -96.484979280367043, 29.610822128755999 ], [ -96.485073280071219, 29.610805128436787 ], [ -96.485174280361676, 29.61076712906371 ], [ -96.485608280724904, 29.610827129058173 ], [ -96.485948280811584, 29.610909129235488 ], [ -96.486200280195106, 29.611008128690472 ], [ -96.486395280915147, 29.611025128487256 ], [ -96.486527280774112, 29.610926129119726 ], [ -96.486621280278229, 29.610827128851632 ], [ -96.48672228066323, 29.610662128455385 ], [ -96.486810280593815, 29.610651128505467 ], [ -96.486910281230308, 29.610623128336933 ], [ -96.487055280788795, 29.610546128554802 ], [ -96.487175280966341, 29.610502128357478 ], [ -96.487269280941774, 29.610453128365947 ], [ -96.487426280972869, 29.610403129051303 ], [ -96.487546280929791, 29.610370128786755 ], [ -96.487565280694767, 29.610369129095119 ], [ -96.487797281369211, 29.610359129114073 ], [ -96.487967280962707, 29.610260128783928 ], [ -96.48798628111436, 29.610062128732704 ], [ -96.488062280616063, 29.609985128529999 ], [ -96.488124280806957, 29.609903128411482 ], [ -96.488238280746415, 29.609639128469844 ], [ -96.488294281028701, 29.609551128808224 ], [ -96.488426281251151, 29.609452128513187 ], [ -96.488514281554288, 29.60941912874393 ], [ -96.488628281112113, 29.609408128251658 ], [ -96.488753281087511, 29.609419128869373 ], [ -96.488911281601844, 29.609452128269663 ], [ -96.489043281554089, 29.60949612810095 ], [ -96.489118281218268, 29.609550128020466 ], [ -96.489150281431009, 29.609627128359168 ], [ -96.489156281117602, 29.609759128578755 ], [ -96.489150281672565, 29.609831128242309 ], [ -96.489106281098543, 29.609979128811734 ], [ -96.488949281662542, 29.610249129021511 ], [ -96.488930281780526, 29.610342128967364 ], [ -96.488949280976243, 29.610392128807153 ], [ -96.488987280987317, 29.610441128769587 ], [ -96.489043281503527, 29.610491128903266 ], [ -96.489119281312583, 29.610529128641073 ], [ -96.489314281775179, 29.610600128259801 ], [ -96.489484280952865, 29.610628128535755 ], [ -96.48975428146916, 29.610644129003042 ], [ -96.490088281316076, 29.610688128310013 ], [ -96.490220281630101, 29.610683128900597 ], [ -96.49040228137693, 29.610644128675133 ], [ -96.490641281738021, 29.610649128707774 ], [ -96.490817281602773, 29.610600128805622 ], [ -96.490924281448642, 29.610600128912726 ], [ -96.491057281900552, 29.610633128959595 ], [ -96.491252282175964, 29.610644128340773 ], [ -96.491314281544206, 29.609847128080151 ], [ -96.491409281987501, 29.609830128567719 ], [ -96.49163528241931, 29.609841128276361 ], [ -96.491761281775098, 29.609912128649089 ], [ -96.491817281956415, 29.609896128764937 ], [ -96.491887282019903, 29.609797128091309 ], [ -96.492038281831796, 29.609830128825635 ], [ -96.492145281774555, 29.609940128737215 ], [ -96.492227282267862, 29.609989128412792 ], [ -96.492283282002973, 29.609984128582521 ], [ -96.49236528259776, 29.610033128173082 ], [ -96.49253528226501, 29.610022128686641 ], [ -96.492604281888362, 29.610077128729404 ], [ -96.492704281797003, 29.610051128649282 ], [ -96.492815282301422, 29.610226128739317 ], [ -96.494501282529342, 29.612828129100286 ], [ -96.495185283457985, 29.613842129182608 ], [ -96.495341283512928, 29.614141129591825 ], [ -96.498719283918177, 29.619454129852357 ], [ -96.49907028453525, 29.619969130030469 ], [ -96.499454284891257, 29.620589130013609 ], [ -96.502104285668253, 29.624677131032914 ], [ -96.502205285088195, 29.624776130762086 ], [ -96.502284285131338, 29.624925130874217 ], [ -96.502483285709772, 29.625247131017108 ], [ -96.50310928511648, 29.626198131661802 ], [ -96.504102285859545, 29.627668131521201 ], [ -96.504564286316622, 29.628536131549957 ], [ -96.504771285720508, 29.628824132008489 ], [ -96.507160286735314, 29.632594132207451 ], [ -96.50727528697395, 29.632760132175932 ], [ -96.507481287011913, 29.633090132594354 ], [ -96.507648286575275, 29.633358132561469 ], [ -96.509478287189395, 29.636167132727952 ], [ -96.509864287610341, 29.636789133398597 ], [ -96.513902289478168, 29.643029134514684 ], [ -96.514124289001956, 29.643389134755775 ], [ -96.514795289821336, 29.644402134877669 ], [ -96.516168289624616, 29.646546135211914 ], [ -96.51709329003026, 29.647956135025186 ], [ -96.517283290572834, 29.647707134806168 ], [ -96.518127290529563, 29.646970134793463 ], [ -96.526047292288126, 29.639915133687403 ], [ -96.531022293480518, 29.636015132251174 ], [ -96.531807293337636, 29.635393132239319 ], [ -96.532593293430892, 29.634772131634154 ], [ -96.532549293313636, 29.631732131100076 ], [ -96.532461293200996, 29.625841129838722 ], [ -96.532431292812731, 29.625327130581383 ], [ -96.532432292759722, 29.623191129439419 ], [ -96.532392293164051, 29.621818129222326 ], [ -96.532313292026885, 29.616197128664812 ], [ -96.532290292089897, 29.614482127671359 ], [ -96.532288292768087, 29.614406128389152 ], [ -96.536645293237328, 29.614348127599396 ], [ -96.539323294180832, 29.614315127870317 ], [ -96.540674294892526, 29.614298127244538 ], [ -96.54255229553597, 29.614275127537333 ], [ -96.542870295192472, 29.614271127190129 ], [ -96.543223295289224, 29.614225127187076 ], [ -96.543624294989613, 29.613997127351176 ], [ -96.543858295003176, 29.613836127809794 ], [ -96.543922295612447, 29.613792127773763 ], [ -96.543962295541959, 29.613724127476463 ], [ -96.544384295003709, 29.613435126963267 ], [ -96.544531295492291, 29.613116127226977 ], [ -96.544521295853301, 29.612457127210646 ], [ -96.544486295505791, 29.611963127195263 ], [ -96.544033295282347, 29.607387125882379 ], [ -96.544002295181727, 29.60709612615052 ], [ -96.543740294626517, 29.604643125856143 ], [ -96.543963294460781, 29.604467125600205 ], [ -96.545947295505499, 29.604455125773374 ], [ -96.54594929584843, 29.604043125142447 ], [ -96.545953295087472, 29.602973124844585 ], [ -96.545889295348871, 29.599209124189109 ], [ -96.545849295424986, 29.596875124116682 ], [ -96.545774295050123, 29.59240412329936 ], [ -96.545723295278222, 29.591059122458415 ], [ -96.545697294586461, 29.590365123077813 ], [ -96.545692294259524, 29.589967122640587 ], [ -96.54569029505852, 29.589746122622259 ], [ -96.545684295217512, 29.589251122600089 ], [ -96.545680294368793, 29.589075122672231 ], [ -96.545677294350952, 29.5888981222087 ], [ -96.545558294475555, 29.583379121018559 ], [ -96.545404293822244, 29.576149119527908 ], [ -96.545402293756709, 29.576073119924072 ], [ -96.545317294284871, 29.571628118785693 ], [ -96.545242293580941, 29.567705117933517 ], [ -96.545203294031552, 29.56539711741226 ], [ -96.545179293367752, 29.563986117109419 ], [ -96.545138293321955, 29.562138117376154 ], [ -96.545013293767994, 29.561899117378978 ], [ -96.544712293658321, 29.561580116530799 ], [ -96.544408293415472, 29.561176117068172 ], [ -96.544385293538113, 29.561146117068489 ], [ -96.544276293222836, 29.554771115176337 ], [ -96.544243292782909, 29.552181114835516 ], [ -96.54421929272354, 29.548877114130796 ], [ -96.544238293038774, 29.548450114432768 ], [ -96.54475129223448, 29.547784113712098 ], [ -96.54458229255502, 29.547587114359228 ], [ -96.544470293037321, 29.547542114408635 ], [ -96.542791292489696, 29.547953113917064 ], [ -96.542214291767621, 29.548171114086006 ], [ -96.542084291697122, 29.548179114182243 ], [ -96.541946291508879, 29.548187114212567 ], [ -96.541683291937304, 29.547823114255891 ], [ -96.542227291640373, 29.547584113864993 ], [ -96.543878292300462, 29.546939113515112 ], [ -96.544130292291101, 29.546841113480063 ], [ -96.552130294245416, 29.543618112742394 ], [ -96.552417294672495, 29.543493113152859 ], [ -96.555361295158079, 29.542342112686779 ], [ -96.558869295955589, 29.540911112298545 ], [ -96.563904297043507, 29.538905112052021 ], [ -96.567854297820261, 29.537289111382094 ], [ -96.568603297797651, 29.537003111196103 ], [ -96.574414299940671, 29.534617110835022 ], [ -96.575568300073513, 29.534175110720945 ], [ -96.576766299617717, 29.533669110347663 ], [ -96.579700300504285, 29.532536109843893 ], [ -96.591223303922817, 29.527919108292089 ], [ -96.595171304597969, 29.526335108503734 ], [ -96.596596305131584, 29.525741107792367 ], [ -96.596941304697964, 29.525597107442561 ], [ -96.600633305176714, 29.524093107766081 ], [ -96.6087683076926, 29.520850106078736 ], [ -96.610321308418591, 29.520225106272999 ], [ -96.611873308094516, 29.519599106064458 ], [ -96.620972310211002, 29.515933104894994 ], [ -96.624026311690571, 29.514694104297085 ], [ -96.625146311289143, 29.514226104915856 ], [ -96.628390312433552, 29.512910104429384 ], [ -96.629032312856125, 29.512660103747944 ], [ -96.629434312662042, 29.512502103896708 ], [ -96.630005312707382, 29.512280104034492 ], [ -96.633589313759146, 29.510875103291923 ], [ -96.633698313866617, 29.510829103371695 ], [ -96.635396314068458, 29.510116103399859 ], [ -96.635803314270177, 29.50994510353399 ], [ -96.638838314679759, 29.508727102630026 ], [ -96.647040316713998, 29.50543510200297 ], [ -96.647751316955109, 29.505149102291071 ], [ -96.655043318808382, 29.502254100820309 ], [ -96.657607319299913, 29.501236100842785 ], [ -96.658233319000573, 29.500984100387626 ], [ -96.658858319168871, 29.50073110035791 ], [ -96.659537319922421, 29.500457100330735 ], [ -96.659707320049307, 29.500388100365395 ], [ -96.66034531988528, 29.500145100227851 ], [ -96.660503320175209, 29.500081100986947 ], [ -96.663512320750087, 29.498854100535358 ], [ -96.665822320775618, 29.497873099932807 ], [ -96.66584032123896, 29.497865099823638 ], [ -96.666969321450964, 29.497381100132497 ], [ -96.668097321574962, 29.496896099836079 ], [ -96.668262321264507, 29.496824099573775 ], [ -96.669033322010236, 29.496493099309802 ], [ -96.669147321444939, 29.496445099555977 ], [ -96.670176322385885, 29.496030099106985 ], [ -96.671439322691214, 29.495609099585042 ], [ -96.67265432274786, 29.495142099345337 ], [ -96.673809323064305, 29.494659099170889 ], [ -96.674550322581354, 29.494388099188818 ], [ -96.674946323576833, 29.494213098506826 ], [ -96.676123323710911, 29.493741098688012 ], [ -96.677585324011332, 29.493155098414643 ], [ -96.677708324160051, 29.493105098175342 ], [ -96.677876323846931, 29.49303809830003 ], [ -96.678071324304327, 29.492957098911621 ], [ -96.678164324281198, 29.492913098331371 ], [ -96.678375323670679, 29.4928270987932 ], [ -96.680057323984798, 29.492144098189705 ], [ -96.680717324466855, 29.491888097909364 ], [ -96.683032325197289, 29.490970097921668 ], [ -96.683945325647741, 29.490585098145729 ], [ -96.684348325647846, 29.490437097439131 ], [ -96.686796326022758, 29.489450097515711 ], [ -96.688268325884394, 29.488857096902827 ], [ -96.689260326444597, 29.488454096874307 ], [ -96.689524326495516, 29.488350096835461 ], [ -96.689794326838481, 29.488242097383932 ], [ -96.691978327099534, 29.487401097275669 ], [ -96.693231326927489, 29.486878096951969 ], [ -96.694381327902491, 29.486387096610244 ], [ -96.694573327513126, 29.486340097031686 ], [ -96.695566327773562, 29.4859550966613 ], [ -96.696304327899497, 29.485712096470174 ], [ -96.696450328672583, 29.485683096113743 ], [ -96.697084328042649, 29.485558096047988 ], [ -96.698881328940416, 29.48552709590242 ], [ -96.698925328445469, 29.485526096343396 ], [ -96.700052328837401, 29.485737096508853 ], [ -96.701701329053876, 29.486016096462649 ], [ -96.702466329524057, 29.486218096308722 ], [ -96.702692329271343, 29.486260096709476 ], [ -96.702734330117821, 29.486268096112443 ], [ -96.703138329722975, 29.486325096551795 ], [ -96.703282329705289, 29.486353096453666 ], [ -96.704317330305798, 29.486551096566739 ], [ -96.70480432991485, 29.486630096438187 ], [ -96.70544033022189, 29.486676096446384 ], [ -96.706162330780472, 29.486701096264042 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 536, "Tract": "48201322800", "Area_SqMi": 1.2036474862649504, "total_2009": 732, "total_2010": 839, "total_2011": 836, "total_2012": 1669, "total_2013": 1555, "total_2014": 910, "total_2015": 1114, "total_2016": 1089, "total_2017": 977, "total_2018": 3686, "total_2019": 3223, "total_2020": 3159, "age1": 709, "age2": 1505, "age3": 486, "earn1": 304, "earn2": 560, "earn3": 1836, "naics_s01": 0, "naics_s02": 19, "naics_s03": 0, "naics_s04": 196, "naics_s05": 25, "naics_s06": 1956, "naics_s07": 233, "naics_s08": 28, "naics_s09": 3, "naics_s10": 21, "naics_s11": 40, "naics_s12": 47, "naics_s13": 0, "naics_s14": 2, "naics_s15": 3, "naics_s16": 33, "naics_s17": 0, "naics_s18": 18, "naics_s19": 76, "naics_s20": 0, "race1": 2289, "race2": 281, "race3": 34, "race4": 54, "race5": 8, "race6": 34, "ethnicity1": 911, "ethnicity2": 1789, "edu1": 709, "edu2": 581, "edu3": 466, "edu4": 235, "Shape_Length": 26121.982512653907, "Shape_Area": 33555631.853805497, "total_2021": 2493, "total_2022": 2700 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.197404956961265, 29.712470193477458 ], [ -95.197365957398915, 29.712277193019172 ], [ -95.197315956977221, 29.712024193186309 ], [ -95.197201957110167, 29.711550192739164 ], [ -95.197124956891699, 29.711329193068202 ], [ -95.196988956800112, 29.711037192579919 ], [ -95.196618956298025, 29.710434192339861 ], [ -95.196143956844764, 29.710034192483075 ], [ -95.196002956027115, 29.709905192185389 ], [ -95.195730956585066, 29.709658192340495 ], [ -95.195435956256887, 29.70939019292112 ], [ -95.194705956344265, 29.708743192707601 ], [ -95.1940799559966, 29.70824119256854 ], [ -95.192050954948598, 29.706520192077363 ], [ -95.191369955543763, 29.705941191749098 ], [ -95.190671955373247, 29.705355191806081 ], [ -95.190048954424242, 29.704713191650651 ], [ -95.189499954552971, 29.704402191723162 ], [ -95.188479954602499, 29.703821191313001 ], [ -95.187551954447983, 29.703284191882315 ], [ -95.187173953735169, 29.703065191910571 ], [ -95.186696953420167, 29.702784191764223 ], [ -95.186506954073963, 29.702672191888464 ], [ -95.185917953834092, 29.702325191256591 ], [ -95.18512395328959, 29.701826191225052 ], [ -95.184763953028991, 29.701631191219658 ], [ -95.184451952940094, 29.701461191258868 ], [ -95.182570952381496, 29.700369190889397 ], [ -95.182150952884072, 29.700094191249061 ], [ -95.180553952490257, 29.699161190991202 ], [ -95.179476951658913, 29.698525190837135 ], [ -95.178940951148036, 29.698207190508942 ], [ -95.178505951641824, 29.697950190763507 ], [ -95.176882951516788, 29.696989190429846 ], [ -95.176697950702859, 29.696877190382043 ], [ -95.176002950624735, 29.696458190096397 ], [ -95.174679950384487, 29.695670190511613 ], [ -95.174438949973947, 29.695527189955094 ], [ -95.174156949963461, 29.69536019016919 ], [ -95.173873950002701, 29.695193190070828 ], [ -95.173502950019056, 29.694978190524971 ], [ -95.172989950298117, 29.694673190632571 ], [ -95.172297950232064, 29.694254189863063 ], [ -95.172012949241591, 29.694080190015502 ], [ -95.171203949182711, 29.693588189962547 ], [ -95.171071949038023, 29.693688189866982 ], [ -95.171065949710524, 29.694082189773678 ], [ -95.171078949135065, 29.694529190640068 ], [ -95.171090949874511, 29.694919190611259 ], [ -95.171092949448493, 29.695787190538567 ], [ -95.171127949037327, 29.69663019028987 ], [ -95.17114494941184, 29.697181190605104 ], [ -95.171148949480454, 29.697311190798963 ], [ -95.171164949100714, 29.697823190604939 ], [ -95.171200949525527, 29.698968190836119 ], [ -95.171214949867192, 29.699412191043358 ], [ -95.171265950019261, 29.701026191549829 ], [ -95.171251949391618, 29.701748191775387 ], [ -95.171260949773313, 29.702587192384549 ], [ -95.171264950172358, 29.702929192093482 ], [ -95.171268949938067, 29.703047192085979 ], [ -95.171340949976539, 29.704960192030178 ], [ -95.171363949708592, 29.705452192297393 ], [ -95.171377950500244, 29.705781192179913 ], [ -95.171349949734122, 29.706460192392822 ], [ -95.171385949697012, 29.70714119284218 ], [ -95.171388950092663, 29.707359192746058 ], [ -95.171396950247754, 29.707833193149376 ], [ -95.171446950162718, 29.708515192962277 ], [ -95.171446950426116, 29.708561193285188 ], [ -95.171444950516559, 29.709045193323909 ], [ -95.171443950112689, 29.709303193256908 ], [ -95.171446949702542, 29.709528193660958 ], [ -95.171451949821446, 29.710004193312898 ], [ -95.171464950079383, 29.71068519362791 ], [ -95.17148494981015, 29.711379193680557 ], [ -95.17149295013013, 29.71163819370042 ], [ -95.171495950567305, 29.712132194065887 ], [ -95.171497950361413, 29.712386193807969 ], [ -95.171498950561187, 29.71257719432564 ], [ -95.17189695008868, 29.71258819387765 ], [ -95.173395950984329, 29.712631194055021 ], [ -95.175070951310474, 29.712678193925537 ], [ -95.17690495206908, 29.712730193824513 ], [ -95.179177952534744, 29.712795193720662 ], [ -95.182610953492826, 29.712880193318576 ], [ -95.18387995371647, 29.712911193837549 ], [ -95.184122953458143, 29.712917193279175 ], [ -95.184348953202289, 29.712923193606205 ], [ -95.18539195406133, 29.712948193904385 ], [ -95.187389954505051, 29.712998193448982 ], [ -95.188141955108279, 29.713017193394204 ], [ -95.188421954847854, 29.713024193886326 ], [ -95.188530954353382, 29.713027193068314 ], [ -95.190222955108695, 29.713071193801849 ], [ -95.190936954904828, 29.713050193316921 ], [ -95.191660955930587, 29.71299819321198 ], [ -95.192560955863314, 29.712915193198402 ], [ -95.193154955567877, 29.712860193293064 ], [ -95.193665956482363, 29.712813193327388 ], [ -95.196276956775534, 29.712574193167956 ], [ -95.197174957386835, 29.712491193142405 ], [ -95.197404956961265, 29.712470193477458 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 537, "Tract": "48089750400", "Area_SqMi": 227.34122694584798, "total_2009": 810, "total_2010": 604, "total_2011": 1255, "total_2012": 1304, "total_2013": 1234, "total_2014": 1192, "total_2015": 1271, "total_2016": 1298, "total_2017": 1236, "total_2018": 927, "total_2019": 1085, "total_2020": 1140, "age1": 223, "age2": 598, "age3": 318, "earn1": 157, "earn2": 347, "earn3": 635, "naics_s01": 41, "naics_s02": 139, "naics_s03": 0, "naics_s04": 117, "naics_s05": 232, "naics_s06": 119, "naics_s07": 44, "naics_s08": 58, "naics_s09": 0, "naics_s10": 35, "naics_s11": 16, "naics_s12": 30, "naics_s13": 5, "naics_s14": 18, "naics_s15": 0, "naics_s16": 82, "naics_s17": 111, "naics_s18": 83, "naics_s19": 4, "naics_s20": 5, "race1": 975, "race2": 136, "race3": 7, "race4": 15, "race5": 1, "race6": 5, "ethnicity1": 829, "ethnicity2": 310, "edu1": 228, "edu2": 298, "edu3": 231, "edu4": 159, "Shape_Length": 407714.28850201814, "Shape_Area": 6337884308.8516169, "total_2021": 1014, "total_2022": 1139 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.72846134871854, 29.777816153953925 ], [ -96.728420348815135, 29.776547153781458 ], [ -96.728451348855728, 29.776295153932185 ], [ -96.728390349335172, 29.775863153917168 ], [ -96.728197349343858, 29.775425153672607 ], [ -96.727783349010167, 29.774902153190105 ], [ -96.727171348468872, 29.774366153752062 ], [ -96.726233348132865, 29.773778153540707 ], [ -96.725232348130987, 29.772971153359144 ], [ -96.724755348152229, 29.772687153277356 ], [ -96.724296347935336, 29.772523153097616 ], [ -96.723642348236467, 29.772345153568232 ], [ -96.721967347756959, 29.771889153076707 ], [ -96.721231346853216, 29.771794153018895 ], [ -96.720611346576803, 29.771780152921345 ], [ -96.719958346847605, 29.771870153343631 ], [ -96.719118346960684, 29.772060153552101 ], [ -96.718793346157753, 29.77218415323285 ], [ -96.718124346547356, 29.772543153258141 ], [ -96.717470345722433, 29.772983153988768 ], [ -96.71561534595962, 29.774067154083273 ], [ -96.714094345630741, 29.774872154004658 ], [ -96.712085345462754, 29.77572215458779 ], [ -96.710853344374058, 29.776313154552515 ], [ -96.710290344307126, 29.776485154831537 ], [ -96.708340344372331, 29.7770851547027 ], [ -96.706423343795962, 29.777537155067286 ], [ -96.704717342782246, 29.778090154692062 ], [ -96.702992343147656, 29.778558154838951 ], [ -96.702690342394547, 29.778652155098197 ], [ -96.698186341347522, 29.780063155610215 ], [ -96.697854341583081, 29.780168155424477 ], [ -96.696882341241349, 29.780343155863093 ], [ -96.695690340589877, 29.780461155724474 ], [ -96.694947340729968, 29.780433156051632 ], [ -96.694501341176519, 29.780356156296943 ], [ -96.694143340585413, 29.780266155478408 ], [ -96.693403340564103, 29.779943155733825 ], [ -96.692428340707707, 29.779644155933859 ], [ -96.692113340622058, 29.77952615553453 ], [ -96.689997339117937, 29.77873315555432 ], [ -96.689606339872697, 29.778529156112363 ], [ -96.689476339077956, 29.778226155220494 ], [ -96.689150339357781, 29.777902155975902 ], [ -96.688781339448738, 29.77767115523136 ], [ -96.688197338693655, 29.777491155588844 ], [ -96.687992338897757, 29.777497155583131 ], [ -96.68691833899932, 29.777759155248617 ], [ -96.686531338351685, 29.777780156002706 ], [ -96.685213338248388, 29.777750155884945 ], [ -96.68479533852782, 29.77774115552748 ], [ -96.683979337760405, 29.777624155272445 ], [ -96.683484338062371, 29.777606155362804 ], [ -96.682061337493209, 29.777820156132467 ], [ -96.680755337533029, 29.778017156231886 ], [ -96.679725337020329, 29.778281155772337 ], [ -96.67931233692461, 29.778298156394488 ], [ -96.677791336917267, 29.778167155934845 ], [ -96.677358336089128, 29.778265155855323 ], [ -96.676412336641434, 29.778192155689418 ], [ -96.675812336121552, 29.778057155878741 ], [ -96.675352335549164, 29.777896156484513 ], [ -96.674439335211588, 29.777558155551723 ], [ -96.673857335499122, 29.777293156267667 ], [ -96.673023334844459, 29.776846155714157 ], [ -96.671693335018034, 29.776054156006918 ], [ -96.670785334633806, 29.775106155979856 ], [ -96.670284334820948, 29.774117155361527 ], [ -96.670311334318427, 29.773115155669124 ], [ -96.670623334647772, 29.77228915488983 ], [ -96.671286334657466, 29.771422155290907 ], [ -96.671686334598107, 29.770320154208395 ], [ -96.671137334767593, 29.768889154656655 ], [ -96.670643334299669, 29.7680511539095 ], [ -96.670454333901347, 29.767735153770523 ], [ -96.670104334377044, 29.767247153925563 ], [ -96.669416333952711, 29.766529153735146 ], [ -96.669237333824398, 29.766246154271784 ], [ -96.66873433326262, 29.765027153905386 ], [ -96.668636333327044, 29.764205153252664 ], [ -96.668676333659292, 29.763959153611502 ], [ -96.669018333434423, 29.763700153649136 ], [ -96.669305333500077, 29.763263153453252 ], [ -96.669555334132781, 29.762809153095745 ], [ -96.669835333864043, 29.762453153087868 ], [ -96.672263333977511, 29.760343152652872 ], [ -96.672496333843412, 29.759923152133297 ], [ -96.672701333894608, 29.759698152357984 ], [ -96.673406334253627, 29.759202152793566 ], [ -96.674263334755764, 29.758699152409001 ], [ -96.676470334972095, 29.757886151769682 ], [ -96.677182335267801, 29.757511151714905 ], [ -96.677556335279675, 29.757314151664339 ], [ -96.680429335803709, 29.75519815119301 ], [ -96.680818335868466, 29.754795151368715 ], [ -96.681006336593185, 29.75447815094439 ], [ -96.681134335865991, 29.753987150597414 ], [ -96.681245336014413, 29.752622150767355 ], [ -96.681227336618662, 29.752334150691372 ], [ -96.681077336338205, 29.752003150599275 ], [ -96.681218336291366, 29.751185150592768 ], [ -96.681116335775329, 29.750874149979438 ], [ -96.681097335802221, 29.750298150332913 ], [ -96.680874336373819, 29.749236150338625 ], [ -96.680518335849484, 29.74820114975601 ], [ -96.679713335881047, 29.746823149411735 ], [ -96.678487335114596, 29.745241149486056 ], [ -96.677809335062165, 29.744469148981029 ], [ -96.677045335035729, 29.743750148828134 ], [ -96.676678334646041, 29.743489149267095 ], [ -96.674260334132953, 29.741767148898607 ], [ -96.673531333813074, 29.741316148423735 ], [ -96.671227332663122, 29.739890148108412 ], [ -96.670908332853713, 29.739817148896513 ], [ -96.67026433248428, 29.739574148727975 ], [ -96.66961633241668, 29.739127148743332 ], [ -96.669154332113834, 29.738768148732522 ], [ -96.6690103320486, 29.738550148487004 ], [ -96.668245331784547, 29.738058148335689 ], [ -96.667719332315698, 29.737553148134925 ], [ -96.666911331770521, 29.736937148404827 ], [ -96.665946331644832, 29.736000147741173 ], [ -96.664161331086532, 29.734550147918402 ], [ -96.663472331041362, 29.733878147238549 ], [ -96.662887331186354, 29.73342214773561 ], [ -96.662550330441391, 29.733058147697765 ], [ -96.662491331021826, 29.733020147200577 ], [ -96.662220330304834, 29.732842147355871 ], [ -96.66202633046862, 29.73265514708233 ], [ -96.661257330177136, 29.73180714713649 ], [ -96.660550330001485, 29.730875146652533 ], [ -96.6593863292143, 29.729172146569429 ], [ -96.658950329893699, 29.728354146436256 ], [ -96.658522329186397, 29.727825146515865 ], [ -96.657896328842966, 29.726648145980441 ], [ -96.657463328683477, 29.725951145809542 ], [ -96.656124328807451, 29.724003145486826 ], [ -96.656081328500463, 29.723954146088037 ], [ -96.6548403282371, 29.722537145231648 ], [ -96.6545373276454, 29.722133145096052 ], [ -96.654419327822239, 29.721977145706148 ], [ -96.653979327476804, 29.72139114525887 ], [ -96.652966327170532, 29.720251144855961 ], [ -96.652335327612263, 29.719449144983308 ], [ -96.651911326932932, 29.719054144602133 ], [ -96.651028327364216, 29.718457144543191 ], [ -96.650233327278102, 29.718074145131695 ], [ -96.649363326567382, 29.717738145167253 ], [ -96.648035326134149, 29.717338145196688 ], [ -96.646014325188943, 29.716814144776826 ], [ -96.645607325510994, 29.716753144597099 ], [ -96.644164325715153, 29.716680144944409 ], [ -96.643550324789643, 29.716757144542779 ], [ -96.642757325160886, 29.716841144915904 ], [ -96.642196324753371, 29.716963144523302 ], [ -96.641461324662913, 29.717205144986863 ], [ -96.641058324199761, 29.717388145151041 ], [ -96.640709324804433, 29.71764014530428 ], [ -96.639953323915492, 29.718450145318023 ], [ -96.639878324532987, 29.718577145362211 ], [ -96.639797324197588, 29.71896714546202 ], [ -96.639724324597452, 29.719792145459362 ], [ -96.639571323997714, 29.720537145281568 ], [ -96.638970323828872, 29.722260145902755 ], [ -96.638727324615985, 29.722715146008433 ], [ -96.63860232436042, 29.723058146460428 ], [ -96.638159323743423, 29.723829146130893 ], [ -96.637578323891631, 29.724485146984762 ], [ -96.636911324228379, 29.725075146596197 ], [ -96.635943323855884, 29.725627146969437 ], [ -96.635210322923683, 29.72603014719683 ], [ -96.634713323711509, 29.726208146711159 ], [ -96.634529323539198, 29.726243147366397 ], [ -96.633867323018364, 29.726370147382369 ], [ -96.633331323276948, 29.726363147187605 ], [ -96.631146322694931, 29.72582114740916 ], [ -96.628729321956556, 29.725547147238839 ], [ -96.627479321865763, 29.725303147314673 ], [ -96.627059320874679, 29.72519614689114 ], [ -96.626170320768964, 29.724969147052825 ], [ -96.62496232081898, 29.724724146637037 ], [ -96.623210320611065, 29.724466147120904 ], [ -96.6214643200409, 29.724112146899472 ], [ -96.620765319951417, 29.724046146999687 ], [ -96.620644319444963, 29.724035147046436 ], [ -96.617303318689622, 29.723529146772453 ], [ -96.615530318324602, 29.723427147316965 ], [ -96.611845316947139, 29.723772147490088 ], [ -96.609983317373448, 29.72394714738741 ], [ -96.60906131675624, 29.724175147684853 ], [ -96.608613317015511, 29.724241147205138 ], [ -96.607308316392704, 29.724363147596975 ], [ -96.607307316218964, 29.72414414799929 ], [ -96.6063083162352, 29.724270147800837 ], [ -96.604946315432443, 29.724302147968942 ], [ -96.602047314652026, 29.724027147796924 ], [ -96.601622314750742, 29.723986147369143 ], [ -96.600631314651736, 29.723681148026511 ], [ -96.597604313832477, 29.722750147494832 ], [ -96.597303313233326, 29.722644147303885 ], [ -96.596552313978606, 29.722285147756107 ], [ -96.594379312933512, 29.72143114732069 ], [ -96.593442313035439, 29.721106147751968 ], [ -96.593119312272734, 29.721021147536611 ], [ -96.592808312338377, 29.720942147665532 ], [ -96.591873312398931, 29.720809147375761 ], [ -96.590852312195963, 29.72065914702652 ], [ -96.589662311819353, 29.72058314709864 ], [ -96.588959311234461, 29.720478147113443 ], [ -96.585010310683828, 29.719909147602511 ], [ -96.584843310704841, 29.719894147239934 ], [ -96.584717310503137, 29.719868147909132 ], [ -96.583229310446555, 29.719652147414923 ], [ -96.582921309678142, 29.719626147753349 ], [ -96.579991309028159, 29.719388147582499 ], [ -96.580001309229331, 29.719517147216994 ], [ -96.580007309507124, 29.71957314791868 ], [ -96.579712309461655, 29.719563147568078 ], [ -96.579696309335958, 29.719562147379062 ], [ -96.579050309150873, 29.719439147557441 ], [ -96.576170307857623, 29.719164147845614 ], [ -96.574268307191474, 29.719122147806157 ], [ -96.573975308112324, 29.719104147462449 ], [ -96.571753306566336, 29.718966147467846 ], [ -96.571133306763514, 29.718969147324891 ], [ -96.56973630699494, 29.718845147831388 ], [ -96.569344306708203, 29.718956147695931 ], [ -96.569015306348277, 29.718946147556924 ], [ -96.568673305852968, 29.71882214766152 ], [ -96.567554306027887, 29.718564147374376 ], [ -96.56742930571464, 29.718506147593665 ], [ -96.567190305384798, 29.718396147406651 ], [ -96.5669703056233, 29.718358148104226 ], [ -96.563999304631523, 29.71784814749866 ], [ -96.562485305134302, 29.717367148003909 ], [ -96.561183304816694, 29.71681714776215 ], [ -96.560149303905462, 29.716502147818847 ], [ -96.559817303651613, 29.71640114775948 ], [ -96.55914030424087, 29.716240147940081 ], [ -96.558215303415651, 29.716048147687438 ], [ -96.556862303613556, 29.715895148069425 ], [ -96.556612302681316, 29.715883147711036 ], [ -96.556457302874946, 29.71587514766523 ], [ -96.555831303321767, 29.715844148010223 ], [ -96.555389303134888, 29.7157521476604 ], [ -96.553535302432664, 29.715136147814384 ], [ -96.552933302351946, 29.71489714788348 ], [ -96.552367302065605, 29.714599147130272 ], [ -96.55030130089834, 29.713440147370765 ], [ -96.549158300966909, 29.713132147183007 ], [ -96.548168301350628, 29.713095147791083 ], [ -96.54739030042731, 29.713119147333384 ], [ -96.547358300484589, 29.712948147036659 ], [ -96.547335300269083, 29.712829147764548 ], [ -96.547173300638875, 29.711984147201559 ], [ -96.54696630023399, 29.710902146649072 ], [ -96.546921300760488, 29.709781146872128 ], [ -96.546903300575963, 29.708698146714699 ], [ -96.546884300628861, 29.707905146073909 ], [ -96.546883300038104, 29.707564145930238 ], [ -96.5468822998467, 29.707485146688192 ], [ -96.546878299955594, 29.706947145962307 ], [ -96.546858299820627, 29.706458146292981 ], [ -96.54561029997403, 29.706465145949217 ], [ -96.544321299747878, 29.706501145814379 ], [ -96.54306229970625, 29.706529146461961 ], [ -96.54182429934734, 29.706580145856755 ], [ -96.540576298710178, 29.706567146492318 ], [ -96.539272298242793, 29.706564146337371 ], [ -96.537985298428325, 29.706564146087263 ], [ -96.536909297344508, 29.706378146411716 ], [ -96.536570297603603, 29.706320146151143 ], [ -96.536241297183338, 29.706263146565409 ], [ -96.535116297410696, 29.706070146790097 ], [ -96.531935296673566, 29.705547146768271 ], [ -96.522188293710343, 29.703461146579368 ], [ -96.520438293177335, 29.703100146632174 ], [ -96.520411293786012, 29.703098146035575 ], [ -96.519896293141954, 29.703055146472892 ], [ -96.519164292773752, 29.703044146196273 ], [ -96.518448292781045, 29.703090146442236 ], [ -96.51780129299631, 29.703186146628148 ], [ -96.51673729263004, 29.703430146120155 ], [ -96.51599729227695, 29.703659146350525 ], [ -96.515408291674646, 29.703598146697587 ], [ -96.515069292571667, 29.70369314700104 ], [ -96.513615291940184, 29.704157147050793 ], [ -96.513142291958943, 29.704346146692416 ], [ -96.512267291522022, 29.704779147354341 ], [ -96.511290291135637, 29.705408147200036 ], [ -96.510059290741623, 29.706212146833415 ], [ -96.50668728986976, 29.708328148126771 ], [ -96.506187290278334, 29.708650147465644 ], [ -96.505277289707308, 29.709168148202686 ], [ -96.504901289842692, 29.709366148053785 ], [ -96.504525289319588, 29.709518148094837 ], [ -96.503988289501152, 29.709708148133004 ], [ -96.503337288965085, 29.709893147860576 ], [ -96.501890288983503, 29.710268147990394 ], [ -96.500298288767809, 29.710667148378587 ], [ -96.499566288624095, 29.710851148129414 ], [ -96.496076287138266, 29.711745148677249 ], [ -96.493510287499092, 29.712341149452786 ], [ -96.489407285530945, 29.712942149040909 ], [ -96.485628284899747, 29.713508149820488 ], [ -96.484511284631893, 29.713626149963112 ], [ -96.483068284097911, 29.713843149748797 ], [ -96.482291284138114, 29.713948150127653 ], [ -96.481372284387746, 29.71407515016897 ], [ -96.48029528368194, 29.714253149523199 ], [ -96.479794283949531, 29.714325150353954 ], [ -96.47842928354163, 29.714524149883083 ], [ -96.477680282636541, 29.714609149715599 ], [ -96.476444282674294, 29.714783149700803 ], [ -96.474797281909417, 29.715014150370266 ], [ -96.468249280947674, 29.715980150373124 ], [ -96.465317279864109, 29.716406150409693 ], [ -96.461047278785429, 29.716983151232139 ], [ -96.458201278556132, 29.717367151616557 ], [ -96.448025276235555, 29.718406152188457 ], [ -96.447747276057996, 29.718434152086747 ], [ -96.443567274554582, 29.71881315211575 ], [ -96.442631274292296, 29.718923152376952 ], [ -96.441629274147658, 29.719073152383512 ], [ -96.438978273663821, 29.71962415218335 ], [ -96.43433727283093, 29.72056815268903 ], [ -96.432714272237789, 29.720884152957204 ], [ -96.427818270904709, 29.721866152987008 ], [ -96.426923270605727, 29.722046153025531 ], [ -96.424606270566514, 29.722554153127778 ], [ -96.422347269757438, 29.722991153635693 ], [ -96.417937268615745, 29.723879153685175 ], [ -96.415747267735171, 29.724319154302815 ], [ -96.415092267499034, 29.724450154285535 ], [ -96.414388267860289, 29.724591154063493 ], [ -96.414251267444797, 29.724618153902632 ], [ -96.412131266884487, 29.725058154685431 ], [ -96.40993126664614, 29.725509155006144 ], [ -96.404254265471195, 29.726671155094348 ], [ -96.400499263955112, 29.727417154865371 ], [ -96.396038262696422, 29.728304155724722 ], [ -96.391418262225955, 29.729252156409217 ], [ -96.390724262204529, 29.729395156214864 ], [ -96.390018261131317, 29.729540155872709 ], [ -96.388005261182059, 29.729952156396038 ], [ -96.385310260642697, 29.730496156063758 ], [ -96.378778258429207, 29.731815156932026 ], [ -96.369616256945491, 29.733673157191493 ], [ -96.363041255547472, 29.734990158297212 ], [ -96.361412254698422, 29.735316158341043 ], [ -96.355323252784459, 29.736556158777713 ], [ -96.33549124835065, 29.740593160400721 ], [ -96.33229424764157, 29.741244160132084 ], [ -96.330796246763839, 29.741543160317462 ], [ -96.33044224749149, 29.741613160856787 ], [ -96.32979724663268, 29.741741160914735 ], [ -96.329589246625503, 29.741784160764464 ], [ -96.328894247094965, 29.741928160796267 ], [ -96.326899245774598, 29.742315160715769 ], [ -96.326104246303842, 29.742479160868939 ], [ -96.325432246099481, 29.742618161074819 ], [ -96.318925244690519, 29.743962161614693 ], [ -96.318425244439823, 29.744101161633939 ], [ -96.310530241842173, 29.74567716176789 ], [ -96.296699239089335, 29.748462162709156 ], [ -96.296784239177413, 29.748682162893545 ], [ -96.29686723889165, 29.748898163489638 ], [ -96.29696223864174, 29.749178163268788 ], [ -96.296956238849816, 29.74921116309234 ], [ -96.297107239240191, 29.749569163417064 ], [ -96.297201239311036, 29.749723163545983 ], [ -96.297220239245192, 29.749739163208904 ], [ -96.297258239510199, 29.749772163379131 ], [ -96.297352238788903, 29.749833163291733 ], [ -96.297485239040554, 29.749910163638837 ], [ -96.297900239584649, 29.750192163172596 ], [ -96.297975239176594, 29.750292163511499 ], [ -96.298164238870342, 29.750543163215351 ], [ -96.298413238923629, 29.75077516316891 ], [ -96.298684239156984, 29.750897163063271 ], [ -96.299036239710873, 29.751183163802818 ], [ -96.299785239416664, 29.751573163680622 ], [ -96.300001240198583, 29.75164916346079 ], [ -96.300399240052897, 29.751677163782698 ], [ -96.300629240192436, 29.751694163738058 ], [ -96.300912240433931, 29.751714163936082 ], [ -96.3009312399099, 29.751715163914707 ], [ -96.300967240125544, 29.751718163256555 ], [ -96.301037239865494, 29.751723163187322 ], [ -96.30158923999366, 29.752019163901871 ], [ -96.302528240281603, 29.752374163931599 ], [ -96.302805240363526, 29.752420164108983 ], [ -96.303454240955233, 29.75237716379273 ], [ -96.30373524128288, 29.752415163593039 ], [ -96.304688240909172, 29.75295416352434 ], [ -96.304852241175411, 29.753114163883318 ], [ -96.305156241642962, 29.753221163350673 ], [ -96.30548024105407, 29.753418163564298 ], [ -96.306016241700362, 29.75358816344092 ], [ -96.306258241855929, 29.753710163827567 ], [ -96.306490241516613, 29.753761163771646 ], [ -96.30696624160305, 29.753710163766176 ], [ -96.30788924151004, 29.753927164159634 ], [ -96.307878241532578, 29.753977163958485 ], [ -96.308392241696993, 29.75423216367232 ], [ -96.308420242302518, 29.754246163891427 ], [ -96.308433241937777, 29.754258163450384 ], [ -96.308660241964887, 29.754466164220741 ], [ -96.308798241762616, 29.754515163914629 ], [ -96.309019242403608, 29.754499163710168 ], [ -96.30924624240447, 29.754592164143791 ], [ -96.309334242642308, 29.75474616366801 ], [ -96.309409241976212, 29.754796163851033 ], [ -96.30979424207915, 29.754878164036779 ], [ -96.31026624288927, 29.755148164180614 ], [ -96.310367242900611, 29.755181164189739 ], [ -96.310739242571444, 29.755411164116204 ], [ -96.310839243095145, 29.755609164217816 ], [ -96.31097824316403, 29.755835164432082 ], [ -96.311129242935806, 29.755923163793462 ], [ -96.311665242706312, 29.756192164137651 ], [ -96.311847243361754, 29.756362163985713 ], [ -96.311929243436296, 29.756703164109222 ], [ -96.311879243334758, 29.756896164438661 ], [ -96.311765242663697, 29.757039164630463 ], [ -96.311677242557096, 29.757374164461151 ], [ -96.311734243152543, 29.757550164337516 ], [ -96.311633243286565, 29.758171164322007 ], [ -96.311639243524596, 29.758490164559088 ], [ -96.311702242879591, 29.758655164479357 ], [ -96.311728242867773, 29.758875165055457 ], [ -96.311784242947468, 29.759062164813965 ], [ -96.311879243603698, 29.759265165195739 ], [ -96.312320242940785, 29.760331164705704 ], [ -96.31311424306125, 29.760975165355166 ], [ -96.313208243783194, 29.76129316520251 ], [ -96.313416243973251, 29.761491164784612 ], [ -96.31357424378993, 29.761958165242905 ], [ -96.313687243566449, 29.762228164986634 ], [ -96.313819243616805, 29.762470165487603 ], [ -96.313977244336243, 29.762832165727225 ], [ -96.313998243599869, 29.763011165364624 ], [ -96.31403424411846, 29.763327165317815 ], [ -96.314046244396891, 29.76358616531239 ], [ -96.313964244244204, 29.764047165291171 ], [ -96.314059244366391, 29.764438165923892 ], [ -96.314115244018296, 29.764542166029759 ], [ -96.31421624375416, 29.764773166238783 ], [ -96.314254243996871, 29.764987165722147 ], [ -96.314430243814769, 29.765510166019478 ], [ -96.314525243795075, 29.765839165627781 ], [ -96.314537244363947, 29.765949166074016 ], [ -96.314519244342847, 29.766004166405565 ], [ -96.314449243944537, 29.766103166040537 ], [ -96.314386244004723, 29.766329165860181 ], [ -96.314393244327604, 29.766381166464427 ], [ -96.3144122440996, 29.766532166399848 ], [ -96.314399244456283, 29.766702166428306 ], [ -96.314330243889046, 29.767016166530407 ], [ -96.314191243707654, 29.767373166144306 ], [ -96.314097244369762, 29.767670166203363 ], [ -96.314034244370148, 29.767835166190057 ], [ -96.313914244316138, 29.768066166477677 ], [ -96.313800243868045, 29.768489166869667 ], [ -96.313907244054988, 29.768780166878308 ], [ -96.313889244233565, 29.769055167023264 ], [ -96.313763244561414, 29.769528167166001 ], [ -96.313845243995814, 29.769814167241346 ], [ -96.314002243953013, 29.770100166798752 ], [ -96.313970244605983, 29.770308166896747 ], [ -96.314021243770142, 29.770710166810996 ], [ -96.31407124459183, 29.770985166838752 ], [ -96.314097244195167, 29.771040167087694 ], [ -96.314128243962273, 29.771193167141231 ], [ -96.314279244788196, 29.771353167206318 ], [ -96.314296244214972, 29.771383167416328 ], [ -96.314412244831644, 29.771584167153748 ], [ -96.314613244481464, 29.771688167030476 ], [ -96.314689244856567, 29.771771167127078 ], [ -96.314739244408244, 29.771897166809389 ], [ -96.314935244330812, 29.772089167497629 ], [ -96.31516824427365, 29.772188167145494 ], [ -96.315325244703288, 29.772337167719474 ], [ -96.315426245183261, 29.772562167619032 ], [ -96.315703244886933, 29.772771167474616 ], [ -96.315873244361896, 29.773013167811197 ], [ -96.316119245062538, 29.773260167884239 ], [ -96.316283244664035, 29.773337167863296 ], [ -96.316478244984111, 29.77335416787653 ], [ -96.317134245493577, 29.773216167101413 ], [ -96.317241244753021, 29.77324416717051 ], [ -96.317323245091501, 29.773365167668317 ], [ -96.31740524570597, 29.773398167776548 ], [ -96.31756824558984, 29.773381166977998 ], [ -96.317713245799453, 29.773321166972487 ], [ -96.317883245050098, 29.773315167041481 ], [ -96.317984245538341, 29.773370167367254 ], [ -96.318073245773178, 29.77345316744945 ], [ -96.31821724594343, 29.773491167291972 ], [ -96.318400245005165, 29.773508167132736 ], [ -96.318595245247167, 29.773629167784147 ], [ -96.318734245879298, 29.773783167414827 ], [ -96.319024245572351, 29.773942167312157 ], [ -96.319182245550792, 29.774068167549594 ], [ -96.319383245333142, 29.774294167886779 ], [ -96.319490246133967, 29.774569167239939 ], [ -96.319459245419722, 29.774959167521381 ], [ -96.319503246133962, 29.77527216768544 ], [ -96.319635245418709, 29.775657168215009 ], [ -96.319572246375756, 29.775877167472267 ], [ -96.319478245720532, 29.776119167889259 ], [ -96.319345245883071, 29.776350167864429 ], [ -96.319106245641052, 29.776553167635033 ], [ -96.319097245498909, 29.776563168324849 ], [ -96.318772245552154, 29.776894167647509 ], [ -96.318413245649538, 29.777009167856431 ], [ -96.318148245563819, 29.777218167899616 ], [ -96.317770245182274, 29.777570167839304 ], [ -96.317411245570611, 29.777631168251077 ], [ -96.316951244959711, 29.777746168308891 ], [ -96.316630245515697, 29.777889168071574 ], [ -96.316441244942368, 29.778081168572719 ], [ -96.316315245594055, 29.778351168592106 ], [ -96.316037244819782, 29.778570168875927 ], [ -96.31577324479079, 29.778691168760563 ], [ -96.31566624455732, 29.778779168656282 ], [ -96.315401244924871, 29.779071168466807 ], [ -96.315054244623028, 29.77953216866424 ], [ -96.314976245282466, 29.779792168459036 ], [ -96.314941244529095, 29.7799061687784 ], [ -96.314916244819827, 29.780253169156548 ], [ -96.315016244777098, 29.780401169368016 ], [ -96.315061245298509, 29.780560168978397 ], [ -96.315023245093087, 29.780956169007094 ], [ -96.31492824481478, 29.781149169437214 ], [ -96.314985244815105, 29.781302168861494 ], [ -96.315117245497731, 29.781506168882757 ], [ -96.315124245471978, 29.781896169033679 ], [ -96.315250245029745, 29.782199168981805 ], [ -96.315395244772006, 29.782341168922997 ], [ -96.315458245385543, 29.782501169530761 ], [ -96.315489244832904, 29.78272616901004 ], [ -96.315672245596417, 29.783056169181688 ], [ -96.315747244875283, 29.78323216960181 ], [ -96.315729245529184, 29.783358169396507 ], [ -96.315666245345156, 29.783501169295423 ], [ -96.315678245539488, 29.783859169561257 ], [ -96.315659245214192, 29.784221169606344 ], [ -96.315584245466212, 29.784348169432413 ], [ -96.315395244797102, 29.784480169916822 ], [ -96.315212245467009, 29.784573169458827 ], [ -96.315029245152886, 29.784958169736289 ], [ -96.314966244935022, 29.785117169950965 ], [ -96.31466424537129, 29.785508169950027 ], [ -96.314701245230566, 29.78565117001105 ], [ -96.314701245323619, 29.785794169794734 ], [ -96.314670245333105, 29.78587617018551 ], [ -96.314670245382729, 29.786019169959918 ], [ -96.314764245082856, 29.786162170191545 ], [ -96.314815245305326, 29.786211170338071 ], [ -96.314890245052581, 29.786316169805588 ], [ -96.315048245334069, 29.786497170275258 ], [ -96.315180245761027, 29.786712169905108 ], [ -96.315268245267262, 29.787063170068503 ], [ -96.315401245052911, 29.787283170127136 ], [ -96.315558245013278, 29.787371170060037 ], [ -96.315754245229343, 29.787382170219828 ], [ -96.315981246011248, 29.787481169913132 ], [ -96.316069245733203, 29.787558170125681 ], [ -96.316144246039869, 29.787646170036808 ], [ -96.316535245528456, 29.787844169933649 ], [ -96.316657245218551, 29.787991170267279 ], [ -96.316731245425117, 29.788080170487966 ], [ -96.316838245371528, 29.788179170761509 ], [ -96.317153245691969, 29.788410170336224 ], [ -96.317216245467591, 29.788504170849773 ], [ -96.317216245414187, 29.788679170836303 ], [ -96.317260245489805, 29.789048170967618 ], [ -96.317430245602395, 29.78925717089087 ], [ -96.31753124569056, 29.789482170383764 ], [ -96.317613246191982, 29.790158171029773 ], [ -96.317789246124306, 29.79065317120477 ], [ -96.317859245873009, 29.790774171323871 ], [ -96.317928246195947, 29.79097717067911 ], [ -96.318073245944447, 29.791236171111901 ], [ -96.318382246459905, 29.791505170876121 ], [ -96.31877924668494, 29.791741170768109 ], [ -96.318987246691066, 29.791807170940196 ], [ -96.319302246517651, 29.791879171187926 ], [ -96.319396246096503, 29.791919170765375 ], [ -96.319522246096795, 29.791972171128489 ], [ -96.319687247059264, 29.792003171241525 ], [ -96.319730246801356, 29.792011171227422 ], [ -96.320008246674675, 29.791967171389356 ], [ -96.320348246464576, 29.791895171482771 ], [ -96.320688246514749, 29.791939171179305 ], [ -96.320947246947242, 29.791961171047348 ], [ -96.321035247177903, 29.791978171296545 ], [ -96.321319247325206, 29.79203817085839 ], [ -96.321419247080556, 29.79207717074139 ], [ -96.321993247577154, 29.792390171155407 ], [ -96.322144247032512, 29.792511171509194 ], [ -96.322258247669325, 29.792632170868924 ], [ -96.322396247567141, 29.79283017084477 ], [ -96.322472247065676, 29.792956171384674 ], [ -96.322573247916523, 29.793209171687248 ], [ -96.322724247145089, 29.79347317145805 ], [ -96.322926247695435, 29.793610171094617 ], [ -96.323228247243449, 29.79404417117432 ], [ -96.323808248021621, 29.794539171048964 ], [ -96.323896247350802, 29.794660171429264 ], [ -96.323966247401387, 29.79494617182721 ], [ -96.32402324838236, 29.795039171824595 ], [ -96.324287247461328, 29.795193171827517 ], [ -96.324438247686942, 29.79535317184229 ], [ -96.324464248488823, 29.795606171642426 ], [ -96.324539248403582, 29.795660171664515 ], [ -96.32475424829822, 29.795754172004095 ], [ -96.324848247735716, 29.79586417131155 ], [ -96.32486124792608, 29.79605117196208 ], [ -96.324974248431445, 29.796139172051809 ], [ -96.325157248687347, 29.796199172016177 ], [ -96.325390247984217, 29.796457171381679 ], [ -96.325605248227362, 29.796551172097605 ], [ -96.325913248453318, 29.796606171411362 ], [ -96.326153248697793, 29.796765172177416 ], [ -96.326298248811852, 29.796996172066812 ], [ -96.326518248823632, 29.797161171684802 ], [ -96.326827248440509, 29.797238171744073 ], [ -96.327224248554572, 29.797425171724939 ], [ -96.327363249004961, 29.797447172390481 ], [ -96.327451249310968, 29.797496172145213 ], [ -96.32754024888024, 29.797672172064591 ], [ -96.327495249100224, 29.797870172180914 ], [ -96.327552248855625, 29.798150172314987 ], [ -96.32777324871924, 29.798414172091601 ], [ -96.328101249217454, 29.798513172500609 ], [ -96.328353249632798, 29.798546172520098 ], [ -96.328624249359763, 29.798640172299198 ], [ -96.328983249647109, 29.798645171889586 ], [ -96.329235249254381, 29.798595172145493 ], [ -96.329588249426962, 29.798442172043657 ], [ -96.330117249542695, 29.797963171893564 ], [ -96.330250249865998, 29.797892171867819 ], [ -96.330596249611446, 29.797782171715692 ], [ -96.330697249625516, 29.797760171932815 ], [ -96.330855250070741, 29.797705171484168 ], [ -96.33111924953468, 29.797694172198998 ], [ -96.3312832494736, 29.797699171413527 ], [ -96.331598250297745, 29.797765171480226 ], [ -96.331964250420398, 29.797886171610781 ], [ -96.332134249564191, 29.798002172224653 ], [ -96.332248249649709, 29.798040171706379 ], [ -96.33234824985, 29.7980401716346 ], [ -96.332733250528165, 29.798210172052492 ], [ -96.332909249903636, 29.798353171589834 ], [ -96.333067250282681, 29.798557171751369 ], [ -96.333256250179119, 29.798765171629576 ], [ -96.333609250868577, 29.799601171841402 ], [ -96.333628250906315, 29.799898172575226 ], [ -96.333691250213064, 29.80027217228373 ], [ -96.33372325054394, 29.800387172407088 ], [ -96.333912250909535, 29.800618172054261 ], [ -96.333944250438947, 29.80067317232168 ], [ -96.334246250810594, 29.800882172203494 ], [ -96.334637250484349, 29.801074172367361 ], [ -96.334939251246837, 29.801162172106288 ], [ -96.335343250973082, 29.801118172074943 ], [ -96.335935251568188, 29.800964172032543 ], [ -96.336244250793314, 29.800925172696825 ], [ -96.336635251084772, 29.800925172338474 ], [ -96.336988251358918, 29.800986171963238 ], [ -96.337303251900124, 29.801195172135049 ], [ -96.337391251068979, 29.801277172421102 ], [ -96.337398251844633, 29.801360172160688 ], [ -96.337385251291437, 29.80142517229395 ], [ -96.337410251911976, 29.801717172553857 ], [ -96.337492251541263, 29.802217172619585 ], [ -96.337486252035845, 29.802321172380271 ], [ -96.337436251409287, 29.802470172794941 ], [ -96.337335251653485, 29.80270617224415 ], [ -96.337177251281247, 29.802761173113989 ], [ -96.336566251203422, 29.803091172517973 ], [ -96.336377251613371, 29.803179173074504 ], [ -96.336150250972082, 29.803223172718521 ], [ -96.335841251376308, 29.803240172804518 ], [ -96.33552625134233, 29.803212172954112 ], [ -96.335286250905838, 29.803207173015089 ], [ -96.334997250703353, 29.803174172858856 ], [ -96.334820251385111, 29.803119173040063 ], [ -96.334423251364598, 29.803042172457655 ], [ -96.333938250446081, 29.802839172582217 ], [ -96.333515250971416, 29.802806173087152 ], [ -96.333156250258071, 29.802795172863984 ], [ -96.332872250205398, 29.802811172503457 ], [ -96.332683250104537, 29.802844173176059 ], [ -96.332519250716615, 29.802927172478579 ], [ -96.332286249870137, 29.803108172519746 ], [ -96.332034250769325, 29.803350172808223 ], [ -96.33192124974461, 29.803477172871268 ], [ -96.331719249820409, 29.803757172735352 ], [ -96.331581250590389, 29.804032173120472 ], [ -96.331543250611318, 29.804158172974301 ], [ -96.331505250285275, 29.804389173468454 ], [ -96.331499250457242, 29.804494172932682 ], [ -96.331511249899236, 29.804587173315873 ], [ -96.331562250230093, 29.804801173177854 ], [ -96.331845250261964, 29.805565173348032 ], [ -96.331984250730571, 29.806016173339213 ], [ -96.332053250089842, 29.806275173676994 ], [ -96.332085250851662, 29.806456173203337 ], [ -96.33208525044833, 29.806599173428175 ], [ -96.332035250909897, 29.806809173269798 ], [ -96.331978249928937, 29.807050173853412 ], [ -96.331518250882198, 29.808386173684347 ], [ -96.331417250453057, 29.808638173663233 ], [ -96.331367250674262, 29.808820174536155 ], [ -96.331323250414556, 29.809051174410051 ], [ -96.331228250694679, 29.810002174648453 ], [ -96.331146250730569, 29.810425174028715 ], [ -96.331210249914122, 29.810793174332616 ], [ -96.331102249938354, 29.811233174523185 ], [ -96.331102250322829, 29.811266174544894 ], [ -96.331178250762036, 29.811645174497855 ], [ -96.331147250617434, 29.812415174886798 ], [ -96.331204250456352, 29.81266217461782 ], [ -96.331185250303491, 29.812893174561911 ], [ -96.331021250027419, 29.813393174848486 ], [ -96.331033250332609, 29.813663174908449 ], [ -96.331065250500188, 29.813916175548329 ], [ -96.331046250179398, 29.814026175443416 ], [ -96.330996250292984, 29.814136175571257 ], [ -96.330889250022054, 29.814306175007285 ], [ -96.330876250468279, 29.814454175670178 ], [ -96.330977250962775, 29.81466917575117 ], [ -96.331078250638072, 29.814806174946906 ], [ -96.331387250467188, 29.815075175051927 ], [ -96.331935251290631, 29.815169175220241 ], [ -96.332118251234562, 29.815229175410362 ], [ -96.332238251213937, 29.815345175318775 ], [ -96.332408250543054, 29.815537175308346 ], [ -96.332566250678937, 29.815669175089383 ], [ -96.33278625079825, 29.815817175662431 ], [ -96.333095251634944, 29.815955175329286 ], [ -96.333322251372721, 29.816268175878722 ], [ -96.333662251301149, 29.816466175580331 ], [ -96.334016251185616, 29.81674117553953 ], [ -96.334274251688726, 29.816928175837759 ], [ -96.334602251331788, 29.817120175931446 ], [ -96.334879251536151, 29.817307175442078 ], [ -96.335068251545437, 29.817499175810955 ], [ -96.335604252324174, 29.818098175460463 ], [ -96.335724252402912, 29.818258175504173 ], [ -96.335907251906306, 29.818577176346235 ], [ -96.336147252294893, 29.818873175918423 ], [ -96.336229252439409, 29.818994175599144 ], [ -96.336279252374027, 29.819126175753151 ], [ -96.336317252195528, 29.819280175690416 ], [ -96.336500252525241, 29.819544175739818 ], [ -96.336657252155135, 29.819725176047637 ], [ -96.336834252182669, 29.820176175802704 ], [ -96.336903252318834, 29.820259176347353 ], [ -96.337067252404381, 29.820621176007666 ], [ -96.337301252041712, 29.820990175898029 ], [ -96.337402252819288, 29.821209176302993 ], [ -96.33758425210209, 29.821396176676938 ], [ -96.337647252933252, 29.821484176361736 ], [ -96.337944252236994, 29.821820176861234 ], [ -96.338076252957919, 29.821946176473222 ], [ -96.338404252492126, 29.822243176406161 ], [ -96.338694253013898, 29.82247417699892 ], [ -96.338877252834862, 29.822655176879802 ], [ -96.339028253010042, 29.822732176821578 ], [ -96.339211252918687, 29.822908176646912 ], [ -96.339489253291248, 29.823056176427912 ], [ -96.339678252746651, 29.823177176644485 ], [ -96.339816252679242, 29.823342176331185 ], [ -96.340018252858613, 29.823479177152759 ], [ -96.340390253215872, 29.82367717701003 ], [ -96.340863253783183, 29.823782176963068 ], [ -96.341014253791528, 29.823880177255525 ], [ -96.341222253428185, 29.824062176602844 ], [ -96.341380253516022, 29.82416617664812 ], [ -96.341525253710302, 29.824249176917579 ], [ -96.341708253244462, 29.824326177268802 ], [ -96.342036254122888, 29.824496177107545 ], [ -96.342187253298974, 29.824556176625702 ], [ -96.342262253347641, 29.8246221772472 ], [ -96.342282254058404, 29.8246391768702 ], [ -96.342402253403264, 29.824897176980663 ], [ -96.342540253535105, 29.825145177177255 ], [ -96.342742253720743, 29.82535317735222 ], [ -96.342761253905124, 29.825579177456156 ], [ -96.342912253679614, 29.825991177530085 ], [ -96.342976254156767, 29.826337176858853 ], [ -96.34295025370001, 29.826640177271127 ], [ -96.342963254283745, 29.827041177331012 ], [ -96.342762253801851, 29.827767177822729 ], [ -96.342793253630077, 29.828019177662654 ], [ -96.342856253711233, 29.828151177846344 ], [ -96.342844253951213, 29.828333177480573 ], [ -96.34277425421449, 29.828459178088316 ], [ -96.342781254072861, 29.828536177268344 ], [ -96.342749254522161, 29.828784178110258 ], [ -96.342749253744444, 29.828981177677932 ], [ -96.342819254230847, 29.829135177402293 ], [ -96.342875254072396, 29.829223178113448 ], [ -96.342920253745916, 29.829267177759263 ], [ -96.342970254654716, 29.829339177412699 ], [ -96.343027254739098, 29.829454178307856 ], [ -96.343166254800437, 29.829625177896737 ], [ -96.343254254003355, 29.829702178022586 ], [ -96.34353825406231, 29.829877177670447 ], [ -96.343670254628734, 29.829932178393239 ], [ -96.34375225490254, 29.829954177991223 ], [ -96.343865254159567, 29.829965177919679 ], [ -96.344275254073963, 29.830081177837886 ], [ -96.344483254766573, 29.830152177811552 ], [ -96.345530254479911, 29.829712177957035 ], [ -96.345618254554694, 29.829646177643255 ], [ -96.345851254766004, 29.82950317787737 ], [ -96.346192255047313, 29.829223177610643 ], [ -96.346425255532623, 29.829080177772305 ], [ -96.34686625523257, 29.828882177939779 ], [ -96.347093254963596, 29.828832178024207 ], [ -96.347276255078611, 29.828810177545467 ], [ -96.347522255613143, 29.828750177334772 ], [ -96.347881255199951, 29.828700177844329 ], [ -96.348613255502173, 29.828667177837158 ], [ -96.349224255641957, 29.828562177485392 ], [ -96.34949525547033, 29.82850717734102 ], [ -96.350006256372268, 29.82836417772716 ], [ -96.350302256494345, 29.828249177253589 ], [ -96.350523256514421, 29.828205177036764 ], [ -96.350743256156491, 29.828117176921953 ], [ -96.350939255670681, 29.828029177057321 ], [ -96.351147256632473, 29.827952177427587 ], [ -96.35134825631097, 29.827847177103578 ], [ -96.351525256144413, 29.827770177370994 ], [ -96.351916256628812, 29.82753917751732 ], [ -96.352206256420018, 29.827347176903917 ], [ -96.35237025606979, 29.827105177089695 ], [ -96.352552256434237, 29.826797177426354 ], [ -96.352577256730967, 29.82661617654778 ], [ -96.352579256315892, 29.826469176962814 ], [ -96.352590256583952, 29.825785176986763 ], [ -96.352621256276436, 29.825582176444485 ], [ -96.352609256266476, 29.825439177134708 ], [ -96.352640256018987, 29.825302176949123 ], [ -96.352747257017469, 29.825109176828853 ], [ -96.352785256382589, 29.824829176924691 ], [ -96.352816256200427, 29.824675176405389 ], [ -96.352823257002058, 29.824521176822095 ], [ -96.352886257005395, 29.824389176073463 ], [ -96.352999256031552, 29.824329176602564 ], [ -96.353125256889939, 29.824285176837243 ], [ -96.353289257099888, 29.824246176555455 ], [ -96.353648256517843, 29.824180175999363 ], [ -96.35410225704031, 29.824114176370063 ], [ -96.354317256510257, 29.824048176373815 ], [ -96.354399257181512, 29.823987176121211 ], [ -96.354493256898593, 29.823872176436016 ], [ -96.354651256667964, 29.823768176588917 ], [ -96.354789257354895, 29.823652176614029 ], [ -96.35489025734482, 29.823454176001995 ], [ -96.354966256765238, 29.823267176649463 ], [ -96.355029256944704, 29.823064175878816 ], [ -96.355331257505, 29.82230017596607 ], [ -96.355432257505612, 29.82208017598116 ], [ -96.355589257521743, 29.821882175480521 ], [ -96.355785257424415, 29.821601176047 ], [ -96.355923256850033, 29.821381176071213 ], [ -96.356119256847663, 29.821029175274127 ], [ -96.356226257029633, 29.82089217545138 ], [ -96.356389257551854, 29.820727175655733 ], [ -96.356566256968762, 29.820524175259155 ], [ -96.356862257063838, 29.820210175698534 ], [ -96.35697525691441, 29.820073175318598 ], [ -96.3570702571309, 29.819891175153689 ], [ -96.357158257068775, 29.819770175000489 ], [ -96.357341257871553, 29.819451174963401 ], [ -96.357410256908196, 29.819380175657926 ], [ -96.357454257726005, 29.819303175158606 ], [ -96.357517256972855, 29.819237175338401 ], [ -96.357631257430555, 29.819155175684763 ], [ -96.357914257814059, 29.819056175545885 ], [ -96.358122257930944, 29.819001175110575 ], [ -96.35833025744985, 29.818956175257288 ], [ -96.358639257992024, 29.818912175530524 ], [ -96.358973257681413, 29.818901175390049 ], [ -96.359169257339175, 29.818874175445462 ], [ -96.359446257750321, 29.818874175052706 ], [ -96.35967325778131, 29.818857174776021 ], [ -96.359818257990966, 29.818868175234179 ], [ -96.360026257673027, 29.818868175062288 ], [ -96.360184257840004, 29.818857174927981 ], [ -96.360417258485725, 29.81888417477747 ], [ -96.360701258074457, 29.818873175185967 ], [ -96.360890258392573, 29.818917174802547 ], [ -96.360978258679154, 29.818956175017824 ], [ -96.361161258305458, 29.819071175217513 ], [ -96.361350258032928, 29.819324175234488 ], [ -96.361445258503991, 29.8194781752861 ], [ -96.361533258168492, 29.819593175485021 ], [ -96.361628258025505, 29.819785175559257 ], [ -96.361792258590697, 29.819989175626684 ], [ -96.362145258466057, 29.820044175303643 ], [ -96.362195258683229, 29.820033175290114 ], [ -96.362296258892115, 29.820033175740829 ], [ -96.362636258405701, 29.819939175517131 ], [ -96.363021259034568, 29.819494175105991 ], [ -96.363197258434496, 29.819109174669617 ], [ -96.363405259048008, 29.818938174762167 ], [ -96.363601258951931, 29.818878174953618 ], [ -96.363714258517845, 29.818861175367022 ], [ -96.364042259514704, 29.818883175266336 ], [ -96.364262259356664, 29.818949174647859 ], [ -96.36434425942528, 29.818987174804931 ], [ -96.364452259593961, 29.819064175227268 ], [ -96.364685259338145, 29.819196175257566 ], [ -96.364874259222077, 29.819328174769403 ], [ -96.365045259208983, 29.819559175017165 ], [ -96.365070259848991, 29.819630175220638 ], [ -96.365095259322189, 29.819960175351017 ], [ -96.365139259449975, 29.820169175341171 ], [ -96.365253259079083, 29.820284174872373 ], [ -96.365411259411118, 29.820416175400574 ], [ -96.365486259241138, 29.82043817500363 ], [ -96.365719259306076, 29.820433175652923 ], [ -96.365896259361946, 29.820372175652263 ], [ -96.366224260029512, 29.820361174906612 ], [ -96.366482259915315, 29.82052617505812 ], [ -96.366501259601691, 29.820652175713107 ], [ -96.366482259504522, 29.820955175590143 ], [ -96.366439259426087, 29.821241175832402 ], [ -96.366476260137077, 29.821581175592311 ], [ -96.366521259365854, 29.82167517533318 ], [ -96.366672260014823, 29.821851175337077 ], [ -96.366962259746899, 29.821977175556448 ], [ -96.367189260131937, 29.822004175577305 ], [ -96.367353260028437, 29.821982175634066 ], [ -96.367555260470766, 29.821916175581283 ], [ -96.368002260681294, 29.821878175140881 ], [ -96.368141260104409, 29.821889175051723 ], [ -96.36858226038521, 29.822136175784323 ], [ -96.368664260381735, 29.82234517546771 ], [ -96.368778260572469, 29.822482175198051 ], [ -96.368829260420796, 29.822768175736229 ], [ -96.368974260480741, 29.823059175465627 ], [ -96.369138260646125, 29.823169175552945 ], [ -96.369409260468615, 29.823455176187888 ], [ -96.369623261157187, 29.823587176181615 ], [ -96.369989261195727, 29.823674175825598 ], [ -96.37036126110435, 29.82361917535389 ], [ -96.37056326051443, 29.823515176093441 ], [ -96.370865261340057, 29.823449175326743 ], [ -96.371073261136758, 29.823432175666262 ], [ -96.371401261451282, 29.823388175980806 ], [ -96.371685261541273, 29.823421175909409 ], [ -96.3720002613519, 29.823470175712231 ], [ -96.372492260978561, 29.823591175338372 ], [ -96.372921261657254, 29.823673175364174 ], [ -96.373103261947179, 29.823728175391238 ], [ -96.373393261228557, 29.823717175985266 ], [ -96.37347526206311, 29.823690175556102 ], [ -96.373589262007201, 29.823684175336954 ], [ -96.374099262004364, 29.823612175934045 ], [ -96.37428926150946, 29.823612175495402 ], [ -96.374478261479055, 29.823656175461139 ], [ -96.374579261642324, 29.823662175955388 ], [ -96.374762261797429, 29.82374417541573 ], [ -96.374888262525303, 29.823815175287979 ], [ -96.375004262196356, 29.823899175684478 ], [ -96.375274261848176, 29.824036175620403 ], [ -96.375520261971602, 29.824146175311249 ], [ -96.375690262428421, 29.824174175910589 ], [ -96.37615126265284, 29.824174175839222 ], [ -96.376447262314386, 29.824097175215918 ], [ -96.376952262820012, 29.823889175643473 ], [ -96.377349262161914, 29.823652175585785 ], [ -96.377689262897547, 29.823477175684012 ], [ -96.378036262890774, 29.823433175796033 ], [ -96.378484262922044, 29.823505175718644 ], [ -96.378662263045754, 29.823601175421672 ], [ -96.378849263445986, 29.823703175157906 ], [ -96.378988263137487, 29.823955175242194 ], [ -96.379089263141424, 29.824252175442243 ], [ -96.379145262912829, 29.824797175874082 ], [ -96.379208262961214, 29.825044176174988 ], [ -96.379334262976798, 29.825308175941974 ], [ -96.379605263617236, 29.825440176123017 ], [ -96.379945263288946, 29.825517175402336 ], [ -96.380210263750428, 29.825501175898285 ], [ -96.380897263140696, 29.825254175829944 ], [ -96.381351263839392, 29.82513317522637 ], [ -96.381566263618282, 29.825128175689667 ], [ -96.381925263508379, 29.825194175595403 ], [ -96.382234264261584, 29.82516117542087 ], [ -96.38242326451973, 29.825084175630359 ], [ -96.382612263906424, 29.824892175731581 ], [ -96.382966263968484, 29.824238175705137 ], [ -96.383054264007853, 29.824045175148687 ], [ -96.383313264320861, 29.823831175187387 ], [ -96.383723264634838, 29.823661175521607 ], [ -96.384101264016152, 29.823568175642723 ], [ -96.384568264080684, 29.823524174988073 ], [ -96.385545265212187, 29.823222174861801 ], [ -96.386428264587735, 29.822865174705179 ], [ -96.387002264987274, 29.822546174667245 ], [ -96.387361265082433, 29.822475175122179 ], [ -96.387569265501824, 29.822486175270836 ], [ -96.387752265656673, 29.822541174804982 ], [ -96.388042265287169, 29.822574174797193 ], [ -96.388433265358898, 29.822476174683036 ], [ -96.388672265478888, 29.822278175118875 ], [ -96.388767265807701, 29.822058174486099 ], [ -96.388729265803946, 29.821723175076936 ], [ -96.388818264993105, 29.821464174969076 ], [ -96.389039265912729, 29.821310174712377 ], [ -96.389354265120375, 29.821327174711559 ], [ -96.389549265620659, 29.821399174607585 ], [ -96.389789265651984, 29.821745174621281 ], [ -96.389959265761235, 29.821943175099676 ], [ -96.390167265414917, 29.822003174629451 ], [ -96.390797266490438, 29.822158174930035 ], [ -96.391610266604815, 29.822235174776974 ], [ -96.391970266673482, 29.822212175078011 ], [ -96.392039265947261, 29.822208174543228 ], [ -96.392436266384195, 29.822114174475441 ], [ -96.392632266623124, 29.821999174838119 ], [ -96.392890266971705, 29.821818174721059 ], [ -96.393067266511963, 29.821763174666014 ], [ -96.393338266663079, 29.821741174603538 ], [ -96.393609266739787, 29.821829174174777 ], [ -96.393779267071423, 29.821994174666493 ], [ -96.393842266564093, 29.822109175018781 ], [ -96.393924267035402, 29.822357174328406 ], [ -96.393911266321808, 29.822483174762361 ], [ -96.393873266857383, 29.822544174870483 ], [ -96.393507266701135, 29.822928175119191 ], [ -96.393306267108343, 29.823242175017793 ], [ -96.393261266724409, 29.823401174631339 ], [ -96.393261266693614, 29.82354917467698 ], [ -96.393381267174149, 29.823830175074651 ], [ -96.393583266524359, 29.824116174889809 ], [ -96.393778266929147, 29.824198174657322 ], [ -96.394018266569958, 29.824237174724033 ], [ -96.394251267041781, 29.824198175023295 ], [ -96.394415267256932, 29.824122175305632 ], [ -96.394718266976682, 29.823907174924781 ], [ -96.394781267462974, 29.82372617477456 ], [ -96.394825267151248, 29.823462174537443 ], [ -96.39492026735725, 29.82328617459315 ], [ -96.395159267482612, 29.823017175159265 ], [ -96.395424267216541, 29.822836174463419 ], [ -96.395676267380281, 29.822709174529042 ], [ -96.396206267397559, 29.822605174343554 ], [ -96.3965722673138, 29.822583174908903 ], [ -96.396975267524013, 29.822649174782683 ], [ -96.397385267861395, 29.822820174484367 ], [ -96.397731268140106, 29.822996174945818 ], [ -96.398229267762702, 29.823403174311995 ], [ -96.398437267783848, 29.823524174706023 ], [ -96.399263268114666, 29.823887174969865 ], [ -96.401324268893717, 29.824822175339474 ], [ -96.401663269209436, 29.824920174557477 ], [ -96.401841268995952, 29.824971174522471 ], [ -96.402144268622266, 29.825042175279034 ], [ -96.402459268972109, 29.825097174749359 ], [ -96.402673269582635, 29.825158175038517 ], [ -96.40290726925123, 29.825191175224372 ], [ -96.403203269585546, 29.825185174729427 ], [ -96.403518269518429, 29.82515317494331 ], [ -96.403695269058872, 29.825076174842245 ], [ -96.40391526893012, 29.825059175236973 ], [ -96.404104269023762, 29.825131174563012 ], [ -96.404464269430633, 29.825356175093482 ], [ -96.404766269706457, 29.825505175204011 ], [ -96.404918270046437, 29.825538175040947 ], [ -96.405138270118186, 29.825549175129211 ], [ -96.405334270185193, 29.825516175153808 ], [ -96.405624269455458, 29.82544517521686 ], [ -96.406040269935303, 29.825241175155469 ], [ -96.407093269889231, 29.824483174899274 ], [ -96.407200269835414, 29.824340174317772 ], [ -96.407339270073749, 29.824071174140592 ], [ -96.40745927004096, 29.823939174510794 ], [ -96.4077172702182, 29.823823174176091 ], [ -96.408020270636783, 29.823824174111337 ], [ -96.408291270232027, 29.823884174382133 ], [ -96.408568270387718, 29.824115174533677 ], [ -96.408802270654618, 29.824439174943073 ], [ -96.408953270280847, 29.825072174441651 ], [ -96.409072270352524, 29.825264174710249 ], [ -96.409375270449033, 29.825402174822166 ], [ -96.409684270474983, 29.825457174867832 ], [ -96.410119271028066, 29.825490175076556 ], [ -96.41044727099414, 29.825424174397533 ], [ -96.410662270799989, 29.825302174361468 ], [ -96.41077527163597, 29.825166174301117 ], [ -96.410787271501718, 29.825072174539141 ], [ -96.410850270701133, 29.824869174152454 ], [ -96.411046270919229, 29.824693174917623 ], [ -96.41173927096915, 29.824561174936967 ], [ -96.412231271730846, 29.824550174673064 ], [ -96.412698272115392, 29.824660174352964 ], [ -96.413290272042644, 29.824990174277655 ], [ -96.414362271912879, 29.826019174502271 ], [ -96.414557272049962, 29.826249174527248 ], [ -96.41469627243724, 29.826425175000118 ], [ -96.414797272018959, 29.826629174481457 ], [ -96.414979272748411, 29.82717917470346 ], [ -96.415143272708022, 29.82759617514985 ], [ -96.415313271985639, 29.827794175376606 ], [ -96.415452272812644, 29.827921175452104 ], [ -96.415837272433009, 29.828097174791594 ], [ -96.416593272936836, 29.828223175474349 ], [ -96.417205272742066, 29.828295174672814 ], [ -96.417652272685061, 29.828389175495907 ], [ -96.417892272638227, 29.828477175195061 ], [ -96.418308273371323, 29.828664175553062 ], [ -96.418724273043793, 29.828982175412872 ], [ -96.419172273929007, 29.829450174934841 ], [ -96.419455273932201, 29.829505175127323 ], [ -96.419720273983501, 29.829510175624826 ], [ -96.420130273845672, 29.829434175020406 ], [ -96.420527274073635, 29.829307174815646 ], [ -96.420798274090004, 29.829252174825317 ], [ -96.42103827348997, 29.829274174749795 ], [ -96.421202274392883, 29.82939017495309 ], [ -96.421221274461672, 29.829478175562773 ], [ -96.421195274117082, 29.829560175116544 ], [ -96.420716274135572, 29.829906175608237 ], [ -96.420628273844372, 29.830022175700787 ], [ -96.420565274265158, 29.830203175122502 ], [ -96.420621273750854, 29.830363175104132 ], [ -96.420691273981404, 29.830451175706141 ], [ -96.420899273694332, 29.830511175471525 ], [ -96.421271274455123, 29.830484175441203 ], [ -96.421712274485259, 29.830473175364052 ], [ -96.421914274182868, 29.830495174979042 ], [ -96.422084273852548, 29.830632175217151 ], [ -96.422204274042528, 29.830858175860577 ], [ -96.422254273962793, 29.832100176070455 ], [ -96.42229227396021, 29.832402176135869 ], [ -96.422285274714611, 29.832793175430226 ], [ -96.422210274159411, 29.832969175435647 ], [ -96.421857274707094, 29.833194176053667 ], [ -96.421693274151409, 29.833348175491338 ], [ -96.421636274463353, 29.833573175835962 ], [ -96.421642274826041, 29.833826176009048 ], [ -96.421705274702234, 29.833975175672041 ], [ -96.422001273985828, 29.834365176103155 ], [ -96.422335274832776, 29.834640176575043 ], [ -96.422518274771022, 29.83476617609751 ], [ -96.422663274139978, 29.834816176027811 ], [ -96.422802274224352, 29.834805176192869 ], [ -96.423275275205214, 29.834514176406444 ], [ -96.423565274512256, 29.834536176465793 ], [ -96.423811274714282, 29.834657175717325 ], [ -96.424013274685663, 29.834910176259381 ], [ -96.424000274801642, 29.835074176216565 ], [ -96.423855274852116, 29.835437176135382 ], [ -96.423779274759085, 29.835817176500576 ], [ -96.423766274502754, 29.835959176034645 ], [ -96.423621275066125, 29.836157176137881 ], [ -96.423672274729086, 29.836515176308602 ], [ -96.423754274600583, 29.836619176394208 ], [ -96.423836274959058, 29.836669176797802 ], [ -96.42396227523291, 29.836669176621708 ], [ -96.424145275332251, 29.836625176606482 ], [ -96.424283275204985, 29.836537176868294 ], [ -96.424384274953297, 29.83642717631092 ], [ -96.424479274788155, 29.836394176753085 ], [ -96.424637275032111, 29.836377176809314 ], [ -96.42484527533199, 29.836383176770369 ], [ -96.424990275550158, 29.836454176372442 ], [ -96.425185274963766, 29.836586176191567 ], [ -96.425387275340398, 29.836878176514517 ], [ -96.425450275149089, 29.837070176737221 ], [ -96.425305275736989, 29.837510176907244 ], [ -96.42505227584428, 29.837922176660435 ], [ -96.425008275643194, 29.838137176901729 ], [ -96.425014275720869, 29.838302176860232 ], [ -96.425248275789912, 29.838642177215824 ], [ -96.425714276115244, 29.839121177009449 ], [ -96.426219275847714, 29.839517177077706 ], [ -96.427032275827884, 29.839924177289543 ], [ -96.427335276248314, 29.840110177528871 ], [ -96.427473275663132, 29.840226176733854 ], [ -96.427562275841538, 29.840369177021127 ], [ -96.427669276191054, 29.840644176885935 ], [ -96.427757275760356, 29.840809177082942 ], [ -96.427858275862832, 29.840891177480472 ], [ -96.428022275990003, 29.840935177173222 ], [ -96.428167276825903, 29.840930176871208 ], [ -96.428350276555648, 29.840837177308593 ], [ -96.428419276264918, 29.840803177393269 ], [ -96.428942276350753, 29.840600177443331 ], [ -96.429182277054949, 29.840550177283099 ], [ -96.429390276682568, 29.840567176927856 ], [ -96.42967427676858, 29.840721177458025 ], [ -96.430090277109755, 29.841051176782948 ], [ -96.430336276493449, 29.841161177202643 ], [ -96.430582276956656, 29.841238177188252 ], [ -96.430998276751083, 29.841265177033346 ], [ -96.431654276716841, 29.841463177382991 ], [ -96.431887277023634, 29.841524176829637 ], [ -96.432001276964456, 29.841535177150497 ], [ -96.43210227716267, 29.841518177032565 ], [ -96.43270127731131, 29.841321177535811 ], [ -96.433224277162552, 29.841211176957124 ], [ -96.433565277192187, 29.841167177128174 ], [ -96.433804277283258, 29.841194177185614 ], [ -96.434107278060921, 29.841310176700851 ], [ -96.434485278394305, 29.841628177277407 ], [ -96.434731278505069, 29.84190917766724 ], [ -96.434807278167455, 29.842118177700527 ], [ -96.434800277782912, 29.842266177226676 ], [ -96.43476927852214, 29.842376177700778 ], [ -96.434693278118601, 29.842475176917034 ], [ -96.434460278461074, 29.842602176958152 ], [ -96.434214277494547, 29.842854177548322 ], [ -96.434132277626503, 29.842997177730094 ], [ -96.434069278013965, 29.843085177447673 ], [ -96.434069278173453, 29.843173177616471 ], [ -96.434144277958183, 29.843333177800154 ], [ -96.434422278269579, 29.843641177657982 ], [ -96.434731278197887, 29.843877177656001 ], [ -96.434794278484247, 29.84393217799402 ], [ -96.434844277970811, 29.843998177513541 ], [ -96.434926278165605, 29.844168177292214 ], [ -96.435027277972154, 29.844432177910949 ], [ -96.434832277642769, 29.844751178140974 ], [ -96.434769278565099, 29.844894177436938 ], [ -96.434605278040408, 29.845125178089358 ], [ -96.4344342783846, 29.845422178073267 ], [ -96.434409278276988, 29.845680178228008 ], [ -96.434459278420817, 29.845845177616582 ], [ -96.434586278252496, 29.845993177927649 ], [ -96.434876277838256, 29.846109178362337 ], [ -96.435002278465205, 29.846186177925421 ], [ -96.435115278373885, 29.84634517766899 ], [ -96.435216278337791, 29.846571178575317 ], [ -96.435210278191889, 29.846670178174726 ], [ -96.435103278844736, 29.846840177854325 ], [ -96.435024278627054, 29.846916178350366 ], [ -96.434825278722329, 29.847109178353829 ], [ -96.434636278098168, 29.847263177858014 ], [ -96.434579277977335, 29.847384178681665 ], [ -96.434560278606313, 29.847527178258257 ], [ -96.434604277852628, 29.847692178215553 ], [ -96.434756277897108, 29.847950178343631 ], [ -96.435065278342691, 29.848192178134553 ], [ -96.435607278702861, 29.848671178678551 ], [ -96.435859278475078, 29.848951178921201 ], [ -96.435973278230875, 29.849061178914759 ], [ -96.436092279147587, 29.849111178307968 ], [ -96.436206278848971, 29.849182178893368 ], [ -96.436597278341935, 29.849484178681394 ], [ -96.436698278965167, 29.849506178717512 ], [ -96.43691827903541, 29.849517178788009 ], [ -96.437259279468506, 29.849402179048603 ], [ -96.437568279149744, 29.849226178690323 ], [ -96.437713278616599, 29.849182178582474 ], [ -96.437909278910311, 29.849193178831289 ], [ -96.438230279628598, 29.849325179005305 ], [ -96.438583278916241, 29.849594178239848 ], [ -96.438754279266249, 29.849820178930749 ], [ -96.438867279587612, 29.849946178914777 ], [ -96.438993278956929, 29.85002917829474 ], [ -96.439409279701124, 29.850166178434506 ], [ -96.439573279237649, 29.850276178516804 ], [ -96.439819279953213, 29.850568178650352 ], [ -96.440013279487005, 29.85096517915801 ], [ -96.440071279987905, 29.851084178696066 ], [ -96.440128279304275, 29.851200179292874 ], [ -96.440160279474881, 29.85153517853972 ], [ -96.440204279500364, 29.85168317911781 ], [ -96.440463279887283, 29.851931179191293 ], [ -96.440866279945951, 29.852931179117661 ], [ -96.440809279758781, 29.853619179174821 ], [ -96.441068280560643, 29.853734179644999 ], [ -96.441408280695242, 29.853745179006165 ], [ -96.441995280858052, 29.85352517951879 ], [ -96.442197280509291, 29.85348717968402 ], [ -96.442354280262421, 29.853498179513512 ], [ -96.442430280354486, 29.853597179538642 ], [ -96.442499280642068, 29.853855179259792 ], [ -96.442569281017768, 29.853932179249352 ], [ -96.442733280223905, 29.853954179035114 ], [ -96.442846280311969, 29.85392717951898 ], [ -96.44331328099301, 29.8536351791081 ], [ -96.443597281139333, 29.853602179157114 ], [ -96.443918280652568, 29.853646178932728 ], [ -96.444000280694766, 29.853740179235878 ], [ -96.444114280753581, 29.85400917959198 ], [ -96.444000281207295, 29.854201178959695 ], [ -96.44356528085855, 29.854581179425278 ], [ -96.443527281101055, 29.854685179535267 ], [ -96.443761280914742, 29.854773179623269 ], [ -96.44393128048894, 29.854878179715104 ], [ -96.443950280774132, 29.855021179481081 ], [ -96.443975280598309, 29.855114179354707 ], [ -96.444499280737077, 29.855350179671152 ], [ -96.444625281078316, 29.855372179641694 ], [ -96.44475128130523, 29.855339179591404 ], [ -96.444757281652471, 29.855158179638416 ], [ -96.444908281141977, 29.854933179888466 ], [ -96.444921280716699, 29.854845179659225 ], [ -96.444744281472936, 29.854542179758496 ], [ -96.44472628127528, 29.854399179300369 ], [ -96.444776281012764, 29.854306179659119 ], [ -96.444921281615166, 29.854284179139462 ], [ -96.445369281600293, 29.854476179353465 ], [ -96.445489281551033, 29.854542179158116 ], [ -96.445571281458925, 29.854531178942374 ], [ -96.445602280887954, 29.854460179212314 ], [ -96.445634281547171, 29.854306179334646 ], [ -96.445709281758937, 29.854218179256257 ], [ -96.445936281041796, 29.854212179544323 ], [ -96.446189280970231, 29.854289179265354 ], [ -96.446340281500923, 29.85442717892478 ], [ -96.44640328151317, 29.854795179248292 ], [ -96.446529281121485, 29.855076179638708 ], [ -96.446700282018725, 29.855257179096746 ], [ -96.446939282064292, 29.855334179768313 ], [ -96.447166281967768, 29.855290179686577 ], [ -96.447387282069414, 29.855284179723842 ], [ -96.44751928191846, 29.855350179487044 ], [ -96.447942281670151, 29.855686179110052 ], [ -96.448184281805638, 29.855801179592639 ], [ -96.448358282604403, 29.855884179525464 ], [ -96.448869282406989, 29.85601017988564 ], [ -96.44997328295608, 29.85642217958619 ], [ -96.450339282205377, 29.856444179778237 ], [ -96.450585282341791, 29.856400179479834 ], [ -96.451272282882584, 29.856098179076021 ], [ -96.451688282811546, 29.855999179714093 ], [ -96.452306282746747, 29.856004179729258 ], [ -96.453120282972563, 29.856224179179478 ], [ -96.453416283879804, 29.85634517936894 ], [ -96.453669283076863, 29.856345179263798 ], [ -96.453978284017637, 29.8562851793227 ], [ -96.454135283497777, 29.856164179109538 ], [ -96.454350283228408, 29.855845179356507 ], [ -96.454463283299646, 29.855768179631426 ], [ -96.45460228359525, 29.855702179137779 ], [ -96.454829283833433, 29.855691179379704 ], [ -96.454898283624843, 29.855630179109983 ], [ -96.454942283607721, 29.855570179058418 ], [ -96.454942283749901, 29.855493179172079 ], [ -96.454917283517602, 29.855389179231992 ], [ -96.45486028419684, 29.855295179215442 ], [ -96.454677283857805, 29.855097179545048 ], [ -96.454652283991933, 29.855059178945936 ], [ -96.454646283690337, 29.855009179304723 ], [ -96.454652283740103, 29.85495417874159 ], [ -96.454690283953028, 29.854888179334967 ], [ -96.455068283307057, 29.854850179527475 ], [ -96.45516928326964, 29.854806178665456 ], [ -96.455220283753548, 29.854784178676862 ], [ -96.455251283806362, 29.854790179471458 ], [ -96.455693283603509, 29.854883178951919 ], [ -96.456286283654251, 29.85513017945739 ], [ -96.456437284101753, 29.855136179505923 ], [ -96.457043284051849, 29.854877179127069 ], [ -96.457522284814829, 29.854811179047712 ], [ -96.457654284722452, 29.854828179077181 ], [ -96.457711284359007, 29.854921178903769 ], [ -96.457673284856853, 29.855377178740572 ], [ -96.457793284207995, 29.855465179156695 ], [ -96.457925285007619, 29.855482178916127 ], [ -96.458039284048112, 29.855416179410284 ], [ -96.458783284741429, 29.855036179078436 ], [ -96.459117284295971, 29.854910178683721 ], [ -96.459269284332706, 29.85489317917612 ], [ -96.459515285304178, 29.854948178808137 ], [ -96.459660284635831, 29.854921179222799 ], [ -96.459824284431775, 29.854750179247969 ], [ -96.460000284618673, 29.854646179018342 ], [ -96.46024028529996, 29.854624178488347 ], [ -96.460530285477233, 29.854679179067737 ], [ -96.460568285255988, 29.854745178536611 ], [ -96.460429285586713, 29.854954178891351 ], [ -96.460373285109426, 29.855344179359587 ], [ -96.460410285584743, 29.855416179073735 ], [ -96.460511285434407, 29.855498179007068 ], [ -96.460764285192226, 29.855657179022693 ], [ -96.46086428499315, 29.855619178630764 ], [ -96.461010285398558, 29.855536178871382 ], [ -96.461092284852839, 29.855564178948061 ], [ -96.461104285709482, 29.855745179543984 ], [ -96.461028285655019, 29.856009179515844 ], [ -96.461066284842289, 29.856196179615377 ], [ -96.461451285762962, 29.856718179207704 ], [ -96.461893285594257, 29.857246179569476 ], [ -96.462158285227417, 29.857411179262524 ], [ -96.462505285359555, 29.857471179194093 ], [ -96.462611285427244, 29.857569179832531 ], [ -96.462657286278841, 29.857612179307871 ], [ -96.462725286044062, 29.857675179129537 ], [ -96.462763285748991, 29.857752179244738 ], [ -96.462801285764456, 29.857801179125012 ], [ -96.4627822853693, 29.858021179416152 ], [ -96.462713285785824, 29.858257179628769 ], [ -96.462744286080721, 29.858334180001251 ], [ -96.462908285815033, 29.858378179299798 ], [ -96.463381285796771, 29.85843917997164 ], [ -96.46370328621812, 29.858708179496421 ], [ -96.463886285906156, 29.8587741794747 ], [ -96.46411328601063, 29.85880717932271 ], [ -96.464283286574826, 29.858884179851909 ], [ -96.464441286133393, 29.858999179733882 ], [ -96.464473286144454, 29.859071179309961 ], [ -96.464479286360529, 29.859225179247343 ], [ -96.464473286829275, 29.859329179548379 ], [ -96.464365286030997, 29.859538179358431 ], [ -96.464309286110677, 29.859681180066737 ], [ -96.464296286307132, 29.859764179633341 ], [ -96.464372286521041, 29.860022179673482 ], [ -96.464637286141439, 29.860214179848555 ], [ -96.464681286532056, 29.860264179601948 ], [ -96.4647062864708, 29.860368180055634 ], [ -96.464738286206014, 29.860627180167761 ], [ -96.464864286139047, 29.860748180379524 ], [ -96.465072286779105, 29.860819180292832 ], [ -96.465886286493458, 29.860731179894508 ], [ -96.465987286353865, 29.860687179969684 ], [ -96.466157286871223, 29.860555180093144 ], [ -96.466308286540084, 29.860544179948029 ], [ -96.466491286466521, 29.860555180268019 ], [ -96.46669928729149, 29.860555180025788 ], [ -96.466781287063014, 29.860588179479688 ], [ -96.466926286754187, 29.860824179478573 ], [ -96.467015286523505, 29.8608681796585 ], [ -96.467097286681948, 29.860885179975249 ], [ -96.467179286953126, 29.860874180065885 ], [ -96.467374286967953, 29.860791179917076 ], [ -96.467469287596074, 29.860786179969324 ], [ -96.467652286881616, 29.860725180291745 ], [ -96.467797287023316, 29.860736179835573 ], [ -96.468087287026648, 29.860873179674257 ], [ -96.468106287541829, 29.860934179746607 ], [ -96.468088286826372, 29.860994180080567 ], [ -96.46807428754633, 29.861045180331505 ], [ -96.468052287436478, 29.861118180286358 ], [ -96.468036286875403, 29.86117017963717 ], [ -96.468036287146447, 29.861220179817806 ], [ -96.468169287236478, 29.861330180337269 ], [ -96.468383287881537, 29.861407180148916 ], [ -96.468667287958439, 29.861385179745568 ], [ -96.468894288041739, 29.861423179747487 ], [ -96.468964287796723, 29.861462179900744 ], [ -96.469330288154524, 29.861819180430786 ], [ -96.469582287700007, 29.862022180165361 ], [ -96.469784287466098, 29.862248180185766 ], [ -96.469859287452692, 29.862319179956938 ], [ -96.469948287934415, 29.862374180386421 ], [ -96.470150287601598, 29.862539180123825 ], [ -96.470295287896946, 29.862605180035388 ], [ -96.470415288365885, 29.862643180220189 ], [ -96.470509288357249, 29.862709180219266 ], [ -96.470661288501617, 29.862858180502911 ], [ -96.470844288505901, 29.863143180546576 ], [ -96.470951288196233, 29.863490180166924 ], [ -96.471052287989494, 29.863638180599949 ], [ -96.471146288630408, 29.863743180690488 ], [ -96.471235288339798, 29.863809180629033 ], [ -96.4714242879664, 29.863896180272189 ], [ -96.471487288292991, 29.863935180662349 ], [ -96.471664288604217, 29.863995180055056 ], [ -96.471790288634921, 29.864050180713452 ], [ -96.471992287971815, 29.864254180732331 ], [ -96.472288288257332, 29.864490180629858 ], [ -96.472768288208471, 29.864968180367107 ], [ -96.472926288637865, 29.865194180191516 ], [ -96.472989289123149, 29.865364180605273 ], [ -96.47292628839466, 29.86573218058323 ], [ -96.472983288493282, 29.866156180512441 ], [ -96.473090288925547, 29.866535181122977 ], [ -96.473254288933916, 29.866826180551762 ], [ -96.473330288667114, 29.86689818063191 ], [ -96.474106289547265, 29.867299181023427 ], [ -96.474307288940508, 29.867420181402519 ], [ -96.474465289594121, 29.867469180656986 ], [ -96.474623289160064, 29.867486181026582 ], [ -96.474743289272922, 29.867475180606039 ], [ -96.474963289364396, 29.867403181125926 ], [ -96.475033289113782, 29.867398180758602 ], [ -96.475184289187354, 29.867425181032456 ], [ -96.475266289273492, 29.867464180640294 ], [ -96.475632289792614, 29.867749180608921 ], [ -96.475720289766642, 29.867832180776393 ], [ -96.476124289536742, 29.868129180748365 ], [ -96.476496289501327, 29.868447181309687 ], [ -96.476597289348092, 29.868579180928567 ], [ -96.476743289513166, 29.868651180723319 ], [ -96.477594289654931, 29.86871618126295 ], [ -96.477865289769483, 29.86877718137918 ], [ -96.478231290729468, 29.868964180971226 ], [ -96.478616289829702, 29.869107181199901 ], [ -96.478711289962462, 29.869128181582997 ], [ -96.478837290209739, 29.869123181182694 ], [ -96.479310290363642, 29.868980181048435 ], [ -96.479493290092833, 29.868958181031005 ], [ -96.479600290587697, 29.868936180691392 ], [ -96.479726290294721, 29.868886180672042 ], [ -96.479859290294399, 29.868820181413046 ], [ -96.480117290731343, 29.86866618125082 ], [ -96.480363290617504, 29.868540180872319 ], [ -96.480514291044116, 29.868490181288916 ], [ -96.480691291069135, 29.868496180731444 ], [ -96.480754291330086, 29.868534181232576 ], [ -96.480849291229575, 29.868562181015513 ], [ -96.481038290415299, 29.868567180727602 ], [ -96.481114290894865, 29.868556181418676 ], [ -96.481498290547833, 29.868424180655985 ], [ -96.482167291428638, 29.868061180595518 ], [ -96.483157291473006, 29.867583180593659 ], [ -96.483498291492808, 29.867451180594735 ], [ -96.483737291227115, 29.867280180309074 ], [ -96.483926292045808, 29.8671751810449 ], [ -96.48409729144079, 29.867159180915401 ], [ -96.484822291877833, 29.8673351807867 ], [ -96.485018291792784, 29.867362180636537 ], [ -96.485098291783515, 29.867340180572484 ], [ -96.490866293360796, 29.871829180905522 ], [ -96.49276429360286, 29.8733071812389 ], [ -96.492877294304975, 29.873395181371347 ], [ -96.495242294758157, 29.875232182261382 ], [ -96.498180295529977, 29.877711182052373 ], [ -96.501342297026298, 29.880369182232176 ], [ -96.501354296220754, 29.880390182654313 ], [ -96.501480297094005, 29.88049618279355 ], [ -96.501613297197466, 29.880608182371656 ], [ -96.501724296214135, 29.880702182498958 ], [ -96.501796296219339, 29.880763182829867 ], [ -96.501813297204166, 29.880772182297083 ], [ -96.503724297548004, 29.882389182737743 ], [ -96.505847297532199, 29.884047183465153 ], [ -96.509279298491293, 29.886729183525595 ], [ -96.510794299521862, 29.887911183676582 ], [ -96.511639299676531, 29.888569183870782 ], [ -96.516901300823761, 29.892669184522866 ], [ -96.519419301653471, 29.894632184831167 ], [ -96.521466302498013, 29.896228185274509 ], [ -96.521548302166337, 29.896292185271577 ], [ -96.521770302020826, 29.896435185578195 ], [ -96.522547302530342, 29.896983184910557 ], [ -96.522612302374327, 29.897048185185906 ], [ -96.522737302532107, 29.897175184922229 ], [ -96.527425304485448, 29.900872185574841 ], [ -96.527510304437911, 29.90093918599765 ], [ -96.528147304230799, 29.901437186014434 ], [ -96.528160304143768, 29.901445186039076 ], [ -96.528543304255493, 29.901744185816881 ], [ -96.530066305305667, 29.902931185874539 ], [ -96.530183304813605, 29.903022186 ], [ -96.530300304530499, 29.90311318602075 ], [ -96.535712306369149, 29.907331187329344 ], [ -96.536334306853632, 29.908322187262506 ], [ -96.536727306483456, 29.908948187233182 ], [ -96.537809306692495, 29.910658187425728 ], [ -96.538421307634707, 29.911627187982738 ], [ -96.539521308038687, 29.91337218798478 ], [ -96.540478308213935, 29.914889188225526 ], [ -96.544407309168648, 29.921125188925078 ], [ -96.54616930965615, 29.923917189947502 ], [ -96.546261309601704, 29.924063190072676 ], [ -96.54628730954623, 29.924115189699251 ], [ -96.54878731124866, 29.928055190488365 ], [ -96.552345311427828, 29.93370219150221 ], [ -96.552395312164009, 29.933782191383333 ], [ -96.552446311521877, 29.933863191238657 ], [ -96.552969312328202, 29.934692191516088 ], [ -96.553039312031601, 29.934803191454989 ], [ -96.554456312142491, 29.937050192312039 ], [ -96.55448231222843, 29.937091191786614 ], [ -96.555229313273728, 29.938262191979533 ], [ -96.558363314108178, 29.943287193639467 ], [ -96.560899315103939, 29.947312194253378 ], [ -96.560977314226719, 29.947436194335836 ], [ -96.56101431439123, 29.9474951941861 ], [ -96.561079314395386, 29.947597193677392 ], [ -96.561143314481996, 29.947700193751487 ], [ -96.561205314509394, 29.94779719456459 ], [ -96.561266314649615, 29.947895194160623 ], [ -96.563938315764815, 29.952142194951154 ], [ -96.565369316161593, 29.954408194895912 ], [ -96.566743316675954, 29.956587195643092 ], [ -96.56774031641568, 29.958168195836002 ], [ -96.568528317623816, 29.959417196533025 ], [ -96.56985131755664, 29.961521196440081 ], [ -96.573467317955448, 29.957405196056445 ], [ -96.573525318205355, 29.957339195251368 ], [ -96.574681318276632, 29.956017195722513 ], [ -96.574974319021379, 29.955688194979203 ], [ -96.575036318224619, 29.95561919496657 ], [ -96.575545319170232, 29.955032194697026 ], [ -96.575966318979141, 29.954550194728387 ], [ -96.576383319198442, 29.954074195106084 ], [ -96.576563319239767, 29.953870195255337 ], [ -96.57674931924663, 29.953661195114215 ], [ -96.576905319529658, 29.953483194861548 ], [ -96.577093318816523, 29.953267194529563 ], [ -96.577281319356075, 29.953051194857863 ], [ -96.580614320105553, 29.949251194079594 ], [ -96.582772319899334, 29.946791193039012 ], [ -96.583271320619048, 29.946226193393265 ], [ -96.583314320607684, 29.946177193370776 ], [ -96.584950321120118, 29.944306192721989 ], [ -96.585203321188047, 29.944017192208825 ], [ -96.587396321601943, 29.941516191708438 ], [ -96.58747532074284, 29.941425191950767 ], [ -96.587574320973019, 29.941313192344403 ], [ -96.589103321946112, 29.939574191842397 ], [ -96.594148322343855, 29.933827190459937 ], [ -96.596139322533944, 29.931555189514906 ], [ -96.596969322587029, 29.930608189161589 ], [ -96.598212323101876, 29.929192189362904 ], [ -96.600640323315403, 29.926426188439365 ], [ -96.601025323754996, 29.925988188752381 ], [ -96.607716325028548, 29.91836318639762 ], [ -96.607779325200113, 29.918291186840534 ], [ -96.607957325596956, 29.918088186526536 ], [ -96.608503325034192, 29.917467186055081 ], [ -96.608763325860465, 29.917173186200067 ], [ -96.608822325808745, 29.917106186250741 ], [ -96.608872325141661, 29.91704818597545 ], [ -96.608910325774517, 29.917004186193832 ], [ -96.609319325321295, 29.916530186423653 ], [ -96.614248326115913, 29.910919185092226 ], [ -96.617043326758917, 29.907733184292123 ], [ -96.61706332678321, 29.907710184009421 ], [ -96.61733832665459, 29.907398184075646 ], [ -96.617464327514142, 29.907254183997345 ], [ -96.61751932729905, 29.907192184182851 ], [ -96.618396327205204, 29.906192183652418 ], [ -96.618898327530758, 29.905620183956998 ], [ -96.619741327794486, 29.904660182993755 ], [ -96.620514327667436, 29.903779183387542 ], [ -96.62062932824746, 29.903648183503019 ], [ -96.621375327477011, 29.90284218338002 ], [ -96.62525832825925, 29.898652182110695 ], [ -96.627133329040944, 29.896448181916981 ], [ -96.627993328852284, 29.895438181408458 ], [ -96.628717329239379, 29.894587181220707 ], [ -96.629064329376163, 29.894165181187113 ], [ -96.629883329290806, 29.893232180651687 ], [ -96.63006333013108, 29.893020180496286 ], [ -96.630196329336769, 29.892864180261579 ], [ -96.634498330423199, 29.887792179895609 ], [ -96.63692233051836, 29.884972178682233 ], [ -96.637032331168626, 29.884844179039145 ], [ -96.637142331563496, 29.884716178398641 ], [ -96.637199331029038, 29.884650178375864 ], [ -96.637255330725694, 29.884585178612241 ], [ -96.640582332211238, 29.880716177732467 ], [ -96.6406083316608, 29.880687177507355 ], [ -96.643110331872336, 29.877774177175052 ], [ -96.645296332951645, 29.875233176420679 ], [ -96.646087333246498, 29.873767176082684 ], [ -96.646156332458276, 29.873685175939745 ], [ -96.646198333338262, 29.873635176226024 ], [ -96.647142332911315, 29.872817176271752 ], [ -96.651092334054653, 29.868860175470161 ], [ -96.651196334294639, 29.868756175359216 ], [ -96.654057334342966, 29.86537417449885 ], [ -96.658649335657302, 29.859946173154139 ], [ -96.661821336189462, 29.856198172027888 ], [ -96.661913335540746, 29.856089171797013 ], [ -96.662986336063085, 29.85469517176757 ], [ -96.665158337002737, 29.85227217165464 ], [ -96.665379336486424, 29.852014171490453 ], [ -96.666046337141125, 29.85123417078966 ], [ -96.66994733797452, 29.846629169787178 ], [ -96.672933338322181, 29.843103168924749 ], [ -96.685940340803882, 29.827946165382581 ], [ -96.689147341504423, 29.824474165094614 ], [ -96.689781341600181, 29.823795165202917 ], [ -96.691232341566362, 29.822159164406951 ], [ -96.691734341894318, 29.821586164244298 ], [ -96.692184342422763, 29.821074164169964 ], [ -96.692277342154625, 29.820966163734731 ], [ -96.692370341808257, 29.820859163985787 ], [ -96.704349344029765, 29.80689416046696 ], [ -96.704484344816095, 29.806740160958618 ], [ -96.707049344999206, 29.803984160635135 ], [ -96.707890344808533, 29.803086159638475 ], [ -96.708716345477157, 29.802202159398526 ], [ -96.708878345601875, 29.802027159743094 ], [ -96.709088345102998, 29.80172915984431 ], [ -96.709255345235903, 29.801543159254052 ], [ -96.709337346002272, 29.80145415929729 ], [ -96.709463345039921, 29.801311159995279 ], [ -96.70961834520503, 29.801140159289329 ], [ -96.710268345762586, 29.800423159313222 ], [ -96.710475345530654, 29.80019415901484 ], [ -96.710493345692356, 29.800175159666519 ], [ -96.710733346184881, 29.799908159579353 ], [ -96.710860345268983, 29.799766159651206 ], [ -96.713051346331966, 29.797339159021657 ], [ -96.71365634627945, 29.796851158114247 ], [ -96.713729346086254, 29.796770158728773 ], [ -96.714347346277194, 29.796084158197676 ], [ -96.714786346125251, 29.79558815861332 ], [ -96.714968346519171, 29.795383158520369 ], [ -96.715161346728152, 29.795174158531285 ], [ -96.715895346570491, 29.794105157906525 ], [ -96.716143347174977, 29.793766157809717 ], [ -96.716166346513205, 29.793739157403436 ], [ -96.717050346595215, 29.792711157540957 ], [ -96.718615347747118, 29.791113157496088 ], [ -96.720389347506867, 29.789304156879606 ], [ -96.720681347647044, 29.78900615693221 ], [ -96.721226347609033, 29.788451156722363 ], [ -96.722794348634054, 29.786856156002017 ], [ -96.724125348494951, 29.785502155699913 ], [ -96.724344349034553, 29.785283155850905 ], [ -96.724335348231691, 29.785254156160729 ], [ -96.724370348387239, 29.784476155634419 ], [ -96.724483348714244, 29.784245155402413 ], [ -96.724789348100174, 29.78274415567622 ], [ -96.725217348709023, 29.781757154930485 ], [ -96.725710348889535, 29.781169154817146 ], [ -96.726968349302908, 29.780005155022987 ], [ -96.727439348763411, 29.779406154289543 ], [ -96.727943348671502, 29.778974154804974 ], [ -96.728255349247675, 29.778591154792412 ], [ -96.72846134871854, 29.777816153953925 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 538, "Tract": "48089750100", "Area_SqMi": 197.12758776546428, "total_2009": 895, "total_2010": 951, "total_2011": 939, "total_2012": 945, "total_2013": 969, "total_2014": 1196, "total_2015": 1228, "total_2016": 1411, "total_2017": 1448, "total_2018": 1235, "total_2019": 1333, "total_2020": 1267, "age1": 451, "age2": 941, "age3": 465, "earn1": 244, "earn2": 521, "earn3": 1092, "naics_s01": 94, "naics_s02": 58, "naics_s03": 13, "naics_s04": 14, "naics_s05": 452, "naics_s06": 33, "naics_s07": 159, "naics_s08": 51, "naics_s09": 0, "naics_s10": 36, "naics_s11": 6, "naics_s12": 13, "naics_s13": 5, "naics_s14": 7, "naics_s15": 0, "naics_s16": 195, "naics_s17": 11, "naics_s18": 47, "naics_s19": 28, "naics_s20": 635, "race1": 1485, "race2": 259, "race3": 21, "race4": 65, "race5": 5, "race6": 22, "ethnicity1": 1074, "ethnicity2": 783, "edu1": 327, "edu2": 434, "edu3": 406, "edu4": 239, "Shape_Length": 421284.42031703593, "Shape_Area": 5495579759.6627855, "total_2021": 1321, "total_2022": 1857 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.482291284138114, 29.713948150127653 ], [ -96.482265284400796, 29.713749149933463 ], [ -96.482212283924937, 29.713340149637308 ], [ -96.481807284086699, 29.711268149044447 ], [ -96.481703284086038, 29.710797149327849 ], [ -96.481545283895031, 29.710317149277174 ], [ -96.481362283391348, 29.709982148941648 ], [ -96.48115728400451, 29.709638148686228 ], [ -96.480882283593644, 29.709246148576181 ], [ -96.480735284137324, 29.709037148912284 ], [ -96.479734282922948, 29.708124148285229 ], [ -96.47893928343116, 29.70740014833553 ], [ -96.478917283014994, 29.707382148125728 ], [ -96.476242282133498, 29.7051091484891 ], [ -96.476081282348716, 29.704957148321977 ], [ -96.475943282381024, 29.704852148066319 ], [ -96.474883282129539, 29.703946147765883 ], [ -96.474987282459821, 29.703827147710726 ], [ -96.475642281806785, 29.703767147653448 ], [ -96.475850282379781, 29.703756148231069 ], [ -96.476026282609809, 29.703728147858776 ], [ -96.476121281921536, 29.703695148315397 ], [ -96.476310282693674, 29.703580147639762 ], [ -96.47661828252042, 29.703349147993642 ], [ -96.476719282771384, 29.702997147324236 ], [ -96.476882282743816, 29.702673148128309 ], [ -96.476939282079016, 29.702601147297589 ], [ -96.477260282019785, 29.702343147748508 ], [ -96.477342282618807, 29.702255147824918 ], [ -96.477436282399381, 29.70217814735884 ], [ -96.477657282105824, 29.701897147802676 ], [ -96.477688282444859, 29.701760147686617 ], [ -96.477852282764033, 29.701402147158749 ], [ -96.478147282531864, 29.700462147267892 ], [ -96.478172282903245, 29.700292146729275 ], [ -96.478179282458839, 29.700121147557216 ], [ -96.478229283017953, 29.700006146823387 ], [ -96.47868228286319, 29.69926314664816 ], [ -96.479091283130572, 29.698736147263453 ], [ -96.479268283284341, 29.698395146396216 ], [ -96.479337282509192, 29.697927146863723 ], [ -96.479412282843981, 29.697663146798178 ], [ -96.479450282432211, 29.69758614688655 ], [ -96.479576283293525, 29.697438146269128 ], [ -96.479783282815035, 29.697262146749797 ], [ -96.479896282600166, 29.697140146436126 ], [ -96.47993528329485, 29.697097146326406 ], [ -96.480023283181424, 29.69702014668762 ], [ -96.480300282746171, 29.696866146841462 ], [ -96.480444283435105, 29.696806145984414 ], [ -96.480847282651524, 29.696668146002786 ], [ -96.480917282779117, 29.696624146678595 ], [ -96.480986283022261, 29.696415145908613 ], [ -96.481030282827206, 29.696041146209403 ], [ -96.481023282907813, 29.695909145774085 ], [ -96.481030283557459, 29.695838145802171 ], [ -96.481049283591844, 29.695766145976172 ], [ -96.481086283183828, 29.69570014578828 ], [ -96.481212283290304, 29.695612146179666 ], [ -96.481389282802837, 29.695546146308111 ], [ -96.481439283387004, 29.69551914651851 ], [ -96.481451283569612, 29.695464146340214 ], [ -96.481256283397911, 29.694892146187239 ], [ -96.481205282910153, 29.694518145610729 ], [ -96.481105283335225, 29.694194145462088 ], [ -96.48106128295781, 29.694117146010701 ], [ -96.480953283154577, 29.694035146158711 ], [ -96.480815283326379, 29.694013145822044 ], [ -96.480683283110338, 29.694018146011647 ], [ -96.480349282785653, 29.694062145843294 ], [ -96.480273282927485, 29.694057145881423 ], [ -96.480129282681986, 29.693991145444006 ], [ -96.480028282670958, 29.69390314613571 ], [ -96.479996283209545, 29.6938481457079 ], [ -96.47994628280334, 29.693672146194643 ], [ -96.47987628230095, 29.693287145595285 ], [ -96.479813283052749, 29.693106145444197 ], [ -96.479624282805972, 29.692858145483605 ], [ -96.479272283008711, 29.692545145313453 ], [ -96.479121282342717, 29.692457145399572 ], [ -96.479045282929818, 29.692391145790417 ], [ -96.479001282918233, 29.692342145248524 ], [ -96.478950282618399, 29.692232145737908 ], [ -96.478982282095302, 29.692133145621039 ], [ -96.479120282690715, 29.692061145199762 ], [ -96.479234282925859, 29.691990145859275 ], [ -96.479322282775854, 29.69191914528891 ], [ -96.479353282813804, 29.691842145345035 ], [ -96.47934128252534, 29.691638145371016 ], [ -96.479372282108926, 29.691435145120732 ], [ -96.479492282527616, 29.691077145065094 ], [ -96.479611282030021, 29.690473144816753 ], [ -96.479611282538372, 29.690374145155655 ], [ -96.47964228289095, 29.690022145328481 ], [ -96.479617282136189, 29.689846144866898 ], [ -96.479567282927562, 29.689736145397653 ], [ -96.479472282929322, 29.689670144828082 ], [ -96.479271282802955, 29.689555145409948 ], [ -96.478893282561359, 29.689362145210143 ], [ -96.478817282300099, 29.689285145288011 ], [ -96.478824282333491, 29.689208144829632 ], [ -96.47884928249303, 29.689126145190485 ], [ -96.478874282709782, 29.688944144999294 ], [ -96.4789932818815, 29.688499144646769 ], [ -96.479006282350355, 29.687949144860131 ], [ -96.478949282730468, 29.687542144894238 ], [ -96.478911282300786, 29.687317144079991 ], [ -96.478848282208347, 29.68719114435272 ], [ -96.478728282646571, 29.686998144127397 ], [ -96.478615281858751, 29.686844144468285 ], [ -96.47853928210462, 29.686696144226094 ], [ -96.478501282150901, 29.686597144606612 ], [ -96.47825628173814, 29.686240144414398 ], [ -96.478212282108089, 29.68610814428656 ], [ -96.478186281821209, 29.685899144109307 ], [ -96.478193281902307, 29.685684144006082 ], [ -96.478205282002946, 29.685613144259353 ], [ -96.478243282447963, 29.685558143791088 ], [ -96.4786932824519, 29.685426144545534 ], [ -96.478473282436283, 29.684957144449605 ], [ -96.477856281936425, 29.6843271436477 ], [ -96.477257281831172, 29.683594143554011 ], [ -96.476988281723465, 29.683417143494353 ], [ -96.476046281008905, 29.682602143337096 ], [ -96.47580628149133, 29.682461143241262 ], [ -96.475515281173813, 29.682281143430387 ], [ -96.475120281292604, 29.682058143603289 ], [ -96.474481280540601, 29.681683143860685 ], [ -96.473660281070138, 29.680796143425162 ], [ -96.473576280901909, 29.680743143621346 ], [ -96.472768279902027, 29.680023142958504 ], [ -96.47249428040891, 29.679706142998093 ], [ -96.471987280607621, 29.678921142762153 ], [ -96.470979279864409, 29.677647142969825 ], [ -96.470857279457391, 29.677420142681083 ], [ -96.47061627978475, 29.677174142977623 ], [ -96.470420279770522, 29.676857142404675 ], [ -96.469308279030088, 29.675462142505406 ], [ -96.469209279469538, 29.675383142392057 ], [ -96.469011278656666, 29.675157142174207 ], [ -96.468326279004415, 29.67449814241354 ], [ -96.467541278818729, 29.673858142355112 ], [ -96.467194278933178, 29.673666142578558 ], [ -96.466792278156618, 29.673587142143457 ], [ -96.466215278050782, 29.673308142396767 ], [ -96.465853278460372, 29.673248142058149 ], [ -96.465034278432213, 29.672864142326222 ], [ -96.464295277880808, 29.672639142502131 ], [ -96.463971277958677, 29.672582141652402 ], [ -96.462901277738979, 29.672512142276453 ], [ -96.462115276832748, 29.672504141761021 ], [ -96.460801276774177, 29.672409141908208 ], [ -96.459449277043902, 29.672251142496116 ], [ -96.459164276534509, 29.672269141933793 ], [ -96.458660276159478, 29.67211814178815 ], [ -96.458290276257259, 29.67208814203083 ], [ -96.457389276498532, 29.671956141984779 ], [ -96.456350275798997, 29.671607142418932 ], [ -96.455801276146488, 29.671171142082184 ], [ -96.454594275025386, 29.670477142210348 ], [ -96.45403227481421, 29.670053141695217 ], [ -96.452161274402457, 29.668377141186678 ], [ -96.452021274379575, 29.668158141955686 ], [ -96.451774274903713, 29.667921141537224 ], [ -96.451665274834795, 29.667502141163258 ], [ -96.451435274045636, 29.666962141248906 ], [ -96.451279274221193, 29.665131141273314 ], [ -96.451149274302807, 29.663827141084614 ], [ -96.451166274261027, 29.66364614061483 ], [ -96.451183274387134, 29.663470140720964 ], [ -96.451008274297195, 29.661965140616402 ], [ -96.450871273637858, 29.661401140140601 ], [ -96.450766273692878, 29.661167140301959 ], [ -96.450527273516414, 29.660833140021971 ], [ -96.450410274234571, 29.660194139997856 ], [ -96.450071274018313, 29.659458139511337 ], [ -96.449524273366393, 29.65869514003856 ], [ -96.449455273451306, 29.658613140158607 ], [ -96.448964273216347, 29.658029139681975 ], [ -96.448783272890708, 29.657706139240862 ], [ -96.448541272821586, 29.656756139352655 ], [ -96.448131273342113, 29.655700139602523 ], [ -96.448059272871589, 29.654983138784797 ], [ -96.447935272872414, 29.654213138869128 ], [ -96.447909273233094, 29.654004138837713 ], [ -96.44840027295939, 29.653724138520364 ], [ -96.448529272980451, 29.653599138363479 ], [ -96.448602273498182, 29.653529138709889 ], [ -96.448594272996914, 29.653401138454697 ], [ -96.448592272903682, 29.653366138574064 ], [ -96.448561273389643, 29.652876139018748 ], [ -96.448284272479995, 29.652237138078824 ], [ -96.447804272941625, 29.65144113853562 ], [ -96.447666272713633, 29.651028137922133 ], [ -96.447649272500087, 29.650776138549137 ], [ -96.44742827270845, 29.649896138119214 ], [ -96.446944272576204, 29.648785137688272 ], [ -96.446135272649173, 29.647488137978311 ], [ -96.445348271547559, 29.64647313783782 ], [ -96.444219271804869, 29.64532513685689 ], [ -96.443462271106128, 29.64472513706956 ], [ -96.443170271602085, 29.644421136878933 ], [ -96.441222270349485, 29.642708137000568 ], [ -96.440594270746701, 29.642207137153598 ], [ -96.438448269580732, 29.640497136452748 ], [ -96.436852269525744, 29.63903713622615 ], [ -96.435677269556336, 29.638243135692125 ], [ -96.435130268440261, 29.637752135530583 ], [ -96.433314268458176, 29.63542113520894 ], [ -96.432758268468788, 29.634455135331994 ], [ -96.432001268413245, 29.632976134692687 ], [ -96.431750268234779, 29.6326031351064 ], [ -96.431341268132002, 29.632433135288128 ], [ -96.431113268171259, 29.632227134710877 ], [ -96.430397267186763, 29.631123134473217 ], [ -96.43018026722423, 29.630789134319429 ], [ -96.429913267697131, 29.629922134514988 ], [ -96.429847267500378, 29.629279134129664 ], [ -96.429919266736917, 29.628817134535613 ], [ -96.430214267405191, 29.628444134455741 ], [ -96.430227266943504, 29.628428133989416 ], [ -96.429982267237563, 29.627761134324494 ], [ -96.429903266767838, 29.627644134062876 ], [ -96.42960526732908, 29.62720313390227 ], [ -96.429049267021156, 29.626196133500855 ], [ -96.428753267225375, 29.62537113394238 ], [ -96.428495266752876, 29.624461133262972 ], [ -96.427602266765533, 29.622405133347684 ], [ -96.427237266287264, 29.621840132990467 ], [ -96.42699226662117, 29.621550132809638 ], [ -96.426588266188787, 29.621190133143198 ], [ -96.42610026594501, 29.620857132575253 ], [ -96.425524265969742, 29.620576133240899 ], [ -96.424516265857221, 29.620253133139929 ], [ -96.423603265353478, 29.620024132986963 ], [ -96.42354226492759, 29.620015133183863 ], [ -96.422545265015245, 29.619869132615928 ], [ -96.421803264627513, 29.619837133248524 ], [ -96.421123264958624, 29.619740132756618 ], [ -96.420426264559708, 29.619640132442576 ], [ -96.420056264196845, 29.619692132586739 ], [ -96.419741264619915, 29.619737132985637 ], [ -96.419010263768953, 29.619633133235801 ], [ -96.418712264358632, 29.619508133207841 ], [ -96.41798626353561, 29.619095133212806 ], [ -96.417673263540962, 29.618808132369249 ], [ -96.417519263916503, 29.61855613264369 ], [ -96.417349263392808, 29.618400132588768 ], [ -96.417187263163726, 29.618193132959195 ], [ -96.416910263142668, 29.617515132904671 ], [ -96.416820263726848, 29.617053132763715 ], [ -96.416805263554437, 29.616658132254283 ], [ -96.416960263824151, 29.615987131825879 ], [ -96.417221262998282, 29.615342131666871 ], [ -96.417446263660679, 29.614989132181574 ], [ -96.417644263520316, 29.614806132324972 ], [ -96.417806264048465, 29.614694131900993 ], [ -96.418660264172146, 29.614335131549478 ], [ -96.419189264238966, 29.614055131504028 ], [ -96.419943263553463, 29.613876131922122 ], [ -96.420388263891994, 29.613685131633559 ], [ -96.421317264285918, 29.613520131731814 ], [ -96.422160264089328, 29.613226131732898 ], [ -96.423386264985254, 29.613075131525576 ], [ -96.424212264875294, 29.612855130913324 ], [ -96.42451426564152, 29.612719131655602 ], [ -96.424909264855643, 29.612541130985171 ], [ -96.425220264940648, 29.612304131179595 ], [ -96.426206265566705, 29.611712131464738 ], [ -96.427217265750173, 29.610970131285598 ], [ -96.427669266115231, 29.610721130756492 ], [ -96.428120266006317, 29.610301131060311 ], [ -96.42919326639128, 29.609568130601431 ], [ -96.429705266492235, 29.609402130477278 ], [ -96.429941266224404, 29.609326130140762 ], [ -96.430210266831679, 29.609418130729168 ], [ -96.43029926656196, 29.609486130070394 ], [ -96.430486266541521, 29.609629130494902 ], [ -96.430998266166966, 29.609770130791855 ], [ -96.433134266737014, 29.609941130416971 ], [ -96.433567267131153, 29.61002713049146 ], [ -96.434001267252157, 29.610112130318178 ], [ -96.435411267340044, 29.610442130757214 ], [ -96.435790267855239, 29.610576130475618 ], [ -96.435908267445527, 29.610618130618253 ], [ -96.436969268173215, 29.611240130448163 ], [ -96.437595268105014, 29.611763130973152 ], [ -96.437988268616579, 29.612311131035042 ], [ -96.438266268768842, 29.612525130647875 ], [ -96.438481269081251, 29.612789130591484 ], [ -96.438957268404138, 29.613503131337875 ], [ -96.439331268593619, 29.614066130799539 ], [ -96.439619268540582, 29.614323130654309 ], [ -96.439800268824726, 29.614408131039859 ], [ -96.440595268782474, 29.614597131010811 ], [ -96.441528269841157, 29.614733131181076 ], [ -96.4425552698562, 29.614682131160208 ], [ -96.44331427038297, 29.614518130654837 ], [ -96.443850270155124, 29.614251130499326 ], [ -96.445358270074337, 29.613881130396766 ], [ -96.445650270632683, 29.613745130407903 ], [ -96.445855270703802, 29.613734130694969 ], [ -96.446560270540076, 29.613481130907967 ], [ -96.447796270579985, 29.61299013040593 ], [ -96.448519271170042, 29.612648130793222 ], [ -96.449892271718326, 29.611849130060047 ], [ -96.450986272263378, 29.611141130212491 ], [ -96.453208271753994, 29.60947712958496 ], [ -96.453905272587576, 29.608674129339224 ], [ -96.454459272723184, 29.607652129334209 ], [ -96.45500827244139, 29.606253128748225 ], [ -96.45604627292289, 29.604014128164227 ], [ -96.456494272480214, 29.602777128441229 ], [ -96.456968272448876, 29.60076512763975 ], [ -96.456951272475777, 29.600550127557739 ], [ -96.45703027268469, 29.599943127831182 ], [ -96.456959272459429, 29.599541127802787 ], [ -96.456950272559411, 29.599512127859228 ], [ -96.456828272536299, 29.599141127010423 ], [ -96.45669227242648, 29.598920127705156 ], [ -96.456526272755795, 29.598780127029052 ], [ -96.456456272615739, 29.598721127715031 ], [ -96.455996272524601, 29.598170127460008 ], [ -96.455479272267667, 29.597758127549376 ], [ -96.454258272113591, 29.596398127291646 ], [ -96.453361272166504, 29.595509127188098 ], [ -96.452741271974205, 29.594789126808578 ], [ -96.450781270730488, 29.593355126457393 ], [ -96.450178270443999, 29.593121126430812 ], [ -96.449401270199658, 29.593036126186128 ], [ -96.448811270186596, 29.592876126008452 ], [ -96.447780269903319, 29.592853126068029 ], [ -96.447458269697862, 29.59279212652665 ], [ -96.447127269819404, 29.592835126541459 ], [ -96.445559269195613, 29.59281312673642 ], [ -96.445066269158019, 29.592850126161885 ], [ -96.442921269094057, 29.592824126724647 ], [ -96.442305268260597, 29.592880126944127 ], [ -96.440695268809009, 29.592900126311271 ], [ -96.439003267894037, 29.592856127046836 ], [ -96.436780267724444, 29.592709127115366 ], [ -96.433194266266867, 29.592556127269816 ], [ -96.431772265716745, 29.592380127325956 ], [ -96.430844265916875, 29.592201126901873 ], [ -96.429075265371694, 29.591709127113997 ], [ -96.428154265282316, 29.591350127225258 ], [ -96.427358264468182, 29.591039126389191 ], [ -96.426672264953652, 29.590707126507187 ], [ -96.426143264132861, 29.590362127003477 ], [ -96.425188264806891, 29.589566126353425 ], [ -96.423919263400052, 29.58823712676914 ], [ -96.423134264142675, 29.586950125791585 ], [ -96.422669263482078, 29.586310126195428 ], [ -96.422578263193415, 29.586159126344775 ], [ -96.420474262403118, 29.583429125042343 ], [ -96.41844526207629, 29.581141124678794 ], [ -96.418073261705629, 29.580721124574882 ], [ -96.41798726232291, 29.580638124859831 ], [ -96.417918262011057, 29.580572124944243 ], [ -96.417615262417812, 29.580282124549317 ], [ -96.417212262035989, 29.579860124548809 ], [ -96.417142262092838, 29.579828125275402 ], [ -96.416415261481561, 29.579131124945487 ], [ -96.41327426101661, 29.57679212426488 ], [ -96.411980260123869, 29.576018124521436 ], [ -96.410656259955417, 29.57535312462818 ], [ -96.409621260072853, 29.574904123832937 ], [ -96.407308258942209, 29.574037123974676 ], [ -96.406274258710681, 29.573514123945365 ], [ -96.405006258772843, 29.572164124075435 ], [ -96.40374225803707, 29.570926123656971 ], [ -96.403210257849921, 29.570283123611187 ], [ -96.402849257835783, 29.569990123304315 ], [ -96.402268257407584, 29.569382123253419 ], [ -96.401618257869501, 29.568636122987932 ], [ -96.400631257027712, 29.567619123274049 ], [ -96.400407257128379, 29.56731512250494 ], [ -96.399895257017462, 29.566371122644174 ], [ -96.399502256689857, 29.564882122699398 ], [ -96.399490257019423, 29.563893122259529 ], [ -96.399679256524578, 29.563147122301743 ], [ -96.400244256428095, 29.562142121500404 ], [ -96.401180256504119, 29.560028121603114 ], [ -96.401368257239966, 29.559725121358817 ], [ -96.401723256868465, 29.55887912096285 ], [ -96.401939256849005, 29.558533120945498 ], [ -96.402013256794078, 29.557990120870471 ], [ -96.402045256814262, 29.557919120979058 ], [ -96.402033256693969, 29.557835120544542 ], [ -96.402013256778545, 29.557356120971097 ], [ -96.401904256869926, 29.556529120286722 ], [ -96.40144625649539, 29.554916120764094 ], [ -96.401298256775021, 29.554395120336153 ], [ -96.400851256527332, 29.553425119726001 ], [ -96.400434256579658, 29.552068119417839 ], [ -96.400053256346766, 29.551114119804151 ], [ -96.399681256280317, 29.550312119844076 ], [ -96.399148255968825, 29.549381119192514 ], [ -96.399059255426465, 29.549067118927333 ], [ -96.398726255530704, 29.548291118965579 ], [ -96.398668256169159, 29.54815711896374 ], [ -96.398393255500181, 29.547633119249895 ], [ -96.398183255271221, 29.546900118429495 ], [ -96.398195255267424, 29.545422118102216 ], [ -96.397920255844625, 29.545046118430921 ], [ -96.397907255254594, 29.544329118185601 ], [ -96.397954255260871, 29.543971117994758 ], [ -96.397834254867007, 29.543294118341809 ], [ -96.397869254969137, 29.543008118271601 ], [ -96.398113255601899, 29.542512118276754 ], [ -96.398291255472401, 29.542274117611552 ], [ -96.398865255329596, 29.54028211758439 ], [ -96.399590255590425, 29.538139117455792 ], [ -96.399819255688584, 29.537637116873128 ], [ -96.400226255902098, 29.536927116405273 ], [ -96.400673255402509, 29.536279116354539 ], [ -96.401355255984669, 29.535422116193075 ], [ -96.401695255920572, 29.535108115981753 ], [ -96.401974255712318, 29.534954116097108 ], [ -96.402485256343908, 29.534817116058207 ], [ -96.402696256301311, 29.534664115856057 ], [ -96.404084256350671, 29.533986115690748 ], [ -96.404424256255396, 29.533820115775413 ], [ -96.405037257035431, 29.533458116230577 ], [ -96.405895256575874, 29.532357115497632 ], [ -96.406117257138462, 29.531813115839466 ], [ -96.406193257399579, 29.53145911540555 ], [ -96.406342256664047, 29.531220115639915 ], [ -96.406421257153937, 29.530867115468659 ], [ -96.406463256774231, 29.530291115196096 ], [ -96.406314257328958, 29.529842115150622 ], [ -96.405741256790563, 29.528929114824045 ], [ -96.405177256037703, 29.528405114404428 ], [ -96.404049256480292, 29.527617115063027 ], [ -96.403319256477999, 29.527210115041616 ], [ -96.401919255284312, 29.52677911426186 ], [ -96.399446254642669, 29.526226114894218 ], [ -96.397197254666665, 29.525855114752673 ], [ -96.396665253919437, 29.525587114785594 ], [ -96.396291254617239, 29.525036114751103 ], [ -96.396058253823057, 29.524692114261171 ], [ -96.396062254533803, 29.524188114739335 ], [ -96.396185254516112, 29.523548114464326 ], [ -96.396337253936167, 29.523067113975952 ], [ -96.396523254583215, 29.522787114044892 ], [ -96.39685325463077, 29.522465113592762 ], [ -96.398095254254812, 29.521573113364632 ], [ -96.398291254881457, 29.521389114046038 ], [ -96.399283254789879, 29.520807113666969 ], [ -96.400019254483794, 29.520480113137761 ], [ -96.400811254786817, 29.520191113527691 ], [ -96.401122255078761, 29.52007711332752 ], [ -96.402095255310698, 29.519779113106498 ], [ -96.403788255399675, 29.519386112857948 ], [ -96.404760255918745, 29.519207112917396 ], [ -96.404795255864499, 29.519197112968349 ], [ -96.406014256767719, 29.518862113284946 ], [ -96.406401256275331, 29.518656112847413 ], [ -96.406953256566212, 29.518278112624987 ], [ -96.407175256090753, 29.518050113085419 ], [ -96.407245256901277, 29.517977112248346 ], [ -96.40748725683622, 29.517519112689484 ], [ -96.407916257054495, 29.516466112112457 ], [ -96.408178256773212, 29.515286111757867 ], [ -96.408199257190134, 29.51519211215021 ], [ -96.408312256734533, 29.514931111929059 ], [ -96.408576256952799, 29.513803112125306 ], [ -96.408747256768095, 29.51258511148291 ], [ -96.408784256754274, 29.511035111336795 ], [ -96.408741257056192, 29.510279110799349 ], [ -96.408547256892348, 29.509561110813848 ], [ -96.408237256821494, 29.508854111156772 ], [ -96.407986256863438, 29.508361110307824 ], [ -96.407246256596409, 29.507588110127774 ], [ -96.405981255498929, 29.506558110541565 ], [ -96.404704255900356, 29.505705110043653 ], [ -96.404406254966602, 29.505320110302559 ], [ -96.403385255039495, 29.504652110551813 ], [ -96.402037254399929, 29.50420510983891 ], [ -96.400993254694725, 29.504004110203692 ], [ -96.400690254408715, 29.503901110273606 ], [ -96.400111254219752, 29.503705109826356 ], [ -96.399217253458659, 29.503259110051552 ], [ -96.398744253957659, 29.503139109522035 ], [ -96.398379254143691, 29.502905110317165 ], [ -96.398306254038772, 29.502837109463368 ], [ -96.398125253389779, 29.50266911012363 ], [ -96.396894253480028, 29.502256109402143 ], [ -96.396383252685837, 29.502113109785668 ], [ -96.396126253219379, 29.502092109393168 ], [ -96.394656252357535, 29.501822109773702 ], [ -96.393410252770963, 29.501537109552711 ], [ -96.39179225227339, 29.501326109743168 ], [ -96.39167125166027, 29.501289110236492 ], [ -96.39134625134227, 29.501134109727555 ], [ -96.390811251641225, 29.500588109450614 ], [ -96.390436251065466, 29.499827109494639 ], [ -96.390315251055583, 29.499408109287074 ], [ -96.390170251376048, 29.49822610967745 ], [ -96.389924251269065, 29.49705510916133 ], [ -96.389714251424266, 29.496625108512468 ], [ -96.389495251473036, 29.49640110912765 ], [ -96.38942325096528, 29.496047108838965 ], [ -96.389486251359827, 29.495292108559831 ], [ -96.38958625127934, 29.494795108620973 ], [ -96.38999425123032, 29.493816108769142 ], [ -96.390082251380605, 29.493318107828888 ], [ -96.390109250765548, 29.49276110782516 ], [ -96.390128250777295, 29.49238210787794 ], [ -96.389932250965231, 29.491910108407804 ], [ -96.389525250951849, 29.491325108251573 ], [ -96.389172251318641, 29.490972107854216 ], [ -96.388628250210672, 29.490652108005161 ], [ -96.38812325076438, 29.490497107709079 ], [ -96.387718250808177, 29.490433107561085 ], [ -96.386525250513586, 29.490476108027551 ], [ -96.386131249854969, 29.490570107586638 ], [ -96.385771249709848, 29.490656107794841 ], [ -96.385121249903747, 29.490737107838129 ], [ -96.384553249925716, 29.490647107817157 ], [ -96.384142249338055, 29.490629107855213 ], [ -96.383216249765454, 29.490454107628043 ], [ -96.381807248874068, 29.489947107904626 ], [ -96.381057249045355, 29.489568107585168 ], [ -96.38057824828293, 29.489236108007926 ], [ -96.379777248719336, 29.488068107924239 ], [ -96.379167248245182, 29.487007107699117 ], [ -96.379033248183745, 29.486645107508199 ], [ -96.379129248054269, 29.486112106958725 ], [ -96.379121247743271, 29.48589610674011 ], [ -96.378958247713143, 29.485339107425869 ], [ -96.378647248404178, 29.484792106512071 ], [ -96.378253248303807, 29.484599107329842 ], [ -96.378082248148289, 29.484446107127241 ], [ -96.37788024779185, 29.484265107056306 ], [ -96.377323247403424, 29.48389310720836 ], [ -96.376926247016499, 29.483767106691531 ], [ -96.376667247226848, 29.483684106803601 ], [ -96.376077246796186, 29.483429106990286 ], [ -96.375547247458684, 29.483031106378625 ], [ -96.375019246949904, 29.482434106771613 ], [ -96.374667246652692, 29.481744106642793 ], [ -96.374618247061775, 29.481350106119251 ], [ -96.37471724722802, 29.480454105938577 ], [ -96.374913246721533, 29.479733106015029 ], [ -96.375226246952906, 29.479188106257141 ], [ -96.376081246461169, 29.478360106047493 ], [ -96.376326247309478, 29.478231105215066 ], [ -96.376625247323943, 29.4778881054085 ], [ -96.376849246659447, 29.477730105877672 ], [ -96.377799247521509, 29.477298105132448 ], [ -96.378978248087506, 29.477198105355296 ], [ -96.380830248018896, 29.477041105572713 ], [ -96.382158248343757, 29.476792105124137 ], [ -96.383299248650374, 29.476653104974528 ], [ -96.38373024841313, 29.476532105386056 ], [ -96.384834249552952, 29.476060104943702 ], [ -96.385355249102361, 29.475711104691467 ], [ -96.385534249213208, 29.475470104770974 ], [ -96.385840248942117, 29.475178104940074 ], [ -96.386155249737129, 29.474513104606707 ], [ -96.386293249457367, 29.473957104465658 ], [ -96.386294249842877, 29.47357510431954 ], [ -96.386139249279239, 29.47264910404936 ], [ -96.386034248818774, 29.472301103992827 ], [ -96.385844248692749, 29.471941104470403 ], [ -96.385263248770798, 29.471288104167328 ], [ -96.38443324826936, 29.470586104256864 ], [ -96.384109248911173, 29.47025610422142 ], [ -96.383770248396033, 29.470056103640413 ], [ -96.383488248195277, 29.46966710348358 ], [ -96.383366248865769, 29.469273103262847 ], [ -96.383313248830234, 29.468971103130293 ], [ -96.383275248438764, 29.468753103574766 ], [ -96.383405247924827, 29.468116103072976 ], [ -96.383665248535422, 29.467626103380546 ], [ -96.384030248259435, 29.467192103330383 ], [ -96.384891248499926, 29.46663710299476 ], [ -96.38575424842287, 29.466214102777833 ], [ -96.387032249107079, 29.465714102810868 ], [ -96.388367249291107, 29.465342102723014 ], [ -96.389224249453093, 29.465243102993835 ], [ -96.389931250358785, 29.465286102508422 ], [ -96.390004250055327, 29.465290102409263 ], [ -96.390247249553823, 29.465244102740201 ], [ -96.39134425072254, 29.465100102101481 ], [ -96.391609250030854, 29.464894102242454 ], [ -96.391675250512137, 29.464872102024245 ], [ -96.392753251063951, 29.464275102288333 ], [ -96.393366250937461, 29.46384910224177 ], [ -96.393577250808789, 29.463677101672655 ], [ -96.394394250483629, 29.46281110197593 ], [ -96.394733250741538, 29.462454101896373 ], [ -96.394960250807785, 29.462300101440373 ], [ -96.395354251545413, 29.461846101737034 ], [ -96.395704251447611, 29.46140010150965 ], [ -96.396512250928069, 29.460062101330209 ], [ -96.396684251866489, 29.459735101027654 ], [ -96.396794251436191, 29.459350101533083 ], [ -96.396894251346637, 29.458816100697533 ], [ -96.396918251625223, 29.458312100780905 ], [ -96.396801251446064, 29.457856100557862 ], [ -96.396813251280065, 29.457424100779939 ], [ -96.396704251434286, 29.457078100961763 ], [ -96.396647251446765, 29.456179100902293 ], [ -96.396727251443835, 29.455028099824332 ], [ -96.396719250702219, 29.45461109988668 ], [ -96.396715251573298, 29.45437910057176 ], [ -96.396655251281288, 29.453770099727212 ], [ -96.396571251255054, 29.453454099911411 ], [ -96.396414250747227, 29.453096100154085 ], [ -96.396247250555518, 29.452713099522796 ], [ -96.396008250503144, 29.452294099934509 ], [ -96.3953552502267, 29.451507099711005 ], [ -96.394838251030109, 29.45109809912751 ], [ -96.393869250460241, 29.450620099098128 ], [ -96.393322250199148, 29.450468099274094 ], [ -96.392801250317291, 29.45025409957092 ], [ -96.391621249380506, 29.450096099213106 ], [ -96.391250249662207, 29.450086099088072 ], [ -96.389357248752859, 29.450036099423709 ], [ -96.388039249276275, 29.450045099790604 ], [ -96.38713624884862, 29.45011709999417 ], [ -96.38711024823948, 29.450115099619911 ], [ -96.385989248305208, 29.450067099759686 ], [ -96.385198248406809, 29.449870100032427 ], [ -96.384826247808292, 29.449716099276547 ], [ -96.384497247767484, 29.449500099351859 ], [ -96.383608248010063, 29.448705099299463 ], [ -96.38321124711544, 29.448541099804789 ], [ -96.382671247333377, 29.448318099358389 ], [ -96.382168247420609, 29.448160099397711 ], [ -96.381287246597452, 29.447972099382095 ], [ -96.380786246918433, 29.447909099578879 ], [ -96.379208246446893, 29.447710099506825 ], [ -96.378056245642583, 29.447432099275709 ], [ -96.376889246171913, 29.447075098870684 ], [ -96.376373245362373, 29.446851099661178 ], [ -96.375598245017756, 29.446515099494569 ], [ -96.373876244690095, 29.445461098666065 ], [ -96.373402244662998, 29.445666099209909 ], [ -96.372997244627058, 29.445696098793974 ], [ -96.372533244575379, 29.445579099514308 ], [ -96.372404244150374, 29.445547099385934 ], [ -96.371884244967291, 29.445331099445195 ], [ -96.371546244346661, 29.445070099038674 ], [ -96.370893243744732, 29.444427098884322 ], [ -96.370459244366288, 29.443859099238438 ], [ -96.370083243774559, 29.443217099106189 ], [ -96.369838243941118, 29.442682098392567 ], [ -96.3696422435887, 29.442095098970295 ], [ -96.369565243645923, 29.441595098482818 ], [ -96.369577243638673, 29.440983098630102 ], [ -96.369789243889599, 29.440139098153658 ], [ -96.370081244131228, 29.439427098233306 ], [ -96.37029024333259, 29.439128098133871 ], [ -96.370616244362438, 29.438659097538284 ], [ -96.370828243493278, 29.438229097933327 ], [ -96.371230243546194, 29.437209097148454 ], [ -96.371281244245608, 29.436636097204698 ], [ -96.371370243556726, 29.436435097664187 ], [ -96.37146024372332, 29.436019096989643 ], [ -96.371521243655238, 29.435265096845338 ], [ -96.371507244266539, 29.434761097428389 ], [ -96.371347243525463, 29.434054096685575 ], [ -96.371025244065635, 29.433392096939151 ], [ -96.370806243938318, 29.433177096889032 ], [ -96.369751242964796, 29.432372096297602 ], [ -96.369327242877802, 29.432149096577401 ], [ -96.368103243118981, 29.431790096694044 ], [ -96.367734242479699, 29.431763096329586 ], [ -96.367038242414338, 29.431807096598568 ], [ -96.366854242238233, 29.431866096931703 ], [ -96.366651242848064, 29.43193009701848 ], [ -96.365638241864161, 29.432084096742265 ], [ -96.365241241855941, 29.4321780971054 ], [ -96.363249241555351, 29.432865097150398 ], [ -96.362381242023503, 29.433412097079351 ], [ -96.361863241598783, 29.433877097105864 ], [ -96.361539241406931, 29.434993097440731 ], [ -96.36154924108105, 29.435278097006051 ], [ -96.361420241035418, 29.435804097893389 ], [ -96.361146241689383, 29.436365098094836 ], [ -96.360490241618265, 29.436904097965872 ], [ -96.360180241447708, 29.437081098003123 ], [ -96.360025240646621, 29.437124098100899 ], [ -96.358945240534609, 29.437527098236817 ], [ -96.358860240371556, 29.437559098260621 ], [ -96.358826240978303, 29.437570097542533 ], [ -96.358512240735038, 29.437671097557651 ], [ -96.358447240581611, 29.437676098337036 ], [ -96.357900240760898, 29.437722098340895 ], [ -96.357533240471597, 29.437492098433033 ], [ -96.357303240060688, 29.437238098391994 ], [ -96.356864240455749, 29.436345098132694 ], [ -96.356709240497892, 29.43563809764234 ], [ -96.356728240270314, 29.435278097975651 ], [ -96.357094239725583, 29.433989097580987 ], [ -96.357454240268439, 29.433140097085126 ], [ -96.357433239772149, 29.432785097421544 ], [ -96.357470240724425, 29.432430097162662 ], [ -96.357561239970494, 29.432157096786288 ], [ -96.358239239976257, 29.431442097073724 ], [ -96.358569240203536, 29.431231096293605 ], [ -96.359377240578738, 29.430417096325943 ], [ -96.360063240749824, 29.429802096287876 ], [ -96.36125024072453, 29.428951095937954 ], [ -96.361768240894463, 29.428658096164821 ], [ -96.363076241867674, 29.428144096372133 ], [ -96.363777241734425, 29.427933096219466 ], [ -96.364492241337814, 29.427657095918185 ], [ -96.364965242103224, 29.427533095489505 ], [ -96.366538241861605, 29.426905095538501 ], [ -96.366643242487442, 29.426875095220346 ], [ -96.366850242433387, 29.42681509564196 ], [ -96.367575242961138, 29.426410095426881 ], [ -96.368194242524737, 29.42564709483322 ], [ -96.368654242908377, 29.424896095475489 ], [ -96.368886243275483, 29.424318094821555 ], [ -96.369106242685902, 29.42354909511382 ], [ -96.369180242430161, 29.423012094527436 ], [ -96.369170242545209, 29.422688094284261 ], [ -96.36903324242202, 29.422087094273007 ], [ -96.368870242375735, 29.42164209406301 ], [ -96.368575242772607, 29.421127093865941 ], [ -96.367515242599438, 29.420279094287658 ], [ -96.366710242548294, 29.419920093952125 ], [ -96.365865241860519, 29.41976209386231 ], [ -96.36450724176035, 29.419742094358309 ], [ -96.362795241396526, 29.419954094483998 ], [ -96.360626240655108, 29.420150094781288 ], [ -96.359375239764006, 29.420399094043233 ], [ -96.3589542403857, 29.420621094095718 ], [ -96.358295240471918, 29.420825094953273 ], [ -96.357420239500414, 29.421227094544335 ], [ -96.356882239177466, 29.421403095176874 ], [ -96.35667123948248, 29.421430094690528 ], [ -96.356597239268666, 29.421440094989883 ], [ -96.356269239302961, 29.421421094735177 ], [ -96.35566923901186, 29.421293094410569 ], [ -96.355167239008182, 29.421130094996474 ], [ -96.354593238924537, 29.420849094687551 ], [ -96.354095238634073, 29.420418094712968 ], [ -96.35343423878308, 29.419637094450316 ], [ -96.353076238392433, 29.419197094571331 ], [ -96.352723238795505, 29.418626094399016 ], [ -96.352027238623137, 29.416855094150865 ], [ -96.351681238393752, 29.41554809403474 ], [ -96.351319238420373, 29.41473009402193 ], [ -96.351177237943631, 29.414445093213644 ], [ -96.350914237882463, 29.414084093216079 ], [ -96.350498237969987, 29.413679093158631 ], [ -96.349929237755447, 29.413110093260958 ], [ -96.349568237204849, 29.412836093184044 ], [ -96.348988237425871, 29.412453093420911 ], [ -96.3473652367841, 29.411574093380263 ], [ -96.347248236911241, 29.411876093444572 ], [ -96.347189236827248, 29.412023093394467 ], [ -96.347131236595303, 29.412169093314521 ], [ -96.34710323725092, 29.412239092810864 ], [ -96.346994236865385, 29.412520093422163 ], [ -96.346199236356853, 29.414560093557018 ], [ -96.34602323683032, 29.415013093853599 ], [ -96.345846236865071, 29.415466093887087 ], [ -96.343570236221026, 29.421305095518338 ], [ -96.34343323633847, 29.421658095521128 ], [ -96.342191235631773, 29.424858096052713 ], [ -96.340419236132391, 29.429423097045248 ], [ -96.337155234882587, 29.437830098465497 ], [ -96.334533234820199, 29.444585100266885 ], [ -96.334489235261785, 29.444698100267047 ], [ -96.334473235089263, 29.444741099857286 ], [ -96.334465235384727, 29.44476110010212 ], [ -96.334399234620875, 29.444931100036619 ], [ -96.334375235166959, 29.444992099852236 ], [ -96.332451235057178, 29.449958101471008 ], [ -96.32959823449815, 29.45746410321647 ], [ -96.32847423457649, 29.460421103450496 ], [ -96.32727623370215, 29.463587104487281 ], [ -96.327083233878326, 29.464126104010198 ], [ -96.325685233478112, 29.4677921054321 ], [ -96.325677234026116, 29.467813105142955 ], [ -96.325667233324509, 29.467838105426175 ], [ -96.324672233962005, 29.470447106229589 ], [ -96.32145023334148, 29.478925107684653 ], [ -96.31861023293898, 29.486368109037823 ], [ -96.317735232771511, 29.488665109538008 ], [ -96.317555232987729, 29.489137110023435 ], [ -96.317517232215138, 29.489238110007573 ], [ -96.317478232795992, 29.489339109792134 ], [ -96.315090232403236, 29.495603111112839 ], [ -96.315076232086824, 29.495641111454866 ], [ -96.315009232133207, 29.495816111169926 ], [ -96.314994232091436, 29.495854111275829 ], [ -96.313375232464622, 29.500103112642787 ], [ -96.313366231967535, 29.500127112220341 ], [ -96.313364232192555, 29.500143112625199 ], [ -96.313355232286597, 29.500157112222553 ], [ -96.313331231960433, 29.500218112617755 ], [ -96.313320231700828, 29.50024711260626 ], [ -96.313301231953872, 29.500247112478643 ], [ -96.313208231606069, 29.500247112258105 ], [ -96.313177231950462, 29.500328111808358 ], [ -96.30767923161828, 29.514528115426739 ], [ -96.307602231516796, 29.514596115028954 ], [ -96.305965230489136, 29.516060115961881 ], [ -96.305832230438341, 29.516184115868054 ], [ -96.3057292307968, 29.516279115649702 ], [ -96.305625230525635, 29.516375115942374 ], [ -96.305040231176704, 29.516918116268183 ], [ -96.296443229347076, 29.52469811784426 ], [ -96.296418229281443, 29.524703117707364 ], [ -96.296312228767817, 29.524777117478166 ], [ -96.296173229146007, 29.524874117628048 ], [ -96.296090228384628, 29.524948117556985 ], [ -96.296001228777243, 29.52503011793203 ], [ -96.295837228204235, 29.525169118314103 ], [ -96.295230229006265, 29.525730118249367 ], [ -96.295170228823565, 29.52578411817726 ], [ -96.295079228738246, 29.525882118056074 ], [ -96.290540227398211, 29.529942119319049 ], [ -96.290518227367713, 29.529961119298171 ], [ -96.290504227134676, 29.529973118950732 ], [ -96.290495227665062, 29.52998111886868 ], [ -96.290311227167564, 29.530146118833322 ], [ -96.290304227360409, 29.530153118653011 ], [ -96.289915227352708, 29.53050211904193 ], [ -96.284521226227596, 29.535462120443523 ], [ -96.282346225694909, 29.53742312065501 ], [ -96.282337225939088, 29.537431120934347 ], [ -96.282328226181903, 29.537439121213058 ], [ -96.282319225415719, 29.537447120568167 ], [ -96.282310225655706, 29.537455120845607 ], [ -96.282301225894244, 29.53746312112245 ], [ -96.280311225770532, 29.539258121069537 ], [ -96.280083225641818, 29.539464121135133 ], [ -96.278922225608241, 29.540510121630671 ], [ -96.278903225135764, 29.540527121223544 ], [ -96.278894224837501, 29.540535121265936 ], [ -96.278886225450037, 29.540542121822618 ], [ -96.278872224664852, 29.540555121176677 ], [ -96.273224223661188, 29.545647122634225 ], [ -96.273179223989032, 29.545688122816451 ], [ -96.273006223794368, 29.545844122631596 ], [ -96.272748223959283, 29.546076123218668 ], [ -96.272730223484743, 29.546092122497434 ], [ -96.269688223129464, 29.548826123462575 ], [ -96.269678223367237, 29.54883512325015 ], [ -96.267042222475823, 29.551204123928184 ], [ -96.266999222185234, 29.551243124137969 ], [ -96.266987222729895, 29.551254124374537 ], [ -96.262993221522507, 29.554844125271032 ], [ -96.262574221117802, 29.55522012540645 ], [ -96.262564221135776, 29.555229124670838 ], [ -96.261443221720299, 29.556236125463311 ], [ -96.261435220941578, 29.556243124973594 ], [ -96.260898221452592, 29.556726125817253 ], [ -96.260884221274964, 29.556739125152447 ], [ -96.258938220478328, 29.558489125962527 ], [ -96.253287219135714, 29.56368012729498 ], [ -96.25282921984153, 29.564094126994494 ], [ -96.252818219758836, 29.564104127567308 ], [ -96.251183219509016, 29.565581127600069 ], [ -96.250991218756042, 29.56575512788039 ], [ -96.250376218831192, 29.566310127687924 ], [ -96.250345219070155, 29.566338127524819 ], [ -96.248817218799232, 29.56771912772977 ], [ -96.248778218684919, 29.567754127800015 ], [ -96.246489218208012, 29.569824128411355 ], [ -96.246447218062798, 29.569862128327703 ], [ -96.244516218274683, 29.57160612861901 ], [ -96.243763217150416, 29.572292129180521 ], [ -96.242834217021382, 29.573089129444835 ], [ -96.241239217382073, 29.574396130037698 ], [ -96.241171217027457, 29.574455129960338 ], [ -96.240005217184347, 29.575469130253122 ], [ -96.23944121645988, 29.575982129773177 ], [ -96.23935521682219, 29.5760601300377 ], [ -96.237771216038226, 29.577500130161553 ], [ -96.237759216474643, 29.577511130545989 ], [ -96.236725215644597, 29.5784441302395 ], [ -96.235296215591106, 29.579734130611623 ], [ -96.235123215271358, 29.579890131370561 ], [ -96.23426121602003, 29.580668130792976 ], [ -96.234202215163393, 29.58072213102589 ], [ -96.234178215541107, 29.580744131158912 ], [ -96.230549215112802, 29.584018132022841 ], [ -96.230541215131097, 29.584025132454737 ], [ -96.230344214366511, 29.584203132074805 ], [ -96.230334214830805, 29.584212131705726 ], [ -96.229187214016648, 29.58524913186676 ], [ -96.229165214149376, 29.585268131934612 ], [ -96.229078214633986, 29.585346132119959 ], [ -96.228845213957854, 29.585571132007782 ], [ -96.228719214310345, 29.585692132654568 ], [ -96.228259214075663, 29.586135132422758 ], [ -96.226752214124303, 29.587621132993576 ], [ -96.225823213412966, 29.588505133323498 ], [ -96.225816213352786, 29.588512133456593 ], [ -96.225777214208748, 29.58854913331831 ], [ -96.225718213511655, 29.588603133514177 ], [ -96.224290213409589, 29.589901133771018 ], [ -96.221860212830748, 29.592110134071202 ], [ -96.220935212951119, 29.592935133959148 ], [ -96.220861212952698, 29.593001134546853 ], [ -96.217759212036682, 29.595770135112673 ], [ -96.214741211548642, 29.598464135673581 ], [ -96.214710211663714, 29.598492135574752 ], [ -96.214687211298454, 29.598512135052601 ], [ -96.209154209812326, 29.603493136505111 ], [ -96.208866210604825, 29.603752136592817 ], [ -96.208841210606266, 29.603774136693886 ], [ -96.208828209754586, 29.603786137122636 ], [ -96.207192209945049, 29.605259136914505 ], [ -96.206621210167768, 29.605773136939099 ], [ -96.206583209883561, 29.605807136858513 ], [ -96.206221209275796, 29.606132137741451 ], [ -96.206132209768697, 29.606212137561048 ], [ -96.205785209398272, 29.606525137350737 ], [ -96.205601209855672, 29.606709137347565 ], [ -96.205549209154768, 29.606760137875529 ], [ -96.205463208957454, 29.606846137610749 ], [ -96.205284209425258, 29.607079137698069 ], [ -96.205183209194288, 29.607215137919763 ], [ -96.205062209462469, 29.607378137222142 ], [ -96.205024209852965, 29.607429137584436 ], [ -96.204938209193017, 29.607588137703097 ], [ -96.204909209348713, 29.607641137393685 ], [ -96.204885209223875, 29.607655137823969 ], [ -96.203386208565703, 29.609000138360322 ], [ -96.203313209403774, 29.609065137762229 ], [ -96.201252208360074, 29.610877138167655 ], [ -96.200917208796909, 29.611174138413517 ], [ -96.200539208878169, 29.611509138871714 ], [ -96.200529207931268, 29.611524138992134 ], [ -96.19736320814053, 29.614292139744784 ], [ -96.196834207098718, 29.614755139402568 ], [ -96.196780207761748, 29.614802138971012 ], [ -96.196741207118961, 29.614836139575186 ], [ -96.191661206888924, 29.619279140217941 ], [ -96.191567206752921, 29.619362140255546 ], [ -96.191553206103151, 29.619374140627386 ], [ -96.191498206883736, 29.619423140592424 ], [ -96.187945205878847, 29.622602141554726 ], [ -96.187935205979201, 29.622611141695998 ], [ -96.186025205244704, 29.624320141374888 ], [ -96.185865205347696, 29.624464142178077 ], [ -96.185855205082575, 29.624473142159928 ], [ -96.185828205083268, 29.624497142032965 ], [ -96.18577720551049, 29.624544141683067 ], [ -96.185705205367356, 29.624609141887706 ], [ -96.183850205169392, 29.626295142467555 ], [ -96.18383120489051, 29.626313142426405 ], [ -96.183802204684582, 29.626339142224531 ], [ -96.183764204471672, 29.626373142138707 ], [ -96.17605720317944, 29.633375144306424 ], [ -96.176006202840725, 29.633422143915617 ], [ -96.175971203333376, 29.633455143614338 ], [ -96.175927202677087, 29.633484143822347 ], [ -96.175429202772463, 29.633811144081239 ], [ -96.17546820281072, 29.633868143870455 ], [ -96.175492202920125, 29.633905143939149 ], [ -96.175756203631266, 29.634158143884388 ], [ -96.17602620330571, 29.634372144501555 ], [ -96.176221202930762, 29.634510143680512 ], [ -96.176555203690171, 29.634641144412964 ], [ -96.17698920370303, 29.634900143894356 ], [ -96.177612203460185, 29.635395143861611 ], [ -96.178096204070016, 29.6359171442435 ], [ -96.178348203398343, 29.636170144702589 ], [ -96.178669203863535, 29.636593144501187 ], [ -96.17890120431278, 29.637033144770999 ], [ -96.179040204575742, 29.637330144493792 ], [ -96.179109203792081, 29.637478145013336 ], [ -96.179128203645249, 29.637626144988356 ], [ -96.179109204134164, 29.637984144626394 ], [ -96.179166203719987, 29.638308145005446 ], [ -96.17931020448836, 29.638759145186519 ], [ -96.179512204092347, 29.639286144927421 ], [ -96.17976320412464, 29.639671144926194 ], [ -96.179990204744442, 29.639968145514239 ], [ -96.180281204500758, 29.640297145364265 ], [ -96.180820204410907, 29.640908145513809 ], [ -96.181210204523637, 29.641243145203141 ], [ -96.181797204747667, 29.641504144912528 ], [ -96.181953204911622, 29.641573145558727 ], [ -96.182104204576476, 29.641621145562656 ], [ -96.182664205394047, 29.641799145656659 ], [ -96.182849205643905, 29.641876145469393 ], [ -96.182955205441431, 29.64189614520917 ], [ -96.183602205287471, 29.642020144975348 ], [ -96.183772205248189, 29.642008145214973 ], [ -96.184415205891455, 29.641965145499586 ], [ -96.185050205544258, 29.642049145084911 ], [ -96.185823206012572, 29.642076145475087 ], [ -96.187160206385471, 29.642321145741107 ], [ -96.187464206216688, 29.642433144895922 ], [ -96.187522206450652, 29.64245514502344 ], [ -96.187830206756246, 29.642568145246234 ], [ -96.188305206381358, 29.642898145770694 ], [ -96.188463206821794, 29.64305914569632 ], [ -96.188590206964165, 29.64339114552229 ], [ -96.188612206511593, 29.643439145126372 ], [ -96.188728207105228, 29.643687145444225 ], [ -96.189374206846139, 29.644332145851813 ], [ -96.189474207297167, 29.644520145674299 ], [ -96.189564207277286, 29.644690145872485 ], [ -96.189425206846522, 29.645474145956097 ], [ -96.189491206797456, 29.645680145527162 ], [ -96.189503206903467, 29.645717146270755 ], [ -96.189683207343919, 29.646279146317724 ], [ -96.18962720760743, 29.646446146058455 ], [ -96.189632206739248, 29.646656146307929 ], [ -96.18969720740958, 29.646826145786189 ], [ -96.189946207278027, 29.64747614631348 ], [ -96.189960207419645, 29.647514146549984 ], [ -96.189985207205083, 29.647579146402993 ], [ -96.190192207658782, 29.647741146324851 ], [ -96.190577207860741, 29.647858146700322 ], [ -96.190653207956856, 29.647945146187151 ], [ -96.190807207920798, 29.648122146343361 ], [ -96.191043207284835, 29.648494146776372 ], [ -96.191246207883651, 29.648670146631218 ], [ -96.191422208131073, 29.648761146356144 ], [ -96.192009207397192, 29.648900146552176 ], [ -96.193248208047336, 29.649635146357536 ], [ -96.193792208502828, 29.649958146616768 ], [ -96.193871207900855, 29.65003714663095 ], [ -96.193985208924403, 29.650488147157034 ], [ -96.194243208947242, 29.650706146605032 ], [ -96.1943832082043, 29.65091414726151 ], [ -96.194441208413636, 29.651001147124909 ], [ -96.19463420819163, 29.651289147298321 ], [ -96.19480020833673, 29.65184314702865 ], [ -96.195207209098498, 29.652884147340391 ], [ -96.19563220931515, 29.653523146865215 ], [ -96.196232209047452, 29.654161147737156 ], [ -96.196531209210022, 29.654407147768744 ], [ -96.196667209323664, 29.654494147290237 ], [ -96.19717320977, 29.654819147341133 ], [ -96.197678210047556, 29.655144147915134 ], [ -96.197740209566447, 29.655167147633065 ], [ -96.197974209692262, 29.655254147506149 ], [ -96.198069209688327, 29.655331147589365 ], [ -96.198138209898943, 29.655414147581748 ], [ -96.198187209867854, 29.655457147318046 ], [ -96.198295210054965, 29.655554147401237 ], [ -96.198404210201289, 29.655650147572132 ], [ -96.198452210148915, 29.655693147936738 ], [ -96.198705209379057, 29.655919147895684 ], [ -96.198809210364601, 29.656011147847074 ], [ -96.199092209940886, 29.65633114809145 ], [ -96.199116210167048, 29.656372147893755 ], [ -96.199165209775202, 29.656395147497339 ], [ -96.199198210252106, 29.656419148081977 ], [ -96.199247210443573, 29.656454147509571 ], [ -96.199258210502009, 29.656477148101466 ], [ -96.199289209983917, 29.656465147884383 ], [ -96.199458209924842, 29.65646014738461 ], [ -96.199617210219515, 29.656437148020135 ], [ -96.199819210130997, 29.65648714801824 ], [ -96.200616210463593, 29.656823147738272 ], [ -96.200943210652497, 29.656920148181491 ], [ -96.201197211040039, 29.656995148125638 ], [ -96.202041211104131, 29.657127148028358 ], [ -96.202366211393496, 29.657139147645232 ], [ -96.202545210863718, 29.657086147992828 ], [ -96.202824210956521, 29.657004147751927 ], [ -96.203281210585075, 29.65686214808434 ], [ -96.20380721151696, 29.656507147992315 ], [ -96.204947211434501, 29.65609014731502 ], [ -96.205155211131114, 29.656066147315556 ], [ -96.20594521220967, 29.656034147511349 ], [ -96.206477211685097, 29.655807147680079 ], [ -96.206604211757238, 29.65580014716253 ], [ -96.206774211682884, 29.655809147291684 ], [ -96.206966212109592, 29.655883147694755 ], [ -96.207206211673835, 29.656079147397353 ], [ -96.207319212570383, 29.656172147806576 ], [ -96.207661212344078, 29.656383147864787 ], [ -96.208058212094073, 29.656484147695096 ], [ -96.208259212089487, 29.656480147315705 ], [ -96.208700212889596, 29.656414147448359 ], [ -96.208912212817253, 29.656413147063322 ], [ -96.20914121267225, 29.656517147175709 ], [ -96.209336212634639, 29.656645147151654 ], [ -96.209730212577824, 29.656913147266792 ], [ -96.210024212509992, 29.657199147595428 ], [ -96.210264212769388, 29.657312147384626 ], [ -96.210467212445849, 29.657426147387621 ], [ -96.210500212909039, 29.657445147903633 ], [ -96.210518212589292, 29.657467147167239 ], [ -96.210573212875289, 29.657533147753369 ], [ -96.210640213469745, 29.657612147246219 ], [ -96.210959213420935, 29.657887147493874 ], [ -96.211139213404422, 29.657973147845361 ], [ -96.211252213206478, 29.658046147776812 ], [ -96.211260213335322, 29.658076147886415 ], [ -96.21131221286862, 29.658259147841797 ], [ -96.211327213696151, 29.658409147447557 ], [ -96.211325213222509, 29.658470148118653 ], [ -96.211333213405695, 29.658540147577916 ], [ -96.211340213582517, 29.658600148026188 ], [ -96.211424213240022, 29.658748148077972 ], [ -96.21155721379165, 29.658968147684302 ], [ -96.211659213095444, 29.659072147737191 ], [ -96.21180421341036, 29.659183147870831 ], [ -96.211846213601774, 29.659236148087359 ], [ -96.211879213819003, 29.659298147528379 ], [ -96.211872212885424, 29.659315147655192 ], [ -96.211894213724662, 29.659350147697165 ], [ -96.211915213126503, 29.659352148178158 ], [ -96.211976212995793, 29.65939614797475 ], [ -96.212095213045828, 29.659477148304315 ], [ -96.212203213586406, 29.659589148200524 ], [ -96.212272213145667, 29.65960814788432 ], [ -96.212332213514614, 29.659598148348373 ], [ -96.212350213491561, 29.659585147923032 ], [ -96.212371213307094, 29.659579147569712 ], [ -96.212401213391743, 29.659573147797587 ], [ -96.21242621361074, 29.659554147916431 ], [ -96.212550213597027, 29.659538147949849 ], [ -96.212612214036582, 29.659541148201885 ], [ -96.21275321378036, 29.659582148161128 ], [ -96.212829213160234, 29.659657147953563 ], [ -96.212893214027844, 29.659826148141189 ], [ -96.212836213805076, 29.66001014791274 ], [ -96.212817213801586, 29.660161147832085 ], [ -96.212848213502085, 29.660225147737513 ], [ -96.212954213507786, 29.660370148089413 ], [ -96.213152213720036, 29.660562148453248 ], [ -96.213326214113224, 29.660757147985684 ], [ -96.213369213900449, 29.660783148182926 ], [ -96.213584213805447, 29.660914148053038 ], [ -96.21369621387349, 29.660938148360593 ], [ -96.213734213816736, 29.660926147917145 ], [ -96.213824214031675, 29.660868148337073 ], [ -96.213922213602785, 29.660874148006624 ], [ -96.214298214301976, 29.661025148438778 ], [ -96.214426214253137, 29.661086148281282 ], [ -96.214835213753574, 29.661279148014234 ], [ -96.214995214039206, 29.661309148403241 ], [ -96.215538214047896, 29.661317147891292 ], [ -96.215754214517943, 29.661350147769276 ], [ -96.215931214595386, 29.66141714793352 ], [ -96.215954214587157, 29.661428148599793 ], [ -96.215975214396494, 29.661446148157125 ], [ -96.216019214954571, 29.661460148647706 ], [ -96.216116214926387, 29.661508148628187 ], [ -96.216294214494312, 29.661544147975331 ], [ -96.216457214395007, 29.66155814788274 ], [ -96.216527214853912, 29.661586147919277 ], [ -96.216604214442043, 29.661664148134019 ], [ -96.216712214460429, 29.661689148441219 ], [ -96.217060214639048, 29.661661147781867 ], [ -96.217578214870883, 29.661660148320969 ], [ -96.217928214852364, 29.661677148250121 ], [ -96.218108215468305, 29.661714147921234 ], [ -96.218334214874218, 29.66177014788078 ], [ -96.218513215625379, 29.661843148127581 ], [ -96.218566215105412, 29.661885148297799 ], [ -96.218599215397504, 29.661932148021698 ], [ -96.218625214893706, 29.662074148555273 ], [ -96.218596214981474, 29.662357148239739 ], [ -96.218559215212906, 29.662476148097877 ], [ -96.21861821561572, 29.662538147987732 ], [ -96.218909215180517, 29.662614148559584 ], [ -96.219096214925727, 29.662653148707026 ], [ -96.219204215709183, 29.662649148424677 ], [ -96.219644215698111, 29.662420148629081 ], [ -96.21976821543899, 29.662405148234704 ], [ -96.219856215742467, 29.662423148638897 ], [ -96.22019221614724, 29.662535147908546 ], [ -96.220534216052656, 29.662679148424225 ], [ -96.220733215973567, 29.662780148737106 ], [ -96.220846216184896, 29.662940148505793 ], [ -96.220984215843501, 29.663100148142952 ], [ -96.221054215430087, 29.66318214830909 ], [ -96.221250215984199, 29.663488148381287 ], [ -96.221484216019732, 29.6637051487739 ], [ -96.221710216389681, 29.663874148816141 ], [ -96.221872216424103, 29.663967148616862 ], [ -96.222199215874809, 29.664123148153887 ], [ -96.223841216264162, 29.66474414831135 ], [ -96.224417216924465, 29.664847148452548 ], [ -96.22468621645902, 29.664895148182477 ], [ -96.225022217437882, 29.664774148786364 ], [ -96.225684216839042, 29.66472614834213 ], [ -96.226007217109796, 29.664703148549521 ], [ -96.226644217538961, 29.664557148189857 ], [ -96.226986217724445, 29.664256148282035 ], [ -96.227715218082352, 29.663843148730521 ], [ -96.22792521810301, 29.663761148594869 ], [ -96.228366218241902, 29.6637181481779 ], [ -96.228994218087678, 29.663415147791678 ], [ -96.229161217506061, 29.663319147716084 ], [ -96.229863218464828, 29.662684148421896 ], [ -96.230726217875841, 29.662297147591101 ], [ -96.23090621786929, 29.66216614788603 ], [ -96.231009218545353, 29.662022147724237 ], [ -96.231015218038465, 29.662010147513893 ], [ -96.231052218496416, 29.661954147712812 ], [ -96.23107321801794, 29.661938147353599 ], [ -96.23114421872539, 29.661806147449667 ], [ -96.231308218205115, 29.661543147572253 ], [ -96.232220218704413, 29.661112148004097 ], [ -96.232408218734292, 29.661150147520637 ], [ -96.232482219005149, 29.661129147941541 ], [ -96.232520218481142, 29.661127147406937 ], [ -96.23255521828689, 29.661120147233252 ], [ -96.232842218710445, 29.660986147483445 ], [ -96.233357218914506, 29.660746147425087 ], [ -96.233539219186994, 29.660751147522223 ], [ -96.233615218877077, 29.660756147478619 ], [ -96.233668219089097, 29.660754147927559 ], [ -96.234129219511232, 29.660766147417334 ], [ -96.234258218790245, 29.660748147687617 ], [ -96.234438218966105, 29.660722147419005 ], [ -96.234751218929645, 29.660753147416258 ], [ -96.235845219238655, 29.660406147102474 ], [ -96.235887219600755, 29.660403147019856 ], [ -96.23591621927946, 29.660386147758995 ], [ -96.236049219942899, 29.660357147040674 ], [ -96.2362152196648, 29.660245146920911 ], [ -96.236410219122774, 29.660113147299771 ], [ -96.236413219523058, 29.660083147609292 ], [ -96.236450219191497, 29.659644147362442 ], [ -96.236568220048909, 29.659427147398009 ], [ -96.236730219270385, 29.659323146939489 ], [ -96.236886219697567, 29.659290147307878 ], [ -96.237290219865272, 29.659413146711902 ], [ -96.237519220089155, 29.659375147482749 ], [ -96.237913219587142, 29.659067147411204 ], [ -96.238036220037827, 29.658925146649743 ], [ -96.238184220289554, 29.658560146477708 ], [ -96.238828219801363, 29.658263146484835 ], [ -96.23896121988551, 29.658130146971576 ], [ -96.239021220225794, 29.65792614694794 ], [ -96.239096220493053, 29.657847146693332 ], [ -96.239453220106753, 29.65777814653207 ], [ -96.24006122098335, 29.657781146412844 ], [ -96.240361220399151, 29.65782614673083 ], [ -96.240597220793958, 29.65790814681559 ], [ -96.240682220231633, 29.657964146683671 ], [ -96.240856220994246, 29.658154146691828 ], [ -96.241586220644919, 29.658674147007499 ], [ -96.241809220750483, 29.658924146725539 ], [ -96.242108221356659, 29.65939114726411 ], [ -96.24283622078481, 29.659984147058974 ], [ -96.243053221310205, 29.660400147094315 ], [ -96.243640221588137, 29.660822146711066 ], [ -96.243897221571345, 29.661006147416998 ], [ -96.244095221742228, 29.661392147667843 ], [ -96.244323221607331, 29.66203314712941 ], [ -96.244618221650086, 29.662384147431506 ], [ -96.245074221649219, 29.663156147669145 ], [ -96.245223222129979, 29.663284147406255 ], [ -96.245344222250111, 29.663371147647954 ], [ -96.245552221780656, 29.663413147306592 ], [ -96.245606222046604, 29.663433147706897 ], [ -96.245659221846722, 29.663435147794367 ], [ -96.245798222467656, 29.663463147530987 ], [ -96.245946222046783, 29.663600147276519 ], [ -96.246037221807384, 29.663684148026537 ], [ -96.246084221930161, 29.66370814763631 ], [ -96.246097222557239, 29.663730147373712 ], [ -96.246124222357182, 29.663729147724997 ], [ -96.246531222489409, 29.663938147431526 ], [ -96.246780222027922, 29.664218147664595 ], [ -96.247382222653499, 29.664530147598086 ], [ -96.247673222709039, 29.664681148182758 ], [ -96.248078222388557, 29.664728147449527 ], [ -96.248962222665796, 29.665024147860155 ], [ -96.249328223463323, 29.665072147868742 ], [ -96.249859223227034, 29.665228148167639 ], [ -96.250122223280911, 29.665326148001409 ], [ -96.250322223167402, 29.665400148261909 ], [ -96.250347223906871, 29.665504148221824 ], [ -96.250366223475766, 29.665543147535185 ], [ -96.250429223919681, 29.665554147798506 ], [ -96.250549223518021, 29.665548147553924 ], [ -96.250643223004218, 29.665565147881875 ], [ -96.250870223629903, 29.665664147879784 ], [ -96.250926223088044, 29.665714147543557 ], [ -96.251090223600954, 29.665966148292313 ], [ -96.251146223627444, 29.666010148022362 ], [ -96.251285223573689, 29.6660881478461 ], [ -96.251360223589259, 29.666110148245831 ], [ -96.251442223823787, 29.666110147581374 ], [ -96.251581223776995, 29.66608214805289 ], [ -96.251656223815218, 29.666082147958409 ], [ -96.251914223531656, 29.66614314808951 ], [ -96.252034223880131, 29.6662581478565 ], [ -96.252135223913498, 29.666313148106859 ], [ -96.252216224300014, 29.666357147849691 ], [ -96.252631224509273, 29.666423148361659 ], [ -96.252751223683688, 29.666424147738105 ], [ -96.252814223560392, 29.666413148333159 ], [ -96.253116224470119, 29.666303148270767 ], [ -96.253198223778256, 29.666303148313805 ], [ -96.253274223968361, 29.666314147682133 ], [ -96.253450223759415, 29.666374147544563 ], [ -96.253727224792485, 29.66644614826938 ], [ -96.253947224743911, 29.666551148083784 ], [ -96.254199224924378, 29.666562148389904 ], [ -96.254312224488615, 29.666540147829956 ], [ -96.254444224468415, 29.6664851478114 ], [ -96.254520224145367, 29.666479147814179 ], [ -96.254652224971849, 29.666490147645675 ], [ -96.254766224339534, 29.666418147791312 ], [ -96.254785224095571, 29.666426148169247 ], [ -96.25500522513417, 29.666523148267181 ], [ -96.255020224743646, 29.666527147931479 ], [ -96.255950224916845, 29.66677514774608 ], [ -96.256223225307153, 29.66688014789203 ], [ -96.256481225488315, 29.666980147986365 ], [ -96.25670322470269, 29.667066147662275 ], [ -96.257291225555761, 29.6675071480844 ], [ -96.257295225395623, 29.667564148123752 ], [ -96.25742022532188, 29.66764614782139 ], [ -96.257446224827149, 29.667663148348545 ], [ -96.257527225376677, 29.667707148408347 ], [ -96.257603225139917, 29.667734148442435 ], [ -96.257880225658965, 29.667954148019682 ], [ -96.257905224940586, 29.668031147956299 ], [ -96.257943225421997, 29.668102148080596 ], [ -96.257999225540658, 29.668157148141372 ], [ -96.258238225830027, 29.668235147907655 ], [ -96.258266225253578, 29.668252148608552 ], [ -96.258489226010269, 29.668390148012882 ], [ -96.258540225395492, 29.668422148068814 ], [ -96.258666226118166, 29.668526148366162 ], [ -96.258723225816993, 29.668609147927452 ], [ -96.258779225899985, 29.668718147921439 ], [ -96.258993225654976, 29.66887214851705 ], [ -96.259006225706727, 29.668900148525434 ], [ -96.259088225571219, 29.66896014864535 ], [ -96.259132226241022, 29.668960148691422 ], [ -96.259233225647847, 29.66891714799068 ], [ -96.259264226114098, 29.668922147972442 ], [ -96.259308225538419, 29.668950148043358 ], [ -96.259343226056117, 29.669013147916157 ], [ -96.25937722626432, 29.669076148060039 ], [ -96.259428226274167, 29.669142148609861 ], [ -96.259478226364294, 29.669186148250308 ], [ -96.259553225737534, 29.66929014792802 ], [ -96.259616225779283, 29.669318148712801 ], [ -96.259767226131473, 29.669335148540291 ], [ -96.259799225596424, 29.669505148778168 ], [ -96.259843226210108, 29.669555148055224 ], [ -96.259956225528853, 29.669615148472744 ], [ -96.260000226205037, 29.669664148626779 ], [ -96.2599942259058, 29.669741148168914 ], [ -96.260025226433669, 29.669824148434639 ], [ -96.260146226073061, 29.669970148373928 ], [ -96.260396226398413, 29.670269148945998 ], [ -96.260632225731882, 29.670724148616454 ], [ -96.260673226392584, 29.670803148539594 ], [ -96.260635226023382, 29.670874148775127 ], [ -96.260629226684202, 29.670940148654147 ], [ -96.260604226141638, 29.670995149076251 ], [ -96.260547225880529, 29.671039148516151 ], [ -96.260515225833501, 29.671094148307208 ], [ -96.260509225803389, 29.671121148400392 ], [ -96.260528226188868, 29.671187148954324 ], [ -96.260616225778904, 29.671319148664875 ], [ -96.260798226515789, 29.671484149024344 ], [ -96.26116322593748, 29.671963148717207 ], [ -96.261320226852249, 29.672238148993127 ], [ -96.261333226822742, 29.672430149280558 ], [ -96.261352226916003, 29.672474148521996 ], [ -96.261534226423962, 29.672573148802844 ], [ -96.261635226648423, 29.67269414863047 ], [ -96.26167122696468, 29.672754149363865 ], [ -96.261717226902832, 29.672831149211877 ], [ -96.26185522630432, 29.672859149291924 ], [ -96.261943226375351, 29.672925149092602 ], [ -96.262138226943478, 29.673255149324632 ], [ -96.26217622712268, 29.673326148950281 ], [ -96.262157227049201, 29.673541149273969 ], [ -96.262207226417843, 29.673640148813117 ], [ -96.262371226969535, 29.673843149431114 ], [ -96.262559226877215, 29.674190149659513 ], [ -96.26262822683168, 29.674448149062425 ], [ -96.262635227168019, 29.674591149736415 ], [ -96.262590226904507, 29.675075149069666 ], [ -96.26251822732236, 29.675353149591864 ], [ -96.262414226704408, 29.675751149138158 ], [ -96.262313226872365, 29.6758771497148 ], [ -96.262256226819957, 29.675976149986273 ], [ -96.262073226918886, 29.676068149857539 ], [ -96.262036227120731, 29.676086149942236 ], [ -96.262137227093206, 29.676168149493137 ], [ -96.262162227299001, 29.676207149557353 ], [ -96.262168226913431, 29.676300149332498 ], [ -96.262130226657604, 29.67649814960831 ], [ -96.26207322696483, 29.676685149793492 ], [ -96.262048226505229, 29.676734149702384 ], [ -96.262010226403149, 29.676795149658961 ], [ -96.261903226464824, 29.676899149752753 ], [ -96.261847226463544, 29.676971149469022 ], [ -96.261809226405205, 29.677037150117741 ], [ -96.261765226419328, 29.677152150185389 ], [ -96.261777226813834, 29.67725614959442 ], [ -96.261827226385094, 29.677427149629541 ], [ -96.261909227261924, 29.677614150108266 ], [ -96.261915226628091, 29.677724150232564 ], [ -96.261953226848135, 29.677806150370444 ], [ -96.261966226608564, 29.677960149662404 ], [ -96.261953226989505, 29.678197149901674 ], [ -96.261877226927012, 29.678851150202995 ], [ -96.261877227026901, 29.678928150492876 ], [ -96.261883226505319, 29.678983150508266 ], [ -96.261927226540664, 29.679043150354286 ], [ -96.262236226595448, 29.679340150585475 ], [ -96.262267227112488, 29.679395150015942 ], [ -96.262281226557675, 29.679455150053627 ], [ -96.262292227368135, 29.679648150449395 ], [ -96.262418227203511, 29.679857150424969 ], [ -96.262625227631858, 29.680060150251713 ], [ -96.262883227273946, 29.680264150680436 ], [ -96.263186227269571, 29.680445150508373 ], [ -96.263230227712398, 29.680506150754038 ], [ -96.263255227314986, 29.680605150405611 ], [ -96.263248227795756, 29.680704150372847 ], [ -96.26325522687705, 29.68088515041271 ], [ -96.263236227688125, 29.680934150412497 ], [ -96.263160227280494, 29.681033150727533 ], [ -96.263166226990919, 29.681110150836933 ], [ -96.263235227556876, 29.681226150335537 ], [ -96.26324822700289, 29.681281150708479 ], [ -96.263292227719361, 29.681385150430096 ], [ -96.263355227652113, 29.681721150945666 ], [ -96.263525227617649, 29.681996150555744 ], [ -96.263676227776145, 29.682172151166299 ], [ -96.263732227875266, 29.682221150412534 ], [ -96.263846227572472, 29.682298150661946 ], [ -96.263908227367281, 29.682331151107736 ], [ -96.264204227933135, 29.68238115044484 ], [ -96.264343227950562, 29.682436150927064 ], [ -96.26439922731096, 29.682496150407637 ], [ -96.26443722751074, 29.682557151256088 ], [ -96.264456227562093, 29.682612150417523 ], [ -96.26451322754707, 29.682672150430509 ], [ -96.264550228243195, 29.682705150698396 ], [ -96.264764227449191, 29.682821151015194 ], [ -96.264834227532546, 29.682903151263186 ], [ -96.265010227816319, 29.683019151162803 ], [ -96.265054227945498, 29.683063151280898 ], [ -96.265085227987299, 29.683118150845271 ], [ -96.265104227777712, 29.683189151166566 ], [ -96.26511722778595, 29.68334315073686 ], [ -96.265112228274205, 29.683603150993591 ], [ -96.265110227604893, 29.683678150956599 ], [ -96.265123227866042, 29.683739150902738 ], [ -96.26516022789535, 29.683805150769938 ], [ -96.265249228039309, 29.683865151454562 ], [ -96.265299228303945, 29.683942151069477 ], [ -96.265324227794821, 29.68400815129035 ], [ -96.265327228546809, 29.684023150699211 ], [ -96.26536222854358, 29.684190151401886 ], [ -96.265443227826239, 29.684750151363342 ], [ -96.265626227676535, 29.685322151507343 ], [ -96.265739228220781, 29.685762151566887 ], [ -96.265764228464533, 29.685806151520179 ], [ -96.265877227963912, 29.685861151843262 ], [ -96.265990228014374, 29.685877151601787 ], [ -96.266041228733144, 29.685916151830828 ], [ -96.266060228594185, 29.68594315163697 ], [ -96.266072228601104, 29.685987151451521 ], [ -96.266072228270573, 29.686048151170091 ], [ -96.266009228039138, 29.686328151398513 ], [ -96.266009228706892, 29.686400151659406 ], [ -96.266097227893368, 29.686652151750177 ], [ -96.266311228064808, 29.686960151720452 ], [ -96.266468228872782, 29.687032152048172 ], [ -96.266563228170668, 29.687048152068176 ], [ -96.266745228291342, 29.687054151998876 ], [ -96.266756228850042, 29.687064151457253 ], [ -96.266808228485374, 29.687109151690382 ], [ -96.266947228956028, 29.687252151624875 ], [ -96.267028228557038, 29.687318151756251 ], [ -96.267223228717626, 29.687401151939817 ], [ -96.267545228973233, 29.687516151963088 ], [ -96.267683229150521, 29.687610151335289 ], [ -96.267765228715675, 29.687692151891682 ], [ -96.268016228410261, 29.688132151899662 ], [ -96.26818022865163, 29.688319151715223 ], [ -96.268249229176391, 29.688363151631634 ], [ -96.268350229268478, 29.688390152338258 ], [ -96.268564229515931, 29.688407152297994 ], [ -96.268602229254668, 29.688434152061976 ], [ -96.26863322879467, 29.68847315211292 ], [ -96.268715228589997, 29.68851115179131 ], [ -96.268948229639008, 29.688517151874908 ], [ -96.269074229364122, 29.688572151860583 ], [ -96.269300229468342, 29.688704152107572 ], [ -96.269558228806588, 29.688924152371843 ], [ -96.269592229840086, 29.688966151906314 ], [ -96.269669229863084, 29.68906015173798 ], [ -96.269791229688039, 29.689210151820053 ], [ -96.269974229625817, 29.689320152214318 ], [ -96.270087229701957, 29.689342151806841 ], [ -96.270156229860632, 29.689380151808106 ], [ -96.270225229080353, 29.68944115183227 ], [ -96.270376229609269, 29.689600151928925 ], [ -96.270577229819907, 29.689699152336384 ], [ -96.270779229942903, 29.689798152052276 ], [ -96.270830229200058, 29.689815152006346 ], [ -96.270930229745673, 29.689892152006216 ], [ -96.271050229323549, 29.690007151965695 ], [ -96.271169229711234, 29.690172152202095 ], [ -96.271213229683724, 29.690282152217982 ], [ -96.271346229517704, 29.69046415262676 ], [ -96.271421229936934, 29.690508152142542 ], [ -96.271471230323087, 29.690568152488066 ], [ -96.271440229444366, 29.690733152023526 ], [ -96.271440230230326, 29.690794152527211 ], [ -96.271459230372571, 29.690849152277021 ], [ -96.271490230113983, 29.69089815214743 ], [ -96.271648230297913, 29.691036152352492 ], [ -96.27194323024419, 29.691344152786577 ], [ -96.272151229960045, 29.691662152558511 ], [ -96.27220123041532, 29.691822152524253 ], [ -96.272188230242506, 29.692047152893824 ], [ -96.272232230373135, 29.692278152530367 ], [ -96.272201229850054, 29.692421152975058 ], [ -96.272125229702439, 29.692613152840586 ], [ -96.272134229735983, 29.692733153025507 ], [ -96.272144230594748, 29.692861152537372 ], [ -96.272144229721803, 29.693427153152992 ], [ -96.272263230106148, 29.693839152862807 ], [ -96.27236423017608, 29.694048152589293 ], [ -96.2723702304733, 29.69425715325437 ], [ -96.27235722979664, 29.694603153454668 ], [ -96.272370230762192, 29.694724152874421 ], [ -96.272389230680602, 29.694796152669358 ], [ -96.272508230582773, 29.695098153396646 ], [ -96.272552230438976, 29.69515915280234 ], [ -96.272628230326916, 29.695236153467967 ], [ -96.272691230302598, 29.695329153179038 ], [ -96.272779230120022, 29.695417153127504 ], [ -96.272823230033879, 29.695483153147219 ], [ -96.272861230707647, 29.695620152839282 ], [ -96.272848230342404, 29.695857153473579 ], [ -96.272923230377586, 29.696181153060998 ], [ -96.273112230817816, 29.696709153776155 ], [ -96.273143231065305, 29.696758153147261 ], [ -96.273206230812562, 29.696835153159096 ], [ -96.273376230404352, 29.696962153740884 ], [ -96.273496230629348, 29.697132153483217 ], [ -96.273521230987058, 29.697159153292919 ], [ -96.273628230967475, 29.697275153852154 ], [ -96.273955230989728, 29.697462153358625 ], [ -96.274604230947673, 29.697655153528828 ], [ -96.274988230656533, 29.697715153769572 ], [ -96.275082231256206, 29.697754153332724 ], [ -96.275202231421616, 29.697781153398669 ], [ -96.275309230905322, 29.69785315334812 ], [ -96.275353231319329, 29.697902154016326 ], [ -96.275435231016402, 29.698024153218991 ], [ -96.275485231102252, 29.698067153386937 ], [ -96.275592230922513, 29.698100153725299 ], [ -96.275881231555317, 29.698232153675463 ], [ -96.27631023130489, 29.698376153229749 ], [ -96.27645423146997, 29.69844715385322 ], [ -96.276511231676082, 29.698486153535146 ], [ -96.276668231812948, 29.698623153947388 ], [ -96.27703323162747, 29.698821153503037 ], [ -96.277166231689819, 29.698915153493715 ], [ -96.277247232226372, 29.699035153822976 ], [ -96.27727323213827, 29.699090154047759 ], [ -96.277291231976008, 29.699129153813839 ], [ -96.277348232198804, 29.699360153602971 ], [ -96.277386231642566, 29.699420153860082 ], [ -96.27746823222239, 29.699514153732558 ], [ -96.277556232221713, 29.699591153439666 ], [ -96.27765023221599, 29.699728153516492 ], [ -96.277776231877127, 29.700113154124761 ], [ -96.277757232099447, 29.700300153932925 ], [ -96.277725231646315, 29.7004211538584 ], [ -96.277593231846339, 29.700718153724303 ], [ -96.27724723166763, 29.701427154661218 ], [ -96.277183232173641, 29.701504154596265 ], [ -96.277108231354973, 29.701570154203935 ], [ -96.27666123195992, 29.701751153983132 ], [ -96.276510231467654, 29.701773154755706 ], [ -96.276352231139171, 29.701767154026673 ], [ -96.276075232013781, 29.70181115418594 ], [ -96.275993231500664, 29.701806154467775 ], [ -96.275603231128457, 29.701640154300684 ], [ -96.275546231830376, 29.701575154450186 ], [ -96.275384231643372, 29.70178115477713 ], [ -96.27522323129115, 29.701986154533714 ], [ -96.275070231742674, 29.702198154147027 ], [ -96.274559231250365, 29.70290815484643 ], [ -96.274549231696469, 29.703000154340433 ], [ -96.274469230915841, 29.703020154589051 ], [ -96.274451230858702, 29.703053154285033 ], [ -96.274343231232535, 29.703251155130964 ], [ -96.274267231491351, 29.703339154530003 ], [ -96.273852231478415, 29.70371815480728 ], [ -96.273461231075146, 29.703954154473202 ], [ -96.273192231221145, 29.704061154771846 ], [ -96.273115230951248, 29.704091155348667 ], [ -96.27261123060984, 29.704426154722881 ], [ -96.272063230743981, 29.704789154765972 ], [ -96.271055230655946, 29.705305155505869 ], [ -96.270829230171643, 29.705465155097951 ], [ -96.270627230624214, 29.705657155672508 ], [ -96.270469230806228, 29.705838155075249 ], [ -96.270337230106307, 29.706124155584103 ], [ -96.270249229907492, 29.706448155902816 ], [ -96.27021122999362, 29.706646155936646 ], [ -96.270205230459524, 29.706817155824552 ], [ -96.270261230574491, 29.707047155206393 ], [ -96.270299230360195, 29.707209155967256 ], [ -96.270299230597956, 29.70730115585808 ], [ -96.270274230384359, 29.707498155506283 ], [ -96.270280230791769, 29.707575155542248 ], [ -96.270317230611127, 29.7076581553439 ], [ -96.270355229893227, 29.707724155433723 ], [ -96.270431229984695, 29.707784155825259 ], [ -96.270481230300533, 29.707861155415596 ], [ -96.270928230404323, 29.708686156361047 ], [ -96.271425230961341, 29.709516155831082 ], [ -96.271639230530468, 29.709692155914606 ], [ -96.271708230443437, 29.70979115570017 ], [ -96.271714231176333, 29.709951155775538 ], [ -96.271708230551738, 29.71003815629081 ], [ -96.271802231158659, 29.710357156113687 ], [ -96.271878230701816, 29.710544156602296 ], [ -96.271896231214086, 29.710770156411645 ], [ -96.271815230627197, 29.710935156731313 ], [ -96.271670231228782, 29.711176156173494 ], [ -96.271657230950325, 29.711308156603614 ], [ -96.271701230676442, 29.711517156917719 ], [ -96.271789230822804, 29.711759156739163 ], [ -96.271808230581826, 29.711907156652298 ], [ -96.27182023121108, 29.712177156878141 ], [ -96.271871230951561, 29.71235315663726 ], [ -96.271877231417349, 29.712441156912124 ], [ -96.271870231218102, 29.71252915683171 ], [ -96.271839231396953, 29.712639157072328 ], [ -96.271675230867501, 29.712869157093827 ], [ -96.271549231209775, 29.712996156470936 ], [ -96.271491230428154, 29.713042157153779 ], [ -96.271247230687209, 29.713238156612327 ], [ -96.271177231317054, 29.713331157127211 ], [ -96.271083230667671, 29.713402156914693 ], [ -96.270831230991419, 29.713567157311942 ], [ -96.270768230394125, 29.713617156729502 ], [ -96.270717230988467, 29.713683157199796 ], [ -96.270560230577473, 29.7140011567027 ], [ -96.270358231075122, 29.714342156799979 ], [ -96.270163230376227, 29.71486415706558 ], [ -96.270138230682178, 29.714974157337213 ], [ -96.269974230995857, 29.715221157289697 ], [ -96.26993023013344, 29.715337157176879 ], [ -96.26992323018888, 29.715441157191634 ], [ -96.269942230965853, 29.715689157535351 ], [ -96.270024230354082, 29.716019157645032 ], [ -96.2701242302617, 29.716585157895313 ], [ -96.270219230751238, 29.7166621574451 ], [ -96.27040823058968, 29.716766157935258 ], [ -96.270546230404236, 29.716904157190442 ], [ -96.270665231315718, 29.717047157947462 ], [ -96.270773230803769, 29.717124157501594 ], [ -96.270993230794929, 29.717245158048652 ], [ -96.271445230602524, 29.717437157329648 ], [ -96.271471230718831, 29.717448157588482 ], [ -96.271635231295278, 29.717503157293919 ], [ -96.271843231453687, 29.717542157423892 ], [ -96.271871231295407, 29.717540157381269 ], [ -96.272107230882298, 29.717520157719449 ], [ -96.272378231356569, 29.71751515762065 ], [ -96.272494230880099, 29.717527157222975 ], [ -96.272580231405826, 29.717537157906246 ], [ -96.272819231301497, 29.717575157786314 ], [ -96.272945231376482, 29.717603157736328 ], [ -96.273228231487593, 29.717729158006801 ], [ -96.273763232139146, 29.717927158124855 ], [ -96.27416023130958, 29.718098157719293 ], [ -96.274620232160842, 29.718362157660376 ], [ -96.274897232426298, 29.718505157821262 ], [ -96.275104232100659, 29.718697158145673 ], [ -96.275262231620943, 29.718758158225715 ], [ -96.275463231662371, 29.718873157584849 ], [ -96.275734231879667, 29.719121158271818 ], [ -96.275916232315879, 29.719357157686364 ], [ -96.276061232207027, 29.719495157917457 ], [ -96.276118231879593, 29.719610158401373 ], [ -96.276143232324216, 29.719797158365644 ], [ -96.276193232651252, 29.719907158397675 ], [ -96.27626923218439, 29.72000115799764 ], [ -96.276502232373602, 29.720177158292717 ], [ -96.276609232760194, 29.720287158191621 ], [ -96.276753232271616, 29.720545157993534 ], [ -96.276860232711741, 29.720770157866284 ], [ -96.276860232845721, 29.720822158216091 ], [ -96.276860232311805, 29.720886158006603 ], [ -96.276829232389261, 29.721007158596553 ], [ -96.276747232121025, 29.721106158568848 ], [ -96.276743232574191, 29.721120157850709 ], [ -96.276725232926864, 29.721188157965415 ], [ -96.27672223257575, 29.721199157840665 ], [ -96.276715232828366, 29.721287158646433 ], [ -96.276766232616168, 29.721507158358463 ], [ -96.276778232640339, 29.721765158595829 ], [ -96.276910232202226, 29.722062158731891 ], [ -96.276980232238969, 29.722178158508026 ], [ -96.277175232707009, 29.722425158772964 ], [ -96.277244233064025, 29.722529158475911 ], [ -96.277370232841847, 29.722826158844807 ], [ -96.277395232853621, 29.722936158281115 ], [ -96.277463232462338, 29.723028158817332 ], [ -96.277546232912712, 29.723140158203378 ], [ -96.277697233090535, 29.723189158781619 ], [ -96.277785233249816, 29.723233158965108 ], [ -96.277892233290558, 29.723310158273534 ], [ -96.277936232681839, 29.723404159019893 ], [ -96.277942232663548, 29.723618159111034 ], [ -96.278062232682629, 29.723799158572511 ], [ -96.278704233434141, 29.724509158947701 ], [ -96.278962233030683, 29.724839158690347 ], [ -96.279208233078833, 29.725064159167271 ], [ -96.279585233082742, 29.725361159078698 ], [ -96.280007233309959, 29.725801158661461 ], [ -96.280146233382439, 29.725905159175525 ], [ -96.280246234083634, 29.725966159509611 ], [ -96.280335233961438, 29.726043159495898 ], [ -96.280391233782368, 29.726153159386826 ], [ -96.28053023343783, 29.726208159090806 ], [ -96.280624233483067, 29.726213159111378 ], [ -96.280694233313739, 29.7262081588228 ], [ -96.280744233941775, 29.726191159249058 ], [ -96.280775233677446, 29.726164158920884 ], [ -96.280838233355567, 29.726159159064149 ], [ -96.280870233372326, 29.726164159443471 ], [ -96.280990234220695, 29.726285158870972 ], [ -96.281015234287693, 29.726299159307004 ], [ -96.281084234090144, 29.726340158884732 ], [ -96.281153233621737, 29.726367159088348 ], [ -96.281229233768642, 29.726379159451035 ], [ -96.28129223420126, 29.726423158857866 ], [ -96.281418234151033, 29.726532159261978 ], [ -96.281468233589905, 29.726598159032243 ], [ -96.281808234124171, 29.726917159442813 ], [ -96.281947233968395, 29.727011159367809 ], [ -96.282343234606756, 29.727176159359381 ], [ -96.282658234539042, 29.727335158925541 ], [ -96.283011234891845, 29.727478159357293 ], [ -96.283653234762824, 29.727633159330139 ], [ -96.283905234690693, 29.727710159493043 ], [ -96.284018234988409, 29.727715159653616 ], [ -96.284144234242987, 29.727699158928036 ], [ -96.284270234978749, 29.727666158942956 ], [ -96.284497235158241, 29.727649159374796 ], [ -96.284642235365155, 29.727649158985898 ], [ -96.285139234804092, 29.727825159243459 ], [ -96.285335235133019, 29.727864159043225 ], [ -96.285561235403094, 29.727875159498648 ], [ -96.285803235437911, 29.727845159036001 ], [ -96.285826234941808, 29.727842159462647 ], [ -96.285977235706738, 29.727842159161487 ], [ -96.286122234903601, 29.727859159017115 ], [ -96.286286234968927, 29.727897159011093 ], [ -96.286380235077843, 29.727963159173552 ], [ -96.28648723527246, 29.728013158938406 ], [ -96.286569235609505, 29.728029159337964 ], [ -96.286789235811185, 29.728029159466747 ], [ -96.287532235692012, 29.727974159570337 ], [ -96.287709235290961, 29.727936159435306 ], [ -96.287848236043786, 29.727881159566831 ], [ -96.288024235831472, 29.727771159490967 ], [ -96.288269235358499, 29.727711159039359 ], [ -96.288328235674399, 29.72772815934497 ], [ -96.288345236241071, 29.727733159356234 ], [ -96.288465235609095, 29.727793159328616 ], [ -96.288704235411927, 29.727804159476943 ], [ -96.288874235891655, 29.727788159472198 ], [ -96.288956236232977, 29.727755159037365 ], [ -96.2890132359707, 29.727711159488955 ], [ -96.289044236134117, 29.727678159405411 ], [ -96.289069235693191, 29.727628158765139 ], [ -96.289239236067701, 29.72755215947727 ], [ -96.28965523637504, 29.727458158925526 ], [ -96.289813236014112, 29.727453158978498 ], [ -96.290077236530138, 29.727387159089329 ], [ -96.290140236054754, 29.72738115941371 ], [ -96.290266236563795, 29.727392158857672 ], [ -96.290512236562719, 29.72745815926999 ], [ -96.290644236296529, 29.727530159318462 ], [ -96.29073223667946, 29.727612158790979 ], [ -96.290990236576633, 29.727783159269947 ], [ -96.291192236554608, 29.727887159318296 ], [ -96.291431236725202, 29.727970159106654 ], [ -96.291551237115996, 29.72806915884199 ], [ -96.29163223637093, 29.728157159340284 ], [ -96.2917772370389, 29.72837115939863 ], [ -96.291752236843664, 29.728514159419259 ], [ -96.291758237096573, 29.728597159205631 ], [ -96.291828236332762, 29.728745158882493 ], [ -96.291872236525634, 29.728893159113554 ], [ -96.291903236372747, 29.728926159559506 ], [ -96.291935236596217, 29.728981159251294 ], [ -96.291972236488434, 29.729075159649515 ], [ -96.292023236943336, 29.729405159416967 ], [ -96.292022236606755, 29.729451159425665 ], [ -96.292016236598982, 29.729718159061523 ], [ -96.29202923689094, 29.729888159595561 ], [ -96.292016236465571, 29.729954159695318 ], [ -96.291991236497324, 29.730015159365774 ], [ -96.291865237142829, 29.730103159315689 ], [ -96.291764237113057, 29.730152159295287 ], [ -96.291695237009662, 29.730207159606984 ], [ -96.291651236526889, 29.730268159571647 ], [ -96.291613236962206, 29.730444159463129 ], [ -96.29160023672182, 29.730652159506722 ], [ -96.291569236247994, 29.730795159955516 ], [ -96.291418237112268, 29.73087815973977 ], [ -96.291374236533841, 29.730916159880376 ], [ -96.291342236516996, 29.731010159713918 ], [ -96.291304236373662, 29.731048159311566 ], [ -96.291229236306307, 29.731092159573969 ], [ -96.291115236173368, 29.731120159927343 ], [ -96.290996236319458, 29.731169159998768 ], [ -96.290756236970651, 29.731290159734478 ], [ -96.290592236246738, 29.731400159639531 ], [ -96.290422236990963, 29.731548159733482 ], [ -96.290359236252613, 29.731620159806766 ], [ -96.290290236695725, 29.731713160188853 ], [ -96.290172236303093, 29.731901160031072 ], [ -96.290145236176016, 29.731944159529153 ], [ -96.290076236080026, 29.731971159549278 ], [ -96.29000623594446, 29.732026160439343 ], [ -96.289962236793755, 29.732109159661931 ], [ -96.289943236551636, 29.732521160390622 ], [ -96.289994236671049, 29.73270815991744 ], [ -96.290094236110036, 29.732884160150704 ], [ -96.290126236222022, 29.732994160092872 ], [ -96.290113236237573, 29.733060159994121 ], [ -96.290107236704131, 29.733313160117312 ], [ -96.290157236965726, 29.733439160492779 ], [ -96.290314236914398, 29.733708160637494 ], [ -96.290535236764597, 29.734192160409957 ], [ -96.290692236323167, 29.73429716038012 ], [ -96.2909352372954, 29.73454116006284 ], [ -96.29098223729865, 29.734588160349706 ], [ -96.291046236653642, 29.734669160525506 ], [ -96.291221236935584, 29.734890160375308 ], [ -96.291297237143169, 29.734956160158553 ], [ -96.291523236623192, 29.735023160807721 ], [ -96.291656236694593, 29.735045160671522 ], [ -96.291801237354932, 29.735094160603296 ], [ -96.292046237275912, 29.735166160601729 ], [ -96.292393237489719, 29.735193160790978 ], [ -96.292556237329975, 29.735226160775248 ], [ -96.292632237221284, 29.735259160594495 ], [ -96.292714237093776, 29.735281160350748 ], [ -96.292953237704722, 29.73545216039042 ], [ -96.293148237647571, 29.735628160612105 ], [ -96.293243237773027, 29.735694160449196 ], [ -96.293375237763243, 29.735738160678391 ], [ -96.293495237359735, 29.735765160218531 ], [ -96.293765237050323, 29.735798160488748 ], [ -96.294288237944954, 29.735826161060995 ], [ -96.295157237620288, 29.735820160839598 ], [ -96.295384237718238, 29.735837160582378 ], [ -96.295586237697052, 29.735875160487875 ], [ -96.296373238524225, 29.736150160813501 ], [ -96.29690223877347, 29.73630916048872 ], [ -96.29692123837232, 29.736315160833357 ], [ -96.296971238112278, 29.736332160585945 ], [ -96.296990238399772, 29.736376160702704 ], [ -96.296990238069313, 29.736453161080135 ], [ -96.297009238321095, 29.736502160923216 ], [ -96.297104238837946, 29.73657916096785 ], [ -96.297217238400506, 29.736629160879573 ], [ -96.297425238184474, 29.736695161065825 ], [ -96.297620238184194, 29.736816161089898 ], [ -96.297840238210412, 29.736915160816782 ], [ -96.298042238504081, 29.737030160919605 ], [ -96.298319238776713, 29.737212160483079 ], [ -96.298785238868874, 29.738047161229787 ], [ -96.298798238749825, 29.738102161310866 ], [ -96.298760239367255, 29.738201160543376 ], [ -96.298760238455174, 29.73825116050946 ], [ -96.298779238813722, 29.738295161230671 ], [ -96.298779238692447, 29.738322160659575 ], [ -96.298741239167256, 29.738416161054872 ], [ -96.298697238563932, 29.738811161201745 ], [ -96.298577238698584, 29.739444161041316 ], [ -96.2985142387341, 29.739553160959865 ], [ -96.298255238693017, 29.739773160975645 ], [ -96.298148238555726, 29.74009216174332 ], [ -96.29804123920033, 29.740240160983795 ], [ -96.297901239196946, 29.740357161453147 ], [ -96.297751238986891, 29.74048216181211 ], [ -96.297651239089177, 29.740603161702396 ], [ -96.297474239032354, 29.740856161590251 ], [ -96.297046238121936, 29.741400162087206 ], [ -96.296983238883371, 29.74150516151953 ], [ -96.296857238491398, 29.741680161279213 ], [ -96.296781238402943, 29.741933161828243 ], [ -96.296535238248779, 29.742505162275044 ], [ -96.296409238245275, 29.74299416231144 ], [ -96.296377238670502, 29.743632161771572 ], [ -96.296358238314085, 29.743725162198171 ], [ -96.296302238066176, 29.743769162401044 ], [ -96.29625823867228, 29.743830161931712 ], [ -96.296258238022588, 29.743868162516723 ], [ -96.296295238542584, 29.743945162106588 ], [ -96.296303238079929, 29.743951162547287 ], [ -96.296459238330428, 29.744055162023141 ], [ -96.296491238748999, 29.744116162631833 ], [ -96.296503238889244, 29.744165161967796 ], [ -96.29650323903617, 29.744231161907535 ], [ -96.296478238983653, 29.744286162525778 ], [ -96.29642823910865, 29.744352162592445 ], [ -96.296383238429343, 29.744434162444968 ], [ -96.296377238420234, 29.744511162535854 ], [ -96.296396238462805, 29.744588162573251 ], [ -96.296415238826498, 29.744621162358218 ], [ -96.296522239119966, 29.744720162430706 ], [ -96.296560238850233, 29.744770161927192 ], [ -96.296629238841831, 29.744940161956873 ], [ -96.296629238441398, 29.745028162444875 ], [ -96.296604238697356, 29.745160162386792 ], [ -96.296660238498831, 29.745231162837978 ], [ -96.296723238634456, 29.745380162043951 ], [ -96.296717238509729, 29.745451162459833 ], [ -96.296591238441053, 29.745622162117535 ], [ -96.296572238526423, 29.745693162867145 ], [ -96.296578238626552, 29.745792162852545 ], [ -96.296616238472822, 29.745836162648871 ], [ -96.296698239062962, 29.745886162669144 ], [ -96.296755238944854, 29.745935162809957 ], [ -96.296811238887145, 29.746018162500359 ], [ -96.296818238401642, 29.746133162771063 ], [ -96.296799238446766, 29.746248162869819 ], [ -96.296805238309133, 29.746364162765204 ], [ -96.296843238326559, 29.746655163004966 ], [ -96.296912238729178, 29.74693616282217 ], [ -96.296925238793818, 29.7471991629243 ], [ -96.296824239275367, 29.747645163267318 ], [ -96.296696239209894, 29.747862163335274 ], [ -96.296685238657915, 29.747881163240862 ], [ -96.296643238442456, 29.748001162843799 ], [ -96.29660323886057, 29.748112162693506 ], [ -96.296603238637317, 29.748211163386323 ], [ -96.296631239328988, 29.748283162865029 ], [ -96.296699239089335, 29.748462162709156 ], [ -96.310530241842173, 29.74567716176789 ], [ -96.318425244439823, 29.744101161633939 ], [ -96.318925244690519, 29.743962161614693 ], [ -96.325432246099481, 29.742618161074819 ], [ -96.326104246303842, 29.742479160868939 ], [ -96.326899245774598, 29.742315160715769 ], [ -96.328894247094965, 29.741928160796267 ], [ -96.329589246625503, 29.741784160764464 ], [ -96.32979724663268, 29.741741160914735 ], [ -96.33044224749149, 29.741613160856787 ], [ -96.330796246763839, 29.741543160317462 ], [ -96.33229424764157, 29.741244160132084 ], [ -96.33549124835065, 29.740593160400721 ], [ -96.355323252784459, 29.736556158777713 ], [ -96.361412254698422, 29.735316158341043 ], [ -96.363041255547472, 29.734990158297212 ], [ -96.369616256945491, 29.733673157191493 ], [ -96.378778258429207, 29.731815156932026 ], [ -96.385310260642697, 29.730496156063758 ], [ -96.388005261182059, 29.729952156396038 ], [ -96.390018261131317, 29.729540155872709 ], [ -96.390724262204529, 29.729395156214864 ], [ -96.391418262225955, 29.729252156409217 ], [ -96.396038262696422, 29.728304155724722 ], [ -96.400499263955112, 29.727417154865371 ], [ -96.404254265471195, 29.726671155094348 ], [ -96.40993126664614, 29.725509155006144 ], [ -96.412131266884487, 29.725058154685431 ], [ -96.414251267444797, 29.724618153902632 ], [ -96.414388267860289, 29.724591154063493 ], [ -96.415092267499034, 29.724450154285535 ], [ -96.415747267735171, 29.724319154302815 ], [ -96.417937268615745, 29.723879153685175 ], [ -96.422347269757438, 29.722991153635693 ], [ -96.424606270566514, 29.722554153127778 ], [ -96.426923270605727, 29.722046153025531 ], [ -96.427818270904709, 29.721866152987008 ], [ -96.432714272237789, 29.720884152957204 ], [ -96.43433727283093, 29.72056815268903 ], [ -96.438978273663821, 29.71962415218335 ], [ -96.441629274147658, 29.719073152383512 ], [ -96.442631274292296, 29.718923152376952 ], [ -96.443567274554582, 29.71881315211575 ], [ -96.447747276057996, 29.718434152086747 ], [ -96.448025276235555, 29.718406152188457 ], [ -96.458201278556132, 29.717367151616557 ], [ -96.461047278785429, 29.716983151232139 ], [ -96.465317279864109, 29.716406150409693 ], [ -96.468249280947674, 29.715980150373124 ], [ -96.474797281909417, 29.715014150370266 ], [ -96.476444282674294, 29.714783149700803 ], [ -96.477680282636541, 29.714609149715599 ], [ -96.47842928354163, 29.714524149883083 ], [ -96.479794283949531, 29.714325150353954 ], [ -96.48029528368194, 29.714253149523199 ], [ -96.481372284387746, 29.71407515016897 ], [ -96.482291284138114, 29.713948150127653 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 539, "Tract": "48089750300", "Area_SqMi": 216.22223811560215, "total_2009": 1476, "total_2010": 1468, "total_2011": 1580, "total_2012": 1704, "total_2013": 1649, "total_2014": 1647, "total_2015": 1508, "total_2016": 1499, "total_2017": 1556, "total_2018": 1588, "total_2019": 1607, "total_2020": 1650, "age1": 324, "age2": 728, "age3": 491, "earn1": 299, "earn2": 458, "earn3": 786, "naics_s01": 1, "naics_s02": 19, "naics_s03": 0, "naics_s04": 98, "naics_s05": 382, "naics_s06": 57, "naics_s07": 297, "naics_s08": 43, "naics_s09": 5, "naics_s10": 42, "naics_s11": 13, "naics_s12": 20, "naics_s13": 0, "naics_s14": 28, "naics_s15": 176, "naics_s16": 181, "naics_s17": 8, "naics_s18": 104, "naics_s19": 17, "naics_s20": 52, "race1": 1315, "race2": 174, "race3": 16, "race4": 13, "race5": 4, "race6": 21, "ethnicity1": 1165, "ethnicity2": 378, "edu1": 220, "edu2": 402, "edu3": 391, "edu4": 206, "Shape_Length": 388203.93207347213, "Shape_Area": 6027905930.6039381, "total_2021": 1466, "total_2022": 1543 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.873377379669037, 29.633582120448864 ], [ -96.874229379399196, 29.632711120173337 ], [ -96.865003377287096, 29.632711120287627 ], [ -96.865473377141441, 29.632232120424568 ], [ -96.865536376928887, 29.632138120024116 ], [ -96.865586376798177, 29.632028120081941 ], [ -96.865611377112799, 29.631770120232449 ], [ -96.865680377158412, 29.63155012047741 ], [ -96.865844377336302, 29.6312471200138 ], [ -96.865888377707634, 29.63112612044069 ], [ -96.865963376747288, 29.630862119791431 ], [ -96.865982376726166, 29.630725119774251 ], [ -96.865976377482937, 29.630631119994057 ], [ -96.86586837734923, 29.630433119729883 ], [ -96.865768376840805, 29.630318119970934 ], [ -96.865573376967404, 29.630158119788387 ], [ -96.86532737712254, 29.630093119602812 ], [ -96.864654376747964, 29.630010120267265 ], [ -96.864301376935586, 29.62984012003681 ], [ -96.864137377015865, 29.629791120004793 ], [ -96.864043377085252, 29.629780119372466 ], [ -96.86393637631312, 29.629780120065288 ], [ -96.863533376774257, 29.629829119634369 ], [ -96.863092376947876, 29.629819119784031 ], [ -96.863004376706513, 29.62980212021208 ], [ -96.862897376797122, 29.629747119819573 ], [ -96.862872375889907, 29.629725119574537 ], [ -96.862809376411889, 29.629632119862318 ], [ -96.862765376609786, 29.629439119380489 ], [ -96.862759375873438, 29.629307119639908 ], [ -96.862777376110529, 29.629181119756325 ], [ -96.862840376052674, 29.629065119715158 ], [ -96.862979376137545, 29.628763119357117 ], [ -96.863048376479739, 29.628576119292269 ], [ -96.863073376129606, 29.628482119683515 ], [ -96.863092375930052, 29.628339119794433 ], [ -96.863067376631719, 29.62828411924653 ], [ -96.862903376744782, 29.628191119569841 ], [ -96.862569375844828, 29.628087119919368 ], [ -96.862299376531837, 29.627971119808613 ], [ -96.861996376470685, 29.627746119179868 ], [ -96.861776375651544, 29.627614119107385 ], [ -96.861537375932585, 29.627488119373918 ], [ -96.861184376156757, 29.627345119844342 ], [ -96.861046375460845, 29.627306119517293 ], [ -96.860794375482158, 29.627213119495742 ], [ -96.860089376062163, 29.627004119121974 ], [ -96.85976237515959, 29.626883118987909 ], [ -96.859541375265849, 29.626856119413542 ], [ -96.859428375440189, 29.626856119781106 ], [ -96.859302375550016, 29.626829119453951 ], [ -96.859151374988897, 29.626774119683674 ], [ -96.859082375432664, 29.626730119746671 ], [ -96.859057375384907, 29.626686119707855 ], [ -96.858981375265387, 29.626510118988129 ], [ -96.858975375265331, 29.626389119346502 ], [ -96.858987374847487, 29.626262119608878 ], [ -96.859113375320263, 29.62555811948106 ], [ -96.859226374826733, 29.625003119130575 ], [ -96.85925237539513, 29.624600118673357 ], [ -96.85920837523058, 29.624452119160527 ], [ -96.859151375621764, 29.624381118687431 ], [ -96.858610374647668, 29.624078118828432 ], [ -96.85838937506557, 29.623935119019855 ], [ -96.858188374558495, 29.623787119138854 ], [ -96.858037375161871, 29.623644119007906 ], [ -96.857867375084908, 29.623534119116112 ], [ -96.857684374860924, 29.623441119065337 ], [ -96.857344375148088, 29.623314118338449 ], [ -96.857143374224108, 29.623215118866778 ], [ -96.857049374696913, 29.623188118795188 ], [ -96.856879374175023, 29.623166118434114 ], [ -96.855947374562888, 29.623106118389693 ], [ -96.855330374628892, 29.623051118352858 ], [ -96.854978373797621, 29.623051118315715 ], [ -96.854657374259247, 29.623040118414213 ], [ -96.854588374025695, 29.623029119184633 ], [ -96.854349373671511, 29.622892118341557 ], [ -96.854279373446687, 29.622831119013487 ], [ -96.854128374357884, 29.622650119020189 ], [ -96.853939373367197, 29.622479118293317 ], [ -96.853883374267895, 29.622452118870022 ], [ -96.853826374299089, 29.622446118834358 ], [ -96.853505373541793, 29.622359118255471 ], [ -96.853190373135504, 29.622260118965208 ], [ -96.853077373390207, 29.622210118237771 ], [ -96.85295137376248, 29.622139119004427 ], [ -96.852832373521551, 29.62204011897164 ], [ -96.852781373192485, 29.622012118177427 ], [ -96.852699373180513, 29.621985118916232 ], [ -96.852397373024729, 29.621968118594733 ], [ -96.852183373591899, 29.621924118183522 ], [ -96.851296372801698, 29.621655118563343 ], [ -96.851139372959622, 29.621567118293939 ], [ -96.850994373517679, 29.621518118946117 ], [ -96.850497373048043, 29.621424118450832 ], [ -96.850415373208264, 29.621402118964937 ], [ -96.84986137257178, 29.621342118688482 ], [ -96.849540372899398, 29.621293118278921 ], [ -96.849257372645141, 29.621232118280101 ], [ -96.848684372765902, 29.62113311846517 ], [ -96.848407372279581, 29.621056118487122 ], [ -96.848111372794364, 29.620996119005181 ], [ -96.848036372181213, 29.620974118683719 ], [ -96.847828372447324, 29.620886118315152 ], [ -96.847614372464975, 29.620765118989411 ], [ -96.847494372154458, 29.620683118476467 ], [ -96.8473063724241, 29.620496118898476 ], [ -96.847280371939632, 29.620452118445481 ], [ -96.847243372228931, 29.620325118108074 ], [ -96.847249372059508, 29.620177118012322 ], [ -96.847419371562196, 29.619929118434005 ], [ -96.847513372227567, 29.619847118797804 ], [ -96.847658372495246, 29.619748118353627 ], [ -96.847847372471676, 29.619577118448973 ], [ -96.847897372642365, 29.619544117928726 ], [ -96.847972371783712, 29.61951111869945 ], [ -96.848243371851098, 29.619451118377771 ], [ -96.848325372256824, 29.61942311810791 ], [ -96.848438372701423, 29.619368118603607 ], [ -96.848539372636694, 29.619275118413722 ], [ -96.848589372204202, 29.619209118032238 ], [ -96.848633372729168, 29.619170118082813 ], [ -96.848853372216297, 29.619044117802346 ], [ -96.848960372773604, 29.618923117887825 ], [ -96.849004372673406, 29.618791118286094 ], [ -96.849011372025771, 29.618736118348526 ], [ -96.848916372449537, 29.618439118340582 ], [ -96.848872372040077, 29.618367118331019 ], [ -96.848715371955649, 29.618186118198881 ], [ -96.848664372765157, 29.618142117721479 ], [ -96.848438372268333, 29.618060117743457 ], [ -96.848375372577522, 29.618010118068579 ], [ -96.848117372619797, 29.617724117812667 ], [ -96.847997372044418, 29.617625117890899 ], [ -96.847796372568965, 29.617422117441158 ], [ -96.847613372337236, 29.617274117940219 ], [ -96.847531371512915, 29.617191117648655 ], [ -96.847355371457141, 29.617065117606906 ], [ -96.847254371988697, 29.617037118033778 ], [ -96.847141371871984, 29.617026118203196 ], [ -96.847040372090362, 29.617004117736712 ], [ -96.846757371897482, 29.616982117391998 ], [ -96.846631371707176, 29.616933117403196 ], [ -96.846512372207144, 29.61685611781375 ], [ -96.84631037215874, 29.616663117570145 ], [ -96.846228371894028, 29.616614117765931 ], [ -96.846109371912206, 29.616603117956608 ], [ -96.845970371104229, 29.616619117738026 ], [ -96.845712371085384, 29.616680117694369 ], [ -96.845574371058206, 29.616746118125448 ], [ -96.845156371705201, 29.616890117543079 ], [ -96.845127371076003, 29.616900117740677 ], [ -96.845101371196066, 29.616904118241909 ], [ -96.84499537138214, 29.616922117525643 ], [ -96.844768371270291, 29.616909117511138 ], [ -96.844504370722831, 29.616894117917969 ], [ -96.844366371550706, 29.61686211810099 ], [ -96.844208370659345, 29.61682311804848 ], [ -96.843743371305052, 29.616757117616146 ], [ -96.84363637058982, 29.616752117805973 ], [ -96.843510371331973, 29.616730117933841 ], [ -96.843220370645724, 29.616625118251338 ], [ -96.843126370636469, 29.616570117875849 ], [ -96.842994370748741, 29.616422118052 ], [ -96.842868371211509, 29.616087118121964 ], [ -96.8430193706306, 29.615487117866515 ], [ -96.843088371238139, 29.61530611731909 ], [ -96.843119370804871, 29.615251117270081 ], [ -96.843126370295394, 29.615168117293901 ], [ -96.843107370436158, 29.615075117305661 ], [ -96.843107371257773, 29.615014117404726 ], [ -96.843113370550952, 29.614948117317375 ], [ -96.843132370545717, 29.614904117471323 ], [ -96.843138370375442, 29.614855117159841 ], [ -96.84310037054486, 29.614756117581614 ], [ -96.842968370481344, 29.614541117520613 ], [ -96.84288037036967, 29.614437117505137 ], [ -96.842754370289342, 29.614272117697531 ], [ -96.842666370876813, 29.614190117617401 ], [ -96.842578370462817, 29.614124117353025 ], [ -96.842427370323094, 29.613975117456707 ], [ -96.842383370400754, 29.613898117543005 ], [ -96.842358370161435, 29.61380511722313 ], [ -96.842339370995845, 29.613623116881552 ], [ -96.842370370040115, 29.613244116811874 ], [ -96.842364370648824, 29.613101117445773 ], [ -96.842345370588376, 29.613013117590128 ], [ -96.842345370881105, 29.612831116717185 ], [ -96.842389370840621, 29.612732116880579 ], [ -96.842508370996853, 29.612568117468818 ], [ -96.842640370224856, 29.612358117306382 ], [ -96.842779370658818, 29.612232116996314 ], [ -96.842892370359124, 29.612100116876228 ], [ -96.842993370299197, 29.61200711713661 ], [ -96.843081371054495, 29.61181411733617 ], [ -96.843571370750055, 29.611061116371864 ], [ -96.843641370879482, 29.610929116672548 ], [ -96.843785370241008, 29.610582116558049 ], [ -96.843968370839292, 29.610247116937977 ], [ -96.844018370878317, 29.610049116682692 ], [ -96.844081370835568, 29.60987811688231 ], [ -96.84420737067407, 29.60971911622234 ], [ -96.844307371321662, 29.609339116301488 ], [ -96.844314370579681, 29.60920211625254 ], [ -96.844307370726881, 29.609130116709942 ], [ -96.844287370382773, 29.609046116718961 ], [ -96.844276370643115, 29.608998116671604 ], [ -96.844257371055505, 29.608949116012667 ], [ -96.844207370328178, 29.608899115992998 ], [ -96.844137370733733, 29.608839116213986 ], [ -96.844074370483952, 29.60881711636981 ], [ -96.844005370573981, 29.608806115992138 ], [ -96.843621370264827, 29.608795116106553 ], [ -96.843552370399422, 29.608784116397377 ], [ -96.843470370937254, 29.608757116611187 ], [ -96.843325370925911, 29.608691115871945 ], [ -96.84286037079552, 29.608333116355169 ], [ -96.842583370428017, 29.608086116314958 ], [ -96.842457370185073, 29.60800911629093 ], [ -96.842281369760698, 29.607938115992443 ], [ -96.84206137030354, 29.607866116261867 ], [ -96.841563370041015, 29.607800115812303 ], [ -96.841444369677461, 29.607762115735483 ], [ -96.841268370147318, 29.607652115981395 ], [ -96.841217369791565, 29.607602115815752 ], [ -96.841117369560465, 29.607443115834034 ], [ -96.841060370346838, 29.607256116155249 ], [ -96.840965370047485, 29.607014116218366 ], [ -96.84070136968235, 29.60652511560372 ], [ -96.840625369617086, 29.606327116284625 ], [ -96.840531370223928, 29.605931115869854 ], [ -96.840506369877858, 29.605766116187663 ], [ -96.840512370093862, 29.605722116200148 ], [ -96.840499369833793, 29.605513115880765 ], [ -96.840481369193512, 29.605436115957474 ], [ -96.840399369936648, 29.605276115345145 ], [ -96.840361369501252, 29.605232115440469 ], [ -96.840285370145594, 29.605199115502252 ], [ -96.840204369723764, 29.605183115835466 ], [ -96.839845369786829, 29.605216116106202 ], [ -96.839725369396518, 29.605216115491128 ], [ -96.839631369709778, 29.605211115498566 ], [ -96.839512369558975, 29.605178115747002 ], [ -96.839354369762447, 29.605095115596985 ], [ -96.839298369554768, 29.605051115323178 ], [ -96.839266369652108, 29.604996115810266 ], [ -96.839241369790841, 29.604925115680189 ], [ -96.839178369183443, 29.604705115807768 ], [ -96.838958369261533, 29.604320115686242 ], [ -96.838914368924208, 29.604270115706903 ], [ -96.838863369171989, 29.604237115294517 ], [ -96.838687369254743, 29.604160115281388 ], [ -96.838234368680276, 29.60399611564095 ], [ -96.83799536891317, 29.603847115096663 ], [ -96.837938368729311, 29.603798115791449 ], [ -96.837812369153582, 29.603600115326557 ], [ -96.83779336930526, 29.60348411508755 ], [ -96.837774368592349, 29.603429114960022 ], [ -96.837762369379547, 29.603341115386097 ], [ -96.837781368639739, 29.603066115019036 ], [ -96.837793369031289, 29.602978115199058 ], [ -96.837831368588866, 29.602885115534527 ], [ -96.837837368475419, 29.602676114911272 ], [ -96.837856369401777, 29.60257711486469 ], [ -96.837843368562147, 29.6024891153392 ], [ -96.837793369328935, 29.602285115285774 ], [ -96.837661368849766, 29.601994115014193 ], [ -96.837623369254104, 29.601780115009984 ], [ -96.837648369206491, 29.60101011447621 ], [ -96.837699368601463, 29.600685115272341 ], [ -96.837680368250872, 29.600608114926757 ], [ -96.837648368395179, 29.600537114977691 ], [ -96.837636369172543, 29.600454114748693 ], [ -96.837573368567959, 29.600295114872704 ], [ -96.837516368458978, 29.600240115103393 ], [ -96.837359368960648, 29.600125115065115 ], [ -96.837252369049708, 29.60006411451252 ], [ -96.837126368539955, 29.599960114917089 ], [ -96.836975368658898, 29.599778114424588 ], [ -96.836943368560412, 29.599723114238898 ], [ -96.836931368926017, 29.599630115065398 ], [ -96.836968368227062, 29.599443114748233 ], [ -96.837038368602592, 29.599344114341054 ], [ -96.837126368109466, 29.599245114260071 ], [ -96.837163368336135, 29.599146114595872 ], [ -96.837157368225903, 29.598992114747041 ], [ -96.837100368990733, 29.598788114776454 ], [ -96.83702536854743, 29.598673114053501 ], [ -96.836956368817567, 29.598618114051302 ], [ -96.836880368703859, 29.598574114186036 ], [ -96.836622368745097, 29.598536114823318 ], [ -96.836320368518628, 29.598525114183101 ], [ -96.836119368546676, 29.598492114497596 ], [ -96.835943368126166, 29.5984151141814 ], [ -96.835861367759975, 29.598360114503635 ], [ -96.835565368150455, 29.598052114202527 ], [ -96.835320367622757, 29.597826113989225 ], [ -96.835131368200734, 29.597711114173876 ], [ -96.834596368147828, 29.597337114429724 ], [ -96.834288367652661, 29.596996113790929 ], [ -96.834206367541782, 29.596864114620352 ], [ -96.834146367613357, 29.596799114627188 ], [ -96.833973367417101, 29.596611114182899 ], [ -96.833702367355599, 29.596281114184436 ], [ -96.833381367173118, 29.595990114405605 ], [ -96.83333136772616, 29.595908113644736 ], [ -96.833300367301348, 29.595819113591347 ], [ -96.833293367831459, 29.595732113918348 ], [ -96.833331367463387, 29.595429113956961 ], [ -96.833369367833484, 29.595303113725304 ], [ -96.833469367220658, 29.595143114153316 ], [ -96.833526367976049, 29.595033113791501 ], [ -96.833589367278094, 29.594956113831692 ], [ -96.834054368079407, 29.594599113940735 ], [ -96.834614367238089, 29.594054113689491 ], [ -96.834809367623947, 29.593895113628584 ], [ -96.834923367953934, 29.5937851136784 ], [ -96.835375367585968, 29.593400113227599 ], [ -96.835520367624881, 29.593257113583302 ], [ -96.835671367816872, 29.593015113785736 ], [ -96.835728368093228, 29.592905113384447 ], [ -96.835772368247262, 29.592778113065044 ], [ -96.835791367817393, 29.592674113628242 ], [ -96.835803367456435, 29.592553112985094 ], [ -96.835797367963167, 29.591838113190274 ], [ -96.835879367575586, 29.591585112734162 ], [ -96.835910367880118, 29.591475113121447 ], [ -96.83596736802555, 29.591371112819196 ], [ -96.836011367653583, 29.591255112944236 ], [ -96.83604836769868, 29.590898112823854 ], [ -96.836042367523959, 29.590606112847826 ], [ -96.836048367836497, 29.590463113244255 ], [ -96.83608036783653, 29.590144112726694 ], [ -96.836105368107454, 29.58967111290043 ], [ -96.836212368031127, 29.589028112836541 ], [ -96.836318367549282, 29.588561112728598 ], [ -96.836369367997108, 29.588423112869759 ], [ -96.836501367938354, 29.588170112811291 ], [ -96.836614368344783, 29.588055112045893 ], [ -96.836828368214057, 29.587780112572581 ], [ -96.837142367561697, 29.587510112581011 ], [ -96.837319367831157, 29.58737311232311 ], [ -96.837482367925602, 29.587263111723843 ], [ -96.837809368144846, 29.587103112133871 ], [ -96.838092368190374, 29.586933112097924 ], [ -96.838306368592811, 29.586768112371857 ], [ -96.838822368369961, 29.586333112193405 ], [ -96.838954368678117, 29.586168111582055 ], [ -96.839011368017083, 29.586047111853087 ], [ -96.839111368005121, 29.585778112151672 ], [ -96.839224368162789, 29.585547111407362 ], [ -96.839268368389867, 29.585415111311885 ], [ -96.839294368251842, 29.585250112068866 ], [ -96.839281368917895, 29.584959111659465 ], [ -96.839212368525196, 29.584634111200849 ], [ -96.839098368470346, 29.584409111737244 ], [ -96.839042368153557, 29.584200111393027 ], [ -96.83902936787419, 29.584101111026662 ], [ -96.839010368812183, 29.584013111796111 ], [ -96.838935368253445, 29.58382611154741 ], [ -96.838884368650355, 29.583590110970203 ], [ -96.838834368032863, 29.58344711158783 ], [ -96.838783368552271, 29.583172111694296 ], [ -96.838752368699431, 29.583051110828421 ], [ -96.838582368619484, 29.582748110936816 ], [ -96.838349368020133, 29.582479111516236 ], [ -96.838223368068199, 29.582347110820713 ], [ -96.838091368153187, 29.582231111426594 ], [ -96.837978367756349, 29.582110110866637 ], [ -96.837651368309523, 29.581891111466955 ], [ -96.837286368103207, 29.5815501105957 ], [ -96.837179367930162, 29.581467110947916 ], [ -96.837091368108005, 29.58138511055871 ], [ -96.837003367949293, 29.581324111380873 ], [ -96.836537368042485, 29.580912111193037 ], [ -96.836430368052092, 29.580857110521109 ], [ -96.83619136767237, 29.58080211087093 ], [ -96.836046367281369, 29.580758111296131 ], [ -96.835751367680572, 29.580643110493618 ], [ -96.835606367197087, 29.580549110548777 ], [ -96.835468367554242, 29.58042811118667 ], [ -96.835185366822586, 29.580230111168436 ], [ -96.834801366908053, 29.579939110553632 ], [ -96.834461367494072, 29.579582110884662 ], [ -96.83436036662485, 29.579461110907701 ], [ -96.834172367155617, 29.579213110643551 ], [ -96.833989366842374, 29.578949110666912 ], [ -96.833310366623166, 29.578135110498803 ], [ -96.833184366353407, 29.577948110762893 ], [ -96.833089366799527, 29.577679110351578 ], [ -96.833070367003913, 29.577542109989494 ], [ -96.833070367086805, 29.577437110662284 ], [ -96.833047366771765, 29.577289109861802 ], [ -96.833045366917972, 29.57727811025687 ], [ -96.832894366809839, 29.576959110421075 ], [ -96.832819366519459, 29.576868110128796 ], [ -96.828084365395469, 29.576903110160259 ], [ -96.827965365773295, 29.576904110087867 ], [ -96.822389363616551, 29.576939110717824 ], [ -96.816695362338436, 29.576975110862261 ], [ -96.816052362330026, 29.576979110925407 ], [ -96.815409362213501, 29.576983110604687 ], [ -96.813430361167519, 29.576996111204018 ], [ -96.81255536121428, 29.57702711122921 ], [ -96.811681360989553, 29.577058111064893 ], [ -96.810537360772244, 29.57709911095348 ], [ -96.80941236105653, 29.577126111374522 ], [ -96.809394360581095, 29.577139111239056 ], [ -96.809183361070438, 29.577126110904175 ], [ -96.809102360869346, 29.577124111147459 ], [ -96.808851360602802, 29.577119111301705 ], [ -96.808803360472297, 29.577121110895803 ], [ -96.808415359889281, 29.577133111416718 ], [ -96.80148735870462, 29.577278111120457 ], [ -96.801299358896713, 29.57728211176844 ], [ -96.799123358193043, 29.577315111727298 ], [ -96.797839357386053, 29.57733511149593 ], [ -96.797271357375109, 29.577331111581465 ], [ -96.794655356654516, 29.57736411199097 ], [ -96.793139356192029, 29.577383111630287 ], [ -96.792995356773645, 29.577233111372692 ], [ -96.786238354788537, 29.570208110696445 ], [ -96.781357353520988, 29.565136110024586 ], [ -96.779497352994028, 29.563202109053194 ], [ -96.776439351638771, 29.560023108677015 ], [ -96.773382350989692, 29.556846108147106 ], [ -96.769793349862283, 29.553114108018249 ], [ -96.766206348696414, 29.549388106538625 ], [ -96.765497347969358, 29.548649106700125 ], [ -96.764794348072513, 29.547919106621993 ], [ -96.764333348117333, 29.547440106680821 ], [ -96.764256347556469, 29.547367106710741 ], [ -96.763642347910448, 29.546722106457956 ], [ -96.76129434656481, 29.544281106138254 ], [ -96.760373347119071, 29.543322106247874 ], [ -96.760214346512143, 29.543157105989511 ], [ -96.759293346821892, 29.542201105940563 ], [ -96.758213346525196, 29.541079105361145 ], [ -96.757805345718623, 29.540655105607502 ], [ -96.753597345231896, 29.53628210514508 ], [ -96.750261343558776, 29.532814104539867 ], [ -96.749910343393907, 29.532446104410319 ], [ -96.748724343446213, 29.531200103744439 ], [ -96.747538343254249, 29.529954103475369 ], [ -96.745349342540763, 29.527655103624191 ], [ -96.743159341931673, 29.525355102529694 ], [ -96.743044341380042, 29.525235102659853 ], [ -96.742929341731255, 29.525116102615268 ], [ -96.740941341403939, 29.523046102154236 ], [ -96.738976340824095, 29.520969102046067 ], [ -96.738713340482875, 29.52069310241993 ], [ -96.735430339756689, 29.517257101853708 ], [ -96.734257339216157, 29.516019101313884 ], [ -96.730374337342525, 29.511945100361128 ], [ -96.728386337044242, 29.509862100342712 ], [ -96.725601336110131, 29.506941099985699 ], [ -96.72349233533275, 29.504729099048344 ], [ -96.71921733428249, 29.500245098312991 ], [ -96.718368333980877, 29.499372098489204 ], [ -96.71399433325584, 29.494879097979172 ], [ -96.709689331934726, 29.490455096924652 ], [ -96.709360331835299, 29.490117097158212 ], [ -96.70896033122429, 29.489706096694434 ], [ -96.708538331611322, 29.489288096416519 ], [ -96.706884331222454, 29.487571096246132 ], [ -96.706162330780472, 29.486701096264042 ], [ -96.70544033022189, 29.486676096446384 ], [ -96.70480432991485, 29.486630096438187 ], [ -96.704317330305798, 29.486551096566739 ], [ -96.703282329705289, 29.486353096453666 ], [ -96.703138329722975, 29.486325096551795 ], [ -96.702734330117821, 29.486268096112443 ], [ -96.702692329271343, 29.486260096709476 ], [ -96.702466329524057, 29.486218096308722 ], [ -96.701701329053876, 29.486016096462649 ], [ -96.700052328837401, 29.485737096508853 ], [ -96.698925328445469, 29.485526096343396 ], [ -96.698881328940416, 29.48552709590242 ], [ -96.697084328042649, 29.485558096047988 ], [ -96.696450328672583, 29.485683096113743 ], [ -96.696304327899497, 29.485712096470174 ], [ -96.695566327773562, 29.4859550966613 ], [ -96.694573327513126, 29.486340097031686 ], [ -96.694381327902491, 29.486387096610244 ], [ -96.693231326927489, 29.486878096951969 ], [ -96.691978327099534, 29.487401097275669 ], [ -96.689794326838481, 29.488242097383932 ], [ -96.689524326495516, 29.488350096835461 ], [ -96.689260326444597, 29.488454096874307 ], [ -96.688268325884394, 29.488857096902827 ], [ -96.686796326022758, 29.489450097515711 ], [ -96.684348325647846, 29.490437097439131 ], [ -96.683945325647741, 29.490585098145729 ], [ -96.683032325197289, 29.490970097921668 ], [ -96.680717324466855, 29.491888097909364 ], [ -96.680057323984798, 29.492144098189705 ], [ -96.678375323670679, 29.4928270987932 ], [ -96.678164324281198, 29.492913098331371 ], [ -96.678071324304327, 29.492957098911621 ], [ -96.677876323846931, 29.49303809830003 ], [ -96.677708324160051, 29.493105098175342 ], [ -96.677585324011332, 29.493155098414643 ], [ -96.676123323710911, 29.493741098688012 ], [ -96.674946323576833, 29.494213098506826 ], [ -96.674550322581354, 29.494388099188818 ], [ -96.673809323064305, 29.494659099170889 ], [ -96.67265432274786, 29.495142099345337 ], [ -96.671439322691214, 29.495609099585042 ], [ -96.670176322385885, 29.496030099106985 ], [ -96.669147321444939, 29.496445099555977 ], [ -96.669033322010236, 29.496493099309802 ], [ -96.668262321264507, 29.496824099573775 ], [ -96.668097321574962, 29.496896099836079 ], [ -96.666969321450964, 29.497381100132497 ], [ -96.66584032123896, 29.497865099823638 ], [ -96.665822320775618, 29.497873099932807 ], [ -96.663512320750087, 29.498854100535358 ], [ -96.660503320175209, 29.500081100986947 ], [ -96.66034531988528, 29.500145100227851 ], [ -96.659707320049307, 29.500388100365395 ], [ -96.659537319922421, 29.500457100330735 ], [ -96.658858319168871, 29.50073110035791 ], [ -96.658233319000573, 29.500984100387626 ], [ -96.657607319299913, 29.501236100842785 ], [ -96.655043318808382, 29.502254100820309 ], [ -96.647751316955109, 29.505149102291071 ], [ -96.647040316713998, 29.50543510200297 ], [ -96.638838314679759, 29.508727102630026 ], [ -96.635803314270177, 29.50994510353399 ], [ -96.635396314068458, 29.510116103399859 ], [ -96.633698313866617, 29.510829103371695 ], [ -96.633589313759146, 29.510875103291923 ], [ -96.630005312707382, 29.512280104034492 ], [ -96.629434312662042, 29.512502103896708 ], [ -96.629032312856125, 29.512660103747944 ], [ -96.628390312433552, 29.512910104429384 ], [ -96.625146311289143, 29.514226104915856 ], [ -96.624026311690571, 29.514694104297085 ], [ -96.620972310211002, 29.515933104894994 ], [ -96.611873308094516, 29.519599106064458 ], [ -96.610321308418591, 29.520225106272999 ], [ -96.6087683076926, 29.520850106078736 ], [ -96.600633305176714, 29.524093107766081 ], [ -96.596941304697964, 29.525597107442561 ], [ -96.596596305131584, 29.525741107792367 ], [ -96.595171304597969, 29.526335108503734 ], [ -96.591223303922817, 29.527919108292089 ], [ -96.579700300504285, 29.532536109843893 ], [ -96.576766299617717, 29.533669110347663 ], [ -96.575568300073513, 29.534175110720945 ], [ -96.574414299940671, 29.534617110835022 ], [ -96.568603297797651, 29.537003111196103 ], [ -96.567854297820261, 29.537289111382094 ], [ -96.563904297043507, 29.538905112052021 ], [ -96.558869295955589, 29.540911112298545 ], [ -96.555361295158079, 29.542342112686779 ], [ -96.552417294672495, 29.543493113152859 ], [ -96.552130294245416, 29.543618112742394 ], [ -96.544130292291101, 29.546841113480063 ], [ -96.543878292300462, 29.546939113515112 ], [ -96.542227291640373, 29.547584113864993 ], [ -96.541683291937304, 29.547823114255891 ], [ -96.541946291508879, 29.548187114212567 ], [ -96.542084291697122, 29.548179114182243 ], [ -96.542214291767621, 29.548171114086006 ], [ -96.542791292489696, 29.547953113917064 ], [ -96.544470293037321, 29.547542114408635 ], [ -96.54458229255502, 29.547587114359228 ], [ -96.54475129223448, 29.547784113712098 ], [ -96.544238293038774, 29.548450114432768 ], [ -96.54421929272354, 29.548877114130796 ], [ -96.544243292782909, 29.552181114835516 ], [ -96.544276293222836, 29.554771115176337 ], [ -96.544385293538113, 29.561146117068489 ], [ -96.544408293415472, 29.561176117068172 ], [ -96.544712293658321, 29.561580116530799 ], [ -96.545013293767994, 29.561899117378978 ], [ -96.545138293321955, 29.562138117376154 ], [ -96.545179293367752, 29.563986117109419 ], [ -96.545203294031552, 29.56539711741226 ], [ -96.545242293580941, 29.567705117933517 ], [ -96.545317294284871, 29.571628118785693 ], [ -96.545402293756709, 29.576073119924072 ], [ -96.545404293822244, 29.576149119527908 ], [ -96.545558294475555, 29.583379121018559 ], [ -96.545677294350952, 29.5888981222087 ], [ -96.545680294368793, 29.589075122672231 ], [ -96.545684295217512, 29.589251122600089 ], [ -96.54569029505852, 29.589746122622259 ], [ -96.545692294259524, 29.589967122640587 ], [ -96.545697294586461, 29.590365123077813 ], [ -96.545723295278222, 29.591059122458415 ], [ -96.545774295050123, 29.59240412329936 ], [ -96.545849295424986, 29.596875124116682 ], [ -96.545889295348871, 29.599209124189109 ], [ -96.545953295087472, 29.602973124844585 ], [ -96.54594929584843, 29.604043125142447 ], [ -96.545947295505499, 29.604455125773374 ], [ -96.543963294460781, 29.604467125600205 ], [ -96.543740294626517, 29.604643125856143 ], [ -96.544002295181727, 29.60709612615052 ], [ -96.544033295282347, 29.607387125882379 ], [ -96.544486295505791, 29.611963127195263 ], [ -96.544521295853301, 29.612457127210646 ], [ -96.544531295492291, 29.613116127226977 ], [ -96.544384295003709, 29.613435126963267 ], [ -96.543962295541959, 29.613724127476463 ], [ -96.543922295612447, 29.613792127773763 ], [ -96.543858295003176, 29.613836127809794 ], [ -96.544163295373323, 29.613924127651522 ], [ -96.544484295107878, 29.614039127901663 ], [ -96.544792295860944, 29.614127127191342 ], [ -96.545037295267903, 29.614237127255812 ], [ -96.54510729583005, 29.614259127469939 ], [ -96.545308295248986, 29.614281127354293 ], [ -96.545553296098703, 29.614358127868663 ], [ -96.545981296034753, 29.614545127175518 ], [ -96.546195295758082, 29.614699127500053 ], [ -96.546327296449476, 29.614848127872406 ], [ -96.546377296210608, 29.614974127957989 ], [ -96.546371295515598, 29.615062127314822 ], [ -96.546352296355366, 29.615128127226392 ], [ -96.546365296299598, 29.615188127655475 ], [ -96.546421295928781, 29.615238127507009 ], [ -96.546440295822961, 29.615265127427605 ], [ -96.546440295547953, 29.615298127826247 ], [ -96.54633929612244, 29.615722128056753 ], [ -96.546163295787508, 29.616706127915851 ], [ -96.546138295824207, 29.616893128388508 ], [ -96.546144295933217, 29.617184127741812 ], [ -96.546125296450413, 29.617261127722124 ], [ -96.546006296220384, 29.617415127818333 ], [ -96.54591129613668, 29.61748112828732 ], [ -96.545836295707844, 29.617563127929401 ], [ -96.545810295993192, 29.617618128283397 ], [ -96.545804295968935, 29.617701127935263 ], [ -96.545823296172514, 29.617767127894417 ], [ -96.545854296102362, 29.617805127866045 ], [ -96.545987296383899, 29.617921128295695 ], [ -96.546414296449498, 29.618113127841781 ], [ -96.546723296421305, 29.618229127862072 ], [ -96.547289296670911, 29.618333128439641 ], [ -96.547585296112246, 29.618339127882773 ], [ -96.548031296160147, 29.618432128101521 ], [ -96.548453296568994, 29.61854312810792 ], [ -96.548749296432135, 29.618576128469762 ], [ -96.549013296874605, 29.618653128306157 ], [ -96.549183296923857, 29.618664128280631 ], [ -96.549510297158491, 29.61862512852403 ], [ -96.549548297351606, 29.618631128104862 ], [ -96.549598296624268, 29.618653127844862 ], [ -96.549674297062595, 29.618724128160235 ], [ -96.549755296933739, 29.618757127911614 ], [ -96.549780296801273, 29.618790128437219 ], [ -96.549818296548096, 29.618812128596591 ], [ -96.549906297270041, 29.618840128634659 ], [ -96.549938296851096, 29.618873128225509 ], [ -96.549976296908753, 29.618977127911595 ], [ -96.550045296962111, 29.619049127922427 ], [ -96.550284297631379, 29.6191151285798 ], [ -96.550340296811356, 29.619115128428536 ], [ -96.550410297007701, 29.61909312799532 ], [ -96.550542297770306, 29.619021127900286 ], [ -96.550687296777639, 29.618906128586939 ], [ -96.550775297366556, 29.618807128092371 ], [ -96.550882297135786, 29.618669127865836 ], [ -96.550914297770049, 29.618525128144778 ], [ -96.550945297615371, 29.618472127970996 ], [ -96.551045297707788, 29.618351128260507 ], [ -96.55113329692243, 29.618274127742588 ], [ -96.551159297753358, 29.618230128355599 ], [ -96.55116529688047, 29.618092127947424 ], [ -96.551196297152643, 29.618065127673372 ], [ -96.551253297562937, 29.618026128398938 ], [ -96.551656297732151, 29.617911127885428 ], [ -96.55185729794286, 29.617834128451001 ], [ -96.552298298149708, 29.61762512757187 ], [ -96.552726297989366, 29.617323127906911 ], [ -96.552895298265184, 29.61721312800368 ], [ -96.553254298286816, 29.617009127717719 ], [ -96.553355297867171, 29.616965127356767 ], [ -96.55351829822682, 29.616822127641409 ], [ -96.553613297663361, 29.616680127281185 ], [ -96.553821298280297, 29.616438127527218 ], [ -96.553896297790089, 29.616366127302886 ], [ -96.553984298147697, 29.616256127321872 ], [ -96.554072298399078, 29.6161681275162 ], [ -96.554217297630785, 29.616047127587468 ], [ -96.554601298344963, 29.615861127248664 ], [ -96.554685297984477, 29.615829127556449 ], [ -96.55476429821239, 29.615800127397542 ], [ -96.555048298738058, 29.615762127201375 ], [ -96.555224298572497, 29.615723127188307 ], [ -96.555331298229433, 29.615712127026804 ], [ -96.55547629847598, 29.615712127052568 ], [ -96.555538298672772, 29.615729127574902 ], [ -96.555878298516248, 29.615949127395147 ], [ -96.555954298178861, 29.615976127286842 ], [ -96.55605429833102, 29.615998127202975 ], [ -96.556212298365878, 29.616015127067577 ], [ -96.556293298093053, 29.616048127393807 ], [ -96.55634429880655, 29.616086127322841 ], [ -96.556407298561737, 29.616158127298345 ], [ -96.556432298150895, 29.616202127584099 ], [ -96.556488298716062, 29.616383127252632 ], [ -96.556545298894278, 29.61648212757062 ], [ -96.556690298858385, 29.6166081280209 ], [ -96.556816299027247, 29.616828127528223 ], [ -96.556992298973256, 29.617015127842407 ], [ -96.557180298630144, 29.617191127537847 ], [ -96.557319299320682, 29.617285127448532 ], [ -96.557476298683881, 29.617439127389869 ], [ -96.557627298581309, 29.617615127954387 ], [ -96.557873298818322, 29.617802127543271 ], [ -96.558036299075809, 29.617945127885346 ], [ -96.558288298883383, 29.618115128179806 ], [ -96.558520299075781, 29.618318128020022 ], [ -96.558697299290102, 29.6185051279265 ], [ -96.558797299247331, 29.618648127741068 ], [ -96.558974299586879, 29.61881912841552 ], [ -96.559420299873395, 29.619061128305226 ], [ -96.559527299151014, 29.619044127881121 ], [ -96.559678299171125, 29.618912127709283 ], [ -96.559861299227023, 29.618912128136017 ], [ -96.560182299229183, 29.618995127534127 ], [ -96.560421299884169, 29.619000127976054 ], [ -96.560616299535184, 29.618967128325039 ], [ -96.560685299392688, 29.618929128058895 ], [ -96.560742300279344, 29.618885127890977 ], [ -96.560798300107436, 29.6188251277718 ], [ -96.560924300187551, 29.61873712759666 ], [ -96.561018299465715, 29.618693127480892 ], [ -96.561446300279329, 29.61852812738142 ], [ -96.561560300444683, 29.618500127374727 ], [ -96.561780299889747, 29.61841812760386 ], [ -96.562246299971122, 29.618319127477513 ], [ -96.562390300335878, 29.618324127536589 ], [ -96.562497300447717, 29.618357127420719 ], [ -96.562522300219186, 29.618379128106984 ], [ -96.563051300272235, 29.618682127629121 ], [ -96.563189300765217, 29.61874812768508 ], [ -96.563271300005908, 29.618797128073318 ], [ -96.563567300252913, 29.618935127537167 ], [ -96.563781300945095, 29.618984127455143 ], [ -96.563951300980207, 29.619050128036211 ], [ -96.564020301064915, 29.619067127430782 ], [ -96.564083300294612, 29.619072127647556 ], [ -96.564297300898417, 29.619017128095695 ], [ -96.564366300762174, 29.619012128030697 ], [ -96.564649300706279, 29.619083128051088 ], [ -96.564920301266241, 29.619089127825227 ], [ -96.565058301352721, 29.619061127453627 ], [ -96.56510230113372, 29.619028128154568 ], [ -96.565171301376878, 29.618935127879624 ], [ -96.565241301173032, 29.618885128132266 ], [ -96.565316300483474, 29.618841127710457 ], [ -96.565417301055859, 29.618819127547177 ], [ -96.565543301430452, 29.618814127785164 ], [ -96.565826301239341, 29.618830127584587 ], [ -96.565964301055104, 29.618858127546194 ], [ -96.566247300951673, 29.618891127899449 ], [ -96.566518301440993, 29.618907127312042 ], [ -96.566713301478103, 29.618880127402811 ], [ -96.566895301165133, 29.618885127629394 ], [ -96.567015301893179, 29.618913127757594 ], [ -96.567153301877511, 29.619001127439695 ], [ -96.567210301196283, 29.619028127379408 ], [ -96.567273301924928, 29.61904512793388 ], [ -96.567336301278729, 29.619050127521589 ], [ -96.567468301620139, 29.61904512761534 ], [ -96.5675623015957, 29.619056127894712 ], [ -96.567707301179809, 29.619116128150463 ], [ -96.567770302066847, 29.619133127568592 ], [ -96.567984301957537, 29.619138127596784 ], [ -96.568123301778456, 29.61918212785174 ], [ -96.568267301836954, 29.619270127993278 ], [ -96.568550301616568, 29.619397128145881 ], [ -96.568632301703204, 29.619474127620439 ], [ -96.568884302090638, 29.619716127403866 ], [ -96.568972301891662, 29.619782128172872 ], [ -96.569249302129265, 29.619935127763828 ], [ -96.569343302302642, 29.619969127757546 ], [ -96.569419301675595, 29.619979127446168 ], [ -96.569607301637063, 29.620067127419603 ], [ -96.569928301845934, 29.620309128263706 ], [ -96.570048302213124, 29.620364128092493 ], [ -96.570180302176254, 29.620392127506943 ], [ -96.570337301870012, 29.620408127622518 ], [ -96.570740302281152, 29.620529127960502 ], [ -96.570828301959622, 29.620540127997778 ], [ -96.571187302134788, 29.62055112806895 ], [ -96.571627302247265, 29.620590127437449 ], [ -96.571873302999649, 29.620628128090026 ], [ -96.572150303134521, 29.620689127585212 ], [ -96.57269130257373, 29.620837128024192 ], [ -96.572980302491501, 29.620881128119766 ], [ -96.573333303280478, 29.620947127655086 ], [ -96.573786302899578, 29.621052127660334 ], [ -96.574258302879613, 29.621222128031338 ], [ -96.574547303442884, 29.621266128329079 ], [ -96.574704303901967, 29.621332127604447 ], [ -96.574774303448635, 29.621381128031501 ], [ -96.574931303288722, 29.62145312836855 ], [ -96.575428304051883, 29.621645128244364 ], [ -96.575535303302132, 29.621755127876568 ], [ -96.57557930342324, 29.621821128452783 ], [ -96.575755303685654, 29.622019128426931 ], [ -96.575868303593495, 29.622267128415572 ], [ -96.57589430384634, 29.622426127805586 ], [ -96.575906303385779, 29.622618128258612 ], [ -96.575894303335474, 29.622860127853109 ], [ -96.575881303510485, 29.622932127811453 ], [ -96.575831303803625, 29.623047128415546 ], [ -96.575655303413583, 29.623328127899459 ], [ -96.575541304228778, 29.623559128817945 ], [ -96.575472304235348, 29.623652128811443 ], [ -96.575315303910727, 29.623801128443464 ], [ -96.575233303904795, 29.62391112883186 ], [ -96.575214303895081, 29.623960128270788 ], [ -96.575202304023406, 29.62406412846596 ], [ -96.575214304060964, 29.624191128529549 ], [ -96.57521430374311, 29.624356128440784 ], [ -96.575189303410738, 29.624537129008459 ], [ -96.575139304196298, 29.624697128582568 ], [ -96.57513230322725, 29.624746128813339 ], [ -96.575132303435581, 29.624801128182025 ], [ -96.575183304163872, 29.624983128479006 ], [ -96.57525830422847, 29.625101128995784 ], [ -96.575352303852156, 29.625178128490674 ], [ -96.575421304015038, 29.625211128759936 ], [ -96.57562930375569, 29.625277128343704 ], [ -96.57577430392918, 29.625288128744721 ], [ -96.575849304147496, 29.625310129123413 ], [ -96.575937303556501, 29.625365128608788 ], [ -96.576139303495381, 29.625552128460633 ], [ -96.576296304249382, 29.625679129057431 ], [ -96.576359304024905, 29.625778128750937 ], [ -96.576390304449504, 29.625855129136657 ], [ -96.576403303626989, 29.625942128550303 ], [ -96.576397304017462, 29.626168128688118 ], [ -96.576302304231149, 29.626377129339446 ], [ -96.576045303697697, 29.626690129044167 ], [ -96.575893303743527, 29.626932128710834 ], [ -96.575705304032567, 29.627196128698863 ], [ -96.575541304319472, 29.627570129548747 ], [ -96.575460303914085, 29.627818129255502 ], [ -96.575359303909892, 29.628131129729052 ], [ -96.57532130350954, 29.628318129735714 ], [ -96.575315303868038, 29.628433129386448 ], [ -96.575340303958143, 29.628510129558141 ], [ -96.575384303704723, 29.628615129694598 ], [ -96.575459304405257, 29.628725129678184 ], [ -96.575585304009536, 29.628879129469766 ], [ -96.575711303622441, 29.628983129435287 ], [ -96.575913303874614, 29.629093129066344 ], [ -96.576303303881346, 29.62912612948017 ], [ -96.576750303792679, 29.628983129532674 ], [ -96.576995304123457, 29.628977129101056 ], [ -96.57708930460285, 29.628983129198634 ], [ -96.57736030444282, 29.629054129747516 ], [ -96.577480304737108, 29.629115129286514 ], [ -96.577549304816046, 29.629164129814452 ], [ -96.577606304730651, 29.62922512966438 ], [ -96.577662305041954, 29.629269129881411 ], [ -96.577731304884239, 29.629417129730271 ], [ -96.577794304568116, 29.62960912938496 ], [ -96.577864304970404, 29.629741129563158 ], [ -96.577870304204538, 29.629906129455239 ], [ -96.57790830442265, 29.630049129904659 ], [ -96.578355304695307, 29.630803129467154 ], [ -96.578506304843188, 29.630995129812117 ], [ -96.578632304811919, 29.63109912958814 ], [ -96.578871304535653, 29.631237130189028 ], [ -96.579248304931767, 29.631429129446296 ], [ -96.579720305517171, 29.631781129812985 ], [ -96.579909304855363, 29.631902129954973 ], [ -96.580004305409133, 29.63192912991785 ], [ -96.580092305696866, 29.631973130041715 ], [ -96.580343305858634, 29.632160129788787 ], [ -96.580432305001807, 29.632199130087969 ], [ -96.580721305349712, 29.632276129931757 ], [ -96.581074306041998, 29.632309129661181 ], [ -96.581193305850547, 29.632303130144727 ], [ -96.581331306003491, 29.632281129509629 ], [ -96.581445305635441, 29.632232129494238 ], [ -96.581482305594491, 29.632155130096006 ], [ -96.581483305440216, 29.632105129604682 ], [ -96.581419306115251, 29.63186913004575 ], [ -96.581464305677528, 29.631379129526483 ], [ -96.581489305519909, 29.631280129819725 ], [ -96.581583305732181, 29.631159129634018 ], [ -96.581696305275685, 29.631088129347155 ], [ -96.581917305573896, 29.630972129961457 ], [ -96.582168306183902, 29.630917129422269 ], [ -96.582584305695704, 29.630890129179502 ], [ -96.583074305949836, 29.630950129472765 ], [ -96.58321330577526, 29.63098912926726 ], [ -96.583433305653614, 29.631077129999568 ], [ -96.58354030654057, 29.631126129376767 ], [ -96.583653305802159, 29.63120313002532 ], [ -96.583855306003059, 29.631291129974102 ], [ -96.584000306589758, 29.631297129809507 ], [ -96.584207305983583, 29.631340129216149 ], [ -96.584295305883913, 29.631351129205392 ], [ -96.584390306009169, 29.631351130015553 ], [ -96.584440306261115, 29.631318129889067 ], [ -96.584516306463897, 29.631214129979867 ], [ -96.58452830614408, 29.631175129471487 ], [ -96.584522306037115, 29.631088129255762 ], [ -96.584497306444064, 29.631027129706737 ], [ -96.58449030658106, 29.630923129955121 ], [ -96.584547306225758, 29.630829129248362 ], [ -96.584623305953372, 29.630752129805693 ], [ -96.584692305991354, 29.630664129428862 ], [ -96.584792306104006, 29.630576129793489 ], [ -96.584969306807508, 29.630477129672936 ], [ -96.585044306709648, 29.630466129216863 ], [ -96.585277306422412, 29.63048312983641 ], [ -96.585447307079363, 29.630593129494851 ], [ -96.585780306635655, 29.630851129638085 ], [ -96.585976306460324, 29.630988129707333 ], [ -96.5860383063482, 29.631038129358682 ], [ -96.586171306992441, 29.6311971291099 ], [ -96.586202306292577, 29.63125212961728 ], [ -96.586209306538393, 29.631472129808177 ], [ -96.586272306327302, 29.631692130026138 ], [ -96.586259307184861, 29.631840130011742 ], [ -96.586221307118578, 29.631879129242368 ], [ -96.586007306380566, 29.631972129290038 ], [ -96.585944306799547, 29.632049129326582 ], [ -96.585925307072017, 29.632088130035775 ], [ -96.585938306988339, 29.632176129969523 ], [ -96.585963306287042, 29.632242129704672 ], [ -96.586372306989304, 29.63272013006592 ], [ -96.586385307134947, 29.632775129907397 ], [ -96.58637930648112, 29.632962130168014 ], [ -96.586410306819502, 29.633160129832802 ], [ -96.586612306812867, 29.633715129910641 ], [ -96.58673830732684, 29.633990130426351 ], [ -96.586782306708102, 29.634111130527906 ], [ -96.58681330744011, 29.634281130509198 ], [ -96.586813307328484, 29.634386130067178 ], [ -96.586857307016842, 29.634628130185845 ], [ -96.586851307339018, 29.634809129975455 ], [ -96.586902306703095, 29.634974129876454 ], [ -96.587141307243968, 29.635249130196449 ], [ -96.587374307195233, 29.635458130176175 ], [ -96.587707306915249, 29.635810130676514 ], [ -96.587821307742217, 29.63589813027771 ], [ -96.588054307141817, 29.635980130391168 ], [ -96.588280307901556, 29.636101130737192 ], [ -96.588450307609506, 29.636211130701167 ], [ -96.588689307674883, 29.63627113040701 ], [ -96.588966307446526, 29.636271130533249 ], [ -96.589023307726706, 29.636293130248166 ], [ -96.589186307443782, 29.636414130408021 ], [ -96.589331308116968, 29.636541130587247 ], [ -96.589545307427471, 29.63663413058531 ], [ -96.589633307697795, 29.636629130092057 ], [ -96.589898307598645, 29.63653513022177 ], [ -96.58998030817618, 29.636519130676941 ], [ -96.59011830817586, 29.636530130841514 ], [ -96.590332308066138, 29.63656213011279 ], [ -96.590401308349968, 29.636584130475722 ], [ -96.590496308116045, 29.636656130827838 ], [ -96.5906093078178, 29.636766130694838 ], [ -96.590854308609437, 29.636958130603659 ], [ -96.591031308555372, 29.637030130895567 ], [ -96.591112308194496, 29.637123130671892 ], [ -96.591251308309523, 29.637233130405452 ], [ -96.591408308152978, 29.637337130396634 ], [ -96.591981308380369, 29.637546130903633 ], [ -96.592132308565567, 29.637557130901609 ], [ -96.592277308804015, 29.637502130277412 ], [ -96.592321308734441, 29.63749713069328 ], [ -96.592535308330525, 29.637530130810273 ], [ -96.592610308600726, 29.637563130517204 ], [ -96.592661308436874, 29.637601130397673 ], [ -96.592711308529331, 29.637656130714252 ], [ -96.592762309030476, 29.637750130407028 ], [ -96.592818309048951, 29.637810130772984 ], [ -96.592938308506234, 29.637848130513504 ], [ -96.593152308696119, 29.637947130439542 ], [ -96.593404309190049, 29.638101130893155 ], [ -96.593776309166273, 29.638351130381619 ], [ -96.593995308622311, 29.638508130895982 ], [ -96.59403930912147, 29.63852413079686 ], [ -96.59419730930891, 29.63851313065749 ], [ -96.59426030900822, 29.6384971308091 ], [ -96.594323309018606, 29.638458131061018 ], [ -96.594373309236119, 29.638370130985749 ], [ -96.594404309490287, 29.638271130578445 ], [ -96.59443630962889, 29.638211130423816 ], [ -96.594530309660456, 29.638074130971127 ], [ -96.594650309159732, 29.638074130539149 ], [ -96.594946309465087, 29.638167130564643 ], [ -96.595040308866658, 29.638216130488299 ], [ -96.595090309065924, 29.638288130259248 ], [ -96.595109309855999, 29.638431131134567 ], [ -96.595128309166611, 29.638491130826786 ], [ -96.595179308873483, 29.63854113050845 ], [ -96.595273309689944, 29.638585130701589 ], [ -96.595374309471055, 29.638601130765213 ], [ -96.595518309466712, 29.638607130623729 ], [ -96.595594309055627, 29.638634130830443 ], [ -96.595670309437111, 29.638706130830048 ], [ -96.595714309233529, 29.638782130524486 ], [ -96.595764309564004, 29.638925130359912 ], [ -96.595802309310656, 29.63898613090478 ], [ -96.595871309141344, 29.639035130613486 ], [ -96.596085309608952, 29.639035130470504 ], [ -96.596223309581006, 29.639074130924541 ], [ -96.596305309980494, 29.639107130578989 ], [ -96.596375309997597, 29.639151130354342 ], [ -96.596500309362952, 29.639266130702278 ], [ -96.596708310165937, 29.63939813069798 ], [ -96.596790309801648, 29.639426130454204 ], [ -96.59688430963277, 29.639420130982408 ], [ -96.596960310137177, 29.639403130518513 ], [ -96.597155309484549, 29.639299131140881 ], [ -96.597249310060846, 29.639288130948923 ], [ -96.597293309711361, 29.63931013104412 ], [ -96.597369310342501, 29.639376130549092 ], [ -96.597388309829142, 29.639409130363294 ], [ -96.597457310504424, 29.639453130571713 ], [ -96.597684309969324, 29.639480130563488 ], [ -96.597797309867616, 29.639475131133683 ], [ -96.598269310070165, 29.639392131175466 ], [ -96.598426310012556, 29.639381130645667 ], [ -96.598514310188122, 29.639348131168809 ], [ -96.598590309943788, 29.639354130527849 ], [ -96.598653310667416, 29.639392130372215 ], [ -96.598697310506296, 29.639442130333617 ], [ -96.598760310824417, 29.639474130627196 ], [ -96.59883631018414, 29.639474130346816 ], [ -96.598898309942967, 29.639463130716539 ], [ -96.598987310030338, 29.639430130818145 ], [ -96.599106310535333, 29.639408131069302 ], [ -96.599238310093867, 29.639447130855775 ], [ -96.599824310945436, 29.639744130641596 ], [ -96.600201310655606, 29.639875130362014 ], [ -96.600384310827636, 29.639925130914197 ], [ -96.600472311299413, 29.639974130387493 ], [ -96.600529310474286, 29.640029130388232 ], [ -96.600566310357451, 29.640090130534386 ], [ -96.600554311274777, 29.640139130559483 ], [ -96.600522310739336, 29.640194130709581 ], [ -96.600069310268353, 29.640585130810951 ], [ -96.599956310198564, 29.640722130829463 ], [ -96.599868310738174, 29.640948131026274 ], [ -96.599799310489203, 29.641168131219345 ], [ -96.59979331068412, 29.641212130877467 ], [ -96.599799310409153, 29.641250131426652 ], [ -96.59993131045951, 29.641316130871399 ], [ -96.600007310419755, 29.641321131289512 ], [ -96.600233310921752, 29.641288131232439 ], [ -96.600391310361189, 29.641250131438465 ], [ -96.600554310381327, 29.641283131087864 ], [ -96.600668310863924, 29.641338131169363 ], [ -96.601146310496375, 29.641481131533173 ], [ -96.601366310589086, 29.641558130811244 ], [ -96.601574311559446, 29.641667131272989 ], [ -96.601687311598994, 29.641750130888248 ], [ -96.601788311040181, 29.641882131386371 ], [ -96.601927310981097, 29.642118131297543 ], [ -96.60197731121427, 29.642250131261584 ], [ -96.601971311100058, 29.642366131098626 ], [ -96.601939311126728, 29.642459130999207 ], [ -96.601889311385051, 29.642558130987037 ], [ -96.601637311552821, 29.64290413109774 ], [ -96.601612310904798, 29.642981131358507 ], [ -96.601392310949066, 29.643212131282048 ], [ -96.601354310738131, 29.643278131438347 ], [ -96.601348311082006, 29.643454131476318 ], [ -96.601367311128129, 29.643504131906095 ], [ -96.601380311048047, 29.643691131207476 ], [ -96.601311311367425, 29.643856131355705 ], [ -96.601254311100575, 29.643955131995821 ], [ -96.601178311612685, 29.644026131180276 ], [ -96.601147310906427, 29.644076131743496 ], [ -96.601134311485936, 29.644147131802043 ], [ -96.601160310629922, 29.644230132091376 ], [ -96.601260311195929, 29.644356131739393 ], [ -96.601314310801897, 29.644399131828404 ], [ -96.601323311038144, 29.644406131860809 ], [ -96.60165131125818, 29.644911131648069 ], [ -96.601689311567839, 29.645027131885421 ], [ -96.601701311508137, 29.645142132040316 ], [ -96.601695311289504, 29.645285132152768 ], [ -96.601613311467602, 29.645395131686442 ], [ -96.601664311274462, 29.64570813201447 ], [ -96.601664310907097, 29.645780132065738 ], [ -96.601695311553158, 29.645879131978322 ], [ -96.601865310943566, 29.64598313175668 ], [ -96.60187131102272, 29.646044131959115 ], [ -96.60182831128121, 29.646159132242243 ], [ -96.60181231182338, 29.646299132134189 ], [ -96.601796310896162, 29.646434132429558 ], [ -96.601821311137797, 29.646528131718917 ], [ -96.601865311924414, 29.646638132474664 ], [ -96.60207331187128, 29.646868132082389 ], [ -96.602117311858208, 29.646934132053786 ], [ -96.602117311113318, 29.647000132594851 ], [ -96.602036311229639, 29.647319132010708 ], [ -96.602048311768542, 29.647611131933665 ], [ -96.602092311054292, 29.647688132725722 ], [ -96.602162311322687, 29.647776132606221 ], [ -96.602237311066816, 29.647803132577131 ], [ -96.602414311313481, 29.647831132738567 ], [ -96.602476311675773, 29.647863132146426 ], [ -96.602533311317984, 29.647940132780018 ], [ -96.602558311375645, 29.648012131998396 ], [ -96.602615311385463, 29.648072132283801 ], [ -96.602640311727711, 29.648166132265988 ], [ -96.602653312045646, 29.648270132149811 ], [ -96.602634311528988, 29.648369132444525 ], [ -96.602640311390402, 29.648452132436063 ], [ -96.602703311708282, 29.648567132419 ], [ -96.602892311717369, 29.648688132876618 ], [ -96.603264311708855, 29.648809132742993 ], [ -96.60333931158722, 29.648781132400035 ], [ -96.603616311522231, 29.648836132865341 ], [ -96.603729311758713, 29.648847132271701 ], [ -96.603918312124691, 29.648831132489022 ], [ -96.604390312151381, 29.648682132514242 ], [ -96.604887312776341, 29.648599131979388 ], [ -96.604957311825103, 29.648621132515903 ], [ -96.605398312369829, 29.649122132458913 ], [ -96.605649312860805, 29.649479132320867 ], [ -96.605712312335299, 29.649534132477001 ], [ -96.605694312160637, 29.649622132138191 ], [ -96.605587312325696, 29.649688132937772 ], [ -96.605574312385201, 29.649737132519697 ], [ -96.605574312232108, 29.649814132913495 ], [ -96.605631312222172, 29.649875132652014 ], [ -96.605687312732456, 29.649957132479905 ], [ -96.605776312595196, 29.65004013307756 ], [ -96.605857312441884, 29.650144133067943 ], [ -96.60597731242072, 29.650485132562284 ], [ -96.606046313056282, 29.650622132391 ], [ -96.606216312395986, 29.650831133204107 ], [ -96.606267312337849, 29.65087513245123 ], [ -96.606361313073791, 29.65093013248109 ], [ -96.606487312547387, 29.650974132480211 ], [ -96.606613313030692, 29.651002132899585 ], [ -96.607224312745288, 29.651106132474407 ], [ -96.607520313442194, 29.651188132486663 ], [ -96.607759313366955, 29.651287132417579 ], [ -96.607822312684988, 29.651326132943566 ], [ -96.607954313127209, 29.651446132703484 ], [ -96.608099313531767, 29.651507132530593 ], [ -96.608275313312362, 29.651562132458277 ], [ -96.608398313212689, 29.651571132510544 ], [ -96.608420313183572, 29.65157313278829 ], [ -96.608646313838975, 29.651567132986102 ], [ -96.608854313139219, 29.651551132541258 ], [ -96.609093313168202, 29.651490132661024 ], [ -96.609288313735604, 29.651430132561032 ], [ -96.60973531405746, 29.651253132781598 ], [ -96.609842313330574, 29.651220132960351 ], [ -96.609962313611703, 29.651209133065354 ], [ -96.610069313533216, 29.651215133185659 ], [ -96.610163313696432, 29.651231133088093 ], [ -96.6102263140058, 29.651259132570669 ], [ -96.610264313531516, 29.651292132905223 ], [ -96.610295313285519, 29.651336132730556 ], [ -96.610314313524881, 29.651396132599238 ], [ -96.610340313317991, 29.651633133204996 ], [ -96.610365314113849, 29.651715132606835 ], [ -96.610428313913303, 29.651825132721189 ], [ -96.610522314139686, 29.651918132649168 ], [ -96.610686313452661, 29.652012132759364 ], [ -96.610825314337063, 29.652067133144683 ], [ -96.611171314028752, 29.652100132769529 ], [ -96.611234313719507, 29.652138132649277 ], [ -96.611278313745629, 29.652199132537053 ], [ -96.611316313995587, 29.652298132927928 ], [ -96.611335314222018, 29.652419132531918 ], [ -96.611335313936038, 29.652528132612677 ], [ -96.61128431442998, 29.65279813318676 ], [ -96.611184314206781, 29.653529132763989 ], [ -96.611209314441439, 29.653579133031716 ], [ -96.611234314322161, 29.653606133565191 ], [ -96.611367313787269, 29.65363913291436 ], [ -96.611461314439623, 29.653639133310794 ], [ -96.611719314303443, 29.653579132800623 ], [ -96.61181431382937, 29.653584133169982 ], [ -96.611883314394959, 29.653622133269575 ], [ -96.611927314694384, 29.653727133429953 ], [ -96.611946314646133, 29.653815133168511 ], [ -96.611933314062327, 29.654134133120294 ], [ -96.611952314696282, 29.654310132988265 ], [ -96.61200931485071, 29.654552133235761 ], [ -96.612104313976246, 29.654793133565683 ], [ -96.612148314731627, 29.654865133012031 ], [ -96.612192313900948, 29.654914133604731 ], [ -96.61226131462162, 29.654947133034103 ], [ -96.612356314657859, 29.654958133359106 ], [ -96.612463314201946, 29.654958133832867 ], [ -96.612614314502636, 29.654936133046 ], [ -96.612941314337846, 29.655024133302657 ], [ -96.613212314426477, 29.655134133195087 ], [ -96.613375314413489, 29.655211133390729 ], [ -96.613520314363043, 29.655299133686707 ], [ -96.613552315266404, 29.655326133115999 ], [ -96.613684315237165, 29.655793133950777 ], [ -96.613716315070633, 29.656052133732 ], [ -96.613722314461995, 29.656211134050888 ], [ -96.613710314514648, 29.656332133782392 ], [ -96.613672315157103, 29.656431133253903 ], [ -96.61362131444983, 29.656519133904609 ], [ -96.613565314701958, 29.656596133972553 ], [ -96.613502314318183, 29.656651133976339 ], [ -96.613445314653163, 29.656690134094173 ], [ -96.613206314257454, 29.656800133726165 ], [ -96.613080314997475, 29.656871133365296 ], [ -96.612992314486533, 29.656937134013528 ], [ -96.612740314301178, 29.65719613375359 ], [ -96.612621314460355, 29.657278134035266 ], [ -96.612401314888999, 29.657372134128305 ], [ -96.612275314568052, 29.657465133693758 ], [ -96.612250314989438, 29.65750913411755 ], [ -96.612237314755774, 29.657581133902575 ], [ -96.612243314964516, 29.657713134051182 ], [ -96.612514314249964, 29.657839133685499 ], [ -96.612565314122406, 29.657883133954932 ], [ -96.612609314336368, 29.657960133598383 ], [ -96.612659314465233, 29.658164133783981 ], [ -96.612716314546944, 29.658306134505764 ], [ -96.612754315083265, 29.658526133973105 ], [ -96.612798314819429, 29.658955134495297 ], [ -96.612830314985089, 29.659049134184045 ], [ -96.612893315089138, 29.659131134495262 ], [ -96.613050314809001, 29.659247134417104 ], [ -96.61322031438489, 29.659340134288296 ], [ -96.614555315537373, 29.659961134370093 ], [ -96.614781314862441, 29.660049134109158 ], [ -96.614970315190675, 29.660098134056955 ], [ -96.61510931521498, 29.660109134619514 ], [ -96.615203315149714, 29.660103134632084 ], [ -96.615241315758709, 29.660092134792393 ], [ -96.615707315764951, 29.65973513439581 ], [ -96.615788315026847, 29.659680134444955 ], [ -96.615883315782071, 29.659652133999156 ], [ -96.615965315100226, 29.659553134178296 ], [ -96.616128315754082, 29.6594761342614 ], [ -96.616670315335554, 29.659647134270561 ], [ -96.616777315536808, 29.659707134664195 ], [ -96.616884316123688, 29.659734134437215 ], [ -96.616959315471888, 29.65971213401874 ], [ -96.617060315459398, 29.659635133987489 ], [ -96.617154316026316, 29.659608134605342 ], [ -96.61726131595961, 29.659624134187901 ], [ -96.61748231602661, 29.659800134152857 ], [ -96.617639316130806, 29.659844134380229 ], [ -96.617759315744621, 29.659893134383324 ], [ -96.61797331591282, 29.659959133824486 ], [ -96.618023316160873, 29.659992134123957 ], [ -96.618055316432859, 29.660042133849966 ], [ -96.618193315832812, 29.660196134343785 ], [ -96.618288315935843, 29.660267134669876 ], [ -96.618376315819859, 29.660317134193779 ], [ -96.618445315795427, 29.660322134700447 ], [ -96.618559316425277, 29.660316134372032 ], [ -96.618741316750587, 29.660278134408788 ], [ -96.61879231638251, 29.660283134048871 ], [ -96.618873316822175, 29.660300134572019 ], [ -96.61910631597236, 29.66038213465918 ], [ -96.619308316697996, 29.660498134050044 ], [ -96.6194273160053, 29.660591134075698 ], [ -96.619553316589901, 29.660767134272628 ], [ -96.619610316463934, 29.660871134430007 ], [ -96.619705316408798, 29.660981134559236 ], [ -96.619812316547211, 29.661097134411062 ], [ -96.619913316690628, 29.661168134614432 ], [ -96.620032316319566, 29.661223134030415 ], [ -96.620158316245821, 29.661262134735932 ], [ -96.620353317098363, 29.661344134882039 ], [ -96.620523317307502, 29.661437134288057 ], [ -96.620763316942814, 29.661630134358067 ], [ -96.620876316568683, 29.661646134735172 ], [ -96.62102131664814, 29.661695134680819 ], [ -96.621455317088106, 29.661915134173544 ], [ -96.621619316936616, 29.662086134589092 ], [ -96.621858317423516, 29.66220713429416 ], [ -96.62192831753066, 29.66226713471249 ], [ -96.622129317485872, 29.662492134968446 ], [ -96.622192317377639, 29.662586134937968 ], [ -96.622243317581052, 29.662690134699876 ], [ -96.622394317576067, 29.663124134572378 ], [ -96.622488317191682, 29.663317134908283 ], [ -96.622558317112407, 29.66342113438861 ], [ -96.622791317592842, 29.663718134480863 ], [ -96.622948317555284, 29.663998134713136 ], [ -96.623547317420048, 29.66474613526513 ], [ -96.623679317690829, 29.664757135208941 ], [ -96.623799317264357, 29.664795135147234 ], [ -96.623881317789468, 29.664834134653557 ], [ -96.624410317872929, 29.665251135100974 ], [ -96.624706318496408, 29.665471134972268 ], [ -96.624825318328377, 29.6655321347776 ], [ -96.624932317955412, 29.665592135581086 ], [ -96.625006317700908, 29.665615134764224 ], [ -96.625572318501867, 29.665901135097617 ], [ -96.626013318128699, 29.666006135160661 ], [ -96.626504319030943, 29.66610013498892 ], [ -96.627121318373412, 29.666259135242505 ], [ -96.627209318218533, 29.666270135187958 ], [ -96.627291318489341, 29.666271135308033 ], [ -96.6274233184986, 29.666254135115434 ], [ -96.62765031839875, 29.666216135230226 ], [ -96.628065319361653, 29.666117135134378 ], [ -96.628412319283626, 29.666018134966887 ], [ -96.628739318578255, 29.665947135258779 ], [ -96.629022318738393, 29.665898135012441 ], [ -96.629180319128182, 29.665881135074152 ], [ -96.629331318886798, 29.66588113479327 ], [ -96.62946931947603, 29.665892135058655 ], [ -96.629589318925611, 29.665920135213913 ], [ -96.629696319783037, 29.665958135202938 ], [ -96.62986031922847, 29.666046134833113 ], [ -96.629904319487807, 29.666090135150995 ], [ -96.629966319070959, 29.666195134999665 ], [ -96.62999231964784, 29.666288134994364 ], [ -96.630004319311794, 29.666404134901406 ], [ -96.62998531893308, 29.666519134863535 ], [ -96.629960319835845, 29.666591134786678 ], [ -96.629840319666599, 29.666706135534263 ], [ -96.629740319131827, 29.666756135554255 ], [ -96.629595319376904, 29.66684313483049 ], [ -96.629500319641281, 29.666915135339281 ], [ -96.629273319134469, 29.667206135463005 ], [ -96.629028318832553, 29.667294135788207 ], [ -96.628946318697032, 29.667338135089221 ], [ -96.628858319672503, 29.667404135166386 ], [ -96.628833318670772, 29.667448135760395 ], [ -96.628839319030135, 29.667525135278336 ], [ -96.628870319561031, 29.667613135160629 ], [ -96.629204318811716, 29.66806413527711 ], [ -96.629298318930054, 29.668163135833321 ], [ -96.629386319823311, 29.668223135875078 ], [ -96.629480319281143, 29.668240135243725 ], [ -96.629512319347384, 29.668234135628349 ], [ -96.629550319383398, 29.66821213549256 ], [ -96.629814319446282, 29.668015135513613 ], [ -96.629902319039516, 29.667965135076795 ], [ -96.630060319960464, 29.667938135038483 ], [ -96.630180319421754, 29.667932135209778 ], [ -96.630287319031808, 29.66796013561855 ], [ -96.630419319886229, 29.668015135373683 ], [ -96.63049431988857, 29.668064135794388 ], [ -96.630891319915861, 29.668384135642022 ], [ -96.631048319840602, 29.668493135923626 ], [ -96.631243320091329, 29.668593135941112 ], [ -96.631451319916991, 29.668653135802327 ], [ -96.631501319593525, 29.668681135835765 ], [ -96.631564319997324, 29.668758135409526 ], [ -96.631677319586174, 29.669000135927799 ], [ -96.631746320097363, 29.669115135832438 ], [ -96.63187931968946, 29.669269135733629 ], [ -96.632030319734781, 29.669418135757759 ], [ -96.632105320486417, 29.669467136142647 ], [ -96.632451320103371, 29.66961613575624 ], [ -96.632527320459062, 29.66966513552218 ], [ -96.632785320614019, 29.669753135570694 ], [ -96.633251320404227, 29.669880135964146 ], [ -96.633672320477729, 29.670067135811831 ], [ -96.633823320443057, 29.670194135885474 ], [ -96.634088320798384, 29.670375135989818 ], [ -96.6342363211335, 29.670542135471457 ], [ -96.634283321126915, 29.670595135807289 ], [ -96.634333320367801, 29.670683136021136 ], [ -96.634440320734001, 29.670920135830038 ], [ -96.634547320755217, 29.67164013641235 ], [ -96.634591320619748, 29.671700136163867 ], [ -96.634672320597744, 29.671728135702505 ], [ -96.634987321319997, 29.671767135970928 ], [ -96.635069321233004, 29.671767135852559 ], [ -96.635195320971306, 29.67174513614745 ], [ -96.63531532143017, 29.671712136152191 ], [ -96.635592321521756, 29.671563135931166 ], [ -96.635976320952594, 29.671448135706353 ], [ -96.636152320917063, 29.671415136368957 ], [ -96.636322321298138, 29.671404136098261 ], [ -96.636542320796039, 29.671454135820458 ], [ -96.636694321547964, 29.671520136391507 ], [ -96.636857321682101, 29.671685136057075 ], [ -96.637014321259954, 29.671866136313508 ], [ -96.637184321858868, 29.672158136328942 ], [ -96.637304321582789, 29.672306136345583 ], [ -96.637360321345454, 29.672339135698184 ], [ -96.637411321175776, 29.672350136538423 ], [ -96.637518321951958, 29.672350136544168 ], [ -96.637612321706015, 29.672340136406287 ], [ -96.637663321390448, 29.672323136332992 ], [ -96.637795321413037, 29.672235135631059 ], [ -96.637927321292636, 29.672092135776506 ], [ -96.638123321366251, 29.671740135857625 ], [ -96.638167321935498, 29.671350135966726 ], [ -96.638173321671417, 29.670954135951391 ], [ -96.63819932168326, 29.670850135644532 ], [ -96.638419321348366, 29.670619135909291 ], [ -96.63857032221452, 29.670509136055767 ], [ -96.639011321429393, 29.670372135650815 ], [ -96.63925732233524, 29.670322135520617 ], [ -96.639489321672784, 29.670311136002471 ], [ -96.639773322012587, 29.670312135542741 ], [ -96.640031321645282, 29.670328135869465 ], [ -96.640251321683934, 29.670361135739014 ], [ -96.640409322709615, 29.67040513535628 ], [ -96.640616322752237, 29.670504135378739 ], [ -96.641070322644808, 29.670664135414942 ], [ -96.641334322446454, 29.670801135663275 ], [ -96.641535322433882, 29.670857135716503 ], [ -96.641674322725322, 29.670851135340232 ], [ -96.64183832253886, 29.670780135806634 ], [ -96.641945322655559, 29.670670135188498 ], [ -96.642020322169358, 29.670538135376209 ], [ -96.642121322530912, 29.670395135143451 ], [ -96.642228323096504, 29.67034013512011 ], [ -96.642404323075681, 29.670307135748196 ], [ -96.642530323153636, 29.670324135220017 ], [ -96.642776322900161, 29.670390135964134 ], [ -96.642889323232708, 29.670494135761309 ], [ -96.642933322460692, 29.670604135807643 ], [ -96.642952322540637, 29.670813135252999 ], [ -96.643008322797385, 29.671929136196166 ], [ -96.643052323388972, 29.672270135470033 ], [ -96.64305232281572, 29.67256713621061 ], [ -96.643014322676436, 29.672787136405709 ], [ -96.642964322637155, 29.672930136169114 ], [ -96.642982323393866, 29.673078135776983 ], [ -96.643039322665061, 29.673221136488529 ], [ -96.643140322929838, 29.673348136267066 ], [ -96.643253323107132, 29.673370135777926 ], [ -96.643801323013051, 29.673414136312836 ], [ -96.643996322914475, 29.67345313605189 ], [ -96.64409732289883, 29.673502135749111 ], [ -96.644392323587837, 29.673678136001662 ], [ -96.644525323362799, 29.673744136161645 ], [ -96.644644323627361, 29.67378313633106 ], [ -96.644789323846851, 29.673810136484814 ], [ -96.644946323933326, 29.673821136179061 ], [ -96.645368323490104, 29.67382113588042 ], [ -96.645651323920887, 29.673860136533193 ], [ -96.645727323786247, 29.67388813612801 ], [ -96.646092323874825, 29.674146135715159 ], [ -96.646231323776561, 29.674223136524553 ], [ -96.64653932419543, 29.674372135759899 ], [ -96.646633323773443, 29.674405136625026 ], [ -96.646721323655441, 29.674421136592795 ], [ -96.646822323671529, 29.674427135859908 ], [ -96.647024324064162, 29.674421136006956 ], [ -96.647483324195662, 29.6743881363954 ], [ -96.647729323764963, 29.674394136574762 ], [ -96.647817323823887, 29.674372136092796 ], [ -96.647918323905358, 29.674312135858838 ], [ -96.647993324324261, 29.674295136528539 ], [ -96.648151324825648, 29.674323136549088 ], [ -96.648724324514745, 29.674554136079998 ], [ -96.648755324382165, 29.674543136468241 ], [ -96.649092324346825, 29.674566136550371 ], [ -96.649076324508513, 29.674968136645425 ], [ -96.649246325069001, 29.676443136073257 ], [ -96.649307324665799, 29.678700136602988 ], [ -96.649198324561297, 29.679355137081544 ], [ -96.648923325149354, 29.681523137712205 ], [ -96.648919324504845, 29.681881137575349 ], [ -96.648895325277849, 29.684143137746062 ], [ -96.648830325002777, 29.687779139029569 ], [ -96.648805324661978, 29.689180139257335 ], [ -96.648727325118131, 29.689486138875335 ], [ -96.648582325046604, 29.689669139268023 ], [ -96.648363325219179, 29.689993139106829 ], [ -96.648263324955209, 29.690238139413786 ], [ -96.648264325214626, 29.690718139341065 ], [ -96.64833632509783, 29.69148213919572 ], [ -96.648356325630033, 29.691689139835489 ], [ -96.648365324755233, 29.692037139799904 ], [ -96.648347325529599, 29.692246139851836 ], [ -96.64877032554358, 29.692237139707945 ], [ -96.648762325725286, 29.695612140726414 ], [ -96.648998325830448, 29.69566414033444 ], [ -96.653229326531658, 29.696689140908308 ], [ -96.654807327464866, 29.696836140721828 ], [ -96.656894327450047, 29.696866140500909 ], [ -96.658887327914755, 29.696802140011133 ], [ -96.66065232856694, 29.696793140240732 ], [ -96.664176329243332, 29.696753140192655 ], [ -96.667041329975163, 29.696767139656018 ], [ -96.668074330210587, 29.69675814023422 ], [ -96.669460330882742, 29.696746139553564 ], [ -96.672521331134419, 29.696721139965163 ], [ -96.675581331953637, 29.696694139967786 ], [ -96.680214333821141, 29.69653913953988 ], [ -96.683863334066828, 29.696462139601429 ], [ -96.684971334100865, 29.696215139251585 ], [ -96.688116335228827, 29.696501139549753 ], [ -96.688026335309644, 29.696783139222717 ], [ -96.687978335803678, 29.696810139588813 ], [ -96.687840335325703, 29.6968361394424 ], [ -96.687799334986451, 29.696870139748217 ], [ -96.687756335405638, 29.696913139689158 ], [ -96.687717335607175, 29.696953139526929 ], [ -96.687609335753592, 29.697085139561043 ], [ -96.687549335594724, 29.697238139220097 ], [ -96.687540335165579, 29.697288139619371 ], [ -96.687596335695645, 29.697324139462921 ], [ -96.687772335455378, 29.697362139673931 ], [ -96.687819335747861, 29.697391139162306 ], [ -96.687835334854938, 29.697433139808258 ], [ -96.687827335594733, 29.697522139488896 ], [ -96.687759335566938, 29.697565139195181 ], [ -96.687639335648285, 29.697615139127709 ], [ -96.687488335760264, 29.697648139907024 ], [ -96.68733033574226, 29.69765313927503 ], [ -96.687167335382597, 29.697626139709463 ], [ -96.686890335478466, 29.697543139487369 ], [ -96.686795335380623, 29.697505139231534 ], [ -96.686694335113387, 29.69742813991483 ], [ -96.686581335181813, 29.697318139178613 ], [ -96.686480335328937, 29.697268139311383 ], [ -96.686342335248639, 29.697219139015658 ], [ -96.68606533520412, 29.697208139631158 ], [ -96.685888335324975, 29.697235139512415 ], [ -96.685643334711912, 29.69730713937231 ], [ -96.685334334307299, 29.69736713960868 ], [ -96.685139334548651, 29.69739513955825 ], [ -96.68470433480374, 29.697532139271722 ], [ -96.684301334337206, 29.69776913976165 ], [ -96.68413133432297, 29.697900139988555 ], [ -96.683923334292629, 29.698043139394521 ], [ -96.683823334835225, 29.698274139831511 ], [ -96.683741334431943, 29.698522139980245 ], [ -96.683590333908739, 29.698698139877774 ], [ -96.683495334718614, 29.698885139523572 ], [ -96.683300333927008, 29.699138139938444 ], [ -96.683029333821167, 29.699599139857071 ], [ -96.682859334715914, 29.69983613988866 ], [ -96.682802334583712, 29.699962140118256 ], [ -96.682664333824789, 29.700419140316544 ], [ -96.682393333853042, 29.7011001407054 ], [ -96.682317334017483, 29.701232140647139 ], [ -96.682122334121289, 29.701458140633981 ], [ -96.681486333529577, 29.702321140844656 ], [ -96.681410333818874, 29.702387140643641 ], [ -96.681328334262929, 29.702442140679384 ], [ -96.680554333829136, 29.702860140519928 ], [ -96.680232333600429, 29.702986141094168 ], [ -96.679722333692396, 29.703140140687143 ], [ -96.678689333391247, 29.703338140730935 ], [ -96.678148333256715, 29.703486141084273 ], [ -96.677978333404781, 29.703580140565801 ], [ -96.677713332768249, 29.703772141078822 ], [ -96.677637332623732, 29.703833141144486 ], [ -96.67737333278545, 29.704080141202262 ], [ -96.677259333419684, 29.70426114156416 ], [ -96.67716533325509, 29.704465141280163 ], [ -96.677134332512821, 29.704569141297519 ], [ -96.6771153328568, 29.704756141354942 ], [ -96.67711533269599, 29.704927141542285 ], [ -96.6771333330543, 29.705042141772051 ], [ -96.67719033296045, 29.705235141535347 ], [ -96.677379332981346, 29.705603141341033 ], [ -96.677448332796999, 29.705702141478945 ], [ -96.677889333395285, 29.706026141696249 ], [ -96.677939333651423, 29.70607014159723 ], [ -96.677984333765764, 29.706142141808549 ], [ -96.678002333417609, 29.706219141728933 ], [ -96.677977333359451, 29.706395141934589 ], [ -96.677795333729563, 29.706582141721366 ], [ -96.677612332728827, 29.706395141842869 ], [ -96.677511333365146, 29.706340141412159 ], [ -96.677316333580606, 29.706285141625777 ], [ -96.676875333280009, 29.706186141576001 ], [ -96.676472333159225, 29.70607614173317 ], [ -96.676340332651847, 29.706076141360747 ], [ -96.675792333232593, 29.706164141522223 ], [ -96.675200332897376, 29.706350141494127 ], [ -96.67462033235276, 29.706686141337631 ], [ -96.674330332522118, 29.706922141990731 ], [ -96.673984332055682, 29.7072901416477 ], [ -96.673902332555429, 29.707395142279079 ], [ -96.673814332011062, 29.707571142370949 ], [ -96.673763332038718, 29.707912142393845 ], [ -96.673770331830482, 29.708016141874293 ], [ -96.673789332427006, 29.708115141877304 ], [ -96.674003331919607, 29.708714142254749 ], [ -96.674047332203884, 29.708802142604856 ], [ -96.674078332588124, 29.708907142654482 ], [ -96.674072331984391, 29.709022142485665 ], [ -96.674097332601889, 29.709055142323322 ], [ -96.67407833207956, 29.709185142098281 ], [ -96.674005332359386, 29.709257142220167 ], [ -96.673933332118764, 29.709330142396976 ], [ -96.673801332163151, 29.709451142760489 ], [ -96.673757331930076, 29.709473142261711 ], [ -96.67368833233003, 29.709457142442737 ], [ -96.673486332597747, 29.709308142000943 ], [ -96.673392332441139, 29.709264142399608 ], [ -96.67330333266672, 29.709198141884137 ], [ -96.673234331733454, 29.709132142161444 ], [ -96.67305833182445, 29.709022142361803 ], [ -96.672762331857925, 29.708874141988634 ], [ -96.672472332391749, 29.70885214224737 ], [ -96.671149331177858, 29.709077142240133 ], [ -96.67034933196426, 29.709297142061022 ], [ -96.669801331437455, 29.709407142555801 ], [ -96.669612331218602, 29.709500142282245 ], [ -96.669512331807951, 29.709560142731778 ], [ -96.669468331138262, 29.709599142488678 ], [ -96.669442331268456, 29.70965914257053 ], [ -96.66943633102666, 29.709956142995289 ], [ -96.669449331652174, 29.710083142503816 ], [ -96.669493330820373, 29.710264142675005 ], [ -96.669556331432076, 29.710435142458234 ], [ -96.669688331697046, 29.710638142264589 ], [ -96.669757331894473, 29.710710143104865 ], [ -96.670053331318357, 29.710891142601845 ], [ -96.671073331600027, 29.711210142346186 ], [ -96.671130332252375, 29.711238142857418 ], [ -96.671319332329617, 29.71123214266504 ], [ -96.671539331629091, 29.711320143159426 ], [ -96.671663332422682, 29.711462142456739 ], [ -96.671707332126843, 29.711562143027955 ], [ -96.671646332075724, 29.711727142941552 ], [ -96.671180331901581, 29.712172143224294 ], [ -96.671016331307044, 29.712299143344779 ], [ -96.670859331499301, 29.712392142595188 ], [ -96.670487331751204, 29.712568142905308 ], [ -96.670279332098303, 29.712656143145878 ], [ -96.670147331756368, 29.712700143454967 ], [ -96.669908331338661, 29.712705143276157 ], [ -96.669813331656286, 29.712689143162311 ], [ -96.669694331655307, 29.712639142719173 ], [ -96.669593331689796, 29.712579143328608 ], [ -96.669480331019102, 29.712469143003851 ], [ -96.669354331147758, 29.712414142872348 ], [ -96.669259331177713, 29.712359143253721 ], [ -96.669171331452148, 29.712299143218139 ], [ -96.669058331645303, 29.71219914318019 ], [ -96.668843331268917, 29.711930142745146 ], [ -96.668737330779663, 29.711765142674341 ], [ -96.668705331220977, 29.711584142692139 ], [ -96.668680330734645, 29.711507143317633 ], [ -96.668629331185912, 29.71140814248669 ], [ -96.668585331204824, 29.711353142875023 ], [ -96.668478331255599, 29.711281143324168 ], [ -96.668365330720647, 29.711259142670205 ], [ -96.668277330855702, 29.711215142866372 ], [ -96.667861331225055, 29.710957142826675 ], [ -96.66775433042514, 29.710902142509021 ], [ -96.667565331292209, 29.710863142855274 ], [ -96.667439330914362, 29.710869142851635 ], [ -96.667269331286406, 29.710935142996281 ], [ -96.667137330403676, 29.711001143220624 ], [ -96.667024330842679, 29.711077142813515 ], [ -96.66695433028319, 29.711182142487431 ], [ -96.666923330403236, 29.711314143286465 ], [ -96.666885330738111, 29.711666143045942 ], [ -96.666784331169708, 29.712177143445786 ], [ -96.666727330579135, 29.712298142871933 ], [ -96.666645331075358, 29.712419143595447 ], [ -96.666526330239918, 29.712551142783909 ], [ -96.666192330804108, 29.712738143138836 ], [ -96.665291330239057, 29.713128143315384 ], [ -96.665159330353418, 29.713210143408478 ], [ -96.664982330479987, 29.713364143017085 ], [ -96.664938329822178, 29.713463143418462 ], [ -96.664919330515815, 29.713700143185921 ], [ -96.664957330201588, 29.713843143853882 ], [ -96.665032330200972, 29.713980143101502 ], [ -96.665139329997686, 29.714112143833987 ], [ -96.665398330012266, 29.71428314318306 ], [ -96.66607133118859, 29.714844143525095 ], [ -96.666229330247432, 29.715031143813675 ], [ -96.666285330982305, 29.715129143373911 ], [ -96.666304330831636, 29.71522814343929 ], [ -96.666298330605045, 29.71528914373987 ], [ -96.66621033095474, 29.715437143881378 ], [ -96.665996330527292, 29.715679144218662 ], [ -96.665177330865959, 29.716317144051526 ], [ -96.664502330178735, 29.716977144538451 ], [ -96.664414330509587, 29.717103144252984 ], [ -96.664351330758919, 29.717235144123997 ], [ -96.664307330823092, 29.717372144367591 ], [ -96.664288330107766, 29.717499143957806 ], [ -96.664263330377537, 29.717988143960184 ], [ -96.664275330478262, 29.718104144774262 ], [ -96.664326329873802, 29.718258144308145 ], [ -96.664609330067776, 29.718621144746848 ], [ -96.664729330588784, 29.71873014477157 ], [ -96.665188330465895, 29.719016144431784 ], [ -96.665711330299288, 29.719324144189208 ], [ -96.666070331370676, 29.719704144229073 ], [ -96.666637330827882, 29.720369144749466 ], [ -96.666706330769316, 29.720518145074173 ], [ -96.666750330724412, 29.720644144901932 ], [ -96.666857331621415, 29.720738144740345 ], [ -96.666889331370129, 29.720859144563605 ], [ -96.66692633132655, 29.721123145155449 ], [ -96.666832330800588, 29.721365144590813 ], [ -96.666819331305859, 29.721480144707225 ], [ -96.666743330865515, 29.721722145316004 ], [ -96.66663033115239, 29.721953145269847 ], [ -96.66645433070309, 29.722211145529389 ], [ -96.666107330574476, 29.722569145504284 ], [ -96.666050331325593, 29.722684145151785 ], [ -96.666019331160115, 29.722865145050083 ], [ -96.66600633152153, 29.723184145360722 ], [ -96.666012330579647, 29.723316144958762 ], [ -96.666044330729051, 29.723432145500595 ], [ -96.666126330953801, 29.723564145255388 ], [ -96.666485331022159, 29.724075145096958 ], [ -96.66659833127477, 29.724174145123506 ], [ -96.66675533100522, 29.724356145290987 ], [ -96.66703233174421, 29.724565145390056 ], [ -96.667121331004026, 29.724702145722315 ], [ -96.667152331010712, 29.724790145368541 ], [ -96.667171331712623, 29.724905145832441 ], [ -96.667158331480834, 29.725026146050997 ], [ -96.667045331470149, 29.725180145405325 ], [ -96.667036330993682, 29.72522014545941 ], [ -96.666859331296934, 29.725269145393757 ], [ -96.666741331587289, 29.725369145954769 ], [ -96.666699330814794, 29.725579145766552 ], [ -96.666761331581185, 29.725747146169397 ], [ -96.667019331851819, 29.725983145930073 ], [ -96.667076331491629, 29.726066145884179 ], [ -96.667082331196113, 29.726104145669701 ], [ -96.667057331365129, 29.726241146154855 ], [ -96.667136331298252, 29.726758146302419 ], [ -96.66747133198389, 29.727928146126178 ], [ -96.667248331203922, 29.728693146286481 ], [ -96.667042331937878, 29.729157146897403 ], [ -96.666061330929736, 29.730107146657033 ], [ -96.665737330839789, 29.730324146949847 ], [ -96.665594330952231, 29.73054214707885 ], [ -96.664629331060752, 29.731602146671069 ], [ -96.663717330391606, 29.732311147312483 ], [ -96.66336633059413, 29.732505147681298 ], [ -96.662846330672593, 29.732792147141396 ], [ -96.662816330183432, 29.732809146987861 ], [ -96.662682330371055, 29.732935147832617 ], [ -96.662550330441391, 29.733058147697765 ], [ -96.662887331186354, 29.73342214773561 ], [ -96.663472331041362, 29.733878147238549 ], [ -96.664161331086532, 29.734550147918402 ], [ -96.665946331644832, 29.736000147741173 ], [ -96.666911331770521, 29.736937148404827 ], [ -96.667719332315698, 29.737553148134925 ], [ -96.668245331784547, 29.738058148335689 ], [ -96.6690103320486, 29.738550148487004 ], [ -96.669154332113834, 29.738768148732522 ], [ -96.66961633241668, 29.739127148743332 ], [ -96.67026433248428, 29.739574148727975 ], [ -96.670908332853713, 29.739817148896513 ], [ -96.671227332663122, 29.739890148108412 ], [ -96.673531333813074, 29.741316148423735 ], [ -96.674260334132953, 29.741767148898607 ], [ -96.676678334646041, 29.743489149267095 ], [ -96.677045335035729, 29.743750148828134 ], [ -96.677809335062165, 29.744469148981029 ], [ -96.678487335114596, 29.745241149486056 ], [ -96.679713335881047, 29.746823149411735 ], [ -96.680518335849484, 29.74820114975601 ], [ -96.680874336373819, 29.749236150338625 ], [ -96.681097335802221, 29.750298150332913 ], [ -96.681116335775329, 29.750874149979438 ], [ -96.681218336291366, 29.751185150592768 ], [ -96.681077336338205, 29.752003150599275 ], [ -96.681227336618662, 29.752334150691372 ], [ -96.681245336014413, 29.752622150767355 ], [ -96.681134335865991, 29.753987150597414 ], [ -96.681006336593185, 29.75447815094439 ], [ -96.680818335868466, 29.754795151368715 ], [ -96.680429335803709, 29.75519815119301 ], [ -96.677556335279675, 29.757314151664339 ], [ -96.677182335267801, 29.757511151714905 ], [ -96.676470334972095, 29.757886151769682 ], [ -96.674263334755764, 29.758699152409001 ], [ -96.673406334253627, 29.759202152793566 ], [ -96.672701333894608, 29.759698152357984 ], [ -96.672496333843412, 29.759923152133297 ], [ -96.672263333977511, 29.760343152652872 ], [ -96.669835333864043, 29.762453153087868 ], [ -96.669555334132781, 29.762809153095745 ], [ -96.669305333500077, 29.763263153453252 ], [ -96.669018333434423, 29.763700153649136 ], [ -96.668676333659292, 29.763959153611502 ], [ -96.668636333327044, 29.764205153252664 ], [ -96.66873433326262, 29.765027153905386 ], [ -96.669237333824398, 29.766246154271784 ], [ -96.669416333952711, 29.766529153735146 ], [ -96.670104334377044, 29.767247153925563 ], [ -96.670454333901347, 29.767735153770523 ], [ -96.670643334299669, 29.7680511539095 ], [ -96.671137334767593, 29.768889154656655 ], [ -96.671686334598107, 29.770320154208395 ], [ -96.671286334657466, 29.771422155290907 ], [ -96.670623334647772, 29.77228915488983 ], [ -96.670311334318427, 29.773115155669124 ], [ -96.670284334820948, 29.774117155361527 ], [ -96.670785334633806, 29.775106155979856 ], [ -96.671693335018034, 29.776054156006918 ], [ -96.673023334844459, 29.776846155714157 ], [ -96.673857335499122, 29.777293156267667 ], [ -96.674439335211588, 29.777558155551723 ], [ -96.675352335549164, 29.777896156484513 ], [ -96.675812336121552, 29.778057155878741 ], [ -96.676412336641434, 29.778192155689418 ], [ -96.677358336089128, 29.778265155855323 ], [ -96.677791336917267, 29.778167155934845 ], [ -96.67931233692461, 29.778298156394488 ], [ -96.679725337020329, 29.778281155772337 ], [ -96.680755337533029, 29.778017156231886 ], [ -96.682061337493209, 29.777820156132467 ], [ -96.683484338062371, 29.777606155362804 ], [ -96.683979337760405, 29.777624155272445 ], [ -96.68479533852782, 29.77774115552748 ], [ -96.685213338248388, 29.777750155884945 ], [ -96.686531338351685, 29.777780156002706 ], [ -96.68691833899932, 29.777759155248617 ], [ -96.687992338897757, 29.777497155583131 ], [ -96.688197338693655, 29.777491155588844 ], [ -96.688781339448738, 29.77767115523136 ], [ -96.689150339357781, 29.777902155975902 ], [ -96.689476339077956, 29.778226155220494 ], [ -96.689606339872697, 29.778529156112363 ], [ -96.689997339117937, 29.77873315555432 ], [ -96.692113340622058, 29.77952615553453 ], [ -96.692428340707707, 29.779644155933859 ], [ -96.693403340564103, 29.779943155733825 ], [ -96.694143340585413, 29.780266155478408 ], [ -96.694501341176519, 29.780356156296943 ], [ -96.694947340729968, 29.780433156051632 ], [ -96.695690340589877, 29.780461155724474 ], [ -96.696882341241349, 29.780343155863093 ], [ -96.697854341583081, 29.780168155424477 ], [ -96.698186341347522, 29.780063155610215 ], [ -96.702690342394547, 29.778652155098197 ], [ -96.702992343147656, 29.778558154838951 ], [ -96.704717342782246, 29.778090154692062 ], [ -96.706423343795962, 29.777537155067286 ], [ -96.708340344372331, 29.7770851547027 ], [ -96.710290344307126, 29.776485154831537 ], [ -96.710853344374058, 29.776313154552515 ], [ -96.712085345462754, 29.77572215458779 ], [ -96.714094345630741, 29.774872154004658 ], [ -96.71561534595962, 29.774067154083273 ], [ -96.717470345722433, 29.772983153988768 ], [ -96.718124346547356, 29.772543153258141 ], [ -96.718793346157753, 29.77218415323285 ], [ -96.719118346960684, 29.772060153552101 ], [ -96.719958346847605, 29.771870153343631 ], [ -96.720611346576803, 29.771780152921345 ], [ -96.721231346853216, 29.771794153018895 ], [ -96.721967347756959, 29.771889153076707 ], [ -96.723642348236467, 29.772345153568232 ], [ -96.724296347935336, 29.772523153097616 ], [ -96.724755348152229, 29.772687153277356 ], [ -96.725232348130987, 29.772971153359144 ], [ -96.726233348132865, 29.773778153540707 ], [ -96.727171348468872, 29.774366153752062 ], [ -96.727783349010167, 29.774902153190105 ], [ -96.728197349343858, 29.775425153672607 ], [ -96.728390349335172, 29.775863153917168 ], [ -96.728451348855728, 29.776295153932185 ], [ -96.728420348815135, 29.776547153781458 ], [ -96.72846134871854, 29.777816153953925 ], [ -96.728255349247675, 29.778591154792412 ], [ -96.727943348671502, 29.778974154804974 ], [ -96.727439348763411, 29.779406154289543 ], [ -96.726968349302908, 29.780005155022987 ], [ -96.725710348889535, 29.781169154817146 ], [ -96.725217348709023, 29.781757154930485 ], [ -96.724789348100174, 29.78274415567622 ], [ -96.724483348714244, 29.784245155402413 ], [ -96.724370348387239, 29.784476155634419 ], [ -96.724335348231691, 29.785254156160729 ], [ -96.724344349034553, 29.785283155850905 ], [ -96.724744349117628, 29.784877156100848 ], [ -96.72476434862287, 29.784860156001173 ], [ -96.724843348162537, 29.78479415548194 ], [ -96.743347352344202, 29.765870150891065 ], [ -96.750157354110669, 29.758904149818314 ], [ -96.750261353922639, 29.75879914998136 ], [ -96.751153354501554, 29.758071149439907 ], [ -96.751986354019891, 29.757388149542923 ], [ -96.753856355005979, 29.755864148742038 ], [ -96.754186354263382, 29.755611149063533 ], [ -96.754314355097748, 29.7555071484108 ], [ -96.75435335463817, 29.755507148580847 ], [ -96.754948354736285, 29.75489314899885 ], [ -96.75629235515602, 29.75350614847617 ], [ -96.757627355656581, 29.752127147968366 ], [ -96.758018355840818, 29.751724147586486 ], [ -96.758585355277319, 29.751139147601858 ], [ -96.759460355896962, 29.750236147613833 ], [ -96.759642355701402, 29.749967147555012 ], [ -96.759857356365757, 29.749648147369399 ], [ -96.759896355600659, 29.749609147844598 ], [ -96.760233356088435, 29.74926514777307 ], [ -96.760247355761493, 29.74924914758515 ], [ -96.760357356151715, 29.74913414691887 ], [ -96.760554356102332, 29.748931146975877 ], [ -96.76069235554364, 29.748790147449444 ], [ -96.761426355855107, 29.748044146779382 ], [ -96.763163356810864, 29.746267146626291 ], [ -96.765940357594118, 29.743427145721846 ], [ -96.767216357388307, 29.742122145370139 ], [ -96.767888357917016, 29.741434145764654 ], [ -96.768071357186486, 29.741248145591072 ], [ -96.768161357397034, 29.741157145875295 ], [ -96.768257357923588, 29.741060145807293 ], [ -96.768352357319898, 29.740963145240709 ], [ -96.769671357650125, 29.739611145023837 ], [ -96.771822358032196, 29.737412144288569 ], [ -96.773253358990317, 29.735944144055694 ], [ -96.773301358752875, 29.735898144117538 ], [ -96.773465358303824, 29.735730144136031 ], [ -96.773532358694425, 29.735662144370622 ], [ -96.775622358717612, 29.7335261434879 ], [ -96.776066359085846, 29.733071143145366 ], [ -96.77654435972434, 29.732582143590456 ], [ -96.777319359653177, 29.731789143234984 ], [ -96.778096359661575, 29.730993143133951 ], [ -96.778486360090199, 29.73059314309781 ], [ -96.778566359283971, 29.730512143391952 ], [ -96.778714359919405, 29.730362142693977 ], [ -96.779712360195603, 29.729340143004773 ], [ -96.779946359753666, 29.729101142691214 ], [ -96.780042360339067, 29.729003142496964 ], [ -96.780878360009297, 29.728149142796383 ], [ -96.781594359996163, 29.727418141838083 ], [ -96.782894360449703, 29.726088142242432 ], [ -96.783802360472322, 29.725160141273101 ], [ -96.784670361037229, 29.724269141771781 ], [ -96.786153361157304, 29.722755140795954 ], [ -96.786403360863829, 29.72249914064162 ], [ -96.792190362014708, 29.71658113955451 ], [ -96.796321362982937, 29.712358138451144 ], [ -96.799895363693977, 29.70870313775481 ], [ -96.800711364455523, 29.707870137717507 ], [ -96.801030364751455, 29.707546137217527 ], [ -96.801090364058069, 29.707485137827106 ], [ -96.802413364413653, 29.706130137075117 ], [ -96.803796364669552, 29.704714137203702 ], [ -96.805087365137155, 29.703395136545403 ], [ -96.806377365731564, 29.702077135900822 ], [ -96.807897365956009, 29.700522135625402 ], [ -96.807904366183649, 29.70050213558757 ], [ -96.807928365532661, 29.700491135498179 ], [ -96.811176366552147, 29.69717013481916 ], [ -96.812587366822598, 29.695729134905573 ], [ -96.81312936637319, 29.695175134729361 ], [ -96.814203367441081, 29.694077134787523 ], [ -96.815277366934737, 29.692979134393614 ], [ -96.816679367703628, 29.691546134221365 ], [ -96.818080367625228, 29.690113133859583 ], [ -96.819087367922833, 29.689080133574084 ], [ -96.819351368586979, 29.688812133224481 ], [ -96.819471368354854, 29.688690133484808 ], [ -96.819575368537286, 29.688584132703614 ], [ -96.82113736853637, 29.686997132632175 ], [ -96.822184369045317, 29.685924132786013 ], [ -96.824792369570361, 29.683251132000528 ], [ -96.825087369017851, 29.682949132153261 ], [ -96.82538136985174, 29.682648131554991 ], [ -96.825515369700511, 29.682511131987241 ], [ -96.825648369246224, 29.682375131252382 ], [ -96.825991369470032, 29.682024132039913 ], [ -96.826551369632057, 29.6814531315053 ], [ -96.827135369352405, 29.680856131686074 ], [ -96.82749936978496, 29.680483131206206 ], [ -96.827864369937743, 29.680110131521793 ], [ -96.827913370188654, 29.680061131507824 ], [ -96.827962369978195, 29.68001113069948 ], [ -96.829965370033122, 29.677964130943081 ], [ -96.831967370479305, 29.675917130398254 ], [ -96.832023370279217, 29.675860130479897 ], [ -96.832136371136798, 29.675744129903034 ], [ -96.832241370975851, 29.675636130396967 ], [ -96.832347370918569, 29.675528129852683 ], [ -96.833947370834494, 29.673894130042324 ], [ -96.835833371395708, 29.67196512924605 ], [ -96.837277371980974, 29.670489128543345 ], [ -96.838721372299176, 29.669012128764717 ], [ -96.839855372442884, 29.667851128091549 ], [ -96.840990372167639, 29.666691127560426 ], [ -96.842811373052911, 29.664829127407167 ], [ -96.844631373549817, 29.662968127062083 ], [ -96.846523373333028, 29.661034126482043 ], [ -96.84841537423317, 29.659100126476542 ], [ -96.848618374317397, 29.658893126468762 ], [ -96.84882137397409, 29.65868512628013 ], [ -96.849634374332368, 29.657854125797247 ], [ -96.850447374775584, 29.65702312583436 ], [ -96.850768374853473, 29.656695125241246 ], [ -96.852628374999441, 29.654792125059263 ], [ -96.852989375286157, 29.654423125414489 ], [ -96.853351375477629, 29.65405312472453 ], [ -96.85764437593086, 29.649665123818835 ], [ -96.861937376517076, 29.645277122684785 ], [ -96.865557377641238, 29.641577121877063 ], [ -96.86906537809449, 29.637992121292406 ], [ -96.86912337869515, 29.637933120950549 ], [ -96.873377379669037, 29.633582120448864 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 540, "Tract": "48089750500", "Area_SqMi": 69.56572772688672, "total_2009": 2546, "total_2010": 2786, "total_2011": 2587, "total_2012": 2334, "total_2013": 2284, "total_2014": 2362, "total_2015": 2401, "total_2016": 2351, "total_2017": 2280, "total_2018": 2471, "total_2019": 2347, "total_2020": 2444, "age1": 540, "age2": 1336, "age3": 733, "earn1": 453, "earn2": 765, "earn3": 1391, "naics_s01": 8, "naics_s02": 0, "naics_s03": 19, "naics_s04": 264, "naics_s05": 284, "naics_s06": 12, "naics_s07": 390, "naics_s08": 186, "naics_s09": 7, "naics_s10": 47, "naics_s11": 2, "naics_s12": 92, "naics_s13": 0, "naics_s14": 44, "naics_s15": 320, "naics_s16": 415, "naics_s17": 14, "naics_s18": 326, "naics_s19": 88, "naics_s20": 91, "race1": 2181, "race2": 320, "race3": 19, "race4": 60, "race5": 2, "race6": 27, "ethnicity1": 1881, "ethnicity2": 728, "edu1": 451, "edu2": 616, "edu3": 620, "edu4": 382, "Shape_Length": 284086.94492778147, "Shape_Area": 1939373426.0926645, "total_2021": 2567, "total_2022": 2609 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.688026335309644, 29.696783139222717 ], [ -96.688116335228827, 29.696501139549753 ], [ -96.684971334100865, 29.696215139251585 ], [ -96.683863334066828, 29.696462139601429 ], [ -96.680214333821141, 29.69653913953988 ], [ -96.675581331953637, 29.696694139967786 ], [ -96.672521331134419, 29.696721139965163 ], [ -96.669460330882742, 29.696746139553564 ], [ -96.668074330210587, 29.69675814023422 ], [ -96.667041329975163, 29.696767139656018 ], [ -96.664176329243332, 29.696753140192655 ], [ -96.66065232856694, 29.696793140240732 ], [ -96.658887327914755, 29.696802140011133 ], [ -96.656894327450047, 29.696866140500909 ], [ -96.654807327464866, 29.696836140721828 ], [ -96.653229326531658, 29.696689140908308 ], [ -96.648998325830448, 29.69566414033444 ], [ -96.648762325725286, 29.695612140726414 ], [ -96.64877032554358, 29.692237139707945 ], [ -96.648347325529599, 29.692246139851836 ], [ -96.648365324755233, 29.692037139799904 ], [ -96.648356325630033, 29.691689139835489 ], [ -96.64833632509783, 29.69148213919572 ], [ -96.648264325214626, 29.690718139341065 ], [ -96.648263324955209, 29.690238139413786 ], [ -96.648363325219179, 29.689993139106829 ], [ -96.648582325046604, 29.689669139268023 ], [ -96.648727325118131, 29.689486138875335 ], [ -96.648805324661978, 29.689180139257335 ], [ -96.648830325002777, 29.687779139029569 ], [ -96.648895325277849, 29.684143137746062 ], [ -96.648919324504845, 29.681881137575349 ], [ -96.648923325149354, 29.681523137712205 ], [ -96.649198324561297, 29.679355137081544 ], [ -96.649307324665799, 29.678700136602988 ], [ -96.649246325069001, 29.676443136073257 ], [ -96.649076324508513, 29.674968136645425 ], [ -96.649092324346825, 29.674566136550371 ], [ -96.648755324382165, 29.674543136468241 ], [ -96.648724324514745, 29.674554136079998 ], [ -96.648151324825648, 29.674323136549088 ], [ -96.647993324324261, 29.674295136528539 ], [ -96.647918323905358, 29.674312135858838 ], [ -96.647817323823887, 29.674372136092796 ], [ -96.647729323764963, 29.674394136574762 ], [ -96.647483324195662, 29.6743881363954 ], [ -96.647024324064162, 29.674421136006956 ], [ -96.646822323671529, 29.674427135859908 ], [ -96.646721323655441, 29.674421136592795 ], [ -96.646633323773443, 29.674405136625026 ], [ -96.64653932419543, 29.674372135759899 ], [ -96.646231323776561, 29.674223136524553 ], [ -96.646092323874825, 29.674146135715159 ], [ -96.645727323786247, 29.67388813612801 ], [ -96.645651323920887, 29.673860136533193 ], [ -96.645368323490104, 29.67382113588042 ], [ -96.644946323933326, 29.673821136179061 ], [ -96.644789323846851, 29.673810136484814 ], [ -96.644644323627361, 29.67378313633106 ], [ -96.644525323362799, 29.673744136161645 ], [ -96.644392323587837, 29.673678136001662 ], [ -96.64409732289883, 29.673502135749111 ], [ -96.643996322914475, 29.67345313605189 ], [ -96.643801323013051, 29.673414136312836 ], [ -96.643253323107132, 29.673370135777926 ], [ -96.643140322929838, 29.673348136267066 ], [ -96.643039322665061, 29.673221136488529 ], [ -96.642982323393866, 29.673078135776983 ], [ -96.642964322637155, 29.672930136169114 ], [ -96.643014322676436, 29.672787136405709 ], [ -96.64305232281572, 29.67256713621061 ], [ -96.643052323388972, 29.672270135470033 ], [ -96.643008322797385, 29.671929136196166 ], [ -96.642952322540637, 29.670813135252999 ], [ -96.642933322460692, 29.670604135807643 ], [ -96.642889323232708, 29.670494135761309 ], [ -96.642776322900161, 29.670390135964134 ], [ -96.642530323153636, 29.670324135220017 ], [ -96.642404323075681, 29.670307135748196 ], [ -96.642228323096504, 29.67034013512011 ], [ -96.642121322530912, 29.670395135143451 ], [ -96.642020322169358, 29.670538135376209 ], [ -96.641945322655559, 29.670670135188498 ], [ -96.64183832253886, 29.670780135806634 ], [ -96.641674322725322, 29.670851135340232 ], [ -96.641535322433882, 29.670857135716503 ], [ -96.641334322446454, 29.670801135663275 ], [ -96.641070322644808, 29.670664135414942 ], [ -96.640616322752237, 29.670504135378739 ], [ -96.640409322709615, 29.67040513535628 ], [ -96.640251321683934, 29.670361135739014 ], [ -96.640031321645282, 29.670328135869465 ], [ -96.639773322012587, 29.670312135542741 ], [ -96.639489321672784, 29.670311136002471 ], [ -96.63925732233524, 29.670322135520617 ], [ -96.639011321429393, 29.670372135650815 ], [ -96.63857032221452, 29.670509136055767 ], [ -96.638419321348366, 29.670619135909291 ], [ -96.63819932168326, 29.670850135644532 ], [ -96.638173321671417, 29.670954135951391 ], [ -96.638167321935498, 29.671350135966726 ], [ -96.638123321366251, 29.671740135857625 ], [ -96.637927321292636, 29.672092135776506 ], [ -96.637795321413037, 29.672235135631059 ], [ -96.637663321390448, 29.672323136332992 ], [ -96.637612321706015, 29.672340136406287 ], [ -96.637518321951958, 29.672350136544168 ], [ -96.637411321175776, 29.672350136538423 ], [ -96.637360321345454, 29.672339135698184 ], [ -96.637304321582789, 29.672306136345583 ], [ -96.637184321858868, 29.672158136328942 ], [ -96.637014321259954, 29.671866136313508 ], [ -96.636857321682101, 29.671685136057075 ], [ -96.636694321547964, 29.671520136391507 ], [ -96.636542320796039, 29.671454135820458 ], [ -96.636322321298138, 29.671404136098261 ], [ -96.636152320917063, 29.671415136368957 ], [ -96.635976320952594, 29.671448135706353 ], [ -96.635592321521756, 29.671563135931166 ], [ -96.63531532143017, 29.671712136152191 ], [ -96.635195320971306, 29.67174513614745 ], [ -96.635069321233004, 29.671767135852559 ], [ -96.634987321319997, 29.671767135970928 ], [ -96.634672320597744, 29.671728135702505 ], [ -96.634591320619748, 29.671700136163867 ], [ -96.634547320755217, 29.67164013641235 ], [ -96.634440320734001, 29.670920135830038 ], [ -96.634333320367801, 29.670683136021136 ], [ -96.634283321126915, 29.670595135807289 ], [ -96.6342363211335, 29.670542135471457 ], [ -96.634088320798384, 29.670375135989818 ], [ -96.633823320443057, 29.670194135885474 ], [ -96.633672320477729, 29.670067135811831 ], [ -96.633251320404227, 29.669880135964146 ], [ -96.632785320614019, 29.669753135570694 ], [ -96.632527320459062, 29.66966513552218 ], [ -96.632451320103371, 29.66961613575624 ], [ -96.632105320486417, 29.669467136142647 ], [ -96.632030319734781, 29.669418135757759 ], [ -96.63187931968946, 29.669269135733629 ], [ -96.631746320097363, 29.669115135832438 ], [ -96.631677319586174, 29.669000135927799 ], [ -96.631564319997324, 29.668758135409526 ], [ -96.631501319593525, 29.668681135835765 ], [ -96.631451319916991, 29.668653135802327 ], [ -96.631243320091329, 29.668593135941112 ], [ -96.631048319840602, 29.668493135923626 ], [ -96.630891319915861, 29.668384135642022 ], [ -96.63049431988857, 29.668064135794388 ], [ -96.630419319886229, 29.668015135373683 ], [ -96.630287319031808, 29.66796013561855 ], [ -96.630180319421754, 29.667932135209778 ], [ -96.630060319960464, 29.667938135038483 ], [ -96.629902319039516, 29.667965135076795 ], [ -96.629814319446282, 29.668015135513613 ], [ -96.629550319383398, 29.66821213549256 ], [ -96.629512319347384, 29.668234135628349 ], [ -96.629480319281143, 29.668240135243725 ], [ -96.629386319823311, 29.668223135875078 ], [ -96.629298318930054, 29.668163135833321 ], [ -96.629204318811716, 29.66806413527711 ], [ -96.628870319561031, 29.667613135160629 ], [ -96.628839319030135, 29.667525135278336 ], [ -96.628833318670772, 29.667448135760395 ], [ -96.628858319672503, 29.667404135166386 ], [ -96.628946318697032, 29.667338135089221 ], [ -96.629028318832553, 29.667294135788207 ], [ -96.629273319134469, 29.667206135463005 ], [ -96.629500319641281, 29.666915135339281 ], [ -96.629595319376904, 29.66684313483049 ], [ -96.629740319131827, 29.666756135554255 ], [ -96.629840319666599, 29.666706135534263 ], [ -96.629960319835845, 29.666591134786678 ], [ -96.62998531893308, 29.666519134863535 ], [ -96.630004319311794, 29.666404134901406 ], [ -96.62999231964784, 29.666288134994364 ], [ -96.629966319070959, 29.666195134999665 ], [ -96.629904319487807, 29.666090135150995 ], [ -96.62986031922847, 29.666046134833113 ], [ -96.629696319783037, 29.665958135202938 ], [ -96.629589318925611, 29.665920135213913 ], [ -96.62946931947603, 29.665892135058655 ], [ -96.629331318886798, 29.66588113479327 ], [ -96.629180319128182, 29.665881135074152 ], [ -96.629022318738393, 29.665898135012441 ], [ -96.628739318578255, 29.665947135258779 ], [ -96.628412319283626, 29.666018134966887 ], [ -96.628065319361653, 29.666117135134378 ], [ -96.62765031839875, 29.666216135230226 ], [ -96.6274233184986, 29.666254135115434 ], [ -96.627291318489341, 29.666271135308033 ], [ -96.627209318218533, 29.666270135187958 ], [ -96.627121318373412, 29.666259135242505 ], [ -96.626504319030943, 29.66610013498892 ], [ -96.626013318128699, 29.666006135160661 ], [ -96.625572318501867, 29.665901135097617 ], [ -96.625006317700908, 29.665615134764224 ], [ -96.624932317955412, 29.665592135581086 ], [ -96.624825318328377, 29.6655321347776 ], [ -96.624706318496408, 29.665471134972268 ], [ -96.624410317872929, 29.665251135100974 ], [ -96.623881317789468, 29.664834134653557 ], [ -96.623799317264357, 29.664795135147234 ], [ -96.623679317690829, 29.664757135208941 ], [ -96.623547317420048, 29.66474613526513 ], [ -96.622948317555284, 29.663998134713136 ], [ -96.622791317592842, 29.663718134480863 ], [ -96.622558317112407, 29.66342113438861 ], [ -96.622488317191682, 29.663317134908283 ], [ -96.622394317576067, 29.663124134572378 ], [ -96.622243317581052, 29.662690134699876 ], [ -96.622192317377639, 29.662586134937968 ], [ -96.622129317485872, 29.662492134968446 ], [ -96.62192831753066, 29.66226713471249 ], [ -96.621858317423516, 29.66220713429416 ], [ -96.621619316936616, 29.662086134589092 ], [ -96.621455317088106, 29.661915134173544 ], [ -96.62102131664814, 29.661695134680819 ], [ -96.620876316568683, 29.661646134735172 ], [ -96.620763316942814, 29.661630134358067 ], [ -96.620523317307502, 29.661437134288057 ], [ -96.620353317098363, 29.661344134882039 ], [ -96.620158316245821, 29.661262134735932 ], [ -96.620032316319566, 29.661223134030415 ], [ -96.619913316690628, 29.661168134614432 ], [ -96.619812316547211, 29.661097134411062 ], [ -96.619705316408798, 29.660981134559236 ], [ -96.619610316463934, 29.660871134430007 ], [ -96.619553316589901, 29.660767134272628 ], [ -96.6194273160053, 29.660591134075698 ], [ -96.619308316697996, 29.660498134050044 ], [ -96.61910631597236, 29.66038213465918 ], [ -96.618873316822175, 29.660300134572019 ], [ -96.61879231638251, 29.660283134048871 ], [ -96.618741316750587, 29.660278134408788 ], [ -96.618559316425277, 29.660316134372032 ], [ -96.618445315795427, 29.660322134700447 ], [ -96.618376315819859, 29.660317134193779 ], [ -96.618288315935843, 29.660267134669876 ], [ -96.618193315832812, 29.660196134343785 ], [ -96.618055316432859, 29.660042133849966 ], [ -96.618023316160873, 29.659992134123957 ], [ -96.61797331591282, 29.659959133824486 ], [ -96.617759315744621, 29.659893134383324 ], [ -96.617639316130806, 29.659844134380229 ], [ -96.61748231602661, 29.659800134152857 ], [ -96.61726131595961, 29.659624134187901 ], [ -96.617154316026316, 29.659608134605342 ], [ -96.617060315459398, 29.659635133987489 ], [ -96.616959315471888, 29.65971213401874 ], [ -96.616884316123688, 29.659734134437215 ], [ -96.616777315536808, 29.659707134664195 ], [ -96.616670315335554, 29.659647134270561 ], [ -96.616128315754082, 29.6594761342614 ], [ -96.615965315100226, 29.659553134178296 ], [ -96.615883315782071, 29.659652133999156 ], [ -96.615788315026847, 29.659680134444955 ], [ -96.615707315764951, 29.65973513439581 ], [ -96.615241315758709, 29.660092134792393 ], [ -96.615203315149714, 29.660103134632084 ], [ -96.61510931521498, 29.660109134619514 ], [ -96.614970315190675, 29.660098134056955 ], [ -96.614781314862441, 29.660049134109158 ], [ -96.614555315537373, 29.659961134370093 ], [ -96.61322031438489, 29.659340134288296 ], [ -96.613050314809001, 29.659247134417104 ], [ -96.612893315089138, 29.659131134495262 ], [ -96.612830314985089, 29.659049134184045 ], [ -96.612798314819429, 29.658955134495297 ], [ -96.612754315083265, 29.658526133973105 ], [ -96.612716314546944, 29.658306134505764 ], [ -96.612659314465233, 29.658164133783981 ], [ -96.612609314336368, 29.657960133598383 ], [ -96.612565314122406, 29.657883133954932 ], [ -96.612514314249964, 29.657839133685499 ], [ -96.612243314964516, 29.657713134051182 ], [ -96.612237314755774, 29.657581133902575 ], [ -96.612250314989438, 29.65750913411755 ], [ -96.612275314568052, 29.657465133693758 ], [ -96.612401314888999, 29.657372134128305 ], [ -96.612621314460355, 29.657278134035266 ], [ -96.612740314301178, 29.65719613375359 ], [ -96.612992314486533, 29.656937134013528 ], [ -96.613080314997475, 29.656871133365296 ], [ -96.613206314257454, 29.656800133726165 ], [ -96.613445314653163, 29.656690134094173 ], [ -96.613502314318183, 29.656651133976339 ], [ -96.613565314701958, 29.656596133972553 ], [ -96.61362131444983, 29.656519133904609 ], [ -96.613672315157103, 29.656431133253903 ], [ -96.613710314514648, 29.656332133782392 ], [ -96.613722314461995, 29.656211134050888 ], [ -96.613716315070633, 29.656052133732 ], [ -96.613684315237165, 29.655793133950777 ], [ -96.613552315266404, 29.655326133115999 ], [ -96.613520314363043, 29.655299133686707 ], [ -96.613375314413489, 29.655211133390729 ], [ -96.613212314426477, 29.655134133195087 ], [ -96.612941314337846, 29.655024133302657 ], [ -96.612614314502636, 29.654936133046 ], [ -96.612463314201946, 29.654958133832867 ], [ -96.612356314657859, 29.654958133359106 ], [ -96.61226131462162, 29.654947133034103 ], [ -96.612192313900948, 29.654914133604731 ], [ -96.612148314731627, 29.654865133012031 ], [ -96.612104313976246, 29.654793133565683 ], [ -96.61200931485071, 29.654552133235761 ], [ -96.611952314696282, 29.654310132988265 ], [ -96.611933314062327, 29.654134133120294 ], [ -96.611946314646133, 29.653815133168511 ], [ -96.611927314694384, 29.653727133429953 ], [ -96.611883314394959, 29.653622133269575 ], [ -96.61181431382937, 29.653584133169982 ], [ -96.611719314303443, 29.653579132800623 ], [ -96.611461314439623, 29.653639133310794 ], [ -96.611367313787269, 29.65363913291436 ], [ -96.611234314322161, 29.653606133565191 ], [ -96.611209314441439, 29.653579133031716 ], [ -96.611184314206781, 29.653529132763989 ], [ -96.61128431442998, 29.65279813318676 ], [ -96.611335313936038, 29.652528132612677 ], [ -96.611335314222018, 29.652419132531918 ], [ -96.611316313995587, 29.652298132927928 ], [ -96.611278313745629, 29.652199132537053 ], [ -96.611234313719507, 29.652138132649277 ], [ -96.611171314028752, 29.652100132769529 ], [ -96.610825314337063, 29.652067133144683 ], [ -96.610686313452661, 29.652012132759364 ], [ -96.610522314139686, 29.651918132649168 ], [ -96.610428313913303, 29.651825132721189 ], [ -96.610365314113849, 29.651715132606835 ], [ -96.610340313317991, 29.651633133204996 ], [ -96.610314313524881, 29.651396132599238 ], [ -96.610295313285519, 29.651336132730556 ], [ -96.610264313531516, 29.651292132905223 ], [ -96.6102263140058, 29.651259132570669 ], [ -96.610163313696432, 29.651231133088093 ], [ -96.610069313533216, 29.651215133185659 ], [ -96.609962313611703, 29.651209133065354 ], [ -96.609842313330574, 29.651220132960351 ], [ -96.60973531405746, 29.651253132781598 ], [ -96.609288313735604, 29.651430132561032 ], [ -96.609093313168202, 29.651490132661024 ], [ -96.608854313139219, 29.651551132541258 ], [ -96.608646313838975, 29.651567132986102 ], [ -96.608420313183572, 29.65157313278829 ], [ -96.608398313212689, 29.651571132510544 ], [ -96.608275313312362, 29.651562132458277 ], [ -96.608099313531767, 29.651507132530593 ], [ -96.607954313127209, 29.651446132703484 ], [ -96.607822312684988, 29.651326132943566 ], [ -96.607759313366955, 29.651287132417579 ], [ -96.607520313442194, 29.651188132486663 ], [ -96.607224312745288, 29.651106132474407 ], [ -96.606613313030692, 29.651002132899585 ], [ -96.606487312547387, 29.650974132480211 ], [ -96.606361313073791, 29.65093013248109 ], [ -96.606267312337849, 29.65087513245123 ], [ -96.606216312395986, 29.650831133204107 ], [ -96.606046313056282, 29.650622132391 ], [ -96.60597731242072, 29.650485132562284 ], [ -96.605857312441884, 29.650144133067943 ], [ -96.605776312595196, 29.65004013307756 ], [ -96.605687312732456, 29.649957132479905 ], [ -96.605631312222172, 29.649875132652014 ], [ -96.605574312232108, 29.649814132913495 ], [ -96.605574312385201, 29.649737132519697 ], [ -96.605587312325696, 29.649688132937772 ], [ -96.605694312160637, 29.649622132138191 ], [ -96.605712312335299, 29.649534132477001 ], [ -96.605649312860805, 29.649479132320867 ], [ -96.605398312369829, 29.649122132458913 ], [ -96.604957311825103, 29.648621132515903 ], [ -96.604887312776341, 29.648599131979388 ], [ -96.604390312151381, 29.648682132514242 ], [ -96.603918312124691, 29.648831132489022 ], [ -96.603729311758713, 29.648847132271701 ], [ -96.603616311522231, 29.648836132865341 ], [ -96.60333931158722, 29.648781132400035 ], [ -96.603264311708855, 29.648809132742993 ], [ -96.602892311717369, 29.648688132876618 ], [ -96.602703311708282, 29.648567132419 ], [ -96.602640311390402, 29.648452132436063 ], [ -96.602634311528988, 29.648369132444525 ], [ -96.602653312045646, 29.648270132149811 ], [ -96.602640311727711, 29.648166132265988 ], [ -96.602615311385463, 29.648072132283801 ], [ -96.602558311375645, 29.648012131998396 ], [ -96.602533311317984, 29.647940132780018 ], [ -96.602476311675773, 29.647863132146426 ], [ -96.602414311313481, 29.647831132738567 ], [ -96.602237311066816, 29.647803132577131 ], [ -96.602162311322687, 29.647776132606221 ], [ -96.602092311054292, 29.647688132725722 ], [ -96.602048311768542, 29.647611131933665 ], [ -96.602036311229639, 29.647319132010708 ], [ -96.602117311113318, 29.647000132594851 ], [ -96.602117311858208, 29.646934132053786 ], [ -96.60207331187128, 29.646868132082389 ], [ -96.601865311924414, 29.646638132474664 ], [ -96.601821311137797, 29.646528131718917 ], [ -96.601796310896162, 29.646434132429558 ], [ -96.60181231182338, 29.646299132134189 ], [ -96.60182831128121, 29.646159132242243 ], [ -96.60187131102272, 29.646044131959115 ], [ -96.601865310943566, 29.64598313175668 ], [ -96.601695311553158, 29.645879131978322 ], [ -96.601664310907097, 29.645780132065738 ], [ -96.601664311274462, 29.64570813201447 ], [ -96.601613311467602, 29.645395131686442 ], [ -96.601695311289504, 29.645285132152768 ], [ -96.601701311508137, 29.645142132040316 ], [ -96.601689311567839, 29.645027131885421 ], [ -96.60165131125818, 29.644911131648069 ], [ -96.601323311038144, 29.644406131860809 ], [ -96.601314310801897, 29.644399131828404 ], [ -96.601260311195929, 29.644356131739393 ], [ -96.601160310629922, 29.644230132091376 ], [ -96.601134311485936, 29.644147131802043 ], [ -96.601147310906427, 29.644076131743496 ], [ -96.601178311612685, 29.644026131180276 ], [ -96.601254311100575, 29.643955131995821 ], [ -96.601311311367425, 29.643856131355705 ], [ -96.601380311048047, 29.643691131207476 ], [ -96.601367311128129, 29.643504131906095 ], [ -96.601348311082006, 29.643454131476318 ], [ -96.601354310738131, 29.643278131438347 ], [ -96.601392310949066, 29.643212131282048 ], [ -96.601612310904798, 29.642981131358507 ], [ -96.601637311552821, 29.64290413109774 ], [ -96.601889311385051, 29.642558130987037 ], [ -96.601939311126728, 29.642459130999207 ], [ -96.601971311100058, 29.642366131098626 ], [ -96.60197731121427, 29.642250131261584 ], [ -96.601927310981097, 29.642118131297543 ], [ -96.601788311040181, 29.641882131386371 ], [ -96.601687311598994, 29.641750130888248 ], [ -96.601574311559446, 29.641667131272989 ], [ -96.601366310589086, 29.641558130811244 ], [ -96.601146310496375, 29.641481131533173 ], [ -96.600668310863924, 29.641338131169363 ], [ -96.600554310381327, 29.641283131087864 ], [ -96.600391310361189, 29.641250131438465 ], [ -96.600233310921752, 29.641288131232439 ], [ -96.600007310419755, 29.641321131289512 ], [ -96.59993131045951, 29.641316130871399 ], [ -96.599799310409153, 29.641250131426652 ], [ -96.59979331068412, 29.641212130877467 ], [ -96.599799310489203, 29.641168131219345 ], [ -96.599868310738174, 29.640948131026274 ], [ -96.599956310198564, 29.640722130829463 ], [ -96.600069310268353, 29.640585130810951 ], [ -96.600522310739336, 29.640194130709581 ], [ -96.600554311274777, 29.640139130559483 ], [ -96.600566310357451, 29.640090130534386 ], [ -96.600529310474286, 29.640029130388232 ], [ -96.600472311299413, 29.639974130387493 ], [ -96.600384310827636, 29.639925130914197 ], [ -96.600201310655606, 29.639875130362014 ], [ -96.599824310945436, 29.639744130641596 ], [ -96.599238310093867, 29.639447130855775 ], [ -96.599106310535333, 29.639408131069302 ], [ -96.598987310030338, 29.639430130818145 ], [ -96.598898309942967, 29.639463130716539 ], [ -96.59883631018414, 29.639474130346816 ], [ -96.598760310824417, 29.639474130627196 ], [ -96.598697310506296, 29.639442130333617 ], [ -96.598653310667416, 29.639392130372215 ], [ -96.598590309943788, 29.639354130527849 ], [ -96.598514310188122, 29.639348131168809 ], [ -96.598426310012556, 29.639381130645667 ], [ -96.598269310070165, 29.639392131175466 ], [ -96.597797309867616, 29.639475131133683 ], [ -96.597684309969324, 29.639480130563488 ], [ -96.597457310504424, 29.639453130571713 ], [ -96.597388309829142, 29.639409130363294 ], [ -96.597369310342501, 29.639376130549092 ], [ -96.597293309711361, 29.63931013104412 ], [ -96.597249310060846, 29.639288130948923 ], [ -96.597155309484549, 29.639299131140881 ], [ -96.596960310137177, 29.639403130518513 ], [ -96.59688430963277, 29.639420130982408 ], [ -96.596790309801648, 29.639426130454204 ], [ -96.596708310165937, 29.63939813069798 ], [ -96.596500309362952, 29.639266130702278 ], [ -96.596375309997597, 29.639151130354342 ], [ -96.596305309980494, 29.639107130578989 ], [ -96.596223309581006, 29.639074130924541 ], [ -96.596085309608952, 29.639035130470504 ], [ -96.595871309141344, 29.639035130613486 ], [ -96.595802309310656, 29.63898613090478 ], [ -96.595764309564004, 29.638925130359912 ], [ -96.595714309233529, 29.638782130524486 ], [ -96.595670309437111, 29.638706130830048 ], [ -96.595594309055627, 29.638634130830443 ], [ -96.595518309466712, 29.638607130623729 ], [ -96.595374309471055, 29.638601130765213 ], [ -96.595273309689944, 29.638585130701589 ], [ -96.595179308873483, 29.63854113050845 ], [ -96.595128309166611, 29.638491130826786 ], [ -96.595109309855999, 29.638431131134567 ], [ -96.595090309065924, 29.638288130259248 ], [ -96.595040308866658, 29.638216130488299 ], [ -96.594946309465087, 29.638167130564643 ], [ -96.594650309159732, 29.638074130539149 ], [ -96.594530309660456, 29.638074130971127 ], [ -96.59443630962889, 29.638211130423816 ], [ -96.594404309490287, 29.638271130578445 ], [ -96.594373309236119, 29.638370130985749 ], [ -96.594323309018606, 29.638458131061018 ], [ -96.59426030900822, 29.6384971308091 ], [ -96.59419730930891, 29.63851313065749 ], [ -96.59403930912147, 29.63852413079686 ], [ -96.593995308622311, 29.638508130895982 ], [ -96.593776309166273, 29.638351130381619 ], [ -96.593404309190049, 29.638101130893155 ], [ -96.593152308696119, 29.637947130439542 ], [ -96.592938308506234, 29.637848130513504 ], [ -96.592818309048951, 29.637810130772984 ], [ -96.592762309030476, 29.637750130407028 ], [ -96.592711308529331, 29.637656130714252 ], [ -96.592661308436874, 29.637601130397673 ], [ -96.592610308600726, 29.637563130517204 ], [ -96.592535308330525, 29.637530130810273 ], [ -96.592321308734441, 29.63749713069328 ], [ -96.592277308804015, 29.637502130277412 ], [ -96.592132308565567, 29.637557130901609 ], [ -96.591981308380369, 29.637546130903633 ], [ -96.591408308152978, 29.637337130396634 ], [ -96.591251308309523, 29.637233130405452 ], [ -96.591112308194496, 29.637123130671892 ], [ -96.591031308555372, 29.637030130895567 ], [ -96.590854308609437, 29.636958130603659 ], [ -96.5906093078178, 29.636766130694838 ], [ -96.590496308116045, 29.636656130827838 ], [ -96.590401308349968, 29.636584130475722 ], [ -96.590332308066138, 29.63656213011279 ], [ -96.59011830817586, 29.636530130841514 ], [ -96.58998030817618, 29.636519130676941 ], [ -96.589898307598645, 29.63653513022177 ], [ -96.589633307697795, 29.636629130092057 ], [ -96.589545307427471, 29.63663413058531 ], [ -96.589331308116968, 29.636541130587247 ], [ -96.589186307443782, 29.636414130408021 ], [ -96.589023307726706, 29.636293130248166 ], [ -96.588966307446526, 29.636271130533249 ], [ -96.588689307674883, 29.63627113040701 ], [ -96.588450307609506, 29.636211130701167 ], [ -96.588280307901556, 29.636101130737192 ], [ -96.588054307141817, 29.635980130391168 ], [ -96.587821307742217, 29.63589813027771 ], [ -96.587707306915249, 29.635810130676514 ], [ -96.587374307195233, 29.635458130176175 ], [ -96.587141307243968, 29.635249130196449 ], [ -96.586902306703095, 29.634974129876454 ], [ -96.586851307339018, 29.634809129975455 ], [ -96.586857307016842, 29.634628130185845 ], [ -96.586813307328484, 29.634386130067178 ], [ -96.58681330744011, 29.634281130509198 ], [ -96.586782306708102, 29.634111130527906 ], [ -96.58673830732684, 29.633990130426351 ], [ -96.586612306812867, 29.633715129910641 ], [ -96.586410306819502, 29.633160129832802 ], [ -96.58637930648112, 29.632962130168014 ], [ -96.586385307134947, 29.632775129907397 ], [ -96.586372306989304, 29.63272013006592 ], [ -96.585963306287042, 29.632242129704672 ], [ -96.585938306988339, 29.632176129969523 ], [ -96.585925307072017, 29.632088130035775 ], [ -96.585944306799547, 29.632049129326582 ], [ -96.586007306380566, 29.631972129290038 ], [ -96.586221307118578, 29.631879129242368 ], [ -96.586259307184861, 29.631840130011742 ], [ -96.586272306327302, 29.631692130026138 ], [ -96.586209306538393, 29.631472129808177 ], [ -96.586202306292577, 29.63125212961728 ], [ -96.586171306992441, 29.6311971291099 ], [ -96.5860383063482, 29.631038129358682 ], [ -96.585976306460324, 29.630988129707333 ], [ -96.585780306635655, 29.630851129638085 ], [ -96.585447307079363, 29.630593129494851 ], [ -96.585277306422412, 29.63048312983641 ], [ -96.585044306709648, 29.630466129216863 ], [ -96.584969306807508, 29.630477129672936 ], [ -96.584792306104006, 29.630576129793489 ], [ -96.584692305991354, 29.630664129428862 ], [ -96.584623305953372, 29.630752129805693 ], [ -96.584547306225758, 29.630829129248362 ], [ -96.58449030658106, 29.630923129955121 ], [ -96.584497306444064, 29.631027129706737 ], [ -96.584522306037115, 29.631088129255762 ], [ -96.58452830614408, 29.631175129471487 ], [ -96.584516306463897, 29.631214129979867 ], [ -96.584440306261115, 29.631318129889067 ], [ -96.584390306009169, 29.631351130015553 ], [ -96.584295305883913, 29.631351129205392 ], [ -96.584207305983583, 29.631340129216149 ], [ -96.584000306589758, 29.631297129809507 ], [ -96.583855306003059, 29.631291129974102 ], [ -96.583653305802159, 29.63120313002532 ], [ -96.58354030654057, 29.631126129376767 ], [ -96.583433305653614, 29.631077129999568 ], [ -96.58321330577526, 29.63098912926726 ], [ -96.583074305949836, 29.630950129472765 ], [ -96.582584305695704, 29.630890129179502 ], [ -96.582168306183902, 29.630917129422269 ], [ -96.581917305573896, 29.630972129961457 ], [ -96.581696305275685, 29.631088129347155 ], [ -96.581583305732181, 29.631159129634018 ], [ -96.581489305519909, 29.631280129819725 ], [ -96.581464305677528, 29.631379129526483 ], [ -96.581419306115251, 29.63186913004575 ], [ -96.581483305440216, 29.632105129604682 ], [ -96.581482305594491, 29.632155130096006 ], [ -96.581445305635441, 29.632232129494238 ], [ -96.581331306003491, 29.632281129509629 ], [ -96.581193305850547, 29.632303130144727 ], [ -96.581074306041998, 29.632309129661181 ], [ -96.580721305349712, 29.632276129931757 ], [ -96.580432305001807, 29.632199130087969 ], [ -96.580343305858634, 29.632160129788787 ], [ -96.580092305696866, 29.631973130041715 ], [ -96.580004305409133, 29.63192912991785 ], [ -96.579909304855363, 29.631902129954973 ], [ -96.579720305517171, 29.631781129812985 ], [ -96.579248304931767, 29.631429129446296 ], [ -96.578871304535653, 29.631237130189028 ], [ -96.578632304811919, 29.63109912958814 ], [ -96.578506304843188, 29.630995129812117 ], [ -96.578355304695307, 29.630803129467154 ], [ -96.57790830442265, 29.630049129904659 ], [ -96.577870304204538, 29.629906129455239 ], [ -96.577864304970404, 29.629741129563158 ], [ -96.577794304568116, 29.62960912938496 ], [ -96.577731304884239, 29.629417129730271 ], [ -96.577662305041954, 29.629269129881411 ], [ -96.577606304730651, 29.62922512966438 ], [ -96.577549304816046, 29.629164129814452 ], [ -96.577480304737108, 29.629115129286514 ], [ -96.57736030444282, 29.629054129747516 ], [ -96.57708930460285, 29.628983129198634 ], [ -96.576995304123457, 29.628977129101056 ], [ -96.576750303792679, 29.628983129532674 ], [ -96.576303303881346, 29.62912612948017 ], [ -96.575913303874614, 29.629093129066344 ], [ -96.575711303622441, 29.628983129435287 ], [ -96.575585304009536, 29.628879129469766 ], [ -96.575459304405257, 29.628725129678184 ], [ -96.575384303704723, 29.628615129694598 ], [ -96.575340303958143, 29.628510129558141 ], [ -96.575315303868038, 29.628433129386448 ], [ -96.57532130350954, 29.628318129735714 ], [ -96.575359303909892, 29.628131129729052 ], [ -96.575460303914085, 29.627818129255502 ], [ -96.575541304319472, 29.627570129548747 ], [ -96.575705304032567, 29.627196128698863 ], [ -96.575893303743527, 29.626932128710834 ], [ -96.576045303697697, 29.626690129044167 ], [ -96.576302304231149, 29.626377129339446 ], [ -96.576397304017462, 29.626168128688118 ], [ -96.576403303626989, 29.625942128550303 ], [ -96.576390304449504, 29.625855129136657 ], [ -96.576359304024905, 29.625778128750937 ], [ -96.576296304249382, 29.625679129057431 ], [ -96.576139303495381, 29.625552128460633 ], [ -96.575937303556501, 29.625365128608788 ], [ -96.575849304147496, 29.625310129123413 ], [ -96.57577430392918, 29.625288128744721 ], [ -96.57562930375569, 29.625277128343704 ], [ -96.575421304015038, 29.625211128759936 ], [ -96.575352303852156, 29.625178128490674 ], [ -96.57525830422847, 29.625101128995784 ], [ -96.575183304163872, 29.624983128479006 ], [ -96.575132303435581, 29.624801128182025 ], [ -96.57513230322725, 29.624746128813339 ], [ -96.575139304196298, 29.624697128582568 ], [ -96.575189303410738, 29.624537129008459 ], [ -96.57521430374311, 29.624356128440784 ], [ -96.575214304060964, 29.624191128529549 ], [ -96.575202304023406, 29.62406412846596 ], [ -96.575214303895081, 29.623960128270788 ], [ -96.575233303904795, 29.62391112883186 ], [ -96.575315303910727, 29.623801128443464 ], [ -96.575472304235348, 29.623652128811443 ], [ -96.575541304228778, 29.623559128817945 ], [ -96.575655303413583, 29.623328127899459 ], [ -96.575831303803625, 29.623047128415546 ], [ -96.575881303510485, 29.622932127811453 ], [ -96.575894303335474, 29.622860127853109 ], [ -96.575906303385779, 29.622618128258612 ], [ -96.57589430384634, 29.622426127805586 ], [ -96.575868303593495, 29.622267128415572 ], [ -96.575755303685654, 29.622019128426931 ], [ -96.57557930342324, 29.621821128452783 ], [ -96.575535303302132, 29.621755127876568 ], [ -96.575428304051883, 29.621645128244364 ], [ -96.574931303288722, 29.62145312836855 ], [ -96.574774303448635, 29.621381128031501 ], [ -96.574704303901967, 29.621332127604447 ], [ -96.574547303442884, 29.621266128329079 ], [ -96.574258302879613, 29.621222128031338 ], [ -96.573786302899578, 29.621052127660334 ], [ -96.573333303280478, 29.620947127655086 ], [ -96.572980302491501, 29.620881128119766 ], [ -96.57269130257373, 29.620837128024192 ], [ -96.572150303134521, 29.620689127585212 ], [ -96.571873302999649, 29.620628128090026 ], [ -96.571627302247265, 29.620590127437449 ], [ -96.571187302134788, 29.62055112806895 ], [ -96.570828301959622, 29.620540127997778 ], [ -96.570740302281152, 29.620529127960502 ], [ -96.570337301870012, 29.620408127622518 ], [ -96.570180302176254, 29.620392127506943 ], [ -96.570048302213124, 29.620364128092493 ], [ -96.569928301845934, 29.620309128263706 ], [ -96.569607301637063, 29.620067127419603 ], [ -96.569419301675595, 29.619979127446168 ], [ -96.569343302302642, 29.619969127757546 ], [ -96.569249302129265, 29.619935127763828 ], [ -96.568972301891662, 29.619782128172872 ], [ -96.568884302090638, 29.619716127403866 ], [ -96.568632301703204, 29.619474127620439 ], [ -96.568550301616568, 29.619397128145881 ], [ -96.568267301836954, 29.619270127993278 ], [ -96.568123301778456, 29.61918212785174 ], [ -96.567984301957537, 29.619138127596784 ], [ -96.567770302066847, 29.619133127568592 ], [ -96.567707301179809, 29.619116128150463 ], [ -96.5675623015957, 29.619056127894712 ], [ -96.567468301620139, 29.61904512761534 ], [ -96.567336301278729, 29.619050127521589 ], [ -96.567273301924928, 29.61904512793388 ], [ -96.567210301196283, 29.619028127379408 ], [ -96.567153301877511, 29.619001127439695 ], [ -96.567015301893179, 29.618913127757594 ], [ -96.566895301165133, 29.618885127629394 ], [ -96.566713301478103, 29.618880127402811 ], [ -96.566518301440993, 29.618907127312042 ], [ -96.566247300951673, 29.618891127899449 ], [ -96.565964301055104, 29.618858127546194 ], [ -96.565826301239341, 29.618830127584587 ], [ -96.565543301430452, 29.618814127785164 ], [ -96.565417301055859, 29.618819127547177 ], [ -96.565316300483474, 29.618841127710457 ], [ -96.565241301173032, 29.618885128132266 ], [ -96.565171301376878, 29.618935127879624 ], [ -96.56510230113372, 29.619028128154568 ], [ -96.565058301352721, 29.619061127453627 ], [ -96.564920301266241, 29.619089127825227 ], [ -96.564649300706279, 29.619083128051088 ], [ -96.564366300762174, 29.619012128030697 ], [ -96.564297300898417, 29.619017128095695 ], [ -96.564083300294612, 29.619072127647556 ], [ -96.564020301064915, 29.619067127430782 ], [ -96.563951300980207, 29.619050128036211 ], [ -96.563781300945095, 29.618984127455143 ], [ -96.563567300252913, 29.618935127537167 ], [ -96.563271300005908, 29.618797128073318 ], [ -96.563189300765217, 29.61874812768508 ], [ -96.563051300272235, 29.618682127629121 ], [ -96.562522300219186, 29.618379128106984 ], [ -96.562497300447717, 29.618357127420719 ], [ -96.562390300335878, 29.618324127536589 ], [ -96.562246299971122, 29.618319127477513 ], [ -96.561780299889747, 29.61841812760386 ], [ -96.561560300444683, 29.618500127374727 ], [ -96.561446300279329, 29.61852812738142 ], [ -96.561018299465715, 29.618693127480892 ], [ -96.560924300187551, 29.61873712759666 ], [ -96.560798300107436, 29.6188251277718 ], [ -96.560742300279344, 29.618885127890977 ], [ -96.560685299392688, 29.618929128058895 ], [ -96.560616299535184, 29.618967128325039 ], [ -96.560421299884169, 29.619000127976054 ], [ -96.560182299229183, 29.618995127534127 ], [ -96.559861299227023, 29.618912128136017 ], [ -96.559678299171125, 29.618912127709283 ], [ -96.559527299151014, 29.619044127881121 ], [ -96.559420299873395, 29.619061128305226 ], [ -96.558974299586879, 29.61881912841552 ], [ -96.558797299247331, 29.618648127741068 ], [ -96.558697299290102, 29.6185051279265 ], [ -96.558520299075781, 29.618318128020022 ], [ -96.558288298883383, 29.618115128179806 ], [ -96.558036299075809, 29.617945127885346 ], [ -96.557873298818322, 29.617802127543271 ], [ -96.557627298581309, 29.617615127954387 ], [ -96.557476298683881, 29.617439127389869 ], [ -96.557319299320682, 29.617285127448532 ], [ -96.557180298630144, 29.617191127537847 ], [ -96.556992298973256, 29.617015127842407 ], [ -96.556816299027247, 29.616828127528223 ], [ -96.556690298858385, 29.6166081280209 ], [ -96.556545298894278, 29.61648212757062 ], [ -96.556488298716062, 29.616383127252632 ], [ -96.556432298150895, 29.616202127584099 ], [ -96.556407298561737, 29.616158127298345 ], [ -96.55634429880655, 29.616086127322841 ], [ -96.556293298093053, 29.616048127393807 ], [ -96.556212298365878, 29.616015127067577 ], [ -96.55605429833102, 29.615998127202975 ], [ -96.555954298178861, 29.615976127286842 ], [ -96.555878298516248, 29.615949127395147 ], [ -96.555538298672772, 29.615729127574902 ], [ -96.55547629847598, 29.615712127052568 ], [ -96.555331298229433, 29.615712127026804 ], [ -96.555224298572497, 29.615723127188307 ], [ -96.555048298738058, 29.615762127201375 ], [ -96.55476429821239, 29.615800127397542 ], [ -96.554685297984477, 29.615829127556449 ], [ -96.554601298344963, 29.615861127248664 ], [ -96.554217297630785, 29.616047127587468 ], [ -96.554072298399078, 29.6161681275162 ], [ -96.553984298147697, 29.616256127321872 ], [ -96.553896297790089, 29.616366127302886 ], [ -96.553821298280297, 29.616438127527218 ], [ -96.553613297663361, 29.616680127281185 ], [ -96.55351829822682, 29.616822127641409 ], [ -96.553355297867171, 29.616965127356767 ], [ -96.553254298286816, 29.617009127717719 ], [ -96.552895298265184, 29.61721312800368 ], [ -96.552726297989366, 29.617323127906911 ], [ -96.552298298149708, 29.61762512757187 ], [ -96.55185729794286, 29.617834128451001 ], [ -96.551656297732151, 29.617911127885428 ], [ -96.551253297562937, 29.618026128398938 ], [ -96.551196297152643, 29.618065127673372 ], [ -96.55116529688047, 29.618092127947424 ], [ -96.551159297753358, 29.618230128355599 ], [ -96.55113329692243, 29.618274127742588 ], [ -96.551045297707788, 29.618351128260507 ], [ -96.550945297615371, 29.618472127970996 ], [ -96.550914297770049, 29.618525128144778 ], [ -96.550882297135786, 29.618669127865836 ], [ -96.550775297366556, 29.618807128092371 ], [ -96.550687296777639, 29.618906128586939 ], [ -96.550542297770306, 29.619021127900286 ], [ -96.550410297007701, 29.61909312799532 ], [ -96.550340296811356, 29.619115128428536 ], [ -96.550284297631379, 29.6191151285798 ], [ -96.550045296962111, 29.619049127922427 ], [ -96.549976296908753, 29.618977127911595 ], [ -96.549938296851096, 29.618873128225509 ], [ -96.549906297270041, 29.618840128634659 ], [ -96.549818296548096, 29.618812128596591 ], [ -96.549780296801273, 29.618790128437219 ], [ -96.549755296933739, 29.618757127911614 ], [ -96.549674297062595, 29.618724128160235 ], [ -96.549598296624268, 29.618653127844862 ], [ -96.549548297351606, 29.618631128104862 ], [ -96.549510297158491, 29.61862512852403 ], [ -96.549183296923857, 29.618664128280631 ], [ -96.549013296874605, 29.618653128306157 ], [ -96.548749296432135, 29.618576128469762 ], [ -96.548453296568994, 29.61854312810792 ], [ -96.548031296160147, 29.618432128101521 ], [ -96.547585296112246, 29.618339127882773 ], [ -96.547289296670911, 29.618333128439641 ], [ -96.546723296421305, 29.618229127862072 ], [ -96.546414296449498, 29.618113127841781 ], [ -96.545987296383899, 29.617921128295695 ], [ -96.545854296102362, 29.617805127866045 ], [ -96.545823296172514, 29.617767127894417 ], [ -96.545804295968935, 29.617701127935263 ], [ -96.545810295993192, 29.617618128283397 ], [ -96.545836295707844, 29.617563127929401 ], [ -96.54591129613668, 29.61748112828732 ], [ -96.546006296220384, 29.617415127818333 ], [ -96.546125296450413, 29.617261127722124 ], [ -96.546144295933217, 29.617184127741812 ], [ -96.546138295824207, 29.616893128388508 ], [ -96.546163295787508, 29.616706127915851 ], [ -96.54633929612244, 29.615722128056753 ], [ -96.546440295547953, 29.615298127826247 ], [ -96.546440295822961, 29.615265127427605 ], [ -96.546421295928781, 29.615238127507009 ], [ -96.546365296299598, 29.615188127655475 ], [ -96.546352296355366, 29.615128127226392 ], [ -96.546371295515598, 29.615062127314822 ], [ -96.546377296210608, 29.614974127957989 ], [ -96.546327296449476, 29.614848127872406 ], [ -96.546195295758082, 29.614699127500053 ], [ -96.545981296034753, 29.614545127175518 ], [ -96.545553296098703, 29.614358127868663 ], [ -96.545308295248986, 29.614281127354293 ], [ -96.54510729583005, 29.614259127469939 ], [ -96.545037295267903, 29.614237127255812 ], [ -96.544792295860944, 29.614127127191342 ], [ -96.544484295107878, 29.614039127901663 ], [ -96.544163295373323, 29.613924127651522 ], [ -96.543858295003176, 29.613836127809794 ], [ -96.543624294989613, 29.613997127351176 ], [ -96.543223295289224, 29.614225127187076 ], [ -96.542870295192472, 29.614271127190129 ], [ -96.54255229553597, 29.614275127537333 ], [ -96.540674294892526, 29.614298127244538 ], [ -96.539323294180832, 29.614315127870317 ], [ -96.536645293237328, 29.614348127599396 ], [ -96.532288292768087, 29.614406128389152 ], [ -96.532290292089897, 29.614482127671359 ], [ -96.532313292026885, 29.616197128664812 ], [ -96.532392293164051, 29.621818129222326 ], [ -96.532432292759722, 29.623191129439419 ], [ -96.532431292812731, 29.625327130581383 ], [ -96.532461293200996, 29.625841129838722 ], [ -96.532549293313636, 29.631732131100076 ], [ -96.532593293430892, 29.634772131634154 ], [ -96.531807293337636, 29.635393132239319 ], [ -96.531022293480518, 29.636015132251174 ], [ -96.526047292288126, 29.639915133687403 ], [ -96.518127290529563, 29.646970134793463 ], [ -96.517283290572834, 29.647707134806168 ], [ -96.51709329003026, 29.647956135025186 ], [ -96.516168289624616, 29.646546135211914 ], [ -96.514795289821336, 29.644402134877669 ], [ -96.514124289001956, 29.643389134755775 ], [ -96.513902289478168, 29.643029134514684 ], [ -96.509864287610341, 29.636789133398597 ], [ -96.509478287189395, 29.636167132727952 ], [ -96.507648286575275, 29.633358132561469 ], [ -96.507481287011913, 29.633090132594354 ], [ -96.50727528697395, 29.632760132175932 ], [ -96.507160286735314, 29.632594132207451 ], [ -96.504771285720508, 29.628824132008489 ], [ -96.504564286316622, 29.628536131549957 ], [ -96.504102285859545, 29.627668131521201 ], [ -96.50310928511648, 29.626198131661802 ], [ -96.502483285709772, 29.625247131017108 ], [ -96.502284285131338, 29.624925130874217 ], [ -96.502205285088195, 29.624776130762086 ], [ -96.502104285668253, 29.624677131032914 ], [ -96.499454284891257, 29.620589130013609 ], [ -96.49907028453525, 29.619969130030469 ], [ -96.498719283918177, 29.619454129852357 ], [ -96.495341283512928, 29.614141129591825 ], [ -96.495185283457985, 29.613842129182608 ], [ -96.494501282529342, 29.612828129100286 ], [ -96.492815282301422, 29.610226128739317 ], [ -96.492704281797003, 29.610051128649282 ], [ -96.492604281888362, 29.610077128729404 ], [ -96.49253528226501, 29.610022128686641 ], [ -96.49236528259776, 29.610033128173082 ], [ -96.492283282002973, 29.609984128582521 ], [ -96.492227282267862, 29.609989128412792 ], [ -96.492145281774555, 29.609940128737215 ], [ -96.492038281831796, 29.609830128825635 ], [ -96.491887282019903, 29.609797128091309 ], [ -96.491817281956415, 29.609896128764937 ], [ -96.491761281775098, 29.609912128649089 ], [ -96.49163528241931, 29.609841128276361 ], [ -96.491409281987501, 29.609830128567719 ], [ -96.491314281544206, 29.609847128080151 ], [ -96.491252282175964, 29.610644128340773 ], [ -96.491057281900552, 29.610633128959595 ], [ -96.490924281448642, 29.610600128912726 ], [ -96.490817281602773, 29.610600128805622 ], [ -96.490641281738021, 29.610649128707774 ], [ -96.49040228137693, 29.610644128675133 ], [ -96.490220281630101, 29.610683128900597 ], [ -96.490088281316076, 29.610688128310013 ], [ -96.48975428146916, 29.610644129003042 ], [ -96.489484280952865, 29.610628128535755 ], [ -96.489314281775179, 29.610600128259801 ], [ -96.489119281312583, 29.610529128641073 ], [ -96.489043281503527, 29.610491128903266 ], [ -96.488987280987317, 29.610441128769587 ], [ -96.488949280976243, 29.610392128807153 ], [ -96.488930281780526, 29.610342128967364 ], [ -96.488949281662542, 29.610249129021511 ], [ -96.489106281098543, 29.609979128811734 ], [ -96.489150281672565, 29.609831128242309 ], [ -96.489156281117602, 29.609759128578755 ], [ -96.489150281431009, 29.609627128359168 ], [ -96.489118281218268, 29.609550128020466 ], [ -96.489043281554089, 29.60949612810095 ], [ -96.488911281601844, 29.609452128269663 ], [ -96.488753281087511, 29.609419128869373 ], [ -96.488628281112113, 29.609408128251658 ], [ -96.488514281554288, 29.60941912874393 ], [ -96.488426281251151, 29.609452128513187 ], [ -96.488294281028701, 29.609551128808224 ], [ -96.488238280746415, 29.609639128469844 ], [ -96.488124280806957, 29.609903128411482 ], [ -96.488062280616063, 29.609985128529999 ], [ -96.48798628111436, 29.610062128732704 ], [ -96.487967280962707, 29.610260128783928 ], [ -96.487797281369211, 29.610359129114073 ], [ -96.487565280694767, 29.610369129095119 ], [ -96.487546280929791, 29.610370128786755 ], [ -96.487426280972869, 29.610403129051303 ], [ -96.487269280941774, 29.610453128365947 ], [ -96.487175280966341, 29.610502128357478 ], [ -96.487055280788795, 29.610546128554802 ], [ -96.486910281230308, 29.610623128336933 ], [ -96.486810280593815, 29.610651128505467 ], [ -96.48672228066323, 29.610662128455385 ], [ -96.486621280278229, 29.610827128851632 ], [ -96.486527280774112, 29.610926129119726 ], [ -96.486395280915147, 29.611025128487256 ], [ -96.486200280195106, 29.611008128690472 ], [ -96.485948280811584, 29.610909129235488 ], [ -96.485608280724904, 29.610827129058173 ], [ -96.485174280361676, 29.61076712906371 ], [ -96.485073280071219, 29.610805128436787 ], [ -96.484979280367043, 29.610822128755999 ], [ -96.484866280700913, 29.610948129319119 ], [ -96.484746280464776, 29.611025129178227 ], [ -96.484627280404055, 29.611124129317982 ], [ -96.484501280506876, 29.611245129167308 ], [ -96.484394280483244, 29.61136612869684 ], [ -96.484331279698267, 29.611454128732966 ], [ -96.484294280476774, 29.611537128706487 ], [ -96.484193280595292, 29.611828129093954 ], [ -96.48412428007633, 29.61195512950172 ], [ -96.483998279910239, 29.612059128957874 ], [ -96.483904279870046, 29.612114129050767 ], [ -96.483816279798063, 29.612147129453778 ], [ -96.483721279994242, 29.61215812940441 ], [ -96.48358928014278, 29.612142129078357 ], [ -96.483463280316045, 29.612103129069133 ], [ -96.483319280168473, 29.611999128973693 ], [ -96.483230279620841, 29.61195512904921 ], [ -96.482941280051222, 29.611729129359787 ], [ -96.482689279471117, 29.611751129428786 ], [ -96.482639279270686, 29.611746129506614 ], [ -96.482589279547739, 29.611675128848375 ], [ -96.482557279397625, 29.611570129405901 ], [ -96.482406279759985, 29.611334128704897 ], [ -96.482393279746105, 29.611136129195991 ], [ -96.482412280012582, 29.611053128613865 ], [ -96.482532279642854, 29.610828129335971 ], [ -96.482544280102701, 29.610624128498337 ], [ -96.482494280196022, 29.61052012875172 ], [ -96.48243727939392, 29.610487128591277 ], [ -96.482217279151186, 29.610388129291728 ], [ -96.482066279904828, 29.610366128553505 ], [ -96.481984279088721, 29.610399128725728 ], [ -96.481588279543502, 29.610740128794255 ], [ -96.481091279490641, 29.611021128785875 ], [ -96.480890279160079, 29.611114129291494 ], [ -96.480852278909794, 29.611114128689504 ], [ -96.480764279047818, 29.611048129121507 ], [ -96.480657279142036, 29.61102112875162 ], [ -96.480537279632827, 29.611018129457197 ], [ -96.480393279294248, 29.611015129388139 ], [ -96.48033627874787, 29.611070128751376 ], [ -96.480072279197316, 29.611274129474612 ], [ -96.47999627880435, 29.611301128973611 ], [ -96.479845279551483, 29.611312129292301 ], [ -96.479732278872206, 29.611334128812334 ], [ -96.479569278636077, 29.611406129468563 ], [ -96.479348278698041, 29.611538129631448 ], [ -96.478468279070555, 29.611912129579085 ], [ -96.478191278931178, 29.612116128970694 ], [ -96.47811627881147, 29.612159129117277 ], [ -96.47778227898209, 29.612280129411094 ], [ -96.477260278279672, 29.612413129076632 ], [ -96.47682527865193, 29.612485129922096 ], [ -96.47712227808627, 29.613243129204051 ], [ -96.47716627867689, 29.613617129784981 ], [ -96.477078278580592, 29.613633129484068 ], [ -96.476795278538276, 29.613837129346802 ], [ -96.475757277733081, 29.613721129492525 ], [ -96.475540278304891, 29.613663129367538 ], [ -96.47536627801199, 29.613617129910562 ], [ -96.475234277547514, 29.613590130092383 ], [ -96.4751022774755, 29.613540129642562 ], [ -96.475109278239714, 29.613491130027107 ], [ -96.475083277979934, 29.613419129950756 ], [ -96.475077277608051, 29.61320512987287 ], [ -96.475033277871248, 29.612985129701716 ], [ -96.474989277717356, 29.612908129574944 ], [ -96.474863277435517, 29.612820129592919 ], [ -96.474624277787939, 29.612765129558625 ], [ -96.474322277338317, 29.612738129736851 ], [ -96.47392427716872, 29.612569129996391 ], [ -96.473711277847698, 29.612507129457065 ], [ -96.473542277091383, 29.612446129830069 ], [ -96.473479277581035, 29.612364129931727 ], [ -96.473365277940147, 29.612183129219552 ], [ -96.473334277130263, 29.61208912941969 ], [ -96.473302277893197, 29.611858129218611 ], [ -96.473221277637592, 29.611638129080976 ], [ -96.473145277443351, 29.611490129043951 ], [ -96.473044277534385, 29.611319129240169 ], [ -96.472912277644724, 29.611144128951885 ], [ -96.472830277472866, 29.611067129686134 ], [ -96.47256627726037, 29.610874129731567 ], [ -96.472440277221992, 29.610803129111861 ], [ -96.472233277506291, 29.610737129549065 ], [ -96.472100276868119, 29.610715129026183 ], [ -96.471679277380957, 29.610682128870028 ], [ -96.471478277074823, 29.610649129557274 ], [ -96.471364277189025, 29.610534129646776 ], [ -96.471119276322938, 29.610352129573542 ], [ -96.470980276520251, 29.610231129181365 ], [ -96.470911277189671, 29.610187128909654 ], [ -96.47081027629153, 29.610143129318061 ], [ -96.470162276870809, 29.610056128839769 ], [ -96.46990527649902, 29.609962129443669 ], [ -96.469753276304402, 29.609896128909547 ], [ -96.469672276763148, 29.609847128771246 ], [ -96.469602276059177, 29.60978612874883 ], [ -96.469294276458967, 29.609478129323364 ], [ -96.469212276293177, 29.609352129494724 ], [ -96.469168275989219, 29.609226129032102 ], [ -96.469168275816443, 29.609160129002529 ], [ -96.469212276322494, 29.609077129088476 ], [ -96.46926927628671, 29.608571129007135 ], [ -96.469262276712115, 29.608434128588986 ], [ -96.469149276005581, 29.608132128571501 ], [ -96.469036276500304, 29.608044128628098 ], [ -96.468803276419337, 29.6079671287462 ], [ -96.468558276273384, 29.607906128900506 ], [ -96.468292275640991, 29.607767128953078 ], [ -96.468212276177752, 29.607725128356883 ], [ -96.468149275792925, 29.607675128498933 ], [ -96.46798527635076, 29.607604129198329 ], [ -96.467966275650994, 29.607582129127316 ], [ -96.467960275482156, 29.607439128856129 ], [ -96.467922276190336, 29.607390129008973 ], [ -96.467689275705709, 29.607148128742541 ], [ -96.46746327552728, 29.60710412900622 ], [ -96.467249276040917, 29.607093128648032 ], [ -96.466815275880165, 29.60685112881357 ], [ -96.46669527527655, 29.60683412856007 ], [ -96.466639275774256, 29.606834128778907 ], [ -96.466481275089436, 29.606857128747059 ], [ -96.466091275177391, 29.606999128732035 ], [ -96.465720274900235, 29.607258128343105 ], [ -96.465550275041863, 29.607390128817421 ], [ -96.465494275279241, 29.607445129241796 ], [ -96.465456275006062, 29.607516128586571 ], [ -96.46534927513683, 29.607659129326255 ], [ -96.465154274684608, 29.60801712924512 ], [ -96.465041275257406, 29.608083129391108 ], [ -96.464475274794964, 29.60835212919698 ], [ -96.46429927547733, 29.608512129363156 ], [ -96.464210274929812, 29.608556129006331 ], [ -96.464104275370687, 29.60855612916518 ], [ -96.464047275055293, 29.608528128889951 ], [ -96.463984274624039, 29.608462128803808 ], [ -96.463946275380238, 29.608363128663594 ], [ -96.463915274880392, 29.608336129176575 ], [ -96.463864275347305, 29.608330129472495 ], [ -96.463764274954599, 29.608281129240421 ], [ -96.46360027515594, 29.608160128986892 ], [ -96.463569274397116, 29.608116129409311 ], [ -96.463562274367916, 29.608088129066278 ], [ -96.463537275223871, 29.608066129265765 ], [ -96.46351227442851, 29.608061129430663 ], [ -96.463317274887515, 29.608077128671724 ], [ -96.463179274409001, 29.607984129220284 ], [ -96.463160275104073, 29.607951129058893 ], [ -96.463034274410603, 29.607935129058436 ], [ -96.462977274261775, 29.607918128635543 ], [ -96.462908274184841, 29.607885128938872 ], [ -96.462807274671931, 29.607819128875896 ], [ -96.462707274761598, 29.607781129062801 ], [ -96.462675274796808, 29.607737129270202 ], [ -96.462619275012472, 29.607709129287684 ], [ -96.462285274062197, 29.607693128986526 ], [ -96.462096273924601, 29.607654129399997 ], [ -96.462008274312765, 29.607610128643156 ], [ -96.461964273910169, 29.607550129326651 ], [ -96.461914274399348, 29.607528128822928 ], [ -96.461706274137697, 29.607357128989428 ], [ -96.46167527443788, 29.60731312896484 ], [ -96.461700274493765, 29.607006129251292 ], [ -96.46168727393696, 29.606956128928392 ], [ -96.461581273817472, 29.606995128614223 ], [ -96.461360273854922, 29.60711012923797 ], [ -96.461260273713435, 29.607149128791448 ], [ -96.461203274662424, 29.607160128858684 ], [ -96.461128274425107, 29.607160129069772 ], [ -96.460951274126018, 29.60713812900449 ], [ -96.460832273707254, 29.607105128857906 ], [ -96.460737274079094, 29.607061128878954 ], [ -96.460637274283755, 29.607028129029857 ], [ -96.460599273513964, 29.606978128858405 ], [ -96.460580273571935, 29.606923128537026 ], [ -96.460543274246035, 29.606863128921752 ], [ -96.460303273605192, 29.606681129251417 ], [ -96.460033273902368, 29.606511128533388 ], [ -96.460001273399513, 29.606467128951227 ], [ -96.460014273371442, 29.606368129068688 ], [ -96.459951274277316, 29.606280129046052 ], [ -96.459901273962402, 29.606269128982575 ], [ -96.459819273422411, 29.606269129128531 ], [ -96.45958027373328, 29.606297128985403 ], [ -96.459454273943322, 29.606302129000269 ], [ -96.459404274050755, 29.606286129017391 ], [ -96.459183273258915, 29.606126128569045 ], [ -96.459095273474517, 29.606038129006233 ], [ -96.459089273864677, 29.606005128693003 ], [ -96.459102273935855, 29.605928128640443 ], [ -96.459246273951635, 29.605555128767143 ], [ -96.459259273279116, 29.605472128990002 ], [ -96.459422273454237, 29.605324128821689 ], [ -96.459529274007011, 29.605291128775342 ], [ -96.459599273237387, 29.60528012896642 ], [ -96.45968027330251, 29.605280128928616 ], [ -96.459800273546819, 29.605362128560511 ], [ -96.459831273227692, 29.605373128966054 ], [ -96.460001273289507, 29.605384128229719 ], [ -96.460121273621468, 29.605367128175956 ], [ -96.460391273529979, 29.605247128495126 ], [ -96.460423273495579, 29.605219128106977 ], [ -96.460442273774518, 29.605186128528537 ], [ -96.460492274133102, 29.605065128914813 ], [ -96.460517273814631, 29.605027128829889 ], [ -96.460523273781803, 29.604983128555862 ], [ -96.460473274140767, 29.604785128441275 ], [ -96.460448273808566, 29.604741128229961 ], [ -96.460404274313589, 29.60473012851466 ], [ -96.46033527358145, 29.604735128143826 ], [ -96.460209274087845, 29.604779128632224 ], [ -96.460127273298042, 29.604785128630027 ], [ -96.460070273649691, 29.604763128083935 ], [ -96.460026273744319, 29.604642128491985 ], [ -96.459976274006848, 29.604389128276569 ], [ -96.459982274055093, 29.604361128097114 ], [ -96.460121273397235, 29.604120128417851 ], [ -96.460114274143791, 29.603966128020893 ], [ -96.460120273441703, 29.603933128076395 ], [ -96.460190273847928, 29.603757128352072 ], [ -96.460108273424069, 29.603608128165355 ], [ -96.45988127408323, 29.603421128107925 ], [ -96.459699273633859, 29.603361128024257 ], [ -96.459667273668956, 29.603311128625769 ], [ -96.459649273706077, 29.603240128051283 ], [ -96.459642273304894, 29.603070128379411 ], [ -96.4595922736288, 29.602976127901364 ], [ -96.459523273993852, 29.602927128065048 ], [ -96.459498273222337, 29.602927128094287 ], [ -96.459447273434265, 29.602949127916855 ], [ -96.459422273209654, 29.602982128063069 ], [ -96.459321273349005, 29.603037128003777 ], [ -96.458780273366074, 29.603136127800997 ], [ -96.45859827323487, 29.603158128342095 ], [ -96.45845327310748, 29.603130128236341 ], [ -96.458296272767271, 29.603081128515633 ], [ -96.458214273521577, 29.603037128086022 ], [ -96.45818927298555, 29.602976128268192 ], [ -96.458082272683654, 29.602822127698538 ], [ -96.45807027356075, 29.602789127946451 ], [ -96.45808227280115, 29.602580128244686 ], [ -96.458095272820657, 29.602553128394415 ], [ -96.45813227293084, 29.602525127865722 ], [ -96.458353273699018, 29.602283128193079 ], [ -96.458365273387145, 29.602168128213695 ], [ -96.45834027276689, 29.602086127666244 ], [ -96.458164273171093, 29.601717127772808 ], [ -96.45815727323037, 29.601640127740254 ], [ -96.458076273257817, 29.601602127818836 ], [ -96.458051272700814, 29.601569127435994 ], [ -96.45805727339264, 29.601492127996924 ], [ -96.458006273287808, 29.600931127750975 ], [ -96.458025273572389, 29.60089812758082 ], [ -96.458120273083651, 29.600821127642249 ], [ -96.458145272609002, 29.600783127963009 ], [ -96.458157273234377, 29.600739128019111 ], [ -96.45815127314404, 29.600695128155504 ], [ -96.458031273446011, 29.600568127292657 ], [ -96.457824272962625, 29.600249127314985 ], [ -96.457818273013956, 29.600183127630565 ], [ -96.457824273288054, 29.600145128019186 ], [ -96.457843272902366, 29.600096127756579 ], [ -96.457924273278138, 29.599958127654116 ], [ -96.457937273385056, 29.599848127451772 ], [ -96.457912272505723, 29.599711127703728 ], [ -96.457849273072057, 29.599601127536062 ], [ -96.457805272920311, 29.599557127639265 ], [ -96.457755273025938, 29.599557127051156 ], [ -96.457698273181748, 29.599617127622146 ], [ -96.4576732732083, 29.599628127663376 ], [ -96.457616273249258, 29.599634127284677 ], [ -96.457522273222864, 29.599601127891454 ], [ -96.457472273361873, 29.599568127942664 ], [ -96.45744627241433, 29.599518127305835 ], [ -96.457440273228386, 29.599447127851573 ], [ -96.457421272696877, 29.599430127728805 ], [ -96.457377273152744, 29.599425127557641 ], [ -96.457239272989867, 29.599480127641215 ], [ -96.456959272459429, 29.599541127802787 ], [ -96.45703027268469, 29.599943127831182 ], [ -96.456951272475777, 29.600550127557739 ], [ -96.456968272448876, 29.60076512763975 ], [ -96.456494272480214, 29.602777128441229 ], [ -96.45604627292289, 29.604014128164227 ], [ -96.45500827244139, 29.606253128748225 ], [ -96.454459272723184, 29.607652129334209 ], [ -96.453905272587576, 29.608674129339224 ], [ -96.453208271753994, 29.60947712958496 ], [ -96.450986272263378, 29.611141130212491 ], [ -96.449892271718326, 29.611849130060047 ], [ -96.448519271170042, 29.612648130793222 ], [ -96.447796270579985, 29.61299013040593 ], [ -96.446560270540076, 29.613481130907967 ], [ -96.445855270703802, 29.613734130694969 ], [ -96.445650270632683, 29.613745130407903 ], [ -96.445358270074337, 29.613881130396766 ], [ -96.443850270155124, 29.614251130499326 ], [ -96.44331427038297, 29.614518130654837 ], [ -96.4425552698562, 29.614682131160208 ], [ -96.441528269841157, 29.614733131181076 ], [ -96.440595268782474, 29.614597131010811 ], [ -96.439800268824726, 29.614408131039859 ], [ -96.439619268540582, 29.614323130654309 ], [ -96.439331268593619, 29.614066130799539 ], [ -96.438957268404138, 29.613503131337875 ], [ -96.438481269081251, 29.612789130591484 ], [ -96.438266268768842, 29.612525130647875 ], [ -96.437988268616579, 29.612311131035042 ], [ -96.437595268105014, 29.611763130973152 ], [ -96.436969268173215, 29.611240130448163 ], [ -96.435908267445527, 29.610618130618253 ], [ -96.435790267855239, 29.610576130475618 ], [ -96.435411267340044, 29.610442130757214 ], [ -96.434001267252157, 29.610112130318178 ], [ -96.433567267131153, 29.61002713049146 ], [ -96.433134266737014, 29.609941130416971 ], [ -96.430998266166966, 29.609770130791855 ], [ -96.430486266541521, 29.609629130494902 ], [ -96.43029926656196, 29.609486130070394 ], [ -96.430210266831679, 29.609418130729168 ], [ -96.429941266224404, 29.609326130140762 ], [ -96.429705266492235, 29.609402130477278 ], [ -96.42919326639128, 29.609568130601431 ], [ -96.428120266006317, 29.610301131060311 ], [ -96.427669266115231, 29.610721130756492 ], [ -96.427217265750173, 29.610970131285598 ], [ -96.426206265566705, 29.611712131464738 ], [ -96.425220264940648, 29.612304131179595 ], [ -96.424909264855643, 29.612541130985171 ], [ -96.42451426564152, 29.612719131655602 ], [ -96.424212264875294, 29.612855130913324 ], [ -96.423386264985254, 29.613075131525576 ], [ -96.422160264089328, 29.613226131732898 ], [ -96.421317264285918, 29.613520131731814 ], [ -96.420388263891994, 29.613685131633559 ], [ -96.419943263553463, 29.613876131922122 ], [ -96.419189264238966, 29.614055131504028 ], [ -96.418660264172146, 29.614335131549478 ], [ -96.417806264048465, 29.614694131900993 ], [ -96.417644263520316, 29.614806132324972 ], [ -96.417446263660679, 29.614989132181574 ], [ -96.417221262998282, 29.615342131666871 ], [ -96.416960263824151, 29.615987131825879 ], [ -96.416805263554437, 29.616658132254283 ], [ -96.416820263726848, 29.617053132763715 ], [ -96.416910263142668, 29.617515132904671 ], [ -96.417187263163726, 29.618193132959195 ], [ -96.417349263392808, 29.618400132588768 ], [ -96.417519263916503, 29.61855613264369 ], [ -96.417673263540962, 29.618808132369249 ], [ -96.41798626353561, 29.619095133212806 ], [ -96.418712264358632, 29.619508133207841 ], [ -96.419010263768953, 29.619633133235801 ], [ -96.419741264619915, 29.619737132985637 ], [ -96.420056264196845, 29.619692132586739 ], [ -96.420426264559708, 29.619640132442576 ], [ -96.421123264958624, 29.619740132756618 ], [ -96.421803264627513, 29.619837133248524 ], [ -96.422545265015245, 29.619869132615928 ], [ -96.42354226492759, 29.620015133183863 ], [ -96.423603265353478, 29.620024132986963 ], [ -96.424516265857221, 29.620253133139929 ], [ -96.425524265969742, 29.620576133240899 ], [ -96.42610026594501, 29.620857132575253 ], [ -96.426588266188787, 29.621190133143198 ], [ -96.42699226662117, 29.621550132809638 ], [ -96.427237266287264, 29.621840132990467 ], [ -96.427602266765533, 29.622405133347684 ], [ -96.428495266752876, 29.624461133262972 ], [ -96.428753267225375, 29.62537113394238 ], [ -96.429049267021156, 29.626196133500855 ], [ -96.42960526732908, 29.62720313390227 ], [ -96.429903266767838, 29.627644134062876 ], [ -96.429982267237563, 29.627761134324494 ], [ -96.430227266943504, 29.628428133989416 ], [ -96.430214267405191, 29.628444134455741 ], [ -96.429919266736917, 29.628817134535613 ], [ -96.429847267500378, 29.629279134129664 ], [ -96.429913267697131, 29.629922134514988 ], [ -96.43018026722423, 29.630789134319429 ], [ -96.430397267186763, 29.631123134473217 ], [ -96.431113268171259, 29.632227134710877 ], [ -96.431341268132002, 29.632433135288128 ], [ -96.431750268234779, 29.6326031351064 ], [ -96.432001268413245, 29.632976134692687 ], [ -96.432758268468788, 29.634455135331994 ], [ -96.433314268458176, 29.63542113520894 ], [ -96.435130268440261, 29.637752135530583 ], [ -96.435677269556336, 29.638243135692125 ], [ -96.436852269525744, 29.63903713622615 ], [ -96.438448269580732, 29.640497136452748 ], [ -96.440594270746701, 29.642207137153598 ], [ -96.441222270349485, 29.642708137000568 ], [ -96.443170271602085, 29.644421136878933 ], [ -96.443462271106128, 29.64472513706956 ], [ -96.444219271804869, 29.64532513685689 ], [ -96.445348271547559, 29.64647313783782 ], [ -96.446135272649173, 29.647488137978311 ], [ -96.446944272576204, 29.648785137688272 ], [ -96.44742827270845, 29.649896138119214 ], [ -96.447649272500087, 29.650776138549137 ], [ -96.447666272713633, 29.651028137922133 ], [ -96.447804272941625, 29.65144113853562 ], [ -96.448284272479995, 29.652237138078824 ], [ -96.448561273389643, 29.652876139018748 ], [ -96.448592272903682, 29.653366138574064 ], [ -96.448594272996914, 29.653401138454697 ], [ -96.448602273498182, 29.653529138709889 ], [ -96.448529272980451, 29.653599138363479 ], [ -96.44840027295939, 29.653724138520364 ], [ -96.447909273233094, 29.654004138837713 ], [ -96.447935272872414, 29.654213138869128 ], [ -96.448059272871589, 29.654983138784797 ], [ -96.448131273342113, 29.655700139602523 ], [ -96.448541272821586, 29.656756139352655 ], [ -96.448783272890708, 29.657706139240862 ], [ -96.448964273216347, 29.658029139681975 ], [ -96.449455273451306, 29.658613140158607 ], [ -96.449524273366393, 29.65869514003856 ], [ -96.450071274018313, 29.659458139511337 ], [ -96.450410274234571, 29.660194139997856 ], [ -96.450527273516414, 29.660833140021971 ], [ -96.450766273692878, 29.661167140301959 ], [ -96.450871273637858, 29.661401140140601 ], [ -96.451008274297195, 29.661965140616402 ], [ -96.451183274387134, 29.663470140720964 ], [ -96.451166274261027, 29.66364614061483 ], [ -96.451149274302807, 29.663827141084614 ], [ -96.451279274221193, 29.665131141273314 ], [ -96.451435274045636, 29.666962141248906 ], [ -96.451665274834795, 29.667502141163258 ], [ -96.451774274903713, 29.667921141537224 ], [ -96.452021274379575, 29.668158141955686 ], [ -96.452161274402457, 29.668377141186678 ], [ -96.45403227481421, 29.670053141695217 ], [ -96.454594275025386, 29.670477142210348 ], [ -96.455801276146488, 29.671171142082184 ], [ -96.456350275798997, 29.671607142418932 ], [ -96.457389276498532, 29.671956141984779 ], [ -96.458290276257259, 29.67208814203083 ], [ -96.458660276159478, 29.67211814178815 ], [ -96.459164276534509, 29.672269141933793 ], [ -96.459449277043902, 29.672251142496116 ], [ -96.460801276774177, 29.672409141908208 ], [ -96.462115276832748, 29.672504141761021 ], [ -96.462901277738979, 29.672512142276453 ], [ -96.463971277958677, 29.672582141652402 ], [ -96.464295277880808, 29.672639142502131 ], [ -96.465034278432213, 29.672864142326222 ], [ -96.465853278460372, 29.673248142058149 ], [ -96.466215278050782, 29.673308142396767 ], [ -96.466792278156618, 29.673587142143457 ], [ -96.467194278933178, 29.673666142578558 ], [ -96.467541278818729, 29.673858142355112 ], [ -96.468326279004415, 29.67449814241354 ], [ -96.469011278656666, 29.675157142174207 ], [ -96.469209279469538, 29.675383142392057 ], [ -96.469308279030088, 29.675462142505406 ], [ -96.470420279770522, 29.676857142404675 ], [ -96.47061627978475, 29.677174142977623 ], [ -96.470857279457391, 29.677420142681083 ], [ -96.470979279864409, 29.677647142969825 ], [ -96.471987280607621, 29.678921142762153 ], [ -96.47249428040891, 29.679706142998093 ], [ -96.472768279902027, 29.680023142958504 ], [ -96.473576280901909, 29.680743143621346 ], [ -96.473660281070138, 29.680796143425162 ], [ -96.474481280540601, 29.681683143860685 ], [ -96.475120281292604, 29.682058143603289 ], [ -96.475515281173813, 29.682281143430387 ], [ -96.47580628149133, 29.682461143241262 ], [ -96.476046281008905, 29.682602143337096 ], [ -96.476988281723465, 29.683417143494353 ], [ -96.477257281831172, 29.683594143554011 ], [ -96.477856281936425, 29.6843271436477 ], [ -96.478473282436283, 29.684957144449605 ], [ -96.4786932824519, 29.685426144545534 ], [ -96.478243282447963, 29.685558143791088 ], [ -96.478205282002946, 29.685613144259353 ], [ -96.478193281902307, 29.685684144006082 ], [ -96.478186281821209, 29.685899144109307 ], [ -96.478212282108089, 29.68610814428656 ], [ -96.47825628173814, 29.686240144414398 ], [ -96.478501282150901, 29.686597144606612 ], [ -96.47853928210462, 29.686696144226094 ], [ -96.478615281858751, 29.686844144468285 ], [ -96.478728282646571, 29.686998144127397 ], [ -96.478848282208347, 29.68719114435272 ], [ -96.478911282300786, 29.687317144079991 ], [ -96.478949282730468, 29.687542144894238 ], [ -96.479006282350355, 29.687949144860131 ], [ -96.4789932818815, 29.688499144646769 ], [ -96.478874282709782, 29.688944144999294 ], [ -96.47884928249303, 29.689126145190485 ], [ -96.478824282333491, 29.689208144829632 ], [ -96.478817282300099, 29.689285145288011 ], [ -96.478893282561359, 29.689362145210143 ], [ -96.479271282802955, 29.689555145409948 ], [ -96.479472282929322, 29.689670144828082 ], [ -96.479567282927562, 29.689736145397653 ], [ -96.479617282136189, 29.689846144866898 ], [ -96.47964228289095, 29.690022145328481 ], [ -96.479611282538372, 29.690374145155655 ], [ -96.479611282030021, 29.690473144816753 ], [ -96.479492282527616, 29.691077145065094 ], [ -96.479372282108926, 29.691435145120732 ], [ -96.47934128252534, 29.691638145371016 ], [ -96.479353282813804, 29.691842145345035 ], [ -96.479322282775854, 29.69191914528891 ], [ -96.479234282925859, 29.691990145859275 ], [ -96.479120282690715, 29.692061145199762 ], [ -96.478982282095302, 29.692133145621039 ], [ -96.478950282618399, 29.692232145737908 ], [ -96.479001282918233, 29.692342145248524 ], [ -96.479045282929818, 29.692391145790417 ], [ -96.479121282342717, 29.692457145399572 ], [ -96.479272283008711, 29.692545145313453 ], [ -96.479624282805972, 29.692858145483605 ], [ -96.479813283052749, 29.693106145444197 ], [ -96.47987628230095, 29.693287145595285 ], [ -96.47994628280334, 29.693672146194643 ], [ -96.479996283209545, 29.6938481457079 ], [ -96.480028282670958, 29.69390314613571 ], [ -96.480129282681986, 29.693991145444006 ], [ -96.480273282927485, 29.694057145881423 ], [ -96.480349282785653, 29.694062145843294 ], [ -96.480683283110338, 29.694018146011647 ], [ -96.480815283326379, 29.694013145822044 ], [ -96.480953283154577, 29.694035146158711 ], [ -96.48106128295781, 29.694117146010701 ], [ -96.481105283335225, 29.694194145462088 ], [ -96.481205282910153, 29.694518145610729 ], [ -96.481256283397911, 29.694892146187239 ], [ -96.481451283569612, 29.695464146340214 ], [ -96.481439283387004, 29.69551914651851 ], [ -96.481389282802837, 29.695546146308111 ], [ -96.481212283290304, 29.695612146179666 ], [ -96.481086283183828, 29.69570014578828 ], [ -96.481049283591844, 29.695766145976172 ], [ -96.481030283557459, 29.695838145802171 ], [ -96.481023282907813, 29.695909145774085 ], [ -96.481030282827206, 29.696041146209403 ], [ -96.480986283022261, 29.696415145908613 ], [ -96.480917282779117, 29.696624146678595 ], [ -96.480847282651524, 29.696668146002786 ], [ -96.480444283435105, 29.696806145984414 ], [ -96.480300282746171, 29.696866146841462 ], [ -96.480023283181424, 29.69702014668762 ], [ -96.47993528329485, 29.697097146326406 ], [ -96.479896282600166, 29.697140146436126 ], [ -96.479783282815035, 29.697262146749797 ], [ -96.479576283293525, 29.697438146269128 ], [ -96.479450282432211, 29.69758614688655 ], [ -96.479412282843981, 29.697663146798178 ], [ -96.479337282509192, 29.697927146863723 ], [ -96.479268283284341, 29.698395146396216 ], [ -96.479091283130572, 29.698736147263453 ], [ -96.47868228286319, 29.69926314664816 ], [ -96.478229283017953, 29.700006146823387 ], [ -96.478179282458839, 29.700121147557216 ], [ -96.478172282903245, 29.700292146729275 ], [ -96.478147282531864, 29.700462147267892 ], [ -96.477852282764033, 29.701402147158749 ], [ -96.477688282444859, 29.701760147686617 ], [ -96.477657282105824, 29.701897147802676 ], [ -96.477436282399381, 29.70217814735884 ], [ -96.477342282618807, 29.702255147824918 ], [ -96.477260282019785, 29.702343147748508 ], [ -96.476939282079016, 29.702601147297589 ], [ -96.476882282743816, 29.702673148128309 ], [ -96.476719282771384, 29.702997147324236 ], [ -96.47661828252042, 29.703349147993642 ], [ -96.476310282693674, 29.703580147639762 ], [ -96.476121281921536, 29.703695148315397 ], [ -96.476026282609809, 29.703728147858776 ], [ -96.475850282379781, 29.703756148231069 ], [ -96.475642281806785, 29.703767147653448 ], [ -96.474987282459821, 29.703827147710726 ], [ -96.474883282129539, 29.703946147765883 ], [ -96.475943282381024, 29.704852148066319 ], [ -96.476081282348716, 29.704957148321977 ], [ -96.476242282133498, 29.7051091484891 ], [ -96.478917283014994, 29.707382148125728 ], [ -96.47893928343116, 29.70740014833553 ], [ -96.479734282922948, 29.708124148285229 ], [ -96.480735284137324, 29.709037148912284 ], [ -96.480882283593644, 29.709246148576181 ], [ -96.48115728400451, 29.709638148686228 ], [ -96.481362283391348, 29.709982148941648 ], [ -96.481545283895031, 29.710317149277174 ], [ -96.481703284086038, 29.710797149327849 ], [ -96.481807284086699, 29.711268149044447 ], [ -96.482212283924937, 29.713340149637308 ], [ -96.482265284400796, 29.713749149933463 ], [ -96.482291284138114, 29.713948150127653 ], [ -96.483068284097911, 29.713843149748797 ], [ -96.484511284631893, 29.713626149963112 ], [ -96.485628284899747, 29.713508149820488 ], [ -96.489407285530945, 29.712942149040909 ], [ -96.493510287499092, 29.712341149452786 ], [ -96.496076287138266, 29.711745148677249 ], [ -96.499566288624095, 29.710851148129414 ], [ -96.500298288767809, 29.710667148378587 ], [ -96.501890288983503, 29.710268147990394 ], [ -96.503337288965085, 29.709893147860576 ], [ -96.503988289501152, 29.709708148133004 ], [ -96.504525289319588, 29.709518148094837 ], [ -96.504901289842692, 29.709366148053785 ], [ -96.505277289707308, 29.709168148202686 ], [ -96.506187290278334, 29.708650147465644 ], [ -96.50668728986976, 29.708328148126771 ], [ -96.510059290741623, 29.706212146833415 ], [ -96.511290291135637, 29.705408147200036 ], [ -96.512267291522022, 29.704779147354341 ], [ -96.513142291958943, 29.704346146692416 ], [ -96.513615291940184, 29.704157147050793 ], [ -96.515069292571667, 29.70369314700104 ], [ -96.515408291674646, 29.703598146697587 ], [ -96.51599729227695, 29.703659146350525 ], [ -96.51673729263004, 29.703430146120155 ], [ -96.51780129299631, 29.703186146628148 ], [ -96.518448292781045, 29.703090146442236 ], [ -96.519164292773752, 29.703044146196273 ], [ -96.519896293141954, 29.703055146472892 ], [ -96.520411293786012, 29.703098146035575 ], [ -96.520438293177335, 29.703100146632174 ], [ -96.522188293710343, 29.703461146579368 ], [ -96.531935296673566, 29.705547146768271 ], [ -96.535116297410696, 29.706070146790097 ], [ -96.536241297183338, 29.706263146565409 ], [ -96.536570297603603, 29.706320146151143 ], [ -96.536909297344508, 29.706378146411716 ], [ -96.537985298428325, 29.706564146087263 ], [ -96.539272298242793, 29.706564146337371 ], [ -96.540576298710178, 29.706567146492318 ], [ -96.54182429934734, 29.706580145856755 ], [ -96.54306229970625, 29.706529146461961 ], [ -96.544321299747878, 29.706501145814379 ], [ -96.54561029997403, 29.706465145949217 ], [ -96.546858299820627, 29.706458146292981 ], [ -96.546878299955594, 29.706947145962307 ], [ -96.5468822998467, 29.707485146688192 ], [ -96.546883300038104, 29.707564145930238 ], [ -96.546884300628861, 29.707905146073909 ], [ -96.546903300575963, 29.708698146714699 ], [ -96.546921300760488, 29.709781146872128 ], [ -96.54696630023399, 29.710902146649072 ], [ -96.547173300638875, 29.711984147201559 ], [ -96.547335300269083, 29.712829147764548 ], [ -96.547358300484589, 29.712948147036659 ], [ -96.54739030042731, 29.713119147333384 ], [ -96.548168301350628, 29.713095147791083 ], [ -96.549158300966909, 29.713132147183007 ], [ -96.55030130089834, 29.713440147370765 ], [ -96.552367302065605, 29.714599147130272 ], [ -96.552933302351946, 29.71489714788348 ], [ -96.553535302432664, 29.715136147814384 ], [ -96.555389303134888, 29.7157521476604 ], [ -96.555831303321767, 29.715844148010223 ], [ -96.556457302874946, 29.71587514766523 ], [ -96.556612302681316, 29.715883147711036 ], [ -96.556862303613556, 29.715895148069425 ], [ -96.558215303415651, 29.716048147687438 ], [ -96.55914030424087, 29.716240147940081 ], [ -96.559817303651613, 29.71640114775948 ], [ -96.560149303905462, 29.716502147818847 ], [ -96.561183304816694, 29.71681714776215 ], [ -96.562485305134302, 29.717367148003909 ], [ -96.563999304631523, 29.71784814749866 ], [ -96.5669703056233, 29.718358148104226 ], [ -96.567190305384798, 29.718396147406651 ], [ -96.56742930571464, 29.718506147593665 ], [ -96.567554306027887, 29.718564147374376 ], [ -96.568673305852968, 29.71882214766152 ], [ -96.569015306348277, 29.718946147556924 ], [ -96.569344306708203, 29.718956147695931 ], [ -96.56973630699494, 29.718845147831388 ], [ -96.571133306763514, 29.718969147324891 ], [ -96.571753306566336, 29.718966147467846 ], [ -96.573975308112324, 29.719104147462449 ], [ -96.574268307191474, 29.719122147806157 ], [ -96.576170307857623, 29.719164147845614 ], [ -96.579050309150873, 29.719439147557441 ], [ -96.579696309335958, 29.719562147379062 ], [ -96.579712309461655, 29.719563147568078 ], [ -96.580007309507124, 29.71957314791868 ], [ -96.580001309229331, 29.719517147216994 ], [ -96.579991309028159, 29.719388147582499 ], [ -96.582921309678142, 29.719626147753349 ], [ -96.583229310446555, 29.719652147414923 ], [ -96.584717310503137, 29.719868147909132 ], [ -96.584843310704841, 29.719894147239934 ], [ -96.585010310683828, 29.719909147602511 ], [ -96.588959311234461, 29.720478147113443 ], [ -96.589662311819353, 29.72058314709864 ], [ -96.590852312195963, 29.72065914702652 ], [ -96.591873312398931, 29.720809147375761 ], [ -96.592808312338377, 29.720942147665532 ], [ -96.593119312272734, 29.721021147536611 ], [ -96.593442313035439, 29.721106147751968 ], [ -96.594379312933512, 29.72143114732069 ], [ -96.596552313978606, 29.722285147756107 ], [ -96.597303313233326, 29.722644147303885 ], [ -96.597604313832477, 29.722750147494832 ], [ -96.600631314651736, 29.723681148026511 ], [ -96.601622314750742, 29.723986147369143 ], [ -96.602047314652026, 29.724027147796924 ], [ -96.604946315432443, 29.724302147968942 ], [ -96.6063083162352, 29.724270147800837 ], [ -96.607307316218964, 29.72414414799929 ], [ -96.607308316392704, 29.724363147596975 ], [ -96.608613317015511, 29.724241147205138 ], [ -96.60906131675624, 29.724175147684853 ], [ -96.609983317373448, 29.72394714738741 ], [ -96.611845316947139, 29.723772147490088 ], [ -96.615530318324602, 29.723427147316965 ], [ -96.617303318689622, 29.723529146772453 ], [ -96.620644319444963, 29.724035147046436 ], [ -96.620765319951417, 29.724046146999687 ], [ -96.6214643200409, 29.724112146899472 ], [ -96.623210320611065, 29.724466147120904 ], [ -96.62496232081898, 29.724724146637037 ], [ -96.626170320768964, 29.724969147052825 ], [ -96.627059320874679, 29.72519614689114 ], [ -96.627479321865763, 29.725303147314673 ], [ -96.628729321956556, 29.725547147238839 ], [ -96.631146322694931, 29.72582114740916 ], [ -96.633331323276948, 29.726363147187605 ], [ -96.633867323018364, 29.726370147382369 ], [ -96.634529323539198, 29.726243147366397 ], [ -96.634713323711509, 29.726208146711159 ], [ -96.635210322923683, 29.72603014719683 ], [ -96.635943323855884, 29.725627146969437 ], [ -96.636911324228379, 29.725075146596197 ], [ -96.637578323891631, 29.724485146984762 ], [ -96.638159323743423, 29.723829146130893 ], [ -96.63860232436042, 29.723058146460428 ], [ -96.638727324615985, 29.722715146008433 ], [ -96.638970323828872, 29.722260145902755 ], [ -96.639571323997714, 29.720537145281568 ], [ -96.639724324597452, 29.719792145459362 ], [ -96.639797324197588, 29.71896714546202 ], [ -96.639878324532987, 29.718577145362211 ], [ -96.639953323915492, 29.718450145318023 ], [ -96.640709324804433, 29.71764014530428 ], [ -96.641058324199761, 29.717388145151041 ], [ -96.641461324662913, 29.717205144986863 ], [ -96.642196324753371, 29.716963144523302 ], [ -96.642757325160886, 29.716841144915904 ], [ -96.643550324789643, 29.716757144542779 ], [ -96.644164325715153, 29.716680144944409 ], [ -96.645607325510994, 29.716753144597099 ], [ -96.646014325188943, 29.716814144776826 ], [ -96.648035326134149, 29.717338145196688 ], [ -96.649363326567382, 29.717738145167253 ], [ -96.650233327278102, 29.718074145131695 ], [ -96.651028327364216, 29.718457144543191 ], [ -96.651911326932932, 29.719054144602133 ], [ -96.652335327612263, 29.719449144983308 ], [ -96.652966327170532, 29.720251144855961 ], [ -96.653979327476804, 29.72139114525887 ], [ -96.654419327822239, 29.721977145706148 ], [ -96.6545373276454, 29.722133145096052 ], [ -96.6548403282371, 29.722537145231648 ], [ -96.656081328500463, 29.723954146088037 ], [ -96.656124328807451, 29.724003145486826 ], [ -96.657463328683477, 29.725951145809542 ], [ -96.657896328842966, 29.726648145980441 ], [ -96.658522329186397, 29.727825146515865 ], [ -96.658950329893699, 29.728354146436256 ], [ -96.6593863292143, 29.729172146569429 ], [ -96.660550330001485, 29.730875146652533 ], [ -96.661257330177136, 29.73180714713649 ], [ -96.66202633046862, 29.73265514708233 ], [ -96.662220330304834, 29.732842147355871 ], [ -96.662491331021826, 29.733020147200577 ], [ -96.662550330441391, 29.733058147697765 ], [ -96.662682330371055, 29.732935147832617 ], [ -96.662816330183432, 29.732809146987861 ], [ -96.662846330672593, 29.732792147141396 ], [ -96.66336633059413, 29.732505147681298 ], [ -96.663717330391606, 29.732311147312483 ], [ -96.664629331060752, 29.731602146671069 ], [ -96.665594330952231, 29.73054214707885 ], [ -96.665737330839789, 29.730324146949847 ], [ -96.666061330929736, 29.730107146657033 ], [ -96.667042331937878, 29.729157146897403 ], [ -96.667248331203922, 29.728693146286481 ], [ -96.66747133198389, 29.727928146126178 ], [ -96.667136331298252, 29.726758146302419 ], [ -96.667057331365129, 29.726241146154855 ], [ -96.667082331196113, 29.726104145669701 ], [ -96.667076331491629, 29.726066145884179 ], [ -96.667019331851819, 29.725983145930073 ], [ -96.666761331581185, 29.725747146169397 ], [ -96.666699330814794, 29.725579145766552 ], [ -96.666741331587289, 29.725369145954769 ], [ -96.666859331296934, 29.725269145393757 ], [ -96.667036330993682, 29.72522014545941 ], [ -96.667045331470149, 29.725180145405325 ], [ -96.667158331480834, 29.725026146050997 ], [ -96.667171331712623, 29.724905145832441 ], [ -96.667152331010712, 29.724790145368541 ], [ -96.667121331004026, 29.724702145722315 ], [ -96.66703233174421, 29.724565145390056 ], [ -96.66675533100522, 29.724356145290987 ], [ -96.66659833127477, 29.724174145123506 ], [ -96.666485331022159, 29.724075145096958 ], [ -96.666126330953801, 29.723564145255388 ], [ -96.666044330729051, 29.723432145500595 ], [ -96.666012330579647, 29.723316144958762 ], [ -96.66600633152153, 29.723184145360722 ], [ -96.666019331160115, 29.722865145050083 ], [ -96.666050331325593, 29.722684145151785 ], [ -96.666107330574476, 29.722569145504284 ], [ -96.66645433070309, 29.722211145529389 ], [ -96.66663033115239, 29.721953145269847 ], [ -96.666743330865515, 29.721722145316004 ], [ -96.666819331305859, 29.721480144707225 ], [ -96.666832330800588, 29.721365144590813 ], [ -96.66692633132655, 29.721123145155449 ], [ -96.666889331370129, 29.720859144563605 ], [ -96.666857331621415, 29.720738144740345 ], [ -96.666750330724412, 29.720644144901932 ], [ -96.666706330769316, 29.720518145074173 ], [ -96.666637330827882, 29.720369144749466 ], [ -96.666070331370676, 29.719704144229073 ], [ -96.665711330299288, 29.719324144189208 ], [ -96.665188330465895, 29.719016144431784 ], [ -96.664729330588784, 29.71873014477157 ], [ -96.664609330067776, 29.718621144746848 ], [ -96.664326329873802, 29.718258144308145 ], [ -96.664275330478262, 29.718104144774262 ], [ -96.664263330377537, 29.717988143960184 ], [ -96.664288330107766, 29.717499143957806 ], [ -96.664307330823092, 29.717372144367591 ], [ -96.664351330758919, 29.717235144123997 ], [ -96.664414330509587, 29.717103144252984 ], [ -96.664502330178735, 29.716977144538451 ], [ -96.665177330865959, 29.716317144051526 ], [ -96.665996330527292, 29.715679144218662 ], [ -96.66621033095474, 29.715437143881378 ], [ -96.666298330605045, 29.71528914373987 ], [ -96.666304330831636, 29.71522814343929 ], [ -96.666285330982305, 29.715129143373911 ], [ -96.666229330247432, 29.715031143813675 ], [ -96.66607133118859, 29.714844143525095 ], [ -96.665398330012266, 29.71428314318306 ], [ -96.665139329997686, 29.714112143833987 ], [ -96.665032330200972, 29.713980143101502 ], [ -96.664957330201588, 29.713843143853882 ], [ -96.664919330515815, 29.713700143185921 ], [ -96.664938329822178, 29.713463143418462 ], [ -96.664982330479987, 29.713364143017085 ], [ -96.665159330353418, 29.713210143408478 ], [ -96.665291330239057, 29.713128143315384 ], [ -96.666192330804108, 29.712738143138836 ], [ -96.666526330239918, 29.712551142783909 ], [ -96.666645331075358, 29.712419143595447 ], [ -96.666727330579135, 29.712298142871933 ], [ -96.666784331169708, 29.712177143445786 ], [ -96.666885330738111, 29.711666143045942 ], [ -96.666923330403236, 29.711314143286465 ], [ -96.66695433028319, 29.711182142487431 ], [ -96.667024330842679, 29.711077142813515 ], [ -96.667137330403676, 29.711001143220624 ], [ -96.667269331286406, 29.710935142996281 ], [ -96.667439330914362, 29.710869142851635 ], [ -96.667565331292209, 29.710863142855274 ], [ -96.66775433042514, 29.710902142509021 ], [ -96.667861331225055, 29.710957142826675 ], [ -96.668277330855702, 29.711215142866372 ], [ -96.668365330720647, 29.711259142670205 ], [ -96.668478331255599, 29.711281143324168 ], [ -96.668585331204824, 29.711353142875023 ], [ -96.668629331185912, 29.71140814248669 ], [ -96.668680330734645, 29.711507143317633 ], [ -96.668705331220977, 29.711584142692139 ], [ -96.668737330779663, 29.711765142674341 ], [ -96.668843331268917, 29.711930142745146 ], [ -96.669058331645303, 29.71219914318019 ], [ -96.669171331452148, 29.712299143218139 ], [ -96.669259331177713, 29.712359143253721 ], [ -96.669354331147758, 29.712414142872348 ], [ -96.669480331019102, 29.712469143003851 ], [ -96.669593331689796, 29.712579143328608 ], [ -96.669694331655307, 29.712639142719173 ], [ -96.669813331656286, 29.712689143162311 ], [ -96.669908331338661, 29.712705143276157 ], [ -96.670147331756368, 29.712700143454967 ], [ -96.670279332098303, 29.712656143145878 ], [ -96.670487331751204, 29.712568142905308 ], [ -96.670859331499301, 29.712392142595188 ], [ -96.671016331307044, 29.712299143344779 ], [ -96.671180331901581, 29.712172143224294 ], [ -96.671646332075724, 29.711727142941552 ], [ -96.671707332126843, 29.711562143027955 ], [ -96.671663332422682, 29.711462142456739 ], [ -96.671539331629091, 29.711320143159426 ], [ -96.671319332329617, 29.71123214266504 ], [ -96.671130332252375, 29.711238142857418 ], [ -96.671073331600027, 29.711210142346186 ], [ -96.670053331318357, 29.710891142601845 ], [ -96.669757331894473, 29.710710143104865 ], [ -96.669688331697046, 29.710638142264589 ], [ -96.669556331432076, 29.710435142458234 ], [ -96.669493330820373, 29.710264142675005 ], [ -96.669449331652174, 29.710083142503816 ], [ -96.66943633102666, 29.709956142995289 ], [ -96.669442331268456, 29.70965914257053 ], [ -96.669468331138262, 29.709599142488678 ], [ -96.669512331807951, 29.709560142731778 ], [ -96.669612331218602, 29.709500142282245 ], [ -96.669801331437455, 29.709407142555801 ], [ -96.67034933196426, 29.709297142061022 ], [ -96.671149331177858, 29.709077142240133 ], [ -96.672472332391749, 29.70885214224737 ], [ -96.672762331857925, 29.708874141988634 ], [ -96.67305833182445, 29.709022142361803 ], [ -96.673234331733454, 29.709132142161444 ], [ -96.67330333266672, 29.709198141884137 ], [ -96.673392332441139, 29.709264142399608 ], [ -96.673486332597747, 29.709308142000943 ], [ -96.67368833233003, 29.709457142442737 ], [ -96.673757331930076, 29.709473142261711 ], [ -96.673801332163151, 29.709451142760489 ], [ -96.673933332118764, 29.709330142396976 ], [ -96.674005332359386, 29.709257142220167 ], [ -96.67407833207956, 29.709185142098281 ], [ -96.674097332601889, 29.709055142323322 ], [ -96.674072331984391, 29.709022142485665 ], [ -96.674078332588124, 29.708907142654482 ], [ -96.674047332203884, 29.708802142604856 ], [ -96.674003331919607, 29.708714142254749 ], [ -96.673789332427006, 29.708115141877304 ], [ -96.673770331830482, 29.708016141874293 ], [ -96.673763332038718, 29.707912142393845 ], [ -96.673814332011062, 29.707571142370949 ], [ -96.673902332555429, 29.707395142279079 ], [ -96.673984332055682, 29.7072901416477 ], [ -96.674330332522118, 29.706922141990731 ], [ -96.67462033235276, 29.706686141337631 ], [ -96.675200332897376, 29.706350141494127 ], [ -96.675792333232593, 29.706164141522223 ], [ -96.676340332651847, 29.706076141360747 ], [ -96.676472333159225, 29.70607614173317 ], [ -96.676875333280009, 29.706186141576001 ], [ -96.677316333580606, 29.706285141625777 ], [ -96.677511333365146, 29.706340141412159 ], [ -96.677612332728827, 29.706395141842869 ], [ -96.677795333729563, 29.706582141721366 ], [ -96.677977333359451, 29.706395141934589 ], [ -96.678002333417609, 29.706219141728933 ], [ -96.677984333765764, 29.706142141808549 ], [ -96.677939333651423, 29.70607014159723 ], [ -96.677889333395285, 29.706026141696249 ], [ -96.677448332796999, 29.705702141478945 ], [ -96.677379332981346, 29.705603141341033 ], [ -96.67719033296045, 29.705235141535347 ], [ -96.6771333330543, 29.705042141772051 ], [ -96.67711533269599, 29.704927141542285 ], [ -96.6771153328568, 29.704756141354942 ], [ -96.677134332512821, 29.704569141297519 ], [ -96.67716533325509, 29.704465141280163 ], [ -96.677259333419684, 29.70426114156416 ], [ -96.67737333278545, 29.704080141202262 ], [ -96.677637332623732, 29.703833141144486 ], [ -96.677713332768249, 29.703772141078822 ], [ -96.677978333404781, 29.703580140565801 ], [ -96.678148333256715, 29.703486141084273 ], [ -96.678689333391247, 29.703338140730935 ], [ -96.679722333692396, 29.703140140687143 ], [ -96.680232333600429, 29.702986141094168 ], [ -96.680554333829136, 29.702860140519928 ], [ -96.681328334262929, 29.702442140679384 ], [ -96.681410333818874, 29.702387140643641 ], [ -96.681486333529577, 29.702321140844656 ], [ -96.682122334121289, 29.701458140633981 ], [ -96.682317334017483, 29.701232140647139 ], [ -96.682393333853042, 29.7011001407054 ], [ -96.682664333824789, 29.700419140316544 ], [ -96.682802334583712, 29.699962140118256 ], [ -96.682859334715914, 29.69983613988866 ], [ -96.683029333821167, 29.699599139857071 ], [ -96.683300333927008, 29.699138139938444 ], [ -96.683495334718614, 29.698885139523572 ], [ -96.683590333908739, 29.698698139877774 ], [ -96.683741334431943, 29.698522139980245 ], [ -96.683823334835225, 29.698274139831511 ], [ -96.683923334292629, 29.698043139394521 ], [ -96.68413133432297, 29.697900139988555 ], [ -96.684301334337206, 29.69776913976165 ], [ -96.68470433480374, 29.697532139271722 ], [ -96.685139334548651, 29.69739513955825 ], [ -96.685334334307299, 29.69736713960868 ], [ -96.685643334711912, 29.69730713937231 ], [ -96.685888335324975, 29.697235139512415 ], [ -96.68606533520412, 29.697208139631158 ], [ -96.686342335248639, 29.697219139015658 ], [ -96.686480335328937, 29.697268139311383 ], [ -96.686581335181813, 29.697318139178613 ], [ -96.686694335113387, 29.69742813991483 ], [ -96.686795335380623, 29.697505139231534 ], [ -96.686890335478466, 29.697543139487369 ], [ -96.687167335382597, 29.697626139709463 ], [ -96.68733033574226, 29.69765313927503 ], [ -96.687488335760264, 29.697648139907024 ], [ -96.687639335648285, 29.697615139127709 ], [ -96.687759335566938, 29.697565139195181 ], [ -96.687827335594733, 29.697522139488896 ], [ -96.687835334854938, 29.697433139808258 ], [ -96.687819335747861, 29.697391139162306 ], [ -96.687772335455378, 29.697362139673931 ], [ -96.687596335695645, 29.697324139462921 ], [ -96.687540335165579, 29.697288139619371 ], [ -96.687549335594724, 29.697238139220097 ], [ -96.687609335753592, 29.697085139561043 ], [ -96.687717335607175, 29.696953139526929 ], [ -96.687756335405638, 29.696913139689158 ], [ -96.687799334986451, 29.696870139748217 ], [ -96.687840335325703, 29.6968361394424 ], [ -96.687978335803678, 29.696810139588813 ], [ -96.688026335309644, 29.696783139222717 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 541, "Tract": "48201452601", "Area_SqMi": 0.29308650269785863, "total_2009": 801, "total_2010": 769, "total_2011": 912, "total_2012": 860, "total_2013": 864, "total_2014": 902, "total_2015": 1047, "total_2016": 1085, "total_2017": 1025, "total_2018": 884, "total_2019": 887, "total_2020": 870, "age1": 280, "age2": 509, "age3": 178, "earn1": 161, "earn2": 290, "earn3": 516, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1, "naics_s06": 2, "naics_s07": 434, "naics_s08": 3, "naics_s09": 318, "naics_s10": 49, "naics_s11": 1, "naics_s12": 8, "naics_s13": 0, "naics_s14": 0, "naics_s15": 4, "naics_s16": 37, "naics_s17": 0, "naics_s18": 108, "naics_s19": 2, "naics_s20": 0, "race1": 614, "race2": 222, "race3": 6, "race4": 110, "race5": 0, "race6": 15, "ethnicity1": 632, "ethnicity2": 335, "edu1": 128, "edu2": 185, "edu3": 215, "edu4": 159, "Shape_Length": 11504.590767012472, "Shape_Area": 8170750.0726536419, "total_2021": 889, "total_2022": 967 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644069071193798, 29.711056177888398 ], [ -95.644062070737036, 29.71074917731687 ], [ -95.644044071117676, 29.710238177168812 ], [ -95.644047071381522, 29.709426177121269 ], [ -95.644037071515257, 29.709244177637359 ], [ -95.644032071318065, 29.709084177414177 ], [ -95.644026070866531, 29.708927177688604 ], [ -95.644008071193625, 29.70783217742467 ], [ -95.644019071204227, 29.707210176771738 ], [ -95.644034070993357, 29.706271177133033 ], [ -95.644040070963939, 29.705961176684507 ], [ -95.643993070516473, 29.705404176602745 ], [ -95.643987071114807, 29.705321176877973 ], [ -95.643978070790382, 29.703966176547393 ], [ -95.64227007069303, 29.703982176038579 ], [ -95.641026070257539, 29.703995176015926 ], [ -95.639988069813512, 29.70400917631666 ], [ -95.639223069560316, 29.704014176875624 ], [ -95.638345069261774, 29.704022176649175 ], [ -95.638073069326964, 29.704025176628601 ], [ -95.638020068957104, 29.704025176611058 ], [ -95.637364069471403, 29.704031176092144 ], [ -95.636991068774478, 29.704035176149052 ], [ -95.636146069047172, 29.704043176934555 ], [ -95.635228068516668, 29.704033176931269 ], [ -95.634390068359167, 29.704008176661073 ], [ -95.634396068041781, 29.704477176720093 ], [ -95.634430068955808, 29.705309177200174 ], [ -95.634440068586315, 29.706296176772486 ], [ -95.634454069068653, 29.707708177006186 ], [ -95.634457069060332, 29.708171177329248 ], [ -95.634457068387661, 29.708211177741465 ], [ -95.634459068393525, 29.708544177669292 ], [ -95.634463069163644, 29.709629178112735 ], [ -95.634466068722602, 29.710133177793381 ], [ -95.634467068559275, 29.710362178080505 ], [ -95.634473069266491, 29.71135617852126 ], [ -95.634475068589566, 29.711398177906503 ], [ -95.634481069301486, 29.711494178540647 ], [ -95.634485068745391, 29.711576178029578 ], [ -95.634491069046547, 29.711787178418948 ], [ -95.636652069353332, 29.71161017823006 ], [ -95.638901069751924, 29.711426177553484 ], [ -95.640127070513969, 29.711330177607319 ], [ -95.641722070569102, 29.711184177863998 ], [ -95.643571070742453, 29.711087177851777 ], [ -95.643775070809781, 29.711070177687308 ], [ -95.643872071298034, 29.711063177821714 ], [ -95.644029070813971, 29.711057177617874 ], [ -95.644069071193798, 29.711056177888398 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 542, "Tract": "48201340502", "Area_SqMi": 0.29674824219183082, "total_2009": 306, "total_2010": 221, "total_2011": 259, "total_2012": 236, "total_2013": 233, "total_2014": 274, "total_2015": 270, "total_2016": 295, "total_2017": 280, "total_2018": 256, "total_2019": 264, "total_2020": 247, "age1": 96, "age2": 95, "age3": 43, "earn1": 93, "earn2": 96, "earn3": 45, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 70, "naics_s08": 0, "naics_s09": 0, "naics_s10": 13, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 104, "naics_s19": 46, "naics_s20": 0, "race1": 169, "race2": 26, "race3": 1, "race4": 32, "race5": 1, "race6": 5, "ethnicity1": 168, "ethnicity2": 66, "edu1": 33, "edu2": 35, "edu3": 48, "edu4": 22, "Shape_Length": 11366.43986283704, "Shape_Area": 8272833.1026158081, "total_2021": 248, "total_2022": 234 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.126713931813711, 29.561711164091854 ], [ -95.125666931563217, 29.560595164487925 ], [ -95.124619931409839, 29.559487164252022 ], [ -95.124119931623255, 29.558926163797263 ], [ -95.122518931383752, 29.55723316410571 ], [ -95.122124931162162, 29.556809163599045 ], [ -95.121328930042779, 29.555946163562115 ], [ -95.120344930085707, 29.554872163548634 ], [ -95.119446930564237, 29.555513163697473 ], [ -95.119151929640893, 29.55573616376719 ], [ -95.119009930427111, 29.555853163151138 ], [ -95.118871929597859, 29.555973163713777 ], [ -95.118736929997226, 29.556097163880921 ], [ -95.118479929762188, 29.556354163564773 ], [ -95.118357929916783, 29.55648616375689 ], [ -95.118169930169742, 29.556708163856094 ], [ -95.118017929904227, 29.556902163859743 ], [ -95.117912929614889, 29.557046163955722 ], [ -95.117812929409141, 29.557193163714722 ], [ -95.117626930071125, 29.557493164027079 ], [ -95.117405929385853, 29.557896163696146 ], [ -95.116736929578451, 29.559138164295305 ], [ -95.115728929791246, 29.5610101645348 ], [ -95.114361929140131, 29.563548165336023 ], [ -95.115126929221233, 29.563867165220131 ], [ -95.115620929542942, 29.564067165656169 ], [ -95.11636593011194, 29.56437816548533 ], [ -95.117265929530589, 29.564711165361093 ], [ -95.117984929865912, 29.56492016575875 ], [ -95.118663930634455, 29.565037165130303 ], [ -95.11908993062319, 29.565110165386905 ], [ -95.120122931150405, 29.565118165004499 ], [ -95.121276930903178, 29.564953165247974 ], [ -95.121892930640655, 29.564786165650755 ], [ -95.122665931055607, 29.564500164858682 ], [ -95.1231809311993, 29.564224165199978 ], [ -95.123436931415128, 29.564064164856049 ], [ -95.124478931299706, 29.563332165244134 ], [ -95.125564931880447, 29.562553164197208 ], [ -95.126713931813711, 29.561711164091854 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 543, "Tract": "48201340102", "Area_SqMi": 1.7184948206611295, "total_2009": 927, "total_2010": 968, "total_2011": 988, "total_2012": 914, "total_2013": 1022, "total_2014": 876, "total_2015": 956, "total_2016": 898, "total_2017": 981, "total_2018": 1005, "total_2019": 1019, "total_2020": 1073, "age1": 232, "age2": 598, "age3": 179, "earn1": 109, "earn2": 290, "earn3": 610, "naics_s01": 0, "naics_s02": 54, "naics_s03": 0, "naics_s04": 87, "naics_s05": 0, "naics_s06": 59, "naics_s07": 137, "naics_s08": 302, "naics_s09": 1, "naics_s10": 19, "naics_s11": 11, "naics_s12": 30, "naics_s13": 0, "naics_s14": 70, "naics_s15": 3, "naics_s16": 121, "naics_s17": 1, "naics_s18": 89, "naics_s19": 25, "naics_s20": 0, "race1": 811, "race2": 110, "race3": 7, "race4": 63, "race5": 4, "race6": 14, "ethnicity1": 624, "ethnicity2": 385, "edu1": 142, "edu2": 206, "edu3": 239, "edu4": 190, "Shape_Length": 28619.141278078085, "Shape_Area": 47908694.366751611, "total_2021": 1076, "total_2022": 1009 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.205445954583837, 29.606429170962119 ], [ -95.205554954370498, 29.606355171006221 ], [ -95.205355954304082, 29.606171170984712 ], [ -95.205254954040626, 29.606079171179026 ], [ -95.204421953613803, 29.605334170614032 ], [ -95.203821953570369, 29.604766170784437 ], [ -95.202170953248725, 29.603233170027575 ], [ -95.200624952849552, 29.601676170392526 ], [ -95.200201952336883, 29.601278170528104 ], [ -95.197821951887562, 29.598890170065737 ], [ -95.195820951060881, 29.596900168945776 ], [ -95.194148951291339, 29.595259168856032 ], [ -95.193117950518584, 29.59424916866335 ], [ -95.19180095038179, 29.593022168784238 ], [ -95.190678950403878, 29.592080168489403 ], [ -95.190021949327914, 29.591479168223774 ], [ -95.18822194912066, 29.589977168441649 ], [ -95.187542948571505, 29.589359168354335 ], [ -95.186416948973758, 29.58834216818595 ], [ -95.184410948324597, 29.586629167684958 ], [ -95.184264947706765, 29.586768167473512 ], [ -95.184136947957782, 29.586870167691131 ], [ -95.183881947711413, 29.58707916773735 ], [ -95.182962947980712, 29.587872167685234 ], [ -95.182173947195977, 29.588515167760683 ], [ -95.182025947653869, 29.58865216814193 ], [ -95.181447947896288, 29.589334168712341 ], [ -95.180951947187992, 29.590107168272869 ], [ -95.180448946969776, 29.591338168792472 ], [ -95.180328947225988, 29.591818168547782 ], [ -95.180243947412649, 29.592121169353359 ], [ -95.180137947760414, 29.592488168624485 ], [ -95.179955947389388, 29.593200169530171 ], [ -95.179893947074731, 29.593428169083467 ], [ -95.179852946987666, 29.593614169295208 ], [ -95.179678947406643, 29.594237169381273 ], [ -95.179581946723445, 29.59463316966794 ], [ -95.179493947653256, 29.594892169930532 ], [ -95.179399947406537, 29.595223169190263 ], [ -95.17905394674986, 29.596638170237132 ], [ -95.178957947545683, 29.597019169592286 ], [ -95.178886946824917, 29.59735817017334 ], [ -95.178673947435854, 29.598079170495129 ], [ -95.178534947288583, 29.598555169870153 ], [ -95.178290946635926, 29.59925117054496 ], [ -95.17791994726916, 29.599823170454574 ], [ -95.177402947002633, 29.600319171057919 ], [ -95.177173947244995, 29.600499170785262 ], [ -95.176976946504439, 29.600626170516215 ], [ -95.178570947559479, 29.602249170926161 ], [ -95.178945947855027, 29.60263317137543 ], [ -95.181022947955242, 29.604857171941152 ], [ -95.184370948947375, 29.608441172288181 ], [ -95.18528894907503, 29.609484172500796 ], [ -95.187283949969625, 29.61157917225816 ], [ -95.188234950097609, 29.612578173247645 ], [ -95.188309949974126, 29.612730172958674 ], [ -95.189443950135143, 29.613742173120102 ], [ -95.189559950167123, 29.613854172751712 ], [ -95.19077695117015, 29.615022173347299 ], [ -95.191477950760046, 29.61573117312054 ], [ -95.191729951152652, 29.615991173066188 ], [ -95.1919099509783, 29.61617717366321 ], [ -95.192032950992996, 29.616089173188715 ], [ -95.192287950945243, 29.615889173122131 ], [ -95.196258952030576, 29.612991172257612 ], [ -95.197461952656795, 29.612146172220392 ], [ -95.200150953499303, 29.610256172440721 ], [ -95.200433952992782, 29.610055171567748 ], [ -95.202516953779636, 29.608571171829997 ], [ -95.204005954032922, 29.607510171155873 ], [ -95.204464954222288, 29.60714517136616 ], [ -95.204529953847796, 29.607097171385767 ], [ -95.204817953897205, 29.606890171122171 ], [ -95.204922954366538, 29.606808170948746 ], [ -95.205261954044602, 29.606555171025708 ], [ -95.205445954583837, 29.606429170962119 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 544, "Tract": "48201340101", "Area_SqMi": 1.5422912210811643, "total_2009": 2212, "total_2010": 1193, "total_2011": 1185, "total_2012": 1162, "total_2013": 1226, "total_2014": 1316, "total_2015": 1355, "total_2016": 1257, "total_2017": 1319, "total_2018": 1517, "total_2019": 1643, "total_2020": 1873, "age1": 434, "age2": 1164, "age3": 436, "earn1": 197, "earn2": 468, "earn3": 1369, "naics_s01": 0, "naics_s02": 123, "naics_s03": 0, "naics_s04": 482, "naics_s05": 197, "naics_s06": 455, "naics_s07": 198, "naics_s08": 169, "naics_s09": 0, "naics_s10": 0, "naics_s11": 14, "naics_s12": 109, "naics_s13": 7, "naics_s14": 12, "naics_s15": 154, "naics_s16": 20, "naics_s17": 1, "naics_s18": 37, "naics_s19": 56, "naics_s20": 0, "race1": 1521, "race2": 304, "race3": 10, "race4": 172, "race5": 1, "race6": 26, "ethnicity1": 1375, "ethnicity2": 659, "edu1": 360, "edu2": 422, "edu3": 450, "edu4": 368, "Shape_Length": 28567.341084853404, "Shape_Area": 42996439.585936852, "total_2021": 1666, "total_2022": 2034 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.184264947706765, 29.586768167473512 ], [ -95.184410948324597, 29.586629167684958 ], [ -95.18237194746267, 29.584865167497448 ], [ -95.182045947652654, 29.584537167181214 ], [ -95.18094394678549, 29.58347416736942 ], [ -95.17888694694642, 29.581117166450035 ], [ -95.177026946268512, 29.578945166527742 ], [ -95.172232944372794, 29.573346164891205 ], [ -95.171901944021172, 29.572960165047764 ], [ -95.169022943659769, 29.569621164420106 ], [ -95.168863943098657, 29.569784164380597 ], [ -95.168636943787916, 29.570017165088391 ], [ -95.166989942783857, 29.571748165116539 ], [ -95.166356942986781, 29.572480165614106 ], [ -95.165667942677857, 29.573374165691696 ], [ -95.164988942617413, 29.574039165431426 ], [ -95.163604942475317, 29.574908166196217 ], [ -95.162142942086106, 29.575829166226569 ], [ -95.161384941947787, 29.57649716620196 ], [ -95.159996941124831, 29.578164166927088 ], [ -95.159249940910058, 29.579063166930663 ], [ -95.157805941201147, 29.58020516736217 ], [ -95.159181941254758, 29.581675167060542 ], [ -95.15931494179145, 29.581818167389148 ], [ -95.162932942606403, 29.58568316806646 ], [ -95.168062944424847, 29.591144169526792 ], [ -95.168213944393642, 29.591305169211392 ], [ -95.168371944340095, 29.591474169022103 ], [ -95.168576944056909, 29.591692169481966 ], [ -95.169124943933298, 29.5922611694862 ], [ -95.169304944660809, 29.5924471696026 ], [ -95.169907944717551, 29.593096169699372 ], [ -95.17006794441464, 29.593266169720845 ], [ -95.170157944731045, 29.593363169209102 ], [ -95.171332945271189, 29.594622169817992 ], [ -95.173033945511378, 29.596417169596663 ], [ -95.174576946320698, 29.59804117053412 ], [ -95.176976946504439, 29.600626170516215 ], [ -95.177173947244995, 29.600499170785262 ], [ -95.177402947002633, 29.600319171057919 ], [ -95.17791994726916, 29.599823170454574 ], [ -95.178290946635926, 29.59925117054496 ], [ -95.178534947288583, 29.598555169870153 ], [ -95.178673947435854, 29.598079170495129 ], [ -95.178886946824917, 29.59735817017334 ], [ -95.178957947545683, 29.597019169592286 ], [ -95.17905394674986, 29.596638170237132 ], [ -95.179399947406537, 29.595223169190263 ], [ -95.179493947653256, 29.594892169930532 ], [ -95.179581946723445, 29.59463316966794 ], [ -95.179678947406643, 29.594237169381273 ], [ -95.179852946987666, 29.593614169295208 ], [ -95.179893947074731, 29.593428169083467 ], [ -95.179955947389388, 29.593200169530171 ], [ -95.180137947760414, 29.592488168624485 ], [ -95.180243947412649, 29.592121169353359 ], [ -95.180328947225988, 29.591818168547782 ], [ -95.180448946969776, 29.591338168792472 ], [ -95.180951947187992, 29.590107168272869 ], [ -95.181447947896288, 29.589334168712341 ], [ -95.182025947653869, 29.58865216814193 ], [ -95.182173947195977, 29.588515167760683 ], [ -95.182962947980712, 29.587872167685234 ], [ -95.183881947711413, 29.58707916773735 ], [ -95.184136947957782, 29.586870167691131 ], [ -95.184264947706765, 29.586768167473512 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 545, "Tract": "48201451302", "Area_SqMi": 0.60820447424710888, "total_2009": 317, "total_2010": 382, "total_2011": 396, "total_2012": 418, "total_2013": 458, "total_2014": 427, "total_2015": 496, "total_2016": 496, "total_2017": 521, "total_2018": 533, "total_2019": 575, "total_2020": 596, "age1": 165, "age2": 309, "age3": 145, "earn1": 153, "earn2": 227, "earn3": 239, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 2, "naics_s06": 0, "naics_s07": 192, "naics_s08": 0, "naics_s09": 6, "naics_s10": 4, "naics_s11": 9, "naics_s12": 28, "naics_s13": 0, "naics_s14": 6, "naics_s15": 139, "naics_s16": 102, "naics_s17": 1, "naics_s18": 111, "naics_s19": 15, "naics_s20": 0, "race1": 452, "race2": 95, "race3": 6, "race4": 53, "race5": 1, "race6": 12, "ethnicity1": 452, "ethnicity2": 167, "edu1": 96, "edu2": 118, "edu3": 128, "edu4": 112, "Shape_Length": 20475.245030949907, "Shape_Area": 16955699.789648291, "total_2021": 641, "total_2022": 619 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.606114063345913, 29.753926187507137 ], [ -95.606085063314396, 29.752414187264694 ], [ -95.606081063394811, 29.752001187081454 ], [ -95.606077062916768, 29.751654186868464 ], [ -95.606074063348473, 29.751478186920021 ], [ -95.606067063256546, 29.751043187039237 ], [ -95.606068063290451, 29.750177186558737 ], [ -95.606060063423485, 29.749721187142097 ], [ -95.606059063709878, 29.74964318676485 ], [ -95.606058063687513, 29.749311187054143 ], [ -95.606044063508293, 29.74879318657203 ], [ -95.606026063514619, 29.74843718707962 ], [ -95.605999063017165, 29.747973186437157 ], [ -95.605996063002024, 29.747857186712203 ], [ -95.60598806357504, 29.747563186527977 ], [ -95.605996062726746, 29.747231186221356 ], [ -95.606024063594646, 29.746977186579574 ], [ -95.606041063102708, 29.746822185975567 ], [ -95.606059063306319, 29.746227185792076 ], [ -95.606032063564172, 29.746228186128732 ], [ -95.605064063006296, 29.746248185857613 ], [ -95.604707062839083, 29.746255186122632 ], [ -95.604154062782456, 29.746263185941626 ], [ -95.603665062835404, 29.74627118655815 ], [ -95.602711062038523, 29.746274186747904 ], [ -95.602461062123751, 29.746284186579526 ], [ -95.602218061610529, 29.746304186622606 ], [ -95.601904062239228, 29.746374186688229 ], [ -95.599616061245655, 29.747409186789579 ], [ -95.599354060929286, 29.747502186937325 ], [ -95.599116061275694, 29.747565186260086 ], [ -95.598788061493266, 29.747623186346519 ], [ -95.598509061543112, 29.747645186761591 ], [ -95.598267060811594, 29.747645186884629 ], [ -95.598249061109328, 29.746820186750476 ], [ -95.598240061432648, 29.746004186560754 ], [ -95.598224061553196, 29.744949185831906 ], [ -95.597622060545831, 29.744956186068027 ], [ -95.596711060581754, 29.744979186588946 ], [ -95.596546060818753, 29.744984186600167 ], [ -95.59636006014685, 29.744984185845116 ], [ -95.595207060558948, 29.744988186600239 ], [ -95.595197059942549, 29.744713186351571 ], [ -95.595226060342156, 29.744444185836322 ], [ -95.595311060460062, 29.744174185757679 ], [ -95.59465705982872, 29.744198186018359 ], [ -95.594584060221166, 29.744197186245902 ], [ -95.594487059976956, 29.744174186129555 ], [ -95.594472059650641, 29.744035186126425 ], [ -95.594470059835913, 29.743907186422462 ], [ -95.594457060510223, 29.743011185786006 ], [ -95.593585060178043, 29.74302618574038 ], [ -95.593578059266648, 29.742583185600243 ], [ -95.59354505951309, 29.740603185090514 ], [ -95.592693059901706, 29.740604185785724 ], [ -95.591845059377448, 29.740613185234277 ], [ -95.590996058934522, 29.74063018539065 ], [ -95.590133058635047, 29.740638185779719 ], [ -95.589292059020664, 29.740657185834127 ], [ -95.588689058746027, 29.740657185952298 ], [ -95.588702058955192, 29.741710185409087 ], [ -95.58871105838648, 29.742810185912287 ], [ -95.588677058807349, 29.743027186510229 ], [ -95.58857305835572, 29.743609186097679 ], [ -95.588501058124251, 29.743881185958841 ], [ -95.588405058292409, 29.744158186239996 ], [ -95.588286058188686, 29.744442186370552 ], [ -95.588017058490976, 29.744984186689383 ], [ -95.587935058001747, 29.745117186264775 ], [ -95.586608057888768, 29.747450187228772 ], [ -95.586850058751395, 29.74757318734148 ], [ -95.587037057941785, 29.747669186765748 ], [ -95.588484058226541, 29.748403186913077 ], [ -95.590054059673989, 29.749646187056761 ], [ -95.592023059775357, 29.751220187930265 ], [ -95.592981060510198, 29.751810187781068 ], [ -95.593428059667602, 29.752025187995557 ], [ -95.593844060222636, 29.752208187970652 ], [ -95.594283060702878, 29.752375187444827 ], [ -95.594765060784979, 29.752528188301948 ], [ -95.59529106047674, 29.75265318793388 ], [ -95.595842060395924, 29.752773188299177 ], [ -95.596284061032776, 29.752841187964599 ], [ -95.596889060674471, 29.752965187716523 ], [ -95.597662061290677, 29.753128187893147 ], [ -95.598383061368409, 29.753280188286471 ], [ -95.600874062562752, 29.753752188126644 ], [ -95.601184062186107, 29.753800187548972 ], [ -95.601497062153612, 29.753832187685802 ], [ -95.601787062271868, 29.753852187515594 ], [ -95.602385062521094, 29.753878188147873 ], [ -95.604496063543337, 29.753904188195087 ], [ -95.604717063370828, 29.753904187672209 ], [ -95.605382063297625, 29.753916187907965 ], [ -95.605542063373051, 29.753920188075984 ], [ -95.606114063345913, 29.753926187507137 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 546, "Tract": "48201451903", "Area_SqMi": 0.22386197260991941, "total_2009": 99, "total_2010": 100, "total_2011": 123, "total_2012": 102, "total_2013": 114, "total_2014": 106, "total_2015": 90, "total_2016": 112, "total_2017": 144, "total_2018": 112, "total_2019": 87, "total_2020": 66, "age1": 21, "age2": 47, "age3": 15, "earn1": 18, "earn2": 26, "earn3": 39, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 0, "naics_s07": 2, "naics_s08": 1, "naics_s09": 0, "naics_s10": 1, "naics_s11": 37, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 23, "naics_s17": 0, "naics_s18": 4, "naics_s19": 7, "naics_s20": 0, "race1": 58, "race2": 18, "race3": 0, "race4": 6, "race5": 0, "race6": 1, "ethnicity1": 59, "ethnicity2": 24, "edu1": 13, "edu2": 14, "edu3": 21, "edu4": 14, "Shape_Length": 10423.141937460487, "Shape_Area": 6240888.6527692378, "total_2021": 75, "total_2022": 83 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.61512906443059, 29.716394179448923 ], [ -95.615088064458917, 29.716329180017922 ], [ -95.614953063723434, 29.716030179864354 ], [ -95.614886063710813, 29.715866180029373 ], [ -95.614809064253464, 29.715696179535435 ], [ -95.614762063691558, 29.715535179918081 ], [ -95.614697064060451, 29.715180179958374 ], [ -95.614666063806524, 29.714964179093613 ], [ -95.614666064055143, 29.71475717921291 ], [ -95.614660064168291, 29.714457179544549 ], [ -95.614647064277534, 29.714281179228642 ], [ -95.614694063525491, 29.713656179072963 ], [ -95.614711063477642, 29.713416179307071 ], [ -95.60467606091153, 29.714327179563405 ], [ -95.604671061316111, 29.714749179977936 ], [ -95.604679061725193, 29.715459179503082 ], [ -95.604711061233033, 29.716725180132887 ], [ -95.604725061986201, 29.717433180421377 ], [ -95.604726061705605, 29.717521180780064 ], [ -95.604727061322109, 29.717575180243273 ], [ -95.60473206153867, 29.717821180478303 ], [ -95.604753062007447, 29.718704180584101 ], [ -95.604781061136251, 29.719798180600442 ], [ -95.605727061946766, 29.719786180373248 ], [ -95.605963061953119, 29.719759180553304 ], [ -95.606143062009693, 29.719690180460649 ], [ -95.606465061719049, 29.719593180610847 ], [ -95.606593062282514, 29.719584180301553 ], [ -95.608220062446406, 29.719583180758129 ], [ -95.608834062378435, 29.719580180919753 ], [ -95.60972206268157, 29.719567180552271 ], [ -95.611095063712625, 29.719554180264055 ], [ -95.6127160636605, 29.719535180071372 ], [ -95.61304106346202, 29.719531180554355 ], [ -95.613238063880303, 29.719500180619004 ], [ -95.613361063950833, 29.719423180314791 ], [ -95.613452063607753, 29.71926618035415 ], [ -95.61345806362587, 29.719029180310738 ], [ -95.613431064049664, 29.717976180353407 ], [ -95.613451063871935, 29.717753180011989 ], [ -95.613498063220732, 29.717592180020084 ], [ -95.613556063316778, 29.717424180307447 ], [ -95.613776064064069, 29.717117180158024 ], [ -95.6140320636231, 29.71690717997755 ], [ -95.614253063433424, 29.716774179946771 ], [ -95.614518064311554, 29.716667179686834 ], [ -95.614716064146336, 29.716580180013661 ], [ -95.615049064337001, 29.716425180097332 ], [ -95.61512906443059, 29.716394179448923 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 547, "Tract": "48201452602", "Area_SqMi": 0.72417516020351436, "total_2009": 532, "total_2010": 321, "total_2011": 358, "total_2012": 383, "total_2013": 570, "total_2014": 535, "total_2015": 584, "total_2016": 588, "total_2017": 631, "total_2018": 374, "total_2019": 377, "total_2020": 337, "age1": 74, "age2": 284, "age3": 147, "earn1": 84, "earn2": 117, "earn3": 304, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 0, "naics_s06": 11, "naics_s07": 23, "naics_s08": 2, "naics_s09": 0, "naics_s10": 23, "naics_s11": 5, "naics_s12": 16, "naics_s13": 0, "naics_s14": 275, "naics_s15": 18, "naics_s16": 41, "naics_s17": 0, "naics_s18": 10, "naics_s19": 60, "naics_s20": 0, "race1": 257, "race2": 90, "race3": 3, "race4": 147, "race5": 0, "race6": 8, "ethnicity1": 380, "ethnicity2": 125, "edu1": 77, "edu2": 85, "edu3": 112, "edu4": 157, "Shape_Length": 19011.844049252843, "Shape_Area": 20188764.028300162, "total_2021": 329, "total_2022": 505 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.634491069046547, 29.711787178418948 ], [ -95.634485068745391, 29.711576178029578 ], [ -95.634481069301486, 29.711494178540647 ], [ -95.634475068589566, 29.711398177906503 ], [ -95.634473069266491, 29.71135617852126 ], [ -95.634467068559275, 29.710362178080505 ], [ -95.634466068722602, 29.710133177793381 ], [ -95.634463069163644, 29.709629178112735 ], [ -95.634459068393525, 29.708544177669292 ], [ -95.634457068387661, 29.708211177741465 ], [ -95.634457069060332, 29.708171177329248 ], [ -95.634454069068653, 29.707708177006186 ], [ -95.634440068586315, 29.706296176772486 ], [ -95.634430068955808, 29.705309177200174 ], [ -95.634396068041781, 29.704477176720093 ], [ -95.634390068359167, 29.704008176661073 ], [ -95.633731068099536, 29.703988176864517 ], [ -95.632880067789671, 29.703940176489567 ], [ -95.627503067195292, 29.703790176399316 ], [ -95.625344065981068, 29.703725177088089 ], [ -95.624545066169347, 29.703723176861299 ], [ -95.623972065849074, 29.703712177170846 ], [ -95.621087064546174, 29.703622177003833 ], [ -95.620193064465624, 29.703594177409638 ], [ -95.619954064650173, 29.703586177019474 ], [ -95.619922065110117, 29.703585177138422 ], [ -95.619452064849099, 29.703571176713094 ], [ -95.618568064358712, 29.703589177128841 ], [ -95.616982064496113, 29.703557177236991 ], [ -95.616381063563097, 29.703544176750857 ], [ -95.616007063952068, 29.703536176684352 ], [ -95.614858063283762, 29.703516176830966 ], [ -95.614644063479503, 29.70351117727698 ], [ -95.6146390634581, 29.703931177088226 ], [ -95.614649063763096, 29.704437177095109 ], [ -95.614656063811879, 29.704827177265663 ], [ -95.614662063504497, 29.705339177755498 ], [ -95.614712063500477, 29.705658177648569 ], [ -95.614699063929592, 29.706374178004587 ], [ -95.614707063758232, 29.706820177593869 ], [ -95.614702063182449, 29.706953178149245 ], [ -95.614692063658865, 29.707263177638605 ], [ -95.614692063512194, 29.707495177875792 ], [ -95.61473606351025, 29.708252177880738 ], [ -95.614739063491385, 29.708632178374369 ], [ -95.614740063178644, 29.708827178223473 ], [ -95.614742064108924, 29.708876178014997 ], [ -95.614749063420845, 29.709077178490734 ], [ -95.614776063817814, 29.709809178179633 ], [ -95.614777063640773, 29.710003178766272 ], [ -95.614788063584513, 29.710605178986398 ], [ -95.614785064031793, 29.711924178526857 ], [ -95.614763064307255, 29.712509179322065 ], [ -95.61474306367947, 29.71317717875786 ], [ -95.614711063477642, 29.713416179307071 ], [ -95.616619064399941, 29.71324817952917 ], [ -95.622822065641444, 29.712741179126603 ], [ -95.624025066656031, 29.71264317890607 ], [ -95.627185066651251, 29.712372178454459 ], [ -95.628580067396982, 29.712262178258275 ], [ -95.630847067431006, 29.712086178374388 ], [ -95.634491069046547, 29.711787178418948 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 548, "Tract": "48201452001", "Area_SqMi": 0.41764927475348129, "total_2009": 389, "total_2010": 389, "total_2011": 712, "total_2012": 416, "total_2013": 436, "total_2014": 364, "total_2015": 415, "total_2016": 377, "total_2017": 343, "total_2018": 275, "total_2019": 361, "total_2020": 362, "age1": 93, "age2": 148, "age3": 90, "earn1": 109, "earn2": 141, "earn3": 81, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 29, "naics_s05": 5, "naics_s06": 3, "naics_s07": 51, "naics_s08": 2, "naics_s09": 0, "naics_s10": 13, "naics_s11": 1, "naics_s12": 13, "naics_s13": 0, "naics_s14": 35, "naics_s15": 2, "naics_s16": 57, "naics_s17": 0, "naics_s18": 96, "naics_s19": 24, "naics_s20": 0, "race1": 223, "race2": 60, "race3": 4, "race4": 41, "race5": 0, "race6": 3, "ethnicity1": 208, "ethnicity2": 123, "edu1": 58, "edu2": 69, "edu3": 71, "edu4": 40, "Shape_Length": 14113.537913953569, "Shape_Area": 11643346.966249362, "total_2021": 350, "total_2022": 331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619695066066413, 29.735920183536013 ], [ -95.619674066518584, 29.735066183450407 ], [ -95.61967206575325, 29.734603183509286 ], [ -95.61966506555261, 29.734301183200163 ], [ -95.619658065886597, 29.734015183539015 ], [ -95.619660065681074, 29.732942183159341 ], [ -95.619647065548833, 29.731133182856066 ], [ -95.619632066157351, 29.730484182663428 ], [ -95.619616066152659, 29.728534181705548 ], [ -95.619619065809133, 29.72807418195071 ], [ -95.619052065877881, 29.728076182042454 ], [ -95.618730065800776, 29.728073182472947 ], [ -95.618396064994784, 29.72805518187231 ], [ -95.618044065318074, 29.728024182359022 ], [ -95.617760065611364, 29.727980181666354 ], [ -95.617419064790496, 29.727946181704404 ], [ -95.617031065324085, 29.727920181710179 ], [ -95.616450065165921, 29.727909182368052 ], [ -95.61532906443378, 29.727926182471812 ], [ -95.615050064488926, 29.727930181686219 ], [ -95.614570064193245, 29.72798418204756 ], [ -95.614140064059754, 29.728061182246304 ], [ -95.613725063920782, 29.72815918237562 ], [ -95.613041064413039, 29.728366182473071 ], [ -95.612669063563487, 29.728525182353277 ], [ -95.61116406334952, 29.729238182836582 ], [ -95.610348063101242, 29.729513182973427 ], [ -95.609564063642495, 29.729689182913777 ], [ -95.608742063279152, 29.729755182685018 ], [ -95.607920062837309, 29.729757182658627 ], [ -95.607106062808683, 29.729771182870767 ], [ -95.606584062472066, 29.729777182931866 ], [ -95.606295062558374, 29.729785182832632 ], [ -95.605741062511569, 29.729784183283311 ], [ -95.605752062190447, 29.730280183245288 ], [ -95.605763062460994, 29.731399183481614 ], [ -95.605770061928155, 29.731712183291076 ], [ -95.605772062381334, 29.731919182829127 ], [ -95.605778062278262, 29.73213118310461 ], [ -95.60577806232908, 29.732278183605047 ], [ -95.605784062311187, 29.732625183127166 ], [ -95.605785062880528, 29.73266518365546 ], [ -95.605790061943665, 29.73305418370164 ], [ -95.60579206217092, 29.733189183079574 ], [ -95.605793062959322, 29.733240183819273 ], [ -95.605797062804641, 29.733452183886676 ], [ -95.605800062160625, 29.733648184051148 ], [ -95.605803062810224, 29.733775183573325 ], [ -95.605814062223985, 29.734726183793796 ], [ -95.605820063028077, 29.735008183762329 ], [ -95.605818062899658, 29.735506184187287 ], [ -95.605827062236784, 29.735682184405285 ], [ -95.605846063019541, 29.7361831845663 ], [ -95.606157062715283, 29.736183183695783 ], [ -95.607057062905639, 29.736170183655567 ], [ -95.607299062820829, 29.736163183874737 ], [ -95.608733062980534, 29.736139184332991 ], [ -95.609079063369236, 29.736130184445248 ], [ -95.609376063041879, 29.736115184006724 ], [ -95.609540063480395, 29.736112184092313 ], [ -95.611462064389059, 29.736076183788981 ], [ -95.613097064905062, 29.736030183608868 ], [ -95.613544064628911, 29.736015184123353 ], [ -95.614260064279165, 29.735987183806753 ], [ -95.614892064906286, 29.735979183935363 ], [ -95.615192065297109, 29.735977183652906 ], [ -95.615435065463288, 29.735976183332074 ], [ -95.61596906489838, 29.735973183328412 ], [ -95.617085065243046, 29.735956183899908 ], [ -95.617496065396878, 29.735950183748059 ], [ -95.617520065878921, 29.73595218336208 ], [ -95.618114066184134, 29.735951183458653 ], [ -95.619695066066413, 29.735920183536013 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 549, "Tract": "48201452101", "Area_SqMi": 1.4259721308537587, "total_2009": 4000, "total_2010": 4065, "total_2011": 4026, "total_2012": 4353, "total_2013": 4556, "total_2014": 5264, "total_2015": 5305, "total_2016": 5094, "total_2017": 5325, "total_2018": 5073, "total_2019": 5297, "total_2020": 5000, "age1": 1385, "age2": 2676, "age3": 1371, "earn1": 1397, "earn2": 2110, "earn3": 1925, "naics_s01": 2, "naics_s02": 4, "naics_s03": 0, "naics_s04": 67, "naics_s05": 17, "naics_s06": 75, "naics_s07": 1459, "naics_s08": 680, "naics_s09": 4, "naics_s10": 343, "naics_s11": 49, "naics_s12": 416, "naics_s13": 0, "naics_s14": 657, "naics_s15": 11, "naics_s16": 1065, "naics_s17": 135, "naics_s18": 308, "naics_s19": 140, "naics_s20": 0, "race1": 2872, "race2": 1352, "race3": 34, "race4": 1071, "race5": 9, "race6": 94, "ethnicity1": 3915, "ethnicity2": 1517, "edu1": 984, "edu2": 1056, "edu3": 1209, "edu4": 798, "Shape_Length": 27650.292462277168, "Shape_Area": 39753662.432509363, "total_2021": 4981, "total_2022": 5432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.592634059026707, 29.73630218458154 ], [ -95.592586059009321, 29.735442184061636 ], [ -95.592569059276258, 29.734393183957284 ], [ -95.592564059302589, 29.733735183942098 ], [ -95.592515059036202, 29.73168218377975 ], [ -95.592505059036, 29.73073018308213 ], [ -95.592489058576589, 29.729862183691907 ], [ -95.592480058903789, 29.729042183113105 ], [ -95.59247305854575, 29.728180182718102 ], [ -95.592446058798132, 29.726899183032987 ], [ -95.592398058804307, 29.724501181851021 ], [ -95.592360058997755, 29.72310618210031 ], [ -95.592364058530663, 29.72265218178751 ], [ -95.592365058135982, 29.722567181826435 ], [ -95.592351058163459, 29.721726181894567 ], [ -95.592329058568282, 29.72052018160425 ], [ -95.592314058829373, 29.719508181450248 ], [ -95.592308058674163, 29.719289181062855 ], [ -95.592275058298412, 29.718036181092994 ], [ -95.592268058529186, 29.717297180666186 ], [ -95.59224405848407, 29.716443180902619 ], [ -95.592232058649799, 29.715607180420804 ], [ -95.592229057681266, 29.715398180470263 ], [ -95.588913057453183, 29.715668180967491 ], [ -95.588348057428433, 29.715703180700761 ], [ -95.588036057221586, 29.715723180362982 ], [ -95.587542057301093, 29.715757180873464 ], [ -95.585316056583949, 29.71596118060155 ], [ -95.583962055853448, 29.716067180362312 ], [ -95.582685055907831, 29.71616918097877 ], [ -95.575644054063204, 29.716727181293194 ], [ -95.571453052447239, 29.717067181597471 ], [ -95.57150005315323, 29.720492182259118 ], [ -95.571523053237627, 29.721882182695584 ], [ -95.571568053331632, 29.724522183064231 ], [ -95.571577053781695, 29.725417183422998 ], [ -95.571625052988693, 29.726648183006482 ], [ -95.57164205370691, 29.727096183401471 ], [ -95.571653053632872, 29.727315183355625 ], [ -95.571645053446218, 29.727432183906267 ], [ -95.571641053482992, 29.727734183779898 ], [ -95.572286053537113, 29.727731183145785 ], [ -95.572901053345305, 29.727732183179622 ], [ -95.574027053991571, 29.727729183522225 ], [ -95.574969054676501, 29.727782183348669 ], [ -95.575374054721991, 29.727815183904124 ], [ -95.576080054763992, 29.727862183776381 ], [ -95.576471054577439, 29.727866183716682 ], [ -95.5773460547925, 29.727865183327911 ], [ -95.578586054966934, 29.727843183786874 ], [ -95.579228054970784, 29.727848183192236 ], [ -95.579840055592072, 29.727922182938066 ], [ -95.580286055247456, 29.728001183285606 ], [ -95.580175055989017, 29.72845718303698 ], [ -95.580117055452931, 29.728920183437282 ], [ -95.580147055419118, 29.72929618330712 ], [ -95.580236055586198, 29.729779183640417 ], [ -95.580585055619039, 29.731450184234124 ], [ -95.580613055662795, 29.731617184064344 ], [ -95.580660056244895, 29.732051184100939 ], [ -95.580667056250064, 29.732267183894351 ], [ -95.58066005637771, 29.732642184665913 ], [ -95.580586056411249, 29.733284184670509 ], [ -95.580507055983389, 29.733772184773819 ], [ -95.580523056325831, 29.734158184255783 ], [ -95.580606056410986, 29.734517184985997 ], [ -95.58076005635273, 29.734924185037627 ], [ -95.58083705601338, 29.735083185160615 ], [ -95.580879056439343, 29.735171185191248 ], [ -95.580907055743566, 29.735228184697888 ], [ -95.580941055762807, 29.735305185137154 ], [ -95.580964056211485, 29.735358184793057 ], [ -95.580991056536405, 29.735420184589326 ], [ -95.581069056013121, 29.735647184827943 ], [ -95.58117105676034, 29.736159185261233 ], [ -95.581186056070308, 29.736342184989866 ], [ -95.581195055989809, 29.736446184752925 ], [ -95.581206056409414, 29.736562185393094 ], [ -95.585006057150224, 29.736458185277559 ], [ -95.5886240586768, 29.736403184464177 ], [ -95.589361058890773, 29.736414185134912 ], [ -95.589648058009686, 29.736397184730532 ], [ -95.592634059026707, 29.73630218458154 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 550, "Tract": "48201310102", "Area_SqMi": 0.45757103432974605, "total_2009": 583, "total_2010": 514, "total_2011": 666, "total_2012": 644, "total_2013": 657, "total_2014": 861, "total_2015": 984, "total_2016": 961, "total_2017": 944, "total_2018": 921, "total_2019": 892, "total_2020": 822, "age1": 243, "age2": 485, "age3": 212, "earn1": 142, "earn2": 388, "earn3": 410, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 107, "naics_s05": 47, "naics_s06": 7, "naics_s07": 24, "naics_s08": 2, "naics_s09": 1, "naics_s10": 13, "naics_s11": 46, "naics_s12": 50, "naics_s13": 1, "naics_s14": 5, "naics_s15": 0, "naics_s16": 84, "naics_s17": 1, "naics_s18": 501, "naics_s19": 50, "naics_s20": 0, "race1": 728, "race2": 108, "race3": 10, "race4": 76, "race5": 2, "race6": 16, "ethnicity1": 516, "ethnicity2": 424, "edu1": 183, "edu2": 188, "edu3": 168, "edu4": 158, "Shape_Length": 17307.280219622648, "Shape_Area": 12756297.296461241, "total_2021": 822, "total_2022": 940 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.351107998826365, 29.758984197281812 ], [ -95.351274998847344, 29.75875119702394 ], [ -95.351082998864882, 29.758630197358489 ], [ -95.350953998591351, 29.758549197205362 ], [ -95.350118998599328, 29.758070197616895 ], [ -95.349491998337456, 29.757727197260788 ], [ -95.349397998450456, 29.757675196910817 ], [ -95.34920299819899, 29.757561196828529 ], [ -95.349014997406641, 29.757453196766978 ], [ -95.348691997519254, 29.757266196924281 ], [ -95.348555998071831, 29.757185196774394 ], [ -95.347916997622278, 29.756802197310272 ], [ -95.347155997397351, 29.756348197119124 ], [ -95.346942997701618, 29.756222197392606 ], [ -95.346220996585672, 29.755794196613785 ], [ -95.345596996654677, 29.755418196673197 ], [ -95.345384997236323, 29.755290196917237 ], [ -95.34465399696937, 29.754850197077733 ], [ -95.343995996033911, 29.754460196364096 ], [ -95.34342199657452, 29.754103196418153 ], [ -95.343041996411102, 29.753875196895994 ], [ -95.342168996402734, 29.753360196979955 ], [ -95.34138799585746, 29.752894196443485 ], [ -95.340392995831706, 29.75417019643897 ], [ -95.33940199531061, 29.755425196706831 ], [ -95.338894995452378, 29.755159197353983 ], [ -95.338672995238895, 29.755075196910155 ], [ -95.338365995194351, 29.755054197132409 ], [ -95.338050994511036, 29.755070197101929 ], [ -95.338015995144616, 29.755077196727566 ], [ -95.337797994408405, 29.755339196737673 ], [ -95.337738994387635, 29.755417197384475 ], [ -95.337390994888395, 29.755916197448975 ], [ -95.335097993861083, 29.759008197646395 ], [ -95.334954993998124, 29.759331198254433 ], [ -95.334826994695831, 29.759648198223267 ], [ -95.334735994596755, 29.759813198595054 ], [ -95.33464599383862, 29.759949198017164 ], [ -95.334540994490084, 29.760054198139056 ], [ -95.333626994067345, 29.760754198349236 ], [ -95.333386994475148, 29.760880198136338 ], [ -95.333377993875644, 29.761017198182653 ], [ -95.333482993664319, 29.761216198252267 ], [ -95.333548994184028, 29.761340198417688 ], [ -95.333826994350545, 29.761482198738982 ], [ -95.333943994082077, 29.761542198846772 ], [ -95.334627994362748, 29.761681198669251 ], [ -95.335503994864354, 29.761728198928033 ], [ -95.336029994419945, 29.761757198886929 ], [ -95.337304994621107, 29.762099198170819 ], [ -95.337647995375193, 29.762191198715673 ], [ -95.33793399557311, 29.762220198292795 ], [ -95.338575995041253, 29.762098198836913 ], [ -95.339866995996545, 29.761460198150949 ], [ -95.340450995517358, 29.761370198574259 ], [ -95.340646996390888, 29.761340198188648 ], [ -95.341015995697035, 29.761373198223797 ], [ -95.341482996388166, 29.761521198041834 ], [ -95.34266799692503, 29.762029198646385 ], [ -95.343296996489755, 29.762138198552169 ], [ -95.343437996916165, 29.762163198619191 ], [ -95.343890996529765, 29.762149198728352 ], [ -95.345151996842262, 29.761957198180649 ], [ -95.345446997077445, 29.761979198573332 ], [ -95.345849997521398, 29.762008198366132 ], [ -95.346363996934869, 29.762306198462543 ], [ -95.346457997435792, 29.762405198412321 ], [ -95.346573997627317, 29.762528198062672 ], [ -95.346612997552796, 29.762631198272366 ], [ -95.34666999755413, 29.763888198452882 ], [ -95.346619997767888, 29.765318198859706 ], [ -95.346610997814665, 29.76557519931584 ], [ -95.346635998058971, 29.765716199272806 ], [ -95.346667998089899, 29.765895199317903 ], [ -95.346716997627979, 29.766005198684329 ], [ -95.34676499780447, 29.766115198764272 ], [ -95.346786997701599, 29.766164198826111 ], [ -95.346896997205889, 29.766221198976147 ], [ -95.34705799819973, 29.766306199174284 ], [ -95.347223997899547, 29.766394198699654 ], [ -95.347430998270553, 29.766460199100912 ], [ -95.347482997358028, 29.766473199513939 ], [ -95.347504997522464, 29.766478198784945 ], [ -95.347684998145013, 29.766517198760347 ], [ -95.347784998181723, 29.76644019953007 ], [ -95.347875997732189, 29.766365198966433 ], [ -95.348102997686397, 29.766176199258073 ], [ -95.348381998289682, 29.765966199313514 ], [ -95.348570998322103, 29.765735199243085 ], [ -95.348816997918817, 29.765349199197942 ], [ -95.349114998691093, 29.764898198825808 ], [ -95.349349997832192, 29.764486198183068 ], [ -95.349503998441392, 29.764086198584273 ], [ -95.349714998101248, 29.763490198471334 ], [ -95.349917998671003, 29.762690198587237 ], [ -95.350068998729498, 29.761927197741258 ], [ -95.350137997832618, 29.761535197647447 ], [ -95.35018899866833, 29.761284198221023 ], [ -95.350289998340315, 29.760828198280841 ], [ -95.35039399859626, 29.760418197936566 ], [ -95.350512997863007, 29.760010197412118 ], [ -95.350710998088573, 29.759589197920903 ], [ -95.350937998036201, 29.75923419776888 ], [ -95.351107998826365, 29.758984197281812 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 551, "Tract": "48201322900", "Area_SqMi": 0.64144528750161345, "total_2009": 541, "total_2010": 497, "total_2011": 476, "total_2012": 502, "total_2013": 434, "total_2014": 417, "total_2015": 458, "total_2016": 391, "total_2017": 541, "total_2018": 512, "total_2019": 513, "total_2020": 490, "age1": 91, "age2": 284, "age3": 127, "earn1": 49, "earn2": 127, "earn3": 326, "naics_s01": 111, "naics_s02": 0, "naics_s03": 0, "naics_s04": 42, "naics_s05": 34, "naics_s06": 158, "naics_s07": 4, "naics_s08": 1, "naics_s09": 0, "naics_s10": 2, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 80, "naics_s15": 0, "naics_s16": 57, "naics_s17": 0, "naics_s18": 12, "naics_s19": 1, "naics_s20": 0, "race1": 419, "race2": 59, "race3": 4, "race4": 13, "race5": 0, "race6": 7, "ethnicity1": 315, "ethnicity2": 187, "edu1": 88, "edu2": 121, "edu3": 132, "edu4": 70, "Shape_Length": 21235.530290568939, "Shape_Area": 17882396.770963404, "total_2021": 449, "total_2022": 502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.201279957506287, 29.712114193095122 ], [ -95.201273957626583, 29.711940192490193 ], [ -95.201266958357365, 29.711690192434702 ], [ -95.201251957905868, 29.711199192855744 ], [ -95.201238957410638, 29.71086519233042 ], [ -95.201239958063795, 29.710245192824466 ], [ -95.201241958174776, 29.709530192196539 ], [ -95.20124395755002, 29.709063192203253 ], [ -95.201180958247335, 29.70864919230052 ], [ -95.201093958187826, 29.707624191902447 ], [ -95.201142957697257, 29.707461191879684 ], [ -95.201197957615108, 29.707280192079523 ], [ -95.201136957219262, 29.706823191541723 ], [ -95.201087957723217, 29.706158191418179 ], [ -95.201084957125445, 29.70545019136792 ], [ -95.201091957491613, 29.704674191227237 ], [ -95.20107795795073, 29.703969190966848 ], [ -95.201077957024523, 29.703739190980475 ], [ -95.201074957369826, 29.70324019138824 ], [ -95.201073957539023, 29.702992190728928 ], [ -95.201071957950248, 29.702523190683216 ], [ -95.201070957931378, 29.702234191040528 ], [ -95.201068957562043, 29.701817190387487 ], [ -95.201066957538728, 29.701228190397575 ], [ -95.201065957053274, 29.701077190722312 ], [ -95.201062957735161, 29.700358190078706 ], [ -95.201062957017086, 29.700175190132786 ], [ -95.201059957354929, 29.699632190458725 ], [ -95.201056957004866, 29.698901190518022 ], [ -95.201055957614969, 29.698752190312018 ], [ -95.201053957614548, 29.698134189866128 ], [ -95.200694956970523, 29.698145189657382 ], [ -95.199968956514581, 29.698166190239149 ], [ -95.199644956497323, 29.698176189963004 ], [ -95.198973956948876, 29.698169190031191 ], [ -95.198183956371437, 29.698171189942315 ], [ -95.197421956591455, 29.698172190237781 ], [ -95.197004955756697, 29.698174190347281 ], [ -95.196435955872474, 29.698175190208676 ], [ -95.195437955686273, 29.698176190010322 ], [ -95.195175956062386, 29.698221190528017 ], [ -95.193931955534609, 29.69823419053002 ], [ -95.193649955317596, 29.698483190608954 ], [ -95.193283955427475, 29.698617189985871 ], [ -95.189816954093033, 29.69867019016796 ], [ -95.188882954092861, 29.698765190212175 ], [ -95.188367953817462, 29.698753190461325 ], [ -95.18796695379099, 29.698768190231689 ], [ -95.18704195345974, 29.69876319044948 ], [ -95.186139953910043, 29.698765190955019 ], [ -95.185203953435959, 29.698769190348617 ], [ -95.182911952479586, 29.698811190994416 ], [ -95.182946952845711, 29.698328190405498 ], [ -95.181853952702497, 29.698323190778844 ], [ -95.181177951929726, 29.698321190404091 ], [ -95.180660952211539, 29.698318190773008 ], [ -95.179837952319488, 29.698343190897209 ], [ -95.179575951709737, 29.698347190750013 ], [ -95.179476951658913, 29.698525190837135 ], [ -95.180553952490257, 29.699161190991202 ], [ -95.182150952884072, 29.700094191249061 ], [ -95.182570952381496, 29.700369190889397 ], [ -95.184451952940094, 29.701461191258868 ], [ -95.184763953028991, 29.701631191219658 ], [ -95.18512395328959, 29.701826191225052 ], [ -95.185917953834092, 29.702325191256591 ], [ -95.186506954073963, 29.702672191888464 ], [ -95.186696953420167, 29.702784191764223 ], [ -95.187173953735169, 29.703065191910571 ], [ -95.187551954447983, 29.703284191882315 ], [ -95.188479954602499, 29.703821191313001 ], [ -95.189499954552971, 29.704402191723162 ], [ -95.190048954424242, 29.704713191650651 ], [ -95.190671955373247, 29.705355191806081 ], [ -95.191369955543763, 29.705941191749098 ], [ -95.192050954948598, 29.706520192077363 ], [ -95.1940799559966, 29.70824119256854 ], [ -95.194705956344265, 29.708743192707601 ], [ -95.195435956256887, 29.70939019292112 ], [ -95.195730956585066, 29.709658192340495 ], [ -95.196002956027115, 29.709905192185389 ], [ -95.196143956844764, 29.710034192483075 ], [ -95.196618956298025, 29.710434192339861 ], [ -95.196988956800112, 29.711037192579919 ], [ -95.197124956891699, 29.711329193068202 ], [ -95.197201957110167, 29.711550192739164 ], [ -95.197315956977221, 29.712024193186309 ], [ -95.197365957398915, 29.712277193019172 ], [ -95.197404956961265, 29.712470193477458 ], [ -95.197648957365132, 29.71244819351158 ], [ -95.198618956843276, 29.712359192878509 ], [ -95.198839956888278, 29.712338192597628 ], [ -95.201097958079046, 29.71213119245801 ], [ -95.201279957506287, 29.712114193095122 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 552, "Tract": "48201323000", "Area_SqMi": 0.54012415811820547, "total_2009": 3608, "total_2010": 4690, "total_2011": 4114, "total_2012": 2789, "total_2013": 2958, "total_2014": 3365, "total_2015": 3082, "total_2016": 3051, "total_2017": 2839, "total_2018": 2689, "total_2019": 2662, "total_2020": 3021, "age1": 471, "age2": 1560, "age3": 889, "earn1": 873, "earn2": 922, "earn3": 1125, "naics_s01": 0, "naics_s02": 0, "naics_s03": 65, "naics_s04": 68, "naics_s05": 120, "naics_s06": 0, "naics_s07": 66, "naics_s08": 1, "naics_s09": 42, "naics_s10": 14, "naics_s11": 23, "naics_s12": 26, "naics_s13": 0, "naics_s14": 438, "naics_s15": 0, "naics_s16": 1029, "naics_s17": 174, "naics_s18": 79, "naics_s19": 91, "naics_s20": 684, "race1": 2053, "race2": 759, "race3": 30, "race4": 48, "race5": 5, "race6": 25, "ethnicity1": 1851, "ethnicity2": 1069, "edu1": 572, "edu2": 751, "edu3": 765, "edu4": 361, "Shape_Length": 17066.252194888417, "Shape_Area": 15057737.096600043, "total_2021": 3156, "total_2022": 2920 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.201084957219877, 29.697423189942953 ], [ -95.201076957419147, 29.697164190133492 ], [ -95.201059957292614, 29.696693189449981 ], [ -95.201068957234071, 29.696018189532111 ], [ -95.201058957603124, 29.695676189732126 ], [ -95.20104595710724, 29.695211188989077 ], [ -95.201030956742272, 29.694659189203154 ], [ -95.201024957002815, 29.694420188916386 ], [ -95.201015957486121, 29.694082189322703 ], [ -95.200930956808847, 29.692412188671966 ], [ -95.200929956457855, 29.692209189003144 ], [ -95.200982956620393, 29.690878188978274 ], [ -95.20040595645871, 29.690865188437652 ], [ -95.198629955879809, 29.690878188525598 ], [ -95.197839955616033, 29.690886188847376 ], [ -95.197264956364023, 29.690890188384703 ], [ -95.195398955212667, 29.690891188586278 ], [ -95.194715955089563, 29.690918189040804 ], [ -95.193249954641487, 29.690886189077101 ], [ -95.193267955452143, 29.691592188968912 ], [ -95.191816954294012, 29.691597189348123 ], [ -95.191234954595515, 29.691599189259254 ], [ -95.190373954607722, 29.6916151888008 ], [ -95.189523954410177, 29.691607189006305 ], [ -95.188614953372749, 29.691615188817373 ], [ -95.187694953239713, 29.691623188867364 ], [ -95.186786952883637, 29.691634189191717 ], [ -95.185985953599968, 29.691658189270292 ], [ -95.185183952824644, 29.691676189000439 ], [ -95.184598952697584, 29.691661189069308 ], [ -95.184413952819114, 29.691657189354085 ], [ -95.183609952734116, 29.69168218925763 ], [ -95.182804952069134, 29.691720189425777 ], [ -95.182808952192389, 29.692105189259614 ], [ -95.182812952632972, 29.692577189571384 ], [ -95.182816952133066, 29.693025189847074 ], [ -95.18282495239292, 29.693808189404638 ], [ -95.182828952553507, 29.693933189634361 ], [ -95.182864952754812, 29.694718189629569 ], [ -95.182898952749127, 29.695967189800211 ], [ -95.182904953034949, 29.696132189980645 ], [ -95.182909952628123, 29.696421190147394 ], [ -95.182923952089254, 29.697149190678243 ], [ -95.182946952845711, 29.698328190405498 ], [ -95.182911952479586, 29.698811190994416 ], [ -95.185203953435959, 29.698769190348617 ], [ -95.186139953910043, 29.698765190955019 ], [ -95.18704195345974, 29.69876319044948 ], [ -95.18796695379099, 29.698768190231689 ], [ -95.188367953817462, 29.698753190461325 ], [ -95.188882954092861, 29.698765190212175 ], [ -95.189816954093033, 29.69867019016796 ], [ -95.193283955427475, 29.698617189985871 ], [ -95.193649955317596, 29.698483190608954 ], [ -95.193931955534609, 29.69823419053002 ], [ -95.195175956062386, 29.698221190528017 ], [ -95.195437955686273, 29.698176190010322 ], [ -95.196435955872474, 29.698175190208676 ], [ -95.197004955756697, 29.698174190347281 ], [ -95.197421956591455, 29.698172190237781 ], [ -95.198183956371437, 29.698171189942315 ], [ -95.198973956948876, 29.698169190031191 ], [ -95.199644956497323, 29.698176189963004 ], [ -95.199968956514581, 29.698166190239149 ], [ -95.200694956970523, 29.698145189657382 ], [ -95.201053957614548, 29.698134189866128 ], [ -95.201084957219877, 29.697423189942953 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 553, "Tract": "48201323100", "Area_SqMi": 0.79207040691904662, "total_2009": 3601, "total_2010": 3886, "total_2011": 2803, "total_2012": 2670, "total_2013": 3879, "total_2014": 3423, "total_2015": 3222, "total_2016": 3990, "total_2017": 3688, "total_2018": 2093, "total_2019": 2055, "total_2020": 2245, "age1": 457, "age2": 1340, "age3": 422, "earn1": 222, "earn2": 527, "earn3": 1470, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 734, "naics_s05": 118, "naics_s06": 483, "naics_s07": 158, "naics_s08": 160, "naics_s09": 83, "naics_s10": 222, "naics_s11": 37, "naics_s12": 98, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 12, "naics_s17": 5, "naics_s18": 62, "naics_s19": 32, "naics_s20": 0, "race1": 1803, "race2": 288, "race3": 32, "race4": 68, "race5": 4, "race6": 24, "ethnicity1": 1249, "ethnicity2": 970, "edu1": 428, "edu2": 482, "edu3": 546, "edu4": 306, "Shape_Length": 26145.290567852582, "Shape_Area": 22081567.302853093, "total_2021": 2091, "total_2022": 2219 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.182946952845711, 29.698328190405498 ], [ -95.182923952089254, 29.697149190678243 ], [ -95.182909952628123, 29.696421190147394 ], [ -95.182904953034949, 29.696132189980645 ], [ -95.182898952749127, 29.695967189800211 ], [ -95.182864952754812, 29.694718189629569 ], [ -95.182828952553507, 29.693933189634361 ], [ -95.18282495239292, 29.693808189404638 ], [ -95.182816952133066, 29.693025189847074 ], [ -95.182812952632972, 29.692577189571384 ], [ -95.182808952192389, 29.692105189259614 ], [ -95.182804952069134, 29.691720189425777 ], [ -95.181919952487931, 29.691709189202793 ], [ -95.181079951870046, 29.691719189390575 ], [ -95.18024695129904, 29.691699189499865 ], [ -95.179398951253646, 29.691717189260387 ], [ -95.178524950894172, 29.691759189057908 ], [ -95.177814951466175, 29.691743189080707 ], [ -95.17767995088748, 29.691741189566738 ], [ -95.177562951314755, 29.69174118969319 ], [ -95.177240950730933, 29.691741189548139 ], [ -95.176584950437885, 29.691743189600047 ], [ -95.175785950555422, 29.691745189923925 ], [ -95.174769950515824, 29.691748189242414 ], [ -95.174536950429811, 29.691750189834469 ], [ -95.174138949673633, 29.691774189196664 ], [ -95.1734219497597, 29.691768189327419 ], [ -95.173089949770699, 29.691764189531774 ], [ -95.172718950011529, 29.69176218949368 ], [ -95.172709949723995, 29.691392189543802 ], [ -95.172661950075721, 29.689368189438312 ], [ -95.172643949149176, 29.688625189220197 ], [ -95.172648949660527, 29.688174188863833 ], [ -95.172654949696266, 29.687486189204034 ], [ -95.172656949369028, 29.68726318831742 ], [ -95.172644949249559, 29.685887188574693 ], [ -95.172585949445079, 29.684073188065646 ], [ -95.172566948854765, 29.683478187576544 ], [ -95.172555948955264, 29.683117187656233 ], [ -95.172532949699672, 29.682425187676309 ], [ -95.1725279494528, 29.682251188096345 ], [ -95.172236948733584, 29.682209187728194 ], [ -95.171961948956749, 29.682162188094495 ], [ -95.171721949116105, 29.682101187938134 ], [ -95.171521948552567, 29.682034187802682 ], [ -95.171196948448994, 29.681921187808278 ], [ -95.170884949205558, 29.681801188000648 ], [ -95.170497948769878, 29.681677187983357 ], [ -95.170186948161913, 29.681583187643017 ], [ -95.169779948218434, 29.681476187842758 ], [ -95.169361948705969, 29.681415187785174 ], [ -95.168867948097727, 29.681374187322298 ], [ -95.16851894768682, 29.681386188032096 ], [ -95.168310948453794, 29.681418187258281 ], [ -95.167852948398092, 29.681419187608451 ], [ -95.166793947642745, 29.681423187443379 ], [ -95.166321947858464, 29.681426187525719 ], [ -95.165672947454169, 29.681428187346217 ], [ -95.165399947177036, 29.681427187831229 ], [ -95.164781946774042, 29.681431187893942 ], [ -95.164119946873612, 29.681433187860602 ], [ -95.163114947062169, 29.681445188324293 ], [ -95.163093946287731, 29.68144218790518 ], [ -95.162749947190818, 29.681448188258571 ], [ -95.15791094498141, 29.681487187884429 ], [ -95.15701294514335, 29.681494187809225 ], [ -95.15662194486363, 29.68149718845428 ], [ -95.155792944425883, 29.681504188455985 ], [ -95.155514944829363, 29.68151718831346 ], [ -95.155269944972829, 29.68152918804331 ], [ -95.155194944965331, 29.681726188305202 ], [ -95.154596944518772, 29.68358818860667 ], [ -95.154547945137253, 29.683743188792278 ], [ -95.154783945210568, 29.683891188544163 ], [ -95.154974945025359, 29.684011188925538 ], [ -95.15568994521665, 29.68444018876577 ], [ -95.156101945144727, 29.684683189100447 ], [ -95.156379945624877, 29.684845188897871 ], [ -95.156856945158239, 29.685126188427969 ], [ -95.157026945512456, 29.685225189202249 ], [ -95.157847945204367, 29.685708188743241 ], [ -95.158926945646243, 29.686342189417989 ], [ -95.159655945907033, 29.686770189137174 ], [ -95.160055946607713, 29.687005188987676 ], [ -95.160268945961491, 29.687129189448111 ], [ -95.160318945931095, 29.68715818927944 ], [ -95.160974946134942, 29.687544188810048 ], [ -95.161162946744568, 29.687654189039417 ], [ -95.16142894642303, 29.687810188889525 ], [ -95.163085947429678, 29.688784189079794 ], [ -95.163568947715376, 29.689047189453273 ], [ -95.165758947953393, 29.690385189763557 ], [ -95.16627594754975, 29.690701189722574 ], [ -95.166458948447044, 29.69081318925813 ], [ -95.167786948636106, 29.691626189647749 ], [ -95.167990948437719, 29.691751189709176 ], [ -95.169163949093686, 29.692467189647559 ], [ -95.169731948764337, 29.692794190007152 ], [ -95.170016948561042, 29.692958189965498 ], [ -95.170083948783272, 29.692997189715268 ], [ -95.170449948791529, 29.693206190301169 ], [ -95.171203949182711, 29.693588189962547 ], [ -95.172012949241591, 29.694080190015502 ], [ -95.172297950232064, 29.694254189863063 ], [ -95.172989950298117, 29.694673190632571 ], [ -95.173502950019056, 29.694978190524971 ], [ -95.173873950002701, 29.695193190070828 ], [ -95.174156949963461, 29.69536019016919 ], [ -95.174438949973947, 29.695527189955094 ], [ -95.174679950384487, 29.695670190511613 ], [ -95.176002950624735, 29.696458190096397 ], [ -95.176697950702859, 29.696877190382043 ], [ -95.176882951516788, 29.696989190429846 ], [ -95.178505951641824, 29.697950190763507 ], [ -95.178940951148036, 29.698207190508942 ], [ -95.179476951658913, 29.698525190837135 ], [ -95.179575951709737, 29.698347190750013 ], [ -95.179837952319488, 29.698343190897209 ], [ -95.180660952211539, 29.698318190773008 ], [ -95.181177951929726, 29.698321190404091 ], [ -95.181853952702497, 29.698323190778844 ], [ -95.182946952845711, 29.698328190405498 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 554, "Tract": "48201323200", "Area_SqMi": 0.81310778235927428, "total_2009": 468, "total_2010": 480, "total_2011": 628, "total_2012": 682, "total_2013": 572, "total_2014": 528, "total_2015": 543, "total_2016": 535, "total_2017": 619, "total_2018": 698, "total_2019": 635, "total_2020": 604, "age1": 138, "age2": 326, "age3": 156, "earn1": 77, "earn2": 210, "earn3": 333, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 183, "naics_s05": 16, "naics_s06": 63, "naics_s07": 86, "naics_s08": 27, "naics_s09": 1, "naics_s10": 3, "naics_s11": 7, "naics_s12": 84, "naics_s13": 0, "naics_s14": 41, "naics_s15": 0, "naics_s16": 37, "naics_s17": 0, "naics_s18": 34, "naics_s19": 38, "naics_s20": 0, "race1": 541, "race2": 36, "race3": 9, "race4": 26, "race5": 1, "race6": 7, "ethnicity1": 312, "ethnicity2": 308, "edu1": 138, "edu2": 131, "edu3": 125, "edu4": 88, "Shape_Length": 20007.021014602433, "Shape_Area": 22668053.324298725, "total_2021": 595, "total_2022": 620 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.1932759550008, 29.689686188652605 ], [ -95.193276954473731, 29.689490188080395 ], [ -95.193224955155074, 29.688965188429147 ], [ -95.193213954592096, 29.687064188443888 ], [ -95.193196954807419, 29.686144187494087 ], [ -95.193190955149646, 29.685623188019889 ], [ -95.19316395483834, 29.683781186946657 ], [ -95.193151954604858, 29.682944186996711 ], [ -95.193138954925885, 29.682036186802971 ], [ -95.192283954462496, 29.682057186619335 ], [ -95.191842954047686, 29.682055186771279 ], [ -95.191437953774084, 29.682055187206519 ], [ -95.190580954189898, 29.682064187019368 ], [ -95.189757953323308, 29.682062186854481 ], [ -95.18895095316438, 29.682073186843727 ], [ -95.188100953141671, 29.682094186777746 ], [ -95.187246952752631, 29.682099187476769 ], [ -95.186377953267609, 29.682084187005962 ], [ -95.186045952437581, 29.682094187260706 ], [ -95.185577952792954, 29.682109186874932 ], [ -95.18522695231799, 29.682119187242744 ], [ -95.184821952160988, 29.682132186867815 ], [ -95.184701952009874, 29.682134187304449 ], [ -95.18434095226138, 29.682131187246704 ], [ -95.183815952167393, 29.682124186996216 ], [ -95.183381952101897, 29.682131187537617 ], [ -95.182624951745055, 29.682142187262563 ], [ -95.180962951642798, 29.682162187500559 ], [ -95.180463951045496, 29.682168187472765 ], [ -95.179706950918629, 29.68217218719176 ], [ -95.178936950931856, 29.682178187612507 ], [ -95.178418950466778, 29.682179187245591 ], [ -95.1780389505588, 29.6821811877949 ], [ -95.177199950476165, 29.682199187320393 ], [ -95.176478950103473, 29.682202187210009 ], [ -95.176313949729249, 29.682203187491293 ], [ -95.175509949674662, 29.682225187537856 ], [ -95.175244950276578, 29.68223418802781 ], [ -95.174575950171757, 29.68223318810594 ], [ -95.174325950023189, 29.682235187652559 ], [ -95.173130949649916, 29.682246188084932 ], [ -95.1725279494528, 29.682251188096345 ], [ -95.172532949699672, 29.682425187676309 ], [ -95.172555948955264, 29.683117187656233 ], [ -95.172566948854765, 29.683478187576544 ], [ -95.172585949445079, 29.684073188065646 ], [ -95.172644949249559, 29.685887188574693 ], [ -95.172656949369028, 29.68726318831742 ], [ -95.172654949696266, 29.687486189204034 ], [ -95.172648949660527, 29.688174188863833 ], [ -95.172643949149176, 29.688625189220197 ], [ -95.172661950075721, 29.689368189438312 ], [ -95.172709949723995, 29.691392189543802 ], [ -95.172718950011529, 29.69176218949368 ], [ -95.173089949770699, 29.691764189531774 ], [ -95.1734219497597, 29.691768189327419 ], [ -95.174138949673633, 29.691774189196664 ], [ -95.174536950429811, 29.691750189834469 ], [ -95.174769950515824, 29.691748189242414 ], [ -95.175785950555422, 29.691745189923925 ], [ -95.176584950437885, 29.691743189600047 ], [ -95.177240950730933, 29.691741189548139 ], [ -95.177562951314755, 29.69174118969319 ], [ -95.17767995088748, 29.691741189566738 ], [ -95.177814951466175, 29.691743189080707 ], [ -95.178524950894172, 29.691759189057908 ], [ -95.179398951253646, 29.691717189260387 ], [ -95.18024695129904, 29.691699189499865 ], [ -95.181079951870046, 29.691719189390575 ], [ -95.181919952487931, 29.691709189202793 ], [ -95.182804952069134, 29.691720189425777 ], [ -95.183609952734116, 29.69168218925763 ], [ -95.184413952819114, 29.691657189354085 ], [ -95.184598952697584, 29.691661189069308 ], [ -95.185183952824644, 29.691676189000439 ], [ -95.185985953599968, 29.691658189270292 ], [ -95.186786952883637, 29.691634189191717 ], [ -95.187694953239713, 29.691623188867364 ], [ -95.188614953372749, 29.691615188817373 ], [ -95.189523954410177, 29.691607189006305 ], [ -95.190373954607722, 29.6916151888008 ], [ -95.191234954595515, 29.691599189259254 ], [ -95.191816954294012, 29.691597189348123 ], [ -95.193267955452143, 29.691592188968912 ], [ -95.193249954641487, 29.690886189077101 ], [ -95.193274955122618, 29.69046018900762 ], [ -95.1932759550008, 29.689686188652605 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 555, "Tract": "48201323300", "Area_SqMi": 0.50582805251161733, "total_2009": 997, "total_2010": 1050, "total_2011": 1359, "total_2012": 1368, "total_2013": 1231, "total_2014": 1210, "total_2015": 1154, "total_2016": 1157, "total_2017": 1225, "total_2018": 1191, "total_2019": 1265, "total_2020": 1110, "age1": 255, "age2": 530, "age3": 244, "earn1": 303, "earn2": 351, "earn3": 375, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 115, "naics_s05": 77, "naics_s06": 83, "naics_s07": 190, "naics_s08": 18, "naics_s09": 0, "naics_s10": 64, "naics_s11": 8, "naics_s12": 11, "naics_s13": 0, "naics_s14": 151, "naics_s15": 18, "naics_s16": 167, "naics_s17": 0, "naics_s18": 89, "naics_s19": 38, "naics_s20": 0, "race1": 759, "race2": 210, "race3": 12, "race4": 39, "race5": 1, "race6": 8, "ethnicity1": 582, "ethnicity2": 447, "edu1": 222, "edu2": 200, "edu3": 216, "edu4": 136, "Shape_Length": 17029.94559946084, "Shape_Area": 14101620.37065975, "total_2021": 1037, "total_2022": 1029 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.211271959595521, 29.690772188352025 ], [ -95.211091959935217, 29.690317188113095 ], [ -95.211073959300251, 29.690270187636528 ], [ -95.210778959779958, 29.689839187616968 ], [ -95.209800959436478, 29.688924188067134 ], [ -95.209160959398872, 29.687972187263892 ], [ -95.209074959293531, 29.687181187228212 ], [ -95.209025959167803, 29.685373187583011 ], [ -95.20900395857646, 29.684280187092263 ], [ -95.208995958566206, 29.683594186998718 ], [ -95.208149958826112, 29.683602186506473 ], [ -95.206784957710028, 29.683611186933497 ], [ -95.206219957978448, 29.683616186800766 ], [ -95.205335957601633, 29.683615186606378 ], [ -95.204977957249099, 29.683659186927585 ], [ -95.204611958034789, 29.683654187094202 ], [ -95.204298957379407, 29.683639187142862 ], [ -95.20408495721226, 29.683640186637675 ], [ -95.203399956752492, 29.683643186940753 ], [ -95.202764957040429, 29.683649187024383 ], [ -95.202537957480445, 29.683652186829509 ], [ -95.202308957404753, 29.683653186839589 ], [ -95.201611956887021, 29.683657187199103 ], [ -95.200226956644443, 29.683704187446271 ], [ -95.199407956734461, 29.683713186912431 ], [ -95.198545955901707, 29.68370518711329 ], [ -95.197453956107836, 29.683721187224641 ], [ -95.197060956063837, 29.683710187551526 ], [ -95.196347955625384, 29.683196186713321 ], [ -95.195666955642068, 29.682555187161025 ], [ -95.195305955018981, 29.682259186588997 ], [ -95.194791955016797, 29.682087186526378 ], [ -95.194116954897737, 29.682006186973204 ], [ -95.193138954925885, 29.682036186802971 ], [ -95.193151954604858, 29.682944186996711 ], [ -95.19316395483834, 29.683781186946657 ], [ -95.193190955149646, 29.685623188019889 ], [ -95.193196954807419, 29.686144187494087 ], [ -95.193213954592096, 29.687064188443888 ], [ -95.193224955155074, 29.688965188429147 ], [ -95.193276954473731, 29.689490188080395 ], [ -95.1932759550008, 29.689686188652605 ], [ -95.193274955122618, 29.69046018900762 ], [ -95.193249954641487, 29.690886189077101 ], [ -95.194715955089563, 29.690918189040804 ], [ -95.195398955212667, 29.690891188586278 ], [ -95.197264956364023, 29.690890188384703 ], [ -95.197839955616033, 29.690886188847376 ], [ -95.198629955879809, 29.690878188525598 ], [ -95.20040595645871, 29.690865188437652 ], [ -95.200982956620393, 29.690878188978274 ], [ -95.201985957070661, 29.690865188892317 ], [ -95.202733957209475, 29.690866188265421 ], [ -95.203069957933366, 29.69086818883066 ], [ -95.204138957905144, 29.690875188013212 ], [ -95.205175958110985, 29.690848188730161 ], [ -95.206177957782302, 29.690834188275957 ], [ -95.206695958493455, 29.690814188762833 ], [ -95.207242958776419, 29.690796188550731 ], [ -95.207542958903403, 29.690800188590849 ], [ -95.208285958597827, 29.690815188092312 ], [ -95.208499958827062, 29.690811188034843 ], [ -95.209281959110868, 29.690802187954439 ], [ -95.211271959595521, 29.690772188352025 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 556, "Tract": "48201323400", "Area_SqMi": 0.76806563507776549, "total_2009": 499, "total_2010": 434, "total_2011": 547, "total_2012": 294, "total_2013": 305, "total_2014": 207, "total_2015": 206, "total_2016": 224, "total_2017": 168, "total_2018": 278, "total_2019": 314, "total_2020": 213, "age1": 75, "age2": 119, "age3": 49, "earn1": 63, "earn2": 112, "earn3": 68, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 53, "naics_s05": 10, "naics_s06": 1, "naics_s07": 58, "naics_s08": 5, "naics_s09": 0, "naics_s10": 26, "naics_s11": 2, "naics_s12": 8, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 27, "naics_s17": 0, "naics_s18": 51, "naics_s19": 2, "naics_s20": 0, "race1": 203, "race2": 20, "race3": 1, "race4": 15, "race5": 0, "race6": 4, "ethnicity1": 128, "ethnicity2": 115, "edu1": 43, "edu2": 44, "edu3": 51, "edu4": 30, "Shape_Length": 22801.40831577485, "Shape_Area": 21412355.348495785, "total_2021": 226, "total_2022": 243 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.208995958566206, 29.683594186998718 ], [ -95.208994958221069, 29.683055186963109 ], [ -95.208985959093567, 29.68256418663141 ], [ -95.208971958739127, 29.681797186334869 ], [ -95.208957958814509, 29.681033186550479 ], [ -95.208953958861258, 29.680751186526514 ], [ -95.208942958056085, 29.68016318644224 ], [ -95.208922958657027, 29.679579186002336 ], [ -95.208916958181703, 29.679344185593685 ], [ -95.208890958088006, 29.678889186110787 ], [ -95.208863958044546, 29.678427185593954 ], [ -95.208857958330157, 29.678315186031497 ], [ -95.208850958378548, 29.678195185266755 ], [ -95.208845958508363, 29.678085185562519 ], [ -95.208568957897015, 29.677390185409568 ], [ -95.208176957772807, 29.67649218564728 ], [ -95.208045958451677, 29.67527218489856 ], [ -95.207583957917208, 29.675199185221143 ], [ -95.206864957408172, 29.675084185498484 ], [ -95.204824957436998, 29.67473918478191 ], [ -95.203917956516975, 29.674545184915775 ], [ -95.202776956644954, 29.674298184990171 ], [ -95.202016956449953, 29.674380185471911 ], [ -95.201595956742423, 29.6743831850094 ], [ -95.201008956509284, 29.674390184952554 ], [ -95.200538955714265, 29.674393185368835 ], [ -95.20038495580485, 29.674394185006758 ], [ -95.200109955689328, 29.674396185185049 ], [ -95.198050955307636, 29.674383184935174 ], [ -95.198008955273266, 29.673603184865716 ], [ -95.198004955185326, 29.672825184597542 ], [ -95.19800395518665, 29.672198185056377 ], [ -95.19800295555298, 29.671318184490268 ], [ -95.198001955087946, 29.670951184538332 ], [ -95.197974955538868, 29.66965918385328 ], [ -95.19795895535367, 29.668507183680656 ], [ -95.197933954626919, 29.666955183767431 ], [ -95.197927955422031, 29.666520184024794 ], [ -95.197921954902725, 29.666216183145057 ], [ -95.197896954932787, 29.664908183452866 ], [ -95.197523955083, 29.66491918375139 ], [ -95.196811954453466, 29.664940183753032 ], [ -95.195291953940611, 29.664983183037414 ], [ -95.195046953900004, 29.664989183440323 ], [ -95.194838954008674, 29.664993183024361 ], [ -95.194211953723226, 29.665001182991869 ], [ -95.193267953796806, 29.665016183778384 ], [ -95.192795953955667, 29.665013183350887 ], [ -95.192818953217341, 29.66584018368146 ], [ -95.192831954089016, 29.666318183833486 ], [ -95.192836954218834, 29.666530183819351 ], [ -95.192848953718197, 29.667007184062506 ], [ -95.192871953757859, 29.667917183870397 ], [ -95.19290195356173, 29.66915018410786 ], [ -95.192890953940633, 29.669344184319602 ], [ -95.192926953610993, 29.670554184307189 ], [ -95.192982954400478, 29.671348184610473 ], [ -95.192964954199553, 29.672151184794316 ], [ -95.192985954504351, 29.672917185112258 ], [ -95.193019953893128, 29.673632185027429 ], [ -95.193011954063934, 29.674405185228597 ], [ -95.192992953822355, 29.675195185932989 ], [ -95.193012954697437, 29.676011185619945 ], [ -95.193017953760005, 29.677010186060979 ], [ -95.193039954815333, 29.677752185880575 ], [ -95.193079954167587, 29.678536185886383 ], [ -95.193053954420378, 29.678735186347886 ], [ -95.193077954003599, 29.679301186021757 ], [ -95.193095954878956, 29.680061186696889 ], [ -95.193120954018909, 29.681197186911795 ], [ -95.193138954925885, 29.682036186802971 ], [ -95.194116954897737, 29.682006186973204 ], [ -95.194791955016797, 29.682087186526378 ], [ -95.195305955018981, 29.682259186588997 ], [ -95.195666955642068, 29.682555187161025 ], [ -95.196347955625384, 29.683196186713321 ], [ -95.197060956063837, 29.683710187551526 ], [ -95.197453956107836, 29.683721187224641 ], [ -95.198545955901707, 29.68370518711329 ], [ -95.199407956734461, 29.683713186912431 ], [ -95.200226956644443, 29.683704187446271 ], [ -95.201611956887021, 29.683657187199103 ], [ -95.202308957404753, 29.683653186839589 ], [ -95.202537957480445, 29.683652186829509 ], [ -95.202764957040429, 29.683649187024383 ], [ -95.203399956752492, 29.683643186940753 ], [ -95.20408495721226, 29.683640186637675 ], [ -95.204298957379407, 29.683639187142862 ], [ -95.204611958034789, 29.683654187094202 ], [ -95.204977957249099, 29.683659186927585 ], [ -95.205335957601633, 29.683615186606378 ], [ -95.206219957978448, 29.683616186800766 ], [ -95.206784957710028, 29.683611186933497 ], [ -95.208149958826112, 29.683602186506473 ], [ -95.208995958566206, 29.683594186998718 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 557, "Tract": "48201323500", "Area_SqMi": 1.0316169820586969, "total_2009": 1001, "total_2010": 1055, "total_2011": 994, "total_2012": 971, "total_2013": 1004, "total_2014": 1041, "total_2015": 1013, "total_2016": 737, "total_2017": 760, "total_2018": 776, "total_2019": 746, "total_2020": 750, "age1": 183, "age2": 343, "age3": 144, "earn1": 144, "earn2": 253, "earn3": 273, "naics_s01": 0, "naics_s02": 36, "naics_s03": 0, "naics_s04": 73, "naics_s05": 82, "naics_s06": 20, "naics_s07": 138, "naics_s08": 5, "naics_s09": 0, "naics_s10": 8, "naics_s11": 30, "naics_s12": 56, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 56, "naics_s17": 21, "naics_s18": 130, "naics_s19": 9, "naics_s20": 0, "race1": 548, "race2": 70, "race3": 10, "race4": 30, "race5": 1, "race6": 11, "ethnicity1": 374, "ethnicity2": 296, "edu1": 122, "edu2": 126, "edu3": 142, "edu4": 97, "Shape_Length": 23834.964896592741, "Shape_Area": 28759715.829685707, "total_2021": 666, "total_2022": 670 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.208246958011998, 29.661445182247913 ], [ -95.208240957144881, 29.66108718189945 ], [ -95.20822795702702, 29.660329182193458 ], [ -95.208218957898239, 29.6597771822501 ], [ -95.208214957601612, 29.659522182161027 ], [ -95.208209956943733, 29.659213182181873 ], [ -95.208204957239516, 29.658916181296789 ], [ -95.208200957394752, 29.658722181365231 ], [ -95.208184957492108, 29.658230181457398 ], [ -95.208176957609879, 29.658005181250363 ], [ -95.208122957425431, 29.656377181636209 ], [ -95.208129956948198, 29.655313180966708 ], [ -95.208130956899751, 29.655067180735831 ], [ -95.208131957228261, 29.65496718103563 ], [ -95.207356957145308, 29.654020180965258 ], [ -95.206575956747969, 29.654039180787603 ], [ -95.206360956537296, 29.6540451811398 ], [ -95.2060749564628, 29.654052181092556 ], [ -95.202465955738433, 29.654146180567711 ], [ -95.194777953704403, 29.654253181432292 ], [ -95.194211953362426, 29.654256181127771 ], [ -95.193370953619265, 29.654261181319114 ], [ -95.19340595360687, 29.655833181947241 ], [ -95.193422953109703, 29.656570181342016 ], [ -95.193470954029323, 29.658892182064697 ], [ -95.193500953170172, 29.659579182501304 ], [ -95.193514953776713, 29.659895182716699 ], [ -95.193529953331591, 29.660235182502166 ], [ -95.193536953686674, 29.660267182172451 ], [ -95.19357395387344, 29.660435182299885 ], [ -95.193623954214772, 29.660565182291869 ], [ -95.193661953674052, 29.66066418236322 ], [ -95.193975953858072, 29.661159182296878 ], [ -95.194238953740651, 29.661574182725083 ], [ -95.194493953867607, 29.662053182759855 ], [ -95.195016954216243, 29.663041182728008 ], [ -95.195019953754368, 29.663248183354117 ], [ -95.19502995391673, 29.66389118343616 ], [ -95.195046953900004, 29.664989183440323 ], [ -95.195291953940611, 29.664983183037414 ], [ -95.196811954453466, 29.664940183753032 ], [ -95.197523955083, 29.66491918375139 ], [ -95.197896954932787, 29.664908183452866 ], [ -95.197921954902725, 29.666216183145057 ], [ -95.197927955422031, 29.666520184024794 ], [ -95.197933954626919, 29.666955183767431 ], [ -95.19795895535367, 29.668507183680656 ], [ -95.197974955538868, 29.66965918385328 ], [ -95.198001955087946, 29.670951184538332 ], [ -95.19800295555298, 29.671318184490268 ], [ -95.19800395518665, 29.672198185056377 ], [ -95.198004955185326, 29.672825184597542 ], [ -95.198008955273266, 29.673603184865716 ], [ -95.198050955307636, 29.674383184935174 ], [ -95.200109955689328, 29.674396185185049 ], [ -95.20038495580485, 29.674394185006758 ], [ -95.200538955714265, 29.674393185368835 ], [ -95.201008956509284, 29.674390184952554 ], [ -95.201595956742423, 29.6743831850094 ], [ -95.202016956449953, 29.674380185471911 ], [ -95.202776956644954, 29.674298184990171 ], [ -95.203917956516975, 29.674545184915775 ], [ -95.204824957436998, 29.67473918478191 ], [ -95.206864957408172, 29.675084185498484 ], [ -95.207583957917208, 29.675199185221143 ], [ -95.208045958451677, 29.67527218489856 ], [ -95.208013957504221, 29.674176185112632 ], [ -95.208005958351833, 29.673901184697765 ], [ -95.2079749583379, 29.672567184425279 ], [ -95.207965957878599, 29.672150184491681 ], [ -95.207985957840194, 29.67112818459491 ], [ -95.207983958142634, 29.671034183793179 ], [ -95.207970958203077, 29.67042718432495 ], [ -95.207963957970634, 29.670094183679698 ], [ -95.207931957265359, 29.668533183468714 ], [ -95.207946957366175, 29.667718183800194 ], [ -95.207906957260406, 29.666941183522823 ], [ -95.20789595725779, 29.666594183491291 ], [ -95.207887957591296, 29.666343183351291 ], [ -95.207873957816787, 29.665890182913873 ], [ -95.207866957796469, 29.665683182968802 ], [ -95.207839957155073, 29.664806183261096 ], [ -95.207863957134592, 29.664253183237058 ], [ -95.207906957460452, 29.663244182247148 ], [ -95.20797795752469, 29.662871182589338 ], [ -95.208106957790775, 29.662185182184622 ], [ -95.208165957996286, 29.661877182018269 ], [ -95.208246958011998, 29.661445182247913 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 558, "Tract": "48201411700", "Area_SqMi": 0.46852458567895311, "total_2009": 5879, "total_2010": 6249, "total_2011": 6537, "total_2012": 3955, "total_2013": 4730, "total_2014": 4268, "total_2015": 5047, "total_2016": 4683, "total_2017": 4848, "total_2018": 7019, "total_2019": 6490, "total_2020": 6037, "age1": 990, "age2": 3061, "age3": 1257, "earn1": 433, "earn2": 957, "earn3": 3918, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2500, "naics_s05": 0, "naics_s06": 44, "naics_s07": 369, "naics_s08": 0, "naics_s09": 52, "naics_s10": 199, "naics_s11": 283, "naics_s12": 839, "naics_s13": 124, "naics_s14": 121, "naics_s15": 33, "naics_s16": 535, "naics_s17": 3, "naics_s18": 77, "naics_s19": 129, "naics_s20": 0, "race1": 4065, "race2": 784, "race3": 71, "race4": 305, "race5": 4, "race6": 79, "ethnicity1": 3246, "ethnicity2": 2062, "edu1": 931, "edu2": 1148, "edu3": 1267, "edu4": 972, "Shape_Length": 14712.120927077145, "Shape_Area": 13061663.560886638, "total_2021": 4857, "total_2022": 5308 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.46044202512843, 29.728958187925127 ], [ -95.460436024802434, 29.728765187514643 ], [ -95.460434025365885, 29.728621187716541 ], [ -95.460431024746526, 29.72842918725653 ], [ -95.460407025066459, 29.726571187011228 ], [ -95.46040402490344, 29.726345187106297 ], [ -95.460402024915922, 29.726217186730612 ], [ -95.460399025337182, 29.726027187352141 ], [ -95.460398024781028, 29.725939187390139 ], [ -95.460396025126158, 29.725816186807247 ], [ -95.460396024829635, 29.725798186983095 ], [ -95.460396025413104, 29.725784186840411 ], [ -95.46037902517385, 29.72453518686741 ], [ -95.460333024793343, 29.721443186229695 ], [ -95.460316024705662, 29.720311185994763 ], [ -95.460315024465416, 29.720243186028959 ], [ -95.460133025175693, 29.720267185396715 ], [ -95.459889024079189, 29.72029818604641 ], [ -95.459781024235312, 29.720313186095691 ], [ -95.455656023753065, 29.720338186267313 ], [ -95.454586023145154, 29.720362186110364 ], [ -95.454027022769807, 29.720377186072575 ], [ -95.452006022840948, 29.720392186390345 ], [ -95.451490022461329, 29.720404186038884 ], [ -95.451521022063574, 29.721520186638084 ], [ -95.451532022972529, 29.721631186216911 ], [ -95.451513022300347, 29.722122186633424 ], [ -95.451520022597023, 29.722673186652518 ], [ -95.451402022817973, 29.722675186761357 ], [ -95.451036022781778, 29.722680186996559 ], [ -95.450683022607365, 29.722684186648628 ], [ -95.45056802245908, 29.722685186833321 ], [ -95.450224022414119, 29.722689186371561 ], [ -95.449657022452655, 29.722696186375288 ], [ -95.448226022024897, 29.722712186430776 ], [ -95.447923021480662, 29.722713186304876 ], [ -95.447778021517962, 29.722714186487661 ], [ -95.447781021435532, 29.722831186346784 ], [ -95.447807022154393, 29.7238671866636 ], [ -95.447825022189022, 29.724534186825295 ], [ -95.447817021854931, 29.725241187323181 ], [ -95.447876021462349, 29.72711518731758 ], [ -95.447877022157499, 29.727275188008225 ], [ -95.447875021869208, 29.727380187899566 ], [ -95.447846021797616, 29.728646188320404 ], [ -95.447900021441484, 29.729414188040074 ], [ -95.447914022066087, 29.729699188285192 ], [ -95.44792202177031, 29.729854187793627 ], [ -95.44793202201889, 29.730051188549979 ], [ -95.448030021561962, 29.73007018838155 ], [ -95.448096022149443, 29.730083188224683 ], [ -95.44818402208324, 29.730094187943408 ], [ -95.448599021687372, 29.730132188421194 ], [ -95.449639022238145, 29.730244188126623 ], [ -95.450500023042224, 29.730302187946062 ], [ -95.451413023353595, 29.730301188363683 ], [ -95.451585023103121, 29.730300187880275 ], [ -95.452504022680102, 29.730299188135064 ], [ -95.452998022929648, 29.730289187765731 ], [ -95.45584002430266, 29.730266187875184 ], [ -95.457546024052604, 29.729935187794272 ], [ -95.458131024446644, 29.729788188211153 ], [ -95.459096025059409, 29.729481187743829 ], [ -95.459226025088427, 29.72943018772521 ], [ -95.459733024550175, 29.729232187574873 ], [ -95.459906024477647, 29.729157188060842 ], [ -95.46024202522932, 29.729034187881069 ], [ -95.46044202512843, 29.728958187925127 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 559, "Tract": "48201412000", "Area_SqMi": 0.57730318159464145, "total_2009": 5775, "total_2010": 6013, "total_2011": 5881, "total_2012": 5919, "total_2013": 6191, "total_2014": 5995, "total_2015": 6341, "total_2016": 5644, "total_2017": 5490, "total_2018": 5181, "total_2019": 4977, "total_2020": 4524, "age1": 1237, "age2": 2467, "age3": 1031, "earn1": 964, "earn2": 1630, "earn3": 2141, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 135, "naics_s05": 40, "naics_s06": 667, "naics_s07": 597, "naics_s08": 2, "naics_s09": 9, "naics_s10": 178, "naics_s11": 84, "naics_s12": 432, "naics_s13": 2, "naics_s14": 62, "naics_s15": 24, "naics_s16": 766, "naics_s17": 141, "naics_s18": 1190, "naics_s19": 404, "naics_s20": 1, "race1": 3528, "race2": 717, "race3": 35, "race4": 375, "race5": 8, "race6": 72, "ethnicity1": 3227, "ethnicity2": 1508, "edu1": 675, "edu2": 853, "edu3": 1023, "edu4": 947, "Shape_Length": 18670.763090903049, "Shape_Area": 16094224.638588445, "total_2021": 4298, "total_2022": 4735 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418588014158956, 29.725495188386478 ], [ -95.41856301396777, 29.724652188528989 ], [ -95.418551014176771, 29.723910187611089 ], [ -95.418525013760345, 29.723306187889648 ], [ -95.418526014118655, 29.72310618787898 ], [ -95.418541013782914, 29.722291187961606 ], [ -95.418520013695101, 29.721462187204402 ], [ -95.418514013992962, 29.72113718758397 ], [ -95.418508014077588, 29.720650187592611 ], [ -95.418515013744582, 29.720454186887856 ], [ -95.418503013779286, 29.719840187505394 ], [ -95.418494013754014, 29.719349186845282 ], [ -95.418488014126922, 29.719038187372298 ], [ -95.418468013820075, 29.718253186832865 ], [ -95.418460013922427, 29.71744218708919 ], [ -95.418438013728775, 29.716650186705468 ], [ -95.418431013616086, 29.715990186016221 ], [ -95.418425013355929, 29.715855186234084 ], [ -95.418406013349227, 29.715059186573164 ], [ -95.416667012787514, 29.715064186560372 ], [ -95.414914013186646, 29.715078186027359 ], [ -95.413994012282203, 29.715092186568025 ], [ -95.41340501240623, 29.715097186568414 ], [ -95.413308012380867, 29.715098186141162 ], [ -95.412678012033112, 29.715112186729005 ], [ -95.412701012714081, 29.716382186795443 ], [ -95.412722012547732, 29.717490187167719 ], [ -95.412233012383254, 29.717526187234768 ], [ -95.411654012278461, 29.71761318698762 ], [ -95.411340012101832, 29.717682186986913 ], [ -95.410944012376717, 29.717795186612658 ], [ -95.410537011332025, 29.717949187290063 ], [ -95.410280011303286, 29.718042187004411 ], [ -95.409186011769805, 29.718463187608766 ], [ -95.408973011151986, 29.718546187621527 ], [ -95.40820801139246, 29.718838186888057 ], [ -95.408087011227735, 29.718884187080242 ], [ -95.407245011171554, 29.719204187477335 ], [ -95.405658010499238, 29.719815187806624 ], [ -95.404062010734179, 29.720426188118907 ], [ -95.403364009684964, 29.720694187842845 ], [ -95.401749010052939, 29.721336188446458 ], [ -95.401308009985669, 29.721513188016772 ], [ -95.401141009095937, 29.721582188222285 ], [ -95.400691009640653, 29.721750188121224 ], [ -95.399310009497754, 29.72229518787368 ], [ -95.398814008744878, 29.722492188014002 ], [ -95.398809008652009, 29.722621188501243 ], [ -95.399247009652186, 29.722789188583604 ], [ -95.399343008858935, 29.722850188141386 ], [ -95.399421009664309, 29.722944188309906 ], [ -95.39950400929304, 29.723059188885589 ], [ -95.399542009461584, 29.723199188809112 ], [ -95.399591009600456, 29.725647189286065 ], [ -95.399533009606643, 29.725693189166861 ], [ -95.399446009654824, 29.725731189066831 ], [ -95.400786009213618, 29.725706189294051 ], [ -95.402082009994743, 29.725692188459032 ], [ -95.403454010560111, 29.725667188426218 ], [ -95.404395010416053, 29.725657189231171 ], [ -95.405177010944769, 29.725651188470046 ], [ -95.406911010796591, 29.725633188511328 ], [ -95.407390011169099, 29.725626188648693 ], [ -95.408642011241184, 29.725611188902501 ], [ -95.410535011867069, 29.725588188789036 ], [ -95.411374012736488, 29.72556818868247 ], [ -95.412800012498693, 29.725556188624168 ], [ -95.415037013772903, 29.725521188419279 ], [ -95.415477013901963, 29.725515188401697 ], [ -95.416775013603626, 29.725501188426215 ], [ -95.417949014119372, 29.725497188712005 ], [ -95.418588014158956, 29.725495188386478 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 560, "Tract": "48201432600", "Area_SqMi": 0.62690803471396361, "total_2009": 3639, "total_2010": 4127, "total_2011": 4087, "total_2012": 4246, "total_2013": 4691, "total_2014": 4738, "total_2015": 4954, "total_2016": 4759, "total_2017": 4519, "total_2018": 4181, "total_2019": 3782, "total_2020": 4038, "age1": 1473, "age2": 3069, "age3": 3125, "earn1": 3831, "earn2": 1647, "earn3": 2189, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 587, "naics_s05": 312, "naics_s06": 639, "naics_s07": 364, "naics_s08": 17, "naics_s09": 52, "naics_s10": 13, "naics_s11": 39, "naics_s12": 118, "naics_s13": 0, "naics_s14": 5108, "naics_s15": 94, "naics_s16": 87, "naics_s17": 0, "naics_s18": 107, "naics_s19": 129, "naics_s20": 1, "race1": 4714, "race2": 2116, "race3": 56, "race4": 649, "race5": 7, "race6": 125, "ethnicity1": 5684, "ethnicity2": 1983, "edu1": 1137, "edu2": 1405, "edu3": 1946, "edu4": 1706, "Shape_Length": 18494.363556005534, "Shape_Area": 17477123.044000532, "total_2021": 4099, "total_2022": 7667 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.520622040097351, 29.728405185777088 ], [ -95.520634039966396, 29.728247185400132 ], [ -95.520619040058378, 29.727983185448899 ], [ -95.520598040217052, 29.727564185477373 ], [ -95.520605040323545, 29.726831184943798 ], [ -95.520588040779572, 29.726142184674863 ], [ -95.520583040522055, 29.725544185074444 ], [ -95.520577039906655, 29.725364184548049 ], [ -95.520553040775141, 29.724614184998607 ], [ -95.520530039783225, 29.723791184912002 ], [ -95.52049104060734, 29.722474184482209 ], [ -95.520334040054394, 29.721535184223907 ], [ -95.520315040311786, 29.721467183945638 ], [ -95.52025803965202, 29.721245184386884 ], [ -95.517939039172589, 29.721425183890492 ], [ -95.515866039270406, 29.721607184551203 ], [ -95.513945038612249, 29.721733184684062 ], [ -95.51190203769734, 29.721915184779512 ], [ -95.51096303762337, 29.721992184301925 ], [ -95.50928903757324, 29.722153184377657 ], [ -95.507756037317861, 29.722259184280777 ], [ -95.506068036203473, 29.722378184582901 ], [ -95.504359035557115, 29.722553184406646 ], [ -95.502741036109754, 29.722665185299554 ], [ -95.501049035578745, 29.722798185276918 ], [ -95.501046035726816, 29.723010185141803 ], [ -95.501044035622542, 29.723301185310664 ], [ -95.501069035719524, 29.723833185595453 ], [ -95.501075035439058, 29.724379185050715 ], [ -95.5010810352627, 29.724588185731896 ], [ -95.501115035453438, 29.725747185493891 ], [ -95.501141035192177, 29.726820185906732 ], [ -95.501152035061011, 29.727435186325472 ], [ -95.501156035204943, 29.728105186022987 ], [ -95.501159035788817, 29.728590186178479 ], [ -95.501161035519885, 29.729106186688544 ], [ -95.501162035929909, 29.729377186348128 ], [ -95.501163035850325, 29.729638186493045 ], [ -95.501167035503542, 29.730468186476081 ], [ -95.501193035541377, 29.731667187176104 ], [ -95.501833035524911, 29.731642186670747 ], [ -95.50265703612844, 29.731518186759899 ], [ -95.503650036676675, 29.731174186956267 ], [ -95.505555036435979, 29.73046418646889 ], [ -95.506456036538339, 29.730112186191381 ], [ -95.506476036952677, 29.730104185947667 ], [ -95.507671037502135, 29.729634186103443 ], [ -95.508428037178788, 29.729467186252396 ], [ -95.509123037487683, 29.729345186135394 ], [ -95.510411037579757, 29.729334185996823 ], [ -95.510518038329465, 29.729330186377492 ], [ -95.511017038013478, 29.729332186271527 ], [ -95.511440038345768, 29.729335185640604 ], [ -95.511607037836583, 29.729337185937823 ], [ -95.512211038202068, 29.72933018586783 ], [ -95.512365037929968, 29.729329185764062 ], [ -95.512430038513088, 29.729328185495365 ], [ -95.512604038762305, 29.729324185531322 ], [ -95.512779038925672, 29.729323185572792 ], [ -95.51393703931214, 29.729310186238489 ], [ -95.514066039250892, 29.72930818607292 ], [ -95.515138039332697, 29.729283186246303 ], [ -95.515673039673075, 29.729293185658943 ], [ -95.516865039827991, 29.729286185929887 ], [ -95.519581040703542, 29.729068186024968 ], [ -95.52050104057902, 29.729070185288055 ], [ -95.520569040116357, 29.728808185103482 ], [ -95.520622040097351, 29.728405185777088 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 561, "Tract": "48201340600", "Area_SqMi": 0.62740632368610427, "total_2009": 192, "total_2010": 170, "total_2011": 173, "total_2012": 165, "total_2013": 178, "total_2014": 167, "total_2015": 176, "total_2016": 216, "total_2017": 253, "total_2018": 197, "total_2019": 153, "total_2020": 147, "age1": 36, "age2": 66, "age3": 22, "earn1": 42, "earn2": 48, "earn3": 34, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 1, "naics_s07": 0, "naics_s08": 0, "naics_s09": 1, "naics_s10": 5, "naics_s11": 5, "naics_s12": 14, "naics_s13": 0, "naics_s14": 1, "naics_s15": 14, "naics_s16": 45, "naics_s17": 0, "naics_s18": 32, "naics_s19": 6, "naics_s20": 0, "race1": 89, "race2": 25, "race3": 0, "race4": 8, "race5": 0, "race6": 2, "ethnicity1": 91, "ethnicity2": 33, "edu1": 21, "edu2": 19, "edu3": 26, "edu4": 22, "Shape_Length": 16782.463955806594, "Shape_Area": 17491014.487713717, "total_2021": 130, "total_2022": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.140561936689636, 29.576523166632626 ], [ -95.140187936291753, 29.576099167040862 ], [ -95.139891936606872, 29.575779166470141 ], [ -95.139412935755132, 29.575290167126401 ], [ -95.139113935914864, 29.574971166770997 ], [ -95.138507936246739, 29.574324166982585 ], [ -95.137879935934194, 29.573653166109974 ], [ -95.137390935888206, 29.573134166242134 ], [ -95.136958935329247, 29.572675166588354 ], [ -95.13452893444159, 29.570057166005924 ], [ -95.134100934506137, 29.569588166111622 ], [ -95.133541933962505, 29.568979165782928 ], [ -95.132949933892888, 29.568332165310704 ], [ -95.132432934197311, 29.567768165814893 ], [ -95.130585933152233, 29.569083166043637 ], [ -95.130157933248171, 29.569388165452462 ], [ -95.127727932657749, 29.571132166386764 ], [ -95.125551932232383, 29.572725166776753 ], [ -95.125093932536259, 29.57315216651072 ], [ -95.124782932115338, 29.573391166854027 ], [ -95.124233931793029, 29.573973166736607 ], [ -95.123327931466491, 29.575172167656881 ], [ -95.122667932207065, 29.576303167228005 ], [ -95.12239293172243, 29.576838167891605 ], [ -95.122014931851524, 29.577493167613447 ], [ -95.122264931910436, 29.577593167750898 ], [ -95.122789932213948, 29.57780616808844 ], [ -95.124648932550969, 29.578586167618926 ], [ -95.125339932960614, 29.578942167772801 ], [ -95.126181932903123, 29.579511168445183 ], [ -95.127425933623627, 29.580711168283585 ], [ -95.12789193331065, 29.581204168664854 ], [ -95.128112933122296, 29.581438168640283 ], [ -95.128383933373001, 29.58173516894265 ], [ -95.1303369338751, 29.583818169040711 ], [ -95.130590934275176, 29.583633168671543 ], [ -95.131189933781911, 29.583202169085773 ], [ -95.131364934729319, 29.58308216895804 ], [ -95.131709934715147, 29.582837168302881 ], [ -95.132469934175489, 29.58230816867701 ], [ -95.133215935010298, 29.581798168752726 ], [ -95.133928935158181, 29.581258168051754 ], [ -95.135465934840255, 29.580178168113651 ], [ -95.136199935187776, 29.579621167670556 ], [ -95.136924935208469, 29.579110167420914 ], [ -95.137685935896272, 29.578602167447634 ], [ -95.138392936334398, 29.57806716785397 ], [ -95.139147936161507, 29.577548166976179 ], [ -95.139717936279496, 29.577137167282366 ], [ -95.140074936481426, 29.576883166691083 ], [ -95.140561936689636, 29.576523166632626 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 562, "Tract": "48201340800", "Area_SqMi": 1.1138473587239996, "total_2009": 659, "total_2010": 711, "total_2011": 683, "total_2012": 713, "total_2013": 685, "total_2014": 642, "total_2015": 721, "total_2016": 706, "total_2017": 740, "total_2018": 695, "total_2019": 674, "total_2020": 595, "age1": 174, "age2": 319, "age3": 128, "earn1": 137, "earn2": 237, "earn3": 247, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 4, "naics_s06": 21, "naics_s07": 56, "naics_s08": 7, "naics_s09": 0, "naics_s10": 37, "naics_s11": 9, "naics_s12": 65, "naics_s13": 0, "naics_s14": 14, "naics_s15": 3, "naics_s16": 246, "naics_s17": 0, "naics_s18": 76, "naics_s19": 81, "naics_s20": 0, "race1": 480, "race2": 73, "race3": 1, "race4": 52, "race5": 0, "race6": 15, "ethnicity1": 462, "ethnicity2": 159, "edu1": 78, "edu2": 108, "edu3": 153, "edu4": 108, "Shape_Length": 23831.130269490932, "Shape_Area": 31052157.992418122, "total_2021": 581, "total_2022": 621 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.157578941091245, 29.580365167404764 ], [ -95.157805941201147, 29.58020516736217 ], [ -95.157053941132546, 29.57939916675182 ], [ -95.156256940463848, 29.57854516654174 ], [ -95.149992938651621, 29.571837165394484 ], [ -95.148813938040036, 29.57058916582066 ], [ -95.148565937679024, 29.570769165993561 ], [ -95.148339938543756, 29.570934165305147 ], [ -95.147418938118932, 29.571606166014057 ], [ -95.147053937784435, 29.571860166207383 ], [ -95.144600937498865, 29.573646166547711 ], [ -95.142318937083886, 29.575277166582886 ], [ -95.140561936689636, 29.576523166632626 ], [ -95.140074936481426, 29.576883166691083 ], [ -95.139717936279496, 29.577137167282366 ], [ -95.139147936161507, 29.577548166976179 ], [ -95.138392936334398, 29.57806716785397 ], [ -95.137685935896272, 29.578602167447634 ], [ -95.136924935208469, 29.579110167420914 ], [ -95.136199935187776, 29.579621167670556 ], [ -95.135465934840255, 29.580178168113651 ], [ -95.133928935158181, 29.581258168051754 ], [ -95.133215935010298, 29.581798168752726 ], [ -95.132469934175489, 29.58230816867701 ], [ -95.131709934715147, 29.582837168302881 ], [ -95.131364934729319, 29.58308216895804 ], [ -95.131189933781911, 29.583202169085773 ], [ -95.130590934275176, 29.583633168671543 ], [ -95.1303369338751, 29.583818169040711 ], [ -95.131314934389806, 29.584851169425701 ], [ -95.132890934370309, 29.586086169054379 ], [ -95.133704935571274, 29.586939169233744 ], [ -95.134128935602604, 29.587564169581547 ], [ -95.134422935166768, 29.588236169345173 ], [ -95.13490693499584, 29.589044169398591 ], [ -95.135256936075749, 29.589470169570859 ], [ -95.136041935778593, 29.590147169556001 ], [ -95.137134935691336, 29.591102170470609 ], [ -95.13801393614807, 29.591987170611091 ], [ -95.13814293643874, 29.592123170488541 ], [ -95.138633936357351, 29.591797169838266 ], [ -95.139368936585811, 29.591415170076427 ], [ -95.139705936383123, 29.59124516966369 ], [ -95.140080936737689, 29.591073170331732 ], [ -95.141065937029325, 29.590621170325839 ], [ -95.142441937491824, 29.590030169861976 ], [ -95.143345937264144, 29.589515169997927 ], [ -95.143876938315842, 29.589162169524712 ], [ -95.144810938050298, 29.588352169239052 ], [ -95.145683937984387, 29.587396168960236 ], [ -95.146904938713817, 29.585754168446954 ], [ -95.148114938281637, 29.584557168245219 ], [ -95.149186939256197, 29.583843168398523 ], [ -95.150164939133518, 29.583324168374997 ], [ -95.151472939114399, 29.582852167801043 ], [ -95.151530939049977, 29.582837168085383 ], [ -95.154439940426244, 29.582082167376168 ], [ -95.155446940006314, 29.581675167393687 ], [ -95.155817940685367, 29.581478167332271 ], [ -95.156529940910033, 29.581101167720082 ], [ -95.157270940405297, 29.580581167193227 ], [ -95.157578941091245, 29.580365167404764 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 563, "Tract": "48201433300", "Area_SqMi": 0.93510746099990172, "total_2009": 933, "total_2010": 970, "total_2011": 1076, "total_2012": 463, "total_2013": 479, "total_2014": 522, "total_2015": 458, "total_2016": 437, "total_2017": 485, "total_2018": 468, "total_2019": 398, "total_2020": 405, "age1": 95, "age2": 254, "age3": 133, "earn1": 146, "earn2": 189, "earn3": 147, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 61, "naics_s06": 6, "naics_s07": 62, "naics_s08": 4, "naics_s09": 4, "naics_s10": 0, "naics_s11": 77, "naics_s12": 10, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 137, "naics_s17": 2, "naics_s18": 93, "naics_s19": 8, "naics_s20": 0, "race1": 256, "race2": 105, "race3": 4, "race4": 108, "race5": 2, "race6": 7, "ethnicity1": 342, "ethnicity2": 140, "edu1": 85, "edu2": 120, "edu3": 102, "edu4": 80, "Shape_Length": 20542.73785223423, "Shape_Area": 26069195.560262602, "total_2021": 412, "total_2022": 482 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.537986044232525, 29.705003179801256 ], [ -95.537971043409172, 29.7027871793786 ], [ -95.537944043593271, 29.701371179358627 ], [ -95.537907043824163, 29.698902178757326 ], [ -95.537771043039839, 29.696530178437666 ], [ -95.537542043780633, 29.695227177714649 ], [ -95.537132042793999, 29.694044177621368 ], [ -95.537086043271856, 29.693953177756029 ], [ -95.536785042872353, 29.693354178161705 ], [ -95.536371043298672, 29.69268517766762 ], [ -95.535881043171216, 29.691966177146526 ], [ -95.535208042752004, 29.691145176881889 ], [ -95.534447042717446, 29.690467176926617 ], [ -95.534156042151622, 29.690209177555523 ], [ -95.533651042021276, 29.68985317724405 ], [ -95.532811041696334, 29.689262177164686 ], [ -95.532056041680576, 29.688817177058567 ], [ -95.531598041329744, 29.688546176583568 ], [ -95.530983041185465, 29.68819017677195 ], [ -95.530760041662646, 29.688064176732848 ], [ -95.530665041525978, 29.688198176528008 ], [ -95.530056041419087, 29.68905617688857 ], [ -95.529343041131696, 29.68995617715623 ], [ -95.528676040670149, 29.690715177798058 ], [ -95.52842904037982, 29.69096817777617 ], [ -95.527794040967834, 29.691559177375247 ], [ -95.527266040924204, 29.692025177641526 ], [ -95.527174041020729, 29.692107177378741 ], [ -95.52707404004272, 29.692198177438826 ], [ -95.524444040153199, 29.694582178723554 ], [ -95.523842039921718, 29.69511417844992 ], [ -95.521966039006301, 29.696775178523581 ], [ -95.519497039245564, 29.698961179264469 ], [ -95.519145038818451, 29.699267179316472 ], [ -95.51796903871697, 29.70029217960797 ], [ -95.517863038071965, 29.700385179760492 ], [ -95.518016038436372, 29.70053217960357 ], [ -95.518484038458354, 29.700904179871603 ], [ -95.518868038558679, 29.701219179904431 ], [ -95.519968039091438, 29.702157180090833 ], [ -95.52013903900577, 29.702325180208465 ], [ -95.520270039090377, 29.702462180150878 ], [ -95.520380039720692, 29.702609179936758 ], [ -95.520540039257369, 29.702818179757205 ], [ -95.520702039188194, 29.703063180074288 ], [ -95.520896039408413, 29.703406180320876 ], [ -95.520955039051586, 29.703529180165617 ], [ -95.521025039599238, 29.703701180597665 ], [ -95.521130039060012, 29.704008180738789 ], [ -95.521249039654293, 29.704502180680084 ], [ -95.521310039312212, 29.705144180673926 ], [ -95.524714040276962, 29.705124180464136 ], [ -95.524872040459059, 29.705123180476178 ], [ -95.525253040324785, 29.705123180526915 ], [ -95.525636040458693, 29.705118180193299 ], [ -95.526358040755838, 29.705109180592906 ], [ -95.526566041408685, 29.705105180700318 ], [ -95.527469041588319, 29.705105180389037 ], [ -95.528364041838884, 29.705095180160022 ], [ -95.530267042340441, 29.705081180091483 ], [ -95.531116042218812, 29.705049180040788 ], [ -95.53224504264179, 29.705050180157397 ], [ -95.532752042989998, 29.70505218027095 ], [ -95.533500043121236, 29.705046180250182 ], [ -95.534362042488283, 29.705055179998993 ], [ -95.535279043451453, 29.705033180579502 ], [ -95.53595304292358, 29.705020180460085 ], [ -95.536158043298627, 29.705023180135864 ], [ -95.537586043677024, 29.705011179756347 ], [ -95.537986044232525, 29.705003179801256 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 564, "Tract": "48201554103", "Area_SqMi": 1.0442279680140283, "total_2009": 393, "total_2010": 350, "total_2011": 252, "total_2012": 241, "total_2013": 288, "total_2014": 358, "total_2015": 286, "total_2016": 365, "total_2017": 333, "total_2018": 344, "total_2019": 361, "total_2020": 325, "age1": 76, "age2": 205, "age3": 76, "earn1": 84, "earn2": 115, "earn3": 158, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 28, "naics_s06": 33, "naics_s07": 26, "naics_s08": 3, "naics_s09": 0, "naics_s10": 27, "naics_s11": 4, "naics_s12": 10, "naics_s13": 0, "naics_s14": 18, "naics_s15": 4, "naics_s16": 91, "naics_s17": 0, "naics_s18": 44, "naics_s19": 39, "naics_s20": 0, "race1": 266, "race2": 38, "race3": 5, "race4": 42, "race5": 0, "race6": 6, "ethnicity1": 231, "ethnicity2": 126, "edu1": 53, "edu2": 73, "edu3": 78, "edu4": 77, "Shape_Length": 23715.240852343242, "Shape_Area": 29111288.53420217, "total_2021": 345, "total_2022": 357 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.566678065724318, 30.016165242409361 ], [ -95.56684506503575, 30.016116242652494 ], [ -95.565535064468591, 30.013845242275003 ], [ -95.563606064488923, 30.010502241339374 ], [ -95.563174064154737, 30.009752241279369 ], [ -95.561421063306895, 30.006592240929365 ], [ -95.559318062772931, 30.002895240243593 ], [ -95.558769062942289, 30.001928240070868 ], [ -95.558710062741383, 30.001824240062742 ], [ -95.5578580624301, 30.002296239639342 ], [ -95.557766061840638, 30.002340239951625 ], [ -95.55764906216649, 30.002408240175104 ], [ -95.55745506229735, 30.002523240419666 ], [ -95.556752061741861, 30.002912240411682 ], [ -95.556514062349294, 30.003038239997849 ], [ -95.556391062470794, 30.003096240286816 ], [ -95.556266062314236, 30.003149240485847 ], [ -95.555540062055258, 30.003491240769247 ], [ -95.555316061455954, 30.003593240025534 ], [ -95.55501906209949, 30.003731240688186 ], [ -95.554685061592579, 30.003892240059219 ], [ -95.554544061649253, 30.003964240444684 ], [ -95.554262061985654, 30.004116240118559 ], [ -95.553822061748278, 30.004362240216665 ], [ -95.553582061409841, 30.004495240457356 ], [ -95.553291061606018, 30.004673240850831 ], [ -95.553058060900682, 30.004816240459743 ], [ -95.553010060803317, 30.004846240734587 ], [ -95.552802060803785, 30.004955240526321 ], [ -95.552590061346777, 30.005069240401571 ], [ -95.552140060966693, 30.005314241094968 ], [ -95.55206806106095, 30.00536224111471 ], [ -95.552032060564642, 30.005386241096549 ], [ -95.551734060682648, 30.005551240457255 ], [ -95.551699061136915, 30.005570240627705 ], [ -95.551584061023334, 30.00561924133418 ], [ -95.551479060767875, 30.005681240906885 ], [ -95.551378060628238, 30.005751241337567 ], [ -95.551275060555895, 30.005807241384431 ], [ -95.550444060229708, 30.006268241031034 ], [ -95.549514060935508, 30.006784241452308 ], [ -95.549381060865528, 30.00685924084431 ], [ -95.549192060259514, 30.006962241065676 ], [ -95.549133060166497, 30.006981241398126 ], [ -95.54903606069216, 30.007050240863819 ], [ -95.548918060616728, 30.007116241295542 ], [ -95.548847060509971, 30.007150241435887 ], [ -95.548769060023275, 30.007196241653613 ], [ -95.548149059837129, 30.007537240993162 ], [ -95.548072060039956, 30.00758524131674 ], [ -95.54764305979414, 30.007827241543726 ], [ -95.547535060252258, 30.007894241501077 ], [ -95.547267060171706, 30.008042241727921 ], [ -95.547161060310273, 30.008101242008184 ], [ -95.546547060147276, 30.008444241286949 ], [ -95.546419059437113, 30.008516241694135 ], [ -95.545878059142822, 30.008818241564349 ], [ -95.545410059863954, 30.009075241564485 ], [ -95.545045059220328, 30.009276241923985 ], [ -95.544059059547052, 30.009824241830078 ], [ -95.543016058853283, 30.010392242324968 ], [ -95.542962058932901, 30.010422241743953 ], [ -95.542921058681287, 30.010445242423749 ], [ -95.542415058488615, 30.010717242154254 ], [ -95.541762059150173, 30.011085242365958 ], [ -95.541185058849408, 30.011412242765353 ], [ -95.541105058279058, 30.011458242197921 ], [ -95.540844058798413, 30.011601242128972 ], [ -95.540827057983833, 30.011746242838466 ], [ -95.540795058362519, 30.011883242482014 ], [ -95.54062405827807, 30.012147242541701 ], [ -95.540479057987213, 30.012329242493479 ], [ -95.54044105820725, 30.012438242836353 ], [ -95.540441058159104, 30.012526242743245 ], [ -95.540511058429246, 30.012906242485641 ], [ -95.540521058679758, 30.012928242523842 ], [ -95.540542058917922, 30.01297224306985 ], [ -95.540612058539153, 30.013065243246427 ], [ -95.540656057985743, 30.013159242697391 ], [ -95.540822058328274, 30.013308242487167 ], [ -95.54084505821136, 30.01332924324571 ], [ -95.541186058185275, 30.013555242435817 ], [ -95.541557058666868, 30.013765242674928 ], [ -95.541660058987475, 30.01382424329983 ], [ -95.542058058389514, 30.014132243144683 ], [ -95.542127058635145, 30.014170243115483 ], [ -95.542235058894406, 30.014192242742098 ], [ -95.542317058922507, 30.014242242696621 ], [ -95.542386058429543, 30.014302243138371 ], [ -95.542449058875519, 30.014385243237417 ], [ -95.543138058819835, 30.01472024276514 ], [ -95.544448059200533, 30.015296242719973 ], [ -95.544490059112192, 30.015314243149014 ], [ -95.544597059929131, 30.015386243575886 ], [ -95.544749059717361, 30.015556243266342 ], [ -95.544818059454954, 30.015655243449213 ], [ -95.544900059417216, 30.015820243084903 ], [ -95.544995059623332, 30.016062243335362 ], [ -95.54507705992809, 30.016199242972505 ], [ -95.545144060003594, 30.016291243679476 ], [ -95.54519705933707, 30.016364243012681 ], [ -95.545304059471476, 30.016485243214451 ], [ -95.545519059455344, 30.016667243047966 ], [ -95.545936060172153, 30.016903243319586 ], [ -95.546176059623249, 30.017118243012348 ], [ -95.546227060345103, 30.017183243545258 ], [ -95.546296060586741, 30.017249243788719 ], [ -95.546397059661658, 30.017442243190551 ], [ -95.546447060163203, 30.017508243210557 ], [ -95.546808059786983, 30.017893243568192 ], [ -95.547067059879168, 30.018135243182922 ], [ -95.54716106003842, 30.018283244060221 ], [ -95.547288060090096, 30.018421243377251 ], [ -95.547370060912712, 30.018486244038993 ], [ -95.547458060197712, 30.018514243505368 ], [ -95.547521060024636, 30.018519243415732 ], [ -95.547597060139552, 30.018520243318758 ], [ -95.547692060222062, 30.018492243285507 ], [ -95.547894060217672, 30.018371243718583 ], [ -95.548052060468578, 30.018305243852083 ], [ -95.548204060383327, 30.018217243410376 ], [ -95.548545060424118, 30.018019243420579 ], [ -95.548621061219734, 30.018003243237608 ], [ -95.548671060407415, 30.018008243482047 ], [ -95.548703060295622, 30.018030243868534 ], [ -95.548873060485946, 30.018223243857879 ], [ -95.549031060451199, 30.018432243537148 ], [ -95.549195060960329, 30.018685243899558 ], [ -95.549807061469096, 30.019514243814772 ], [ -95.550378061511395, 30.019220244071381 ], [ -95.55080606154641, 30.018987243876477 ], [ -95.55337006213162, 30.017625242974201 ], [ -95.553886062112966, 30.018215243624731 ], [ -95.557929062835612, 30.01613324297886 ], [ -95.558309063441172, 30.015938242363351 ], [ -95.558423063531151, 30.016026242410156 ], [ -95.560423063950893, 30.017585242804742 ], [ -95.56177206445733, 30.018635243067873 ], [ -95.561849063805951, 30.018587243147223 ], [ -95.561888064542643, 30.018555243180455 ], [ -95.562202064345328, 30.018364243160036 ], [ -95.563006064330111, 30.017925243138034 ], [ -95.563612064641319, 30.017587243253214 ], [ -95.563725064934445, 30.01752824317084 ], [ -95.564206065122633, 30.01725724266614 ], [ -95.564293064637909, 30.01720124242328 ], [ -95.564704064694737, 30.016965242372265 ], [ -95.565044065103407, 30.01678624300407 ], [ -95.565329064946951, 30.016650242902504 ], [ -95.565661065297874, 30.016498242952807 ], [ -95.56572406542189, 30.016472242696281 ], [ -95.565920065063565, 30.01639224281648 ], [ -95.566224064693799, 30.016285242476723 ], [ -95.566449064819523, 30.016224242479758 ], [ -95.566678065724318, 30.016165242409361 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 565, "Tract": "48201554104", "Area_SqMi": 0.70003486714965957, "total_2009": 113, "total_2010": 137, "total_2011": 165, "total_2012": 233, "total_2013": 248, "total_2014": 251, "total_2015": 347, "total_2016": 312, "total_2017": 341, "total_2018": 323, "total_2019": 349, "total_2020": 294, "age1": 85, "age2": 166, "age3": 84, "earn1": 73, "earn2": 110, "earn3": 152, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 31, "naics_s05": 0, "naics_s06": 8, "naics_s07": 55, "naics_s08": 0, "naics_s09": 0, "naics_s10": 8, "naics_s11": 3, "naics_s12": 78, "naics_s13": 0, "naics_s14": 22, "naics_s15": 0, "naics_s16": 42, "naics_s17": 0, "naics_s18": 15, "naics_s19": 66, "naics_s20": 0, "race1": 255, "race2": 20, "race3": 7, "race4": 48, "race5": 0, "race6": 5, "ethnicity1": 255, "ethnicity2": 80, "edu1": 47, "edu2": 66, "edu3": 69, "edu4": 68, "Shape_Length": 18930.77301742847, "Shape_Area": 19515773.974483177, "total_2021": 300, "total_2022": 335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.570632066288127, 30.022781243608733 ], [ -95.570589066304308, 30.022707243989693 ], [ -95.570580066795344, 30.022691244133171 ], [ -95.569864066292709, 30.021464243330247 ], [ -95.567017064952864, 30.016420242741745 ], [ -95.56684506503575, 30.016116242652494 ], [ -95.566678065724318, 30.016165242409361 ], [ -95.566449064819523, 30.016224242479758 ], [ -95.566224064693799, 30.016285242476723 ], [ -95.565920065063565, 30.01639224281648 ], [ -95.56572406542189, 30.016472242696281 ], [ -95.565661065297874, 30.016498242952807 ], [ -95.565329064946951, 30.016650242902504 ], [ -95.565044065103407, 30.01678624300407 ], [ -95.564704064694737, 30.016965242372265 ], [ -95.564293064637909, 30.01720124242328 ], [ -95.564206065122633, 30.01725724266614 ], [ -95.563725064934445, 30.01752824317084 ], [ -95.563612064641319, 30.017587243253214 ], [ -95.563006064330111, 30.017925243138034 ], [ -95.562202064345328, 30.018364243160036 ], [ -95.561888064542643, 30.018555243180455 ], [ -95.561849063805951, 30.018587243147223 ], [ -95.56177206445733, 30.018635243067873 ], [ -95.560423063950893, 30.017585242804742 ], [ -95.558423063531151, 30.016026242410156 ], [ -95.558309063441172, 30.015938242363351 ], [ -95.557929062835612, 30.01613324297886 ], [ -95.553886062112966, 30.018215243624731 ], [ -95.55337006213162, 30.017625242974201 ], [ -95.55080606154641, 30.018987243876477 ], [ -95.550378061511395, 30.019220244071381 ], [ -95.549807061469096, 30.019514243814772 ], [ -95.55045206169315, 30.020389244054272 ], [ -95.550623061737809, 30.020592243927108 ], [ -95.550855061689205, 30.020923244014458 ], [ -95.550932061284612, 30.021032244062624 ], [ -95.550983061022009, 30.021082243990946 ], [ -95.551065061440539, 30.021224244050913 ], [ -95.551090061406086, 30.021301244130619 ], [ -95.551109061668129, 30.021483244318112 ], [ -95.55121606205293, 30.021785244467591 ], [ -95.552950062515407, 30.024179244820175 ], [ -95.552990061650249, 30.024233244222767 ], [ -95.554236062034718, 30.02595224520601 ], [ -95.554476062279647, 30.026244245375217 ], [ -95.556573063611282, 30.029031245933012 ], [ -95.556617063476125, 30.029146245801748 ], [ -95.556649063002382, 30.029300245747805 ], [ -95.557178063440901, 30.030106245256878 ], [ -95.557325063501779, 30.030329246025758 ], [ -95.557375063149166, 30.030404245989942 ], [ -95.557710063347571, 30.030151246063841 ], [ -95.557743063879968, 30.030126245330138 ], [ -95.558167063362518, 30.029877245433958 ], [ -95.558678063416167, 30.029592245221927 ], [ -95.558801063356555, 30.029525245143613 ], [ -95.558924064073224, 30.029445245631511 ], [ -95.56022406402441, 30.028729245453487 ], [ -95.560548064470098, 30.028551245448643 ], [ -95.56195606508436, 30.027729245007144 ], [ -95.561991064363426, 30.027706244796146 ], [ -95.562044064524002, 30.027671244643194 ], [ -95.562946064720137, 30.027198245064064 ], [ -95.563087064546409, 30.027121244720366 ], [ -95.563376064427104, 30.026941245260581 ], [ -95.563474064851292, 30.026873245075038 ], [ -95.563704064650082, 30.026750245112055 ], [ -95.563751065195802, 30.026712245140821 ], [ -95.564208064825692, 30.026465244790629 ], [ -95.564562065617181, 30.026274244991964 ], [ -95.564635064978219, 30.026213244768812 ], [ -95.564743064879892, 30.026157245053593 ], [ -95.56479906503337, 30.026120244690112 ], [ -95.564853065284211, 30.026076244487694 ], [ -95.565028065375571, 30.025994244882138 ], [ -95.565105065014848, 30.025947244951571 ], [ -95.565449065441626, 30.025762244549885 ], [ -95.565710065916903, 30.025634244754855 ], [ -95.56577506516183, 30.0255862445619 ], [ -95.565929065914716, 30.025509244175321 ], [ -95.565988065001278, 30.025468244088444 ], [ -95.566065065608058, 30.025438244863995 ], [ -95.566213065306954, 30.025347243958265 ], [ -95.566394065719379, 30.025253244109777 ], [ -95.566541065749377, 30.025168244492136 ], [ -95.56683606595054, 30.025013244445795 ], [ -95.566894066109839, 30.024986243976919 ], [ -95.56693006566573, 30.024964244620627 ], [ -95.567165066219857, 30.024815244317267 ], [ -95.568491066364658, 30.024063243850971 ], [ -95.56883506606782, 30.023867243780234 ], [ -95.568861066272802, 30.023853244128063 ], [ -95.569288066585941, 30.023616244380889 ], [ -95.56962406595953, 30.023431244037397 ], [ -95.570022066887091, 30.023213243845731 ], [ -95.570164066343253, 30.023125243510243 ], [ -95.570222066562039, 30.023096243406506 ], [ -95.570507066410016, 30.022884243596582 ], [ -95.570532066802272, 30.02286324415287 ], [ -95.570632066288127, 30.022781243608733 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 566, "Tract": "48201555102", "Area_SqMi": 1.5704820052735675, "total_2009": 536, "total_2010": 561, "total_2011": 591, "total_2012": 848, "total_2013": 895, "total_2014": 951, "total_2015": 1060, "total_2016": 1286, "total_2017": 1374, "total_2018": 1279, "total_2019": 1183, "total_2020": 1311, "age1": 583, "age2": 965, "age3": 263, "earn1": 370, "earn2": 511, "earn3": 930, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 246, "naics_s05": 44, "naics_s06": 150, "naics_s07": 135, "naics_s08": 326, "naics_s09": 2, "naics_s10": 78, "naics_s11": 28, "naics_s12": 172, "naics_s13": 0, "naics_s14": 78, "naics_s15": 0, "naics_s16": 291, "naics_s17": 0, "naics_s18": 202, "naics_s19": 56, "naics_s20": 0, "race1": 1257, "race2": 400, "race3": 11, "race4": 111, "race5": 7, "race6": 25, "ethnicity1": 1304, "ethnicity2": 507, "edu1": 252, "edu2": 323, "edu3": 424, "edu4": 229, "Shape_Length": 28985.195260163266, "Shape_Area": 43782350.400211699, "total_2021": 1464, "total_2022": 1811 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.46933304282517, 30.071052257371093 ], [ -95.469347042582854, 30.070646256929432 ], [ -95.467659042927465, 30.070655256736721 ], [ -95.466991042222048, 30.070659256739404 ], [ -95.460284040086052, 30.07069525686396 ], [ -95.459939040183343, 30.070691257334012 ], [ -95.45829103994997, 30.070641257113707 ], [ -95.458196040031538, 30.07063925763622 ], [ -95.457370040154842, 30.070614257119498 ], [ -95.45643303968221, 30.07058525764878 ], [ -95.455935039454872, 30.070571257497459 ], [ -95.45528303958676, 30.070552257682738 ], [ -95.452354038360156, 30.070464257733065 ], [ -95.452199038491898, 30.070459257958692 ], [ -95.452035038807637, 30.070454257829674 ], [ -95.449781038253121, 30.070387257553026 ], [ -95.447842037763237, 30.070329257889234 ], [ -95.447573037127782, 30.070321257288384 ], [ -95.447102037373782, 30.070318257749548 ], [ -95.44680803708674, 30.070329257929316 ], [ -95.446632037080775, 30.07033725752272 ], [ -95.446164036936437, 30.070377257778475 ], [ -95.445929036720841, 30.070409257872797 ], [ -95.445699036622926, 30.070440257966581 ], [ -95.445239036179856, 30.070525257732832 ], [ -95.444785036360969, 30.070631257395362 ], [ -95.444337036872369, 30.070758257914285 ], [ -95.444125036302069, 30.070829258042615 ], [ -95.443899036467243, 30.070905257703821 ], [ -95.443765036103315, 30.070958257824525 ], [ -95.443036036028602, 30.071240258183877 ], [ -95.442657036452914, 30.07145125774602 ], [ -95.442094036032529, 30.071759257794913 ], [ -95.441974035923991, 30.071825258017334 ], [ -95.439104035544688, 30.073384258728019 ], [ -95.437621034871583, 30.074191258421607 ], [ -95.437604035, 30.074200258583616 ], [ -95.437248035027494, 30.074358258916671 ], [ -95.437031034396853, 30.074455259048349 ], [ -95.436852034506288, 30.074537259260815 ], [ -95.436493034796456, 30.074676258717044 ], [ -95.436252034758596, 30.074767259314864 ], [ -95.436168034715919, 30.074799259140214 ], [ -95.436133034249309, 30.074813258611485 ], [ -95.436172034507877, 30.074999259071344 ], [ -95.43653903518846, 30.07711225903914 ], [ -95.436603034820763, 30.07748125991106 ], [ -95.436971035349274, 30.079258259482231 ], [ -95.43710803494632, 30.080147260451209 ], [ -95.437154035419894, 30.080734260513108 ], [ -95.437185035145504, 30.081131260433384 ], [ -95.437155034677943, 30.081619260204079 ], [ -95.437093035410157, 30.08200626075217 ], [ -95.437034035033491, 30.082372260642355 ], [ -95.436882034730516, 30.083081260961094 ], [ -95.436734034862468, 30.083711260837298 ], [ -95.43707603474104, 30.083739260710207 ], [ -95.43720803529736, 30.083704260544462 ], [ -95.437312035353926, 30.08354326085767 ], [ -95.437347035182242, 30.083313260868369 ], [ -95.437389035033732, 30.08315926091489 ], [ -95.437413034868456, 30.083135260795462 ], [ -95.437494035381221, 30.083055260419883 ], [ -95.437752035548328, 30.083034260488489 ], [ -95.438303035487507, 30.083027260541709 ], [ -95.439003035890707, 30.083033260521201 ], [ -95.440393036312045, 30.083023260287884 ], [ -95.440685036241874, 30.083027260388107 ], [ -95.440754035823474, 30.083021260247282 ], [ -95.441654036742477, 30.083003260716939 ], [ -95.442564036683976, 30.083003260348065 ], [ -95.444449037008496, 30.082979260085505 ], [ -95.444621037395976, 30.082980260174203 ], [ -95.444793036750056, 30.082981260015501 ], [ -95.444981037005789, 30.082972260086724 ], [ -95.445526037416073, 30.082971260717887 ], [ -95.44574803770368, 30.082963260657536 ], [ -95.445933037189064, 30.082975260077717 ], [ -95.446095037324611, 30.082961260642929 ], [ -95.448723038110103, 30.082941260250763 ], [ -95.449097038564489, 30.082946260139927 ], [ -95.449307037917379, 30.082929260098634 ], [ -95.44949903854328, 30.082935259745451 ], [ -95.450087037977084, 30.082929260013408 ], [ -95.45047003871197, 30.082916260402982 ], [ -95.450636039123552, 30.082925259762899 ], [ -95.450722038625855, 30.082920260226004 ], [ -95.450788038196364, 30.082917259767733 ], [ -95.451627039121092, 30.082916260499612 ], [ -95.452254038702023, 30.082904259735855 ], [ -95.452419038855083, 30.082895259805532 ], [ -95.452926039477106, 30.082897260292356 ], [ -95.45360503966036, 30.082894259924359 ], [ -95.453702038925357, 30.082887259788116 ], [ -95.454003039921062, 30.082896260045757 ], [ -95.454123039766145, 30.082883259615759 ], [ -95.454158039475459, 30.082887260455013 ], [ -95.45422503930088, 30.082894259682273 ], [ -95.454868039982344, 30.082882259916538 ], [ -95.455022039583014, 30.082872260014227 ], [ -95.45507903987351, 30.082876260408096 ], [ -95.455150040065959, 30.082882259936252 ], [ -95.455703040372782, 30.082877259597186 ], [ -95.456009039565913, 30.082867260294719 ], [ -95.456295039702241, 30.082868259595031 ], [ -95.456479040324695, 30.08284925978661 ], [ -95.457552040088927, 30.082840259960118 ], [ -95.457880040908336, 30.082838259626303 ], [ -95.459923040987576, 30.082828259900481 ], [ -95.46035504151358, 30.08282225997095 ], [ -95.460665041147848, 30.082809259676857 ], [ -95.460859040853634, 30.082818259693628 ], [ -95.460987041071704, 30.082816260068302 ], [ -95.461707041759823, 30.08281525934941 ], [ -95.461836041165796, 30.082802259680403 ], [ -95.46223304169186, 30.082797259514372 ], [ -95.46224604181613, 30.082796259528884 ], [ -95.463246041850667, 30.082744259803803 ], [ -95.464352041976355, 30.082716259392726 ], [ -95.464516042377596, 30.082706259856113 ], [ -95.464580042302813, 30.082711259809262 ], [ -95.465037042806884, 30.082706259716755 ], [ -95.465237042509415, 30.082696260017411 ], [ -95.465475042547695, 30.082700259408064 ], [ -95.465842042763612, 30.082692259437717 ], [ -95.466106042399915, 30.082699259848585 ], [ -95.466225042317902, 30.082693259544563 ], [ -95.46695904265836, 30.082693259386758 ], [ -95.467152042589248, 30.082684259738141 ], [ -95.467206043153382, 30.082681259931775 ], [ -95.467792042956916, 30.0826832595471 ], [ -95.468882042931185, 30.082677259615625 ], [ -95.468884043421909, 30.081422258834721 ], [ -95.468890043440524, 30.078518258975993 ], [ -95.468879043415484, 30.078114258274319 ], [ -95.468840043550401, 30.077855258366515 ], [ -95.468801042514741, 30.077685258721019 ], [ -95.468712042522199, 30.077395258671125 ], [ -95.468538043254483, 30.076912258323102 ], [ -95.468462043010589, 30.07665525823408 ], [ -95.468423043132049, 30.07648725845274 ], [ -95.468419043324459, 30.076430258472239 ], [ -95.46839404303347, 30.076396257901951 ], [ -95.468396043114979, 30.076329258253573 ], [ -95.468370043208182, 30.075956258231187 ], [ -95.468388042537285, 30.07562125796348 ], [ -95.468411042816015, 30.075418257858608 ], [ -95.468440043046627, 30.075258257591834 ], [ -95.46847904256154, 30.075094258164086 ], [ -95.468544042943122, 30.074877258119859 ], [ -95.468607043109657, 30.074712258243959 ], [ -95.468751042979079, 30.074406257992546 ], [ -95.46905604342399, 30.073804257944939 ], [ -95.469152043065733, 30.073579257511007 ], [ -95.469237042465068, 30.073302257361615 ], [ -95.469277043353316, 30.073038257906411 ], [ -95.469292043287922, 30.072727257600121 ], [ -95.469294042907464, 30.071987257551218 ], [ -95.469297042387183, 30.071544257065849 ], [ -95.469312043013545, 30.07134225676819 ], [ -95.46933304282517, 30.071052257371093 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 567, "Tract": "48201553201", "Area_SqMi": 0.89102867769190053, "total_2009": 5437, "total_2010": 5552, "total_2011": 2734, "total_2012": 2581, "total_2013": 2594, "total_2014": 3079, "total_2015": 2425, "total_2016": 3781, "total_2017": 3739, "total_2018": 3930, "total_2019": 3765, "total_2020": 4319, "age1": 669, "age2": 1981, "age3": 899, "earn1": 588, "earn2": 984, "earn3": 1977, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 44, "naics_s05": 21, "naics_s06": 9, "naics_s07": 109, "naics_s08": 4, "naics_s09": 0, "naics_s10": 34, "naics_s11": 107, "naics_s12": 18, "naics_s13": 3, "naics_s14": 204, "naics_s15": 10, "naics_s16": 2756, "naics_s17": 0, "naics_s18": 190, "naics_s19": 40, "naics_s20": 0, "race1": 2113, "race2": 909, "race3": 30, "race4": 435, "race5": 6, "race6": 56, "ethnicity1": 2680, "ethnicity2": 869, "edu1": 510, "edu2": 587, "edu3": 1006, "edu4": 777, "Shape_Length": 26591.017332573265, "Shape_Area": 24840354.523227133, "total_2021": 3719, "total_2022": 3549 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.463553039427154, 30.032971249590808 ], [ -95.463541039206305, 30.032912249882941 ], [ -95.463157039977261, 30.031747249146374 ], [ -95.462821038958097, 30.031251249108632 ], [ -95.462753039112499, 30.03128924950995 ], [ -95.462713038842452, 30.031223248750631 ], [ -95.462588038962082, 30.031074249555612 ], [ -95.461933038665663, 30.030180249387445 ], [ -95.461394039199362, 30.029414249117366 ], [ -95.461330038939252, 30.029343249172797 ], [ -95.461192038816009, 30.029135249168093 ], [ -95.460774038248246, 30.028505248988324 ], [ -95.460570039160231, 30.02822124830087 ], [ -95.460506038392538, 30.028144248520253 ], [ -95.460491038180606, 30.02809724840402 ], [ -95.460407039041613, 30.028004249034986 ], [ -95.46021603811387, 30.027743248180517 ], [ -95.45907603846122, 30.026161248530478 ], [ -95.458955037972132, 30.025998248149417 ], [ -95.458870038594085, 30.025859248081137 ], [ -95.458821038371639, 30.025799248164603 ], [ -95.458734038516113, 30.025660248517543 ], [ -95.458575037555903, 30.025477247986441 ], [ -95.458527037697692, 30.025415248046265 ], [ -95.45849003796576, 30.025340247713022 ], [ -95.45829603835044, 30.025087247980665 ], [ -95.458170038254764, 30.024902248435176 ], [ -95.458071038120124, 30.024783247850408 ], [ -95.458034038246723, 30.024741247985013 ], [ -95.457975037792991, 30.024634248152811 ], [ -95.457938037622185, 30.024598247624784 ], [ -95.457711037324287, 30.024277248316679 ], [ -95.457650038047689, 30.024173248098052 ], [ -95.457601037287645, 30.024127248300051 ], [ -95.457572038006319, 30.024083247932886 ], [ -95.457446037508006, 30.023924247879215 ], [ -95.457340037125761, 30.023747248005332 ], [ -95.457152037417259, 30.023527248129032 ], [ -95.457070037202683, 30.023398247712421 ], [ -95.456689037855568, 30.022878247414543 ], [ -95.456611036885178, 30.022758247859358 ], [ -95.456566037783858, 30.022705248137054 ], [ -95.45650503696389, 30.022645247531269 ], [ -95.456332037253745, 30.02239524788499 ], [ -95.456051037569708, 30.022029247582065 ], [ -95.455967037657615, 30.021923247961098 ], [ -95.455944037636883, 30.021857247320934 ], [ -95.455810037181223, 30.021654247132339 ], [ -95.455720036584651, 30.021526247726211 ], [ -95.455558036788617, 30.021322247755911 ], [ -95.455512037544111, 30.021246247202161 ], [ -95.455114036604783, 30.020720247675715 ], [ -95.455059036659094, 30.020635247289576 ], [ -95.455035036847335, 30.020604247035831 ], [ -95.455006036587136, 30.020538247613541 ], [ -95.454955036721742, 30.02047924748473 ], [ -95.454762036907724, 30.020208247375127 ], [ -95.454572036312555, 30.019904246842763 ], [ -95.454454036741879, 30.019787247291159 ], [ -95.454403037143919, 30.019717247287353 ], [ -95.454315036989698, 30.019570247170236 ], [ -95.454161036268871, 30.019368247025103 ], [ -95.45402203618896, 30.019165247220648 ], [ -95.453487036890465, 30.018423247260522 ], [ -95.452937036709244, 30.017686246996508 ], [ -95.452765036537187, 30.017455246641369 ], [ -95.452695036149336, 30.01739424646324 ], [ -95.452554036211524, 30.017192246248161 ], [ -95.452453036124453, 30.017024246907482 ], [ -95.452408035832192, 30.016985246237216 ], [ -95.452381035960954, 30.016943246878121 ], [ -95.452325035804321, 30.016854246507954 ], [ -95.452246035630779, 30.016761246866373 ], [ -95.452148036389232, 30.016618246531188 ], [ -95.45209903619488, 30.016558246450259 ], [ -95.451844035873918, 30.016239246934013 ], [ -95.451658035855729, 30.015967246729058 ], [ -95.451512035631197, 30.015711246657368 ], [ -95.451496035809342, 30.015684246869938 ], [ -95.451317035167165, 30.015323246767323 ], [ -95.451245035230073, 30.015175246182803 ], [ -95.451144035113686, 30.014988246448581 ], [ -95.451062035802764, 30.014870246693018 ], [ -95.45096903589598, 30.014768245920813 ], [ -95.450654035081342, 30.014449246265624 ], [ -95.450565035327386, 30.014345246059175 ], [ -95.450512035204852, 30.014283246015157 ], [ -95.449438035484548, 30.014868246716158 ], [ -95.449211035330862, 30.014991246645661 ], [ -95.449078034627703, 30.015064246105077 ], [ -95.448939035023983, 30.015140246781378 ], [ -95.448266034562252, 30.015453246666603 ], [ -95.448102035208279, 30.0155182465727 ], [ -95.448021034539721, 30.015550246664549 ], [ -95.447924034470219, 30.015589246454457 ], [ -95.447409034305238, 30.015743246793342 ], [ -95.447219035185171, 30.015799246296424 ], [ -95.447117034903115, 30.015830246443908 ], [ -95.447062034516122, 30.015847246827956 ], [ -95.446997034127008, 30.015867246429806 ], [ -95.445583034144505, 30.016295246605818 ], [ -95.445109034458937, 30.016438246587288 ], [ -95.443602033736894, 30.01689524716214 ], [ -95.442852033997625, 30.017123247232504 ], [ -95.442260033094328, 30.017342247075646 ], [ -95.441002033213508, 30.017722246949635 ], [ -95.44068203329212, 30.017819247074105 ], [ -95.440594033382382, 30.017846247515177 ], [ -95.439288033235158, 30.018241247754109 ], [ -95.436656032062288, 30.019037247452019 ], [ -95.436746032485559, 30.019301247905553 ], [ -95.436785032442117, 30.019517247819177 ], [ -95.436807032327607, 30.019776247719037 ], [ -95.4368500318988, 30.019962248239946 ], [ -95.436915032655477, 30.020154247675677 ], [ -95.437032032559358, 30.020448247888279 ], [ -95.437208032489593, 30.020836247984967 ], [ -95.437465032887062, 30.021316247870235 ], [ -95.437601032197904, 30.021545247718688 ], [ -95.437796032448304, 30.021851248039273 ], [ -95.437993032475291, 30.022120248542002 ], [ -95.438316032611212, 30.022616248725466 ], [ -95.438398033030566, 30.022714247918891 ], [ -95.438794033335341, 30.023253248100321 ], [ -95.439130033208158, 30.023691248129211 ], [ -95.439216032668085, 30.023793248237858 ], [ -95.439848033603525, 30.024459248273093 ], [ -95.440219033657073, 30.024246248480189 ], [ -95.440262033142375, 30.024222248378223 ], [ -95.440692033852343, 30.023996248394599 ], [ -95.440723033758871, 30.02398024837386 ], [ -95.440924033426299, 30.023874248718979 ], [ -95.44097403319374, 30.023848248702208 ], [ -95.441052033134454, 30.023828248760964 ], [ -95.441110033031265, 30.023777248129669 ], [ -95.441301034021606, 30.023674248582154 ], [ -95.441360033178128, 30.023647248463604 ], [ -95.442088034188018, 30.023241248213381 ], [ -95.442196033908203, 30.023187247862747 ], [ -95.44230803368437, 30.023111248428826 ], [ -95.442508033472933, 30.023006248014884 ], [ -95.442580033466754, 30.022959248518145 ], [ -95.442724034292922, 30.022851247816636 ], [ -95.442790033799085, 30.022790248376257 ], [ -95.44293903401514, 30.022629248040616 ], [ -95.443108033948064, 30.02272724779759 ], [ -95.443242034225179, 30.02278924860321 ], [ -95.443667034506873, 30.022923248002705 ], [ -95.444293034707414, 30.02309424777399 ], [ -95.444653034509201, 30.023201248067078 ], [ -95.444828034411216, 30.023271248595524 ], [ -95.444992034902342, 30.023360248526824 ], [ -95.445068034328344, 30.023412248414605 ], [ -95.445205034745456, 30.023530248152603 ], [ -95.445324034089836, 30.02366224783567 ], [ -95.445392034240214, 30.023750247985941 ], [ -95.445488034756579, 30.023872248662972 ], [ -95.446070034457932, 30.024659248120695 ], [ -95.446086034336389, 30.024680248171883 ], [ -95.446101034319852, 30.024701248849471 ], [ -95.446363034607742, 30.025055248314178 ], [ -95.446622034898169, 30.025415248456767 ], [ -95.446925035025529, 30.025835248392156 ], [ -95.447159035430545, 30.026131249155782 ], [ -95.448022035027904, 30.025661248495918 ], [ -95.448809035054367, 30.025248248308777 ], [ -95.449416035716141, 30.024909248031484 ], [ -95.449727035286287, 30.025340248506225 ], [ -95.449985035466455, 30.025680248704791 ], [ -95.450448035721507, 30.026334248536337 ], [ -95.453117036709358, 30.029980249002335 ], [ -95.453364037049795, 30.03033924897494 ], [ -95.453889037355395, 30.031043249759605 ], [ -95.453971036899532, 30.031165249564346 ], [ -95.454083036930612, 30.031297249924226 ], [ -95.454561037361515, 30.03194224925371 ], [ -95.455221037313891, 30.032861249501153 ], [ -95.455332037385915, 30.033024249808424 ], [ -95.455400037027587, 30.033125250176862 ], [ -95.455462037725013, 30.033169249502329 ], [ -95.456099037909809, 30.033776249774096 ], [ -95.456216037519795, 30.033523250328233 ], [ -95.45626303733026, 30.033457249569359 ], [ -95.456391037755665, 30.033328249470991 ], [ -95.457099037720042, 30.032762249271819 ], [ -95.457583038487954, 30.033430249816785 ], [ -95.45779403800141, 30.033722249794454 ], [ -95.45811003822179, 30.0340022502841 ], [ -95.45813203872477, 30.034046249937873 ], [ -95.458299037957403, 30.034381249905689 ], [ -95.458261038268489, 30.034629249944185 ], [ -95.458365038152678, 30.034781250215623 ], [ -95.458508037933413, 30.034991250020024 ], [ -95.45898203837838, 30.035552249853328 ], [ -95.459027038696675, 30.035613250511283 ], [ -95.459295038278185, 30.035597250238474 ], [ -95.460511039050587, 30.035264250375615 ], [ -95.461344039294133, 30.034954250065873 ], [ -95.46164703884476, 30.034573249942163 ], [ -95.461830039076546, 30.034133249536168 ], [ -95.462046039438007, 30.033826249667793 ], [ -95.46211503939432, 30.033296249784129 ], [ -95.462287039507231, 30.032931249225264 ], [ -95.462462039713898, 30.032779249795841 ], [ -95.462751039001091, 30.032639249807524 ], [ -95.462957039499472, 30.032626249475168 ], [ -95.463112039744914, 30.032670249103454 ], [ -95.463482039146783, 30.03295424940961 ], [ -95.463553039427154, 30.032971249590808 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 568, "Tract": "48201550304", "Area_SqMi": 0.64131905281044399, "total_2009": 1362, "total_2010": 1155, "total_2011": 5680, "total_2012": 5131, "total_2013": 5245, "total_2014": 5198, "total_2015": 4599, "total_2016": 3431, "total_2017": 3239, "total_2018": 3030, "total_2019": 2644, "total_2020": 2615, "age1": 935, "age2": 1378, "age3": 508, "earn1": 718, "earn2": 934, "earn3": 1169, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 114, "naics_s05": 7, "naics_s06": 67, "naics_s07": 1125, "naics_s08": 7, "naics_s09": 2, "naics_s10": 99, "naics_s11": 25, "naics_s12": 107, "naics_s13": 0, "naics_s14": 32, "naics_s15": 110, "naics_s16": 223, "naics_s17": 38, "naics_s18": 853, "naics_s19": 12, "naics_s20": 0, "race1": 1935, "race2": 632, "race3": 30, "race4": 188, "race5": 5, "race6": 31, "ethnicity1": 1866, "ethnicity2": 955, "edu1": 400, "edu2": 508, "edu3": 593, "edu4": 385, "Shape_Length": 23965.197643717373, "Shape_Area": 17878877.563826431, "total_2021": 2489, "total_2022": 2821 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.450512035204852, 30.014283246015157 ], [ -95.450392035775067, 30.014133246470792 ], [ -95.450334035817818, 30.014054246029811 ], [ -95.449776035458981, 30.01329124604025 ], [ -95.449738035367346, 30.01321924618999 ], [ -95.449293034943679, 30.012614245427738 ], [ -95.44925103526765, 30.012556246038919 ], [ -95.44915903537337, 30.012427246257875 ], [ -95.448909034461622, 30.012079245321772 ], [ -95.44796203469862, 30.010760245197549 ], [ -95.447743035040617, 30.010472245090433 ], [ -95.447693034989683, 30.01039324543909 ], [ -95.447539034075433, 30.010209245422544 ], [ -95.447437034859647, 30.010086245497632 ], [ -95.447186034591027, 30.009775245231737 ], [ -95.440648032602894, 30.013333246566646 ], [ -95.439692032742116, 30.013853246459423 ], [ -95.437112032200758, 30.015257247065144 ], [ -95.436272032049629, 30.014111246484941 ], [ -95.436224032271099, 30.014045246628015 ], [ -95.435885031717888, 30.013568246898981 ], [ -95.435302031291556, 30.012788246082042 ], [ -95.435174031500054, 30.012647246093515 ], [ -95.43503703114159, 30.012474246290186 ], [ -95.435012031894061, 30.012437245982181 ], [ -95.434986031248869, 30.012439246582844 ], [ -95.434181030897619, 30.011337245740375 ], [ -95.43338003074544, 30.010233245983535 ], [ -95.432908030783068, 30.009603246213359 ], [ -95.432943030504717, 30.009576246148544 ], [ -95.432296030201286, 30.008691245572781 ], [ -95.432102030474638, 30.008416245972445 ], [ -95.432088029984172, 30.008399245882227 ], [ -95.43200503010938, 30.008303245224631 ], [ -95.431854030766615, 30.008047245760867 ], [ -95.431561030772158, 30.00762224581041 ], [ -95.431510030698078, 30.007529245685042 ], [ -95.431484030738488, 30.007430245002816 ], [ -95.431478030504962, 30.007327245548762 ], [ -95.43148803034174, 30.006992245715015 ], [ -95.431474029824741, 30.006864245232975 ], [ -95.431435029965044, 30.006739245108172 ], [ -95.43137503061736, 30.00662224537114 ], [ -95.43107302974623, 30.006201245188585 ], [ -95.430986030339227, 30.006221245555281 ], [ -95.430918030047309, 30.006250244854058 ], [ -95.430628030104558, 30.006329245018474 ], [ -95.43038602959281, 30.006371245208616 ], [ -95.430347030377277, 30.006363245451642 ], [ -95.430308030131769, 30.00635524565585 ], [ -95.430254029484232, 30.006308245621693 ], [ -95.430222030170171, 30.006235245604838 ], [ -95.430221029908267, 30.006226245558228 ], [ -95.430146029463515, 30.005716245219606 ], [ -95.430135029893904, 30.005635244951343 ], [ -95.429750030224113, 30.005675245199125 ], [ -95.429621029188539, 30.005689245380385 ], [ -95.427807028978734, 30.005881245339854 ], [ -95.42756802887385, 30.005906245202304 ], [ -95.427449029196353, 30.005919245677255 ], [ -95.427170029472194, 30.005937245649605 ], [ -95.427194029215215, 30.006061245311571 ], [ -95.427218029583685, 30.006182245698142 ], [ -95.427368029209859, 30.006977245409928 ], [ -95.427471029708357, 30.007523246009594 ], [ -95.427738029569639, 30.009338245868154 ], [ -95.427922029442314, 30.010584246004758 ], [ -95.427933029911614, 30.010652246499269 ], [ -95.428169029947028, 30.012555246155305 ], [ -95.428241029173094, 30.013097247078175 ], [ -95.42829202951512, 30.013814246677086 ], [ -95.428457029350724, 30.015629246914834 ], [ -95.42862103025854, 30.017484247497823 ], [ -95.428751029683269, 30.01869224775929 ], [ -95.428775030228337, 30.018918247676133 ], [ -95.428792030345804, 30.01907024778086 ], [ -95.428972029995933, 30.020925248186678 ], [ -95.428973030070964, 30.020939248465989 ], [ -95.428980030049658, 30.021008247897939 ], [ -95.428989030487983, 30.021157248058728 ], [ -95.429007030318033, 30.021348248739777 ], [ -95.429068030717815, 30.021330248062444 ], [ -95.429326030241299, 30.021254248634175 ], [ -95.429964030469662, 30.021061248631586 ], [ -95.431224030943937, 30.020680248194921 ], [ -95.432528031405795, 30.020285248442285 ], [ -95.43403703133049, 30.019828247920824 ], [ -95.436656032062288, 30.019037247452019 ], [ -95.439288033235158, 30.018241247754109 ], [ -95.440594033382382, 30.017846247515177 ], [ -95.44068203329212, 30.017819247074105 ], [ -95.441002033213508, 30.017722246949635 ], [ -95.442260033094328, 30.017342247075646 ], [ -95.442852033997625, 30.017123247232504 ], [ -95.443602033736894, 30.01689524716214 ], [ -95.445109034458937, 30.016438246587288 ], [ -95.445583034144505, 30.016295246605818 ], [ -95.446997034127008, 30.015867246429806 ], [ -95.447062034516122, 30.015847246827956 ], [ -95.447117034903115, 30.015830246443908 ], [ -95.447219035185171, 30.015799246296424 ], [ -95.447409034305238, 30.015743246793342 ], [ -95.447924034470219, 30.015589246454457 ], [ -95.448021034539721, 30.015550246664549 ], [ -95.448102035208279, 30.0155182465727 ], [ -95.448266034562252, 30.015453246666603 ], [ -95.448939035023983, 30.015140246781378 ], [ -95.449078034627703, 30.015064246105077 ], [ -95.449211035330862, 30.014991246645661 ], [ -95.449438035484548, 30.014868246716158 ], [ -95.450512035204852, 30.014283246015157 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 569, "Tract": "48201520502", "Area_SqMi": 1.1136273989286782, "total_2009": 6299, "total_2010": 6151, "total_2011": 6795, "total_2012": 7027, "total_2013": 7328, "total_2014": 7393, "total_2015": 6900, "total_2016": 6477, "total_2017": 6501, "total_2018": 6792, "total_2019": 7577, "total_2020": 7941, "age1": 2052, "age2": 4632, "age3": 1866, "earn1": 1388, "earn2": 2388, "earn3": 4774, "naics_s01": 0, "naics_s02": 19, "naics_s03": 0, "naics_s04": 1246, "naics_s05": 1299, "naics_s06": 1126, "naics_s07": 244, "naics_s08": 2159, "naics_s09": 11, "naics_s10": 982, "naics_s11": 106, "naics_s12": 323, "naics_s13": 1, "naics_s14": 846, "naics_s15": 0, "naics_s16": 36, "naics_s17": 0, "naics_s18": 93, "naics_s19": 59, "naics_s20": 0, "race1": 5686, "race2": 2032, "race3": 82, "race4": 602, "race5": 13, "race6": 135, "ethnicity1": 5402, "ethnicity2": 3148, "edu1": 1552, "edu2": 1719, "edu3": 2012, "edu4": 1215, "Shape_Length": 34047.132871056318, "Shape_Area": 31046025.889789514, "total_2021": 8372, "total_2022": 8550 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.514909044446625, 29.841182208322042 ], [ -95.515109044374441, 29.841038208516881 ], [ -95.51346204398908, 29.839892208156623 ], [ -95.512496043824967, 29.839209207961652 ], [ -95.512139043363192, 29.83895520810427 ], [ -95.510766043020581, 29.837921208084985 ], [ -95.510055042325618, 29.83743420806972 ], [ -95.508012041775885, 29.835955207942035 ], [ -95.507672042484415, 29.835729207517247 ], [ -95.506304041417565, 29.834810207809607 ], [ -95.505482041268223, 29.834217207782363 ], [ -95.504727041349511, 29.833672207791565 ], [ -95.50452704150166, 29.833525207261555 ], [ -95.502634040319577, 29.832178207141354 ], [ -95.502541040377608, 29.832112207585453 ], [ -95.502378040620187, 29.831996206820168 ], [ -95.501272040434898, 29.831176207084269 ], [ -95.499185039856897, 29.82971820701929 ], [ -95.496942039026379, 29.828107206348164 ], [ -95.496456038860302, 29.827780206121833 ], [ -95.494757038221579, 29.826523206030021 ], [ -95.494224037940057, 29.826152205996628 ], [ -95.493688037523768, 29.825767205944604 ], [ -95.493214038178422, 29.826268206151827 ], [ -95.492880037867138, 29.826666206618437 ], [ -95.49232403785534, 29.827245206233524 ], [ -95.491789037266273, 29.827900206641164 ], [ -95.491513037037336, 29.828505207186993 ], [ -95.491397037776196, 29.829175206892973 ], [ -95.491358037367405, 29.829561207183396 ], [ -95.49131803798619, 29.829970207111185 ], [ -95.491229037506969, 29.830878207020085 ], [ -95.491183037899702, 29.831716207278447 ], [ -95.491083037455411, 29.832491207695032 ], [ -95.490832037989946, 29.833312208325644 ], [ -95.49042303693264, 29.83313520789433 ], [ -95.490263036947752, 29.833095207969702 ], [ -95.48983303701192, 29.833038208069258 ], [ -95.488860036975822, 29.833020207655128 ], [ -95.488844037246992, 29.832209207598751 ], [ -95.488839037377502, 29.831449207243764 ], [ -95.488827036723947, 29.830680207510621 ], [ -95.488824037186276, 29.829916207314877 ], [ -95.488803037100709, 29.829149207356259 ], [ -95.488139036705931, 29.829115206937033 ], [ -95.487088036399655, 29.828898206965029 ], [ -95.486566036524309, 29.828840207388986 ], [ -95.486126035942817, 29.828828207542038 ], [ -95.485155035928528, 29.828851206967624 ], [ -95.485124035749848, 29.829192207117256 ], [ -95.485055035513625, 29.829409207344092 ], [ -95.484972036358599, 29.82961420758641 ], [ -95.484548035488757, 29.830398207666605 ], [ -95.483510035488436, 29.830404207314295 ], [ -95.48223603564179, 29.830423207628016 ], [ -95.482220035433514, 29.829641207783368 ], [ -95.482203035097754, 29.828881207289655 ], [ -95.482200034846727, 29.828110207180202 ], [ -95.48218703492735, 29.827344206838184 ], [ -95.482114035157366, 29.827011207042457 ], [ -95.482029035138311, 29.826826206751349 ], [ -95.481931034926419, 29.826681207117989 ], [ -95.48167503450415, 29.826397207172928 ], [ -95.48148503440639, 29.826153207081742 ], [ -95.481457034994705, 29.826105206510789 ], [ -95.481259034521088, 29.826206206977204 ], [ -95.481089034250758, 29.826305207036093 ], [ -95.480490034782264, 29.826459206994755 ], [ -95.480282034149042, 29.826536207289504 ], [ -95.480042034808193, 29.826558207173587 ], [ -95.479929034686762, 29.826542206858417 ], [ -95.479765034756355, 29.82650920703216 ], [ -95.479153033813205, 29.826333207278484 ], [ -95.478983034284923, 29.826295207269435 ], [ -95.478806034011981, 29.826273207237257 ], [ -95.478548034217596, 29.826278206508178 ], [ -95.477501033358465, 29.826367207280061 ], [ -95.477161033278733, 29.826422206915616 ], [ -95.477009033276346, 29.826488207339043 ], [ -95.476901033446282, 29.826553207321826 ], [ -95.476808033973327, 29.826609206851003 ], [ -95.476688033617464, 29.826716207257562 ], [ -95.480261034242417, 29.83003420768302 ], [ -95.481763035561414, 29.831456208128458 ], [ -95.483282035927871, 29.832865208466743 ], [ -95.483579035579098, 29.833140207938971 ], [ -95.483867035734079, 29.833407208179587 ], [ -95.486342036789935, 29.835702208198374 ], [ -95.488663037562901, 29.837855208477851 ], [ -95.488863036978032, 29.838029208471283 ], [ -95.48918603731147, 29.838318208533465 ], [ -95.490055037628878, 29.839114209443835 ], [ -95.490841037860889, 29.839870209070597 ], [ -95.490882037762091, 29.839910209074056 ], [ -95.491096038380746, 29.840096209228687 ], [ -95.491754038537067, 29.840667209353217 ], [ -95.492740038468199, 29.841431209629 ], [ -95.493048038771377, 29.841451209477917 ], [ -95.494765039136425, 29.841429209160243 ], [ -95.494915038529214, 29.841424209121516 ], [ -95.495194038785911, 29.841436209807483 ], [ -95.495540039307556, 29.841414209058318 ], [ -95.496472038867282, 29.841411209434451 ], [ -95.496721039723866, 29.841410209024332 ], [ -95.498547039416735, 29.841384209168552 ], [ -95.499526039957232, 29.841377209205245 ], [ -95.500383040492281, 29.841372209439513 ], [ -95.500594040923346, 29.84137720906957 ], [ -95.501212040657592, 29.841363208937871 ], [ -95.501630040193419, 29.841351208875803 ], [ -95.501881040390003, 29.841366209263821 ], [ -95.502997041195201, 29.841350209333061 ], [ -95.503192041114332, 29.841350208684908 ], [ -95.503998041582861, 29.84134620913547 ], [ -95.504484041211199, 29.84134420918404 ], [ -95.504925041069697, 29.84134020882167 ], [ -95.506286041375319, 29.841326208593756 ], [ -95.50740304243125, 29.841295209308736 ], [ -95.50813604212702, 29.841266209334904 ], [ -95.508984042518591, 29.841222209073475 ], [ -95.509788042876124, 29.841225209111087 ], [ -95.510530042592094, 29.84122020872676 ], [ -95.511971043435565, 29.841199209050192 ], [ -95.512729043775266, 29.841189208735805 ], [ -95.513323043466926, 29.841185208495382 ], [ -95.513919043305336, 29.841180208784639 ], [ -95.514909044446625, 29.841182208322042 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 570, "Tract": "48201240905", "Area_SqMi": 0.80615056335033575, "total_2009": 22, "total_2010": 24, "total_2011": 65, "total_2012": 77, "total_2013": 71, "total_2014": 116, "total_2015": 85, "total_2016": 183, "total_2017": 405, "total_2018": 476, "total_2019": 563, "total_2020": 519, "age1": 110, "age2": 279, "age3": 125, "earn1": 71, "earn2": 144, "earn3": 299, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 182, "naics_s07": 142, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 16, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 28, "naics_s17": 0, "naics_s18": 125, "naics_s19": 10, "naics_s20": 0, "race1": 344, "race2": 129, "race3": 5, "race4": 23, "race5": 0, "race6": 13, "ethnicity1": 355, "ethnicity2": 159, "edu1": 97, "edu2": 134, "edu3": 112, "edu4": 61, "Shape_Length": 20748.784168834085, "Shape_Area": 22474097.965728857, "total_2021": 493, "total_2022": 514 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.330117004725849, 30.011641250241357 ], [ -95.330129004339625, 30.011543250215034 ], [ -95.330109004478913, 30.011538249495459 ], [ -95.32951800455244, 30.011300249981797 ], [ -95.329087003815303, 30.011161250005376 ], [ -95.328868004414574, 30.011088249690562 ], [ -95.321288001561626, 30.008200249658515 ], [ -95.318953001257043, 30.007310249451173 ], [ -95.318636000946398, 30.007196249622229 ], [ -95.318413001495188, 30.007115249556392 ], [ -95.318296000962391, 30.007072249576769 ], [ -95.317746001491599, 30.006862249497644 ], [ -95.317546001167557, 30.006787248917913 ], [ -95.316785000847304, 30.006500249007484 ], [ -95.31597600029427, 30.006195248907417 ], [ -95.315619000377325, 30.006054248859034 ], [ -95.314630999771708, 30.005664249320617 ], [ -95.313054999620419, 30.005043248930949 ], [ -95.312490999467968, 30.004821249181742 ], [ -95.311656999404349, 30.004626249180927 ], [ -95.311350998975229, 30.004546248850311 ], [ -95.310900999717305, 30.004475249197345 ], [ -95.310426999333515, 30.00442524872301 ], [ -95.310223999074537, 30.004403248777518 ], [ -95.308913998564506, 30.004371249454685 ], [ -95.308928998733862, 30.004878249395784 ], [ -95.308942999107103, 30.00497324939575 ], [ -95.308960999070635, 30.005629248884407 ], [ -95.308951999038811, 30.005970249800175 ], [ -95.308933998739647, 30.00615224951429 ], [ -95.308903998584427, 30.006341249582267 ], [ -95.308821998624438, 30.006725249549785 ], [ -95.308543998847213, 30.007986249714925 ], [ -95.308382999268204, 30.008745250117524 ], [ -95.308339998820415, 30.008961249869035 ], [ -95.308287998888204, 30.009155250278898 ], [ -95.308227998631054, 30.009353250493366 ], [ -95.308206999099625, 30.009528249916059 ], [ -95.308120999065821, 30.009918249897087 ], [ -95.308020998918579, 30.010345250194504 ], [ -95.307985999088331, 30.010540250190033 ], [ -95.307702998894229, 30.011967250576166 ], [ -95.307665998922758, 30.012122250472888 ], [ -95.307056998435286, 30.014844251510016 ], [ -95.307049998802782, 30.014876251518096 ], [ -95.306958999071838, 30.015305251708437 ], [ -95.306794998234707, 30.016043251127869 ], [ -95.306770998396843, 30.01620825148057 ], [ -95.306765998299042, 30.016271251440521 ], [ -95.306766998194661, 30.016305251282734 ], [ -95.306867999057459, 30.016308251738437 ], [ -95.309543998933862, 30.016305251415258 ], [ -95.315089001350941, 30.016298250886937 ], [ -95.315306001046579, 30.016297250998985 ], [ -95.318509001724792, 30.016295250945976 ], [ -95.329983004441274, 30.016243251013655 ], [ -95.330115004445588, 30.016243251083228 ], [ -95.330115004745778, 30.016141250725376 ], [ -95.330106004125611, 30.01469924998338 ], [ -95.330103004104743, 30.013520250438251 ], [ -95.330103004761867, 30.013195250152791 ], [ -95.330122004026649, 30.01237425034952 ], [ -95.330114004493566, 30.012243249989993 ], [ -95.33011200408842, 30.012015250046257 ], [ -95.330111004400536, 30.011782249919808 ], [ -95.330117004725849, 30.011641250241357 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 571, "Tract": "48201550406", "Area_SqMi": 1.2508469501157342, "total_2009": 172, "total_2010": 229, "total_2011": 26, "total_2012": 35, "total_2013": 30, "total_2014": 25, "total_2015": 22, "total_2016": 20, "total_2017": 25, "total_2018": 57, "total_2019": 43, "total_2020": 26, "age1": 13, "age2": 15, "age3": 9, "earn1": 14, "earn2": 5, "earn3": 18, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 3, "naics_s06": 0, "naics_s07": 14, "naics_s08": 12, "naics_s09": 0, "naics_s10": 0, "naics_s11": 7, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 1, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 24, "race2": 13, "race3": 0, "race4": 0, "race5": 0, "race6": 0, "ethnicity1": 24, "ethnicity2": 13, "edu1": 7, "edu2": 3, "edu3": 11, "edu4": 3, "Shape_Length": 34475.386353818372, "Shape_Area": 34871472.123275615, "total_2021": 28, "total_2022": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.467153039011322, 29.989997240747797 ], [ -95.467598038250557, 29.988942240481951 ], [ -95.466596038269671, 29.988072240471212 ], [ -95.466053038471983, 29.987798240429438 ], [ -95.46571903833923, 29.987498239892876 ], [ -95.464115037234819, 29.985559239402331 ], [ -95.46258303748769, 29.983312239178026 ], [ -95.461618036794064, 29.983421239429294 ], [ -95.461321036405337, 29.983528239612486 ], [ -95.460288036355337, 29.984070239279532 ], [ -95.460109036780167, 29.984222239295107 ], [ -95.459737036434035, 29.985059240096419 ], [ -95.459442036028562, 29.985270240156428 ], [ -95.458658036042678, 29.985285239709228 ], [ -95.458293036334766, 29.985325239625404 ], [ -95.457281035844574, 29.985642239723607 ], [ -95.455614035089567, 29.986413240116651 ], [ -95.454204035573468, 29.986484240552684 ], [ -95.453855034810772, 29.986114240460626 ], [ -95.453194034834212, 29.984216240154424 ], [ -95.452738034610903, 29.982808239528751 ], [ -95.452586034627529, 29.982338239611483 ], [ -95.445781033185469, 29.982434239505274 ], [ -95.445768032627683, 29.978798239410928 ], [ -95.445762032198317, 29.974028237980512 ], [ -95.445459032733396, 29.974012238243237 ], [ -95.445383032780043, 29.974008238125638 ], [ -95.445296032685107, 29.974005238385317 ], [ -95.444726032572248, 29.973986237844912 ], [ -95.444057031474543, 29.973947238528812 ], [ -95.44312903132591, 29.97394223798608 ], [ -95.442674031903408, 29.973881238226021 ], [ -95.442219031823512, 29.973760238193758 ], [ -95.441638030861682, 29.973563238513655 ], [ -95.441268030917854, 29.973412237994069 ], [ -95.440735030918759, 29.97319423856905 ], [ -95.440565030629955, 29.973106238541259 ], [ -95.440470031199652, 29.973051238441638 ], [ -95.440287030560313, 29.973013238088313 ], [ -95.440148031340058, 29.973046238212007 ], [ -95.439851030750376, 29.972936238315864 ], [ -95.439592031233204, 29.972870238359793 ], [ -95.439062030107578, 29.972788238044302 ], [ -95.438967030280907, 29.972755238370659 ], [ -95.438481030726379, 29.97272223804897 ], [ -95.437906030641429, 29.972645237739687 ], [ -95.437799030347335, 29.97252923800756 ], [ -95.437079030203421, 29.972546238334697 ], [ -95.436700030183843, 29.972480238503532 ], [ -95.436119030267463, 29.972496238486318 ], [ -95.435835029627967, 29.972419238407639 ], [ -95.43546302931027, 29.972524237978853 ], [ -95.435200029977096, 29.972697238573197 ], [ -95.435440029510019, 29.972914238101616 ], [ -95.436153030212793, 29.973539238561472 ], [ -95.43655503025488, 29.973904238377902 ], [ -95.436718029634974, 29.974060238504126 ], [ -95.436743030433746, 29.974084238361272 ], [ -95.436974029907219, 29.974324238653534 ], [ -95.437086030518174, 29.974454238103309 ], [ -95.437220030667746, 29.974623238951292 ], [ -95.437395029980493, 29.974862238262837 ], [ -95.437580030401236, 29.975139238985111 ], [ -95.43762403086572, 29.97521823833203 ], [ -95.437661030579861, 29.975277238302869 ], [ -95.437674030846836, 29.975297238858737 ], [ -95.437805030121908, 29.975558238881192 ], [ -95.437886030131011, 29.975738239115366 ], [ -95.437979030989368, 29.975981238818321 ], [ -95.438008029991281, 29.97604123862439 ], [ -95.438018030927608, 29.976060238940065 ], [ -95.438058030880015, 29.976190239295629 ], [ -95.438155030987716, 29.976505238820511 ], [ -95.4381760302267, 29.97659123847944 ], [ -95.438223030720124, 29.976871238849281 ], [ -95.438271030967428, 29.977228239361196 ], [ -95.438296030449393, 29.977573239107105 ], [ -95.438295030569662, 29.977672239201894 ], [ -95.438300030371991, 29.977743239457059 ], [ -95.438303030913303, 29.97777623915244 ], [ -95.438299030587231, 29.977931239296332 ], [ -95.438295031056242, 29.978210238867661 ], [ -95.438284030812369, 29.978366239338527 ], [ -95.438272030840139, 29.978533239305918 ], [ -95.438241030851287, 29.978771239293408 ], [ -95.4382040308396, 29.978976239448997 ], [ -95.438158030359048, 29.97917223944355 ], [ -95.438055030771395, 29.979531239651017 ], [ -95.438018030570561, 29.979640239541567 ], [ -95.437941030637631, 29.979842239877932 ], [ -95.43782503067635, 29.980111240073171 ], [ -95.437693030710591, 29.980376239693378 ], [ -95.437639030898509, 29.980485239830521 ], [ -95.437582030272125, 29.980568239823821 ], [ -95.437475031000233, 29.980746239455179 ], [ -95.43727403014887, 29.981038239590816 ], [ -95.437538030867515, 29.981262239480756 ], [ -95.438698031299381, 29.98227124041577 ], [ -95.439661031647489, 29.983116240275439 ], [ -95.440055031637101, 29.983461240216094 ], [ -95.44016403121276, 29.983550239818477 ], [ -95.441131031214397, 29.984401240658187 ], [ -95.441392031930107, 29.984622240113818 ], [ -95.443232031848993, 29.986228241067376 ], [ -95.444421032529092, 29.987265240962859 ], [ -95.445212032752849, 29.987955241425158 ], [ -95.445973032997415, 29.988611241395681 ], [ -95.44626203327411, 29.988851241508165 ], [ -95.446387033706941, 29.988960241418848 ], [ -95.446613032991976, 29.989150241335942 ], [ -95.449078033835903, 29.99123024141991 ], [ -95.449334034205648, 29.991444241202736 ], [ -95.449885034212201, 29.991911241603258 ], [ -95.450525034628214, 29.992453242137042 ], [ -95.450952034654918, 29.992816241720057 ], [ -95.451954034777799, 29.993660242184525 ], [ -95.452074034611798, 29.993761241829326 ], [ -95.454537035638822, 29.995845242352356 ], [ -95.454641035592829, 29.995946242269621 ], [ -95.454854036096805, 29.996133242084184 ], [ -95.454959035999721, 29.996231242676874 ], [ -95.455260035365427, 29.996530242069177 ], [ -95.455546036229649, 29.996834242343162 ], [ -95.455826035634061, 29.997159242720002 ], [ -95.456102035610243, 29.997504242739915 ], [ -95.456807036348508, 29.998461242879241 ], [ -95.457265036883399, 29.999085243076834 ], [ -95.457590036847421, 29.99952524288231 ], [ -95.457907036380703, 29.99995624329847 ], [ -95.458353037126543, 29.999669242490043 ], [ -95.459274037219728, 29.999027242636295 ], [ -95.46030203697994, 29.998349242869487 ], [ -95.460607037360901, 29.99812924219837 ], [ -95.461148037853889, 29.997822242468001 ], [ -95.460795037576247, 29.997359242393074 ], [ -95.460592036856781, 29.997092242517251 ], [ -95.460602037474303, 29.996788242707687 ], [ -95.460895036879904, 29.995961242367027 ], [ -95.46119103729221, 29.995239242294815 ], [ -95.461364036842568, 29.994805242137289 ], [ -95.461615037141897, 29.994390241589077 ], [ -95.461870037534041, 29.994123241457931 ], [ -95.462226037026895, 29.99389224147556 ], [ -95.462526037778744, 29.993700241839878 ], [ -95.46379203793208, 29.993108241377424 ], [ -95.464853038149656, 29.99266724145841 ], [ -95.465669037998566, 29.992334241532934 ], [ -95.466169037965685, 29.991939241287557 ], [ -95.466754038859008, 29.990755240467777 ], [ -95.466782038401647, 29.990782241148565 ], [ -95.467153039011322, 29.989997240747797 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 572, "Tract": "48201520604", "Area_SqMi": 0.38360866254284826, "total_2009": 477, "total_2010": 474, "total_2011": 521, "total_2012": 515, "total_2013": 509, "total_2014": 616, "total_2015": 596, "total_2016": 705, "total_2017": 614, "total_2018": 581, "total_2019": 612, "total_2020": 566, "age1": 162, "age2": 265, "age3": 113, "earn1": 147, "earn2": 183, "earn3": 210, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 36, "naics_s06": 0, "naics_s07": 149, "naics_s08": 6, "naics_s09": 0, "naics_s10": 25, "naics_s11": 4, "naics_s12": 9, "naics_s13": 0, "naics_s14": 246, "naics_s15": 0, "naics_s16": 19, "naics_s17": 0, "naics_s18": 5, "naics_s19": 0, "naics_s20": 0, "race1": 403, "race2": 99, "race3": 9, "race4": 24, "race5": 1, "race6": 4, "ethnicity1": 298, "ethnicity2": 242, "edu1": 105, "edu2": 108, "edu3": 113, "edu4": 52, "Shape_Length": 13205.915598058818, "Shape_Area": 10694352.958906982, "total_2021": 512, "total_2022": 540 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.500906038893632, 29.803961201500019 ], [ -95.500899039022215, 29.803021201679389 ], [ -95.499743038413158, 29.803027201133109 ], [ -95.497977038426185, 29.803047201240172 ], [ -95.497048037785518, 29.803042201157197 ], [ -95.496889038139756, 29.803042201106461 ], [ -95.49557103705439, 29.803047201374309 ], [ -95.493744037400475, 29.80300320131483 ], [ -95.493258036471204, 29.802980201758118 ], [ -95.491980035988988, 29.802959201974101 ], [ -95.491301036321033, 29.80294520131525 ], [ -95.491138036225593, 29.802946201772308 ], [ -95.489997035985709, 29.802920202096995 ], [ -95.48886703587263, 29.802889201341365 ], [ -95.488888035492636, 29.803072202135166 ], [ -95.488925036014635, 29.803335202131141 ], [ -95.48892903553633, 29.803914202328489 ], [ -95.488955035285827, 29.804897202309832 ], [ -95.488988035890898, 29.805099202552238 ], [ -95.489134035955743, 29.80538120225108 ], [ -95.489167035751578, 29.805543202486685 ], [ -95.489169036031342, 29.805865201921254 ], [ -95.489176035475452, 29.807130202183966 ], [ -95.489187036372115, 29.80761920276392 ], [ -95.48919003612373, 29.80799120296313 ], [ -95.489187036093696, 29.808314203107724 ], [ -95.489281036272814, 29.808517202922012 ], [ -95.489312036167078, 29.808677202701585 ], [ -95.489327035663507, 29.809134203146105 ], [ -95.489352036418964, 29.809896203515532 ], [ -95.48933703607895, 29.810679203758166 ], [ -95.491035036993466, 29.810674203002684 ], [ -95.491709036752837, 29.810702203380931 ], [ -95.492597037268055, 29.810838202802486 ], [ -95.493492037384271, 29.811002203644321 ], [ -95.494360037935323, 29.811044203244894 ], [ -95.49479803801438, 29.811036203108035 ], [ -95.496279038005682, 29.811012203465946 ], [ -95.498247038869096, 29.810989203355799 ], [ -95.499470038301709, 29.810957202764957 ], [ -95.499678038411844, 29.810950202636814 ], [ -95.500165039415279, 29.810943202577672 ], [ -95.500640038831918, 29.810925203148347 ], [ -95.500863039375545, 29.810912203056098 ], [ -95.500873038866999, 29.809011202936258 ], [ -95.500876038812521, 29.808296202452109 ], [ -95.500869038644353, 29.808197202359342 ], [ -95.500906038893632, 29.803961201500019 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 573, "Tract": "48201521501", "Area_SqMi": 0.1914336691274004, "total_2009": 114, "total_2010": 116, "total_2011": 91, "total_2012": 86, "total_2013": 106, "total_2014": 79, "total_2015": 70, "total_2016": 66, "total_2017": 66, "total_2018": 73, "total_2019": 78, "total_2020": 70, "age1": 20, "age2": 61, "age3": 21, "earn1": 12, "earn2": 39, "earn3": 51, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 49, "naics_s06": 0, "naics_s07": 13, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 5, "naics_s12": 0, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 5, "naics_s19": 4, "naics_s20": 0, "race1": 84, "race2": 5, "race3": 0, "race4": 13, "race5": 0, "race6": 0, "ethnicity1": 38, "ethnicity2": 64, "edu1": 32, "edu2": 18, "edu3": 16, "edu4": 16, "Shape_Length": 12526.429012940982, "Shape_Area": 5336843.0532727093, "total_2021": 84, "total_2022": 102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.526376046257212, 29.83045220647422 ], [ -95.526362046176615, 29.82908520598334 ], [ -95.526366046246466, 29.828490205901836 ], [ -95.526358046340803, 29.827848205438773 ], [ -95.52635304669829, 29.827578205732404 ], [ -95.526347045855246, 29.827246205808372 ], [ -95.526342046236138, 29.827047205535425 ], [ -95.526334046426228, 29.826260205506959 ], [ -95.526333046035177, 29.825383204772454 ], [ -95.526320046411584, 29.824989205162471 ], [ -95.52631704603958, 29.824804204619717 ], [ -95.526316045885025, 29.824754204642748 ], [ -95.526310046403069, 29.824650204502102 ], [ -95.52630904598584, 29.824633204948213 ], [ -95.526302046274694, 29.824238204432515 ], [ -95.526301045842686, 29.823993204806975 ], [ -95.52630004643909, 29.823508204845218 ], [ -95.52630004601464, 29.823467204529113 ], [ -95.526299046211932, 29.823373204850334 ], [ -95.5262990458871, 29.823357204215966 ], [ -95.52629904578788, 29.823332204532601 ], [ -95.526288046140934, 29.821950204236142 ], [ -95.525199046188035, 29.821943204490697 ], [ -95.523850045556784, 29.82196720463395 ], [ -95.522671045339877, 29.821988204150447 ], [ -95.522595045595324, 29.821989204536145 ], [ -95.521596045287467, 29.821976204680976 ], [ -95.520691045039015, 29.821971204857576 ], [ -95.519772043980709, 29.821806204413448 ], [ -95.519010043749034, 29.821588204923938 ], [ -95.518544044073352, 29.821403204528167 ], [ -95.517409044160985, 29.821134204688089 ], [ -95.517438043889271, 29.822062204311532 ], [ -95.517451043836473, 29.82292320486248 ], [ -95.517463044036205, 29.823809205127553 ], [ -95.517456044159744, 29.824184205242041 ], [ -95.517458044073777, 29.824276204779736 ], [ -95.517429043946848, 29.824374204878495 ], [ -95.517330043985723, 29.824421205157243 ], [ -95.516529043708701, 29.8244292049358 ], [ -95.516539044127555, 29.825013204929839 ], [ -95.517201044387406, 29.824999205392757 ], [ -95.518163044628807, 29.824989205701289 ], [ -95.519021044209993, 29.824981205452506 ], [ -95.519401044192364, 29.824977204936339 ], [ -95.52001804452442, 29.824961205631357 ], [ -95.520574044711154, 29.824961205333413 ], [ -95.522667045459201, 29.824904204713135 ], [ -95.522659044853, 29.825399205377678 ], [ -95.522694045234374, 29.826479205463542 ], [ -95.522797045039496, 29.827199205757584 ], [ -95.522996045746382, 29.827792205406052 ], [ -95.523332045341576, 29.828494205347514 ], [ -95.523462046135478, 29.828724205659203 ], [ -95.523484045936939, 29.828841205826553 ], [ -95.52354004614142, 29.829045205732516 ], [ -95.523571045896361, 29.829209206255577 ], [ -95.523604045868069, 29.829443205653096 ], [ -95.523618045378967, 29.829690205582132 ], [ -95.523625045431984, 29.830482206222623 ], [ -95.525389046167319, 29.830473206308959 ], [ -95.526376046257212, 29.83045220647422 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 574, "Tract": "48201250304", "Area_SqMi": 3.6292215688428899, "total_2009": 424, "total_2010": 411, "total_2011": 545, "total_2012": 589, "total_2013": 702, "total_2014": 827, "total_2015": 754, "total_2016": 867, "total_2017": 969, "total_2018": 885, "total_2019": 919, "total_2020": 897, "age1": 121, "age2": 428, "age3": 190, "earn1": 65, "earn2": 119, "earn3": 555, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 204, "naics_s05": 19, "naics_s06": 12, "naics_s07": 79, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 11, "naics_s14": 167, "naics_s15": 49, "naics_s16": 140, "naics_s17": 0, "naics_s18": 26, "naics_s19": 4, "naics_s20": 20, "race1": 537, "race2": 166, "race3": 5, "race4": 19, "race5": 1, "race6": 11, "ethnicity1": 476, "ethnicity2": 263, "edu1": 122, "edu2": 183, "edu3": 208, "edu4": 105, "Shape_Length": 45567.499617910638, "Shape_Area": 101176485.8645463, "total_2021": 908, "total_2022": 739 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.249620981496534, 29.951432240344435 ], [ -95.249653980752996, 29.951177240513587 ], [ -95.249565980871424, 29.951062239825117 ], [ -95.249458980695451, 29.950958240424434 ], [ -95.24933898108749, 29.95088124046228 ], [ -95.249300981407401, 29.950875240476734 ], [ -95.249205980902147, 29.950820240272801 ], [ -95.249161981237279, 29.95078224001993 ], [ -95.24906098138014, 29.95062823993673 ], [ -95.248978981202825, 29.950474239868374 ], [ -95.248933980481141, 29.950425239936528 ], [ -95.248712980863871, 29.950331240399748 ], [ -95.248637980760307, 29.950276239884822 ], [ -95.248201980747524, 29.949881239644572 ], [ -95.248024980147221, 29.949743239771518 ], [ -95.247942980190061, 29.949661240114622 ], [ -95.247777980528198, 29.949567239762477 ], [ -95.247519980423547, 29.949507240100587 ], [ -95.246407980425928, 29.949321239759925 ], [ -95.245896980326933, 29.949206239649861 ], [ -95.245473979875399, 29.949151239523772 ], [ -95.245157979801903, 29.949090239586077 ], [ -95.244866979354171, 29.949019240033621 ], [ -95.244683979210862, 29.949014240262873 ], [ -95.244526980039012, 29.94904123971045 ], [ -95.244450979297653, 29.949036239619776 ], [ -95.244380979424221, 29.949008240090997 ], [ -95.244311979201314, 29.948959239583761 ], [ -95.24413497904105, 29.948909240391476 ], [ -95.243762979521136, 29.948871240397438 ], [ -95.243566979624788, 29.94881124009046 ], [ -95.243288979566017, 29.948772240328434 ], [ -95.243092979029242, 29.948767240150278 ], [ -95.242865979156093, 29.948778239849176 ], [ -95.242492978824274, 29.948828239646556 ], [ -95.242309978941307, 29.948833239746044 ], [ -95.242221979419071, 29.948850240286689 ], [ -95.24197597871013, 29.948855240211142 ], [ -95.241684978781009, 29.94891624011942 ], [ -95.24155297881893, 29.948960240444748 ], [ -95.241463978738253, 29.949021239899778 ], [ -95.241293979305937, 29.949026239733964 ], [ -95.241122978364373, 29.948999240522298 ], [ -95.240901978515438, 29.948911240311549 ], [ -95.240744978551731, 29.948867240481853 ], [ -95.240680978251433, 29.948829240498434 ], [ -95.238280977736352, 29.946889239781555 ], [ -95.238242977466442, 29.946856239327026 ], [ -95.238166977969755, 29.946702239394753 ], [ -95.23811097744634, 29.946647239766438 ], [ -95.23804697833846, 29.946603239476261 ], [ -95.237920977825638, 29.946570239790091 ], [ -95.23784497830772, 29.946537239438968 ], [ -95.237813977909624, 29.946499239385155 ], [ -95.237737977748452, 29.946378239915166 ], [ -95.237497978027378, 29.946191239673226 ], [ -95.237131978049874, 29.945949239196935 ], [ -95.237067977144093, 29.945921239580862 ], [ -95.23610797763628, 29.945037239555454 ], [ -95.235994977382603, 29.944921239348876 ], [ -95.235911977714096, 29.944690239840973 ], [ -95.236043976728951, 29.943178238842197 ], [ -95.236075977530703, 29.942903238962845 ], [ -95.236075976922791, 29.94276023869234 ], [ -95.236024977506091, 29.942606238577241 ], [ -95.23600597760479, 29.94248023860526 ], [ -95.2359999767435, 29.942381238462598 ], [ -95.236030977164233, 29.942172239213775 ], [ -95.236024977107206, 29.94195823894869 ], [ -95.235992976991653, 29.941831238959338 ], [ -95.235986976610235, 29.941661239169452 ], [ -95.236023976819354, 29.941413238570412 ], [ -95.236012977610017, 29.941047238237211 ], [ -95.236010977392382, 29.940963238513387 ], [ -95.236029977366897, 29.940726238300758 ], [ -95.236016977103745, 29.940132238500553 ], [ -95.235985977310179, 29.93980223808796 ], [ -95.23604897690619, 29.93953823848031 ], [ -95.236035976677826, 29.939362238249 ], [ -95.235997977529166, 29.939286238401085 ], [ -95.23598497699075, 29.939181237835829 ], [ -95.236003977542765, 29.939082238173206 ], [ -95.236047977194701, 29.93898323812725 ], [ -95.236060976864479, 29.938923237954267 ], [ -95.2360669773593, 29.938796238236215 ], [ -95.236034977434386, 29.938736238168239 ], [ -95.235997976543658, 29.938681238449849 ], [ -95.235965977342744, 29.938653238212698 ], [ -95.235927977199125, 29.938543238185911 ], [ -95.235902977259485, 29.93816923824431 ], [ -95.235921977110877, 29.938032237889146 ], [ -95.23592097669642, 29.937823238275097 ], [ -95.235876976642302, 29.937675238083632 ], [ -95.235920976973432, 29.937510238105933 ], [ -95.235920977165691, 29.937411238169652 ], [ -95.235895976521746, 29.937345237604188 ], [ -95.235699977074759, 29.936954237480801 ], [ -95.235452976728524, 29.93635523781883 ], [ -95.235332976563399, 29.936174237928391 ], [ -95.235320976451604, 29.936119237756472 ], [ -95.235295976669818, 29.936075237357063 ], [ -95.235193976728709, 29.935943237959961 ], [ -95.235073977032357, 29.935844237296305 ], [ -95.23475197688029, 29.935613237208937 ], [ -95.234391976617417, 29.93527823735549 ], [ -95.234328976530279, 29.935179237297536 ], [ -95.23419597602124, 29.934635237708196 ], [ -95.234183976106138, 29.934448237274069 ], [ -95.234196976012356, 29.934384237534449 ], [ -95.234214976142695, 29.934294237291429 ], [ -95.234208976514211, 29.934173237349487 ], [ -95.234090976021079, 29.933960237224639 ], [ -95.233317975946008, 29.933967237470672 ], [ -95.231057975039192, 29.934013236930088 ], [ -95.228119974421475, 29.934082237700309 ], [ -95.226010974000857, 29.934123237150548 ], [ -95.225819974129777, 29.934127237242947 ], [ -95.225767974041744, 29.934128237545448 ], [ -95.225599974420177, 29.934125237669726 ], [ -95.225423974537648, 29.934128237309881 ], [ -95.218939972605796, 29.934162237580331 ], [ -95.21893997286368, 29.934357238184919 ], [ -95.218949972293558, 29.934706238085909 ], [ -95.219024972352784, 29.937444238162112 ], [ -95.219019972972532, 29.937486238655417 ], [ -95.219018972151062, 29.937517238299446 ], [ -95.21901097303973, 29.937726238284966 ], [ -95.218760972948644, 29.944719240377065 ], [ -95.218530973103455, 29.951153241570143 ], [ -95.218678973196091, 29.952205241500035 ], [ -95.218688973454192, 29.954965241789317 ], [ -95.218690972941403, 29.955673241967322 ], [ -95.218715974122091, 29.962873244032064 ], [ -95.218685973945398, 29.968811244687938 ], [ -95.218674973592456, 29.971019245190082 ], [ -95.219221974117616, 29.971268245763138 ], [ -95.219170974224426, 29.972326245287562 ], [ -95.219066974469584, 29.977058246739386 ], [ -95.219068974681008, 29.978361246605413 ], [ -95.219069973983721, 29.978471247172561 ], [ -95.219523974645185, 29.978229246686173 ], [ -95.220234974882814, 29.977846246907255 ], [ -95.221008974705441, 29.977414246398844 ], [ -95.221386975118406, 29.977205246265154 ], [ -95.221705975151295, 29.97702724623834 ], [ -95.221897974636192, 29.976933246662703 ], [ -95.22226497513536, 29.976724246055269 ], [ -95.222637974800989, 29.976519246742765 ], [ -95.223645975580737, 29.975954246254851 ], [ -95.223907975756873, 29.97580924634234 ], [ -95.224718975776653, 29.975361246176828 ], [ -95.225350975828121, 29.975013245574473 ], [ -95.225787975991992, 29.974769245509872 ], [ -95.226088975718213, 29.974609246206928 ], [ -95.226600976695138, 29.974338245725953 ], [ -95.226718976270121, 29.974276245515462 ], [ -95.22733797637116, 29.973950246085113 ], [ -95.227950976367566, 29.973630245783337 ], [ -95.229068976621036, 29.973025245043807 ], [ -95.229588976654398, 29.972744245628231 ], [ -95.229640976812973, 29.972714245073224 ], [ -95.229846977437816, 29.972595245301207 ], [ -95.230051976797, 29.972464245387702 ], [ -95.230883977269642, 29.971897244735807 ], [ -95.231473977560171, 29.971489244597748 ], [ -95.231832977312436, 29.971241244558946 ], [ -95.232605978018597, 29.970711245183839 ], [ -95.232988978012443, 29.970438244413199 ], [ -95.23300097733518, 29.970429245029731 ], [ -95.233336977748522, 29.970193244567849 ], [ -95.234264977620001, 29.969549244899248 ], [ -95.234832978370122, 29.969176244295234 ], [ -95.234891977826933, 29.969136244509912 ], [ -95.234981977939, 29.969074244645896 ], [ -95.235235978312318, 29.968901244542707 ], [ -95.235824978254868, 29.96850024381175 ], [ -95.236200978366895, 29.968241244576923 ], [ -95.236271978621502, 29.968192244582319 ], [ -95.23746397839345, 29.967370244272129 ], [ -95.238080979150595, 29.966944243659256 ], [ -95.239070978865328, 29.966266243941821 ], [ -95.239362978824545, 29.966065243720827 ], [ -95.239624978934472, 29.965885243905188 ], [ -95.240398979331616, 29.965353243169439 ], [ -95.242048979300321, 29.964217242905406 ], [ -95.244144980017154, 29.962775242784645 ], [ -95.244413980319052, 29.962596242993001 ], [ -95.244548980203959, 29.962516243175447 ], [ -95.2448229806716, 29.96237524278153 ], [ -95.244962980770239, 29.962312242820396 ], [ -95.245250980922236, 29.962202242532872 ], [ -95.245360980399994, 29.962168242674068 ], [ -95.2455509802394, 29.962115242462581 ], [ -95.245703980270207, 29.962081242416488 ], [ -95.245855980987187, 29.962052242864672 ], [ -95.246008980486891, 29.962029242934268 ], [ -95.246162980866913, 29.962012242679908 ], [ -95.246468980327165, 29.961991242382876 ], [ -95.246913981255275, 29.961975242578923 ], [ -95.247965980672006, 29.961961242048602 ], [ -95.248029980828377, 29.961973242062744 ], [ -95.247989981361187, 29.961796242283082 ], [ -95.247979981352486, 29.961240241915899 ], [ -95.247983980645728, 29.960791242542665 ], [ -95.247978980805598, 29.960218242381814 ], [ -95.247935980599266, 29.95746924157228 ], [ -95.247936980768969, 29.957208241111033 ], [ -95.247937981159282, 29.956779241075619 ], [ -95.247972981041244, 29.956327241362249 ], [ -95.248002981178345, 29.956106241220166 ], [ -95.248130980583966, 29.955477240866966 ], [ -95.248323981127186, 29.954821240785385 ], [ -95.248486980475761, 29.954401240775475 ], [ -95.248580980826489, 29.954195240721692 ], [ -95.248883980815734, 29.953583240906816 ], [ -95.249163981014803, 29.952992240454158 ], [ -95.249379980576975, 29.952424240683047 ], [ -95.249530980989832, 29.951893240144617 ], [ -95.249620981496534, 29.951432240344435 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 575, "Tract": "48201250602", "Area_SqMi": 3.8134588843158923, "total_2009": 2707, "total_2010": 2237, "total_2011": 2678, "total_2012": 2294, "total_2013": 2693, "total_2014": 2793, "total_2015": 2750, "total_2016": 2482, "total_2017": 2536, "total_2018": 2571, "total_2019": 2354, "total_2020": 2198, "age1": 509, "age2": 1171, "age3": 527, "earn1": 360, "earn2": 686, "earn3": 1161, "naics_s01": 6, "naics_s02": 1, "naics_s03": 0, "naics_s04": 162, "naics_s05": 255, "naics_s06": 208, "naics_s07": 206, "naics_s08": 33, "naics_s09": 133, "naics_s10": 31, "naics_s11": 16, "naics_s12": 93, "naics_s13": 12, "naics_s14": 129, "naics_s15": 65, "naics_s16": 538, "naics_s17": 47, "naics_s18": 221, "naics_s19": 51, "naics_s20": 0, "race1": 1832, "race2": 266, "race3": 19, "race4": 58, "race5": 2, "race6": 30, "ethnicity1": 1607, "ethnicity2": 600, "edu1": 317, "edu2": 417, "edu3": 580, "edu4": 384, "Shape_Length": 44001.595000059504, "Shape_Area": 106312706.89461677, "total_2021": 2219, "total_2022": 2207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.260938985442365, 29.979310245443902 ], [ -95.260568985197793, 29.979238245420873 ], [ -95.26007498482133, 29.97914024513986 ], [ -95.258936984911884, 29.979017245338699 ], [ -95.257495984718716, 29.979035246031614 ], [ -95.257179983917936, 29.979041245839554 ], [ -95.25680598402424, 29.979045245533111 ], [ -95.256531984005832, 29.979047246072259 ], [ -95.256090983503583, 29.979053245629711 ], [ -95.25594998399616, 29.979055245775726 ], [ -95.255500983324552, 29.979061246007973 ], [ -95.254877983460474, 29.979069245983748 ], [ -95.251455982464904, 29.979110245448478 ], [ -95.251141983140329, 29.979115246202099 ], [ -95.250276982872364, 29.979060245662073 ], [ -95.249954982031355, 29.979064245754756 ], [ -95.248420982171268, 29.979148246168769 ], [ -95.246862981324043, 29.979145245745478 ], [ -95.245305981380241, 29.979180246231095 ], [ -95.244791981013904, 29.979192246238991 ], [ -95.244111980597836, 29.979199245962082 ], [ -95.243823980358016, 29.97920224616967 ], [ -95.243413980234635, 29.979192246128473 ], [ -95.243001980961495, 29.979174246615237 ], [ -95.242582980935268, 29.979140246611479 ], [ -95.242537980245473, 29.979135246060835 ], [ -95.242453980313527, 29.979126245972914 ], [ -95.242158980329023, 29.979095245751825 ], [ -95.241731980720957, 29.979035246264253 ], [ -95.241304980045683, 29.978958246033194 ], [ -95.240884980565923, 29.978868246577292 ], [ -95.240380980288691, 29.978745245974608 ], [ -95.239839979346826, 29.978597246022733 ], [ -95.239457979456276, 29.978499246260519 ], [ -95.239053979280698, 29.978401245739722 ], [ -95.238647979422623, 29.978316246413971 ], [ -95.238256978936548, 29.978246246302959 ], [ -95.238238978923093, 29.978243246285828 ], [ -95.237620979271313, 29.97815624588522 ], [ -95.237414978658862, 29.978135245766449 ], [ -95.237308978910491, 29.978126246124017 ], [ -95.23700597925982, 29.978102245843246 ], [ -95.236882979127103, 29.97809624643785 ], [ -95.236610979044272, 29.978081245810184 ], [ -95.236588978750589, 29.978080246536429 ], [ -95.23602297880511, 29.978065246136783 ], [ -95.235515978843168, 29.978052246625776 ], [ -95.235302978467899, 29.978047246662708 ], [ -95.234424978394117, 29.978116246531286 ], [ -95.233404978335997, 29.978283246029076 ], [ -95.233378978511823, 29.978290246056538 ], [ -95.23244997754334, 29.978518246524963 ], [ -95.231742977226318, 29.97871524648426 ], [ -95.230651977739427, 29.979018246439328 ], [ -95.228654977256639, 29.979530246463362 ], [ -95.228006977292424, 29.979702247150239 ], [ -95.227580976511135, 29.979814246506475 ], [ -95.226746976749752, 29.980023246924112 ], [ -95.226548976072991, 29.980080247131767 ], [ -95.226350976782825, 29.980131247248913 ], [ -95.225768976664369, 29.980266246859511 ], [ -95.225586976447346, 29.980315246660169 ], [ -95.225404976415035, 29.980357247157894 ], [ -95.224866976198513, 29.980459247045108 ], [ -95.224380976189551, 29.980539247209787 ], [ -95.224347976265705, 29.980545247163981 ], [ -95.224175976124357, 29.980567247566395 ], [ -95.22373597625915, 29.980615246730174 ], [ -95.223660975651711, 29.980623247255906 ], [ -95.22299697527194, 29.980664247064084 ], [ -95.222524975153974, 29.980681247340893 ], [ -95.222215974983214, 29.980681247536769 ], [ -95.222069975589335, 29.980687247162411 ], [ -95.221199975529643, 29.980696247169025 ], [ -95.220851974806479, 29.980686247659076 ], [ -95.220624975454996, 29.980669247024203 ], [ -95.220321974508153, 29.980632247280617 ], [ -95.220015974792091, 29.980576247603764 ], [ -95.219663974692097, 29.98049424702134 ], [ -95.219311974294911, 29.980396247083082 ], [ -95.218977974713198, 29.980279246952502 ], [ -95.218790974803341, 29.980200246791476 ], [ -95.218720974255177, 29.980170246957925 ], [ -95.218461974290946, 29.980043247445359 ], [ -95.218335974315238, 29.979973246844438 ], [ -95.218102973807945, 29.979828247144589 ], [ -95.217896974249612, 29.979685246793093 ], [ -95.217440974372764, 29.979343246941664 ], [ -95.216041973612903, 29.980120247012074 ], [ -95.215879974167748, 29.980205247712199 ], [ -95.215724973369859, 29.980299247103016 ], [ -95.215228973374636, 29.980569247362212 ], [ -95.215054973499377, 29.980656247625102 ], [ -95.214721973870937, 29.980838247079117 ], [ -95.214392973595466, 29.981008247723121 ], [ -95.214251973270379, 29.981075247652402 ], [ -95.214242973129302, 29.981080247309151 ], [ -95.214068973295412, 29.98116524787973 ], [ -95.213595972902866, 29.981375247570455 ], [ -95.213010973198905, 29.981617247956628 ], [ -95.212392973316199, 29.981853247681311 ], [ -95.212400972834331, 29.985464248103728 ], [ -95.212409972912894, 29.991116249376041 ], [ -95.212416973749413, 29.994330250379321 ], [ -95.212430974196025, 29.999296251180578 ], [ -95.212430974172392, 29.999453251272914 ], [ -95.217523975110865, 29.999456250865368 ], [ -95.218957975267031, 29.999456251080311 ], [ -95.21939697543776, 29.999458251482036 ], [ -95.222394976758167, 29.999421250632128 ], [ -95.226496977033605, 29.999428250875265 ], [ -95.22782997813944, 29.99943025088923 ], [ -95.228142978107726, 29.99940925127083 ], [ -95.230629977985217, 29.999381250321115 ], [ -95.231113978327556, 29.999366251149596 ], [ -95.231163978774717, 29.999364250312052 ], [ -95.231268978317431, 29.999361250849454 ], [ -95.231830979082616, 29.999343251132878 ], [ -95.23184597857626, 29.999343250404014 ], [ -95.23190997873877, 29.999341250297967 ], [ -95.234036979200951, 29.999361250294719 ], [ -95.234957979342809, 29.999348250597762 ], [ -95.235365979962992, 29.999341250426856 ], [ -95.236105979818618, 29.999333250250558 ], [ -95.236440979550594, 29.999327250218201 ], [ -95.236575980064387, 29.999325250613996 ], [ -95.237026979595925, 29.999319250703287 ], [ -95.237181979707742, 29.999319250486412 ], [ -95.237856980283112, 29.999310250157805 ], [ -95.238792980400405, 29.999298250005143 ], [ -95.240222980827539, 29.999280250476676 ], [ -95.241111981137209, 29.999268249943988 ], [ -95.241268981240367, 29.999265250097348 ], [ -95.241756981431408, 29.999259250679863 ], [ -95.24211298151468, 29.999255250273023 ], [ -95.242668981286457, 29.999306250094502 ], [ -95.243100981851384, 29.999326250070741 ], [ -95.243594981239468, 29.999412250644337 ], [ -95.244166981564106, 29.99953925074357 ], [ -95.244496982122769, 29.999632249990956 ], [ -95.244577981534263, 29.999479249960693 ], [ -95.244610981880086, 29.999412249826776 ], [ -95.244769982328151, 29.999298250523076 ], [ -95.245253982080214, 29.999220250259043 ], [ -95.245370982308174, 29.999220250653782 ], [ -95.246104982426303, 29.999219250572214 ], [ -95.246273982462327, 29.999216249895635 ], [ -95.247135983138023, 29.999208249745553 ], [ -95.247653982308677, 29.999201250116695 ], [ -95.24784998280586, 29.999200250089903 ], [ -95.248109983330949, 29.999196249974581 ], [ -95.248389983090775, 29.999193250244751 ], [ -95.248524983221415, 29.999192250481247 ], [ -95.248683982984858, 29.999191250213752 ], [ -95.249356982833618, 29.999181249906293 ], [ -95.249727983021373, 29.999177250139791 ], [ -95.250130983323544, 29.999173250036172 ], [ -95.250659983240226, 29.999170250329893 ], [ -95.250848983039589, 29.999172250325422 ], [ -95.251009983539532, 29.999172250008574 ], [ -95.251213983291194, 29.999171249912397 ], [ -95.251822983404296, 29.999168249823278 ], [ -95.252082983839315, 29.999169249797355 ], [ -95.252333984131056, 29.999162250001984 ], [ -95.252627984090381, 29.999157250042813 ], [ -95.25309698396228, 29.999162250141648 ], [ -95.254101984515273, 29.999161249761471 ], [ -95.2552139847175, 29.999162250241913 ], [ -95.255648984342557, 29.999162249727227 ], [ -95.256319985462866, 29.999161250095685 ], [ -95.257410985061753, 29.999163250126575 ], [ -95.257388985441338, 29.998151249624481 ], [ -95.257389984983263, 29.997413249010858 ], [ -95.25741898487037, 29.996725249534691 ], [ -95.257387985092976, 29.99587124945684 ], [ -95.257364984636112, 29.995582249145713 ], [ -95.257575985142381, 29.994981249316751 ], [ -95.257638984639101, 29.994734248888825 ], [ -95.257845985168984, 29.994038248435725 ], [ -95.257895985166911, 29.993869249017845 ], [ -95.257998985249415, 29.993521248642644 ], [ -95.258220984935349, 29.992778248528946 ], [ -95.258248985507024, 29.990860248139811 ], [ -95.258251984987226, 29.990651247873263 ], [ -95.258260985213639, 29.989996247507133 ], [ -95.258271985255874, 29.989947247904624 ], [ -95.258419985264823, 29.989270247825061 ], [ -95.258621985280385, 29.988441247186536 ], [ -95.258860984811065, 29.987607247209134 ], [ -95.259286984801577, 29.985913246612064 ], [ -95.259301985164413, 29.985844246822762 ], [ -95.259638984870222, 29.984389246843072 ], [ -95.259681985251717, 29.984196246401591 ], [ -95.260049984741727, 29.982830246454565 ], [ -95.260131985348963, 29.982526246017475 ], [ -95.260197984733296, 29.98226824655211 ], [ -95.260250985064289, 29.982060246398738 ], [ -95.260392985617429, 29.981503245778089 ], [ -95.260938985442365, 29.979310245443902 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 576, "Tract": "48201241301", "Area_SqMi": 2.9518138797502225, "total_2009": 979, "total_2010": 947, "total_2011": 956, "total_2012": 1403, "total_2013": 1477, "total_2014": 1568, "total_2015": 1565, "total_2016": 1410, "total_2017": 1473, "total_2018": 1601, "total_2019": 1381, "total_2020": 1378, "age1": 428, "age2": 1083, "age3": 433, "earn1": 328, "earn2": 436, "earn3": 1180, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 504, "naics_s05": 137, "naics_s06": 126, "naics_s07": 153, "naics_s08": 16, "naics_s09": 2, "naics_s10": 87, "naics_s11": 67, "naics_s12": 159, "naics_s13": 0, "naics_s14": 275, "naics_s15": 9, "naics_s16": 64, "naics_s17": 80, "naics_s18": 186, "naics_s19": 73, "naics_s20": 0, "race1": 1628, "race2": 204, "race3": 21, "race4": 61, "race5": 5, "race6": 25, "ethnicity1": 1398, "ethnicity2": 546, "edu1": 320, "edu2": 425, "edu3": 487, "edu4": 284, "Shape_Length": 41226.915855328865, "Shape_Area": 82291518.887489781, "total_2021": 1734, "total_2022": 1944 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.437155034677943, 30.081619260204079 ], [ -95.437185035145504, 30.081131260433384 ], [ -95.437154035419894, 30.080734260513108 ], [ -95.43710803494632, 30.080147260451209 ], [ -95.436971035349274, 30.079258259482231 ], [ -95.436603034820763, 30.07748125991106 ], [ -95.43653903518846, 30.07711225903914 ], [ -95.436172034507877, 30.074999259071344 ], [ -95.436133034249309, 30.074813258611485 ], [ -95.435889034715601, 30.074905259410041 ], [ -95.435756034928005, 30.074956259227584 ], [ -95.435634034081957, 30.075003258899415 ], [ -95.435538034399556, 30.075040258931786 ], [ -95.435066034135261, 30.075245258768135 ], [ -95.433121033783479, 30.075999259788183 ], [ -95.433027034001398, 30.076036259682777 ], [ -95.433000033487389, 30.075978259695461 ], [ -95.432943033983634, 30.075890259607732 ], [ -95.432710033229412, 30.075627259212698 ], [ -95.432608033808734, 30.075473259310932 ], [ -95.432514033241731, 30.075286259262239 ], [ -95.432425033192885, 30.075038258863479 ], [ -95.432387033094628, 30.074890258820915 ], [ -95.432356033433848, 30.074741259489592 ], [ -95.432343033403285, 30.074587259326076 ], [ -95.432292033488437, 30.074384258876446 ], [ -95.43231803344851, 30.073147258523761 ], [ -95.4323300337674, 30.07304825854029 ], [ -95.432324033948021, 30.072960258657787 ], [ -95.4322730333446, 30.072823258564156 ], [ -95.432185033742925, 30.072641258617004 ], [ -95.432046033120727, 30.072438258876385 ], [ -95.431919033368942, 30.072306258733324 ], [ -95.431812033742617, 30.072212258202811 ], [ -95.431723033538844, 30.072168258814067 ], [ -95.43149003290408, 30.072113258574841 ], [ -95.431439032728974, 30.072080258211141 ], [ -95.431262033644472, 30.071844258460899 ], [ -95.431237033471007, 30.071784258658219 ], [ -95.431224033254011, 30.071668258622879 ], [ -95.43124903274088, 30.071619258094298 ], [ -95.431452033117552, 30.071388258038432 ], [ -95.431534032917426, 30.071239257980864 ], [ -95.431509033654834, 30.071151258129337 ], [ -95.431363032963716, 30.070992258266312 ], [ -95.431332033019345, 30.070910258127402 ], [ -95.431306032845697, 30.070624258739425 ], [ -95.431287032732442, 30.070541258517611 ], [ -95.431230032693122, 30.070415258708945 ], [ -95.431161032831326, 30.070316258056092 ], [ -95.431047032622928, 30.070239258358235 ], [ -95.430586032642907, 30.070079258496737 ], [ -95.430516032904336, 30.070024257820297 ], [ -95.430447032902634, 30.069925258562456 ], [ -95.430409033106343, 30.069810257874359 ], [ -95.43032003250471, 30.069667258281935 ], [ -95.430267032526842, 30.069624258075645 ], [ -95.430225032570519, 30.069590257882432 ], [ -95.430055032459762, 30.069508258198315 ], [ -95.429992032355116, 30.069464258504066 ], [ -95.42994103310069, 30.069414257785169 ], [ -95.429903032645413, 30.069315258393427 ], [ -95.42986503277406, 30.069117258010678 ], [ -95.429834033046262, 30.069068257758861 ], [ -95.429802032493058, 30.069040257875677 ], [ -95.429695032425641, 30.068985257754122 ], [ -95.429543032163707, 30.06878725816825 ], [ -95.429404032528026, 30.068657257898984 ], [ -95.429210032124729, 30.068475258366952 ], [ -95.42906903221899, 30.068342257713375 ], [ -95.428924032855605, 30.068161258027981 ], [ -95.428759031977592, 30.067897257901947 ], [ -95.428709031938226, 30.067787257441001 ], [ -95.428677032663714, 30.067660258021725 ], [ -95.428671031900677, 30.067352257376793 ], [ -95.428652031742615, 30.067072258063437 ], [ -95.428633031945054, 30.067012257271777 ], [ -95.428589031962616, 30.066946258077035 ], [ -95.428525032343529, 30.066880257265403 ], [ -95.428045031828873, 30.066478257219 ], [ -95.427868032055059, 30.066313257491672 ], [ -95.427640032376971, 30.066017257106168 ], [ -95.42748903173387, 30.06583525757965 ], [ -95.426869031430215, 30.065203257537071 ], [ -95.426414031882032, 30.064626257007696 ], [ -95.426033031587835, 30.06420225729828 ], [ -95.4260230315179, 30.064191257209885 ], [ -95.425936031194553, 30.064080257150632 ], [ -95.42565403162223, 30.06372125670099 ], [ -95.425523031529679, 30.063553257261447 ], [ -95.42542803160778, 30.063477256699109 ], [ -95.425277031625285, 30.063378256805908 ], [ -95.424481030665248, 30.062927256933051 ], [ -95.424386030700447, 30.062883256895915 ], [ -95.424285031157964, 30.062855256689996 ], [ -95.424133030881023, 30.062916257080627 ], [ -95.424038031016849, 30.062943257014741 ], [ -95.423943030533806, 30.062965256660185 ], [ -95.423811031134861, 30.062982257213445 ], [ -95.423532030298375, 30.062894257150408 ], [ -95.423368031118699, 30.062828257075385 ], [ -95.423223031126867, 30.06282225673225 ], [ -95.422926030625334, 30.062921257097312 ], [ -95.422837030732822, 30.062946256936886 ], [ -95.422744030887117, 30.062972256804677 ], [ -95.422601030584403, 30.062970256834404 ], [ -95.422535030753991, 30.062958256969136 ], [ -95.422451030633297, 30.062928257373709 ], [ -95.421880029958118, 30.06266925702116 ], [ -95.422048030052082, 30.063186257006695 ], [ -95.422048030535848, 30.063277257196674 ], [ -95.422006030015098, 30.063409257491994 ], [ -95.421934030032588, 30.063523257189683 ], [ -95.421777030345979, 30.063830257546449 ], [ -95.421783029872472, 30.063896257538637 ], [ -95.42215003037704, 30.066337257483674 ], [ -95.422132030825566, 30.066439258138068 ], [ -95.422054030978231, 30.066583258179374 ], [ -95.421892030947987, 30.066926257653041 ], [ -95.421856030336883, 30.067034257667409 ], [ -95.421757030603388, 30.067489257945404 ], [ -95.421706030395697, 30.067621257594389 ], [ -95.42105303039915, 30.069066258377401 ], [ -95.420933030377057, 30.069348258663556 ], [ -95.420891030100066, 30.069505258508805 ], [ -95.420861030849025, 30.069727258240203 ], [ -95.420897030907938, 30.070064258936682 ], [ -95.421005030449408, 30.070581258517947 ], [ -95.421005030920483, 30.070731258981407 ], [ -95.420981030491575, 30.070917259009519 ], [ -95.42045003050913, 30.072770258919622 ], [ -95.420221030106958, 30.072794259253204 ], [ -95.419492030682818, 30.072909259194827 ], [ -95.418859029754245, 30.07302125928879 ], [ -95.418723030335258, 30.073053259283046 ], [ -95.418366030004705, 30.073109259176977 ], [ -95.417634029807687, 30.073319259544917 ], [ -95.415808029033769, 30.073670259631651 ], [ -95.415543029424057, 30.073721259910652 ], [ -95.415400029336993, 30.073748259253016 ], [ -95.414894029467177, 30.07384625950742 ], [ -95.414328029269058, 30.07395425986131 ], [ -95.412015028296764, 30.074400259882733 ], [ -95.411564027830252, 30.074488259527591 ], [ -95.411377028399343, 30.074525260127615 ], [ -95.411369028141522, 30.074568259477285 ], [ -95.411335028183046, 30.074748259781352 ], [ -95.411312028672114, 30.074872259972739 ], [ -95.411038027810847, 30.076279260190855 ], [ -95.410970027749244, 30.076621260631175 ], [ -95.410795028289598, 30.07751026061689 ], [ -95.410679028053636, 30.078026260411175 ], [ -95.410585028533873, 30.078607260633206 ], [ -95.410590027755433, 30.07923226036942 ], [ -95.410681027812316, 30.080123261249604 ], [ -95.41101602810572, 30.081301261389832 ], [ -95.41151102883353, 30.082968261915617 ], [ -95.411560028411543, 30.083153261646846 ], [ -95.411663028231445, 30.083542261596861 ], [ -95.412255028737619, 30.085766262450459 ], [ -95.412537029311693, 30.086773261839692 ], [ -95.412810029600266, 30.087748262534788 ], [ -95.41337802925392, 30.08977926281101 ], [ -95.413834029497536, 30.091406263327858 ], [ -95.414002029173304, 30.092052263676088 ], [ -95.414180029987662, 30.092735263477447 ], [ -95.414327029910993, 30.093300263485933 ], [ -95.414386029456509, 30.093529263943019 ], [ -95.414493029372522, 30.093940263203088 ], [ -95.414719029505477, 30.094685263777595 ], [ -95.41516603003808, 30.095613263760381 ], [ -95.415757030060192, 30.096339263839592 ], [ -95.416067030238182, 30.09665626426348 ], [ -95.416591030728497, 30.097075264588572 ], [ -95.416955030700976, 30.097321263803106 ], [ -95.417363030358729, 30.097536264628868 ], [ -95.421816032336551, 30.099574264645792 ], [ -95.42208403260733, 30.099699264236904 ], [ -95.422242032357488, 30.099772264607072 ], [ -95.422393031830055, 30.099842264367325 ], [ -95.423053032205019, 30.100148264757713 ], [ -95.425083032438081, 30.101092264266523 ], [ -95.429354034555146, 30.103017265052433 ], [ -95.429550034450713, 30.103105264987136 ], [ -95.432924034872542, 30.104604264929481 ], [ -95.433469035568663, 30.104871265138382 ], [ -95.433930034988705, 30.10518026557876 ], [ -95.434193035578033, 30.105410264985238 ], [ -95.434280035596061, 30.105498265282797 ], [ -95.434566035105291, 30.105441265375202 ], [ -95.434746035241304, 30.105426265008443 ], [ -95.435089035755496, 30.10540326520098 ], [ -95.435492036137148, 30.105389264948851 ], [ -95.435782035684667, 30.105379264853269 ], [ -95.435718035328463, 30.103881265190832 ], [ -95.435715035927302, 30.10373926460402 ], [ -95.435708036214479, 30.10339126520093 ], [ -95.435663035341662, 30.100176264212379 ], [ -95.43563803546742, 30.097566263972283 ], [ -95.435493035667164, 30.09519326293335 ], [ -95.43543503472354, 30.093445263159367 ], [ -95.435426035673231, 30.093175262849169 ], [ -95.435423035429167, 30.093081262917796 ], [ -95.435413035659352, 30.092769262883404 ], [ -95.435405035412003, 30.092509262173543 ], [ -95.435396035492531, 30.09223026239529 ], [ -95.435392034908304, 30.092123262628867 ], [ -95.435390035536187, 30.092053262770321 ], [ -95.435383035052226, 30.091853262151677 ], [ -95.4353770354993, 30.091673262428021 ], [ -95.43536103533043, 30.091162261908405 ], [ -95.435356034989255, 30.091049262499173 ], [ -95.435332034732255, 30.090464262485746 ], [ -95.435333035380211, 30.090405262100976 ], [ -95.435356035064288, 30.090149261852332 ], [ -95.435415034788136, 30.089460261611571 ], [ -95.435611035398438, 30.088518261570428 ], [ -95.43599903488149, 30.086913261216424 ], [ -95.436559035509248, 30.084482261120911 ], [ -95.436616035362007, 30.084244261196499 ], [ -95.436653034618544, 30.084078261259016 ], [ -95.436734034862468, 30.083711260837298 ], [ -95.436882034730516, 30.083081260961094 ], [ -95.437034035033491, 30.082372260642355 ], [ -95.437093035410157, 30.08200626075217 ], [ -95.437155034677943, 30.081619260204079 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 577, "Tract": "48201433100", "Area_SqMi": 0.32984476822996212, "total_2009": 1780, "total_2010": 1732, "total_2011": 2673, "total_2012": 2624, "total_2013": 2888, "total_2014": 3177, "total_2015": 3226, "total_2016": 2346, "total_2017": 2385, "total_2018": 2515, "total_2019": 2563, "total_2020": 2313, "age1": 566, "age2": 1462, "age3": 765, "earn1": 1037, "earn2": 782, "earn3": 974, "naics_s01": 0, "naics_s02": 4, "naics_s03": 15, "naics_s04": 75, "naics_s05": 112, "naics_s06": 17, "naics_s07": 150, "naics_s08": 9, "naics_s09": 41, "naics_s10": 662, "naics_s11": 46, "naics_s12": 188, "naics_s13": 34, "naics_s14": 38, "naics_s15": 32, "naics_s16": 824, "naics_s17": 31, "naics_s18": 499, "naics_s19": 16, "naics_s20": 0, "race1": 912, "race2": 311, "race3": 11, "race4": 1500, "race5": 5, "race6": 54, "ethnicity1": 2382, "ethnicity2": 411, "edu1": 504, "edu2": 468, "edu3": 581, "edu4": 674, "Shape_Length": 14817.344318926573, "Shape_Area": 9195507.6032884717, "total_2021": 3058, "total_2022": 2793 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557441047863605, 29.689628176117925 ], [ -95.557482048212648, 29.689429176301431 ], [ -95.557287048181749, 29.68939117595502 ], [ -95.557130048116832, 29.689361175804112 ], [ -95.556880047658012, 29.689325176292925 ], [ -95.556087048179734, 29.689228176169941 ], [ -95.555339047476451, 29.689220176589966 ], [ -95.554865047356813, 29.689236176117483 ], [ -95.554513047290982, 29.68929017590979 ], [ -95.553844047569285, 29.689406176402546 ], [ -95.552759046863116, 29.689750176189545 ], [ -95.55229504722611, 29.689889176106291 ], [ -95.552188047003455, 29.689929176475115 ], [ -95.55211604645821, 29.689956176389838 ], [ -95.551736046421269, 29.690097176599387 ], [ -95.551615046769285, 29.690142176796773 ], [ -95.551203046494933, 29.690265176880381 ], [ -95.551410046824955, 29.690800177005741 ], [ -95.551512047214359, 29.691086177166557 ], [ -95.55159804719932, 29.691308176827949 ], [ -95.551683046857448, 29.691527176450315 ], [ -95.552012047020838, 29.692561177115483 ], [ -95.552038046500513, 29.692695177395805 ], [ -95.552085046676382, 29.692992177416144 ], [ -95.552125046933583, 29.693413176987011 ], [ -95.552141047141859, 29.694083177351885 ], [ -95.552148046598575, 29.694242177088153 ], [ -95.552164046864192, 29.694790177395234 ], [ -95.55217904742905, 29.695471177509909 ], [ -95.55219704734823, 29.696161178214933 ], [ -95.552203046989916, 29.696510177590024 ], [ -95.552206046739599, 29.696851178132341 ], [ -95.552232047671055, 29.697709177978499 ], [ -95.552232047257519, 29.697835178274477 ], [ -95.552248046795185, 29.698390177978769 ], [ -95.552244047727484, 29.698505178645881 ], [ -95.552246047084793, 29.69856517798733 ], [ -95.552263046993886, 29.699082178769171 ], [ -95.552270046913009, 29.699501178883054 ], [ -95.552274046980855, 29.699767178476669 ], [ -95.552296047814181, 29.700567178503764 ], [ -95.552308047643109, 29.701372178749089 ], [ -95.552297047445492, 29.701812179033716 ], [ -95.552275047808479, 29.701966178625394 ], [ -95.552116047269763, 29.702497178969676 ], [ -95.552041047649354, 29.702676179138997 ], [ -95.551793047094876, 29.703089179377848 ], [ -95.551765047682153, 29.70314217895341 ], [ -95.551508047053787, 29.703776178988466 ], [ -95.551455047738486, 29.704219179280241 ], [ -95.551467046977919, 29.704821179372043 ], [ -95.556577049069091, 29.704544179643385 ], [ -95.556781049019307, 29.704533179020466 ], [ -95.557208048863501, 29.704515179242538 ], [ -95.557386048354076, 29.704507179425033 ], [ -95.557383048545134, 29.704295179523051 ], [ -95.557380048817137, 29.70406217886957 ], [ -95.557353048845755, 29.703286178621092 ], [ -95.557352048608323, 29.702432179046617 ], [ -95.557293049156485, 29.701538179091756 ], [ -95.557292048775821, 29.700870178360329 ], [ -95.557279048458881, 29.700481178441663 ], [ -95.557244048190199, 29.699404178570997 ], [ -95.55723904870699, 29.699254177888875 ], [ -95.55723104843679, 29.698846178535145 ], [ -95.557183048052039, 29.696119177756806 ], [ -95.557187048110151, 29.695406177199551 ], [ -95.557187048605385, 29.695341177302296 ], [ -95.557188048119599, 29.695253177678989 ], [ -95.557191047911658, 29.694621177521267 ], [ -95.557192048465211, 29.693865177283374 ], [ -95.557169048732092, 29.692634176903844 ], [ -95.557161048384259, 29.69210717645365 ], [ -95.557200047710637, 29.691452176884948 ], [ -95.557230047935263, 29.691156176557488 ], [ -95.557373048568081, 29.689958176041472 ], [ -95.557441047863605, 29.689628176117925 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 578, "Tract": "48201433400", "Area_SqMi": 0.64839832691464416, "total_2009": 1483, "total_2010": 1437, "total_2011": 966, "total_2012": 1274, "total_2013": 1215, "total_2014": 1189, "total_2015": 1007, "total_2016": 1137, "total_2017": 1119, "total_2018": 1134, "total_2019": 1107, "total_2020": 1043, "age1": 293, "age2": 540, "age3": 260, "earn1": 345, "earn2": 367, "earn3": 381, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 154, "naics_s06": 57, "naics_s07": 388, "naics_s08": 2, "naics_s09": 0, "naics_s10": 23, "naics_s11": 56, "naics_s12": 119, "naics_s13": 2, "naics_s14": 7, "naics_s15": 1, "naics_s16": 84, "naics_s17": 99, "naics_s18": 82, "naics_s19": 11, "naics_s20": 0, "race1": 643, "race2": 230, "race3": 13, "race4": 192, "race5": 0, "race6": 15, "ethnicity1": 724, "ethnicity2": 369, "edu1": 204, "edu2": 186, "edu3": 212, "edu4": 198, "Shape_Length": 17878.539927763173, "Shape_Area": 18076235.609552812, "total_2021": 1056, "total_2022": 1093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.55211604645821, 29.689956176389838 ], [ -95.552188047003455, 29.689929176475115 ], [ -95.551930046445818, 29.689665176632143 ], [ -95.551390046906832, 29.689289176742417 ], [ -95.54962504655623, 29.688239176448185 ], [ -95.549119046253239, 29.687821176458797 ], [ -95.54887904637269, 29.687450176395188 ], [ -95.548768046061227, 29.687105176072965 ], [ -95.548762046205653, 29.686638175614906 ], [ -95.548989046308535, 29.685841176220446 ], [ -95.549342046281197, 29.684884175172527 ], [ -95.549445045441985, 29.684464175100974 ], [ -95.549456045460687, 29.684178175427423 ], [ -95.549393046304473, 29.683933174977735 ], [ -95.5490040457981, 29.683068174922433 ], [ -95.548609045261884, 29.682319175408882 ], [ -95.54842404526201, 29.682128174897699 ], [ -95.547905045620837, 29.681778174629073 ], [ -95.547683045001165, 29.681708175266625 ], [ -95.547558045673412, 29.681669175019227 ], [ -95.543928044063691, 29.680865175227122 ], [ -95.539029043442753, 29.680198174944394 ], [ -95.538583043214857, 29.680239174989623 ], [ -95.538329042993581, 29.680353174704294 ], [ -95.537484042605072, 29.681050174772615 ], [ -95.537118042966455, 29.681056175300341 ], [ -95.537015043013739, 29.680994174978679 ], [ -95.536801042857689, 29.680866175135346 ], [ -95.536722042317734, 29.680938174918307 ], [ -95.536660042024309, 29.680994175395426 ], [ -95.536609042540761, 29.68104017564708 ], [ -95.53577904219074, 29.681829175536794 ], [ -95.535234041962283, 29.682421175638495 ], [ -95.53401904143216, 29.683962175506178 ], [ -95.532390041745643, 29.686012175981464 ], [ -95.5319750412812, 29.686518176852125 ], [ -95.530848041645996, 29.687952177142503 ], [ -95.530760041662646, 29.688064176732848 ], [ -95.530983041185465, 29.68819017677195 ], [ -95.531598041329744, 29.688546176583568 ], [ -95.532056041680576, 29.688817177058567 ], [ -95.532811041696334, 29.689262177164686 ], [ -95.533651042021276, 29.68985317724405 ], [ -95.534156042151622, 29.690209177555523 ], [ -95.534447042717446, 29.690467176926617 ], [ -95.535208042752004, 29.691145176881889 ], [ -95.536102042347594, 29.690909177527764 ], [ -95.536349042631798, 29.690845177641961 ], [ -95.536438042890779, 29.690823176929431 ], [ -95.536990042583298, 29.690732177357599 ], [ -95.537027042857815, 29.690729177047253 ], [ -95.537678043215493, 29.690673176855608 ], [ -95.54217604386443, 29.690610176753683 ], [ -95.542904044722164, 29.690609177106378 ], [ -95.545618045108753, 29.690571176408113 ], [ -95.546172045762845, 29.690568176813859 ], [ -95.546304045066023, 29.690567176520805 ], [ -95.546432045610047, 29.690566176769163 ], [ -95.546801045610678, 29.690566176627208 ], [ -95.548033046324136, 29.690553176612685 ], [ -95.549252046434063, 29.690537176482621 ], [ -95.549431046131573, 29.690536176569832 ], [ -95.549591046150255, 29.690530176345156 ], [ -95.549727045792082, 29.690525176864817 ], [ -95.550098046199949, 29.690491176970411 ], [ -95.550629046959457, 29.690406177032891 ], [ -95.551203046494933, 29.690265176880381 ], [ -95.551615046769285, 29.690142176796773 ], [ -95.551736046421269, 29.690097176599387 ], [ -95.55211604645821, 29.689956176389838 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 579, "Tract": "48201450100", "Area_SqMi": 0.31937805138443637, "total_2009": 59, "total_2010": 80, "total_2011": 65, "total_2012": 92, "total_2013": 101, "total_2014": 98, "total_2015": 85, "total_2016": 76, "total_2017": 113, "total_2018": 96, "total_2019": 127, "total_2020": 119, "age1": 18, "age2": 53, "age3": 31, "earn1": 14, "earn2": 36, "earn3": 52, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 0, "naics_s07": 13, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 27, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 3, "naics_s19": 20, "naics_s20": 0, "race1": 70, "race2": 5, "race3": 2, "race4": 21, "race5": 0, "race6": 4, "ethnicity1": 72, "ethnicity2": 30, "edu1": 19, "edu2": 14, "edu3": 21, "edu4": 30, "Shape_Length": 13868.707317175085, "Shape_Area": 8903713.4516001306, "total_2021": 129, "total_2022": 102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.57372905656878, 29.776187193154097 ], [ -95.57374105598916, 29.776126193408814 ], [ -95.57372905576814, 29.775923193591893 ], [ -95.57371805621915, 29.775844193523071 ], [ -95.573672055948876, 29.775522192895764 ], [ -95.573590056421409, 29.775296192868122 ], [ -95.573495055611176, 29.775175192857937 ], [ -95.573344055722572, 29.775054193433469 ], [ -95.573199056479964, 29.774945193183033 ], [ -95.573053056175254, 29.774861193083069 ], [ -95.572997056123242, 29.774829193147113 ], [ -95.572846055506361, 29.774758193490548 ], [ -95.572607055733258, 29.774697193506636 ], [ -95.572525055791999, 29.774664193575511 ], [ -95.572273056237506, 29.774505192987412 ], [ -95.572052055391808, 29.774323192739399 ], [ -95.571917056032177, 29.774202192882523 ], [ -95.571857055389714, 29.774148192652348 ], [ -95.571535055296366, 29.773889192654632 ], [ -95.571264055333089, 29.773719193009242 ], [ -95.571157055487959, 29.773609193072289 ], [ -95.570861055006546, 29.773356192793177 ], [ -95.570716055615392, 29.77325719246593 ], [ -95.570628055318835, 29.773180193183187 ], [ -95.570413055249958, 29.772955193084048 ], [ -95.570300054693845, 29.772806192921848 ], [ -95.570258055042316, 29.772648192760201 ], [ -95.570120055298986, 29.772647192849664 ], [ -95.569695055380279, 29.772651193002996 ], [ -95.568523054661014, 29.77266419257445 ], [ -95.565817054399261, 29.772712192537128 ], [ -95.563165053173563, 29.772767192997801 ], [ -95.562883053241436, 29.772779192942359 ], [ -95.562885053629373, 29.772931192811857 ], [ -95.562909052862381, 29.774410193799479 ], [ -95.562966053278927, 29.77589619362206 ], [ -95.562972053361108, 29.776040194030521 ], [ -95.562976053556142, 29.776154193396451 ], [ -95.563009053277753, 29.777920194211841 ], [ -95.563000053514131, 29.778608194326658 ], [ -95.563103053662303, 29.780375194626561 ], [ -95.563114053531791, 29.780569194396065 ], [ -95.563155053621998, 29.782786194970587 ], [ -95.563163053556366, 29.783175195458089 ], [ -95.563168054325118, 29.783438195112275 ], [ -95.563171053801582, 29.783613195289814 ], [ -95.563179054138544, 29.784028195525455 ], [ -95.563186053583038, 29.784396195240991 ], [ -95.563189053811115, 29.784561195314033 ], [ -95.563194054042455, 29.784811195382183 ], [ -95.563542054124966, 29.784805195246189 ], [ -95.563705053642011, 29.784811195756081 ], [ -95.564086054228639, 29.784799195732969 ], [ -95.565000054236734, 29.784799195512779 ], [ -95.56524405392112, 29.784805195792043 ], [ -95.565937054797672, 29.784815195017348 ], [ -95.565625054792406, 29.784619195295605 ], [ -95.565335053957696, 29.784459195204786 ], [ -95.565187054036699, 29.784266195519017 ], [ -95.565183054693023, 29.784215195481941 ], [ -95.565182054334883, 29.784043195542619 ], [ -95.565178054543864, 29.783730195264756 ], [ -95.565285054812009, 29.783494194758898 ], [ -95.565335054393046, 29.783340195583662 ], [ -95.565348054106238, 29.783279195119587 ], [ -95.565348053920076, 29.783175194907368 ], [ -95.565335054667557, 29.78307619513129 ], [ -95.565348054070554, 29.782999194900288 ], [ -95.565442054162389, 29.782823194609612 ], [ -95.565581054470201, 29.782663195376188 ], [ -95.565927053986698, 29.782339194514101 ], [ -95.565997054373909, 29.782257194655433 ], [ -95.566186054414842, 29.782070195121612 ], [ -95.566261054207942, 29.781921194820825 ], [ -95.566331054992887, 29.781679194524653 ], [ -95.566507054209282, 29.781393194805201 ], [ -95.566646054353612, 29.781223194415915 ], [ -95.566703055067109, 29.781179194355207 ], [ -95.566911054446962, 29.781097194337246 ], [ -95.567030054642387, 29.781042194355202 ], [ -95.567081054956674, 29.781009194963652 ], [ -95.567320054607791, 29.780800194279927 ], [ -95.567496055198646, 29.780629194640198 ], [ -95.567523054730785, 29.780593194799767 ], [ -95.567673054961404, 29.780387194473658 ], [ -95.567793054598383, 29.780261194441383 ], [ -95.568026054831265, 29.780079194080606 ], [ -95.568411055096959, 29.779805194064739 ], [ -95.568514054760058, 29.77973219386481 ], [ -95.568984055222373, 29.779398194551913 ], [ -95.569204055514916, 29.779222193961413 ], [ -95.569374055162484, 29.779112194106688 ], [ -95.569977055719036, 29.778786193649257 ], [ -95.570370055751354, 29.778573193955751 ], [ -95.570824055369101, 29.778276194117172 ], [ -95.570994055328072, 29.778177194246517 ], [ -95.57120205547433, 29.778007193628923 ], [ -95.571286055820252, 29.777905193483928 ], [ -95.571492055483077, 29.777660193511139 ], [ -95.571662055547293, 29.777506193776702 ], [ -95.571763055663538, 29.777435193451968 ], [ -95.572015056093207, 29.77730319344483 ], [ -95.572286055798841, 29.777187193945036 ], [ -95.572670055828894, 29.77699019374985 ], [ -95.57276505624074, 29.776920193705838 ], [ -95.573338056435432, 29.776500193797343 ], [ -95.573596056563716, 29.776368193557566 ], [ -95.573653055946679, 29.776319193716478 ], [ -95.57369705644588, 29.776258193428522 ], [ -95.57372905656878, 29.776187193154097 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 580, "Tract": "48201450200", "Area_SqMi": 1.0446098045685059, "total_2009": 2708, "total_2010": 3001, "total_2011": 3138, "total_2012": 3415, "total_2013": 3537, "total_2014": 3513, "total_2015": 3561, "total_2016": 3437, "total_2017": 3326, "total_2018": 3477, "total_2019": 3632, "total_2020": 3737, "age1": 1071, "age2": 2333, "age3": 917, "earn1": 812, "earn2": 1613, "earn3": 1896, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 47, "naics_s05": 15, "naics_s06": 166, "naics_s07": 157, "naics_s08": 70, "naics_s09": 41, "naics_s10": 221, "naics_s11": 80, "naics_s12": 729, "naics_s13": 28, "naics_s14": 1496, "naics_s15": 195, "naics_s16": 505, "naics_s17": 5, "naics_s18": 512, "naics_s19": 52, "naics_s20": 0, "race1": 2547, "race2": 1355, "race3": 27, "race4": 307, "race5": 10, "race6": 75, "ethnicity1": 3302, "ethnicity2": 1019, "edu1": 590, "edu2": 771, "edu3": 974, "edu4": 915, "Shape_Length": 25436.702923806297, "Shape_Area": 29121933.483821213, "total_2021": 3602, "total_2022": 4321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.590295061308112, 29.784925194606984 ], [ -95.590290060501019, 29.784715194553147 ], [ -95.590285060613979, 29.784557194720303 ], [ -95.59027106118775, 29.784178194060512 ], [ -95.590263060476246, 29.783653194563509 ], [ -95.590262060713385, 29.783441194037007 ], [ -95.590260060827546, 29.783105194649622 ], [ -95.590257060777674, 29.782697193895302 ], [ -95.590255060791179, 29.782268194047465 ], [ -95.590234060869918, 29.78152219349878 ], [ -95.590214060240157, 29.781241194131525 ], [ -95.590195060344726, 29.780754194038114 ], [ -95.590188060157615, 29.779961193860515 ], [ -95.590173060467393, 29.779163193507813 ], [ -95.590164060438482, 29.778306193015521 ], [ -95.590135060863432, 29.777499192680846 ], [ -95.590111060011552, 29.776609193349575 ], [ -95.59009606031529, 29.775763193127894 ], [ -95.590073060533925, 29.774864192684163 ], [ -95.590050059854391, 29.773969192348694 ], [ -95.590035060193998, 29.773180192316261 ], [ -95.590018060530298, 29.772712192253657 ], [ -95.589986059937658, 29.772315191717105 ], [ -95.589925060362546, 29.771915192193624 ], [ -95.589863060108627, 29.771565191712511 ], [ -95.589804059784797, 29.77124319162068 ], [ -95.588125059679257, 29.772379192304424 ], [ -95.587748059243708, 29.772614191996102 ], [ -95.587435059309627, 29.772785192287149 ], [ -95.58710505970231, 29.772920192398221 ], [ -95.586766058859169, 29.773035192536884 ], [ -95.586380059194951, 29.77313919233907 ], [ -95.586027059463007, 29.773205192257425 ], [ -95.585759059528286, 29.773244192412772 ], [ -95.585284058851869, 29.773254192719918 ], [ -95.584818059301099, 29.773264192361733 ], [ -95.582968058323601, 29.773285192239893 ], [ -95.582422057894775, 29.773250192891112 ], [ -95.582027058031159, 29.773193192540663 ], [ -95.581615057584401, 29.773113192934648 ], [ -95.580803058108344, 29.772883192345425 ], [ -95.580423057829151, 29.772780192662939 ], [ -95.580033058134291, 29.772693192792659 ], [ -95.579689057847588, 29.772634192358076 ], [ -95.579276057943602, 29.772592192509052 ], [ -95.578772057647143, 29.772580192755807 ], [ -95.575941056842254, 29.772599192404172 ], [ -95.575255056284703, 29.772602192756569 ], [ -95.575193056539803, 29.772602192451942 ], [ -95.575046055947183, 29.772605192737764 ], [ -95.574470056306623, 29.772621192570792 ], [ -95.572898056295045, 29.772627192728891 ], [ -95.571813055545221, 29.772636192475048 ], [ -95.571545055385599, 29.772637193050006 ], [ -95.570761055212898, 29.772650192541512 ], [ -95.570258055042316, 29.772648192760201 ], [ -95.570300054693845, 29.772806192921848 ], [ -95.570413055249958, 29.772955193084048 ], [ -95.570628055318835, 29.773180193183187 ], [ -95.570716055615392, 29.77325719246593 ], [ -95.570861055006546, 29.773356192793177 ], [ -95.571157055487959, 29.773609193072289 ], [ -95.571264055333089, 29.773719193009242 ], [ -95.571535055296366, 29.773889192654632 ], [ -95.571857055389714, 29.774148192652348 ], [ -95.571917056032177, 29.774202192882523 ], [ -95.572052055391808, 29.774323192739399 ], [ -95.572273056237506, 29.774505192987412 ], [ -95.572525055791999, 29.774664193575511 ], [ -95.572607055733258, 29.774697193506636 ], [ -95.572846055506361, 29.774758193490548 ], [ -95.572997056123242, 29.774829193147113 ], [ -95.573053056175254, 29.774861193083069 ], [ -95.573199056479964, 29.774945193183033 ], [ -95.573344055722572, 29.775054193433469 ], [ -95.573495055611176, 29.775175192857937 ], [ -95.573590056421409, 29.775296192868122 ], [ -95.573672055948876, 29.775522192895764 ], [ -95.57371805621915, 29.775844193523071 ], [ -95.57372905576814, 29.775923193591893 ], [ -95.57374105598916, 29.776126193408814 ], [ -95.57372905656878, 29.776187193154097 ], [ -95.57369705644588, 29.776258193428522 ], [ -95.573653055946679, 29.776319193716478 ], [ -95.573596056563716, 29.776368193557566 ], [ -95.573338056435432, 29.776500193797343 ], [ -95.57276505624074, 29.776920193705838 ], [ -95.572670055828894, 29.77699019374985 ], [ -95.572286055798841, 29.777187193945036 ], [ -95.572015056093207, 29.77730319344483 ], [ -95.571763055663538, 29.777435193451968 ], [ -95.571662055547293, 29.777506193776702 ], [ -95.571492055483077, 29.777660193511139 ], [ -95.571286055820252, 29.777905193483928 ], [ -95.57120205547433, 29.778007193628923 ], [ -95.570994055328072, 29.778177194246517 ], [ -95.570824055369101, 29.778276194117172 ], [ -95.570370055751354, 29.778573193955751 ], [ -95.569977055719036, 29.778786193649257 ], [ -95.569374055162484, 29.779112194106688 ], [ -95.569204055514916, 29.779222193961413 ], [ -95.568984055222373, 29.779398194551913 ], [ -95.568514054760058, 29.77973219386481 ], [ -95.568411055096959, 29.779805194064739 ], [ -95.568026054831265, 29.780079194080606 ], [ -95.567793054598383, 29.780261194441383 ], [ -95.567673054961404, 29.780387194473658 ], [ -95.567523054730785, 29.780593194799767 ], [ -95.567496055198646, 29.780629194640198 ], [ -95.567320054607791, 29.780800194279927 ], [ -95.567081054956674, 29.781009194963652 ], [ -95.567030054642387, 29.781042194355202 ], [ -95.566911054446962, 29.781097194337246 ], [ -95.566703055067109, 29.781179194355207 ], [ -95.566646054353612, 29.781223194415915 ], [ -95.566507054209282, 29.781393194805201 ], [ -95.566331054992887, 29.781679194524653 ], [ -95.566261054207942, 29.781921194820825 ], [ -95.566186054414842, 29.782070195121612 ], [ -95.565997054373909, 29.782257194655433 ], [ -95.565927053986698, 29.782339194514101 ], [ -95.565581054470201, 29.782663195376188 ], [ -95.565442054162389, 29.782823194609612 ], [ -95.565348054070554, 29.782999194900288 ], [ -95.565335054667557, 29.78307619513129 ], [ -95.565348053920076, 29.783175194907368 ], [ -95.565348054106238, 29.783279195119587 ], [ -95.565335054393046, 29.783340195583662 ], [ -95.565285054812009, 29.783494194758898 ], [ -95.565178054543864, 29.783730195264756 ], [ -95.565182054334883, 29.784043195542619 ], [ -95.565183054693023, 29.784215195481941 ], [ -95.565187054036699, 29.784266195519017 ], [ -95.565335053957696, 29.784459195204786 ], [ -95.565625054792406, 29.784619195295605 ], [ -95.565937054797672, 29.784815195017348 ], [ -95.56626905425928, 29.784820195023087 ], [ -95.567601054950742, 29.784845195031551 ], [ -95.5704180557927, 29.784835195022097 ], [ -95.572865055870295, 29.78486219544796 ], [ -95.574602056917826, 29.784869194736121 ], [ -95.575449056548251, 29.784884195041666 ], [ -95.575660057234074, 29.7848791950736 ], [ -95.575830056846229, 29.784879194820682 ], [ -95.576284056728269, 29.784880194894875 ], [ -95.577528057330028, 29.784884194936271 ], [ -95.580310058204333, 29.78488419458705 ], [ -95.58101305842699, 29.784896195131775 ], [ -95.582588059358557, 29.78492419454669 ], [ -95.583150058624454, 29.784924194459894 ], [ -95.586659060005672, 29.784921194353021 ], [ -95.590080060545191, 29.784940194358661 ], [ -95.590295061308112, 29.784925194606984 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 581, "Tract": "48201450500", "Area_SqMi": 1.1343602147866259, "total_2009": 7727, "total_2010": 9201, "total_2011": 10021, "total_2012": 12643, "total_2013": 14170, "total_2014": 14068, "total_2015": 11640, "total_2016": 10007, "total_2017": 9161, "total_2018": 7587, "total_2019": 7739, "total_2020": 8145, "age1": 688, "age2": 5027, "age3": 1280, "earn1": 211, "earn2": 487, "earn3": 6297, "naics_s01": 2, "naics_s02": 2974, "naics_s03": 0, "naics_s04": 410, "naics_s05": 99, "naics_s06": 233, "naics_s07": 53, "naics_s08": 132, "naics_s09": 122, "naics_s10": 178, "naics_s11": 47, "naics_s12": 1333, "naics_s13": 755, "naics_s14": 185, "naics_s15": 7, "naics_s16": 107, "naics_s17": 0, "naics_s18": 313, "naics_s19": 45, "naics_s20": 0, "race1": 5119, "race2": 623, "race3": 34, "race4": 1084, "race5": 9, "race6": 126, "ethnicity1": 5720, "ethnicity2": 1275, "edu1": 748, "edu2": 1140, "edu3": 1621, "edu4": 2798, "Shape_Length": 24499.002491876789, "Shape_Area": 31624021.311340112, "total_2021": 6834, "total_2022": 6995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644798074932936, 29.78504019272922 ], [ -95.644795074418241, 29.784721192259074 ], [ -95.644794074567088, 29.784647193099872 ], [ -95.644793074427099, 29.784552192307373 ], [ -95.644790074330956, 29.784264192397504 ], [ -95.644770074731341, 29.783403192702792 ], [ -95.644768074736007, 29.782923191961078 ], [ -95.64476907485853, 29.782591192044418 ], [ -95.644739074957371, 29.781791191851937 ], [ -95.644723074368827, 29.781295192058614 ], [ -95.644720074845225, 29.780984191886759 ], [ -95.644706074147479, 29.780637191457043 ], [ -95.644704074338776, 29.780283192111867 ], [ -95.644706074522389, 29.779909192007423 ], [ -95.644694074137135, 29.779616191640766 ], [ -95.644680074455451, 29.778347191333634 ], [ -95.644683074379628, 29.778164191470456 ], [ -95.64467607464762, 29.778002191136331 ], [ -95.644667073870352, 29.777874191231621 ], [ -95.644663074205383, 29.777700191023929 ], [ -95.644645074630247, 29.777448191549944 ], [ -95.644611074630163, 29.777178190795524 ], [ -95.644548074548979, 29.776893191161371 ], [ -95.644498074082023, 29.776657191389749 ], [ -95.644461074549, 29.776477191197866 ], [ -95.644412074534898, 29.776298191168507 ], [ -95.644298074242542, 29.776009191251013 ], [ -95.644139074529718, 29.775652190854018 ], [ -95.64405107455066, 29.775441190832105 ], [ -95.643905074313167, 29.775138190453315 ], [ -95.643779074327881, 29.774815190882112 ], [ -95.643712073465338, 29.774670191001789 ], [ -95.643591074135941, 29.774440190320142 ], [ -95.643451074141396, 29.774105190757982 ], [ -95.643365074184331, 29.773886190828087 ], [ -95.643151074270619, 29.773202190212398 ], [ -95.643038073401414, 29.772693190557295 ], [ -95.642958073924589, 29.772367190124953 ], [ -95.642924074182474, 29.772014189772126 ], [ -95.642929073785339, 29.771799190092938 ], [ -95.64293107354807, 29.771576190422472 ], [ -95.643073074079794, 29.770552189704443 ], [ -95.643122073946301, 29.770352189435105 ], [ -95.643302073626472, 29.769447189432846 ], [ -95.643312073561646, 29.769399189556772 ], [ -95.643319073478494, 29.769373189453116 ], [ -95.641610072952105, 29.769081189699431 ], [ -95.640558072470427, 29.768936189736426 ], [ -95.640295072695679, 29.768942189698784 ], [ -95.639693072814026, 29.76905719006038 ], [ -95.634912071463972, 29.77051018982085 ], [ -95.634337071838758, 29.770785189924851 ], [ -95.634107071456214, 29.771081190615106 ], [ -95.633905071210648, 29.77151419082 ], [ -95.63357407100014, 29.772795190301029 ], [ -95.63352507109829, 29.772988190466009 ], [ -95.633519071584303, 29.773000190594331 ], [ -95.633363071095104, 29.773319190478205 ], [ -95.63279107067217, 29.773782191315782 ], [ -95.632641070991482, 29.773842190478351 ], [ -95.632440070723419, 29.773871190694983 ], [ -95.631998071019808, 29.773937191200197 ], [ -95.631736071259525, 29.77391919060188 ], [ -95.631386071252194, 29.773894191109814 ], [ -95.630600070526356, 29.773839191266696 ], [ -95.630203070882501, 29.773823191108178 ], [ -95.629403070081537, 29.773792190745567 ], [ -95.628414069861535, 29.773753190639315 ], [ -95.628191070427263, 29.773745191163833 ], [ -95.628016070221619, 29.773738191407652 ], [ -95.627848070352101, 29.773732190737189 ], [ -95.626937069712667, 29.773742191401912 ], [ -95.626863069543518, 29.773743191065471 ], [ -95.625228069552264, 29.773611190726118 ], [ -95.624889068767075, 29.773483191455593 ], [ -95.623358068704562, 29.772583191203303 ], [ -95.62313906853224, 29.772467190766051 ], [ -95.623172068631391, 29.772605191122114 ], [ -95.623263069172296, 29.772747190988394 ], [ -95.623536068960163, 29.773129190833103 ], [ -95.623649069128746, 29.773375191246338 ], [ -95.623726068355737, 29.773648191307505 ], [ -95.6238260687565, 29.774054190903964 ], [ -95.623875069010737, 29.774591191276926 ], [ -95.623869069279607, 29.776931192161953 ], [ -95.623824069071631, 29.779912192548547 ], [ -95.623813068957759, 29.780651192161933 ], [ -95.623794069575069, 29.782768193274411 ], [ -95.623785068803556, 29.783754193604434 ], [ -95.623779068838488, 29.784359193575664 ], [ -95.62377806913608, 29.784476193398341 ], [ -95.62377806946408, 29.78452019342819 ], [ -95.623777069295983, 29.784577193698649 ], [ -95.623777069792126, 29.784644193823858 ], [ -95.623777069375578, 29.784724193191764 ], [ -95.623777069712659, 29.784770193383615 ], [ -95.623776068907191, 29.784880193490427 ], [ -95.623776069161963, 29.784915193674031 ], [ -95.623775069700457, 29.785066193577638 ], [ -95.623841069276779, 29.78506119393785 ], [ -95.624319069859965, 29.785060193427856 ], [ -95.625090069191756, 29.785052193338629 ], [ -95.627590069883695, 29.785022193076923 ], [ -95.628970070885941, 29.785075193598679 ], [ -95.630494071291949, 29.785135193739357 ], [ -95.632198071181833, 29.785135193273227 ], [ -95.633738072285354, 29.785156193447236 ], [ -95.63573207210959, 29.785165192908174 ], [ -95.636190072677891, 29.785175193204545 ], [ -95.638875072793937, 29.785187193168888 ], [ -95.641211074047945, 29.785061192807841 ], [ -95.641405074046958, 29.785062192812521 ], [ -95.641826074238679, 29.785067193142925 ], [ -95.642225074436965, 29.785058193221932 ], [ -95.643027074180452, 29.785058193003238 ], [ -95.643810074927913, 29.785032193135606 ], [ -95.644348075049606, 29.785052192782924 ], [ -95.6445660748455, 29.785045192729473 ], [ -95.644798074932936, 29.78504019272922 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 582, "Tract": "48201450600", "Area_SqMi": 0.72837368512235612, "total_2009": 2211, "total_2010": 1938, "total_2011": 3527, "total_2012": 4372, "total_2013": 4639, "total_2014": 2049, "total_2015": 3049, "total_2016": 2539, "total_2017": 2433, "total_2018": 2537, "total_2019": 3199, "total_2020": 3070, "age1": 514, "age2": 1858, "age3": 588, "earn1": 270, "earn2": 461, "earn3": 2229, "naics_s01": 0, "naics_s02": 511, "naics_s03": 0, "naics_s04": 24, "naics_s05": 0, "naics_s06": 69, "naics_s07": 79, "naics_s08": 21, "naics_s09": 12, "naics_s10": 6, "naics_s11": 66, "naics_s12": 1113, "naics_s13": 0, "naics_s14": 776, "naics_s15": 6, "naics_s16": 26, "naics_s17": 13, "naics_s18": 206, "naics_s19": 31, "naics_s20": 1, "race1": 2095, "race2": 415, "race3": 23, "race4": 366, "race5": 7, "race6": 54, "ethnicity1": 2213, "ethnicity2": 747, "edu1": 365, "edu2": 511, "edu3": 684, "edu4": 886, "Shape_Length": 21117.132223985016, "Shape_Area": 20305811.717190258, "total_2021": 2868, "total_2022": 2960 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.623869069279607, 29.776931192161953 ], [ -95.623875069010737, 29.774591191276926 ], [ -95.6238260687565, 29.774054190903964 ], [ -95.623726068355737, 29.773648191307505 ], [ -95.623649069128746, 29.773375191246338 ], [ -95.623536068960163, 29.773129190833103 ], [ -95.623263069172296, 29.772747190988394 ], [ -95.623172068631391, 29.772605191122114 ], [ -95.62313906853224, 29.772467190766051 ], [ -95.622927069008568, 29.77232419073421 ], [ -95.621333068578821, 29.771382190636007 ], [ -95.620244067691118, 29.770737191140199 ], [ -95.619974067565096, 29.770582190920972 ], [ -95.618905067365816, 29.769966190529601 ], [ -95.618578067450059, 29.769627190784359 ], [ -95.618562067308432, 29.769611190929787 ], [ -95.618468067553067, 29.769374190106625 ], [ -95.618469067297085, 29.76890019065512 ], [ -95.618470067772321, 29.768876190312739 ], [ -95.618633067003842, 29.768149189816917 ], [ -95.618812067037325, 29.767357189835597 ], [ -95.618919067463082, 29.766886189539324 ], [ -95.619216067069161, 29.765154189394096 ], [ -95.619148066992395, 29.764661189923846 ], [ -95.618736067161834, 29.763968189627899 ], [ -95.618526067353073, 29.763750189313491 ], [ -95.617905066696991, 29.763398189565869 ], [ -95.616379066851579, 29.762654188748673 ], [ -95.614650066025263, 29.761811189108567 ], [ -95.613652065869104, 29.76128618861916 ], [ -95.61292606594975, 29.760904189280005 ], [ -95.612807065538249, 29.760857189016875 ], [ -95.612652065137823, 29.760797189066057 ], [ -95.612106064848987, 29.760583188762492 ], [ -95.611704065429066, 29.760576189134088 ], [ -95.60955506486485, 29.761273188977004 ], [ -95.609174064822909, 29.761367189064259 ], [ -95.607975064551411, 29.761664189301406 ], [ -95.607213063806711, 29.761852189465117 ], [ -95.606645063755721, 29.761889189239131 ], [ -95.606198063631709, 29.761892189033098 ], [ -95.606196063362901, 29.761952189103365 ], [ -95.606180064021686, 29.762289189010065 ], [ -95.606157063547641, 29.763124189697834 ], [ -95.606181063932269, 29.764646189568616 ], [ -95.606203063599651, 29.765455189679958 ], [ -95.606215064279837, 29.76626019053688 ], [ -95.606220064481789, 29.766674190091653 ], [ -95.606225064125951, 29.767016190189128 ], [ -95.606231063972231, 29.767454190092657 ], [ -95.606234063973588, 29.767726190822895 ], [ -95.606239064614016, 29.76823919024935 ], [ -95.606260064343232, 29.769008191212876 ], [ -95.606268064052927, 29.769479191260341 ], [ -95.606270063756682, 29.769562190797046 ], [ -95.606281064098482, 29.770101190805256 ], [ -95.606618064229238, 29.770099190998856 ], [ -95.606945064766776, 29.770092191251212 ], [ -95.607112064431362, 29.770089191264088 ], [ -95.607334064465718, 29.770082191271307 ], [ -95.607446064920069, 29.770082190605169 ], [ -95.607843064202839, 29.770070191098739 ], [ -95.608023064545321, 29.770066191312932 ], [ -95.608583065053011, 29.770069190715184 ], [ -95.608909064477103, 29.77009419081703 ], [ -95.609388064954786, 29.770175191354554 ], [ -95.609530064937204, 29.770210191100883 ], [ -95.609642065414732, 29.77024219057828 ], [ -95.61024906479112, 29.770437190591771 ], [ -95.610561065767598, 29.770596191192876 ], [ -95.610643065511752, 29.770639191124143 ], [ -95.610723065332863, 29.770683191060115 ], [ -95.611166065172668, 29.770922191412637 ], [ -95.611341065691931, 29.771016191329444 ], [ -95.611791065974401, 29.771259190879313 ], [ -95.612176066028979, 29.771466191560865 ], [ -95.612347065830207, 29.771557190695006 ], [ -95.612502065521994, 29.77164019153437 ], [ -95.612932066504044, 29.771868191096377 ], [ -95.613177066466193, 29.772005191424807 ], [ -95.613312065642774, 29.772086191118134 ], [ -95.613421066523799, 29.772143191377683 ], [ -95.614125066208516, 29.772539191591868 ], [ -95.6145140664905, 29.772804191230637 ], [ -95.614840066518539, 29.773098191308147 ], [ -95.615131066457323, 29.77341519130783 ], [ -95.615483066892196, 29.773895191121802 ], [ -95.615683066747707, 29.774218191972682 ], [ -95.615702066699271, 29.774261191730162 ], [ -95.615837066807259, 29.774575191936989 ], [ -95.61604606728973, 29.775081191647232 ], [ -95.616187066503358, 29.775392191851367 ], [ -95.616322067310207, 29.775583191550236 ], [ -95.616402066918027, 29.775726191959688 ], [ -95.616866067125073, 29.776296192255646 ], [ -95.617094067318575, 29.77656919171158 ], [ -95.617369067052991, 29.776838192400444 ], [ -95.617883067036473, 29.777309192039176 ], [ -95.617925067087825, 29.77734819199862 ], [ -95.618240068077128, 29.777660192022605 ], [ -95.618958067381868, 29.778277192154722 ], [ -95.619726067649395, 29.778925192704826 ], [ -95.620284067889187, 29.779315192106417 ], [ -95.621379068754933, 29.77975419216164 ], [ -95.621648068980505, 29.779816192433433 ], [ -95.621839068157229, 29.779844192775567 ], [ -95.622608068743901, 29.779916192271219 ], [ -95.623091068736741, 29.779916192835419 ], [ -95.623769069399131, 29.779912192581982 ], [ -95.623824069071631, 29.779912192548547 ], [ -95.623869069279607, 29.776931192161953 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 583, "Tract": "48201450700", "Area_SqMi": 1.714693090351272, "total_2009": 741, "total_2010": 599, "total_2011": 755, "total_2012": 886, "total_2013": 925, "total_2014": 863, "total_2015": 925, "total_2016": 964, "total_2017": 924, "total_2018": 1313, "total_2019": 1454, "total_2020": 1416, "age1": 319, "age2": 547, "age3": 240, "earn1": 274, "earn2": 379, "earn3": 453, "naics_s01": 0, "naics_s02": 10, "naics_s03": 0, "naics_s04": 87, "naics_s05": 11, "naics_s06": 32, "naics_s07": 63, "naics_s08": 9, "naics_s09": 3, "naics_s10": 36, "naics_s11": 23, "naics_s12": 93, "naics_s13": 2, "naics_s14": 62, "naics_s15": 0, "naics_s16": 250, "naics_s17": 3, "naics_s18": 305, "naics_s19": 117, "naics_s20": 0, "race1": 865, "race2": 125, "race3": 14, "race4": 87, "race5": 0, "race6": 15, "ethnicity1": 737, "ethnicity2": 369, "edu1": 166, "edu2": 188, "edu3": 231, "edu4": 202, "Shape_Length": 39142.601866410587, "Shape_Area": 47802708.632439241, "total_2021": 1050, "total_2022": 1106 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.606281064098482, 29.770101190805256 ], [ -95.606270063756682, 29.769562190797046 ], [ -95.606268064052927, 29.769479191260341 ], [ -95.606260064343232, 29.769008191212876 ], [ -95.606239064614016, 29.76823919024935 ], [ -95.606234063973588, 29.767726190822895 ], [ -95.606231063972231, 29.767454190092657 ], [ -95.606225064125951, 29.767016190189128 ], [ -95.606220064481789, 29.766674190091653 ], [ -95.606215064279837, 29.76626019053688 ], [ -95.606203063599651, 29.765455189679958 ], [ -95.606181063932269, 29.764646189568616 ], [ -95.606157063547641, 29.763124189697834 ], [ -95.606180064021686, 29.762289189010065 ], [ -95.606196063362901, 29.761952189103365 ], [ -95.606198063631709, 29.761892189033098 ], [ -95.602443062777184, 29.761913189447451 ], [ -95.60195206288401, 29.761863189074763 ], [ -95.601525062970381, 29.761740189254876 ], [ -95.597351061771448, 29.760174189466465 ], [ -95.596777061494109, 29.759967188995503 ], [ -95.595348060879971, 29.759451188991285 ], [ -95.5944840609517, 29.759243189495084 ], [ -95.593940060603344, 29.759255189413526 ], [ -95.593579060923659, 29.759289189418009 ], [ -95.59250405978662, 29.759388189048231 ], [ -95.590607059660613, 29.759564189333485 ], [ -95.590084059268847, 29.759645189402057 ], [ -95.589622059611941, 29.759799189215862 ], [ -95.589512059555929, 29.759836189529018 ], [ -95.589375059313966, 29.75992318981579 ], [ -95.588580059004329, 29.760428189327627 ], [ -95.588182059637546, 29.760834190167433 ], [ -95.586402058878832, 29.764283190229282 ], [ -95.585990058373255, 29.764876191106126 ], [ -95.585487058236808, 29.765340190971205 ], [ -95.585109058606577, 29.765530191262339 ], [ -95.58481205814617, 29.765680191134262 ], [ -95.584107057992014, 29.76586719089617 ], [ -95.582957057986988, 29.765849190940717 ], [ -95.581395057538415, 29.765723190680571 ], [ -95.580869057401017, 29.765791190665453 ], [ -95.580679057684065, 29.765871191404955 ], [ -95.580576057925796, 29.765915191479905 ], [ -95.579467057113149, 29.766710191338849 ], [ -95.578923057499765, 29.766957191573518 ], [ -95.578648056523463, 29.767022191524095 ], [ -95.578403057336288, 29.767026191816591 ], [ -95.577940057286639, 29.766909191162355 ], [ -95.577486056925579, 29.766764191198959 ], [ -95.577206056569665, 29.766612191540222 ], [ -95.576019056646331, 29.765866191497846 ], [ -95.5750950562188, 29.76528619079232 ], [ -95.574377055481307, 29.764835191198678 ], [ -95.572187054877972, 29.763459190807275 ], [ -95.571659054679571, 29.763127190947198 ], [ -95.571106054843099, 29.762780190333817 ], [ -95.570835055062219, 29.762610190323478 ], [ -95.570598054291921, 29.762481190290398 ], [ -95.570103054803411, 29.762211190892092 ], [ -95.569730054110892, 29.762074190554486 ], [ -95.569596054257786, 29.762052190688053 ], [ -95.568969054337785, 29.761950190825253 ], [ -95.568928054426834, 29.76194819058594 ], [ -95.568695054134537, 29.761937190589357 ], [ -95.568517054382127, 29.761929190855913 ], [ -95.567994054531439, 29.761939191117637 ], [ -95.567833054243081, 29.761942191023302 ], [ -95.566953054091911, 29.761961191054887 ], [ -95.566063053311751, 29.761979190698217 ], [ -95.564563053495846, 29.762012191133643 ], [ -95.562717052778552, 29.761967190812491 ], [ -95.561818052259213, 29.761831190657936 ], [ -95.56066805223594, 29.761565190645587 ], [ -95.56042205223666, 29.761438190545547 ], [ -95.560188052373846, 29.761240190892977 ], [ -95.559878052008827, 29.760778190481478 ], [ -95.559704052284403, 29.760686190681501 ], [ -95.559581051405075, 29.760678191057526 ], [ -95.559341051759318, 29.760722190336363 ], [ -95.559081051890345, 29.760888190334263 ], [ -95.559014052196318, 29.761018190430047 ], [ -95.558887051552787, 29.761723190530557 ], [ -95.558764051356519, 29.761947191145911 ], [ -95.55870605167415, 29.761992191218038 ], [ -95.558500051227853, 29.76215219072591 ], [ -95.558377051392, 29.76220519107185 ], [ -95.558343051640648, 29.76222019135141 ], [ -95.558361051316822, 29.762300190892361 ], [ -95.558493051639203, 29.762715191082336 ], [ -95.558659051698442, 29.76316819085384 ], [ -95.558825051937433, 29.763470191668208 ], [ -95.559036052278302, 29.763731191713298 ], [ -95.559111052165605, 29.763868191229438 ], [ -95.559327051630987, 29.764146191811619 ], [ -95.559499051640074, 29.764335191264827 ], [ -95.560171052290599, 29.765076191367786 ], [ -95.560331052400528, 29.765250191442252 ], [ -95.560595052172943, 29.765538191632494 ], [ -95.560966052973484, 29.765941191655834 ], [ -95.561233052068403, 29.766262191392528 ], [ -95.561462052715953, 29.766577191538079 ], [ -95.561735052424339, 29.766972191963951 ], [ -95.561902052796057, 29.767248192281674 ], [ -95.561978052365475, 29.76739019168356 ], [ -95.562199052734712, 29.767850192241951 ], [ -95.562478053034454, 29.768538192465588 ], [ -95.562514053071951, 29.768619191785241 ], [ -95.562637052959019, 29.769070192198253 ], [ -95.562675052683517, 29.769332192631857 ], [ -95.562771053036883, 29.76989919266822 ], [ -95.56279905316039, 29.770194192607232 ], [ -95.562838053143935, 29.770649193044505 ], [ -95.562846053615971, 29.77101619273397 ], [ -95.562862053095031, 29.771758192765702 ], [ -95.562864053631174, 29.771857192729929 ], [ -95.562881053210887, 29.77265119279409 ], [ -95.562883053241436, 29.772779192942359 ], [ -95.563165053173563, 29.772767192997801 ], [ -95.565817054399261, 29.772712192537128 ], [ -95.568523054661014, 29.77266419257445 ], [ -95.569695055380279, 29.772651193002996 ], [ -95.570120055298986, 29.772647192849664 ], [ -95.570258055042316, 29.772648192760201 ], [ -95.570761055212898, 29.772650192541512 ], [ -95.571545055385599, 29.772637193050006 ], [ -95.571813055545221, 29.772636192475048 ], [ -95.572898056295045, 29.772627192728891 ], [ -95.574470056306623, 29.772621192570792 ], [ -95.575046055947183, 29.772605192737764 ], [ -95.575193056539803, 29.772602192451942 ], [ -95.575255056284703, 29.772602192756569 ], [ -95.575941056842254, 29.772599192404172 ], [ -95.578772057647143, 29.772580192755807 ], [ -95.579276057943602, 29.772592192509052 ], [ -95.579689057847588, 29.772634192358076 ], [ -95.580033058134291, 29.772693192792659 ], [ -95.580423057829151, 29.772780192662939 ], [ -95.580803058108344, 29.772883192345425 ], [ -95.581615057584401, 29.773113192934648 ], [ -95.582027058031159, 29.773193192540663 ], [ -95.582422057894775, 29.773250192891112 ], [ -95.582968058323601, 29.773285192239893 ], [ -95.584818059301099, 29.773264192361733 ], [ -95.585284058851869, 29.773254192719918 ], [ -95.585759059528286, 29.773244192412772 ], [ -95.586027059463007, 29.773205192257425 ], [ -95.586380059194951, 29.77313919233907 ], [ -95.586766058859169, 29.773035192536884 ], [ -95.58710505970231, 29.772920192398221 ], [ -95.587435059309627, 29.772785192287149 ], [ -95.587748059243708, 29.772614191996102 ], [ -95.588125059679257, 29.772379192304424 ], [ -95.589804059784797, 29.77124319162068 ], [ -95.590238059834533, 29.770960191451412 ], [ -95.590439059852216, 29.770825191932765 ], [ -95.590660060253896, 29.770703191287087 ], [ -95.590979060318432, 29.77054819158656 ], [ -95.59117506081374, 29.770468191778484 ], [ -95.591556060384349, 29.770327191318049 ], [ -95.591869060508969, 29.77022919126798 ], [ -95.592325060185047, 29.770118191597462 ], [ -95.59251506061652, 29.77008519157101 ], [ -95.592659060576167, 29.770060191346076 ], [ -95.592808060921669, 29.770034191639127 ], [ -95.593434060929866, 29.76997519165111 ], [ -95.593713061417873, 29.769967191761687 ], [ -95.59439006121714, 29.769994191029223 ], [ -95.594652061709937, 29.770014191251672 ], [ -95.595707061997658, 29.770096191654766 ], [ -95.595970061864335, 29.770114191019086 ], [ -95.59665006185989, 29.770162191108728 ], [ -95.597799062259469, 29.770229191360624 ], [ -95.598203062574839, 29.770224191145434 ], [ -95.598362062080668, 29.77022319141351 ], [ -95.598457062722986, 29.770222191788051 ], [ -95.598761062328336, 29.770217191583036 ], [ -95.599328062330656, 29.770208191345493 ], [ -95.599469062739772, 29.770208191280208 ], [ -95.599748062880224, 29.77020519101465 ], [ -95.599977062169799, 29.770202191596152 ], [ -95.600187062430081, 29.77019819170129 ], [ -95.600430063195972, 29.770198191362539 ], [ -95.600602062261117, 29.770192191531422 ], [ -95.600847063282117, 29.770190191347321 ], [ -95.600971062813883, 29.770187191464633 ], [ -95.601289062907483, 29.770183191411626 ], [ -95.601448062627156, 29.770180191453335 ], [ -95.601607062946044, 29.770179191506127 ], [ -95.601752063395523, 29.770177191004201 ], [ -95.601825063504847, 29.770175191543974 ], [ -95.602220063106174, 29.770170191096863 ], [ -95.602653062893594, 29.770161191176303 ], [ -95.602829063521042, 29.770160191107028 ], [ -95.603091063771657, 29.770152191161184 ], [ -95.603293063158901, 29.770148191204743 ], [ -95.603537063782426, 29.77014419125771 ], [ -95.603756063780679, 29.770144191290157 ], [ -95.603983063897843, 29.770146190790214 ], [ -95.604198063838396, 29.770142191267375 ], [ -95.604241063655024, 29.770141191298833 ], [ -95.604584064079816, 29.770137191405023 ], [ -95.604854063367085, 29.770118191105315 ], [ -95.605038063419244, 29.77011619122959 ], [ -95.60558306380058, 29.770108191326521 ], [ -95.605672063996153, 29.770104191388437 ], [ -95.606281064098482, 29.770101190805256 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 584, "Tract": "48201450900", "Area_SqMi": 0.62623854483881858, "total_2009": 5142, "total_2010": 8179, "total_2011": 8496, "total_2012": 9413, "total_2013": 9555, "total_2014": 9780, "total_2015": 9087, "total_2016": 8197, "total_2017": 7561, "total_2018": 7058, "total_2019": 7520, "total_2020": 8700, "age1": 1252, "age2": 6052, "age3": 1820, "earn1": 490, "earn2": 807, "earn3": 7827, "naics_s01": 0, "naics_s02": 1119, "naics_s03": 159, "naics_s04": 55, "naics_s05": 208, "naics_s06": 961, "naics_s07": 195, "naics_s08": 200, "naics_s09": 203, "naics_s10": 1281, "naics_s11": 39, "naics_s12": 2192, "naics_s13": 414, "naics_s14": 460, "naics_s15": 6, "naics_s16": 1232, "naics_s17": 7, "naics_s18": 337, "naics_s19": 56, "naics_s20": 0, "race1": 5906, "race2": 1491, "race3": 43, "race4": 1506, "race5": 13, "race6": 165, "ethnicity1": 7429, "ethnicity2": 1695, "edu1": 950, "edu2": 1496, "edu3": 2183, "edu4": 3243, "Shape_Length": 16982.871995878588, "Shape_Area": 17458458.812124863, "total_2021": 9002, "total_2022": 9124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.572073054287429, 29.747956187495653 ], [ -95.572030054786353, 29.745790187241862 ], [ -95.572027054035317, 29.745641187588483 ], [ -95.572018054480949, 29.745224187340735 ], [ -95.572017054531813, 29.744426186803882 ], [ -95.572003053858481, 29.7437321868072 ], [ -95.571998054714911, 29.742782186472041 ], [ -95.571976053964832, 29.741703186510804 ], [ -95.571971054040262, 29.741134186026262 ], [ -95.571949053777558, 29.74043818626944 ], [ -95.571954054507657, 29.740312186004072 ], [ -95.571941054017046, 29.739502185609791 ], [ -95.571932053901278, 29.738668185503105 ], [ -95.571930053956351, 29.738386185909629 ], [ -95.571905053527573, 29.73817718605358 ], [ -95.571852053717734, 29.737829185743646 ], [ -95.571820054059643, 29.737516185882747 ], [ -95.571772054320547, 29.7368221854972 ], [ -95.571767053866651, 29.736700185061927 ], [ -95.570653053944326, 29.736722185076989 ], [ -95.569607052859084, 29.73672418542256 ], [ -95.568566053556225, 29.736733185535396 ], [ -95.567681052962143, 29.736741185596358 ], [ -95.566911052632832, 29.736747185906257 ], [ -95.565145051995415, 29.736773185293846 ], [ -95.564208052005824, 29.736789185824321 ], [ -95.563491051423284, 29.736800185891074 ], [ -95.563145051407176, 29.736798185262195 ], [ -95.561719051605721, 29.736835185865839 ], [ -95.560785050913452, 29.73684818587704 ], [ -95.56053705097456, 29.736848186151484 ], [ -95.560171051052791, 29.736851185747298 ], [ -95.559859051216492, 29.736852186158682 ], [ -95.559102051098208, 29.736856185493142 ], [ -95.558403050474354, 29.73685818550689 ], [ -95.557724050051149, 29.736862186016971 ], [ -95.557726050691684, 29.737041186227621 ], [ -95.557727050343232, 29.737189186112428 ], [ -95.557743050491666, 29.738728186622673 ], [ -95.557757050883382, 29.740071186353592 ], [ -95.557786050403408, 29.742688186970692 ], [ -95.557793050201994, 29.742956187081745 ], [ -95.557891050575606, 29.747129188407143 ], [ -95.557896050691468, 29.747361187916233 ], [ -95.557900051004424, 29.747555188256264 ], [ -95.558396050565491, 29.747563188414425 ], [ -95.558912050680718, 29.747558188108215 ], [ -95.559099051687227, 29.747550187908082 ], [ -95.559359050824, 29.74753318811559 ], [ -95.559503051597218, 29.747537188328447 ], [ -95.559820051370451, 29.747529188257612 ], [ -95.560302050941431, 29.747479188365169 ], [ -95.560684051406653, 29.747415188069585 ], [ -95.561074051634179, 29.74731118820014 ], [ -95.561668052170816, 29.747209187546645 ], [ -95.562140051725422, 29.74716818811407 ], [ -95.562632051685313, 29.747165187964463 ], [ -95.56415305232656, 29.747154187755864 ], [ -95.565020052215516, 29.747257187902697 ], [ -95.56543005321987, 29.747352187945967 ], [ -95.565814053054638, 29.747397187345967 ], [ -95.566037052985465, 29.747404187445376 ], [ -95.566458053410656, 29.747427187703614 ], [ -95.567183053742625, 29.747413187689727 ], [ -95.5675310534277, 29.747408187727366 ], [ -95.567676053400589, 29.747406187864325 ], [ -95.56826105349603, 29.74741718787153 ], [ -95.568393053107485, 29.747437187861713 ], [ -95.568693053283468, 29.747470188017989 ], [ -95.569253054247056, 29.747571187584086 ], [ -95.569582053354964, 29.747648187389142 ], [ -95.569824053497626, 29.747716187609754 ], [ -95.570222053851865, 29.74779818734125 ], [ -95.570582054489705, 29.74787518754324 ], [ -95.571209054354341, 29.747948187483061 ], [ -95.572073054287429, 29.747956187495653 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 585, "Tract": "48201451100", "Area_SqMi": 0.9480733996829861, "total_2009": 914, "total_2010": 839, "total_2011": 859, "total_2012": 946, "total_2013": 902, "total_2014": 860, "total_2015": 946, "total_2016": 1087, "total_2017": 1168, "total_2018": 1139, "total_2019": 1137, "total_2020": 1166, "age1": 251, "age2": 702, "age3": 361, "earn1": 203, "earn2": 340, "earn3": 771, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 332, "naics_s05": 25, "naics_s06": 162, "naics_s07": 12, "naics_s08": 6, "naics_s09": 5, "naics_s10": 40, "naics_s11": 21, "naics_s12": 103, "naics_s13": 2, "naics_s14": 8, "naics_s15": 14, "naics_s16": 116, "naics_s17": 402, "naics_s18": 36, "naics_s19": 30, "naics_s20": 0, "race1": 1010, "race2": 164, "race3": 15, "race4": 98, "race5": 1, "race6": 26, "ethnicity1": 898, "ethnicity2": 416, "edu1": 239, "edu2": 240, "edu3": 284, "edu4": 300, "Shape_Length": 22168.855496595708, "Shape_Area": 26430663.739321154, "total_2021": 1256, "total_2022": 1314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.589375059313966, 29.75992318981579 ], [ -95.589336059832959, 29.759839189938482 ], [ -95.588901059540149, 29.758887189000855 ], [ -95.58875505903265, 29.758385189421247 ], [ -95.58860305889695, 29.757822188761221 ], [ -95.588293058988413, 29.756856188648964 ], [ -95.588211059199892, 29.75662618919338 ], [ -95.588101059050828, 29.756348188604004 ], [ -95.5880060584592, 29.756129188478816 ], [ -95.587898058658396, 29.755906189009309 ], [ -95.587781058963998, 29.755694188796365 ], [ -95.5876280583729, 29.75543318832332 ], [ -95.587461058388214, 29.7551721885376 ], [ -95.587176058448435, 29.754770188225894 ], [ -95.586843058892129, 29.7543591884798 ], [ -95.586601058300602, 29.754077188388326 ], [ -95.586490058847176, 29.753923188444606 ], [ -95.586470058835772, 29.753895188805512 ], [ -95.586016058121103, 29.753189188414115 ], [ -95.585831058465871, 29.752832188190528 ], [ -95.585699058611993, 29.752514188199168 ], [ -95.58561505854972, 29.752286188222527 ], [ -95.585541057932915, 29.752023187613215 ], [ -95.585468058253667, 29.751655188262209 ], [ -95.585422057870431, 29.751327187725749 ], [ -95.585390057669429, 29.751043188247799 ], [ -95.585385057701231, 29.750694187842658 ], [ -95.58541005832231, 29.75031418789548 ], [ -95.585467057841882, 29.749970187466438 ], [ -95.585555058331593, 29.749621187612437 ], [ -95.585683058225825, 29.74922018713772 ], [ -95.585861058202312, 29.74880418728986 ], [ -95.586115057805259, 29.748278187150127 ], [ -95.586304058470205, 29.747947186835344 ], [ -95.586608057888768, 29.747450187228772 ], [ -95.586238057740431, 29.747337186696903 ], [ -95.585890057567653, 29.747240186831579 ], [ -95.585487058274651, 29.747142186982447 ], [ -95.585162057723949, 29.74707218739535 ], [ -95.584895057248858, 29.747016187442462 ], [ -95.584600057302879, 29.746970187303607 ], [ -95.584232057891342, 29.746937187102954 ], [ -95.583654057361983, 29.746889186834576 ], [ -95.583096056881374, 29.74688018726032 ], [ -95.582606057522099, 29.74689418738032 ], [ -95.582158057428714, 29.746928186863951 ], [ -95.58168805710487, 29.746980186857687 ], [ -95.580562056971573, 29.747223187352798 ], [ -95.57977405599209, 29.747457187097563 ], [ -95.579590056290954, 29.74750918717465 ], [ -95.579301056700245, 29.747590187399332 ], [ -95.578741056271284, 29.747716187841359 ], [ -95.578532055964814, 29.747763187532442 ], [ -95.577790055917333, 29.747868187102821 ], [ -95.577049055521016, 29.747920187257645 ], [ -95.576370055433216, 29.747936187875798 ], [ -95.576019055950042, 29.747940187312988 ], [ -95.575839055958014, 29.747939187799876 ], [ -95.575797055790403, 29.74792018744197 ], [ -95.575010055712482, 29.74793118789551 ], [ -95.574227054629588, 29.74793918727962 ], [ -95.573922054563454, 29.747947187985705 ], [ -95.573212054319157, 29.747950187293494 ], [ -95.573044054743676, 29.747958187716858 ], [ -95.572073054287429, 29.747956187495653 ], [ -95.572079054426851, 29.7491511882426 ], [ -95.572076054330722, 29.749384188388827 ], [ -95.572082054747071, 29.749492188099627 ], [ -95.57211205414373, 29.750129187698974 ], [ -95.572153055072519, 29.750431187946813 ], [ -95.572180054382443, 29.750590188622102 ], [ -95.572283054998678, 29.750981188413181 ], [ -95.572376054689471, 29.751274188234177 ], [ -95.572578054317404, 29.751746188688958 ], [ -95.572695054954707, 29.751974188776195 ], [ -95.572836054822204, 29.752231188220041 ], [ -95.57290605493499, 29.752353188852556 ], [ -95.573325055298142, 29.753101188545021 ], [ -95.574304055853062, 29.754502189354262 ], [ -95.575166055797823, 29.755284189375427 ], [ -95.575575055382643, 29.755765189216575 ], [ -95.575944055572052, 29.756398189315735 ], [ -95.576092055418428, 29.756711189633606 ], [ -95.576187055937382, 29.756989189489026 ], [ -95.576240056082426, 29.757241189355415 ], [ -95.576279056448939, 29.757449189834265 ], [ -95.5763020559815, 29.757686189687554 ], [ -95.576317056389712, 29.757929189740491 ], [ -95.576329055998997, 29.758364189510992 ], [ -95.576335055813274, 29.758896190206347 ], [ -95.576341056248026, 29.75927318954809 ], [ -95.576351055753236, 29.759800189792905 ], [ -95.576357056227565, 29.76008219024806 ], [ -95.576347055969975, 29.760378190365635 ], [ -95.57631205603883, 29.760728189920318 ], [ -95.57623605585735, 29.76115819067644 ], [ -95.576153055672791, 29.761430190615101 ], [ -95.576099056057743, 29.761550190450695 ], [ -95.575922056015415, 29.761892190108497 ], [ -95.575767055941284, 29.762236190480767 ], [ -95.575660056313836, 29.762594190235657 ], [ -95.575604056578641, 29.762906190580033 ], [ -95.575591055968957, 29.763166190508432 ], [ -95.575601055815426, 29.763629191122448 ], [ -95.575687055694161, 29.764059190732901 ], [ -95.575913056011672, 29.764833190616837 ], [ -95.575973056045342, 29.765193190953148 ], [ -95.576019056271534, 29.765768190739244 ], [ -95.576019056646331, 29.765866191497846 ], [ -95.577206056569665, 29.766612191540222 ], [ -95.577486056925579, 29.766764191198959 ], [ -95.577940057286639, 29.766909191162355 ], [ -95.578403057336288, 29.767026191816591 ], [ -95.578648056523463, 29.767022191524095 ], [ -95.578923057499765, 29.766957191573518 ], [ -95.579467057113149, 29.766710191338849 ], [ -95.580576057925796, 29.765915191479905 ], [ -95.580679057684065, 29.765871191404955 ], [ -95.580869057401017, 29.765791190665453 ], [ -95.581395057538415, 29.765723190680571 ], [ -95.582957057986988, 29.765849190940717 ], [ -95.584107057992014, 29.76586719089617 ], [ -95.58481205814617, 29.765680191134262 ], [ -95.585109058606577, 29.765530191262339 ], [ -95.585487058236808, 29.765340190971205 ], [ -95.585990058373255, 29.764876191106126 ], [ -95.586402058878832, 29.764283190229282 ], [ -95.588182059637546, 29.760834190167433 ], [ -95.588580059004329, 29.760428189327627 ], [ -95.589375059313966, 29.75992318981579 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 586, "Tract": "48201451200", "Area_SqMi": 0.66176009488527965, "total_2009": 1215, "total_2010": 1055, "total_2011": 1083, "total_2012": 1512, "total_2013": 1591, "total_2014": 1671, "total_2015": 1963, "total_2016": 1846, "total_2017": 1752, "total_2018": 1425, "total_2019": 1591, "total_2020": 1514, "age1": 133, "age2": 829, "age3": 231, "earn1": 92, "earn2": 133, "earn3": 968, "naics_s01": 0, "naics_s02": 760, "naics_s03": 0, "naics_s04": 43, "naics_s05": 1, "naics_s06": 49, "naics_s07": 57, "naics_s08": 0, "naics_s09": 22, "naics_s10": 26, "naics_s11": 6, "naics_s12": 80, "naics_s13": 0, "naics_s14": 11, "naics_s15": 54, "naics_s16": 9, "naics_s17": 0, "naics_s18": 69, "naics_s19": 6, "naics_s20": 0, "race1": 790, "race2": 119, "race3": 4, "race4": 258, "race5": 2, "race6": 20, "ethnicity1": 945, "ethnicity2": 248, "edu1": 144, "edu2": 200, "edu3": 276, "edu4": 440, "Shape_Length": 20199.907206907406, "Shape_Area": 18448738.831679691, "total_2021": 1183, "total_2022": 1193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.606211063411692, 29.761199189062726 ], [ -95.606225063411955, 29.76027918940288 ], [ -95.606191063630675, 29.758094188701484 ], [ -95.606168064098355, 29.75697218878156 ], [ -95.606125063843692, 29.75463718832086 ], [ -95.606119063578447, 29.754434187567881 ], [ -95.606114063345913, 29.753926187507137 ], [ -95.605542063373051, 29.753920188075984 ], [ -95.605382063297625, 29.753916187907965 ], [ -95.604717063370828, 29.753904187672209 ], [ -95.604496063543337, 29.753904188195087 ], [ -95.602385062521094, 29.753878188147873 ], [ -95.601787062271868, 29.753852187515594 ], [ -95.601497062153612, 29.753832187685802 ], [ -95.601184062186107, 29.753800187548972 ], [ -95.600874062562752, 29.753752188126644 ], [ -95.598383061368409, 29.753280188286471 ], [ -95.597662061290677, 29.753128187893147 ], [ -95.596889060674471, 29.752965187716523 ], [ -95.596284061032776, 29.752841187964599 ], [ -95.595842060395924, 29.752773188299177 ], [ -95.59529106047674, 29.75265318793388 ], [ -95.594765060784979, 29.752528188301948 ], [ -95.594283060702878, 29.752375187444827 ], [ -95.593844060222636, 29.752208187970652 ], [ -95.593428059667602, 29.752025187995557 ], [ -95.592981060510198, 29.751810187781068 ], [ -95.592023059775357, 29.751220187930265 ], [ -95.590054059673989, 29.749646187056761 ], [ -95.588484058226541, 29.748403186913077 ], [ -95.587037057941785, 29.747669186765748 ], [ -95.586850058751395, 29.74757318734148 ], [ -95.586608057888768, 29.747450187228772 ], [ -95.586304058470205, 29.747947186835344 ], [ -95.586115057805259, 29.748278187150127 ], [ -95.585861058202312, 29.74880418728986 ], [ -95.585683058225825, 29.74922018713772 ], [ -95.585555058331593, 29.749621187612437 ], [ -95.585467057841882, 29.749970187466438 ], [ -95.58541005832231, 29.75031418789548 ], [ -95.585385057701231, 29.750694187842658 ], [ -95.585390057669429, 29.751043188247799 ], [ -95.585422057870431, 29.751327187725749 ], [ -95.585468058253667, 29.751655188262209 ], [ -95.585541057932915, 29.752023187613215 ], [ -95.58561505854972, 29.752286188222527 ], [ -95.585699058611993, 29.752514188199168 ], [ -95.585831058465871, 29.752832188190528 ], [ -95.586016058121103, 29.753189188414115 ], [ -95.586470058835772, 29.753895188805512 ], [ -95.586490058847176, 29.753923188444606 ], [ -95.586601058300602, 29.754077188388326 ], [ -95.586843058892129, 29.7543591884798 ], [ -95.587176058448435, 29.754770188225894 ], [ -95.587461058388214, 29.7551721885376 ], [ -95.5876280583729, 29.75543318832332 ], [ -95.587781058963998, 29.755694188796365 ], [ -95.587898058658396, 29.755906189009309 ], [ -95.5880060584592, 29.756129188478816 ], [ -95.588101059050828, 29.756348188604004 ], [ -95.588211059199892, 29.75662618919338 ], [ -95.588293058988413, 29.756856188648964 ], [ -95.58860305889695, 29.757822188761221 ], [ -95.58875505903265, 29.758385189421247 ], [ -95.588901059540149, 29.758887189000855 ], [ -95.589336059832959, 29.759839189938482 ], [ -95.589375059313966, 29.75992318981579 ], [ -95.589512059555929, 29.759836189529018 ], [ -95.589622059611941, 29.759799189215862 ], [ -95.590084059268847, 29.759645189402057 ], [ -95.590607059660613, 29.759564189333485 ], [ -95.59250405978662, 29.759388189048231 ], [ -95.593579060923659, 29.759289189418009 ], [ -95.593940060603344, 29.759255189413526 ], [ -95.5944840609517, 29.759243189495084 ], [ -95.595348060879971, 29.759451188991285 ], [ -95.596777061494109, 29.759967188995503 ], [ -95.597351061771448, 29.760174189466465 ], [ -95.601525062970381, 29.761740189254876 ], [ -95.60195206288401, 29.761863189074763 ], [ -95.602443062777184, 29.761913189447451 ], [ -95.606198063631709, 29.761892189033098 ], [ -95.606199064000393, 29.761804189005215 ], [ -95.606211063411692, 29.761199189062726 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 587, "Tract": "48201421700", "Area_SqMi": 0.73002015092884043, "total_2009": 636, "total_2010": 469, "total_2011": 686, "total_2012": 779, "total_2013": 793, "total_2014": 721, "total_2015": 773, "total_2016": 813, "total_2017": 856, "total_2018": 910, "total_2019": 927, "total_2020": 807, "age1": 207, "age2": 380, "age3": 182, "earn1": 193, "earn2": 310, "earn3": 266, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 53, "naics_s05": 85, "naics_s06": 4, "naics_s07": 165, "naics_s08": 1, "naics_s09": 0, "naics_s10": 37, "naics_s11": 39, "naics_s12": 14, "naics_s13": 0, "naics_s14": 16, "naics_s15": 126, "naics_s16": 47, "naics_s17": 0, "naics_s18": 100, "naics_s19": 82, "naics_s20": 0, "race1": 522, "race2": 120, "race3": 13, "race4": 97, "race5": 5, "race6": 12, "ethnicity1": 472, "ethnicity2": 297, "edu1": 128, "edu2": 130, "edu3": 157, "edu4": 147, "Shape_Length": 21034.893448888091, "Shape_Area": 20351712.365920648, "total_2021": 787, "total_2022": 769 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.49316303135555, 29.678268175773432 ], [ -95.49319903167364, 29.678176175692371 ], [ -95.492343030639844, 29.677852176356627 ], [ -95.488641029928772, 29.67580817604566 ], [ -95.487936029462134, 29.675513175391469 ], [ -95.487072029178265, 29.675288175977183 ], [ -95.485972029653965, 29.675168175460822 ], [ -95.485237029057799, 29.675174175338515 ], [ -95.484264029164606, 29.675314176016311 ], [ -95.484258028416249, 29.675398176140664 ], [ -95.484309028878329, 29.675805176189787 ], [ -95.484322029030523, 29.675873175533308 ], [ -95.484263028940916, 29.675884175911222 ], [ -95.484273028776357, 29.677125175934709 ], [ -95.484291028566801, 29.678085176546098 ], [ -95.484203028464066, 29.679133176626454 ], [ -95.484211028753123, 29.679915177026778 ], [ -95.484249028684246, 29.68042917668199 ], [ -95.484266029053387, 29.681198177449616 ], [ -95.48427102925298, 29.681469176746692 ], [ -95.484281029169821, 29.681971177568581 ], [ -95.484281029488642, 29.68243617756049 ], [ -95.48428102877817, 29.682735177705748 ], [ -95.48428102871074, 29.682965177745022 ], [ -95.484291028701008, 29.683509177248329 ], [ -95.48429902871851, 29.683752177966397 ], [ -95.484315029114654, 29.684279177183882 ], [ -95.484320029009581, 29.684574177922645 ], [ -95.484329028940238, 29.685050178092702 ], [ -95.484327029098836, 29.68543217817475 ], [ -95.484336029815111, 29.685826178134473 ], [ -95.484342029070476, 29.686164177807072 ], [ -95.484340029727264, 29.686212178284077 ], [ -95.484327029383138, 29.68660417790921 ], [ -95.484371029243647, 29.686923177786174 ], [ -95.484375029574181, 29.686953177925972 ], [ -95.484385029272516, 29.68714217799176 ], [ -95.484396029527758, 29.687354177845766 ], [ -95.484395029704146, 29.687838178029853 ], [ -95.484394029755023, 29.688143178556206 ], [ -95.484407029103707, 29.688542178316077 ], [ -95.484423029751454, 29.689040178991903 ], [ -95.48442502957316, 29.689561179084407 ], [ -95.484427029956379, 29.689622178983708 ], [ -95.484443029657811, 29.690095178607219 ], [ -95.484452029157509, 29.690521179007415 ], [ -95.484462030058125, 29.69103517943984 ], [ -95.484472029315299, 29.692222179416977 ], [ -95.484500029875448, 29.693461179718476 ], [ -95.484527030254483, 29.694636179438145 ], [ -95.484516029709937, 29.695858179857318 ], [ -95.484540029728123, 29.697087179914543 ], [ -95.484555029769808, 29.697851180850041 ], [ -95.484563029430873, 29.698284180369168 ], [ -95.484579029709337, 29.699199180775651 ], [ -95.484597030062758, 29.699189180706004 ], [ -95.486633030928544, 29.698092180380094 ], [ -95.486997030381019, 29.697923180268155 ], [ -95.487908031066453, 29.697454180612205 ], [ -95.488727031173141, 29.697035179756906 ], [ -95.489659031379873, 29.696569179755489 ], [ -95.490036031052625, 29.696382179478114 ], [ -95.490764031250123, 29.696025180193356 ], [ -95.49112303129408, 29.695838180037526 ], [ -95.491443032006529, 29.69563318003182 ], [ -95.491754031465831, 29.695474180092397 ], [ -95.492193032189874, 29.695240179488266 ], [ -95.492714032298153, 29.694976179887178 ], [ -95.493000032248759, 29.694808179131304 ], [ -95.493028031473429, 29.694555179215421 ], [ -95.49301603196821, 29.693955178910311 ], [ -95.493009032100261, 29.693685178853883 ], [ -95.493006032263878, 29.693367179309408 ], [ -95.49296003174446, 29.692116178827138 ], [ -95.492960032119782, 29.691604178942349 ], [ -95.492899031757915, 29.6906921785557 ], [ -95.492665031640286, 29.689779178697862 ], [ -95.492577031070965, 29.689451178660732 ], [ -95.49251303180435, 29.689161178041445 ], [ -95.492493031803974, 29.688979178083784 ], [ -95.492419031232046, 29.688261177827957 ], [ -95.492446031410807, 29.686682177805075 ], [ -95.492615031250963, 29.685869177914796 ], [ -95.492766031359238, 29.685388177826479 ], [ -95.492804031617865, 29.685056177149782 ], [ -95.492829031101692, 29.684255176949598 ], [ -95.492819030892605, 29.683445177442906 ], [ -95.492823031691202, 29.682661177235683 ], [ -95.49281603146629, 29.68181717707812 ], [ -95.492781031429018, 29.681049176339926 ], [ -95.492804031198304, 29.679434176369632 ], [ -95.492985031215355, 29.67868417607076 ], [ -95.493150031346389, 29.678300175676775 ], [ -95.49316303135555, 29.678268175773432 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 588, "Tract": "48201341800", "Area_SqMi": 1.7539209264715969, "total_2009": 82, "total_2010": 71, "total_2011": 56, "total_2012": 52, "total_2013": 55, "total_2014": 53, "total_2015": 58, "total_2016": 47, "total_2017": 43, "total_2018": 66, "total_2019": 66, "total_2020": 67, "age1": 10, "age2": 42, "age3": 21, "earn1": 18, "earn2": 18, "earn3": 37, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 6, "naics_s07": 4, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 5, "naics_s12": 15, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 23, "naics_s19": 3, "naics_s20": 0, "race1": 61, "race2": 5, "race3": 0, "race4": 5, "race5": 0, "race6": 2, "ethnicity1": 58, "ethnicity2": 15, "edu1": 27, "edu2": 8, "edu3": 19, "edu4": 9, "Shape_Length": 37972.69080556267, "Shape_Area": 48896313.564361379, "total_2021": 65, "total_2022": 73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.034271911210197, 29.623585180426808 ], [ -95.034275911136888, 29.623251179998551 ], [ -95.034255911419777, 29.622766180157747 ], [ -95.03400391085296, 29.619768179082474 ], [ -95.033985910526283, 29.619556179296247 ], [ -95.033964911240744, 29.619307179385761 ], [ -95.033750910990335, 29.616762179169282 ], [ -95.033657910599345, 29.615656178997089 ], [ -95.033639911138891, 29.615445178323448 ], [ -95.033597910504739, 29.614951178869223 ], [ -95.03357691097338, 29.614697178038494 ], [ -95.033573910647661, 29.614666178641837 ], [ -95.033554910255489, 29.614438178576702 ], [ -95.033550910187842, 29.614391178371637 ], [ -95.033492910270112, 29.613855178104171 ], [ -95.033435910370684, 29.613471178603394 ], [ -95.032948910525164, 29.610536177563901 ], [ -95.032924910663652, 29.610390177876628 ], [ -95.032904910095112, 29.610392177607849 ], [ -95.032667910458571, 29.610450177382905 ], [ -95.032472910630489, 29.610577177282259 ], [ -95.032343910225066, 29.611280177878601 ], [ -95.032379910287531, 29.611637177831632 ], [ -95.032361910411623, 29.611722177551837 ], [ -95.03231890991367, 29.611919177519081 ], [ -95.032550910040527, 29.613343178076537 ], [ -95.032458910693464, 29.613948178722417 ], [ -95.032462910335326, 29.614422178293491 ], [ -95.032464910707162, 29.614675178134675 ], [ -95.032465910446746, 29.614733178318467 ], [ -95.032467910062678, 29.614967178105221 ], [ -95.032468909984502, 29.615023178621538 ], [ -95.032346910370734, 29.615695178789228 ], [ -95.032288910528493, 29.616013179127133 ], [ -95.032309909942427, 29.616116178576707 ], [ -95.032120910363133, 29.616432178924619 ], [ -95.030752909581153, 29.616411179204583 ], [ -95.030285909916074, 29.616552178649506 ], [ -95.029959909675654, 29.616426179069627 ], [ -95.022897907766705, 29.616560178992216 ], [ -95.022404907760787, 29.616590179666172 ], [ -95.022316907508767, 29.616639179402611 ], [ -95.022261907949343, 29.616670179109697 ], [ -95.022096908003675, 29.61676317896508 ], [ -95.021854907508342, 29.61673917918213 ], [ -95.021422907206656, 29.616696179601671 ], [ -95.020819907593079, 29.616999178986255 ], [ -95.020412907074515, 29.617052179141314 ], [ -95.019826907394645, 29.617222179173059 ], [ -95.019126907081315, 29.617425179793127 ], [ -95.018731907262548, 29.617675179972977 ], [ -95.01861290682163, 29.617731179552788 ], [ -95.018492906825102, 29.617786179690476 ], [ -95.01830190707571, 29.617876179524639 ], [ -95.018307906780421, 29.61814617976 ], [ -95.018311906624561, 29.618326179305914 ], [ -95.018311906703389, 29.618341180033617 ], [ -95.018317907021185, 29.619194179899161 ], [ -95.018335906615903, 29.62011018020366 ], [ -95.018337906693631, 29.62097118032991 ], [ -95.01836390702023, 29.621857180361676 ], [ -95.01839890749504, 29.622692180540781 ], [ -95.018394906541772, 29.623508180886006 ], [ -95.018393907108702, 29.623682180462879 ], [ -95.018391907241153, 29.623972180932878 ], [ -95.01839190748052, 29.624239181019814 ], [ -95.018406907604771, 29.624600181415019 ], [ -95.01845490742096, 29.625287181316899 ], [ -95.018445907162985, 29.625304181098286 ], [ -95.018475907406355, 29.627332181884178 ], [ -95.018490906967074, 29.629538181697786 ], [ -95.018511907835233, 29.629932181807419 ], [ -95.018524907791445, 29.630555182672158 ], [ -95.018536906952676, 29.630965182119699 ], [ -95.018545907227789, 29.63134918236128 ], [ -95.0185579069732, 29.631833182126485 ], [ -95.01856890712321, 29.632243182407073 ], [ -95.018589907095375, 29.633109182455819 ], [ -95.018622907490837, 29.634440182665763 ], [ -95.018657907828739, 29.635809183223898 ], [ -95.018681907801408, 29.636717183465166 ], [ -95.018684908177477, 29.636899183685813 ], [ -95.018691907363575, 29.63733218377951 ], [ -95.018705907605593, 29.637991183722384 ], [ -95.018711907322086, 29.638275183840651 ], [ -95.018726908186309, 29.63898118430998 ], [ -95.018735907965365, 29.639535184152795 ], [ -95.018743907645458, 29.640086184008048 ], [ -95.018755908384392, 29.640855184080234 ], [ -95.01879290793147, 29.642133184454373 ], [ -95.018824908428073, 29.643436184488813 ], [ -95.018856907950251, 29.644715185390226 ], [ -95.018847908162059, 29.645957185393506 ], [ -95.018866907806299, 29.645935185547504 ], [ -95.019428908366919, 29.645559184990955 ], [ -95.019489908482029, 29.645518184880473 ], [ -95.019590908308558, 29.645479185112599 ], [ -95.019703908105981, 29.645507185509199 ], [ -95.019728907918292, 29.64560018519078 ], [ -95.019892908169851, 29.645661184909006 ], [ -95.019949908175036, 29.645695185187808 ], [ -95.019967908400019, 29.645705185259455 ], [ -95.020030908694181, 29.645721185534217 ], [ -95.020112908928525, 29.645710185265607 ], [ -95.020257908644311, 29.645606185052909 ], [ -95.020308908945211, 29.645584185073858 ], [ -95.020402908082204, 29.645584185229755 ], [ -95.020477908438778, 29.645604184848377 ], [ -95.020723908307332, 29.645820185517955 ], [ -95.020833908819569, 29.64597018519817 ], [ -95.020868908401653, 29.646018185790435 ], [ -95.020949909157139, 29.646194185384758 ], [ -95.021001909076759, 29.646266185357618 ], [ -95.021050908621007, 29.646304185836957 ], [ -95.021233909278266, 29.646414185653651 ], [ -95.021308908505674, 29.646481185334903 ], [ -95.021346908857367, 29.64653618578221 ], [ -95.021415908409139, 29.646734185630397 ], [ -95.021453908427844, 29.646794185630551 ], [ -95.021497908997247, 29.646844185142101 ], [ -95.021523909308726, 29.646862185824233 ], [ -95.021553908909624, 29.646882185879548 ], [ -95.021673908873453, 29.646937185364713 ], [ -95.021805909218372, 29.646970185885721 ], [ -95.021875909017552, 29.646965185187483 ], [ -95.021950908771899, 29.646976185901369 ], [ -95.022034908756382, 29.646998185442964 ], [ -95.022076908744637, 29.647009185644841 ], [ -95.022158908758612, 29.647053185109321 ], [ -95.022177909517652, 29.647091185459974 ], [ -95.022180909591953, 29.647242185255134 ], [ -95.022183909313114, 29.647350185591534 ], [ -95.02222190925437, 29.647427185604123 ], [ -95.022290908952471, 29.647493185734106 ], [ -95.022378909515709, 29.647542186040575 ], [ -95.022447909551204, 29.647570185351459 ], [ -95.022557908968594, 29.647582185263882 ], [ -95.022598909646987, 29.647586185224924 ], [ -95.022737909428187, 29.647652185399032 ], [ -95.022837908843215, 29.647674185916603 ], [ -95.022988908983095, 29.64765818539162 ], [ -95.023069909534925, 29.647627185878097 ], [ -95.023159909164178, 29.647597185875256 ], [ -95.023221909415554, 29.647603185472608 ], [ -95.023278909157568, 29.647636185769912 ], [ -95.023341909163676, 29.647696185930517 ], [ -95.023467909946461, 29.647861185256129 ], [ -95.023612909242047, 29.648153185974373 ], [ -95.023706910011228, 29.648373185871073 ], [ -95.023725909248455, 29.648481185676346 ], [ -95.023747909374507, 29.64860618550513 ], [ -95.023762909827923, 29.648692185815822 ], [ -95.023806909942479, 29.648818185903473 ], [ -95.023863909881371, 29.648895185607604 ], [ -95.023932909494903, 29.648967185581636 ], [ -95.024014909318169, 29.649022185989558 ], [ -95.024124910032995, 29.649045185871152 ], [ -95.024405909316968, 29.649055186177673 ], [ -95.024549909686101, 29.649083185939915 ], [ -95.024612909953589, 29.649115185730196 ], [ -95.024650909581155, 29.649148186167224 ], [ -95.024669909605961, 29.649165185624689 ], [ -95.024744909625781, 29.649303185941861 ], [ -95.024814909683016, 29.64946818608453 ], [ -95.024897910073037, 29.649771185675171 ], [ -95.024946910336737, 29.649951186402188 ], [ -95.025002909975029, 29.650045185875324 ], [ -95.025059909708503, 29.650117186304893 ], [ -95.025134909524411, 29.650171186331157 ], [ -95.025181910404982, 29.650191185773544 ], [ -95.025304910186449, 29.650243186079905 ], [ -95.025468910090297, 29.650282185964933 ], [ -95.025697910047015, 29.650361186013676 ], [ -95.02594690973433, 29.650447186531498 ], [ -95.026041910108717, 29.650463186095781 ], [ -95.026148910332125, 29.650463186237822 ], [ -95.026198909773456, 29.650457185838142 ], [ -95.02624290984069, 29.650452186324216 ], [ -95.026626910637063, 29.650298186180724 ], [ -95.026734910100998, 29.65026418618044 ], [ -95.026903910794147, 29.650210185840603 ], [ -95.027029910536712, 29.650194186018492 ], [ -95.027149910278581, 29.65019418577014 ], [ -95.027267910875395, 29.650210185603637 ], [ -95.0273689107526, 29.650223186335669 ], [ -95.027439910159757, 29.650233185831407 ], [ -95.02754691103496, 29.650266185954649 ], [ -95.02780491062984, 29.650409186122854 ], [ -95.02783891045091, 29.650449186200657 ], [ -95.027986910752603, 29.650618185775265 ], [ -95.028087910812019, 29.650827186357393 ], [ -95.028106910501748, 29.650931186030064 ], [ -95.028109911108388, 29.65101918582241 ], [ -95.028112910638299, 29.651096186130292 ], [ -95.028099910392612, 29.651393186313101 ], [ -95.028105910481216, 29.651943186053828 ], [ -95.028086910703294, 29.652047186480612 ], [ -95.028067911028515, 29.652124186620423 ], [ -95.028017911094011, 29.652229186362835 ], [ -95.027993911037115, 29.652339186299297 ], [ -95.028383911338622, 29.652344186631176 ], [ -95.028907911211377, 29.652338186400282 ], [ -95.029475911034197, 29.652336186022247 ], [ -95.029888911692922, 29.65233518644721 ], [ -95.029885911489359, 29.652171186453582 ], [ -95.029856910883694, 29.650715185727375 ], [ -95.029814911037263, 29.647958185892314 ], [ -95.029783910703358, 29.647112185138109 ], [ -95.02978391057492, 29.645698185157833 ], [ -95.029733910598267, 29.644409184379704 ], [ -95.029632911047386, 29.641821184186124 ], [ -95.029521910311544, 29.638196183576177 ], [ -95.029584910305118, 29.636523182904565 ], [ -95.030014910126852, 29.634460182595571 ], [ -95.030392910559669, 29.633472182415812 ], [ -95.030668910658946, 29.632751182076451 ], [ -95.031603911036896, 29.630961181764157 ], [ -95.031897911253566, 29.630348181686529 ], [ -95.033098910850413, 29.627846181631746 ], [ -95.033564911236269, 29.626784181218479 ], [ -95.033812910839202, 29.62616318067602 ], [ -95.034183910718014, 29.624707180189027 ], [ -95.034239910772968, 29.624223179986579 ], [ -95.034249910888263, 29.624056179932786 ], [ -95.034269910773446, 29.623738180715325 ], [ -95.034271911210197, 29.623585180426808 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 589, "Tract": "48201451700", "Area_SqMi": 0.67823886991065596, "total_2009": 1285, "total_2010": 1050, "total_2011": 1280, "total_2012": 1235, "total_2013": 1363, "total_2014": 1339, "total_2015": 1443, "total_2016": 1535, "total_2017": 1673, "total_2018": 1903, "total_2019": 1763, "total_2020": 1764, "age1": 585, "age2": 705, "age3": 375, "earn1": 667, "earn2": 549, "earn3": 449, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 32, "naics_s05": 21, "naics_s06": 6, "naics_s07": 674, "naics_s08": 3, "naics_s09": 0, "naics_s10": 44, "naics_s11": 78, "naics_s12": 194, "naics_s13": 0, "naics_s14": 35, "naics_s15": 4, "naics_s16": 243, "naics_s17": 14, "naics_s18": 264, "naics_s19": 53, "naics_s20": 0, "race1": 1035, "race2": 398, "race3": 14, "race4": 182, "race5": 3, "race6": 33, "ethnicity1": 1135, "ethnicity2": 530, "edu1": 244, "edu2": 273, "edu3": 347, "edu4": 216, "Shape_Length": 20794.913638049995, "Shape_Area": 18908138.875681855, "total_2021": 1739, "total_2022": 1665 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644060072420118, 29.735393182569705 ], [ -95.644072071937103, 29.73527018309181 ], [ -95.644053072319153, 29.73474518265872 ], [ -95.644033071724522, 29.733413182306226 ], [ -95.644002072574807, 29.732054182339834 ], [ -95.643990072021651, 29.731317181910761 ], [ -95.643996072097011, 29.731145181830026 ], [ -95.64399107199084, 29.730945181578601 ], [ -95.643986072298006, 29.730049181795664 ], [ -95.643975071967873, 29.729678181361944 ], [ -95.643968071812481, 29.729141181718354 ], [ -95.643543072418254, 29.729145181279314 ], [ -95.642996072226779, 29.72915818111316 ], [ -95.642624071557734, 29.729157181294003 ], [ -95.642077071137138, 29.729176181546524 ], [ -95.639234071221566, 29.729188181531804 ], [ -95.63770807007765, 29.72920318154641 ], [ -95.635770069783305, 29.729223181333282 ], [ -95.632602068814336, 29.729279181993057 ], [ -95.631813068623217, 29.729246181589758 ], [ -95.631475068441418, 29.729249182004146 ], [ -95.63126006916967, 29.729252181528576 ], [ -95.631080069073263, 29.72925318156279 ], [ -95.630818068493625, 29.729265181632943 ], [ -95.630625069018066, 29.72928218149573 ], [ -95.630518068396057, 29.729292181805359 ], [ -95.630204068669215, 29.729335181803958 ], [ -95.62932106821259, 29.729480182310617 ], [ -95.629001068398608, 29.729528181566433 ], [ -95.628704068182572, 29.729557182083834 ], [ -95.628473067957216, 29.729572181803043 ], [ -95.628127068322641, 29.729581182456862 ], [ -95.628042067597605, 29.729581182089852 ], [ -95.627528068255003, 29.729584182272124 ], [ -95.627245067464997, 29.729575181717092 ], [ -95.626622067862982, 29.729539182318916 ], [ -95.626411067912059, 29.72951618200258 ], [ -95.626065067386577, 29.729467182494375 ], [ -95.625737067565325, 29.729402181729672 ], [ -95.625385067598501, 29.729316181870363 ], [ -95.625132067431707, 29.729240182284343 ], [ -95.624754067594083, 29.729105181635543 ], [ -95.624247066694764, 29.728894181936319 ], [ -95.623915066731072, 29.728748181607916 ], [ -95.623497066393213, 29.728565181722438 ], [ -95.62309506705823, 29.728408182037523 ], [ -95.622770066243689, 29.72830018204111 ], [ -95.622632066863076, 29.728259182003878 ], [ -95.622550066278478, 29.728235181898409 ], [ -95.622237066689351, 29.728163181627696 ], [ -95.621865066455555, 29.728108181941582 ], [ -95.621660066253725, 29.728092181607892 ], [ -95.621332066132126, 29.728085181901868 ], [ -95.621000066220319, 29.728062181813925 ], [ -95.619619065809133, 29.72807418195071 ], [ -95.619616066152659, 29.728534181705548 ], [ -95.619632066157351, 29.730484182663428 ], [ -95.619647065548833, 29.731133182856066 ], [ -95.619660065681074, 29.732942183159341 ], [ -95.619658065886597, 29.734015183539015 ], [ -95.61966506555261, 29.734301183200163 ], [ -95.61967206575325, 29.734603183509286 ], [ -95.619674066518584, 29.735066183450407 ], [ -95.619695066066413, 29.735920183536013 ], [ -95.620838065969352, 29.735909183933476 ], [ -95.621780066273317, 29.735897183320461 ], [ -95.622272067010016, 29.735886183313941 ], [ -95.622674067132209, 29.735877183794582 ], [ -95.622829067364194, 29.735874183544354 ], [ -95.623042066597208, 29.735869183594257 ], [ -95.623825067305447, 29.735865183412027 ], [ -95.624658066915629, 29.735858183472875 ], [ -95.625050067557225, 29.735852183330497 ], [ -95.625083067978494, 29.735851183276392 ], [ -95.625344067995883, 29.735848183195735 ], [ -95.625483067796054, 29.735907183524549 ], [ -95.626747067682018, 29.735888183005116 ], [ -95.628742068087845, 29.735868183402442 ], [ -95.632022069700753, 29.735830183557564 ], [ -95.634356069949618, 29.735811183173592 ], [ -95.635143069912246, 29.735797183023475 ], [ -95.636599070055595, 29.735770183332075 ], [ -95.637807071273201, 29.735750182647102 ], [ -95.638227071304229, 29.735751183011462 ], [ -95.638779071104068, 29.735723183205486 ], [ -95.640041071376629, 29.735705182438597 ], [ -95.640837071820542, 29.735710183212028 ], [ -95.641422072041678, 29.735690182971705 ], [ -95.641889071772965, 29.735689182877927 ], [ -95.642357071409492, 29.735671182996601 ], [ -95.644059072469247, 29.735649182695195 ], [ -95.644052072640747, 29.735483182646174 ], [ -95.644060072420118, 29.735393182569705 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 590, "Tract": "48201451800", "Area_SqMi": 1.8482786942799951, "total_2009": 688, "total_2010": 769, "total_2011": 964, "total_2012": 789, "total_2013": 874, "total_2014": 976, "total_2015": 1727, "total_2016": 1807, "total_2017": 1699, "total_2018": 1669, "total_2019": 1625, "total_2020": 1654, "age1": 200, "age2": 964, "age3": 412, "earn1": 123, "earn2": 223, "earn3": 1230, "naics_s01": 0, "naics_s02": 7, "naics_s03": 0, "naics_s04": 245, "naics_s05": 64, "naics_s06": 694, "naics_s07": 28, "naics_s08": 9, "naics_s09": 3, "naics_s10": 6, "naics_s11": 19, "naics_s12": 310, "naics_s13": 0, "naics_s14": 20, "naics_s15": 0, "naics_s16": 14, "naics_s17": 19, "naics_s18": 101, "naics_s19": 37, "naics_s20": 0, "race1": 1083, "race2": 180, "race3": 9, "race4": 281, "race5": 2, "race6": 21, "ethnicity1": 1159, "ethnicity2": 417, "edu1": 194, "edu2": 280, "edu3": 326, "edu4": 576, "Shape_Length": 29547.419505675782, "Shape_Area": 51526846.635925911, "total_2021": 1517, "total_2022": 1576 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644206071639275, 29.716648179277886 ], [ -95.644202071277675, 29.716580179009121 ], [ -95.644203071096427, 29.716192178382709 ], [ -95.644186071414609, 29.715873178404074 ], [ -95.644183071399468, 29.715817179068289 ], [ -95.644162071143825, 29.715428178560732 ], [ -95.644131071909442, 29.714834178418062 ], [ -95.64409607138407, 29.714175178113255 ], [ -95.644091071884134, 29.713985177923 ], [ -95.644086071729987, 29.713622178047203 ], [ -95.64407607089791, 29.712773177928405 ], [ -95.644071071266197, 29.712392177995227 ], [ -95.644078070872183, 29.711735178233194 ], [ -95.644069071193798, 29.711056177888398 ], [ -95.644029070813971, 29.711057177617874 ], [ -95.643872071298034, 29.711063177821714 ], [ -95.643775070809781, 29.711070177687308 ], [ -95.643571070742453, 29.711087177851777 ], [ -95.641722070569102, 29.711184177863998 ], [ -95.640127070513969, 29.711330177607319 ], [ -95.638901069751924, 29.711426177553484 ], [ -95.636652069353332, 29.71161017823006 ], [ -95.634491069046547, 29.711787178418948 ], [ -95.630847067431006, 29.712086178374388 ], [ -95.628580067396982, 29.712262178258275 ], [ -95.627185066651251, 29.712372178454459 ], [ -95.624025066656031, 29.71264317890607 ], [ -95.622822065641444, 29.712741179126603 ], [ -95.616619064399941, 29.71324817952917 ], [ -95.614711063477642, 29.713416179307071 ], [ -95.614694063525491, 29.713656179072963 ], [ -95.614647064277534, 29.714281179228642 ], [ -95.614660064168291, 29.714457179544549 ], [ -95.614666064055143, 29.71475717921291 ], [ -95.614666063806524, 29.714964179093613 ], [ -95.614697064060451, 29.715180179958374 ], [ -95.614762063691558, 29.715535179918081 ], [ -95.614809064253464, 29.715696179535435 ], [ -95.614886063710813, 29.715866180029373 ], [ -95.614953063723434, 29.716030179864354 ], [ -95.615088064458917, 29.716329180017922 ], [ -95.61512906443059, 29.716394179448923 ], [ -95.615211064391517, 29.716525180175129 ], [ -95.615256063890214, 29.716594179950697 ], [ -95.615321064675598, 29.716681179726663 ], [ -95.615419064059651, 29.716796179477388 ], [ -95.615511063961137, 29.716927179942132 ], [ -95.615639064539479, 29.717087179519716 ], [ -95.615971064658936, 29.717481179806416 ], [ -95.616185064789988, 29.717735180471788 ], [ -95.616306064633179, 29.717897180487689 ], [ -95.616624064833275, 29.71825417981297 ], [ -95.617378065108142, 29.719139180333311 ], [ -95.617529065145419, 29.719314180737562 ], [ -95.617630065088022, 29.719431180624582 ], [ -95.618028065200463, 29.719902180681245 ], [ -95.618602065073617, 29.720603180625712 ], [ -95.618911065660669, 29.721082180174044 ], [ -95.619037065668337, 29.721287180668813 ], [ -95.619136065260406, 29.721485180301322 ], [ -95.619218065063421, 29.72167318031531 ], [ -95.619309065353349, 29.721906180900408 ], [ -95.619374065480017, 29.722116180893039 ], [ -95.619463065691761, 29.722466180563906 ], [ -95.619503066002736, 29.722644180830294 ], [ -95.619545065849309, 29.722963180751083 ], [ -95.619569065699622, 29.723328181407599 ], [ -95.619569065339789, 29.723682180897978 ], [ -95.619575065809514, 29.724009181051155 ], [ -95.619573065199162, 29.724433181249466 ], [ -95.619575065367002, 29.724584180980685 ], [ -95.61961406551039, 29.727258182225974 ], [ -95.619619065809133, 29.72807418195071 ], [ -95.621000066220319, 29.728062181813925 ], [ -95.621332066132126, 29.728085181901868 ], [ -95.621660066253725, 29.728092181607892 ], [ -95.621865066455555, 29.728108181941582 ], [ -95.622237066689351, 29.728163181627696 ], [ -95.622550066278478, 29.728235181898409 ], [ -95.622632066863076, 29.728259182003878 ], [ -95.622770066243689, 29.72830018204111 ], [ -95.62309506705823, 29.728408182037523 ], [ -95.623497066393213, 29.728565181722438 ], [ -95.623915066731072, 29.728748181607916 ], [ -95.624247066694764, 29.728894181936319 ], [ -95.624754067594083, 29.729105181635543 ], [ -95.625132067431707, 29.729240182284343 ], [ -95.625385067598501, 29.729316181870363 ], [ -95.625737067565325, 29.729402181729672 ], [ -95.626065067386577, 29.729467182494375 ], [ -95.626411067912059, 29.72951618200258 ], [ -95.626622067862982, 29.729539182318916 ], [ -95.627245067464997, 29.729575181717092 ], [ -95.627528068255003, 29.729584182272124 ], [ -95.628042067597605, 29.729581182089852 ], [ -95.628127068322641, 29.729581182456862 ], [ -95.628473067957216, 29.729572181803043 ], [ -95.628704068182572, 29.729557182083834 ], [ -95.629001068398608, 29.729528181566433 ], [ -95.62932106821259, 29.729480182310617 ], [ -95.630204068669215, 29.729335181803958 ], [ -95.630518068396057, 29.729292181805359 ], [ -95.630625069018066, 29.72928218149573 ], [ -95.630818068493625, 29.729265181632943 ], [ -95.631080069073263, 29.72925318156279 ], [ -95.63126006916967, 29.729252181528576 ], [ -95.631475068441418, 29.729249182004146 ], [ -95.631813068623217, 29.729246181589758 ], [ -95.632602068814336, 29.729279181993057 ], [ -95.635770069783305, 29.729223181333282 ], [ -95.63770807007765, 29.72920318154641 ], [ -95.639234071221566, 29.729188181531804 ], [ -95.642077071137138, 29.729176181546524 ], [ -95.642624071557734, 29.729157181294003 ], [ -95.642996072226779, 29.72915818111316 ], [ -95.643543072418254, 29.729145181279314 ], [ -95.643968071812481, 29.729141181718354 ], [ -95.643948072238956, 29.727879181321168 ], [ -95.64395107219967, 29.726767181346435 ], [ -95.643941071425033, 29.72598918095364 ], [ -95.643949072116229, 29.725459180857868 ], [ -95.643950072234688, 29.725364180732104 ], [ -95.643983071358875, 29.724471180523661 ], [ -95.644073071392214, 29.723825180112414 ], [ -95.644079071913637, 29.7237831802538 ], [ -95.644206071888121, 29.721368179751661 ], [ -95.644157071937684, 29.720149179126544 ], [ -95.644148071583217, 29.719926179666171 ], [ -95.644149071709833, 29.719877179283845 ], [ -95.644183071838512, 29.718509179038197 ], [ -95.644199071936015, 29.717834179366132 ], [ -95.644206071639275, 29.716648179277886 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 591, "Tract": "48201421900", "Area_SqMi": 0.64845701057972771, "total_2009": 1265, "total_2010": 677, "total_2011": 694, "total_2012": 663, "total_2013": 751, "total_2014": 706, "total_2015": 722, "total_2016": 683, "total_2017": 681, "total_2018": 614, "total_2019": 661, "total_2020": 645, "age1": 172, "age2": 316, "age3": 155, "earn1": 200, "earn2": 241, "earn3": 202, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 84, "naics_s07": 9, "naics_s08": 0, "naics_s09": 5, "naics_s10": 11, "naics_s11": 2, "naics_s12": 46, "naics_s13": 0, "naics_s14": 0, "naics_s15": 14, "naics_s16": 340, "naics_s17": 0, "naics_s18": 55, "naics_s19": 77, "naics_s20": 0, "race1": 458, "race2": 92, "race3": 5, "race4": 75, "race5": 0, "race6": 13, "ethnicity1": 487, "ethnicity2": 156, "edu1": 71, "edu2": 98, "edu3": 141, "edu4": 161, "Shape_Length": 18813.749067415585, "Shape_Area": 18077871.609697245, "total_2021": 633, "total_2022": 643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.493704031778336, 29.676027175259449 ], [ -95.493654030749966, 29.675183175151208 ], [ -95.493438030645692, 29.674357175189144 ], [ -95.493203031017572, 29.673752174869772 ], [ -95.49302103099653, 29.673402175027338 ], [ -95.492642031338875, 29.672707174839285 ], [ -95.492449030946844, 29.672120175294015 ], [ -95.492406031228796, 29.671912174646554 ], [ -95.492386030995718, 29.671830174842935 ], [ -95.492342030564004, 29.67164917444769 ], [ -95.492265031067589, 29.671055174231121 ], [ -95.492253030464411, 29.670236174037889 ], [ -95.492267030496208, 29.669420174760344 ], [ -95.492258031080937, 29.668599174035354 ], [ -95.492252030248153, 29.668148174354098 ], [ -95.492242030067899, 29.667413174245123 ], [ -95.49222803025657, 29.666358173642472 ], [ -95.489813029629573, 29.666396173817915 ], [ -95.486039028598526, 29.666434173693929 ], [ -95.483054028089626, 29.666478174360492 ], [ -95.482289028199958, 29.666477174246587 ], [ -95.481781027915787, 29.666482173994552 ], [ -95.480237027012095, 29.666499174129623 ], [ -95.476841026988851, 29.666536174377711 ], [ -95.476853026303814, 29.667481174622274 ], [ -95.476802026719568, 29.667964174605576 ], [ -95.476775026103184, 29.668321174182925 ], [ -95.47675402680791, 29.668799174812477 ], [ -95.476782026942956, 29.669611174813372 ], [ -95.47679002667212, 29.670018174950915 ], [ -95.47679802655405, 29.670443175049144 ], [ -95.476801027058599, 29.670865174870354 ], [ -95.476804026835865, 29.671268175382284 ], [ -95.47681302655846, 29.671690175025574 ], [ -95.476821027116671, 29.672093175263932 ], [ -95.476826026805071, 29.672515175160679 ], [ -95.476830027191596, 29.672900175665237 ], [ -95.476834026619343, 29.673311175486106 ], [ -95.476846026423047, 29.673743175911614 ], [ -95.476842027196923, 29.674121175955229 ], [ -95.476838026482966, 29.674560176012609 ], [ -95.476840027245743, 29.674991175694661 ], [ -95.476844027231465, 29.675883175737233 ], [ -95.476849026889965, 29.676840176352684 ], [ -95.476878027346658, 29.677321176084824 ], [ -95.476882026662366, 29.677394176638561 ], [ -95.477723027293877, 29.677187176462137 ], [ -95.479947028286645, 29.676550176134654 ], [ -95.484264029164606, 29.675314176016311 ], [ -95.485237029057799, 29.675174175338515 ], [ -95.485972029653965, 29.675168175460822 ], [ -95.487072029178265, 29.675288175977183 ], [ -95.487936029462134, 29.675513175391469 ], [ -95.488641029928772, 29.67580817604566 ], [ -95.492343030639844, 29.677852176356627 ], [ -95.49319903167364, 29.678176175692371 ], [ -95.493227031394611, 29.678105175788996 ], [ -95.493282031146279, 29.677963175957526 ], [ -95.493377031139644, 29.677698176063686 ], [ -95.493604031383356, 29.677127176020349 ], [ -95.493704031778336, 29.676027175259449 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 592, "Tract": "48201422100", "Area_SqMi": 0.92608075348626318, "total_2009": 469, "total_2010": 385, "total_2011": 469, "total_2012": 427, "total_2013": 444, "total_2014": 461, "total_2015": 460, "total_2016": 471, "total_2017": 431, "total_2018": 500, "total_2019": 458, "total_2020": 433, "age1": 237, "age2": 541, "age3": 299, "earn1": 519, "earn2": 424, "earn3": 134, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 9, "naics_s06": 6, "naics_s07": 240, "naics_s08": 1, "naics_s09": 0, "naics_s10": 12, "naics_s11": 6, "naics_s12": 6, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 708, "naics_s17": 0, "naics_s18": 43, "naics_s19": 28, "naics_s20": 0, "race1": 392, "race2": 620, "race3": 8, "race4": 44, "race5": 0, "race6": 13, "ethnicity1": 834, "ethnicity2": 243, "edu1": 210, "edu2": 245, "edu3": 274, "edu4": 111, "Shape_Length": 24043.256136545795, "Shape_Area": 25817546.404146671, "total_2021": 615, "total_2022": 1077 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.493434030379689, 29.647962169632009 ], [ -95.493411030186849, 29.647036169270194 ], [ -95.493351030021898, 29.644471168884657 ], [ -95.49333902939641, 29.642712168631036 ], [ -95.493288029799373, 29.640857168211674 ], [ -95.493296029631637, 29.639952168316395 ], [ -95.493186029914781, 29.637593167630868 ], [ -95.493160029387923, 29.636545167470743 ], [ -95.49316802922155, 29.636264167532143 ], [ -95.493173029320772, 29.636106167586355 ], [ -95.492832029363512, 29.636256167945469 ], [ -95.492561029075631, 29.636346167536303 ], [ -95.489752029059431, 29.637436167424113 ], [ -95.48870302796314, 29.637847167990937 ], [ -95.48726302796932, 29.638396168006047 ], [ -95.486230027458419, 29.638814168086913 ], [ -95.485507027161887, 29.639107168634862 ], [ -95.482749027333099, 29.640125168491213 ], [ -95.482348026334762, 29.640273168722587 ], [ -95.48239802643684, 29.640447168745212 ], [ -95.48246502657409, 29.640679168762905 ], [ -95.482483026841621, 29.640776168676254 ], [ -95.482468027194003, 29.642433169551449 ], [ -95.482461027327105, 29.643045169459381 ], [ -95.482454026588385, 29.643411169763354 ], [ -95.482391026954559, 29.643650169718413 ], [ -95.482307026869037, 29.643966169473398 ], [ -95.482194026813275, 29.644401169264341 ], [ -95.482104026536732, 29.64464616982082 ], [ -95.482154027252179, 29.646381170206432 ], [ -95.48215502706293, 29.647475170132111 ], [ -95.482200027007579, 29.649274170446407 ], [ -95.48220902748082, 29.649666170512866 ], [ -95.482157027141454, 29.650307170932059 ], [ -95.482281026722433, 29.650476171072384 ], [ -95.482160027274247, 29.651000170583025 ], [ -95.481967026719332, 29.65154917068044 ], [ -95.481674026672536, 29.652157171526543 ], [ -95.481257027357742, 29.652722171315656 ], [ -95.481209026566987, 29.65278617129486 ], [ -95.480692027309388, 29.653314171501432 ], [ -95.480397026814657, 29.653583171424838 ], [ -95.479945027212793, 29.653950171532365 ], [ -95.479407026193371, 29.654508171702329 ], [ -95.478724026032083, 29.655132172149596 ], [ -95.478565026187425, 29.655277172031763 ], [ -95.478017026718049, 29.655804171617564 ], [ -95.477721026699342, 29.656164172509047 ], [ -95.477307025891974, 29.656690171962449 ], [ -95.477024025900903, 29.657383172016853 ], [ -95.476857026391968, 29.657934172533874 ], [ -95.476783026289439, 29.658328172838534 ], [ -95.476755025865174, 29.658721172276461 ], [ -95.476713026475707, 29.659301173096519 ], [ -95.477291026719598, 29.658986172890053 ], [ -95.477893026920412, 29.65870417221959 ], [ -95.478622027002856, 29.658382172914081 ], [ -95.478869026535833, 29.658285172556255 ], [ -95.479220026913893, 29.658165172232049 ], [ -95.479440027223021, 29.658091172818558 ], [ -95.479728027033644, 29.657996172648392 ], [ -95.480631027479902, 29.657758172030544 ], [ -95.480996026855181, 29.657663172524305 ], [ -95.481355027211919, 29.657568172314299 ], [ -95.481513027087715, 29.657547172671627 ], [ -95.482186027578081, 29.657456171816648 ], [ -95.483006027812422, 29.657325172179348 ], [ -95.485952028243275, 29.657254171609914 ], [ -95.48704302841297, 29.657270172429349 ], [ -95.48952102917147, 29.657230171819709 ], [ -95.49206202993139, 29.657195172221531 ], [ -95.492205030529249, 29.656999172204852 ], [ -95.492176030271239, 29.65541717133944 ], [ -95.492143029562797, 29.652950170734076 ], [ -95.492135029661412, 29.652477170402822 ], [ -95.49219702969539, 29.651916170515314 ], [ -95.492413030056923, 29.651197170885204 ], [ -95.492693029463638, 29.650602170519473 ], [ -95.492945030372951, 29.650082170357638 ], [ -95.493071029640888, 29.649701170697462 ], [ -95.493257030196148, 29.649179169867878 ], [ -95.493375030080244, 29.648660170473157 ], [ -95.493434030379689, 29.647962169632009 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 593, "Tract": "48201422200", "Area_SqMi": 0.68507463432994498, "total_2009": 819, "total_2010": 587, "total_2011": 705, "total_2012": 647, "total_2013": 664, "total_2014": 840, "total_2015": 714, "total_2016": 701, "total_2017": 725, "total_2018": 677, "total_2019": 684, "total_2020": 702, "age1": 116, "age2": 401, "age3": 186, "earn1": 78, "earn2": 117, "earn3": 508, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 422, "naics_s06": 0, "naics_s07": 57, "naics_s08": 7, "naics_s09": 37, "naics_s10": 4, "naics_s11": 39, "naics_s12": 25, "naics_s13": 0, "naics_s14": 0, "naics_s15": 41, "naics_s16": 19, "naics_s17": 0, "naics_s18": 0, "naics_s19": 25, "naics_s20": 0, "race1": 409, "race2": 140, "race3": 3, "race4": 139, "race5": 0, "race6": 12, "ethnicity1": 479, "ethnicity2": 224, "edu1": 146, "edu2": 141, "edu3": 158, "edu4": 142, "Shape_Length": 17752.990359471205, "Shape_Area": 19098708.288163904, "total_2021": 649, "total_2022": 703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508312033661667, 29.643787168757072 ], [ -95.508308033476041, 29.643180167967852 ], [ -95.508311033486038, 29.642720168561052 ], [ -95.508291033282589, 29.641799168126621 ], [ -95.508286033367298, 29.641597168150632 ], [ -95.508285033879176, 29.641530168159942 ], [ -95.508278033472322, 29.641235167956076 ], [ -95.508287033881317, 29.640858167604438 ], [ -95.508281033459681, 29.640391167667534 ], [ -95.50827003333589, 29.638520167632585 ], [ -95.50820403355263, 29.636550167406426 ], [ -95.508190033096511, 29.635495166416568 ], [ -95.508202032766604, 29.634493166431046 ], [ -95.508204033093804, 29.634308166253451 ], [ -95.50812103254826, 29.632659166192933 ], [ -95.507905032677812, 29.631946166264989 ], [ -95.507811032688522, 29.631636165699032 ], [ -95.50758803262238, 29.631014165860435 ], [ -95.507586032458136, 29.630980166254012 ], [ -95.5075640329202, 29.630769165672284 ], [ -95.507549033292463, 29.63062416554569 ], [ -95.507315032532617, 29.630719166007246 ], [ -95.506938033037144, 29.630872165946524 ], [ -95.505975032934117, 29.631245165683051 ], [ -95.504623031681547, 29.631771166436263 ], [ -95.504093031875726, 29.631977166448809 ], [ -95.503553031892864, 29.632187166423801 ], [ -95.502890031640803, 29.63246416664294 ], [ -95.501954031135838, 29.632836166476448 ], [ -95.500592031359005, 29.633338166573754 ], [ -95.500431031349848, 29.633399166914035 ], [ -95.499784031441095, 29.633646166912385 ], [ -95.499184030898149, 29.633907166942588 ], [ -95.498567030906585, 29.634137167047591 ], [ -95.497264030858503, 29.634616166645323 ], [ -95.496795030193951, 29.634776167122276 ], [ -95.496142030096891, 29.634976167014521 ], [ -95.495101029505619, 29.635368166797186 ], [ -95.493392029191853, 29.636022167340077 ], [ -95.493173029320772, 29.636106167586355 ], [ -95.49316802922155, 29.636264167532143 ], [ -95.493160029387923, 29.636545167470743 ], [ -95.493186029914781, 29.637593167630868 ], [ -95.493296029631637, 29.639952168316395 ], [ -95.493288029799373, 29.640857168211674 ], [ -95.49333902939641, 29.642712168631036 ], [ -95.493351030021898, 29.644471168884657 ], [ -95.493372029355839, 29.644468168882241 ], [ -95.495579030582405, 29.644422168901396 ], [ -95.497388031176939, 29.644385169117864 ], [ -95.498069031076085, 29.644406169050718 ], [ -95.498274031017786, 29.644412169019763 ], [ -95.49897603132473, 29.644401169130248 ], [ -95.50034103202897, 29.644377169109507 ], [ -95.500376031379076, 29.644377168955369 ], [ -95.501405031582735, 29.644344169045439 ], [ -95.501773032307426, 29.644341168742717 ], [ -95.503163032404643, 29.64433116904878 ], [ -95.504239032504373, 29.644335168602336 ], [ -95.505054033274206, 29.644302168435594 ], [ -95.505461032368729, 29.644293168973299 ], [ -95.505828032700435, 29.64428516857696 ], [ -95.506414033324575, 29.644274168561534 ], [ -95.506996033085059, 29.644279168666841 ], [ -95.507201033092031, 29.644272168367518 ], [ -95.507483033645215, 29.644263168331452 ], [ -95.507923033266565, 29.644261168738105 ], [ -95.508300034014738, 29.644238168417651 ], [ -95.508312033661667, 29.643787168757072 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 594, "Tract": "48201342100", "Area_SqMi": 1.788233175040308, "total_2009": 3665, "total_2010": 3804, "total_2011": 4347, "total_2012": 4165, "total_2013": 4170, "total_2014": 4626, "total_2015": 4115, "total_2016": 4075, "total_2017": 4199, "total_2018": 4362, "total_2019": 4647, "total_2020": 4467, "age1": 1728, "age2": 2392, "age3": 1142, "earn1": 1608, "earn2": 1586, "earn3": 2068, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 231, "naics_s05": 88, "naics_s06": 0, "naics_s07": 1380, "naics_s08": 1684, "naics_s09": 71, "naics_s10": 223, "naics_s11": 13, "naics_s12": 196, "naics_s13": 0, "naics_s14": 166, "naics_s15": 186, "naics_s16": 194, "naics_s17": 58, "naics_s18": 634, "naics_s19": 136, "naics_s20": 0, "race1": 3789, "race2": 1164, "race3": 45, "race4": 186, "race5": 5, "race6": 73, "ethnicity1": 3118, "ethnicity2": 2144, "edu1": 798, "edu2": 1070, "edu3": 1127, "edu4": 539, "Shape_Length": 29993.266924333875, "Shape_Area": 49852880.3284567, "total_2021": 4460, "total_2022": 5262 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.156131943809058, 29.649856181884044 ], [ -95.156146944023163, 29.649673182014258 ], [ -95.155508943760722, 29.64968118148278 ], [ -95.152107942182724, 29.649590181271371 ], [ -95.151842942325047, 29.649594181578081 ], [ -95.150435942584622, 29.649617181785487 ], [ -95.149565941523306, 29.649631181522917 ], [ -95.148488941451902, 29.649655181385128 ], [ -95.144126940710933, 29.649712181996229 ], [ -95.143575940471649, 29.649732182108355 ], [ -95.138289938906752, 29.649822182022945 ], [ -95.133127937552871, 29.649924182822573 ], [ -95.129205937066104, 29.650130182775968 ], [ -95.127500935789456, 29.65021918249867 ], [ -95.126589936237977, 29.650247182904746 ], [ -95.123735935325556, 29.650280183077154 ], [ -95.122185934413665, 29.650281183053821 ], [ -95.122332934816626, 29.650437183271801 ], [ -95.12238193505074, 29.650489183307275 ], [ -95.122623935330324, 29.650832183003939 ], [ -95.123590935434592, 29.652226182968345 ], [ -95.124230936060471, 29.653459183623646 ], [ -95.124690935435112, 29.653981183427319 ], [ -95.125247935547705, 29.654613183287079 ], [ -95.125537936092329, 29.654940183864955 ], [ -95.126417936593683, 29.655936183763465 ], [ -95.127280936631024, 29.656917184363845 ], [ -95.128377936732505, 29.658167184644441 ], [ -95.1292519371369, 29.6591321845127 ], [ -95.130178937462063, 29.660154184216804 ], [ -95.131404938061252, 29.66149918467584 ], [ -95.131721938310335, 29.661869184690694 ], [ -95.131867938222797, 29.66204018487511 ], [ -95.132160938352428, 29.662511184811656 ], [ -95.132317938148631, 29.662822185478429 ], [ -95.132678938312395, 29.663509185062075 ], [ -95.13300293795055, 29.663504185323433 ], [ -95.13343793827201, 29.663497184989417 ], [ -95.134307938439719, 29.663480184755656 ], [ -95.134875938960946, 29.663471185216689 ], [ -95.135077938634765, 29.66346818523543 ], [ -95.135494938634636, 29.6634611848039 ], [ -95.135749938524512, 29.663493185087578 ], [ -95.135851939351255, 29.663512184978877 ], [ -95.135928938544282, 29.663531185277265 ], [ -95.136145939512971, 29.663577185438648 ], [ -95.13678293975147, 29.663720185307138 ], [ -95.137403939787731, 29.663985185262998 ], [ -95.13771293938342, 29.664159184792645 ], [ -95.137981939577386, 29.664310184881082 ], [ -95.13836193983451, 29.664522184962351 ], [ -95.139023940003028, 29.664895185468051 ], [ -95.139137939947204, 29.664961185527968 ], [ -95.139786940454059, 29.665318185094826 ], [ -95.140150939742867, 29.665434185302257 ], [ -95.140899939977146, 29.66567418522315 ], [ -95.14135694082951, 29.66576218516013 ], [ -95.141555940265988, 29.665799185150352 ], [ -95.141636940456834, 29.665816184975121 ], [ -95.142165941128482, 29.665866185398375 ], [ -95.142200940639441, 29.665870185756738 ], [ -95.142649940715629, 29.66586718501749 ], [ -95.142835941320399, 29.665864185217266 ], [ -95.143064941054661, 29.66586318509983 ], [ -95.143217941366743, 29.665863185254693 ], [ -95.143404941466244, 29.665860185476671 ], [ -95.143503941314876, 29.665860184963691 ], [ -95.143605941352916, 29.665859185709259 ], [ -95.143738941542409, 29.665855184979549 ], [ -95.143785941097249, 29.665853185219333 ], [ -95.143991941476784, 29.665847185082498 ], [ -95.144278941509796, 29.665839185462648 ], [ -95.145184941641247, 29.665813185573452 ], [ -95.145413941133569, 29.665810185467592 ], [ -95.147141942272143, 29.665785185079574 ], [ -95.147553941892724, 29.665779185523764 ], [ -95.148836942185113, 29.665758184765952 ], [ -95.149580942673012, 29.66574418526001 ], [ -95.150507943162125, 29.665737184783396 ], [ -95.15063394329718, 29.665736185169187 ], [ -95.151316943590331, 29.66572918481484 ], [ -95.151930943193236, 29.665728184944072 ], [ -95.152566943042189, 29.66571618454795 ], [ -95.153061943241653, 29.665705184523901 ], [ -95.153348943729469, 29.665701184520156 ], [ -95.154530943797909, 29.665679184954936 ], [ -95.155374944611467, 29.665663184562646 ], [ -95.155656944149314, 29.665656185127922 ], [ -95.155651943737752, 29.665526184780905 ], [ -95.155652944019096, 29.665475185106853 ], [ -95.155628944329536, 29.664955184395303 ], [ -95.155643944593251, 29.66443418491523 ], [ -95.155663943983086, 29.66401518446909 ], [ -95.155738943579266, 29.66330518465643 ], [ -95.155905943658524, 29.662310184046223 ], [ -95.156081943614197, 29.661077184176165 ], [ -95.156138944140039, 29.660379183416961 ], [ -95.156145943899489, 29.659721183508797 ], [ -95.156146944517559, 29.659697183924745 ], [ -95.156116944298461, 29.658286182952786 ], [ -95.156117944156179, 29.658036183269452 ], [ -95.156109943667786, 29.657850183305566 ], [ -95.156036943884871, 29.654962182937862 ], [ -95.156035943418786, 29.654550182266618 ], [ -95.156027944130599, 29.652513182614339 ], [ -95.156020943918122, 29.651789182274371 ], [ -95.156035943882856, 29.651153182236367 ], [ -95.156079943823016, 29.650531181519941 ], [ -95.156123943320523, 29.650006181601782 ], [ -95.156131943809058, 29.649856181884044 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 595, "Tract": "48201342200", "Area_SqMi": 1.1113421228044436, "total_2009": 1128, "total_2010": 1215, "total_2011": 5563, "total_2012": 5661, "total_2013": 5557, "total_2014": 4721, "total_2015": 3719, "total_2016": 4475, "total_2017": 4561, "total_2018": 4690, "total_2019": 4339, "total_2020": 3326, "age1": 796, "age2": 1876, "age3": 720, "earn1": 571, "earn2": 821, "earn3": 2000, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2115, "naics_s05": 218, "naics_s06": 12, "naics_s07": 201, "naics_s08": 31, "naics_s09": 107, "naics_s10": 58, "naics_s11": 61, "naics_s12": 30, "naics_s13": 0, "naics_s14": 65, "naics_s15": 1, "naics_s16": 156, "naics_s17": 22, "naics_s18": 257, "naics_s19": 58, "naics_s20": 0, "race1": 2847, "race2": 347, "race3": 42, "race4": 101, "race5": 11, "race6": 44, "ethnicity1": 1686, "ethnicity2": 1706, "edu1": 764, "edu2": 747, "edu3": 762, "edu4": 323, "Shape_Length": 23878.020601794571, "Shape_Area": 30982316.302735031, "total_2021": 3378, "total_2022": 3392 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.156062944718911, 29.678203187523039 ], [ -95.156087945149608, 29.677581187726343 ], [ -95.156062944400361, 29.677067186776995 ], [ -95.156037944235209, 29.67628718724551 ], [ -95.156024944265852, 29.676101187252321 ], [ -95.156030944643817, 29.675887187272732 ], [ -95.156018944908055, 29.67443418631013 ], [ -95.155992945074573, 29.673032186641688 ], [ -95.155954944328855, 29.670683185467666 ], [ -95.155903943938441, 29.669688185923082 ], [ -95.155855944860775, 29.668904185136441 ], [ -95.155764944663588, 29.667797185133775 ], [ -95.155698944133292, 29.666308185227297 ], [ -95.155659944278057, 29.665824184921355 ], [ -95.155656944149314, 29.665656185127922 ], [ -95.155374944611467, 29.665663184562646 ], [ -95.154530943797909, 29.665679184954936 ], [ -95.153348943729469, 29.665701184520156 ], [ -95.153061943241653, 29.665705184523901 ], [ -95.152566943042189, 29.66571618454795 ], [ -95.151930943193236, 29.665728184944072 ], [ -95.151316943590331, 29.66572918481484 ], [ -95.15063394329718, 29.665736185169187 ], [ -95.150507943162125, 29.665737184783396 ], [ -95.149580942673012, 29.66574418526001 ], [ -95.148836942185113, 29.665758184765952 ], [ -95.147553941892724, 29.665779185523764 ], [ -95.147141942272143, 29.665785185079574 ], [ -95.145413941133569, 29.665810185467592 ], [ -95.145184941641247, 29.665813185573452 ], [ -95.144278941509796, 29.665839185462648 ], [ -95.143991941476784, 29.665847185082498 ], [ -95.143785941097249, 29.665853185219333 ], [ -95.143738941542409, 29.665855184979549 ], [ -95.143605941352916, 29.665859185709259 ], [ -95.143503941314876, 29.665860184963691 ], [ -95.143404941466244, 29.665860185476671 ], [ -95.143217941366743, 29.665863185254693 ], [ -95.143064941054661, 29.66586318509983 ], [ -95.142835941320399, 29.665864185217266 ], [ -95.142649940715629, 29.66586718501749 ], [ -95.142200940639441, 29.665870185756738 ], [ -95.142165941128482, 29.665866185398375 ], [ -95.141636940456834, 29.665816184975121 ], [ -95.141555940265988, 29.665799185150352 ], [ -95.14135694082951, 29.66576218516013 ], [ -95.140899939977146, 29.66567418522315 ], [ -95.140150939742867, 29.665434185302257 ], [ -95.139786940454059, 29.665318185094826 ], [ -95.139137939947204, 29.664961185527968 ], [ -95.139023940003028, 29.664895185468051 ], [ -95.13836193983451, 29.664522184962351 ], [ -95.137981939577386, 29.664310184881082 ], [ -95.13771293938342, 29.664159184792645 ], [ -95.137403939787731, 29.663985185262998 ], [ -95.13678293975147, 29.663720185307138 ], [ -95.136145939512971, 29.663577185438648 ], [ -95.135928938544282, 29.663531185277265 ], [ -95.135851939351255, 29.663512184978877 ], [ -95.135749938524512, 29.663493185087578 ], [ -95.135494938634636, 29.6634611848039 ], [ -95.135077938634765, 29.66346818523543 ], [ -95.134875938960946, 29.663471185216689 ], [ -95.134307938439719, 29.663480184755656 ], [ -95.13343793827201, 29.663497184989417 ], [ -95.13300293795055, 29.663504185323433 ], [ -95.132678938312395, 29.663509185062075 ], [ -95.132808938571287, 29.663843185137669 ], [ -95.133090938325367, 29.664485185580471 ], [ -95.133166938221663, 29.664659185705528 ], [ -95.133190938430303, 29.664714185610237 ], [ -95.133195938540737, 29.66472618583704 ], [ -95.133213938665236, 29.66476518543486 ], [ -95.133230938228564, 29.664804185014706 ], [ -95.133451938958189, 29.665320185284752 ], [ -95.134053938214521, 29.666723186076577 ], [ -95.134248938977137, 29.667180185714184 ], [ -95.134366939063753, 29.667456185908939 ], [ -95.135126939401204, 29.669225186333648 ], [ -95.135278938929815, 29.669581186234023 ], [ -95.13533193910564, 29.669705186507869 ], [ -95.135463939153453, 29.67001218633758 ], [ -95.135711939318682, 29.670547186509946 ], [ -95.136051939517131, 29.671396186847293 ], [ -95.136402939300865, 29.672261186828258 ], [ -95.136549939477703, 29.672592186987316 ], [ -95.136687940064292, 29.672822187165345 ], [ -95.136945939328868, 29.673226186625325 ], [ -95.137182940088721, 29.673487186917122 ], [ -95.137610940306857, 29.673825187596069 ], [ -95.138598940488066, 29.674419186971544 ], [ -95.140187941001614, 29.675373187496458 ], [ -95.141487941219765, 29.676137187185308 ], [ -95.142276941489555, 29.676598187798401 ], [ -95.14311894156873, 29.677047187302026 ], [ -95.143558941535005, 29.677313187446693 ], [ -95.144108941547231, 29.677645187841289 ], [ -95.14419694166736, 29.677698187440818 ], [ -95.144259941967093, 29.677736187402921 ], [ -95.1446059420023, 29.67794518753546 ], [ -95.144670942425549, 29.677984187354621 ], [ -95.144831941892647, 29.678080187394052 ], [ -95.145597942446912, 29.678536188138885 ], [ -95.145885942220062, 29.678700187842896 ], [ -95.146027942008701, 29.678784188124343 ], [ -95.146369942235594, 29.678981188219222 ], [ -95.14658194198816, 29.679104188066749 ], [ -95.147571943044099, 29.679674188333461 ], [ -95.148943942730398, 29.680466187730119 ], [ -95.149552943653134, 29.680817187912506 ], [ -95.149757943557773, 29.680934188257421 ], [ -95.150044943415978, 29.681104188202429 ], [ -95.151003943979163, 29.681676187897974 ], [ -95.15477894473743, 29.681552187886549 ], [ -95.154956944610461, 29.681546188216402 ], [ -95.155269944972829, 29.68152918804331 ], [ -95.155327945210786, 29.681361188422553 ], [ -95.155472944493923, 29.680913187617225 ], [ -95.155643945055317, 29.680361187579798 ], [ -95.155757945068444, 29.679993188011125 ], [ -95.155903945372984, 29.679434187584292 ], [ -95.156011945096552, 29.678901187991098 ], [ -95.156062944718911, 29.678203187523039 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 596, "Tract": "48201342300", "Area_SqMi": 1.0799257205771113, "total_2009": 545, "total_2010": 387, "total_2011": 644, "total_2012": 698, "total_2013": 737, "total_2014": 907, "total_2015": 987, "total_2016": 1000, "total_2017": 934, "total_2018": 955, "total_2019": 1042, "total_2020": 1031, "age1": 361, "age2": 650, "age3": 227, "earn1": 283, "earn2": 470, "earn3": 485, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 123, "naics_s05": 11, "naics_s06": 20, "naics_s07": 36, "naics_s08": 17, "naics_s09": 0, "naics_s10": 41, "naics_s11": 48, "naics_s12": 50, "naics_s13": 19, "naics_s14": 443, "naics_s15": 3, "naics_s16": 189, "naics_s17": 0, "naics_s18": 142, "naics_s19": 96, "naics_s20": 0, "race1": 959, "race2": 211, "race3": 9, "race4": 43, "race5": 1, "race6": 15, "ethnicity1": 696, "ethnicity2": 542, "edu1": 236, "edu2": 247, "edu3": 251, "edu4": 143, "Shape_Length": 23820.090269899509, "Shape_Area": 30106480.778346799, "total_2021": 1151, "total_2022": 1238 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.144272941604299, 29.678079187656692 ], [ -95.144269942171633, 29.677973187953281 ], [ -95.144266941336994, 29.677849187527233 ], [ -95.144199941725063, 29.677812188177892 ], [ -95.144109941259316, 29.677757187367995 ], [ -95.144108941950449, 29.677719187441848 ], [ -95.144108941547231, 29.677645187841289 ], [ -95.143558941535005, 29.677313187446693 ], [ -95.14311894156873, 29.677047187302026 ], [ -95.142276941489555, 29.676598187798401 ], [ -95.141487941219765, 29.676137187185308 ], [ -95.140187941001614, 29.675373187496458 ], [ -95.138598940488066, 29.674419186971544 ], [ -95.137610940306857, 29.673825187596069 ], [ -95.137182940088721, 29.673487186917122 ], [ -95.136945939328868, 29.673226186625325 ], [ -95.136687940064292, 29.672822187165345 ], [ -95.136549939477703, 29.672592186987316 ], [ -95.136402939300865, 29.672261186828258 ], [ -95.136051939517131, 29.671396186847293 ], [ -95.135711939318682, 29.670547186509946 ], [ -95.135463939153453, 29.67001218633758 ], [ -95.13533193910564, 29.669705186507869 ], [ -95.135278938929815, 29.669581186234023 ], [ -95.135126939401204, 29.669225186333648 ], [ -95.134366939063753, 29.667456185908939 ], [ -95.134248938977137, 29.667180185714184 ], [ -95.134053938214521, 29.666723186076577 ], [ -95.133451938958189, 29.665320185284752 ], [ -95.133230938228564, 29.664804185014706 ], [ -95.133213938665236, 29.66476518543486 ], [ -95.133195938540737, 29.66472618583704 ], [ -95.133190938430303, 29.664714185610237 ], [ -95.133166938221663, 29.664659185705528 ], [ -95.133090938325367, 29.664485185580471 ], [ -95.132808938571287, 29.663843185137669 ], [ -95.132678938312395, 29.663509185062075 ], [ -95.131454937992217, 29.663531185647479 ], [ -95.130552937830075, 29.663545184990433 ], [ -95.128558937470643, 29.663580185281706 ], [ -95.12767593675396, 29.663596185344712 ], [ -95.127408936970653, 29.663600185219707 ], [ -95.126805937112991, 29.663610185156912 ], [ -95.126093936637488, 29.663621185091696 ], [ -95.125545936727775, 29.663632185175185 ], [ -95.125378936075606, 29.663635185422962 ], [ -95.124958935901319, 29.663716185150957 ], [ -95.124490936472412, 29.663721185193591 ], [ -95.124181935629892, 29.663724185599122 ], [ -95.123922935973098, 29.663726185798538 ], [ -95.123621936024037, 29.663731185980879 ], [ -95.123274936254774, 29.663734185248334 ], [ -95.12295493518603, 29.66373718562334 ], [ -95.12298593590225, 29.664469186145446 ], [ -95.123002935274556, 29.665058186133464 ], [ -95.122976935489746, 29.665148185710812 ], [ -95.12297293538515, 29.665262185645069 ], [ -95.122969936287831, 29.6653361857094 ], [ -95.122982936120309, 29.665561186397277 ], [ -95.12301993618108, 29.665901185721008 ], [ -95.122988935400258, 29.66670218646879 ], [ -95.123023935558123, 29.667536186599289 ], [ -95.123058935852512, 29.668391186297796 ], [ -95.123044935690004, 29.669180186678414 ], [ -95.12308393585343, 29.67001918685558 ], [ -95.12308693577468, 29.670833187083989 ], [ -95.123122936363842, 29.671662186915313 ], [ -95.123154935871213, 29.672487187051033 ], [ -95.123145936586027, 29.673308187634863 ], [ -95.123162936674674, 29.674109187687229 ], [ -95.123187936692901, 29.674296187475971 ], [ -95.123209936329417, 29.674920187610031 ], [ -95.123235936730424, 29.675727187607578 ], [ -95.123226935849999, 29.676451188108391 ], [ -95.123263936437837, 29.677229188676058 ], [ -95.123247935932056, 29.677987188605083 ], [ -95.123261936897535, 29.678681188431103 ], [ -95.123284936898557, 29.679209188852621 ], [ -95.124004936771613, 29.679172188574949 ], [ -95.124333936558813, 29.679201189000143 ], [ -95.124564936556013, 29.679220188542601 ], [ -95.125651936744219, 29.679500188383756 ], [ -95.125911937381431, 29.679634188844553 ], [ -95.126249937662678, 29.679881189169645 ], [ -95.126896937871294, 29.680486189319417 ], [ -95.127270937403011, 29.680906188732166 ], [ -95.127361937591132, 29.68100918918504 ], [ -95.12796993821388, 29.681416189267495 ], [ -95.128132937730641, 29.681454189307704 ], [ -95.128642938472311, 29.6817391886884 ], [ -95.129272938364934, 29.681916188936693 ], [ -95.129541938363332, 29.681914189026696 ], [ -95.130022938608519, 29.681911188645635 ], [ -95.130929938205043, 29.681908189131999 ], [ -95.131264938170986, 29.681905188932433 ], [ -95.131701938712766, 29.681897189076292 ], [ -95.1319589384198, 29.681891188697353 ], [ -95.132103938987498, 29.68188918862095 ], [ -95.132786938707028, 29.681880188876264 ], [ -95.13340193900568, 29.681870188666956 ], [ -95.133654939274621, 29.681866189176407 ], [ -95.134273938978069, 29.681861188821781 ], [ -95.135311940117859, 29.681824188451913 ], [ -95.136115940110926, 29.681817188504631 ], [ -95.136928939861576, 29.681804189208158 ], [ -95.137368940478183, 29.681817188450378 ], [ -95.137978940275175, 29.681821188821356 ], [ -95.138433940157284, 29.681823188504396 ], [ -95.139051940780988, 29.681777188860842 ], [ -95.140336940546504, 29.681756188738809 ], [ -95.140629940876352, 29.681753188394563 ], [ -95.140875941388501, 29.681752189070277 ], [ -95.141200941399418, 29.681751188623146 ], [ -95.141799940926518, 29.681747188463856 ], [ -95.142184941817405, 29.68174418907757 ], [ -95.142625941664264, 29.68174118880329 ], [ -95.142617941439454, 29.678103188282773 ], [ -95.143507941767268, 29.678090187442425 ], [ -95.143611941438948, 29.678090187898732 ], [ -95.143849941937233, 29.67808518758714 ], [ -95.143948941740035, 29.678084187969635 ], [ -95.144113941490502, 29.678081187527297 ], [ -95.144272941604299, 29.678079187656692 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 597, "Tract": "48201342400", "Area_SqMi": 1.315376972841797, "total_2009": 1041, "total_2010": 1071, "total_2011": 978, "total_2012": 1339, "total_2013": 1528, "total_2014": 2067, "total_2015": 2143, "total_2016": 2087, "total_2017": 1996, "total_2018": 2710, "total_2019": 3231, "total_2020": 3088, "age1": 758, "age2": 1889, "age3": 633, "earn1": 347, "earn2": 774, "earn3": 2159, "naics_s01": 0, "naics_s02": 0, "naics_s03": 67, "naics_s04": 761, "naics_s05": 403, "naics_s06": 854, "naics_s07": 382, "naics_s08": 0, "naics_s09": 0, "naics_s10": 17, "naics_s11": 2, "naics_s12": 442, "naics_s13": 9, "naics_s14": 89, "naics_s15": 0, "naics_s16": 26, "naics_s17": 0, "naics_s18": 110, "naics_s19": 118, "naics_s20": 0, "race1": 2692, "race2": 418, "race3": 28, "race4": 98, "race5": 6, "race6": 38, "ethnicity1": 1810, "ethnicity2": 1470, "edu1": 637, "edu2": 730, "edu3": 764, "edu4": 391, "Shape_Length": 31587.593158900567, "Shape_Area": 36670458.712640554, "total_2021": 2932, "total_2022": 3280 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.155194944965331, 29.681726188305202 ], [ -95.155269944972829, 29.68152918804331 ], [ -95.154956944610461, 29.681546188216402 ], [ -95.15477894473743, 29.681552187886549 ], [ -95.151003943979163, 29.681676187897974 ], [ -95.150044943415978, 29.681104188202429 ], [ -95.149757943557773, 29.680934188257421 ], [ -95.149552943653134, 29.680817187912506 ], [ -95.148943942730398, 29.680466187730119 ], [ -95.147571943044099, 29.679674188333461 ], [ -95.14658194198816, 29.679104188066749 ], [ -95.146369942235594, 29.678981188219222 ], [ -95.146027942008701, 29.678784188124343 ], [ -95.145885942220062, 29.678700187842896 ], [ -95.145597942446912, 29.678536188138885 ], [ -95.144831941892647, 29.678080187394052 ], [ -95.144670942425549, 29.677984187354621 ], [ -95.1446059420023, 29.67794518753546 ], [ -95.144259941967093, 29.677736187402921 ], [ -95.14419694166736, 29.677698187440818 ], [ -95.144108941547231, 29.677645187841289 ], [ -95.144108941950449, 29.677719187441848 ], [ -95.144109941259316, 29.677757187367995 ], [ -95.144199941725063, 29.677812188177892 ], [ -95.144266941336994, 29.677849187527233 ], [ -95.144269942171633, 29.677973187953281 ], [ -95.144272941604299, 29.678079187656692 ], [ -95.144113941490502, 29.678081187527297 ], [ -95.143948941740035, 29.678084187969635 ], [ -95.143849941937233, 29.67808518758714 ], [ -95.143611941438948, 29.678090187898732 ], [ -95.143507941767268, 29.678090187442425 ], [ -95.142617941439454, 29.678103188282773 ], [ -95.142625941664264, 29.68174118880329 ], [ -95.142634941808282, 29.682404188652477 ], [ -95.14263694149372, 29.682540189210393 ], [ -95.142640941363638, 29.682824188662412 ], [ -95.142643941451738, 29.683079188511847 ], [ -95.142647941373284, 29.683372189158394 ], [ -95.14266694197471, 29.684842188826124 ], [ -95.142692942286004, 29.6868951898559 ], [ -95.142693942264899, 29.686993189478049 ], [ -95.142701941860366, 29.687586189979118 ], [ -95.142733942206718, 29.68858019019595 ], [ -95.142719941397146, 29.689039190354983 ], [ -95.142716941589256, 29.689131189731508 ], [ -95.142728941859673, 29.689483190555212 ], [ -95.1428179421587, 29.690609190592951 ], [ -95.14284194184026, 29.692688191044073 ], [ -95.142869942103502, 29.693473190753739 ], [ -95.142897942203035, 29.694248191546158 ], [ -95.142911942468217, 29.694651191002606 ], [ -95.143303942675018, 29.694658191465198 ], [ -95.143687942686967, 29.694653191375483 ], [ -95.143700942303383, 29.694900191179933 ], [ -95.143704942764074, 29.695265191413995 ], [ -95.143711941965009, 29.695802191819585 ], [ -95.143743942628944, 29.69866519215314 ], [ -95.143753942941274, 29.699330191857428 ], [ -95.143771942469982, 29.700392192807648 ], [ -95.143797942338864, 29.701202192847269 ], [ -95.144473942560964, 29.70119319279646 ], [ -95.144932943072661, 29.701187192762429 ], [ -95.145006942525697, 29.701187192615699 ], [ -95.145011942919936, 29.701817192954113 ], [ -95.14499194324209, 29.705330193846947 ], [ -95.144996943811009, 29.70780519376402 ], [ -95.144977943677006, 29.708635194509831 ], [ -95.144964943057985, 29.711093194686459 ], [ -95.144948943908346, 29.711355195076678 ], [ -95.1446889437171, 29.711343194230192 ], [ -95.144691943320652, 29.711487194465423 ], [ -95.144696943750475, 29.711720195075532 ], [ -95.144926943067645, 29.711728194388012 ], [ -95.146868943582831, 29.711797194797029 ], [ -95.149163944175811, 29.71196219451268 ], [ -95.149482944549845, 29.711973194622203 ], [ -95.152886945662672, 29.712071194270244 ], [ -95.153071945226429, 29.712076194269901 ], [ -95.153374945930125, 29.712085194472799 ], [ -95.153374945272247, 29.71191919470655 ], [ -95.153374945494861, 29.711586194066463 ], [ -95.15337894539266, 29.711450194125934 ], [ -95.153382945598594, 29.709793194269469 ], [ -95.153380944984818, 29.707975194063703 ], [ -95.153390945739289, 29.707479193999028 ], [ -95.153396945239351, 29.707111193908702 ], [ -95.153417945423811, 29.705817192906107 ], [ -95.153410945011913, 29.705687193219426 ], [ -95.153417945372311, 29.705578193350906 ], [ -95.153413945108824, 29.705492193297321 ], [ -95.153410945655821, 29.705422193148099 ], [ -95.153410945064465, 29.705258192647289 ], [ -95.15340394555669, 29.705115192700891 ], [ -95.153403945667705, 29.703980192952933 ], [ -95.153430945040327, 29.701907192626134 ], [ -95.153417945207948, 29.701686192759777 ], [ -95.153420945337217, 29.701484191932238 ], [ -95.153430945480835, 29.700708192575988 ], [ -95.153417944829698, 29.700402192026537 ], [ -95.153422944650472, 29.700124192276938 ], [ -95.153424944828046, 29.700036191576746 ], [ -95.153424945192356, 29.697827191968102 ], [ -95.153461944646452, 29.695513191518256 ], [ -95.153487944780366, 29.690087190195769 ], [ -95.153484944583269, 29.689677190069617 ], [ -95.153487945100693, 29.689276190154853 ], [ -95.153492944285645, 29.689150189787998 ], [ -95.15348094433881, 29.688961190120999 ], [ -95.153475944132282, 29.688720189844549 ], [ -95.153480944158545, 29.688478189538532 ], [ -95.153491945074293, 29.688316189780725 ], [ -95.15351994458625, 29.687940189736892 ], [ -95.15356894436394, 29.687561189223 ], [ -95.153665945072618, 29.68702118947872 ], [ -95.153822944634442, 29.68641018952486 ], [ -95.153952944347381, 29.685950189274696 ], [ -95.154496945206333, 29.683907188670556 ], [ -95.154547945137253, 29.683743188792278 ], [ -95.154596944518772, 29.68358818860667 ], [ -95.155194944965331, 29.681726188305202 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 598, "Tract": "48201342500", "Area_SqMi": 2.506893482440069, "total_2009": 5093, "total_2010": 5028, "total_2011": 5670, "total_2012": 6505, "total_2013": 6123, "total_2014": 6739, "total_2015": 8478, "total_2016": 8377, "total_2017": 10207, "total_2018": 10708, "total_2019": 12093, "total_2020": 11696, "age1": 2314, "age2": 7288, "age3": 2490, "earn1": 1092, "earn2": 2015, "earn3": 8985, "naics_s01": 4, "naics_s02": 67, "naics_s03": 16, "naics_s04": 3665, "naics_s05": 1525, "naics_s06": 1141, "naics_s07": 326, "naics_s08": 417, "naics_s09": 0, "naics_s10": 29, "naics_s11": 268, "naics_s12": 1287, "naics_s13": 17, "naics_s14": 536, "naics_s15": 1, "naics_s16": 379, "naics_s17": 49, "naics_s18": 165, "naics_s19": 2172, "naics_s20": 28, "race1": 9863, "race2": 1568, "race3": 126, "race4": 379, "race5": 13, "race6": 143, "ethnicity1": 7183, "ethnicity2": 4909, "edu1": 2322, "edu2": 2860, "edu3": 2955, "edu4": 1641, "Shape_Length": 36431.948985826908, "Shape_Area": 69887899.699353129, "total_2021": 11734, "total_2022": 12092 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.145011942919936, 29.701817192954113 ], [ -95.145006942525697, 29.701187192615699 ], [ -95.144932943072661, 29.701187192762429 ], [ -95.144473942560964, 29.70119319279646 ], [ -95.143797942338864, 29.701202192847269 ], [ -95.143771942469982, 29.700392192807648 ], [ -95.143753942941274, 29.699330191857428 ], [ -95.143743942628944, 29.69866519215314 ], [ -95.143711941965009, 29.695802191819585 ], [ -95.143704942764074, 29.695265191413995 ], [ -95.143700942303383, 29.694900191179933 ], [ -95.143687942686967, 29.694653191375483 ], [ -95.143303942675018, 29.694658191465198 ], [ -95.142911942468217, 29.694651191002606 ], [ -95.142897942203035, 29.694248191546158 ], [ -95.142869942103502, 29.693473190753739 ], [ -95.14284194184026, 29.692688191044073 ], [ -95.1428179421587, 29.690609190592951 ], [ -95.142728941859673, 29.689483190555212 ], [ -95.142716941589256, 29.689131189731508 ], [ -95.142719941397146, 29.689039190354983 ], [ -95.142733942206718, 29.68858019019595 ], [ -95.142701941860366, 29.687586189979118 ], [ -95.142693942264899, 29.686993189478049 ], [ -95.142692942286004, 29.6868951898559 ], [ -95.14266694197471, 29.684842188826124 ], [ -95.142647941373284, 29.683372189158394 ], [ -95.142643941451738, 29.683079188511847 ], [ -95.142640941363638, 29.682824188662412 ], [ -95.14263694149372, 29.682540189210393 ], [ -95.142634941808282, 29.682404188652477 ], [ -95.142625941664264, 29.68174118880329 ], [ -95.142184941817405, 29.68174418907757 ], [ -95.141799940926518, 29.681747188463856 ], [ -95.141200941399418, 29.681751188623146 ], [ -95.140875941388501, 29.681752189070277 ], [ -95.140629940876352, 29.681753188394563 ], [ -95.140336940546504, 29.681756188738809 ], [ -95.139051940780988, 29.681777188860842 ], [ -95.138433940157284, 29.681823188504396 ], [ -95.137978940275175, 29.681821188821356 ], [ -95.137368940478183, 29.681817188450378 ], [ -95.136928939861576, 29.681804189208158 ], [ -95.136115940110926, 29.681817188504631 ], [ -95.135311940117859, 29.681824188451913 ], [ -95.134273938978069, 29.681861188821781 ], [ -95.133654939274621, 29.681866189176407 ], [ -95.13340193900568, 29.681870188666956 ], [ -95.132786938707028, 29.681880188876264 ], [ -95.132103938987498, 29.68188918862095 ], [ -95.1319589384198, 29.681891188697353 ], [ -95.131701938712766, 29.681897189076292 ], [ -95.131264938170986, 29.681905188932433 ], [ -95.130929938205043, 29.681908189131999 ], [ -95.130022938608519, 29.681911188645635 ], [ -95.129541938363332, 29.681914189026696 ], [ -95.129272938364934, 29.681916188936693 ], [ -95.128642938472311, 29.6817391886884 ], [ -95.128132937730641, 29.681454189307704 ], [ -95.12796993821388, 29.681416189267495 ], [ -95.127361937591132, 29.68100918918504 ], [ -95.127270937403011, 29.680906188732166 ], [ -95.126896937871294, 29.680486189319417 ], [ -95.126249937662678, 29.679881189169645 ], [ -95.125911937381431, 29.679634188844553 ], [ -95.125651936744219, 29.679500188383756 ], [ -95.124564936556013, 29.679220188542601 ], [ -95.124333936558813, 29.679201189000143 ], [ -95.124004936771613, 29.679172188574949 ], [ -95.123284936898557, 29.679209188852621 ], [ -95.123320935971847, 29.679411189105721 ], [ -95.123320936070868, 29.679486188440315 ], [ -95.123322936964314, 29.679925189103436 ], [ -95.123324936849485, 29.680334188697987 ], [ -95.123325936682363, 29.680667188628732 ], [ -95.123327936104218, 29.680981189377615 ], [ -95.123328936451529, 29.681312188780876 ], [ -95.123328936536637, 29.681473189145915 ], [ -95.123329936230988, 29.681671189534992 ], [ -95.123353937076999, 29.682009189440901 ], [ -95.123331936168526, 29.682618189745078 ], [ -95.123407936235623, 29.684383190064693 ], [ -95.123428936497319, 29.685465190163853 ], [ -95.123434936849691, 29.68577719031806 ], [ -95.123464936434232, 29.687368190000374 ], [ -95.12346993681642, 29.688214190770836 ], [ -95.123494936624823, 29.689545190481962 ], [ -95.123545937337994, 29.690002191126393 ], [ -95.123595937105975, 29.691749191654097 ], [ -95.12359193759147, 29.692396191766647 ], [ -95.123590937563478, 29.69261019169598 ], [ -95.123632937067782, 29.69339019124326 ], [ -95.123641936921828, 29.69386119204713 ], [ -95.123648937608138, 29.694204191768961 ], [ -95.123658937526429, 29.694727192363825 ], [ -95.123671937225083, 29.695232192357999 ], [ -95.12368193741419, 29.695600191789797 ], [ -95.12369393770885, 29.696080191949623 ], [ -95.123698937769618, 29.696522192448747 ], [ -95.12370093749162, 29.696998192712616 ], [ -95.123702936993226, 29.69745119282771 ], [ -95.123719937374688, 29.697785192460586 ], [ -95.123761937349911, 29.698589192958778 ], [ -95.123759937856519, 29.69900619310204 ], [ -95.123758937227691, 29.699261192491132 ], [ -95.123757937166815, 29.699485192609554 ], [ -95.123755937256988, 29.699886193342518 ], [ -95.123763937145455, 29.701251193153333 ], [ -95.123810937899336, 29.701579193665296 ], [ -95.123806937188974, 29.702053193343861 ], [ -95.123821937843289, 29.702876194010045 ], [ -95.123828937650003, 29.70323019366047 ], [ -95.123854937423431, 29.703365193819938 ], [ -95.123868937635166, 29.70506119442944 ], [ -95.123920937530571, 29.705797193931534 ], [ -95.123922937634461, 29.706490194720164 ], [ -95.123955937388118, 29.707175194310157 ], [ -95.123942938356407, 29.707872194973813 ], [ -95.123955937437188, 29.708580194984901 ], [ -95.123969938035316, 29.709227195008978 ], [ -95.124002937841382, 29.709919194805668 ], [ -95.124004937745255, 29.710704194816628 ], [ -95.124004938245065, 29.710757195577745 ], [ -95.124004937827351, 29.710781194898583 ], [ -95.124004938362276, 29.710940195343039 ], [ -95.124004937737013, 29.71113519519464 ], [ -95.124004937690898, 29.711270195374954 ], [ -95.124011938242631, 29.711502195302121 ], [ -95.124196938376812, 29.711505195071307 ], [ -95.126142938240932, 29.71154019526799 ], [ -95.127299938797705, 29.711560194991833 ], [ -95.127448938886246, 29.711563195511818 ], [ -95.127601938709631, 29.711565194830623 ], [ -95.130435939858657, 29.711609194892443 ], [ -95.131103940286792, 29.711553195138784 ], [ -95.13192194032635, 29.711467195256475 ], [ -95.134062941119794, 29.711419195406044 ], [ -95.134208940557485, 29.71142119544124 ], [ -95.135083941185684, 29.711430195366088 ], [ -95.138658941386112, 29.711557194446286 ], [ -95.13962894178016, 29.71159119492064 ], [ -95.140007941751463, 29.71160219492651 ], [ -95.140203942121943, 29.711606194660675 ], [ -95.141075942709307, 29.711625194904776 ], [ -95.142503943124495, 29.711657194796732 ], [ -95.143737943386924, 29.711685194920541 ], [ -95.144696943750475, 29.711720195075532 ], [ -95.144691943320652, 29.711487194465423 ], [ -95.1446889437171, 29.711343194230192 ], [ -95.144948943908346, 29.711355195076678 ], [ -95.144964943057985, 29.711093194686459 ], [ -95.144977943677006, 29.708635194509831 ], [ -95.144996943811009, 29.70780519376402 ], [ -95.14499194324209, 29.705330193846947 ], [ -95.145011942919936, 29.701817192954113 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 599, "Tract": "48201342700", "Area_SqMi": 1.3498998026154689, "total_2009": 9098, "total_2010": 8876, "total_2011": 9573, "total_2012": 6217, "total_2013": 6634, "total_2014": 6495, "total_2015": 6240, "total_2016": 7268, "total_2017": 7331, "total_2018": 7817, "total_2019": 7815, "total_2020": 7345, "age1": 1234, "age2": 4133, "age3": 1665, "earn1": 1488, "earn2": 1480, "earn3": 4064, "naics_s01": 0, "naics_s02": 1286, "naics_s03": 8, "naics_s04": 271, "naics_s05": 899, "naics_s06": 77, "naics_s07": 65, "naics_s08": 0, "naics_s09": 14, "naics_s10": 330, "naics_s11": 38, "naics_s12": 286, "naics_s13": 1, "naics_s14": 111, "naics_s15": 2944, "naics_s16": 59, "naics_s17": 0, "naics_s18": 403, "naics_s19": 84, "naics_s20": 156, "race1": 6177, "race2": 565, "race3": 47, "race4": 166, "race5": 9, "race6": 68, "ethnicity1": 4705, "ethnicity2": 2327, "edu1": 908, "edu2": 1476, "edu3": 1903, "edu4": 1511, "Shape_Length": 29997.87815285545, "Shape_Area": 37632896.120316856, "total_2021": 7124, "total_2022": 7032 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.124011938242631, 29.711502195302121 ], [ -95.124004937690898, 29.711270195374954 ], [ -95.124004937737013, 29.71113519519464 ], [ -95.124004938362276, 29.710940195343039 ], [ -95.124004937827351, 29.710781194898583 ], [ -95.124004938245065, 29.710757195577745 ], [ -95.124004937745255, 29.710704194816628 ], [ -95.124002937841382, 29.709919194805668 ], [ -95.123969938035316, 29.709227195008978 ], [ -95.123955937437188, 29.708580194984901 ], [ -95.123942938356407, 29.707872194973813 ], [ -95.123955937388118, 29.707175194310157 ], [ -95.123922937634461, 29.706490194720164 ], [ -95.123920937530571, 29.705797193931534 ], [ -95.123868937635166, 29.70506119442944 ], [ -95.123854937423431, 29.703365193819938 ], [ -95.123828937650003, 29.70323019366047 ], [ -95.123821937843289, 29.702876194010045 ], [ -95.123806937188974, 29.702053193343861 ], [ -95.123810937899336, 29.701579193665296 ], [ -95.123763937145455, 29.701251193153333 ], [ -95.123755937256988, 29.699886193342518 ], [ -95.123757937166815, 29.699485192609554 ], [ -95.123758937227691, 29.699261192491132 ], [ -95.123759937856519, 29.69900619310204 ], [ -95.123761937349911, 29.698589192958778 ], [ -95.123719937374688, 29.697785192460586 ], [ -95.123702936993226, 29.69745119282771 ], [ -95.12370093749162, 29.696998192712616 ], [ -95.123698937769618, 29.696522192448747 ], [ -95.12369393770885, 29.696080191949623 ], [ -95.12368193741419, 29.695600191789797 ], [ -95.123671937225083, 29.695232192357999 ], [ -95.123658937526429, 29.694727192363825 ], [ -95.123648937608138, 29.694204191768961 ], [ -95.123641936921828, 29.69386119204713 ], [ -95.123632937067782, 29.69339019124326 ], [ -95.123590937563478, 29.69261019169598 ], [ -95.12359193759147, 29.692396191766647 ], [ -95.123595937105975, 29.691749191654097 ], [ -95.123545937337994, 29.690002191126393 ], [ -95.123494936624823, 29.689545190481962 ], [ -95.12346993681642, 29.688214190770836 ], [ -95.123464936434232, 29.687368190000374 ], [ -95.123434936849691, 29.68577719031806 ], [ -95.123428936497319, 29.685465190163853 ], [ -95.123407936235623, 29.684383190064693 ], [ -95.123331936168526, 29.682618189745078 ], [ -95.123353937076999, 29.682009189440901 ], [ -95.123329936230988, 29.681671189534992 ], [ -95.123328936536637, 29.681473189145915 ], [ -95.123328936451529, 29.681312188780876 ], [ -95.123327936104218, 29.680981189377615 ], [ -95.123325936682363, 29.680667188628732 ], [ -95.123324936849485, 29.680334188697987 ], [ -95.123322936964314, 29.679925189103436 ], [ -95.123320936070868, 29.679486188440315 ], [ -95.123320935971847, 29.679411189105721 ], [ -95.123284936898557, 29.679209188852621 ], [ -95.122635936110527, 29.679228188805283 ], [ -95.122276936172, 29.679236189138738 ], [ -95.121863936321105, 29.67924718858422 ], [ -95.120666936151679, 29.679280189309846 ], [ -95.120440936161827, 29.679245188589384 ], [ -95.119831936054069, 29.679264188518651 ], [ -95.1190059350387, 29.679309189318925 ], [ -95.118179935322615, 29.679286189162649 ], [ -95.11623193499041, 29.679351188668317 ], [ -95.11539793480425, 29.679367188987964 ], [ -95.114966933848933, 29.679365188752886 ], [ -95.11483993397033, 29.679365189235536 ], [ -95.114230934427667, 29.679363189280672 ], [ -95.113124934053559, 29.679374189227818 ], [ -95.113168934061008, 29.681545189947986 ], [ -95.113179934020877, 29.68240218937764 ], [ -95.113240933793165, 29.68454819001531 ], [ -95.113261933753591, 29.685333190570553 ], [ -95.113258934254233, 29.686034190463097 ], [ -95.113293934024284, 29.686776190271434 ], [ -95.11333493398547, 29.687472190343769 ], [ -95.113327934046183, 29.688198190861172 ], [ -95.113363934367499, 29.688949190749724 ], [ -95.113364934116021, 29.689734191150347 ], [ -95.113363934165406, 29.690501191245215 ], [ -95.113381933974011, 29.691195191388985 ], [ -95.113428934362972, 29.691927192054475 ], [ -95.113430934689987, 29.693116191840318 ], [ -95.113428934724965, 29.693989192487113 ], [ -95.113466934226906, 29.694877192141188 ], [ -95.113457934785558, 29.695648192882413 ], [ -95.113487935231447, 29.696381192319432 ], [ -95.113511934498092, 29.697095192462925 ], [ -95.113507934270672, 29.697853192980066 ], [ -95.11351493512943, 29.697943193159851 ], [ -95.113528934499385, 29.698539192905535 ], [ -95.113515934462384, 29.699292193417694 ], [ -95.113565934778549, 29.700051192955385 ], [ -95.113590935023623, 29.700809193200126 ], [ -95.113585934823774, 29.701553193977063 ], [ -95.11361393545603, 29.702266193417799 ], [ -95.113697934909368, 29.705208194816663 ], [ -95.113747935615564, 29.707780194699268 ], [ -95.113773935060152, 29.709110195537761 ], [ -95.113780935183868, 29.709456195130116 ], [ -95.113804934882921, 29.710049195358305 ], [ -95.113803935878011, 29.710156195507434 ], [ -95.11358093522405, 29.710239195882934 ], [ -95.113163935664943, 29.710422195461145 ], [ -95.112991934891525, 29.710524195477948 ], [ -95.113158935346377, 29.710572195366037 ], [ -95.113371934993509, 29.710633195255554 ], [ -95.11374193550121, 29.710740195764554 ], [ -95.11478593618159, 29.710953195978398 ], [ -95.115002935210839, 29.710997195965266 ], [ -95.116137936352601, 29.711188195800542 ], [ -95.116809936143099, 29.71124319555496 ], [ -95.117952936232086, 29.711326195677589 ], [ -95.119854937044053, 29.711361195451811 ], [ -95.120490937183888, 29.711383195577834 ], [ -95.123840938329664, 29.711496195354364 ], [ -95.124011938242631, 29.711502195302121 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 600, "Tract": "48201422800", "Area_SqMi": 0.88808478076974906, "total_2009": 2664, "total_2010": 2873, "total_2011": 2679, "total_2012": 2936, "total_2013": 3151, "total_2014": 2561, "total_2015": 3255, "total_2016": 2226, "total_2017": 2130, "total_2018": 2297, "total_2019": 1869, "total_2020": 2052, "age1": 445, "age2": 1202, "age3": 573, "earn1": 399, "earn2": 758, "earn3": 1063, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 17, "naics_s06": 7, "naics_s07": 85, "naics_s08": 0, "naics_s09": 52, "naics_s10": 44, "naics_s11": 62, "naics_s12": 3, "naics_s13": 148, "naics_s14": 278, "naics_s15": 640, "naics_s16": 608, "naics_s17": 0, "naics_s18": 260, "naics_s19": 10, "naics_s20": 0, "race1": 1443, "race2": 528, "race3": 27, "race4": 187, "race5": 1, "race6": 34, "ethnicity1": 1566, "ethnicity2": 654, "edu1": 372, "edu2": 384, "edu3": 505, "edu4": 514, "Shape_Length": 20888.070314722077, "Shape_Area": 24758283.715567488, "total_2021": 1856, "total_2022": 2220 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.52707404004272, 29.692198177438826 ], [ -95.527174041020729, 29.692107177378741 ], [ -95.527005040081903, 29.692059177525639 ], [ -95.526841039949502, 29.692012178214927 ], [ -95.526665040206339, 29.691962177561869 ], [ -95.52579304047859, 29.691713178029978 ], [ -95.526019040471084, 29.690903177886209 ], [ -95.526041039680507, 29.690718177978884 ], [ -95.52604404003911, 29.690648177928914 ], [ -95.526040039829866, 29.690582177318895 ], [ -95.524275040220559, 29.69063417724859 ], [ -95.523862039944603, 29.690647177170025 ], [ -95.523856040112747, 29.690263177834538 ], [ -95.523853039291112, 29.689991177384076 ], [ -95.523842039915863, 29.689131176866258 ], [ -95.523834039553009, 29.68849717684229 ], [ -95.523822039403953, 29.68753317667851 ], [ -95.523810039906763, 29.686527176961558 ], [ -95.523807039305154, 29.686288177071887 ], [ -95.523804038959568, 29.686036176328347 ], [ -95.523826039067544, 29.685851176498581 ], [ -95.523832039364024, 29.685808176650202 ], [ -95.523901039790161, 29.685651176755968 ], [ -95.523930039269146, 29.685612176961545 ], [ -95.524023039435676, 29.685493176918825 ], [ -95.524058039031843, 29.685411176331719 ], [ -95.524123039722781, 29.685261176335086 ], [ -95.524120039536783, 29.685148176216028 ], [ -95.524110039201531, 29.684697176317719 ], [ -95.524107039740784, 29.684454176732046 ], [ -95.524102039252114, 29.683839176097027 ], [ -95.524100039464159, 29.683596176230896 ], [ -95.524098039102896, 29.683344176021421 ], [ -95.524094039237738, 29.682853176429962 ], [ -95.524093039324015, 29.68277017625763 ], [ -95.524090039331853, 29.682329175918834 ], [ -95.524088039203846, 29.682080176038248 ], [ -95.524088039155885, 29.682048176217052 ], [ -95.524008039357227, 29.681614175336275 ], [ -95.52400503922874, 29.681594175977303 ], [ -95.523807039675205, 29.681104175561408 ], [ -95.523418038707263, 29.680586175260018 ], [ -95.523147039442577, 29.68036117543701 ], [ -95.522631038766605, 29.680030175823585 ], [ -95.522489039156881, 29.6798771759007 ], [ -95.521735038347131, 29.680250175426242 ], [ -95.520089038377478, 29.681080175915614 ], [ -95.519675038132561, 29.681284175639515 ], [ -95.519460037624583, 29.681394175767142 ], [ -95.518458037881871, 29.681887176190958 ], [ -95.517941037526029, 29.68214217574031 ], [ -95.51757703783899, 29.682321176147582 ], [ -95.517226038017881, 29.682494176225756 ], [ -95.516548036926835, 29.682830176558873 ], [ -95.516313037247812, 29.682947175952645 ], [ -95.515896037077837, 29.68315117650323 ], [ -95.515145036895845, 29.683542176191931 ], [ -95.513993037181493, 29.684141176543676 ], [ -95.513474036407487, 29.684388176514851 ], [ -95.513008036765427, 29.68460217643808 ], [ -95.512356036848573, 29.684939177133568 ], [ -95.512209036818874, 29.685014176652405 ], [ -95.511846036566254, 29.685194177219604 ], [ -95.511536036575649, 29.685358177113955 ], [ -95.511394036736547, 29.68543117667787 ], [ -95.510996036492131, 29.685630177392362 ], [ -95.510113035841471, 29.686089177403112 ], [ -95.509653035844934, 29.686325177318952 ], [ -95.508747035506431, 29.686789177197692 ], [ -95.50880503541255, 29.687909177661968 ], [ -95.5089620356664, 29.688879177424361 ], [ -95.508969035817174, 29.68892517759998 ], [ -95.509131035331379, 29.689564177789507 ], [ -95.509338035626726, 29.690212177615184 ], [ -95.509397035495624, 29.690376178326826 ], [ -95.509969036628263, 29.692016178248085 ], [ -95.510588035986885, 29.693341178479308 ], [ -95.511166036918226, 29.69423217903751 ], [ -95.511574036751469, 29.694759178752903 ], [ -95.512003036436653, 29.695263179335385 ], [ -95.512711037169353, 29.695964179276366 ], [ -95.513997037370572, 29.697004179571593 ], [ -95.51534103727127, 29.698201179413118 ], [ -95.515537038074882, 29.698367179111475 ], [ -95.516070037866484, 29.698803179593444 ], [ -95.516803038637008, 29.699434179579356 ], [ -95.517490038570813, 29.700028180011117 ], [ -95.517646038263507, 29.700178180182348 ], [ -95.517770038940711, 29.700296179713284 ], [ -95.517863038071965, 29.700385179760492 ], [ -95.51796903871697, 29.70029217960797 ], [ -95.519145038818451, 29.699267179316472 ], [ -95.519497039245564, 29.698961179264469 ], [ -95.521966039006301, 29.696775178523581 ], [ -95.523842039921718, 29.69511417844992 ], [ -95.524444040153199, 29.694582178723554 ], [ -95.52707404004272, 29.692198177438826 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 601, "Tract": "48201422900", "Area_SqMi": 0.62952290850719905, "total_2009": 1681, "total_2010": 3710, "total_2011": 3536, "total_2012": 4126, "total_2013": 4106, "total_2014": 4249, "total_2015": 3985, "total_2016": 3580, "total_2017": 3517, "total_2018": 3670, "total_2019": 3170, "total_2020": 3159, "age1": 343, "age2": 1558, "age3": 896, "earn1": 892, "earn2": 668, "earn3": 1237, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 3, "naics_s06": 55, "naics_s07": 304, "naics_s08": 12, "naics_s09": 0, "naics_s10": 2, "naics_s11": 31, "naics_s12": 240, "naics_s13": 0, "naics_s14": 188, "naics_s15": 5, "naics_s16": 1198, "naics_s17": 0, "naics_s18": 171, "naics_s19": 37, "naics_s20": 549, "race1": 1326, "race2": 1115, "race3": 21, "race4": 272, "race5": 6, "race6": 57, "ethnicity1": 2083, "ethnicity2": 714, "edu1": 500, "edu2": 659, "edu3": 654, "edu4": 641, "Shape_Length": 19893.673659665874, "Shape_Area": 17550021.249954712, "total_2021": 3103, "total_2022": 2797 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.54218504399843, 29.675876174069646 ], [ -95.541952043149095, 29.675896174117671 ], [ -95.541709043133565, 29.675918173904353 ], [ -95.541326043822707, 29.67595217430847 ], [ -95.541155043196213, 29.675959174307838 ], [ -95.539574043340991, 29.676019174535973 ], [ -95.539293042709943, 29.676029173683357 ], [ -95.538666042458701, 29.676121173819848 ], [ -95.538555042435547, 29.676136173810519 ], [ -95.538021042537594, 29.676170173773727 ], [ -95.537573042612493, 29.67620017374416 ], [ -95.537057042225229, 29.676262174242478 ], [ -95.536728042525354, 29.67627717465945 ], [ -95.536625041859111, 29.676283173879124 ], [ -95.536600042002846, 29.676284174509867 ], [ -95.536059042128429, 29.676231174350495 ], [ -95.535071041870481, 29.676259174651989 ], [ -95.534997042027612, 29.676263174588513 ], [ -95.534495041937575, 29.676279173899498 ], [ -95.534082041841117, 29.676303174636999 ], [ -95.533856041753111, 29.676302173885968 ], [ -95.533630041150943, 29.67631117408472 ], [ -95.533376041483393, 29.676318174403775 ], [ -95.532919041263554, 29.676336174235569 ], [ -95.532501041646199, 29.676346174157121 ], [ -95.53114904101254, 29.676393174779211 ], [ -95.530607041078966, 29.676420174454062 ], [ -95.530526040907091, 29.676424174667858 ], [ -95.530448040436937, 29.676428174037436 ], [ -95.529645040406422, 29.676469174110998 ], [ -95.52958004003014, 29.676472174923159 ], [ -95.528369040186121, 29.676892174640294 ], [ -95.527912039642501, 29.677086175035711 ], [ -95.5272510395354, 29.677450174594103 ], [ -95.526457039490737, 29.677856175265603 ], [ -95.526335040159111, 29.677917174953414 ], [ -95.525719039282009, 29.678230175015266 ], [ -95.525528039795645, 29.678329174987979 ], [ -95.52460903881267, 29.678779174807183 ], [ -95.522489039156881, 29.6798771759007 ], [ -95.522631038766605, 29.680030175823585 ], [ -95.523147039442577, 29.68036117543701 ], [ -95.523418038707263, 29.680586175260018 ], [ -95.523807039675205, 29.681104175561408 ], [ -95.52400503922874, 29.681594175977303 ], [ -95.524008039357227, 29.681614175336275 ], [ -95.524088039155885, 29.682048176217052 ], [ -95.524088039203846, 29.682080176038248 ], [ -95.524090039331853, 29.682329175918834 ], [ -95.524093039324015, 29.68277017625763 ], [ -95.524094039237738, 29.682853176429962 ], [ -95.524098039102896, 29.683344176021421 ], [ -95.524100039464159, 29.683596176230896 ], [ -95.524102039252114, 29.683839176097027 ], [ -95.524107039740784, 29.684454176732046 ], [ -95.524110039201531, 29.684697176317719 ], [ -95.524120039536783, 29.685148176216028 ], [ -95.524123039722781, 29.685261176335086 ], [ -95.524058039031843, 29.685411176331719 ], [ -95.524023039435676, 29.685493176918825 ], [ -95.523930039269146, 29.685612176961545 ], [ -95.523901039790161, 29.685651176755968 ], [ -95.523832039364024, 29.685808176650202 ], [ -95.523826039067544, 29.685851176498581 ], [ -95.523804038959568, 29.686036176328347 ], [ -95.523807039305154, 29.686288177071887 ], [ -95.523810039906763, 29.686527176961558 ], [ -95.523822039403953, 29.68753317667851 ], [ -95.523834039553009, 29.68849717684229 ], [ -95.523842039915863, 29.689131176866258 ], [ -95.523853039291112, 29.689991177384076 ], [ -95.523856040112747, 29.690263177834538 ], [ -95.523862039944603, 29.690647177170025 ], [ -95.524275040220559, 29.69063417724859 ], [ -95.526040039829866, 29.690582177318895 ], [ -95.52604404003911, 29.690648177928914 ], [ -95.526041039680507, 29.690718177978884 ], [ -95.526019040471084, 29.690903177886209 ], [ -95.52579304047859, 29.691713178029978 ], [ -95.526665040206339, 29.691962177561869 ], [ -95.526841039949502, 29.692012178214927 ], [ -95.527005040081903, 29.692059177525639 ], [ -95.527174041020729, 29.692107177378741 ], [ -95.527266040924204, 29.692025177641526 ], [ -95.527794040967834, 29.691559177375247 ], [ -95.52842904037982, 29.69096817777617 ], [ -95.528676040670149, 29.690715177798058 ], [ -95.529343041131696, 29.68995617715623 ], [ -95.530056041419087, 29.68905617688857 ], [ -95.530665041525978, 29.688198176528008 ], [ -95.530760041662646, 29.688064176732848 ], [ -95.530848041645996, 29.687952177142503 ], [ -95.5319750412812, 29.686518176852125 ], [ -95.532390041745643, 29.686012175981464 ], [ -95.53401904143216, 29.683962175506178 ], [ -95.535234041962283, 29.682421175638495 ], [ -95.53577904219074, 29.681829175536794 ], [ -95.536609042540761, 29.68104017564708 ], [ -95.536660042024309, 29.680994175395426 ], [ -95.536722042317734, 29.680938174918307 ], [ -95.536801042857689, 29.680866175135346 ], [ -95.536873042528327, 29.680802174916074 ], [ -95.537082042364574, 29.6806131748396 ], [ -95.537849042487281, 29.679895174975623 ], [ -95.538651043163014, 29.679145175145877 ], [ -95.539136042548108, 29.678716174889722 ], [ -95.540198042913786, 29.677727174376621 ], [ -95.541651043856248, 29.676374174080674 ], [ -95.54218504399843, 29.675876174069646 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 602, "Tract": "48201423100", "Area_SqMi": 0.6396724114954897, "total_2009": 4558, "total_2010": 4414, "total_2011": 5275, "total_2012": 5516, "total_2013": 5420, "total_2014": 5018, "total_2015": 5207, "total_2016": 5134, "total_2017": 4870, "total_2018": 4586, "total_2019": 4289, "total_2020": 4503, "age1": 848, "age2": 1909, "age3": 909, "earn1": 1034, "earn2": 1396, "earn3": 1236, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 176, "naics_s05": 43, "naics_s06": 131, "naics_s07": 634, "naics_s08": 41, "naics_s09": 32, "naics_s10": 31, "naics_s11": 26, "naics_s12": 346, "naics_s13": 0, "naics_s14": 917, "naics_s15": 0, "naics_s16": 754, "naics_s17": 19, "naics_s18": 272, "naics_s19": 240, "naics_s20": 2, "race1": 2261, "race2": 805, "race3": 42, "race4": 491, "race5": 4, "race6": 63, "ethnicity1": 2322, "ethnicity2": 1344, "edu1": 695, "edu2": 759, "edu3": 792, "edu4": 572, "Shape_Length": 23987.787746766138, "Shape_Area": 17832972.022220284, "total_2021": 4346, "total_2022": 3666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.558131047059561, 29.661053170299731 ], [ -95.558057047435923, 29.660941170070696 ], [ -95.557987047355326, 29.660831169994346 ], [ -95.557933046996823, 29.660755170553621 ], [ -95.557773046558893, 29.660499170173207 ], [ -95.55766304656531, 29.660349170465693 ], [ -95.557268047095377, 29.659824169852318 ], [ -95.556821046222609, 29.659225169975848 ], [ -95.556705047030945, 29.659087170098829 ], [ -95.556119046567403, 29.658469170361158 ], [ -95.555934046714398, 29.658556170259565 ], [ -95.55576004588292, 29.658635170217693 ], [ -95.55571804648136, 29.658654169874605 ], [ -95.555659045940914, 29.658691169549474 ], [ -95.555543046539611, 29.658765169780974 ], [ -95.555254045938852, 29.658955170102612 ], [ -95.554845045894382, 29.659246170316536 ], [ -95.554442046012383, 29.659466169862384 ], [ -95.55403304554757, 29.659843170111898 ], [ -95.553991045535511, 29.659880170726396 ], [ -95.553743046355237, 29.660110170798866 ], [ -95.553372045485688, 29.660300170113388 ], [ -95.553228045930226, 29.660373170361723 ], [ -95.55308904548059, 29.660500170093187 ], [ -95.552825045975553, 29.66063117025697 ], [ -95.552655045311454, 29.66077417043466 ], [ -95.552491045345661, 29.660928170254188 ], [ -95.552227045470872, 29.661121170325604 ], [ -95.552038045854971, 29.661220170995566 ], [ -95.551780045041454, 29.661297170218848 ], [ -95.551446045683562, 29.661363170240804 ], [ -95.550974044940887, 29.66152217108694 ], [ -95.550609045164137, 29.661670171124776 ], [ -95.550345044658812, 29.661808171042647 ], [ -95.550168045018964, 29.661923170900728 ], [ -95.550055044742095, 29.662050170566189 ], [ -95.549973044871209, 29.66218217091189 ], [ -95.549847045149662, 29.662522170799257 ], [ -95.549696044866735, 29.662885171060854 ], [ -95.549633044856421, 29.662990170759365 ], [ -95.549526044999212, 29.66308317116323 ], [ -95.549394045266595, 29.663160171243234 ], [ -95.548953044339044, 29.663358171519288 ], [ -95.548201045100498, 29.663718170844557 ], [ -95.547644044122748, 29.663985171022965 ], [ -95.547474044567679, 29.664078171700016 ], [ -95.547392044719018, 29.664199171760124 ], [ -95.547342044463761, 29.664336171496686 ], [ -95.547291044391599, 29.664666171283216 ], [ -95.547228044561308, 29.664837171518201 ], [ -95.547147044272393, 29.664919171225304 ], [ -95.546271043782355, 29.665238171428612 ], [ -95.546070044484125, 29.665337172071695 ], [ -95.545787044588991, 29.665689172063843 ], [ -95.545478043885836, 29.666139171706174 ], [ -95.545359043788636, 29.666365172219486 ], [ -95.545201044545152, 29.666502171558715 ], [ -95.545093043817104, 29.666573172255266 ], [ -95.545006043880278, 29.666629172160235 ], [ -95.544660043919919, 29.666717172117014 ], [ -95.544584043662738, 29.666761172426753 ], [ -95.544364044307741, 29.667096172177086 ], [ -95.544144043755821, 29.667365171722892 ], [ -95.543785043498559, 29.667701172245305 ], [ -95.543539043434521, 29.667832172528605 ], [ -95.543205043584322, 29.668041172649101 ], [ -95.543092043450756, 29.668124172477832 ], [ -95.542866043429029, 29.668223172804844 ], [ -95.542463043875571, 29.668278172108568 ], [ -95.54236804287244, 29.668278172826337 ], [ -95.542123043197222, 29.668388172827903 ], [ -95.541739042769379, 29.668508172082248 ], [ -95.54143704347446, 29.668624172363199 ], [ -95.541304043148301, 29.668657172654679 ], [ -95.541134043402678, 29.668662172639408 ], [ -95.540958043122856, 29.668651172276927 ], [ -95.540845043003586, 29.668624172609718 ], [ -95.540517042858326, 29.668486172492294 ], [ -95.540360042638056, 29.668459172727864 ], [ -95.540058043001693, 29.668464172115048 ], [ -95.53991904306497, 29.668481172690193 ], [ -95.539768042636354, 29.668514172911582 ], [ -95.539372042373088, 29.668679172789222 ], [ -95.539239042279632, 29.668712172859852 ], [ -95.538742042628428, 29.66877217251194 ], [ -95.538591042391431, 29.66880517233233 ], [ -95.538516042660291, 29.668805172958823 ], [ -95.53815004193882, 29.668843172266815 ], [ -95.538056042689036, 29.668893172817025 ], [ -95.537886042095977, 29.669036172891801 ], [ -95.53777904242925, 29.669289173209012 ], [ -95.53746404218036, 29.669706172447246 ], [ -95.537187042055777, 29.670009172624475 ], [ -95.536753042036224, 29.670393172994338 ], [ -95.53654304215523, 29.670570173012305 ], [ -95.536373041936301, 29.670714173182919 ], [ -95.535670041325261, 29.671306173636399 ], [ -95.535065041651777, 29.671850173002859 ], [ -95.534864041141105, 29.67198217344438 ], [ -95.534612041947227, 29.672092173848288 ], [ -95.533856041528139, 29.672361173877135 ], [ -95.533190041410975, 29.672569174017138 ], [ -95.532962040989148, 29.672641173870705 ], [ -95.531974040872797, 29.673009174069318 ], [ -95.531936040459016, 29.673029173606288 ], [ -95.531804040469837, 29.673103173565906 ], [ -95.53163404098035, 29.673169173588185 ], [ -95.531483040465915, 29.673191174013052 ], [ -95.531351041166616, 29.673191173433327 ], [ -95.530601040923514, 29.6732351737909 ], [ -95.530104040942774, 29.673245174016849 ], [ -95.529871040695994, 29.673322174283115 ], [ -95.529800040829571, 29.673365174033975 ], [ -95.530026039988286, 29.673534173950607 ], [ -95.530265040948535, 29.673826174205786 ], [ -95.530430040553412, 29.674267173859864 ], [ -95.530491040767544, 29.674870173808586 ], [ -95.530526040907091, 29.676424174667858 ], [ -95.530607041078966, 29.676420174454062 ], [ -95.53114904101254, 29.676393174779211 ], [ -95.532501041646199, 29.676346174157121 ], [ -95.532919041263554, 29.676336174235569 ], [ -95.533376041483393, 29.676318174403775 ], [ -95.533630041150943, 29.67631117408472 ], [ -95.533856041753111, 29.676302173885968 ], [ -95.534082041841117, 29.676303174636999 ], [ -95.534495041937575, 29.676279173899498 ], [ -95.534997042027612, 29.676263174588513 ], [ -95.535071041870481, 29.676259174651989 ], [ -95.536059042128429, 29.676231174350495 ], [ -95.536600042002846, 29.676284174509867 ], [ -95.536625041859111, 29.676283173879124 ], [ -95.536728042525354, 29.67627717465945 ], [ -95.537057042225229, 29.676262174242478 ], [ -95.537573042612493, 29.67620017374416 ], [ -95.538021042537594, 29.676170173773727 ], [ -95.538555042435547, 29.676136173810519 ], [ -95.538666042458701, 29.676121173819848 ], [ -95.539293042709943, 29.676029173683357 ], [ -95.539574043340991, 29.676019174535973 ], [ -95.541155043196213, 29.675959174307838 ], [ -95.541326043822707, 29.67595217430847 ], [ -95.541709043133565, 29.675918173904353 ], [ -95.541952043149095, 29.675896174117671 ], [ -95.54218504399843, 29.675876174069646 ], [ -95.542572044036561, 29.675516173619506 ], [ -95.543626043440412, 29.674534174027372 ], [ -95.5456160449137, 29.672708172793882 ], [ -95.547812044552131, 29.67066617301419 ], [ -95.548931045328786, 29.669626172227922 ], [ -95.55006504562391, 29.668572172488897 ], [ -95.550863045527763, 29.667795172229162 ], [ -95.552244045455723, 29.666547172124236 ], [ -95.553275046057479, 29.665520171546234 ], [ -95.553390045555489, 29.66542117119565 ], [ -95.55586104616026, 29.66316217077128 ], [ -95.55695504691586, 29.662161170310519 ], [ -95.557140047291341, 29.661992170750491 ], [ -95.557255047345564, 29.661888170155965 ], [ -95.557532046884219, 29.661629170953972 ], [ -95.557644047366651, 29.661521170902297 ], [ -95.557830046680706, 29.66134117028389 ], [ -95.55791604742808, 29.661258170019266 ], [ -95.558131047059561, 29.661053170299731 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 603, "Tract": "48201343000", "Area_SqMi": 2.2665434340375814, "total_2009": 911, "total_2010": 1021, "total_2011": 1245, "total_2012": 1018, "total_2013": 1019, "total_2014": 1148, "total_2015": 1434, "total_2016": 1326, "total_2017": 1411, "total_2018": 1338, "total_2019": 1426, "total_2020": 1399, "age1": 549, "age2": 700, "age3": 334, "earn1": 422, "earn2": 588, "earn3": 573, "naics_s01": 0, "naics_s02": 7, "naics_s03": 0, "naics_s04": 172, "naics_s05": 8, "naics_s06": 16, "naics_s07": 200, "naics_s08": 0, "naics_s09": 0, "naics_s10": 9, "naics_s11": 15, "naics_s12": 48, "naics_s13": 9, "naics_s14": 272, "naics_s15": 10, "naics_s16": 256, "naics_s17": 12, "naics_s18": 482, "naics_s19": 67, "naics_s20": 0, "race1": 1272, "race2": 198, "race3": 11, "race4": 88, "race5": 0, "race6": 14, "ethnicity1": 977, "ethnicity2": 606, "edu1": 240, "edu2": 295, "edu3": 317, "edu4": 182, "Shape_Length": 36610.120569428494, "Shape_Area": 63187351.713110842, "total_2021": 1439, "total_2022": 1583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.132678938312395, 29.663509185062075 ], [ -95.132317938148631, 29.662822185478429 ], [ -95.132160938352428, 29.662511184811656 ], [ -95.131867938222797, 29.66204018487511 ], [ -95.131721938310335, 29.661869184690694 ], [ -95.131404938061252, 29.66149918467584 ], [ -95.130178937462063, 29.660154184216804 ], [ -95.1292519371369, 29.6591321845127 ], [ -95.128377936732505, 29.658167184644441 ], [ -95.127280936631024, 29.656917184363845 ], [ -95.126417936593683, 29.655936183763465 ], [ -95.125537936092329, 29.654940183864955 ], [ -95.125247935547705, 29.654613183287079 ], [ -95.124690935435112, 29.653981183427319 ], [ -95.124230936060471, 29.653459183623646 ], [ -95.123590935434592, 29.652226182968345 ], [ -95.122623935330324, 29.650832183003939 ], [ -95.12238193505074, 29.650489183307275 ], [ -95.122332934816626, 29.650437183271801 ], [ -95.122185934413665, 29.650281183053821 ], [ -95.12115793481729, 29.650336183062439 ], [ -95.118073934138351, 29.650365182753177 ], [ -95.11658293300475, 29.650378182825246 ], [ -95.116409932925464, 29.650380182916315 ], [ -95.112668932411424, 29.650437183451537 ], [ -95.112439931905698, 29.650444183556942 ], [ -95.112423932275647, 29.65044518310004 ], [ -95.112225932679735, 29.650444183019204 ], [ -95.111347932058521, 29.650457183316867 ], [ -95.109896931857364, 29.650475183739111 ], [ -95.108606931241553, 29.650491183610516 ], [ -95.106682931153586, 29.650544183782515 ], [ -95.104388930525346, 29.650558183558275 ], [ -95.103426930316118, 29.650575183280711 ], [ -95.102256930157395, 29.650595183448623 ], [ -95.10005992932571, 29.650640183977455 ], [ -95.097944928916291, 29.650689184040839 ], [ -95.097864928328846, 29.650691183992407 ], [ -95.095966928566398, 29.650718184124724 ], [ -95.094972928424909, 29.65073518371284 ], [ -95.093934927514866, 29.650753183913782 ], [ -95.091847927226695, 29.650782183891486 ], [ -95.090479927117542, 29.650812183637388 ], [ -95.089566926473182, 29.65082018397835 ], [ -95.088631926799678, 29.650879184051686 ], [ -95.087632925929839, 29.650950184063703 ], [ -95.087048926096699, 29.65101518451479 ], [ -95.086602925515749, 29.65107518443881 ], [ -95.086417925265408, 29.65112318433734 ], [ -95.086417925773631, 29.651264184207211 ], [ -95.086430925973744, 29.651418183911822 ], [ -95.086432926217796, 29.651438184434397 ], [ -95.086611926286963, 29.653921185022714 ], [ -95.086698926177149, 29.65611918484673 ], [ -95.08677992672223, 29.659503185628978 ], [ -95.086765925813083, 29.659957185601957 ], [ -95.086820926427279, 29.660447186316123 ], [ -95.086829926095746, 29.661437186678054 ], [ -95.086830926811217, 29.662373186340886 ], [ -95.086909926634974, 29.663311187019222 ], [ -95.086926926350188, 29.66438618695036 ], [ -95.08712992654003, 29.664381186828638 ], [ -95.090283927120538, 29.664304186937223 ], [ -95.093198927691901, 29.664244186250087 ], [ -95.094166928247304, 29.664222186324356 ], [ -95.094347928049146, 29.664208186434177 ], [ -95.095484928575402, 29.664186186930127 ], [ -95.096780929478655, 29.664165186921441 ], [ -95.098342929253576, 29.664140186594864 ], [ -95.100628930364806, 29.664073186703259 ], [ -95.102130930677987, 29.664047186152285 ], [ -95.102349930638312, 29.664043185898979 ], [ -95.102715930399285, 29.664037186577332 ], [ -95.103564930756789, 29.664022186557407 ], [ -95.105636931591363, 29.664024186109231 ], [ -95.105818930928763, 29.664024186235046 ], [ -95.106599931945794, 29.664025186082302 ], [ -95.109716932386149, 29.663935186253568 ], [ -95.110859932547896, 29.663928185771862 ], [ -95.112016932682465, 29.663907185961293 ], [ -95.112637933233046, 29.66389218633573 ], [ -95.112762932968664, 29.663889185634456 ], [ -95.112891933060567, 29.663887185680693 ], [ -95.11398393374516, 29.663905186024156 ], [ -95.114939933214075, 29.663886185924358 ], [ -95.116289933837308, 29.663857185882609 ], [ -95.116763933690407, 29.663823185406233 ], [ -95.116806934219682, 29.663822185888968 ], [ -95.116841934559346, 29.663822185632494 ], [ -95.116974934545624, 29.663820185842955 ], [ -95.118132933954982, 29.663804186062755 ], [ -95.119065934421187, 29.663791185301154 ], [ -95.121597935302347, 29.663757185849704 ], [ -95.122774936103113, 29.663740185303745 ], [ -95.12295493518603, 29.66373718562334 ], [ -95.123274936254774, 29.663734185248334 ], [ -95.123621936024037, 29.663731185980879 ], [ -95.123922935973098, 29.663726185798538 ], [ -95.124181935629892, 29.663724185599122 ], [ -95.124490936472412, 29.663721185193591 ], [ -95.124958935901319, 29.663716185150957 ], [ -95.125378936075606, 29.663635185422962 ], [ -95.125545936727775, 29.663632185175185 ], [ -95.126093936637488, 29.663621185091696 ], [ -95.126805937112991, 29.663610185156912 ], [ -95.127408936970653, 29.663600185219707 ], [ -95.12767593675396, 29.663596185344712 ], [ -95.128558937470643, 29.663580185281706 ], [ -95.130552937830075, 29.663545184990433 ], [ -95.131454937992217, 29.663531185647479 ], [ -95.132678938312395, 29.663509185062075 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 604, "Tract": "48201343200", "Area_SqMi": 1.8075071990416829, "total_2009": 745, "total_2010": 724, "total_2011": 901, "total_2012": 761, "total_2013": 1047, "total_2014": 2047, "total_2015": 2835, "total_2016": 3380, "total_2017": 5275, "total_2018": 3156, "total_2019": 3425, "total_2020": 3337, "age1": 652, "age2": 2005, "age3": 584, "earn1": 314, "earn2": 498, "earn3": 2429, "naics_s01": 0, "naics_s02": 436, "naics_s03": 0, "naics_s04": 563, "naics_s05": 62, "naics_s06": 290, "naics_s07": 41, "naics_s08": 14, "naics_s09": 0, "naics_s10": 13, "naics_s11": 1, "naics_s12": 152, "naics_s13": 0, "naics_s14": 316, "naics_s15": 0, "naics_s16": 31, "naics_s17": 3, "naics_s18": 46, "naics_s19": 1273, "naics_s20": 0, "race1": 2760, "race2": 322, "race3": 44, "race4": 68, "race5": 5, "race6": 42, "ethnicity1": 1600, "ethnicity2": 1641, "edu1": 712, "edu2": 794, "edu3": 714, "edu4": 369, "Shape_Length": 30664.589287652019, "Shape_Area": 50390207.129793271, "total_2021": 3261, "total_2022": 3241 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.073369922247551, 29.652624185082018 ], [ -95.073372922277684, 29.652577184814447 ], [ -95.073329922659596, 29.651857185069048 ], [ -95.073326922585281, 29.651773184923453 ], [ -95.073320922737352, 29.651628184413688 ], [ -95.072309922663891, 29.651621184462588 ], [ -95.070121921192253, 29.651659184489482 ], [ -95.068872921639752, 29.651694185051472 ], [ -95.065520920567494, 29.651740184997049 ], [ -95.063555919670307, 29.651806184937179 ], [ -95.062773919559007, 29.651812185427339 ], [ -95.061850918966272, 29.651768185494522 ], [ -95.06115691880882, 29.651711185028613 ], [ -95.060534919397739, 29.65163718497579 ], [ -95.059218919195416, 29.651513185020526 ], [ -95.058428918558491, 29.651461185129687 ], [ -95.05704891800535, 29.651466185147736 ], [ -95.055005917369812, 29.651494185319805 ], [ -95.052874917632693, 29.651537185801072 ], [ -95.050632916076353, 29.651588185157106 ], [ -95.046742915371297, 29.651629185750771 ], [ -95.044540915189899, 29.651672185563733 ], [ -95.042151914656259, 29.651732186158135 ], [ -95.040322913443106, 29.651770186106525 ], [ -95.039093914058384, 29.651787186318064 ], [ -95.038747913356389, 29.651792186028302 ], [ -95.03874991331061, 29.651957185880111 ], [ -95.03875291386781, 29.652148186377637 ], [ -95.039086914540235, 29.661795188106009 ], [ -95.03911291453943, 29.662715187905285 ], [ -95.03913191463549, 29.663494188446592 ], [ -95.039173914514905, 29.664881188713498 ], [ -95.039180913878553, 29.665145188578446 ], [ -95.039491914291006, 29.665139188788732 ], [ -95.039840914441768, 29.66513218826724 ], [ -95.041783914693966, 29.665095188277395 ], [ -95.042017915068712, 29.665090188188522 ], [ -95.042138915303894, 29.665089188856623 ], [ -95.043298914795685, 29.665082188357403 ], [ -95.044316915135397, 29.665064188301887 ], [ -95.045327915750605, 29.66504618858049 ], [ -95.045349916077839, 29.665045188282654 ], [ -95.046306916419013, 29.665010188165464 ], [ -95.046391916332553, 29.665007188209586 ], [ -95.046484915962736, 29.665006188484636 ], [ -95.052728917797992, 29.664914188178379 ], [ -95.055710918765485, 29.66487018831635 ], [ -95.05783391861533, 29.664803187897515 ], [ -95.059337919754938, 29.664795187858267 ], [ -95.062069919657986, 29.664746188146996 ], [ -95.063730920745442, 29.664716188110123 ], [ -95.06382892071224, 29.664714187713418 ], [ -95.066003920876099, 29.664674187715008 ], [ -95.07057592261296, 29.664593187219896 ], [ -95.070566922504284, 29.663946187240366 ], [ -95.070568922520252, 29.663084187196709 ], [ -95.070598922634062, 29.662236187486211 ], [ -95.070819921712115, 29.66137518655124 ], [ -95.070856922062035, 29.660994186461149 ], [ -95.070995922098888, 29.660624186990347 ], [ -95.071148921984616, 29.660301186384086 ], [ -95.071321922737667, 29.659928186209882 ], [ -95.071527921990949, 29.659481185984006 ], [ -95.071814922824856, 29.658642186090002 ], [ -95.072141922451337, 29.657890186121762 ], [ -95.072462922526327, 29.657128186320644 ], [ -95.072651922022303, 29.65653018551486 ], [ -95.072831922620139, 29.656043185331573 ], [ -95.07300492282485, 29.655246185564881 ], [ -95.073181922173887, 29.65444018489087 ], [ -95.073320922605504, 29.653568185517301 ], [ -95.073369922247551, 29.652624185082018 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 605, "Tract": "48201423600", "Area_SqMi": 1.2846046291469206, "total_2009": 612, "total_2010": 613, "total_2011": 637, "total_2012": 979, "total_2013": 1065, "total_2014": 1035, "total_2015": 1132, "total_2016": 942, "total_2017": 1022, "total_2018": 1007, "total_2019": 806, "total_2020": 725, "age1": 189, "age2": 461, "age3": 207, "earn1": 289, "earn2": 261, "earn3": 307, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 69, "naics_s06": 81, "naics_s07": 104, "naics_s08": 40, "naics_s09": 0, "naics_s10": 6, "naics_s11": 2, "naics_s12": 20, "naics_s13": 0, "naics_s14": 198, "naics_s15": 0, "naics_s16": 268, "naics_s17": 0, "naics_s18": 7, "naics_s19": 43, "naics_s20": 0, "race1": 471, "race2": 285, "race3": 9, "race4": 82, "race5": 1, "race6": 9, "ethnicity1": 570, "ethnicity2": 287, "edu1": 177, "edu2": 182, "edu3": 189, "edu4": 120, "Shape_Length": 27604.139696102156, "Shape_Area": 35812578.437820002, "total_2021": 763, "total_2022": 857 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.536819040752874, 29.642330167116846 ], [ -95.536931040982736, 29.642230166934691 ], [ -95.536708040410247, 29.642059167413144 ], [ -95.534300039557294, 29.640062166888306 ], [ -95.534019039549776, 29.639824166605468 ], [ -95.533954039828444, 29.639769166974943 ], [ -95.533945039793608, 29.639762166679347 ], [ -95.533722040367181, 29.639573166478677 ], [ -95.531213038908277, 29.63731616600484 ], [ -95.531011039317193, 29.637142166675453 ], [ -95.530798039032803, 29.636966166807792 ], [ -95.529449038195494, 29.635857166027261 ], [ -95.529002038307638, 29.635527166155576 ], [ -95.527806037877241, 29.634572166396232 ], [ -95.525709037281274, 29.632788166096162 ], [ -95.521549036334292, 29.629267165313639 ], [ -95.51978903556828, 29.627839164622578 ], [ -95.518766035599583, 29.626951164770034 ], [ -95.518660035215618, 29.626875165119316 ], [ -95.51856603521739, 29.626803164959661 ], [ -95.518328035167016, 29.626591164872572 ], [ -95.51816103583019, 29.626646164488513 ], [ -95.517804035591894, 29.626813164404712 ], [ -95.517537034889557, 29.626913164761863 ], [ -95.516138034766556, 29.627442165156058 ], [ -95.515841034683802, 29.627543164857393 ], [ -95.514348034533313, 29.628082165279675 ], [ -95.512565034210724, 29.628753165690398 ], [ -95.512050033416031, 29.628948165098251 ], [ -95.511455033696592, 29.629185165052263 ], [ -95.511405033671124, 29.629202165837004 ], [ -95.510204033559774, 29.629610165748975 ], [ -95.507761033340614, 29.630543165885079 ], [ -95.507549033292463, 29.63062416554569 ], [ -95.5075640329202, 29.630769165672284 ], [ -95.507586032458136, 29.630980166254012 ], [ -95.50758803262238, 29.631014165860435 ], [ -95.507811032688522, 29.631636165699032 ], [ -95.507905032677812, 29.631946166264989 ], [ -95.50812103254826, 29.632659166192933 ], [ -95.508204033093804, 29.634308166253451 ], [ -95.508202032766604, 29.634493166431046 ], [ -95.508190033096511, 29.635495166416568 ], [ -95.50820403355263, 29.636550167406426 ], [ -95.50827003333589, 29.638520167632585 ], [ -95.508281033459681, 29.640391167667534 ], [ -95.508287033881317, 29.640858167604438 ], [ -95.508278033472322, 29.641235167956076 ], [ -95.508285033879176, 29.641530168159942 ], [ -95.508286033367298, 29.641597168150632 ], [ -95.508291033282589, 29.641799168126621 ], [ -95.508311033486038, 29.642720168561052 ], [ -95.508308033476041, 29.643180167967852 ], [ -95.508312033661667, 29.643787168757072 ], [ -95.508300034014738, 29.644238168417651 ], [ -95.509497033575798, 29.644233168621511 ], [ -95.509967034400489, 29.644222168900555 ], [ -95.510971034410986, 29.644217168161596 ], [ -95.511480033994431, 29.644207168926112 ], [ -95.51168303427626, 29.644210168904799 ], [ -95.511892034167033, 29.644193168520886 ], [ -95.512527034700653, 29.644093168066853 ], [ -95.513026034399772, 29.644018168117025 ], [ -95.513519035317074, 29.643873168522305 ], [ -95.513786035174618, 29.643767168106823 ], [ -95.514030035127803, 29.64367416851092 ], [ -95.514243035526221, 29.643553168492769 ], [ -95.514661035528533, 29.643360168545115 ], [ -95.514867034813932, 29.643236168043561 ], [ -95.515236035038981, 29.643044167827657 ], [ -95.515307035818509, 29.642996167928015 ], [ -95.516204035426995, 29.642548168329736 ], [ -95.516589035155604, 29.642417168382462 ], [ -95.51689603581552, 29.642317167622434 ], [ -95.517456036183674, 29.642136168059 ], [ -95.518680036113395, 29.641881167737353 ], [ -95.52025403621559, 29.64190016729497 ], [ -95.521100036867466, 29.641882167846063 ], [ -95.52217803724038, 29.641774167843888 ], [ -95.52233703730839, 29.641759167526097 ], [ -95.523780037163746, 29.641556167320989 ], [ -95.524493037775471, 29.641542167838509 ], [ -95.525274037701394, 29.641537167492515 ], [ -95.525762038191402, 29.641550167345091 ], [ -95.526124037899876, 29.64157216758208 ], [ -95.526757038396937, 29.641650167204773 ], [ -95.527095037828659, 29.641725167060283 ], [ -95.527917038205288, 29.641930167724471 ], [ -95.52847803909269, 29.642172167187411 ], [ -95.52911303902124, 29.642474167437545 ], [ -95.529812039277331, 29.642988167369943 ], [ -95.53064203941193, 29.643797167754293 ], [ -95.531613039500456, 29.644469168156498 ], [ -95.532578039686797, 29.644958168209023 ], [ -95.533236040252618, 29.64519116801138 ], [ -95.53332904034977, 29.645219168009856 ], [ -95.534000039906971, 29.645353167933155 ], [ -95.534662040620944, 29.645432168271245 ], [ -95.535186040301539, 29.645436167677737 ], [ -95.536065040498102, 29.645401167506115 ], [ -95.536026041133866, 29.64358416785797 ], [ -95.536022041014078, 29.643239167865918 ], [ -95.536035040116644, 29.643120167845346 ], [ -95.536041040212652, 29.643067167565594 ], [ -95.536163041023883, 29.642903167696282 ], [ -95.536355041205482, 29.64273216751878 ], [ -95.536623041259475, 29.642540167477105 ], [ -95.536819040752874, 29.642330167116846 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 606, "Tract": "48201412300", "Area_SqMi": 0.91910531901412473, "total_2009": 798, "total_2010": 654, "total_2011": 804, "total_2012": 652, "total_2013": 718, "total_2014": 782, "total_2015": 802, "total_2016": 775, "total_2017": 693, "total_2018": 680, "total_2019": 786, "total_2020": 812, "age1": 284, "age2": 525, "age3": 285, "earn1": 302, "earn2": 335, "earn3": 457, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 73, "naics_s05": 5, "naics_s06": 15, "naics_s07": 164, "naics_s08": 2, "naics_s09": 79, "naics_s10": 24, "naics_s11": 35, "naics_s12": 103, "naics_s13": 0, "naics_s14": 85, "naics_s15": 39, "naics_s16": 67, "naics_s17": 1, "naics_s18": 198, "naics_s19": 202, "naics_s20": 0, "race1": 833, "race2": 117, "race3": 10, "race4": 103, "race5": 5, "race6": 26, "ethnicity1": 673, "ethnicity2": 421, "edu1": 208, "edu2": 195, "edu3": 188, "edu4": 219, "Shape_Length": 21330.143135402293, "Shape_Area": 25623083.229638867, "total_2021": 925, "total_2022": 1094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430113016672479, 29.725306187795976 ], [ -95.430087017290802, 29.723918187895794 ], [ -95.430093017116988, 29.723615187213056 ], [ -95.430079017336027, 29.722925187121888 ], [ -95.430065017311307, 29.721920186851968 ], [ -95.430047016952997, 29.720941187373874 ], [ -95.430028016674783, 29.719943187016629 ], [ -95.430008016693321, 29.718962186655897 ], [ -95.429991016471931, 29.71797218609553 ], [ -95.429970016976327, 29.716978186381699 ], [ -95.429954016570107, 29.715995185898173 ], [ -95.429925017037831, 29.714936185529467 ], [ -95.429892016219483, 29.71276718531044 ], [ -95.429886016539299, 29.71177918501996 ], [ -95.429868016033922, 29.710961184702921 ], [ -95.429840016325215, 29.709180184208538 ], [ -95.42980601669845, 29.70739018399783 ], [ -95.429795015802057, 29.706849184271363 ], [ -95.429779016047917, 29.706075184248856 ], [ -95.429244015720258, 29.706081183829834 ], [ -95.42864201576846, 29.706092183553793 ], [ -95.427998015962928, 29.706083183812975 ], [ -95.427455015615124, 29.706098183611353 ], [ -95.42666501582967, 29.706105183767114 ], [ -95.426454015348511, 29.706107183943018 ], [ -95.426396015566553, 29.706105184058085 ], [ -95.425938015506532, 29.706096183652331 ], [ -95.424494014841031, 29.706114184164274 ], [ -95.423025014601961, 29.706134184137955 ], [ -95.422954014690376, 29.706134184278966 ], [ -95.422666014752835, 29.706136184437486 ], [ -95.420795014021408, 29.706152184006015 ], [ -95.420098014149502, 29.706158184534367 ], [ -95.420007013319051, 29.706153183873369 ], [ -95.418295013514481, 29.706169184250584 ], [ -95.418290013287887, 29.707068184743626 ], [ -95.41830101312533, 29.707900184544645 ], [ -95.418310013336907, 29.708667184643819 ], [ -95.418331013162074, 29.708764184558614 ], [ -95.418323013970095, 29.709461184740167 ], [ -95.418324013886789, 29.709591184764228 ], [ -95.418324013496161, 29.710234185414041 ], [ -95.418349014036991, 29.710407184920555 ], [ -95.418323013688408, 29.710933185067923 ], [ -95.418365013979056, 29.711122185791336 ], [ -95.41835801320714, 29.71147218553995 ], [ -95.418362013537063, 29.711837185702649 ], [ -95.418376013883901, 29.712583185456577 ], [ -95.418398013265914, 29.713415185682582 ], [ -95.418406013584104, 29.71419718637333 ], [ -95.418413013994481, 29.714305186233108 ], [ -95.41841001407164, 29.71462418589681 ], [ -95.418406013349227, 29.715059186573164 ], [ -95.418425013355929, 29.715855186234084 ], [ -95.418431013616086, 29.715990186016221 ], [ -95.418438013728775, 29.716650186705468 ], [ -95.418460013922427, 29.71744218708919 ], [ -95.418468013820075, 29.718253186832865 ], [ -95.418488014126922, 29.719038187372298 ], [ -95.418494013754014, 29.719349186845282 ], [ -95.418503013779286, 29.719840187505394 ], [ -95.418515013744582, 29.720454186887856 ], [ -95.418508014077588, 29.720650187592611 ], [ -95.418514013992962, 29.72113718758397 ], [ -95.418520013695101, 29.721462187204402 ], [ -95.418541013782914, 29.722291187961606 ], [ -95.418526014118655, 29.72310618787898 ], [ -95.418525013760345, 29.723306187889648 ], [ -95.418551014176771, 29.723910187611089 ], [ -95.41856301396777, 29.724652188528989 ], [ -95.418588014158956, 29.725495188386478 ], [ -95.42062501470123, 29.725435188497556 ], [ -95.422124015287409, 29.725433188319894 ], [ -95.424839016193715, 29.725372188200542 ], [ -95.426374015847728, 29.72536118829613 ], [ -95.426588016117037, 29.725360187935962 ], [ -95.427127015976637, 29.725341188203988 ], [ -95.427777016158871, 29.725340187608456 ], [ -95.428978016418654, 29.725298188295074 ], [ -95.430113016672479, 29.725306187795976 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 607, "Tract": "48201412400", "Area_SqMi": 0.65217944795550797, "total_2009": 500, "total_2010": 571, "total_2011": 609, "total_2012": 580, "total_2013": 613, "total_2014": 641, "total_2015": 695, "total_2016": 691, "total_2017": 742, "total_2018": 740, "total_2019": 831, "total_2020": 811, "age1": 309, "age2": 522, "age3": 265, "earn1": 307, "earn2": 327, "earn3": 462, "naics_s01": 0, "naics_s02": 4, "naics_s03": 13, "naics_s04": 10, "naics_s05": 0, "naics_s06": 9, "naics_s07": 111, "naics_s08": 0, "naics_s09": 3, "naics_s10": 35, "naics_s11": 14, "naics_s12": 48, "naics_s13": 6, "naics_s14": 44, "naics_s15": 2, "naics_s16": 53, "naics_s17": 94, "naics_s18": 188, "naics_s19": 321, "naics_s20": 141, "race1": 855, "race2": 127, "race3": 10, "race4": 84, "race5": 3, "race6": 17, "ethnicity1": 746, "ethnicity2": 350, "edu1": 191, "edu2": 169, "edu3": 197, "edu4": 230, "Shape_Length": 26495.646844008326, "Shape_Area": 18181646.792718757, "total_2021": 1042, "total_2022": 1096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.441276019824159, 29.721247186672436 ], [ -95.44126601949263, 29.720694186578633 ], [ -95.4412570200913, 29.720212186401351 ], [ -95.441257019902196, 29.719867186313106 ], [ -95.441247019352119, 29.719499186103718 ], [ -95.4412310197728, 29.719037185954335 ], [ -95.441232020164591, 29.71878018647206 ], [ -95.441218019614624, 29.718210186429559 ], [ -95.441211020087621, 29.717349185880977 ], [ -95.441198019382355, 29.716702185461244 ], [ -95.441184019420092, 29.716039185795253 ], [ -95.441173019429058, 29.715293185731145 ], [ -95.441153019178529, 29.714533185299064 ], [ -95.441141019117737, 29.713742185066504 ], [ -95.441128019922004, 29.712946185351409 ], [ -95.441114018935139, 29.712240184878716 ], [ -95.441105019592584, 29.711537184929554 ], [ -95.441104019754093, 29.710838184983306 ], [ -95.441083018885791, 29.710114184058636 ], [ -95.441063019479088, 29.709391184471279 ], [ -95.441048019576797, 29.708696183678864 ], [ -95.441063019754452, 29.70843918361108 ], [ -95.44107001920564, 29.7081911843926 ], [ -95.441029019626995, 29.707612184163963 ], [ -95.441011018831844, 29.706712183487475 ], [ -95.44099201908881, 29.705977183594914 ], [ -95.440209018469588, 29.705990183289067 ], [ -95.439611018459502, 29.705994183168407 ], [ -95.437772018765386, 29.706019184106776 ], [ -95.437840018839722, 29.707224183764556 ], [ -95.437886018295217, 29.708026184246386 ], [ -95.437893018922352, 29.708732184406845 ], [ -95.437871018006646, 29.709440184248098 ], [ -95.437876018287525, 29.710144184801141 ], [ -95.437899018530771, 29.710870184339061 ], [ -95.437919018299382, 29.711584185169151 ], [ -95.437908018711454, 29.712286184627157 ], [ -95.437928019103424, 29.712989185355624 ], [ -95.437917018622812, 29.713781185331797 ], [ -95.437945018917418, 29.714597185199302 ], [ -95.437684018213744, 29.714674185656527 ], [ -95.437356018703923, 29.714851185810726 ], [ -95.433833018169551, 29.714909185197762 ], [ -95.433228017717809, 29.714908185661407 ], [ -95.433140017910333, 29.714908185464321 ], [ -95.433073017782903, 29.712731185628449 ], [ -95.433042017392779, 29.71186318489471 ], [ -95.433048017401788, 29.711572185174163 ], [ -95.433035017435841, 29.710950184471422 ], [ -95.433009017754401, 29.709745184149529 ], [ -95.433090017617559, 29.709138184052971 ], [ -95.433128017560819, 29.709058184711022 ], [ -95.433187017599892, 29.708930184022755 ], [ -95.43311701719918, 29.707896184545959 ], [ -95.433087017158755, 29.707447183772636 ], [ -95.433094017279984, 29.707035183800389 ], [ -95.433099017646242, 29.706772183927221 ], [ -95.433201016619705, 29.706045183644243 ], [ -95.433142017597405, 29.706046183996726 ], [ -95.433110016782436, 29.70604618381364 ], [ -95.43304901677314, 29.706036184215058 ], [ -95.432704017118553, 29.7060561835413 ], [ -95.432028016417277, 29.706070183836893 ], [ -95.431082016886506, 29.706063184069993 ], [ -95.43090401604195, 29.706068183790439 ], [ -95.430129016085459, 29.706073184063289 ], [ -95.429779016047917, 29.706075184248856 ], [ -95.429795015802057, 29.706849184271363 ], [ -95.42980601669845, 29.70739018399783 ], [ -95.429840016325215, 29.709180184208538 ], [ -95.429868016033922, 29.710961184702921 ], [ -95.429886016539299, 29.71177918501996 ], [ -95.429892016219483, 29.71276718531044 ], [ -95.429925017037831, 29.714936185529467 ], [ -95.429954016570107, 29.715995185898173 ], [ -95.429970016976327, 29.716978186381699 ], [ -95.429991016471931, 29.71797218609553 ], [ -95.430008016693321, 29.718962186655897 ], [ -95.430028016674783, 29.719943187016629 ], [ -95.430047016952997, 29.720941187373874 ], [ -95.430065017311307, 29.721920186851968 ], [ -95.430079017336027, 29.722925187121888 ], [ -95.430093017116988, 29.723615187213056 ], [ -95.430087017290802, 29.723918187895794 ], [ -95.430113016672479, 29.725306187795976 ], [ -95.43096801753029, 29.725293187514406 ], [ -95.431144017764382, 29.725294187683446 ], [ -95.431233017511076, 29.725295187759521 ], [ -95.432350017400623, 29.7252881874909 ], [ -95.433371018445953, 29.725249187878411 ], [ -95.433542018165809, 29.725162187721281 ], [ -95.43626001888984, 29.723779187067418 ], [ -95.436378019117612, 29.7237361870149 ], [ -95.437546018587696, 29.723122187581264 ], [ -95.438382019104566, 29.722721186618148 ], [ -95.438978019248367, 29.722399187312664 ], [ -95.439242019461801, 29.722258186645551 ], [ -95.440172019687509, 29.721808186828479 ], [ -95.440308019340264, 29.721743186447664 ], [ -95.441276019824159, 29.721247186672436 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 608, "Tract": "48201332600", "Area_SqMi": 1.2656690564224662, "total_2009": 891, "total_2010": 991, "total_2011": 1051, "total_2012": 1212, "total_2013": 1353, "total_2014": 1151, "total_2015": 1057, "total_2016": 1067, "total_2017": 1087, "total_2018": 1281, "total_2019": 1213, "total_2020": 1354, "age1": 224, "age2": 527, "age3": 291, "earn1": 116, "earn2": 348, "earn3": 578, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 181, "naics_s05": 272, "naics_s06": 95, "naics_s07": 192, "naics_s08": 30, "naics_s09": 0, "naics_s10": 8, "naics_s11": 19, "naics_s12": 0, "naics_s13": 0, "naics_s14": 23, "naics_s15": 36, "naics_s16": 133, "naics_s17": 0, "naics_s18": 8, "naics_s19": 45, "naics_s20": 0, "race1": 773, "race2": 207, "race3": 9, "race4": 37, "race5": 3, "race6": 13, "ethnicity1": 570, "ethnicity2": 472, "edu1": 192, "edu2": 242, "edu3": 250, "edu4": 134, "Shape_Length": 26568.218420521142, "Shape_Area": 35284687.078818828, "total_2021": 1246, "total_2022": 1042 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.32105498746057, 29.677903181767221 ], [ -95.321461987714429, 29.677803181504601 ], [ -95.319990986621434, 29.672895181154047 ], [ -95.319548986438761, 29.671421180412182 ], [ -95.3187079862671, 29.668685180113961 ], [ -95.317976985540668, 29.666183179394658 ], [ -95.317315985958885, 29.666340179758532 ], [ -95.316839985460149, 29.666440179168386 ], [ -95.315483985253735, 29.666651179327403 ], [ -95.314501985466094, 29.666835179551391 ], [ -95.313263984755025, 29.667114179477071 ], [ -95.312260983934777, 29.667332180289922 ], [ -95.311361984257687, 29.667546179756272 ], [ -95.310463983952246, 29.667729180333634 ], [ -95.310225983599111, 29.667794179732411 ], [ -95.309984983992891, 29.667850180043715 ], [ -95.309766984149078, 29.667895179900427 ], [ -95.309579983612309, 29.667934179752571 ], [ -95.308738983245803, 29.668113180497254 ], [ -95.307331982831769, 29.668517180343436 ], [ -95.307084982755228, 29.668593180011737 ], [ -95.306681983049586, 29.668686180196634 ], [ -95.306145982555577, 29.668966180316918 ], [ -95.305968983005286, 29.669061180490374 ], [ -95.305461982792409, 29.669325180668018 ], [ -95.305016982549404, 29.669581180770464 ], [ -95.304732982261669, 29.66974818111715 ], [ -95.30388398273189, 29.670246180590418 ], [ -95.303010982655579, 29.670865181241819 ], [ -95.302203981535314, 29.671551180968553 ], [ -95.301935981621696, 29.671790181216888 ], [ -95.301345982029773, 29.672238181789169 ], [ -95.300549981795896, 29.672606181380033 ], [ -95.300058981026979, 29.67276118163079 ], [ -95.299787981953159, 29.672825181400064 ], [ -95.297997980568837, 29.673122181420876 ], [ -95.29785898062444, 29.673144181198282 ], [ -95.295595980958112, 29.673502181559009 ], [ -95.294578979910455, 29.673657181491272 ], [ -95.293829980216444, 29.673735182126961 ], [ -95.292878979515251, 29.673763182035046 ], [ -95.291749979708797, 29.673767181578217 ], [ -95.291020979602095, 29.6736921819138 ], [ -95.290550979416139, 29.673596182295089 ], [ -95.290453979139016, 29.673571182376698 ], [ -95.290331978897655, 29.673540181733461 ], [ -95.290273979521601, 29.673525182022146 ], [ -95.290214979568731, 29.673510181639795 ], [ -95.290137978604477, 29.673490181508321 ], [ -95.290054979439731, 29.673468181713794 ], [ -95.289615979101157, 29.673349181975752 ], [ -95.289266979253782, 29.67325518169423 ], [ -95.289068978257276, 29.673182181761636 ], [ -95.289084978323771, 29.673869181790472 ], [ -95.28908697867918, 29.673942182275947 ], [ -95.289088978787831, 29.674029181931608 ], [ -95.289090979306692, 29.674095181926635 ], [ -95.289097978423385, 29.674410182304293 ], [ -95.28933897891244, 29.674864182339345 ], [ -95.289396979262136, 29.675015182431622 ], [ -95.289511979301736, 29.675276182733345 ], [ -95.28990297912631, 29.675802182511234 ], [ -95.290012978878664, 29.675967182621029 ], [ -95.290571978921307, 29.676762182189588 ], [ -95.291025979406569, 29.677440182678875 ], [ -95.291117979001569, 29.677571182741122 ], [ -95.291760979323556, 29.678478183112311 ], [ -95.292046980212817, 29.678845183277858 ], [ -95.292256979473549, 29.679175183036779 ], [ -95.292905979902471, 29.680044183112535 ], [ -95.293270980637601, 29.680489183078393 ], [ -95.293452980670367, 29.680758183330767 ], [ -95.293907980825963, 29.681456183169917 ], [ -95.294224980801886, 29.681446183143034 ], [ -95.298694982068099, 29.681443183239367 ], [ -95.30142098225852, 29.681432182918748 ], [ -95.301520982016896, 29.68143518364473 ], [ -95.303190983235311, 29.681440183348755 ], [ -95.304110982758175, 29.681426183288568 ], [ -95.305578982874295, 29.681423182971709 ], [ -95.306094983727789, 29.681308183241772 ], [ -95.306385983666587, 29.681233182884885 ], [ -95.307172983293441, 29.681068182708589 ], [ -95.307423983291741, 29.681005183173298 ], [ -95.307949983526925, 29.680894183042838 ], [ -95.308375983820397, 29.680801183043439 ], [ -95.308741983878903, 29.680716182797234 ], [ -95.309360984319923, 29.680568183049871 ], [ -95.309534984747543, 29.680528182832042 ], [ -95.309767984389268, 29.680475183015979 ], [ -95.310316984091202, 29.680359182914824 ], [ -95.311093984800493, 29.680174183037689 ], [ -95.311881985296907, 29.679998182855531 ], [ -95.312273984782038, 29.679903182374744 ], [ -95.312678984703211, 29.679820182733121 ], [ -95.313112984853305, 29.679722182336796 ], [ -95.313453985138409, 29.679644182800928 ], [ -95.313997985555545, 29.679512182375152 ], [ -95.314246985730847, 29.679458182808244 ], [ -95.314878985340329, 29.679307182128319 ], [ -95.315042986147986, 29.679282182324624 ], [ -95.315781986316864, 29.67909818234823 ], [ -95.316593985973412, 29.678928181795477 ], [ -95.316779986179114, 29.678877182593364 ], [ -95.317391986337213, 29.678734182136708 ], [ -95.318187986004475, 29.678555182500855 ], [ -95.318975986782519, 29.678376182148948 ], [ -95.319515987058864, 29.678257182126099 ], [ -95.32055198729276, 29.678029181532338 ], [ -95.32105498746057, 29.677903181767221 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 609, "Tract": "48201412700", "Area_SqMi": 0.79422284219841677, "total_2009": 4899, "total_2010": 5482, "total_2011": 4090, "total_2012": 3881, "total_2013": 4393, "total_2014": 5293, "total_2015": 7236, "total_2016": 8038, "total_2017": 7068, "total_2018": 5053, "total_2019": 4003, "total_2020": 2964, "age1": 574, "age2": 1853, "age3": 781, "earn1": 428, "earn2": 807, "earn3": 1973, "naics_s01": 0, "naics_s02": 0, "naics_s03": 206, "naics_s04": 582, "naics_s05": 236, "naics_s06": 70, "naics_s07": 9, "naics_s08": 69, "naics_s09": 1, "naics_s10": 129, "naics_s11": 119, "naics_s12": 286, "naics_s13": 0, "naics_s14": 278, "naics_s15": 201, "naics_s16": 693, "naics_s17": 0, "naics_s18": 142, "naics_s19": 187, "naics_s20": 0, "race1": 2430, "race2": 508, "race3": 23, "race4": 193, "race5": 6, "race6": 48, "ethnicity1": 2017, "ethnicity2": 1191, "edu1": 608, "edu2": 626, "edu3": 745, "edu4": 655, "Shape_Length": 20035.810762489524, "Shape_Area": 22141573.514512133, "total_2021": 2757, "total_2022": 3208 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.460315024465416, 29.720243186028959 ], [ -95.460309024710995, 29.719845185865399 ], [ -95.460290024219972, 29.716816185227948 ], [ -95.460289024471848, 29.716738184685617 ], [ -95.460289024958271, 29.716665185112344 ], [ -95.460288024414552, 29.716520184910642 ], [ -95.460253023918909, 29.712634184355569 ], [ -95.460240024472341, 29.711774183689133 ], [ -95.460236024183601, 29.711583184040254 ], [ -95.460233024393517, 29.711367183751371 ], [ -95.460222023855266, 29.710631184012463 ], [ -95.460234024416025, 29.709865183833774 ], [ -95.460167024647902, 29.709141183995587 ], [ -95.460119023743019, 29.70874318365076 ], [ -95.460043024169707, 29.708237183044393 ], [ -95.45989302355008, 29.707692182957782 ], [ -95.459503023538971, 29.705988182928742 ], [ -95.459478023651798, 29.705892183208366 ], [ -95.459460024189838, 29.705779182831161 ], [ -95.459221023967274, 29.705775183106081 ], [ -95.4588900232296, 29.705770182898394 ], [ -95.458571023964709, 29.705772182521343 ], [ -95.458046023771658, 29.705786182627914 ], [ -95.457848023239578, 29.705790182765845 ], [ -95.457015023238682, 29.705798183228858 ], [ -95.456530022760276, 29.705814183391492 ], [ -95.45619602300296, 29.705825182567949 ], [ -95.455455023278162, 29.705818182820259 ], [ -95.454419022577852, 29.705831182913826 ], [ -95.453593021870788, 29.705848182654552 ], [ -95.453354021944691, 29.705848182987339 ], [ -95.453024021946447, 29.705854182869153 ], [ -95.452515021969901, 29.705861183282011 ], [ -95.45128502195864, 29.705862183451437 ], [ -95.449446021378805, 29.705900183029858 ], [ -95.448644020869324, 29.70590818336002 ], [ -95.448041021018383, 29.705922183627813 ], [ -95.447690020880529, 29.705922183001068 ], [ -95.447567020614102, 29.705922183499315 ], [ -95.447416021214721, 29.705922183144498 ], [ -95.447397021143274, 29.70592318296384 ], [ -95.447484021025261, 29.710042184443619 ], [ -95.447537021337197, 29.712384184523597 ], [ -95.447579020915924, 29.71412818543293 ], [ -95.447597021727304, 29.714992184736154 ], [ -95.44760302162878, 29.715211185479308 ], [ -95.447603020841228, 29.715846185395225 ], [ -95.447650021464156, 29.717984185995093 ], [ -95.447698021430142, 29.719323186082281 ], [ -95.447778021517962, 29.722714186487661 ], [ -95.447923021480662, 29.722713186304876 ], [ -95.448226022024897, 29.722712186430776 ], [ -95.449657022452655, 29.722696186375288 ], [ -95.450224022414119, 29.722689186371561 ], [ -95.45056802245908, 29.722685186833321 ], [ -95.450683022607365, 29.722684186648628 ], [ -95.451036022781778, 29.722680186996559 ], [ -95.451402022817973, 29.722675186761357 ], [ -95.451520022597023, 29.722673186652518 ], [ -95.451513022300347, 29.722122186633424 ], [ -95.451532022972529, 29.721631186216911 ], [ -95.451521022063574, 29.721520186638084 ], [ -95.451490022461329, 29.720404186038884 ], [ -95.452006022840948, 29.720392186390345 ], [ -95.454027022769807, 29.720377186072575 ], [ -95.454586023145154, 29.720362186110364 ], [ -95.455656023753065, 29.720338186267313 ], [ -95.459781024235312, 29.720313186095691 ], [ -95.459889024079189, 29.72029818604641 ], [ -95.460133025175693, 29.720267185396715 ], [ -95.460315024465416, 29.720243186028959 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 610, "Tract": "48201412800", "Area_SqMi": 0.78696971892628831, "total_2009": 154, "total_2010": 142, "total_2011": 265, "total_2012": 254, "total_2013": 260, "total_2014": 276, "total_2015": 286, "total_2016": 227, "total_2017": 331, "total_2018": 301, "total_2019": 356, "total_2020": 357, "age1": 68, "age2": 179, "age3": 109, "earn1": 127, "earn2": 97, "earn3": 132, "naics_s01": 0, "naics_s02": 4, "naics_s03": 16, "naics_s04": 16, "naics_s05": 0, "naics_s06": 12, "naics_s07": 6, "naics_s08": 19, "naics_s09": 0, "naics_s10": 5, "naics_s11": 7, "naics_s12": 18, "naics_s13": 0, "naics_s14": 16, "naics_s15": 31, "naics_s16": 27, "naics_s17": 5, "naics_s18": 119, "naics_s19": 55, "naics_s20": 0, "race1": 246, "race2": 50, "race3": 2, "race4": 46, "race5": 5, "race6": 7, "ethnicity1": 230, "ethnicity2": 126, "edu1": 77, "edu2": 65, "edu3": 62, "edu4": 84, "Shape_Length": 19502.325997878928, "Shape_Area": 21939368.851529736, "total_2021": 378, "total_2022": 356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.459460024189838, 29.705779182831161 ], [ -95.459428023819825, 29.70558218277618 ], [ -95.45932902379694, 29.704973182711381 ], [ -95.45927302400284, 29.702773181845384 ], [ -95.459271023916671, 29.702216181726648 ], [ -95.459219023675118, 29.700728182192719 ], [ -95.459222023759125, 29.698670181848087 ], [ -95.459222023164173, 29.698544181266225 ], [ -95.459223023520252, 29.698425181101054 ], [ -95.45922402334692, 29.697824180934077 ], [ -95.45922502339846, 29.696854181062381 ], [ -95.459216022883638, 29.696265180682648 ], [ -95.459198023259759, 29.694938180989261 ], [ -95.459198023405946, 29.694916180428837 ], [ -95.459152022683043, 29.691639180342897 ], [ -95.459111023499773, 29.690230179544702 ], [ -95.459107022990523, 29.690088179731632 ], [ -95.458888023429921, 29.690095180006761 ], [ -95.458556023238813, 29.690106179757468 ], [ -95.451546021043271, 29.690155179680794 ], [ -95.451077020502638, 29.690158180364801 ], [ -95.451074020491887, 29.690032180078951 ], [ -95.451070020738157, 29.689879179874072 ], [ -95.451045020786665, 29.689311180016269 ], [ -95.449086020562106, 29.689884179566825 ], [ -95.448027019849903, 29.689942180105788 ], [ -95.447387019706468, 29.689965179677127 ], [ -95.447276019949939, 29.689969179759583 ], [ -95.44723101952421, 29.689968179863786 ], [ -95.447061020382435, 29.68996217984596 ], [ -95.447086019576261, 29.690756180287721 ], [ -95.44709101972542, 29.690976180514131 ], [ -95.447103019611873, 29.691464179934737 ], [ -95.447109020379415, 29.691815180635608 ], [ -95.447115020526937, 29.692167180536622 ], [ -95.447119019686625, 29.692652180991168 ], [ -95.447121020163834, 29.692885180222461 ], [ -95.447126020333101, 29.693511180771203 ], [ -95.447127020140059, 29.693562180761081 ], [ -95.44713902009353, 29.69426418078918 ], [ -95.447141020022499, 29.694340181316619 ], [ -95.447163020324453, 29.694972181343008 ], [ -95.447170020143744, 29.695263181057477 ], [ -95.447181020608468, 29.69567518157945 ], [ -95.447187020487007, 29.696362181315706 ], [ -95.44719302014181, 29.697075181243523 ], [ -95.447210020171369, 29.697778181617551 ], [ -95.44722802088252, 29.698465181615749 ], [ -95.447252020620709, 29.699173182224452 ], [ -95.447264020647651, 29.699865182377653 ], [ -95.447282020792002, 29.700584182257014 ], [ -95.447294020507769, 29.701286182732616 ], [ -95.447328020745402, 29.701926182424209 ], [ -95.447341020302062, 29.7033161830796 ], [ -95.447353021137118, 29.704227182688808 ], [ -95.447397021143274, 29.70592318296384 ], [ -95.447416021214721, 29.705922183144498 ], [ -95.447567020614102, 29.705922183499315 ], [ -95.447690020880529, 29.705922183001068 ], [ -95.448041021018383, 29.705922183627813 ], [ -95.448644020869324, 29.70590818336002 ], [ -95.449446021378805, 29.705900183029858 ], [ -95.45128502195864, 29.705862183451437 ], [ -95.452515021969901, 29.705861183282011 ], [ -95.453024021946447, 29.705854182869153 ], [ -95.453354021944691, 29.705848182987339 ], [ -95.453593021870788, 29.705848182654552 ], [ -95.454419022577852, 29.705831182913826 ], [ -95.455455023278162, 29.705818182820259 ], [ -95.45619602300296, 29.705825182567949 ], [ -95.456530022760276, 29.705814183391492 ], [ -95.457015023238682, 29.705798183228858 ], [ -95.457848023239578, 29.705790182765845 ], [ -95.458046023771658, 29.705786182627914 ], [ -95.458571023964709, 29.705772182521343 ], [ -95.4588900232296, 29.705770182898394 ], [ -95.459221023967274, 29.705775183106081 ], [ -95.459460024189838, 29.705779182831161 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 611, "Tract": "48201413100", "Area_SqMi": 0.55887756803052901, "total_2009": 104, "total_2010": 95, "total_2011": 109, "total_2012": 188, "total_2013": 234, "total_2014": 271, "total_2015": 160, "total_2016": 168, "total_2017": 170, "total_2018": 138, "total_2019": 126, "total_2020": 138, "age1": 38, "age2": 123, "age3": 67, "earn1": 56, "earn2": 89, "earn3": 83, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 2, "naics_s05": 1, "naics_s06": 2, "naics_s07": 0, "naics_s08": 0, "naics_s09": 2, "naics_s10": 4, "naics_s11": 8, "naics_s12": 40, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 93, "naics_s17": 0, "naics_s18": 0, "naics_s19": 72, "naics_s20": 0, "race1": 166, "race2": 27, "race3": 5, "race4": 18, "race5": 0, "race6": 12, "ethnicity1": 158, "ethnicity2": 70, "edu1": 48, "edu2": 39, "edu3": 50, "edu4": 53, "Shape_Length": 19955.512944423946, "Shape_Area": 15580550.068173777, "total_2021": 135, "total_2022": 228 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.440086017902985, 29.69166718082721 ], [ -95.4400920184341, 29.691119180701453 ], [ -95.440078018446059, 29.690765180686096 ], [ -95.440077017901189, 29.690747180184935 ], [ -95.4400760180406, 29.690642180676363 ], [ -95.439746018484399, 29.690496180822127 ], [ -95.438934017880271, 29.690009180631073 ], [ -95.43867101807615, 29.689908180434205 ], [ -95.438409017883316, 29.689888180070053 ], [ -95.43820601814862, 29.689913180460046 ], [ -95.437980017472398, 29.690001180560994 ], [ -95.43612401717661, 29.690864180862935 ], [ -95.435812016807859, 29.691095180946064 ], [ -95.435147016825056, 29.691787181278769 ], [ -95.434995017158442, 29.691945180605906 ], [ -95.434672016591406, 29.692096180604221 ], [ -95.434182016354356, 29.692103181292246 ], [ -95.432615016453056, 29.691302180483216 ], [ -95.432275016118311, 29.691176180351665 ], [ -95.431993016072695, 29.691125180386855 ], [ -95.430848015847687, 29.691136181219825 ], [ -95.430670015651756, 29.69122218096582 ], [ -95.429452015826683, 29.691539181310347 ], [ -95.429042014991595, 29.691835180799899 ], [ -95.428831014865153, 29.692182181382574 ], [ -95.428602015476358, 29.693782181036347 ], [ -95.427064015048799, 29.695690181747839 ], [ -95.426940014660573, 29.695825181849006 ], [ -95.426989015416552, 29.695949181837186 ], [ -95.427183015025719, 29.696439182209186 ], [ -95.427236015246422, 29.696671182028183 ], [ -95.427289014972672, 29.697130182113114 ], [ -95.427291015037042, 29.697590181949771 ], [ -95.427328015473762, 29.698489182106268 ], [ -95.427337015081946, 29.699165182850155 ], [ -95.427344015720138, 29.699722182916585 ], [ -95.427360014946544, 29.700552182907145 ], [ -95.427366015174485, 29.701409182826033 ], [ -95.427386015716934, 29.702229182919869 ], [ -95.427393015408185, 29.702621183104014 ], [ -95.427401015856631, 29.70303918327993 ], [ -95.427425015626412, 29.703834183820035 ], [ -95.427426015800904, 29.703951183463111 ], [ -95.427429015827073, 29.704407183237873 ], [ -95.427434015445044, 29.70478818409855 ], [ -95.427431015187651, 29.704878183853463 ], [ -95.427444015805705, 29.705232183616168 ], [ -95.427455015615124, 29.706098183611353 ], [ -95.427998015962928, 29.706083183812975 ], [ -95.42864201576846, 29.706092183553793 ], [ -95.429244015720258, 29.706081183829834 ], [ -95.429779016047917, 29.706075184248856 ], [ -95.430129016085459, 29.706073184063289 ], [ -95.43090401604195, 29.706068183790439 ], [ -95.431082016886506, 29.706063184069993 ], [ -95.432028016417277, 29.706070183836893 ], [ -95.432704017118553, 29.7060561835413 ], [ -95.43304901677314, 29.706036184215058 ], [ -95.433110016782436, 29.70604618381364 ], [ -95.433142017597405, 29.706046183996726 ], [ -95.433132017518076, 29.705237184070434 ], [ -95.433126016841456, 29.704868183579634 ], [ -95.433124017144337, 29.70475918315589 ], [ -95.433788016823911, 29.70475018370805 ], [ -95.433967017459409, 29.704747183677135 ], [ -95.434129017774268, 29.704750183900437 ], [ -95.434357017512781, 29.704748183816612 ], [ -95.434717017213131, 29.704746183454386 ], [ -95.435128017501327, 29.704744183919477 ], [ -95.435583017169321, 29.704741183294956 ], [ -95.435582017410781, 29.704697183382667 ], [ -95.43558401795552, 29.704594183026604 ], [ -95.437174018423093, 29.704584183123533 ], [ -95.437179017873021, 29.703736183585775 ], [ -95.437171018120637, 29.702816182704954 ], [ -95.437166018234763, 29.701968183033241 ], [ -95.437158017847736, 29.70110718259528 ], [ -95.437141017428658, 29.700255182192681 ], [ -95.437139017698897, 29.700142182097828 ], [ -95.43714901762867, 29.699404182534838 ], [ -95.43712501786959, 29.698539182180056 ], [ -95.437177017386873, 29.697699181905776 ], [ -95.437302017608303, 29.696853181991493 ], [ -95.437320017304231, 29.695991181470259 ], [ -95.437237017156278, 29.695140181644966 ], [ -95.437083017265039, 29.694304181347785 ], [ -95.436799017895567, 29.693457181479907 ], [ -95.436537017545575, 29.692867181372204 ], [ -95.436127016832629, 29.692220181052914 ], [ -95.435943016860449, 29.691969180529757 ], [ -95.435904017119981, 29.691811181252827 ], [ -95.436077017622594, 29.691553180912997 ], [ -95.437212017873961, 29.690989180439814 ], [ -95.43818501761146, 29.690567180234947 ], [ -95.438443017597777, 29.690488180176494 ], [ -95.438659018012231, 29.690527180361279 ], [ -95.438950017580623, 29.690671180810188 ], [ -95.439056017764656, 29.690786180513268 ], [ -95.439056018337311, 29.691036180467322 ], [ -95.439057017594649, 29.691499180378838 ], [ -95.439046017704555, 29.691670180620516 ], [ -95.440086017902985, 29.69166718082721 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 612, "Tract": "48339693002", "Area_SqMi": 20.937942279943247, "total_2009": 1536, "total_2010": 1460, "total_2011": 1373, "total_2012": 1383, "total_2013": 1528, "total_2014": 1663, "total_2015": 1509, "total_2016": 1435, "total_2017": 1413, "total_2018": 1452, "total_2019": 1610, "total_2020": 1490, "age1": 249, "age2": 726, "age3": 302, "earn1": 153, "earn2": 271, "earn3": 853, "naics_s01": 3, "naics_s02": 21, "naics_s03": 3, "naics_s04": 256, "naics_s05": 334, "naics_s06": 111, "naics_s07": 171, "naics_s08": 31, "naics_s09": 2, "naics_s10": 0, "naics_s11": 10, "naics_s12": 11, "naics_s13": 0, "naics_s14": 142, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 70, "naics_s19": 35, "naics_s20": 77, "race1": 1101, "race2": 111, "race3": 14, "race4": 38, "race5": 3, "race6": 10, "ethnicity1": 905, "ethnicity2": 372, "edu1": 245, "edu2": 297, "edu3": 299, "edu4": 187, "Shape_Length": 106800.70447389137, "Shape_Area": 583713995.11845887, "total_2021": 1331, "total_2022": 1277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.419296042098765, 30.320126309432606 ], [ -95.419262041742755, 30.319985309375831 ], [ -95.419203041702048, 30.31983430898514 ], [ -95.419169041673896, 30.319759309199931 ], [ -95.419123041339319, 30.319682309233084 ], [ -95.419066041574126, 30.319589309482691 ], [ -95.418847041830205, 30.319338308815436 ], [ -95.418544041711911, 30.319118308811245 ], [ -95.41787004086757, 30.318752309278523 ], [ -95.41612004121373, 30.31780230889537 ], [ -95.415963040397045, 30.317713309272193 ], [ -95.415832040706746, 30.317639308781732 ], [ -95.415611040743968, 30.31751430902343 ], [ -95.415163040306382, 30.317261308652977 ], [ -95.413766040427106, 30.316471309144273 ], [ -95.412099039522587, 30.315497308633891 ], [ -95.41180503957402, 30.315307308235475 ], [ -95.411156039097705, 30.314886308602983 ], [ -95.410823039264841, 30.314650308725902 ], [ -95.407981038394809, 30.312485308518372 ], [ -95.405659038202415, 30.310715308149668 ], [ -95.4014660365672, 30.307501307147266 ], [ -95.40026403633685, 30.30658030760317 ], [ -95.399424036304339, 30.30595030747391 ], [ -95.396780034788989, 30.303907306599289 ], [ -95.396446035015387, 30.303651306529112 ], [ -95.393518034004202, 30.301402306260872 ], [ -95.392454034171379, 30.300593306474994 ], [ -95.39205303359546, 30.300287306139381 ], [ -95.390396033368688, 30.299027305886391 ], [ -95.389464033057067, 30.298223305732289 ], [ -95.388672032427593, 30.297418305797308 ], [ -95.387089032579695, 30.295505305126333 ], [ -95.386476031559951, 30.29490330538906 ], [ -95.386183031580444, 30.294661305151902 ], [ -95.384477031902506, 30.293617305235809 ], [ -95.382968031360676, 30.292748305256787 ], [ -95.381995030677984, 30.292161305222503 ], [ -95.381551030448151, 30.29192130454636 ], [ -95.381049030763236, 30.291629305080544 ], [ -95.380803030904147, 30.291477304697342 ], [ -95.380318029812287, 30.291161305105373 ], [ -95.380166030469567, 30.291056304655282 ], [ -95.380082030677713, 30.290998305319562 ], [ -95.379850029818641, 30.290832305251946 ], [ -95.377073028874847, 30.288711304492296 ], [ -95.376746029372924, 30.288457304898809 ], [ -95.376165029461831, 30.287988304168294 ], [ -95.373286028061628, 30.285803303614777 ], [ -95.369437027576254, 30.282831304019442 ], [ -95.369143027310969, 30.282570303878121 ], [ -95.369040027056684, 30.282484303938677 ], [ -95.36872502685695, 30.282239303890165 ], [ -95.368394026966882, 30.282010303467189 ], [ -95.368167026569736, 30.281867303689918 ], [ -95.367937026835051, 30.281731303627549 ], [ -95.367575026819338, 30.281537303376663 ], [ -95.36733102653119, 30.281418303181898 ], [ -95.367079026071465, 30.281306303139058 ], [ -95.365537025819791, 30.280660303651626 ], [ -95.363333024924088, 30.279728302806024 ], [ -95.363029025502598, 30.27960430292158 ], [ -95.362308025631123, 30.279266302694545 ], [ -95.362131025488225, 30.279176303299888 ], [ -95.361385025349321, 30.278768302627718 ], [ -95.358661024565222, 30.276775302720463 ], [ -95.358195023956455, 30.276434302448216 ], [ -95.35695202348613, 30.275508302102136 ], [ -95.355824023185434, 30.274669302678742 ], [ -95.355538023557358, 30.274456302296173 ], [ -95.353723022847618, 30.272822301995138 ], [ -95.35357602292369, 30.272668302009961 ], [ -95.352296021817509, 30.271328302045454 ], [ -95.351814022258083, 30.270674301340385 ], [ -95.351392021668943, 30.269992301805338 ], [ -95.350720022116121, 30.268755301772032 ], [ -95.350053021804555, 30.267931300821299 ], [ -95.349459021209512, 30.26738430103121 ], [ -95.347941020427911, 30.266206300643944 ], [ -95.347005020648368, 30.265480301149399 ], [ -95.346435020262874, 30.265039300958524 ], [ -95.346074020281549, 30.264759301032417 ], [ -95.345731020329751, 30.26449530076038 ], [ -95.344099019862412, 30.263232300640837 ], [ -95.344023019247402, 30.263173300050617 ], [ -95.342841019106061, 30.262258300210455 ], [ -95.341197018862374, 30.260986299770675 ], [ -95.340237018267871, 30.26024330029389 ], [ -95.338808018365484, 30.259142299843102 ], [ -95.337503017587764, 30.25813030003204 ], [ -95.335841017631282, 30.256847299419874 ], [ -95.335471017119659, 30.256561299865325 ], [ -95.334563016664674, 30.255859299753105 ], [ -95.333180016587249, 30.254791298956125 ], [ -95.331418016396171, 30.25342929939503 ], [ -95.331330015624218, 30.2533612990227 ], [ -95.331279015578559, 30.253322299061633 ], [ -95.330522015771308, 30.252736298538387 ], [ -95.330287015401879, 30.252555298395642 ], [ -95.329994015697309, 30.252328298877831 ], [ -95.328648015603946, 30.252709298497042 ], [ -95.327737015148941, 30.252958298814459 ], [ -95.326845014757993, 30.253202298723142 ], [ -95.324386014391806, 30.253831299404666 ], [ -95.320368013205481, 30.254926299676175 ], [ -95.316778012377384, 30.255876300197517 ], [ -95.315714012271499, 30.25616429997508 ], [ -95.315301011550815, 30.256275300271692 ], [ -95.312222011660083, 30.257110300617661 ], [ -95.309461010129823, 30.257849300819572 ], [ -95.30811801071242, 30.258228300787682 ], [ -95.308053010360737, 30.258247300344227 ], [ -95.307970010623677, 30.258269300989941 ], [ -95.305841009938618, 30.258845301126094 ], [ -95.305510010036301, 30.258934301070845 ], [ -95.302629008636444, 30.259715301677371 ], [ -95.301572008446243, 30.260001301540385 ], [ -95.302184009261495, 30.261814301725099 ], [ -95.302433009197998, 30.262459301524238 ], [ -95.302730008796587, 30.263177301864076 ], [ -95.302860009404682, 30.263480302394889 ], [ -95.303248009585872, 30.26435230238113 ], [ -95.303874009471528, 30.265668302294696 ], [ -95.30433100927813, 30.26662930245368 ], [ -95.304781010163211, 30.267574302605261 ], [ -95.304892009378136, 30.267792302381718 ], [ -95.305024010173028, 30.268098303274787 ], [ -95.305045009876338, 30.268155302973337 ], [ -95.305120010285364, 30.268359303307147 ], [ -95.305237010060793, 30.268720303321658 ], [ -95.305309010263755, 30.268942303112524 ], [ -95.30532900969159, 30.269021303038457 ], [ -95.305360010155439, 30.26914130283895 ], [ -95.305456010456027, 30.269512303059578 ], [ -95.306084009992375, 30.271954303198033 ], [ -95.306120010256706, 30.272096304088329 ], [ -95.306180010325093, 30.272327304081283 ], [ -95.306246010287538, 30.272557303405105 ], [ -95.30631401008317, 30.272936304162982 ], [ -95.306336010022576, 30.273105304213217 ], [ -95.306377010407061, 30.273603303852514 ], [ -95.306517010830689, 30.275305304043265 ], [ -95.30656201046088, 30.275952304153414 ], [ -95.306609010674507, 30.277046304558844 ], [ -95.306613010327993, 30.277211304401025 ], [ -95.30659501087294, 30.277442304740305 ], [ -95.306539011011552, 30.277985304443618 ], [ -95.306182011135135, 30.280855305159701 ], [ -95.305796010550083, 30.284275306478943 ], [ -95.305689011081796, 30.285078306393768 ], [ -95.305673010663497, 30.285254306664463 ], [ -95.305669010559043, 30.285377306656304 ], [ -95.305674010910749, 30.285507306053351 ], [ -95.305698010970033, 30.285694306500755 ], [ -95.305718010673047, 30.285788306323848 ], [ -95.305780010790755, 30.285985306227602 ], [ -95.305809011407675, 30.286060306816328 ], [ -95.305848010966585, 30.286141306212883 ], [ -95.306717011767972, 30.28754630657961 ], [ -95.307135011873754, 30.288235306459061 ], [ -95.307546011325357, 30.288914307037025 ], [ -95.308334011519875, 30.290215307006918 ], [ -95.31775501497917, 30.305649310306766 ], [ -95.318319015058151, 30.306677310298628 ], [ -95.318655014812279, 30.307660310388822 ], [ -95.318709015651649, 30.307837310883535 ], [ -95.318869015677464, 30.308356310143473 ], [ -95.319115015641302, 30.309199310440977 ], [ -95.319241015741014, 30.309995310493193 ], [ -95.319450015698933, 30.313411311989334 ], [ -95.319675015603693, 30.315896312054733 ], [ -95.319770015760227, 30.316892312401379 ], [ -95.319789016089914, 30.317168312346158 ], [ -95.319853016518451, 30.318062312059197 ], [ -95.319901016514464, 30.318749312528922 ], [ -95.320076016024828, 30.321227312837081 ], [ -95.320093016061065, 30.321427312774308 ], [ -95.320461016138466, 30.325779314459766 ], [ -95.320484016151141, 30.326112314407649 ], [ -95.320491016325676, 30.326401314250049 ], [ -95.320490016259143, 30.326666314104628 ], [ -95.320454016616992, 30.327173314158959 ], [ -95.320429016925729, 30.327385314251117 ], [ -95.320353016322116, 30.327806314847368 ], [ -95.32013801669487, 30.329120315112288 ], [ -95.319502016746128, 30.332423315289081 ], [ -95.324913018046928, 30.332787315198082 ], [ -95.325485018648095, 30.332826315231657 ], [ -95.327216018750477, 30.332942315065448 ], [ -95.328109018800745, 30.333002314779939 ], [ -95.329956019589659, 30.333008314751503 ], [ -95.332834019832021, 30.333020314944356 ], [ -95.337500021181611, 30.333040314996659 ], [ -95.33995602234954, 30.333055315265621 ], [ -95.340837022168344, 30.333054314574113 ], [ -95.341103021763061, 30.333055315189821 ], [ -95.35087202495319, 30.333098314763799 ], [ -95.353068025350183, 30.333003314318312 ], [ -95.354774025509855, 30.332862314461952 ], [ -95.355371026281276, 30.332832313947225 ], [ -95.357312026253084, 30.332590313848314 ], [ -95.358636026253222, 30.332367314408749 ], [ -95.360506027643879, 30.331981313928143 ], [ -95.361518027347927, 30.331774313693369 ], [ -95.361557026932658, 30.331764313870416 ], [ -95.362493027975177, 30.33157531412828 ], [ -95.364393027648191, 30.331191313619456 ], [ -95.37016002980144, 30.330026313435202 ], [ -95.377622031514903, 30.328502312705464 ], [ -95.378796032072358, 30.32826331212171 ], [ -95.378888031594414, 30.328244312302441 ], [ -95.383504032326684, 30.327301311780154 ], [ -95.388354034293485, 30.326301311617588 ], [ -95.389327034003344, 30.326109311764107 ], [ -95.395127035505084, 30.324917310802963 ], [ -95.395814036000942, 30.324776311207838 ], [ -95.397608035823396, 30.324414310581698 ], [ -95.397760036729224, 30.32438531141409 ], [ -95.398812037102573, 30.324187310855731 ], [ -95.3990340363775, 30.324144310715145 ], [ -95.402322037518189, 30.323506310829799 ], [ -95.402761037075081, 30.323421310562615 ], [ -95.40316003776671, 30.323338310656169 ], [ -95.403263037199551, 30.323317310141793 ], [ -95.406480038081355, 30.32265331027336 ], [ -95.413121039791079, 30.321282309562481 ], [ -95.413573040170277, 30.321181310179178 ], [ -95.414300040561969, 30.321044309778301 ], [ -95.415028040252551, 30.320892309566052 ], [ -95.416373041141441, 30.32059530914449 ], [ -95.417458040827142, 30.32037930970138 ], [ -95.418342040973172, 30.320216309812078 ], [ -95.418793041664017, 30.32015130940162 ], [ -95.419296042098765, 30.320126309432606 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 613, "Tract": "48201430200", "Area_SqMi": 0.27304725781995548, "total_2009": 48, "total_2010": 78, "total_2011": 114, "total_2012": 137, "total_2013": 136, "total_2014": 125, "total_2015": 128, "total_2016": 101, "total_2017": 65, "total_2018": 45, "total_2019": 65, "total_2020": 68, "age1": 8, "age2": 51, "age3": 23, "earn1": 15, "earn2": 24, "earn3": 43, "naics_s01": 2, "naics_s02": 21, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 5, "naics_s07": 7, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 11, "naics_s12": 1, "naics_s13": 0, "naics_s14": 7, "naics_s15": 4, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 22, "naics_s20": 0, "race1": 70, "race2": 4, "race3": 1, "race4": 6, "race5": 0, "race6": 1, "ethnicity1": 44, "ethnicity2": 38, "edu1": 20, "edu2": 16, "edu3": 17, "edu4": 21, "Shape_Length": 16683.10494622849, "Shape_Area": 7612090.2229680847, "total_2021": 71, "total_2022": 82 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.488292034545452, 29.780641196801053 ], [ -95.488297034162954, 29.780160197098592 ], [ -95.488241034995056, 29.78016019748571 ], [ -95.488242034049165, 29.780028197262066 ], [ -95.488244034970904, 29.779783197311318 ], [ -95.488250034066709, 29.779227196759713 ], [ -95.488250034822215, 29.77880519651961 ], [ -95.488251034944241, 29.77844519635989 ], [ -95.488251034064675, 29.778213196837164 ], [ -95.488256034825397, 29.777938196889103 ], [ -95.48826103414072, 29.777668196572712 ], [ -95.488261034745562, 29.777608196690696 ], [ -95.488266034881747, 29.777089196584299 ], [ -95.488241034133495, 29.777109196470132 ], [ -95.488176034283228, 29.777147196529484 ], [ -95.488022033814161, 29.77723719661973 ], [ -95.487820034222182, 29.777325196707089 ], [ -95.487475034196478, 29.777403196163561 ], [ -95.487237034543085, 29.777418196366401 ], [ -95.487052034090155, 29.777429196640398 ], [ -95.487066033979701, 29.77728519623987 ], [ -95.487065034480722, 29.776868196190758 ], [ -95.487064034508847, 29.776126196106485 ], [ -95.487064033803904, 29.775833196297757 ], [ -95.487058033740382, 29.775423195815161 ], [ -95.487044034392667, 29.77461819644693 ], [ -95.487038033714981, 29.774273196375937 ], [ -95.487029033735496, 29.77382019585102 ], [ -95.487010033549907, 29.772442195522117 ], [ -95.487007034091931, 29.771960195102611 ], [ -95.487005033654413, 29.771254195559752 ], [ -95.487006033466514, 29.770906195061308 ], [ -95.487003033577793, 29.770547194860466 ], [ -95.486989033304127, 29.770449195103794 ], [ -95.486977033794332, 29.770383194798395 ], [ -95.486982034190063, 29.769693195355604 ], [ -95.486982033976403, 29.769621194743788 ], [ -95.487042033366222, 29.769628195136427 ], [ -95.48685903339161, 29.769446194941491 ], [ -95.486677033659873, 29.769308195346809 ], [ -95.486412033755173, 29.769177194645579 ], [ -95.4861980337989, 29.769089194562167 ], [ -95.485927033046607, 29.769039195213523 ], [ -95.485756032935328, 29.769045195179974 ], [ -95.48561803329342, 29.769089194849169 ], [ -95.485479033061381, 29.76916619472221 ], [ -95.485372033466732, 29.76929819465343 ], [ -95.485253032896523, 29.769529195085866 ], [ -95.485265033105094, 29.770150195418406 ], [ -95.485203032875646, 29.770584195343325 ], [ -95.485115033171667, 29.770733195386033 ], [ -95.484881033742496, 29.770953195385026 ], [ -95.484428033142876, 29.771239195254562 ], [ -95.483936033012412, 29.771454195314298 ], [ -95.483420033377442, 29.771641195903459 ], [ -95.483187032707974, 29.771707196004282 ], [ -95.48298503281238, 29.771751195139561 ], [ -95.482840032371655, 29.771745195393709 ], [ -95.482834033014129, 29.771591195206817 ], [ -95.482884032518641, 29.7713171959257 ], [ -95.482865032542605, 29.771207195668449 ], [ -95.482896033017724, 29.770954195840034 ], [ -95.482928032580887, 29.770772195669078 ], [ -95.48300303303057, 29.770618195512384 ], [ -95.483041032863596, 29.77049219532956 ], [ -95.482972032311977, 29.770343195039011 ], [ -95.482852032579032, 29.770239194921302 ], [ -95.482650032280475, 29.770195195370519 ], [ -95.482480032734699, 29.770173195094852 ], [ -95.482291032055471, 29.770179195710497 ], [ -95.482140032696918, 29.770195195622431 ], [ -95.482033032659601, 29.770223195600725 ], [ -95.481970032016036, 29.77023919552348 ], [ -95.481649032030944, 29.770454195499955 ], [ -95.481604032582908, 29.770476195610808 ], [ -95.48154803230149, 29.770547195405676 ], [ -95.481523031879888, 29.770602195652678 ], [ -95.481510032315569, 29.770674195330596 ], [ -95.481567032614166, 29.770943195699605 ], [ -95.481668032213378, 29.771300195712023 ], [ -95.48171203212614, 29.771619195624449 ], [ -95.481674031937146, 29.771867195877395 ], [ -95.481674032724001, 29.771971195946278 ], [ -95.481700032694221, 29.77207619540383 ], [ -95.481788032266763, 29.772185195548715 ], [ -95.481675032150832, 29.77240519565542 ], [ -95.481631032103707, 29.772581195651263 ], [ -95.481624032823674, 29.772675195745766 ], [ -95.481587032162452, 29.772768196067243 ], [ -95.481568032961832, 29.772862196130252 ], [ -95.481429032380007, 29.773060195824765 ], [ -95.481303032839691, 29.773170195658388 ], [ -95.481158032814619, 29.773230195873413 ], [ -95.48090003186347, 29.773313195761041 ], [ -95.480585031948948, 29.77335719554592 ], [ -95.479718031974159, 29.773383196427869 ], [ -95.47948203167995, 29.773390196294912 ], [ -95.479129031779891, 29.773374196251151 ], [ -95.479057031788358, 29.773364196247524 ], [ -95.478883032102942, 29.773341196453522 ], [ -95.478883031953927, 29.773440195917704 ], [ -95.47894703152528, 29.773731196167358 ], [ -95.479035032205175, 29.773814195864826 ], [ -95.479129032328999, 29.773885196397774 ], [ -95.479407031568911, 29.773995196342103 ], [ -95.479463031877813, 29.774061196077735 ], [ -95.479476031860685, 29.774638196282627 ], [ -95.479464032405531, 29.774792195879776 ], [ -95.479502031863646, 29.774875195947313 ], [ -95.479565032288804, 29.774913196463594 ], [ -95.479653031954825, 29.774919196224477 ], [ -95.479804031924928, 29.774902196128078 ], [ -95.479848031637275, 29.774946196405956 ], [ -95.479861032039352, 29.775045196079432 ], [ -95.479798031850805, 29.775303196486284 ], [ -95.479804031951105, 29.775589196561508 ], [ -95.47989303220578, 29.775633196352672 ], [ -95.480031032190695, 29.775628196271533 ], [ -95.480157032325636, 29.775639196042725 ], [ -95.48029003244288, 29.775666196434184 ], [ -95.480643032751487, 29.775660196860688 ], [ -95.480863032150722, 29.775770196819323 ], [ -95.481008032389667, 29.77589119621528 ], [ -95.481109032799566, 29.776100196248738 ], [ -95.481225032794185, 29.776203196285334 ], [ -95.481361032958787, 29.776325196467649 ], [ -95.481532033098858, 29.776446196366763 ], [ -95.481777032543249, 29.776534196706432 ], [ -95.481840032272089, 29.77660619655807 ], [ -95.481859032735898, 29.776655196673406 ], [ -95.481866033044781, 29.776760196321529 ], [ -95.481891032565997, 29.776842196314202 ], [ -95.481941032737481, 29.776902196414405 ], [ -95.482023033230604, 29.776946196918487 ], [ -95.482124032497978, 29.776985196306853 ], [ -95.482225033175311, 29.777062196617191 ], [ -95.482238033028068, 29.777095197002037 ], [ -95.482238032327388, 29.777205196681159 ], [ -95.482276032496358, 29.777304196862964 ], [ -95.482566032714615, 29.777694196350783 ], [ -95.482680033073137, 29.777790196734724 ], [ -95.482812033396556, 29.777901196408916 ], [ -95.482963032607074, 29.778029196495734 ], [ -95.483221032877609, 29.778447196511426 ], [ -95.483253033465218, 29.778474197283632 ], [ -95.483530033097637, 29.778513196693925 ], [ -95.483612032859781, 29.778562196732622 ], [ -95.483707033317472, 29.778650196765145 ], [ -95.483921033221691, 29.778771196835198 ], [ -95.484060033575815, 29.77888619697076 ], [ -95.484079033545157, 29.778941197403547 ], [ -95.484072033523958, 29.779084196916362 ], [ -95.484022033803441, 29.779183196834982 ], [ -95.483965033587211, 29.779249196892181 ], [ -95.483946033154837, 29.779293197414781 ], [ -95.48394703386991, 29.779343197137138 ], [ -95.483978033876454, 29.779381197150048 ], [ -95.484073033360204, 29.7794311968321 ], [ -95.484155032954277, 29.779436196666889 ], [ -95.484363033569551, 29.779420197359183 ], [ -95.484520033367019, 29.779419196757683 ], [ -95.48460203339323, 29.779458196768093 ], [ -95.484634033775578, 29.779491196991188 ], [ -95.484646033312856, 29.779562197039862 ], [ -95.484615033449586, 29.779738197390685 ], [ -95.484501034011245, 29.779832197076335 ], [ -95.484394033733977, 29.779969197632006 ], [ -95.48436903335184, 29.78007919760498 ], [ -95.484382033970036, 29.780129197059267 ], [ -95.484382033366913, 29.780217197579464 ], [ -95.484407033350465, 29.780316197174272 ], [ -95.48439503352138, 29.78049219758422 ], [ -95.48436303368203, 29.780514197551458 ], [ -95.484287033579619, 29.780525197380808 ], [ -95.484073033317941, 29.780459197374245 ], [ -95.484004033025826, 29.780464197625459 ], [ -95.483985032901529, 29.780497197746254 ], [ -95.483985033585199, 29.780558197797241 ], [ -95.48401703314704, 29.780613197137043 ], [ -95.484061033385359, 29.780662197358737 ], [ -95.484193032992081, 29.780772197112693 ], [ -95.484231033088534, 29.780827197645479 ], [ -95.484225033407384, 29.780882197533366 ], [ -95.484105033269515, 29.780975197325802 ], [ -95.484105032991138, 29.781036197341312 ], [ -95.484155033505473, 29.781102197176939 ], [ -95.484237033756784, 29.781179197362313 ], [ -95.484300034026006, 29.781206197737866 ], [ -95.484351033766472, 29.781245197031581 ], [ -95.484414033437503, 29.781421197853241 ], [ -95.484414033811944, 29.781602197653392 ], [ -95.48443303314005, 29.781674197264415 ], [ -95.484509033768703, 29.781712197736052 ], [ -95.484553033520086, 29.781723197762453 ], [ -95.484647033350242, 29.781723197294049 ], [ -95.484759034002707, 29.781731197753786 ], [ -95.484871033346849, 29.781740197300916 ], [ -95.485088033710298, 29.781756197382414 ], [ -95.485246033541998, 29.781827197179005 ], [ -95.485341033911823, 29.78192619715217 ], [ -95.485511033867155, 29.781981198007308 ], [ -95.485712033705781, 29.781970197639485 ], [ -95.485857033748076, 29.781981197163407 ], [ -95.485946034268267, 29.782030197750903 ], [ -95.485996034124611, 29.782080197640415 ], [ -95.486009033607942, 29.782184197803399 ], [ -95.485996034204305, 29.782261197325028 ], [ -95.485977034311901, 29.78231119790809 ], [ -95.485996033552055, 29.782404197918165 ], [ -95.486324034497912, 29.782563197576572 ], [ -95.486400033860249, 29.782613197407333 ], [ -95.486463034056143, 29.782679197693799 ], [ -95.486381033770044, 29.782800197907598 ], [ -95.486381033829247, 29.78284419766976 ], [ -95.48648203433342, 29.782893197428479 ], [ -95.486532034374946, 29.782948197680451 ], [ -95.486539034128583, 29.783014197574705 ], [ -95.486507034066094, 29.783196197889865 ], [ -95.486451034029272, 29.783333197400392 ], [ -95.486429034232088, 29.783455198252167 ], [ -95.486407034245872, 29.783581197756881 ], [ -95.487634034102115, 29.783512198174037 ], [ -95.488093035012298, 29.783524197955735 ], [ -95.488226034169728, 29.78352819820466 ], [ -95.488248034876491, 29.783529197989459 ], [ -95.488279034268018, 29.782338197350562 ], [ -95.488287034107003, 29.781635197156714 ], [ -95.488289034200506, 29.780980196911472 ], [ -95.488292034545452, 29.780641196801053 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 614, "Tract": "48201430300", "Area_SqMi": 1.9540637722421499, "total_2009": 843, "total_2010": 856, "total_2011": 726, "total_2012": 668, "total_2013": 740, "total_2014": 644, "total_2015": 653, "total_2016": 425, "total_2017": 410, "total_2018": 646, "total_2019": 608, "total_2020": 587, "age1": 143, "age2": 320, "age3": 243, "earn1": 183, "earn2": 204, "earn3": 319, "naics_s01": 5, "naics_s02": 1, "naics_s03": 0, "naics_s04": 2, "naics_s05": 3, "naics_s06": 43, "naics_s07": 43, "naics_s08": 20, "naics_s09": 0, "naics_s10": 75, "naics_s11": 8, "naics_s12": 30, "naics_s13": 0, "naics_s14": 8, "naics_s15": 23, "naics_s16": 10, "naics_s17": 174, "naics_s18": 1, "naics_s19": 250, "naics_s20": 10, "race1": 597, "race2": 59, "race3": 7, "race4": 27, "race5": 4, "race6": 12, "ethnicity1": 389, "ethnicity2": 317, "edu1": 178, "edu2": 127, "edu3": 140, "edu4": 118, "Shape_Length": 39355.239717137862, "Shape_Area": 54475953.556540385, "total_2021": 661, "total_2022": 706 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508886039055511, 29.774789194884516 ], [ -95.50888903944238, 29.773902195122592 ], [ -95.508876039667143, 29.773032194589913 ], [ -95.508875039249403, 29.772538194882785 ], [ -95.508868038976743, 29.772180194347836 ], [ -95.508866039307676, 29.771327194858308 ], [ -95.508864039039693, 29.771048194551142 ], [ -95.508858039546823, 29.770405194265585 ], [ -95.50886803882014, 29.769916194281247 ], [ -95.50886903898386, 29.769735193998027 ], [ -95.508853039690862, 29.769490193859646 ], [ -95.508859039670455, 29.768896193839488 ], [ -95.508842038772855, 29.767819193746579 ], [ -95.508827038915229, 29.766928193992335 ], [ -95.508817039278441, 29.766394193507143 ], [ -95.508814038911851, 29.765440193547512 ], [ -95.508784039373893, 29.76446619343799 ], [ -95.508785039377173, 29.762579192931263 ], [ -95.507866038681897, 29.76258519322716 ], [ -95.506491038555012, 29.762593193132268 ], [ -95.506492038063541, 29.761955192435085 ], [ -95.506481037910618, 29.761646193089891 ], [ -95.506462038335684, 29.761121192415178 ], [ -95.506494038516252, 29.760848192753439 ], [ -95.506527038440666, 29.760473192570391 ], [ -95.506835037920538, 29.75784419226628 ], [ -95.50672003832868, 29.75716819137978 ], [ -95.506575037817015, 29.75634119148447 ], [ -95.506645038067006, 29.756259191453072 ], [ -95.506661038344831, 29.756229191591739 ], [ -95.506834038491746, 29.755912191184873 ], [ -95.506856038484784, 29.755793191703638 ], [ -95.506865037967771, 29.755747191525163 ], [ -95.506853037746453, 29.755561191222643 ], [ -95.506784037843602, 29.755143191647846 ], [ -95.506765038557987, 29.755077191157053 ], [ -95.50668303801092, 29.754917191376592 ], [ -95.506614037786107, 29.754884191028275 ], [ -95.50650103776016, 29.754813191550017 ], [ -95.506261037951006, 29.754708190963942 ], [ -95.505505037927279, 29.754554191377675 ], [ -95.505297038020132, 29.754488191542727 ], [ -95.505001037350198, 29.754361191247973 ], [ -95.504737037826956, 29.754229191321706 ], [ -95.504598037154267, 29.754130190920723 ], [ -95.504479037919452, 29.753949191335582 ], [ -95.504466037746852, 29.753633191181571 ], [ -95.504523037782931, 29.753487190995873 ], [ -95.504555037394084, 29.753331190882207 ], [ -95.504591037049792, 29.753052190816216 ], [ -95.504613037706278, 29.752952191172621 ], [ -95.504623037180352, 29.752931191326738 ], [ -95.504178037845222, 29.752956190963285 ], [ -95.503618037204134, 29.752958191241419 ], [ -95.503054036859908, 29.752956190816555 ], [ -95.502601037284109, 29.75295419067589 ], [ -95.502507036615114, 29.752960191113804 ], [ -95.502376036756942, 29.752968190830277 ], [ -95.501952037187422, 29.752969191269489 ], [ -95.501344037117448, 29.752970190680067 ], [ -95.501297036161731, 29.752970190987245 ], [ -95.50111403701132, 29.75297019095472 ], [ -95.501114036354636, 29.752987191211588 ], [ -95.501143036914939, 29.754161191066082 ], [ -95.501110036981245, 29.755693191964507 ], [ -95.5009210371705, 29.756761191894039 ], [ -95.500774036947746, 29.757632191968057 ], [ -95.500697036276009, 29.758089192434518 ], [ -95.500671036684125, 29.758238192204853 ], [ -95.500673036779176, 29.758437192680848 ], [ -95.500675036519382, 29.758651192241004 ], [ -95.500731037044758, 29.759290192845118 ], [ -95.500864036887521, 29.760383192541767 ], [ -95.500487036256871, 29.760280192576452 ], [ -95.500461036297708, 29.760258192396588 ], [ -95.500272036339325, 29.760159192602266 ], [ -95.500121036560913, 29.760121192291781 ], [ -95.500005036707321, 29.760149192370228 ], [ -95.499910036920156, 29.760144192612682 ], [ -95.499778036452241, 29.760188192598005 ], [ -95.499698036726087, 29.760221192840696 ], [ -95.499583036459498, 29.760270192319997 ], [ -95.499211036737492, 29.760529192464759 ], [ -95.499003036095985, 29.760787192489364 ], [ -95.498903036789386, 29.761079192923805 ], [ -95.498815036837044, 29.76141419335092 ], [ -95.498733036655011, 29.761777193174705 ], [ -95.498626036540685, 29.761931193308445 ], [ -95.498538036357985, 29.762035192776324 ], [ -95.498431036304368, 29.762080193171688 ], [ -95.498311036349349, 29.762113193523103 ], [ -95.4981850361265, 29.762118193357676 ], [ -95.498015035907272, 29.762091192893138 ], [ -95.497775036309719, 29.76200319314113 ], [ -95.497246035930644, 29.761569192682622 ], [ -95.497069036197303, 29.761552193363659 ], [ -95.496912036231123, 29.761591192679223 ], [ -95.496773035641596, 29.761657192666718 ], [ -95.496647035679416, 29.761805193009252 ], [ -95.496676035603087, 29.761948193123452 ], [ -95.496473036206609, 29.761942193406377 ], [ -95.4964300355132, 29.762084192930395 ], [ -95.496282035328107, 29.762086193090767 ], [ -95.496125035918354, 29.762196192893828 ], [ -95.496024035577236, 29.762366192806617 ], [ -95.495992035378592, 29.762498193401381 ], [ -95.496037036231911, 29.762955193269782 ], [ -95.495949035998706, 29.763224192976146 ], [ -95.495798035303352, 29.763400193870737 ], [ -95.495464035303115, 29.763653193938836 ], [ -95.495149036023207, 29.763917193238775 ], [ -95.495036035032513, 29.76409919319855 ], [ -95.494985035278688, 29.764368193326487 ], [ -95.494973035997631, 29.764511193694865 ], [ -95.49494103577662, 29.764648193712034 ], [ -95.494853035800048, 29.764896193769502 ], [ -95.49475303576871, 29.764989193354896 ], [ -95.494608035803665, 29.765055194028513 ], [ -95.494444035168087, 29.765078194172542 ], [ -95.494091035620599, 29.76510519376955 ], [ -95.493814035640085, 29.76507219423765 ], [ -95.493593035553744, 29.765023193442019 ], [ -95.493234035404654, 29.76491919393732 ], [ -95.492849035008547, 29.764726193613832 ], [ -95.492402034777569, 29.764364193381724 ], [ -95.492282034961605, 29.764188193755537 ], [ -95.492276035297223, 29.764017193755969 ], [ -95.492295034461506, 29.763830193576524 ], [ -95.492414035272475, 29.763391193419377 ], [ -95.492351035245804, 29.763248193213283 ], [ -95.492086034501938, 29.763110193382648 ], [ -95.491815034721924, 29.763023193807868 ], [ -95.49165803508383, 29.763006193785785 ], [ -95.49155103458753, 29.763028193187527 ], [ -95.491166034751416, 29.763270193822279 ], [ -95.490946034159521, 29.763463193653852 ], [ -95.49078803415064, 29.763721193660754 ], [ -95.490782034082571, 29.763886193851928 ], [ -95.490795034771011, 29.764023193561862 ], [ -95.490858034160212, 29.764166193593329 ], [ -95.49097203416288, 29.764370193402833 ], [ -95.491173034306414, 29.764513193626552 ], [ -95.491879035238611, 29.764798194177832 ], [ -95.492182034849421, 29.764985193859225 ], [ -95.492352034843847, 29.765183194344466 ], [ -95.492352034892292, 29.765326193612509 ], [ -95.492321034496229, 29.765408193628108 ], [ -95.492232034759695, 29.765524194176525 ], [ -95.49185403506435, 29.765623193945956 ], [ -95.49124903493184, 29.765607194416884 ], [ -95.490663034233563, 29.765349193648547 ], [ -95.49042403400037, 29.765145193815808 ], [ -95.490121034526879, 29.764859194291411 ], [ -95.489907034716424, 29.764793193527073 ], [ -95.489787034106769, 29.764794194194248 ], [ -95.489693033814078, 29.76482719374561 ], [ -95.489642034152538, 29.764860194089977 ], [ -95.489598034011749, 29.765008194118412 ], [ -95.489617034630086, 29.76530519368724 ], [ -95.489712034212786, 29.765613194173664 ], [ -95.489800033789251, 29.765805193859478 ], [ -95.490172034003407, 29.766069194197872 ], [ -95.490979034945425, 29.766497194493276 ], [ -95.491023034175953, 29.766591194510617 ], [ -95.491004034806977, 29.766684193886661 ], [ -95.490897035097518, 29.766767193935728 ], [ -95.490733035065517, 29.766805194162387 ], [ -95.490500033986876, 29.766789193998644 ], [ -95.489901034319885, 29.766652194732785 ], [ -95.489334034400656, 29.766603194185652 ], [ -95.489051033812572, 29.766597194349064 ], [ -95.488673033969079, 29.766707194761299 ], [ -95.488169033815268, 29.766955194572507 ], [ -95.487829033962512, 29.76721919447678 ], [ -95.48752003359958, 29.767604194891206 ], [ -95.487306033836958, 29.767972194211069 ], [ -95.487250034193849, 29.768192194577772 ], [ -95.487306033229331, 29.768489194764985 ], [ -95.48745803344535, 29.76869219500373 ], [ -95.488239034119772, 29.769330195124347 ], [ -95.488272033616468, 29.769444194503446 ], [ -95.488262034485629, 29.769457194911485 ], [ -95.488251033848641, 29.769470195250776 ], [ -95.48823403413725, 29.769488195143477 ], [ -95.488218033983941, 29.769502194567469 ], [ -95.488196034526581, 29.769518194978644 ], [ -95.488160033544062, 29.76953819451872 ], [ -95.488135034082035, 29.769549195129926 ], [ -95.48802903431968, 29.769572194756861 ], [ -95.487950034038036, 29.769587195056499 ], [ -95.487871033733171, 29.769602195309538 ], [ -95.487808034180276, 29.769612194539064 ], [ -95.487791033522655, 29.769615195244899 ], [ -95.487591034178806, 29.76962919492389 ], [ -95.487392034186996, 29.769643195226422 ], [ -95.487213034178382, 29.769633194858418 ], [ -95.487042033366222, 29.769628195136427 ], [ -95.486982033976403, 29.769621194743788 ], [ -95.486982034190063, 29.769693195355604 ], [ -95.486977033794332, 29.770383194798395 ], [ -95.486989033304127, 29.770449195103794 ], [ -95.487003033577793, 29.770547194860466 ], [ -95.487006033466514, 29.770906195061308 ], [ -95.487005033654413, 29.771254195559752 ], [ -95.487007034091931, 29.771960195102611 ], [ -95.487010033549907, 29.772442195522117 ], [ -95.487029033735496, 29.77382019585102 ], [ -95.487038033714981, 29.774273196375937 ], [ -95.487044034392667, 29.77461819644693 ], [ -95.487058033740382, 29.775423195815161 ], [ -95.487064033803904, 29.775833196297757 ], [ -95.487064034508847, 29.776126196106485 ], [ -95.487065034480722, 29.776868196190758 ], [ -95.487066033979701, 29.77728519623987 ], [ -95.487052034090155, 29.777429196640398 ], [ -95.487237034543085, 29.777418196366401 ], [ -95.487475034196478, 29.777403196163561 ], [ -95.487820034222182, 29.777325196707089 ], [ -95.488022033814161, 29.77723719661973 ], [ -95.488176034283228, 29.777147196529484 ], [ -95.488241034133495, 29.777109196470132 ], [ -95.488266034881747, 29.777089196584299 ], [ -95.488261034745562, 29.777608196690696 ], [ -95.48826103414072, 29.777668196572712 ], [ -95.488256034825397, 29.777938196889103 ], [ -95.488251034064675, 29.778213196837164 ], [ -95.488251034944241, 29.77844519635989 ], [ -95.488250034822215, 29.77880519651961 ], [ -95.488250034066709, 29.779227196759713 ], [ -95.488244034970904, 29.779783197311318 ], [ -95.488242034049165, 29.780028197262066 ], [ -95.488241034995056, 29.78016019748571 ], [ -95.488297034162954, 29.780160197098592 ], [ -95.488292034545452, 29.780641196801053 ], [ -95.488289034200506, 29.780980196911472 ], [ -95.488287034107003, 29.781635197156714 ], [ -95.488279034268018, 29.782338197350562 ], [ -95.488248034876491, 29.783529197989459 ], [ -95.488226034169728, 29.78352819820466 ], [ -95.488237034920076, 29.78376219788132 ], [ -95.488244034876828, 29.783853197860047 ], [ -95.488249034503511, 29.784071198171905 ], [ -95.488255034574294, 29.78434419770511 ], [ -95.494422036062403, 29.78431819738708 ], [ -95.49644003634873, 29.784400197471058 ], [ -95.4972820372775, 29.784447197627525 ], [ -95.498477037777519, 29.784495197415609 ], [ -95.498621037036258, 29.784503198030631 ], [ -95.498855037125438, 29.784510198048956 ], [ -95.499046037482543, 29.784518197476835 ], [ -95.499271037343107, 29.784536197612979 ], [ -95.499748037355303, 29.784572197816136 ], [ -95.500536037438465, 29.784624197535944 ], [ -95.501287038405806, 29.784661197225972 ], [ -95.501854038125032, 29.784663197539729 ], [ -95.501849038057784, 29.784481197181574 ], [ -95.501848038228616, 29.784442197360715 ], [ -95.501844037719053, 29.784348197842146 ], [ -95.501846037675421, 29.784282197434262 ], [ -95.501849038590564, 29.78420019786893 ], [ -95.501852037745536, 29.784123197017092 ], [ -95.501856037761215, 29.784017197335999 ], [ -95.501860038520221, 29.783913196995307 ], [ -95.501862038483466, 29.783481197486303 ], [ -95.501865038252717, 29.78312219710909 ], [ -95.50186603850922, 29.783070197450712 ], [ -95.502201038282962, 29.7829861970812 ], [ -95.502697038344024, 29.78286219710899 ], [ -95.503168038051186, 29.782743197137979 ], [ -95.503368038262721, 29.782693196678267 ], [ -95.50360203876302, 29.78263619752337 ], [ -95.50487903856461, 29.782327196846904 ], [ -95.506177038732787, 29.782109196694524 ], [ -95.506091038792817, 29.781968197300966 ], [ -95.50588803907371, 29.781613196972053 ], [ -95.505837038888799, 29.781425196461843 ], [ -95.505824039510458, 29.78124419633674 ], [ -95.505816038915142, 29.779702196603147 ], [ -95.50580103936592, 29.779116196581384 ], [ -95.505804039431823, 29.778958196348185 ], [ -95.505785039115139, 29.777863196324741 ], [ -95.505781038964685, 29.777628196094046 ], [ -95.506054038706935, 29.777605196313715 ], [ -95.507128039423549, 29.777600195547929 ], [ -95.50763503931131, 29.777597195867628 ], [ -95.508614039644414, 29.777588195726956 ], [ -95.5088860398983, 29.777578196324658 ], [ -95.508886039166541, 29.775614195115423 ], [ -95.508886039530992, 29.775375195865514 ], [ -95.508886039055511, 29.774789194884516 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 615, "Tract": "48201430400", "Area_SqMi": 2.133472724094136, "total_2009": 1865, "total_2010": 1856, "total_2011": 1956, "total_2012": 849, "total_2013": 851, "total_2014": 863, "total_2015": 1032, "total_2016": 1063, "total_2017": 1082, "total_2018": 1127, "total_2019": 1303, "total_2020": 1300, "age1": 259, "age2": 868, "age3": 416, "earn1": 331, "earn2": 281, "earn3": 931, "naics_s01": 0, "naics_s02": 9, "naics_s03": 0, "naics_s04": 0, "naics_s05": 2, "naics_s06": 307, "naics_s07": 114, "naics_s08": 0, "naics_s09": 0, "naics_s10": 88, "naics_s11": 19, "naics_s12": 48, "naics_s13": 114, "naics_s14": 17, "naics_s15": 475, "naics_s16": 83, "naics_s17": 5, "naics_s18": 124, "naics_s19": 138, "naics_s20": 0, "race1": 1239, "race2": 167, "race3": 14, "race4": 97, "race5": 1, "race6": 25, "ethnicity1": 1069, "ethnicity2": 474, "edu1": 278, "edu2": 267, "edu3": 317, "edu4": 422, "Shape_Length": 41169.474910084231, "Shape_Area": 59477568.072683841, "total_2021": 1350, "total_2022": 1543 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.528601043001032, 29.745931189185995 ], [ -95.528563043357693, 29.745891188305084 ], [ -95.528302042937781, 29.745616189117939 ], [ -95.528274042713463, 29.745586188468629 ], [ -95.528184043051937, 29.745577188575911 ], [ -95.528162042853978, 29.745426188353925 ], [ -95.52841204277243, 29.745411188296448 ], [ -95.52854504368932, 29.74540118885718 ], [ -95.528571043212068, 29.745097188647566 ], [ -95.528578043000806, 29.745043188558586 ], [ -95.528531043535835, 29.744887188147448 ], [ -95.5285210431812, 29.744866188325471 ], [ -95.528446043095286, 29.744817188918145 ], [ -95.528352043044279, 29.74475818880039 ], [ -95.528220043654883, 29.744636188516989 ], [ -95.528024043176103, 29.744395188104335 ], [ -95.527958042934372, 29.744310188117897 ], [ -95.52785504345195, 29.744238188456386 ], [ -95.527419043328607, 29.743922188165183 ], [ -95.527335043073862, 29.743889188680633 ], [ -95.527278043014221, 29.743820188813931 ], [ -95.527310043348081, 29.743786188342288 ], [ -95.527334043125933, 29.743732188439481 ], [ -95.527350043067216, 29.743697188321445 ], [ -95.527332042647544, 29.743678187973341 ], [ -95.527289042641442, 29.743653187912209 ], [ -95.527062042301992, 29.743548188286404 ], [ -95.526754043140116, 29.743317188391899 ], [ -95.526678042897075, 29.743224188373134 ], [ -95.526669042712655, 29.74318518781449 ], [ -95.526621042517746, 29.742982188436642 ], [ -95.526616042237819, 29.742944187885779 ], [ -95.525762042812403, 29.742957187941929 ], [ -95.52495704202336, 29.742949188207962 ], [ -95.524348042518852, 29.742956188488975 ], [ -95.523128042005581, 29.742978188439864 ], [ -95.5231200413468, 29.742551187927646 ], [ -95.523102041892145, 29.742328187876321 ], [ -95.523032041775323, 29.742181187780819 ], [ -95.522909041490564, 29.742122188337309 ], [ -95.52247804148567, 29.74208118857738 ], [ -95.522135041528387, 29.74209018787618 ], [ -95.521791041725862, 29.742062188393927 ], [ -95.520725040612021, 29.742193188589088 ], [ -95.520536041081996, 29.742403188715119 ], [ -95.519779041400753, 29.743255188236795 ], [ -95.519127040701008, 29.743281188331778 ], [ -95.519060040337408, 29.743283188076532 ], [ -95.519034040582838, 29.743248188924401 ], [ -95.518926040343601, 29.743339188331923 ], [ -95.518835041151561, 29.743266188118032 ], [ -95.518721040703738, 29.743134188722404 ], [ -95.518621040976328, 29.742881188212376 ], [ -95.518621040452217, 29.742837188306385 ], [ -95.518602040225176, 29.742793188427893 ], [ -95.518545040379252, 29.742727188635126 ], [ -95.518451040423955, 29.742661188621284 ], [ -95.518307040191544, 29.742630188666222 ], [ -95.518180040702006, 29.742644188110098 ], [ -95.5180290408735, 29.742727188512571 ], [ -95.51787104070246, 29.742870188263598 ], [ -95.517739040566525, 29.743128188805965 ], [ -95.517514040452596, 29.743762188483409 ], [ -95.517499040392806, 29.743804189075526 ], [ -95.517379040733559, 29.743964188784101 ], [ -95.51727204058875, 29.743975188799965 ], [ -95.517165040489715, 29.743952189141371 ], [ -95.517077040659871, 29.743842189019553 ], [ -95.517046040699412, 29.743722189126199 ], [ -95.516951039938519, 29.743568188431663 ], [ -95.516812040351269, 29.743458188202712 ], [ -95.516703039646771, 29.743402189016024 ], [ -95.516630040254626, 29.74336418830945 ], [ -95.516466039703175, 29.743309188812635 ], [ -95.51645203986665, 29.743312188924598 ], [ -95.515885040100486, 29.743925188871565 ], [ -95.515750039534581, 29.74402818914653 ], [ -95.515544040180757, 29.744287188599145 ], [ -95.515462040030897, 29.744336188467866 ], [ -95.515422040154846, 29.744359188942489 ], [ -95.515363040033066, 29.744394188615246 ], [ -95.515101039558317, 29.744580188801148 ], [ -95.515089039824744, 29.744588189052429 ], [ -95.514642040152722, 29.744868188697858 ], [ -95.514422039501852, 29.744942188877996 ], [ -95.514350039222421, 29.744965188743492 ], [ -95.514047039759802, 29.744893189308502 ], [ -95.51397903956881, 29.744877189034835 ], [ -95.513725039276707, 29.744601188863985 ], [ -95.513709039486457, 29.74458318916459 ], [ -95.513695039201053, 29.744563188897644 ], [ -95.513616039274808, 29.744454188773837 ], [ -95.513571038956684, 29.744392189068932 ], [ -95.513466039085714, 29.744249188710892 ], [ -95.513408039397518, 29.744183188656969 ], [ -95.513157039129453, 29.74390018867031 ], [ -95.5130310391596, 29.74380018909995 ], [ -95.512989038884726, 29.74376718864622 ], [ -95.512880039295524, 29.74374718891983 ], [ -95.512837038726687, 29.743740189018009 ], [ -95.512793038862171, 29.743736188731447 ], [ -95.512761039334919, 29.743735188838357 ], [ -95.512706038908888, 29.743737189058709 ], [ -95.512673039043619, 29.74373918874619 ], [ -95.512630038873539, 29.743746188689503 ], [ -95.512587038646146, 29.743754188739558 ], [ -95.512546038640536, 29.74376618897735 ], [ -95.512500039454395, 29.743782188635542 ], [ -95.51245603946802, 29.743801189235025 ], [ -95.512413039555213, 29.743823189140496 ], [ -95.512391039406708, 29.743836188496854 ], [ -95.512373039086114, 29.743848188949432 ], [ -95.512357039252677, 29.743859189000968 ], [ -95.512348039065913, 29.743866188443917 ], [ -95.512331038900115, 29.74387918887237 ], [ -95.512308039164267, 29.743899189224553 ], [ -95.512286038581919, 29.743920188626046 ], [ -95.51226403893854, 29.743942189073042 ], [ -95.512245038857145, 29.743965189195453 ], [ -95.512226038743052, 29.743989188533813 ], [ -95.512214039122654, 29.744012188560131 ], [ -95.512207038746993, 29.744030189043144 ], [ -95.512201038565166, 29.744049188606613 ], [ -95.512196038571204, 29.744068188933692 ], [ -95.512191039252528, 29.744094189229077 ], [ -95.512188038608471, 29.74411418937369 ], [ -95.512187039193932, 29.744139188970163 ], [ -95.512188039102995, 29.744165189286399 ], [ -95.51219003853312, 29.74418518871499 ], [ -95.512195039277415, 29.744212188600216 ], [ -95.51219903925886, 29.744229189195064 ], [ -95.512205038574024, 29.744248188826145 ], [ -95.512212039171956, 29.744266189127231 ], [ -95.512221039185007, 29.744284189125025 ], [ -95.512230039256153, 29.744301189001614 ], [ -95.51224003955366, 29.744318188739435 ], [ -95.512248038671558, 29.744329188905201 ], [ -95.512271038888557, 29.744363188836903 ], [ -95.512281039222543, 29.744379189352809 ], [ -95.51229103861138, 29.744394188818728 ], [ -95.512300038758113, 29.744410188569759 ], [ -95.512309038876822, 29.744426189221912 ], [ -95.512319039145694, 29.744444189073661 ], [ -95.512327039076467, 29.74446018896133 ], [ -95.512335038955854, 29.74447718896884 ], [ -95.512342038828095, 29.744490188633158 ], [ -95.512356039181896, 29.744524188950553 ], [ -95.512362038673686, 29.744540189113714 ], [ -95.512369039296615, 29.744559188623725 ], [ -95.512375038846002, 29.744574188665823 ], [ -95.512380039097593, 29.744591189114463 ], [ -95.512386039501209, 29.744610188762444 ], [ -95.512390038603286, 29.744625189082118 ], [ -95.512395038837482, 29.744643188748416 ], [ -95.512399038869134, 29.744660189335296 ], [ -95.512403038932931, 29.744677189020042 ], [ -95.512407038785341, 29.744698189186028 ], [ -95.512409039590395, 29.744712188815136 ], [ -95.512412039217978, 29.744733189120108 ], [ -95.51241403893782, 29.744748188842479 ], [ -95.512416039585545, 29.744765188832197 ], [ -95.51241803914742, 29.744783188915292 ], [ -95.512419039515308, 29.744801189164598 ], [ -95.512420038850138, 29.744819189386913 ], [ -95.512421039271757, 29.744836189515716 ], [ -95.51242103944297, 29.744854189002403 ], [ -95.512421039583273, 29.744872189390819 ], [ -95.512278039243284, 29.745270189016161 ], [ -95.512269039469359, 29.745286189559536 ], [ -95.512263038597709, 29.745297189032797 ], [ -95.51225403892839, 29.745311189334757 ], [ -95.512236038823218, 29.745334189308998 ], [ -95.51221903910853, 29.745354188782283 ], [ -95.512199038765615, 29.745372189328283 ], [ -95.512179039535383, 29.745389188876171 ], [ -95.512157038821783, 29.745405189450846 ], [ -95.51213403904309, 29.745419189043929 ], [ -95.512097038858911, 29.745438189430384 ], [ -95.512052038969969, 29.745456189030566 ], [ -95.512011039365305, 29.745466188885704 ], [ -95.511969038626034, 29.745473189379048 ], [ -95.511948038872873, 29.745475189003038 ], [ -95.511923039472208, 29.745472189495096 ], [ -95.511889038939856, 29.745471189665825 ], [ -95.511864039397253, 29.74547118960535 ], [ -95.511839038762488, 29.745472189633514 ], [ -95.511814039132517, 29.745474188902097 ], [ -95.511790038553514, 29.745478189146443 ], [ -95.511765038711857, 29.745483189668111 ], [ -95.511741039133383, 29.745488189148862 ], [ -95.511717039432739, 29.745495188865522 ], [ -95.5116860389073, 29.745506189121581 ], [ -95.511664038453915, 29.745516188894186 ], [ -95.511642038998858, 29.745526189591796 ], [ -95.511621038650404, 29.74553818946384 ], [ -95.51161103912419, 29.745544188894371 ], [ -95.511595038820445, 29.745557189089958 ], [ -95.511578039310464, 29.745570189443711 ], [ -95.511561038793516, 29.745583188866462 ], [ -95.511543039100616, 29.745595189228698 ], [ -95.511525039403494, 29.745607189588387 ], [ -95.511506038525425, 29.745618189029521 ], [ -95.51148703870804, 29.745628189276541 ], [ -95.511467038650622, 29.745638189653242 ], [ -95.511447038682761, 29.745647189005005 ], [ -95.511427038743264, 29.745655189135526 ], [ -95.511406038564132, 29.745663189394946 ], [ -95.511396039108362, 29.745667189470996 ], [ -95.511385038444899, 29.74567018953098 ], [ -95.511364039356224, 29.745677189690692 ], [ -95.511342039088902, 29.745683188929686 ], [ -95.511309039281443, 29.74569018890746 ], [ -95.511276038469404, 29.745696189631996 ], [ -95.511242038545461, 29.745701189484056 ], [ -95.511208038812981, 29.74570318896728 ], [ -95.511186038794918, 29.745704189384064 ], [ -95.511163038570388, 29.745705189025443 ], [ -95.511140038445689, 29.745704189324609 ], [ -95.511117038321458, 29.745703189619793 ], [ -95.511095038500599, 29.745701189661442 ], [ -95.51107203847458, 29.745699188926988 ], [ -95.511061039132656, 29.745697189288876 ], [ -95.510634038813834, 29.745671189131272 ], [ -95.510607038749001, 29.745671189088561 ], [ -95.510549038634863, 29.745672189636075 ], [ -95.51053703877362, 29.745675188877016 ], [ -95.510514038590088, 29.745675189188862 ], [ -95.510491038262657, 29.745677189736821 ], [ -95.510445038700183, 29.745681189044113 ], [ -95.510399038957644, 29.745687189477607 ], [ -95.510353039093815, 29.74569518923359 ], [ -95.510308038352605, 29.745704188943119 ], [ -95.510263038488475, 29.745715188904633 ], [ -95.510219038820992, 29.745726189629753 ], [ -95.510175038980549, 29.74574018889685 ], [ -95.510132038301151, 29.745754188902009 ], [ -95.510089038491643, 29.745770189160258 ], [ -95.510047038830081, 29.745787189402961 ], [ -95.510006038205603, 29.745806189724068 ], [ -95.509983038164506, 29.745818189608279 ], [ -95.509971038115353, 29.745823189038568 ], [ -95.509946038236777, 29.745840189785742 ], [ -95.509902038083524, 29.745871189226207 ], [ -95.509859038346022, 29.745899189073473 ], [ -95.509816038632607, 29.745926189688564 ], [ -95.509772038687927, 29.745953189507507 ], [ -95.50972703855976, 29.745979189311242 ], [ -95.509687038783383, 29.746002189019379 ], [ -95.509637038444765, 29.746028189414741 ], [ -95.50959003896341, 29.746052189196313 ], [ -95.509577038477673, 29.746072189633761 ], [ -95.509559038749487, 29.746094189150572 ], [ -95.509546038627562, 29.746109189886891 ], [ -95.509519038274235, 29.746138189549782 ], [ -95.50949003870133, 29.746164189109386 ], [ -95.509459038681413, 29.746189189679193 ], [ -95.509426038440438, 29.746211189214321 ], [ -95.509391038869083, 29.746231189663931 ], [ -95.509354038913287, 29.746250189315706 ], [ -95.509316037970834, 29.746265189468794 ], [ -95.509287038440405, 29.746276189863735 ], [ -95.50925703886, 29.746285189226533 ], [ -95.509226038136021, 29.74629218933346 ], [ -95.509195038525846, 29.746298189340163 ], [ -95.509164037963572, 29.74630318919289 ], [ -95.509132038328517, 29.746306189842326 ], [ -95.509101038017462, 29.746308189320839 ], [ -95.5090790379341, 29.746308189271655 ], [ -95.509058038093698, 29.746308189104447 ], [ -95.508991038697019, 29.746282189501926 ], [ -95.508954038178217, 29.746269189634823 ], [ -95.508423038207638, 29.746110189487482 ], [ -95.508318037687701, 29.746080189809547 ], [ -95.508111037758852, 29.746052189294662 ], [ -95.507984037539657, 29.746076189442423 ], [ -95.507939037618044, 29.746083189044487 ], [ -95.50792203827001, 29.746088189776678 ], [ -95.507897038374722, 29.746101189660653 ], [ -95.507847038081508, 29.74609918958258 ], [ -95.50770503768419, 29.746195189127224 ], [ -95.507585038373193, 29.746374189991034 ], [ -95.507317037643105, 29.746599189815008 ], [ -95.507279038118753, 29.746637189546743 ], [ -95.507132037814301, 29.746789189584728 ], [ -95.506898037843911, 29.746977189487549 ], [ -95.506792037562207, 29.74705718958355 ], [ -95.506719037503501, 29.747231189583431 ], [ -95.506820037771959, 29.747530189521726 ], [ -95.506977038031593, 29.747792189751831 ], [ -95.50733803844409, 29.747826189621989 ], [ -95.50743403816152, 29.747835190215021 ], [ -95.507705038468615, 29.747904189596287 ], [ -95.507835038416474, 29.747927189639139 ], [ -95.508054038052492, 29.747965189414558 ], [ -95.508325037991256, 29.748069189969065 ], [ -95.508353037711629, 29.748083190230236 ], [ -95.508420038393027, 29.748118189436511 ], [ -95.508433038503924, 29.748319189833214 ], [ -95.508396038123621, 29.748367190045144 ], [ -95.508361038464457, 29.748424190226796 ], [ -95.508220037950423, 29.748551190370939 ], [ -95.508010038578348, 29.748690189781961 ], [ -95.507975038621311, 29.748702189796091 ], [ -95.507788037890506, 29.748748190248218 ], [ -95.507583037702034, 29.748759189986181 ], [ -95.50755003790384, 29.748742189751741 ], [ -95.506975038165436, 29.748463189794091 ], [ -95.506566038114556, 29.748346190130054 ], [ -95.506479037303947, 29.748365189597983 ], [ -95.50634503761755, 29.748394189601239 ], [ -95.506159037232877, 29.748559189609189 ], [ -95.505924037265558, 29.748848190388994 ], [ -95.505828037893579, 29.749047189798802 ], [ -95.505798037508427, 29.749207190590408 ], [ -95.50578403738858, 29.749275190323718 ], [ -95.505754037131879, 29.749460190544312 ], [ -95.505658037640387, 29.749697189944449 ], [ -95.505665037911811, 29.749765190356019 ], [ -95.505605037630389, 29.74983119062723 ], [ -95.505564037405023, 29.749932190622555 ], [ -95.505439037750477, 29.750094190695101 ], [ -95.505282037970062, 29.750205190133688 ], [ -95.505268037975924, 29.750233190345721 ], [ -95.505268037554629, 29.750332190678115 ], [ -95.5053000377454, 29.750458190418243 ], [ -95.505306037791854, 29.750524190683169 ], [ -95.505293037661275, 29.750738190904499 ], [ -95.50528103730565, 29.750843190371924 ], [ -95.505266037318265, 29.750920190326045 ], [ -95.505236037152159, 29.751075190342853 ], [ -95.505224038032495, 29.75113419054745 ], [ -95.505167037367301, 29.751365190565693 ], [ -95.505141037473891, 29.751525190792886 ], [ -95.505085037836068, 29.751678191136367 ], [ -95.505009037822248, 29.751827190992426 ], [ -95.504979037518297, 29.751876190672125 ], [ -95.504795037874857, 29.752179191026649 ], [ -95.504755036994212, 29.752257190558232 ], [ -95.504725037255085, 29.752316190509529 ], [ -95.504700037127932, 29.752398190985843 ], [ -95.504684037915055, 29.752486190500541 ], [ -95.504671037554289, 29.752648190580661 ], [ -95.504652037601659, 29.752833191286459 ], [ -95.504623037180352, 29.752931191326738 ], [ -95.504613037706278, 29.752952191172621 ], [ -95.504591037049792, 29.753052190816216 ], [ -95.504555037394084, 29.753331190882207 ], [ -95.504523037782931, 29.753487190995873 ], [ -95.504466037746852, 29.753633191181571 ], [ -95.504479037919452, 29.753949191335582 ], [ -95.504598037154267, 29.754130190920723 ], [ -95.504737037826956, 29.754229191321706 ], [ -95.505001037350198, 29.754361191247973 ], [ -95.505297038020132, 29.754488191542727 ], [ -95.505505037927279, 29.754554191377675 ], [ -95.506261037951006, 29.754708190963942 ], [ -95.50650103776016, 29.754813191550017 ], [ -95.506614037786107, 29.754884191028275 ], [ -95.50668303801092, 29.754917191376592 ], [ -95.506765038557987, 29.755077191157053 ], [ -95.506784037843602, 29.755143191647846 ], [ -95.506853037746453, 29.755561191222643 ], [ -95.506865037967771, 29.755747191525163 ], [ -95.506856038484784, 29.755793191703638 ], [ -95.506834038491746, 29.755912191184873 ], [ -95.506661038344831, 29.756229191591739 ], [ -95.506645038067006, 29.756259191453072 ], [ -95.506575037817015, 29.75634119148447 ], [ -95.50672003832868, 29.75716819137978 ], [ -95.506835037920538, 29.75784419226628 ], [ -95.506527038440666, 29.760473192570391 ], [ -95.506494038516252, 29.760848192753439 ], [ -95.506462038335684, 29.761121192415178 ], [ -95.506481037910618, 29.761646193089891 ], [ -95.506492038063541, 29.761955192435085 ], [ -95.506491038555012, 29.762593193132268 ], [ -95.507866038681897, 29.76258519322716 ], [ -95.508785039377173, 29.762579192931263 ], [ -95.508784039373893, 29.76446619343799 ], [ -95.508814038911851, 29.765440193547512 ], [ -95.508817039278441, 29.766394193507143 ], [ -95.508827038915229, 29.766928193992335 ], [ -95.508842038772855, 29.767819193746579 ], [ -95.508859039670455, 29.768896193839488 ], [ -95.508853039690862, 29.769490193859646 ], [ -95.50886903898386, 29.769735193998027 ], [ -95.50886803882014, 29.769916194281247 ], [ -95.508858039546823, 29.770405194265585 ], [ -95.508864039039693, 29.771048194551142 ], [ -95.508866039307676, 29.771327194858308 ], [ -95.508868038976743, 29.772180194347836 ], [ -95.508875039249403, 29.772538194882785 ], [ -95.508876039667143, 29.773032194589913 ], [ -95.50888903944238, 29.773902195122592 ], [ -95.508886039055511, 29.774789194884516 ], [ -95.508886039530992, 29.775375195865514 ], [ -95.508886039166541, 29.775614195115423 ], [ -95.5088860398983, 29.777578196324658 ], [ -95.509893039979403, 29.777575195687561 ], [ -95.511595039848984, 29.77757019568406 ], [ -95.512831040244293, 29.777575195853466 ], [ -95.512967041159698, 29.777568195355272 ], [ -95.513452040432156, 29.777564195982436 ], [ -95.513635040899956, 29.777559195547465 ], [ -95.514010041081278, 29.777560195457689 ], [ -95.514568041370083, 29.777563196093631 ], [ -95.515119041467472, 29.777543195755243 ], [ -95.516276041158775, 29.777546195692679 ], [ -95.51757404160621, 29.777530195336116 ], [ -95.517576042248507, 29.777174195085276 ], [ -95.517569042305425, 29.776930195445637 ], [ -95.517558041987144, 29.776369195508618 ], [ -95.517559041777218, 29.775686194899112 ], [ -95.517563041638752, 29.775562195619234 ], [ -95.517607042219879, 29.774447195119816 ], [ -95.517649041376401, 29.773605194597561 ], [ -95.517662042195241, 29.773350195076841 ], [ -95.517782041391314, 29.773350194552513 ], [ -95.51911904156924, 29.773345195075716 ], [ -95.520172042847506, 29.773345194200413 ], [ -95.520327041896408, 29.773346194964834 ], [ -95.521243042840041, 29.77332719442725 ], [ -95.522450043081122, 29.77333319491785 ], [ -95.522439043407473, 29.772797194681715 ], [ -95.522442043170358, 29.772593194752446 ], [ -95.522426043122991, 29.771800193937327 ], [ -95.522403043321631, 29.771417194312335 ], [ -95.522403042409124, 29.771398193971709 ], [ -95.522403042326516, 29.770758193731115 ], [ -95.522387042304345, 29.770360194321583 ], [ -95.522383042396157, 29.770251193850946 ], [ -95.522375042694321, 29.769672193937897 ], [ -95.522346042719349, 29.768705193853254 ], [ -95.522319042571922, 29.767596193261383 ], [ -95.522314042438751, 29.767423192917192 ], [ -95.522288043025355, 29.766568193350516 ], [ -95.522265042803895, 29.765572193130478 ], [ -95.522238042840669, 29.764783192669601 ], [ -95.522228042637138, 29.764493192630358 ], [ -95.522222042030549, 29.763960192887968 ], [ -95.522254042562409, 29.76312519258996 ], [ -95.52231004235226, 29.762543192156656 ], [ -95.522350042324973, 29.761936192349353 ], [ -95.522351042821185, 29.761917192672872 ], [ -95.522388042798184, 29.761535192119624 ], [ -95.522416042266926, 29.760901191720343 ], [ -95.522486042474469, 29.759765191832265 ], [ -95.522553042295101, 29.758756191541227 ], [ -95.522575042051685, 29.758390191339664 ], [ -95.522608042299865, 29.757839191655528 ], [ -95.522675042000472, 29.756715191048755 ], [ -95.522760042043856, 29.755415190891267 ], [ -95.522804042034323, 29.754771190995271 ], [ -95.522785042311057, 29.75241018985416 ], [ -95.522748041869079, 29.751085190079518 ], [ -95.523467041756419, 29.751098190133092 ], [ -95.523699042064919, 29.751098189965255 ], [ -95.524337042181131, 29.751100190129886 ], [ -95.525931043077591, 29.751132190138264 ], [ -95.52584004287786, 29.750287189919835 ], [ -95.525713042774413, 29.748193189085502 ], [ -95.525776042331898, 29.748056189107931 ], [ -95.525788042916687, 29.747610188851848 ], [ -95.525814043144635, 29.747434188857159 ], [ -95.525889042888338, 29.747209189058271 ], [ -95.525940042392321, 29.747166189459456 ], [ -95.525936042570606, 29.747130188926029 ], [ -95.525936042719181, 29.747107188932855 ], [ -95.525947043017482, 29.74709118885626 ], [ -95.525975042227685, 29.747050188831125 ], [ -95.525997042605511, 29.747016189332442 ], [ -95.526012042307102, 29.746994189345529 ], [ -95.526041042666847, 29.746952188971704 ], [ -95.526080043171746, 29.746896188983524 ], [ -95.52611304288672, 29.746848188685668 ], [ -95.526172042405179, 29.746762189179414 ], [ -95.526580043186613, 29.746664189392931 ], [ -95.526585043123177, 29.746673189191554 ], [ -95.526805042701639, 29.746605188845255 ], [ -95.526888043338886, 29.746578189018329 ], [ -95.526989042951485, 29.746539188539291 ], [ -95.527143042623436, 29.746479189128607 ], [ -95.527282043421565, 29.746426188831887 ], [ -95.527572043453063, 29.746447188745822 ], [ -95.527742043351196, 29.746459188456033 ], [ -95.527868042635774, 29.746455188526287 ], [ -95.527932043020044, 29.746453188726019 ], [ -95.527955043156609, 29.746452188912489 ], [ -95.528417043489384, 29.74607918865949 ], [ -95.528601043001032, 29.745931189185995 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 616, "Tract": "48201430500", "Area_SqMi": 0.96035511642677673, "total_2009": 8463, "total_2010": 9715, "total_2011": 9624, "total_2012": 9712, "total_2013": 9847, "total_2014": 9747, "total_2015": 9657, "total_2016": 9346, "total_2017": 9860, "total_2018": 10493, "total_2019": 10863, "total_2020": 10685, "age1": 2656, "age2": 7556, "age3": 3143, "earn1": 1371, "earn2": 3476, "earn3": 8508, "naics_s01": 6, "naics_s02": 85, "naics_s03": 33, "naics_s04": 117, "naics_s05": 47, "naics_s06": 167, "naics_s07": 567, "naics_s08": 4, "naics_s09": 42, "naics_s10": 320, "naics_s11": 692, "naics_s12": 853, "naics_s13": 343, "naics_s14": 2182, "naics_s15": 6027, "naics_s16": 730, "naics_s17": 7, "naics_s18": 818, "naics_s19": 221, "naics_s20": 94, "race1": 10344, "race2": 1975, "race3": 152, "race4": 665, "race5": 15, "race6": 204, "ethnicity1": 8443, "ethnicity2": 4912, "edu1": 2073, "edu2": 2412, "edu3": 3054, "edu4": 3160, "Shape_Length": 29493.830384674628, "Shape_Area": 26773056.981769748, "total_2021": 12392, "total_2022": 13355 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.531785046051311, 29.783818195972827 ], [ -95.531723046039957, 29.781562196312706 ], [ -95.53171804582756, 29.781396195473967 ], [ -95.531705045776704, 29.780420195482524 ], [ -95.531705046044394, 29.780185195665794 ], [ -95.531706045427029, 29.7799101957491 ], [ -95.531689045805578, 29.779477195125512 ], [ -95.531699045553026, 29.778976195343958 ], [ -95.531690045630043, 29.77868619491413 ], [ -95.53165404580848, 29.777990194989901 ], [ -95.531644045155687, 29.777043195328833 ], [ -95.531623045764803, 29.775892194712522 ], [ -95.531622045514439, 29.77581219447902 ], [ -95.531564044973379, 29.77323119431891 ], [ -95.530600044759055, 29.773240194137692 ], [ -95.529885045337153, 29.773252193877632 ], [ -95.528915045060984, 29.773248194497494 ], [ -95.528067044593598, 29.773246194314734 ], [ -95.527398044495214, 29.773247194251397 ], [ -95.52663604354683, 29.773261194688359 ], [ -95.526681043871065, 29.776914195149352 ], [ -95.526582043706341, 29.776914195572783 ], [ -95.525526044157004, 29.777033194766389 ], [ -95.525460043395725, 29.777026195212411 ], [ -95.524428043636831, 29.776934195479338 ], [ -95.524129043311945, 29.774034194980352 ], [ -95.523937043745335, 29.774042194922298 ], [ -95.523428042902665, 29.7740361947594 ], [ -95.523286042904999, 29.773324194274526 ], [ -95.522652042828099, 29.773334194947726 ], [ -95.522450043081122, 29.77333319491785 ], [ -95.521243042840041, 29.77332719442725 ], [ -95.520327041896408, 29.773346194964834 ], [ -95.520172042847506, 29.773345194200413 ], [ -95.51911904156924, 29.773345195075716 ], [ -95.517782041391314, 29.773350194552513 ], [ -95.517662042195241, 29.773350195076841 ], [ -95.517649041376401, 29.773605194597561 ], [ -95.517607042219879, 29.774447195119816 ], [ -95.517563041638752, 29.775562195619234 ], [ -95.517559041777218, 29.775686194899112 ], [ -95.517558041987144, 29.776369195508618 ], [ -95.517569042305425, 29.776930195445637 ], [ -95.517576042248507, 29.777174195085276 ], [ -95.51757404160621, 29.777530195336116 ], [ -95.516276041158775, 29.777546195692679 ], [ -95.515119041467472, 29.777543195755243 ], [ -95.514568041370083, 29.777563196093631 ], [ -95.514010041081278, 29.777560195457689 ], [ -95.513635040899956, 29.777559195547465 ], [ -95.513452040432156, 29.777564195982436 ], [ -95.512967041159698, 29.777568195355272 ], [ -95.512831040244293, 29.777575195853466 ], [ -95.511595039848984, 29.77757019568406 ], [ -95.509893039979403, 29.777575195687561 ], [ -95.5088860398983, 29.777578196324658 ], [ -95.508614039644414, 29.777588195726956 ], [ -95.50763503931131, 29.777597195867628 ], [ -95.507128039423549, 29.777600195547929 ], [ -95.506054038706935, 29.777605196313715 ], [ -95.505781038964685, 29.777628196094046 ], [ -95.505785039115139, 29.777863196324741 ], [ -95.505804039431823, 29.778958196348185 ], [ -95.50580103936592, 29.779116196581384 ], [ -95.505816038915142, 29.779702196603147 ], [ -95.505824039510458, 29.78124419633674 ], [ -95.505837038888799, 29.781425196461843 ], [ -95.50588803907371, 29.781613196972053 ], [ -95.506091038792817, 29.781968197300966 ], [ -95.506177038732787, 29.782109196694524 ], [ -95.50487903856461, 29.782327196846904 ], [ -95.50360203876302, 29.78263619752337 ], [ -95.503368038262721, 29.782693196678267 ], [ -95.503168038051186, 29.782743197137979 ], [ -95.502697038344024, 29.78286219710899 ], [ -95.502201038282962, 29.7829861970812 ], [ -95.50186603850922, 29.783070197450712 ], [ -95.501865038252717, 29.78312219710909 ], [ -95.501862038483466, 29.783481197486303 ], [ -95.501860038520221, 29.783913196995307 ], [ -95.501856037761215, 29.784017197335999 ], [ -95.501852037745536, 29.784123197017092 ], [ -95.501849038590564, 29.78420019786893 ], [ -95.501846037675421, 29.784282197434262 ], [ -95.501844037719053, 29.784348197842146 ], [ -95.501848038228616, 29.784442197360715 ], [ -95.501849038057784, 29.784481197181574 ], [ -95.501854038125032, 29.784663197539729 ], [ -95.50582503908042, 29.784739197161787 ], [ -95.506278039033148, 29.784748197040152 ], [ -95.508356039555864, 29.784761197066615 ], [ -95.509569040666648, 29.784748197048525 ], [ -95.51143104069628, 29.784669196935106 ], [ -95.512716041311933, 29.784630197334156 ], [ -95.513597040933689, 29.784625197492552 ], [ -95.513970041152575, 29.784623196836527 ], [ -95.514186041289278, 29.78458719722402 ], [ -95.514229040890157, 29.784582197524927 ], [ -95.514275041307243, 29.784577197325245 ], [ -95.51446504137391, 29.784558197218619 ], [ -95.514528041711387, 29.784557197173552 ], [ -95.516513041545565, 29.784533197310534 ], [ -95.51716504199284, 29.784548197008402 ], [ -95.519666043122967, 29.784553196768432 ], [ -95.520132042593701, 29.784563196842189 ], [ -95.520130042887118, 29.784345197081478 ], [ -95.520131042651471, 29.78415519698811 ], [ -95.520131043319978, 29.784062196830526 ], [ -95.520131042387789, 29.783987196779837 ], [ -95.520130042717184, 29.783747197086175 ], [ -95.520793042884065, 29.783738196871298 ], [ -95.521267043103705, 29.783739196715231 ], [ -95.521713043324837, 29.783749196735869 ], [ -95.52188004361139, 29.78374919703159 ], [ -95.522244042883955, 29.78375519707765 ], [ -95.523162043297219, 29.783769196797639 ], [ -95.523528043981443, 29.783778196853557 ], [ -95.523991043930351, 29.78378319642357 ], [ -95.524885043998538, 29.783791196697646 ], [ -95.525848044144297, 29.783811196346434 ], [ -95.527468044259919, 29.783836196822985 ], [ -95.52770804486741, 29.78383519637811 ], [ -95.529627045431866, 29.783829196696754 ], [ -95.530479045069512, 29.783824196342152 ], [ -95.530605045159049, 29.783823196639116 ], [ -95.531285045891138, 29.783820196215437 ], [ -95.531785046051311, 29.783818195972827 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 617, "Tract": "48201420200", "Area_SqMi": 0.63866273417084329, "total_2009": 598, "total_2010": 645, "total_2011": 611, "total_2012": 727, "total_2013": 654, "total_2014": 651, "total_2015": 702, "total_2016": 584, "total_2017": 557, "total_2018": 592, "total_2019": 594, "total_2020": 472, "age1": 68, "age2": 253, "age3": 172, "earn1": 52, "earn2": 129, "earn3": 312, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 73, "naics_s05": 187, "naics_s06": 62, "naics_s07": 30, "naics_s08": 7, "naics_s09": 0, "naics_s10": 0, "naics_s11": 21, "naics_s12": 9, "naics_s13": 0, "naics_s14": 20, "naics_s15": 0, "naics_s16": 62, "naics_s17": 1, "naics_s18": 0, "naics_s19": 14, "naics_s20": 0, "race1": 352, "race2": 60, "race3": 5, "race4": 63, "race5": 4, "race6": 9, "ethnicity1": 314, "ethnicity2": 179, "edu1": 118, "edu2": 103, "edu3": 125, "edu4": 79, "Shape_Length": 21864.981624091943, "Shape_Area": 17804823.946489152, "total_2021": 478, "total_2022": 493 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446844019717219, 29.679472177689419 ], [ -95.446838019417982, 29.679178177501633 ], [ -95.446833019289116, 29.678982177606116 ], [ -95.446729019182897, 29.674738176647427 ], [ -95.446693019364801, 29.673231176462163 ], [ -95.446574018698342, 29.668781175830279 ], [ -95.446600019226821, 29.668151175577435 ], [ -95.446565018716598, 29.666249175146984 ], [ -95.44653001843696, 29.664508175128674 ], [ -95.446403018968553, 29.660144174139003 ], [ -95.446384018355857, 29.658014173980821 ], [ -95.446438018064612, 29.657358173722663 ], [ -95.44657401796843, 29.65672717336934 ], [ -95.446703018524019, 29.656374172827551 ], [ -95.446625017872577, 29.654512172737988 ], [ -95.44661501836292, 29.654225173025992 ], [ -95.446603017943858, 29.653904172421981 ], [ -95.446382017807366, 29.653977172884087 ], [ -95.445831018045226, 29.654142172915275 ], [ -95.445179018285572, 29.654344172713401 ], [ -95.444380017767159, 29.654583172933997 ], [ -95.443783017722652, 29.654767172590109 ], [ -95.443389017012763, 29.654941173008513 ], [ -95.443122017041929, 29.655143172946577 ], [ -95.442847016994335, 29.655335172977761 ], [ -95.442672017194951, 29.655556172830376 ], [ -95.442512016990634, 29.655765172876119 ], [ -95.442352017419836, 29.656006173457392 ], [ -95.442285017079726, 29.656158173179783 ], [ -95.442131017384213, 29.656502173735266 ], [ -95.442066017522507, 29.656777173440471 ], [ -95.442002017666439, 29.657209173796858 ], [ -95.44198601732117, 29.657412173307108 ], [ -95.441956016779827, 29.657778173820624 ], [ -95.44191001743205, 29.65840317387816 ], [ -95.44183401741769, 29.659216174188028 ], [ -95.44178301701686, 29.659512173652374 ], [ -95.441642017627615, 29.659864173773297 ], [ -95.441483016832038, 29.660196173985987 ], [ -95.441263017206339, 29.66050917409968 ], [ -95.441097016729358, 29.66069917416776 ], [ -95.440968016681708, 29.660881174371561 ], [ -95.440585016535991, 29.661379174446779 ], [ -95.440239016569478, 29.661800174532541 ], [ -95.44000201722497, 29.662087174923581 ], [ -95.43996201696595, 29.662131174410714 ], [ -95.43970701729387, 29.662476174382618 ], [ -95.439710016842781, 29.662662175079991 ], [ -95.439747016909735, 29.664727175293994 ], [ -95.439767017471098, 29.665025174912468 ], [ -95.439781017456056, 29.665584175274414 ], [ -95.439787017343804, 29.666398175386306 ], [ -95.439808017255018, 29.667225175546651 ], [ -95.439797017538893, 29.667616176082809 ], [ -95.43980601669692, 29.668044175481132 ], [ -95.439825016841212, 29.668874175840443 ], [ -95.439818016960359, 29.669690176500353 ], [ -95.439840016762119, 29.670515176036794 ], [ -95.439838017527691, 29.670883176330413 ], [ -95.439842016913616, 29.671343176599436 ], [ -95.439858017629902, 29.672163177022295 ], [ -95.439873017769472, 29.673309177334509 ], [ -95.439882017835842, 29.675259177117283 ], [ -95.439893017904197, 29.676073177268798 ], [ -95.439882017782736, 29.676897177853022 ], [ -95.439910017115508, 29.677388177787879 ], [ -95.439945017466712, 29.678001178191622 ], [ -95.439978017323782, 29.678559177981036 ], [ -95.439955017316805, 29.6790311780297 ], [ -95.439955017355203, 29.679301178212153 ], [ -95.439955017255429, 29.679518178137879 ], [ -95.445153018473675, 29.67950517841188 ], [ -95.446171019098045, 29.67947917792155 ], [ -95.446844019717219, 29.679472177689419 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 618, "Tract": "48201430600", "Area_SqMi": 1.443201336658666, "total_2009": 172, "total_2010": 177, "total_2011": 178, "total_2012": 204, "total_2013": 199, "total_2014": 200, "total_2015": 240, "total_2016": 235, "total_2017": 352, "total_2018": 358, "total_2019": 388, "total_2020": 386, "age1": 66, "age2": 188, "age3": 103, "earn1": 98, "earn2": 110, "earn3": 149, "naics_s01": 4, "naics_s02": 1, "naics_s03": 0, "naics_s04": 1, "naics_s05": 8, "naics_s06": 5, "naics_s07": 0, "naics_s08": 1, "naics_s09": 5, "naics_s10": 6, "naics_s11": 16, "naics_s12": 38, "naics_s13": 1, "naics_s14": 1, "naics_s15": 1, "naics_s16": 21, "naics_s17": 5, "naics_s18": 112, "naics_s19": 56, "naics_s20": 75, "race1": 285, "race2": 37, "race3": 3, "race4": 26, "race5": 0, "race6": 6, "ethnicity1": 242, "ethnicity2": 115, "edu1": 57, "edu2": 68, "edu3": 71, "edu4": 95, "Shape_Length": 35863.058742004439, "Shape_Area": 40233983.202269733, "total_2021": 357, "total_2022": 357 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.546420048790694, 29.759981190649015 ], [ -95.546420048367139, 29.759437190964306 ], [ -95.54637504828807, 29.759344190819206 ], [ -95.546261048827319, 29.759091191011454 ], [ -95.546215048031925, 29.75903619081377 ], [ -95.546207048851485, 29.759027191256436 ], [ -95.546089047961843, 29.758889190947851 ], [ -95.545883047817426, 29.758767190390124 ], [ -95.545620048093738, 29.758706190822128 ], [ -95.545272048186391, 29.758688191042342 ], [ -95.544998047781519, 29.758675190787176 ], [ -95.544867048474444, 29.758664191243259 ], [ -95.544861047693743, 29.758919190817913 ], [ -95.544859048196116, 29.759039191214626 ], [ -95.544708048191694, 29.759038190496078 ], [ -95.544328047603202, 29.759037190877873 ], [ -95.54424004792395, 29.759098190991462 ], [ -95.543771048045613, 29.759103190541612 ], [ -95.543031047129318, 29.759097191388566 ], [ -95.542845047957059, 29.759071190926761 ], [ -95.542657047685282, 29.759018190661624 ], [ -95.542545047024504, 29.758971191276288 ], [ -95.542403047330879, 29.75893719089601 ], [ -95.542269047391798, 29.75892419059927 ], [ -95.541599047297495, 29.758930191306757 ], [ -95.540539046670702, 29.758933190719315 ], [ -95.540539046509949, 29.759010191108015 ], [ -95.539816047199906, 29.759006190910615 ], [ -95.538518046780624, 29.759001191490892 ], [ -95.538155046302379, 29.75899819086823 ], [ -95.537907045742301, 29.758997191144267 ], [ -95.537655046173057, 29.759003191310246 ], [ -95.537229046067111, 29.759006191137463 ], [ -95.537070045690029, 29.758992191148742 ], [ -95.535264045723395, 29.759011191167481 ], [ -95.534118044998849, 29.75902219163742 ], [ -95.533921044822279, 29.759021191247989 ], [ -95.532785045297331, 29.759048191701261 ], [ -95.531640044506958, 29.759051191459843 ], [ -95.530610043939589, 29.759060190946812 ], [ -95.530389044598664, 29.759062191657712 ], [ -95.529681044339611, 29.75909819120967 ], [ -95.529667044294428, 29.758510191598923 ], [ -95.52967204431971, 29.75836619101652 ], [ -95.52968304372817, 29.758036191087388 ], [ -95.529679043958168, 29.757610190713777 ], [ -95.529671043787417, 29.757235190875221 ], [ -95.529668044155855, 29.757057191305673 ], [ -95.529658044196012, 29.756490190832881 ], [ -95.529648044504157, 29.755959190774707 ], [ -95.529624044196609, 29.754880190449366 ], [ -95.529627044074772, 29.754032190796934 ], [ -95.528481043593359, 29.754027190366497 ], [ -95.527844043553699, 29.754014190825522 ], [ -95.526559042857215, 29.754005190090702 ], [ -95.526153043228376, 29.753812190549731 ], [ -95.526114043276493, 29.753747190072868 ], [ -95.525992042912677, 29.753549190345957 ], [ -95.525963042672302, 29.753405190803665 ], [ -95.525953043304355, 29.751939190148065 ], [ -95.525931043077591, 29.751132190138264 ], [ -95.524337042181131, 29.751100190129886 ], [ -95.523699042064919, 29.751098189965255 ], [ -95.523467041756419, 29.751098190133092 ], [ -95.522748041869079, 29.751085190079518 ], [ -95.522785042311057, 29.75241018985416 ], [ -95.522804042034323, 29.754771190995271 ], [ -95.522760042043856, 29.755415190891267 ], [ -95.522675042000472, 29.756715191048755 ], [ -95.522608042299865, 29.757839191655528 ], [ -95.522575042051685, 29.758390191339664 ], [ -95.522553042295101, 29.758756191541227 ], [ -95.522486042474469, 29.759765191832265 ], [ -95.522416042266926, 29.760901191720343 ], [ -95.522388042798184, 29.761535192119624 ], [ -95.522351042821185, 29.761917192672872 ], [ -95.522350042324973, 29.761936192349353 ], [ -95.52231004235226, 29.762543192156656 ], [ -95.522254042562409, 29.76312519258996 ], [ -95.522222042030549, 29.763960192887968 ], [ -95.522228042637138, 29.764493192630358 ], [ -95.522238042840669, 29.764783192669601 ], [ -95.522265042803895, 29.765572193130478 ], [ -95.522288043025355, 29.766568193350516 ], [ -95.522314042438751, 29.767423192917192 ], [ -95.522319042571922, 29.767596193261383 ], [ -95.522346042719349, 29.768705193853254 ], [ -95.522375042694321, 29.769672193937897 ], [ -95.522383042396157, 29.770251193850946 ], [ -95.522387042304345, 29.770360194321583 ], [ -95.522403042326516, 29.770758193731115 ], [ -95.522403042409124, 29.771398193971709 ], [ -95.522403043321631, 29.771417194312335 ], [ -95.522426043122991, 29.771800193937327 ], [ -95.522442043170358, 29.772593194752446 ], [ -95.522439043407473, 29.772797194681715 ], [ -95.522450043081122, 29.77333319491785 ], [ -95.522652042828099, 29.773334194947726 ], [ -95.523286042904999, 29.773324194274526 ], [ -95.523428042902665, 29.7740361947594 ], [ -95.523937043745335, 29.774042194922298 ], [ -95.524129043311945, 29.774034194980352 ], [ -95.524428043636831, 29.776934195479338 ], [ -95.525460043395725, 29.777026195212411 ], [ -95.525526044157004, 29.777033194766389 ], [ -95.526582043706341, 29.776914195572783 ], [ -95.526681043871065, 29.776914195149352 ], [ -95.52663604354683, 29.773261194688359 ], [ -95.527398044495214, 29.773247194251397 ], [ -95.528067044593598, 29.773246194314734 ], [ -95.528915045060984, 29.773248194497494 ], [ -95.529885045337153, 29.773252193877632 ], [ -95.530600044759055, 29.773240194137692 ], [ -95.531564044973379, 29.77323119431891 ], [ -95.531605045275597, 29.77322819451653 ], [ -95.53164804555513, 29.77322519410891 ], [ -95.532067045740646, 29.773217193991357 ], [ -95.532807045895439, 29.773209194418683 ], [ -95.532954045460897, 29.773209193759591 ], [ -95.533893045861035, 29.773195194241396 ], [ -95.535097046662585, 29.773186193947872 ], [ -95.535340046604205, 29.77318319373089 ], [ -95.535928046703106, 29.773174194345909 ], [ -95.536491046210287, 29.773168193778488 ], [ -95.537282047129864, 29.773159194002496 ], [ -95.537348046875195, 29.773160194337915 ], [ -95.537443047168537, 29.773159193629773 ], [ -95.537475046454816, 29.773159193581339 ], [ -95.537575047116874, 29.773158193799254 ], [ -95.537581046884313, 29.773535194290947 ], [ -95.537586047053381, 29.773911194081879 ], [ -95.537582046422983, 29.774264194415046 ], [ -95.537584046995079, 29.774592194540002 ], [ -95.537588046700208, 29.775057194122766 ], [ -95.537586046760424, 29.775267194663233 ], [ -95.537586047153056, 29.775573194829693 ], [ -95.537591046538225, 29.775761194200118 ], [ -95.537853047300942, 29.77576619449696 ], [ -95.538128047516338, 29.775791194618634 ], [ -95.538363046634188, 29.775836194806942 ], [ -95.538426046775783, 29.775828194659269 ], [ -95.539538047868078, 29.775825194382804 ], [ -95.539846047617431, 29.775810194831056 ], [ -95.539988047673489, 29.775813194800484 ], [ -95.540074047341193, 29.775815194794919 ], [ -95.540237048002865, 29.775818194183525 ], [ -95.540228047045744, 29.77487119445567 ], [ -95.540223047189144, 29.773984194026113 ], [ -95.540217047448948, 29.773155193602761 ], [ -95.540018047159776, 29.773154193672653 ], [ -95.539950047475102, 29.773153193564657 ], [ -95.539905046934663, 29.773153194308669 ], [ -95.539903047447993, 29.773094194153597 ], [ -95.539899047459727, 29.772962194123807 ], [ -95.539896047222513, 29.772803193547528 ], [ -95.539897047455611, 29.772313194054334 ], [ -95.539895046930354, 29.77192019329998 ], [ -95.539895046829713, 29.771882193739945 ], [ -95.539899046930657, 29.771554193266653 ], [ -95.539897047535092, 29.771406193470085 ], [ -95.539892047242446, 29.77095019324457 ], [ -95.539886046901415, 29.77074519321425 ], [ -95.53988504740029, 29.770693193412054 ], [ -95.539887047558025, 29.770553192999223 ], [ -95.539883047396458, 29.77041519312349 ], [ -95.53987604773144, 29.769961193711243 ], [ -95.539870046946149, 29.769570193423256 ], [ -95.53987704750169, 29.768918192815914 ], [ -95.539878046761231, 29.768254192896375 ], [ -95.539872047398603, 29.767568192996581 ], [ -95.539865046617749, 29.766750192489017 ], [ -95.539858047122394, 29.765928192289682 ], [ -95.539856047385513, 29.765514192160364 ], [ -95.539855046888533, 29.765363192297382 ], [ -95.539908047270345, 29.76534419215459 ], [ -95.540045047299301, 29.765296192280712 ], [ -95.540113047349564, 29.765271192362881 ], [ -95.540473047136359, 29.765146192279364 ], [ -95.540528047634751, 29.765134191941534 ], [ -95.540554046796885, 29.765174192320224 ], [ -95.540615047602529, 29.765207191981279 ], [ -95.540687046846557, 29.76522219195683 ], [ -95.542088047583448, 29.765197191790655 ], [ -95.544366047771021, 29.765234192060888 ], [ -95.544862048643125, 29.765252192448294 ], [ -95.545477048451716, 29.765240191971454 ], [ -95.545749048816432, 29.76523719255248 ], [ -95.545913048797559, 29.765182192368044 ], [ -95.546100048993907, 29.765054192055608 ], [ -95.546174048233027, 29.764704192345171 ], [ -95.546252048520998, 29.764317191518401 ], [ -95.546228048692868, 29.763146191359063 ], [ -95.54612204841105, 29.763051192099347 ], [ -95.546034048129769, 29.762893191360966 ], [ -95.545972048050146, 29.762754191232457 ], [ -95.54594804796686, 29.762617191428525 ], [ -95.545933048638062, 29.762144191359667 ], [ -95.545936048493289, 29.761732191526658 ], [ -95.545917048193743, 29.760823191563738 ], [ -95.545927048849705, 29.760649191230026 ], [ -95.545947048146616, 29.760520190851608 ], [ -95.54600604880838, 29.760404190766227 ], [ -95.546042048812126, 29.760331190984719 ], [ -95.54614104839159, 29.760182191064182 ], [ -95.546248048530927, 29.760099191446965 ], [ -95.546388048740468, 29.76000019116395 ], [ -95.546420048790694, 29.759981190649015 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 619, "Tract": "48201430700", "Area_SqMi": 0.72462265097487366, "total_2009": 6032, "total_2010": 6613, "total_2011": 7591, "total_2012": 7965, "total_2013": 8572, "total_2014": 9705, "total_2015": 10030, "total_2016": 9997, "total_2017": 9596, "total_2018": 11234, "total_2019": 12378, "total_2020": 11408, "age1": 3320, "age2": 7139, "age3": 2818, "earn1": 2407, "earn2": 3047, "earn3": 7823, "naics_s01": 2, "naics_s02": 1104, "naics_s03": 229, "naics_s04": 390, "naics_s05": 870, "naics_s06": 764, "naics_s07": 2643, "naics_s08": 335, "naics_s09": 76, "naics_s10": 1239, "naics_s11": 336, "naics_s12": 1227, "naics_s13": 88, "naics_s14": 1751, "naics_s15": 17, "naics_s16": 320, "naics_s17": 87, "naics_s18": 1055, "naics_s19": 741, "naics_s20": 3, "race1": 9816, "race2": 1898, "race3": 134, "race4": 1155, "race5": 16, "race6": 258, "ethnicity1": 9168, "ethnicity2": 4109, "edu1": 1799, "edu2": 2354, "edu3": 2863, "edu4": 2941, "Shape_Length": 24223.912432507324, "Shape_Area": 20201239.305117551, "total_2021": 12095, "total_2022": 13277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.544502048995085, 29.779842194886736 ], [ -95.544500048742862, 29.779615194688365 ], [ -95.544496048606348, 29.779096194723962 ], [ -95.544485048595973, 29.778217195161286 ], [ -95.544475048895734, 29.777477195055393 ], [ -95.544451049023763, 29.776709194643153 ], [ -95.544456049024916, 29.776531194818467 ], [ -95.544465048673999, 29.775617193898498 ], [ -95.544457048372237, 29.774760193670492 ], [ -95.5444410484494, 29.774361194069098 ], [ -95.544446048821328, 29.773958193901912 ], [ -95.544430048585539, 29.773561193504044 ], [ -95.544433048168244, 29.773108194142651 ], [ -95.544425048790274, 29.772734193869294 ], [ -95.544404048699647, 29.772287193600004 ], [ -95.544408047983509, 29.771451193674984 ], [ -95.544412048487686, 29.770612193265492 ], [ -95.544396048281442, 29.770244192849304 ], [ -95.54439004860744, 29.769778193401642 ], [ -95.54437904840151, 29.768950193281452 ], [ -95.544380048496393, 29.767730192338714 ], [ -95.544373048293764, 29.766914192363991 ], [ -95.544369048395055, 29.766039191908472 ], [ -95.544366047771021, 29.765234192060888 ], [ -95.542088047583448, 29.765197191790655 ], [ -95.540687046846557, 29.76522219195683 ], [ -95.540615047602529, 29.765207191981279 ], [ -95.540554046796885, 29.765174192320224 ], [ -95.540528047634751, 29.765134191941534 ], [ -95.540473047136359, 29.765146192279364 ], [ -95.540113047349564, 29.765271192362881 ], [ -95.540045047299301, 29.765296192280712 ], [ -95.539908047270345, 29.76534419215459 ], [ -95.539855046888533, 29.765363192297382 ], [ -95.539856047385513, 29.765514192160364 ], [ -95.539858047122394, 29.765928192289682 ], [ -95.539865046617749, 29.766750192489017 ], [ -95.539872047398603, 29.767568192996581 ], [ -95.539878046761231, 29.768254192896375 ], [ -95.53987704750169, 29.768918192815914 ], [ -95.539870046946149, 29.769570193423256 ], [ -95.53987604773144, 29.769961193711243 ], [ -95.539883047396458, 29.77041519312349 ], [ -95.539887047558025, 29.770553192999223 ], [ -95.53988504740029, 29.770693193412054 ], [ -95.539886046901415, 29.77074519321425 ], [ -95.539892047242446, 29.77095019324457 ], [ -95.539897047535092, 29.771406193470085 ], [ -95.539899046930657, 29.771554193266653 ], [ -95.539895046829713, 29.771882193739945 ], [ -95.539895046930354, 29.77192019329998 ], [ -95.539897047455611, 29.772313194054334 ], [ -95.539896047222513, 29.772803193547528 ], [ -95.539899047459727, 29.772962194123807 ], [ -95.539903047447993, 29.773094194153597 ], [ -95.539905046934663, 29.773153194308669 ], [ -95.539950047475102, 29.773153193564657 ], [ -95.540018047159776, 29.773154193672653 ], [ -95.540217047448948, 29.773155193602761 ], [ -95.540223047189144, 29.773984194026113 ], [ -95.540228047045744, 29.77487119445567 ], [ -95.540237048002865, 29.775818194183525 ], [ -95.540074047341193, 29.775815194794919 ], [ -95.539988047673489, 29.775813194800484 ], [ -95.539846047617431, 29.775810194831056 ], [ -95.539538047868078, 29.775825194382804 ], [ -95.538426046775783, 29.775828194659269 ], [ -95.538363046634188, 29.775836194806942 ], [ -95.538128047516338, 29.775791194618634 ], [ -95.537853047300942, 29.77576619449696 ], [ -95.537591046538225, 29.775761194200118 ], [ -95.537586047153056, 29.775573194829693 ], [ -95.537586046760424, 29.775267194663233 ], [ -95.537588046700208, 29.775057194122766 ], [ -95.537584046995079, 29.774592194540002 ], [ -95.537582046422983, 29.774264194415046 ], [ -95.537586047053381, 29.773911194081879 ], [ -95.537581046884313, 29.773535194290947 ], [ -95.537575047116874, 29.773158193799254 ], [ -95.537475046454816, 29.773159193581339 ], [ -95.537443047168537, 29.773159193629773 ], [ -95.537348046875195, 29.773160194337915 ], [ -95.537282047129864, 29.773159194002496 ], [ -95.536491046210287, 29.773168193778488 ], [ -95.535928046703106, 29.773174194345909 ], [ -95.535340046604205, 29.77318319373089 ], [ -95.535097046662585, 29.773186193947872 ], [ -95.533893045861035, 29.773195194241396 ], [ -95.532954045460897, 29.773209193759591 ], [ -95.532807045895439, 29.773209194418683 ], [ -95.532067045740646, 29.773217193991357 ], [ -95.53164804555513, 29.77322519410891 ], [ -95.531605045275597, 29.77322819451653 ], [ -95.531564044973379, 29.77323119431891 ], [ -95.531622045514439, 29.77581219447902 ], [ -95.531623045764803, 29.775892194712522 ], [ -95.531644045155687, 29.777043195328833 ], [ -95.53165404580848, 29.777990194989901 ], [ -95.531690045630043, 29.77868619491413 ], [ -95.531699045553026, 29.778976195343958 ], [ -95.531689045805578, 29.779477195125512 ], [ -95.531706045427029, 29.7799101957491 ], [ -95.531705046044394, 29.780185195665794 ], [ -95.531705045776704, 29.780420195482524 ], [ -95.53171804582756, 29.781396195473967 ], [ -95.531723046039957, 29.781562196312706 ], [ -95.531785046051311, 29.783818195972827 ], [ -95.531783045338869, 29.784271196597739 ], [ -95.531784046279256, 29.784487196567259 ], [ -95.531787045466743, 29.78474819611241 ], [ -95.532086045737842, 29.784748196332988 ], [ -95.533113046529806, 29.784731196107469 ], [ -95.535396046752069, 29.784731196603332 ], [ -95.536059046891467, 29.784731196624325 ], [ -95.536918047208999, 29.784731196706399 ], [ -95.539991047465577, 29.784731195967119 ], [ -95.54155204862883, 29.784742196413202 ], [ -95.54231304877581, 29.784748196338381 ], [ -95.543773048515732, 29.784748196211051 ], [ -95.543984049044369, 29.78474319641364 ], [ -95.543982048809696, 29.784504196173231 ], [ -95.543982049322025, 29.784311196260042 ], [ -95.54398704894615, 29.783912195784783 ], [ -95.543989049339189, 29.783722196265046 ], [ -95.543988048711967, 29.7835151961341 ], [ -95.543984049316464, 29.782854195613876 ], [ -95.544011049143577, 29.782526195508122 ], [ -95.544061048581511, 29.782126195192017 ], [ -95.544204049380909, 29.781607195800611 ], [ -95.54432604873908, 29.781102195042685 ], [ -95.544368049166764, 29.780950195335922 ], [ -95.544456048613455, 29.780524195176401 ], [ -95.544471049266605, 29.780346195233406 ], [ -95.544493049265043, 29.780104194904112 ], [ -95.544502048995085, 29.779842194886736 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 620, "Tract": "48201430800", "Area_SqMi": 1.3053955231372931, "total_2009": 15843, "total_2010": 17671, "total_2011": 17478, "total_2012": 18481, "total_2013": 13712, "total_2014": 20668, "total_2015": 22100, "total_2016": 22321, "total_2017": 22841, "total_2018": 23258, "total_2019": 23190, "total_2020": 23489, "age1": 5473, "age2": 14979, "age3": 4871, "earn1": 3229, "earn2": 5260, "earn3": 16834, "naics_s01": 0, "naics_s02": 71, "naics_s03": 0, "naics_s04": 76, "naics_s05": 32, "naics_s06": 329, "naics_s07": 1576, "naics_s08": 62, "naics_s09": 253, "naics_s10": 1015, "naics_s11": 330, "naics_s12": 2802, "naics_s13": 456, "naics_s14": 841, "naics_s15": 86, "naics_s16": 14270, "naics_s17": 488, "naics_s18": 2447, "naics_s19": 188, "naics_s20": 0, "race1": 15512, "race2": 5432, "race3": 184, "race4": 3642, "race5": 48, "race6": 505, "ethnicity1": 18925, "ethnicity2": 6398, "edu1": 3118, "edu2": 4234, "edu3": 6369, "edu4": 6129, "Shape_Length": 25238.054075987398, "Shape_Area": 36392192.978300892, "total_2021": 24245, "total_2022": 25323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563194054042455, 29.784811195382183 ], [ -95.563189053811115, 29.784561195314033 ], [ -95.563186053583038, 29.784396195240991 ], [ -95.563179054138544, 29.784028195525455 ], [ -95.563171053801582, 29.783613195289814 ], [ -95.563168054325118, 29.783438195112275 ], [ -95.563163053556366, 29.783175195458089 ], [ -95.563155053621998, 29.782786194970587 ], [ -95.563114053531791, 29.780569194396065 ], [ -95.563103053662303, 29.780375194626561 ], [ -95.563000053514131, 29.778608194326658 ], [ -95.563009053277753, 29.777920194211841 ], [ -95.562976053556142, 29.776154193396451 ], [ -95.562972053361108, 29.776040194030521 ], [ -95.562966053278927, 29.77589619362206 ], [ -95.562909052862381, 29.774410193799479 ], [ -95.562885053629373, 29.772931192811857 ], [ -95.562883053241436, 29.772779192942359 ], [ -95.562685052878692, 29.772787192726845 ], [ -95.562424053219232, 29.772798193171848 ], [ -95.561423052973225, 29.772813193514288 ], [ -95.561068053001478, 29.772800193319764 ], [ -95.560701052701091, 29.772751192863687 ], [ -95.560097052315129, 29.772575193501599 ], [ -95.559633052529648, 29.772365193146925 ], [ -95.559279052707296, 29.772158193127346 ], [ -95.559094052057816, 29.772024192713396 ], [ -95.558710051768173, 29.771705192836396 ], [ -95.558467051741005, 29.771385193162534 ], [ -95.558272051494825, 29.771100192716311 ], [ -95.558086052390195, 29.770693193035051 ], [ -95.558029051907155, 29.770514192742951 ], [ -95.557942051742103, 29.770193192539054 ], [ -95.557891051853261, 29.76983519241718 ], [ -95.55788105158706, 29.76885419255904 ], [ -95.557854051391175, 29.767915192479116 ], [ -95.557834051948575, 29.767719191890865 ], [ -95.55776505204129, 29.767463191886947 ], [ -95.557678051857792, 29.767275192335763 ], [ -95.557601051472545, 29.76714319184266 ], [ -95.557577051503046, 29.767101191967726 ], [ -95.557453051999147, 29.766935191829713 ], [ -95.557216051773679, 29.76669119225242 ], [ -95.557105051056269, 29.766614191980331 ], [ -95.556877051937121, 29.766466192015972 ], [ -95.556835051608857, 29.766439192301331 ], [ -95.556518051702909, 29.766296191764301 ], [ -95.556361051561822, 29.766250191793535 ], [ -95.556179050786525, 29.766208192237983 ], [ -95.556142050768088, 29.766200191906151 ], [ -95.556092051197339, 29.766194191663629 ], [ -95.555902051305722, 29.7661711921352 ], [ -95.55574905073648, 29.766165191906591 ], [ -95.555053050773566, 29.766187192019796 ], [ -95.5549700509644, 29.766190192420577 ], [ -95.554906050559268, 29.766192191886159 ], [ -95.554735051199671, 29.766196191876322 ], [ -95.554529050415894, 29.766197192232049 ], [ -95.553801051008051, 29.766214192097795 ], [ -95.553262050421395, 29.766222192234896 ], [ -95.552889050275652, 29.766229191777466 ], [ -95.552276050484082, 29.766241192095155 ], [ -95.55214604992868, 29.766243191825446 ], [ -95.551565049985385, 29.766252192311821 ], [ -95.551350050233211, 29.766256192115652 ], [ -95.550806049833653, 29.766267192137768 ], [ -95.550583049674515, 29.76627119239501 ], [ -95.550061049291074, 29.766286191972206 ], [ -95.549584049329553, 29.76629519220074 ], [ -95.548316049481073, 29.766301192664699 ], [ -95.547879048773538, 29.766238192163843 ], [ -95.547522048757713, 29.76615919254558 ], [ -95.547084048933456, 29.765976192366765 ], [ -95.546671048663981, 29.765652192510515 ], [ -95.546213048569825, 29.765173191870037 ], [ -95.545913048797559, 29.765182192368044 ], [ -95.545749048816432, 29.76523719255248 ], [ -95.545477048451716, 29.765240191971454 ], [ -95.544862048643125, 29.765252192448294 ], [ -95.544366047771021, 29.765234192060888 ], [ -95.544369048395055, 29.766039191908472 ], [ -95.544373048293764, 29.766914192363991 ], [ -95.544380048496393, 29.767730192338714 ], [ -95.54437904840151, 29.768950193281452 ], [ -95.54439004860744, 29.769778193401642 ], [ -95.544396048281442, 29.770244192849304 ], [ -95.544412048487686, 29.770612193265492 ], [ -95.544408047983509, 29.771451193674984 ], [ -95.544404048699647, 29.772287193600004 ], [ -95.544425048790274, 29.772734193869294 ], [ -95.544433048168244, 29.773108194142651 ], [ -95.544430048585539, 29.773561193504044 ], [ -95.544446048821328, 29.773958193901912 ], [ -95.5444410484494, 29.774361194069098 ], [ -95.544457048372237, 29.774760193670492 ], [ -95.544465048673999, 29.775617193898498 ], [ -95.544456049024916, 29.776531194818467 ], [ -95.544451049023763, 29.776709194643153 ], [ -95.544475048895734, 29.777477195055393 ], [ -95.544485048595973, 29.778217195161286 ], [ -95.544496048606348, 29.779096194723962 ], [ -95.544500048742862, 29.779615194688365 ], [ -95.544502048995085, 29.779842194886736 ], [ -95.544493049265043, 29.780104194904112 ], [ -95.544471049266605, 29.780346195233406 ], [ -95.544456048613455, 29.780524195176401 ], [ -95.544368049166764, 29.780950195335922 ], [ -95.54432604873908, 29.781102195042685 ], [ -95.544204049380909, 29.781607195800611 ], [ -95.544061048581511, 29.782126195192017 ], [ -95.544011049143577, 29.782526195508122 ], [ -95.543984049316464, 29.782854195613876 ], [ -95.543988048711967, 29.7835151961341 ], [ -95.543989049339189, 29.783722196265046 ], [ -95.54398704894615, 29.783912195784783 ], [ -95.543982049322025, 29.784311196260042 ], [ -95.543982048809696, 29.784504196173231 ], [ -95.543984049044369, 29.78474319641364 ], [ -95.544329048869372, 29.784737195841505 ], [ -95.545647049310716, 29.784725196523311 ], [ -95.546362049578832, 29.784708195992344 ], [ -95.548980050366012, 29.784686195703134 ], [ -95.549457050118761, 29.784669195544616 ], [ -95.55101905058838, 29.784640195920833 ], [ -95.553582051020925, 29.784657195487821 ], [ -95.554875052180378, 29.78467419579891 ], [ -95.555631051806344, 29.784690195675065 ], [ -95.55720305275203, 29.784731195712478 ], [ -95.558041052521929, 29.784747195965586 ], [ -95.560811053538302, 29.78480219556586 ], [ -95.561224053010221, 29.784811195483627 ], [ -95.561451053440763, 29.784828195450618 ], [ -95.561905053606225, 29.784822195708848 ], [ -95.562479053591318, 29.784816195989897 ], [ -95.562642053590153, 29.784816195414287 ], [ -95.562984053697178, 29.784811195491624 ], [ -95.563194054042455, 29.784811195382183 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 621, "Tract": "48201430900", "Area_SqMi": 1.0989713629819229, "total_2009": 290, "total_2010": 273, "total_2011": 254, "total_2012": 273, "total_2013": 357, "total_2014": 321, "total_2015": 364, "total_2016": 388, "total_2017": 568, "total_2018": 615, "total_2019": 701, "total_2020": 713, "age1": 272, "age2": 429, "age3": 214, "earn1": 187, "earn2": 384, "earn3": 344, "naics_s01": 9, "naics_s02": 1, "naics_s03": 0, "naics_s04": 0, "naics_s05": 10, "naics_s06": 30, "naics_s07": 30, "naics_s08": 63, "naics_s09": 44, "naics_s10": 56, "naics_s11": 6, "naics_s12": 78, "naics_s13": 3, "naics_s14": 10, "naics_s15": 37, "naics_s16": 27, "naics_s17": 2, "naics_s18": 375, "naics_s19": 133, "naics_s20": 1, "race1": 639, "race2": 103, "race3": 10, "race4": 133, "race5": 3, "race6": 27, "ethnicity1": 620, "ethnicity2": 295, "edu1": 128, "edu2": 168, "edu3": 175, "edu4": 172, "Shape_Length": 41759.205826770267, "Shape_Area": 30637440.691650193, "total_2021": 841, "total_2022": 915 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.562883053241436, 29.772779192942359 ], [ -95.562881053210887, 29.77265119279409 ], [ -95.562864053631174, 29.771857192729929 ], [ -95.562862053095031, 29.771758192765702 ], [ -95.562846053615971, 29.77101619273397 ], [ -95.562838053143935, 29.770649193044505 ], [ -95.56279905316039, 29.770194192607232 ], [ -95.562771053036883, 29.76989919266822 ], [ -95.562675052683517, 29.769332192631857 ], [ -95.562637052959019, 29.769070192198253 ], [ -95.562514053071951, 29.768619191785241 ], [ -95.562478053034454, 29.768538192465588 ], [ -95.562199052734712, 29.767850192241951 ], [ -95.561978052365475, 29.76739019168356 ], [ -95.561902052796057, 29.767248192281674 ], [ -95.561735052424339, 29.766972191963951 ], [ -95.561462052715953, 29.766577191538079 ], [ -95.561233052068403, 29.766262191392528 ], [ -95.560966052973484, 29.765941191655834 ], [ -95.560595052172943, 29.765538191632494 ], [ -95.560331052400528, 29.765250191442252 ], [ -95.560171052290599, 29.765076191367786 ], [ -95.559499051640074, 29.764335191264827 ], [ -95.559327051630987, 29.764146191811619 ], [ -95.559111052165605, 29.763868191229438 ], [ -95.559036052278302, 29.763731191713298 ], [ -95.558825051937433, 29.763470191668208 ], [ -95.558659051698442, 29.76316819085384 ], [ -95.558493051639203, 29.762715191082336 ], [ -95.558361051316822, 29.762300190892361 ], [ -95.558343051640648, 29.76222019135141 ], [ -95.558273051370819, 29.762250191044245 ], [ -95.558186051236504, 29.762289190978731 ], [ -95.558132051097985, 29.762312191030922 ], [ -95.557733050972672, 29.762390191428945 ], [ -95.557531051792338, 29.762429191072687 ], [ -95.556854050770653, 29.762466191304473 ], [ -95.556631051573447, 29.762479191551233 ], [ -95.555934050509748, 29.762278191433214 ], [ -95.555859050938096, 29.762155191428512 ], [ -95.555710050949145, 29.761452191065572 ], [ -95.555589050504196, 29.76126819074759 ], [ -95.554789051061405, 29.761123191040646 ], [ -95.554532050173819, 29.761014190525874 ], [ -95.554432050662669, 29.7609011905346 ], [ -95.554406050065296, 29.760689190787623 ], [ -95.554690050420504, 29.760021190942894 ], [ -95.554764050895258, 29.759672190596493 ], [ -95.554708050160414, 29.759320190725003 ], [ -95.554508050214707, 29.759208190278915 ], [ -95.554145050370863, 29.759255190523817 ], [ -95.553447050098342, 29.759545190927934 ], [ -95.553170049947539, 29.759588190474627 ], [ -95.553092049997986, 29.759600190984937 ], [ -95.552881050056939, 29.759633190575698 ], [ -95.552500050468012, 29.759839190852826 ], [ -95.552407050135201, 29.759957191009974 ], [ -95.552387049833769, 29.760098190713258 ], [ -95.552726049688218, 29.760624190614529 ], [ -95.552670050117882, 29.760679191021691 ], [ -95.552575050590036, 29.760695191210615 ], [ -95.552166049895945, 29.760723191286335 ], [ -95.551970049930631, 29.760723191004423 ], [ -95.551699049871573, 29.760756191078386 ], [ -95.551283049270737, 29.760772191185705 ], [ -95.55108804950828, 29.760750191331795 ], [ -95.550987049833282, 29.760723191113673 ], [ -95.55089905003463, 29.760684191071245 ], [ -95.550830049462263, 29.760640191154739 ], [ -95.550628049449983, 29.76048119065852 ], [ -95.550401049168457, 29.76035419055605 ], [ -95.550143049958876, 29.760151190726795 ], [ -95.549948049568385, 29.759915191333672 ], [ -95.549727048814361, 29.759711190841056 ], [ -95.549456048803563, 29.759422191222036 ], [ -95.549393049493517, 29.759354190809606 ], [ -95.549255049249155, 29.75924919106814 ], [ -95.549097049361109, 29.759167190397722 ], [ -95.548915048763234, 29.759123191112671 ], [ -95.548537049513214, 29.759117190351368 ], [ -95.548291049142748, 29.759134191115351 ], [ -95.547907048443477, 29.759134190789659 ], [ -95.547844049124279, 29.759128190937311 ], [ -95.547806048483025, 29.759112190440998 ], [ -95.547780048504947, 29.759084190912969 ], [ -95.547768048317735, 29.759035190533133 ], [ -95.547806049140746, 29.758798190603528 ], [ -95.547919049049398, 29.758419191093566 ], [ -95.548026049279457, 29.758199190527435 ], [ -95.548089048736358, 29.758111190906636 ], [ -95.548133048603546, 29.758012190738533 ], [ -95.548184048874049, 29.757941190708024 ], [ -95.548285049217839, 29.757677190341031 ], [ -95.548329048382939, 29.757594190027362 ], [ -95.548335048799231, 29.757534190023097 ], [ -95.548329048394336, 29.757413190148181 ], [ -95.548310049305073, 29.757386190626182 ], [ -95.547976048513377, 29.757259190833587 ], [ -95.547661048989497, 29.757105190278487 ], [ -95.547472048311818, 29.756984190573451 ], [ -95.547327048376104, 29.756874190071663 ], [ -95.546899047999432, 29.756621190438736 ], [ -95.546817048311354, 29.756533190565598 ], [ -95.546647048233552, 29.756396190116394 ], [ -95.546540048074164, 29.756330189915595 ], [ -95.546357047903413, 29.756187190036908 ], [ -95.546307048044227, 29.756099190503541 ], [ -95.546187048717456, 29.755994190044191 ], [ -95.546055048390556, 29.755928190401864 ], [ -95.545973048541171, 29.755846190618669 ], [ -95.545946047909055, 29.755812190395901 ], [ -95.545834047743497, 29.755670190432234 ], [ -95.545733048445953, 29.755577190519986 ], [ -95.545460047730145, 29.75539218965417 ], [ -95.545286047960673, 29.755274190121018 ], [ -95.545147047942308, 29.755010190268059 ], [ -95.545122047488803, 29.754862190012386 ], [ -95.545135048358901, 29.754614189998328 ], [ -95.54523004768572, 29.75427918964451 ], [ -95.54533004782823, 29.754114189846948 ], [ -95.545507047472213, 29.753927189658206 ], [ -95.545690047804129, 29.753757189670548 ], [ -95.545853048547144, 29.753564189431351 ], [ -95.545872047723407, 29.753433189917047 ], [ -95.545835048040431, 29.753251189859959 ], [ -95.545727047672244, 29.753097189413182 ], [ -95.545595048133464, 29.752993189476129 ], [ -95.545532048222398, 29.75298218966045 ], [ -95.545406048276291, 29.752982189671147 ], [ -95.545312048203968, 29.753000189821652 ], [ -95.545236047434742, 29.753015189715754 ], [ -95.545036048090509, 29.753102189262755 ], [ -95.544921048136132, 29.753152190077341 ], [ -95.544795047683593, 29.753174189243371 ], [ -95.544638047375798, 29.753185190076181 ], [ -95.544511047902347, 29.753185189652022 ], [ -95.544264048020338, 29.753154189494168 ], [ -95.544071047499628, 29.75313018969231 ], [ -95.543888047464236, 29.753124189610116 ], [ -95.54376304758415, 29.753140189482796 ], [ -95.54352304755362, 29.753172189591712 ], [ -95.54346604790517, 29.75317918944096 ], [ -95.543314047626794, 29.753185189884348 ], [ -95.54322904770828, 29.753179189732656 ], [ -95.542867047219147, 29.753157189810437 ], [ -95.542565047702681, 29.753108189757533 ], [ -95.542407046649132, 29.75302518956094 ], [ -95.542231047229919, 29.752893189487178 ], [ -95.542162047072452, 29.752827189550302 ], [ -95.542092046998803, 29.752728189861557 ], [ -95.542061047082242, 29.752646189403837 ], [ -95.542042047364049, 29.752503189421475 ], [ -95.542074046936222, 29.751876189465619 ], [ -95.542061047092631, 29.751832189322116 ], [ -95.54205104658817, 29.751816189391619 ], [ -95.542017047447402, 29.751761189439794 ], [ -95.541935047163179, 29.751706189038689 ], [ -95.541714046894541, 29.751651189847991 ], [ -95.541444047166635, 29.751656189601785 ], [ -95.540517046742295, 29.751722189786701 ], [ -95.540379046766859, 29.75171718965111 ], [ -95.540089046757103, 29.751678189729965 ], [ -95.539988046481042, 29.751694189293179 ], [ -95.539887046750408, 29.751755189357425 ], [ -95.539764046786487, 29.75191518928051 ], [ -95.539642046491934, 29.752074189524478 ], [ -95.53955304601601, 29.752228189288388 ], [ -95.539497046253217, 29.752371189786462 ], [ -95.539446046887619, 29.752409189328333 ], [ -95.539150046528874, 29.752574189948582 ], [ -95.538986046112342, 29.752623189961927 ], [ -95.538709045792828, 29.75262918949916 ], [ -95.538621046226865, 29.752601189475012 ], [ -95.538514046097177, 29.752552189896431 ], [ -95.538337046220278, 29.752442190064663 ], [ -95.538130046177244, 29.752260189310253 ], [ -95.537934045521141, 29.751958189849358 ], [ -95.537802045875466, 29.751735189236367 ], [ -95.537752045733427, 29.7516501891964 ], [ -95.537619045779081, 29.75149118963337 ], [ -95.537563045966309, 29.751441189181833 ], [ -95.537430045471396, 29.751403189589716 ], [ -95.536933045146498, 29.751425190021532 ], [ -95.536693045761368, 29.751458189731114 ], [ -95.536448045663519, 29.751468189817757 ], [ -95.53629604531703, 29.751441189325014 ], [ -95.536126045091933, 29.751397189850408 ], [ -95.535969045658447, 29.751325190012874 ], [ -95.535805045876543, 29.75123218983304 ], [ -95.535629045704454, 29.751067189577352 ], [ -95.535459045117449, 29.750852189560803 ], [ -95.535377045244616, 29.75077018917175 ], [ -95.535093045147406, 29.750583189269889 ], [ -95.534772045040242, 29.750352189885991 ], [ -95.534526045469491, 29.750149189404166 ], [ -95.53418004467531, 29.749800189054781 ], [ -95.533934044831099, 29.749657189762978 ], [ -95.53371404457485, 29.749574188942766 ], [ -95.533588044923732, 29.749591189625718 ], [ -95.533354044257322, 29.749679189560013 ], [ -95.533002044783686, 29.749855189600179 ], [ -95.532907044200712, 29.75000518930133 ], [ -95.532806044639727, 29.75015418973836 ], [ -95.532630044430604, 29.750264189886742 ], [ -95.532359044302339, 29.750335189069361 ], [ -95.531975044035747, 29.750291189538654 ], [ -95.531168044377978, 29.750005189940875 ], [ -95.531030043814283, 29.749915189225074 ], [ -95.530973043681399, 29.749827189901609 ], [ -95.530941043964603, 29.74972218959903 ], [ -95.530923044365025, 29.749558189310033 ], [ -95.530986043967246, 29.749437188946683 ], [ -95.531565043900187, 29.749140189570298 ], [ -95.531792043882035, 29.749013189347583 ], [ -95.53198704459183, 29.74877218946683 ], [ -95.532069044121599, 29.748629189537191 ], [ -95.53208804389466, 29.748392189046754 ], [ -95.532000043774914, 29.748084189081737 ], [ -95.53181104383745, 29.747628188640284 ], [ -95.531547043785054, 29.747320188782982 ], [ -95.531400044323746, 29.747215189180061 ], [ -95.53109604439706, 29.747078189042341 ], [ -95.53083804339029, 29.746961189195442 ], [ -95.530683043538332, 29.746866188574057 ], [ -95.530381043275881, 29.746683188936913 ], [ -95.529786043981247, 29.74632618882249 ], [ -95.529802043727329, 29.746242189035289 ], [ -95.529758043669972, 29.746044188832045 ], [ -95.529563043096573, 29.745879188713662 ], [ -95.529437043649381, 29.74581318833696 ], [ -95.529191043407437, 29.745797188311453 ], [ -95.52894504330088, 29.745846189135488 ], [ -95.528655043004477, 29.745940188479693 ], [ -95.528417043489384, 29.74607918865949 ], [ -95.527955043156609, 29.746452188912489 ], [ -95.527932043020044, 29.746453188726019 ], [ -95.527868042635774, 29.746455188526287 ], [ -95.527742043351196, 29.746459188456033 ], [ -95.527572043453063, 29.746447188745822 ], [ -95.527282043421565, 29.746426188831887 ], [ -95.527143042623436, 29.746479189128607 ], [ -95.526989042951485, 29.746539188539291 ], [ -95.526888043338886, 29.746578189018329 ], [ -95.526805042701639, 29.746605188845255 ], [ -95.526585043123177, 29.746673189191554 ], [ -95.526580043186613, 29.746664189392931 ], [ -95.526172042405179, 29.746762189179414 ], [ -95.52611304288672, 29.746848188685668 ], [ -95.526080043171746, 29.746896188983524 ], [ -95.526041042666847, 29.746952188971704 ], [ -95.526012042307102, 29.746994189345529 ], [ -95.525997042605511, 29.747016189332442 ], [ -95.525975042227685, 29.747050188831125 ], [ -95.525947043017482, 29.74709118885626 ], [ -95.525936042719181, 29.747107188932855 ], [ -95.525936042570606, 29.747130188926029 ], [ -95.525940042392321, 29.747166189459456 ], [ -95.525889042888338, 29.747209189058271 ], [ -95.525814043144635, 29.747434188857159 ], [ -95.525788042916687, 29.747610188851848 ], [ -95.525776042331898, 29.748056189107931 ], [ -95.525713042774413, 29.748193189085502 ], [ -95.52584004287786, 29.750287189919835 ], [ -95.525931043077591, 29.751132190138264 ], [ -95.525953043304355, 29.751939190148065 ], [ -95.525963042672302, 29.753405190803665 ], [ -95.525992042912677, 29.753549190345957 ], [ -95.526114043276493, 29.753747190072868 ], [ -95.526153043228376, 29.753812190549731 ], [ -95.526559042857215, 29.754005190090702 ], [ -95.527844043553699, 29.754014190825522 ], [ -95.528481043593359, 29.754027190366497 ], [ -95.529627044074772, 29.754032190796934 ], [ -95.529624044196609, 29.754880190449366 ], [ -95.529648044504157, 29.755959190774707 ], [ -95.529658044196012, 29.756490190832881 ], [ -95.529668044155855, 29.757057191305673 ], [ -95.529671043787417, 29.757235190875221 ], [ -95.529679043958168, 29.757610190713777 ], [ -95.52968304372817, 29.758036191087388 ], [ -95.52967204431971, 29.75836619101652 ], [ -95.529667044294428, 29.758510191598923 ], [ -95.529681044339611, 29.75909819120967 ], [ -95.530389044598664, 29.759062191657712 ], [ -95.530610043939589, 29.759060190946812 ], [ -95.531640044506958, 29.759051191459843 ], [ -95.532785045297331, 29.759048191701261 ], [ -95.533921044822279, 29.759021191247989 ], [ -95.534118044998849, 29.75902219163742 ], [ -95.535264045723395, 29.759011191167481 ], [ -95.537070045690029, 29.758992191148742 ], [ -95.537229046067111, 29.759006191137463 ], [ -95.537655046173057, 29.759003191310246 ], [ -95.537907045742301, 29.758997191144267 ], [ -95.538155046302379, 29.75899819086823 ], [ -95.538518046780624, 29.759001191490892 ], [ -95.539816047199906, 29.759006190910615 ], [ -95.540539046509949, 29.759010191108015 ], [ -95.540539046670702, 29.758933190719315 ], [ -95.541599047297495, 29.758930191306757 ], [ -95.542269047391798, 29.75892419059927 ], [ -95.542403047330879, 29.75893719089601 ], [ -95.542545047024504, 29.758971191276288 ], [ -95.542657047685282, 29.759018190661624 ], [ -95.542845047957059, 29.759071190926761 ], [ -95.543031047129318, 29.759097191388566 ], [ -95.543771048045613, 29.759103190541612 ], [ -95.54424004792395, 29.759098190991462 ], [ -95.544328047603202, 29.759037190877873 ], [ -95.544708048191694, 29.759038190496078 ], [ -95.544859048196116, 29.759039191214626 ], [ -95.544861047693743, 29.758919190817913 ], [ -95.544867048474444, 29.758664191243259 ], [ -95.544998047781519, 29.758675190787176 ], [ -95.545272048186391, 29.758688191042342 ], [ -95.545620048093738, 29.758706190822128 ], [ -95.545883047817426, 29.758767190390124 ], [ -95.546089047961843, 29.758889190947851 ], [ -95.546207048851485, 29.759027191256436 ], [ -95.546215048031925, 29.75903619081377 ], [ -95.546261048827319, 29.759091191011454 ], [ -95.54637504828807, 29.759344190819206 ], [ -95.546420048367139, 29.759437190964306 ], [ -95.546420048790694, 29.759981190649015 ], [ -95.546388048740468, 29.76000019116395 ], [ -95.546248048530927, 29.760099191446965 ], [ -95.54614104839159, 29.760182191064182 ], [ -95.546042048812126, 29.760331190984719 ], [ -95.54600604880838, 29.760404190766227 ], [ -95.545947048146616, 29.760520190851608 ], [ -95.545927048849705, 29.760649191230026 ], [ -95.545917048193743, 29.760823191563738 ], [ -95.545936048493289, 29.761732191526658 ], [ -95.545933048638062, 29.762144191359667 ], [ -95.54594804796686, 29.762617191428525 ], [ -95.545972048050146, 29.762754191232457 ], [ -95.546034048129769, 29.762893191360966 ], [ -95.54612204841105, 29.763051192099347 ], [ -95.546228048692868, 29.763146191359063 ], [ -95.546252048520998, 29.764317191518401 ], [ -95.546174048233027, 29.764704192345171 ], [ -95.546100048993907, 29.765054192055608 ], [ -95.545913048797559, 29.765182192368044 ], [ -95.546213048569825, 29.765173191870037 ], [ -95.546671048663981, 29.765652192510515 ], [ -95.547084048933456, 29.765976192366765 ], [ -95.547522048757713, 29.76615919254558 ], [ -95.547879048773538, 29.766238192163843 ], [ -95.548316049481073, 29.766301192664699 ], [ -95.549584049329553, 29.76629519220074 ], [ -95.550061049291074, 29.766286191972206 ], [ -95.550583049674515, 29.76627119239501 ], [ -95.550806049833653, 29.766267192137768 ], [ -95.551350050233211, 29.766256192115652 ], [ -95.551565049985385, 29.766252192311821 ], [ -95.55214604992868, 29.766243191825446 ], [ -95.552276050484082, 29.766241192095155 ], [ -95.552889050275652, 29.766229191777466 ], [ -95.553262050421395, 29.766222192234896 ], [ -95.553801051008051, 29.766214192097795 ], [ -95.554529050415894, 29.766197192232049 ], [ -95.554735051199671, 29.766196191876322 ], [ -95.554906050559268, 29.766192191886159 ], [ -95.5549700509644, 29.766190192420577 ], [ -95.555053050773566, 29.766187192019796 ], [ -95.55574905073648, 29.766165191906591 ], [ -95.555902051305722, 29.7661711921352 ], [ -95.556092051197339, 29.766194191663629 ], [ -95.556142050768088, 29.766200191906151 ], [ -95.556179050786525, 29.766208192237983 ], [ -95.556361051561822, 29.766250191793535 ], [ -95.556518051702909, 29.766296191764301 ], [ -95.556835051608857, 29.766439192301331 ], [ -95.556877051937121, 29.766466192015972 ], [ -95.557105051056269, 29.766614191980331 ], [ -95.557216051773679, 29.76669119225242 ], [ -95.557453051999147, 29.766935191829713 ], [ -95.557577051503046, 29.767101191967726 ], [ -95.557601051472545, 29.76714319184266 ], [ -95.557678051857792, 29.767275192335763 ], [ -95.55776505204129, 29.767463191886947 ], [ -95.557834051948575, 29.767719191890865 ], [ -95.557854051391175, 29.767915192479116 ], [ -95.55788105158706, 29.76885419255904 ], [ -95.557891051853261, 29.76983519241718 ], [ -95.557942051742103, 29.770193192539054 ], [ -95.558029051907155, 29.770514192742951 ], [ -95.558086052390195, 29.770693193035051 ], [ -95.558272051494825, 29.771100192716311 ], [ -95.558467051741005, 29.771385193162534 ], [ -95.558710051768173, 29.771705192836396 ], [ -95.559094052057816, 29.772024192713396 ], [ -95.559279052707296, 29.772158193127346 ], [ -95.559633052529648, 29.772365193146925 ], [ -95.560097052315129, 29.772575193501599 ], [ -95.560701052701091, 29.772751192863687 ], [ -95.561068053001478, 29.772800193319764 ], [ -95.561423052973225, 29.772813193514288 ], [ -95.562424053219232, 29.772798193171848 ], [ -95.562685052878692, 29.772787192726845 ], [ -95.562883053241436, 29.772779192942359 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 622, "Tract": "48201332700", "Area_SqMi": 0.96375877923049058, "total_2009": 2778, "total_2010": 2575, "total_2011": 2706, "total_2012": 3107, "total_2013": 3190, "total_2014": 3083, "total_2015": 3201, "total_2016": 2648, "total_2017": 2489, "total_2018": 2543, "total_2019": 2426, "total_2020": 2357, "age1": 365, "age2": 1217, "age3": 693, "earn1": 221, "earn2": 556, "earn3": 1498, "naics_s01": 1, "naics_s02": 120, "naics_s03": 0, "naics_s04": 487, "naics_s05": 793, "naics_s06": 276, "naics_s07": 47, "naics_s08": 37, "naics_s09": 0, "naics_s10": 0, "naics_s11": 148, "naics_s12": 7, "naics_s13": 0, "naics_s14": 125, "naics_s15": 0, "naics_s16": 6, "naics_s17": 16, "naics_s18": 30, "naics_s19": 182, "naics_s20": 0, "race1": 1952, "race2": 176, "race3": 21, "race4": 94, "race5": 5, "race6": 27, "ethnicity1": 1138, "ethnicity2": 1137, "edu1": 562, "edu2": 512, "edu3": 528, "edu4": 308, "Shape_Length": 26204.042424583149, "Shape_Area": 26867945.275310181, "total_2021": 2298, "total_2022": 2275 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.325663988657624, 29.691994184204344 ], [ -95.325721988915305, 29.69196718472509 ], [ -95.325646988637089, 29.691722184698271 ], [ -95.325518989124703, 29.691387184071139 ], [ -95.325359989144829, 29.690810184109104 ], [ -95.324926988300987, 29.689386184043681 ], [ -95.324396988809468, 29.687660183544754 ], [ -95.324047988664915, 29.686481183380497 ], [ -95.323941988338689, 29.686124183645724 ], [ -95.323724988637125, 29.685315183105587 ], [ -95.323456987645656, 29.684419183357257 ], [ -95.32296198800374, 29.682753182749934 ], [ -95.322946987615254, 29.682701182580782 ], [ -95.321799987846504, 29.67886218190705 ], [ -95.321461987714429, 29.677803181504601 ], [ -95.32105498746057, 29.677903181767221 ], [ -95.32055198729276, 29.678029181532338 ], [ -95.319515987058864, 29.678257182126099 ], [ -95.318975986782519, 29.678376182148948 ], [ -95.318187986004475, 29.678555182500855 ], [ -95.317391986337213, 29.678734182136708 ], [ -95.316779986179114, 29.678877182593364 ], [ -95.316593985973412, 29.678928181795477 ], [ -95.315781986316864, 29.67909818234823 ], [ -95.315042986147986, 29.679282182324624 ], [ -95.314878985340329, 29.679307182128319 ], [ -95.314246985730847, 29.679458182808244 ], [ -95.313997985555545, 29.679512182375152 ], [ -95.313453985138409, 29.679644182800928 ], [ -95.313112984853305, 29.679722182336796 ], [ -95.312678984703211, 29.679820182733121 ], [ -95.312273984782038, 29.679903182374744 ], [ -95.311881985296907, 29.679998182855531 ], [ -95.311093984800493, 29.680174183037689 ], [ -95.310316984091202, 29.680359182914824 ], [ -95.309767984389268, 29.680475183015979 ], [ -95.309534984747543, 29.680528182832042 ], [ -95.309360984319923, 29.680568183049871 ], [ -95.308741983878903, 29.680716182797234 ], [ -95.308375983820397, 29.680801183043439 ], [ -95.307949983526925, 29.680894183042838 ], [ -95.307423983291741, 29.681005183173298 ], [ -95.307172983293441, 29.681068182708589 ], [ -95.306385983666587, 29.681233182884885 ], [ -95.306094983727789, 29.681308183241772 ], [ -95.305578982874295, 29.681423182971709 ], [ -95.304110982758175, 29.681426183288568 ], [ -95.303190983235311, 29.681440183348755 ], [ -95.301520982016896, 29.68143518364473 ], [ -95.30142098225852, 29.681432182918748 ], [ -95.298694982068099, 29.681443183239367 ], [ -95.294224980801886, 29.681446183143034 ], [ -95.293907980825963, 29.681456183169917 ], [ -95.294385980457847, 29.682181183893675 ], [ -95.294829980500609, 29.682886183833254 ], [ -95.295081980777056, 29.683249183502383 ], [ -95.295479981083687, 29.683854183836026 ], [ -95.295716981271909, 29.684188183878614 ], [ -95.295907981022637, 29.684478184111089 ], [ -95.296316980673765, 29.685154184553863 ], [ -95.298692981976416, 29.685198183959852 ], [ -95.300731982408962, 29.685195184439511 ], [ -95.302773982808901, 29.685191184171689 ], [ -95.305707983856109, 29.685176183827824 ], [ -95.306354984080642, 29.6852031837292 ], [ -95.306694983537255, 29.685255183721658 ], [ -95.307033984343803, 29.685398183553335 ], [ -95.307524983871815, 29.685742183670282 ], [ -95.307931984405116, 29.686062183712671 ], [ -95.309521984362007, 29.687283184300643 ], [ -95.312774985901058, 29.689771184680716 ], [ -95.313908985720076, 29.690662184719319 ], [ -95.314459986542104, 29.690966185097118 ], [ -95.315110986245244, 29.691245184356237 ], [ -95.316192986860671, 29.69156218504893 ], [ -95.316422986368096, 29.691649184599523 ], [ -95.316840986783745, 29.691777184925765 ], [ -95.318351987574403, 29.692237185007613 ], [ -95.319168987044179, 29.692480185237851 ], [ -95.320437987758297, 29.692864185281532 ], [ -95.320842987312886, 29.692999185148917 ], [ -95.321484988378458, 29.693195184979423 ], [ -95.321690988179725, 29.693291184676742 ], [ -95.322218988386041, 29.693432184955871 ], [ -95.322509988674355, 29.693510184746362 ], [ -95.322941988787861, 29.693314184955039 ], [ -95.325663988657624, 29.691994184204344 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 623, "Tract": "48201332800", "Area_SqMi": 0.75640078203887962, "total_2009": 1708, "total_2010": 1883, "total_2011": 1461, "total_2012": 920, "total_2013": 1010, "total_2014": 979, "total_2015": 907, "total_2016": 1684, "total_2017": 1081, "total_2018": 1153, "total_2019": 1129, "total_2020": 1044, "age1": 303, "age2": 536, "age3": 263, "earn1": 185, "earn2": 452, "earn3": 465, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 58, "naics_s06": 187, "naics_s07": 94, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 45, "naics_s12": 36, "naics_s13": 0, "naics_s14": 29, "naics_s15": 6, "naics_s16": 176, "naics_s17": 0, "naics_s18": 439, "naics_s19": 22, "naics_s20": 0, "race1": 807, "race2": 222, "race3": 10, "race4": 48, "race5": 1, "race6": 14, "ethnicity1": 600, "ethnicity2": 502, "edu1": 208, "edu2": 224, "edu3": 249, "edu4": 118, "Shape_Length": 20782.181428025098, "Shape_Area": 21087159.210367151, "total_2021": 950, "total_2022": 1102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.322509988674355, 29.693510184746362 ], [ -95.322218988386041, 29.693432184955871 ], [ -95.321690988179725, 29.693291184676742 ], [ -95.321484988378458, 29.693195184979423 ], [ -95.320842987312886, 29.692999185148917 ], [ -95.320437987758297, 29.692864185281532 ], [ -95.319168987044179, 29.692480185237851 ], [ -95.318351987574403, 29.692237185007613 ], [ -95.316840986783745, 29.691777184925765 ], [ -95.316422986368096, 29.691649184599523 ], [ -95.316192986860671, 29.69156218504893 ], [ -95.315110986245244, 29.691245184356237 ], [ -95.314459986542104, 29.690966185097118 ], [ -95.313908985720076, 29.690662184719319 ], [ -95.312774985901058, 29.689771184680716 ], [ -95.309521984362007, 29.687283184300643 ], [ -95.307931984405116, 29.686062183712671 ], [ -95.307524983871815, 29.685742183670282 ], [ -95.307033984343803, 29.685398183553335 ], [ -95.306694983537255, 29.685255183721658 ], [ -95.306354984080642, 29.6852031837292 ], [ -95.305707983856109, 29.685176183827824 ], [ -95.302773982808901, 29.685191184171689 ], [ -95.300731982408962, 29.685195184439511 ], [ -95.298692981976416, 29.685198183959852 ], [ -95.296316980673765, 29.685154184553863 ], [ -95.296693981202324, 29.685770184067405 ], [ -95.296903981148276, 29.686104184063382 ], [ -95.297479981547966, 29.686988184869172 ], [ -95.297921982145013, 29.687661185062982 ], [ -95.298064981558113, 29.687853185042286 ], [ -95.298432981763455, 29.68846018445678 ], [ -95.298562981378893, 29.688751184747176 ], [ -95.298602981369882, 29.688842185087523 ], [ -95.298668982138182, 29.689053185270847 ], [ -95.298693982078902, 29.689188184717569 ], [ -95.298721981705128, 29.689289184693262 ], [ -95.298777982401774, 29.689615185069801 ], [ -95.298777981624042, 29.690490185580057 ], [ -95.298804982045013, 29.691372185250877 ], [ -95.29887598158939, 29.692315185805825 ], [ -95.299006982237685, 29.692719185795909 ], [ -95.299371982398327, 29.693525186055698 ], [ -95.29976598286342, 29.694449185659586 ], [ -95.300174982782025, 29.695362186197638 ], [ -95.300307982663497, 29.695678185799423 ], [ -95.300390982406057, 29.695877186122413 ], [ -95.300685982710547, 29.695907185968757 ], [ -95.301665982649354, 29.696008186017007 ], [ -95.302086983313458, 29.696064185892798 ], [ -95.304298983851766, 29.696360186629775 ], [ -95.304505984063823, 29.696388186160029 ], [ -95.305393984428349, 29.696507185876985 ], [ -95.305522983878618, 29.696526186544762 ], [ -95.305939983952356, 29.696586186430441 ], [ -95.306737984047174, 29.696688186159545 ], [ -95.307849984442285, 29.696830186210434 ], [ -95.308731984455761, 29.696943186566987 ], [ -95.309647985009761, 29.69705918615346 ], [ -95.309910985526145, 29.697091185796697 ], [ -95.310309985775191, 29.697141185870322 ], [ -95.310781985210426, 29.697175186216977 ], [ -95.311685986048587, 29.697239186172084 ], [ -95.31206498601847, 29.697232186330393 ], [ -95.312112986133826, 29.697231186541927 ], [ -95.312894985661629, 29.697190186498826 ], [ -95.313425985777855, 29.697118186281635 ], [ -95.314023986716904, 29.697006185621373 ], [ -95.314638986234087, 29.696859185959919 ], [ -95.315184986204528, 29.696702185861099 ], [ -95.315777986585104, 29.696513186216809 ], [ -95.316887986902699, 29.696059186107515 ], [ -95.319341987019044, 29.694951185418198 ], [ -95.322509988674355, 29.693510184746362 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 624, "Tract": "48201333000", "Area_SqMi": 0.58958725810420021, "total_2009": 570, "total_2010": 605, "total_2011": 595, "total_2012": 547, "total_2013": 605, "total_2014": 771, "total_2015": 652, "total_2016": 684, "total_2017": 707, "total_2018": 647, "total_2019": 619, "total_2020": 615, "age1": 163, "age2": 310, "age3": 140, "earn1": 191, "earn2": 270, "earn3": 152, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 45, "naics_s06": 0, "naics_s07": 120, "naics_s08": 1, "naics_s09": 0, "naics_s10": 13, "naics_s11": 3, "naics_s12": 22, "naics_s13": 0, "naics_s14": 16, "naics_s15": 0, "naics_s16": 97, "naics_s17": 0, "naics_s18": 265, "naics_s19": 8, "naics_s20": 0, "race1": 433, "race2": 110, "race3": 8, "race4": 47, "race5": 1, "race6": 14, "ethnicity1": 364, "ethnicity2": 249, "edu1": 118, "edu2": 134, "edu3": 121, "edu4": 77, "Shape_Length": 20720.713150735413, "Shape_Area": 16436683.667267876, "total_2021": 629, "total_2022": 613 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.296316980673765, 29.685154184553863 ], [ -95.295907981022637, 29.684478184111089 ], [ -95.295716981271909, 29.684188183878614 ], [ -95.295479981083687, 29.683854183836026 ], [ -95.295081980777056, 29.683249183502383 ], [ -95.294829980500609, 29.682886183833254 ], [ -95.294385980457847, 29.682181183893675 ], [ -95.293907980825963, 29.681456183169917 ], [ -95.293452980670367, 29.680758183330767 ], [ -95.293270980637601, 29.680489183078393 ], [ -95.292905979902471, 29.680044183112535 ], [ -95.292256979473549, 29.679175183036779 ], [ -95.292046980212817, 29.678845183277858 ], [ -95.291760979323556, 29.678478183112311 ], [ -95.291117979001569, 29.677571182741122 ], [ -95.291025979406569, 29.677440182678875 ], [ -95.290571978921307, 29.676762182189588 ], [ -95.290012978878664, 29.675967182621029 ], [ -95.28990297912631, 29.675802182511234 ], [ -95.289511979301736, 29.675276182733345 ], [ -95.289396979262136, 29.675015182431622 ], [ -95.28933897891244, 29.674864182339345 ], [ -95.289097978423385, 29.674410182304293 ], [ -95.289090979306692, 29.674095181926635 ], [ -95.289088978787831, 29.674029181931608 ], [ -95.288916978304243, 29.674083182200562 ], [ -95.288688978549814, 29.67416918258137 ], [ -95.288430978629435, 29.674342182456488 ], [ -95.288257979047472, 29.674588182544124 ], [ -95.288171979024952, 29.674803182652553 ], [ -95.288134978628236, 29.675018182685768 ], [ -95.288165979063507, 29.675191182070321 ], [ -95.288288978791002, 29.675425182357909 ], [ -95.288417978510537, 29.675708182565963 ], [ -95.288528978366557, 29.676065182178291 ], [ -95.288577978360024, 29.676421182358915 ], [ -95.288577978263831, 29.676649182532305 ], [ -95.288557978403688, 29.676884183010554 ], [ -95.288494979100605, 29.677043182355199 ], [ -95.288262978226413, 29.677463182694684 ], [ -95.288126979077248, 29.677596183023105 ], [ -95.287684978340337, 29.677678183010727 ], [ -95.287316978942982, 29.677694183181963 ], [ -95.286617978619248, 29.677665182632399 ], [ -95.286101978601963, 29.677555182807868 ], [ -95.285056977559975, 29.677723182589201 ], [ -95.284796977639331, 29.677619183238129 ], [ -95.284316978002167, 29.677540183271255 ], [ -95.283728977460257, 29.677216183207054 ], [ -95.283443977059605, 29.677210182901742 ], [ -95.283255977430386, 29.677281183092049 ], [ -95.282966977038711, 29.677535183221206 ], [ -95.282901977103649, 29.677628182731087 ], [ -95.282895977223234, 29.677850183311811 ], [ -95.282893977290627, 29.67794818348716 ], [ -95.282642977625116, 29.678229183614992 ], [ -95.282440976829889, 29.678250182955054 ], [ -95.282180977700207, 29.678354183120884 ], [ -95.282035976874639, 29.678355183660347 ], [ -95.281644977433174, 29.678360183682358 ], [ -95.281594976890446, 29.678374183455134 ], [ -95.281487977054852, 29.678403182842139 ], [ -95.281096977342116, 29.678719183058792 ], [ -95.280918976998777, 29.679002183410262 ], [ -95.280715976430102, 29.679177183257778 ], [ -95.280478977182028, 29.67927318383931 ], [ -95.280166977088541, 29.67929318378177 ], [ -95.280114976277133, 29.679296183913831 ], [ -95.279894977110018, 29.679381183303146 ], [ -95.279441977052528, 29.679267183438071 ], [ -95.279310976712239, 29.679234183269596 ], [ -95.279159976922131, 29.679113183623162 ], [ -95.27903397621904, 29.678932183191272 ], [ -95.278723975860743, 29.678849183052417 ], [ -95.278485975769328, 29.678785183375958 ], [ -95.278059976293804, 29.678918183592824 ], [ -95.277740975890765, 29.679198183573767 ], [ -95.277555975926205, 29.67927518381163 ], [ -95.277294975548358, 29.679353184036685 ], [ -95.276821976031187, 29.679494184077626 ], [ -95.276805976263645, 29.679495183473577 ], [ -95.276450975736509, 29.679506184097811 ], [ -95.276018975828563, 29.679390183896349 ], [ -95.275408975246847, 29.679294184070212 ], [ -95.274835975177439, 29.679093183224339 ], [ -95.274696975117038, 29.679013183834446 ], [ -95.274627975368986, 29.678778183450952 ], [ -95.274208975111875, 29.678555183340048 ], [ -95.273883975574691, 29.678534183126946 ], [ -95.273500975267041, 29.678662183942539 ], [ -95.273422974981216, 29.679166183803144 ], [ -95.273513975288225, 29.679477183383451 ], [ -95.273505975401946, 29.67976318369811 ], [ -95.273420974579381, 29.68000018381872 ], [ -95.272878975348092, 29.680256183847082 ], [ -95.272679974676251, 29.680351184045065 ], [ -95.272817975021951, 29.680489183824047 ], [ -95.273351975459462, 29.681026183714017 ], [ -95.273938975446853, 29.681611184552139 ], [ -95.27445897523846, 29.682129184184031 ], [ -95.275751976236819, 29.683369184443315 ], [ -95.276613976027392, 29.68422718502525 ], [ -95.277206975716055, 29.684819184811474 ], [ -95.277251976230403, 29.684864184831518 ], [ -95.277325976393783, 29.684938184488157 ], [ -95.277368975988608, 29.684985185198784 ], [ -95.278050976606636, 29.685686184713035 ], [ -95.278118976626189, 29.685756185100288 ], [ -95.278320976083279, 29.685632184870073 ], [ -95.278504976876292, 29.685536185241368 ], [ -95.278924977105163, 29.685504184505472 ], [ -95.280298977468689, 29.685492185226011 ], [ -95.281708977112643, 29.685461184777811 ], [ -95.28235497710611, 29.685449184892772 ], [ -95.283496977511405, 29.685430184662966 ], [ -95.284333977786389, 29.685408184951616 ], [ -95.286940978228145, 29.685366184685797 ], [ -95.288910979114945, 29.685311184439779 ], [ -95.289272979841286, 29.685305184588703 ], [ -95.290239979094594, 29.68526118441396 ], [ -95.290427979346092, 29.685254184146277 ], [ -95.290921979523873, 29.685259184020087 ], [ -95.293001980153448, 29.685227184717593 ], [ -95.295211980939385, 29.685160184134638 ], [ -95.295411981398374, 29.685158184027649 ], [ -95.295805980644346, 29.685147184322723 ], [ -95.296316980673765, 29.685154184553863 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 625, "Tract": "48071710202", "Area_SqMi": 67.631635170956187, "total_2009": 3450, "total_2010": 3430, "total_2011": 3612, "total_2012": 2935, "total_2013": 3084, "total_2014": 4132, "total_2015": 4111, "total_2016": 3316, "total_2017": 3417, "total_2018": 3397, "total_2019": 5632, "total_2020": 5952, "age1": 1335, "age2": 3263, "age3": 1332, "earn1": 675, "earn2": 1476, "earn3": 3779, "naics_s01": 0, "naics_s02": 171, "naics_s03": 48, "naics_s04": 428, "naics_s05": 1968, "naics_s06": 486, "naics_s07": 82, "naics_s08": 1727, "naics_s09": 3, "naics_s10": 17, "naics_s11": 38, "naics_s12": 174, "naics_s13": 50, "naics_s14": 430, "naics_s15": 3, "naics_s16": 86, "naics_s17": 1, "naics_s18": 60, "naics_s19": 158, "naics_s20": 0, "race1": 4392, "race2": 1106, "race3": 49, "race4": 304, "race5": 5, "race6": 74, "ethnicity1": 4107, "ethnicity2": 1823, "edu1": 917, "edu2": 1366, "edu3": 1425, "edu4": 887, "Shape_Length": 353659.40404852596, "Shape_Area": 1885454235.865814, "total_2021": 5898, "total_2022": 5930 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.945536892884647, 29.717097202515681 ], [ -94.945490892444838, 29.716794202109096 ], [ -94.945405892465132, 29.716242201940855 ], [ -94.945247891994811, 29.716004201886253 ], [ -94.944796892381788, 29.715336202259749 ], [ -94.944481892052266, 29.715002202574322 ], [ -94.943803891473991, 29.714288201645214 ], [ -94.942528891604482, 29.713341201443974 ], [ -94.942130891589528, 29.713299201545283 ], [ -94.941500891646641, 29.713233201980952 ], [ -94.94072989063838, 29.71347020183023 ], [ -94.940180891274224, 29.71363920198219 ], [ -94.936589890185104, 29.714701202515226 ], [ -94.935209889827135, 29.715110202793483 ], [ -94.935167889929176, 29.715122202618492 ], [ -94.935042889701407, 29.715159202849907 ], [ -94.935001889324695, 29.715172202556641 ], [ -94.934928889358602, 29.715169202235376 ], [ -94.934712889184027, 29.715161202100106 ], [ -94.934640889788696, 29.71515920249135 ], [ -94.934386889272588, 29.715149202378523 ], [ -94.933955889602501, 29.71513420269061 ], [ -94.933941888978111, 29.715129202285659 ], [ -94.933642889311457, 29.715025202106929 ], [ -94.933402889180314, 29.714942202319367 ], [ -94.933338888792832, 29.71491920227999 ], [ -94.933147889315848, 29.714853202565418 ], [ -94.933084889613525, 29.714831202383653 ], [ -94.933052889423578, 29.714800202053077 ], [ -94.932977888933848, 29.71472920234449 ], [ -94.932956889305572, 29.714710202796727 ], [ -94.93292488862717, 29.714680202707349 ], [ -94.932900888947941, 29.714657202063584 ], [ -94.932830889438151, 29.714591202114487 ], [ -94.932807889298715, 29.714569202305825 ], [ -94.932572889205275, 29.714347202345639 ], [ -94.93251588866022, 29.713767202249009 ], [ -94.932497888428983, 29.713576202239796 ], [ -94.932884888815465, 29.712798202148285 ], [ -94.934130889719384, 29.711706201921718 ], [ -94.934209889363217, 29.711637201496568 ], [ -94.934436889783257, 29.710869202005739 ], [ -94.934568889397084, 29.710421201620139 ], [ -94.934541889046827, 29.710210201737734 ], [ -94.934378888960282, 29.708914200896494 ], [ -94.934182888946566, 29.708210201343523 ], [ -94.934000889518032, 29.707556201309853 ], [ -94.933969888825402, 29.707446201167919 ], [ -94.933877889205306, 29.7071162013143 ], [ -94.933847889281495, 29.707007201107547 ], [ -94.933813888742534, 29.706884200814997 ], [ -94.933711889043181, 29.706518200780696 ], [ -94.93367788930594, 29.706396200744127 ], [ -94.932970889037307, 29.705213200421909 ], [ -94.932677888312043, 29.705016200218889 ], [ -94.93217688878741, 29.704680200485846 ], [ -94.930985887761167, 29.704434200471269 ], [ -94.927616887481477, 29.704318200863526 ], [ -94.927403886989424, 29.704311200279903 ], [ -94.926031887045895, 29.704050200375377 ], [ -94.925923886775379, 29.703998200757241 ], [ -94.925645886431681, 29.703866200624233 ], [ -94.925280886723783, 29.703692200722532 ], [ -94.925124886318429, 29.70320020060699 ], [ -94.925108886173689, 29.703150199994255 ], [ -94.925151886632136, 29.702900200558481 ], [ -94.925217886289317, 29.702517199921651 ], [ -94.925673886790548, 29.701632199671952 ], [ -94.926504886766864, 29.700918199493398 ], [ -94.927522886569491, 29.700535199934706 ], [ -94.928423887645877, 29.700420200097032 ], [ -94.928926886997047, 29.700356199618309 ], [ -94.92968388808346, 29.699976199462792 ], [ -94.930291887854793, 29.699195199605978 ], [ -94.930317887535921, 29.698440199273474 ], [ -94.930204888054007, 29.697810199050622 ], [ -94.929915887833445, 29.697375198662971 ], [ -94.928589887025879, 29.696920198523774 ], [ -94.926955887168631, 29.696663198956813 ], [ -94.925370886489901, 29.696809199252971 ], [ -94.924662886395453, 29.69766219912497 ], [ -94.923866885663713, 29.699166199755158 ], [ -94.923048885642729, 29.699476199887656 ], [ -94.922224885955586, 29.699604199409663 ], [ -94.921805885342664, 29.699670199532907 ], [ -94.920175885282362, 29.699606200059023 ], [ -94.919297884454977, 29.698899199563702 ], [ -94.918570884554697, 29.698751199308404 ], [ -94.918056885059244, 29.698949199593699 ], [ -94.917831884991173, 29.699035200186195 ], [ -94.91781188474522, 29.699043199517416 ], [ -94.917117884768402, 29.699134199909281 ], [ -94.91706988470952, 29.699141200016474 ], [ -94.916881883889275, 29.699104199885689 ], [ -94.916615883778377, 29.699051199483502 ], [ -94.916323884193801, 29.698994199790501 ], [ -94.915930884476992, 29.698662200027933 ], [ -94.915832883692971, 29.698580199889584 ], [ -94.915816884121895, 29.698439199610746 ], [ -94.915586884131855, 29.698187200039438 ], [ -94.915586883665142, 29.697962199436073 ], [ -94.915586884202341, 29.697817199346623 ], [ -94.915831883695461, 29.696955199026807 ], [ -94.91615788437025, 29.696385199569114 ], [ -94.916288883913651, 29.696158198828332 ], [ -94.916507884427276, 29.695948199248626 ], [ -94.916793883823289, 29.695673198927011 ], [ -94.917178884470772, 29.695366199130095 ], [ -94.917205884336582, 29.695345199091413 ], [ -94.917663884302158, 29.695078198703037 ], [ -94.91816688467047, 29.694861198746043 ], [ -94.91908288509029, 29.694784198753545 ], [ -94.919675884741281, 29.694558198989235 ], [ -94.920287884745974, 29.694326198722422 ], [ -94.920503885462907, 29.694234199062567 ], [ -94.920620884814809, 29.694184198986431 ], [ -94.920852885143276, 29.69408619874023 ], [ -94.920943884858346, 29.693993198737658 ], [ -94.921033884566498, 29.693903198901104 ], [ -94.921248884629634, 29.693686198834175 ], [ -94.92161588565061, 29.693239198753808 ], [ -94.921618884710128, 29.69322919864074 ], [ -94.921767885271436, 29.692762198126246 ], [ -94.921859885478682, 29.692320198544106 ], [ -94.921813885633782, 29.691778198005501 ], [ -94.921462885541914, 29.691145198309375 ], [ -94.921112885487091, 29.690827197778624 ], [ -94.920791884451106, 29.690535198296644 ], [ -94.920569884960656, 29.690133197687206 ], [ -94.920291884536354, 29.689630197783686 ], [ -94.920135884932492, 29.689348197623538 ], [ -94.919677884855801, 29.688459197758906 ], [ -94.919644884761723, 29.688062197487643 ], [ -94.919631884000665, 29.687891197597899 ], [ -94.919724884079997, 29.687500197657634 ], [ -94.919875884048039, 29.686861196848565 ], [ -94.920440884174354, 29.685808197364185 ], [ -94.920614884398361, 29.685642196713317 ], [ -94.921615884442048, 29.684694196452885 ], [ -94.922423884698134, 29.683905196423918 ], [ -94.924192885608889, 29.682803196158904 ], [ -94.92566688591954, 29.68198919584934 ], [ -94.926665885720823, 29.681438195365288 ], [ -94.927168885843301, 29.681220195659304 ], [ -94.927479886292943, 29.680963195689749 ], [ -94.927505886013108, 29.680931196060239 ], [ -94.927685885831778, 29.680747195795615 ], [ -94.927732886481579, 29.680698196064604 ], [ -94.928080886433918, 29.680346195671863 ], [ -94.928201886604953, 29.680172195286772 ], [ -94.928349886247645, 29.679961195026042 ], [ -94.928365886840794, 29.67993619566764 ], [ -94.928417885858238, 29.679864195465129 ], [ -94.92843488663901, 29.679840195220208 ], [ -94.928442886733279, 29.679814195085676 ], [ -94.928468886288869, 29.679738195595874 ], [ -94.928477886549203, 29.679713195482218 ], [ -94.928483885902565, 29.679696194980085 ], [ -94.928537886634928, 29.679535195466126 ], [ -94.928557886186738, 29.67947719493776 ], [ -94.928615886545956, 29.678978195582353 ], [ -94.928637886225673, 29.678792194817788 ], [ -94.928642886191128, 29.678743194919367 ], [ -94.928649886365761, 29.678691195363491 ], [ -94.928639886683158, 29.678596194921635 ], [ -94.92863488660015, 29.678548195444431 ], [ -94.928588886734261, 29.67810719500223 ], [ -94.928627886017438, 29.678016195393322 ], [ -94.928852886595024, 29.677502194491655 ], [ -94.92947488678999, 29.676479194917018 ], [ -94.929569886269505, 29.676069194783498 ], [ -94.929544886957117, 29.675365194066497 ], [ -94.92954988617744, 29.674608194706028 ], [ -94.929737886793248, 29.673990194132909 ], [ -94.930274887079122, 29.673703194531818 ], [ -94.930455886927234, 29.673720194157319 ], [ -94.930779886432035, 29.673759193755291 ], [ -94.930813886383319, 29.673764194157982 ], [ -94.93070888622195, 29.673487194303902 ], [ -94.930584886606795, 29.673156193627435 ], [ -94.930614886789684, 29.673123193754087 ], [ -94.930774886297002, 29.672958193982041 ], [ -94.931090886679783, 29.672862194347104 ], [ -94.931595886608051, 29.672684194167267 ], [ -94.932050886504967, 29.672175193534162 ], [ -94.932023886558611, 29.672005193926516 ], [ -94.931932886664541, 29.671803193415805 ], [ -94.931724886663403, 29.67133819338844 ], [ -94.930883887053554, 29.670076193605848 ], [ -94.930368886286232, 29.66929919297251 ], [ -94.929973886796219, 29.668760192993922 ], [ -94.929067885504807, 29.667610192713067 ], [ -94.928579885645661, 29.667560192978808 ], [ -94.928188885422358, 29.667508192926345 ], [ -94.927742885878629, 29.6674501932218 ], [ -94.927079885336639, 29.667224192987803 ], [ -94.92655888490151, 29.66684019322339 ], [ -94.926021884898105, 29.666483192840239 ], [ -94.92556388497573, 29.6662501923524 ], [ -94.925279884625112, 29.666016192688843 ], [ -94.924742885065484, 29.665742192310706 ], [ -94.924016884652673, 29.665276192765361 ], [ -94.923463884776268, 29.664988192930746 ], [ -94.923021884291899, 29.664795192550304 ], [ -94.922642883888074, 29.664370192475829 ], [ -94.922405883899629, 29.664000192276191 ], [ -94.921900883972228, 29.663451191894811 ], [ -94.920969883621282, 29.663108192259752 ], [ -94.920669883430435, 29.662861192435049 ], [ -94.920637883603362, 29.662724192588549 ], [ -94.92095388370231, 29.662751191855747 ], [ -94.921663883500344, 29.662751191834982 ], [ -94.922500883805668, 29.662655192339706 ], [ -94.922800884550298, 29.662381191719319 ], [ -94.92283288444014, 29.661901192324805 ], [ -94.922579883742117, 29.6611321916196 ], [ -94.922500884413836, 29.660707191492467 ], [ -94.922895884121473, 29.660460191325591 ], [ -94.923514884123421, 29.660562191290779 ], [ -94.924857884450148, 29.662267191520648 ], [ -94.925153885098368, 29.662394192114771 ], [ -94.925532885184523, 29.662436191810457 ], [ -94.92570588466215, 29.662340192209147 ], [ -94.925832885441366, 29.66227119177011 ], [ -94.926037885280735, 29.66188719209708 ], [ -94.926416884569235, 29.661283191395846 ], [ -94.926589884853769, 29.660721191800839 ], [ -94.926589885419318, 29.660035191425994 ], [ -94.926084885283615, 29.659486191012945 ], [ -94.925311884246327, 29.659156190819452 ], [ -94.92497988471635, 29.658786191505055 ], [ -94.924632884211988, 29.658100190916731 ], [ -94.924158884386898, 29.657743191279348 ], [ -94.923605883711275, 29.657373191198943 ], [ -94.923163883887923, 29.657043191120223 ], [ -94.922169883383262, 29.656714190601726 ], [ -94.920558883839917, 29.656495190653636 ], [ -94.919643882768725, 29.656357191145908 ], [ -94.918964883358726, 29.656234190724486 ], [ -94.917353882830611, 29.655960190657115 ], [ -94.916460882667764, 29.655748190706014 ], [ -94.915890881857095, 29.655621190809406 ], [ -94.915279882385178, 29.655483190506779 ], [ -94.914549881993182, 29.655495191161506 ], [ -94.913858881786666, 29.655471190950038 ], [ -94.913248881844979, 29.655275191023886 ], [ -94.912598881542735, 29.655059190972345 ], [ -94.911575881275027, 29.654802191174234 ], [ -94.910699880865906, 29.654641190723119 ], [ -94.909411880448729, 29.654652190496375 ], [ -94.908242879786513, 29.654733190511134 ], [ -94.907591879787006, 29.654745191148642 ], [ -94.906795879267591, 29.654964191363064 ], [ -94.906051879523133, 29.655172191471383 ], [ -94.90476487876488, 29.655622191348566 ], [ -94.903290878734737, 29.656164191098544 ], [ -94.902494878886955, 29.656464191748473 ], [ -94.901777878852769, 29.6566601915404 ], [ -94.900887878430495, 29.656695191500685 ], [ -94.900263878289422, 29.656845191230506 ], [ -94.899825877723003, 29.657018192115039 ], [ -94.899584877495926, 29.657193191420067 ], [ -94.899082878251363, 29.657340191936338 ], [ -94.898206877587185, 29.657687191443504 ], [ -94.897078876966887, 29.658194192333607 ], [ -94.896626877047424, 29.65835619190684 ], [ -94.895445877061491, 29.65877119215153 ], [ -94.894396876649878, 29.659175192186233 ], [ -94.893878876165104, 29.659463192321528 ], [ -94.893423876835655, 29.659659192175454 ], [ -94.892550876645004, 29.659982192298834 ], [ -94.891966875695175, 29.660260192550833 ], [ -94.891873875995245, 29.660305192683392 ], [ -94.89059987556324, 29.660708192879802 ], [ -94.888355874857311, 29.661654193082448 ], [ -94.887173875003043, 29.662197193515944 ], [ -94.886961875256191, 29.66263519296951 ], [ -94.886549874730676, 29.662877193329408 ], [ -94.886031875171994, 29.663247193759361 ], [ -94.885049874419565, 29.663720193234163 ], [ -94.884584874719096, 29.663881193883554 ], [ -94.884226874513629, 29.663927193690277 ], [ -94.883695873714132, 29.664020193256913 ], [ -94.883190873899125, 29.664285193769093 ], [ -94.882845873503157, 29.664550193550131 ], [ -94.881836873442154, 29.664920193482072 ], [ -94.881504874096976, 29.665254193880678 ], [ -94.881159873802858, 29.665531194213216 ], [ -94.880734873370443, 29.665785193675557 ], [ -94.879765873254769, 29.666177194040745 ], [ -94.879101873017348, 29.666558193887695 ], [ -94.878065872962267, 29.667273194333301 ], [ -94.877402873149563, 29.667717194524243 ], [ -94.876831872853501, 29.668005194983891 ], [ -94.876605872053375, 29.668305194999434 ], [ -94.876193872672687, 29.668640195210571 ], [ -94.87549087274607, 29.668801195377291 ], [ -94.875131871902298, 29.669044195389301 ], [ -94.873153871531414, 29.670093195540176 ], [ -94.871905871422641, 29.670751195502071 ], [ -94.871560870903835, 29.671063195917579 ], [ -94.871042870832994, 29.67165119579931 ], [ -94.87069787140895, 29.67226219583025 ], [ -94.870471871451144, 29.672839196035557 ], [ -94.870219870833552, 29.673035195553098 ], [ -94.869794871069175, 29.673382195879142 ], [ -94.869475870813531, 29.673601196255504 ], [ -94.869449870765536, 29.673809196291899 ], [ -94.86926387106341, 29.6743171960577 ], [ -94.869011870885117, 29.674766196637609 ], [ -94.868294870602398, 29.675955196871339 ], [ -94.868201870455877, 29.676174196994776 ], [ -94.867789871003907, 29.676520196788701 ], [ -94.867377871000997, 29.677005197330441 ], [ -94.867112870097372, 29.677362197116821 ], [ -94.866727870758112, 29.678101196806299 ], [ -94.866302869812898, 29.678435196876251 ], [ -94.866182870619653, 29.679000197446577 ], [ -94.866103870771994, 29.679577197466706 ], [ -94.866381870666189, 29.679889197833443 ], [ -94.866647869989535, 29.680194197661347 ], [ -94.866580870147473, 29.680564197994073 ], [ -94.866182870893638, 29.682144198017411 ], [ -94.866049870353109, 29.682721197696569 ], [ -94.865784870626285, 29.683217198599159 ], [ -94.865638869995649, 29.683736198630399 ], [ -94.865465870140341, 29.684809198169109 ], [ -94.865173870122916, 29.685282199035097 ], [ -94.865160870434423, 29.68572119895099 ], [ -94.865319870881649, 29.686321199231426 ], [ -94.865399870450702, 29.686956199168009 ], [ -94.865399870920626, 29.687210199473011 ], [ -94.86525387064637, 29.687487198728878 ], [ -94.864974870098649, 29.687833199125578 ], [ -94.864947870869045, 29.688202199199786 ], [ -94.864947870035991, 29.688663199180663 ], [ -94.864562870099832, 29.68918319956239 ], [ -94.864164870452001, 29.690198199860298 ], [ -94.863911870135794, 29.690775199695153 ], [ -94.863938869955717, 29.691155199927284 ], [ -94.863964869940219, 29.69172120015082 ], [ -94.863818870647435, 29.692355199864686 ], [ -94.863712869819324, 29.692794200571868 ], [ -94.863832870575678, 29.693688200079269 ], [ -94.863951869955798, 29.694103200161052 ], [ -94.863984870037299, 29.694447200658903 ], [ -94.864005870357659, 29.694669200869793 ], [ -94.864058870200864, 29.695199200709368 ], [ -94.864031870221666, 29.695534201035798 ], [ -94.863765870793557, 29.695857200612249 ], [ -94.863447870569289, 29.696457200972546 ], [ -94.863301870101594, 29.697518201603579 ], [ -94.862915870399036, 29.698014201320447 ], [ -94.862743870214516, 29.698234201617147 ], [ -94.862504870530131, 29.698464201117684 ], [ -94.862517870623904, 29.698776201958253 ], [ -94.862397870635391, 29.699180201846765 ], [ -94.861919870025119, 29.699814201729147 ], [ -94.861587870030746, 29.700327201745655 ], [ -94.861335869706636, 29.700616201561111 ], [ -94.860883869888525, 29.701285201855388 ], [ -94.860631869673369, 29.701758202421601 ], [ -94.860179869835036, 29.7021852027287 ], [ -94.859887869401376, 29.702773202266137 ], [ -94.859860869981844, 29.703188202412008 ], [ -94.859542870084681, 29.703407202880086 ], [ -94.859143870059768, 29.703765202684878 ], [ -94.858877869509016, 29.704227202443938 ], [ -94.858625869594022, 29.704769203065908 ], [ -94.858134869211241, 29.70540320329404 ], [ -94.857496869426512, 29.705992203067353 ], [ -94.8571918686891, 29.706395203284362 ], [ -94.856965868852413, 29.707007203055689 ], [ -94.856858869590809, 29.707169203634255 ], [ -94.856805869575325, 29.707469203877061 ], [ -94.856925869181353, 29.707919203196152 ], [ -94.856739869310303, 29.70845020388898 ], [ -94.856420868765809, 29.708715203435965 ], [ -94.855929868958171, 29.709234204015353 ], [ -94.855384868593262, 29.709673203698536 ], [ -94.855039868656306, 29.710203203749142 ], [ -94.854667868328391, 29.710722204213756 ], [ -94.854308869140411, 29.711092204502155 ], [ -94.853697868283305, 29.711680204629012 ], [ -94.853126868802136, 29.712649204603522 ], [ -94.852900868245371, 29.713157204687249 ], [ -94.852820868489005, 29.713687205107835 ], [ -94.852887868867711, 29.714045204934287 ], [ -94.852913868616994, 29.714402204965328 ], [ -94.853206868815406, 29.714587204996754 ], [ -94.853710868712483, 29.71486420536699 ], [ -94.853857869075256, 29.71541820496186 ], [ -94.853724868317912, 29.716202205183691 ], [ -94.853245868878531, 29.71694020594764 ], [ -94.852555868179252, 29.717690205529522 ], [ -94.851691867898154, 29.718579205858063 ], [ -94.851067868053946, 29.719352206616104 ], [ -94.850961868424704, 29.719859206271476 ], [ -94.85062886786956, 29.720413206206555 ], [ -94.850482867769884, 29.720748206917069 ], [ -94.849911868178879, 29.721267206834003 ], [ -94.849472867711995, 29.721809206331507 ], [ -94.849047867562703, 29.721878206741447 ], [ -94.848768867300606, 29.722351206524646 ], [ -94.848715868130967, 29.722790207163634 ], [ -94.848250867418159, 29.723251206678729 ], [ -94.846908867268851, 29.72454320761279 ], [ -94.845819867145309, 29.725501207689582 ], [ -94.844676866967134, 29.726655207745353 ], [ -94.844211866631809, 29.72695520753614 ], [ -94.843653867087014, 29.727601208046092 ], [ -94.843334866677267, 29.728097207944685 ], [ -94.843281867098582, 29.728385208009264 ], [ -94.843002866195434, 29.728835208071022 ], [ -94.8425108659941, 29.729251208619907 ], [ -94.841952866695109, 29.729643208564845 ], [ -94.841036865649542, 29.730289208825646 ], [ -94.84057186637699, 29.730762209270218 ], [ -94.840278866170394, 29.73123520886471 ], [ -94.839774866042347, 29.731800208775876 ], [ -94.839123865817413, 29.732366209038265 ], [ -94.838286865044921, 29.73299520969093 ], [ -94.837263865395911, 29.733618209252725 ], [ -94.836545865194736, 29.73407920936344 ], [ -94.835828864634948, 29.734229209641171 ], [ -94.835296864965429, 29.734621209426958 ], [ -94.835057864909842, 29.735037209845473 ], [ -94.835031864742035, 29.735579209819416 ], [ -94.835004864515369, 29.736467210401496 ], [ -94.834845864564727, 29.737056210700516 ], [ -94.834220864307397, 29.737263210614344 ], [ -94.833317864387951, 29.737529210778298 ], [ -94.832334864549225, 29.738117210404631 ], [ -94.831656863836486, 29.73847521038833 ], [ -94.831483864215883, 29.739074210627969 ], [ -94.831523863674676, 29.739576210874613 ], [ -94.831576864041253, 29.739645210721235 ], [ -94.831523863712903, 29.740049211212874 ], [ -94.831257863501008, 29.740441211433282 ], [ -94.830592863653735, 29.740995211149404 ], [ -94.828998863323875, 29.742449211474408 ], [ -94.827483862845753, 29.743960212085298 ], [ -94.826035863233827, 29.745275212788464 ], [ -94.825397862857045, 29.746025212190517 ], [ -94.825264862845714, 29.746221212442133 ], [ -94.825051863061304, 29.746510212357244 ], [ -94.824639862771875, 29.74696021284273 ], [ -94.823829862168623, 29.747629212982279 ], [ -94.823430862232115, 29.748148213430667 ], [ -94.823284862478033, 29.748921213296644 ], [ -94.823417862556354, 29.749290213401409 ], [ -94.822832861987564, 29.749544213673968 ], [ -94.822579862113315, 29.749901213554423 ], [ -94.821702862193419, 29.750732213349515 ], [ -94.82099886171099, 29.751297214086151 ], [ -94.820294862162328, 29.751944213569388 ], [ -94.820068861411187, 29.752283214133115 ], [ -94.819683861327235, 29.752571214329731 ], [ -94.819204861928966, 29.752952214526932 ], [ -94.818859860895969, 29.753252214058971 ], [ -94.81884686112528, 29.753564214127092 ], [ -94.81860686086506, 29.753760214454861 ], [ -94.817902861259242, 29.754037214885681 ], [ -94.817384860877752, 29.754279214380038 ], [ -94.816852861335292, 29.754648214667842 ], [ -94.816414860714829, 29.755052214275185 ], [ -94.816135860686401, 29.75560621451854 ], [ -94.815895861004961, 29.756113214889233 ], [ -94.815590860314103, 29.756529215444964 ], [ -94.815098860569762, 29.756679215057204 ], [ -94.814248860367968, 29.756979215493526 ], [ -94.813769860261175, 29.757371214958628 ], [ -94.81345086036616, 29.757752215681489 ], [ -94.81337185986699, 29.758248215908392 ], [ -94.813264860290644, 29.758531215826032 ], [ -94.813038859896253, 29.758658215251199 ], [ -94.812679860524568, 29.758727215859473 ], [ -94.812440860355053, 29.758635215863446 ], [ -94.812187859396204, 29.758519215337884 ], [ -94.811908859397263, 29.7584042153475 ], [ -94.811284859389133, 29.758519216032258 ], [ -94.810792859458005, 29.758600215536788 ], [ -94.810566859797063, 29.758796215489543 ], [ -94.810353858984428, 29.75931521587945 ], [ -94.810300859774941, 29.75975421615302 ], [ -94.81002185963402, 29.759927216294173 ], [ -94.809569859593012, 29.760054215688452 ], [ -94.809038859393937, 29.760273216251324 ], [ -94.808706859088986, 29.760515216209768 ], [ -94.808426858952714, 29.760573216052528 ], [ -94.808094859325649, 29.760584215812599 ], [ -94.807589858988422, 29.760757216175236 ], [ -94.807310859194985, 29.761115215921841 ], [ -94.807004858356109, 29.76123021618093 ], [ -94.8064868586264, 29.761196216183514 ], [ -94.806114858279514, 29.761242216041904 ], [ -94.805702858547065, 29.761588216608317 ], [ -94.80535785869094, 29.761865216219686 ], [ -94.805330858498834, 29.762211216799304 ], [ -94.805210858162312, 29.762453216973356 ], [ -94.804731858541373, 29.762609216597927 ], [ -94.804333857945934, 29.762666216278596 ], [ -94.80277885773549, 29.763013216486659 ], [ -94.801728857801081, 29.763382216834646 ], [ -94.800571856834736, 29.76395921663179 ], [ -94.799349857352283, 29.764593217463741 ], [ -94.798830856810184, 29.764916217730242 ], [ -94.798086856531256, 29.76510121702886 ], [ -94.797820856520175, 29.765320217653453 ], [ -94.797634856515813, 29.765608217282594 ], [ -94.79732985611588, 29.765758217780963 ], [ -94.796810856215728, 29.765793217609136 ], [ -94.79593485597276, 29.765857217712018 ], [ -94.795495855791486, 29.765880217953921 ], [ -94.795336855877778, 29.765650217521333 ], [ -94.795030855458833, 29.765280217608748 ], [ -94.794445855111363, 29.76498121729017 ], [ -94.793980855396697, 29.765038217944522 ], [ -94.793329855458865, 29.76526921717797 ], [ -94.792904855679154, 29.765557217314491 ], [ -94.792664854990136, 29.765915217321115 ], [ -94.792811855327813, 29.766307218160875 ], [ -94.792943854790906, 29.766723217631171 ], [ -94.792651854994034, 29.767057217661357 ], [ -94.791854854917133, 29.76735721845068 ], [ -94.791309854945993, 29.767357218209426 ], [ -94.790365854712718, 29.767380218237559 ], [ -94.789767854949986, 29.76741521803423 ], [ -94.788770854641413, 29.767565217910171 ], [ -94.787973854197531, 29.767715218578356 ], [ -94.787507853942458, 29.767894218299226 ], [ -94.787095854231723, 29.767951218678274 ], [ -94.786510853283488, 29.768032218515021 ], [ -94.785979853609973, 29.768378218569318 ], [ -94.785713853243038, 29.768828218436813 ], [ -94.785620853144607, 29.769232218549135 ], [ -94.785288853434139, 29.76930121831332 ], [ -94.784437853551282, 29.769405218609254 ], [ -94.783480852905683, 29.769486219114974 ], [ -94.782869852601735, 29.769624218740379 ], [ -94.782098852404715, 29.769763219004737 ], [ -94.781540852696892, 29.769889218718493 ], [ -94.781074852335308, 29.770120218727079 ], [ -94.780702851866081, 29.770547219189439 ], [ -94.780144852267796, 29.770928219239028 ], [ -94.779506851707083, 29.771262219090108 ], [ -94.778854851621873, 29.771355219441816 ], [ -94.778296852180333, 29.771389219784588 ], [ -94.777897851472389, 29.771435219276388 ], [ -94.777499851429042, 29.771551219264136 ], [ -94.77683485148448, 29.771724219602067 ], [ -94.776249850748343, 29.772058219901695 ], [ -94.775890851315808, 29.772358219973977 ], [ -94.775425851032892, 29.772785219700115 ], [ -94.774827851058319, 29.773200220284561 ], [ -94.774362851153853, 29.773224219483932 ], [ -94.773870850932667, 29.773235219912721 ], [ -94.773312850267715, 29.773327220325985 ], [ -94.773006850555362, 29.773547220339125 ], [ -94.772421849849252, 29.773443220352199 ], [ -94.771783849782793, 29.773466219599108 ], [ -94.771212849659321, 29.773662220250785 ], [ -94.770773850223577, 29.773812220567454 ], [ -94.770587850341968, 29.774014220296948 ], [ -94.770481849546186, 29.774175220006111 ], [ -94.770015849542546, 29.774845220636895 ], [ -94.76967084975648, 29.775294220751942 ], [ -94.769244849192603, 29.77584822080934 ], [ -94.768793849255601, 29.775941220301959 ], [ -94.767211849323786, 29.776067220837621 ], [ -94.76657384879978, 29.776183220484715 ], [ -94.766134848544908, 29.776437220729573 ], [ -94.765802848545476, 29.776748220862402 ], [ -94.765682849232192, 29.777060220753569 ], [ -94.7653638488203, 29.777060221216932 ], [ -94.764965849006003, 29.777053220971347 ], [ -94.764633848676368, 29.777133221160415 ], [ -94.764487848458231, 29.777422221420093 ], [ -94.764354848452385, 29.77774522092994 ], [ -94.764048848733779, 29.778183221269341 ], [ -94.763769848298224, 29.778125221409265 ], [ -94.763330848229486, 29.777964221024355 ], [ -94.762666847985415, 29.777652221297753 ], [ -94.762094847593119, 29.777618221463651 ], [ -94.761655847745018, 29.777641220992372 ], [ -94.761283847470338, 29.777733221124475 ], [ -94.761084847076646, 29.778010221340423 ], [ -94.760884847640384, 29.778379221344647 ], [ -94.760658847179442, 29.778898221806259 ], [ -94.760419847743194, 29.779048221726161 ], [ -94.759861847281613, 29.779118221640346 ], [ -94.759263846906236, 29.779233222059297 ], [ -94.75842584725217, 29.779602222096283 ], [ -94.757747847151592, 29.779972222289789 ], [ -94.757268846940619, 29.780064221560991 ], [ -94.756630846915584, 29.780168221573131 ], [ -94.755780846426816, 29.780329221826033 ], [ -94.755102846060069, 29.780526222166056 ], [ -94.754424846006074, 29.780710222143661 ], [ -94.753746845516503, 29.780791222166759 ], [ -94.75251084570283, 29.780779222030439 ], [ -94.751140845390481, 29.781010222325914 ], [ -94.750476845488379, 29.7815182225334 ], [ -94.750420845379935, 29.781574222811017 ], [ -94.749771844981069, 29.782233222875785 ], [ -94.749266845063772, 29.782937222346039 ], [ -94.749081845091197, 29.783716222509515 ], [ -94.749041844913933, 29.783854222993615 ], [ -94.749014845230462, 29.784142222616214 ], [ -94.748881845164263, 29.784685222955865 ], [ -94.748735844708449, 29.785077222758254 ], [ -94.748296844650113, 29.785550223635305 ], [ -94.748097844821373, 29.786011223207257 ], [ -94.747858844477804, 29.786565223237979 ], [ -94.747525844942942, 29.787061224020192 ], [ -94.747273844214305, 29.787419224146138 ], [ -94.747007843880652, 29.787892224233921 ], [ -94.746715844037737, 29.788446224084478 ], [ -94.746582843857595, 29.788965224137563 ], [ -94.746356844241035, 29.789080223747071 ], [ -94.745970844064388, 29.789080223999736 ], [ -94.745478843694798, 29.788896224266637 ], [ -94.74506684383941, 29.788780224432852 ], [ -94.744534843704344, 29.78859622413826 ], [ -94.744136843756451, 29.788526224115675 ], [ -94.743524843859703, 29.788561223674979 ], [ -94.742740843171276, 29.788769223949302 ], [ -94.742128842768011, 29.788930224133406 ], [ -94.74142484321807, 29.78938022415484 ], [ -94.741328842511365, 29.789571224500953 ], [ -94.739396842564716, 29.789912224293492 ], [ -94.738817842522977, 29.789483224617783 ], [ -94.73724284141143, 29.788318223807046 ], [ -94.734908840763339, 29.788105224620189 ], [ -94.734314840672226, 29.788384224336486 ], [ -94.734268841354606, 29.788407224042633 ], [ -94.733608841220857, 29.788716224398541 ], [ -94.732936840449099, 29.788497224828458 ], [ -94.732019840909686, 29.788497224758046 ], [ -94.730991840411292, 29.788497224395279 ], [ -94.730122839938844, 29.788689224882503 ], [ -94.729916840123153, 29.789060225095184 ], [ -94.729742840502638, 29.789801225072907 ], [ -94.729489840130711, 29.790583225431966 ], [ -94.729094839604315, 29.791392225011503 ], [ -94.728683840296839, 29.792215225569876 ], [ -94.727972839238348, 29.793272225920088 ], [ -94.727071839967664, 29.794493226032476 ], [ -94.726833839443131, 29.794822225744834 ], [ -94.726612839641987, 29.794795226020934 ], [ -94.726565839772476, 29.794232225920009 ], [ -94.726343839636002, 29.793862225666025 ], [ -94.726343839378373, 29.793135226036757 ], [ -94.726359838984777, 29.792291225502101 ], [ -94.726548838598731, 29.78447822378169 ], [ -94.726548839003854, 29.783531223736421 ], [ -94.726595838729139, 29.782832223301661 ], [ -94.726769839230599, 29.782434223751942 ], [ -94.726833838821676, 29.781871222888302 ], [ -94.726959838610938, 29.781446222725624 ], [ -94.726706838566031, 29.780993222998365 ], [ -94.72658083854553, 29.780774223304981 ], [ -94.726675839169616, 29.780541222584198 ], [ -94.726959838421351, 29.780390222499253 ], [ -94.727876839233105, 29.780047222481976 ], [ -94.728477839424954, 29.77967622278495 ], [ -94.728903839604811, 29.779237223086575 ], [ -94.729172839705413, 29.778743222489705 ], [ -94.729646839641475, 29.77835922217535 ], [ -94.730073839410181, 29.777865222461344 ], [ -94.730105839551044, 29.777412222099223 ], [ -94.730281839499213, 29.777022222197232 ], [ -94.730417839849864, 29.776863222034198 ], [ -94.730416839335632, 29.776636221636206 ], [ -94.730417839466682, 29.776369221924753 ], [ -94.730354839095611, 29.775957221751284 ], [ -94.730038839400237, 29.775683222224021 ], [ -94.729564839140878, 29.775628221997273 ], [ -94.728821839123782, 29.77556022221772 ], [ -94.728534839310612, 29.775612221666577 ], [ -94.728078839158783, 29.775697222097172 ], [ -94.727588838560919, 29.775971222400027 ], [ -94.727114838575261, 29.776067221805636 ], [ -94.726450838198801, 29.776163221780877 ], [ -94.726039838749045, 29.776163221695079 ], [ -94.725438838518841, 29.776273222003613 ], [ -94.72468083827583, 29.776479222032762 ], [ -94.724237838237556, 29.77679422237977 ], [ -94.723953838300346, 29.776959222256018 ], [ -94.723478837938117, 29.776973222631508 ], [ -94.722878837230439, 29.777082222475123 ], [ -94.722609837938748, 29.776932222082532 ], [ -94.722435837503227, 29.776657222284882 ], [ -94.721977837125081, 29.776410222329787 ], [ -94.721471837118614, 29.776218222555286 ], [ -94.720775837579112, 29.776218222072206 ], [ -94.720080836936347, 29.77566922227485 ], [ -94.720491837112334, 29.775066221918877 ], [ -94.721755836885237, 29.773406221819357 ], [ -94.723352838028731, 29.770909221118018 ], [ -94.724013837613981, 29.769872221263782 ], [ -94.726516838170156, 29.766448220010613 ], [ -94.726784838262716, 29.765768220286493 ], [ -94.727120838168887, 29.764798220085417 ], [ -94.727298838185803, 29.764138219631143 ], [ -94.727399838172445, 29.763925219126076 ], [ -94.727611837818003, 29.763547219892683 ], [ -94.727723838752169, 29.763081219570275 ], [ -94.727567838235515, 29.762363218847973 ], [ -94.727377838033206, 29.761994219008788 ], [ -94.727019838407259, 29.761509218696318 ], [ -94.726807837983387, 29.761121219362575 ], [ -94.72619283737923, 29.760636218924585 ], [ -94.725711837978636, 29.760481218769893 ], [ -94.725086837906559, 29.76015121847648 ], [ -94.725052837196827, 29.759880218475097 ], [ -94.725052837245869, 29.759589218528159 ], [ -94.725097837049333, 29.759268218589302 ], [ -94.724762836928321, 29.758832218787106 ], [ -94.724125837070901, 29.758686218416585 ], [ -94.723915837305952, 29.758679218147368 ], [ -94.723437837050653, 29.758665218754505 ], [ -94.723208836481447, 29.758662218935964 ], [ -94.722660836903827, 29.758701218631789 ], [ -94.722068836459442, 29.758769218655964 ], [ -94.721442836212404, 29.758905218940761 ], [ -94.720861835950473, 29.758905218470431 ], [ -94.720134836301739, 29.758982218610047 ], [ -94.719542835537666, 29.758992218368828 ], [ -94.718879835814391, 29.759102219274538 ], [ -94.718849835355329, 29.759108218794623 ], [ -94.718268835897206, 29.759390219108155 ], [ -94.718045835796389, 29.759655218936835 ], [ -94.71793183581606, 29.759675218916524 ], [ -94.717903835864107, 29.759680218627473 ], [ -94.717881835468646, 29.759683218901923 ], [ -94.717788835818567, 29.759699218682535 ], [ -94.717609835314036, 29.759646219358821 ], [ -94.717587835443808, 29.759511219149047 ], [ -94.717408835091391, 29.75934621898249 ], [ -94.717218835610041, 29.759268219161335 ], [ -94.717017835725173, 29.759103218487056 ], [ -94.716782835471975, 29.758987219018486 ], [ -94.716223835185417, 29.759035218610133 ], [ -94.715967835454663, 29.759297218919105 ], [ -94.715374834892842, 29.759336218981101 ], [ -94.71310983446655, 29.759486219287201 ], [ -94.711839834459141, 29.759976219382843 ], [ -94.711045834223057, 29.760283219174312 ], [ -94.710916833936324, 29.759964219054702 ], [ -94.710743833715966, 29.759711219685613 ], [ -94.710396833903062, 29.759485219061276 ], [ -94.710135833420949, 29.75934021932984 ], [ -94.709843833769028, 29.759437219306648 ], [ -94.709598833255598, 29.759622219361926 ], [ -94.709487833264077, 29.759841219133875 ], [ -94.709352833094556, 29.760081219471996 ], [ -94.709266833052979, 29.76024621914878 ], [ -94.709179833369831, 29.760342219768972 ], [ -94.708926833067508, 29.760431219054738 ], [ -94.708744833719948, 29.7604932192543 ], [ -94.708546833343959, 29.760678219626826 ], [ -94.708515832749541, 29.76088421972025 ], [ -94.708412833144749, 29.760994219610239 ], [ -94.708262832800813, 29.761090219471825 ], [ -94.708167833144557, 29.761220219636634 ], [ -94.708064833184054, 29.76136421928646 ], [ -94.70781283268343, 29.761419219665314 ], [ -94.707638833523447, 29.761529219574918 ], [ -94.707567832593568, 29.76167321930124 ], [ -94.707337832919009, 29.761776219818845 ], [ -94.707132833294025, 29.7616592198513 ], [ -94.706824832961303, 29.761549219590016 ], [ -94.70669783277522, 29.761426219837734 ], [ -94.706674833069769, 29.76122021950302 ], [ -94.706508833143943, 29.761090219613124 ], [ -94.706531833228752, 29.760891219605135 ], [ -94.706381832243579, 29.760534219256034 ], [ -94.70618483304402, 29.760225219687044 ], [ -94.706160832607026, 29.760040219645873 ], [ -94.706081832214423, 29.759807219716787 ], [ -94.705907832787148, 29.759601219662102 ], [ -94.705599831959915, 29.759402219665194 ], [ -94.705330832239611, 29.759169219504088 ], [ -94.704975832382544, 29.759172218922199 ], [ -94.704806832590236, 29.758912218859436 ], [ -94.704801832284801, 29.758904219185418 ], [ -94.704536832012977, 29.758452218777059 ], [ -94.704381831910908, 29.75802021881972 ], [ -94.704320831616911, 29.757484218793319 ], [ -94.704334832379345, 29.757343218644035 ], [ -94.704369831948213, 29.757002219016705 ], [ -94.704551831810008, 29.756989219323806 ], [ -94.704717831936762, 29.756897218810597 ], [ -94.704877832177814, 29.756735218952471 ], [ -94.704910832167144, 29.756481218795571 ], [ -94.704885832346221, 29.756102218813492 ], [ -94.704717832453781, 29.755674218823764 ], [ -94.704279831669268, 29.755299218237099 ], [ -94.703807831308467, 29.75517821840312 ], [ -94.703368831690284, 29.755299218557788 ], [ -94.703249831828202, 29.755362218669529 ], [ -94.703176831448388, 29.755334218593877 ], [ -94.703201831346703, 29.755068218782018 ], [ -94.70318683126348, 29.754894218618684 ], [ -94.703178831375936, 29.7547912185799 ], [ -94.70327383146865, 29.754633218257442 ], [ -94.703352831383853, 29.754325218391195 ], [ -94.703352831773216, 29.754105218266549 ], [ -94.703123832065998, 29.753913217954548 ], [ -94.702783831978323, 29.753844218189656 ], [ -94.70238883170299, 29.753865218146736 ], [ -94.701938830885993, 29.753975217913961 ], [ -94.699409830306166, 29.75257521852717 ], [ -94.6993858305771, 29.752315218095667 ], [ -94.69918883016912, 29.752164218484559 ], [ -94.699125830046185, 29.751903217789842 ], [ -94.699180830274969, 29.751608217697886 ], [ -94.699417830785634, 29.751354217943373 ], [ -94.699694830433515, 29.751121218085139 ], [ -94.699970830626256, 29.751025217492678 ], [ -94.700207831146045, 29.751011217672399 ], [ -94.700555831130529, 29.7509982175925 ], [ -94.700783831250618, 29.750868217606705 ], [ -94.700909830383267, 29.7507652181243 ], [ -94.700980830661038, 29.750649217698196 ], [ -94.700988830633378, 29.750443217892016 ], [ -94.700933830966008, 29.750223217424523 ], [ -94.700759831164504, 29.750093217917865 ], [ -94.70040483075438, 29.74994921753855 ], [ -94.700427830236805, 29.749778217552631 ], [ -94.700585830554886, 29.74962021763745 ], [ -94.700830830277766, 29.749435217511206 ], [ -94.701146830815105, 29.749304217525829 ], [ -94.701526830858384, 29.749359217673668 ], [ -94.701944831542065, 29.749352216993753 ], [ -94.702173830964696, 29.749194217123716 ], [ -94.702300830933765, 29.748954217542643 ], [ -94.702324831464125, 29.74862521737613 ], [ -94.702245831395842, 29.748433217464733 ], [ -94.702047831080378, 29.748207217516555 ], [ -94.701731830977835, 29.748104216704267 ], [ -94.702000830697457, 29.747953217404643 ], [ -94.702268831149183, 29.747816216630337 ], [ -94.702584831441769, 29.747733216737124 ], [ -94.703043831031579, 29.747836216958778 ], [ -94.703367831380802, 29.747891216961609 ], [ -94.703730831069848, 29.74783621668502 ], [ -94.704014831099869, 29.747658217372351 ], [ -94.704236831709736, 29.747548216895076 ], [ -94.704544831494317, 29.74753421665697 ], [ -94.704872831626091, 29.747435216833793 ], [ -94.70505883148104, 29.747313216693943 ], [ -94.705337831729508, 29.74715221652875 ], [ -94.705915832392492, 29.746915216426608 ], [ -94.706393831662638, 29.746794216588636 ], [ -94.706765831891644, 29.746615216729325 ], [ -94.70715783234435, 29.746419217042838 ], [ -94.707549832580668, 29.746315216871796 ], [ -94.7080018327066, 29.746246216330324 ], [ -94.708247832766489, 29.746178216594661 ], [ -94.708537832626774, 29.746111216094771 ], [ -94.708828832342505, 29.746149216042017 ], [ -94.709057832926959, 29.746276216121434 ], [ -94.70921383250429, 29.746329216209535 ], [ -94.70930483261715, 29.746335216875593 ], [ -94.709414832373056, 29.746344216748092 ], [ -94.70961083263353, 29.746329216102534 ], [ -94.709928832651386, 29.746271216910873 ], [ -94.710122833020137, 29.746152216241882 ], [ -94.710224833224856, 29.746091216497362 ], [ -94.710319833546365, 29.745834216533108 ], [ -94.710280832832737, 29.745650216032942 ], [ -94.71010583291924, 29.745494216398718 ], [ -94.710068832884943, 29.745461216224506 ], [ -94.709521833194444, 29.745359216043912 ], [ -94.708826832892228, 29.745567216409306 ], [ -94.70863283272061, 29.745626216801824 ], [ -94.708133831993948, 29.745842216812036 ], [ -94.707877832818852, 29.745090216192626 ], [ -94.707752831798459, 29.744368216499215 ], [ -94.707627832584535, 29.743646215643867 ], [ -94.708102832367018, 29.742971215725241 ], [ -94.70842583274667, 29.742514216123109 ], [ -94.708230832170926, 29.740608215507883 ], [ -94.708168832223578, 29.740004214982907 ], [ -94.708837832367792, 29.739694215007276 ], [ -94.709328832073069, 29.739324214961172 ], [ -94.709395832941098, 29.738851214803468 ], [ -94.709780832523407, 29.738252214999303 ], [ -94.710298833067327, 29.737986214644994 ], [ -94.710484832234883, 29.737479214609888 ], [ -94.710639832531527, 29.737109214222055 ], [ -94.711222832948025, 29.736506214204304 ], [ -94.712180833040392, 29.735674214061433 ], [ -94.713627833332822, 29.734107213942899 ], [ -94.714585833547815, 29.734009213520107 ], [ -94.716216833663182, 29.734088213453198 ], [ -94.716276833875312, 29.734091213981429 ], [ -94.717385834442268, 29.733438213722483 ], [ -94.718042834452845, 29.73250821299715 ], [ -94.718531834611511, 29.731432213031766 ], [ -94.719226834168765, 29.730534212917743 ], [ -94.719301834655809, 29.729490212926866 ], [ -94.719395835140162, 29.728315212275181 ], [ -94.718719834164261, 29.727287212595979 ], [ -94.716727834030479, 29.727026212594271 ], [ -94.715318833220039, 29.727206212208525 ], [ -94.714938833620167, 29.727773212605054 ], [ -94.714228833801428, 29.728837212764887 ], [ -94.712781832734564, 29.731301213157092 ], [ -94.711522832419575, 29.73281821319377 ], [ -94.709756832079051, 29.735037214175296 ], [ -94.708481831928154, 29.736510214273192 ], [ -94.707802832310577, 29.737330215155449 ], [ -94.706374831645249, 29.739141214796845 ], [ -94.704873831144553, 29.7410712152058 ], [ -94.704993831714219, 29.741098215491299 ], [ -94.705442831837786, 29.741199215874484 ], [ -94.705130831047924, 29.741559215759676 ], [ -94.704782831886476, 29.741967216071561 ], [ -94.703797831401417, 29.743179216447192 ], [ -94.703662831050735, 29.743363216526866 ], [ -94.702779831210208, 29.744576215958602 ], [ -94.702127831178061, 29.745432216873912 ], [ -94.700276830832436, 29.748106217008939 ], [ -94.699229830313442, 29.749555217236765 ], [ -94.698696829781184, 29.750236217747762 ], [ -94.69868282985739, 29.75034621775529 ], [ -94.698060830620506, 29.751162218144401 ], [ -94.6974088302251, 29.752046217839286 ], [ -94.696953830209125, 29.752731218279003 ], [ -94.6954818300879, 29.75470721916939 ], [ -94.694905829667391, 29.755537218636849 ], [ -94.694419828921824, 29.756564218809874 ], [ -94.694055828935944, 29.757460219173531 ], [ -94.693691829342498, 29.75869821950624 ], [ -94.693464829310486, 29.759660219920494 ], [ -94.693115829478032, 29.760609219964437 ], [ -94.692477829463257, 29.762400220859057 ], [ -94.691885829230415, 29.764007221129148 ], [ -94.69140082942485, 29.765325221477042 ], [ -94.690853829429841, 29.766709221806618 ], [ -94.690292829255668, 29.768066221439216 ], [ -94.689867829078054, 29.769080222188997 ], [ -94.689396828514006, 29.76993622223662 ], [ -94.688689828249551, 29.770783222551117 ], [ -94.688249828106535, 29.771078222065697 ], [ -94.688262828969116, 29.771474222633344 ], [ -94.688275828764731, 29.771821222256232 ], [ -94.688290828432258, 29.77191822237392 ], [ -94.688325828936584, 29.772136222167365 ], [ -94.688898828910922, 29.772871223019042 ], [ -94.689751829045292, 29.773649222770082 ], [ -94.690698828968578, 29.774229222911842 ], [ -94.691476829541685, 29.774731222561538 ], [ -94.693017829486394, 29.77572622315056 ], [ -94.694584830540038, 29.776014223202449 ], [ -94.696134830429784, 29.776042223300195 ], [ -94.69735883075036, 29.776145223446424 ], [ -94.698813831163378, 29.777003223243526 ], [ -94.700009832092647, 29.778232223458499 ], [ -94.701354831766224, 29.779839224014861 ], [ -94.702425832104552, 29.781059224206846 ], [ -94.703804832586471, 29.781680224355295 ], [ -94.70541683291772, 29.782205223758488 ], [ -94.70575483345732, 29.782461223679082 ], [ -94.706052833612432, 29.783216224056947 ], [ -94.706215833231084, 29.783947224359661 ], [ -94.70626683395146, 29.78664422507676 ], [ -94.707018834282522, 29.788218225288396 ], [ -94.707493833740784, 29.788582225253265 ], [ -94.7106788350724, 29.791026225706798 ], [ -94.711328835113548, 29.791443225692266 ], [ -94.711520835167093, 29.791540225940256 ], [ -94.715389836821288, 29.793504225936577 ], [ -94.717580836693486, 29.794862226139159 ], [ -94.719632837464601, 29.796317226811031 ], [ -94.720835838407112, 29.797170226309014 ], [ -94.722006838439782, 29.798047227208023 ], [ -94.724042839043321, 29.799572227139677 ], [ -94.724965839750524, 29.800401226818188 ], [ -94.726057839800461, 29.801605227246245 ], [ -94.726186839626337, 29.801963227622082 ], [ -94.726260840157792, 29.802051227212786 ], [ -94.726334839259067, 29.802140227039207 ], [ -94.726660839576169, 29.803643228096774 ], [ -94.726502839869141, 29.804404227923108 ], [ -94.726140839464591, 29.805457227853662 ], [ -94.725884840089321, 29.806294228108243 ], [ -94.725558840073631, 29.808031228396842 ], [ -94.725903840354974, 29.809534229431105 ], [ -94.726889840427702, 29.810537228824348 ], [ -94.728145840275872, 29.811126228811791 ], [ -94.730108840974097, 29.81191422916439 ], [ -94.730743841345046, 29.812320229372926 ], [ -94.731638841475785, 29.812893229181437 ], [ -94.733476842435323, 29.814428229719567 ], [ -94.737161843599623, 29.81807823079696 ], [ -94.739392843894777, 29.820976230703174 ], [ -94.740587844207326, 29.823488231526298 ], [ -94.740672843872758, 29.824387231957694 ], [ -94.740581843972038, 29.825767231599507 ], [ -94.740116844198781, 29.828052231958402 ], [ -94.740590844417511, 29.830225232532026 ], [ -94.742164844671962, 29.832423233542183 ], [ -94.744999846235601, 29.834585233952552 ], [ -94.746850846909751, 29.835560234002596 ], [ -94.748572846713955, 29.835717233493934 ], [ -94.750009847715631, 29.835597233942547 ], [ -94.750952847454329, 29.835418233885999 ], [ -94.751838848059691, 29.834739233200761 ], [ -94.753442847788477, 29.833210232523371 ], [ -94.754417848088323, 29.831920232566521 ], [ -94.754921848614501, 29.830879232527646 ], [ -94.755124848482311, 29.830461232643383 ], [ -94.756379849031276, 29.829951232254743 ], [ -94.757976848791344, 29.829959232418339 ], [ -94.760628850299682, 29.831287232551929 ], [ -94.762593850860611, 29.833320232540611 ], [ -94.763626851144892, 29.83533723323761 ], [ -94.763362851037783, 29.837260233194218 ], [ -94.763923851453299, 29.837178233323169 ], [ -94.764965851692708, 29.837008233059255 ], [ -94.766156851408809, 29.836797233444077 ], [ -94.767260851756873, 29.8366062330721 ], [ -94.771782853123028, 29.835796233172651 ], [ -94.771854853176563, 29.835782232446345 ], [ -94.773436853580975, 29.835460232496761 ], [ -94.774199853414842, 29.835306232284967 ], [ -94.777492854226665, 29.834692232689161 ], [ -94.778724854210253, 29.834465232102712 ], [ -94.781041855015957, 29.834066231770116 ], [ -94.785548856009257, 29.833264231751539 ], [ -94.787456856448344, 29.832908231820383 ], [ -94.788536857084836, 29.832700231247468 ], [ -94.788631857558457, 29.832681232093599 ], [ -94.78868585704457, 29.832673231241412 ], [ -94.789551857174132, 29.8325392317156 ], [ -94.791722857617501, 29.832118231832908 ], [ -94.791962858014372, 29.832071231016382 ], [ -94.793446858770409, 29.831797231398465 ], [ -94.793967858442159, 29.831702231655772 ], [ -94.794054858343912, 29.831685231116658 ], [ -94.798433859921801, 29.83090623100313 ], [ -94.800031859746241, 29.830621231180125 ], [ -94.800766860096303, 29.83047423077609 ], [ -94.800768859746512, 29.830404231084145 ], [ -94.800790860469448, 29.830389230465325 ], [ -94.801147860708042, 29.830304230961559 ], [ -94.801527860164839, 29.830186230433608 ], [ -94.801631860764019, 29.830163231111008 ], [ -94.801841860732992, 29.830119230405668 ], [ -94.801849860256183, 29.830186230835103 ], [ -94.801862860009152, 29.830285230307286 ], [ -94.801874860669628, 29.83038923066983 ], [ -94.801883860692087, 29.830457231116533 ], [ -94.801960860098006, 29.830441230466938 ], [ -94.802192860029137, 29.83039623071749 ], [ -94.802270860796838, 29.830381230846079 ], [ -94.802360860452438, 29.830363231042259 ], [ -94.802632860190172, 29.830311230404607 ], [ -94.802723860183121, 29.830294230376015 ], [ -94.803309860512499, 29.830219230487963 ], [ -94.803374861150047, 29.830204230226098 ], [ -94.803569861309285, 29.830161230694934 ], [ -94.803635860507981, 29.830148230557292 ], [ -94.803722860841305, 29.830129230475023 ], [ -94.80375486133812, 29.830123230849409 ], [ -94.804116861428028, 29.830060230358292 ], [ -94.804237860642928, 29.830040230149621 ], [ -94.804383861004681, 29.830011230420983 ], [ -94.805293861508801, 29.829872230281126 ], [ -94.806164861078102, 29.82975623057597 ], [ -94.806569861640284, 29.829713230234734 ], [ -94.807226861384834, 29.829653230226885 ], [ -94.808754862530492, 29.829517230634316 ], [ -94.80962486195007, 29.829444230695856 ], [ -94.811920863113642, 29.829253229828382 ], [ -94.812497862658745, 29.829206230512352 ], [ -94.812936862774862, 29.829154230325461 ], [ -94.813936863035664, 29.829061230073965 ], [ -94.817088863993661, 29.828766229798568 ], [ -94.817207863827008, 29.828758229559295 ], [ -94.819385865190341, 29.828560229956491 ], [ -94.819423864511322, 29.828557229489828 ], [ -94.819473864797118, 29.828553230068696 ], [ -94.821453865499464, 29.828411229911143 ], [ -94.82249986553056, 29.828325229691064 ], [ -94.825376865938338, 29.828072229234007 ], [ -94.825408866707392, 29.828069229891547 ], [ -94.828578867672277, 29.827814229302703 ], [ -94.831564867455853, 29.827557228952493 ], [ -94.834551868387535, 29.827287228760639 ], [ -94.835013868597699, 29.827240229226536 ], [ -94.835586869355055, 29.827182228654227 ], [ -94.836109868930961, 29.827136229010097 ], [ -94.837147869247843, 29.827046228641265 ], [ -94.839041869699159, 29.826873228966715 ], [ -94.839899870083386, 29.826794228621772 ], [ -94.841055870594985, 29.826688228518659 ], [ -94.841909870344196, 29.826605228290941 ], [ -94.842449870639214, 29.826553228598435 ], [ -94.84263287063591, 29.826536228954303 ], [ -94.84270887101637, 29.826530228519758 ], [ -94.843078871302879, 29.826499228583597 ], [ -94.843502871136295, 29.826469228267278 ], [ -94.844579871286783, 29.826394228559913 ], [ -94.845884871467831, 29.826276228230022 ], [ -94.846359872076988, 29.826234228508309 ], [ -94.846677871945545, 29.826198228561683 ], [ -94.846668871781674, 29.82611822853589 ], [ -94.846659871758163, 29.826032228610998 ], [ -94.846639871715212, 29.825879228169772 ], [ -94.846630872265067, 29.825800228438453 ], [ -94.846578871691165, 29.825299228172273 ], [ -94.846434872134651, 29.823806227643921 ], [ -94.846386871930903, 29.823308228052536 ], [ -94.846378871942917, 29.823218228070914 ], [ -94.846353871626036, 29.822946228139863 ], [ -94.846349871541406, 29.822900227403114 ], [ -94.846346871860348, 29.822856227536185 ], [ -94.846305871720276, 29.822592227959287 ], [ -94.846275871100957, 29.822320227406188 ], [ -94.846254871796063, 29.822048227649102 ], [ -94.846243870995679, 29.82155522712932 ], [ -94.84625087193605, 29.821136227664194 ], [ -94.846261871072514, 29.820927227018721 ], [ -94.846299871234478, 29.820514227280668 ], [ -94.846304871779139, 29.820461227117455 ], [ -94.846347871943152, 29.820183226773974 ], [ -94.846411870951087, 29.819810226881199 ], [ -94.846516871802919, 29.819212226689292 ], [ -94.84671187180308, 29.818148226854216 ], [ -94.847101871767137, 29.81603222643578 ], [ -94.847174871966317, 29.815634225806701 ], [ -94.847525871402283, 29.81372922584675 ], [ -94.847661871661728, 29.81299622550647 ], [ -94.847878871849147, 29.811863225293028 ], [ -94.847993871654765, 29.811259224985193 ], [ -94.848084871761401, 29.810778225346255 ], [ -94.848144871413368, 29.810468224797809 ], [ -94.848635871464552, 29.80778922488545 ], [ -94.848639871851901, 29.807767224148868 ], [ -94.848829871802181, 29.806794224083422 ], [ -94.848868871401848, 29.806595224089193 ], [ -94.849089871362295, 29.805392223986416 ], [ -94.849130871875417, 29.805175223736622 ], [ -94.849223871721918, 29.804687224010276 ], [ -94.849370871124762, 29.803871223988615 ], [ -94.849547871293197, 29.802897223842166 ], [ -94.849594871459828, 29.802622223463775 ], [ -94.84973887123769, 29.801797222926666 ], [ -94.849787871940606, 29.801523223267804 ], [ -94.849884871614691, 29.801043223445834 ], [ -94.850153871365379, 29.799718222985693 ], [ -94.850173871945714, 29.799605222511712 ], [ -94.850261871912551, 29.799125222583161 ], [ -94.850319871090193, 29.798754222864769 ], [ -94.850465871829272, 29.798004222622048 ], [ -94.850489871149122, 29.797882222264978 ], [ -94.850593871421182, 29.797415221870232 ], [ -94.850729871883146, 29.796857222182016 ], [ -94.850976871522178, 29.796054222212156 ], [ -94.851241871546122, 29.795285221883965 ], [ -94.85143887153022, 29.794734222013282 ], [ -94.851823871452567, 29.793662221487626 ], [ -94.851963871182789, 29.793271221387197 ], [ -94.852122871935563, 29.792834221549878 ], [ -94.852369871565756, 29.792094220900822 ], [ -94.852458871645794, 29.791826220824607 ], [ -94.852501872066, 29.791701221226198 ], [ -94.852615871796047, 29.791361220663706 ], [ -94.852735871706983, 29.791038221057594 ], [ -94.852985871799078, 29.790337220515401 ], [ -94.85359387153936, 29.788602220646698 ], [ -94.854229871655008, 29.786788220274733 ], [ -94.854484871735082, 29.786047219706251 ], [ -94.855234872318519, 29.783870219460617 ], [ -94.855270872030189, 29.783792219332405 ], [ -94.855336871747539, 29.783647219093297 ], [ -94.855765871890796, 29.782404218626233 ], [ -94.856580872444624, 29.78004521846994 ], [ -94.856831872062514, 29.779341218538725 ], [ -94.856846872689786, 29.779299218532095 ], [ -94.857091871860391, 29.778613218428909 ], [ -94.85747987248152, 29.777487217635652 ], [ -94.857688872034728, 29.776882217984554 ], [ -94.857694872468741, 29.776865217887348 ], [ -94.857918872230158, 29.776194217853281 ], [ -94.858022871981461, 29.775873217539637 ], [ -94.858073872778093, 29.775756217383449 ], [ -94.858121872657819, 29.775597217663076 ], [ -94.858161872031843, 29.77545821759804 ], [ -94.858327872520761, 29.77488621744374 ], [ -94.858414872254173, 29.774466217284072 ], [ -94.858488872608021, 29.774017217461971 ], [ -94.858560872592022, 29.773354216955035 ], [ -94.858569872933259, 29.773174217015757 ], [ -94.858581872594726, 29.772955216960245 ], [ -94.85859287209901, 29.772526216736747 ], [ -94.858588872848443, 29.772400216486925 ], [ -94.858589872796159, 29.772378216495198 ], [ -94.85859387226931, 29.772312216719072 ], [ -94.858595872620199, 29.77229121724703 ], [ -94.858562872035336, 29.77200921692118 ], [ -94.858512872089634, 29.771576216931457 ], [ -94.858441872818105, 29.771169216515634 ], [ -94.858417872028099, 29.771026216782865 ], [ -94.858385872064474, 29.770892216223633 ], [ -94.858373872292432, 29.77084321627488 ], [ -94.858337872011958, 29.77069621638616 ], [ -94.858326872672421, 29.770648216953152 ], [ -94.858286872426461, 29.770491216824698 ], [ -94.858080872240578, 29.769763216177534 ], [ -94.858052872730468, 29.769661215927297 ], [ -94.857798872073687, 29.768884215758696 ], [ -94.857471871532724, 29.767951216322558 ], [ -94.857321872075232, 29.767471216047692 ], [ -94.857256871602203, 29.767238216037789 ], [ -94.857234872154152, 29.767144215611292 ], [ -94.857032871394225, 29.766250215893081 ], [ -94.857012871337204, 29.766141215855953 ], [ -94.856953871231013, 29.765817215919537 ], [ -94.856938872202278, 29.76573221515558 ], [ -94.856934871704198, 29.765709215490116 ], [ -94.856931871530463, 29.765691215748603 ], [ -94.856922872085761, 29.76563721565336 ], [ -94.856920871242721, 29.765620215512257 ], [ -94.856918871910892, 29.765609215405217 ], [ -94.856912872091598, 29.765575215631099 ], [ -94.856911872087366, 29.765565215124919 ], [ -94.856899871230652, 29.765490215250082 ], [ -94.856887871943414, 29.765413215725513 ], [ -94.856859871504653, 29.765269215081556 ], [ -94.856845872072924, 29.765196215382478 ], [ -94.856753871750541, 29.764717215553283 ], [ -94.856603871702205, 29.763934215145468 ], [ -94.856488871568374, 29.763282214679165 ], [ -94.856415871774928, 29.762866214953842 ], [ -94.85640987108259, 29.762802215128428 ], [ -94.85636587154255, 29.762568215181751 ], [ -94.856234871851711, 29.761869214418986 ], [ -94.856191871325549, 29.761636214830805 ], [ -94.856164871114018, 29.761493214365931 ], [ -94.856094870892235, 29.761117214236648 ], [ -94.855920870736767, 29.760165214211927 ], [ -94.855805871317813, 29.759560214630149 ], [ -94.855708871395308, 29.759042214552334 ], [ -94.855687871339896, 29.758889214066013 ], [ -94.855652871542375, 29.758719214161445 ], [ -94.855517870821444, 29.75806221428731 ], [ -94.855410870626443, 29.757540213695812 ], [ -94.855192870414484, 29.756778213941594 ], [ -94.855107870566343, 29.756514213906744 ], [ -94.85487787104357, 29.755885213574807 ], [ -94.854612870202928, 29.755212213258798 ], [ -94.854477870349925, 29.754870213711165 ], [ -94.854321870373866, 29.754474213160595 ], [ -94.854284870143331, 29.754379213103672 ], [ -94.854246870489121, 29.754284213703308 ], [ -94.854265870385291, 29.754278213006074 ], [ -94.854324870662651, 29.754261213522515 ], [ -94.854344870736611, 29.754256213371292 ], [ -94.854477870902755, 29.754217212887351 ], [ -94.857877871648711, 29.753099212538036 ], [ -94.857935871393664, 29.753085213068967 ], [ -94.858951871984544, 29.752856213186075 ], [ -94.860706872165125, 29.75276321259285 ], [ -94.861440872199282, 29.75272421312625 ], [ -94.865457873458894, 29.752765212425899 ], [ -94.865869873061001, 29.752772212774655 ], [ -94.867891873485931, 29.752775212884913 ], [ -94.86832387438993, 29.752775212906755 ], [ -94.868507873939791, 29.752775212300325 ], [ -94.868731874216365, 29.752774212321441 ], [ -94.869240873872528, 29.752773212710572 ], [ -94.870875874435242, 29.752771212628485 ], [ -94.87292687502692, 29.752769212058496 ], [ -94.873019875124925, 29.752769212358157 ], [ -94.873121875396748, 29.752769212675894 ], [ -94.873235875060075, 29.752751212450196 ], [ -94.873908875626924, 29.752648212225413 ], [ -94.875006876026276, 29.752481212581344 ], [ -94.875335876282364, 29.752434212293299 ], [ -94.876210876546821, 29.752187212529538 ], [ -94.876543876361808, 29.752107212497652 ], [ -94.877418876259171, 29.751901211729109 ], [ -94.877472876574544, 29.751888212035468 ], [ -94.878771876330816, 29.751595212241259 ], [ -94.880009877177201, 29.750982212027509 ], [ -94.883649877433342, 29.749060210988993 ], [ -94.884054877521649, 29.748878210894212 ], [ -94.884443878445794, 29.748700211311366 ], [ -94.884955878292189, 29.748702211394111 ], [ -94.885927878085582, 29.748714210916706 ], [ -94.886569879021096, 29.749834210881144 ], [ -94.887215879037157, 29.749775211593011 ], [ -94.888070879077063, 29.749791211188768 ], [ -94.891833879721233, 29.750358211097051 ], [ -94.892862880290608, 29.750345211290288 ], [ -94.896338881644112, 29.749771211074432 ], [ -94.898437881612693, 29.749578211149391 ], [ -94.899052881651485, 29.749481210563875 ], [ -94.898932881895789, 29.74963821111546 ], [ -94.898813882252497, 29.749795210582768 ], [ -94.898774881829851, 29.749847210816668 ], [ -94.898473882034693, 29.750278211376408 ], [ -94.898083881673827, 29.750887211170316 ], [ -94.897782881847888, 29.751393211259781 ], [ -94.897526881762474, 29.75186421168911 ], [ -94.897376881658062, 29.752164211273538 ], [ -94.896949881217736, 29.753101211862916 ], [ -94.896877881720414, 29.753294211459341 ], [ -94.896665881112867, 29.753929211473906 ], [ -94.896624881085643, 29.75406421185723 ], [ -94.896375881743992, 29.754894211751967 ], [ -94.896246881034145, 29.755375212381743 ], [ -94.896147881629744, 29.755846212604055 ], [ -94.896027881229756, 29.756687211928881 ], [ -94.895980881073584, 29.757128212553649 ], [ -94.895945881955726, 29.757572212363097 ], [ -94.895920880969314, 29.758188212421089 ], [ -94.895915881327142, 29.75832021299567 ], [ -94.895917881416679, 29.75859521292487 ], [ -94.895939881710916, 29.759143212811932 ], [ -94.896009881362644, 29.760017213347172 ], [ -94.896021882085961, 29.760108212681658 ], [ -94.896090881106332, 29.760551213233008 ], [ -94.896154881774493, 29.760913213269788 ], [ -94.896321881293403, 29.761687213107503 ], [ -94.89648888188303, 29.76257621311742 ], [ -94.89684588238292, 29.764214213945717 ], [ -94.897167881962204, 29.765767214407383 ], [ -94.897313881710176, 29.766450214067348 ], [ -94.897667882430113, 29.768090214514245 ], [ -94.897723882800292, 29.768357215083078 ], [ -94.897946882301682, 29.76943121495469 ], [ -94.898308882782601, 29.771167214902182 ], [ -94.898447883147398, 29.771772215507173 ], [ -94.898540882237299, 29.772106215820958 ], [ -94.89861388262868, 29.77232821575133 ], [ -94.898693882680789, 29.772549215611413 ], [ -94.898816883002837, 29.772864215735396 ], [ -94.898884882917187, 29.773020216075071 ], [ -94.89901188271314, 29.77328421553079 ], [ -94.899045882646334, 29.77334621560917 ], [ -94.899065882645587, 29.77338821578746 ], [ -94.899353882776154, 29.773853215632535 ], [ -94.899617883329952, 29.774242216236878 ], [ -94.899659883486848, 29.774299215754009 ], [ -94.899712883645776, 29.774381215869646 ], [ -94.900071883440162, 29.774813215718407 ], [ -94.900314882925883, 29.77507921621817 ], [ -94.900604883867743, 29.77535621634976 ], [ -94.901205883570412, 29.775893216420123 ], [ -94.90130188354604, 29.775986216079502 ], [ -94.902092884136678, 29.77648021600924 ], [ -94.902513884239397, 29.776714216018561 ], [ -94.903009884043769, 29.77695721620017 ], [ -94.903388884294614, 29.777121216751286 ], [ -94.903776883897976, 29.777269215936006 ], [ -94.904180884068779, 29.777399216759573 ], [ -94.904657884521853, 29.777529216517785 ], [ -94.904931884746333, 29.777592216230676 ], [ -94.905426885211043, 29.777687216260727 ], [ -94.90609088478368, 29.777780216594703 ], [ -94.910162886057819, 29.778187216765822 ], [ -94.911528886194247, 29.778318216584804 ], [ -94.911680886398628, 29.778332216611478 ], [ -94.912189886634891, 29.778380216262807 ], [ -94.912414886319596, 29.778400215834647 ], [ -94.912815886255189, 29.778438216540671 ], [ -94.913094887217852, 29.778438216050034 ], [ -94.913159886644891, 29.778439216125676 ], [ -94.913321886366717, 29.778436216586726 ], [ -94.913333887330154, 29.77822221607655 ], [ -94.913394886775393, 29.777637216234112 ], [ -94.913400886594602, 29.777582215970888 ], [ -94.913529887181696, 29.776076215730878 ], [ -94.913549886478947, 29.775811215458383 ], [ -94.913593886383637, 29.775420215863296 ], [ -94.913621886870445, 29.775241215405753 ], [ -94.913642886316396, 29.775111215535624 ], [ -94.913768886585828, 29.774528215323013 ], [ -94.913792886626723, 29.774458215331535 ], [ -94.913862886813305, 29.774250215389788 ], [ -94.913928887238683, 29.77406021493065 ], [ -94.914060886504913, 29.773730215186344 ], [ -94.914100887011188, 29.773637215409252 ], [ -94.914188886675674, 29.773436215374051 ], [ -94.914248887324717, 29.773320214985844 ], [ -94.914431886838017, 29.772974215336028 ], [ -94.914492886864267, 29.772859214895124 ], [ -94.914506887039067, 29.772832215306511 ], [ -94.9145518867536, 29.772752215265413 ], [ -94.914566886858751, 29.772726214838972 ], [ -94.914600886926479, 29.772658214998494 ], [ -94.914881887399162, 29.772226214701679 ], [ -94.915144887196803, 29.771879215183439 ], [ -94.915549887233539, 29.771407215022126 ], [ -94.915842886666496, 29.77110721459773 ], [ -94.915954886880471, 29.771002214350766 ], [ -94.916248886804738, 29.770683214786064 ], [ -94.916478886961528, 29.770408214818477 ], [ -94.91649288772706, 29.770392214511954 ], [ -94.916624887430117, 29.770276214361946 ], [ -94.916533887522661, 29.770030214405462 ], [ -94.916026887599386, 29.769844214358216 ], [ -94.915913886726869, 29.769799214400759 ], [ -94.915657886997138, 29.769689214158053 ], [ -94.915401887045931, 29.769580214582405 ], [ -94.91538088653131, 29.769571214682276 ], [ -94.915318886682059, 29.769544214802078 ], [ -94.915298886821049, 29.769535214697534 ], [ -94.915079886551453, 29.769441214479212 ], [ -94.914732886348517, 29.769318214203462 ], [ -94.914399886868324, 29.769200214277088 ], [ -94.914260886416713, 29.769151214358317 ], [ -94.913693886640971, 29.768686213925076 ], [ -94.913378886187601, 29.768105213921558 ], [ -94.913252886599011, 29.76740721378242 ], [ -94.913352886199533, 29.767035214145537 ], [ -94.913415886862467, 29.766804213549708 ], [ -94.91344188609429, 29.76671121384674 ], [ -94.91381988609696, 29.766305213586104 ], [ -94.91411488616825, 29.766221214023378 ], [ -94.914163886560615, 29.7662072137786 ], [ -94.914544886518357, 29.766250213610892 ], [ -94.914667887133035, 29.766265213436611 ], [ -94.915274886604607, 29.76649121333261 ], [ -94.915763887175487, 29.766705213328873 ], [ -94.91616288709433, 29.766880213696105 ], [ -94.916222887118181, 29.766906213407445 ], [ -94.916281886753055, 29.76691321338151 ], [ -94.916663886939773, 29.766964213622188 ], [ -94.91677788677957, 29.766929213853594 ], [ -94.917041886843293, 29.7668482137681 ], [ -94.917050886925253, 29.766841213411386 ], [ -94.917768887331874, 29.7663602135333 ], [ -94.918008887804376, 29.766200213904661 ], [ -94.918262888036338, 29.766029213845432 ], [ -94.918518887553034, 29.765858213736067 ], [ -94.918966887697692, 29.765444213465667 ], [ -94.919022888063054, 29.765394213267665 ], [ -94.919109887454525, 29.765180212949954 ], [ -94.919119887805081, 29.765152213567024 ], [ -94.919136887481642, 29.765113213024247 ], [ -94.919152887546119, 29.765071213694064 ], [ -94.919164887699026, 29.765045213482868 ], [ -94.919210887749941, 29.764928213054812 ], [ -94.919174888135686, 29.764585213062826 ], [ -94.919157887566712, 29.764555213196672 ], [ -94.919096888073611, 29.764446213405911 ], [ -94.918910888034461, 29.764096213446891 ], [ -94.918598887028324, 29.76350721343119 ], [ -94.918357887356279, 29.763044212551666 ], [ -94.918175887029108, 29.762693212771339 ], [ -94.918116887557375, 29.762599212559874 ], [ -94.917975886995023, 29.76230121248226 ], [ -94.917968887714053, 29.76228721287313 ], [ -94.91794788707918, 29.762196212806892 ], [ -94.917931887608688, 29.762128212685152 ], [ -94.917908887760774, 29.762027212980588 ], [ -94.917884887786613, 29.761924212928765 ], [ -94.917869887217819, 29.761857212812053 ], [ -94.917858887237614, 29.761810212916959 ], [ -94.91782588771369, 29.761670212612231 ], [ -94.917815887621543, 29.76162421276079 ], [ -94.917813887591137, 29.761596212550668 ], [ -94.917810887723647, 29.761514212710001 ], [ -94.917809887543001, 29.761487212548705 ], [ -94.917808887491617, 29.761476212384231 ], [ -94.917807886994325, 29.761445212891772 ], [ -94.917807886789291, 29.76143521277692 ], [ -94.917794887168697, 29.761161212573509 ], [ -94.917789886718481, 29.761043212943353 ], [ -94.918029887402369, 29.760521212514668 ], [ -94.918095887450662, 29.760411212453352 ], [ -94.918238887643241, 29.760178212364341 ], [ -94.918307887187396, 29.760063211892376 ], [ -94.918477887064327, 29.759777212046057 ], [ -94.918508887159859, 29.759713212097392 ], [ -94.918582887671562, 29.759601212106826 ], [ -94.918624887003318, 29.759527212149187 ], [ -94.918687887248538, 29.759417212508701 ], [ -94.918750887029006, 29.75930621254312 ], [ -94.918792887516389, 29.759233211948565 ], [ -94.918784887879625, 29.759204211970808 ], [ -94.918774887606631, 29.759155212216072 ], [ -94.918760887746458, 29.759083212335643 ], [ -94.918745887406416, 29.759011211767692 ], [ -94.918736887001685, 29.758963212051011 ], [ -94.918670887592299, 29.75865621214545 ], [ -94.918473886722154, 29.757737212256544 ], [ -94.91840888767598, 29.757431212131184 ], [ -94.918405887654032, 29.757325211749798 ], [ -94.918396886881681, 29.757008211749366 ], [ -94.918394886691743, 29.756903211402008 ], [ -94.918387887142259, 29.756657211160924 ], [ -94.918374886930494, 29.756117211220353 ], [ -94.918490887227065, 29.75595921113155 ], [ -94.918636886718005, 29.755762210993733 ], [ -94.918655886929827, 29.755735211595113 ], [ -94.918718887058645, 29.75566221153133 ], [ -94.918733887709479, 29.755630211649098 ], [ -94.918774887507766, 29.755573211256984 ], [ -94.918842887198181, 29.755483211468569 ], [ -94.918934887047371, 29.755456211236872 ], [ -94.919002887074271, 29.755437211614826 ], [ -94.919557887708663, 29.755279210920026 ], [ -94.920294887975913, 29.755358210848058 ], [ -94.920632887585242, 29.755408211623184 ], [ -94.921651888097529, 29.755562211387701 ], [ -94.922608887779219, 29.755473211477053 ], [ -94.923408887932965, 29.755268211435634 ], [ -94.924269888547471, 29.754628211096225 ], [ -94.92492088880239, 29.753753210411642 ], [ -94.925913889044608, 29.752423210758604 ], [ -94.925927888726903, 29.752404210433127 ], [ -94.925947889321279, 29.752378210061721 ], [ -94.925982888653394, 29.752365210837546 ], [ -94.926005889117548, 29.75235821043767 ], [ -94.926151888996571, 29.752308210544125 ], [ -94.926590889055404, 29.752160210217355 ], [ -94.926737889203821, 29.752111210602745 ], [ -94.9269458891916, 29.752040210273716 ], [ -94.927571889486998, 29.751830210362883 ], [ -94.927613889125766, 29.751816210176319 ], [ -94.927653889473547, 29.751801210312408 ], [ -94.927778889179592, 29.751755210641367 ], [ -94.92783788888859, 29.751733210281447 ], [ -94.928014889280064, 29.751668210272225 ], [ -94.928074889771693, 29.751647209815346 ], [ -94.92841989004819, 29.751520209808525 ], [ -94.928803889836857, 29.751380210482402 ], [ -94.929338890224813, 29.750938210258589 ], [ -94.929393889952792, 29.750894209704668 ], [ -94.929565889889389, 29.750651209751592 ], [ -94.929586890048057, 29.750619209559336 ], [ -94.929652889973809, 29.75052620975671 ], [ -94.929660890052588, 29.75051620986547 ], [ -94.929668890082809, 29.750492209646502 ], [ -94.929700890254807, 29.750394210010231 ], [ -94.929799889557586, 29.750102209733946 ], [ -94.929832889333127, 29.750005210019079 ], [ -94.929902889451995, 29.749457209925321 ], [ -94.930107889375407, 29.747861209706162 ], [ -94.930101890020936, 29.74781320982364 ], [ -94.930040890115563, 29.74726420965942 ], [ -94.930024889734298, 29.747124209496846 ], [ -94.930007889252877, 29.746980209410893 ], [ -94.9299768898873, 29.746704208996579 ], [ -94.929961890059289, 29.746564209405641 ], [ -94.929588889141982, 29.74550620925914 ], [ -94.929282889919094, 29.744638209151407 ], [ -94.928897889026928, 29.743542208944216 ], [ -94.928739889120351, 29.742273208563994 ], [ -94.928602889431971, 29.741161207801245 ], [ -94.928579889442474, 29.740983208397278 ], [ -94.928513888985989, 29.740449208275056 ], [ -94.928491889091234, 29.740272207895405 ], [ -94.928488889240882, 29.740251208246164 ], [ -94.928481888793286, 29.740189208050516 ], [ -94.928479888725377, 29.740169207475045 ], [ -94.928469889295528, 29.740088208221536 ], [ -94.928439889417106, 29.739848207636989 ], [ -94.928429888867484, 29.73976920800375 ], [ -94.928401888642824, 29.739550207333888 ], [ -94.928319888800047, 29.738892207942282 ], [ -94.928303888463702, 29.738758207947789 ], [ -94.928336889112828, 29.738680207485828 ], [ -94.928663889406508, 29.737909207497374 ], [ -94.929025888923945, 29.73706220688711 ], [ -94.930284889561108, 29.736091206655004 ], [ -94.93094788967025, 29.735580206945944 ], [ -94.931066889400086, 29.735488206992233 ], [ -94.931955889822106, 29.734357206513184 ], [ -94.932323889527197, 29.733889206875965 ], [ -94.934833890766299, 29.73258920565647 ], [ -94.935710890858573, 29.731569206299305 ], [ -94.936180890219305, 29.731024205513414 ], [ -94.936700890946184, 29.730328205472858 ], [ -94.937156890572382, 29.729716205425124 ], [ -94.937612891401301, 29.729107205683306 ], [ -94.938487890726876, 29.727853205163612 ], [ -94.938925890652641, 29.727228205041914 ], [ -94.93895889134636, 29.727180205208768 ], [ -94.939058891397252, 29.727036205225314 ], [ -94.939092891683174, 29.726989205257468 ], [ -94.939111890859039, 29.72696120456181 ], [ -94.939169891536466, 29.726877204886993 ], [ -94.939189891384018, 29.726850205012493 ], [ -94.939334891112537, 29.726642204855107 ], [ -94.939344891276093, 29.72662920460472 ], [ -94.939883891318829, 29.726025204513849 ], [ -94.940063891850855, 29.725824204908708 ], [ -94.941081891685727, 29.725001204696078 ], [ -94.941479891753872, 29.724680203973051 ], [ -94.942002891517561, 29.723654203688138 ], [ -94.942002891914569, 29.722618203628937 ], [ -94.942251891377396, 29.721414203673895 ], [ -94.942352891814181, 29.720927203229135 ], [ -94.942786892071481, 29.720241203107538 ], [ -94.942873891785084, 29.720103203684829 ], [ -94.942957892278145, 29.719971203541093 ], [ -94.943199891531179, 29.719745202970042 ], [ -94.9433188916136, 29.719634203471355 ], [ -94.943417891614658, 29.719542202966917 ], [ -94.943550892268803, 29.719419203207998 ], [ -94.945229892481748, 29.718306202587513 ], [ -94.945536892884647, 29.717097202515681 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 626, "Tract": "48071710201", "Area_SqMi": 17.093696860639668, "total_2009": 435, "total_2010": 348, "total_2011": 366, "total_2012": 2038, "total_2013": 2255, "total_2014": 1813, "total_2015": 2218, "total_2016": 2589, "total_2017": 2737, "total_2018": 3481, "total_2019": 2814, "total_2020": 3285, "age1": 1028, "age2": 2920, "age3": 892, "earn1": 597, "earn2": 956, "earn3": 3287, "naics_s01": 0, "naics_s02": 1, "naics_s03": 1, "naics_s04": 854, "naics_s05": 321, "naics_s06": 253, "naics_s07": 397, "naics_s08": 198, "naics_s09": 1, "naics_s10": 26, "naics_s11": 12, "naics_s12": 152, "naics_s13": 1, "naics_s14": 176, "naics_s15": 1, "naics_s16": 59, "naics_s17": 0, "naics_s18": 254, "naics_s19": 2133, "naics_s20": 0, "race1": 3988, "race2": 580, "race3": 55, "race4": 141, "race5": 10, "race6": 66, "ethnicity1": 2737, "ethnicity2": 2103, "edu1": 1038, "edu2": 1113, "edu3": 1082, "edu4": 579, "Shape_Length": 113566.74551966169, "Shape_Area": 476543012.32006657, "total_2021": 3114, "total_2022": 4840 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.924169890861819, 29.795931219087141 ], [ -94.924210890355269, 29.795183219370752 ], [ -94.924120890110714, 29.794923218965774 ], [ -94.923842890740502, 29.794725218901853 ], [ -94.923204889862561, 29.794488219441845 ], [ -94.922808890203029, 29.794427219155658 ], [ -94.922451890036228, 29.794537219094607 ], [ -94.922441889475067, 29.794534219175585 ], [ -94.922201889696879, 29.794473218868433 ], [ -94.921789889291205, 29.794382218934615 ], [ -94.921014889681373, 29.794177219690472 ], [ -94.920569889140424, 29.794183219269613 ], [ -94.920323888881683, 29.794299219091712 ], [ -94.920079889380119, 29.794534219612693 ], [ -94.919885888881694, 29.794671219265137 ], [ -94.919697888815293, 29.794704219601911 ], [ -94.919473889650547, 29.794655219053617 ], [ -94.919263889044629, 29.794404219290023 ], [ -94.919298888644647, 29.794015219492504 ], [ -94.91944688866775, 29.793662219424991 ], [ -94.919738888713226, 29.793291218845063 ], [ -94.920032889508477, 29.792988219417879 ], [ -94.920443888847174, 29.792721219065474 ], [ -94.920861889553422, 29.792648218819647 ], [ -94.921295889398237, 29.792537218986201 ], [ -94.921436889525054, 29.792296218433524 ], [ -94.921303889746611, 29.792066218864552 ], [ -94.921130889173583, 29.791934219193873 ], [ -94.92077088932588, 29.79194721871913 ], [ -94.920513888790282, 29.791928219191927 ], [ -94.920030889574534, 29.791726218568769 ], [ -94.919631889113589, 29.791463219146369 ], [ -94.919531888788455, 29.791339218388988 ], [ -94.919368888600417, 29.791138218485646 ], [ -94.919119888839887, 29.790671218387875 ], [ -94.91881288876624, 29.790071218038033 ], [ -94.918578888711878, 29.789741218838614 ], [ -94.918566888210094, 29.789723218603179 ], [ -94.918061888622361, 29.789275218716416 ], [ -94.91783488890502, 29.789047218111833 ], [ -94.917792888040438, 29.788911217813848 ], [ -94.917770888573045, 29.788839218631029 ], [ -94.91774888860671, 29.788593217802802 ], [ -94.917839888822797, 29.788210217860609 ], [ -94.918016888959102, 29.788036217783869 ], [ -94.918027888988817, 29.788028218405717 ], [ -94.918422888429944, 29.787769217654713 ], [ -94.918614888455835, 29.787549217771474 ], [ -94.918600888331582, 29.787243217625466 ], [ -94.918459888913489, 29.787044217717977 ], [ -94.918208888095151, 29.786898217698525 ], [ -94.917471887818621, 29.786879217732793 ], [ -94.917248887788247, 29.786852217680693 ], [ -94.917024887832881, 29.786773217644928 ], [ -94.917011888502145, 29.786644217699418 ], [ -94.917003888122082, 29.786557218182264 ], [ -94.917007888116345, 29.786355217728943 ], [ -94.917116887772949, 29.786227218065573 ], [ -94.917598888767301, 29.786032217404152 ], [ -94.917788887868198, 29.785956218013645 ], [ -94.918205888466829, 29.785643217881937 ], [ -94.918359888439056, 29.78519321742063 ], [ -94.918137888049387, 29.784756217715387 ], [ -94.918100887935481, 29.784557217776278 ], [ -94.918070887879836, 29.78439121711456 ], [ -94.918149887853332, 29.784053217408569 ], [ -94.918380887914438, 29.783557217505201 ], [ -94.919087888572022, 29.78315121737451 ], [ -94.92060488879082, 29.782808216941604 ], [ -94.921070889309405, 29.782547217306995 ], [ -94.921378889397047, 29.782080216919468 ], [ -94.92132888909866, 29.781684216758169 ], [ -94.921186889516036, 29.781440216235605 ], [ -94.921029888462286, 29.781278216617771 ], [ -94.920795888976869, 29.781203216227009 ], [ -94.920650888762424, 29.781157216127379 ], [ -94.920039889177687, 29.781009216464721 ], [ -94.919743889085439, 29.780729216467297 ], [ -94.919749888110189, 29.780161216332875 ], [ -94.919810889050979, 29.780039216370927 ], [ -94.919815888167321, 29.780026216034098 ], [ -94.91983488874169, 29.779988216210935 ], [ -94.919841888605021, 29.779976216578891 ], [ -94.919851888557432, 29.779955216431414 ], [ -94.919881889070069, 29.779894216556176 ], [ -94.919892889053003, 29.779874216434326 ], [ -94.920062888714696, 29.779530216459293 ], [ -94.920014888622816, 29.779004215962541 ], [ -94.91999788864743, 29.778813216210729 ], [ -94.919862888707897, 29.778180215685907 ], [ -94.919772888964673, 29.777756215524885 ], [ -94.91977788811495, 29.777159216171455 ], [ -94.91997588834225, 29.776752215320606 ], [ -94.920342888247205, 29.776239215733952 ], [ -94.920254889004354, 29.775688215225646 ], [ -94.920077888595188, 29.775362215013626 ], [ -94.919697888571704, 29.775203215069077 ], [ -94.918739888394896, 29.775217215837223 ], [ -94.917985887389804, 29.775198215578257 ], [ -94.917905887405055, 29.775167215618627 ], [ -94.917243887805242, 29.774910215757899 ], [ -94.916822887538018, 29.774491215720005 ], [ -94.916667887856491, 29.774336215289559 ], [ -94.916561887733238, 29.774136215637999 ], [ -94.916516887497266, 29.774052214841689 ], [ -94.91638188712551, 29.773800215055015 ], [ -94.916337887101491, 29.773717215149247 ], [ -94.916311887223813, 29.773668215336144 ], [ -94.91630988778526, 29.773540215327568 ], [ -94.916298887362927, 29.772993215088842 ], [ -94.916297887432549, 29.772907214798263 ], [ -94.916330887035471, 29.772817214944322 ], [ -94.916337887099431, 29.772796214774505 ], [ -94.916361887145385, 29.772733215404699 ], [ -94.916369887139339, 29.772713215290114 ], [ -94.91652588698372, 29.77229121486199 ], [ -94.917026887413357, 29.771955214533477 ], [ -94.917700887968593, 29.771931214682532 ], [ -94.918655888118522, 29.772634214926306 ], [ -94.919157887776052, 29.772896214906179 ], [ -94.919549888623791, 29.772800215227697 ], [ -94.91978788856369, 29.772563214870832 ], [ -94.91990188849374, 29.772452214694578 ], [ -94.920013888292473, 29.772002214562448 ], [ -94.919851887754604, 29.771601214200391 ], [ -94.91981788842665, 29.771551214968632 ], [ -94.919739887854263, 29.771437214965427 ], [ -94.919640888220911, 29.771290214482324 ], [ -94.919304887658171, 29.771217214225036 ], [ -94.91912488823904, 29.77117821417777 ], [ -94.918626888220999, 29.771111214724726 ], [ -94.917752887833629, 29.77115221481554 ], [ -94.917238887235115, 29.771071214435278 ], [ -94.916862887877144, 29.770606214972499 ], [ -94.916624887430117, 29.770276214361946 ], [ -94.91649288772706, 29.770392214511954 ], [ -94.916478886961528, 29.770408214818477 ], [ -94.916248886804738, 29.770683214786064 ], [ -94.915954886880471, 29.771002214350766 ], [ -94.915842886666496, 29.77110721459773 ], [ -94.915549887233539, 29.771407215022126 ], [ -94.915144887196803, 29.771879215183439 ], [ -94.914881887399162, 29.772226214701679 ], [ -94.914600886926479, 29.772658214998494 ], [ -94.914566886858751, 29.772726214838972 ], [ -94.9145518867536, 29.772752215265413 ], [ -94.914506887039067, 29.772832215306511 ], [ -94.914492886864267, 29.772859214895124 ], [ -94.914431886838017, 29.772974215336028 ], [ -94.914248887324717, 29.773320214985844 ], [ -94.914188886675674, 29.773436215374051 ], [ -94.914100887011188, 29.773637215409252 ], [ -94.914060886504913, 29.773730215186344 ], [ -94.913928887238683, 29.77406021493065 ], [ -94.913862886813305, 29.774250215389788 ], [ -94.913792886626723, 29.774458215331535 ], [ -94.913768886585828, 29.774528215323013 ], [ -94.913642886316396, 29.775111215535624 ], [ -94.913621886870445, 29.775241215405753 ], [ -94.913593886383637, 29.775420215863296 ], [ -94.913549886478947, 29.775811215458383 ], [ -94.913529887181696, 29.776076215730878 ], [ -94.913400886594602, 29.777582215970888 ], [ -94.913394886775393, 29.777637216234112 ], [ -94.913333887330154, 29.77822221607655 ], [ -94.913321886366717, 29.778436216586726 ], [ -94.913159886644891, 29.778439216125676 ], [ -94.913094887217852, 29.778438216050034 ], [ -94.912815886255189, 29.778438216540671 ], [ -94.912414886319596, 29.778400215834647 ], [ -94.912189886634891, 29.778380216262807 ], [ -94.911680886398628, 29.778332216611478 ], [ -94.911528886194247, 29.778318216584804 ], [ -94.910162886057819, 29.778187216765822 ], [ -94.90609088478368, 29.777780216594703 ], [ -94.905426885211043, 29.777687216260727 ], [ -94.904931884746333, 29.777592216230676 ], [ -94.904657884521853, 29.777529216517785 ], [ -94.904180884068779, 29.777399216759573 ], [ -94.903776883897976, 29.777269215936006 ], [ -94.903388884294614, 29.777121216751286 ], [ -94.903009884043769, 29.77695721620017 ], [ -94.902513884239397, 29.776714216018561 ], [ -94.902092884136678, 29.77648021600924 ], [ -94.90130188354604, 29.775986216079502 ], [ -94.901205883570412, 29.775893216420123 ], [ -94.900604883867743, 29.77535621634976 ], [ -94.900314882925883, 29.77507921621817 ], [ -94.900071883440162, 29.774813215718407 ], [ -94.899712883645776, 29.774381215869646 ], [ -94.899659883486848, 29.774299215754009 ], [ -94.899617883329952, 29.774242216236878 ], [ -94.899353882776154, 29.773853215632535 ], [ -94.899065882645587, 29.77338821578746 ], [ -94.899045882646334, 29.77334621560917 ], [ -94.89901188271314, 29.77328421553079 ], [ -94.898884882917187, 29.773020216075071 ], [ -94.898816883002837, 29.772864215735396 ], [ -94.898693882680789, 29.772549215611413 ], [ -94.89861388262868, 29.77232821575133 ], [ -94.898540882237299, 29.772106215820958 ], [ -94.898447883147398, 29.771772215507173 ], [ -94.898308882782601, 29.771167214902182 ], [ -94.897946882301682, 29.76943121495469 ], [ -94.897723882800292, 29.768357215083078 ], [ -94.897667882430113, 29.768090214514245 ], [ -94.897313881710176, 29.766450214067348 ], [ -94.897167881962204, 29.765767214407383 ], [ -94.89684588238292, 29.764214213945717 ], [ -94.89648888188303, 29.76257621311742 ], [ -94.896321881293403, 29.761687213107503 ], [ -94.896154881774493, 29.760913213269788 ], [ -94.896090881106332, 29.760551213233008 ], [ -94.896021882085961, 29.760108212681658 ], [ -94.896009881362644, 29.760017213347172 ], [ -94.895939881710916, 29.759143212811932 ], [ -94.895917881416679, 29.75859521292487 ], [ -94.895915881327142, 29.75832021299567 ], [ -94.895920880969314, 29.758188212421089 ], [ -94.895945881955726, 29.757572212363097 ], [ -94.895980881073584, 29.757128212553649 ], [ -94.896027881229756, 29.756687211928881 ], [ -94.896147881629744, 29.755846212604055 ], [ -94.896246881034145, 29.755375212381743 ], [ -94.896375881743992, 29.754894211751967 ], [ -94.896624881085643, 29.75406421185723 ], [ -94.896665881112867, 29.753929211473906 ], [ -94.896877881720414, 29.753294211459341 ], [ -94.896949881217736, 29.753101211862916 ], [ -94.897376881658062, 29.752164211273538 ], [ -94.897526881762474, 29.75186421168911 ], [ -94.897782881847888, 29.751393211259781 ], [ -94.898083881673827, 29.750887211170316 ], [ -94.898473882034693, 29.750278211376408 ], [ -94.898774881829851, 29.749847210816668 ], [ -94.898813882252497, 29.749795210582768 ], [ -94.898932881895789, 29.74963821111546 ], [ -94.899052881651485, 29.749481210563875 ], [ -94.898437881612693, 29.749578211149391 ], [ -94.896338881644112, 29.749771211074432 ], [ -94.892862880290608, 29.750345211290288 ], [ -94.891833879721233, 29.750358211097051 ], [ -94.888070879077063, 29.749791211188768 ], [ -94.887215879037157, 29.749775211593011 ], [ -94.886569879021096, 29.749834210881144 ], [ -94.885927878085582, 29.748714210916706 ], [ -94.884955878292189, 29.748702211394111 ], [ -94.884443878445794, 29.748700211311366 ], [ -94.884054877521649, 29.748878210894212 ], [ -94.883649877433342, 29.749060210988993 ], [ -94.880009877177201, 29.750982212027509 ], [ -94.878771876330816, 29.751595212241259 ], [ -94.877472876574544, 29.751888212035468 ], [ -94.877418876259171, 29.751901211729109 ], [ -94.876543876361808, 29.752107212497652 ], [ -94.876210876546821, 29.752187212529538 ], [ -94.875335876282364, 29.752434212293299 ], [ -94.875006876026276, 29.752481212581344 ], [ -94.873908875626924, 29.752648212225413 ], [ -94.873235875060075, 29.752751212450196 ], [ -94.873121875396748, 29.752769212675894 ], [ -94.873019875124925, 29.752769212358157 ], [ -94.87292687502692, 29.752769212058496 ], [ -94.870875874435242, 29.752771212628485 ], [ -94.869240873872528, 29.752773212710572 ], [ -94.868731874216365, 29.752774212321441 ], [ -94.868507873939791, 29.752775212300325 ], [ -94.86832387438993, 29.752775212906755 ], [ -94.867891873485931, 29.752775212884913 ], [ -94.865869873061001, 29.752772212774655 ], [ -94.865457873458894, 29.752765212425899 ], [ -94.861440872199282, 29.75272421312625 ], [ -94.860706872165125, 29.75276321259285 ], [ -94.858951871984544, 29.752856213186075 ], [ -94.857935871393664, 29.753085213068967 ], [ -94.857877871648711, 29.753099212538036 ], [ -94.854477870902755, 29.754217212887351 ], [ -94.854344870736611, 29.754256213371292 ], [ -94.854324870662651, 29.754261213522515 ], [ -94.854265870385291, 29.754278213006074 ], [ -94.854246870489121, 29.754284213703308 ], [ -94.854284870143331, 29.754379213103672 ], [ -94.854321870373866, 29.754474213160595 ], [ -94.854477870349925, 29.754870213711165 ], [ -94.854612870202928, 29.755212213258798 ], [ -94.85487787104357, 29.755885213574807 ], [ -94.855107870566343, 29.756514213906744 ], [ -94.855192870414484, 29.756778213941594 ], [ -94.855410870626443, 29.757540213695812 ], [ -94.855517870821444, 29.75806221428731 ], [ -94.855652871542375, 29.758719214161445 ], [ -94.855687871339896, 29.758889214066013 ], [ -94.855708871395308, 29.759042214552334 ], [ -94.855805871317813, 29.759560214630149 ], [ -94.855920870736767, 29.760165214211927 ], [ -94.856094870892235, 29.761117214236648 ], [ -94.856164871114018, 29.761493214365931 ], [ -94.856191871325549, 29.761636214830805 ], [ -94.856234871851711, 29.761869214418986 ], [ -94.85636587154255, 29.762568215181751 ], [ -94.85640987108259, 29.762802215128428 ], [ -94.856415871774928, 29.762866214953842 ], [ -94.856488871568374, 29.763282214679165 ], [ -94.856603871702205, 29.763934215145468 ], [ -94.856753871750541, 29.764717215553283 ], [ -94.856845872072924, 29.765196215382478 ], [ -94.856859871504653, 29.765269215081556 ], [ -94.856887871943414, 29.765413215725513 ], [ -94.856899871230652, 29.765490215250082 ], [ -94.856911872087366, 29.765565215124919 ], [ -94.856912872091598, 29.765575215631099 ], [ -94.856918871910892, 29.765609215405217 ], [ -94.856920871242721, 29.765620215512257 ], [ -94.856922872085761, 29.76563721565336 ], [ -94.856931871530463, 29.765691215748603 ], [ -94.856934871704198, 29.765709215490116 ], [ -94.856938872202278, 29.76573221515558 ], [ -94.856953871231013, 29.765817215919537 ], [ -94.857012871337204, 29.766141215855953 ], [ -94.857032871394225, 29.766250215893081 ], [ -94.857234872154152, 29.767144215611292 ], [ -94.857256871602203, 29.767238216037789 ], [ -94.857321872075232, 29.767471216047692 ], [ -94.857471871532724, 29.767951216322558 ], [ -94.857798872073687, 29.768884215758696 ], [ -94.858052872730468, 29.769661215927297 ], [ -94.858080872240578, 29.769763216177534 ], [ -94.858286872426461, 29.770491216824698 ], [ -94.858326872672421, 29.770648216953152 ], [ -94.858337872011958, 29.77069621638616 ], [ -94.858373872292432, 29.77084321627488 ], [ -94.858385872064474, 29.770892216223633 ], [ -94.858417872028099, 29.771026216782865 ], [ -94.858441872818105, 29.771169216515634 ], [ -94.858512872089634, 29.771576216931457 ], [ -94.858562872035336, 29.77200921692118 ], [ -94.858595872620199, 29.77229121724703 ], [ -94.85859387226931, 29.772312216719072 ], [ -94.858589872796159, 29.772378216495198 ], [ -94.858588872848443, 29.772400216486925 ], [ -94.85859287209901, 29.772526216736747 ], [ -94.858581872594726, 29.772955216960245 ], [ -94.858569872933259, 29.773174217015757 ], [ -94.858560872592022, 29.773354216955035 ], [ -94.858488872608021, 29.774017217461971 ], [ -94.858414872254173, 29.774466217284072 ], [ -94.858327872520761, 29.77488621744374 ], [ -94.858161872031843, 29.77545821759804 ], [ -94.858121872657819, 29.775597217663076 ], [ -94.858073872778093, 29.775756217383449 ], [ -94.858022871981461, 29.775873217539637 ], [ -94.857918872230158, 29.776194217853281 ], [ -94.857694872468741, 29.776865217887348 ], [ -94.857688872034728, 29.776882217984554 ], [ -94.85747987248152, 29.777487217635652 ], [ -94.857091871860391, 29.778613218428909 ], [ -94.856846872689786, 29.779299218532095 ], [ -94.856831872062514, 29.779341218538725 ], [ -94.856580872444624, 29.78004521846994 ], [ -94.855765871890796, 29.782404218626233 ], [ -94.855336871747539, 29.783647219093297 ], [ -94.855270872030189, 29.783792219332405 ], [ -94.855234872318519, 29.783870219460617 ], [ -94.854484871735082, 29.786047219706251 ], [ -94.854229871655008, 29.786788220274733 ], [ -94.85359387153936, 29.788602220646698 ], [ -94.852985871799078, 29.790337220515401 ], [ -94.852735871706983, 29.791038221057594 ], [ -94.852615871796047, 29.791361220663706 ], [ -94.852501872066, 29.791701221226198 ], [ -94.852458871645794, 29.791826220824607 ], [ -94.852369871565756, 29.792094220900822 ], [ -94.852122871935563, 29.792834221549878 ], [ -94.851963871182789, 29.793271221387197 ], [ -94.851823871452567, 29.793662221487626 ], [ -94.85143887153022, 29.794734222013282 ], [ -94.851241871546122, 29.795285221883965 ], [ -94.850976871522178, 29.796054222212156 ], [ -94.850729871883146, 29.796857222182016 ], [ -94.850593871421182, 29.797415221870232 ], [ -94.850489871149122, 29.797882222264978 ], [ -94.850465871829272, 29.798004222622048 ], [ -94.850319871090193, 29.798754222864769 ], [ -94.850261871912551, 29.799125222583161 ], [ -94.850173871945714, 29.799605222511712 ], [ -94.850153871365379, 29.799718222985693 ], [ -94.849884871614691, 29.801043223445834 ], [ -94.849787871940606, 29.801523223267804 ], [ -94.84973887123769, 29.801797222926666 ], [ -94.849594871459828, 29.802622223463775 ], [ -94.849547871293197, 29.802897223842166 ], [ -94.849370871124762, 29.803871223988615 ], [ -94.849223871721918, 29.804687224010276 ], [ -94.849130871875417, 29.805175223736622 ], [ -94.849089871362295, 29.805392223986416 ], [ -94.848868871401848, 29.806595224089193 ], [ -94.848829871802181, 29.806794224083422 ], [ -94.848639871851901, 29.807767224148868 ], [ -94.848635871464552, 29.80778922488545 ], [ -94.848144871413368, 29.810468224797809 ], [ -94.848084871761401, 29.810778225346255 ], [ -94.847993871654765, 29.811259224985193 ], [ -94.847878871849147, 29.811863225293028 ], [ -94.847661871661728, 29.81299622550647 ], [ -94.847525871402283, 29.81372922584675 ], [ -94.847174871966317, 29.815634225806701 ], [ -94.847101871767137, 29.81603222643578 ], [ -94.84671187180308, 29.818148226854216 ], [ -94.846516871802919, 29.819212226689292 ], [ -94.846411870951087, 29.819810226881199 ], [ -94.846347871943152, 29.820183226773974 ], [ -94.846304871779139, 29.820461227117455 ], [ -94.846299871234478, 29.820514227280668 ], [ -94.846261871072514, 29.820927227018721 ], [ -94.84625087193605, 29.821136227664194 ], [ -94.846243870995679, 29.82155522712932 ], [ -94.846254871796063, 29.822048227649102 ], [ -94.846275871100957, 29.822320227406188 ], [ -94.846305871720276, 29.822592227959287 ], [ -94.846346871860348, 29.822856227536185 ], [ -94.846349871541406, 29.822900227403114 ], [ -94.846353871626036, 29.822946228139863 ], [ -94.846378871942917, 29.823218228070914 ], [ -94.846386871930903, 29.823308228052536 ], [ -94.846434872134651, 29.823806227643921 ], [ -94.846578871691165, 29.825299228172273 ], [ -94.846630872265067, 29.825800228438453 ], [ -94.846639871715212, 29.825879228169772 ], [ -94.846659871758163, 29.826032228610998 ], [ -94.846668871781674, 29.82611822853589 ], [ -94.846677871945545, 29.826198228561683 ], [ -94.849691872987165, 29.825934227942554 ], [ -94.85021087290832, 29.825899228135967 ], [ -94.850990872792934, 29.825832228176051 ], [ -94.851675872768467, 29.825773227849396 ], [ -94.85301087383823, 29.825657228046015 ], [ -94.854201873236391, 29.825560228231485 ], [ -94.854783874034325, 29.825511227577771 ], [ -94.855570873692386, 29.825431227944129 ], [ -94.858959874555097, 29.825174228133015 ], [ -94.859912874704364, 29.825095227238407 ], [ -94.860812875793201, 29.825013227392461 ], [ -94.864344876182813, 29.82469322750616 ], [ -94.864454876257781, 29.824683227010407 ], [ -94.865660876854335, 29.824589227655895 ], [ -94.865848876710999, 29.824575226990387 ], [ -94.866623876422167, 29.824515227335525 ], [ -94.867106877198495, 29.824479226910928 ], [ -94.870051877271266, 29.824230227261232 ], [ -94.870361877827591, 29.824201226842195 ], [ -94.871707878425511, 29.824079226755604 ], [ -94.871864878128378, 29.824063226751615 ], [ -94.871953878655162, 29.824053227156472 ], [ -94.872003878166211, 29.824048226937407 ], [ -94.87222187845525, 29.824030227291079 ], [ -94.872283878618731, 29.824025227213859 ], [ -94.872311878715223, 29.824023227474861 ], [ -94.8726608784321, 29.823992226642101 ], [ -94.872992878208962, 29.823964226947947 ], [ -94.874854878563994, 29.823778226883434 ], [ -94.875058878838146, 29.823759226753626 ], [ -94.876629879804497, 29.823620227087748 ], [ -94.878057880051927, 29.823499226770217 ], [ -94.880743880217409, 29.823250227032062 ], [ -94.880905880543978, 29.823235226902209 ], [ -94.882308880450651, 29.823131226169973 ], [ -94.883708881723095, 29.823010226064547 ], [ -94.885107881961162, 29.822882226650382 ], [ -94.886552882035019, 29.822760226457167 ], [ -94.888095882426484, 29.82262222580497 ], [ -94.889431882924526, 29.822494226433246 ], [ -94.88959088314391, 29.822480226186901 ], [ -94.891094883594164, 29.822358225876759 ], [ -94.893310883441146, 29.822170225809874 ], [ -94.893582883623097, 29.822147225740331 ], [ -94.893913884222002, 29.822122226064046 ], [ -94.894936884102023, 29.822026225912253 ], [ -94.896724884945129, 29.821860226058615 ], [ -94.89742288502373, 29.821802225703681 ], [ -94.898005884692836, 29.821745226035709 ], [ -94.898769885162821, 29.821672225381512 ], [ -94.898834885362788, 29.821666226074431 ], [ -94.899029885398804, 29.821651226049511 ], [ -94.899134884774398, 29.821630225537838 ], [ -94.899246884710692, 29.82161522583425 ], [ -94.899377885428436, 29.821598225283552 ], [ -94.900210885466279, 29.821496225580798 ], [ -94.901627886012605, 29.821363225911579 ], [ -94.903401885825318, 29.821206225785254 ], [ -94.904108886060044, 29.821172224974696 ], [ -94.906255886702354, 29.821132225382609 ], [ -94.906998887099434, 29.821142225369989 ], [ -94.907145887431938, 29.821144225145439 ], [ -94.907324886718982, 29.821154225145204 ], [ -94.907446887069625, 29.82116322521383 ], [ -94.907515887647278, 29.821161224842932 ], [ -94.907767887694718, 29.821168225614493 ], [ -94.908703887891193, 29.821196224989286 ], [ -94.909381887519544, 29.821213225093555 ], [ -94.90958288729523, 29.821219225132587 ], [ -94.909714887864652, 29.821224225648866 ], [ -94.909805888071318, 29.821228225236347 ], [ -94.909822887800217, 29.82122822478491 ], [ -94.909822888226586, 29.821201224818257 ], [ -94.909866887340982, 29.821118225179678 ], [ -94.909897887398714, 29.821032225367723 ], [ -94.909926888086986, 29.820929225015195 ], [ -94.90995588764639, 29.820826225523302 ], [ -94.909979887652483, 29.820739224919709 ], [ -94.910010887608749, 29.820629224990171 ], [ -94.910052888202614, 29.820485224774682 ], [ -94.910072887813016, 29.820147224688554 ], [ -94.909939887985814, 29.819887225200091 ], [ -94.909936888040093, 29.81987222536404 ], [ -94.909900888318163, 29.819649224846547 ], [ -94.909946888070507, 29.819587225008359 ], [ -94.909983887452753, 29.819535224977191 ], [ -94.910403887678868, 29.819537225223815 ], [ -94.910684887906939, 29.819451224622934 ], [ -94.910776887819267, 29.819345224725488 ], [ -94.910800888192867, 29.819232225161802 ], [ -94.910781888345909, 29.819128224513946 ], [ -94.910600887612716, 29.818929224909322 ], [ -94.91058088750961, 29.818907224643112 ], [ -94.910504887742263, 29.818856224567714 ], [ -94.910415888025653, 29.818797224768932 ], [ -94.91040888748698, 29.818777224341659 ], [ -94.910338887767992, 29.818567224758908 ], [ -94.91044688825113, 29.818416224486512 ], [ -94.910788887835764, 29.818389224317507 ], [ -94.91107088817165, 29.818340224558746 ], [ -94.911135888392508, 29.818174224462165 ], [ -94.91105588817237, 29.818004224327559 ], [ -94.91076688783042, 29.81766422424781 ], [ -94.910703887695803, 29.817494224205785 ], [ -94.910724887439173, 29.817254224571023 ], [ -94.910719887822694, 29.817023224188038 ], [ -94.910622887631718, 29.816867224361626 ], [ -94.910526888110951, 29.81676422403228 ], [ -94.910249887858697, 29.816611224359544 ], [ -94.910083888120184, 29.816464224068724 ], [ -94.910080887516216, 29.816300223972615 ], [ -94.910197887637409, 29.816202223748302 ], [ -94.9102078882228, 29.81618622392795 ], [ -94.910459888144473, 29.816080224031808 ], [ -94.910614888126972, 29.816016224489985 ], [ -94.910740887451354, 29.815857223781123 ], [ -94.910642888200528, 29.815657224039271 ], [ -94.91039788802486, 29.815399223691649 ], [ -94.910001888087123, 29.815168223803564 ], [ -94.909973887687016, 29.81515122350029 ], [ -94.909602887183723, 29.815030223802594 ], [ -94.90922688736562, 29.815035223524365 ], [ -94.908799887096379, 29.815146223552404 ], [ -94.908731887176685, 29.815142223596638 ], [ -94.90855188763723, 29.815135224306598 ], [ -94.908498887196345, 29.815061223539963 ], [ -94.908504887682639, 29.814941223636826 ], [ -94.908950886891759, 29.814061223733368 ], [ -94.909056887440059, 29.813761223529784 ], [ -94.909225887645377, 29.813631223441664 ], [ -94.909438886957844, 29.813598223247578 ], [ -94.909678887182565, 29.813632223220946 ], [ -94.910121887766323, 29.813910223804513 ], [ -94.910422888056289, 29.81402522382491 ], [ -94.910731887927966, 29.814028224029464 ], [ -94.910858887730427, 29.813936223864747 ], [ -94.910966887899448, 29.813778223957044 ], [ -94.910956887833748, 29.813724224005334 ], [ -94.910918888231336, 29.813502224010136 ], [ -94.910648887709002, 29.812827223874642 ], [ -94.91050188767079, 29.812504223356481 ], [ -94.910489887958647, 29.812478223135859 ], [ -94.910453887788989, 29.812400223336425 ], [ -94.91044288812661, 29.812374222924035 ], [ -94.910436887998728, 29.812342223555344 ], [ -94.910418887993558, 29.812247223017671 ], [ -94.910413887117812, 29.812216223705494 ], [ -94.910407887575218, 29.812186223084286 ], [ -94.910404887247751, 29.812173223746392 ], [ -94.91039788742205, 29.812134223587517 ], [ -94.910395887156284, 29.812121223161196 ], [ -94.910414887438932, 29.812089223637731 ], [ -94.910475887303647, 29.811993223368628 ], [ -94.910495887842856, 29.811962223020725 ], [ -94.910543887187742, 29.811953223295532 ], [ -94.910717887644992, 29.811922223658012 ], [ -94.911017888120085, 29.811940222839439 ], [ -94.911377887698919, 29.811994222972462 ], [ -94.911656887915797, 29.812214223130017 ], [ -94.911687887719978, 29.81249822295915 ], [ -94.911719888039329, 29.812871223009953 ], [ -94.911725887576452, 29.813155223168565 ], [ -94.911678888204662, 29.813372223919092 ], [ -94.911631887467706, 29.813619223629793 ], [ -94.911609887631059, 29.813806223991016 ], [ -94.911638888221361, 29.813977223573488 ], [ -94.911759888363193, 29.814058223246541 ], [ -94.9119828885798, 29.814054223939657 ], [ -94.912278888335763, 29.813886223349702 ], [ -94.91292588818969, 29.813242223862733 ], [ -94.913253888047734, 29.812923223762795 ], [ -94.913353888281506, 29.812743223217076 ], [ -94.913346887920127, 29.812407223008176 ], [ -94.913064887919504, 29.811962223598368 ], [ -94.91288088851141, 29.811771222885138 ], [ -94.912406888063416, 29.811606222688845 ], [ -94.912047887555858, 29.811402223533047 ], [ -94.911889887833865, 29.811195222680126 ], [ -94.911979887673013, 29.810962223385289 ], [ -94.912122887989241, 29.8108712228108 ], [ -94.91240288845492, 29.810710222658916 ], [ -94.912708887961216, 29.810571222535906 ], [ -94.912990888639399, 29.810574222476749 ], [ -94.913231887891271, 29.810601223213141 ], [ -94.913500888846329, 29.810576222676502 ], [ -94.91353088823017, 29.810574223048466 ], [ -94.913639888674894, 29.810483222623592 ], [ -94.913542888076023, 29.810305223139135 ], [ -94.913281888139593, 29.810107222612015 ], [ -94.913099887742732, 29.809826222614664 ], [ -94.913052887792063, 29.809752222323922 ], [ -94.912991887905648, 29.809674222914804 ], [ -94.912850888122392, 29.809494222325416 ], [ -94.912606887897496, 29.809295222897255 ], [ -94.912443888307578, 29.809036223043993 ], [ -94.912447888088025, 29.808790222713256 ], [ -94.912465887810853, 29.808753222644924 ], [ -94.912554888384534, 29.808572222704797 ], [ -94.91273988831351, 29.808412222402815 ], [ -94.912800888206988, 29.80837622284227 ], [ -94.912883888330683, 29.808328222753012 ], [ -94.913234887800115, 29.808278222815051 ], [ -94.913785887843758, 29.808031222527543 ], [ -94.914210887976367, 29.807771221914429 ], [ -94.914488888889124, 29.807603222495032 ], [ -94.914617888735606, 29.807460221926075 ], [ -94.914657888133931, 29.807414222493367 ], [ -94.914780888758742, 29.80727822227918 ], [ -94.914821888313696, 29.807233221952664 ], [ -94.915087888811669, 29.806914222090519 ], [ -94.915444888727805, 29.8067452219878 ], [ -94.915846889187833, 29.806717221700023 ], [ -94.916050888639177, 29.806632222051288 ], [ -94.916175888857595, 29.806458221650061 ], [ -94.916162888911671, 29.806394221833759 ], [ -94.916127888468608, 29.80622022177042 ], [ -94.915976889109601, 29.805923222160409 ], [ -94.915979888976764, 29.80563222159903 ], [ -94.916088888864394, 29.805481222048112 ], [ -94.916214889024829, 29.805374221370869 ], [ -94.916401888502222, 29.805312221395056 ], [ -94.916752889252237, 29.805292221597043 ], [ -94.91694788881081, 29.805185221339773 ], [ -94.917191889339662, 29.80495722185228 ], [ -94.917230888973492, 29.804740221902719 ], [ -94.917170888526059, 29.804546221662811 ], [ -94.916951888715062, 29.804303221041433 ], [ -94.916792889090033, 29.804044221640357 ], [ -94.916762888400797, 29.80381322133233 ], [ -94.916801889204606, 29.803611220989957 ], [ -94.916890889365973, 29.803303220990973 ], [ -94.917384889107723, 29.803169221489473 ], [ -94.917674889405902, 29.803135221086286 ], [ -94.917829889116931, 29.803163221350108 ], [ -94.917926889615842, 29.803205221136142 ], [ -94.918010889492734, 29.8032422208118 ], [ -94.918216889061597, 29.803277221027987 ], [ -94.918609889521363, 29.803196221535082 ], [ -94.91904988960529, 29.802921221047519 ], [ -94.919312889815714, 29.802783221114517 ], [ -94.919414889343329, 29.802766220703123 ], [ -94.919506889658038, 29.802773221099283 ], [ -94.91975788956303, 29.802791221100652 ], [ -94.920084890008354, 29.80283922098608 ], [ -94.920154890206661, 29.802858220772524 ], [ -94.920497889645191, 29.802952220644141 ], [ -94.921583889838473, 29.803123221317254 ], [ -94.922094890507125, 29.803135221286464 ], [ -94.92217489034465, 29.803137220834419 ], [ -94.922446890184261, 29.803013220685656 ], [ -94.922644890414617, 29.80281922073851 ], [ -94.922740890562409, 29.80272522139181 ], [ -94.922948890478551, 29.802386220854928 ], [ -94.923004890828508, 29.801944221164099 ], [ -94.923007890457612, 29.801922220731036 ], [ -94.922942890035642, 29.801610220877826 ], [ -94.922266890007066, 29.800738220928352 ], [ -94.922111889972882, 29.800494220811718 ], [ -94.922080889674305, 29.800196220278291 ], [ -94.922170889732698, 29.800000220754868 ], [ -94.922496890350573, 29.799600220159324 ], [ -94.922610890253196, 29.799480220707075 ], [ -94.922925890670683, 29.799153220116953 ], [ -94.923132889996452, 29.798814220341434 ], [ -94.923182890251496, 29.798698220329417 ], [ -94.923251890214829, 29.798539219657755 ], [ -94.923280890013061, 29.798475219597069 ], [ -94.92327789078378, 29.798094219791906 ], [ -94.923251889874578, 29.798032220229373 ], [ -94.923187890394175, 29.797872220201846 ], [ -94.922979889956054, 29.797763219589452 ], [ -94.922566890365459, 29.797664219795198 ], [ -94.922457890409802, 29.797621219894321 ], [ -94.922308890167969, 29.797563219486083 ], [ -94.922142889541121, 29.797409220131112 ], [ -94.922087889550895, 29.797223219943856 ], [ -94.922133890199305, 29.79695321945762 ], [ -94.922275890406382, 29.796757220170214 ], [ -94.922504889767637, 29.79664221981086 ], [ -94.923297889920065, 29.796466220042539 ], [ -94.923459890644196, 29.796447219367664 ], [ -94.923818890844515, 29.796406219347809 ], [ -94.924071890169742, 29.796201219615668 ], [ -94.924101890111928, 29.796117219108769 ], [ -94.924169890861819, 29.795931219087141 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 627, "Tract": "48481740901", "Area_SqMi": 92.751757843016279, "total_2009": 1128, "total_2010": 843, "total_2011": 1050, "total_2012": 1621, "total_2013": 1665, "total_2014": 1660, "total_2015": 1597, "total_2016": 1633, "total_2017": 1751, "total_2018": 1774, "total_2019": 1848, "total_2020": 1827, "age1": 437, "age2": 893, "age3": 597, "earn1": 300, "earn2": 696, "earn3": 931, "naics_s01": 74, "naics_s02": 115, "naics_s03": 9, "naics_s04": 71, "naics_s05": 24, "naics_s06": 205, "naics_s07": 449, "naics_s08": 278, "naics_s09": 0, "naics_s10": 2, "naics_s11": 20, "naics_s12": 15, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 571, "naics_s17": 21, "naics_s18": 50, "naics_s19": 8, "naics_s20": 0, "race1": 1683, "race2": 177, "race3": 11, "race4": 34, "race5": 0, "race6": 22, "ethnicity1": 1158, "ethnicity2": 769, "edu1": 317, "edu2": 463, "edu3": 489, "edu4": 221, "Shape_Length": 317220.05530289345, "Shape_Area": 2585760262.4432125, "total_2021": 1939, "total_2022": 1927 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.400965249104345, 29.379302084456377 ], [ -96.400946248668205, 29.379300084593478 ], [ -96.400738248574811, 29.379321084906799 ], [ -96.399339248369017, 29.379557085035533 ], [ -96.399081248258341, 29.379629084658674 ], [ -96.398843248211051, 29.379673085243059 ], [ -96.398673248316868, 29.379651085161353 ], [ -96.398579248365181, 29.379623084684212 ], [ -96.398127248544881, 29.379359084928591 ], [ -96.397946248660901, 29.379234084743732 ], [ -96.397713247700139, 29.379073084983659 ], [ -96.397519247656419, 29.378969084510121 ], [ -96.39738024800738, 29.378925084950232 ], [ -96.397173248301513, 29.37891908463796 ], [ -96.396351247651168, 29.37895208462902 ], [ -96.39613824771294, 29.378919084689123 ], [ -96.396025247299931, 29.378814085049537 ], [ -96.395968248163172, 29.378693084577286 ], [ -96.395905247281604, 29.378589084427375 ], [ -96.395705247521136, 29.378451084986303 ], [ -96.395579247484378, 29.378407084393846 ], [ -96.395366247795437, 29.378402085154107 ], [ -96.394945247144065, 29.378341084536849 ], [ -96.394675247054408, 29.378253084303303 ], [ -96.394512247045427, 29.378154085060608 ], [ -96.394443246882588, 29.378083084609173 ], [ -96.394380247380909, 29.37792908433774 ], [ -96.3943872472625, 29.377478084804444 ], [ -96.394374247535779, 29.377434084444836 ], [ -96.394324246944166, 29.377362084686261 ], [ -96.394042247037802, 29.377120084450375 ], [ -96.393747246610573, 29.376961084796168 ], [ -96.393515246587938, 29.376807084368469 ], [ -96.393207247301277, 29.376576084667899 ], [ -96.392975246523363, 29.37636708470912 ], [ -96.392793246310859, 29.376229084712737 ], [ -96.392630246404522, 29.37614108401532 ], [ -96.392366246960421, 29.376053084211083 ], [ -96.392028246905824, 29.375987084285253 ], [ -96.391808246694964, 29.375976084168922 ], [ -96.391664246245298, 29.375938084640964 ], [ -96.39160724598274, 29.375910084509936 ], [ -96.391513246364127, 29.375844084109115 ], [ -96.391362246019057, 29.37571208404205 ], [ -96.391344246301543, 29.375619084598309 ], [ -96.391350246827713, 29.375503084653328 ], [ -96.391319246566667, 29.375322084191414 ], [ -96.391268246510947, 29.375168083879483 ], [ -96.391262245951197, 29.375074084222216 ], [ -96.391269246123301, 29.375001084238043 ], [ -96.391238246031278, 29.374759084228689 ], [ -96.391244245813596, 29.374715083843661 ], [ -96.391238246094758, 29.37447408409319 ], [ -96.391257246785798, 29.374281084029782 ], [ -96.39130124598924, 29.374105084301704 ], [ -96.391288246754243, 29.373836083842729 ], [ -96.391294246437994, 29.3737920843509 ], [ -96.391276246184432, 29.373742084247109 ], [ -96.391226246663507, 29.373660084061367 ], [ -96.390843246025213, 29.373269083733387 ], [ -96.390680246128056, 29.373137083783988 ], [ -96.390554245917158, 29.373011083966023 ], [ -96.390485246472664, 29.372961084162089 ], [ -96.390354246205746, 29.372824083799017 ], [ -96.390310246181315, 29.37273608404389 ], [ -96.390216246346696, 29.37205408349184 ], [ -96.39009124586417, 29.37179608368416 ], [ -96.389902245326368, 29.371466083699051 ], [ -96.389764245377322, 29.371367083288757 ], [ -96.38969524550221, 29.371295083760117 ], [ -96.389645245498443, 29.371191083626154 ], [ -96.389601245508786, 29.371004083729321 ], [ -96.389620245915694, 29.370586082895102 ], [ -96.389621245587449, 29.369629083197516 ], [ -96.389590245645977, 29.369575083084062 ], [ -96.389496245385502, 29.369492082713688 ], [ -96.389445245985883, 29.369464083373245 ], [ -96.389144245182422, 29.369387083358628 ], [ -96.388837245411295, 29.369327082781769 ], [ -96.388611245087588, 29.369338082659798 ], [ -96.388448244893993, 29.369371082876597 ], [ -96.388102245332931, 29.369491083565897 ], [ -96.388052245548167, 29.369502082807543 ], [ -96.387989244833093, 29.369486082841327 ], [ -96.387914245356043, 29.369381082887603 ], [ -96.38773224543543, 29.368854083036862 ], [ -96.387676245315134, 29.368562083095572 ], [ -96.387670245545138, 29.368485083264428 ], [ -96.387601244636031, 29.368298083358859 ], [ -96.387532244596756, 29.368199083275123 ], [ -96.387337244660472, 29.36802908318505 ], [ -96.387250244839549, 29.367930082641763 ], [ -96.387181245267897, 29.367781082836721 ], [ -96.387168244479554, 29.367732082460293 ], [ -96.387168244502334, 29.367666082788787 ], [ -96.387181245449312, 29.367600083069988 ], [ -96.387218244888544, 29.36751208265634 ], [ -96.387281244712739, 29.367468082477149 ], [ -96.387438244643306, 29.367386083198241 ], [ -96.387815244886468, 29.367237082389764 ], [ -96.387922245335716, 29.367182082717068 ], [ -96.388248245485045, 29.367133082716052 ], [ -96.388286244751455, 29.367122082388459 ], [ -96.388355245593218, 29.367078082695453 ], [ -96.388480244857973, 29.366737082980791 ], [ -96.38860624560651, 29.366270082695582 ], [ -96.388663245641851, 29.366012082691814 ], [ -96.388688245319557, 29.365968082183169 ], [ -96.388744244791809, 29.36592908252339 ], [ -96.388970245116255, 29.365869082137824 ], [ -96.389096245856194, 29.365814082254563 ], [ -96.389184244979987, 29.365748082603201 ], [ -96.389253245413443, 29.365715082548906 ], [ -96.389316245215852, 29.365644082104982 ], [ -96.389410245745935, 29.365506082632773 ], [ -96.389423245918422, 29.365451081883801 ], [ -96.389423245193271, 29.365380082158872 ], [ -96.389398245031259, 29.365143082161161 ], [ -96.389297245005565, 29.36466008191017 ], [ -96.389191245207925, 29.364550081805827 ], [ -96.389153245795967, 29.36452208202773 ], [ -96.389090245026622, 29.364495082413399 ], [ -96.388996245815306, 29.364478082130798 ], [ -96.388632245424787, 29.364450082520431 ], [ -96.388369244986421, 29.364351081702772 ], [ -96.388268245541283, 29.364340082086184 ], [ -96.388130244718084, 29.364346082395095 ], [ -96.387923245508574, 29.364379081946971 ], [ -96.387860244846848, 29.364379081991466 ], [ -96.387773244833312, 29.36436208242533 ], [ -96.387685244613095, 29.364285082534956 ], [ -96.387628244605864, 29.364208081865488 ], [ -96.387622245013176, 29.364159082233574 ], [ -96.387635244561963, 29.363928081804701 ], [ -96.387622245166042, 29.363851082108415 ], [ -96.387516245370733, 29.363482081812563 ], [ -96.387334244909354, 29.363174081826148 ], [ -96.387296244548693, 29.363130082226927 ], [ -96.387158244975737, 29.363081081909449 ], [ -96.38685724481789, 29.363037082001441 ], [ -96.38646224442148, 29.362921081463135 ], [ -96.386136244187227, 29.36276708214573 ], [ -96.386054244179746, 29.362717081537543 ], [ -96.385891243937422, 29.362596081487652 ], [ -96.385847244929096, 29.362530081996937 ], [ -96.385841244741428, 29.362409081536459 ], [ -96.38587224470966, 29.362289081861057 ], [ -96.386073244450898, 29.362063081698267 ], [ -96.386419244076151, 29.361811081670592 ], [ -96.386488244430126, 29.361772081193838 ], [ -96.386563244916033, 29.36167308204686 ], [ -96.386607244594444, 29.361547081250045 ], [ -96.386601244573441, 29.361426081727171 ], [ -96.386576244281287, 29.361382081899333 ], [ -96.386143244070297, 29.361101081919429 ], [ -96.38606724475143, 29.361008081929768 ], [ -96.385992244403838, 29.360865081099515 ], [ -96.385967244206753, 29.360733081167293 ], [ -96.385986244681135, 29.360612081103209 ], [ -96.386024244667894, 29.360518081532422 ], [ -96.386501245000687, 29.36010608096192 ], [ -96.386890244424762, 29.359837081268282 ], [ -96.386947244982139, 29.359749081628433 ], [ -96.386959244692903, 29.359683081217931 ], [ -96.386966244437019, 29.35954608149234 ], [ -96.38694124416763, 29.359480081493231 ], [ -96.386878244869393, 29.359419081330312 ], [ -96.386803244987235, 29.35937008097557 ], [ -96.386727244976839, 29.359326080902758 ], [ -96.386652244155499, 29.359298081556805 ], [ -96.386552244498048, 29.359238081557923 ], [ -96.38628924453262, 29.358671081391588 ], [ -96.386255244771021, 29.358580080755029 ], [ -96.386044244648389, 29.358012081055833 ], [ -96.385975244708334, 29.357891080514623 ], [ -96.385887244731364, 29.357786080740389 ], [ -96.385756244686803, 29.357682080802839 ], [ -96.385655243806497, 29.357627080374773 ], [ -96.385555244043601, 29.357544081128736 ], [ -96.385499244404244, 29.357484081088121 ], [ -96.38546124389147, 29.3574180806329 ], [ -96.385461244022764, 29.35733008059929 ], [ -96.385530244247477, 29.357165081099442 ], [ -96.385675244118175, 29.357000080958763 ], [ -96.386114244671305, 29.356588080337222 ], [ -96.386246244285701, 29.356423080426307 ], [ -96.386277243808863, 29.356362080306994 ], [ -96.386309244619227, 29.356258080375319 ], [ -96.386309244039111, 29.356230080967435 ], [ -96.386277244673053, 29.356143080691201 ], [ -96.386209244354575, 29.356032080042382 ], [ -96.386177244669057, 29.355999080310838 ], [ -96.385757243770044, 29.355669080596922 ], [ -96.38568224363047, 29.355548080534199 ], [ -96.385682244499975, 29.355499080016425 ], [ -96.385694244516273, 29.355455080818235 ], [ -96.38573824378885, 29.355356080503313 ], [ -96.385958244573288, 29.355076080250942 ], [ -96.386109243984734, 29.354933080065816 ], [ -96.386228244596879, 29.354851080123421 ], [ -96.386335244633756, 29.354840080518084 ], [ -96.386579243786187, 29.354878080634631 ], [ -96.386749243841308, 29.354884080640876 ], [ -96.386881244299914, 29.354840080542061 ], [ -96.386994244616602, 29.354818080433759 ], [ -96.387044244487527, 29.354790080616898 ], [ -96.387069244278308, 29.35476308055879 ], [ -96.387157244062891, 29.354724079884523 ], [ -96.387301244851841, 29.354609079771784 ], [ -96.38735224464854, 29.354494080429582 ], [ -96.387358244482925, 29.354395080379312 ], [ -96.38757824460086, 29.353939080143707 ], [ -96.387816244303878, 29.353482079822911 ], [ -96.387873244124705, 29.353400079835442 ], [ -96.387898244713753, 29.353306079819589 ], [ -96.387860244986143, 29.353235079965224 ], [ -96.387459244403146, 29.352866079509443 ], [ -96.387164244701765, 29.352630079440267 ], [ -96.387120244716797, 29.352542079934743 ], [ -96.387089244665816, 29.352503080035039 ], [ -96.386656244122392, 29.352157079883362 ], [ -96.386612244597913, 29.352102079669852 ], [ -96.386594244238623, 29.352052079544137 ], [ -96.386569244214982, 29.35154707980379 ], [ -96.386475244357825, 29.35122207935969 ], [ -96.386462243804615, 29.351079079472402 ], [ -96.386406243841961, 29.350771079543307 ], [ -96.386394244144171, 29.350293079115218 ], [ -96.386356244448038, 29.350145079668469 ], [ -96.386250244027309, 29.349837078811781 ], [ -96.386237243641091, 29.349727079252094 ], [ -96.386244243542791, 29.349628078892099 ], [ -96.386212244365083, 29.349430078973914 ], [ -96.386212244264982, 29.349391079415788 ], [ -96.386231244357958, 29.349347079146057 ], [ -96.386395243915373, 29.349034079464449 ], [ -96.387004243695245, 29.348309079131511 ], [ -96.38709224423549, 29.348171079222929 ], [ -96.387136243663605, 29.347979079133822 ], [ -96.387123243970294, 29.347858078623812 ], [ -96.387098244135274, 29.347820078820174 ], [ -96.387060244384699, 29.347726078353833 ], [ -96.386979243719551, 29.347638079031967 ], [ -96.386879243542424, 29.347589079071014 ], [ -96.38665324377655, 29.347500078967322 ], [ -96.386515243495552, 29.347462078468059 ], [ -96.386289243954323, 29.347440078546818 ], [ -96.385994243748144, 29.347385078423677 ], [ -96.385850243985658, 29.347324078578776 ], [ -96.385699243905762, 29.347247078442528 ], [ -96.385555243748485, 29.347121078370389 ], [ -96.38542924394801, 29.346939078989301 ], [ -96.385367244083312, 29.346824078688797 ], [ -96.385285243667568, 29.34660407872769 ], [ -96.385260243308466, 29.346488078479087 ], [ -96.385229243119213, 29.346120078481199 ], [ -96.385248243730274, 29.346021078559954 ], [ -96.385292243351515, 29.34596607887396 ], [ -96.385556243140542, 29.345790078811593 ], [ -96.385694243170562, 29.345680078519418 ], [ -96.385738243355263, 29.345664078284404 ], [ -96.385851244018923, 29.345537078008565 ], [ -96.385888243847759, 29.345510078558931 ], [ -96.385926243463018, 29.345455078478164 ], [ -96.385914243399242, 29.345285078688036 ], [ -96.385895243292666, 29.345235078659254 ], [ -96.385889244167686, 29.345158078426227 ], [ -96.385851244084677, 29.345032078032293 ], [ -96.385763243229036, 29.344889078156985 ], [ -96.385713243632992, 29.344724078639871 ], [ -96.385694243619938, 29.344691077887546 ], [ -96.385663243328125, 29.34454207796588 ], [ -96.385657243871464, 29.344410077911341 ], [ -96.385663243581959, 29.344306077696935 ], [ -96.385582243798183, 29.343333077872764 ], [ -96.385538243186019, 29.343140078059037 ], [ -96.385463243224265, 29.342997078077026 ], [ -96.385407242991448, 29.342931077616939 ], [ -96.385294243390831, 29.342843077470654 ], [ -96.385218243386831, 29.342761077485608 ], [ -96.384886243471371, 29.342519077385834 ], [ -96.384748243796039, 29.34239207734166 ], [ -96.384610242841177, 29.342189077924708 ], [ -96.384491243661358, 29.34207907742563 ], [ -96.384435243503674, 29.342013077430451 ], [ -96.384372243305776, 29.341958077547293 ], [ -96.383908242943605, 29.341639077895671 ], [ -96.383720243361537, 29.341441077592403 ], [ -96.38368224348396, 29.341369077162312 ], [ -96.38367624304162, 29.341325077166722 ], [ -96.383664243231294, 29.340902077175738 ], [ -96.383620242518802, 29.340567077341394 ], [ -96.383595242660306, 29.340457077602476 ], [ -96.383551242455781, 29.340363077409872 ], [ -96.383438242698602, 29.340215077454086 ], [ -96.383375243031935, 29.340116077362278 ], [ -96.383338242948824, 29.339995077683813 ], [ -96.383319242434112, 29.339879077190059 ], [ -96.383288242815127, 29.339296076837968 ], [ -96.383294242414649, 29.339016076867672 ], [ -96.383458242694914, 29.338582076971839 ], [ -96.383816243083487, 29.337922076440556 ], [ -96.384142243045929, 29.337653076836393 ], [ -96.384500243406777, 29.337378077192394 ], [ -96.384745243282779, 29.337126076416315 ], [ -96.384789243472753, 29.337071076902429 ], [ -96.384864243446415, 29.336933076296447 ], [ -96.384933242585063, 29.336851076167928 ], [ -96.384959242636356, 29.336796076763388 ], [ -96.384996243410669, 29.336664077040716 ], [ -96.385028243048637, 29.336301076263847 ], [ -96.385047242951416, 29.336197076171562 ], [ -96.38507224263148, 29.336142076094948 ], [ -96.385147243474123, 29.336026076559129 ], [ -96.385229243360641, 29.335933076354316 ], [ -96.385260242790466, 29.3358780764712 ], [ -96.386101243801008, 29.335499076354886 ], [ -96.386133243465196, 29.335477076472085 ], [ -96.386158243527333, 29.335444076514278 ], [ -96.386195242870045, 29.335263076664862 ], [ -96.386195242826247, 29.335164076187731 ], [ -96.386177242824743, 29.335098076500643 ], [ -96.385631243655581, 29.334256075907007 ], [ -96.385562242667959, 29.334113075860348 ], [ -96.385462243266772, 29.333822076445529 ], [ -96.385456243263945, 29.333706076368507 ], [ -96.385443243482371, 29.333657076387066 ], [ -96.385444243442521, 29.333448075837925 ], [ -96.385475242986118, 29.333322075787841 ], [ -96.385513243266161, 29.333041076183886 ], [ -96.385513243325363, 29.332975076138002 ], [ -96.385419242539001, 29.332585075381715 ], [ -96.385444242999469, 29.332414075367375 ], [ -96.385614242638837, 29.331909075571421 ], [ -96.385620242955142, 29.331771075595945 ], [ -96.385664242653817, 29.331436075323968 ], [ -96.385671242738482, 29.331139075451677 ], [ -96.385621242792865, 29.330974075416641 ], [ -96.385542242769475, 29.330795075569995 ], [ -96.385495242614695, 29.330688075532656 ], [ -96.38532624277876, 29.330402075038389 ], [ -96.385238242399652, 29.330199075164096 ], [ -96.385213243117263, 29.330012075309138 ], [ -96.38522024232644, 29.32954507552347 ], [ -96.385302243334237, 29.329435075054391 ], [ -96.385810243070281, 29.329116074653864 ], [ -96.386575243636713, 29.328699074695603 ], [ -96.386670243459719, 29.328660074532877 ], [ -96.386789242946307, 29.328578075249592 ], [ -96.386877243648087, 29.328550075223532 ], [ -96.387015243695245, 29.32852307498889 ], [ -96.387159243226563, 29.32851707506704 ], [ -96.387222242799126, 29.32850607469916 ], [ -96.387441243663375, 29.328386074699512 ], [ -96.38761124380116, 29.328265074433578 ], [ -96.38751124293664, 29.328050074687546 ], [ -96.387442243294203, 29.327951074321646 ], [ -96.38730424320002, 29.327814074358898 ], [ -96.387203242988278, 29.327742074954894 ], [ -96.387122243673815, 29.32770407501522 ], [ -96.386865243009353, 29.32763207477268 ], [ -96.38625624276267, 29.327621075038085 ], [ -96.385622243247624, 29.327687074876081 ], [ -96.385553243020269, 29.327709074410031 ], [ -96.385459242872997, 29.327709074718616 ], [ -96.385403242787845, 29.327692074689516 ], [ -96.384675242274497, 29.327384074419491 ], [ -96.384387242642063, 29.327219074972771 ], [ -96.384224242210536, 29.327136074378263 ], [ -96.384148242048155, 29.327109075099258 ], [ -96.383935242150301, 29.327048074463782 ], [ -96.383735242869861, 29.327037074647766 ], [ -96.383396242061309, 29.326993074941285 ], [ -96.383164242482692, 29.326932075043338 ], [ -96.383051241731664, 29.326888074879758 ], [ -96.382900242426004, 29.326789074888609 ], [ -96.382480241489262, 29.3263820749603 ], [ -96.382386241511853, 29.326250074584859 ], [ -96.382336241756462, 29.326201074910564 ], [ -96.382305241712871, 29.326129074829019 ], [ -96.382160241547524, 29.325948074799339 ], [ -96.382066242126143, 29.325887074426358 ], [ -96.381282241695658, 29.3254530744126 ], [ -96.381050241489291, 29.325337074332658 ], [ -96.380517241776104, 29.325221074128944 ], [ -96.380260241169907, 29.325199074392135 ], [ -96.380084241237824, 29.325150074764657 ], [ -96.379984241320187, 29.325106074480562 ], [ -96.379915241074784, 29.325062074512271 ], [ -96.379727240738035, 29.324913074467108 ], [ -96.37904424085427, 29.324160074013079 ], [ -96.378918240532201, 29.324033074318837 ], [ -96.378605240919399, 29.323863074391078 ], [ -96.378216240377697, 29.323719074555179 ], [ -96.378003241159931, 29.32367507444803 ], [ -96.377758240181976, 29.323653074547149 ], [ -96.37760124111027, 29.323653073965797 ], [ -96.37731224009049, 29.323675073884701 ], [ -96.377055241015086, 29.323675074611725 ], [ -96.37688024006799, 29.323647074424091 ], [ -96.376786240080619, 29.323603074104017 ], [ -96.376560240656985, 29.323471074489518 ], [ -96.37644124028877, 29.323372074201853 ], [ -96.37632224055443, 29.323240074136745 ], [ -96.375989240686522, 29.322784073929466 ], [ -96.375858239719079, 29.32269607374689 ], [ -96.375651239744826, 29.322608074200868 ], [ -96.375563239914612, 29.322591074146807 ], [ -96.375469240182454, 29.32259107365276 ], [ -96.375130240102166, 29.322629073901467 ], [ -96.375006239593674, 29.322662073754817 ], [ -96.374768239934909, 29.322706073648163 ], [ -96.374455240000415, 29.322777074397312 ], [ -96.37430424000425, 29.322783074343302 ], [ -96.374160239768386, 29.322777074466334 ], [ -96.374053239964482, 29.322739073681593 ], [ -96.373946239615861, 29.322679074204842 ], [ -96.373714239322823, 29.322398074278457 ], [ -96.373607239288134, 29.322195073716625 ], [ -96.373488239543732, 29.321887074095997 ], [ -96.37344423957687, 29.321700073685022 ], [ -96.373462239237341, 29.321106074103838 ], [ -96.37352723976484, 29.32082707407573 ], [ -96.373619239798415, 29.320430073490865 ], [ -96.373606239347794, 29.320304073383312 ], [ -96.373462239284891, 29.320100073517786 ], [ -96.373418239080124, 29.320056073887166 ], [ -96.373349239481271, 29.319919073161071 ], [ -96.373368239626785, 29.319776073583412 ], [ -96.373437239005582, 29.319617073290878 ], [ -96.373480239653816, 29.319551073755385 ], [ -96.373612239582314, 29.319435073336937 ], [ -96.373781239576076, 29.319314073521063 ], [ -96.37415123952583, 29.319133073289503 ], [ -96.374521239467938, 29.31902807346334 ], [ -96.375007239778981, 29.318787073401836 ], [ -96.375352240156786, 29.318462073612437 ], [ -96.375396240251007, 29.318374072880161 ], [ -96.375453239878681, 29.318193073410747 ], [ -96.375553240297918, 29.318001072952399 ], [ -96.375729239653012, 29.317731072982273 ], [ -96.375836240410024, 29.317594072933833 ], [ -96.375980239620645, 29.317490072704604 ], [ -96.376106239586463, 29.317369072740906 ], [ -96.376213239616121, 29.317226073177643 ], [ -96.376263239851383, 29.317149073034518 ], [ -96.376282240370998, 29.317055073086102 ], [ -96.376282239536124, 29.316934072635227 ], [ -96.376232239550831, 29.316781073040676 ], [ -96.376144240097375, 29.316594072815125 ], [ -96.375787240266433, 29.315956072375496 ], [ -96.375141239548896, 29.315103072862293 ], [ -96.375010239388786, 29.314988072848664 ], [ -96.374356239478445, 29.314493072116719 ], [ -96.373973239290095, 29.3141410727772 ], [ -96.373653239718351, 29.313784072251767 ], [ -96.373471239401212, 29.313454072440614 ], [ -96.37340823918403, 29.313250071893211 ], [ -96.373132238831943, 29.312558072155063 ], [ -96.373019238828476, 29.312388072263186 ], [ -96.372931239135752, 29.31216807165929 ], [ -96.372460238734632, 29.311761071978982 ], [ -96.372348238679649, 29.311700071676 ], [ -96.372209239249358, 29.311624071695299 ], [ -96.372096238378802, 29.311481071474532 ], [ -96.372033238995385, 29.311338072290134 ], [ -96.37193923905582, 29.311173072092529 ], [ -96.371857238685934, 29.310959071642895 ], [ -96.371801238485062, 29.310838071655468 ], [ -96.37177623820898, 29.31070007186382 ], [ -96.371763238289148, 29.310513071908328 ], [ -96.371763238189018, 29.310304071269375 ], [ -96.371725238363965, 29.30977107175622 ], [ -96.371650238093011, 29.309507071701102 ], [ -96.37160623855037, 29.309447071888904 ], [ -96.371443238720531, 29.309337071316186 ], [ -96.371066238500404, 29.309145071496221 ], [ -96.37028823839934, 29.308650071538889 ], [ -96.369805237940355, 29.308359071344576 ], [ -96.369755237670745, 29.308288071482725 ], [ -96.369704238389886, 29.308123071587701 ], [ -96.36971723802651, 29.307798071032437 ], [ -96.369742238408122, 29.307644071499372 ], [ -96.3698042384014, 29.307501071484634 ], [ -96.369848238297905, 29.307435071098016 ], [ -96.370018237759169, 29.307281070781151 ], [ -96.37005523781977, 29.307210071224205 ], [ -96.37009323796255, 29.307117071051412 ], [ -96.370118237682831, 29.307001071334582 ], [ -96.37011223831432, 29.306913071249753 ], [ -96.370086238494054, 29.306715070785735 ], [ -96.36996123748537, 29.306374070514256 ], [ -96.369879237852231, 29.306237071101886 ], [ -96.36969123749202, 29.305979071271565 ], [ -96.369540238050405, 29.305731070766715 ], [ -96.369446237829592, 29.305605071137407 ], [ -96.369383237696368, 29.305478070767485 ], [ -96.369377238295527, 29.305380070400876 ], [ -96.369383237802836, 29.305330070296939 ], [ -96.369414237792967, 29.305237070350845 ], [ -96.369508237468295, 29.30453307018831 ], [ -96.369508237784729, 29.30441707039715 ], [ -96.369470237859133, 29.304225070590601 ], [ -96.369376237338216, 29.303967070695933 ], [ -96.369219238182396, 29.303730070751406 ], [ -96.369044237576475, 29.303538070366091 ], [ -96.368956238076649, 29.303456070469231 ], [ -96.368793237144786, 29.303346069910756 ], [ -96.368535237855554, 29.303263070485492 ], [ -96.368385237281473, 29.303225070204398 ], [ -96.368253237679085, 29.303165070584306 ], [ -96.368015237825475, 29.302978070668804 ], [ -96.367858237795545, 29.302769070503594 ], [ -96.367745237754718, 29.302532070354175 ], [ -96.367638237487725, 29.302142070449069 ], [ -96.367619237411034, 29.302016069988358 ], [ -96.367625236996801, 29.301851070069503 ], [ -96.367619237621383, 29.301774070006275 ], [ -96.367531236984746, 29.301609069925313 ], [ -96.367462237583496, 29.301537070465333 ], [ -96.367380237068303, 29.301494069567795 ], [ -96.367004237445428, 29.301334069683719 ], [ -96.366772236732331, 29.301268070278965 ], [ -96.366603237092576, 29.301235070268142 ], [ -96.366465237300517, 29.301225069711709 ], [ -96.366320237146425, 29.301225070027545 ], [ -96.366026236761968, 29.301302069672445 ], [ -96.365913237053178, 29.301302069595049 ], [ -96.365618236625622, 29.301230069577663 ], [ -96.365486236801772, 29.301164069687015 ], [ -96.365323236745397, 29.301049070026917 ], [ -96.365210236087023, 29.300956069906967 ], [ -96.365141236504371, 29.300879069983594 ], [ -96.364802236305493, 29.300637069718615 ], [ -96.364740236621103, 29.300582070266419 ], [ -96.364633235949285, 29.30045607006344 ], [ -96.36455123627826, 29.300302070245262 ], [ -96.364463235954261, 29.300186070028456 ], [ -96.364413236710547, 29.300137070266931 ], [ -96.364332235813251, 29.300076069623554 ], [ -96.364131235741311, 29.299966069578034 ], [ -96.363999235892948, 29.299922069568069 ], [ -96.363830235747201, 29.29991707023061 ], [ -96.363660235859726, 29.299862069609237 ], [ -96.363573236039613, 29.299818069469289 ], [ -96.363453236316886, 29.299714070002583 ], [ -96.363290236152096, 29.299505070048369 ], [ -96.363190236232171, 29.299263069775048 ], [ -96.363158235830937, 29.299164069404394 ], [ -96.363165235682146, 29.29910906928319 ], [ -96.3631962357654, 29.299043069459756 ], [ -96.363240236424701, 29.298983069512971 ], [ -96.363252235982586, 29.298911069431945 ], [ -96.363233235746605, 29.298724069436307 ], [ -96.363321236450801, 29.298405069305304 ], [ -96.363440236245381, 29.298136069249605 ], [ -96.363634236313118, 29.297768069733852 ], [ -96.363778236089303, 29.297531069622501 ], [ -96.363810236414736, 29.297383069433639 ], [ -96.363822235590945, 29.297273069291727 ], [ -96.363810236354581, 29.297141069112705 ], [ -96.363759236417437, 29.296915069440203 ], [ -96.363772235975958, 29.296833068972497 ], [ -96.36380923592408, 29.296729069343684 ], [ -96.363834235789611, 29.296597069265122 ], [ -96.363816235647377, 29.296454069357981 ], [ -96.363753236258418, 29.296256068753326 ], [ -96.363753235526431, 29.296173069466594 ], [ -96.363784235468273, 29.296063069354343 ], [ -96.364116235625573, 29.29552406921146 ], [ -96.364179236245448, 29.295310068875573 ], [ -96.364179236220849, 29.295227068696249 ], [ -96.364154236116775, 29.295112069255804 ], [ -96.364103236196215, 29.295002068816313 ], [ -96.363990235923723, 29.294903069100332 ], [ -96.363614236295973, 29.294722068356688 ], [ -96.363238235637965, 29.294590068589702 ], [ -96.363031235404534, 29.294546068699177 ], [ -96.362843235279314, 29.294535068549976 ], [ -96.36251723575964, 29.294552068744693 ], [ -96.362115234976073, 29.294393069091125 ], [ -96.361996235966089, 29.294376068336682 ], [ -96.361889235143266, 29.294382068857892 ], [ -96.361789235776243, 29.294420068654485 ], [ -96.361682234921432, 29.294442068499571 ], [ -96.361463235382047, 29.294420068543378 ], [ -96.361381235613806, 29.294437068852869 ], [ -96.361199235010929, 29.294519069106855 ], [ -96.360999234707833, 29.294536068830379 ], [ -96.360786235059507, 29.294465068825932 ], [ -96.360121235488734, 29.294140068362633 ], [ -96.359537235256511, 29.293926068614411 ], [ -96.359199235244986, 29.293833068574909 ], [ -96.359111234251785, 29.293794069120896 ], [ -96.35894123419979, 29.293514068262635 ], [ -96.358853235046368, 29.293459068262933 ], [ -96.358778235016118, 29.293432069070782 ], [ -96.358690234600488, 29.293355068379917 ], [ -96.358634234619046, 29.293201068462555 ], [ -96.358515234648848, 29.292970068154546 ], [ -96.358439234925498, 29.292789068528517 ], [ -96.3584082346553, 29.292690068554062 ], [ -96.358395234577827, 29.292602068809323 ], [ -96.358427234513059, 29.292503068216895 ], [ -96.35846423430425, 29.292431068034073 ], [ -96.358621234084779, 29.292305068133814 ], [ -96.358677234658799, 29.292239068834693 ], [ -96.358809234382107, 29.292035068104266 ], [ -96.358847234752858, 29.291953068423815 ], [ -96.35886523439315, 29.291865067882693 ], [ -96.358865234367414, 29.291788068633998 ], [ -96.358821234526246, 29.291722068513586 ], [ -96.35873423439844, 29.291639068505194 ], [ -96.358614234401571, 29.291579068105985 ], [ -96.358401234744917, 29.291557068069217 ], [ -96.358257234553193, 29.291552068196207 ], [ -96.358062234595479, 29.291431068661279 ], [ -96.357975234582241, 29.291398068519037 ], [ -96.35791223414914, 29.291398067988343 ], [ -96.357830234141971, 29.291414067860909 ], [ -96.357749233990958, 29.291453068223387 ], [ -96.357667234046417, 29.29151906837955 ], [ -96.357442234080295, 29.291744068295525 ], [ -96.357323233841143, 29.291821068390266 ], [ -96.357203233854548, 29.291942068658855 ], [ -96.357166233919358, 29.292096068810125 ], [ -96.357128234628377, 29.292168068704886 ], [ -96.357041233952003, 29.292212068124456 ], [ -96.356946234495737, 29.292228068029079 ], [ -96.356815233585266, 29.292234068148677 ], [ -96.356501234428364, 29.292217068410217 ], [ -96.35625023386234, 29.292267068253981 ], [ -96.356125233655504, 29.29226706824004 ], [ -96.35589323409836, 29.292185068754964 ], [ -96.35575523391077, 29.292174068545982 ], [ -96.355617233484296, 29.292185068760563 ], [ -96.355479233480722, 29.292223068640837 ], [ -96.355397234027791, 29.292229068592682 ], [ -96.355209233209862, 29.292207068112535 ], [ -96.354820233759298, 29.292091068459264 ], [ -96.354363233116459, 29.291938068190564 ], [ -96.354193233145011, 29.291905068295865 ], [ -96.354149233675386, 29.291888068776117 ], [ -96.354049233792821, 29.291883068871297 ], [ -96.353942232984508, 29.291888068367843 ], [ -96.353786232891252, 29.291932068807409 ], [ -96.353146233242995, 29.292284068233108 ], [ -96.353046232811593, 29.292306068286997 ], [ -96.352958232607662, 29.292312068608791 ], [ -96.352820233419862, 29.292290068699778 ], [ -96.352713232655418, 29.292241068495883 ], [ -96.352268232519137, 29.291971068607729 ], [ -96.352143232914557, 29.291878068703575 ], [ -96.352067232405233, 29.291790068554082 ], [ -96.35201123239267, 29.2916850687247 ], [ -96.35199223325462, 29.291587068913586 ], [ -96.352011233307749, 29.291411068629849 ], [ -96.351992233282928, 29.29134506875133 ], [ -96.35191623234067, 29.291180068229799 ], [ -96.351829233059476, 29.291053068745036 ], [ -96.351703233148186, 29.290971068679806 ], [ -96.35162823217, 29.290938068815439 ], [ -96.351559232595392, 29.290927068619435 ], [ -96.351314232394543, 29.290921068490903 ], [ -96.351233232093222, 29.290889068436659 ], [ -96.351189232074717, 29.290856068379327 ], [ -96.351120232321591, 29.290757068278836 ], [ -96.351076232368058, 29.29067406863512 ], [ -96.35105123217437, 29.29060306844676 ], [ -96.351038232391105, 29.290526068133438 ], [ -96.351038232092847, 29.290449067846076 ], [ -96.351107232995972, 29.290212067941916 ], [ -96.351151232667064, 29.290003067781807 ], [ -96.351151233016196, 29.289959068399462 ], [ -96.351138232758743, 29.289927068399088 ], [ -96.351088232083697, 29.289811067818064 ], [ -96.351025232534994, 29.289701068261774 ], [ -96.350950232231, 29.289613068308558 ], [ -96.350906232624098, 29.28960206784447 ], [ -96.35080623286548, 29.289608068469867 ], [ -96.35055523209941, 29.289729068505032 ], [ -96.350492232598768, 29.289729068078788 ], [ -96.350386232310015, 29.289679067710651 ], [ -96.35032323268004, 29.289624068404823 ], [ -96.350147231782771, 29.289383068302865 ], [ -96.349972232145163, 29.289190068397275 ], [ -96.349865231926501, 29.289113067745319 ], [ -96.349771231863656, 29.289119067652745 ], [ -96.349702232597039, 29.289135068117645 ], [ -96.349526231797014, 29.289201068385392 ], [ -96.349445231712124, 29.289218067653294 ], [ -96.349370232279185, 29.289223068453555 ], [ -96.349288231681982, 29.289212067730642 ], [ -96.349225232316812, 29.289179068498495 ], [ -96.349106231934528, 29.289069067913456 ], [ -96.349056231539421, 29.288981068186718 ], [ -96.348968232182784, 29.288817068353097 ], [ -96.348924232093566, 29.288756067631706 ], [ -96.348862232062359, 29.288696068377021 ], [ -96.348786232206876, 29.28865206835566 ], [ -96.348529231642644, 29.28855806842288 ], [ -96.348335231596437, 29.288454068313204 ], [ -96.348272231761399, 29.288399067988781 ], [ -96.348172231706485, 29.28828906788581 ], [ -96.348115231509937, 29.288201067603428 ], [ -96.348096231506489, 29.28808006824816 ], [ -96.34805223191637, 29.287959068253006 ], [ -96.348021231749399, 29.287899067569832 ], [ -96.347965231742407, 29.287833067858841 ], [ -96.34783923157346, 29.287728067829764 ], [ -96.347500231490301, 29.287476068145747 ], [ -96.347293231324286, 29.287239067707738 ], [ -96.34719923156851, 29.287151067632966 ], [ -96.347017231606799, 29.287019067810515 ], [ -96.346948231814281, 29.286959067377452 ], [ -96.346886231821983, 29.286821067638886 ], [ -96.346823231544676, 29.286624067952111 ], [ -96.346773231372254, 29.286371067999678 ], [ -96.34672223121683, 29.285909067429316 ], [ -96.346722231702074, 29.285785067507227 ], [ -96.346722231671876, 29.285700067785157 ], [ -96.346703230882738, 29.28543606765145 ], [ -96.346659230780944, 29.285062067056387 ], [ -96.346653230763621, 29.284892067372358 ], [ -96.346665230785391, 29.28481506740922 ], [ -96.346590230876203, 29.284584067015693 ], [ -96.346414231253789, 29.284034067030412 ], [ -96.346408231148018, 29.283979067012297 ], [ -96.346414231444243, 29.283831067489142 ], [ -96.346433231333265, 29.283760067075022 ], [ -96.346477230846887, 29.283661066804321 ], [ -96.346483231019121, 29.28356206688359 ], [ -96.346458230630006, 29.283358067230743 ], [ -96.346471231260253, 29.283072066680781 ], [ -96.346427230778787, 29.282720066484728 ], [ -96.346464230796997, 29.282429066688291 ], [ -96.346464230748992, 29.28222006692587 ], [ -96.346401231051686, 29.281995066943562 ], [ -96.34634523104944, 29.281390066922665 ], [ -96.346357230499024, 29.281198066287086 ], [ -96.346345230792139, 29.281115066093133 ], [ -96.34628823093017, 29.280972066840054 ], [ -96.346275231335454, 29.280912066369247 ], [ -96.346319230779926, 29.280516066445117 ], [ -96.346325231106277, 29.280236066590856 ], [ -96.346244231196465, 29.279807066023537 ], [ -96.346118230660963, 29.279406066108677 ], [ -96.346105230708815, 29.278696066213374 ], [ -96.346062230317798, 29.278443065904764 ], [ -96.345993231046108, 29.278130066299376 ], [ -96.345848231042979, 29.277547066056499 ], [ -96.345685230705925, 29.277064065940149 ], [ -96.345453230179643, 29.276289065254659 ], [ -96.345421230761403, 29.276239065846564 ], [ -96.345321230531951, 29.275387065101178 ], [ -96.345346230399969, 29.275074064969619 ], [ -96.34532122997156, 29.274865065537568 ], [ -96.345333229913336, 29.274359065215208 ], [ -96.345282230402944, 29.273298064722468 ], [ -96.345245229793861, 29.2722040646096 ], [ -96.345219229899428, 29.270208064114129 ], [ -96.345250230203234, 29.269274063819314 ], [ -96.345206230039622, 29.268268063680029 ], [ -96.34519923053594, 29.267855063981091 ], [ -96.345162230098367, 29.267735063742219 ], [ -96.345111230509474, 29.26764106359553 ], [ -96.345086230452523, 29.267559064244292 ], [ -96.345086230508414, 29.267482063640117 ], [ -96.345306230325775, 29.266970063382917 ], [ -96.34538122966255, 29.266838063899954 ], [ -96.345425230132804, 29.266739063898925 ], [ -96.345525229633182, 29.266470063992521 ], [ -96.345523230435347, 29.266386063984122 ], [ -96.34551222979745, 29.266019063645427 ], [ -96.345500229939759, 29.265887063423296 ], [ -96.345543230161155, 29.265316062915119 ], [ -96.345606230502028, 29.265162062948267 ], [ -96.345644230094564, 29.265096063603064 ], [ -96.345700230403082, 29.265024063130454 ], [ -96.345738230563555, 29.264947063424227 ], [ -96.345750230341068, 29.264881062813391 ], [ -96.345750229668297, 29.264832063060702 ], [ -96.345719230363471, 29.264727062799036 ], [ -96.345675230564822, 29.264650062776187 ], [ -96.345568230256916, 29.264507062987693 ], [ -96.345531230353686, 29.264441063599346 ], [ -96.345524230427429, 29.264392063511718 ], [ -96.34553723016198, 29.264205062744683 ], [ -96.345574230332147, 29.264084063444173 ], [ -96.345656229959786, 29.263897063316715 ], [ -96.345643230093714, 29.263749063417272 ], [ -96.345574229809799, 29.263402062576588 ], [ -96.34556822964764, 29.263325062541742 ], [ -96.345624229902924, 29.262930062671202 ], [ -96.345712229960426, 29.262759062409771 ], [ -96.345787230344982, 29.262550062978583 ], [ -96.345806229787357, 29.262352062988384 ], [ -96.345793230076026, 29.262116062982198 ], [ -96.345642229639736, 29.261154062849293 ], [ -96.345667229468958, 29.261038062161454 ], [ -96.34571822953906, 29.260918062609356 ], [ -96.345724229402663, 29.260857062749 ], [ -96.345711229449222, 29.260758062556722 ], [ -96.345724229486322, 29.260637062017889 ], [ -96.34577422966251, 29.260505062012303 ], [ -96.345780229965399, 29.260434062737868 ], [ -96.345780229500249, 29.260357062063395 ], [ -96.345724230384121, 29.260192062196193 ], [ -96.345711229519779, 29.260126062133498 ], [ -96.345730229957596, 29.259873062155386 ], [ -96.345830230192888, 29.259604061947726 ], [ -96.345918229418103, 29.259505062036325 ], [ -96.346031229534347, 29.259439062507251 ], [ -96.346112229509117, 29.259428062282915 ], [ -96.346288229589561, 29.25943306227925 ], [ -96.346670229740113, 29.259543062419898 ], [ -96.346758229695425, 29.259554061895717 ], [ -96.346896230070385, 29.259554062074805 ], [ -96.346946230483795, 29.259543061915405 ], [ -96.347009230582245, 29.259510062439908 ], [ -96.3470462303288, 29.259455062120121 ], [ -96.347071229807241, 29.259378062423451 ], [ -96.347103230513696, 29.259103062099836 ], [ -96.34711523005376, 29.259042062405811 ], [ -96.347146230363691, 29.258977062422559 ], [ -96.347203230295477, 29.258938062436627 ], [ -96.347322229778896, 29.258900062044631 ], [ -96.347566230099062, 29.258839061663515 ], [ -96.3476422301638, 29.258806062353486 ], [ -96.347704230081519, 29.25875106181984 ], [ -96.347873230082271, 29.258317061742826 ], [ -96.348017230701828, 29.257871062095347 ], [ -96.34813623013271, 29.257382061922577 ], [ -96.348299230850586, 29.256772061817614 ], [ -96.348318230856862, 29.256667061728042 ], [ -96.348318230677265, 29.256398061218221 ], [ -96.348305230051494, 29.256178060971997 ], [ -96.348318230070788, 29.255997060961409 ], [ -96.348355230800678, 29.255887061252263 ], [ -96.348405230520584, 29.25582606166585 ], [ -96.348562230883871, 29.255678061437585 ], [ -96.348662230380185, 29.255617061350758 ], [ -96.348775230511535, 29.255502061621492 ], [ -96.348813230331274, 29.255447060859403 ], [ -96.348850230052776, 29.255331060806967 ], [ -96.348806230152121, 29.255194061565891 ], [ -96.348524230483036, 29.254847061573649 ], [ -96.34837422999658, 29.254644061453739 ], [ -96.348280229937302, 29.254369061454142 ], [ -96.348273230746869, 29.254270060759357 ], [ -96.348279229914453, 29.25414406135971 ], [ -96.348311230255348, 29.254017060937759 ], [ -96.348398230330702, 29.253836061306032 ], [ -96.348474230747698, 29.25372106073582 ], [ -96.348580230418321, 29.253622060583126 ], [ -96.34873723059664, 29.25354506067 ], [ -96.348906230443831, 29.25349006069202 ], [ -96.348988230117797, 29.253435061019921 ], [ -96.349057230530974, 29.25337406079559 ], [ -96.349163230054344, 29.253209060764693 ], [ -96.34925723019002, 29.253006060959571 ], [ -96.349595230585919, 29.252076060086715 ], [ -96.349839230201624, 29.251444060804666 ], [ -96.349908230896801, 29.250867060572887 ], [ -96.34988323043784, 29.250773060640871 ], [ -96.349827230777464, 29.250691060500774 ], [ -96.349745230002483, 29.25063605976219 ], [ -96.34948222999806, 29.250499060519246 ], [ -96.349381230615137, 29.250438059857316 ], [ -96.349300230732197, 29.250339060146036 ], [ -96.349225230233898, 29.250213060534922 ], [ -96.349131230130524, 29.250004060400205 ], [ -96.348999230567912, 29.249902060010896 ], [ -96.348992230208154, 29.249650059680388 ], [ -96.349018230565889, 29.249386059824179 ], [ -96.349036230651564, 29.249336059553997 ], [ -96.349149230101943, 29.249149059893629 ], [ -96.349187229834172, 29.249116059752854 ], [ -96.34935623034788, 29.249061060239967 ], [ -96.349644230835111, 29.248935059887465 ], [ -96.349713230117828, 29.248863059877166 ], [ -96.349707230784787, 29.248786059949044 ], [ -96.349644230185206, 29.248693060063555 ], [ -96.349525230470732, 29.248544059789765 ], [ -96.349444230689073, 29.248473060135503 ], [ -96.349356230005, 29.248451060052147 ], [ -96.349193230235983, 29.248440059346144 ], [ -96.349049230116563, 29.248468060213121 ], [ -96.34893023029413, 29.248479060142955 ], [ -96.348829230080796, 29.248468059731998 ], [ -96.348779229803299, 29.248457059778023 ], [ -96.348685230389052, 29.248418059447001 ], [ -96.34862222987779, 29.248374059769731 ], [ -96.348604229623064, 29.248352059413559 ], [ -96.348591230463512, 29.248286059574649 ], [ -96.348635230387544, 29.24802205935346 ], [ -96.348622230373351, 29.247857059831251 ], [ -96.348509230273265, 29.247665060037274 ], [ -96.348465230303546, 29.247550059401803 ], [ -96.348465229856572, 29.247473059546149 ], [ -96.348522229773266, 29.247396059621721 ], [ -96.348622230336474, 29.247385059536374 ], [ -96.348823229641866, 29.247330059845648 ], [ -96.348841230502373, 29.247313059800483 ], [ -96.348854230541761, 29.247198059961683 ], [ -96.348873230331463, 29.247159059189805 ], [ -96.348973229751309, 29.247088059543774 ], [ -96.349029230658786, 29.24707105958592 ], [ -96.349061230461132, 29.247049059694284 ], [ -96.349086229924382, 29.247011059076957 ], [ -96.349111230080254, 29.246950059512308 ], [ -96.349111230075792, 29.246747059104553 ], [ -96.349123230459554, 29.246725059595168 ], [ -96.349180230317941, 29.246675059391599 ], [ -96.349468230065881, 29.246483059116549 ], [ -96.349700230073154, 29.246373059761208 ], [ -96.349738230656826, 29.246340059493019 ], [ -96.349775230090842, 29.246296059709383 ], [ -96.349850230467368, 29.246125059223036 ], [ -96.349882230010223, 29.246092059674805 ], [ -96.349926230128148, 29.245988058923771 ], [ -96.349963230586155, 29.245933059649261 ], [ -96.350157230606257, 29.245801058950764 ], [ -96.350270230481698, 29.245752059336144 ], [ -96.350358230401895, 29.245658059532204 ], [ -96.350421230285278, 29.245614059114157 ], [ -96.350458230725252, 29.245603059355364 ], [ -96.350615230930245, 29.24560905926354 ], [ -96.350671230392379, 29.245576058980649 ], [ -96.35069023039749, 29.245477058694352 ], [ -96.350703230495782, 29.245262059005562 ], [ -96.350659230125615, 29.245147059080509 ], [ -96.350652230891498, 29.245081058617867 ], [ -96.350659229983933, 29.245042059218086 ], [ -96.350684230548879, 29.244993058874165 ], [ -96.35084023055623, 29.244822058988873 ], [ -96.350859230892141, 29.244707059055678 ], [ -96.350809230047048, 29.244619059073099 ], [ -96.35065923007366, 29.244471059280681 ], [ -96.3504832301834, 29.244273059041998 ], [ -96.350414230509202, 29.244212058606834 ], [ -96.350245230791813, 29.24408605873823 ], [ -96.350025230747789, 29.244042058578181 ], [ -96.349630229862697, 29.243833058633477 ], [ -96.34939223002911, 29.243723058411433 ], [ -96.349123229892413, 29.2436460589422 ], [ -96.349054229519822, 29.243668058738809 ], [ -96.348966229549816, 29.243850058839666 ], [ -96.348947230459032, 29.243872059071659 ], [ -96.348909229563546, 29.24388805853502 ], [ -96.348728230267042, 29.243905058457543 ], [ -96.348696230391582, 29.243861058750067 ], [ -96.348696229828732, 29.243800058495548 ], [ -96.348652230157811, 29.243751059159649 ], [ -96.348632230015895, 29.243746059292572 ], [ -96.348546229609312, 29.243784058855397 ], [ -96.348515230080793, 29.243789058981537 ], [ -96.348502230071475, 29.243767058742005 ], [ -96.348508230206832, 29.243465058698174 ], [ -96.348502230225762, 29.243443058674391 ], [ -96.348370229803436, 29.243234059191046 ], [ -96.348257230171754, 29.243113058662551 ], [ -96.348182229666918, 29.243053058646463 ], [ -96.348182229392549, 29.242937058332473 ], [ -96.348195230228811, 29.242833058880304 ], [ -96.348157230012674, 29.242657058867231 ], [ -96.348075229543866, 29.242569058498454 ], [ -96.347912230060075, 29.242503058684534 ], [ -96.347850229595096, 29.24249805898825 ], [ -96.347605229770394, 29.242553059004347 ], [ -96.347574230021991, 29.24254705852816 ], [ -96.347499229640022, 29.242492058279968 ], [ -96.347354229509932, 29.242085058585239 ], [ -96.34729222975848, 29.242003058722098 ], [ -96.347210229511489, 29.24193705854389 ], [ -96.347129229436376, 29.241887058903629 ], [ -96.347035229362021, 29.241805058472114 ], [ -96.346997229773308, 29.24172805874716 ], [ -96.346985229778326, 29.241618058085628 ], [ -96.346997229538744, 29.241404058496812 ], [ -96.346941229817304, 29.24126605859502 ], [ -96.346941229056597, 29.241156058423687 ], [ -96.347010229438297, 29.241024058679461 ], [ -96.347035229192826, 29.241008058289456 ], [ -96.347097229251062, 29.241002057999609 ], [ -96.347179229704253, 29.241046058425091 ], [ -96.347216229906053, 29.241057058528295 ], [ -96.347630229631463, 29.241063057975328 ], [ -96.347680229975467, 29.24104605839284 ], [ -96.347755229470096, 29.240986058238715 ], [ -96.347831229166133, 29.240826058283762 ], [ -96.347843229684202, 29.240777057963502 ], [ -96.347812229449985, 29.240694058503546 ], [ -96.347774229381642, 29.240650058305349 ], [ -96.347611229865777, 29.24054005834375 ], [ -96.347605229126117, 29.240496058399636 ], [ -96.347617229124879, 29.240474058106919 ], [ -96.347718229725686, 29.240408057884025 ], [ -96.347761229129816, 29.240359057803644 ], [ -96.347793229492467, 29.240304058020122 ], [ -96.347843229722855, 29.240139057833847 ], [ -96.347893229654687, 29.240029057698749 ], [ -96.34793122973268, 29.239886057793179 ], [ -96.347931229467619, 29.239826058442794 ], [ -96.3478932299452, 29.239672058123684 ], [ -96.34789322919211, 29.239562057951613 ], [ -96.348012229656078, 29.239150058050065 ], [ -96.348024229841229, 29.239078057816588 ], [ -96.348018229128868, 29.23896305815806 ], [ -96.348006229134342, 29.238886057796847 ], [ -96.347962229717552, 29.238776057871497 ], [ -96.347748228958594, 29.238534057902626 ], [ -96.347723229237445, 29.23851705818452 ], [ -96.3476982291849, 29.238457057877245 ], [ -96.347661229312209, 29.238253057563021 ], [ -96.347698229452632, 29.237786057319457 ], [ -96.347698229679651, 29.23769305772451 ], [ -96.347679229585339, 29.237577057502985 ], [ -96.347667229732309, 29.237335057708922 ], [ -96.347692229882369, 29.237225057577035 ], [ -96.347742229798371, 29.237121057692153 ], [ -96.347817229826006, 29.237066057716053 ], [ -96.347880229233354, 29.237033057101481 ], [ -96.347961229783294, 29.237022057896286 ], [ -96.348018229911446, 29.237027057423802 ], [ -96.348087229518327, 29.237049057928701 ], [ -96.348181229213026, 29.237044057434556 ], [ -96.348344229895403, 29.236939057579104 ], [ -96.348657229979807, 29.23667505770343 ], [ -96.348720229239987, 29.236598056987063 ], [ -96.348876229914765, 29.236362057188579 ], [ -96.348964230155801, 29.236269057470572 ], [ -96.349083230146775, 29.236115057368455 ], [ -96.349302229521527, 29.235906057044215 ], [ -96.349465229436049, 29.235669056720777 ], [ -96.349584230012482, 29.235515057103463 ], [ -96.349697230277897, 29.235323056831135 ], [ -96.349716229364603, 29.235268057173553 ], [ -96.349722229464405, 29.235207057022045 ], [ -96.34972223013088, 29.235130057092036 ], [ -96.349703230123325, 29.235042057223129 ], [ -96.349678229970237, 29.234998056915071 ], [ -96.349666229520182, 29.234927056879911 ], [ -96.349659229868323, 29.234867057358159 ], [ -96.349660229357696, 29.234829056964426 ], [ -96.348906229935054, 29.234842057027421 ], [ -96.342905227832546, 29.234948057157052 ], [ -96.335865226083243, 29.235072057782126 ], [ -96.334768226490198, 29.235079057235961 ], [ -96.334587225786123, 29.227031055491658 ], [ -96.334554225263759, 29.225473056015137 ], [ -96.334552225271082, 29.225394055401114 ], [ -96.334547225206222, 29.225142055821198 ], [ -96.334546225100539, 29.225099055826746 ], [ -96.334505225920424, 29.224606055464626 ], [ -96.334477225286747, 29.223167055389631 ], [ -96.334448225862857, 29.221695054553223 ], [ -96.334401225473087, 29.219887054867375 ], [ -96.33431522509072, 29.216630053345334 ], [ -96.334270225059285, 29.21493105349407 ], [ -96.334267224715077, 29.214762053552075 ], [ -96.334262224965499, 29.214096053380384 ], [ -96.334257225235461, 29.213179053052588 ], [ -96.334237224856963, 29.212215053082613 ], [ -96.334212225267891, 29.211300052456266 ], [ -96.33420822537407, 29.211134052424899 ], [ -96.334205225153568, 29.21100005291343 ], [ -96.334137225077853, 29.206300052098257 ], [ -96.334976225016675, 29.206307051305469 ], [ -96.334810224547539, 29.199176050351571 ], [ -96.334637223696632, 29.191767048501454 ], [ -96.33455422353336, 29.188922048413733 ], [ -96.33443622414795, 29.185282047759195 ], [ -96.334360224132098, 29.181895046433677 ], [ -96.334285223490099, 29.178195045578022 ], [ -96.334208223529131, 29.177178045387315 ], [ -96.334120222981269, 29.172014045121585 ], [ -96.333938223003557, 29.166163043441273 ], [ -96.333875222342385, 29.161735042704152 ], [ -96.333869222481468, 29.161292042379326 ], [ -96.333863222704451, 29.160845042756261 ], [ -96.333860222181855, 29.160624042135669 ], [ -96.333854222768664, 29.160195042407487 ], [ -96.33384622283387, 29.159612042524422 ], [ -96.333842222312583, 29.159397041992406 ], [ -96.3338332226093, 29.158907041649403 ], [ -96.333816222475505, 29.157940041626244 ], [ -96.333795222329726, 29.156815041737097 ], [ -96.333788222785003, 29.156379041356331 ], [ -96.333779222884914, 29.155922041470184 ], [ -96.333811222952434, 29.155871041485369 ], [ -96.333673222630267, 29.155705041700589 ], [ -96.33348222240798, 29.155461041385145 ], [ -96.327865220742595, 29.158965041833159 ], [ -96.326900220671774, 29.159574042341088 ], [ -96.323550219621509, 29.161676043018467 ], [ -96.321514220137999, 29.162966042899768 ], [ -96.31703521853116, 29.165776043678335 ], [ -96.314721217936494, 29.167233044336143 ], [ -96.313987218253843, 29.167719044875799 ], [ -96.313639217848106, 29.167985044306878 ], [ -96.312707217365599, 29.168757045124394 ], [ -96.311972217036654, 29.169213044839406 ], [ -96.311728217912702, 29.169352044775373 ], [ -96.311450217715162, 29.169460045278143 ], [ -96.311117216857994, 29.169544045057858 ], [ -96.311028217209909, 29.169567045137043 ], [ -96.310604217047512, 29.169756045255077 ], [ -96.310331217472481, 29.169959045293155 ], [ -96.307501216593693, 29.171694045346673 ], [ -96.307201216029199, 29.171878045822684 ], [ -96.306802216763387, 29.172125045906139 ], [ -96.305536215964153, 29.172914045987572 ], [ -96.305003215784623, 29.173243046185167 ], [ -96.304516215951168, 29.173543045667078 ], [ -96.303943215854744, 29.173896046001421 ], [ -96.303696215808898, 29.174050045647896 ], [ -96.30318121554707, 29.174368045958385 ], [ -96.302592214896407, 29.174741046313503 ], [ -96.302259215002152, 29.174951046113545 ], [ -96.30196021514891, 29.175139046551127 ], [ -96.30192421489113, 29.175162046168118 ], [ -96.301709214758375, 29.175298046702483 ], [ -96.301364215380175, 29.175517046365115 ], [ -96.300943214545541, 29.175768046974749 ], [ -96.300746214610612, 29.175885046844659 ], [ -96.300554214664999, 29.176000046544278 ], [ -96.300505214821769, 29.176029046263995 ], [ -96.300407215028471, 29.176087046551263 ], [ -96.300109214784669, 29.176262046298923 ], [ -96.299271214850194, 29.176801046583627 ], [ -96.298983214755978, 29.176987046771799 ], [ -96.298070214209829, 29.177587046819902 ], [ -96.297504214189885, 29.177944046856901 ], [ -96.297167214192598, 29.178157047172594 ], [ -96.296891213890092, 29.178328047344376 ], [ -96.296457214018616, 29.178605047060756 ], [ -96.296375213487295, 29.178658047528533 ], [ -96.296098214333853, 29.17883804705496 ], [ -96.295882213790605, 29.178978047235443 ], [ -96.294248212980733, 29.179985047799153 ], [ -96.293877213425091, 29.180213048050248 ], [ -96.29361021339281, 29.180378048096866 ], [ -96.293260213142872, 29.180593047427489 ], [ -96.292465212774616, 29.181082047573422 ], [ -96.292109212899348, 29.181301047713887 ], [ -96.291306212658284, 29.181795048496145 ], [ -96.2903992127045, 29.182370048661863 ], [ -96.288074212566613, 29.183846048219156 ], [ -96.287501211688962, 29.184209048903465 ], [ -96.287088211996291, 29.184470048486393 ], [ -96.286980211859444, 29.184540049196812 ], [ -96.286790211887933, 29.184661048979816 ], [ -96.286234211838533, 29.185014048844028 ], [ -96.285993211842026, 29.185162049114343 ], [ -96.286051211790124, 29.185242048663461 ], [ -96.286757211995777, 29.186108049370333 ], [ -96.286856211925326, 29.18622904883237 ], [ -96.287348211692532, 29.186831049606742 ], [ -96.289748212485335, 29.189771050095803 ], [ -96.291886213384529, 29.192402050409665 ], [ -96.29242221378135, 29.193061050614972 ], [ -96.292657213294461, 29.193422050684344 ], [ -96.292956213253177, 29.193866050365429 ], [ -96.293167213625892, 29.194270050552237 ], [ -96.293319213777863, 29.194624050826619 ], [ -96.293348214273749, 29.194690051072804 ], [ -96.293429213514045, 29.194915050349035 ], [ -96.29365721363078, 29.195545050566761 ], [ -96.293765214255671, 29.196056050796649 ], [ -96.293881213595299, 29.196773051169842 ], [ -96.293912214456313, 29.197618051145536 ], [ -96.294014214022937, 29.201134052276597 ], [ -96.294026214183717, 29.201685052269152 ], [ -96.294144214875757, 29.207262053403728 ], [ -96.294140214780285, 29.207754052916329 ], [ -96.294073214788312, 29.208420053494322 ], [ -96.294031214123933, 29.208736053641406 ], [ -96.293968214942481, 29.209041053814307 ], [ -96.293900214886875, 29.209308053473784 ], [ -96.293815214530554, 29.209560053779857 ], [ -96.293713214168974, 29.209840054079347 ], [ -96.293650214995395, 29.209998054216207 ], [ -96.293475214683454, 29.210440053741227 ], [ -96.293283214111113, 29.210865053568682 ], [ -96.293024214470677, 29.211261053877745 ], [ -96.292599214867479, 29.211859054573051 ], [ -96.292313214600924, 29.212262054195762 ], [ -96.29215821426493, 29.212480054028862 ], [ -96.291824214620391, 29.21293405471393 ], [ -96.29118021365538, 29.213826055055343 ], [ -96.290696214159581, 29.214516054833759 ], [ -96.289747214012365, 29.215797055407691 ], [ -96.288412213430618, 29.217598055239975 ], [ -96.287659213200854, 29.218333055322141 ], [ -96.287496213108824, 29.218492055808891 ], [ -96.2855472129216, 29.219699055767304 ], [ -96.284867212434492, 29.220150056566975 ], [ -96.284416213085095, 29.220421056202962 ], [ -96.284292213156107, 29.220495056233567 ], [ -96.282768212092762, 29.221411056336059 ], [ -96.28171321159526, 29.222084056832859 ], [ -96.281337212482541, 29.222324057017619 ], [ -96.28101021214971, 29.222533056779934 ], [ -96.280953212236071, 29.222570056623496 ], [ -96.280594211973551, 29.222800057143967 ], [ -96.28042321198204, 29.222910056932818 ], [ -96.28017821166479, 29.223067057145837 ], [ -96.279821211768308, 29.22329505664575 ], [ -96.279346211202181, 29.223599056877415 ], [ -96.27871721158948, 29.224001057505046 ], [ -96.278200211470562, 29.224323057391075 ], [ -96.277036211154041, 29.225030057049398 ], [ -96.276351210468093, 29.225446057044248 ], [ -96.275925210841208, 29.225705057851481 ], [ -96.27491121083915, 29.226321057564913 ], [ -96.274009210386737, 29.226894058100697 ], [ -96.273403210382369, 29.227368057914624 ], [ -96.273164210305325, 29.227688058297005 ], [ -96.273036209715812, 29.22797705836588 ], [ -96.272901210350398, 29.22819705788103 ], [ -96.272876210161215, 29.228289058312637 ], [ -96.272804210433421, 29.228556058240585 ], [ -96.272754210293385, 29.228851058334214 ], [ -96.272745210566683, 29.228906058396124 ], [ -96.272733210068608, 29.229332058140248 ], [ -96.272806210270502, 29.229968058190742 ], [ -96.272847210385208, 29.230320058975011 ], [ -96.272886209709384, 29.230655058560188 ], [ -96.272950210195987, 29.231435058386023 ], [ -96.272979210399043, 29.231795058565787 ], [ -96.27301820995919, 29.232256058905893 ], [ -96.273027210550083, 29.232373059313073 ], [ -96.273078210461208, 29.23299205931113 ], [ -96.273307210344683, 29.235460059513382 ], [ -96.273416210960121, 29.240038060556863 ], [ -96.273409210331266, 29.240920060605081 ], [ -96.273414210898395, 29.24108506079941 ], [ -96.273445211199757, 29.242065061027457 ], [ -96.273487211020182, 29.24341206104992 ], [ -96.273500211276641, 29.244701061583587 ], [ -96.273506210848268, 29.245116061684651 ], [ -96.273515211061152, 29.245752061559077 ], [ -96.273519211073719, 29.246028061866106 ], [ -96.273521210738636, 29.246185061568525 ], [ -96.273526211252204, 29.246516061494685 ], [ -96.27353721119151, 29.247338062324186 ], [ -96.273589211536773, 29.248347061990451 ], [ -96.273623211095355, 29.249018062691974 ], [ -96.273811211491278, 29.249536062151119 ], [ -96.273866211279326, 29.249620062477625 ], [ -96.273995211420385, 29.249820062231809 ], [ -96.27418321103363, 29.250094062992478 ], [ -96.273503211420049, 29.250495062932195 ], [ -96.273263211640455, 29.250550063138697 ], [ -96.273073211248033, 29.250545062744436 ], [ -96.272389210878544, 29.250359062809054 ], [ -96.270127210214483, 29.249659062302943 ], [ -96.269241210184035, 29.249416062715799 ], [ -96.267918209678797, 29.249052062712838 ], [ -96.266356209596609, 29.248578062176524 ], [ -96.264588208876077, 29.248053062748575 ], [ -96.263634209000386, 29.247770062395027 ], [ -96.262549208114933, 29.247447062214658 ], [ -96.26009020725742, 29.246722061905835 ], [ -96.259599207973906, 29.246574062328868 ], [ -96.255518206603313, 29.245348061875649 ], [ -96.253778205947796, 29.24482506258235 ], [ -96.252269205363874, 29.244372061759577 ], [ -96.251062205793787, 29.247521062774549 ], [ -96.249738205170701, 29.250975063864697 ], [ -96.248754204773647, 29.253492063967645 ], [ -96.248034204507377, 29.255367064255946 ], [ -96.246905204858848, 29.258305065133175 ], [ -96.246628204375867, 29.259015065193047 ], [ -96.246197204574528, 29.26012206584139 ], [ -96.245778204381921, 29.26119806587462 ], [ -96.244718204381741, 29.264007066363334 ], [ -96.243217204099324, 29.267982067330998 ], [ -96.242961204480849, 29.268661067389079 ], [ -96.241576204002371, 29.272072068291848 ], [ -96.241391203653308, 29.272553067932357 ], [ -96.241137203956114, 29.273213067962409 ], [ -96.241041204350267, 29.273461068613813 ], [ -96.240851203536181, 29.273953068433023 ], [ -96.240479204255621, 29.274918068521632 ], [ -96.23973820393951, 29.276842068733796 ], [ -96.239645203650142, 29.277083069648743 ], [ -96.238947203613918, 29.278901069227135 ], [ -96.237343203375744, 29.283079070409009 ], [ -96.236618203729776, 29.284979070653222 ], [ -96.236070203668504, 29.285638071089455 ], [ -96.232908202632544, 29.284753070669794 ], [ -96.228540200971509, 29.283530070651246 ], [ -96.227480200430804, 29.283215071129952 ], [ -96.220580198694563, 29.281108070264885 ], [ -96.220075199303565, 29.280932070733972 ], [ -96.219948198903566, 29.280932070834393 ], [ -96.219836199403574, 29.280976070904249 ], [ -96.219792199185505, 29.281072070540262 ], [ -96.21930919923976, 29.282392071076902 ], [ -96.21908919853739, 29.282936070853449 ], [ -96.218647198991007, 29.284021071740625 ], [ -96.218314198300376, 29.284862071201079 ], [ -96.2176451987891, 29.286522071644868 ], [ -96.217485198409562, 29.286934072263353 ], [ -96.217265198967283, 29.28750207223343 ], [ -96.217142198532486, 29.287833071898522 ], [ -96.217111198796161, 29.28792007245994 ], [ -96.215632198241735, 29.291809072725496 ], [ -96.214506197720212, 29.294770073490426 ], [ -96.21431519850799, 29.295271074069131 ], [ -96.2125891973932, 29.299800074328818 ], [ -96.211716197932773, 29.302093074902288 ], [ -96.210866197758335, 29.304323075313409 ], [ -96.209675196988201, 29.30731207650495 ], [ -96.20931719747594, 29.307191076769907 ], [ -96.208041197474145, 29.310370077489942 ], [ -96.207274197459256, 29.31228007783988 ], [ -96.206684196643565, 29.313749077701196 ], [ -96.206496196916305, 29.314228077485559 ], [ -96.206371196510588, 29.314550078287024 ], [ -96.204531197073138, 29.3192530794013 ], [ -96.201330196287941, 29.327433081193814 ], [ -96.201285195997912, 29.327586081217877 ], [ -96.201292195917475, 29.32763208058595 ], [ -96.20130619580884, 29.32772008091947 ], [ -96.201360195764934, 29.327778081074221 ], [ -96.205649197044693, 29.329267081283227 ], [ -96.205512197472927, 29.329838081484944 ], [ -96.200933196128616, 29.333256082000108 ], [ -96.200298196233419, 29.333725082305634 ], [ -96.199575196154498, 29.334329081983899 ], [ -96.199261196048795, 29.334653082027391 ], [ -96.198713196136779, 29.335337082428023 ], [ -96.198302196303885, 29.335955082605192 ], [ -96.198182195793805, 29.336135082373229 ], [ -96.198355196054436, 29.336208082720699 ], [ -96.198747196383366, 29.336315082413016 ], [ -96.199029196463158, 29.336462082940667 ], [ -96.199670196422701, 29.336967083128247 ], [ -96.199829196253901, 29.337177082554255 ], [ -96.199961196582308, 29.337518083270453 ], [ -96.20010219630241, 29.338484082957383 ], [ -96.200103196411092, 29.338952083225234 ], [ -96.200218196576245, 29.339483082958189 ], [ -96.200322196530536, 29.339794083539768 ], [ -96.200465196913001, 29.339923083467951 ], [ -96.200771196809271, 29.340390083128412 ], [ -96.200896196960329, 29.340845083145254 ], [ -96.200900196453304, 29.341196083398167 ], [ -96.200773196951488, 29.341496083544246 ], [ -96.200547196849243, 29.341704083629196 ], [ -96.200276196914857, 29.342188083566111 ], [ -96.20023319665053, 29.342363083695862 ], [ -96.200282196911076, 29.343330083747819 ], [ -96.19956619627709, 29.344245084605912 ], [ -96.199307196834354, 29.344695084551507 ], [ -96.19919819610503, 29.34526308428341 ], [ -96.199199195980825, 29.345622084190566 ], [ -96.199389196406585, 29.346097084758391 ], [ -96.199442196286213, 29.346489084409406 ], [ -96.199777196620587, 29.34718608442396 ], [ -96.200037196621068, 29.347510084778069 ], [ -96.200372196591317, 29.347717085304168 ], [ -96.201281197421977, 29.348599084913381 ], [ -96.202015197240101, 29.349062085019781 ], [ -96.202958197622806, 29.349422085086903 ], [ -96.204576198334266, 29.349673084915999 ], [ -96.206096198708508, 29.349715084916724 ], [ -96.207020198456874, 29.349538084951398 ], [ -96.207804198581073, 29.349320084817247 ], [ -96.208642198617241, 29.349179084950617 ], [ -96.209920199810213, 29.348781085105188 ], [ -96.210966199752718, 29.348590085184775 ], [ -96.211711199817785, 29.348618084645654 ], [ -96.212854200373769, 29.348661084667331 ], [ -96.213304199695528, 29.34862408486438 ], [ -96.213991200359047, 29.348725085066999 ], [ -96.21493620101495, 29.348682084452701 ], [ -96.216028200695661, 29.348510084327099 ], [ -96.216808200703539, 29.348497084958694 ], [ -96.2170602014628, 29.348419084306652 ], [ -96.219079201949384, 29.348087084488245 ], [ -96.220199202291482, 29.347853084216034 ], [ -96.221815201827425, 29.347318084294429 ], [ -96.223028202961345, 29.346785084233165 ], [ -96.223896202515121, 29.346303084095425 ], [ -96.225485202787823, 29.345627083741579 ], [ -96.226714203595478, 29.345212083587825 ], [ -96.227608203714894, 29.344845083473018 ], [ -96.228884204384499, 29.344308083399493 ], [ -96.229182203895263, 29.344123082842781 ], [ -96.230476204245434, 29.34391108286616 ], [ -96.2333052053052, 29.344064082695287 ], [ -96.234201205353287, 29.344169083431186 ], [ -96.234817205149085, 29.34416308292024 ], [ -96.235465205331337, 29.344074082784147 ], [ -96.236385205743076, 29.343636082822051 ], [ -96.237621206160341, 29.342989082645904 ], [ -96.238321206382267, 29.342489082791619 ], [ -96.23886520666349, 29.342234082461928 ], [ -96.240362206229449, 29.341728081990489 ], [ -96.241322207049492, 29.34153508273533 ], [ -96.241982206780975, 29.341332082621051 ], [ -96.242584207138833, 29.341101081978355 ], [ -96.24325020776314, 29.340743082287464 ], [ -96.244957207897869, 29.339234082176155 ], [ -96.245696207443387, 29.33846008127205 ], [ -96.24601420810157, 29.338075081218705 ], [ -96.246550207791429, 29.337263081664421 ], [ -96.247233208204676, 29.33640608071623 ], [ -96.247467208289848, 29.336260080927484 ], [ -96.247698208074539, 29.336191080679217 ], [ -96.248330208027369, 29.335677080741203 ], [ -96.249777208570876, 29.334957080955093 ], [ -96.251304208837624, 29.334175080243696 ], [ -96.25321020947699, 29.333107079927114 ], [ -96.25407821028422, 29.332695080230206 ], [ -96.255475210450754, 29.332264080362396 ], [ -96.256791210504716, 29.331971079794464 ], [ -96.259432210765979, 29.331601080052707 ], [ -96.260171211524593, 29.331568079309204 ], [ -96.261773211247345, 29.331654079798515 ], [ -96.262578212362143, 29.33180007944712 ], [ -96.262907211801149, 29.331801079744601 ], [ -96.263269212043582, 29.331864079704513 ], [ -96.263970212544308, 29.332070079271151 ], [ -96.264757212911846, 29.332592080029098 ], [ -96.265105212747244, 29.332701079415806 ], [ -96.265323212986317, 29.332865079365604 ], [ -96.266551212718213, 29.334220080027649 ], [ -96.266818212858396, 29.334626080156941 ], [ -96.267105213206889, 29.335250080410404 ], [ -96.267569213266256, 29.336445080823971 ], [ -96.268123213055119, 29.337412080174452 ], [ -96.26837721325262, 29.338097080698738 ], [ -96.268540213773335, 29.339023080674391 ], [ -96.268535213774527, 29.339311080858202 ], [ -96.268425213862827, 29.339806081145348 ], [ -96.268216213506491, 29.340276081059194 ], [ -96.268049213379797, 29.340524081304544 ], [ -96.267092213856074, 29.34175608194494 ], [ -96.266752213494698, 29.342194081794087 ], [ -96.265143212862569, 29.343785082150539 ], [ -96.264437212631947, 29.344391081966911 ], [ -96.263760212269304, 29.345127082681234 ], [ -96.262133212605221, 29.347148082680118 ], [ -96.261704212294674, 29.34758508279651 ], [ -96.261448211833212, 29.347766083259881 ], [ -96.261378212123731, 29.347896083093246 ], [ -96.261145212103798, 29.348098082780137 ], [ -96.260549212172009, 29.348229083304503 ], [ -96.25989121215612, 29.348243082934609 ], [ -96.259199211961061, 29.348160083330519 ], [ -96.257835211718799, 29.347892083305531 ], [ -96.257383211155187, 29.347907083482106 ], [ -96.25662421160493, 29.348065083523696 ], [ -96.256138211183639, 29.348257083119016 ], [ -96.255282210832462, 29.348875083339244 ], [ -96.254565210238297, 29.349617083840464 ], [ -96.254248211075691, 29.350281083285431 ], [ -96.254131210484147, 29.350921083848977 ], [ -96.254205210846564, 29.351566084278009 ], [ -96.254721211285656, 29.352761083957713 ], [ -96.255269211391081, 29.354235084279662 ], [ -96.255493211213278, 29.355152084850694 ], [ -96.255501211192751, 29.355692084903698 ], [ -96.255321211570774, 29.356652084683876 ], [ -96.254940210738241, 29.357489085176169 ], [ -96.254485211066836, 29.357985085417766 ], [ -96.254081210832027, 29.358229085363206 ], [ -96.253754211271556, 29.358503085507738 ], [ -96.253475210989734, 29.358857085353318 ], [ -96.253429210452765, 29.359069085159067 ], [ -96.253452211204376, 29.359247085641535 ], [ -96.25357721108729, 29.359590085176634 ], [ -96.253774210581525, 29.359906085653478 ], [ -96.254202210513171, 29.360291085721958 ], [ -96.254927210744924, 29.360628086006372 ], [ -96.255392211702485, 29.36077008613093 ], [ -96.256292211219062, 29.36082408566768 ], [ -96.257679211491194, 29.360689085602061 ], [ -96.258326211655032, 29.36046508578854 ], [ -96.258937212592187, 29.360103085215005 ], [ -96.259418212606008, 29.359609085158027 ], [ -96.260064212041527, 29.358730085106302 ], [ -96.261100212832943, 29.357472084481596 ], [ -96.261609212962938, 29.357052084427096 ], [ -96.26190721307259, 29.356666084952401 ], [ -96.262727213090315, 29.356121084743428 ], [ -96.26349021317273, 29.355695084863832 ], [ -96.264223212900589, 29.355369084827228 ], [ -96.264668213162054, 29.355303084404621 ], [ -96.265195213497478, 29.355378084286983 ], [ -96.266100213942806, 29.355377083994444 ], [ -96.266711214252169, 29.355456084575309 ], [ -96.26734621438419, 29.355706084018045 ], [ -96.268526214323046, 29.356020083931472 ], [ -96.269674214999213, 29.356216084429605 ], [ -96.269916214827035, 29.356184084750399 ], [ -96.270203214808362, 29.35621008450758 ], [ -96.270838214892265, 29.356357084377496 ], [ -96.272016215335753, 29.356786084535383 ], [ -96.272750216077284, 29.357185084151261 ], [ -96.273769216342217, 29.35785708475122 ], [ -96.274525216530307, 29.358560084785367 ], [ -96.275073215866897, 29.359466085302056 ], [ -96.275374216329297, 29.360252084926589 ], [ -96.275584216076624, 29.360602085363638 ], [ -96.275674216162912, 29.36091608468265 ], [ -96.275659216953784, 29.361239084766432 ], [ -96.275590216089839, 29.36145408487597 ], [ -96.275482216453881, 29.361793085282258 ], [ -96.275076216630822, 29.362335085771967 ], [ -96.274501216169369, 29.362615085698007 ], [ -96.274155215997311, 29.362970086033044 ], [ -96.273696216225289, 29.363270085509292 ], [ -96.273374216485053, 29.3634470855859 ], [ -96.273095215726002, 29.363601085316134 ], [ -96.272834215800685, 29.363829085444877 ], [ -96.272620216287692, 29.364094086263588 ], [ -96.272463216241576, 29.364502086264672 ], [ -96.272366215457339, 29.365289085764314 ], [ -96.272425215700622, 29.36582808624966 ], [ -96.27253021625026, 29.366100086757239 ], [ -96.273318216131344, 29.36732208646097 ], [ -96.273508216582911, 29.367423086776242 ], [ -96.273983216489825, 29.367559086787779 ], [ -96.275025217050256, 29.367738086804369 ], [ -96.27620521709369, 29.367609086338501 ], [ -96.276932216985912, 29.367730086924038 ], [ -96.278040216908721, 29.36778308626991 ], [ -96.278850217459919, 29.3679040864074 ], [ -96.279543217563415, 29.367862086862964 ], [ -96.281274218547239, 29.368183086754904 ], [ -96.28286921881957, 29.368342086325217 ], [ -96.285021219607316, 29.368647086167471 ], [ -96.286495219874695, 29.368945086028699 ], [ -96.287609220135238, 29.369125086870323 ], [ -96.288112220105432, 29.369221086691198 ], [ -96.288533219968201, 29.369301086513659 ], [ -96.289691220674797, 29.369387086399772 ], [ -96.289803219970167, 29.369395086091423 ], [ -96.291076220305825, 29.369344086267056 ], [ -96.291514220555712, 29.369250086575356 ], [ -96.292007221343013, 29.36923708603743 ], [ -96.292926220804375, 29.369048086489084 ], [ -96.295345222024807, 29.368138086219272 ], [ -96.295977221937818, 29.367977085534505 ], [ -96.296304221967787, 29.367969085858597 ], [ -96.296752222581077, 29.36802408610011 ], [ -96.297284222332365, 29.367994085634887 ], [ -96.298393222977964, 29.368051085989816 ], [ -96.299464222311983, 29.36830708602589 ], [ -96.301005223419722, 29.368541085591538 ], [ -96.301497223383649, 29.368577086159359 ], [ -96.302567223706447, 29.368561085472905 ], [ -96.304492223952835, 29.368407086114328 ], [ -96.30560922459091, 29.368384085759697 ], [ -96.306262224453306, 29.368430085614737 ], [ -96.306488224327481, 29.368512085537116 ], [ -96.307171224352288, 29.368636085222892 ], [ -96.30778922459227, 29.368921085749051 ], [ -96.308123225420033, 29.369187085665541 ], [ -96.308481225348103, 29.369793085639635 ], [ -96.308715224929728, 29.370818086421892 ], [ -96.308986225475351, 29.371499086132527 ], [ -96.309348225166204, 29.372105086299239 ], [ -96.309868225621017, 29.372660086718735 ], [ -96.310263226214559, 29.372979086430124 ], [ -96.310775225856986, 29.373280086688936 ], [ -96.311452226343221, 29.373597086102066 ], [ -96.312196226587687, 29.373945086845854 ], [ -96.312901226724378, 29.374196086813729 ], [ -96.313187226484402, 29.374298086304666 ], [ -96.31373822664149, 29.374442086455364 ], [ -96.31443422663844, 29.374483086556303 ], [ -96.314997227106446, 29.374384086561161 ], [ -96.316962227542902, 29.373735085966839 ], [ -96.318304228278791, 29.373395086361196 ], [ -96.319248227929265, 29.373406086566625 ], [ -96.320069227935875, 29.373642085893568 ], [ -96.32044822840426, 29.373857086066245 ], [ -96.320635228459281, 29.374048086009182 ], [ -96.32095622840211, 29.374591086136167 ], [ -96.321949228435116, 29.375999086520423 ], [ -96.322313229083818, 29.376157086797953 ], [ -96.322936229502474, 29.376624086494523 ], [ -96.323058229511005, 29.376942086897021 ], [ -96.323945229025313, 29.377793087202527 ], [ -96.324663229560386, 29.378715086889795 ], [ -96.324925230217247, 29.379143086825906 ], [ -96.325036229532543, 29.379375086895159 ], [ -96.325098229597131, 29.379767087381254 ], [ -96.325043230156311, 29.380233087115275 ], [ -96.324876230073514, 29.380639087966497 ], [ -96.324604230221581, 29.380909087625589 ], [ -96.323886229624321, 29.38138708754558 ], [ -96.322723229160104, 29.382505088131051 ], [ -96.322558229401508, 29.382712088275063 ], [ -96.322214229017035, 29.38332508797059 ], [ -96.32212522875146, 29.383639088579891 ], [ -96.322113228985955, 29.384070087893868 ], [ -96.322445229245616, 29.385848088720039 ], [ -96.322971229198615, 29.387098089255669 ], [ -96.323389229362959, 29.387718088850413 ], [ -96.323516229860729, 29.387784088973785 ], [ -96.323797229527386, 29.387990088888127 ], [ -96.324506229767607, 29.388785088879406 ], [ -96.325065229732715, 29.389262089672979 ], [ -96.325329230649814, 29.389710089102536 ], [ -96.325388230136539, 29.390433089197547 ], [ -96.325296230238465, 29.390785089796147 ], [ -96.325038230660596, 29.391350089729087 ], [ -96.325034230653102, 29.391962090270567 ], [ -96.324842230201668, 29.392845089657825 ], [ -96.324724230351435, 29.394028089851179 ], [ -96.324722230704225, 29.394569090255565 ], [ -96.324736230496057, 29.394893090841432 ], [ -96.324881230064463, 29.395566090718237 ], [ -96.325053230769043, 29.396085090853219 ], [ -96.325245230226528, 29.3964030909687 ], [ -96.32562223074865, 29.396830091187393 ], [ -96.326001230767474, 29.397106090917692 ], [ -96.326591230867749, 29.397254090979942 ], [ -96.326838231107942, 29.397260091061739 ], [ -96.327155231470158, 29.397199091018756 ], [ -96.329037231468547, 29.397371091075222 ], [ -96.329317231421172, 29.397430090392572 ], [ -96.329875232119392, 29.397633090949736 ], [ -96.330463231870212, 29.398085090530341 ], [ -96.331221231885536, 29.398580091327414 ], [ -96.332252232799561, 29.399029090952425 ], [ -96.332990232229065, 29.399252091309563 ], [ -96.333856233336689, 29.399579091446309 ], [ -96.33459423292166, 29.399622091161056 ], [ -96.335186233384348, 29.399520091019092 ], [ -96.335302233654275, 29.399422091382693 ], [ -96.335837233259141, 29.398970090615357 ], [ -96.336147233092419, 29.398634091047999 ], [ -96.336538233737045, 29.397841090201023 ], [ -96.337059233212955, 29.396557090189514 ], [ -96.337384233181666, 29.396142089876573 ], [ -96.337941233344722, 29.395564090139949 ], [ -96.338873234199127, 29.394805089530802 ], [ -96.339444234517231, 29.39460508985642 ], [ -96.34005523456851, 29.394560089748413 ], [ -96.341381234949637, 29.394806089551697 ], [ -96.342523234988235, 29.395214089560071 ], [ -96.343249234707088, 29.395343089498251 ], [ -96.343619234878304, 29.39536008990639 ], [ -96.344188235269087, 29.39528708964902 ], [ -96.344656235225401, 29.395149089452783 ], [ -96.344973235619662, 29.39498208945097 ], [ -96.34544223581824, 29.394577089606681 ], [ -96.345710236003839, 29.394411089397025 ], [ -96.346212235469281, 29.393847089308309 ], [ -96.346369236267606, 29.39373408993001 ], [ -96.346496235903842, 29.393395089770404 ], [ -96.346473235620167, 29.392783089016032 ], [ -96.346393235317564, 29.392432089541916 ], [ -96.34628923521602, 29.392196089184225 ], [ -96.346049235230012, 29.39186008924051 ], [ -96.345969235895865, 29.391618089016909 ], [ -96.346002235108259, 29.390791089053288 ], [ -96.346105235963918, 29.39033108890235 ], [ -96.346081235259845, 29.390117088333344 ], [ -96.346143235616111, 29.389725089038997 ], [ -96.346389235450232, 29.389394088614743 ], [ -96.346486236113734, 29.389158088225489 ], [ -96.34694323525882, 29.388604088406403 ], [ -96.347381235812549, 29.388223088234898 ], [ -96.348363236383875, 29.38774508784865 ], [ -96.349643236037366, 29.387492088275192 ], [ -96.350012236773338, 29.387508087785449 ], [ -96.350514236221784, 29.38766308826898 ], [ -96.350607236245125, 29.387859087761463 ], [ -96.350643237111157, 29.388105088567251 ], [ -96.351203237033204, 29.38867808801383 ], [ -96.351691237284058, 29.389429088613468 ], [ -96.351839236647507, 29.389745088256412 ], [ -96.351981236726587, 29.390598088762623 ], [ -96.352055237300533, 29.391640089199679 ], [ -96.352163237400603, 29.392355089312886 ], [ -96.352333236801115, 29.392873088962808 ], [ -96.352624237114185, 29.393508088903953 ], [ -96.353629237742112, 29.394776089648246 ], [ -96.354088238129464, 29.395137089390676 ], [ -96.354325237806151, 29.395196089294394 ], [ -96.354649237540116, 29.395164089402289 ], [ -96.355374238599026, 29.395138089296854 ], [ -96.355879238006025, 29.394979089524188 ], [ -96.357501238460401, 29.394829089678471 ], [ -96.359047238995018, 29.394780088825758 ], [ -96.360493239656478, 29.394953089155372 ], [ -96.360406239376076, 29.395110089230965 ], [ -96.361363239697681, 29.395418089728992 ], [ -96.361957239784033, 29.395854089301181 ], [ -96.362371239660433, 29.396343089775911 ], [ -96.362696240328916, 29.397268089339402 ], [ -96.362781240044526, 29.398001090187311 ], [ -96.362829240303711, 29.398128089777764 ], [ -96.362832240229011, 29.398454089468114 ], [ -96.362462240217624, 29.399695089821428 ], [ -96.363401240312953, 29.39924409015374 ], [ -96.363799239970916, 29.399053089989202 ], [ -96.367574241099334, 29.397239089576786 ], [ -96.367868241747175, 29.397098089898815 ], [ -96.375821243465353, 29.393276088109722 ], [ -96.375830243072897, 29.393271088050259 ], [ -96.375861243320898, 29.393253087967402 ], [ -96.376049243031687, 29.393146088691058 ], [ -96.377379243694648, 29.392435088325932 ], [ -96.377791244105381, 29.392212088312558 ], [ -96.38259824483454, 29.389611087522869 ], [ -96.382756244347917, 29.389525087607495 ], [ -96.383791244749446, 29.388964087530866 ], [ -96.383833245517593, 29.388941087254981 ], [ -96.385341245615436, 29.388093087201337 ], [ -96.385352245397257, 29.388087086868389 ], [ -96.388917246229781, 29.386079086489335 ], [ -96.394965247115891, 29.38267608552713 ], [ -96.400965249104345, 29.379302084456377 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 628, "Tract": "48481740902", "Area_SqMi": 1.8761443187194939, "total_2009": 1778, "total_2010": 1448, "total_2011": 1303, "total_2012": 1603, "total_2013": 1627, "total_2014": 1605, "total_2015": 1628, "total_2016": 1605, "total_2017": 1634, "total_2018": 1583, "total_2019": 1506, "total_2020": 1501, "age1": 257, "age2": 750, "age3": 468, "earn1": 345, "earn2": 476, "earn3": 654, "naics_s01": 28, "naics_s02": 17, "naics_s03": 0, "naics_s04": 43, "naics_s05": 4, "naics_s06": 6, "naics_s07": 155, "naics_s08": 24, "naics_s09": 10, "naics_s10": 87, "naics_s11": 9, "naics_s12": 24, "naics_s13": 0, "naics_s14": 45, "naics_s15": 667, "naics_s16": 236, "naics_s17": 4, "naics_s18": 69, "naics_s19": 47, "naics_s20": 0, "race1": 1272, "race2": 170, "race3": 3, "race4": 14, "race5": 0, "race6": 16, "ethnicity1": 999, "ethnicity2": 476, "edu1": 192, "edu2": 354, "edu3": 396, "edu4": 276, "Shape_Length": 29893.526335437909, "Shape_Area": 52303692.552806266, "total_2021": 1479, "total_2022": 1475 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.294140214780285, 29.207754052916329 ], [ -96.294144214875757, 29.207262053403728 ], [ -96.294026214183717, 29.201685052269152 ], [ -96.294014214022937, 29.201134052276597 ], [ -96.293912214456313, 29.197618051145536 ], [ -96.293881213595299, 29.196773051169842 ], [ -96.293765214255671, 29.196056050796649 ], [ -96.29365721363078, 29.195545050566761 ], [ -96.293429213514045, 29.194915050349035 ], [ -96.293348214273749, 29.194690051072804 ], [ -96.293319213777863, 29.194624050826619 ], [ -96.293167213625892, 29.194270050552237 ], [ -96.292956213253177, 29.193866050365429 ], [ -96.292657213294461, 29.193422050684344 ], [ -96.29242221378135, 29.193061050614972 ], [ -96.291886213384529, 29.192402050409665 ], [ -96.289748212485335, 29.189771050095803 ], [ -96.287348211692532, 29.186831049606742 ], [ -96.286856211925326, 29.18622904883237 ], [ -96.286757211995777, 29.186108049370333 ], [ -96.286051211790124, 29.185242048663461 ], [ -96.285993211842026, 29.185162049114343 ], [ -96.283583211255035, 29.186631049569176 ], [ -96.282402211154789, 29.187399049490491 ], [ -96.281137210836349, 29.188189049527043 ], [ -96.280915210811244, 29.18832804988082 ], [ -96.280277209859534, 29.188727049772176 ], [ -96.279846210222686, 29.189122049990168 ], [ -96.279528209736455, 29.189479050469409 ], [ -96.279247210194114, 29.189967050016403 ], [ -96.27901620996613, 29.190520049909935 ], [ -96.278685210297283, 29.190962050223686 ], [ -96.278289210318036, 29.191351050631607 ], [ -96.278067209402806, 29.191541050925295 ], [ -96.277855209418576, 29.19170505069043 ], [ -96.277422209601625, 29.191981050320102 ], [ -96.276561209592927, 29.192515051018908 ], [ -96.275675209049055, 29.193075051067595 ], [ -96.274707209296736, 29.193647051494015 ], [ -96.273811208454887, 29.194211050906659 ], [ -96.272889208172089, 29.194788051039986 ], [ -96.27194320868405, 29.195433051072513 ], [ -96.270877207950292, 29.196125051884643 ], [ -96.26988520754314, 29.196741051713648 ], [ -96.270566207915905, 29.197631051653556 ], [ -96.2713032085382, 29.198562052186691 ], [ -96.272056208796627, 29.199451052211586 ], [ -96.272776208618595, 29.200311052198511 ], [ -96.273606208717496, 29.201374052752097 ], [ -96.274614209156155, 29.20258305281855 ], [ -96.275264209819355, 29.203412052795503 ], [ -96.275902209479611, 29.204204052987205 ], [ -96.27657521041759, 29.205022053426664 ], [ -96.277196210276671, 29.205793053106945 ], [ -96.27826821024, 29.207111053754048 ], [ -96.278557210623575, 29.207461053376864 ], [ -96.280003211566452, 29.209249053687067 ], [ -96.281103211429908, 29.210608054287725 ], [ -96.281348211582511, 29.210931054548187 ], [ -96.281830212064619, 29.211502054532499 ], [ -96.282590211383777, 29.212481054200502 ], [ -96.282828211552328, 29.212738054384548 ], [ -96.283597212154859, 29.213683054499381 ], [ -96.284662212680288, 29.2149680552928 ], [ -96.286670213244776, 29.217416055228316 ], [ -96.286800213057305, 29.217575055707186 ], [ -96.287496213108824, 29.218492055808891 ], [ -96.287659213200854, 29.218333055322141 ], [ -96.288412213430618, 29.217598055239975 ], [ -96.289747214012365, 29.215797055407691 ], [ -96.290696214159581, 29.214516054833759 ], [ -96.29118021365538, 29.213826055055343 ], [ -96.291824214620391, 29.21293405471393 ], [ -96.29215821426493, 29.212480054028862 ], [ -96.292313214600924, 29.212262054195762 ], [ -96.292599214867479, 29.211859054573051 ], [ -96.293024214470677, 29.211261053877745 ], [ -96.293283214111113, 29.210865053568682 ], [ -96.293475214683454, 29.210440053741227 ], [ -96.293650214995395, 29.209998054216207 ], [ -96.293713214168974, 29.209840054079347 ], [ -96.293815214530554, 29.209560053779857 ], [ -96.293900214886875, 29.209308053473784 ], [ -96.293968214942481, 29.209041053814307 ], [ -96.294031214123933, 29.208736053641406 ], [ -96.294073214788312, 29.208420053494322 ], [ -96.294140214780285, 29.207754052916329 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 629, "Tract": "48201432005", "Area_SqMi": 0.13720457099874192, "total_2009": 693, "total_2010": 657, "total_2011": 487, "total_2012": 548, "total_2013": 574, "total_2014": 670, "total_2015": 584, "total_2016": 507, "total_2017": 510, "total_2018": 549, "total_2019": 524, "total_2020": 402, "age1": 164, "age2": 264, "age3": 130, "earn1": 145, "earn2": 226, "earn3": 187, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 46, "naics_s06": 90, "naics_s07": 124, "naics_s08": 0, "naics_s09": 0, "naics_s10": 5, "naics_s11": 5, "naics_s12": 27, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 4, "naics_s17": 2, "naics_s18": 242, "naics_s19": 13, "naics_s20": 0, "race1": 263, "race2": 87, "race3": 7, "race4": 194, "race5": 0, "race6": 7, "ethnicity1": 444, "ethnicity2": 114, "edu1": 89, "edu2": 78, "edu3": 101, "edu4": 126, "Shape_Length": 7888.0803442017695, "Shape_Area": 3825028.6114747548, "total_2021": 576, "total_2022": 558 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.495619034470124, 29.737582188315248 ], [ -95.495522034390902, 29.73667718783301 ], [ -95.495490034087268, 29.73592918804869 ], [ -95.49548203409401, 29.735269187290921 ], [ -95.495456033862524, 29.732926187046537 ], [ -95.4954430341174, 29.73175018667947 ], [ -95.495404034342101, 29.731750187279875 ], [ -95.495305034594764, 29.731751187069001 ], [ -95.495170034336766, 29.731752187257264 ], [ -95.494874034112144, 29.731755186752903 ], [ -95.494149033375265, 29.731762187443213 ], [ -95.493242034046091, 29.7317681867641 ], [ -95.489789032287149, 29.731797187600307 ], [ -95.489818032859517, 29.73299618733709 ], [ -95.489823033333749, 29.734179187560386 ], [ -95.489824033024703, 29.734261187436868 ], [ -95.489824032487363, 29.73479518749193 ], [ -95.489824032479575, 29.735350187506583 ], [ -95.489859032695392, 29.737689188562648 ], [ -95.491615033466985, 29.73764218831354 ], [ -95.492862034301922, 29.737608188192958 ], [ -95.494219034392117, 29.737607188021649 ], [ -95.495119034648425, 29.737596188350238 ], [ -95.495619034470124, 29.737582188315248 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 630, "Tract": "48201341002", "Area_SqMi": 0.68884641811455782, "total_2009": 440, "total_2010": 807, "total_2011": 1187, "total_2012": 460, "total_2013": 409, "total_2014": 419, "total_2015": 437, "total_2016": 500, "total_2017": 497, "total_2018": 625, "total_2019": 589, "total_2020": 635, "age1": 304, "age2": 273, "age3": 112, "earn1": 214, "earn2": 293, "earn3": 182, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 0, "naics_s07": 389, "naics_s08": 3, "naics_s09": 0, "naics_s10": 8, "naics_s11": 2, "naics_s12": 0, "naics_s13": 1, "naics_s14": 2, "naics_s15": 0, "naics_s16": 70, "naics_s17": 0, "naics_s18": 173, "naics_s19": 37, "naics_s20": 0, "race1": 518, "race2": 123, "race3": 4, "race4": 27, "race5": 0, "race6": 17, "ethnicity1": 465, "ethnicity2": 224, "edu1": 77, "edu2": 117, "edu3": 127, "edu4": 64, "Shape_Length": 19933.804088504825, "Shape_Area": 19203859.164606445, "total_2021": 648, "total_2022": 689 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.154045938883598, 29.55352416196374 ], [ -95.15419993844371, 29.553410161974394 ], [ -95.150140937622041, 29.549172161283082 ], [ -95.146019936286095, 29.544862160061886 ], [ -95.145909936880187, 29.54474716040551 ], [ -95.145818936235116, 29.54465016067854 ], [ -95.145035936211769, 29.543820159870915 ], [ -95.141830934838168, 29.540419159938846 ], [ -95.141633935190782, 29.540515159365885 ], [ -95.141409934642937, 29.540624159145548 ], [ -95.13966193443477, 29.541473160087499 ], [ -95.138657934008634, 29.541966159674931 ], [ -95.138249934586085, 29.542167159809413 ], [ -95.138486934574516, 29.542656160554891 ], [ -95.138585934666466, 29.54297215997315 ], [ -95.138718934936236, 29.5435531605292 ], [ -95.138951934603099, 29.543819160165029 ], [ -95.139151934507439, 29.544015160615505 ], [ -95.139024934860885, 29.544251160134348 ], [ -95.138884934469615, 29.544555160928919 ], [ -95.138773934527478, 29.544770160678901 ], [ -95.138623934160478, 29.545061160482913 ], [ -95.138073934221268, 29.546135160619396 ], [ -95.137993934250829, 29.546286161227343 ], [ -95.137915934511796, 29.546431161066753 ], [ -95.137836934739838, 29.54658016104532 ], [ -95.137757934737706, 29.546729160972475 ], [ -95.13766693473579, 29.546899161144747 ], [ -95.137521934802706, 29.54717116093763 ], [ -95.137486934517398, 29.547236161394796 ], [ -95.137374934395169, 29.547446161377383 ], [ -95.137350934403742, 29.547490161543365 ], [ -95.137035933781874, 29.548083160859544 ], [ -95.136963934291103, 29.548216161455109 ], [ -95.136979933883978, 29.548237160869824 ], [ -95.137080933815682, 29.548323161004898 ], [ -95.137887934207924, 29.548673161591072 ], [ -95.137846934891257, 29.549107161787877 ], [ -95.137947935010217, 29.54958516157593 ], [ -95.138093934169561, 29.550325161317083 ], [ -95.138262934385665, 29.551087162017868 ], [ -95.139116935395748, 29.55094516207371 ], [ -95.140411934836905, 29.550739161685534 ], [ -95.140670935380072, 29.550759161816195 ], [ -95.141134935532762, 29.551287161602527 ], [ -95.140514935112265, 29.551727161713551 ], [ -95.138813935126919, 29.552912162473081 ], [ -95.139330935455064, 29.553512162641894 ], [ -95.139854934884568, 29.554142162140796 ], [ -95.140345935870187, 29.554775162750484 ], [ -95.140878935789956, 29.555418162791067 ], [ -95.141395936161587, 29.556046162343208 ], [ -95.141909935717209, 29.556660163186365 ], [ -95.142443936557498, 29.557342162967362 ], [ -95.143132936190085, 29.558129163330701 ], [ -95.143358936672016, 29.558584163317192 ], [ -95.143629936613436, 29.558880163327231 ], [ -95.143779935964972, 29.559072163704588 ], [ -95.144248937119798, 29.559569163367453 ], [ -95.144379936829239, 29.559483163099255 ], [ -95.144697936431243, 29.55928316327763 ], [ -95.145356936920848, 29.558871163182435 ], [ -95.145503936741903, 29.558779162875418 ], [ -95.145970937338944, 29.558473163074474 ], [ -95.146456937605549, 29.55815716311805 ], [ -95.147393936826703, 29.55754416310802 ], [ -95.147667937088741, 29.557366163023286 ], [ -95.147968937287402, 29.557169162377583 ], [ -95.14823593782836, 29.556993163182842 ], [ -95.148472937227325, 29.556838162544768 ], [ -95.148601937444255, 29.55675716251525 ], [ -95.14911393771159, 29.556438162867007 ], [ -95.150144938276227, 29.55579416285131 ], [ -95.150207938488009, 29.55577016209093 ], [ -95.150510938266535, 29.555653162520461 ], [ -95.150957938649782, 29.555481162729446 ], [ -95.151807937915379, 29.555036162038945 ], [ -95.15227593833572, 29.554706162519054 ], [ -95.153546939156271, 29.553894161984577 ], [ -95.153885939231216, 29.553642161781216 ], [ -95.154045938883598, 29.55352416196374 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 631, "Tract": "48201310101", "Area_SqMi": 0.8555199188959226, "total_2009": 3086, "total_2010": 2976, "total_2011": 2971, "total_2012": 2869, "total_2013": 3333, "total_2014": 3087, "total_2015": 3169, "total_2016": 2732, "total_2017": 2727, "total_2018": 2422, "total_2019": 2441, "total_2020": 2473, "age1": 810, "age2": 1894, "age3": 678, "earn1": 535, "earn2": 967, "earn3": 1880, "naics_s01": 0, "naics_s02": 0, "naics_s03": 264, "naics_s04": 46, "naics_s05": 212, "naics_s06": 669, "naics_s07": 235, "naics_s08": 38, "naics_s09": 34, "naics_s10": 89, "naics_s11": 76, "naics_s12": 275, "naics_s13": 0, "naics_s14": 340, "naics_s15": 6, "naics_s16": 311, "naics_s17": 81, "naics_s18": 310, "naics_s19": 378, "naics_s20": 18, "race1": 2594, "race2": 506, "race3": 34, "race4": 183, "race5": 9, "race6": 56, "ethnicity1": 2013, "ethnicity2": 1369, "edu1": 593, "edu2": 716, "edu3": 729, "edu4": 534, "Shape_Length": 29820.046151328836, "Shape_Area": 23850431.101843331, "total_2021": 3088, "total_2022": 3382 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.358495999819112, 29.749770194861977 ], [ -95.358313999638952, 29.7496621954609 ], [ -95.358112999747121, 29.749543195712988 ], [ -95.35775000020206, 29.749324195196834 ], [ -95.35724899973377, 29.749019195544328 ], [ -95.356407999386704, 29.748511194709515 ], [ -95.355808998981814, 29.749252195297316 ], [ -95.355219998885019, 29.750014195214742 ], [ -95.354624999507664, 29.750748195485478 ], [ -95.354270999197283, 29.750546195723906 ], [ -95.35419799846872, 29.750504195630487 ], [ -95.353870999266661, 29.750289195316512 ], [ -95.353825998317205, 29.750260195422005 ], [ -95.353778999147707, 29.750225195224672 ], [ -95.35318099834673, 29.75097719543475 ], [ -95.352342998833862, 29.750464195965197 ], [ -95.351487997657046, 29.74994319516172 ], [ -95.3506359980599, 29.749423195588836 ], [ -95.349771997895971, 29.748900195032142 ], [ -95.348924997224316, 29.748385195496599 ], [ -95.348065997579695, 29.747886195334015 ], [ -95.347199997092474, 29.747385194949768 ], [ -95.346365996340097, 29.746852194911192 ], [ -95.346066997110881, 29.746668194933473 ], [ -95.345241995863617, 29.74614319502864 ], [ -95.345103996120201, 29.746055195404079 ], [ -95.345036996729661, 29.746016195420928 ], [ -95.343787996483769, 29.745292194763586 ], [ -95.343304996326466, 29.744753194411675 ], [ -95.343235996027204, 29.744666194984703 ], [ -95.343137996248004, 29.744524194609046 ], [ -95.343107996254403, 29.744483194885376 ], [ -95.342909995445638, 29.744154194910493 ], [ -95.342743995373596, 29.743783194602351 ], [ -95.342709995883979, 29.743722194195641 ], [ -95.34242399525364, 29.742929194298696 ], [ -95.342072995021141, 29.741898194305683 ], [ -95.341740994923242, 29.742317194094223 ], [ -95.341266995503176, 29.742900194280868 ], [ -95.340885995263946, 29.743381194720374 ], [ -95.340400994981763, 29.743978194409024 ], [ -95.339925995221094, 29.744586194834721 ], [ -95.33972399503709, 29.744838194747707 ], [ -95.339468994805344, 29.745169194707788 ], [ -95.33898399502354, 29.745798194782704 ], [ -95.338381994443267, 29.746553195761457 ], [ -95.337861994179278, 29.747210195021719 ], [ -95.337546994508742, 29.747610195837691 ], [ -95.337086994319378, 29.748202195802008 ], [ -95.336608993975531, 29.748792195490218 ], [ -95.336010993670357, 29.749538195644977 ], [ -95.334967993719459, 29.750862196011571 ], [ -95.334445993676226, 29.75152619659757 ], [ -95.334189994230769, 29.751850196236536 ], [ -95.333944993690821, 29.752166196237489 ], [ -95.333494993498689, 29.752747196978728 ], [ -95.333046993816396, 29.753339196869049 ], [ -95.332581993594317, 29.753945197179718 ], [ -95.332434993004682, 29.754125196808303 ], [ -95.33178499357696, 29.754953196993576 ], [ -95.331664992906511, 29.755104197196495 ], [ -95.331403993453733, 29.755429197576813 ], [ -95.331128993130974, 29.75577919736989 ], [ -95.331003993426876, 29.755950197936212 ], [ -95.330642992944917, 29.756419197690921 ], [ -95.330595992798152, 29.756490197832282 ], [ -95.330212993079414, 29.757002197802979 ], [ -95.330115992786531, 29.757132197565557 ], [ -95.330800993464223, 29.757512197821985 ], [ -95.33025799327919, 29.758232198073596 ], [ -95.329842993152425, 29.75874519810808 ], [ -95.329097992984174, 29.759595198500193 ], [ -95.329046992965218, 29.75965319830329 ], [ -95.328987992805736, 29.759721198109101 ], [ -95.3288739928703, 29.759843198413442 ], [ -95.329643993201486, 29.759837198649677 ], [ -95.329920993104622, 29.759729198251659 ], [ -95.330472993578326, 29.759514198056962 ], [ -95.331384993551879, 29.758858198399139 ], [ -95.331554993244112, 29.758735198109338 ], [ -95.331933993498254, 29.758517197715804 ], [ -95.332241993744304, 29.758414198109005 ], [ -95.332565993523744, 29.758363198383957 ], [ -95.332871993771036, 29.758470198004545 ], [ -95.333109994115489, 29.758613197838802 ], [ -95.333279993907269, 29.758817197831085 ], [ -95.333412994125723, 29.759081197869506 ], [ -95.333465994190249, 29.759291197802373 ], [ -95.333465994101942, 29.759687197919934 ], [ -95.333386994475148, 29.760880198136338 ], [ -95.333626994067345, 29.760754198349236 ], [ -95.334540994490084, 29.760054198139056 ], [ -95.33464599383862, 29.759949198017164 ], [ -95.334735994596755, 29.759813198595054 ], [ -95.334826994695831, 29.759648198223267 ], [ -95.334954993998124, 29.759331198254433 ], [ -95.335097993861083, 29.759008197646395 ], [ -95.337390994888395, 29.755916197448975 ], [ -95.337738994387635, 29.755417197384475 ], [ -95.337797994408405, 29.755339196737673 ], [ -95.338015995144616, 29.755077196727566 ], [ -95.338050994511036, 29.755070197101929 ], [ -95.338365995194351, 29.755054197132409 ], [ -95.338672995238895, 29.755075196910155 ], [ -95.338894995452378, 29.755159197353983 ], [ -95.33940199531061, 29.755425196706831 ], [ -95.340392995831706, 29.75417019643897 ], [ -95.34138799585746, 29.752894196443485 ], [ -95.342168996402734, 29.753360196979955 ], [ -95.343041996411102, 29.753875196895994 ], [ -95.34342199657452, 29.754103196418153 ], [ -95.343995996033911, 29.754460196364096 ], [ -95.34465399696937, 29.754850197077733 ], [ -95.345384997236323, 29.755290196917237 ], [ -95.345596996654677, 29.755418196673197 ], [ -95.346220996585672, 29.755794196613785 ], [ -95.346942997701618, 29.756222197392606 ], [ -95.347155997397351, 29.756348197119124 ], [ -95.347916997622278, 29.756802197310272 ], [ -95.348555998071831, 29.757185196774394 ], [ -95.348691997519254, 29.757266196924281 ], [ -95.349014997406641, 29.757453196766978 ], [ -95.34920299819899, 29.757561196828529 ], [ -95.349397998450456, 29.757675196910817 ], [ -95.349491998337456, 29.757727197260788 ], [ -95.350118998599328, 29.758070197616895 ], [ -95.350953998591351, 29.758549197205362 ], [ -95.351082998864882, 29.758630197358489 ], [ -95.351274998847344, 29.75875119702394 ], [ -95.351828999078933, 29.758002197536396 ], [ -95.352416998471512, 29.757263196833897 ], [ -95.353031998951352, 29.756498196842458 ], [ -95.353368999365514, 29.756105196346866 ], [ -95.353561998670884, 29.755880196303963 ], [ -95.353648998459036, 29.75576519677201 ], [ -95.354044999126202, 29.755237196248903 ], [ -95.354235999047802, 29.754982196535995 ], [ -95.354852998740085, 29.754209196430466 ], [ -95.355456998913823, 29.753451196224081 ], [ -95.355665998876859, 29.753189196490528 ], [ -95.356033999927647, 29.75272819586349 ], [ -95.356415999559985, 29.752253196279234 ], [ -95.356666999471472, 29.751941195408715 ], [ -95.35723099920051, 29.751240195698841 ], [ -95.35781699953894, 29.750511195115305 ], [ -95.357845999857048, 29.750481195130071 ], [ -95.358495999819112, 29.749770194861977 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 632, "Tract": "48201510301", "Area_SqMi": 0.56574463777226536, "total_2009": 344, "total_2010": 358, "total_2011": 431, "total_2012": 472, "total_2013": 513, "total_2014": 503, "total_2015": 488, "total_2016": 440, "total_2017": 526, "total_2018": 695, "total_2019": 800, "total_2020": 771, "age1": 190, "age2": 447, "age3": 187, "earn1": 184, "earn2": 233, "earn3": 407, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 43, "naics_s05": 40, "naics_s06": 73, "naics_s07": 10, "naics_s08": 45, "naics_s09": 5, "naics_s10": 45, "naics_s11": 8, "naics_s12": 53, "naics_s13": 0, "naics_s14": 208, "naics_s15": 24, "naics_s16": 69, "naics_s17": 0, "naics_s18": 160, "naics_s19": 39, "naics_s20": 0, "race1": 556, "race2": 190, "race3": 8, "race4": 60, "race5": 1, "race6": 9, "ethnicity1": 565, "ethnicity2": 259, "edu1": 146, "edu2": 167, "edu3": 170, "edu4": 151, "Shape_Length": 22019.162650967493, "Shape_Area": 15771992.219466062, "total_2021": 733, "total_2022": 824 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.388111008429405, 29.777227200018533 ], [ -95.388459008859328, 29.776873199979807 ], [ -95.387551008839822, 29.776885199868552 ], [ -95.387364008282219, 29.776887199883102 ], [ -95.387002008305856, 29.776893199808661 ], [ -95.385715008623905, 29.776965199708634 ], [ -95.384848007631021, 29.777078199578792 ], [ -95.384393007708084, 29.777147199642783 ], [ -95.383367007490392, 29.777355200071511 ], [ -95.382387007320503, 29.777575200464856 ], [ -95.381133007231512, 29.777935200531644 ], [ -95.380564007353343, 29.77813620051888 ], [ -95.379339006272488, 29.778603200372455 ], [ -95.378784005913289, 29.77879520065936 ], [ -95.378270005812311, 29.778931200813417 ], [ -95.377690005987731, 29.779056200854889 ], [ -95.377253006227903, 29.779159200948804 ], [ -95.376570006130748, 29.779216201077539 ], [ -95.375984005896811, 29.779209200787857 ], [ -95.375507006043762, 29.779180200792176 ], [ -95.37507000564726, 29.779113201202222 ], [ -95.374641004953872, 29.779016200909279 ], [ -95.374152005383337, 29.778914200948869 ], [ -95.374095005028948, 29.778899201056081 ], [ -95.372465005092721, 29.778362200792586 ], [ -95.372231004574189, 29.778291201101304 ], [ -95.371786004746355, 29.77818820071537 ], [ -95.371388004993236, 29.778026200658847 ], [ -95.370999004074577, 29.777896200497231 ], [ -95.370554003831643, 29.777732200347934 ], [ -95.370120004385583, 29.777537200435635 ], [ -95.369895004250537, 29.777393200130316 ], [ -95.369593003850454, 29.777201200580219 ], [ -95.369318004271165, 29.77699020049474 ], [ -95.369357003595084, 29.777192200488702 ], [ -95.369372003587642, 29.777332200862546 ], [ -95.36939200394886, 29.777595200751396 ], [ -95.36939700443871, 29.777658200318758 ], [ -95.369389003807967, 29.777775200579981 ], [ -95.369384003590412, 29.777848200614446 ], [ -95.369377004000938, 29.777944200474131 ], [ -95.369374004406779, 29.777986200418646 ], [ -95.36933000403684, 29.778322200548526 ], [ -95.36925900385657, 29.77867820062664 ], [ -95.369192003935041, 29.778887201306187 ], [ -95.369053003740845, 29.779324200801085 ], [ -95.368942003789101, 29.77962820142319 ], [ -95.368855003948312, 29.779869201006942 ], [ -95.368812003789515, 29.780048200927506 ], [ -95.3687650040509, 29.780215200798661 ], [ -95.36873200440894, 29.780333201676122 ], [ -95.368651003530303, 29.780624201398915 ], [ -95.368582003802828, 29.780970201349515 ], [ -95.368577003946555, 29.781272201115616 ], [ -95.368532003735666, 29.781767201853107 ], [ -95.368559003964691, 29.782269201991557 ], [ -95.368582004490818, 29.782609201410242 ], [ -95.368634003819722, 29.782915201555227 ], [ -95.368659004348459, 29.783149201444299 ], [ -95.3687290042717, 29.783504201805297 ], [ -95.36877700438275, 29.78369420172773 ], [ -95.368805004437561, 29.783805202293774 ], [ -95.368814003622845, 29.783828202185298 ], [ -95.368908003897232, 29.784079201730243 ], [ -95.368965004487762, 29.784229202062932 ], [ -95.369117003705512, 29.784505202140959 ], [ -95.369295003772265, 29.784829202135825 ], [ -95.369715003909249, 29.785452202459759 ], [ -95.369996004823506, 29.785868201929574 ], [ -95.370209004514393, 29.786184202089146 ], [ -95.370919004365675, 29.787238202841571 ], [ -95.371302004873712, 29.787768202717036 ], [ -95.371495005075872, 29.788157203130503 ], [ -95.371665004680253, 29.788540202508845 ], [ -95.371757004864506, 29.788811203243917 ], [ -95.371832005090639, 29.789127202502062 ], [ -95.371882004742929, 29.78956220302657 ], [ -95.371899005555647, 29.790002202804221 ], [ -95.372023005243619, 29.790104203504633 ], [ -95.372116004868829, 29.79018020342054 ], [ -95.372756005449645, 29.790642202740816 ], [ -95.37419600555458, 29.790632202709947 ], [ -95.374192005388053, 29.790132202654618 ], [ -95.375418005650886, 29.790130203139732 ], [ -95.375528006468159, 29.790130202567767 ], [ -95.375607006388748, 29.790106203244534 ], [ -95.375632005932516, 29.790052202572312 ], [ -95.375635005988883, 29.789752203331727 ], [ -95.375635006508816, 29.7894742028646 ], [ -95.375631006255006, 29.789464202470921 ], [ -95.375638005801775, 29.789412202786167 ], [ -95.375636005667872, 29.78935920241517 ], [ -95.375640006578493, 29.789306202738832 ], [ -95.375638006094164, 29.789219202852689 ], [ -95.375632005973685, 29.789164202346196 ], [ -95.375627005801093, 29.789111202990075 ], [ -95.375626005713897, 29.789054202899749 ], [ -95.375627005806081, 29.788980202981922 ], [ -95.375631005592112, 29.788904202647416 ], [ -95.375596006213911, 29.788904203124751 ], [ -95.374987005851537, 29.788911202916765 ], [ -95.374979005869875, 29.788155202729332 ], [ -95.376431006651401, 29.788143202431829 ], [ -95.376428006477724, 29.787450202332053 ], [ -95.376417006498485, 29.786756202307604 ], [ -95.376408006002364, 29.786041201691134 ], [ -95.376387005701176, 29.785315201657514 ], [ -95.376389005769269, 29.784700202214911 ], [ -95.376404005768819, 29.784612202267091 ], [ -95.377832006055982, 29.784597201386699 ], [ -95.377950006915768, 29.784588201759451 ], [ -95.378670006304375, 29.784587201420877 ], [ -95.378740006391084, 29.784583201997993 ], [ -95.378809006764058, 29.78455720212132 ], [ -95.37887700692194, 29.784504201956185 ], [ -95.378973006819223, 29.7844502016546 ], [ -95.379202006804746, 29.784444201546275 ], [ -95.379296006930915, 29.78443320197848 ], [ -95.380732006799803, 29.784423202071874 ], [ -95.382022007996937, 29.784416201637292 ], [ -95.382024007058988, 29.784102201216047 ], [ -95.384271008115803, 29.784089201478853 ], [ -95.384264008034364, 29.783511201107338 ], [ -95.384262008418631, 29.7833942016136 ], [ -95.38424200750957, 29.782583201294447 ], [ -95.384231007451021, 29.781676201349914 ], [ -95.384214008234025, 29.781539201330489 ], [ -95.384225008226096, 29.780736200412878 ], [ -95.385392008030522, 29.780787200356905 ], [ -95.385932008498045, 29.780813200648193 ], [ -95.386508008340755, 29.780839200812846 ], [ -95.387024008168837, 29.780873200657553 ], [ -95.38728400886491, 29.780918200478308 ], [ -95.387456008893949, 29.780980200624459 ], [ -95.387114008419843, 29.780122200527622 ], [ -95.387061008950482, 29.779810200795069 ], [ -95.387036009044337, 29.779438200654212 ], [ -95.387062008169323, 29.779063200124025 ], [ -95.387100008659132, 29.778915200278991 ], [ -95.387106008242654, 29.778893199964195 ], [ -95.387119009051105, 29.778836200083123 ], [ -95.387130008563261, 29.778788199906483 ], [ -95.387175008887851, 29.778597200173181 ], [ -95.387340008761612, 29.778183200281745 ], [ -95.387550008468821, 29.777843199853148 ], [ -95.38776600836951, 29.777572200217765 ], [ -95.38778600845886, 29.777546200239367 ], [ -95.388111008429405, 29.777227200018533 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 633, "Tract": "48201311001", "Area_SqMi": 0.33030521715978495, "total_2009": 606, "total_2010": 677, "total_2011": 668, "total_2012": 410, "total_2013": 505, "total_2014": 433, "total_2015": 529, "total_2016": 493, "total_2017": 471, "total_2018": 503, "total_2019": 478, "total_2020": 462, "age1": 130, "age2": 250, "age3": 115, "earn1": 65, "earn2": 207, "earn3": 223, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 124, "naics_s06": 30, "naics_s07": 64, "naics_s08": 0, "naics_s09": 0, "naics_s10": 9, "naics_s11": 39, "naics_s12": 128, "naics_s13": 0, "naics_s14": 0, "naics_s15": 22, "naics_s16": 12, "naics_s17": 0, "naics_s18": 22, "naics_s19": 45, "naics_s20": 0, "race1": 407, "race2": 28, "race3": 4, "race4": 45, "race5": 2, "race6": 9, "ethnicity1": 220, "ethnicity2": 275, "edu1": 99, "edu2": 104, "edu3": 94, "edu4": 68, "Shape_Length": 17649.921946864983, "Shape_Area": 9208344.1313857138, "total_2021": 436, "total_2022": 495 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.310094987326494, 29.743346195746366 ], [ -95.310396987006698, 29.742888195117494 ], [ -95.309976987520628, 29.742749195392083 ], [ -95.308516986430348, 29.742281195419174 ], [ -95.30656498641045, 29.741677195382668 ], [ -95.304569985250168, 29.741037194971714 ], [ -95.302597984969992, 29.740411195660407 ], [ -95.300634984938256, 29.739788195370995 ], [ -95.298948983757498, 29.739256195354709 ], [ -95.298976983940406, 29.740036195183219 ], [ -95.29900698462481, 29.740807195224601 ], [ -95.299030984250024, 29.741607196062901 ], [ -95.299052984816512, 29.742319196191719 ], [ -95.299072984344818, 29.743072196041531 ], [ -95.301216984512621, 29.743745196294203 ], [ -95.301349985254006, 29.743784195783242 ], [ -95.303202985408575, 29.744367195931229 ], [ -95.302904985629056, 29.745112196029687 ], [ -95.302610985254489, 29.745812196762284 ], [ -95.302343985004867, 29.746477196546081 ], [ -95.302079985713164, 29.747131196323966 ], [ -95.301788985359096, 29.747777197156008 ], [ -95.301505985211648, 29.74843819696655 ], [ -95.3012369854913, 29.749106197554678 ], [ -95.300965984960158, 29.749769197423188 ], [ -95.300689985253726, 29.750435197325945 ], [ -95.300410984779774, 29.751087197975693 ], [ -95.300134984854481, 29.751757197386489 ], [ -95.300036985172014, 29.751973197385258 ], [ -95.299785984618126, 29.752212197852753 ], [ -95.29946698541265, 29.752486198114184 ], [ -95.298915985292652, 29.752861197926361 ], [ -95.297877984168267, 29.753592198479829 ], [ -95.297448984974494, 29.753896198360582 ], [ -95.297233984037689, 29.754050198291047 ], [ -95.297210984436461, 29.754066198274046 ], [ -95.297424984937678, 29.754235198583029 ], [ -95.297861985073098, 29.754287197981689 ], [ -95.298118984307337, 29.754317198178107 ], [ -95.298360985065059, 29.754244197839267 ], [ -95.298620984282124, 29.754165198561655 ], [ -95.299686984806073, 29.753110197531715 ], [ -95.299969985039255, 29.752900197775798 ], [ -95.300190985112977, 29.752805198078498 ], [ -95.300844984887263, 29.752732197617863 ], [ -95.301804985127262, 29.753053197993822 ], [ -95.302426986127841, 29.753468197849749 ], [ -95.302914985974439, 29.753955198078987 ], [ -95.303132985887643, 29.753609197951182 ], [ -95.303608985555869, 29.752864197800942 ], [ -95.303731986270051, 29.752649197476554 ], [ -95.303892986064881, 29.752360197923196 ], [ -95.304345986387617, 29.751702197861857 ], [ -95.305124985863927, 29.750586197561695 ], [ -95.305461986833649, 29.750079196786434 ], [ -95.306183986715553, 29.749010196675155 ], [ -95.306732986422247, 29.748204196323464 ], [ -95.307184986598841, 29.747555197031833 ], [ -95.307538987189062, 29.747090196775975 ], [ -95.307806986607318, 29.746732196667491 ], [ -95.308365987223681, 29.745905196360344 ], [ -95.309119986830396, 29.74478719557009 ], [ -95.309565987279285, 29.744152196239817 ], [ -95.309690987265938, 29.743945195584047 ], [ -95.309916987093175, 29.743604195596813 ], [ -95.310094987326494, 29.743346195746366 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 634, "Tract": "48201233502", "Area_SqMi": 0.53298008582547318, "total_2009": 322, "total_2010": 303, "total_2011": 334, "total_2012": 377, "total_2013": 432, "total_2014": 415, "total_2015": 500, "total_2016": 480, "total_2017": 531, "total_2018": 471, "total_2019": 550, "total_2020": 567, "age1": 82, "age2": 406, "age3": 148, "earn1": 29, "earn2": 56, "earn3": 551, "naics_s01": 0, "naics_s02": 120, "naics_s03": 0, "naics_s04": 3, "naics_s05": 253, "naics_s06": 0, "naics_s07": 12, "naics_s08": 224, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 17, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 448, "race2": 160, "race3": 5, "race4": 14, "race5": 3, "race6": 6, "ethnicity1": 349, "ethnicity2": 287, "edu1": 145, "edu2": 166, "edu3": 175, "edu4": 68, "Shape_Length": 21419.722790068761, "Shape_Area": 14858572.588280594, "total_2021": 537, "total_2022": 636 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.256075974481291, 29.767930202842056 ], [ -95.256075974910331, 29.767719202142711 ], [ -95.256021974774413, 29.765792202309111 ], [ -95.255984974520004, 29.764146201821067 ], [ -95.255969974077431, 29.763761201949247 ], [ -95.255909974376891, 29.76082820088719 ], [ -95.255889973831145, 29.76050120073587 ], [ -95.255870973636959, 29.759896200455987 ], [ -95.253250973486246, 29.759922201176771 ], [ -95.251950973254509, 29.759953200929999 ], [ -95.251851973047152, 29.75995520057981 ], [ -95.251722973102488, 29.75992420062256 ], [ -95.251713973038775, 29.759702200826943 ], [ -95.251513973146317, 29.75968320084559 ], [ -95.247196972252183, 29.759434201329608 ], [ -95.243289970577933, 29.759607201434175 ], [ -95.241986970493215, 29.758796201306737 ], [ -95.240363970411238, 29.75884220129679 ], [ -95.233571968656378, 29.75903720173293 ], [ -95.233573968281945, 29.759152201451631 ], [ -95.233574968105231, 29.759179201331602 ], [ -95.233643967963459, 29.76026520131942 ], [ -95.233678968625185, 29.761830202406344 ], [ -95.233702968903216, 29.762680202359856 ], [ -95.233719968219447, 29.763293202105224 ], [ -95.233724968370851, 29.763974202386049 ], [ -95.233726969103984, 29.764386202490485 ], [ -95.23372996865298, 29.764732202730592 ], [ -95.234584968507022, 29.764719202721494 ], [ -95.234717968793063, 29.764719202863706 ], [ -95.235062968992381, 29.764713202454878 ], [ -95.236909969507451, 29.764691202614749 ], [ -95.237611969725094, 29.764682202165929 ], [ -95.2377759694932, 29.764679202516707 ], [ -95.237860970139792, 29.764677202821332 ], [ -95.238101970169993, 29.764676202131835 ], [ -95.238229969818505, 29.764673202266636 ], [ -95.238801969607124, 29.764666202286385 ], [ -95.23879096964211, 29.764614202367067 ], [ -95.238795969759323, 29.76389520245128 ], [ -95.238768970300868, 29.763171202317508 ], [ -95.24197097087611, 29.763122202172948 ], [ -95.243524970727862, 29.763066201707705 ], [ -95.245135971106606, 29.763057201532561 ], [ -95.247269972145276, 29.763018201954107 ], [ -95.247290971797142, 29.763746202042626 ], [ -95.24730597217625, 29.764470202015495 ], [ -95.247326972302972, 29.765216202441746 ], [ -95.247337971920032, 29.765944202734381 ], [ -95.247356972003715, 29.766657202975434 ], [ -95.247353971779006, 29.76704720221872 ], [ -95.247363972317615, 29.767234202854965 ], [ -95.249726972959863, 29.767186202606027 ], [ -95.250427972875087, 29.767190202883818 ], [ -95.251147972893008, 29.767227202741704 ], [ -95.251856972985792, 29.767318202495808 ], [ -95.256075974481291, 29.767930202842056 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 635, "Tract": "48201211302", "Area_SqMi": 0.61153719223302894, "total_2009": 480, "total_2010": 566, "total_2011": 530, "total_2012": 540, "total_2013": 566, "total_2014": 522, "total_2015": 527, "total_2016": 516, "total_2017": 495, "total_2018": 437, "total_2019": 553, "total_2020": 660, "age1": 150, "age2": 290, "age3": 168, "earn1": 281, "earn2": 125, "earn3": 202, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 1, "naics_s07": 150, "naics_s08": 0, "naics_s09": 0, "naics_s10": 9, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 1, "naics_s15": 84, "naics_s16": 272, "naics_s17": 0, "naics_s18": 51, "naics_s19": 39, "naics_s20": 0, "race1": 241, "race2": 319, "race3": 11, "race4": 31, "race5": 0, "race6": 6, "ethnicity1": 443, "ethnicity2": 165, "edu1": 121, "edu2": 96, "edu3": 148, "edu4": 93, "Shape_Length": 23453.925431290198, "Shape_Area": 17048610.263091903, "total_2021": 646, "total_2022": 608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.335745994912358, 29.771295200469392 ], [ -95.335740994587226, 29.770661200244827 ], [ -95.335739995222099, 29.770023200341281 ], [ -95.335721994503459, 29.769518200065225 ], [ -95.335722995343517, 29.769390200503896 ], [ -95.33572299530573, 29.769318199740042 ], [ -95.335329994622853, 29.769471200453925 ], [ -95.333796994670138, 29.77011720032867 ], [ -95.331417993695339, 29.771031200196266 ], [ -95.331238993406799, 29.77109920060327 ], [ -95.3295999932174, 29.771722200488465 ], [ -95.329261992975617, 29.771872201215245 ], [ -95.328813993728602, 29.772032200690429 ], [ -95.328656992853738, 29.772088200878436 ], [ -95.328575992991915, 29.772118200905489 ], [ -95.328272993144111, 29.772229201242805 ], [ -95.327910993275964, 29.772362200881997 ], [ -95.32708999332543, 29.772652201059536 ], [ -95.326419993123153, 29.772913201227457 ], [ -95.32483099213826, 29.773531201371142 ], [ -95.324109991926392, 29.773792201583262 ], [ -95.323545992046576, 29.773980201064429 ], [ -95.322944992047582, 29.774162201153551 ], [ -95.322417992029841, 29.774245201103479 ], [ -95.321844991621589, 29.77432520153307 ], [ -95.321192991261341, 29.774384202034469 ], [ -95.320301991059821, 29.774415201384752 ], [ -95.317477990138585, 29.774420201346 ], [ -95.315597989743466, 29.774424201385603 ], [ -95.315608990560705, 29.774660201551061 ], [ -95.315674990258401, 29.775737202196964 ], [ -95.315737990423528, 29.776431202367572 ], [ -95.315849990510316, 29.777137202748708 ], [ -95.315935989984197, 29.778040202826219 ], [ -95.315878990168429, 29.778352202641727 ], [ -95.315899990219179, 29.779319202511321 ], [ -95.315892990622729, 29.779678203285307 ], [ -95.315907990252441, 29.780291203018379 ], [ -95.315928990469047, 29.781242203335459 ], [ -95.315925990077801, 29.782203203322556 ], [ -95.315939990715478, 29.783179203415038 ], [ -95.315905990643898, 29.784141203943136 ], [ -95.315874990428796, 29.784678204310744 ], [ -95.315891990384088, 29.785395203648342 ], [ -95.31591999038821, 29.786768204013338 ], [ -95.315919990278715, 29.786899204387414 ], [ -95.315922990745733, 29.787575204496754 ], [ -95.315925990753797, 29.787619204682908 ], [ -95.316096990242229, 29.787551204455795 ], [ -95.316757991332992, 29.787276204447647 ], [ -95.323785992971324, 29.784249203410287 ], [ -95.324916993054018, 29.783763203233594 ], [ -95.324905992537154, 29.783385203126475 ], [ -95.324884993081156, 29.782684202945578 ], [ -95.324887992973927, 29.781928202869736 ], [ -95.324876992684764, 29.781214202783829 ], [ -95.324866992563486, 29.780508202373756 ], [ -95.324865992996038, 29.780252202398835 ], [ -95.324862992484711, 29.77973020220788 ], [ -95.324856992306209, 29.779049202374086 ], [ -95.324854992629369, 29.778357202013385 ], [ -95.326615993548657, 29.778267202266957 ], [ -95.326589992997825, 29.777593202485598 ], [ -95.326482992946524, 29.77686720172062 ], [ -95.326421993076551, 29.77616220217692 ], [ -95.326963992752653, 29.776127201710285 ], [ -95.327311993114321, 29.776115201313416 ], [ -95.32813299365634, 29.776078201301015 ], [ -95.328480993183646, 29.776069201948857 ], [ -95.328586993801011, 29.77606620154156 ], [ -95.329554993430094, 29.776039201873594 ], [ -95.331313993651875, 29.775988201343857 ], [ -95.331892994566502, 29.775977201220833 ], [ -95.332194994714712, 29.775977201991989 ], [ -95.333076994684831, 29.775957201084644 ], [ -95.333953994442481, 29.775930201813789 ], [ -95.333948994431864, 29.775486201739849 ], [ -95.333931994847049, 29.775080201680858 ], [ -95.333920994594109, 29.774322201024315 ], [ -95.333892994599708, 29.774246200984518 ], [ -95.333841994222141, 29.774055201419422 ], [ -95.333833994853649, 29.774024201478458 ], [ -95.33381899417661, 29.773661201413464 ], [ -95.333779994937927, 29.772591201245923 ], [ -95.33375499428017, 29.772212201083494 ], [ -95.333740994313715, 29.771709200245407 ], [ -95.333742995044318, 29.771500200585201 ], [ -95.333753994891069, 29.771420200690375 ], [ -95.333779995039237, 29.771350200260279 ], [ -95.333836995020533, 29.771284200942109 ], [ -95.334653994498439, 29.771274200478253 ], [ -95.334772994715621, 29.77129020008076 ], [ -95.334928995051229, 29.771303200939574 ], [ -95.335745994912358, 29.771295200469392 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 636, "Tract": "48201454902", "Area_SqMi": 1.3766286718560037, "total_2009": 627, "total_2010": 693, "total_2011": 647, "total_2012": 315, "total_2013": 321, "total_2014": 455, "total_2015": 451, "total_2016": 459, "total_2017": 530, "total_2018": 574, "total_2019": 621, "total_2020": 649, "age1": 258, "age2": 400, "age3": 140, "earn1": 170, "earn2": 364, "earn3": 264, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 2, "naics_s06": 37, "naics_s07": 196, "naics_s08": 35, "naics_s09": 10, "naics_s10": 14, "naics_s11": 23, "naics_s12": 50, "naics_s13": 0, "naics_s14": 18, "naics_s15": 10, "naics_s16": 167, "naics_s17": 25, "naics_s18": 168, "naics_s19": 34, "naics_s20": 0, "race1": 524, "race2": 95, "race3": 6, "race4": 155, "race5": 0, "race6": 18, "ethnicity1": 545, "ethnicity2": 253, "edu1": 108, "edu2": 130, "edu3": 147, "edu4": 155, "Shape_Length": 26074.125708406842, "Shape_Area": 38378051.247826055, "total_2021": 687, "total_2022": 798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.75160010061586, 29.758556183746855 ], [ -95.751546100663518, 29.754708182847466 ], [ -95.751554100333962, 29.754578183044 ], [ -95.751520100447649, 29.751737182533706 ], [ -95.751513100190479, 29.751187182382139 ], [ -95.751488100775433, 29.749094181756568 ], [ -95.751488100414377, 29.749051181806173 ], [ -95.751486100695359, 29.748893181349469 ], [ -95.751477100713331, 29.747898181453007 ], [ -95.751474099753395, 29.747565181921072 ], [ -95.751455099801944, 29.746895181471185 ], [ -95.751453099720749, 29.746477180956152 ], [ -95.751287099990307, 29.746367181071253 ], [ -95.751076100428193, 29.746227180954204 ], [ -95.75068710035481, 29.745970180792831 ], [ -95.749886099703261, 29.745440181156617 ], [ -95.748795099725342, 29.744823180659107 ], [ -95.748309099498982, 29.744548181217471 ], [ -95.74729909949211, 29.74397418059727 ], [ -95.745710098395165, 29.743070180517172 ], [ -95.745451098556572, 29.742923180778359 ], [ -95.745377098284479, 29.742881181135743 ], [ -95.745171098941981, 29.742760181089288 ], [ -95.744888098691746, 29.742603180480685 ], [ -95.7442380980698, 29.742208180660107 ], [ -95.744034098262048, 29.742085180302269 ], [ -95.743436098412175, 29.741723180443408 ], [ -95.742546097838144, 29.741186180336232 ], [ -95.741701097704578, 29.740786180854442 ], [ -95.741632097106617, 29.740753180284706 ], [ -95.741610097152403, 29.740743180711128 ], [ -95.740989097162057, 29.74044918046496 ], [ -95.740879096863452, 29.740397180061123 ], [ -95.740659097578302, 29.74029318080926 ], [ -95.739882096647662, 29.739925180377419 ], [ -95.739486096997382, 29.739733180396794 ], [ -95.73921109716737, 29.739599180274723 ], [ -95.738924097083682, 29.739449180637539 ], [ -95.738757096605752, 29.739357180077622 ], [ -95.738677096543498, 29.739313180211425 ], [ -95.73739609654254, 29.738539179873026 ], [ -95.734205095751619, 29.736600180215913 ], [ -95.734004095450558, 29.736481179463198 ], [ -95.733764094804599, 29.736352180006509 ], [ -95.733621095248424, 29.736275179454182 ], [ -95.733384095499858, 29.736640180237281 ], [ -95.733329095610685, 29.736724179923804 ], [ -95.733176095523262, 29.736978180054596 ], [ -95.733057094725197, 29.737207179689559 ], [ -95.732918094996847, 29.737519180152557 ], [ -95.732759095274659, 29.737950180225869 ], [ -95.732718094887815, 29.738320180695364 ], [ -95.732691094588162, 29.73856018052955 ], [ -95.732638095042347, 29.738713180217093 ], [ -95.732496095313834, 29.739093180313159 ], [ -95.732410095140764, 29.739290180480442 ], [ -95.732117094786133, 29.739857180943201 ], [ -95.731956095076555, 29.740198180953644 ], [ -95.731875095106119, 29.740411181080866 ], [ -95.731771094844078, 29.740718180729083 ], [ -95.731417094842755, 29.74189818131666 ], [ -95.731412094614242, 29.741915181438703 ], [ -95.731315094669938, 29.74222918134793 ], [ -95.731186095226946, 29.742647181073746 ], [ -95.731022095028095, 29.743127181138249 ], [ -95.730852094664257, 29.743573181185312 ], [ -95.73071009495979, 29.743908181565555 ], [ -95.730517094828116, 29.744326181250944 ], [ -95.73048509487802, 29.744389181778118 ], [ -95.730435094649266, 29.744487181364274 ], [ -95.730384095146988, 29.744584181750472 ], [ -95.730157094837892, 29.745003181632686 ], [ -95.729774094585295, 29.745625181854368 ], [ -95.729609094716167, 29.745870182191364 ], [ -95.729401094867939, 29.746159181769269 ], [ -95.731123094828718, 29.747125182449778 ], [ -95.731776095352899, 29.747493181801655 ], [ -95.731929095360869, 29.747590182585668 ], [ -95.732125094979352, 29.747720182619769 ], [ -95.732438095552581, 29.747957182544717 ], [ -95.732731095927676, 29.748202181912806 ], [ -95.732931095137261, 29.748398182406287 ], [ -95.733138095787751, 29.748623182803193 ], [ -95.733337095608817, 29.748868182255475 ], [ -95.733430095225316, 29.748995182533765 ], [ -95.733606095604941, 29.749259182567155 ], [ -95.733769096002973, 29.749540182451831 ], [ -95.733837095952623, 29.749676182817453 ], [ -95.733903096080766, 29.749820182753577 ], [ -95.733964095402897, 29.749966182731058 ], [ -95.734074096252314, 29.750262182833104 ], [ -95.734167096305271, 29.750564183113493 ], [ -95.734177096101249, 29.750613182736625 ], [ -95.734198095919282, 29.750711182889553 ], [ -95.73425309636329, 29.751014182990545 ], [ -95.734272095915969, 29.751168183142166 ], [ -95.734285096391332, 29.751325182581819 ], [ -95.734292096346394, 29.751479182691273 ], [ -95.734295096290467, 29.75199818302135 ], [ -95.734297095673526, 29.752254183369303 ], [ -95.734308096435342, 29.753356183376262 ], [ -95.734303096688336, 29.753841183039615 ], [ -95.734308095881119, 29.754537183545295 ], [ -95.734309096427609, 29.754945183550603 ], [ -95.734315096654356, 29.755360183957219 ], [ -95.73431909583644, 29.75563718359675 ], [ -95.734317096691498, 29.755900184158456 ], [ -95.734324096595998, 29.756485183534679 ], [ -95.734324096528439, 29.757343183878248 ], [ -95.734331096025741, 29.757572183942639 ], [ -95.734335096717473, 29.757673184040325 ], [ -95.734334095928801, 29.758066184507939 ], [ -95.734335096767239, 29.758842184744925 ], [ -95.734339096514006, 29.759527184490651 ], [ -95.734885096430972, 29.759524184311129 ], [ -95.735988096641663, 29.759509184722582 ], [ -95.736427097010164, 29.759480184204683 ], [ -95.736524097497849, 29.759470184795543 ], [ -95.736622096856351, 29.75946818486802 ], [ -95.736828096749377, 29.759453184864068 ], [ -95.737230097390096, 29.759399184457333 ], [ -95.737996097087333, 29.759271184314859 ], [ -95.73810309786009, 29.759257184164206 ], [ -95.738188097608358, 29.759228184500333 ], [ -95.738293097217507, 29.759220184599272 ], [ -95.738376097701803, 29.759195184238958 ], [ -95.738526097712651, 29.75916618423334 ], [ -95.738927097428643, 29.759087184465667 ], [ -95.7390440974293, 29.759069183869936 ], [ -95.739267097664595, 29.759020184684687 ], [ -95.740180097550947, 29.758841184398747 ], [ -95.740436098375369, 29.758800184179574 ], [ -95.740502098058627, 29.758776184227905 ], [ -95.740811097827731, 29.758724183791436 ], [ -95.741031098405131, 29.758699184233702 ], [ -95.741181097910385, 29.758687184125368 ], [ -95.741311098510124, 29.758683184494679 ], [ -95.741577097804409, 29.758662183692223 ], [ -95.741859097902875, 29.75865918440455 ], [ -95.742237098829051, 29.758654184273549 ], [ -95.742718098755631, 29.758649183937656 ], [ -95.74356509915674, 29.758642184375908 ], [ -95.744762099442937, 29.758629184144535 ], [ -95.744872098964478, 29.75863218390657 ], [ -95.744963099588077, 29.758626183653529 ], [ -95.74538709911775, 29.758626183924481 ], [ -95.746443099123056, 29.758611183634638 ], [ -95.746574099201439, 29.758605184099551 ], [ -95.746712099922036, 29.758614183809531 ], [ -95.747049099229031, 29.758610183819904 ], [ -95.747460100224842, 29.758607184030264 ], [ -95.747532099961575, 29.758606184161948 ], [ -95.74771210012149, 29.758605183529117 ], [ -95.747833100014205, 29.758609183447774 ], [ -95.74794409988661, 29.758607183906918 ], [ -95.748044100289661, 29.758598184084395 ], [ -95.748140100165912, 29.75859818421953 ], [ -95.748391099887229, 29.758597183503035 ], [ -95.748447100142272, 29.75859718397966 ], [ -95.748625100062512, 29.758593183951053 ], [ -95.748755100245248, 29.758590183477907 ], [ -95.749334100249655, 29.758585184103001 ], [ -95.75037110075921, 29.758560184207955 ], [ -95.751534100875048, 29.758553183894222 ], [ -95.75160010061586, 29.758556183746855 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 637, "Tract": "48201100001", "Area_SqMi": 0.9956680263475044, "total_2009": 81280, "total_2010": 80920, "total_2011": 79841, "total_2012": 78081, "total_2013": 80409, "total_2014": 82041, "total_2015": 80722, "total_2016": 80547, "total_2017": 78104, "total_2018": 76363, "total_2019": 79391, "total_2020": 77355, "age1": 12919, "age2": 50962, "age3": 17660, "earn1": 4967, "earn2": 8791, "earn3": 67783, "naics_s01": 51, "naics_s02": 2016, "naics_s03": 1387, "naics_s04": 3587, "naics_s05": 5964, "naics_s06": 2183, "naics_s07": 124, "naics_s08": 4982, "naics_s09": 1644, "naics_s10": 4445, "naics_s11": 664, "naics_s12": 15621, "naics_s13": 5319, "naics_s14": 3043, "naics_s15": 238, "naics_s16": 1794, "naics_s17": 2482, "naics_s18": 4128, "naics_s19": 1488, "naics_s20": 20378, "race1": 52151, "race2": 18634, "race3": 529, "race4": 8748, "race5": 111, "race6": 1367, "ethnicity1": 62791, "ethnicity2": 18747, "edu1": 9632, "edu2": 15393, "edu3": 20985, "edu4": 22612, "Shape_Length": 29631.782545635859, "Shape_Area": 27757520.471710272, "total_2021": 74080, "total_2022": 81538 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.374609004234713, 29.757617196621965 ], [ -95.374601003971989, 29.757122196369728 ], [ -95.37455700427023, 29.754271195518982 ], [ -95.374548003964762, 29.753669195365163 ], [ -95.374520003870259, 29.753131195525853 ], [ -95.374508004427625, 29.752912195187008 ], [ -95.37450000368095, 29.752884195500151 ], [ -95.374471004544461, 29.752773195136239 ], [ -95.374364003613181, 29.75237619516162 ], [ -95.374265003862206, 29.752120195193204 ], [ -95.374139003803251, 29.751859194825293 ], [ -95.374107003945809, 29.751805195120294 ], [ -95.373769003513516, 29.751268194637198 ], [ -95.373485003934618, 29.75100119490504 ], [ -95.373209003927826, 29.750743194916367 ], [ -95.373015004046323, 29.750578194565581 ], [ -95.372735004080354, 29.750355194509993 ], [ -95.371859003398797, 29.749847195053267 ], [ -95.370954003252677, 29.749324195163133 ], [ -95.370087002773673, 29.748824194752903 ], [ -95.369252003010459, 29.748340194310384 ], [ -95.368350001974889, 29.747795194108232 ], [ -95.367494001817505, 29.747276194057026 ], [ -95.36664100139815, 29.746760194231747 ], [ -95.365784001387027, 29.746241194338396 ], [ -95.365197001250422, 29.745885194222254 ], [ -95.364905001506543, 29.745761194643553 ], [ -95.364547001200236, 29.745608194254363 ], [ -95.364337001434464, 29.745508194501603 ], [ -95.36398000157422, 29.745367194531248 ], [ -95.363558001110661, 29.745219193802487 ], [ -95.363170000835638, 29.745068194364016 ], [ -95.362982000726419, 29.74498819434082 ], [ -95.362759000623555, 29.744898194553581 ], [ -95.362691000350097, 29.744870194389442 ], [ -95.362621001146422, 29.744961194245761 ], [ -95.362262001088297, 29.745426194745274 ], [ -95.362132000199253, 29.745594194208575 ], [ -95.361652000674439, 29.746162194465114 ], [ -95.361459000869104, 29.746391194674409 ], [ -95.361041000629797, 29.74688519475562 ], [ -95.360419999973033, 29.747621194470916 ], [ -95.360214000683044, 29.747859195099416 ], [ -95.359610000658009, 29.748558194861452 ], [ -95.358951999956503, 29.749274194949859 ], [ -95.358495999819112, 29.749770194861977 ], [ -95.357845999857048, 29.750481195130071 ], [ -95.35781699953894, 29.750511195115305 ], [ -95.35723099920051, 29.751240195698841 ], [ -95.356666999471472, 29.751941195408715 ], [ -95.356415999559985, 29.752253196279234 ], [ -95.356033999927647, 29.75272819586349 ], [ -95.355665998876859, 29.753189196490528 ], [ -95.355456998913823, 29.753451196224081 ], [ -95.354852998740085, 29.754209196430466 ], [ -95.354235999047802, 29.754982196535995 ], [ -95.354044999126202, 29.755237196248903 ], [ -95.353648998459036, 29.75576519677201 ], [ -95.353561998670884, 29.755880196303963 ], [ -95.353368999365514, 29.756105196346866 ], [ -95.353031998951352, 29.756498196842458 ], [ -95.352416998471512, 29.757263196833897 ], [ -95.351828999078933, 29.758002197536396 ], [ -95.351274998847344, 29.75875119702394 ], [ -95.351107998826365, 29.758984197281812 ], [ -95.350937998036201, 29.75923419776888 ], [ -95.350710998088573, 29.759589197920903 ], [ -95.350512997863007, 29.760010197412118 ], [ -95.35039399859626, 29.760418197936566 ], [ -95.350289998340315, 29.760828198280841 ], [ -95.35018899866833, 29.761284198221023 ], [ -95.350137997832618, 29.761535197647447 ], [ -95.350068998729498, 29.761927197741258 ], [ -95.349917998671003, 29.762690198587237 ], [ -95.349714998101248, 29.763490198471334 ], [ -95.349503998441392, 29.764086198584273 ], [ -95.349349997832192, 29.764486198183068 ], [ -95.349114998691093, 29.764898198825808 ], [ -95.348816997918817, 29.765349199197942 ], [ -95.348570998322103, 29.765735199243085 ], [ -95.348381998289682, 29.765966199313514 ], [ -95.348102997686397, 29.766176199258073 ], [ -95.347875997732189, 29.766365198966433 ], [ -95.347784998181723, 29.76644019953007 ], [ -95.347684998145013, 29.766517198760347 ], [ -95.347872997637239, 29.766541199277199 ], [ -95.348155997890686, 29.766453199052815 ], [ -95.348337998169669, 29.766398198927824 ], [ -95.348749998479633, 29.766127199435971 ], [ -95.349165998226042, 29.76568319902626 ], [ -95.349526998609136, 29.765444198412677 ], [ -95.349943998638949, 29.765290198455926 ], [ -95.350630998501245, 29.765164198300656 ], [ -95.35086099832921, 29.765184198705612 ], [ -95.351287999154792, 29.765221198391146 ], [ -95.352036999488377, 29.765515198896775 ], [ -95.3526409988213, 29.765752198553443 ], [ -95.353051999554054, 29.765772198467108 ], [ -95.353331999340014, 29.765708198957192 ], [ -95.353533999041133, 29.765585198273524 ], [ -95.353794999686713, 29.7650571990429 ], [ -95.353865998975323, 29.76470319854236 ], [ -95.353692999008516, 29.764166198764581 ], [ -95.35346499953279, 29.763458198637132 ], [ -95.353434999049227, 29.763112198628811 ], [ -95.353383999269212, 29.762527197689952 ], [ -95.353484998847037, 29.762220197780731 ], [ -95.353619999607574, 29.762106197672846 ], [ -95.353815999212998, 29.762049198168611 ], [ -95.354578999859555, 29.762195197923599 ], [ -95.356335999820175, 29.762730197920426 ], [ -95.356835999695818, 29.762900198379867 ], [ -95.357140000020351, 29.763055198370903 ], [ -95.357264000534883, 29.763118197862237 ], [ -95.357497000521064, 29.763273198560949 ], [ -95.357755000293494, 29.76344519769837 ], [ -95.357903000217334, 29.763615198596099 ], [ -95.358063000004009, 29.763512198335196 ], [ -95.358583000764881, 29.76317719801396 ], [ -95.358717001069536, 29.763082197598457 ], [ -95.358870000724025, 29.762966198219029 ], [ -95.358986000324705, 29.762854197702051 ], [ -95.359080000317846, 29.762744198112525 ], [ -95.35919100028309, 29.762586197894247 ], [ -95.359267000264055, 29.762490197837046 ], [ -95.35933800101634, 29.762392197900887 ], [ -95.359857001175442, 29.761729198165686 ], [ -95.360464000490239, 29.760976197668317 ], [ -95.361062001102383, 29.760230197652795 ], [ -95.361671000921234, 29.759441197208609 ], [ -95.362282000980557, 29.758674196772731 ], [ -95.362871001548413, 29.757929196593306 ], [ -95.363465001534109, 29.7571601967378 ], [ -95.364058001488829, 29.756435196670573 ], [ -95.364646001577512, 29.755694196708383 ], [ -95.365243001875285, 29.754934196204225 ], [ -95.36582600227473, 29.75419119609483 ], [ -95.366704002693339, 29.754723196481411 ], [ -95.36758800287781, 29.755255196378251 ], [ -95.368433002738016, 29.755763196284875 ], [ -95.368993003154642, 29.756110196451679 ], [ -95.369286003364877, 29.756296196419832 ], [ -95.368973003231659, 29.756678196110908 ], [ -95.368706003137632, 29.75703719609956 ], [ -95.368955002797009, 29.757182196581692 ], [ -95.369572003396939, 29.757552196778548 ], [ -95.370423003611833, 29.75803319699483 ], [ -95.371276003149063, 29.75857919704632 ], [ -95.371999003350339, 29.759058196961163 ], [ -95.37269900378341, 29.759543196584637 ], [ -95.372918004323154, 29.759684197096497 ], [ -95.373061004611259, 29.75976519706753 ], [ -95.373331004532886, 29.759905196968813 ], [ -95.373409004328309, 29.759946196714122 ], [ -95.373454004631284, 29.75996119654679 ], [ -95.373727004031949, 29.760053197211935 ], [ -95.373783004169809, 29.759920196580804 ], [ -95.37419100477733, 29.758962196923754 ], [ -95.374337004581065, 29.758603196444884 ], [ -95.374403004778131, 29.758462196809013 ], [ -95.374513004267982, 29.758135196405039 ], [ -95.374579004532421, 29.757780196239988 ], [ -95.374609004234713, 29.757617196621965 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 638, "Tract": "48201340702", "Area_SqMi": 0.49941829323271025, "total_2009": 104, "total_2010": 87, "total_2011": 115, "total_2012": 135, "total_2013": 127, "total_2014": 196, "total_2015": 86, "total_2016": 88, "total_2017": 180, "total_2018": 159, "total_2019": 158, "total_2020": 168, "age1": 13, "age2": 34, "age3": 20, "earn1": 20, "earn2": 23, "earn3": 24, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 5, "naics_s07": 3, "naics_s08": 7, "naics_s09": 14, "naics_s10": 0, "naics_s11": 6, "naics_s12": 1, "naics_s13": 0, "naics_s14": 1, "naics_s15": 10, "naics_s16": 10, "naics_s17": 0, "naics_s18": 3, "naics_s19": 3, "naics_s20": 0, "race1": 49, "race2": 9, "race3": 0, "race4": 7, "race5": 0, "race6": 2, "ethnicity1": 51, "ethnicity2": 16, "edu1": 4, "edu2": 9, "edu3": 23, "edu4": 18, "Shape_Length": 14964.699214517439, "Shape_Area": 13922927.252376467, "total_2021": 126, "total_2022": 67 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.148565937679024, 29.570769165993561 ], [ -95.148813938040036, 29.57058916582066 ], [ -95.147463938091349, 29.569140165351314 ], [ -95.146958937489075, 29.568598165231311 ], [ -95.146630937724808, 29.568246164904505 ], [ -95.1465429370854, 29.56815116528869 ], [ -95.146102937370614, 29.567680164688991 ], [ -95.14553193711555, 29.567065164672364 ], [ -95.145287937558606, 29.566804164741367 ], [ -95.145154937357404, 29.566663164748103 ], [ -95.144701937240853, 29.566176164610102 ], [ -95.144098936590979, 29.565527164191831 ], [ -95.14365893642578, 29.565054164919989 ], [ -95.143257936062383, 29.564621164657751 ], [ -95.142657936564049, 29.563976164265117 ], [ -95.141794935669893, 29.563048164009917 ], [ -95.141539936166907, 29.562774164233183 ], [ -95.140673935980686, 29.561890164171288 ], [ -95.140444935796594, 29.562054164501486 ], [ -95.1401749358442, 29.562248164446764 ], [ -95.139605935313512, 29.562656164163876 ], [ -95.138706934942931, 29.563293164441973 ], [ -95.138543935049043, 29.563409164162721 ], [ -95.138068935004583, 29.563746164520712 ], [ -95.137568934736478, 29.5641101642852 ], [ -95.13671093446942, 29.564715164559892 ], [ -95.135103934310635, 29.565859164595114 ], [ -95.13355993454357, 29.566938165401901 ], [ -95.133103933990398, 29.567272165599658 ], [ -95.132432934197311, 29.567768165814893 ], [ -95.132949933892888, 29.568332165310704 ], [ -95.133541933962505, 29.568979165782928 ], [ -95.134100934506137, 29.569588166111622 ], [ -95.13452893444159, 29.570057166005924 ], [ -95.136958935329247, 29.572675166588354 ], [ -95.137390935888206, 29.573134166242134 ], [ -95.137879935934194, 29.573653166109974 ], [ -95.138507936246739, 29.574324166982585 ], [ -95.139113935914864, 29.574971166770997 ], [ -95.139412935755132, 29.575290167126401 ], [ -95.139891936606872, 29.575779166470141 ], [ -95.140187936291753, 29.576099167040862 ], [ -95.140561936689636, 29.576523166632626 ], [ -95.142318937083886, 29.575277166582886 ], [ -95.144600937498865, 29.573646166547711 ], [ -95.147053937784435, 29.571860166207383 ], [ -95.147418938118932, 29.571606166014057 ], [ -95.148339938543756, 29.570934165305147 ], [ -95.148565937679024, 29.570769165993561 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 639, "Tract": "48201433004", "Area_SqMi": 0.19536723387895524, "total_2009": 1798, "total_2010": 1735, "total_2011": 1816, "total_2012": 1472, "total_2013": 1460, "total_2014": 1420, "total_2015": 1474, "total_2016": 1526, "total_2017": 1646, "total_2018": 1577, "total_2019": 1536, "total_2020": 1431, "age1": 255, "age2": 760, "age3": 430, "earn1": 467, "earn2": 587, "earn3": 391, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 5, "naics_s05": 29, "naics_s06": 108, "naics_s07": 87, "naics_s08": 3, "naics_s09": 8, "naics_s10": 23, "naics_s11": 117, "naics_s12": 138, "naics_s13": 6, "naics_s14": 38, "naics_s15": 0, "naics_s16": 608, "naics_s17": 0, "naics_s18": 209, "naics_s19": 50, "naics_s20": 10, "race1": 720, "race2": 424, "race3": 5, "race4": 280, "race5": 3, "race6": 13, "ethnicity1": 1047, "ethnicity2": 398, "edu1": 282, "edu2": 277, "edu3": 292, "edu4": 339, "Shape_Length": 10047.013378916228, "Shape_Area": 5446504.1061827019, "total_2021": 1429, "total_2022": 1445 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.548864046912897, 29.71898618267447 ], [ -95.548862047071722, 29.718634182053865 ], [ -95.548824047224286, 29.717239182256872 ], [ -95.548769047122406, 29.716798181662515 ], [ -95.548731046764544, 29.716584182341283 ], [ -95.547625046458805, 29.716822182438023 ], [ -95.547398047210351, 29.716891182318012 ], [ -95.54716004692547, 29.716349182039277 ], [ -95.546449046503653, 29.715359181461995 ], [ -95.54517004589222, 29.714194182076668 ], [ -95.544818046336047, 29.713792181389092 ], [ -95.54464704633105, 29.713499181529201 ], [ -95.544371046195565, 29.713622181424174 ], [ -95.543810045922953, 29.71386918211374 ], [ -95.543444046076402, 29.713991181867858 ], [ -95.543020045708246, 29.714062182092992 ], [ -95.542731045373614, 29.714086182156997 ], [ -95.542432045283633, 29.714087181506113 ], [ -95.541967045645109, 29.714040181516339 ], [ -95.541537044736202, 29.71394218195751 ], [ -95.541148045507441, 29.713832181388938 ], [ -95.540664044619533, 29.713729182013395 ], [ -95.54026804486405, 29.71367118134264 ], [ -95.539925045029179, 29.71363718143693 ], [ -95.539579044448288, 29.7136261817747 ], [ -95.538939044537159, 29.713636181659037 ], [ -95.538942044273085, 29.714493181589024 ], [ -95.538934044300646, 29.714642181862697 ], [ -95.538961044333121, 29.715489182208355 ], [ -95.538940044552049, 29.716110182495026 ], [ -95.538973044963939, 29.717692182895576 ], [ -95.539009045070841, 29.718609182610145 ], [ -95.539046044617919, 29.719077182972811 ], [ -95.5390640448353, 29.719534182939796 ], [ -95.539067045112745, 29.719716183333187 ], [ -95.543406045939804, 29.71944318280698 ], [ -95.544398046571175, 29.719339182993014 ], [ -95.544447046463318, 29.719341182773103 ], [ -95.545311046499336, 29.719272182723113 ], [ -95.546592046530179, 29.719170182857756 ], [ -95.547776047016427, 29.71908818252696 ], [ -95.548864046912897, 29.71898618267447 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 640, "Tract": "48201340501", "Area_SqMi": 0.79309612428945164, "total_2009": 323, "total_2010": 319, "total_2011": 355, "total_2012": 291, "total_2013": 351, "total_2014": 311, "total_2015": 326, "total_2016": 299, "total_2017": 230, "total_2018": 205, "total_2019": 212, "total_2020": 190, "age1": 22, "age2": 131, "age3": 49, "earn1": 16, "earn2": 19, "earn3": 167, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 154, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 7, "naics_s12": 5, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 5, "naics_s19": 14, "naics_s20": 0, "race1": 151, "race2": 26, "race3": 5, "race4": 14, "race5": 0, "race6": 6, "ethnicity1": 150, "ethnicity2": 52, "edu1": 20, "edu2": 26, "edu3": 64, "edu4": 70, "Shape_Length": 20112.411019982563, "Shape_Area": 22110162.547607157, "total_2021": 215, "total_2022": 202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.132432934197311, 29.567768165814893 ], [ -95.131747933219998, 29.567088165598744 ], [ -95.130182932917819, 29.56542916477764 ], [ -95.129526933416983, 29.564720164575515 ], [ -95.127801932472181, 29.562873164388996 ], [ -95.127320932123979, 29.562344164666431 ], [ -95.126713931813711, 29.561711164091854 ], [ -95.125564931880447, 29.562553164197208 ], [ -95.124478931299706, 29.563332165244134 ], [ -95.123436931415128, 29.564064164856049 ], [ -95.1231809311993, 29.564224165199978 ], [ -95.122665931055607, 29.564500164858682 ], [ -95.121892930640655, 29.564786165650755 ], [ -95.121276930903178, 29.564953165247974 ], [ -95.120122931150405, 29.565118165004499 ], [ -95.11908993062319, 29.565110165386905 ], [ -95.118663930634455, 29.565037165130303 ], [ -95.117984929865912, 29.56492016575875 ], [ -95.117265929530589, 29.564711165361093 ], [ -95.11636593011194, 29.56437816548533 ], [ -95.115620929542942, 29.564067165656169 ], [ -95.115126929221233, 29.563867165220131 ], [ -95.114361929140131, 29.563548165336023 ], [ -95.113001929247446, 29.566072165502632 ], [ -95.112653929191595, 29.56671816635837 ], [ -95.11195392897082, 29.568018166004311 ], [ -95.111559928347461, 29.568749166216392 ], [ -95.110998928967817, 29.569789166520877 ], [ -95.110418928036438, 29.570866166408631 ], [ -95.109601927995669, 29.572382166893377 ], [ -95.110376928942259, 29.57272416764371 ], [ -95.111843928726174, 29.573284167411753 ], [ -95.113805929187293, 29.574090167738429 ], [ -95.114436929558224, 29.574355167281105 ], [ -95.115130929497653, 29.574646167290634 ], [ -95.11642792992852, 29.575210167469702 ], [ -95.118497931012811, 29.576041168113253 ], [ -95.119292930987044, 29.576369167396827 ], [ -95.122014931851524, 29.577493167613447 ], [ -95.12239293172243, 29.576838167891605 ], [ -95.122667932207065, 29.576303167228005 ], [ -95.123327931466491, 29.575172167656881 ], [ -95.124233931793029, 29.573973166736607 ], [ -95.124782932115338, 29.573391166854027 ], [ -95.125093932536259, 29.57315216651072 ], [ -95.125551932232383, 29.572725166776753 ], [ -95.127727932657749, 29.571132166386764 ], [ -95.130157933248171, 29.569388165452462 ], [ -95.130585933152233, 29.569083166043637 ], [ -95.132432934197311, 29.567768165814893 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 641, "Tract": "48201341303", "Area_SqMi": 0.45204592079353179, "total_2009": 1874, "total_2010": 1783, "total_2011": 1669, "total_2012": 1669, "total_2013": 1534, "total_2014": 1770, "total_2015": 1172, "total_2016": 1134, "total_2017": 1021, "total_2018": 1217, "total_2019": 1351, "total_2020": 1323, "age1": 251, "age2": 946, "age3": 514, "earn1": 53, "earn2": 91, "earn3": 1567, "naics_s01": 0, "naics_s02": 48, "naics_s03": 0, "naics_s04": 0, "naics_s05": 42, "naics_s06": 0, "naics_s07": 0, "naics_s08": 3, "naics_s09": 3, "naics_s10": 22, "naics_s11": 1, "naics_s12": 1549, "naics_s13": 0, "naics_s14": 14, "naics_s15": 2, "naics_s16": 0, "naics_s17": 0, "naics_s18": 13, "naics_s19": 14, "naics_s20": 0, "race1": 1348, "race2": 161, "race3": 9, "race4": 164, "race5": 0, "race6": 29, "ethnicity1": 1377, "ethnicity2": 334, "edu1": 141, "edu2": 290, "edu3": 400, "edu4": 629, "Shape_Length": 14768.415762832081, "Shape_Area": 12602266.587397913, "total_2021": 1647, "total_2022": 1711 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.115728929791246, 29.5610101645348 ], [ -95.115482928815922, 29.560909164336454 ], [ -95.113393928516146, 29.560061164350412 ], [ -95.112377928813657, 29.55964116437368 ], [ -95.110319928024381, 29.558779164325646 ], [ -95.108879927908021, 29.558187164570377 ], [ -95.108426927352923, 29.558001163972829 ], [ -95.107960926803116, 29.557804164033282 ], [ -95.107420927525311, 29.558794164444095 ], [ -95.106861926658098, 29.559806164530567 ], [ -95.106484926980855, 29.560466165243273 ], [ -95.106264927306597, 29.560961165311209 ], [ -95.105736926767349, 29.561912165566469 ], [ -95.105340926666116, 29.562649165612598 ], [ -95.10389592621236, 29.565394166060774 ], [ -95.103266926671012, 29.566494166101137 ], [ -95.102826926089321, 29.567291166361684 ], [ -95.10244392658069, 29.568056166514527 ], [ -95.101816926362062, 29.569145166502175 ], [ -95.101789926584715, 29.569192167044491 ], [ -95.101850926395258, 29.569216166984276 ], [ -95.102391926583977, 29.569431166489125 ], [ -95.1029589261762, 29.56964716692509 ], [ -95.103218926094755, 29.569907166603706 ], [ -95.103401926243407, 29.570173167246175 ], [ -95.103601926602138, 29.5707061668096 ], [ -95.104046926265724, 29.570682167193272 ], [ -95.104377926626853, 29.570665166821431 ], [ -95.104665926467987, 29.570676166676936 ], [ -95.104779926647836, 29.570681167234572 ], [ -95.105057926876242, 29.570724167260778 ], [ -95.105497927348338, 29.570816167378979 ], [ -95.105974927252333, 29.570944167218549 ], [ -95.106792927100301, 29.571208167068608 ], [ -95.107265927497053, 29.571422166848546 ], [ -95.107530928001424, 29.571510167525929 ], [ -95.1079679273452, 29.571706167292451 ], [ -95.109395928734315, 29.572290166933826 ], [ -95.109601927995669, 29.572382166893377 ], [ -95.110418928036438, 29.570866166408631 ], [ -95.110998928967817, 29.569789166520877 ], [ -95.111559928347461, 29.568749166216392 ], [ -95.11195392897082, 29.568018166004311 ], [ -95.112653929191595, 29.56671816635837 ], [ -95.113001929247446, 29.566072165502632 ], [ -95.114361929140131, 29.563548165336023 ], [ -95.115728929791246, 29.5610101645348 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 642, "Tract": "48201252306", "Area_SqMi": 2.0617142178649588, "total_2009": 1139, "total_2010": 1364, "total_2011": 1709, "total_2012": 1532, "total_2013": 1554, "total_2014": 1632, "total_2015": 1772, "total_2016": 1922, "total_2017": 1928, "total_2018": 2047, "total_2019": 2086, "total_2020": 2091, "age1": 473, "age2": 1391, "age3": 576, "earn1": 264, "earn2": 822, "earn3": 1354, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 62, "naics_s05": 167, "naics_s06": 0, "naics_s07": 32, "naics_s08": 36, "naics_s09": 0, "naics_s10": 6, "naics_s11": 9, "naics_s12": 84, "naics_s13": 3, "naics_s14": 5, "naics_s15": 1851, "naics_s16": 28, "naics_s17": 14, "naics_s18": 23, "naics_s19": 106, "naics_s20": 14, "race1": 1787, "race2": 499, "race3": 24, "race4": 97, "race5": 1, "race6": 32, "ethnicity1": 1301, "ethnicity2": 1139, "edu1": 488, "edu2": 492, "edu3": 536, "edu4": 451, "Shape_Length": 31502.020748373568, "Shape_Area": 57477063.73492524, "total_2021": 2353, "total_2022": 2440 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.142793947465719, 29.815452215960789 ], [ -95.142793947945208, 29.815331216057466 ], [ -95.142705947589135, 29.814017215734857 ], [ -95.142686947112239, 29.812856215209528 ], [ -95.142507946962084, 29.811412214882608 ], [ -95.142463947286686, 29.811072215204636 ], [ -95.142445947208614, 29.810276215101808 ], [ -95.142419947655966, 29.809506214652011 ], [ -95.142377947615003, 29.808635215134842 ], [ -95.142361946767181, 29.807907214442992 ], [ -95.142313946917497, 29.805818214561562 ], [ -95.142310947014906, 29.805683214468459 ], [ -95.142316946914605, 29.805384214260162 ], [ -95.142308947104198, 29.805035214388877 ], [ -95.142281946547456, 29.80432721365689 ], [ -95.14225694639444, 29.803622214072753 ], [ -95.142251946912211, 29.803386213327013 ], [ -95.142216946994751, 29.80240821379229 ], [ -95.142190946549093, 29.801691213216731 ], [ -95.142171946688663, 29.800968213222543 ], [ -95.142150946273176, 29.80051021261605 ], [ -95.142147946694749, 29.800258212651535 ], [ -95.142144946231795, 29.800058212493912 ], [ -95.14213894687056, 29.79999221312913 ], [ -95.142134946279342, 29.799843212706758 ], [ -95.142116946845007, 29.799536212904844 ], [ -95.142091946276835, 29.799174212391375 ], [ -95.142081946793112, 29.79881121278396 ], [ -95.14206694687114, 29.798107212912125 ], [ -95.142063946562573, 29.798051212511712 ], [ -95.142047946589315, 29.797720212767512 ], [ -95.142041946527371, 29.79751021252028 ], [ -95.142009946908587, 29.79708021202315 ], [ -95.141981946219744, 29.796773212033553 ], [ -95.141936946754541, 29.796472212334571 ], [ -95.141925946164818, 29.796407211764837 ], [ -95.141901946472075, 29.796302212421867 ], [ -95.141873946477887, 29.796174212331159 ], [ -95.141776946636838, 29.795840211921394 ], [ -95.141763946534908, 29.795802211707496 ], [ -95.141734946297419, 29.795720212142967 ], [ -95.14166994655055, 29.795538211796977 ], [ -95.14161494657715, 29.795403211991239 ], [ -95.141293945778884, 29.794703211804165 ], [ -95.140973946158084, 29.794031211815117 ], [ -95.140836946163788, 29.793725211879284 ], [ -95.140727945684091, 29.79345421187605 ], [ -95.140647946480598, 29.793200211718371 ], [ -95.140584945542358, 29.792969211935969 ], [ -95.140560946005252, 29.792864211286627 ], [ -95.140498945915667, 29.79253221110617 ], [ -95.140465945687538, 29.792173211606165 ], [ -95.140457945705379, 29.792031211653143 ], [ -95.140448946146094, 29.791866211518812 ], [ -95.140448945955427, 29.791553211289934 ], [ -95.140439946139935, 29.791399211610752 ], [ -95.140438945379529, 29.791217210746659 ], [ -95.140407945459529, 29.790618211377804 ], [ -95.140379945707224, 29.790345211093676 ], [ -95.140371945803778, 29.790296210614706 ], [ -95.14030194585547, 29.789868210560421 ], [ -95.140286946031438, 29.789672210668222 ], [ -95.140283945733827, 29.789316210526586 ], [ -95.14028294561426, 29.788978210329326 ], [ -95.139843945829654, 29.788976210424043 ], [ -95.139808945638478, 29.78897721092104 ], [ -95.139420945884922, 29.788984210750737 ], [ -95.138989944968998, 29.788992210353211 ], [ -95.138973945260986, 29.788992210730214 ], [ -95.138448945426447, 29.788995210495184 ], [ -95.138082945234004, 29.788999210472006 ], [ -95.13776294462258, 29.789003210722989 ], [ -95.137619945184468, 29.789006210522878 ], [ -95.136822945016391, 29.789017210630075 ], [ -95.136001944742503, 29.789025211259798 ], [ -95.13561194477748, 29.78902721087066 ], [ -95.135145944795909, 29.789031210946895 ], [ -95.134639944648697, 29.789033210867675 ], [ -95.134282943985994, 29.789044210545185 ], [ -95.13387794397687, 29.789044210773937 ], [ -95.133677944376899, 29.789047211425885 ], [ -95.133397943810792, 29.789052210710686 ], [ -95.133299944283536, 29.789053210995828 ], [ -95.132731943434223, 29.789064210595445 ], [ -95.132543943508423, 29.78906721095915 ], [ -95.132427943431949, 29.789070210676918 ], [ -95.13214494390408, 29.789082210756071 ], [ -95.131491943584237, 29.78910321144301 ], [ -95.131440943779253, 29.789102211529446 ], [ -95.131285943229301, 29.789100210992686 ], [ -95.130922942874477, 29.789104211231937 ], [ -95.130108942657344, 29.789110211360608 ], [ -95.129294942456113, 29.789123210744613 ], [ -95.12913094320534, 29.789121211429531 ], [ -95.128861942254318, 29.789127211318252 ], [ -95.128466942656658, 29.7891302111668 ], [ -95.127657942481989, 29.789140210812704 ], [ -95.126832942270283, 29.789147211084128 ], [ -95.126320942012995, 29.789153211105525 ], [ -95.126100942087646, 29.789150211517239 ], [ -95.126006942554611, 29.789142210942881 ], [ -95.125811941533655, 29.789127211426418 ], [ -95.125435941459287, 29.789081211190805 ], [ -95.125164941883554, 29.789056211488528 ], [ -95.12483294144134, 29.789045211720698 ], [ -95.124643941798041, 29.78902521142814 ], [ -95.124644942032049, 29.789489211250032 ], [ -95.124626941356013, 29.789954211581062 ], [ -95.124590941710522, 29.790432211452053 ], [ -95.124573941757006, 29.790848212099771 ], [ -95.12456794174571, 29.791263211883678 ], [ -95.124563941711131, 29.791608212117325 ], [ -95.124523941918994, 29.792571211899563 ], [ -95.124487941486294, 29.79318121236301 ], [ -95.124466941814077, 29.793349212277608 ], [ -95.124413941345921, 29.79374921269028 ], [ -95.124387941890475, 29.794052212205578 ], [ -95.124285942359805, 29.795795212351123 ], [ -95.124200942253424, 29.797265213090839 ], [ -95.124145941904132, 29.79814921317865 ], [ -95.124117941858245, 29.798660213693228 ], [ -95.124103941962503, 29.798929213162598 ], [ -95.124087942116077, 29.799179213063514 ], [ -95.124073941798514, 29.799407213770149 ], [ -95.124029942141306, 29.800220214054594 ], [ -95.12400894207515, 29.800574213933746 ], [ -95.123984941660012, 29.801054214001336 ], [ -95.123973941912695, 29.801280214269198 ], [ -95.123973941603978, 29.801477214146235 ], [ -95.123995942435428, 29.801917214272965 ], [ -95.124003942122002, 29.801997214143629 ], [ -95.124026942138457, 29.80220321382221 ], [ -95.124106942644119, 29.802797214345322 ], [ -95.124118942410959, 29.802886214378479 ], [ -95.124237942701129, 29.803668214487356 ], [ -95.124316942385448, 29.804156213992449 ], [ -95.124536942286881, 29.805457214274849 ], [ -95.124736942846198, 29.806702214990519 ], [ -95.124827942943128, 29.80722221514042 ], [ -95.12491394275159, 29.807754214801708 ], [ -95.124964942966514, 29.808065215520049 ], [ -95.125268942594133, 29.809804215690701 ], [ -95.125343942841923, 29.810306215374908 ], [ -95.12547594322443, 29.811292215751411 ], [ -95.125508942988333, 29.811496215997959 ], [ -95.125556943132381, 29.811773216188971 ], [ -95.125824943386618, 29.813240216509175 ], [ -95.126355943525979, 29.816121216481172 ], [ -95.12651994362858, 29.816942217040481 ], [ -95.1267769439999, 29.818402217245193 ], [ -95.126917943770493, 29.819181217832419 ], [ -95.127014943955359, 29.819663217928756 ], [ -95.127095943232092, 29.820101217888936 ], [ -95.127137943595073, 29.820323218002336 ], [ -95.127165943260323, 29.820514218073257 ], [ -95.127380944233678, 29.820464217624199 ], [ -95.127934944177923, 29.820344217219482 ], [ -95.128736944425327, 29.820171217323889 ], [ -95.128957944340513, 29.820119217487299 ], [ -95.129410944670397, 29.819996217221917 ], [ -95.129869944109714, 29.819852217361024 ], [ -95.130101944441307, 29.819774217403399 ], [ -95.130800944983918, 29.819527216954604 ], [ -95.131306944766877, 29.81935821766908 ], [ -95.131521944582957, 29.819286217031767 ], [ -95.132272944502404, 29.819057217328538 ], [ -95.133036945061477, 29.818833216675102 ], [ -95.133800945637574, 29.818602216654558 ], [ -95.13431894501629, 29.818436217071852 ], [ -95.134573945181955, 29.818348217121841 ], [ -95.135347945385959, 29.81806921716003 ], [ -95.136983945675539, 29.81750221671447 ], [ -95.138564946509263, 29.816939216649974 ], [ -95.138615946929008, 29.816921216854126 ], [ -95.139326946760193, 29.8166762165168 ], [ -95.139835946994637, 29.816495216452946 ], [ -95.139850946738036, 29.81649021674275 ], [ -95.140834947563235, 29.816143216394881 ], [ -95.141502946921193, 29.815902216214248 ], [ -95.142626947669598, 29.815510216078938 ], [ -95.142793947465719, 29.815452215960789 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 643, "Tract": "48201532301", "Area_SqMi": 0.9052895947395766, "total_2009": 5270, "total_2010": 5046, "total_2011": 5963, "total_2012": 5980, "total_2013": 6185, "total_2014": 6458, "total_2015": 6676, "total_2016": 6216, "total_2017": 6393, "total_2018": 6895, "total_2019": 7368, "total_2020": 7063, "age1": 1893, "age2": 3957, "age3": 1550, "earn1": 1055, "earn2": 2107, "earn3": 4238, "naics_s01": 0, "naics_s02": 90, "naics_s03": 1, "naics_s04": 756, "naics_s05": 175, "naics_s06": 1211, "naics_s07": 1047, "naics_s08": 74, "naics_s09": 89, "naics_s10": 388, "naics_s11": 97, "naics_s12": 645, "naics_s13": 12, "naics_s14": 2062, "naics_s15": 2, "naics_s16": 27, "naics_s17": 46, "naics_s18": 675, "naics_s19": 2, "naics_s20": 1, "race1": 4861, "race2": 1495, "race3": 54, "race4": 875, "race5": 10, "race6": 105, "ethnicity1": 5083, "ethnicity2": 2317, "edu1": 1250, "edu2": 1418, "edu3": 1648, "edu4": 1191, "Shape_Length": 21283.298703231852, "Shape_Area": 25237924.48271288, "total_2021": 7108, "total_2022": 7400 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.524543047798289, 29.865559213439482 ], [ -95.524484047104636, 29.864060212575001 ], [ -95.524449047752086, 29.862344212549107 ], [ -95.524396047236095, 29.860895212701827 ], [ -95.524385046945923, 29.85997321242877 ], [ -95.524373047471357, 29.859651211742147 ], [ -95.524369047692232, 29.859534211888626 ], [ -95.524365047260247, 29.859438211993695 ], [ -95.524081046901046, 29.859286212253778 ], [ -95.520488046676434, 29.857270212107885 ], [ -95.519403045590252, 29.856661212052419 ], [ -95.518403045776452, 29.856073211381361 ], [ -95.515442045282953, 29.85441821116865 ], [ -95.515290044495799, 29.854333211619231 ], [ -95.511255044071888, 29.852066211216091 ], [ -95.511089043149454, 29.851973210938219 ], [ -95.510300043363273, 29.851521211124226 ], [ -95.510138043608947, 29.85143421136328 ], [ -95.509866043195046, 29.851293210752942 ], [ -95.509558043371399, 29.851113210563458 ], [ -95.505699041901707, 29.848928210117432 ], [ -95.505520041969987, 29.848826210586193 ], [ -95.505479041845149, 29.848903210951885 ], [ -95.505419041546844, 29.849017210703014 ], [ -95.505310042301431, 29.84922421050646 ], [ -95.504960041987502, 29.850013210449326 ], [ -95.504872041535293, 29.850368211208917 ], [ -95.504782042401828, 29.85072921090428 ], [ -95.504772041566071, 29.850767211046449 ], [ -95.504654042246571, 29.851597211223083 ], [ -95.504665042121871, 29.851791211641636 ], [ -95.50465504177366, 29.852226211427372 ], [ -95.504678041999895, 29.853263211330216 ], [ -95.504719042475912, 29.85361421177728 ], [ -95.504857042525444, 29.854166212053546 ], [ -95.504870041649667, 29.854209211741288 ], [ -95.505082041827507, 29.854902212224363 ], [ -95.505159042274556, 29.855138211971298 ], [ -95.505217042650216, 29.855317212339777 ], [ -95.505353042662492, 29.855733212186244 ], [ -95.505390042431628, 29.855865211582408 ], [ -95.505391042386066, 29.855946211605367 ], [ -95.505400042573868, 29.856914212642813 ], [ -95.505132041975898, 29.857941212488775 ], [ -95.504956042679694, 29.858708212503899 ], [ -95.504850042731192, 29.859303212789627 ], [ -95.504851042023262, 29.859486212875552 ], [ -95.504852041921993, 29.859964212399042 ], [ -95.504881042089735, 29.860421212972337 ], [ -95.505028041989888, 29.860903213332836 ], [ -95.505058042818888, 29.860977212763125 ], [ -95.505420042787222, 29.861737213127739 ], [ -95.505591042314038, 29.862056213142225 ], [ -95.505924042519112, 29.86253921330006 ], [ -95.50648604268433, 29.863388213141317 ], [ -95.506670043463515, 29.863669213649153 ], [ -95.506690043484539, 29.863765213137846 ], [ -95.506788043132346, 29.86423721364098 ], [ -95.506904043273778, 29.864796213788644 ], [ -95.506849042770284, 29.865606213674539 ], [ -95.50981804398414, 29.865600213662152 ], [ -95.510604044449707, 29.865617214138506 ], [ -95.511365044513553, 29.865591214100167 ], [ -95.51152104390134, 29.865588213646976 ], [ -95.515556045609912, 29.865555213571408 ], [ -95.518042046437301, 29.865549213805746 ], [ -95.520029046596363, 29.865529213539521 ], [ -95.520583046436627, 29.865519213398436 ], [ -95.52124204630114, 29.865529213464292 ], [ -95.521904047250217, 29.865514213802658 ], [ -95.5222380465936, 29.865516213217507 ], [ -95.522795046843939, 29.865504212975146 ], [ -95.523018047415562, 29.865504213135114 ], [ -95.524094047955785, 29.865501212920638 ], [ -95.524543047798289, 29.865559213439482 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 644, "Tract": "48201554701", "Area_SqMi": 0.57670874049715315, "total_2009": 945, "total_2010": 1146, "total_2011": 1983, "total_2012": 1738, "total_2013": 1558, "total_2014": 1859, "total_2015": 1978, "total_2016": 2111, "total_2017": 1683, "total_2018": 1593, "total_2019": 1552, "total_2020": 1463, "age1": 473, "age2": 585, "age3": 290, "earn1": 377, "earn2": 532, "earn3": 439, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 22, "naics_s05": 22, "naics_s06": 9, "naics_s07": 685, "naics_s08": 7, "naics_s09": 0, "naics_s10": 25, "naics_s11": 21, "naics_s12": 48, "naics_s13": 4, "naics_s14": 10, "naics_s15": 3, "naics_s16": 18, "naics_s17": 0, "naics_s18": 427, "naics_s19": 46, "naics_s20": 0, "race1": 1018, "race2": 184, "race3": 17, "race4": 97, "race5": 4, "race6": 28, "ethnicity1": 859, "ethnicity2": 489, "edu1": 207, "edu2": 225, "edu3": 282, "edu4": 161, "Shape_Length": 18701.681251357648, "Shape_Area": 16077652.638186576, "total_2021": 1374, "total_2022": 1348 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.593485071420858, 30.004048238918806 ], [ -95.593491071341035, 30.00393823911044 ], [ -95.593475071139835, 30.003480238680126 ], [ -95.59335507128587, 29.997362237502209 ], [ -95.59334407067675, 29.996787237424808 ], [ -95.593347070843862, 29.996669237807147 ], [ -95.593216071600366, 29.996669237626875 ], [ -95.592478070773097, 29.996645237859813 ], [ -95.591431070869717, 29.99663923760837 ], [ -95.590616070642071, 29.996647237391905 ], [ -95.590526070799186, 29.996645238166785 ], [ -95.590061070122431, 29.996644237774486 ], [ -95.589489070048202, 29.996643237503893 ], [ -95.588478069536038, 29.996634237395121 ], [ -95.58824406938902, 29.996633238168354 ], [ -95.587941069716521, 29.996633237681788 ], [ -95.587759069245436, 29.996622237843251 ], [ -95.587718069664589, 29.996627237960048 ], [ -95.587575069870823, 29.996640238199976 ], [ -95.587381069977795, 29.996651237681018 ], [ -95.587120069967611, 29.996656237507469 ], [ -95.586895069973409, 29.996655238070964 ], [ -95.585650069525329, 29.996651238311831 ], [ -95.585501069532711, 29.996651237854646 ], [ -95.585277069237662, 29.996644237509827 ], [ -95.584705069117931, 29.99661423782862 ], [ -95.584369068513183, 29.996607237512581 ], [ -95.584004069025966, 29.996608238255277 ], [ -95.583851068291736, 29.996609238039252 ], [ -95.58365506911278, 29.996611237942119 ], [ -95.581835068651429, 29.996624238394102 ], [ -95.579976068183328, 29.996654237913834 ], [ -95.579917068222642, 29.996655238443267 ], [ -95.579850067818583, 29.996653238233545 ], [ -95.579834067696453, 29.996650237803816 ], [ -95.57976906818466, 29.996656238162366 ], [ -95.579711067207242, 29.996656237839144 ], [ -95.579545067609502, 29.996657238376631 ], [ -95.579471067875232, 29.996658238523047 ], [ -95.579274067100201, 29.996659238097326 ], [ -95.57919306724466, 29.996660238525166 ], [ -95.57909506745527, 29.996661238271052 ], [ -95.578973067614314, 29.996662237717096 ], [ -95.578548067848729, 29.996664237968631 ], [ -95.578885067274854, 29.99706623785794 ], [ -95.579842067329238, 29.998204238724039 ], [ -95.580538067841047, 29.998916238273683 ], [ -95.580813067771658, 29.999249238407756 ], [ -95.581129068009531, 29.999651238859133 ], [ -95.58140406796997, 30.000011239144953 ], [ -95.582106068931822, 30.000950238624842 ], [ -95.582449068641182, 30.001410238755749 ], [ -95.582682068668106, 30.001724239476921 ], [ -95.58297006825633, 30.002061239474855 ], [ -95.58351806926828, 30.002705239408403 ], [ -95.584024069260408, 30.003342238985834 ], [ -95.584277069079221, 30.003686239400643 ], [ -95.584294069008081, 30.003708239828448 ], [ -95.584360069429621, 30.003791239307173 ], [ -95.584544069279673, 30.004023239467251 ], [ -95.584867068861982, 30.004440239201621 ], [ -95.584934069741891, 30.004526239482949 ], [ -95.584953069455139, 30.00455323931493 ], [ -95.585007069130512, 30.004630239170481 ], [ -95.585073069678785, 30.004724239381577 ], [ -95.585365069203959, 30.005140239342946 ], [ -95.585736069671981, 30.005728240088132 ], [ -95.585892070224148, 30.006002239409511 ], [ -95.586020070189861, 30.006195240053035 ], [ -95.58618707028208, 30.006467239562841 ], [ -95.586864069763678, 30.007626240352881 ], [ -95.587321070575598, 30.008482239994528 ], [ -95.588039070894197, 30.00963324045351 ], [ -95.588174070464746, 30.009891240666846 ], [ -95.588219070812116, 30.009968240543586 ], [ -95.588472071037415, 30.010433240927213 ], [ -95.588740070666148, 30.010860240911558 ], [ -95.589149070656063, 30.011592240774505 ], [ -95.589239070752143, 30.011763240875354 ], [ -95.589329070998616, 30.011894241098339 ], [ -95.589451070966106, 30.012065241140323 ], [ -95.589557070662366, 30.012261240545147 ], [ -95.589835070535571, 30.012726241442561 ], [ -95.58994907062241, 30.013004240965024 ], [ -95.590030071182881, 30.013100240819536 ], [ -95.590536070898821, 30.013071241478603 ], [ -95.590781071181482, 30.013060241223958 ], [ -95.590887071659253, 30.013056241491228 ], [ -95.591001071025815, 30.013052240673893 ], [ -95.591124071017106, 30.013048240703704 ], [ -95.591197071503501, 30.013046240965895 ], [ -95.59124207099255, 30.013045241029275 ], [ -95.591810071159969, 30.013028240731316 ], [ -95.592211071253359, 30.013020241379266 ], [ -95.592474071634555, 30.013022240873152 ], [ -95.592865072051495, 30.0130392408633 ], [ -95.59304307203665, 30.013040240554968 ], [ -95.593261071619992, 30.013037240720291 ], [ -95.593257071784251, 30.012924241243287 ], [ -95.593255072255317, 30.012868241069665 ], [ -95.593208071481797, 30.011369240931312 ], [ -95.593200072228825, 30.010788240309235 ], [ -95.593198071737078, 30.010732240065682 ], [ -95.59317607141368, 30.009906240106663 ], [ -95.593134071817985, 30.00835723967224 ], [ -95.593131071987088, 30.008237239957456 ], [ -95.593098071728832, 30.007703239961156 ], [ -95.593106072071876, 30.007315239913275 ], [ -95.593100071220746, 30.005032238954637 ], [ -95.593485071420858, 30.004048238918806 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 645, "Tract": "48201554202", "Area_SqMi": 1.6569743603977751, "total_2009": 1489, "total_2010": 1248, "total_2011": 1626, "total_2012": 2648, "total_2013": 3203, "total_2014": 3760, "total_2015": 4327, "total_2016": 4547, "total_2017": 4537, "total_2018": 4646, "total_2019": 5081, "total_2020": 4907, "age1": 1763, "age2": 2406, "age3": 936, "earn1": 1200, "earn2": 1886, "earn3": 2019, "naics_s01": 1, "naics_s02": 18, "naics_s03": 104, "naics_s04": 331, "naics_s05": 64, "naics_s06": 194, "naics_s07": 1333, "naics_s08": 0, "naics_s09": 55, "naics_s10": 135, "naics_s11": 59, "naics_s12": 549, "naics_s13": 0, "naics_s14": 33, "naics_s15": 65, "naics_s16": 652, "naics_s17": 34, "naics_s18": 1279, "naics_s19": 199, "naics_s20": 0, "race1": 3815, "race2": 786, "race3": 26, "race4": 376, "race5": 2, "race6": 100, "ethnicity1": 3514, "ethnicity2": 1591, "edu1": 637, "edu2": 892, "edu3": 1009, "edu4": 804, "Shape_Length": 46482.249493172669, "Shape_Area": 46193609.227929346, "total_2021": 4917, "total_2022": 5105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.590030071182881, 30.013100240819536 ], [ -95.58994907062241, 30.013004240965024 ], [ -95.589835070535571, 30.012726241442561 ], [ -95.589557070662366, 30.012261240545147 ], [ -95.589451070966106, 30.012065241140323 ], [ -95.589329070998616, 30.011894241098339 ], [ -95.589239070752143, 30.011763240875354 ], [ -95.589149070656063, 30.011592240774505 ], [ -95.588740070666148, 30.010860240911558 ], [ -95.588472071037415, 30.010433240927213 ], [ -95.588219070812116, 30.009968240543586 ], [ -95.588174070464746, 30.009891240666846 ], [ -95.588039070894197, 30.00963324045351 ], [ -95.587321070575598, 30.008482239994528 ], [ -95.586864069763678, 30.007626240352881 ], [ -95.58618707028208, 30.006467239562841 ], [ -95.586020070189861, 30.006195240053035 ], [ -95.585892070224148, 30.006002239409511 ], [ -95.585736069671981, 30.005728240088132 ], [ -95.585365069203959, 30.005140239342946 ], [ -95.585073069678785, 30.004724239381577 ], [ -95.585007069130512, 30.004630239170481 ], [ -95.584953069455139, 30.00455323931493 ], [ -95.584934069741891, 30.004526239482949 ], [ -95.584867068861982, 30.004440239201621 ], [ -95.584544069279673, 30.004023239467251 ], [ -95.584360069429621, 30.003791239307173 ], [ -95.584294069008081, 30.003708239828448 ], [ -95.584277069079221, 30.003686239400643 ], [ -95.584024069260408, 30.003342238985834 ], [ -95.58351806926828, 30.002705239408403 ], [ -95.58297006825633, 30.002061239474855 ], [ -95.582682068668106, 30.001724239476921 ], [ -95.582449068641182, 30.001410238755749 ], [ -95.582106068931822, 30.000950238624842 ], [ -95.58140406796997, 30.000011239144953 ], [ -95.581129068009531, 29.999651238859133 ], [ -95.580813067771658, 29.999249238407756 ], [ -95.580538067841047, 29.998916238273683 ], [ -95.579842067329238, 29.998204238724039 ], [ -95.578885067274854, 29.99706623785794 ], [ -95.578548067848729, 29.996664237968631 ], [ -95.578327067378652, 29.996429237875638 ], [ -95.57644406666212, 29.99441823736424 ], [ -95.576351067093029, 29.994319237946108 ], [ -95.57587106626525, 29.993811237821255 ], [ -95.575496066852011, 29.993388237382902 ], [ -95.575087066823301, 29.992844237264517 ], [ -95.575025065924223, 29.992769237270039 ], [ -95.574960065863223, 29.99269123739715 ], [ -95.574618065845343, 29.992253237627725 ], [ -95.574501065739909, 29.992087237416634 ], [ -95.573903065776634, 29.991244237422617 ], [ -95.573768065533059, 29.991054236910173 ], [ -95.573429066101653, 29.990574236703868 ], [ -95.57191406499237, 29.988478237151245 ], [ -95.571676065326102, 29.988143236235707 ], [ -95.571568064978422, 29.987991236598472 ], [ -95.571191065306024, 29.987462236542921 ], [ -95.570665064980773, 29.986653236279466 ], [ -95.570401064561764, 29.986248236277067 ], [ -95.570087065171549, 29.985771236322115 ], [ -95.570020064451924, 29.985825236393502 ], [ -95.569996064743407, 29.985845236041811 ], [ -95.569974064989069, 29.985863236155957 ], [ -95.569946064285361, 29.985879236379301 ], [ -95.569848064898309, 29.98593423626038 ], [ -95.569702064686837, 29.985962236718372 ], [ -95.569140064796926, 29.985918236246107 ], [ -95.568667064347224, 29.985824236619472 ], [ -95.568389064245395, 29.985780236429012 ], [ -95.568004064407233, 29.985610236669022 ], [ -95.56756206450369, 29.985159236547815 ], [ -95.5673720643005, 29.984906236197101 ], [ -95.567183063940405, 29.984686235996275 ], [ -95.567037064142838, 29.984576236238048 ], [ -95.566797063885815, 29.98448923588337 ], [ -95.566652063455692, 29.984511235804661 ], [ -95.566526063316118, 29.984577236287269 ], [ -95.566242063408481, 29.984846236505525 ], [ -95.566116063954325, 29.984917235893281 ], [ -95.566040063653858, 29.984917235914743 ], [ -95.565850063484802, 29.984835236240819 ], [ -95.565560063349935, 29.984692235848836 ], [ -95.565326063057782, 29.984610235715305 ], [ -95.565174062983047, 29.984588235894428 ], [ -95.565111063092672, 29.984588235726889 ], [ -95.564998063309858, 29.984610236388509 ], [ -95.564947063097534, 29.984648236547635 ], [ -95.564922063541559, 29.984709236383956 ], [ -95.564928063667821, 29.984857235933823 ], [ -95.564909063817169, 29.984929236148943 ], [ -95.564846063177882, 29.984995236236735 ], [ -95.5647180636537, 29.985028236070455 ], [ -95.56448606367573, 29.985132235899442 ], [ -95.564012062639804, 29.985361236449311 ], [ -95.563291063402204, 29.985406235989441 ], [ -95.563032062616927, 29.985423236286387 ], [ -95.562235062789966, 29.985324236226795 ], [ -95.561835062235943, 29.985258236046754 ], [ -95.561552062372584, 29.985353236413513 ], [ -95.561426063005314, 29.985494236579402 ], [ -95.561370062917945, 29.985668236576153 ], [ -95.561370062285405, 29.985896236165672 ], [ -95.561339062006937, 29.986077236521123 ], [ -95.56133906263004, 29.986209236483173 ], [ -95.561268062951186, 29.98634523648273 ], [ -95.561166062259076, 29.986424236821708 ], [ -95.561079062722058, 29.986471236523407 ], [ -95.560929062242153, 29.986487236608738 ], [ -95.560646062649042, 29.986416236747022 ], [ -95.56041706278684, 29.986384236918603 ], [ -95.560087062144987, 29.986384236781735 ], [ -95.559795062379507, 29.986432236989884 ], [ -95.559628061715046, 29.986449237046138 ], [ -95.559521062266271, 29.986576237018806 ], [ -95.559519061886718, 29.98673423718763 ], [ -95.559512061835918, 29.986841236606317 ], [ -95.559693061865914, 29.987125237237571 ], [ -95.559866062318477, 29.987290237149249 ], [ -95.559971061720745, 29.98752423667495 ], [ -95.560022062629585, 29.987881237196149 ], [ -95.559984062228466, 29.988744236772149 ], [ -95.560066062759262, 29.989046236814602 ], [ -95.560174062521824, 29.989299237635468 ], [ -95.560470062205397, 29.989794237558858 ], [ -95.560540062569004, 29.989926237475917 ], [ -95.560597062866165, 29.990212237089096 ], [ -95.560540062335846, 29.990322237737512 ], [ -95.560597062473789, 29.990371237735541 ], [ -95.560786062675717, 29.990410237380409 ], [ -95.560856062371371, 29.990382237299425 ], [ -95.560894063049375, 29.990349237200874 ], [ -95.561007062214998, 29.990184237002779 ], [ -95.561171062861092, 29.990179237204643 ], [ -95.561392062839971, 29.99020623719445 ], [ -95.562554062931326, 29.990074237810187 ], [ -95.563173062723408, 29.989799237019596 ], [ -95.563678062913283, 29.989513237148326 ], [ -95.56388706361794, 29.989414237024764 ], [ -95.56397506286244, 29.989431236969388 ], [ -95.564222063859887, 29.989645237375978 ], [ -95.56450606306565, 29.989915236838108 ], [ -95.564758063114709, 29.990096237536587 ], [ -95.565068063914765, 29.990244237130472 ], [ -95.56524506365426, 29.99036023735761 ], [ -95.565586063919383, 29.990624237811083 ], [ -95.566483064125833, 29.991503237400824 ], [ -95.566697064092509, 29.991756237905268 ], [ -95.567070063959591, 29.99203123753173 ], [ -95.567354064399666, 29.99212423771678 ], [ -95.567733064649531, 29.99235523759339 ], [ -95.567764064792527, 29.99236823770973 ], [ -95.567967064931935, 29.992454237828039 ], [ -95.568030064178487, 29.992531237912843 ], [ -95.568118064350926, 29.992696237667943 ], [ -95.568460065108852, 29.993570237669388 ], [ -95.568441064218149, 29.993817237832467 ], [ -95.568422064868813, 29.993982238323667 ], [ -95.568378064954473, 29.994142238037167 ], [ -95.568314064489414, 29.994306237699913 ], [ -95.567860064355813, 29.995164237915645 ], [ -95.567532064990772, 29.995939238280162 ], [ -95.567462064834288, 29.996148238002746 ], [ -95.567468064118188, 29.996313238101042 ], [ -95.567544064722071, 29.996868238464419 ], [ -95.567657064477629, 29.997316238815614 ], [ -95.567854064336728, 29.998094238373763 ], [ -95.567899064469103, 29.998338238818516 ], [ -95.567961064501034, 29.998671239211017 ], [ -95.567993064611144, 29.998792238852459 ], [ -95.568296065043469, 29.998886238935508 ], [ -95.56840806469755, 29.998941238868245 ], [ -95.568486064541375, 29.998979238822081 ], [ -95.569193065086353, 29.999248239303732 ], [ -95.56934506559648, 29.999353238853349 ], [ -95.569389065443929, 29.999463239197972 ], [ -95.569458065595782, 29.999699238793319 ], [ -95.569497064772662, 30.0000052393857 ], [ -95.569503065243183, 30.000143239287361 ], [ -95.569711064948152, 30.000824239720096 ], [ -95.569793065724923, 30.000934239123549 ], [ -95.569838065280734, 30.000967239258731 ], [ -95.56988706551445, 30.000982239073803 ], [ -95.570109065848712, 30.001050239757319 ], [ -95.570583065704739, 30.001123239779364 ], [ -95.571568065644414, 30.001275239709877 ], [ -95.571714065575094, 30.001341239248944 ], [ -95.571828066226814, 30.001428239322863 ], [ -95.572351066150247, 30.001830239205535 ], [ -95.572775065791291, 30.002171239368462 ], [ -95.572996065990296, 30.002440239945937 ], [ -95.57323606667957, 30.002770239858361 ], [ -95.573495066228361, 30.003138239258938 ], [ -95.573627066858663, 30.003408240110726 ], [ -95.573646066859837, 30.003479240015253 ], [ -95.57365306620764, 30.003639240158954 ], [ -95.573659066622682, 30.003655240169127 ], [ -95.573678066567709, 30.003705239545553 ], [ -95.573684065948299, 30.003853240048176 ], [ -95.573722066982128, 30.004100239683098 ], [ -95.57383606628008, 30.004584240199986 ], [ -95.574013066898559, 30.005134239627875 ], [ -95.574042066553034, 30.005277239839113 ], [ -95.574101066480026, 30.005568239678098 ], [ -95.574101066699583, 30.005662240106503 ], [ -95.574076067045127, 30.005739239756572 ], [ -95.574095066249242, 30.005942239908183 ], [ -95.574139066444033, 30.006173240187834 ], [ -95.574259066452541, 30.006404239892134 ], [ -95.574405067288438, 30.006772240496776 ], [ -95.574462067038539, 30.006887239953784 ], [ -95.574771066683397, 30.007206240853673 ], [ -95.574961066792909, 30.007563240417504 ], [ -95.575036067098296, 30.007761240098759 ], [ -95.57505506698952, 30.007871240529418 ], [ -95.57510606713646, 30.007992240240991 ], [ -95.575314066799947, 30.008218240207121 ], [ -95.575417067162803, 30.008393240783182 ], [ -95.575485067111742, 30.008509240341215 ], [ -95.575561067217635, 30.008613240450476 ], [ -95.575599067405562, 30.008811240573579 ], [ -95.575536066810344, 30.008960240840263 ], [ -95.575523066968842, 30.009008240850548 ], [ -95.575529067055768, 30.00902624076689 ], [ -95.57555506744437, 30.009059240909401 ], [ -95.575624067150258, 30.009103240784373 ], [ -95.575656067714405, 30.009103240595184 ], [ -95.575700067484391, 30.009119240649817 ], [ -95.575801067623971, 30.009119241055537 ], [ -95.575864067370944, 30.009136240706276 ], [ -95.575927067069216, 30.009191241160622 ], [ -95.575959067141099, 30.009268240770815 ], [ -95.575984067339547, 30.009432240760809 ], [ -95.576041067692145, 30.009537240957712 ], [ -95.576306067583829, 30.009894240740564 ], [ -95.576351067844683, 30.009943240603032 ], [ -95.57646406717987, 30.010065241149434 ], [ -95.576490067149209, 30.010125240751503 ], [ -95.576483067949226, 30.010218241280402 ], [ -95.576490067280062, 30.01031224115777 ], [ -95.576515067348438, 30.010350240969242 ], [ -95.576559067239728, 30.010383241084959 ], [ -95.576869067974727, 30.010477240812111 ], [ -95.576963067675436, 30.010515241442615 ], [ -95.577039067292972, 30.010565241213158 ], [ -95.577140068160176, 30.010713241016632 ], [ -95.577279068193747, 30.010823241447916 ], [ -95.577330067984789, 30.010878241395119 ], [ -95.577443068256542, 30.011065241502962 ], [ -95.577506068257833, 30.011140241552333 ], [ -95.57735306809731, 30.011224240751808 ], [ -95.577105067666423, 30.011306240781476 ], [ -95.576974067209093, 30.011339241249001 ], [ -95.576851068008281, 30.011355241138915 ], [ -95.576585067155904, 30.011418241453601 ], [ -95.576297067379329, 30.011478241024069 ], [ -95.576016067843099, 30.011519241100903 ], [ -95.575874067744081, 30.011532241331103 ], [ -95.575096067198601, 30.011540241049403 ], [ -95.574942066869426, 30.011534241726043 ], [ -95.574777067188464, 30.011542240969192 ], [ -95.574287066828688, 30.011548240917008 ], [ -95.574123066926532, 30.011547241192932 ], [ -95.573599066932786, 30.011561240921985 ], [ -95.573428066711443, 30.011554241282013 ], [ -95.573336066729269, 30.011554241280869 ], [ -95.572887066892392, 30.011558241245936 ], [ -95.57269606707824, 30.011572241774829 ], [ -95.572331066825228, 30.011579241167837 ], [ -95.572153066617673, 30.011578241041175 ], [ -95.571970066370298, 30.011586241452001 ], [ -95.571792066629669, 30.011584241739669 ], [ -95.571610066012667, 30.011588241810319 ], [ -95.57126106668035, 30.011588241242588 ], [ -95.571088066118804, 30.011599241220306 ], [ -95.570934065792031, 30.011595241857723 ], [ -95.570788065859858, 30.01159824181579 ], [ -95.570653065944299, 30.011609241901532 ], [ -95.570624066314636, 30.011608241688759 ], [ -95.570545065694603, 30.011604241193965 ], [ -95.570433065497639, 30.01161324149103 ], [ -95.570257065652399, 30.011610241138079 ], [ -95.570026066154398, 30.011612241707326 ], [ -95.569919065549499, 30.011617241875925 ], [ -95.56983206559606, 30.011616241663983 ], [ -95.569718065427125, 30.011616241542633 ], [ -95.56938206579494, 30.011617241332281 ], [ -95.569286065243531, 30.011614241928864 ], [ -95.569177065655495, 30.01162224107016 ], [ -95.569071065358287, 30.011616241491012 ], [ -95.568564065142169, 30.011628241451703 ], [ -95.567567064974909, 30.011638241870006 ], [ -95.56743406503017, 30.011632241601479 ], [ -95.567302064849557, 30.011641241824453 ], [ -95.567162065393617, 30.011632241971682 ], [ -95.567114065268044, 30.011634242021643 ], [ -95.566765064678094, 30.011639241599312 ], [ -95.566629064564637, 30.011646241784103 ], [ -95.566091064436506, 30.011659241642278 ], [ -95.565961065073353, 30.011656241771593 ], [ -95.565692065290392, 30.011660241935921 ], [ -95.565567065122337, 30.011656241297754 ], [ -95.56536906508363, 30.011662241827207 ], [ -95.565306064941169, 30.011664241318041 ], [ -95.565059064775895, 30.011665242122419 ], [ -95.564579064129774, 30.01167724139945 ], [ -95.564547064537507, 30.011618242096272 ], [ -95.564507064720729, 30.011567241460209 ], [ -95.564329064919036, 30.011255241538439 ], [ -95.564212064802106, 30.011053241769382 ], [ -95.564184064749526, 30.010990241657495 ], [ -95.564141064467492, 30.010917241236335 ], [ -95.563906064418475, 30.010513241755714 ], [ -95.563863064068002, 30.010455241589298 ], [ -95.563835063867103, 30.010400241574292 ], [ -95.563742063787103, 30.01024624170789 ], [ -95.563720064656465, 30.010197241877119 ], [ -95.563596064258277, 30.00996624126061 ], [ -95.56351806379304, 30.009847241270627 ], [ -95.563489064500374, 30.009788241679516 ], [ -95.563452064650548, 30.009750241012956 ], [ -95.563363064124317, 30.009713241355922 ], [ -95.563284063946597, 30.009718241293463 ], [ -95.563174064154737, 30.009752241279369 ], [ -95.563606064488923, 30.010502241339374 ], [ -95.565535064468591, 30.013845242275003 ], [ -95.56684506503575, 30.016116242652494 ], [ -95.567017064952864, 30.016420242741745 ], [ -95.569864066292709, 30.021464243330247 ], [ -95.570580066795344, 30.022691244133171 ], [ -95.570589066304308, 30.022707243989693 ], [ -95.570632066288127, 30.022781243608733 ], [ -95.570718066993123, 30.022709243283128 ], [ -95.570773066748387, 30.022665243706879 ], [ -95.570826066807655, 30.022617243539226 ], [ -95.571292067083718, 30.022136243784555 ], [ -95.571607066433984, 30.021784243832219 ], [ -95.571770066925552, 30.021612243671729 ], [ -95.571868066670177, 30.021499243876562 ], [ -95.571888067293898, 30.021472243761664 ], [ -95.571922067165431, 30.02142724309472 ], [ -95.572188066667024, 30.02114024369029 ], [ -95.57233206729353, 30.021004243447539 ], [ -95.572582067465476, 30.02073624340246 ], [ -95.574347067642194, 30.018806242559386 ], [ -95.576776067658159, 30.016150242449665 ], [ -95.577086067795108, 30.015937242337802 ], [ -95.577175068106271, 30.015880242476051 ], [ -95.577377067932332, 30.015752241789336 ], [ -95.57764806804596, 30.015587242372288 ], [ -95.577925068349685, 30.015421241806155 ], [ -95.578355068419413, 30.015243241873712 ], [ -95.578738068664563, 30.015102242089515 ], [ -95.579331068007278, 30.014887242028813 ], [ -95.579639068472176, 30.014817242127293 ], [ -95.579935069065101, 30.014765241448433 ], [ -95.580434068832645, 30.014745241744087 ], [ -95.581003069117656, 30.014723241812128 ], [ -95.582016068935019, 30.014685241563622 ], [ -95.582906069261057, 30.014701241679901 ], [ -95.58408107014742, 30.014652241327642 ], [ -95.584799069655389, 30.014579241133433 ], [ -95.585615070433221, 30.014440241086646 ], [ -95.585843069898019, 30.014364241619557 ], [ -95.586151069833917, 30.014232241172778 ], [ -95.586431069781014, 30.014112241807315 ], [ -95.586608070511801, 30.014034241250599 ], [ -95.586724069902303, 30.013986241727139 ], [ -95.586957070191019, 30.013890241655368 ], [ -95.587162070783819, 30.013801241224801 ], [ -95.587300070157127, 30.013741241205857 ], [ -95.587414070451999, 30.013690241708819 ], [ -95.587644070919723, 30.013580241642945 ], [ -95.58793607024846, 30.013460241636491 ], [ -95.588320071126034, 30.013322241329874 ], [ -95.588629070276241, 30.013224241425316 ], [ -95.588821070753056, 30.013177241267403 ], [ -95.58897207055449, 30.013149240787904 ], [ -95.589348070686981, 30.013133241431238 ], [ -95.589625070641361, 30.013123240684905 ], [ -95.590030071182881, 30.013100240819536 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 646, "Tract": "48201554201", "Area_SqMi": 1.0997957295816951, "total_2009": 108, "total_2010": 120, "total_2011": 180, "total_2012": 455, "total_2013": 445, "total_2014": 508, "total_2015": 678, "total_2016": 823, "total_2017": 1443, "total_2018": 971, "total_2019": 925, "total_2020": 1079, "age1": 443, "age2": 517, "age3": 179, "earn1": 296, "earn2": 374, "earn3": 469, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 0, "naics_s06": 22, "naics_s07": 139, "naics_s08": 0, "naics_s09": 13, "naics_s10": 14, "naics_s11": 13, "naics_s12": 158, "naics_s13": 4, "naics_s14": 27, "naics_s15": 1, "naics_s16": 276, "naics_s17": 30, "naics_s18": 309, "naics_s19": 116, "naics_s20": 0, "race1": 866, "race2": 161, "race3": 6, "race4": 83, "race5": 0, "race6": 23, "ethnicity1": 826, "ethnicity2": 313, "edu1": 134, "edu2": 164, "edu3": 205, "edu4": 193, "Shape_Length": 26499.377662687366, "Shape_Area": 30660422.621534307, "total_2021": 1021, "total_2022": 1139 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.577506068257833, 30.011140241552333 ], [ -95.577443068256542, 30.011065241502962 ], [ -95.577330067984789, 30.010878241395119 ], [ -95.577279068193747, 30.010823241447916 ], [ -95.577140068160176, 30.010713241016632 ], [ -95.577039067292972, 30.010565241213158 ], [ -95.576963067675436, 30.010515241442615 ], [ -95.576869067974727, 30.010477240812111 ], [ -95.576559067239728, 30.010383241084959 ], [ -95.576515067348438, 30.010350240969242 ], [ -95.576490067280062, 30.01031224115777 ], [ -95.576483067949226, 30.010218241280402 ], [ -95.576490067149209, 30.010125240751503 ], [ -95.57646406717987, 30.010065241149434 ], [ -95.576351067844683, 30.009943240603032 ], [ -95.576306067583829, 30.009894240740564 ], [ -95.576041067692145, 30.009537240957712 ], [ -95.575984067339547, 30.009432240760809 ], [ -95.575959067141099, 30.009268240770815 ], [ -95.575927067069216, 30.009191241160622 ], [ -95.575864067370944, 30.009136240706276 ], [ -95.575801067623971, 30.009119241055537 ], [ -95.575700067484391, 30.009119240649817 ], [ -95.575656067714405, 30.009103240595184 ], [ -95.575624067150258, 30.009103240784373 ], [ -95.57555506744437, 30.009059240909401 ], [ -95.575529067055768, 30.00902624076689 ], [ -95.575523066968842, 30.009008240850548 ], [ -95.575536066810344, 30.008960240840263 ], [ -95.575599067405562, 30.008811240573579 ], [ -95.575561067217635, 30.008613240450476 ], [ -95.575485067111742, 30.008509240341215 ], [ -95.575417067162803, 30.008393240783182 ], [ -95.575314066799947, 30.008218240207121 ], [ -95.57510606713646, 30.007992240240991 ], [ -95.57505506698952, 30.007871240529418 ], [ -95.575036067098296, 30.007761240098759 ], [ -95.574961066792909, 30.007563240417504 ], [ -95.574771066683397, 30.007206240853673 ], [ -95.574462067038539, 30.006887239953784 ], [ -95.574405067288438, 30.006772240496776 ], [ -95.574259066452541, 30.006404239892134 ], [ -95.574139066444033, 30.006173240187834 ], [ -95.574095066249242, 30.005942239908183 ], [ -95.574076067045127, 30.005739239756572 ], [ -95.574101066699583, 30.005662240106503 ], [ -95.574101066480026, 30.005568239678098 ], [ -95.574042066553034, 30.005277239839113 ], [ -95.574013066898559, 30.005134239627875 ], [ -95.57383606628008, 30.004584240199986 ], [ -95.573722066982128, 30.004100239683098 ], [ -95.573684065948299, 30.003853240048176 ], [ -95.573678066567709, 30.003705239545553 ], [ -95.573659066622682, 30.003655240169127 ], [ -95.57365306620764, 30.003639240158954 ], [ -95.573646066859837, 30.003479240015253 ], [ -95.573627066858663, 30.003408240110726 ], [ -95.573495066228361, 30.003138239258938 ], [ -95.57323606667957, 30.002770239858361 ], [ -95.572996065990296, 30.002440239945937 ], [ -95.572775065791291, 30.002171239368462 ], [ -95.572351066150247, 30.001830239205535 ], [ -95.571828066226814, 30.001428239322863 ], [ -95.571714065575094, 30.001341239248944 ], [ -95.571568065644414, 30.001275239709877 ], [ -95.570583065704739, 30.001123239779364 ], [ -95.570109065848712, 30.001050239757319 ], [ -95.56988706551445, 30.000982239073803 ], [ -95.569838065280734, 30.000967239258731 ], [ -95.569793065724923, 30.000934239123549 ], [ -95.569711064948152, 30.000824239720096 ], [ -95.569503065243183, 30.000143239287361 ], [ -95.569497064772662, 30.0000052393857 ], [ -95.569458065595782, 29.999699238793319 ], [ -95.569389065443929, 29.999463239197972 ], [ -95.56934506559648, 29.999353238853349 ], [ -95.569193065086353, 29.999248239303732 ], [ -95.568486064541375, 29.998979238822081 ], [ -95.56840806469755, 29.998941238868245 ], [ -95.568296065043469, 29.998886238935508 ], [ -95.567993064611144, 29.998792238852459 ], [ -95.567961064501034, 29.998671239211017 ], [ -95.567899064469103, 29.998338238818516 ], [ -95.567854064336728, 29.998094238373763 ], [ -95.567657064477629, 29.997316238815614 ], [ -95.567544064722071, 29.996868238464419 ], [ -95.567468064118188, 29.996313238101042 ], [ -95.567462064834288, 29.996148238002746 ], [ -95.567532064990772, 29.995939238280162 ], [ -95.567860064355813, 29.995164237915645 ], [ -95.568314064489414, 29.994306237699913 ], [ -95.568378064954473, 29.994142238037167 ], [ -95.568422064868813, 29.993982238323667 ], [ -95.568441064218149, 29.993817237832467 ], [ -95.568460065108852, 29.993570237669388 ], [ -95.568118064350926, 29.992696237667943 ], [ -95.568030064178487, 29.992531237912843 ], [ -95.567967064931935, 29.992454237828039 ], [ -95.567764064792527, 29.99236823770973 ], [ -95.567733064649531, 29.99235523759339 ], [ -95.567354064399666, 29.99212423771678 ], [ -95.567070063959591, 29.99203123753173 ], [ -95.566697064092509, 29.991756237905268 ], [ -95.566483064125833, 29.991503237400824 ], [ -95.565586063919383, 29.990624237811083 ], [ -95.56524506365426, 29.99036023735761 ], [ -95.565068063914765, 29.990244237130472 ], [ -95.564758063114709, 29.990096237536587 ], [ -95.56450606306565, 29.989915236838108 ], [ -95.564222063859887, 29.989645237375978 ], [ -95.56397506286244, 29.989431236969388 ], [ -95.56388706361794, 29.989414237024764 ], [ -95.563678062913283, 29.989513237148326 ], [ -95.563173062723408, 29.989799237019596 ], [ -95.562554062931326, 29.990074237810187 ], [ -95.561392062839971, 29.99020623719445 ], [ -95.561171062861092, 29.990179237204643 ], [ -95.561007062214998, 29.990184237002779 ], [ -95.560894063049375, 29.990349237200874 ], [ -95.560856062371371, 29.990382237299425 ], [ -95.560786062675717, 29.990410237380409 ], [ -95.560597062473789, 29.990371237735541 ], [ -95.560540062335846, 29.990322237737512 ], [ -95.560489061973556, 29.990410237865554 ], [ -95.560319062287064, 29.990498237537317 ], [ -95.560060062822913, 29.990531237486412 ], [ -95.5594160617661, 29.990591237406125 ], [ -95.559138061947138, 29.990630237350803 ], [ -95.55873406161804, 29.990723237801358 ], [ -95.558532061756495, 29.990811237594464 ], [ -95.558393061508539, 29.990954237623946 ], [ -95.558349061773939, 29.991086237289988 ], [ -95.558456061694727, 29.991465237715893 ], [ -95.558443061708687, 29.991548237657952 ], [ -95.558380062170627, 29.991630238030098 ], [ -95.558311061632907, 29.991674237700956 ], [ -95.558222062251872, 29.991713238262772 ], [ -95.558026062181881, 29.99169623781744 ], [ -95.557597061318859, 29.991713238016388 ], [ -95.557398061843159, 29.991715238022362 ], [ -95.557136061429702, 29.991718237555741 ], [ -95.556454061507779, 29.991773237595766 ], [ -95.555803060898711, 29.99180123757009 ], [ -95.555728060940623, 29.991823237512971 ], [ -95.555538061174985, 29.99197623770965 ], [ -95.555488061675902, 29.992037238227226 ], [ -95.555481061604169, 29.992081237972766 ], [ -95.555481061210543, 29.992147238346 ], [ -95.555595061150385, 29.992279238318474 ], [ -95.555665061081058, 29.99242223842268 ], [ -95.55569606160627, 29.992587238259503 ], [ -95.555702061052131, 29.992829238508403 ], [ -95.555684061115485, 29.992993238103367 ], [ -95.555639061599294, 29.993114237978364 ], [ -95.555570061816113, 29.993180237917354 ], [ -95.55541206151797, 29.993191237965789 ], [ -95.555216061478987, 29.993136238560975 ], [ -95.555014061531679, 29.993059238588408 ], [ -95.554907061481657, 29.99295023795224 ], [ -95.554787060845527, 29.992757238530967 ], [ -95.554604060576665, 29.992526238168889 ], [ -95.554421061177919, 29.992367238135788 ], [ -95.554332060789122, 29.992317237682812 ], [ -95.554269061495617, 29.992295238152188 ], [ -95.554086060601023, 29.992251237827578 ], [ -95.553928061279663, 29.99227323830015 ], [ -95.553884061411878, 29.992306237801035 ], [ -95.553789061142851, 29.992312238352032 ], [ -95.553669061036445, 29.992262238119068 ], [ -95.553631061145765, 29.992262237850394 ], [ -95.55360006126088, 29.992383238026829 ], [ -95.553568060867207, 29.992675238100595 ], [ -95.553538060285774, 29.992687238586726 ], [ -95.555306061001644, 29.995825238391493 ], [ -95.555601061308352, 29.996349238656364 ], [ -95.55820706201159, 30.000938239912589 ], [ -95.558655062948006, 30.001727239820024 ], [ -95.558710062741383, 30.001824240062742 ], [ -95.558769062942289, 30.001928240070868 ], [ -95.559318062772931, 30.002895240243593 ], [ -95.561421063306895, 30.006592240929365 ], [ -95.563174064154737, 30.009752241279369 ], [ -95.563284063946597, 30.009718241293463 ], [ -95.563363064124317, 30.009713241355922 ], [ -95.563452064650548, 30.009750241012956 ], [ -95.563489064500374, 30.009788241679516 ], [ -95.56351806379304, 30.009847241270627 ], [ -95.563596064258277, 30.00996624126061 ], [ -95.563720064656465, 30.010197241877119 ], [ -95.563742063787103, 30.01024624170789 ], [ -95.563835063867103, 30.010400241574292 ], [ -95.563863064068002, 30.010455241589298 ], [ -95.563906064418475, 30.010513241755714 ], [ -95.564141064467492, 30.010917241236335 ], [ -95.564184064749526, 30.010990241657495 ], [ -95.564212064802106, 30.011053241769382 ], [ -95.564329064919036, 30.011255241538439 ], [ -95.564507064720729, 30.011567241460209 ], [ -95.564547064537507, 30.011618242096272 ], [ -95.564579064129774, 30.01167724139945 ], [ -95.565059064775895, 30.011665242122419 ], [ -95.565306064941169, 30.011664241318041 ], [ -95.56536906508363, 30.011662241827207 ], [ -95.565567065122337, 30.011656241297754 ], [ -95.565692065290392, 30.011660241935921 ], [ -95.565961065073353, 30.011656241771593 ], [ -95.566091064436506, 30.011659241642278 ], [ -95.566629064564637, 30.011646241784103 ], [ -95.566765064678094, 30.011639241599312 ], [ -95.567114065268044, 30.011634242021643 ], [ -95.567162065393617, 30.011632241971682 ], [ -95.567302064849557, 30.011641241824453 ], [ -95.56743406503017, 30.011632241601479 ], [ -95.567567064974909, 30.011638241870006 ], [ -95.568564065142169, 30.011628241451703 ], [ -95.569071065358287, 30.011616241491012 ], [ -95.569177065655495, 30.01162224107016 ], [ -95.569286065243531, 30.011614241928864 ], [ -95.56938206579494, 30.011617241332281 ], [ -95.569718065427125, 30.011616241542633 ], [ -95.56983206559606, 30.011616241663983 ], [ -95.569919065549499, 30.011617241875925 ], [ -95.570026066154398, 30.011612241707326 ], [ -95.570257065652399, 30.011610241138079 ], [ -95.570433065497639, 30.01161324149103 ], [ -95.570545065694603, 30.011604241193965 ], [ -95.570624066314636, 30.011608241688759 ], [ -95.570653065944299, 30.011609241901532 ], [ -95.570788065859858, 30.01159824181579 ], [ -95.570934065792031, 30.011595241857723 ], [ -95.571088066118804, 30.011599241220306 ], [ -95.57126106668035, 30.011588241242588 ], [ -95.571610066012667, 30.011588241810319 ], [ -95.571792066629669, 30.011584241739669 ], [ -95.571970066370298, 30.011586241452001 ], [ -95.572153066617673, 30.011578241041175 ], [ -95.572331066825228, 30.011579241167837 ], [ -95.57269606707824, 30.011572241774829 ], [ -95.572887066892392, 30.011558241245936 ], [ -95.573336066729269, 30.011554241280869 ], [ -95.573428066711443, 30.011554241282013 ], [ -95.573599066932786, 30.011561240921985 ], [ -95.574123066926532, 30.011547241192932 ], [ -95.574287066828688, 30.011548240917008 ], [ -95.574777067188464, 30.011542240969192 ], [ -95.574942066869426, 30.011534241726043 ], [ -95.575096067198601, 30.011540241049403 ], [ -95.575874067744081, 30.011532241331103 ], [ -95.576016067843099, 30.011519241100903 ], [ -95.576297067379329, 30.011478241024069 ], [ -95.576585067155904, 30.011418241453601 ], [ -95.576851068008281, 30.011355241138915 ], [ -95.576974067209093, 30.011339241249001 ], [ -95.577105067666423, 30.011306240781476 ], [ -95.57735306809731, 30.011224240751808 ], [ -95.577506068257833, 30.011140241552333 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 647, "Tract": "48167721207", "Area_SqMi": 1.1375254762161304, "total_2009": 161, "total_2010": 136, "total_2011": 335, "total_2012": 548, "total_2013": 572, "total_2014": 653, "total_2015": 757, "total_2016": 776, "total_2017": 743, "total_2018": 818, "total_2019": 1000, "total_2020": 793, "age1": 298, "age2": 671, "age3": 198, "earn1": 182, "earn2": 329, "earn3": 656, "naics_s01": 14, "naics_s02": 0, "naics_s03": 0, "naics_s04": 542, "naics_s05": 8, "naics_s06": 30, "naics_s07": 181, "naics_s08": 0, "naics_s09": 33, "naics_s10": 8, "naics_s11": 11, "naics_s12": 45, "naics_s13": 0, "naics_s14": 30, "naics_s15": 14, "naics_s16": 72, "naics_s17": 11, "naics_s18": 57, "naics_s19": 30, "naics_s20": 81, "race1": 986, "race2": 119, "race3": 23, "race4": 23, "race5": 1, "race6": 15, "ethnicity1": 712, "ethnicity2": 455, "edu1": 195, "edu2": 254, "edu3": 250, "edu4": 170, "Shape_Length": 24486.83470596706, "Shape_Area": 31712263.382595621, "total_2021": 857, "total_2022": 1167 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.045557909920646, 29.526672160141651 ], [ -95.046554910529451, 29.526524160227488 ], [ -95.045547909945014, 29.523523159336211 ], [ -95.044804909743164, 29.521304158688814 ], [ -95.044184908982572, 29.519454158497549 ], [ -95.043342908499028, 29.516977158348883 ], [ -95.043533909119589, 29.516858157928816 ], [ -95.043597908864029, 29.516730158163352 ], [ -95.043606908846371, 29.51661215754708 ], [ -95.043579908883743, 29.516493158118301 ], [ -95.043050908884481, 29.51581815770901 ], [ -95.041981908153659, 29.514466157370915 ], [ -95.042732908656788, 29.513997157465063 ], [ -95.043256909053412, 29.513482157177439 ], [ -95.043570908394258, 29.51313515698693 ], [ -95.044242908739363, 29.512033156947187 ], [ -95.044492908743479, 29.511381156341404 ], [ -95.044631909356511, 29.5108041568717 ], [ -95.044717908660601, 29.510489156515131 ], [ -95.044730908943563, 29.509242155990222 ], [ -95.044654909082723, 29.508819156467382 ], [ -95.04456390899459, 29.508380155804925 ], [ -95.044406909166639, 29.508004156516645 ], [ -95.044234908790727, 29.507664156446101 ], [ -95.044219908413524, 29.507614155786548 ], [ -95.044064908276695, 29.507300155584861 ], [ -95.044053908861059, 29.507276155794013 ], [ -95.043347908244627, 29.506384155722309 ], [ -95.042839908731324, 29.505835155529351 ], [ -95.042367908253169, 29.505422155938835 ], [ -95.041980907726071, 29.505048155143914 ], [ -95.041866908111515, 29.504938155890919 ], [ -95.041331907581238, 29.505360155450958 ], [ -95.039672907122622, 29.506588155994354 ], [ -95.039007907155096, 29.507077156378308 ], [ -95.037408906735749, 29.50825915622347 ], [ -95.03680290681335, 29.508713156661901 ], [ -95.03643990645844, 29.508986156115217 ], [ -95.035205906464384, 29.509974157147646 ], [ -95.033875906587312, 29.511118157059169 ], [ -95.033613906314883, 29.511317156884338 ], [ -95.033465906041982, 29.511444157106112 ], [ -95.032677905494864, 29.512120157528553 ], [ -95.032512906011718, 29.512248157122372 ], [ -95.030838905174051, 29.513463157815426 ], [ -95.029784905701845, 29.514065157837106 ], [ -95.028595905296044, 29.514655157773298 ], [ -95.028188905229328, 29.514855158225789 ], [ -95.028243904502986, 29.515002157904803 ], [ -95.028305905131973, 29.515168158409345 ], [ -95.028328904485704, 29.515237158071251 ], [ -95.028547905419202, 29.5158991585512 ], [ -95.028972905613543, 29.517118158155625 ], [ -95.02956090565263, 29.518809158783423 ], [ -95.030166905123508, 29.520546159084976 ], [ -95.03018590516227, 29.520600159475674 ], [ -95.030215905455037, 29.52068715905725 ], [ -95.030463906211992, 29.521401159173557 ], [ -95.030621905370396, 29.521852159697968 ], [ -95.030767905730627, 29.522274159485153 ], [ -95.031417905568816, 29.524146159791481 ], [ -95.031772906393059, 29.525169160472654 ], [ -95.032376906580666, 29.526908160618451 ], [ -95.033383906627279, 29.529820160667885 ], [ -95.033549907003021, 29.529776160760576 ], [ -95.037550908132218, 29.528718160313865 ], [ -95.038069908185832, 29.528580160433446 ], [ -95.039353908619375, 29.528237160325389 ], [ -95.040962908547272, 29.527807159909276 ], [ -95.04299390947233, 29.527264160232022 ], [ -95.043875909631296, 29.527028159948127 ], [ -95.045358909541548, 29.526702160174821 ], [ -95.045557909920646, 29.526672160141651 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 648, "Tract": "48167721206", "Area_SqMi": 0.99286431187367719, "total_2009": 92, "total_2010": 90, "total_2011": 57, "total_2012": 52, "total_2013": 51, "total_2014": 36, "total_2015": 83, "total_2016": 84, "total_2017": 80, "total_2018": 117, "total_2019": 161, "total_2020": 166, "age1": 114, "age2": 102, "age3": 29, "earn1": 100, "earn2": 87, "earn3": 58, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 2, "naics_s07": 7, "naics_s08": 4, "naics_s09": 0, "naics_s10": 2, "naics_s11": 5, "naics_s12": 17, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 49, "naics_s17": 0, "naics_s18": 132, "naics_s19": 4, "naics_s20": 0, "race1": 190, "race2": 32, "race3": 2, "race4": 15, "race5": 0, "race6": 6, "ethnicity1": 166, "ethnicity2": 79, "edu1": 31, "edu2": 29, "edu3": 38, "edu4": 33, "Shape_Length": 22376.370336032658, "Shape_Area": 27679357.710785251, "total_2021": 177, "total_2022": 245 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.062507913211235, 29.514600157034213 ], [ -95.062478913988372, 29.514518156612713 ], [ -95.062288913084487, 29.513922156777525 ], [ -95.062247913979107, 29.51379315701714 ], [ -95.061635912852879, 29.511844156334245 ], [ -95.061563912823033, 29.511625156463701 ], [ -95.061302912869948, 29.510837156074633 ], [ -95.061164912846053, 29.510420155611115 ], [ -95.060980913349354, 29.509824155595254 ], [ -95.06064291333729, 29.508734155693588 ], [ -95.060328912327478, 29.507754155670941 ], [ -95.059831912894467, 29.506225155175883 ], [ -95.059727912362234, 29.505864155200005 ], [ -95.059609912989742, 29.505454155489161 ], [ -95.058995912561699, 29.503507154861808 ], [ -95.058211912126922, 29.501129153848176 ], [ -95.058041912144859, 29.500540153748467 ], [ -95.057658912194924, 29.500536154067746 ], [ -95.054920911476501, 29.500512153994173 ], [ -95.054720910724029, 29.500510154350838 ], [ -95.054469910854976, 29.500508154602368 ], [ -95.052263910323603, 29.50048915443983 ], [ -95.048152909326419, 29.500375154792007 ], [ -95.0477499092828, 29.500379154331856 ], [ -95.047567909484044, 29.500503154304575 ], [ -95.047372909449749, 29.500608154624818 ], [ -95.047276908731703, 29.500664154508645 ], [ -95.046839908651194, 29.500916154315004 ], [ -95.046399908932813, 29.501195154435727 ], [ -95.046169908392756, 29.501356154940748 ], [ -95.045432909091716, 29.501911155112637 ], [ -95.045063908229579, 29.502190154715613 ], [ -95.044936908903793, 29.502298155274538 ], [ -95.043648908023528, 29.503405155159072 ], [ -95.043015908549833, 29.503942155340997 ], [ -95.041866908111515, 29.504938155890919 ], [ -95.041980907726071, 29.505048155143914 ], [ -95.042367908253169, 29.505422155938835 ], [ -95.042839908731324, 29.505835155529351 ], [ -95.043347908244627, 29.506384155722309 ], [ -95.044053908861059, 29.507276155794013 ], [ -95.044064908276695, 29.507300155584861 ], [ -95.044219908413524, 29.507614155786548 ], [ -95.044234908790727, 29.507664156446101 ], [ -95.044406909166639, 29.508004156516645 ], [ -95.04456390899459, 29.508380155804925 ], [ -95.044654909082723, 29.508819156467382 ], [ -95.044730908943563, 29.509242155990222 ], [ -95.044717908660601, 29.510489156515131 ], [ -95.044631909356511, 29.5108041568717 ], [ -95.044492908743479, 29.511381156341404 ], [ -95.044242908739363, 29.512033156947187 ], [ -95.043570908394258, 29.51313515698693 ], [ -95.043256909053412, 29.513482157177439 ], [ -95.042732908656788, 29.513997157465063 ], [ -95.041981908153659, 29.514466157370915 ], [ -95.043050908884481, 29.51581815770901 ], [ -95.043579908883743, 29.516493158118301 ], [ -95.043606908846371, 29.51661215754708 ], [ -95.045019908754583, 29.516344157498381 ], [ -95.046064909250745, 29.516094157478488 ], [ -95.048040909868078, 29.515656157965189 ], [ -95.049795910655149, 29.515268156992267 ], [ -95.050268910476063, 29.515158157471856 ], [ -95.052247911530543, 29.514769156905945 ], [ -95.05499791180128, 29.514178157053351 ], [ -95.05512091214139, 29.513972156589229 ], [ -95.055630911611487, 29.514630157295148 ], [ -95.055678912074626, 29.514692157049613 ], [ -95.059482912366789, 29.514614156942056 ], [ -95.062507913211235, 29.514600157034213 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 649, "Tract": "48167720602", "Area_SqMi": 0.90179394298370574, "total_2009": 157, "total_2010": 207, "total_2011": 281, "total_2012": 247, "total_2013": 297, "total_2014": 265, "total_2015": 277, "total_2016": 332, "total_2017": 339, "total_2018": 332, "total_2019": 485, "total_2020": 466, "age1": 124, "age2": 210, "age3": 87, "earn1": 117, "earn2": 190, "earn3": 114, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 0, "naics_s06": 0, "naics_s07": 19, "naics_s08": 6, "naics_s09": 5, "naics_s10": 7, "naics_s11": 4, "naics_s12": 3, "naics_s13": 0, "naics_s14": 19, "naics_s15": 0, "naics_s16": 166, "naics_s17": 25, "naics_s18": 144, "naics_s19": 1, "naics_s20": 1, "race1": 343, "race2": 38, "race3": 3, "race4": 25, "race5": 0, "race6": 12, "ethnicity1": 287, "ethnicity2": 134, "edu1": 51, "edu2": 80, "edu3": 92, "edu4": 74, "Shape_Length": 21091.280136840833, "Shape_Area": 25140471.694626976, "total_2021": 506, "total_2022": 421 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.096159920039014, 29.460296144958384 ], [ -95.096152920444084, 29.459781144159287 ], [ -95.096150920218065, 29.45961814417797 ], [ -95.096132920187799, 29.459216144684401 ], [ -95.096107919853338, 29.458628143773591 ], [ -95.096023919355744, 29.454964143232214 ], [ -95.095963919896278, 29.452575142979779 ], [ -95.095952919329633, 29.452046142999269 ], [ -95.095927919171899, 29.451309142236866 ], [ -95.095886919053342, 29.45039914234933 ], [ -95.095846919258179, 29.45003814247837 ], [ -95.095579919760823, 29.448668141980246 ], [ -95.095380919544723, 29.447903142023119 ], [ -95.095333918768858, 29.447752141527982 ], [ -95.09456791849091, 29.445792141284464 ], [ -95.094131919167509, 29.444977141454558 ], [ -95.09285591843711, 29.442667140808485 ], [ -95.092610918154023, 29.442226141074908 ], [ -95.092543918476011, 29.442085140427938 ], [ -95.092476917917821, 29.441944140615405 ], [ -95.09242791806308, 29.441964140477918 ], [ -95.090866917546919, 29.442681141097029 ], [ -95.090736917816102, 29.44274114084325 ], [ -95.090216918022691, 29.442987141309665 ], [ -95.088625917112651, 29.443739140988018 ], [ -95.087434917184794, 29.444303141136611 ], [ -95.086593916387187, 29.444701141927769 ], [ -95.086477916777497, 29.444756141867334 ], [ -95.085869917098805, 29.445043142034564 ], [ -95.084599916275835, 29.445643141901684 ], [ -95.084604916807336, 29.445766141988688 ], [ -95.084759916393907, 29.452087143525265 ], [ -95.084788916352636, 29.453272143331841 ], [ -95.084820916606432, 29.454941143463277 ], [ -95.084825916309342, 29.455153144201361 ], [ -95.084721916935536, 29.455170143584173 ], [ -95.084702916495289, 29.45519414378419 ], [ -95.084093916667328, 29.455621144287658 ], [ -95.083257916776233, 29.456206143963371 ], [ -95.083185916857474, 29.456261144081957 ], [ -95.083107916857657, 29.456320143687265 ], [ -95.082969916764867, 29.456425143900542 ], [ -95.082928916533348, 29.456458144291844 ], [ -95.08405491698889, 29.457853144437532 ], [ -95.084225916432572, 29.458060144531846 ], [ -95.084918917386204, 29.458900144524208 ], [ -95.085220917186817, 29.459265144794575 ], [ -95.087393917600167, 29.461950144698584 ], [ -95.087849917744308, 29.462496145100953 ], [ -95.088102918206673, 29.462804145655454 ], [ -95.090582919132217, 29.465853145658883 ], [ -95.090612919189752, 29.465889146036684 ], [ -95.090766918340535, 29.466075145656148 ], [ -95.091049919065128, 29.465895146124566 ], [ -95.092872919443877, 29.464734145348928 ], [ -95.093415919000307, 29.464431145168259 ], [ -95.094049919771962, 29.464039145216329 ], [ -95.094209920055576, 29.46392414561436 ], [ -95.094291920056378, 29.463838145554323 ], [ -95.094551919475748, 29.463588145078827 ], [ -95.094761919625469, 29.463379145606595 ], [ -95.094965920021608, 29.463153144995616 ], [ -95.09511892017251, 29.462960144736623 ], [ -95.09518391952345, 29.462881144958217 ], [ -95.09549491937419, 29.462409144956268 ], [ -95.095733920269964, 29.461974144737177 ], [ -95.095929920430393, 29.461427144827567 ], [ -95.096105920183646, 29.460824144607418 ], [ -95.096159920039014, 29.460296144958384 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 650, "Tract": "48167720509", "Area_SqMi": 0.56832689592419827, "total_2009": 363, "total_2010": 409, "total_2011": 476, "total_2012": 544, "total_2013": 582, "total_2014": 590, "total_2015": 539, "total_2016": 548, "total_2017": 609, "total_2018": 572, "total_2019": 542, "total_2020": 610, "age1": 211, "age2": 284, "age3": 148, "earn1": 213, "earn2": 218, "earn3": 212, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 131, "naics_s05": 20, "naics_s06": 24, "naics_s07": 42, "naics_s08": 7, "naics_s09": 0, "naics_s10": 8, "naics_s11": 22, "naics_s12": 16, "naics_s13": 2, "naics_s14": 17, "naics_s15": 25, "naics_s16": 56, "naics_s17": 39, "naics_s18": 204, "naics_s19": 30, "naics_s20": 0, "race1": 522, "race2": 73, "race3": 1, "race4": 30, "race5": 0, "race6": 17, "ethnicity1": 469, "ethnicity2": 174, "edu1": 76, "edu2": 123, "edu3": 157, "edu4": 76, "Shape_Length": 17225.511301054583, "Shape_Area": 15843981.157162955, "total_2021": 612, "total_2022": 643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.1242209285044, 29.500766151642374 ], [ -95.124218928585933, 29.500579151499064 ], [ -95.124196929174843, 29.50015615148477 ], [ -95.124175928676905, 29.499238151433122 ], [ -95.124175928514418, 29.498700151697282 ], [ -95.12417592898197, 29.498413151209707 ], [ -95.124154929003353, 29.497448150977018 ], [ -95.124141928338247, 29.497217151327881 ], [ -95.124128928243508, 29.496995151539842 ], [ -95.124097928656667, 29.495503151117799 ], [ -95.124060928760144, 29.493839150914756 ], [ -95.124051928471644, 29.493242150722573 ], [ -95.124024928452314, 29.491372149675225 ], [ -95.123992928223956, 29.489968149986897 ], [ -95.124012928056459, 29.489619149787018 ], [ -95.124000928315013, 29.489289149470775 ], [ -95.121001927385223, 29.489306150049533 ], [ -95.118059926360218, 29.48936915010313 ], [ -95.115554926412173, 29.489403149480228 ], [ -95.115562925744115, 29.489833149716848 ], [ -95.115570926372854, 29.490315149629584 ], [ -95.115583926150492, 29.491050150310397 ], [ -95.115595925873691, 29.491768150303812 ], [ -95.115607926848895, 29.492471150412097 ], [ -95.115607926835921, 29.493190151049298 ], [ -95.115621926704776, 29.493260150261019 ], [ -95.115635926306723, 29.493894150441431 ], [ -95.115641926553451, 29.494228151169668 ], [ -95.112328925587377, 29.494341151249738 ], [ -95.111927925701664, 29.49435515088658 ], [ -95.111788925896363, 29.494355151058343 ], [ -95.111803925869609, 29.495809151044952 ], [ -95.110858924832911, 29.495771151765254 ], [ -95.11022792532404, 29.495864151584087 ], [ -95.109901925086561, 29.496031151785033 ], [ -95.110106924819846, 29.496385151244258 ], [ -95.11037392564738, 29.496845152043214 ], [ -95.110570925477205, 29.497184151793043 ], [ -95.110683925191111, 29.497368151609507 ], [ -95.111345925276325, 29.498558151572052 ], [ -95.112318925928392, 29.500124151870018 ], [ -95.114010926779372, 29.502935152758248 ], [ -95.1141129264591, 29.503104152658189 ], [ -95.114471926128914, 29.503011153017638 ], [ -95.114950926719729, 29.502887152716362 ], [ -95.115428926677509, 29.502761152669013 ], [ -95.116010927096767, 29.502610152826307 ], [ -95.117557927458066, 29.502207152192025 ], [ -95.117625926985369, 29.502189152597435 ], [ -95.11795392761006, 29.502101152868232 ], [ -95.118660927807156, 29.501915152384608 ], [ -95.119472927516412, 29.501701152147067 ], [ -95.119977927598768, 29.501567152275999 ], [ -95.120147927449935, 29.50152715256441 ], [ -95.120717927860909, 29.501390152033665 ], [ -95.121190928605756, 29.501277151947058 ], [ -95.121994928638316, 29.5011411524045 ], [ -95.123194928241475, 29.500940152380476 ], [ -95.123870928716599, 29.500825152126563 ], [ -95.1242209285044, 29.500766151642374 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 651, "Tract": "48167721403", "Area_SqMi": 1.1602623546453559, "total_2009": 1162, "total_2010": 579, "total_2011": 590, "total_2012": 567, "total_2013": 589, "total_2014": 494, "total_2015": 524, "total_2016": 514, "total_2017": 492, "total_2018": 528, "total_2019": 431, "total_2020": 556, "age1": 152, "age2": 347, "age3": 128, "earn1": 126, "earn2": 183, "earn3": 318, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 49, "naics_s05": 31, "naics_s06": 46, "naics_s07": 26, "naics_s08": 0, "naics_s09": 83, "naics_s10": 36, "naics_s11": 3, "naics_s12": 110, "naics_s13": 0, "naics_s14": 26, "naics_s15": 0, "naics_s16": 109, "naics_s17": 0, "naics_s18": 61, "naics_s19": 47, "naics_s20": 0, "race1": 497, "race2": 68, "race3": 2, "race4": 50, "race5": 2, "race6": 8, "ethnicity1": 467, "ethnicity2": 160, "edu1": 78, "edu2": 115, "edu3": 163, "edu4": 119, "Shape_Length": 25299.788944065396, "Shape_Area": 32346128.638646077, "total_2021": 604, "total_2022": 627 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.063165914768049, 29.540878161842929 ], [ -95.062856915158889, 29.540632162554434 ], [ -95.062425914447743, 29.540269162348338 ], [ -95.062379914539719, 29.540216162387864 ], [ -95.062176914699265, 29.539982162310078 ], [ -95.061904915056218, 29.539619162463129 ], [ -95.061870914640181, 29.539562161599395 ], [ -95.061834914366926, 29.539502162322243 ], [ -95.061646914010254, 29.539182161669348 ], [ -95.061462914483926, 29.538729161755931 ], [ -95.061213914199627, 29.538297162042554 ], [ -95.061072914295551, 29.538068161770791 ], [ -95.060841913755624, 29.537757162074165 ], [ -95.06047691418533, 29.5373841618852 ], [ -95.059957913933928, 29.53698016199823 ], [ -95.059832914064643, 29.53688416187935 ], [ -95.05951991414679, 29.536659161553185 ], [ -95.059128914000155, 29.536376161471292 ], [ -95.058679913691321, 29.53606816175132 ], [ -95.058185913317274, 29.535805161368007 ], [ -95.057704913356531, 29.535606161465214 ], [ -95.057133913603522, 29.535401161430364 ], [ -95.056383912825581, 29.535208161705597 ], [ -95.055786912874225, 29.53511816139758 ], [ -95.055692912305901, 29.535101160846551 ], [ -95.05431191219985, 29.534851161702722 ], [ -95.054234912462661, 29.534838161123361 ], [ -95.053733912547756, 29.534745161043759 ], [ -95.053148912601557, 29.534568161149721 ], [ -95.052582911852156, 29.534374161159839 ], [ -95.052043912221791, 29.534104161552531 ], [ -95.051616911311712, 29.533863161227046 ], [ -95.05110691198152, 29.533529160900208 ], [ -95.050660911578703, 29.533158161254129 ], [ -95.050280911459978, 29.532786160597471 ], [ -95.049908910983888, 29.532359161100334 ], [ -95.049574911466536, 29.531914161269345 ], [ -95.04928491079319, 29.531434161125727 ], [ -95.049107911026255, 29.531037161063388 ], [ -95.049072911392699, 29.530958161048446 ], [ -95.048965911368441, 29.530693160198808 ], [ -95.048684910992264, 29.529995160444475 ], [ -95.048565911113243, 29.529637160241265 ], [ -95.048484910693446, 29.529394160293457 ], [ -95.048296910576497, 29.528706160594609 ], [ -95.048146910121616, 29.527717159658241 ], [ -95.048096910226164, 29.527455160040429 ], [ -95.048021910322774, 29.527079159781515 ], [ -95.047945910630489, 29.52656615996894 ], [ -95.047917910116311, 29.526339159384506 ], [ -95.047250910590819, 29.526430159666855 ], [ -95.046554910529451, 29.526524160227488 ], [ -95.045557909920646, 29.526672160141651 ], [ -95.045358909541548, 29.526702160174821 ], [ -95.043875909631296, 29.527028159948127 ], [ -95.04299390947233, 29.527264160232022 ], [ -95.040962908547272, 29.527807159909276 ], [ -95.039353908619375, 29.528237160325389 ], [ -95.038069908185832, 29.528580160433446 ], [ -95.037550908132218, 29.528718160313865 ], [ -95.033549907003021, 29.529776160760576 ], [ -95.033383906627279, 29.529820160667885 ], [ -95.034101907357027, 29.531894161059348 ], [ -95.034331907667038, 29.532550161536893 ], [ -95.034432907366977, 29.532855161777206 ], [ -95.034795906920877, 29.533952161314208 ], [ -95.034827907547736, 29.534088161349647 ], [ -95.034976907231794, 29.534498162112982 ], [ -95.035369907459241, 29.535881162507557 ], [ -95.035762907601182, 29.537154162084946 ], [ -95.036107908237881, 29.538302162393638 ], [ -95.036340908371471, 29.539060162779634 ], [ -95.036422908124919, 29.53930816252986 ], [ -95.036689907862751, 29.540250162851869 ], [ -95.036844908485762, 29.540777163294813 ], [ -95.036878908594574, 29.540893163385991 ], [ -95.037242908638262, 29.540928163515165 ], [ -95.03780690801122, 29.540961163530422 ], [ -95.039313908323635, 29.541078163167874 ], [ -95.040420908995614, 29.541206162886173 ], [ -95.040792909115794, 29.541249163308908 ], [ -95.040977909743035, 29.541262163033174 ], [ -95.041325909486901, 29.541287162665373 ], [ -95.042396909614823, 29.54136416332825 ], [ -95.043684910430144, 29.54145616273177 ], [ -95.046595911201408, 29.541666162739848 ], [ -95.050540912147326, 29.541956163164318 ], [ -95.052325912588046, 29.54208716327485 ], [ -95.054366913177788, 29.542237163014658 ], [ -95.054569913237728, 29.542252162839144 ], [ -95.055162913357805, 29.542296162925112 ], [ -95.057147913074388, 29.542412162933882 ], [ -95.058052913619179, 29.542464163036421 ], [ -95.058898913805308, 29.542514162280465 ], [ -95.059521913601245, 29.542449162825434 ], [ -95.060336914273094, 29.542364162870992 ], [ -95.061521914836575, 29.541927162847898 ], [ -95.061934914960759, 29.541701162211282 ], [ -95.062221915112062, 29.5415451622105 ], [ -95.062407915288389, 29.541444162468235 ], [ -95.062568914729169, 29.541324162693936 ], [ -95.063165914768049, 29.540878161842929 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 652, "Tract": "48167721302", "Area_SqMi": 0.93733680726787927, "total_2009": 210, "total_2010": 235, "total_2011": 252, "total_2012": 246, "total_2013": 289, "total_2014": 274, "total_2015": 299, "total_2016": 246, "total_2017": 369, "total_2018": 473, "total_2019": 541, "total_2020": 528, "age1": 172, "age2": 223, "age3": 93, "earn1": 148, "earn2": 199, "earn3": 141, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 4, "naics_s06": 3, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 25, "naics_s11": 9, "naics_s12": 71, "naics_s13": 2, "naics_s14": 0, "naics_s15": 20, "naics_s16": 149, "naics_s17": 0, "naics_s18": 138, "naics_s19": 56, "naics_s20": 0, "race1": 357, "race2": 94, "race3": 5, "race4": 28, "race5": 0, "race6": 4, "ethnicity1": 358, "ethnicity2": 130, "edu1": 67, "edu2": 72, "edu3": 95, "edu4": 82, "Shape_Length": 32530.539503227887, "Shape_Area": 26131345.918649543, "total_2021": 508, "total_2022": 488 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.096264923218627, 29.535185159744834 ], [ -95.096176923342369, 29.535100160408216 ], [ -95.095890923004546, 29.53482216024905 ], [ -95.095169923258496, 29.534144159423668 ], [ -95.092638922292437, 29.531410158923627 ], [ -95.091141921838116, 29.529969158969728 ], [ -95.090223921637516, 29.52913215895741 ], [ -95.089821921043139, 29.528771159260419 ], [ -95.089478921463197, 29.528528158767134 ], [ -95.089311921508497, 29.528387159144629 ], [ -95.089093921267434, 29.528204159134809 ], [ -95.088494921219237, 29.527699158399582 ], [ -95.087804920453948, 29.527136158729125 ], [ -95.087080920839924, 29.526523158443922 ], [ -95.086140920187646, 29.525758158426235 ], [ -95.085387919940118, 29.525114158573576 ], [ -95.085314919548637, 29.525052158579165 ], [ -95.085240919861647, 29.524992157843464 ], [ -95.084799919564659, 29.524636158411678 ], [ -95.084466920006022, 29.524422158343953 ], [ -95.083895919639914, 29.52404815852486 ], [ -95.083162919250029, 29.523657158398873 ], [ -95.082696919336627, 29.523467158045548 ], [ -95.082477919009634, 29.523395157602259 ], [ -95.082638919159052, 29.523267157702175 ], [ -95.082758919040884, 29.523169158333253 ], [ -95.083676919411928, 29.522427157478102 ], [ -95.08312991929607, 29.521896157569476 ], [ -95.082968919016196, 29.521740157282498 ], [ -95.082209919169372, 29.521002157249519 ], [ -95.081700918671501, 29.520508157832126 ], [ -95.080986918700532, 29.519819157412741 ], [ -95.080197918019664, 29.519076157504127 ], [ -95.07869691849595, 29.520256157314225 ], [ -95.078075917641073, 29.520744157653791 ], [ -95.07766191739384, 29.521070157756053 ], [ -95.0774919174508, 29.52120415759191 ], [ -95.077108917936812, 29.52167415741722 ], [ -95.076975917314911, 29.521908157795263 ], [ -95.07665891756163, 29.522465158086771 ], [ -95.076386917291813, 29.522945157731236 ], [ -95.076357917324998, 29.522998158030045 ], [ -95.07627091714572, 29.523152158317664 ], [ -95.075843917597552, 29.523849158458134 ], [ -95.075406916937993, 29.524562158164322 ], [ -95.075031916982667, 29.525179158625708 ], [ -95.07477691774946, 29.5255951588992 ], [ -95.074197916994578, 29.526580159007501 ], [ -95.073693917407908, 29.527438159341347 ], [ -95.07333391746549, 29.528049158954751 ], [ -95.072953916490206, 29.528694159640018 ], [ -95.072823916852613, 29.528917159776043 ], [ -95.072600917048362, 29.529295159680046 ], [ -95.072492916605071, 29.529479159735917 ], [ -95.072754916846861, 29.529599159910649 ], [ -95.073076917528809, 29.530462159986673 ], [ -95.07323591742373, 29.531002159700027 ], [ -95.073269917209714, 29.531117160188568 ], [ -95.073354917456484, 29.531410159822837 ], [ -95.073878917191081, 29.533158160459646 ], [ -95.074138917068368, 29.534026160023775 ], [ -95.074387917212434, 29.534859160521343 ], [ -95.074519917504887, 29.535298160687052 ], [ -95.074696918149812, 29.535891160896004 ], [ -95.074845917796523, 29.536389161381678 ], [ -95.075251917576054, 29.537762161106766 ], [ -95.075661918192893, 29.539147161537592 ], [ -95.075757918244619, 29.539459161241982 ], [ -95.075991918030581, 29.540219161386137 ], [ -95.076369918102515, 29.54144316192987 ], [ -95.076866918605504, 29.543051162613839 ], [ -95.076973918563709, 29.543403162178642 ], [ -95.077166918796138, 29.544070162408961 ], [ -95.077236919083489, 29.544945162280417 ], [ -95.077536918870706, 29.545808162513776 ], [ -95.077689919162069, 29.54612516266306 ], [ -95.078258919050867, 29.547308163524445 ], [ -95.079097919403708, 29.547073163285692 ], [ -95.080611919443072, 29.546292162515869 ], [ -95.080735919711614, 29.546228162531424 ], [ -95.080900919946671, 29.545722162926481 ], [ -95.079927919204707, 29.544416162250169 ], [ -95.079915919585801, 29.544398162737107 ], [ -95.07957091904504, 29.543861162111309 ], [ -95.079380918867685, 29.543564161818477 ], [ -95.079285919134648, 29.54341916257134 ], [ -95.079218919334693, 29.543248162559316 ], [ -95.079171918808314, 29.543126161886857 ], [ -95.079067919192696, 29.542860162426486 ], [ -95.079045919572678, 29.542179162082331 ], [ -95.07977491948499, 29.541602161509051 ], [ -95.07987391966482, 29.541517161767832 ], [ -95.07994891915672, 29.541452161860231 ], [ -95.080439919589551, 29.54102616162923 ], [ -95.080439919493145, 29.540102161244437 ], [ -95.079959919194053, 29.539143161433547 ], [ -95.078942918501824, 29.538475160898493 ], [ -95.078676919033342, 29.537830160962937 ], [ -95.078664918554097, 29.537363161146956 ], [ -95.078654918939463, 29.537149160606166 ], [ -95.078681918701548, 29.536428161209084 ], [ -95.078812918653995, 29.535948160274003 ], [ -95.078976919119128, 29.535347160322218 ], [ -95.079070918700765, 29.535120160224892 ], [ -95.079230918855316, 29.534742160601699 ], [ -95.079586919194639, 29.534368160099387 ], [ -95.08000591895815, 29.534234159943956 ], [ -95.080116919461219, 29.534196159991318 ], [ -95.080423918682385, 29.53409715991101 ], [ -95.08088891960962, 29.534060159853208 ], [ -95.0815949195879, 29.534004160602446 ], [ -95.082518919186697, 29.534031160310455 ], [ -95.083442919601481, 29.534016160457472 ], [ -95.083807919790956, 29.534091159878781 ], [ -95.083946919582843, 29.534133160536967 ], [ -95.08472092032153, 29.534523160243861 ], [ -95.085234920482208, 29.534769160432969 ], [ -95.085574919946964, 29.534888160420916 ], [ -95.085777920374383, 29.53488216041432 ], [ -95.085882920485744, 29.534853160479425 ], [ -95.085932920448599, 29.534853160075421 ], [ -95.086061920391941, 29.534791159818319 ], [ -95.086114920483126, 29.534765160242973 ], [ -95.086144920883598, 29.534750160334827 ], [ -95.086349920656062, 29.534510160492982 ], [ -95.086573920218868, 29.534139159684443 ], [ -95.086764920552284, 29.533662159583329 ], [ -95.086800920968599, 29.533472160133144 ], [ -95.087004920930383, 29.533092160127399 ], [ -95.087113920603031, 29.532895160199296 ], [ -95.087579921291365, 29.532414159340373 ], [ -95.087878920857861, 29.532185159771331 ], [ -95.088120920979605, 29.531963159280163 ], [ -95.088193920929768, 29.531896159985518 ], [ -95.088348920659698, 29.531806159250284 ], [ -95.089360921670675, 29.531219159515199 ], [ -95.089633921577118, 29.531139158935257 ], [ -95.09004492124852, 29.531133159248952 ], [ -95.090181921698345, 29.531178159076259 ], [ -95.090555921940265, 29.531276159147364 ], [ -95.090628921884303, 29.531306159397239 ], [ -95.090765921992173, 29.531421159775707 ], [ -95.090839921760349, 29.531494159077813 ], [ -95.090863922175018, 29.531544159374587 ], [ -95.090976921284692, 29.531770159449923 ], [ -95.091020921377066, 29.531945159340911 ], [ -95.091039921919304, 29.532090159866531 ], [ -95.091030921439966, 29.532379159390509 ], [ -95.091022921736808, 29.532519159798294 ], [ -95.091029921485685, 29.53274815942914 ], [ -95.091086921936807, 29.533205159949059 ], [ -95.091103922325757, 29.533346159465612 ], [ -95.091620922252673, 29.533829159697625 ], [ -95.092335922646043, 29.534351159907047 ], [ -95.092368922047385, 29.534374159681292 ], [ -95.092471922553258, 29.534449160293534 ], [ -95.093180921972703, 29.534981160067236 ], [ -95.094041922596475, 29.535389160434409 ], [ -95.094553922315328, 29.535460159985494 ], [ -95.094782922661068, 29.535492160157759 ], [ -95.09505592322509, 29.535530160418016 ], [ -95.0950809227935, 29.535533160245997 ], [ -95.095203923016911, 29.535550160219735 ], [ -95.095889922884325, 29.5353981600013 ], [ -95.096264923218627, 29.535185159744834 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 653, "Tract": "48167721301", "Area_SqMi": 1.6931622472521932, "total_2009": 8243, "total_2010": 9179, "total_2011": 9915, "total_2012": 8704, "total_2013": 8172, "total_2014": 8711, "total_2015": 9316, "total_2016": 9139, "total_2017": 9252, "total_2018": 8858, "total_2019": 9684, "total_2020": 9311, "age1": 1440, "age2": 5762, "age3": 2220, "earn1": 1403, "earn2": 2305, "earn3": 5714, "naics_s01": 0, "naics_s02": 0, "naics_s03": 19, "naics_s04": 1249, "naics_s05": 65, "naics_s06": 5, "naics_s07": 132, "naics_s08": 0, "naics_s09": 2, "naics_s10": 14, "naics_s11": 60, "naics_s12": 54, "naics_s13": 3, "naics_s14": 52, "naics_s15": 7190, "naics_s16": 306, "naics_s17": 0, "naics_s18": 204, "naics_s19": 66, "naics_s20": 1, "race1": 8069, "race2": 785, "race3": 55, "race4": 366, "race5": 7, "race6": 140, "ethnicity1": 6948, "ethnicity2": 2474, "edu1": 1220, "edu2": 1807, "edu3": 2356, "edu4": 2599, "Shape_Length": 37943.293927532359, "Shape_Area": 47202465.577243172, "total_2021": 8805, "total_2022": 9422 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.102286924635322, 29.52145615686684 ], [ -95.102443924211542, 29.521400157015439 ], [ -95.102268923678807, 29.521209157051882 ], [ -95.099692923498949, 29.518407156830733 ], [ -95.099369923167473, 29.51806615662559 ], [ -95.096866922471577, 29.515428156258867 ], [ -95.091774920596976, 29.509966154951901 ], [ -95.089079920415799, 29.507075154178104 ], [ -95.086490919470805, 29.504088154247995 ], [ -95.083659918116496, 29.501206153226651 ], [ -95.083068918060661, 29.500516153372747 ], [ -95.08296691832237, 29.500368153305267 ], [ -95.082797917843067, 29.500126152963713 ], [ -95.082622918242947, 29.50014915347144 ], [ -95.082349917903457, 29.500185152914977 ], [ -95.076988916489967, 29.500268153207642 ], [ -95.076250916381369, 29.500278153460822 ], [ -95.074441916006819, 29.500305153438894 ], [ -95.074880916475465, 29.502393154355072 ], [ -95.074989915939028, 29.502914154365186 ], [ -95.075571916969466, 29.505649154841951 ], [ -95.075640916518495, 29.505972154483082 ], [ -95.075826916992739, 29.50686415456072 ], [ -95.07595491643724, 29.507473154723186 ], [ -95.076101917303731, 29.508176155391517 ], [ -95.076258917430891, 29.508928155068702 ], [ -95.076318917352424, 29.509211155108176 ], [ -95.07643091685901, 29.509751155315701 ], [ -95.076600916614453, 29.510569155428868 ], [ -95.076777916806591, 29.511422156084869 ], [ -95.076858917497361, 29.511808156151815 ], [ -95.077050916844385, 29.512708156148186 ], [ -95.077092917651285, 29.512902156128547 ], [ -95.077224917363694, 29.513528156240433 ], [ -95.077592917108404, 29.515268156651775 ], [ -95.077663917781166, 29.515601156325584 ], [ -95.077734917126463, 29.515920156276309 ], [ -95.077797917262885, 29.516204156675055 ], [ -95.077854917971194, 29.516462156581863 ], [ -95.078014918100209, 29.517184156444326 ], [ -95.078082917775987, 29.517492156873342 ], [ -95.07869691849595, 29.520256157314225 ], [ -95.080197918019664, 29.519076157504127 ], [ -95.080986918700532, 29.519819157412741 ], [ -95.081700918671501, 29.520508157832126 ], [ -95.082209919169372, 29.521002157249519 ], [ -95.082968919016196, 29.521740157282498 ], [ -95.08312991929607, 29.521896157569476 ], [ -95.083676919411928, 29.522427157478102 ], [ -95.082758919040884, 29.523169158333253 ], [ -95.082638919159052, 29.523267157702175 ], [ -95.082477919009634, 29.523395157602259 ], [ -95.082696919336627, 29.523467158045548 ], [ -95.083162919250029, 29.523657158398873 ], [ -95.083895919639914, 29.52404815852486 ], [ -95.084466920006022, 29.524422158343953 ], [ -95.084799919564659, 29.524636158411678 ], [ -95.085240919861647, 29.524992157843464 ], [ -95.085314919548637, 29.525052158579165 ], [ -95.085387919940118, 29.525114158573576 ], [ -95.086140920187646, 29.525758158426235 ], [ -95.087080920839924, 29.526523158443922 ], [ -95.087804920453948, 29.527136158729125 ], [ -95.088494921219237, 29.527699158399582 ], [ -95.089093921267434, 29.528204159134809 ], [ -95.089311921508497, 29.528387159144629 ], [ -95.089478921463197, 29.528528158767134 ], [ -95.089821921043139, 29.528771159260419 ], [ -95.090223921637516, 29.52913215895741 ], [ -95.091141921838116, 29.529969158969728 ], [ -95.092638922292437, 29.531410158923627 ], [ -95.095169923258496, 29.534144159423668 ], [ -95.095890923004546, 29.53482216024905 ], [ -95.096176923342369, 29.535100160408216 ], [ -95.096264923218627, 29.535185159744834 ], [ -95.096437923353051, 29.535076159890398 ], [ -95.096479922777704, 29.5350241598764 ], [ -95.096588923503148, 29.534890159946297 ], [ -95.096742923052176, 29.53470115989176 ], [ -95.096852923136893, 29.534387160163281 ], [ -95.09696092286201, 29.534070159766152 ], [ -95.096908923596672, 29.533471159767419 ], [ -95.096827923290746, 29.533183159151317 ], [ -95.096514923047607, 29.53251615981992 ], [ -95.096158923182358, 29.532076159540992 ], [ -95.095980923040898, 29.531776159580001 ], [ -95.095645923361744, 29.531212159539347 ], [ -95.095566922443396, 29.531038159528681 ], [ -95.095432922857952, 29.53074315876033 ], [ -95.0954279231904, 29.530706159215342 ], [ -95.095334923126501, 29.530064158603277 ], [ -95.095355922474667, 29.529631158551673 ], [ -95.095367922898731, 29.529381158436088 ], [ -95.095339922501495, 29.529274158501931 ], [ -95.095268922514578, 29.529007158474865 ], [ -95.095255922714884, 29.528959158596241 ], [ -95.095228923043194, 29.528928159100353 ], [ -95.095120922561463, 29.528804158294761 ], [ -95.095141922266606, 29.528730158258714 ], [ -95.095160922389269, 29.528664158980597 ], [ -95.095100922178318, 29.528324158537576 ], [ -95.095086922211792, 29.528246158720073 ], [ -95.095072922260812, 29.528165158941199 ], [ -95.094955922296336, 29.52801115818729 ], [ -95.094333922868799, 29.527196158279661 ], [ -95.093998921867353, 29.52679715786617 ], [ -95.093937922677156, 29.526724158213739 ], [ -95.093887922263008, 29.526665158047741 ], [ -95.093630922170107, 29.525806158350015 ], [ -95.093697922322249, 29.525349158335253 ], [ -95.093739921882118, 29.52506615761099 ], [ -95.093746922148227, 29.525017157571611 ], [ -95.093760921617019, 29.524918158074428 ], [ -95.093990921676976, 29.523988157941016 ], [ -95.094363922371187, 29.523147157978752 ], [ -95.094876922535263, 29.522398156966325 ], [ -95.095931922883139, 29.521660157375123 ], [ -95.096186922381634, 29.521463157066073 ], [ -95.096420922623011, 29.521271157471599 ], [ -95.096778923239754, 29.521006157134334 ], [ -95.097385923141971, 29.520389156529141 ], [ -95.097559922711937, 29.519629157092453 ], [ -95.097585922588038, 29.518950156242468 ], [ -95.098096923422716, 29.518327156687999 ], [ -95.098443923164211, 29.518256156862897 ], [ -95.098635923070404, 29.518218156460986 ], [ -95.098831923438908, 29.518177156125695 ], [ -95.099033922865317, 29.518347156633546 ], [ -95.099330923686892, 29.518602156869413 ], [ -95.099331923598413, 29.518643156322558 ], [ -95.099409923729823, 29.518783156286538 ], [ -95.099446923317416, 29.518849156303187 ], [ -95.099629923795675, 29.519160156545059 ], [ -95.099666922935043, 29.519255156690264 ], [ -95.099812923095485, 29.519574156271709 ], [ -95.099968923647623, 29.51988515714449 ], [ -95.100087923403265, 29.520084156488331 ], [ -95.100270924084739, 29.520340157014619 ], [ -95.100555923925242, 29.520650156565019 ], [ -95.100793924241884, 29.520913156714485 ], [ -95.101077924288134, 29.521161156826192 ], [ -95.101324924081183, 29.521312157013398 ], [ -95.101645924504794, 29.521440156996508 ], [ -95.101874924133426, 29.521487156565779 ], [ -95.102055923828331, 29.52148815658667 ], [ -95.102073924520468, 29.521487156705387 ], [ -95.102085923978535, 29.521487157245858 ], [ -95.102286924635322, 29.52145615686684 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 654, "Tract": "48167720703", "Area_SqMi": 1.8872930266721686, "total_2009": 755, "total_2010": 1148, "total_2011": 1488, "total_2012": 1097, "total_2013": 1326, "total_2014": 1462, "total_2015": 1921, "total_2016": 1960, "total_2017": 1916, "total_2018": 2213, "total_2019": 1793, "total_2020": 1393, "age1": 670, "age2": 983, "age3": 392, "earn1": 450, "earn2": 825, "earn3": 770, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 101, "naics_s05": 0, "naics_s06": 17, "naics_s07": 861, "naics_s08": 17, "naics_s09": 0, "naics_s10": 137, "naics_s11": 2, "naics_s12": 66, "naics_s13": 0, "naics_s14": 106, "naics_s15": 8, "naics_s16": 337, "naics_s17": 0, "naics_s18": 334, "naics_s19": 59, "naics_s20": 0, "race1": 1500, "race2": 343, "race3": 11, "race4": 157, "race5": 0, "race6": 34, "ethnicity1": 1406, "ethnicity2": 639, "edu1": 278, "edu2": 357, "edu3": 472, "edu4": 268, "Shape_Length": 29254.004065030986, "Shape_Area": 52614499.44932247, "total_2021": 1479, "total_2022": 2045 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.105444923282334, 29.488635150168413 ], [ -95.105341924016258, 29.488463150237159 ], [ -95.104588923663243, 29.487211149803958 ], [ -95.1027619225042, 29.484175149631692 ], [ -95.102667922577453, 29.484017149305966 ], [ -95.099830921947188, 29.479271147982193 ], [ -95.096700920425604, 29.474032147692949 ], [ -95.095772920057811, 29.472480147126667 ], [ -95.095197919758007, 29.471603146781238 ], [ -95.093113919591474, 29.468974146711947 ], [ -95.093092919095511, 29.46894614622126 ], [ -95.092428919582261, 29.468093146574205 ], [ -95.091155918723288, 29.466544145678327 ], [ -95.090766918340535, 29.466075145656148 ], [ -95.090488919226502, 29.46625214562901 ], [ -95.090433918875291, 29.466287146368298 ], [ -95.088646917893342, 29.467362146548155 ], [ -95.087886918330227, 29.467819146079112 ], [ -95.087064918329759, 29.468367146804944 ], [ -95.086322917655494, 29.468830146744271 ], [ -95.086128918141398, 29.468964146371363 ], [ -95.085302917633612, 29.469536146798148 ], [ -95.084535917895153, 29.470067146528123 ], [ -95.083809917232955, 29.470569147004401 ], [ -95.081916916576532, 29.471879147173023 ], [ -95.080458916203085, 29.472917147239333 ], [ -95.078039916129299, 29.474638147782322 ], [ -95.077834915495202, 29.474784147885874 ], [ -95.076258915142105, 29.475894148344882 ], [ -95.074087914814456, 29.477423148651834 ], [ -95.073850914941133, 29.477617148888807 ], [ -95.073680914793542, 29.477737148749366 ], [ -95.074500914989741, 29.478596148733246 ], [ -95.075831916014522, 29.479953149297504 ], [ -95.07653191546656, 29.480676149504148 ], [ -95.077237916430136, 29.481405149420112 ], [ -95.077527916239319, 29.481699149959557 ], [ -95.077558915764811, 29.481726149991566 ], [ -95.078658916498512, 29.482845149966632 ], [ -95.07956091704429, 29.483772150131895 ], [ -95.080062916716528, 29.484288149698468 ], [ -95.081480917368665, 29.48572815007406 ], [ -95.082894917921138, 29.487165150187746 ], [ -95.083662918307624, 29.487951150525756 ], [ -95.084202918495492, 29.488487150305488 ], [ -95.085192918708174, 29.489694150713227 ], [ -95.086890919053374, 29.49128815155499 ], [ -95.086999919336719, 29.491444151431889 ], [ -95.087704919063825, 29.491431151334805 ], [ -95.08770691928305, 29.491279151260237 ], [ -95.090575920259241, 29.491230150805443 ], [ -95.091112919891714, 29.491224150780024 ], [ -95.094493920608443, 29.491183150502167 ], [ -95.095869921246603, 29.491166150456881 ], [ -95.097373921568845, 29.491178150967713 ], [ -95.097373921200159, 29.491290150474118 ], [ -95.097506921130346, 29.491297151139481 ], [ -95.097813921764327, 29.491304151123039 ], [ -95.099659921813469, 29.491332151227883 ], [ -95.10103792286526, 29.491339150731179 ], [ -95.101757922659104, 29.491332150386526 ], [ -95.102048922744231, 29.49123915106447 ], [ -95.102451922694542, 29.491122150897436 ], [ -95.102706922504282, 29.49104315056961 ], [ -95.102923922560279, 29.49095815023399 ], [ -95.103125923466223, 29.490847150524033 ], [ -95.10341192313463, 29.490640150615608 ], [ -95.103692923105598, 29.490433150590878 ], [ -95.104170923238556, 29.489950150655272 ], [ -95.105137923144113, 29.488902150065773 ], [ -95.105444923282334, 29.488635150168413 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 655, "Tract": "48167721208", "Area_SqMi": 1.0714108146846695, "total_2009": 541, "total_2010": 519, "total_2011": 670, "total_2012": 1170, "total_2013": 674, "total_2014": 1348, "total_2015": 808, "total_2016": 1051, "total_2017": 773, "total_2018": 1051, "total_2019": 1015, "total_2020": 1027, "age1": 291, "age2": 522, "age3": 201, "earn1": 197, "earn2": 369, "earn3": 448, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 178, "naics_s05": 19, "naics_s06": 49, "naics_s07": 447, "naics_s08": 7, "naics_s09": 0, "naics_s10": 3, "naics_s11": 9, "naics_s12": 85, "naics_s13": 0, "naics_s14": 32, "naics_s15": 4, "naics_s16": 49, "naics_s17": 20, "naics_s18": 4, "naics_s19": 105, "naics_s20": 0, "race1": 799, "race2": 153, "race3": 10, "race4": 38, "race5": 1, "race6": 13, "ethnicity1": 713, "ethnicity2": 301, "edu1": 163, "edu2": 220, "edu3": 243, "edu4": 97, "Shape_Length": 23164.950618664207, "Shape_Area": 29869099.775472604, "total_2021": 943, "total_2022": 1014 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.033289907294929, 29.529845160533959 ], [ -95.033383906627279, 29.529820160667885 ], [ -95.032376906580666, 29.526908160618451 ], [ -95.031772906393059, 29.525169160472654 ], [ -95.031417905568816, 29.524146159791481 ], [ -95.030767905730627, 29.522274159485153 ], [ -95.030621905370396, 29.521852159697968 ], [ -95.030463906211992, 29.521401159173557 ], [ -95.030215905455037, 29.52068715905725 ], [ -95.03018590516227, 29.520600159475674 ], [ -95.030166905123508, 29.520546159084976 ], [ -95.02956090565263, 29.518809158783423 ], [ -95.028972905613543, 29.517118158155625 ], [ -95.028547905419202, 29.5158991585512 ], [ -95.028328904485704, 29.515237158071251 ], [ -95.028305905131973, 29.515168158409345 ], [ -95.028243904502986, 29.515002157904803 ], [ -95.028188905229328, 29.514855158225789 ], [ -95.028094905159165, 29.514900158501799 ], [ -95.027623904726397, 29.515134158162532 ], [ -95.027084904389937, 29.515460158629899 ], [ -95.025976903947381, 29.516290158724171 ], [ -95.02382290413685, 29.517874158658692 ], [ -95.022926903775542, 29.518534158985254 ], [ -95.022821903525212, 29.518619158566075 ], [ -95.021092902767577, 29.51992415971284 ], [ -95.019799902549295, 29.520922159229695 ], [ -95.018460903090741, 29.521911159626978 ], [ -95.018387902942592, 29.521962159590512 ], [ -95.016992902394051, 29.522965160418934 ], [ -95.016661902459688, 29.523210160412621 ], [ -95.016140901907875, 29.523599159902581 ], [ -95.014202901749357, 29.524778160418446 ], [ -95.012884901306734, 29.525452160503093 ], [ -95.012390901566462, 29.52568516064548 ], [ -95.012152901271506, 29.525799160529527 ], [ -95.011556901303649, 29.526062161045697 ], [ -95.011457901127869, 29.526106161243696 ], [ -95.011171901242932, 29.526243160805212 ], [ -95.011213900832217, 29.526315160855852 ], [ -95.011270900663447, 29.526411160956684 ], [ -95.011784900711859, 29.527273160910411 ], [ -95.01242590097965, 29.528347161545039 ], [ -95.01256490164964, 29.52858016151923 ], [ -95.013683901697902, 29.530456161487361 ], [ -95.014019901673947, 29.531018162187518 ], [ -95.014268901693413, 29.531436162245093 ], [ -95.014760902593437, 29.532276161825674 ], [ -95.015693902748282, 29.533872162124112 ], [ -95.016074902561499, 29.534523162891933 ], [ -95.017189902677401, 29.536446162519727 ], [ -95.018149903189837, 29.538075162973392 ], [ -95.018386903129127, 29.537940162761224 ], [ -95.018633902887217, 29.537800163197304 ], [ -95.018764903549155, 29.537725162999642 ], [ -95.019936903768453, 29.536911162623063 ], [ -95.020033904130457, 29.536838162541958 ], [ -95.020974903848369, 29.536133162796215 ], [ -95.021783903670709, 29.535528162181492 ], [ -95.022433904551036, 29.535039162662208 ], [ -95.024345904865697, 29.53360716223542 ], [ -95.024906904970976, 29.53320016202516 ], [ -95.025758905450331, 29.532581161447421 ], [ -95.026743904828024, 29.531859161769464 ], [ -95.027270904867848, 29.53151016135266 ], [ -95.027333905811119, 29.531467161593952 ], [ -95.027423904967947, 29.531409161454217 ], [ -95.028230905783346, 29.53115516146147 ], [ -95.028951905861206, 29.530988160946279 ], [ -95.029072905806132, 29.530960161717072 ], [ -95.029799905582934, 29.530766161469188 ], [ -95.030238905972084, 29.530649161008224 ], [ -95.032941906663496, 29.529937160788382 ], [ -95.033254907297703, 29.529854161105849 ], [ -95.033289907294929, 29.529845160533959 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 656, "Tract": "48167720511", "Area_SqMi": 1.0206697998550041, "total_2009": 145, "total_2010": 111, "total_2011": 83, "total_2012": 112, "total_2013": 128, "total_2014": 89, "total_2015": 96, "total_2016": 101, "total_2017": 77, "total_2018": 95, "total_2019": 120, "total_2020": 124, "age1": 65, "age2": 101, "age3": 49, "earn1": 45, "earn2": 66, "earn3": 104, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 1, "naics_s06": 0, "naics_s07": 28, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 34, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 90, "naics_s17": 0, "naics_s18": 8, "naics_s19": 41, "naics_s20": 0, "race1": 175, "race2": 18, "race3": 2, "race4": 15, "race5": 1, "race6": 4, "ethnicity1": 161, "ethnicity2": 54, "edu1": 26, "edu2": 47, "edu3": 39, "edu4": 38, "Shape_Length": 25567.266700369964, "Shape_Area": 28454527.126136348, "total_2021": 158, "total_2022": 215 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.123439927817373, 29.476705147226415 ], [ -95.123399927139843, 29.474881146712516 ], [ -95.123270927784276, 29.468843145026305 ], [ -95.122758927449311, 29.468854145541655 ], [ -95.120854926675648, 29.468893145053279 ], [ -95.115310925415926, 29.468931145834794 ], [ -95.115181925678542, 29.468933145582096 ], [ -95.113745924397236, 29.468959145795054 ], [ -95.11374092468472, 29.468818145836021 ], [ -95.112712924452055, 29.468833145804929 ], [ -95.108395923576666, 29.46890114554634 ], [ -95.105017922171186, 29.468924145537628 ], [ -95.105052922307607, 29.469135145962447 ], [ -95.105065923061773, 29.469928145785932 ], [ -95.105082922551105, 29.470925146339177 ], [ -95.105097923105433, 29.471748146234063 ], [ -95.105105922462258, 29.472249146495159 ], [ -95.105107922662299, 29.472339146531944 ], [ -95.105109922471499, 29.472487146535148 ], [ -95.105122923032539, 29.473208147125501 ], [ -95.105134923006915, 29.473929147329425 ], [ -95.105138922369846, 29.474159146714097 ], [ -95.105303923623097, 29.482068149114983 ], [ -95.105323923467665, 29.483001149049329 ], [ -95.105329923072063, 29.48414014957708 ], [ -95.10533292362949, 29.484524149137048 ], [ -95.105381923315008, 29.485095149372064 ], [ -95.105384923792712, 29.4851441491614 ], [ -95.105416923243013, 29.485243149363306 ], [ -95.105373923440382, 29.486123149446755 ], [ -95.105392923859441, 29.486584149309781 ], [ -95.105421923959284, 29.487263149531834 ], [ -95.105355923419438, 29.48741214994082 ], [ -95.105294923624001, 29.487464149445906 ], [ -95.105212922973394, 29.487494149682398 ], [ -95.105278923929674, 29.48761114949459 ], [ -95.105605923338132, 29.488160150061201 ], [ -95.105542923339925, 29.488231150202655 ], [ -95.105341924016258, 29.488463150237159 ], [ -95.105444923282334, 29.488635150168413 ], [ -95.105629923691836, 29.48842514965629 ], [ -95.105709923971233, 29.488335150063108 ], [ -95.105883923412065, 29.488163150269568 ], [ -95.106185923578437, 29.487845149744484 ], [ -95.106551923763163, 29.487484150113978 ], [ -95.106843924142851, 29.487246150104315 ], [ -95.107105924249097, 29.487107149391317 ], [ -95.107374923877828, 29.486986149701877 ], [ -95.107724923864097, 29.486880149841976 ], [ -95.108079924154254, 29.486811149337516 ], [ -95.108487924162446, 29.486779149432735 ], [ -95.109076924431633, 29.486753149297719 ], [ -95.110063925029309, 29.486726149571421 ], [ -95.110319924965268, 29.486723149370313 ], [ -95.111479924925263, 29.486682149648878 ], [ -95.111879924777114, 29.486667148999221 ], [ -95.113130925222222, 29.486612148991785 ], [ -95.113731926022652, 29.486574148998276 ], [ -95.11432592560098, 29.48659314974228 ], [ -95.114740926289656, 29.486630149479531 ], [ -95.115168926188417, 29.48658714967782 ], [ -95.115506926308328, 29.486504149512783 ], [ -95.115502925947766, 29.486269149302554 ], [ -95.115466926246938, 29.484137148382967 ], [ -95.115407926147739, 29.480895148206812 ], [ -95.115332925517848, 29.478100147651613 ], [ -95.115337925860743, 29.477823147311195 ], [ -95.115313925411058, 29.476885147442985 ], [ -95.115311925304837, 29.476815147417856 ], [ -95.121398927108061, 29.47673514698366 ], [ -95.123439927817373, 29.476705147226415 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 657, "Tract": "48167720510", "Area_SqMi": 0.66465505217856968, "total_2009": 496, "total_2010": 415, "total_2011": 412, "total_2012": 285, "total_2013": 267, "total_2014": 396, "total_2015": 372, "total_2016": 761, "total_2017": 985, "total_2018": 1143, "total_2019": 1038, "total_2020": 1167, "age1": 309, "age2": 495, "age3": 182, "earn1": 163, "earn2": 338, "earn3": 485, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 39, "naics_s05": 25, "naics_s06": 39, "naics_s07": 323, "naics_s08": 1, "naics_s09": 1, "naics_s10": 11, "naics_s11": 4, "naics_s12": 421, "naics_s13": 0, "naics_s14": 13, "naics_s15": 2, "naics_s16": 57, "naics_s17": 3, "naics_s18": 32, "naics_s19": 14, "naics_s20": 0, "race1": 714, "race2": 207, "race3": 7, "race4": 39, "race5": 4, "race6": 15, "ethnicity1": 710, "ethnicity2": 276, "edu1": 154, "edu2": 202, "edu3": 209, "edu4": 112, "Shape_Length": 28586.896719381086, "Shape_Area": 18529445.286247693, "total_2021": 905, "total_2022": 986 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.128072929844691, 29.488059149396857 ], [ -95.128064929394867, 29.487523148926051 ], [ -95.128052929091538, 29.486750148863059 ], [ -95.128046928845365, 29.486371149123052 ], [ -95.12803292930316, 29.485981149132286 ], [ -95.128017929295567, 29.485560148254113 ], [ -95.128003929137691, 29.4851771483733 ], [ -95.127978929346995, 29.484579148184732 ], [ -95.127902929405963, 29.484140148304881 ], [ -95.127840929310409, 29.483744148371176 ], [ -95.127829928707584, 29.483711148733001 ], [ -95.127370928752214, 29.483711148081476 ], [ -95.125195928550511, 29.48375414857729 ], [ -95.124522928020511, 29.483767147982444 ], [ -95.123893928087895, 29.483779148100613 ], [ -95.123488928098652, 29.483787148294994 ], [ -95.122198928028496, 29.483803148275243 ], [ -95.121394927673549, 29.483813148907075 ], [ -95.120819927570324, 29.483928148294794 ], [ -95.120367926823988, 29.484082148311312 ], [ -95.120219927234714, 29.484132148311943 ], [ -95.11938992707536, 29.484579148403128 ], [ -95.116877926153279, 29.485915148760824 ], [ -95.115849926023401, 29.486420149101537 ], [ -95.115506926308328, 29.486504149512783 ], [ -95.115168926188417, 29.48658714967782 ], [ -95.114740926289656, 29.486630149479531 ], [ -95.11432592560098, 29.48659314974228 ], [ -95.113731926022652, 29.486574148998276 ], [ -95.113130925222222, 29.486612148991785 ], [ -95.111879924777114, 29.486667148999221 ], [ -95.111479924925263, 29.486682149648878 ], [ -95.110319924965268, 29.486723149370313 ], [ -95.110063925029309, 29.486726149571421 ], [ -95.109076924431633, 29.486753149297719 ], [ -95.108487924162446, 29.486779149432735 ], [ -95.108079924154254, 29.486811149337516 ], [ -95.107724923864097, 29.486880149841976 ], [ -95.107374923877828, 29.486986149701877 ], [ -95.107105924249097, 29.487107149391317 ], [ -95.106843924142851, 29.487246150104315 ], [ -95.106551923763163, 29.487484150113978 ], [ -95.106185923578437, 29.487845149744484 ], [ -95.105883923412065, 29.488163150269568 ], [ -95.105709923971233, 29.488335150063108 ], [ -95.105629923691836, 29.48842514965629 ], [ -95.105444923282334, 29.488635150168413 ], [ -95.106536923425423, 29.490450150500028 ], [ -95.106671923627516, 29.490692150559397 ], [ -95.106868924087749, 29.491020150084598 ], [ -95.106935924361309, 29.491132150353028 ], [ -95.107264923737389, 29.491696150745682 ], [ -95.109901925086561, 29.496031151785033 ], [ -95.11022792532404, 29.495864151584087 ], [ -95.110858924832911, 29.495771151765254 ], [ -95.111803925869609, 29.495809151044952 ], [ -95.111788925896363, 29.494355151058343 ], [ -95.111927925701664, 29.49435515088658 ], [ -95.112328925587377, 29.494341151249738 ], [ -95.115641926553451, 29.494228151169668 ], [ -95.115635926306723, 29.493894150441431 ], [ -95.115621926704776, 29.493260150261019 ], [ -95.115607926835921, 29.493190151049298 ], [ -95.115607926848895, 29.492471150412097 ], [ -95.115595925873691, 29.491768150303812 ], [ -95.115583926150492, 29.491050150310397 ], [ -95.115570926372854, 29.490315149629584 ], [ -95.115562925744115, 29.489833149716848 ], [ -95.115554926412173, 29.489403149480228 ], [ -95.118059926360218, 29.48936915010313 ], [ -95.121001927385223, 29.489306150049533 ], [ -95.124000928315013, 29.489289149470775 ], [ -95.124012928056459, 29.489619149787018 ], [ -95.123992928223956, 29.489968149986897 ], [ -95.124024928452314, 29.491372149675225 ], [ -95.124051928471644, 29.493242150722573 ], [ -95.124060928760144, 29.493839150914756 ], [ -95.124097928656667, 29.495503151117799 ], [ -95.124128928243508, 29.496995151539842 ], [ -95.124141928338247, 29.497217151327881 ], [ -95.124154929003353, 29.497448150977018 ], [ -95.12417592898197, 29.498413151209707 ], [ -95.124175928514418, 29.498700151697282 ], [ -95.124175928676905, 29.499238151433122 ], [ -95.124196929174843, 29.50015615148477 ], [ -95.124218928585933, 29.500579151499064 ], [ -95.1242209285044, 29.500766151642374 ], [ -95.125309929413262, 29.500582152302187 ], [ -95.125661929686061, 29.500510151843137 ], [ -95.126366929933454, 29.500367152167389 ], [ -95.126328929728842, 29.499812151605969 ], [ -95.12628692929718, 29.49819515115853 ], [ -95.126375929237156, 29.49759015118239 ], [ -95.126571929399162, 29.496450150917024 ], [ -95.126544929755497, 29.496181151213808 ], [ -95.126481929050286, 29.495542150948179 ], [ -95.126503929484542, 29.495413150657122 ], [ -95.126553929564494, 29.49511415067219 ], [ -95.126690929398052, 29.494840150768443 ], [ -95.127034929675446, 29.494153150915295 ], [ -95.127029929697457, 29.493899150296961 ], [ -95.127015928930376, 29.493108150090976 ], [ -95.127002929171923, 29.492356150169055 ], [ -95.126988929072937, 29.491579150110393 ], [ -95.126975928676444, 29.490827149928247 ], [ -95.126962928625744, 29.490092149981091 ], [ -95.127051929633325, 29.489772150039656 ], [ -95.127158929427139, 29.489505149680198 ], [ -95.127352929712742, 29.489310149890496 ], [ -95.127390929399738, 29.4892731491239 ], [ -95.127899929032765, 29.488725149398658 ], [ -95.128046929478018, 29.488405149407956 ], [ -95.128054928846865, 29.48830414921019 ], [ -95.128072929844691, 29.488059149396857 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 658, "Tract": "48167720508", "Area_SqMi": 0.47960897752981213, "total_2009": 34, "total_2010": 36, "total_2011": 66, "total_2012": 18, "total_2013": 25, "total_2014": 28, "total_2015": 34, "total_2016": 37, "total_2017": 50, "total_2018": 34, "total_2019": 66, "total_2020": 40, "age1": 17, "age2": 23, "age3": 14, "earn1": 23, "earn2": 15, "earn3": 16, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 20, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 3, "naics_s12": 8, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 0, "naics_s19": 3, "naics_s20": 0, "race1": 44, "race2": 5, "race3": 0, "race4": 4, "race5": 0, "race6": 1, "ethnicity1": 45, "ethnicity2": 9, "edu1": 7, "edu2": 7, "edu3": 11, "edu4": 12, "Shape_Length": 17176.270496318506, "Shape_Area": 13370677.434562335, "total_2021": 48, "total_2022": 54 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.135294930828181, 29.483801148041852 ], [ -95.135296931307479, 29.482141147540744 ], [ -95.134919930495442, 29.482127147945452 ], [ -95.134831930330179, 29.482139148025038 ], [ -95.134062930171979, 29.482253148020529 ], [ -95.133331930270558, 29.482396147487506 ], [ -95.131954930344151, 29.48290314776786 ], [ -95.131487930266502, 29.48307214849185 ], [ -95.131361930156373, 29.483116147653597 ], [ -95.13114293039294, 29.483193148275223 ], [ -95.130944930188093, 29.483265148512523 ], [ -95.130689929974338, 29.483346148025621 ], [ -95.1301039297485, 29.483488147904797 ], [ -95.129667929298407, 29.483576148568361 ], [ -95.129099929894579, 29.483636148213197 ], [ -95.128528929012077, 29.483683148662365 ], [ -95.127829928707584, 29.483711148733001 ], [ -95.127840929310409, 29.483744148371176 ], [ -95.127902929405963, 29.484140148304881 ], [ -95.127978929346995, 29.484579148184732 ], [ -95.128003929137691, 29.4851771483733 ], [ -95.128017929295567, 29.485560148254113 ], [ -95.12803292930316, 29.485981149132286 ], [ -95.128046928845365, 29.486371149123052 ], [ -95.128052929091538, 29.486750148863059 ], [ -95.128064929394867, 29.487523148926051 ], [ -95.128072929844691, 29.488059149396857 ], [ -95.128054928846865, 29.48830414921019 ], [ -95.128046929478018, 29.488405149407956 ], [ -95.127899929032765, 29.488725149398658 ], [ -95.127390929399738, 29.4892731491239 ], [ -95.127352929712742, 29.489310149890496 ], [ -95.127158929427139, 29.489505149680198 ], [ -95.127051929633325, 29.489772150039656 ], [ -95.126962928625744, 29.490092149981091 ], [ -95.126975928676444, 29.490827149928247 ], [ -95.126988929072937, 29.491579150110393 ], [ -95.127002929171923, 29.492356150169055 ], [ -95.127015928930376, 29.493108150090976 ], [ -95.127029929697457, 29.493899150296961 ], [ -95.127034929675446, 29.494153150915295 ], [ -95.126690929398052, 29.494840150768443 ], [ -95.126553929564494, 29.49511415067219 ], [ -95.126503929484542, 29.495413150657122 ], [ -95.126481929050286, 29.495542150948179 ], [ -95.126544929755497, 29.496181151213808 ], [ -95.126571929399162, 29.496450150917024 ], [ -95.126375929237156, 29.49759015118239 ], [ -95.12628692929718, 29.49819515115853 ], [ -95.126328929728842, 29.499812151605969 ], [ -95.126366929933454, 29.500367152167389 ], [ -95.127087929925167, 29.50022015185089 ], [ -95.12848892978711, 29.499870151242057 ], [ -95.128583929742305, 29.499846151168157 ], [ -95.129110929774512, 29.49966215190031 ], [ -95.12937893010087, 29.49956715144981 ], [ -95.130742930797751, 29.499089151018584 ], [ -95.130928930325425, 29.499024151624013 ], [ -95.132777931056964, 29.498307151553306 ], [ -95.133631931624947, 29.49798215134642 ], [ -95.133499931190812, 29.494014150468725 ], [ -95.133446931093502, 29.491326150063099 ], [ -95.133417930550181, 29.490816149360182 ], [ -95.133450930513618, 29.490794149156248 ], [ -95.133514930352391, 29.490744149636772 ], [ -95.134403931002822, 29.490069149352241 ], [ -95.135296930827678, 29.489358149555034 ], [ -95.135285931657194, 29.488646149517422 ], [ -95.135288931632743, 29.486932148811025 ], [ -95.135291930800136, 29.485049148199924 ], [ -95.135291931070256, 29.484540147879546 ], [ -95.135294930828181, 29.483801148041852 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 659, "Tract": "48167720512", "Area_SqMi": 0.55787733766877434, "total_2009": 27, "total_2010": 56, "total_2011": 50, "total_2012": 65, "total_2013": 33, "total_2014": 45, "total_2015": 33, "total_2016": 46, "total_2017": 61, "total_2018": 63, "total_2019": 54, "total_2020": 50, "age1": 7, "age2": 13, "age3": 9, "earn1": 4, "earn2": 9, "earn3": 16, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 4, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 3, "naics_s19": 1, "naics_s20": 0, "race1": 20, "race2": 6, "race3": 0, "race4": 2, "race5": 0, "race6": 1, "ethnicity1": 21, "ethnicity2": 8, "edu1": 3, "edu2": 7, "edu3": 4, "edu4": 8, "Shape_Length": 20043.988608683721, "Shape_Area": 15552665.35759943, "total_2021": 40, "total_2022": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.12927892928937, 29.479103147129738 ], [ -95.129260929409099, 29.478570146927943 ], [ -95.129260928752402, 29.477969146610029 ], [ -95.129243928952036, 29.476299146980239 ], [ -95.129243929030764, 29.476250146422235 ], [ -95.129209929562933, 29.475271146172613 ], [ -95.12915792913337, 29.474859146876337 ], [ -95.128937928928067, 29.474421146698486 ], [ -95.128444928873392, 29.473836146634515 ], [ -95.128006928896525, 29.473518146322643 ], [ -95.127733928872829, 29.473289146048426 ], [ -95.127551928156706, 29.473201145834224 ], [ -95.127388928461045, 29.473063146320634 ], [ -95.127224928430621, 29.472951145873633 ], [ -95.126967928352997, 29.472676145719646 ], [ -95.126734928637518, 29.472379145617641 ], [ -95.126434928234374, 29.471594145797592 ], [ -95.126388927704355, 29.471088146140922 ], [ -95.126389927670445, 29.47076714535595 ], [ -95.126391928037606, 29.469986145888583 ], [ -95.126393927850771, 29.469173145135375 ], [ -95.126394928207958, 29.468753145323085 ], [ -95.126255927873274, 29.468784145034093 ], [ -95.123270927784276, 29.468843145026305 ], [ -95.123399927139843, 29.474881146712516 ], [ -95.123439927817373, 29.476705147226415 ], [ -95.121398927108061, 29.47673514698366 ], [ -95.115311925304837, 29.476815147417856 ], [ -95.115313925411058, 29.476885147442985 ], [ -95.115337925860743, 29.477823147311195 ], [ -95.115332925517848, 29.478100147651613 ], [ -95.115407926147739, 29.480895148206812 ], [ -95.115466926246938, 29.484137148382967 ], [ -95.115502925947766, 29.486269149302554 ], [ -95.115506926308328, 29.486504149512783 ], [ -95.115849926023401, 29.486420149101537 ], [ -95.116877926153279, 29.485915148760824 ], [ -95.11938992707536, 29.484579148403128 ], [ -95.120219927234714, 29.484132148311943 ], [ -95.120367926823988, 29.484082148311312 ], [ -95.120819927570324, 29.483928148294794 ], [ -95.121394927673549, 29.483813148907075 ], [ -95.122198928028496, 29.483803148275243 ], [ -95.123488928098652, 29.483787148294994 ], [ -95.123893928087895, 29.483779148100613 ], [ -95.124522928020511, 29.483767147982444 ], [ -95.125195928550511, 29.48375414857729 ], [ -95.127370928752214, 29.483711148081476 ], [ -95.127829928707584, 29.483711148733001 ], [ -95.127737928861237, 29.483440148449883 ], [ -95.127655929299095, 29.482745148307281 ], [ -95.127683928648992, 29.482217148260798 ], [ -95.127840928598104, 29.481835147692234 ], [ -95.127955928696139, 29.481577148092089 ], [ -95.128384929437416, 29.480993147418168 ], [ -95.128814929314487, 29.480615147767921 ], [ -95.12905492923305, 29.480271147435108 ], [ -95.129226929280463, 29.479652147125368 ], [ -95.12927892928937, 29.479103147129738 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 660, "Tract": "48167721211", "Area_SqMi": 2.1791672813066492, "total_2009": 19, "total_2010": 20, "total_2011": 14, "total_2012": 181, "total_2013": 208, "total_2014": 170, "total_2015": 184, "total_2016": 194, "total_2017": 270, "total_2018": 433, "total_2019": 415, "total_2020": 165, "age1": 38, "age2": 87, "age3": 47, "earn1": 21, "earn2": 61, "earn3": 90, "naics_s01": 0, "naics_s02": 0, "naics_s03": 11, "naics_s04": 28, "naics_s05": 35, "naics_s06": 1, "naics_s07": 8, "naics_s08": 4, "naics_s09": 5, "naics_s10": 2, "naics_s11": 1, "naics_s12": 20, "naics_s13": 3, "naics_s14": 11, "naics_s15": 0, "naics_s16": 27, "naics_s17": 0, "naics_s18": 0, "naics_s19": 16, "naics_s20": 0, "race1": 147, "race2": 22, "race3": 0, "race4": 1, "race5": 0, "race6": 2, "ethnicity1": 123, "ethnicity2": 49, "edu1": 15, "edu2": 36, "edu3": 51, "edu4": 32, "Shape_Length": 35553.776927340688, "Shape_Area": 60751454.120752424, "total_2021": 163, "total_2022": 172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.034478905506163, 29.496436153584323 ], [ -95.034516905504248, 29.495075153584935 ], [ -95.034440905322299, 29.492789153683212 ], [ -95.032476905263621, 29.492789153354572 ], [ -95.031989904987327, 29.492767153677121 ], [ -95.03045390430573, 29.49267015343106 ], [ -95.029609904443802, 29.492605153051873 ], [ -95.028815904298611, 29.492586153493761 ], [ -95.027988903662319, 29.492523152999322 ], [ -95.026998903299884, 29.492544153055103 ], [ -95.021700902703344, 29.492624153674768 ], [ -95.021384901783819, 29.492629153435917 ], [ -95.02017690133583, 29.492646153559807 ], [ -95.019493901950923, 29.492659153634317 ], [ -95.019442901342643, 29.492660154164025 ], [ -95.019319901379959, 29.492663153786662 ], [ -95.019001901407577, 29.492669153689896 ], [ -95.016925901079887, 29.492709154231161 ], [ -95.015542901060869, 29.492736153696814 ], [ -95.015044901001957, 29.492744153789761 ], [ -95.014970900418675, 29.492746154081598 ], [ -95.013179900448733, 29.492781154402625 ], [ -95.010774899275859, 29.492828153920961 ], [ -95.010303898874596, 29.492867154196272 ], [ -95.009660899079407, 29.49295615436375 ], [ -95.008694899106246, 29.493108153755045 ], [ -95.00788989827717, 29.493269154252776 ], [ -95.007362899033907, 29.493400154643332 ], [ -95.006772898800534, 29.49354615389791 ], [ -95.005708897763199, 29.493895154511492 ], [ -95.004965898413616, 29.494172154751446 ], [ -95.003830897731362, 29.494650154859666 ], [ -95.002763897090531, 29.49512515460513 ], [ -95.002414897438214, 29.495282154592921 ], [ -95.000653897198049, 29.496068154719339 ], [ -94.99919189706857, 29.49679215548225 ], [ -94.998524896896754, 29.497122155310471 ], [ -94.997954896479399, 29.497405155482806 ], [ -94.996982895702189, 29.497861155178143 ], [ -94.996497895633738, 29.498090155662901 ], [ -94.995786895935822, 29.498427155288436 ], [ -94.995374895898664, 29.498653156098541 ], [ -94.995123896045826, 29.49879015542334 ], [ -94.995716895835926, 29.499802155992413 ], [ -94.995813896254319, 29.499969155845655 ], [ -94.996635895631726, 29.501365156611275 ], [ -94.996964896451971, 29.501923156223882 ], [ -94.997030896127399, 29.50203615613427 ], [ -94.997087896143327, 29.502131156023662 ], [ -94.997705896719637, 29.503180156382214 ], [ -94.998382896516688, 29.504331156827245 ], [ -94.998561896339751, 29.504634156741819 ], [ -94.999068897102688, 29.505497157430035 ], [ -95.001051897550695, 29.508873157409276 ], [ -95.001504897277343, 29.509644157590468 ], [ -95.00166089767059, 29.509910157721503 ], [ -95.002222898388965, 29.510866157690227 ], [ -95.003681898527333, 29.513354158404638 ], [ -95.003918898075497, 29.513253158915465 ], [ -95.004031898250602, 29.513191158424451 ], [ -95.00408289820092, 29.513162158198313 ], [ -95.004201898971729, 29.51287915869197 ], [ -95.004539898379491, 29.512660158325389 ], [ -95.004694898229729, 29.512532158708524 ], [ -95.005150899216517, 29.512468158113748 ], [ -95.006132898937338, 29.511833158058312 ], [ -95.007477898917045, 29.510963157740555 ], [ -95.009121899365454, 29.509834157308042 ], [ -95.012965900971651, 29.50721115732372 ], [ -95.016648901691397, 29.509975157283421 ], [ -95.025145903352055, 29.503681156165761 ], [ -95.025567903204262, 29.504378155904448 ], [ -95.025819904202208, 29.504760155706474 ], [ -95.026361904000936, 29.505651156551508 ], [ -95.026825904010877, 29.506401156495176 ], [ -95.028844904726952, 29.504901156131623 ], [ -95.029183904212445, 29.504690155658107 ], [ -95.029339904347452, 29.504625156178818 ], [ -95.029631904737201, 29.50455015560588 ], [ -95.029957905175721, 29.504512155746948 ], [ -95.030173905256248, 29.504485155598495 ], [ -95.030370905316161, 29.504441156040034 ], [ -95.030558904613287, 29.504374156168989 ], [ -95.030735905175263, 29.504287155396078 ], [ -95.030898904980205, 29.504181156102604 ], [ -95.032114905257288, 29.503275155893622 ], [ -95.032281905749599, 29.503143155554696 ], [ -95.032468905624413, 29.502942155870532 ], [ -95.03258190537025, 29.502766155273541 ], [ -95.03263890497594, 29.502646155333341 ], [ -95.032713905265766, 29.502465155310936 ], [ -95.033219905480308, 29.502620155779795 ], [ -95.033619906040499, 29.502742155217156 ], [ -95.033911905705835, 29.502771155159255 ], [ -95.034396906187979, 29.502861155033116 ], [ -95.034509905308937, 29.497427153769323 ], [ -95.034478905506163, 29.496436153584323 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 661, "Tract": "48167720604", "Area_SqMi": 1.7761104875971601, "total_2009": 648, "total_2010": 749, "total_2011": 890, "total_2012": 817, "total_2013": 794, "total_2014": 893, "total_2015": 851, "total_2016": 850, "total_2017": 1114, "total_2018": 1442, "total_2019": 1414, "total_2020": 1476, "age1": 628, "age2": 649, "age3": 268, "earn1": 462, "earn2": 645, "earn3": 438, "naics_s01": 0, "naics_s02": 71, "naics_s03": 0, "naics_s04": 22, "naics_s05": 0, "naics_s06": 2, "naics_s07": 740, "naics_s08": 6, "naics_s09": 27, "naics_s10": 18, "naics_s11": 0, "naics_s12": 15, "naics_s13": 0, "naics_s14": 40, "naics_s15": 13, "naics_s16": 59, "naics_s17": 34, "naics_s18": 433, "naics_s19": 65, "naics_s20": 0, "race1": 1169, "race2": 229, "race3": 18, "race4": 104, "race5": 0, "race6": 25, "ethnicity1": 1014, "ethnicity2": 531, "edu1": 211, "edu2": 278, "edu3": 268, "edu4": 160, "Shape_Length": 39167.987905328497, "Shape_Area": 49514920.550728656, "total_2021": 1544, "total_2022": 1545 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.112712924452055, 29.468833145804929 ], [ -95.112709924279173, 29.468726145324542 ], [ -95.11260992397726, 29.463689144534634 ], [ -95.112472924326966, 29.456785143095644 ], [ -95.111196923705819, 29.457932143362996 ], [ -95.110955923257706, 29.446753140953486 ], [ -95.110470923602904, 29.447421141037243 ], [ -95.109932922612884, 29.448159141603558 ], [ -95.109568922680396, 29.448548141348979 ], [ -95.109234922877633, 29.448638141993989 ], [ -95.108715922544761, 29.448718141811995 ], [ -95.10807292264937, 29.448842141981348 ], [ -95.107583922285116, 29.449042141961694 ], [ -95.107369921940418, 29.449211142122063 ], [ -95.107154922735162, 29.449331141519234 ], [ -95.106626922384066, 29.449411141903965 ], [ -95.106072922533855, 29.449670141870332 ], [ -95.105233921952831, 29.450061142537994 ], [ -95.104931921917625, 29.450273142594561 ], [ -95.104479921823796, 29.450489141850479 ], [ -95.104340922119434, 29.45049614186421 ], [ -95.104265921318429, 29.450500142227387 ], [ -95.103873921490901, 29.450745142166781 ], [ -95.103503921238556, 29.450997142059098 ], [ -95.10264492157161, 29.451502142040606 ], [ -95.102334921426788, 29.4516411429336 ], [ -95.102115921142115, 29.45176314292657 ], [ -95.10200192107915, 29.451783142713939 ], [ -95.101889921142003, 29.451789142403854 ], [ -95.101789920722666, 29.451795142807502 ], [ -95.10163092138481, 29.45180714290878 ], [ -95.10117892088914, 29.451828142265494 ], [ -95.100564921114909, 29.451828142558664 ], [ -95.100092920338355, 29.451832142411629 ], [ -95.099705920050724, 29.451856142283887 ], [ -95.09928292066428, 29.451925142449088 ], [ -95.097637919874643, 29.452234142373328 ], [ -95.097479920212052, 29.452264142406175 ], [ -95.095963919896278, 29.452575142979779 ], [ -95.096023919355744, 29.454964143232214 ], [ -95.096107919853338, 29.458628143773591 ], [ -95.096132920187799, 29.459216144684401 ], [ -95.096150920218065, 29.45961814417797 ], [ -95.096152920444084, 29.459781144159287 ], [ -95.096159920039014, 29.460296144958384 ], [ -95.096105920183646, 29.460824144607418 ], [ -95.095929920430393, 29.461427144827567 ], [ -95.095733920269964, 29.461974144737177 ], [ -95.09549491937419, 29.462409144956268 ], [ -95.09518391952345, 29.462881144958217 ], [ -95.09511892017251, 29.462960144736623 ], [ -95.094965920021608, 29.463153144995616 ], [ -95.094761919625469, 29.463379145606595 ], [ -95.094551919475748, 29.463588145078827 ], [ -95.094291920056378, 29.463838145554323 ], [ -95.094209920055576, 29.46392414561436 ], [ -95.094049919771962, 29.464039145216329 ], [ -95.093415919000307, 29.464431145168259 ], [ -95.092872919443877, 29.464734145348928 ], [ -95.091049919065128, 29.465895146124566 ], [ -95.090766918340535, 29.466075145656148 ], [ -95.091155918723288, 29.466544145678327 ], [ -95.092428919582261, 29.468093146574205 ], [ -95.093092919095511, 29.46894614622126 ], [ -95.093113919591474, 29.468974146711947 ], [ -95.095197919758007, 29.471603146781238 ], [ -95.095772920057811, 29.472480147126667 ], [ -95.096700920425604, 29.474032147692949 ], [ -95.099830921947188, 29.479271147982193 ], [ -95.102667922577453, 29.484017149305966 ], [ -95.1027619225042, 29.484175149631692 ], [ -95.104588923663243, 29.487211149803958 ], [ -95.105341924016258, 29.488463150237159 ], [ -95.105542923339925, 29.488231150202655 ], [ -95.105605923338132, 29.488160150061201 ], [ -95.105278923929674, 29.48761114949459 ], [ -95.105212922973394, 29.487494149682398 ], [ -95.105294923624001, 29.487464149445906 ], [ -95.105355923419438, 29.48741214994082 ], [ -95.105421923959284, 29.487263149531834 ], [ -95.105392923859441, 29.486584149309781 ], [ -95.105373923440382, 29.486123149446755 ], [ -95.105416923243013, 29.485243149363306 ], [ -95.105384923792712, 29.4851441491614 ], [ -95.105381923315008, 29.485095149372064 ], [ -95.10533292362949, 29.484524149137048 ], [ -95.105329923072063, 29.48414014957708 ], [ -95.105323923467665, 29.483001149049329 ], [ -95.105303923623097, 29.482068149114983 ], [ -95.105138922369846, 29.474159146714097 ], [ -95.105134923006915, 29.473929147329425 ], [ -95.105122923032539, 29.473208147125501 ], [ -95.105109922471499, 29.472487146535148 ], [ -95.105107922662299, 29.472339146531944 ], [ -95.105105922462258, 29.472249146495159 ], [ -95.105097923105433, 29.471748146234063 ], [ -95.105082922551105, 29.470925146339177 ], [ -95.105065923061773, 29.469928145785932 ], [ -95.105052922307607, 29.469135145962447 ], [ -95.105017922171186, 29.468924145537628 ], [ -95.108395923576666, 29.46890114554634 ], [ -95.112712924452055, 29.468833145804929 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 662, "Tract": "48167721205", "Area_SqMi": 0.84436295885863866, "total_2009": 102, "total_2010": 86, "total_2011": 79, "total_2012": 65, "total_2013": 145, "total_2014": 226, "total_2015": 213, "total_2016": 219, "total_2017": 215, "total_2018": 190, "total_2019": 215, "total_2020": 179, "age1": 53, "age2": 117, "age3": 53, "earn1": 45, "earn2": 107, "earn3": 71, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 0, "naics_s06": 0, "naics_s07": 10, "naics_s08": 0, "naics_s09": 0, "naics_s10": 9, "naics_s11": 28, "naics_s12": 32, "naics_s13": 0, "naics_s14": 54, "naics_s15": 10, "naics_s16": 31, "naics_s17": 0, "naics_s18": 36, "naics_s19": 4, "naics_s20": 0, "race1": 183, "race2": 21, "race3": 3, "race4": 11, "race5": 2, "race6": 3, "ethnicity1": 149, "ethnicity2": 74, "edu1": 36, "edu2": 51, "edu3": 43, "edu4": 40, "Shape_Length": 19980.172198123935, "Shape_Area": 23539394.151331801, "total_2021": 173, "total_2022": 223 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.065611915100703, 29.524426158703967 ], [ -95.065800914518462, 29.524408158522697 ], [ -95.065304914472492, 29.522965158458447 ], [ -95.064814914725488, 29.521892157904485 ], [ -95.064453914241852, 29.520746157818092 ], [ -95.064357914672328, 29.520443158060779 ], [ -95.064293914521684, 29.520239157556432 ], [ -95.064199913940513, 29.5199371581012 ], [ -95.06417091414221, 29.519844157638424 ], [ -95.063979913814393, 29.519242157309026 ], [ -95.063869914164798, 29.518895157770736 ], [ -95.063634914591034, 29.518156157214246 ], [ -95.063569914186118, 29.517948157129876 ], [ -95.063309913959642, 29.517130156917883 ], [ -95.063056913567337, 29.516333157138114 ], [ -95.062844913739212, 29.515539157334601 ], [ -95.062507913211235, 29.514600157034213 ], [ -95.059482912366789, 29.514614156942056 ], [ -95.055678912074626, 29.514692157049613 ], [ -95.055630911611487, 29.514630157295148 ], [ -95.05512091214139, 29.513972156589229 ], [ -95.05499791180128, 29.514178157053351 ], [ -95.052247911530543, 29.514769156905945 ], [ -95.050268910476063, 29.515158157471856 ], [ -95.049795910655149, 29.515268156992267 ], [ -95.048040909868078, 29.515656157965189 ], [ -95.046064909250745, 29.516094157478488 ], [ -95.045019908754583, 29.516344157498381 ], [ -95.043606908846371, 29.51661215754708 ], [ -95.043597908864029, 29.516730158163352 ], [ -95.043533909119589, 29.516858157928816 ], [ -95.043342908499028, 29.516977158348883 ], [ -95.044184908982572, 29.519454158497549 ], [ -95.044804909743164, 29.521304158688814 ], [ -95.045547909945014, 29.523523159336211 ], [ -95.046554910529451, 29.526524160227488 ], [ -95.047250910590819, 29.526430159666855 ], [ -95.047917910116311, 29.526339159384506 ], [ -95.048151910772006, 29.526308159925751 ], [ -95.050473911300017, 29.525993159330145 ], [ -95.05114491072878, 29.525902159278502 ], [ -95.054681912346439, 29.525422159639657 ], [ -95.055365912489307, 29.52533015910905 ], [ -95.055567912132958, 29.525312159694661 ], [ -95.057484913038437, 29.525144158981455 ], [ -95.061332913521483, 29.524806158913226 ], [ -95.063534914201171, 29.524613158887075 ], [ -95.064131914500223, 29.524561159223964 ], [ -95.064621914275293, 29.524521158384406 ], [ -95.065611915100703, 29.524426158703967 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 663, "Tract": "48201452402", "Area_SqMi": 0.52750372196174022, "total_2009": 1040, "total_2010": 1244, "total_2011": 1430, "total_2012": 1511, "total_2013": 1563, "total_2014": 1535, "total_2015": 1462, "total_2016": 1519, "total_2017": 1620, "total_2018": 1509, "total_2019": 1592, "total_2020": 1606, "age1": 301, "age2": 855, "age3": 635, "earn1": 1007, "earn2": 583, "earn3": 201, "naics_s01": 17, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 17, "naics_s06": 8, "naics_s07": 115, "naics_s08": 4, "naics_s09": 22, "naics_s10": 31, "naics_s11": 59, "naics_s12": 26, "naics_s13": 0, "naics_s14": 4, "naics_s15": 28, "naics_s16": 1202, "naics_s17": 0, "naics_s18": 209, "naics_s19": 47, "naics_s20": 0, "race1": 433, "race2": 279, "race3": 6, "race4": 1039, "race5": 4, "race6": 30, "ethnicity1": 1538, "ethnicity2": 253, "edu1": 462, "edu2": 311, "edu3": 414, "edu4": 303, "Shape_Length": 16197.354551200031, "Shape_Area": 14705900.936650146, "total_2021": 1670, "total_2022": 1791 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.587999056421111, 29.710983179596219 ], [ -95.587993056375183, 29.710176179267204 ], [ -95.587977057126494, 29.709682179371686 ], [ -95.587964056723663, 29.708925179336568 ], [ -95.587924056655226, 29.707390179016414 ], [ -95.587920056545869, 29.707133179005442 ], [ -95.587916056517969, 29.70690317841547 ], [ -95.587893057083733, 29.706265178407786 ], [ -95.587894056289471, 29.705550178033491 ], [ -95.587899056303286, 29.705234178462181 ], [ -95.587895056549698, 29.704883178482174 ], [ -95.587898056681681, 29.704637178270978 ], [ -95.58789105654968, 29.704069178237063 ], [ -95.587870056833879, 29.703746177857077 ], [ -95.5871620559587, 29.703738178314325 ], [ -95.586918056575186, 29.703747178498215 ], [ -95.586338056289222, 29.703756178301571 ], [ -95.585614056411757, 29.703759178332078 ], [ -95.584563055902137, 29.703764178656584 ], [ -95.583134055644777, 29.703783177911394 ], [ -95.581928055038929, 29.70377917794249 ], [ -95.581475055346061, 29.703783178659453 ], [ -95.581108054692351, 29.703791178572089 ], [ -95.580865054913502, 29.703798178593289 ], [ -95.580350054293007, 29.70380317862325 ], [ -95.579447054450071, 29.70380917835033 ], [ -95.578149054058727, 29.703826178145409 ], [ -95.57727705384265, 29.703829178700186 ], [ -95.575388053163351, 29.703870178849719 ], [ -95.574755053173561, 29.703871178629349 ], [ -95.57406105265909, 29.703878179025484 ], [ -95.573532052720054, 29.703886178713223 ], [ -95.572021052751296, 29.703904178264374 ], [ -95.571776052866937, 29.703907178754815 ], [ -95.571219052673612, 29.703931178352409 ], [ -95.571237052805799, 29.70461617916876 ], [ -95.571247052560324, 29.705009179013906 ], [ -95.571256052548577, 29.705496178699221 ], [ -95.571269052405995, 29.706172179221717 ], [ -95.571278052606957, 29.708790179459587 ], [ -95.571353052510901, 29.711713180539938 ], [ -95.572239053112142, 29.711705180107256 ], [ -95.573496052920319, 29.711692180350077 ], [ -95.575531054155675, 29.711652180572049 ], [ -95.576461053556557, 29.711645179721192 ], [ -95.577283053812096, 29.711636179759711 ], [ -95.578048053967109, 29.711623180252875 ], [ -95.578805054653614, 29.711615180220388 ], [ -95.579683055192802, 29.711585180088367 ], [ -95.58061305499416, 29.711580179559572 ], [ -95.581531055446987, 29.711571179975031 ], [ -95.582462055112472, 29.71156717961275 ], [ -95.583166055930008, 29.711555179536763 ], [ -95.583295055648961, 29.711553180110663 ], [ -95.583349055494622, 29.711534179902081 ], [ -95.583380055882145, 29.711486180014358 ], [ -95.583390055699752, 29.711422179664382 ], [ -95.583384055833292, 29.711066179598173 ], [ -95.584321056136133, 29.711053179491874 ], [ -95.584709055834949, 29.711048179712432 ], [ -95.584936056341505, 29.711045180006767 ], [ -95.58521105588666, 29.711045180086899 ], [ -95.585370055745543, 29.711036180055352 ], [ -95.585890056246654, 29.711028179514976 ], [ -95.586116056078112, 29.711024179270343 ], [ -95.586289056313163, 29.711023179369921 ], [ -95.586951056143562, 29.711015179802775 ], [ -95.587502057117618, 29.710999179522638 ], [ -95.587629057213519, 29.710994179719552 ], [ -95.587999056421111, 29.710983179596219 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 664, "Tract": "48201433007", "Area_SqMi": 0.13925601069085233, "total_2009": 978, "total_2010": 647, "total_2011": 1003, "total_2012": 526, "total_2013": 554, "total_2014": 573, "total_2015": 573, "total_2016": 631, "total_2017": 550, "total_2018": 530, "total_2019": 537, "total_2020": 438, "age1": 124, "age2": 210, "age3": 146, "earn1": 117, "earn2": 259, "earn3": 104, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 8, "naics_s07": 179, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 15, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 5, "naics_s16": 62, "naics_s17": 0, "naics_s18": 196, "naics_s19": 6, "naics_s20": 0, "race1": 237, "race2": 46, "race3": 1, "race4": 192, "race5": 0, "race6": 4, "ethnicity1": 324, "ethnicity2": 156, "edu1": 114, "edu2": 68, "edu3": 81, "edu4": 93, "Shape_Length": 10620.014333504749, "Shape_Area": 3882219.2390166703, "total_2021": 410, "total_2022": 480 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.546007046406785, 29.712893181661642 ], [ -95.545778046700562, 29.712345180932928 ], [ -95.545695046417208, 29.712123181338175 ], [ -95.545560045941173, 29.711549181204923 ], [ -95.545531046552497, 29.711022181139043 ], [ -95.545515046224892, 29.710181180802358 ], [ -95.545514045581925, 29.710152181223048 ], [ -95.545505045941738, 29.709924181082776 ], [ -95.545485046149651, 29.708860180787511 ], [ -95.545476045780916, 29.708779180579221 ], [ -95.54544404604124, 29.708493180203714 ], [ -95.545353045445182, 29.708078180102589 ], [ -95.5453250460438, 29.707665180500506 ], [ -95.545320046037332, 29.707190180647132 ], [ -95.545308046237736, 29.706462180104928 ], [ -95.545306045464571, 29.70618217960298 ], [ -95.545305045748691, 29.706088180091164 ], [ -95.545303045767426, 29.705860179703318 ], [ -95.545300045735843, 29.705688180300818 ], [ -95.545300045537445, 29.705657180065575 ], [ -95.54530104579456, 29.704944179743848 ], [ -95.544195045588978, 29.704945180226165 ], [ -95.543746045645378, 29.704949180208807 ], [ -95.543091045460869, 29.70495317984787 ], [ -95.542752045257103, 29.704955179464505 ], [ -95.542515044555856, 29.704952179729471 ], [ -95.541049044331047, 29.704967180366552 ], [ -95.539953044407099, 29.704979179837252 ], [ -95.537986044232525, 29.705003179801256 ], [ -95.538027044078405, 29.705794180182437 ], [ -95.538033044170518, 29.705830180042163 ], [ -95.538092043774526, 29.706192180046489 ], [ -95.538287044387843, 29.706788180055099 ], [ -95.538526043777495, 29.707419180262328 ], [ -95.538658044495008, 29.70780018059569 ], [ -95.538704044314031, 29.707960180802566 ], [ -95.538766044084383, 29.708436180814282 ], [ -95.538836044350177, 29.708961180566103 ], [ -95.541200045301508, 29.708935180607806 ], [ -95.54135204471406, 29.708822180821755 ], [ -95.541351044730547, 29.708773180510942 ], [ -95.54397404509136, 29.708740180201197 ], [ -95.544050045799324, 29.709444180983922 ], [ -95.544053045853474, 29.710170180791476 ], [ -95.544056045874697, 29.710785181264153 ], [ -95.544067045843079, 29.71104718135787 ], [ -95.544086046050595, 29.711495181412882 ], [ -95.544112046185248, 29.712099181655486 ], [ -95.54436404619949, 29.712841181645327 ], [ -95.544559045973458, 29.713347181762177 ], [ -95.54464704633105, 29.713499181529201 ], [ -95.544901046383231, 29.713386181628042 ], [ -95.546007046406785, 29.712893181661642 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 665, "Tract": "48201453201", "Area_SqMi": 0.17189082714372486, "total_2009": 463, "total_2010": 508, "total_2011": 655, "total_2012": 660, "total_2013": 655, "total_2014": 622, "total_2015": 620, "total_2016": 609, "total_2017": 624, "total_2018": 596, "total_2019": 604, "total_2020": 556, "age1": 98, "age2": 248, "age3": 190, "earn1": 117, "earn2": 318, "earn3": 101, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 6, "naics_s06": 109, "naics_s07": 152, "naics_s08": 0, "naics_s09": 0, "naics_s10": 35, "naics_s11": 77, "naics_s12": 11, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 134, "naics_s19": 7, "naics_s20": 0, "race1": 187, "race2": 48, "race3": 6, "race4": 284, "race5": 2, "race6": 9, "ethnicity1": 419, "ethnicity2": 117, "edu1": 141, "edu2": 98, "edu3": 116, "edu4": 83, "Shape_Length": 10879.080556312369, "Shape_Area": 4792022.0666761734, "total_2021": 546, "total_2022": 536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.570263051671532, 29.688381175640014 ], [ -95.570040051673985, 29.687573175090222 ], [ -95.569959051729853, 29.687281175727772 ], [ -95.569761051470664, 29.686505175108067 ], [ -95.569656051243626, 29.686178175510562 ], [ -95.569217050520123, 29.686274175094329 ], [ -95.568464051062307, 29.686417174892345 ], [ -95.568137050757088, 29.686444174983581 ], [ -95.567669050373866, 29.686460175547275 ], [ -95.567347051005456, 29.686466175658015 ], [ -95.567216050270034, 29.686469175458097 ], [ -95.566630050252527, 29.686473174977166 ], [ -95.565918049887586, 29.686483175413063 ], [ -95.564369050188986, 29.686501175418623 ], [ -95.564101050159834, 29.686511175412157 ], [ -95.563997049537335, 29.686509175557031 ], [ -95.563602049537764, 29.686514175269526 ], [ -95.562732049147868, 29.686524175605332 ], [ -95.562726049299513, 29.685954175339663 ], [ -95.562723049732071, 29.685636175129872 ], [ -95.562713049603062, 29.685248175098025 ], [ -95.56271304932487, 29.685124174955124 ], [ -95.562710049220527, 29.68480017481463 ], [ -95.561543048604207, 29.684771174796893 ], [ -95.559377048486397, 29.684694174928079 ], [ -95.558730048115322, 29.684675175058498 ], [ -95.558461048167672, 29.684667175411391 ], [ -95.558160048483202, 29.686055175686217 ], [ -95.558065048198131, 29.686533175869798 ], [ -95.558012047723963, 29.686806175554644 ], [ -95.55783804849851, 29.687700175580268 ], [ -95.557677048605655, 29.688462176074641 ], [ -95.557526048207919, 29.689211176286754 ], [ -95.557482048212648, 29.689429176301431 ], [ -95.557917048717655, 29.689519176562257 ], [ -95.558838048258849, 29.68963717585309 ], [ -95.559535048310181, 29.689669176204013 ], [ -95.560088048663104, 29.689662176032396 ], [ -95.561983049111603, 29.689382175886536 ], [ -95.562766049656346, 29.68925917566472 ], [ -95.563883049726897, 29.689233176325313 ], [ -95.564159050118818, 29.689232176279408 ], [ -95.564230050198049, 29.689232175624728 ], [ -95.564413049567037, 29.689231176237815 ], [ -95.565587049791233, 29.689200175803567 ], [ -95.565923050485466, 29.689175176291162 ], [ -95.567156050554331, 29.689020176065739 ], [ -95.567569050949444, 29.688938176213554 ], [ -95.567798050604296, 29.688893176147989 ], [ -95.5682020504793, 29.688806175934644 ], [ -95.569537050848922, 29.688516175467775 ], [ -95.570263051671532, 29.688381175640014 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 666, "Tract": "48201432501", "Area_SqMi": 0.3535394062831223, "total_2009": 2256, "total_2010": 2350, "total_2011": 2325, "total_2012": 3386, "total_2013": 3245, "total_2014": 2849, "total_2015": 2753, "total_2016": 3118, "total_2017": 3198, "total_2018": 3055, "total_2019": 2971, "total_2020": 2874, "age1": 494, "age2": 1411, "age3": 797, "earn1": 1132, "earn2": 957, "earn3": 613, "naics_s01": 0, "naics_s02": 9, "naics_s03": 1, "naics_s04": 100, "naics_s05": 137, "naics_s06": 74, "naics_s07": 95, "naics_s08": 40, "naics_s09": 0, "naics_s10": 35, "naics_s11": 38, "naics_s12": 146, "naics_s13": 1, "naics_s14": 308, "naics_s15": 1, "naics_s16": 1215, "naics_s17": 0, "naics_s18": 382, "naics_s19": 120, "naics_s20": 0, "race1": 1547, "race2": 909, "race3": 21, "race4": 175, "race5": 2, "race6": 48, "ethnicity1": 1878, "ethnicity2": 824, "edu1": 500, "edu2": 618, "edu3": 610, "edu4": 480, "Shape_Length": 12622.473634351387, "Shape_Area": 9856073.5584322494, "total_2021": 2994, "total_2022": 2702 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.539159045335239, 29.727733185123192 ], [ -95.539158044876572, 29.727178184950134 ], [ -95.539149045010291, 29.726865184836214 ], [ -95.539134045554917, 29.726511184537948 ], [ -95.539121045463816, 29.726299184293467 ], [ -95.539123045477382, 29.726119184584331 ], [ -95.539107044636893, 29.725607184486957 ], [ -95.539107045536639, 29.725368183770396 ], [ -95.539093045546906, 29.724640183983201 ], [ -95.539085044753151, 29.72416018391106 ], [ -95.53910504542759, 29.723627184170297 ], [ -95.539101044611328, 29.722709183830151 ], [ -95.53909604457715, 29.722558183508383 ], [ -95.53908804448055, 29.722105183743246 ], [ -95.539084044642522, 29.721760183025804 ], [ -95.539081045132164, 29.721402183076879 ], [ -95.539076045023549, 29.720856183496284 ], [ -95.539068045040295, 29.719891182629787 ], [ -95.539067045112745, 29.719716183333187 ], [ -95.538817044847619, 29.719739182812489 ], [ -95.536304044352249, 29.719912183608045 ], [ -95.534323044089419, 29.720088182838033 ], [ -95.532998043467359, 29.720192182911312 ], [ -95.531737043456886, 29.720318183446075 ], [ -95.529010042024609, 29.720508183760209 ], [ -95.52902304182571, 29.72070818348023 ], [ -95.529134042249609, 29.725593184433006 ], [ -95.529147042501165, 29.726005184570642 ], [ -95.529139042117677, 29.726220185046703 ], [ -95.52915804230426, 29.726745184706871 ], [ -95.529129043032057, 29.727320185116103 ], [ -95.529098042203032, 29.727452185085244 ], [ -95.528997042239979, 29.727760185398424 ], [ -95.528899042365211, 29.72799018524271 ], [ -95.528790042795592, 29.728288185384923 ], [ -95.528713042266816, 29.728715185508914 ], [ -95.52869004287912, 29.728995185084088 ], [ -95.52959304324807, 29.728989185015553 ], [ -95.530495042706505, 29.728995185087193 ], [ -95.53140304279195, 29.729011184932599 ], [ -95.53192204344974, 29.728994184820365 ], [ -95.532527043663762, 29.728974185274328 ], [ -95.533971043943737, 29.728951185362416 ], [ -95.534537044061437, 29.72885218534125 ], [ -95.535150044670445, 29.728657184793761 ], [ -95.535309044087896, 29.728600185256909 ], [ -95.536948044678098, 29.728048185121196 ], [ -95.537620045119638, 29.727850184663755 ], [ -95.538148044497476, 29.727766184791662 ], [ -95.538654044840499, 29.727731184427032 ], [ -95.539159045335239, 29.727733185123192 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 667, "Tract": "48201451502", "Area_SqMi": 0.48997090337611077, "total_2009": 1358, "total_2010": 1503, "total_2011": 1631, "total_2012": 1866, "total_2013": 1841, "total_2014": 1855, "total_2015": 1941, "total_2016": 2081, "total_2017": 2003, "total_2018": 1965, "total_2019": 2042, "total_2020": 2525, "age1": 344, "age2": 1632, "age3": 548, "earn1": 152, "earn2": 245, "earn3": 2127, "naics_s01": 2, "naics_s02": 17, "naics_s03": 0, "naics_s04": 8, "naics_s05": 60, "naics_s06": 478, "naics_s07": 11, "naics_s08": 0, "naics_s09": 564, "naics_s10": 212, "naics_s11": 165, "naics_s12": 537, "naics_s13": 257, "naics_s14": 55, "naics_s15": 66, "naics_s16": 6, "naics_s17": 4, "naics_s18": 68, "naics_s19": 14, "naics_s20": 0, "race1": 1788, "race2": 300, "race3": 11, "race4": 380, "race5": 4, "race6": 41, "ethnicity1": 1979, "ethnicity2": 545, "edu1": 277, "edu2": 415, "edu3": 596, "edu4": 892, "Shape_Length": 21327.745289840634, "Shape_Area": 13659550.192543812, "total_2021": 2139, "total_2022": 2524 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.623065068023905, 29.768892189769748 ], [ -95.623134068721782, 29.768811190216041 ], [ -95.62305006869876, 29.768765190657962 ], [ -95.622969068003869, 29.768721190079006 ], [ -95.622786068129173, 29.768622190265273 ], [ -95.622544068565361, 29.768435190279089 ], [ -95.622334068337736, 29.768036189806889 ], [ -95.622314068447963, 29.767682189937833 ], [ -95.622309068483844, 29.76736419035678 ], [ -95.622133068053145, 29.766937189994096 ], [ -95.621606068170152, 29.766300189708886 ], [ -95.621464068206564, 29.766035189584578 ], [ -95.621411067851014, 29.765812189362673 ], [ -95.621382067545625, 29.764311188904372 ], [ -95.621410067656186, 29.764069189156722 ], [ -95.621412067352011, 29.764004189563462 ], [ -95.621396067526504, 29.763535189399235 ], [ -95.621290067677592, 29.76322418880817 ], [ -95.62109206732687, 29.762905189132191 ], [ -95.620870067355241, 29.762648188796842 ], [ -95.620693068037411, 29.762503189309449 ], [ -95.620370067897468, 29.762290189405839 ], [ -95.620085066898042, 29.762170188780161 ], [ -95.619687067347712, 29.762027189099026 ], [ -95.619405066875274, 29.76187718866225 ], [ -95.619198066772583, 29.761718188960785 ], [ -95.619102066889198, 29.761617188529346 ], [ -95.618884067023188, 29.761301189044065 ], [ -95.618785066823904, 29.761073188722065 ], [ -95.618733066527852, 29.760810188673059 ], [ -95.618734066550701, 29.759479188844704 ], [ -95.618732066725769, 29.759087188476034 ], [ -95.618724066804731, 29.758724188232769 ], [ -95.618724067233003, 29.758145187793431 ], [ -95.618721066949476, 29.757040187965547 ], [ -95.618689066955739, 29.756161188021249 ], [ -95.618515066443905, 29.755328187468436 ], [ -95.618448066197402, 29.754463187754066 ], [ -95.617040066164989, 29.754484187416551 ], [ -95.616983066179941, 29.754482187788764 ], [ -95.616881066655722, 29.754478187273818 ], [ -95.61637206634822, 29.754488187131958 ], [ -95.615003065717048, 29.754511187332902 ], [ -95.613597065371721, 29.75452518718377 ], [ -95.613124065439635, 29.754523188038156 ], [ -95.61124106465995, 29.75456318753108 ], [ -95.610787064233406, 29.754574188001953 ], [ -95.610466064415064, 29.754578187638792 ], [ -95.610205064695677, 29.7545651873304 ], [ -95.609844064258809, 29.75453818783927 ], [ -95.609183064125688, 29.754416187838917 ], [ -95.608296064058351, 29.754154187788249 ], [ -95.60779906411247, 29.754044187465198 ], [ -95.607302063353458, 29.753966187394301 ], [ -95.606819063292988, 29.753933187771619 ], [ -95.606198063671627, 29.75392718776143 ], [ -95.606114063345913, 29.753926187507137 ], [ -95.606119063578447, 29.754434187567881 ], [ -95.606125063843692, 29.75463718832086 ], [ -95.606168064098355, 29.75697218878156 ], [ -95.606191063630675, 29.758094188701484 ], [ -95.606225063411955, 29.76027918940288 ], [ -95.606211063411692, 29.761199189062726 ], [ -95.606199064000393, 29.761804189005215 ], [ -95.606198063631709, 29.761892189033098 ], [ -95.606645063755721, 29.761889189239131 ], [ -95.607213063806711, 29.761852189465117 ], [ -95.607975064551411, 29.761664189301406 ], [ -95.609174064822909, 29.761367189064259 ], [ -95.60955506486485, 29.761273188977004 ], [ -95.611704065429066, 29.760576189134088 ], [ -95.612106064848987, 29.760583188762492 ], [ -95.612652065137823, 29.760797189066057 ], [ -95.612807065538249, 29.760857189016875 ], [ -95.61292606594975, 29.760904189280005 ], [ -95.613652065869104, 29.76128618861916 ], [ -95.614650066025263, 29.761811189108567 ], [ -95.616379066851579, 29.762654188748673 ], [ -95.617905066696991, 29.763398189565869 ], [ -95.618526067353073, 29.763750189313491 ], [ -95.618736067161834, 29.763968189627899 ], [ -95.619148066992395, 29.764661189923846 ], [ -95.619216067069161, 29.765154189394096 ], [ -95.618919067463082, 29.766886189539324 ], [ -95.618812067037325, 29.767357189835597 ], [ -95.618633067003842, 29.768149189816917 ], [ -95.618470067772321, 29.768876190312739 ], [ -95.618469067297085, 29.76890019065512 ], [ -95.618468067553067, 29.769374190106625 ], [ -95.618562067308432, 29.769611190929787 ], [ -95.618578067450059, 29.769627190784359 ], [ -95.618905067365816, 29.769966190529601 ], [ -95.619974067565096, 29.770582190920972 ], [ -95.620244067691118, 29.770737191140199 ], [ -95.621333068578821, 29.771382190636007 ], [ -95.621396068505433, 29.771307191025667 ], [ -95.62182606865467, 29.770795190300856 ], [ -95.622065068715727, 29.77046119051494 ], [ -95.622787068222678, 29.769276190379294 ], [ -95.623065068023905, 29.768892189769748 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 668, "Tract": "48201451603", "Area_SqMi": 0.5084917796891294, "total_2009": 558, "total_2010": 527, "total_2011": 575, "total_2012": 730, "total_2013": 834, "total_2014": 767, "total_2015": 776, "total_2016": 744, "total_2017": 726, "total_2018": 657, "total_2019": 640, "total_2020": 523, "age1": 203, "age2": 323, "age3": 134, "earn1": 175, "earn2": 296, "earn3": 189, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 1, "naics_s07": 9, "naics_s08": 0, "naics_s09": 1, "naics_s10": 30, "naics_s11": 9, "naics_s12": 32, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 264, "naics_s17": 34, "naics_s18": 209, "naics_s19": 59, "naics_s20": 0, "race1": 336, "race2": 213, "race3": 5, "race4": 96, "race5": 0, "race6": 10, "ethnicity1": 501, "ethnicity2": 159, "edu1": 112, "edu2": 100, "edu3": 137, "edu4": 108, "Shape_Length": 18514.470299016393, "Shape_Area": 14175880.525354158, "total_2021": 660, "total_2022": 660 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644585073249914, 29.759276187341268 ], [ -95.644588073526762, 29.759170187611531 ], [ -95.644568073283864, 29.758706187258543 ], [ -95.644560073920118, 29.758325187509435 ], [ -95.644519073253974, 29.756237187068322 ], [ -95.644510073218484, 29.755877187249617 ], [ -95.64306207255602, 29.755866187286284 ], [ -95.64296007289326, 29.755865187076832 ], [ -95.6422050732793, 29.755869186792005 ], [ -95.64156407241471, 29.755873187314453 ], [ -95.641201072987002, 29.75587118676291 ], [ -95.641001072872328, 29.755870187193047 ], [ -95.639730072332497, 29.755875186624689 ], [ -95.639571072366195, 29.755876187006866 ], [ -95.63950507221243, 29.755876187172071 ], [ -95.638920072406137, 29.75588218695583 ], [ -95.637854071373042, 29.755893186992012 ], [ -95.637594071820558, 29.755893186996051 ], [ -95.637486071400218, 29.755893187375889 ], [ -95.635825070889624, 29.755915187016644 ], [ -95.634387070597441, 29.755923187213636 ], [ -95.633064070775148, 29.755916187360924 ], [ -95.632930070622962, 29.75590518689112 ], [ -95.63262007037153, 29.755908187430069 ], [ -95.632336070717486, 29.755911187232659 ], [ -95.631437069626884, 29.755919187372051 ], [ -95.629240068963696, 29.75592418710325 ], [ -95.629094069806911, 29.755917187284386 ], [ -95.628293069472463, 29.755885187470358 ], [ -95.627750068907559, 29.75578518754336 ], [ -95.627562069037452, 29.755739186976797 ], [ -95.626701068969894, 29.755458187631394 ], [ -95.626483069119672, 29.755373187654119 ], [ -95.62526606802389, 29.754914187597521 ], [ -95.625307068296451, 29.757218187919076 ], [ -95.625325068178697, 29.758275188231025 ], [ -95.625332068718976, 29.759551188005606 ], [ -95.625356068526074, 29.761335188476043 ], [ -95.625354069045855, 29.761389188946904 ], [ -95.625365068659306, 29.761470188819146 ], [ -95.625387068766813, 29.764006188837364 ], [ -95.625480068946885, 29.76399518935877 ], [ -95.626873069157, 29.764011189249771 ], [ -95.627236068865287, 29.764020188784421 ], [ -95.627341069841052, 29.764022188828044 ], [ -95.627651069422683, 29.76404218923852 ], [ -95.628017069603004, 29.764098188642052 ], [ -95.628225070090835, 29.764146188736042 ], [ -95.628429069122774, 29.764192188743603 ], [ -95.628656069673227, 29.764252188857753 ], [ -95.629087070196164, 29.764377189243994 ], [ -95.629642069694611, 29.764512189289952 ], [ -95.629955069902977, 29.76457418941602 ], [ -95.630445070610691, 29.764632189335188 ], [ -95.630904070095255, 29.764663189172449 ], [ -95.631049070479619, 29.764649188644505 ], [ -95.631276069886383, 29.764627188874542 ], [ -95.631699070216143, 29.764539188702329 ], [ -95.631800070477198, 29.764497189195282 ], [ -95.632419070585485, 29.764171188633625 ], [ -95.632753071193463, 29.763932188493765 ], [ -95.632960070615013, 29.763702188951527 ], [ -95.633195070420911, 29.763328188780701 ], [ -95.633833070657545, 29.763525188887648 ], [ -95.634114071286845, 29.76355718888788 ], [ -95.634451071488428, 29.763580188604909 ], [ -95.637272071464963, 29.763546188781898 ], [ -95.637262072069959, 29.762852188263061 ], [ -95.63726407219842, 29.762241188038882 ], [ -95.637243071748699, 29.761596187981393 ], [ -95.637263071601907, 29.760967188193643 ], [ -95.637261071638676, 29.760299187963057 ], [ -95.637239071154923, 29.759594187957891 ], [ -95.637652072092138, 29.75939518792336 ], [ -95.637798071675434, 29.75932618797788 ], [ -95.642705073323214, 29.759298188026605 ], [ -95.643022073559237, 29.759294187556343 ], [ -95.643485072799422, 29.759296187547953 ], [ -95.644585073249914, 29.759276187341268 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 669, "Tract": "48201433005", "Area_SqMi": 0.29701009802274225, "total_2009": 4237, "total_2010": 3619, "total_2011": 3783, "total_2012": 3750, "total_2013": 3148, "total_2014": 2903, "total_2015": 3777, "total_2016": 4083, "total_2017": 4382, "total_2018": 4487, "total_2019": 3974, "total_2020": 4267, "age1": 776, "age2": 2538, "age3": 1013, "earn1": 870, "earn2": 1368, "earn3": 2089, "naics_s01": 0, "naics_s02": 4, "naics_s03": 1, "naics_s04": 61, "naics_s05": 51, "naics_s06": 487, "naics_s07": 125, "naics_s08": 30, "naics_s09": 147, "naics_s10": 931, "naics_s11": 80, "naics_s12": 755, "naics_s13": 0, "naics_s14": 380, "naics_s15": 216, "naics_s16": 455, "naics_s17": 22, "naics_s18": 511, "naics_s19": 71, "naics_s20": 0, "race1": 2037, "race2": 1075, "race3": 15, "race4": 1124, "race5": 7, "race6": 69, "ethnicity1": 3245, "ethnicity2": 1082, "edu1": 678, "edu2": 769, "edu3": 1051, "edu4": 1053, "Shape_Length": 12186.40115245362, "Shape_Area": 8280133.1950108847, "total_2021": 4294, "total_2022": 4327 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557588049790823, 29.718266181876739 ], [ -95.557580048962635, 29.717995181804 ], [ -95.557512049078909, 29.716650182168191 ], [ -95.557504049734618, 29.715903181780899 ], [ -95.557496049384326, 29.715090181530492 ], [ -95.557478049347225, 29.711766180707929 ], [ -95.557227048704249, 29.711772180823761 ], [ -95.556819048603472, 29.711769180828 ], [ -95.556622049237106, 29.711770181022381 ], [ -95.556367049095215, 29.711771180811628 ], [ -95.554741048005837, 29.71179118114253 ], [ -95.554107048301063, 29.711795181122234 ], [ -95.553843048275453, 29.711800180626049 ], [ -95.553265048035854, 29.711809181097454 ], [ -95.55306404781409, 29.711810180516181 ], [ -95.552382048089768, 29.711821180769924 ], [ -95.55208704775626, 29.711822180791021 ], [ -95.55155104794261, 29.711826181262701 ], [ -95.551056048008206, 29.711831181229531 ], [ -95.55077704709862, 29.711836181055062 ], [ -95.550485047228406, 29.711840181168206 ], [ -95.550175046904357, 29.711843180831625 ], [ -95.5495760473936, 29.711844181368559 ], [ -95.549156047063121, 29.711872181205209 ], [ -95.548775047277857, 29.711913180746453 ], [ -95.548722046761768, 29.711923181014818 ], [ -95.548587047256191, 29.711948181304482 ], [ -95.548385047025633, 29.711988181562685 ], [ -95.547810046742939, 29.712141181145267 ], [ -95.54715304689411, 29.712386181411109 ], [ -95.546426046023015, 29.712705181496869 ], [ -95.546007046406785, 29.712893181661642 ], [ -95.544901046383231, 29.713386181628042 ], [ -95.54464704633105, 29.713499181529201 ], [ -95.544818046336047, 29.713792181389092 ], [ -95.54517004589222, 29.714194182076668 ], [ -95.546449046503653, 29.715359181461995 ], [ -95.54716004692547, 29.716349182039277 ], [ -95.547398047210351, 29.716891182318012 ], [ -95.547625046458805, 29.716822182438023 ], [ -95.548731046764544, 29.716584182341283 ], [ -95.548769047122406, 29.716798181662515 ], [ -95.548824047224286, 29.717239182256872 ], [ -95.548862047071722, 29.718634182053865 ], [ -95.548864046912897, 29.71898618267447 ], [ -95.550267047861013, 29.71887018268384 ], [ -95.551762047896531, 29.7187461824176 ], [ -95.553769048886252, 29.71858318203239 ], [ -95.555426049137807, 29.718428182220588 ], [ -95.555968049004889, 29.718387182596452 ], [ -95.556658049212245, 29.71833418229118 ], [ -95.557053048870415, 29.718304182535114 ], [ -95.557242049531922, 29.718281181715476 ], [ -95.557588049790823, 29.718266181876739 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 670, "Tract": "48201452501", "Area_SqMi": 0.786057574792699, "total_2009": 466, "total_2010": 489, "total_2011": 470, "total_2012": 8587, "total_2013": 8749, "total_2014": 8716, "total_2015": 8727, "total_2016": 8954, "total_2017": 9031, "total_2018": 8960, "total_2019": 8831, "total_2020": 8942, "age1": 1134, "age2": 5276, "age3": 2410, "earn1": 620, "earn2": 2814, "earn3": 5386, "naics_s01": 0, "naics_s02": 0, "naics_s03": 94, "naics_s04": 21, "naics_s05": 7, "naics_s06": 6, "naics_s07": 98, "naics_s08": 0, "naics_s09": 0, "naics_s10": 34, "naics_s11": 0, "naics_s12": 18, "naics_s13": 0, "naics_s14": 48, "naics_s15": 8029, "naics_s16": 284, "naics_s17": 0, "naics_s18": 138, "naics_s19": 43, "naics_s20": 0, "race1": 4483, "race2": 3210, "race3": 111, "race4": 850, "race5": 11, "race6": 155, "ethnicity1": 5753, "ethnicity2": 3067, "edu1": 1444, "edu2": 1755, "edu3": 2196, "edu4": 2291, "Shape_Length": 18775.379382729629, "Shape_Area": 21913939.834235553, "total_2021": 8807, "total_2022": 8820 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.604677060911726, 29.714234179642112 ], [ -95.604702061704614, 29.713990179887617 ], [ -95.604673061609162, 29.712667179636743 ], [ -95.604644061663805, 29.711330179198928 ], [ -95.604639060803194, 29.711125179306205 ], [ -95.604631061370384, 29.710753179277628 ], [ -95.60459406096966, 29.710150179098509 ], [ -95.604582060614405, 29.70932217901705 ], [ -95.604569061297695, 29.708427178659946 ], [ -95.604566060772626, 29.708197178763793 ], [ -95.6045580607869, 29.707670178748021 ], [ -95.604558060590861, 29.707275178279897 ], [ -95.604552060564501, 29.707034177794245 ], [ -95.604547060472214, 29.70686717819607 ], [ -95.604539060595087, 29.70607117757806 ], [ -95.60450406062796, 29.705470177861763 ], [ -95.604485060554126, 29.704489177482184 ], [ -95.604473061287266, 29.704212177820139 ], [ -95.604455060744201, 29.703498177567738 ], [ -95.603755060759653, 29.703500177212952 ], [ -95.603189060835717, 29.703509178000388 ], [ -95.602413060740048, 29.703515177737501 ], [ -95.599819059308942, 29.703560177600018 ], [ -95.598803059489612, 29.703577177615113 ], [ -95.598593059484045, 29.703586177913387 ], [ -95.597927059206853, 29.703592177964804 ], [ -95.597329058499326, 29.703602177946056 ], [ -95.596767058878044, 29.70361117744525 ], [ -95.596161058583974, 29.703620178233148 ], [ -95.595014058414733, 29.703636177611287 ], [ -95.593732058261594, 29.703650177816126 ], [ -95.593391058179293, 29.703654178076825 ], [ -95.592578057899203, 29.703663178355509 ], [ -95.589927057291462, 29.703699178402175 ], [ -95.589683057271841, 29.703702178404789 ], [ -95.589222056638647, 29.703709177914295 ], [ -95.588886056599847, 29.7037201784131 ], [ -95.587870056833879, 29.703746177857077 ], [ -95.58789105654968, 29.704069178237063 ], [ -95.587898056681681, 29.704637178270978 ], [ -95.587895056549698, 29.704883178482174 ], [ -95.587899056303286, 29.705234178462181 ], [ -95.587894056289471, 29.705550178033491 ], [ -95.587893057083733, 29.706265178407786 ], [ -95.587916056517969, 29.70690317841547 ], [ -95.587920056545869, 29.707133179005442 ], [ -95.587924056655226, 29.707390179016414 ], [ -95.587964056723663, 29.708925179336568 ], [ -95.587977057126494, 29.709682179371686 ], [ -95.587993056375183, 29.710176179267204 ], [ -95.587999056421111, 29.710983179596219 ], [ -95.587994056543948, 29.711211179695812 ], [ -95.587995056850673, 29.711551179959869 ], [ -95.587997057171521, 29.711643179807236 ], [ -95.587998056616527, 29.711901179892237 ], [ -95.588001057032031, 29.712083180039372 ], [ -95.588009056608541, 29.712435180242981 ], [ -95.58801105691019, 29.712651180333559 ], [ -95.588028057379248, 29.713285180270216 ], [ -95.588043057041858, 29.713983180454008 ], [ -95.588051057322616, 29.714116180573409 ], [ -95.588058057483025, 29.714637180160036 ], [ -95.588065056736255, 29.714955180652129 ], [ -95.588348057428433, 29.715703180700761 ], [ -95.588913057453183, 29.715668180967491 ], [ -95.592229057681266, 29.715398180470263 ], [ -95.596427059757218, 29.715037180413265 ], [ -95.604430061177567, 29.71434517962301 ], [ -95.60467606091153, 29.714327179563405 ], [ -95.604677060911726, 29.714234179642112 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 671, "Tract": "48201451003", "Area_SqMi": 0.091316165276960737, "total_2009": 25, "total_2010": 29, "total_2011": 24, "total_2012": 30, "total_2013": 32, "total_2014": 37, "total_2015": 43, "total_2016": 52, "total_2017": 73, "total_2018": 46, "total_2019": 55, "total_2020": 41, "age1": 3, "age2": 37, "age3": 16, "earn1": 4, "earn2": 9, "earn3": 43, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 52, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 43, "race2": 10, "race3": 0, "race4": 2, "race5": 0, "race6": 1, "ethnicity1": 23, "ethnicity2": 33, "edu1": 13, "edu2": 17, "edu3": 16, "edu4": 7, "Shape_Length": 7084.6290266126289, "Shape_Area": 2545738.3987428169, "total_2021": 53, "total_2022": 56 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.58871105838648, 29.742810185912287 ], [ -95.588702058955192, 29.741710185409087 ], [ -95.588689058746027, 29.740657185952298 ], [ -95.587742057930967, 29.740675185850876 ], [ -95.587482057703994, 29.740681185747086 ], [ -95.586993057840786, 29.74072018588976 ], [ -95.586609057799777, 29.740804186094248 ], [ -95.586362057400734, 29.740870185508509 ], [ -95.586124057578914, 29.74094918591215 ], [ -95.585876057619188, 29.74103718563741 ], [ -95.585579057981306, 29.741137185709356 ], [ -95.585248057996779, 29.741257186235327 ], [ -95.585294057965513, 29.741382185664939 ], [ -95.585463058032616, 29.741742186155918 ], [ -95.585633057200255, 29.74206318611273 ], [ -95.585846057512484, 29.742391185659493 ], [ -95.586096058119168, 29.742715185778419 ], [ -95.585863058169593, 29.742884186233052 ], [ -95.585569057925042, 29.743091186345566 ], [ -95.585339057608522, 29.743269186572476 ], [ -95.58506605809653, 29.743479185912342 ], [ -95.58483605723292, 29.743698185929539 ], [ -95.58468005750791, 29.743848186485476 ], [ -95.584534057781156, 29.744035186577253 ], [ -95.584290057794632, 29.744358186198493 ], [ -95.584096057059028, 29.744673186642149 ], [ -95.583979057746902, 29.744939186342389 ], [ -95.583897057195202, 29.745142186316112 ], [ -95.583785056930765, 29.745572186754384 ], [ -95.583724057511915, 29.745889186890981 ], [ -95.583695057564341, 29.74623018672343 ], [ -95.583654057361983, 29.746889186834576 ], [ -95.584232057891342, 29.746937187102954 ], [ -95.584600057302879, 29.746970187303607 ], [ -95.584895057248858, 29.747016187442462 ], [ -95.585162057723949, 29.74707218739535 ], [ -95.585487058274651, 29.747142186982447 ], [ -95.585890057567653, 29.747240186831579 ], [ -95.586238057740431, 29.747337186696903 ], [ -95.586608057888768, 29.747450187228772 ], [ -95.587935058001747, 29.745117186264775 ], [ -95.588017058490976, 29.744984186689383 ], [ -95.588286058188686, 29.744442186370552 ], [ -95.588405058292409, 29.744158186239996 ], [ -95.588501058124251, 29.743881185958841 ], [ -95.58857305835572, 29.743609186097679 ], [ -95.588677058807349, 29.743027186510229 ], [ -95.58871105838648, 29.742810185912287 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 672, "Tract": "48201432303", "Area_SqMi": 0.41375236127755649, "total_2009": 5859, "total_2010": 6633, "total_2011": 8101, "total_2012": 8555, "total_2013": 9223, "total_2014": 9054, "total_2015": 10650, "total_2016": 9255, "total_2017": 7778, "total_2018": 7434, "total_2019": 8325, "total_2020": 6655, "age1": 900, "age2": 3663, "age3": 1221, "earn1": 316, "earn2": 787, "earn3": 4681, "naics_s01": 1, "naics_s02": 528, "naics_s03": 0, "naics_s04": 645, "naics_s05": 567, "naics_s06": 46, "naics_s07": 170, "naics_s08": 210, "naics_s09": 8, "naics_s10": 383, "naics_s11": 85, "naics_s12": 2327, "naics_s13": 7, "naics_s14": 80, "naics_s15": 30, "naics_s16": 28, "naics_s17": 1, "naics_s18": 551, "naics_s19": 117, "naics_s20": 0, "race1": 4064, "race2": 675, "race3": 33, "race4": 921, "race5": 5, "race6": 86, "ethnicity1": 4452, "ethnicity2": 1332, "edu1": 788, "edu2": 1056, "edu3": 1390, "edu4": 1650, "Shape_Length": 15861.695234162491, "Shape_Area": 11534707.68817465, "total_2021": 5570, "total_2022": 5784 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557724050051149, 29.736862186016971 ], [ -95.557723050519598, 29.736709185559739 ], [ -95.557653050514602, 29.730089184671424 ], [ -95.557643049795217, 29.729134184015678 ], [ -95.55763004956259, 29.727847184347596 ], [ -95.557628049987642, 29.72764118421426 ], [ -95.557394049839175, 29.727643184260018 ], [ -95.556989049536227, 29.727640184087416 ], [ -95.555868049176439, 29.727630183866339 ], [ -95.55552904918072, 29.727623184204884 ], [ -95.555013049447524, 29.727621184374193 ], [ -95.55454404932452, 29.727635183762064 ], [ -95.554020049173403, 29.727665183836557 ], [ -95.553649049116018, 29.727738184178055 ], [ -95.553504049303953, 29.727766183818961 ], [ -95.553149048462132, 29.727831184609826 ], [ -95.552991049197303, 29.727875184136174 ], [ -95.552646048457405, 29.727971184577974 ], [ -95.552049048245678, 29.728168184372997 ], [ -95.551109048272011, 29.72841818400012 ], [ -95.550588048371182, 29.728532184691471 ], [ -95.550215048495062, 29.728605184632823 ], [ -95.549781048455699, 29.728690184408116 ], [ -95.549255047404884, 29.728738184278487 ], [ -95.54898404724544, 29.728757184377873 ], [ -95.54902904753682, 29.730552184470348 ], [ -95.549037047404681, 29.730840184841174 ], [ -95.549042047956902, 29.731004184685091 ], [ -95.549082047784921, 29.733116185325546 ], [ -95.548230048065605, 29.733124185073152 ], [ -95.548029047355584, 29.733130185802743 ], [ -95.547415047872676, 29.733133185343757 ], [ -95.547093047872309, 29.73312318557738 ], [ -95.546478047706643, 29.733070185529982 ], [ -95.545855047464599, 29.732962185690962 ], [ -95.545471046677662, 29.732879185126773 ], [ -95.545377046648838, 29.732856185581621 ], [ -95.545325047243679, 29.732839185743959 ], [ -95.545143046467899, 29.732795185175899 ], [ -95.544326046943851, 29.73253818503434 ], [ -95.544129046862068, 29.732471185189311 ], [ -95.544031046583243, 29.732438185018562 ], [ -95.543838046477916, 29.732388185211558 ], [ -95.543262046145145, 29.732257185200496 ], [ -95.54324804614744, 29.732352185307203 ], [ -95.54322404640493, 29.732460185247383 ], [ -95.543150045970464, 29.732892185759532 ], [ -95.543172046068364, 29.733273186087725 ], [ -95.543268046562886, 29.733632186028917 ], [ -95.543312046340944, 29.733735186166864 ], [ -95.543501046689755, 29.734171186290997 ], [ -95.54358404617382, 29.734508186340921 ], [ -95.543618046871757, 29.734721185782636 ], [ -95.543627046963294, 29.734834185640477 ], [ -95.543663046539734, 29.736400186290133 ], [ -95.543666046233213, 29.73673918657018 ], [ -95.54366604685957, 29.737063186234035 ], [ -95.544262046413209, 29.737052186631818 ], [ -95.545870046878534, 29.737023186450436 ], [ -95.54838304748705, 29.736984186180958 ], [ -95.549370048577842, 29.736967185798722 ], [ -95.551323048425658, 29.73694318607685 ], [ -95.552086048390734, 29.73693518604512 ], [ -95.552288049345961, 29.73693318629099 ], [ -95.553206049331621, 29.736922186034104 ], [ -95.553625049613728, 29.736917185858687 ], [ -95.554248049737851, 29.736927186266747 ], [ -95.555709050281763, 29.736903186141831 ], [ -95.557095050620362, 29.736865186250977 ], [ -95.557544050099992, 29.736863186019551 ], [ -95.557724050051149, 29.736862186016971 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 673, "Tract": "48201431001", "Area_SqMi": 0.84182673379361228, "total_2009": 3106, "total_2010": 799, "total_2011": 881, "total_2012": 894, "total_2013": 957, "total_2014": 1415, "total_2015": 1642, "total_2016": 1433, "total_2017": 1417, "total_2018": 1156, "total_2019": 1250, "total_2020": 947, "age1": 189, "age2": 681, "age3": 310, "earn1": 99, "earn2": 248, "earn3": 833, "naics_s01": 0, "naics_s02": 113, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 6, "naics_s07": 52, "naics_s08": 5, "naics_s09": 1, "naics_s10": 55, "naics_s11": 82, "naics_s12": 17, "naics_s13": 42, "naics_s14": 545, "naics_s15": 9, "naics_s16": 188, "naics_s17": 2, "naics_s18": 20, "naics_s19": 28, "naics_s20": 0, "race1": 838, "race2": 188, "race3": 10, "race4": 115, "race5": 6, "race6": 23, "ethnicity1": 862, "ethnicity2": 318, "edu1": 156, "edu2": 242, "edu3": 307, "edu4": 286, "Shape_Length": 19853.646683782354, "Shape_Area": 23468688.537311446, "total_2021": 937, "total_2022": 1180 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557900051004424, 29.747555188256264 ], [ -95.557896050691468, 29.747361187916233 ], [ -95.557891050575606, 29.747129188407143 ], [ -95.557793050201994, 29.742956187081745 ], [ -95.557786050403408, 29.742688186970692 ], [ -95.557757050883382, 29.740071186353592 ], [ -95.557743050491666, 29.738728186622673 ], [ -95.557727050343232, 29.737189186112428 ], [ -95.557726050691684, 29.737041186227621 ], [ -95.557724050051149, 29.736862186016971 ], [ -95.557544050099992, 29.736863186019551 ], [ -95.557095050620362, 29.736865186250977 ], [ -95.555709050281763, 29.736903186141831 ], [ -95.554248049737851, 29.736927186266747 ], [ -95.553625049613728, 29.736917185858687 ], [ -95.553206049331621, 29.736922186034104 ], [ -95.552288049345961, 29.73693318629099 ], [ -95.552086048390734, 29.73693518604512 ], [ -95.551323048425658, 29.73694318607685 ], [ -95.549370048577842, 29.736967185798722 ], [ -95.54838304748705, 29.736984186180958 ], [ -95.545870046878534, 29.737023186450436 ], [ -95.544262046413209, 29.737052186631818 ], [ -95.54366604685957, 29.737063186234035 ], [ -95.542274046912482, 29.737072186172899 ], [ -95.541417046648434, 29.737089186943479 ], [ -95.540445045492888, 29.737107186824911 ], [ -95.539433045436297, 29.73711118644761 ], [ -95.538878045925216, 29.737122186731085 ], [ -95.538879045709535, 29.737258186958989 ], [ -95.538874045423611, 29.737555186395653 ], [ -95.538859045129172, 29.73775118643859 ], [ -95.538833045671169, 29.737905187138285 ], [ -95.538744045484606, 29.738299186740893 ], [ -95.538710046008688, 29.738381187131942 ], [ -95.538538045293535, 29.738790186718159 ], [ -95.538415045078523, 29.739205187385007 ], [ -95.538370045711218, 29.739596186804377 ], [ -95.538368045081029, 29.739781187352392 ], [ -95.538366045913179, 29.73997318693872 ], [ -95.538368045124955, 29.740577187007581 ], [ -95.53837004595583, 29.740791187756628 ], [ -95.538388045155344, 29.742397187371107 ], [ -95.538400045550546, 29.743449187588244 ], [ -95.538403045879235, 29.743684187528054 ], [ -95.538411045365208, 29.744106188340542 ], [ -95.538412045543623, 29.744151187777131 ], [ -95.538417045955939, 29.744349188147083 ], [ -95.538423045958695, 29.744770188552994 ], [ -95.538439045468664, 29.745770187932074 ], [ -95.538444046124084, 29.746079188314209 ], [ -95.538448046223252, 29.746301188949431 ], [ -95.538450045769324, 29.747501188447355 ], [ -95.538918046429657, 29.74757318914336 ], [ -95.539508046329487, 29.747606189128192 ], [ -95.541677046638512, 29.747577188314477 ], [ -95.546017048184368, 29.747543188105521 ], [ -95.546487047949341, 29.747514188883581 ], [ -95.548519048193526, 29.747391188492756 ], [ -95.549254048266292, 29.747404188585186 ], [ -95.549661048532869, 29.747427188019685 ], [ -95.550707049299362, 29.747543188472044 ], [ -95.551519048978179, 29.747577188483895 ], [ -95.551928049597365, 29.747557188003448 ], [ -95.552366049046412, 29.747520188637385 ], [ -95.552938050078751, 29.747432188114566 ], [ -95.553366049653448, 29.747402188055339 ], [ -95.554554050090942, 29.747407188438228 ], [ -95.555927050018497, 29.747566188582582 ], [ -95.556512050122095, 29.747568188347991 ], [ -95.557263050876585, 29.747547188207818 ], [ -95.557700050671372, 29.747552188281173 ], [ -95.557900051004424, 29.747555188256264 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 674, "Tract": "48201452502", "Area_SqMi": 0.43713237314777137, "total_2009": 161, "total_2010": 166, "total_2011": 195, "total_2012": 247, "total_2013": 246, "total_2014": 247, "total_2015": 276, "total_2016": 270, "total_2017": 301, "total_2018": 214, "total_2019": 227, "total_2020": 236, "age1": 66, "age2": 156, "age3": 54, "earn1": 45, "earn2": 91, "earn3": 140, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 2, "naics_s07": 78, "naics_s08": 1, "naics_s09": 5, "naics_s10": 18, "naics_s11": 0, "naics_s12": 117, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 21, "naics_s17": 0, "naics_s18": 9, "naics_s19": 13, "naics_s20": 0, "race1": 140, "race2": 36, "race3": 2, "race4": 89, "race5": 1, "race6": 8, "ethnicity1": 212, "ethnicity2": 64, "edu1": 39, "edu2": 43, "edu3": 57, "edu4": 71, "Shape_Length": 13981.209988859573, "Shape_Area": 12186502.403826006, "total_2021": 271, "total_2022": 276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.614785064031793, 29.711924178526857 ], [ -95.614788063584513, 29.710605178986398 ], [ -95.614777063640773, 29.710003178766272 ], [ -95.614776063817814, 29.709809178179633 ], [ -95.614749063420845, 29.709077178490734 ], [ -95.614742064108924, 29.708876178014997 ], [ -95.614740063178644, 29.708827178223473 ], [ -95.614739063491385, 29.708632178374369 ], [ -95.61473606351025, 29.708252177880738 ], [ -95.614692063512194, 29.707495177875792 ], [ -95.614692063658865, 29.707263177638605 ], [ -95.614702063182449, 29.706953178149245 ], [ -95.614707063758232, 29.706820177593869 ], [ -95.614699063929592, 29.706374178004587 ], [ -95.614712063500477, 29.705658177648569 ], [ -95.614662063504497, 29.705339177755498 ], [ -95.614656063811879, 29.704827177265663 ], [ -95.614649063763096, 29.704437177095109 ], [ -95.6146390634581, 29.703931177088226 ], [ -95.614644063479503, 29.70351117727698 ], [ -95.613184062621883, 29.703486176941116 ], [ -95.609836062689965, 29.703430177080158 ], [ -95.609487061684959, 29.703435177420733 ], [ -95.608858061844515, 29.703445176948009 ], [ -95.608660062165001, 29.703446177367063 ], [ -95.607575062052192, 29.703454177153883 ], [ -95.606121060907981, 29.703467177377412 ], [ -95.605941061343671, 29.703475177580945 ], [ -95.605435060659929, 29.703481177225349 ], [ -95.604455060744201, 29.703498177567738 ], [ -95.604473061287266, 29.704212177820139 ], [ -95.604485060554126, 29.704489177482184 ], [ -95.60450406062796, 29.705470177861763 ], [ -95.604539060595087, 29.70607117757806 ], [ -95.604547060472214, 29.70686717819607 ], [ -95.604552060564501, 29.707034177794245 ], [ -95.604558060590861, 29.707275178279897 ], [ -95.6045580607869, 29.707670178748021 ], [ -95.604566060772626, 29.708197178763793 ], [ -95.604569061297695, 29.708427178659946 ], [ -95.604582060614405, 29.70932217901705 ], [ -95.60459406096966, 29.710150179098509 ], [ -95.604631061370384, 29.710753179277628 ], [ -95.604639060803194, 29.711125179306205 ], [ -95.604644061663805, 29.711330179198928 ], [ -95.604673061609162, 29.712667179636743 ], [ -95.604702061704614, 29.713990179887617 ], [ -95.604677060911726, 29.714234179642112 ], [ -95.60467606091153, 29.714327179563405 ], [ -95.614711063477642, 29.713416179307071 ], [ -95.61474306367947, 29.71317717875786 ], [ -95.614763064307255, 29.712509179322065 ], [ -95.614785064031793, 29.711924178526857 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 675, "Tract": "48201451405", "Area_SqMi": 0.23849480679355212, "total_2009": 64, "total_2010": 84, "total_2011": 49, "total_2012": 62, "total_2013": 45, "total_2014": 69, "total_2015": 62, "total_2016": 50, "total_2017": 67, "total_2018": 78, "total_2019": 89, "total_2020": 162, "age1": 49, "age2": 75, "age3": 33, "earn1": 56, "earn2": 69, "earn3": 32, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 3, "naics_s07": 0, "naics_s08": 2, "naics_s09": 0, "naics_s10": 20, "naics_s11": 9, "naics_s12": 4, "naics_s13": 0, "naics_s14": 82, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 33, "naics_s19": 3, "naics_s20": 0, "race1": 69, "race2": 70, "race3": 2, "race4": 15, "race5": 0, "race6": 1, "ethnicity1": 127, "ethnicity2": 30, "edu1": 22, "edu2": 31, "edu3": 24, "edu4": 31, "Shape_Length": 11971.984574425725, "Shape_Area": 6648827.0254629152, "total_2021": 167, "total_2022": 157 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.62500406780488, 29.746725185348861 ], [ -95.624898067424766, 29.746371185587574 ], [ -95.624715068016869, 29.745874185868061 ], [ -95.624300068045159, 29.744880185512812 ], [ -95.624117067927784, 29.74437518476611 ], [ -95.624066067394139, 29.744173185020848 ], [ -95.623993067347484, 29.743790185248493 ], [ -95.623966067159898, 29.743327185252134 ], [ -95.623967067177944, 29.743204185336257 ], [ -95.623926067358624, 29.742681185160009 ], [ -95.623878067198902, 29.742322184630464 ], [ -95.623824066940401, 29.742035184962806 ], [ -95.623712067383011, 29.741697184651503 ], [ -95.623686067727746, 29.741620184671117 ], [ -95.623598067369585, 29.741217184413475 ], [ -95.62359106702678, 29.741176184629843 ], [ -95.623543067787793, 29.740462184404262 ], [ -95.623534066819602, 29.740158184109585 ], [ -95.623525067121349, 29.738363184249277 ], [ -95.623533066863089, 29.738124184301249 ], [ -95.623556067449655, 29.737884184111927 ], [ -95.62358906732409, 29.737678183730171 ], [ -95.623642067472375, 29.737477184206913 ], [ -95.623648066756658, 29.737411183759846 ], [ -95.623732067301034, 29.737071184023918 ], [ -95.623770066946577, 29.736707183390987 ], [ -95.623772067055896, 29.736561183679619 ], [ -95.623795066846867, 29.736082183852286 ], [ -95.623796066880075, 29.73607218372279 ], [ -95.623804067323249, 29.736017183288773 ], [ -95.623825067305447, 29.735865183412027 ], [ -95.623042066597208, 29.735869183594257 ], [ -95.622829067364194, 29.735874183544354 ], [ -95.622674067132209, 29.735877183794582 ], [ -95.622272067010016, 29.735886183313941 ], [ -95.621780066273317, 29.735897183320461 ], [ -95.620838065969352, 29.735909183933476 ], [ -95.619695066066413, 29.735920183536013 ], [ -95.618114066184134, 29.735951183458653 ], [ -95.618115065967643, 29.736110183588323 ], [ -95.618122065766769, 29.73706718360696 ], [ -95.618080066157404, 29.737298183846097 ], [ -95.618010066270102, 29.737480183715903 ], [ -95.61778106618759, 29.737915183652728 ], [ -95.617724065946092, 29.738158184409915 ], [ -95.61773206545881, 29.739256184073035 ], [ -95.617760065415197, 29.739436184469529 ], [ -95.617801065572252, 29.739570184560254 ], [ -95.617868065619973, 29.739702184602947 ], [ -95.617951066059405, 29.739815184120811 ], [ -95.618107065465708, 29.739986184256598 ], [ -95.618452066426755, 29.740335184470336 ], [ -95.618741065867411, 29.740641184216884 ], [ -95.618805066168093, 29.740700184925231 ], [ -95.618889066158985, 29.740796184812726 ], [ -95.619123066114156, 29.74130718452356 ], [ -95.619274066647279, 29.741654184848173 ], [ -95.619275066375735, 29.742351184653568 ], [ -95.619271065881378, 29.742687185287469 ], [ -95.619258066488726, 29.742863185458638 ], [ -95.619197066670907, 29.743013185016064 ], [ -95.619084066298086, 29.743279184952005 ], [ -95.618943066688487, 29.743537185092936 ], [ -95.618853065791981, 29.743712185214218 ], [ -95.618630066332003, 29.744134185579831 ], [ -95.618568066161671, 29.744320185585011 ], [ -95.618544066214454, 29.744618184976382 ], [ -95.6185520663267, 29.744842185232081 ], [ -95.618557065934695, 29.744945185807214 ], [ -95.618555066471203, 29.745425185417918 ], [ -95.618531066699035, 29.74594918538034 ], [ -95.618497066018961, 29.74643918598813 ], [ -95.619031066171019, 29.746563186228904 ], [ -95.619675066807659, 29.746610185854021 ], [ -95.619782066721626, 29.746618185514809 ], [ -95.622383067424508, 29.746452185583582 ], [ -95.622633067680596, 29.746436185985878 ], [ -95.623129067162026, 29.746442185588823 ], [ -95.623430067733324, 29.746440185891277 ], [ -95.623657067461536, 29.746490185857635 ], [ -95.623974067969954, 29.746653185599261 ], [ -95.624171068021482, 29.746777185713373 ], [ -95.624346067986892, 29.746828185872324 ], [ -95.624630067730365, 29.746809185890818 ], [ -95.62500406780488, 29.746725185348861 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 676, "Tract": "48201431002", "Area_SqMi": 0.77371569403456775, "total_2009": 1182, "total_2010": 958, "total_2011": 1178, "total_2012": 1004, "total_2013": 963, "total_2014": 635, "total_2015": 588, "total_2016": 628, "total_2017": 750, "total_2018": 662, "total_2019": 855, "total_2020": 925, "age1": 151, "age2": 599, "age3": 218, "earn1": 86, "earn2": 148, "earn3": 734, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 3, "naics_s06": 275, "naics_s07": 10, "naics_s08": 0, "naics_s09": 2, "naics_s10": 22, "naics_s11": 166, "naics_s12": 33, "naics_s13": 0, "naics_s14": 299, "naics_s15": 18, "naics_s16": 125, "naics_s17": 0, "naics_s18": 0, "naics_s19": 13, "naics_s20": 0, "race1": 680, "race2": 147, "race3": 6, "race4": 120, "race5": 0, "race6": 15, "ethnicity1": 726, "ethnicity2": 242, "edu1": 108, "edu2": 177, "edu3": 237, "edu4": 295, "Shape_Length": 23469.662744586822, "Shape_Area": 21569869.322038881, "total_2021": 902, "total_2022": 968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.558343051640648, 29.76222019135141 ], [ -95.558313051668648, 29.762148191325885 ], [ -95.558240051319359, 29.761896190769107 ], [ -95.558140051636229, 29.761424191050928 ], [ -95.558141051056907, 29.761406190452021 ], [ -95.558102051180043, 29.760872191127998 ], [ -95.558095051407122, 29.758008190534664 ], [ -95.55807905162942, 29.756781190308605 ], [ -95.558038051324743, 29.753682189440482 ], [ -95.558030051054374, 29.753066189243313 ], [ -95.557963051408336, 29.750226188888508 ], [ -95.557906050819213, 29.747796188227312 ], [ -95.557900051004424, 29.747555188256264 ], [ -95.557700050671372, 29.747552188281173 ], [ -95.557263050876585, 29.747547188207818 ], [ -95.556512050122095, 29.747568188347991 ], [ -95.555927050018497, 29.747566188582582 ], [ -95.554554050090942, 29.747407188438228 ], [ -95.553366049653448, 29.747402188055339 ], [ -95.552938050078751, 29.747432188114566 ], [ -95.552366049046412, 29.747520188637385 ], [ -95.551928049597365, 29.747557188003448 ], [ -95.551519048978179, 29.747577188483895 ], [ -95.550707049299362, 29.747543188472044 ], [ -95.549661048532869, 29.747427188019685 ], [ -95.549254048266292, 29.747404188585186 ], [ -95.548519048193526, 29.747391188492756 ], [ -95.546487047949341, 29.747514188883581 ], [ -95.546017048184368, 29.747543188105521 ], [ -95.541677046638512, 29.747577188314477 ], [ -95.539508046329487, 29.747606189128192 ], [ -95.538918046429657, 29.74757318914336 ], [ -95.538450045769324, 29.747501188447355 ], [ -95.538471045837653, 29.748680188620892 ], [ -95.538488045603117, 29.749625189322327 ], [ -95.53853104640632, 29.749824189167455 ], [ -95.538608045598323, 29.750125188897897 ], [ -95.538903046648741, 29.750746189673787 ], [ -95.539295046725897, 29.751291189724547 ], [ -95.539344046507978, 29.751356189052107 ], [ -95.539374045936498, 29.75139618943405 ], [ -95.539764046786487, 29.75191518928051 ], [ -95.539887046750408, 29.751755189357425 ], [ -95.539988046481042, 29.751694189293179 ], [ -95.540089046757103, 29.751678189729965 ], [ -95.540379046766859, 29.75171718965111 ], [ -95.540517046742295, 29.751722189786701 ], [ -95.541444047166635, 29.751656189601785 ], [ -95.541714046894541, 29.751651189847991 ], [ -95.541935047163179, 29.751706189038689 ], [ -95.542017047447402, 29.751761189439794 ], [ -95.54205104658817, 29.751816189391619 ], [ -95.542061047092631, 29.751832189322116 ], [ -95.542074046936222, 29.751876189465619 ], [ -95.542042047364049, 29.752503189421475 ], [ -95.542061047082242, 29.752646189403837 ], [ -95.542092046998803, 29.752728189861557 ], [ -95.542162047072452, 29.752827189550302 ], [ -95.542231047229919, 29.752893189487178 ], [ -95.542407046649132, 29.75302518956094 ], [ -95.542565047702681, 29.753108189757533 ], [ -95.542867047219147, 29.753157189810437 ], [ -95.54322904770828, 29.753179189732656 ], [ -95.543314047626794, 29.753185189884348 ], [ -95.54346604790517, 29.75317918944096 ], [ -95.54352304755362, 29.753172189591712 ], [ -95.54376304758415, 29.753140189482796 ], [ -95.543888047464236, 29.753124189610116 ], [ -95.544071047499628, 29.75313018969231 ], [ -95.544264048020338, 29.753154189494168 ], [ -95.544511047902347, 29.753185189652022 ], [ -95.544638047375798, 29.753185190076181 ], [ -95.544795047683593, 29.753174189243371 ], [ -95.544921048136132, 29.753152190077341 ], [ -95.545036048090509, 29.753102189262755 ], [ -95.545236047434742, 29.753015189715754 ], [ -95.545312048203968, 29.753000189821652 ], [ -95.545406048276291, 29.752982189671147 ], [ -95.545532048222398, 29.75298218966045 ], [ -95.545595048133464, 29.752993189476129 ], [ -95.545727047672244, 29.753097189413182 ], [ -95.545835048040431, 29.753251189859959 ], [ -95.545872047723407, 29.753433189917047 ], [ -95.545853048547144, 29.753564189431351 ], [ -95.545690047804129, 29.753757189670548 ], [ -95.545507047472213, 29.753927189658206 ], [ -95.54533004782823, 29.754114189846948 ], [ -95.54523004768572, 29.75427918964451 ], [ -95.545135048358901, 29.754614189998328 ], [ -95.545122047488803, 29.754862190012386 ], [ -95.545147047942308, 29.755010190268059 ], [ -95.545286047960673, 29.755274190121018 ], [ -95.545460047730145, 29.75539218965417 ], [ -95.545733048445953, 29.755577190519986 ], [ -95.545834047743497, 29.755670190432234 ], [ -95.545946047909055, 29.755812190395901 ], [ -95.545973048541171, 29.755846190618669 ], [ -95.546055048390556, 29.755928190401864 ], [ -95.546187048717456, 29.755994190044191 ], [ -95.546307048044227, 29.756099190503541 ], [ -95.546357047903413, 29.756187190036908 ], [ -95.546540048074164, 29.756330189915595 ], [ -95.546647048233552, 29.756396190116394 ], [ -95.546817048311354, 29.756533190565598 ], [ -95.546899047999432, 29.756621190438736 ], [ -95.547327048376104, 29.756874190071663 ], [ -95.547472048311818, 29.756984190573451 ], [ -95.547661048989497, 29.757105190278487 ], [ -95.547976048513377, 29.757259190833587 ], [ -95.548310049305073, 29.757386190626182 ], [ -95.548329048394336, 29.757413190148181 ], [ -95.548335048799231, 29.757534190023097 ], [ -95.548329048382939, 29.757594190027362 ], [ -95.548285049217839, 29.757677190341031 ], [ -95.548184048874049, 29.757941190708024 ], [ -95.548133048603546, 29.758012190738533 ], [ -95.548089048736358, 29.758111190906636 ], [ -95.548026049279457, 29.758199190527435 ], [ -95.547919049049398, 29.758419191093566 ], [ -95.547806049140746, 29.758798190603528 ], [ -95.547768048317735, 29.759035190533133 ], [ -95.547780048504947, 29.759084190912969 ], [ -95.547806048483025, 29.759112190440998 ], [ -95.547844049124279, 29.759128190937311 ], [ -95.547907048443477, 29.759134190789659 ], [ -95.548291049142748, 29.759134191115351 ], [ -95.548537049513214, 29.759117190351368 ], [ -95.548915048763234, 29.759123191112671 ], [ -95.549097049361109, 29.759167190397722 ], [ -95.549255049249155, 29.75924919106814 ], [ -95.549393049493517, 29.759354190809606 ], [ -95.549456048803563, 29.759422191222036 ], [ -95.549727048814361, 29.759711190841056 ], [ -95.549948049568385, 29.759915191333672 ], [ -95.550143049958876, 29.760151190726795 ], [ -95.550401049168457, 29.76035419055605 ], [ -95.550628049449983, 29.76048119065852 ], [ -95.550830049462263, 29.760640191154739 ], [ -95.55089905003463, 29.760684191071245 ], [ -95.550987049833282, 29.760723191113673 ], [ -95.55108804950828, 29.760750191331795 ], [ -95.551283049270737, 29.760772191185705 ], [ -95.551699049871573, 29.760756191078386 ], [ -95.551970049930631, 29.760723191004423 ], [ -95.552166049895945, 29.760723191286335 ], [ -95.552575050590036, 29.760695191210615 ], [ -95.552670050117882, 29.760679191021691 ], [ -95.552726049688218, 29.760624190614529 ], [ -95.552387049833769, 29.760098190713258 ], [ -95.552407050135201, 29.759957191009974 ], [ -95.552500050468012, 29.759839190852826 ], [ -95.552881050056939, 29.759633190575698 ], [ -95.553092049997986, 29.759600190984937 ], [ -95.553170049947539, 29.759588190474627 ], [ -95.553447050098342, 29.759545190927934 ], [ -95.554145050370863, 29.759255190523817 ], [ -95.554508050214707, 29.759208190278915 ], [ -95.554708050160414, 29.759320190725003 ], [ -95.554764050895258, 29.759672190596493 ], [ -95.554690050420504, 29.760021190942894 ], [ -95.554406050065296, 29.760689190787623 ], [ -95.554432050662669, 29.7609011905346 ], [ -95.554532050173819, 29.761014190525874 ], [ -95.554789051061405, 29.761123191040646 ], [ -95.555589050504196, 29.76126819074759 ], [ -95.555710050949145, 29.761452191065572 ], [ -95.555859050938096, 29.762155191428512 ], [ -95.555934050509748, 29.762278191433214 ], [ -95.556631051573447, 29.762479191551233 ], [ -95.556854050770653, 29.762466191304473 ], [ -95.557531051792338, 29.762429191072687 ], [ -95.557733050972672, 29.762390191428945 ], [ -95.558132051097985, 29.762312191030922 ], [ -95.558186051236504, 29.762289190978731 ], [ -95.558273051370819, 29.762250191044245 ], [ -95.558343051640648, 29.76222019135141 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 677, "Tract": "48201451005", "Area_SqMi": 0.1160600866975954, "total_2009": 3043, "total_2010": 1931, "total_2011": 2534, "total_2012": 1680, "total_2013": 1653, "total_2014": 1612, "total_2015": 1608, "total_2016": 1493, "total_2017": 1343, "total_2018": 1606, "total_2019": 1606, "total_2020": 1557, "age1": 203, "age2": 837, "age3": 329, "earn1": 217, "earn2": 245, "earn3": 907, "naics_s01": 0, "naics_s02": 31, "naics_s03": 0, "naics_s04": 20, "naics_s05": 6, "naics_s06": 68, "naics_s07": 22, "naics_s08": 51, "naics_s09": 109, "naics_s10": 268, "naics_s11": 85, "naics_s12": 239, "naics_s13": 0, "naics_s14": 130, "naics_s15": 1, "naics_s16": 265, "naics_s17": 4, "naics_s18": 70, "naics_s19": 0, "naics_s20": 0, "race1": 888, "race2": 291, "race3": 2, "race4": 168, "race5": 0, "race6": 20, "ethnicity1": 1072, "ethnicity2": 297, "edu1": 181, "edu2": 222, "edu3": 345, "edu4": 418, "Shape_Length": 7480.7128488528651, "Shape_Area": 3235556.5783053511, "total_2021": 1297, "total_2022": 1369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.576303055502279, 29.743362186633917 ], [ -95.57627805576783, 29.742302186308486 ], [ -95.576267054768635, 29.741450186446833 ], [ -95.576263055030239, 29.741301186609395 ], [ -95.576235055403032, 29.740646185621419 ], [ -95.576232055437131, 29.740498186131148 ], [ -95.576220055512707, 29.739990186253181 ], [ -95.576219055571485, 29.739906186019422 ], [ -95.576218055367676, 29.739809186191977 ], [ -95.576214055678179, 29.739676186190014 ], [ -95.576203055439848, 29.739262185701765 ], [ -95.576178055625689, 29.7388631855295 ], [ -95.576177055436432, 29.738536185373853 ], [ -95.576185054691592, 29.738389185383639 ], [ -95.576175054957588, 29.737704185695083 ], [ -95.576168055170129, 29.737309185453103 ], [ -95.576174054632446, 29.736757185454636 ], [ -95.576172054673307, 29.736621185572542 ], [ -95.573735054336254, 29.736658184925012 ], [ -95.572742054290444, 29.736679185372555 ], [ -95.572530054039262, 29.736683185082924 ], [ -95.571767053866651, 29.736700185061927 ], [ -95.571772054320547, 29.7368221854972 ], [ -95.571820054059643, 29.737516185882747 ], [ -95.571852053717734, 29.737829185743646 ], [ -95.571905053527573, 29.73817718605358 ], [ -95.571930053956351, 29.738386185909629 ], [ -95.571932053901278, 29.738668185503105 ], [ -95.571941054017046, 29.739502185609791 ], [ -95.571954054507657, 29.740312186004072 ], [ -95.571949053777558, 29.74043818626944 ], [ -95.571971054040262, 29.741134186026262 ], [ -95.571976053964832, 29.741703186510804 ], [ -95.571998054714911, 29.742782186472041 ], [ -95.572446053935806, 29.742789186845926 ], [ -95.57267005454068, 29.742844187042003 ], [ -95.572878054086402, 29.742925186510401 ], [ -95.573114054101438, 29.743097186765539 ], [ -95.573145054458664, 29.743119186834154 ], [ -95.573317054798054, 29.743203186698675 ], [ -95.573546054874797, 29.743251187047452 ], [ -95.57378805518367, 29.743257186424501 ], [ -95.574434054828927, 29.74325418678503 ], [ -95.574606055447745, 29.743268186546068 ], [ -95.574803055056194, 29.743301186358519 ], [ -95.574966055237169, 29.743352186945909 ], [ -95.575167055588324, 29.743379186760489 ], [ -95.576064054848757, 29.743362186965591 ], [ -95.576303055502279, 29.743362186633917 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 678, "Tract": "48201323601", "Area_SqMi": 1.1048044884639006, "total_2009": 2256, "total_2010": 2249, "total_2011": 2215, "total_2012": 2266, "total_2013": 2309, "total_2014": 2632, "total_2015": 2844, "total_2016": 2811, "total_2017": 2883, "total_2018": 3107, "total_2019": 2453, "total_2020": 2491, "age1": 841, "age2": 1681, "age3": 629, "earn1": 602, "earn2": 980, "earn3": 1569, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 269, "naics_s05": 2, "naics_s06": 46, "naics_s07": 319, "naics_s08": 173, "naics_s09": 0, "naics_s10": 29, "naics_s11": 14, "naics_s12": 464, "naics_s13": 0, "naics_s14": 608, "naics_s15": 17, "naics_s16": 1055, "naics_s17": 2, "naics_s18": 121, "naics_s19": 32, "naics_s20": 0, "race1": 2550, "race2": 425, "race3": 30, "race4": 104, "race5": 1, "race6": 41, "ethnicity1": 1770, "ethnicity2": 1381, "edu1": 500, "edu2": 675, "edu3": 738, "edu4": 397, "Shape_Length": 31965.878745479917, "Shape_Area": 30800058.246593688, "total_2021": 2736, "total_2022": 3151 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.207356957145308, 29.654020180965258 ], [ -95.207030957106781, 29.653619181093745 ], [ -95.206792956350782, 29.653325180804959 ], [ -95.206446956249664, 29.6528551809044 ], [ -95.205228955899244, 29.651206179968241 ], [ -95.205127956175261, 29.651055180617433 ], [ -95.204542955842442, 29.650298180189861 ], [ -95.204125955794922, 29.649750179581545 ], [ -95.203864956043546, 29.649404179874733 ], [ -95.203758955398328, 29.649266179471955 ], [ -95.203426956130173, 29.648830180017427 ], [ -95.202669955898031, 29.647823179835946 ], [ -95.20163095488958, 29.646473179513073 ], [ -95.201142954460579, 29.645787179601694 ], [ -95.200967955022463, 29.645562179605353 ], [ -95.200724955141709, 29.645226178721376 ], [ -95.199870954210795, 29.644128178663774 ], [ -95.19983895462488, 29.64407417926467 ], [ -95.199790954695644, 29.644010179099233 ], [ -95.198433954501283, 29.64222317825929 ], [ -95.19832695372709, 29.642081178762016 ], [ -95.198179954003876, 29.641869178539672 ], [ -95.197395953428554, 29.640853178206779 ], [ -95.19676995383162, 29.640025178539364 ], [ -95.195702953484172, 29.638624177846374 ], [ -95.194643952889535, 29.638648177833677 ], [ -95.194019952590949, 29.63866117758544 ], [ -95.193002952947083, 29.638673178206346 ], [ -95.192561952123228, 29.638680178379147 ], [ -95.191893952641749, 29.638687177955788 ], [ -95.191116952372468, 29.638733178413652 ], [ -95.191057952509453, 29.638750177769534 ], [ -95.190880951886129, 29.638788178016018 ], [ -95.190826951842155, 29.638800178481663 ], [ -95.190587952467482, 29.63885217817483 ], [ -95.190597952003529, 29.639004178068099 ], [ -95.190632951967274, 29.63950617830923 ], [ -95.190671951995029, 29.640247178716656 ], [ -95.190666952385698, 29.641257178555279 ], [ -95.190664952427156, 29.641632178843711 ], [ -95.190700952654907, 29.6422861786893 ], [ -95.190719951674936, 29.642971179307725 ], [ -95.190721952299526, 29.643655179615305 ], [ -95.190755952635641, 29.644333179234671 ], [ -95.190784952686002, 29.646396179941654 ], [ -95.190828951964065, 29.648628179954716 ], [ -95.190863952351094, 29.650254180906469 ], [ -95.190870952803593, 29.650594181029355 ], [ -95.190875952083204, 29.65080818069146 ], [ -95.190881952570578, 29.651079180533607 ], [ -95.190890953061881, 29.651472181185476 ], [ -95.190069952705528, 29.651489180378444 ], [ -95.189719952770631, 29.651485180516485 ], [ -95.189458951808845, 29.651471180871042 ], [ -95.189154952051069, 29.651439180891717 ], [ -95.188853952494512, 29.651391180679695 ], [ -95.186294951911563, 29.65092418084825 ], [ -95.18595395125007, 29.650870181122212 ], [ -95.185606951353904, 29.650831180957205 ], [ -95.185258950942455, 29.650808180383546 ], [ -95.184909950689246, 29.650802180553942 ], [ -95.183832951063039, 29.650807180544923 ], [ -95.183411950202569, 29.650807180832242 ], [ -95.183526950538138, 29.65097318135442 ], [ -95.183830950663193, 29.651301181314146 ], [ -95.184214950715358, 29.651593180647087 ], [ -95.184358950695028, 29.651685180966222 ], [ -95.184699950870097, 29.651901180983195 ], [ -95.184992951179552, 29.65211018066185 ], [ -95.185226951351041, 29.652334181577178 ], [ -95.18542395102132, 29.652577180950509 ], [ -95.185611950843438, 29.652826181287931 ], [ -95.18569395186185, 29.652969180884444 ], [ -95.185819951119299, 29.653211181719261 ], [ -95.185918951193969, 29.653590181565637 ], [ -95.186016951756756, 29.654076181302873 ], [ -95.186048951022514, 29.654321181459498 ], [ -95.186048951712053, 29.654693181304363 ], [ -95.186048951342215, 29.655507181752625 ], [ -95.186048951593932, 29.655911181682431 ], [ -95.186048951097447, 29.656342181496363 ], [ -95.186048951247741, 29.656761182110287 ], [ -95.186238952029669, 29.657281181713916 ], [ -95.18646695210937, 29.657783182418232 ], [ -95.186517951891688, 29.658535182743218 ], [ -95.186517951894984, 29.658580182321518 ], [ -95.186533951738994, 29.660130183076937 ], [ -95.186561952022942, 29.66108118292307 ], [ -95.186565951653662, 29.66123418321283 ], [ -95.186584951653003, 29.661863183461275 ], [ -95.186615951689006, 29.662925182835821 ], [ -95.186644951936003, 29.663876183360316 ], [ -95.186655951904868, 29.664253183496921 ], [ -95.186680952612022, 29.665076183878298 ], [ -95.187596952314223, 29.665070183374851 ], [ -95.187843952413786, 29.665065183358596 ], [ -95.188110951982225, 29.665063183459477 ], [ -95.188501953065796, 29.665061183216473 ], [ -95.18931095285383, 29.665055183685041 ], [ -95.190332952558734, 29.665045183964708 ], [ -95.191078953563846, 29.665039183585936 ], [ -95.191639953740363, 29.665034183625789 ], [ -95.19206095367862, 29.665030183746996 ], [ -95.192795953955667, 29.665013183350887 ], [ -95.193267953796806, 29.665016183778384 ], [ -95.194211953723226, 29.665001182991869 ], [ -95.194838954008674, 29.664993183024361 ], [ -95.195046953900004, 29.664989183440323 ], [ -95.19502995391673, 29.66389118343616 ], [ -95.195019953754368, 29.663248183354117 ], [ -95.195016954216243, 29.663041182728008 ], [ -95.194493953867607, 29.662053182759855 ], [ -95.194238953740651, 29.661574182725083 ], [ -95.193975953858072, 29.661159182296878 ], [ -95.193661953674052, 29.66066418236322 ], [ -95.193623954214772, 29.660565182291869 ], [ -95.19357395387344, 29.660435182299885 ], [ -95.193536953686674, 29.660267182172451 ], [ -95.193529953331591, 29.660235182502166 ], [ -95.193514953776713, 29.659895182716699 ], [ -95.193500953170172, 29.659579182501304 ], [ -95.193470954029323, 29.658892182064697 ], [ -95.193422953109703, 29.656570181342016 ], [ -95.19340595360687, 29.655833181947241 ], [ -95.193370953619265, 29.654261181319114 ], [ -95.194211953362426, 29.654256181127771 ], [ -95.194777953704403, 29.654253181432292 ], [ -95.202465955738433, 29.654146180567711 ], [ -95.2060749564628, 29.654052181092556 ], [ -95.206360956537296, 29.6540451811398 ], [ -95.206575956747969, 29.654039180787603 ], [ -95.207356957145308, 29.654020180965258 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 679, "Tract": "48321730700", "Area_SqMi": 310.72213346337475, "total_2009": 581, "total_2010": 551, "total_2011": 591, "total_2012": 556, "total_2013": 532, "total_2014": 511, "total_2015": 556, "total_2016": 558, "total_2017": 552, "total_2018": 597, "total_2019": 685, "total_2020": 670, "age1": 115, "age2": 396, "age3": 192, "earn1": 144, "earn2": 185, "earn3": 374, "naics_s01": 87, "naics_s02": 6, "naics_s03": 11, "naics_s04": 43, "naics_s05": 8, "naics_s06": 9, "naics_s07": 64, "naics_s08": 65, "naics_s09": 0, "naics_s10": 5, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 127, "naics_s15": 218, "naics_s16": 12, "naics_s17": 12, "naics_s18": 23, "naics_s19": 5, "naics_s20": 7, "race1": 599, "race2": 54, "race3": 9, "race4": 26, "race5": 4, "race6": 11, "ethnicity1": 464, "ethnicity2": 239, "edu1": 125, "edu2": 157, "edu3": 168, "edu4": 138, "Shape_Length": 444851.14970727026, "Shape_Area": 8662401274.7125149, "total_2021": 691, "total_2022": 703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.317195202814716, 28.792601967701465 ], [ -96.317343202917499, 28.79007096725298 ], [ -96.315202202532817, 28.792009967786132 ], [ -96.31208220203014, 28.794777967698256 ], [ -96.31082720167251, 28.795953968187249 ], [ -96.306574201053607, 28.799736969368368 ], [ -96.298985198425513, 28.794195968015647 ], [ -96.29868819827432, 28.793978968758349 ], [ -96.29210019653911, 28.789096967157143 ], [ -96.279506192974097, 28.779765965752372 ], [ -96.271212190434355, 28.773617965108688 ], [ -96.267377189932674, 28.770775964332209 ], [ -96.267023189239282, 28.7705509646701 ], [ -96.266931189234981, 28.770564964688006 ], [ -96.266844189759155, 28.770592964856018 ], [ -96.265172189443248, 28.77207196480758 ], [ -96.259675188244302, 28.772116965205885 ], [ -96.259608188227944, 28.772117965476067 ], [ -96.259101187216245, 28.772121964819647 ], [ -96.256236187457674, 28.772109964990403 ], [ -96.253239186164805, 28.772096965666421 ], [ -96.25307418601102, 28.772095964958687 ], [ -96.250345185093792, 28.772085965071742 ], [ -96.249171185666398, 28.772077965481785 ], [ -96.234777181283661, 28.771980965354281 ], [ -96.233171180627153, 28.77198196618027 ], [ -96.232649180593512, 28.771978965517697 ], [ -96.228857180487211, 28.771957966152197 ], [ -96.226617179703538, 28.771944966093294 ], [ -96.222249178648198, 28.771885966517385 ], [ -96.218439177483674, 28.771871966556514 ], [ -96.210029175417432, 28.771840966154109 ], [ -96.210026174996898, 28.772166966813014 ], [ -96.209964175732736, 28.779679967957289 ], [ -96.209888175692541, 28.788906969959204 ], [ -96.208500175216528, 28.788919970198808 ], [ -96.199143173283588, 28.788981970701364 ], [ -96.192989171532162, 28.789022970419552 ], [ -96.192311171848502, 28.789012971025915 ], [ -96.189742170663195, 28.788974970903652 ], [ -96.189691170792813, 28.7889739705324 ], [ -96.189609171231595, 28.788971970784623 ], [ -96.18367216912695, 28.789066970673719 ], [ -96.178699167687867, 28.789097971291866 ], [ -96.17619116728595, 28.789125970843799 ], [ -96.17567016729916, 28.789131971302051 ], [ -96.175607167645012, 28.789132971220482 ], [ -96.173994167246718, 28.789150970951962 ], [ -96.167488165433525, 28.789225971346486 ], [ -96.166801165473515, 28.789223971662302 ], [ -96.164950164135718, 28.789183971125247 ], [ -96.163879164499718, 28.789204971570175 ], [ -96.163616164533863, 28.789209971847793 ], [ -96.158930163101559, 28.789133971471145 ], [ -96.155813162183549, 28.78908297174636 ], [ -96.155241162549245, 28.789052971852623 ], [ -96.154946161933367, 28.789020971375173 ], [ -96.15461416206368, 28.78896997225851 ], [ -96.154499162304361, 28.788948971755232 ], [ -96.154139161402853, 28.788869971391364 ], [ -96.153837161866988, 28.788788971589291 ], [ -96.153531161256907, 28.788692971388208 ], [ -96.153222161686173, 28.788579972199347 ], [ -96.152895160963709, 28.788442971948669 ], [ -96.152601161381213, 28.788301971700161 ], [ -96.152316161431486, 28.788148971350097 ], [ -96.152169161544094, 28.788062971853321 ], [ -96.151920161022218, 28.78790497170041 ], [ -96.151687161289402, 28.787742971955023 ], [ -96.150062160181591, 28.786499971694976 ], [ -96.149763160186964, 28.786271970967508 ], [ -96.149465160425365, 28.78604497126075 ], [ -96.149173160842849, 28.78582097095364 ], [ -96.148891160002663, 28.785617971086886 ], [ -96.148589160447628, 28.785421971289264 ], [ -96.14825916037988, 28.785230970799123 ], [ -96.147980160417958, 28.78508697147803 ], [ -96.147695160031745, 28.784954971047554 ], [ -96.147413159882575, 28.784836970854741 ], [ -96.147096160059817, 28.78471997152732 ], [ -96.1467731595895, 28.784616971072502 ], [ -96.146455160010476, 28.78452997149428 ], [ -96.146143159187972, 28.784457970721782 ], [ -96.145858159321349, 28.784403971228237 ], [ -96.145489159880782, 28.784348971509498 ], [ -96.145324158887135, 28.784329970862753 ], [ -96.144982158862774, 28.784301970899062 ], [ -96.144628159538613, 28.784287971432168 ], [ -96.135653156490847, 28.784319971891065 ], [ -96.129094155098159, 28.784342972042637 ], [ -96.128405154752059, 28.784338971373408 ], [ -96.127505155123004, 28.784342971525785 ], [ -96.126512154436824, 28.784367971644539 ], [ -96.125571154338459, 28.784429971468931 ], [ -96.12484115390788, 28.784495971463059 ], [ -96.124403153873345, 28.784513971840937 ], [ -96.123772153791236, 28.78462897219061 ], [ -96.123230153825048, 28.784739972041436 ], [ -96.122754153384875, 28.784828972062549 ], [ -96.122667153538856, 28.784844972356407 ], [ -96.122076153895733, 28.78499697189995 ], [ -96.12156415364089, 28.785162972219432 ], [ -96.119910153411567, 28.785644971886704 ], [ -96.119266152605093, 28.785771972595107 ], [ -96.118529152247888, 28.785896972005165 ], [ -96.117887152648791, 28.785953972464295 ], [ -96.116786151900186, 28.785975972803733 ], [ -96.114175151365671, 28.785990972520068 ], [ -96.111943150930699, 28.786002972137634 ], [ -96.110203150870973, 28.786004972676853 ], [ -96.107653150308096, 28.786006973103127 ], [ -96.101106148596187, 28.786131972896197 ], [ -96.091474145733429, 28.786314973440689 ], [ -96.08858814529269, 28.786349973647233 ], [ -96.086064144065745, 28.786380973331301 ], [ -96.085847144803083, 28.78638397346425 ], [ -96.085205144516578, 28.786391973348533 ], [ -96.08442814407546, 28.786399973429109 ], [ -96.083781143379284, 28.786399973941929 ], [ -96.083132143482658, 28.786451973783826 ], [ -96.082422143219986, 28.786542973437435 ], [ -96.08154214324054, 28.786677973205776 ], [ -96.081279143313608, 28.786746973632027 ], [ -96.080496142806183, 28.786951973590519 ], [ -96.079695143032083, 28.787211973600993 ], [ -96.078566142991249, 28.787671974342359 ], [ -96.077161142773278, 28.788457974362146 ], [ -96.076102141989054, 28.78925197416596 ], [ -96.075425142102134, 28.789860974294122 ], [ -96.075140141839512, 28.790155974855733 ], [ -96.074810142198984, 28.790497975040704 ], [ -96.074338141173939, 28.791054974908292 ], [ -96.073419141551739, 28.792474974728997 ], [ -96.073022141656338, 28.793076975429649 ], [ -96.071898141565455, 28.794784975602134 ], [ -96.06937614024153, 28.798614976212349 ], [ -96.066543140359272, 28.802942977673567 ], [ -96.065876139711392, 28.803831977251505 ], [ -96.065250140377316, 28.804498978055864 ], [ -96.065111139409524, 28.804646977557077 ], [ -96.063980139627063, 28.80569197840455 ], [ -96.062489139123713, 28.806709978048467 ], [ -96.060823139240739, 28.807564978425862 ], [ -96.059117138409974, 28.808260978992152 ], [ -96.057348138542679, 28.808756978862107 ], [ -96.055902137218553, 28.808982979008313 ], [ -96.054975137512116, 28.809074978903453 ], [ -96.054752137710338, 28.809096978942311 ], [ -96.053869137469775, 28.809090978937267 ], [ -96.053739137669709, 28.809089979496022 ], [ -96.05348113754232, 28.809087979478388 ], [ -96.052276136679595, 28.809097979623399 ], [ -96.048609136112063, 28.809130979198333 ], [ -96.047671136153795, 28.809124978909253 ], [ -96.046614135371257, 28.80904097899198 ], [ -96.045609134818946, 28.80894197972405 ], [ -96.044383135150838, 28.808708979457521 ], [ -96.043331134294945, 28.808432979171968 ], [ -96.042203134157859, 28.808063979146411 ], [ -96.041113134123933, 28.807603979424176 ], [ -96.040145133484259, 28.807139979596059 ], [ -96.039213133435325, 28.806605978960398 ], [ -96.038386132651567, 28.806059979321738 ], [ -96.037647132658336, 28.805485978706336 ], [ -96.037001132997261, 28.804958978370159 ], [ -96.036257132353242, 28.804245978321386 ], [ -96.035677132793211, 28.803582978499179 ], [ -96.035176131867956, 28.802944978788258 ], [ -96.034652131789784, 28.80218597835167 ], [ -96.034215131803094, 28.801429978256177 ], [ -96.03383313139517, 28.800568977765913 ], [ -96.033521131471659, 28.799677977874605 ], [ -96.033344131202199, 28.798904977718749 ], [ -96.033261131911829, 28.798457977981389 ], [ -96.033209131896612, 28.798177977488432 ], [ -96.033106131117179, 28.796948977307125 ], [ -96.033050131895578, 28.795709976606307 ], [ -96.032964131193268, 28.793909976725736 ], [ -96.032859130821734, 28.793063976667057 ], [ -96.032703130822753, 28.79251897628296 ], [ -96.032531130954553, 28.792036975921857 ], [ -96.032140131042567, 28.791196975857339 ], [ -96.031933130938569, 28.790860976258742 ], [ -96.031592130937639, 28.790353976129875 ], [ -96.031177130494427, 28.789853976177813 ], [ -96.030719130509112, 28.7893649755711 ], [ -96.03055213061171, 28.789195975535151 ], [ -96.030413130470862, 28.789055976153172 ], [ -96.030120130163468, 28.788822975635593 ], [ -96.029798130134807, 28.788588975265643 ], [ -96.02948813065629, 28.788418975235309 ], [ -96.028926129553142, 28.788065975228157 ], [ -96.028376129525043, 28.787789975642351 ], [ -96.027896129274268, 28.787576975686505 ], [ -96.02745712937103, 28.787428975926975 ], [ -96.02691912948714, 28.787265975760622 ], [ -96.026380128900371, 28.787115975131393 ], [ -96.026025129582194, 28.787031975695331 ], [ -96.025609129196667, 28.786986975195372 ], [ -96.022121127920187, 28.787007975215303 ], [ -96.018453127324847, 28.78703097550925 ], [ -96.009123125036396, 28.787095976027214 ], [ -96.008116124659907, 28.787102976298211 ], [ -96.007059124071958, 28.787110976201063 ], [ -96.004358124141021, 28.78712297630112 ], [ -96.003639123151899, 28.787152976205068 ], [ -96.002919123552317, 28.787220976236156 ], [ -96.00205912325535, 28.787330976686224 ], [ -96.00117112251651, 28.787509976126614 ], [ -96.000184122585694, 28.78780797624875 ], [ -95.998776121908605, 28.788340976503779 ], [ -95.996948121658122, 28.789081976685846 ], [ -95.996559121988142, 28.789238977084374 ], [ -95.99663012140276, 28.789346976593226 ], [ -95.996856122349243, 28.789771977136549 ], [ -95.99705012193607, 28.790002977175629 ], [ -95.997522122223671, 28.791269977442514 ], [ -95.997935122608808, 28.792217977330807 ], [ -95.998831122611918, 28.794117978194283 ], [ -95.99917012281189, 28.794968977741711 ], [ -95.999864122922816, 28.796237977870216 ], [ -96.000187123168445, 28.796939978077702 ], [ -96.000526123490218, 28.797980978500348 ], [ -96.000769122942913, 28.798383978305907 ], [ -96.001043123675601, 28.798986979100775 ], [ -96.001142123042513, 28.799336979135084 ], [ -96.001368123622839, 28.799719979241207 ], [ -96.001633123166556, 28.800326978947485 ], [ -96.001802123729121, 28.800809979090147 ], [ -96.001876124172426, 28.801309979351899 ], [ -96.001844123914452, 28.801633979100231 ], [ -96.001672123281821, 28.802077979764121 ], [ -96.001342123277809, 28.802533979114248 ], [ -96.000571123465335, 28.803179979431352 ], [ -96.000264123874018, 28.803357979723941 ], [ -96.000104123780162, 28.803450979463168 ], [ -95.999343123464698, 28.803894979549849 ], [ -95.998741122994602, 28.804383980012208 ], [ -95.998576122589554, 28.804543980156701 ], [ -95.997952122928055, 28.805391979700396 ], [ -95.997617123020518, 28.80624398027215 ], [ -95.997186122583926, 28.808045980673992 ], [ -95.997142123139469, 28.809024980579018 ], [ -95.997235122986027, 28.809779981111216 ], [ -95.997561123092026, 28.811046981662347 ], [ -95.99783912286415, 28.811608981851546 ], [ -95.998718123693479, 28.812909981749652 ], [ -95.999613123996085, 28.813894981739917 ], [ -96.00198712424006, 28.816084982391715 ], [ -96.002374124609332, 28.816504982614347 ], [ -96.002929125051352, 28.81730698286999 ], [ -96.003366124627519, 28.817782982210343 ], [ -96.003798124728064, 28.818157982334984 ], [ -96.004548124624833, 28.818594982573867 ], [ -96.004787125152305, 28.818734982234478 ], [ -96.005664125491847, 28.81903198239868 ], [ -96.007180126085132, 28.819322982673572 ], [ -96.008113126525302, 28.819734982469999 ], [ -96.008239125794674, 28.819790982904763 ], [ -96.008861126429863, 28.820308982503498 ], [ -96.009382126026836, 28.820864982669342 ], [ -96.009623126825133, 28.821282982647293 ], [ -96.009725126707664, 28.821556983442676 ], [ -96.009859126409609, 28.822232983531478 ], [ -96.009726126643613, 28.823707983942459 ], [ -96.009779126340348, 28.824319983975478 ], [ -96.010079126980457, 28.825218983926892 ], [ -96.010566126954075, 28.826001984082552 ], [ -96.011171127082008, 28.826680984140769 ], [ -96.011355127098327, 28.826823983827335 ], [ -96.013200127878179, 28.827894984161905 ], [ -96.014399127570869, 28.828709984664428 ], [ -96.014905128074005, 28.829130984498377 ], [ -96.015308128408734, 28.829586984984633 ], [ -96.01569612858296, 28.830180984939631 ], [ -96.016489128823665, 28.831784985143226 ], [ -96.016871128432442, 28.832776985237413 ], [ -96.017065128723303, 28.833662985472898 ], [ -96.01714612922099, 28.836405985954823 ], [ -96.017398129282043, 28.837354986548473 ], [ -96.017642129179478, 28.837890985859712 ], [ -96.018267129053058, 28.838737986270718 ], [ -96.018988129437361, 28.839375986578169 ], [ -96.020794130470662, 28.840432986683794 ], [ -96.021075130464169, 28.840559987054061 ], [ -96.022251130129163, 28.841090986933036 ], [ -96.023508130854822, 28.841767986603884 ], [ -96.023901130822395, 28.842024987195447 ], [ -96.024401131290901, 28.842566987110558 ], [ -96.024637131660555, 28.84290598712041 ], [ -96.024870130758231, 28.843366986990983 ], [ -96.025021131774849, 28.8438169868149 ], [ -96.025059131798159, 28.844181987226545 ], [ -96.025066131401644, 28.844247987066247 ], [ -96.025047131454343, 28.844824987136896 ], [ -96.024371130893513, 28.846604988119239 ], [ -96.024197131192452, 28.847530987780594 ], [ -96.024260130967662, 28.848248987888507 ], [ -96.024587131840292, 28.849104987989776 ], [ -96.025019131161471, 28.849758987982256 ], [ -96.0256371314983, 28.850284988692856 ], [ -96.026106131346751, 28.850634988648057 ], [ -96.028300132039362, 28.851958989190653 ], [ -96.028704132391013, 28.852280988511104 ], [ -96.029420132599824, 28.853246989072243 ], [ -96.029575133247846, 28.853657989054479 ], [ -96.029728133267255, 28.854316989159852 ], [ -96.029846133096285, 28.854994989458966 ], [ -96.029843132936207, 28.855678989682719 ], [ -96.029922132862808, 28.856431989882349 ], [ -96.029940132762007, 28.857440989834892 ], [ -96.030235133297737, 28.858658990287019 ], [ -96.03061113323885, 28.858876990465266 ], [ -96.031067133718352, 28.859290990386608 ], [ -96.031596133737864, 28.859688990723889 ], [ -96.032789133490269, 28.860241990392055 ], [ -96.033388134367314, 28.860618990205413 ], [ -96.033773134231041, 28.86098799033881 ], [ -96.034218134602682, 28.86141499032836 ], [ -96.034471134551183, 28.861743990268092 ], [ -96.03486613472441, 28.862375990673563 ], [ -96.035254134504484, 28.86324899118409 ], [ -96.035598134397517, 28.864511991220049 ], [ -96.035669134896864, 28.865447991375952 ], [ -96.035834134777872, 28.866192991564208 ], [ -96.036281134755598, 28.867261991367325 ], [ -96.036647134719004, 28.867824991898566 ], [ -96.0371091349502, 28.868330991932837 ], [ -96.037627135897196, 28.868739991659297 ], [ -96.038163135323757, 28.869003992049958 ], [ -96.038560135907446, 28.869268992055559 ], [ -96.038754135833628, 28.869400992304083 ], [ -96.039570136155149, 28.870159991882065 ], [ -96.039980136586436, 28.870782992016071 ], [ -96.040124135904037, 28.871345992394151 ], [ -96.040180136503452, 28.871921992138503 ], [ -96.040149136318078, 28.87231699283274 ], [ -96.039870135927714, 28.873203992439944 ], [ -96.039581136075952, 28.873734992727137 ], [ -96.039129135763275, 28.874323993240345 ], [ -96.038778136361003, 28.874780992886826 ], [ -96.037811136331641, 28.876330993565752 ], [ -96.036146135686678, 28.878732993611219 ], [ -96.035763135634909, 28.879528993906245 ], [ -96.035725135762732, 28.879814994175714 ], [ -96.035746135513705, 28.880536994835047 ], [ -96.035837135933988, 28.880962994910274 ], [ -96.035883135874286, 28.881175994784542 ], [ -96.036071135147225, 28.881690994372057 ], [ -96.036976136434689, 28.883506994831425 ], [ -96.037112135483568, 28.884071995293368 ], [ -96.037215136534414, 28.884750995662834 ], [ -96.037023135585983, 28.885301995121527 ], [ -96.036857136343755, 28.885551995159112 ], [ -96.036775135496939, 28.885674995476901 ], [ -96.036335135673824, 28.886102995881373 ], [ -96.035638135492022, 28.886605995340219 ], [ -96.034320135756531, 28.887333996272691 ], [ -96.032948134973836, 28.887977995857344 ], [ -96.032238135270163, 28.888402995967787 ], [ -96.031866134929089, 28.8888759965993 ], [ -96.031755135003152, 28.889183996193537 ], [ -96.031708134612444, 28.889760996341177 ], [ -96.031772134561947, 28.889969996798566 ], [ -96.031865134515726, 28.890270996557909 ], [ -96.033310135709328, 28.892108997007711 ], [ -96.033482135549818, 28.892475996551301 ], [ -96.033657134999785, 28.89321699753523 ], [ -96.033599135875065, 28.893718997028778 ], [ -96.033401135684969, 28.894192997563135 ], [ -96.033229135654054, 28.894377996938296 ], [ -96.033013135749684, 28.894610996992256 ], [ -96.032287135682253, 28.895138997570431 ], [ -96.030707134994458, 28.896104997905592 ], [ -96.030614134841557, 28.896184998202166 ], [ -96.030122134989455, 28.896608997575868 ], [ -96.029674134277656, 28.897253997803855 ], [ -96.028729134776825, 28.899294998328116 ], [ -96.028684134955228, 28.899391998700402 ], [ -96.028413134913066, 28.899795998730013 ], [ -96.028137134850624, 28.900107998728526 ], [ -96.027971134676804, 28.900465999228842 ], [ -96.026711134465927, 28.902408998949142 ], [ -96.026515134375529, 28.902805999292227 ], [ -96.026220133853499, 28.903046999403891 ], [ -96.026002134002468, 28.903549999123399 ], [ -96.025940134352012, 28.903614999638449 ], [ -96.025791134048532, 28.903769999206265 ], [ -96.025113134001671, 28.904791999900212 ], [ -96.023841134035109, 28.906165999989447 ], [ -96.022242133703287, 28.907615000031392 ], [ -96.021802132820071, 28.907939000399821 ], [ -96.020995132661625, 28.908433000394854 ], [ -96.020464133206758, 28.90861800070623 ], [ -96.019997132388397, 28.908841001013037 ], [ -96.019082131949887, 28.909026000463317 ], [ -96.018619131895463, 28.909169000838698 ], [ -96.017813132492918, 28.909595001397079 ], [ -96.017614132110808, 28.909777000927484 ], [ -96.017379132544136, 28.910115001570386 ], [ -96.017036131677045, 28.910926000935369 ], [ -96.016985131757906, 28.911137000982155 ], [ -96.017048131648878, 28.911524001512383 ], [ -96.01660613179186, 28.912801001628292 ], [ -96.016380131768486, 28.9132260015718 ], [ -96.016160132156969, 28.913530001535079 ], [ -96.015947132340912, 28.913697002101966 ], [ -96.015311131640004, 28.914623001758077 ], [ -96.015117132030639, 28.915059002246757 ], [ -96.015053131985766, 28.915561002674465 ], [ -96.015100131969916, 28.916209002632066 ], [ -96.01532513208727, 28.917162003075589 ], [ -96.015357131865997, 28.917232003037299 ], [ -96.015598131870519, 28.917766002627467 ], [ -96.015933131720701, 28.918260002458712 ], [ -96.016476132547183, 28.919351002745245 ], [ -96.01682313231602, 28.920352003646805 ], [ -96.016852132669754, 28.921035003740215 ], [ -96.016689131879019, 28.921479003857112 ], [ -96.016433131879566, 28.921895003936363 ], [ -96.016420132509396, 28.921904003883988 ], [ -96.015946132187096, 28.922334003826379 ], [ -96.015448132469402, 28.92274600343778 ], [ -96.014524131347628, 28.923211004313366 ], [ -96.014191131440541, 28.923349003885765 ], [ -96.013446131234772, 28.9235350039176 ], [ -96.01286413120026, 28.92387200434769 ], [ -96.012421130925645, 28.924297004158099 ], [ -96.01193813179475, 28.924924004384611 ], [ -96.011521131475504, 28.92574700441514 ], [ -96.011426130719101, 28.926171004243177 ], [ -96.011470130922774, 28.926769005063548 ], [ -96.011511131431249, 28.927320004667422 ], [ -96.011859131821126, 28.928357005243207 ], [ -96.012095131826428, 28.928775004755881 ], [ -96.012378131581912, 28.929566005248898 ], [ -96.012418131283724, 28.93028700515773 ], [ -96.012312131724613, 28.930893005169917 ], [ -96.012197131323859, 28.931305005766436 ], [ -96.012039131413687, 28.931873006192358 ], [ -96.011932131103322, 28.932067005476501 ], [ -96.011335131524177, 28.932755006248993 ], [ -96.010594131660639, 28.933750006360913 ], [ -96.010181130780751, 28.934615006240971 ], [ -96.009668130923473, 28.93547600685644 ], [ -96.009430131280865, 28.93616500641193 ], [ -96.009363130967742, 28.936667006754984 ], [ -96.009361131627699, 28.937317007090673 ], [ -96.009478131558325, 28.938141007001803 ], [ -96.009608131596764, 28.938482007013782 ], [ -96.009965131426029, 28.93905000693255 ], [ -96.010097131192552, 28.939497007010516 ], [ -96.010360131373076, 28.939862007626374 ], [ -96.010426131141557, 28.939953007860961 ], [ -96.010988131342074, 28.940371007299319 ], [ -96.011683131577541, 28.940677007819215 ], [ -96.01357413269352, 28.941351007333637 ], [ -96.014382132475063, 28.941843008188957 ], [ -96.014988132741266, 28.942272007599733 ], [ -96.01528213282765, 28.942702008038008 ], [ -96.015293133047621, 28.942821008166586 ], [ -96.015329133113454, 28.943204007833444 ], [ -96.015261132698328, 28.943814007882992 ], [ -96.015089133309104, 28.944322008563539 ], [ -96.014982132685745, 28.944641007985812 ], [ -96.014737132316952, 28.94510300871827 ], [ -96.013948133034063, 28.946196008935146 ], [ -96.01327513231189, 28.947591008776872 ], [ -96.013099132219111, 28.948108008692657 ], [ -96.013043133024965, 28.948756008807315 ], [ -96.013076133008667, 28.949296009285504 ], [ -96.013251132785186, 28.950035009045216 ], [ -96.013454132357623, 28.950390009910393 ], [ -96.013824133062457, 28.951269009346387 ], [ -96.014365132540604, 28.952084010182247 ], [ -96.014465133546253, 28.952234010067802 ], [ -96.014853133342328, 28.952724009817661 ], [ -96.015079133249543, 28.953079009886995 ], [ -96.016090133818054, 28.954113009935654 ], [ -96.01636113331891, 28.954598010261876 ], [ -96.016471133565503, 28.955165010452795 ], [ -96.016409133982791, 28.955444010453839 ], [ -96.016182133229009, 28.956473010306055 ], [ -96.016019133738283, 28.95680401086533 ], [ -96.015526133963149, 28.95751101055026 ], [ -96.014745133200989, 28.958482010729341 ], [ -96.014462132816817, 28.958961011553225 ], [ -96.014468133114406, 28.959787011112898 ], [ -96.014601133335063, 28.960147011578446 ], [ -96.014746133851133, 28.960541011177927 ], [ -96.014987133478812, 28.961178011900511 ], [ -96.016621134468252, 28.963638011992423 ], [ -96.016925134053736, 28.964263012741377 ], [ -96.017057134234449, 28.96453301196766 ], [ -96.017206134384224, 28.965058012456463 ], [ -96.017219133965682, 28.965416012711483 ], [ -96.016990134302688, 28.965918012898239 ], [ -96.01685313460122, 28.966219012946834 ], [ -96.016630134118898, 28.96642801243171 ], [ -96.015936133965596, 28.966814012596288 ], [ -96.015697134343469, 28.966948013167766 ], [ -96.013695133263951, 28.96785401318283 ], [ -96.012838133742108, 28.968347013711423 ], [ -96.012249132733146, 28.968848013520809 ], [ -96.011858133125472, 28.969354013228909 ], [ -96.011494132731841, 28.970080013479905 ], [ -96.011352133112567, 28.970494013861149 ], [ -96.011314133046284, 28.970667013596213 ], [ -96.011258132845171, 28.970919013958156 ], [ -96.011252132815073, 28.971244013623053 ], [ -96.011279132676066, 28.971568013853492 ], [ -96.011510133200147, 28.972372014315599 ], [ -96.011634133164151, 28.973158014615187 ], [ -96.011989133061675, 28.974193014304284 ], [ -96.012133132980921, 28.974940014413303 ], [ -96.012212133352534, 28.975993014515744 ], [ -96.012274133607747, 28.976202014730113 ], [ -96.012204133350352, 28.976486015379798 ], [ -96.012197133955112, 28.976514015046259 ], [ -96.012244133169091, 28.977053015398795 ], [ -96.012195133904697, 28.977592015128014 ], [ -96.011765133118516, 28.978643015534839 ], [ -96.011163132994838, 28.97941801561236 ], [ -96.010386132901047, 28.980122015408931 ], [ -96.010082133228963, 28.980398015400493 ], [ -96.009735133454825, 28.980651016150567 ], [ -96.00899413316688, 28.981036015969309 ], [ -96.008753132441953, 28.98112901616701 ], [ -96.007805132326922, 28.981324015690959 ], [ -96.007755132431839, 28.981328015797114 ], [ -96.004670132196296, 28.981690016601714 ], [ -96.003584131047006, 28.981874016675466 ], [ -96.002553131760365, 28.982109016705611 ], [ -96.001557130657375, 28.982441016878422 ], [ -96.000922130454555, 28.982795016463321 ], [ -96.000745131114755, 28.982945016941596 ], [ -96.000561130729949, 28.983172017090688 ], [ -96.000504130675679, 28.98324201662739 ], [ -96.000341130517839, 28.983444016722125 ], [ -96.000059130656453, 28.983735017060642 ], [ -95.99987513103757, 28.983923016796492 ], [ -95.999707130499061, 28.984096017006454 ], [ -95.99967413076395, 28.984129016827069 ], [ -95.999297130329879, 28.984810016811519 ], [ -95.999221130320137, 28.985079016792319 ], [ -95.99907013030132, 28.985621017150265 ], [ -95.999162130094618, 28.986474017271576 ], [ -95.999068130558285, 28.986760017558261 ], [ -95.999179130467525, 28.987078017313753 ], [ -95.999580130536145, 28.987748017505975 ], [ -96.000385131177111, 28.98932901819672 ], [ -96.000699131484666, 28.989841018027523 ], [ -96.00124113145003, 28.990727018211814 ], [ -96.001733131431152, 28.991874018381235 ], [ -96.001920131318201, 28.992943018380238 ], [ -96.001923131311003, 28.993629019140915 ], [ -96.001686131198525, 28.994605019377154 ], [ -96.00106013186199, 28.996286019736726 ], [ -96.000723131051998, 28.997366019723433 ], [ -96.000673131128423, 28.997614019276238 ], [ -96.000659131774157, 28.998228019395924 ], [ -96.000773131777791, 28.99901501954924 ], [ -96.000993131758847, 28.999440019931541 ], [ -96.001139131306559, 28.999903019744249 ], [ -96.001179131243148, 29.000031019792047 ], [ -96.001569131616847, 29.000703019845556 ], [ -96.001626132204763, 29.000802020238918 ], [ -96.001944131981546, 29.001658020298269 ], [ -96.002172131939162, 29.002535020912884 ], [ -96.002187131643367, 29.002677020302997 ], [ -96.002232131522945, 29.003109021028287 ], [ -96.002264131908518, 29.004081021336777 ], [ -96.002372131989745, 29.004539020755566 ], [ -96.002397132107248, 29.005079021046541 ], [ -96.002777132707266, 29.006258021092652 ], [ -96.003144132132803, 29.006903021919552 ], [ -96.00355213282927, 29.007487021468791 ], [ -96.004107132250255, 29.008019021391906 ], [ -96.004297132768542, 29.008136021500476 ], [ -96.005081133116931, 29.008617022212285 ], [ -96.006021133773274, 29.009423021812598 ], [ -96.006275133843047, 29.009835022225356 ], [ -96.006510133433324, 29.010103022486579 ], [ -96.006974133667001, 29.010652021891836 ], [ -96.007078134002469, 29.010926022101074 ], [ -96.007126133991818, 29.011310022417774 ], [ -96.007442133867784, 29.014439022899474 ], [ -96.00743413346332, 29.015051023480979 ], [ -96.007701133516022, 29.015922023302775 ], [ -96.007920134404586, 29.016269023415809 ], [ -96.008548133866157, 29.016672023221119 ], [ -96.008766134589891, 29.016774023224059 ], [ -96.0090161342127, 29.016891022991523 ], [ -96.010359135121007, 29.01716702315991 ], [ -96.011736135234372, 29.01736202325489 ], [ -96.012711135478412, 29.017637023599999 ], [ -96.014313136230172, 29.017937023663848 ], [ -96.014959135629795, 29.018151023075152 ], [ -96.015770135821228, 29.018419023100531 ], [ -96.017297136419643, 29.018834023281403 ], [ -96.017623136248261, 29.018880023952637 ], [ -96.018548137242206, 29.019011023947773 ], [ -96.020257136858362, 29.019040023252224 ], [ -96.020744137727334, 29.019090023266536 ], [ -96.020970137268051, 29.019175023805932 ], [ -96.021796137300186, 29.019643023432433 ], [ -96.02217913789903, 29.020064023499682 ], [ -96.022306137899818, 29.020512023715668 ], [ -96.022220137524499, 29.021006023894302 ], [ -96.022091137902819, 29.021309024160171 ], [ -96.021969137839392, 29.021411024114158 ], [ -96.021736137920442, 29.021605024154663 ], [ -96.021281137484152, 29.021768023793545 ], [ -96.01990613777977, 29.021953023636204 ], [ -96.017694136478937, 29.022039024290503 ], [ -96.016153136411205, 29.02213602454983 ], [ -96.015544136509419, 29.022211024015551 ], [ -96.014305135502013, 29.022454024023165 ], [ -96.014037135362742, 29.022543024063637 ], [ -96.013614136135033, 29.022765024693335 ], [ -96.013270135808881, 29.023121024118517 ], [ -96.013069135997412, 29.023515024783741 ], [ -96.012973135415109, 29.023829024353152 ], [ -96.012981135731238, 29.024693025265776 ], [ -96.013142135385152, 29.025330025235355 ], [ -96.013274136042526, 29.025855025471362 ], [ -96.013623136287492, 29.026856025647508 ], [ -96.013730136146762, 29.027352025590751 ], [ -96.013995136419837, 29.028048025320228 ], [ -96.014147135620789, 29.028447025590214 ], [ -96.014154136140576, 29.028893025781695 ], [ -96.013986136540041, 29.030220026365008 ], [ -96.013984136355106, 29.031087026471845 ], [ -96.014057136000119, 29.031732026482761 ], [ -96.014110135904119, 29.031864026097619 ], [ -96.014745136288681, 29.033428026275104 ], [ -96.015119136223518, 29.033898026736882 ], [ -96.015612136299765, 29.034221026583317 ], [ -96.016023136805885, 29.034383026314703 ], [ -96.016983137436284, 29.034569026773141 ], [ -96.017757137026479, 29.034594027180763 ], [ -96.017924136926425, 29.034599026851005 ], [ -96.019789137829434, 29.034393026654325 ], [ -96.021179137944102, 29.034455027018776 ], [ -96.021495138122702, 29.03453102689522 ], [ -96.022023138472974, 29.034769026645005 ], [ -96.023308139170425, 29.035477026904786 ], [ -96.023745138788911, 29.035803026838934 ], [ -96.02419113853955, 29.036318027033527 ], [ -96.02432413869947, 29.036582027344135 ], [ -96.024437139352102, 29.037003026763159 ], [ -96.024737138900221, 29.037751026907607 ], [ -96.024974139794651, 29.038702027276432 ], [ -96.025017138914393, 29.039242027465416 ], [ -96.024969139266375, 29.039745027600915 ], [ -96.024776139689578, 29.040295027876965 ], [ -96.024215139465227, 29.041169027946584 ], [ -96.023859139206166, 29.04151602828701 ], [ -96.023701139004885, 29.041612027598269 ], [ -96.023387138764008, 29.041803027879304 ], [ -96.021887138343899, 29.042548028509714 ], [ -96.020780138496903, 29.043167028553409 ], [ -96.020303138310226, 29.04337402872051 ], [ -96.019331137982846, 29.043978028998655 ], [ -96.019061138350025, 29.044294028918458 ], [ -96.018646137644382, 29.044641029077106 ], [ -96.01836013765319, 29.044993029095274 ], [ -96.018237138296115, 29.045221028841425 ], [ -96.018103138114213, 29.04582402909627 ], [ -96.017742137550513, 29.04666802903099 ], [ -96.017720138175392, 29.047227029021588 ], [ -96.017689137709127, 29.048001029934721 ], [ -96.017465138011431, 29.048806029678232 ], [ -96.017061137892952, 29.049673030034747 ], [ -96.016786138007475, 29.050031029688849 ], [ -96.016416138009149, 29.050343029806143 ], [ -96.016165137690493, 29.050554029705619 ], [ -96.015540137559896, 29.050895030018491 ], [ -96.014937137462013, 29.051132030101975 ], [ -96.01490413727835, 29.051145030639717 ], [ -96.013916137416771, 29.051382029916347 ], [ -96.01326013636799, 29.051679030089641 ], [ -96.012800137198212, 29.05203803071457 ], [ -96.01254313667296, 29.052365030594199 ], [ -96.012457137073397, 29.052528030398751 ], [ -96.012327136941039, 29.053130030372881 ], [ -96.012315136445039, 29.05345403110676 ], [ -96.012406136226858, 29.053989031053813 ], [ -96.012609137316502, 29.054382030595775 ], [ -96.012828136612583, 29.054644031028332 ], [ -96.013741137064471, 29.055420031324697 ], [ -96.014313136981187, 29.05582903102794 ], [ -96.014836137187757, 29.056114031589086 ], [ -96.015524137496101, 29.05634603156042 ], [ -96.01636513775756, 29.056507031582637 ], [ -96.017588138221186, 29.056619031451145 ], [ -96.018120138089458, 29.056600030820899 ], [ -96.019525138191696, 29.056348030850508 ], [ -96.020546139102478, 29.056279031354332 ], [ -96.021673138860876, 29.056468031402698 ], [ -96.022291139054161, 29.056657030923144 ], [ -96.022543139715296, 29.056778031484068 ], [ -96.023109139479487, 29.057192031142474 ], [ -96.023326140047871, 29.057454031091254 ], [ -96.023530139264849, 29.057962031535823 ], [ -96.023523140085246, 29.058754031535887 ], [ -96.023340140214501, 29.059456031514841 ], [ -96.023110139982833, 29.059838031676943 ], [ -96.023048139239435, 29.05988103175418 ], [ -96.022675139802388, 29.060141032174482 ], [ -96.020947138803066, 29.060706032032574 ], [ -96.019455139126578, 29.061458031999013 ], [ -96.018890138747054, 29.061667032211975 ], [ -96.018731138851706, 29.061780032098955 ], [ -96.018383138919987, 29.062178032226019 ], [ -96.018228138288421, 29.062473032633839 ], [ -96.018236139021525, 29.062530032719621 ], [ -96.018296138240828, 29.062971032991125 ], [ -96.018868138787653, 29.064003033082578 ], [ -96.019389138731839, 29.064401032601413 ], [ -96.02006013946891, 29.064666033276541 ], [ -96.020413139307308, 29.064912032677981 ], [ -96.02102513951823, 29.065541032989273 ], [ -96.021142139575446, 29.065878033308064 ], [ -96.021161139484207, 29.066024033497889 ], [ -96.021212139944595, 29.06642003291272 ], [ -96.021191139227085, 29.066708032782621 ], [ -96.020936139325556, 29.067315033582666 ], [ -96.02037513883792, 29.068113033582922 ], [ -96.019378138762761, 29.069210033435425 ], [ -96.018912138835404, 29.069563033779087 ], [ -96.018040139039684, 29.070100034440191 ], [ -96.017471138688194, 29.070301033846871 ], [ -96.016782138143938, 29.070372033674566 ], [ -96.016213138139577, 29.070660034509348 ], [ -96.01545113828152, 29.071204033970812 ], [ -96.014950138374374, 29.072070034468506 ], [ -96.014694137990901, 29.072462034892499 ], [ -96.014556137715701, 29.072801034324716 ], [ -96.014499138155244, 29.073304035016587 ], [ -96.014584138388443, 29.073913034501949 ], [ -96.014897138031145, 29.074331034972914 ], [ -96.015398137923938, 29.074752034628762 ], [ -96.01564113874764, 29.075049035127432 ], [ -96.015935138563009, 29.075160035448523 ], [ -96.016301138790851, 29.075200034974785 ], [ -96.016910138768523, 29.075125035194951 ], [ -96.017604138453152, 29.074905035473538 ], [ -96.0189961387794, 29.074294035261509 ], [ -96.019792139358216, 29.074125034772951 ], [ -96.021840139817726, 29.074169034498784 ], [ -96.023440140371463, 29.07447103480213 ], [ -96.024105141057063, 29.074747034650283 ], [ -96.024395140336338, 29.074946034401826 ], [ -96.024549140445259, 29.075096034869791 ], [ -96.025080141199297, 29.075613035358256 ], [ -96.025208141397897, 29.075930034750758 ], [ -96.025362141239583, 29.076144035325434 ], [ -96.025795141571564, 29.076474034937419 ], [ -96.026380140850932, 29.077214034777583 ], [ -96.026737141559806, 29.077480035383005 ], [ -96.027037141734382, 29.077704035107665 ], [ -96.027322141716937, 29.077848035566113 ], [ -96.02809714216562, 29.078081035573479 ], [ -96.028907141950825, 29.07842903569529 ], [ -96.02995014236798, 29.078963035162609 ], [ -96.030278142491269, 29.079180035684335 ], [ -96.03071114206162, 29.079563035500264 ], [ -96.031025142701779, 29.079938035993479 ], [ -96.031122142314672, 29.080137035326935 ], [ -96.031519142945143, 29.08135003576853 ], [ -96.031566142615972, 29.081743035841946 ], [ -96.031515143023071, 29.081909035866893 ], [ -96.031449142588897, 29.082125036516899 ], [ -96.030768143066709, 29.083236035986086 ], [ -96.030330142247692, 29.084043036408641 ], [ -96.029882142304658, 29.08520203688002 ], [ -96.02982414201297, 29.085813036722271 ], [ -96.029841142953188, 29.086246036929243 ], [ -96.030001143046775, 29.086767037076545 ], [ -96.030259142264228, 29.087256037100857 ], [ -96.030706143011244, 29.087677037631028 ], [ -96.031265142874091, 29.087978037559061 ], [ -96.032191143060714, 29.088362037640866 ], [ -96.033254143422994, 29.088739037293827 ], [ -96.033988143896337, 29.089135037844631 ], [ -96.035074144233818, 29.08995703754529 ], [ -96.035684144370833, 29.09063103737698 ], [ -96.035752144654779, 29.090838037792302 ], [ -96.035713143901333, 29.091087037809601 ], [ -96.035716144253414, 29.091276037505256 ], [ -96.035724144660421, 29.091736038319652 ], [ -96.035410143800348, 29.094038038465502 ], [ -96.03544114449177, 29.094578038720943 ], [ -96.035620144645904, 29.095018038667426 ], [ -96.036150144254435, 29.095612038455481 ], [ -96.036665144945673, 29.096432038896921 ], [ -96.036784145066918, 29.096529038554809 ], [ -96.037341144545721, 29.096787038678453 ], [ -96.037401145022059, 29.0968150384689 ], [ -96.03794914487068, 29.096965039332257 ], [ -96.038441145523933, 29.096983039270068 ], [ -96.039052144918912, 29.096937038590461 ], [ -96.040137145235491, 29.097124038837261 ], [ -96.040750146100564, 29.097112038935265 ], [ -96.041265146235531, 29.097231039101612 ], [ -96.041989146542747, 29.097568038849861 ], [ -96.042414146535492, 29.097851038714936 ], [ -96.042728146278762, 29.098229039000486 ], [ -96.043066146473407, 29.099086038795573 ], [ -96.043009146085794, 29.099292039397099 ], [ -96.042829145935769, 29.099591039637268 ], [ -96.042647146754163, 29.099894039013801 ], [ -96.041290145599518, 29.100350039598776 ], [ -96.040071145663447, 29.100652039455575 ], [ -96.039579145950299, 29.100831039918411 ], [ -96.038671145768674, 29.101249039349355 ], [ -96.038270145539499, 29.101609039428563 ], [ -96.037781145309012, 29.102143039575523 ], [ -96.037572145141866, 29.102454039983254 ], [ -96.036886144578958, 29.103261039946904 ], [ -96.036886144838917, 29.103694040487706 ], [ -96.03696914519027, 29.104009040020813 ], [ -96.037405145570375, 29.104785040224975 ], [ -96.037528144825146, 29.104969040125745 ], [ -96.03840114503501, 29.106276040593325 ], [ -96.038650145160574, 29.106557041166479 ], [ -96.038813145172043, 29.106471041072847 ], [ -96.038976145877172, 29.106386040911698 ], [ -96.042251146761473, 29.104644039999418 ], [ -96.042515146974679, 29.104504040176447 ], [ -96.045203147449982, 29.103075039822414 ], [ -96.046461147289818, 29.102405039494037 ], [ -96.04986214773183, 29.100597039522796 ], [ -96.049934148255275, 29.100559039506745 ], [ -96.05215514884523, 29.099378038655697 ], [ -96.062397151009719, 29.09393503734124 ], [ -96.064573151158228, 29.092777036888343 ], [ -96.073356154051396, 29.088108035869915 ], [ -96.073390153671781, 29.088090035905193 ], [ -96.073439153859056, 29.088063036217786 ], [ -96.077115154655118, 29.086082035083084 ], [ -96.080987155298175, 29.083994035136659 ], [ -96.092461157601051, 29.077878033075972 ], [ -96.09775715891665, 29.075106032320502 ], [ -96.098096159271194, 29.074929032416872 ], [ -96.100045160163063, 29.073909032409212 ], [ -96.105391160541984, 29.071112031420412 ], [ -96.116732163616945, 29.065178030206379 ], [ -96.118662163910003, 29.064168029472334 ], [ -96.119136164376968, 29.063921029325179 ], [ -96.119156163890892, 29.063911029823174 ], [ -96.120540164742735, 29.063149029122432 ], [ -96.125257165399404, 29.060552028563308 ], [ -96.133210167131452, 29.056375027425126 ], [ -96.133484167178679, 29.056231027481633 ], [ -96.13406216814596, 29.055926027784945 ], [ -96.139477169049854, 29.053082026574849 ], [ -96.14220416975941, 29.051634026624797 ], [ -96.14747617119933, 29.048910025450024 ], [ -96.147661171061927, 29.048799025642094 ], [ -96.149196171414999, 29.047936025460675 ], [ -96.149617171586272, 29.047708025239523 ], [ -96.153316172563876, 29.04570502437462 ], [ -96.15339817221269, 29.045663024617767 ], [ -96.157148173128846, 29.043759024559833 ], [ -96.157188172929878, 29.043737024196304 ], [ -96.165856175557067, 29.039095022614287 ], [ -96.169488175413761, 29.037150022781336 ], [ -96.171769176518367, 29.035928022402256 ], [ -96.174526176879183, 29.03446002127442 ], [ -96.17460817757771, 29.034416021280862 ], [ -96.176378177363205, 29.033475021456301 ], [ -96.185057179024369, 29.028885020466582 ], [ -96.185115179637037, 29.028855020247725 ], [ -96.190929180434239, 29.025816019770083 ], [ -96.191077180908792, 29.025738019600027 ], [ -96.192559180919375, 29.024961018951405 ], [ -96.198441182965809, 29.021788017998585 ], [ -96.207283184698056, 29.01711301713523 ], [ -96.213649185961586, 29.013747016374403 ], [ -96.218437187355676, 29.011215015643302 ], [ -96.226719189361589, 29.006835014100613 ], [ -96.228371189205262, 29.00596201375043 ], [ -96.229115189883842, 29.005535013600294 ], [ -96.229639189578222, 29.005236013541275 ], [ -96.229835189677488, 29.005098014238058 ], [ -96.230021190240336, 29.004999013427035 ], [ -96.231327190131864, 29.004306013438516 ], [ -96.232632190513357, 29.003613013572796 ], [ -96.235376191367962, 29.002157013414131 ], [ -96.238120192060563, 29.000701012322285 ], [ -96.238681191580326, 29.000401012949297 ], [ -96.238940191846439, 29.000262012361965 ], [ -96.240025191882879, 28.999665012384941 ], [ -96.25024919408807, 28.994041011066088 ], [ -96.257828196091836, 28.990023010021869 ], [ -96.259271196420883, 28.989262009421807 ], [ -96.260489197239906, 28.988620009584313 ], [ -96.261182197507907, 28.988304009216829 ], [ -96.261213197209813, 28.988290009383118 ], [ -96.263115197761181, 28.987425009212515 ], [ -96.263937198121013, 28.987051008909912 ], [ -96.265041197538793, 28.98655200881457 ], [ -96.265870198647534, 28.986174008749753 ], [ -96.270078199557148, 28.983950008232153 ], [ -96.270424199251025, 28.983765008486952 ], [ -96.270632199582138, 28.983655007845019 ], [ -96.270702199065866, 28.983618008570307 ], [ -96.274122200121411, 28.981812007431873 ], [ -96.277649201002419, 28.979949006939176 ], [ -96.277737200858596, 28.979902007222059 ], [ -96.278053201150598, 28.979735007089168 ], [ -96.286036203296732, 28.975519005996624 ], [ -96.287352202729252, 28.974822005602018 ], [ -96.294605204944787, 28.971004005074967 ], [ -96.294743205014512, 28.970932004567494 ], [ -96.295346204702213, 28.970615004938626 ], [ -96.295949205367563, 28.970297004406596 ], [ -96.296097205330014, 28.970219004217114 ], [ -96.297564205059729, 28.969458004020829 ], [ -96.297609205994064, 28.96940600449723 ], [ -96.297748205062319, 28.969247004722995 ], [ -96.297800205312328, 28.969189004381434 ], [ -96.29800620508685, 28.968954004380898 ], [ -96.298148205850026, 28.968882004113961 ], [ -96.307462207726019, 28.964168003007142 ], [ -96.309185207860708, 28.963296003059213 ], [ -96.309520207617823, 28.951460000480463 ], [ -96.309527207826804, 28.951327000072254 ], [ -96.309982207822358, 28.942578998849442 ], [ -96.310067207551995, 28.941039998348906 ], [ -96.310117207570954, 28.939976997896988 ], [ -96.31011920784438, 28.939932997644522 ], [ -96.31012020793338, 28.939908998291642 ], [ -96.310630207114684, 28.930116995576075 ], [ -96.310629206715475, 28.929973995928584 ], [ -96.310625207136937, 28.929480996134256 ], [ -96.310624206840899, 28.929341995840694 ], [ -96.310621207331536, 28.928971995299204 ], [ -96.310620207007346, 28.9288039958459 ], [ -96.310616206713931, 28.928322995889321 ], [ -96.310616207229415, 28.928294995903904 ], [ -96.310615207540195, 28.928272995923148 ], [ -96.31061520728538, 28.928258995920014 ], [ -96.310614206994885, 28.928146995553298 ], [ -96.310611207060077, 28.927777995054491 ], [ -96.310600206977483, 28.926342995127186 ], [ -96.310600207286484, 28.926331995327885 ], [ -96.310600207066443, 28.926319995453515 ], [ -96.310589206607716, 28.92490299481322 ], [ -96.310693206925578, 28.922593994559378 ], [ -96.31079420698228, 28.92033499356997 ], [ -96.311191206088182, 28.911482992406643 ], [ -96.31119920648419, 28.911297991596172 ], [ -96.311263206097394, 28.909868991924721 ], [ -96.311271206957102, 28.909692991699945 ], [ -96.311274206324839, 28.909629991451592 ], [ -96.311275206990516, 28.909609991451131 ], [ -96.311276206095059, 28.909588991354493 ], [ -96.311277206851756, 28.909572991614347 ], [ -96.311285206034015, 28.909393992063407 ], [ -96.311289206839092, 28.909300991183525 ], [ -96.311299206220014, 28.909079991478318 ], [ -96.311300206712858, 28.909053991988991 ], [ -96.311632206628246, 28.901654990144671 ], [ -96.311634206352181, 28.901604990361374 ], [ -96.311636206507416, 28.901551990392715 ], [ -96.311893205902223, 28.895855988703385 ], [ -96.311897205666028, 28.895764988815579 ], [ -96.312067205888837, 28.891976988462787 ], [ -96.312088205789621, 28.891509987715864 ], [ -96.312099206092071, 28.89126698782238 ], [ -96.31210420630218, 28.891154987854044 ], [ -96.312106206321886, 28.891126987689891 ], [ -96.312108206364201, 28.891083987457211 ], [ -96.312112205752442, 28.89099298755637 ], [ -96.312160205862341, 28.889924987736606 ], [ -96.31217420618654, 28.889605987645222 ], [ -96.312177205771761, 28.889537987961155 ], [ -96.312246206000225, 28.888030987371145 ], [ -96.31282220521372, 28.876932985068589 ], [ -96.312815205621249, 28.876715984665573 ], [ -96.312806205162033, 28.876388984495851 ], [ -96.312988205611717, 28.875265984544431 ], [ -96.31299420572941, 28.875173984414992 ], [ -96.313001205830929, 28.87506198426156 ], [ -96.31301220599461, 28.874897984926584 ], [ -96.31301320561559, 28.874880984187165 ], [ -96.313014205924134, 28.874868984688174 ], [ -96.313018205859507, 28.874812984342391 ], [ -96.313034205319127, 28.874571984559346 ], [ -96.31330720566217, 28.870407983425139 ], [ -96.313311205284009, 28.87034098325892 ], [ -96.313421204850059, 28.868048982703318 ], [ -96.313621205610517, 28.863870982431742 ], [ -96.313735205590845, 28.861487981897177 ], [ -96.31375120528665, 28.86113898141112 ], [ -96.313762205532541, 28.860915981843988 ], [ -96.314156205243634, 28.85272797973424 ], [ -96.314309204752988, 28.849549978946865 ], [ -96.31448920520053, 28.845799978113433 ], [ -96.314887204847722, 28.837586976731572 ], [ -96.315197204775771, 28.831361975339821 ], [ -96.315258204090085, 28.830134975144485 ], [ -96.315289204511473, 28.82950297540739 ], [ -96.315294204345065, 28.829397974956617 ], [ -96.315295204653921, 28.829372975518133 ], [ -96.315296203758948, 28.829352975475054 ], [ -96.315299204214114, 28.829301975086583 ], [ -96.315308203931579, 28.829115975371703 ], [ -96.315660204322683, 28.822063973179997 ], [ -96.315666203825629, 28.821937973542095 ], [ -96.315671204509798, 28.821833973178283 ], [ -96.316391203324017, 28.807407970457685 ], [ -96.316409203503824, 28.807060970010355 ], [ -96.316410203179643, 28.807033970436844 ], [ -96.316738203576804, 28.800482968878104 ], [ -96.316752203494758, 28.800233968781054 ], [ -96.31696520334657, 28.796560967945211 ], [ -96.317071203519802, 28.794731968343765 ], [ -96.317152203060189, 28.79333696770826 ], [ -96.317161203178571, 28.793184967532891 ], [ -96.317163203354269, 28.793148967756533 ], [ -96.317165202936479, 28.793111967904501 ], [ -96.317171203163852, 28.793018967720105 ], [ -96.317182203068327, 28.792826967506389 ], [ -96.317195202814716, 28.792601967701465 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 680, "Tract": "48321730400", "Area_SqMi": 24.519173033461815, "total_2009": 604, "total_2010": 699, "total_2011": 631, "total_2012": 1551, "total_2013": 1541, "total_2014": 1577, "total_2015": 1643, "total_2016": 1611, "total_2017": 1668, "total_2018": 2000, "total_2019": 2194, "total_2020": 2166, "age1": 422, "age2": 1295, "age3": 476, "earn1": 259, "earn2": 508, "earn3": 1426, "naics_s01": 39, "naics_s02": 1, "naics_s03": 17, "naics_s04": 60, "naics_s05": 809, "naics_s06": 2, "naics_s07": 63, "naics_s08": 3, "naics_s09": 2, "naics_s10": 42, "naics_s11": 14, "naics_s12": 46, "naics_s13": 2, "naics_s14": 6, "naics_s15": 646, "naics_s16": 248, "naics_s17": 35, "naics_s18": 145, "naics_s19": 13, "naics_s20": 0, "race1": 1775, "race2": 302, "race3": 21, "race4": 57, "race5": 4, "race6": 34, "ethnicity1": 1218, "ethnicity2": 975, "edu1": 393, "edu2": 484, "edu3": 576, "edu4": 318, "Shape_Length": 122236.27044332369, "Shape_Area": 683552579.18886435, "total_2021": 1859, "total_2022": 2193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.025791134048532, 28.903769999206265 ], [ -96.025940134352012, 28.903614999638449 ], [ -96.025682133926281, 28.903542999088131 ], [ -96.024416133198358, 28.90320699931333 ], [ -96.021282132590429, 28.90232799913521 ], [ -96.02077613246486, 28.90218799897713 ], [ -96.020530132718775, 28.902143999067896 ], [ -96.019579132580162, 28.901979999055317 ], [ -96.017132131855746, 28.901400999176097 ], [ -96.016326131680827, 28.901307999085422 ], [ -96.015440131405384, 28.90130699960757 ], [ -96.015104130634086, 28.901305999809779 ], [ -96.014918131438634, 28.901304999559841 ], [ -96.01458013065853, 28.901372999230954 ], [ -96.014482130573256, 28.901331999095383 ], [ -96.013800130707565, 28.901050999188428 ], [ -96.012553130601603, 28.900269999085712 ], [ -96.011827130286179, 28.899076999344569 ], [ -96.011725130027344, 28.898206998628392 ], [ -96.011746130015396, 28.897583999145123 ], [ -96.011951129839005, 28.891589997466507 ], [ -96.011876130099793, 28.889140996980746 ], [ -96.0118541295395, 28.888886997015078 ], [ -96.012041130146216, 28.886894996938221 ], [ -96.012804130149306, 28.883758995606581 ], [ -96.012964130247468, 28.882155995721472 ], [ -96.012879129554022, 28.88050999486865 ], [ -96.012717129520908, 28.877344994727952 ], [ -96.012749129596358, 28.875328994180755 ], [ -96.012907129113174, 28.874710994327927 ], [ -96.013610129418012, 28.873670994151375 ], [ -96.013742129924282, 28.873475993394237 ], [ -96.013874129721543, 28.872926993627264 ], [ -96.013435129456624, 28.871688993696079 ], [ -96.013150129152692, 28.87134499314725 ], [ -96.012786129043846, 28.871183993396404 ], [ -96.012734129089452, 28.871045993430556 ], [ -96.011896129470003, 28.871077992941 ], [ -96.005795127591483, 28.871310993465624 ], [ -96.004234127381963, 28.871121993892615 ], [ -96.00338312673459, 28.871325993744033 ], [ -96.002081126755755, 28.87136499351703 ], [ -96.000615126678099, 28.871161993932088 ], [ -96.000327126136142, 28.871121993471071 ], [ -95.999066125510993, 28.871098993240647 ], [ -95.996256124818416, 28.871047993631453 ], [ -95.987190122846513, 28.871250994470714 ], [ -95.98373012152814, 28.871295994143583 ], [ -95.98320212175885, 28.871302994591986 ], [ -95.978891120913602, 28.871426994025153 ], [ -95.971054118362304, 28.871428994405701 ], [ -95.969659118288902, 28.871752994277369 ], [ -95.966539117640039, 28.872783994899002 ], [ -95.965244117259246, 28.872930995071194 ], [ -95.957659115622278, 28.874940995603868 ], [ -95.957199115809615, 28.875062996143527 ], [ -95.950431114094755, 28.876841996704616 ], [ -95.950554113424872, 28.877230996498497 ], [ -95.950787113599745, 28.877967996641008 ], [ -95.95188111443187, 28.881375997361403 ], [ -95.953205115227689, 28.885504997931559 ], [ -95.953438114576244, 28.886275998135822 ], [ -95.953686114826681, 28.887007998760478 ], [ -95.953875115466886, 28.887823998286347 ], [ -95.95433711554449, 28.890984999112032 ], [ -95.954673115945184, 28.893286999958523 ], [ -95.955313116134562, 28.897637000877676 ], [ -95.955413116198258, 28.898371000871528 ], [ -95.955613115866754, 28.904648001627201 ], [ -95.95564011578611, 28.905343002117693 ], [ -95.95573211654596, 28.907709002137889 ], [ -95.955745116309686, 28.908032002811108 ], [ -95.955807116334668, 28.910244003312464 ], [ -95.955815116826756, 28.910479003552489 ], [ -95.955851116351596, 28.911504003179537 ], [ -95.95602011679884, 28.916360004680278 ], [ -95.956048116607803, 28.91714900464499 ], [ -95.956150116561986, 28.919977004955825 ], [ -95.956296116856691, 28.924061006155025 ], [ -95.956354117244075, 28.9246280058629 ], [ -95.956419117539355, 28.924954006038135 ], [ -95.956555117057363, 28.92534100579952 ], [ -95.956736117325192, 28.925727006676421 ], [ -95.957097116987129, 28.926419006088739 ], [ -95.958453117551585, 28.929060006808442 ], [ -95.960193118102296, 28.932408007253539 ], [ -95.962254118961553, 28.936357008368578 ], [ -95.963415119389055, 28.938635008390467 ], [ -95.96392412002605, 28.939624009133752 ], [ -95.964260120271817, 28.94027700873745 ], [ -95.966051120065586, 28.943715009331438 ], [ -95.966910120183101, 28.945363010419996 ], [ -95.967140121081783, 28.945822010208879 ], [ -95.967389121179366, 28.946318010218164 ], [ -95.967600120508095, 28.946739010048642 ], [ -95.967946121250279, 28.947395010128361 ], [ -95.968519120977632, 28.948484011025556 ], [ -95.968771121802121, 28.949092010443863 ], [ -95.968914121080715, 28.949560010811737 ], [ -95.968923121772193, 28.949697010701151 ], [ -95.969047121900033, 28.951787011660286 ], [ -95.969049121666814, 28.951867011194143 ], [ -95.969055121667125, 28.95206701162801 ], [ -95.969085121265493, 28.953174011957199 ], [ -95.969123121370785, 28.953315011860553 ], [ -95.969134121099216, 28.953764011845095 ], [ -95.96916412212677, 28.954730012022253 ], [ -95.969197121243681, 28.955776011858443 ], [ -95.969258121591892, 28.957218011957647 ], [ -95.969308122350938, 28.959075012980389 ], [ -95.969362122261018, 28.960636012757544 ], [ -95.969407122420165, 28.961892013499398 ], [ -95.969408122512533, 28.962023013316838 ], [ -95.969426122091932, 28.962615013178418 ], [ -95.969391121762357, 28.963110013144664 ], [ -95.969475122104726, 28.964236014148678 ], [ -95.969554122014742, 28.966765013878458 ], [ -95.969556121995353, 28.96684701452336 ], [ -95.96956412259533, 28.967163014599002 ], [ -95.969619122809206, 28.969436014732672 ], [ -95.969641122364635, 28.970193014837967 ], [ -95.969673122091308, 28.971169014969405 ], [ -95.969700122919079, 28.972386015599959 ], [ -95.969667122405085, 28.973361015359895 ], [ -95.9697351228873, 28.974657015764308 ], [ -95.969742122146656, 28.975612016277893 ], [ -95.969763122679652, 28.976243016190843 ], [ -95.969771123044367, 28.976474016444921 ], [ -95.969773122423277, 28.976525016489639 ], [ -95.969775122581098, 28.976589016488877 ], [ -95.96981112228103, 28.977691016883441 ], [ -95.969845123213332, 28.978721017073877 ], [ -95.969880122392297, 28.979764017312522 ], [ -95.96991512305172, 28.980844017049524 ], [ -95.969949122813432, 28.98187001737243 ], [ -95.970012122746752, 28.983008017306041 ], [ -95.971246123393371, 28.982971017354775 ], [ -95.972466123439787, 28.982928017695695 ], [ -95.973663124233411, 28.982902017370716 ], [ -95.974832123740683, 28.98286601785998 ], [ -95.976023124879703, 28.982856017211404 ], [ -95.977184124364356, 28.982820017329008 ], [ -95.978347124733887, 28.982779016934334 ], [ -95.979506125032771, 28.982753017701178 ], [ -95.980665125498348, 28.982704017099167 ], [ -95.981830125559512, 28.982679017564688 ], [ -95.982827125946542, 28.982628017272773 ], [ -95.983836126373419, 28.98257601710506 ], [ -95.986174127204407, 28.982511017137256 ], [ -95.98656512723818, 28.982506017195767 ], [ -95.986966127389238, 28.982515017042822 ], [ -95.987360127294366, 28.982537016739382 ], [ -95.987734127666116, 28.982570016786337 ], [ -95.990687128120697, 28.982924017067397 ], [ -95.992712129114537, 28.983167017037328 ], [ -95.992987128759438, 28.983200017212919 ], [ -95.993839129239873, 28.983298017102214 ], [ -95.994645128815847, 28.983405016488103 ], [ -95.995536129533264, 28.983519016931229 ], [ -95.995763129812801, 28.983548016728815 ], [ -95.996095129551676, 28.983591016771872 ], [ -95.999279130129366, 28.984036016777733 ], [ -95.999707130499061, 28.984096017006454 ], [ -95.99987513103757, 28.983923016796492 ], [ -96.000059130656453, 28.983735017060642 ], [ -96.000341130517839, 28.983444016722125 ], [ -96.000504130675679, 28.98324201662739 ], [ -96.000561130729949, 28.983172017090688 ], [ -96.000745131114755, 28.982945016941596 ], [ -96.000922130454555, 28.982795016463321 ], [ -96.001557130657375, 28.982441016878422 ], [ -96.002553131760365, 28.982109016705611 ], [ -96.003584131047006, 28.981874016675466 ], [ -96.004670132196296, 28.981690016601714 ], [ -96.007755132431839, 28.981328015797114 ], [ -96.007805132326922, 28.981324015690959 ], [ -96.008753132441953, 28.98112901616701 ], [ -96.00899413316688, 28.981036015969309 ], [ -96.009735133454825, 28.980651016150567 ], [ -96.010082133228963, 28.980398015400493 ], [ -96.010386132901047, 28.980122015408931 ], [ -96.011163132994838, 28.97941801561236 ], [ -96.011765133118516, 28.978643015534839 ], [ -96.012195133904697, 28.977592015128014 ], [ -96.012244133169091, 28.977053015398795 ], [ -96.012197133955112, 28.976514015046259 ], [ -96.012204133350352, 28.976486015379798 ], [ -96.012274133607747, 28.976202014730113 ], [ -96.012212133352534, 28.975993014515744 ], [ -96.012133132980921, 28.974940014413303 ], [ -96.011989133061675, 28.974193014304284 ], [ -96.011634133164151, 28.973158014615187 ], [ -96.011510133200147, 28.972372014315599 ], [ -96.011279132676066, 28.971568013853492 ], [ -96.011252132815073, 28.971244013623053 ], [ -96.011258132845171, 28.970919013958156 ], [ -96.011314133046284, 28.970667013596213 ], [ -96.011352133112567, 28.970494013861149 ], [ -96.011494132731841, 28.970080013479905 ], [ -96.011858133125472, 28.969354013228909 ], [ -96.012249132733146, 28.968848013520809 ], [ -96.012838133742108, 28.968347013711423 ], [ -96.013695133263951, 28.96785401318283 ], [ -96.015697134343469, 28.966948013167766 ], [ -96.015936133965596, 28.966814012596288 ], [ -96.016630134118898, 28.96642801243171 ], [ -96.01685313460122, 28.966219012946834 ], [ -96.016990134302688, 28.965918012898239 ], [ -96.017219133965682, 28.965416012711483 ], [ -96.017206134384224, 28.965058012456463 ], [ -96.017057134234449, 28.96453301196766 ], [ -96.016925134053736, 28.964263012741377 ], [ -96.016621134468252, 28.963638011992423 ], [ -96.014987133478812, 28.961178011900511 ], [ -96.014746133851133, 28.960541011177927 ], [ -96.014601133335063, 28.960147011578446 ], [ -96.014468133114406, 28.959787011112898 ], [ -96.014462132816817, 28.958961011553225 ], [ -96.014745133200989, 28.958482010729341 ], [ -96.015526133963149, 28.95751101055026 ], [ -96.016019133738283, 28.95680401086533 ], [ -96.016182133229009, 28.956473010306055 ], [ -96.016409133982791, 28.955444010453839 ], [ -96.016471133565503, 28.955165010452795 ], [ -96.01636113331891, 28.954598010261876 ], [ -96.016090133818054, 28.954113009935654 ], [ -96.015079133249543, 28.953079009886995 ], [ -96.014853133342328, 28.952724009817661 ], [ -96.014465133546253, 28.952234010067802 ], [ -96.014365132540604, 28.952084010182247 ], [ -96.013824133062457, 28.951269009346387 ], [ -96.013454132357623, 28.950390009910393 ], [ -96.013251132785186, 28.950035009045216 ], [ -96.013076133008667, 28.949296009285504 ], [ -96.013043133024965, 28.948756008807315 ], [ -96.013099132219111, 28.948108008692657 ], [ -96.01327513231189, 28.947591008776872 ], [ -96.013948133034063, 28.946196008935146 ], [ -96.014737132316952, 28.94510300871827 ], [ -96.014982132685745, 28.944641007985812 ], [ -96.015089133309104, 28.944322008563539 ], [ -96.015261132698328, 28.943814007882992 ], [ -96.015329133113454, 28.943204007833444 ], [ -96.015293133047621, 28.942821008166586 ], [ -96.01528213282765, 28.942702008038008 ], [ -96.014988132741266, 28.942272007599733 ], [ -96.014382132475063, 28.941843008188957 ], [ -96.01357413269352, 28.941351007333637 ], [ -96.011683131577541, 28.940677007819215 ], [ -96.010988131342074, 28.940371007299319 ], [ -96.010426131141557, 28.939953007860961 ], [ -96.010360131373076, 28.939862007626374 ], [ -96.010097131192552, 28.939497007010516 ], [ -96.009965131426029, 28.93905000693255 ], [ -96.009608131596764, 28.938482007013782 ], [ -96.009478131558325, 28.938141007001803 ], [ -96.009361131627699, 28.937317007090673 ], [ -96.009363130967742, 28.936667006754984 ], [ -96.009430131280865, 28.93616500641193 ], [ -96.009668130923473, 28.93547600685644 ], [ -96.010181130780751, 28.934615006240971 ], [ -96.010594131660639, 28.933750006360913 ], [ -96.011335131524177, 28.932755006248993 ], [ -96.011932131103322, 28.932067005476501 ], [ -96.012039131413687, 28.931873006192358 ], [ -96.012197131323859, 28.931305005766436 ], [ -96.012312131724613, 28.930893005169917 ], [ -96.012418131283724, 28.93028700515773 ], [ -96.012378131581912, 28.929566005248898 ], [ -96.012095131826428, 28.928775004755881 ], [ -96.011859131821126, 28.928357005243207 ], [ -96.011511131431249, 28.927320004667422 ], [ -96.011470130922774, 28.926769005063548 ], [ -96.011426130719101, 28.926171004243177 ], [ -96.011521131475504, 28.92574700441514 ], [ -96.01193813179475, 28.924924004384611 ], [ -96.012421130925645, 28.924297004158099 ], [ -96.01286413120026, 28.92387200434769 ], [ -96.013446131234772, 28.9235350039176 ], [ -96.014191131440541, 28.923349003885765 ], [ -96.014524131347628, 28.923211004313366 ], [ -96.015448132469402, 28.92274600343778 ], [ -96.015946132187096, 28.922334003826379 ], [ -96.016420132509396, 28.921904003883988 ], [ -96.016433131879566, 28.921895003936363 ], [ -96.016689131879019, 28.921479003857112 ], [ -96.016852132669754, 28.921035003740215 ], [ -96.01682313231602, 28.920352003646805 ], [ -96.016476132547183, 28.919351002745245 ], [ -96.015933131720701, 28.918260002458712 ], [ -96.015598131870519, 28.917766002627467 ], [ -96.015357131865997, 28.917232003037299 ], [ -96.01532513208727, 28.917162003075589 ], [ -96.015100131969916, 28.916209002632066 ], [ -96.015053131985766, 28.915561002674465 ], [ -96.015117132030639, 28.915059002246757 ], [ -96.015311131640004, 28.914623001758077 ], [ -96.015947132340912, 28.913697002101966 ], [ -96.016160132156969, 28.913530001535079 ], [ -96.016380131768486, 28.9132260015718 ], [ -96.01660613179186, 28.912801001628292 ], [ -96.017048131648878, 28.911524001512383 ], [ -96.016985131757906, 28.911137000982155 ], [ -96.017036131677045, 28.910926000935369 ], [ -96.017379132544136, 28.910115001570386 ], [ -96.017614132110808, 28.909777000927484 ], [ -96.017813132492918, 28.909595001397079 ], [ -96.018619131895463, 28.909169000838698 ], [ -96.019082131949887, 28.909026000463317 ], [ -96.019997132388397, 28.908841001013037 ], [ -96.020464133206758, 28.90861800070623 ], [ -96.020995132661625, 28.908433000394854 ], [ -96.021802132820071, 28.907939000399821 ], [ -96.022242133703287, 28.907615000031392 ], [ -96.023841134035109, 28.906165999989447 ], [ -96.025113134001671, 28.904791999900212 ], [ -96.025791134048532, 28.903769999206265 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 681, "Tract": "48321730100", "Area_SqMi": 26.933279471955426, "total_2009": 759, "total_2010": 744, "total_2011": 689, "total_2012": 530, "total_2013": 484, "total_2014": 541, "total_2015": 501, "total_2016": 439, "total_2017": 487, "total_2018": 486, "total_2019": 505, "total_2020": 495, "age1": 112, "age2": 236, "age3": 141, "earn1": 118, "earn2": 189, "earn3": 182, "naics_s01": 28, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 5, "naics_s06": 13, "naics_s07": 10, "naics_s08": 4, "naics_s09": 14, "naics_s10": 13, "naics_s11": 56, "naics_s12": 8, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 136, "naics_s17": 18, "naics_s18": 124, "naics_s19": 20, "naics_s20": 3, "race1": 370, "race2": 81, "race3": 3, "race4": 27, "race5": 0, "race6": 8, "ethnicity1": 319, "ethnicity2": 170, "edu1": 82, "edu2": 125, "edu3": 116, "edu4": 54, "Shape_Length": 155216.9622521532, "Shape_Area": 750853734.90960312, "total_2021": 467, "total_2022": 489 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.043009146085794, 29.099292039397099 ], [ -96.043066146473407, 29.099086038795573 ], [ -96.042728146278762, 29.098229039000486 ], [ -96.042414146535492, 29.097851038714936 ], [ -96.041989146542747, 29.097568038849861 ], [ -96.041265146235531, 29.097231039101612 ], [ -96.040750146100564, 29.097112038935265 ], [ -96.040137145235491, 29.097124038837261 ], [ -96.039052144918912, 29.096937038590461 ], [ -96.038441145523933, 29.096983039270068 ], [ -96.03794914487068, 29.096965039332257 ], [ -96.037401145022059, 29.0968150384689 ], [ -96.037341144545721, 29.096787038678453 ], [ -96.036784145066918, 29.096529038554809 ], [ -96.036665144945673, 29.096432038896921 ], [ -96.036150144254435, 29.095612038455481 ], [ -96.035620144645904, 29.095018038667426 ], [ -96.03544114449177, 29.094578038720943 ], [ -96.035410143800348, 29.094038038465502 ], [ -96.035724144660421, 29.091736038319652 ], [ -96.035716144253414, 29.091276037505256 ], [ -96.035713143901333, 29.091087037809601 ], [ -96.035752144654779, 29.090838037792302 ], [ -96.035684144370833, 29.09063103737698 ], [ -96.035074144233818, 29.08995703754529 ], [ -96.033988143896337, 29.089135037844631 ], [ -96.033254143422994, 29.088739037293827 ], [ -96.032191143060714, 29.088362037640866 ], [ -96.031265142874091, 29.087978037559061 ], [ -96.030706143011244, 29.087677037631028 ], [ -96.030259142264228, 29.087256037100857 ], [ -96.030001143046775, 29.086767037076545 ], [ -96.029841142953188, 29.086246036929243 ], [ -96.02982414201297, 29.085813036722271 ], [ -96.029882142304658, 29.08520203688002 ], [ -96.030330142247692, 29.084043036408641 ], [ -96.030768143066709, 29.083236035986086 ], [ -96.031449142588897, 29.082125036516899 ], [ -96.031515143023071, 29.081909035866893 ], [ -96.031566142615972, 29.081743035841946 ], [ -96.031519142945143, 29.08135003576853 ], [ -96.031122142314672, 29.080137035326935 ], [ -96.031025142701779, 29.079938035993479 ], [ -96.03071114206162, 29.079563035500264 ], [ -96.030278142491269, 29.079180035684335 ], [ -96.02995014236798, 29.078963035162609 ], [ -96.028907141950825, 29.07842903569529 ], [ -96.02809714216562, 29.078081035573479 ], [ -96.027322141716937, 29.077848035566113 ], [ -96.027037141734382, 29.077704035107665 ], [ -96.026737141559806, 29.077480035383005 ], [ -96.026380140850932, 29.077214034777583 ], [ -96.025795141571564, 29.076474034937419 ], [ -96.025362141239583, 29.076144035325434 ], [ -96.025208141397897, 29.075930034750758 ], [ -96.025080141199297, 29.075613035358256 ], [ -96.024549140445259, 29.075096034869791 ], [ -96.024395140336338, 29.074946034401826 ], [ -96.024105141057063, 29.074747034650283 ], [ -96.023440140371463, 29.07447103480213 ], [ -96.021840139817726, 29.074169034498784 ], [ -96.019792139358216, 29.074125034772951 ], [ -96.0189961387794, 29.074294035261509 ], [ -96.017604138453152, 29.074905035473538 ], [ -96.016910138768523, 29.075125035194951 ], [ -96.016301138790851, 29.075200034974785 ], [ -96.015935138563009, 29.075160035448523 ], [ -96.01564113874764, 29.075049035127432 ], [ -96.015398137923938, 29.074752034628762 ], [ -96.014897138031145, 29.074331034972914 ], [ -96.014584138388443, 29.073913034501949 ], [ -96.014499138155244, 29.073304035016587 ], [ -96.014556137715701, 29.072801034324716 ], [ -96.014694137990901, 29.072462034892499 ], [ -96.014950138374374, 29.072070034468506 ], [ -96.01545113828152, 29.071204033970812 ], [ -96.016213138139577, 29.070660034509348 ], [ -96.016782138143938, 29.070372033674566 ], [ -96.017471138688194, 29.070301033846871 ], [ -96.018040139039684, 29.070100034440191 ], [ -96.018912138835404, 29.069563033779087 ], [ -96.019378138762761, 29.069210033435425 ], [ -96.02037513883792, 29.068113033582922 ], [ -96.020936139325556, 29.067315033582666 ], [ -96.021191139227085, 29.066708032782621 ], [ -96.021212139944595, 29.06642003291272 ], [ -96.021161139484207, 29.066024033497889 ], [ -96.021142139575446, 29.065878033308064 ], [ -96.02102513951823, 29.065541032989273 ], [ -96.020413139307308, 29.064912032677981 ], [ -96.02006013946891, 29.064666033276541 ], [ -96.019389138731839, 29.064401032601413 ], [ -96.018868138787653, 29.064003033082578 ], [ -96.018296138240828, 29.062971032991125 ], [ -96.018236139021525, 29.062530032719621 ], [ -96.018228138288421, 29.062473032633839 ], [ -96.018383138919987, 29.062178032226019 ], [ -96.018731138851706, 29.061780032098955 ], [ -96.018890138747054, 29.061667032211975 ], [ -96.019455139126578, 29.061458031999013 ], [ -96.020947138803066, 29.060706032032574 ], [ -96.022675139802388, 29.060141032174482 ], [ -96.023048139239435, 29.05988103175418 ], [ -96.023110139982833, 29.059838031676943 ], [ -96.023340140214501, 29.059456031514841 ], [ -96.023523140085246, 29.058754031535887 ], [ -96.023530139264849, 29.057962031535823 ], [ -96.023326140047871, 29.057454031091254 ], [ -96.023109139479487, 29.057192031142474 ], [ -96.022543139715296, 29.056778031484068 ], [ -96.022291139054161, 29.056657030923144 ], [ -96.021673138860876, 29.056468031402698 ], [ -96.020546139102478, 29.056279031354332 ], [ -96.019525138191696, 29.056348030850508 ], [ -96.018120138089458, 29.056600030820899 ], [ -96.017588138221186, 29.056619031451145 ], [ -96.01636513775756, 29.056507031582637 ], [ -96.015524137496101, 29.05634603156042 ], [ -96.014836137187757, 29.056114031589086 ], [ -96.014313136981187, 29.05582903102794 ], [ -96.013741137064471, 29.055420031324697 ], [ -96.012828136612583, 29.054644031028332 ], [ -96.012609137316502, 29.054382030595775 ], [ -96.012406136226858, 29.053989031053813 ], [ -96.012315136445039, 29.05345403110676 ], [ -96.012327136941039, 29.053130030372881 ], [ -96.012457137073397, 29.052528030398751 ], [ -96.01254313667296, 29.052365030594199 ], [ -96.012800137198212, 29.05203803071457 ], [ -96.01326013636799, 29.051679030089641 ], [ -96.013916137416771, 29.051382029916347 ], [ -96.01490413727835, 29.051145030639717 ], [ -96.014937137462013, 29.051132030101975 ], [ -96.015540137559896, 29.050895030018491 ], [ -96.016165137690493, 29.050554029705619 ], [ -96.016416138009149, 29.050343029806143 ], [ -96.016786138007475, 29.050031029688849 ], [ -96.017061137892952, 29.049673030034747 ], [ -96.017465138011431, 29.048806029678232 ], [ -96.017689137709127, 29.048001029934721 ], [ -96.017720138175392, 29.047227029021588 ], [ -96.017742137550513, 29.04666802903099 ], [ -96.018103138114213, 29.04582402909627 ], [ -96.018237138296115, 29.045221028841425 ], [ -96.01836013765319, 29.044993029095274 ], [ -96.018646137644382, 29.044641029077106 ], [ -96.019061138350025, 29.044294028918458 ], [ -96.019331137982846, 29.043978028998655 ], [ -96.020303138310226, 29.04337402872051 ], [ -96.020780138496903, 29.043167028553409 ], [ -96.021887138343899, 29.042548028509714 ], [ -96.023387138764008, 29.041803027879304 ], [ -96.023701139004885, 29.041612027598269 ], [ -96.023859139206166, 29.04151602828701 ], [ -96.024215139465227, 29.041169027946584 ], [ -96.024776139689578, 29.040295027876965 ], [ -96.024969139266375, 29.039745027600915 ], [ -96.025017138914393, 29.039242027465416 ], [ -96.024974139794651, 29.038702027276432 ], [ -96.024737138900221, 29.037751026907607 ], [ -96.024437139352102, 29.037003026763159 ], [ -96.02432413869947, 29.036582027344135 ], [ -96.02419113853955, 29.036318027033527 ], [ -96.023745138788911, 29.035803026838934 ], [ -96.023308139170425, 29.035477026904786 ], [ -96.022023138472974, 29.034769026645005 ], [ -96.021495138122702, 29.03453102689522 ], [ -96.021179137944102, 29.034455027018776 ], [ -96.019789137829434, 29.034393026654325 ], [ -96.017924136926425, 29.034599026851005 ], [ -96.017757137026479, 29.034594027180763 ], [ -96.016983137436284, 29.034569026773141 ], [ -96.016023136805885, 29.034383026314703 ], [ -96.015612136299765, 29.034221026583317 ], [ -96.015119136223518, 29.033898026736882 ], [ -96.014745136288681, 29.033428026275104 ], [ -96.014110135904119, 29.031864026097619 ], [ -96.014057136000119, 29.031732026482761 ], [ -96.013984136355106, 29.031087026471845 ], [ -96.013986136540041, 29.030220026365008 ], [ -96.014154136140576, 29.028893025781695 ], [ -96.014147135620789, 29.028447025590214 ], [ -96.013995136419837, 29.028048025320228 ], [ -96.013730136146762, 29.027352025590751 ], [ -96.013623136287492, 29.026856025647508 ], [ -96.013274136042526, 29.025855025471362 ], [ -96.013142135385152, 29.025330025235355 ], [ -96.012981135731238, 29.024693025265776 ], [ -96.012973135415109, 29.023829024353152 ], [ -96.013069135997412, 29.023515024783741 ], [ -96.013270135808881, 29.023121024118517 ], [ -96.013614136135033, 29.022765024693335 ], [ -96.014037135362742, 29.022543024063637 ], [ -96.014305135502013, 29.022454024023165 ], [ -96.015544136509419, 29.022211024015551 ], [ -96.016153136411205, 29.02213602454983 ], [ -96.017694136478937, 29.022039024290503 ], [ -96.01990613777977, 29.021953023636204 ], [ -96.021281137484152, 29.021768023793545 ], [ -96.021736137920442, 29.021605024154663 ], [ -96.021969137839392, 29.021411024114158 ], [ -96.022091137902819, 29.021309024160171 ], [ -96.022220137524499, 29.021006023894302 ], [ -96.022306137899818, 29.020512023715668 ], [ -96.02217913789903, 29.020064023499682 ], [ -96.021796137300186, 29.019643023432433 ], [ -96.020970137268051, 29.019175023805932 ], [ -96.020744137727334, 29.019090023266536 ], [ -96.020257136858362, 29.019040023252224 ], [ -96.018548137242206, 29.019011023947773 ], [ -96.017623136248261, 29.018880023952637 ], [ -96.017297136419643, 29.018834023281403 ], [ -96.015770135821228, 29.018419023100531 ], [ -96.014959135629795, 29.018151023075152 ], [ -96.014313136230172, 29.017937023663848 ], [ -96.012711135478412, 29.017637023599999 ], [ -96.011736135234372, 29.01736202325489 ], [ -96.010359135121007, 29.01716702315991 ], [ -96.0090161342127, 29.016891022991523 ], [ -96.008766134589891, 29.016774023224059 ], [ -96.008548133866157, 29.016672023221119 ], [ -96.007920134404586, 29.016269023415809 ], [ -96.007701133516022, 29.015922023302775 ], [ -96.00743413346332, 29.015051023480979 ], [ -96.007442133867784, 29.014439022899474 ], [ -96.007126133991818, 29.011310022417774 ], [ -96.007078134002469, 29.010926022101074 ], [ -96.006974133667001, 29.010652021891836 ], [ -96.006510133433324, 29.010103022486579 ], [ -96.006275133843047, 29.009835022225356 ], [ -96.006021133773274, 29.009423021812598 ], [ -96.005081133116931, 29.008617022212285 ], [ -96.004297132768542, 29.008136021500476 ], [ -96.004107132250255, 29.008019021391906 ], [ -96.00355213282927, 29.007487021468791 ], [ -96.003144132132803, 29.006903021919552 ], [ -96.002777132707266, 29.006258021092652 ], [ -96.002397132107248, 29.005079021046541 ], [ -96.002372131989745, 29.004539020755566 ], [ -96.002264131908518, 29.004081021336777 ], [ -96.002232131522945, 29.003109021028287 ], [ -96.002187131643367, 29.002677020302997 ], [ -96.002172131939162, 29.002535020912884 ], [ -96.001944131981546, 29.001658020298269 ], [ -96.001626132204763, 29.000802020238918 ], [ -96.001569131616847, 29.000703019845556 ], [ -96.001179131243148, 29.000031019792047 ], [ -96.001139131306559, 28.999903019744249 ], [ -96.000993131758847, 28.999440019931541 ], [ -96.000773131777791, 28.99901501954924 ], [ -96.000659131774157, 28.998228019395924 ], [ -96.000673131128423, 28.997614019276238 ], [ -96.000723131051998, 28.997366019723433 ], [ -96.00106013186199, 28.996286019736726 ], [ -96.001686131198525, 28.994605019377154 ], [ -96.001923131311003, 28.993629019140915 ], [ -96.001920131318201, 28.992943018380238 ], [ -96.001733131431152, 28.991874018381235 ], [ -96.00124113145003, 28.990727018211814 ], [ -96.000699131484666, 28.989841018027523 ], [ -96.000385131177111, 28.98932901819672 ], [ -95.999580130536145, 28.987748017505975 ], [ -95.999179130467525, 28.987078017313753 ], [ -95.999068130558285, 28.986760017558261 ], [ -95.999162130094618, 28.986474017271576 ], [ -95.99907013030132, 28.985621017150265 ], [ -95.999221130320137, 28.985079016792319 ], [ -95.999297130329879, 28.984810016811519 ], [ -95.99967413076395, 28.984129016827069 ], [ -95.999707130499061, 28.984096017006454 ], [ -95.999279130129366, 28.984036016777733 ], [ -95.996095129551676, 28.983591016771872 ], [ -95.995763129812801, 28.983548016728815 ], [ -95.995536129533264, 28.983519016931229 ], [ -95.994645128815847, 28.983405016488103 ], [ -95.993839129239873, 28.983298017102214 ], [ -95.992987128759438, 28.983200017212919 ], [ -95.992712129114537, 28.983167017037328 ], [ -95.990687128120697, 28.982924017067397 ], [ -95.987734127666116, 28.982570016786337 ], [ -95.987360127294366, 28.982537016739382 ], [ -95.986966127389238, 28.982515017042822 ], [ -95.98656512723818, 28.982506017195767 ], [ -95.986174127204407, 28.982511017137256 ], [ -95.983836126373419, 28.98257601710506 ], [ -95.982827125946542, 28.982628017272773 ], [ -95.981830125559512, 28.982679017564688 ], [ -95.980665125498348, 28.982704017099167 ], [ -95.979506125032771, 28.982753017701178 ], [ -95.978347124733887, 28.982779016934334 ], [ -95.977184124364356, 28.982820017329008 ], [ -95.976023124879703, 28.982856017211404 ], [ -95.974832123740683, 28.98286601785998 ], [ -95.973663124233411, 28.982902017370716 ], [ -95.972466123439787, 28.982928017695695 ], [ -95.971246123393371, 28.982971017354775 ], [ -95.970012122746752, 28.983008017306041 ], [ -95.970084122917044, 28.984080017497188 ], [ -95.97010212305328, 28.984607017833316 ], [ -95.970117122930631, 28.985070017967946 ], [ -95.970116123456563, 28.985092017992702 ], [ -95.970092123289376, 28.986167018231232 ], [ -95.970126122928249, 28.987174018364307 ], [ -95.9701601228805, 28.988214018326612 ], [ -95.970196123773007, 28.98928601932926 ], [ -95.970297123498852, 28.990295019537683 ], [ -95.970332123278453, 28.991288019516038 ], [ -95.970397123423027, 28.992292019210119 ], [ -95.970459123904462, 28.993557019515936 ], [ -95.970497123517376, 28.994260020098711 ], [ -95.970665123445755, 28.995114020483296 ], [ -95.970731123392682, 28.995451020587531 ], [ -95.970835123364694, 28.995942020230402 ], [ -95.970961123864214, 28.996540020541012 ], [ -95.971032123674959, 28.997003020159223 ], [ -95.971448123849768, 28.999065020663473 ], [ -95.971681124021771, 29.000217021470277 ], [ -95.971824124301151, 29.000967021626071 ], [ -95.97184712392415, 29.001081021499445 ], [ -95.972052124110959, 29.002102021828822 ], [ -95.972263124638019, 29.003225021945241 ], [ -95.97248112440262, 29.004342022122966 ], [ -95.972615124524992, 29.004986022394995 ], [ -95.972651124868605, 29.005159022480612 ], [ -95.972857124573295, 29.006110021872232 ], [ -95.973048125008361, 29.007145022725467 ], [ -95.973447125219081, 29.009245023094028 ], [ -95.973471125307668, 29.009420022665751 ], [ -95.973539125452362, 29.009902023046479 ], [ -95.973650124951575, 29.01070102342738 ], [ -95.973702124676592, 29.011068023595442 ], [ -95.97385412539478, 29.012114023174732 ], [ -95.974058125021884, 29.013581024038569 ], [ -95.974142125014396, 29.014222024201754 ], [ -95.974208125566562, 29.015120024070118 ], [ -95.974208125157887, 29.015406024587389 ], [ -95.974198125112622, 29.015551024658254 ], [ -95.97421012512126, 29.015722023990595 ], [ -95.974253125394085, 29.016575024504299 ], [ -95.974278125396111, 29.017084024445651 ], [ -95.974297125179433, 29.017466024684254 ], [ -95.97443112531937, 29.021364025738599 ], [ -95.974465125298224, 29.022268025483328 ], [ -95.974481125559791, 29.022691025880473 ], [ -95.974487125874248, 29.022918025945685 ], [ -95.974493125880315, 29.023114025557256 ], [ -95.974489126190662, 29.023505025431891 ], [ -95.974467126060802, 29.023919026016937 ], [ -95.974429126230689, 29.024318026321712 ], [ -95.974411125677207, 29.024473026231519 ], [ -95.97387612596863, 29.029030026833706 ], [ -95.973875125908265, 29.029040027055263 ], [ -95.97385512564982, 29.029209027458627 ], [ -95.97330412602534, 29.033602027584525 ], [ -95.972412125567644, 29.040428029206154 ], [ -95.97218212637172, 29.042281030180487 ], [ -95.972061126265189, 29.043260029870304 ], [ -95.972020125571603, 29.043603029661544 ], [ -95.971907126482037, 29.044450029826251 ], [ -95.970354125632809, 29.05603803292906 ], [ -95.970046126258936, 29.058348033030665 ], [ -95.969983126375325, 29.060420033300502 ], [ -95.970028126597683, 29.06184203422108 ], [ -95.97039112596994, 29.063936034595997 ], [ -95.971118127246299, 29.068103035248029 ], [ -95.972134127569674, 29.073576036235746 ], [ -95.972367127796815, 29.074831036347547 ], [ -95.973609127666805, 29.081517037541872 ], [ -95.973798128187966, 29.082537037776685 ], [ -95.974732128845247, 29.087146038956043 ], [ -95.974825128672748, 29.087892039049382 ], [ -95.975028128747851, 29.089485039841673 ], [ -95.97553712921102, 29.091899040212326 ], [ -95.975900128690725, 29.093771040530697 ], [ -95.975995129192484, 29.094565040041829 ], [ -95.976860129509248, 29.099043041257541 ], [ -95.977277129316562, 29.101190041581745 ], [ -95.978159130269404, 29.105889043100351 ], [ -95.978464130636453, 29.107720042993137 ], [ -95.978494130627837, 29.10781104278978 ], [ -95.978880130830248, 29.109837043154815 ], [ -95.978954131092166, 29.110208043258901 ], [ -95.978971130405199, 29.110295043488193 ], [ -95.979262130342491, 29.111760043829712 ], [ -95.979459130348133, 29.112909044390214 ], [ -95.979818130732738, 29.114940044046172 ], [ -95.980313131652196, 29.11763504520539 ], [ -95.980677131765503, 29.119542045283595 ], [ -95.980794131028887, 29.120134045731849 ], [ -95.981110131117191, 29.12161104558475 ], [ -95.981586131565535, 29.123931046268979 ], [ -95.98191313233427, 29.125365046319104 ], [ -95.982077132280807, 29.126149046879856 ], [ -95.98419613254768, 29.136271048820962 ], [ -95.984452133117031, 29.136128048854747 ], [ -95.998297135875092, 29.12839704676546 ], [ -95.998311136360357, 29.128393046852725 ], [ -95.998330135784457, 29.128383046981533 ], [ -96.000241136259447, 29.127459046445662 ], [ -96.003097137714548, 29.125900045877565 ], [ -96.004279137895892, 29.125257046171889 ], [ -96.008743138190624, 29.122768045552633 ], [ -96.010427139046612, 29.121829045120489 ], [ -96.023353141942422, 29.114786043308406 ], [ -96.030455143410222, 29.110918041888503 ], [ -96.032533144369509, 29.109823041786353 ], [ -96.034334145059944, 29.108874041621764 ], [ -96.034607144822644, 29.108730041323433 ], [ -96.034957145214278, 29.108543041791734 ], [ -96.035307144427676, 29.10835504122776 ], [ -96.036450145270351, 29.10774004153998 ], [ -96.037593145517206, 29.107125041329148 ], [ -96.037965145099051, 29.106925041046196 ], [ -96.038337145260414, 29.106725040668554 ], [ -96.038578145346008, 29.106595040680933 ], [ -96.038625145163977, 29.106570040766069 ], [ -96.038650145160574, 29.106557041166479 ], [ -96.03840114503501, 29.106276040593325 ], [ -96.037528144825146, 29.104969040125745 ], [ -96.037405145570375, 29.104785040224975 ], [ -96.03696914519027, 29.104009040020813 ], [ -96.036886144838917, 29.103694040487706 ], [ -96.036886144578958, 29.103261039946904 ], [ -96.037572145141866, 29.102454039983254 ], [ -96.037781145309012, 29.102143039575523 ], [ -96.038270145539499, 29.101609039428563 ], [ -96.038671145768674, 29.101249039349355 ], [ -96.039579145950299, 29.100831039918411 ], [ -96.040071145663447, 29.100652039455575 ], [ -96.041290145599518, 29.100350039598776 ], [ -96.042647146754163, 29.099894039013801 ], [ -96.042829145935769, 29.099591039637268 ], [ -96.043009146085794, 29.099292039397099 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 682, "Tract": "48321730600", "Area_SqMi": 321.81654074825923, "total_2009": 1761, "total_2010": 1665, "total_2011": 1129, "total_2012": 903, "total_2013": 942, "total_2014": 1111, "total_2015": 1126, "total_2016": 859, "total_2017": 878, "total_2018": 766, "total_2019": 685, "total_2020": 709, "age1": 150, "age2": 322, "age3": 173, "earn1": 186, "earn2": 264, "earn3": 195, "naics_s01": 98, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 96, "naics_s06": 21, "naics_s07": 120, "naics_s08": 7, "naics_s09": 13, "naics_s10": 13, "naics_s11": 14, "naics_s12": 26, "naics_s13": 0, "naics_s14": 57, "naics_s15": 0, "naics_s16": 61, "naics_s17": 0, "naics_s18": 101, "naics_s19": 1, "naics_s20": 0, "race1": 543, "race2": 35, "race3": 14, "race4": 43, "race5": 1, "race6": 9, "ethnicity1": 346, "ethnicity2": 299, "edu1": 125, "edu2": 136, "edu3": 145, "edu4": 89, "Shape_Length": 461944.18520014861, "Shape_Area": 8971694361.5472546, "total_2021": 684, "total_2022": 645 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.366536201783561, 28.445057894573921 ], [ -96.367554201619669, 28.440469892880486 ], [ -96.349286198199209, 28.450611896155493 ], [ -96.349190197439754, 28.450709895835033 ], [ -96.349113198048911, 28.450707896371433 ], [ -96.348366197733228, 28.451121895815117 ], [ -96.348114197143545, 28.45157189591843 ], [ -96.347591197096861, 28.452104896559849 ], [ -96.347325197312514, 28.452424896256105 ], [ -96.34686619668696, 28.452808896863882 ], [ -96.346323197082384, 28.453023896678197 ], [ -96.345727196938768, 28.453304896596464 ], [ -96.344852196528151, 28.453220896173427 ], [ -96.344565196323671, 28.453089896294934 ], [ -96.343947195935286, 28.452552896899409 ], [ -96.329314192731502, 28.463389899093777 ], [ -96.321863191347006, 28.468580900826289 ], [ -96.320764191148356, 28.469398900962631 ], [ -96.318055191073739, 28.471099900924209 ], [ -96.272031180304566, 28.500281908372262 ], [ -96.271178179410555, 28.500281908831841 ], [ -96.250254174731424, 28.513201911684398 ], [ -96.25025417538788, 28.513336911773713 ], [ -96.232631171119493, 28.524257914922565 ], [ -96.222819169115269, 28.530336916588986 ], [ -96.125251147047052, 28.590856931462518 ], [ -96.051133128892701, 28.625274941243848 ], [ -96.012886120563678, 28.642725946417183 ], [ -96.01135211995306, 28.643431946254179 ], [ -96.011908119784408, 28.644561946204242 ], [ -96.01235812030184, 28.64517894642325 ], [ -96.012370119957126, 28.64587294635276 ], [ -96.012152120142133, 28.646631947287887 ], [ -96.011497120162829, 28.647177946529141 ], [ -96.011216119691255, 28.64740294738931 ], [ -96.010875119816731, 28.647766947458475 ], [ -96.010838120010419, 28.647805947331609 ], [ -96.01059712025129, 28.648140947160087 ], [ -96.008969119927045, 28.651012947821446 ], [ -96.008354119517321, 28.651946947682191 ], [ -96.008207119078108, 28.653701948400755 ], [ -96.008208119785309, 28.654891948247272 ], [ -96.008259119647946, 28.655574949249946 ], [ -96.008132119481644, 28.656030948801806 ], [ -96.008015118934438, 28.656220949019161 ], [ -96.008131119240673, 28.656566948755778 ], [ -96.008179119766837, 28.656985948996564 ], [ -96.008165119304522, 28.658718949881177 ], [ -96.008263119924692, 28.659835949490486 ], [ -96.008510120046864, 28.661007949622928 ], [ -96.008858119388933, 28.662008950536183 ], [ -96.009127120108843, 28.662509949840533 ], [ -96.009512120070681, 28.663226950787223 ], [ -96.009558119710334, 28.663312950158286 ], [ -96.009965120486413, 28.663896950326816 ], [ -96.010344120082095, 28.664224950586032 ], [ -96.010881120890275, 28.664463950459997 ], [ -96.011086120760481, 28.664688950681875 ], [ -96.011234121088592, 28.664975950371787 ], [ -96.011306120714067, 28.665114950531358 ], [ -96.011661120636063, 28.665509951078963 ], [ -96.011553120247186, 28.665641950895356 ], [ -96.011422120489215, 28.665801950992829 ], [ -96.010503120934658, 28.666181951265909 ], [ -96.010184120218838, 28.666235950820806 ], [ -96.009048119781724, 28.666720951468935 ], [ -96.008288119989032, 28.66714495124728 ], [ -96.007571119462398, 28.667404951167249 ], [ -96.006651119251629, 28.667942951282114 ], [ -96.006253119505814, 28.668013951671938 ], [ -96.005497119635194, 28.668286951578388 ], [ -96.004573119418765, 28.668818951334067 ], [ -96.004049119384419, 28.669020951574204 ], [ -96.002959118339234, 28.669586951846828 ], [ -96.001735118892469, 28.670100952089761 ], [ -96.000971117776132, 28.670516952444913 ], [ -96.000250118405944, 28.67080795266876 ], [ -95.9998571181779, 28.670966951874256 ], [ -95.999012118205201, 28.67140395232979 ], [ -95.996890117713619, 28.672330952278909 ], [ -95.994852116929778, 28.673325952518859 ], [ -95.992954116600018, 28.67416495298821 ], [ -95.992545116168202, 28.674403952976231 ], [ -95.991702116049879, 28.674836953124192 ], [ -95.990936115340503, 28.67508495341955 ], [ -95.990433115474133, 28.675324953059881 ], [ -95.989325115036621, 28.675870953436558 ], [ -95.987175115186204, 28.676827953751332 ], [ -95.986165114859986, 28.677114953902752 ], [ -95.985721114677858, 28.677370954283614 ], [ -95.985537115014921, 28.677403954476421 ], [ -95.984667114879244, 28.678001954098125 ], [ -95.983510113794139, 28.678547954613737 ], [ -95.983360114440728, 28.678618954039695 ], [ -95.982729114271521, 28.678916954060895 ], [ -95.981249113767333, 28.679518954664427 ], [ -95.980680113803729, 28.679866954293768 ], [ -95.979906113267361, 28.680209954583137 ], [ -95.978246113179608, 28.680946955201215 ], [ -95.977567112794191, 28.681066955052163 ], [ -95.97720811272481, 28.681237955134325 ], [ -95.976250112668893, 28.68165295543508 ], [ -95.975664111885791, 28.682016955721178 ], [ -95.976344112513985, 28.682476955122922 ], [ -95.976401112174528, 28.68251695497327 ], [ -95.976456112800705, 28.682769955219801 ], [ -95.976485112105237, 28.682905955558738 ], [ -95.976276112243781, 28.686114956429808 ], [ -95.976094112416007, 28.687550956549526 ], [ -95.976106112171848, 28.688237956825358 ], [ -95.976169112389883, 28.688666956992481 ], [ -95.976387112278957, 28.689133956425511 ], [ -95.97669211236483, 28.689559956922871 ], [ -95.976886112867831, 28.689704957162981 ], [ -95.977813113488693, 28.690400956648883 ], [ -95.978099112717089, 28.690541957139036 ], [ -95.97871011363506, 28.690963956983669 ], [ -95.979587113643419, 28.691720956871336 ], [ -95.979959113799609, 28.692205956874933 ], [ -95.979971113833443, 28.692232957499318 ], [ -95.980118113916177, 28.69260495735486 ], [ -95.980152113872123, 28.692855957543614 ], [ -95.98047611439253, 28.693637957816339 ], [ -95.980423114010449, 28.693736957205058 ], [ -95.980371114044488, 28.693836957823645 ], [ -95.979884113421917, 28.693835957896237 ], [ -95.979730113673995, 28.694090957242356 ], [ -95.979435113674953, 28.694481957945957 ], [ -95.978732113489457, 28.695135957753781 ], [ -95.978640113720616, 28.695238957575711 ], [ -95.977776113090556, 28.696214957943642 ], [ -95.977336113557314, 28.696779958193478 ], [ -95.977062113525946, 28.697222958454716 ], [ -95.976698113276626, 28.698145958231123 ], [ -95.976538112867743, 28.698552958455256 ], [ -95.976354113329307, 28.699366958813506 ], [ -95.9763621131154, 28.699691959368195 ], [ -95.976303113503775, 28.700095959185226 ], [ -95.976268113440895, 28.70219195983967 ], [ -95.976371113442838, 28.703489959646628 ], [ -95.977420113847614, 28.707502960303376 ], [ -95.977479113745176, 28.707978960616249 ], [ -95.977464113669924, 28.708808960450764 ], [ -95.977345113360101, 28.709265960776762 ], [ -95.977143113592859, 28.709699960918456 ], [ -95.976364113469657, 28.710844961258882 ], [ -95.976073113605452, 28.71138896112199 ], [ -95.975805113199328, 28.711987961403821 ], [ -95.975679113102018, 28.712442961343523 ], [ -95.975624113765988, 28.71290996159248 ], [ -95.975674113464279, 28.7132319620118 ], [ -95.975912113284181, 28.713884962120758 ], [ -95.976551113535024, 28.715014962422359 ], [ -95.97673111350548, 28.715494962545907 ], [ -95.976824114027707, 28.715846962707378 ], [ -95.976810113944723, 28.71595096248555 ], [ -95.976218113871596, 28.716772962841958 ], [ -95.975868113531121, 28.717125962536727 ], [ -95.975155113733408, 28.717666962270542 ], [ -95.973522113246872, 28.718625962802815 ], [ -95.97279911294774, 28.719210962804638 ], [ -95.972435113158269, 28.719690962820874 ], [ -95.972274113166776, 28.719982963632098 ], [ -95.972022113250119, 28.720702963418717 ], [ -95.971997112970854, 28.720776963148655 ], [ -95.971877112687167, 28.72127196357749 ], [ -95.971771112866492, 28.722613963777789 ], [ -95.971915112927476, 28.724271963886444 ], [ -95.971908113507681, 28.72611496451999 ], [ -95.971395113001506, 28.728492965137864 ], [ -95.971206112869098, 28.729709965537396 ], [ -95.971202113513854, 28.730035964968216 ], [ -95.971213113366659, 28.730271965310639 ], [ -95.971261113583566, 28.731262965954187 ], [ -95.971425113493567, 28.732265965504489 ], [ -95.971615113646422, 28.733005966087969 ], [ -95.971986113585899, 28.734038966187502 ], [ -95.972353113629538, 28.735668966650419 ], [ -95.97254111390815, 28.736556967012195 ], [ -95.973004114005434, 28.737440967281497 ], [ -95.973788114516424, 28.73831896732279 ], [ -95.974498113985518, 28.738915967556579 ], [ -95.974766114082229, 28.739080966943614 ], [ -95.974917114602079, 28.739147967480154 ], [ -95.976881115353976, 28.74001996766869 ], [ -95.979272115224305, 28.740957967467605 ], [ -95.980800115799909, 28.741467967610003 ], [ -95.981683116666147, 28.741619967120741 ], [ -95.982375116528445, 28.741652967626955 ], [ -95.984408116522474, 28.741235967128116 ], [ -95.985726117016469, 28.740956967286575 ], [ -95.987302118000443, 28.740757966896897 ], [ -95.989018118457125, 28.740734966621968 ], [ -95.990484118844776, 28.740820966855644 ], [ -95.990847118241277, 28.740876967098167 ], [ -95.991483118864423, 28.74100796705013 ], [ -95.993671118944263, 28.741713967023394 ], [ -95.995383119249411, 28.742483967426011 ], [ -95.996364120023259, 28.742998967654369 ], [ -95.997262120140761, 28.743470967365045 ], [ -95.998481120939303, 28.744259967350885 ], [ -95.999075120769575, 28.744755967550514 ], [ -95.999574121191557, 28.745327967406336 ], [ -95.999870121119287, 28.746039967582657 ], [ -95.999924121041801, 28.746579968225177 ], [ -95.999957121096941, 28.746902967957851 ], [ -95.999767120790082, 28.74811996851496 ], [ -95.99948912120152, 28.748837968126416 ], [ -95.998667120825246, 28.750200968286883 ], [ -95.997893121082924, 28.751674969434081 ], [ -95.997667120541223, 28.752368969428716 ], [ -95.99744712112799, 28.755497969482668 ], [ -95.997444120904092, 28.755546970212666 ], [ -95.99768712082934, 28.756563969723796 ], [ -95.997882121187274, 28.756971970157235 ], [ -95.998069120557403, 28.757362970297986 ], [ -95.998425121485894, 28.757972970003475 ], [ -95.999004121206298, 28.758626970452262 ], [ -96.000339121610608, 28.759935970701239 ], [ -96.000616121536282, 28.760206970435526 ], [ -96.001372121862119, 28.761058970422464 ], [ -96.001985121949346, 28.762240971016926 ], [ -96.002181122525485, 28.762726971013421 ], [ -96.00236912246973, 28.763453971660226 ], [ -96.002372122667722, 28.763466971602615 ], [ -96.002406122682274, 28.765017971374046 ], [ -96.002501122791983, 28.765366971499901 ], [ -96.002620122469111, 28.766695971645589 ], [ -96.002588122404887, 28.767670972627783 ], [ -96.002499122057799, 28.768206971892916 ], [ -96.002250122050555, 28.768969972237425 ], [ -96.002192122592888, 28.769077972112868 ], [ -96.001775122861162, 28.769849972296925 ], [ -96.000321121713313, 28.771502972934094 ], [ -95.997920121098019, 28.77357297353349 ], [ -95.996497120974482, 28.775185973953153 ], [ -95.994150120579803, 28.777844974423715 ], [ -95.992853120546343, 28.779375975213185 ], [ -95.992155120833857, 28.780306975004493 ], [ -95.99157112045873, 28.780955974915123 ], [ -95.991307119758346, 28.781125975530003 ], [ -95.990952120002589, 28.781552975422535 ], [ -95.990731120419014, 28.781893975840898 ], [ -95.990407119688399, 28.782393975578948 ], [ -95.990187119846809, 28.782859975486449 ], [ -95.990033119617479, 28.783418975816573 ], [ -95.990110119521589, 28.78377197588053 ], [ -95.990362119626667, 28.784266976054386 ], [ -95.990527120473146, 28.784459976198189 ], [ -95.990929120445074, 28.784926976017065 ], [ -95.992218120236544, 28.785754976292232 ], [ -95.993784120933356, 28.786536976579743 ], [ -95.995246121813224, 28.7875209767363 ], [ -95.995932121947561, 28.788284976370097 ], [ -95.996559121988142, 28.789238977084374 ], [ -95.996948121658122, 28.789081976685846 ], [ -95.998776121908605, 28.788340976503779 ], [ -96.000184122585694, 28.78780797624875 ], [ -96.00117112251651, 28.787509976126614 ], [ -96.00205912325535, 28.787330976686224 ], [ -96.002919123552317, 28.787220976236156 ], [ -96.003639123151899, 28.787152976205068 ], [ -96.004358124141021, 28.78712297630112 ], [ -96.007059124071958, 28.787110976201063 ], [ -96.008116124659907, 28.787102976298211 ], [ -96.009123125036396, 28.787095976027214 ], [ -96.018453127324847, 28.78703097550925 ], [ -96.022121127920187, 28.787007975215303 ], [ -96.025609129196667, 28.786986975195372 ], [ -96.026025129582194, 28.787031975695331 ], [ -96.026380128900371, 28.787115975131393 ], [ -96.02691912948714, 28.787265975760622 ], [ -96.02745712937103, 28.787428975926975 ], [ -96.027896129274268, 28.787576975686505 ], [ -96.028376129525043, 28.787789975642351 ], [ -96.028926129553142, 28.788065975228157 ], [ -96.02948813065629, 28.788418975235309 ], [ -96.029798130134807, 28.788588975265643 ], [ -96.030120130163468, 28.788822975635593 ], [ -96.030413130470862, 28.789055976153172 ], [ -96.03055213061171, 28.789195975535151 ], [ -96.030719130509112, 28.7893649755711 ], [ -96.031177130494427, 28.789853976177813 ], [ -96.031592130937639, 28.790353976129875 ], [ -96.031933130938569, 28.790860976258742 ], [ -96.032140131042567, 28.791196975857339 ], [ -96.032531130954553, 28.792036975921857 ], [ -96.032703130822753, 28.79251897628296 ], [ -96.032859130821734, 28.793063976667057 ], [ -96.032964131193268, 28.793909976725736 ], [ -96.033050131895578, 28.795709976606307 ], [ -96.033106131117179, 28.796948977307125 ], [ -96.033209131896612, 28.798177977488432 ], [ -96.033261131911829, 28.798457977981389 ], [ -96.033344131202199, 28.798904977718749 ], [ -96.033521131471659, 28.799677977874605 ], [ -96.03383313139517, 28.800568977765913 ], [ -96.034215131803094, 28.801429978256177 ], [ -96.034652131789784, 28.80218597835167 ], [ -96.035176131867956, 28.802944978788258 ], [ -96.035677132793211, 28.803582978499179 ], [ -96.036257132353242, 28.804245978321386 ], [ -96.037001132997261, 28.804958978370159 ], [ -96.037647132658336, 28.805485978706336 ], [ -96.038386132651567, 28.806059979321738 ], [ -96.039213133435325, 28.806605978960398 ], [ -96.040145133484259, 28.807139979596059 ], [ -96.041113134123933, 28.807603979424176 ], [ -96.042203134157859, 28.808063979146411 ], [ -96.043331134294945, 28.808432979171968 ], [ -96.044383135150838, 28.808708979457521 ], [ -96.045609134818946, 28.80894197972405 ], [ -96.046614135371257, 28.80904097899198 ], [ -96.047671136153795, 28.809124978909253 ], [ -96.048609136112063, 28.809130979198333 ], [ -96.052276136679595, 28.809097979623399 ], [ -96.05348113754232, 28.809087979478388 ], [ -96.053739137669709, 28.809089979496022 ], [ -96.053869137469775, 28.809090978937267 ], [ -96.054752137710338, 28.809096978942311 ], [ -96.054975137512116, 28.809074978903453 ], [ -96.055902137218553, 28.808982979008313 ], [ -96.057348138542679, 28.808756978862107 ], [ -96.059117138409974, 28.808260978992152 ], [ -96.060823139240739, 28.807564978425862 ], [ -96.062489139123713, 28.806709978048467 ], [ -96.063980139627063, 28.80569197840455 ], [ -96.065111139409524, 28.804646977557077 ], [ -96.065250140377316, 28.804498978055864 ], [ -96.065876139711392, 28.803831977251505 ], [ -96.066543140359272, 28.802942977673567 ], [ -96.06937614024153, 28.798614976212349 ], [ -96.071898141565455, 28.794784975602134 ], [ -96.073022141656338, 28.793076975429649 ], [ -96.073419141551739, 28.792474974728997 ], [ -96.074338141173939, 28.791054974908292 ], [ -96.074810142198984, 28.790497975040704 ], [ -96.075140141839512, 28.790155974855733 ], [ -96.075425142102134, 28.789860974294122 ], [ -96.076102141989054, 28.78925197416596 ], [ -96.077161142773278, 28.788457974362146 ], [ -96.078566142991249, 28.787671974342359 ], [ -96.079695143032083, 28.787211973600993 ], [ -96.080496142806183, 28.786951973590519 ], [ -96.081279143313608, 28.786746973632027 ], [ -96.08154214324054, 28.786677973205776 ], [ -96.082422143219986, 28.786542973437435 ], [ -96.083132143482658, 28.786451973783826 ], [ -96.083781143379284, 28.786399973941929 ], [ -96.08442814407546, 28.786399973429109 ], [ -96.085205144516578, 28.786391973348533 ], [ -96.085847144803083, 28.78638397346425 ], [ -96.086064144065745, 28.786380973331301 ], [ -96.08858814529269, 28.786349973647233 ], [ -96.091474145733429, 28.786314973440689 ], [ -96.101106148596187, 28.786131972896197 ], [ -96.107653150308096, 28.786006973103127 ], [ -96.110203150870973, 28.786004972676853 ], [ -96.111943150930699, 28.786002972137634 ], [ -96.114175151365671, 28.785990972520068 ], [ -96.116786151900186, 28.785975972803733 ], [ -96.117887152648791, 28.785953972464295 ], [ -96.118529152247888, 28.785896972005165 ], [ -96.119266152605093, 28.785771972595107 ], [ -96.119910153411567, 28.785644971886704 ], [ -96.12156415364089, 28.785162972219432 ], [ -96.122076153895733, 28.78499697189995 ], [ -96.122667153538856, 28.784844972356407 ], [ -96.122754153384875, 28.784828972062549 ], [ -96.123230153825048, 28.784739972041436 ], [ -96.123772153791236, 28.78462897219061 ], [ -96.124403153873345, 28.784513971840937 ], [ -96.12484115390788, 28.784495971463059 ], [ -96.125571154338459, 28.784429971468931 ], [ -96.126512154436824, 28.784367971644539 ], [ -96.127505155123004, 28.784342971525785 ], [ -96.128405154752059, 28.784338971373408 ], [ -96.129094155098159, 28.784342972042637 ], [ -96.135653156490847, 28.784319971891065 ], [ -96.144628159538613, 28.784287971432168 ], [ -96.144982158862774, 28.784301970899062 ], [ -96.145324158887135, 28.784329970862753 ], [ -96.145489159880782, 28.784348971509498 ], [ -96.145858159321349, 28.784403971228237 ], [ -96.146143159187972, 28.784457970721782 ], [ -96.146455160010476, 28.78452997149428 ], [ -96.1467731595895, 28.784616971072502 ], [ -96.147096160059817, 28.78471997152732 ], [ -96.147413159882575, 28.784836970854741 ], [ -96.147695160031745, 28.784954971047554 ], [ -96.147980160417958, 28.78508697147803 ], [ -96.14825916037988, 28.785230970799123 ], [ -96.148589160447628, 28.785421971289264 ], [ -96.148891160002663, 28.785617971086886 ], [ -96.149173160842849, 28.78582097095364 ], [ -96.149465160425365, 28.78604497126075 ], [ -96.149763160186964, 28.786271970967508 ], [ -96.150062160181591, 28.786499971694976 ], [ -96.151687161289402, 28.787742971955023 ], [ -96.151920161022218, 28.78790497170041 ], [ -96.152169161544094, 28.788062971853321 ], [ -96.152316161431486, 28.788148971350097 ], [ -96.152601161381213, 28.788301971700161 ], [ -96.152895160963709, 28.788442971948669 ], [ -96.153222161686173, 28.788579972199347 ], [ -96.153531161256907, 28.788692971388208 ], [ -96.153837161866988, 28.788788971589291 ], [ -96.154139161402853, 28.788869971391364 ], [ -96.154499162304361, 28.788948971755232 ], [ -96.15461416206368, 28.78896997225851 ], [ -96.154946161933367, 28.789020971375173 ], [ -96.155241162549245, 28.789052971852623 ], [ -96.155813162183549, 28.78908297174636 ], [ -96.158930163101559, 28.789133971471145 ], [ -96.163616164533863, 28.789209971847793 ], [ -96.163879164499718, 28.789204971570175 ], [ -96.164950164135718, 28.789183971125247 ], [ -96.166801165473515, 28.789223971662302 ], [ -96.167488165433525, 28.789225971346486 ], [ -96.173994167246718, 28.789150970951962 ], [ -96.175607167645012, 28.789132971220482 ], [ -96.17567016729916, 28.789131971302051 ], [ -96.17619116728595, 28.789125970843799 ], [ -96.178699167687867, 28.789097971291866 ], [ -96.18367216912695, 28.789066970673719 ], [ -96.189609171231595, 28.788971970784623 ], [ -96.189691170792813, 28.7889739705324 ], [ -96.189742170663195, 28.788974970903652 ], [ -96.192311171848502, 28.789012971025915 ], [ -96.192989171532162, 28.789022970419552 ], [ -96.199143173283588, 28.788981970701364 ], [ -96.208500175216528, 28.788919970198808 ], [ -96.209888175692541, 28.788906969959204 ], [ -96.209964175732736, 28.779679967957289 ], [ -96.210026174996898, 28.772166966813014 ], [ -96.210029175417432, 28.771840966154109 ], [ -96.218439177483674, 28.771871966556514 ], [ -96.222249178648198, 28.771885966517385 ], [ -96.226617179703538, 28.771944966093294 ], [ -96.228857180487211, 28.771957966152197 ], [ -96.232649180593512, 28.771978965517697 ], [ -96.233171180627153, 28.77198196618027 ], [ -96.234777181283661, 28.771980965354281 ], [ -96.249171185666398, 28.772077965481785 ], [ -96.250345185093792, 28.772085965071742 ], [ -96.25307418601102, 28.772095964958687 ], [ -96.253239186164805, 28.772096965666421 ], [ -96.256236187457674, 28.772109964990403 ], [ -96.259101187216245, 28.772121964819647 ], [ -96.259608188227944, 28.772117965476067 ], [ -96.259675188244302, 28.772116965205885 ], [ -96.265172189443248, 28.77207196480758 ], [ -96.266844189759155, 28.770592964856018 ], [ -96.266931189234981, 28.770564964688006 ], [ -96.267023189239282, 28.7705509646701 ], [ -96.267377189932674, 28.770775964332209 ], [ -96.271212190434355, 28.773617965108688 ], [ -96.279506192974097, 28.779765965752372 ], [ -96.29210019653911, 28.789096967157143 ], [ -96.29868819827432, 28.793978968758349 ], [ -96.298985198425513, 28.794195968015647 ], [ -96.306574201053607, 28.799736969368368 ], [ -96.31082720167251, 28.795953968187249 ], [ -96.31208220203014, 28.794777967698256 ], [ -96.315202202532817, 28.792009967786132 ], [ -96.317343202917499, 28.79007096725298 ], [ -96.317344203394853, 28.79004596692798 ], [ -96.317349203624644, 28.789956966647889 ], [ -96.317454203288449, 28.788233966361165 ], [ -96.317456203431462, 28.788199966713808 ], [ -96.317848202480064, 28.781637965320687 ], [ -96.318021203091249, 28.778739964367922 ], [ -96.318022203047263, 28.778717964227919 ], [ -96.31815720276488, 28.776356964179644 ], [ -96.318689202349361, 28.767318962555642 ], [ -96.318690202658743, 28.767297962491273 ], [ -96.318994202802529, 28.762084960816434 ], [ -96.318992202176105, 28.762067960849098 ], [ -96.318996202735264, 28.762053961369038 ], [ -96.318997202103589, 28.762039960824762 ], [ -96.319059202666992, 28.761009961056377 ], [ -96.319269202769192, 28.757594959745749 ], [ -96.31949220194825, 28.753960959410193 ], [ -96.319495201792819, 28.753905959715429 ], [ -96.319527201891475, 28.753173959359486 ], [ -96.319529202096561, 28.753128959050063 ], [ -96.319534202652662, 28.753009959677481 ], [ -96.319539202025112, 28.752903959287213 ], [ -96.319657202622906, 28.750231958825555 ], [ -96.320119201561027, 28.741487956962935 ], [ -96.320123201956136, 28.74141595658887 ], [ -96.320124201721953, 28.741394956528548 ], [ -96.32012520170484, 28.741375956596443 ], [ -96.320127201974799, 28.741349956578922 ], [ -96.320131202085562, 28.741270956668519 ], [ -96.320135201787281, 28.741192956811975 ], [ -96.32013820190808, 28.741132956833781 ], [ -96.320250201324413, 28.739058956158011 ], [ -96.32034320163325, 28.737249955582417 ], [ -96.320369201936444, 28.736740955603 ], [ -96.320412202073825, 28.735895956041688 ], [ -96.320538201268491, 28.733434955596742 ], [ -96.320586201672782, 28.732497954883119 ], [ -96.320607201188608, 28.732084954660646 ], [ -96.320627201421772, 28.731696954753378 ], [ -96.320630201605184, 28.7316379548569 ], [ -96.320632202127612, 28.731607954605554 ], [ -96.32063320186532, 28.731583954367064 ], [ -96.320645201983183, 28.731351955016379 ], [ -96.320964201438116, 28.725119953592834 ], [ -96.320972201552834, 28.724960953796533 ], [ -96.320979201042064, 28.724812953420031 ], [ -96.321216201433032, 28.720069952444362 ], [ -96.321250201777005, 28.719390952342071 ], [ -96.321251201338953, 28.719371952416012 ], [ -96.321253201485149, 28.719333952584481 ], [ -96.321258201290348, 28.719246952579571 ], [ -96.3214392016895, 28.71581895132822 ], [ -96.321992201273105, 28.705363949694004 ], [ -96.322015201023291, 28.704948949554662 ], [ -96.322023200779981, 28.704771948794676 ], [ -96.32202520112132, 28.70473994935049 ], [ -96.322031200876935, 28.704617949427412 ], [ -96.322135200539009, 28.7025239485748 ], [ -96.323529199972015, 28.675601943323443 ], [ -96.323499200421978, 28.674325942722621 ], [ -96.323454200470891, 28.672422942117045 ], [ -96.323447199709392, 28.672285942618782 ], [ -96.32343919987828, 28.672121942135036 ], [ -96.323430200177754, 28.671655942652315 ], [ -96.323332199466293, 28.667353941137875 ], [ -96.323306199287615, 28.666573941299436 ], [ -96.323279199438147, 28.665366940732792 ], [ -96.323185199889409, 28.661196940295579 ], [ -96.323139199477168, 28.659183939420359 ], [ -96.323083199021923, 28.656688939176099 ], [ -96.323059199373532, 28.655975938784827 ], [ -96.323058199669717, 28.655953938992678 ], [ -96.323023199514509, 28.654952939093267 ], [ -96.322862198542055, 28.648177937497781 ], [ -96.322738198780485, 28.642948936542236 ], [ -96.322925199112689, 28.641879936023898 ], [ -96.323011198787455, 28.641471935821816 ], [ -96.323098198369081, 28.641063935925537 ], [ -96.323296199101208, 28.640129935702596 ], [ -96.323345198414486, 28.639899935631849 ], [ -96.323522198200422, 28.639092935280228 ], [ -96.323729198387824, 28.638147935274322 ], [ -96.323777198723604, 28.637927935359571 ], [ -96.326948198993094, 28.623461931956747 ], [ -96.352295201060244, 28.509535908324953 ], [ -96.352421200543461, 28.508972907485695 ], [ -96.35245920110664, 28.508796907702575 ], [ -96.354413200821625, 28.5002819061013 ], [ -96.361016201347141, 28.470731899920391 ], [ -96.362789201187013, 28.462802897802195 ], [ -96.364270201644473, 28.455783896930498 ], [ -96.364443201236483, 28.454965896329995 ], [ -96.364523201499367, 28.454582896422092 ], [ -96.36459520200772, 28.454243896494479 ], [ -96.366536201783561, 28.445057894573921 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 683, "Tract": "48167722100", "Area_SqMi": 1.4818468887377123, "total_2009": 1409, "total_2010": 25, "total_2011": 32, "total_2012": 71, "total_2013": 72, "total_2014": 194, "total_2015": 184, "total_2016": 70, "total_2017": 91, "total_2018": 79, "total_2019": 95, "total_2020": 60, "age1": 0, "age2": 30, "age3": 27, "earn1": 14, "earn2": 20, "earn3": 23, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 12, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 23, "naics_s17": 0, "naics_s18": 0, "naics_s19": 3, "naics_s20": 0, "race1": 41, "race2": 11, "race3": 0, "race4": 4, "race5": 0, "race6": 1, "ethnicity1": 46, "ethnicity2": 11, "edu1": 11, "edu2": 20, "edu3": 19, "edu4": 7, "Shape_Length": 30728.073824749586, "Shape_Area": 41311355.051710121, "total_2021": 55, "total_2022": 57 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.925196874098418, 29.408053139255447 ], [ -94.9251848732589, 29.406991139473316 ], [ -94.925179873269784, 29.406571139109975 ], [ -94.925175873900827, 29.40626913859267 ], [ -94.925175874100063, 29.406122138960111 ], [ -94.925174874064993, 29.405695138917032 ], [ -94.925174873816573, 29.405267138299845 ], [ -94.925173873508143, 29.404819138747964 ], [ -94.925173873155757, 29.404373138802018 ], [ -94.925172873857505, 29.40396313845768 ], [ -94.925171873715101, 29.403556138236709 ], [ -94.925170874007549, 29.403173138525222 ], [ -94.925170873074805, 29.402957138285121 ], [ -94.925176873476275, 29.402816137881079 ], [ -94.925163873268687, 29.402535138160587 ], [ -94.925162873024334, 29.402405138404671 ], [ -94.925160873331947, 29.402012137894037 ], [ -94.92516087305188, 29.401935138104768 ], [ -94.925158873405906, 29.40162113807083 ], [ -94.925157873002021, 29.401460137941065 ], [ -94.925156873813549, 29.401246137683547 ], [ -94.925154873229218, 29.400978137929336 ], [ -94.925151873693594, 29.400527137334869 ], [ -94.925149873586321, 29.400110137951742 ], [ -94.925148873622902, 29.400034137779297 ], [ -94.925144873790572, 29.399529137641473 ], [ -94.925141873671919, 29.399056137095929 ], [ -94.925137873338642, 29.398570137399933 ], [ -94.925134873030899, 29.398099137492324 ], [ -94.92513087344517, 29.397607137375331 ], [ -94.925126873534353, 29.397137137032882 ], [ -94.924563873496709, 29.39714013691799 ], [ -94.923864873365901, 29.397143136900922 ], [ -94.923491873020026, 29.397145136768735 ], [ -94.922879872619731, 29.397148137423297 ], [ -94.922307873023087, 29.397150136985605 ], [ -94.919257872162873, 29.39715913764654 ], [ -94.918934871981392, 29.397160136922103 ], [ -94.916222870678453, 29.397169136937503 ], [ -94.914568870278373, 29.397174137648616 ], [ -94.914230870283816, 29.397175137801394 ], [ -94.913958869949994, 29.397180137167265 ], [ -94.913377870266615, 29.397191137792625 ], [ -94.912554870340713, 29.397207137201072 ], [ -94.911868869740488, 29.39722013752543 ], [ -94.910776870007851, 29.397232137830862 ], [ -94.909941868952686, 29.39721713765347 ], [ -94.90870686939202, 29.397230137968599 ], [ -94.908439868939055, 29.397232137392468 ], [ -94.907164868999203, 29.397245138012295 ], [ -94.905648868484832, 29.397254138115255 ], [ -94.904205868271433, 29.397262137527481 ], [ -94.902662867577902, 29.397271137595734 ], [ -94.901142866952227, 29.397280138052896 ], [ -94.899603866733926, 29.397289138046986 ], [ -94.898080865986273, 29.397298137922299 ], [ -94.896580866417196, 29.397307137659485 ], [ -94.896576865543437, 29.396821138210957 ], [ -94.896573866307904, 29.396355138089625 ], [ -94.896569866376836, 29.395851137342543 ], [ -94.896566865446232, 29.395404137806665 ], [ -94.896562865956028, 29.394903137198234 ], [ -94.896559865807689, 29.394429137541863 ], [ -94.896556865642893, 29.393938136963968 ], [ -94.896552866109346, 29.393428137405632 ], [ -94.895049865647351, 29.393429137664349 ], [ -94.893468865279502, 29.39343013763396 ], [ -94.89348186538686, 29.393950137557773 ], [ -94.893493865109846, 29.394433137155939 ], [ -94.893467864877493, 29.394922137395135 ], [ -94.893478864580871, 29.39541613732127 ], [ -94.893479865230248, 29.39586313810597 ], [ -94.893480865460091, 29.396348137596103 ], [ -94.893474864945162, 29.396843138480296 ], [ -94.893468865236287, 29.397325138138925 ], [ -94.893478865602958, 29.398276138428546 ], [ -94.893506865207158, 29.400204138694711 ], [ -94.893526864877401, 29.400689138991968 ], [ -94.893545865157733, 29.401169139151616 ], [ -94.893532865318505, 29.401659139174679 ], [ -94.893519865651726, 29.40212013926665 ], [ -94.893538865334165, 29.402602139121832 ], [ -94.893558865342982, 29.403084139000605 ], [ -94.893553865487704, 29.403894139421027 ], [ -94.893556865800022, 29.405899140311632 ], [ -94.893558865987643, 29.406516139917407 ], [ -94.893579865214392, 29.40680914011508 ], [ -94.893605865519717, 29.407017139937857 ], [ -94.893640865923146, 29.407165139802185 ], [ -94.893831865969531, 29.407496140496015 ], [ -94.894023865883298, 29.407740140412802 ], [ -94.894301865367538, 29.407966139872709 ], [ -94.894589866185285, 29.408088140648427 ], [ -94.894841865965731, 29.408175140486001 ], [ -94.89509386638143, 29.408218140790897 ], [ -94.895511866403936, 29.408218140496629 ], [ -94.896370866672612, 29.408234140067702 ], [ -94.896778866523306, 29.408209140656876 ], [ -94.899922867783687, 29.408215139793018 ], [ -94.9000308673982, 29.408214139787841 ], [ -94.901246867113741, 29.408214140000595 ], [ -94.902574867902786, 29.408214140105329 ], [ -94.902748867690832, 29.408211140267628 ], [ -94.90680986904141, 29.408155140131765 ], [ -94.90686886852717, 29.408120140355045 ], [ -94.906957869073977, 29.407928139848096 ], [ -94.90720786947287, 29.407984140043723 ], [ -94.907546869032444, 29.408076139885384 ], [ -94.907854869107922, 29.408141139507727 ], [ -94.908320869591691, 29.408172139782877 ], [ -94.910948870397362, 29.408151140267609 ], [ -94.913951870680606, 29.408127139477138 ], [ -94.914182871426505, 29.408125139713121 ], [ -94.914370871375695, 29.408124139505464 ], [ -94.914963870924495, 29.408119139973813 ], [ -94.91591287097863, 29.408111139586651 ], [ -94.916606872007961, 29.408106139976042 ], [ -94.917095871953009, 29.408102139423484 ], [ -94.917903872174335, 29.408095139786653 ], [ -94.919004872208873, 29.408087139387302 ], [ -94.919625872755134, 29.408082139918847 ], [ -94.920235872762532, 29.408076139628808 ], [ -94.92100787255454, 29.408070139243442 ], [ -94.921253872312761, 29.408068139489188 ], [ -94.921834873239334, 29.408064139632131 ], [ -94.922359872655846, 29.408060139614648 ], [ -94.922992873515298, 29.408055139796531 ], [ -94.923324873310619, 29.40805413901656 ], [ -94.925196874098418, 29.408053139255447 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 684, "Tract": "48167722300", "Area_SqMi": 1.6180924232219862, "total_2009": 2949, "total_2010": 4186, "total_2011": 4080, "total_2012": 2968, "total_2013": 3045, "total_2014": 3107, "total_2015": 3305, "total_2016": 3293, "total_2017": 3946, "total_2018": 2779, "total_2019": 2638, "total_2020": 2606, "age1": 496, "age2": 1405, "age3": 762, "earn1": 524, "earn2": 854, "earn3": 1285, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 124, "naics_s05": 18, "naics_s06": 53, "naics_s07": 56, "naics_s08": 115, "naics_s09": 1, "naics_s10": 106, "naics_s11": 26, "naics_s12": 252, "naics_s13": 2, "naics_s14": 75, "naics_s15": 1423, "naics_s16": 77, "naics_s17": 0, "naics_s18": 312, "naics_s19": 23, "naics_s20": 0, "race1": 1842, "race2": 674, "race3": 22, "race4": 80, "race5": 4, "race6": 41, "ethnicity1": 1985, "ethnicity2": 678, "edu1": 424, "edu2": 572, "edu3": 681, "edu4": 490, "Shape_Length": 32431.852282552103, "Shape_Area": 45109647.366568908, "total_2021": 2580, "total_2022": 2663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.940636876478038, 29.389622135288967 ], [ -94.940638877033322, 29.389295134989535 ], [ -94.940635876943134, 29.388978135155423 ], [ -94.940629877079658, 29.388274134738236 ], [ -94.940621876774514, 29.387354134105696 ], [ -94.940617876651487, 29.386831134619335 ], [ -94.940612876635882, 29.386245134446984 ], [ -94.940597876744121, 29.384457133646723 ], [ -94.940605877026485, 29.383902133448053 ], [ -94.940610876465541, 29.383553133980701 ], [ -94.940597877048944, 29.382635133878342 ], [ -94.940598876431267, 29.382545133741175 ], [ -94.940505876729432, 29.382583133220002 ], [ -94.94040687673305, 29.382620133967357 ], [ -94.938964876441958, 29.3831661333775 ], [ -94.93859987603345, 29.383297134151039 ], [ -94.937604875777524, 29.383562134203199 ], [ -94.93723887624671, 29.383622134053528 ], [ -94.936697875658567, 29.383713133857363 ], [ -94.935512875557862, 29.383877134259421 ], [ -94.935427875651001, 29.383879134282822 ], [ -94.93528087526505, 29.383878133930569 ], [ -94.934920874851855, 29.383897133781616 ], [ -94.934769875521795, 29.38390213422905 ], [ -94.933836875040328, 29.383864133939216 ], [ -94.932375874375225, 29.38388913440178 ], [ -94.930719874541523, 29.383896133857526 ], [ -94.929696873987169, 29.383900134263857 ], [ -94.927673873739209, 29.383908134355256 ], [ -94.926513873302255, 29.383912134309458 ], [ -94.925005872836252, 29.383918134290177 ], [ -94.92494187271177, 29.383918134209708 ], [ -94.923382872000289, 29.383925134706061 ], [ -94.922867872234193, 29.383926134160447 ], [ -94.922643872116282, 29.383926134682643 ], [ -94.922421871919369, 29.38392613452876 ], [ -94.920669871164833, 29.383930134489127 ], [ -94.919791871344501, 29.383933134617482 ], [ -94.919186871487, 29.383933134726263 ], [ -94.919095870725727, 29.383934134653025 ], [ -94.918503870856696, 29.383936134396418 ], [ -94.917210871016636, 29.383939134963978 ], [ -94.91641587030756, 29.383941134954366 ], [ -94.914351870333462, 29.383946135072982 ], [ -94.914031869671703, 29.383967134597999 ], [ -94.913887869907967, 29.383968134661785 ], [ -94.913018869602226, 29.383975134298581 ], [ -94.911550868980044, 29.383985135090612 ], [ -94.909708868391874, 29.383999134647709 ], [ -94.909712869048292, 29.384537134831358 ], [ -94.909716868995986, 29.384991134721083 ], [ -94.90972286872767, 29.385829134924446 ], [ -94.909728868697272, 29.386704135082056 ], [ -94.909735868587262, 29.387542135893611 ], [ -94.909743869048356, 29.388406136171142 ], [ -94.909752868566386, 29.389294136023835 ], [ -94.908806869053663, 29.389300136133468 ], [ -94.908659868693704, 29.389301136334769 ], [ -94.90866986887788, 29.390462136504901 ], [ -94.908669869120899, 29.39092313617844 ], [ -94.908669868896226, 29.391416136723041 ], [ -94.908669869170708, 29.391894136247615 ], [ -94.908668868376964, 29.392368136989496 ], [ -94.908668868759094, 29.392855137036655 ], [ -94.908668869055532, 29.393367137188431 ], [ -94.907137868055003, 29.393375136533322 ], [ -94.907141868222752, 29.39387413736204 ], [ -94.907144868288697, 29.39436813724847 ], [ -94.907147868025191, 29.394838137297999 ], [ -94.907150868827699, 29.395335137323627 ], [ -94.907154868911093, 29.395806137634199 ], [ -94.907157868735595, 29.396276137569618 ], [ -94.907160869052859, 29.396748137312883 ], [ -94.907164868999203, 29.397245138012295 ], [ -94.908439868939055, 29.397232137392468 ], [ -94.90870686939202, 29.397230137968599 ], [ -94.909941868952686, 29.39721713765347 ], [ -94.910776870007851, 29.397232137830862 ], [ -94.911868869740488, 29.39722013752543 ], [ -94.912554870340713, 29.397207137201072 ], [ -94.913377870266615, 29.397191137792625 ], [ -94.913958869949994, 29.397180137167265 ], [ -94.914230870283816, 29.397175137801394 ], [ -94.914568870278373, 29.397174137648616 ], [ -94.916222870678453, 29.397169136937503 ], [ -94.918934871981392, 29.397160136922103 ], [ -94.919257872162873, 29.39715913764654 ], [ -94.922307873023087, 29.397150136985605 ], [ -94.922879872619731, 29.397148137423297 ], [ -94.923491873020026, 29.397145136768735 ], [ -94.923864873365901, 29.397143136900922 ], [ -94.924563873496709, 29.39714013691799 ], [ -94.925126873534353, 29.397137137032882 ], [ -94.925122873208622, 29.396643136990445 ], [ -94.925119873703878, 29.396166136585634 ], [ -94.925110873560968, 29.395691136978424 ], [ -94.925101873403804, 29.395259136635556 ], [ -94.925091873184016, 29.394730136537802 ], [ -94.925082873122193, 29.394252136625393 ], [ -94.925062873506917, 29.393256136091821 ], [ -94.9255608727441, 29.393303136247994 ], [ -94.925865873068787, 29.393333136643051 ], [ -94.926569873890401, 29.393473136274832 ], [ -94.927078873760024, 29.393575135964454 ], [ -94.927669873375024, 29.393809135917099 ], [ -94.928048874171793, 29.393958136603981 ], [ -94.929273874500126, 29.394507136397319 ], [ -94.930715874153961, 29.395005136507731 ], [ -94.931738875027904, 29.395212136756736 ], [ -94.931864874473263, 29.395238136106219 ], [ -94.932285874677987, 29.395242135973191 ], [ -94.93382687523669, 29.395257136005565 ], [ -94.937243875962977, 29.395292136603615 ], [ -94.940623876940293, 29.395326135878893 ], [ -94.940623877062748, 29.395228136090903 ], [ -94.940620877278874, 29.394263136190865 ], [ -94.940620876651394, 29.394032135780265 ], [ -94.940619877339728, 29.393531135783892 ], [ -94.940619877377259, 29.39343113615147 ], [ -94.940618877530298, 29.393081135907778 ], [ -94.940624876635937, 29.392636135737622 ], [ -94.940626877289631, 29.392524135755998 ], [ -94.940630876640171, 29.392202135885974 ], [ -94.940625876826957, 29.391780135341531 ], [ -94.940618876594101, 29.391209135277343 ], [ -94.94062187686653, 29.390961135052208 ], [ -94.940628876449011, 29.390304135304344 ], [ -94.940636876478038, 29.389622135288967 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 685, "Tract": "48167722600", "Area_SqMi": 1.8385245931267704, "total_2009": 425, "total_2010": 230, "total_2011": 287, "total_2012": 428, "total_2013": 563, "total_2014": 924, "total_2015": 910, "total_2016": 758, "total_2017": 742, "total_2018": 658, "total_2019": 668, "total_2020": 570, "age1": 53, "age2": 233, "age3": 144, "earn1": 85, "earn2": 71, "earn3": 274, "naics_s01": 1, "naics_s02": 0, "naics_s03": 110, "naics_s04": 67, "naics_s05": 15, "naics_s06": 0, "naics_s07": 11, "naics_s08": 54, "naics_s09": 0, "naics_s10": 0, "naics_s11": 11, "naics_s12": 0, "naics_s13": 19, "naics_s14": 6, "naics_s15": 0, "naics_s16": 96, "naics_s17": 0, "naics_s18": 10, "naics_s19": 30, "naics_s20": 0, "race1": 320, "race2": 95, "race3": 0, "race4": 12, "race5": 0, "race6": 3, "ethnicity1": 307, "ethnicity2": 123, "edu1": 73, "edu2": 114, "edu3": 123, "edu4": 67, "Shape_Length": 31092.09229906035, "Shape_Area": 51254918.990084976, "total_2021": 420, "total_2022": 430 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.985397889199305, 29.396332134684005 ], [ -94.985913889148236, 29.396317135066123 ], [ -94.977452886226772, 29.387212133250969 ], [ -94.975177885710607, 29.384774132978617 ], [ -94.973398885168677, 29.382856132185989 ], [ -94.972730884743456, 29.382142132133627 ], [ -94.969818884098061, 29.379011131775552 ], [ -94.969513884326574, 29.379014132257105 ], [ -94.967539883357702, 29.379029131595356 ], [ -94.967197883079422, 29.379032132090146 ], [ -94.967052882851974, 29.379033131947224 ], [ -94.965014882606425, 29.379012131985963 ], [ -94.964307882174182, 29.37900413206302 ], [ -94.964263882731345, 29.379004131599665 ], [ -94.963113882230488, 29.37901813250371 ], [ -94.962876881720987, 29.379021132181023 ], [ -94.961988881816396, 29.379031131931139 ], [ -94.961162882216456, 29.379041132075525 ], [ -94.959712881242183, 29.379062132408798 ], [ -94.958786881298906, 29.379070131804777 ], [ -94.95711388075631, 29.379091132395885 ], [ -94.956068880623675, 29.379105131904385 ], [ -94.954942880548714, 29.379120132732648 ], [ -94.953647879788377, 29.379137132451064 ], [ -94.953316880017226, 29.379141132414205 ], [ -94.951840879763211, 29.379161132709868 ], [ -94.951512879371847, 29.379165132500251 ], [ -94.951072879125292, 29.379171132180502 ], [ -94.951074879121151, 29.379555133007241 ], [ -94.951075879419577, 29.379922132632604 ], [ -94.95107887920102, 29.380835132943748 ], [ -94.951079879405782, 29.380992132574757 ], [ -94.95108087916266, 29.381723132702433 ], [ -94.951082879786625, 29.382648132889162 ], [ -94.951084879753481, 29.383561133156004 ], [ -94.951086879755962, 29.384474133285391 ], [ -94.951088878997837, 29.385212133296061 ], [ -94.951089879888741, 29.385608133880822 ], [ -94.951090879845339, 29.386264133872373 ], [ -94.951085879902735, 29.38808813393803 ], [ -94.951096879702064, 29.39171713514472 ], [ -94.951098879719154, 29.392362135618296 ], [ -94.951077879370999, 29.395067135723473 ], [ -94.951075880125273, 29.39533313586762 ], [ -94.951532879493229, 29.395333136209572 ], [ -94.951584879769712, 29.395332135555119 ], [ -94.952254880541659, 29.395333135940319 ], [ -94.955361880637469, 29.395331135997175 ], [ -94.955626881069136, 29.395331135638145 ], [ -94.956084880923754, 29.39533113536579 ], [ -94.958213881961953, 29.395330135490195 ], [ -94.959257882225231, 29.395374135959774 ], [ -94.960747881900446, 29.395437135593021 ], [ -94.963008882560644, 29.395676135814416 ], [ -94.963236883236448, 29.395676135410916 ], [ -94.963940883403666, 29.395675135735374 ], [ -94.965417883870032, 29.395674135322192 ], [ -94.967153884367761, 29.395670135088729 ], [ -94.974181885740435, 29.395668135281685 ], [ -94.975398886069641, 29.395668135197134 ], [ -94.976045886055715, 29.395760135236618 ], [ -94.977214887050152, 29.39597313496315 ], [ -94.978510886519771, 29.396244134851699 ], [ -94.97907388685411, 29.396362135561674 ], [ -94.980033887017456, 29.39646313503253 ], [ -94.984541888684674, 29.396356134618156 ], [ -94.985397889199305, 29.396332134684005 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 686, "Tract": "48167722700", "Area_SqMi": 1.7981054705044044, "total_2009": 3105, "total_2010": 3037, "total_2011": 2999, "total_2012": 2061, "total_2013": 1968, "total_2014": 2022, "total_2015": 1992, "total_2016": 2055, "total_2017": 1909, "total_2018": 2182, "total_2019": 2258, "total_2020": 2073, "age1": 325, "age2": 1031, "age3": 557, "earn1": 404, "earn2": 483, "earn3": 1026, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 7, "naics_s07": 80, "naics_s08": 35, "naics_s09": 0, "naics_s10": 170, "naics_s11": 4, "naics_s12": 9, "naics_s13": 11, "naics_s14": 33, "naics_s15": 592, "naics_s16": 940, "naics_s17": 4, "naics_s18": 26, "naics_s19": 2, "naics_s20": 0, "race1": 1310, "race2": 438, "race3": 16, "race4": 120, "race5": 3, "race6": 26, "ethnicity1": 1459, "ethnicity2": 454, "edu1": 237, "edu2": 376, "edu3": 554, "edu4": 421, "Shape_Length": 31035.772995942843, "Shape_Area": 50128103.029393151, "total_2021": 1951, "total_2022": 1913 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.003396893674221, 29.397468134712767 ], [ -95.003402893646296, 29.39728613448926 ], [ -95.003390893793821, 29.396725134339324 ], [ -95.003369893744051, 29.395694134405343 ], [ -95.003363893089272, 29.395422134403578 ], [ -95.003349893538143, 29.395190134173546 ], [ -95.003339893442245, 29.395035134394007 ], [ -95.00336689325465, 29.394996134109263 ], [ -95.003227893510626, 29.394773134115699 ], [ -95.002951893435991, 29.39424713386056 ], [ -95.002708892921433, 29.39402713416662 ], [ -95.002551892545526, 29.393885133730947 ], [ -95.002467892886855, 29.393834133535599 ], [ -95.002104893369619, 29.393614133411095 ], [ -95.001929892404405, 29.393501133818727 ], [ -95.001652892592816, 29.393363133853981 ], [ -95.001439892222464, 29.39326313382314 ], [ -95.00132589282812, 29.393115133971971 ], [ -95.00132689235592, 29.392936133809659 ], [ -95.001439892646616, 29.392773133541532 ], [ -95.001393892558724, 29.39090213317828 ], [ -95.001383892944006, 29.389853133263959 ], [ -95.001371892838378, 29.388519132419322 ], [ -95.00136789293623, 29.38801413229675 ], [ -95.001355892457028, 29.387275132377329 ], [ -95.001354892671088, 29.387198132176913 ], [ -95.00130289269633, 29.386473132251556 ], [ -95.00127689248302, 29.386330132556438 ], [ -95.001211892474743, 29.38589013179962 ], [ -95.001183891891131, 29.38561713254856 ], [ -95.001147892376622, 29.385268132262546 ], [ -95.001147891867575, 29.384634131797156 ], [ -95.001143892790893, 29.384427131879693 ], [ -95.001134891923869, 29.383740131610992 ], [ -95.001121892605127, 29.383134132116155 ], [ -95.001109892565594, 29.38251213174912 ], [ -95.001059892246786, 29.379955130942182 ], [ -95.001030892399612, 29.378506130697776 ], [ -95.000356891688625, 29.378514130357694 ], [ -94.999906891412849, 29.378522130850659 ], [ -94.997164890951893, 29.378554130769096 ], [ -94.996884890809483, 29.378558131215325 ], [ -94.995746890865789, 29.378572130879864 ], [ -94.995479890892796, 29.378574131285035 ], [ -94.993014890377665, 29.378602130993389 ], [ -94.989800889007384, 29.378636130825715 ], [ -94.988733888939052, 29.378648131207665 ], [ -94.987716888706601, 29.378658131190964 ], [ -94.987641888122994, 29.378659131377926 ], [ -94.9867978879536, 29.378668131280342 ], [ -94.985941887768917, 29.378677131524167 ], [ -94.985395887700989, 29.378683131432076 ], [ -94.985072887673169, 29.378687131039658 ], [ -94.984355887221383, 29.378697131384296 ], [ -94.984193888162793, 29.37870013116132 ], [ -94.983407887821514, 29.378714131065532 ], [ -94.98325788726757, 29.378717131441704 ], [ -94.982284886873629, 29.378735131329393 ], [ -94.982135887124429, 29.378738131681146 ], [ -94.981586886908218, 29.378749131285723 ], [ -94.981299887129424, 29.378754131565579 ], [ -94.980675886754227, 29.378766131252291 ], [ -94.979890886545562, 29.378780131572018 ], [ -94.979802887001568, 29.378782131640243 ], [ -94.978692886361486, 29.378820131770826 ], [ -94.97778188595295, 29.378850131902787 ], [ -94.977071885766321, 29.378875131516995 ], [ -94.97580088565698, 29.378912131869463 ], [ -94.974835885541054, 29.378928132090149 ], [ -94.973848885056427, 29.378945131987397 ], [ -94.972873884713806, 29.378962131842361 ], [ -94.971886884038113, 29.378979131696401 ], [ -94.97023388452611, 29.379007131577875 ], [ -94.97010388370046, 29.37900913200901 ], [ -94.970031884059011, 29.37901013166627 ], [ -94.969818884098061, 29.379011131775552 ], [ -94.972730884743456, 29.382142132133627 ], [ -94.973398885168677, 29.382856132185989 ], [ -94.975177885710607, 29.384774132978617 ], [ -94.977452886226772, 29.387212133250969 ], [ -94.985913889148236, 29.396317135066123 ], [ -94.986161888995042, 29.396310134659075 ], [ -94.986383889318589, 29.396304135226039 ], [ -94.987826889592313, 29.396262135171067 ], [ -94.988727889181192, 29.396237135213109 ], [ -94.990263890198307, 29.396260134860409 ], [ -94.991208890002852, 29.396456134916303 ], [ -94.99195789042524, 29.396629135095829 ], [ -94.993439891081124, 29.397022135154746 ], [ -94.99460289101836, 29.397335134844518 ], [ -94.994821890782475, 29.397376134902721 ], [ -94.995260890939122, 29.397459134489253 ], [ -94.995463890988773, 29.397497134610045 ], [ -94.995611891077431, 29.397525134371598 ], [ -94.996135891880598, 29.397624134670387 ], [ -94.99669589144662, 29.397674134884912 ], [ -94.997375892222308, 29.397736135150645 ], [ -95.000484893008306, 29.397825134740568 ], [ -95.000816893241023, 29.397794134437003 ], [ -95.003384893623846, 29.397869135016105 ], [ -95.003396893674221, 29.397468134712767 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 687, "Tract": "48321730202", "Area_SqMi": 55.606642058372174, "total_2009": 577, "total_2010": 339, "total_2011": 401, "total_2012": 408, "total_2013": 411, "total_2014": 433, "total_2015": 564, "total_2016": 474, "total_2017": 507, "total_2018": 535, "total_2019": 553, "total_2020": 564, "age1": 172, "age2": 247, "age3": 119, "earn1": 118, "earn2": 273, "earn3": 147, "naics_s01": 2, "naics_s02": 0, "naics_s03": 34, "naics_s04": 2, "naics_s05": 0, "naics_s06": 0, "naics_s07": 343, "naics_s08": 3, "naics_s09": 0, "naics_s10": 6, "naics_s11": 7, "naics_s12": 0, "naics_s13": 0, "naics_s14": 36, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 89, "naics_s19": 9, "naics_s20": 0, "race1": 413, "race2": 77, "race3": 5, "race4": 34, "race5": 0, "race6": 9, "ethnicity1": 326, "ethnicity2": 212, "edu1": 101, "edu2": 110, "edu3": 100, "edu4": 55, "Shape_Length": 251168.95490144004, "Shape_Area": 1550218008.8683732, "total_2021": 522, "total_2022": 538 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.939910115420332, 28.983079018884482 ], [ -95.939757115323374, 28.982807018926128 ], [ -95.939622115550776, 28.982655018424897 ], [ -95.939447115301519, 28.982502018616874 ], [ -95.939360115335973, 28.982446018572201 ], [ -95.939190115222445, 28.982367018426771 ], [ -95.938909115059033, 28.982310018717421 ], [ -95.938750114967306, 28.982298018869468 ], [ -95.936847114653943, 28.982160018939943 ], [ -95.936550114905202, 28.982142018534777 ], [ -95.936397114668907, 28.982128018402392 ], [ -95.935833114734521, 28.982078018192016 ], [ -95.934778114002782, 28.981985018933532 ], [ -95.926147111799736, 28.981325018379032 ], [ -95.923179111286217, 28.981093018752258 ], [ -95.921762111001357, 28.980983019006349 ], [ -95.920257109843547, 28.980865018379898 ], [ -95.913668108877218, 28.980350018809844 ], [ -95.913341108163934, 28.980324018974489 ], [ -95.912919107954352, 28.980290018716932 ], [ -95.912540107812774, 28.98026001866765 ], [ -95.91240710810321, 28.980235018483384 ], [ -95.903341105438074, 28.977604018319163 ], [ -95.899603104807738, 28.976518018807099 ], [ -95.89771010483426, 28.975969018379871 ], [ -95.897545104302225, 28.97592201865077 ], [ -95.897438104437981, 28.975891018669923 ], [ -95.895745104021657, 28.975399018800982 ], [ -95.894719103912351, 28.975101018675836 ], [ -95.893806103683232, 28.97483501845781 ], [ -95.892701102601578, 28.974514018367362 ], [ -95.891771102850441, 28.974244018574463 ], [ -95.890799102495464, 28.973962018445221 ], [ -95.886919101947129, 28.972835018450379 ], [ -95.885053100923272, 28.972293018296266 ], [ -95.884762100829207, 28.972208018108827 ], [ -95.883624100655581, 28.971878017924219 ], [ -95.883587100574545, 28.9718670182883 ], [ -95.883244100758901, 28.971767018537737 ], [ -95.879753099138256, 28.970753018127805 ], [ -95.879259099895023, 28.970567018308977 ], [ -95.875225098737914, 28.969408017670453 ], [ -95.87451409858906, 28.969213018307041 ], [ -95.870177097452313, 28.967970017462743 ], [ -95.856622093507468, 28.963891017338632 ], [ -95.8550770927976, 28.963522017676848 ], [ -95.854533092866248, 28.963419017487993 ], [ -95.85388409264462, 28.963309017025519 ], [ -95.853370092336178, 28.963252017114488 ], [ -95.852954092070306, 28.963216017587339 ], [ -95.852456092620386, 28.9632000176445 ], [ -95.851941092467982, 28.963182017359216 ], [ -95.851425092187711, 28.963155017018664 ], [ -95.850870092419555, 28.963084017175859 ], [ -95.850389092080192, 28.962992017109588 ], [ -95.849971091712234, 28.962895017757472 ], [ -95.849588091617889, 28.962778017271248 ], [ -95.848849091888852, 28.96249101695151 ], [ -95.848217091500345, 28.962248016975835 ], [ -95.847415091162972, 28.961920017565213 ], [ -95.846845091007339, 28.961678017113151 ], [ -95.846647090334827, 28.961594017466794 ], [ -95.846238090798821, 28.961385017296084 ], [ -95.845657090911686, 28.961052017507857 ], [ -95.845116090859406, 28.960671016805478 ], [ -95.844318090164265, 28.960072017314324 ], [ -95.843969090154971, 28.959792017021808 ], [ -95.843406089400844, 28.959382016405815 ], [ -95.842001089516742, 28.95831201674962 ], [ -95.841269089513858, 28.95780601674165 ], [ -95.840548088907454, 28.957424016241525 ], [ -95.840069088542236, 28.957215016241054 ], [ -95.839767089317306, 28.957103016275425 ], [ -95.839193088305194, 28.956944015995692 ], [ -95.8385780889393, 28.956820016179101 ], [ -95.837945088338387, 28.956760016501519 ], [ -95.834944087974733, 28.957046016842884 ], [ -95.834087087832202, 28.95725101635335 ], [ -95.833283087546022, 28.95739801669124 ], [ -95.832530086896895, 28.957528016738511 ], [ -95.830902086698259, 28.957800017273371 ], [ -95.830245086656433, 28.957936016490297 ], [ -95.829705086605884, 28.95809201670226 ], [ -95.82919008614779, 28.958271017280826 ], [ -95.82873508585277, 28.958463016791004 ], [ -95.828349086469956, 28.958641017554562 ], [ -95.827636085394616, 28.959040017230667 ], [ -95.827279086199667, 28.959252017604339 ], [ -95.826450085340284, 28.959720017378089 ], [ -95.826030085876752, 28.959945017551856 ], [ -95.824766085491333, 28.960468017500371 ], [ -95.824228085304426, 28.960611018087558 ], [ -95.824201085503987, 28.960617017740805 ], [ -95.824135084904924, 28.960633018070958 ], [ -95.824068084690168, 28.960648017791236 ], [ -95.823966084612337, 28.96067201783946 ], [ -95.823529084498091, 28.960774017739283 ], [ -95.823328085023761, 28.960801017416856 ], [ -95.822059085022872, 28.960967017618845 ], [ -95.819677084369602, 28.9613000175361 ], [ -95.819264083463821, 28.961343017991751 ], [ -95.818816083400236, 28.961404017731997 ], [ -95.818178083535557, 28.961552017730035 ], [ -95.817372083719306, 28.961759018183301 ], [ -95.815784083432149, 28.962210017955265 ], [ -95.815130082339891, 28.96242001807973 ], [ -95.814421082308129, 28.962629018591574 ], [ -95.813471082325435, 28.96291801834856 ], [ -95.80967608199839, 28.964039018713247 ], [ -95.809050081663429, 28.964223018767065 ], [ -95.808665081475112, 28.964336018973388 ], [ -95.808489081151478, 28.964373018741636 ], [ -95.808303081041387, 28.964398018986852 ], [ -95.808113081485473, 28.964408018778844 ], [ -95.806604081141856, 28.964369019080909 ], [ -95.806451080744949, 28.964350019194715 ], [ -95.806308081072757, 28.964319018996157 ], [ -95.806194080332745, 28.96428401861478 ], [ -95.806058081068088, 28.964253019313652 ], [ -95.805570080940129, 28.964125018667946 ], [ -95.805379080839273, 28.964060019137253 ], [ -95.804606080292359, 28.963799019272546 ], [ -95.801283079453242, 28.962624019213283 ], [ -95.800989078965216, 28.962519018616959 ], [ -95.800175079252099, 28.962231018551066 ], [ -95.799710078993883, 28.962062018886755 ], [ -95.798485078419631, 28.961616018923088 ], [ -95.798086078338031, 28.961477018368917 ], [ -95.795421078107339, 28.960551018262194 ], [ -95.795100078075791, 28.960425018766564 ], [ -95.794216077050152, 28.960119018468205 ], [ -95.791373076967375, 28.959110018337999 ], [ -95.787749075526023, 28.957824018296701 ], [ -95.780964074235186, 28.955416017712714 ], [ -95.770981070655651, 28.951922017705453 ], [ -95.770339070996002, 28.951696017345135 ], [ -95.761779068331919, 28.948631016857835 ], [ -95.761197068972251, 28.948428017232754 ], [ -95.760877068082237, 28.948316016910876 ], [ -95.759323067846168, 28.947754017066554 ], [ -95.758926068243923, 28.947625017370502 ], [ -95.752379066411052, 28.945280017031475 ], [ -95.750260065522113, 28.94456201678323 ], [ -95.749400065605542, 28.944239016517873 ], [ -95.748372065132031, 28.943862016230565 ], [ -95.747409064703405, 28.943452017008127 ], [ -95.744764064013026, 28.94226501681705 ], [ -95.741573062757112, 28.940824016479116 ], [ -95.740934063159727, 28.940535016448571 ], [ -95.740573063298271, 28.940383015776987 ], [ -95.73769606189326, 28.939140016010793 ], [ -95.737087061973966, 28.938870015594564 ], [ -95.73654206193153, 28.938628015585991 ], [ -95.736060061391854, 28.938414015699397 ], [ -95.734323060855971, 28.937643015951867 ], [ -95.732612060551006, 28.936808015947509 ], [ -95.73014505966951, 28.935689015704085 ], [ -95.723330058587578, 28.940475016369803 ], [ -95.722850058053979, 28.940839016618497 ], [ -95.722599058358426, 28.941023017006668 ], [ -95.722134058379083, 28.941364017349098 ], [ -95.719819058061958, 28.943061017107901 ], [ -95.719226058039382, 28.943487017574189 ], [ -95.719073057592823, 28.943619017349349 ], [ -95.717791057052921, 28.944562018000266 ], [ -95.715323056232393, 28.946382017978923 ], [ -95.7148590565685, 28.946758018301235 ], [ -95.714606056507463, 28.947002017934238 ], [ -95.714447056817463, 28.947169018303203 ], [ -95.714401056533745, 28.947216018805005 ], [ -95.714026056753269, 28.947666018933599 ], [ -95.713743056757096, 28.948007018224065 ], [ -95.711068056104992, 28.951578019227671 ], [ -95.710751055788947, 28.952002019858821 ], [ -95.710538055850009, 28.952264019765913 ], [ -95.7104150562065, 28.952415019607418 ], [ -95.71010705531782, 28.952730019876117 ], [ -95.70972005576111, 28.953028019740881 ], [ -95.709301055901548, 28.953290020067243 ], [ -95.708691055641879, 28.953653020348142 ], [ -95.708064054817484, 28.953999019697381 ], [ -95.707652054990646, 28.954228020331549 ], [ -95.706742054467227, 28.954733019769659 ], [ -95.704910054899059, 28.955786020353429 ], [ -95.703489054363345, 28.956624020968309 ], [ -95.700934053937573, 28.958052020804999 ], [ -95.699048052656963, 28.9591460214573 ], [ -95.698343052669728, 28.959543021385493 ], [ -95.698221053316033, 28.959617021104226 ], [ -95.697903053310014, 28.959801021766388 ], [ -95.696977052383332, 28.960312021737092 ], [ -95.696205052257611, 28.960806021731596 ], [ -95.693953052230626, 28.962279022154174 ], [ -95.692154052016747, 28.963514022244272 ], [ -95.691762051449928, 28.963775022588333 ], [ -95.690757051633526, 28.964482022864129 ], [ -95.690501051418693, 28.964662022451197 ], [ -95.690511050888901, 28.964677022500585 ], [ -95.690590051526243, 28.96479302257384 ], [ -95.69069605071833, 28.964914023110556 ], [ -95.690878050868818, 28.965024022787443 ], [ -95.691047050955945, 28.965052022646397 ], [ -95.691107051756191, 28.965019022652314 ], [ -95.69122805095364, 28.964953023040341 ], [ -95.691390051703692, 28.964788022899587 ], [ -95.691522051746603, 28.964700022513696 ], [ -95.691590051861894, 28.964634022533023 ], [ -95.691697051384679, 28.964623022686261 ], [ -95.691947051244028, 28.964634022373964 ], [ -95.692147051813222, 28.964672022371733 ], [ -95.692397051712419, 28.964760022974499 ], [ -95.692922051751324, 28.964881022556213 ], [ -95.693741051663736, 28.965150022968679 ], [ -95.693953051772198, 28.965211022579258 ], [ -95.694185052187962, 28.965299022606679 ], [ -95.694504052532295, 28.965359023184142 ], [ -95.694672052041014, 28.96535902317688 ], [ -95.69482205183435, 28.965348022848257 ], [ -95.694954052322359, 28.965315022799032 ], [ -95.695185052280877, 28.965277022681516 ], [ -95.695291052814511, 28.965277022558059 ], [ -95.695498052901911, 28.965332022387773 ], [ -95.695561052345298, 28.965365023160022 ], [ -95.695685052167335, 28.965430022572981 ], [ -95.69587305235919, 28.965496022974673 ], [ -95.696048052909916, 28.965518022638214 ], [ -95.69637905289197, 28.965513022376879 ], [ -95.696441052549702, 28.965524022415 ], [ -95.696535052631575, 28.965568022476482 ], [ -95.696590052875834, 28.965639022876832 ], [ -95.696614052584451, 28.965670023218049 ], [ -95.696654052749338, 28.96572202265461 ], [ -95.696760053256071, 28.965821022863501 ], [ -95.696904052870082, 28.965887022623551 ], [ -95.696992053201981, 28.965909022399927 ], [ -95.697123053134604, 28.965909022622604 ], [ -95.697329052885308, 28.965925023098485 ], [ -95.697417053340629, 28.965947022593561 ], [ -95.697617053463262, 28.966084022953762 ], [ -95.697679052705425, 28.966150022418784 ], [ -95.697717053573626, 28.966304022685975 ], [ -95.697717052823563, 28.96648002310992 ], [ -95.697642053416786, 28.966783022758136 ], [ -95.697617052854255, 28.967096023243464 ], [ -95.697655053128031, 28.967530022804482 ], [ -95.697655052984246, 28.967662023580214 ], [ -95.6977420530514, 28.967976023102924 ], [ -95.697811052985685, 28.96807402302835 ], [ -95.697855053672271, 28.968179023555372 ], [ -95.698155053313513, 28.968569023507925 ], [ -95.698249053218419, 28.968668023177596 ], [ -95.698305053633689, 28.968751023815557 ], [ -95.698430053787945, 28.968866023620755 ], [ -95.698649053267587, 28.969014023185579 ], [ -95.698743053826064, 28.969146023585626 ], [ -95.698874053613523, 28.969251023708992 ], [ -95.698946053013913, 28.969287023867491 ], [ -95.699037053420071, 28.969333023786497 ], [ -95.699080053063895, 28.969416023558384 ], [ -95.699099053186188, 28.969509023427378 ], [ -95.699137053549094, 28.969542023714883 ], [ -95.699387053770323, 28.969537023107389 ], [ -95.699555053492446, 28.969597023162347 ], [ -95.699918054256599, 28.96958102333463 ], [ -95.700081053823268, 28.969537023483092 ], [ -95.70023105341069, 28.969482023604677 ], [ -95.700443053601646, 28.969284022997048 ], [ -95.700587053997026, 28.969201023607997 ], [ -95.700656053865345, 28.969174023566914 ], [ -95.70071205400177, 28.969174023059672 ], [ -95.70080605385823, 28.969207023216445 ], [ -95.701062054512832, 28.969360023398696 ], [ -95.701131053695804, 28.969355023806546 ], [ -95.701193054036068, 28.969327022939236 ], [ -95.701256053574312, 28.969250023668202 ], [ -95.701462053717876, 28.969201023758139 ], [ -95.701681053880179, 28.969162023025724 ], [ -95.701718053812812, 28.96918402356442 ], [ -95.701868054009111, 28.969338023197796 ], [ -95.701950054700802, 28.969366023593874 ], [ -95.702081054508398, 28.969355022980391 ], [ -95.702199054400566, 28.969316023784561 ], [ -95.70225905480423, 28.969296023137726 ], [ -95.702400054225691, 28.969250023251327 ], [ -95.702694054627742, 28.969245023600603 ], [ -95.702868054840707, 28.969233023238893 ], [ -95.703031054458535, 28.969223022871518 ], [ -95.703153054933196, 28.969206023450134 ], [ -95.703222054069514, 28.969196023602507 ], [ -95.703338054567809, 28.96917902327997 ], [ -95.703769054777439, 28.969025023674966 ], [ -95.703913054596285, 28.968953022899083 ], [ -95.704056054433494, 28.968942023569227 ], [ -95.704080054501375, 28.968936023373434 ], [ -95.704263055252937, 28.968898023488816 ], [ -95.704638054860226, 28.968920023246977 ], [ -95.704807054907789, 28.968909023009612 ], [ -95.705194055344862, 28.968766022777331 ], [ -95.70535705549166, 28.968656023517589 ], [ -95.705469055148669, 28.9686230229015 ], [ -95.705919055103237, 28.968617023300286 ], [ -95.706763055044675, 28.968590023292499 ], [ -95.707188055628677, 28.968557023189792 ], [ -95.708295056103822, 28.968567022823279 ], [ -95.710177055854217, 28.968523022597189 ], [ -95.712089056912561, 28.968451022749157 ], [ -95.713308056834535, 28.968445022873716 ], [ -95.715015057239782, 28.968390023049821 ], [ -95.715415057986135, 28.968368022997435 ], [ -95.716130057843557, 28.968359022672587 ], [ -95.716740058091489, 28.968351022885418 ], [ -95.717168058357785, 28.968334023016077 ], [ -95.717722058182986, 28.9683120225503 ], [ -95.718878058501261, 28.96830602227115 ], [ -95.719222058826048, 28.96829002279539 ], [ -95.721266058864487, 28.968240022965141 ], [ -95.721954059663858, 28.968212022403709 ], [ -95.722592059614726, 28.968201022090227 ], [ -95.723254060032716, 28.968162022633567 ], [ -95.723917060129921, 28.96816202218848 ], [ -95.724542059961294, 28.968145022345983 ], [ -95.725011060485983, 28.968128022518055 ], [ -95.725324059925811, 28.968106022453178 ], [ -95.725705060245474, 28.968123022051245 ], [ -95.726324060754322, 28.968090021927853 ], [ -95.726768061023151, 28.968100022027368 ], [ -95.72733606065438, 28.968078022047891 ], [ -95.728093060398876, 28.968067022323844 ], [ -95.728280061311153, 28.968111022425294 ], [ -95.728307061104644, 28.968115022300363 ], [ -95.728183060998617, 28.968015021967531 ], [ -95.728565060868362, 28.968005022005471 ], [ -95.733543062069785, 28.967872022156328 ], [ -95.735135063119529, 28.967829022357247 ], [ -95.735204062365597, 28.967827021968155 ], [ -95.735259062449799, 28.967826021905061 ], [ -95.737001063502703, 28.967780022028862 ], [ -95.737358063200972, 28.967774022246026 ], [ -95.740786064335339, 28.967718022170711 ], [ -95.743939064958411, 28.967666021727918 ], [ -95.74423906493648, 28.967661021358147 ], [ -95.744259064749897, 28.967660021662244 ], [ -95.744332064925615, 28.967659021726455 ], [ -95.744398065514432, 28.967658021866402 ], [ -95.744980064854431, 28.967648021813119 ], [ -95.745662065737989, 28.967637021420163 ], [ -95.747438066137192, 28.967608021693447 ], [ -95.747810065773777, 28.9676020214239 ], [ -95.748213065863226, 28.967595021683429 ], [ -95.751832066883651, 28.96754802126404 ], [ -95.764944070578579, 28.967364021105716 ], [ -95.764945070043836, 28.967386020527446 ], [ -95.764950070076793, 28.967501021316011 ], [ -95.765013069917316, 28.967661020663222 ], [ -95.765056070749381, 28.967743021134581 ], [ -95.765144070684258, 28.967820021481185 ], [ -95.765206070609011, 28.967853021221678 ], [ -95.765431070008788, 28.967936021048711 ], [ -95.765494070914457, 28.967969020630377 ], [ -95.765638070928915, 28.968057021011429 ], [ -95.76593107032086, 28.968260021405325 ], [ -95.766500070318202, 28.968838021512198 ], [ -95.766656071045475, 28.968937021209669 ], [ -95.766806071124208, 28.969014021566142 ], [ -95.767463070645917, 28.969311021249172 ], [ -95.767625071448165, 28.969393020853449 ], [ -95.767988071056095, 28.969641021243888 ], [ -95.768256071430613, 28.969877021148495 ], [ -95.76878707085703, 28.970438021162106 ], [ -95.769400071454228, 28.971114021792722 ], [ -95.770075071262127, 28.972054022190026 ], [ -95.770200072284425, 28.972269021916503 ], [ -95.770331071534528, 28.972621022141919 ], [ -95.7703430720086, 28.972687022201789 ], [ -95.77036207172911, 28.973319022334191 ], [ -95.77038107141847, 28.973418022305218 ], [ -95.770387071951376, 28.97354402190653 ], [ -95.770430072153488, 28.973753022510831 ], [ -95.770662072247688, 28.974594022315067 ], [ -95.770724072498069, 28.975018022784766 ], [ -95.770724071952074, 28.975210022057503 ], [ -95.770699071526181, 28.975342022628102 ], [ -95.770580071573704, 28.975765022109758 ], [ -95.770505071607687, 28.975985022847659 ], [ -95.770323071787047, 28.976370022414038 ], [ -95.770167072062549, 28.976656022601574 ], [ -95.769360071754093, 28.977815023088546 ], [ -95.76915407179014, 28.978019022971804 ], [ -95.768879071548355, 28.978195023444826 ], [ -95.768779071405305, 28.978250023419292 ], [ -95.768585071758721, 28.978338023295926 ], [ -95.768360072060474, 28.978392023424689 ], [ -95.767910071236628, 28.978469023256213 ], [ -95.767828071026699, 28.978491023530783 ], [ -95.767753071356196, 28.978535022769961 ], [ -95.76766607116096, 28.978612023251113 ], [ -95.767578071751004, 28.978667023405873 ], [ -95.76749107106447, 28.978695023057693 ], [ -95.767397071075919, 28.978750023456563 ], [ -95.767258071490843, 28.978902023265388 ], [ -95.767242070842158, 28.978923023492278 ], [ -95.767140071689667, 28.979052023123131 ], [ -95.766796070874008, 28.9792770233433 ], [ -95.766703071035366, 28.979305023763512 ], [ -95.766615071497796, 28.979305023308825 ], [ -95.766459071281787, 28.97927702327161 ], [ -95.766153070760453, 28.979194023769288 ], [ -95.766027071041805, 28.979183022919013 ], [ -95.765959070769995, 28.979189022965279 ], [ -95.765809070683957, 28.979249023307091 ], [ -95.765721070866746, 28.979310023343178 ], [ -95.765677070480081, 28.979359023511456 ], [ -95.765615070464548, 28.979486023294726 ], [ -95.765583071207942, 28.979739023629449 ], [ -95.765639070720411, 28.979997023278464 ], [ -95.765733071122213, 28.980266023929225 ], [ -95.765864070599648, 28.980481023691887 ], [ -95.765977071370983, 28.980613023727674 ], [ -95.766208071458038, 28.980833023369872 ], [ -95.766308070799155, 28.980981023938295 ], [ -95.766364071258607, 28.98103602361526 ], [ -95.767077071574349, 28.981581024259608 ], [ -95.767208071323651, 28.981658023894695 ], [ -95.767352071922531, 28.981707023884731 ], [ -95.767665071036674, 28.981790023540427 ], [ -95.767958071854054, 28.981883023817169 ], [ -95.76835207144893, 28.981993023985158 ], [ -95.768458071967302, 28.982048023762111 ], [ -95.768496072124279, 28.982092023582997 ], [ -95.768558071625705, 28.982136023474862 ], [ -95.768602071417902, 28.982180023729867 ], [ -95.768696071335356, 28.982241024328633 ], [ -95.768921072097243, 28.98247702414541 ], [ -95.76914907221348, 28.982663024255665 ], [ -95.769189071433431, 28.982696024421738 ], [ -95.769252072265871, 28.982747024284329 ], [ -95.769290072413469, 28.982769024423103 ], [ -95.769352071696559, 28.98278502430616 ], [ -95.76952707189109, 28.982796024375101 ], [ -95.769590071883712, 28.98282402443423 ], [ -95.769940072169007, 28.983022023706074 ], [ -95.77005907175662, 28.983115024280625 ], [ -95.770165072020973, 28.983280024322589 ], [ -95.770202072442842, 28.983412024158394 ], [ -95.770215072366895, 28.98349402423754 ], [ -95.770265072407085, 28.983599024424247 ], [ -95.770290072197668, 28.983632023713859 ], [ -95.770296071804751, 28.983687024036193 ], [ -95.77024607180816, 28.984149024478118 ], [ -95.770215072298129, 28.984347024706487 ], [ -95.770221072487104, 28.984451023904338 ], [ -95.770239072544342, 28.984511024123176 ], [ -95.770352072373157, 28.984599023996836 ], [ -95.770433072430166, 28.984676024555174 ], [ -95.770496072676067, 28.98478102442051 ], [ -95.770527072185331, 28.984863024693052 ], [ -95.770527072875311, 28.984907024474023 ], [ -95.770502072497351, 28.985028024852319 ], [ -95.7703960724441, 28.985199024919964 ], [ -95.77029607207831, 28.985298024119633 ], [ -95.769920072514012, 28.985572024380122 ], [ -95.769739072256399, 28.985737024512964 ], [ -95.769576071700897, 28.985968024885928 ], [ -95.76955107238858, 28.986067024801901 ], [ -95.769545071730477, 28.986149024633388 ], [ -95.769557071748579, 28.986303025136181 ], [ -95.769782072697623, 28.987035024605301 ], [ -95.770001072260612, 28.9878590252073 ], [ -95.770057072855437, 28.988316024827121 ], [ -95.77005707274887, 28.988414025239067 ], [ -95.770051072272636, 28.988453025499904 ], [ -95.770026071953041, 28.988502025538349 ], [ -95.769894072501543, 28.98866202550467 ], [ -95.769838072648014, 28.988722025543428 ], [ -95.769732072081553, 28.988810025625344 ], [ -95.769469072219806, 28.988926025209146 ], [ -95.769425072770133, 28.988937025276826 ], [ -95.769319072697982, 28.988920025175428 ], [ -95.769269072731376, 28.98890402531983 ], [ -95.769182072454683, 28.988794024983893 ], [ -95.769119072213996, 28.988612025167185 ], [ -95.769113071899199, 28.988508025011448 ], [ -95.769088071938697, 28.988376024906909 ], [ -95.76894407241079, 28.988112025498978 ], [ -95.768838071626121, 28.988013024694261 ], [ -95.768807072097701, 28.987969025436065 ], [ -95.768688071937007, 28.987886024749081 ], [ -95.768582072189375, 28.987859024950112 ], [ -95.768425071555313, 28.987859025428641 ], [ -95.768288071732172, 28.987875025402204 ], [ -95.767994072105111, 28.988002025319592 ], [ -95.767728071638075, 28.988191024848923 ], [ -95.767500071729813, 28.988353025599203 ], [ -95.767300072107957, 28.988529024926887 ], [ -95.767174071311914, 28.988716024937268 ], [ -95.76705607153184, 28.989040025550477 ], [ -95.767049072062164, 28.989101025234138 ], [ -95.767062071398982, 28.98921602524884 ], [ -95.767074071659053, 28.989271025383136 ], [ -95.767312072012885, 28.989750025317985 ], [ -95.767468071953672, 28.990146026012511 ], [ -95.767493072205397, 28.990283025551765 ], [ -95.767468071839261, 28.990492025923341 ], [ -95.767361071423622, 28.990981025949626 ], [ -95.767211071787159, 28.99155802551434 ], [ -95.767211072151298, 28.991613025480977 ], [ -95.767242072306772, 28.991690025625061 ], [ -95.767355071637283, 28.991811025682313 ], [ -95.767517071417544, 28.991916025881576 ], [ -95.767702071587692, 28.991977026368765 ], [ -95.767717071830276, 28.991982026265646 ], [ -95.767849071870913, 28.991987026352483 ], [ -95.767949071974854, 28.991965026379336 ], [ -95.768286071969513, 28.991773026025768 ], [ -95.768693072321028, 28.991493025538674 ], [ -95.768849071767377, 28.99143202544796 ], [ -95.768918071865201, 28.991416025471427 ], [ -95.769118072184199, 28.99141002618428 ], [ -95.769287072335331, 28.991482025874753 ], [ -95.769356072402275, 28.99154802592798 ], [ -95.76956207284563, 28.991911025725663 ], [ -95.769606072444077, 28.991966025678664 ], [ -95.769668072520275, 28.992021025960263 ], [ -95.769756072955019, 28.992070025709157 ], [ -95.769824072606781, 28.992070025485905 ], [ -95.770006072201269, 28.992131025671664 ], [ -95.770150072548631, 28.992241025915746 ], [ -95.770243072192713, 28.992362026039238 ], [ -95.770262073051356, 28.992428026304637 ], [ -95.77024907231943, 28.992906026315595 ], [ -95.770256072305045, 28.993126026271174 ], [ -95.770287072511522, 28.993219025790527 ], [ -95.770543073012803, 28.993417026116987 ], [ -95.770906073126056, 28.99359902593817 ], [ -95.771187073231388, 28.993764025796512 ], [ -95.771575073457441, 28.994055026416039 ], [ -95.772156073142099, 28.994429026684493 ], [ -95.772219073255457, 28.994451026031182 ], [ -95.772356073282211, 28.994467026627667 ], [ -95.772431073191498, 28.994468026304382 ], [ -95.772750073466753, 28.994391026206923 ], [ -95.772950073692996, 28.994330026561599 ], [ -95.773194073464907, 28.994292025924494 ], [ -95.773363073417528, 28.994286026198012 ], [ -95.773463073443793, 28.994292026140524 ], [ -95.773813073498275, 28.994374025826378 ], [ -95.774313074133232, 28.994413026498357 ], [ -95.774588073789417, 28.994402026276152 ], [ -95.774663073331467, 28.994391026162351 ], [ -95.774932074288358, 28.994386026146888 ], [ -95.775214074129835, 28.994402025875406 ], [ -95.776002074206318, 28.994540026055361 ], [ -95.776721074473812, 28.994677026198442 ], [ -95.776821074348661, 28.994699026436574 ], [ -95.776927074509274, 28.994749026234871 ], [ -95.777058074664183, 28.994848026670311 ], [ -95.777121074380176, 28.994914026037883 ], [ -95.777202074734149, 28.995018026009319 ], [ -95.777302074764066, 28.995222026539963 ], [ -95.777289074463027, 28.995414026271266 ], [ -95.777258074150225, 28.995518026463046 ], [ -95.777252074239115, 28.995678026772357 ], [ -95.77726407420792, 28.99577102622867 ], [ -95.777302074610986, 28.995881026869149 ], [ -95.777458075077931, 28.996085026616829 ], [ -95.777571074763046, 28.996200026438025 ], [ -95.777714074883932, 28.996305026417094 ], [ -95.777889074463786, 28.996404026851394 ], [ -95.777983074599547, 28.996470026706024 ], [ -95.778096074510273, 28.996613026501908 ], [ -95.778183074403259, 28.996778026688897 ], [ -95.778189074464308, 28.996811026231033 ], [ -95.778346074464821, 28.997058026883522 ], [ -95.778342075007743, 28.997087026300871 ], [ -95.778314074632888, 28.997305026576957 ], [ -95.778202074449908, 28.997503026689831 ], [ -95.777870075278784, 28.997871026595945 ], [ -95.777764074385388, 28.997976027077623 ], [ -95.777595075113894, 28.998262027052753 ], [ -95.777301074885912, 28.99892702672037 ], [ -95.777038074293813, 28.999416027336444 ], [ -95.776894074368542, 28.999603027142793 ], [ -95.776788075015006, 28.999702027685533 ], [ -95.776344074048822, 29.000007027259169 ], [ -95.775637074459681, 29.000331027719081 ], [ -95.775287073904764, 29.000754027297326 ], [ -95.77513007418473, 29.001167027338063 ], [ -95.775055073723749, 29.001441027541816 ], [ -95.775036074310833, 29.001733027578293 ], [ -95.774930074623583, 29.001980027708871 ], [ -95.774705073944517, 29.002206027769891 ], [ -95.774504074007737, 29.002304028047678 ], [ -95.774160074425367, 29.002409028193625 ], [ -95.773835074125302, 29.002541028244941 ], [ -95.773623074376857, 29.002639027600285 ], [ -95.773422073571339, 29.002821027658953 ], [ -95.773166074194918, 29.003090028277047 ], [ -95.772954073834697, 29.00342402794703 ], [ -95.772853073801301, 29.003689028309896 ], [ -95.772840073563643, 29.003865028523251 ], [ -95.772853073291714, 29.004349028332093 ], [ -95.772809074029453, 29.00455202860833 ], [ -95.772803074182917, 29.004734028229301 ], [ -95.772740073457598, 29.004910028416248 ], [ -95.772671073741805, 29.005053028794194 ], [ -95.772565073855517, 29.005190028413448 ], [ -95.772302073742964, 29.005333028414771 ], [ -95.772196073682238, 29.005366028203408 ], [ -95.771896073828074, 29.005371028374967 ], [ -95.771752073988409, 29.00530502849794 ], [ -95.771564073527713, 29.005129028574189 ], [ -95.771445073771119, 29.004953028842003 ], [ -95.771314073182936, 29.004678028747776 ], [ -95.771008073161667, 29.004222028313933 ], [ -95.770514072693345, 29.003408028297947 ], [ -95.770133073345278, 29.003073027878226 ], [ -95.769783072575549, 29.002886028401033 ], [ -95.769089072972065, 29.002704027988639 ], [ -95.76883907266938, 29.002743028556878 ], [ -95.768063072866966, 29.002946028530317 ], [ -95.767869072515609, 29.003088028136261 ], [ -95.767744072522817, 29.003259027857336 ], [ -95.767688072577769, 29.003479028747915 ], [ -95.767713072831938, 29.00384702882193 ], [ -95.767780072787247, 29.003993028593342 ], [ -95.767956072735345, 29.004215028723788 ], [ -95.76819407222952, 29.004358028852977 ], [ -95.768494072396734, 29.004491028388067 ], [ -95.7688000727169, 29.004667028129571 ], [ -95.768957072564163, 29.004810028655559 ], [ -95.769125073294532, 29.005205028913593 ], [ -95.769350072872996, 29.005464028786367 ], [ -95.769513073263795, 29.005596028863202 ], [ -95.770051073240197, 29.005805028944643 ], [ -95.77055107359962, 29.005920028884432 ], [ -95.770976073491255, 29.006075028543947 ], [ -95.771389073740565, 29.00615202855246 ], [ -95.771664073927411, 29.006113028639444 ], [ -95.771933073607116, 29.006025029070305 ], [ -95.772177074149255, 29.005899028441792 ], [ -95.772590073771482, 29.005630029070112 ], [ -95.772827073877593, 29.005597028313421 ], [ -95.773121073602823, 29.005602028467951 ], [ -95.773465074267435, 29.005652028510948 ], [ -95.77381507365935, 29.00576802871598 ], [ -95.774147074187383, 29.005944029060416 ], [ -95.774853074054832, 29.006158029067013 ], [ -95.775059073984494, 29.006290028521306 ], [ -95.775178074364376, 29.006444029062756 ], [ -95.775397074869772, 29.006642028997092 ], [ -95.775703074995548, 29.006857029229707 ], [ -95.776322074282746, 29.007340028664743 ], [ -95.776722075250802, 29.007566029177781 ], [ -95.77708507465691, 29.007747029301051 ], [ -95.777373074788215, 29.007989029216795 ], [ -95.777554075551464, 29.008259029128791 ], [ -95.777704075515601, 29.008682028691638 ], [ -95.777741074800559, 29.008875029333741 ], [ -95.777791075014051, 29.009039029275019 ], [ -95.77789007497158, 29.009132029289898 ], [ -95.778016075667495, 29.009133028864273 ], [ -95.778248074872224, 29.009073028706091 ], [ -95.778667075808599, 29.008952029482774 ], [ -95.778930075085668, 29.008853029159937 ], [ -95.779111075185867, 29.008748029343504 ], [ -95.77926707589657, 29.008584029183236 ], [ -95.779430075497615, 29.008303028772261 ], [ -95.779530075427246, 29.008012029286352 ], [ -95.779505076096413, 29.007644028970773 ], [ -95.77941807554113, 29.007385028781538 ], [ -95.779324075076033, 29.007237028423418 ], [ -95.779274075649923, 29.007055028637243 ], [ -95.779312075491958, 29.006918028289103 ], [ -95.779437075865445, 29.006846028316517 ], [ -95.779593075985829, 29.006819028486746 ], [ -95.780206076228268, 29.006874028962105 ], [ -95.781038075749464, 29.007061028791522 ], [ -95.781663075823005, 29.007171028297648 ], [ -95.781913075806486, 29.007100028561638 ], [ -95.782188076505037, 29.006941028309715 ], [ -95.78272607634473, 29.006561028280466 ], [ -95.782976076244907, 29.006446028810643 ], [ -95.783176076407543, 29.006430028514057 ], [ -95.78341407615217, 29.006507028017698 ], [ -95.783570076443951, 29.006573028125125 ], [ -95.783908076904609, 29.006853028831397 ], [ -95.784114077231607, 29.00704002899867 ], [ -95.784264076414317, 29.007254028218309 ], [ -95.784408077199416, 29.007513028217335 ], [ -95.784871077185386, 29.008480028838434 ], [ -95.785071076619545, 29.00893102866058 ], [ -95.785127077113984, 29.009217028520634 ], [ -95.785146077239787, 29.009409029337348 ], [ -95.785120077173232, 29.009629028794183 ], [ -95.785020077236453, 29.009959028996754 ], [ -95.78499507700478, 29.010207029507875 ], [ -95.785001077017327, 29.010333029547876 ], [ -95.785020077460231, 29.010481029013651 ], [ -95.785189077549077, 29.0109050291519 ], [ -95.785270077485976, 29.011180029097972 ], [ -95.78532007704348, 29.01175702933843 ], [ -95.785282077629518, 29.012059029334939 ], [ -95.785164077217303, 29.012306029655285 ], [ -95.784976077167727, 29.01246002960378 ], [ -95.784794077368375, 29.012587029706935 ], [ -95.784551076613084, 29.012691029537034 ], [ -95.784269077426742, 29.012779029333892 ], [ -95.783944076693871, 29.012828030043273 ], [ -95.783719076774688, 29.012735029281576 ], [ -95.78351307661498, 29.012532029631199 ], [ -95.783381076620273, 29.012290029561893 ], [ -95.783325077228781, 29.012004029863931 ], [ -95.783319076989244, 29.01174002992898 ], [ -95.78332507650228, 29.01146502940006 ], [ -95.783381076638975, 29.011256029163956 ], [ -95.783519076870789, 29.011102029258808 ], [ -95.783719077101338, 29.01094802906708 ], [ -95.783751076693676, 29.010937029110426 ], [ -95.783951076513858, 29.010740029178173 ], [ -95.78405107725176, 29.010602028987673 ], [ -95.784063076862793, 29.010476028981774 ], [ -95.784032076741809, 29.010355029185266 ], [ -95.783963077175429, 29.010245029653039 ], [ -95.783901077187878, 29.010173029048012 ], [ -95.783807077282518, 29.010107029306219 ], [ -95.783307076920323, 29.01009102879237 ], [ -95.782994076813182, 29.010168029648373 ], [ -95.782688076253677, 29.010283028819725 ], [ -95.782375075955301, 29.010387029361603 ], [ -95.781687076320367, 29.01045902894721 ], [ -95.781037076530183, 29.010486029529257 ], [ -95.779461075708227, 29.010761029534645 ], [ -95.779260075788187, 29.01084802990006 ], [ -95.779173075769961, 29.01097502990114 ], [ -95.779116075991482, 29.011140029117715 ], [ -95.779123075540127, 29.011569029492684 ], [ -95.779210075723043, 29.0117720298188 ], [ -95.779291075231527, 29.011893030128057 ], [ -95.779598075608476, 29.012256029491976 ], [ -95.779791075674268, 29.012448030172141 ], [ -95.779923075771336, 29.012690029489896 ], [ -95.779960075912896, 29.01294903012661 ], [ -95.779948076078014, 29.013185030243012 ], [ -95.779860076371392, 29.013350030333591 ], [ -95.779603075821683, 29.013713030292845 ], [ -95.779441075814518, 29.013976030407793 ], [ -95.779353075886604, 29.014158030467787 ], [ -95.779353075332565, 29.014295030167517 ], [ -95.779372075367448, 29.014422030498 ], [ -95.779409075785239, 29.0145430305029 ], [ -95.779672076122367, 29.015169030349174 ], [ -95.779947075911394, 29.016071030913348 ], [ -95.779972075942325, 29.016203031009198 ], [ -95.779972075959208, 29.016313030461625 ], [ -95.779928076391997, 29.016522031090229 ], [ -95.77984007615882, 29.016659030793644 ], [ -95.779734076006818, 29.016802030830455 ], [ -95.77959607605662, 29.016928030300498 ], [ -95.779365076176319, 29.017055030344295 ], [ -95.77900807635298, 29.01721403122265 ], [ -95.778733076267756, 29.017357030928544 ], [ -95.778420075983107, 29.017434030635989 ], [ -95.77803307591337, 29.017467031253897 ], [ -95.777626075015291, 29.017461031335472 ], [ -95.776782075378463, 29.017412030951483 ], [ -95.77653207556169, 29.017499030845276 ], [ -95.776244075510931, 29.017670031355923 ], [ -95.776106075099278, 29.017895031242741 ], [ -95.776131075517213, 29.018099031323665 ], [ -95.776225075541504, 29.01827403125462 ], [ -95.776356075405204, 29.018450031583058 ], [ -95.776531075631027, 29.018582031422898 ], [ -95.776694075441469, 29.018665031290809 ], [ -95.777050075886606, 29.018742031207847 ], [ -95.777494075762519, 29.018814030798982 ], [ -95.777901075199352, 29.018929031173059 ], [ -95.778120075506848, 29.019017030751392 ], [ -95.779389076280978, 29.019694031283159 ], [ -95.780308076058645, 29.020018031282316 ], [ -95.781440077014437, 29.020354031803162 ], [ -95.781697077102422, 29.020513031020847 ], [ -95.781853076621232, 29.020645031492226 ], [ -95.78203407642998, 29.020876031006686 ], [ -95.782078076410031, 29.021019031756673 ], [ -95.78217207664828, 29.021354031647707 ], [ -95.782115077083461, 29.021574031769877 ], [ -95.781990076596543, 29.021739031887861 ], [ -95.781565077207347, 29.022107031899971 ], [ -95.781333076182648, 29.022250032178668 ], [ -95.781089076862742, 29.022377031408247 ], [ -95.780858076464511, 29.022437031547064 ], [ -95.78076407690989, 29.022426031433486 ], [ -95.780552076776672, 29.022294032071542 ], [ -95.780345076528903, 29.022107031804833 ], [ -95.780201075955858, 29.022025031786793 ], [ -95.779983076113709, 29.021992031789409 ], [ -95.77970107610787, 29.0219800321028 ], [ -95.779607076721661, 29.021997031558492 ], [ -95.779313076604865, 29.022112031815716 ], [ -95.779101076581426, 29.022255032292769 ], [ -95.778869076555466, 29.022437031622577 ], [ -95.778700075814768, 29.022618032232749 ], [ -95.778550075605182, 29.022816031774497 ], [ -95.778344075501437, 29.023162032405523 ], [ -95.778074076355423, 29.024311031892033 ], [ -95.778005076364934, 29.024558032519042 ], [ -95.77801207579715, 29.024806032553297 ], [ -95.778080076234076, 29.024998032421085 ], [ -95.778368075850707, 29.025251032458872 ], [ -95.778468076278898, 29.0254540326716 ], [ -95.778537075994549, 29.025702032889278 ], [ -95.778561076399043, 29.025849032354142 ], [ -95.778574075958133, 29.025933032398779 ], [ -95.778573075801077, 29.025946033026091 ], [ -95.778561076289705, 29.026098032688136 ], [ -95.778518076205813, 29.026263032247233 ], [ -95.778555075927244, 29.026510032745023 ], [ -95.778736076571022, 29.026724032738734 ], [ -95.778899075998837, 29.026889033040607 ], [ -95.779118076059333, 29.027065033278461 ], [ -95.779374075982233, 29.027208033058116 ], [ -95.779643076876511, 29.02734003279167 ], [ -95.779881076639271, 29.027489032870061 ], [ -95.779944076631537, 29.027545033033356 ], [ -95.780106076501923, 29.027687033342296 ], [ -95.780375077038386, 29.027901033229281 ], [ -95.780609076613558, 29.028048033175779 ], [ -95.780913076834864, 29.028138033092201 ], [ -95.781100077265492, 29.028121033400105 ], [ -95.781457076470161, 29.028033033128118 ], [ -95.781645077070905, 29.028028032790822 ], [ -95.781913077355469, 29.02810503282052 ], [ -95.782022076682779, 29.028085032856552 ], [ -95.782151076863585, 29.027945032586231 ], [ -95.782220077170052, 29.027852032534881 ], [ -95.782339077378694, 29.027726032771294 ], [ -95.782526077548653, 29.02769303281643 ], [ -95.782639076762024, 29.027704032499638 ], [ -95.782908077236641, 29.02778103305409 ], [ -95.783114077780468, 29.027803032840545 ], [ -95.783315077845387, 29.027770032707895 ], [ -95.783465077003441, 29.027698032658247 ], [ -95.783652077583866, 29.02773703284155 ], [ -95.783846077864368, 29.027869033113948 ], [ -95.783909077865928, 29.02795103315696 ], [ -95.784009077716917, 29.028045032437962 ], [ -95.784071077517908, 29.028193033239194 ], [ -95.784078077799066, 29.028402033002909 ], [ -95.784065077987037, 29.028551032620097 ], [ -95.783971077925244, 29.028913032986484 ], [ -95.783946077872898, 29.029271033400068 ], [ -95.783952077194186, 29.029502033551857 ], [ -95.783990078163683, 29.029749032884151 ], [ -95.784090077350456, 29.029914033545232 ], [ -95.784121077280815, 29.030035033052254 ], [ -95.7841270775303, 29.030216033534167 ], [ -95.784102077946443, 29.030365033738288 ], [ -95.783996077818642, 29.030436033773075 ], [ -95.783871077163496, 29.030469033572992 ], [ -95.783664077504994, 29.03046903372233 ], [ -95.783539077864987, 29.030447033601344 ], [ -95.783370077094801, 29.030436032955642 ], [ -95.783201077998413, 29.030524033114293 ], [ -95.783139077715859, 29.030579033848589 ], [ -95.783064076986236, 29.030689033068864 ], [ -95.782788077324184, 29.031041033237639 ], [ -95.782063077711456, 29.031326033407694 ], [ -95.781862076768221, 29.031458033707278 ], [ -95.781806077544033, 29.031623033894469 ], [ -95.781794076965184, 29.031706033383671 ], [ -95.781612077151237, 29.032090034096495 ], [ -95.781462077404314, 29.032261034124563 ], [ -95.781314077445074, 29.032423033867083 ], [ -95.780736077243674, 29.033058033788041 ], [ -95.78033607725699, 29.033398034246051 ], [ -95.7800480767294, 29.03369003418635 ], [ -95.77960407682454, 29.033975034016706 ], [ -95.779404077048895, 29.03414603384967 ], [ -95.779297076702775, 29.034327034331966 ], [ -95.779291077108098, 29.034492034366021 ], [ -95.779341076191685, 29.034597034536411 ], [ -95.779447077118235, 29.034679034096694 ], [ -95.779547076659, 29.034718034244253 ], [ -95.779672077099136, 29.034745034383604 ], [ -95.779841076517386, 29.034756034112373 ], [ -95.780154077135023, 29.034734034074191 ], [ -95.780435077367116, 29.0347290345732 ], [ -95.780579076621166, 29.034751034181259 ], [ -95.780717077304899, 29.034817034264176 ], [ -95.780942076804934, 29.035004034497572 ], [ -95.781073076637171, 29.03516903461032 ], [ -95.781080077407452, 29.035334034151077 ], [ -95.780898077259991, 29.035581034517392 ], [ -95.78083507728924, 29.035724034440381 ], [ -95.780823077462927, 29.035817034711123 ], [ -95.780829077441794, 29.035944035024031 ], [ -95.780960077315314, 29.036213034377521 ], [ -95.781110076881305, 29.036581034790558 ], [ -95.781117077032235, 29.03690003493691 ], [ -95.781004077257066, 29.03715903517946 ], [ -95.781023077423342, 29.037324035263158 ], [ -95.781054077508358, 29.037434035359798 ], [ -95.781135077227418, 29.037516035173056 ], [ -95.781260077059386, 29.037620035377216 ], [ -95.781373077125295, 29.037703034879026 ], [ -95.781773077607383, 29.03794503482111 ], [ -95.781992077360599, 29.038033034982579 ], [ -95.782230077715269, 29.038165035270502 ], [ -95.782530077362438, 29.038313035174156 ], [ -95.782799077587143, 29.038264035009956 ], [ -95.783387078061494, 29.038099035128393 ], [ -95.783731077963864, 29.038066034701608 ], [ -95.784150078365627, 29.038083035098225 ], [ -95.784281078294953, 29.038149035409582 ], [ -95.784644078117736, 29.038356035143646 ], [ -95.785138078247158, 29.038638034854415 ], [ -95.785282078271479, 29.038748035431894 ], [ -95.785364078860297, 29.038858035408218 ], [ -95.785457077997989, 29.038963034809793 ], [ -95.785507078569722, 29.039155034878075 ], [ -95.785495078726086, 29.039265034787991 ], [ -95.785439078901675, 29.039391035046254 ], [ -95.785376077962425, 29.039501034869609 ], [ -95.78523807883326, 29.039617035278958 ], [ -95.78503807849566, 29.039743034857914 ], [ -95.784706078149085, 29.039996035571232 ], [ -95.784412077801491, 29.040293035362254 ], [ -95.784168078128246, 29.040502035385931 ], [ -95.783924077728543, 29.040738035130317 ], [ -95.78383707845056, 29.040908035981516 ], [ -95.783824077733655, 29.041057035491619 ], [ -95.783862078237973, 29.041167035226337 ], [ -95.783922078211532, 29.04128403534607 ], [ -95.784024078532823, 29.041425035660083 ], [ -95.784093078345734, 29.041629035400046 ], [ -95.784112078283286, 29.041766035421443 ], [ -95.784118077999324, 29.041958035849419 ], [ -95.783993077861112, 29.042651035721381 ], [ -95.783893078224239, 29.042843035823715 ], [ -95.783555077688774, 29.043234036461868 ], [ -95.783298078252187, 29.043459035906491 ], [ -95.783079077801872, 29.043574036378768 ], [ -95.782860077604369, 29.04364603627641 ], [ -95.782710078408272, 29.043662036370751 ], [ -95.782585077982631, 29.043651035836699 ], [ -95.782441077572116, 29.043585036480398 ], [ -95.782266078138306, 29.043481036248703 ], [ -95.78205807778599, 29.043425035820455 ], [ -95.782030077464626, 29.04341703605008 ], [ -95.781941078054288, 29.04339303586648 ], [ -95.781747077577194, 29.043464036325929 ], [ -95.781659077327632, 29.043536036166813 ], [ -95.781453077532831, 29.04355203610455 ], [ -95.781140076991761, 29.043502036349309 ], [ -95.780921077043033, 29.043453036435974 ], [ -95.780558077476769, 29.043447036545842 ], [ -95.780245077263586, 29.04345303629216 ], [ -95.779944077657248, 29.043507036200385 ], [ -95.779876076883639, 29.043519036357768 ], [ -95.779395076704347, 29.04366703596677 ], [ -95.779088077189868, 29.043848036331458 ], [ -95.778931076957235, 29.044019035949962 ], [ -95.778781076691658, 29.044244036442745 ], [ -95.778712077002567, 29.044436036883781 ], [ -95.778637077054427, 29.044601036260211 ], [ -95.778531076524317, 29.044728036662598 ], [ -95.778406077357886, 29.04477203642589 ], [ -95.778299076530814, 29.044772036331445 ], [ -95.778218076553813, 29.044722036873761 ], [ -95.778106077206459, 29.04462903657986 ], [ -95.777981077072127, 29.044508036029885 ], [ -95.777880076780335, 29.044381036882029 ], [ -95.777737076714658, 29.044332036111971 ], [ -95.777611076481165, 29.0443320366034 ], [ -95.77747407701203, 29.044365036312243 ], [ -95.777336076760648, 29.044563036836351 ], [ -95.777267076500507, 29.044876036942256 ], [ -95.777273076864489, 29.045057036945867 ], [ -95.776979076737831, 29.04569503640564 ], [ -95.776891076373417, 29.046025036729276 ], [ -95.776894076281351, 29.046134037255712 ], [ -95.776904076086907, 29.046410037001323 ], [ -95.776973076534006, 29.046800037000633 ], [ -95.777023076510091, 29.046910036965439 ], [ -95.777160076489963, 29.047058036733564 ], [ -95.777220076179532, 29.0471120370619 ], [ -95.77734207626996, 29.047223036964926 ], [ -95.777423077181012, 29.047366036902034 ], [ -95.777504077257703, 29.047894037083161 ], [ -95.777423077002581, 29.047987036850241 ], [ -95.777298077206254, 29.048009037236405 ], [ -95.777147076591618, 29.047916037615146 ], [ -95.777035076684726, 29.047866036764848 ], [ -95.776918076329181, 29.047888037380851 ], [ -95.776907076177565, 29.047890037565342 ], [ -95.776860076432143, 29.047899037131657 ], [ -95.7768400766561, 29.048034037494151 ], [ -95.776962076426912, 29.048251037248185 ], [ -95.776961077120248, 29.048829037123561 ], [ -95.776672077088151, 29.049623037248924 ], [ -95.776466076343283, 29.049947037446145 ], [ -95.776464076814364, 29.050381037626241 ], [ -95.776628076287025, 29.050634037704661 ], [ -95.776627076891955, 29.050887037746342 ], [ -95.776421076158513, 29.051103038037304 ], [ -95.776175076508537, 29.05124703761107 ], [ -95.776092076931178, 29.051392037894331 ], [ -95.776091076806708, 29.051970037748504 ], [ -95.776081076879734, 29.051981038403284 ], [ -95.776066076284323, 29.051997037925755 ], [ -95.775998076289554, 29.052068038427755 ], [ -95.775885076853484, 29.052186038196577 ], [ -95.77563907671211, 29.0522940377789 ], [ -95.775064075966768, 29.052401037873469 ], [ -95.774653076720313, 29.052617038194242 ], [ -95.774161076355497, 29.052652037837049 ], [ -95.77375007617519, 29.05286803812173 ], [ -95.773462076133953, 29.052867038080418 ], [ -95.77313407538513, 29.052794038720204 ], [ -95.772848075278858, 29.052577038088668 ], [ -95.772154075802007, 29.052286037921988 ], [ -95.772132075984416, 29.052277037969546 ], [ -95.772069075286439, 29.052250038619874 ], [ -95.771125075141001, 29.052212037959602 ], [ -95.770593075193915, 29.051886038375542 ], [ -95.770142075370714, 29.051885037843089 ], [ -95.769813075180153, 29.052101038677922 ], [ -95.769074074421695, 29.052172038765473 ], [ -95.768539074444234, 29.05274903850453 ], [ -95.768416074342426, 29.05274803822925 ], [ -95.767800074221483, 29.053036038149202 ], [ -95.767553074047768, 29.053252038551481 ], [ -95.767552074422909, 29.053686038435892 ], [ -95.767674074840784, 29.053975038883895 ], [ -95.767673074903669, 29.054300038476025 ], [ -95.767179074385638, 29.054841038757647 ], [ -95.767056074766614, 29.055057039456958 ], [ -95.767054074162317, 29.055455039363846 ], [ -95.766951074303392, 29.055617038837049 ], [ -95.766765074627017, 29.056068039501248 ], [ -95.76676407489586, 29.056538039408498 ], [ -95.766886074458881, 29.0568270395738 ], [ -95.766885074035272, 29.057261039403059 ], [ -95.766186074653348, 29.05794603937974 ], [ -95.766062074642761, 29.058198039350373 ], [ -95.766061073853692, 29.058596040083927 ], [ -95.766225074288144, 29.058740039374044 ], [ -95.766430074241512, 29.058741040023147 ], [ -95.767087074314574, 29.058526039935373 ], [ -95.767415074972263, 29.058526040075527 ], [ -95.767702074578594, 29.058707039426437 ], [ -95.767742075051885, 29.059033040210931 ], [ -95.767536075138608, 29.059357040189884 ], [ -95.767207074146611, 29.059646039897672 ], [ -95.766576074655987, 29.05993504010398 ], [ -95.766013073857778, 29.059880039658044 ], [ -95.765844074335661, 29.059836040100304 ], [ -95.765632074189739, 29.059803039745415 ], [ -95.765394073722945, 29.059869040166184 ], [ -95.765256074533582, 29.059974039738034 ], [ -95.765175074029159, 29.060090040142637 ], [ -95.765169073875356, 29.060101039756905 ], [ -95.765118073910926, 29.06019304029849 ], [ -95.765056073693202, 29.060463040427059 ], [ -95.765049074580944, 29.060622040062334 ], [ -95.765049074252261, 29.060727040527293 ], [ -95.765093074079758, 29.060853040096408 ], [ -95.765149074065462, 29.060936040322638 ], [ -95.765293074214824, 29.061057040607363 ], [ -95.765643074797779, 29.061271040578227 ], [ -95.766081074232503, 29.061436040027836 ], [ -95.767120074780522, 29.061953040169875 ], [ -95.767914074804153, 29.062239040459406 ], [ -95.768140075285189, 29.062283040465285 ], [ -95.768671074610381, 29.062338040757563 ], [ -95.768897075349585, 29.062498040862931 ], [ -95.76907207480248, 29.062641040556382 ], [ -95.769328075751133, 29.063009040133224 ], [ -95.76944107526225, 29.063295040518174 ], [ -95.769597075220176, 29.063603040433261 ], [ -95.769878075018553, 29.064900040989308 ], [ -95.770040075596128, 29.065555040801833 ], [ -95.770128075812167, 29.065703041436727 ], [ -95.770209075378801, 29.065874041319979 ], [ -95.770453075491787, 29.066215041179156 ], [ -95.770760076250298, 29.066363041595089 ], [ -95.771066075700176, 29.066446040839292 ], [ -95.771354076050059, 29.066462041448471 ], [ -95.771511075942698, 29.066451040785331 ], [ -95.771667075923531, 29.066413040759215 ], [ -95.771786076365586, 29.066352040824583 ], [ -95.772130076636714, 29.066088041322587 ], [ -95.772349075988132, 29.065841040848674 ], [ -95.772625076703989, 29.065374040840904 ], [ -95.772813076223173, 29.065094041278538 ], [ -95.772982076386583, 29.06488504087174 ], [ -95.773251076762364, 29.064638040948719 ], [ -95.773432076822203, 29.064506041072072 ], [ -95.773720076453642, 29.064451040554211 ], [ -95.773983076319666, 29.064445040411311 ], [ -95.774208076202868, 29.064478040767767 ], [ -95.77452107664574, 29.064561040267908 ], [ -95.775290076839909, 29.064732040313551 ], [ -95.776041076895169, 29.064831040442201 ], [ -95.776742077460639, 29.064908041020068 ], [ -95.777806077727632, 29.065040040270215 ], [ -95.777958077985261, 29.065065040918881 ], [ -95.778732078275752, 29.065194040760463 ], [ -95.780340077813307, 29.065502040896437 ], [ -95.780884078053248, 29.065596040540228 ], [ -95.781109078287429, 29.065673040316312 ], [ -95.781453078782747, 29.065816040513575 ], [ -95.781591078707379, 29.065904040503007 ], [ -95.781697078428209, 29.06601904113176 ], [ -95.781804078851209, 29.066096040371264 ], [ -95.782035079150447, 29.066322040464673 ], [ -95.782166078806014, 29.066470040655251 ], [ -95.782492078650392, 29.066750040705074 ], [ -95.782654079292627, 29.066877040649363 ], [ -95.78322407936102, 29.067086040597754 ], [ -95.783568079118368, 29.067168040890721 ], [ -95.783975079308561, 29.067240040887633 ], [ -95.784106079170954, 29.067251040848237 ], [ -95.784262079074352, 29.067284041028135 ], [ -95.784400079039017, 29.067383040780346 ], [ -95.784631079169131, 29.067526040870337 ], [ -95.78503207988868, 29.067867040703586 ], [ -95.785288079663047, 29.068114041179044 ], [ -95.786671079996921, 29.068752041200128 ], [ -95.787522080087285, 29.069027041440005 ], [ -95.788304080014015, 29.069308041092139 ], [ -95.788529080912625, 29.069423041686143 ], [ -95.788755080854443, 29.069522041604017 ], [ -95.788917080924008, 29.069621041467698 ], [ -95.789074080852075, 29.069731041516565 ], [ -95.789280081026575, 29.069934041464069 ], [ -95.789291080764443, 29.06995204179551 ], [ -95.789300080864436, 29.069968041387227 ], [ -95.789450080911919, 29.069948041358217 ], [ -95.790641081515204, 29.069829041670442 ], [ -95.791368081055708, 29.069732041605484 ], [ -95.793091081392362, 29.069517041492858 ], [ -95.793460081637562, 29.069471041438053 ], [ -95.79364208222691, 29.06945604128952 ], [ -95.794018081586785, 29.069409041157396 ], [ -95.794272082402827, 29.069377041256676 ], [ -95.795943081856038, 29.06917904112203 ], [ -95.796391082625192, 29.069113041325135 ], [ -95.797250083050457, 29.069009040670604 ], [ -95.800362083957339, 29.068633040339702 ], [ -95.802095083883714, 29.068408040538905 ], [ -95.802600083798609, 29.068353040156996 ], [ -95.804773084483998, 29.068096040065384 ], [ -95.807071085502045, 29.067822040161111 ], [ -95.809002085926693, 29.067584040437712 ], [ -95.810089086237809, 29.067458040523643 ], [ -95.81044908556423, 29.067418039853234 ], [ -95.811025086345339, 29.067348040516642 ], [ -95.817233087172283, 29.066593040122175 ], [ -95.817926088292523, 29.066509039312059 ], [ -95.818149087599508, 29.066481039824044 ], [ -95.819529087912045, 29.066351039574869 ], [ -95.820156088382262, 29.066295039587242 ], [ -95.823845089296114, 29.066045039708108 ], [ -95.827211090327395, 29.065749039498751 ], [ -95.82998509045413, 29.065416039555327 ], [ -95.834076091834007, 29.0649680384529 ], [ -95.836520092112394, 29.064652038420302 ], [ -95.837057092678592, 29.064572038431542 ], [ -95.837488092564556, 29.064461039016035 ], [ -95.837926092621885, 29.064331039048604 ], [ -95.838388093335567, 29.064159038805311 ], [ -95.838789092764614, 29.063974038314882 ], [ -95.839178092872473, 29.063777038599813 ], [ -95.839560093272894, 29.063536038777169 ], [ -95.840271093330841, 29.062984038324458 ], [ -95.840502093620131, 29.062800037846511 ], [ -95.840841093076747, 29.062497038208548 ], [ -95.841364093364746, 29.062015037632758 ], [ -95.842119094264078, 29.061319038297427 ], [ -95.845031094283897, 29.05869403741319 ], [ -95.845088093959319, 29.058641037225179 ], [ -95.84553309491902, 29.058231037301017 ], [ -95.847520094910763, 29.056456037115264 ], [ -95.847670094705492, 29.056322036395439 ], [ -95.84959509568759, 29.054586036268962 ], [ -95.850567095267593, 29.053709036199734 ], [ -95.850670096129619, 29.053616035706355 ], [ -95.851291095460653, 29.053031035484519 ], [ -95.851777096327751, 29.052589035747559 ], [ -95.852821095720714, 29.051318035140632 ], [ -95.853460095807478, 29.050350035498859 ], [ -95.854214096195946, 29.049238034849804 ], [ -95.854571096237876, 29.048726034720033 ], [ -95.854882096324062, 29.04832503523826 ], [ -95.855242097030541, 29.047923034887255 ], [ -95.855651096961125, 29.047502034952892 ], [ -95.856185097028572, 29.047042034885095 ], [ -95.856541097189961, 29.046751034346354 ], [ -95.856988097186289, 29.046458034696311 ], [ -95.857683096968515, 29.046029034577607 ], [ -95.858706097142189, 29.045454034432414 ], [ -95.859695097462591, 29.04490603361479 ], [ -95.860201097690847, 29.044615033434155 ], [ -95.860921098015623, 29.044193033908215 ], [ -95.861548097814364, 29.043768033620829 ], [ -95.86221509813015, 29.043247033709982 ], [ -95.863154098147902, 29.042457033526659 ], [ -95.863796098212774, 29.041852032949645 ], [ -95.864455098138137, 29.041286032589891 ], [ -95.864621098365518, 29.041113032689147 ], [ -95.870287100201139, 29.035833032065913 ], [ -95.870545100026433, 29.035605031610746 ], [ -95.871989100708149, 29.034276031404872 ], [ -95.873172100721234, 29.033165031270013 ], [ -95.873314100887569, 29.033031030772751 ], [ -95.873808101110228, 29.03253103073834 ], [ -95.875238100658947, 29.030984030137695 ], [ -95.875725100681407, 29.030540030886417 ], [ -95.875978100708792, 29.030312030284293 ], [ -95.877390101310937, 29.028987029710027 ], [ -95.878210101615267, 29.028234030284224 ], [ -95.878473101590075, 29.028005029497038 ], [ -95.879211101817774, 29.027335030020755 ], [ -95.882490102402329, 29.024302028975058 ], [ -95.883335103156597, 29.02354202920268 ], [ -95.883705102370186, 29.023224028664043 ], [ -95.884012103089631, 29.02294602890494 ], [ -95.884612102784047, 29.022407028790262 ], [ -95.884901102575128, 29.022162028429776 ], [ -95.885421102701827, 29.021692028600615 ], [ -95.887249103538963, 29.020143027879641 ], [ -95.88802510373273, 29.019423027696401 ], [ -95.88881110405778, 29.018719027519513 ], [ -95.889587103839176, 29.017999027696032 ], [ -95.890387104500505, 29.017290027539637 ], [ -95.891155104762504, 29.016577027143704 ], [ -95.891923104788077, 29.015879026581832 ], [ -95.892400104180922, 29.015439026882881 ], [ -95.892502104198044, 29.015347026524115 ], [ -95.893287104614657, 29.014640027038197 ], [ -95.893719104907788, 29.014252026715852 ], [ -95.895181105694931, 29.012794025957589 ], [ -95.89589810500334, 29.012131026124528 ], [ -95.897819105734627, 29.01052202557667 ], [ -95.898680105605081, 29.009728025875397 ], [ -95.900266106610772, 29.008290025519297 ], [ -95.900471106731501, 29.008106024829146 ], [ -95.901841106729606, 29.006882024372846 ], [ -95.902965107281858, 29.005844024884492 ], [ -95.903336106656823, 29.005506024296785 ], [ -95.903595106894798, 29.005270024710232 ], [ -95.904711107757308, 29.004232024462461 ], [ -95.905366107183042, 29.003650023742306 ], [ -95.905875107332008, 29.003187024258988 ], [ -95.906290107413753, 29.002915023725205 ], [ -95.906950107661018, 29.002498023447526 ], [ -95.90762610829394, 29.002070023935804 ], [ -95.909043108276009, 29.001241022982871 ], [ -95.910709109194926, 29.000265022677667 ], [ -95.91278010867893, 28.999040023189714 ], [ -95.913203109045099, 28.998790022867478 ], [ -95.913707109554622, 28.9984910225824 ], [ -95.914391109854051, 28.998087022846708 ], [ -95.914943109130462, 28.997760022698809 ], [ -95.916322110055191, 28.99694502237773 ], [ -95.916389110488396, 28.996904021847101 ], [ -95.918515110650986, 28.99565002187753 ], [ -95.918974110962608, 28.995380021745699 ], [ -95.920305110843643, 28.994609021303095 ], [ -95.922311110965694, 28.993431020981209 ], [ -95.922526111229274, 28.993301021164157 ], [ -95.923549111628034, 28.992685021343927 ], [ -95.924516111789188, 28.992231021189919 ], [ -95.924555111659998, 28.992208020739621 ], [ -95.925162112445634, 28.991824021138459 ], [ -95.926384112186383, 28.991041020610353 ], [ -95.926418112525852, 28.991016021142826 ], [ -95.926619112589549, 28.990864020394071 ], [ -95.927174112008458, 28.990534020228775 ], [ -95.928982113366146, 28.989469020478133 ], [ -95.930829113545002, 28.988381019989639 ], [ -95.931117113363115, 28.988209020127538 ], [ -95.932908113856797, 28.987139019854357 ], [ -95.933316113560693, 28.986895019678496 ], [ -95.934029114013683, 28.9864680191533 ], [ -95.935917114810806, 28.985370019554143 ], [ -95.936916114738139, 28.984819019231324 ], [ -95.937930114611731, 28.98419801861618 ], [ -95.938831115597694, 28.983661019001346 ], [ -95.938975115403863, 28.983581018834077 ], [ -95.939910115420332, 28.983079018884482 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 688, "Tract": "48321730302", "Area_SqMi": 1.4980056809838691, "total_2009": 348, "total_2010": 337, "total_2011": 293, "total_2012": 171, "total_2013": 167, "total_2014": 157, "total_2015": 175, "total_2016": 206, "total_2017": 209, "total_2018": 205, "total_2019": 224, "total_2020": 202, "age1": 29, "age2": 109, "age3": 42, "earn1": 28, "earn2": 71, "earn3": 81, "naics_s01": 18, "naics_s02": 0, "naics_s03": 9, "naics_s04": 4, "naics_s05": 0, "naics_s06": 0, "naics_s07": 23, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 8, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 101, "naics_s17": 0, "naics_s18": 12, "naics_s19": 5, "naics_s20": 0, "race1": 142, "race2": 21, "race3": 1, "race4": 14, "race5": 1, "race6": 1, "ethnicity1": 120, "ethnicity2": 60, "edu1": 30, "edu2": 48, "edu3": 54, "edu4": 19, "Shape_Length": 26652.301127623126, "Shape_Area": 41761834.523483649, "total_2021": 208, "total_2022": 180 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.96956412259533, 28.967163014599002 ], [ -95.969556121995353, 28.96684701452336 ], [ -95.969554122014742, 28.966765013878458 ], [ -95.969475122104726, 28.964236014148678 ], [ -95.969391121762357, 28.963110013144664 ], [ -95.969426122091932, 28.962615013178418 ], [ -95.969408122512533, 28.962023013316838 ], [ -95.969407122420165, 28.961892013499398 ], [ -95.969362122261018, 28.960636012757544 ], [ -95.969308122350938, 28.959075012980389 ], [ -95.969258121591892, 28.957218011957647 ], [ -95.969197121243681, 28.955776011858443 ], [ -95.96916412212677, 28.954730012022253 ], [ -95.969134121099216, 28.953764011845095 ], [ -95.969123121370785, 28.953315011860553 ], [ -95.969085121265493, 28.953174011957199 ], [ -95.969055121667125, 28.95206701162801 ], [ -95.969049121666814, 28.951867011194143 ], [ -95.969047121900033, 28.951787011660286 ], [ -95.968923121772193, 28.949697010701151 ], [ -95.968914121080715, 28.949560010811737 ], [ -95.968771121802121, 28.949092010443863 ], [ -95.968519120977632, 28.948484011025556 ], [ -95.967946121250279, 28.947395010128361 ], [ -95.967600120508095, 28.946739010048642 ], [ -95.967389121179366, 28.946318010218164 ], [ -95.967140121081783, 28.945822010208879 ], [ -95.966910120183101, 28.945363010419996 ], [ -95.966051120065586, 28.943715009331438 ], [ -95.964260120271817, 28.94027700873745 ], [ -95.963962120010478, 28.940486009120718 ], [ -95.961063118741322, 28.943083009815695 ], [ -95.960297119171301, 28.943846009689601 ], [ -95.958843118151862, 28.945257009909437 ], [ -95.958318118376852, 28.945784010757642 ], [ -95.958210118705921, 28.945879010484337 ], [ -95.957689117933384, 28.94633801078767 ], [ -95.957627118384181, 28.946381010399691 ], [ -95.957479118471554, 28.946482010189257 ], [ -95.957028117763954, 28.946795010397359 ], [ -95.95621711832564, 28.947235010915989 ], [ -95.954552117464388, 28.94809501069107 ], [ -95.953945117461018, 28.948418010834231 ], [ -95.953664117716144, 28.948648011477097 ], [ -95.953239117781138, 28.949027011240723 ], [ -95.952915117029406, 28.949474010829196 ], [ -95.952763116865952, 28.949787010993717 ], [ -95.952644116976643, 28.950083011416151 ], [ -95.952603117235071, 28.950204011757101 ], [ -95.95255011701164, 28.950362011112055 ], [ -95.952495117711408, 28.950618011621657 ], [ -95.952493117413056, 28.95068101151892 ], [ -95.95248911731845, 28.950835011600272 ], [ -95.952524117653439, 28.951979011390296 ], [ -95.952558116862875, 28.952875012433449 ], [ -95.952567117617903, 28.952972011970388 ], [ -95.952563117607696, 28.953055012124889 ], [ -95.952579117346218, 28.953832011860992 ], [ -95.952611117246477, 28.955661012369429 ], [ -95.95262411773966, 28.956398012641177 ], [ -95.952723117874669, 28.959705013024806 ], [ -95.952744117681675, 28.960376013153283 ], [ -95.952813117552139, 28.962667014251707 ], [ -95.952824118330497, 28.963041013916765 ], [ -95.953119117654126, 28.963059013687062 ], [ -95.95313911831289, 28.963116014153044 ], [ -95.953259118001355, 28.963468014546105 ], [ -95.954266118704339, 28.966408014582314 ], [ -95.954391118390276, 28.966584014654266 ], [ -95.954616118503012, 28.96674401471865 ], [ -95.954760118121769, 28.966755014372605 ], [ -95.954716118847074, 28.966881015076503 ], [ -95.954652118896306, 28.967023014800699 ], [ -95.954628118107507, 28.967079015276173 ], [ -95.95457811852863, 28.967222015340774 ], [ -95.958685119932127, 28.967111014318824 ], [ -95.960297120328889, 28.96709401496139 ], [ -95.961904120007404, 28.96711001447828 ], [ -95.963210120297518, 28.967077015009902 ], [ -95.963391120563642, 28.96708801453169 ], [ -95.96371612038898, 28.967027014125872 ], [ -95.963916120732137, 28.966961014841655 ], [ -95.963979121110114, 28.966912014285317 ], [ -95.964060121105163, 28.966873014451672 ], [ -95.964154120687965, 28.966868014519715 ], [ -95.964348121248491, 28.966824014179767 ], [ -95.964404121112025, 28.966796014405222 ], [ -95.964473120497189, 28.966730014690583 ], [ -95.964598120548899, 28.966686014663367 ], [ -95.964723121256625, 28.96667001472003 ], [ -95.964879120732817, 28.966670014079792 ], [ -95.964991120659164, 28.966703014396916 ], [ -95.96542912106338, 28.966889014041303 ], [ -95.965631121692681, 28.966964014658561 ], [ -95.966042121256095, 28.967115014109471 ], [ -95.966160121669674, 28.967137014364759 ], [ -95.966528121885787, 28.967146014771767 ], [ -95.966567121157496, 28.967147014668193 ], [ -95.96793512222095, 28.967169014227697 ], [ -95.968018121989772, 28.967169014130544 ], [ -95.96956412259533, 28.967163014599002 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 689, "Tract": "48039661100", "Area_SqMi": 5.4433427453642338, "total_2009": 2734, "total_2010": 3502, "total_2011": 4122, "total_2012": 3804, "total_2013": 3792, "total_2014": 3433, "total_2015": 2965, "total_2016": 3328, "total_2017": 3433, "total_2018": 3218, "total_2019": 3346, "total_2020": 3201, "age1": 1069, "age2": 1777, "age3": 752, "earn1": 484, "earn2": 1241, "earn3": 1873, "naics_s01": 0, "naics_s02": 29, "naics_s03": 17, "naics_s04": 524, "naics_s05": 191, "naics_s06": 154, "naics_s07": 1194, "naics_s08": 2, "naics_s09": 0, "naics_s10": 69, "naics_s11": 23, "naics_s12": 42, "naics_s13": 14, "naics_s14": 734, "naics_s15": 6, "naics_s16": 308, "naics_s17": 0, "naics_s18": 229, "naics_s19": 62, "naics_s20": 0, "race1": 2964, "race2": 427, "race3": 27, "race4": 135, "race5": 5, "race6": 40, "ethnicity1": 2211, "ethnicity2": 1387, "edu1": 562, "edu2": 800, "edu3": 781, "edu4": 386, "Shape_Length": 64153.506275027925, "Shape_Area": 151751079.36653692, "total_2021": 3447, "total_2022": 3598 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.245865959466428, 29.47438014226158 ], [ -95.245864959127246, 29.474360142443349 ], [ -95.245857959232723, 29.474158142375298 ], [ -95.245814958939306, 29.472772142242757 ], [ -95.245743958334998, 29.470423141702874 ], [ -95.245720959106507, 29.469610141790263 ], [ -95.24572095885064, 29.467848140751936 ], [ -95.245683958499157, 29.466326140597744 ], [ -95.245569958634803, 29.462995140504443 ], [ -95.245566958884055, 29.46284313977489 ], [ -95.245529958025642, 29.461313139548803 ], [ -95.245482958548507, 29.460264139237253 ], [ -95.245433958424258, 29.458592138840629 ], [ -95.245424958406687, 29.458421139549454 ], [ -95.245369958265982, 29.456668138451629 ], [ -95.245368958236469, 29.456004138648183 ], [ -95.245286958038491, 29.453983138715827 ], [ -95.245270957920951, 29.453687138424129 ], [ -95.245261958097771, 29.453404137842426 ], [ -95.245268957506241, 29.453215138332986 ], [ -95.245209957911953, 29.451885137433088 ], [ -95.245177957402518, 29.451108138053627 ], [ -95.245137958256123, 29.44986513719514 ], [ -95.245132958000397, 29.449719137352815 ], [ -95.245003957347578, 29.446431136525376 ], [ -95.244980957204234, 29.44576113644306 ], [ -95.244928957709718, 29.444052136231086 ], [ -95.244875957399003, 29.442956135999612 ], [ -95.244808956798522, 29.441178135482001 ], [ -95.244803957662953, 29.441123135786835 ], [ -95.244690956847506, 29.439074135038556 ], [ -95.244684957219022, 29.438806135205105 ], [ -95.244671957451033, 29.438587135570099 ], [ -95.244643957388121, 29.438087135043386 ], [ -95.244588956635027, 29.436351134433242 ], [ -95.244511957330275, 29.435629134628485 ], [ -95.244449957383182, 29.43443713470359 ], [ -95.244410956576601, 29.433711134007218 ], [ -95.24443895715028, 29.432869134229669 ], [ -95.244435956378197, 29.432524133973697 ], [ -95.244409956680244, 29.431988133479845 ], [ -95.244395957260139, 29.431760133714445 ], [ -95.244374957073973, 29.431050133880206 ], [ -95.244332957124286, 29.430146133091625 ], [ -95.244320956872684, 29.429916132951369 ], [ -95.24428495689547, 29.429179133591603 ], [ -95.243880956116357, 29.429044133192029 ], [ -95.243469956499425, 29.428907132749082 ], [ -95.243418956625021, 29.428890133594148 ], [ -95.241984956499778, 29.428391132982274 ], [ -95.240637955847646, 29.427923132769322 ], [ -95.239422955396634, 29.427514132896423 ], [ -95.238336954608201, 29.427141133100566 ], [ -95.237136954759023, 29.426730133028428 ], [ -95.234862954220731, 29.425947132728624 ], [ -95.234556953977403, 29.425834133224825 ], [ -95.232090953765535, 29.424995132701813 ], [ -95.230569953306926, 29.42445313254975 ], [ -95.229226952838374, 29.424005132322339 ], [ -95.228689952302631, 29.423825133048435 ], [ -95.228600952480392, 29.423796132305661 ], [ -95.227835952121836, 29.423548132140112 ], [ -95.227515951736819, 29.423421132967519 ], [ -95.227328952110014, 29.423347132132758 ], [ -95.227016951601854, 29.423223132848548 ], [ -95.22692095224815, 29.423183132440961 ], [ -95.226273951646277, 29.422871132842296 ], [ -95.225969951338016, 29.422692132774827 ], [ -95.224892951576933, 29.422201132803714 ], [ -95.223998951102246, 29.421793131918307 ], [ -95.222674950383649, 29.42118913254561 ], [ -95.220605949798738, 29.420246132110879 ], [ -95.218756949913171, 29.419430131985028 ], [ -95.21732794920554, 29.418799132071022 ], [ -95.216931949084653, 29.418624131640467 ], [ -95.215089948935685, 29.417811131745989 ], [ -95.214696948836789, 29.41763813148464 ], [ -95.213094948217815, 29.4169211319543 ], [ -95.210141947149623, 29.415597131804198 ], [ -95.209554947346831, 29.415334131372479 ], [ -95.206127945844571, 29.41379113088967 ], [ -95.205762946195108, 29.413625131699266 ], [ -95.205246945901166, 29.41339013088934 ], [ -95.200894944797597, 29.411407130791183 ], [ -95.199396943959215, 29.410717130479846 ], [ -95.19921694398333, 29.410643131045781 ], [ -95.198455943658061, 29.410328130859508 ], [ -95.197074943267054, 29.409864130694512 ], [ -95.196675943355075, 29.409726131060314 ], [ -95.19592494362594, 29.409465130763817 ], [ -95.198211944001272, 29.41324913132577 ], [ -95.198222944248442, 29.413272131382559 ], [ -95.198992944709545, 29.414461131717768 ], [ -95.199345944394409, 29.41500013165528 ], [ -95.20056994519571, 29.416851132018195 ], [ -95.200671944886778, 29.416987131778342 ], [ -95.200700944509819, 29.417032132556628 ], [ -95.201104944968563, 29.417660132330965 ], [ -95.2069279474143, 29.426467133811538 ], [ -95.206982946921556, 29.426550133529663 ], [ -95.209346947275066, 29.42998513486457 ], [ -95.213480949455757, 29.43608513531569 ], [ -95.214144949090382, 29.437086136108114 ], [ -95.214566949695822, 29.437722135807483 ], [ -95.214711949416525, 29.437937135595945 ], [ -95.215308949882214, 29.438911136390487 ], [ -95.21649694970678, 29.440692136386154 ], [ -95.217812950070311, 29.44267413671664 ], [ -95.218176950406217, 29.443215136967115 ], [ -95.220135951325261, 29.4461341378498 ], [ -95.220157951680861, 29.446167137334559 ], [ -95.221543951871666, 29.448232138029088 ], [ -95.222609952403843, 29.449820137913647 ], [ -95.223870952743326, 29.451685138708235 ], [ -95.225192953160629, 29.453642138738623 ], [ -95.225436953100072, 29.454002138952738 ], [ -95.225476952729295, 29.45406213859702 ], [ -95.226121953398021, 29.455017139320443 ], [ -95.229824954304561, 29.460672140228336 ], [ -95.230483954344209, 29.461648140532308 ], [ -95.230519954261794, 29.461708140205303 ], [ -95.231593954685238, 29.463298141036212 ], [ -95.231632955082532, 29.463356140512943 ], [ -95.231682955376087, 29.463431140539853 ], [ -95.233087955485246, 29.46557114097503 ], [ -95.232988955775255, 29.466168141299029 ], [ -95.232946955780378, 29.466419140999331 ], [ -95.232901955171599, 29.466597140858944 ], [ -95.232770955179888, 29.467115141582394 ], [ -95.232576955407509, 29.468140141646778 ], [ -95.232289955701845, 29.469725141628984 ], [ -95.23217495520548, 29.470351142493048 ], [ -95.232074955057911, 29.470891142169368 ], [ -95.23187495568591, 29.471971142147893 ], [ -95.231754955195143, 29.472575142940823 ], [ -95.231814955576951, 29.472581142261937 ], [ -95.23203795544633, 29.472610142266046 ], [ -95.235475956640769, 29.473041142927848 ], [ -95.238972957216163, 29.473489142396367 ], [ -95.240091957834395, 29.473626142855395 ], [ -95.240767958091268, 29.473719142240011 ], [ -95.241947957649501, 29.473871142727315 ], [ -95.24334095849585, 29.474062142910615 ], [ -95.244635958734136, 29.474221142628345 ], [ -95.245865959466428, 29.47438014226158 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 690, "Tract": "48039663300", "Area_SqMi": 0.96036738340171213, "total_2009": 2310, "total_2010": 2099, "total_2011": 1948, "total_2012": 1556, "total_2013": 1464, "total_2014": 1423, "total_2015": 1719, "total_2016": 1832, "total_2017": 1827, "total_2018": 1881, "total_2019": 1992, "total_2020": 1932, "age1": 574, "age2": 850, "age3": 452, "earn1": 522, "earn2": 628, "earn3": 726, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 84, "naics_s05": 0, "naics_s06": 1, "naics_s07": 194, "naics_s08": 0, "naics_s09": 56, "naics_s10": 118, "naics_s11": 23, "naics_s12": 134, "naics_s13": 0, "naics_s14": 24, "naics_s15": 14, "naics_s16": 295, "naics_s17": 242, "naics_s18": 379, "naics_s19": 45, "naics_s20": 263, "race1": 1579, "race2": 155, "race3": 14, "race4": 104, "race5": 0, "race6": 24, "ethnicity1": 1325, "ethnicity2": 551, "edu1": 249, "edu2": 345, "edu3": 428, "edu4": 280, "Shape_Length": 25273.494485877796, "Shape_Area": 26773398.964035809, "total_2021": 1921, "total_2022": 1876 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.455171994125806, 29.047088047126302 ], [ -95.455155994695829, 29.046954047206615 ], [ -95.45513299453809, 29.046761047080551 ], [ -95.45497599432646, 29.045934047481669 ], [ -95.454593994639069, 29.043690046931854 ], [ -95.454481994426686, 29.042792046627486 ], [ -95.454408994060771, 29.042318046038865 ], [ -95.454387994057825, 29.042102046167166 ], [ -95.454322994018824, 29.041672046018398 ], [ -95.454277993707791, 29.041461046013634 ], [ -95.454212993975133, 29.041195046034659 ], [ -95.454103993753122, 29.040830046037904 ], [ -95.453992993758973, 29.040521045713767 ], [ -95.453865993482538, 29.040217046175108 ], [ -95.453789993391055, 29.040068046146441 ], [ -95.453757994188322, 29.040007046109164 ], [ -95.453728993853943, 29.039944046046276 ], [ -95.453641993880851, 29.039752045977899 ], [ -95.453160993602935, 29.0389890457257 ], [ -95.452714993393698, 29.038457045390196 ], [ -95.452256993344037, 29.037990045158931 ], [ -95.451966992896104, 29.037753045270115 ], [ -95.451777993417181, 29.037584045812388 ], [ -95.45136899266474, 29.037264045218137 ], [ -95.45122099298878, 29.037157045801678 ], [ -95.451062993360893, 29.037042045524331 ], [ -95.450769993088883, 29.036836045707357 ], [ -95.450301992615891, 29.036533045480443 ], [ -95.449842992186504, 29.036276045420657 ], [ -95.449031992436858, 29.035822045574282 ], [ -95.44893199263997, 29.03576804551783 ], [ -95.448590992250871, 29.035579044798094 ], [ -95.447549991749298, 29.035058045018157 ], [ -95.447251991785564, 29.034916044610249 ], [ -95.447016992128653, 29.03476404528757 ], [ -95.446159991572287, 29.034280044896235 ], [ -95.4450399911034, 29.033546045055942 ], [ -95.444301990936111, 29.03308904493645 ], [ -95.443434990498403, 29.032554044607526 ], [ -95.443042990651122, 29.032280044751591 ], [ -95.442615990974858, 29.032023044697667 ], [ -95.441988990666971, 29.031608044633359 ], [ -95.441632989920024, 29.031365044393016 ], [ -95.441262990481533, 29.031070044304347 ], [ -95.441141990608827, 29.030979044555536 ], [ -95.440704989656382, 29.030595044579666 ], [ -95.440311990095893, 29.030221044088979 ], [ -95.440076989596363, 29.029970044151806 ], [ -95.439852989670698, 29.029713044117656 ], [ -95.439781990079766, 29.029624043793987 ], [ -95.43968098968692, 29.029486043893058 ], [ -95.439483989587259, 29.029216043822704 ], [ -95.439234989818942, 29.02884704411181 ], [ -95.439147989314094, 29.028698043707472 ], [ -95.439059989746085, 29.028561043982489 ], [ -95.438847989114976, 29.02817904377423 ], [ -95.438734989394746, 29.027973043634006 ], [ -95.438361989592494, 29.027150044029643 ], [ -95.437451989131134, 29.025244043738631 ], [ -95.437265989259814, 29.024856042959438 ], [ -95.437104989138533, 29.024522043041983 ], [ -95.436520988271639, 29.023449043196621 ], [ -95.436332988663978, 29.023521043028964 ], [ -95.436186988303092, 29.023587043235505 ], [ -95.43613698852181, 29.023610043024483 ], [ -95.436028988329682, 29.023659042925591 ], [ -95.43581298849719, 29.023765042766264 ], [ -95.435603988880132, 29.023879043252169 ], [ -95.435402988084249, 29.024002043451819 ], [ -95.435207988336145, 29.024134043127024 ], [ -95.435020988354651, 29.024275043510492 ], [ -95.434806988487026, 29.024487043575444 ], [ -95.43470198829047, 29.024610043741486 ], [ -95.43443698852478, 29.024935043683708 ], [ -95.434324988103683, 29.025116043494513 ], [ -95.434120987788489, 29.025507043110366 ], [ -95.434058988423217, 29.025716043453176 ], [ -95.434012988407005, 29.025924043598721 ], [ -95.433974988711299, 29.026137043744249 ], [ -95.433949987865034, 29.026352043502701 ], [ -95.433942988579531, 29.026510043336295 ], [ -95.433320987952726, 29.026544044072502 ], [ -95.433387988165379, 29.027420044231619 ], [ -95.433509987691281, 29.028265043774965 ], [ -95.433509987870195, 29.028481044161726 ], [ -95.433313988252294, 29.031031044946708 ], [ -95.433235987988425, 29.03205604452781 ], [ -95.433389988142309, 29.032722045381458 ], [ -95.434045988080086, 29.034099045713965 ], [ -95.434594989062688, 29.035500045366323 ], [ -95.43435098874447, 29.036282045830234 ], [ -95.433579989062409, 29.038172046247261 ], [ -95.433483989127751, 29.039441046391289 ], [ -95.433395988438946, 29.040273046955132 ], [ -95.43417398929715, 29.040261046350537 ], [ -95.434560989433123, 29.040264046340141 ], [ -95.435845989765767, 29.040266046586453 ], [ -95.436104989207863, 29.040296046805324 ], [ -95.436341989352073, 29.040334046114992 ], [ -95.436911989318631, 29.040469046119636 ], [ -95.437098990097738, 29.040512046882636 ], [ -95.437377989713212, 29.040599047002651 ], [ -95.437729990023328, 29.040718046861073 ], [ -95.43821998970958, 29.04089004640722 ], [ -95.4393829901815, 29.041333046884503 ], [ -95.440548990503856, 29.041793046638027 ], [ -95.440994990991612, 29.041954046434398 ], [ -95.441452990784114, 29.042140047101292 ], [ -95.443353991701059, 29.042830046997899 ], [ -95.445018991799913, 29.043440047277745 ], [ -95.446662992321549, 29.044072046938151 ], [ -95.44752099197585, 29.044421047181505 ], [ -95.448121992602708, 29.044649047150209 ], [ -95.449537993405556, 29.045146047414995 ], [ -95.45017399271272, 29.045383046992836 ], [ -95.453180993771184, 29.046502046886424 ], [ -95.453633994271527, 29.046683047753273 ], [ -95.453781994400615, 29.046727046926346 ], [ -95.453989994012147, 29.046804047420196 ], [ -95.454296993837488, 29.046907047436328 ], [ -95.454413994561932, 29.046932047284535 ], [ -95.454840994715184, 29.047023047677229 ], [ -95.455171994125806, 29.047088047126302 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 691, "Tract": "48201413302", "Area_SqMi": 0.68320331102190845, "total_2009": 796, "total_2010": 673, "total_2011": 547, "total_2012": 548, "total_2013": 584, "total_2014": 596, "total_2015": 622, "total_2016": 758, "total_2017": 799, "total_2018": 847, "total_2019": 945, "total_2020": 935, "age1": 212, "age2": 362, "age3": 186, "earn1": 194, "earn2": 289, "earn3": 277, "naics_s01": 0, "naics_s02": 7, "naics_s03": 0, "naics_s04": 27, "naics_s05": 0, "naics_s06": 31, "naics_s07": 177, "naics_s08": 37, "naics_s09": 0, "naics_s10": 10, "naics_s11": 0, "naics_s12": 66, "naics_s13": 0, "naics_s14": 0, "naics_s15": 54, "naics_s16": 129, "naics_s17": 0, "naics_s18": 183, "naics_s19": 39, "naics_s20": 0, "race1": 519, "race2": 133, "race3": 6, "race4": 89, "race5": 3, "race6": 10, "ethnicity1": 499, "ethnicity2": 261, "edu1": 126, "edu2": 158, "edu3": 153, "edu4": 111, "Shape_Length": 20583.419154714862, "Shape_Area": 19046538.997137696, "total_2021": 742, "total_2022": 760 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.4400760180406, 29.690642180676363 ], [ -95.440075018433106, 29.690549180321732 ], [ -95.440068017899222, 29.689651180011595 ], [ -95.440037017644869, 29.688256180009827 ], [ -95.440035017643226, 29.687678179566557 ], [ -95.440020017818782, 29.687063179685474 ], [ -95.439989018085001, 29.686597179219042 ], [ -95.439989017929662, 29.686413179412774 ], [ -95.439993018102342, 29.684790179484139 ], [ -95.439968017544231, 29.683198179019406 ], [ -95.439977017191651, 29.680276178495003 ], [ -95.439955017980267, 29.679753178203274 ], [ -95.439955017255429, 29.679518178137879 ], [ -95.439727017505788, 29.679524177865751 ], [ -95.438347017711791, 29.679584178500765 ], [ -95.437401016735961, 29.679590178191905 ], [ -95.436723017287164, 29.679564178690391 ], [ -95.436000016542366, 29.679478177906486 ], [ -95.43561101622214, 29.679409178636675 ], [ -95.435353016452112, 29.679360178617884 ], [ -95.435119016455218, 29.679301178237299 ], [ -95.4347570162371, 29.679229178152589 ], [ -95.434350015879502, 29.679143177876604 ], [ -95.433245015456876, 29.678900178688401 ], [ -95.433077016338771, 29.678868177928276 ], [ -95.431905015104334, 29.678607178640451 ], [ -95.431721015907357, 29.678569178458698 ], [ -95.430631014970444, 29.678343177992062 ], [ -95.430168015436294, 29.678242177821677 ], [ -95.428912014377005, 29.677960178110641 ], [ -95.427934014909184, 29.677770177769581 ], [ -95.427827014165217, 29.677755178385539 ], [ -95.427650014746419, 29.677729177974914 ], [ -95.427583014155246, 29.67784117845363 ], [ -95.427432014289892, 29.67805817864085 ], [ -95.426045014571912, 29.679883178405124 ], [ -95.426569014485409, 29.680324178519282 ], [ -95.426900014873155, 29.680806178709016 ], [ -95.427042014756097, 29.681147178497401 ], [ -95.427164014046696, 29.681751179443708 ], [ -95.427167014576028, 29.682414178999171 ], [ -95.427192014809336, 29.683237179092337 ], [ -95.427209014383081, 29.684062179761511 ], [ -95.427216014226033, 29.684878180075327 ], [ -95.427227014271395, 29.685888179772256 ], [ -95.427233014975016, 29.686364180136348 ], [ -95.427239014410659, 29.686838180088198 ], [ -95.427248014899121, 29.687564180067362 ], [ -95.42725701475122, 29.688046179956498 ], [ -95.427271014852423, 29.688280179955328 ], [ -95.427273015158249, 29.689016180410018 ], [ -95.427279014416285, 29.689739180653948 ], [ -95.427278014578306, 29.69053618083796 ], [ -95.42726001514103, 29.691366181125417 ], [ -95.426960015097507, 29.692280181160687 ], [ -95.426625015138882, 29.693105181130928 ], [ -95.426458014405839, 29.693848181652911 ], [ -95.426492015168364, 29.694675182039649 ], [ -95.426726015065256, 29.695329181639448 ], [ -95.426897015112345, 29.695718182153481 ], [ -95.426940014660573, 29.695825181849006 ], [ -95.427064015048799, 29.695690181747839 ], [ -95.428602015476358, 29.693782181036347 ], [ -95.428831014865153, 29.692182181382574 ], [ -95.429042014991595, 29.691835180799899 ], [ -95.429452015826683, 29.691539181310347 ], [ -95.430670015651756, 29.69122218096582 ], [ -95.430848015847687, 29.691136181219825 ], [ -95.431993016072695, 29.691125180386855 ], [ -95.432275016118311, 29.691176180351665 ], [ -95.432615016453056, 29.691302180483216 ], [ -95.434182016354356, 29.692103181292246 ], [ -95.434672016591406, 29.692096180604221 ], [ -95.434995017158442, 29.691945180605906 ], [ -95.435147016825056, 29.691787181278769 ], [ -95.435812016807859, 29.691095180946064 ], [ -95.43612401717661, 29.690864180862935 ], [ -95.437980017472398, 29.690001180560994 ], [ -95.43820601814862, 29.689913180460046 ], [ -95.438409017883316, 29.689888180070053 ], [ -95.43867101807615, 29.689908180434205 ], [ -95.438934017880271, 29.690009180631073 ], [ -95.439746018484399, 29.690496180822127 ], [ -95.4400760180406, 29.690642180676363 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 692, "Tract": "48201450804", "Area_SqMi": 0.24530988358393049, "total_2009": 1222, "total_2010": 1088, "total_2011": 1174, "total_2012": 1451, "total_2013": 1413, "total_2014": 1304, "total_2015": 1437, "total_2016": 1201, "total_2017": 1210, "total_2018": 1283, "total_2019": 1389, "total_2020": 358, "age1": 51, "age2": 244, "age3": 134, "earn1": 14, "earn2": 45, "earn3": 370, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 20, "naics_s10": 4, "naics_s11": 40, "naics_s12": 60, "naics_s13": 0, "naics_s14": 293, "naics_s15": 1, "naics_s16": 0, "naics_s17": 0, "naics_s18": 2, "naics_s19": 5, "naics_s20": 0, "race1": 363, "race2": 29, "race3": 2, "race4": 31, "race5": 0, "race6": 4, "ethnicity1": 330, "ethnicity2": 99, "edu1": 57, "edu2": 106, "edu3": 96, "edu4": 119, "Shape_Length": 12229.859030215644, "Shape_Area": 6838819.702258165, "total_2021": 319, "total_2022": 429 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.564990052540722, 29.747397187546305 ], [ -95.565020052215516, 29.747257187902697 ], [ -95.56415305232656, 29.747154187755864 ], [ -95.562632051685313, 29.747165187964463 ], [ -95.562140051725422, 29.74716818811407 ], [ -95.561668052170816, 29.747209187546645 ], [ -95.561074051634179, 29.74731118820014 ], [ -95.560684051406653, 29.747415188069585 ], [ -95.560302050941431, 29.747479188365169 ], [ -95.559820051370451, 29.747529188257612 ], [ -95.559503051597218, 29.747537188328447 ], [ -95.559359050824, 29.74753318811559 ], [ -95.559099051687227, 29.747550187908082 ], [ -95.558912050680718, 29.747558188108215 ], [ -95.558396050565491, 29.747563188414425 ], [ -95.557900051004424, 29.747555188256264 ], [ -95.557906050819213, 29.747796188227312 ], [ -95.557963051408336, 29.750226188888508 ], [ -95.558030051054374, 29.753066189243313 ], [ -95.558038051324743, 29.753682189440482 ], [ -95.55807905162942, 29.756781190308605 ], [ -95.558095051407122, 29.758008190534664 ], [ -95.558497051665654, 29.75800219017794 ], [ -95.558922051648864, 29.758017190272646 ], [ -95.559237051312365, 29.758062190160334 ], [ -95.55954305163462, 29.758133190259382 ], [ -95.560276051486227, 29.758430190482027 ], [ -95.560488052036462, 29.758491190615246 ], [ -95.5607230522549, 29.758527190486515 ], [ -95.561012052557473, 29.758553190164509 ], [ -95.561468052534622, 29.758540190383393 ], [ -95.561674052179015, 29.758511190319108 ], [ -95.561892051969068, 29.758466190167255 ], [ -95.562069052885676, 29.758409189869909 ], [ -95.562200052212859, 29.758359190510969 ], [ -95.562301052171449, 29.758287189917471 ], [ -95.562422052411733, 29.758163190495296 ], [ -95.562490052172365, 29.757995189643896 ], [ -95.562507052853604, 29.757850189874816 ], [ -95.56273105256632, 29.757851190104141 ], [ -95.56331105305668, 29.757855190395151 ], [ -95.563300052823493, 29.757009190163792 ], [ -95.563293052495922, 29.756171189360778 ], [ -95.563297052230581, 29.755323189620693 ], [ -95.563273052743753, 29.754489189707055 ], [ -95.563266052431629, 29.75364118904541 ], [ -95.56325805213433, 29.752805189083897 ], [ -95.563240052884822, 29.752104188777555 ], [ -95.563240052134873, 29.751948189244771 ], [ -95.563236052615835, 29.751258188884744 ], [ -95.563241052315803, 29.751116188194743 ], [ -95.563225052754746, 29.750758188963594 ], [ -95.56322205227481, 29.750277188591042 ], [ -95.563233052018347, 29.749422188436679 ], [ -95.563237052370297, 29.748727188258435 ], [ -95.563253052479112, 29.748670188152094 ], [ -95.563282051944711, 29.748639188505656 ], [ -95.563322052253469, 29.748613188139014 ], [ -95.563392052766929, 29.748594188067248 ], [ -95.563502052465012, 29.748588188101841 ], [ -95.564022052162855, 29.7485911883991 ], [ -95.56440205204737, 29.748609188243108 ], [ -95.564727052972955, 29.748645187804495 ], [ -95.564975053119227, 29.747468187933972 ], [ -95.564990052540722, 29.747397187546305 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 693, "Tract": "48201451006", "Area_SqMi": 0.39286442335477556, "total_2009": 1510, "total_2010": 1426, "total_2011": 1600, "total_2012": 1530, "total_2013": 1038, "total_2014": 1052, "total_2015": 826, "total_2016": 929, "total_2017": 721, "total_2018": 544, "total_2019": 548, "total_2020": 562, "age1": 139, "age2": 411, "age3": 179, "earn1": 115, "earn2": 153, "earn3": 461, "naics_s01": 0, "naics_s02": 32, "naics_s03": 0, "naics_s04": 62, "naics_s05": 13, "naics_s06": 40, "naics_s07": 35, "naics_s08": 0, "naics_s09": 0, "naics_s10": 101, "naics_s11": 42, "naics_s12": 204, "naics_s13": 0, "naics_s14": 1, "naics_s15": 2, "naics_s16": 24, "naics_s17": 9, "naics_s18": 145, "naics_s19": 19, "naics_s20": 0, "race1": 491, "race2": 96, "race3": 4, "race4": 127, "race5": 2, "race6": 9, "ethnicity1": 563, "ethnicity2": 166, "edu1": 80, "edu2": 123, "edu3": 175, "edu4": 212, "Shape_Length": 16346.318771261558, "Shape_Area": 10952387.728950564, "total_2021": 649, "total_2022": 729 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.585863058169593, 29.742884186233052 ], [ -95.586096058119168, 29.742715185778419 ], [ -95.585846057512484, 29.742391185659493 ], [ -95.585633057200255, 29.74206318611273 ], [ -95.585463058032616, 29.741742186155918 ], [ -95.585294057965513, 29.741382185664939 ], [ -95.585248057996779, 29.741257186235327 ], [ -95.58489305777735, 29.741334186182854 ], [ -95.584642057355609, 29.741375186219688 ], [ -95.584384057728229, 29.741391186165632 ], [ -95.584081056915764, 29.741376185842231 ], [ -95.583744057401489, 29.741313185706019 ], [ -95.583236057342518, 29.741204185838892 ], [ -95.582985056657449, 29.741168185533198 ], [ -95.582518057250709, 29.741175185632269 ], [ -95.582119056273982, 29.741230186358479 ], [ -95.581732057122409, 29.741328186145058 ], [ -95.581611056667114, 29.741066186232047 ], [ -95.581536056443937, 29.740885186016612 ], [ -95.581485056317746, 29.740760185743817 ], [ -95.581379056477417, 29.740460186101384 ], [ -95.581310056508499, 29.740184186176215 ], [ -95.581270056857306, 29.739889185869696 ], [ -95.581256056046072, 29.739587185705499 ], [ -95.581255056371731, 29.739391185500079 ], [ -95.581242056761795, 29.739069185253737 ], [ -95.581241056881254, 29.738527185352506 ], [ -95.5812090565407, 29.736689185225092 ], [ -95.581206056409414, 29.736562185393094 ], [ -95.579336055970174, 29.736578185167339 ], [ -95.578399055787756, 29.736590185099388 ], [ -95.5783040553316, 29.736592185181344 ], [ -95.578151055828229, 29.736594184986849 ], [ -95.576172054673307, 29.736621185572542 ], [ -95.576174054632446, 29.736757185454636 ], [ -95.576168055170129, 29.737309185453103 ], [ -95.576175054957588, 29.737704185695083 ], [ -95.576185054691592, 29.738389185383639 ], [ -95.576177055436432, 29.738536185373853 ], [ -95.576178055625689, 29.7388631855295 ], [ -95.576203055439848, 29.739262185701765 ], [ -95.576214055678179, 29.739676186190014 ], [ -95.576218055367676, 29.739809186191977 ], [ -95.576219055571485, 29.739906186019422 ], [ -95.576220055512707, 29.739990186253181 ], [ -95.576232055437131, 29.740498186131148 ], [ -95.576235055403032, 29.740646185621419 ], [ -95.576263055030239, 29.741301186609395 ], [ -95.576267054768635, 29.741450186446833 ], [ -95.57627805576783, 29.742302186308486 ], [ -95.576303055502279, 29.743362186633917 ], [ -95.576064054848757, 29.743362186965591 ], [ -95.575167055588324, 29.743379186760489 ], [ -95.574966055237169, 29.743352186945909 ], [ -95.574803055056194, 29.743301186358519 ], [ -95.574606055447745, 29.743268186546068 ], [ -95.574434054828927, 29.74325418678503 ], [ -95.57378805518367, 29.743257186424501 ], [ -95.573546054874797, 29.743251187047452 ], [ -95.573317054798054, 29.743203186698675 ], [ -95.573145054458664, 29.743119186834154 ], [ -95.573114054101438, 29.743097186765539 ], [ -95.572878054086402, 29.742925186510401 ], [ -95.57267005454068, 29.742844187042003 ], [ -95.572446053935806, 29.742789186845926 ], [ -95.571998054714911, 29.742782186472041 ], [ -95.572003053858481, 29.7437321868072 ], [ -95.572017054531813, 29.744426186803882 ], [ -95.572018054480949, 29.745224187340735 ], [ -95.572027054035317, 29.745641187588483 ], [ -95.572030054786353, 29.745790187241862 ], [ -95.572073054287429, 29.747956187495653 ], [ -95.573044054743676, 29.747958187716858 ], [ -95.573212054319157, 29.747950187293494 ], [ -95.573922054563454, 29.747947187985705 ], [ -95.574227054629588, 29.74793918727962 ], [ -95.575010055712482, 29.74793118789551 ], [ -95.575797055790403, 29.74792018744197 ], [ -95.575839055958014, 29.747939187799876 ], [ -95.576019055950042, 29.747940187312988 ], [ -95.576370055433216, 29.747936187875798 ], [ -95.577049055521016, 29.747920187257645 ], [ -95.577790055917333, 29.747868187102821 ], [ -95.578532055964814, 29.747763187532442 ], [ -95.578741056271284, 29.747716187841359 ], [ -95.579301056700245, 29.747590187399332 ], [ -95.579590056290954, 29.74750918717465 ], [ -95.57977405599209, 29.747457187097563 ], [ -95.580562056971573, 29.747223187352798 ], [ -95.58168805710487, 29.746980186857687 ], [ -95.582158057428714, 29.746928186863951 ], [ -95.582606057522099, 29.74689418738032 ], [ -95.583096056881374, 29.74688018726032 ], [ -95.583654057361983, 29.746889186834576 ], [ -95.583695057564341, 29.74623018672343 ], [ -95.583724057511915, 29.745889186890981 ], [ -95.583785056930765, 29.745572186754384 ], [ -95.583897057195202, 29.745142186316112 ], [ -95.583979057746902, 29.744939186342389 ], [ -95.584096057059028, 29.744673186642149 ], [ -95.584290057794632, 29.744358186198493 ], [ -95.584534057781156, 29.744035186577253 ], [ -95.58468005750791, 29.743848186485476 ], [ -95.58483605723292, 29.743698185929539 ], [ -95.58506605809653, 29.743479185912342 ], [ -95.585339057608522, 29.743269186572476 ], [ -95.585569057925042, 29.743091186345566 ], [ -95.585863058169593, 29.742884186233052 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 694, "Tract": "48201451904", "Area_SqMi": 0.576753487458043, "total_2009": 141, "total_2010": 173, "total_2011": 139, "total_2012": 171, "total_2013": 175, "total_2014": 103, "total_2015": 131, "total_2016": 149, "total_2017": 176, "total_2018": 153, "total_2019": 165, "total_2020": 152, "age1": 27, "age2": 110, "age3": 35, "earn1": 33, "earn2": 61, "earn3": 78, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 3, "naics_s06": 4, "naics_s07": 13, "naics_s08": 0, "naics_s09": 5, "naics_s10": 25, "naics_s11": 8, "naics_s12": 24, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 62, "naics_s17": 0, "naics_s18": 3, "naics_s19": 15, "naics_s20": 0, "race1": 87, "race2": 46, "race3": 3, "race4": 30, "race5": 0, "race6": 6, "ethnicity1": 125, "ethnicity2": 47, "edu1": 27, "edu2": 32, "edu3": 39, "edu4": 47, "Shape_Length": 16986.90056578091, "Shape_Area": 16078900.106870996, "total_2021": 142, "total_2022": 172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619619065809133, 29.72807418195071 ], [ -95.61961406551039, 29.727258182225974 ], [ -95.619575065367002, 29.724584180980685 ], [ -95.619573065199162, 29.724433181249466 ], [ -95.619575065809514, 29.724009181051155 ], [ -95.619569065339789, 29.723682180897978 ], [ -95.619569065699622, 29.723328181407599 ], [ -95.619545065849309, 29.722963180751083 ], [ -95.619503066002736, 29.722644180830294 ], [ -95.619463065691761, 29.722466180563906 ], [ -95.619374065480017, 29.722116180893039 ], [ -95.619309065353349, 29.721906180900408 ], [ -95.619218065063421, 29.72167318031531 ], [ -95.619136065260406, 29.721485180301322 ], [ -95.619037065668337, 29.721287180668813 ], [ -95.618911065660669, 29.721082180174044 ], [ -95.618602065073617, 29.720603180625712 ], [ -95.618028065200463, 29.719902180681245 ], [ -95.617630065088022, 29.719431180624582 ], [ -95.617529065145419, 29.719314180737562 ], [ -95.617378065108142, 29.719139180333311 ], [ -95.616624064833275, 29.71825417981297 ], [ -95.616306064633179, 29.717897180487689 ], [ -95.616185064789988, 29.717735180471788 ], [ -95.615971064658936, 29.717481179806416 ], [ -95.615639064539479, 29.717087179519716 ], [ -95.615511063961137, 29.716927179942132 ], [ -95.615419064059651, 29.716796179477388 ], [ -95.615321064675598, 29.716681179726663 ], [ -95.615256063890214, 29.716594179950697 ], [ -95.615211064391517, 29.716525180175129 ], [ -95.61512906443059, 29.716394179448923 ], [ -95.615049064337001, 29.716425180097332 ], [ -95.614716064146336, 29.716580180013661 ], [ -95.614518064311554, 29.716667179686834 ], [ -95.614253063433424, 29.716774179946771 ], [ -95.6140320636231, 29.71690717997755 ], [ -95.613776064064069, 29.717117180158024 ], [ -95.613556063316778, 29.717424180307447 ], [ -95.613498063220732, 29.717592180020084 ], [ -95.613451063871935, 29.717753180011989 ], [ -95.613431064049664, 29.717976180353407 ], [ -95.61345806362587, 29.719029180310738 ], [ -95.613452063607753, 29.71926618035415 ], [ -95.613361063950833, 29.719423180314791 ], [ -95.613238063880303, 29.719500180619004 ], [ -95.61304106346202, 29.719531180554355 ], [ -95.6127160636605, 29.719535180071372 ], [ -95.611095063712625, 29.719554180264055 ], [ -95.60972206268157, 29.719567180552271 ], [ -95.608834062378435, 29.719580180919753 ], [ -95.608220062446406, 29.719583180758129 ], [ -95.606593062282514, 29.719584180301553 ], [ -95.606465061719049, 29.719593180610847 ], [ -95.606143062009693, 29.719690180460649 ], [ -95.605963061953119, 29.719759180553304 ], [ -95.605727061946766, 29.719786180373248 ], [ -95.604781061136251, 29.719798180600442 ], [ -95.604781061752888, 29.71984118062792 ], [ -95.604782061519174, 29.719935180657387 ], [ -95.60482206218127, 29.721400181298733 ], [ -95.604823061321156, 29.721463180731156 ], [ -95.604827062170784, 29.721865181625539 ], [ -95.604839061494317, 29.722613181274323 ], [ -95.604868062260834, 29.723837181993211 ], [ -95.604886062274574, 29.724292181906915 ], [ -95.604922061947619, 29.724639181755521 ], [ -95.604961061670934, 29.724864181743452 ], [ -95.604985062322413, 29.724996181835351 ], [ -95.605058062073169, 29.725283181593078 ], [ -95.605179062411281, 29.725673181783314 ], [ -95.605405062006, 29.726239181886474 ], [ -95.605489061766974, 29.726497181721157 ], [ -95.605552062120637, 29.726751182384035 ], [ -95.605611061726535, 29.727029182474183 ], [ -95.605663061788803, 29.727299182139109 ], [ -95.605694061804954, 29.72757318259886 ], [ -95.605709062058125, 29.727868182342878 ], [ -95.60571006176977, 29.728182182182795 ], [ -95.60572306225778, 29.728635182621989 ], [ -95.605733062244624, 29.729189182313576 ], [ -95.605741062511569, 29.729784183283311 ], [ -95.606295062558374, 29.729785182832632 ], [ -95.606584062472066, 29.729777182931866 ], [ -95.607106062808683, 29.729771182870767 ], [ -95.607920062837309, 29.729757182658627 ], [ -95.608742063279152, 29.729755182685018 ], [ -95.609564063642495, 29.729689182913777 ], [ -95.610348063101242, 29.729513182973427 ], [ -95.61116406334952, 29.729238182836582 ], [ -95.612669063563487, 29.728525182353277 ], [ -95.613041064413039, 29.728366182473071 ], [ -95.613725063920782, 29.72815918237562 ], [ -95.614140064059754, 29.728061182246304 ], [ -95.614570064193245, 29.72798418204756 ], [ -95.615050064488926, 29.727930181686219 ], [ -95.61532906443378, 29.727926182471812 ], [ -95.616450065165921, 29.727909182368052 ], [ -95.617031065324085, 29.727920181710179 ], [ -95.617419064790496, 29.727946181704404 ], [ -95.617760065611364, 29.727980181666354 ], [ -95.618044065318074, 29.728024182359022 ], [ -95.618396064994784, 29.72805518187231 ], [ -95.618730065800776, 29.728073182472947 ], [ -95.619052065877881, 29.728076182042454 ], [ -95.619619065809133, 29.72807418195071 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 695, "Tract": "48201451301", "Area_SqMi": 0.58190353008107587, "total_2009": 1277, "total_2010": 1176, "total_2011": 1439, "total_2012": 1310, "total_2013": 1277, "total_2014": 1471, "total_2015": 1474, "total_2016": 1544, "total_2017": 1392, "total_2018": 1598, "total_2019": 1599, "total_2020": 1833, "age1": 569, "age2": 1060, "age3": 359, "earn1": 460, "earn2": 614, "earn3": 914, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 11, "naics_s05": 8, "naics_s06": 84, "naics_s07": 406, "naics_s08": 6, "naics_s09": 52, "naics_s10": 58, "naics_s11": 101, "naics_s12": 497, "naics_s13": 0, "naics_s14": 17, "naics_s15": 15, "naics_s16": 438, "naics_s17": 3, "naics_s18": 240, "naics_s19": 51, "naics_s20": 0, "race1": 1366, "race2": 292, "race3": 13, "race4": 280, "race5": 1, "race6": 36, "ethnicity1": 1386, "ethnicity2": 602, "edu1": 267, "edu2": 345, "edu3": 409, "edu4": 398, "Shape_Length": 18872.466614087985, "Shape_Area": 16222474.480815111, "total_2021": 1927, "total_2022": 1988 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.606059063306319, 29.746227185792076 ], [ -95.606044062623269, 29.745925186063271 ], [ -95.60604306297337, 29.745903185667057 ], [ -95.60603806335476, 29.745751185857181 ], [ -95.606023062791309, 29.745088185909793 ], [ -95.606010063534441, 29.744570185785097 ], [ -95.606004062829143, 29.744281185906456 ], [ -95.605987062520043, 29.743387185375973 ], [ -95.605977062590853, 29.742773185611618 ], [ -95.605975062811382, 29.742397185374529 ], [ -95.605955062534136, 29.741441185262079 ], [ -95.605948062379412, 29.740877184878471 ], [ -95.605944063136363, 29.74044718528809 ], [ -95.605928062287987, 29.740016184778362 ], [ -95.60592106325565, 29.73962018468114 ], [ -95.605918062542145, 29.739083185123384 ], [ -95.60591506307955, 29.738607184388442 ], [ -95.605896062696061, 29.738037184919619 ], [ -95.605849062380088, 29.736300183861214 ], [ -95.605846063019541, 29.7361831845663 ], [ -95.605572062518533, 29.736140184557058 ], [ -95.605307062547567, 29.736155184113134 ], [ -95.604719062333132, 29.736153184269462 ], [ -95.603972062314128, 29.736151184265839 ], [ -95.603091061795425, 29.736151184602985 ], [ -95.600826061312787, 29.736153183899475 ], [ -95.598096060871001, 29.736206184471541 ], [ -95.595699059654095, 29.73625318423414 ], [ -95.594704060120137, 29.736273184370834 ], [ -95.594386059880762, 29.736279184416659 ], [ -95.593079059684669, 29.736291184773144 ], [ -95.592634059026707, 29.73630218458154 ], [ -95.589648058009686, 29.736397184730532 ], [ -95.589361058890773, 29.736414185134912 ], [ -95.5886240586768, 29.736403184464177 ], [ -95.588628057871205, 29.736582184999701 ], [ -95.588633057808991, 29.737285184579818 ], [ -95.588638058676025, 29.737641184835677 ], [ -95.588647058344634, 29.73799018505559 ], [ -95.588660058180878, 29.739048184914278 ], [ -95.588689058746027, 29.740657185952298 ], [ -95.589292059020664, 29.740657185834127 ], [ -95.590133058635047, 29.740638185779719 ], [ -95.590996058934522, 29.74063018539065 ], [ -95.591845059377448, 29.740613185234277 ], [ -95.592693059901706, 29.740604185785724 ], [ -95.59354505951309, 29.740603185090514 ], [ -95.593578059266648, 29.742583185600243 ], [ -95.593585060178043, 29.74302618574038 ], [ -95.594457060510223, 29.743011185786006 ], [ -95.594470059835913, 29.743907186422462 ], [ -95.594472059650641, 29.744035186126425 ], [ -95.594487059976956, 29.744174186129555 ], [ -95.594584060221166, 29.744197186245902 ], [ -95.59465705982872, 29.744198186018359 ], [ -95.595311060460062, 29.744174185757679 ], [ -95.595226060342156, 29.744444185836322 ], [ -95.595197059942549, 29.744713186351571 ], [ -95.595207060558948, 29.744988186600239 ], [ -95.59636006014685, 29.744984185845116 ], [ -95.596546060818753, 29.744984186600167 ], [ -95.596711060581754, 29.744979186588946 ], [ -95.597622060545831, 29.744956186068027 ], [ -95.598224061553196, 29.744949185831906 ], [ -95.598240061432648, 29.746004186560754 ], [ -95.598249061109328, 29.746820186750476 ], [ -95.598267060811594, 29.747645186884629 ], [ -95.598509061543112, 29.747645186761591 ], [ -95.598788061493266, 29.747623186346519 ], [ -95.599116061275694, 29.747565186260086 ], [ -95.599354060929286, 29.747502186937325 ], [ -95.599616061245655, 29.747409186789579 ], [ -95.601904062239228, 29.746374186688229 ], [ -95.602218061610529, 29.746304186622606 ], [ -95.602461062123751, 29.746284186579526 ], [ -95.602711062038523, 29.746274186747904 ], [ -95.603665062835404, 29.74627118655815 ], [ -95.604154062782456, 29.746263185941626 ], [ -95.604707062839083, 29.746255186122632 ], [ -95.605064063006296, 29.746248185857613 ], [ -95.606032063564172, 29.746228186128732 ], [ -95.606059063306319, 29.746227185792076 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 696, "Tract": "48201440102", "Area_SqMi": 1.2556542448777397, "total_2009": 558, "total_2010": 961, "total_2011": 1033, "total_2012": 1250, "total_2013": 1235, "total_2014": 1273, "total_2015": 1373, "total_2016": 1373, "total_2017": 1369, "total_2018": 1318, "total_2019": 1591, "total_2020": 1619, "age1": 288, "age2": 831, "age3": 344, "earn1": 153, "earn2": 430, "earn3": 880, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 56, "naics_s05": 204, "naics_s06": 306, "naics_s07": 36, "naics_s08": 441, "naics_s09": 24, "naics_s10": 4, "naics_s11": 14, "naics_s12": 50, "naics_s13": 0, "naics_s14": 140, "naics_s15": 0, "naics_s16": 114, "naics_s17": 6, "naics_s18": 58, "naics_s19": 10, "naics_s20": 0, "race1": 871, "race2": 402, "race3": 12, "race4": 150, "race5": 2, "race6": 26, "ethnicity1": 999, "ethnicity2": 464, "edu1": 281, "edu2": 302, "edu3": 355, "edu4": 237, "Shape_Length": 34464.164585219813, "Shape_Area": 35005491.273473114, "total_2021": 1629, "total_2022": 1463 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557684046388431, 29.642451166678207 ], [ -95.557735045763891, 29.642439166957391 ], [ -95.55594104590925, 29.641609166232239 ], [ -95.554659044989165, 29.64101616662586 ], [ -95.554252045039064, 29.640829166265878 ], [ -95.553628044817174, 29.640537166125981 ], [ -95.552728044565669, 29.640141166314244 ], [ -95.551614044173107, 29.639651165863778 ], [ -95.551128044431351, 29.639437166324353 ], [ -95.551042044784694, 29.639394166493268 ], [ -95.550062043909847, 29.638904165716458 ], [ -95.549806044415845, 29.638776165948109 ], [ -95.549328044156056, 29.638537166472183 ], [ -95.549278043679067, 29.638519166481849 ], [ -95.549113043910026, 29.638460166209082 ], [ -95.548051043912409, 29.637969165904458 ], [ -95.546874043134252, 29.637423166134209 ], [ -95.546855043445376, 29.637412166308724 ], [ -95.546728043393315, 29.637337166331946 ], [ -95.54632804289686, 29.637138165521844 ], [ -95.546197042876756, 29.637078165910861 ], [ -95.543927042195094, 29.636038165414202 ], [ -95.543859042826384, 29.63600916544593 ], [ -95.54377904207314, 29.635975165309414 ], [ -95.542070041529783, 29.635258165329159 ], [ -95.541875042105715, 29.635163165399316 ], [ -95.54110204189324, 29.634774165370548 ], [ -95.540942041989879, 29.634697165805978 ], [ -95.538380040840806, 29.633488165832489 ], [ -95.53799904045681, 29.633308165759331 ], [ -95.5379550406128, 29.633287165453829 ], [ -95.537855040746308, 29.633238165663368 ], [ -95.537592040094609, 29.633116165345449 ], [ -95.537192040934613, 29.632933165570339 ], [ -95.536999040555855, 29.632845164953252 ], [ -95.536872040008717, 29.632788165018088 ], [ -95.536790039969318, 29.632751165250415 ], [ -95.536634039980541, 29.632681165563167 ], [ -95.53661603986265, 29.632673165247994 ], [ -95.536584040591279, 29.632659165540225 ], [ -95.536527040449059, 29.632633165173285 ], [ -95.536477039891537, 29.63261016493411 ], [ -95.536395040138032, 29.632573164922913 ], [ -95.536117039997336, 29.632448165614253 ], [ -95.535418040185206, 29.632134165673818 ], [ -95.535348039717675, 29.632102164949472 ], [ -95.535262039983266, 29.632064165225732 ], [ -95.535096039715867, 29.631989164917488 ], [ -95.534983040164477, 29.631938165430824 ], [ -95.534423040190035, 29.631686165487373 ], [ -95.533803039383386, 29.631407164918908 ], [ -95.533428039384901, 29.631238164831235 ], [ -95.5329490397082, 29.631022165044712 ], [ -95.532700039227592, 29.630910165075502 ], [ -95.53225903878122, 29.63071116493423 ], [ -95.530547038831969, 29.629941165368109 ], [ -95.528389037618567, 29.628928165032193 ], [ -95.521636035735796, 29.625754164501448 ], [ -95.52158203620904, 29.625732164814679 ], [ -95.521461036631294, 29.625675163978048 ], [ -95.52117803656823, 29.625541164535612 ], [ -95.521056036286723, 29.625484164383344 ], [ -95.520928036439557, 29.625538164723807 ], [ -95.519408036026618, 29.626124164569017 ], [ -95.519157035252576, 29.626229164352683 ], [ -95.519000035959166, 29.626290164241912 ], [ -95.518709035934776, 29.62641716498009 ], [ -95.518328035167016, 29.626591164872572 ], [ -95.51856603521739, 29.626803164959661 ], [ -95.518660035215618, 29.626875165119316 ], [ -95.518766035599583, 29.626951164770034 ], [ -95.51978903556828, 29.627839164622578 ], [ -95.521549036334292, 29.629267165313639 ], [ -95.525709037281274, 29.632788166096162 ], [ -95.527806037877241, 29.634572166396232 ], [ -95.529002038307638, 29.635527166155576 ], [ -95.529449038195494, 29.635857166027261 ], [ -95.530798039032803, 29.636966166807792 ], [ -95.531011039317193, 29.637142166675453 ], [ -95.531213038908277, 29.63731616600484 ], [ -95.533722040367181, 29.639573166478677 ], [ -95.533945039793608, 29.639762166679347 ], [ -95.533954039828444, 29.639769166974943 ], [ -95.534019039549776, 29.639824166605468 ], [ -95.534300039557294, 29.640062166888306 ], [ -95.536708040410247, 29.642059167413144 ], [ -95.536931040982736, 29.642230166934691 ], [ -95.537005040462375, 29.642283167404507 ], [ -95.538009040644965, 29.64312316724671 ], [ -95.538763041432489, 29.643773167253638 ], [ -95.538961041722558, 29.643955167175289 ], [ -95.539133041043883, 29.644113167156295 ], [ -95.539331041176951, 29.644274168029394 ], [ -95.540465041816546, 29.645247167376212 ], [ -95.541862041960982, 29.646352167713335 ], [ -95.546306043930514, 29.650040168108731 ], [ -95.548013043755844, 29.651482168350736 ], [ -95.54974104442887, 29.652992169415825 ], [ -95.550135044487078, 29.653305169088874 ], [ -95.55037204521399, 29.653494169315454 ], [ -95.550413044959527, 29.65347416891089 ], [ -95.550685044401874, 29.653343169499308 ], [ -95.551568044909359, 29.653023169209714 ], [ -95.552403045381411, 29.65284016859005 ], [ -95.552794045549462, 29.652793168713298 ], [ -95.55277504579152, 29.652077169027699 ], [ -95.552787045503194, 29.65172516851425 ], [ -95.552743045623103, 29.651434168362758 ], [ -95.552740045692545, 29.651133168441522 ], [ -95.552725045568181, 29.649262168216232 ], [ -95.552729045444622, 29.648277168343338 ], [ -95.552622044983153, 29.64249816686231 ], [ -95.552727044823058, 29.642474166382847 ], [ -95.552870044902448, 29.642451167107296 ], [ -95.553518044809991, 29.64245916704769 ], [ -95.55421104572163, 29.642468167170545 ], [ -95.555048045332398, 29.642437166525198 ], [ -95.555226045117792, 29.642431167097858 ], [ -95.555268045325633, 29.642429166435207 ], [ -95.555298045086488, 29.642431167059868 ], [ -95.555664045788475, 29.64246816693376 ], [ -95.555866045284276, 29.642369166730138 ], [ -95.556010045242445, 29.642413166553691 ], [ -95.556470045642271, 29.642435166336341 ], [ -95.557263045606561, 29.642391166204551 ], [ -95.557684046388431, 29.642451166678207 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 697, "Tract": "48201422303", "Area_SqMi": 0.14789835671632648, "total_2009": 24, "total_2010": 22, "total_2011": 25, "total_2012": 29, "total_2013": 31, "total_2014": 44, "total_2015": 37, "total_2016": 31, "total_2017": 24, "total_2018": 38, "total_2019": 34, "total_2020": 35, "age1": 4, "age2": 16, "age3": 14, "earn1": 6, "earn2": 9, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 1, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 28, "naics_s12": 0, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 25, "race2": 4, "race3": 1, "race4": 4, "race5": 0, "race6": 0, "ethnicity1": 23, "ethnicity2": 11, "edu1": 11, "edu2": 6, "edu3": 6, "edu4": 7, "Shape_Length": 8427.8572607844362, "Shape_Area": 4123153.054683838, "total_2021": 50, "total_2022": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508383033953294, 29.651532169963012 ], [ -95.508370033719331, 29.651142169720572 ], [ -95.508359033932734, 29.650520170289539 ], [ -95.508371033710077, 29.650368170259135 ], [ -95.508357033690729, 29.650080169692547 ], [ -95.508351033727664, 29.649422169735853 ], [ -95.508348033487223, 29.648626169754721 ], [ -95.508347034022549, 29.648499169136301 ], [ -95.508359033473525, 29.648395169808435 ], [ -95.50833203348536, 29.647395169566106 ], [ -95.508335033712143, 29.647309169198717 ], [ -95.508330033851806, 29.646903169056444 ], [ -95.508328033361593, 29.646714169181035 ], [ -95.508318033868122, 29.645819169048981 ], [ -95.508313033879503, 29.645381168507662 ], [ -95.508307033627204, 29.644896169133101 ], [ -95.508305033473349, 29.644716168704804 ], [ -95.508300034014738, 29.644238168417651 ], [ -95.507923033266565, 29.644261168738105 ], [ -95.507483033645215, 29.644263168331452 ], [ -95.507201033092031, 29.644272168367518 ], [ -95.506996033085059, 29.644279168666841 ], [ -95.506414033324575, 29.644274168561534 ], [ -95.505828032700435, 29.64428516857696 ], [ -95.505461032368729, 29.644293168973299 ], [ -95.505054033274206, 29.644302168435594 ], [ -95.504239032504373, 29.644335168602336 ], [ -95.503163032404643, 29.64433116904878 ], [ -95.503186032430932, 29.645616169324995 ], [ -95.503189032536582, 29.645868169025913 ], [ -95.503212032500585, 29.646889169033848 ], [ -95.503202032375057, 29.647496169121769 ], [ -95.503205032892936, 29.648022169912085 ], [ -95.503213032078548, 29.648592169679684 ], [ -95.503205032756441, 29.648935169806418 ], [ -95.503211032107018, 29.649320169980395 ], [ -95.50321903285446, 29.649670170253305 ], [ -95.503237032159461, 29.650452170095662 ], [ -95.503235032514681, 29.651171170536671 ], [ -95.504457033177786, 29.651146170606445 ], [ -95.504835033011517, 29.651139169947431 ], [ -95.505173033396431, 29.651142169711051 ], [ -95.505545033640558, 29.651148170289769 ], [ -95.5059680337787, 29.651154169711084 ], [ -95.506394033455408, 29.651164169949233 ], [ -95.506920033078202, 29.651307170514634 ], [ -95.507571033280058, 29.651498169954905 ], [ -95.508383033953294, 29.651532169963012 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 698, "Tract": "48201331604", "Area_SqMi": 0.36132841866729515, "total_2009": 25, "total_2010": 23, "total_2011": 22, "total_2012": 23, "total_2013": 21, "total_2014": 34, "total_2015": 46, "total_2016": 40, "total_2017": 47, "total_2018": 46, "total_2019": 20, "total_2020": 17, "age1": 1, "age2": 16, "age3": 8, "earn1": 16, "earn2": 6, "earn3": 3, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 10, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 5, "race2": 15, "race3": 0, "race4": 5, "race5": 0, "race6": 0, "ethnicity1": 20, "ethnicity2": 5, "edu1": 7, "edu2": 8, "edu3": 6, "edu4": 3, "Shape_Length": 12757.008383588316, "Shape_Area": 10073217.892675061, "total_2021": 14, "total_2022": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.348929991964667, 29.627693170249863 ], [ -95.348938991724239, 29.627546170549465 ], [ -95.344073991107905, 29.62746017038247 ], [ -95.339331989639348, 29.627378170439567 ], [ -95.33932699009442, 29.628181171187514 ], [ -95.339336989469558, 29.629527171674066 ], [ -95.339354989488925, 29.630440171026272 ], [ -95.339365989598235, 29.631083171228504 ], [ -95.339361989373757, 29.631565171740213 ], [ -95.339358990131927, 29.632339171967338 ], [ -95.33936698948844, 29.633124171755259 ], [ -95.339374989413884, 29.633408171764977 ], [ -95.339369990284681, 29.633891171960638 ], [ -95.339359989836922, 29.634119172291758 ], [ -95.339361989935668, 29.634277172143037 ], [ -95.339367989579856, 29.634644172395465 ], [ -95.339372990389933, 29.635066172284802 ], [ -95.339374989601126, 29.635183172191145 ], [ -95.339379989776646, 29.635568172907796 ], [ -95.339396989889053, 29.636964172690519 ], [ -95.340020990162586, 29.636910172396465 ], [ -95.340722990097291, 29.63686217277262 ], [ -95.341541990210885, 29.636782172497593 ], [ -95.341782990317327, 29.636762172293334 ], [ -95.341929990250932, 29.636757172482817 ], [ -95.342167990868319, 29.636741172523433 ], [ -95.343104991035617, 29.636666172544988 ], [ -95.343925990991224, 29.636609172645521 ], [ -95.344807991063291, 29.636530172203056 ], [ -95.345553991925584, 29.636472172799714 ], [ -95.345719991928746, 29.636460172687755 ], [ -95.346153992137118, 29.636430172568133 ], [ -95.346588991571238, 29.63639317260191 ], [ -95.347452992382401, 29.636330172065566 ], [ -95.348321992466538, 29.636258172475966 ], [ -95.348707992429539, 29.636227172106853 ], [ -95.348851992809401, 29.636285172647543 ], [ -95.348912992186811, 29.636286172457542 ], [ -95.34890799282708, 29.633422171624559 ], [ -95.348908992131513, 29.632654171410916 ], [ -95.348910992406729, 29.631883171606095 ], [ -95.348912992606415, 29.631102171524642 ], [ -95.348893992533007, 29.630789171112642 ], [ -95.348918992123686, 29.630377171213262 ], [ -95.348929991964667, 29.627693170249863 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 699, "Tract": "48201331502", "Area_SqMi": 2.7380735802970553, "total_2009": 346, "total_2010": 274, "total_2011": 314, "total_2012": 503, "total_2013": 470, "total_2014": 385, "total_2015": 355, "total_2016": 341, "total_2017": 323, "total_2018": 450, "total_2019": 678, "total_2020": 689, "age1": 168, "age2": 348, "age3": 168, "earn1": 100, "earn2": 190, "earn3": 394, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 388, "naics_s05": 25, "naics_s06": 65, "naics_s07": 43, "naics_s08": 5, "naics_s09": 0, "naics_s10": 1, "naics_s11": 8, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 122, "naics_s17": 0, "naics_s18": 13, "naics_s19": 10, "naics_s20": 0, "race1": 479, "race2": 138, "race3": 8, "race4": 48, "race5": 0, "race6": 11, "ethnicity1": 417, "ethnicity2": 267, "edu1": 144, "edu2": 119, "edu3": 150, "edu4": 103, "Shape_Length": 44542.264592781597, "Shape_Area": 76332805.158914044, "total_2021": 716, "total_2022": 684 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.387287002193602, 29.632217170041329 ], [ -95.387285002047207, 29.632134170338976 ], [ -95.387276002465583, 29.6315861699198 ], [ -95.387252002163919, 29.628513169452447 ], [ -95.387216001577443, 29.627817169651557 ], [ -95.387217001570633, 29.627710169699892 ], [ -95.387218001584131, 29.627547169348333 ], [ -95.387245001733959, 29.624429168661216 ], [ -95.387275001830574, 29.623506168510854 ], [ -95.38724800152643, 29.619327167538088 ], [ -95.387247001915384, 29.617967167595438 ], [ -95.387253001685494, 29.616891167383546 ], [ -95.387258001443001, 29.615987166679449 ], [ -95.387211001064912, 29.614037166061337 ], [ -95.386690001498437, 29.614037166627291 ], [ -95.386255001400968, 29.614038166387115 ], [ -95.385675000419553, 29.614049166565337 ], [ -95.384407000387156, 29.614069166310159 ], [ -95.38225199957391, 29.614095166659347 ], [ -95.381168999256602, 29.614108167112583 ], [ -95.380245999827991, 29.614119166831877 ], [ -95.380232999255483, 29.612307166500909 ], [ -95.378353998678577, 29.612295166786073 ], [ -95.377550999116238, 29.612298166058871 ], [ -95.376295998911644, 29.612288166555537 ], [ -95.375344998326185, 29.612283166792743 ], [ -95.37407499774703, 29.61227916639902 ], [ -95.373348997264529, 29.612270166685303 ], [ -95.373167997632791, 29.61227416646317 ], [ -95.372994997220147, 29.612269166274288 ], [ -95.372646997626148, 29.612272166789712 ], [ -95.372140997642376, 29.612267166825536 ], [ -95.369591996721056, 29.612259166713574 ], [ -95.368911996989084, 29.612252166509442 ], [ -95.368757996902573, 29.612256166390317 ], [ -95.368483996812287, 29.612256167065496 ], [ -95.368364996254996, 29.612251166880039 ], [ -95.36804799649174, 29.612253167091005 ], [ -95.367956995785079, 29.612253166596169 ], [ -95.367017995846624, 29.612248167119166 ], [ -95.366693996147973, 29.612252166715567 ], [ -95.365762995945886, 29.612247167144822 ], [ -95.365614995732145, 29.612237166600824 ], [ -95.36546799608918, 29.612244166578577 ], [ -95.365329995754848, 29.612241167006147 ], [ -95.365194995800778, 29.612244166916753 ], [ -95.364306995269658, 29.612239167203104 ], [ -95.364077995101809, 29.612234166546031 ], [ -95.364022995181855, 29.612223167350876 ], [ -95.363897995148463, 29.612215166564621 ], [ -95.363681995433382, 29.612220166617735 ], [ -95.362620995148845, 29.612213167314973 ], [ -95.362533995014246, 29.612218167248496 ], [ -95.362454994571735, 29.612215167312833 ], [ -95.36237599495395, 29.612221167299282 ], [ -95.362233995261121, 29.612221167413615 ], [ -95.36200699497428, 29.612229166856046 ], [ -95.361747994523483, 29.612231166593677 ], [ -95.361371995071096, 29.612225167225915 ], [ -95.360867994959833, 29.612225167345677 ], [ -95.360765994797433, 29.612234166945758 ], [ -95.360680994128472, 29.612217167024809 ], [ -95.36039099412082, 29.612218167467987 ], [ -95.360294993862524, 29.612223166656321 ], [ -95.359558993931799, 29.612221167179094 ], [ -95.359464994572178, 29.612216166807173 ], [ -95.358254994205609, 29.612198167460036 ], [ -95.358154993259291, 29.612204167450386 ], [ -95.357967993481552, 29.612206167124445 ], [ -95.357792993768513, 29.612200166665129 ], [ -95.357620993890478, 29.612204167455488 ], [ -95.357514994082621, 29.612200166894453 ], [ -95.35710699339819, 29.612204167321579 ], [ -95.356494993447498, 29.61220316744701 ], [ -95.355674993544227, 29.612202167513949 ], [ -95.355566993554959, 29.612204167170731 ], [ -95.355435992725859, 29.612200167307844 ], [ -95.355416993544864, 29.614347167723977 ], [ -95.355443993303481, 29.61447616747898 ], [ -95.355456993086506, 29.615141167994139 ], [ -95.355439993150284, 29.615532167835617 ], [ -95.355430992766628, 29.616616168096908 ], [ -95.355421993333749, 29.617038167916849 ], [ -95.355466993589175, 29.617608168061722 ], [ -95.355437993310929, 29.619076168193697 ], [ -95.355433993332895, 29.619908168944431 ], [ -95.355428993285784, 29.620693169260068 ], [ -95.35544299305586, 29.621065168854358 ], [ -95.360074994742789, 29.621065168814454 ], [ -95.362896995772388, 29.621078168892023 ], [ -95.363389995990062, 29.621078168812428 ], [ -95.363429995700812, 29.622939169005861 ], [ -95.363464995850492, 29.624534169299199 ], [ -95.363497995926082, 29.625006169796933 ], [ -95.363503995778146, 29.625682169651501 ], [ -95.363537995492521, 29.626349169413885 ], [ -95.363548995415442, 29.626556170259509 ], [ -95.363554995817566, 29.627269169701329 ], [ -95.363563995385178, 29.628239170408225 ], [ -95.363568996338657, 29.62875817045725 ], [ -95.363631995951096, 29.629987170909892 ], [ -95.36366499559, 29.63178517050336 ], [ -95.36366799616826, 29.632055171440228 ], [ -95.363683996225319, 29.633610171330208 ], [ -95.363684995854399, 29.634402171337399 ], [ -95.363684996355389, 29.634737171467748 ], [ -95.363709996348078, 29.635331171276921 ], [ -95.363725996523115, 29.636145171954308 ], [ -95.363729996091536, 29.636337171495974 ], [ -95.363787996106979, 29.638327172253646 ], [ -95.363817996024792, 29.639101172343643 ], [ -95.363825995994006, 29.639317172096167 ], [ -95.363851996031528, 29.641434173288296 ], [ -95.363889996199532, 29.642061173027507 ], [ -95.36389199635984, 29.642181173089231 ], [ -95.363934996672228, 29.644386173475716 ], [ -95.363947996992991, 29.644606173209606 ], [ -95.363956996306911, 29.645678174213074 ], [ -95.363961996832813, 29.646195174297773 ], [ -95.36398699645207, 29.646377174183566 ], [ -95.36404399662284, 29.646426173729903 ], [ -95.364059997222085, 29.646487173815739 ], [ -95.364168996545345, 29.64648217397469 ], [ -95.365312996883091, 29.646552173799712 ], [ -95.365594997254036, 29.646528174164775 ], [ -95.365822997023884, 29.646449174290414 ], [ -95.366791997644995, 29.645868173459881 ], [ -95.367031997964389, 29.645673173437189 ], [ -95.367163997073575, 29.645451173927 ], [ -95.367213997683777, 29.645240174030132 ], [ -95.367321997452635, 29.644783173537927 ], [ -95.367467997926099, 29.644490173183154 ], [ -95.367765997966629, 29.644382173460002 ], [ -95.368369997602912, 29.644324173788203 ], [ -95.368905998334156, 29.644273172998055 ], [ -95.370008998539362, 29.643725173123677 ], [ -95.370346997768721, 29.64346817342448 ], [ -95.370462998127024, 29.643321173269953 ], [ -95.370717998502826, 29.642569172671887 ], [ -95.370848998220964, 29.642348172559217 ], [ -95.371024998446117, 29.64221917286568 ], [ -95.371254998560673, 29.642144172974746 ], [ -95.372620998790296, 29.641903173109327 ], [ -95.372859999326792, 29.641709173102281 ], [ -95.373563998607807, 29.640614172126224 ], [ -95.373763998714452, 29.640438172369127 ], [ -95.374152998953861, 29.640339172590192 ], [ -95.375174998905806, 29.640480171992529 ], [ -95.375558998937862, 29.640371172612497 ], [ -95.375696999756514, 29.640240171993355 ], [ -95.375866999719435, 29.639917171873247 ], [ -95.375955999890692, 29.639568172346401 ], [ -95.375926999914171, 29.639284172345704 ], [ -95.375622998915915, 29.638392171947444 ], [ -95.375602998929494, 29.638296172233002 ], [ -95.375488999214184, 29.637758171839025 ], [ -95.375498999007718, 29.637582171775886 ], [ -95.3761299999491, 29.636800171324559 ], [ -95.376422999460772, 29.636552171302494 ], [ -95.376684999532159, 29.636455171749557 ], [ -95.37756199956921, 29.636270171370096 ], [ -95.377821999513898, 29.636101171694087 ], [ -95.377917000303469, 29.635986171573503 ], [ -95.377983000193382, 29.635672171148915 ], [ -95.377845999514832, 29.634819170673147 ], [ -95.378080999560453, 29.632664171069106 ], [ -95.378229000073759, 29.632501170884019 ], [ -95.378765000033169, 29.632247170436148 ], [ -95.379728000067942, 29.631790170412529 ], [ -95.379894000201347, 29.631636170513378 ], [ -95.379924000583074, 29.631460170414034 ], [ -95.379866999772887, 29.630681170160848 ], [ -95.379901000072863, 29.630142170210974 ], [ -95.379966000108254, 29.630011170165044 ], [ -95.380155000521754, 29.629878169585492 ], [ -95.380879000126484, 29.629572169831214 ], [ -95.381422001006882, 29.629414169520633 ], [ -95.382063000991565, 29.629296170081997 ], [ -95.382386000347893, 29.629280169384831 ], [ -95.383154001417324, 29.629370170163057 ], [ -95.384131001030269, 29.629602169419329 ], [ -95.384472001560482, 29.629718169838725 ], [ -95.384700001647388, 29.629866169975259 ], [ -95.384894001029139, 29.630096169907528 ], [ -95.385226001291755, 29.630786169954867 ], [ -95.385365001641134, 29.630918170183737 ], [ -95.386554001405315, 29.631769170382878 ], [ -95.386753001709238, 29.63189117058792 ], [ -95.387287002193602, 29.632217170041329 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 700, "Tract": "48201314301", "Area_SqMi": 0.1186436611039272, "total_2009": 406, "total_2010": 249, "total_2011": 395, "total_2012": 234, "total_2013": 211, "total_2014": 192, "total_2015": 276, "total_2016": 286, "total_2017": 286, "total_2018": 338, "total_2019": 240, "total_2020": 209, "age1": 53, "age2": 90, "age3": 43, "earn1": 64, "earn2": 68, "earn3": 54, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 20, "naics_s05": 0, "naics_s06": 0, "naics_s07": 59, "naics_s08": 0, "naics_s09": 0, "naics_s10": 5, "naics_s11": 10, "naics_s12": 40, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 30, "naics_s17": 0, "naics_s18": 21, "naics_s19": 1, "naics_s20": 0, "race1": 103, "race2": 62, "race3": 3, "race4": 17, "race5": 0, "race6": 1, "ethnicity1": 121, "ethnicity2": 65, "edu1": 35, "edu2": 32, "edu3": 35, "edu4": 31, "Shape_Length": 7389.6474663731888, "Shape_Area": 3307582.2109220927, "total_2021": 179, "total_2022": 186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.419225012005271, 29.678848178719157 ], [ -95.419233012803545, 29.678435179002367 ], [ -95.419187012091996, 29.678255178523287 ], [ -95.419194012253612, 29.678054178526761 ], [ -95.419206012078291, 29.677820178660156 ], [ -95.418270012197581, 29.677873178984409 ], [ -95.41647601187087, 29.67794717903751 ], [ -95.415561011063673, 29.677985178475137 ], [ -95.412891010584687, 29.67805017837734 ], [ -95.412498010583363, 29.678074178467391 ], [ -95.412279010283655, 29.6780891790794 ], [ -95.412273010838419, 29.678343178544896 ], [ -95.412370010623235, 29.682062179689098 ], [ -95.414488010927982, 29.682112179382798 ], [ -95.415112011810692, 29.682126179339743 ], [ -95.415520011937588, 29.682136179356295 ], [ -95.41582101163074, 29.682139179585882 ], [ -95.41634701204039, 29.682148179909181 ], [ -95.417382011876199, 29.68216517964548 ], [ -95.417965012188532, 29.682174179581107 ], [ -95.419137011980553, 29.682196179471582 ], [ -95.419147012486476, 29.681981179105534 ], [ -95.419155012573142, 29.68163617901337 ], [ -95.419161012536833, 29.681280179575214 ], [ -95.419168012005144, 29.680894179386474 ], [ -95.419185012314017, 29.680416178895122 ], [ -95.419190011984256, 29.680167179062547 ], [ -95.419203012150319, 29.679669179269744 ], [ -95.419210012175398, 29.679479178426071 ], [ -95.419214012421563, 29.67922017905989 ], [ -95.419219012762724, 29.679010178317405 ], [ -95.419225012005271, 29.678848178719157 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 701, "Tract": "48201450402", "Area_SqMi": 0.58757840509389636, "total_2009": 4621, "total_2010": 4141, "total_2011": 4135, "total_2012": 3744, "total_2013": 4944, "total_2014": 4845, "total_2015": 5045, "total_2016": 4194, "total_2017": 3518, "total_2018": 3340, "total_2019": 3183, "total_2020": 5768, "age1": 890, "age2": 3662, "age3": 1250, "earn1": 491, "earn2": 687, "earn3": 4624, "naics_s01": 0, "naics_s02": 483, "naics_s03": 7, "naics_s04": 77, "naics_s05": 30, "naics_s06": 138, "naics_s07": 172, "naics_s08": 19, "naics_s09": 64, "naics_s10": 101, "naics_s11": 76, "naics_s12": 785, "naics_s13": 2618, "naics_s14": 252, "naics_s15": 10, "naics_s16": 295, "naics_s17": 289, "naics_s18": 249, "naics_s19": 137, "naics_s20": 0, "race1": 4392, "race2": 669, "race3": 29, "race4": 625, "race5": 6, "race6": 81, "ethnicity1": 4623, "ethnicity2": 1179, "edu1": 626, "edu2": 1061, "edu3": 1390, "edu4": 1835, "Shape_Length": 18026.976354725441, "Shape_Area": 16380680.283526894, "total_2021": 5417, "total_2022": 5802 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.623813068957759, 29.780651192161933 ], [ -95.623824069071631, 29.779912192548547 ], [ -95.623769069399131, 29.779912192581982 ], [ -95.623091068736741, 29.779916192835419 ], [ -95.622608068743901, 29.779916192271219 ], [ -95.621839068157229, 29.779844192775567 ], [ -95.621648068980505, 29.779816192433433 ], [ -95.621379068754933, 29.77975419216164 ], [ -95.620284067889187, 29.779315192106417 ], [ -95.619726067649395, 29.778925192704826 ], [ -95.618958067381868, 29.778277192154722 ], [ -95.618240068077128, 29.777660192022605 ], [ -95.617925067087825, 29.77734819199862 ], [ -95.617883067036473, 29.777309192039176 ], [ -95.617369067052991, 29.776838192400444 ], [ -95.617094067318575, 29.77656919171158 ], [ -95.616866067125073, 29.776296192255646 ], [ -95.616402066918027, 29.775726191959688 ], [ -95.616322067310207, 29.775583191550236 ], [ -95.616187066503358, 29.775392191851367 ], [ -95.61604606728973, 29.775081191647232 ], [ -95.615837066807259, 29.774575191936989 ], [ -95.615702066699271, 29.774261191730162 ], [ -95.615683066747707, 29.774218191972682 ], [ -95.615483066892196, 29.773895191121802 ], [ -95.615131066457323, 29.77341519130783 ], [ -95.614884066794787, 29.773539191564666 ], [ -95.614516066090502, 29.773616191400745 ], [ -95.614122066426049, 29.773685191597792 ], [ -95.613762066710635, 29.773735191477137 ], [ -95.613404065963252, 29.773780191729276 ], [ -95.61340206589702, 29.774606191362221 ], [ -95.613403066783135, 29.775415192030778 ], [ -95.613411065963106, 29.775697192331616 ], [ -95.613405066532906, 29.775747192238114 ], [ -95.61328006660267, 29.77575119212592 ], [ -95.612569065997647, 29.775862192203792 ], [ -95.61247506625277, 29.775893191981353 ], [ -95.612458066077281, 29.776022192419958 ], [ -95.612462065622793, 29.776146192470872 ], [ -95.612337066278002, 29.776149192321824 ], [ -95.611547066214925, 29.776149192329765 ], [ -95.61063106591439, 29.776153192312123 ], [ -95.610146065271522, 29.776140192137845 ], [ -95.60971106564736, 29.776147192281158 ], [ -95.609544065356687, 29.776136191787707 ], [ -95.609194065663104, 29.776132192256135 ], [ -95.608801065300696, 29.776140192464538 ], [ -95.60789006466625, 29.776131192563781 ], [ -95.607650064476246, 29.776129192294878 ], [ -95.607326064664008, 29.776137192664876 ], [ -95.607233065198017, 29.776150192672517 ], [ -95.607114064699616, 29.776178191911605 ], [ -95.606922064250369, 29.776226192325201 ], [ -95.606840064981938, 29.776246192275803 ], [ -95.606703065104838, 29.776276192345257 ], [ -95.606587065016043, 29.776296192362953 ], [ -95.606319064571721, 29.776326192159484 ], [ -95.606324064348087, 29.776482192771358 ], [ -95.606331064099507, 29.776727192376502 ], [ -95.606346064458734, 29.777228192580147 ], [ -95.606350064805667, 29.777397192465315 ], [ -95.606380064830986, 29.777759192672459 ], [ -95.606399064383368, 29.777969192350668 ], [ -95.606402064184792, 29.778374192292521 ], [ -95.606397064794919, 29.77898319272331 ], [ -95.60639906449876, 29.779074192733326 ], [ -95.606419064184323, 29.77979719342585 ], [ -95.606426065067538, 29.779955193266773 ], [ -95.606438064673512, 29.780297193259958 ], [ -95.60645306507304, 29.78076619280916 ], [ -95.606450064845802, 29.781012193519842 ], [ -95.606457064829527, 29.781221193241816 ], [ -95.606450064419334, 29.78142919310482 ], [ -95.60646206477513, 29.781602193497132 ], [ -95.606463064526466, 29.781760193845315 ], [ -95.606467065092474, 29.782166193489516 ], [ -95.606464065137331, 29.782353193462864 ], [ -95.606462064492632, 29.78255419377588 ], [ -95.606461064638609, 29.782658193794447 ], [ -95.606459064825117, 29.782771193648259 ], [ -95.606453065263921, 29.783289193450777 ], [ -95.606459065280148, 29.783578193637105 ], [ -95.606460065115996, 29.783761194268354 ], [ -95.606490065286707, 29.78425119403024 ], [ -95.606502065283323, 29.784595193760904 ], [ -95.606506064619921, 29.78476719440765 ], [ -95.606510065444979, 29.784962194369147 ], [ -95.606745064814334, 29.784971193809113 ], [ -95.607730065198268, 29.78495319440756 ], [ -95.608302065158909, 29.784959193580352 ], [ -95.609981065702769, 29.784977193806821 ], [ -95.610276065493494, 29.784970194052001 ], [ -95.61064306642848, 29.784955194045111 ], [ -95.612167066446418, 29.784985193564825 ], [ -95.616482067665288, 29.785037193726858 ], [ -95.61706706717834, 29.785036193311651 ], [ -95.617521067577499, 29.785038193720382 ], [ -95.61774206752284, 29.785045194076769 ], [ -95.617940067713732, 29.785045193509131 ], [ -95.620445068277888, 29.78506019367742 ], [ -95.623704069203029, 29.785066193165466 ], [ -95.623775069700457, 29.785066193577638 ], [ -95.623776069161963, 29.784915193674031 ], [ -95.623776068907191, 29.784880193490427 ], [ -95.623777069712659, 29.784770193383615 ], [ -95.623777069375578, 29.784724193191764 ], [ -95.623777069792126, 29.784644193823858 ], [ -95.623777069295983, 29.784577193698649 ], [ -95.62377806946408, 29.78452019342819 ], [ -95.62377806913608, 29.784476193398341 ], [ -95.623779068838488, 29.784359193575664 ], [ -95.623785068803556, 29.783754193604434 ], [ -95.623794069575069, 29.782768193274411 ], [ -95.623813068957759, 29.780651192161933 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 702, "Tract": "48201314302", "Area_SqMi": 0.46335512318787653, "total_2009": 4809, "total_2010": 5380, "total_2011": 3941, "total_2012": 4353, "total_2013": 4513, "total_2014": 4921, "total_2015": 4819, "total_2016": 5117, "total_2017": 5607, "total_2018": 5663, "total_2019": 6066, "total_2020": 5901, "age1": 1144, "age2": 2725, "age3": 1528, "earn1": 2126, "earn2": 1774, "earn3": 1497, "naics_s01": 0, "naics_s02": 40, "naics_s03": 0, "naics_s04": 21, "naics_s05": 0, "naics_s06": 21, "naics_s07": 572, "naics_s08": 4, "naics_s09": 273, "naics_s10": 42, "naics_s11": 81, "naics_s12": 192, "naics_s13": 0, "naics_s14": 1202, "naics_s15": 7, "naics_s16": 2234, "naics_s17": 3, "naics_s18": 675, "naics_s19": 29, "naics_s20": 1, "race1": 2515, "race2": 2428, "race3": 36, "race4": 334, "race5": 3, "race6": 81, "ethnicity1": 3960, "ethnicity2": 1437, "edu1": 1006, "edu2": 1180, "edu3": 1340, "edu4": 727, "Shape_Length": 18500.597622250116, "Shape_Area": 12917547.7942589, "total_2021": 5552, "total_2022": 5397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.427583014155246, 29.67784117845363 ], [ -95.427650014746419, 29.677729177974914 ], [ -95.427453014232725, 29.677689178457399 ], [ -95.427271013852632, 29.677669177757746 ], [ -95.426574014433143, 29.67762417783096 ], [ -95.42582601355798, 29.677630178619992 ], [ -95.424816013433812, 29.677624178416611 ], [ -95.42473301368193, 29.677617177848369 ], [ -95.424510013398859, 29.677624177834097 ], [ -95.422219012566657, 29.67773517863904 ], [ -95.419206012078291, 29.677820178660156 ], [ -95.419194012253612, 29.678054178526761 ], [ -95.419187012091996, 29.678255178523287 ], [ -95.419233012803545, 29.678435179002367 ], [ -95.419225012005271, 29.678848178719157 ], [ -95.419219012762724, 29.679010178317405 ], [ -95.419214012421563, 29.67922017905989 ], [ -95.419210012175398, 29.679479178426071 ], [ -95.419203012150319, 29.679669179269744 ], [ -95.419190011984256, 29.680167179062547 ], [ -95.419185012314017, 29.680416178895122 ], [ -95.419168012005144, 29.680894179386474 ], [ -95.419161012536833, 29.681280179575214 ], [ -95.419155012573142, 29.68163617901337 ], [ -95.419147012486476, 29.681981179105534 ], [ -95.419137011980553, 29.682196179471582 ], [ -95.417965012188532, 29.682174179581107 ], [ -95.417382011876199, 29.68216517964548 ], [ -95.41634701204039, 29.682148179909181 ], [ -95.41582101163074, 29.682139179585882 ], [ -95.415520011937588, 29.682136179356295 ], [ -95.415112011810692, 29.682126179339743 ], [ -95.414488010927982, 29.682112179382798 ], [ -95.412370010623235, 29.682062179689098 ], [ -95.412379010713451, 29.683724179889111 ], [ -95.412413010858202, 29.684851180441925 ], [ -95.412501011166157, 29.687549181160325 ], [ -95.412506011393049, 29.687653180413164 ], [ -95.412497011390798, 29.688151180997536 ], [ -95.412540011588518, 29.689274181431237 ], [ -95.412553011550685, 29.690065181465123 ], [ -95.412559011215265, 29.690667181615314 ], [ -95.412554010900678, 29.690714181637727 ], [ -95.412517011339958, 29.690767181053598 ], [ -95.412544011676289, 29.690999181056718 ], [ -95.412584011023512, 29.69115118145513 ], [ -95.412615011343689, 29.691358181627947 ], [ -95.412711011545738, 29.691898181573169 ], [ -95.412764011064411, 29.692043181479526 ], [ -95.413094011502039, 29.692686181753093 ], [ -95.413159011679383, 29.69281218210245 ], [ -95.413536011691548, 29.693538182359951 ], [ -95.413589011840969, 29.69360318160124 ], [ -95.413736011193606, 29.693784182286155 ], [ -95.413913011576298, 29.694000182162668 ], [ -95.414370011608682, 29.694454182321202 ], [ -95.414871012298406, 29.693841182036127 ], [ -95.415167011899726, 29.693445181657864 ], [ -95.41544301214725, 29.693104182176974 ], [ -95.416134011699597, 29.692253181869631 ], [ -95.416488012011897, 29.691748181657857 ], [ -95.416703012525787, 29.691360181594547 ], [ -95.416960012701125, 29.691107181255941 ], [ -95.417472012719571, 29.690618181623652 ], [ -95.417759012567871, 29.690306181310813 ], [ -95.41797401269335, 29.690060181328967 ], [ -95.418415012258109, 29.689464180736046 ], [ -95.418973012772284, 29.688794180842809 ], [ -95.419362012839329, 29.688283180402177 ], [ -95.419921012387221, 29.68758418069077 ], [ -95.420340012719493, 29.687044180608638 ], [ -95.420757013230727, 29.686479180451446 ], [ -95.420978012834524, 29.686214180577704 ], [ -95.421294013223601, 29.685795179883005 ], [ -95.421682013473472, 29.685299180210752 ], [ -95.421959013340455, 29.684914180163691 ], [ -95.422240012958369, 29.684621179392909 ], [ -95.422500013921578, 29.684317179393513 ], [ -95.42288901322631, 29.683808179278476 ], [ -95.4231190138469, 29.683507179581575 ], [ -95.423855013379281, 29.682541178911926 ], [ -95.424397013739451, 29.681905179430871 ], [ -95.424522013667698, 29.681753179334361 ], [ -95.424634013402951, 29.681605179244087 ], [ -95.424825013588332, 29.68137917909835 ], [ -95.426045014571912, 29.679883178405124 ], [ -95.427432014289892, 29.67805817864085 ], [ -95.427583014155246, 29.67784117845363 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 703, "Tract": "48201413301", "Area_SqMi": 0.55295493593558465, "total_2009": 1165, "total_2010": 1104, "total_2011": 1479, "total_2012": 1254, "total_2013": 1390, "total_2014": 1594, "total_2015": 1766, "total_2016": 1715, "total_2017": 1814, "total_2018": 1533, "total_2019": 1664, "total_2020": 1647, "age1": 567, "age2": 953, "age3": 355, "earn1": 520, "earn2": 738, "earn3": 617, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 205, "naics_s07": 593, "naics_s08": 0, "naics_s09": 1, "naics_s10": 19, "naics_s11": 18, "naics_s12": 50, "naics_s13": 0, "naics_s14": 327, "naics_s15": 0, "naics_s16": 148, "naics_s17": 2, "naics_s18": 475, "naics_s19": 34, "naics_s20": 0, "race1": 1175, "race2": 530, "race3": 11, "race4": 132, "race5": 2, "race6": 25, "ethnicity1": 1279, "ethnicity2": 596, "edu1": 304, "edu2": 342, "edu3": 397, "edu4": 265, "Shape_Length": 18972.869330732377, "Shape_Area": 15415437.222052867, "total_2021": 1753, "total_2022": 1875 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.427278014578306, 29.69053618083796 ], [ -95.427279014416285, 29.689739180653948 ], [ -95.427273015158249, 29.689016180410018 ], [ -95.427271014852423, 29.688280179955328 ], [ -95.42725701475122, 29.688046179956498 ], [ -95.427248014899121, 29.687564180067362 ], [ -95.427239014410659, 29.686838180088198 ], [ -95.427233014975016, 29.686364180136348 ], [ -95.427227014271395, 29.685888179772256 ], [ -95.427216014226033, 29.684878180075327 ], [ -95.427209014383081, 29.684062179761511 ], [ -95.427192014809336, 29.683237179092337 ], [ -95.427167014576028, 29.682414178999171 ], [ -95.427164014046696, 29.681751179443708 ], [ -95.427042014756097, 29.681147178497401 ], [ -95.426900014873155, 29.680806178709016 ], [ -95.426569014485409, 29.680324178519282 ], [ -95.426045014571912, 29.679883178405124 ], [ -95.424825013588332, 29.68137917909835 ], [ -95.424634013402951, 29.681605179244087 ], [ -95.424522013667698, 29.681753179334361 ], [ -95.424397013739451, 29.681905179430871 ], [ -95.423855013379281, 29.682541178911926 ], [ -95.4231190138469, 29.683507179581575 ], [ -95.42288901322631, 29.683808179278476 ], [ -95.422500013921578, 29.684317179393513 ], [ -95.422240012958369, 29.684621179392909 ], [ -95.421959013340455, 29.684914180163691 ], [ -95.421682013473472, 29.685299180210752 ], [ -95.421294013223601, 29.685795179883005 ], [ -95.420978012834524, 29.686214180577704 ], [ -95.420757013230727, 29.686479180451446 ], [ -95.420340012719493, 29.687044180608638 ], [ -95.419921012387221, 29.68758418069077 ], [ -95.419362012839329, 29.688283180402177 ], [ -95.418973012772284, 29.688794180842809 ], [ -95.418415012258109, 29.689464180736046 ], [ -95.41797401269335, 29.690060181328967 ], [ -95.417759012567871, 29.690306181310813 ], [ -95.417472012719571, 29.690618181623652 ], [ -95.416960012701125, 29.691107181255941 ], [ -95.416703012525787, 29.691360181594547 ], [ -95.416488012011897, 29.691748181657857 ], [ -95.416134011699597, 29.692253181869631 ], [ -95.41544301214725, 29.693104182176974 ], [ -95.415167011899726, 29.693445181657864 ], [ -95.414871012298406, 29.693841182036127 ], [ -95.414370011608682, 29.694454182321202 ], [ -95.413609011622611, 29.6954541824941 ], [ -95.41336001158092, 29.695758182452462 ], [ -95.412423011285412, 29.696957182395327 ], [ -95.412378011221577, 29.69702818242434 ], [ -95.412221011168825, 29.69721318246679 ], [ -95.412133010932337, 29.697317182927794 ], [ -95.413552011336009, 29.697674182314735 ], [ -95.414485011881908, 29.697818183118699 ], [ -95.414784012134035, 29.697833182455952 ], [ -95.415100011970992, 29.697849182328525 ], [ -95.415221012102094, 29.69784618315407 ], [ -95.415633012450485, 29.697836182999989 ], [ -95.416333012358706, 29.697820182991659 ], [ -95.416654012124681, 29.69779018291716 ], [ -95.417232012576989, 29.697736182439861 ], [ -95.417838012751119, 29.697511182799865 ], [ -95.418027012388833, 29.697393182800035 ], [ -95.418105013204993, 29.697345182732548 ], [ -95.419650012865304, 29.695912182095277 ], [ -95.420078013198591, 29.695698182072377 ], [ -95.420441013772461, 29.695645182021075 ], [ -95.420752013654251, 29.69565018226838 ], [ -95.420947013189092, 29.695705181923266 ], [ -95.422841014489478, 29.696703182611127 ], [ -95.42321601396381, 29.696851182386816 ], [ -95.423976014693153, 29.696998182221773 ], [ -95.424982014701115, 29.696936182584277 ], [ -95.425647014593949, 29.696748181890339 ], [ -95.426253015344059, 29.696446182355796 ], [ -95.426601015239811, 29.696194181810949 ], [ -95.426940014660573, 29.695825181849006 ], [ -95.426897015112345, 29.695718182153481 ], [ -95.426726015065256, 29.695329181639448 ], [ -95.426492015168364, 29.694675182039649 ], [ -95.426458014405839, 29.693848181652911 ], [ -95.426625015138882, 29.693105181130928 ], [ -95.426960015097507, 29.692280181160687 ], [ -95.42726001514103, 29.691366181125417 ], [ -95.427278014578306, 29.69053618083796 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 704, "Tract": "48201543201", "Area_SqMi": 1.8494566595835786, "total_2009": 5767, "total_2010": 5542, "total_2011": 6231, "total_2012": 7216, "total_2013": 7659, "total_2014": 7733, "total_2015": 7961, "total_2016": 8034, "total_2017": 8045, "total_2018": 8962, "total_2019": 9303, "total_2020": 8839, "age1": 1307, "age2": 4441, "age3": 1889, "earn1": 548, "earn2": 1674, "earn3": 5415, "naics_s01": 120, "naics_s02": 305, "naics_s03": 0, "naics_s04": 1273, "naics_s05": 1076, "naics_s06": 1132, "naics_s07": 367, "naics_s08": 168, "naics_s09": 28, "naics_s10": 44, "naics_s11": 169, "naics_s12": 649, "naics_s13": 274, "naics_s14": 748, "naics_s15": 217, "naics_s16": 524, "naics_s17": 2, "naics_s18": 183, "naics_s19": 333, "naics_s20": 25, "race1": 5938, "race2": 992, "race3": 63, "race4": 518, "race5": 7, "race6": 119, "ethnicity1": 4939, "ethnicity2": 2698, "edu1": 1340, "edu2": 1589, "edu3": 1870, "edu4": 1531, "Shape_Length": 30567.823477299418, "Shape_Area": 51559686.292482056, "total_2021": 7911, "total_2022": 7637 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.581768059583766, 29.798777197696584 ], [ -95.581133059420566, 29.798757197855945 ], [ -95.581114059398345, 29.796595197114382 ], [ -95.581081058560144, 29.792805196894381 ], [ -95.58101705887313, 29.785318194710914 ], [ -95.58101605845637, 29.785212194541124 ], [ -95.58101305842699, 29.784896195131775 ], [ -95.580310058204333, 29.78488419458705 ], [ -95.577528057330028, 29.784884194936271 ], [ -95.576284056728269, 29.784880194894875 ], [ -95.575830056846229, 29.784879194820682 ], [ -95.575660057234074, 29.7848791950736 ], [ -95.575449056548251, 29.784884195041666 ], [ -95.574602056917826, 29.784869194736121 ], [ -95.572865055870295, 29.78486219544796 ], [ -95.5704180557927, 29.784835195022097 ], [ -95.567601054950742, 29.784845195031551 ], [ -95.56626905425928, 29.784820195023087 ], [ -95.565937054797672, 29.784815195017348 ], [ -95.56524405392112, 29.784805195792043 ], [ -95.565000054236734, 29.784799195512779 ], [ -95.564086054228639, 29.784799195732969 ], [ -95.563705053642011, 29.784811195756081 ], [ -95.563542054124966, 29.784805195246189 ], [ -95.563194054042455, 29.784811195382183 ], [ -95.563201053408349, 29.78517419542457 ], [ -95.563208054158551, 29.785540195754777 ], [ -95.563210054364532, 29.785660195537556 ], [ -95.563210054204333, 29.785685195258008 ], [ -95.563211054108919, 29.785725195904494 ], [ -95.563213053993778, 29.785812196073604 ], [ -95.563218053985452, 29.78610519570697 ], [ -95.563224054142125, 29.786563195454438 ], [ -95.563229054389282, 29.786702196342024 ], [ -95.563223053566261, 29.78677319558572 ], [ -95.563276053918983, 29.78908519657044 ], [ -95.563307054102708, 29.790602196614699 ], [ -95.563310054592506, 29.790799196743802 ], [ -95.56331505466116, 29.790999196966723 ], [ -95.563345053905792, 29.792483197109838 ], [ -95.563572054538994, 29.79525319772976 ], [ -95.563597054876951, 29.797066197896591 ], [ -95.563612054527866, 29.798089198124295 ], [ -95.563642054652064, 29.799952198686089 ], [ -95.563742054664075, 29.806243199431428 ], [ -95.56375305544266, 29.80759620010701 ], [ -95.563772055660948, 29.809922200602983 ], [ -95.56378805519293, 29.812483201329265 ], [ -95.563789055552405, 29.81270320147895 ], [ -95.564047055430962, 29.812695201417096 ], [ -95.564707055828308, 29.812690200735126 ], [ -95.565867055792765, 29.812678200801908 ], [ -95.566216056052454, 29.812676201069234 ], [ -95.567003055731718, 29.812719201080643 ], [ -95.567283056230721, 29.812750201069107 ], [ -95.567831055854057, 29.812838201226988 ], [ -95.568076056564109, 29.812876201364759 ], [ -95.568363056583777, 29.812911200788424 ], [ -95.568707057019822, 29.812950201063899 ], [ -95.569250057204457, 29.81296220064052 ], [ -95.569922056860648, 29.81294020091029 ], [ -95.57179005724872, 29.812903200703325 ], [ -95.573562058222393, 29.812864201286324 ], [ -95.574912057916919, 29.812947200451497 ], [ -95.574944058536417, 29.812948201189414 ], [ -95.575793058717238, 29.812964201108972 ], [ -95.576064058376033, 29.813080201103826 ], [ -95.576072058444083, 29.812558200690457 ], [ -95.576089057941957, 29.811710200578815 ], [ -95.576093058147435, 29.811083200635537 ], [ -95.57611105790248, 29.810548200535766 ], [ -95.576115058597253, 29.810239200055999 ], [ -95.576143057897283, 29.809761200209511 ], [ -95.576191057780832, 29.809347200362701 ], [ -95.576242058752484, 29.809021199930207 ], [ -95.576373057937388, 29.808387199978487 ], [ -95.576547058107934, 29.80774120018193 ], [ -95.576636057891491, 29.807491199863048 ], [ -95.576968058216949, 29.80666019932238 ], [ -95.577132058078433, 29.806329199294019 ], [ -95.577380058088153, 29.805860199545624 ], [ -95.577965058091038, 29.804917199104661 ], [ -95.579108058385373, 29.80309319850176 ], [ -95.579761058536718, 29.802041198205941 ], [ -95.580262058616768, 29.801208198065115 ], [ -95.581768059583766, 29.798777197696584 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 705, "Tract": "48201554405", "Area_SqMi": 1.5478169567686444, "total_2009": 225, "total_2010": 525, "total_2011": 539, "total_2012": 275, "total_2013": 431, "total_2014": 507, "total_2015": 687, "total_2016": 707, "total_2017": 773, "total_2018": 911, "total_2019": 1037, "total_2020": 1191, "age1": 470, "age2": 415, "age3": 211, "earn1": 374, "earn2": 400, "earn3": 322, "naics_s01": 0, "naics_s02": 9, "naics_s03": 0, "naics_s04": 27, "naics_s05": 8, "naics_s06": 11, "naics_s07": 183, "naics_s08": 4, "naics_s09": 0, "naics_s10": 23, "naics_s11": 9, "naics_s12": 8, "naics_s13": 0, "naics_s14": 62, "naics_s15": 45, "naics_s16": 126, "naics_s17": 52, "naics_s18": 494, "naics_s19": 35, "naics_s20": 0, "race1": 831, "race2": 155, "race3": 13, "race4": 64, "race5": 1, "race6": 32, "ethnicity1": 729, "ethnicity2": 367, "edu1": 128, "edu2": 173, "edu3": 191, "edu4": 134, "Shape_Length": 26542.372081691828, "Shape_Area": 43150487.639512651, "total_2021": 1341, "total_2022": 1096 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.72025210338586, 29.987669231320893 ], [ -95.720282103370366, 29.987657231104976 ], [ -95.720200103273214, 29.987470231616879 ], [ -95.719647102591622, 29.986308230955625 ], [ -95.719002103215146, 29.984952230728588 ], [ -95.718947103204997, 29.984831230630263 ], [ -95.718938102991956, 29.984812231061991 ], [ -95.718897103035005, 29.984715230782999 ], [ -95.718835102521894, 29.984569231190907 ], [ -95.718777102938276, 29.984434230881369 ], [ -95.718441102701604, 29.983704230490339 ], [ -95.718413102119925, 29.983638230713588 ], [ -95.718342102183726, 29.983481230273256 ], [ -95.717794102399637, 29.982283230619778 ], [ -95.717545101775002, 29.981737229926047 ], [ -95.717466101693887, 29.981565230120623 ], [ -95.717454102593081, 29.981539230246547 ], [ -95.71743510180471, 29.981511229823294 ], [ -95.71739010262516, 29.981444230348302 ], [ -95.717375101848333, 29.981422230191757 ], [ -95.717350101631567, 29.981385230254716 ], [ -95.717278102122918, 29.981276230655435 ], [ -95.71695510228183, 29.980922229747161 ], [ -95.716788102142218, 29.980655230110802 ], [ -95.716769101838892, 29.980608230538071 ], [ -95.716722102071657, 29.980485229861156 ], [ -95.716670101903773, 29.980122230218647 ], [ -95.716651101484388, 29.979973229941965 ], [ -95.71666310137725, 29.979867230225558 ], [ -95.716701102347884, 29.979780229841257 ], [ -95.716738102337672, 29.979662230311817 ], [ -95.716778101923495, 29.979522230139541 ], [ -95.716769101695519, 29.979502229468604 ], [ -95.716783101466845, 29.979508229648324 ], [ -95.716837102073541, 29.979371229669653 ], [ -95.716875101602398, 29.979240230186736 ], [ -95.716964101877551, 29.979046229371107 ], [ -95.716353101789892, 29.978809229903 ], [ -95.711094100505264, 29.976830229803301 ], [ -95.710404099668295, 29.97654222976735 ], [ -95.709526100264213, 29.976234229120976 ], [ -95.708989099532118, 29.976051229347885 ], [ -95.707911099843528, 29.975666229840797 ], [ -95.706786098982519, 29.975301229551572 ], [ -95.706743098726804, 29.975287229210046 ], [ -95.705865099346568, 29.975045229372558 ], [ -95.705204098812274, 29.974873229291795 ], [ -95.704693098389924, 29.974741228971705 ], [ -95.703767097980531, 29.974542229639649 ], [ -95.703406098654682, 29.974464229260644 ], [ -95.703008097699978, 29.974379229216488 ], [ -95.699971097217983, 29.973643229456712 ], [ -95.69980409686876, 29.973602229220788 ], [ -95.699738097231531, 29.973814229076979 ], [ -95.699644097706695, 29.974113229745811 ], [ -95.699577097405992, 29.974331229300997 ], [ -95.699549097400634, 29.974455229364946 ], [ -95.699513097651916, 29.97467622992728 ], [ -95.699483097587276, 29.97505322956799 ], [ -95.699478097096247, 29.975297229381809 ], [ -95.699462097622671, 29.975498229467551 ], [ -95.69939109748023, 29.976787229655429 ], [ -95.699344097716008, 29.977660230481519 ], [ -95.699323096922129, 29.978043229803969 ], [ -95.699245097335989, 29.979458230393814 ], [ -95.699225097790915, 29.979839230618005 ], [ -95.699215096980708, 29.980231231068643 ], [ -95.699225097831913, 29.981196231205473 ], [ -95.699232097503781, 29.981604230544516 ], [ -95.699236097333667, 29.981857230810824 ], [ -95.699250097804196, 29.982659231054082 ], [ -95.699253097149892, 29.982866230961783 ], [ -95.69927509730752, 29.984219231070682 ], [ -95.699282097329075, 29.984627231780212 ], [ -95.699290097983507, 29.985049231752665 ], [ -95.699297097954272, 29.985472231436642 ], [ -95.699305098166491, 29.985946232164519 ], [ -95.699336098270436, 29.987498232499096 ], [ -95.699351097974628, 29.988220232279282 ], [ -95.699367097658012, 29.989314232500629 ], [ -95.699384098043566, 29.990527232305109 ], [ -95.699405098303984, 29.991591232722641 ], [ -95.699419098388105, 29.992795232738025 ], [ -95.699424098335228, 29.99318923361632 ], [ -95.699402098414652, 29.995557233425213 ], [ -95.699388097980389, 29.995933233709739 ], [ -95.69938709826495, 29.995991234200986 ], [ -95.699358098640616, 29.9961442340371 ], [ -95.699303098591614, 29.996286233989437 ], [ -95.699213097861872, 29.996464233802342 ], [ -95.699135098289815, 29.996586233558627 ], [ -95.69904809845508, 29.996701234139689 ], [ -95.698951097937694, 29.996805234424809 ], [ -95.698792098216842, 29.996956234214039 ], [ -95.698654097951135, 29.997075233813938 ], [ -95.698604097572499, 29.997118233994463 ], [ -95.698500098049621, 29.997209234372647 ], [ -95.699374098093941, 29.99720023403215 ], [ -95.700670098243918, 29.997186233949186 ], [ -95.703021098837922, 29.997147234314728 ], [ -95.703205098820504, 29.99715223419344 ], [ -95.703418099275879, 29.997148233504955 ], [ -95.703508098963823, 29.99714723377053 ], [ -95.70378409989128, 29.997138233503936 ], [ -95.707064100414016, 29.997094234092625 ], [ -95.707613100705871, 29.997088234112976 ], [ -95.707715100540028, 29.997094234136682 ], [ -95.708015100711336, 29.997092233946343 ], [ -95.708156100529379, 29.997087233725587 ], [ -95.708696100405476, 29.997087233442993 ], [ -95.708730100552842, 29.997081233541522 ], [ -95.708797100427432, 29.997084233473604 ], [ -95.708893100935498, 29.997122233415791 ], [ -95.708942100323583, 29.997175234156064 ], [ -95.709142100381897, 29.99715323360936 ], [ -95.709310100884323, 29.997134234019075 ], [ -95.709997101223919, 29.997077233472826 ], [ -95.710703100912909, 29.996952233955515 ], [ -95.711100101387331, 29.996867233617301 ], [ -95.711372101258732, 29.996809233887941 ], [ -95.711791101267195, 29.9966902333747 ], [ -95.712253101845732, 29.99649623316045 ], [ -95.712666101583352, 29.996309233393863 ], [ -95.713060101451916, 29.996115233200708 ], [ -95.713416101823043, 29.995902233654903 ], [ -95.713672101992586, 29.995740233004572 ], [ -95.713991101907737, 29.995490233106754 ], [ -95.714335102461717, 29.995228233090081 ], [ -95.714691102261966, 29.994902232825225 ], [ -95.715210102182937, 29.994340233065355 ], [ -95.715422101847579, 29.994040232591075 ], [ -95.71547010179745, 29.993972232625563 ], [ -95.715610102046128, 29.993777233141163 ], [ -95.715766101971099, 29.993527232493285 ], [ -95.715928102088697, 29.993221232531777 ], [ -95.71609710218307, 29.992871232317849 ], [ -95.716247102719109, 29.992434232752416 ], [ -95.716422102088742, 29.991934232608351 ], [ -95.716517102811309, 29.9915782323543 ], [ -95.716672102802647, 29.991171232396677 ], [ -95.716754102115146, 29.990897232193465 ], [ -95.716955102573309, 29.990422232162789 ], [ -95.717248102480113, 29.989972232029423 ], [ -95.717679102736753, 29.989390231755497 ], [ -95.718010102705904, 29.989059231908527 ], [ -95.718204102211459, 29.988897231272546 ], [ -95.718629102797564, 29.988565231584843 ], [ -95.719210102643061, 29.988197231847597 ], [ -95.719729102964365, 29.987915231213179 ], [ -95.720119102893605, 29.987722231404334 ], [ -95.72025210338586, 29.987669231320893 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 706, "Tract": "48201542105", "Area_SqMi": 1.2295217451532503, "total_2009": 395, "total_2010": 512, "total_2011": 745, "total_2012": 675, "total_2013": 695, "total_2014": 824, "total_2015": 747, "total_2016": 778, "total_2017": 808, "total_2018": 917, "total_2019": 963, "total_2020": 1009, "age1": 410, "age2": 411, "age3": 160, "earn1": 303, "earn2": 502, "earn3": 176, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 0, "naics_s06": 6, "naics_s07": 517, "naics_s08": 6, "naics_s09": 0, "naics_s10": 34, "naics_s11": 6, "naics_s12": 15, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 74, "naics_s17": 0, "naics_s18": 254, "naics_s19": 43, "naics_s20": 0, "race1": 655, "race2": 229, "race3": 10, "race4": 68, "race5": 0, "race6": 19, "ethnicity1": 605, "ethnicity2": 376, "edu1": 148, "edu2": 184, "edu3": 141, "edu4": 98, "Shape_Length": 25217.997188821508, "Shape_Area": 34276961.907374628, "total_2021": 1062, "total_2022": 981 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.720291097604644, 29.861357206138958 ], [ -95.720212097352444, 29.861043205547578 ], [ -95.720122097508892, 29.860768205386808 ], [ -95.719967096841415, 29.860374205303884 ], [ -95.719183097342892, 29.858497205589035 ], [ -95.719156096596649, 29.858432205241304 ], [ -95.719006097045494, 29.858072205330995 ], [ -95.71887009668842, 29.857724205103992 ], [ -95.718774096396317, 29.85743120506104 ], [ -95.718714097039239, 29.857201205263902 ], [ -95.718666097177021, 29.856966204538463 ], [ -95.718643097306654, 29.856814204757111 ], [ -95.718625096927894, 29.856606205106033 ], [ -95.718617096276361, 29.8562782045265 ], [ -95.718617096366515, 29.856098204905749 ], [ -95.718620096726895, 29.854922204466764 ], [ -95.718618096701306, 29.854623204511068 ], [ -95.718616096553916, 29.853936203966551 ], [ -95.71861609660634, 29.853746203826535 ], [ -95.718616096664476, 29.853482204411211 ], [ -95.718616096137666, 29.85318220446052 ], [ -95.71861609645012, 29.852821203925505 ], [ -95.718617096759658, 29.852704203968937 ], [ -95.718618096693547, 29.85227520350762 ], [ -95.718618096706862, 29.852001203578169 ], [ -95.71861809624265, 29.851932203561052 ], [ -95.71862709619775, 29.851549203772908 ], [ -95.718660097034785, 29.8510632039821 ], [ -95.718710096539013, 29.850565203422178 ], [ -95.718791096385658, 29.849984203318204 ], [ -95.71881009687857, 29.849851203430163 ], [ -95.71891309602745, 29.849129203172666 ], [ -95.718972096826164, 29.848718203042068 ], [ -95.719118096734661, 29.847688203036554 ], [ -95.719172096559731, 29.847262202480977 ], [ -95.719196096367, 29.846943202546683 ], [ -95.719196096241944, 29.846441202815782 ], [ -95.719190096921224, 29.845799203040126 ], [ -95.719189096825431, 29.845754202901016 ], [ -95.719186096670597, 29.845651202896786 ], [ -95.719178096153854, 29.845110202407213 ], [ -95.719161096089536, 29.844587202646622 ], [ -95.719140096785281, 29.844331202713793 ], [ -95.719086096346402, 29.843994202576528 ], [ -95.718979096550711, 29.84347420235796 ], [ -95.718939096107604, 29.843195202200132 ], [ -95.718917096639217, 29.842916201939254 ], [ -95.718899096677646, 29.842452202343431 ], [ -95.718900096716965, 29.842290201920711 ], [ -95.718507096542652, 29.842277201980796 ], [ -95.718173095520527, 29.842286202364772 ], [ -95.717579095679284, 29.842317201861228 ], [ -95.717157095883465, 29.842331202378784 ], [ -95.717047096041014, 29.842339201551642 ], [ -95.716940095728546, 29.842353202112932 ], [ -95.716836095670104, 29.842376202410737 ], [ -95.716739095789308, 29.842403201781867 ], [ -95.716648095811877, 29.842435201970162 ], [ -95.716562095667243, 29.842472201970519 ], [ -95.716480095255974, 29.842514201676344 ], [ -95.716403095669023, 29.842561202138551 ], [ -95.716337095147381, 29.84260720194963 ], [ -95.716275095362931, 29.84265820242171 ], [ -95.716232095764568, 29.84269720184589 ], [ -95.71588409498527, 29.843060201974822 ], [ -95.7158180949788, 29.843122202233246 ], [ -95.715746095687251, 29.843181202537959 ], [ -95.715669095294516, 29.843236202009358 ], [ -95.714634095613718, 29.843570202312446 ], [ -95.714562095382234, 29.843591202151256 ], [ -95.714077095066358, 29.84370820210011 ], [ -95.713960095356356, 29.843733202205268 ], [ -95.713862094955772, 29.843748202484569 ], [ -95.713649094866184, 29.843767202796503 ], [ -95.71343609488288, 29.843771202128373 ], [ -95.713243094724376, 29.843756202148281 ], [ -95.71304709449447, 29.843726202627426 ], [ -95.71288409490532, 29.843689202649056 ], [ -95.712701094330725, 29.843632202358673 ], [ -95.712605094643166, 29.84359720256403 ], [ -95.712487094327912, 29.843545202406858 ], [ -95.712319094553536, 29.84345720240157 ], [ -95.711967094933357, 29.843232202654825 ], [ -95.711423094190721, 29.842876202451968 ], [ -95.711224094626644, 29.842756202132687 ], [ -95.711124094263283, 29.842706202656331 ], [ -95.71093409464568, 29.842631202539181 ], [ -95.710763093982933, 29.842580202538244 ], [ -95.710628094321876, 29.842550202616646 ], [ -95.710439094305102, 29.842522202198566 ], [ -95.710286094438814, 29.842513202700989 ], [ -95.710129094501426, 29.842514201922423 ], [ -95.709948094420596, 29.842531202283013 ], [ -95.709769093665415, 29.84255820225254 ], [ -95.709345093969418, 29.842621202661583 ], [ -95.708945093250733, 29.842731202471221 ], [ -95.70855509375383, 29.8427672022734 ], [ -95.70812609376587, 29.842810202516823 ], [ -95.707665093698907, 29.84287620210441 ], [ -95.707332093478684, 29.842928202062467 ], [ -95.707170093326397, 29.842968202282133 ], [ -95.707022093248838, 29.843004202904126 ], [ -95.706822093253749, 29.843077202608843 ], [ -95.706690092951987, 29.843135202307977 ], [ -95.706631093164347, 29.843163202480284 ], [ -95.706100093270024, 29.843426202435957 ], [ -95.705073092336889, 29.843933203147238 ], [ -95.704934092733453, 29.844002202986687 ], [ -95.704827092412202, 29.844049202670924 ], [ -95.704746092266817, 29.844081202310115 ], [ -95.70471909303447, 29.844091202770869 ], [ -95.704610092222026, 29.844125203090204 ], [ -95.704499092309931, 29.844154202713653 ], [ -95.704271092535336, 29.844195202404386 ], [ -95.70318309216006, 29.844348202860107 ], [ -95.702834092680803, 29.844397202727681 ], [ -95.702774091865152, 29.844405202795063 ], [ -95.702745092599173, 29.844409203062494 ], [ -95.702547092360803, 29.844432202778695 ], [ -95.702594092015275, 29.844824202797916 ], [ -95.702608092489371, 29.845060203003339 ], [ -95.702609092690395, 29.845153202923601 ], [ -95.702610092254005, 29.845216203273228 ], [ -95.702635092663755, 29.846392203023758 ], [ -95.702635091832278, 29.84651320301694 ], [ -95.702642092626704, 29.848004203381429 ], [ -95.702647091820694, 29.848136203977791 ], [ -95.70264909216111, 29.848404203655065 ], [ -95.702651091951907, 29.848926203677916 ], [ -95.702654092054658, 29.849354204220059 ], [ -95.702816092438027, 29.850019204046422 ], [ -95.702876092286516, 29.850286204145725 ], [ -95.702948092867885, 29.850527203821798 ], [ -95.703004092802772, 29.850678204234438 ], [ -95.703036092233077, 29.850765203956914 ], [ -95.703131092561506, 29.850981204555165 ], [ -95.703245093017742, 29.851204203948981 ], [ -95.70338309230165, 29.851435204044645 ], [ -95.703533092250453, 29.851654204157917 ], [ -95.703697092273117, 29.85186520482112 ], [ -95.704807093167801, 29.853121204206165 ], [ -95.704960093387157, 29.853316204769939 ], [ -95.705113092695939, 29.853540204526272 ], [ -95.70523609316092, 29.853748204812032 ], [ -95.705346093711668, 29.853964204580979 ], [ -95.705446093082273, 29.854196204747794 ], [ -95.705464093145594, 29.854249205024324 ], [ -95.705500093129373, 29.854356204701816 ], [ -95.705729093503876, 29.85502020495387 ], [ -95.705828093428124, 29.855405205448868 ], [ -95.705899093644092, 29.856079205187307 ], [ -95.705846093127775, 29.858244205815915 ], [ -95.70584509397969, 29.858290205703028 ], [ -95.705926094159665, 29.85940820552894 ], [ -95.705774093763708, 29.86111820612809 ], [ -95.705794093741417, 29.86147120670698 ], [ -95.705835094101843, 29.861776206611943 ], [ -95.705884094128251, 29.862043206473608 ], [ -95.705962094122867, 29.862396206065029 ], [ -95.706121094200682, 29.863080206465423 ], [ -95.706262093570601, 29.863747206993189 ], [ -95.706278094422004, 29.863907207121102 ], [ -95.706276094113846, 29.864000206721052 ], [ -95.706276094325872, 29.864084206353539 ], [ -95.70626009421305, 29.864241206734668 ], [ -95.706256094397801, 29.864291207021783 ], [ -95.706213093672176, 29.864605206610232 ], [ -95.706173094313513, 29.864789207184312 ], [ -95.706081093567562, 29.865133206884241 ], [ -95.706446093944763, 29.865188206807591 ], [ -95.706723094171878, 29.865215206812945 ], [ -95.706773094045246, 29.865218206937836 ], [ -95.707051093965305, 29.865234206919428 ], [ -95.707329094397195, 29.865238206783019 ], [ -95.707439094096117, 29.865235207072963 ], [ -95.707784094446581, 29.865223207209024 ], [ -95.708055094732231, 29.865201206982125 ], [ -95.708379094915017, 29.865160207220111 ], [ -95.708840094810014, 29.865078207079488 ], [ -95.709094095054056, 29.865019206885545 ], [ -95.709355094683261, 29.864946206806753 ], [ -95.709615095100517, 29.864865206690382 ], [ -95.709877095186485, 29.864770206763648 ], [ -95.710135095314357, 29.864665207143794 ], [ -95.710473094729423, 29.864516206823286 ], [ -95.711046095131721, 29.864264206374681 ], [ -95.712238095050452, 29.863734206462482 ], [ -95.712966095913089, 29.863409206094211 ], [ -95.713057095486349, 29.863368205974716 ], [ -95.713293095441514, 29.863263206470261 ], [ -95.713990095774463, 29.862952206081342 ], [ -95.715066095903254, 29.862474206573928 ], [ -95.715321096402747, 29.862367205782913 ], [ -95.715633096126751, 29.862253206310243 ], [ -95.71599609605579, 29.862142205675184 ], [ -95.716238096702284, 29.862081206112247 ], [ -95.716635096451739, 29.861999205889955 ], [ -95.717943097329439, 29.861769205905492 ], [ -95.720291097604644, 29.861357206138958 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 707, "Tract": "48201533904", "Area_SqMi": 0.47277911733404315, "total_2009": 45, "total_2010": 25, "total_2011": 33, "total_2012": 23, "total_2013": 13, "total_2014": 12, "total_2015": 18, "total_2016": 20, "total_2017": 16, "total_2018": 20, "total_2019": 17, "total_2020": 22, "age1": 2, "age2": 16, "age3": 1, "earn1": 1, "earn2": 12, "earn3": 6, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 0, "naics_s07": 1, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 13, "race2": 2, "race3": 0, "race4": 4, "race5": 0, "race6": 0, "ethnicity1": 9, "ethnicity2": 10, "edu1": 5, "edu2": 5, "edu3": 3, "edu4": 4, "Shape_Length": 15825.413239329979, "Shape_Area": 13180272.621726846, "total_2021": 23, "total_2022": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.497848044094383, 29.937157229257263 ], [ -95.497847043685482, 29.936924229132657 ], [ -95.497839043634869, 29.935994228968966 ], [ -95.497841043987762, 29.935667228521318 ], [ -95.497843043641723, 29.935242228645482 ], [ -95.497836043835861, 29.935032228643202 ], [ -95.497822043478251, 29.934595228326195 ], [ -95.497800044106967, 29.934366228275778 ], [ -95.497750043671672, 29.934040228484918 ], [ -95.497677043440433, 29.933703228014252 ], [ -95.497645044265937, 29.933581227844876 ], [ -95.497524043542086, 29.93321722846456 ], [ -95.497411043887951, 29.932941227968115 ], [ -95.497327044166141, 29.932767228345366 ], [ -95.497212043851391, 29.932546227908457 ], [ -95.49699904313259, 29.932188227467407 ], [ -95.496898043494056, 29.932041227975478 ], [ -95.496707043436643, 29.931790228111939 ], [ -95.496560043048149, 29.931618227366162 ], [ -95.49624604351979, 29.931286227636125 ], [ -95.495963042991733, 29.931034227708633 ], [ -95.495880043349445, 29.930961227573647 ], [ -95.495619043624473, 29.930750227276206 ], [ -95.494098042253086, 29.929583227313227 ], [ -95.493518042715664, 29.929129227543871 ], [ -95.493346043022839, 29.928983226928956 ], [ -95.493088042428639, 29.928744227273629 ], [ -95.492929042453952, 29.928585227224378 ], [ -95.492733042189599, 29.928359227510143 ], [ -95.492541042268513, 29.928105227118614 ], [ -95.492363042528055, 29.928211227047822 ], [ -95.492246042461502, 29.928269227099875 ], [ -95.492043042422893, 29.928382227248797 ], [ -95.491872041823598, 29.928478227331656 ], [ -95.491821042548423, 29.928516227529929 ], [ -95.491752042087768, 29.928545227729675 ], [ -95.491673042319761, 29.92858922755234 ], [ -95.491558042393763, 29.928655227516312 ], [ -95.491505042242323, 29.928696226959431 ], [ -95.491297041713992, 29.928809227080677 ], [ -95.491266041810547, 29.928829227782824 ], [ -95.491147041495466, 29.928903227199026 ], [ -95.490888042127409, 29.929027227430208 ], [ -95.490805041834733, 29.929043227583772 ], [ -95.490741041568512, 29.929076227408469 ], [ -95.490595041445502, 29.929107227733383 ], [ -95.4904470412488, 29.929111227838664 ], [ -95.490277041615983, 29.929108227000899 ], [ -95.490177041467319, 29.929098227190917 ], [ -95.490083041980625, 29.929081227570169 ], [ -95.489992041994796, 29.929058227365264 ], [ -95.489903041620494, 29.929303227212223 ], [ -95.489868041668245, 29.929440227917539 ], [ -95.489845041428325, 29.929588227288775 ], [ -95.489837041725437, 29.929736227202302 ], [ -95.489838041681622, 29.929964228058601 ], [ -95.489848041895939, 29.930103227774122 ], [ -95.489847041591901, 29.930184228131523 ], [ -95.489831041606095, 29.930345227323638 ], [ -95.489842041854132, 29.930404227638338 ], [ -95.489844041456635, 29.930660227686968 ], [ -95.48975504201573, 29.930664227443565 ], [ -95.48963604169009, 29.930658228008387 ], [ -95.489494041895199, 29.930633227641742 ], [ -95.489336042061382, 29.930587227770037 ], [ -95.489259041734442, 29.930545228166174 ], [ -95.489099041571848, 29.930442227594654 ], [ -95.489022041709447, 29.930388227907812 ], [ -95.488937041076483, 29.930345228177426 ], [ -95.488854040962835, 29.930293227728512 ], [ -95.488768041000981, 29.93023022739699 ], [ -95.488331041347607, 29.929960227264203 ], [ -95.488056040923212, 29.929785228003027 ], [ -95.487508041361082, 29.929440228065531 ], [ -95.487336041442106, 29.929342227517633 ], [ -95.487246041181791, 29.929300227672794 ], [ -95.487155041321714, 29.929264227309545 ], [ -95.486937041096695, 29.929198227813895 ], [ -95.486870041251805, 29.929184227870845 ], [ -95.486734040695055, 29.929173227284487 ], [ -95.486655040598563, 29.929168227889175 ], [ -95.486443041117028, 29.929165227632073 ], [ -95.486223040873881, 29.929172227721981 ], [ -95.486151040297372, 29.929168227205189 ], [ -95.485867040489495, 29.929170227945928 ], [ -95.485480040413833, 29.929180227852633 ], [ -95.485189040038335, 29.92918122791799 ], [ -95.484988039989759, 29.929172227733932 ], [ -95.484114040269603, 29.929183227952183 ], [ -95.483506040446926, 29.92918722742758 ], [ -95.483199040435281, 29.929197227993704 ], [ -95.482950039564557, 29.929201228076785 ], [ -95.482832039800059, 29.929208228059249 ], [ -95.481981039353386, 29.929468227877802 ], [ -95.481815039983047, 29.929509227829829 ], [ -95.481669040056431, 29.929532227878443 ], [ -95.481534039175742, 29.929542228106257 ], [ -95.481412039760642, 29.929541227929615 ], [ -95.481425039626842, 29.929730227856052 ], [ -95.481483039723017, 29.930120227960277 ], [ -95.481526039733836, 29.930325228331412 ], [ -95.481643039579822, 29.930721228179625 ], [ -95.481744039539251, 29.931005228152543 ], [ -95.481818039206843, 29.931186228590512 ], [ -95.482371040237894, 29.932357228755329 ], [ -95.482729040383347, 29.933104228943925 ], [ -95.482913040328157, 29.933534228677676 ], [ -95.482988039951849, 29.933751229014234 ], [ -95.483016040350236, 29.93381222869106 ], [ -95.483027040494051, 29.933867228397755 ], [ -95.483075040216718, 29.934038228289065 ], [ -95.483149040094446, 29.934391229145877 ], [ -95.483195039722489, 29.934680229189652 ], [ -95.483227040583074, 29.934916228725424 ], [ -95.483240039861442, 29.935134229175137 ], [ -95.483241040583863, 29.935221229083666 ], [ -95.483247039751518, 29.935829229025156 ], [ -95.483256040667612, 29.936374229016121 ], [ -95.483255040447787, 29.937124229553476 ], [ -95.483260039800442, 29.937357229804185 ], [ -95.483487040816001, 29.937350229774015 ], [ -95.488267041575185, 29.937266229148818 ], [ -95.492456042651582, 29.937236228715253 ], [ -95.497645043628296, 29.937157228486711 ], [ -95.497848044094383, 29.937157229257263 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 708, "Tract": "48201240506", "Area_SqMi": 1.0872420993874585, "total_2009": 2121, "total_2010": 1743, "total_2011": 2219, "total_2012": 2383, "total_2013": 2624, "total_2014": 2803, "total_2015": 2460, "total_2016": 1804, "total_2017": 1717, "total_2018": 1577, "total_2019": 1737, "total_2020": 1512, "age1": 261, "age2": 1093, "age3": 460, "earn1": 140, "earn2": 291, "earn3": 1383, "naics_s01": 0, "naics_s02": 199, "naics_s03": 0, "naics_s04": 186, "naics_s05": 372, "naics_s06": 201, "naics_s07": 42, "naics_s08": 151, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 273, "naics_s13": 0, "naics_s14": 325, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 23, "naics_s19": 6, "naics_s20": 26, "race1": 1410, "race2": 249, "race3": 21, "race4": 106, "race5": 0, "race6": 28, "ethnicity1": 1223, "ethnicity2": 591, "edu1": 325, "edu2": 372, "edu3": 440, "edu4": 416, "Shape_Length": 22912.230715568272, "Shape_Area": 30310448.8974718, "total_2021": 1490, "total_2022": 1814 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.402249020842461, 29.965980237690331 ], [ -95.402215020693063, 29.965260238059084 ], [ -95.40219302063565, 29.964991237578754 ], [ -95.402155020535417, 29.964689237982711 ], [ -95.402106020974031, 29.96437823801465 ], [ -95.402076020998479, 29.964223237341404 ], [ -95.402038020684117, 29.964066237831336 ], [ -95.401994020782936, 29.963907238030433 ], [ -95.40165302045402, 29.962830237302299 ], [ -95.401612020580032, 29.962681237272569 ], [ -95.401494020283792, 29.962113237302038 ], [ -95.401461020033423, 29.961917237348121 ], [ -95.401441020109402, 29.961718237137571 ], [ -95.401416020335233, 29.960930236915846 ], [ -95.401387020080506, 29.95984323681532 ], [ -95.401383020561369, 29.95927523707573 ], [ -95.401375020236401, 29.959099236176755 ], [ -95.401359020457022, 29.958778236983768 ], [ -95.401347020681129, 29.958636236429854 ], [ -95.401307020018095, 29.958341236031043 ], [ -95.40128201987136, 29.958199236304992 ], [ -95.40122002029203, 29.957938236658631 ], [ -95.401158020704159, 29.957719236001743 ], [ -95.401101019851112, 29.957536236046121 ], [ -95.401072020595791, 29.95745723638009 ], [ -95.401048019851189, 29.957376236032392 ], [ -95.401006020061942, 29.957309236386063 ], [ -95.400948020310196, 29.957175236284407 ], [ -95.400883019786264, 29.957042236308496 ], [ -95.400857019701945, 29.956990236231366 ], [ -95.400665019696305, 29.956604236342876 ], [ -95.40025101957167, 29.955734235973701 ], [ -95.400156020206794, 29.955516236261065 ], [ -95.400076019520455, 29.955309236094738 ], [ -95.39999801999079, 29.955073235572307 ], [ -95.399994019521458, 29.955060235499356 ], [ -95.399927019577191, 29.954792235546389 ], [ -95.399903020042046, 29.954306236083035 ], [ -95.39987901936415, 29.953823235855211 ], [ -95.39940701973822, 29.953838236071377 ], [ -95.398307019103996, 29.953858235680336 ], [ -95.39531801899588, 29.953888236025012 ], [ -95.393246017612611, 29.953903235402425 ], [ -95.393227017865797, 29.95292023562925 ], [ -95.389870017482139, 29.952965235882441 ], [ -95.389841017469493, 29.95175323560423 ], [ -95.389125017227045, 29.951757236009765 ], [ -95.386486016440031, 29.951789235733539 ], [ -95.386385016009186, 29.951466235463247 ], [ -95.386269015622588, 29.951002235483521 ], [ -95.385617015431109, 29.95119823595547 ], [ -95.384953015546742, 29.951537235553868 ], [ -95.384796016006902, 29.951615235702949 ], [ -95.38416801522915, 29.952026235349383 ], [ -95.384108015131432, 29.952288235492297 ], [ -95.383932016093127, 29.95276623597924 ], [ -95.383696015038552, 29.95324423569668 ], [ -95.383434015420605, 29.953676236310049 ], [ -95.383210015272496, 29.953955236165537 ], [ -95.382970015260383, 29.954241236689768 ], [ -95.382559015224999, 29.95465423624232 ], [ -95.382220014797767, 29.954973236387712 ], [ -95.381538014976414, 29.955631236530564 ], [ -95.380985014862532, 29.95619823717858 ], [ -95.380710014981176, 29.956584237207597 ], [ -95.38060401530214, 29.956774236563529 ], [ -95.380380015152355, 29.957202237160494 ], [ -95.380296015294832, 29.957401237162369 ], [ -95.380161015320681, 29.957796237353627 ], [ -95.380060014626451, 29.958250236911855 ], [ -95.38003301444715, 29.958480237336623 ], [ -95.379991015031891, 29.958766237333815 ], [ -95.380066015329874, 29.961576237439605 ], [ -95.380094014923927, 29.964152238589659 ], [ -95.380126015428033, 29.965410238949914 ], [ -95.380268015152211, 29.965408238897115 ], [ -95.381610015352848, 29.965392238935969 ], [ -95.382689016016542, 29.965379238137679 ], [ -95.384082015826039, 29.965363238913856 ], [ -95.384738016552333, 29.965354238248004 ], [ -95.385083016107103, 29.965353238854036 ], [ -95.385217016031618, 29.965358238141523 ], [ -95.385350016326541, 29.965368238797677 ], [ -95.385612016395768, 29.965401238753415 ], [ -95.38586401703418, 29.965451238587281 ], [ -95.386107016344624, 29.965515238780984 ], [ -95.386682016617357, 29.965699238567829 ], [ -95.387125016594865, 29.965820238684806 ], [ -95.3874510172881, 29.96589523845233 ], [ -95.387663017378571, 29.965931238781508 ], [ -95.387961016712609, 29.96596423857531 ], [ -95.388142017635204, 29.965973238655515 ], [ -95.388376017594581, 29.96597823847496 ], [ -95.388643017404149, 29.965985238339734 ], [ -95.388717017275795, 29.965987238491802 ], [ -95.389002017827977, 29.965987238275062 ], [ -95.389729017461576, 29.965973238302929 ], [ -95.390397017437223, 29.965960237945175 ], [ -95.392017017791233, 29.96595823823894 ], [ -95.392207018228916, 29.96596023847956 ], [ -95.392500017968899, 29.965961238255638 ], [ -95.393569018921312, 29.965958238644468 ], [ -95.39408401835, 29.965958238299024 ], [ -95.394777019367353, 29.965958237880283 ], [ -95.394851019384163, 29.965959238180886 ], [ -95.394958018791854, 29.965959237978968 ], [ -95.395943018940571, 29.96595923808724 ], [ -95.396719019692455, 29.965960237794913 ], [ -95.397447020088379, 29.965960238541346 ], [ -95.397528019600614, 29.96596023823853 ], [ -95.397612020017846, 29.965961238147703 ], [ -95.398771019937072, 29.96597423821407 ], [ -95.398916019931349, 29.965976237855763 ], [ -95.399266020231025, 29.965972238364401 ], [ -95.399885020037374, 29.965974238307414 ], [ -95.40020501993007, 29.965971238117689 ], [ -95.400416020743052, 29.965969237922017 ], [ -95.400579020214892, 29.965967237775132 ], [ -95.400884020932608, 29.96596423826109 ], [ -95.400948020738255, 29.965963237770936 ], [ -95.401065020473879, 29.965962238008888 ], [ -95.401464020460196, 29.965964237827077 ], [ -95.401662020435992, 29.96596523771078 ], [ -95.402023020844894, 29.965974238052937 ], [ -95.402177020619661, 29.965978238105571 ], [ -95.402249020842461, 29.965980237690331 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 709, "Tract": "48039662400", "Area_SqMi": 36.506827980934425, "total_2009": 1795, "total_2010": 1871, "total_2011": 2093, "total_2012": 1857, "total_2013": 1895, "total_2014": 3919, "total_2015": 1568, "total_2016": 1458, "total_2017": 1481, "total_2018": 1389, "total_2019": 1383, "total_2020": 1324, "age1": 243, "age2": 826, "age3": 392, "earn1": 214, "earn2": 432, "earn3": 815, "naics_s01": 23, "naics_s02": 1, "naics_s03": 0, "naics_s04": 25, "naics_s05": 59, "naics_s06": 10, "naics_s07": 96, "naics_s08": 13, "naics_s09": 30, "naics_s10": 9, "naics_s11": 107, "naics_s12": 10, "naics_s13": 14, "naics_s14": 41, "naics_s15": 170, "naics_s16": 625, "naics_s17": 0, "naics_s18": 100, "naics_s19": 57, "naics_s20": 71, "race1": 1149, "race2": 186, "race3": 12, "race4": 91, "race5": 2, "race6": 21, "ethnicity1": 1056, "ethnicity2": 405, "edu1": 233, "edu2": 289, "edu3": 432, "edu4": 264, "Shape_Length": 193464.09211018501, "Shape_Area": 1017747882.0479075, "total_2021": 1394, "total_2022": 1461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.431722993545577, 29.164469072625742 ], [ -95.431657993646482, 29.16346607206733 ], [ -95.431591993566599, 29.162428071872057 ], [ -95.431525993667321, 29.16140007221518 ], [ -95.431475993079502, 29.160946072031543 ], [ -95.431462992882913, 29.160418071315583 ], [ -95.431377992754449, 29.159408071438413 ], [ -95.431343992893446, 29.158838071573722 ], [ -95.431318993394115, 29.158416071086226 ], [ -95.430008992950476, 29.158473071489464 ], [ -95.429306992516771, 29.158502071344959 ], [ -95.428685992481277, 29.158522071378613 ], [ -95.4279269922894, 29.158552071504307 ], [ -95.427419992328893, 29.15858407098408 ], [ -95.426441991889135, 29.158662071228925 ], [ -95.425897991208544, 29.15871507148151 ], [ -95.425431991079805, 29.158780071483886 ], [ -95.424374991175824, 29.158855071686673 ], [ -95.423591990683121, 29.158917071862678 ], [ -95.423302990707683, 29.158926071380993 ], [ -95.422807990914265, 29.158974071855685 ], [ -95.422324990895859, 29.158983071467965 ], [ -95.42182899045207, 29.158989071403631 ], [ -95.421302990953762, 29.159003071683482 ], [ -95.42087698989252, 29.159013071171547 ], [ -95.418565989449476, 29.159046072092956 ], [ -95.418390989734448, 29.159049071555195 ], [ -95.416416989640609, 29.15908507164529 ], [ -95.414870988495736, 29.159115071436293 ], [ -95.414801988740621, 29.159116071443229 ], [ -95.412142988318465, 29.159169072312849 ], [ -95.41011698759003, 29.159205071619581 ], [ -95.407713987230167, 29.159239071938103 ], [ -95.405446986448354, 29.159275072456509 ], [ -95.405227986725919, 29.159278072406714 ], [ -95.404786986007025, 29.159285072628101 ], [ -95.404020986346083, 29.159297071929402 ], [ -95.402102985271071, 29.159336071936853 ], [ -95.401786985029531, 29.15934307229406 ], [ -95.401642985301947, 29.159345072676135 ], [ -95.401503985057687, 29.159347072556955 ], [ -95.399569984749633, 29.159377072811882 ], [ -95.399557985387844, 29.159377072548303 ], [ -95.399352984607475, 29.15938107228839 ], [ -95.398341984542725, 29.159398072212998 ], [ -95.395892984055621, 29.159442072659516 ], [ -95.395189983465855, 29.159455072300791 ], [ -95.394887983998728, 29.159460072702664 ], [ -95.393561983500504, 29.159470072865581 ], [ -95.393214983749218, 29.159472072596355 ], [ -95.386221981293588, 29.159581072579375 ], [ -95.385243981817268, 29.159599072596031 ], [ -95.383951981251229, 29.159617073270638 ], [ -95.382969980480198, 29.159643072876868 ], [ -95.382931980378913, 29.159644073080639 ], [ -95.382718980293347, 29.159610072764682 ], [ -95.382645981090036, 29.15953207289358 ], [ -95.381758980107833, 29.158059073102869 ], [ -95.380796980130086, 29.156513072073306 ], [ -95.379456979355041, 29.154318071818526 ], [ -95.378157979663328, 29.15216507182733 ], [ -95.378062979276066, 29.152051071542797 ], [ -95.37792997909655, 29.151943071224746 ], [ -95.377805978637014, 29.151889071713398 ], [ -95.377642978562591, 29.151829071444514 ], [ -95.377506979323627, 29.151817071558927 ], [ -95.377307978669904, 29.151819071466019 ], [ -95.377141978719834, 29.151840071946054 ], [ -95.376706978745901, 29.151978071840439 ], [ -95.37587197885972, 29.152354071531171 ], [ -95.372801978194474, 29.153845072240586 ], [ -95.3724109782315, 29.154030072241394 ], [ -95.371502977932451, 29.15446107233435 ], [ -95.363152975399672, 29.158439073171444 ], [ -95.36277197594373, 29.158621073356795 ], [ -95.362226975828449, 29.158878073372538 ], [ -95.361080975227281, 29.159416073672066 ], [ -95.359385974952787, 29.160210073590981 ], [ -95.355702973735674, 29.161978074440249 ], [ -95.355093973311156, 29.162266074767764 ], [ -95.353917973755998, 29.162825074927245 ], [ -95.352317973160197, 29.16358507456275 ], [ -95.350989973057068, 29.164237075063767 ], [ -95.34819697212518, 29.165592075607719 ], [ -95.346887971636633, 29.166213075881355 ], [ -95.345726971511851, 29.166763075447729 ], [ -95.342603970760621, 29.168225076079953 ], [ -95.342566970493536, 29.168243076215997 ], [ -95.33888097001352, 29.169989076199847 ], [ -95.337265969784539, 29.170745076840522 ], [ -95.335073969043393, 29.171792076645193 ], [ -95.333676968496846, 29.172441077263585 ], [ -95.33098096808699, 29.17371007743008 ], [ -95.330873968302413, 29.173771077648745 ], [ -95.327374967018159, 29.175424078448689 ], [ -95.32685296662774, 29.175684078421344 ], [ -95.326818966753123, 29.17569807830148 ], [ -95.326780966790125, 29.175714077668488 ], [ -95.326741966510426, 29.175723078194146 ], [ -95.32656296656657, 29.175566077621159 ], [ -95.326273967184292, 29.175330078216856 ], [ -95.325994967175205, 29.175112078158005 ], [ -95.325855966704125, 29.174885077841189 ], [ -95.325685966962752, 29.174588077677086 ], [ -95.325576967126054, 29.174369077965881 ], [ -95.32542696624337, 29.174116077936528 ], [ -95.325077966140583, 29.174046077378772 ], [ -95.324489965948544, 29.174125077485829 ], [ -95.323834965693266, 29.174348078090741 ], [ -95.32325396644417, 29.17449207828993 ], [ -95.322645966162909, 29.174535077975527 ], [ -95.322276965823306, 29.174509078226304 ], [ -95.321997965231446, 29.174352078361995 ], [ -95.321678965893852, 29.174160077705032 ], [ -95.321748965941794, 29.173627077889037 ], [ -95.322047965278557, 29.173137078013191 ], [ -95.322276965908245, 29.172648077238396 ], [ -95.322765966239018, 29.171643077803378 ], [ -95.322695965351187, 29.171364077158987 ], [ -95.32259596565595, 29.171058077652908 ], [ -95.322426965967537, 29.170857077541708 ], [ -95.322097965773381, 29.170656076986251 ], [ -95.321728965665145, 29.170534077390659 ], [ -95.321330965479504, 29.170446077133953 ], [ -95.320921965464521, 29.17027107704979 ], [ -95.320642965353656, 29.170088077479083 ], [ -95.320512965427483, 29.169870077429618 ], [ -95.320492965478536, 29.169555076907059 ], [ -95.320791965389233, 29.169144076656561 ], [ -95.321379965752755, 29.168926077235657 ], [ -95.32197796555991, 29.168576077050588 ], [ -95.322187965792253, 29.168271076339501 ], [ -95.322356965943825, 29.167825076666677 ], [ -95.32235696574574, 29.16748407612608 ], [ -95.322386965696452, 29.167152076704848 ], [ -95.322237965749039, 29.166785076273616 ], [ -95.32196796538372, 29.166488076430948 ], [ -95.3216399653042, 29.166139076688324 ], [ -95.321300965464687, 29.165815076297207 ], [ -95.321011965034543, 29.165676075954437 ], [ -95.32062296506858, 29.165641076435449 ], [ -95.320283964807274, 29.165676076430554 ], [ -95.319715964561013, 29.165763076413356 ], [ -95.31915796514582, 29.165850075912104 ], [ -95.318818964655023, 29.165649076380003 ], [ -95.318678964336911, 29.165309075920913 ], [ -95.318688964224677, 29.165038075778703 ], [ -95.318987964057996, 29.164688075916956 ], [ -95.319784965080643, 29.1644240761227 ], [ -95.320380964615055, 29.164294075506973 ], [ -95.320944964963459, 29.164107076147488 ], [ -95.321646964702182, 29.163848075360576 ], [ -95.322077965780252, 29.163456075853386 ], [ -95.322326965480713, 29.163238075790495 ], [ -95.322446965275859, 29.163054075699662 ], [ -95.322476965040536, 29.162845075383899 ], [ -95.322316964889538, 29.162679075570455 ], [ -95.321898965680944, 29.162583075996743 ], [ -95.321429964939426, 29.162670075656994 ], [ -95.320941965118962, 29.162757075240833 ], [ -95.320482964592927, 29.162818076015267 ], [ -95.320123964579608, 29.162766075340496 ], [ -95.319755964309991, 29.162670075370976 ], [ -95.31937696409868, 29.162548075468859 ], [ -95.319047964667988, 29.16248607559973 ], [ -95.318768964058407, 29.162408075505308 ], [ -95.318409964751751, 29.16251307548341 ], [ -95.318120964249005, 29.162696075946734 ], [ -95.317785963834467, 29.163001076199354 ], [ -95.317512964383795, 29.163151076026946 ], [ -95.317103963600218, 29.163212076242822 ], [ -95.316755963774142, 29.163081075756697 ], [ -95.316456963426745, 29.162967075496965 ], [ -95.315877963844457, 29.16274907585419 ], [ -95.315339964016729, 29.162661075351028 ], [ -95.315130963220767, 29.162757075928138 ], [ -95.314313963290843, 29.163011075800725 ], [ -95.313994962847133, 29.162993076259117 ], [ -95.313675963113781, 29.162888075780753 ], [ -95.313366962674365, 29.162574075574913 ], [ -95.313246962737352, 29.162320075995538 ], [ -95.313156962959695, 29.161691075768889 ], [ -95.312837962372555, 29.160774075534565 ], [ -95.312678962360565, 29.160538075091765 ], [ -95.312479963150295, 29.160355075326574 ], [ -95.312190962716912, 29.160285075452681 ], [ -95.311940962637976, 29.160311075194013 ], [ -95.311691962757962, 29.160512075880266 ], [ -95.311293962888243, 29.160818075494145 ], [ -95.310924962251732, 29.160940075721793 ], [ -95.310515962511587, 29.160818075981766 ], [ -95.310266962405251, 29.160652075690148 ], [ -95.309977961880691, 29.160258075710363 ], [ -95.3103169619298, 29.159577075315781 ], [ -95.310874961943014, 29.159070074834982 ], [ -95.311312962457251, 29.158712075456066 ], [ -95.311592962281452, 29.158406074593358 ], [ -95.311543962593532, 29.158317074616942 ], [ -95.311299962422282, 29.158016075175961 ], [ -95.311192961764661, 29.157921074889241 ], [ -95.310795962621938, 29.157513075011913 ], [ -95.310794961737898, 29.157123074782756 ], [ -95.310974961841112, 29.156563074362275 ], [ -95.311592962641726, 29.156362074818016 ], [ -95.312548962222536, 29.156440074656942 ], [ -95.313366962494442, 29.156466074554714 ], [ -95.313545962574352, 29.156423074141252 ], [ -95.313874962399183, 29.156248074481859 ], [ -95.313922962465142, 29.156010074377694 ], [ -95.313815962866315, 29.155693074780874 ], [ -95.313312962818202, 29.155327074684767 ], [ -95.312503962640591, 29.154793074675794 ], [ -95.311450961893186, 29.154083073826367 ], [ -95.310794961784026, 29.153667074203781 ], [ -95.310183962090477, 29.153801073985335 ], [ -95.310040962227816, 29.154178074264017 ], [ -95.309930961623152, 29.154580074039124 ], [ -95.309780962146874, 29.15482507464208 ], [ -95.309541961229726, 29.15498207479185 ], [ -95.309282961234317, 29.155085074654245 ], [ -95.309052961808362, 29.15516407461789 ], [ -95.308977961113655, 29.155147074054504 ], [ -95.308779961591654, 29.154915074740593 ], [ -95.308779961429039, 29.154690073928482 ], [ -95.308814962023632, 29.154397074058167 ], [ -95.30906396194041, 29.153925074023917 ], [ -95.30964196146374, 29.153191074072794 ], [ -95.310329961633656, 29.15242207410946 ], [ -95.311206961508972, 29.151618074023204 ], [ -95.312252962118407, 29.150814073488654 ], [ -95.314095962640963, 29.149740072932893 ], [ -95.314534962923773, 29.14934707278055 ], [ -95.31480396247072, 29.149006072937237 ], [ -95.314962962389174, 29.148691072425056 ], [ -95.315210962557501, 29.147803072457599 ], [ -95.314981962529288, 29.147826073147641 ], [ -95.313524962617052, 29.147969072439128 ], [ -95.312758962624116, 29.148059072730572 ], [ -95.312210962366407, 29.148150073201101 ], [ -95.311428961879713, 29.148355072640005 ], [ -95.311118962166987, 29.148450072794446 ], [ -95.311030962038998, 29.148477073272126 ], [ -95.310677962219415, 29.148600072865769 ], [ -95.310361961693147, 29.148728073345229 ], [ -95.310014962058631, 29.148880073278509 ], [ -95.309579960982731, 29.149077073355002 ], [ -95.299148959182602, 29.15378607420222 ], [ -95.292035956966373, 29.156993075458658 ], [ -95.287815956666506, 29.158889075862806 ], [ -95.28676595643654, 29.159361075569969 ], [ -95.283468955233388, 29.160877076093001 ], [ -95.281957954772878, 29.161591076801972 ], [ -95.281371954815469, 29.161867076520146 ], [ -95.281207954496239, 29.161943076328647 ], [ -95.280821954658521, 29.162123076438064 ], [ -95.28043695498458, 29.16230407660133 ], [ -95.279780954946915, 29.16261107652663 ], [ -95.278361954525337, 29.163269076661958 ], [ -95.277753954387421, 29.163541077049743 ], [ -95.277315953466172, 29.163724077531004 ], [ -95.277022953539387, 29.163862077291 ], [ -95.2781899541218, 29.165764077657204 ], [ -95.28086195524223, 29.170169078255523 ], [ -95.281434955177048, 29.17112707863085 ], [ -95.283283955501076, 29.174156079263341 ], [ -95.284798955875232, 29.176636079290819 ], [ -95.286711956610617, 29.179774079989876 ], [ -95.286785956804465, 29.179890080627469 ], [ -95.288689957839793, 29.183041081260068 ], [ -95.288891957706213, 29.183373080845975 ], [ -95.290936958473182, 29.186719081828986 ], [ -95.291339958007256, 29.187393082096044 ], [ -95.291579958644107, 29.187781081883724 ], [ -95.291843958212866, 29.188205081416594 ], [ -95.292029958478992, 29.188462081831688 ], [ -95.292328958357416, 29.188811082310092 ], [ -95.292526958951711, 29.188997082369916 ], [ -95.292772959067108, 29.189220082219716 ], [ -95.293229959264849, 29.189596082509855 ], [ -95.293738959401338, 29.189973082579403 ], [ -95.294556959103048, 29.190649082232419 ], [ -95.294872958979752, 29.190977081997808 ], [ -95.295126959563333, 29.191329082681982 ], [ -95.295200959459251, 29.191450082132892 ], [ -95.295908960290319, 29.19260608273958 ], [ -95.296816959998736, 29.194120082561692 ], [ -95.297223960502606, 29.194787083368883 ], [ -95.297662960016268, 29.195483082740303 ], [ -95.297767960253708, 29.195637082810183 ], [ -95.297992960604887, 29.195866083439419 ], [ -95.298154960288144, 29.196000083110121 ], [ -95.298267960954121, 29.196104083220707 ], [ -95.29839196108226, 29.19620208286851 ], [ -95.298518960302232, 29.196290083433023 ], [ -95.298666960821151, 29.196386083622375 ], [ -95.299015960347518, 29.196630083416807 ], [ -95.298581960242359, 29.196778083035618 ], [ -95.298473960212959, 29.19689808331367 ], [ -95.298444960505506, 29.197116083273599 ], [ -95.29876396067732, 29.197445083194786 ], [ -95.298821960458739, 29.197597083383958 ], [ -95.298814960932276, 29.197715083923885 ], [ -95.298783961241455, 29.19777408361551 ], [ -95.298598961228848, 29.198086083933759 ], [ -95.298486961051907, 29.198241084134036 ], [ -95.298486960477263, 29.198791083476241 ], [ -95.29866896072572, 29.19918108377723 ], [ -95.299660961316334, 29.200006084020032 ], [ -95.299634961148328, 29.20028108420324 ], [ -95.299529961199681, 29.200350083858414 ], [ -95.2989499611638, 29.200219084470632 ], [ -95.298615960990531, 29.200143084133593 ], [ -95.298328960832592, 29.200257084555837 ], [ -95.298275960888205, 29.201518084382442 ], [ -95.298353960894744, 29.201724084070147 ], [ -95.298849960503247, 29.20215908458983 ], [ -95.298953961006859, 29.202434084342205 ], [ -95.298875960733923, 29.202778085026964 ], [ -95.298805961130583, 29.202839084482264 ], [ -95.298666960730586, 29.202961084851594 ], [ -95.298353960503562, 29.202961084937272 ], [ -95.297778961224893, 29.202686084301824 ], [ -95.2975179605465, 29.202777084931501 ], [ -95.297412960999267, 29.202892084286066 ], [ -95.29743896050293, 29.203442084632307 ], [ -95.297569960795002, 29.203625084788637 ], [ -95.297542960294081, 29.203923085005304 ], [ -95.297203960221253, 29.204106085238124 ], [ -95.296681960355201, 29.204151084985906 ], [ -95.296341960193871, 29.204518084745096 ], [ -95.296367960925139, 29.204953085378023 ], [ -95.296680960129891, 29.205435085117692 ], [ -95.296784960337391, 29.205732085516548 ], [ -95.296758960272101, 29.20607608575369 ], [ -95.296444960970717, 29.206328085326316 ], [ -95.296157960600496, 29.206419085873108 ], [ -95.295165960033799, 29.20651108575322 ], [ -95.294459960167458, 29.207037085370281 ], [ -95.29406796018641, 29.207450085759334 ], [ -95.293858959921451, 29.207426085755415 ], [ -95.293623959431812, 29.207106085532224 ], [ -95.29336295925448, 29.207060085648436 ], [ -95.292944960103696, 29.207220086048409 ], [ -95.292813959605368, 29.207518085809618 ], [ -95.293153959300767, 29.207770085703146 ], [ -95.293884959584474, 29.208068085974581 ], [ -95.293858959982515, 29.208320086003962 ], [ -95.293152960017977, 29.208732085667286 ], [ -95.293178959695837, 29.208984085788796 ], [ -95.293413960348104, 29.209259086557552 ], [ -95.293465959839793, 29.210107086432394 ], [ -95.293621959520507, 29.210267086689257 ], [ -95.295110959894984, 29.210589086459539 ], [ -95.295188960144557, 29.210749086532758 ], [ -95.295083960609816, 29.211620086432809 ], [ -95.29521396049411, 29.211826086201416 ], [ -95.295761960593822, 29.212399086276946 ], [ -95.295839960991259, 29.212949086595909 ], [ -95.296518960455799, 29.213522087036889 ], [ -95.296648961401488, 29.213820086777424 ], [ -95.296648961269028, 29.214141086884791 ], [ -95.296518961314831, 29.214233086884519 ], [ -95.295473960107941, 29.214209086790628 ], [ -95.29529096082014, 29.214392086957627 ], [ -95.295238960546158, 29.21471308694132 ], [ -95.295316960124154, 29.214782087286199 ], [ -95.295290960473238, 29.214873087115325 ], [ -95.295394960193804, 29.214988087385311 ], [ -95.295420960762257, 29.215492087307123 ], [ -95.295211960943618, 29.215630087726645 ], [ -95.294898960374766, 29.215606087541168 ], [ -95.294140960608445, 29.215171087024796 ], [ -95.293801960367958, 29.215239087744557 ], [ -95.293827959749819, 29.215766087412725 ], [ -95.294348960729238, 29.216614087417899 ], [ -95.29432295998653, 29.216958087947809 ], [ -95.293486960385707, 29.217301088204348 ], [ -95.29335595985215, 29.217507087800755 ], [ -95.293277960354018, 29.217966088136553 ], [ -95.29306896044173, 29.218378087732287 ], [ -95.293120959738289, 29.218630088475962 ], [ -95.293407960411329, 29.218951087853156 ], [ -95.293616960486091, 29.219043088084117 ], [ -95.294112959966839, 29.218928087718208 ], [ -95.294660961040904, 29.218722088348052 ], [ -95.294843960770237, 29.218837087939839 ], [ -95.29497396081598, 29.219799088138256 ], [ -95.295130960933861, 29.219914088492487 ], [ -95.295600960583982, 29.220120088287189 ], [ -95.295678961298989, 29.220304088118731 ], [ -95.295730961214375, 29.221060088419243 ], [ -95.295965960659871, 29.221426088120612 ], [ -95.29682696152274, 29.22216008832067 ], [ -95.29755796177615, 29.222664089169381 ], [ -95.298027961748019, 29.222848089049204 ], [ -95.298131961238042, 29.223031088660424 ], [ -95.298157961727142, 29.223604089324279 ], [ -95.297948961744979, 29.224085089220356 ], [ -95.297974961992082, 29.224452089056083 ], [ -95.298183961389611, 29.224589088806525 ], [ -95.298679961931356, 29.224612088801909 ], [ -95.299097962152629, 29.224475089020093 ], [ -95.299149961722463, 29.224384089212212 ], [ -95.299358961945771, 29.224384089417672 ], [ -95.299698962355833, 29.224613089004233 ], [ -95.299657962458184, 29.224864088852538 ], [ -95.29959396202581, 29.225254089299156 ], [ -95.299149962371089, 29.225437089401588 ], [ -95.29922796198052, 29.225781089019883 ], [ -95.299697961873164, 29.226537089683127 ], [ -95.300140962782308, 29.226904089821584 ], [ -95.300402962238678, 29.226904089744188 ], [ -95.300767962472975, 29.226652089865375 ], [ -95.301342962656193, 29.226973089372731 ], [ -95.301446962204025, 29.227455089934683 ], [ -95.301968962425065, 29.227845089395416 ], [ -95.302517963352926, 29.227868089875599 ], [ -95.302922963332961, 29.228648089800224 ], [ -95.303326962900499, 29.229426089741732 ], [ -95.303874963390385, 29.229884089922418 ], [ -95.303952963259491, 29.230136090310609 ], [ -95.304109963386765, 29.230297090202633 ], [ -95.304788963674838, 29.230412090091306 ], [ -95.305101963460928, 29.23071009022129 ], [ -95.305493963915396, 29.230710090535045 ], [ -95.305702964104654, 29.230824090371151 ], [ -95.305701963685635, 29.231856090445834 ], [ -95.305989963870999, 29.232039090231151 ], [ -95.306981964063297, 29.232245090456761 ], [ -95.307268964258753, 29.232681090821888 ], [ -95.307582964927121, 29.232910090602878 ], [ -95.30771296447503, 29.233323090999363 ], [ -95.308077964427696, 29.233735090276316 ], [ -95.308574964730553, 29.234056090783231 ], [ -95.308782965035533, 29.234308090436354 ], [ -95.309253965180389, 29.234263090629739 ], [ -95.30998496541909, 29.233919090862798 ], [ -95.31050796541065, 29.23382809077544 ], [ -95.311055965777371, 29.233874090657004 ], [ -95.311342965070395, 29.234080090448646 ], [ -95.311421965722886, 29.234515090680759 ], [ -95.311629965357312, 29.234745090421594 ], [ -95.312178965873741, 29.234768090634173 ], [ -95.312727966248005, 29.234585090639982 ], [ -95.313171965842614, 29.23490509119226 ], [ -95.313197966341434, 29.23506609082402 ], [ -95.313536966081571, 29.235387091202369 ], [ -95.314241966009476, 29.235639090521666 ], [ -95.314607966280619, 29.235639091174423 ], [ -95.314790966841343, 29.23552509102597 ], [ -95.314947966257478, 29.23490609098652 ], [ -95.315104966843094, 29.234631090341676 ], [ -95.315417966338643, 29.234540090993615 ], [ -95.316096966447773, 29.234792090396724 ], [ -95.315887966452735, 29.235754090735377 ], [ -95.315626966715698, 29.236006091234017 ], [ -95.31562596670102, 29.236304091041895 ], [ -95.316461966542917, 29.237037091428544 ], [ -95.316800967020598, 29.237656091338888 ], [ -95.316879967254408, 29.238000091440629 ], [ -95.317375967658776, 29.23850409173766 ], [ -95.317401966880993, 29.238596091254262 ], [ -95.317584967004834, 29.2385960912857 ], [ -95.317819967226924, 29.238779091494489 ], [ -95.318236967176588, 29.239833091802037 ], [ -95.3187599678471, 29.240314091931051 ], [ -95.319385968303692, 29.240658091610992 ], [ -95.319882967912278, 29.240819091801107 ], [ -95.320273967636609, 29.240773091410048 ], [ -95.321919968723947, 29.239949091771059 ], [ -95.322364968883676, 29.239651091355601 ], [ -95.32275596878587, 29.239811091926953 ], [ -95.322834968856768, 29.240086091648195 ], [ -95.323173968409733, 29.240384091392325 ], [ -95.323225968410526, 29.241163092164349 ], [ -95.323382968403806, 29.241438091533997 ], [ -95.323982969538477, 29.241897091715138 ], [ -95.324531969469092, 29.242126092065739 ], [ -95.324792969153108, 29.242493092187587 ], [ -95.324792969234878, 29.242745091777731 ], [ -95.324975969706003, 29.242997091872244 ], [ -95.325445969984443, 29.243340092400508 ], [ -95.326542969312527, 29.243684091902491 ], [ -95.326960969599455, 29.243937092077402 ], [ -95.327404969764885, 29.244074092491314 ], [ -95.327717969797447, 29.244395091937335 ], [ -95.327900970652678, 29.244876092546811 ], [ -95.328187970732998, 29.245197092250809 ], [ -95.328553970877394, 29.245174092625035 ], [ -95.328867970509947, 29.244968092150955 ], [ -95.329102970072398, 29.244647091863971 ], [ -95.329415970191405, 29.244579092558538 ], [ -95.329703970210289, 29.244739092079516 ], [ -95.329855970306525, 29.244978091914451 ], [ -95.32996497125508, 29.245151092504951 ], [ -95.330330970933971, 29.245449092142131 ], [ -95.331479971012186, 29.245473092713933 ], [ -95.331845971719702, 29.245656092403795 ], [ -95.331949971458712, 29.246618092167726 ], [ -95.332132971770122, 29.24677909244906 ], [ -95.333020971360213, 29.246687092610856 ], [ -95.333568972014319, 29.246939092614141 ], [ -95.333856971764533, 29.247191092930169 ], [ -95.333856972159325, 29.24762709316115 ], [ -95.333725972115417, 29.247924092581002 ], [ -95.333908972337369, 29.248451093366135 ], [ -95.333855971871927, 29.248841093394976 ], [ -95.333568972305841, 29.249437093011771 ], [ -95.3335429722963, 29.249826093146748 ], [ -95.333803971677455, 29.250261092926813 ], [ -95.33412097155221, 29.250527093694238 ], [ -95.334851971869909, 29.250939093307821 ], [ -95.33560897198997, 29.251856093934332 ], [ -95.336105972852195, 29.252062093823486 ], [ -95.336497973056794, 29.252154093847206 ], [ -95.336758972431667, 29.252429093368299 ], [ -95.33670597254293, 29.253162094222244 ], [ -95.336716973233493, 29.253282093504719 ], [ -95.336783973122493, 29.253964093740755 ], [ -95.337280972976615, 29.254446094485932 ], [ -95.337410973046815, 29.254835094151296 ], [ -95.337358972787825, 29.255362093864655 ], [ -95.336626972482321, 29.25625509479109 ], [ -95.336704973132129, 29.256736094484037 ], [ -95.336861972852574, 29.256943094748511 ], [ -95.337697973105776, 29.257195094545967 ], [ -95.337932973147318, 29.2575390949176 ], [ -95.337954973021056, 29.258240095181673 ], [ -95.337983973856097, 29.259165095163581 ], [ -95.338584974051727, 29.259784094697526 ], [ -95.338636973566821, 29.260426095663323 ], [ -95.338767973695653, 29.26063209496839 ], [ -95.338766973476652, 29.261090095707306 ], [ -95.338322973579196, 29.261915095254661 ], [ -95.338322973972339, 29.262304095266682 ], [ -95.339288974181272, 29.263611095724656 ], [ -95.339340974118571, 29.264298096084456 ], [ -95.339000973916114, 29.264664096488257 ], [ -95.337798973123213, 29.265191096149341 ], [ -95.337589973830333, 29.265443096033472 ], [ -95.337589973052573, 29.265924096755523 ], [ -95.338164973338877, 29.266703096369802 ], [ -95.338190973431708, 29.267001096455196 ], [ -95.337902973329719, 29.267207097072681 ], [ -95.337118973204781, 29.267299096675259 ], [ -95.336976973371478, 29.267506097120194 ], [ -95.336883973504897, 29.267642096858133 ], [ -95.336883973620303, 29.268055096747254 ], [ -95.33808497342865, 29.26922309715933 ], [ -95.33821597347027, 29.269498097532299 ], [ -95.338110973737884, 29.269750097049322 ], [ -95.337300973233354, 29.270162096923361 ], [ -95.337117973743091, 29.270644097400613 ], [ -95.336907973356347, 29.272270098123641 ], [ -95.336620973469138, 29.272522097999357 ], [ -95.33630697373971, 29.272499098123294 ], [ -95.336045973745314, 29.272339097620598 ], [ -95.335731973334802, 29.272361097396736 ], [ -95.335261973636264, 29.272957098051918 ], [ -95.334973973044242, 29.273140097553728 ], [ -95.332857973218665, 29.273827097956584 ], [ -95.332438972673742, 29.274125098440734 ], [ -95.332308972450392, 29.274422098732231 ], [ -95.332307972251883, 29.275545098339407 ], [ -95.331836972293729, 29.27641609853686 ], [ -95.331575972384201, 29.276599098934987 ], [ -95.330582972515103, 29.276896099237302 ], [ -95.330503972732771, 29.277011098961207 ], [ -95.33047797270892, 29.27726309929005 ], [ -95.331130972205315, 29.277767098891342 ], [ -95.331339972112417, 29.278248099096455 ], [ -95.330868972112526, 29.279073099317856 ], [ -95.330764972255253, 29.279760099674107 ], [ -95.330763972536317, 29.280241099971466 ], [ -95.330920971990153, 29.280470100006486 ], [ -95.331598972991557, 29.281064099441593 ], [ -95.334618973674196, 29.277888099154509 ], [ -95.335539973037527, 29.276884098788688 ], [ -95.336798973839791, 29.27551209829765 ], [ -95.338307974539575, 29.273868097848112 ], [ -95.342063974804049, 29.269851096811287 ], [ -95.342495975068559, 29.269331097359213 ], [ -95.342873975301941, 29.268876096873562 ], [ -95.343738975151723, 29.267836096560956 ], [ -95.347140976310428, 29.263514095790796 ], [ -95.348221975790295, 29.262164095206156 ], [ -95.350291977013299, 29.259561094255673 ], [ -95.350660976260471, 29.259095094620481 ], [ -95.352165976598926, 29.257237094427605 ], [ -95.354120977277816, 29.254715093763355 ], [ -95.356247977652785, 29.251989092884131 ], [ -95.358051978576327, 29.249698092559491 ], [ -95.358247978442151, 29.249450091975746 ], [ -95.359498978316935, 29.247856091970778 ], [ -95.359928978380921, 29.247314092047169 ], [ -95.360726978903088, 29.246293091319739 ], [ -95.361055978630375, 29.245873091549409 ], [ -95.361491978747338, 29.245337091560888 ], [ -95.361571978346561, 29.245236091129893 ], [ -95.362239978462995, 29.244384091292162 ], [ -95.364396979501791, 29.24163709042001 ], [ -95.365541979802117, 29.240211090645225 ], [ -95.373657981178624, 29.229889087413902 ], [ -95.376137981785334, 29.226732086875245 ], [ -95.378973982080026, 29.223119086310362 ], [ -95.381327983291229, 29.220158085842346 ], [ -95.38223498267395, 29.219017085588192 ], [ -95.383446983231522, 29.217475084962867 ], [ -95.383713983521517, 29.217138085271621 ], [ -95.387092984133375, 29.212845083702199 ], [ -95.391131984923675, 29.207692082333089 ], [ -95.391720984950226, 29.206941082329898 ], [ -95.393165985099088, 29.205157081688824 ], [ -95.393281985315738, 29.205014081906331 ], [ -95.393468985592662, 29.204777081911736 ], [ -95.39484798520779, 29.203026081980337 ], [ -95.394988985192711, 29.202847081699193 ], [ -95.401836987007499, 29.19415707986996 ], [ -95.402262987070486, 29.193616079196378 ], [ -95.40266098721888, 29.193111078876861 ], [ -95.402831987672286, 29.192898079508357 ], [ -95.403097986926042, 29.192569079035049 ], [ -95.403565987514995, 29.191958079117452 ], [ -95.403702987880578, 29.191789078568959 ], [ -95.404373987377312, 29.190863078827714 ], [ -95.404576987104903, 29.190579078706886 ], [ -95.404655987754396, 29.190468078756275 ], [ -95.405114988110853, 29.189738078575601 ], [ -95.405262987662866, 29.189521078488983 ], [ -95.405797987746894, 29.188736078645963 ], [ -95.406204987747614, 29.188095077938847 ], [ -95.407352987878966, 29.186313077365529 ], [ -95.408107988202943, 29.185135077231671 ], [ -95.410094988730663, 29.182091076307781 ], [ -95.410623988548863, 29.181251076924209 ], [ -95.410917988454472, 29.180809076175407 ], [ -95.411193988669837, 29.180395076444576 ], [ -95.412281988828113, 29.178763076243779 ], [ -95.414272989166136, 29.17571407539112 ], [ -95.41444998984494, 29.175438074938786 ], [ -95.415536990140282, 29.173788074632945 ], [ -95.415917989414098, 29.173208074676502 ], [ -95.416699990307009, 29.172021074812974 ], [ -95.417016989966683, 29.171517074128303 ], [ -95.417269989535967, 29.171131074126318 ], [ -95.417965989786637, 29.170034073866244 ], [ -95.418801990493392, 29.168738073252996 ], [ -95.419006989999886, 29.168459073488119 ], [ -95.419272989911377, 29.168032073222491 ], [ -95.419473990714025, 29.167753073634547 ], [ -95.419601990264312, 29.167553073506731 ], [ -95.419817990684436, 29.167285073151341 ], [ -95.420113990826664, 29.166975073172214 ], [ -95.420586990617167, 29.166612073260985 ], [ -95.421500990731914, 29.165987073240473 ], [ -95.42172799105029, 29.165850072771672 ], [ -95.422728990919595, 29.165218072616632 ], [ -95.423181991529063, 29.164944072927788 ], [ -95.423428991179691, 29.164851072561156 ], [ -95.423833991771829, 29.1646970725103 ], [ -95.424238991428027, 29.164620072645889 ], [ -95.424520991583904, 29.164586072363377 ], [ -95.425417991437143, 29.164551072269038 ], [ -95.425630991762048, 29.164554072566464 ], [ -95.427055992577266, 29.1645170730065 ], [ -95.428855992864371, 29.164489072382516 ], [ -95.429098992667775, 29.164507072633089 ], [ -95.429239992361616, 29.164509072217193 ], [ -95.429410992533064, 29.164542072051287 ], [ -95.429615993222882, 29.16455907262554 ], [ -95.429801992659748, 29.164569072802163 ], [ -95.429998993265713, 29.164556072899483 ], [ -95.430176992753218, 29.164560072395378 ], [ -95.430402993450954, 29.164551072820949 ], [ -95.430570992616921, 29.164539072414446 ], [ -95.430892993203699, 29.164508072406129 ], [ -95.431121993467897, 29.164502072396182 ], [ -95.431722993545577, 29.164469072625742 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 710, "Tract": "48039662900", "Area_SqMi": 22.165335480159726, "total_2009": 369, "total_2010": 389, "total_2011": 410, "total_2012": 502, "total_2013": 512, "total_2014": 462, "total_2015": 432, "total_2016": 468, "total_2017": 490, "total_2018": 471, "total_2019": 448, "total_2020": 479, "age1": 148, "age2": 238, "age3": 100, "earn1": 103, "earn2": 170, "earn3": 213, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 80, "naics_s05": 4, "naics_s06": 6, "naics_s07": 155, "naics_s08": 22, "naics_s09": 35, "naics_s10": 25, "naics_s11": 5, "naics_s12": 37, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 15, "naics_s17": 0, "naics_s18": 84, "naics_s19": 12, "naics_s20": 0, "race1": 425, "race2": 37, "race3": 4, "race4": 14, "race5": 2, "race6": 4, "ethnicity1": 354, "ethnicity2": 132, "edu1": 71, "edu2": 112, "edu3": 101, "edu4": 54, "Shape_Length": 148054.6458993858, "Shape_Area": 617931616.8360374, "total_2021": 459, "total_2022": 486 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.68274405382013, 29.078680046496121 ], [ -95.682699053574652, 29.078337046914541 ], [ -95.68251705364068, 29.078062046342264 ], [ -95.68196905395709, 29.077673046612098 ], [ -95.681343053213567, 29.077513046357144 ], [ -95.680743053261693, 29.077536046680574 ], [ -95.679127052927171, 29.078270047016272 ], [ -95.678684053172375, 29.078385046638932 ], [ -95.678527053092665, 29.078316046498035 ], [ -95.678110052703175, 29.077904046284569 ], [ -95.677979052203142, 29.077033045974851 ], [ -95.67766505223095, 29.076117046235289 ], [ -95.677378052507436, 29.075980045770571 ], [ -95.677352052908219, 29.075888046629277 ], [ -95.676257052555144, 29.075041046278447 ], [ -95.675265052008243, 29.074079045706696 ], [ -95.674834051583517, 29.073411045763557 ], [ -95.674039051590171, 29.072179045359366 ], [ -95.673516051483844, 29.069636045442966 ], [ -95.673124050777517, 29.068102044372225 ], [ -95.672941051217364, 29.067827045051871 ], [ -95.672576050847809, 29.066498044308382 ], [ -95.672549050385456, 29.065811044529468 ], [ -95.672262050642587, 29.064666044181163 ], [ -95.672132051053026, 29.064506043858948 ], [ -95.671714050273707, 29.063040044046481 ], [ -95.671661050418976, 29.062307043334606 ], [ -95.67179105041869, 29.061780043114595 ], [ -95.672494050064884, 29.060061042845721 ], [ -95.672572051022613, 29.059626042728585 ], [ -95.672624050556607, 29.058710042463851 ], [ -95.67233705041464, 29.057542042996634 ], [ -95.672102050424257, 29.057015042627381 ], [ -95.670250049809312, 29.054542042397468 ], [ -95.669258049578403, 29.052778042080931 ], [ -95.668814049670132, 29.051656041849739 ], [ -95.668736048786144, 29.051610041459789 ], [ -95.668597048689449, 29.051213041346369 ], [ -95.668214048744545, 29.050121040907893 ], [ -95.668136048674981, 29.050076041249493 ], [ -95.667588048843882, 29.048724040594625 ], [ -95.666388048767445, 29.046938040110145 ], [ -95.665527048519195, 29.046068040335562 ], [ -95.663858048045697, 29.044602040361116 ], [ -95.662894047495513, 29.044030040159821 ], [ -95.66281504710939, 29.043892040249883 ], [ -95.66174604684592, 29.043618039802229 ], [ -95.659477046626762, 29.043154040185645 ], [ -95.657940046401279, 29.042840039885473 ], [ -95.657341046046454, 29.042840039635184 ], [ -95.656715045970657, 29.042932040468521 ], [ -95.654187044963564, 29.044078040275853 ], [ -95.652884044852044, 29.044468040033159 ], [ -95.652076044950491, 29.04453604061753 ], [ -95.651659044727907, 29.044513040119735 ], [ -95.650338044516872, 29.043965040665508 ], [ -95.64972904419821, 29.043712040239825 ], [ -95.648872044213064, 29.043428040271806 ], [ -95.648139043354234, 29.043186040204446 ], [ -95.648047043145638, 29.043133040557048 ], [ -95.64599004278071, 29.042636040118133 ], [ -95.645813043356199, 29.042635039973096 ], [ -95.643549042065075, 29.042628040248072 ], [ -95.642830042036096, 29.042879040568391 ], [ -95.641676041953602, 29.044139040972954 ], [ -95.641089041933299, 29.046041041232769 ], [ -95.640515041983221, 29.046917041002633 ], [ -95.63878604142279, 29.048302042142531 ], [ -95.637347040901929, 29.049056042349221 ], [ -95.634905040786634, 29.049048042159779 ], [ -95.632754040181297, 29.048408042096991 ], [ -95.630898039882354, 29.048401041825961 ], [ -95.630744038903785, 29.048401042042418 ], [ -95.630455039031787, 29.048653041598836 ], [ -95.629881039446616, 29.048651042180456 ], [ -95.628874039440021, 29.049027042107447 ], [ -95.626706038342633, 29.049019042033777 ], [ -95.626577038272913, 29.049019042083312 ], [ -95.624711037795393, 29.048760042646972 ], [ -95.623707037788947, 29.048377042412842 ], [ -95.622276037265792, 29.047361041956588 ], [ -95.621708036728194, 29.045968041420188 ], [ -95.621570037212436, 29.044703041590346 ], [ -95.621144037099668, 29.043563041146676 ], [ -95.621253037097006, 29.041783040783276 ], [ -95.621266036598598, 29.041572040824086 ], [ -95.621299036537138, 29.041035040791368 ], [ -95.621882037148112, 29.039267040193035 ], [ -95.621889036406358, 29.037623040136975 ], [ -95.621605036074357, 29.036863039641709 ], [ -95.620032035931047, 29.035467039286431 ], [ -95.618314036130641, 29.034449039532312 ], [ -95.616884035501471, 29.033180039124314 ], [ -95.615738035206547, 29.032543039157201 ], [ -95.614878034682349, 29.032414039484205 ], [ -95.613585034336296, 29.032536039392966 ], [ -95.611858034094695, 29.033288039319523 ], [ -95.609558032949622, 29.03391203938564 ], [ -95.607975032766348, 29.034665040222382 ], [ -95.605676032167352, 29.035163040444921 ], [ -95.602804031902636, 29.035152039790319 ], [ -95.601226031449727, 29.034893039946557 ], [ -95.600079031094026, 29.034510040479017 ], [ -95.599078030976926, 29.033747039606226 ], [ -95.598223030364139, 29.032480039416139 ], [ -95.597941029913414, 29.031341039145598 ], [ -95.597230029900047, 29.02994703918289 ], [ -95.595802029593585, 29.028298038620637 ], [ -95.594947028972712, 29.026904038336266 ], [ -95.594669029724486, 29.025006038038086 ], [ -95.594101028879749, 29.023739037614693 ], [ -95.592105028171204, 29.020950037143578 ], [ -95.588675027095121, 29.017776036854027 ], [ -95.587964026846237, 29.016508036686272 ], [ -95.587830027122806, 29.014611036047938 ], [ -95.588267027210691, 29.013222035817968 ], [ -95.58827602695608, 29.011451035540325 ], [ -95.588123026549439, 29.010973035297397 ], [ -95.588076026682131, 29.010980035450565 ], [ -95.587867026677316, 29.011018035601996 ], [ -95.587548027015515, 29.011075035849274 ], [ -95.585005026534574, 29.011537036222286 ], [ -95.584351026382109, 29.011653036225244 ], [ -95.584099026233957, 29.011681036202042 ], [ -95.583683025581266, 29.011727035983981 ], [ -95.583262025449685, 29.011802036203338 ], [ -95.581987024975788, 29.012030036310879 ], [ -95.579924025435318, 29.012357036023531 ], [ -95.577853024493834, 29.012685035857174 ], [ -95.577190023952028, 29.012810036004719 ], [ -95.576890024350689, 29.012904036126404 ], [ -95.576566023683228, 29.013005035981891 ], [ -95.575931024352997, 29.013274036531172 ], [ -95.575421023450545, 29.013544036292153 ], [ -95.574762023247345, 29.013985036333921 ], [ -95.57374902307788, 29.014963036453452 ], [ -95.57307402353625, 29.015659036895357 ], [ -95.572781023348611, 29.015962037143257 ], [ -95.572718023740649, 29.016038037010567 ], [ -95.57253902359615, 29.016219037023177 ], [ -95.572459023126314, 29.016300037655061 ], [ -95.572254022651919, 29.016671037664409 ], [ -95.57190002309558, 29.017402037780279 ], [ -95.571664022894439, 29.01803403729026 ], [ -95.571069022982797, 29.01954903758584 ], [ -95.570864022807569, 29.020074038031503 ], [ -95.570401022444145, 29.021125038585836 ], [ -95.570108022634429, 29.021721038398073 ], [ -95.569922022512813, 29.022079038312825 ], [ -95.569069023037571, 29.023584038472219 ], [ -95.568557022287209, 29.024487038589175 ], [ -95.56843002249235, 29.025003038954118 ], [ -95.568393022550595, 29.025209039298851 ], [ -95.56835602251634, 29.025411039628931 ], [ -95.568397022708652, 29.027020039919584 ], [ -95.568444022524275, 29.028914039924612 ], [ -95.568451022846148, 29.029239040385207 ], [ -95.568456023093333, 29.029467040417394 ], [ -95.568472022331633, 29.030153040521114 ], [ -95.56847302299478, 29.030217040189996 ], [ -95.568489022463325, 29.030903040262451 ], [ -95.568491022921933, 29.031019040467395 ], [ -95.568498022368473, 29.031315040616672 ], [ -95.568499022676633, 29.031368040491504 ], [ -95.568524022795529, 29.032452040388684 ], [ -95.568546022931216, 29.033458040878667 ], [ -95.568556023214313, 29.033916041247316 ], [ -95.568577023090725, 29.034870041093697 ], [ -95.568596022806716, 29.035563041361048 ], [ -95.568635023215876, 29.036932041193513 ], [ -95.568909022814893, 29.037716041339809 ], [ -95.569142022957635, 29.038503042179514 ], [ -95.569230023698765, 29.038939041969222 ], [ -95.56931702368702, 29.039359042046708 ], [ -95.569370023308849, 29.039710042564185 ], [ -95.569467023595266, 29.040351042340472 ], [ -95.569482023654501, 29.040484042029259 ], [ -95.569572023241591, 29.041271042098444 ], [ -95.569664023818547, 29.042023042410321 ], [ -95.569753024012101, 29.042831042840682 ], [ -95.569845023755434, 29.043668043041944 ], [ -95.569933023634803, 29.044471043365476 ], [ -95.57002302404203, 29.045286043664085 ], [ -95.570047023876228, 29.045495043162745 ], [ -95.570096023394143, 29.045919043076474 ], [ -95.570188023879723, 29.046711043473447 ], [ -95.570279023854496, 29.047548043402141 ], [ -95.570423024458691, 29.04882404371682 ], [ -95.569605023426732, 29.048885043889452 ], [ -95.568594023791377, 29.048959044308866 ], [ -95.567582023386862, 29.049032044444889 ], [ -95.567181023282188, 29.049062044164462 ], [ -95.565076023001993, 29.049185044202172 ], [ -95.564930022899418, 29.049195044401362 ], [ -95.563914022691293, 29.049262043952933 ], [ -95.563379022671739, 29.049344044591262 ], [ -95.563209022107372, 29.049374044113293 ], [ -95.562994022165284, 29.049412044668482 ], [ -95.562762022535722, 29.04946604447105 ], [ -95.562502022429598, 29.049555044286961 ], [ -95.562352021578889, 29.049592044641333 ], [ -95.56205702229758, 29.049665044787112 ], [ -95.561911022167791, 29.049715044448796 ], [ -95.561671021531097, 29.049798044429519 ], [ -95.561607022110522, 29.049820044883681 ], [ -95.560865021832257, 29.050182044254797 ], [ -95.560532021746354, 29.050366044585509 ], [ -95.560148021165062, 29.050635044880938 ], [ -95.559767021294931, 29.05093804456714 ], [ -95.55951102170161, 29.051157045288019 ], [ -95.559412021073939, 29.051242045004688 ], [ -95.558881020903925, 29.051857044899332 ], [ -95.558546020653225, 29.05221904547718 ], [ -95.558448020661203, 29.05239004482122 ], [ -95.558295021257749, 29.052657045290854 ], [ -95.558159021456035, 29.052894045188779 ], [ -95.558084021170643, 29.053029045150694 ], [ -95.557899020830732, 29.053368045364547 ], [ -95.557654021148693, 29.053817045614259 ], [ -95.557501020883649, 29.054069045430445 ], [ -95.557296020973268, 29.053906045120563 ], [ -95.557094020442705, 29.054264045708855 ], [ -95.557487020701586, 29.054450045257944 ], [ -95.559221021714436, 29.055991045830151 ], [ -95.56069202153715, 29.05791504606665 ], [ -95.561119022121559, 29.05960404633554 ], [ -95.561146022299326, 29.059776046381568 ], [ -95.561540022445726, 29.062290047301605 ], [ -95.561709022453854, 29.063287047022616 ], [ -95.562140022582525, 29.064133047549966 ], [ -95.56239902240155, 29.064747047656532 ], [ -95.563092022873775, 29.065440047989249 ], [ -95.563787023305537, 29.065827047934171 ], [ -95.566309023975379, 29.06660404823975 ], [ -95.568135023803919, 29.067301048242271 ], [ -95.569175024519026, 29.0684560483528 ], [ -95.570383025098465, 29.070685048383194 ], [ -95.572717025190343, 29.074452048962986 ], [ -95.573737026310923, 29.075842049643381 ], [ -95.574015026209764, 29.076221049441351 ], [ -95.575489026779394, 29.077607049987328 ], [ -95.577829027705874, 29.079994050194369 ], [ -95.579388027193318, 29.081994050231391 ], [ -95.580861028106696, 29.083610051287867 ], [ -95.582596028166279, 29.085151051550586 ], [ -95.584157028700545, 29.086691051546211 ], [ -95.585428029505067, 29.087830051268561 ], [ -95.587018029874955, 29.089096051383862 ], [ -95.587700029927305, 29.089658052026305 ], [ -95.588529029977479, 29.090092052308666 ], [ -95.589409030613993, 29.090224051718138 ], [ -95.590289030362044, 29.090313052155327 ], [ -95.591122030893729, 29.090015051990974 ], [ -95.591760031672194, 29.089630051549275 ], [ -95.592349031620643, 29.089202051845717 ], [ -95.593134031934127, 29.088775051948485 ], [ -95.594162031310191, 29.08864905110239 ], [ -95.594944032315425, 29.088652051451994 ], [ -95.597336032339129, 29.089737052009816 ], [ -95.602068033521846, 29.092338051565022 ], [ -95.603873033927471, 29.093420052309568 ], [ -95.605142034421675, 29.093941052131029 ], [ -95.606755034774366, 29.094292052426127 ], [ -95.608271036079572, 29.094340051896296 ], [ -95.609885035721504, 29.094475052259408 ], [ -95.611450035898216, 29.094481051996201 ], [ -95.612918036657163, 29.094443052001548 ], [ -95.613994037034828, 29.094404051879749 ], [ -95.61492303766785, 29.094493052064799 ], [ -95.615558037900584, 29.09475405205697 ], [ -95.616143037291806, 29.095229052361635 ], [ -95.616726037413514, 29.095963052572895 ], [ -95.616916037705963, 29.097212052926842 ], [ -95.616814038171455, 29.098159052351058 ], [ -95.616223037376429, 29.098974052688945 ], [ -95.61521903763628, 29.100008053397431 ], [ -95.615812037974663, 29.100365053286279 ], [ -95.61602103731812, 29.100617053241169 ], [ -95.616673037952808, 29.100709053528913 ], [ -95.616803038074607, 29.100846053248542 ], [ -95.616673038288724, 29.101488053297881 ], [ -95.61693403849327, 29.101694053780626 ], [ -95.617690038186083, 29.101992053735824 ], [ -95.618447038464993, 29.102587053688008 ], [ -95.61909903827673, 29.102610053466737 ], [ -95.62022003862846, 29.102267053097812 ], [ -95.621707039738709, 29.102541053038415 ], [ -95.625228039935934, 29.102541053183423 ], [ -95.632375041922216, 29.102289053204473 ], [ -95.63400004273619, 29.101656053124344 ], [ -95.633370042387625, 29.10048105247018 ], [ -95.632392041515715, 29.098646051963627 ], [ -95.632071041859959, 29.098051052306232 ], [ -95.631867041476895, 29.097732052022167 ], [ -95.63168204156085, 29.097427052083816 ], [ -95.630708041213637, 29.095919051626296 ], [ -95.630263041229412, 29.095274051294826 ], [ -95.629859040607997, 29.094743051973982 ], [ -95.629555040494367, 29.094363051723697 ], [ -95.629353041317643, 29.094099051387161 ], [ -95.628911040798357, 29.093548051169392 ], [ -95.628357040916512, 29.092916051077616 ], [ -95.627510040504418, 29.091983051092139 ], [ -95.626624040442891, 29.091112051057294 ], [ -95.625959039497403, 29.090471050717763 ], [ -95.625772039898266, 29.090324050885762 ], [ -95.625379039793003, 29.089966050949048 ], [ -95.624733039333577, 29.089388050504663 ], [ -95.623854039198278, 29.088686050277328 ], [ -95.623773039603066, 29.088622050566844 ], [ -95.622664038547128, 29.087818050765172 ], [ -95.622112039111713, 29.087434050359533 ], [ -95.621495038782328, 29.087000050056428 ], [ -95.620860038935703, 29.086586049860941 ], [ -95.620275037800326, 29.086248050113845 ], [ -95.619699037779867, 29.085914050537522 ], [ -95.619020037955949, 29.085521050245376 ], [ -95.618245037945471, 29.085073050246091 ], [ -95.61664503713763, 29.084149050175625 ], [ -95.613901036550971, 29.082602049819986 ], [ -95.613358036496962, 29.082296049260506 ], [ -95.610820036004867, 29.080873048992821 ], [ -95.606107034190813, 29.078205048810151 ], [ -95.606228034238967, 29.077213048804079 ], [ -95.606309033873814, 29.076550048741691 ], [ -95.608564034812005, 29.076804048487212 ], [ -95.609870035517432, 29.07689304870302 ], [ -95.61193603546991, 29.076889048828917 ], [ -95.612043036052071, 29.076889048218252 ], [ -95.612206035510724, 29.0768940486121 ], [ -95.612805035796526, 29.076913048776145 ], [ -95.613373036000496, 29.077017048183254 ], [ -95.61484403652554, 29.077410048276747 ], [ -95.615102036878014, 29.077479048383008 ], [ -95.615189036431005, 29.077509048422968 ], [ -95.616243037383882, 29.077874048860807 ], [ -95.616351037395717, 29.077913048620047 ], [ -95.617448037288852, 29.078247048959639 ], [ -95.618235037125686, 29.078487048173923 ], [ -95.619038037788741, 29.078688048206693 ], [ -95.619154037931452, 29.078717049063638 ], [ -95.619945038071492, 29.078848048956505 ], [ -95.620838037765708, 29.078995049059571 ], [ -95.622581039058204, 29.07925004848364 ], [ -95.622897038770986, 29.079305048677966 ], [ -95.625094039075151, 29.07964704844483 ], [ -95.625670038972089, 29.079733048416781 ], [ -95.62636904001846, 29.079816048651693 ], [ -95.627191040125282, 29.079868048538842 ], [ -95.627684040407487, 29.079905048490129 ], [ -95.627896039815226, 29.079921048348734 ], [ -95.628157040096312, 29.079941048844528 ], [ -95.628602039703765, 29.079987048976367 ], [ -95.628771040165788, 29.080004048941326 ], [ -95.629296040281162, 29.080046048325432 ], [ -95.629971040195784, 29.080100048467109 ], [ -95.630866040400122, 29.08020004863587 ], [ -95.632261040716344, 29.080348048899843 ], [ -95.632779041099681, 29.080399048788884 ], [ -95.632914041649244, 29.080419048721748 ], [ -95.634744041391457, 29.080613048244349 ], [ -95.635304041733335, 29.080624048366985 ], [ -95.635712041873063, 29.080625048564883 ], [ -95.63632304168199, 29.080627048870571 ], [ -95.637450042521465, 29.080548048695821 ], [ -95.637706042664064, 29.080530048800238 ], [ -95.637874042868631, 29.080517048135228 ], [ -95.640329043627688, 29.080368047920732 ], [ -95.640978043593449, 29.080355048711088 ], [ -95.641118043803928, 29.080352048007029 ], [ -95.6417170432821, 29.080374048022342 ], [ -95.642341043909738, 29.080373048460157 ], [ -95.642851043587953, 29.080386048574699 ], [ -95.643221044077947, 29.080401047810852 ], [ -95.64355104436973, 29.080408048514631 ], [ -95.643708044003631, 29.08041204822101 ], [ -95.645839044969463, 29.0804230477681 ], [ -95.647858045336861, 29.080433048438625 ], [ -95.649691045904916, 29.080397047641537 ], [ -95.652836046757272, 29.080281048144872 ], [ -95.653903046977632, 29.080246047498122 ], [ -95.654451046451811, 29.080258047428622 ], [ -95.6547520470194, 29.080280048211989 ], [ -95.65589304690431, 29.080363047544203 ], [ -95.656851047033598, 29.080456047360787 ], [ -95.657132047004751, 29.080485048190791 ], [ -95.658038047795884, 29.080557048043307 ], [ -95.659429048525766, 29.080674047664051 ], [ -95.65997904850245, 29.080730047682014 ], [ -95.660783047954894, 29.080805047806447 ], [ -95.661804048297626, 29.080895048075678 ], [ -95.662761048864738, 29.080966047858901 ], [ -95.663615048625914, 29.080983047900332 ], [ -95.665156049603112, 29.080997047377373 ], [ -95.666227049427675, 29.080996047629675 ], [ -95.667972050075463, 29.081018047813032 ], [ -95.669412050599433, 29.081023047667397 ], [ -95.670010050611253, 29.081011047276018 ], [ -95.670353050764362, 29.080993047182815 ], [ -95.671420051033081, 29.080861047637697 ], [ -95.671632050704986, 29.080823047314791 ], [ -95.67185005133409, 29.081031047583497 ], [ -95.67200805112158, 29.080931047234248 ], [ -95.67254805130672, 29.0806610472833 ], [ -95.672652051288395, 29.080629047428243 ], [ -95.672793051071267, 29.080593047256389 ], [ -95.673986052156124, 29.080377047050746 ], [ -95.676887052719081, 29.079855046995327 ], [ -95.677892052191694, 29.079675047276645 ], [ -95.678136052381873, 29.079638046669611 ], [ -95.678647053307031, 29.079549047348742 ], [ -95.679899052997015, 29.079301047107851 ], [ -95.680374052980127, 29.079206046531109 ], [ -95.68274405382013, 29.078680046496121 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 711, "Tract": "48039662800", "Area_SqMi": 52.210711671288472, "total_2009": 642, "total_2010": 741, "total_2011": 731, "total_2012": 1017, "total_2013": 1040, "total_2014": 1048, "total_2015": 1051, "total_2016": 1064, "total_2017": 1079, "total_2018": 1090, "total_2019": 1087, "total_2020": 1121, "age1": 187, "age2": 646, "age3": 276, "earn1": 233, "earn2": 358, "earn3": 518, "naics_s01": 1, "naics_s02": 15, "naics_s03": 0, "naics_s04": 42, "naics_s05": 26, "naics_s06": 7, "naics_s07": 82, "naics_s08": 27, "naics_s09": 0, "naics_s10": 25, "naics_s11": 9, "naics_s12": 10, "naics_s13": 0, "naics_s14": 15, "naics_s15": 382, "naics_s16": 307, "naics_s17": 2, "naics_s18": 104, "naics_s19": 2, "naics_s20": 53, "race1": 916, "race2": 149, "race3": 5, "race4": 22, "race5": 0, "race6": 17, "ethnicity1": 887, "ethnicity2": 222, "edu1": 142, "edu2": 245, "edu3": 321, "edu4": 214, "Shape_Length": 207539.87836642389, "Shape_Area": 1455545281.8694248, "total_2021": 1072, "total_2022": 1109 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.785282077629518, 29.012059029334939 ], [ -95.78532007704348, 29.01175702933843 ], [ -95.785270077485976, 29.011180029097972 ], [ -95.785189077549077, 29.0109050291519 ], [ -95.785020077460231, 29.010481029013651 ], [ -95.785001077017327, 29.010333029547876 ], [ -95.78499507700478, 29.010207029507875 ], [ -95.785020077236453, 29.009959028996754 ], [ -95.785120077173232, 29.009629028794183 ], [ -95.785146077239787, 29.009409029337348 ], [ -95.785127077113984, 29.009217028520634 ], [ -95.785071076619545, 29.00893102866058 ], [ -95.784871077185386, 29.008480028838434 ], [ -95.784408077199416, 29.007513028217335 ], [ -95.784264076414317, 29.007254028218309 ], [ -95.784114077231607, 29.00704002899867 ], [ -95.783908076904609, 29.006853028831397 ], [ -95.783570076443951, 29.006573028125125 ], [ -95.78341407615217, 29.006507028017698 ], [ -95.783176076407543, 29.006430028514057 ], [ -95.782976076244907, 29.006446028810643 ], [ -95.78272607634473, 29.006561028280466 ], [ -95.782188076505037, 29.006941028309715 ], [ -95.781913075806486, 29.007100028561638 ], [ -95.781663075823005, 29.007171028297648 ], [ -95.781038075749464, 29.007061028791522 ], [ -95.780206076228268, 29.006874028962105 ], [ -95.779593075985829, 29.006819028486746 ], [ -95.779437075865445, 29.006846028316517 ], [ -95.779312075491958, 29.006918028289103 ], [ -95.779274075649923, 29.007055028637243 ], [ -95.779324075076033, 29.007237028423418 ], [ -95.77941807554113, 29.007385028781538 ], [ -95.779505076096413, 29.007644028970773 ], [ -95.779530075427246, 29.008012029286352 ], [ -95.779430075497615, 29.008303028772261 ], [ -95.77926707589657, 29.008584029183236 ], [ -95.779111075185867, 29.008748029343504 ], [ -95.778930075085668, 29.008853029159937 ], [ -95.778667075808599, 29.008952029482774 ], [ -95.778248074872224, 29.009073028706091 ], [ -95.778016075667495, 29.009133028864273 ], [ -95.77789007497158, 29.009132029289898 ], [ -95.777791075014051, 29.009039029275019 ], [ -95.777741074800559, 29.008875029333741 ], [ -95.777704075515601, 29.008682028691638 ], [ -95.777554075551464, 29.008259029128791 ], [ -95.777373074788215, 29.007989029216795 ], [ -95.77708507465691, 29.007747029301051 ], [ -95.776722075250802, 29.007566029177781 ], [ -95.776322074282746, 29.007340028664743 ], [ -95.775703074995548, 29.006857029229707 ], [ -95.775397074869772, 29.006642028997092 ], [ -95.775178074364376, 29.006444029062756 ], [ -95.775059073984494, 29.006290028521306 ], [ -95.774853074054832, 29.006158029067013 ], [ -95.774147074187383, 29.005944029060416 ], [ -95.77381507365935, 29.00576802871598 ], [ -95.773465074267435, 29.005652028510948 ], [ -95.773121073602823, 29.005602028467951 ], [ -95.772827073877593, 29.005597028313421 ], [ -95.772590073771482, 29.005630029070112 ], [ -95.772177074149255, 29.005899028441792 ], [ -95.771933073607116, 29.006025029070305 ], [ -95.771664073927411, 29.006113028639444 ], [ -95.771389073740565, 29.00615202855246 ], [ -95.770976073491255, 29.006075028543947 ], [ -95.77055107359962, 29.005920028884432 ], [ -95.770051073240197, 29.005805028944643 ], [ -95.769513073263795, 29.005596028863202 ], [ -95.769350072872996, 29.005464028786367 ], [ -95.769125073294532, 29.005205028913593 ], [ -95.768957072564163, 29.004810028655559 ], [ -95.7688000727169, 29.004667028129571 ], [ -95.768494072396734, 29.004491028388067 ], [ -95.76819407222952, 29.004358028852977 ], [ -95.767956072735345, 29.004215028723788 ], [ -95.767780072787247, 29.003993028593342 ], [ -95.767713072831938, 29.00384702882193 ], [ -95.767688072577769, 29.003479028747915 ], [ -95.767744072522817, 29.003259027857336 ], [ -95.767869072515609, 29.003088028136261 ], [ -95.768063072866966, 29.002946028530317 ], [ -95.76883907266938, 29.002743028556878 ], [ -95.769089072972065, 29.002704027988639 ], [ -95.769783072575549, 29.002886028401033 ], [ -95.770133073345278, 29.003073027878226 ], [ -95.770514072693345, 29.003408028297947 ], [ -95.771008073161667, 29.004222028313933 ], [ -95.771314073182936, 29.004678028747776 ], [ -95.771445073771119, 29.004953028842003 ], [ -95.771564073527713, 29.005129028574189 ], [ -95.771752073988409, 29.00530502849794 ], [ -95.771896073828074, 29.005371028374967 ], [ -95.772196073682238, 29.005366028203408 ], [ -95.772302073742964, 29.005333028414771 ], [ -95.772565073855517, 29.005190028413448 ], [ -95.772671073741805, 29.005053028794194 ], [ -95.772740073457598, 29.004910028416248 ], [ -95.772803074182917, 29.004734028229301 ], [ -95.772809074029453, 29.00455202860833 ], [ -95.772853073291714, 29.004349028332093 ], [ -95.772840073563643, 29.003865028523251 ], [ -95.772853073801301, 29.003689028309896 ], [ -95.772954073834697, 29.00342402794703 ], [ -95.773166074194918, 29.003090028277047 ], [ -95.773422073571339, 29.002821027658953 ], [ -95.773623074376857, 29.002639027600285 ], [ -95.773835074125302, 29.002541028244941 ], [ -95.774160074425367, 29.002409028193625 ], [ -95.774504074007737, 29.002304028047678 ], [ -95.774705073944517, 29.002206027769891 ], [ -95.774930074623583, 29.001980027708871 ], [ -95.775036074310833, 29.001733027578293 ], [ -95.775055073723749, 29.001441027541816 ], [ -95.77513007418473, 29.001167027338063 ], [ -95.775287073904764, 29.000754027297326 ], [ -95.775637074459681, 29.000331027719081 ], [ -95.776344074048822, 29.000007027259169 ], [ -95.776788075015006, 28.999702027685533 ], [ -95.776894074368542, 28.999603027142793 ], [ -95.777038074293813, 28.999416027336444 ], [ -95.777301074885912, 28.99892702672037 ], [ -95.777595075113894, 28.998262027052753 ], [ -95.777764074385388, 28.997976027077623 ], [ -95.777870075278784, 28.997871026595945 ], [ -95.778202074449908, 28.997503026689831 ], [ -95.778314074632888, 28.997305026576957 ], [ -95.778342075007743, 28.997087026300871 ], [ -95.778346074464821, 28.997058026883522 ], [ -95.778189074464308, 28.996811026231033 ], [ -95.778183074403259, 28.996778026688897 ], [ -95.778096074510273, 28.996613026501908 ], [ -95.777983074599547, 28.996470026706024 ], [ -95.777889074463786, 28.996404026851394 ], [ -95.777714074883932, 28.996305026417094 ], [ -95.777571074763046, 28.996200026438025 ], [ -95.777458075077931, 28.996085026616829 ], [ -95.777302074610986, 28.995881026869149 ], [ -95.77726407420792, 28.99577102622867 ], [ -95.777252074239115, 28.995678026772357 ], [ -95.777258074150225, 28.995518026463046 ], [ -95.777289074463027, 28.995414026271266 ], [ -95.777302074764066, 28.995222026539963 ], [ -95.777202074734149, 28.995018026009319 ], [ -95.777121074380176, 28.994914026037883 ], [ -95.777058074664183, 28.994848026670311 ], [ -95.776927074509274, 28.994749026234871 ], [ -95.776821074348661, 28.994699026436574 ], [ -95.776721074473812, 28.994677026198442 ], [ -95.776002074206318, 28.994540026055361 ], [ -95.775214074129835, 28.994402025875406 ], [ -95.774932074288358, 28.994386026146888 ], [ -95.774663073331467, 28.994391026162351 ], [ -95.774588073789417, 28.994402026276152 ], [ -95.774313074133232, 28.994413026498357 ], [ -95.773813073498275, 28.994374025826378 ], [ -95.773463073443793, 28.994292026140524 ], [ -95.773363073417528, 28.994286026198012 ], [ -95.773194073464907, 28.994292025924494 ], [ -95.772950073692996, 28.994330026561599 ], [ -95.772750073466753, 28.994391026206923 ], [ -95.772431073191498, 28.994468026304382 ], [ -95.772356073282211, 28.994467026627667 ], [ -95.772219073255457, 28.994451026031182 ], [ -95.772156073142099, 28.994429026684493 ], [ -95.771575073457441, 28.994055026416039 ], [ -95.771187073231388, 28.993764025796512 ], [ -95.770906073126056, 28.99359902593817 ], [ -95.770543073012803, 28.993417026116987 ], [ -95.770287072511522, 28.993219025790527 ], [ -95.770256072305045, 28.993126026271174 ], [ -95.77024907231943, 28.992906026315595 ], [ -95.770262073051356, 28.992428026304637 ], [ -95.770243072192713, 28.992362026039238 ], [ -95.770150072548631, 28.992241025915746 ], [ -95.770006072201269, 28.992131025671664 ], [ -95.769824072606781, 28.992070025485905 ], [ -95.769756072955019, 28.992070025709157 ], [ -95.769668072520275, 28.992021025960263 ], [ -95.769606072444077, 28.991966025678664 ], [ -95.76956207284563, 28.991911025725663 ], [ -95.769356072402275, 28.99154802592798 ], [ -95.769287072335331, 28.991482025874753 ], [ -95.769118072184199, 28.99141002618428 ], [ -95.768918071865201, 28.991416025471427 ], [ -95.768849071767377, 28.99143202544796 ], [ -95.768693072321028, 28.991493025538674 ], [ -95.768286071969513, 28.991773026025768 ], [ -95.767949071974854, 28.991965026379336 ], [ -95.767849071870913, 28.991987026352483 ], [ -95.767717071830276, 28.991982026265646 ], [ -95.767702071587692, 28.991977026368765 ], [ -95.767517071417544, 28.991916025881576 ], [ -95.767355071637283, 28.991811025682313 ], [ -95.767242072306772, 28.991690025625061 ], [ -95.767211072151298, 28.991613025480977 ], [ -95.767211071787159, 28.99155802551434 ], [ -95.767361071423622, 28.990981025949626 ], [ -95.767468071839261, 28.990492025923341 ], [ -95.767493072205397, 28.990283025551765 ], [ -95.767468071953672, 28.990146026012511 ], [ -95.767312072012885, 28.989750025317985 ], [ -95.767074071659053, 28.989271025383136 ], [ -95.767062071398982, 28.98921602524884 ], [ -95.767049072062164, 28.989101025234138 ], [ -95.76705607153184, 28.989040025550477 ], [ -95.767174071311914, 28.988716024937268 ], [ -95.767300072107957, 28.988529024926887 ], [ -95.767500071729813, 28.988353025599203 ], [ -95.767728071638075, 28.988191024848923 ], [ -95.767994072105111, 28.988002025319592 ], [ -95.768288071732172, 28.987875025402204 ], [ -95.768425071555313, 28.987859025428641 ], [ -95.768582072189375, 28.987859024950112 ], [ -95.768688071937007, 28.987886024749081 ], [ -95.768807072097701, 28.987969025436065 ], [ -95.768838071626121, 28.988013024694261 ], [ -95.76894407241079, 28.988112025498978 ], [ -95.769088071938697, 28.988376024906909 ], [ -95.769113071899199, 28.988508025011448 ], [ -95.769119072213996, 28.988612025167185 ], [ -95.769182072454683, 28.988794024983893 ], [ -95.769269072731376, 28.98890402531983 ], [ -95.769319072697982, 28.988920025175428 ], [ -95.769425072770133, 28.988937025276826 ], [ -95.769469072219806, 28.988926025209146 ], [ -95.769732072081553, 28.988810025625344 ], [ -95.769838072648014, 28.988722025543428 ], [ -95.769894072501543, 28.98866202550467 ], [ -95.770026071953041, 28.988502025538349 ], [ -95.770051072272636, 28.988453025499904 ], [ -95.77005707274887, 28.988414025239067 ], [ -95.770057072855437, 28.988316024827121 ], [ -95.770001072260612, 28.9878590252073 ], [ -95.769782072697623, 28.987035024605301 ], [ -95.769557071748579, 28.986303025136181 ], [ -95.769545071730477, 28.986149024633388 ], [ -95.76955107238858, 28.986067024801901 ], [ -95.769576071700897, 28.985968024885928 ], [ -95.769739072256399, 28.985737024512964 ], [ -95.769920072514012, 28.985572024380122 ], [ -95.77029607207831, 28.985298024119633 ], [ -95.7703960724441, 28.985199024919964 ], [ -95.770502072497351, 28.985028024852319 ], [ -95.770527072875311, 28.984907024474023 ], [ -95.770527072185331, 28.984863024693052 ], [ -95.770496072676067, 28.98478102442051 ], [ -95.770433072430166, 28.984676024555174 ], [ -95.770352072373157, 28.984599023996836 ], [ -95.770239072544342, 28.984511024123176 ], [ -95.770221072487104, 28.984451023904338 ], [ -95.770215072298129, 28.984347024706487 ], [ -95.77024607180816, 28.984149024478118 ], [ -95.770296071804751, 28.983687024036193 ], [ -95.770290072197668, 28.983632023713859 ], [ -95.770265072407085, 28.983599024424247 ], [ -95.770215072366895, 28.98349402423754 ], [ -95.770202072442842, 28.983412024158394 ], [ -95.770165072020973, 28.983280024322589 ], [ -95.77005907175662, 28.983115024280625 ], [ -95.769940072169007, 28.983022023706074 ], [ -95.769590071883712, 28.98282402443423 ], [ -95.76952707189109, 28.982796024375101 ], [ -95.769352071696559, 28.98278502430616 ], [ -95.769290072413469, 28.982769024423103 ], [ -95.769252072265871, 28.982747024284329 ], [ -95.769189071433431, 28.982696024421738 ], [ -95.76914907221348, 28.982663024255665 ], [ -95.768921072097243, 28.98247702414541 ], [ -95.768696071335356, 28.982241024328633 ], [ -95.768602071417902, 28.982180023729867 ], [ -95.768558071625705, 28.982136023474862 ], [ -95.768496072124279, 28.982092023582997 ], [ -95.768458071967302, 28.982048023762111 ], [ -95.76835207144893, 28.981993023985158 ], [ -95.767958071854054, 28.981883023817169 ], [ -95.767665071036674, 28.981790023540427 ], [ -95.767352071922531, 28.981707023884731 ], [ -95.767208071323651, 28.981658023894695 ], [ -95.767077071574349, 28.981581024259608 ], [ -95.766364071258607, 28.98103602361526 ], [ -95.766308070799155, 28.980981023938295 ], [ -95.766208071458038, 28.980833023369872 ], [ -95.765977071370983, 28.980613023727674 ], [ -95.765864070599648, 28.980481023691887 ], [ -95.765733071122213, 28.980266023929225 ], [ -95.765639070720411, 28.979997023278464 ], [ -95.765583071207942, 28.979739023629449 ], [ -95.765615070464548, 28.979486023294726 ], [ -95.765677070480081, 28.979359023511456 ], [ -95.765721070866746, 28.979310023343178 ], [ -95.765809070683957, 28.979249023307091 ], [ -95.765959070769995, 28.979189022965279 ], [ -95.766027071041805, 28.979183022919013 ], [ -95.766153070760453, 28.979194023769288 ], [ -95.766459071281787, 28.97927702327161 ], [ -95.766615071497796, 28.979305023308825 ], [ -95.766703071035366, 28.979305023763512 ], [ -95.766796070874008, 28.9792770233433 ], [ -95.767140071689667, 28.979052023123131 ], [ -95.767242070842158, 28.978923023492278 ], [ -95.767258071490843, 28.978902023265388 ], [ -95.767397071075919, 28.978750023456563 ], [ -95.76749107106447, 28.978695023057693 ], [ -95.767578071751004, 28.978667023405873 ], [ -95.76766607116096, 28.978612023251113 ], [ -95.767753071356196, 28.978535022769961 ], [ -95.767828071026699, 28.978491023530783 ], [ -95.767910071236628, 28.978469023256213 ], [ -95.768360072060474, 28.978392023424689 ], [ -95.768585071758721, 28.978338023295926 ], [ -95.768779071405305, 28.978250023419292 ], [ -95.768879071548355, 28.978195023444826 ], [ -95.76915407179014, 28.978019022971804 ], [ -95.769360071754093, 28.977815023088546 ], [ -95.770167072062549, 28.976656022601574 ], [ -95.770323071787047, 28.976370022414038 ], [ -95.770505071607687, 28.975985022847659 ], [ -95.770580071573704, 28.975765022109758 ], [ -95.770699071526181, 28.975342022628102 ], [ -95.770724071952074, 28.975210022057503 ], [ -95.770724072498069, 28.975018022784766 ], [ -95.770662072247688, 28.974594022315067 ], [ -95.770430072153488, 28.973753022510831 ], [ -95.770387071951376, 28.97354402190653 ], [ -95.77038107141847, 28.973418022305218 ], [ -95.77036207172911, 28.973319022334191 ], [ -95.7703430720086, 28.972687022201789 ], [ -95.770331071534528, 28.972621022141919 ], [ -95.770200072284425, 28.972269021916503 ], [ -95.770075071262127, 28.972054022190026 ], [ -95.769400071454228, 28.971114021792722 ], [ -95.76878707085703, 28.970438021162106 ], [ -95.768256071430613, 28.969877021148495 ], [ -95.767988071056095, 28.969641021243888 ], [ -95.767625071448165, 28.969393020853449 ], [ -95.767463070645917, 28.969311021249172 ], [ -95.766806071124208, 28.969014021566142 ], [ -95.766656071045475, 28.968937021209669 ], [ -95.766500070318202, 28.968838021512198 ], [ -95.76593107032086, 28.968260021405325 ], [ -95.765638070928915, 28.968057021011429 ], [ -95.765494070914457, 28.967969020630377 ], [ -95.765431070008788, 28.967936021048711 ], [ -95.765206070609011, 28.967853021221678 ], [ -95.765144070684258, 28.967820021481185 ], [ -95.765056070749381, 28.967743021134581 ], [ -95.765013069917316, 28.967661020663222 ], [ -95.764950070076793, 28.967501021316011 ], [ -95.764945070043836, 28.967386020527446 ], [ -95.764944070578579, 28.967364021105716 ], [ -95.751832066883651, 28.96754802126404 ], [ -95.748213065863226, 28.967595021683429 ], [ -95.747810065773777, 28.9676020214239 ], [ -95.747438066137192, 28.967608021693447 ], [ -95.745662065737989, 28.967637021420163 ], [ -95.744980064854431, 28.967648021813119 ], [ -95.744398065514432, 28.967658021866402 ], [ -95.744332064925615, 28.967659021726455 ], [ -95.744259064749897, 28.967660021662244 ], [ -95.74423906493648, 28.967661021358147 ], [ -95.743939064958411, 28.967666021727918 ], [ -95.740786064335339, 28.967718022170711 ], [ -95.737358063200972, 28.967774022246026 ], [ -95.737001063502703, 28.967780022028862 ], [ -95.735259062449799, 28.967826021905061 ], [ -95.735204062365597, 28.967827021968155 ], [ -95.735135063119529, 28.967829022357247 ], [ -95.733543062069785, 28.967872022156328 ], [ -95.728565060868362, 28.968005022005471 ], [ -95.728183060998617, 28.968015021967531 ], [ -95.728307061104644, 28.968115022300363 ], [ -95.728280061311153, 28.968111022425294 ], [ -95.728093060398876, 28.968067022323844 ], [ -95.72733606065438, 28.968078022047891 ], [ -95.726768061023151, 28.968100022027368 ], [ -95.726324060754322, 28.968090021927853 ], [ -95.725705060245474, 28.968123022051245 ], [ -95.725324059925811, 28.968106022453178 ], [ -95.725011060485983, 28.968128022518055 ], [ -95.724542059961294, 28.968145022345983 ], [ -95.723917060129921, 28.96816202218848 ], [ -95.723254060032716, 28.968162022633567 ], [ -95.722592059614726, 28.968201022090227 ], [ -95.721954059663858, 28.968212022403709 ], [ -95.721266058864487, 28.968240022965141 ], [ -95.719222058826048, 28.96829002279539 ], [ -95.718878058501261, 28.96830602227115 ], [ -95.717722058182986, 28.9683120225503 ], [ -95.717168058357785, 28.968334023016077 ], [ -95.716740058091489, 28.968351022885418 ], [ -95.716130057843557, 28.968359022672587 ], [ -95.715415057986135, 28.968368022997435 ], [ -95.715015057239782, 28.968390023049821 ], [ -95.713308056834535, 28.968445022873716 ], [ -95.712089056912561, 28.968451022749157 ], [ -95.710177055854217, 28.968523022597189 ], [ -95.708295056103822, 28.968567022823279 ], [ -95.707188055628677, 28.968557023189792 ], [ -95.706763055044675, 28.968590023292499 ], [ -95.705919055103237, 28.968617023300286 ], [ -95.705469055148669, 28.9686230229015 ], [ -95.70535705549166, 28.968656023517589 ], [ -95.705194055344862, 28.968766022777331 ], [ -95.704807054907789, 28.968909023009612 ], [ -95.704638054860226, 28.968920023246977 ], [ -95.704263055252937, 28.968898023488816 ], [ -95.704080054501375, 28.968936023373434 ], [ -95.704056054433494, 28.968942023569227 ], [ -95.703913054596285, 28.968953022899083 ], [ -95.703769054777439, 28.969025023674966 ], [ -95.703338054567809, 28.96917902327997 ], [ -95.703222054069514, 28.969196023602507 ], [ -95.703153054933196, 28.969206023450134 ], [ -95.703031054458535, 28.969223022871518 ], [ -95.702868054840707, 28.969233023238893 ], [ -95.702694054627742, 28.969245023600603 ], [ -95.702400054225691, 28.969250023251327 ], [ -95.70225905480423, 28.969296023137726 ], [ -95.702199054400566, 28.969316023784561 ], [ -95.702081054508398, 28.969355022980391 ], [ -95.701950054700802, 28.969366023593874 ], [ -95.701868054009111, 28.969338023197796 ], [ -95.701718053812812, 28.96918402356442 ], [ -95.701681053880179, 28.969162023025724 ], [ -95.701462053717876, 28.969201023758139 ], [ -95.701256053574312, 28.969250023668202 ], [ -95.701193054036068, 28.969327022939236 ], [ -95.701131053695804, 28.969355023806546 ], [ -95.701062054512832, 28.969360023398696 ], [ -95.70080605385823, 28.969207023216445 ], [ -95.70071205400177, 28.969174023059672 ], [ -95.700656053865345, 28.969174023566914 ], [ -95.700587053997026, 28.969201023607997 ], [ -95.700443053601646, 28.969284022997048 ], [ -95.70023105341069, 28.969482023604677 ], [ -95.700081053823268, 28.969537023483092 ], [ -95.699918054256599, 28.96958102333463 ], [ -95.699555053492446, 28.969597023162347 ], [ -95.699387053770323, 28.969537023107389 ], [ -95.699137053549094, 28.969542023714883 ], [ -95.699099053186188, 28.969509023427378 ], [ -95.699080053063895, 28.969416023558384 ], [ -95.699037053420071, 28.969333023786497 ], [ -95.698946053013913, 28.969287023867491 ], [ -95.698874053613523, 28.969251023708992 ], [ -95.698743053826064, 28.969146023585626 ], [ -95.698649053267587, 28.969014023185579 ], [ -95.698430053787945, 28.968866023620755 ], [ -95.698305053633689, 28.968751023815557 ], [ -95.698249053218419, 28.968668023177596 ], [ -95.698155053313513, 28.968569023507925 ], [ -95.697855053672271, 28.968179023555372 ], [ -95.697811052985685, 28.96807402302835 ], [ -95.6977420530514, 28.967976023102924 ], [ -95.697655052984246, 28.967662023580214 ], [ -95.697655053128031, 28.967530022804482 ], [ -95.697617052854255, 28.967096023243464 ], [ -95.697642053416786, 28.966783022758136 ], [ -95.697717052823563, 28.96648002310992 ], [ -95.697717053573626, 28.966304022685975 ], [ -95.697679052705425, 28.966150022418784 ], [ -95.697617053463262, 28.966084022953762 ], [ -95.697417053340629, 28.965947022593561 ], [ -95.697329052885308, 28.965925023098485 ], [ -95.697123053134604, 28.965909022622604 ], [ -95.696992053201981, 28.965909022399927 ], [ -95.696904052870082, 28.965887022623551 ], [ -95.696760053256071, 28.965821022863501 ], [ -95.696654052749338, 28.96572202265461 ], [ -95.696614052584451, 28.965670023218049 ], [ -95.696590052875834, 28.965639022876832 ], [ -95.696535052631575, 28.965568022476482 ], [ -95.696441052549702, 28.965524022415 ], [ -95.69637905289197, 28.965513022376879 ], [ -95.696048052909916, 28.965518022638214 ], [ -95.69587305235919, 28.965496022974673 ], [ -95.695685052167335, 28.965430022572981 ], [ -95.695561052345298, 28.965365023160022 ], [ -95.695498052901911, 28.965332022387773 ], [ -95.695291052814511, 28.965277022558059 ], [ -95.695185052280877, 28.965277022681516 ], [ -95.694954052322359, 28.965315022799032 ], [ -95.69482205183435, 28.965348022848257 ], [ -95.694672052041014, 28.96535902317688 ], [ -95.694504052532295, 28.965359023184142 ], [ -95.694185052187962, 28.965299022606679 ], [ -95.693953051772198, 28.965211022579258 ], [ -95.693741051663736, 28.965150022968679 ], [ -95.692922051751324, 28.964881022556213 ], [ -95.692397051712419, 28.964760022974499 ], [ -95.692147051813222, 28.964672022371733 ], [ -95.691947051244028, 28.964634022373964 ], [ -95.691697051384679, 28.964623022686261 ], [ -95.691590051861894, 28.964634022533023 ], [ -95.691522051746603, 28.964700022513696 ], [ -95.691390051703692, 28.964788022899587 ], [ -95.69122805095364, 28.964953023040341 ], [ -95.691107051756191, 28.965019022652314 ], [ -95.691047050955945, 28.965052022646397 ], [ -95.690878050868818, 28.965024022787443 ], [ -95.69069605071833, 28.964914023110556 ], [ -95.690590051526243, 28.96479302257384 ], [ -95.690511050888901, 28.964677022500585 ], [ -95.690501051418693, 28.964662022451197 ], [ -95.68888705054205, 28.96580102282531 ], [ -95.688683050694948, 28.965961022863429 ], [ -95.687830050135901, 28.966756022893442 ], [ -95.683055049813902, 28.971154024727966 ], [ -95.682601049493641, 28.971576024008737 ], [ -95.680245048941217, 28.973756024639659 ], [ -95.679247048334872, 28.974679024959784 ], [ -95.678428048608723, 28.975440024993627 ], [ -95.678070048692192, 28.975773025687744 ], [ -95.676435047843526, 28.977274025649738 ], [ -95.675267047615975, 28.978346025745957 ], [ -95.672461047754169, 28.980918026516395 ], [ -95.667175046009064, 28.985254028038181 ], [ -95.66610704613359, 28.986117027948385 ], [ -95.665991045675213, 28.986211028399442 ], [ -95.665608045678795, 28.98652102843003 ], [ -95.664568045544868, 28.987363028321511 ], [ -95.661985044628238, 28.989407028364457 ], [ -95.66172104503751, 28.989598028501273 ], [ -95.661457044992744, 28.989804028496522 ], [ -95.661193044647661, 28.989982028554952 ], [ -95.660704044203371, 28.990254028760639 ], [ -95.659278043996736, 28.990992029112356 ], [ -95.658184044229955, 28.99151702912803 ], [ -95.657287043968807, 28.991947029398354 ], [ -95.655638043108127, 28.992787029499262 ], [ -95.651293042213112, 28.99498402984905 ], [ -95.650723042734796, 28.995419030720811 ], [ -95.649549042122644, 28.996480030940774 ], [ -95.649131041793623, 28.996858030602198 ], [ -95.648324042161789, 28.99760203061745 ], [ -95.646144041330828, 28.999591031418124 ], [ -95.645939041194424, 28.999760031425922 ], [ -95.645822041206074, 28.999868031610905 ], [ -95.645508041251063, 29.000089031594509 ], [ -95.645095040969892, 29.000329031701757 ], [ -95.644563040714232, 29.000631031923124 ], [ -95.644089040935128, 29.000877032183382 ], [ -95.641475040467498, 29.00222903229357 ], [ -95.639214039730945, 29.003368032622699 ], [ -95.638267039303543, 29.00385303283624 ], [ -95.637832039033725, 29.004035032350895 ], [ -95.637047039641644, 29.004371033014344 ], [ -95.634311038405968, 29.00549803307684 ], [ -95.632276038481947, 29.00634303309354 ], [ -95.630201037145426, 29.007205033754254 ], [ -95.627639036499474, 29.008243033370082 ], [ -95.62671303696979, 29.00864903429116 ], [ -95.626480036336034, 29.008743034051108 ], [ -95.626059037071201, 29.008914033805162 ], [ -95.625393036804439, 29.009130033927189 ], [ -95.62498703670768, 29.00922603384322 ], [ -95.624658035885062, 29.00927103397277 ], [ -95.624250035787796, 29.009288034463211 ], [ -95.623854035863388, 29.009277034434763 ], [ -95.623257036135286, 29.009219034260951 ], [ -95.618642034251664, 29.00860803434221 ], [ -95.618045034319707, 29.008529034068403 ], [ -95.617750034386674, 29.008490034014731 ], [ -95.613230033128033, 29.008388034319925 ], [ -95.606121031753233, 29.008274034468705 ], [ -95.605460031243808, 29.008264034807908 ], [ -95.605090031514564, 29.008292034305892 ], [ -95.604276030959753, 29.00838403458463 ], [ -95.603192031113394, 29.008561034709505 ], [ -95.602818030433355, 29.008622034979769 ], [ -95.597115029387922, 29.009553034669665 ], [ -95.594419028787968, 29.009998035578434 ], [ -95.594000028380833, 29.010067035323839 ], [ -95.593069028491854, 29.010220035290047 ], [ -95.59156002741139, 29.010457035131875 ], [ -95.58987102692538, 29.01072403542388 ], [ -95.58939702689996, 29.010783035682731 ], [ -95.588417027213978, 29.010929035397716 ], [ -95.588123026549439, 29.010973035297397 ], [ -95.58827602695608, 29.011451035540325 ], [ -95.588267027210691, 29.013222035817968 ], [ -95.587830027122806, 29.014611036047938 ], [ -95.587964026846237, 29.016508036686272 ], [ -95.588675027095121, 29.017776036854027 ], [ -95.592105028171204, 29.020950037143578 ], [ -95.594101028879749, 29.023739037614693 ], [ -95.594669029724486, 29.025006038038086 ], [ -95.594947028972712, 29.026904038336266 ], [ -95.595802029593585, 29.028298038620637 ], [ -95.597230029900047, 29.02994703918289 ], [ -95.597941029913414, 29.031341039145598 ], [ -95.598223030364139, 29.032480039416139 ], [ -95.599078030976926, 29.033747039606226 ], [ -95.600079031094026, 29.034510040479017 ], [ -95.601226031449727, 29.034893039946557 ], [ -95.602804031902636, 29.035152039790319 ], [ -95.605676032167352, 29.035163040444921 ], [ -95.607975032766348, 29.034665040222382 ], [ -95.609558032949622, 29.03391203938564 ], [ -95.611858034094695, 29.033288039319523 ], [ -95.613585034336296, 29.032536039392966 ], [ -95.614878034682349, 29.032414039484205 ], [ -95.615738035206547, 29.032543039157201 ], [ -95.616884035501471, 29.033180039124314 ], [ -95.618314036130641, 29.034449039532312 ], [ -95.620032035931047, 29.035467039286431 ], [ -95.621605036074357, 29.036863039641709 ], [ -95.621889036406358, 29.037623040136975 ], [ -95.621882037148112, 29.039267040193035 ], [ -95.621299036537138, 29.041035040791368 ], [ -95.621266036598598, 29.041572040824086 ], [ -95.621253037097006, 29.041783040783276 ], [ -95.621144037099668, 29.043563041146676 ], [ -95.621570037212436, 29.044703041590346 ], [ -95.621708036728194, 29.045968041420188 ], [ -95.622276037265792, 29.047361041956588 ], [ -95.623707037788947, 29.048377042412842 ], [ -95.624711037795393, 29.048760042646972 ], [ -95.626577038272913, 29.049019042083312 ], [ -95.626706038342633, 29.049019042033777 ], [ -95.628874039440021, 29.049027042107447 ], [ -95.629881039446616, 29.048651042180456 ], [ -95.630455039031787, 29.048653041598836 ], [ -95.630744038903785, 29.048401042042418 ], [ -95.630898039882354, 29.048401041825961 ], [ -95.632754040181297, 29.048408042096991 ], [ -95.634905040786634, 29.049048042159779 ], [ -95.637347040901929, 29.049056042349221 ], [ -95.63878604142279, 29.048302042142531 ], [ -95.640515041983221, 29.046917041002633 ], [ -95.641089041933299, 29.046041041232769 ], [ -95.641676041953602, 29.044139040972954 ], [ -95.642830042036096, 29.042879040568391 ], [ -95.643549042065075, 29.042628040248072 ], [ -95.645813043356199, 29.042635039973096 ], [ -95.64599004278071, 29.042636040118133 ], [ -95.648047043145638, 29.043133040557048 ], [ -95.648139043354234, 29.043186040204446 ], [ -95.648872044213064, 29.043428040271806 ], [ -95.64972904419821, 29.043712040239825 ], [ -95.650338044516872, 29.043965040665508 ], [ -95.651659044727907, 29.044513040119735 ], [ -95.652076044950491, 29.04453604061753 ], [ -95.652884044852044, 29.044468040033159 ], [ -95.654187044963564, 29.044078040275853 ], [ -95.656715045970657, 29.042932040468521 ], [ -95.657341046046454, 29.042840039635184 ], [ -95.657940046401279, 29.042840039885473 ], [ -95.659477046626762, 29.043154040185645 ], [ -95.66174604684592, 29.043618039802229 ], [ -95.66281504710939, 29.043892040249883 ], [ -95.662894047495513, 29.044030040159821 ], [ -95.663858048045697, 29.044602040361116 ], [ -95.665527048519195, 29.046068040335562 ], [ -95.666388048767445, 29.046938040110145 ], [ -95.667588048843882, 29.048724040594625 ], [ -95.668136048674981, 29.050076041249493 ], [ -95.668214048744545, 29.050121040907893 ], [ -95.668597048689449, 29.051213041346369 ], [ -95.668736048786144, 29.051610041459789 ], [ -95.668814049670132, 29.051656041849739 ], [ -95.669258049578403, 29.052778042080931 ], [ -95.670250049809312, 29.054542042397468 ], [ -95.672102050424257, 29.057015042627381 ], [ -95.67233705041464, 29.057542042996634 ], [ -95.672624050556607, 29.058710042463851 ], [ -95.672572051022613, 29.059626042728585 ], [ -95.672494050064884, 29.060061042845721 ], [ -95.67179105041869, 29.061780043114595 ], [ -95.671661050418976, 29.062307043334606 ], [ -95.671714050273707, 29.063040044046481 ], [ -95.672132051053026, 29.064506043858948 ], [ -95.672262050642587, 29.064666044181163 ], [ -95.672549050385456, 29.065811044529468 ], [ -95.672576050847809, 29.066498044308382 ], [ -95.672941051217364, 29.067827045051871 ], [ -95.673124050777517, 29.068102044372225 ], [ -95.673516051483844, 29.069636045442966 ], [ -95.674039051590171, 29.072179045359366 ], [ -95.674834051583517, 29.073411045763557 ], [ -95.675265052008243, 29.074079045706696 ], [ -95.676257052555144, 29.075041046278447 ], [ -95.677352052908219, 29.075888046629277 ], [ -95.677378052507436, 29.075980045770571 ], [ -95.67766505223095, 29.076117046235289 ], [ -95.677979052203142, 29.077033045974851 ], [ -95.678110052703175, 29.077904046284569 ], [ -95.678527053092665, 29.078316046498035 ], [ -95.678684053172375, 29.078385046638932 ], [ -95.679127052927171, 29.078270047016272 ], [ -95.680743053261693, 29.077536046680574 ], [ -95.681343053213567, 29.077513046357144 ], [ -95.68196905395709, 29.077673046612098 ], [ -95.68251705364068, 29.078062046342264 ], [ -95.682699053574652, 29.078337046914541 ], [ -95.68274405382013, 29.078680046496121 ], [ -95.68404605377718, 29.078393046646351 ], [ -95.684302054400135, 29.078345046448273 ], [ -95.684478054582598, 29.078334046072108 ], [ -95.685157054159774, 29.078305046269126 ], [ -95.685552054313263, 29.078327046369697 ], [ -95.687597055010968, 29.078443046541448 ], [ -95.689162055816993, 29.07853604668701 ], [ -95.692050056369496, 29.078613045821129 ], [ -95.694253056681831, 29.078683046535584 ], [ -95.695102057292146, 29.078710045870739 ], [ -95.69761605761785, 29.078817046016624 ], [ -95.699659058663983, 29.078914046299541 ], [ -95.701704058651288, 29.079089046115378 ], [ -95.702469059439991, 29.079173046190736 ], [ -95.703258059424073, 29.079353046095292 ], [ -95.704252059383606, 29.079628046154895 ], [ -95.706021060049608, 29.080382046083852 ], [ -95.709381060685317, 29.081772046083572 ], [ -95.709875060839295, 29.081977046182363 ], [ -95.710214060596257, 29.082088046695102 ], [ -95.710574060808483, 29.082121046054031 ], [ -95.711382061039146, 29.082163046035831 ], [ -95.712479061538957, 29.082103046202633 ], [ -95.715324062380986, 29.081984046558027 ], [ -95.716790062686215, 29.081986046456656 ], [ -95.717185062468999, 29.081987045748765 ], [ -95.717636062740098, 29.081950045703067 ], [ -95.71783306319773, 29.081934046005259 ], [ -95.718435062961689, 29.08176604576024 ], [ -95.718833062801238, 29.081559045670595 ], [ -95.719076063043886, 29.081437046283092 ], [ -95.719793063068607, 29.080904045531195 ], [ -95.721633063500335, 29.079538045726927 ], [ -95.724091063951022, 29.07771104547723 ], [ -95.725636065209073, 29.076530045127605 ], [ -95.728525065365119, 29.07422004392286 ], [ -95.728715065735088, 29.074048044370148 ], [ -95.732342066528247, 29.070796043165423 ], [ -95.73312006628791, 29.07009404309045 ], [ -95.733753066592627, 29.06952304271579 ], [ -95.734500067068865, 29.068842042611678 ], [ -95.73454706717969, 29.068799042446035 ], [ -95.735360066682816, 29.06805604259263 ], [ -95.735603066922607, 29.067836042297451 ], [ -95.735696066560735, 29.067751043029507 ], [ -95.73551306710462, 29.067128042179945 ], [ -95.735446066948953, 29.066529042043296 ], [ -95.735479066647855, 29.065900042189703 ], [ -95.735480066392299, 29.065886042485278 ], [ -95.735669066909523, 29.064920042383818 ], [ -95.735689067251585, 29.06482004164566 ], [ -95.735881066466135, 29.063860041903702 ], [ -95.736024066569229, 29.062508041106206 ], [ -95.735977066347871, 29.061923041283656 ], [ -95.735929066717034, 29.061538040920571 ], [ -95.73587406645575, 29.061370041288246 ], [ -95.735774066429229, 29.061063041610069 ], [ -95.735646067029947, 29.060800041002107 ], [ -95.735609066363637, 29.06072404107244 ], [ -95.735326066772586, 29.060276041196971 ], [ -95.734935066092049, 29.059709040917465 ], [ -95.732935065486572, 29.056750040111844 ], [ -95.732528065789836, 29.056148040735522 ], [ -95.73129106559, 29.05428103978349 ], [ -95.730032064834262, 29.052381039816886 ], [ -95.729555064772313, 29.051662039619668 ], [ -95.728709064421878, 29.050473039517769 ], [ -95.728336064785267, 29.050083039079219 ], [ -95.728207064442699, 29.049951039097657 ], [ -95.727758063958404, 29.049694038894494 ], [ -95.727479064258574, 29.049524038742163 ], [ -95.727599064436589, 29.04937403916837 ], [ -95.729485064136085, 29.047559039029686 ], [ -95.730610065074814, 29.046523038786074 ], [ -95.732474065102778, 29.044806037614165 ], [ -95.734287065632202, 29.043111037698381 ], [ -95.73501206582813, 29.042436037476548 ], [ -95.735581065432726, 29.041921036877856 ], [ -95.736523066066155, 29.041045036767489 ], [ -95.737208065818947, 29.040510036652076 ], [ -95.738334066359528, 29.039817036867174 ], [ -95.73928906713617, 29.039227036464727 ], [ -95.740242067339167, 29.038622036360518 ], [ -95.74208106779345, 29.037452035964918 ], [ -95.74377506779885, 29.036385035957263 ], [ -95.743897068231178, 29.036308036097228 ], [ -95.745123068505038, 29.035565036058546 ], [ -95.745325067770608, 29.035442035666616 ], [ -95.745437068276431, 29.035339036011681 ], [ -95.745457067973703, 29.035320035234147 ], [ -95.745669067630217, 29.035106035779279 ], [ -95.745835068054632, 29.034836035340632 ], [ -95.74587206799383, 29.034716035600656 ], [ -95.745955068136155, 29.03445003573999 ], [ -95.746339067987208, 29.033459035460321 ], [ -95.746352068501992, 29.033430034875934 ], [ -95.748068068477096, 29.033128035437265 ], [ -95.750047069094407, 29.032792034652285 ], [ -95.75260206982945, 29.032335035070943 ], [ -95.753409069597168, 29.032198034850893 ], [ -95.755180070847487, 29.031888034329423 ], [ -95.758984071016968, 29.031240034200401 ], [ -95.763749072687645, 29.030423033831145 ], [ -95.767598073316989, 29.029746033752932 ], [ -95.771322074372691, 29.02911303365056 ], [ -95.774849074899663, 29.028509033372302 ], [ -95.779944076631537, 29.027545033033356 ], [ -95.779881076639271, 29.027489032870061 ], [ -95.779643076876511, 29.02734003279167 ], [ -95.779374075982233, 29.027208033058116 ], [ -95.779118076059333, 29.027065033278461 ], [ -95.778899075998837, 29.026889033040607 ], [ -95.778736076571022, 29.026724032738734 ], [ -95.778555075927244, 29.026510032745023 ], [ -95.778518076205813, 29.026263032247233 ], [ -95.778561076289705, 29.026098032688136 ], [ -95.778573075801077, 29.025946033026091 ], [ -95.778574075958133, 29.025933032398779 ], [ -95.778561076399043, 29.025849032354142 ], [ -95.778537075994549, 29.025702032889278 ], [ -95.778468076278898, 29.0254540326716 ], [ -95.778368075850707, 29.025251032458872 ], [ -95.778080076234076, 29.024998032421085 ], [ -95.77801207579715, 29.024806032553297 ], [ -95.778005076364934, 29.024558032519042 ], [ -95.778074076355423, 29.024311031892033 ], [ -95.778344075501437, 29.023162032405523 ], [ -95.778550075605182, 29.022816031774497 ], [ -95.778700075814768, 29.022618032232749 ], [ -95.778869076555466, 29.022437031622577 ], [ -95.779101076581426, 29.022255032292769 ], [ -95.779313076604865, 29.022112031815716 ], [ -95.779607076721661, 29.021997031558492 ], [ -95.77970107610787, 29.0219800321028 ], [ -95.779983076113709, 29.021992031789409 ], [ -95.780201075955858, 29.022025031786793 ], [ -95.780345076528903, 29.022107031804833 ], [ -95.780552076776672, 29.022294032071542 ], [ -95.78076407690989, 29.022426031433486 ], [ -95.780858076464511, 29.022437031547064 ], [ -95.781089076862742, 29.022377031408247 ], [ -95.781333076182648, 29.022250032178668 ], [ -95.781565077207347, 29.022107031899971 ], [ -95.781990076596543, 29.021739031887861 ], [ -95.782115077083461, 29.021574031769877 ], [ -95.78217207664828, 29.021354031647707 ], [ -95.782078076410031, 29.021019031756673 ], [ -95.78203407642998, 29.020876031006686 ], [ -95.781853076621232, 29.020645031492226 ], [ -95.781697077102422, 29.020513031020847 ], [ -95.781440077014437, 29.020354031803162 ], [ -95.780308076058645, 29.020018031282316 ], [ -95.779389076280978, 29.019694031283159 ], [ -95.778120075506848, 29.019017030751392 ], [ -95.777901075199352, 29.018929031173059 ], [ -95.777494075762519, 29.018814030798982 ], [ -95.777050075886606, 29.018742031207847 ], [ -95.776694075441469, 29.018665031290809 ], [ -95.776531075631027, 29.018582031422898 ], [ -95.776356075405204, 29.018450031583058 ], [ -95.776225075541504, 29.01827403125462 ], [ -95.776131075517213, 29.018099031323665 ], [ -95.776106075099278, 29.017895031242741 ], [ -95.776244075510931, 29.017670031355923 ], [ -95.77653207556169, 29.017499030845276 ], [ -95.776782075378463, 29.017412030951483 ], [ -95.777626075015291, 29.017461031335472 ], [ -95.77803307591337, 29.017467031253897 ], [ -95.778420075983107, 29.017434030635989 ], [ -95.778733076267756, 29.017357030928544 ], [ -95.77900807635298, 29.01721403122265 ], [ -95.779365076176319, 29.017055030344295 ], [ -95.77959607605662, 29.016928030300498 ], [ -95.779734076006818, 29.016802030830455 ], [ -95.77984007615882, 29.016659030793644 ], [ -95.779928076391997, 29.016522031090229 ], [ -95.779972075959208, 29.016313030461625 ], [ -95.779972075942325, 29.016203031009198 ], [ -95.779947075911394, 29.016071030913348 ], [ -95.779672076122367, 29.015169030349174 ], [ -95.779409075785239, 29.0145430305029 ], [ -95.779372075367448, 29.014422030498 ], [ -95.779353075332565, 29.014295030167517 ], [ -95.779353075886604, 29.014158030467787 ], [ -95.779441075814518, 29.013976030407793 ], [ -95.779603075821683, 29.013713030292845 ], [ -95.779860076371392, 29.013350030333591 ], [ -95.779948076078014, 29.013185030243012 ], [ -95.779960075912896, 29.01294903012661 ], [ -95.779923075771336, 29.012690029489896 ], [ -95.779791075674268, 29.012448030172141 ], [ -95.779598075608476, 29.012256029491976 ], [ -95.779291075231527, 29.011893030128057 ], [ -95.779210075723043, 29.0117720298188 ], [ -95.779123075540127, 29.011569029492684 ], [ -95.779116075991482, 29.011140029117715 ], [ -95.779173075769961, 29.01097502990114 ], [ -95.779260075788187, 29.01084802990006 ], [ -95.779461075708227, 29.010761029534645 ], [ -95.781037076530183, 29.010486029529257 ], [ -95.781687076320367, 29.01045902894721 ], [ -95.782375075955301, 29.010387029361603 ], [ -95.782688076253677, 29.010283028819725 ], [ -95.782994076813182, 29.010168029648373 ], [ -95.783307076920323, 29.01009102879237 ], [ -95.783807077282518, 29.010107029306219 ], [ -95.783901077187878, 29.010173029048012 ], [ -95.783963077175429, 29.010245029653039 ], [ -95.784032076741809, 29.010355029185266 ], [ -95.784063076862793, 29.010476028981774 ], [ -95.78405107725176, 29.010602028987673 ], [ -95.783951076513858, 29.010740029178173 ], [ -95.783751076693676, 29.010937029110426 ], [ -95.783719077101338, 29.01094802906708 ], [ -95.783519076870789, 29.011102029258808 ], [ -95.783381076638975, 29.011256029163956 ], [ -95.78332507650228, 29.01146502940006 ], [ -95.783319076989244, 29.01174002992898 ], [ -95.783325077228781, 29.012004029863931 ], [ -95.783381076620273, 29.012290029561893 ], [ -95.78351307661498, 29.012532029631199 ], [ -95.783719076774688, 29.012735029281576 ], [ -95.783944076693871, 29.012828030043273 ], [ -95.784269077426742, 29.012779029333892 ], [ -95.784551076613084, 29.012691029537034 ], [ -95.784794077368375, 29.012587029706935 ], [ -95.784976077167727, 29.01246002960378 ], [ -95.785164077217303, 29.012306029655285 ], [ -95.785282077629518, 29.012059029334939 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 712, "Tract": "48039662500", "Area_SqMi": 37.720896437424109, "total_2009": 1187, "total_2010": 404, "total_2011": 358, "total_2012": 365, "total_2013": 669, "total_2014": 588, "total_2015": 559, "total_2016": 637, "total_2017": 667, "total_2018": 435, "total_2019": 382, "total_2020": 372, "age1": 55, "age2": 224, "age3": 101, "earn1": 43, "earn2": 102, "earn3": 235, "naics_s01": 3, "naics_s02": 0, "naics_s03": 9, "naics_s04": 25, "naics_s05": 0, "naics_s06": 160, "naics_s07": 13, "naics_s08": 3, "naics_s09": 0, "naics_s10": 8, "naics_s11": 0, "naics_s12": 6, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 133, "naics_s17": 0, "naics_s18": 2, "naics_s19": 11, "naics_s20": 0, "race1": 296, "race2": 55, "race3": 8, "race4": 13, "race5": 1, "race6": 7, "ethnicity1": 268, "ethnicity2": 112, "edu1": 65, "edu2": 110, "edu3": 101, "edu4": 49, "Shape_Length": 164211.81629724242, "Shape_Area": 1051594032.7159098, "total_2021": 358, "total_2022": 380 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.622666040405377, 29.110759054868996 ], [ -95.622745040142632, 29.109533054440014 ], [ -95.622237040113617, 29.108305054963584 ], [ -95.620703038878787, 29.10687905428134 ], [ -95.619606039115197, 29.105907054117356 ], [ -95.617190038039041, 29.10473605395752 ], [ -95.614626037213341, 29.10375905362033 ], [ -95.613823037081289, 29.10285205360189 ], [ -95.613826037371055, 29.102142053912996 ], [ -95.614344037537194, 29.101304053571742 ], [ -95.61521903763628, 29.100008053397431 ], [ -95.616223037376429, 29.098974052688945 ], [ -95.616814038171455, 29.098159052351058 ], [ -95.616916037705963, 29.097212052926842 ], [ -95.616726037413514, 29.095963052572895 ], [ -95.616143037291806, 29.095229052361635 ], [ -95.615558037900584, 29.09475405205697 ], [ -95.61492303766785, 29.094493052064799 ], [ -95.613994037034828, 29.094404051879749 ], [ -95.612918036657163, 29.094443052001548 ], [ -95.611450035898216, 29.094481051996201 ], [ -95.609885035721504, 29.094475052259408 ], [ -95.608271036079572, 29.094340051896296 ], [ -95.606755034774366, 29.094292052426127 ], [ -95.605142034421675, 29.093941052131029 ], [ -95.603873033927471, 29.093420052309568 ], [ -95.602068033521846, 29.092338051565022 ], [ -95.597336032339129, 29.089737052009816 ], [ -95.594944032315425, 29.088652051451994 ], [ -95.594162031310191, 29.08864905110239 ], [ -95.593134031934127, 29.088775051948485 ], [ -95.592349031620643, 29.089202051845717 ], [ -95.591760031672194, 29.089630051549275 ], [ -95.591122030893729, 29.090015051990974 ], [ -95.590289030362044, 29.090313052155327 ], [ -95.589409030613993, 29.090224051718138 ], [ -95.588529029977479, 29.090092052308666 ], [ -95.587700029927305, 29.089658052026305 ], [ -95.587018029874955, 29.089096051383862 ], [ -95.585428029505067, 29.087830051268561 ], [ -95.584157028700545, 29.086691051546211 ], [ -95.582596028166279, 29.085151051550586 ], [ -95.580861028106696, 29.083610051287867 ], [ -95.579388027193318, 29.081994050231391 ], [ -95.577829027705874, 29.079994050194369 ], [ -95.575489026779394, 29.077607049987328 ], [ -95.574015026209764, 29.076221049441351 ], [ -95.573737026310923, 29.075842049643381 ], [ -95.572717025190343, 29.074452048962986 ], [ -95.570383025098465, 29.070685048383194 ], [ -95.569175024519026, 29.0684560483528 ], [ -95.568135023803919, 29.067301048242271 ], [ -95.566309023975379, 29.06660404823975 ], [ -95.563787023305537, 29.065827047934171 ], [ -95.563092022873775, 29.065440047989249 ], [ -95.56239902240155, 29.064747047656532 ], [ -95.562140022582525, 29.064133047549966 ], [ -95.561709022453854, 29.063287047022616 ], [ -95.561540022445726, 29.062290047301605 ], [ -95.561146022299326, 29.059776046381568 ], [ -95.561119022121559, 29.05960404633554 ], [ -95.56069202153715, 29.05791504606665 ], [ -95.559221021714436, 29.055991045830151 ], [ -95.557487020701586, 29.054450045257944 ], [ -95.557094020442705, 29.054264045708855 ], [ -95.556945020675954, 29.054193045109255 ], [ -95.556347020620507, 29.053913045178991 ], [ -95.556050020252627, 29.054359045788114 ], [ -95.555782020681292, 29.054772045978137 ], [ -95.555645020329337, 29.054986045757243 ], [ -95.555516020431014, 29.055188045753173 ], [ -95.5541140205153, 29.057487046364859 ], [ -95.553300019696536, 29.058785046421619 ], [ -95.55322102035376, 29.058912046787491 ], [ -95.552969019640315, 29.059317046335192 ], [ -95.552625020396334, 29.059889046464512 ], [ -95.552399020072684, 29.06026504666448 ], [ -95.550614019537605, 29.063242047952834 ], [ -95.549136019465408, 29.065656048394711 ], [ -95.548672019428068, 29.066323048198718 ], [ -95.548121018781814, 29.067047048928522 ], [ -95.547498018644077, 29.067720048383663 ], [ -95.54588201847875, 29.069080049125969 ], [ -95.540332017314768, 29.073579049660065 ], [ -95.53688501609507, 29.076383050829737 ], [ -95.534635016104616, 29.07820505106568 ], [ -95.532536016064768, 29.079924051564102 ], [ -95.525837014118679, 29.085311052691779 ], [ -95.521977013254428, 29.088433053303969 ], [ -95.521243012662026, 29.089026053441351 ], [ -95.521096013531846, 29.089160054302962 ], [ -95.518486012934986, 29.091317054582714 ], [ -95.518283012942959, 29.091482054785843 ], [ -95.511711010790009, 29.096765056208248 ], [ -95.508981010667597, 29.098972056790423 ], [ -95.508203010582875, 29.099604056251316 ], [ -95.507121010240965, 29.100479057156605 ], [ -95.494034007336296, 29.110979059406798 ], [ -95.49326700674392, 29.111709059660217 ], [ -95.492406007110731, 29.112596059780216 ], [ -95.491900006704583, 29.113158059951484 ], [ -95.491141006491347, 29.113972060259286 ], [ -95.490689006173469, 29.114522059984854 ], [ -95.490046005900652, 29.115241060414185 ], [ -95.481597004227339, 29.124169062612065 ], [ -95.480573003866738, 29.125270063057542 ], [ -95.480363003874572, 29.125487062517763 ], [ -95.480259004002789, 29.125621063139302 ], [ -95.480215003772486, 29.1256710631422 ], [ -95.479313003742405, 29.12669506324178 ], [ -95.4784430041923, 29.127593063654203 ], [ -95.477490003645173, 29.128456063600805 ], [ -95.475746003216429, 29.12986806413409 ], [ -95.474464003105226, 29.130696063927111 ], [ -95.473403002825293, 29.131424064208815 ], [ -95.461252999638234, 29.139356066024597 ], [ -95.456435998614467, 29.14253006705983 ], [ -95.454963998295241, 29.143454067093476 ], [ -95.453778997837134, 29.144234067134811 ], [ -95.453345998443311, 29.144474067214222 ], [ -95.453332998123912, 29.144481067584035 ], [ -95.453280998516121, 29.144513067375968 ], [ -95.453264997750338, 29.144523067114115 ], [ -95.45315199806204, 29.144591067141679 ], [ -95.45219899786207, 29.145168067676767 ], [ -95.451721997487397, 29.145484067536298 ], [ -95.450578997002651, 29.146240068180283 ], [ -95.450210997519889, 29.14648306814999 ], [ -95.450001997267663, 29.146619068486409 ], [ -95.449161996616013, 29.14716606821797 ], [ -95.44476499631169, 29.150053069093076 ], [ -95.444614996064743, 29.150141068857053 ], [ -95.440220995485532, 29.153036070137915 ], [ -95.436347994519082, 29.155588070650001 ], [ -95.435925994576266, 29.155864070382947 ], [ -95.435693993878743, 29.156089070787822 ], [ -95.435304994440486, 29.156336070608855 ], [ -95.434352994173508, 29.156909070795358 ], [ -95.432948992946976, 29.157819070533286 ], [ -95.432641993615633, 29.158039071037543 ], [ -95.432268992965689, 29.158294071259203 ], [ -95.432206993030931, 29.158336071329309 ], [ -95.431343992893446, 29.158838071573722 ], [ -95.431377992754449, 29.159408071438413 ], [ -95.431462992882913, 29.160418071315583 ], [ -95.431475993079502, 29.160946072031543 ], [ -95.431525993667321, 29.16140007221518 ], [ -95.431591993566599, 29.162428071872057 ], [ -95.431657993646482, 29.16346607206733 ], [ -95.431722993545577, 29.164469072625742 ], [ -95.432399993902735, 29.164439072541473 ], [ -95.432997993434299, 29.164414072637605 ], [ -95.43326299417744, 29.164395071914374 ], [ -95.433437994011058, 29.16438407235372 ], [ -95.433544993698675, 29.16437807221627 ], [ -95.433927993986444, 29.164358072315871 ], [ -95.434486993588962, 29.164337072559679 ], [ -95.434842993681542, 29.164304072581938 ], [ -95.435428994550591, 29.164243072003611 ], [ -95.435839993981546, 29.164152072342148 ], [ -95.435963994503808, 29.164132072098653 ], [ -95.436246994162119, 29.164084072189887 ], [ -95.436583994132306, 29.164019072163018 ], [ -95.43692599471359, 29.163968072235328 ], [ -95.437169995230462, 29.163946071842521 ], [ -95.437275994680846, 29.163937071918244 ], [ -95.437406994709008, 29.163925071781261 ], [ -95.43796799454212, 29.163905072430698 ], [ -95.438058995442844, 29.163902072219361 ], [ -95.438510995090439, 29.163905072012913 ], [ -95.439795995783655, 29.163891071803874 ], [ -95.440303996025975, 29.163886071637332 ], [ -95.443275996245859, 29.163875071778406 ], [ -95.44407599657157, 29.163862071857345 ], [ -95.444673996461148, 29.163847071853031 ], [ -95.445308996659264, 29.163840071845161 ], [ -95.44612799691312, 29.163827071945384 ], [ -95.449036997775821, 29.163808071754904 ], [ -95.449337997886815, 29.163802071322895 ], [ -95.4501569979126, 29.163801071293733 ], [ -95.45032599844231, 29.163805071280478 ], [ -95.450895997766693, 29.163790071767185 ], [ -95.451310998721581, 29.163758071892691 ], [ -95.451844998813883, 29.16371807177207 ], [ -95.452093998153714, 29.163693071849195 ], [ -95.452320998159692, 29.163657071435907 ], [ -95.452836999235757, 29.163584071881914 ], [ -95.452889999145981, 29.163575071844068 ], [ -95.453045998914433, 29.16353607182976 ], [ -95.453316999168308, 29.163475071599031 ], [ -95.453850999271907, 29.16335407162018 ], [ -95.454047998940567, 29.163310071107286 ], [ -95.45438999943876, 29.163225071572089 ], [ -95.454669999080664, 29.163141071438211 ], [ -95.454761999141866, 29.163116071123479 ], [ -95.454803998868016, 29.163105071366189 ], [ -95.455012999141033, 29.163051071336714 ], [ -95.455045999612324, 29.163043071062823 ], [ -95.455161999659737, 29.163013071530216 ], [ -95.455540999367599, 29.162915071057935 ], [ -95.456374999917045, 29.162700071065728 ], [ -95.456934999842403, 29.162556071528801 ], [ -95.45715299983469, 29.162501070820063 ], [ -95.457420000305788, 29.162434070979362 ], [ -95.457632999587801, 29.162380071255175 ], [ -95.458168000057242, 29.162247070700317 ], [ -95.458768999812946, 29.162087071074513 ], [ -95.458977000586657, 29.162034071103253 ], [ -95.460956000568814, 29.161533071026973 ], [ -95.461474000578349, 29.161403070469444 ], [ -95.461576000883809, 29.161377070956785 ], [ -95.465555002191252, 29.160368070180041 ], [ -95.46896300260218, 29.159497070366726 ], [ -95.47004300273754, 29.159225069685462 ], [ -95.470882002655827, 29.159006070415039 ], [ -95.471621003740509, 29.158884070112823 ], [ -95.472036003946812, 29.158845069661588 ], [ -95.474261003878453, 29.158637069684353 ], [ -95.475107004436296, 29.158566070026968 ], [ -95.475784004371903, 29.158510069397849 ], [ -95.475964004052358, 29.15849506986444 ], [ -95.476291004076998, 29.158460069739785 ], [ -95.476526004818027, 29.158439069629456 ], [ -95.476692004470834, 29.158425070041073 ], [ -95.4768020044379, 29.158414069324927 ], [ -95.477074004990257, 29.158387069627977 ], [ -95.477266005192902, 29.158359069379951 ], [ -95.477365004722671, 29.158345069939958 ], [ -95.477591004647778, 29.158330069682084 ], [ -95.477754004460508, 29.158320069847257 ], [ -95.47786400452874, 29.158308069828905 ], [ -95.478082005255743, 29.158284069916302 ], [ -95.478240004519392, 29.158266069861583 ], [ -95.478787005639319, 29.158229069825612 ], [ -95.482134005845893, 29.157907069687255 ], [ -95.482769006383421, 29.15784606981213 ], [ -95.483997006724564, 29.157735068949126 ], [ -95.484163006145451, 29.157714069269886 ], [ -95.484578006504691, 29.157676069059988 ], [ -95.487460007489901, 29.157409069363599 ], [ -95.487746007155479, 29.157375068882953 ], [ -95.487774007115846, 29.15737306920002 ], [ -95.489022007459042, 29.157265069236093 ], [ -95.490204008444422, 29.157146069059756 ], [ -95.490935008260294, 29.157081068519659 ], [ -95.491577008151836, 29.157019068464045 ], [ -95.491988008083226, 29.156971068481884 ], [ -95.492577009010489, 29.156870068660844 ], [ -95.492928008665331, 29.156796068501038 ], [ -95.492994008479741, 29.156779069011922 ], [ -95.493201008376232, 29.15672506919072 ], [ -95.493421008402692, 29.156667069125469 ], [ -95.493904009281607, 29.156516068590825 ], [ -95.49443900863352, 29.156312068314804 ], [ -95.495887009881926, 29.155568068803547 ], [ -95.49730900982928, 29.154781067926379 ], [ -95.499024010339681, 29.153843068181178 ], [ -95.500787010964856, 29.152860068115725 ], [ -95.501741011229811, 29.152344067816742 ], [ -95.50256101101786, 29.151896067071277 ], [ -95.503739011192593, 29.151253067125371 ], [ -95.504075011287853, 29.151058067648417 ], [ -95.504560011178725, 29.150839067012789 ], [ -95.50493001113324, 29.15069906694422 ], [ -95.506098011478088, 29.150312067035525 ], [ -95.508603012650468, 29.149683066969033 ], [ -95.512665013862105, 29.148538066483308 ], [ -95.520053015720194, 29.146410065670601 ], [ -95.52073801573043, 29.146300065723718 ], [ -95.521468015777614, 29.146169065584708 ], [ -95.521582015379352, 29.146162066032826 ], [ -95.521985015682674, 29.146107065946232 ], [ -95.523548015819102, 29.146098065825864 ], [ -95.527108016654225, 29.146115065788194 ], [ -95.527381017560884, 29.146116065634146 ], [ -95.534212019232939, 29.146158065536312 ], [ -95.534567019265509, 29.14616006509484 ], [ -95.535197019213825, 29.146165065688479 ], [ -95.536927019978407, 29.146166064886888 ], [ -95.539663020535471, 29.146197064989305 ], [ -95.539893020685838, 29.146184065256382 ], [ -95.540438020554731, 29.146176064946353 ], [ -95.540841020818448, 29.146137064934514 ], [ -95.54146502058677, 29.146042065225306 ], [ -95.544646021785397, 29.14533406435573 ], [ -95.546463021760843, 29.14493606437108 ], [ -95.549217022386514, 29.144354064845636 ], [ -95.5523090235057, 29.143701064120577 ], [ -95.555400024127735, 29.143047064005156 ], [ -95.556204024644927, 29.142878063820138 ], [ -95.556795024372619, 29.142759063426698 ], [ -95.557172024174335, 29.142684063742568 ], [ -95.558298025119683, 29.142460063923213 ], [ -95.558863025137981, 29.142435064074924 ], [ -95.559820025544553, 29.142406063408547 ], [ -95.559984025651914, 29.142407063398888 ], [ -95.560783025667845, 29.142412063246539 ], [ -95.562000026072695, 29.142479063982424 ], [ -95.566904027132466, 29.142746063445227 ], [ -95.569039027333332, 29.142817063593647 ], [ -95.569277027245235, 29.142825063395669 ], [ -95.569992028095228, 29.142838063775585 ], [ -95.570798027838862, 29.142730063486752 ], [ -95.572757028018344, 29.142279062955037 ], [ -95.57471702856121, 29.141829062693478 ], [ -95.575761028851204, 29.141622063387164 ], [ -95.576692029747065, 29.141464063338404 ], [ -95.578435029383186, 29.141169063082426 ], [ -95.580371030164869, 29.140931062439179 ], [ -95.582396031121377, 29.140768062713555 ], [ -95.588702032982226, 29.140470062158446 ], [ -95.590720033048925, 29.140389062534627 ], [ -95.595324033802896, 29.14020206250034 ], [ -95.596908034472705, 29.140138061635447 ], [ -95.59716503481522, 29.140183061815033 ], [ -95.597423035049914, 29.140227062455356 ], [ -95.597810034570841, 29.140294061754894 ], [ -95.598359034904092, 29.140425061602002 ], [ -95.598874035048865, 29.140549062293005 ], [ -95.603356036176976, 29.142956062834493 ], [ -95.603551036145362, 29.143062062556762 ], [ -95.60440503675693, 29.143526062404817 ], [ -95.60520003686679, 29.143985062746783 ], [ -95.605696037086929, 29.144271062456571 ], [ -95.606219037244045, 29.143754062788101 ], [ -95.606885037501769, 29.142723062457172 ], [ -95.607917036955513, 29.141694061534196 ], [ -95.610397037980675, 29.14081206184489 ], [ -95.612327038549964, 29.14061306173582 ], [ -95.614090039392863, 29.140361061437194 ], [ -95.614770038688121, 29.140095061313499 ], [ -95.61556103950511, 29.139785061341101 ], [ -95.61666703911628, 29.13882106132451 ], [ -95.617925039395914, 29.136501060466575 ], [ -95.618386039825424, 29.135348059917231 ], [ -95.619782040069467, 29.131860059406186 ], [ -95.620930040070419, 29.127777059077051 ], [ -95.621125039940779, 29.12708705895178 ], [ -95.621660040227184, 29.12244105783585 ], [ -95.621750039797476, 29.118697056620523 ], [ -95.621466039882122, 29.11650105668442 ], [ -95.622216039549429, 29.11308205565458 ], [ -95.622287040229963, 29.112710055696663 ], [ -95.622666040405377, 29.110759054868996 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 713, "Tract": "48039664100", "Area_SqMi": 78.962782951038548, "total_2009": 438, "total_2010": 476, "total_2011": 477, "total_2012": 475, "total_2013": 497, "total_2014": 566, "total_2015": 630, "total_2016": 601, "total_2017": 665, "total_2018": 673, "total_2019": 656, "total_2020": 558, "age1": 123, "age2": 369, "age3": 196, "earn1": 97, "earn2": 162, "earn3": 429, "naics_s01": 0, "naics_s02": 0, "naics_s03": 10, "naics_s04": 125, "naics_s05": 167, "naics_s06": 19, "naics_s07": 54, "naics_s08": 126, "naics_s09": 0, "naics_s10": 0, "naics_s11": 8, "naics_s12": 20, "naics_s13": 0, "naics_s14": 82, "naics_s15": 0, "naics_s16": 20, "naics_s17": 26, "naics_s18": 0, "naics_s19": 25, "naics_s20": 6, "race1": 566, "race2": 79, "race3": 7, "race4": 21, "race5": 3, "race6": 12, "ethnicity1": 477, "ethnicity2": 211, "edu1": 105, "edu2": 184, "edu3": 181, "edu4": 95, "Shape_Length": 332687.63545600645, "Shape_Area": 2201347242.5212636, "total_2021": 653, "total_2022": 688 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.431318993394115, 29.158416071086226 ], [ -95.431181993117832, 29.157223070485166 ], [ -95.431095993286988, 29.156647071228317 ], [ -95.431039993138299, 29.156146070391273 ], [ -95.430930993133316, 29.154617070285099 ], [ -95.43082499280878, 29.153811069784542 ], [ -95.430726992185441, 29.153263070500767 ], [ -95.430462992603438, 29.151994069680153 ], [ -95.430107992214857, 29.150393069099735 ], [ -95.429807991756121, 29.149078069113585 ], [ -95.429550991651439, 29.148025069355235 ], [ -95.429180992359662, 29.146296068273575 ], [ -95.429037992075337, 29.14568906867747 ], [ -95.428974991514281, 29.145423068776058 ], [ -95.428908991835357, 29.14512206891251 ], [ -95.428762992315754, 29.144498068091774 ], [ -95.428557991609651, 29.143598067722856 ], [ -95.428273991696159, 29.142337068265224 ], [ -95.428073991345414, 29.141465068037984 ], [ -95.427875991809017, 29.140461067611948 ], [ -95.427777990894072, 29.140127067654699 ], [ -95.42765499109808, 29.139644067779589 ], [ -95.427477991562938, 29.138793067413769 ], [ -95.427426991345683, 29.138589067368542 ], [ -95.427244991515366, 29.13786206684598 ], [ -95.427158991037203, 29.137469067134905 ], [ -95.426973991329447, 29.136625066816208 ], [ -95.426845990623704, 29.136051066442885 ], [ -95.42677799089897, 29.135750066341561 ], [ -95.426323990787409, 29.133674066581655 ], [ -95.426172990285608, 29.133095065984723 ], [ -95.426071990796942, 29.132606066038552 ], [ -95.425840990220422, 29.131636065764138 ], [ -95.425642990680899, 29.130643065564893 ], [ -95.425379990717659, 29.129662065358517 ], [ -95.425165990689109, 29.128684065363178 ], [ -95.424967989740594, 29.127705065318125 ], [ -95.42488498959348, 29.127394064672757 ], [ -95.42470498994642, 29.126713064853742 ], [ -95.424387990140133, 29.125715064575118 ], [ -95.424124989756649, 29.124582064239394 ], [ -95.42407898954616, 29.1243940643567 ], [ -95.423913989867131, 29.123716063990351 ], [ -95.423678989665021, 29.122717064237225 ], [ -95.423423988973653, 29.121725063750588 ], [ -95.422835989509338, 29.119531063290282 ], [ -95.421877988377929, 29.116216062591747 ], [ -95.421487988835466, 29.114854062622186 ], [ -95.421077988570318, 29.113420061839658 ], [ -95.420811988946681, 29.112553061743416 ], [ -95.420742988198995, 29.112264062141705 ], [ -95.419759988202301, 29.108967061045551 ], [ -95.419738987826662, 29.108893061211027 ], [ -95.419716988383769, 29.108820060943085 ], [ -95.419473987643215, 29.10798606137832 ], [ -95.419151987364003, 29.106883061193706 ], [ -95.418996987958892, 29.106353060682974 ], [ -95.41865998739479, 29.105199060131529 ], [ -95.418292987309272, 29.103864060088448 ], [ -95.417931987704321, 29.1025990604501 ], [ -95.417797986889497, 29.102170059811446 ], [ -95.417615986803725, 29.101515059959976 ], [ -95.416884986504897, 29.098951059554935 ], [ -95.41614698701926, 29.096367058593394 ], [ -95.41601398650856, 29.095872058919301 ], [ -95.415794986346341, 29.095152058981498 ], [ -95.415449986571829, 29.093917058142623 ], [ -95.415257986205205, 29.093227057970065 ], [ -95.41474698586363, 29.091430057431729 ], [ -95.414458985772555, 29.090479057529596 ], [ -95.414363986069361, 29.090131057850257 ], [ -95.414190985631507, 29.089494057659977 ], [ -95.41406298625165, 29.089046056984209 ], [ -95.413910985278704, 29.08851205680363 ], [ -95.413627985727771, 29.087514056800355 ], [ -95.413545985473249, 29.087263057367462 ], [ -95.413415985004633, 29.086791057016491 ], [ -95.41334798495329, 29.086542056937375 ], [ -95.413344985791383, 29.086532056550148 ], [ -95.413303984926458, 29.086385056932187 ], [ -95.413063985566637, 29.085517056472789 ], [ -95.412972984832365, 29.085237056464646 ], [ -95.412777985372784, 29.084549056844644 ], [ -95.412678984745298, 29.084216056338686 ], [ -95.412483984875095, 29.083507056017311 ], [ -95.412449985586974, 29.083394055990315 ], [ -95.412374985086586, 29.083139056344042 ], [ -95.412252985127353, 29.082730056443932 ], [ -95.412218985326817, 29.082615055798048 ], [ -95.412158984547716, 29.082377055840183 ], [ -95.41209198510802, 29.082106056203809 ], [ -95.412055984567758, 29.08196405585139 ], [ -95.412021985090192, 29.081829056202523 ], [ -95.411580985087397, 29.08035905583613 ], [ -95.411557985226779, 29.080281055242011 ], [ -95.411224984236924, 29.07909905546833 ], [ -95.411151984635069, 29.078840055426632 ], [ -95.410744984234142, 29.077392054898795 ], [ -95.410514984243747, 29.076642054634533 ], [ -95.410135984301775, 29.075344054621127 ], [ -95.409997983703391, 29.074853054574632 ], [ -95.40965798417983, 29.075147054776753 ], [ -95.40890098355024, 29.075824055026558 ], [ -95.407977983205981, 29.076730055143962 ], [ -95.40637898345976, 29.078668055268807 ], [ -95.406224983716896, 29.078872055899499 ], [ -95.406095983625875, 29.079060055544158 ], [ -95.405084983094952, 29.080381055432905 ], [ -95.402756982903, 29.083474056375376 ], [ -95.401068981892166, 29.085720056973479 ], [ -95.400471982577031, 29.086545057299041 ], [ -95.40018998242877, 29.08699205695148 ], [ -95.399791981959055, 29.08762805709992 ], [ -95.399722982407624, 29.087747057722041 ], [ -95.399651982216938, 29.08787005761965 ], [ -95.39943598145689, 29.088231057778604 ], [ -95.399292982402088, 29.088470057272211 ], [ -95.39910098155562, 29.088791058186491 ], [ -95.397872982163378, 29.090843058478026 ], [ -95.397056981561832, 29.092197058174214 ], [ -95.396725981323954, 29.092744058635592 ], [ -95.396565981892877, 29.093010058346778 ], [ -95.396507981011169, 29.093107058649746 ], [ -95.396442981863842, 29.093216058638451 ], [ -95.396117981705729, 29.093756058502521 ], [ -95.395819980874393, 29.094259059329392 ], [ -95.395475981548785, 29.094839059540814 ], [ -95.395072981011054, 29.095534058952651 ], [ -95.395040980693878, 29.095587059565418 ], [ -95.394654980571602, 29.096229059039505 ], [ -95.393632981087748, 29.097936060131772 ], [ -95.393535981297816, 29.098097059752284 ], [ -95.393360980915702, 29.098391059641113 ], [ -95.391677980078214, 29.10116606054298 ], [ -95.390494980044366, 29.103080061374794 ], [ -95.390166980298673, 29.103609061222883 ], [ -95.389449979964198, 29.104771061572162 ], [ -95.388103979700475, 29.106937061539995 ], [ -95.38704797973611, 29.10863806200198 ], [ -95.386828979893608, 29.108991061993571 ], [ -95.385508979736287, 29.11120906242002 ], [ -95.385099978868936, 29.111714063368051 ], [ -95.384611979010259, 29.112545063541575 ], [ -95.384476979524578, 29.112774063565265 ], [ -95.384378978912679, 29.112926063614804 ], [ -95.384341979331069, 29.112984062867532 ], [ -95.384250978625346, 29.113142063153223 ], [ -95.384176978694143, 29.113271063241687 ], [ -95.383160978782811, 29.114933063301514 ], [ -95.38222697882621, 29.116585063673931 ], [ -95.380993978684629, 29.118739064410864 ], [ -95.380878978211257, 29.11901806472958 ], [ -95.380679978080437, 29.118888065030404 ], [ -95.379848978235657, 29.118452064805481 ], [ -95.379074978428008, 29.117949064770126 ], [ -95.378758977563535, 29.117614064045171 ], [ -95.377371977026627, 29.1160800638628 ], [ -95.376747977324214, 29.115343063811903 ], [ -95.375686976971252, 29.114120064108693 ], [ -95.37521897727369, 29.113570063356182 ], [ -95.374935976401133, 29.113249063942945 ], [ -95.374822976846289, 29.113120063159705 ], [ -95.374738976494427, 29.113019063250754 ], [ -95.374582976942904, 29.112830063166498 ], [ -95.374511976428565, 29.112752063116982 ], [ -95.374166976182011, 29.112373063192713 ], [ -95.373756976160038, 29.11188906356038 ], [ -95.373379976633743, 29.111462063339239 ], [ -95.372758975880771, 29.110753063451259 ], [ -95.372318976292874, 29.110250063396332 ], [ -95.372302975954, 29.110227063521201 ], [ -95.372072976207903, 29.109893062721167 ], [ -95.371894975626319, 29.109520063273504 ], [ -95.371803975570856, 29.109309062775559 ], [ -95.371698975736024, 29.108779062540687 ], [ -95.371675976107554, 29.108504062453935 ], [ -95.371690976024297, 29.106237061900089 ], [ -95.371699975854611, 29.105602062320212 ], [ -95.371736975787897, 29.103013061392605 ], [ -95.371763975503981, 29.099801061017565 ], [ -95.371784975723557, 29.098368060686891 ], [ -95.371771975101822, 29.098123060278507 ], [ -95.371734975391902, 29.097929060598865 ], [ -95.37162097498225, 29.097577060396439 ], [ -95.371045975107819, 29.096169060575921 ], [ -95.37052597452319, 29.094924059909768 ], [ -95.368096973721961, 29.088943058697655 ], [ -95.367709973486939, 29.087991058768914 ], [ -95.367127973806717, 29.086596058265609 ], [ -95.366731973127855, 29.085584058109603 ], [ -95.366083972824939, 29.083828057737765 ], [ -95.366057973563855, 29.083757057795008 ], [ -95.365817973101827, 29.08300605727209 ], [ -95.365674973307208, 29.082600057281208 ], [ -95.364907972670608, 29.08040905673084 ], [ -95.364537972936461, 29.079352057271905 ], [ -95.364319972455903, 29.078927057101417 ], [ -95.364020972503809, 29.07848405680582 ], [ -95.363864972124048, 29.078223057004625 ], [ -95.363766972660002, 29.078091056828828 ], [ -95.363310972447778, 29.077394056290458 ], [ -95.361576971440741, 29.074812056093016 ], [ -95.360454971648537, 29.073120055380233 ], [ -95.360327970812165, 29.072807055839011 ], [ -95.360238971488954, 29.072197055240238 ], [ -95.360156970637561, 29.070254055603918 ], [ -95.360120971509033, 29.069110055153949 ], [ -95.360109970996632, 29.068742054713407 ], [ -95.360085971076046, 29.068194054953867 ], [ -95.360054970997155, 29.06753205500614 ], [ -95.359970971260154, 29.067114054358331 ], [ -95.359956970838283, 29.067058054867449 ], [ -95.359942970544481, 29.067008054337009 ], [ -95.359850971032301, 29.066856054931229 ], [ -95.359580970401879, 29.066550054423132 ], [ -95.359303971285669, 29.066279053944221 ], [ -95.359000970482342, 29.065991054398093 ], [ -95.358823970151406, 29.065817054239822 ], [ -95.358652970326702, 29.065649054484474 ], [ -95.356576969539006, 29.061332053116661 ], [ -95.355362969121003, 29.062459053490819 ], [ -95.351341968050392, 29.058566053294395 ], [ -95.350916968079275, 29.058120053151377 ], [ -95.349853967845817, 29.057004053115914 ], [ -95.348830967999007, 29.055905053012967 ], [ -95.348754967649029, 29.055822052161247 ], [ -95.347346966827345, 29.054273051937141 ], [ -95.344905966727779, 29.051648051378276 ], [ -95.343234966120662, 29.049825051714713 ], [ -95.341822965845793, 29.048312051626247 ], [ -95.341055965557416, 29.047462051247116 ], [ -95.340988965789592, 29.047387050714669 ], [ -95.34085696510347, 29.047241050579643 ], [ -95.34048696526969, 29.046831051157486 ], [ -95.339858964764659, 29.046113050858256 ], [ -95.33883896499664, 29.044999050960051 ], [ -95.336547964328787, 29.042463050015559 ], [ -95.336179963700559, 29.042018050098797 ], [ -95.336065963752361, 29.041808050053156 ], [ -95.333656962961342, 29.038061049726927 ], [ -95.333590963324767, 29.037965049497274 ], [ -95.332361962344294, 29.036042048740637 ], [ -95.332105962705924, 29.035663049116302 ], [ -95.331700962295159, 29.035027049150727 ], [ -95.329966961527916, 29.032335048108621 ], [ -95.329447961464268, 29.031555047870228 ], [ -95.329287961801953, 29.031336047690914 ], [ -95.32921996187946, 29.031243048472529 ], [ -95.328952961225099, 29.030927048234513 ], [ -95.328397961355293, 29.030314047889405 ], [ -95.328143961549443, 29.029987047638265 ], [ -95.327913961687827, 29.0296010477294 ], [ -95.32776296133396, 29.029261047736842 ], [ -95.327643960721048, 29.028913047515854 ], [ -95.327570961197338, 29.028542047486749 ], [ -95.327528961198666, 29.028114047160692 ], [ -95.327521960613794, 29.027767047018994 ], [ -95.327540960866813, 29.027496047279037 ], [ -95.327604960670627, 29.027175047621007 ], [ -95.327725961462605, 29.026767047225807 ], [ -95.327964961312574, 29.026111047446534 ], [ -95.328287960990622, 29.02512604642369 ], [ -95.328557961376475, 29.024373046450972 ], [ -95.328657961435084, 29.023888046512209 ], [ -95.328705961470249, 29.023127046448547 ], [ -95.328708961613955, 29.022854046761712 ], [ -95.328688960970666, 29.02236804583573 ], [ -95.328682960854493, 29.02201404605491 ], [ -95.328618961263757, 29.021013045922629 ], [ -95.328582960563608, 29.019634045653248 ], [ -95.328586960790503, 29.018639045280541 ], [ -95.328576960605304, 29.018526045324403 ], [ -95.32855596094565, 29.01757504554881 ], [ -95.328515960358885, 29.016436044611574 ], [ -95.328495961255314, 29.016050045326015 ], [ -95.328469960861071, 29.015560045270924 ], [ -95.328422960879365, 29.01489004445876 ], [ -95.328420960963882, 29.014861044955854 ], [ -95.328367960315674, 29.014265044303951 ], [ -95.328319960860114, 29.01353704413064 ], [ -95.328316960459759, 29.012718044636461 ], [ -95.328324960265917, 29.012268043977677 ], [ -95.328329960191596, 29.011969043951503 ], [ -95.327962960940098, 29.011619043744989 ], [ -95.327622960643453, 29.01128404387293 ], [ -95.327492960035457, 29.011042044041826 ], [ -95.32738295982945, 29.010994044113691 ], [ -95.32526695978963, 29.008105043017661 ], [ -95.324553959390215, 29.007469043370126 ], [ -95.323838959384702, 29.007211042935197 ], [ -95.321399959038359, 29.007069043254312 ], [ -95.319383958330349, 29.007815043918971 ], [ -95.317229957510094, 29.007928043733067 ], [ -95.316944957291398, 29.00767404341806 ], [ -95.316706957502873, 29.007642043239944 ], [ -95.316343956992014, 29.007877043307122 ], [ -95.316149957557442, 29.007795043652756 ], [ -95.316046957683142, 29.007717043163773 ], [ -95.315895957500601, 29.007620043514333 ], [ -95.315729957499073, 29.00753504335205 ], [ -95.315610957160018, 29.007452043774155 ], [ -95.315503957325788, 29.007379043638831 ], [ -95.31532295672514, 29.00727104313243 ], [ -95.315221956826193, 29.007208043099926 ], [ -95.315078956981026, 29.00710704358335 ], [ -95.314955957433114, 29.007046043763264 ], [ -95.31482795699408, 29.006954043311953 ], [ -95.314622956386813, 29.006825043206579 ], [ -95.314438956599659, 29.006715043510575 ], [ -95.31435695655226, 29.006647043321642 ], [ -95.314227956559762, 29.006577043593399 ], [ -95.314083956950526, 29.006485043167444 ], [ -95.313928956254074, 29.006363043031605 ], [ -95.313785956962349, 29.006238043141849 ], [ -95.313643956380304, 29.006088043562148 ], [ -95.313543956445969, 29.005992043056633 ], [ -95.313458956840861, 29.005926043682347 ], [ -95.313331956951146, 29.00581504309605 ], [ -95.313218955956927, 29.005718043657563 ], [ -95.313112956126503, 29.005636043098455 ], [ -95.312969956295106, 29.005519042803702 ], [ -95.312883955950625, 29.005390042809076 ], [ -95.312767956421965, 29.005222042765716 ], [ -95.312679956602253, 29.005117042999064 ], [ -95.312596956095334, 29.00499404287217 ], [ -95.312480955959899, 29.004914043148581 ], [ -95.312337956103704, 29.004835043374069 ], [ -95.312141956318001, 29.004764043165327 ], [ -95.311900956117654, 29.00469104270622 ], [ -95.311738956072816, 29.004665042847748 ], [ -95.311480955906475, 29.004628042986941 ], [ -95.31129795626785, 29.004575043539759 ], [ -95.311188955566124, 29.00453904300786 ], [ -95.311096955470788, 29.00450704296161 ], [ -95.310982955805429, 29.004454043034272 ], [ -95.310926956213436, 29.004447043121434 ], [ -95.310851956202441, 29.004428043428042 ], [ -95.31074695531251, 29.004403042968391 ], [ -95.310612955840313, 29.004372043294435 ], [ -95.310457955376805, 29.004324042666664 ], [ -95.310315955668813, 29.004284042882293 ], [ -95.31015095511853, 29.00426604323178 ], [ -95.310016955299687, 29.004218043340448 ], [ -95.30982595536338, 29.004147042946816 ], [ -95.309670955515159, 29.004098042909586 ], [ -95.309480955258664, 29.004057043391093 ], [ -95.309099955631297, 29.00396404324664 ], [ -95.309031955305571, 29.00395404261711 ], [ -95.308979954878609, 29.00394104275712 ], [ -95.308919955286584, 29.003921042691697 ], [ -95.308839955398113, 29.003891043370711 ], [ -95.308788955082406, 29.003870042649076 ], [ -95.30867395493253, 29.003817042712278 ], [ -95.30859595494131, 29.00379604272614 ], [ -95.308521954899035, 29.003772042694298 ], [ -95.308468955174177, 29.003751043224216 ], [ -95.308413954977055, 29.003730043273436 ], [ -95.308347954951373, 29.003704043432293 ], [ -95.308246955150267, 29.003672043428082 ], [ -95.308137955565968, 29.003646043324348 ], [ -95.308045955026856, 29.003610042632399 ], [ -95.307361955052727, 29.00356604319466 ], [ -95.306353954159576, 29.004065042780738 ], [ -95.304769953852158, 29.004307043542109 ], [ -95.302199953968454, 29.003027042785828 ], [ -95.301344953233823, 29.002262042711742 ], [ -95.300796952793547, 29.000268042410159 ], [ -95.300293953288303, 28.998439041961333 ], [ -95.299673952611101, 28.99618204214822 ], [ -95.298395951720337, 28.994529041379547 ], [ -95.297405952125018, 28.992752041311078 ], [ -95.295268951025378, 28.990968040412305 ], [ -95.292970950941793, 28.989812040287262 ], [ -95.291550950431855, 28.98942604019522 ], [ -95.289978949905858, 28.988657040737987 ], [ -95.287267948842043, 28.986742040492679 ], [ -95.286130949126644, 28.985470040062609 ], [ -95.285581948951119, 28.982558039276462 ], [ -95.283456947684584, 28.979382039113478 ], [ -95.281359947383322, 28.97774003874656 ], [ -95.281175947258433, 28.977596038793482 ], [ -95.280756946734641, 28.976329038073548 ], [ -95.280106946889987, 28.975509038341414 ], [ -95.279884946211055, 28.975229037744654 ], [ -95.279822946286004, 28.975151037849418 ], [ -95.279548946621944, 28.974993037996732 ], [ -95.275861945639704, 28.978193038925244 ], [ -95.275429946180992, 28.978453039043057 ], [ -95.273928945452042, 28.979597039381538 ], [ -95.271034944807269, 28.981334039710795 ], [ -95.267870944130451, 28.982961039591959 ], [ -95.265350943604318, 28.984062039984568 ], [ -95.262321942328228, 28.98571704117127 ], [ -95.260051941966211, 28.98801904135151 ], [ -95.259974942443009, 28.988097041195292 ], [ -95.258150941411429, 28.990216041605635 ], [ -95.258120942029521, 28.99025004214149 ], [ -95.254639941136702, 28.994759042717416 ], [ -95.253081941073361, 28.996828043372485 ], [ -95.251159940419655, 28.999182043453946 ], [ -95.250221939803112, 29.000250044063435 ], [ -95.249935939644431, 29.00066004461755 ], [ -95.243763938762868, 29.008678046415842 ], [ -95.237991937658038, 29.016479047595549 ], [ -95.235717936859928, 29.019150048433541 ], [ -95.234755936951501, 29.020464049195972 ], [ -95.233942937028374, 29.021868049322745 ], [ -95.232873936133686, 29.023887049619365 ], [ -95.23195393613625, 29.025995049807243 ], [ -95.231288935939702, 29.027951050340778 ], [ -95.228312935583716, 29.035836052292158 ], [ -95.224217935495403, 29.045894054399167 ], [ -95.219117934192695, 29.056340056759002 ], [ -95.212402933030987, 29.070025059661049 ], [ -95.208397932387655, 29.078466061778478 ], [ -95.206716931870744, 29.081795062056955 ], [ -95.205298931997959, 29.084601062690655 ], [ -95.204656931884188, 29.086934063897118 ], [ -95.202073931424053, 29.099682066734633 ], [ -95.202000931760637, 29.100041066390094 ], [ -95.201994932168958, 29.100073066101427 ], [ -95.202365931584424, 29.100286066416846 ], [ -95.202732931913005, 29.10007806677708 ], [ -95.203062932464888, 29.099892065956251 ], [ -95.203973931851081, 29.099203066392477 ], [ -95.204433932047678, 29.09915606608849 ], [ -95.205511932793812, 29.09868906586513 ], [ -95.206419932422534, 29.097548065964045 ], [ -95.206971932817737, 29.096614065638448 ], [ -95.208285933515469, 29.095137065609428 ], [ -95.208484933784987, 29.094934065166541 ], [ -95.208930933755454, 29.094788064835345 ], [ -95.208960933542713, 29.094784064838272 ], [ -95.209038933937464, 29.094696065528659 ], [ -95.209098933014374, 29.094671065496442 ], [ -95.209635933798225, 29.094441064844855 ], [ -95.210384933798466, 29.094282065297577 ], [ -95.211123933940442, 29.09419906462103 ], [ -95.211993934148921, 29.094101064572428 ], [ -95.212863934518111, 29.094003065210174 ], [ -95.21400393420538, 29.093656064432963 ], [ -95.214323934314876, 29.093581064520034 ], [ -95.214406935251546, 29.093533064480532 ], [ -95.214856935113446, 29.093396064693717 ], [ -95.217089934944369, 29.09206906416949 ], [ -95.217444935570526, 29.091920064190369 ], [ -95.217505935213921, 29.091902064022172 ], [ -95.218100935567634, 29.09164306400854 ], [ -95.218150935252396, 29.091622064242102 ], [ -95.218664935429189, 29.091147064071336 ], [ -95.218906935930733, 29.090933064385123 ], [ -95.22061393673107, 29.08942506337544 ], [ -95.22078493664435, 29.089274063909482 ], [ -95.223812936793436, 29.087211062622995 ], [ -95.224036937436665, 29.087117063132087 ], [ -95.225112937482393, 29.086666063106062 ], [ -95.227571937636867, 29.085633062378157 ], [ -95.227601937471235, 29.085461062660478 ], [ -95.227669937690095, 29.085088062426038 ], [ -95.227828937585826, 29.083446061748621 ], [ -95.226689937281989, 29.082300061911376 ], [ -95.224105936511805, 29.082155062425421 ], [ -95.223532937026746, 29.081898062288786 ], [ -95.222250936429319, 29.080751061371299 ], [ -95.222109935735233, 29.080497061654622 ], [ -95.222270936442285, 29.078601061542912 ], [ -95.223145936452255, 29.077217060799633 ], [ -95.223848936282934, 29.076608061181393 ], [ -95.225752937218601, 29.074960060877171 ], [ -95.227193937371695, 29.074464059890026 ], [ -95.230356937826997, 29.074108060134087 ], [ -95.231797937913569, 29.073612059903692 ], [ -95.238405940194838, 29.073659059551268 ], [ -95.240685940982289, 29.0756980605567 ], [ -95.241250940565791, 29.076713060299642 ], [ -95.241535941135282, 29.076968060246994 ], [ -95.241517941152196, 29.078991060898833 ], [ -95.239924940473344, 29.080371060784216 ], [ -95.239630940931576, 29.080420060846418 ], [ -95.239204940365696, 29.080492061492027 ], [ -95.238770940091598, 29.080868061583139 ], [ -95.238186940483899, 29.08187606106566 ], [ -95.238177940349317, 29.082887062078498 ], [ -95.238744940810747, 29.083776061985713 ], [ -95.239604941163904, 29.084546061926719 ], [ -95.239939941269455, 29.084845061756337 ], [ -95.240026940655369, 29.084923061834466 ], [ -95.241459941184843, 29.085312062127361 ], [ -95.243039942263536, 29.08532406161908 ], [ -95.243466941737296, 29.085065062148676 ], [ -95.243883942270628, 29.084812061802722 ], [ -95.244484942388667, 29.084449061525287 ], [ -95.245063942727143, 29.083947061467214 ], [ -95.245070941833859, 29.083188061428782 ], [ -95.245507942118934, 29.082559061552665 ], [ -95.24767694310647, 29.080931061189943 ], [ -95.248830943020153, 29.080433060811753 ], [ -95.250267943204008, 29.080443060393758 ], [ -95.25154994381883, 29.08159006088378 ], [ -95.251539943385538, 29.082728060781452 ], [ -95.250377943356213, 29.084110061708291 ], [ -95.249653943799728, 29.084738061774672 ], [ -95.249222942868116, 29.08473506177349 ], [ -95.248646943232814, 29.085046062103917 ], [ -95.248178943329989, 29.0853000616789 ], [ -95.248068942942339, 29.08535906202907 ], [ -95.246183942335747, 29.087242062776156 ], [ -95.246306942997222, 29.089519062755592 ], [ -95.246872942763574, 29.090534063014086 ], [ -95.247869943436413, 29.091426062944709 ], [ -95.250383944181692, 29.091507063143915 ], [ -95.251179944220326, 29.090817062932047 ], [ -95.251472944637001, 29.090187063095588 ], [ -95.25321094493745, 29.08868206246553 ], [ -95.257688945490841, 29.085931062076892 ], [ -95.25854894543879, 29.085560061319189 ], [ -95.259310945817575, 29.085230061493267 ], [ -95.259419945690297, 29.085184061273544 ], [ -95.263871947245818, 29.085341061039884 ], [ -95.264488946877222, 29.085075061722176 ], [ -95.265025946976479, 29.084843061192995 ], [ -95.265604947648384, 29.08434106126116 ], [ -95.266043947415127, 29.083459061077583 ], [ -95.266055947554406, 29.082069060878052 ], [ -95.265772947928951, 29.081561060989685 ], [ -95.265645947774658, 29.079664059742534 ], [ -95.266394947050216, 29.076129059453958 ], [ -95.266997947473072, 29.074780059313603 ], [ -95.267127947032662, 29.074490059238574 ], [ -95.268285947565076, 29.073486058948657 ], [ -95.26894594751171, 29.073243058470247 ], [ -95.269294948304662, 29.073114058841401 ], [ -95.272599948950699, 29.073010058535143 ], [ -95.273881949649976, 29.074156058365805 ], [ -95.274302948914922, 29.075297058803656 ], [ -95.275015949701185, 29.075934059131441 ], [ -95.277448950240199, 29.076962059300897 ], [ -95.278161950666615, 29.077599058978592 ], [ -95.278718950476787, 29.079625059442922 ], [ -95.279431951298307, 29.080262059596869 ], [ -95.281008951202026, 29.080652060081999 ], [ -95.283736951958332, 29.08079705981168 ], [ -95.284021952128299, 29.081051059940044 ], [ -95.285170952886418, 29.08118605973409 ], [ -95.286600952716654, 29.08195406001261 ], [ -95.287454953374862, 29.082844059983469 ], [ -95.287584953140183, 29.084489060231981 ], [ -95.287561953350107, 29.084566060819398 ], [ -95.287436953412339, 29.084993060792424 ], [ -95.286131952906757, 29.086376060984271 ], [ -95.28612095293839, 29.086379060985958 ], [ -95.284690952681729, 29.086872061486254 ], [ -95.283828952467502, 29.086866060931612 ], [ -95.282925951829256, 29.086554061072828 ], [ -95.2820549521212, 29.086022060948306 ], [ -95.28138895172404, 29.085427060789819 ], [ -95.280590951723795, 29.085011060866893 ], [ -95.280065951279383, 29.084892060545684 ], [ -95.279146950979481, 29.084886061119164 ], [ -95.278444951043511, 29.085061060750736 ], [ -95.277844950290103, 29.085301060505731 ], [ -95.277170950186246, 29.085630061069658 ], [ -95.276848950964819, 29.085833061513398 ], [ -95.276486949947582, 29.086295061404773 ], [ -95.276473950560487, 29.0863270612011 ], [ -95.276303950358894, 29.08675406152167 ], [ -95.276143950818422, 29.087275061705068 ], [ -95.276137950183269, 29.08800106123336 ], [ -95.276339949941715, 29.088478061931401 ], [ -95.276644950622241, 29.088957061590023 ], [ -95.277002950801887, 29.08932206168614 ], [ -95.277322950483722, 29.089551061447491 ], [ -95.277707951181213, 29.089735061891513 ], [ -95.278248950950186, 29.08981806149999 ], [ -95.278750951093656, 29.089798061825498 ], [ -95.279306950760699, 29.089655061546431 ], [ -95.279662951414835, 29.089398062136901 ], [ -95.279786951853708, 29.089337062068495 ], [ -95.279861950918487, 29.08929206212451 ], [ -95.279928951673469, 29.089242061902013 ], [ -95.28108695214901, 29.088239061530718 ], [ -95.281824952087717, 29.087920061532159 ], [ -95.282888951693181, 29.087619061088247 ], [ -95.28324995239403, 29.087368061205655 ], [ -95.284482952504604, 29.088593061668053 ], [ -95.284531952688141, 29.088641061558253 ], [ -95.284523952962587, 29.089652061371439 ], [ -95.282929952026606, 29.091159061934999 ], [ -95.282491952358953, 29.092041061735038 ], [ -95.28262495189027, 29.093180062585599 ], [ -95.283114952906701, 29.093882062325733 ], [ -95.283274952549192, 29.094110062911671 ], [ -95.283334952880679, 29.094196062898469 ], [ -95.283740952457748, 29.094558063013828 ], [ -95.284583953263407, 29.095552062929332 ], [ -95.284756953190865, 29.095630063122108 ], [ -95.285585952634023, 29.09600606301716 ], [ -95.286469953457441, 29.096271063273793 ], [ -95.286845953835041, 29.09624206328203 ], [ -95.287771953430649, 29.096248062882722 ], [ -95.289355954036182, 29.095879062345436 ], [ -95.289493953970393, 29.095811063130427 ], [ -95.289681953711977, 29.09577106278967 ], [ -95.29064095486433, 29.09527006292307 ], [ -95.291655954492811, 29.09476606279939 ], [ -95.295310954987357, 29.09302006210017 ], [ -95.296715955396365, 29.092795061956402 ], [ -95.297139956279125, 29.092958061799933 ], [ -95.297436955670307, 29.092999061510113 ], [ -95.298716956904983, 29.093584061959994 ], [ -95.299603956257371, 29.094480061860459 ], [ -95.299932956487112, 29.094962062199581 ], [ -95.300102957272813, 29.095801062661032 ], [ -95.300089956826838, 29.096585062818498 ], [ -95.300152956406222, 29.097096062629284 ], [ -95.299945956815151, 29.097715062483843 ], [ -95.29980495737189, 29.098318062966712 ], [ -95.299578956653193, 29.098378062571427 ], [ -95.299178956270737, 29.098622062906866 ], [ -95.298383957007886, 29.099331063325135 ], [ -95.298151956611676, 29.099825062954682 ], [ -95.297922956293036, 29.100162063684131 ], [ -95.29814995620994, 29.100620063463357 ], [ -95.298652956710839, 29.100934063061608 ], [ -95.299199956899457, 29.101246063651399 ], [ -95.299609957116601, 29.101606063904203 ], [ -95.299654956605082, 29.102006063660991 ], [ -95.2996549570545, 29.102458063618659 ], [ -95.299215957332777, 29.102666064035759 ], [ -95.298635956639515, 29.103055063893542 ], [ -95.297850956848819, 29.103716064152508 ], [ -95.297415956961075, 29.104324063891163 ], [ -95.297021956069941, 29.104938064295204 ], [ -95.296883956695922, 29.105025064390698 ], [ -95.296776956469117, 29.105114064204873 ], [ -95.296882956639962, 29.105470064496334 ], [ -95.297076956023744, 29.106087064434305 ], [ -95.297095956680678, 29.106214064866929 ], [ -95.297093956234804, 29.106250064870455 ], [ -95.297229956858985, 29.106686064949958 ], [ -95.297299957008946, 29.106818065208007 ], [ -95.297161956623995, 29.108322065524007 ], [ -95.29694095689959, 29.108668065314983 ], [ -95.296590956613841, 29.109105065208393 ], [ -95.296505956794519, 29.109360065409255 ], [ -95.296410956392265, 29.109443065779718 ], [ -95.296213956667728, 29.110416065563527 ], [ -95.296306956190492, 29.111055065888447 ], [ -95.296347956874058, 29.111336066099341 ], [ -95.296561956272782, 29.111660065980729 ], [ -95.29716995653861, 29.11179606580982 ], [ -95.297619957210685, 29.11183506618864 ], [ -95.298324957396375, 29.111776066188941 ], [ -95.298648956651178, 29.111698065396421 ], [ -95.299229957192509, 29.111450065493472 ], [ -95.299487957141977, 29.111301065340506 ], [ -95.300185957241311, 29.110986065603864 ], [ -95.300976957489269, 29.110953065937597 ], [ -95.302041957902205, 29.111305065596895 ], [ -95.302727958176618, 29.111481065824066 ], [ -95.30337495861356, 29.111886066055824 ], [ -95.304653958528377, 29.112374065290119 ], [ -95.305432958583779, 29.11281406554572 ], [ -95.30659295938338, 29.114019065673297 ], [ -95.306981959824554, 29.114705065893268 ], [ -95.307306959953593, 29.115192065866964 ], [ -95.307291959058048, 29.115910066278019 ], [ -95.30724595924984, 29.116714066730331 ], [ -95.30733695938784, 29.117725066269045 ], [ -95.307489960007786, 29.11904906700072 ], [ -95.307316959435695, 29.119298066748488 ], [ -95.307176959499174, 29.119390066989791 ], [ -95.306887959609909, 29.119455067497576 ], [ -95.306422959863838, 29.119390066797667 ], [ -95.305763959213067, 29.118926067316146 ], [ -95.304450959062791, 29.11834406658437 ], [ -95.304083958750809, 29.118421066980208 ], [ -95.303981958450763, 29.118647066918154 ], [ -95.304072958728554, 29.11914706709527 ], [ -95.304111959000608, 29.119274066946495 ], [ -95.304162958875864, 29.11943806750423 ], [ -95.304117958575134, 29.12129606724195 ], [ -95.303797958474689, 29.121391067930947 ], [ -95.303314958779538, 29.121425067577398 ], [ -95.302716959041362, 29.121482067397089 ], [ -95.302286958774644, 29.121605067591066 ], [ -95.301431957812213, 29.122044068141644 ], [ -95.300973958593829, 29.122634068012825 ], [ -95.301226958434114, 29.127922069020585 ], [ -95.30138595873207, 29.128783068794313 ], [ -95.301699958372978, 29.129564069224944 ], [ -95.302267959076616, 29.130220069131777 ], [ -95.302457958556232, 29.130425069818578 ], [ -95.303035958907785, 29.130713069835039 ], [ -95.304036959372766, 29.130914069276038 ], [ -95.304953959476194, 29.130836069351069 ], [ -95.305701959578926, 29.13073906987389 ], [ -95.306268960048897, 29.130771069531487 ], [ -95.306634960496339, 29.131171069269453 ], [ -95.306680960301435, 29.13167106954992 ], [ -95.30623496025224, 29.132094069788447 ], [ -95.305586959757875, 29.132548069680837 ], [ -95.305247959399551, 29.133099069514472 ], [ -95.305063959935111, 29.133769070436493 ], [ -95.305368960130622, 29.13429907018546 ], [ -95.305963960347, 29.134425070056821 ], [ -95.306279959863673, 29.134339070368743 ], [ -95.306543960159132, 29.134178070466564 ], [ -95.306862960053664, 29.133894069665498 ], [ -95.307355959757402, 29.13327306976689 ], [ -95.308238960101122, 29.132622069944212 ], [ -95.308851960396467, 29.132539070159801 ], [ -95.309656961108161, 29.132838069676303 ], [ -95.31020596069699, 29.133181070228272 ], [ -95.310602960702937, 29.133712070013317 ], [ -95.310854960728577, 29.134545070265414 ], [ -95.310500961157857, 29.135361070674382 ], [ -95.30984796094404, 29.135702070241116 ], [ -95.308861960863538, 29.135742070094821 ], [ -95.308133960652782, 29.135785070203749 ], [ -95.307336960686612, 29.136222070562564 ], [ -95.307184960133213, 29.136786070604039 ], [ -95.30733696090833, 29.137607071039238 ], [ -95.307687960834826, 29.138278070629443 ], [ -95.308084960851929, 29.138583070605275 ], [ -95.308740961120293, 29.13889207098034 ], [ -95.309396961433819, 29.139300071017225 ], [ -95.309768960800511, 29.139988070822749 ], [ -95.309728961145353, 29.14075207158896 ], [ -95.309439961577695, 29.141172071279758 ], [ -95.309155960564809, 29.141469071786698 ], [ -95.308694961117311, 29.141971071331504 ], [ -95.308328961128765, 29.142280072109116 ], [ -95.308282960580129, 29.142642072167359 ], [ -95.308435961410225, 29.142867071459253 ], [ -95.3089389615198, 29.143084071695611 ], [ -95.309094960872642, 29.143141071912751 ], [ -95.309484961140356, 29.143301071714465 ], [ -95.309747960863078, 29.143405072335359 ], [ -95.309990961111467, 29.143981071758958 ], [ -95.310050961887057, 29.14466807218172 ], [ -95.31040196111023, 29.145476072249547 ], [ -95.310950962124622, 29.146159072150642 ], [ -95.311559961655902, 29.146793072440616 ], [ -95.311803962448067, 29.146931073050911 ], [ -95.312107962167616, 29.147018072583275 ], [ -95.312465962302753, 29.147045072614041 ], [ -95.312763962028981, 29.147068072282515 ], [ -95.313617962038435, 29.146843072820296 ], [ -95.314333962838646, 29.146885072158252 ], [ -95.314928962994784, 29.147148072872653 ], [ -95.315278963172588, 29.147736072446953 ], [ -95.315210962557501, 29.147803072457599 ], [ -95.314962962389174, 29.148691072425056 ], [ -95.31480396247072, 29.149006072937237 ], [ -95.314534962923773, 29.14934707278055 ], [ -95.314095962640963, 29.149740072932893 ], [ -95.312252962118407, 29.150814073488654 ], [ -95.311206961508972, 29.151618074023204 ], [ -95.310329961633656, 29.15242207410946 ], [ -95.30964196146374, 29.153191074072794 ], [ -95.30906396194041, 29.153925074023917 ], [ -95.308814962023632, 29.154397074058167 ], [ -95.308779961429039, 29.154690073928482 ], [ -95.308779961591654, 29.154915074740593 ], [ -95.308977961113655, 29.155147074054504 ], [ -95.309052961808362, 29.15516407461789 ], [ -95.309282961234317, 29.155085074654245 ], [ -95.309541961229726, 29.15498207479185 ], [ -95.309780962146874, 29.15482507464208 ], [ -95.309930961623152, 29.154580074039124 ], [ -95.310040962227816, 29.154178074264017 ], [ -95.310183962090477, 29.153801073985335 ], [ -95.310794961784026, 29.153667074203781 ], [ -95.311450961893186, 29.154083073826367 ], [ -95.312503962640591, 29.154793074675794 ], [ -95.313312962818202, 29.155327074684767 ], [ -95.313815962866315, 29.155693074780874 ], [ -95.313922962465142, 29.156010074377694 ], [ -95.313874962399183, 29.156248074481859 ], [ -95.313545962574352, 29.156423074141252 ], [ -95.313366962494442, 29.156466074554714 ], [ -95.312548962222536, 29.156440074656942 ], [ -95.311592962641726, 29.156362074818016 ], [ -95.310974961841112, 29.156563074362275 ], [ -95.310794961737898, 29.157123074782756 ], [ -95.310795962621938, 29.157513075011913 ], [ -95.311192961764661, 29.157921074889241 ], [ -95.311299962422282, 29.158016075175961 ], [ -95.311543962593532, 29.158317074616942 ], [ -95.311592962281452, 29.158406074593358 ], [ -95.311312962457251, 29.158712075456066 ], [ -95.310874961943014, 29.159070074834982 ], [ -95.3103169619298, 29.159577075315781 ], [ -95.309977961880691, 29.160258075710363 ], [ -95.310266962405251, 29.160652075690148 ], [ -95.310515962511587, 29.160818075981766 ], [ -95.310924962251732, 29.160940075721793 ], [ -95.311293962888243, 29.160818075494145 ], [ -95.311691962757962, 29.160512075880266 ], [ -95.311940962637976, 29.160311075194013 ], [ -95.312190962716912, 29.160285075452681 ], [ -95.312479963150295, 29.160355075326574 ], [ -95.312678962360565, 29.160538075091765 ], [ -95.312837962372555, 29.160774075534565 ], [ -95.313156962959695, 29.161691075768889 ], [ -95.313246962737352, 29.162320075995538 ], [ -95.313366962674365, 29.162574075574913 ], [ -95.313675963113781, 29.162888075780753 ], [ -95.313994962847133, 29.162993076259117 ], [ -95.314313963290843, 29.163011075800725 ], [ -95.315130963220767, 29.162757075928138 ], [ -95.315339964016729, 29.162661075351028 ], [ -95.315877963844457, 29.16274907585419 ], [ -95.316456963426745, 29.162967075496965 ], [ -95.316755963774142, 29.163081075756697 ], [ -95.317103963600218, 29.163212076242822 ], [ -95.317512964383795, 29.163151076026946 ], [ -95.317785963834467, 29.163001076199354 ], [ -95.318120964249005, 29.162696075946734 ], [ -95.318409964751751, 29.16251307548341 ], [ -95.318768964058407, 29.162408075505308 ], [ -95.319047964667988, 29.16248607559973 ], [ -95.31937696409868, 29.162548075468859 ], [ -95.319755964309991, 29.162670075370976 ], [ -95.320123964579608, 29.162766075340496 ], [ -95.320482964592927, 29.162818076015267 ], [ -95.320941965118962, 29.162757075240833 ], [ -95.321429964939426, 29.162670075656994 ], [ -95.321898965680944, 29.162583075996743 ], [ -95.322316964889538, 29.162679075570455 ], [ -95.322476965040536, 29.162845075383899 ], [ -95.322446965275859, 29.163054075699662 ], [ -95.322326965480713, 29.163238075790495 ], [ -95.322077965780252, 29.163456075853386 ], [ -95.321646964702182, 29.163848075360576 ], [ -95.320944964963459, 29.164107076147488 ], [ -95.320380964615055, 29.164294075506973 ], [ -95.319784965080643, 29.1644240761227 ], [ -95.318987964057996, 29.164688075916956 ], [ -95.318688964224677, 29.165038075778703 ], [ -95.318678964336911, 29.165309075920913 ], [ -95.318818964655023, 29.165649076380003 ], [ -95.31915796514582, 29.165850075912104 ], [ -95.319715964561013, 29.165763076413356 ], [ -95.320283964807274, 29.165676076430554 ], [ -95.32062296506858, 29.165641076435449 ], [ -95.321011965034543, 29.165676075954437 ], [ -95.321300965464687, 29.165815076297207 ], [ -95.3216399653042, 29.166139076688324 ], [ -95.32196796538372, 29.166488076430948 ], [ -95.322237965749039, 29.166785076273616 ], [ -95.322386965696452, 29.167152076704848 ], [ -95.32235696574574, 29.16748407612608 ], [ -95.322356965943825, 29.167825076666677 ], [ -95.322187965792253, 29.168271076339501 ], [ -95.32197796555991, 29.168576077050588 ], [ -95.321379965752755, 29.168926077235657 ], [ -95.320791965389233, 29.169144076656561 ], [ -95.320492965478536, 29.169555076907059 ], [ -95.320512965427483, 29.169870077429618 ], [ -95.320642965353656, 29.170088077479083 ], [ -95.320921965464521, 29.17027107704979 ], [ -95.321330965479504, 29.170446077133953 ], [ -95.321728965665145, 29.170534077390659 ], [ -95.322097965773381, 29.170656076986251 ], [ -95.322426965967537, 29.170857077541708 ], [ -95.32259596565595, 29.171058077652908 ], [ -95.322695965351187, 29.171364077158987 ], [ -95.322765966239018, 29.171643077803378 ], [ -95.322276965908245, 29.172648077238396 ], [ -95.322047965278557, 29.173137078013191 ], [ -95.321748965941794, 29.173627077889037 ], [ -95.321678965893852, 29.174160077705032 ], [ -95.321997965231446, 29.174352078361995 ], [ -95.322276965823306, 29.174509078226304 ], [ -95.322645966162909, 29.174535077975527 ], [ -95.32325396644417, 29.17449207828993 ], [ -95.323834965693266, 29.174348078090741 ], [ -95.324489965948544, 29.174125077485829 ], [ -95.325077966140583, 29.174046077378772 ], [ -95.32542696624337, 29.174116077936528 ], [ -95.325576967126054, 29.174369077965881 ], [ -95.325685966962752, 29.174588077677086 ], [ -95.325855966704125, 29.174885077841189 ], [ -95.325994967175205, 29.175112078158005 ], [ -95.326273967184292, 29.175330078216856 ], [ -95.32656296656657, 29.175566077621159 ], [ -95.326741966510426, 29.175723078194146 ], [ -95.326780966790125, 29.175714077668488 ], [ -95.326818966753123, 29.17569807830148 ], [ -95.32685296662774, 29.175684078421344 ], [ -95.327374967018159, 29.175424078448689 ], [ -95.330873968302413, 29.173771077648745 ], [ -95.33098096808699, 29.17371007743008 ], [ -95.333676968496846, 29.172441077263585 ], [ -95.335073969043393, 29.171792076645193 ], [ -95.337265969784539, 29.170745076840522 ], [ -95.33888097001352, 29.169989076199847 ], [ -95.342566970493536, 29.168243076215997 ], [ -95.342603970760621, 29.168225076079953 ], [ -95.345726971511851, 29.166763075447729 ], [ -95.346887971636633, 29.166213075881355 ], [ -95.34819697212518, 29.165592075607719 ], [ -95.350989973057068, 29.164237075063767 ], [ -95.352317973160197, 29.16358507456275 ], [ -95.353917973755998, 29.162825074927245 ], [ -95.355093973311156, 29.162266074767764 ], [ -95.355702973735674, 29.161978074440249 ], [ -95.359385974952787, 29.160210073590981 ], [ -95.361080975227281, 29.159416073672066 ], [ -95.362226975828449, 29.158878073372538 ], [ -95.36277197594373, 29.158621073356795 ], [ -95.363152975399672, 29.158439073171444 ], [ -95.371502977932451, 29.15446107233435 ], [ -95.3724109782315, 29.154030072241394 ], [ -95.372801978194474, 29.153845072240586 ], [ -95.37587197885972, 29.152354071531171 ], [ -95.376706978745901, 29.151978071840439 ], [ -95.377141978719834, 29.151840071946054 ], [ -95.377307978669904, 29.151819071466019 ], [ -95.377506979323627, 29.151817071558927 ], [ -95.377642978562591, 29.151829071444514 ], [ -95.377805978637014, 29.151889071713398 ], [ -95.37792997909655, 29.151943071224746 ], [ -95.378062979276066, 29.152051071542797 ], [ -95.378157979663328, 29.15216507182733 ], [ -95.379456979355041, 29.154318071818526 ], [ -95.380796980130086, 29.156513072073306 ], [ -95.381758980107833, 29.158059073102869 ], [ -95.382645981090036, 29.15953207289358 ], [ -95.382718980293347, 29.159610072764682 ], [ -95.382931980378913, 29.159644073080639 ], [ -95.382969980480198, 29.159643072876868 ], [ -95.383951981251229, 29.159617073270638 ], [ -95.385243981817268, 29.159599072596031 ], [ -95.386221981293588, 29.159581072579375 ], [ -95.393214983749218, 29.159472072596355 ], [ -95.393561983500504, 29.159470072865581 ], [ -95.394887983998728, 29.159460072702664 ], [ -95.395189983465855, 29.159455072300791 ], [ -95.395892984055621, 29.159442072659516 ], [ -95.398341984542725, 29.159398072212998 ], [ -95.399352984607475, 29.15938107228839 ], [ -95.399557985387844, 29.159377072548303 ], [ -95.399569984749633, 29.159377072811882 ], [ -95.401503985057687, 29.159347072556955 ], [ -95.401642985301947, 29.159345072676135 ], [ -95.401786985029531, 29.15934307229406 ], [ -95.402102985271071, 29.159336071936853 ], [ -95.404020986346083, 29.159297071929402 ], [ -95.404786986007025, 29.159285072628101 ], [ -95.405227986725919, 29.159278072406714 ], [ -95.405446986448354, 29.159275072456509 ], [ -95.407713987230167, 29.159239071938103 ], [ -95.41011698759003, 29.159205071619581 ], [ -95.412142988318465, 29.159169072312849 ], [ -95.414801988740621, 29.159116071443229 ], [ -95.414870988495736, 29.159115071436293 ], [ -95.416416989640609, 29.15908507164529 ], [ -95.418390989734448, 29.159049071555195 ], [ -95.418565989449476, 29.159046072092956 ], [ -95.42087698989252, 29.159013071171547 ], [ -95.421302990953762, 29.159003071683482 ], [ -95.42182899045207, 29.158989071403631 ], [ -95.422324990895859, 29.158983071467965 ], [ -95.422807990914265, 29.158974071855685 ], [ -95.423302990707683, 29.158926071380993 ], [ -95.423591990683121, 29.158917071862678 ], [ -95.424374991175824, 29.158855071686673 ], [ -95.425431991079805, 29.158780071483886 ], [ -95.425897991208544, 29.15871507148151 ], [ -95.426441991889135, 29.158662071228925 ], [ -95.427419992328893, 29.15858407098408 ], [ -95.4279269922894, 29.158552071504307 ], [ -95.428685992481277, 29.158522071378613 ], [ -95.429306992516771, 29.158502071344959 ], [ -95.430008992950476, 29.158473071489464 ], [ -95.431318993394115, 29.158416071086226 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 714, "Tract": "48039664000", "Area_SqMi": 13.411960224721932, "total_2009": 389, "total_2010": 436, "total_2011": 352, "total_2012": 1123, "total_2013": 929, "total_2014": 903, "total_2015": 980, "total_2016": 425, "total_2017": 394, "total_2018": 301, "total_2019": 307, "total_2020": 269, "age1": 82, "age2": 143, "age3": 51, "earn1": 62, "earn2": 110, "earn3": 104, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 23, "naics_s05": 41, "naics_s06": 14, "naics_s07": 24, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 12, "naics_s12": 24, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 32, "naics_s17": 2, "naics_s18": 71, "naics_s19": 0, "naics_s20": 0, "race1": 232, "race2": 32, "race3": 4, "race4": 4, "race5": 0, "race6": 4, "ethnicity1": 163, "ethnicity2": 113, "edu1": 35, "edu2": 66, "edu3": 69, "edu4": 24, "Shape_Length": 96173.432727677471, "Shape_Area": 373902496.26590919, "total_2021": 244, "total_2022": 276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.409997983703391, 29.074853054574632 ], [ -95.409937984007783, 29.074639054174575 ], [ -95.409874983618565, 29.074372054482794 ], [ -95.409776984105534, 29.07400105448173 ], [ -95.409704983987893, 29.073768054691101 ], [ -95.409588983838447, 29.073392054157615 ], [ -95.40923598359845, 29.072183054315683 ], [ -95.408635983176268, 29.070068053203382 ], [ -95.40778898338047, 29.067085052735553 ], [ -95.405891982757424, 29.060401051499095 ], [ -95.405011982523931, 29.057314051428705 ], [ -95.40417198179864, 29.054370050429579 ], [ -95.403385981391565, 29.051594050096405 ], [ -95.402658981568067, 29.049035049253867 ], [ -95.402380980881787, 29.048149049212217 ], [ -95.402131980821551, 29.047280049072835 ], [ -95.401850980566863, 29.046137049216963 ], [ -95.401435980305592, 29.044557048961906 ], [ -95.401319980614176, 29.044148048004338 ], [ -95.401041980371545, 29.043166048253042 ], [ -95.400994980665686, 29.043000048524839 ], [ -95.400722980878754, 29.042039047918838 ], [ -95.400300979976194, 29.040549047340967 ], [ -95.400047980349328, 29.03965404768552 ], [ -95.399558979546256, 29.037968046971919 ], [ -95.399449979929116, 29.037631046822138 ], [ -95.399236979434662, 29.036879046711089 ], [ -95.399067979419087, 29.036306046765038 ], [ -95.399006980104019, 29.036100047280769 ], [ -95.398813979881325, 29.035377046553656 ], [ -95.398702979218584, 29.034982046209528 ], [ -95.39868197930285, 29.034907047014745 ], [ -95.398745979670764, 29.034865046625509 ], [ -95.398793979330364, 29.034809046236756 ], [ -95.398775979387324, 29.034747046910603 ], [ -95.398531979181584, 29.033884046405046 ], [ -95.398354979674849, 29.033368046250352 ], [ -95.398197979023578, 29.032803045918694 ], [ -95.397854979132333, 29.031575046221423 ], [ -95.397523978763886, 29.03033304601994 ], [ -95.397182979181878, 29.029138045680643 ], [ -95.397047978669832, 29.028665044928417 ], [ -95.396643978800043, 29.027260045411495 ], [ -95.396008978584476, 29.025112044882231 ], [ -95.39567897862635, 29.02395604465438 ], [ -95.395502978658612, 29.023283043942147 ], [ -95.39491697837191, 29.021283043915918 ], [ -95.394700977857013, 29.020486043423617 ], [ -95.394624978180346, 29.020187043657643 ], [ -95.394443977816508, 29.019554043664048 ], [ -95.39432197811594, 29.019411043432434 ], [ -95.394272977850164, 29.019355043255118 ], [ -95.394224978165326, 29.019298043730089 ], [ -95.393868977287582, 29.018882043068203 ], [ -95.390499976224177, 29.014919042855709 ], [ -95.389676976235251, 29.013932042860183 ], [ -95.38933697643229, 29.013524042070831 ], [ -95.388874976646633, 29.012919042439105 ], [ -95.388843975626372, 29.012878042658301 ], [ -95.388731976455247, 29.012785042159102 ], [ -95.388182976066545, 29.012332042117553 ], [ -95.387729975654878, 29.011959041815516 ], [ -95.38714497597492, 29.011462042314303 ], [ -95.386686975301942, 29.010944042316364 ], [ -95.386217974950696, 29.010610042265846 ], [ -95.385653975671403, 29.010519041608728 ], [ -95.38504197497177, 29.010589041965716 ], [ -95.384621974980305, 29.010769042089784 ], [ -95.384487974605634, 29.010827041889115 ], [ -95.383742975098372, 29.011628042414038 ], [ -95.383554974531634, 29.012145042590692 ], [ -95.382941974987162, 29.012795042265481 ], [ -95.381749974325288, 29.014037042559846 ], [ -95.380015974241502, 29.015404043293387 ], [ -95.379909974082082, 29.01548804327809 ], [ -95.379336974162655, 29.015940043118402 ], [ -95.377045973121255, 29.017738043504867 ], [ -95.376930972942731, 29.017828043308207 ], [ -95.376980973589752, 29.017891044128078 ], [ -95.377122973222072, 29.018070044211406 ], [ -95.377147972989434, 29.018099043427004 ], [ -95.377561972989909, 29.018566044051997 ], [ -95.377624973732551, 29.018643044113094 ], [ -95.377693973875068, 29.018726043971029 ], [ -95.377916973949624, 29.019123044087397 ], [ -95.378006974023478, 29.019334044275226 ], [ -95.378070974112418, 29.019632043827226 ], [ -95.378104973617994, 29.019871044322766 ], [ -95.378131973843722, 29.020141044228854 ], [ -95.378118973719609, 29.020265044040709 ], [ -95.378115973724022, 29.020293044105962 ], [ -95.378109973900592, 29.020358044015758 ], [ -95.37805697321825, 29.02056404433527 ], [ -95.378046973247464, 29.02075404473819 ], [ -95.378069974155537, 29.020938044724396 ], [ -95.378239973362682, 29.023231044572494 ], [ -95.378306974348277, 29.024340044891918 ], [ -95.378369974200027, 29.024589044900594 ], [ -95.378571973688693, 29.024698044962218 ], [ -95.378974974288781, 29.024793045365012 ], [ -95.380133974286551, 29.025160045236067 ], [ -95.380894974639489, 29.025146044811876 ], [ -95.381048975107575, 29.025143044923816 ], [ -95.381705974504143, 29.025131044746228 ], [ -95.38175497496789, 29.025130044827304 ], [ -95.381828975219591, 29.025129045098645 ], [ -95.381908975355103, 29.025127044845732 ], [ -95.381947974437679, 29.025126045461331 ], [ -95.382101974518662, 29.025124045523025 ], [ -95.382142974508312, 29.025123045432974 ], [ -95.383511975690183, 29.025100045253343 ], [ -95.383734975560117, 29.025105045287692 ], [ -95.383745974986823, 29.02511004506146 ], [ -95.383912975232491, 29.025186044980241 ], [ -95.38403297569748, 29.025307045097684 ], [ -95.384095975361177, 29.025491044935006 ], [ -95.384212975665946, 29.028640046141348 ], [ -95.38421897524286, 29.028800045390771 ], [ -95.384244975436729, 29.028924045779608 ], [ -95.384159975173048, 29.028926046118066 ], [ -95.383684975517468, 29.028936045570408 ], [ -95.383313975109573, 29.028898045591401 ], [ -95.383217974912753, 29.0288880454032 ], [ -95.383135975726645, 29.028880046302739 ], [ -95.383065974971259, 29.028869045759631 ], [ -95.382739974773514, 29.028817046023097 ], [ -95.381913975354692, 29.028709045690636 ], [ -95.381786974920615, 29.028692046180382 ], [ -95.380274974342001, 29.028502046213244 ], [ -95.379989974157951, 29.028451046071982 ], [ -95.379545974706488, 29.028416045819061 ], [ -95.379075974314986, 29.028427045937967 ], [ -95.378790974580141, 29.028448045886247 ], [ -95.378585973654836, 29.0285050455904 ], [ -95.378344974130769, 29.028564045880287 ], [ -95.377854974010674, 29.028737045589359 ], [ -95.377701973748529, 29.02880204562419 ], [ -95.37715097391694, 29.029036046140444 ], [ -95.376907974078364, 29.029157046223293 ], [ -95.376830973937189, 29.029187046321411 ], [ -95.376460973997467, 29.029330046592566 ], [ -95.375666972964567, 29.029676046510414 ], [ -95.374977973370648, 29.029992046644669 ], [ -95.374611973255497, 29.030240046312674 ], [ -95.374464973487704, 29.030371046658079 ], [ -95.374283972895057, 29.030573046157993 ], [ -95.37414397328115, 29.030790046772474 ], [ -95.374052973298376, 29.030981046770986 ], [ -95.373963973134039, 29.031242046544996 ], [ -95.373937973075272, 29.031454046439233 ], [ -95.373928973526503, 29.031750046344772 ], [ -95.373941972637255, 29.032041046857284 ], [ -95.374036972890522, 29.032677046828415 ], [ -95.374165973219192, 29.033439046717412 ], [ -95.374231973650637, 29.033795047165299 ], [ -95.374303973324473, 29.034186047397522 ], [ -95.374540973494916, 29.035686047659201 ], [ -95.374579973823487, 29.036060047317729 ], [ -95.374562973639641, 29.036421047469926 ], [ -95.374504973458286, 29.03673504759503 ], [ -95.374377973652088, 29.037099048013545 ], [ -95.374210973040064, 29.037440047771714 ], [ -95.373991972955608, 29.037746047704001 ], [ -95.373849973314307, 29.037895048044241 ], [ -95.373566973044149, 29.038166048215853 ], [ -95.372054972677944, 29.039359048205025 ], [ -95.371553972754612, 29.039697048213512 ], [ -95.371483973130637, 29.039746048445689 ], [ -95.371313973041637, 29.039853048225144 ], [ -95.370976972708334, 29.040043048320392 ], [ -95.370382972757454, 29.04035604886138 ], [ -95.370316972627293, 29.040402048456023 ], [ -95.370265972019993, 29.040438048233394 ], [ -95.370207972767332, 29.040478048639002 ], [ -95.370180972675726, 29.040497048492337 ], [ -95.370119972703051, 29.040524048252561 ], [ -95.369979972639129, 29.040587048355761 ], [ -95.369774972028921, 29.040702048603368 ], [ -95.369447971934335, 29.040887048332131 ], [ -95.369362972729277, 29.040936048934377 ], [ -95.369145972730522, 29.04104604891786 ], [ -95.368892972041508, 29.041181048825688 ], [ -95.36846197169136, 29.041373048864141 ], [ -95.368327971587377, 29.041437048839231 ], [ -95.365554971645807, 29.042645049605127 ], [ -95.362339970677482, 29.04406604943383 ], [ -95.36128997031652, 29.044527049907163 ], [ -95.360709970388683, 29.044774049976816 ], [ -95.360104970475263, 29.04505505021984 ], [ -95.359563970433243, 29.04532605021749 ], [ -95.358916969917743, 29.045739050535893 ], [ -95.358295969756441, 29.046178049975371 ], [ -95.357867969237745, 29.04653805017767 ], [ -95.357391969538156, 29.047008050403626 ], [ -95.35701096910681, 29.047426050100448 ], [ -95.356601969215731, 29.047952050769901 ], [ -95.356329969141044, 29.048362051136834 ], [ -95.356195969510452, 29.04863805086989 ], [ -95.354499968963282, 29.051636051549469 ], [ -95.354079969091146, 29.052365051656693 ], [ -95.352576968104998, 29.055052052155411 ], [ -95.352114968605335, 29.055868052775683 ], [ -95.351940968853739, 29.056169052337893 ], [ -95.351881968179711, 29.056276052760904 ], [ -95.35173696823982, 29.056542052824472 ], [ -95.351684968595734, 29.05663805245063 ], [ -95.351377968555482, 29.057203052874879 ], [ -95.351238968797858, 29.05745805319485 ], [ -95.350938967865133, 29.057959053324886 ], [ -95.350916968079275, 29.058120053151377 ], [ -95.351341968050392, 29.058566053294395 ], [ -95.355362969121003, 29.062459053490819 ], [ -95.356576969539006, 29.061332053116661 ], [ -95.358652970326702, 29.065649054484474 ], [ -95.358823970151406, 29.065817054239822 ], [ -95.359000970482342, 29.065991054398093 ], [ -95.359303971285669, 29.066279053944221 ], [ -95.359580970401879, 29.066550054423132 ], [ -95.359850971032301, 29.066856054931229 ], [ -95.359942970544481, 29.067008054337009 ], [ -95.359956970838283, 29.067058054867449 ], [ -95.359970971260154, 29.067114054358331 ], [ -95.360054970997155, 29.06753205500614 ], [ -95.360085971076046, 29.068194054953867 ], [ -95.360109970996632, 29.068742054713407 ], [ -95.360120971509033, 29.069110055153949 ], [ -95.360156970637561, 29.070254055603918 ], [ -95.360238971488954, 29.072197055240238 ], [ -95.360327970812165, 29.072807055839011 ], [ -95.360454971648537, 29.073120055380233 ], [ -95.361576971440741, 29.074812056093016 ], [ -95.363310972447778, 29.077394056290458 ], [ -95.363766972660002, 29.078091056828828 ], [ -95.363864972124048, 29.078223057004625 ], [ -95.364020972503809, 29.07848405680582 ], [ -95.364319972455903, 29.078927057101417 ], [ -95.364537972936461, 29.079352057271905 ], [ -95.364907972670608, 29.08040905673084 ], [ -95.365674973307208, 29.082600057281208 ], [ -95.365817973101827, 29.08300605727209 ], [ -95.366057973563855, 29.083757057795008 ], [ -95.366083972824939, 29.083828057737765 ], [ -95.366731973127855, 29.085584058109603 ], [ -95.367127973806717, 29.086596058265609 ], [ -95.367709973486939, 29.087991058768914 ], [ -95.368096973721961, 29.088943058697655 ], [ -95.37052597452319, 29.094924059909768 ], [ -95.371045975107819, 29.096169060575921 ], [ -95.37162097498225, 29.097577060396439 ], [ -95.371734975391902, 29.097929060598865 ], [ -95.371771975101822, 29.098123060278507 ], [ -95.371784975723557, 29.098368060686891 ], [ -95.371763975503981, 29.099801061017565 ], [ -95.371736975787897, 29.103013061392605 ], [ -95.371699975854611, 29.105602062320212 ], [ -95.371690976024297, 29.106237061900089 ], [ -95.371675976107554, 29.108504062453935 ], [ -95.371698975736024, 29.108779062540687 ], [ -95.371803975570856, 29.109309062775559 ], [ -95.371894975626319, 29.109520063273504 ], [ -95.372072976207903, 29.109893062721167 ], [ -95.372302975954, 29.110227063521201 ], [ -95.372318976292874, 29.110250063396332 ], [ -95.372758975880771, 29.110753063451259 ], [ -95.373379976633743, 29.111462063339239 ], [ -95.373756976160038, 29.11188906356038 ], [ -95.374166976182011, 29.112373063192713 ], [ -95.374511976428565, 29.112752063116982 ], [ -95.374582976942904, 29.112830063166498 ], [ -95.374738976494427, 29.113019063250754 ], [ -95.374822976846289, 29.113120063159705 ], [ -95.374935976401133, 29.113249063942945 ], [ -95.37521897727369, 29.113570063356182 ], [ -95.375686976971252, 29.114120064108693 ], [ -95.376747977324214, 29.115343063811903 ], [ -95.377371977026627, 29.1160800638628 ], [ -95.378758977563535, 29.117614064045171 ], [ -95.379074978428008, 29.117949064770126 ], [ -95.379848978235657, 29.118452064805481 ], [ -95.380679978080437, 29.118888065030404 ], [ -95.380878978211257, 29.11901806472958 ], [ -95.380993978684629, 29.118739064410864 ], [ -95.38222697882621, 29.116585063673931 ], [ -95.383160978782811, 29.114933063301514 ], [ -95.384176978694143, 29.113271063241687 ], [ -95.384250978625346, 29.113142063153223 ], [ -95.384341979331069, 29.112984062867532 ], [ -95.384378978912679, 29.112926063614804 ], [ -95.384476979524578, 29.112774063565265 ], [ -95.384611979010259, 29.112545063541575 ], [ -95.385099978868936, 29.111714063368051 ], [ -95.385508979736287, 29.11120906242002 ], [ -95.386828979893608, 29.108991061993571 ], [ -95.38704797973611, 29.10863806200198 ], [ -95.388103979700475, 29.106937061539995 ], [ -95.389449979964198, 29.104771061572162 ], [ -95.390166980298673, 29.103609061222883 ], [ -95.390494980044366, 29.103080061374794 ], [ -95.391677980078214, 29.10116606054298 ], [ -95.393360980915702, 29.098391059641113 ], [ -95.393535981297816, 29.098097059752284 ], [ -95.393632981087748, 29.097936060131772 ], [ -95.394654980571602, 29.096229059039505 ], [ -95.395040980693878, 29.095587059565418 ], [ -95.395072981011054, 29.095534058952651 ], [ -95.395475981548785, 29.094839059540814 ], [ -95.395819980874393, 29.094259059329392 ], [ -95.396117981705729, 29.093756058502521 ], [ -95.396442981863842, 29.093216058638451 ], [ -95.396507981011169, 29.093107058649746 ], [ -95.396565981892877, 29.093010058346778 ], [ -95.396725981323954, 29.092744058635592 ], [ -95.397056981561832, 29.092197058174214 ], [ -95.397872982163378, 29.090843058478026 ], [ -95.39910098155562, 29.088791058186491 ], [ -95.399292982402088, 29.088470057272211 ], [ -95.39943598145689, 29.088231057778604 ], [ -95.399651982216938, 29.08787005761965 ], [ -95.399722982407624, 29.087747057722041 ], [ -95.399791981959055, 29.08762805709992 ], [ -95.40018998242877, 29.08699205695148 ], [ -95.400471982577031, 29.086545057299041 ], [ -95.401068981892166, 29.085720056973479 ], [ -95.402756982903, 29.083474056375376 ], [ -95.405084983094952, 29.080381055432905 ], [ -95.406095983625875, 29.079060055544158 ], [ -95.406224983716896, 29.078872055899499 ], [ -95.40637898345976, 29.078668055268807 ], [ -95.407977983205981, 29.076730055143962 ], [ -95.40890098355024, 29.075824055026558 ], [ -95.40965798417983, 29.075147054776753 ], [ -95.409997983703391, 29.074853054574632 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 715, "Tract": "48039660100", "Area_SqMi": 1.6384625037892879, "total_2009": 315, "total_2010": 312, "total_2011": 349, "total_2012": 439, "total_2013": 466, "total_2014": 428, "total_2015": 501, "total_2016": 466, "total_2017": 893, "total_2018": 996, "total_2019": 1163, "total_2020": 1135, "age1": 396, "age2": 804, "age3": 178, "earn1": 445, "earn2": 455, "earn3": 478, "naics_s01": 4, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 25, "naics_s06": 8, "naics_s07": 53, "naics_s08": 0, "naics_s09": 1, "naics_s10": 30, "naics_s11": 36, "naics_s12": 22, "naics_s13": 2, "naics_s14": 7, "naics_s15": 26, "naics_s16": 816, "naics_s17": 2, "naics_s18": 273, "naics_s19": 54, "naics_s20": 0, "race1": 1123, "race2": 138, "race3": 10, "race4": 81, "race5": 2, "race6": 24, "ethnicity1": 1000, "ethnicity2": 378, "edu1": 126, "edu2": 227, "edu3": 305, "edu4": 324, "Shape_Length": 37556.294680834275, "Shape_Area": 45677530.349043958, "total_2021": 1326, "total_2022": 1378 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.255193964594227, 29.552524158037723 ], [ -95.254627964553464, 29.552291158135027 ], [ -95.252842963600173, 29.55157815849174 ], [ -95.251508964051624, 29.551037158525457 ], [ -95.25102996359972, 29.550836158349906 ], [ -95.250208963447506, 29.550523157742759 ], [ -95.248898962679888, 29.549972157822548 ], [ -95.248562962650368, 29.549836157612443 ], [ -95.247797962782798, 29.549524157686132 ], [ -95.247399963120415, 29.549362157862024 ], [ -95.24732496292981, 29.549331157909648 ], [ -95.245263961786549, 29.548487157553932 ], [ -95.244656961514409, 29.548235157799656 ], [ -95.244563961952821, 29.548196157928597 ], [ -95.244146961808738, 29.548041157755069 ], [ -95.24364796164943, 29.547889157993644 ], [ -95.243559961569133, 29.547869158002097 ], [ -95.243261961638623, 29.547800158033947 ], [ -95.243018961532186, 29.547752157881167 ], [ -95.242806960993917, 29.547720157484669 ], [ -95.242701961283629, 29.547708157805342 ], [ -95.242548961329902, 29.547693158017442 ], [ -95.242200961167796, 29.547671157525095 ], [ -95.241810961382257, 29.547669157630345 ], [ -95.239476960069581, 29.547783157561433 ], [ -95.237364960044076, 29.547889157901441 ], [ -95.235797959301308, 29.547981158019283 ], [ -95.235433959438851, 29.547996157980368 ], [ -95.234768959309449, 29.548021158442907 ], [ -95.234419959029253, 29.548013158077993 ], [ -95.234085958977332, 29.547992158148162 ], [ -95.233720959531539, 29.547957158241324 ], [ -95.233262958654166, 29.547863158076868 ], [ -95.23297195898725, 29.547792158379774 ], [ -95.232545958315413, 29.547650158153655 ], [ -95.231921958912096, 29.547394157609048 ], [ -95.230916958502647, 29.546935157926651 ], [ -95.229796957980653, 29.546413157452314 ], [ -95.228800958217519, 29.545924157460618 ], [ -95.226835957207172, 29.544970157331019 ], [ -95.226626957110042, 29.54486815775449 ], [ -95.225074956535948, 29.544131157696341 ], [ -95.223355956275043, 29.543316157190958 ], [ -95.222427956183125, 29.542869157571655 ], [ -95.221063955509408, 29.542210157130029 ], [ -95.220299955676595, 29.5418381568232 ], [ -95.219680954836619, 29.541537157568627 ], [ -95.219469955000122, 29.541433156998355 ], [ -95.219171955466138, 29.541287157107053 ], [ -95.219097955218444, 29.541251157061843 ], [ -95.219072954840641, 29.54140315691242 ], [ -95.2189539549817, 29.541681156865167 ], [ -95.218937955322545, 29.541774157288046 ], [ -95.218826955209394, 29.542436157716605 ], [ -95.218639955016698, 29.543420157881588 ], [ -95.218569955232411, 29.543830157948793 ], [ -95.217766955022611, 29.548314158301345 ], [ -95.217752955241664, 29.548389158253055 ], [ -95.217691955399445, 29.548718159190198 ], [ -95.217562955484695, 29.549388159083048 ], [ -95.217195954926609, 29.551277159105478 ], [ -95.217117954764717, 29.551701159048505 ], [ -95.21671695499515, 29.553735160213424 ], [ -95.216632955369775, 29.55414715946689 ], [ -95.216614955207817, 29.554348160277964 ], [ -95.216601955436175, 29.554483159858403 ], [ -95.216475955445915, 29.555143160338702 ], [ -95.21645895457894, 29.555233160135788 ], [ -95.216442954742632, 29.555320160430522 ], [ -95.216432954930198, 29.555374159845986 ], [ -95.216427954470987, 29.555401160440404 ], [ -95.216421955189219, 29.555432159940562 ], [ -95.216389954691664, 29.555595160481182 ], [ -95.216355955105229, 29.555771160016569 ], [ -95.216410955351634, 29.555895159888628 ], [ -95.216412954889094, 29.555912160181716 ], [ -95.216428954992253, 29.55608516003246 ], [ -95.216436955061525, 29.556165160606231 ], [ -95.216417954916096, 29.556374160281173 ], [ -95.216376954527959, 29.556490159943205 ], [ -95.216341955412858, 29.556588160659071 ], [ -95.216297954476644, 29.556665160553617 ], [ -95.216109954851717, 29.556748160393028 ], [ -95.215914954770398, 29.556786160194452 ], [ -95.215808954957168, 29.5568371602618 ], [ -95.215633955265091, 29.556885160305843 ], [ -95.215430954630591, 29.556902160709633 ], [ -95.215411954924008, 29.556902160104009 ], [ -95.215222954438147, 29.556869160409867 ], [ -95.214977954390292, 29.556792160518871 ], [ -95.214909954152333, 29.556752160391071 ], [ -95.214730954347203, 29.55677216007744 ], [ -95.214611954324155, 29.556861160799656 ], [ -95.214559954927964, 29.556968160519517 ], [ -95.2145659542619, 29.557068160992696 ], [ -95.214602955053223, 29.557081160856161 ], [ -95.214663954230957, 29.55710216046521 ], [ -95.214805954570949, 29.557141160838359 ], [ -95.21497495498302, 29.5571731607677 ], [ -95.215205954209864, 29.557218160877223 ], [ -95.215354954715181, 29.557237160660797 ], [ -95.215543955286464, 29.557336160197384 ], [ -95.215621954539074, 29.557392160741351 ], [ -95.215675954914516, 29.55743016099424 ], [ -95.215733954865016, 29.557506161019457 ], [ -95.215773954819042, 29.557556160672899 ], [ -95.215871954965152, 29.557682160276247 ], [ -95.215890955163573, 29.557705161085675 ], [ -95.215958955255488, 29.557792160534653 ], [ -95.21597195448301, 29.557809160652507 ], [ -95.216034954978937, 29.557936160246033 ], [ -95.216298955493542, 29.558309161147463 ], [ -95.216468954952632, 29.558502161160881 ], [ -95.216694955180003, 29.558685160368317 ], [ -95.216889954793174, 29.55884316066405 ], [ -95.217092955765608, 29.558934161077165 ], [ -95.217135955604661, 29.558953160774038 ], [ -95.217462955208859, 29.559189160760212 ], [ -95.217889955407799, 29.559398160563596 ], [ -95.218084955147546, 29.559376160805016 ], [ -95.218242955713151, 29.559370161009234 ], [ -95.218449955204363, 29.559233161281291 ], [ -95.218455955964075, 29.559183160710681 ], [ -95.218620956033732, 29.558950160907685 ], [ -95.218688955458461, 29.558853160566041 ], [ -95.218801955217401, 29.558650160822474 ], [ -95.218881956063086, 29.558567161047876 ], [ -95.219034955877049, 29.558408160999267 ], [ -95.219405955708496, 29.558155160761899 ], [ -95.219543955937368, 29.558094160978428 ], [ -95.219914955523549, 29.557869160834016 ], [ -95.219983956419469, 29.557847160557802 ], [ -95.22000295617957, 29.557841160842404 ], [ -95.220228955816381, 29.557670160915027 ], [ -95.220386955841931, 29.557495160480165 ], [ -95.220643956470113, 29.557137160582869 ], [ -95.220730955641983, 29.557077160077629 ], [ -95.220794955811655, 29.55703216046728 ], [ -95.220958955787921, 29.556944160746152 ], [ -95.221165956549399, 29.556928160545802 ], [ -95.221348956436088, 29.557021160341399 ], [ -95.221394956452883, 29.557074160623007 ], [ -95.221480956593012, 29.557175160082661 ], [ -95.221870956523745, 29.557703160337418 ], [ -95.221939956661231, 29.557912160591048 ], [ -95.222027956023908, 29.558077160493578 ], [ -95.222046956846953, 29.558209160925436 ], [ -95.222127956503272, 29.558269160241814 ], [ -95.22253195692295, 29.558566160514744 ], [ -95.223040956445104, 29.558874160587909 ], [ -95.223267956615445, 29.558995160504626 ], [ -95.223613957333939, 29.559138160662705 ], [ -95.223858957257988, 29.559182160664825 ], [ -95.224116956815706, 29.559215160788998 ], [ -95.224254957619138, 29.559181161001135 ], [ -95.224531956890388, 29.559225160538052 ], [ -95.22588395772199, 29.559632161147753 ], [ -95.226236957181371, 29.559720160634416 ], [ -95.226821958311433, 29.559818160459848 ], [ -95.226909957787001, 29.559851160818095 ], [ -95.227060957946236, 29.559851160364484 ], [ -95.227456958051704, 29.559923160763947 ], [ -95.228255957940036, 29.560038160612862 ], [ -95.228575957807195, 29.560021160783407 ], [ -95.228814957997272, 29.559922160709341 ], [ -95.228965958424666, 29.559845161089189 ], [ -95.229066958750337, 29.559664160547779 ], [ -95.229242958439627, 29.559449160463686 ], [ -95.229349958449973, 29.559339160166328 ], [ -95.229418958682302, 29.559224160455596 ], [ -95.229531958368241, 29.559081160495641 ], [ -95.230197958324609, 29.558531160727739 ], [ -95.230537958439768, 29.558179160456934 ], [ -95.23062595893235, 29.558069159833927 ], [ -95.230688958937577, 29.558014160192684 ], [ -95.230927958436965, 29.557849160320501 ], [ -95.231197958997754, 29.557728159766569 ], [ -95.232040959242468, 29.557491160199874 ], [ -95.232436959605721, 29.557342160226774 ], [ -95.232920959399678, 29.557205160384072 ], [ -95.233392959895525, 29.557155159652055 ], [ -95.233675959326163, 29.557149160013864 ], [ -95.233926959717877, 29.557419160357846 ], [ -95.23402795992034, 29.55760015987244 ], [ -95.234096959433231, 29.557660160455889 ], [ -95.234235960062037, 29.557726160412475 ], [ -95.234769959716147, 29.558144160453882 ], [ -95.234864959581643, 29.558650159911807 ], [ -95.23495295971783, 29.558782159890718 ], [ -95.235147959837136, 29.558952160048637 ], [ -95.235569960467473, 29.559128160449461 ], [ -95.235745959768039, 29.559177159837994 ], [ -95.235927960218291, 29.559315160679837 ], [ -95.23608595991422, 29.559502160116345 ], [ -95.236239960573087, 29.55973516077108 ], [ -95.236286960039024, 29.559807160366507 ], [ -95.236317960550238, 29.559854160418102 ], [ -95.236418960584373, 29.560007160130059 ], [ -95.236531959896794, 29.560194160787201 ], [ -95.236645959876981, 29.560304160142366 ], [ -95.236877960584565, 29.560425160657317 ], [ -95.23699196033543, 29.560524160655234 ], [ -95.237312960146596, 29.560711160196988 ], [ -95.237570961083875, 29.561030160406766 ], [ -95.237595960347505, 29.561217160288731 ], [ -95.237727960620887, 29.561376160466065 ], [ -95.237991961050099, 29.5614311604924 ], [ -95.238224961183022, 29.561381160984084 ], [ -95.238469961285361, 29.56127716068805 ], [ -95.238664961222256, 29.561222160972584 ], [ -95.239022960757012, 29.561040160636473 ], [ -95.239507961176415, 29.560842160286448 ], [ -95.239743961460178, 29.560756160807642 ], [ -95.240098961728009, 29.560627160051443 ], [ -95.240174961553876, 29.560565160619035 ], [ -95.240205961554977, 29.560539160266682 ], [ -95.24062096117737, 29.560253160007417 ], [ -95.240657961450651, 29.560154160006668 ], [ -95.240814961073568, 29.560121160338849 ], [ -95.241047961010651, 29.560035160039256 ], [ -95.241368961214164, 29.559917159801653 ], [ -95.241456961159017, 29.559824160044059 ], [ -95.24161396203499, 29.559719160323208 ], [ -95.241795961415193, 29.559224160337706 ], [ -95.241870961362338, 29.55880116013083 ], [ -95.241913961728415, 29.558645160413754 ], [ -95.24198196125495, 29.558398159887876 ], [ -95.242052961893833, 29.558143159598298 ], [ -95.242128962054522, 29.557866159988233 ], [ -95.242153961540339, 29.557685160179624 ], [ -95.242159961802528, 29.557655160023998 ], [ -95.24219096211489, 29.5575091593848 ], [ -95.242241961652653, 29.55736615996447 ], [ -95.242240961291699, 29.55721715934488 ], [ -95.241957961924925, 29.556288159621236 ], [ -95.241976961357253, 29.556079159572732 ], [ -95.24205196151118, 29.555870158965096 ], [ -95.242114961419645, 29.555788159381443 ], [ -95.242258961839283, 29.5556721593289 ], [ -95.242460961555039, 29.555458159465832 ], [ -95.242692961398745, 29.555172159004115 ], [ -95.242780961389883, 29.555117159421556 ], [ -95.242881962106253, 29.555078158787275 ], [ -95.243138962288839, 29.555023158946433 ], [ -95.243554962054958, 29.555006158740504 ], [ -95.243704961590311, 29.554885159318797 ], [ -95.24390696248949, 29.554748158702154 ], [ -95.244339962037614, 29.554615158962758 ], [ -95.24449096181479, 29.554593159046881 ], [ -95.244604961760146, 29.554588159349375 ], [ -95.244755961982548, 29.554615159148788 ], [ -95.244868962041224, 29.554659159127947 ], [ -95.24510096206231, 29.554725158612055 ], [ -95.24522696281619, 29.554741159166305 ], [ -95.245371962526406, 29.554714159195292 ], [ -95.245541962580276, 29.554615158618631 ], [ -95.245654962527567, 29.554499159362198 ], [ -95.245761962381081, 29.554362158953687 ], [ -95.245955962644288, 29.554153159024843 ], [ -95.246025962881916, 29.554048159140773 ], [ -95.246081962109486, 29.553982159154856 ], [ -95.246188962078648, 29.553894158411783 ], [ -95.246227962866286, 29.553876158464504 ], [ -95.246502962188075, 29.553751158761475 ], [ -95.24659096275694, 29.553691159178602 ], [ -95.246691962768665, 29.553641158501552 ], [ -95.246785962977569, 29.553581158388926 ], [ -95.246848962782593, 29.553515158699099 ], [ -95.246923962354813, 29.553388158921816 ], [ -95.247062962587464, 29.553240158451132 ], [ -95.247131962913244, 29.55319015845232 ], [ -95.24729296270128, 29.553132158480921 ], [ -95.247376962709112, 29.553102158918126 ], [ -95.247496962920991, 29.553201158679588 ], [ -95.247741963076706, 29.553470158943984 ], [ -95.247892962731001, 29.553772158607192 ], [ -95.247930962684293, 29.553910159214478 ], [ -95.247936963010659, 29.554009158937344 ], [ -95.247886962647272, 29.554097159020397 ], [ -95.247773962884963, 29.55425615862443 ], [ -95.247748963358788, 29.554333158862214 ], [ -95.247691962830871, 29.55444915870056 ], [ -95.247616963038766, 29.554537158585696 ], [ -95.247553963020664, 29.5546411586642 ], [ -95.247522963009857, 29.554751159035437 ], [ -95.247522962431873, 29.554889158555916 ], [ -95.247534962743885, 29.554971159209 ], [ -95.247786963296008, 29.555340159197833 ], [ -95.247849962677478, 29.555406158920903 ], [ -95.247981963329323, 29.555515158700747 ], [ -95.248170963130377, 29.555708159031678 ], [ -95.248233963409319, 29.555713159391686 ], [ -95.248321963495314, 29.555708159129924 ], [ -95.248390962753248, 29.555680159177083 ], [ -95.248535962836272, 29.555598158925076 ], [ -95.24868696311934, 29.555482158966569 ], [ -95.249025963266917, 29.555273159272691 ], [ -95.249094963535669, 29.555246159234247 ], [ -95.249440963622249, 29.555251159381207 ], [ -95.249629963013632, 29.555245158974721 ], [ -95.249692963619751, 29.555234159369004 ], [ -95.249767963456605, 29.555196159436846 ], [ -95.249874963973227, 29.555124158741922 ], [ -95.24995696366085, 29.555130158761887 ], [ -95.25000696378703, 29.555168159046502 ], [ -95.250327963791136, 29.555354158742087 ], [ -95.250572963521876, 29.555447159341671 ], [ -95.250805963579012, 29.555508159369719 ], [ -95.251057963765035, 29.555497159108857 ], [ -95.251365964218579, 29.55540915910408 ], [ -95.251805964441587, 29.555222159061429 ], [ -95.252063963791642, 29.555074158964015 ], [ -95.252503963869898, 29.554750158475688 ], [ -95.252768963911279, 29.55450815853473 ], [ -95.253114964174074, 29.55412315872832 ], [ -95.253347964036436, 29.553843158334626 ], [ -95.253498964346548, 29.553733158160888 ], [ -95.253630964559051, 29.553689158416883 ], [ -95.253705963943801, 29.553695158637758 ], [ -95.25376296493306, 29.553711158859741 ], [ -95.253862964515008, 29.553783158287271 ], [ -95.253958964370753, 29.553948158811043 ], [ -95.255193964594227, 29.552524158037723 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 716, "Tract": "48039662200", "Area_SqMi": 36.398576428509799, "total_2009": 1113, "total_2010": 1132, "total_2011": 1022, "total_2012": 1159, "total_2013": 1161, "total_2014": 1294, "total_2015": 1324, "total_2016": 1185, "total_2017": 1212, "total_2018": 1249, "total_2019": 1168, "total_2020": 1086, "age1": 290, "age2": 492, "age3": 243, "earn1": 268, "earn2": 338, "earn3": 419, "naics_s01": 33, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 132, "naics_s06": 5, "naics_s07": 202, "naics_s08": 0, "naics_s09": 0, "naics_s10": 39, "naics_s11": 9, "naics_s12": 59, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 157, "naics_s17": 32, "naics_s18": 217, "naics_s19": 30, "naics_s20": 68, "race1": 814, "race2": 134, "race3": 8, "race4": 44, "race5": 0, "race6": 25, "ethnicity1": 691, "ethnicity2": 334, "edu1": 144, "edu2": 177, "edu3": 249, "edu4": 165, "Shape_Length": 141710.93460588562, "Shape_Area": 1014730014.0406924, "total_2021": 1082, "total_2022": 1025 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.449785001926841, 29.261668092070757 ], [ -95.449645002297146, 29.26105109181853 ], [ -95.44945000192827, 29.260181091833793 ], [ -95.449249001678794, 29.259285091570767 ], [ -95.449087001769811, 29.258562091530919 ], [ -95.447994001256106, 29.253684090302951 ], [ -95.446806000776093, 29.248086089449679 ], [ -95.446119000714674, 29.245004088615751 ], [ -95.445566999824976, 29.24262508772977 ], [ -95.445163999702018, 29.240887088007288 ], [ -95.445033000024921, 29.240322087616981 ], [ -95.445014999746675, 29.24024308790791 ], [ -95.444849999878372, 29.239613087565509 ], [ -95.444820000149051, 29.239498087778532 ], [ -95.443882999245076, 29.235908086841498 ], [ -95.443305998980151, 29.233691086037759 ], [ -95.442890998817361, 29.232173086410537 ], [ -95.442376999120953, 29.230291085652883 ], [ -95.442077998634872, 29.229225085263703 ], [ -95.441462998703187, 29.227067085459922 ], [ -95.439981997863669, 29.221582083983282 ], [ -95.439793997966603, 29.220886084034987 ], [ -95.438073996621654, 29.214557082706857 ], [ -95.436764997023744, 29.209655081828313 ], [ -95.436575996310452, 29.208972081448405 ], [ -95.435708996135716, 29.205831080689684 ], [ -95.435669996554012, 29.205676080985487 ], [ -95.435468995706501, 29.204875080446875 ], [ -95.435462995983642, 29.204853080658726 ], [ -95.435435995755512, 29.204743080670283 ], [ -95.435266995541014, 29.204033080553749 ], [ -95.435058995960176, 29.203164080053565 ], [ -95.434966996066677, 29.202709080552982 ], [ -95.434942995978261, 29.202589080576928 ], [ -95.43491899631465, 29.202484079782614 ], [ -95.434737995499788, 29.201699080328417 ], [ -95.434709995906985, 29.201576079962617 ], [ -95.43445799592439, 29.200132079759243 ], [ -95.434242995918993, 29.198752079820373 ], [ -95.434223995288193, 29.19863407938557 ], [ -95.434120995095427, 29.197973079409998 ], [ -95.434018995737773, 29.1972580791826 ], [ -95.433962995387148, 29.196781078607202 ], [ -95.43370699531927, 29.193644078038851 ], [ -95.433661995572066, 29.193049078696443 ], [ -95.433620994869926, 29.192261078069009 ], [ -95.433562995063895, 29.191407078123436 ], [ -95.433496995342807, 29.190184077608407 ], [ -95.433471995351923, 29.189846077536885 ], [ -95.43346899442254, 29.189803077727749 ], [ -95.433446995228479, 29.189497077422232 ], [ -95.433383994587743, 29.188629076948533 ], [ -95.43334599517388, 29.188095077384585 ], [ -95.432960994383208, 29.182602076542331 ], [ -95.431075994335956, 29.182622076543957 ], [ -95.429103992982448, 29.182658076412785 ], [ -95.42895499379469, 29.182656075987378 ], [ -95.428842993304158, 29.18265407592537 ], [ -95.428730993752779, 29.182627075867746 ], [ -95.428486992995204, 29.182545076632543 ], [ -95.428357992841498, 29.182516075898647 ], [ -95.42825799353291, 29.182502076306346 ], [ -95.428162993539289, 29.18249907620195 ], [ -95.423946992368343, 29.182574076764009 ], [ -95.423164992236735, 29.182588076785965 ], [ -95.422786991568799, 29.182592076706563 ], [ -95.422775991944647, 29.181774075813305 ], [ -95.421229991011828, 29.181741076686631 ], [ -95.419124990465633, 29.181779076556577 ], [ -95.419146990623105, 29.18264807652432 ], [ -95.419194990588906, 29.184931077342501 ], [ -95.414845990114387, 29.185021076739204 ], [ -95.414336989700985, 29.185025077384843 ], [ -95.413119989028459, 29.185045077249761 ], [ -95.411923989281561, 29.185067076912073 ], [ -95.410715989357811, 29.185091077094324 ], [ -95.410264988405373, 29.18509607764846 ], [ -95.408107988202943, 29.185135077231671 ], [ -95.407352987878966, 29.186313077365529 ], [ -95.406204987747614, 29.188095077938847 ], [ -95.405797987746894, 29.188736078645963 ], [ -95.405262987662866, 29.189521078488983 ], [ -95.405114988110853, 29.189738078575601 ], [ -95.404655987754396, 29.190468078756275 ], [ -95.404576987104903, 29.190579078706886 ], [ -95.404373987377312, 29.190863078827714 ], [ -95.403702987880578, 29.191789078568959 ], [ -95.403565987514995, 29.191958079117452 ], [ -95.403097986926042, 29.192569079035049 ], [ -95.402831987672286, 29.192898079508357 ], [ -95.40266098721888, 29.193111078876861 ], [ -95.402262987070486, 29.193616079196378 ], [ -95.401836987007499, 29.19415707986996 ], [ -95.394988985192711, 29.202847081699193 ], [ -95.39484798520779, 29.203026081980337 ], [ -95.393468985592662, 29.204777081911736 ], [ -95.393281985315738, 29.205014081906331 ], [ -95.393165985099088, 29.205157081688824 ], [ -95.391720984950226, 29.206941082329898 ], [ -95.391131984923675, 29.207692082333089 ], [ -95.387092984133375, 29.212845083702199 ], [ -95.383713983521517, 29.217138085271621 ], [ -95.383446983231522, 29.217475084962867 ], [ -95.38223498267395, 29.219017085588192 ], [ -95.381327983291229, 29.220158085842346 ], [ -95.378973982080026, 29.223119086310362 ], [ -95.376137981785334, 29.226732086875245 ], [ -95.373657981178624, 29.229889087413902 ], [ -95.365541979802117, 29.240211090645225 ], [ -95.364396979501791, 29.24163709042001 ], [ -95.362239978462995, 29.244384091292162 ], [ -95.361571978346561, 29.245236091129893 ], [ -95.361491978747338, 29.245337091560888 ], [ -95.361055978630375, 29.245873091549409 ], [ -95.360726978903088, 29.246293091319739 ], [ -95.359928978380921, 29.247314092047169 ], [ -95.359498978316935, 29.247856091970778 ], [ -95.358247978442151, 29.249450091975746 ], [ -95.358051978576327, 29.249698092559491 ], [ -95.356247977652785, 29.251989092884131 ], [ -95.354120977277816, 29.254715093763355 ], [ -95.352165976598926, 29.257237094427605 ], [ -95.350660976260471, 29.259095094620481 ], [ -95.350291977013299, 29.259561094255673 ], [ -95.348221975790295, 29.262164095206156 ], [ -95.347140976310428, 29.263514095790796 ], [ -95.343738975151723, 29.267836096560956 ], [ -95.342873975301941, 29.268876096873562 ], [ -95.342495975068559, 29.269331097359213 ], [ -95.342063974804049, 29.269851096811287 ], [ -95.338307974539575, 29.273868097848112 ], [ -95.336798973839791, 29.27551209829765 ], [ -95.335539973037527, 29.276884098788688 ], [ -95.334618973674196, 29.277888099154509 ], [ -95.331598972991557, 29.281064099441593 ], [ -95.331678972820526, 29.281135099836906 ], [ -95.332801972878769, 29.281502099463292 ], [ -95.333376973318451, 29.281754099845951 ], [ -95.335231973825429, 29.282213099975749 ], [ -95.335754973425608, 29.282648099980428 ], [ -95.335782973995023, 29.282711099581608 ], [ -95.335885973669761, 29.282946099772936 ], [ -95.335832974075856, 29.283657100348133 ], [ -95.335779973696617, 29.284481100684218 ], [ -95.3370079737673, 29.28553610059631 ], [ -95.337608974622043, 29.285719100712221 ], [ -95.339307975184553, 29.285605100648588 ], [ -95.339778975147041, 29.2857651003103 ], [ -95.340143974961777, 29.286040100054251 ], [ -95.340692975476344, 29.286270100299586 ], [ -95.341528975184886, 29.28643010028793 ], [ -95.342521975427402, 29.287141100781852 ], [ -95.342835975395161, 29.2872781008261 ], [ -95.343279975518499, 29.287347100948264 ], [ -95.344014975679698, 29.287233100794484 ], [ -95.344612976750597, 29.287141100147558 ], [ -95.344978976198234, 29.287302100191891 ], [ -95.345239976255911, 29.288287100417456 ], [ -95.345259976018312, 29.288298100662338 ], [ -95.345369976454904, 29.288356100450223 ], [ -95.345396976077069, 29.288539100552175 ], [ -95.346258976601931, 29.28943310059709 ], [ -95.346519976904233, 29.290166100983722 ], [ -95.347381976906163, 29.291037101420041 ], [ -95.348400977233723, 29.291449101709656 ], [ -95.348555977661704, 29.29159310173927 ], [ -95.348845977697223, 29.291862101258932 ], [ -95.349028977163442, 29.292297101730703 ], [ -95.349289978096351, 29.292549101792368 ], [ -95.349916978164003, 29.292755101324762 ], [ -95.350569978081865, 29.293328102007553 ], [ -95.350961978623303, 29.294039101493251 ], [ -95.351484978459112, 29.294474101557558 ], [ -95.352060978851355, 29.294789101854427 ], [ -95.35266097882733, 29.295116101734727 ], [ -95.353522979116903, 29.295711102429188 ], [ -95.354176978638321, 29.296009102528568 ], [ -95.354829979346746, 29.296170101987194 ], [ -95.355430979510373, 29.296491102049728 ], [ -95.356031979980187, 29.297018102216647 ], [ -95.35634597981246, 29.297086101905933 ], [ -95.356763979962793, 29.296972102156658 ], [ -95.356840979676562, 29.296932102625846 ], [ -95.357678980323797, 29.296491101859885 ], [ -95.358802979997364, 29.296170101523856 ], [ -95.359507980736851, 29.296056102263432 ], [ -95.360553980375713, 29.295460102053475 ], [ -95.361363981395186, 29.295667101364756 ], [ -95.362095981587899, 29.296010101569586 ], [ -95.362333981393704, 29.296029101557384 ], [ -95.364447981436726, 29.296194102035276 ], [ -95.366146982646001, 29.296583101946812 ], [ -95.367610982738967, 29.296492102154549 ], [ -95.368054982967621, 29.2966291021384 ], [ -95.369185982995575, 29.297352102079408 ], [ -95.369309983109176, 29.297431102190316 ], [ -95.369701983471728, 29.297866101935977 ], [ -95.369910983637553, 29.298256101743384 ], [ -95.3701719836276, 29.299287102000282 ], [ -95.370694983313001, 29.29979110218774 ], [ -95.370772983000762, 29.300066102555043 ], [ -95.370798983944141, 29.301303102802375 ], [ -95.371100983500568, 29.301749102508548 ], [ -95.371373983587119, 29.302151103148272 ], [ -95.371400984137168, 29.302288102836641 ], [ -95.371635983428362, 29.302380102761035 ], [ -95.372079983840564, 29.302815103361329 ], [ -95.372419984181107, 29.303319103299739 ], [ -95.372680984530106, 29.303457103118458 ], [ -95.373517984339969, 29.303502103215081 ], [ -95.374484984444962, 29.304281103395422 ], [ -95.375216985005238, 29.30457910289822 ], [ -95.376287985607092, 29.305198103279402 ], [ -95.377385985506194, 29.305175103368246 ], [ -95.377986985443727, 29.305312103151394 ], [ -95.379084986088003, 29.306160103818506 ], [ -95.379581985656586, 29.306320103401347 ], [ -95.380391986726679, 29.306183103318663 ], [ -95.381147985933922, 29.305954102809174 ], [ -95.381829986908784, 29.305747103165608 ], [ -95.382874986767078, 29.305220102790134 ], [ -95.383998986792207, 29.305243103175073 ], [ -95.385749987136165, 29.30448710257885 ], [ -95.386220987334141, 29.304579102766709 ], [ -95.386952988292535, 29.305060102658018 ], [ -95.387736988038483, 29.305311103103854 ], [ -95.388782988608, 29.305838102927005 ], [ -95.388929988560093, 29.305862102805985 ], [ -95.389618988322056, 29.305976102622672 ], [ -95.390611988405254, 29.306457103362838 ], [ -95.39123998938129, 29.306365102593187 ], [ -95.392520988906057, 29.305792102776785 ], [ -95.393199989602905, 29.305929102661725 ], [ -95.39329298973739, 29.305976102908602 ], [ -95.393696990139588, 29.306181103172158 ], [ -95.394271989687766, 29.306204102448604 ], [ -95.395578990529913, 29.30650210307331 ], [ -95.396179990773234, 29.306433102626738 ], [ -95.397198990185714, 29.306020102557238 ], [ -95.397267990201101, 29.306028103077384 ], [ -95.398767990776221, 29.306203103093029 ], [ -95.40038799172882, 29.306776103212613 ], [ -95.400858991069668, 29.306730102506872 ], [ -95.401407992009013, 29.306478102736293 ], [ -95.402269992185936, 29.306340103020005 ], [ -95.402870991973373, 29.305882102295097 ], [ -95.403341991886833, 29.305217102387427 ], [ -95.403654991656595, 29.305057102109625 ], [ -95.405039992344939, 29.304713101905609 ], [ -95.405467992414131, 29.304777102046316 ], [ -95.405797992350372, 29.304827101842548 ], [ -95.406280993095692, 29.305200102130083 ], [ -95.406293992587223, 29.305210102695785 ], [ -95.406686992565838, 29.305514101927077 ], [ -95.40802099338282, 29.306224102119526 ], [ -95.408333993436173, 29.306568102762011 ], [ -95.408857993691271, 29.307415102891003 ], [ -95.409798994269934, 29.308354103016303 ], [ -95.411288994589839, 29.309064102855988 ], [ -95.41191599424171, 29.309155102872896 ], [ -95.412386994607402, 29.309087103057049 ], [ -95.412909994661462, 29.309132103250402 ], [ -95.413588995356818, 29.309453103208252 ], [ -95.414242994996926, 29.309384102935603 ], [ -95.414921994782873, 29.309384102616331 ], [ -95.416490996074884, 29.309887102930599 ], [ -95.416725996213032, 29.309864102837864 ], [ -95.416935996158102, 29.310093102667313 ], [ -95.417144995392647, 29.3106891027054 ], [ -95.41730199549032, 29.310964102937568 ], [ -95.417955996515374, 29.311651103576871 ], [ -95.418478996196399, 29.312429103243769 ], [ -95.420440996419401, 29.316117103962707 ], [ -95.420623996474546, 29.316598104591915 ], [ -95.420636997170106, 29.317285104116994 ], [ -95.421954997269296, 29.31736410449917 ], [ -95.422373997330851, 29.317389104077947 ], [ -95.42438599847145, 29.317509104227518 ], [ -95.42499299865338, 29.317545104132545 ], [ -95.425463998111383, 29.317573104248549 ], [ -95.425287997739105, 29.3099341026325 ], [ -95.425267997533425, 29.309290102220444 ], [ -95.425234997985626, 29.308244102023394 ], [ -95.425242997924542, 29.307083101761894 ], [ -95.425300998053643, 29.306147102267488 ], [ -95.425389997936392, 29.305047101230105 ], [ -95.425529997507638, 29.303958101641772 ], [ -95.425699997799114, 29.302951100891946 ], [ -95.426013997675383, 29.301607100845061 ], [ -95.426247997262067, 29.30064210072775 ], [ -95.42642099784284, 29.300028100629223 ], [ -95.426928997375569, 29.298474099814261 ], [ -95.427410998316375, 29.297294100305962 ], [ -95.427949997866435, 29.296051099611528 ], [ -95.428082997781587, 29.29578809942295 ], [ -95.428756997614684, 29.294458099356014 ], [ -95.429451998445685, 29.293269099457838 ], [ -95.430062998717915, 29.292341098598197 ], [ -95.431182998086527, 29.290590098066971 ], [ -95.43417699868867, 29.285964097220084 ], [ -95.434779999486068, 29.28501409719091 ], [ -95.434960999237873, 29.284728097303876 ], [ -95.436008999553749, 29.283112097001048 ], [ -95.437381000207893, 29.28098409601191 ], [ -95.438480000009406, 29.279279095576637 ], [ -95.439704000434347, 29.277362095305573 ], [ -95.440694999891207, 29.275841094894734 ], [ -95.443980000855873, 29.270755093759515 ], [ -95.446617001532076, 29.266645092719259 ], [ -95.447285001402179, 29.265622092907453 ], [ -95.448478001986956, 29.263751092370942 ], [ -95.449785001926841, 29.261668092070757 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 717, "Tract": "48039661200", "Area_SqMi": 1.3796257425579288, "total_2009": 1893, "total_2010": 2100, "total_2011": 2186, "total_2012": 5211, "total_2013": 5500, "total_2014": 5513, "total_2015": 5627, "total_2016": 5592, "total_2017": 5627, "total_2018": 5920, "total_2019": 6063, "total_2020": 5548, "age1": 962, "age2": 3620, "age3": 1289, "earn1": 734, "earn2": 1773, "earn3": 3364, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 123, "naics_s05": 17, "naics_s06": 129, "naics_s07": 221, "naics_s08": 17, "naics_s09": 14, "naics_s10": 82, "naics_s11": 17, "naics_s12": 8, "naics_s13": 0, "naics_s14": 9, "naics_s15": 4652, "naics_s16": 95, "naics_s17": 22, "naics_s18": 429, "naics_s19": 36, "naics_s20": 0, "race1": 4530, "race2": 985, "race3": 41, "race4": 217, "race5": 8, "race6": 90, "ethnicity1": 4146, "ethnicity2": 1725, "edu1": 868, "edu2": 1243, "edu3": 1519, "edu4": 1279, "Shape_Length": 35356.526712371109, "Shape_Area": 38461604.449457958, "total_2021": 5728, "total_2022": 5871 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.251153956699568, 29.391734125540108 ], [ -95.251677956396648, 29.390424124565005 ], [ -95.249526956275332, 29.394004125555746 ], [ -95.248407956624888, 29.395868126511385 ], [ -95.248277956731243, 29.396012125886873 ], [ -95.248008956071132, 29.396409126351237 ], [ -95.247822955729205, 29.396691126038579 ], [ -95.247741956426268, 29.396815126287777 ], [ -95.247484955597358, 29.397156126561857 ], [ -95.247215955554722, 29.397464126861227 ], [ -95.247120956159918, 29.397568126862428 ], [ -95.246856956081615, 29.39783312635463 ], [ -95.246777955839335, 29.397914126438422 ], [ -95.246677956278859, 29.39801512650093 ], [ -95.246280955593718, 29.398395127121745 ], [ -95.245608955520979, 29.399007126977857 ], [ -95.244745955114922, 29.399763127422009 ], [ -95.244413954944889, 29.400066127448639 ], [ -95.243827955345722, 29.400508127724912 ], [ -95.243464954755268, 29.400741127299629 ], [ -95.24268295495888, 29.401172127117992 ], [ -95.242149954962812, 29.401438127138718 ], [ -95.24082095496729, 29.401903127927827 ], [ -95.24029195480675, 29.402056127889395 ], [ -95.239613953902634, 29.402287127493395 ], [ -95.239327954223867, 29.40238812768294 ], [ -95.239067953797175, 29.402480127775373 ], [ -95.238631954034147, 29.40266312746903 ], [ -95.238600954320134, 29.402676127924924 ], [ -95.238225953665051, 29.402856127830816 ], [ -95.237629953827536, 29.403175128080637 ], [ -95.236803954062097, 29.40368312852344 ], [ -95.236186953715773, 29.404108128119148 ], [ -95.235783953467717, 29.404442128552503 ], [ -95.23523895305182, 29.404921128214159 ], [ -95.234440953329255, 29.405757128268544 ], [ -95.233639952627243, 29.40680012872 ], [ -95.233045952955422, 29.407837129505836 ], [ -95.232748953178088, 29.408450128875973 ], [ -95.232481952817338, 29.408983129074855 ], [ -95.232221952902478, 29.409504129862366 ], [ -95.231991952809807, 29.40995112975763 ], [ -95.231514952441202, 29.410926130105111 ], [ -95.231286952664718, 29.411507129563024 ], [ -95.231156952409492, 29.412087130219572 ], [ -95.23094595227812, 29.412636129912261 ], [ -95.230687952259615, 29.413165130513658 ], [ -95.230527952559257, 29.413494130184755 ], [ -95.230272952749857, 29.414044130136588 ], [ -95.229981951955565, 29.414653130351411 ], [ -95.229262952493926, 29.416105130789408 ], [ -95.229001952079031, 29.416631131238642 ], [ -95.228705952261308, 29.417462131732592 ], [ -95.228387951728308, 29.418430131373309 ], [ -95.228151951944412, 29.419450131409651 ], [ -95.22807795185598, 29.419745131486838 ], [ -95.228040951958292, 29.419951131543638 ], [ -95.228013952472139, 29.420105131875921 ], [ -95.227918952044462, 29.420550131735254 ], [ -95.227779951777848, 29.421245132519637 ], [ -95.227686951881012, 29.421667131920746 ], [ -95.227641951895322, 29.421932132141642 ], [ -95.22735795200596, 29.423213132502738 ], [ -95.227328952110014, 29.423347132132758 ], [ -95.227515951736819, 29.423421132967519 ], [ -95.227835952121836, 29.423548132140112 ], [ -95.228600952480392, 29.423796132305661 ], [ -95.228689952302631, 29.423825133048435 ], [ -95.229226952838374, 29.424005132322339 ], [ -95.230569953306926, 29.42445313254975 ], [ -95.232090953765535, 29.424995132701813 ], [ -95.234556953977403, 29.425834133224825 ], [ -95.234862954220731, 29.425947132728624 ], [ -95.237136954759023, 29.426730133028428 ], [ -95.238336954608201, 29.427141133100566 ], [ -95.239422955396634, 29.427514132896423 ], [ -95.240637955847646, 29.427923132769322 ], [ -95.241984956499778, 29.428391132982274 ], [ -95.243418956625021, 29.428890133594148 ], [ -95.243469956499425, 29.428907132749082 ], [ -95.243880956116357, 29.429044133192029 ], [ -95.24428495689547, 29.429179133591603 ], [ -95.244280956454901, 29.429070133092495 ], [ -95.244271956954947, 29.428803133470847 ], [ -95.244248956958643, 29.428289133345661 ], [ -95.244210956060968, 29.427469133109305 ], [ -95.244204956910025, 29.427323132463385 ], [ -95.244196956881467, 29.427157132534745 ], [ -95.244172956849141, 29.426637132301334 ], [ -95.244129956041306, 29.425733132278168 ], [ -95.244117956351985, 29.425461132525616 ], [ -95.244113956301433, 29.425241132304286 ], [ -95.244108956666167, 29.424996132536879 ], [ -95.244101956885586, 29.424672132279024 ], [ -95.244089956763887, 29.424072132068151 ], [ -95.244080956338976, 29.423849132088748 ], [ -95.244036956305791, 29.422921132260942 ], [ -95.244033955893613, 29.42286613166161 ], [ -95.244020955940002, 29.422549132279102 ], [ -95.24400995652563, 29.422118131760175 ], [ -95.243993956450467, 29.421482131944011 ], [ -95.24399095590843, 29.421189131222143 ], [ -95.243980955908086, 29.420804131216524 ], [ -95.243967956350161, 29.420305131126106 ], [ -95.24394695585039, 29.419480131498627 ], [ -95.243925956423212, 29.418630131427253 ], [ -95.2438959560359, 29.417798131092116 ], [ -95.243876956171533, 29.416937130788277 ], [ -95.243841955533426, 29.416243130165498 ], [ -95.243807955629777, 29.415082130372568 ], [ -95.243768955969372, 29.413790129786612 ], [ -95.243747955737831, 29.413200129673431 ], [ -95.24375095530786, 29.412713129833492 ], [ -95.24370795588051, 29.41148012942892 ], [ -95.24367595538358, 29.410361129249516 ], [ -95.243658955649266, 29.409209129424465 ], [ -95.243658955994547, 29.408697129338154 ], [ -95.243676955979183, 29.408424129163723 ], [ -95.243880955482808, 29.407667129206274 ], [ -95.244159955800242, 29.40654412816437 ], [ -95.244472956096132, 29.405305128149777 ], [ -95.244770955266887, 29.404152127567812 ], [ -95.245510955960881, 29.401513127449405 ], [ -95.245646955930951, 29.401031127153399 ], [ -95.245872956230201, 29.400492126971674 ], [ -95.245916955670751, 29.400384127203129 ], [ -95.246964956021515, 29.399140126891041 ], [ -95.247277956054575, 29.398802127082281 ], [ -95.247502955942423, 29.398498126901224 ], [ -95.248101956303017, 29.397562126981011 ], [ -95.248604955845636, 29.396660126424088 ], [ -95.250009957116788, 29.394353125867635 ], [ -95.250477956272647, 29.393590125341838 ], [ -95.250702956829841, 29.392982125915488 ], [ -95.251153956699568, 29.391734125540108 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 718, "Tract": "48039661000", "Area_SqMi": 16.483459158724315, "total_2009": 646, "total_2010": 795, "total_2011": 806, "total_2012": 770, "total_2013": 944, "total_2014": 879, "total_2015": 857, "total_2016": 915, "total_2017": 925, "total_2018": 861, "total_2019": 966, "total_2020": 937, "age1": 263, "age2": 483, "age3": 228, "earn1": 200, "earn2": 336, "earn3": 438, "naics_s01": 8, "naics_s02": 23, "naics_s03": 0, "naics_s04": 317, "naics_s05": 71, "naics_s06": 79, "naics_s07": 30, "naics_s08": 38, "naics_s09": 4, "naics_s10": 29, "naics_s11": 52, "naics_s12": 29, "naics_s13": 4, "naics_s14": 33, "naics_s15": 0, "naics_s16": 65, "naics_s17": 16, "naics_s18": 160, "naics_s19": 16, "naics_s20": 0, "race1": 825, "race2": 78, "race3": 10, "race4": 44, "race5": 1, "race6": 16, "ethnicity1": 636, "ethnicity2": 338, "edu1": 164, "edu2": 212, "edu3": 202, "edu4": 133, "Shape_Length": 114031.56285361582, "Shape_Area": 459530629.6229316, "total_2021": 874, "total_2022": 974 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355986986823169, 29.467291137439616 ], [ -95.356033986626429, 29.467146137032188 ], [ -95.354950986253812, 29.466777137721639 ], [ -95.353910986050892, 29.466424137524385 ], [ -95.352873985820253, 29.466072137114228 ], [ -95.351712986057635, 29.465678136976742 ], [ -95.350587985729177, 29.465294137186582 ], [ -95.349876985433212, 29.465053137481842 ], [ -95.349174985537175, 29.464814137468 ], [ -95.347550984995863, 29.464263136844355 ], [ -95.34480398428552, 29.463321137288524 ], [ -95.343573983586197, 29.46290113679111 ], [ -95.34263898372761, 29.462579137045164 ], [ -95.341218982692141, 29.462092136576498 ], [ -95.339625982976997, 29.461547136354319 ], [ -95.33823398196914, 29.461071136398878 ], [ -95.335104981378123, 29.460006136895313 ], [ -95.332716980159645, 29.459192136066651 ], [ -95.33193498074688, 29.458925136864462 ], [ -95.329885979370189, 29.458229136616051 ], [ -95.329768979303878, 29.458189136458181 ], [ -95.325958979007495, 29.456890136614465 ], [ -95.323032977528797, 29.455890136016205 ], [ -95.319782977012011, 29.454781136233727 ], [ -95.317002976157269, 29.453830135844655 ], [ -95.316411976322058, 29.453629136062474 ], [ -95.316084975633075, 29.453517136183859 ], [ -95.316002976485208, 29.453489135764244 ], [ -95.315808976011681, 29.453422136098599 ], [ -95.315620976101371, 29.453358136263876 ], [ -95.315476975980246, 29.453309135591898 ], [ -95.31536997568827, 29.453272135418462 ], [ -95.315287975869367, 29.453244135432303 ], [ -95.314524975953248, 29.452982136152972 ], [ -95.314380975790385, 29.452933136071781 ], [ -95.313146975176352, 29.452510135760832 ], [ -95.308457973695354, 29.450939135880468 ], [ -95.3064389729699, 29.450270135211696 ], [ -95.305347973196461, 29.449910135844803 ], [ -95.302005972486128, 29.448805135391737 ], [ -95.297168970994704, 29.447207134873391 ], [ -95.296293971187424, 29.446918135477986 ], [ -95.295614970839083, 29.446687134951837 ], [ -95.293397969930297, 29.445931135377915 ], [ -95.293384969695452, 29.44592713473153 ], [ -95.291035969382776, 29.445127134853436 ], [ -95.290399969614256, 29.444910134635528 ], [ -95.287837968383627, 29.444039135118103 ], [ -95.287392968407673, 29.443887134567525 ], [ -95.285178967574126, 29.443106134270753 ], [ -95.283882966863487, 29.442649134722188 ], [ -95.283384967109399, 29.442474135058944 ], [ -95.283075967404088, 29.442372134902008 ], [ -95.282499966911743, 29.442181134630765 ], [ -95.281550967109652, 29.441868134301256 ], [ -95.280325965888935, 29.441463134515196 ], [ -95.279525965838317, 29.441198134586653 ], [ -95.27840196579686, 29.44081513434779 ], [ -95.273705964621044, 29.439213134179578 ], [ -95.273413964539827, 29.43911413473462 ], [ -95.271780964324748, 29.438556134044326 ], [ -95.27090396408326, 29.438255134259872 ], [ -95.268685962756834, 29.437495133929666 ], [ -95.267349962973356, 29.437044133686438 ], [ -95.266919962999467, 29.436900134054941 ], [ -95.266275962156911, 29.436673133573525 ], [ -95.26409796176091, 29.435903134246718 ], [ -95.263703962215061, 29.435764133814871 ], [ -95.261028961341879, 29.434862133582339 ], [ -95.259543960744537, 29.434355133647475 ], [ -95.2594199605646, 29.434312133360532 ], [ -95.257534960137775, 29.433669133492451 ], [ -95.2564489594306, 29.433300133504904 ], [ -95.25545995992951, 29.432960133510736 ], [ -95.253037958509637, 29.432116133190036 ], [ -95.25238095870121, 29.431888133095921 ], [ -95.251921958955663, 29.431727133198383 ], [ -95.251015958602849, 29.431412133182654 ], [ -95.250619958462366, 29.431274133768838 ], [ -95.249918958014007, 29.431029133598589 ], [ -95.249714958515327, 29.431001133103155 ], [ -95.249646958166267, 29.430992133242007 ], [ -95.24883595835675, 29.430720133027723 ], [ -95.248783957503804, 29.430703133138859 ], [ -95.248728957861545, 29.430684133330978 ], [ -95.247971957158896, 29.430430133475262 ], [ -95.247500957620389, 29.430272133707696 ], [ -95.247261957350133, 29.430192133409978 ], [ -95.245735956984277, 29.429669132955087 ], [ -95.24556295653619, 29.429609133157925 ], [ -95.245082957012741, 29.429448133528876 ], [ -95.24428495689547, 29.429179133591603 ], [ -95.244320956872684, 29.429916132951369 ], [ -95.244332957124286, 29.430146133091625 ], [ -95.244374957073973, 29.431050133880206 ], [ -95.244395957260139, 29.431760133714445 ], [ -95.244409956680244, 29.431988133479845 ], [ -95.244435956378197, 29.432524133973697 ], [ -95.24443895715028, 29.432869134229669 ], [ -95.244410956576601, 29.433711134007218 ], [ -95.244449957383182, 29.43443713470359 ], [ -95.244511957330275, 29.435629134628485 ], [ -95.244588956635027, 29.436351134433242 ], [ -95.244643957388121, 29.438087135043386 ], [ -95.244671957451033, 29.438587135570099 ], [ -95.244684957219022, 29.438806135205105 ], [ -95.244690956847506, 29.439074135038556 ], [ -95.244803957662953, 29.441123135786835 ], [ -95.244808956798522, 29.441178135482001 ], [ -95.244875957399003, 29.442956135999612 ], [ -95.244928957709718, 29.444052136231086 ], [ -95.244980957204234, 29.44576113644306 ], [ -95.245003957347578, 29.446431136525376 ], [ -95.245132958000397, 29.449719137352815 ], [ -95.245137958256123, 29.44986513719514 ], [ -95.245177957402518, 29.451108138053627 ], [ -95.245209957911953, 29.451885137433088 ], [ -95.245268957506241, 29.453215138332986 ], [ -95.245261958097771, 29.453404137842426 ], [ -95.245270957920951, 29.453687138424129 ], [ -95.245286958038491, 29.453983138715827 ], [ -95.245368958236469, 29.456004138648183 ], [ -95.245369958265982, 29.456668138451629 ], [ -95.245424958406687, 29.458421139549454 ], [ -95.245433958424258, 29.458592138840629 ], [ -95.245482958548507, 29.460264139237253 ], [ -95.245529958025642, 29.461313139548803 ], [ -95.245566958884055, 29.46284313977489 ], [ -95.245569958634803, 29.462995140504443 ], [ -95.245683958499157, 29.466326140597744 ], [ -95.24572095885064, 29.467848140751936 ], [ -95.245720959106507, 29.469610141790263 ], [ -95.245743958334998, 29.470423141702874 ], [ -95.245814958939306, 29.472772142242757 ], [ -95.245857959232723, 29.474158142375298 ], [ -95.245864959127246, 29.474360142443349 ], [ -95.245865959466428, 29.47438014226158 ], [ -95.245866958796583, 29.474435142873485 ], [ -95.245879958981931, 29.474746142580244 ], [ -95.245908959018138, 29.475759142809814 ], [ -95.245981958811612, 29.478202143126882 ], [ -95.245994958816567, 29.478592143738428 ], [ -95.24603295900036, 29.480349143892152 ], [ -95.247173959497218, 29.480314143212016 ], [ -95.248447960151708, 29.48028314336252 ], [ -95.250004960435831, 29.480241143373021 ], [ -95.250432960404368, 29.48022714353765 ], [ -95.251877960292205, 29.480187143425777 ], [ -95.252192960892913, 29.480177143240319 ], [ -95.254761961983817, 29.480104143308946 ], [ -95.25526196149282, 29.48009114319176 ], [ -95.256784962071038, 29.480047142848328 ], [ -95.257518962504321, 29.480028143061848 ], [ -95.259066963053058, 29.479983143288354 ], [ -95.259829962610922, 29.479973143347294 ], [ -95.261346962763909, 29.479951143525216 ], [ -95.262245963750175, 29.479940143304251 ], [ -95.262338963892248, 29.479939142847698 ], [ -95.262676963448172, 29.479922143022726 ], [ -95.262833963517025, 29.479807143457261 ], [ -95.262835963446065, 29.479723143191411 ], [ -95.262808963366098, 29.478420142748067 ], [ -95.262781963404109, 29.477272142859182 ], [ -95.262747963001061, 29.475897141843888 ], [ -95.262730963077459, 29.475223141872462 ], [ -95.262674963422256, 29.473760141945764 ], [ -95.262652963358107, 29.47323314164802 ], [ -95.262695963740285, 29.473104142089646 ], [ -95.262851963448227, 29.473022141911244 ], [ -95.263780963248337, 29.473013141220491 ], [ -95.264206963340229, 29.473006141486735 ], [ -95.265772964497756, 29.472986141486171 ], [ -95.265886963747107, 29.472986141813738 ], [ -95.267583964031957, 29.472957141417073 ], [ -95.268979965349686, 29.47293314100844 ], [ -95.27037896522242, 29.472907141535998 ], [ -95.270478964778334, 29.472906141403868 ], [ -95.271778965925705, 29.472877141732933 ], [ -95.273635966262205, 29.472858141584386 ], [ -95.275226966408837, 29.472847140889904 ], [ -95.275275966332458, 29.472941140890551 ], [ -95.275388966508274, 29.47295514123126 ], [ -95.275818966395406, 29.472954140770376 ], [ -95.276892967373158, 29.472929140792516 ], [ -95.278322967302458, 29.472902140941642 ], [ -95.278662966883644, 29.472896140860318 ], [ -95.280424967783176, 29.472880140968787 ], [ -95.281126968167499, 29.472861141401598 ], [ -95.281431967909171, 29.472863140634747 ], [ -95.281545968126622, 29.472865140767581 ], [ -95.283523968312423, 29.472836141013758 ], [ -95.283674968372807, 29.472833140871639 ], [ -95.283947968531493, 29.472835140715048 ], [ -95.284131968984752, 29.472835140538955 ], [ -95.28538396929487, 29.472842140435557 ], [ -95.285628968743652, 29.47289614114165 ], [ -95.285720969523652, 29.472940141244415 ], [ -95.285855968779046, 29.473003140594685 ], [ -95.288427969471272, 29.474876141545131 ], [ -95.288893970333106, 29.475220141191492 ], [ -95.28900296962388, 29.475301141618655 ], [ -95.289774970767198, 29.475870141561408 ], [ -95.291095970650716, 29.476851141519901 ], [ -95.291870971097708, 29.477428141513883 ], [ -95.292079970997847, 29.477584141388345 ], [ -95.292094970644598, 29.477595141434005 ], [ -95.29231897103277, 29.477761141636758 ], [ -95.292442971100684, 29.477854142066462 ], [ -95.29265397113106, 29.477435141160914 ], [ -95.292697970824349, 29.477394141483959 ], [ -95.292845971569818, 29.47725514192572 ], [ -95.293117971115123, 29.476978141111218 ], [ -95.293402971393476, 29.476687141353917 ], [ -95.293857971136305, 29.476222140910526 ], [ -95.293865970849822, 29.476214141501639 ], [ -95.294062970968767, 29.476013141490245 ], [ -95.295998971827331, 29.474040140423277 ], [ -95.296036972002014, 29.4740681408332 ], [ -95.297107972099838, 29.474853140424347 ], [ -95.2982979720354, 29.475727140688537 ], [ -95.298757972502074, 29.476067140773296 ], [ -95.299474972444443, 29.476607141183681 ], [ -95.300730972762096, 29.477559141449824 ], [ -95.301390972933334, 29.478060141244963 ], [ -95.301694973702197, 29.478280141865344 ], [ -95.301824973456931, 29.478382141762495 ], [ -95.302989973399491, 29.479273141653934 ], [ -95.303124974328739, 29.479377141833666 ], [ -95.303667973988098, 29.479787141290704 ], [ -95.30470397415553, 29.48054714164838 ], [ -95.305481974401772, 29.481164141961038 ], [ -95.305758974430944, 29.48138414174192 ], [ -95.306535974862584, 29.48196614193678 ], [ -95.30856997536813, 29.483493142521699 ], [ -95.311952976341288, 29.486023142568392 ], [ -95.31384897669956, 29.487438142688251 ], [ -95.314969977704109, 29.488272143451358 ], [ -95.317125977812665, 29.489875143431412 ], [ -95.318166978094993, 29.490623142996764 ], [ -95.31884897823663, 29.491113143256605 ], [ -95.318938978114673, 29.491181143073874 ], [ -95.319016978648207, 29.491240143317476 ], [ -95.319729979084983, 29.491781143335562 ], [ -95.320137978766695, 29.492085143665481 ], [ -95.3206289792696, 29.492454143753914 ], [ -95.32180797952276, 29.493337144223535 ], [ -95.324490980176094, 29.495344143949705 ], [ -95.324598979646638, 29.495425143936394 ], [ -95.325297980113618, 29.495949143926932 ], [ -95.325379979850226, 29.496017143907345 ], [ -95.327187980781332, 29.49741114429785 ], [ -95.327368980657198, 29.497557144481181 ], [ -95.327460980791543, 29.497643144893257 ], [ -95.327567980854568, 29.497925144595946 ], [ -95.328239981492089, 29.499756145026645 ], [ -95.328761981811979, 29.501114145534721 ], [ -95.32889798163859, 29.501549145624281 ], [ -95.329160981317358, 29.502151145742491 ], [ -95.329363981227772, 29.502705145624418 ], [ -95.329752981934163, 29.503738145915655 ], [ -95.330213981434966, 29.505060146039401 ], [ -95.330263982328347, 29.508247146845342 ], [ -95.330285981660353, 29.508992146451064 ], [ -95.33029098215458, 29.509752146602327 ], [ -95.330321982386224, 29.511799147635774 ], [ -95.330386982142741, 29.511891147460901 ], [ -95.330486982402078, 29.511976146974945 ], [ -95.330670982855324, 29.512062147100096 ], [ -95.330971982209149, 29.511524147111153 ], [ -95.331116982643664, 29.511300147332221 ], [ -95.331237982643344, 29.511111147378958 ], [ -95.331409982195993, 29.510908147452803 ], [ -95.331641982491846, 29.510646146858843 ], [ -95.331909982444927, 29.510357147404367 ], [ -95.332114982142386, 29.510184147250424 ], [ -95.332486982940097, 29.509889146681783 ], [ -95.333426983237089, 29.509122146312009 ], [ -95.333691983420223, 29.508914147079008 ], [ -95.334386982776252, 29.508328146703914 ], [ -95.334482983515244, 29.508234146818843 ], [ -95.335382983089616, 29.507296146062398 ], [ -95.336209983732104, 29.506454146039076 ], [ -95.337749983615012, 29.504884145805057 ], [ -95.337787984029461, 29.504847146029764 ], [ -95.339769984426084, 29.502771144908749 ], [ -95.341430985045946, 29.501018145104503 ], [ -95.341455985091557, 29.500992144787819 ], [ -95.34188698447231, 29.500559144247468 ], [ -95.342415984591142, 29.499981144235868 ], [ -95.343077984594032, 29.499259144666503 ], [ -95.343440984587104, 29.498907144716764 ], [ -95.344145985560942, 29.49815514446605 ], [ -95.344740985626871, 29.497542144053831 ], [ -95.346128986082604, 29.496106143646756 ], [ -95.347609986377847, 29.494562142863611 ], [ -95.349119985852113, 29.493047142498604 ], [ -95.349359985868489, 29.492795142880851 ], [ -95.349542985924359, 29.492564143222268 ], [ -95.349648986613829, 29.492413142372421 ], [ -95.349771986735476, 29.492255142918385 ], [ -95.349904986526056, 29.492045143047708 ], [ -95.350008986694533, 29.491849142199889 ], [ -95.350121986045139, 29.491624142246906 ], [ -95.350207986071624, 29.491426142966123 ], [ -95.350324986062532, 29.491163142492262 ], [ -95.3504059867047, 29.490895142520635 ], [ -95.350501986191887, 29.4904811420489 ], [ -95.350531986810282, 29.490282142208049 ], [ -95.350550986508566, 29.490013142184559 ], [ -95.350667986670089, 29.487489142099662 ], [ -95.350675986873824, 29.486783141410882 ], [ -95.350743985939403, 29.484380141430542 ], [ -95.350789985942953, 29.483270140945734 ], [ -95.350799986454447, 29.483123140780311 ], [ -95.350841985922983, 29.482802141116448 ], [ -95.350921986601236, 29.482420140841811 ], [ -95.351017986197888, 29.482109140263535 ], [ -95.351285986317365, 29.481491140657482 ], [ -95.351720986516781, 29.480482139900968 ], [ -95.352009986792936, 29.479829140147924 ], [ -95.352319986297218, 29.479131139585739 ], [ -95.353192986340716, 29.477134139125027 ], [ -95.353315986735169, 29.476852139256959 ], [ -95.353645986830045, 29.476167139264746 ], [ -95.35404498696137, 29.47524613903196 ], [ -95.354296986478445, 29.474676139300364 ], [ -95.354384987007791, 29.474447138818253 ], [ -95.354445987247104, 29.474222139118417 ], [ -95.354531986821712, 29.473891138494977 ], [ -95.354595986535514, 29.473590138359562 ], [ -95.354657987107643, 29.47324913868059 ], [ -95.354661986643748, 29.473216138321565 ], [ -95.354727986683528, 29.472600138491138 ], [ -95.354787986876929, 29.472116138400228 ], [ -95.355032986328396, 29.470042137813547 ], [ -95.35506198722986, 29.469876137547384 ], [ -95.355202986874929, 29.469270138168383 ], [ -95.355313987216491, 29.468950138069388 ], [ -95.355634987143262, 29.468136137308676 ], [ -95.355663986882433, 29.468041137641855 ], [ -95.355759986968522, 29.467810137299058 ], [ -95.355986986823169, 29.467291137439616 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 719, "Tract": "48039663100", "Area_SqMi": 39.224200573006797, "total_2009": 1660, "total_2010": 1330, "total_2011": 1428, "total_2012": 724, "total_2013": 784, "total_2014": 953, "total_2015": 740, "total_2016": 1307, "total_2017": 1382, "total_2018": 1228, "total_2019": 1236, "total_2020": 1271, "age1": 418, "age2": 859, "age3": 360, "earn1": 453, "earn2": 504, "earn3": 680, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 519, "naics_s05": 70, "naics_s06": 51, "naics_s07": 201, "naics_s08": 67, "naics_s09": 2, "naics_s10": 3, "naics_s11": 22, "naics_s12": 41, "naics_s13": 0, "naics_s14": 495, "naics_s15": 2, "naics_s16": 17, "naics_s17": 19, "naics_s18": 102, "naics_s19": 25, "naics_s20": 1, "race1": 1344, "race2": 188, "race3": 25, "race4": 54, "race5": 3, "race6": 23, "ethnicity1": 1018, "ethnicity2": 619, "edu1": 306, "edu2": 317, "edu3": 375, "edu4": 221, "Shape_Length": 163686.77114927463, "Shape_Area": 1093503579.0852127, "total_2021": 1392, "total_2022": 1637 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.556050020252627, 29.054359045788114 ], [ -95.556347020620507, 29.053913045178991 ], [ -95.556010020153522, 29.053754045240936 ], [ -95.552968019486187, 29.052437045584483 ], [ -95.55275602004393, 29.052345045337596 ], [ -95.550274018913825, 29.051276045306523 ], [ -95.549059018596637, 29.050427045364057 ], [ -95.547586018187062, 29.048964044581769 ], [ -95.546285017891222, 29.047884045001716 ], [ -95.546141017894385, 29.047856044265085 ], [ -95.545067017927707, 29.047649044408079 ], [ -95.543845017675324, 29.048028044515025 ], [ -95.542622017353793, 29.048789044680206 ], [ -95.541573017012198, 29.04947504468824 ], [ -95.540262016672386, 29.050160045360322 ], [ -95.538603016130224, 29.050843045859693 ], [ -95.537644016115664, 29.050992045880275 ], [ -95.536166015685936, 29.0505260451331 ], [ -95.535125014557138, 29.049831045081454 ], [ -95.534864014758568, 29.049677045077068 ], [ -95.534000014908571, 29.048522044740292 ], [ -95.533395014516941, 29.047523045259016 ], [ -95.533225014533599, 29.046755044593787 ], [ -95.533142013973759, 29.046141044628076 ], [ -95.533322014879758, 29.045068044634352 ], [ -95.533764014009378, 29.043919044105198 ], [ -95.534989014382745, 29.042928043752944 ], [ -95.536043014733977, 29.041398043300092 ], [ -95.537533015030405, 29.039717043482764 ], [ -95.537363015010371, 29.038873043093009 ], [ -95.537370015135537, 29.037569042506956 ], [ -95.536590015249658, 29.036952042865796 ], [ -95.534680013998269, 29.035870042659894 ], [ -95.533286014463059, 29.035864042655035 ], [ -95.530760013507305, 29.035930042926719 ], [ -95.529364012882041, 29.036307042682385 ], [ -95.527361012117964, 29.036375042934687 ], [ -95.525709012222663, 29.035908043024968 ], [ -95.524669011685233, 29.035059042891884 ], [ -95.523894011508602, 29.03336904265834 ], [ -95.523294011168687, 29.031678041674432 ], [ -95.521563010841462, 29.029907041882499 ], [ -95.519739010105638, 29.029055041121897 ], [ -95.518607009947573, 29.028973041443383 ], [ -95.517300009818797, 29.029044041638098 ], [ -95.516164009173735, 29.029729041427519 ], [ -95.514853009451613, 29.030490041596966 ], [ -95.51450100897722, 29.031179041896582 ], [ -95.514491009282338, 29.032866042709472 ], [ -95.514444008782178, 29.033333042645047 ], [ -95.514399009185709, 29.033786042883321 ], [ -95.51415200878165, 29.03473804271146 ], [ -95.514100008758348, 29.03494004300557 ], [ -95.514043009442688, 29.035165043281438 ], [ -95.513746008916172, 29.035712043480508 ], [ -95.51333800916089, 29.036466043602843 ], [ -95.513200008664185, 29.036539043574855 ], [ -95.511766008607751, 29.037303043643576 ], [ -95.510114007840997, 29.036835043431783 ], [ -95.507588007571371, 29.03682404310381 ], [ -95.505683006918701, 29.036700043872703 ], [ -95.505427007148739, 29.036683043732054 ], [ -95.50538200650881, 29.036680043547335 ], [ -95.504602006724099, 29.035980043241079 ], [ -95.504403006301587, 29.035797043229334 ], [ -95.504396006815583, 29.035755043235259 ], [ -95.504072006379445, 29.035460043262045 ], [ -95.503348005799694, 29.033444042771482 ], [ -95.503444006019137, 29.031761042582243 ], [ -95.503420006572767, 29.031647042230112 ], [ -95.503447006277653, 29.031178042263395 ], [ -95.503340006550474, 29.030650041968215 ], [ -95.502952006077152, 29.028940042138604 ], [ -95.50257300571792, 29.027956042132086 ], [ -95.502519005872614, 29.027728042069704 ], [ -95.50221100568632, 29.026928041983744 ], [ -95.500825005098278, 29.025441041125408 ], [ -95.500341005575109, 29.025362041648034 ], [ -95.499294004537319, 29.025664041286479 ], [ -95.498246004972884, 29.026196041980896 ], [ -95.497455004129435, 29.027343041479778 ], [ -95.496941004044572, 29.027539041987904 ], [ -95.496747004735482, 29.030540042535005 ], [ -95.496676003984234, 29.031680042932578 ], [ -95.496632004597913, 29.031830042997292 ], [ -95.496566004707987, 29.032869042899698 ], [ -95.495816003965842, 29.034401043354119 ], [ -95.494444004054827, 29.035005043293367 ], [ -95.492958003581379, 29.034924044021515 ], [ -95.49192300373474, 29.034325043265564 ], [ -95.491055003487361, 29.033087043625397 ], [ -95.49004500239495, 29.030120042657032 ], [ -95.489288002553792, 29.028877042156434 ], [ -95.489227002463153, 29.028836042634939 ], [ -95.489183002872238, 29.028761042833636 ], [ -95.488160001818741, 29.028280042009847 ], [ -95.486946002271424, 29.028204042636332 ], [ -95.486218002169991, 29.028402042197023 ], [ -95.484180000652273, 29.028956043058692 ], [ -95.483328001236501, 29.0304970428895 ], [ -95.482622000864708, 29.032028043594462 ], [ -95.481659000754135, 29.032714043645218 ], [ -95.480701000917392, 29.032709043716149 ], [ -95.479659000414671, 29.032244043213929 ], [ -95.479387999750287, 29.032056043262941 ], [ -95.478963999989006, 29.032065043325471 ], [ -95.478193999910573, 29.031376043261673 ], [ -95.47798899939076, 29.030542043142393 ], [ -95.477783999500403, 29.029715043438927 ], [ -95.477920999285217, 29.029453043141967 ], [ -95.477906999161419, 29.029377042609926 ], [ -95.477890999980659, 29.029288042779761 ], [ -95.477346999640972, 29.027989042793436 ], [ -95.477248999355851, 29.02785004265694 ], [ -95.476721999681942, 29.027106042542432 ], [ -95.476609999401688, 29.027319042471561 ], [ -95.476417999637334, 29.027674042346874 ], [ -95.474562998628372, 29.031107043316517 ], [ -95.472822998258877, 29.034385044102713 ], [ -95.472436998141362, 29.034983043867395 ], [ -95.471598998540259, 29.036305044845726 ], [ -95.471441998221664, 29.036693044938847 ], [ -95.471312998167264, 29.036996044947006 ], [ -95.471159998413853, 29.03756704505534 ], [ -95.47114099796265, 29.037667044588506 ], [ -95.471064997677075, 29.038058044996788 ], [ -95.471033998606615, 29.038335045038384 ], [ -95.470991998280653, 29.038711045277147 ], [ -95.471003998619267, 29.039191045122312 ], [ -95.471055998006221, 29.039765045273949 ], [ -95.471154998174114, 29.040334044983918 ], [ -95.471173998057864, 29.040446045264517 ], [ -95.471864998484847, 29.044599046242904 ], [ -95.471885999090475, 29.045055046370454 ], [ -95.471858998868385, 29.045572046402292 ], [ -95.471763999205734, 29.046070046685799 ], [ -95.471647998379424, 29.046527046667229 ], [ -95.471532999086733, 29.046838046562495 ], [ -95.471462998747413, 29.047045046501896 ], [ -95.471343998682173, 29.047354047081097 ], [ -95.47125499886647, 29.047554046831547 ], [ -95.471219998992325, 29.047658047325676 ], [ -95.470866998128187, 29.048269047301247 ], [ -95.47047699828039, 29.048797047161081 ], [ -95.469864998352037, 29.049422047409163 ], [ -95.469149997961765, 29.050013047617711 ], [ -95.468343997888709, 29.050481047194424 ], [ -95.467729998009233, 29.05080804760728 ], [ -95.464756997165068, 29.052356048001549 ], [ -95.464698997508378, 29.052386048305966 ], [ -95.464663997159064, 29.052404048203559 ], [ -95.463413996973287, 29.053043047870137 ], [ -95.462240996739951, 29.053682048653126 ], [ -95.462098996840311, 29.053759048881453 ], [ -95.462063996051555, 29.053778048358591 ], [ -95.461626996467899, 29.053986048561367 ], [ -95.461571996125414, 29.054012048662205 ], [ -95.461200996085651, 29.054197048166515 ], [ -95.461006996565175, 29.054286048546466 ], [ -95.460516995846845, 29.054543048978772 ], [ -95.459958996259687, 29.054821048510053 ], [ -95.459663995996692, 29.054999049077921 ], [ -95.459483996410768, 29.05512104897775 ], [ -95.458908995294792, 29.05559104933398 ], [ -95.458579995230735, 29.05585204936045 ], [ -95.458357995970488, 29.056034049225907 ], [ -95.458034995790911, 29.056339049073561 ], [ -95.457912995107975, 29.056452049318523 ], [ -95.457715995948718, 29.056711048844161 ], [ -95.457119994991842, 29.057419049500176 ], [ -95.456431995536704, 29.05819104959523 ], [ -95.456175995314211, 29.058405049624294 ], [ -95.45580299514863, 29.058706049639294 ], [ -95.454923994720403, 29.059445049902241 ], [ -95.45430299493141, 29.059942049584876 ], [ -95.453963994285189, 29.060216050072139 ], [ -95.453736994878597, 29.060398050232262 ], [ -95.453106994473345, 29.060904049871056 ], [ -95.452409994510816, 29.061496050847641 ], [ -95.452198994328214, 29.061664050809629 ], [ -95.452178994723241, 29.061681050025541 ], [ -95.45192199464833, 29.061854050356217 ], [ -95.451528994436146, 29.062126050843528 ], [ -95.451424993998458, 29.062187050942384 ], [ -95.451094994592765, 29.062379050620986 ], [ -95.450689993747076, 29.062567050370333 ], [ -95.45004899387699, 29.062983050345554 ], [ -95.449828993662777, 29.063046050728328 ], [ -95.449410993576706, 29.063200050548282 ], [ -95.448894993861941, 29.063359050507728 ], [ -95.448213993718468, 29.063543051051738 ], [ -95.448088993044053, 29.063041050539052 ], [ -95.447443993394373, 29.063184050586067 ], [ -95.446155992754328, 29.063235051039804 ], [ -95.44514399268904, 29.063263050821963 ], [ -95.443377991783109, 29.063365051414017 ], [ -95.442264992293801, 29.06345105125143 ], [ -95.440880991617092, 29.063496051550118 ], [ -95.440775991925932, 29.063504051037381 ], [ -95.440447991310194, 29.063531051365128 ], [ -95.439920991468938, 29.063552051045082 ], [ -95.439531991135809, 29.063588051689447 ], [ -95.439429991276512, 29.063595051586226 ], [ -95.43589999018937, 29.063810051304515 ], [ -95.433481989700113, 29.063975051747253 ], [ -95.43332298989553, 29.06398605141732 ], [ -95.431811989222979, 29.064145051691515 ], [ -95.431375989277143, 29.064198052008564 ], [ -95.430862989400339, 29.064253051758371 ], [ -95.42955698878815, 29.064378051522493 ], [ -95.429306988915357, 29.064390051538844 ], [ -95.426866988086218, 29.064533052298664 ], [ -95.426641987938581, 29.064543051831787 ], [ -95.426464987395519, 29.064550051851558 ], [ -95.42558998748855, 29.064587052219867 ], [ -95.424938987373807, 29.064620052340917 ], [ -95.424599987738731, 29.064627051646433 ], [ -95.424266987087819, 29.064645051659646 ], [ -95.424095987324819, 29.064664052223396 ], [ -95.423839987526719, 29.064663051617408 ], [ -95.423716987334984, 29.064669051778246 ], [ -95.423389987534691, 29.064673051941952 ], [ -95.423251987120793, 29.064668051880894 ], [ -95.422913987017552, 29.06468605226646 ], [ -95.422713986764506, 29.064714052045101 ], [ -95.422306987113345, 29.064758051686603 ], [ -95.421720986428099, 29.064927052515316 ], [ -95.421698986546374, 29.064934052284315 ], [ -95.421295986283454, 29.065070052306311 ], [ -95.420852985993832, 29.065241052439639 ], [ -95.420521986480608, 29.065403052554164 ], [ -95.420122986390197, 29.065665052513101 ], [ -95.419604985705604, 29.066078052527704 ], [ -95.419375985853421, 29.066300052870602 ], [ -95.419182985789917, 29.066487052718127 ], [ -95.417519986091719, 29.067990052454995 ], [ -95.415672985028536, 29.069667053508493 ], [ -95.415060984952504, 29.070227053338257 ], [ -95.414636984629098, 29.070636053767373 ], [ -95.411745984347547, 29.073218054303499 ], [ -95.411010983948202, 29.073872054456835 ], [ -95.41079898396228, 29.074054054550562 ], [ -95.410344984554044, 29.074464054812587 ], [ -95.410134983716659, 29.074585054705413 ], [ -95.409997983703391, 29.074853054574632 ], [ -95.410135984301775, 29.075344054621127 ], [ -95.410514984243747, 29.076642054634533 ], [ -95.410744984234142, 29.077392054898795 ], [ -95.411151984635069, 29.078840055426632 ], [ -95.411224984236924, 29.07909905546833 ], [ -95.411557985226779, 29.080281055242011 ], [ -95.411580985087397, 29.08035905583613 ], [ -95.412021985090192, 29.081829056202523 ], [ -95.412055984567758, 29.08196405585139 ], [ -95.41209198510802, 29.082106056203809 ], [ -95.412158984547716, 29.082377055840183 ], [ -95.412218985326817, 29.082615055798048 ], [ -95.412252985127353, 29.082730056443932 ], [ -95.412374985086586, 29.083139056344042 ], [ -95.412449985586974, 29.083394055990315 ], [ -95.412483984875095, 29.083507056017311 ], [ -95.412678984745298, 29.084216056338686 ], [ -95.412777985372784, 29.084549056844644 ], [ -95.412972984832365, 29.085237056464646 ], [ -95.413063985566637, 29.085517056472789 ], [ -95.413303984926458, 29.086385056932187 ], [ -95.413344985791383, 29.086532056550148 ], [ -95.41334798495329, 29.086542056937375 ], [ -95.413415985004633, 29.086791057016491 ], [ -95.413545985473249, 29.087263057367462 ], [ -95.413627985727771, 29.087514056800355 ], [ -95.413910985278704, 29.08851205680363 ], [ -95.41406298625165, 29.089046056984209 ], [ -95.414190985631507, 29.089494057659977 ], [ -95.414363986069361, 29.090131057850257 ], [ -95.414458985772555, 29.090479057529596 ], [ -95.41474698586363, 29.091430057431729 ], [ -95.415257986205205, 29.093227057970065 ], [ -95.415449986571829, 29.093917058142623 ], [ -95.415794986346341, 29.095152058981498 ], [ -95.41601398650856, 29.095872058919301 ], [ -95.41614698701926, 29.096367058593394 ], [ -95.416884986504897, 29.098951059554935 ], [ -95.417615986803725, 29.101515059959976 ], [ -95.417797986889497, 29.102170059811446 ], [ -95.417931987704321, 29.1025990604501 ], [ -95.418292987309272, 29.103864060088448 ], [ -95.41865998739479, 29.105199060131529 ], [ -95.418996987958892, 29.106353060682974 ], [ -95.419151987364003, 29.106883061193706 ], [ -95.419473987643215, 29.10798606137832 ], [ -95.419716988383769, 29.108820060943085 ], [ -95.419738987826662, 29.108893061211027 ], [ -95.419759988202301, 29.108967061045551 ], [ -95.420742988198995, 29.112264062141705 ], [ -95.420811988946681, 29.112553061743416 ], [ -95.421077988570318, 29.113420061839658 ], [ -95.421487988835466, 29.114854062622186 ], [ -95.421877988377929, 29.116216062591747 ], [ -95.422835989509338, 29.119531063290282 ], [ -95.423423988973653, 29.121725063750588 ], [ -95.423678989665021, 29.122717064237225 ], [ -95.423913989867131, 29.123716063990351 ], [ -95.42407898954616, 29.1243940643567 ], [ -95.424124989756649, 29.124582064239394 ], [ -95.424387990140133, 29.125715064575118 ], [ -95.42470498994642, 29.126713064853742 ], [ -95.42488498959348, 29.127394064672757 ], [ -95.424967989740594, 29.127705065318125 ], [ -95.425165990689109, 29.128684065363178 ], [ -95.425379990717659, 29.129662065358517 ], [ -95.425642990680899, 29.130643065564893 ], [ -95.425840990220422, 29.131636065764138 ], [ -95.426071990796942, 29.132606066038552 ], [ -95.426172990285608, 29.133095065984723 ], [ -95.426323990787409, 29.133674066581655 ], [ -95.42677799089897, 29.135750066341561 ], [ -95.426845990623704, 29.136051066442885 ], [ -95.426973991329447, 29.136625066816208 ], [ -95.427158991037203, 29.137469067134905 ], [ -95.427244991515366, 29.13786206684598 ], [ -95.427426991345683, 29.138589067368542 ], [ -95.427477991562938, 29.138793067413769 ], [ -95.42765499109808, 29.139644067779589 ], [ -95.427777990894072, 29.140127067654699 ], [ -95.427875991809017, 29.140461067611948 ], [ -95.428073991345414, 29.141465068037984 ], [ -95.428273991696159, 29.142337068265224 ], [ -95.428557991609651, 29.143598067722856 ], [ -95.428762992315754, 29.144498068091774 ], [ -95.428908991835357, 29.14512206891251 ], [ -95.428974991514281, 29.145423068776058 ], [ -95.429037992075337, 29.14568906867747 ], [ -95.429180992359662, 29.146296068273575 ], [ -95.429550991651439, 29.148025069355235 ], [ -95.429807991756121, 29.149078069113585 ], [ -95.430107992214857, 29.150393069099735 ], [ -95.430462992603438, 29.151994069680153 ], [ -95.430726992185441, 29.153263070500767 ], [ -95.43082499280878, 29.153811069784542 ], [ -95.430930993133316, 29.154617070285099 ], [ -95.431039993138299, 29.156146070391273 ], [ -95.431095993286988, 29.156647071228317 ], [ -95.431181993117832, 29.157223070485166 ], [ -95.431318993394115, 29.158416071086226 ], [ -95.431343992893446, 29.158838071573722 ], [ -95.432206993030931, 29.158336071329309 ], [ -95.432268992965689, 29.158294071259203 ], [ -95.432641993615633, 29.158039071037543 ], [ -95.432948992946976, 29.157819070533286 ], [ -95.434352994173508, 29.156909070795358 ], [ -95.435304994440486, 29.156336070608855 ], [ -95.435693993878743, 29.156089070787822 ], [ -95.435925994576266, 29.155864070382947 ], [ -95.436347994519082, 29.155588070650001 ], [ -95.440220995485532, 29.153036070137915 ], [ -95.444614996064743, 29.150141068857053 ], [ -95.44476499631169, 29.150053069093076 ], [ -95.449161996616013, 29.14716606821797 ], [ -95.450001997267663, 29.146619068486409 ], [ -95.450210997519889, 29.14648306814999 ], [ -95.450578997002651, 29.146240068180283 ], [ -95.451721997487397, 29.145484067536298 ], [ -95.45219899786207, 29.145168067676767 ], [ -95.45315199806204, 29.144591067141679 ], [ -95.453264997750338, 29.144523067114115 ], [ -95.453280998516121, 29.144513067375968 ], [ -95.453332998123912, 29.144481067584035 ], [ -95.453345998443311, 29.144474067214222 ], [ -95.453778997837134, 29.144234067134811 ], [ -95.454963998295241, 29.143454067093476 ], [ -95.456435998614467, 29.14253006705983 ], [ -95.461252999638234, 29.139356066024597 ], [ -95.473403002825293, 29.131424064208815 ], [ -95.474464003105226, 29.130696063927111 ], [ -95.475746003216429, 29.12986806413409 ], [ -95.477490003645173, 29.128456063600805 ], [ -95.4784430041923, 29.127593063654203 ], [ -95.479313003742405, 29.12669506324178 ], [ -95.480215003772486, 29.1256710631422 ], [ -95.480259004002789, 29.125621063139302 ], [ -95.480363003874572, 29.125487062517763 ], [ -95.480573003866738, 29.125270063057542 ], [ -95.481597004227339, 29.124169062612065 ], [ -95.490046005900652, 29.115241060414185 ], [ -95.490689006173469, 29.114522059984854 ], [ -95.491141006491347, 29.113972060259286 ], [ -95.491900006704583, 29.113158059951484 ], [ -95.492406007110731, 29.112596059780216 ], [ -95.49326700674392, 29.111709059660217 ], [ -95.494034007336296, 29.110979059406798 ], [ -95.507121010240965, 29.100479057156605 ], [ -95.508203010582875, 29.099604056251316 ], [ -95.508981010667597, 29.098972056790423 ], [ -95.511711010790009, 29.096765056208248 ], [ -95.518283012942959, 29.091482054785843 ], [ -95.518486012934986, 29.091317054582714 ], [ -95.521096013531846, 29.089160054302962 ], [ -95.521243012662026, 29.089026053441351 ], [ -95.521977013254428, 29.088433053303969 ], [ -95.525837014118679, 29.085311052691779 ], [ -95.532536016064768, 29.079924051564102 ], [ -95.534635016104616, 29.07820505106568 ], [ -95.53688501609507, 29.076383050829737 ], [ -95.540332017314768, 29.073579049660065 ], [ -95.54588201847875, 29.069080049125969 ], [ -95.547498018644077, 29.067720048383663 ], [ -95.548121018781814, 29.067047048928522 ], [ -95.548672019428068, 29.066323048198718 ], [ -95.549136019465408, 29.065656048394711 ], [ -95.550614019537605, 29.063242047952834 ], [ -95.552399020072684, 29.06026504666448 ], [ -95.552625020396334, 29.059889046464512 ], [ -95.552969019640315, 29.059317046335192 ], [ -95.55322102035376, 29.058912046787491 ], [ -95.553300019696536, 29.058785046421619 ], [ -95.5541140205153, 29.057487046364859 ], [ -95.555516020431014, 29.055188045753173 ], [ -95.555645020329337, 29.054986045757243 ], [ -95.555782020681292, 29.054772045978137 ], [ -95.556050020252627, 29.054359045788114 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 720, "Tract": "48039662000", "Area_SqMi": 156.8066049854805, "total_2009": 1156, "total_2010": 930, "total_2011": 986, "total_2012": 3166, "total_2013": 2819, "total_2014": 2868, "total_2015": 2533, "total_2016": 2465, "total_2017": 2306, "total_2018": 2400, "total_2019": 2830, "total_2020": 953, "age1": 236, "age2": 529, "age3": 301, "earn1": 234, "earn2": 385, "earn3": 447, "naics_s01": 36, "naics_s02": 6, "naics_s03": 25, "naics_s04": 57, "naics_s05": 44, "naics_s06": 51, "naics_s07": 225, "naics_s08": 38, "naics_s09": 0, "naics_s10": 58, "naics_s11": 58, "naics_s12": 34, "naics_s13": 0, "naics_s14": 7, "naics_s15": 39, "naics_s16": 68, "naics_s17": 1, "naics_s18": 175, "naics_s19": 59, "naics_s20": 85, "race1": 868, "race2": 124, "race3": 11, "race4": 50, "race5": 2, "race6": 11, "ethnicity1": 793, "ethnicity2": 273, "edu1": 155, "edu2": 263, "edu3": 266, "edu4": 146, "Shape_Length": 377542.276716583, "Shape_Area": 4371499769.8085623, "total_2021": 1139, "total_2022": 1066 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.847663103634758, 29.262595079119301 ], [ -95.847610103415633, 29.262526079445763 ], [ -95.847487104012032, 29.262422079077115 ], [ -95.84745410363503, 29.262394079415923 ], [ -95.847441103847544, 29.2623830792588 ], [ -95.847259103094146, 29.262191078817903 ], [ -95.847033103610457, 29.262026078593198 ], [ -95.846902103320403, 29.261894078672835 ], [ -95.846388103561367, 29.261471078601684 ], [ -95.845867103221977, 29.261059078436965 ], [ -95.845735102978225, 29.260971078673045 ], [ -95.845522103024933, 29.260855078616817 ], [ -95.845265102664513, 29.260734079060892 ], [ -95.845008103276285, 29.260635078451354 ], [ -95.844563102557288, 29.260504078615966 ], [ -95.844413102834594, 29.260482078614103 ], [ -95.844055102207747, 29.260454078653641 ], [ -95.843777102908732, 29.260449079058144 ], [ -95.843466102356729, 29.260443079205984 ], [ -95.843347102495443, 29.260416079108559 ], [ -95.843209102277029, 29.260367079148459 ], [ -95.842946102810913, 29.260251079015831 ], [ -95.842732102317214, 29.260119079159221 ], [ -95.842507102326209, 29.259938078842627 ], [ -95.842388102610599, 29.259817078332649 ], [ -95.842345102167386, 29.2597550786131 ], [ -95.842187102470945, 29.259531078743194 ], [ -95.84211810215406, 29.259405078913169 ], [ -95.842061102167804, 29.25926207835743 ], [ -95.842009102151437, 29.259031078321016 ], [ -95.84196710156435, 29.258850078337126 ], [ -95.841964102092064, 29.258813078864765 ], [ -95.841955102495263, 29.258712078201363 ], [ -95.842200101926167, 29.258219078373603 ], [ -95.842409102224948, 29.257371077865344 ], [ -95.84233110211548, 29.256661077740908 ], [ -95.841941101829491, 29.255241078039933 ], [ -95.841315101282888, 29.254232077645351 ], [ -95.839933101453425, 29.252558076916447 ], [ -95.838680100438168, 29.251641077552506 ], [ -95.837872100897187, 29.251182077452331 ], [ -95.837168100479346, 29.251020077474724 ], [ -95.835679100120927, 29.251225077387382 ], [ -95.83523510022313, 29.25095007722684 ], [ -95.834610100256597, 29.250265077239106 ], [ -95.834062099272614, 29.24973807726828 ], [ -95.833540099653789, 29.249508076700902 ], [ -95.832444099689894, 29.249301076779624 ], [ -95.831557099391986, 29.249300077064653 ], [ -95.829312098041981, 29.249619076838275 ], [ -95.825057097395145, 29.249959077060943 ], [ -95.824065096756968, 29.249889077127847 ], [ -95.82263009629618, 29.249269077404769 ], [ -95.821351096440466, 29.249039077420036 ], [ -95.819890095902565, 29.248626076980212 ], [ -95.819732096280291, 29.248533076751364 ], [ -95.816416095417352, 29.248235077130051 ], [ -95.813569094686997, 29.24779907708195 ], [ -95.812002093510145, 29.247661076819522 ], [ -95.809913093643942, 29.247042076947697 ], [ -95.808790093376331, 29.246171076628301 ], [ -95.808320092580416, 29.245919076786517 ], [ -95.806754092182075, 29.24566607673685 ], [ -95.806023092717794, 29.245323076811502 ], [ -95.804326091627146, 29.244246076961879 ], [ -95.804189091760534, 29.244126076876849 ], [ -95.803982091918584, 29.24407007716415 ], [ -95.803688091732766, 29.243928077069079 ], [ -95.803438091100901, 29.243789076539311 ], [ -95.803343091952456, 29.24359507674593 ], [ -95.803291091359142, 29.243449076166904 ], [ -95.803265091442412, 29.243233076500974 ], [ -95.803205091681718, 29.242905076952859 ], [ -95.803101091563434, 29.242586076087886 ], [ -95.802907091673816, 29.242245076271594 ], [ -95.802903090892883, 29.242232076759962 ], [ -95.80229009069852, 29.241130076255004 ], [ -95.801664090837903, 29.239984076192155 ], [ -95.801507090454379, 29.239549075489968 ], [ -95.801194091009322, 29.239022076177275 ], [ -95.800672091021056, 29.238518075388363 ], [ -95.799706090628789, 29.237968075775715 ], [ -95.798244089695032, 29.237578075723793 ], [ -95.797618090086715, 29.237028075902963 ], [ -95.797393090134008, 29.236778075593975 ], [ -95.797302089425017, 29.236541075554019 ], [ -95.797139089931136, 29.23616107493881 ], [ -95.797108089561533, 29.235954075714371 ], [ -95.797136089955117, 29.235651074869395 ], [ -95.796966089787915, 29.235401075447115 ], [ -95.796470088996301, 29.234828075444735 ], [ -95.794748088656718, 29.232331074783918 ], [ -95.794122088595714, 29.231598074861108 ], [ -95.793470088409464, 29.230269073862139 ], [ -95.793496088039788, 29.230155074222058 ], [ -95.79315708795221, 29.229490074097225 ], [ -95.793157088781655, 29.22921507410328 ], [ -95.792740088147312, 29.228528073909274 ], [ -95.792035088503511, 29.227863073633721 ], [ -95.791330087783436, 29.227588073810711 ], [ -95.790260087102794, 29.227381074027317 ], [ -95.789790087831548, 29.227358074155802 ], [ -95.788666087010554, 29.227862073890392 ], [ -95.787569087345332, 29.228754074168009 ], [ -95.786942086476898, 29.228960074065224 ], [ -95.78639408659501, 29.228960074152774 ], [ -95.785846086749174, 29.228799073937271 ], [ -95.784828086519354, 29.228226073651935 ], [ -95.784045085782196, 29.227561073736918 ], [ -95.783471085589085, 29.226874073979467 ], [ -95.783054085568438, 29.226072074011128 ], [ -95.783081086001985, 29.224583073698998 ], [ -95.782872085119394, 29.223988072849938 ], [ -95.782664085139302, 29.223667072985343 ], [ -95.781672085453749, 29.22279607294924 ], [ -95.780759084808011, 29.221146072546777 ], [ -95.780159084692755, 29.220321072949112 ], [ -95.779481084336524, 29.219657072505317 ], [ -95.778803084658819, 29.219175072010682 ], [ -95.778202083976851, 29.218923071962593 ], [ -95.777523084422967, 29.218762072648161 ], [ -95.77627008335368, 29.218762072867968 ], [ -95.774547083459893, 29.218096072594022 ], [ -95.773999082638909, 29.217707072646935 ], [ -95.77376508281867, 29.217111072127679 ], [ -95.773844083289461, 29.21610307160838 ], [ -95.774184082546398, 29.215485071732054 ], [ -95.775308083459393, 29.214432071771547 ], [ -95.77554308341206, 29.214043071517533 ], [ -95.775595082979862, 29.213562071797423 ], [ -95.775570083561462, 29.212966070995655 ], [ -95.774579082766238, 29.21154507079704 ], [ -95.774553082747346, 29.211362071085137 ], [ -95.773953082512932, 29.210400070343322 ], [ -95.773379082518801, 29.209712070419695 ], [ -95.772075082400633, 29.208704070662943 ], [ -95.7718920816707, 29.208429070856116 ], [ -95.771892082068746, 29.208268070101575 ], [ -95.771814081943205, 29.208245070806331 ], [ -95.771738081757832, 29.207540070027413 ], [ -95.771685082113862, 29.207054070514825 ], [ -95.771894082103984, 29.206161069977661 ], [ -95.77189408232924, 29.205357069704267 ], [ -95.771895081880544, 29.205107069645287 ], [ -95.771687081634084, 29.204443069494925 ], [ -95.771609081334702, 29.203756069664369 ], [ -95.771714081524124, 29.203504069316363 ], [ -95.771610082067724, 29.202588069447291 ], [ -95.771637081843011, 29.201099069041092 ], [ -95.772265082304315, 29.200275068538939 ], [ -95.77273508235325, 29.200000068723302 ], [ -95.773153082481286, 29.19954206833286 ], [ -95.773336082256449, 29.199130068243853 ], [ -95.773389082379211, 29.198672068504045 ], [ -95.773024082187632, 29.197435068288829 ], [ -95.77298108200057, 29.197356068434761 ], [ -95.772357081259941, 29.196212067749286 ], [ -95.772083081755071, 29.195935068013124 ], [ -95.771915081126906, 29.195512068020964 ], [ -95.771833081451803, 29.195145068000485 ], [ -95.771790081592798, 29.194796067866253 ], [ -95.771828081560372, 29.194593068000891 ], [ -95.771966081606919, 29.194265067366633 ], [ -95.772152081691047, 29.193937067618688 ], [ -95.772316081775188, 29.193668067007152 ], [ -95.772531081118814, 29.19340306727819 ], [ -95.774099082160731, 29.19154906725084 ], [ -95.774621081829324, 29.191297066837429 ], [ -95.776031082443268, 29.190909066269793 ], [ -95.777050082974768, 29.190451066196946 ], [ -95.777755082747902, 29.189810066053425 ], [ -95.77819908250143, 29.189215066144083 ], [ -95.778382083146383, 29.189101066472002 ], [ -95.778565083047624, 29.188345066156852 ], [ -95.778567082869543, 29.186765065520806 ], [ -95.778202082523421, 29.185986065350598 ], [ -95.777889082261552, 29.185688065659232 ], [ -95.776819081951274, 29.185046065369605 ], [ -95.775019081987182, 29.184220065438701 ], [ -95.773923081706641, 29.183463065306718 ], [ -95.772593081509626, 29.182867064853372 ], [ -95.771575080938049, 29.182294064985236 ], [ -95.771001080759675, 29.181835064618745 ], [ -95.770428080447942, 29.180919064629869 ], [ -95.770324080248542, 29.180048064530595 ], [ -95.770612080396674, 29.179499064880194 ], [ -95.771030080317573, 29.179178064771079 ], [ -95.772152080865581, 29.178698064510243 ], [ -95.77275308078849, 29.178355064169637 ], [ -95.773067080674195, 29.17778206435225 ], [ -95.772996080559906, 29.177531064411134 ], [ -95.77293108057745, 29.177259063669894 ], [ -95.772922081034196, 29.17701706396209 ], [ -95.772939080895569, 29.176719063738908 ], [ -95.772935081445638, 29.176435063566647 ], [ -95.772918081322743, 29.176206063554844 ], [ -95.772862081198284, 29.175856063845988 ], [ -95.772743081321039, 29.175515063206131 ], [ -95.772677080980117, 29.175446063387113 ], [ -95.771295080025837, 29.174529063624764 ], [ -95.770747080554401, 29.174345063899288 ], [ -95.76983308001401, 29.174367063241267 ], [ -95.769520079869636, 29.174275063636316 ], [ -95.769129080327019, 29.173978063085311 ], [ -95.768738080032051, 29.173244063609619 ], [ -95.768662079642823, 29.17104506243469 ], [ -95.768140079490522, 29.170381063122036 ], [ -95.767645079207526, 29.169418062903311 ], [ -95.767255078804027, 29.167952062055718 ], [ -95.766213079158476, 29.166096061938426 ], [ -95.765745078749461, 29.164561061264042 ], [ -95.765406078590289, 29.163782061839967 ], [ -95.765198078930297, 29.163140061109509 ], [ -95.765225078567468, 29.162545061614448 ], [ -95.765852078359345, 29.161400061235124 ], [ -95.765983078022003, 29.16073606102989 ], [ -95.76587907863464, 29.1604150610532 ], [ -95.765176078413859, 29.159338060760206 ], [ -95.76353307740726, 29.15775606022407 ], [ -95.763403077635289, 29.15752706010187 ], [ -95.763429077456749, 29.157046059922131 ], [ -95.764474078238138, 29.156016060026644 ], [ -95.764840078341024, 29.155421060081235 ], [ -95.765137078363551, 29.154778059775968 ], [ -95.765624078515657, 29.153727059712505 ], [ -95.765756077944445, 29.152856059597209 ], [ -95.765600077600865, 29.152329059504449 ], [ -95.765287077979579, 29.15207705891078 ], [ -95.764869078234625, 29.151871058793176 ], [ -95.763330076998372, 29.151411059039383 ], [ -95.762913077551161, 29.151480058593101 ], [ -95.762469077729349, 29.152167058817081 ], [ -95.762102077759053, 29.153403059344214 ], [ -95.760927076819428, 29.153998059833384 ], [ -95.760431076739721, 29.154364059723417 ], [ -95.759908076683686, 29.155395060272856 ], [ -95.7592290768509, 29.156608060477893 ], [ -95.758811076691998, 29.156951060084964 ], [ -95.758132075916109, 29.157226060575443 ], [ -95.757453076149616, 29.157294060346914 ], [ -95.757114075850197, 29.157179060141846 ], [ -95.755889075641164, 29.156353059791769 ], [ -95.75534107581548, 29.156124060566587 ], [ -95.754979075371423, 29.156093060408907 ], [ -95.753984074945478, 29.156008060578404 ], [ -95.753228075589973, 29.155847060101387 ], [ -95.752210074812595, 29.155365059872107 ], [ -95.751898074256758, 29.155022060405567 ], [ -95.751769075131534, 29.153991060040799 ], [ -95.751613074101584, 29.153395059812716 ], [ -95.751534074898018, 29.153326059338109 ], [ -95.751457074393429, 29.152112059228486 ], [ -95.751876074394005, 29.151265059678124 ], [ -95.752450074707184, 29.150945059248933 ], [ -95.754225075612368, 29.150648058973552 ], [ -95.754825075417628, 29.150374059060333 ], [ -95.755112075325187, 29.150145058703512 ], [ -95.755229074869291, 29.150005058719159 ], [ -95.755400075073538, 29.149802058935691 ], [ -95.755505075206813, 29.149390059138614 ], [ -95.755427074956003, 29.149069059157853 ], [ -95.755192075635492, 29.148794058805645 ], [ -95.754331075509995, 29.1483580584656 ], [ -95.752950074514615, 29.147464058432803 ], [ -95.752376074005767, 29.14734905865997 ], [ -95.752255074571337, 29.147340058415303 ], [ -95.751851074381193, 29.147311058719758 ], [ -95.751384074301455, 29.147279058823337 ], [ -95.750246073640838, 29.147533058587971 ], [ -95.749498074021389, 29.147590058687328 ], [ -95.747219073567337, 29.147765059001017 ], [ -95.746567072601863, 29.148109058533098 ], [ -95.746177073043469, 29.148499059369911 ], [ -95.74602007334309, 29.148751058894646 ], [ -95.746024072697551, 29.149025058930373 ], [ -95.746049073250163, 29.150423059729714 ], [ -95.745893073455846, 29.150881059791732 ], [ -95.745554073183243, 29.151202059938342 ], [ -95.744954072990637, 29.151455059368534 ], [ -95.744249072494583, 29.151502059795238 ], [ -95.743936072583992, 29.151296059921041 ], [ -95.743727072601061, 29.150906059445326 ], [ -95.743309072132348, 29.150586059051736 ], [ -95.742160072073631, 29.150060059737836 ], [ -95.741600071963944, 29.149904059136805 ], [ -95.739785071437126, 29.149398059149167 ], [ -95.739289071751031, 29.149170058992201 ], [ -95.738793070915762, 29.148781059310984 ], [ -95.738452070845625, 29.147567058810196 ], [ -95.737878070472348, 29.14717805899231 ], [ -95.737173070408488, 29.147133059314317 ], [ -95.734747069569096, 29.147800059421282 ], [ -95.733756070129743, 29.147869059404488 ], [ -95.73307706961667, 29.147778059162391 ], [ -95.731728069159203, 29.14717405876458 ], [ -95.730780069379151, 29.14674905874578 ], [ -95.729997068272354, 29.146246058539536 ], [ -95.729448068157552, 29.145674059167565 ], [ -95.729213068046832, 29.145239059194854 ], [ -95.729186068730485, 29.144689059028007 ], [ -95.729707068862496, 29.143612058569776 ], [ -95.729914068728078, 29.142444058463099 ], [ -95.729574068804553, 29.141597058338064 ], [ -95.729208068727857, 29.141253058211078 ], [ -95.728634068531207, 29.14109305756693 ], [ -95.728243068343005, 29.141117057939205 ], [ -95.727460068203072, 29.141415058303878 ], [ -95.726965067804485, 29.141782058591463 ], [ -95.72662606805811, 29.142149058628213 ], [ -95.726027067800885, 29.14343205842394 ], [ -95.725636067318533, 29.143822058311951 ], [ -95.725089067698022, 29.144212058608375 ], [ -95.72438506707006, 29.144395058823797 ], [ -95.723381067284294, 29.144528059131236 ], [ -95.723341066828382, 29.144534059134987 ], [ -95.722506066562261, 29.144534058671301 ], [ -95.72201006706922, 29.144374058974297 ], [ -95.721227066297132, 29.143848058341224 ], [ -95.720444066201495, 29.143185058852925 ], [ -95.720104066377203, 29.142727058824747 ], [ -95.719451066095218, 29.141674057951981 ], [ -95.71905806599888, 29.140574058490138 ], [ -95.718692065825635, 29.140208057892071 ], [ -95.717727065247615, 29.140071058290282 ], [ -95.717572064877203, 29.140125058167815 ], [ -95.715562065186589, 29.140829058690269 ], [ -95.714571064191318, 29.140898058154114 ], [ -95.713709064855919, 29.140716058127627 ], [ -95.71263906444247, 29.139892058316125 ], [ -95.712221063843046, 29.139320058521648 ], [ -95.712038064379982, 29.138655057896305 ], [ -95.712062063744071, 29.137075057850478 ], [ -95.71200706396408, 29.1369260573886 ], [ -95.711827063361596, 29.1364340572242 ], [ -95.710756063753138, 29.135152057206803 ], [ -95.710416063122381, 29.134533056760571 ], [ -95.710181062967052, 29.133712056604494 ], [ -95.710076063342996, 29.13334305682751 ], [ -95.709815062734918, 29.132770056694621 ], [ -95.708717062916477, 29.131030056712987 ], [ -95.708665062796612, 29.130801056196681 ], [ -95.708482062838087, 29.130503056495716 ], [ -95.70848106307119, 29.129862056071904 ], [ -95.708690062416935, 29.129404056065855 ], [ -95.70902806270216, 29.128899055957998 ], [ -95.7100970632588, 29.128005055544119 ], [ -95.710154062734219, 29.127689055956946 ], [ -95.71025306321468, 29.127362055663436 ], [ -95.71021006246761, 29.127068055727293 ], [ -95.710231062962407, 29.126663055710015 ], [ -95.710076062861262, 29.126188055422237 ], [ -95.709731062777593, 29.125161055221351 ], [ -95.709351062823714, 29.123811055363987 ], [ -95.709243062107333, 29.123280054863542 ], [ -95.709217062121297, 29.122710055160713 ], [ -95.709192062666148, 29.122029055081274 ], [ -95.709174062011314, 29.121161054271649 ], [ -95.709183062888258, 29.120441053976542 ], [ -95.709166061854376, 29.119617054307547 ], [ -95.70911406199896, 29.119030054056303 ], [ -95.708825062281775, 29.118119053774706 ], [ -95.70857506219096, 29.117580054041319 ], [ -95.708346062101853, 29.117218053339116 ], [ -95.707983061735248, 29.116967053727386 ], [ -95.707811061753986, 29.116821053531886 ], [ -95.707535062113152, 29.116687053645684 ], [ -95.707070061927553, 29.116518053900375 ], [ -95.704870060852116, 29.116670053896168 ], [ -95.70424406115886, 29.116556053524597 ], [ -95.702809060976506, 29.11596105359688 ], [ -95.701295060053738, 29.115688053751519 ], [ -95.699939059492664, 29.115643053446703 ], [ -95.699183059581216, 29.115735053757202 ], [ -95.698432059695776, 29.116035054074345 ], [ -95.698034059515976, 29.11613505352204 ], [ -95.697637059594385, 29.116398054059431 ], [ -95.697270059255871, 29.116873054017031 ], [ -95.697097059416336, 29.117261054068646 ], [ -95.696946059315025, 29.117541053946638 ], [ -95.69691605917653, 29.117839054642356 ], [ -95.696869059348217, 29.118348054303329 ], [ -95.696908059218046, 29.11886605420133 ], [ -95.696951059132431, 29.119172054683087 ], [ -95.696908059314154, 29.119487054720025 ], [ -95.696847059091098, 29.119858054745112 ], [ -95.696657059193001, 29.120143054585672 ], [ -95.696347058978517, 29.120363054374298 ], [ -95.695769059126036, 29.120547054723321 ], [ -95.695117058281625, 29.120273054949958 ], [ -95.693916058476105, 29.119472054782165 ], [ -95.693055058535677, 29.119014054967035 ], [ -95.685932056793646, 29.117025054621212 ], [ -95.684940055704956, 29.116613054623581 ], [ -95.684262056278044, 29.116064054018167 ], [ -95.682878055083577, 29.114484054098899 ], [ -95.681756054959806, 29.113499053646699 ], [ -95.680817054602571, 29.112973053992633 ], [ -95.677921053864708, 29.111989053225411 ], [ -95.677240053622754, 29.111878053833944 ], [ -95.67663305381916, 29.113013053457045 ], [ -95.676168053682701, 29.113892054274196 ], [ -95.675048053593741, 29.116046054213907 ], [ -95.67482405330945, 29.11648105469629 ], [ -95.674326053590192, 29.11744705479332 ], [ -95.673315053387356, 29.119426055215321 ], [ -95.672977052684729, 29.120088055121485 ], [ -95.672238053192302, 29.12153505557017 ], [ -95.672065053303811, 29.121935055817531 ], [ -95.67199405301713, 29.122062056270543 ], [ -95.671801053076194, 29.122407055675847 ], [ -95.671619052401141, 29.122697056399431 ], [ -95.671467053074991, 29.122915056265871 ], [ -95.671395052637152, 29.123002056152025 ], [ -95.67123505328081, 29.12316405614196 ], [ -95.670766052817655, 29.123629056000851 ], [ -95.670668052282309, 29.123724056042946 ], [ -95.670594052952467, 29.123780056388135 ], [ -95.670356052306133, 29.123956056680051 ], [ -95.669319052440798, 29.124817056176294 ], [ -95.668036052421243, 29.125876056953413 ], [ -95.666809052340028, 29.126882057142883 ], [ -95.665642051434645, 29.127841057524225 ], [ -95.664081050767948, 29.129119057698897 ], [ -95.662828050780718, 29.130172057767517 ], [ -95.662243051117045, 29.130642057711402 ], [ -95.661164050867072, 29.131547058315665 ], [ -95.660472050843651, 29.132126058657416 ], [ -95.660361050310257, 29.132219058181445 ], [ -95.660047050397921, 29.132466058024679 ], [ -95.659420049816831, 29.132964058872179 ], [ -95.655969049739866, 29.135818059264075 ], [ -95.655899049469994, 29.135877058934216 ], [ -95.655243048791959, 29.136425059225953 ], [ -95.654773049440777, 29.136820059663911 ], [ -95.654467049342628, 29.137069059622782 ], [ -95.653238048422395, 29.13807305955071 ], [ -95.652993048881626, 29.138243059823026 ], [ -95.652613049007314, 29.1384960598647 ], [ -95.651771048179356, 29.139056060444108 ], [ -95.650917048839332, 29.139653060281532 ], [ -95.650840047984161, 29.139701060630927 ], [ -95.64934304778852, 29.140714060017064 ], [ -95.649176048086943, 29.140842060489764 ], [ -95.649112047850622, 29.140915060638768 ], [ -95.649039047622736, 29.141009060531228 ], [ -95.648967047691286, 29.141263060380236 ], [ -95.648943047725112, 29.141340060308092 ], [ -95.648648048119142, 29.142386060608732 ], [ -95.648338047886668, 29.143463060854149 ], [ -95.648200047997392, 29.143951061524714 ], [ -95.648004048144003, 29.144593060883874 ], [ -95.646807047179749, 29.14428706101361 ], [ -95.645517047053275, 29.143958061139301 ], [ -95.644291046851365, 29.143658061003539 ], [ -95.644185046798242, 29.143628061584483 ], [ -95.643642047146173, 29.143513061223832 ], [ -95.643009046917811, 29.143487060972152 ], [ -95.642362046219816, 29.143462061507378 ], [ -95.640938046040091, 29.143406060850587 ], [ -95.639825046013257, 29.143365061183889 ], [ -95.638972045904694, 29.143321061501663 ], [ -95.637119045316709, 29.143245061828576 ], [ -95.636987045040854, 29.143238060984157 ], [ -95.636679044679411, 29.143229061789373 ], [ -95.636422044512116, 29.143222061273651 ], [ -95.636041044292753, 29.143218061250661 ], [ -95.635576044128257, 29.143206061514 ], [ -95.635515044167022, 29.143204061033149 ], [ -95.63539604466861, 29.143200061766549 ], [ -95.634560044721752, 29.143170061639847 ], [ -95.634380044219654, 29.143163061191309 ], [ -95.633130043592459, 29.143120061582309 ], [ -95.631327043590801, 29.143045061925086 ], [ -95.629949042769326, 29.142993061577336 ], [ -95.626145042055057, 29.142863061691354 ], [ -95.62500704176712, 29.142838061612537 ], [ -95.624724041823981, 29.142825061734186 ], [ -95.622668041189414, 29.142736061523184 ], [ -95.621182040452027, 29.142673061890182 ], [ -95.620534040941408, 29.142758061676414 ], [ -95.61984404062494, 29.142848062183425 ], [ -95.618540039859624, 29.143275062349456 ], [ -95.618222039729588, 29.143410062435851 ], [ -95.616133039500241, 29.144303062428975 ], [ -95.614663039416712, 29.144930062773732 ], [ -95.613024039149977, 29.145625062355954 ], [ -95.612870039316348, 29.145662062299323 ], [ -95.612149039061777, 29.145834062786882 ], [ -95.611831039079163, 29.145866062811486 ], [ -95.610980037958342, 29.145956062926004 ], [ -95.610506038163564, 29.145935062809968 ], [ -95.609779038223451, 29.145905062769668 ], [ -95.608479037719192, 29.14564606298611 ], [ -95.608029037247164, 29.145485062835199 ], [ -95.607304037687157, 29.145200062442928 ], [ -95.606855037031124, 29.144940063087247 ], [ -95.606550036875262, 29.144765062349585 ], [ -95.606235036678996, 29.14458306277988 ], [ -95.605696037086929, 29.144271062456571 ], [ -95.605113037387298, 29.144847062347985 ], [ -95.604080037124106, 29.145941063323303 ], [ -95.602463036008771, 29.146258063174702 ], [ -95.600262035490871, 29.145927063382846 ], [ -95.599309035025314, 29.145665063051482 ], [ -95.598356034696351, 29.145274062961441 ], [ -95.597622034607895, 29.145271063378221 ], [ -95.596442034597317, 29.146493062971075 ], [ -95.59562703482365, 29.147911064019862 ], [ -95.594886034364777, 29.149328063683949 ], [ -95.593117034107607, 29.150741064328859 ], [ -95.590542033596563, 29.15182906506621 ], [ -95.589668033494178, 29.152041064730838 ], [ -95.588190032385711, 29.152401065029629 ], [ -95.587231032224224, 29.153237064946232 ], [ -95.586640032921906, 29.154074065399062 ], [ -95.586046032292657, 29.155298065059061 ], [ -95.58559703223392, 29.157039066106876 ], [ -95.584709032568696, 29.158456066163858 ], [ -95.583677031723298, 29.159291066820103 ], [ -95.582497031586684, 29.160255066288187 ], [ -95.582636032288264, 29.161740066601759 ], [ -95.584982032471714, 29.162524066839865 ], [ -95.58872303316916, 29.163506067133362 ], [ -95.59055303405249, 29.164610067388889 ], [ -95.593403034846474, 29.167397068131404 ], [ -95.595450035024228, 29.169406068309648 ], [ -95.595793035669914, 29.170882068449561 ], [ -95.596097035387345, 29.172184069001855 ], [ -95.596110036205332, 29.172424068403004 ], [ -95.596232035512884, 29.174637069392656 ], [ -95.597691036664131, 29.176708069947683 ], [ -95.598860036896582, 29.178068069825379 ], [ -95.599663037378278, 29.179039069711379 ], [ -95.600171036642777, 29.180267070328892 ], [ -95.600312037607793, 29.181623070059068 ], [ -95.5998770372302, 29.182669070817457 ], [ -95.599382036617897, 29.183028070789348 ], [ -95.598558036546351, 29.183170070990947 ], [ -95.597570036705577, 29.1832390705585 ], [ -95.596666035909053, 29.182946070949807 ], [ -95.595762036402874, 29.182726071200573 ], [ -95.594694035410242, 29.182432071154309 ], [ -95.592637035492146, 29.182352070461139 ], [ -95.591317035229068, 29.182998071223402 ], [ -95.590901035112424, 29.183937071030659 ], [ -95.590649034976494, 29.184876071447118 ], [ -95.590643034425327, 29.186250072151196 ], [ -95.590719034892246, 29.187552071582402 ], [ -95.590221034870197, 29.188346072368212 ], [ -95.589642034290264, 29.1888500718633 ], [ -95.588078034116393, 29.18906107246778 ], [ -95.585608033778897, 29.189268072346319 ], [ -95.582642032753711, 29.189763072281554 ], [ -95.580092031971574, 29.189609072520248 ], [ -95.57721303111488, 29.189236073218165 ], [ -95.57556903164658, 29.188796073009481 ], [ -95.573595031012246, 29.188643072844112 ], [ -95.571864030728946, 29.189070072902858 ], [ -95.570955030318061, 29.189790072922822 ], [ -95.570374029402558, 29.190728073645648 ], [ -95.570287030022953, 29.191667073214663 ], [ -95.570771029873697, 29.193550074113777 ], [ -95.571835030122728, 29.194856074379626 ], [ -95.572406030474696, 29.195798074705767 ], [ -95.572484030498202, 29.196594074895028 ], [ -95.571739030290715, 29.197459074946309 ], [ -95.570750030610881, 29.197744074750847 ], [ -95.568774029366963, 29.197881074543965 ], [ -95.566716028912822, 29.1978730753303 ], [ -95.565229029215274, 29.198879075472377 ], [ -95.564978028994901, 29.19960107555735 ], [ -95.5641410288994, 29.202346076297982 ], [ -95.563885028939524, 29.204081076428501 ], [ -95.562641028553429, 29.205811076773497 ], [ -95.560367027816682, 29.207729076918088 ], [ -95.559912027932072, 29.208114077578983 ], [ -95.554706026530795, 29.211926078644346 ], [ -95.551649026499575, 29.214010078531704 ], [ -95.549668025438379, 29.214942079213458 ], [ -95.548676025899084, 29.21558907893672 ], [ -95.547849025282986, 29.216381078953745 ], [ -95.547260025500023, 29.21869207968539 ], [ -95.546675025460061, 29.220353080349867 ], [ -95.545270024478285, 29.221360080741292 ], [ -95.543052024484211, 29.222364080408077 ], [ -95.54137602358557, 29.223296081264888 ], [ -95.540302023776349, 29.224055080824051 ], [ -95.540162023647582, 29.225287081592878 ], [ -95.540621024007223, 29.2268740815847 ], [ -95.541346023918138, 29.228697081795936 ], [ -95.542472024963075, 29.230433082875365 ], [ -95.542606024868718, 29.230639082401151 ], [ -95.543869025098516, 29.231818082637961 ], [ -95.545401025404956, 29.232764082502488 ], [ -95.547137026062956, 29.233123082826449 ], [ -95.54894102602924, 29.233189082784694 ], [ -95.55061102677989, 29.233490082877427 ], [ -95.552679027417895, 29.234261082929063 ], [ -95.554745027691581, 29.235268082581033 ], [ -95.556009028459414, 29.236447083635525 ], [ -95.556538028562912, 29.237447083409666 ], [ -95.556936028762678, 29.23809408384319 ], [ -95.557535028783121, 29.238507083467429 ], [ -95.559073029351921, 29.238514083140828 ], [ -95.560482029474841, 29.237404083319618 ], [ -95.560885029605174, 29.237112082774718 ], [ -95.561755029345605, 29.236822083545057 ], [ -95.562757030396241, 29.237003083154999 ], [ -95.563355030184567, 29.237709083623525 ], [ -95.563549030670956, 29.239001083168478 ], [ -95.563139029925694, 29.240702083741603 ], [ -95.562393029901358, 29.242695083916381 ], [ -95.562379030083079, 29.245336085277316 ], [ -95.562429029945321, 29.248623085820423 ], [ -95.562086030170249, 29.25020608583948 ], [ -95.561910030707239, 29.2505870858697 ], [ -95.561545030217374, 29.251378086384378 ], [ -95.561243030601091, 29.251814086269565 ], [ -95.560939029836618, 29.252256086596205 ], [ -95.560827030201409, 29.252523086663544 ], [ -95.560668029851371, 29.252900086829452 ], [ -95.560667030559813, 29.253150086863211 ], [ -95.560665029607705, 29.253487086359751 ], [ -95.561130030209625, 29.254076086334909 ], [ -95.561797030119237, 29.254372086663 ], [ -95.562487030544176, 29.254547086383237 ], [ -95.56488403082713, 29.254784086803198 ], [ -95.566770031809227, 29.254866086268606 ], [ -95.568110031801524, 29.255165086646517 ], [ -95.568570032037414, 29.255351086884339 ], [ -95.569071032752547, 29.255721087007981 ], [ -95.56940503209367, 29.256127087084906 ], [ -95.569361032830301, 29.2565690865482 ], [ -95.569106032702678, 29.25704608722652 ], [ -95.568306031943152, 29.257707087306095 ], [ -95.566204031648795, 29.25898508748659 ], [ -95.565109031497087, 29.259864087396988 ], [ -95.564012031518473, 29.261258088182245 ], [ -95.56341803070066, 29.262507088017234 ], [ -95.563255031516874, 29.263173088953074 ], [ -95.563247030825849, 29.263206088131188 ], [ -95.563245031397528, 29.263647088625493 ], [ -95.563661031440333, 29.264201089110706 ], [ -95.564496031406122, 29.264977088481519 ], [ -95.565248032094857, 29.265459089232479 ], [ -95.566378032474105, 29.265868089023837 ], [ -95.567928032844293, 29.266095088927333 ], [ -95.569017032284464, 29.266173088498775 ], [ -95.569730033210007, 29.266176088503975 ], [ -95.570150032966794, 29.26606708928556 ], [ -95.570570033126742, 29.265848088921501 ], [ -95.570865032966253, 29.26555508839192 ], [ -95.571035033427833, 29.265187088327252 ], [ -95.57107903305743, 29.264856088956599 ], [ -95.571081032880372, 29.264378088064536 ], [ -95.570918032957493, 29.263494088659613 ], [ -95.570796033274561, 29.262721088183724 ], [ -95.570674032625178, 29.261984087581606 ], [ -95.57067803323352, 29.261285088247813 ], [ -95.570723032816801, 29.260623087507309 ], [ -95.570978033384961, 29.260072087754619 ], [ -95.571400032591185, 29.259374087517017 ], [ -95.571905033365937, 29.25904508751951 ], [ -95.57236803332917, 29.258715087185326 ], [ -95.572997033647965, 29.258681087675107 ], [ -95.573709033946088, 29.258757087611521 ], [ -95.574169034099143, 29.259054087692025 ], [ -95.574544033930025, 29.259460087467634 ], [ -95.574959034228442, 29.260308087819372 ], [ -95.575330033971724, 29.261524087432655 ], [ -95.575532034339545, 29.262997088054959 ], [ -95.575527034388415, 29.264101087959098 ], [ -95.575185034438917, 29.265388088497847 ], [ -95.574592034364358, 29.266526089002017 ], [ -95.57399803376552, 29.267959089546636 ], [ -95.573274034037766, 29.270128089876238 ], [ -95.573012034248706, 29.272187090054977 ], [ -95.573338034148151, 29.273992090833016 ], [ -95.573916033951662, 29.27572409104048 ], [ -95.574289034615518, 29.276682091231876 ], [ -95.574830034245281, 29.277384091030893 ], [ -95.575164034717417, 29.277679091474958 ], [ -95.575666035363938, 29.277865090761114 ], [ -95.576044034950741, 29.277793091495809 ], [ -95.576381035468046, 29.277611090748323 ], [ -95.576761035407372, 29.27706009069399 ], [ -95.576974035344719, 29.276288090770475 ], [ -95.577276034961258, 29.274670090701331 ], [ -95.577279035664333, 29.273971090364373 ], [ -95.577284035468111, 29.273161090054465 ], [ -95.577371035250181, 29.27253609036833 ], [ -95.577583035302382, 29.271948089917476 ], [ -95.577837035318012, 29.271470089662493 ], [ -95.578006035780774, 29.271287089350817 ], [ -95.578342035077284, 29.271141090054989 ], [ -95.578845035549804, 29.271180089653999 ], [ -95.579348035366152, 29.27129208936076 ], [ -95.579933035480096, 29.271736089537455 ], [ -95.58059903613902, 29.272659089998118 ], [ -95.581053036450101, 29.274059090071919 ], [ -95.581674035978693, 29.275754090357378 ], [ -95.582340036927334, 29.276677090504496 ], [ -95.583008036592602, 29.277268090934928 ], [ -95.584388037499664, 29.278083090649179 ], [ -95.586395037587224, 29.279121090712074 ], [ -95.58714603830613, 29.279897090979944 ], [ -95.587394038257557, 29.280744090992819 ], [ -95.587226038305573, 29.281579091320737 ], [ -95.587179038268474, 29.281811091676079 ], [ -95.58633203800072, 29.283463091928933 ], [ -95.585908038052963, 29.284382092583435 ], [ -95.585779037728415, 29.284970091977907 ], [ -95.585776037466857, 29.285596092755558 ], [ -95.585857037855874, 29.286185092657973 ], [ -95.586106037765262, 29.286701092477113 ], [ -95.586732038449497, 29.287329093020876 ], [ -95.587736038204227, 29.287885092528715 ], [ -95.58861303876597, 29.288551092688415 ], [ -95.589323038586301, 29.289253093013823 ], [ -95.5898210390245, 29.290358093559387 ], [ -95.589774038899094, 29.291389093806078 ], [ -95.589599039397442, 29.29271309377031 ], [ -95.589499039609223, 29.293026093930873 ], [ -95.589131039414127, 29.294183093795287 ], [ -95.588705038555489, 29.295396094325103 ], [ -95.587486039083657, 29.297404094775903 ], [ -95.58671903897806, 29.298479094803323 ], [ -95.586631038372488, 29.298717094663726 ], [ -95.586379038281876, 29.299398094918466 ], [ -95.586078038806974, 29.300722095501275 ], [ -95.58569503813608, 29.301824096101917 ], [ -95.585426038309905, 29.302270095646616 ], [ -95.584978038550119, 29.302550096061253 ], [ -95.584584038275921, 29.302674095857906 ], [ -95.583995038444868, 29.302687096377998 ], [ -95.583388037773844, 29.302685096091619 ], [ -95.582604037784748, 29.302431095752802 ], [ -95.581838037659892, 29.302037095711754 ], [ -95.580432036816376, 29.301264096056034 ], [ -95.579630037328144, 29.30091609606815 ], [ -95.579113036999587, 29.300773095714945 ], [ -95.578595036818569, 29.300755095928352 ], [ -95.577987036455113, 29.301051095799089 ], [ -95.577555036844331, 29.301613095517641 ], [ -95.577232036338373, 29.302003096486537 ], [ -95.577088036114063, 29.302363095829033 ], [ -95.576979036329078, 29.302723095918722 ], [ -95.577029036332846, 29.30334909605644 ], [ -95.577258036208178, 29.304024096039626 ], [ -95.578093036381318, 29.304700096457196 ], [ -95.578929037411569, 29.305315096864735 ], [ -95.580158037563393, 29.305930097165113 ], [ -95.581634037768339, 29.306539097285707 ], [ -95.581690038126624, 29.30656309722352 ], [ -95.582581037736006, 29.307005096967483 ], [ -95.583103037816912, 29.307541097100895 ], [ -95.583985038045853, 29.309213096905864 ], [ -95.584180038612516, 29.311000097362509 ], [ -95.584173038758948, 29.312454097599414 ], [ -95.584172038722429, 29.31264309784418 ], [ -95.583837038924869, 29.313281098152832 ], [ -95.58335003810933, 29.314212098160564 ], [ -95.581798037883573, 29.315134098688283 ], [ -95.580573038023076, 29.315665099029594 ], [ -95.579796037465272, 29.316377098660986 ], [ -95.579683037685356, 29.316600099351799 ], [ -95.579508037739515, 29.31694709883903 ], [ -95.579505037391172, 29.31751909891268 ], [ -95.579911037255826, 29.317842099268361 ], [ -95.580561037424843, 29.318059098795839 ], [ -95.58103103835478, 29.318132099613369 ], [ -95.58462703856074, 29.318364098795989 ], [ -95.584737038861945, 29.318409098962444 ], [ -95.585972039710057, 29.31891709952427 ], [ -95.586508039874161, 29.319590099751451 ], [ -95.586720039446703, 29.320848099567439 ], [ -95.587317039771079, 29.323873100193378 ], [ -95.587953040493431, 29.325001100491416 ], [ -95.588762040365623, 29.325576100871412 ], [ -95.589448040300766, 29.325837100214617 ], [ -95.590924040570741, 29.326401100381009 ], [ -95.591004041147002, 29.326538100670906 ], [ -95.590820041247866, 29.327392100534698 ], [ -95.590800040769082, 29.32749010100375 ], [ -95.591150040547973, 29.327542100661663 ], [ -95.591361041584221, 29.327574101187651 ], [ -95.591619040979978, 29.327566101027369 ], [ -95.591919040888953, 29.327557100624134 ], [ -95.592402041033907, 29.327584100740285 ], [ -95.592478041319723, 29.327592100674782 ], [ -95.592653041380402, 29.327612100880099 ], [ -95.592873041628138, 29.32766710119191 ], [ -95.593186041668119, 29.327705101216086 ], [ -95.593600041541634, 29.327711100404084 ], [ -95.594083041497214, 29.327683101134774 ], [ -95.594265041717279, 29.327688100848029 ], [ -95.594372041450697, 29.327727100675308 ], [ -95.594435041854169, 29.327787100674431 ], [ -95.594523042136245, 29.327897100970144 ], [ -95.594535041479119, 29.327963101080012 ], [ -95.594673041864837, 29.328128100612112 ], [ -95.594836041601127, 29.32826010078276 ], [ -95.594924041945589, 29.328293100667967 ], [ -95.59510004213989, 29.328304100680402 ], [ -95.595114041638041, 29.328304100472284 ], [ -95.595232042179148, 29.328304101231247 ], [ -95.595313042332421, 29.328293100762263 ], [ -95.595420042539715, 29.328210101046523 ], [ -95.595533041658655, 29.328078100626513 ], [ -95.595940042293577, 29.327732101075217 ], [ -95.596135042152369, 29.327660100310819 ], [ -95.596254042705027, 29.32763810077989 ], [ -95.596373042722433, 29.327638100771797 ], [ -95.596524042075131, 29.327660100535613 ], [ -95.596919042989697, 29.327748100490467 ], [ -95.597098042375194, 29.32779510083634 ], [ -95.597421042189922, 29.327880101122837 ], [ -95.597647042778377, 29.32788010073282 ], [ -95.597829043111915, 29.327869100684151 ], [ -95.598067043274483, 29.327836100552499 ], [ -95.598371042719691, 29.327780100232115 ], [ -95.598726043324362, 29.327715100514318 ], [ -95.599052043440452, 29.327632100173783 ], [ -95.599272043112208, 29.327604100396886 ], [ -95.599604042798134, 29.327599100219206 ], [ -95.599700042953742, 29.327618100493325 ], [ -95.600025043347571, 29.327681100668251 ], [ -95.600156043214753, 29.327742100398265 ], [ -95.600307043323298, 29.327868100969486 ], [ -95.600476042980176, 29.328038100640793 ], [ -95.600608043077784, 29.328088100758158 ], [ -95.600652043214879, 29.328082100426766 ], [ -95.600822043698969, 29.327983100822898 ], [ -95.600959043497738, 29.327934100161901 ], [ -95.601116043741314, 29.32790610097836 ], [ -95.601417043865766, 29.327835100293758 ], [ -95.601543043649343, 29.327835100652237 ], [ -95.60170004404651, 29.327845100696614 ], [ -95.6020510437925, 29.327922100843637 ], [ -95.602279044211699, 29.327940100872866 ], [ -95.602534043727971, 29.327961100722618 ], [ -95.602729044252243, 29.328021100720903 ], [ -95.602955044390484, 29.328109100571101 ], [ -95.603168044319077, 29.328307101063224 ], [ -95.603212043925751, 29.328466100949246 ], [ -95.603212043676962, 29.328565100501724 ], [ -95.603228043973601, 29.328672100881111 ], [ -95.603256044072708, 29.328862100909411 ], [ -95.603350044511913, 29.329203100562005 ], [ -95.603438044013629, 29.329390100924325 ], [ -95.603532044416255, 29.329555100920174 ], [ -95.603671044316911, 29.32991210052532 ], [ -95.603696044527069, 29.329953100932528 ], [ -95.603853044419125, 29.330214100952791 ], [ -95.603947044154665, 29.330396101046414 ], [ -95.604123044479167, 29.330566100643768 ], [ -95.604236044401773, 29.330632101176111 ], [ -95.604380044791768, 29.330687101353018 ], [ -95.604531044128393, 29.330725101189866 ], [ -95.604644044908014, 29.33073610106716 ], [ -95.604982044530033, 29.330742101172568 ], [ -95.605083044946284, 29.330604100673629 ], [ -95.605151044245986, 29.330285100532901 ], [ -95.605189044607059, 29.330181101096041 ], [ -95.605214044440203, 29.329642100547215 ], [ -95.605233044655705, 29.32948310118984 ], [ -95.605251044785987, 29.32945010076984 ], [ -95.605414044558955, 29.329318100688067 ], [ -95.605490044498879, 29.329285100849109 ], [ -95.605854044605465, 29.32921310039838 ], [ -95.606192044804118, 29.329152100452909 ], [ -95.606293045434981, 29.329147100383782 ], [ -95.606669044887866, 29.329237100895153 ], [ -95.606707045299729, 29.329246100420004 ], [ -95.60683204505311, 29.329268100578471 ], [ -95.606933045229383, 29.32927310096861 ], [ -95.607046045564374, 29.329190100313216 ], [ -95.607089045019151, 29.329119100944403 ], [ -95.607133044821339, 29.329020101031279 ], [ -95.607165045124475, 29.328883100332913 ], [ -95.607359045625273, 29.328322100564904 ], [ -95.607497045713998, 29.327975100275005 ], [ -95.607718045510566, 29.327673099895897 ], [ -95.607791045062612, 29.327574100495319 ], [ -95.607967045049875, 29.327354100143914 ], [ -95.608000045124882, 29.32733109983943 ], [ -95.608142045439223, 29.327233099795933 ], [ -95.608312045542775, 29.327139099903377 ], [ -95.608475045917999, 29.327073100394568 ], [ -95.608638045919676, 29.32704609980761 ], [ -95.609058045455541, 29.326947100131477 ], [ -95.60942204588649, 29.326842100327099 ], [ -95.609566046219285, 29.326820099660885 ], [ -95.609704045730851, 29.326776100244437 ], [ -95.609830046052764, 29.326710100432738 ], [ -95.609930046227632, 29.32664409974652 ], [ -95.610018045503196, 29.326561099634347 ], [ -95.610137046251708, 29.326331099777629 ], [ -95.61020004600617, 29.32613310019385 ], [ -95.610203045521715, 29.326109099731106 ], [ -95.610218046263682, 29.325979100152779 ], [ -95.610244046003942, 29.325929099691031 ], [ -95.61045004566077, 29.325709100141111 ], [ -95.611036045847612, 29.325355100125812 ], [ -95.611059046454741, 29.325341099521701 ], [ -95.61146604636447, 29.325115099803387 ], [ -95.611749045922508, 29.324928099393386 ], [ -95.611912046702571, 29.324763100032744 ], [ -95.612150046203567, 29.324554099296765 ], [ -95.612438046649231, 29.324268099599216 ], [ -95.613015046481408, 29.323811099056829 ], [ -95.613197046332687, 29.323657099609104 ], [ -95.613322046434533, 29.32358009898541 ], [ -95.613486046318229, 29.323547098852881 ], [ -95.613815046958052, 29.323505098950516 ], [ -95.614207046590991, 29.323454099385611 ], [ -95.614401046424604, 29.323415099184714 ], [ -95.614546047224962, 29.323365099049038 ], [ -95.614652046532555, 29.32328309888684 ], [ -95.614728046524178, 29.323151099108308 ], [ -95.614778046815729, 29.323025098766806 ], [ -95.614790047144098, 29.322838098758528 ], [ -95.614758046912712, 29.322625098637339 ], [ -95.614753046478654, 29.322591099066173 ], [ -95.614732047226312, 29.322448099446071 ], [ -95.614702046533665, 29.32224909936156 ], [ -95.614714046591303, 29.321947098803005 ], [ -95.614758046288955, 29.321793098988859 ], [ -95.614833046544092, 29.321612099016107 ], [ -95.615003046737456, 29.32145809876636 ], [ -95.615240046697323, 29.321286098634634 ], [ -95.615467046542932, 29.321122098644189 ], [ -95.615780047515685, 29.320825098696357 ], [ -95.615830047270791, 29.32073209865608 ], [ -95.615918046927064, 29.32052309860752 ], [ -95.615943046617403, 29.320407098336943 ], [ -95.615949047378464, 29.320286098166683 ], [ -95.615946046618944, 29.320101098841857 ], [ -95.615946046748377, 29.320068098152856 ], [ -95.615943047417403, 29.319846098326888 ], [ -95.615949046716139, 29.31973109831868 ], [ -95.615968046818125, 29.319621098617574 ], [ -95.616012047256163, 29.319522098684647 ], [ -95.616124046986926, 29.319368098194559 ], [ -95.616344047255012, 29.319236098512995 ], [ -95.616582046982501, 29.319153098240744 ], [ -95.616971047422794, 29.318917098043965 ], [ -95.617341046947701, 29.318625098395856 ], [ -95.61749804712521, 29.318460098368075 ], [ -95.617767047710444, 29.318229098212477 ], [ -95.618357048065263, 29.317883098066332 ], [ -95.618802047375866, 29.317520097636017 ], [ -95.619880048369239, 29.316711097905173 ], [ -95.620068047916618, 29.316458097771182 ], [ -95.620144048021203, 29.316414097790048 ], [ -95.620275047509708, 29.316403098034584 ], [ -95.620457048044031, 29.316425097251987 ], [ -95.620633047646777, 29.316506097718538 ], [ -95.620840048449665, 29.316601097722341 ], [ -95.620990048563613, 29.31659509741883 ], [ -95.62108504865472, 29.316567097252708 ], [ -95.621160047763539, 29.316485097744842 ], [ -95.621185048478878, 29.316386097954148 ], [ -95.621260048388351, 29.316232097778585 ], [ -95.621367047839612, 29.316106097102402 ], [ -95.62189904872541, 29.315627097712945 ], [ -95.622132048394207, 29.315277097072286 ], [ -95.622163048347588, 29.315231097198048 ], [ -95.622276048497596, 29.315077097273406 ], [ -95.622639048623157, 29.314780097641716 ], [ -95.622771048855114, 29.31471409715752 ], [ -95.622895048913364, 29.314613097004816 ], [ -95.623047048802007, 29.314488096995735 ], [ -95.623348048966591, 29.314362096644111 ], [ -95.623624048889837, 29.314268097061028 ], [ -95.623925048304883, 29.31419709741429 ], [ -95.62421304895544, 29.31405909706314 ], [ -95.624533048635399, 29.313888097202376 ], [ -95.625009049127428, 29.313602097293906 ], [ -95.625157049576686, 29.313519097188792 ], [ -95.625414048924796, 29.313321097007773 ], [ -95.625784049510372, 29.312986096751992 ], [ -95.626506049039961, 29.312129096605002 ], [ -95.626845049272447, 29.311695096627993 ], [ -95.626882049659557, 29.311575096642166 ], [ -95.62695204936135, 29.311348096254243 ], [ -95.62701504965041, 29.310986096261281 ], [ -95.62707804932505, 29.310788096554134 ], [ -95.627147049499584, 29.310667096581746 ], [ -95.627230049817186, 29.310598096309104 ], [ -95.627260049979995, 29.310573096460431 ], [ -95.627404049854519, 29.310486095912992 ], [ -95.627561049556078, 29.310359096058168 ], [ -95.627649050024317, 29.310233095930709 ], [ -95.627753050114691, 29.310039095952249 ], [ -95.6278620500957, 29.309864095788281 ], [ -95.628019049646525, 29.309645095676469 ], [ -95.628201049371043, 29.309507095841688 ], [ -95.628193049785409, 29.309410096090971 ], [ -95.628070049359351, 29.309183095769455 ], [ -95.627950049181592, 29.309067095862364 ], [ -95.627405049118536, 29.308930096116299 ], [ -95.627286049918226, 29.308880096016384 ], [ -95.627185049486172, 29.308798095458307 ], [ -95.626765048958802, 29.308330095367147 ], [ -95.626514049503811, 29.308193095865807 ], [ -95.626188048639975, 29.308050095352542 ], [ -95.626044048867712, 29.308006095687762 ], [ -95.625718048851752, 29.307851095409635 ], [ -95.625536048832828, 29.307813095531714 ], [ -95.625392049206638, 29.307752095623638 ], [ -95.62509104894923, 29.307549095374956 ], [ -95.625005048347589, 29.307478095466553 ], [ -95.624949049268395, 29.307407095403679 ], [ -95.624817048780329, 29.307137095334639 ], [ -95.624660048732622, 29.306961095551568 ], [ -95.624359048245651, 29.30676909556194 ], [ -95.624070048623736, 29.306676095533259 ], [ -95.62392604879868, 29.306654095766881 ], [ -95.623688048643345, 29.306654095733382 ], [ -95.623625048000605, 29.306632095733619 ], [ -95.623525048585279, 29.306555095041578 ], [ -95.623499048185593, 29.30650609584114 ], [ -95.623493048488996, 29.306313095090854 ], [ -95.623480048337711, 29.306225095461052 ], [ -95.623424048374844, 29.306082095783797 ], [ -95.62331704799378, 29.305945095243654 ], [ -95.623198047781813, 29.305863095311643 ], [ -95.623016047817018, 29.305769095032062 ], [ -95.622326048381723, 29.305308095360797 ], [ -95.622173047886307, 29.305200095296293 ], [ -95.622031047941718, 29.305099095083335 ], [ -95.62196804802457, 29.305006095535116 ], [ -95.621912047860263, 29.304846095575407 ], [ -95.621836047894135, 29.304379095310043 ], [ -95.621779048248925, 29.304220095415918 ], [ -95.621748048213533, 29.30405509477222 ], [ -95.621748048190952, 29.303714094539412 ], [ -95.621710047840097, 29.30315309474895 ], [ -95.621764047530633, 29.302875094484385 ], [ -95.621779048202583, 29.302801095025409 ], [ -95.621829047930547, 29.30259809495012 ], [ -95.621835047545389, 29.302521094447687 ], [ -95.621810047940187, 29.302350094768038 ], [ -95.621728047471692, 29.302081094674669 ], [ -95.621671047308766, 29.301806094688789 ], [ -95.621659048028519, 29.30163609491321 ], [ -95.621677047797007, 29.301113094057364 ], [ -95.621608048089556, 29.300976094736843 ], [ -95.621501047248955, 29.300833094023414 ], [ -95.621388047930466, 29.300762094623405 ], [ -95.621307047727399, 29.300729094006279 ], [ -95.621238047058014, 29.300641094558532 ], [ -95.621087047650306, 29.300383094002289 ], [ -95.621040047504891, 29.300323094593107 ], [ -95.620980046983789, 29.300245094665708 ], [ -95.620924047130103, 29.30019009383307 ], [ -95.620874047727028, 29.300102094393257 ], [ -95.620830047804333, 29.299926094178637 ], [ -95.62082304740855, 29.299844093791208 ], [ -95.62084204777581, 29.299794094595086 ], [ -95.620892047123604, 29.299756093991491 ], [ -95.620974047498777, 29.299662093798549 ], [ -95.620986047766479, 29.299498094551947 ], [ -95.621030047363632, 29.299443093998644 ], [ -95.621149047331869, 29.299343093769348 ], [ -95.62141304752339, 29.299244094322795 ], [ -95.621557047608917, 29.299189094468353 ], [ -95.621958047669523, 29.299074093648276 ], [ -95.622115048023133, 29.298975093774828 ], [ -95.62218404783313, 29.298942093673407 ], [ -95.622234048174406, 29.298933093507394 ], [ -95.622309047621258, 29.298920093741298 ], [ -95.622485047654976, 29.298854094172384 ], [ -95.622598047727323, 29.298788094248728 ], [ -95.622685047613786, 29.298716093756507 ], [ -95.622729047989864, 29.298656093561256 ], [ -95.622736047660382, 29.298562093485266 ], [ -95.622666048311572, 29.298282094124659 ], [ -95.622578048058656, 29.298061094041039 ], [ -95.622578048104018, 29.298012093925905 ], [ -95.622616047470515, 29.297946094154526 ], [ -95.622729047484512, 29.297875094107408 ], [ -95.622842047411979, 29.297842093833417 ], [ -95.62324304757135, 29.297682093548431 ], [ -95.623345048086065, 29.297563093538795 ], [ -95.623393048409497, 29.297506093855258 ], [ -95.623418047484705, 29.297407093510767 ], [ -95.623412047661432, 29.297248093415707 ], [ -95.623362048152856, 29.297088093192258 ], [ -95.623343048109959, 29.296929093460857 ], [ -95.623368047856772, 29.296792093269108 ], [ -95.623481047718016, 29.296671093216943 ], [ -95.623637047843857, 29.296550093820027 ], [ -95.62380704828368, 29.296379093569971 ], [ -95.623888048374141, 29.296280093409667 ], [ -95.623932048548511, 29.296181093686783 ], [ -95.623954047830324, 29.296069093425729 ], [ -95.623957048485195, 29.296055093646281 ], [ -95.623988048319333, 29.29579609337306 ], [ -95.62402604815658, 29.295664093560209 ], [ -95.624088048276377, 29.295604093573068 ], [ -95.624270048287002, 29.295477093260459 ], [ -95.62446404798014, 29.295406092698347 ], [ -95.624766048096944, 29.295394093501663 ], [ -95.624897048689391, 29.29537209326239 ], [ -95.625004048233322, 29.295323093484424 ], [ -95.625092048619322, 29.295256093380605 ], [ -95.625186048659842, 29.295113092750647 ], [ -95.625642048581781, 29.294171092965865 ], [ -95.625657048497075, 29.294140092955381 ], [ -95.62568104799908, 29.294051093165379 ], [ -95.625870048459106, 29.293354093018333 ], [ -95.625946048019998, 29.293201092319467 ], [ -95.626065047981101, 29.2930960924079 ], [ -95.626190048009022, 29.293047093023983 ], [ -95.62632204902792, 29.293047092884393 ], [ -95.626379048218894, 29.293058092360557 ], [ -95.626441048134154, 29.293074092851498 ], [ -95.626542048813931, 29.29315109273163 ], [ -95.626686048871818, 29.293283092620719 ], [ -95.626782048382168, 29.293413093039227 ], [ -95.626824048978449, 29.293470092564736 ], [ -95.626918048984578, 29.293624092809814 ], [ -95.627074049043586, 29.293778092894339 ], [ -95.627181049172037, 29.293828092710388 ], [ -95.627332048879609, 29.293814092748939 ], [ -95.627369048635245, 29.293811092586953 ], [ -95.627501048513054, 29.293745092493687 ], [ -95.627614048845004, 29.293636092244714 ], [ -95.627664049335237, 29.293526093001596 ], [ -95.627727049174851, 29.293449092745988 ], [ -95.627858048447024, 29.293383092290298 ], [ -95.628517048742339, 29.293103092120965 ], [ -95.628825049264393, 29.292993092818058 ], [ -95.629113049675766, 29.292861092385525 ], [ -95.629251049439659, 29.292856092894727 ], [ -95.629414049723849, 29.292911092570261 ], [ -95.629615049412081, 29.292993092304709 ], [ -95.629790049673204, 29.293103092612842 ], [ -95.629878049374867, 29.293143092136592 ], [ -95.629972049811798, 29.293186092123609 ], [ -95.630340049134631, 29.293237092461851 ], [ -95.63040504995385, 29.293246092491312 ], [ -95.630562049656334, 29.293164092482741 ], [ -95.631082049712276, 29.292730092776807 ], [ -95.63123304927052, 29.292680092613907 ], [ -95.63134004963527, 29.292675092441641 ], [ -95.63150904948057, 29.292735092145069 ], [ -95.631697049621607, 29.292829092106192 ], [ -95.631929049469804, 29.292906092138818 ], [ -95.632186050336543, 29.292972092733855 ], [ -95.632355050236868, 29.293077092437379 ], [ -95.632468050097089, 29.293220092356954 ], [ -95.632518049904377, 29.293363092126445 ], [ -95.632537050340375, 29.293418092744847 ], [ -95.632706050269505, 29.293649092676777 ], [ -95.632838050293415, 29.293737092366484 ], [ -95.632995049744892, 29.29373709292847 ], [ -95.633005050423819, 29.293732092610675 ], [ -95.633189050694995, 29.293643092835893 ], [ -95.633365050857378, 29.293539092122021 ], [ -95.633547050803216, 29.293500092126873 ], [ -95.633704050825543, 29.293528092530003 ], [ -95.633798050664524, 29.29364309220194 ], [ -95.63385405057106, 29.293792092294485 ], [ -95.633904050557689, 29.293973092169121 ], [ -95.633967050556848, 29.294116092632358 ], [ -95.634105050311803, 29.29421009278888 ], [ -95.634249050361362, 29.294254092371997 ], [ -95.634418050708192, 29.294237092152294 ], [ -95.634625050913201, 29.294194092492564 ], [ -95.634751050882571, 29.294188092134089 ], [ -95.634895050293508, 29.294199092144481 ], [ -95.635026050840111, 29.29428709236446 ], [ -95.635196050673841, 29.294436092758243 ], [ -95.635359050393532, 29.294667092997948 ], [ -95.635402050544712, 29.294870092995868 ], [ -95.635402050434436, 29.294985092472778 ], [ -95.635333051061778, 29.295172092373381 ], [ -95.635308050959267, 29.295348092557287 ], [ -95.635365050742436, 29.295480093238442 ], [ -95.635571050780854, 29.295623092886235 ], [ -95.635691050866029, 29.295634093225676 ], [ -95.635760050677632, 29.295574093030844 ], [ -95.635985051527456, 29.295189092465467 ], [ -95.636117050793274, 29.295063092779333 ], [ -95.636218051252087, 29.295008092428155 ], [ -95.636324051373862, 29.295024093013684 ], [ -95.636393050864626, 29.295052092407161 ], [ -95.636450051455668, 29.295112092942418 ], [ -95.636475050853093, 29.295244093146845 ], [ -95.636531050800272, 29.295343092717122 ], [ -95.636625051124099, 29.295404092987805 ], [ -95.636675051023275, 29.295415092945071 ], [ -95.636820050966492, 29.295387092653634 ], [ -95.637039051850792, 29.295420092521574 ], [ -95.637390051806946, 29.295563092847097 ], [ -95.637641051664417, 29.295728093030117 ], [ -95.637722051677713, 29.295893092548521 ], [ -95.637704051824457, 29.295998093136113 ], [ -95.637642051261395, 29.296050093262267 ], [ -95.637553051528528, 29.296124092881804 ], [ -95.63726405103499, 29.296311092684011 ], [ -95.637214051159958, 29.296427092760982 ], [ -95.637176051551876, 29.296580092525705 ], [ -95.637214051975548, 29.296723092844413 ], [ -95.637220051120721, 29.296734092649533 ], [ -95.637277050987251, 29.296844092893608 ], [ -95.637346051490539, 29.296905093304591 ], [ -95.63746505202981, 29.296943093412498 ], [ -95.637609051698263, 29.296949093086521 ], [ -95.637760051839948, 29.296905092920607 ], [ -95.637891052117297, 29.296834092639486 ], [ -95.638004051745469, 29.296801093204458 ], [ -95.638111051511174, 29.296801092917583 ], [ -95.638236051953683, 29.296867093418992 ], [ -95.638337051291373, 29.29694909301648 ], [ -95.63841205142397, 29.297059093249061 ], [ -95.638631052158615, 29.297191093137368 ], [ -95.638753051464079, 29.297191093000624 ], [ -95.638844051469846, 29.297191093327534 ], [ -95.639015051579037, 29.297123093060257 ], [ -95.639070052414425, 29.297032092953916 ], [ -95.639139052279759, 29.296614093350499 ], [ -95.639209052142803, 29.296455093108417 ], [ -95.639334051768074, 29.296356093104457 ], [ -95.639516052119944, 29.296317093047492 ], [ -95.639641051981982, 29.296328093002362 ], [ -95.63981105193615, 29.296400093023678 ], [ -95.639980052271582, 29.29657009274861 ], [ -95.640149052734429, 29.2966530926197 ], [ -95.640406052774921, 29.296680093312148 ], [ -95.640657052226445, 29.296642093009662 ], [ -95.64078905228348, 29.29654909305513 ], [ -95.640864052755177, 29.296439092380833 ], [ -95.641021052424477, 29.29611409275773 ], [ -95.641103051927445, 29.296016092572366 ], [ -95.641435052885271, 29.295763092912971 ], [ -95.641556052828264, 29.295636092497556 ], [ -95.641624052278402, 29.295565092854872 ], [ -95.641674052883786, 29.295438092872132 ], [ -95.641718052206585, 29.295136092216779 ], [ -95.641645052327704, 29.294856092473818 ], [ -95.641628052610386, 29.294789092735829 ], [ -95.641624052057097, 29.294773091995122 ], [ -95.641599052527894, 29.294603092296107 ], [ -95.641643052252505, 29.29448209216239 ], [ -95.641724052856034, 29.294361092063816 ], [ -95.641762052650947, 29.294333092287584 ], [ -95.64177705288246, 29.294330092091645 ], [ -95.641956052591979, 29.294300092531639 ], [ -95.642088052781602, 29.294317092468525 ], [ -95.642163052706977, 29.294334092579181 ], [ -95.642514052529634, 29.294482092001751 ], [ -95.642596052924759, 29.294493092769837 ], [ -95.642690052784445, 29.294522092793112 ], [ -95.642703052503052, 29.294526092158296 ], [ -95.64282205306796, 29.294548092731524 ], [ -95.643060053371656, 29.294504091958846 ], [ -95.643317052621924, 29.294372092515243 ], [ -95.643411052954448, 29.294296091889699 ], [ -95.643461052945497, 29.294236092631483 ], [ -95.643700052702329, 29.293949092441931 ], [ -95.643857052804734, 29.293828092518982 ], [ -95.644258052819524, 29.293707092360094 ], [ -95.644352053205594, 29.293696092086122 ], [ -95.644472053009949, 29.293713091966175 ], [ -95.644678052874738, 29.293834092310718 ], [ -95.644870053171488, 29.29408209181695 ], [ -95.644879053730648, 29.294093091841585 ], [ -95.645073053595667, 29.294279092150525 ], [ -95.645268053295055, 29.294312092238972 ], [ -95.645418053875588, 29.294280092201735 ], [ -95.645513053838712, 29.294215091997891 ], [ -95.645563053211617, 29.294181092172401 ], [ -95.645675053106629, 29.294082092574534 ], [ -95.645914053841182, 29.293906092492506 ], [ -95.646064054097977, 29.29384009189058 ], [ -95.646165053950938, 29.293812091754607 ], [ -95.646303053860422, 29.293835092333985 ], [ -95.646416053181483, 29.293912092307497 ], [ -95.646560053669035, 29.294098092495211 ], [ -95.646707053548411, 29.2942320925997 ], [ -95.646735054149758, 29.294258091756149 ], [ -95.646804053851099, 29.294291092036872 ], [ -95.646892053972877, 29.294302092047825 ], [ -95.646992054040311, 29.294291091793642 ], [ -95.647087053753452, 29.29422509211194 ], [ -95.647106053408947, 29.294196092368523 ], [ -95.647256054313331, 29.293967092533329 ], [ -95.647526053633243, 29.293818092002077 ], [ -95.647864053779756, 29.293714092117145 ], [ -95.647965053636128, 29.293697091721359 ], [ -95.648040054336548, 29.293703091961987 ], [ -95.648266054434472, 29.293676092218284 ], [ -95.648354054142203, 29.293654091615309 ], [ -95.64849805376025, 29.293665092277489 ], [ -95.648611053875314, 29.293703092353226 ], [ -95.648711054159662, 29.293769092115284 ], [ -95.648987054286764, 29.29401709184263 ], [ -95.649094054707959, 29.294028092045451 ], [ -95.649257054104538, 29.293967092220765 ], [ -95.649464053968089, 29.293912091903991 ], [ -95.649771054294732, 29.293945092385982 ], [ -95.649896055051641, 29.294006091825761 ], [ -95.649971054140664, 29.294028092012805 ], [ -95.650153054830611, 29.294061092438888 ], [ -95.650486054291804, 29.294226091909554 ], [ -95.650624054757628, 29.294363092289458 ], [ -95.650668054993332, 29.294457092092916 ], [ -95.650809055012886, 29.294640091921138 ], [ -95.650824055116757, 29.294660092145129 ], [ -95.6509120553239, 29.294710091997349 ], [ -95.651006054929823, 29.29473709204882 ], [ -95.651094054597067, 29.294740092328269 ], [ -95.651107054555737, 29.294740091956808 ], [ -95.651207055294265, 29.294743091984298 ], [ -95.651577055377885, 29.294776092057027 ], [ -95.651671055414525, 29.294771092207046 ], [ -95.651928054798262, 29.294804091675942 ], [ -95.651972055203558, 29.294793091992588 ], [ -95.652066054955768, 29.294787091677446 ], [ -95.652235055515959, 29.294727091909504 ], [ -95.652336055577052, 29.294639091692154 ], [ -95.652605055301265, 29.294501092227378 ], [ -95.652737055060271, 29.294402092318204 ], [ -95.652825054917813, 29.294277091939271 ], [ -95.652837055027135, 29.294260092140913 ], [ -95.653157055617925, 29.293644092230497 ], [ -95.653349055647297, 29.293488092213266 ], [ -95.653496055753052, 29.293347092127121 ], [ -95.653626055229509, 29.293111091507498 ], [ -95.653653055940325, 29.293061091964365 ], [ -95.653722055370707, 29.292742091291899 ], [ -95.653741055249625, 29.292242091774469 ], [ -95.653779055376674, 29.292066091865681 ], [ -95.653867055972427, 29.291890091622655 ], [ -95.653986055617608, 29.29172009106059 ], [ -95.654118055128365, 29.291341090989505 ], [ -95.654162055597197, 29.291165091653749 ], [ -95.654231055229346, 29.29106009127371 ], [ -95.6543620559397, 29.290950091707877 ], [ -95.654444055482458, 29.29093409119621 ], [ -95.654507056090893, 29.290934090867069 ], [ -95.654568055199647, 29.290945091026789 ], [ -95.654626055723966, 29.290956090869745 ], [ -95.654745055499973, 29.291008091644738 ], [ -95.654852055310045, 29.291055091040537 ], [ -95.655052056002148, 29.291104091480619 ], [ -95.655247056027989, 29.291116091361161 ], [ -95.65532405601877, 29.291132091635852 ], [ -95.655479056303179, 29.29116509113512 ], [ -95.655698055767928, 29.29128609156556 ], [ -95.655755056026905, 29.291330091606618 ], [ -95.655892056364266, 29.291511090989967 ], [ -95.655943056205729, 29.291643091676836 ], [ -95.655990056486758, 29.291936091328012 ], [ -95.656030055882681, 29.292182091148309 ], [ -95.656124056266052, 29.292281091518827 ], [ -95.656225056521947, 29.292331091531043 ], [ -95.656344056066729, 29.292375091176634 ], [ -95.656401056361631, 29.292404091838726 ], [ -95.656588056034622, 29.29250109120408 ], [ -95.656663056555857, 29.292595091520383 ], [ -95.656754056047689, 29.292675091328263 ], [ -95.656864055929873, 29.292771091756858 ], [ -95.657084056189632, 29.292892091373769 ], [ -95.657309056560578, 29.292986091943504 ], [ -95.65738505657967, 29.293018091347225 ], [ -95.657629056711158, 29.293073091151381 ], [ -95.657798057050201, 29.293178091374944 ], [ -95.657922056363958, 29.29328409142164 ], [ -95.65804905631002, 29.293392091963359 ], [ -95.658175056533466, 29.293464091593922 ], [ -95.65840005635188, 29.293488091297128 ], [ -95.658632056932618, 29.29351309195922 ], [ -95.658783056742323, 29.293519091683844 ], [ -95.658908057287192, 29.293552092007832 ], [ -95.659059056756732, 29.293612092008154 ], [ -95.659191057343023, 29.293684092008846 ], [ -95.659354057431571, 29.293909091259678 ], [ -95.659429057155052, 29.294057091386581 ], [ -95.659492057388803, 29.294134091525091 ], [ -95.659667057244135, 29.294409091962571 ], [ -95.659712057195662, 29.294437091935691 ], [ -95.659780056811854, 29.294481092097438 ], [ -95.659876057332283, 29.294517091519921 ], [ -95.65990505666484, 29.294525091579857 ], [ -95.660025057482898, 29.294525091532371 ], [ -95.660131057529611, 29.294497091473833 ], [ -95.660250056897368, 29.294448091736523 ], [ -95.660727057436517, 29.294344091692235 ], [ -95.660953057665594, 29.294283091550689 ], [ -95.66122905746451, 29.294272091365109 ], [ -95.661404057134021, 29.29428309126116 ], [ -95.661580057282066, 29.294366091739942 ], [ -95.66171205712584, 29.294448091829199 ], [ -95.6618620578665, 29.294509091739748 ], [ -95.662226057649619, 29.294597091503796 ], [ -95.662495057754114, 29.294740091564485 ], [ -95.662790057687545, 29.294960091750756 ], [ -95.663060058265188, 29.29520209165835 ], [ -95.663229058019851, 29.295317091915923 ], [ -95.663436058085395, 29.29549909212961 ], [ -95.663649057843301, 29.295713091566927 ], [ -95.663843058187226, 29.296010092268389 ], [ -95.664044058526443, 29.296285092323902 ], [ -95.664282058751567, 29.296472091913948 ], [ -95.664427058859445, 29.296626092102127 ], [ -95.664546058683314, 29.296895092310887 ], [ -95.664596058785435, 29.29708209200286 ], [ -95.664646058814085, 29.297203091758739 ], [ -95.664728058394516, 29.297340091979301 ], [ -95.664790058957678, 29.297511091839919 ], [ -95.664815058810888, 29.297890092297923 ], [ -95.664821058132105, 29.298385092124732 ], [ -95.66484005833486, 29.29847809252875 ], [ -95.664841058476881, 29.298491092745742 ], [ -95.664846058798872, 29.298605092521854 ], [ -95.664884058985791, 29.298720092534797 ], [ -95.6649340584773, 29.298797092489643 ], [ -95.664997058654393, 29.298847092268105 ], [ -95.665097058811611, 29.298896092563965 ], [ -95.665154058245335, 29.298896092305601 ], [ -95.665260059051647, 29.298885092927438 ], [ -95.665298058955997, 29.298884092241725 ], [ -95.665574058893583, 29.298880092135708 ], [ -95.665875058813683, 29.298830092642255 ], [ -95.666157058854552, 29.298808092816749 ], [ -95.66643905934751, 29.298797092537079 ], [ -95.666659058764466, 29.298808092421673 ], [ -95.666791058995344, 29.298792092555708 ], [ -95.667167058676554, 29.298797092793087 ], [ -95.667474059214456, 29.298754092838983 ], [ -95.667650059373742, 29.298776092297246 ], [ -95.667800058854397, 29.298852092361372 ], [ -95.66795105939643, 29.298979092800188 ], [ -95.66808305947653, 29.299144092688127 ], [ -95.668103059794632, 29.299163092818159 ], [ -95.668221059488218, 29.299276092087844 ], [ -95.668340059514094, 29.29932009240807 ], [ -95.668497059281208, 29.299353092874146 ], [ -95.668540059747059, 29.299342092543235 ], [ -95.668622059523429, 29.299347092322957 ], [ -95.668685059736518, 29.299342092408189 ], [ -95.66876605912951, 29.299298092837649 ], [ -95.668776059166532, 29.299283092619092 ], [ -95.668917059611616, 29.299067092644446 ], [ -95.669036059737024, 29.298913091985927 ], [ -95.66912405961466, 29.298831092474391 ], [ -95.669343059597111, 29.298759092671791 ], [ -95.669475060056214, 29.298765092212516 ], [ -95.669789059932114, 29.298836092101197 ], [ -95.670008060318736, 29.298902092790883 ], [ -95.670359060456704, 29.299062092687809 ], [ -95.670679060519959, 29.299232092317752 ], [ -95.671049060119856, 29.299375092198677 ], [ -95.671350060751465, 29.299447092660909 ], [ -95.671739060303395, 29.299601092728896 ], [ -95.672471060301021, 29.299631092222302 ], [ -95.672792060543614, 29.299532092752063 ], [ -95.674305060574582, 29.300008092827696 ], [ -95.674383061008157, 29.300033092099703 ], [ -95.679561062856763, 29.30166209219097 ], [ -95.686025063868271, 29.303696092615596 ], [ -95.688033064324316, 29.304314092659741 ], [ -95.688069065193332, 29.304325092911768 ], [ -95.694410066673839, 29.306288092952467 ], [ -95.694600066334331, 29.306347092652501 ], [ -95.700984068703335, 29.308348093381554 ], [ -95.707162069811048, 29.310267093520064 ], [ -95.707310069505667, 29.310313093809143 ], [ -95.707705069619166, 29.310431093420437 ], [ -95.714261072078443, 29.312485094067906 ], [ -95.714280071591716, 29.312484093371374 ], [ -95.715744072079573, 29.312907093887425 ], [ -95.715758072700282, 29.312911093485738 ], [ -95.715796072268901, 29.31292209377731 ], [ -95.716068071954425, 29.313000093591061 ], [ -95.716319072399259, 29.313078094094806 ], [ -95.716365072390133, 29.313092093944693 ], [ -95.716867072231636, 29.313241093977393 ], [ -95.717740072950505, 29.313513093573285 ], [ -95.718383072412081, 29.313713094233375 ], [ -95.718651073026237, 29.313797094172056 ], [ -95.718718072748274, 29.313818093608806 ], [ -95.718843072762525, 29.313857093514788 ], [ -95.718898072875859, 29.313874094062292 ], [ -95.719151073420718, 29.313953094245385 ], [ -95.719690073645253, 29.314121093753229 ], [ -95.735619077570831, 29.319089094459617 ], [ -95.735851077897138, 29.319161094378526 ], [ -95.736072077854828, 29.319230094195763 ], [ -95.745425079861235, 29.322166094827065 ], [ -95.746098080142943, 29.322372095127779 ], [ -95.747220080747951, 29.322716094954966 ], [ -95.750248081627262, 29.323540095249513 ], [ -95.752860081927196, 29.324503094942791 ], [ -95.752873082400896, 29.324508095261773 ], [ -95.756318083389871, 29.321303094223875 ], [ -95.760864084129992, 29.317180093531402 ], [ -95.762103083723574, 29.316059092457333 ], [ -95.766849085136002, 29.311768091615086 ], [ -95.766959085337476, 29.311668091394392 ], [ -95.767119084921219, 29.31152209172215 ], [ -95.769982085365655, 29.308974090966583 ], [ -95.774413087022666, 29.305021090453693 ], [ -95.775332087351813, 29.304182089872477 ], [ -95.775994087042918, 29.303577090069101 ], [ -95.777825087641261, 29.30183608932909 ], [ -95.777926087068636, 29.30174008928357 ], [ -95.778492087374531, 29.301203089567132 ], [ -95.782206088455581, 29.297878088219683 ], [ -95.784020088590808, 29.29625408807048 ], [ -95.784083089266403, 29.296299088193358 ], [ -95.784899089390592, 29.296965088657185 ], [ -95.787146089510912, 29.298890088745924 ], [ -95.790222090547687, 29.301495089086941 ], [ -95.791846091255721, 29.302866088808319 ], [ -95.791867091324661, 29.302884089182257 ], [ -95.791970091685599, 29.3029720895487 ], [ -95.79463509163628, 29.305244089272655 ], [ -95.794973091673157, 29.305532089327706 ], [ -95.794995092424841, 29.305551089893726 ], [ -95.795151091852688, 29.305684089302719 ], [ -95.795225092019706, 29.305747089831502 ], [ -95.795457091713914, 29.305945089840382 ], [ -95.796128092258115, 29.306516090172373 ], [ -95.796536092121457, 29.306864089642705 ], [ -95.797062092856791, 29.30731309034671 ], [ -95.797308092230111, 29.307526090317669 ], [ -95.797319093215421, 29.307535090338714 ], [ -95.79734509276679, 29.307557090339909 ], [ -95.797371093026953, 29.307580089593301 ], [ -95.797803092986811, 29.307955089986756 ], [ -95.797827093059595, 29.307976090491909 ], [ -95.797887093052552, 29.30792209048985 ], [ -95.7984020930312, 29.307454090344805 ], [ -95.798819092818277, 29.307075089931317 ], [ -95.801812094207975, 29.304354088918956 ], [ -95.801821093362506, 29.304346089604334 ], [ -95.801841093329728, 29.304328089031706 ], [ -95.806796095098917, 29.299825088000183 ], [ -95.80689009528048, 29.299740088463743 ], [ -95.807026094469094, 29.299623087713769 ], [ -95.809315094945504, 29.297561087465969 ], [ -95.812699095623472, 29.29446608715698 ], [ -95.815160097040632, 29.292224086476729 ], [ -95.815382096978695, 29.292014086040954 ], [ -95.815416096311807, 29.291978085759673 ], [ -95.815435096857286, 29.291959086309511 ], [ -95.815479096258358, 29.291914086104569 ], [ -95.815662096889653, 29.29172608602353 ], [ -95.816059096924846, 29.291359086221469 ], [ -95.816138097028528, 29.291287086164385 ], [ -95.819121097274461, 29.288659085740701 ], [ -95.832081100585299, 29.276823082460222 ], [ -95.834226100561153, 29.274864082495149 ], [ -95.835032100753665, 29.27412808167675 ], [ -95.837364101852046, 29.271998081447585 ], [ -95.838745101816855, 29.270739081442148 ], [ -95.842301102086736, 29.267491080502008 ], [ -95.842375102124521, 29.267422080255777 ], [ -95.842513102755134, 29.267296080123192 ], [ -95.845895102791488, 29.264207079271305 ], [ -95.846838103170711, 29.263349079044058 ], [ -95.847663103634758, 29.262595079119301 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 721, "Tract": "48039664400", "Area_SqMi": 33.848922087130859, "total_2009": 884, "total_2010": 727, "total_2011": 773, "total_2012": 1304, "total_2013": 1220, "total_2014": 1135, "total_2015": 1169, "total_2016": 1052, "total_2017": 1127, "total_2018": 1355, "total_2019": 1571, "total_2020": 1473, "age1": 213, "age2": 852, "age3": 436, "earn1": 208, "earn2": 216, "earn3": 1077, "naics_s01": 0, "naics_s02": 0, "naics_s03": 28, "naics_s04": 44, "naics_s05": 330, "naics_s06": 304, "naics_s07": 31, "naics_s08": 448, "naics_s09": 0, "naics_s10": 20, "naics_s11": 15, "naics_s12": 12, "naics_s13": 0, "naics_s14": 0, "naics_s15": 5, "naics_s16": 5, "naics_s17": 29, "naics_s18": 37, "naics_s19": 53, "naics_s20": 140, "race1": 1236, "race2": 184, "race3": 11, "race4": 53, "race5": 0, "race6": 17, "ethnicity1": 1063, "ethnicity2": 438, "edu1": 264, "edu2": 349, "edu3": 461, "edu4": 214, "Shape_Length": 170865.84175365898, "Shape_Area": 943650014.78006518, "total_2021": 1327, "total_2022": 1501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.443946984858144, 28.871047011303581 ], [ -95.443777984858812, 28.870821011296783 ], [ -95.443378984601651, 28.870285010705732 ], [ -95.44294998394227, 28.870030010656983 ], [ -95.441517983736446, 28.869896011208318 ], [ -95.439949983466079, 28.86875001058662 ], [ -95.439666983555526, 28.868242010988624 ], [ -95.439537982661804, 28.865965010582567 ], [ -95.438972982414441, 28.864823010000762 ], [ -95.438841982389945, 28.862925009896621 ], [ -95.438257982165283, 28.861924009227412 ], [ -95.437907982921161, 28.861326008955348 ], [ -95.436013981642461, 28.859661009104197 ], [ -95.437171982205641, 28.859740008594965 ], [ -95.436534981799355, 28.858778008855225 ], [ -95.435902981734017, 28.858685008571502 ], [ -95.433903981311715, 28.858393008970047 ], [ -95.431341980558443, 28.858493008868894 ], [ -95.420864978105783, 28.858412009053289 ], [ -95.412056976011186, 28.858412009352691 ], [ -95.405473973691983, 28.859630010138016 ], [ -95.39851997211268, 28.860929010362128 ], [ -95.393512970882767, 28.861903011064765 ], [ -95.385446969260215, 28.86369001154079 ], [ -95.381181968502673, 28.865070012263576 ], [ -95.37997696840624, 28.868318012824762 ], [ -95.379646968348027, 28.870630012827693 ], [ -95.379512967698474, 28.871566013304847 ], [ -95.379141967561864, 28.87310801351467 ], [ -95.378260967443453, 28.873335013787958 ], [ -95.377286967485489, 28.873587013857982 ], [ -95.376801967779741, 28.875908014221004 ], [ -95.37497096662949, 28.877270014827424 ], [ -95.369659966137718, 28.882160015398359 ], [ -95.364624964773029, 28.88632801642369 ], [ -95.360229963666441, 28.889373017617853 ], [ -95.360778964160218, 28.890015017708283 ], [ -95.360854964384018, 28.890096017458326 ], [ -95.360939963672351, 28.890134017604513 ], [ -95.357587963602924, 28.892861018811747 ], [ -95.355404962347393, 28.894506018460234 ], [ -95.353527962766179, 28.895979019465127 ], [ -95.351029962201949, 28.89780602002001 ], [ -95.347867960805701, 28.900137020625163 ], [ -95.346879960487286, 28.90100302057596 ], [ -95.345720960807668, 28.90197202023532 ], [ -95.344184959818008, 28.902995020560237 ], [ -95.34317895944362, 28.903641021516435 ], [ -95.341498959805108, 28.90502702138993 ], [ -95.340695959027386, 28.905603021631283 ], [ -95.340039958816106, 28.906074021503386 ], [ -95.338282958802125, 28.9073340217085 ], [ -95.336405957962796, 28.908752022351127 ], [ -95.334330957607534, 28.910130022780823 ], [ -95.334168957596589, 28.910240022675691 ], [ -95.333488958042267, 28.910575023053923 ], [ -95.33242595762114, 28.911484023018755 ], [ -95.331994957455208, 28.911862023030476 ], [ -95.330521957283693, 28.912941023447434 ], [ -95.327754956173166, 28.914704024173375 ], [ -95.321429954605165, 28.918880024542368 ], [ -95.319690954117647, 28.920027025666535 ], [ -95.315969953373155, 28.922492026223001 ], [ -95.316325954156, 28.922803025931746 ], [ -95.316434954009765, 28.922898025913078 ], [ -95.316242953512784, 28.92308902616864 ], [ -95.315675954059813, 28.923499026240233 ], [ -95.315011953311839, 28.923976026336319 ], [ -95.313408953538712, 28.924982026130195 ], [ -95.312941952981163, 28.925288026478825 ], [ -95.308297952523105, 28.928178026932191 ], [ -95.307327951548956, 28.928822027475768 ], [ -95.303887951374833, 28.931130027878943 ], [ -95.303322951059712, 28.931286027721406 ], [ -95.303250950845438, 28.931680027987376 ], [ -95.302953951164753, 28.931759027847146 ], [ -95.301507950085508, 28.932444028656672 ], [ -95.30052894995724, 28.932861028863606 ], [ -95.299424950044383, 28.933309028422929 ], [ -95.297807949652935, 28.933900028561116 ], [ -95.297058949245667, 28.934014028919499 ], [ -95.297157948934199, 28.934085028924201 ], [ -95.297065949437638, 28.934158028984811 ], [ -95.297047949607119, 28.934172029122394 ], [ -95.296970949861716, 28.934233029053516 ], [ -95.29689394976478, 28.934297028933276 ], [ -95.296779948889423, 28.934392029072107 ], [ -95.29649294902454, 28.934631029321569 ], [ -95.296528949497656, 28.934677028931262 ], [ -95.296695948868233, 28.934890028615602 ], [ -95.296743949385259, 28.934951029413405 ], [ -95.300140950110674, 28.938246029555405 ], [ -95.303245951485124, 28.941025029732131 ], [ -95.304285951927028, 28.94195603053431 ], [ -95.305999951955044, 28.942853030676311 ], [ -95.307001952605589, 28.943112030853698 ], [ -95.307576952435682, 28.942863030033923 ], [ -95.308042952502731, 28.942903030121528 ], [ -95.308145952730115, 28.942811030783904 ], [ -95.308210952123105, 28.942755030212911 ], [ -95.308782952858977, 28.942967030400755 ], [ -95.309153952493773, 28.942999030107721 ], [ -95.309299953016037, 28.942976030242914 ], [ -95.309557953191273, 28.942936030277352 ], [ -95.310158953478648, 28.942844030555122 ], [ -95.310733953404778, 28.942756029876197 ], [ -95.311884953264482, 28.942258030031901 ], [ -95.317334954439417, 28.942293030133143 ], [ -95.318634954704308, 28.941163030046305 ], [ -95.320082955828511, 28.939026029124818 ], [ -95.321142955406032, 28.93800002896587 ], [ -95.321386955680808, 28.937765029223232 ], [ -95.321681956021123, 28.936755028846097 ], [ -95.324138956564795, 28.934494027892413 ], [ -95.325720957043586, 28.933871028124088 ], [ -95.328014957322821, 28.933886027706784 ], [ -95.329300957656798, 28.934526027539491 ], [ -95.331150958603374, 28.936308028523207 ], [ -95.331143958160879, 28.937233028504412 ], [ -95.331140958727005, 28.937585028570993 ], [ -95.331137957837797, 28.937952028457804 ], [ -95.33101495872549, 28.938426028631387 ], [ -95.330841957806769, 28.939089028793958 ], [ -95.330764958392606, 28.939208028662446 ], [ -95.329953957761745, 28.940410029337968 ], [ -95.327933957568007, 28.942294029371727 ], [ -95.327437957182241, 28.943143029619989 ], [ -95.327110957565083, 28.944142029761668 ], [ -95.326780957033208, 28.944755030104432 ], [ -95.326762957167404, 28.94703203046025 ], [ -95.327042957741824, 28.947792030579116 ], [ -95.3273279580755, 28.948047031225794 ], [ -95.327606958007962, 28.948930031040547 ], [ -95.328889958418841, 28.950080031410085 ], [ -95.329724958305064, 28.950523031359367 ], [ -95.331285958710509, 28.95098003139254 ], [ -95.333664959658392, 28.951114031213706 ], [ -95.335261960140073, 28.951205030939896 ], [ -95.33786196057153, 28.95089503072003 ], [ -95.338205960857593, 28.95089703085328 ], [ -95.339784960808032, 28.950780031408751 ], [ -95.3402169615335, 28.950530031256399 ], [ -95.341507961226014, 28.950537031328768 ], [ -95.343701962011821, 28.951400031453694 ], [ -95.343866961633097, 28.950914030687599 ], [ -95.343915962350891, 28.950774030914147 ], [ -95.34413296238948, 28.950162030858973 ], [ -95.344238961913248, 28.949865030444485 ], [ -95.344874961805075, 28.95006603032396 ], [ -95.345730962472985, 28.950297030910999 ], [ -95.346120962892186, 28.950401030717799 ], [ -95.347501963493002, 28.95077303080204 ], [ -95.348873963283282, 28.951122030565863 ], [ -95.35022796341427, 28.951488031212602 ], [ -95.351609964459968, 28.951868031107725 ], [ -95.352985964323608, 28.952250031024946 ], [ -95.354105964921615, 28.952529030924353 ], [ -95.354413964821106, 28.952606031338167 ], [ -95.355732965440652, 28.952969030626644 ], [ -95.357111965581325, 28.953335031309976 ], [ -95.358490965813886, 28.953705031196165 ], [ -95.35985996667894, 28.954083031130722 ], [ -95.360181966112179, 28.954163031107939 ], [ -95.361234966563543, 28.95444603130991 ], [ -95.362614966752048, 28.95482103083113 ], [ -95.363992967681227, 28.955196031481872 ], [ -95.365364968148583, 28.955569030789196 ], [ -95.366745967643311, 28.955940030852297 ], [ -95.368104968256716, 28.956318031112733 ], [ -95.368161968925619, 28.956301030886632 ], [ -95.369489968889809, 28.956665031571767 ], [ -95.37072796920647, 28.957009031428978 ], [ -95.371077969172603, 28.9571070310528 ], [ -95.372094970011972, 28.957373031272517 ], [ -95.372909969845765, 28.957593031449552 ], [ -95.373647969865971, 28.95780103157308 ], [ -95.373730969828017, 28.957821031756147 ], [ -95.373881969968451, 28.957858031826987 ], [ -95.374701969941825, 28.958075031778144 ], [ -95.374783969807226, 28.958146031816192 ], [ -95.375833970230815, 28.958389031524916 ], [ -95.376189970881654, 28.95849003109732 ], [ -95.377122970853705, 28.958744031648262 ], [ -95.377297970434483, 28.958791031905616 ], [ -95.380081970831952, 28.948120028901396 ], [ -95.380406971522874, 28.946873029030296 ], [ -95.38062997147243, 28.946932028663106 ], [ -95.382518971425313, 28.947430028647457 ], [ -95.384245972586967, 28.947933028659101 ], [ -95.385232972437876, 28.948204028915438 ], [ -95.385456972329933, 28.94826702873662 ], [ -95.385826973026283, 28.94837202935674 ], [ -95.386400972404942, 28.948548029025414 ], [ -95.386875972771477, 28.948719029479065 ], [ -95.387429972719531, 28.948960028872065 ], [ -95.387911972867144, 28.949192029498224 ], [ -95.388454973144647, 28.949486029099628 ], [ -95.38852797332035, 28.949495028892617 ], [ -95.389105973581891, 28.949847029421363 ], [ -95.389615973781417, 28.950179029154302 ], [ -95.389708973331835, 28.950254029073644 ], [ -95.390459974401253, 28.950860029132159 ], [ -95.391339974584227, 28.951654029792859 ], [ -95.392242974054227, 28.952502029573079 ], [ -95.39689197583931, 28.956841030672951 ], [ -95.400651976522212, 28.96035003067901 ], [ -95.401399977369991, 28.961043031142893 ], [ -95.403569977753634, 28.963056031343765 ], [ -95.403657977518151, 28.963206031489555 ], [ -95.404011978195143, 28.963515031790788 ], [ -95.40457097795759, 28.963983031390029 ], [ -95.405020978504751, 28.964340031858104 ], [ -95.40556397808173, 28.964721032077634 ], [ -95.406141978392881, 28.965085031753382 ], [ -95.406749979118459, 28.9654330318665 ], [ -95.406805979124044, 28.965460031584726 ], [ -95.407725979116705, 28.96590503210038 ], [ -95.408239978914466, 28.96612203160343 ], [ -95.409196979897132, 28.966458032156261 ], [ -95.409691979366769, 28.966630032272676 ], [ -95.41038497993928, 28.966822032381145 ], [ -95.41057697946728, 28.966818032464907 ], [ -95.412090980377627, 28.967187032305173 ], [ -95.412781980415843, 28.967350031927879 ], [ -95.413946981007669, 28.967609032479555 ], [ -95.415671980912265, 28.968005032609017 ], [ -95.417449981611881, 28.968412031949139 ], [ -95.41884998217563, 28.96870703223971 ], [ -95.419494982486441, 28.968831032450023 ], [ -95.420470982937275, 28.969014031890307 ], [ -95.421197982417269, 28.969101032375736 ], [ -95.422316982639259, 28.969227032583976 ], [ -95.422950982926054, 28.969288032541478 ], [ -95.423122982795121, 28.969300032154738 ], [ -95.424096983458156, 28.969369032488537 ], [ -95.425466983220005, 28.969425032484786 ], [ -95.425862983517547, 28.969429031855078 ], [ -95.427010983752439, 28.969429032531576 ], [ -95.427584983964806, 28.969414032399989 ], [ -95.428739984227875, 28.969386031820246 ], [ -95.430571985115265, 28.969353032303466 ], [ -95.430864985163581, 28.969347031971761 ], [ -95.430984984725939, 28.969345031807759 ], [ -95.430936985532483, 28.969029031930823 ], [ -95.430928985499136, 28.968959031574521 ], [ -95.430923985474877, 28.968918031852589 ], [ -95.430894985046763, 28.968860031515607 ], [ -95.430831984998932, 28.968810031420457 ], [ -95.430774984774288, 28.968779032186866 ], [ -95.430722985415144, 28.968739032099965 ], [ -95.430677984878287, 28.968686032289945 ], [ -95.43061598492578, 28.96859203195293 ], [ -95.430576985199622, 28.968530031947228 ], [ -95.430556984897194, 28.968499032045052 ], [ -95.430507984854515, 28.968445031956243 ], [ -95.430483984718364, 28.96841203155148 ], [ -95.430457984662326, 28.9683560318473 ], [ -95.430397984616349, 28.968283031968031 ], [ -95.430328985102975, 28.968212031990006 ], [ -95.43027398452854, 28.968172031477366 ], [ -95.430200985194247, 28.968104031350855 ], [ -95.430161985114097, 28.968066032134992 ], [ -95.430029984592124, 28.967967031904024 ], [ -95.4300089843329, 28.967951031598982 ], [ -95.42999098503229, 28.967931031372505 ], [ -95.429947985068679, 28.967907031302406 ], [ -95.429904984298432, 28.967890032146212 ], [ -95.4298579846742, 28.967882031791675 ], [ -95.429811984253078, 28.967876031699515 ], [ -95.429761984339621, 28.96787003161608 ], [ -95.429630984823049, 28.967855031342658 ], [ -95.429530984229274, 28.96785603173284 ], [ -95.429420984937806, 28.967863031417259 ], [ -95.429303984649664, 28.967883031488743 ], [ -95.429190984967903, 28.967892032178451 ], [ -95.429105984523247, 28.967905032069204 ], [ -95.429062984432363, 28.967903032114837 ], [ -95.428987984778047, 28.967886031702342 ], [ -95.428867984833161, 28.967846031520409 ], [ -95.428743984270312, 28.96780503182929 ], [ -95.428700984650348, 28.967781031355926 ], [ -95.428682984406791, 28.967766031341561 ], [ -95.428663984952294, 28.967755031723229 ], [ -95.428555984805769, 28.96770903152764 ], [ -95.42853798491025, 28.967696032032126 ], [ -95.428525984825086, 28.967680031322036 ], [ -95.42851798463191, 28.967642032025356 ], [ -95.428525984162505, 28.967602031394065 ], [ -95.428535984439677, 28.967562031246921 ], [ -95.428562983951849, 28.967506031234731 ], [ -95.428570984084303, 28.967470031677617 ], [ -95.428568984620398, 28.967447031451442 ], [ -95.428507984734026, 28.96739403167777 ], [ -95.428468984758865, 28.96734503173569 ], [ -95.428438984460541, 28.967301032035596 ], [ -95.428431984398884, 28.967233031786282 ], [ -95.428429984081617, 28.967186031491064 ], [ -95.428428984297042, 28.967143031149405 ], [ -95.428427984592531, 28.967082031454723 ], [ -95.428423983929477, 28.96701903185847 ], [ -95.428427984167612, 28.966974031701383 ], [ -95.428438984607368, 28.96693603187753 ], [ -95.428437984139549, 28.966895031144656 ], [ -95.42844798421855, 28.966879031944394 ], [ -95.428479984854789, 28.966847031835226 ], [ -95.428537984391923, 28.966805031472216 ], [ -95.428594983945544, 28.966775031777424 ], [ -95.428616984214386, 28.966770031949988 ], [ -95.428659984349466, 28.966720031821851 ], [ -95.428694984303391, 28.966681031838846 ], [ -95.428726984792206, 28.966655031454437 ], [ -95.428737984005465, 28.966635031833064 ], [ -95.428745984460491, 28.966571031174915 ], [ -95.428755984817244, 28.966551031803554 ], [ -95.428781984217665, 28.966514031591512 ], [ -95.428788984311439, 28.966496031597568 ], [ -95.428827984091185, 28.966466031274393 ], [ -95.428840984024646, 28.966452031007126 ], [ -95.428847984777875, 28.96643203140091 ], [ -95.42883998459412, 28.966394031219945 ], [ -95.428846984195047, 28.966355031061493 ], [ -95.428840984000232, 28.966252031266869 ], [ -95.428862984534746, 28.966213031426271 ], [ -95.428883984031089, 28.966143031685526 ], [ -95.428949984617489, 28.966051031510773 ], [ -95.428969984881476, 28.965931031389985 ], [ -95.428978984132954, 28.96583203112273 ], [ -95.428975984268277, 28.965710031059267 ], [ -95.428950984899586, 28.965602031474482 ], [ -95.428857984213778, 28.965523031110983 ], [ -95.42877398396179, 28.965326030831058 ], [ -95.428725984670763, 28.965196031333214 ], [ -95.428606984434097, 28.964970030936144 ], [ -95.428568984576359, 28.964782030938579 ], [ -95.428526984594271, 28.96452703118182 ], [ -95.428522984271225, 28.96429303138494 ], [ -95.428573984518081, 28.964042031334248 ], [ -95.428694984085041, 28.963900031271091 ], [ -95.428892984622266, 28.963587031106965 ], [ -95.428957984441581, 28.96347503037612 ], [ -95.429013983892204, 28.963425030884501 ], [ -95.429079984661229, 28.963345031163399 ], [ -95.42907598405472, 28.963194030829666 ], [ -95.429051984213515, 28.963135030452897 ], [ -95.429003984568027, 28.96300503101741 ], [ -95.42897998394578, 28.962977030697221 ], [ -95.428945984689207, 28.962977031015313 ], [ -95.428842984629284, 28.962938030763514 ], [ -95.428770984411983, 28.962741030471587 ], [ -95.428765984204418, 28.962552030196637 ], [ -95.42875198406, 28.962433030598554 ], [ -95.428727983733523, 28.962363030832829 ], [ -95.428713983918129, 28.962282030481216 ], [ -95.428690984206781, 28.962253030544357 ], [ -95.428633983880758, 28.962245030951348 ], [ -95.42857598373007, 28.962206030556302 ], [ -95.428552984301476, 28.96216603039225 ], [ -95.428515984689611, 28.96201703053331 ], [ -95.42849198424274, 28.961988030756483 ], [ -95.428457983655392, 28.961978030960843 ], [ -95.428417984483332, 28.961945030907657 ], [ -95.428375983973211, 28.961889030553539 ], [ -95.428318984466614, 28.961872030259055 ], [ -95.428239983741179, 28.961873030397058 ], [ -95.428209984147898, 28.961848030234776 ], [ -95.428158983881247, 28.961814030366728 ], [ -95.428134983853894, 28.961774030321841 ], [ -95.428122984011196, 28.961736030039319 ], [ -95.428063983569601, 28.961647030788942 ], [ -95.428039984333964, 28.961586030589128 ], [ -95.427986984061263, 28.96152303060251 ], [ -95.42795798372687, 28.961468030307525 ], [ -95.427954983936559, 28.961319030223212 ], [ -95.42799698359913, 28.961188030719757 ], [ -95.428018984245213, 28.961167030396052 ], [ -95.428086984042253, 28.96115703034609 ], [ -95.428142984483046, 28.961156030728702 ], [ -95.428143984477728, 28.96117603040511 ], [ -95.428177984430775, 28.96118403064424 ], [ -95.42820098417323, 28.9611840302085 ], [ -95.428222983866405, 28.961145030466522 ], [ -95.428221983771934, 28.961093030421548 ], [ -95.428277984569647, 28.961063030284741 ], [ -95.428299983644152, 28.961033030194574 ], [ -95.428343983835731, 28.960992030586823 ], [ -95.428378983678101, 28.960982030294719 ], [ -95.428433984002751, 28.960961029978026 ], [ -95.428455984035466, 28.96093102988954 ], [ -95.428477983632561, 28.960911030633518 ], [ -95.428545983828087, 28.960880030210763 ], [ -95.428600984000127, 28.960871030298208 ], [ -95.428631984278638, 28.96084103003302 ], [ -95.428634984427092, 28.960827030182617 ], [ -95.42870098366501, 28.960746030372594 ], [ -95.428722983782563, 28.960705030035843 ], [ -95.428778983921703, 28.96065502979139 ], [ -95.428822984636355, 28.960595030425367 ], [ -95.428843984547981, 28.960534030396609 ], [ -95.428955983921099, 28.960473030179163 ], [ -95.42897798436853, 28.960441030394154 ], [ -95.429055984330802, 28.960381029749925 ], [ -95.429054984482377, 28.960321030314404 ], [ -95.429006983760743, 28.960231030577379 ], [ -95.428955984068097, 28.960203029896935 ], [ -95.428936984137621, 28.960163029796014 ], [ -95.428912984542109, 28.960113029954663 ], [ -95.428900983738515, 28.960064030410408 ], [ -95.428873984411908, 28.960042030529419 ], [ -95.428830984107805, 28.959995030205167 ], [ -95.428762984382132, 28.959976030144748 ], [ -95.428694984469956, 28.95996803025367 ], [ -95.428614984568867, 28.959970030178198 ], [ -95.428569983830585, 28.959991030175534 ], [ -95.428535984281609, 28.959971030464526 ], [ -95.428464984465208, 28.959842029696564 ], [ -95.428428983677293, 28.959793029882871 ], [ -95.428334983785362, 28.959646030134468 ], [ -95.428310984393008, 28.959576030286517 ], [ -95.428253983787812, 28.959557030270506 ], [ -95.428196983964256, 28.959549030461822 ], [ -95.428194984248975, 28.959479030373693 ], [ -95.428228984051913, 28.959458030136055 ], [ -95.428250983822934, 28.959428030079867 ], [ -95.428249983824429, 28.959408030403022 ], [ -95.428180983850694, 28.959339029606255 ], [ -95.428154983503717, 28.959209029547633 ], [ -95.428130983463461, 28.959140029908244 ], [ -95.427971984355665, 28.959142030077153 ], [ -95.427856983552374, 28.95909503025382 ], [ -95.427822984049357, 28.959066029765076 ], [ -95.427773983958588, 28.958936029973561 ], [ -95.427782984358032, 28.958828030096871 ], [ -95.427632983894341, 28.95872003029039 ], [ -95.427619984279971, 28.958659029467523 ], [ -95.427617983917813, 28.958589030242937 ], [ -95.427638984010358, 28.958501029544738 ], [ -95.427637983687887, 28.95845202936983 ], [ -95.427569984145862, 28.958433029572724 ], [ -95.427556983611836, 28.958392029515302 ], [ -95.427555983329455, 28.958343029339662 ], [ -95.427531984167871, 28.958302029813357 ], [ -95.427473983992229, 28.958233029918343 ], [ -95.427449983653773, 28.958184030024029 ], [ -95.42744998325476, 28.958155029530978 ], [ -95.427425984009602, 28.958126029557786 ], [ -95.427355983579417, 28.958057029390723 ], [ -95.427354983719681, 28.957997029909986 ], [ -95.427306984169519, 28.957898029831174 ], [ -95.427261984064515, 28.957899029489198 ], [ -95.427192983788999, 28.957851030092723 ], [ -95.427180983627352, 28.957819029478731 ], [ -95.427146984057089, 28.957779029485284 ], [ -95.427099983313468, 28.957665029611775 ], [ -95.427079983459862, 28.957549029981436 ], [ -95.427025983667107, 28.95750403002031 ], [ -95.427002983089153, 28.957493029992683 ], [ -95.426921983970146, 28.957425029423661 ], [ -95.426749983178141, 28.957358029478783 ], [ -95.426712983813104, 28.957230030052862 ], [ -95.426666983976745, 28.957181029957891 ], [ -95.426631983041915, 28.957162029251482 ], [ -95.426538983908131, 28.957044029297847 ], [ -95.426412983330522, 28.956996029193832 ], [ -95.426229983509245, 28.956968029416842 ], [ -95.426160983113434, 28.956890029593616 ], [ -95.426056983416657, 28.956831029092093 ], [ -95.425989982864252, 28.956884029328226 ], [ -95.425842982893769, 28.956905029525082 ], [ -95.425751983603305, 28.956877029978397 ], [ -95.425727983376063, 28.956828029743448 ], [ -95.425726983743431, 28.956770029857712 ], [ -95.425735983210814, 28.956700029315016 ], [ -95.425852983251147, 28.956639029904355 ], [ -95.425903982861527, 28.956575029028755 ], [ -95.425970983018331, 28.956535029580241 ], [ -95.425967983318401, 28.956416029205251 ], [ -95.425875983381275, 28.95635702978624 ], [ -95.425817983087711, 28.956308029008412 ], [ -95.425771982749694, 28.956279029375921 ], [ -95.425736983648051, 28.956248029789556 ], [ -95.425691982990401, 28.956240029195033 ], [ -95.425668983153656, 28.956261029338293 ], [ -95.425669983671554, 28.956311029828917 ], [ -95.425647983685394, 28.956340029191693 ], [ -95.425556983222165, 28.956292029556597 ], [ -95.425532983224386, 28.956243029285449 ], [ -95.425530983665695, 28.956153029194759 ], [ -95.425483983179163, 28.956075029240104 ], [ -95.425470982789378, 28.956027029793454 ], [ -95.425479983660864, 28.955944029450801 ], [ -95.425475982855119, 28.955766029749832 ], [ -95.425519983212169, 28.955704029123279 ], [ -95.425565983322855, 28.955704029249947 ], [ -95.42558098356723, 28.955628029586755 ], [ -95.425570982793829, 28.955612029049387 ], [ -95.425988983544357, 28.954135029150848 ], [ -95.426121983253637, 28.952385028219634 ], [ -95.425932982848948, 28.951701028529826 ], [ -95.424265982263407, 28.951051028771452 ], [ -95.422964982396124, 28.950169028191201 ], [ -95.422195982163615, 28.948975028272152 ], [ -95.421957981470811, 28.948605028336132 ], [ -95.421329981334964, 28.948388028007052 ], [ -95.42030798131762, 28.94838202797418 ], [ -95.419949981214785, 28.948380028206422 ], [ -95.419442981490661, 28.948207027818565 ], [ -95.419306981665187, 28.946797027871142 ], [ -95.418874980713042, 28.946218027135895 ], [ -95.418224981197937, 28.945744027821529 ], [ -95.418155980450649, 28.945189027158989 ], [ -95.418522980450291, 28.944636027172926 ], [ -95.420348981163855, 28.94323602686385 ], [ -95.420853981870906, 28.942344026552238 ], [ -95.42077498096252, 28.94129002624614 ], [ -95.420353980769676, 28.940561026752796 ], [ -95.420024981212975, 28.940191026321575 ], [ -95.420074981127328, 28.939765026536861 ], [ -95.420408981393081, 28.939428026178625 ], [ -95.420618981088893, 28.939216026000963 ], [ -95.420840981187681, 28.938724026272716 ], [ -95.420852980814686, 28.938281025750907 ], [ -95.420836981325337, 28.938002025662428 ], [ -95.420818980776133, 28.937679025787087 ], [ -95.420396981110514, 28.936985025587511 ], [ -95.420324980597542, 28.936556025107649 ], [ -95.420630981062914, 28.93553702541281 ], [ -95.421270981511157, 28.934824024819068 ], [ -95.42130798162168, 28.934783025210159 ], [ -95.422058981033743, 28.934260024760636 ], [ -95.422510981975293, 28.933702024503191 ], [ -95.422708981752251, 28.931990024489846 ], [ -95.423387981314491, 28.931006024081082 ], [ -95.423320981451553, 28.929886023789972 ], [ -95.422990981828207, 28.929027023794209 ], [ -95.423437982030521, 28.928638023772937 ], [ -95.423629981107212, 28.928471023797851 ], [ -95.424043981697125, 28.927946023667559 ], [ -95.424012982000264, 28.927023023239389 ], [ -95.423011981183166, 28.926030023065881 ], [ -95.422686981021243, 28.924315022758964 ], [ -95.422531980712236, 28.924268022828013 ], [ -95.422016981054043, 28.924114022813932 ], [ -95.421082981172304, 28.924109022956831 ], [ -95.420622980470739, 28.923643022813199 ], [ -95.420526980859009, 28.923546022704691 ], [ -95.419558979922215, 28.923047022332462 ], [ -95.41885898038143, 28.921692022178508 ], [ -95.417599979323754, 28.92017002191691 ], [ -95.417961979782262, 28.919546022294931 ], [ -95.41829998022925, 28.91929402212952 ], [ -95.41905498041298, 28.919293022112086 ], [ -95.419318980467523, 28.919455021588686 ], [ -95.419654980087486, 28.919660022016949 ], [ -95.420279980050665, 28.919843022028225 ], [ -95.420643980652514, 28.919682022270038 ], [ -95.420903980670403, 28.919270022053759 ], [ -95.421065980069542, 28.918980021934996 ], [ -95.421205980300158, 28.918203021550333 ], [ -95.421271980791957, 28.91734102121222 ], [ -95.421092980131434, 28.916220021613317 ], [ -95.421126980568303, 28.915548021147831 ], [ -95.42129298020005, 28.915237020991238 ], [ -95.421500980373594, 28.914985021079303 ], [ -95.421552980846968, 28.914504021253599 ], [ -95.421734980801133, 28.914390020502339 ], [ -95.421786980075154, 28.914206020852692 ], [ -95.421708980270708, 28.914023020777321 ], [ -95.421109980309282, 28.913886020609382 ], [ -95.420978979938241, 28.913565020671964 ], [ -95.421316980273147, 28.913084020643488 ], [ -95.421733980279214, 28.912855020288898 ], [ -95.422176980651599, 28.912763020671346 ], [ -95.422879981171249, 28.913244020260787 ], [ -95.423296980466688, 28.913266020944164 ], [ -95.42334798096671, 28.912877020193434 ], [ -95.423284981045384, 28.911674020539198 ], [ -95.423352980540898, 28.910047020039958 ], [ -95.423658981133556, 28.908730019751474 ], [ -95.423735980818677, 28.908226019837461 ], [ -95.42404898085077, 28.908157019856272 ], [ -95.424256981106439, 28.908363019681193 ], [ -95.424387981017233, 28.908913019865857 ], [ -95.424699980875843, 28.908936019635721 ], [ -95.425194981500695, 28.908775019924054 ], [ -95.425324980770469, 28.908546019294992 ], [ -95.425896981586888, 28.908041019535919 ], [ -95.426000981135232, 28.907767019181954 ], [ -95.426235981406535, 28.907629019079877 ], [ -95.426577981932155, 28.907283019575011 ], [ -95.426780981919407, 28.906419019252159 ], [ -95.426482981555537, 28.905354019224216 ], [ -95.425412980839425, 28.903919018320625 ], [ -95.424485981250427, 28.903180018313577 ], [ -95.423991980886299, 28.901604018398729 ], [ -95.423601980442115, 28.901055018168531 ], [ -95.422430979694695, 28.899616018080327 ], [ -95.422364979840467, 28.898320017051709 ], [ -95.422227980271984, 28.896024017319323 ], [ -95.421862979988191, 28.894432016803055 ], [ -95.421969979234703, 28.893878016145067 ], [ -95.421972979237822, 28.893483016078374 ], [ -95.421804979575242, 28.89313501633524 ], [ -95.421780979238704, 28.89278701664519 ], [ -95.421927979996283, 28.892275016000408 ], [ -95.421644979104769, 28.891712015949892 ], [ -95.421745979244278, 28.891397015648455 ], [ -95.422105979714729, 28.891107015704979 ], [ -95.422457980205849, 28.89071401548183 ], [ -95.422692979356228, 28.890249015920858 ], [ -95.422903980275123, 28.889565016064868 ], [ -95.423308979358339, 28.888646015036702 ], [ -95.424659980535594, 28.887184015020335 ], [ -95.425791980432649, 28.885499014891341 ], [ -95.427089980818423, 28.884368014216115 ], [ -95.427815980347958, 28.882980013994484 ], [ -95.427963980402154, 28.88222201404627 ], [ -95.427890980697541, 28.881749013592099 ], [ -95.427858980756326, 28.881544013676685 ], [ -95.427826980460921, 28.881336013840812 ], [ -95.43716198304547, 28.875355012310497 ], [ -95.437707983457486, 28.875005012166689 ], [ -95.439773983914478, 28.873682011860801 ], [ -95.443368984515416, 28.871677011172487 ], [ -95.443946984858144, 28.871047011303581 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 722, "Tract": "48039661300", "Area_SqMi": 1.3119731863417501, "total_2009": 592, "total_2010": 493, "total_2011": 521, "total_2012": 629, "total_2013": 608, "total_2014": 565, "total_2015": 467, "total_2016": 515, "total_2017": 536, "total_2018": 520, "total_2019": 740, "total_2020": 715, "age1": 127, "age2": 386, "age3": 214, "earn1": 128, "earn2": 213, "earn3": 386, "naics_s01": 0, "naics_s02": 0, "naics_s03": 19, "naics_s04": 20, "naics_s05": 42, "naics_s06": 12, "naics_s07": 110, "naics_s08": 63, "naics_s09": 0, "naics_s10": 18, "naics_s11": 7, "naics_s12": 22, "naics_s13": 0, "naics_s14": 75, "naics_s15": 0, "naics_s16": 72, "naics_s17": 37, "naics_s18": 33, "naics_s19": 32, "naics_s20": 165, "race1": 640, "race2": 54, "race3": 6, "race4": 24, "race5": 0, "race6": 3, "ethnicity1": 507, "ethnicity2": 220, "edu1": 125, "edu2": 166, "edu3": 217, "edu4": 92, "Shape_Length": 27710.856818353001, "Shape_Area": 36575566.970658064, "total_2021": 692, "total_2022": 727 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.274678964511864, 29.435531133612464 ], [ -95.27566496495109, 29.434504133615253 ], [ -95.273841963992268, 29.433155133202721 ], [ -95.273708964390451, 29.433055133409205 ], [ -95.272683963639807, 29.432284132495514 ], [ -95.272416964370194, 29.432085132438463 ], [ -95.270480963138198, 29.430649132353349 ], [ -95.269870962950321, 29.430196132144712 ], [ -95.269737962974659, 29.430101132113808 ], [ -95.269662963629315, 29.430046132845128 ], [ -95.267165962334872, 29.42819013214914 ], [ -95.266491962365976, 29.42768913233941 ], [ -95.265212962006359, 29.426730131651667 ], [ -95.264021961452229, 29.425848131596354 ], [ -95.263542961328099, 29.425486131808242 ], [ -95.263341961207942, 29.425357131919306 ], [ -95.263259961750535, 29.425287132169817 ], [ -95.263045961657539, 29.425105131624058 ], [ -95.262934961220765, 29.425018131797671 ], [ -95.26241696114802, 29.425016132088405 ], [ -95.26225196155184, 29.425019131527439 ], [ -95.262214960977317, 29.424147131832555 ], [ -95.262180960939062, 29.423342131408578 ], [ -95.262143960545217, 29.422470131406097 ], [ -95.262108960917558, 29.421606130652595 ], [ -95.262088960581082, 29.420779130441179 ], [ -95.26208096028256, 29.419920130839092 ], [ -95.261469960204437, 29.419930131083348 ], [ -95.261098960961164, 29.419937131198573 ], [ -95.260792960685777, 29.419949130791828 ], [ -95.26032896001189, 29.419959130737048 ], [ -95.25973995988447, 29.419971130340176 ], [ -95.25861795966189, 29.420001130556827 ], [ -95.257479959636441, 29.420030131297914 ], [ -95.256401959477699, 29.4200411304823 ], [ -95.255568958728773, 29.420057130489937 ], [ -95.254371958703103, 29.420087130705131 ], [ -95.253823958178785, 29.420098130967698 ], [ -95.253090958215594, 29.420117131225496 ], [ -95.252578958195599, 29.420131130729899 ], [ -95.252087958364882, 29.42013913110355 ], [ -95.251585958100733, 29.420147131441375 ], [ -95.251216958376375, 29.42015513075194 ], [ -95.250911957831818, 29.420161131532485 ], [ -95.250788957701928, 29.420164131178893 ], [ -95.250620957659919, 29.420168131372066 ], [ -95.249646957861302, 29.420185131438892 ], [ -95.249254957057516, 29.420200131200147 ], [ -95.248658957592781, 29.420213131240754 ], [ -95.247673956790891, 29.420229130825529 ], [ -95.246683956680116, 29.420248131490457 ], [ -95.24575695695448, 29.420264131226595 ], [ -95.244771956475006, 29.420280131114673 ], [ -95.244301956755933, 29.420300131515546 ], [ -95.243967956350161, 29.420305131126106 ], [ -95.243980955908086, 29.420804131216524 ], [ -95.24399095590843, 29.421189131222143 ], [ -95.243993956450467, 29.421482131944011 ], [ -95.24400995652563, 29.422118131760175 ], [ -95.244020955940002, 29.422549132279102 ], [ -95.244033955893613, 29.42286613166161 ], [ -95.244036956305791, 29.422921132260942 ], [ -95.244080956338976, 29.423849132088748 ], [ -95.244089956763887, 29.424072132068151 ], [ -95.244101956885586, 29.424672132279024 ], [ -95.244108956666167, 29.424996132536879 ], [ -95.244113956301433, 29.425241132304286 ], [ -95.244117956351985, 29.425461132525616 ], [ -95.244129956041306, 29.425733132278168 ], [ -95.244172956849141, 29.426637132301334 ], [ -95.244196956881467, 29.427157132534745 ], [ -95.244204956910025, 29.427323132463385 ], [ -95.244210956060968, 29.427469133109305 ], [ -95.244248956958643, 29.428289133345661 ], [ -95.244271956954947, 29.428803133470847 ], [ -95.244280956454901, 29.429070133092495 ], [ -95.24428495689547, 29.429179133591603 ], [ -95.245082957012741, 29.429448133528876 ], [ -95.24556295653619, 29.429609133157925 ], [ -95.245735956984277, 29.429669132955087 ], [ -95.247261957350133, 29.430192133409978 ], [ -95.247500957620389, 29.430272133707696 ], [ -95.247971957158896, 29.430430133475262 ], [ -95.248728957861545, 29.430684133330978 ], [ -95.248783957503804, 29.430703133138859 ], [ -95.24883595835675, 29.430720133027723 ], [ -95.249646958166267, 29.430992133242007 ], [ -95.249714958515327, 29.431001133103155 ], [ -95.249918958014007, 29.431029133598589 ], [ -95.250619958462366, 29.431274133768838 ], [ -95.251015958602849, 29.431412133182654 ], [ -95.251921958955663, 29.431727133198383 ], [ -95.25238095870121, 29.431888133095921 ], [ -95.253037958509637, 29.432116133190036 ], [ -95.25545995992951, 29.432960133510736 ], [ -95.2564489594306, 29.433300133504904 ], [ -95.257534960137775, 29.433669133492451 ], [ -95.2594199605646, 29.434312133360532 ], [ -95.259543960744537, 29.434355133647475 ], [ -95.261028961341879, 29.434862133582339 ], [ -95.263703962215061, 29.435764133814871 ], [ -95.26409796176091, 29.435903134246718 ], [ -95.266275962156911, 29.436673133573525 ], [ -95.266919962999467, 29.436900134054941 ], [ -95.267349962973356, 29.437044133686438 ], [ -95.268685962756834, 29.437495133929666 ], [ -95.27090396408326, 29.438255134259872 ], [ -95.271780964324748, 29.438556134044326 ], [ -95.271852963703552, 29.438413133873805 ], [ -95.272710964060423, 29.437546134202897 ], [ -95.272902964355509, 29.437352133625311 ], [ -95.273374964660405, 29.436873133668676 ], [ -95.273536964767686, 29.436708133984254 ], [ -95.274457965030891, 29.435761134017202 ], [ -95.274678964511864, 29.435531133612464 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 723, "Tract": "48039661400", "Area_SqMi": 2.7059656613238912, "total_2009": 2796, "total_2010": 2078, "total_2011": 2253, "total_2012": 1965, "total_2013": 1908, "total_2014": 1620, "total_2015": 2781, "total_2016": 2104, "total_2017": 1928, "total_2018": 1848, "total_2019": 1922, "total_2020": 1885, "age1": 387, "age2": 932, "age3": 339, "earn1": 229, "earn2": 380, "earn3": 1049, "naics_s01": 1, "naics_s02": 17, "naics_s03": 0, "naics_s04": 74, "naics_s05": 662, "naics_s06": 0, "naics_s07": 118, "naics_s08": 34, "naics_s09": 0, "naics_s10": 57, "naics_s11": 18, "naics_s12": 31, "naics_s13": 0, "naics_s14": 20, "naics_s15": 5, "naics_s16": 407, "naics_s17": 3, "naics_s18": 202, "naics_s19": 9, "naics_s20": 0, "race1": 1369, "race2": 173, "race3": 9, "race4": 85, "race5": 5, "race6": 17, "ethnicity1": 1148, "ethnicity2": 510, "edu1": 199, "edu2": 302, "edu3": 454, "edu4": 316, "Shape_Length": 34254.301894004726, "Shape_Area": 75437691.331194773, "total_2021": 1963, "total_2022": 1658 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.278562964590023, 29.40919612790746 ], [ -95.279145964660458, 29.408627127686955 ], [ -95.278413964807314, 29.407460128031126 ], [ -95.277807964273748, 29.406512127160372 ], [ -95.277705964129495, 29.406351127083425 ], [ -95.277611964620121, 29.406202127388184 ], [ -95.27727996397941, 29.405650127395074 ], [ -95.277157963598768, 29.405451127156063 ], [ -95.276754963670399, 29.404816126726981 ], [ -95.276679963680607, 29.404700127510129 ], [ -95.276205963870666, 29.403952127166125 ], [ -95.275883963858234, 29.40344612689336 ], [ -95.275840963429658, 29.403378126703846 ], [ -95.275676963582342, 29.403120126947247 ], [ -95.275097963672664, 29.40220712646374 ], [ -95.274968963030133, 29.40224312617956 ], [ -95.274775963352155, 29.402326126310857 ], [ -95.274636963491318, 29.402391126918829 ], [ -95.274390963478865, 29.402003126257412 ], [ -95.273911962617859, 29.401235126208061 ], [ -95.273795963060266, 29.401048126015425 ], [ -95.272865962611704, 29.399528125687024 ], [ -95.272621962506506, 29.399153126269127 ], [ -95.270736962403049, 29.396095125102157 ], [ -95.270620961619173, 29.395912125390744 ], [ -95.270469962159524, 29.395985125197679 ], [ -95.266572961271962, 29.397799126415563 ], [ -95.265087960326198, 29.398433126262375 ], [ -95.264794960274457, 29.398542126251904 ], [ -95.264242960519638, 29.39866612645184 ], [ -95.263657960813433, 29.398724125914587 ], [ -95.262983960627338, 29.398717125962293 ], [ -95.262619960177759, 29.398685125974417 ], [ -95.262169960342248, 29.398618126537233 ], [ -95.261470959602775, 29.398438126030705 ], [ -95.259079959196214, 29.397795126346477 ], [ -95.258559959082049, 29.397671125840475 ], [ -95.258194958426131, 29.397603126587345 ], [ -95.257757958884014, 29.397570126168617 ], [ -95.256819958531281, 29.397565125832276 ], [ -95.256357958774913, 29.39760612661274 ], [ -95.256283958004431, 29.397613126174925 ], [ -95.256056957987568, 29.397646126693353 ], [ -95.255513958679629, 29.397784125951624 ], [ -95.255012958422199, 29.397939126675585 ], [ -95.25464095789161, 29.398095126488073 ], [ -95.254430958400448, 29.398185126228928 ], [ -95.253602957778583, 29.39858312664634 ], [ -95.251715957560265, 29.399539126848193 ], [ -95.251511957583915, 29.399629127167607 ], [ -95.250234956705739, 29.400259127064515 ], [ -95.249401956806565, 29.400648127319201 ], [ -95.249134956513188, 29.400765127342805 ], [ -95.248335956320744, 29.401110127451723 ], [ -95.247955956269678, 29.401238126936839 ], [ -95.247935955891791, 29.401243127734201 ], [ -95.247732956701441, 29.401296127097044 ], [ -95.247408956283365, 29.401317127325346 ], [ -95.246796956528414, 29.401328127078198 ], [ -95.246247956250926, 29.401251127502139 ], [ -95.246093955425039, 29.401209127725636 ], [ -95.245862956174776, 29.401129127267282 ], [ -95.245646955930951, 29.401031127153399 ], [ -95.245510955960881, 29.401513127449405 ], [ -95.244770955266887, 29.404152127567812 ], [ -95.244472956096132, 29.405305128149777 ], [ -95.244159955800242, 29.40654412816437 ], [ -95.243880955482808, 29.407667129206274 ], [ -95.243676955979183, 29.408424129163723 ], [ -95.243658955994547, 29.408697129338154 ], [ -95.243658955649266, 29.409209129424465 ], [ -95.24367595538358, 29.410361129249516 ], [ -95.24370795588051, 29.41148012942892 ], [ -95.24375095530786, 29.412713129833492 ], [ -95.243747955737831, 29.413200129673431 ], [ -95.243768955969372, 29.413790129786612 ], [ -95.243807955629777, 29.415082130372568 ], [ -95.243841955533426, 29.416243130165498 ], [ -95.243876956171533, 29.416937130788277 ], [ -95.2438959560359, 29.417798131092116 ], [ -95.243925956423212, 29.418630131427253 ], [ -95.24394695585039, 29.419480131498627 ], [ -95.243967956350161, 29.420305131126106 ], [ -95.244301956755933, 29.420300131515546 ], [ -95.244771956475006, 29.420280131114673 ], [ -95.24575695695448, 29.420264131226595 ], [ -95.246683956680116, 29.420248131490457 ], [ -95.247673956790891, 29.420229130825529 ], [ -95.248658957592781, 29.420213131240754 ], [ -95.249254957057516, 29.420200131200147 ], [ -95.249646957861302, 29.420185131438892 ], [ -95.250620957659919, 29.420168131372066 ], [ -95.250788957701928, 29.420164131178893 ], [ -95.250911957831818, 29.420161131532485 ], [ -95.251216958376375, 29.42015513075194 ], [ -95.251585958100733, 29.420147131441375 ], [ -95.252087958364882, 29.42013913110355 ], [ -95.252578958195599, 29.420131130729899 ], [ -95.253090958215594, 29.420117131225496 ], [ -95.253823958178785, 29.420098130967698 ], [ -95.254371958703103, 29.420087130705131 ], [ -95.255568958728773, 29.420057130489937 ], [ -95.256401959477699, 29.4200411304823 ], [ -95.257479959636441, 29.420030131297914 ], [ -95.25861795966189, 29.420001130556827 ], [ -95.25973995988447, 29.419971130340176 ], [ -95.26032896001189, 29.419959130737048 ], [ -95.260792960685777, 29.419949130791828 ], [ -95.261098960961164, 29.419937131198573 ], [ -95.261469960204437, 29.419930131083348 ], [ -95.26208096028256, 29.419920130839092 ], [ -95.262269960563529, 29.419908130522433 ], [ -95.263096960962088, 29.419898130981117 ], [ -95.2649639611776, 29.419869130910282 ], [ -95.265578961999097, 29.419869130788815 ], [ -95.265745961354284, 29.419867130391651 ], [ -95.268103962342195, 29.419799130863574 ], [ -95.268237962145051, 29.419799130074022 ], [ -95.270149963110384, 29.417843130451104 ], [ -95.271827962691603, 29.41612712936378 ], [ -95.272724963500934, 29.415208129782307 ], [ -95.273690964029626, 29.41421912886517 ], [ -95.275502963655271, 29.412366128918187 ], [ -95.276872963793664, 29.410961128437425 ], [ -95.277002963839379, 29.410829128772694 ], [ -95.277307964423755, 29.410497128433452 ], [ -95.278119964422686, 29.409644127652442 ], [ -95.278562964590023, 29.40919612790746 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 724, "Tract": "48039662100", "Area_SqMi": 56.173191622654947, "total_2009": 959, "total_2010": 1690, "total_2011": 949, "total_2012": 1414, "total_2013": 1466, "total_2014": 1576, "total_2015": 1586, "total_2016": 1859, "total_2017": 1499, "total_2018": 1607, "total_2019": 1646, "total_2020": 1505, "age1": 402, "age2": 751, "age3": 349, "earn1": 297, "earn2": 569, "earn3": 636, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 45, "naics_s05": 44, "naics_s06": 7, "naics_s07": 590, "naics_s08": 25, "naics_s09": 0, "naics_s10": 56, "naics_s11": 136, "naics_s12": 117, "naics_s13": 0, "naics_s14": 76, "naics_s15": 36, "naics_s16": 111, "naics_s17": 7, "naics_s18": 197, "naics_s19": 39, "naics_s20": 13, "race1": 1153, "race2": 265, "race3": 17, "race4": 47, "race5": 4, "race6": 16, "ethnicity1": 1033, "ethnicity2": 469, "edu1": 232, "edu2": 303, "edu3": 362, "edu4": 203, "Shape_Length": 194556.58859886084, "Shape_Area": 1566012441.0613067, "total_2021": 1436, "total_2022": 1502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.605696037086929, 29.144271062456571 ], [ -95.60520003686679, 29.143985062746783 ], [ -95.60440503675693, 29.143526062404817 ], [ -95.603551036145362, 29.143062062556762 ], [ -95.603356036176976, 29.142956062834493 ], [ -95.598874035048865, 29.140549062293005 ], [ -95.598359034904092, 29.140425061602002 ], [ -95.597810034570841, 29.140294061754894 ], [ -95.597423035049914, 29.140227062455356 ], [ -95.59716503481522, 29.140183061815033 ], [ -95.596908034472705, 29.140138061635447 ], [ -95.595324033802896, 29.14020206250034 ], [ -95.590720033048925, 29.140389062534627 ], [ -95.588702032982226, 29.140470062158446 ], [ -95.582396031121377, 29.140768062713555 ], [ -95.580371030164869, 29.140931062439179 ], [ -95.578435029383186, 29.141169063082426 ], [ -95.576692029747065, 29.141464063338404 ], [ -95.575761028851204, 29.141622063387164 ], [ -95.57471702856121, 29.141829062693478 ], [ -95.572757028018344, 29.142279062955037 ], [ -95.570798027838862, 29.142730063486752 ], [ -95.569992028095228, 29.142838063775585 ], [ -95.569277027245235, 29.142825063395669 ], [ -95.569039027333332, 29.142817063593647 ], [ -95.566904027132466, 29.142746063445227 ], [ -95.562000026072695, 29.142479063982424 ], [ -95.560783025667845, 29.142412063246539 ], [ -95.559984025651914, 29.142407063398888 ], [ -95.559820025544553, 29.142406063408547 ], [ -95.558863025137981, 29.142435064074924 ], [ -95.558298025119683, 29.142460063923213 ], [ -95.557172024174335, 29.142684063742568 ], [ -95.556795024372619, 29.142759063426698 ], [ -95.556204024644927, 29.142878063820138 ], [ -95.555400024127735, 29.143047064005156 ], [ -95.5523090235057, 29.143701064120577 ], [ -95.549217022386514, 29.144354064845636 ], [ -95.546463021760843, 29.14493606437108 ], [ -95.544646021785397, 29.14533406435573 ], [ -95.54146502058677, 29.146042065225306 ], [ -95.540841020818448, 29.146137064934514 ], [ -95.540438020554731, 29.146176064946353 ], [ -95.539893020685838, 29.146184065256382 ], [ -95.539663020535471, 29.146197064989305 ], [ -95.536927019978407, 29.146166064886888 ], [ -95.535197019213825, 29.146165065688479 ], [ -95.534567019265509, 29.14616006509484 ], [ -95.534212019232939, 29.146158065536312 ], [ -95.527381017560884, 29.146116065634146 ], [ -95.527108016654225, 29.146115065788194 ], [ -95.523548015819102, 29.146098065825864 ], [ -95.521985015682674, 29.146107065946232 ], [ -95.521582015379352, 29.146162066032826 ], [ -95.521468015777614, 29.146169065584708 ], [ -95.52073801573043, 29.146300065723718 ], [ -95.520053015720194, 29.146410065670601 ], [ -95.512665013862105, 29.148538066483308 ], [ -95.508603012650468, 29.149683066969033 ], [ -95.506098011478088, 29.150312067035525 ], [ -95.50493001113324, 29.15069906694422 ], [ -95.504560011178725, 29.150839067012789 ], [ -95.504075011287853, 29.151058067648417 ], [ -95.503739011192593, 29.151253067125371 ], [ -95.50256101101786, 29.151896067071277 ], [ -95.501741011229811, 29.152344067816742 ], [ -95.500787010964856, 29.152860068115725 ], [ -95.499024010339681, 29.153843068181178 ], [ -95.49730900982928, 29.154781067926379 ], [ -95.495887009881926, 29.155568068803547 ], [ -95.49443900863352, 29.156312068314804 ], [ -95.493904009281607, 29.156516068590825 ], [ -95.493421008402692, 29.156667069125469 ], [ -95.493201008376232, 29.15672506919072 ], [ -95.492994008479741, 29.156779069011922 ], [ -95.492928008665331, 29.156796068501038 ], [ -95.492577009010489, 29.156870068660844 ], [ -95.491988008083226, 29.156971068481884 ], [ -95.491577008151836, 29.157019068464045 ], [ -95.490935008260294, 29.157081068519659 ], [ -95.490204008444422, 29.157146069059756 ], [ -95.489022007459042, 29.157265069236093 ], [ -95.487774007115846, 29.15737306920002 ], [ -95.487746007155479, 29.157375068882953 ], [ -95.487460007489901, 29.157409069363599 ], [ -95.484578006504691, 29.157676069059988 ], [ -95.484163006145451, 29.157714069269886 ], [ -95.483997006724564, 29.157735068949126 ], [ -95.482769006383421, 29.15784606981213 ], [ -95.482134005845893, 29.157907069687255 ], [ -95.478787005639319, 29.158229069825612 ], [ -95.478240004519392, 29.158266069861583 ], [ -95.478082005255743, 29.158284069916302 ], [ -95.47786400452874, 29.158308069828905 ], [ -95.477754004460508, 29.158320069847257 ], [ -95.477591004647778, 29.158330069682084 ], [ -95.477365004722671, 29.158345069939958 ], [ -95.477266005192902, 29.158359069379951 ], [ -95.477074004990257, 29.158387069627977 ], [ -95.4768020044379, 29.158414069324927 ], [ -95.476692004470834, 29.158425070041073 ], [ -95.476526004818027, 29.158439069629456 ], [ -95.476291004076998, 29.158460069739785 ], [ -95.475964004052358, 29.15849506986444 ], [ -95.475784004371903, 29.158510069397849 ], [ -95.475107004436296, 29.158566070026968 ], [ -95.474261003878453, 29.158637069684353 ], [ -95.472036003946812, 29.158845069661588 ], [ -95.471621003740509, 29.158884070112823 ], [ -95.470882002655827, 29.159006070415039 ], [ -95.47004300273754, 29.159225069685462 ], [ -95.46896300260218, 29.159497070366726 ], [ -95.465555002191252, 29.160368070180041 ], [ -95.461576000883809, 29.161377070956785 ], [ -95.461474000578349, 29.161403070469444 ], [ -95.460956000568814, 29.161533071026973 ], [ -95.458977000586657, 29.162034071103253 ], [ -95.458768999812946, 29.162087071074513 ], [ -95.458168000057242, 29.162247070700317 ], [ -95.457632999587801, 29.162380071255175 ], [ -95.457420000305788, 29.162434070979362 ], [ -95.45715299983469, 29.162501070820063 ], [ -95.456934999842403, 29.162556071528801 ], [ -95.456374999917045, 29.162700071065728 ], [ -95.455540999367599, 29.162915071057935 ], [ -95.455161999659737, 29.163013071530216 ], [ -95.455045999612324, 29.163043071062823 ], [ -95.455012999141033, 29.163051071336714 ], [ -95.454803998868016, 29.163105071366189 ], [ -95.454761999141866, 29.163116071123479 ], [ -95.454669999080664, 29.163141071438211 ], [ -95.45438999943876, 29.163225071572089 ], [ -95.454047998940567, 29.163310071107286 ], [ -95.453850999271907, 29.16335407162018 ], [ -95.453316999168308, 29.163475071599031 ], [ -95.453045998914433, 29.16353607182976 ], [ -95.452889999145981, 29.163575071844068 ], [ -95.452836999235757, 29.163584071881914 ], [ -95.452320998159692, 29.163657071435907 ], [ -95.452093998153714, 29.163693071849195 ], [ -95.451844998813883, 29.16371807177207 ], [ -95.451310998721581, 29.163758071892691 ], [ -95.450895997766693, 29.163790071767185 ], [ -95.45032599844231, 29.163805071280478 ], [ -95.4501569979126, 29.163801071293733 ], [ -95.449337997886815, 29.163802071322895 ], [ -95.449036997775821, 29.163808071754904 ], [ -95.44612799691312, 29.163827071945384 ], [ -95.445308996659264, 29.163840071845161 ], [ -95.444673996461148, 29.163847071853031 ], [ -95.44407599657157, 29.163862071857345 ], [ -95.443275996245859, 29.163875071778406 ], [ -95.440303996025975, 29.163886071637332 ], [ -95.439795995783655, 29.163891071803874 ], [ -95.438510995090439, 29.163905072012913 ], [ -95.438058995442844, 29.163902072219361 ], [ -95.43796799454212, 29.163905072430698 ], [ -95.437406994709008, 29.163925071781261 ], [ -95.437275994680846, 29.163937071918244 ], [ -95.437169995230462, 29.163946071842521 ], [ -95.43692599471359, 29.163968072235328 ], [ -95.436583994132306, 29.164019072163018 ], [ -95.436246994162119, 29.164084072189887 ], [ -95.435963994503808, 29.164132072098653 ], [ -95.435839993981546, 29.164152072342148 ], [ -95.435428994550591, 29.164243072003611 ], [ -95.434842993681542, 29.164304072581938 ], [ -95.434486993588962, 29.164337072559679 ], [ -95.433927993986444, 29.164358072315871 ], [ -95.433544993698675, 29.16437807221627 ], [ -95.433437994011058, 29.16438407235372 ], [ -95.43326299417744, 29.164395071914374 ], [ -95.432997993434299, 29.164414072637605 ], [ -95.432399993902735, 29.164439072541473 ], [ -95.431722993545577, 29.164469072625742 ], [ -95.431808993192035, 29.165502072528096 ], [ -95.431866993839037, 29.166512072975266 ], [ -95.43192399345304, 29.167546073228653 ], [ -95.432006993432381, 29.168544072828034 ], [ -95.432069993223223, 29.16953707333677 ], [ -95.432091994213053, 29.170006073128221 ], [ -95.432137994255669, 29.170566074006409 ], [ -95.432177993709303, 29.171150073581195 ], [ -95.432233993973654, 29.171904073806523 ], [ -95.43232199435657, 29.173393074627771 ], [ -95.432436993874518, 29.174993074759861 ], [ -95.432470994490629, 29.175506074272295 ], [ -95.432497993709347, 29.175910074807483 ], [ -95.432522993951082, 29.176186074707768 ], [ -95.432597993847921, 29.177216075015323 ], [ -95.432622994290625, 29.177565074996664 ], [ -95.432734994626912, 29.17956407588083 ], [ -95.432750994404515, 29.179850075411238 ], [ -95.432821994504451, 29.180771075350126 ], [ -95.432888994571371, 29.181536075454908 ], [ -95.432960994383208, 29.182602076542331 ], [ -95.43334599517388, 29.188095077384585 ], [ -95.433383994587743, 29.188629076948533 ], [ -95.433446995228479, 29.189497077422232 ], [ -95.43346899442254, 29.189803077727749 ], [ -95.433471995351923, 29.189846077536885 ], [ -95.433496995342807, 29.190184077608407 ], [ -95.433562995063895, 29.191407078123436 ], [ -95.433620994869926, 29.192261078069009 ], [ -95.433661995572066, 29.193049078696443 ], [ -95.43370699531927, 29.193644078038851 ], [ -95.433962995387148, 29.196781078607202 ], [ -95.434018995737773, 29.1972580791826 ], [ -95.434120995095427, 29.197973079409998 ], [ -95.434223995288193, 29.19863407938557 ], [ -95.434242995918993, 29.198752079820373 ], [ -95.43445799592439, 29.200132079759243 ], [ -95.434709995906985, 29.201576079962617 ], [ -95.434737995499788, 29.201699080328417 ], [ -95.43491899631465, 29.202484079782614 ], [ -95.434942995978261, 29.202589080576928 ], [ -95.434966996066677, 29.202709080552982 ], [ -95.435058995960176, 29.203164080053565 ], [ -95.435266995541014, 29.204033080553749 ], [ -95.435435995755512, 29.204743080670283 ], [ -95.435462995983642, 29.204853080658726 ], [ -95.435468995706501, 29.204875080446875 ], [ -95.435669996554012, 29.205676080985487 ], [ -95.435708996135716, 29.205831080689684 ], [ -95.436575996310452, 29.208972081448405 ], [ -95.436764997023744, 29.209655081828313 ], [ -95.438073996621654, 29.214557082706857 ], [ -95.439793997966603, 29.220886084034987 ], [ -95.439981997863669, 29.221582083983282 ], [ -95.441462998703187, 29.227067085459922 ], [ -95.442077998634872, 29.229225085263703 ], [ -95.442376999120953, 29.230291085652883 ], [ -95.442890998817361, 29.232173086410537 ], [ -95.443305998980151, 29.233691086037759 ], [ -95.443882999245076, 29.235908086841498 ], [ -95.444820000149051, 29.239498087778532 ], [ -95.444849999878372, 29.239613087565509 ], [ -95.445014999746675, 29.24024308790791 ], [ -95.445033000024921, 29.240322087616981 ], [ -95.445163999702018, 29.240887088007288 ], [ -95.445566999824976, 29.24262508772977 ], [ -95.446119000714674, 29.245004088615751 ], [ -95.446806000776093, 29.248086089449679 ], [ -95.452725002060404, 29.247891089276635 ], [ -95.453257002213221, 29.247882088620319 ], [ -95.453499002157812, 29.247875088485543 ], [ -95.453740002108248, 29.247867089060797 ], [ -95.455950003193436, 29.247786089209729 ], [ -95.457575004002933, 29.247728088894071 ], [ -95.460209004556575, 29.247632088826339 ], [ -95.461216004512707, 29.24760208881866 ], [ -95.460389004166913, 29.250137089500143 ], [ -95.459919003803122, 29.251661089419727 ], [ -95.459711004200045, 29.252413089834523 ], [ -95.459606004538117, 29.252816089545028 ], [ -95.45949400410376, 29.253250090152257 ], [ -95.459323004399621, 29.254085089904951 ], [ -95.459665004767487, 29.254126090172075 ], [ -95.460215004545304, 29.254148090250766 ], [ -95.461858004502332, 29.254117089654422 ], [ -95.463412005076293, 29.254100089991049 ], [ -95.470348006739968, 29.253961089538052 ], [ -95.470931007588561, 29.253953089757836 ], [ -95.476532009069203, 29.253875089473848 ], [ -95.478385009001613, 29.253827088999483 ], [ -95.4807060097055, 29.253784089020499 ], [ -95.482779009763576, 29.253789089163302 ], [ -95.484535010260544, 29.253763088935269 ], [ -95.485505010931874, 29.253745089459866 ], [ -95.488425011664333, 29.253697088689925 ], [ -95.496440013721269, 29.253570088889074 ], [ -95.496641013713159, 29.253580088450189 ], [ -95.498492014370711, 29.253518088232649 ], [ -95.499981014764515, 29.253504088621415 ], [ -95.500877015295401, 29.253490088477371 ], [ -95.501649014783951, 29.253473088602846 ], [ -95.503034015162854, 29.253415088441059 ], [ -95.503978015467581, 29.253372088723403 ], [ -95.504251015758683, 29.253359088336254 ], [ -95.504879015329593, 29.253340088630061 ], [ -95.505387016076014, 29.253331087966803 ], [ -95.505635015848554, 29.253337088136973 ], [ -95.506277015793501, 29.253366088427036 ], [ -95.506727015816239, 29.253407088589253 ], [ -95.506975016667795, 29.253425088044509 ], [ -95.50749501644006, 29.253456088424013 ], [ -95.50793001693016, 29.253495088333572 ], [ -95.508242017098652, 29.25359708858662 ], [ -95.508513016945884, 29.253671088746316 ], [ -95.50873301713554, 29.253735088479626 ], [ -95.508819016468337, 29.253764088265331 ], [ -95.509039017335681, 29.253837088586373 ], [ -95.509580016750121, 29.253863087881168 ], [ -95.509974017446524, 29.253869088170635 ], [ -95.510130017082702, 29.253864088481752 ], [ -95.51049101771541, 29.253812088084395 ], [ -95.510759017410024, 29.253726088071573 ], [ -95.511507017687748, 29.253423088373502 ], [ -95.511751017553578, 29.253347088031969 ], [ -95.511992017199503, 29.253295088070271 ], [ -95.512267017771975, 29.253262088540883 ], [ -95.512757017662281, 29.253224088068936 ], [ -95.513230018310793, 29.253195088250187 ], [ -95.513756018161402, 29.253169087623238 ], [ -95.514100018025601, 29.253144087597526 ], [ -95.514560018395144, 29.253120088205975 ], [ -95.514980018022356, 29.253105088055353 ], [ -95.515312018249517, 29.253101088198711 ], [ -95.515464018041399, 29.253098088333275 ], [ -95.515949018373135, 29.253105088082574 ], [ -95.516642018604784, 29.253126087573953 ], [ -95.517086019126282, 29.253129088034793 ], [ -95.517312019103386, 29.253129088050915 ], [ -95.517675019564493, 29.253149087614531 ], [ -95.518065018889629, 29.253144088034784 ], [ -95.518408018892728, 29.253131087740748 ], [ -95.518744019753925, 29.253109087802407 ], [ -95.519838019797461, 29.25303208752857 ], [ -95.520412019310953, 29.252985087692895 ], [ -95.523826020730141, 29.252862087550614 ], [ -95.525709020634665, 29.252820087712838 ], [ -95.526593021353008, 29.252792087673832 ], [ -95.527655021242495, 29.252771087503589 ], [ -95.528513021345972, 29.252753087614778 ], [ -95.528649022323904, 29.252753087408081 ], [ -95.528778022327913, 29.25260808739813 ], [ -95.528916022293657, 29.252511087321363 ], [ -95.529587021923007, 29.25186608744734 ], [ -95.529780022231677, 29.251680087115787 ], [ -95.530141022256174, 29.251558087454818 ], [ -95.530224022524692, 29.251618086826596 ], [ -95.530389022694024, 29.25171408759422 ], [ -95.53058402268438, 29.251812087513123 ], [ -95.530776022782703, 29.251882086988861 ], [ -95.530979022351801, 29.251939087033254 ], [ -95.531214022877137, 29.251991086891682 ], [ -95.531440022756115, 29.252014086941752 ], [ -95.53159902265854, 29.252025086871555 ], [ -95.536080023291078, 29.251942086969031 ], [ -95.53802902415346, 29.25189608675046 ], [ -95.542066025249994, 29.251810086952236 ], [ -95.543574025473831, 29.25178608667402 ], [ -95.545134026232077, 29.251750086463741 ], [ -95.548107026861501, 29.251688086610695 ], [ -95.554359028062834, 29.251546086005753 ], [ -95.556733028483393, 29.251501086532269 ], [ -95.557978029755688, 29.25145908615643 ], [ -95.558565029409195, 29.251364085904619 ], [ -95.558928029423953, 29.251234086268621 ], [ -95.559236029493633, 29.251104086199216 ], [ -95.559688029390216, 29.250748085655296 ], [ -95.559868029949044, 29.250593086146282 ], [ -95.561507030217342, 29.250580085882827 ], [ -95.561730029800387, 29.250585086083721 ], [ -95.561910030707239, 29.2505870858697 ], [ -95.562086030170249, 29.25020608583948 ], [ -95.562429029945321, 29.248623085820423 ], [ -95.562379030083079, 29.245336085277316 ], [ -95.562393029901358, 29.242695083916381 ], [ -95.563139029925694, 29.240702083741603 ], [ -95.563549030670956, 29.239001083168478 ], [ -95.563355030184567, 29.237709083623525 ], [ -95.562757030396241, 29.237003083154999 ], [ -95.561755029345605, 29.236822083545057 ], [ -95.560885029605174, 29.237112082774718 ], [ -95.560482029474841, 29.237404083319618 ], [ -95.559073029351921, 29.238514083140828 ], [ -95.557535028783121, 29.238507083467429 ], [ -95.556936028762678, 29.23809408384319 ], [ -95.556538028562912, 29.237447083409666 ], [ -95.556009028459414, 29.236447083635525 ], [ -95.554745027691581, 29.235268082581033 ], [ -95.552679027417895, 29.234261082929063 ], [ -95.55061102677989, 29.233490082877427 ], [ -95.54894102602924, 29.233189082784694 ], [ -95.547137026062956, 29.233123082826449 ], [ -95.545401025404956, 29.232764082502488 ], [ -95.543869025098516, 29.231818082637961 ], [ -95.542606024868718, 29.230639082401151 ], [ -95.542472024963075, 29.230433082875365 ], [ -95.541346023918138, 29.228697081795936 ], [ -95.540621024007223, 29.2268740815847 ], [ -95.540162023647582, 29.225287081592878 ], [ -95.540302023776349, 29.224055080824051 ], [ -95.54137602358557, 29.223296081264888 ], [ -95.543052024484211, 29.222364080408077 ], [ -95.545270024478285, 29.221360080741292 ], [ -95.546675025460061, 29.220353080349867 ], [ -95.547260025500023, 29.21869207968539 ], [ -95.547849025282986, 29.216381078953745 ], [ -95.548676025899084, 29.21558907893672 ], [ -95.549668025438379, 29.214942079213458 ], [ -95.551649026499575, 29.214010078531704 ], [ -95.554706026530795, 29.211926078644346 ], [ -95.559912027932072, 29.208114077578983 ], [ -95.560367027816682, 29.207729076918088 ], [ -95.562641028553429, 29.205811076773497 ], [ -95.563885028939524, 29.204081076428501 ], [ -95.5641410288994, 29.202346076297982 ], [ -95.564978028994901, 29.19960107555735 ], [ -95.565229029215274, 29.198879075472377 ], [ -95.566716028912822, 29.1978730753303 ], [ -95.568774029366963, 29.197881074543965 ], [ -95.570750030610881, 29.197744074750847 ], [ -95.571739030290715, 29.197459074946309 ], [ -95.572484030498202, 29.196594074895028 ], [ -95.572406030474696, 29.195798074705767 ], [ -95.571835030122728, 29.194856074379626 ], [ -95.570771029873697, 29.193550074113777 ], [ -95.570287030022953, 29.191667073214663 ], [ -95.570374029402558, 29.190728073645648 ], [ -95.570955030318061, 29.189790072922822 ], [ -95.571864030728946, 29.189070072902858 ], [ -95.573595031012246, 29.188643072844112 ], [ -95.57556903164658, 29.188796073009481 ], [ -95.57721303111488, 29.189236073218165 ], [ -95.580092031971574, 29.189609072520248 ], [ -95.582642032753711, 29.189763072281554 ], [ -95.585608033778897, 29.189268072346319 ], [ -95.588078034116393, 29.18906107246778 ], [ -95.589642034290264, 29.1888500718633 ], [ -95.590221034870197, 29.188346072368212 ], [ -95.590719034892246, 29.187552071582402 ], [ -95.590643034425327, 29.186250072151196 ], [ -95.590649034976494, 29.184876071447118 ], [ -95.590901035112424, 29.183937071030659 ], [ -95.591317035229068, 29.182998071223402 ], [ -95.592637035492146, 29.182352070461139 ], [ -95.594694035410242, 29.182432071154309 ], [ -95.595762036402874, 29.182726071200573 ], [ -95.596666035909053, 29.182946070949807 ], [ -95.597570036705577, 29.1832390705585 ], [ -95.598558036546351, 29.183170070990947 ], [ -95.599382036617897, 29.183028070789348 ], [ -95.5998770372302, 29.182669070817457 ], [ -95.600312037607793, 29.181623070059068 ], [ -95.600171036642777, 29.180267070328892 ], [ -95.599663037378278, 29.179039069711379 ], [ -95.598860036896582, 29.178068069825379 ], [ -95.597691036664131, 29.176708069947683 ], [ -95.596232035512884, 29.174637069392656 ], [ -95.596110036205332, 29.172424068403004 ], [ -95.596097035387345, 29.172184069001855 ], [ -95.595793035669914, 29.170882068449561 ], [ -95.595450035024228, 29.169406068309648 ], [ -95.593403034846474, 29.167397068131404 ], [ -95.59055303405249, 29.164610067388889 ], [ -95.58872303316916, 29.163506067133362 ], [ -95.584982032471714, 29.162524066839865 ], [ -95.582636032288264, 29.161740066601759 ], [ -95.582497031586684, 29.160255066288187 ], [ -95.583677031723298, 29.159291066820103 ], [ -95.584709032568696, 29.158456066163858 ], [ -95.58559703223392, 29.157039066106876 ], [ -95.586046032292657, 29.155298065059061 ], [ -95.586640032921906, 29.154074065399062 ], [ -95.587231032224224, 29.153237064946232 ], [ -95.588190032385711, 29.152401065029629 ], [ -95.589668033494178, 29.152041064730838 ], [ -95.590542033596563, 29.15182906506621 ], [ -95.593117034107607, 29.150741064328859 ], [ -95.594886034364777, 29.149328063683949 ], [ -95.59562703482365, 29.147911064019862 ], [ -95.596442034597317, 29.146493062971075 ], [ -95.597622034607895, 29.145271063378221 ], [ -95.598356034696351, 29.145274062961441 ], [ -95.599309035025314, 29.145665063051482 ], [ -95.600262035490871, 29.145927063382846 ], [ -95.602463036008771, 29.146258063174702 ], [ -95.604080037124106, 29.145941063323303 ], [ -95.605113037387298, 29.144847062347985 ], [ -95.605696037086929, 29.144271062456571 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 725, "Tract": "48039662300", "Area_SqMi": 1.3313766374763483, "total_2009": 1001, "total_2010": 1039, "total_2011": 1686, "total_2012": 654, "total_2013": 710, "total_2014": 774, "total_2015": 862, "total_2016": 857, "total_2017": 820, "total_2018": 937, "total_2019": 824, "total_2020": 805, "age1": 225, "age2": 369, "age3": 185, "earn1": 185, "earn2": 226, "earn3": 368, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 8, "naics_s06": 0, "naics_s07": 106, "naics_s08": 0, "naics_s09": 10, "naics_s10": 35, "naics_s11": 6, "naics_s12": 101, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 94, "naics_s17": 49, "naics_s18": 150, "naics_s19": 30, "naics_s20": 186, "race1": 661, "race2": 82, "race3": 7, "race4": 11, "race5": 1, "race6": 17, "ethnicity1": 542, "ethnicity2": 237, "edu1": 111, "edu2": 144, "edu3": 201, "edu4": 98, "Shape_Length": 27624.248080178619, "Shape_Area": 37116501.978952147, "total_2021": 817, "total_2022": 779 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.432960994383208, 29.182602076542331 ], [ -95.432888994571371, 29.181536075454908 ], [ -95.432821994504451, 29.180771075350126 ], [ -95.432750994404515, 29.179850075411238 ], [ -95.432734994626912, 29.17956407588083 ], [ -95.432622994290625, 29.177565074996664 ], [ -95.432597993847921, 29.177216075015323 ], [ -95.432522993951082, 29.176186074707768 ], [ -95.432497993709347, 29.175910074807483 ], [ -95.432470994490629, 29.175506074272295 ], [ -95.432436993874518, 29.174993074759861 ], [ -95.43232199435657, 29.173393074627771 ], [ -95.432233993973654, 29.171904073806523 ], [ -95.432177993709303, 29.171150073581195 ], [ -95.432137994255669, 29.170566074006409 ], [ -95.432091994213053, 29.170006073128221 ], [ -95.432069993223223, 29.16953707333677 ], [ -95.432006993432381, 29.168544072828034 ], [ -95.43192399345304, 29.167546073228653 ], [ -95.431866993839037, 29.166512072975266 ], [ -95.431808993192035, 29.165502072528096 ], [ -95.431722993545577, 29.164469072625742 ], [ -95.431121993467897, 29.164502072396182 ], [ -95.430892993203699, 29.164508072406129 ], [ -95.430570992616921, 29.164539072414446 ], [ -95.430402993450954, 29.164551072820949 ], [ -95.430176992753218, 29.164560072395378 ], [ -95.429998993265713, 29.164556072899483 ], [ -95.429801992659748, 29.164569072802163 ], [ -95.429615993222882, 29.16455907262554 ], [ -95.429410992533064, 29.164542072051287 ], [ -95.429239992361616, 29.164509072217193 ], [ -95.429098992667775, 29.164507072633089 ], [ -95.428855992864371, 29.164489072382516 ], [ -95.427055992577266, 29.1645170730065 ], [ -95.425630991762048, 29.164554072566464 ], [ -95.425417991437143, 29.164551072269038 ], [ -95.424520991583904, 29.164586072363377 ], [ -95.424238991428027, 29.164620072645889 ], [ -95.423833991771829, 29.1646970725103 ], [ -95.423428991179691, 29.164851072561156 ], [ -95.423181991529063, 29.164944072927788 ], [ -95.422728990919595, 29.165218072616632 ], [ -95.42172799105029, 29.165850072771672 ], [ -95.421500990731914, 29.165987073240473 ], [ -95.420586990617167, 29.166612073260985 ], [ -95.420113990826664, 29.166975073172214 ], [ -95.419817990684436, 29.167285073151341 ], [ -95.419601990264312, 29.167553073506731 ], [ -95.419473990714025, 29.167753073634547 ], [ -95.419272989911377, 29.168032073222491 ], [ -95.419006989999886, 29.168459073488119 ], [ -95.418801990493392, 29.168738073252996 ], [ -95.417965989786637, 29.170034073866244 ], [ -95.417269989535967, 29.171131074126318 ], [ -95.417016989966683, 29.171517074128303 ], [ -95.416699990307009, 29.172021074812974 ], [ -95.415917989414098, 29.173208074676502 ], [ -95.415536990140282, 29.173788074632945 ], [ -95.41444998984494, 29.175438074938786 ], [ -95.414272989166136, 29.17571407539112 ], [ -95.412281988828113, 29.178763076243779 ], [ -95.411193988669837, 29.180395076444576 ], [ -95.410917988454472, 29.180809076175407 ], [ -95.410623988548863, 29.181251076924209 ], [ -95.410094988730663, 29.182091076307781 ], [ -95.408107988202943, 29.185135077231671 ], [ -95.410264988405373, 29.18509607764846 ], [ -95.410715989357811, 29.185091077094324 ], [ -95.411923989281561, 29.185067076912073 ], [ -95.413119989028459, 29.185045077249761 ], [ -95.414336989700985, 29.185025077384843 ], [ -95.414845990114387, 29.185021076739204 ], [ -95.419194990588906, 29.184931077342501 ], [ -95.419146990623105, 29.18264807652432 ], [ -95.419124990465633, 29.181779076556577 ], [ -95.421229991011828, 29.181741076686631 ], [ -95.422775991944647, 29.181774075813305 ], [ -95.422786991568799, 29.182592076706563 ], [ -95.423164992236735, 29.182588076785965 ], [ -95.423946992368343, 29.182574076764009 ], [ -95.428162993539289, 29.18249907620195 ], [ -95.42825799353291, 29.182502076306346 ], [ -95.428357992841498, 29.182516075898647 ], [ -95.428486992995204, 29.182545076632543 ], [ -95.428730993752779, 29.182627075867746 ], [ -95.428842993304158, 29.18265407592537 ], [ -95.42895499379469, 29.182656075987378 ], [ -95.429103992982448, 29.182658076412785 ], [ -95.431075994335956, 29.182622076543957 ], [ -95.432960994383208, 29.182602076542331 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 726, "Tract": "48039662700", "Area_SqMi": 82.839036522418098, "total_2009": 503, "total_2010": 1207, "total_2011": 1167, "total_2012": 57, "total_2013": 58, "total_2014": 118, "total_2015": 129, "total_2016": 127, "total_2017": 114, "total_2018": 143, "total_2019": 197, "total_2020": 2413, "age1": 311, "age2": 1301, "age3": 391, "earn1": 83, "earn2": 114, "earn3": 1806, "naics_s01": 38, "naics_s02": 821, "naics_s03": 0, "naics_s04": 533, "naics_s05": 445, "naics_s06": 3, "naics_s07": 45, "naics_s08": 83, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 6, "naics_s13": 0, "naics_s14": 26, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 1720, "race2": 163, "race3": 23, "race4": 72, "race5": 3, "race6": 22, "ethnicity1": 1302, "ethnicity2": 701, "edu1": 321, "edu2": 489, "edu3": 532, "edu4": 350, "Shape_Length": 313848.18684621569, "Shape_Area": 2309410557.8170338, "total_2021": 1497, "total_2022": 2003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.873878109086903, 29.229989071291453 ], [ -95.874035108456241, 29.22970707181312 ], [ -95.867308107186091, 29.224058070979247 ], [ -95.861692104952184, 29.21920406968815 ], [ -95.859334104797639, 29.217061069806974 ], [ -95.859312104881582, 29.21705706896017 ], [ -95.859237104400819, 29.217035069530738 ], [ -95.859194105077222, 29.217012069413364 ], [ -95.85715710424337, 29.215280068832477 ], [ -95.855446103734522, 29.213825068624359 ], [ -95.854662103758713, 29.213162068381326 ], [ -95.850636101895546, 29.209758068467494 ], [ -95.850617102052055, 29.209742068517119 ], [ -95.848843102073488, 29.208242068090875 ], [ -95.848155100929347, 29.207656067700775 ], [ -95.844936100850603, 29.204913067628652 ], [ -95.844674100741699, 29.204681067326089 ], [ -95.8490221012853, 29.200918066327421 ], [ -95.849102101892555, 29.20084806667742 ], [ -95.849231101250965, 29.200735066592056 ], [ -95.849439101116488, 29.200556066042971 ], [ -95.853957102953842, 29.19666306494701 ], [ -95.854366102805955, 29.19631006542021 ], [ -95.854492102824011, 29.196201065152231 ], [ -95.855029102615546, 29.19573806522498 ], [ -95.855369102272149, 29.195445064936958 ], [ -95.855444102984777, 29.195381065468407 ], [ -95.855460103025734, 29.195367064621443 ], [ -95.855538102773963, 29.195300065035614 ], [ -95.855758102777159, 29.195110064935132 ], [ -95.855883102344805, 29.195003065362854 ], [ -95.857202103458022, 29.193852064531775 ], [ -95.857295103578508, 29.19377106460913 ], [ -95.857305102702412, 29.193762064454088 ], [ -95.857391103628174, 29.193687064537478 ], [ -95.857439103066312, 29.193645064914275 ], [ -95.85758110309736, 29.193522064383668 ], [ -95.857778103769419, 29.193350064683244 ], [ -95.857812102899601, 29.193320064171065 ], [ -95.854896101979946, 29.190846064201356 ], [ -95.854730102201657, 29.190698063767101 ], [ -95.854675102750647, 29.19064906367808 ], [ -95.854630101923462, 29.190609064390859 ], [ -95.854596101884383, 29.190579064443039 ], [ -95.854584102110678, 29.190568063927543 ], [ -95.85457710254957, 29.190561063775 ], [ -95.854569102056018, 29.190554064365877 ], [ -95.854357102534962, 29.190365063855019 ], [ -95.85308210177071, 29.189228064010976 ], [ -95.852960101445305, 29.189119063453859 ], [ -95.852932101480405, 29.189094063772909 ], [ -95.843093099298585, 29.18063506254737 ], [ -95.841965098653546, 29.17965706202693 ], [ -95.841850098712513, 29.17955706265214 ], [ -95.841769099071215, 29.179489062401299 ], [ -95.840145098095462, 29.178091062131806 ], [ -95.838378097798966, 29.176569061692252 ], [ -95.838686097488704, 29.17628506152252 ], [ -95.840290098567237, 29.174823061037863 ], [ -95.84162509884591, 29.173607061078474 ], [ -95.841714098483521, 29.173526061109328 ], [ -95.841574098126955, 29.173410061058732 ], [ -95.840898098236863, 29.173037060975226 ], [ -95.840296097761708, 29.172899061187834 ], [ -95.840102097890622, 29.172883061085489 ], [ -95.839814098000389, 29.172949061078189 ], [ -95.839676098307564, 29.17289406138373 ], [ -95.839526097292151, 29.172806060747163 ], [ -95.839419098139857, 29.172674060738078 ], [ -95.839369097366472, 29.172509061179586 ], [ -95.839363097804991, 29.172372060805223 ], [ -95.839369097674805, 29.172251060457839 ], [ -95.839457097612737, 29.172103060714448 ], [ -95.839551097891814, 29.172015060602234 ], [ -95.839657098169553, 29.171938060597942 ], [ -95.839983098242001, 29.171767061138173 ], [ -95.84011409802109, 29.171679060875178 ], [ -95.840327097803893, 29.17144806036335 ], [ -95.840377097946643, 29.171333060972426 ], [ -95.840440097955792, 29.171041060855849 ], [ -95.84039009797165, 29.170519060602736 ], [ -95.840296098217408, 29.170211060653482 ], [ -95.840289097403527, 29.169970060706483 ], [ -95.840183097477592, 29.169766060597805 ], [ -95.839995097484973, 29.169563059834775 ], [ -95.839544097645103, 29.169002060254865 ], [ -95.839525097981195, 29.168898059674937 ], [ -95.839556097310222, 29.168810059761803 ], [ -95.83963109799484, 29.168711060379849 ], [ -95.839669098132859, 29.168590059994919 ], [ -95.839731097211853, 29.168447059646503 ], [ -95.839838097998395, 29.168310059849638 ], [ -95.840032097626406, 29.168178060003498 ], [ -95.84027609827325, 29.168090060028025 ], [ -95.84058309831434, 29.168084059488827 ], [ -95.841266098465397, 29.168166059997542 ], [ -95.841811098083625, 29.168260060324915 ], [ -95.842149098279251, 29.16844105990717 ], [ -95.842331098603324, 29.168562060198891 ], [ -95.842443098178151, 29.168677060181722 ], [ -95.842625098612572, 29.16882605972275 ], [ -95.84280709873002, 29.168919059657714 ], [ -95.843120098666645, 29.169034060018042 ], [ -95.84322009859136, 29.169040060179199 ], [ -95.843865098194513, 29.168638060235889 ], [ -95.844109099161955, 29.168424059797697 ], [ -95.844635099045547, 29.167874059384722 ], [ -95.844979098803975, 29.167671059898399 ], [ -95.845199099429195, 29.167561059765802 ], [ -95.845712099137188, 29.16748405973275 ], [ -95.845994099265454, 29.16750605926476 ], [ -95.84627609919275, 29.167610059550093 ], [ -95.846476099098027, 29.167643060046046 ], [ -95.846614099572889, 29.167643060000582 ], [ -95.846883099268808, 29.167478059724793 ], [ -95.846952099000873, 29.167379059691012 ], [ -95.847015099354792, 29.167230059143229 ], [ -95.847002099753098, 29.16707105912711 ], [ -95.846914099498861, 29.16675205917149 ], [ -95.846820099405321, 29.166664059772966 ], [ -95.846657099141595, 29.166373059542273 ], [ -95.846545099471911, 29.166208059299755 ], [ -95.846545098801045, 29.165988059057423 ], [ -95.846563099581047, 29.165823058941132 ], [ -95.846745098862002, 29.16555905912421 ], [ -95.847058099764695, 29.165427058844227 ], [ -95.847214099366838, 29.165383058878465 ], [ -95.847384099754677, 29.165361059358254 ], [ -95.847553099603658, 29.165394059462567 ], [ -95.847759099393215, 29.165471059517692 ], [ -95.847853099897094, 29.165482059483995 ], [ -95.847929099574401, 29.165477058940979 ], [ -95.84808509936677, 29.165422059042221 ], [ -95.848317099227131, 29.165432058670401 ], [ -95.84839209949422, 29.165422058752515 ], [ -95.848505099476668, 29.16533405888319 ], [ -95.848567099528182, 29.165262058953488 ], [ -95.848912099685691, 29.165004058844112 ], [ -95.84893710030147, 29.164910058573099 ], [ -95.848962099677294, 29.164690058536799 ], [ -95.848955099697008, 29.16438805848135 ], [ -95.848861099611341, 29.164234058823293 ], [ -95.848748100044631, 29.164075058425688 ], [ -95.848260099889785, 29.163712058747599 ], [ -95.848153099195741, 29.163558058757939 ], [ -95.848084099610944, 29.163366058538092 ], [ -95.848053099280307, 29.163168058348649 ], [ -95.848140099379364, 29.162717058528241 ], [ -95.848121099120164, 29.162354058665809 ], [ -95.848078099692685, 29.162046058767114 ], [ -95.847908098996157, 29.161458058508874 ], [ -95.847707099226696, 29.16035405808708 ], [ -95.847783099553965, 29.160216057768995 ], [ -95.847883099603635, 29.16009005843582 ], [ -95.848139099424785, 29.159919058020655 ], [ -95.848446099844395, 29.159914058160968 ], [ -95.848678099940614, 29.159990058262249 ], [ -95.848910099389101, 29.160122058143163 ], [ -95.849235099524407, 29.160386058272817 ], [ -95.849367100223091, 29.160436058330482 ], [ -95.849660100273226, 29.160316057646863 ], [ -95.849956100078259, 29.16019405837168 ], [ -95.850131100150236, 29.160067057996411 ], [ -95.850193099565445, 29.159941057465698 ], [ -95.850168100386341, 29.159039058085753 ], [ -95.850112099476675, 29.158781057630506 ], [ -95.850017099324489, 29.158440057722817 ], [ -95.849867099395723, 29.157984057831495 ], [ -95.849892099677376, 29.157610057235654 ], [ -95.849967099396395, 29.15734105773112 ], [ -95.850061099865457, 29.157242057102746 ], [ -95.850242099593018, 29.157104056996193 ], [ -95.850380100033703, 29.157027057277762 ], [ -95.850499099989008, 29.15692805712969 ], [ -95.850499100120246, 29.156494057573152 ], [ -95.85025509934303, 29.156115057455079 ], [ -95.849547099662047, 29.155686056669165 ], [ -95.849315099346342, 29.155345057125682 ], [ -95.849190099865922, 29.155192057240569 ], [ -95.84906409905058, 29.154983056776388 ], [ -95.849020099229946, 29.154785056933157 ], [ -95.84905209956564, 29.154625057084939 ], [ -95.849120099063526, 29.154449057010993 ], [ -95.849314099145246, 29.154235056521212 ], [ -95.849496099412377, 29.154098056934309 ], [ -95.849653099078793, 29.154010057144248 ], [ -95.849790099479563, 29.153894056614924 ], [ -95.849909099970361, 29.153746056962319 ], [ -95.850022099361937, 29.153575056286996 ], [ -95.850197099878557, 29.153355056598492 ], [ -95.850510100019434, 29.153009056836716 ], [ -95.85062310015222, 29.152910056503984 ], [ -95.850654099990848, 29.152844056601303 ], [ -95.850666099836232, 29.152454056519236 ], [ -95.850695099522085, 29.152189056369654 ], [ -95.850704100064959, 29.152107056559178 ], [ -95.850710100044537, 29.151882056547635 ], [ -95.850628099944643, 29.151635055894776 ], [ -95.850453099550805, 29.15141505633127 ], [ -95.850290099340612, 29.151184056112033 ], [ -95.849908099533224, 29.150931056269187 ], [ -95.849770099212336, 29.150728055937964 ], [ -95.849783099774001, 29.150530055801067 ], [ -95.849770099138595, 29.150431055770216 ], [ -95.849645099620673, 29.150250055538237 ], [ -95.849526099413424, 29.150162055732189 ], [ -95.849463099043319, 29.150057055487551 ], [ -95.84931909947035, 29.149744056027473 ], [ -95.849306098898808, 29.149574056137308 ], [ -95.849231099395737, 29.149348056198871 ], [ -95.849137099015351, 29.149288055825728 ], [ -95.848993099477852, 29.149266056206177 ], [ -95.84891209919931, 29.149244055686392 ], [ -95.848824098743563, 29.149189056062777 ], [ -95.848674099234572, 29.148925055695379 ], [ -95.848442098643744, 29.148678055438335 ], [ -95.848285099192609, 29.148420055938175 ], [ -95.848141098473121, 29.148233055847886 ], [ -95.848078098633721, 29.147804055889253 ], [ -95.847978098999064, 29.147474055363709 ], [ -95.84804709866647, 29.14711705498048 ], [ -95.848166098641698, 29.146864055577467 ], [ -95.848216098477664, 29.146683055278714 ], [ -95.848203098728476, 29.146474055659567 ], [ -95.84806509885648, 29.146237055379149 ], [ -95.847702098580712, 29.146095055392355 ], [ -95.847207099037348, 29.145820054678261 ], [ -95.846600098755104, 29.145655055399423 ], [ -95.846374098134646, 29.145611055031907 ], [ -95.84593609854447, 29.145468055065869 ], [ -95.845748098543382, 29.14544605507675 ], [ -95.845586097695346, 29.145452054681201 ], [ -95.845323097943776, 29.145436055127281 ], [ -95.844978098433899, 29.145381054682371 ], [ -95.844759097852346, 29.145238055267608 ], [ -95.844671098400056, 29.145111055426433 ], [ -95.844295097789839, 29.144683054842716 ], [ -95.844020098018717, 29.144342054932249 ], [ -95.843869097828815, 29.14418305520805 ], [ -95.843750097531569, 29.144078054553656 ], [ -95.843612097908718, 29.143737055199065 ], [ -95.843612097867791, 29.143501054636854 ], [ -95.843700097864982, 29.143237054692413 ], [ -95.843669097094335, 29.142874054819064 ], [ -95.843618097862603, 29.142660054897771 ], [ -95.84349309792826, 29.142490054454811 ], [ -95.84330509709612, 29.142374054641671 ], [ -95.843124097715986, 29.142303054930064 ], [ -95.842917097608662, 29.14229205432882 ], [ -95.842729097554255, 29.142303054930295 ], [ -95.842498097008274, 29.142363054253067 ], [ -95.841871096755654, 29.142562054403577 ], [ -95.841477097218174, 29.14266105429958 ], [ -95.840851096432829, 29.14271005511095 ], [ -95.840619096905527, 29.142716054503794 ], [ -95.840488096490006, 29.142710054726791 ], [ -95.840356096289241, 29.142650054466383 ], [ -95.840187097110132, 29.142523054278939 ], [ -95.840037096909072, 29.142386054493659 ], [ -95.839887097045477, 29.142265054268819 ], [ -95.839818096651214, 29.142150054989312 ], [ -95.83979309619636, 29.141963054278069 ], [ -95.839805096304033, 29.141649054607051 ], [ -95.839868096395946, 29.141430054639155 ], [ -95.840024096475219, 29.141078054707965 ], [ -95.840074096248657, 29.140924053993601 ], [ -95.840086096355449, 29.140709054056153 ], [ -95.840055096311033, 29.140523054700491 ], [ -95.840024096496862, 29.140187054099055 ], [ -95.839986096341889, 29.140077054582164 ], [ -95.839836096106197, 29.139753053864279 ], [ -95.83968509626537, 29.139374054217839 ], [ -95.83957909596505, 29.139220053575535 ], [ -95.83952909648238, 29.139104054375412 ], [ -95.839497096305863, 29.138951054193178 ], [ -95.839347096664696, 29.138731054297565 ], [ -95.839328096193114, 29.138241053750214 ], [ -95.83930309631846, 29.138088053541143 ], [ -95.83918409649354, 29.137890054104616 ], [ -95.839052096194848, 29.137714053551278 ], [ -95.838952096411987, 29.137532053251157 ], [ -95.838796096004771, 29.137384053922055 ], [ -95.838602096399953, 29.137082053992131 ], [ -95.838489095750845, 29.136961053718824 ], [ -95.838326096431857, 29.136818053600933 ], [ -95.838313095822315, 29.136433053284129 ], [ -95.838326096308336, 29.13628505307188 ], [ -95.838395096300857, 29.135993053149342 ], [ -95.838413095631807, 29.135872052980865 ], [ -95.838407096327217, 29.135757053584239 ], [ -95.838357096375645, 29.135609053427558 ], [ -95.838238096168936, 29.135389053214503 ], [ -95.838169096197035, 29.135301053401591 ], [ -95.838081095894822, 29.135103053117998 ], [ -95.837856095273608, 29.134185053413088 ], [ -95.83776809557385, 29.133569052688479 ], [ -95.837887095645783, 29.133124053162838 ], [ -95.837937095720889, 29.132893053054733 ], [ -95.837937095310437, 29.132530052264475 ], [ -95.837924095938604, 29.132228052783208 ], [ -95.837930095897775, 29.132025052981678 ], [ -95.837980095962308, 29.131684052167401 ], [ -95.837955095542881, 29.131255052355641 ], [ -95.837792095345023, 29.130607052003299 ], [ -95.83764209544583, 29.130398052240551 ], [ -95.837567095121344, 29.130139051934364 ], [ -95.837548095156535, 29.129919052445462 ], [ -95.837617095207662, 29.12968305241991 ], [ -95.838011095729271, 29.129298052461809 ], [ -95.838167095991324, 29.129133051841222 ], [ -95.838343095509074, 29.128869052066928 ], [ -95.838512095827724, 29.128644051688074 ], [ -95.838643095674385, 29.128089051354433 ], [ -95.838743096152953, 29.127852051824942 ], [ -95.838831095346634, 29.127484051344343 ], [ -95.838968096016728, 29.127176051595129 ], [ -95.838997095624364, 29.127121051799872 ], [ -95.839056096087845, 29.127011051586717 ], [ -95.839187095740201, 29.126819051622075 ], [ -95.839289095893946, 29.126592051074859 ], [ -95.839475096151659, 29.126181051618786 ], [ -95.839600095329558, 29.125989051481628 ], [ -95.839744095991477, 29.125791050832554 ], [ -95.839882095845255, 29.125549051598949 ], [ -95.840013096345302, 29.12522505133164 ], [ -95.840144096342712, 29.125005050702413 ], [ -95.840508096366634, 29.124516050707808 ], [ -95.840733096001429, 29.124252050692412 ], [ -95.840833095676544, 29.123994050980549 ], [ -95.840865096317216, 29.123614050313769 ], [ -95.84097109640912, 29.123120050917922 ], [ -95.840952096134004, 29.122790050322173 ], [ -95.840921096181361, 29.122653050209593 ], [ -95.84078309551343, 29.122416050638265 ], [ -95.840714096375891, 29.122334050125708 ], [ -95.840482096043857, 29.1220970504367 ], [ -95.84043209616047, 29.122004050251739 ], [ -95.840413095948364, 29.121867050380747 ], [ -95.840419096176333, 29.121674050159903 ], [ -95.840457095828086, 29.121465050321756 ], [ -95.840657095862795, 29.120828050624983 ], [ -95.840676095740974, 29.120547050080734 ], [ -95.84072609619308, 29.120338049663996 ], [ -95.840769095936494, 29.120085049655017 ], [ -95.840882096302039, 29.11989904993148 ], [ -95.841038095567214, 29.119756049633519 ], [ -95.841176095965409, 29.11959105025581 ], [ -95.841308096403026, 29.119464049671258 ], [ -95.841408096074701, 29.119343049930713 ], [ -95.841458095752884, 29.119261049874638 ], [ -95.841508095857293, 29.119145049985221 ], [ -95.841526096211894, 29.119030049423614 ], [ -95.841545096361315, 29.118640050028095 ], [ -95.841526095643886, 29.118304049380203 ], [ -95.841488095537301, 29.118095050002346 ], [ -95.84147609611037, 29.11795804932715 ], [ -95.841482095529571, 29.117743049244588 ], [ -95.841513096191818, 29.117546049233948 ], [ -95.841588096028005, 29.11735904916096 ], [ -95.841651095893837, 29.117287049344153 ], [ -95.841882096537162, 29.117090049607121 ], [ -95.841892095913593, 29.117083049197092 ], [ -95.84209509614891, 29.117023049713513 ], [ -95.842239095753982, 29.116924049232512 ], [ -95.842352096423554, 29.116803049360687 ], [ -95.842439096003716, 29.116671049434292 ], [ -95.842446096482661, 29.116600049240507 ], [ -95.842411096590766, 29.116523049555497 ], [ -95.842333096183737, 29.116353049314821 ], [ -95.842233095662124, 29.116204049541086 ], [ -95.842070095778055, 29.11607804938216 ], [ -95.84178809642556, 29.115896049497671 ], [ -95.841513096160085, 29.115726048975951 ], [ -95.841200095332184, 29.115561048885265 ], [ -95.841043095270592, 29.115429048906346 ], [ -95.840829096106859, 29.11520004888153 ], [ -95.840811095570373, 29.115105049399496 ], [ -95.840780095584535, 29.114946049312845 ], [ -95.840811095993089, 29.114693048862115 ], [ -95.840905095236124, 29.114506048612885 ], [ -95.841018095758358, 29.11436904920124 ], [ -95.841126095631395, 29.114267048404859 ], [ -95.841268095425974, 29.114215048561409 ], [ -95.84152509623577, 29.114220048567791 ], [ -95.841810096165602, 29.114245049129963 ], [ -95.841906095634727, 29.11425304906615 ], [ -95.841960095629616, 29.114241048940048 ], [ -95.842032096278714, 29.114225049054735 ], [ -95.842058095449914, 29.114211048819453 ], [ -95.842269096208724, 29.114099048578655 ], [ -95.842351095747404, 29.114027048637503 ], [ -95.842432096398838, 29.113923048904113 ], [ -95.842523095567444, 29.113736048654264 ], [ -95.842664096571369, 29.113445049056676 ], [ -95.842726096271633, 29.113362048642124 ], [ -95.843052096271649, 29.1132140488393 ], [ -95.843246096471333, 29.113115048617779 ], [ -95.84355209661247, 29.112867048170223 ], [ -95.843615096484754, 29.112785048661593 ], [ -95.843677095965091, 29.112680048040264 ], [ -95.843715096139732, 29.112537048516373 ], [ -95.843715096291845, 29.112422047935009 ], [ -95.843652096038568, 29.112114048700434 ], [ -95.843577095745459, 29.111240047677494 ], [ -95.843583095963908, 29.110987047966141 ], [ -95.843664096642812, 29.110751047929057 ], [ -95.843802095900955, 29.110448048234623 ], [ -95.84395209676704, 29.110195048154651 ], [ -95.844114095942786, 29.109948048000977 ], [ -95.844703096697927, 29.109233048044437 ], [ -95.845109096230303, 29.108843047128708 ], [ -95.845804096371197, 29.108287047716594 ], [ -95.845998097176391, 29.108122047117131 ], [ -95.846210096711957, 29.107919047009755 ], [ -95.846317097174733, 29.107804047247683 ], [ -95.846367096757433, 29.107699047368648 ], [ -95.846386096924675, 29.107584047334271 ], [ -95.846386097085642, 29.107435046957225 ], [ -95.846342096284303, 29.107281047041251 ], [ -95.846248097014723, 29.107171047516417 ], [ -95.846123096345138, 29.107056047536204 ], [ -95.845935096289537, 29.106935047058755 ], [ -95.845459096008042, 29.106809047064441 ], [ -95.845121096027469, 29.10677004686185 ], [ -95.844777095839945, 29.10680904743203 ], [ -95.844476096236178, 29.106875046841829 ], [ -95.844138095808816, 29.106963047513577 ], [ -95.844063095852746, 29.106996047649965 ], [ -95.843850096095764, 29.107024046896434 ], [ -95.843731096080745, 29.10702904744598 ], [ -95.843600096308137, 29.106974047487267 ], [ -95.843494096035968, 29.106908047153372 ], [ -95.843212096049655, 29.106573047573626 ], [ -95.843205096270452, 29.106315047464975 ], [ -95.843506096049026, 29.105826046852833 ], [ -95.843581096028345, 29.105457046480076 ], [ -95.843512095866842, 29.105160047166468 ], [ -95.843104096295065, 29.104265046597941 ], [ -95.842910096151101, 29.103880047055501 ], [ -95.842898096024058, 29.103473046880122 ], [ -95.842985095298815, 29.102786046376895 ], [ -95.842935096115454, 29.102621046490011 ], [ -95.842866096056298, 29.102456046416862 ], [ -95.842565095141381, 29.102231046582578 ], [ -95.842378095661687, 29.102110046405354 ], [ -95.842152095555818, 29.102000046009323 ], [ -95.841764095340267, 29.101775045947932 ], [ -95.841426095778488, 29.101533045866514 ], [ -95.841038095185354, 29.101170046472507 ], [ -95.840969095210852, 29.101066045779767 ], [ -95.840912095266418, 29.100851046220612 ], [ -95.840906095397884, 29.100665046373052 ], [ -95.840956095568714, 29.100538045906116 ], [ -95.841056095420271, 29.100456046433361 ], [ -95.841159095559419, 29.100421045965529 ], [ -95.841219095138271, 29.100400045532336 ], [ -95.841282094773675, 29.1003790458462 ], [ -95.841857095069969, 29.100324045948277 ], [ -95.842039095227932, 29.100236045702871 ], [ -95.842139095870195, 29.100153046208209 ], [ -95.842176095618854, 29.100060045530078 ], [ -95.842214095684696, 29.099922046223885 ], [ -95.842195095510249, 29.099752045700018 ], [ -95.84209509530686, 29.099570045523176 ], [ -95.841901095709318, 29.099098045880371 ], [ -95.841807095410132, 29.098977045635014 ], [ -95.841738095191289, 29.098927045587871 ], [ -95.84150609526769, 29.09862504584293 ], [ -95.841150095365094, 29.09851504535856 ], [ -95.840968095110753, 29.098482045330563 ], [ -95.84066109448014, 29.098411045172028 ], [ -95.840315095118967, 29.09829904564274 ], [ -95.840227095109213, 29.098271045891227 ], [ -95.84020309529312, 29.098263045486032 ], [ -95.839998094435003, 29.098197045461607 ], [ -95.839747094388841, 29.098081045694848 ], [ -95.839428094517956, 29.097917045645691 ], [ -95.839240094836271, 29.097752045322057 ], [ -95.839052094510919, 29.097603045399666 ], [ -95.838965094365847, 29.09743304540379 ], [ -95.83889609483704, 29.097329045313103 ], [ -95.838808094463332, 29.096916045682431 ], [ -95.838796094878589, 29.096570045051205 ], [ -95.838808094864305, 29.096383045261597 ], [ -95.838783094709555, 29.095960045182917 ], [ -95.838739094443298, 29.095800044912089 ], [ -95.83867609433014, 29.095487045151739 ], [ -95.838532094013175, 29.095091044935238 ], [ -95.838426094564213, 29.094954045269837 ], [ -95.838207094215477, 29.094718045103491 ], [ -95.837837094536397, 29.094212045029852 ], [ -95.837336094414539, 29.093657044406694 ], [ -95.837023093985806, 29.093355044314215 ], [ -95.836460093794258, 29.09285504428831 ], [ -95.836260093373028, 29.092745044459928 ], [ -95.83617809365613, 29.092712044687165 ], [ -95.836022093127596, 29.092695044238486 ], [ -95.83580909346334, 29.092712044518688 ], [ -95.835496093175891, 29.092833044159008 ], [ -95.835340093382499, 29.09293704486236 ], [ -95.835177093368515, 29.093102044747368 ], [ -95.834996093128694, 29.093328044938954 ], [ -95.834845093477824, 29.093575044812148 ], [ -95.83460809347568, 29.093833044979686 ], [ -95.834439093045262, 29.093998044855823 ], [ -95.834357093444282, 29.094059045275035 ], [ -95.834245093373156, 29.09410304533813 ], [ -95.834151092677928, 29.094119044692466 ], [ -95.834007092967767, 29.094075045042228 ], [ -95.833844092774385, 29.093977045155796 ], [ -95.833575092898059, 29.093702044940141 ], [ -95.833212092876892, 29.093295044701975 ], [ -95.833030092773939, 29.093114044419327 ], [ -95.832968092350512, 29.093037044801289 ], [ -95.832855093035221, 29.092932045075013 ], [ -95.832486092991758, 29.092746045077927 ], [ -95.832179092418883, 29.092658044659821 ], [ -95.83208509259002, 29.092614044780305 ], [ -95.832004092892561, 29.092537044783658 ], [ -95.831991092104673, 29.092432044606383 ], [ -95.832022092747692, 29.092256044972228 ], [ -95.832041092889298, 29.091888044334535 ], [ -95.831985092358394, 29.09170704413803 ], [ -95.831766092302601, 29.091338044206537 ], [ -95.831584091854751, 29.091113044715495 ], [ -95.83140909211663, 29.090921044421375 ], [ -95.831277091954576, 29.090844044037382 ], [ -95.830958092233971, 29.090690044201118 ], [ -95.830833092423589, 29.090608044031711 ], [ -95.830727092514508, 29.090498043922711 ], [ -95.830645091961642, 29.090437044304675 ], [ -95.830564092288739, 29.09034904431233 ], [ -95.830332092138235, 29.090030044418793 ], [ -95.830044092364801, 29.089844044184758 ], [ -95.829957092218038, 29.089778044318379 ], [ -95.829904091704918, 29.089747044549902 ], [ -95.829788091694084, 29.089679044165099 ], [ -95.829656092230721, 29.089498044508169 ], [ -95.829612091534557, 29.089437043861665 ], [ -95.829450092081501, 29.089272044224277 ], [ -95.829318091300109, 29.089052044271288 ], [ -95.829218091468945, 29.08900304386481 ], [ -95.829124091780486, 29.088920043682052 ], [ -95.829049091877664, 29.088926044445561 ], [ -95.82897409181372, 29.089025043746261 ], [ -95.828874091837051, 29.089091044264354 ], [ -95.828749091386442, 29.089371043804885 ], [ -95.828661091814467, 29.089465043870209 ], [ -95.828417091799224, 29.089668044550614 ], [ -95.828092091475057, 29.089767044284443 ], [ -95.827816091698665, 29.089701044530067 ], [ -95.827459090801881, 29.089663044481672 ], [ -95.827021091299457, 29.089674044202166 ], [ -95.826765090633813, 29.089690044624948 ], [ -95.826452090593861, 29.089778043970561 ], [ -95.826239091210013, 29.089888044632513 ], [ -95.82604509078989, 29.090004043984642 ], [ -95.825895090470283, 29.090158044007538 ], [ -95.825739091232094, 29.090257044565274 ], [ -95.825532090477267, 29.090306044713635 ], [ -95.825294090888093, 29.090323044826054 ], [ -95.823091089670925, 29.090587044712009 ], [ -95.822134089994904, 29.090686044455097 ], [ -95.82178309018181, 29.090647044145264 ], [ -95.821214089259698, 29.090499044348107 ], [ -95.820726089481198, 29.090439044732037 ], [ -95.82021208906616, 29.090532044490725 ], [ -95.820006089506876, 29.090538044973112 ], [ -95.819806089177774, 29.090494044986571 ], [ -95.819605089454768, 29.090395044429208 ], [ -95.819192088981325, 29.090115044270618 ], [ -95.81884208928156, 29.089917044241545 ], [ -95.818310088702063, 29.089790044762726 ], [ -95.818116088561609, 29.08970204487763 ], [ -95.817966088393106, 29.089598044105411 ], [ -95.817765088657978, 29.08948804431278 ], [ -95.817711088477267, 29.089492044842007 ], [ -95.81766408887809, 29.089496044813984 ], [ -95.817584088921535, 29.089503044340727 ], [ -95.8175590881809, 29.089505044529563 ], [ -95.817202088388356, 29.08960404453175 ], [ -95.81685208887518, 29.089763044702138 ], [ -95.816501088712329, 29.089840044648721 ], [ -95.816357088183921, 29.089829044450557 ], [ -95.816113087906501, 29.089697044593841 ], [ -95.81588108802768, 29.089692044147931 ], [ -95.815700088517147, 29.089807044345225 ], [ -95.815569088706823, 29.089846044672861 ], [ -95.81542508857224, 29.08986204425241 ], [ -95.814843088255401, 29.089851045033161 ], [ -95.814624088285626, 29.08989004468895 ], [ -95.814430087768955, 29.08999404443141 ], [ -95.814142087362754, 29.090038044746429 ], [ -95.813641087635531, 29.089989044564149 ], [ -95.813272087766052, 29.089939044871372 ], [ -95.811901087745838, 29.089862044983779 ], [ -95.811663086684746, 29.089824045135661 ], [ -95.811520086862657, 29.089835044691512 ], [ -95.811294087558181, 29.089890044466916 ], [ -95.811025086642857, 29.089972044456648 ], [ -95.81060608675979, 29.090132044643102 ], [ -95.810243086841467, 29.090313044800894 ], [ -95.809404086173117, 29.090791044596156 ], [ -95.809273086634221, 29.090912045040035 ], [ -95.80911008679584, 29.091121044649405 ], [ -95.808929086153256, 29.09125304495085 ], [ -95.808772086609935, 29.091281045492178 ], [ -95.808572086395003, 29.091286044718451 ], [ -95.808309086380078, 29.091231045196373 ], [ -95.807990086756377, 29.091182044698908 ], [ -95.80788308646315, 29.091105045181568 ], [ -95.807815086197863, 29.090956044653268 ], [ -95.807802086544186, 29.090896045314388 ], [ -95.807664086430378, 29.090725045013546 ], [ -95.807614086114299, 29.090704044825792 ], [ -95.807495086040291, 29.090692044998931 ], [ -95.807339086098025, 29.090731045249846 ], [ -95.807164086519421, 29.090748045452408 ], [ -95.807057085922722, 29.090704045246493 ], [ -95.806701085541093, 29.090478044793365 ], [ -95.806525086301164, 29.090495045442673 ], [ -95.806413086124621, 29.090522044772623 ], [ -95.806306085759886, 29.090533044885564 ], [ -95.806150085579645, 29.090572044645924 ], [ -95.806031085382344, 29.090550045463512 ], [ -95.805912086071061, 29.090544045219634 ], [ -95.805806085807717, 29.090418045455852 ], [ -95.805756085293481, 29.090060044985389 ], [ -95.805680085720255, 29.089890044633048 ], [ -95.80554908552827, 29.08970904495278 ], [ -95.805399085261243, 29.089538044844119 ], [ -95.805130085574859, 29.089346044708204 ], [ -95.804785085324653, 29.089159044863973 ], [ -95.804460084923605, 29.088900044734686 ], [ -95.804297085012379, 29.088752044647752 ], [ -95.804110085558634, 29.088560044906846 ], [ -95.803909084943783, 29.08837804435402 ], [ -95.803784085198672, 29.088197044246201 ], [ -95.803684085409444, 29.088004044758005 ], [ -95.803615084762214, 29.087807044192576 ], [ -95.803571085423869, 29.087554044327142 ], [ -95.803553084869421, 29.087323044137005 ], [ -95.803559084527706, 29.08713004433098 ], [ -95.803521084955463, 29.086867044222444 ], [ -95.803515084574386, 29.086636044225006 ], [ -95.803531084790066, 29.08650804438032 ], [ -95.803571084657065, 29.086174044229928 ], [ -95.803565084493187, 29.085998044311932 ], [ -95.803578085438389, 29.085861044062295 ], [ -95.803559084660762, 29.085674044257352 ], [ -95.803546085011291, 29.085338043816439 ], [ -95.803559084889059, 29.084844043964313 ], [ -95.803553084712448, 29.084497043670648 ], [ -95.803396084578722, 29.084003044098452 ], [ -95.803302084772, 29.083876043924324 ], [ -95.803190084311481, 29.083728043867303 ], [ -95.80314608513801, 29.083684044091289 ], [ -95.802989084902677, 29.083596043601041 ], [ -95.802827084257402, 29.083519043789259 ], [ -95.80272008464577, 29.083431043400889 ], [ -95.802614084814365, 29.083293043290546 ], [ -95.802501084558401, 29.083008043681396 ], [ -95.802401084136093, 29.082892044017484 ], [ -95.80236408459416, 29.082815043249521 ], [ -95.802251084839497, 29.082700043666687 ], [ -95.802163084539373, 29.082634043429874 ], [ -95.802082084880084, 29.082590043474319 ], [ -95.801919084214376, 29.082524043769919 ], [ -95.801832084213842, 29.082524043108521 ], [ -95.801594084764247, 29.082496043596475 ], [ -95.801431083809106, 29.082452043325617 ], [ -95.801337084393737, 29.08232604363851 ], [ -95.801268083959798, 29.082200043467076 ], [ -95.801250083726231, 29.08206204377219 ], [ -95.801406084710038, 29.081496043546665 ], [ -95.801519084047342, 29.081166042957324 ], [ -95.801631084377348, 29.080479042800448 ], [ -95.801613083768601, 29.080243043065447 ], [ -95.801475083943416, 29.079995042667285 ], [ -95.801300083635581, 29.079847043362911 ], [ -95.801106084078697, 29.079753043020673 ], [ -95.800849084035733, 29.079715043154831 ], [ -95.800486084120379, 29.079808043225075 ], [ -95.800161083472219, 29.079924043471976 ], [ -95.799548084082915, 29.080105042730949 ], [ -95.799147083133704, 29.080198043486238 ], [ -95.799035083095845, 29.080215042863667 ], [ -95.79862808377807, 29.080237043017362 ], [ -95.798496083513484, 29.080215043626048 ], [ -95.798284082892295, 29.080149043213446 ], [ -95.798177083771677, 29.080143042775841 ], [ -95.797964083017504, 29.080182043482168 ], [ -95.797813083403156, 29.080264043350308 ], [ -95.797708083506649, 29.080303043105324 ], [ -95.797539083437542, 29.080314043633123 ], [ -95.797376083476323, 29.080264043603481 ], [ -95.797220082894924, 29.080193043086012 ], [ -95.797082082756077, 29.080105043015532 ], [ -95.797013082616246, 29.079945042890436 ], [ -95.796926082886031, 29.079187042797692 ], [ -95.796932082547201, 29.078841042507708 ], [ -95.796913083101359, 29.078527042636932 ], [ -95.796744083124935, 29.078126042477201 ], [ -95.796594082990055, 29.07793304320144 ], [ -95.796444082655754, 29.077813042450401 ], [ -95.796081082813274, 29.077472042412431 ], [ -95.795968082626288, 29.07732304225118 ], [ -95.795837082529729, 29.077175043016695 ], [ -95.795662082998746, 29.077087042455155 ], [ -95.795474082976455, 29.076966042648692 ], [ -95.79539308246548, 29.0768720426369 ], [ -95.795311082947819, 29.076724042833192 ], [ -95.795293082042321, 29.076609042305549 ], [ -95.795205082403143, 29.076257042357863 ], [ -95.795124082657978, 29.075597042591124 ], [ -95.795061082262436, 29.075366041982196 ], [ -95.795061082590578, 29.075174042157851 ], [ -95.795080082236936, 29.075031042304193 ], [ -95.795161081893923, 29.074723042552332 ], [ -95.795174082340935, 29.074608041956211 ], [ -95.795161082523322, 29.074371041962632 ], [ -95.795130081903991, 29.074305041710804 ], [ -95.795074082369354, 29.074261041656211 ], [ -95.794980082633785, 29.074206041771625 ], [ -95.794780082723022, 29.07412904179883 ], [ -95.794661082469361, 29.074025042460352 ], [ -95.794592082326659, 29.073926042079147 ], [ -95.794479082065635, 29.073602041650499 ], [ -95.794342081789765, 29.073398042041564 ], [ -95.794179082265586, 29.07329904215209 ], [ -95.794010082479801, 29.073266042253241 ], [ -95.793941081691514, 29.073222041742937 ], [ -95.793766081461271, 29.072980042233848 ], [ -95.793691082243868, 29.072799041844991 ], [ -95.793691082090731, 29.072628041848724 ], [ -95.793672082210705, 29.072491042111434 ], [ -95.793629081436166, 29.072431041334685 ], [ -95.793441081628117, 29.072227041486418 ], [ -95.793228081505248, 29.072095041504515 ], [ -95.793109082215906, 29.072040041755375 ], [ -95.793003082137133, 29.072029042118572 ], [ -95.792703081136878, 29.072024041586705 ], [ -95.79263408186776, 29.072013041467589 ], [ -95.792527081548229, 29.071947041438001 ], [ -95.792434081504481, 29.071870041978723 ], [ -95.792102081329119, 29.071441041991513 ], [ -95.791996081075681, 29.071331041914132 ], [ -95.791833081205311, 29.071216041701497 ], [ -95.791626081534773, 29.071122041187305 ], [ -95.791357081030455, 29.071012041320557 ], [ -95.791101081421132, 29.070963041545522 ], [ -95.790713080705146, 29.070853041624765 ], [ -95.790419081089354, 29.070803041144526 ], [ -95.789943081038416, 29.070660041441617 ], [ -95.78974308085823, 29.070572041678606 ], [ -95.7896120812444, 29.070473041458349 ], [ -95.789512080759991, 29.070347041398726 ], [ -95.789405080415833, 29.070149041588706 ], [ -95.789300080864436, 29.069968041387227 ], [ -95.789291080764443, 29.06995204179551 ], [ -95.789280081026575, 29.069934041464069 ], [ -95.789074080852075, 29.069731041516565 ], [ -95.788917080924008, 29.069621041467698 ], [ -95.788755080854443, 29.069522041604017 ], [ -95.788529080912625, 29.069423041686143 ], [ -95.788304080014015, 29.069308041092139 ], [ -95.787522080087285, 29.069027041440005 ], [ -95.786671079996921, 29.068752041200128 ], [ -95.785288079663047, 29.068114041179044 ], [ -95.78503207988868, 29.067867040703586 ], [ -95.784631079169131, 29.067526040870337 ], [ -95.784400079039017, 29.067383040780346 ], [ -95.784262079074352, 29.067284041028135 ], [ -95.784106079170954, 29.067251040848237 ], [ -95.783975079308561, 29.067240040887633 ], [ -95.783568079118368, 29.067168040890721 ], [ -95.78322407936102, 29.067086040597754 ], [ -95.782654079292627, 29.066877040649363 ], [ -95.782492078650392, 29.066750040705074 ], [ -95.782166078806014, 29.066470040655251 ], [ -95.782035079150447, 29.066322040464673 ], [ -95.781804078851209, 29.066096040371264 ], [ -95.781697078428209, 29.06601904113176 ], [ -95.781591078707379, 29.065904040503007 ], [ -95.781453078782747, 29.065816040513575 ], [ -95.781109078287429, 29.065673040316312 ], [ -95.780884078053248, 29.065596040540228 ], [ -95.780340077813307, 29.065502040896437 ], [ -95.778732078275752, 29.065194040760463 ], [ -95.777958077985261, 29.065065040918881 ], [ -95.777806077727632, 29.065040040270215 ], [ -95.776742077460639, 29.064908041020068 ], [ -95.776041076895169, 29.064831040442201 ], [ -95.775290076839909, 29.064732040313551 ], [ -95.77452107664574, 29.064561040267908 ], [ -95.774208076202868, 29.064478040767767 ], [ -95.773983076319666, 29.064445040411311 ], [ -95.773720076453642, 29.064451040554211 ], [ -95.773432076822203, 29.064506041072072 ], [ -95.773251076762364, 29.064638040948719 ], [ -95.772982076386583, 29.06488504087174 ], [ -95.772813076223173, 29.065094041278538 ], [ -95.772625076703989, 29.065374040840904 ], [ -95.772349075988132, 29.065841040848674 ], [ -95.772130076636714, 29.066088041322587 ], [ -95.771786076365586, 29.066352040824583 ], [ -95.771667075923531, 29.066413040759215 ], [ -95.771511075942698, 29.066451040785331 ], [ -95.771354076050059, 29.066462041448471 ], [ -95.771066075700176, 29.066446040839292 ], [ -95.770760076250298, 29.066363041595089 ], [ -95.770453075491787, 29.066215041179156 ], [ -95.770209075378801, 29.065874041319979 ], [ -95.770128075812167, 29.065703041436727 ], [ -95.770040075596128, 29.065555040801833 ], [ -95.769878075018553, 29.064900040989308 ], [ -95.769597075220176, 29.063603040433261 ], [ -95.76944107526225, 29.063295040518174 ], [ -95.769328075751133, 29.063009040133224 ], [ -95.76907207480248, 29.062641040556382 ], [ -95.768897075349585, 29.062498040862931 ], [ -95.768671074610381, 29.062338040757563 ], [ -95.768140075285189, 29.062283040465285 ], [ -95.767914074804153, 29.062239040459406 ], [ -95.767120074780522, 29.061953040169875 ], [ -95.766081074232503, 29.061436040027836 ], [ -95.765643074797779, 29.061271040578227 ], [ -95.765293074214824, 29.061057040607363 ], [ -95.765149074065462, 29.060936040322638 ], [ -95.765093074079758, 29.060853040096408 ], [ -95.765049074252261, 29.060727040527293 ], [ -95.765049074580944, 29.060622040062334 ], [ -95.765056073693202, 29.060463040427059 ], [ -95.765118073910926, 29.06019304029849 ], [ -95.765169073875356, 29.060101039756905 ], [ -95.765175074029159, 29.060090040142637 ], [ -95.765256074533582, 29.059974039738034 ], [ -95.765394073722945, 29.059869040166184 ], [ -95.765632074189739, 29.059803039745415 ], [ -95.765844074335661, 29.059836040100304 ], [ -95.766013073857778, 29.059880039658044 ], [ -95.766576074655987, 29.05993504010398 ], [ -95.767207074146611, 29.059646039897672 ], [ -95.767536075138608, 29.059357040189884 ], [ -95.767742075051885, 29.059033040210931 ], [ -95.767702074578594, 29.058707039426437 ], [ -95.767415074972263, 29.058526040075527 ], [ -95.767087074314574, 29.058526039935373 ], [ -95.766430074241512, 29.058741040023147 ], [ -95.766225074288144, 29.058740039374044 ], [ -95.766061073853692, 29.058596040083927 ], [ -95.766062074642761, 29.058198039350373 ], [ -95.766186074653348, 29.05794603937974 ], [ -95.766885074035272, 29.057261039403059 ], [ -95.766886074458881, 29.0568270395738 ], [ -95.76676407489586, 29.056538039408498 ], [ -95.766765074627017, 29.056068039501248 ], [ -95.766951074303392, 29.055617038837049 ], [ -95.767054074162317, 29.055455039363846 ], [ -95.767056074766614, 29.055057039456958 ], [ -95.767179074385638, 29.054841038757647 ], [ -95.767673074903669, 29.054300038476025 ], [ -95.767674074840784, 29.053975038883895 ], [ -95.767552074422909, 29.053686038435892 ], [ -95.767553074047768, 29.053252038551481 ], [ -95.767800074221483, 29.053036038149202 ], [ -95.768416074342426, 29.05274803822925 ], [ -95.768539074444234, 29.05274903850453 ], [ -95.769074074421695, 29.052172038765473 ], [ -95.769813075180153, 29.052101038677922 ], [ -95.770142075370714, 29.051885037843089 ], [ -95.770593075193915, 29.051886038375542 ], [ -95.771125075141001, 29.052212037959602 ], [ -95.772069075286439, 29.052250038619874 ], [ -95.772132075984416, 29.052277037969546 ], [ -95.772154075802007, 29.052286037921988 ], [ -95.772848075278858, 29.052577038088668 ], [ -95.77313407538513, 29.052794038720204 ], [ -95.773462076133953, 29.052867038080418 ], [ -95.77375007617519, 29.05286803812173 ], [ -95.774161076355497, 29.052652037837049 ], [ -95.774653076720313, 29.052617038194242 ], [ -95.775064075966768, 29.052401037873469 ], [ -95.77563907671211, 29.0522940377789 ], [ -95.775885076853484, 29.052186038196577 ], [ -95.775998076289554, 29.052068038427755 ], [ -95.776066076284323, 29.051997037925755 ], [ -95.776081076879734, 29.051981038403284 ], [ -95.776091076806708, 29.051970037748504 ], [ -95.776092076931178, 29.051392037894331 ], [ -95.776175076508537, 29.05124703761107 ], [ -95.776421076158513, 29.051103038037304 ], [ -95.776627076891955, 29.050887037746342 ], [ -95.776628076287025, 29.050634037704661 ], [ -95.776464076814364, 29.050381037626241 ], [ -95.776466076343283, 29.049947037446145 ], [ -95.776672077088151, 29.049623037248924 ], [ -95.776961077120248, 29.048829037123561 ], [ -95.776962076426912, 29.048251037248185 ], [ -95.7768400766561, 29.048034037494151 ], [ -95.776860076432143, 29.047899037131657 ], [ -95.776907076177565, 29.047890037565342 ], [ -95.776918076329181, 29.047888037380851 ], [ -95.777035076684726, 29.047866036764848 ], [ -95.777147076591618, 29.047916037615146 ], [ -95.777298077206254, 29.048009037236405 ], [ -95.777423077002581, 29.047987036850241 ], [ -95.777504077257703, 29.047894037083161 ], [ -95.777423077181012, 29.047366036902034 ], [ -95.77734207626996, 29.047223036964926 ], [ -95.777220076179532, 29.0471120370619 ], [ -95.777160076489963, 29.047058036733564 ], [ -95.777023076510091, 29.046910036965439 ], [ -95.776973076534006, 29.046800037000633 ], [ -95.776904076086907, 29.046410037001323 ], [ -95.776894076281351, 29.046134037255712 ], [ -95.776891076373417, 29.046025036729276 ], [ -95.776979076737831, 29.04569503640564 ], [ -95.777273076864489, 29.045057036945867 ], [ -95.777267076500507, 29.044876036942256 ], [ -95.777336076760648, 29.044563036836351 ], [ -95.77747407701203, 29.044365036312243 ], [ -95.777611076481165, 29.0443320366034 ], [ -95.777737076714658, 29.044332036111971 ], [ -95.777880076780335, 29.044381036882029 ], [ -95.777981077072127, 29.044508036029885 ], [ -95.778106077206459, 29.04462903657986 ], [ -95.778218076553813, 29.044722036873761 ], [ -95.778299076530814, 29.044772036331445 ], [ -95.778406077357886, 29.04477203642589 ], [ -95.778531076524317, 29.044728036662598 ], [ -95.778637077054427, 29.044601036260211 ], [ -95.778712077002567, 29.044436036883781 ], [ -95.778781076691658, 29.044244036442745 ], [ -95.778931076957235, 29.044019035949962 ], [ -95.779088077189868, 29.043848036331458 ], [ -95.779395076704347, 29.04366703596677 ], [ -95.779876076883639, 29.043519036357768 ], [ -95.779944077657248, 29.043507036200385 ], [ -95.780245077263586, 29.04345303629216 ], [ -95.780558077476769, 29.043447036545842 ], [ -95.780921077043033, 29.043453036435974 ], [ -95.781140076991761, 29.043502036349309 ], [ -95.781453077532831, 29.04355203610455 ], [ -95.781659077327632, 29.043536036166813 ], [ -95.781747077577194, 29.043464036325929 ], [ -95.781941078054288, 29.04339303586648 ], [ -95.782030077464626, 29.04341703605008 ], [ -95.78205807778599, 29.043425035820455 ], [ -95.782266078138306, 29.043481036248703 ], [ -95.782441077572116, 29.043585036480398 ], [ -95.782585077982631, 29.043651035836699 ], [ -95.782710078408272, 29.043662036370751 ], [ -95.782860077604369, 29.04364603627641 ], [ -95.783079077801872, 29.043574036378768 ], [ -95.783298078252187, 29.043459035906491 ], [ -95.783555077688774, 29.043234036461868 ], [ -95.783893078224239, 29.042843035823715 ], [ -95.783993077861112, 29.042651035721381 ], [ -95.784118077999324, 29.041958035849419 ], [ -95.784112078283286, 29.041766035421443 ], [ -95.784093078345734, 29.041629035400046 ], [ -95.784024078532823, 29.041425035660083 ], [ -95.783922078211532, 29.04128403534607 ], [ -95.783862078237973, 29.041167035226337 ], [ -95.783824077733655, 29.041057035491619 ], [ -95.78383707845056, 29.040908035981516 ], [ -95.783924077728543, 29.040738035130317 ], [ -95.784168078128246, 29.040502035385931 ], [ -95.784412077801491, 29.040293035362254 ], [ -95.784706078149085, 29.039996035571232 ], [ -95.78503807849566, 29.039743034857914 ], [ -95.78523807883326, 29.039617035278958 ], [ -95.785376077962425, 29.039501034869609 ], [ -95.785439078901675, 29.039391035046254 ], [ -95.785495078726086, 29.039265034787991 ], [ -95.785507078569722, 29.039155034878075 ], [ -95.785457077997989, 29.038963034809793 ], [ -95.785364078860297, 29.038858035408218 ], [ -95.785282078271479, 29.038748035431894 ], [ -95.785138078247158, 29.038638034854415 ], [ -95.784644078117736, 29.038356035143646 ], [ -95.784281078294953, 29.038149035409582 ], [ -95.784150078365627, 29.038083035098225 ], [ -95.783731077963864, 29.038066034701608 ], [ -95.783387078061494, 29.038099035128393 ], [ -95.782799077587143, 29.038264035009956 ], [ -95.782530077362438, 29.038313035174156 ], [ -95.782230077715269, 29.038165035270502 ], [ -95.781992077360599, 29.038033034982579 ], [ -95.781773077607383, 29.03794503482111 ], [ -95.781373077125295, 29.037703034879026 ], [ -95.781260077059386, 29.037620035377216 ], [ -95.781135077227418, 29.037516035173056 ], [ -95.781054077508358, 29.037434035359798 ], [ -95.781023077423342, 29.037324035263158 ], [ -95.781004077257066, 29.03715903517946 ], [ -95.781117077032235, 29.03690003493691 ], [ -95.781110076881305, 29.036581034790558 ], [ -95.780960077315314, 29.036213034377521 ], [ -95.780829077441794, 29.035944035024031 ], [ -95.780823077462927, 29.035817034711123 ], [ -95.78083507728924, 29.035724034440381 ], [ -95.780898077259991, 29.035581034517392 ], [ -95.781080077407452, 29.035334034151077 ], [ -95.781073076637171, 29.03516903461032 ], [ -95.780942076804934, 29.035004034497572 ], [ -95.780717077304899, 29.034817034264176 ], [ -95.780579076621166, 29.034751034181259 ], [ -95.780435077367116, 29.0347290345732 ], [ -95.780154077135023, 29.034734034074191 ], [ -95.779841076517386, 29.034756034112373 ], [ -95.779672077099136, 29.034745034383604 ], [ -95.779547076659, 29.034718034244253 ], [ -95.779447077118235, 29.034679034096694 ], [ -95.779341076191685, 29.034597034536411 ], [ -95.779291077108098, 29.034492034366021 ], [ -95.779297076702775, 29.034327034331966 ], [ -95.779404077048895, 29.03414603384967 ], [ -95.77960407682454, 29.033975034016706 ], [ -95.7800480767294, 29.03369003418635 ], [ -95.78033607725699, 29.033398034246051 ], [ -95.780736077243674, 29.033058033788041 ], [ -95.781314077445074, 29.032423033867083 ], [ -95.781462077404314, 29.032261034124563 ], [ -95.781612077151237, 29.032090034096495 ], [ -95.781794076965184, 29.031706033383671 ], [ -95.781806077544033, 29.031623033894469 ], [ -95.781862076768221, 29.031458033707278 ], [ -95.782063077711456, 29.031326033407694 ], [ -95.782788077324184, 29.031041033237639 ], [ -95.783064076986236, 29.030689033068864 ], [ -95.783139077715859, 29.030579033848589 ], [ -95.783201077998413, 29.030524033114293 ], [ -95.783370077094801, 29.030436032955642 ], [ -95.783539077864987, 29.030447033601344 ], [ -95.783664077504994, 29.03046903372233 ], [ -95.783871077163496, 29.030469033572992 ], [ -95.783996077818642, 29.030436033773075 ], [ -95.784102077946443, 29.030365033738288 ], [ -95.7841270775303, 29.030216033534167 ], [ -95.784121077280815, 29.030035033052254 ], [ -95.784090077350456, 29.029914033545232 ], [ -95.783990078163683, 29.029749032884151 ], [ -95.783952077194186, 29.029502033551857 ], [ -95.783946077872898, 29.029271033400068 ], [ -95.783971077925244, 29.028913032986484 ], [ -95.784065077987037, 29.028551032620097 ], [ -95.784078077799066, 29.028402033002909 ], [ -95.784071077517908, 29.028193033239194 ], [ -95.784009077716917, 29.028045032437962 ], [ -95.783909077865928, 29.02795103315696 ], [ -95.783846077864368, 29.027869033113948 ], [ -95.783652077583866, 29.02773703284155 ], [ -95.783465077003441, 29.027698032658247 ], [ -95.783315077845387, 29.027770032707895 ], [ -95.783114077780468, 29.027803032840545 ], [ -95.782908077236641, 29.02778103305409 ], [ -95.782639076762024, 29.027704032499638 ], [ -95.782526077548653, 29.02769303281643 ], [ -95.782339077378694, 29.027726032771294 ], [ -95.782220077170052, 29.027852032534881 ], [ -95.782151076863585, 29.027945032586231 ], [ -95.782022076682779, 29.028085032856552 ], [ -95.781913077355469, 29.02810503282052 ], [ -95.781645077070905, 29.028028032790822 ], [ -95.781457076470161, 29.028033033128118 ], [ -95.781100077265492, 29.028121033400105 ], [ -95.780913076834864, 29.028138033092201 ], [ -95.780609076613558, 29.028048033175779 ], [ -95.780375077038386, 29.027901033229281 ], [ -95.780106076501923, 29.027687033342296 ], [ -95.779944076631537, 29.027545033033356 ], [ -95.774849074899663, 29.028509033372302 ], [ -95.771322074372691, 29.02911303365056 ], [ -95.767598073316989, 29.029746033752932 ], [ -95.763749072687645, 29.030423033831145 ], [ -95.758984071016968, 29.031240034200401 ], [ -95.755180070847487, 29.031888034329423 ], [ -95.753409069597168, 29.032198034850893 ], [ -95.75260206982945, 29.032335035070943 ], [ -95.750047069094407, 29.032792034652285 ], [ -95.748068068477096, 29.033128035437265 ], [ -95.746352068501992, 29.033430034875934 ], [ -95.746339067987208, 29.033459035460321 ], [ -95.745955068136155, 29.03445003573999 ], [ -95.74587206799383, 29.034716035600656 ], [ -95.745835068054632, 29.034836035340632 ], [ -95.745669067630217, 29.035106035779279 ], [ -95.745457067973703, 29.035320035234147 ], [ -95.745437068276431, 29.035339036011681 ], [ -95.745325067770608, 29.035442035666616 ], [ -95.745123068505038, 29.035565036058546 ], [ -95.743897068231178, 29.036308036097228 ], [ -95.74377506779885, 29.036385035957263 ], [ -95.74208106779345, 29.037452035964918 ], [ -95.740242067339167, 29.038622036360518 ], [ -95.73928906713617, 29.039227036464727 ], [ -95.738334066359528, 29.039817036867174 ], [ -95.737208065818947, 29.040510036652076 ], [ -95.736523066066155, 29.041045036767489 ], [ -95.735581065432726, 29.041921036877856 ], [ -95.73501206582813, 29.042436037476548 ], [ -95.734287065632202, 29.043111037698381 ], [ -95.732474065102778, 29.044806037614165 ], [ -95.730610065074814, 29.046523038786074 ], [ -95.729485064136085, 29.047559039029686 ], [ -95.727599064436589, 29.04937403916837 ], [ -95.727479064258574, 29.049524038742163 ], [ -95.727758063958404, 29.049694038894494 ], [ -95.728207064442699, 29.049951039097657 ], [ -95.728336064785267, 29.050083039079219 ], [ -95.728709064421878, 29.050473039517769 ], [ -95.729555064772313, 29.051662039619668 ], [ -95.730032064834262, 29.052381039816886 ], [ -95.73129106559, 29.05428103978349 ], [ -95.732528065789836, 29.056148040735522 ], [ -95.732935065486572, 29.056750040111844 ], [ -95.734935066092049, 29.059709040917465 ], [ -95.735326066772586, 29.060276041196971 ], [ -95.735609066363637, 29.06072404107244 ], [ -95.735646067029947, 29.060800041002107 ], [ -95.735774066429229, 29.061063041610069 ], [ -95.73587406645575, 29.061370041288246 ], [ -95.735929066717034, 29.061538040920571 ], [ -95.735977066347871, 29.061923041283656 ], [ -95.736024066569229, 29.062508041106206 ], [ -95.735881066466135, 29.063860041903702 ], [ -95.735689067251585, 29.06482004164566 ], [ -95.735669066909523, 29.064920042383818 ], [ -95.735480066392299, 29.065886042485278 ], [ -95.735479066647855, 29.065900042189703 ], [ -95.735446066948953, 29.066529042043296 ], [ -95.73551306710462, 29.067128042179945 ], [ -95.735696066560735, 29.067751043029507 ], [ -95.735603066922607, 29.067836042297451 ], [ -95.735360066682816, 29.06805604259263 ], [ -95.73454706717969, 29.068799042446035 ], [ -95.734500067068865, 29.068842042611678 ], [ -95.733753066592627, 29.06952304271579 ], [ -95.73312006628791, 29.07009404309045 ], [ -95.732342066528247, 29.070796043165423 ], [ -95.728715065735088, 29.074048044370148 ], [ -95.728525065365119, 29.07422004392286 ], [ -95.725636065209073, 29.076530045127605 ], [ -95.724091063951022, 29.07771104547723 ], [ -95.721633063500335, 29.079538045726927 ], [ -95.719793063068607, 29.080904045531195 ], [ -95.719076063043886, 29.081437046283092 ], [ -95.718833062801238, 29.081559045670595 ], [ -95.718435062961689, 29.08176604576024 ], [ -95.71783306319773, 29.081934046005259 ], [ -95.717636062740098, 29.081950045703067 ], [ -95.717185062468999, 29.081987045748765 ], [ -95.716790062686215, 29.081986046456656 ], [ -95.715324062380986, 29.081984046558027 ], [ -95.712479061538957, 29.082103046202633 ], [ -95.711382061039146, 29.082163046035831 ], [ -95.710574060808483, 29.082121046054031 ], [ -95.710214060596257, 29.082088046695102 ], [ -95.709875060839295, 29.081977046182363 ], [ -95.709381060685317, 29.081772046083572 ], [ -95.706021060049608, 29.080382046083852 ], [ -95.704252059383606, 29.079628046154895 ], [ -95.703258059424073, 29.079353046095292 ], [ -95.702469059439991, 29.079173046190736 ], [ -95.701704058651288, 29.079089046115378 ], [ -95.699659058663983, 29.078914046299541 ], [ -95.69761605761785, 29.078817046016624 ], [ -95.695102057292146, 29.078710045870739 ], [ -95.694253056681831, 29.078683046535584 ], [ -95.692050056369496, 29.078613045821129 ], [ -95.689162055816993, 29.07853604668701 ], [ -95.687597055010968, 29.078443046541448 ], [ -95.685552054313263, 29.078327046369697 ], [ -95.685157054159774, 29.078305046269126 ], [ -95.684478054582598, 29.078334046072108 ], [ -95.684302054400135, 29.078345046448273 ], [ -95.68404605377718, 29.078393046646351 ], [ -95.68274405382013, 29.078680046496121 ], [ -95.682804053497833, 29.079139047101187 ], [ -95.682518053640791, 29.079963046500438 ], [ -95.681971053282425, 29.080860047444538 ], [ -95.681189054015533, 29.082140047088714 ], [ -95.681033053822205, 29.082736047692514 ], [ -95.680988053774001, 29.082804047373411 ], [ -95.68085105409655, 29.083011047606615 ], [ -95.680251053435256, 29.083515047402596 ], [ -95.679547052918153, 29.083836047696341 ], [ -95.676826052638205, 29.084471047587947 ], [ -95.676601052449882, 29.084524047889463 ], [ -95.67553205206552, 29.084983047950985 ], [ -95.674906051742553, 29.085396047854655 ], [ -95.674094051602779, 29.086178048538201 ], [ -95.672456052084513, 29.087756048812334 ], [ -95.670501051441747, 29.089223049348135 ], [ -95.670188051622674, 29.089567049210633 ], [ -95.670003051294103, 29.089973049146799 ], [ -95.669615051365156, 29.090827049504973 ], [ -95.669496050718749, 29.091287049724635 ], [ -95.669485051426406, 29.091331049497228 ], [ -95.669538051042096, 29.0923840494657 ], [ -95.669590050870909, 29.092613049667413 ], [ -95.670478051399357, 29.094239050308591 ], [ -95.670530051277467, 29.094858050024637 ], [ -95.670322051127485, 29.095270050488857 ], [ -95.669826050999532, 29.095729050931197 ], [ -95.669044051470223, 29.096210050949761 ], [ -95.66761005037452, 29.096783050365222 ], [ -95.666932050827015, 29.097287051029603 ], [ -95.666411050054037, 29.097814051441638 ], [ -95.666267050997007, 29.098056050750106 ], [ -95.666046050553959, 29.0984330510638 ], [ -95.665733050894374, 29.099441051496111 ], [ -95.665786050779758, 29.100449051504174 ], [ -95.666021050691839, 29.100999051604202 ], [ -95.666034050916593, 29.101014051553381 ], [ -95.66672505130073, 29.101846051603708 ], [ -95.66705505114389, 29.1019950518291 ], [ -95.668447050776308, 29.102624051724945 ], [ -95.668865051246854, 29.102945051835928 ], [ -95.668995051769599, 29.103197052043917 ], [ -95.668996051936432, 29.103907052217462 ], [ -95.668527051832029, 29.105236052911263 ], [ -95.668527051363441, 29.106198053110969 ], [ -95.668931051619808, 29.107039052460856 ], [ -95.668945051249025, 29.107068052759079 ], [ -95.66954705191209, 29.107871053201073 ], [ -95.669650051418159, 29.108007052996683 ], [ -95.669859051665298, 29.108442052790693 ], [ -95.669963052015163, 29.108992053670605 ], [ -95.669834051447893, 29.110068053541656 ], [ -95.669860051756814, 29.110756054028897 ], [ -95.669938051978036, 29.11084705399006 ], [ -95.670069052282557, 29.111420053780705 ], [ -95.670017051588687, 29.112107053783834 ], [ -95.669757051725597, 29.112817054431577 ], [ -95.669757051906416, 29.113527054177787 ], [ -95.670383052156168, 29.114398054448959 ], [ -95.671036052880936, 29.114603054154639 ], [ -95.671818052772608, 29.114580054193446 ], [ -95.672418053265119, 29.114351054025004 ], [ -95.672783052657138, 29.114007053783865 ], [ -95.673148052993767, 29.113434054096913 ], [ -95.673304052787799, 29.113045054268305 ], [ -95.673904053302024, 29.112197053679594 ], [ -95.674478053355386, 29.111945054124003 ], [ -95.675063053099862, 29.111853053727856 ], [ -95.67609505322342, 29.111692053846163 ], [ -95.676917053982336, 29.11182505319459 ], [ -95.677240053622754, 29.111878053833944 ], [ -95.677921053864708, 29.111989053225411 ], [ -95.680817054602571, 29.112973053992633 ], [ -95.681756054959806, 29.113499053646699 ], [ -95.682878055083577, 29.114484054098899 ], [ -95.684262056278044, 29.116064054018167 ], [ -95.684940055704956, 29.116613054623581 ], [ -95.685932056793646, 29.117025054621212 ], [ -95.693055058535677, 29.119014054967035 ], [ -95.693916058476105, 29.119472054782165 ], [ -95.695117058281625, 29.120273054949958 ], [ -95.695769059126036, 29.120547054723321 ], [ -95.696347058978517, 29.120363054374298 ], [ -95.696657059193001, 29.120143054585672 ], [ -95.696847059091098, 29.119858054745112 ], [ -95.696908059314154, 29.119487054720025 ], [ -95.696951059132431, 29.119172054683087 ], [ -95.696908059218046, 29.11886605420133 ], [ -95.696869059348217, 29.118348054303329 ], [ -95.69691605917653, 29.117839054642356 ], [ -95.696946059315025, 29.117541053946638 ], [ -95.697097059416336, 29.117261054068646 ], [ -95.697270059255871, 29.116873054017031 ], [ -95.697637059594385, 29.116398054059431 ], [ -95.698034059515976, 29.11613505352204 ], [ -95.698432059695776, 29.116035054074345 ], [ -95.699183059581216, 29.115735053757202 ], [ -95.699939059492664, 29.115643053446703 ], [ -95.701295060053738, 29.115688053751519 ], [ -95.702809060976506, 29.11596105359688 ], [ -95.70424406115886, 29.116556053524597 ], [ -95.704870060852116, 29.116670053896168 ], [ -95.707070061927553, 29.116518053900375 ], [ -95.707535062113152, 29.116687053645684 ], [ -95.707811061753986, 29.116821053531886 ], [ -95.707983061735248, 29.116967053727386 ], [ -95.708346062101853, 29.117218053339116 ], [ -95.70857506219096, 29.117580054041319 ], [ -95.708825062281775, 29.118119053774706 ], [ -95.70911406199896, 29.119030054056303 ], [ -95.709166061854376, 29.119617054307547 ], [ -95.709183062888258, 29.120441053976542 ], [ -95.709174062011314, 29.121161054271649 ], [ -95.709192062666148, 29.122029055081274 ], [ -95.709217062121297, 29.122710055160713 ], [ -95.709243062107333, 29.123280054863542 ], [ -95.709351062823714, 29.123811055363987 ], [ -95.709731062777593, 29.125161055221351 ], [ -95.710076062861262, 29.126188055422237 ], [ -95.710231062962407, 29.126663055710015 ], [ -95.71021006246761, 29.127068055727293 ], [ -95.71025306321468, 29.127362055663436 ], [ -95.710154062734219, 29.127689055956946 ], [ -95.7100970632588, 29.128005055544119 ], [ -95.70902806270216, 29.128899055957998 ], [ -95.708690062416935, 29.129404056065855 ], [ -95.70848106307119, 29.129862056071904 ], [ -95.708482062838087, 29.130503056495716 ], [ -95.708665062796612, 29.130801056196681 ], [ -95.708717062916477, 29.131030056712987 ], [ -95.709815062734918, 29.132770056694621 ], [ -95.710076063342996, 29.13334305682751 ], [ -95.710181062967052, 29.133712056604494 ], [ -95.710416063122381, 29.134533056760571 ], [ -95.710756063753138, 29.135152057206803 ], [ -95.711827063361596, 29.1364340572242 ], [ -95.71200706396408, 29.1369260573886 ], [ -95.712062063744071, 29.137075057850478 ], [ -95.712038064379982, 29.138655057896305 ], [ -95.712221063843046, 29.139320058521648 ], [ -95.71263906444247, 29.139892058316125 ], [ -95.713709064855919, 29.140716058127627 ], [ -95.714571064191318, 29.140898058154114 ], [ -95.715562065186589, 29.140829058690269 ], [ -95.717572064877203, 29.140125058167815 ], [ -95.717727065247615, 29.140071058290282 ], [ -95.718692065825635, 29.140208057892071 ], [ -95.71905806599888, 29.140574058490138 ], [ -95.719451066095218, 29.141674057951981 ], [ -95.720104066377203, 29.142727058824747 ], [ -95.720444066201495, 29.143185058852925 ], [ -95.721227066297132, 29.143848058341224 ], [ -95.72201006706922, 29.144374058974297 ], [ -95.722506066562261, 29.144534058671301 ], [ -95.723341066828382, 29.144534059134987 ], [ -95.723381067284294, 29.144528059131236 ], [ -95.72438506707006, 29.144395058823797 ], [ -95.725089067698022, 29.144212058608375 ], [ -95.725636067318533, 29.143822058311951 ], [ -95.726027067800885, 29.14343205842394 ], [ -95.72662606805811, 29.142149058628213 ], [ -95.726965067804485, 29.141782058591463 ], [ -95.727460068203072, 29.141415058303878 ], [ -95.728243068343005, 29.141117057939205 ], [ -95.728634068531207, 29.14109305756693 ], [ -95.729208068727857, 29.141253058211078 ], [ -95.729574068804553, 29.141597058338064 ], [ -95.729914068728078, 29.142444058463099 ], [ -95.729707068862496, 29.143612058569776 ], [ -95.729186068730485, 29.144689059028007 ], [ -95.729213068046832, 29.145239059194854 ], [ -95.729448068157552, 29.145674059167565 ], [ -95.729997068272354, 29.146246058539536 ], [ -95.730780069379151, 29.14674905874578 ], [ -95.731728069159203, 29.14717405876458 ], [ -95.73307706961667, 29.147778059162391 ], [ -95.733756070129743, 29.147869059404488 ], [ -95.734747069569096, 29.147800059421282 ], [ -95.737173070408488, 29.147133059314317 ], [ -95.737878070472348, 29.14717805899231 ], [ -95.738452070845625, 29.147567058810196 ], [ -95.738793070915762, 29.148781059310984 ], [ -95.739289071751031, 29.149170058992201 ], [ -95.739785071437126, 29.149398059149167 ], [ -95.741600071963944, 29.149904059136805 ], [ -95.742160072073631, 29.150060059737836 ], [ -95.743309072132348, 29.150586059051736 ], [ -95.743727072601061, 29.150906059445326 ], [ -95.743936072583992, 29.151296059921041 ], [ -95.744249072494583, 29.151502059795238 ], [ -95.744954072990637, 29.151455059368534 ], [ -95.745554073183243, 29.151202059938342 ], [ -95.745893073455846, 29.150881059791732 ], [ -95.746049073250163, 29.150423059729714 ], [ -95.746024072697551, 29.149025058930373 ], [ -95.74602007334309, 29.148751058894646 ], [ -95.746177073043469, 29.148499059369911 ], [ -95.746567072601863, 29.148109058533098 ], [ -95.747219073567337, 29.147765059001017 ], [ -95.749498074021389, 29.147590058687328 ], [ -95.750246073640838, 29.147533058587971 ], [ -95.751384074301455, 29.147279058823337 ], [ -95.751851074381193, 29.147311058719758 ], [ -95.752255074571337, 29.147340058415303 ], [ -95.752376074005767, 29.14734905865997 ], [ -95.752950074514615, 29.147464058432803 ], [ -95.754331075509995, 29.1483580584656 ], [ -95.755192075635492, 29.148794058805645 ], [ -95.755427074956003, 29.149069059157853 ], [ -95.755505075206813, 29.149390059138614 ], [ -95.755400075073538, 29.149802058935691 ], [ -95.755229074869291, 29.150005058719159 ], [ -95.755112075325187, 29.150145058703512 ], [ -95.754825075417628, 29.150374059060333 ], [ -95.754225075612368, 29.150648058973552 ], [ -95.752450074707184, 29.150945059248933 ], [ -95.751876074394005, 29.151265059678124 ], [ -95.751457074393429, 29.152112059228486 ], [ -95.751534074898018, 29.153326059338109 ], [ -95.751613074101584, 29.153395059812716 ], [ -95.751769075131534, 29.153991060040799 ], [ -95.751898074256758, 29.155022060405567 ], [ -95.752210074812595, 29.155365059872107 ], [ -95.753228075589973, 29.155847060101387 ], [ -95.753984074945478, 29.156008060578404 ], [ -95.754979075371423, 29.156093060408907 ], [ -95.75534107581548, 29.156124060566587 ], [ -95.755889075641164, 29.156353059791769 ], [ -95.757114075850197, 29.157179060141846 ], [ -95.757453076149616, 29.157294060346914 ], [ -95.758132075916109, 29.157226060575443 ], [ -95.758811076691998, 29.156951060084964 ], [ -95.7592290768509, 29.156608060477893 ], [ -95.759908076683686, 29.155395060272856 ], [ -95.760431076739721, 29.154364059723417 ], [ -95.760927076819428, 29.153998059833384 ], [ -95.762102077759053, 29.153403059344214 ], [ -95.762469077729349, 29.152167058817081 ], [ -95.762913077551161, 29.151480058593101 ], [ -95.763330076998372, 29.151411059039383 ], [ -95.764869078234625, 29.151871058793176 ], [ -95.765287077979579, 29.15207705891078 ], [ -95.765600077600865, 29.152329059504449 ], [ -95.765756077944445, 29.152856059597209 ], [ -95.765624078515657, 29.153727059712505 ], [ -95.765137078363551, 29.154778059775968 ], [ -95.764840078341024, 29.155421060081235 ], [ -95.764474078238138, 29.156016060026644 ], [ -95.763429077456749, 29.157046059922131 ], [ -95.763403077635289, 29.15752706010187 ], [ -95.76353307740726, 29.15775606022407 ], [ -95.765176078413859, 29.159338060760206 ], [ -95.76587907863464, 29.1604150610532 ], [ -95.765983078022003, 29.16073606102989 ], [ -95.765852078359345, 29.161400061235124 ], [ -95.765225078567468, 29.162545061614448 ], [ -95.765198078930297, 29.163140061109509 ], [ -95.765406078590289, 29.163782061839967 ], [ -95.765745078749461, 29.164561061264042 ], [ -95.766213079158476, 29.166096061938426 ], [ -95.767255078804027, 29.167952062055718 ], [ -95.767645079207526, 29.169418062903311 ], [ -95.768140079490522, 29.170381063122036 ], [ -95.768662079642823, 29.17104506243469 ], [ -95.768738080032051, 29.173244063609619 ], [ -95.769129080327019, 29.173978063085311 ], [ -95.769520079869636, 29.174275063636316 ], [ -95.76983308001401, 29.174367063241267 ], [ -95.770747080554401, 29.174345063899288 ], [ -95.771295080025837, 29.174529063624764 ], [ -95.772677080980117, 29.175446063387113 ], [ -95.772743081321039, 29.175515063206131 ], [ -95.772862081198284, 29.175856063845988 ], [ -95.772918081322743, 29.176206063554844 ], [ -95.772935081445638, 29.176435063566647 ], [ -95.772939080895569, 29.176719063738908 ], [ -95.772922081034196, 29.17701706396209 ], [ -95.77293108057745, 29.177259063669894 ], [ -95.772996080559906, 29.177531064411134 ], [ -95.773067080674195, 29.17778206435225 ], [ -95.77275308078849, 29.178355064169637 ], [ -95.772152080865581, 29.178698064510243 ], [ -95.771030080317573, 29.179178064771079 ], [ -95.770612080396674, 29.179499064880194 ], [ -95.770324080248542, 29.180048064530595 ], [ -95.770428080447942, 29.180919064629869 ], [ -95.771001080759675, 29.181835064618745 ], [ -95.771575080938049, 29.182294064985236 ], [ -95.772593081509626, 29.182867064853372 ], [ -95.773923081706641, 29.183463065306718 ], [ -95.775019081987182, 29.184220065438701 ], [ -95.776819081951274, 29.185046065369605 ], [ -95.777889082261552, 29.185688065659232 ], [ -95.778202082523421, 29.185986065350598 ], [ -95.778567082869543, 29.186765065520806 ], [ -95.778565083047624, 29.188345066156852 ], [ -95.778382083146383, 29.189101066472002 ], [ -95.77819908250143, 29.189215066144083 ], [ -95.777755082747902, 29.189810066053425 ], [ -95.777050082974768, 29.190451066196946 ], [ -95.776031082443268, 29.190909066269793 ], [ -95.774621081829324, 29.191297066837429 ], [ -95.774099082160731, 29.19154906725084 ], [ -95.772531081118814, 29.19340306727819 ], [ -95.772316081775188, 29.193668067007152 ], [ -95.772152081691047, 29.193937067618688 ], [ -95.771966081606919, 29.194265067366633 ], [ -95.771828081560372, 29.194593068000891 ], [ -95.771790081592798, 29.194796067866253 ], [ -95.771833081451803, 29.195145068000485 ], [ -95.771915081126906, 29.195512068020964 ], [ -95.772083081755071, 29.195935068013124 ], [ -95.772357081259941, 29.196212067749286 ], [ -95.77298108200057, 29.197356068434761 ], [ -95.773024082187632, 29.197435068288829 ], [ -95.773389082379211, 29.198672068504045 ], [ -95.773336082256449, 29.199130068243853 ], [ -95.773153082481286, 29.19954206833286 ], [ -95.77273508235325, 29.200000068723302 ], [ -95.772265082304315, 29.200275068538939 ], [ -95.771637081843011, 29.201099069041092 ], [ -95.771610082067724, 29.202588069447291 ], [ -95.771714081524124, 29.203504069316363 ], [ -95.771609081334702, 29.203756069664369 ], [ -95.771687081634084, 29.204443069494925 ], [ -95.771895081880544, 29.205107069645287 ], [ -95.77189408232924, 29.205357069704267 ], [ -95.771894082103984, 29.206161069977661 ], [ -95.771685082113862, 29.207054070514825 ], [ -95.771738081757832, 29.207540070027413 ], [ -95.771814081943205, 29.208245070806331 ], [ -95.771892082068746, 29.208268070101575 ], [ -95.7718920816707, 29.208429070856116 ], [ -95.772075082400633, 29.208704070662943 ], [ -95.773379082518801, 29.209712070419695 ], [ -95.773953082512932, 29.210400070343322 ], [ -95.774553082747346, 29.211362071085137 ], [ -95.774579082766238, 29.21154507079704 ], [ -95.775570083561462, 29.212966070995655 ], [ -95.775595082979862, 29.213562071797423 ], [ -95.77554308341206, 29.214043071517533 ], [ -95.775308083459393, 29.214432071771547 ], [ -95.774184082546398, 29.215485071732054 ], [ -95.773844083289461, 29.21610307160838 ], [ -95.77376508281867, 29.217111072127679 ], [ -95.773999082638909, 29.217707072646935 ], [ -95.774547083459893, 29.218096072594022 ], [ -95.77627008335368, 29.218762072867968 ], [ -95.777523084422967, 29.218762072648161 ], [ -95.778202083976851, 29.218923071962593 ], [ -95.778803084658819, 29.219175072010682 ], [ -95.779481084336524, 29.219657072505317 ], [ -95.780159084692755, 29.220321072949112 ], [ -95.780759084808011, 29.221146072546777 ], [ -95.781672085453749, 29.22279607294924 ], [ -95.782664085139302, 29.223667072985343 ], [ -95.782872085119394, 29.223988072849938 ], [ -95.783081086001985, 29.224583073698998 ], [ -95.783054085568438, 29.226072074011128 ], [ -95.783471085589085, 29.226874073979467 ], [ -95.784045085782196, 29.227561073736918 ], [ -95.784828086519354, 29.228226073651935 ], [ -95.785846086749174, 29.228799073937271 ], [ -95.78639408659501, 29.228960074152774 ], [ -95.786942086476898, 29.228960074065224 ], [ -95.787569087345332, 29.228754074168009 ], [ -95.788666087010554, 29.227862073890392 ], [ -95.789790087831548, 29.227358074155802 ], [ -95.790260087102794, 29.227381074027317 ], [ -95.791330087783436, 29.227588073810711 ], [ -95.792035088503511, 29.227863073633721 ], [ -95.792740088147312, 29.228528073909274 ], [ -95.793157088781655, 29.22921507410328 ], [ -95.79315708795221, 29.229490074097225 ], [ -95.793496088039788, 29.230155074222058 ], [ -95.793470088409464, 29.230269073862139 ], [ -95.794122088595714, 29.231598074861108 ], [ -95.794748088656718, 29.232331074783918 ], [ -95.796470088996301, 29.234828075444735 ], [ -95.796966089787915, 29.235401075447115 ], [ -95.797136089955117, 29.235651074869395 ], [ -95.797108089561533, 29.235954075714371 ], [ -95.797139089931136, 29.23616107493881 ], [ -95.797302089425017, 29.236541075554019 ], [ -95.797393090134008, 29.236778075593975 ], [ -95.797618090086715, 29.237028075902963 ], [ -95.798244089695032, 29.237578075723793 ], [ -95.799706090628789, 29.237968075775715 ], [ -95.800672091021056, 29.238518075388363 ], [ -95.801194091009322, 29.239022076177275 ], [ -95.801507090454379, 29.239549075489968 ], [ -95.801664090837903, 29.239984076192155 ], [ -95.80229009069852, 29.241130076255004 ], [ -95.802903090892883, 29.242232076759962 ], [ -95.802907091673816, 29.242245076271594 ], [ -95.803101091563434, 29.242586076087886 ], [ -95.803205091681718, 29.242905076952859 ], [ -95.803265091442412, 29.243233076500974 ], [ -95.803291091359142, 29.243449076166904 ], [ -95.803343091952456, 29.24359507674593 ], [ -95.803438091100901, 29.243789076539311 ], [ -95.803688091732766, 29.243928077069079 ], [ -95.803982091918584, 29.24407007716415 ], [ -95.804189091760534, 29.244126076876849 ], [ -95.804326091627146, 29.244246076961879 ], [ -95.806023092717794, 29.245323076811502 ], [ -95.806754092182075, 29.24566607673685 ], [ -95.808320092580416, 29.245919076786517 ], [ -95.808790093376331, 29.246171076628301 ], [ -95.809913093643942, 29.247042076947697 ], [ -95.812002093510145, 29.247661076819522 ], [ -95.813569094686997, 29.24779907708195 ], [ -95.816416095417352, 29.248235077130051 ], [ -95.819732096280291, 29.248533076751364 ], [ -95.819890095902565, 29.248626076980212 ], [ -95.821351096440466, 29.249039077420036 ], [ -95.82263009629618, 29.249269077404769 ], [ -95.824065096756968, 29.249889077127847 ], [ -95.825057097395145, 29.249959077060943 ], [ -95.829312098041981, 29.249619076838275 ], [ -95.831557099391986, 29.249300077064653 ], [ -95.832444099689894, 29.249301076779624 ], [ -95.833540099653789, 29.249508076700902 ], [ -95.834062099272614, 29.24973807726828 ], [ -95.834610100256597, 29.250265077239106 ], [ -95.83523510022313, 29.25095007722684 ], [ -95.835679100120927, 29.251225077387382 ], [ -95.837168100479346, 29.251020077474724 ], [ -95.837872100897187, 29.251182077452331 ], [ -95.838680100438168, 29.251641077552506 ], [ -95.839933101453425, 29.252558076916447 ], [ -95.841315101282888, 29.254232077645351 ], [ -95.841941101829491, 29.255241078039933 ], [ -95.84233110211548, 29.256661077740908 ], [ -95.842409102224948, 29.257371077865344 ], [ -95.842200101926167, 29.258219078373603 ], [ -95.841955102495263, 29.258712078201363 ], [ -95.841983102398842, 29.258686078808783 ], [ -95.842622102608232, 29.258093078287676 ], [ -95.842641102119813, 29.258075077969448 ], [ -95.843293102525351, 29.257470078150963 ], [ -95.846805103494376, 29.254254077719146 ], [ -95.846889103118286, 29.254177077639021 ], [ -95.846901102621416, 29.254166077355073 ], [ -95.846909102654251, 29.254159077821811 ], [ -95.84693010361346, 29.254140077173464 ], [ -95.847027102870882, 29.254051077668922 ], [ -95.847964102892917, 29.253191077572872 ], [ -95.848129103459129, 29.253039077565212 ], [ -95.848141103724629, 29.253028077192457 ], [ -95.848164102840798, 29.253007077281087 ], [ -95.848225103370808, 29.25295107720962 ], [ -95.851068103974171, 29.250339076622364 ], [ -95.851910104393724, 29.24963207587723 ], [ -95.852209103725656, 29.249381076448024 ], [ -95.852231104176568, 29.24936207603157 ], [ -95.855200105024082, 29.246750075520914 ], [ -95.857697105920096, 29.244553075094295 ], [ -95.85772910544263, 29.244526075500879 ], [ -95.857775105329495, 29.244485075390237 ], [ -95.858008105416658, 29.244280074920596 ], [ -95.858143105061231, 29.244161074522658 ], [ -95.859915105808938, 29.242602074499217 ], [ -95.859959105469613, 29.242562074531417 ], [ -95.860072106409547, 29.242459074432528 ], [ -95.869805107750551, 29.233640072213902 ], [ -95.869842108203201, 29.233607072712704 ], [ -95.870525108303994, 29.232996072220317 ], [ -95.871415107889902, 29.232200072465318 ], [ -95.872133108759812, 29.231558071651069 ], [ -95.872238108825243, 29.231464071940049 ], [ -95.872250109040493, 29.231453072195901 ], [ -95.872259108906192, 29.231446072098517 ], [ -95.872289108099125, 29.231419071865297 ], [ -95.87386410911283, 29.230009071532777 ], [ -95.873870108596549, 29.230001071237215 ], [ -95.873878109086903, 29.229989071291453 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 727, "Tract": "48039663000", "Area_SqMi": 23.942892548931209, "total_2009": 278, "total_2010": 295, "total_2011": 316, "total_2012": 236, "total_2013": 220, "total_2014": 258, "total_2015": 258, "total_2016": 235, "total_2017": 344, "total_2018": 361, "total_2019": 439, "total_2020": 371, "age1": 90, "age2": 160, "age3": 111, "earn1": 79, "earn2": 128, "earn3": 154, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 110, "naics_s05": 0, "naics_s06": 15, "naics_s07": 92, "naics_s08": 3, "naics_s09": 0, "naics_s10": 8, "naics_s11": 10, "naics_s12": 6, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 15, "naics_s17": 1, "naics_s18": 0, "naics_s19": 24, "naics_s20": 75, "race1": 323, "race2": 26, "race3": 2, "race4": 4, "race5": 0, "race6": 6, "ethnicity1": 256, "ethnicity2": 105, "edu1": 59, "edu2": 78, "edu3": 95, "edu4": 39, "Shape_Length": 140888.19159147964, "Shape_Area": 667486865.59405768, "total_2021": 352, "total_2022": 361 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.589597027189697, 29.005387034858472 ], [ -95.589747027164805, 29.004123034377319 ], [ -95.589036027174842, 29.002729034220827 ], [ -95.588905026679555, 29.002580033666018 ], [ -95.587038026686855, 29.00044503375938 ], [ -95.586985025867122, 29.000270033780996 ], [ -95.586615025945051, 28.999052033467571 ], [ -95.585903025674327, 28.997785033207247 ], [ -95.585912025378363, 28.9960150327686 ], [ -95.587224025493555, 28.991973031700251 ], [ -95.587231025770208, 28.990456031133068 ], [ -95.586377025305936, 28.989061030854771 ], [ -95.584663025164517, 28.987411030450179 ], [ -95.583803024758922, 28.987154031249894 ], [ -95.578781023138703, 28.987135030871656 ], [ -95.576775022810807, 28.986621030597256 ], [ -95.574198022434388, 28.985473030473134 ], [ -95.57004102095415, 28.984571031032448 ], [ -95.568609020843326, 28.983933030347639 ], [ -95.567467020687062, 28.982917030253944 ], [ -95.567041020281437, 28.982030030682889 ], [ -95.567048020661858, 28.980639030073714 ], [ -95.566481020032924, 28.979372029916039 ], [ -95.565416019350735, 28.978425029221661 ], [ -95.565195019316619, 28.978229029435809 ], [ -95.563762019706061, 28.977462029790164 ], [ -95.563727019247992, 28.977431029880037 ], [ -95.562193019357579, 28.97606702904195 ], [ -95.562052019145383, 28.975687029426968 ], [ -95.562062018287278, 28.973663028991282 ], [ -95.562355019267471, 28.972526028821694 ], [ -95.562790019350658, 28.971769028716402 ], [ -95.565529019428766, 28.969251027436755 ], [ -95.565819020020967, 28.968620027952362 ], [ -95.565683019355248, 28.967228027040324 ], [ -95.562681019046011, 28.965192027075222 ], [ -95.561393018148735, 28.964555027084455 ], [ -95.557090016961993, 28.964411026821239 ], [ -95.556661017410974, 28.964156026614614 ], [ -95.556087017339564, 28.964154027066513 ], [ -95.555371016741518, 28.963898026820733 ], [ -95.553227016338269, 28.962498026440258 ], [ -95.5510800156692, 28.96160402676918 ], [ -95.549925014936761, 28.960576026094756 ], [ -95.549509015170827, 28.960206026169416 ], [ -95.549517014676752, 28.958688026223751 ], [ -95.549806014981527, 28.958310026141554 ], [ -95.551102015399735, 28.957430025767213 ], [ -95.555120016773643, 28.957067025774794 ], [ -95.55670101674697, 28.956568025657138 ], [ -95.557710017212727, 28.955687024775017 ], [ -95.55814401694856, 28.954930025289265 ], [ -95.558151016720515, 28.953539024258273 ], [ -95.557440016921248, 28.952398024700592 ], [ -95.555585016459531, 28.95061902442286 ], [ -95.555162016167259, 28.950081024088448 ], [ -95.554871015544606, 28.95035302414092 ], [ -95.55474701634644, 28.950468023841424 ], [ -95.55359001605872, 28.951513024240377 ], [ -95.552630015341364, 28.95238202503392 ], [ -95.550740014856373, 28.954087024857269 ], [ -95.549689014805537, 28.955034025123283 ], [ -95.548316014625016, 28.95628002527517 ], [ -95.544970013330285, 28.959316026498559 ], [ -95.543986013735505, 28.960207026054984 ], [ -95.543419013422792, 28.96069802661972 ], [ -95.542932013264959, 28.961163026460596 ], [ -95.542564013760256, 28.961504026384564 ], [ -95.542065012724535, 28.961966027282415 ], [ -95.541165013035368, 28.96281102724663 ], [ -95.541070012900875, 28.962890026972747 ], [ -95.535586011832081, 28.967950028777146 ], [ -95.533946011910402, 28.96945202899861 ], [ -95.532206011086842, 28.971041028844081 ], [ -95.530872010449244, 28.972288028997344 ], [ -95.530368011156881, 28.972748029177517 ], [ -95.52981401068979, 28.97325302961098 ], [ -95.529190010469861, 28.97382903023302 ], [ -95.52709001004942, 28.975742030266456 ], [ -95.52622000940103, 28.976537030431558 ], [ -95.525395009341722, 28.97728703039779 ], [ -95.524784009494795, 28.977845030991002 ], [ -95.524717009519676, 28.977907030655601 ], [ -95.524640009600631, 28.977978031060619 ], [ -95.524105009780087, 28.978470031358484 ], [ -95.520748008905713, 28.981556032021249 ], [ -95.520232008906078, 28.982042032183472 ], [ -95.519174007704493, 28.982977032400967 ], [ -95.518865008635743, 28.983333031824863 ], [ -95.518785008546331, 28.983395032277031 ], [ -95.518188008431409, 28.983857032613763 ], [ -95.517530007974742, 28.984445032221778 ], [ -95.517205007361099, 28.984665032001516 ], [ -95.515808007108674, 28.985523032337255 ], [ -95.512084006839032, 28.987989033479398 ], [ -95.511685006650325, 28.988253033620584 ], [ -95.510827006191533, 28.988810033054573 ], [ -95.508522005833186, 28.990317033687841 ], [ -95.507415005641292, 28.991025034081179 ], [ -95.506331005039911, 28.991636033884959 ], [ -95.505751004716501, 28.991936034157018 ], [ -95.505219004549545, 28.992171034497542 ], [ -95.504634004926643, 28.992408034038469 ], [ -95.504453004751667, 28.99248103454811 ], [ -95.500282004071948, 28.994172035290898 ], [ -95.50000700427789, 28.99428303533622 ], [ -95.498528002996977, 28.99487403490232 ], [ -95.497325003479318, 28.995378034995333 ], [ -95.496765002634461, 28.995613034999646 ], [ -95.496491002921132, 28.995767035114934 ], [ -95.496223002956896, 28.995927035356544 ], [ -95.495947002733161, 28.996099035771454 ], [ -95.495719002677944, 28.996252035566595 ], [ -95.495497003062383, 28.996423035958891 ], [ -95.494992003056879, 28.9968340356174 ], [ -95.49480900214067, 28.996982036085672 ], [ -95.494772002748377, 28.99701703544622 ], [ -95.494464002141925, 28.997309036053061 ], [ -95.494249002271303, 28.997540036086079 ], [ -95.494151002392002, 28.997646036274539 ], [ -95.494095002715156, 28.997709036184261 ], [ -95.493876002221754, 28.997960036232154 ], [ -95.493593002145147, 28.998378036377883 ], [ -95.493046002682362, 28.999168036322921 ], [ -95.491819001839005, 29.000941036834394 ], [ -95.490045001949397, 29.003534037535157 ], [ -95.486686000735503, 29.008420038156157 ], [ -95.48629200037314, 29.009104038630124 ], [ -95.48532100029945, 29.010959038581969 ], [ -95.484480001031841, 29.012546038966011 ], [ -95.483622000342962, 29.014126039270977 ], [ -95.4830529997936, 29.015173040134954 ], [ -95.482582000083383, 29.016074040215727 ], [ -95.481963000593183, 29.017243040503775 ], [ -95.479600999325129, 29.021702041220365 ], [ -95.478478999330449, 29.023764041863625 ], [ -95.477115999102111, 29.026356042017692 ], [ -95.476721999681942, 29.027106042542432 ], [ -95.477248999355851, 29.02785004265694 ], [ -95.477346999640972, 29.027989042793436 ], [ -95.477890999980659, 29.029288042779761 ], [ -95.477906999161419, 29.029377042609926 ], [ -95.477920999285217, 29.029453043141967 ], [ -95.477783999500403, 29.029715043438927 ], [ -95.47798899939076, 29.030542043142393 ], [ -95.478193999910573, 29.031376043261673 ], [ -95.478963999989006, 29.032065043325471 ], [ -95.479387999750287, 29.032056043262941 ], [ -95.479659000414671, 29.032244043213929 ], [ -95.480701000917392, 29.032709043716149 ], [ -95.481659000754135, 29.032714043645218 ], [ -95.482622000864708, 29.032028043594462 ], [ -95.483328001236501, 29.0304970428895 ], [ -95.484180000652273, 29.028956043058692 ], [ -95.486218002169991, 29.028402042197023 ], [ -95.486946002271424, 29.028204042636332 ], [ -95.488160001818741, 29.028280042009847 ], [ -95.489183002872238, 29.028761042833636 ], [ -95.489227002463153, 29.028836042634939 ], [ -95.489288002553792, 29.028877042156434 ], [ -95.49004500239495, 29.030120042657032 ], [ -95.491055003487361, 29.033087043625397 ], [ -95.49192300373474, 29.034325043265564 ], [ -95.492958003581379, 29.034924044021515 ], [ -95.494444004054827, 29.035005043293367 ], [ -95.495816003965842, 29.034401043354119 ], [ -95.496566004707987, 29.032869042899698 ], [ -95.496632004597913, 29.031830042997292 ], [ -95.496676003984234, 29.031680042932578 ], [ -95.496747004735482, 29.030540042535005 ], [ -95.496941004044572, 29.027539041987904 ], [ -95.497455004129435, 29.027343041479778 ], [ -95.498246004972884, 29.026196041980896 ], [ -95.499294004537319, 29.025664041286479 ], [ -95.500341005575109, 29.025362041648034 ], [ -95.500825005098278, 29.025441041125408 ], [ -95.50221100568632, 29.026928041983744 ], [ -95.502519005872614, 29.027728042069704 ], [ -95.50257300571792, 29.027956042132086 ], [ -95.502952006077152, 29.028940042138604 ], [ -95.503340006550474, 29.030650041968215 ], [ -95.503447006277653, 29.031178042263395 ], [ -95.503420006572767, 29.031647042230112 ], [ -95.503444006019137, 29.031761042582243 ], [ -95.503348005799694, 29.033444042771482 ], [ -95.504072006379445, 29.035460043262045 ], [ -95.504396006815583, 29.035755043235259 ], [ -95.504403006301587, 29.035797043229334 ], [ -95.504602006724099, 29.035980043241079 ], [ -95.50538200650881, 29.036680043547335 ], [ -95.505427007148739, 29.036683043732054 ], [ -95.505683006918701, 29.036700043872703 ], [ -95.507588007571371, 29.03682404310381 ], [ -95.510114007840997, 29.036835043431783 ], [ -95.511766008607751, 29.037303043643576 ], [ -95.513200008664185, 29.036539043574855 ], [ -95.51333800916089, 29.036466043602843 ], [ -95.513746008916172, 29.035712043480508 ], [ -95.514043009442688, 29.035165043281438 ], [ -95.514100008758348, 29.03494004300557 ], [ -95.51415200878165, 29.03473804271146 ], [ -95.514399009185709, 29.033786042883321 ], [ -95.514444008782178, 29.033333042645047 ], [ -95.514491009282338, 29.032866042709472 ], [ -95.51450100897722, 29.031179041896582 ], [ -95.514853009451613, 29.030490041596966 ], [ -95.516164009173735, 29.029729041427519 ], [ -95.517300009818797, 29.029044041638098 ], [ -95.518607009947573, 29.028973041443383 ], [ -95.519739010105638, 29.029055041121897 ], [ -95.521563010841462, 29.029907041882499 ], [ -95.523294011168687, 29.031678041674432 ], [ -95.523894011508602, 29.03336904265834 ], [ -95.524669011685233, 29.035059042891884 ], [ -95.525709012222663, 29.035908043024968 ], [ -95.527361012117964, 29.036375042934687 ], [ -95.529364012882041, 29.036307042682385 ], [ -95.530760013507305, 29.035930042926719 ], [ -95.533286014463059, 29.035864042655035 ], [ -95.534680013998269, 29.035870042659894 ], [ -95.536590015249658, 29.036952042865796 ], [ -95.537370015135537, 29.037569042506956 ], [ -95.537363015010371, 29.038873043093009 ], [ -95.537533015030405, 29.039717043482764 ], [ -95.536043014733977, 29.041398043300092 ], [ -95.534989014382745, 29.042928043752944 ], [ -95.533764014009378, 29.043919044105198 ], [ -95.533322014879758, 29.045068044634352 ], [ -95.533142013973759, 29.046141044628076 ], [ -95.533225014533599, 29.046755044593787 ], [ -95.533395014516941, 29.047523045259016 ], [ -95.534000014908571, 29.048522044740292 ], [ -95.534864014758568, 29.049677045077068 ], [ -95.535125014557138, 29.049831045081454 ], [ -95.536166015685936, 29.0505260451331 ], [ -95.537644016115664, 29.050992045880275 ], [ -95.538603016130224, 29.050843045859693 ], [ -95.540262016672386, 29.050160045360322 ], [ -95.541573017012198, 29.04947504468824 ], [ -95.542622017353793, 29.048789044680206 ], [ -95.543845017675324, 29.048028044515025 ], [ -95.545067017927707, 29.047649044408079 ], [ -95.546141017894385, 29.047856044265085 ], [ -95.546285017891222, 29.047884045001716 ], [ -95.547586018187062, 29.048964044581769 ], [ -95.549059018596637, 29.050427045364057 ], [ -95.550274018913825, 29.051276045306523 ], [ -95.55275602004393, 29.052345045337596 ], [ -95.552968019486187, 29.052437045584483 ], [ -95.556010020153522, 29.053754045240936 ], [ -95.556347020620507, 29.053913045178991 ], [ -95.556945020675954, 29.054193045109255 ], [ -95.557094020442705, 29.054264045708855 ], [ -95.557296020973268, 29.053906045120563 ], [ -95.557501020883649, 29.054069045430445 ], [ -95.557654021148693, 29.053817045614259 ], [ -95.557899020830732, 29.053368045364547 ], [ -95.558084021170643, 29.053029045150694 ], [ -95.558159021456035, 29.052894045188779 ], [ -95.558295021257749, 29.052657045290854 ], [ -95.558448020661203, 29.05239004482122 ], [ -95.558546020653225, 29.05221904547718 ], [ -95.558881020903925, 29.051857044899332 ], [ -95.559412021073939, 29.051242045004688 ], [ -95.55951102170161, 29.051157045288019 ], [ -95.559767021294931, 29.05093804456714 ], [ -95.560148021165062, 29.050635044880938 ], [ -95.560532021746354, 29.050366044585509 ], [ -95.560865021832257, 29.050182044254797 ], [ -95.561607022110522, 29.049820044883681 ], [ -95.561671021531097, 29.049798044429519 ], [ -95.561911022167791, 29.049715044448796 ], [ -95.56205702229758, 29.049665044787112 ], [ -95.562352021578889, 29.049592044641333 ], [ -95.562502022429598, 29.049555044286961 ], [ -95.562762022535722, 29.04946604447105 ], [ -95.562994022165284, 29.049412044668482 ], [ -95.563209022107372, 29.049374044113293 ], [ -95.563379022671739, 29.049344044591262 ], [ -95.563914022691293, 29.049262043952933 ], [ -95.564930022899418, 29.049195044401362 ], [ -95.565076023001993, 29.049185044202172 ], [ -95.567181023282188, 29.049062044164462 ], [ -95.567582023386862, 29.049032044444889 ], [ -95.568594023791377, 29.048959044308866 ], [ -95.569605023426732, 29.048885043889452 ], [ -95.570423024458691, 29.04882404371682 ], [ -95.570279023854496, 29.047548043402141 ], [ -95.570188023879723, 29.046711043473447 ], [ -95.570096023394143, 29.045919043076474 ], [ -95.570047023876228, 29.045495043162745 ], [ -95.57002302404203, 29.045286043664085 ], [ -95.569933023634803, 29.044471043365476 ], [ -95.569845023755434, 29.043668043041944 ], [ -95.569753024012101, 29.042831042840682 ], [ -95.569664023818547, 29.042023042410321 ], [ -95.569572023241591, 29.041271042098444 ], [ -95.569482023654501, 29.040484042029259 ], [ -95.569467023595266, 29.040351042340472 ], [ -95.569370023308849, 29.039710042564185 ], [ -95.56931702368702, 29.039359042046708 ], [ -95.569230023698765, 29.038939041969222 ], [ -95.569142022957635, 29.038503042179514 ], [ -95.568909022814893, 29.037716041339809 ], [ -95.568635023215876, 29.036932041193513 ], [ -95.568596022806716, 29.035563041361048 ], [ -95.568577023090725, 29.034870041093697 ], [ -95.568556023214313, 29.033916041247316 ], [ -95.568546022931216, 29.033458040878667 ], [ -95.568524022795529, 29.032452040388684 ], [ -95.568499022676633, 29.031368040491504 ], [ -95.568498022368473, 29.031315040616672 ], [ -95.568491022921933, 29.031019040467395 ], [ -95.568489022463325, 29.030903040262451 ], [ -95.56847302299478, 29.030217040189996 ], [ -95.568472022331633, 29.030153040521114 ], [ -95.568456023093333, 29.029467040417394 ], [ -95.568451022846148, 29.029239040385207 ], [ -95.568444022524275, 29.028914039924612 ], [ -95.568397022708652, 29.027020039919584 ], [ -95.56835602251634, 29.025411039628931 ], [ -95.568393022550595, 29.025209039298851 ], [ -95.56843002249235, 29.025003038954118 ], [ -95.568557022287209, 29.024487038589175 ], [ -95.569069023037571, 29.023584038472219 ], [ -95.569922022512813, 29.022079038312825 ], [ -95.570108022634429, 29.021721038398073 ], [ -95.570401022444145, 29.021125038585836 ], [ -95.570864022807569, 29.020074038031503 ], [ -95.571069022982797, 29.01954903758584 ], [ -95.571664022894439, 29.01803403729026 ], [ -95.57190002309558, 29.017402037780279 ], [ -95.572254022651919, 29.016671037664409 ], [ -95.572459023126314, 29.016300037655061 ], [ -95.57253902359615, 29.016219037023177 ], [ -95.572718023740649, 29.016038037010567 ], [ -95.572781023348611, 29.015962037143257 ], [ -95.57307402353625, 29.015659036895357 ], [ -95.57374902307788, 29.014963036453452 ], [ -95.574762023247345, 29.013985036333921 ], [ -95.575421023450545, 29.013544036292153 ], [ -95.575931024352997, 29.013274036531172 ], [ -95.576566023683228, 29.013005035981891 ], [ -95.576890024350689, 29.012904036126404 ], [ -95.577190023952028, 29.012810036004719 ], [ -95.577853024493834, 29.012685035857174 ], [ -95.579924025435318, 29.012357036023531 ], [ -95.581987024975788, 29.012030036310879 ], [ -95.583262025449685, 29.011802036203338 ], [ -95.583683025581266, 29.011727035983981 ], [ -95.584099026233957, 29.011681036202042 ], [ -95.584351026382109, 29.011653036225244 ], [ -95.585005026534574, 29.011537036222286 ], [ -95.587548027015515, 29.011075035849274 ], [ -95.587867026677316, 29.011018035601996 ], [ -95.588076026682131, 29.010980035450565 ], [ -95.588123026549439, 29.010973035297397 ], [ -95.588037027382811, 29.010704035254502 ], [ -95.587986026405787, 29.009509035478459 ], [ -95.587987027077276, 29.008943035425006 ], [ -95.588019026813271, 29.008688034975389 ], [ -95.588414026855332, 29.007627034803203 ], [ -95.58887202731583, 29.007028035172741 ], [ -95.589597027189697, 29.005387034858472 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 728, "Tract": "48039663200", "Area_SqMi": 1.6910146444083023, "total_2009": 1125, "total_2010": 1020, "total_2011": 1091, "total_2012": 1119, "total_2013": 1156, "total_2014": 1216, "total_2015": 1120, "total_2016": 1048, "total_2017": 1037, "total_2018": 957, "total_2019": 1090, "total_2020": 1320, "age1": 409, "age2": 471, "age3": 199, "earn1": 173, "earn2": 424, "earn3": 482, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 35, "naics_s05": 0, "naics_s06": 5, "naics_s07": 245, "naics_s08": 1, "naics_s09": 0, "naics_s10": 175, "naics_s11": 26, "naics_s12": 8, "naics_s13": 314, "naics_s14": 0, "naics_s15": 0, "naics_s16": 34, "naics_s17": 34, "naics_s18": 171, "naics_s19": 24, "naics_s20": 0, "race1": 887, "race2": 114, "race3": 7, "race4": 52, "race5": 1, "race6": 18, "ethnicity1": 706, "ethnicity2": 373, "edu1": 143, "edu2": 208, "edu3": 211, "edu4": 108, "Shape_Length": 32922.958116764821, "Shape_Area": 47142594.085614495, "total_2021": 1046, "total_2022": 1079 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.471219998992325, 29.047658047325676 ], [ -95.471003998436956, 29.047626046519959 ], [ -95.470708998191327, 29.047600046655702 ], [ -95.470535998280226, 29.047596047106893 ], [ -95.470413998212123, 29.04758504708715 ], [ -95.470168998645008, 29.047574047322467 ], [ -95.469922997791514, 29.047578046863141 ], [ -95.469676998661157, 29.047596046792247 ], [ -95.46943399793372, 29.047628047187761 ], [ -95.469193998180444, 29.047675046581798 ], [ -95.468953998062574, 29.047731046891297 ], [ -95.468572997550226, 29.047822047025246 ], [ -95.46845499812089, 29.04785404662136 ], [ -95.467979997912735, 29.048018047328206 ], [ -95.467547997922352, 29.048172047128389 ], [ -95.466928997385807, 29.048369047012308 ], [ -95.466791997631177, 29.048395047373734 ], [ -95.466512997096601, 29.04841704725974 ], [ -95.465811997163939, 29.048517047215711 ], [ -95.465295997309411, 29.048555047147499 ], [ -95.4647249971202, 29.048585047779987 ], [ -95.464279997371619, 29.048593047701743 ], [ -95.463971996327288, 29.048579047063924 ], [ -95.463724996433925, 29.048574047025401 ], [ -95.463590996608943, 29.048568047182695 ], [ -95.463012996969994, 29.048532047252493 ], [ -95.462391995950583, 29.048464047139657 ], [ -95.461814996137647, 29.048389046985694 ], [ -95.461139995737128, 29.048294047108637 ], [ -95.460601995678857, 29.04820304755555 ], [ -95.459120995183298, 29.047890047078809 ], [ -95.457116995193488, 29.047467047695729 ], [ -95.455690994906888, 29.047177047076325 ], [ -95.455171994125806, 29.047088047126302 ], [ -95.454840994715184, 29.047023047677229 ], [ -95.454413994561932, 29.046932047284535 ], [ -95.454296993837488, 29.046907047436328 ], [ -95.453989994012147, 29.046804047420196 ], [ -95.453781994400615, 29.046727046926346 ], [ -95.453633994271527, 29.046683047753273 ], [ -95.453180993771184, 29.046502046886424 ], [ -95.45017399271272, 29.045383046992836 ], [ -95.449537993405556, 29.045146047414995 ], [ -95.448121992602708, 29.044649047150209 ], [ -95.44752099197585, 29.044421047181505 ], [ -95.446662992321549, 29.044072046938151 ], [ -95.445018991799913, 29.043440047277745 ], [ -95.443353991701059, 29.042830046997899 ], [ -95.441452990784114, 29.042140047101292 ], [ -95.440994990991612, 29.041954046434398 ], [ -95.440548990503856, 29.041793046638027 ], [ -95.4393829901815, 29.041333046884503 ], [ -95.43821998970958, 29.04089004640722 ], [ -95.437729990023328, 29.040718046861073 ], [ -95.437377989713212, 29.040599047002651 ], [ -95.437098990097738, 29.040512046882636 ], [ -95.436911989318631, 29.040469046119636 ], [ -95.436874989959932, 29.040554046816368 ], [ -95.436932990071796, 29.040568046526356 ], [ -95.436796989950949, 29.040891046614284 ], [ -95.436786989742103, 29.040997046405138 ], [ -95.436797989479686, 29.041099046973414 ], [ -95.436800989553461, 29.04121704687935 ], [ -95.436776989477792, 29.041307046729933 ], [ -95.436750989650733, 29.041403046934054 ], [ -95.436727989090386, 29.041464047069276 ], [ -95.436677989778602, 29.041599046530873 ], [ -95.43656998928968, 29.041891047132292 ], [ -95.436510989109124, 29.042084047093873 ], [ -95.436386989825962, 29.042492047247979 ], [ -95.436359989176282, 29.042666047125707 ], [ -95.436337989766258, 29.042867047129434 ], [ -95.436339989963344, 29.043151047057613 ], [ -95.436379989113078, 29.044131047253778 ], [ -95.436387989762565, 29.044621047315594 ], [ -95.436483989960053, 29.04506904718188 ], [ -95.43653198946518, 29.045365047209447 ], [ -95.436548989617307, 29.046087047720793 ], [ -95.436592989879458, 29.047086047731359 ], [ -95.436609989828867, 29.048081048405447 ], [ -95.436619990311812, 29.049280047963517 ], [ -95.436618990038198, 29.049399048365323 ], [ -95.436626989937849, 29.049511048760905 ], [ -95.43664299023294, 29.049611048161523 ], [ -95.436668990320214, 29.04970804827359 ], [ -95.436707989610326, 29.049808048818701 ], [ -95.437168989841538, 29.050574048220241 ], [ -95.43752199030537, 29.051314048987091 ], [ -95.437868990672968, 29.052066049098944 ], [ -95.437890989816779, 29.052243049129686 ], [ -95.437927990803772, 29.052757049417611 ], [ -95.437950990261271, 29.053246049349845 ], [ -95.437971990462344, 29.054021049720209 ], [ -95.437928990055298, 29.055102049728347 ], [ -95.437867990804193, 29.055759049714638 ], [ -95.43785799052263, 29.055958050026209 ], [ -95.437868990132927, 29.056049049302587 ], [ -95.43789799003342, 29.056150050052967 ], [ -95.437980990625661, 29.056327049906347 ], [ -95.438076990513252, 29.056503049852854 ], [ -95.438217990456863, 29.056811049733515 ], [ -95.438252990624491, 29.056945049791633 ], [ -95.438275991022934, 29.057381050270529 ], [ -95.438288990326598, 29.058045050359159 ], [ -95.438295990285255, 29.058123050201754 ], [ -95.440318990711688, 29.058075050059472 ], [ -95.440713991483619, 29.058431049901671 ], [ -95.440972991496039, 29.05842504996949 ], [ -95.440993991374413, 29.059566050053903 ], [ -95.441024991405357, 29.059880050803308 ], [ -95.441024990903799, 29.059971050706043 ], [ -95.440748991827476, 29.062474051004987 ], [ -95.440735991774488, 29.062564051406589 ], [ -95.440726991068246, 29.062691050925068 ], [ -95.440764991228178, 29.062899050979468 ], [ -95.440757991632822, 29.063208051466795 ], [ -95.440775991925932, 29.063504051037381 ], [ -95.440880991617092, 29.063496051550118 ], [ -95.442264992293801, 29.06345105125143 ], [ -95.443377991783109, 29.063365051414017 ], [ -95.44514399268904, 29.063263050821963 ], [ -95.446155992754328, 29.063235051039804 ], [ -95.447443993394373, 29.063184050586067 ], [ -95.448088993044053, 29.063041050539052 ], [ -95.448213993718468, 29.063543051051738 ], [ -95.448894993861941, 29.063359050507728 ], [ -95.449410993576706, 29.063200050548282 ], [ -95.449828993662777, 29.063046050728328 ], [ -95.45004899387699, 29.062983050345554 ], [ -95.450689993747076, 29.062567050370333 ], [ -95.451094994592765, 29.062379050620986 ], [ -95.451424993998458, 29.062187050942384 ], [ -95.451528994436146, 29.062126050843528 ], [ -95.45192199464833, 29.061854050356217 ], [ -95.452178994723241, 29.061681050025541 ], [ -95.452198994328214, 29.061664050809629 ], [ -95.452409994510816, 29.061496050847641 ], [ -95.453106994473345, 29.060904049871056 ], [ -95.453736994878597, 29.060398050232262 ], [ -95.453963994285189, 29.060216050072139 ], [ -95.45430299493141, 29.059942049584876 ], [ -95.454923994720403, 29.059445049902241 ], [ -95.45580299514863, 29.058706049639294 ], [ -95.456175995314211, 29.058405049624294 ], [ -95.456431995536704, 29.05819104959523 ], [ -95.457119994991842, 29.057419049500176 ], [ -95.457715995948718, 29.056711048844161 ], [ -95.457912995107975, 29.056452049318523 ], [ -95.458034995790911, 29.056339049073561 ], [ -95.458357995970488, 29.056034049225907 ], [ -95.458579995230735, 29.05585204936045 ], [ -95.458908995294792, 29.05559104933398 ], [ -95.459483996410768, 29.05512104897775 ], [ -95.459663995996692, 29.054999049077921 ], [ -95.459958996259687, 29.054821048510053 ], [ -95.460516995846845, 29.054543048978772 ], [ -95.461006996565175, 29.054286048546466 ], [ -95.461200996085651, 29.054197048166515 ], [ -95.461571996125414, 29.054012048662205 ], [ -95.461626996467899, 29.053986048561367 ], [ -95.462063996051555, 29.053778048358591 ], [ -95.462098996840311, 29.053759048881453 ], [ -95.462240996739951, 29.053682048653126 ], [ -95.463413996973287, 29.053043047870137 ], [ -95.464663997159064, 29.052404048203559 ], [ -95.464698997508378, 29.052386048305966 ], [ -95.464756997165068, 29.052356048001549 ], [ -95.467729998009233, 29.05080804760728 ], [ -95.468343997888709, 29.050481047194424 ], [ -95.469149997961765, 29.050013047617711 ], [ -95.469864998352037, 29.049422047409163 ], [ -95.47047699828039, 29.048797047161081 ], [ -95.470866998128187, 29.048269047301247 ], [ -95.471219998992325, 29.047658047325676 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 729, "Tract": "48321730303", "Area_SqMi": 60.276054215611587, "total_2009": 113, "total_2010": 237, "total_2011": 278, "total_2012": 143, "total_2013": 150, "total_2014": 161, "total_2015": 453, "total_2016": 332, "total_2017": 456, "total_2018": 414, "total_2019": 299, "total_2020": 543, "age1": 112, "age2": 257, "age3": 90, "earn1": 54, "earn2": 105, "earn3": 300, "naics_s01": 56, "naics_s02": 0, "naics_s03": 12, "naics_s04": 32, "naics_s05": 113, "naics_s06": 6, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 10, "naics_s13": 0, "naics_s14": 179, "naics_s15": 0, "naics_s16": 20, "naics_s17": 0, "naics_s18": 7, "naics_s19": 10, "naics_s20": 5, "race1": 389, "race2": 45, "race3": 6, "race4": 5, "race5": 1, "race6": 13, "ethnicity1": 301, "ethnicity2": 158, "edu1": 73, "edu2": 114, "edu3": 106, "edu4": 54, "Shape_Length": 206076.58727745322, "Shape_Area": 1680393228.0334299, "total_2021": 578, "total_2022": 459 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.963962120010478, 28.940486009120718 ], [ -95.964260120271817, 28.94027700873745 ], [ -95.96392412002605, 28.939624009133752 ], [ -95.963415119389055, 28.938635008390467 ], [ -95.962254118961553, 28.936357008368578 ], [ -95.960193118102296, 28.932408007253539 ], [ -95.958453117551585, 28.929060006808442 ], [ -95.957097116987129, 28.926419006088739 ], [ -95.956736117325192, 28.925727006676421 ], [ -95.956555117057363, 28.92534100579952 ], [ -95.956419117539355, 28.924954006038135 ], [ -95.956354117244075, 28.9246280058629 ], [ -95.956296116856691, 28.924061006155025 ], [ -95.956150116561986, 28.919977004955825 ], [ -95.956048116607803, 28.91714900464499 ], [ -95.95602011679884, 28.916360004680278 ], [ -95.955851116351596, 28.911504003179537 ], [ -95.955815116826756, 28.910479003552489 ], [ -95.955807116334668, 28.910244003312464 ], [ -95.955745116309686, 28.908032002811108 ], [ -95.95573211654596, 28.907709002137889 ], [ -95.95564011578611, 28.905343002117693 ], [ -95.955613115866754, 28.904648001627201 ], [ -95.955413116198258, 28.898371000871528 ], [ -95.955313116134562, 28.897637000877676 ], [ -95.954673115945184, 28.893286999958523 ], [ -95.95433711554449, 28.890984999112032 ], [ -95.953875115466886, 28.887823998286347 ], [ -95.953686114826681, 28.887007998760478 ], [ -95.953438114576244, 28.886275998135822 ], [ -95.953205115227689, 28.885504997931559 ], [ -95.952935114289673, 28.885512997942786 ], [ -95.943361112710889, 28.885782998711132 ], [ -95.943242112350319, 28.88578599889912 ], [ -95.941843111561923, 28.885810998185676 ], [ -95.938880110839577, 28.885887998264984 ], [ -95.935738110543753, 28.885951998419067 ], [ -95.929715108327159, 28.886097998585875 ], [ -95.926063108083582, 28.886185999004134 ], [ -95.925609108268574, 28.886224999014459 ], [ -95.925618107674325, 28.88656099916399 ], [ -95.925762108312185, 28.890568999930583 ], [ -95.92568910764227, 28.890705999773679 ], [ -95.925533107489031, 28.890772000228111 ], [ -95.921639106590078, 28.890875000480559 ], [ -95.908110103131975, 28.891256000647218 ], [ -95.908006103267738, 28.891259000805285 ], [ -95.907881103610009, 28.891262000479792 ], [ -95.898308100887249, 28.891532000811555 ], [ -95.894590100061947, 28.891637001514795 ], [ -95.894272099971872, 28.891646001295264 ], [ -95.892956099373279, 28.891683001151655 ], [ -95.885739097520357, 28.891886001397101 ], [ -95.88148809720559, 28.891991001669702 ], [ -95.881647096930052, 28.896306002330832 ], [ -95.881619097287555, 28.89642700224536 ], [ -95.881541097339081, 28.896527002412377 ], [ -95.881405097400915, 28.896551002269629 ], [ -95.880590097135013, 28.896566002720988 ], [ -95.874584095721787, 28.8967230028546 ], [ -95.871813094646981, 28.896811002917477 ], [ -95.869546093853288, 28.896855002668595 ], [ -95.866252093008924, 28.896956003431548 ], [ -95.8635950929404, 28.897035003139916 ], [ -95.857649091247538, 28.897175003751027 ], [ -95.855318089966786, 28.897230004037425 ], [ -95.854025090003447, 28.897261004012414 ], [ -95.853696090219898, 28.897274003945459 ], [ -95.85368708988959, 28.897531004078729 ], [ -95.853814090421977, 28.900962004048932 ], [ -95.8538260898696, 28.901286004094988 ], [ -95.853866089825544, 28.901580004219284 ], [ -95.853984090273528, 28.90191300432258 ], [ -95.854073089777685, 28.902214004821882 ], [ -95.854031090086892, 28.902540004815279 ], [ -95.853977089901946, 28.902703004725797 ], [ -95.853948089794599, 28.902789004537482 ], [ -95.85393808995093, 28.9028190046253 ], [ -95.853891090525352, 28.903060005101359 ], [ -95.853919090379975, 28.904712005555204 ], [ -95.853921090556099, 28.904758005316069 ], [ -95.84392008812658, 28.90495000552259 ], [ -95.843394087143707, 28.904960005446046 ], [ -95.841349087422557, 28.904999005725195 ], [ -95.835905085541242, 28.905104005966994 ], [ -95.829604084607496, 28.905225005959291 ], [ -95.82532208273166, 28.905307006139736 ], [ -95.825160082928321, 28.905357006519374 ], [ -95.825044083078538, 28.905403006612328 ], [ -95.824966082618275, 28.905434006679794 ], [ -95.820989081858244, 28.90894600726293 ], [ -95.816981080820284, 28.905647006948829 ], [ -95.816746080829688, 28.90539300637381 ], [ -95.816717080375568, 28.905361006625462 ], [ -95.81340408012997, 28.902527006445624 ], [ -95.812774079454385, 28.901987006056988 ], [ -95.81237907943509, 28.901652006034098 ], [ -95.812171079982278, 28.901498005568939 ], [ -95.811965079271673, 28.901364005611544 ], [ -95.811761079073918, 28.901246005528396 ], [ -95.811513079646019, 28.901123005451314 ], [ -95.811330078942532, 28.901041005696886 ], [ -95.810018079295745, 28.900454005717449 ], [ -95.8097570793974, 28.900337005311499 ], [ -95.8095990791291, 28.900250005841684 ], [ -95.809454078528475, 28.900152005915295 ], [ -95.809321078955833, 28.900041005620388 ], [ -95.809222079253331, 28.899944005371228 ], [ -95.806738077818437, 28.897021004803264 ], [ -95.80644007835663, 28.89669200492559 ], [ -95.806007077315542, 28.896251004566722 ], [ -95.805692077494342, 28.895952004724855 ], [ -95.805359078054138, 28.895655004930752 ], [ -95.802468076808637, 28.893160004487683 ], [ -95.799701075594328, 28.890773003592869 ], [ -95.799536075936189, 28.890625003668088 ], [ -95.799390075738586, 28.890474003958715 ], [ -95.799254075421743, 28.890311003681688 ], [ -95.799139075621255, 28.890151004242156 ], [ -95.7990310754451, 28.88997300409245 ], [ -95.798918075883876, 28.889745003705759 ], [ -95.798844076049235, 28.889555003573733 ], [ -95.798799075554697, 28.889411003417923 ], [ -95.798632075311176, 28.888802003212415 ], [ -95.798614075884558, 28.888738003276803 ], [ -95.798320075036969, 28.887671003161039 ], [ -95.798247075096739, 28.887471003306437 ], [ -95.79816207544232, 28.88728200318511 ], [ -95.798144075095294, 28.887249003174031 ], [ -95.798063075726901, 28.887099003331315 ], [ -95.797945074927654, 28.886913003457 ], [ -95.797814074908217, 28.886737003321105 ], [ -95.797662075601465, 28.886562003443455 ], [ -95.79749607545854, 28.886396003253555 ], [ -95.79733807495532, 28.886259003101621 ], [ -95.794179074044862, 28.883695003015404 ], [ -95.793273073939588, 28.882959002224396 ], [ -95.790639073607522, 28.885354002796443 ], [ -95.787856072763176, 28.88788400345042 ], [ -95.785789072851841, 28.889703004583726 ], [ -95.78573907266933, 28.889744004586941 ], [ -95.785690072033915, 28.889786004561543 ], [ -95.785572071968986, 28.889889004207312 ], [ -95.785342072291471, 28.890091004151948 ], [ -95.78507107177424, 28.890329004619954 ], [ -95.783827072429588, 28.891303004617022 ], [ -95.782944071770387, 28.892099005199515 ], [ -95.780316070766929, 28.894254005659331 ], [ -95.777017070925837, 28.896960005646825 ], [ -95.776922070375193, 28.897038006194055 ], [ -95.77371606952336, 28.899667006689416 ], [ -95.770600069521691, 28.902222007190392 ], [ -95.767946067944479, 28.904398007387723 ], [ -95.766426067628231, 28.90564500825354 ], [ -95.765916067923385, 28.906063007826543 ], [ -95.765621068051558, 28.906320008370603 ], [ -95.762665067103143, 28.909016009148022 ], [ -95.760386066660743, 28.911096009690606 ], [ -95.758305066587994, 28.912994010196797 ], [ -95.756580065608361, 28.91456701032207 ], [ -95.7501750644673, 28.920410011606538 ], [ -95.749083064749115, 28.92148701225835 ], [ -95.748192064254425, 28.922344011738538 ], [ -95.745447063451067, 28.924854012635578 ], [ -95.744719063084574, 28.925446012626491 ], [ -95.744130063615557, 28.925813013099411 ], [ -95.743787063407424, 28.925981012734137 ], [ -95.743683062832687, 28.926032013408072 ], [ -95.743130063073281, 28.926216013290368 ], [ -95.741990062632183, 28.926493013232317 ], [ -95.741526062712538, 28.926573013131382 ], [ -95.741057062836163, 28.926709013103793 ], [ -95.740513062346054, 28.926936013526859 ], [ -95.740044061931798, 28.927165013070532 ], [ -95.739376062335708, 28.927537013285178 ], [ -95.738935061500925, 28.92783501392643 ], [ -95.737832061626364, 28.928835014220546 ], [ -95.737626061463757, 28.929024014240696 ], [ -95.73272106052417, 28.93352501523206 ], [ -95.731638060362613, 28.934521015523661 ], [ -95.731369059999665, 28.934747015031931 ], [ -95.73014505966951, 28.935689015704085 ], [ -95.732612060551006, 28.936808015947509 ], [ -95.734323060855971, 28.937643015951867 ], [ -95.736060061391854, 28.938414015699397 ], [ -95.73654206193153, 28.938628015585991 ], [ -95.737087061973966, 28.938870015594564 ], [ -95.73769606189326, 28.939140016010793 ], [ -95.740573063298271, 28.940383015776987 ], [ -95.740934063159727, 28.940535016448571 ], [ -95.741573062757112, 28.940824016479116 ], [ -95.744764064013026, 28.94226501681705 ], [ -95.747409064703405, 28.943452017008127 ], [ -95.748372065132031, 28.943862016230565 ], [ -95.749400065605542, 28.944239016517873 ], [ -95.750260065522113, 28.94456201678323 ], [ -95.752379066411052, 28.945280017031475 ], [ -95.758926068243923, 28.947625017370502 ], [ -95.759323067846168, 28.947754017066554 ], [ -95.760877068082237, 28.948316016910876 ], [ -95.761197068972251, 28.948428017232754 ], [ -95.761779068331919, 28.948631016857835 ], [ -95.770339070996002, 28.951696017345135 ], [ -95.770981070655651, 28.951922017705453 ], [ -95.780964074235186, 28.955416017712714 ], [ -95.787749075526023, 28.957824018296701 ], [ -95.791373076967375, 28.959110018337999 ], [ -95.794216077050152, 28.960119018468205 ], [ -95.795100078075791, 28.960425018766564 ], [ -95.795421078107339, 28.960551018262194 ], [ -95.798086078338031, 28.961477018368917 ], [ -95.798485078419631, 28.961616018923088 ], [ -95.799710078993883, 28.962062018886755 ], [ -95.800175079252099, 28.962231018551066 ], [ -95.800989078965216, 28.962519018616959 ], [ -95.801283079453242, 28.962624019213283 ], [ -95.804606080292359, 28.963799019272546 ], [ -95.805379080839273, 28.964060019137253 ], [ -95.805570080940129, 28.964125018667946 ], [ -95.806058081068088, 28.964253019313652 ], [ -95.806194080332745, 28.96428401861478 ], [ -95.806308081072757, 28.964319018996157 ], [ -95.806451080744949, 28.964350019194715 ], [ -95.806604081141856, 28.964369019080909 ], [ -95.808113081485473, 28.964408018778844 ], [ -95.808303081041387, 28.964398018986852 ], [ -95.808489081151478, 28.964373018741636 ], [ -95.808665081475112, 28.964336018973388 ], [ -95.809050081663429, 28.964223018767065 ], [ -95.80967608199839, 28.964039018713247 ], [ -95.813471082325435, 28.96291801834856 ], [ -95.814421082308129, 28.962629018591574 ], [ -95.815130082339891, 28.96242001807973 ], [ -95.815784083432149, 28.962210017955265 ], [ -95.817372083719306, 28.961759018183301 ], [ -95.818178083535557, 28.961552017730035 ], [ -95.818816083400236, 28.961404017731997 ], [ -95.819264083463821, 28.961343017991751 ], [ -95.819677084369602, 28.9613000175361 ], [ -95.822059085022872, 28.960967017618845 ], [ -95.823328085023761, 28.960801017416856 ], [ -95.823529084498091, 28.960774017739283 ], [ -95.823966084612337, 28.96067201783946 ], [ -95.824068084690168, 28.960648017791236 ], [ -95.824135084904924, 28.960633018070958 ], [ -95.824201085503987, 28.960617017740805 ], [ -95.824228085304426, 28.960611018087558 ], [ -95.824766085491333, 28.960468017500371 ], [ -95.826030085876752, 28.959945017551856 ], [ -95.826450085340284, 28.959720017378089 ], [ -95.827279086199667, 28.959252017604339 ], [ -95.827636085394616, 28.959040017230667 ], [ -95.828349086469956, 28.958641017554562 ], [ -95.82873508585277, 28.958463016791004 ], [ -95.82919008614779, 28.958271017280826 ], [ -95.829705086605884, 28.95809201670226 ], [ -95.830245086656433, 28.957936016490297 ], [ -95.830902086698259, 28.957800017273371 ], [ -95.832530086896895, 28.957528016738511 ], [ -95.833283087546022, 28.95739801669124 ], [ -95.834087087832202, 28.95725101635335 ], [ -95.834944087974733, 28.957046016842884 ], [ -95.837945088338387, 28.956760016501519 ], [ -95.8385780889393, 28.956820016179101 ], [ -95.839193088305194, 28.956944015995692 ], [ -95.839767089317306, 28.957103016275425 ], [ -95.840069088542236, 28.957215016241054 ], [ -95.840548088907454, 28.957424016241525 ], [ -95.841269089513858, 28.95780601674165 ], [ -95.842001089516742, 28.95831201674962 ], [ -95.843406089400844, 28.959382016405815 ], [ -95.843969090154971, 28.959792017021808 ], [ -95.844318090164265, 28.960072017314324 ], [ -95.845116090859406, 28.960671016805478 ], [ -95.845657090911686, 28.961052017507857 ], [ -95.846238090798821, 28.961385017296084 ], [ -95.846647090334827, 28.961594017466794 ], [ -95.846845091007339, 28.961678017113151 ], [ -95.847415091162972, 28.961920017565213 ], [ -95.848217091500345, 28.962248016975835 ], [ -95.848849091888852, 28.96249101695151 ], [ -95.849588091617889, 28.962778017271248 ], [ -95.849971091712234, 28.962895017757472 ], [ -95.850389092080192, 28.962992017109588 ], [ -95.850870092419555, 28.963084017175859 ], [ -95.851425092187711, 28.963155017018664 ], [ -95.851941092467982, 28.963182017359216 ], [ -95.852456092620386, 28.9632000176445 ], [ -95.852954092070306, 28.963216017587339 ], [ -95.853370092336178, 28.963252017114488 ], [ -95.85388409264462, 28.963309017025519 ], [ -95.854533092866248, 28.963419017487993 ], [ -95.8550770927976, 28.963522017676848 ], [ -95.856622093507468, 28.963891017338632 ], [ -95.870177097452313, 28.967970017462743 ], [ -95.87451409858906, 28.969213018307041 ], [ -95.875225098737914, 28.969408017670453 ], [ -95.879259099895023, 28.970567018308977 ], [ -95.879753099138256, 28.970753018127805 ], [ -95.883244100758901, 28.971767018537737 ], [ -95.883587100574545, 28.9718670182883 ], [ -95.883624100655581, 28.971878017924219 ], [ -95.884762100829207, 28.972208018108827 ], [ -95.885053100923272, 28.972293018296266 ], [ -95.886919101947129, 28.972835018450379 ], [ -95.890799102495464, 28.973962018445221 ], [ -95.891771102850441, 28.974244018574463 ], [ -95.892701102601578, 28.974514018367362 ], [ -95.893806103683232, 28.97483501845781 ], [ -95.894719103912351, 28.975101018675836 ], [ -95.895745104021657, 28.975399018800982 ], [ -95.897438104437981, 28.975891018669923 ], [ -95.897545104302225, 28.97592201865077 ], [ -95.89771010483426, 28.975969018379871 ], [ -95.899603104807738, 28.976518018807099 ], [ -95.903341105438074, 28.977604018319163 ], [ -95.91240710810321, 28.980235018483384 ], [ -95.912540107812774, 28.98026001866765 ], [ -95.912919107954352, 28.980290018716932 ], [ -95.913341108163934, 28.980324018974489 ], [ -95.913668108877218, 28.980350018809844 ], [ -95.920257109843547, 28.980865018379898 ], [ -95.921762111001357, 28.980983019006349 ], [ -95.923179111286217, 28.981093018752258 ], [ -95.926147111799736, 28.981325018379032 ], [ -95.934778114002782, 28.981985018933532 ], [ -95.93499111439688, 28.980916018468175 ], [ -95.935282113849951, 28.979043018137968 ], [ -95.935468113945603, 28.977896017353842 ], [ -95.935583113902595, 28.977185017885784 ], [ -95.935676114202991, 28.97643501762926 ], [ -95.935673114427502, 28.976355017504886 ], [ -95.935666113608505, 28.976178017046685 ], [ -95.935623114338867, 28.975985016958596 ], [ -95.935605114034999, 28.975849017037056 ], [ -95.935602114155245, 28.975716017520778 ], [ -95.935590113545103, 28.975133016707908 ], [ -95.935622113552682, 28.975059017062858 ], [ -95.936320114485937, 28.973153017047249 ], [ -95.936382114190124, 28.972985016359992 ], [ -95.938195114245033, 28.968037015190639 ], [ -95.938337114450704, 28.967649015932317 ], [ -95.93857611416577, 28.967765015890791 ], [ -95.938698114455704, 28.967763015603889 ], [ -95.939602114956926, 28.967747015575693 ], [ -95.940439115385644, 28.967732015850007 ], [ -95.941888115311841, 28.967706015576098 ], [ -95.942447115596877, 28.968048015405508 ], [ -95.942708115658519, 28.96820801532472 ], [ -95.943023115730938, 28.968400015111058 ], [ -95.946360116282577, 28.970446015935558 ], [ -95.946770116586848, 28.970693016039114 ], [ -95.947509116374732, 28.971139015474801 ], [ -95.948658116694361, 28.971871016453925 ], [ -95.948809117472862, 28.971982016422253 ], [ -95.949458117428691, 28.972456016572092 ], [ -95.949655117887673, 28.972600015739303 ], [ -95.949880117553619, 28.972787016546416 ], [ -95.950365117307527, 28.973188016484269 ], [ -95.950960117950117, 28.973718016618587 ], [ -95.95140711749734, 28.974149016366923 ], [ -95.951773118289069, 28.974562016459679 ], [ -95.952466117885024, 28.975226016970847 ], [ -95.952596117800439, 28.975375016542081 ], [ -95.952750118197855, 28.975589017120541 ], [ -95.953005118120274, 28.975581016758348 ], [ -95.952894118046672, 28.974005016205041 ], [ -95.952920118121838, 28.973223015872712 ], [ -95.95295111840997, 28.972662016161308 ], [ -95.952983118393789, 28.972149016180019 ], [ -95.952983117842493, 28.972037016064867 ], [ -95.952989118490962, 28.971828015528008 ], [ -95.952984118069523, 28.971532016266025 ], [ -95.952979117929786, 28.971438015988358 ], [ -95.952940117799002, 28.967919014875054 ], [ -95.952940118321081, 28.967892014769081 ], [ -95.952940118331284, 28.967784015199808 ], [ -95.952939117864432, 28.966828014584344 ], [ -95.952928117730323, 28.966465014728872 ], [ -95.952890117977745, 28.965235014646275 ], [ -95.952845118137404, 28.963733014114045 ], [ -95.952830118080442, 28.963232014461362 ], [ -95.952824118330497, 28.963041013916765 ], [ -95.952813117552139, 28.962667014251707 ], [ -95.952744117681675, 28.960376013153283 ], [ -95.952723117874669, 28.959705013024806 ], [ -95.95262411773966, 28.956398012641177 ], [ -95.952611117246477, 28.955661012369429 ], [ -95.952579117346218, 28.953832011860992 ], [ -95.952563117607696, 28.953055012124889 ], [ -95.952567117617903, 28.952972011970388 ], [ -95.952558116862875, 28.952875012433449 ], [ -95.952524117653439, 28.951979011390296 ], [ -95.95248911731845, 28.950835011600272 ], [ -95.952493117413056, 28.95068101151892 ], [ -95.952495117711408, 28.950618011621657 ], [ -95.95255011701164, 28.950362011112055 ], [ -95.952603117235071, 28.950204011757101 ], [ -95.952644116976643, 28.950083011416151 ], [ -95.952763116865952, 28.949787010993717 ], [ -95.952915117029406, 28.949474010829196 ], [ -95.953239117781138, 28.949027011240723 ], [ -95.953664117716144, 28.948648011477097 ], [ -95.953945117461018, 28.948418010834231 ], [ -95.954552117464388, 28.94809501069107 ], [ -95.95621711832564, 28.947235010915989 ], [ -95.957028117763954, 28.946795010397359 ], [ -95.957479118471554, 28.946482010189257 ], [ -95.957627118384181, 28.946381010399691 ], [ -95.957689117933384, 28.94633801078767 ], [ -95.958210118705921, 28.945879010484337 ], [ -95.958318118376852, 28.945784010757642 ], [ -95.958843118151862, 28.945257009909437 ], [ -95.960297119171301, 28.943846009689601 ], [ -95.961063118741322, 28.943083009815695 ], [ -95.963962120010478, 28.940486009120718 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 730, "Tract": "48339694700", "Area_SqMi": 125.11511347697849, "total_2009": 111, "total_2010": 114, "total_2011": 120, "total_2012": 150, "total_2013": 163, "total_2014": 167, "total_2015": 165, "total_2016": 182, "total_2017": 199, "total_2018": 270, "total_2019": 318, "total_2020": 358, "age1": 102, "age2": 235, "age3": 137, "earn1": 45, "earn2": 117, "earn3": 312, "naics_s01": 4, "naics_s02": 0, "naics_s03": 0, "naics_s04": 204, "naics_s05": 30, "naics_s06": 5, "naics_s07": 55, "naics_s08": 0, "naics_s09": 0, "naics_s10": 27, "naics_s11": 3, "naics_s12": 35, "naics_s13": 0, "naics_s14": 90, "naics_s15": 16, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 426, "race2": 29, "race3": 3, "race4": 13, "race5": 0, "race6": 3, "ethnicity1": 384, "ethnicity2": 90, "edu1": 61, "edu2": 89, "edu3": 131, "edu4": 91, "Shape_Length": 267665.72008127283, "Shape_Area": 3487995227.0813313, "total_2021": 431, "total_2022": 474 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.830247161857415, 30.630289356768479 ], [ -95.830161162009219, 30.62960835699662 ], [ -95.830131161910018, 30.629409357069527 ], [ -95.830077161233532, 30.629050357186188 ], [ -95.829977161275721, 30.627749356500317 ], [ -95.829950161482557, 30.627452356876077 ], [ -95.829785160860098, 30.625681356215907 ], [ -95.829743160749416, 30.625194356266995 ], [ -95.829098161310299, 30.618986354458979 ], [ -95.829046160870291, 30.61822435480439 ], [ -95.828921160470088, 30.616940354234483 ], [ -95.828443159798738, 30.612038353382609 ], [ -95.82797115955249, 30.607463352544841 ], [ -95.827805159371863, 30.605850352313237 ], [ -95.827693159907639, 30.604739351589775 ], [ -95.827471159975303, 30.602537351515053 ], [ -95.827407159981647, 30.601925351345496 ], [ -95.826898159222196, 30.596277350380834 ], [ -95.826762159187041, 30.594556349648336 ], [ -95.826746158657414, 30.594361350157161 ], [ -95.826627159263097, 30.592902349588094 ], [ -95.826301159069274, 30.589412349342719 ], [ -95.82621215863189, 30.588536348671663 ], [ -95.826192158327004, 30.588343348650017 ], [ -95.825672158569589, 30.58326534823625 ], [ -95.825664157983297, 30.583186347758023 ], [ -95.825645158627722, 30.582995347420191 ], [ -95.82525915804834, 30.578810346899559 ], [ -95.82501015756425, 30.576111346414354 ], [ -95.824769157786193, 30.573553346012247 ], [ -95.82407915677058, 30.566303344814195 ], [ -95.823533156324061, 30.56057134354355 ], [ -95.823228155840553, 30.557348342551563 ], [ -95.822897155677168, 30.554177342455219 ], [ -95.822688155997483, 30.551716341670499 ], [ -95.822663156114658, 30.551421341495619 ], [ -95.822653155998537, 30.551313341889625 ], [ -95.822506155436514, 30.549817340913265 ], [ -95.822487155604222, 30.549618341370696 ], [ -95.822405155925964, 30.548785341017183 ], [ -95.822036154975947, 30.544977340640553 ], [ -95.821948154804076, 30.544090340392685 ], [ -95.821334155365662, 30.537863338595255 ], [ -95.821119154690933, 30.535683338008742 ], [ -95.820827154851472, 30.532619337645002 ], [ -95.820597154487217, 30.530212337353802 ], [ -95.8201971537909, 30.525955336195036 ], [ -95.820201154242071, 30.525939336234941 ], [ -95.819740153954683, 30.521604335943618 ], [ -95.819510153553722, 30.519030335098385 ], [ -95.818958152817274, 30.512929333492469 ], [ -95.818798152801222, 30.511316333715587 ], [ -95.818787152669771, 30.511210333486137 ], [ -95.818777152979308, 30.511104333358006 ], [ -95.818774153406522, 30.511074333499039 ], [ -95.818383153084824, 30.507112332366599 ], [ -95.817989151952219, 30.503081331994164 ], [ -95.817587152575229, 30.50080333197743 ], [ -95.81757915205587, 30.500761331633669 ], [ -95.81756315240743, 30.500675331472671 ], [ -95.817485151684465, 30.500223331700585 ], [ -95.817315152091979, 30.498748331161686 ], [ -95.81718715155553, 30.497037330930564 ], [ -95.816998151599535, 30.494524329925667 ], [ -95.816847151151023, 30.492643330156191 ], [ -95.816657151375153, 30.490299329213435 ], [ -95.816647151351034, 30.490178329540473 ], [ -95.816372150909174, 30.486723328522945 ], [ -95.816360150925959, 30.486564328515783 ], [ -95.816343151461894, 30.486358328427503 ], [ -95.815721150552662, 30.478603326862967 ], [ -95.815717150484005, 30.478552326735297 ], [ -95.815444150310697, 30.475102326464075 ], [ -95.814755150094882, 30.466444324683444 ], [ -95.814672149996554, 30.465678324166575 ], [ -95.814662150133955, 30.465663324437372 ], [ -95.814669149797524, 30.465513324841275 ], [ -95.814645149305079, 30.463370324113551 ], [ -95.814541149353829, 30.463142323998998 ], [ -95.814486149274131, 30.463007323780754 ], [ -95.814457148992545, 30.462913324108182 ], [ -95.814442149110604, 30.462865323981113 ], [ -95.814403149914568, 30.462738324152376 ], [ -95.814376149101278, 30.462611324163692 ], [ -95.814346149909952, 30.462467324059194 ], [ -95.814214149276154, 30.460484323803314 ], [ -95.814183149400733, 30.460023323437611 ], [ -95.814178149375209, 30.459949323343704 ], [ -95.814160148977805, 30.459877323614712 ], [ -95.814107149047643, 30.459716323770497 ], [ -95.814087149574377, 30.459656323727454 ], [ -95.813971149188234, 30.459364323721275 ], [ -95.813871149075339, 30.459152323053125 ], [ -95.813720149361828, 30.458888322975834 ], [ -95.81102414838233, 30.454996322376427 ], [ -95.810867148451834, 30.45475832221415 ], [ -95.810700148119082, 30.454526322366313 ], [ -95.810524148583212, 30.454299322319613 ], [ -95.810341147978406, 30.45407532279166 ], [ -95.810147148055037, 30.453858322198421 ], [ -95.809944148008753, 30.453650322185787 ], [ -95.809774147367946, 30.453487322143236 ], [ -95.809467148153033, 30.453177321968798 ], [ -95.809151147757248, 30.452872321822838 ], [ -95.808506147829519, 30.452280322532349 ], [ -95.808110147805479, 30.451937322109018 ], [ -95.807901147434947, 30.451787321727121 ], [ -95.807682147399518, 30.451644322018254 ], [ -95.807452147248895, 30.451518322311507 ], [ -95.807276146818523, 30.451431322378159 ], [ -95.807153147035024, 30.451379322252258 ], [ -95.806901147383414, 30.451284322061124 ], [ -95.806645146950899, 30.451207321978405 ], [ -95.806258147298564, 30.451118321673757 ], [ -95.801864145245787, 30.45037732205267 ], [ -95.80136114556386, 30.450298321902924 ], [ -95.800859145080778, 30.450192322414122 ], [ -95.800757145129921, 30.450171321854931 ], [ -95.80015714566396, 30.450019321969059 ], [ -95.799695144788188, 30.449838321980334 ], [ -95.799400144653333, 30.449707321571381 ], [ -95.798968145414889, 30.449496321562314 ], [ -95.798686144285483, 30.449343322276484 ], [ -95.797737144604213, 30.448793322085738 ], [ -95.796496143930042, 30.448106321616358 ], [ -95.796317144369439, 30.447989321630526 ], [ -95.7957581443181, 30.447670321359229 ], [ -95.79537614397627, 30.447474321937808 ], [ -95.795093143934267, 30.447341321855934 ], [ -95.795003143697514, 30.447306321512677 ], [ -95.794815144018955, 30.447249321828757 ], [ -95.794721143531135, 30.447225321344934 ], [ -95.79452914364478, 30.447187321373622 ], [ -95.794337143396191, 30.447158321870667 ], [ -95.7940391438445, 30.44714032174587 ], [ -95.793842143089194, 30.447141321654776 ], [ -95.793660143104958, 30.447153321591898 ], [ -95.793574143777633, 30.447151321559442 ], [ -95.793489143350541, 30.447141321675836 ], [ -95.793408143743335, 30.447122321302974 ], [ -95.793329143703602, 30.447098321654547 ], [ -95.793252143471051, 30.447066321584888 ], [ -95.793180143458372, 30.447026322014398 ], [ -95.79311214371549, 30.446981321998521 ], [ -95.792618143563161, 30.447095321694853 ], [ -95.792254143074445, 30.447169321628206 ], [ -95.792012143481386, 30.447218321641891 ], [ -95.790659142606813, 30.447410321405179 ], [ -95.788357141767889, 30.447737321843832 ], [ -95.78820114234702, 30.447755321967382 ], [ -95.788041142498088, 30.447762322010998 ], [ -95.787882141972673, 30.447761322112523 ], [ -95.787711141647932, 30.4477493220935 ], [ -95.787637142042257, 30.447737321847132 ], [ -95.785332141352114, 30.447348322099835 ], [ -95.785169141552132, 30.447325322291729 ], [ -95.784930140823207, 30.447259321926484 ], [ -95.784777140776725, 30.447195322344449 ], [ -95.784635140606227, 30.447123322006224 ], [ -95.784499140579186, 30.447034321951001 ], [ -95.784438140896185, 30.446983322233805 ], [ -95.782675140825987, 30.445791322107674 ], [ -95.782558140660754, 30.445701321984682 ], [ -95.782425140024401, 30.445623322080731 ], [ -95.782279140372822, 30.445559321304696 ], [ -95.782203140205624, 30.44553532159664 ], [ -95.782125140513884, 30.445517321611142 ], [ -95.781964140649421, 30.445516322022044 ], [ -95.781803140167483, 30.445548321505797 ], [ -95.781664139914326, 30.445594321852607 ], [ -95.781457139798661, 30.445693322167607 ], [ -95.781362140195995, 30.445733321698874 ], [ -95.781278139841945, 30.445758321428908 ], [ -95.78118914001918, 30.445778322031884 ], [ -95.781103140666843, 30.445790321861608 ], [ -95.780093139837859, 30.445961322027902 ], [ -95.778866139222373, 30.446187321820741 ], [ -95.778591139848928, 30.446228322198799 ], [ -95.778316139031546, 30.446260322096919 ], [ -95.778036138908959, 30.446283322196802 ], [ -95.777759139796231, 30.446301322252648 ], [ -95.774694138981147, 30.446363322402195 ], [ -95.770786137249402, 30.446448322190943 ], [ -95.770753137380282, 30.446447322273873 ], [ -95.77069413766948, 30.446446321881499 ], [ -95.77054213757782, 30.446456322329475 ], [ -95.770449137615728, 30.446468322028597 ], [ -95.770330137223112, 30.446489321920986 ], [ -95.77006613776156, 30.446563322204202 ], [ -95.769973136975679, 30.446602322179039 ], [ -95.769450137459557, 30.446842322778256 ], [ -95.768789137304836, 30.447126322153498 ], [ -95.768742136943715, 30.447144322693195 ], [ -95.768015136889559, 30.447427322703216 ], [ -95.767928136406894, 30.447455322942066 ], [ -95.7678381366606, 30.447478322726916 ], [ -95.767719136648282, 30.447502322431806 ], [ -95.767537137045906, 30.447528323091568 ], [ -95.766702136139102, 30.447580322383864 ], [ -95.765993135935091, 30.447609322681341 ], [ -95.763606136001727, 30.447649322888516 ], [ -95.76118213518231, 30.447654323321785 ], [ -95.761100134774949, 30.447649322499878 ], [ -95.760854135422008, 30.447657323085277 ], [ -95.760614134628653, 30.44769832315421 ], [ -95.760434135237716, 30.44775132326378 ], [ -95.759695134968567, 30.448053322658264 ], [ -95.759614134527595, 30.448081322706368 ], [ -95.75952213520452, 30.448106322706234 ], [ -95.759425134244808, 30.448126322693462 ], [ -95.759278134657777, 30.448144323367341 ], [ -95.759131134789101, 30.44815432284182 ], [ -95.758986135030995, 30.448148323007846 ], [ -95.75764813439072, 30.447940322770339 ], [ -95.756984134099611, 30.447825323219195 ], [ -95.756315133694926, 30.447732322821704 ], [ -95.756208134382192, 30.447713322913337 ], [ -95.75599013378671, 30.447688323186828 ], [ -95.755806133609951, 30.447681322830171 ], [ -95.755682133980514, 30.447684323403713 ], [ -95.753672133196901, 30.447671323168251 ], [ -95.753515132934197, 30.447698323276853 ], [ -95.753441133465842, 30.44772932323459 ], [ -95.753376133684839, 30.447766322763997 ], [ -95.753313133583575, 30.447808323314813 ], [ -95.753260132641586, 30.447859323418413 ], [ -95.753181133254074, 30.447976323142466 ], [ -95.753140133653829, 30.448123323107566 ], [ -95.753110133508486, 30.44826832373035 ], [ -95.753089133485616, 30.448452323433042 ], [ -95.753087133370997, 30.448548323026184 ], [ -95.75300613298927, 30.449732323900236 ], [ -95.752990133462845, 30.44980332387534 ], [ -95.75296413293556, 30.449876323723 ], [ -95.75293213280068, 30.449942323237419 ], [ -95.752884132719913, 30.450015323407893 ], [ -95.752833132949732, 30.45007432378382 ], [ -95.752777133272772, 30.450130323566878 ], [ -95.752645133228498, 30.45022132350698 ], [ -95.752574133552613, 30.450258323551228 ], [ -95.752484132890473, 30.450291323734852 ], [ -95.752403132959031, 30.450311323904213 ], [ -95.752320132570119, 30.450323323572103 ], [ -95.749606132246043, 30.450351323462744 ], [ -95.744144130873266, 30.450396324277246 ], [ -95.744096131389597, 30.44880732331805 ], [ -95.744044130941788, 30.446756323755555 ], [ -95.743843130137122, 30.438933321612122 ], [ -95.743832130822909, 30.438485321243967 ], [ -95.743824130264841, 30.438385321506704 ], [ -95.743810130700581, 30.438280321475311 ], [ -95.743771130062825, 30.43808132169417 ], [ -95.743744129916408, 30.43798232162478 ], [ -95.743680130078857, 30.437788321164302 ], [ -95.743604130023598, 30.437596321201067 ], [ -95.743508130184168, 30.437407321554826 ], [ -95.743455130003952, 30.437318321734359 ], [ -95.743339129867167, 30.437141321392208 ], [ -95.743193130421616, 30.436940321723291 ], [ -95.743128130188111, 30.436859321059671 ], [ -95.74298912964278, 30.436698321448507 ], [ -95.742913129468207, 30.436622321243476 ], [ -95.7427551301964, 30.436478321361943 ], [ -95.742586129837093, 30.436345321500315 ], [ -95.742409130218547, 30.436220321598888 ], [ -95.742217129546134, 30.436105320918433 ], [ -95.74201912970149, 30.43600432119522 ], [ -95.741711129730902, 30.435873321132114 ], [ -95.741601129584822, 30.435837321296528 ], [ -95.741385129372759, 30.435774321414886 ], [ -95.741161129331914, 30.435725320995548 ], [ -95.739948128788981, 30.43540432099725 ], [ -95.739728129127599, 30.435357321468295 ], [ -95.739572128905621, 30.435312321029315 ], [ -95.73935312903437, 30.435241320916848 ], [ -95.739176129044438, 30.435171321003644 ], [ -95.739144129446544, 30.435159321561795 ], [ -95.739041128759226, 30.435112321277877 ], [ -95.738939128430928, 30.435060320812994 ], [ -95.738744128954266, 30.434951320721574 ], [ -95.738470128252544, 30.434769321009494 ], [ -95.738219128466469, 30.434562321304252 ], [ -95.738065128539304, 30.434409321063281 ], [ -95.73792612890901, 30.434249321008394 ], [ -95.737797128960722, 30.434081321396857 ], [ -95.737632128983137, 30.433816321249168 ], [ -95.737543128338089, 30.433632320672761 ], [ -95.737466128891924, 30.433443320627237 ], [ -95.73536112722671, 30.42592231989137 ], [ -95.735275127294841, 30.425582319321386 ], [ -95.735206127089569, 30.425239319100033 ], [ -95.735152127505387, 30.424897318838205 ], [ -95.735108127084303, 30.424552319208704 ], [ -95.735094127119297, 30.424376319181267 ], [ -95.735006126907791, 30.420375318382394 ], [ -95.734850127036509, 30.41831331803737 ], [ -95.734832127125358, 30.418156318086186 ], [ -95.734805126526879, 30.418002318077303 ], [ -95.734724126993527, 30.417692318220709 ], [ -95.734643127192257, 30.417467317580591 ], [ -95.734555126877055, 30.41726131798687 ], [ -95.734441126573628, 30.417044317251381 ], [ -95.734264126534839, 30.416767317659989 ], [ -95.734111126718133, 30.416571317806653 ], [ -95.733946126508883, 30.416383317176599 ], [ -95.73376412622585, 30.416202317585775 ], [ -95.733642126969315, 30.416095317371486 ], [ -95.733449126087336, 30.415944317844275 ], [ -95.733308126731856, 30.415842317399051 ], [ -95.733086126108745, 30.415702317761038 ], [ -95.732934126229068, 30.415616317311265 ], [ -95.732853126852703, 30.415575317835636 ], [ -95.732615126025337, 30.415465317694728 ], [ -95.732362126263254, 30.415365317397477 ], [ -95.732193126383123, 30.41530631704445 ], [ -95.731933126433347, 30.41523431708076 ], [ -95.73157812580834, 30.415159317439581 ], [ -95.731307125577132, 30.415122317521302 ], [ -95.727567125142883, 30.414903317188902 ], [ -95.726981124572035, 30.414888317580822 ], [ -95.722767123923603, 30.415100317633577 ], [ -95.72254712345557, 30.415113317898374 ], [ -95.722366123711282, 30.415117317760632 ], [ -95.722181123456181, 30.415127317429164 ], [ -95.721631123207786, 30.415127317437669 ], [ -95.721359123293723, 30.415118317631936 ], [ -95.721267123368875, 30.41511031737182 ], [ -95.721175122951294, 30.415108317737207 ], [ -95.720540123531805, 30.415051317920895 ], [ -95.720088123473559, 30.414990317526275 ], [ -95.719909122666621, 30.414961318218911 ], [ -95.719534122914411, 30.414890317591809 ], [ -95.719462123134704, 30.414876318071837 ], [ -95.719286123324721, 30.414836318026943 ], [ -95.719196122526725, 30.414820317700432 ], [ -95.718844123192198, 30.41473231814409 ], [ -95.718411122455166, 30.414609318104336 ], [ -95.71832412301913, 30.414579317863719 ], [ -95.71823912298116, 30.414555318183808 ], [ -95.71815512212271, 30.414525317686365 ], [ -95.718067122890233, 30.414499317486698 ], [ -95.7173621219182, 30.414245317521448 ], [ -95.717190121853221, 30.414188317661459 ], [ -95.717106122567756, 30.414167317592856 ], [ -95.717018121921171, 30.41414031774098 ], [ -95.71666612220713, 30.414046317967923 ], [ -95.716135121845909, 30.413932317537551 ], [ -95.716047121870147, 30.413919318113066 ], [ -95.715956122190505, 30.413900317984968 ], [ -95.715597121623858, 30.41384431758982 ], [ -95.715233121608549, 30.413805317731679 ], [ -95.714778121422924, 30.41376931735347 ], [ -95.714689121702676, 30.413767317758857 ], [ -95.714594121805874, 30.413759317444249 ], [ -95.714382121461995, 30.413753317665705 ], [ -95.713221121538538, 30.413726317746875 ], [ -95.712352121270982, 30.41368831762157 ], [ -95.711690121347075, 30.413672317781216 ], [ -95.711354120907615, 30.413658317642639 ], [ -95.711019120920724, 30.413639317597465 ], [ -95.710348120117757, 30.413582317490661 ], [ -95.709741120177341, 30.413520317565997 ], [ -95.709110119968116, 30.413436318104058 ], [ -95.708484119551784, 30.413330317994653 ], [ -95.707980119720517, 30.413238318233557 ], [ -95.707603119742785, 30.41315431786683 ], [ -95.707229119939953, 30.413060317462616 ], [ -95.707045119207976, 30.413006317789524 ], [ -95.703881118550314, 30.41217831805205 ], [ -95.7026101188913, 30.411858317628788 ], [ -95.702111118411494, 30.411741317545211 ], [ -95.701205117970844, 30.411505317734722 ], [ -95.700754117978448, 30.411373317723438 ], [ -95.700406117377412, 30.411276318101248 ], [ -95.700051118177711, 30.411193318033664 ], [ -95.69969511762659, 30.411129318030241 ], [ -95.699380117500809, 30.411089318009772 ], [ -95.699289117903575, 30.411070318210033 ], [ -95.699200117590053, 30.411057317480275 ], [ -95.699122117457406, 30.411041317487992 ], [ -95.698749117458249, 30.411002317777516 ], [ -95.698477117305487, 30.410984318210712 ], [ -95.698362116887751, 30.410987317534072 ], [ -95.697982116772437, 30.410972317891488 ], [ -95.697601117170407, 30.410974317682903 ], [ -95.696608117202544, 30.411010317729609 ], [ -95.695916116424542, 30.411029317604363 ], [ -95.695916116490963, 30.41050531770636 ], [ -95.695916117209009, 30.41048731817969 ], [ -95.696048117077382, 30.409335317190575 ], [ -95.696099116176782, 30.408544317791772 ], [ -95.696123116424289, 30.408264317482253 ], [ -95.696143116765825, 30.408022317207184 ], [ -95.696251116692366, 30.407500317457693 ], [ -95.696306116613684, 30.407276317507545 ], [ -95.696426117188963, 30.406825316587256 ], [ -95.696493116737614, 30.406604316595228 ], [ -95.696560116692325, 30.406413316760929 ], [ -95.696631116930092, 30.406255317068215 ], [ -95.696714116325424, 30.40610331686478 ], [ -95.696846117127606, 30.405908316656152 ], [ -95.69686511669795, 30.405881316470776 ], [ -95.696977116756486, 30.405743316364688 ], [ -95.697073116733705, 30.405647316838401 ], [ -95.697250116312631, 30.405453317006511 ], [ -95.697376116890595, 30.405297316884898 ], [ -95.697526116734068, 30.405080316534306 ], [ -95.697626116957707, 30.404912316950657 ], [ -95.698013117315099, 30.404297316356313 ], [ -95.698131116717349, 30.404108316658142 ], [ -95.696713116906864, 30.404092316069921 ], [ -95.695515116668048, 30.404074316176217 ], [ -95.69529511661429, 30.404071316758692 ], [ -95.694393115958661, 30.40406331617562 ], [ -95.693435115693944, 30.404070316666175 ], [ -95.692316115898706, 30.404102316836422 ], [ -95.69194011536753, 30.404113316386017 ], [ -95.690902115172847, 30.404170316256341 ], [ -95.689848114716412, 30.404238316995308 ], [ -95.6897561149909, 30.404238317002882 ], [ -95.689479114645806, 30.404261317016797 ], [ -95.68929311426524, 30.404290316535171 ], [ -95.689023114434704, 30.404358316412925 ], [ -95.688849114274888, 30.404417316897202 ], [ -95.688729114741335, 30.404471317173105 ], [ -95.688532115036821, 30.40460131711783 ], [ -95.688440114022683, 30.404673316519116 ], [ -95.688261114457092, 30.404823316913241 ], [ -95.688177114156971, 30.404901316630013 ], [ -95.688018114082084, 30.40506231677071 ], [ -95.687549114376822, 30.405593317522772 ], [ -95.686807114516768, 30.406435317724338 ], [ -95.685791114204179, 30.407587317300244 ], [ -95.685687114164011, 30.407705318022543 ], [ -95.685569114004494, 30.407846317222873 ], [ -95.685382113473636, 30.408036317885504 ], [ -95.685367113782689, 30.408050317773032 ], [ -95.685180113598307, 30.408216317780909 ], [ -95.68511711410811, 30.408265317787279 ], [ -95.685074113451464, 30.408298317482984 ], [ -95.684851113409451, 30.408460317363872 ], [ -95.684542113668428, 30.408667317799967 ], [ -95.6842611141644, 30.408845317771778 ], [ -95.683976113336371, 30.40901731819574 ], [ -95.683835113763095, 30.409095318107852 ], [ -95.683682113293685, 30.409180317609675 ], [ -95.683417113294894, 30.409333318258586 ], [ -95.682913113010699, 30.409651318223901 ], [ -95.682798113355588, 30.40973331774827 ], [ -95.682742112863551, 30.409778318012851 ], [ -95.682566113528637, 30.409942318213652 ], [ -95.682431113122419, 30.410095317749565 ], [ -95.68222311361437, 30.410404318546561 ], [ -95.682099113492924, 30.410568318397338 ], [ -95.68204611317843, 30.410641317856296 ], [ -95.68185411311849, 30.410868318764123 ], [ -95.68171711276635, 30.411016317970624 ], [ -95.68055011264488, 30.411845318241603 ], [ -95.680111112286582, 30.412134318756518 ], [ -95.679751112602972, 30.412356318470035 ], [ -95.67838111270035, 30.413170318922607 ], [ -95.677746112699865, 30.413569318661892 ], [ -95.676559112138861, 30.414349318791015 ], [ -95.676067111680624, 30.414661319516075 ], [ -95.675824111873894, 30.414828319059559 ], [ -95.675357111357741, 30.415163319289604 ], [ -95.675182111708551, 30.415294319550032 ], [ -95.675013112102206, 30.415438319941185 ], [ -95.67477911141259, 30.415669319909497 ], [ -95.6746481113165, 30.415820319524396 ], [ -95.674567111065386, 30.415922319272173 ], [ -95.674418110971402, 30.416130319871659 ], [ -95.674352111269442, 30.416236319511817 ], [ -95.674255111758114, 30.416407319662643 ], [ -95.674146111639814, 30.416633319345529 ], [ -95.674055111627041, 30.416867320059861 ], [ -95.673697111323875, 30.417988319695016 ], [ -95.67332211173769, 30.419173320758585 ], [ -95.672849110994818, 30.420668320778194 ], [ -95.672590111200492, 30.421479320521438 ], [ -95.672508111549675, 30.421708320717293 ], [ -95.67239811108341, 30.421983320563076 ], [ -95.672214111595409, 30.422375320715766 ], [ -95.672080111484036, 30.422633321402373 ], [ -95.671935110735717, 30.422888320908925 ], [ -95.671780111555719, 30.423137320993039 ], [ -95.671612111644947, 30.423377321174826 ], [ -95.670041111015081, 30.425339322011233 ], [ -95.669959111165667, 30.425443321773205 ], [ -95.669458110266902, 30.426068321570728 ], [ -95.666488110529428, 30.429720323076968 ], [ -95.666032110500282, 30.430292323060261 ], [ -95.665820109924098, 30.430534322767901 ], [ -95.665485109714737, 30.430892322517504 ], [ -95.665251110168001, 30.431120323357455 ], [ -95.664880110037799, 30.431446322758728 ], [ -95.664601110031029, 30.431700323520367 ], [ -95.664389109446205, 30.431893323397819 ], [ -95.663582109267182, 30.432682323418931 ], [ -95.662906109061453, 30.433779323618147 ], [ -95.662784109147395, 30.433921323555548 ], [ -95.662580108867772, 30.434069323482071 ], [ -95.662413109156773, 30.434159323819603 ], [ -95.662260109293641, 30.434222324085837 ], [ -95.662082109453607, 30.434285323841582 ], [ -95.661945109198527, 30.434333323401933 ], [ -95.661800109043696, 30.434367324124985 ], [ -95.661662109035177, 30.434396323725149 ], [ -95.661543108610601, 30.434389324179705 ], [ -95.661438108597494, 30.434383323356027 ], [ -95.661315108862198, 30.434383323563029 ], [ -95.659472108762074, 30.434380323463014 ], [ -95.65562710781073, 30.434374324134133 ], [ -95.653709107465531, 30.434288323960292 ], [ -95.650267105894216, 30.434401324437893 ], [ -95.649706105706073, 30.434579324109421 ], [ -95.649256105788751, 30.434879324193627 ], [ -95.648946105401194, 30.435254324252622 ], [ -95.648458105909981, 30.436160324988546 ], [ -95.648010105652844, 30.436537324533564 ], [ -95.647478105277557, 30.4367773243779 ], [ -95.647317105812505, 30.436820324782065 ], [ -95.647102105803043, 30.436861324422601 ], [ -95.647028106000263, 30.436870324826007 ], [ -95.64640810583812, 30.436874324839231 ], [ -95.642259104696137, 30.436903324816363 ], [ -95.639844103175975, 30.436873325518885 ], [ -95.638152102861284, 30.436906325152624 ], [ -95.635914102207451, 30.436951325516503 ], [ -95.631132101011644, 30.437005325779889 ], [ -95.62858410047393, 30.437033325283668 ], [ -95.62751810029431, 30.437044325496 ], [ -95.626900100074465, 30.437051326019329 ], [ -95.625037099770296, 30.437076325768558 ], [ -95.622849098831608, 30.437075325951877 ], [ -95.622583098949605, 30.437070325709175 ], [ -95.620666098821005, 30.437066326133891 ], [ -95.617520098237407, 30.437084325526616 ], [ -95.616815097435975, 30.437076325807151 ], [ -95.616020097276632, 30.437067325922108 ], [ -95.61536609707062, 30.437067325786696 ], [ -95.614747097665713, 30.43707132644154 ], [ -95.612977096508473, 30.437096326411361 ], [ -95.611098095808828, 30.43712232581683 ], [ -95.610595096056414, 30.437129326401045 ], [ -95.610087095813171, 30.437133326318843 ], [ -95.606359095568848, 30.437163326213927 ], [ -95.602113094461018, 30.437168326918592 ], [ -95.599995093844797, 30.437162326972604 ], [ -95.59887809278041, 30.437164326213836 ], [ -95.598865092932826, 30.439810326721602 ], [ -95.598571093569845, 30.440061326923466 ], [ -95.598565093644012, 30.441321327725483 ], [ -95.597830092696654, 30.442327327398822 ], [ -95.597096092614592, 30.443080328264188 ], [ -95.596947093003564, 30.443710328277469 ], [ -95.596660093356988, 30.444017328048385 ], [ -95.59577309318982, 30.444966328092022 ], [ -95.595759092455211, 30.447739328536368 ], [ -95.595319093287628, 30.448115328569862 ], [ -95.595167092704116, 30.449375329638322 ], [ -95.594579093069456, 30.45000332924721 ], [ -95.594430092452555, 30.450633329472812 ], [ -95.593843093082796, 30.45113532919768 ], [ -95.59296209196873, 30.452140329713355 ], [ -95.593106092201026, 30.452644329953419 ], [ -95.592519092100332, 30.45314633018009 ], [ -95.592222092144553, 30.454027330188289 ], [ -95.591195091956664, 30.45503233087598 ], [ -95.591046092239267, 30.455661330322812 ], [ -95.590459092248551, 30.456163330568362 ], [ -95.590604092201559, 30.456416330773603 ], [ -95.589870092162755, 30.457169330751221 ], [ -95.58972109190573, 30.45767333098264 ], [ -95.587814091058235, 30.459304331498632 ], [ -95.586637090707995, 30.460938331973047 ], [ -95.58663509139997, 30.461443331774678 ], [ -95.586194091475832, 30.461945332258917 ], [ -95.586192091346661, 30.462449332011037 ], [ -95.585897091388574, 30.462826331887399 ], [ -95.585736091168897, 30.465850332927744 ], [ -95.584990091298195, 30.468872333267544 ], [ -95.58496309183262, 30.474291334635179 ], [ -95.585396091425807, 30.47530133442465 ], [ -95.585531091587015, 30.477444335057982 ], [ -95.585961091920765, 30.479210335643128 ], [ -95.585909092019349, 30.489418337644594 ], [ -95.586346091986471, 30.489798337837755 ], [ -95.586302092110742, 30.489909337767827 ], [ -95.586320092621662, 30.489929337987263 ], [ -95.587301092607319, 30.491102337486943 ], [ -95.588048092910697, 30.491972337815202 ], [ -95.588248092968726, 30.492212337677334 ], [ -95.590060093684443, 30.494390338829081 ], [ -95.594782094791483, 30.500219339736976 ], [ -95.59650109533878, 30.501816339830171 ], [ -95.59722709579593, 30.502433339892075 ], [ -95.598278095938412, 30.503312340206101 ], [ -95.598916096902499, 30.504728340398078 ], [ -95.598958096215284, 30.504826340220234 ], [ -95.599053096301105, 30.505044340020316 ], [ -95.599164096965026, 30.50655134054686 ], [ -95.598935097015087, 30.508331340897467 ], [ -95.598885096978478, 30.50898534081605 ], [ -95.598978096188205, 30.509007340818204 ], [ -95.599584096738184, 30.509319340914967 ], [ -95.600149097277978, 30.50962434135057 ], [ -95.600714096995688, 30.509929341073438 ], [ -95.605183097970354, 30.512643341194401 ], [ -95.610949099757988, 30.515302342210191 ], [ -95.611020099621541, 30.515335342310447 ], [ -95.61119010029573, 30.515459341866887 ], [ -95.611285100070305, 30.515526342402769 ], [ -95.612321100001608, 30.516048342057676 ], [ -95.61275210084888, 30.516265341726289 ], [ -95.613271100692529, 30.516540342150865 ], [ -95.614367101101422, 30.517120341722936 ], [ -95.614686101342599, 30.517289342293878 ], [ -95.617725101418841, 30.518894342806647 ], [ -95.619316102562976, 30.519748342738684 ], [ -95.619579102589142, 30.519889342791625 ], [ -95.621509103141634, 30.520924342669311 ], [ -95.621880103476485, 30.521123343004721 ], [ -95.621895103486807, 30.521131342946898 ], [ -95.622258103003446, 30.521322342269929 ], [ -95.624118103777022, 30.522268343180702 ], [ -95.624193103453877, 30.522306342885617 ], [ -95.624910104126457, 30.522730342657951 ], [ -95.625047103482927, 30.5228113426978 ], [ -95.625229103602706, 30.522918342643468 ], [ -95.62669710403982, 30.523684343319385 ], [ -95.626757104958187, 30.523715342861845 ], [ -95.628852105157407, 30.524802342843493 ], [ -95.628867105192185, 30.524810342871959 ], [ -95.631042105391458, 30.525951343229899 ], [ -95.631057105281272, 30.525967343062977 ], [ -95.639912107936127, 30.530646343688812 ], [ -95.639935108255088, 30.530658343856302 ], [ -95.644435109115534, 30.533023344671662 ], [ -95.652898111334636, 30.537519345251948 ], [ -95.652926111880092, 30.537534344493913 ], [ -95.65328011162903, 30.537720344450001 ], [ -95.653511111831605, 30.537841344615703 ], [ -95.653528112169866, 30.53785034506636 ], [ -95.653566112191015, 30.537870345331271 ], [ -95.65661911261418, 30.539471344741731 ], [ -95.656657113112672, 30.539492344773564 ], [ -95.656974112601873, 30.539634344714589 ], [ -95.657003113327718, 30.539647344821184 ], [ -95.657028112532842, 30.539658344702655 ], [ -95.657038113243715, 30.539663344721223 ], [ -95.657080113014459, 30.539685345021599 ], [ -95.662627114630624, 30.542592345316425 ], [ -95.663777114626583, 30.543187345953921 ], [ -95.663839114821869, 30.543219345707747 ], [ -95.666367115431058, 30.544544345462842 ], [ -95.666382115998616, 30.544552345622701 ], [ -95.666415115761978, 30.54456934571218 ], [ -95.671693117468976, 30.547279346499167 ], [ -95.673633117507734, 30.548358346202871 ], [ -95.673907117643012, 30.548501346257957 ], [ -95.673932117586588, 30.548514346009704 ], [ -95.674103118218198, 30.548603346316305 ], [ -95.678251119140995, 30.550772346484734 ], [ -95.685118120717263, 30.554364347538993 ], [ -95.685185120593957, 30.554399347031534 ], [ -95.685197121244912, 30.554405346763545 ], [ -95.690332122587421, 30.557066347414612 ], [ -95.690472122558063, 30.557138347551316 ], [ -95.69202712255651, 30.557953347736046 ], [ -95.694898123294593, 30.559475347876177 ], [ -95.697522124465721, 30.560849348015438 ], [ -95.699021124706292, 30.561634348477149 ], [ -95.699186124859565, 30.561721347900189 ], [ -95.711492127876738, 30.568228348818618 ], [ -95.722256131376113, 30.573903349680304 ], [ -95.722365131800657, 30.573960349310287 ], [ -95.728586132649554, 30.577227349891128 ], [ -95.732942134654252, 30.579541350186219 ], [ -95.732959134150761, 30.579550350007462 ], [ -95.73578113469749, 30.581050350838517 ], [ -95.738541136400542, 30.582513350764959 ], [ -95.744656137908109, 30.585757350890798 ], [ -95.744734137763075, 30.585798351603081 ], [ -95.74551213788682, 30.586210351649523 ], [ -95.745723137918176, 30.58632235168594 ], [ -95.74588213809956, 30.586406351277297 ], [ -95.745935137523929, 30.586434351081994 ], [ -95.745950137794267, 30.586442350944168 ], [ -95.745962138349483, 30.586448351312569 ], [ -95.746042137623775, 30.586490351274378 ], [ -95.748607139022468, 30.587918351725968 ], [ -95.750233138971709, 30.588823351897965 ], [ -95.756364140509447, 30.59209735173792 ], [ -95.756465141005592, 30.592151352286084 ], [ -95.759734141457301, 30.593868352338522 ], [ -95.761550142799848, 30.594821352490765 ], [ -95.762453142298511, 30.595286352282749 ], [ -95.762549142174208, 30.595335352390752 ], [ -95.764086142969674, 30.596133352635825 ], [ -95.766228143985757, 30.597233352759808 ], [ -95.766390144222228, 30.597318352392936 ], [ -95.770218144893462, 30.599288352897894 ], [ -95.773709146143048, 30.601106353309337 ], [ -95.774435145491083, 30.601484353189054 ], [ -95.774812146580572, 30.601664353568651 ], [ -95.774934146257067, 30.601728353199935 ], [ -95.780006147580778, 30.604386353234293 ], [ -95.780145147273728, 30.604458353530717 ], [ -95.780225147752631, 30.604499353252404 ], [ -95.780257147416648, 30.604516353478985 ], [ -95.780276147886568, 30.604526353794256 ], [ -95.780305147734737, 30.604541353519735 ], [ -95.780373147290817, 30.604577353879694 ], [ -95.780442147755778, 30.604612353977991 ], [ -95.78153514813846, 30.605177354024892 ], [ -95.782297147777044, 30.605572354081499 ], [ -95.789881150813002, 30.609512354115484 ], [ -95.79002615045637, 30.609587354475973 ], [ -95.790070150179062, 30.609609354210363 ], [ -95.790125150141023, 30.609637354391118 ], [ -95.790180150133494, 30.609665354549168 ], [ -95.790986150968749, 30.610073354199738 ], [ -95.795813152003163, 30.612575354632472 ], [ -95.795912152374228, 30.612627354915869 ], [ -95.79601115221098, 30.612678354511083 ], [ -95.799511153330272, 30.614491354662999 ], [ -95.800412153450637, 30.614957354894724 ], [ -95.802874153726265, 30.616228354964736 ], [ -95.806464154868493, 30.618085355259694 ], [ -95.807866154973112, 30.618813355148621 ], [ -95.808196155741626, 30.618982355925962 ], [ -95.808303155090528, 30.619039355317799 ], [ -95.809303155760688, 30.619563355985427 ], [ -95.810135156022056, 30.619996356051519 ], [ -95.812113156687246, 30.621026355549922 ], [ -95.812165157050586, 30.621053356180823 ], [ -95.814996157188546, 30.622521355906688 ], [ -95.818817158947951, 30.624502356060226 ], [ -95.818838158273465, 30.624513355883522 ], [ -95.818874158399069, 30.624533356660681 ], [ -95.818896158234722, 30.624544356557465 ], [ -95.818907158599842, 30.624550356357538 ], [ -95.819057158856666, 30.624626356488598 ], [ -95.81970315847451, 30.624955356651444 ], [ -95.819741159061081, 30.624974356738662 ], [ -95.820191158838057, 30.625203356058297 ], [ -95.820373159303017, 30.625202356556496 ], [ -95.821496158780704, 30.625780356319666 ], [ -95.822049159358443, 30.626065356565238 ], [ -95.825859160792774, 30.628027356940215 ], [ -95.826660160598252, 30.628448357023341 ], [ -95.82680316050444, 30.628519356844233 ], [ -95.82741016095261, 30.628819356916047 ], [ -95.82751716046954, 30.628872356917693 ], [ -95.827537161146026, 30.628882356567509 ], [ -95.827613160694725, 30.628921357163858 ], [ -95.827774160955641, 30.629010356577602 ], [ -95.830247161857415, 30.630289356768479 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 731, "Tract": "48339690300", "Area_SqMi": 15.737308736275292, "total_2009": 1371, "total_2010": 1234, "total_2011": 1424, "total_2012": 1704, "total_2013": 1742, "total_2014": 1594, "total_2015": 1628, "total_2016": 1521, "total_2017": 1875, "total_2018": 1632, "total_2019": 1624, "total_2020": 1525, "age1": 470, "age2": 917, "age3": 328, "earn1": 381, "earn2": 494, "earn3": 840, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 249, "naics_s05": 346, "naics_s06": 28, "naics_s07": 296, "naics_s08": 10, "naics_s09": 0, "naics_s10": 44, "naics_s11": 17, "naics_s12": 33, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 78, "naics_s17": 0, "naics_s18": 348, "naics_s19": 38, "naics_s20": 220, "race1": 1496, "race2": 114, "race3": 17, "race4": 56, "race5": 3, "race6": 29, "ethnicity1": 1263, "ethnicity2": 452, "edu1": 248, "edu2": 361, "edu3": 420, "edu4": 216, "Shape_Length": 122192.48282317768, "Shape_Area": 438729232.89426392, "total_2021": 1590, "total_2022": 1715 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.804313136644168, 30.245575280971007 ], [ -95.804310136083799, 30.245352280345813 ], [ -95.804266136452497, 30.241752279890289 ], [ -95.8042241364288, 30.238266279227386 ], [ -95.804127135764205, 30.230286277489359 ], [ -95.804084135639542, 30.226648277202983 ], [ -95.804104135816786, 30.226465277227458 ], [ -95.804108135625853, 30.22639627653998 ], [ -95.804124135941663, 30.226192277030304 ], [ -95.80413013584311, 30.226124276765393 ], [ -95.802772135020291, 30.225270276300346 ], [ -95.795564132994883, 30.223343276348878 ], [ -95.788373131691799, 30.221439276456746 ], [ -95.771975126864845, 30.216788275913135 ], [ -95.766500125095007, 30.215302275909163 ], [ -95.759551123839344, 30.213405275814942 ], [ -95.758119123678711, 30.213015275788102 ], [ -95.756202122854006, 30.212510275557555 ], [ -95.755325123025202, 30.212216275706801 ], [ -95.754599122692412, 30.211875275509531 ], [ -95.753979122141487, 30.211554275797958 ], [ -95.75154812122382, 30.210155275802034 ], [ -95.750548121421858, 30.209620275549817 ], [ -95.746092120195371, 30.207089274607331 ], [ -95.741202118663423, 30.204376274421037 ], [ -95.74005211866745, 30.203703274568884 ], [ -95.738344117320807, 30.202702273869491 ], [ -95.735151116999461, 30.200833273641791 ], [ -95.731732115898922, 30.198922273420305 ], [ -95.731174115816629, 30.198621273556615 ], [ -95.730994115627666, 30.198524274088442 ], [ -95.730306115068089, 30.198152273503727 ], [ -95.729594115110672, 30.197740273532929 ], [ -95.728748115274726, 30.197262273933088 ], [ -95.724769113928431, 30.19500327368646 ], [ -95.724780114140714, 30.194868273231986 ], [ -95.724802113582456, 30.194743273336034 ], [ -95.724446114058594, 30.194541272998652 ], [ -95.724190113625411, 30.194396273013975 ], [ -95.720535112739043, 30.19233427273625 ], [ -95.717581112157546, 30.190667272530014 ], [ -95.716786111597855, 30.190216272745669 ], [ -95.71485111127194, 30.189117272785417 ], [ -95.713654110381555, 30.188414272474564 ], [ -95.710320110131462, 30.186534271853322 ], [ -95.708804109256818, 30.185682271573231 ], [ -95.704938108297114, 30.183393271265921 ], [ -95.701783107401567, 30.181632271488809 ], [ -95.701254106885088, 30.18134727111903 ], [ -95.69899810701348, 30.180078270795349 ], [ -95.697352106367305, 30.179141271215268 ], [ -95.696650105578769, 30.17874227124479 ], [ -95.695743105343297, 30.178227271003085 ], [ -95.69445610524744, 30.177497270457959 ], [ -95.690453104375706, 30.175231270558633 ], [ -95.687163102878657, 30.173376269902139 ], [ -95.683373102016859, 30.171266269606356 ], [ -95.683353102225198, 30.171422269869833 ], [ -95.683351102569432, 30.171478270104 ], [ -95.683350102134298, 30.171527270161953 ], [ -95.683348102242917, 30.171609269559458 ], [ -95.683355102006857, 30.171791270224055 ], [ -95.683686102284256, 30.174712270754291 ], [ -95.683888102900269, 30.176502271135075 ], [ -95.68392910246321, 30.17682827082459 ], [ -95.683951102663812, 30.177038271438871 ], [ -95.683978103009224, 30.177462271258417 ], [ -95.683993102423642, 30.178073270955053 ], [ -95.68398410317883, 30.178595271040091 ], [ -95.683958103030946, 30.17894127138582 ], [ -95.683867103190963, 30.179819271659092 ], [ -95.683829102391385, 30.180355271408832 ], [ -95.683815103103584, 30.180640271897367 ], [ -95.683781102698376, 30.181242271526884 ], [ -95.683738103087762, 30.181541271952405 ], [ -95.683708103162971, 30.181689272164725 ], [ -95.683629103268771, 30.181945271941075 ], [ -95.683554102991152, 30.182125271826163 ], [ -95.683463102925188, 30.182299272168905 ], [ -95.683360102429518, 30.18246927208968 ], [ -95.683302102388311, 30.182553272541348 ], [ -95.683194103000815, 30.182688272550607 ], [ -95.682988103111754, 30.182966272714246 ], [ -95.682926103025949, 30.183055272423914 ], [ -95.68279110232406, 30.183248272083958 ], [ -95.682609102373789, 30.183537272226182 ], [ -95.682350102217342, 30.183974272090335 ], [ -95.682249102755335, 30.184158272532333 ], [ -95.682115102606105, 30.184439272720745 ], [ -95.681999102606639, 30.184705272701507 ], [ -95.681950102901524, 30.184864272483043 ], [ -95.681862102349939, 30.185227272502875 ], [ -95.681835102959099, 30.185359272391164 ], [ -95.681691102860498, 30.185965272877269 ], [ -95.681473102003878, 30.186887272926832 ], [ -95.681221102525356, 30.187880273538553 ], [ -95.680957102934144, 30.188822273584968 ], [ -95.680861102118357, 30.189210273754213 ], [ -95.680834102621745, 30.189300273648982 ], [ -95.680736102558754, 30.18953227371323 ], [ -95.680558101955924, 30.189855273940861 ], [ -95.680517102653511, 30.189923273925906 ], [ -95.680468102183923, 30.189993274047826 ], [ -95.680427102852164, 30.190063273856826 ], [ -95.680360101987176, 30.190155274166742 ], [ -95.680178102219031, 30.19044027368167 ], [ -95.680073102119252, 30.190583274058174 ], [ -95.679973102651743, 30.190737274161478 ], [ -95.679891102138711, 30.190878274236745 ], [ -95.679842102446898, 30.190951273923421 ], [ -95.679741102499861, 30.19118527395419 ], [ -95.679701102248131, 30.191322274284218 ], [ -95.679683101818156, 30.191489274538295 ], [ -95.679678102644829, 30.191654274388977 ], [ -95.679803102768744, 30.19640827549345 ], [ -95.679821102720581, 30.197131275549069 ], [ -95.679921102253672, 30.200129275485747 ], [ -95.679927102431932, 30.200947276029382 ], [ -95.679961102412136, 30.201566275835674 ], [ -95.679985103311111, 30.201831275849937 ], [ -95.68003610252498, 30.202168276389305 ], [ -95.68008910306132, 30.202419276110408 ], [ -95.680173103349148, 30.20272727598482 ], [ -95.680244102909654, 30.202943276424463 ], [ -95.680290102880377, 30.203068276587828 ], [ -95.680412103480805, 30.20345127610755 ], [ -95.680524102673374, 30.203723276732614 ], [ -95.680616102688944, 30.203915276813166 ], [ -95.680737102771715, 30.204141276274243 ], [ -95.681849103511198, 30.205975276755492 ], [ -95.683508103921369, 30.20864027750649 ], [ -95.685902105035311, 30.212498277797987 ], [ -95.687994105097033, 30.215870278889586 ], [ -95.688333106011882, 30.216533278600888 ], [ -95.688557105806552, 30.217143278671326 ], [ -95.689575105765059, 30.220483279576033 ], [ -95.690282105988501, 30.222780280356279 ], [ -95.690818106488408, 30.22451928057367 ], [ -95.691167106978057, 30.225652280426253 ], [ -95.691813106779762, 30.22785728101162 ], [ -95.693029106884808, 30.228003281279967 ], [ -95.695251107958114, 30.228096281200301 ], [ -95.698673108360452, 30.228271280668356 ], [ -95.700980109371784, 30.228389281254273 ], [ -95.703404109940209, 30.22851328074054 ], [ -95.704538110256777, 30.228570280829825 ], [ -95.706027110804897, 30.228646280628258 ], [ -95.706967110619615, 30.22860028058377 ], [ -95.707832110945134, 30.228470280231239 ], [ -95.708874111378279, 30.228232280565489 ], [ -95.7091381112443, 30.228157280930663 ], [ -95.709484111891456, 30.228562280214607 ], [ -95.709748111950717, 30.228608280329375 ], [ -95.710249112139664, 30.228539280125453 ], [ -95.710935111791031, 30.228561280872672 ], [ -95.711779111767655, 30.228721280859908 ], [ -95.713098112853004, 30.22910928046311 ], [ -95.715129113315157, 30.229313280751388 ], [ -95.715657112894505, 30.229450280706537 ], [ -95.715921112773344, 30.229702280755724 ], [ -95.71586811310037, 30.23000028071397 ], [ -95.71568411317827, 30.230412280379486 ], [ -95.715869113392131, 30.230778280509803 ], [ -95.715870113468497, 30.231374280979121 ], [ -95.716081113701037, 30.231534280988228 ], [ -95.715897113670025, 30.231924281105389 ], [ -95.715897113399151, 30.232198280876627 ], [ -95.716425113051187, 30.232587280962868 ], [ -95.716547113720509, 30.232768281554996 ], [ -95.716610113364126, 30.23286228147116 ], [ -95.716663113633416, 30.233343281183039 ], [ -95.716769113628317, 30.233457281582872 ], [ -95.718246113958315, 30.233914281478857 ], [ -95.718378114051674, 30.234028281600029 ], [ -95.718616114670283, 30.234624281058089 ], [ -95.718854114210302, 30.234784281724696 ], [ -95.720199114283801, 30.234943281198387 ], [ -95.720410115117744, 30.235126281430556 ], [ -95.720437114865902, 30.235469281337338 ], [ -95.720253114558858, 30.235676281757602 ], [ -95.720253114287061, 30.235882281443768 ], [ -95.720544114745991, 30.236385282094318 ], [ -95.72057111487986, 30.237141281730398 ], [ -95.720756114781452, 30.237416281840638 ], [ -95.721970114716541, 30.238102281782105 ], [ -95.72231311525141, 30.238170282081136 ], [ -95.722814115146207, 30.238101282299098 ], [ -95.723315115125786, 30.237872281954555 ], [ -95.724291115507626, 30.238077281812334 ], [ -95.725030115501752, 30.237939282304914 ], [ -95.725505116280445, 30.238053281721282 ], [ -95.725980116205434, 30.238396281606661 ], [ -95.726244116847624, 30.23848728158816 ], [ -95.727852116459331, 30.23807428201442 ], [ -95.728063116973516, 30.237799281540902 ], [ -95.728167116802069, 30.23656228134265 ], [ -95.728325116741246, 30.236310281536451 ], [ -95.728509116567849, 30.23617228135215 ], [ -95.729116117052939, 30.236194281146769 ], [ -95.729616117418843, 30.235690281162473 ], [ -95.731674117268909, 30.235711280893469 ], [ -95.732623118010949, 30.235527281255198 ], [ -95.733230117788324, 30.235824281437324 ], [ -95.734549118072394, 30.235731281543792 ], [ -95.735077118241691, 30.235914280810775 ], [ -95.735552119031752, 30.236280281291023 ], [ -95.73592911841294, 30.237326281175925 ], [ -95.736081119112313, 30.237745281359974 ], [ -95.736003118549831, 30.23859328165894 ], [ -95.736795119394415, 30.2390042812908 ], [ -95.738114119749639, 30.239140281443692 ], [ -95.738298119270013, 30.239025282005617 ], [ -95.738298119405016, 30.238659281783853 ], [ -95.738456119079885, 30.238544281349395 ], [ -95.739168119769857, 30.238521281921333 ], [ -95.739774120026894, 30.238062281745979 ], [ -95.74027612021645, 30.238176281321106 ], [ -95.740460120123529, 30.238084281019887 ], [ -95.740644120183219, 30.237649281420921 ], [ -95.741303120081156, 30.237350281178934 ], [ -95.741672119954515, 30.236984280807544 ], [ -95.741777120666811, 30.236777280953451 ], [ -95.742462120623102, 30.236135280655642 ], [ -95.742804120467213, 30.23549428078627 ], [ -95.743542121031737, 30.23498928074897 ], [ -95.744174120741377, 30.234233280108164 ], [ -95.744358120514008, 30.234164280235536 ], [ -95.744781121125101, 30.23425528081146 ], [ -95.74501812131362, 30.234163280545165 ], [ -95.745149121227811, 30.233384280257997 ], [ -95.745280121138222, 30.23327028066203 ], [ -95.745491120866546, 30.233292280522008 ], [ -95.745808120676145, 30.233544280449202 ], [ -95.746019120826091, 30.233521280698586 ], [ -95.746667121648855, 30.233014280177365 ], [ -95.746809121381062, 30.232902280273336 ], [ -95.747785121790457, 30.232924279831554 ], [ -95.748049122096234, 30.232786279851677 ], [ -95.748339121818674, 30.23248828010685 ], [ -95.748681122091057, 30.232442280077759 ], [ -95.74878712168271, 30.232533280403317 ], [ -95.748814121858246, 30.232785279807093 ], [ -95.748919122018421, 30.232854279903236 ], [ -95.749499122289976, 30.232693279830322 ], [ -95.74968412189105, 30.232898279972705 ], [ -95.750238122497464, 30.233035280183714 ], [ -95.75028812170693, 30.233035280350997 ], [ -95.751005122019876, 30.233033279924985 ], [ -95.751690122667398, 30.233216280474018 ], [ -95.753642122774266, 30.233447280397254 ], [ -95.754697123680032, 30.233631280154064 ], [ -95.755119123199819, 30.233815279659179 ], [ -95.755752123747143, 30.233723279822296 ], [ -95.756094123480409, 30.233815280083498 ], [ -95.756332124299917, 30.233976279895209 ], [ -95.756912124089581, 30.234159279662677 ], [ -95.757649124553595, 30.23487028012034 ], [ -95.758704124575843, 30.235100279714349 ], [ -95.759021124299224, 30.235260280219226 ], [ -95.759310124961033, 30.235558280171666 ], [ -95.759442124945309, 30.236085280228163 ], [ -95.760180125334784, 30.236589280281599 ], [ -95.760602124727313, 30.236361280089291 ], [ -95.760866125116337, 30.235811279893866 ], [ -95.76184212569045, 30.235812280245728 ], [ -95.762185125047623, 30.235675280107323 ], [ -95.762291125352519, 30.235194280223926 ], [ -95.76229212491323, 30.234392280252422 ], [ -95.762371125570141, 30.234347279801764 ], [ -95.762451125145745, 30.233980279700035 ], [ -95.762609125434679, 30.233751279605539 ], [ -95.763031125608649, 30.233500279938575 ], [ -95.763058125974666, 30.233317279808954 ], [ -95.762900125535737, 30.233225279184886 ], [ -95.762267125408911, 30.23313327962752 ], [ -95.762161125381851, 30.233018279359005 ], [ -95.762373125771617, 30.232560279511564 ], [ -95.762637125833095, 30.232446279430818 ], [ -95.764377125325439, 30.232562279546265 ], [ -95.764509125461359, 30.232653279192483 ], [ -95.76443012627945, 30.23306627957199 ], [ -95.764588125595907, 30.233226279781448 ], [ -95.765722126309569, 30.233158279150867 ], [ -95.766513126438326, 30.233342279629511 ], [ -95.76701412602975, 30.233823279456832 ], [ -95.767382126787126, 30.234602279579281 ], [ -95.767382126862785, 30.234900280189883 ], [ -95.766696126511462, 30.235334280352713 ], [ -95.766537126392066, 30.235609280074485 ], [ -95.76659012609872, 30.236113280074239 ], [ -95.766853126496187, 30.236754280238955 ], [ -95.767538127091441, 30.237579280543926 ], [ -95.768092126628673, 30.23787728033901 ], [ -95.768883127561068, 30.237970280519239 ], [ -95.769621127437389, 30.238497280271517 ], [ -95.770488128097426, 30.238551280142541 ], [ -95.770728127801945, 30.238566280273073 ], [ -95.770992127342595, 30.238704280858613 ], [ -95.771756128268507, 30.239300280112865 ], [ -95.772969128298101, 30.240010280539792 ], [ -95.774314128414815, 30.239965281016488 ], [ -95.774737128656781, 30.239828280407586 ], [ -95.775528129363991, 30.24019528104548 ], [ -95.776002129394456, 30.240104280336055 ], [ -95.776214129047602, 30.239921280404207 ], [ -95.776688129742098, 30.239829280155998 ], [ -95.777111129204201, 30.239257280787296 ], [ -95.777876129994482, 30.239166280324653 ], [ -95.778113129965945, 30.239189280244194 ], [ -95.778851129307739, 30.239579280016176 ], [ -95.779643130270287, 30.239465280070636 ], [ -95.779880130494618, 30.239763280487168 ], [ -95.780197130368833, 30.239763280190406 ], [ -95.780355129665764, 30.239671280472823 ], [ -95.780751129907031, 30.239694280737748 ], [ -95.781014130685278, 30.239809280672702 ], [ -95.781331129946167, 30.239741280330396 ], [ -95.781621130275639, 30.239191280321624 ], [ -95.782755130453921, 30.239215280334328 ], [ -95.783230131288846, 30.239581280014104 ], [ -95.783837131354147, 30.239559280372262 ], [ -95.784074131022564, 30.23923827997724 ], [ -95.784628131329896, 30.239284279903806 ], [ -95.785288131050891, 30.239124279696814 ], [ -95.786316131945512, 30.239148280237412 ], [ -95.786712131328969, 30.238873279612132 ], [ -95.786818131965362, 30.23853027983245 ], [ -95.787082131744029, 30.238186279674153 ], [ -95.787768131631438, 30.23779727985097 ], [ -95.788691132512483, 30.23706527992309 ], [ -95.789246132066793, 30.236745279825779 ], [ -95.789826132055495, 30.236699279554887 ], [ -95.790248132108644, 30.236768279019625 ], [ -95.79077513264393, 30.237249279423352 ], [ -95.791038133202022, 30.238188279204081 ], [ -95.791565132655052, 30.238624279546837 ], [ -95.791908133512791, 30.239173279875729 ], [ -95.792303133178748, 30.239471280237275 ], [ -95.792752133135068, 30.239495280247496 ], [ -95.793121133142407, 30.239334279356147 ], [ -95.793728133633451, 30.238762279260026 ], [ -95.79470513382924, 30.237274279746469 ], [ -95.795813134019156, 30.236542278801792 ], [ -95.796077133856002, 30.23656527871924 ], [ -95.796367133747196, 30.236817278873907 ], [ -95.796577134602856, 30.237389279422569 ], [ -95.797131134042772, 30.238054279292164 ], [ -95.797579134937479, 30.238237279811603 ], [ -95.798687134295648, 30.238398279670349 ], [ -95.799320134611051, 30.238902279729491 ], [ -95.799715135220751, 30.239612279590705 ], [ -95.800242134950324, 30.240139279488659 ], [ -95.80090113510748, 30.240414279339593 ], [ -95.801244135923156, 30.24080428009955 ], [ -95.801481135714923, 30.241262279590913 ], [ -95.802325135814982, 30.241857280308132 ], [ -95.802589135471734, 30.242224280187056 ], [ -95.802667136038181, 30.243186280457714 ], [ -95.802456135928679, 30.243621280535081 ], [ -95.801954136395054, 30.244170280785038 ], [ -95.801981136403782, 30.244560280229102 ], [ -95.802165136151729, 30.244903280441164 ], [ -95.802376135982215, 30.24510928079247 ], [ -95.802481135669979, 30.245911280655257 ], [ -95.80269213617234, 30.246140281080041 ], [ -95.802956136305085, 30.24620928084078 ], [ -95.80340413629051, 30.246186280852992 ], [ -95.804090136566913, 30.245614280326645 ], [ -95.804313136644168, 30.245575280971007 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 732, "Tract": "48339692900", "Area_SqMi": 29.131667037408903, "total_2009": 214, "total_2010": 130, "total_2011": 169, "total_2012": 619, "total_2013": 650, "total_2014": 710, "total_2015": 762, "total_2016": 705, "total_2017": 729, "total_2018": 950, "total_2019": 1056, "total_2020": 1117, "age1": 316, "age2": 958, "age3": 298, "earn1": 209, "earn2": 442, "earn3": 921, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 411, "naics_s05": 219, "naics_s06": 14, "naics_s07": 91, "naics_s08": 30, "naics_s09": 0, "naics_s10": 3, "naics_s11": 1, "naics_s12": 19, "naics_s13": 5, "naics_s14": 22, "naics_s15": 695, "naics_s16": 21, "naics_s17": 0, "naics_s18": 28, "naics_s19": 13, "naics_s20": 0, "race1": 1381, "race2": 114, "race3": 13, "race4": 44, "race5": 1, "race6": 19, "ethnicity1": 1125, "ethnicity2": 447, "edu1": 293, "edu2": 337, "edu3": 359, "edu4": 267, "Shape_Length": 118138.09036314086, "Shape_Area": 812141017.65652406, "total_2021": 1256, "total_2022": 1572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.23895499285139, 30.259661303569565 ], [ -95.238765992456109, 30.259620303733829 ], [ -95.238551992354175, 30.259554303668967 ], [ -95.238138992344474, 30.259399303346328 ], [ -95.237711992166709, 30.259206303655848 ], [ -95.237117991684954, 30.258911303244091 ], [ -95.23393599079094, 30.257227303506518 ], [ -95.233641991158194, 30.257109302943579 ], [ -95.23334599130223, 30.25700930288254 ], [ -95.232887991247679, 30.256878302784266 ], [ -95.226484989485598, 30.255227303149283 ], [ -95.223003988507273, 30.254310303393577 ], [ -95.221096987552926, 30.253808303293003 ], [ -95.220434987417931, 30.25364430271393 ], [ -95.219984986889386, 30.253545303191601 ], [ -95.219657987342046, 30.253473303364046 ], [ -95.219080987422387, 30.253416303264498 ], [ -95.218454986900397, 30.253385302497239 ], [ -95.218109986857556, 30.253402303290201 ], [ -95.21784298700122, 30.253430302736721 ], [ -95.217715987215144, 30.253444302965843 ], [ -95.217553986808937, 30.253473303168253 ], [ -95.217179986391997, 30.253539303018211 ], [ -95.21356298614613, 30.254347303187348 ], [ -95.213088985555515, 30.254430303593999 ], [ -95.21266498602553, 30.254473303375718 ], [ -95.212240985412706, 30.25450030327108 ], [ -95.211833984833589, 30.254489303603108 ], [ -95.211349985346743, 30.254450303804038 ], [ -95.210788984567046, 30.254352303199347 ], [ -95.210272985131468, 30.254230303453429 ], [ -95.209658984284786, 30.254020303236111 ], [ -95.209012984276825, 30.253688303676324 ], [ -95.202352982953769, 30.24996630311847 ], [ -95.20186398275068, 30.249638303153684 ], [ -95.201544982432566, 30.249385302512376 ], [ -95.201196982600791, 30.249064302485152 ], [ -95.200939981877127, 30.248812302866504 ], [ -95.200713981786819, 30.248519302587816 ], [ -95.200670982260093, 30.248463302718207 ], [ -95.199996981593799, 30.24764130231938 ], [ -95.199734982388065, 30.247357302532258 ], [ -95.199649982018101, 30.247265302795707 ], [ -95.199286981259291, 30.246928302068479 ], [ -95.198875981461981, 30.246630302048732 ], [ -95.198430981170716, 30.246372302228284 ], [ -95.197952981160952, 30.246155302597597 ], [ -95.197443981729521, 30.245965302050454 ], [ -95.19696198084786, 30.245830301868608 ], [ -95.196356981259271, 30.245689302044322 ], [ -95.195795980950351, 30.245605302265663 ], [ -95.189613979441532, 30.245042302675905 ], [ -95.189030978957831, 30.244968302039805 ], [ -95.188675979168536, 30.244889302714466 ], [ -95.188497978973402, 30.244837302576574 ], [ -95.188103979275468, 30.244705302617607 ], [ -95.18794697904066, 30.244632302565385 ], [ -95.187809978313197, 30.244562301824512 ], [ -95.187666978374111, 30.244478302121173 ], [ -95.187542979084583, 30.244411301949381 ], [ -95.187400978560959, 30.244327302263436 ], [ -95.187149978994071, 30.24416130191176 ], [ -95.186972978030894, 30.244026301813648 ], [ -95.186915978351877, 30.243975302525747 ], [ -95.186810978409127, 30.243895302212181 ], [ -95.186054978220952, 30.243324301618834 ], [ -95.184838977693545, 30.242423301657166 ], [ -95.183827977848196, 30.241654301983356 ], [ -95.183307977541361, 30.241271301444964 ], [ -95.182305976884805, 30.240538301984486 ], [ -95.180905976553902, 30.239491301216134 ], [ -95.179056976657563, 30.238092300853758 ], [ -95.178910975657288, 30.237982301595867 ], [ -95.17717497567962, 30.236725301009777 ], [ -95.176902975365294, 30.236520301402223 ], [ -95.176467975620952, 30.236210301228319 ], [ -95.176101975632776, 30.235982301128789 ], [ -95.176043975115306, 30.235949300649398 ], [ -95.175715975438848, 30.235765300933739 ], [ -95.175307975098761, 30.235555301268725 ], [ -95.173941974993738, 30.234876300849713 ], [ -95.172657973899121, 30.234245301030825 ], [ -95.172027974594428, 30.233957301081706 ], [ -95.171699974173137, 30.233800300253716 ], [ -95.171136973579507, 30.233550300834938 ], [ -95.171057974324157, 30.233503300542246 ], [ -95.170667974049863, 30.2333663001078 ], [ -95.170267973983186, 30.23324430080368 ], [ -95.168352973162456, 30.232770300953742 ], [ -95.168072972557511, 30.2327003005229 ], [ -95.167996972885021, 30.232685300255934 ], [ -95.167919973532548, 30.232663300075 ], [ -95.167689972704665, 30.232615300437573 ], [ -95.167455972875175, 30.232578300759769 ], [ -95.167379972774881, 30.23257130046979 ], [ -95.16729997324498, 30.232557300609582 ], [ -95.167063973278246, 30.232537300896581 ], [ -95.166870973270846, 30.23252930073329 ], [ -95.166022972346568, 30.232526300489681 ], [ -95.165770972409931, 30.232525300397665 ], [ -95.165082972055032, 30.232529300286462 ], [ -95.164903971956605, 30.232530300233311 ], [ -95.164247972024171, 30.232534300306849 ], [ -95.164152971691408, 30.232742300607136 ], [ -95.163889971783405, 30.233316301170678 ], [ -95.163220972138078, 30.234802300856646 ], [ -95.162828972022709, 30.235888301259063 ], [ -95.16272597176301, 30.236179301619405 ], [ -95.162561972151465, 30.236753301082139 ], [ -95.16194797183681, 30.238316301865925 ], [ -95.161488971706433, 30.239167302133456 ], [ -95.161238971496374, 30.239574302180202 ], [ -95.160890971557166, 30.240088301827758 ], [ -95.160464971752674, 30.240672302287141 ], [ -95.160356971662608, 30.240828302246101 ], [ -95.160120971815829, 30.24112630229736 ], [ -95.159617971208348, 30.24172830263506 ], [ -95.159246971370976, 30.242145302316025 ], [ -95.158916971439197, 30.242480302906763 ], [ -95.15884297076849, 30.242552303247503 ], [ -95.158564971504617, 30.242843302592433 ], [ -95.158138971012875, 30.243279303183616 ], [ -95.157767971437679, 30.243658302718593 ], [ -95.156327970673843, 30.245060303780175 ], [ -95.155414970242873, 30.245961303880197 ], [ -95.154753969978643, 30.246677304242176 ], [ -95.153527969627618, 30.248014304480446 ], [ -95.152829969632208, 30.248838304375216 ], [ -95.151581970110286, 30.250302304488812 ], [ -95.151441969928328, 30.250472304882759 ], [ -95.151355969512153, 30.250575305142405 ], [ -95.151264969822279, 30.250692304720999 ], [ -95.150928969127534, 30.251126304395633 ], [ -95.150688969835656, 30.251413305097095 ], [ -95.149222969539679, 30.253482305041068 ], [ -95.148449968604723, 30.254595306031675 ], [ -95.14748496858661, 30.256017305893231 ], [ -95.147024968297657, 30.256696305788733 ], [ -95.145650968113742, 30.258768306510163 ], [ -95.144336968454041, 30.260692306626247 ], [ -95.143955968294378, 30.261303306771541 ], [ -95.142713967502758, 30.262968307446226 ], [ -95.141893968107652, 30.264301307792323 ], [ -95.141759968269497, 30.264502307762115 ], [ -95.14125596820152, 30.265210308045464 ], [ -95.140680967820231, 30.26608130854563 ], [ -95.140173967913881, 30.266822308405775 ], [ -95.139520967427998, 30.267791308514383 ], [ -95.138795967191228, 30.268859308958049 ], [ -95.138686966867425, 30.269019308946341 ], [ -95.138588967092957, 30.269176309130074 ], [ -95.138765967267432, 30.269325309199978 ], [ -95.137261967012194, 30.271507309311684 ], [ -95.137434966975547, 30.271958309470293 ], [ -95.137458967397279, 30.272019309375828 ], [ -95.138595967188493, 30.274945310308691 ], [ -95.138990967256035, 30.275958310393083 ], [ -95.139656967824862, 30.277680310627485 ], [ -95.140147968227339, 30.278959311161774 ], [ -95.140153968170353, 30.278975311191338 ], [ -95.140171968349478, 30.279019311165776 ], [ -95.140668968612019, 30.280296310860429 ], [ -95.141182968197285, 30.281514310945809 ], [ -95.141188968018369, 30.281585311593108 ], [ -95.141198968617729, 30.28164031175864 ], [ -95.141209968342963, 30.281720311483188 ], [ -95.141515968983654, 30.282492311909852 ], [ -95.143325969573709, 30.287189312340136 ], [ -95.143339969598969, 30.287224312422389 ], [ -95.14407096973774, 30.289041312681714 ], [ -95.144139969565131, 30.289213312642115 ], [ -95.144195970031703, 30.28934931324352 ], [ -95.148598971620672, 30.300616314921161 ], [ -95.15272497322465, 30.311173316877973 ], [ -95.153439973563039, 30.313022317693001 ], [ -95.153526972842201, 30.313244317248397 ], [ -95.153883972937535, 30.31415231725186 ], [ -95.154276973628996, 30.315163318090917 ], [ -95.154537973536492, 30.315837317660041 ], [ -95.154979973798305, 30.3169743176657 ], [ -95.155040974153593, 30.317131317794633 ], [ -95.15545697351844, 30.318200318267991 ], [ -95.155850974456712, 30.319212318657431 ], [ -95.155855973543524, 30.319225318769757 ], [ -95.156122974550655, 30.31990731862011 ], [ -95.156157974054167, 30.319993318514513 ], [ -95.156913974410983, 30.321917319131146 ], [ -95.157438974458671, 30.323320319310898 ], [ -95.157499974658094, 30.323478319464531 ], [ -95.157513974897824, 30.323516319050224 ], [ -95.157948974992607, 30.324564319121357 ], [ -95.159201974767115, 30.327670319772384 ], [ -95.159216974737078, 30.327716320516014 ], [ -95.159264975351235, 30.327854319797812 ], [ -95.159280974799785, 30.327901320135148 ], [ -95.159292975391651, 30.327937320191346 ], [ -95.159299975616989, 30.327956320288781 ], [ -95.159364975569915, 30.328119320289471 ], [ -95.159386974924743, 30.328174320135094 ], [ -95.159420974974111, 30.328260320000254 ], [ -95.159524975301693, 30.328520320561779 ], [ -95.159559975016592, 30.32860731998068 ], [ -95.159708975587179, 30.329009320547506 ], [ -95.160156975116607, 30.330217320168146 ], [ -95.160306975651764, 30.330620321060326 ], [ -95.160334975235898, 30.330762320263993 ], [ -95.160385976134251, 30.331008320571012 ], [ -95.160503975827652, 30.331149320565522 ], [ -95.160597975353909, 30.331261320803609 ], [ -95.161016976298725, 30.33235432079243 ], [ -95.161900976480339, 30.33465632105079 ], [ -95.162263976128727, 30.33560232207077 ], [ -95.162276976260202, 30.335636321261472 ], [ -95.16237297647038, 30.335880321597266 ], [ -95.162489976843304, 30.336179322198848 ], [ -95.162532976269318, 30.336289321595036 ], [ -95.162564976469369, 30.336370321927362 ], [ -95.162704976607557, 30.33672732174713 ], [ -95.163301977133031, 30.338248322065425 ], [ -95.164227976732533, 30.340609322616249 ], [ -95.165093976988715, 30.342814323409737 ], [ -95.165691977478929, 30.344336323564203 ], [ -95.165736977393067, 30.344464323069708 ], [ -95.165830978136142, 30.344727322950384 ], [ -95.16586597815261, 30.344850323159687 ], [ -95.165903977479857, 30.34498132377562 ], [ -95.165940977612038, 30.344956323145144 ], [ -95.166702977692424, 30.344580323120184 ], [ -95.166722978410874, 30.344568323405127 ], [ -95.166824977480786, 30.344518323706478 ], [ -95.166850978461028, 30.344505323135078 ], [ -95.16882997869341, 30.34348332257683 ], [ -95.169030978907969, 30.34337932325484 ], [ -95.175443980022038, 30.340777321847053 ], [ -95.17560597989835, 30.340711322439642 ], [ -95.176467980404581, 30.340360322228726 ], [ -95.176529979866814, 30.340335322156967 ], [ -95.176548980725428, 30.34032732240837 ], [ -95.176574980659197, 30.340317321755943 ], [ -95.176597980493298, 30.340308321728191 ], [ -95.176665980254839, 30.340280322151216 ], [ -95.176842980136016, 30.340208321735425 ], [ -95.17762598064273, 30.339889322277013 ], [ -95.17783998048958, 30.33980132215158 ], [ -95.178690980776906, 30.339434322011304 ], [ -95.17873298037243, 30.3394143215715 ], [ -95.178899980574471, 30.33933932203416 ], [ -95.178981980877012, 30.339303322078628 ], [ -95.179137981433101, 30.33923332175328 ], [ -95.179469981353705, 30.339084321640602 ], [ -95.180504980831586, 30.338620321642342 ], [ -95.180528980881974, 30.338611321323928 ], [ -95.180590981540121, 30.338590321231532 ], [ -95.18127098119426, 30.338321321350577 ], [ -95.182535981772219, 30.337865321466474 ], [ -95.182778981787976, 30.337777320963948 ], [ -95.1830299820638, 30.337687320982006 ], [ -95.183171982205167, 30.337636321069915 ], [ -95.183164981825499, 30.337561321078155 ], [ -95.186075982808205, 30.336174320546409 ], [ -95.193220984495525, 30.332770319835777 ], [ -95.193245984694656, 30.332700319898201 ], [ -95.198443985785303, 30.330545319779908 ], [ -95.198482985234051, 30.330529318910759 ], [ -95.198516985357429, 30.330515319596298 ], [ -95.208727987757683, 30.326487318313166 ], [ -95.209934988023676, 30.326017317644105 ], [ -95.209954988630571, 30.326012317905615 ], [ -95.210052988647931, 30.326020317558857 ], [ -95.210071988170128, 30.326012317658886 ], [ -95.211290988689427, 30.325516317916861 ], [ -95.219803990394752, 30.322051317188247 ], [ -95.219910990655308, 30.322028317100091 ], [ -95.225587991431809, 30.319539316498794 ], [ -95.225504991520907, 30.319517315974839 ], [ -95.22508199128518, 30.319151316056811 ], [ -95.225054991392042, 30.318944315621028 ], [ -95.225133991250232, 30.318807316262486 ], [ -95.225767991719295, 30.318600316342231 ], [ -95.225925992033481, 30.318119315451593 ], [ -95.225053991666499, 30.317707315428521 ], [ -95.225105992013624, 30.316974315846149 ], [ -95.22481499181481, 30.316677315519502 ], [ -95.224735991134978, 30.316310315255318 ], [ -95.224312991776372, 30.316219315645601 ], [ -95.22436499119101, 30.3156463151042 ], [ -95.223677991121676, 30.31550931534283 ], [ -95.223941991015309, 30.314959315113803 ], [ -95.223730991644899, 30.314776315366966 ], [ -95.223835991079042, 30.314181315401271 ], [ -95.223755990825254, 30.314112315044728 ], [ -95.223201991067768, 30.314067315027017 ], [ -95.223069990802941, 30.313998315242042 ], [ -95.22306899080499, 30.313654315314292 ], [ -95.222514990587769, 30.313448314553447 ], [ -95.222302990920753, 30.313128315087209 ], [ -95.222290991113184, 30.312835314839965 ], [ -95.222284990270197, 30.31269931459563 ], [ -95.228889992110595, 30.312345314705244 ], [ -95.228753992665716, 30.311528314512827 ], [ -95.228669992400086, 30.311023314422837 ], [ -95.228420992673463, 30.309521313878761 ], [ -95.228416991696776, 30.309351314212279 ], [ -95.228350992218637, 30.306540313307998 ], [ -95.228244992187129, 30.304969313134979 ], [ -95.227973991479601, 30.303402312452071 ], [ -95.227931991818579, 30.302974312864059 ], [ -95.227927991951447, 30.302844312499392 ], [ -95.227919992182422, 30.302540312845927 ], [ -95.227904991650007, 30.302033312069131 ], [ -95.227870991200518, 30.300821312643162 ], [ -95.227835991848195, 30.300485312306495 ], [ -95.227414990987967, 30.297926311690105 ], [ -95.227354991679846, 30.297630311859116 ], [ -95.227356991411909, 30.296956311439175 ], [ -95.227445991574612, 30.295875311695248 ], [ -95.227464991075095, 30.295647311531347 ], [ -95.22746699120205, 30.295278311125838 ], [ -95.227457991654219, 30.294949311272102 ], [ -95.22741099166339, 30.293019310280922 ], [ -95.227222990365973, 30.285431309366501 ], [ -95.230424991405158, 30.278817307660031 ], [ -95.231976991988375, 30.275587307279061 ], [ -95.235466992543692, 30.268441305211212 ], [ -95.236652992534417, 30.265987304488174 ], [ -95.236854992697118, 30.265561304738718 ], [ -95.237034991841597, 30.26515130473841 ], [ -95.237255991907489, 30.264516304261829 ], [ -95.237734991967031, 30.263033304453504 ], [ -95.23895499285139, 30.259661303569565 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 733, "Tract": "48201240504", "Area_SqMi": 0.16444436410386692, "total_2009": 27, "total_2010": 13, "total_2011": 9, "total_2012": 9, "total_2013": 8, "total_2014": 7, "total_2015": 8, "total_2016": 9, "total_2017": 10, "total_2018": 10, "total_2019": 13, "total_2020": 10, "age1": 1, "age2": 11, "age3": 0, "earn1": 3, "earn2": 8, "earn3": 1, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 12, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 5, "race2": 0, "race3": 0, "race4": 7, "race5": 0, "race6": 0, "ethnicity1": 8, "ethnicity2": 4, "edu1": 3, "edu2": 3, "edu3": 2, "edu4": 3, "Shape_Length": 11966.153323161814, "Shape_Area": 4584427.4218737995, "total_2021": 12, "total_2022": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399483019819044, 29.950603234968106 ], [ -95.399409019503977, 29.950386235104215 ], [ -95.399194019744201, 29.949907234955667 ], [ -95.39894701932927, 29.949474234809252 ], [ -95.398732019638885, 29.949160234712906 ], [ -95.398550019400503, 29.948929235024615 ], [ -95.398078019239946, 29.948394234437043 ], [ -95.39776401890748, 29.948054234911147 ], [ -95.397558018863307, 29.947836234427886 ], [ -95.39725701921347, 29.947516233991966 ], [ -95.397054018385674, 29.947307234500517 ], [ -95.396713018693333, 29.946840234550791 ], [ -95.396570018681402, 29.946597234046145 ], [ -95.396436018754812, 29.946340234485948 ], [ -95.396374018794788, 29.946215234230767 ], [ -95.396155018557195, 29.945603233997289 ], [ -95.396035018692061, 29.945183233937154 ], [ -95.395811018344432, 29.945217233824941 ], [ -95.395363018160651, 29.945184234185664 ], [ -95.395211017620014, 29.945201234092089 ], [ -95.395040017957228, 29.945245234258415 ], [ -95.394813017638967, 29.945267233885811 ], [ -95.393835017311631, 29.945261234299927 ], [ -95.393481018149842, 29.945244233882505 ], [ -95.393096017496319, 29.945266234452511 ], [ -95.392370017535796, 29.945238233880485 ], [ -95.392118016949993, 29.945249233983883 ], [ -95.391632017498281, 29.945249234435931 ], [ -95.390584016845338, 29.945276234462952 ], [ -95.39025501726924, 29.945260234349309 ], [ -95.390091016643197, 29.94525423405651 ], [ -95.389763016559172, 29.945303234002292 ], [ -95.389558016415478, 29.945393234178781 ], [ -95.38935201633322, 29.945485234417973 ], [ -95.389106016448693, 29.94563923467221 ], [ -95.388820016338599, 29.94607223484012 ], [ -95.388803016589137, 29.946100234146666 ], [ -95.388159016443353, 29.946930234627299 ], [ -95.38778601628249, 29.947381234962421 ], [ -95.387578015978505, 29.947716234466611 ], [ -95.387514016008097, 29.947738234724238 ], [ -95.38738801601346, 29.947916234477454 ], [ -95.387022015838809, 29.948436235167527 ], [ -95.386611016403506, 29.948871235354847 ], [ -95.386264015536668, 29.949162235176232 ], [ -95.386081015639434, 29.949277235298297 ], [ -95.385948015444782, 29.949316234730667 ], [ -95.38586701571306, 29.949315234817103 ], [ -95.385969016183594, 29.949721235133431 ], [ -95.386341016248494, 29.949615235394727 ], [ -95.386752016618232, 29.949389235322009 ], [ -95.38712301664367, 29.94896523522981 ], [ -95.387707016182688, 29.948217234931981 ], [ -95.388461016881351, 29.948747235167417 ], [ -95.388724016494407, 29.948428235076182 ], [ -95.388813016326438, 29.948341234652556 ], [ -95.388916016166178, 29.948278234742205 ], [ -95.389004016167348, 29.948243234612896 ], [ -95.389102016581617, 29.948223234893732 ], [ -95.389208016822764, 29.94821023518141 ], [ -95.389608017306244, 29.948196234376567 ], [ -95.390395017389963, 29.948188234384908 ], [ -95.390563017047697, 29.948190234818863 ], [ -95.3911930174811, 29.948183235109138 ], [ -95.391702017815192, 29.94817123469932 ], [ -95.391975016923695, 29.94817123459428 ], [ -95.392776017587607, 29.948163234981905 ], [ -95.393168017781719, 29.948165234821392 ], [ -95.393187017927346, 29.949373234781991 ], [ -95.393186017927476, 29.949534235000833 ], [ -95.393192017781118, 29.950659235146841 ], [ -95.394167018348952, 29.950655235081033 ], [ -95.395491018937079, 29.95063723539543 ], [ -95.39570101875654, 29.950638234889652 ], [ -95.397073018669715, 29.950627235281232 ], [ -95.398120019369827, 29.950619234798442 ], [ -95.399483019819044, 29.950603234968106 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 734, "Tract": "48201550101", "Area_SqMi": 0.32701631869577358, "total_2009": 4310, "total_2010": 4671, "total_2011": 4546, "total_2012": 4317, "total_2013": 4628, "total_2014": 4684, "total_2015": 3938, "total_2016": 3832, "total_2017": 3382, "total_2018": 3467, "total_2019": 3362, "total_2020": 2719, "age1": 309, "age2": 1071, "age3": 458, "earn1": 221, "earn2": 580, "earn3": 1037, "naics_s01": 0, "naics_s02": 50, "naics_s03": 0, "naics_s04": 227, "naics_s05": 36, "naics_s06": 54, "naics_s07": 64, "naics_s08": 6, "naics_s09": 0, "naics_s10": 96, "naics_s11": 279, "naics_s12": 103, "naics_s13": 0, "naics_s14": 780, "naics_s15": 4, "naics_s16": 56, "naics_s17": 0, "naics_s18": 55, "naics_s19": 28, "naics_s20": 0, "race1": 1295, "race2": 402, "race3": 18, "race4": 92, "race5": 3, "race6": 28, "ethnicity1": 1194, "ethnicity2": 644, "edu1": 394, "edu2": 384, "edu3": 448, "edu4": 303, "Shape_Length": 15456.574906625774, "Shape_Area": 9116655.2712150551, "total_2021": 2518, "total_2022": 1838 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.433833027882415, 29.946371232869147 ], [ -95.434169028508478, 29.946127233308175 ], [ -95.433708028439312, 29.946140232545375 ], [ -95.433467028417397, 29.946147232920893 ], [ -95.43265102782631, 29.946312233198494 ], [ -95.432248027180975, 29.946457233109161 ], [ -95.431977027668509, 29.946590232597721 ], [ -95.431730027571106, 29.94673723333549 ], [ -95.431538026992627, 29.946862233391009 ], [ -95.431253027176012, 29.947093232763297 ], [ -95.431051026976519, 29.947280233070952 ], [ -95.430826027824651, 29.947480232841389 ], [ -95.430312027125382, 29.947947233585634 ], [ -95.430027027324655, 29.948153233829348 ], [ -95.429804026857084, 29.948295233476536 ], [ -95.429655026716929, 29.948381233110599 ], [ -95.429397027496591, 29.948499233582609 ], [ -95.429112026866903, 29.948603233623615 ], [ -95.42904702686009, 29.948627233322817 ], [ -95.428803026730307, 29.948695233647339 ], [ -95.428372026716218, 29.948815233569228 ], [ -95.42795202669933, 29.948843233956037 ], [ -95.427874026662607, 29.948851233413052 ], [ -95.427460026685054, 29.948895233449075 ], [ -95.42655902650273, 29.948950233610311 ], [ -95.425504026089683, 29.948961233520709 ], [ -95.424766025952422, 29.948966233957172 ], [ -95.424473025819424, 29.948968234000962 ], [ -95.424408025517067, 29.948967233949823 ], [ -95.424191025883928, 29.948964233462515 ], [ -95.423882025359973, 29.948970234206936 ], [ -95.422181025023903, 29.948999233662406 ], [ -95.421177024854956, 29.948993234131592 ], [ -95.420300024831803, 29.949016233825756 ], [ -95.419715024380722, 29.949031234153637 ], [ -95.418329024730369, 29.949054233658323 ], [ -95.417963024400535, 29.949063233884104 ], [ -95.417434023770937, 29.949038233919119 ], [ -95.417310023840088, 29.949032234231467 ], [ -95.417205023677269, 29.949035234063679 ], [ -95.417109024048827, 29.94903723384196 ], [ -95.417187023597052, 29.9491812343432 ], [ -95.417817024223368, 29.951257234692495 ], [ -95.41790402394092, 29.951542234551859 ], [ -95.418125024180227, 29.952441235100096 ], [ -95.41823502485677, 29.953057234515434 ], [ -95.418262024760182, 29.953248234843702 ], [ -95.418451024923158, 29.954784234720272 ], [ -95.418548024126537, 29.956059235833838 ], [ -95.418567024632253, 29.956367235918506 ], [ -95.41861902468618, 29.956809235240129 ], [ -95.418620024382449, 29.956881235211821 ], [ -95.418683025027249, 29.95688123595767 ], [ -95.418911024707754, 29.956882235754765 ], [ -95.419261024662575, 29.956883235941486 ], [ -95.4199500250065, 29.956767235896692 ], [ -95.420297025289301, 29.956646235696098 ], [ -95.420707025565108, 29.95643223507318 ], [ -95.420764025229261, 29.956393235116181 ], [ -95.421528025860468, 29.955855234946927 ], [ -95.421749025714206, 29.955629235544315 ], [ -95.42191302527381, 29.955585235047625 ], [ -95.422033025916178, 29.955536234802064 ], [ -95.422393025230804, 29.955514235246319 ], [ -95.42291702597538, 29.95550323475787 ], [ -95.423146026039234, 29.955488234770954 ], [ -95.423252026107221, 29.955481234783782 ], [ -95.423511025467349, 29.955387235480785 ], [ -95.423788026418464, 29.955255234679271 ], [ -95.424104025985699, 29.955074234629887 ], [ -95.424388026165516, 29.954893234612399 ], [ -95.424458025949576, 29.954849235055949 ], [ -95.424493026097565, 29.954842235112658 ], [ -95.424704025978926, 29.954799234708876 ], [ -95.424893026296445, 29.954827235097412 ], [ -95.425152026050498, 29.954810235218087 ], [ -95.425443026781238, 29.95472823503717 ], [ -95.425530026721873, 29.954683235265183 ], [ -95.425714026239206, 29.954590235262557 ], [ -95.426049025989926, 29.954442234633781 ], [ -95.426087026702021, 29.954436234805254 ], [ -95.426219026325356, 29.954370234840169 ], [ -95.426339026817317, 29.954272235049501 ], [ -95.426516026659911, 29.95405723473954 ], [ -95.426636026357258, 29.953958234589891 ], [ -95.426756026919577, 29.953881234301129 ], [ -95.426958026609142, 29.953815234565536 ], [ -95.4272920270284, 29.953821234586538 ], [ -95.427583027184653, 29.953848234873309 ], [ -95.427741026520422, 29.953821234242319 ], [ -95.427968026852412, 29.953755234790684 ], [ -95.428233027287021, 29.953579234413819 ], [ -95.428505026677414, 29.953425234614219 ], [ -95.428915027439999, 29.953095234639168 ], [ -95.429117027578741, 29.952864234018026 ], [ -95.429199026717598, 29.952754234579253 ], [ -95.429275026954713, 29.952573234193995 ], [ -95.429281027540299, 29.952483234116606 ], [ -95.429313026711625, 29.95204023408294 ], [ -95.429344026926728, 29.951875234021514 ], [ -95.429391027169686, 29.951783233833353 ], [ -95.429414027133092, 29.951737234421355 ], [ -95.429515027428593, 29.951594233847267 ], [ -95.429717027492302, 29.951358233726928 ], [ -95.429786027420278, 29.951308234185966 ], [ -95.430002027558729, 29.951099234415615 ], [ -95.430121027609516, 29.950984234069725 ], [ -95.430272027384362, 29.950863233743299 ], [ -95.430348027496521, 29.95078123427723 ], [ -95.430386027746422, 29.950649234063441 ], [ -95.430500027779445, 29.950390234302585 ], [ -95.430657027241978, 29.950115233680489 ], [ -95.430717026976069, 29.950069233898756 ], [ -95.430784027727853, 29.950016233723613 ], [ -95.430954027708623, 29.949934233625807 ], [ -95.431156027125951, 29.949758233440416 ], [ -95.431308027134477, 29.949555233982476 ], [ -95.431466027314187, 29.94923623385802 ], [ -95.43160402739187, 29.94899423340382 ], [ -95.431718027135318, 29.948840233751756 ], [ -95.432362028249671, 29.948285232998618 ], [ -95.432551027687055, 29.948087233754123 ], [ -95.432659028239485, 29.947872233303496 ], [ -95.432697027638994, 29.947751233271084 ], [ -95.432697027380556, 29.947586233606764 ], [ -95.432709027315951, 29.947443233237134 ], [ -95.432829027575238, 29.947202233492362 ], [ -95.432924027752534, 29.947119232811342 ], [ -95.43313802742351, 29.946899232742297 ], [ -95.43361202840785, 29.9466532326466 ], [ -95.433625027880808, 29.94664623262787 ], [ -95.433833027882415, 29.946371232869147 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 735, "Tract": "48201240102", "Area_SqMi": 0.74326055809277425, "total_2009": 11110, "total_2010": 10821, "total_2011": 11076, "total_2012": 10668, "total_2013": 11794, "total_2014": 11113, "total_2015": 9919, "total_2016": 8635, "total_2017": 7778, "total_2018": 7116, "total_2019": 6896, "total_2020": 5500, "age1": 909, "age2": 3524, "age3": 1191, "earn1": 515, "earn2": 916, "earn3": 4193, "naics_s01": 0, "naics_s02": 643, "naics_s03": 0, "naics_s04": 5, "naics_s05": 32, "naics_s06": 1075, "naics_s07": 173, "naics_s08": 252, "naics_s09": 81, "naics_s10": 348, "naics_s11": 78, "naics_s12": 1468, "naics_s13": 291, "naics_s14": 316, "naics_s15": 100, "naics_s16": 178, "naics_s17": 21, "naics_s18": 443, "naics_s19": 119, "naics_s20": 1, "race1": 3957, "race2": 1022, "race3": 46, "race4": 502, "race5": 8, "race6": 89, "ethnicity1": 4073, "ethnicity2": 1551, "edu1": 849, "edu2": 1111, "edu3": 1380, "edu4": 1375, "Shape_Length": 20085.539222453903, "Shape_Area": 20720832.256467782, "total_2021": 5059, "total_2022": 5624 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.418620024382449, 29.956881235211821 ], [ -95.41861902468618, 29.956809235240129 ], [ -95.418567024632253, 29.956367235918506 ], [ -95.418548024126537, 29.956059235833838 ], [ -95.418451024923158, 29.954784234720272 ], [ -95.418262024760182, 29.953248234843702 ], [ -95.41823502485677, 29.953057234515434 ], [ -95.418125024180227, 29.952441235100096 ], [ -95.41790402394092, 29.951542234551859 ], [ -95.417817024223368, 29.951257234692495 ], [ -95.417187023597052, 29.9491812343432 ], [ -95.417109024048827, 29.94903723384196 ], [ -95.416288023609468, 29.946830233352873 ], [ -95.415601023379963, 29.944781233301821 ], [ -95.415450023493662, 29.944326233329626 ], [ -95.415199022794724, 29.943618232602958 ], [ -95.414621023417695, 29.942092232289042 ], [ -95.414454022632626, 29.941629233052929 ], [ -95.414167022578908, 29.940979232376794 ], [ -95.41410602320542, 29.940805232346687 ], [ -95.414085022951895, 29.94074323281141 ], [ -95.414046023101378, 29.940632232878045 ], [ -95.414013022218427, 29.940539232279839 ], [ -95.413871022786623, 29.940540232702343 ], [ -95.413728022224163, 29.94054023231763 ], [ -95.413539022318474, 29.940541232278576 ], [ -95.413341022541104, 29.940542232510378 ], [ -95.412628021902719, 29.940564232031594 ], [ -95.411865022047166, 29.940579232912381 ], [ -95.409854021599728, 29.940606232698133 ], [ -95.407501020975815, 29.940630232319226 ], [ -95.404241019744774, 29.940587232698732 ], [ -95.402952019753144, 29.940493232913663 ], [ -95.402910019955584, 29.940732232938643 ], [ -95.402858020243769, 29.94100223313654 ], [ -95.402824020158036, 29.941546232992678 ], [ -95.402901019551848, 29.941924233442887 ], [ -95.403094020273912, 29.942473233355372 ], [ -95.403376019804782, 29.942790233554604 ], [ -95.403549019735394, 29.94303323354233 ], [ -95.40370102041453, 29.94321923337694 ], [ -95.403924020699307, 29.94358323362458 ], [ -95.402839019536316, 29.94404223357181 ], [ -95.402714019980152, 29.944101233512868 ], [ -95.401857019866654, 29.944302233950474 ], [ -95.401612019667411, 29.944317233974996 ], [ -95.401406019519086, 29.944323233875323 ], [ -95.401158020048271, 29.944326233740878 ], [ -95.401164020150532, 29.945659233614354 ], [ -95.401183019790622, 29.945922233780117 ], [ -95.40119501964044, 29.947115234256508 ], [ -95.401182019272227, 29.947583233989278 ], [ -95.401207019692052, 29.947852234696022 ], [ -95.401144019936893, 29.94834723403525 ], [ -95.401447019979159, 29.948407234385449 ], [ -95.402407020128862, 29.948705234515476 ], [ -95.403196020733844, 29.948936234809818 ], [ -95.403489020035579, 29.949041234523868 ], [ -95.403606020427944, 29.949084234207501 ], [ -95.404067020403389, 29.949205234881855 ], [ -95.404521020755453, 29.949304234117097 ], [ -95.404944020846202, 29.949409234382884 ], [ -95.405197020881033, 29.949574234835723 ], [ -95.405304021383529, 29.949684234590858 ], [ -95.405456020687183, 29.9498052341415 ], [ -95.405676021302327, 29.950036234911682 ], [ -95.405933020673928, 29.950442234422304 ], [ -95.405982021579064, 29.95051923501855 ], [ -95.406118021455569, 29.950734235014547 ], [ -95.40649702095547, 29.951372235216883 ], [ -95.406550021261438, 29.951473234541854 ], [ -95.406602021478022, 29.951573234967235 ], [ -95.406667021235904, 29.951696235051763 ], [ -95.406809021584806, 29.951924235227914 ], [ -95.406857021711019, 29.95199923464979 ], [ -95.406964021030745, 29.952197234925773 ], [ -95.407185021283595, 29.95248823487557 ], [ -95.407292021754742, 29.952686234857296 ], [ -95.407399021984986, 29.952988235420449 ], [ -95.407500021704195, 29.953148234755943 ], [ -95.407809022139105, 29.953401235489878 ], [ -95.40792302184947, 29.953456234933771 ], [ -95.408428021992265, 29.953549235701946 ], [ -95.410859022132755, 29.953935235602707 ], [ -95.411261022424114, 29.953950235619246 ], [ -95.411301022322505, 29.953951235308232 ], [ -95.411522023064848, 29.954034235468725 ], [ -95.411787022987539, 29.954111235494612 ], [ -95.412172023197868, 29.954122234800277 ], [ -95.413018022902691, 29.954171235568289 ], [ -95.413416022775237, 29.954303234804676 ], [ -95.413706023401318, 29.954452235061638 ], [ -95.413810023229786, 29.954529234856878 ], [ -95.414003023704836, 29.954672235222866 ], [ -95.414261023663613, 29.954914235597862 ], [ -95.414482023551571, 29.955084235164495 ], [ -95.414684023718834, 29.955337235629706 ], [ -95.414994023444237, 29.955590235745881 ], [ -95.415265024006843, 29.955832235431934 ], [ -95.415644023869419, 29.956134235260922 ], [ -95.415784024075862, 29.9562862357154 ], [ -95.415877024366509, 29.956387235429677 ], [ -95.416319023931308, 29.956651235728302 ], [ -95.416673023738994, 29.956800235983664 ], [ -95.417317024787693, 29.956866235594301 ], [ -95.417481023877912, 29.956873235508205 ], [ -95.41756302447665, 29.956877235909616 ], [ -95.417682024052084, 29.95687723567924 ], [ -95.417838024929438, 29.956878235184821 ], [ -95.417982024696272, 29.956878235576138 ], [ -95.418114024559983, 29.956879235280233 ], [ -95.418236024888458, 29.956879235184449 ], [ -95.41840502490632, 29.956880236017792 ], [ -95.418449024853601, 29.956880235467015 ], [ -95.418620024382449, 29.956881235211821 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 736, "Tract": "48201250404", "Area_SqMi": 1.3769373417594999, "total_2009": 795, "total_2010": 886, "total_2011": 1234, "total_2012": 1071, "total_2013": 1123, "total_2014": 1301, "total_2015": 765, "total_2016": 802, "total_2017": 996, "total_2018": 1152, "total_2019": 1096, "total_2020": 853, "age1": 140, "age2": 309, "age3": 185, "earn1": 155, "earn2": 178, "earn3": 301, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 38, "naics_s05": 0, "naics_s06": 21, "naics_s07": 48, "naics_s08": 15, "naics_s09": 0, "naics_s10": 53, "naics_s11": 20, "naics_s12": 196, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 64, "naics_s17": 0, "naics_s18": 153, "naics_s19": 15, "naics_s20": 0, "race1": 512, "race2": 66, "race3": 5, "race4": 39, "race5": 0, "race6": 12, "ethnicity1": 470, "ethnicity2": 164, "edu1": 88, "edu2": 112, "edu3": 144, "edu4": 150, "Shape_Length": 34376.181047242921, "Shape_Area": 38386656.436441712, "total_2021": 873, "total_2022": 634 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.164217960264949, 29.980500248793099 ], [ -95.164749961017989, 29.980179248964699 ], [ -95.164036960846047, 29.979537249011383 ], [ -95.163669959981874, 29.979394248962471 ], [ -95.163170959722748, 29.979323248988045 ], [ -95.162875960204303, 29.979364249432553 ], [ -95.162605959729447, 29.979435249360961 ], [ -95.161918959904355, 29.979644248700339 ], [ -95.160869959898363, 29.979664249554386 ], [ -95.159729959603141, 29.979618249072033 ], [ -95.159199959391316, 29.979460248820793 ], [ -95.158461958864876, 29.979160248866247 ], [ -95.158029959320174, 29.97896024935736 ], [ -95.157901958499636, 29.978900248755998 ], [ -95.157600958291113, 29.979180249258683 ], [ -95.157072958908117, 29.979667249624203 ], [ -95.156836958074493, 29.979880249370041 ], [ -95.156826958980176, 29.979889249740843 ], [ -95.156789958976219, 29.979923249125232 ], [ -95.156746958608593, 29.979962248996397 ], [ -95.156572958495488, 29.980121249345931 ], [ -95.156439958807596, 29.980233249092873 ], [ -95.155980958458898, 29.980583249816231 ], [ -95.155521958384952, 29.980916249291958 ], [ -95.155113958345581, 29.9811892500616 ], [ -95.154521958205279, 29.981559250026685 ], [ -95.154007957951904, 29.981844249483192 ], [ -95.15353095741402, 29.982089249456191 ], [ -95.153076957615554, 29.982294250091091 ], [ -95.152653957373943, 29.982475250188024 ], [ -95.152332957992115, 29.982604250236648 ], [ -95.151832957346713, 29.98278824993848 ], [ -95.151259957263363, 29.982977249701495 ], [ -95.150630957037961, 29.983158250174185 ], [ -95.149992957103109, 29.983319250432103 ], [ -95.149556957111557, 29.98341525048507 ], [ -95.148822956705047, 29.983544250217427 ], [ -95.148143956403686, 29.983640249936265 ], [ -95.14761095678351, 29.983690250398141 ], [ -95.147285956633979, 29.983721250460786 ], [ -95.146033955854222, 29.983825250882695 ], [ -95.145225955932517, 29.983901250813993 ], [ -95.144482956054972, 29.983966250980274 ], [ -95.143147955252104, 29.98405825099189 ], [ -95.141839955080769, 29.984154250450391 ], [ -95.14125895520732, 29.984195250969691 ], [ -95.140815954453714, 29.984242251121817 ], [ -95.140494954761493, 29.984288250923736 ], [ -95.140288954653442, 29.984320251207333 ], [ -95.139875954825726, 29.984380250401905 ], [ -95.139409954709322, 29.984450250798162 ], [ -95.138352954362077, 29.984703250849293 ], [ -95.137856953934815, 29.984830250988669 ], [ -95.136951953469364, 29.985165251042755 ], [ -95.136532953089869, 29.985355250951649 ], [ -95.135969953736776, 29.985600251448609 ], [ -95.135928953242214, 29.985618251477973 ], [ -95.135721953486765, 29.985708250838567 ], [ -95.135582952856311, 29.985769250774815 ], [ -95.13544295353131, 29.985838250995453 ], [ -95.131547952293275, 29.987672251891603 ], [ -95.131740952988366, 29.988509251761123 ], [ -95.137326953717562, 29.991593252774639 ], [ -95.143891955541889, 29.990938251857273 ], [ -95.144337956016273, 29.9907972521369 ], [ -95.144711956299318, 29.990712252037333 ], [ -95.145249955852918, 29.990591251923036 ], [ -95.145930956371984, 29.990401251838424 ], [ -95.146016956148628, 29.990378252200312 ], [ -95.146074956463181, 29.990362251601582 ], [ -95.146302955917207, 29.990265252173817 ], [ -95.146550956308275, 29.990161252057003 ], [ -95.146917956233466, 29.990007251835728 ], [ -95.147662956177498, 29.989605251778567 ], [ -95.148070956633916, 29.989498251489668 ], [ -95.148539956399233, 29.989540251374954 ], [ -95.148923956467485, 29.989650251921457 ], [ -95.148946956593406, 29.989669251603043 ], [ -95.149038957109283, 29.989743251807091 ], [ -95.149205956655081, 29.989879251160183 ], [ -95.149414957218283, 29.990060251350254 ], [ -95.149809956950719, 29.990401251723519 ], [ -95.15025695746003, 29.990767251963156 ], [ -95.150789957524822, 29.991141251378174 ], [ -95.151299958160536, 29.991764251919822 ], [ -95.151649957570825, 29.992452252177578 ], [ -95.151664958072104, 29.992487251843599 ], [ -95.151675958129175, 29.992513252056483 ], [ -95.151914957716656, 29.993152252029073 ], [ -95.152092958215306, 29.99345725228207 ], [ -95.152398958295066, 29.993892252775179 ], [ -95.152411957525615, 29.993906252532202 ], [ -95.152470958004088, 29.994030252280819 ], [ -95.152407957819989, 29.994195252418866 ], [ -95.152318958118315, 29.994338252006283 ], [ -95.152111958218569, 29.994648252144902 ], [ -95.152072958506054, 29.994707252422558 ], [ -95.151933957631528, 29.994855252428007 ], [ -95.151800957845296, 29.995058252296722 ], [ -95.151566957531969, 29.995289252259493 ], [ -95.15134495786566, 29.9955872530345 ], [ -95.151200957636647, 29.995779252393941 ], [ -95.1507959574041, 29.996273252788843 ], [ -95.150600958120847, 29.996433253173826 ], [ -95.150517957277557, 29.996559253246499 ], [ -95.150448957912772, 29.99670225255602 ], [ -95.150410958040709, 29.996851252956468 ], [ -95.150423957241117, 29.997076253436425 ], [ -95.150438957562841, 29.997139253463398 ], [ -95.150524958159821, 29.997500252942974 ], [ -95.150580957318937, 29.997603252886925 ], [ -95.150636957664076, 29.997708253112865 ], [ -95.150710957519323, 29.997843253405968 ], [ -95.150652957481128, 29.997841253568872 ], [ -95.150560957297358, 29.997833253287279 ], [ -95.150124957655294, 29.997830253515453 ], [ -95.150004957716604, 29.997822253637754 ], [ -95.149887957539008, 29.997821253059509 ], [ -95.149851957113654, 29.997823253102627 ], [ -95.14980095711293, 29.99782525282269 ], [ -95.14975595783288, 29.998207253623988 ], [ -95.149610957525994, 29.998489253206955 ], [ -95.149556957991052, 29.998725253578641 ], [ -95.149570957380433, 29.99895225320266 ], [ -95.14965595739578, 29.999141253730382 ], [ -95.149994957861267, 29.999688253427131 ], [ -95.150016957889136, 29.999723253418573 ], [ -95.150614957486141, 30.000225253422066 ], [ -95.151114957515588, 30.000535253772732 ], [ -95.151226958466324, 30.000603253682335 ], [ -95.151624958557335, 30.000728253571872 ], [ -95.152260958146172, 30.000925253523537 ], [ -95.152296958553464, 30.000949253675365 ], [ -95.152530958876952, 30.001101253793895 ], [ -95.15256995817802, 30.0011522541175 ], [ -95.152726958286848, 30.001359253726353 ], [ -95.152801958772898, 30.00168325387202 ], [ -95.152842958432586, 30.001860253746223 ], [ -95.152859958217874, 30.001932254065707 ], [ -95.152899958056835, 30.002046253642554 ], [ -95.152918958642005, 30.002100253726642 ], [ -95.152929958265759, 30.002132253616232 ], [ -95.152968958098782, 30.002282253818638 ], [ -95.153008958380141, 30.002334253895338 ], [ -95.153081958796861, 30.002427254210357 ], [ -95.153273959140577, 30.002667254363789 ], [ -95.153411958472574, 30.00284325427646 ], [ -95.153612958345903, 30.003098254574951 ], [ -95.154202958902033, 30.002740254477324 ], [ -95.154723958855186, 30.002425253786502 ], [ -95.154778959512328, 30.002392254121975 ], [ -95.155321958784768, 30.002062254283256 ], [ -95.155542958799586, 30.00192925406871 ], [ -95.155689959414616, 30.001840253789272 ], [ -95.155792959504637, 30.001778254227496 ], [ -95.155916959058459, 30.001702253409277 ], [ -95.156573959492803, 30.001305253466619 ], [ -95.156740959157119, 30.001199253345188 ], [ -95.156934959462333, 30.001076253286961 ], [ -95.157674959672605, 30.000606253395684 ], [ -95.158286959586647, 30.000261253162972 ], [ -95.15951696000721, 29.999567253118723 ], [ -95.16032696048228, 29.999243252890388 ], [ -95.160687960448442, 29.999091253372995 ], [ -95.160833960146107, 29.999030253505289 ], [ -95.161336961001453, 29.998862253297187 ], [ -95.161849960547258, 29.998704253085055 ], [ -95.162097960768733, 29.998637252929154 ], [ -95.161975961173553, 29.998304252816716 ], [ -95.161928960968851, 29.998112253014206 ], [ -95.161858960602729, 29.997826252910262 ], [ -95.161671960525794, 29.997060252233005 ], [ -95.161667961041942, 29.996976252857017 ], [ -95.16167396075079, 29.996038252050198 ], [ -95.161680960313916, 29.995032252140309 ], [ -95.16164096072518, 29.99436325209178 ], [ -95.161596959894865, 29.99248625185875 ], [ -95.161526960588432, 29.990557251071305 ], [ -95.161496959973178, 29.989380251101448 ], [ -95.161484959776828, 29.988893251062699 ], [ -95.161450959622641, 29.987532250262017 ], [ -95.161443960425714, 29.987249250760502 ], [ -95.161390959458544, 29.985543250649041 ], [ -95.161398960239325, 29.984999250342145 ], [ -95.161435959531374, 29.98468225052887 ], [ -95.161503959966126, 29.984305250043878 ], [ -95.161549959664242, 29.984010249628437 ], [ -95.161662959505662, 29.983709249694012 ], [ -95.161844959865007, 29.983203249394581 ], [ -95.162040960198851, 29.982765249620321 ], [ -95.162304959724963, 29.982327249375754 ], [ -95.162553960071449, 29.981987249978875 ], [ -95.162954960425168, 29.981511249409809 ], [ -95.163201960253218, 29.981267249481498 ], [ -95.163228960318946, 29.981241249059359 ], [ -95.163341960368442, 29.981139249630509 ], [ -95.163576959872429, 29.980943249662893 ], [ -95.163641960252875, 29.98089224893754 ], [ -95.163697960826084, 29.980849249469365 ], [ -95.163951960621873, 29.980672249135587 ], [ -95.164217960264949, 29.980500248793099 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 737, "Tract": "48201541801", "Area_SqMi": 0.55182249571664566, "total_2009": 936, "total_2010": 910, "total_2011": 743, "total_2012": 1015, "total_2013": 1054, "total_2014": 1156, "total_2015": 1131, "total_2016": 1133, "total_2017": 1044, "total_2018": 1144, "total_2019": 1197, "total_2020": 1285, "age1": 349, "age2": 749, "age3": 295, "earn1": 215, "earn2": 379, "earn3": 799, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 38, "naics_s06": 35, "naics_s07": 235, "naics_s08": 0, "naics_s09": 46, "naics_s10": 15, "naics_s11": 462, "naics_s12": 145, "naics_s13": 0, "naics_s14": 51, "naics_s15": 0, "naics_s16": 163, "naics_s17": 0, "naics_s18": 168, "naics_s19": 21, "naics_s20": 0, "race1": 968, "race2": 309, "race3": 10, "race4": 78, "race5": 7, "race6": 21, "ethnicity1": 883, "ethnicity2": 510, "edu1": 243, "edu2": 270, "edu3": 317, "edu4": 214, "Shape_Length": 16457.851043199309, "Shape_Area": 15383866.726939652, "total_2021": 1263, "total_2022": 1393 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.719027094865879, 29.800061193042179 ], [ -95.719024093857328, 29.799497193317897 ], [ -95.719024094540714, 29.798971193245208 ], [ -95.719015093802213, 29.798316193094031 ], [ -95.719012094173124, 29.797948193157147 ], [ -95.719011094042926, 29.797479193180923 ], [ -95.719005094653411, 29.796977192595211 ], [ -95.719003093690901, 29.796532192797159 ], [ -95.719002094105818, 29.79619019252949 ], [ -95.718998094100442, 29.795842192464999 ], [ -95.719000094198492, 29.795492191989396 ], [ -95.71899909396862, 29.795410192685491 ], [ -95.718991093615514, 29.79478519184293 ], [ -95.718989093971871, 29.794602192146087 ], [ -95.718982094535107, 29.794437192025725 ], [ -95.718959094204223, 29.794269191802179 ], [ -95.718915093572576, 29.794025192226133 ], [ -95.718903093966716, 29.793938192339194 ], [ -95.71890209370342, 29.793923192278125 ], [ -95.718897093782601, 29.793855192402749 ], [ -95.718893093679398, 29.7933821922059 ], [ -95.718890094063013, 29.792813192008861 ], [ -95.718897094360798, 29.79267219195296 ], [ -95.718893093654017, 29.792598191797328 ], [ -95.718889094383087, 29.792389192091374 ], [ -95.718889093737786, 29.792374192121503 ], [ -95.718889093934109, 29.792285191555127 ], [ -95.718889094456344, 29.79221419202333 ], [ -95.718883094016817, 29.791656191918321 ], [ -95.718880093528512, 29.79139119172563 ], [ -95.718877093995772, 29.791116191863292 ], [ -95.718879093835056, 29.790772191240034 ], [ -95.718903093802382, 29.790221190950859 ], [ -95.71890109381944, 29.789924191626966 ], [ -95.718867093523144, 29.789925191601867 ], [ -95.718510093996983, 29.789930191490441 ], [ -95.718419094240275, 29.789927191100901 ], [ -95.718312093248997, 29.78993119102822 ], [ -95.717752093488926, 29.789931190849028 ], [ -95.717520093327266, 29.7899431913096 ], [ -95.717288093745807, 29.789968191238216 ], [ -95.717061093116882, 29.790001190915728 ], [ -95.716941093043829, 29.790025191158488 ], [ -95.716724092863714, 29.790087191395568 ], [ -95.716303093375004, 29.790238191380748 ], [ -95.715305092700945, 29.790621191950187 ], [ -95.714685093268983, 29.790853191767219 ], [ -95.714525093130902, 29.790917192051367 ], [ -95.71401309287802, 29.791111191796119 ], [ -95.71380709305636, 29.791189191734119 ], [ -95.713726092944398, 29.791224191865592 ], [ -95.713543092654859, 29.791274191314539 ], [ -95.713334092194586, 29.791318191692564 ], [ -95.713252092837791, 29.791335192159252 ], [ -95.713039092327591, 29.791368191736915 ], [ -95.712807092342373, 29.791386191709329 ], [ -95.712580091976122, 29.791393191400296 ], [ -95.712255092224396, 29.791391191941852 ], [ -95.712081092576, 29.791395191746041 ], [ -95.712000092366452, 29.791394191430928 ], [ -95.711928092405287, 29.791388192217358 ], [ -95.711700092461825, 29.791388191661817 ], [ -95.711627091643038, 29.791396192028753 ], [ -95.711348091564545, 29.791396191616514 ], [ -95.710903091726891, 29.791411191783286 ], [ -95.710726091592704, 29.791412191846181 ], [ -95.710387091376418, 29.791397191931761 ], [ -95.710307091416098, 29.791398191792553 ], [ -95.710205091600969, 29.791390191787254 ], [ -95.710112092165829, 29.791377192074776 ], [ -95.710028091825549, 29.791372191610854 ], [ -95.709798092091646, 29.791341191947794 ], [ -95.709672091392434, 29.791318191811516 ], [ -95.709517091556151, 29.791298192013748 ], [ -95.709334091357647, 29.79125819213197 ], [ -95.70928709130726, 29.791244191883958 ], [ -95.709081091055211, 29.791189192033968 ], [ -95.708996091370906, 29.79116219214437 ], [ -95.708847090990361, 29.79111819210517 ], [ -95.708794090968908, 29.791101192208604 ], [ -95.708499091279364, 29.791009191844811 ], [ -95.707840091151425, 29.790812191437468 ], [ -95.706985090803315, 29.790553191525841 ], [ -95.706154091029646, 29.79031719142581 ], [ -95.706124090319264, 29.790635191983544 ], [ -95.706042090740667, 29.791249191748001 ], [ -95.705971090920798, 29.791709192442049 ], [ -95.705865090931184, 29.792322192394366 ], [ -95.705771090451108, 29.792758192119912 ], [ -95.705653090952907, 29.793135192301072 ], [ -95.705440090685002, 29.793831192663074 ], [ -95.705205090402984, 29.794550192998653 ], [ -95.705040090705779, 29.795034192695876 ], [ -95.704815090278728, 29.795683192873319 ], [ -95.704662090738495, 29.796225192612408 ], [ -95.704462090475985, 29.796850193287579 ], [ -95.704328090045536, 29.797366193253168 ], [ -95.704226090462157, 29.797758193551413 ], [ -95.704143090771467, 29.798371193733615 ], [ -95.704096090072852, 29.798616193455477 ], [ -95.704058090734975, 29.798997193198279 ], [ -95.704023090830475, 29.799259193771611 ], [ -95.704019090929592, 29.799380193686194 ], [ -95.704011090515323, 29.799663194084083 ], [ -95.703996090440185, 29.799928193700755 ], [ -95.703990090720353, 29.800175194207856 ], [ -95.70398109004779, 29.800314194037618 ], [ -95.704037090273303, 29.8003131934923 ], [ -95.704604090775234, 29.800313194195759 ], [ -95.704964091123287, 29.800318193761086 ], [ -95.705407090718481, 29.800325194271501 ], [ -95.705572091078722, 29.800327194056326 ], [ -95.707334091015809, 29.800324193650344 ], [ -95.708332091274656, 29.800321193701219 ], [ -95.708703091255302, 29.80032019392678 ], [ -95.709073091425964, 29.800325193294551 ], [ -95.709921092440524, 29.800320193289334 ], [ -95.711298091897959, 29.800318193824346 ], [ -95.711497092411548, 29.800322193758351 ], [ -95.711556092718837, 29.800320193210794 ], [ -95.71268709311245, 29.800317193879238 ], [ -95.712911092939692, 29.800321193692486 ], [ -95.713012092610313, 29.800317193274278 ], [ -95.713134093076818, 29.800325193892519 ], [ -95.713227092762878, 29.800317193702742 ], [ -95.713754092604816, 29.800315193883467 ], [ -95.714226092987687, 29.800315193419635 ], [ -95.714466093429763, 29.800315193577649 ], [ -95.714709093045172, 29.800314193641224 ], [ -95.716603093593903, 29.800308193122643 ], [ -95.716667093928947, 29.800308193762522 ], [ -95.716757094203942, 29.800309193081681 ], [ -95.717616093846715, 29.800313193161251 ], [ -95.718020093879929, 29.800311193023454 ], [ -95.718267094132671, 29.800309193368498 ], [ -95.718343093843316, 29.800308193561339 ], [ -95.718586094704605, 29.800302193577199 ], [ -95.71890009426059, 29.800300193650859 ], [ -95.719003094668068, 29.800299193633215 ], [ -95.719016094272163, 29.800226193697078 ], [ -95.719027094865879, 29.800061193042179 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 738, "Tract": "48201530702", "Area_SqMi": 0.69696026915579745, "total_2009": 1126, "total_2010": 968, "total_2011": 1031, "total_2012": 1020, "total_2013": 1039, "total_2014": 879, "total_2015": 936, "total_2016": 751, "total_2017": 988, "total_2018": 892, "total_2019": 1107, "total_2020": 1154, "age1": 450, "age2": 653, "age3": 348, "earn1": 305, "earn2": 543, "earn3": 603, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 38, "naics_s05": 164, "naics_s06": 150, "naics_s07": 554, "naics_s08": 0, "naics_s09": 0, "naics_s10": 122, "naics_s11": 43, "naics_s12": 58, "naics_s13": 2, "naics_s14": 2, "naics_s15": 0, "naics_s16": 189, "naics_s17": 0, "naics_s18": 48, "naics_s19": 81, "naics_s20": 0, "race1": 1063, "race2": 250, "race3": 19, "race4": 100, "race5": 1, "race6": 18, "ethnicity1": 774, "ethnicity2": 677, "edu1": 238, "edu2": 273, "edu3": 292, "edu4": 198, "Shape_Length": 18841.335583395427, "Shape_Area": 19430059.444641359, "total_2021": 1272, "total_2022": 1451 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412515018236434, 29.857125215369866 ], [ -95.412513018708495, 29.855978215254424 ], [ -95.412512018532126, 29.855227214896786 ], [ -95.412502018811495, 29.854861214844245 ], [ -95.412460018842467, 29.853359214938159 ], [ -95.412424018073651, 29.852888214659487 ], [ -95.412353018441877, 29.852391214722637 ], [ -95.412137018408956, 29.851283214591049 ], [ -95.412082018370356, 29.850999213935054 ], [ -95.411802017854356, 29.849884213752002 ], [ -95.411752018438932, 29.849684213803958 ], [ -95.411641017514683, 29.849305213446314 ], [ -95.411427017979065, 29.849125213554135 ], [ -95.411106017347379, 29.848869214177974 ], [ -95.409967017775614, 29.847957213714096 ], [ -95.409742017251688, 29.847780213746606 ], [ -95.409536017587598, 29.84764721366518 ], [ -95.409396017026637, 29.84757721402292 ], [ -95.409288017262668, 29.847559213343661 ], [ -95.408290017424363, 29.847185213769254 ], [ -95.406999016630209, 29.847187213340188 ], [ -95.405839016192814, 29.847189213567237 ], [ -95.405636016552492, 29.847181213282195 ], [ -95.405459015963089, 29.847164213418349 ], [ -95.405194016230737, 29.84712421404819 ], [ -95.404787016129163, 29.847018213316783 ], [ -95.404546015775338, 29.846939213165623 ], [ -95.404276016099047, 29.846813213820976 ], [ -95.404129015603047, 29.846728214029234 ], [ -95.403973016048724, 29.84662321317931 ], [ -95.40385401544097, 29.846530213689064 ], [ -95.403487015736019, 29.846266213599883 ], [ -95.403137015843413, 29.845995213498057 ], [ -95.40302301575727, 29.845866213005305 ], [ -95.402931015727262, 29.845814213319549 ], [ -95.402728015192935, 29.845698213544363 ], [ -95.402624015246303, 29.845644213762711 ], [ -95.402458015299899, 29.845566213224075 ], [ -95.402315015940829, 29.845512213182467 ], [ -95.402015015511466, 29.845418213272634 ], [ -95.401827015825774, 29.845363213009531 ], [ -95.401331015305388, 29.8452752131439 ], [ -95.400983015368908, 29.845245213282922 ], [ -95.400013015351405, 29.845249213080052 ], [ -95.399816014539823, 29.845251213566836 ], [ -95.399325014718002, 29.845257213805404 ], [ -95.398814014492132, 29.8452822136755 ], [ -95.39863801444811, 29.845294213422665 ], [ -95.398420014651307, 29.845325213842745 ], [ -95.397717013806783, 29.845410213679294 ], [ -95.397648014096802, 29.845418213488372 ], [ -95.397572014295662, 29.845431213588736 ], [ -95.397007014006263, 29.845455213712764 ], [ -95.396369014125938, 29.845464213155747 ], [ -95.396265013736354, 29.845462213799177 ], [ -95.395179013996199, 29.845468213852449 ], [ -95.394999013385544, 29.84547321328224 ], [ -95.394297013254302, 29.845511213708743 ], [ -95.393851013221294, 29.845546214090255 ], [ -95.393363013385752, 29.84555321377151 ], [ -95.393222012615027, 29.845539213843601 ], [ -95.393108013157658, 29.845526213463181 ], [ -95.392962013423016, 29.8455292135985 ], [ -95.393104012900466, 29.845730214067842 ], [ -95.394484013401694, 29.847681214251697 ], [ -95.396393013773192, 29.850375214594148 ], [ -95.397925014331463, 29.852538215273082 ], [ -95.398180014971018, 29.852898215059614 ], [ -95.400498015340432, 29.856179215360189 ], [ -95.400972015844232, 29.856805215907642 ], [ -95.401313015888917, 29.857210216243317 ], [ -95.402134016016703, 29.858564216045679 ], [ -95.402499016392966, 29.859231216545325 ], [ -95.402585016555278, 29.859400215838942 ], [ -95.402791016035152, 29.85933421607584 ], [ -95.403108016771526, 29.859231216032072 ], [ -95.403216015989273, 29.859196216037212 ], [ -95.403367016336347, 29.859147216534286 ], [ -95.403494016174506, 29.85910521591229 ], [ -95.403729016469484, 29.859032216173453 ], [ -95.403837016130169, 29.858999215932499 ], [ -95.404248016753527, 29.858902215803244 ], [ -95.404622016952075, 29.858843216330349 ], [ -95.404803016504374, 29.858842216187352 ], [ -95.40538501717684, 29.858784216035168 ], [ -95.405897016634412, 29.858777215622066 ], [ -95.406399017499936, 29.85877521584014 ], [ -95.406393017241101, 29.858421216287777 ], [ -95.406379017128543, 29.857489216014134 ], [ -95.406728016667799, 29.85748121575137 ], [ -95.408102017309091, 29.857474216083087 ], [ -95.408300017011229, 29.857461215647803 ], [ -95.408501017607819, 29.857417215871767 ], [ -95.408738017807281, 29.857318215644693 ], [ -95.408972017292697, 29.857230215371739 ], [ -95.409155017737049, 29.857182215154527 ], [ -95.409321017391306, 29.857149215325286 ], [ -95.409448017507813, 29.85713821546744 ], [ -95.412216018028502, 29.857124215816871 ], [ -95.412515018236434, 29.857125215369866 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 739, "Tract": "48201333904", "Area_SqMi": 0.8645622638265672, "total_2009": 1268, "total_2010": 941, "total_2011": 859, "total_2012": 645, "total_2013": 488, "total_2014": 929, "total_2015": 464, "total_2016": 471, "total_2017": 490, "total_2018": 554, "total_2019": 617, "total_2020": 583, "age1": 148, "age2": 354, "age3": 126, "earn1": 99, "earn2": 229, "earn3": 300, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 66, "naics_s05": 105, "naics_s06": 0, "naics_s07": 48, "naics_s08": 7, "naics_s09": 3, "naics_s10": 72, "naics_s11": 24, "naics_s12": 15, "naics_s13": 0, "naics_s14": 10, "naics_s15": 201, "naics_s16": 48, "naics_s17": 0, "naics_s18": 26, "naics_s19": 3, "naics_s20": 0, "race1": 417, "race2": 129, "race3": 7, "race4": 65, "race5": 0, "race6": 10, "ethnicity1": 355, "ethnicity2": 273, "edu1": 131, "edu2": 124, "edu3": 145, "edu4": 80, "Shape_Length": 28019.204571255112, "Shape_Area": 24102516.202381682, "total_2021": 569, "total_2022": 628 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.25078196691976, 29.617170172103016 ], [ -95.250846966725234, 29.616126171066931 ], [ -95.250748966279588, 29.614381170905155 ], [ -95.250622966693385, 29.613751170992842 ], [ -95.25025996647291, 29.613126171326527 ], [ -95.249976966193486, 29.612213170574904 ], [ -95.24982796612187, 29.611006170167364 ], [ -95.249888965783128, 29.609618170462674 ], [ -95.249982965664884, 29.608615170326576 ], [ -95.249948965709194, 29.606906169708758 ], [ -95.249949965421024, 29.605785169613608 ], [ -95.24973596615466, 29.604854168856619 ], [ -95.249367965744213, 29.604114168766724 ], [ -95.248879965539388, 29.603484168766197 ], [ -95.248437965503157, 29.602989168536471 ], [ -95.248320965213139, 29.602670168514415 ], [ -95.248048965504594, 29.60193016866879 ], [ -95.247761965045456, 29.601146168755079 ], [ -95.247609965302843, 29.600824168568742 ], [ -95.247434964863174, 29.601001168651461 ], [ -95.247278965163474, 29.601139168128132 ], [ -95.246832964645364, 29.601516168500169 ], [ -95.246384964713982, 29.601913169174644 ], [ -95.246296964178384, 29.601990168511517 ], [ -95.246275964864424, 29.60200916860293 ], [ -95.246024964608537, 29.602231168824041 ], [ -95.245737964289702, 29.602471168989592 ], [ -95.244628964127671, 29.603516169415972 ], [ -95.243717963795092, 29.604345168991763 ], [ -95.241206963352994, 29.606636169806375 ], [ -95.240885962983924, 29.606901170053778 ], [ -95.240670963035512, 29.607129169709779 ], [ -95.240610963024622, 29.607192169998235 ], [ -95.240732963249258, 29.607456170364134 ], [ -95.241195963224229, 29.607854169876909 ], [ -95.241302963428041, 29.608060170057772 ], [ -95.241246963182945, 29.60830217040532 ], [ -95.240654963495246, 29.608847170595073 ], [ -95.240393963858281, 29.609093170486673 ], [ -95.240100963353726, 29.609359170647075 ], [ -95.239884963731782, 29.609555170712685 ], [ -95.239463963054007, 29.609936170447277 ], [ -95.238852962985646, 29.610488170367439 ], [ -95.238084963110268, 29.611225171044964 ], [ -95.238409963065735, 29.611217170525229 ], [ -95.239542963372458, 29.61119517055652 ], [ -95.241314963832892, 29.611161170713622 ], [ -95.242180963824183, 29.611126171205633 ], [ -95.242211964077669, 29.611967170564515 ], [ -95.242235964369783, 29.612729170951727 ], [ -95.242243964093262, 29.613498171139877 ], [ -95.242270963890448, 29.61426217106947 ], [ -95.24225196378849, 29.61474317162337 ], [ -95.242114964304534, 29.615045171997536 ], [ -95.241884964449866, 29.615633171432524 ], [ -95.241880964513541, 29.616025172202569 ], [ -95.241908964086974, 29.616801171909735 ], [ -95.245094964775106, 29.616742171446063 ], [ -95.245260964542581, 29.616938171743254 ], [ -95.24532496488311, 29.617369171743437 ], [ -95.245402964872738, 29.617899172417903 ], [ -95.243696965067016, 29.618173172231117 ], [ -95.242648964936222, 29.618784172766766 ], [ -95.242147964231705, 29.619366172418811 ], [ -95.242021964562596, 29.619584172764473 ], [ -95.241601964179623, 29.620272172755257 ], [ -95.241400964673772, 29.62060517257046 ], [ -95.240638964455059, 29.621559173204339 ], [ -95.240338963576448, 29.622222173395631 ], [ -95.240218963960615, 29.622705172894975 ], [ -95.239639964325832, 29.622719172947388 ], [ -95.238837963458508, 29.62292917362041 ], [ -95.238267963734614, 29.62297217363275 ], [ -95.238336963423762, 29.62451217404784 ], [ -95.238343963902651, 29.624667173763768 ], [ -95.238450963459968, 29.627006174588992 ], [ -95.238479963673058, 29.627486174120321 ], [ -95.238529964248755, 29.627594173962986 ], [ -95.239368964142329, 29.627557174177991 ], [ -95.240669963855197, 29.627496174404456 ], [ -95.241139964770639, 29.627475174201148 ], [ -95.241341964861846, 29.62746717375634 ], [ -95.241510964511903, 29.627460174339227 ], [ -95.241792964137389, 29.62745917395312 ], [ -95.242776965246193, 29.627407174029521 ], [ -95.24291896500003, 29.627400173926578 ], [ -95.243178964472335, 29.627389174477305 ], [ -95.24351396505817, 29.627376174412134 ], [ -95.243889964934652, 29.627359174292899 ], [ -95.244928965733834, 29.627316174305591 ], [ -95.245353965880454, 29.627293174350086 ], [ -95.245558965571533, 29.627285174091373 ], [ -95.246004965858774, 29.627271173804182 ], [ -95.24614896529269, 29.627266173569165 ], [ -95.247238966415694, 29.627221174092245 ], [ -95.248381966069729, 29.62716917414383 ], [ -95.248535966444379, 29.627163173474766 ], [ -95.248445966082002, 29.625358173298029 ], [ -95.248328966343934, 29.623768173537655 ], [ -95.248370966122579, 29.623536172820142 ], [ -95.249004966599458, 29.62142317261571 ], [ -95.249373965825512, 29.620804172903654 ], [ -95.249529965809373, 29.620543172305531 ], [ -95.24965296671995, 29.620321172492446 ], [ -95.249761966167782, 29.620040172293219 ], [ -95.249778966262184, 29.61997017275143 ], [ -95.249940966139363, 29.619599172660113 ], [ -95.249976966300011, 29.619517172115927 ], [ -95.250346966621777, 29.618691172382103 ], [ -95.250650966931772, 29.617996172283451 ], [ -95.25078196691976, 29.617170172103016 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 740, "Tract": "48201252304", "Area_SqMi": 0.58836318038091429, "total_2009": 1205, "total_2010": 1144, "total_2011": 1113, "total_2012": 4968, "total_2013": 4967, "total_2014": 4968, "total_2015": 5295, "total_2016": 5377, "total_2017": 5472, "total_2018": 5232, "total_2019": 5246, "total_2020": 4744, "age1": 955, "age2": 2481, "age3": 985, "earn1": 527, "earn2": 1448, "earn3": 2446, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 1, "naics_s07": 104, "naics_s08": 9, "naics_s09": 0, "naics_s10": 12, "naics_s11": 8, "naics_s12": 6, "naics_s13": 0, "naics_s14": 25, "naics_s15": 3720, "naics_s16": 126, "naics_s17": 0, "naics_s18": 175, "naics_s19": 15, "naics_s20": 201, "race1": 3010, "race2": 1132, "race3": 47, "race4": 158, "race5": 7, "race6": 67, "ethnicity1": 2282, "ethnicity2": 2139, "edu1": 792, "edu2": 827, "edu3": 1037, "edu4": 810, "Shape_Length": 22230.372365135347, "Shape_Area": 16402558.475372624, "total_2021": 4126, "total_2022": 4421 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.163302952895648, 29.808559213952304 ], [ -95.163302952681406, 29.806596213927897 ], [ -95.163287952332439, 29.804971213292216 ], [ -95.163287952140323, 29.803462212872493 ], [ -95.163272952535493, 29.801710212546453 ], [ -95.163241951829662, 29.800015212419343 ], [ -95.163222951517071, 29.79823121213294 ], [ -95.163203952189889, 29.79807921200798 ], [ -95.163150952456263, 29.797750211524932 ], [ -95.162974951666342, 29.796419211879517 ], [ -95.162914951935377, 29.796090211115189 ], [ -95.162705952096687, 29.795203211612236 ], [ -95.162364951859502, 29.794081211404499 ], [ -95.162074951439422, 29.793159211058487 ], [ -95.161113951347829, 29.790808210217133 ], [ -95.161053950657177, 29.7906622106164 ], [ -95.160923950936166, 29.790663210057797 ], [ -95.16085795148939, 29.790667210696412 ], [ -95.160358950415102, 29.790688210727506 ], [ -95.159868950787171, 29.790691210391696 ], [ -95.159806950373564, 29.790692210739781 ], [ -95.159556950762919, 29.79067721031436 ], [ -95.159498950901238, 29.790674210594293 ], [ -95.159398950227086, 29.790665210337945 ], [ -95.159238950453997, 29.790650210048003 ], [ -95.159161950704089, 29.790644210351363 ], [ -95.158981950918388, 29.790622210227014 ], [ -95.158616950194116, 29.790577210141496 ], [ -95.158508950355525, 29.790559210120801 ], [ -95.158216950521009, 29.79049821088115 ], [ -95.157882950694244, 29.790413210870891 ], [ -95.157607949835423, 29.790321210103389 ], [ -95.157360949689476, 29.790230210131547 ], [ -95.157097950027236, 29.790120210166958 ], [ -95.156608949867532, 29.789911210267775 ], [ -95.156280949376509, 29.789762210744097 ], [ -95.155952950073186, 29.789629210080999 ], [ -95.155609950090749, 29.789476210234753 ], [ -95.155265949431623, 29.789332210597632 ], [ -95.155037949151122, 29.789246210614454 ], [ -95.154913949562285, 29.789198210093002 ], [ -95.154788949107683, 29.789155210650765 ], [ -95.154519949585449, 29.789074209865884 ], [ -95.154102949253712, 29.78897621007577 ], [ -95.15346594881261, 29.788878210660467 ], [ -95.153248948634499, 29.788857209828407 ], [ -95.153135948695692, 29.788850210384812 ], [ -95.153032949163006, 29.788845210329416 ], [ -95.152786949309899, 29.78884121036868 ], [ -95.152709948923146, 29.788842210140899 ], [ -95.152436948319234, 29.78884720995519 ], [ -95.152598948569178, 29.793059210774544 ], [ -95.152756949542294, 29.797220211596326 ], [ -95.152810949271156, 29.798613211878745 ], [ -95.152888949581381, 29.798612212554382 ], [ -95.153078949490393, 29.798598212173218 ], [ -95.153135949696065, 29.798599212526188 ], [ -95.153429949755449, 29.798587212355333 ], [ -95.154305949376322, 29.798583212017331 ], [ -95.154338950063163, 29.798586212476572 ], [ -95.154448950116333, 29.79859521247807 ], [ -95.154665950274676, 29.798628212231943 ], [ -95.154915949697354, 29.798686211841638 ], [ -95.155069949411654, 29.798740212468687 ], [ -95.155209950269551, 29.79880021249161 ], [ -95.155377950483199, 29.798885212575112 ], [ -95.155464949865873, 29.798934211857006 ], [ -95.155580950463786, 29.799008211996245 ], [ -95.155646950146945, 29.799042212458062 ], [ -95.155702949693008, 29.79908321185221 ], [ -95.155907949922238, 29.799258212711866 ], [ -95.155963950651696, 29.799318212244923 ], [ -95.156493949868803, 29.799947212719069 ], [ -95.15595795009574, 29.800217212417426 ], [ -95.155743950667357, 29.800365212845421 ], [ -95.155699950342978, 29.800514212274329 ], [ -95.155617950366079, 29.800695212466916 ], [ -95.155529949761444, 29.800816212572954 ], [ -95.155510950271548, 29.800871212238285 ], [ -95.155535950569501, 29.801036212342783 ], [ -95.155692950553686, 29.801371212993228 ], [ -95.155875950430442, 29.801657212550875 ], [ -95.155976950734797, 29.801707213199911 ], [ -95.156171950728648, 29.801762212994678 ], [ -95.156905950511344, 29.801905212813367 ], [ -95.156959950782294, 29.801916213242588 ], [ -95.157555950843289, 29.802016212669077 ], [ -95.15797495111326, 29.802087212819149 ], [ -95.158214950873912, 29.802120213101613 ], [ -95.15865595151611, 29.802219212627211 ], [ -95.158926951370063, 29.802312212884313 ], [ -95.159399950790771, 29.802505213117186 ], [ -95.159815951832059, 29.802686212957202 ], [ -95.160414951668415, 29.802923212511754 ], [ -95.160509951131928, 29.802978212963389 ], [ -95.160685951527611, 29.80314321274771 ], [ -95.160735951479211, 29.803209212723143 ], [ -95.160780951514994, 29.803451212867309 ], [ -95.160767951736076, 29.803814213443733 ], [ -95.160817951326635, 29.803874213062581 ], [ -95.160890951194418, 29.803920213228146 ], [ -95.161051952058941, 29.804023212832867 ], [ -95.161120952020624, 29.804100212806119 ], [ -95.161156951230112, 29.804148213368826 ], [ -95.161189952069591, 29.804193213215658 ], [ -95.1612149521942, 29.804248213406911 ], [ -95.161227951769149, 29.804314213343726 ], [ -95.161227951666135, 29.804397213594179 ], [ -95.161214951930248, 29.8046332132072 ], [ -95.161151951316342, 29.804765213613365 ], [ -95.160855952198915, 29.80490321341513 ], [ -95.160653951579619, 29.805023212987511 ], [ -95.16043995113219, 29.805166213452367 ], [ -95.160369951630329, 29.805166213379742 ], [ -95.160098951857194, 29.805139213253959 ], [ -95.15968295143972, 29.805172213104488 ], [ -95.158856951655792, 29.805337213774404 ], [ -95.158579950657455, 29.805452213154386 ], [ -95.158308951068562, 29.805600213612486 ], [ -95.158068951145751, 29.805837213414815 ], [ -95.157986951102984, 29.805875213359919 ], [ -95.157872951117895, 29.805897213665389 ], [ -95.157740951227012, 29.805958213952181 ], [ -95.15739995123559, 29.806205213721718 ], [ -95.15734395078357, 29.806260213604542 ], [ -95.157286950671832, 29.806409213476332 ], [ -95.157261950715707, 29.806595213640357 ], [ -95.157153951120691, 29.806755214268769 ], [ -95.156775950679801, 29.80690921383432 ], [ -95.15656795031714, 29.807107213458298 ], [ -95.156561950852094, 29.807217214123664 ], [ -95.156573950498213, 29.807332213678283 ], [ -95.156636951051908, 29.807464213741234 ], [ -95.15692095131952, 29.80790421431805 ], [ -95.156958950588304, 29.808020213719246 ], [ -95.156970950353269, 29.808119214530016 ], [ -95.157021951355745, 29.808185213798197 ], [ -95.157134951334839, 29.808218214476316 ], [ -95.15729895076521, 29.80823421391646 ], [ -95.157481950591787, 29.808240214167455 ], [ -95.15760795059991, 29.808273214251678 ], [ -95.157771951337949, 29.808377214375771 ], [ -95.158282951649198, 29.808806214218006 ], [ -95.158433951541994, 29.808911213914225 ], [ -95.158543951567168, 29.809035214036431 ], [ -95.158559951624781, 29.809054214106908 ], [ -95.15864195166651, 29.809197214438914 ], [ -95.158698951578927, 29.809356214654404 ], [ -95.158697951052901, 29.809488213931392 ], [ -95.1586729512223, 29.809653214496969 ], [ -95.158677951620902, 29.809784214004107 ], [ -95.158678951339752, 29.809812214792423 ], [ -95.158695951668122, 29.809951213988551 ], [ -95.158928951679101, 29.809889214177272 ], [ -95.159032951441787, 29.809862214232325 ], [ -95.160006951804817, 29.809614214591015 ], [ -95.161024952045764, 29.809352214111065 ], [ -95.161314951483419, 29.809274214477085 ], [ -95.161569952360608, 29.8092072144863 ], [ -95.162066952647535, 29.809058214322835 ], [ -95.162526952467488, 29.808926214506783 ], [ -95.162889952502582, 29.808836214504055 ], [ -95.163300952386066, 29.808744213899455 ], [ -95.163302952895648, 29.808559213952304 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 741, "Tract": "48201252003", "Area_SqMi": 8.5026093170730395, "total_2009": 82, "total_2010": 92, "total_2011": 28, "total_2012": 27, "total_2013": 44, "total_2014": 57, "total_2015": 439, "total_2016": 125, "total_2017": 168, "total_2018": 285, "total_2019": 322, "total_2020": 365, "age1": 192, "age2": 289, "age3": 68, "earn1": 130, "earn2": 212, "earn3": 207, "naics_s01": 0, "naics_s02": 28, "naics_s03": 0, "naics_s04": 44, "naics_s05": 6, "naics_s06": 12, "naics_s07": 25, "naics_s08": 12, "naics_s09": 3, "naics_s10": 2, "naics_s11": 12, "naics_s12": 75, "naics_s13": 3, "naics_s14": 5, "naics_s15": 0, "naics_s16": 190, "naics_s17": 18, "naics_s18": 95, "naics_s19": 19, "naics_s20": 0, "race1": 376, "race2": 109, "race3": 9, "race4": 38, "race5": 5, "race6": 12, "ethnicity1": 380, "ethnicity2": 169, "edu1": 78, "edu2": 90, "edu3": 117, "edu4": 72, "Shape_Length": 84515.963935321852, "Shape_Area": 237038195.39871174, "total_2021": 333, "total_2022": 549 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.176659961692422, 29.931012238925412 ], [ -95.176759961874737, 29.930717238964654 ], [ -95.176502961858233, 29.930655238249138 ], [ -95.176435961127055, 29.93064423886139 ], [ -95.175968960948694, 29.930503238842327 ], [ -95.175611961328002, 29.930330238753829 ], [ -95.175181960639819, 29.929976238808802 ], [ -95.174908961087937, 29.929777238811756 ], [ -95.174125960180561, 29.928672237804939 ], [ -95.172753960536625, 29.927160237795231 ], [ -95.172428960283042, 29.926801237987661 ], [ -95.1711139602386, 29.925665237510035 ], [ -95.169543959476187, 29.92449123743696 ], [ -95.168544959054174, 29.923707237143599 ], [ -95.167497958215804, 29.92276623752068 ], [ -95.166643958860675, 29.921839236679059 ], [ -95.166527957912507, 29.921713236674293 ], [ -95.165669958473842, 29.920714236538597 ], [ -95.165359957798188, 29.920320236947624 ], [ -95.16443395808561, 29.919142236263969 ], [ -95.164367957841804, 29.91904123643306 ], [ -95.163810957700846, 29.918194236092763 ], [ -95.163416956975084, 29.917594236484526 ], [ -95.163332956971331, 29.917467236260563 ], [ -95.162279956521317, 29.915845236366366 ], [ -95.162058956569084, 29.91550323582296 ], [ -95.16035495630382, 29.913548235839968 ], [ -95.159260956353492, 29.912509235239931 ], [ -95.1588469555264, 29.912117235169337 ], [ -95.15835395576589, 29.911650235358934 ], [ -95.157570955297814, 29.910885234785656 ], [ -95.156968955131191, 29.910173234807313 ], [ -95.156310955629024, 29.90911023523768 ], [ -95.155971955387443, 29.908349234342005 ], [ -95.155719954741798, 29.907537234605527 ], [ -95.155540954729886, 29.906466234550429 ], [ -95.155592954498687, 29.905459234489758 ], [ -95.155605955215009, 29.90504223401803 ], [ -95.155706955336299, 29.904697233891547 ], [ -95.155825954880768, 29.904145234026753 ], [ -95.155937955068012, 29.903843233839613 ], [ -95.155980954372865, 29.903532234023885 ], [ -95.156054955093964, 29.90269023324301 ], [ -95.156674954839886, 29.902061233339495 ], [ -95.156721954541112, 29.901984233183175 ], [ -95.156922954674684, 29.90166023284841 ], [ -95.157416955215581, 29.901047233374914 ], [ -95.158026955450964, 29.900304233094708 ], [ -95.15873495522662, 29.899630232859014 ], [ -95.159417955392826, 29.899089232941751 ], [ -95.159752956087345, 29.898927232507813 ], [ -95.160376955648033, 29.89856523239683 ], [ -95.160129955586299, 29.898605232491121 ], [ -95.159763955965332, 29.898682232147809 ], [ -95.159108955613618, 29.898852232835182 ], [ -95.159043955025226, 29.898869232765769 ], [ -95.157901955118291, 29.899149233111235 ], [ -95.156039954349538, 29.899775233120717 ], [ -95.153944954608221, 29.90061623349035 ], [ -95.153136953953037, 29.900984233703348 ], [ -95.153005954007313, 29.901056233717227 ], [ -95.152656953867634, 29.901248233067665 ], [ -95.152573953615686, 29.90143523309855 ], [ -95.15133095333141, 29.904250233905913 ], [ -95.150186953971058, 29.906905234686679 ], [ -95.149946953650939, 29.90742823513165 ], [ -95.14914495309857, 29.909220234812558 ], [ -95.148702953413334, 29.910171235299146 ], [ -95.148392953006933, 29.910886235056765 ], [ -95.147761952638646, 29.912304235869279 ], [ -95.147666952765348, 29.912458235616668 ], [ -95.147413952709215, 29.912783236317424 ], [ -95.147287953130657, 29.912909235665886 ], [ -95.147098952944077, 29.913063236208178 ], [ -95.146839952900336, 29.91325023615428 ], [ -95.146618953037063, 29.91336023595434 ], [ -95.146346952651768, 29.91348123596828 ], [ -95.14520995209061, 29.914014236043577 ], [ -95.144765952425445, 29.914213235853577 ], [ -95.144568952063693, 29.91422423617119 ], [ -95.144018951775237, 29.914271236065648 ], [ -95.143985952596907, 29.914282236658376 ], [ -95.143954952288169, 29.914317236461148 ], [ -95.143837952032385, 29.914352236636859 ], [ -95.142032951432867, 29.915225236468739 ], [ -95.141277951212942, 29.915591236286645 ], [ -95.141290951895783, 29.915613236516162 ], [ -95.14121495139608, 29.915602236551194 ], [ -95.135684949884222, 29.918194237801451 ], [ -95.13548495001298, 29.918287237494809 ], [ -95.135285950087493, 29.918381237881132 ], [ -95.13410894990102, 29.918933237963618 ], [ -95.13293094970679, 29.919484237824026 ], [ -95.133135949926398, 29.91968123776342 ], [ -95.133509949858137, 29.920040237856504 ], [ -95.136952950515578, 29.923368238337563 ], [ -95.138700951726463, 29.925058238635462 ], [ -95.140290951751027, 29.926594238919726 ], [ -95.140442951672682, 29.926722238860094 ], [ -95.145057953068246, 29.934858240814133 ], [ -95.148098954465638, 29.940220241786573 ], [ -95.14983395492942, 29.943278241759945 ], [ -95.149220955610389, 29.948823243554475 ], [ -95.148245955211721, 29.957633244879172 ], [ -95.129291951733379, 29.977877250026822 ], [ -95.129345951893399, 29.978110249688619 ], [ -95.129652951097285, 29.979445249883113 ], [ -95.129750951398421, 29.97986824987975 ], [ -95.131147952374292, 29.985932251535797 ], [ -95.131481952639902, 29.987382252122959 ], [ -95.131547952293275, 29.987672251891603 ], [ -95.13544295353131, 29.985838250995453 ], [ -95.135582952856311, 29.985769250774815 ], [ -95.135721953486765, 29.985708250838567 ], [ -95.135928953242214, 29.985618251477973 ], [ -95.135969953736776, 29.985600251448609 ], [ -95.136532953089869, 29.985355250951649 ], [ -95.136951953469364, 29.985165251042755 ], [ -95.137856953934815, 29.984830250988669 ], [ -95.138352954362077, 29.984703250849293 ], [ -95.139409954709322, 29.984450250798162 ], [ -95.139875954825726, 29.984380250401905 ], [ -95.140288954653442, 29.984320251207333 ], [ -95.140494954761493, 29.984288250923736 ], [ -95.140815954453714, 29.984242251121817 ], [ -95.14125895520732, 29.984195250969691 ], [ -95.141839955080769, 29.984154250450391 ], [ -95.143147955252104, 29.98405825099189 ], [ -95.144482956054972, 29.983966250980274 ], [ -95.145225955932517, 29.983901250813993 ], [ -95.146033955854222, 29.983825250882695 ], [ -95.147285956633979, 29.983721250460786 ], [ -95.14761095678351, 29.983690250398141 ], [ -95.148143956403686, 29.983640249936265 ], [ -95.148822956705047, 29.983544250217427 ], [ -95.149556957111557, 29.98341525048507 ], [ -95.149992957103109, 29.983319250432103 ], [ -95.150630957037961, 29.983158250174185 ], [ -95.151259957263363, 29.982977249701495 ], [ -95.151832957346713, 29.98278824993848 ], [ -95.152332957992115, 29.982604250236648 ], [ -95.152653957373943, 29.982475250188024 ], [ -95.153076957615554, 29.982294250091091 ], [ -95.15353095741402, 29.982089249456191 ], [ -95.154007957951904, 29.981844249483192 ], [ -95.154521958205279, 29.981559250026685 ], [ -95.155113958345581, 29.9811892500616 ], [ -95.155521958384952, 29.980916249291958 ], [ -95.155980958458898, 29.980583249816231 ], [ -95.156439958807596, 29.980233249092873 ], [ -95.156572958495488, 29.980121249345931 ], [ -95.156746958608593, 29.979962248996397 ], [ -95.156789958976219, 29.979923249125232 ], [ -95.156826958980176, 29.979889249740843 ], [ -95.156836958074493, 29.979880249370041 ], [ -95.157072958908117, 29.979667249624203 ], [ -95.157600958291113, 29.979180249258683 ], [ -95.157901958499636, 29.978900248755998 ], [ -95.15813695837997, 29.97868224943295 ], [ -95.159341959368447, 29.977519248619981 ], [ -95.159394959172246, 29.977469248915053 ], [ -95.159665959643519, 29.977201248527162 ], [ -95.160513959165186, 29.976376248015075 ], [ -95.160820959886834, 29.976071248464319 ], [ -95.161168958992832, 29.975729248729081 ], [ -95.162179959187029, 29.974729248223809 ], [ -95.163238960407242, 29.973716247882308 ], [ -95.163310959534442, 29.973646247774123 ], [ -95.163601959672732, 29.973363247499417 ], [ -95.164743960611801, 29.972294247452211 ], [ -95.165147960121359, 29.971904247007586 ], [ -95.166716961020853, 29.970369246659047 ], [ -95.167694960591476, 29.96939724717997 ], [ -95.169185960669296, 29.967951246741332 ], [ -95.169780961063452, 29.967364246575155 ], [ -95.169928961645354, 29.967223246119666 ], [ -95.169885961280229, 29.967103246063946 ], [ -95.169571961286934, 29.966226246233308 ], [ -95.169022961124881, 29.964747245368034 ], [ -95.168924960503389, 29.96447224616832 ], [ -95.16884496141364, 29.964210246083542 ], [ -95.168777961213721, 29.963992245937181 ], [ -95.168650960747712, 29.963561245556967 ], [ -95.168611960948553, 29.96329724590521 ], [ -95.168562960953111, 29.962817245184134 ], [ -95.1685529607836, 29.962356245276847 ], [ -95.168572961200084, 29.961994244854704 ], [ -95.168627961257101, 29.961716245393212 ], [ -95.168650960405259, 29.961602244993024 ], [ -95.168728961164248, 29.961249245403874 ], [ -95.168905960809184, 29.960759245055712 ], [ -95.169091961080952, 29.960348244780285 ], [ -95.169385961208647, 29.959869244772783 ], [ -95.169444960905807, 29.959760244838652 ], [ -95.16964096135834, 29.959505245140107 ], [ -95.170982961591122, 29.957683243928969 ], [ -95.171382961220729, 29.957164244566769 ], [ -95.171455961105437, 29.957068244132103 ], [ -95.171736961322566, 29.956704243635784 ], [ -95.172657960982491, 29.955450244016969 ], [ -95.173029961857466, 29.954979243989179 ], [ -95.173333961158988, 29.954548243218404 ], [ -95.173490962037675, 29.954274243785488 ], [ -95.173601961671707, 29.954086243822996 ], [ -95.173715961319417, 29.953892243532852 ], [ -95.173831961790654, 29.95364124299207 ], [ -95.174097962214788, 29.953069243327093 ], [ -95.174195962249527, 29.952785243619868 ], [ -95.174313961967542, 29.952383242929173 ], [ -95.17441196202725, 29.951923243103867 ], [ -95.174518961905974, 29.95130624250487 ], [ -95.174851961930642, 29.94894524191962 ], [ -95.175109961367909, 29.947109241623032 ], [ -95.175187961917175, 29.94655424150443 ], [ -95.175486961356938, 29.944433241696615 ], [ -95.175616961738228, 29.943507241160585 ], [ -95.175694961422423, 29.942841241490804 ], [ -95.175743961773478, 29.942185241148049 ], [ -95.175753961311159, 29.941666240748269 ], [ -95.175749962159415, 29.941379240396522 ], [ -95.175743961987706, 29.940990240653939 ], [ -95.17573996209903, 29.940505240843489 ], [ -95.17573396133082, 29.939834240517502 ], [ -95.175733961409918, 29.939285240020055 ], [ -95.175841961220428, 29.938384240477944 ], [ -95.175908961810705, 29.937952240087821 ], [ -95.175963961544397, 29.93759523956653 ], [ -95.176091961910146, 29.936988239473891 ], [ -95.176247961920083, 29.936018240114485 ], [ -95.17636096123266, 29.935376239222176 ], [ -95.176375961853466, 29.935303239203282 ], [ -95.176379961459148, 29.935242239067598 ], [ -95.176394961338673, 29.93500423987453 ], [ -95.176409961965916, 29.93468123936216 ], [ -95.176429961426365, 29.934343238993314 ], [ -95.176438961515103, 29.933980239152358 ], [ -95.17643496105886, 29.933545238772833 ], [ -95.176414961871359, 29.932961238928463 ], [ -95.176424961830094, 29.932633239407856 ], [ -95.176434961842389, 29.932378238487484 ], [ -95.176478961077549, 29.93198623890083 ], [ -95.176551960963181, 29.931521238972653 ], [ -95.176659961692422, 29.931012238925412 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 742, "Tract": "48201233104", "Area_SqMi": 0.31019449421887546, "total_2009": 37, "total_2010": 39, "total_2011": 52, "total_2012": 50, "total_2013": 50, "total_2014": 52, "total_2015": 45, "total_2016": 73, "total_2017": 78, "total_2018": 91, "total_2019": 83, "total_2020": 42, "age1": 3, "age2": 25, "age3": 17, "earn1": 4, "earn2": 22, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 15, "naics_s06": 1, "naics_s07": 2, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 43, "race2": 0, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 26, "ethnicity2": 19, "edu1": 9, "edu2": 16, "edu3": 12, "edu4": 5, "Shape_Length": 13233.067000180808, "Shape_Area": 8647691.5956394672, "total_2021": 56, "total_2022": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.169729952720701, 29.782279208059173 ], [ -95.169721953084064, 29.782025208638753 ], [ -95.169725953073396, 29.781840208681118 ], [ -95.169722953268618, 29.781751208691865 ], [ -95.169728952950706, 29.781677208067958 ], [ -95.169706952548026, 29.781626208058437 ], [ -95.169715952895857, 29.781519207954741 ], [ -95.169717953314503, 29.781488208279708 ], [ -95.16969095321123, 29.780786208414341 ], [ -95.169671952580487, 29.780050208037757 ], [ -95.169663952704298, 29.779679208084552 ], [ -95.169655952669629, 29.779611207514439 ], [ -95.169649953141558, 29.779403207619605 ], [ -95.169640952889637, 29.779303208043995 ], [ -95.169634952549117, 29.779125207900329 ], [ -95.169650952864714, 29.779036207453437 ], [ -95.16964695321883, 29.778955207521875 ], [ -95.169668952547781, 29.778875207946626 ], [ -95.169643952992175, 29.77878320767114 ], [ -95.169628952803123, 29.77855520727562 ], [ -95.169625952321269, 29.778523207969517 ], [ -95.169630952312787, 29.778442207976344 ], [ -95.169629952654404, 29.778354207491166 ], [ -95.169616952652177, 29.778157207368888 ], [ -95.169619953131487, 29.77804320757555 ], [ -95.169612952976266, 29.777961207411327 ], [ -95.169610952799658, 29.777815207097298 ], [ -95.169607952753054, 29.777758207204723 ], [ -95.169626952641636, 29.777659207373848 ], [ -95.169593953132278, 29.77745320696383 ], [ -95.169580952363091, 29.777337207061588 ], [ -95.169605953153976, 29.777271207651864 ], [ -95.169596952218427, 29.77719120755965 ], [ -95.169593952277111, 29.777066207301978 ], [ -95.169586952227277, 29.776740206878184 ], [ -95.169576952653571, 29.776657207403112 ], [ -95.169554952355142, 29.776579207159145 ], [ -95.169572952914606, 29.776482207136905 ], [ -95.169575952477359, 29.776327206999756 ], [ -95.169572952718383, 29.77597820690649 ], [ -95.169558952537258, 29.775598207369445 ], [ -95.169548952467437, 29.775331207162697 ], [ -95.169554952988037, 29.775250206812803 ], [ -95.169553952487348, 29.77516520683476 ], [ -95.169535952986521, 29.774992206642416 ], [ -95.169532952543335, 29.774842206576981 ], [ -95.169507952861167, 29.774105206503304 ], [ -95.169499952600432, 29.773715206480585 ], [ -95.169500952131358, 29.773536206410217 ], [ -95.169490952282189, 29.773445206995913 ], [ -95.169488953002244, 29.773351206362669 ], [ -95.169480952754711, 29.77308320605545 ], [ -95.169467952100703, 29.772638206030337 ], [ -95.169464952232531, 29.772490206285884 ], [ -95.169468952344062, 29.772315206085171 ], [ -95.169461952857532, 29.7722292067658 ], [ -95.169463952270377, 29.772147206419724 ], [ -95.169448952937458, 29.771870206301191 ], [ -95.169436952743368, 29.771541206250451 ], [ -95.169421952388646, 29.771133206128912 ], [ -95.1694199520947, 29.771083206346734 ], [ -95.169421952022915, 29.7709962058609 ], [ -95.169458952357715, 29.770912206280737 ], [ -95.165205951803642, 29.770988206393628 ], [ -95.161669950368321, 29.771051206781792 ], [ -95.161646950213154, 29.771125206129334 ], [ -95.161620950737046, 29.771206206777176 ], [ -95.161603950375408, 29.771257206178689 ], [ -95.161589950255504, 29.771301206105619 ], [ -95.161619950000869, 29.771363206297284 ], [ -95.161661950625458, 29.771422206567781 ], [ -95.161681950827528, 29.771449206417412 ], [ -95.161701950650169, 29.771477206460833 ], [ -95.161730950096228, 29.771498206445916 ], [ -95.161805950150182, 29.771552206571929 ], [ -95.162000950904385, 29.771567206071552 ], [ -95.162038950532818, 29.771566206419731 ], [ -95.162582950658347, 29.771551206201536 ], [ -95.162898950661557, 29.771534206159867 ], [ -95.162902950910976, 29.77169320660289 ], [ -95.162908950604432, 29.771960206383326 ], [ -95.162914950716925, 29.772011206433518 ], [ -95.162920950457362, 29.772063206679551 ], [ -95.162912950307742, 29.772316206170821 ], [ -95.162924950517578, 29.772460206851299 ], [ -95.162915950751454, 29.772540206786093 ], [ -95.162939951245107, 29.772602206363079 ], [ -95.162930950560721, 29.772771206681835 ], [ -95.162929950751888, 29.77280820649294 ], [ -95.162935950970081, 29.77287020700776 ], [ -95.162936950845804, 29.772939206620457 ], [ -95.162945951008368, 29.773020206699503 ], [ -95.16293395106473, 29.773076206916041 ], [ -95.162944950461309, 29.773302206737863 ], [ -95.162941951336251, 29.773373206897414 ], [ -95.162951951198579, 29.773437206789527 ], [ -95.162951950633484, 29.773486207000058 ], [ -95.162958951080398, 29.773851206846746 ], [ -95.162978950794681, 29.773929207081245 ], [ -95.162968950411951, 29.774020206795306 ], [ -95.162968950413216, 29.774101207321728 ], [ -95.162961950796415, 29.77417820700278 ], [ -95.162950950730902, 29.774244207213513 ], [ -95.162975950850594, 29.774307206684039 ], [ -95.162984950685811, 29.774557207391677 ], [ -95.162992951315445, 29.774644207129029 ], [ -95.162991950823411, 29.774887207092743 ], [ -95.162997951072839, 29.774955206999969 ], [ -95.162995950443033, 29.774973206700675 ], [ -95.162990951042019, 29.775033206859781 ], [ -95.162994951044553, 29.77518520748476 ], [ -95.163011951380284, 29.775425207644396 ], [ -95.163020950904226, 29.77572420754742 ], [ -95.16302795139498, 29.775824207478795 ], [ -95.163020951166175, 29.77590820765289 ], [ -95.163037950754429, 29.775991206906117 ], [ -95.163043951176093, 29.776182206914772 ], [ -95.16302895137683, 29.776268207743353 ], [ -95.163038951361543, 29.77646720745183 ], [ -95.163044951421384, 29.776533207807308 ], [ -95.163043950753078, 29.77662020704021 ], [ -95.163053951113781, 29.776706207797094 ], [ -95.163040951085165, 29.776796207118192 ], [ -95.163049951293772, 29.776878207296718 ], [ -95.163047950767776, 29.776960207554851 ], [ -95.163037950792543, 29.777080207778074 ], [ -95.163056950737499, 29.777194207469787 ], [ -95.163071951251951, 29.777280207837638 ], [ -95.16306695074887, 29.777340207930482 ], [ -95.163080951277649, 29.777416207390775 ], [ -95.163081951138267, 29.777491207242374 ], [ -95.163069950853881, 29.777656207295873 ], [ -95.16308895112661, 29.777733207471371 ], [ -95.163085950999601, 29.777801207801328 ], [ -95.163069951352796, 29.777890207673575 ], [ -95.163073950687092, 29.777952207665297 ], [ -95.163089950725947, 29.77801920743735 ], [ -95.163079951262972, 29.778073207593881 ], [ -95.163083951362978, 29.778147207366381 ], [ -95.16308495107674, 29.778399207525752 ], [ -95.163091950745638, 29.778485208076358 ], [ -95.163093950604349, 29.778688207807036 ], [ -95.163087950734933, 29.778792208177347 ], [ -95.163077951131797, 29.778863208206069 ], [ -95.163098951205569, 29.778956207508436 ], [ -95.163080951319174, 29.779036207818198 ], [ -95.163119951283363, 29.779136207541654 ], [ -95.163132951125405, 29.779224207847946 ], [ -95.163111951425435, 29.77931520758256 ], [ -95.163084951332138, 29.779399208304572 ], [ -95.163106950798095, 29.779448208201199 ], [ -95.163109951292896, 29.779466208436396 ], [ -95.163098951167754, 29.779573207969666 ], [ -95.163139951150356, 29.7797812076745 ], [ -95.163140950990723, 29.779873208255907 ], [ -95.163171951604596, 29.779927207779718 ], [ -95.163156951161795, 29.780081208044408 ], [ -95.163137951630986, 29.780141208112472 ], [ -95.163137950772338, 29.780177208257381 ], [ -95.163142951257015, 29.780297208149463 ], [ -95.163133950869934, 29.780366208367386 ], [ -95.163156950967505, 29.780514208453404 ], [ -95.163162951292449, 29.780597208603034 ], [ -95.163138951028827, 29.780689208372081 ], [ -95.163136951627578, 29.780768207959024 ], [ -95.16314195154628, 29.780839208596031 ], [ -95.163136951386818, 29.780909207986845 ], [ -95.163145950743669, 29.781031208103546 ], [ -95.163142950738589, 29.781194207993625 ], [ -95.163146951518669, 29.781289208406609 ], [ -95.163158951299764, 29.781393208571728 ], [ -95.16316895160179, 29.781669208395801 ], [ -95.163171951677199, 29.781767208743315 ], [ -95.163189951400497, 29.78186020869801 ], [ -95.163187951443831, 29.781963208644012 ], [ -95.163197951127387, 29.782182208466157 ], [ -95.163175951169947, 29.782290208269082 ], [ -95.163189950834038, 29.782404209021685 ], [ -95.163624951312471, 29.782389208508867 ], [ -95.163892951689647, 29.782375208453484 ], [ -95.163987951203751, 29.782376208863621 ], [ -95.164078951610037, 29.782367208247027 ], [ -95.16417195109986, 29.782370208561836 ], [ -95.164358951989144, 29.782364208138777 ], [ -95.164451951792017, 29.78236920867683 ], [ -95.164543951487104, 29.782355208241988 ], [ -95.164632951715888, 29.78235420851404 ], [ -95.16470495138617, 29.782348208660629 ], [ -95.164773951857697, 29.782331208257872 ], [ -95.164886952124803, 29.782353208383888 ], [ -95.164963951756292, 29.782348208143514 ], [ -95.16549695197007, 29.78234620827735 ], [ -95.1658799522544, 29.782349208507515 ], [ -95.166796951977176, 29.782332208569361 ], [ -95.16690195211342, 29.782339208914642 ], [ -95.167110952372568, 29.782323208050574 ], [ -95.167460952134107, 29.782318208894122 ], [ -95.167602952467746, 29.782310208449282 ], [ -95.167940952418107, 29.782314208855659 ], [ -95.168036952785187, 29.782311208022954 ], [ -95.168134953004483, 29.7823192087635 ], [ -95.168240952283924, 29.782318208820435 ], [ -95.168359953040422, 29.782298208339686 ], [ -95.168928952992232, 29.782300208428175 ], [ -95.169729952720701, 29.782279208059173 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 743, "Tract": "48481740500", "Area_SqMi": 46.175147833880175, "total_2009": 601, "total_2010": 213, "total_2011": 1151, "total_2012": 997, "total_2013": 1019, "total_2014": 995, "total_2015": 1224, "total_2016": 1129, "total_2017": 1132, "total_2018": 1185, "total_2019": 1121, "total_2020": 1116, "age1": 105, "age2": 474, "age3": 359, "earn1": 242, "earn2": 240, "earn3": 456, "naics_s01": 27, "naics_s02": 95, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 0, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 5, "naics_s11": 8, "naics_s12": 15, "naics_s13": 0, "naics_s14": 0, "naics_s15": 724, "naics_s16": 2, "naics_s17": 0, "naics_s18": 0, "naics_s19": 42, "naics_s20": 0, "race1": 765, "race2": 121, "race3": 4, "race4": 30, "race5": 2, "race6": 16, "ethnicity1": 675, "ethnicity2": 263, "edu1": 120, "edu2": 205, "edu3": 265, "edu4": 243, "Shape_Length": 194623.12379904755, "Shape_Area": 1287284092.0532286, "total_2021": 967, "total_2022": 938 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.09397716912035, 29.326514084426471 ], [ -96.094474168577818, 29.32511608391739 ], [ -96.093415168712255, 29.32484608378466 ], [ -96.091369168293085, 29.324323083495784 ], [ -96.089035167755199, 29.323722083374644 ], [ -96.087538167579439, 29.323336084111524 ], [ -96.084563166743493, 29.322581083505931 ], [ -96.083184165645406, 29.322234083241895 ], [ -96.083029165630947, 29.32219508363681 ], [ -96.082287166157244, 29.322009083143524 ], [ -96.082192165934529, 29.321985083387244 ], [ -96.077343164953447, 29.320765083737992 ], [ -96.077083164762513, 29.320700083833096 ], [ -96.075684164067042, 29.320328083747771 ], [ -96.075454163759119, 29.320266083094022 ], [ -96.074509163631333, 29.320015083170606 ], [ -96.073256163848185, 29.319731083764047 ], [ -96.071896162576579, 29.319531083073397 ], [ -96.070891162721495, 29.319420083836494 ], [ -96.070593163043171, 29.319387083367211 ], [ -96.070523162955482, 29.319379083808769 ], [ -96.070459162486713, 29.319372083345762 ], [ -96.070119162365543, 29.319334083457445 ], [ -96.069021162714193, 29.319215083249532 ], [ -96.068367161662991, 29.319142083523644 ], [ -96.066914162042195, 29.318982083659467 ], [ -96.062254160896288, 29.318470083806254 ], [ -96.051121157862525, 29.317224083683936 ], [ -96.05076215716953, 29.317163083396164 ], [ -96.050539157828908, 29.317126083338767 ], [ -96.049465157452062, 29.317002083928315 ], [ -96.048402156865762, 29.316910083607734 ], [ -96.047272156361771, 29.316778083271274 ], [ -96.04616815634931, 29.316641083488225 ], [ -96.045904155989376, 29.316612083787248 ], [ -96.04342815535712, 29.316339083392609 ], [ -96.04314515519637, 29.316279084108054 ], [ -96.041169155209303, 29.31607608365568 ], [ -96.03961315488425, 29.315886083570682 ], [ -96.035847154227781, 29.315471083885758 ], [ -96.034564153509336, 29.315329083376874 ], [ -96.034341153720973, 29.315304084155123 ], [ -96.033304153285101, 29.315189083844114 ], [ -96.032268152972335, 29.315065084229445 ], [ -96.031834153087061, 29.315013083618279 ], [ -96.030151152618643, 29.314812083910045 ], [ -96.028993152313859, 29.314568084137534 ], [ -96.028473151785946, 29.314414084235846 ], [ -96.023202150807236, 29.312848083902548 ], [ -96.022753150559865, 29.312715084090794 ], [ -96.022109150029905, 29.312524083639886 ], [ -96.021664150241506, 29.312392083733098 ], [ -96.021516149457511, 29.312763083826031 ], [ -96.018972149921055, 29.319122084842579 ], [ -96.018922150071162, 29.319266084733435 ], [ -96.017561149456199, 29.322643085446067 ], [ -96.017437149414235, 29.322952085736286 ], [ -96.017017149230483, 29.324001086304079 ], [ -96.016772149453374, 29.324615086612418 ], [ -96.016646148912727, 29.324930086231266 ], [ -96.016059148809134, 29.326399086889285 ], [ -96.015934149439502, 29.32671308648726 ], [ -96.015240149540517, 29.328450087045457 ], [ -96.014144149263643, 29.331194087498485 ], [ -96.01358814880922, 29.332614087985981 ], [ -96.013125148559013, 29.333816088439338 ], [ -96.012549148570315, 29.335205088223923 ], [ -96.012255149002087, 29.33591408867688 ], [ -96.011942149034425, 29.336802089000699 ], [ -96.011149148188807, 29.33834608917909 ], [ -96.010388147832487, 29.339831089665179 ], [ -96.010383148553373, 29.33989208967806 ], [ -96.010315148695369, 29.340632089804469 ], [ -96.009981148264202, 29.340835089537475 ], [ -96.009630147840539, 29.341011089592079 ], [ -96.009360147793799, 29.341181090138086 ], [ -96.008789148287008, 29.341565090175447 ], [ -96.007816148073289, 29.342411090391572 ], [ -96.007578147531618, 29.342576090509219 ], [ -96.007496147887537, 29.342609090661067 ], [ -96.007433147247809, 29.34260409004753 ], [ -96.007201147880139, 29.342614090011566 ], [ -96.006969147792134, 29.342598089910553 ], [ -96.006844147342875, 29.342570090016785 ], [ -96.006706147959534, 29.34250409014836 ], [ -96.00652414694369, 29.34230609034006 ], [ -96.006417147178482, 29.342141090552936 ], [ -96.006217147565678, 29.341784090002495 ], [ -96.006117147641177, 29.341652090209301 ], [ -96.005985146748586, 29.341515090397525 ], [ -96.005809147267911, 29.34137708971781 ], [ -96.005465146837764, 29.341141090228419 ], [ -96.005195146929353, 29.340986089889299 ], [ -96.004850146887179, 29.340871089989896 ], [ -96.004530146920004, 29.340794089691748 ], [ -96.003564146466431, 29.340623090276083 ], [ -96.003294146067603, 29.340601090042803 ], [ -96.003144146997144, 29.340606089676569 ], [ -96.002993146828601, 29.340628089881207 ], [ -96.002717146226274, 29.340650090446566 ], [ -96.002548146222324, 29.340639089915204 ], [ -96.002347146641782, 29.340578089663115 ], [ -96.002209146058803, 29.3405230895948 ], [ -96.002115146206833, 29.340474090051082 ], [ -96.002021146374489, 29.340408089778297 ], [ -96.001789146549697, 29.340133090100139 ], [ -96.00169514624713, 29.340001089811445 ], [ -96.001520146169355, 29.339600089589293 ], [ -96.001357145722793, 29.339138089531641 ], [ -96.001276146227198, 29.339006089490592 ], [ -96.001188146347744, 29.338912089936596 ], [ -96.00106214600369, 29.338808089281276 ], [ -96.000605146018245, 29.338549089487618 ], [ -96.00000514547051, 29.338390089574133 ], [ -95.999428145232955, 29.338264089962006 ], [ -95.999020144896662, 29.338154089991484 ], [ -95.998625145636311, 29.337978089798852 ], [ -95.998330145140059, 29.337830089291241 ], [ -95.997909145217449, 29.337709089373675 ], [ -95.997683144728143, 29.33760508947838 ], [ -95.997319144504104, 29.337517089637927 ], [ -95.99668614446756, 29.337292089417826 ], [ -95.996146144565884, 29.337160089772727 ], [ -95.995808144504849, 29.337033089679508 ], [ -95.995695144214181, 29.336990089702915 ], [ -95.995230144750892, 29.336848089590958 ], [ -95.994791143749751, 29.336529089828243 ], [ -95.994264144449033, 29.336167089035222 ], [ -95.994207143977889, 29.336161088957034 ], [ -95.993800144398037, 29.335947089010691 ], [ -95.993222144199422, 29.335749089568012 ], [ -95.99294014393638, 29.335640089076332 ], [ -95.992727143211155, 29.335579089627139 ], [ -95.992375143624514, 29.335557089164901 ], [ -95.991943143430191, 29.335492089157704 ], [ -95.991152143205142, 29.335454089725321 ], [ -95.990920142738346, 29.335459089456105 ], [ -95.990387142548087, 29.335553089314242 ], [ -95.989647142758244, 29.335855089347884 ], [ -95.988939142221525, 29.336268089607557 ], [ -95.988738142276631, 29.336406089250257 ], [ -95.988199142597594, 29.336928089834167 ], [ -95.987823142124142, 29.337335089446238 ], [ -95.987490142514673, 29.337753089539703 ], [ -95.987171141974812, 29.338209089910112 ], [ -95.986926142004791, 29.338632090159685 ], [ -95.986813141937162, 29.338786089729677 ], [ -95.986682142729777, 29.338913089978615 ], [ -95.986456141782483, 29.339001090147764 ], [ -95.985797142388563, 29.339089090108331 ], [ -95.985503141480422, 29.339095090140912 ], [ -95.985120142113956, 29.339078090377541 ], [ -95.984900141596015, 29.339100089913192 ], [ -95.984668142102407, 29.339139090376325 ], [ -95.98439214204582, 29.339249090399647 ], [ -95.983858141217226, 29.339491090624687 ], [ -95.982950141016786, 29.339920090183835 ], [ -95.98251714166274, 29.340019090208308 ], [ -95.982210141092636, 29.340074090786956 ], [ -95.981802141201413, 29.340173090628667 ], [ -95.981495141416971, 29.340212090761877 ], [ -95.981219140804001, 29.340223091022303 ], [ -95.980083140165533, 29.340081090702856 ], [ -95.979682140009942, 29.339960090309166 ], [ -95.978960140149184, 29.339713090342336 ], [ -95.978496140109286, 29.339526090611365 ], [ -95.978226140412374, 29.339295090452278 ], [ -95.97788713964006, 29.338971090363092 ], [ -95.977824139968135, 29.338883090181039 ], [ -95.977768140214948, 29.338751090760955 ], [ -95.977724139904794, 29.338680090121962 ], [ -95.977724140381667, 29.338026090364558 ], [ -95.977793139734402, 29.337745090262509 ], [ -95.977893140005222, 29.337597090332455 ], [ -95.978125139794187, 29.337405090329224 ], [ -95.978300140445, 29.337245090410978 ], [ -95.978783140339672, 29.336959089726118 ], [ -95.979003139910319, 29.336849089926961 ], [ -95.979235140163851, 29.336827090209479 ], [ -95.979862140871859, 29.336827089559907 ], [ -95.980276140304923, 29.336772089681759 ], [ -95.980427140879357, 29.3367280895833 ], [ -95.981054140790164, 29.336310089645966 ], [ -95.981298140238664, 29.335991089788529 ], [ -95.981329140456722, 29.33587508929353 ], [ -95.981354141098606, 29.335716089698412 ], [ -95.981348140490141, 29.335557089229916 ], [ -95.98131714040673, 29.335381089314136 ], [ -95.981216140981061, 29.335128089641859 ], [ -95.980727140172959, 29.33459508904533 ], [ -95.980563140210734, 29.33438608921103 ], [ -95.980344140236724, 29.334232089206072 ], [ -95.979974140447183, 29.334079089740619 ], [ -95.979773140545348, 29.333919089374906 ], [ -95.979340139813189, 29.333612089421234 ], [ -95.979058139848135, 29.33345808899055 ], [ -95.978788140481001, 29.333002089002189 ], [ -95.978769139846648, 29.332826089209984 ], [ -95.978825139476129, 29.332639089528769 ], [ -95.978831139961031, 29.332562088747238 ], [ -95.978888140087946, 29.332502088968369 ], [ -95.97900113997413, 29.332502089312573 ], [ -95.979201140094517, 29.332546089437667 ], [ -95.97953414016456, 29.33265508883273 ], [ -95.979735140608767, 29.332732088749957 ], [ -95.979904140373975, 29.332782088948758 ], [ -95.980105140699607, 29.33280308912639 ], [ -95.980318140470644, 29.3327980890225 ], [ -95.980494140090087, 29.332748089056423 ], [ -95.980876140752684, 29.332622088647721 ], [ -95.981083140360312, 29.332512089337076 ], [ -95.981227140818632, 29.332369089193719 ], [ -95.981365141051768, 29.332149089151031 ], [ -95.981409140830038, 29.331918088914996 ], [ -95.981434140956907, 29.331665089055498 ], [ -95.981434140132762, 29.331550088618044 ], [ -95.981384140964835, 29.331418089131589 ], [ -95.981264140844388, 29.331264088829844 ], [ -95.980938140152475, 29.331039089025072 ], [ -95.980606140309149, 29.3310280891647 ], [ -95.979960140156265, 29.331045088391431 ], [ -95.979784140486871, 29.331083089133209 ], [ -95.979596140134802, 29.33109408883961 ], [ -95.978981140293243, 29.331298088588046 ], [ -95.978768140348762, 29.331402089012407 ], [ -95.978361139348479, 29.331633089008243 ], [ -95.978072139539861, 29.331776088837358 ], [ -95.97772713987105, 29.331897089309429 ], [ -95.977508139570517, 29.332013089343558 ], [ -95.977351139153768, 29.332079089499302 ], [ -95.977088139406661, 29.332145089129298 ], [ -95.97667313942398, 29.332156088762719 ], [ -95.976473139653336, 29.332057089304765 ], [ -95.976284138883855, 29.331925089100864 ], [ -95.976052139142737, 29.331744088659526 ], [ -95.975764138763864, 29.331579089246056 ], [ -95.975607138600552, 29.331382089280627 ], [ -95.975381138699433, 29.330991089023083 ], [ -95.975230139482676, 29.330777089310168 ], [ -95.975036138570189, 29.330568088980307 ], [ -95.974822139187211, 29.330387089039093 ], [ -95.974609138352335, 29.330244088979921 ], [ -95.974396139067835, 29.330140088873502 ], [ -95.973957138997847, 29.329937088409501 ], [ -95.973743138941316, 29.329849088692981 ], [ -95.973448138524972, 29.329788089101001 ], [ -95.973254138301641, 29.329761088882666 ], [ -95.973016138036584, 29.329755088816448 ], [ -95.972840138102811, 29.329712088557297 ], [ -95.972708138306118, 29.329657088643579 ], [ -95.972564138689691, 29.329558089033728 ], [ -95.972213137932684, 29.329420088275572 ], [ -95.971761138214916, 29.329206088494175 ], [ -95.971328137510199, 29.328959089027371 ], [ -95.970977137746971, 29.328739088432627 ], [ -95.970707137743403, 29.328596088635521 ], [ -95.970494137606522, 29.328591088448491 ], [ -95.970186137222569, 29.32860208876042 ], [ -95.969923137434193, 29.328641088634537 ], [ -95.969860137384956, 29.328674088326789 ], [ -95.969578137384147, 29.32886108888529 ], [ -95.969371137422158, 29.329059088420127 ], [ -95.969177137801239, 29.329207089058293 ], [ -95.969114137329242, 29.329301089138664 ], [ -95.969076137236854, 29.329438089155857 ], [ -95.969051137729437, 29.329619089242033 ], [ -95.96910213749328, 29.329966088523868 ], [ -95.969114137019389, 29.330152089191969 ], [ -95.969108137668343, 29.330499088970967 ], [ -95.969115137019173, 29.330730088891027 ], [ -95.96915913788051, 29.33092708911331 ], [ -95.969159137804326, 29.331026089145933 ], [ -95.969146137212519, 29.331164089351905 ], [ -95.969109137915211, 29.331252089105487 ], [ -95.969015137114383, 29.331752089245807 ], [ -95.968971137521223, 29.331895088924334 ], [ -95.968852137681907, 29.332181088971538 ], [ -95.968657136903943, 29.332450089190601 ], [ -95.968519137627709, 29.33262008975894 ], [ -95.968400137359481, 29.332741089972433 ], [ -95.968275137260406, 29.332890089266641 ], [ -95.968056137530368, 29.333258089490418 ], [ -95.967830137647269, 29.333429090115398 ], [ -95.967485136861526, 29.333583089441412 ], [ -95.967178137183566, 29.333786090020698 ], [ -95.966481136521807, 29.334144090201416 ], [ -95.966111136412565, 29.334265090281622 ], [ -95.965911136372668, 29.334358089736945 ], [ -95.965754136844524, 29.334408090229481 ], [ -95.965353136833144, 29.334496090369857 ], [ -95.965045137046417, 29.334518090277559 ], [ -95.96440513636513, 29.334540090344738 ], [ -95.963866135825825, 29.334578089893892 ], [ -95.963389136270138, 29.334587089898214 ], [ -95.963363136035625, 29.334581089730563 ], [ -95.963315135995956, 29.334589090378792 ], [ -95.963032136468215, 29.334595089730009 ], [ -95.962536136163308, 29.334667090291191 ], [ -95.961827136177163, 29.334793090327494 ], [ -95.961244135759301, 29.335013089846662 ], [ -95.960830135278428, 29.335101090076776 ], [ -95.960447135506897, 29.335145090270892 ], [ -95.96010213575984, 29.335151090082366 ], [ -95.959607134904928, 29.335135090031535 ], [ -95.95887913467007, 29.334981090479538 ], [ -95.958446135176175, 29.33481109059446 ], [ -95.958032134662034, 29.334756090086938 ], [ -95.957857134609483, 29.334750090425654 ], [ -95.957223134432354, 29.334772090022078 ], [ -95.956696134623201, 29.334899090769532 ], [ -95.956213134295467, 29.335080090438652 ], [ -95.955925133806574, 29.335146090524105 ], [ -95.955674133715149, 29.33517409078517 ], [ -95.955298133806849, 29.335152090148995 ], [ -95.9548581341367, 29.334987090799263 ], [ -95.954482133666602, 29.334795090125244 ], [ -95.954256134237113, 29.334564089952924 ], [ -95.953873133884429, 29.334366090470294 ], [ -95.953817133966282, 29.33434209043121 ], [ -95.953516133668089, 29.334212090476019 ], [ -95.952970133199273, 29.334026090481828 ], [ -95.952537132902719, 29.333971090237238 ], [ -95.952280133409232, 29.33397608999276 ], [ -95.95165913299391, 29.334180090093703 ], [ -95.951026132641459, 29.33447709002861 ], [ -95.950311133159261, 29.3348840901924 ], [ -95.949878132924809, 29.335065090657924 ], [ -95.949470132400819, 29.335323090718884 ], [ -95.949615133112374, 29.3354830905744 ], [ -95.949778133091201, 29.335598090821424 ], [ -95.950085132913429, 29.33595009065165 ], [ -95.95041813312649, 29.336302090886058 ], [ -95.950650132787302, 29.336582090881272 ], [ -95.95068113323849, 29.336664091125485 ], [ -95.950675132618926, 29.33674709079833 ], [ -95.950606132490663, 29.336851090886721 ], [ -95.950549132542804, 29.33700509055393 ], [ -95.950299132915163, 29.337307090648562 ], [ -95.949954132992559, 29.337665091058437 ], [ -95.949828133145246, 29.337813091377487 ], [ -95.949571132385316, 29.338247090981472 ], [ -95.949521132907662, 29.338379090914156 ], [ -95.949502132919889, 29.338484091720584 ], [ -95.94950913273874, 29.338786091744279 ], [ -95.949546132497346, 29.33894009152452 ], [ -95.949747133342896, 29.339292091281003 ], [ -95.949772132537106, 29.339479091778806 ], [ -95.949778132517679, 29.339665091147495 ], [ -95.949753132562066, 29.339797091210844 ], [ -95.949691133226949, 29.339929091297154 ], [ -95.94950313325738, 29.340133091622249 ], [ -95.949459132388313, 29.340254092108214 ], [ -95.949503132483471, 29.340386091643058 ], [ -95.949546133181727, 29.340578091676406 ], [ -95.949553133192225, 29.340869092266804 ], [ -95.949584132525828, 29.341018091487591 ], [ -95.949722133154083, 29.341188091687322 ], [ -95.94989213310329, 29.341303091723386 ], [ -95.950281133084005, 29.341490091756313 ], [ -95.950519132653639, 29.341534092341867 ], [ -95.950776133368052, 29.341655092322728 ], [ -95.951372133440415, 29.34221009171916 ], [ -95.952226133831473, 29.342529092267505 ], [ -95.952433133641136, 29.342699092023356 ], [ -95.952602133320923, 29.342908092399234 ], [ -95.952690133753478, 29.343062092209195 ], [ -95.952822133848272, 29.343238092470063 ], [ -95.952897134224827, 29.343403092466641 ], [ -95.952985134380114, 29.343595092322513 ], [ -95.953098133916313, 29.343804092363094 ], [ -95.95315413426259, 29.344024092746981 ], [ -95.953217134125822, 29.344397092518687 ], [ -95.953387133758497, 29.345084092951019 ], [ -95.953286134374409, 29.345370092766807 ], [ -95.953161134113657, 29.34550809269231 ], [ -95.952879133945984, 29.345612092291251 ], [ -95.952427133860425, 29.345881092935958 ], [ -95.952201133852597, 29.346167092377204 ], [ -95.952164134001478, 29.346569092651531 ], [ -95.952176133933634, 29.346898093382389 ], [ -95.952214133814209, 29.347069093180139 ], [ -95.952283133848809, 29.347201092892877 ], [ -95.952383134194591, 29.347360092884166 ], [ -95.952609133999161, 29.347591093434342 ], [ -95.952641133680586, 29.347706092973674 ], [ -95.952647134231327, 29.347789093116081 ], [ -95.952591133696913, 29.348047093472793 ], [ -95.952246134052132, 29.348113093618487 ], [ -95.952089133519209, 29.348108092799539 ], [ -95.951794133774399, 29.347992093182008 ], [ -95.951599133742633, 29.347899093127118 ], [ -95.951399133932, 29.347838092853348 ], [ -95.951141133606967, 29.347811093052744 ], [ -95.950978133505245, 29.34781609297476 ], [ -95.950715133179727, 29.347860092781112 ], [ -95.950545133767974, 29.347915093516406 ], [ -95.950263133816179, 29.348042092826976 ], [ -95.950119133439443, 29.348179093493798 ], [ -95.950000133105263, 29.348350092964999 ], [ -95.949906133385994, 29.348531093376689 ], [ -95.949788133734998, 29.348794093352716 ], [ -95.949749132825247, 29.348960093581191 ], [ -95.949755132946052, 29.349224093422876 ], [ -95.94979913297982, 29.349740093887508 ], [ -95.949862133550454, 29.349993093717089 ], [ -95.949875133790172, 29.350510093348031 ], [ -95.949843133318481, 29.350719093667443 ], [ -95.949774133547592, 29.350928094119894 ], [ -95.949649133337886, 29.351131093916965 ], [ -95.949423133521478, 29.351334093948868 ], [ -95.949285133267608, 29.351411093927993 ], [ -95.949103133237401, 29.351472093641242 ], [ -95.948877133359147, 29.351461094414354 ], [ -95.948708132773675, 29.351417093934003 ], [ -95.948564132663975, 29.351346094340968 ], [ -95.948451133326898, 29.351258094024683 ], [ -95.948401132891789, 29.35109309377388 ], [ -95.948369132642611, 29.350906093943752 ], [ -95.948219133165509, 29.350488093672503 ], [ -95.948011133326048, 29.350257093871036 ], [ -95.947553132781422, 29.349900093807953 ], [ -95.947365132579961, 29.349730093561462 ], [ -95.947202133136273, 29.349653094079422 ], [ -95.947008132307801, 29.349658094067578 ], [ -95.946763132137221, 29.349801093862698 ], [ -95.946619132130223, 29.350148093513312 ], [ -95.946456132840268, 29.350598094026655 ], [ -95.946299132982119, 29.351560093712031 ], [ -95.946111132419077, 29.35248409386007 ], [ -95.946105132844565, 29.352654094048301 ], [ -95.94599213267891, 29.352896094764581 ], [ -95.945847132957766, 29.352989094319241 ], [ -95.945659132396301, 29.352962094736402 ], [ -95.945496132623759, 29.352841094193117 ], [ -95.945289132605069, 29.352632094584187 ], [ -95.945082132019792, 29.352286094078352 ], [ -95.944467132504755, 29.351681094542464 ], [ -95.944329132118355, 29.351610094098024 ], [ -95.944109132334574, 29.351549094454011 ], [ -95.943959131559694, 29.351522094163425 ], [ -95.943840132118169, 29.351522094230745 ], [ -95.943651131846451, 29.351560094510109 ], [ -95.943231131498521, 29.351692093985381 ], [ -95.943012132119975, 29.351852094037948 ], [ -95.942811131840983, 29.352033093913214 ], [ -95.942535131206355, 29.352253094354147 ], [ -95.942234131723652, 29.352446094577282 ], [ -95.941945131244466, 29.352528094034131 ], [ -95.941751131700656, 29.352534094767151 ], [ -95.941537131786504, 29.352523094560588 ], [ -95.941161131179456, 29.352462094816211 ], [ -95.940916130994495, 29.352308093988828 ], [ -95.940383131124236, 29.351836094553548 ], [ -95.940238131103612, 29.351726094091283 ], [ -95.940107131393844, 29.351693093902462 ], [ -95.94002513118707, 29.351698094523176 ], [ -95.939887130575499, 29.351830094277375 ], [ -95.939843130790649, 29.351962094725323 ], [ -95.939793131402936, 29.352056094449196 ], [ -95.939730130675201, 29.352138094458784 ], [ -95.939517130557647, 29.352539094478868 ], [ -95.939461131321437, 29.352853094900997 ], [ -95.939480131354102, 29.353259094393703 ], [ -95.939523131195372, 29.353507094350093 ], [ -95.939586130416487, 29.353732094668 ], [ -95.93962413067473, 29.354001094925373 ], [ -95.939630130521763, 29.354166095264951 ], [ -95.939624130511561, 29.354386095122962 ], [ -95.939605131026127, 29.354611095275665 ], [ -95.939611130905263, 29.354776094698444 ], [ -95.939555130998528, 29.355255094991357 ], [ -95.939467130575707, 29.35544109472735 ], [ -95.939329131347222, 29.355612095321348 ], [ -95.939160131012827, 29.355903094971897 ], [ -95.938871130354727, 29.356008094900663 ], [ -95.938658130971461, 29.356145095128003 ], [ -95.938632130453755, 29.356170095265114 ], [ -95.938489130980471, 29.356310095365778 ], [ -95.938463130767175, 29.356519095583856 ], [ -95.938501131172728, 29.356673095016049 ], [ -95.938595130710468, 29.356783095346891 ], [ -95.938896130659344, 29.356975095005556 ], [ -95.938915130587645, 29.357079095627213 ], [ -95.938859130661569, 29.357288095636438 ], [ -95.938771130908137, 29.357711095962092 ], [ -95.938548130857768, 29.357921095374042 ], [ -95.938432130382168, 29.358030095927699 ], [ -95.938125130880096, 29.358228095487028 ], [ -95.937868130363356, 29.358333095452075 ], [ -95.937686131038063, 29.358289096202487 ], [ -95.937560130954026, 29.358212095563324 ], [ -95.9374411310299, 29.358091095616583 ], [ -95.937297130013206, 29.357970095928632 ], [ -95.937039130133016, 29.357882095595301 ], [ -95.936895130231775, 29.357915096106094 ], [ -95.936682130513162, 29.358124095336425 ], [ -95.936531130468339, 29.358360095765224 ], [ -95.936531130423262, 29.358509095872211 ], [ -95.93655612985917, 29.358695095929814 ], [ -95.936650130671183, 29.358789095971897 ], [ -95.936958130704014, 29.358871095715397 ], [ -95.937228130618465, 29.358904095928018 ], [ -95.937466130513158, 29.358959095643698 ], [ -95.937566131103708, 29.35905309638304 ], [ -95.937642130757553, 29.359146095960018 ], [ -95.937849131191456, 29.359256096151764 ], [ -95.937956130415017, 29.359366096325164 ], [ -95.938175130375697, 29.359547096081659 ], [ -95.938934131211951, 29.360020096429718 ], [ -95.939104131352352, 29.360058096098552 ], [ -95.939399130644205, 29.360267096518104 ], [ -95.939568131064789, 29.36043209653446 ], [ -95.939769131253954, 29.360591096461587 ], [ -95.93993213084994, 29.360751095985758 ], [ -95.940070130874943, 29.360905096526949 ], [ -95.94018313185947, 29.360998096152354 ], [ -95.940284131186871, 29.360971096194568 ], [ -95.94044013120201, 29.360872095815932 ], [ -95.940503131878742, 29.360723095828842 ], [ -95.940704131304585, 29.360427096415474 ], [ -95.940754131554812, 29.360229095690521 ], [ -95.940779131704957, 29.360025096292645 ], [ -95.940836131479657, 29.359871096197381 ], [ -95.940942131299494, 29.35973409620243 ], [ -95.941218131413379, 29.359602096044668 ], [ -95.941419131534914, 29.359558096162036 ], [ -95.941563131919295, 29.359563095565626 ], [ -95.941858131523489, 29.359728095919905 ], [ -95.942053131991116, 29.36000909555375 ], [ -95.942147131686127, 29.360102095947834 ], [ -95.942260131503943, 29.360415096388635 ], [ -95.942461132044627, 29.360899096448417 ], [ -95.942486131611645, 29.361124096336614 ], [ -95.94257413181127, 29.361284096657471 ], [ -95.942655132015403, 29.361383096437187 ], [ -95.942881132425981, 29.361504096146017 ], [ -95.943251132500521, 29.361410095849344 ], [ -95.943427132338059, 29.361322096259524 ], [ -95.943653131794548, 29.36122909633643 ], [ -95.943866132503516, 29.361157096602383 ], [ -95.943985132839757, 29.361157096276134 ], [ -95.944142132195893, 29.361196096054851 ], [ -95.944249132343813, 29.36133909612639 ], [ -95.944287132520429, 29.361443096598137 ], [ -95.944312132111719, 29.361668096030765 ], [ -95.94434313261857, 29.362317096192545 ], [ -95.944362132229003, 29.362493096771583 ], [ -95.944419132503384, 29.362663096540075 ], [ -95.94451313219561, 29.362768096339149 ], [ -95.944682132615625, 29.362877096504015 ], [ -95.944814132649768, 29.363020096922632 ], [ -95.944839132476289, 29.363240096567626 ], [ -95.944820132887401, 29.363433096395841 ], [ -95.944764132562071, 29.363548096189071 ], [ -95.944676132803679, 29.363680096328508 ], [ -95.944607132200247, 29.36382809696974 ], [ -95.944601132602571, 29.363999096960185 ], [ -95.944620132680541, 29.364169096843025 ], [ -95.944651132989904, 29.364279096367909 ], [ -95.94470813299256, 29.364416097107281 ], [ -95.944701132295336, 29.364653097074875 ], [ -95.944733132896076, 29.364774097104842 ], [ -95.944814132556886, 29.364928097331823 ], [ -95.945003132853827, 29.365032096605809 ], [ -95.945247132655453, 29.365274097318256 ], [ -95.945348133338882, 29.365400097177602 ], [ -95.945360132412532, 29.365521096915902 ], [ -95.945323132994247, 29.36562609657992 ], [ -95.945254132554368, 29.365801096627546 ], [ -95.945141133090118, 29.366038096916203 ], [ -95.945065133294477, 29.366230097250067 ], [ -95.944959132312775, 29.366461097194303 ], [ -95.944934132513154, 29.366642097415717 ], [ -95.944959132929753, 29.366719096969351 ], [ -95.945034132497597, 29.366785097027904 ], [ -95.945436133149457, 29.366972097273987 ], [ -95.945511132519925, 29.367044097648126 ], [ -95.945618132790415, 29.367176097010859 ], [ -95.945706132643764, 29.367335097482094 ], [ -95.945863133156465, 29.367527097686033 ], [ -95.946289133719858, 29.367923097526944 ], [ -95.946434132821423, 29.368209097202399 ], [ -95.946437132793292, 29.368319097392039 ], [ -95.946453133693609, 29.368874097335709 ], [ -95.946528133751926, 29.369000097960207 ], [ -95.946697132923546, 29.369193098115044 ], [ -95.946880133858485, 29.369319097502121 ], [ -95.947244133417087, 29.369687097343682 ], [ -95.947463133962444, 29.369995097841226 ], [ -95.947526133527404, 29.370242098095783 ], [ -95.947526133864613, 29.370402097753889 ], [ -95.947451133160214, 29.370572098281801 ], [ -95.947438134046592, 29.370720098238856 ], [ -95.947526134058904, 29.371067097896969 ], [ -95.947570133729641, 29.371111098375508 ], [ -95.947752133268011, 29.371160098385204 ], [ -95.948072134192785, 29.371193098017923 ], [ -95.948242133485365, 29.371413098071354 ], [ -95.948267133516111, 29.371539098094935 ], [ -95.948254133527243, 29.371748097783204 ], [ -95.948154134032919, 29.371864098579064 ], [ -95.947840134113363, 29.372100097864642 ], [ -95.947589134053814, 29.37216009798027 ], [ -95.947395133477869, 29.372331097887752 ], [ -95.947301133683553, 29.372523098379155 ], [ -95.947319133494801, 29.372606098511064 ], [ -95.947407134095045, 29.3727870988475 ], [ -95.947501133776854, 29.372919098761553 ], [ -95.948185133664339, 29.373265098230632 ], [ -95.948976133971854, 29.373545098828696 ], [ -95.949459133816035, 29.37389209811851 ], [ -95.949604134007544, 29.37408909849815 ], [ -95.949642134798978, 29.374232099041986 ], [ -95.949642134869819, 29.374614098655609 ], [ -95.949642134304682, 29.37473209849437 ], [ -95.949667134890632, 29.375003098833659 ], [ -95.949879134151161, 29.375241098429068 ], [ -95.949961134680521, 29.375333099063909 ], [ -95.950112134201788, 29.375547098511387 ], [ -95.950306134419336, 29.375756098503391 ], [ -95.95062613473452, 29.375976099080987 ], [ -95.950821135000837, 29.37608009912072 ], [ -95.95125413470673, 29.37613009912226 ], [ -95.951568134509003, 29.376152098968721 ], [ -95.951743134535391, 29.376256098534316 ], [ -95.951869135329588, 29.376377099045637 ], [ -95.951982134567757, 29.376509098797079 ], [ -95.952164134837645, 29.376976098863622 ], [ -95.952428135395891, 29.377246099317532 ], [ -95.952597135502444, 29.377240098961007 ], [ -95.952735135159628, 29.377196099229486 ], [ -95.953237135098988, 29.376905099272278 ], [ -95.953551134930848, 29.376811099389588 ], [ -95.953796135790128, 29.376833098888305 ], [ -95.954009135497401, 29.376905099207178 ], [ -95.954360135623659, 29.377113098975133 ], [ -95.954448135922291, 29.377245099350255 ], [ -95.954511135376706, 29.377564098877418 ], [ -95.954586135763236, 29.377778099323205 ], [ -95.954731136123527, 29.377971099596184 ], [ -95.954875136346118, 29.378075098983665 ], [ -95.95491313605352, 29.378180099459374 ], [ -95.954881135478828, 29.378350098974753 ], [ -95.954543135297541, 29.378663099166637 ], [ -95.954461136069057, 29.378878099598836 ], [ -95.954467135324506, 29.379070099723027 ], [ -95.954511135952927, 29.379224099306619 ], [ -95.954637135612799, 29.37941609928804 ], [ -95.954869135589306, 29.379598099804781 ], [ -95.955026136308646, 29.379686099698745 ], [ -95.955729135930227, 29.379960099566411 ], [ -95.955936136594758, 29.380015099874875 ], [ -95.956218136014627, 29.38002109921268 ], [ -95.956388136509645, 29.379988099741425 ], [ -95.956557136732854, 29.379878099662871 ], [ -95.956695136487681, 29.379751099602053 ], [ -95.956865136173178, 29.379614099486929 ], [ -95.957103135999446, 29.379377099707103 ], [ -95.957241136190035, 29.379361099810286 ], [ -95.957417136414733, 29.379388099837573 ], [ -95.957524136615248, 29.379449099108182 ], [ -95.957593136756259, 29.379537099566175 ], [ -95.957668136301976, 29.379685099828681 ], [ -95.957724136524817, 29.379867099963178 ], [ -95.957819137004151, 29.380229099768734 ], [ -95.957900136815894, 29.380471099343431 ], [ -95.958001137099259, 29.381081099546499 ], [ -95.958076136699063, 29.381186099922143 ], [ -95.958202136713624, 29.381241099484043 ], [ -95.95828313674032, 29.381257099810053 ], [ -95.958390136425166, 29.381241099999038 ], [ -95.958547137393936, 29.381191099631003 ], [ -95.958785137407673, 29.381169099319258 ], [ -95.95913013653238, 29.381114100168638 ], [ -95.959287137437784, 29.381125099319309 ], [ -95.95934413678151, 29.381185099891962 ], [ -95.959432137153655, 29.381246099859055 ], [ -95.959469137546066, 29.381323099608739 ], [ -95.95963313766056, 29.381471100155355 ], [ -95.959789137708768, 29.381587099401468 ], [ -95.95991513743401, 29.381603099927151 ], [ -95.9600151376426, 29.3815981002253 ], [ -95.960254137476525, 29.381488099981816 ], [ -95.96034213741234, 29.381427099499859 ], [ -95.96043613786135, 29.381103099652002 ], [ -95.960360137409694, 29.380938099258149 ], [ -95.960342137719493, 29.380768099344809 ], [ -95.96037313743571, 29.380663099302112 ], [ -95.960454137575852, 29.380570099718117 ], [ -95.960762137872862, 29.380394099125017 ], [ -95.961076137145199, 29.38035509934717 ], [ -95.961251137895076, 29.380366099774626 ], [ -95.96140813766408, 29.380410099550701 ], [ -95.961622138124781, 29.380558099304732 ], [ -95.961728137744117, 29.380707099609687 ], [ -95.962118137727288, 29.380960099903014 ], [ -95.962438137914447, 29.380998099906801 ], [ -95.962802138443351, 29.380981099408622 ], [ -95.963040137844203, 29.380959099653712 ], [ -95.963310137828415, 29.38074009938866 ], [ -95.963429138316187, 29.380602099817349 ], [ -95.963724137998668, 29.380118099060734 ], [ -95.963843138000726, 29.379992099351728 ], [ -95.96396213837248, 29.379959099278331 ], [ -95.964119137853388, 29.379953099269663 ], [ -95.964264138240964, 29.380014099696837 ], [ -95.964558137942419, 29.380173099693394 ], [ -95.964847138827452, 29.380409099104746 ], [ -95.965010138453735, 29.380690099804021 ], [ -95.96510513850896, 29.380937099234135 ], [ -95.96523013899909, 29.381135099910146 ], [ -95.965337138812529, 29.381190099405448 ], [ -95.965513139060448, 29.381234099251024 ], [ -95.965651138851612, 29.381245099475688 ], [ -95.965864138284687, 29.381366099449615 ], [ -95.966021139237199, 29.38148109947295 ], [ -95.966216138955161, 29.381596099921676 ], [ -95.96644813849953, 29.381717099247389 ], [ -95.966812139517046, 29.381750099669905 ], [ -95.967006138756048, 29.381811100050342 ], [ -95.967396139464057, 29.381975099694788 ], [ -95.967364139394988, 29.382041099208639 ], [ -95.967157138916903, 29.382635099629983 ], [ -95.967170139498663, 29.382767099451318 ], [ -95.967226138705797, 29.382866099986881 ], [ -95.967427138963956, 29.382987100029059 ], [ -95.967904138873209, 29.383135099633748 ], [ -95.968093139506806, 29.383272100176853 ], [ -95.968419139130219, 29.383454099807743 ], [ -95.968488139784185, 29.383520099500355 ], [ -95.968519140038055, 29.383585099990277 ], [ -95.968538139214431, 29.383734100200687 ], [ -95.968507139411756, 29.383805099672621 ], [ -95.968457139046222, 29.383882099688041 ], [ -95.968350139817375, 29.38397610036996 ], [ -95.968262139248949, 29.384025100407481 ], [ -95.968080139718822, 29.384086099666629 ], [ -95.967936138997544, 29.384157099717974 ], [ -95.967654139688719, 29.384256099931189 ], [ -95.967541139417321, 29.384306100412797 ], [ -95.967478139057562, 29.38438309994649 ], [ -95.96749013897923, 29.384449099725931 ], [ -95.967534139726666, 29.38449810000921 ], [ -95.9676911393355, 29.38461409972529 ], [ -95.967817139085781, 29.384613100128028 ], [ -95.967967138957604, 29.384580100050318 ], [ -95.968043139684028, 29.384586099936197 ], [ -95.968162139757069, 29.384641100571805 ], [ -95.968244139077896, 29.384696100287467 ], [ -95.968262139063825, 29.384745100176588 ], [ -95.968256139935519, 29.384822100131423 ], [ -95.968244139547679, 29.384866099757783 ], [ -95.968175139148514, 29.384954099763064 ], [ -95.968024138997706, 29.385042100500833 ], [ -95.967660139588716, 29.385559100395724 ], [ -95.96762313967767, 29.385691100803395 ], [ -95.967629139699525, 29.385922100461347 ], [ -95.967711139515558, 29.386185100729612 ], [ -95.967767139175294, 29.386504100469107 ], [ -95.967755139871173, 29.386587100961219 ], [ -95.967698139439179, 29.386779100344899 ], [ -95.967654139499942, 29.386834100738387 ], [ -95.967529139370839, 29.386916100631094 ], [ -95.967334138980817, 29.386977100631952 ], [ -95.967190138912372, 29.387037100754142 ], [ -95.967102139853708, 29.38709210066261 ], [ -95.967058139280269, 29.387131100279149 ], [ -95.967064139458756, 29.387180100299584 ], [ -95.967083139724295, 29.387224100930013 ], [ -95.967228139642032, 29.387334100493266 ], [ -95.967284139545001, 29.38741110066508 ], [ -95.967334139262178, 29.387598101016824 ], [ -95.967253139002779, 29.387790101131333 ], [ -95.967090139315147, 29.388065100973176 ], [ -95.967090139305199, 29.38812610117526 ], [ -95.967159139872777, 29.388225100877214 ], [ -95.967316139890997, 29.388395101306823 ], [ -95.967372138977538, 29.388527101037589 ], [ -95.967442139208373, 29.388846101079587 ], [ -95.967467139553136, 29.388917101396238 ], [ -95.967580139411226, 29.389038101251238 ], [ -95.967649139403221, 29.389131100998988 ], [ -95.967630139331533, 29.389247100727335 ], [ -95.967580140061457, 29.389445100718646 ], [ -95.967586139962933, 29.389604100845055 ], [ -95.967599139203074, 29.389681100780312 ], [ -95.967649139573595, 29.389868100920054 ], [ -95.967749140064555, 29.390038101373769 ], [ -95.967812139695596, 29.390110100902497 ], [ -95.968032140089505, 29.390192101455526 ], [ -95.968057139461948, 29.390220101281756 ], [ -95.968057139714503, 29.390302101571532 ], [ -95.967976139837006, 29.390439101544739 ], [ -95.967913139534417, 29.390599101658829 ], [ -95.967919139878433, 29.390676101456208 ], [ -95.967938139474825, 29.390725101455867 ], [ -95.967988139797157, 29.390797101725099 ], [ -95.968063139868647, 29.39087910105701 ], [ -95.968208139394122, 29.39097310148745 ], [ -95.968446139916452, 29.391049101509449 ], [ -95.968603139624435, 29.391170101136687 ], [ -95.968867140311531, 29.391467101596227 ], [ -95.968917139985237, 29.391544101926588 ], [ -95.96898013954123, 29.391599101101395 ], [ -95.969081140042675, 29.391632101621223 ], [ -95.969275139740986, 29.391626101087862 ], [ -95.969338139861108, 29.391654101253682 ], [ -95.969426139809229, 29.39170910175714 ], [ -95.96950113974998, 29.391802101225075 ], [ -95.969526140010089, 29.391890101713688 ], [ -95.969532140282922, 29.392022101877888 ], [ -95.969451139724129, 29.392165101417103 ], [ -95.969388140086068, 29.392242101844779 ], [ -95.969325140206678, 29.392269101303693 ], [ -95.96925013961453, 29.392330101294341 ], [ -95.969238139777318, 29.392374101880414 ], [ -95.969244140191449, 29.392451101572 ], [ -95.969219140525652, 29.392687101613795 ], [ -95.969206140065666, 29.392962101367463 ], [ -95.969263139868104, 29.393176102271173 ], [ -95.96921314062196, 29.393352101622266 ], [ -95.969169139756644, 29.393698101802102 ], [ -95.969175140067989, 29.393764102284457 ], [ -95.969257140315634, 29.394050102218134 ], [ -95.969288140115466, 29.394281102015594 ], [ -95.969295140587064, 29.394528101860548 ], [ -95.969264139915836, 29.394754101913851 ], [ -95.969289140103811, 29.394847101939636 ], [ -95.969370140244692, 29.394913102453689 ], [ -95.969590140803234, 29.395023102646054 ], [ -95.969960140099275, 29.395149102462746 ], [ -95.970080140244946, 29.395226102203136 ], [ -95.970136139980454, 29.395391102547077 ], [ -95.970117140034333, 29.39549510229325 ], [ -95.970080140765674, 29.395572102740008 ], [ -95.969942140259803, 29.395666102581529 ], [ -95.969440140382687, 29.39594110262404 ], [ -95.969126140136098, 29.396139102117136 ], [ -95.969051140172525, 29.396216102579832 ], [ -95.969063139986915, 29.396309102663178 ], [ -95.969170139862101, 29.396381102784993 ], [ -95.969346140131719, 29.396447102432624 ], [ -95.969547139999634, 29.396545102584128 ], [ -95.969559140161607, 29.396655102341256 ], [ -95.969528140065705, 29.396771102407545 ], [ -95.969415140071334, 29.396908102580564 ], [ -95.969239140513764, 29.39709510240036 ], [ -95.969195140404551, 29.397222102551392 ], [ -95.969158140026749, 29.397282102998535 ], [ -95.969164140146987, 29.397375103156982 ], [ -95.969290140826288, 29.397645102767779 ], [ -95.969453140856501, 29.397821103150147 ], [ -95.969490140305808, 29.398007103063911 ], [ -95.969510140665591, 29.398508102876008 ], [ -95.96954714047628, 29.398645102866482 ], [ -95.969566140393511, 29.398810103008298 ], [ -95.96966014075511, 29.39907910328013 ], [ -95.969698140221396, 29.399228103501365 ], [ -95.969999140473291, 29.399678102998251 ], [ -95.970470140338563, 29.400228102860044 ], [ -95.970879141399081, 29.400530102962779 ], [ -95.97116714053891, 29.400805103112067 ], [ -95.971331141099498, 29.401162103616123 ], [ -95.971400141248665, 29.401849103224361 ], [ -95.971475141465532, 29.402019103545239 ], [ -95.97160714089074, 29.402129103205148 ], [ -95.972065141741567, 29.402327103834136 ], [ -95.972178141155496, 29.402503103926108 ], [ -95.9722291417783, 29.402739103359046 ], [ -95.972210141262394, 29.403267103735708 ], [ -95.972185141468472, 29.403541103550104 ], [ -95.972223141155951, 29.403761103679226 ], [ -95.972455141505137, 29.403954104411397 ], [ -95.972600141776368, 29.40410210413269 ], [ -95.972593141155727, 29.404212104044465 ], [ -95.972512141086185, 29.404322104173946 ], [ -95.971821141197111, 29.404476104155563 ], [ -95.971734141717903, 29.404602103680752 ], [ -95.971746140959169, 29.404800104443169 ], [ -95.9720851410802, 29.405245103877505 ], [ -95.97204814144682, 29.405476103901961 ], [ -95.971860141217164, 29.405740104444501 ], [ -95.97179114121559, 29.406004104612599 ], [ -95.971872141335083, 29.406499104878829 ], [ -95.971835141739703, 29.406707104600134 ], [ -95.97172814094499, 29.406806104891398 ], [ -95.971483141549655, 29.40690510476222 ], [ -95.971025141067841, 29.407065104475038 ], [ -95.970793141424409, 29.407444104907064 ], [ -95.97069314147727, 29.407719104491683 ], [ -95.970705141143469, 29.407944104955106 ], [ -95.970768141575604, 29.408434105024092 ], [ -95.970863141335698, 29.408565105265097 ], [ -95.971020141147775, 29.408714105281021 ], [ -95.971183141560402, 29.408835105159426 ], [ -95.971446141358769, 29.408950104915007 ], [ -95.971635141624944, 29.409005105012461 ], [ -95.971993141029344, 29.409225105464269 ], [ -95.972269141573221, 29.409439105518079 ], [ -95.972432142105021, 29.410000105177598 ], [ -95.972420141654553, 29.410153105493691 ], [ -95.972433141596127, 29.410571105391593 ], [ -95.972414141804776, 29.41070910546232 ], [ -95.972583141896678, 29.410879105669004 ], [ -95.972828141622671, 29.411027105284944 ], [ -95.973111142093927, 29.411269105632858 ], [ -95.973280141471449, 29.411362105417474 ], [ -95.973437142147276, 29.411450105196419 ], [ -95.973575142154999, 29.411483105366536 ], [ -95.973795142613653, 29.411483105029028 ], [ -95.974090142320591, 29.411434105324524 ], [ -95.974385142393032, 29.411236105627435 ], [ -95.974561142198183, 29.411181105153656 ], [ -95.974818142757556, 29.411192105633507 ], [ -95.975471142638185, 29.411263105651788 ], [ -95.975710142565902, 29.411263105550432 ], [ -95.976344142719796, 29.411175104989383 ], [ -95.976852143262903, 29.41105310560129 ], [ -95.977335143088553, 29.410976105515182 ], [ -95.97764914345359, 29.410855104904794 ], [ -95.977881142799717, 29.41072910498189 ], [ -95.978120142866203, 29.410613105085648 ], [ -95.978346142857774, 29.410564105197381 ], [ -95.978591143135361, 29.41048710549024 ], [ -95.978886143527731, 29.410470105280435 ], [ -95.979212143225993, 29.410520104652282 ], [ -95.979501143866202, 29.410574105218696 ], [ -95.980072143972649, 29.410629104971978 ], [ -95.980254143552656, 29.41062410525284 ], [ -95.980769143692854, 29.410552104738453 ], [ -95.981045143854615, 29.410502105135087 ], [ -95.981196143659986, 29.410524105137593 ], [ -95.981284144350113, 29.410574104854142 ], [ -95.981692144425196, 29.410706104779248 ], [ -95.982068144195139, 29.410771104764809 ], [ -95.982131144427456, 29.410815105235642 ], [ -95.982200144668894, 29.410909104703912 ], [ -95.982263144008868, 29.411123105070224 ], [ -95.982332143813863, 29.411321105142811 ], [ -95.982370144211572, 29.411398104772932 ], [ -95.982452143949686, 29.411464104825257 ], [ -95.982571144522495, 29.411502105404804 ], [ -95.982615144796782, 29.411552105557845 ], [ -95.98269614395322, 29.411728104790946 ], [ -95.982753144624354, 29.411975105700861 ], [ -95.982759144743568, 29.412239105633098 ], [ -95.982709144544273, 29.412404105490175 ], [ -95.982691143975501, 29.412535105190624 ], [ -95.982703144158378, 29.412700105041583 ], [ -95.982735144196127, 29.41295910527235 ], [ -95.98285414476301, 29.41329410532698 ], [ -95.982936145010385, 29.413420105574978 ], [ -95.983131144185037, 29.413788105602315 ], [ -95.98331914500082, 29.414173105684338 ], [ -95.983464144531993, 29.414365105373356 ], [ -95.983526144770707, 29.414503105745048 ], [ -95.983621144387925, 29.414624105363639 ], [ -95.983803144477946, 29.414909106031459 ], [ -95.984079145206636, 29.415135105945119 ], [ -95.984255145160603, 29.415212105557668 ], [ -95.984468145259555, 29.415283105907282 ], [ -95.984613144566069, 29.415305106262554 ], [ -95.984745144897914, 29.415338105424517 ], [ -95.985033145181688, 29.415459105492864 ], [ -95.985190145098031, 29.41553510625295 ], [ -95.985354144826061, 29.415601106044686 ], [ -95.985442145424912, 29.41562310591322 ], [ -95.985492145242915, 29.415656106339494 ], [ -95.985536145212251, 29.415744105872694 ], [ -95.985548145146538, 29.415854106093555 ], [ -95.985580145354419, 29.415942105525968 ], [ -95.985411145060624, 29.416574106318773 ], [ -95.985361145712645, 29.416651106012974 ], [ -95.985329144843661, 29.416849105944699 ], [ -95.985323144831483, 29.416964106429205 ], [ -95.985348145640614, 29.417168106464818 ], [ -95.985505145177783, 29.417459106558407 ], [ -95.985600145715054, 29.417596105940522 ], [ -95.985681145488485, 29.417690106096902 ], [ -95.985794145255156, 29.417783106274896 ], [ -95.985989145398932, 29.417904106271735 ], [ -95.986058145169409, 29.417920105999855 ], [ -95.986152145129466, 29.417920106232241 ], [ -95.986297145865436, 29.417898106463451 ], [ -95.986403146033041, 29.417860106100093 ], [ -95.986774145355383, 29.417777106026833 ], [ -95.987257145420315, 29.417695106204647 ], [ -95.987690146112584, 29.417689105995763 ], [ -95.987828145593028, 29.417727105952874 ], [ -95.98791614622597, 29.41776610643478 ], [ -95.988123146308695, 29.417964106759559 ], [ -95.988142145802385, 29.418008106519206 ], [ -95.988161146184851, 29.418134106727095 ], [ -95.988193145930168, 29.418256106413697 ], [ -95.988224146536567, 29.418503106472642 ], [ -95.988230146340698, 29.418723106420874 ], [ -95.988180145828977, 29.418910106201754 ], [ -95.988105146396478, 29.419129106228176 ], [ -95.987955145716512, 29.419426106266048 ], [ -95.987911146393373, 29.419580106799248 ], [ -95.987861146396796, 29.419816106878411 ], [ -95.98773514615165, 29.420223106410941 ], [ -95.98771714588969, 29.42033310658509 ], [ -95.987729145731976, 29.420723106841592 ], [ -95.987679145800101, 29.421075107303757 ], [ -95.987554146332414, 29.421234107088978 ], [ -95.987466145756159, 29.421377106923131 ], [ -95.987422145900325, 29.421608107251362 ], [ -95.987234145480159, 29.421745107231651 ], [ -95.987090146360231, 29.421817106831114 ], [ -95.986807146356526, 29.42198710674483 ], [ -95.986707145880231, 29.422075107053704 ], [ -95.986556145672168, 29.422163107399367 ], [ -95.986462145932862, 29.42224610712654 ], [ -95.986387145327427, 29.42235010757863 ], [ -95.986330146254559, 29.422460107611393 ], [ -95.986286145270881, 29.422587107167054 ], [ -95.986236145705206, 29.422664107153842 ], [ -95.986205145482927, 29.422796107114543 ], [ -95.986199145563589, 29.422982107001957 ], [ -95.986236145404817, 29.423164107474982 ], [ -95.986368145836167, 29.423417107399121 ], [ -95.986431145390824, 29.423515107218179 ], [ -95.98670814582492, 29.423785107897803 ], [ -95.986877146242321, 29.423928107170767 ], [ -95.987260145844758, 29.424142107834733 ], [ -95.987342146498037, 29.424208107164642 ], [ -95.987424145742992, 29.424328107193602 ], [ -95.987524145803292, 29.424576107493216 ], [ -95.987549145756745, 29.424686108068812 ], [ -95.987562146191536, 29.424801107368165 ], [ -95.987606145677645, 29.424911107725279 ], [ -95.987845146316403, 29.425252107465031 ], [ -95.987945146482133, 29.425444108244097 ], [ -95.988227146346688, 29.425922107788931 ], [ -95.988228146672384, 29.426022107748501 ], [ -95.988190146452055, 29.426269108437229 ], [ -95.988045146336304, 29.426566108368768 ], [ -95.987995146231484, 29.426704108476699 ], [ -95.987807146421872, 29.427539107968105 ], [ -95.987877146090284, 29.427841107973407 ], [ -95.98802714594855, 29.428111108746833 ], [ -95.988562147026428, 29.428440108536392 ], [ -95.988757146312878, 29.428594108169534 ], [ -95.989435146372912, 29.429033108401274 ], [ -95.989680146813555, 29.429292108370952 ], [ -95.989928147229335, 29.429669109067884 ], [ -95.989988146560165, 29.429759109087037 ], [ -95.990202146960272, 29.430055109140277 ], [ -95.990397147201222, 29.430347109101618 ], [ -95.990560147624421, 29.430654109211506 ], [ -95.990667146886238, 29.430902109021634 ], [ -95.990730147634338, 29.431088108991574 ], [ -95.990793147523974, 29.431204108758575 ], [ -95.990849146883633, 29.431528108989792 ], [ -95.990975147771792, 29.431830109399947 ], [ -95.991138147639774, 29.432138108697345 ], [ -95.991264147835651, 29.43229710917322 ], [ -95.991421147783129, 29.432413109372831 ], [ -95.991691147704771, 29.432539109016766 ], [ -95.991773147174072, 29.432687109050104 ], [ -95.991804147927382, 29.432786109218302 ], [ -95.992144148083526, 29.433237109690996 ], [ -95.992150147957616, 29.43334710904627 ], [ -95.992112147307651, 29.433590109147602 ], [ -95.992031147704424, 29.433797109284072 ], [ -95.992056147516351, 29.433913109143639 ], [ -95.99217614723392, 29.433968109741883 ], [ -95.992289147974333, 29.434001109757514 ], [ -95.992383147649292, 29.434006109269426 ], [ -95.992521147318257, 29.433979109464964 ], [ -95.992602147762511, 29.433946109202004 ], [ -95.992653148330533, 29.433913109496178 ], [ -95.992828147709133, 29.433710109044231 ], [ -95.992879147524036, 29.43367210974807 ], [ -95.992941147554973, 29.433633109786275 ], [ -95.992991147890052, 29.433622109021389 ], [ -95.993086148100019, 29.433650108907759 ], [ -95.993343147854304, 29.43376410932575 ], [ -95.993412147996239, 29.433780109464976 ], [ -95.993506148308867, 29.433769109658801 ], [ -95.993663147899298, 29.433671109272257 ], [ -95.993714147635544, 29.433649109110789 ], [ -95.993801148628535, 29.433632109051111 ], [ -95.993965148002431, 29.433637109648203 ], [ -95.994153148033902, 29.433659109018546 ], [ -95.994599148835988, 29.43381310926183 ], [ -95.994699148247548, 29.433835108982016 ], [ -95.994781148304455, 29.43383510901484 ], [ -95.994863148652058, 29.433807109526445 ], [ -95.995026148366605, 29.433725109321106 ], [ -95.995019148647103, 29.433608109697413 ], [ -95.994938148117129, 29.43334410897058 ], [ -95.994912148899672, 29.433218109007619 ], [ -95.994912148497363, 29.433086109513521 ], [ -95.994938148626787, 29.432976109107607 ], [ -95.995032148061739, 29.432855109556673 ], [ -95.995138148737695, 29.432756109064314 ], [ -95.995609148168299, 29.432580109196316 ], [ -95.995685148672322, 29.432498109052734 ], [ -95.995723148149878, 29.432421109295291 ], [ -95.995753148847328, 29.432311109365585 ], [ -95.995822148991692, 29.432272109397655 ], [ -95.995873148798097, 29.432256108902813 ], [ -95.996237148361317, 29.432234108703227 ], [ -95.99651914879756, 29.432195109070932 ], [ -95.996632148826208, 29.432167108788938 ], [ -95.996720148481742, 29.43213410911698 ], [ -95.996940149268184, 29.431997108638146 ], [ -95.997228148424099, 29.431744108395257 ], [ -95.997366149015448, 29.431650108404039 ], [ -95.997592148631895, 29.431551108403113 ], [ -95.997680148858862, 29.431535108547493 ], [ -95.997787148579704, 29.431584108400394 ], [ -95.99830814930678, 29.431545109083252 ], [ -95.998635149380462, 29.431567108333873 ], [ -95.998905149318048, 29.431551108431446 ], [ -95.999394149625175, 29.431573109075902 ], [ -96.000302149232937, 29.431390108452387 ], [ -96.000381149654785, 29.431374108697199 ], [ -96.000726150140764, 29.43128110827702 ], [ -96.001241149796058, 29.431045108293876 ], [ -96.00159315022583, 29.430760108123476 ], [ -96.001945150438587, 29.430380108751788 ], [ -96.002159150486293, 29.430155108230768 ], [ -96.003340150543096, 29.429199108433629 ], [ -96.003855150167738, 29.428870107745748 ], [ -96.004175150904487, 29.428755108391403 ], [ -96.004325150260669, 29.428755107874881 ], [ -96.004401150168974, 29.428782107691692 ], [ -96.004652151024388, 29.429074108176355 ], [ -96.004790150688024, 29.429189107692004 ], [ -96.004940150917818, 29.429299107701432 ], [ -96.005079151017028, 29.429338108167833 ], [ -96.005166150962026, 29.429338108415291 ], [ -96.005386151414257, 29.429316107657158 ], [ -96.006177151568949, 29.42908510797535 ], [ -96.006422150986268, 29.429052108126932 ], [ -96.006629150876847, 29.429058107635694 ], [ -96.006923151301308, 29.42900910806889 ], [ -96.007636151415653, 29.429167108202421 ], [ -96.008372152031512, 29.42948410820669 ], [ -96.008864152249274, 29.429865108272768 ], [ -96.009100151927314, 29.430160108172775 ], [ -96.009880152523749, 29.43154610832222 ], [ -96.010001151683866, 29.4316911083761 ], [ -96.010620152349901, 29.432214108193325 ], [ -96.011148152836171, 29.43276510885444 ], [ -96.011828153109562, 29.433286109088055 ], [ -96.012245152688592, 29.433728108436409 ], [ -96.012320153284548, 29.433980108770097 ], [ -96.012368152413018, 29.434143108653604 ], [ -96.012260152852946, 29.434596108491551 ], [ -96.012453152793128, 29.434990108524254 ], [ -96.012738153309286, 29.435294109324538 ], [ -96.013127153440337, 29.435558108831 ], [ -96.013583153055635, 29.435718109088977 ], [ -96.013965153039706, 29.435783109120287 ], [ -96.014147153415678, 29.435794109504958 ], [ -96.014681153701815, 29.435893109351223 ], [ -96.014957153859484, 29.435893109199924 ], [ -96.015177153299931, 29.435921109253748 ], [ -96.015321153787994, 29.435927108766212 ], [ -96.015391154192599, 29.435905108885105 ], [ -96.015466153320588, 29.435844108590331 ], [ -96.015497153438503, 29.435734109026782 ], [ -96.015504154143215, 29.435514108538378 ], [ -96.015519153984584, 29.435495109236804 ], [ -96.015529153810519, 29.43544810899132 ], [ -96.015686153997052, 29.435295108941883 ], [ -96.015736153561178, 29.435262108907999 ], [ -96.015799154236888, 29.435251108487755 ], [ -96.015906154129524, 29.43528410859496 ], [ -96.015956154178852, 29.435289108563552 ], [ -96.016006153884717, 29.435317109285343 ], [ -96.016050154253165, 29.435372108817031 ], [ -96.016107153801713, 29.435471108593969 ], [ -96.016150154114044, 29.435504108510724 ], [ -96.016194153557194, 29.43572410918981 ], [ -96.016207154102062, 29.435921108903514 ], [ -96.016194153810673, 29.4360311090416 ], [ -96.016106153502832, 29.436257109344808 ], [ -96.016062153578957, 29.436334109561397 ], [ -96.015981154278606, 29.436410109016904 ], [ -96.015924153975732, 29.436443108898452 ], [ -96.015861153440213, 29.436509108894501 ], [ -96.015849153545432, 29.436537109118163 ], [ -96.015849154302373, 29.436614109336581 ], [ -96.015855154239318, 29.436658109393459 ], [ -96.015892154396141, 29.436729108976984 ], [ -96.015949153962254, 29.436790109624706 ], [ -96.016012153949276, 29.436832109323017 ], [ -96.016024153549495, 29.436856109258393 ], [ -96.016075154224069, 29.43689510962362 ], [ -96.01617515382884, 29.436971109658632 ], [ -96.016326153780469, 29.437070109609451 ], [ -96.016489153540846, 29.437142109177383 ], [ -96.016649154277061, 29.437198108993449 ], [ -96.016677153782993, 29.437208109573547 ], [ -96.016735153650487, 29.437219109618983 ], [ -96.016752154312144, 29.437221109460843 ], [ -96.019728155063959, 29.435415109255477 ], [ -96.022214155037773, 29.433910108838596 ], [ -96.022460154961109, 29.433760108689064 ], [ -96.022841155817346, 29.433528108358107 ], [ -96.025895156534972, 29.431668107840089 ], [ -96.028177156725192, 29.430310107651877 ], [ -96.035395158501871, 29.42589710612226 ], [ -96.040288159959744, 29.42293410551029 ], [ -96.048865161555611, 29.417709103850797 ], [ -96.050885161421505, 29.416481103511067 ], [ -96.052957161959483, 29.415227103570039 ], [ -96.053595162054449, 29.414833103372889 ], [ -96.053954162342791, 29.414612103353779 ], [ -96.054246162303457, 29.414399103518072 ], [ -96.054549162592465, 29.414097103103824 ], [ -96.05504816299667, 29.413694103065637 ], [ -96.056369163298214, 29.412832103184318 ], [ -96.059270163591592, 29.411075102087544 ], [ -96.060704164301939, 29.410211102667731 ], [ -96.060891164610254, 29.410098102235001 ], [ -96.061180163882568, 29.409924101902071 ], [ -96.062676164104587, 29.408994102353525 ], [ -96.063122164421088, 29.40867210234018 ], [ -96.063493164948142, 29.40835410186579 ], [ -96.063865164842028, 29.407990102108471 ], [ -96.064250165152473, 29.40758410180851 ], [ -96.064615164733567, 29.407098101258942 ], [ -96.065346164815296, 29.40598210141 ], [ -96.066405164796706, 29.404261100914731 ], [ -96.066884165706014, 29.403447100820237 ], [ -96.067700165503126, 29.402101100503064 ], [ -96.068593165215404, 29.400634099670643 ], [ -96.068878165305193, 29.400165100020317 ], [ -96.07083216637777, 29.396977099238793 ], [ -96.071804166184464, 29.395388099199767 ], [ -96.072217166882965, 29.394714098569565 ], [ -96.07332316707479, 29.392905098445002 ], [ -96.073632166407833, 29.39239709790548 ], [ -96.071826166487085, 29.391839098125356 ], [ -96.071238166165429, 29.391722098523239 ], [ -96.071002166278092, 29.391652098483195 ], [ -96.070715165362529, 29.391568098241528 ], [ -96.070329166257451, 29.391454098323212 ], [ -96.070041165641868, 29.391370098137536 ], [ -96.069688165912893, 29.391267098270063 ], [ -96.069445165582593, 29.391196097865087 ], [ -96.068956165401005, 29.391053098383679 ], [ -96.067808164689154, 29.390711097942024 ], [ -96.067360165043667, 29.390578098257951 ], [ -96.066084164286877, 29.39019909819184 ], [ -96.065701165031015, 29.390080097862604 ], [ -96.063725163728876, 29.38949009834343 ], [ -96.063168163450513, 29.389231098024425 ], [ -96.062688163445159, 29.388830097727443 ], [ -96.062017163477108, 29.388268098140905 ], [ -96.061744163329863, 29.388039097937749 ], [ -96.060342163216703, 29.387368098109665 ], [ -96.060972163627653, 29.385687097158158 ], [ -96.06237916366085, 29.381932096458893 ], [ -96.063933163422348, 29.377785095729841 ], [ -96.064171163389801, 29.377158095356375 ], [ -96.064881163805552, 29.375266095018535 ], [ -96.065850163903733, 29.372981094183881 ], [ -96.066069163840638, 29.372434094759331 ], [ -96.066477164246336, 29.371413094405732 ], [ -96.068059164310526, 29.367505093760041 ], [ -96.068277164114278, 29.366914093528553 ], [ -96.068681164075471, 29.365815093088777 ], [ -96.068848164721459, 29.365361093127976 ], [ -96.069017164514932, 29.364901093088864 ], [ -96.069205164357086, 29.364390092869254 ], [ -96.069495164565353, 29.363600092659421 ], [ -96.071488164793308, 29.358180091218987 ], [ -96.072470164257524, 29.355521090914451 ], [ -96.072826164584853, 29.354512090522398 ], [ -96.073889165375363, 29.351502089894424 ], [ -96.075143165282341, 29.347951088732763 ], [ -96.075278165625321, 29.347568088757445 ], [ -96.075560164969403, 29.346698088981444 ], [ -96.075725165141691, 29.346190088479759 ], [ -96.076137165516812, 29.344917088674549 ], [ -96.076675165742756, 29.34326008840338 ], [ -96.076900165394179, 29.342582088165656 ], [ -96.078257165914891, 29.342985088119129 ], [ -96.080036166342751, 29.343514088449776 ], [ -96.081885166638557, 29.344064087686053 ], [ -96.0822841664138, 29.344191088452281 ], [ -96.083200166891544, 29.344482088547604 ], [ -96.083693167165137, 29.344638088208956 ], [ -96.084008167631367, 29.344739088383474 ], [ -96.084263167391029, 29.344820087813734 ], [ -96.0865511675226, 29.345464088196529 ], [ -96.087069167830435, 29.344162087689345 ], [ -96.087255168078428, 29.343706087658521 ], [ -96.087406168439344, 29.343336087973295 ], [ -96.087611168112517, 29.342801087464167 ], [ -96.088053168541691, 29.341586087204956 ], [ -96.088432168410336, 29.340613087107549 ], [ -96.088451168493222, 29.340565087448031 ], [ -96.088521167701828, 29.340355087413013 ], [ -96.088898168665835, 29.339414087165515 ], [ -96.08915216830853, 29.338787086822343 ], [ -96.089464168118781, 29.338017086827982 ], [ -96.089689168313498, 29.337425086465355 ], [ -96.089741168066723, 29.337286086574597 ], [ -96.089768167991849, 29.337215086207394 ], [ -96.089885168076435, 29.33690708604248 ], [ -96.090060168713492, 29.336467086259379 ], [ -96.090282168613754, 29.335910086141975 ], [ -96.090644167997681, 29.33498808567844 ], [ -96.091001168822146, 29.334015086149538 ], [ -96.09117016824591, 29.333576085958143 ], [ -96.091353168160609, 29.333099085558825 ], [ -96.091732168678902, 29.332182085780268 ], [ -96.092259168423084, 29.330828085324466 ], [ -96.092545168442086, 29.330106084762171 ], [ -96.092834168944819, 29.329428084531614 ], [ -96.093062168758493, 29.32880008438212 ], [ -96.093157169159596, 29.32860908463654 ], [ -96.093344169050368, 29.328069084592514 ], [ -96.093549168435842, 29.327540084543216 ], [ -96.093651168497246, 29.327264084400429 ], [ -96.09397716912035, 29.326514084426471 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 744, "Tract": "48481740800", "Area_SqMi": 21.012370636776716, "total_2009": 1379, "total_2010": 1984, "total_2011": 1988, "total_2012": 1124, "total_2013": 1184, "total_2014": 1163, "total_2015": 1184, "total_2016": 1328, "total_2017": 1230, "total_2018": 1248, "total_2019": 1314, "total_2020": 1227, "age1": 352, "age2": 625, "age3": 343, "earn1": 314, "earn2": 446, "earn3": 560, "naics_s01": 10, "naics_s02": 122, "naics_s03": 46, "naics_s04": 58, "naics_s05": 30, "naics_s06": 6, "naics_s07": 295, "naics_s08": 17, "naics_s09": 28, "naics_s10": 63, "naics_s11": 14, "naics_s12": 27, "naics_s13": 0, "naics_s14": 22, "naics_s15": 0, "naics_s16": 55, "naics_s17": 0, "naics_s18": 311, "naics_s19": 45, "naics_s20": 171, "race1": 1163, "race2": 106, "race3": 13, "race4": 23, "race5": 0, "race6": 15, "ethnicity1": 805, "ethnicity2": 515, "edu1": 210, "edu2": 287, "edu3": 322, "edu4": 149, "Shape_Length": 124710.2331033927, "Shape_Area": 585788930.32157016, "total_2021": 1281, "total_2022": 1320 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.287496213108824, 29.218492055808891 ], [ -96.286800213057305, 29.217575055707186 ], [ -96.286670213244776, 29.217416055228316 ], [ -96.284662212680288, 29.2149680552928 ], [ -96.283597212154859, 29.213683054499381 ], [ -96.282828211552328, 29.212738054384548 ], [ -96.282590211383777, 29.212481054200502 ], [ -96.281830212064619, 29.211502054532499 ], [ -96.281348211582511, 29.210931054548187 ], [ -96.281103211429908, 29.210608054287725 ], [ -96.280003211566452, 29.209249053687067 ], [ -96.278557210623575, 29.207461053376864 ], [ -96.27826821024, 29.207111053754048 ], [ -96.277196210276671, 29.205793053106945 ], [ -96.27657521041759, 29.205022053426664 ], [ -96.275902209479611, 29.204204052987205 ], [ -96.275264209819355, 29.203412052795503 ], [ -96.274614209156155, 29.20258305281855 ], [ -96.273606208717496, 29.201374052752097 ], [ -96.272776208618595, 29.200311052198511 ], [ -96.272056208796627, 29.199451052211586 ], [ -96.2713032085382, 29.198562052186691 ], [ -96.270566207915905, 29.197631051653556 ], [ -96.26988520754314, 29.196741051713648 ], [ -96.268833207525191, 29.197406052122631 ], [ -96.267849207838907, 29.198014051824103 ], [ -96.266809206891693, 29.198645052484924 ], [ -96.265799207174538, 29.19928005266571 ], [ -96.264765207214339, 29.19992005221825 ], [ -96.263791206848353, 29.200529052969419 ], [ -96.262242205859863, 29.201501053488638 ], [ -96.261842205729479, 29.201743053550814 ], [ -96.26161820601898, 29.201879052748584 ], [ -96.261391206006266, 29.202016053161987 ], [ -96.260487205658947, 29.202564052942552 ], [ -96.259566206125228, 29.203171053412177 ], [ -96.258342205181833, 29.203912053654324 ], [ -96.257148204626944, 29.204636053805686 ], [ -96.255437204964409, 29.205672054117311 ], [ -96.254910204838836, 29.205991053897744 ], [ -96.254406204660768, 29.206156054641355 ], [ -96.253588204030692, 29.206287054632245 ], [ -96.252916204402609, 29.206414054191324 ], [ -96.252132204200763, 29.206515054858645 ], [ -96.251353203732833, 29.20676205408958 ], [ -96.251124203658449, 29.206896054697282 ], [ -96.250633203119222, 29.207183054730752 ], [ -96.250489203467353, 29.207268054821135 ], [ -96.250416203874551, 29.207315054298004 ], [ -96.249759203558256, 29.207734054751576 ], [ -96.24908420372816, 29.208165054898199 ], [ -96.248205202954452, 29.208727055242839 ], [ -96.242310201395242, 29.212410055590226 ], [ -96.241992201457592, 29.212609056247402 ], [ -96.241791201903339, 29.21273505608205 ], [ -96.241664201349295, 29.212814056253208 ], [ -96.240226200923104, 29.21372205587657 ], [ -96.239252200774629, 29.21428805648527 ], [ -96.238674201165551, 29.214645056093055 ], [ -96.238590200807621, 29.214697056334334 ], [ -96.2383222010548, 29.214863056192794 ], [ -96.237968200598417, 29.215571056314012 ], [ -96.237895201184728, 29.215713056529065 ], [ -96.237588200380955, 29.216306057123756 ], [ -96.237436200939214, 29.216579056659036 ], [ -96.237311200504593, 29.216816056632023 ], [ -96.237187200699481, 29.216985056988154 ], [ -96.236966200050603, 29.217231057451396 ], [ -96.236760200768089, 29.217480057344542 ], [ -96.236554200912479, 29.217705057313506 ], [ -96.236299200526673, 29.217954056902773 ], [ -96.235997200140531, 29.218201056981474 ], [ -96.235722199755415, 29.218419057743393 ], [ -96.235098199959708, 29.21884105712612 ], [ -96.23496619990776, 29.21890805772793 ], [ -96.234631200517853, 29.219079057154584 ], [ -96.234164200105198, 29.219287057400742 ], [ -96.231593199032559, 29.220366058297721 ], [ -96.227454198124207, 29.22210405799548 ], [ -96.22582819794502, 29.222786058581555 ], [ -96.224997197759478, 29.223234058363676 ], [ -96.224010197318435, 29.22381105882792 ], [ -96.223122197081025, 29.224364058848359 ], [ -96.221227197078306, 29.225566058921945 ], [ -96.220922196937806, 29.225760059368707 ], [ -96.21869019620641, 29.22714605942824 ], [ -96.217761196086983, 29.227725059919749 ], [ -96.216015196051472, 29.228796059725827 ], [ -96.213441194733988, 29.230384060959164 ], [ -96.211406194553106, 29.231639060928988 ], [ -96.208736194367532, 29.23330806109772 ], [ -96.2079291940464, 29.233853061526972 ], [ -96.207662193427126, 29.234053061529416 ], [ -96.207258193490873, 29.234397061332693 ], [ -96.206963194116796, 29.23467606147155 ], [ -96.206791193799276, 29.234871061412768 ], [ -96.206409193237761, 29.235325061767554 ], [ -96.206190193481561, 29.23565606213651 ], [ -96.205911193276762, 29.236142061770021 ], [ -96.205620193615616, 29.236722062553309 ], [ -96.204709193081499, 29.238773062970132 ], [ -96.204260193205002, 29.23950206263763 ], [ -96.204216193263392, 29.239573062325949 ], [ -96.203620193574508, 29.240335062466151 ], [ -96.202885192582414, 29.241012062848156 ], [ -96.202822192638081, 29.241061062829921 ], [ -96.20263619280351, 29.241209063333809 ], [ -96.202115192961344, 29.241620063324621 ], [ -96.201165192644311, 29.24230006362232 ], [ -96.201098192366942, 29.242350063742581 ], [ -96.200432192615466, 29.24284206366621 ], [ -96.199742192311589, 29.243296063827739 ], [ -96.199702192241219, 29.243314063320486 ], [ -96.19956619263057, 29.243376063737937 ], [ -96.199462192376942, 29.243424063778939 ], [ -96.198952191613174, 29.243657063957311 ], [ -96.198040191352987, 29.243980063747184 ], [ -96.19682219135882, 29.244261064016015 ], [ -96.196300191248653, 29.244332064179961 ], [ -96.196018191723894, 29.2443700642844 ], [ -96.195278191257344, 29.244390063656446 ], [ -96.19459819090757, 29.24443906421439 ], [ -96.193326190814702, 29.244493064323443 ], [ -96.191780189905998, 29.244713064121711 ], [ -96.191320189890121, 29.24485106444968 ], [ -96.191221189981306, 29.244881063956647 ], [ -96.190248189662611, 29.2451850642442 ], [ -96.189647189284514, 29.245406064038008 ], [ -96.188930190038121, 29.245714064461822 ], [ -96.188162189035978, 29.246103064873363 ], [ -96.185489188999085, 29.247763064923401 ], [ -96.182733188001976, 29.249474065846567 ], [ -96.182699188353467, 29.249461065034485 ], [ -96.181204187727403, 29.250393065321056 ], [ -96.177718187455142, 29.252565066607488 ], [ -96.177300186578009, 29.252829066742684 ], [ -96.176455186529878, 29.253364066266265 ], [ -96.175916186710921, 29.253697066901083 ], [ -96.174458186669838, 29.254606066369174 ], [ -96.166204184006034, 29.259753068223858 ], [ -96.165495184698798, 29.260190068576104 ], [ -96.165531183869774, 29.260379068675526 ], [ -96.165531184769478, 29.260406067829866 ], [ -96.165531184274613, 29.26055006862105 ], [ -96.165493183875924, 29.260676068245346 ], [ -96.165506184496451, 29.260924068172145 ], [ -96.165481184074721, 29.261105068073856 ], [ -96.16549918449482, 29.261264068014409 ], [ -96.165549184351434, 29.261512068236147 ], [ -96.165725184874901, 29.261886068182488 ], [ -96.165838184245672, 29.262226068682153 ], [ -96.165888184217067, 29.262562068379598 ], [ -96.165963184001612, 29.262727068764629 ], [ -96.166032184417759, 29.262820068491735 ], [ -96.166120184828188, 29.262996068718284 ], [ -96.166195184938175, 29.263078068746335 ], [ -96.166364184313267, 29.263210068576132 ], [ -96.166521184928328, 29.263315068634405 ], [ -96.166652185051788, 29.263436068618041 ], [ -96.166759184980137, 29.263562068840759 ], [ -96.167022184435922, 29.263793068798748 ], [ -96.167292184680761, 29.264112068512421 ], [ -96.167555184734795, 29.264634068897305 ], [ -96.167705185502641, 29.264871069372184 ], [ -96.16808118558771, 29.265354069586699 ], [ -96.168188184841625, 29.265514069012461 ], [ -96.168213185173158, 29.265717069255349 ], [ -96.16825718518642, 29.265899068985401 ], [ -96.168313184852479, 29.266064069638581 ], [ -96.168708185793136, 29.26670106913431 ], [ -96.168858185563636, 29.266855069789134 ], [ -96.168902185259014, 29.266883069794737 ], [ -96.169034185375082, 29.266932069213627 ], [ -96.169184185782541, 29.266927069726279 ], [ -96.16924718498683, 29.266905069753996 ], [ -96.16947318571934, 29.26675106938611 ], [ -96.16957318568663, 29.266712069145296 ], [ -96.169717185573703, 29.26666906914711 ], [ -96.170037186080634, 29.266647069701534 ], [ -96.170940186029483, 29.266674069538951 ], [ -96.171993186685171, 29.266625069467189 ], [ -96.172087186581123, 29.266641069216313 ], [ -96.172200186217864, 29.266674069461885 ], [ -96.172350186719171, 29.266735068980527 ], [ -96.172450186425138, 29.266806069348924 ], [ -96.17260118624155, 29.266960069724952 ], [ -96.172801186370307, 29.267257069381991 ], [ -96.172839185989275, 29.267455069386077 ], [ -96.172933186102227, 29.267642069847486 ], [ -96.172989186965196, 29.267713069384214 ], [ -96.173040186625613, 29.267735069769461 ], [ -96.173121186735656, 29.26775206943983 ], [ -96.173359186777915, 29.267823069080716 ], [ -96.173472186844577, 29.267878069660842 ], [ -96.173597186768873, 29.26796106997709 ], [ -96.173673186307894, 29.268137069423943 ], [ -96.17367918716235, 29.268285070018973 ], [ -96.173673186940619, 29.268340069208392 ], [ -96.173654186357467, 29.268390069634165 ], [ -96.173579186403899, 29.268521069981905 ], [ -96.173566186541052, 29.2685820692292 ], [ -96.173572186238289, 29.268730069798725 ], [ -96.173767186664222, 29.268923069661756 ], [ -96.174030186732125, 29.269209069454128 ], [ -96.174964187545186, 29.270099069605468 ], [ -96.175077187239708, 29.270160070023099 ], [ -96.175139187400219, 29.270176070231585 ], [ -96.17527118725944, 29.270182069530328 ], [ -96.175522186846464, 29.270149070179812 ], [ -96.175892187641836, 29.270072070320744 ], [ -96.176042187082942, 29.270055069454873 ], [ -96.176193187869046, 29.270066069777105 ], [ -96.176331187495336, 29.270127069564097 ], [ -96.176475187348785, 29.270215069824843 ], [ -96.176870187371392, 29.270748070053408 ], [ -96.176901187791401, 29.270842069881628 ], [ -96.176907187290269, 29.270990070148713 ], [ -96.176895187141398, 29.271193070205843 ], [ -96.176782187701036, 29.271611069798979 ], [ -96.176776187329267, 29.271704070617339 ], [ -96.176788187236454, 29.271864070509928 ], [ -96.176888187512077, 29.272122070363245 ], [ -96.176926187510958, 29.272304070558327 ], [ -96.177001187791447, 29.27244707071949 ], [ -96.177070187433245, 29.272573069984364 ], [ -96.177133187837867, 29.272771070503243 ], [ -96.177189187727706, 29.272864070403575 ], [ -96.177220187895045, 29.272989070292095 ], [ -96.177264187334856, 29.273167070717957 ], [ -96.177365187950585, 29.273925070987534 ], [ -96.177427187925502, 29.274228070389249 ], [ -96.177665188169371, 29.274854071206835 ], [ -96.177672187683484, 29.274948070996128 ], [ -96.17766518818128, 29.274986070611845 ], [ -96.177640187893715, 29.275041071258979 ], [ -96.177415187437447, 29.275360071102874 ], [ -96.177151187638955, 29.275613071280905 ], [ -96.177101187842268, 29.275646071094819 ], [ -96.17705118793144, 29.27577807089493 ], [ -96.177045187560537, 29.275855070652607 ], [ -96.177063187742618, 29.275954070775107 ], [ -96.177114188224749, 29.27609107141658 ], [ -96.17739618834554, 29.276547071449961 ], [ -96.177446187970062, 29.27669607137674 ], [ -96.177502188045864, 29.276800070847838 ], [ -96.177521188448111, 29.276899071291943 ], [ -96.177590188245517, 29.277927071499118 ], [ -96.177577188403291, 29.278081071524998 ], [ -96.177521187555357, 29.278301071908952 ], [ -96.177508187681966, 29.278389071346432 ], [ -96.177458188075079, 29.278537071387227 ], [ -96.177445187902947, 29.278636071508945 ], [ -96.177452188502457, 29.278730071284588 ], [ -96.177508187797073, 29.27890507157451 ], [ -96.177627188045633, 29.279109071986689 ], [ -96.177665188296643, 29.279153072016861 ], [ -96.177765188124724, 29.279208071453706 ], [ -96.177847188507187, 29.279241072147236 ], [ -96.178323188349083, 29.27932907179936 ], [ -96.178499188854801, 29.279411071873941 ], [ -96.178561188022783, 29.279450071772676 ], [ -96.178593188233805, 29.279488071480991 ], [ -96.178612188080223, 29.279538071307684 ], [ -96.178612188103216, 29.27969207199229 ], [ -96.178561187920195, 29.279818071509336 ], [ -96.178455188579349, 29.279923071391334 ], [ -96.178417188559962, 29.279988072163142 ], [ -96.178392188421498, 29.280054071823479 ], [ -96.17839218808129, 29.280170071907222 ], [ -96.178423188095053, 29.280247071900664 ], [ -96.178474188589604, 29.280313071901944 ], [ -96.178605188110694, 29.280445071531496 ], [ -96.178831188184191, 29.280747072175952 ], [ -96.178843188730283, 29.280786072135502 ], [ -96.178837188686927, 29.280879072010098 ], [ -96.17880618900989, 29.28092807193228 ], [ -96.178756188871347, 29.280956072065351 ], [ -96.178655188098219, 29.280983071854052 ], [ -96.178568188846427, 29.281033072259369 ], [ -96.178517188591556, 29.28107107163358 ], [ -96.178473188072019, 29.281132072492433 ], [ -96.178404187945944, 29.281247072252111 ], [ -96.178342187986345, 29.281440072441455 ], [ -96.17822318862477, 29.281654072046223 ], [ -96.178204188119523, 29.281747072131861 ], [ -96.178198188385338, 29.281874072317116 ], [ -96.178241188853193, 29.282000072063205 ], [ -96.178486188850343, 29.282259072612213 ], [ -96.178680188195088, 29.282429072277232 ], [ -96.179019188280392, 29.282748071919688 ], [ -96.179207189190507, 29.282995072362613 ], [ -96.179244188351248, 29.283177072860525 ], [ -96.179244188715032, 29.283270072356984 ], [ -96.179219188261911, 29.283424072220122 ], [ -96.179163188493305, 29.283572072263773 ], [ -96.179081189023336, 29.283726072438384 ], [ -96.178931188461277, 29.283935072818064 ], [ -96.178724189007141, 29.284386072978521 ], [ -96.17859818815883, 29.285062072738636 ], [ -96.178623189059323, 29.285535073257314 ], [ -96.178636188374796, 29.286030073056615 ], [ -96.178686188291266, 29.286183073351332 ], [ -96.178774188775208, 29.286343072739541 ], [ -96.1789871884028, 29.286678073141395 ], [ -96.179087188631897, 29.286739073547086 ], [ -96.179244189244542, 29.286755073413062 ], [ -96.179463188590475, 29.286755073531271 ], [ -96.179608188732644, 29.286750073328804 ], [ -96.179714189319768, 29.286766072794826 ], [ -96.179940189047642, 29.286810073041501 ], [ -96.180254188774356, 29.286931073324556 ], [ -96.180674189206684, 29.287019073039335 ], [ -96.180893189222004, 29.287030073294869 ], [ -96.181069189825166, 29.287058073470476 ], [ -96.1812001889313, 29.287118072962734 ], [ -96.181269189179716, 29.287162073488492 ], [ -96.181614189312015, 29.287443072962255 ], [ -96.181758189795218, 29.287547073117612 ], [ -96.181884190098486, 29.287657073153721 ], [ -96.18210318925, 29.2877340736093 ], [ -96.182222189721344, 29.287750073113472 ], [ -96.182486189832701, 29.287706072999509 ], [ -96.182824189329963, 29.287679073110588 ], [ -96.182868189627357, 29.287695072857517 ], [ -96.18295019036546, 29.287745073049344 ], [ -96.183157190407627, 29.287915073114707 ], [ -96.183307190231659, 29.288102073329046 ], [ -96.183376190410129, 29.288157073394753 ], [ -96.183439189884524, 29.288179073768664 ], [ -96.183495189785447, 29.28819007366252 ], [ -96.183627189967254, 29.288185073443291 ], [ -96.18380218963992, 29.288141073319277 ], [ -96.18394018990189, 29.288031073047065 ], [ -96.184047190082055, 29.287915073076885 ], [ -96.184179190307248, 29.287855073489521 ], [ -96.184455190463211, 29.287910073406849 ], [ -96.184555190434551, 29.287954073084965 ], [ -96.18486219081116, 29.288196073539641 ], [ -96.185006189976349, 29.2882620731726 ], [ -96.185307190222062, 29.288284073414772 ], [ -96.185458190916975, 29.288229073081901 ], [ -96.185514190411155, 29.288190073603712 ], [ -96.185702190529398, 29.288091073031051 ], [ -96.185859190824672, 29.288047073145261 ], [ -96.185916190230614, 29.288042073186265 ], [ -96.185960190417958, 29.28804707303755 ], [ -96.186054190383317, 29.288102072917173 ], [ -96.186235190950413, 29.288311073394656 ], [ -96.186436190662477, 29.288416073111105 ], [ -96.186593190571912, 29.288388073315108 ], [ -96.186668191189071, 29.288350073460062 ], [ -96.186762190621792, 29.288262073230523 ], [ -96.186900190629046, 29.288047073563344 ], [ -96.186950190556473, 29.287992073261428 ], [ -96.187000190372146, 29.287960073421186 ], [ -96.187107190396233, 29.287943073415413 ], [ -96.187176191298079, 29.287943073597813 ], [ -96.18734519062734, 29.287905073562314 ], [ -96.187395190857174, 29.287866073164977 ], [ -96.187483191095893, 29.287773072902983 ], [ -96.18764619066738, 29.287542073376787 ], [ -96.187784191044656, 29.287432072836072 ], [ -96.187860191020917, 29.287399072941721 ], [ -96.187997191521731, 29.287377072640282 ], [ -96.188248191191519, 29.28737707316391 ], [ -96.188461191033554, 29.287388072569723 ], [ -96.18863719170173, 29.287454073105284 ], [ -96.188806191245263, 29.287536073021545 ], [ -96.188963191368757, 29.287558073472535 ], [ -96.189164191770772, 29.287547072969836 ], [ -96.189245191224003, 29.287520073311246 ], [ -96.189377191354396, 29.287426072935737 ], [ -96.189440191334143, 29.287366072789915 ], [ -96.189565191762483, 29.287185072977305 ], [ -96.189697191393918, 29.287097072644187 ], [ -96.189741191134772, 29.287080072637472 ], [ -96.189797192003724, 29.28706407280615 ], [ -96.190016191164744, 29.287047072619441 ], [ -96.190274191598974, 29.286998073110148 ], [ -96.190850191464051, 29.286937073056659 ], [ -96.191020191519513, 29.286959073214781 ], [ -96.191114192384831, 29.286981072972331 ], [ -96.191365191711853, 29.287174072795636 ], [ -96.191415192130208, 29.287179072642662 ], [ -96.19146519163715, 29.287174072760326 ], [ -96.191553192387047, 29.287124072459459 ], [ -96.191572191926397, 29.287113072915634 ], [ -96.191716192000499, 29.286970072727666 ], [ -96.191879191983801, 29.286915072368991 ], [ -96.192243191673612, 29.286822073215554 ], [ -96.192537191832656, 29.286706073165803 ], [ -96.192700192374204, 29.286547072894148 ], [ -96.192857192002904, 29.286338072242408 ], [ -96.192989192602369, 29.286267072459047 ], [ -96.193540192620247, 29.286157072524595 ], [ -96.193848192923596, 29.286008072547663 ], [ -96.193998192979748, 29.285992072831327 ], [ -96.194136193074996, 29.285997072664461 ], [ -96.194312192274978, 29.285992072312634 ], [ -96.194487192483905, 29.285948072787303 ], [ -96.194606192302956, 29.285887072947808 ], [ -96.194713193028889, 29.285794072375261 ], [ -96.194851192880193, 29.28562307283692 ], [ -96.195121192369712, 29.285140072444026 ], [ -96.1951521923896, 29.28510707255337 ], [ -96.195183193186409, 29.285090072712151 ], [ -96.195284193114603, 29.285079072186644 ], [ -96.195434192642352, 29.285096071915586 ], [ -96.195666193482097, 29.285167072151246 ], [ -96.195948193198248, 29.285222072485062 ], [ -96.196055192894576, 29.285233072440164 ], [ -96.196155193311213, 29.285227072197515 ], [ -96.196274192688122, 29.285183071890881 ], [ -96.196318193584915, 29.28515007244663 ], [ -96.196387193415262, 29.285090072485634 ], [ -96.196444193363263, 29.284942072330779 ], [ -96.196506193393901, 29.284447072037871 ], [ -96.196531193336781, 29.28438607224221 ], [ -96.196613193037322, 29.28430407244791 ], [ -96.196707192859535, 29.284249071879305 ], [ -96.196832192775588, 29.284243072182235 ], [ -96.196995193463309, 29.284260071744438 ], [ -96.197139193316744, 29.284260072465369 ], [ -96.197221193015579, 29.284238072214571 ], [ -96.197259193227396, 29.284210072124196 ], [ -96.197422193505759, 29.283963071935826 ], [ -96.197472193000209, 29.283897071679906 ], [ -96.197535193153442, 29.283837072344514 ], [ -96.197741192976466, 29.283677072368757 ], [ -96.198017193392488, 29.283534071571026 ], [ -96.198099193167792, 29.283474072182464 ], [ -96.198318193512776, 29.28324807161956 ], [ -96.198425193928642, 29.283084072127782 ], [ -96.198500193545343, 29.282864071342949 ], [ -96.198544193997733, 29.282792071606085 ], [ -96.198644193480817, 29.282715071692724 ], [ -96.198751193449127, 29.28267707209276 ], [ -96.198857193347038, 29.282671071328046 ], [ -96.198914193478842, 29.282693071994828 ], [ -96.198970193790799, 29.282732071587148 ], [ -96.199039193440342, 29.282748072031566 ], [ -96.199171193752235, 29.282754071678248 ], [ -96.199209194059947, 29.282748071433836 ], [ -96.199340193826004, 29.282655072102816 ], [ -96.199434193610756, 29.28256107189851 ], [ -96.199510194323722, 29.28245707129981 ], [ -96.199585193558164, 29.282341071495967 ], [ -96.199622193498044, 29.282248071229088 ], [ -96.199748193609722, 29.282088071839038 ], [ -96.199823193908557, 29.282001071817092 ], [ -96.200024194066316, 29.281830071128965 ], [ -96.200155194091451, 29.281665071343859 ], [ -96.200419193875419, 29.281423071578079 ], [ -96.200757193937008, 29.281187071460131 ], [ -96.200864194205209, 29.281077071433153 ], [ -96.201071193735459, 29.280912070924966 ], [ -96.201221193942501, 29.28073107079792 ], [ -96.201353194591945, 29.280610070878232 ], [ -96.201497194232502, 29.280527071191489 ], [ -96.201585194628748, 29.280500071197913 ], [ -96.201679194701455, 29.280489071598225 ], [ -96.201930194713441, 29.280500070847399 ], [ -96.202205194675713, 29.280560071384095 ], [ -96.202419194227218, 29.280577071002028 ], [ -96.202473194112471, 29.280577070939614 ], [ -96.201473194690649, 29.28319007151326 ], [ -96.20365919495157, 29.283840071899018 ], [ -96.20448719541146, 29.284086071990867 ], [ -96.208229195936838, 29.285227071876321 ], [ -96.209254196723862, 29.285539072055101 ], [ -96.216037198648181, 29.287592072312549 ], [ -96.217111198796161, 29.28792007245994 ], [ -96.217142198532486, 29.287833071898522 ], [ -96.217265198967283, 29.28750207223343 ], [ -96.217485198409562, 29.286934072263353 ], [ -96.2176451987891, 29.286522071644868 ], [ -96.218314198300376, 29.284862071201079 ], [ -96.218647198991007, 29.284021071740625 ], [ -96.21908919853739, 29.282936070853449 ], [ -96.21930919923976, 29.282392071076902 ], [ -96.219792199185505, 29.281072070540262 ], [ -96.219836199403574, 29.280976070904249 ], [ -96.219948198903566, 29.280932070834393 ], [ -96.220075199303565, 29.280932070733972 ], [ -96.220580198694563, 29.281108070264885 ], [ -96.227480200430804, 29.283215071129952 ], [ -96.228540200971509, 29.283530070651246 ], [ -96.232908202632544, 29.284753070669794 ], [ -96.236070203668504, 29.285638071089455 ], [ -96.236618203729776, 29.284979070653222 ], [ -96.237343203375744, 29.283079070409009 ], [ -96.238947203613918, 29.278901069227135 ], [ -96.239645203650142, 29.277083069648743 ], [ -96.23973820393951, 29.276842068733796 ], [ -96.240479204255621, 29.274918068521632 ], [ -96.240851203536181, 29.273953068433023 ], [ -96.241041204350267, 29.273461068613813 ], [ -96.241137203956114, 29.273213067962409 ], [ -96.241391203653308, 29.272553067932357 ], [ -96.241576204002371, 29.272072068291848 ], [ -96.242961204480849, 29.268661067389079 ], [ -96.243217204099324, 29.267982067330998 ], [ -96.244718204381741, 29.264007066363334 ], [ -96.245778204381921, 29.26119806587462 ], [ -96.246197204574528, 29.26012206584139 ], [ -96.246628204375867, 29.259015065193047 ], [ -96.246905204858848, 29.258305065133175 ], [ -96.248034204507377, 29.255367064255946 ], [ -96.248754204773647, 29.253492063967645 ], [ -96.249738205170701, 29.250975063864697 ], [ -96.251062205793787, 29.247521062774549 ], [ -96.252269205363874, 29.244372061759577 ], [ -96.253778205947796, 29.24482506258235 ], [ -96.255518206603313, 29.245348061875649 ], [ -96.259599207973906, 29.246574062328868 ], [ -96.26009020725742, 29.246722061905835 ], [ -96.262549208114933, 29.247447062214658 ], [ -96.263634209000386, 29.247770062395027 ], [ -96.264588208876077, 29.248053062748575 ], [ -96.266356209596609, 29.248578062176524 ], [ -96.267918209678797, 29.249052062712838 ], [ -96.269241210184035, 29.249416062715799 ], [ -96.270127210214483, 29.249659062302943 ], [ -96.272389210878544, 29.250359062809054 ], [ -96.273073211248033, 29.250545062744436 ], [ -96.273263211640455, 29.250550063138697 ], [ -96.273503211420049, 29.250495062932195 ], [ -96.27418321103363, 29.250094062992478 ], [ -96.273995211420385, 29.249820062231809 ], [ -96.273866211279326, 29.249620062477625 ], [ -96.273811211491278, 29.249536062151119 ], [ -96.273623211095355, 29.249018062691974 ], [ -96.273589211536773, 29.248347061990451 ], [ -96.27353721119151, 29.247338062324186 ], [ -96.273526211252204, 29.246516061494685 ], [ -96.273521210738636, 29.246185061568525 ], [ -96.273519211073719, 29.246028061866106 ], [ -96.273515211061152, 29.245752061559077 ], [ -96.273506210848268, 29.245116061684651 ], [ -96.273500211276641, 29.244701061583587 ], [ -96.273487211020182, 29.24341206104992 ], [ -96.273445211199757, 29.242065061027457 ], [ -96.273414210898395, 29.24108506079941 ], [ -96.273409210331266, 29.240920060605081 ], [ -96.273416210960121, 29.240038060556863 ], [ -96.273307210344683, 29.235460059513382 ], [ -96.273078210461208, 29.23299205931113 ], [ -96.273027210550083, 29.232373059313073 ], [ -96.27301820995919, 29.232256058905893 ], [ -96.272979210399043, 29.231795058565787 ], [ -96.272950210195987, 29.231435058386023 ], [ -96.272886209709384, 29.230655058560188 ], [ -96.272847210385208, 29.230320058975011 ], [ -96.272806210270502, 29.229968058190742 ], [ -96.272733210068608, 29.229332058140248 ], [ -96.272745210566683, 29.228906058396124 ], [ -96.272754210293385, 29.228851058334214 ], [ -96.272804210433421, 29.228556058240585 ], [ -96.272876210161215, 29.228289058312637 ], [ -96.272901210350398, 29.22819705788103 ], [ -96.273036209715812, 29.22797705836588 ], [ -96.273164210305325, 29.227688058297005 ], [ -96.273403210382369, 29.227368057914624 ], [ -96.274009210386737, 29.226894058100697 ], [ -96.27491121083915, 29.226321057564913 ], [ -96.275925210841208, 29.225705057851481 ], [ -96.276351210468093, 29.225446057044248 ], [ -96.277036211154041, 29.225030057049398 ], [ -96.278200211470562, 29.224323057391075 ], [ -96.27871721158948, 29.224001057505046 ], [ -96.279346211202181, 29.223599056877415 ], [ -96.279821211768308, 29.22329505664575 ], [ -96.28017821166479, 29.223067057145837 ], [ -96.28042321198204, 29.222910056932818 ], [ -96.280594211973551, 29.222800057143967 ], [ -96.280953212236071, 29.222570056623496 ], [ -96.28101021214971, 29.222533056779934 ], [ -96.281337212482541, 29.222324057017619 ], [ -96.28171321159526, 29.222084056832859 ], [ -96.282768212092762, 29.221411056336059 ], [ -96.284292213156107, 29.220495056233567 ], [ -96.284416213085095, 29.220421056202962 ], [ -96.284867212434492, 29.220150056566975 ], [ -96.2855472129216, 29.219699055767304 ], [ -96.287496213108824, 29.218492055808891 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 745, "Tract": "48481741000", "Area_SqMi": 94.627751236144434, "total_2009": 836, "total_2010": 902, "total_2011": 953, "total_2012": 1034, "total_2013": 1031, "total_2014": 1004, "total_2015": 1204, "total_2016": 984, "total_2017": 973, "total_2018": 969, "total_2019": 1035, "total_2020": 1018, "age1": 180, "age2": 484, "age3": 312, "earn1": 139, "earn2": 436, "earn3": 401, "naics_s01": 367, "naics_s02": 97, "naics_s03": 0, "naics_s04": 57, "naics_s05": 39, "naics_s06": 104, "naics_s07": 103, "naics_s08": 51, "naics_s09": 0, "naics_s10": 16, "naics_s11": 6, "naics_s12": 20, "naics_s13": 0, "naics_s14": 9, "naics_s15": 35, "naics_s16": 0, "naics_s17": 0, "naics_s18": 50, "naics_s19": 13, "naics_s20": 9, "race1": 875, "race2": 55, "race3": 15, "race4": 16, "race5": 0, "race6": 15, "ethnicity1": 527, "ethnicity2": 449, "edu1": 251, "edu2": 227, "edu3": 206, "edu4": 112, "Shape_Length": 245529.25259646104, "Shape_Area": 2638059747.448844, "total_2021": 992, "total_2022": 976 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.326900220671774, 29.159574042341088 ], [ -96.326662220548599, 29.159261042525468 ], [ -96.326597220647429, 29.159116042704191 ], [ -96.326567221156978, 29.156862041790504 ], [ -96.326541220557488, 29.156188041317673 ], [ -96.326449220807945, 29.153149041378832 ], [ -96.326412220462856, 29.151489040725394 ], [ -96.326380220308891, 29.150018040010952 ], [ -96.32635821987742, 29.148757040503671 ], [ -96.326349219796413, 29.148243039970666 ], [ -96.326302220455503, 29.14642004016536 ], [ -96.326291220372354, 29.14599803991932 ], [ -96.326276220401539, 29.145425039592823 ], [ -96.326256219648073, 29.14468503904855 ], [ -96.32613722012627, 29.140198038882613 ], [ -96.326100219849309, 29.13880103805851 ], [ -96.326082219604004, 29.138143037863603 ], [ -96.326029219182189, 29.135846037526811 ], [ -96.325843219426361, 29.127834036140207 ], [ -96.3257362190501, 29.125089035723224 ], [ -96.325739219400731, 29.12489203550183 ], [ -96.325654218689067, 29.121465034376335 ], [ -96.325452218665916, 29.113362032991361 ], [ -96.325451218066718, 29.11330803268017 ], [ -96.3254172189408, 29.112032032293587 ], [ -96.325359218409446, 29.1098500325994 ], [ -96.325341217991181, 29.109159032377104 ], [ -96.325290218287265, 29.107272031899097 ], [ -96.3251702176197, 29.102788030969833 ], [ -96.32514421791204, 29.10181903100387 ], [ -96.325063217347662, 29.098792029837799 ], [ -96.317499216229706, 29.098961030440986 ], [ -96.31713021577103, 29.098969030052487 ], [ -96.316895215879697, 29.098972030262935 ], [ -96.316073215896822, 29.098984030217743 ], [ -96.308527213810081, 29.099136030771003 ], [ -96.302773212608486, 29.099252031137976 ], [ -96.301049212061926, 29.099283031072865 ], [ -96.291998209364294, 29.099447031633598 ], [ -96.281753206716388, 29.099692031631779 ], [ -96.275484205609771, 29.099794032197654 ], [ -96.26722020362034, 29.099972031740212 ], [ -96.258911200951388, 29.100150032135655 ], [ -96.258718200384422, 29.091637030818944 ], [ -96.258701200830387, 29.090942030861456 ], [ -96.258686200941085, 29.09031503052633 ], [ -96.258657200732301, 29.089109030062797 ], [ -96.258509200018935, 29.085579029418351 ], [ -96.258460199930241, 29.081888028474751 ], [ -96.258444200180051, 29.080927028825876 ], [ -96.258422200351191, 29.079885028240227 ], [ -96.258309199676702, 29.075772027306936 ], [ -96.258177199328188, 29.070955026138087 ], [ -96.258081199175493, 29.066982025294738 ], [ -96.258066199848756, 29.066330025578747 ], [ -96.257961199375288, 29.062017024770984 ], [ -96.257828199071611, 29.056494023668463 ], [ -96.257771199429314, 29.054527022923555 ], [ -96.257673199233025, 29.051165022531489 ], [ -96.257654198945588, 29.05052602257954 ], [ -96.257580199044611, 29.046521021439236 ], [ -96.257570198923631, 29.045941021319269 ], [ -96.257524198092895, 29.043418020842775 ], [ -96.257499198469034, 29.042069020493464 ], [ -96.257466197880646, 29.041958020323452 ], [ -96.257458198219695, 29.041494020626029 ], [ -96.257449198634802, 29.040913020087928 ], [ -96.257222197623008, 29.032026018458726 ], [ -96.257184198088808, 29.030527018205994 ], [ -96.257107197501881, 29.027488018032024 ], [ -96.257063197543957, 29.025773017243274 ], [ -96.256982197830396, 29.022603016328862 ], [ -96.256940196863752, 29.020954016648997 ], [ -96.256914196802612, 29.019942015802389 ], [ -96.256735196950046, 29.012914014244831 ], [ -96.256455196497967, 29.001503012099757 ], [ -96.256413195960477, 29.000527011964159 ], [ -96.256412196365801, 28.99966901221271 ], [ -96.256411196276389, 28.99916801212775 ], [ -96.256411195852493, 28.999070012234068 ], [ -96.257277196344958, 28.998642011367245 ], [ -96.257832196460384, 28.998395011276507 ], [ -96.257897196870942, 28.998213011426547 ], [ -96.257932196273345, 28.998115011964551 ], [ -96.257902196238987, 28.995564011395444 ], [ -96.257889195961255, 28.992381010086369 ], [ -96.257828196091836, 28.990023010021869 ], [ -96.25024919408807, 28.994041011066088 ], [ -96.240025191882879, 28.999665012384941 ], [ -96.238940191846439, 29.000262012361965 ], [ -96.238681191580326, 29.000401012949297 ], [ -96.238120192060563, 29.000701012322285 ], [ -96.235376191367962, 29.002157013414131 ], [ -96.232632190513357, 29.003613013572796 ], [ -96.231327190131864, 29.004306013438516 ], [ -96.230021190240336, 29.004999013427035 ], [ -96.229835189677488, 29.005098014238058 ], [ -96.229639189578222, 29.005236013541275 ], [ -96.229115189883842, 29.005535013600294 ], [ -96.228371189205262, 29.00596201375043 ], [ -96.226719189361589, 29.006835014100613 ], [ -96.218437187355676, 29.011215015643302 ], [ -96.213649185961586, 29.013747016374403 ], [ -96.207283184698056, 29.01711301713523 ], [ -96.198441182965809, 29.021788017998585 ], [ -96.192559180919375, 29.024961018951405 ], [ -96.191077180908792, 29.025738019600027 ], [ -96.190929180434239, 29.025816019770083 ], [ -96.185115179637037, 29.028855020247725 ], [ -96.185057179024369, 29.028885020466582 ], [ -96.176378177363205, 29.033475021456301 ], [ -96.17460817757771, 29.034416021280862 ], [ -96.174526176879183, 29.03446002127442 ], [ -96.171769176518367, 29.035928022402256 ], [ -96.169488175413761, 29.037150022781336 ], [ -96.165856175557067, 29.039095022614287 ], [ -96.157188172929878, 29.043737024196304 ], [ -96.157148173128846, 29.043759024559833 ], [ -96.15339817221269, 29.045663024617767 ], [ -96.153316172563876, 29.04570502437462 ], [ -96.149617171586272, 29.047708025239523 ], [ -96.149196171414999, 29.047936025460675 ], [ -96.147661171061927, 29.048799025642094 ], [ -96.14747617119933, 29.048910025450024 ], [ -96.14220416975941, 29.051634026624797 ], [ -96.139477169049854, 29.053082026574849 ], [ -96.13406216814596, 29.055926027784945 ], [ -96.133484167178679, 29.056231027481633 ], [ -96.133210167131452, 29.056375027425126 ], [ -96.125257165399404, 29.060552028563308 ], [ -96.120540164742735, 29.063149029122432 ], [ -96.119156163890892, 29.063911029823174 ], [ -96.119136164376968, 29.063921029325179 ], [ -96.119168164582348, 29.063968029755731 ], [ -96.11996416413578, 29.065068029573943 ], [ -96.120491164232618, 29.065738029872541 ], [ -96.12090916495778, 29.066347029870389 ], [ -96.121786165585547, 29.067957030131435 ], [ -96.12213916565328, 29.068682030316566 ], [ -96.12230416568589, 29.069268030273523 ], [ -96.12240316493866, 29.07002503108853 ], [ -96.122438165442816, 29.071766031342911 ], [ -96.122630165804708, 29.08001403242276 ], [ -96.122687165831209, 29.082364033002854 ], [ -96.122691166123559, 29.082516032818759 ], [ -96.122896166389069, 29.091453034604701 ], [ -96.122993166519947, 29.095713036110126 ], [ -96.123051166634255, 29.098261036573309 ], [ -96.123134167161254, 29.102162036992805 ], [ -96.123133166343806, 29.102196037497297 ], [ -96.123125166687046, 29.102744037663271 ], [ -96.123258167148052, 29.107954038073856 ], [ -96.123369167851251, 29.112453039095321 ], [ -96.123451167864346, 29.115752040273797 ], [ -96.123565167938963, 29.118634040706628 ], [ -96.123656168041038, 29.119037040584182 ], [ -96.124115168255159, 29.11984604056298 ], [ -96.12434316784281, 29.120248040642931 ], [ -96.124625168308469, 29.120555041400831 ], [ -96.124897167820009, 29.120812041246964 ], [ -96.125126168250034, 29.120982041139492 ], [ -96.125422168474728, 29.121187041479345 ], [ -96.125705168016069, 29.121339040899791 ], [ -96.126187168698621, 29.121561040904762 ], [ -96.126621168164846, 29.121702041200027 ], [ -96.126543168209636, 29.121889041342627 ], [ -96.12644716830556, 29.122012041629873 ], [ -96.128385169120222, 29.124666041336006 ], [ -96.130878169869206, 29.128080042007038 ], [ -96.133395170166338, 29.131474043215814 ], [ -96.133637170389349, 29.131808042970718 ], [ -96.135799171548953, 29.134795043292296 ], [ -96.13588617169124, 29.134916043928694 ], [ -96.136728172105123, 29.135998043797741 ], [ -96.1371181721819, 29.136498044029405 ], [ -96.139612173110322, 29.139878044465906 ], [ -96.139916172686242, 29.14029004495292 ], [ -96.140817173221151, 29.14147604513068 ], [ -96.14241417318685, 29.143679044687815 ], [ -96.145515174677755, 29.147885045781358 ], [ -96.147275174879113, 29.150249046407612 ], [ -96.150247176389129, 29.154242046791079 ], [ -96.155122177205484, 29.160892048361855 ], [ -96.155280177083327, 29.16086004863763 ], [ -96.155441177452786, 29.160827048632264 ], [ -96.159447178232213, 29.160767047641855 ], [ -96.160017178973149, 29.160756048078841 ], [ -96.160371178824647, 29.160750048289618 ], [ -96.160810179132881, 29.160742048425078 ], [ -96.161057179089354, 29.160644047886844 ], [ -96.161108178959751, 29.16017404815253 ], [ -96.161260178883879, 29.160067048312545 ], [ -96.161577179005249, 29.160017047665683 ], [ -96.166779180573428, 29.159919047508481 ], [ -96.167195180202967, 29.159911047472523 ], [ -96.169328180551474, 29.159869047352515 ], [ -96.177618183495142, 29.159707047171562 ], [ -96.179114183848881, 29.159681046843129 ], [ -96.181734184300836, 29.159615047313228 ], [ -96.183083184854127, 29.159581047317516 ], [ -96.184568184796035, 29.159543047446629 ], [ -96.184718184717042, 29.159542046689715 ], [ -96.185886184990935, 29.159534047263062 ], [ -96.188738186223759, 29.159497046539023 ], [ -96.191168186449985, 29.159457046401126 ], [ -96.192481186877799, 29.159436047101408 ], [ -96.19273918717046, 29.159432046793114 ], [ -96.194179186921389, 29.159434046975406 ], [ -96.196704187625343, 29.159395046991683 ], [ -96.198288188590027, 29.15937104624831 ], [ -96.19877318871616, 29.159363046822165 ], [ -96.200323188483381, 29.159339046141973 ], [ -96.20781819027539, 29.159167046484512 ], [ -96.210725191494873, 29.159100045647278 ], [ -96.211789191296745, 29.159088045866245 ], [ -96.212585192413783, 29.159074045897487 ], [ -96.21552619262134, 29.159033046198495 ], [ -96.215824192670866, 29.159028045674944 ], [ -96.216700192687895, 29.15901204574832 ], [ -96.218963193252875, 29.158973045652719 ], [ -96.22100319404224, 29.158921046041467 ], [ -96.224871194693591, 29.1588510458595 ], [ -96.226192195021923, 29.158827045386296 ], [ -96.227276195376689, 29.158807045511136 ], [ -96.229640196445018, 29.158754045725477 ], [ -96.229690195936428, 29.158753045683888 ], [ -96.235230197762959, 29.158628044950703 ], [ -96.236606198127234, 29.158608045112565 ], [ -96.238628198435649, 29.158578044832005 ], [ -96.240536198962602, 29.158546045089889 ], [ -96.243676200227199, 29.158494044850496 ], [ -96.243904199632325, 29.158490045064397 ], [ -96.244054199947016, 29.158487045126254 ], [ -96.245331200084735, 29.158466045230288 ], [ -96.246900200408689, 29.158441044984382 ], [ -96.248243200694532, 29.158419044418647 ], [ -96.25024120164322, 29.158350044994524 ], [ -96.251383201706588, 29.158365044901604 ], [ -96.252026202041876, 29.158347044189579 ], [ -96.254664202745417, 29.158294044904117 ], [ -96.256871203314333, 29.158258044706933 ], [ -96.258665203444806, 29.158229043970035 ], [ -96.260336204263297, 29.158201043904736 ], [ -96.2604132037185, 29.160772044746782 ], [ -96.260422204038306, 29.161337045335738 ], [ -96.260429203737203, 29.161743044856777 ], [ -96.260436203920733, 29.161826044864476 ], [ -96.260501204066074, 29.164731045274454 ], [ -96.260518204125518, 29.16547004539327 ], [ -96.260509204159519, 29.166386045743465 ], [ -96.260524203885993, 29.166927046085618 ], [ -96.260576204336076, 29.167861046210586 ], [ -96.260616204155085, 29.169587046716597 ], [ -96.260639204568022, 29.169964046421367 ], [ -96.260637204621972, 29.170426047044632 ], [ -96.260643204956807, 29.170623046668378 ], [ -96.260655204093283, 29.170982046512616 ], [ -96.260628204681694, 29.171420047028658 ], [ -96.260714204433839, 29.172732047659185 ], [ -96.260756204852129, 29.174640047554355 ], [ -96.260769205241075, 29.175547047554119 ], [ -96.260771204452553, 29.175612048234747 ], [ -96.260775204594438, 29.175844047474481 ], [ -96.26078220531295, 29.176310048067435 ], [ -96.260796205145766, 29.177181048296827 ], [ -96.260809205242424, 29.17769404854003 ], [ -96.260816204452908, 29.177968048649824 ], [ -96.260831205248408, 29.178527048428666 ], [ -96.260863205484853, 29.179663048490241 ], [ -96.260874205112032, 29.180053049057936 ], [ -96.260897205500683, 29.180857048643411 ], [ -96.260899204850546, 29.180921049228015 ], [ -96.260904205206714, 29.181046049151096 ], [ -96.260916204598345, 29.181366049003415 ], [ -96.260970205616744, 29.183482049361444 ], [ -96.261050205460506, 29.184805049718282 ], [ -96.261179205829862, 29.185543049515175 ], [ -96.26136620504613, 29.18606504998721 ], [ -96.261687205611082, 29.186648050065028 ], [ -96.261907205525404, 29.186971050316487 ], [ -96.262555205858661, 29.187776050049042 ], [ -96.262861206175998, 29.188155050324681 ], [ -96.263081206443459, 29.188428050127936 ], [ -96.263161205482035, 29.188527050741762 ], [ -96.263996206559113, 29.189562050632066 ], [ -96.264627206348223, 29.190336050530817 ], [ -96.265268206296383, 29.191155050949646 ], [ -96.265917206923547, 29.191945050783215 ], [ -96.266615207061776, 29.192812051079304 ], [ -96.267305207197495, 29.193588051603619 ], [ -96.26799720715573, 29.194444051265478 ], [ -96.268445207863081, 29.194990051617008 ], [ -96.268753207423103, 29.195343051468267 ], [ -96.268886208103439, 29.195502051216284 ], [ -96.269167207420395, 29.195837051677071 ], [ -96.26988520754314, 29.196741051713648 ], [ -96.270877207950292, 29.196125051884643 ], [ -96.27194320868405, 29.195433051072513 ], [ -96.272889208172089, 29.194788051039986 ], [ -96.273811208454887, 29.194211050906659 ], [ -96.274707209296736, 29.193647051494015 ], [ -96.275675209049055, 29.193075051067595 ], [ -96.276561209592927, 29.192515051018908 ], [ -96.277422209601625, 29.191981050320102 ], [ -96.277855209418576, 29.19170505069043 ], [ -96.278067209402806, 29.191541050925295 ], [ -96.278289210318036, 29.191351050631607 ], [ -96.278685210297283, 29.190962050223686 ], [ -96.27901620996613, 29.190520049909935 ], [ -96.279247210194114, 29.189967050016403 ], [ -96.279528209736455, 29.189479050469409 ], [ -96.279846210222686, 29.189122049990168 ], [ -96.280277209859534, 29.188727049772176 ], [ -96.280915210811244, 29.18832804988082 ], [ -96.281137210836349, 29.188189049527043 ], [ -96.282402211154789, 29.187399049490491 ], [ -96.283583211255035, 29.186631049569176 ], [ -96.285993211842026, 29.185162049114343 ], [ -96.286234211838533, 29.185014048844028 ], [ -96.286790211887933, 29.184661048979816 ], [ -96.286980211859444, 29.184540049196812 ], [ -96.287088211996291, 29.184470048486393 ], [ -96.287501211688962, 29.184209048903465 ], [ -96.288074212566613, 29.183846048219156 ], [ -96.2903992127045, 29.182370048661863 ], [ -96.291306212658284, 29.181795048496145 ], [ -96.292109212899348, 29.181301047713887 ], [ -96.292465212774616, 29.181082047573422 ], [ -96.293260213142872, 29.180593047427489 ], [ -96.29361021339281, 29.180378048096866 ], [ -96.293877213425091, 29.180213048050248 ], [ -96.294248212980733, 29.179985047799153 ], [ -96.295882213790605, 29.178978047235443 ], [ -96.296098214333853, 29.17883804705496 ], [ -96.296375213487295, 29.178658047528533 ], [ -96.296457214018616, 29.178605047060756 ], [ -96.296891213890092, 29.178328047344376 ], [ -96.297167214192598, 29.178157047172594 ], [ -96.297504214189885, 29.177944046856901 ], [ -96.298070214209829, 29.177587046819902 ], [ -96.298983214755978, 29.176987046771799 ], [ -96.299271214850194, 29.176801046583627 ], [ -96.300109214784669, 29.176262046298923 ], [ -96.300407215028471, 29.176087046551263 ], [ -96.300505214821769, 29.176029046263995 ], [ -96.300554214664999, 29.176000046544278 ], [ -96.300746214610612, 29.175885046844659 ], [ -96.300943214545541, 29.175768046974749 ], [ -96.301364215380175, 29.175517046365115 ], [ -96.301709214758375, 29.175298046702483 ], [ -96.30192421489113, 29.175162046168118 ], [ -96.30196021514891, 29.175139046551127 ], [ -96.302259215002152, 29.174951046113545 ], [ -96.302592214896407, 29.174741046313503 ], [ -96.30318121554707, 29.174368045958385 ], [ -96.303696215808898, 29.174050045647896 ], [ -96.303943215854744, 29.173896046001421 ], [ -96.304516215951168, 29.173543045667078 ], [ -96.305003215784623, 29.173243046185167 ], [ -96.305536215964153, 29.172914045987572 ], [ -96.306802216763387, 29.172125045906139 ], [ -96.307201216029199, 29.171878045822684 ], [ -96.307501216593693, 29.171694045346673 ], [ -96.310331217472481, 29.169959045293155 ], [ -96.310604217047512, 29.169756045255077 ], [ -96.311028217209909, 29.169567045137043 ], [ -96.311117216857994, 29.169544045057858 ], [ -96.311450217715162, 29.169460045278143 ], [ -96.311728217912702, 29.169352044775373 ], [ -96.311972217036654, 29.169213044839406 ], [ -96.312707217365599, 29.168757045124394 ], [ -96.313639217848106, 29.167985044306878 ], [ -96.313987218253843, 29.167719044875799 ], [ -96.314721217936494, 29.167233044336143 ], [ -96.31703521853116, 29.165776043678335 ], [ -96.321514220137999, 29.162966042899768 ], [ -96.323550219621509, 29.161676043018467 ], [ -96.326900220671774, 29.159574042341088 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 746, "Tract": "48481740300", "Area_SqMi": 20.202326907158554, "total_2009": 195, "total_2010": 559, "total_2011": 553, "total_2012": 618, "total_2013": 595, "total_2014": 622, "total_2015": 654, "total_2016": 833, "total_2017": 922, "total_2018": 874, "total_2019": 843, "total_2020": 888, "age1": 199, "age2": 354, "age3": 198, "earn1": 73, "earn2": 173, "earn3": 505, "naics_s01": 18, "naics_s02": 10, "naics_s03": 0, "naics_s04": 3, "naics_s05": 369, "naics_s06": 58, "naics_s07": 250, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 5, "naics_s12": 0, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 7, "naics_s19": 28, "naics_s20": 0, "race1": 593, "race2": 100, "race3": 7, "race4": 39, "race5": 0, "race6": 12, "ethnicity1": 406, "ethnicity2": 345, "edu1": 159, "edu2": 160, "edu3": 155, "edu4": 78, "Shape_Length": 124800.21563762336, "Shape_Area": 563206297.54351497, "total_2021": 742, "total_2022": 751 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.217111198796161, 29.28792007245994 ], [ -96.216037198648181, 29.287592072312549 ], [ -96.209254196723862, 29.285539072055101 ], [ -96.208229195936838, 29.285227071876321 ], [ -96.20448719541146, 29.284086071990867 ], [ -96.20365919495157, 29.283840071899018 ], [ -96.201473194690649, 29.28319007151326 ], [ -96.202473194112471, 29.280577070939614 ], [ -96.202419194227218, 29.280577071002028 ], [ -96.202205194675713, 29.280560071384095 ], [ -96.201930194713441, 29.280500070847399 ], [ -96.201679194701455, 29.280489071598225 ], [ -96.201585194628748, 29.280500071197913 ], [ -96.201497194232502, 29.280527071191489 ], [ -96.201353194591945, 29.280610070878232 ], [ -96.201221193942501, 29.28073107079792 ], [ -96.201071193735459, 29.280912070924966 ], [ -96.200864194205209, 29.281077071433153 ], [ -96.200757193937008, 29.281187071460131 ], [ -96.200419193875419, 29.281423071578079 ], [ -96.200155194091451, 29.281665071343859 ], [ -96.200024194066316, 29.281830071128965 ], [ -96.199823193908557, 29.282001071817092 ], [ -96.199748193609722, 29.282088071839038 ], [ -96.199622193498044, 29.282248071229088 ], [ -96.199585193558164, 29.282341071495967 ], [ -96.199510194323722, 29.28245707129981 ], [ -96.199434193610756, 29.28256107189851 ], [ -96.199340193826004, 29.282655072102816 ], [ -96.199209194059947, 29.282748071433836 ], [ -96.199171193752235, 29.282754071678248 ], [ -96.199039193440342, 29.282748072031566 ], [ -96.198970193790799, 29.282732071587148 ], [ -96.198914193478842, 29.282693071994828 ], [ -96.198857193347038, 29.282671071328046 ], [ -96.198751193449127, 29.28267707209276 ], [ -96.198644193480817, 29.282715071692724 ], [ -96.198544193997733, 29.282792071606085 ], [ -96.198500193545343, 29.282864071342949 ], [ -96.198425193928642, 29.283084072127782 ], [ -96.198318193512776, 29.28324807161956 ], [ -96.198099193167792, 29.283474072182464 ], [ -96.198017193392488, 29.283534071571026 ], [ -96.197741192976466, 29.283677072368757 ], [ -96.197535193153442, 29.283837072344514 ], [ -96.197472193000209, 29.283897071679906 ], [ -96.197422193505759, 29.283963071935826 ], [ -96.197259193227396, 29.284210072124196 ], [ -96.197221193015579, 29.284238072214571 ], [ -96.197139193316744, 29.284260072465369 ], [ -96.196995193463309, 29.284260071744438 ], [ -96.196832192775588, 29.284243072182235 ], [ -96.196707192859535, 29.284249071879305 ], [ -96.196613193037322, 29.28430407244791 ], [ -96.196531193336781, 29.28438607224221 ], [ -96.196506193393901, 29.284447072037871 ], [ -96.196444193363263, 29.284942072330779 ], [ -96.196387193415262, 29.285090072485634 ], [ -96.196318193584915, 29.28515007244663 ], [ -96.196274192688122, 29.285183071890881 ], [ -96.196155193311213, 29.285227072197515 ], [ -96.196055192894576, 29.285233072440164 ], [ -96.195948193198248, 29.285222072485062 ], [ -96.195666193482097, 29.285167072151246 ], [ -96.195434192642352, 29.285096071915586 ], [ -96.195284193114603, 29.285079072186644 ], [ -96.195183193186409, 29.285090072712151 ], [ -96.1951521923896, 29.28510707255337 ], [ -96.195121192369712, 29.285140072444026 ], [ -96.194851192880193, 29.28562307283692 ], [ -96.194713193028889, 29.285794072375261 ], [ -96.194606192302956, 29.285887072947808 ], [ -96.194487192483905, 29.285948072787303 ], [ -96.194312192274978, 29.285992072312634 ], [ -96.194136193074996, 29.285997072664461 ], [ -96.193998192979748, 29.285992072831327 ], [ -96.193848192923596, 29.286008072547663 ], [ -96.193540192620247, 29.286157072524595 ], [ -96.192989192602369, 29.286267072459047 ], [ -96.192857192002904, 29.286338072242408 ], [ -96.192700192374204, 29.286547072894148 ], [ -96.192537191832656, 29.286706073165803 ], [ -96.192243191673612, 29.286822073215554 ], [ -96.191879191983801, 29.286915072368991 ], [ -96.191716192000499, 29.286970072727666 ], [ -96.191572191926397, 29.287113072915634 ], [ -96.191553192387047, 29.287124072459459 ], [ -96.19146519163715, 29.287174072760326 ], [ -96.191415192130208, 29.287179072642662 ], [ -96.191365191711853, 29.287174072795636 ], [ -96.191114192384831, 29.286981072972331 ], [ -96.191020191519513, 29.286959073214781 ], [ -96.190850191464051, 29.286937073056659 ], [ -96.190274191598974, 29.286998073110148 ], [ -96.190016191164744, 29.287047072619441 ], [ -96.189797192003724, 29.28706407280615 ], [ -96.189741191134772, 29.287080072637472 ], [ -96.189697191393918, 29.287097072644187 ], [ -96.189565191762483, 29.287185072977305 ], [ -96.189440191334143, 29.287366072789915 ], [ -96.189377191354396, 29.287426072935737 ], [ -96.189245191224003, 29.287520073311246 ], [ -96.189164191770772, 29.287547072969836 ], [ -96.188963191368757, 29.287558073472535 ], [ -96.188806191245263, 29.287536073021545 ], [ -96.18863719170173, 29.287454073105284 ], [ -96.188461191033554, 29.287388072569723 ], [ -96.188248191191519, 29.28737707316391 ], [ -96.187997191521731, 29.287377072640282 ], [ -96.187860191020917, 29.287399072941721 ], [ -96.187784191044656, 29.287432072836072 ], [ -96.18764619066738, 29.287542073376787 ], [ -96.187483191095893, 29.287773072902983 ], [ -96.187395190857174, 29.287866073164977 ], [ -96.18734519062734, 29.287905073562314 ], [ -96.187176191298079, 29.287943073597813 ], [ -96.187107190396233, 29.287943073415413 ], [ -96.187000190372146, 29.287960073421186 ], [ -96.186950190556473, 29.287992073261428 ], [ -96.186900190629046, 29.288047073563344 ], [ -96.186762190621792, 29.288262073230523 ], [ -96.186668191189071, 29.288350073460062 ], [ -96.186593190571912, 29.288388073315108 ], [ -96.186436190662477, 29.288416073111105 ], [ -96.186235190950413, 29.288311073394656 ], [ -96.186054190383317, 29.288102072917173 ], [ -96.185960190417958, 29.28804707303755 ], [ -96.185916190230614, 29.288042073186265 ], [ -96.185859190824672, 29.288047073145261 ], [ -96.185702190529398, 29.288091073031051 ], [ -96.185514190411155, 29.288190073603712 ], [ -96.185458190916975, 29.288229073081901 ], [ -96.185307190222062, 29.288284073414772 ], [ -96.185006189976349, 29.2882620731726 ], [ -96.18486219081116, 29.288196073539641 ], [ -96.184555190434551, 29.287954073084965 ], [ -96.184455190463211, 29.287910073406849 ], [ -96.184179190307248, 29.287855073489521 ], [ -96.184047190082055, 29.287915073076885 ], [ -96.18394018990189, 29.288031073047065 ], [ -96.18380218963992, 29.288141073319277 ], [ -96.183627189967254, 29.288185073443291 ], [ -96.183495189785447, 29.28819007366252 ], [ -96.183439189884524, 29.288179073768664 ], [ -96.183376190410129, 29.288157073394753 ], [ -96.183307190231659, 29.288102073329046 ], [ -96.183157190407627, 29.287915073114707 ], [ -96.18295019036546, 29.287745073049344 ], [ -96.182868189627357, 29.287695072857517 ], [ -96.182824189329963, 29.287679073110588 ], [ -96.182486189832701, 29.287706072999509 ], [ -96.182222189721344, 29.287750073113472 ], [ -96.18210318925, 29.2877340736093 ], [ -96.181884190098486, 29.287657073153721 ], [ -96.181758189795218, 29.287547073117612 ], [ -96.181614189312015, 29.287443072962255 ], [ -96.181269189179716, 29.287162073488492 ], [ -96.1812001889313, 29.287118072962734 ], [ -96.181069189825166, 29.287058073470476 ], [ -96.180893189222004, 29.287030073294869 ], [ -96.180674189206684, 29.287019073039335 ], [ -96.180254188774356, 29.286931073324556 ], [ -96.179940189047642, 29.286810073041501 ], [ -96.179714189319768, 29.286766072794826 ], [ -96.179608188732644, 29.286750073328804 ], [ -96.179463188590475, 29.286755073531271 ], [ -96.179244189244542, 29.286755073413062 ], [ -96.179087188631897, 29.286739073547086 ], [ -96.1789871884028, 29.286678073141395 ], [ -96.178774188775208, 29.286343072739541 ], [ -96.178686188291266, 29.286183073351332 ], [ -96.178636188374796, 29.286030073056615 ], [ -96.178623189059323, 29.285535073257314 ], [ -96.17859818815883, 29.285062072738636 ], [ -96.178724189007141, 29.284386072978521 ], [ -96.178931188461277, 29.283935072818064 ], [ -96.179081189023336, 29.283726072438384 ], [ -96.179163188493305, 29.283572072263773 ], [ -96.179219188261911, 29.283424072220122 ], [ -96.179244188715032, 29.283270072356984 ], [ -96.179244188351248, 29.283177072860525 ], [ -96.179207189190507, 29.282995072362613 ], [ -96.179019188280392, 29.282748071919688 ], [ -96.178680188195088, 29.282429072277232 ], [ -96.178486188850343, 29.282259072612213 ], [ -96.178241188853193, 29.282000072063205 ], [ -96.178198188385338, 29.281874072317116 ], [ -96.178204188119523, 29.281747072131861 ], [ -96.17822318862477, 29.281654072046223 ], [ -96.178342187986345, 29.281440072441455 ], [ -96.178404187945944, 29.281247072252111 ], [ -96.178473188072019, 29.281132072492433 ], [ -96.178517188591556, 29.28107107163358 ], [ -96.178568188846427, 29.281033072259369 ], [ -96.178655188098219, 29.280983071854052 ], [ -96.178756188871347, 29.280956072065351 ], [ -96.17880618900989, 29.28092807193228 ], [ -96.178837188686927, 29.280879072010098 ], [ -96.178843188730283, 29.280786072135502 ], [ -96.178831188184191, 29.280747072175952 ], [ -96.178605188110694, 29.280445071531496 ], [ -96.178474188589604, 29.280313071901944 ], [ -96.178423188095053, 29.280247071900664 ], [ -96.17839218808129, 29.280170071907222 ], [ -96.178392188421498, 29.280054071823479 ], [ -96.178417188559962, 29.279988072163142 ], [ -96.178455188579349, 29.279923071391334 ], [ -96.178561187920195, 29.279818071509336 ], [ -96.178612188103216, 29.27969207199229 ], [ -96.178612188080223, 29.279538071307684 ], [ -96.178593188233805, 29.279488071480991 ], [ -96.178561188022783, 29.279450071772676 ], [ -96.178499188854801, 29.279411071873941 ], [ -96.178323188349083, 29.27932907179936 ], [ -96.177847188507187, 29.279241072147236 ], [ -96.177765188124724, 29.279208071453706 ], [ -96.177665188296643, 29.279153072016861 ], [ -96.177627188045633, 29.279109071986689 ], [ -96.177508187797073, 29.27890507157451 ], [ -96.177452188502457, 29.278730071284588 ], [ -96.177445187902947, 29.278636071508945 ], [ -96.177458188075079, 29.278537071387227 ], [ -96.177508187681966, 29.278389071346432 ], [ -96.177521187555357, 29.278301071908952 ], [ -96.177577188403291, 29.278081071524998 ], [ -96.177590188245517, 29.277927071499118 ], [ -96.177521188448111, 29.276899071291943 ], [ -96.177502188045864, 29.276800070847838 ], [ -96.177446187970062, 29.27669607137674 ], [ -96.17739618834554, 29.276547071449961 ], [ -96.177114188224749, 29.27609107141658 ], [ -96.177063187742618, 29.275954070775107 ], [ -96.177045187560537, 29.275855070652607 ], [ -96.17705118793144, 29.27577807089493 ], [ -96.177101187842268, 29.275646071094819 ], [ -96.177151187638955, 29.275613071280905 ], [ -96.177415187437447, 29.275360071102874 ], [ -96.177640187893715, 29.275041071258979 ], [ -96.17766518818128, 29.274986070611845 ], [ -96.177672187683484, 29.274948070996128 ], [ -96.177665188169371, 29.274854071206835 ], [ -96.177427187925502, 29.274228070389249 ], [ -96.177365187950585, 29.273925070987534 ], [ -96.177264187334856, 29.273167070717957 ], [ -96.177220187895045, 29.272989070292095 ], [ -96.177189187727706, 29.272864070403575 ], [ -96.177133187837867, 29.272771070503243 ], [ -96.177070187433245, 29.272573069984364 ], [ -96.177001187791447, 29.27244707071949 ], [ -96.176926187510958, 29.272304070558327 ], [ -96.176888187512077, 29.272122070363245 ], [ -96.176788187236454, 29.271864070509928 ], [ -96.176776187329267, 29.271704070617339 ], [ -96.176782187701036, 29.271611069798979 ], [ -96.176895187141398, 29.271193070205843 ], [ -96.176907187290269, 29.270990070148713 ], [ -96.176901187791401, 29.270842069881628 ], [ -96.176870187371392, 29.270748070053408 ], [ -96.176475187348785, 29.270215069824843 ], [ -96.176331187495336, 29.270127069564097 ], [ -96.176193187869046, 29.270066069777105 ], [ -96.176042187082942, 29.270055069454873 ], [ -96.175892187641836, 29.270072070320744 ], [ -96.175522186846464, 29.270149070179812 ], [ -96.17527118725944, 29.270182069530328 ], [ -96.175139187400219, 29.270176070231585 ], [ -96.175077187239708, 29.270160070023099 ], [ -96.174964187545186, 29.270099069605468 ], [ -96.174030186732125, 29.269209069454128 ], [ -96.173767186664222, 29.268923069661756 ], [ -96.173572186238289, 29.268730069798725 ], [ -96.173566186541052, 29.2685820692292 ], [ -96.173579186403899, 29.268521069981905 ], [ -96.173654186357467, 29.268390069634165 ], [ -96.173673186940619, 29.268340069208392 ], [ -96.17367918716235, 29.268285070018973 ], [ -96.173673186307894, 29.268137069423943 ], [ -96.173597186768873, 29.26796106997709 ], [ -96.173472186844577, 29.267878069660842 ], [ -96.173359186777915, 29.267823069080716 ], [ -96.173121186735656, 29.26775206943983 ], [ -96.173040186625613, 29.267735069769461 ], [ -96.172989186965196, 29.267713069384214 ], [ -96.172933186102227, 29.267642069847486 ], [ -96.172839185989275, 29.267455069386077 ], [ -96.172801186370307, 29.267257069381991 ], [ -96.17260118624155, 29.266960069724952 ], [ -96.172450186425138, 29.266806069348924 ], [ -96.172350186719171, 29.266735068980527 ], [ -96.172200186217864, 29.266674069461885 ], [ -96.172087186581123, 29.266641069216313 ], [ -96.171993186685171, 29.266625069467189 ], [ -96.170940186029483, 29.266674069538951 ], [ -96.170037186080634, 29.266647069701534 ], [ -96.169717185573703, 29.26666906914711 ], [ -96.16957318568663, 29.266712069145296 ], [ -96.16947318571934, 29.26675106938611 ], [ -96.16924718498683, 29.266905069753996 ], [ -96.169184185782541, 29.266927069726279 ], [ -96.169034185375082, 29.266932069213627 ], [ -96.168902185259014, 29.266883069794737 ], [ -96.168858185563636, 29.266855069789134 ], [ -96.168708185793136, 29.26670106913431 ], [ -96.168313184852479, 29.266064069638581 ], [ -96.16825718518642, 29.265899068985401 ], [ -96.168213185173158, 29.265717069255349 ], [ -96.168188184841625, 29.265514069012461 ], [ -96.16808118558771, 29.265354069586699 ], [ -96.167705185502641, 29.264871069372184 ], [ -96.167555184734795, 29.264634068897305 ], [ -96.167292184680761, 29.264112068512421 ], [ -96.167022184435922, 29.263793068798748 ], [ -96.166759184980137, 29.263562068840759 ], [ -96.166652185051788, 29.263436068618041 ], [ -96.166521184928328, 29.263315068634405 ], [ -96.166364184313267, 29.263210068576132 ], [ -96.166195184938175, 29.263078068746335 ], [ -96.166120184828188, 29.262996068718284 ], [ -96.166032184417759, 29.262820068491735 ], [ -96.165963184001612, 29.262727068764629 ], [ -96.165888184217067, 29.262562068379598 ], [ -96.165838184245672, 29.262226068682153 ], [ -96.165725184874901, 29.261886068182488 ], [ -96.165549184351434, 29.261512068236147 ], [ -96.16549918449482, 29.261264068014409 ], [ -96.165481184074721, 29.261105068073856 ], [ -96.165506184496451, 29.260924068172145 ], [ -96.165493183875924, 29.260676068245346 ], [ -96.165531184274613, 29.26055006862105 ], [ -96.165531184769478, 29.260406067829866 ], [ -96.165531183869774, 29.260379068675526 ], [ -96.165495184698798, 29.260190068576104 ], [ -96.163674183822181, 29.261313068599851 ], [ -96.163590184136012, 29.261365068948777 ], [ -96.161938183325134, 29.262392068816126 ], [ -96.160686182794663, 29.263169069285155 ], [ -96.160198182763963, 29.263472069357121 ], [ -96.158880182298645, 29.264291069561708 ], [ -96.157519182054457, 29.265135069231558 ], [ -96.155769182402082, 29.266220069779035 ], [ -96.152577181690575, 29.26819907048564 ], [ -96.151374181431962, 29.268945070606222 ], [ -96.149645180372829, 29.27002207096649 ], [ -96.144234179236832, 29.273384071513252 ], [ -96.140635178142787, 29.275605071869325 ], [ -96.139347177823481, 29.276400071920769 ], [ -96.136991177881825, 29.277871072897565 ], [ -96.136640177820411, 29.278124072503431 ], [ -96.136108177956658, 29.278569073287276 ], [ -96.135670177401224, 29.279039072651294 ], [ -96.13542117752759, 29.279324073269805 ], [ -96.13507917700737, 29.27982207317439 ], [ -96.134522177624874, 29.279932073509219 ], [ -96.134092177119172, 29.280038073575597 ], [ -96.133717176698482, 29.280151073310861 ], [ -96.133439176763147, 29.280253072912465 ], [ -96.131935177121534, 29.280968073654812 ], [ -96.129570176275507, 29.282438074002798 ], [ -96.129483175897022, 29.282492073879087 ], [ -96.128151175381902, 29.283321074027938 ], [ -96.1254331749344, 29.285011074542687 ], [ -96.122820175003383, 29.28666107468613 ], [ -96.122451174313539, 29.286884075376445 ], [ -96.121487173912328, 29.287472074797346 ], [ -96.11831917366186, 29.289399076074542 ], [ -96.11519217287227, 29.29130207588965 ], [ -96.114948172913614, 29.291512076335255 ], [ -96.114651172385109, 29.291748076304536 ], [ -96.114181172670712, 29.292121076270107 ], [ -96.113683172364119, 29.292686076116265 ], [ -96.113211172325194, 29.293379076925881 ], [ -96.112720172263153, 29.294020077075288 ], [ -96.111634171779627, 29.295478077282546 ], [ -96.111093171596835, 29.296205077664226 ], [ -96.109466171520481, 29.298327078013635 ], [ -96.109302171384059, 29.298541077486064 ], [ -96.108630171984032, 29.299360077710546 ], [ -96.107939171350168, 29.300224078602444 ], [ -96.1074831710376, 29.300746078155001 ], [ -96.107226171295721, 29.301041078362509 ], [ -96.107185171386618, 29.301092078532349 ], [ -96.106187170687505, 29.302329078569429 ], [ -96.105137170895958, 29.303728078956429 ], [ -96.104862171198505, 29.304094079443864 ], [ -96.104514170658646, 29.304523079203825 ], [ -96.10429417016914, 29.304964079300962 ], [ -96.104044170988701, 29.30576707960838 ], [ -96.103700171087169, 29.30844108053865 ], [ -96.103682170823305, 29.308579080055413 ], [ -96.103669171111818, 29.308679080591631 ], [ -96.103639171067698, 29.308910080156444 ], [ -96.103590171087532, 29.309291080060429 ], [ -96.103483170418613, 29.310356080243675 ], [ -96.103498171154584, 29.310506080439001 ], [ -96.10339717066222, 29.310781080585087 ], [ -96.103060170857432, 29.311706080868927 ], [ -96.102683170522539, 29.312662081327673 ], [ -96.102342170944652, 29.313496080971625 ], [ -96.102006170346399, 29.31431608170773 ], [ -96.101854170729396, 29.314687081206976 ], [ -96.101323170550359, 29.315086081325326 ], [ -96.101183170635963, 29.315277081930024 ], [ -96.100863169928544, 29.316073081871231 ], [ -96.100771170094049, 29.316302081802281 ], [ -96.100715170221235, 29.316441081976119 ], [ -96.100340170285307, 29.31734308208631 ], [ -96.100302170339418, 29.317479082244475 ], [ -96.100011170331271, 29.318198081975108 ], [ -96.099766170341397, 29.31880308242372 ], [ -96.099635170088362, 29.319104082170778 ], [ -96.099595169662663, 29.319194082167691 ], [ -96.09951716968807, 29.319401082494288 ], [ -96.09932217015411, 29.319917083011724 ], [ -96.099887170117512, 29.320094082271201 ], [ -96.10033516981143, 29.320235082658698 ], [ -96.100446169995379, 29.320270082207713 ], [ -96.101074170272781, 29.320486082702317 ], [ -96.10216017101844, 29.320813082662479 ], [ -96.10261517042467, 29.320951082637396 ], [ -96.102769171095545, 29.320999082564853 ], [ -96.103502170898096, 29.321223082835449 ], [ -96.103813171539002, 29.321318083175186 ], [ -96.105488171819303, 29.321821083228201 ], [ -96.106546172363878, 29.322077083223927 ], [ -96.107302172647479, 29.322094083089077 ], [ -96.10773917236493, 29.322126082625008 ], [ -96.10859817270871, 29.322189082625467 ], [ -96.111108173052259, 29.322929082897538 ], [ -96.11176817306206, 29.323124082652566 ], [ -96.112067173722124, 29.323212082988423 ], [ -96.11268217387537, 29.323419082495182 ], [ -96.11342417369751, 29.323669083129875 ], [ -96.114079174262429, 29.323886082864949 ], [ -96.114422173964826, 29.323974082655813 ], [ -96.114657174210436, 29.32403508285763 ], [ -96.11545517443993, 29.324257083256601 ], [ -96.120534176134285, 29.325856083275706 ], [ -96.12126717551277, 29.326077083290791 ], [ -96.121502176356543, 29.32614808275677 ], [ -96.122186175785842, 29.326355082840298 ], [ -96.125429176510735, 29.327434083677435 ], [ -96.126422176779926, 29.327867083061484 ], [ -96.126790177009823, 29.328071083102543 ], [ -96.127050177531203, 29.328216083338045 ], [ -96.129556177903197, 29.329851084000865 ], [ -96.129951177825589, 29.330086083788064 ], [ -96.130335177908137, 29.330331083838988 ], [ -96.130760178119658, 29.330538083632398 ], [ -96.131248178575063, 29.330740084074911 ], [ -96.131836178266553, 29.330926083846823 ], [ -96.132221178735122, 29.331027084036371 ], [ -96.132812179176156, 29.331141084157398 ], [ -96.140184181106378, 29.332700084178306 ], [ -96.146297182749706, 29.334033084315411 ], [ -96.146639182306657, 29.334163083959684 ], [ -96.147046182300315, 29.33439608429174 ], [ -96.148567183648382, 29.335577084336649 ], [ -96.148880183369187, 29.335820084460583 ], [ -96.148950182824152, 29.335714084269309 ], [ -96.149361183472365, 29.334660083908989 ], [ -96.14970418346239, 29.333780083741459 ], [ -96.150225183415671, 29.332400083399772 ], [ -96.150533183286583, 29.331554083073748 ], [ -96.150928183537772, 29.330537083324796 ], [ -96.151205183601533, 29.329938082846379 ], [ -96.15156918395644, 29.32889908233458 ], [ -96.151990183763914, 29.327910082939827 ], [ -96.152097183448234, 29.327547082390613 ], [ -96.152461183765936, 29.326619081808747 ], [ -96.152668183806114, 29.326041082270152 ], [ -96.153114184306503, 29.324893082242667 ], [ -96.153271183554821, 29.324453081323139 ], [ -96.153396184267805, 29.324178082027601 ], [ -96.153716184278821, 29.323326081845941 ], [ -96.154137184519428, 29.322277081103213 ], [ -96.154156183999092, 29.322167081464578 ], [ -96.154144183900414, 29.322101081354258 ], [ -96.154106184260215, 29.322040081188526 ], [ -96.154037184239016, 29.32196908165389 ], [ -96.15393718409878, 29.321892081149596 ], [ -96.153711184237579, 29.321826081334862 ], [ -96.153617183489217, 29.321738081514361 ], [ -96.153542183973798, 29.32164408135586 ], [ -96.153535183466133, 29.321468080784218 ], [ -96.153491183413976, 29.321386081074557 ], [ -96.153410184115216, 29.3213360810363 ], [ -96.153310183746484, 29.321325081443209 ], [ -96.153203183568493, 29.321336080921267 ], [ -96.153052183700581, 29.321430080846412 ], [ -96.152927183383071, 29.321490080886438 ], [ -96.152858184101419, 29.32149008155805 ], [ -96.152820184155544, 29.321463081315056 ], [ -96.152795183159796, 29.321397080721432 ], [ -96.152802183124095, 29.321331081551907 ], [ -96.152745184014393, 29.321298080740188 ], [ -96.152651183785892, 29.321320080786411 ], [ -96.152526183279534, 29.32132508151766 ], [ -96.152444183416861, 29.321276081252826 ], [ -96.152444183508976, 29.321226080828989 ], [ -96.152406183139348, 29.32111108125471 ], [ -96.152306183352692, 29.321056080862164 ], [ -96.15204918364158, 29.321072081465122 ], [ -96.151961183045728, 29.321039081076091 ], [ -96.151836183704972, 29.320951080751353 ], [ -96.151698183222635, 29.320814081285501 ], [ -96.151497183436106, 29.320649080687179 ], [ -96.151453183536972, 29.320594081054505 ], [ -96.151422183473116, 29.320434080657787 ], [ -96.151422183712356, 29.320346080533554 ], [ -96.151359183264532, 29.320203081234418 ], [ -96.151347183235302, 29.320148080602902 ], [ -96.151378183151678, 29.319714080564975 ], [ -96.151335182686324, 29.31965408113906 ], [ -96.150814183049121, 29.319593080558992 ], [ -96.150751183200441, 29.319577080854881 ], [ -96.150541182789638, 29.31938108039089 ], [ -96.150500183044556, 29.319343080575401 ], [ -96.151205183078773, 29.318793080668744 ], [ -96.153006183694075, 29.317594080489215 ], [ -96.153552183519636, 29.317356080000376 ], [ -96.15410618354683, 29.317047080135282 ], [ -96.155432183661901, 29.316664080055805 ], [ -96.156000184640547, 29.316587080461002 ], [ -96.156139184683212, 29.31658608010888 ], [ -96.157769184669689, 29.316569079723813 ], [ -96.158920184732395, 29.316613079501131 ], [ -96.160799185095541, 29.316799080188403 ], [ -96.162402185453317, 29.316851080116404 ], [ -96.163620186629416, 29.316823079781749 ], [ -96.165877187022275, 29.316771079744189 ], [ -96.167069187322511, 29.316738079320245 ], [ -96.167823187477737, 29.3166680800908 ], [ -96.170244188025436, 29.316260079814281 ], [ -96.170557187487574, 29.316174079828997 ], [ -96.171903187902288, 29.316019079088402 ], [ -96.172888188162332, 29.315972079704519 ], [ -96.174611188827527, 29.316055079516762 ], [ -96.175183189138792, 29.316007079622587 ], [ -96.175663189039795, 29.316054079489938 ], [ -96.176896189824333, 29.316080079461766 ], [ -96.177756189950927, 29.316022079177241 ], [ -96.17918618999397, 29.316157079462613 ], [ -96.179616190521287, 29.316363079454153 ], [ -96.180568191014984, 29.317103079573041 ], [ -96.180964190401355, 29.317517079690933 ], [ -96.181703191304408, 29.31842707962133 ], [ -96.18208719068133, 29.318801079409333 ], [ -96.182759190856473, 29.319274079920003 ], [ -96.183164191026052, 29.319681079447285 ], [ -96.18351019139422, 29.320413079858632 ], [ -96.183646191342277, 29.321014079974415 ], [ -96.183646191912999, 29.321331079756806 ], [ -96.183259190968798, 29.322804080213576 ], [ -96.183075191384631, 29.323909080965912 ], [ -96.182836190936712, 29.324560080757514 ], [ -96.182649191129201, 29.325263080770611 ], [ -96.182549191008775, 29.325833080612792 ], [ -96.182511191824091, 29.32648108154369 ], [ -96.182620191451306, 29.327123081097884 ], [ -96.182739191218261, 29.327430081684398 ], [ -96.182993191188714, 29.327883081892917 ], [ -96.183377192142999, 29.328394081495155 ], [ -96.18451219189626, 29.329279082135852 ], [ -96.184678191766039, 29.329484082108426 ], [ -96.186308192560602, 29.330695081824548 ], [ -96.186588193063656, 29.330957081653686 ], [ -96.187270192872759, 29.331422081855365 ], [ -96.188014192993165, 29.331805081745824 ], [ -96.188586193616814, 29.332216082605886 ], [ -96.188913193341861, 29.33262708262129 ], [ -96.189561193220797, 29.333127082731565 ], [ -96.190493193799256, 29.334135082169741 ], [ -96.191699193660128, 29.334816082636941 ], [ -96.19228819397118, 29.334960082912826 ], [ -96.193559194698267, 29.334908082218774 ], [ -96.19507719522214, 29.334922082326493 ], [ -96.19584519504572, 29.335050082631462 ], [ -96.196670194845552, 29.335269082880334 ], [ -96.197503195643677, 29.335722082869427 ], [ -96.197948195877274, 29.336037082236082 ], [ -96.198182195793805, 29.336135082373229 ], [ -96.198302196303885, 29.335955082605192 ], [ -96.198713196136779, 29.335337082428023 ], [ -96.199261196048795, 29.334653082027391 ], [ -96.199575196154498, 29.334329081983899 ], [ -96.200298196233419, 29.333725082305634 ], [ -96.200933196128616, 29.333256082000108 ], [ -96.205512197472927, 29.329838081484944 ], [ -96.205649197044693, 29.329267081283227 ], [ -96.201360195764934, 29.327778081074221 ], [ -96.20130619580884, 29.32772008091947 ], [ -96.201292195917475, 29.32763208058595 ], [ -96.201285195997912, 29.327586081217877 ], [ -96.201330196287941, 29.327433081193814 ], [ -96.204531197073138, 29.3192530794013 ], [ -96.206371196510588, 29.314550078287024 ], [ -96.206496196916305, 29.314228077485559 ], [ -96.206684196643565, 29.313749077701196 ], [ -96.207274197459256, 29.31228007783988 ], [ -96.208041197474145, 29.310370077489942 ], [ -96.20931719747594, 29.307191076769907 ], [ -96.209675196988201, 29.30731207650495 ], [ -96.210866197758335, 29.304323075313409 ], [ -96.211716197932773, 29.302093074902288 ], [ -96.2125891973932, 29.299800074328818 ], [ -96.21431519850799, 29.295271074069131 ], [ -96.214506197720212, 29.294770073490426 ], [ -96.215632198241735, 29.291809072725496 ], [ -96.217111198796161, 29.28792007245994 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 747, "Tract": "48481741100", "Area_SqMi": 289.46320856371693, "total_2009": 411, "total_2010": 410, "total_2011": 434, "total_2012": 537, "total_2013": 505, "total_2014": 573, "total_2015": 519, "total_2016": 422, "total_2017": 431, "total_2018": 528, "total_2019": 459, "total_2020": 532, "age1": 80, "age2": 252, "age3": 155, "earn1": 69, "earn2": 142, "earn3": 276, "naics_s01": 57, "naics_s02": 96, "naics_s03": 0, "naics_s04": 97, "naics_s05": 2, "naics_s06": 2, "naics_s07": 26, "naics_s08": 22, "naics_s09": 0, "naics_s10": 74, "naics_s11": 20, "naics_s12": 1, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 65, "naics_s17": 0, "naics_s18": 3, "naics_s19": 7, "naics_s20": 6, "race1": 443, "race2": 30, "race3": 4, "race4": 6, "race5": 1, "race6": 3, "ethnicity1": 302, "ethnicity2": 185, "edu1": 118, "edu2": 119, "edu3": 121, "edu4": 49, "Shape_Length": 451242.33652117639, "Shape_Area": 8069738833.5236588, "total_2021": 449, "total_2022": 487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.640083303732538, 29.247936049748308 ], [ -96.640322304110697, 29.247809050304181 ], [ -96.638552303328495, 29.24623104955322 ], [ -96.637534303069174, 29.245324049832863 ], [ -96.634513302498334, 29.242630049508463 ], [ -96.633838302263598, 29.242028048834229 ], [ -96.63276930123196, 29.241075048733197 ], [ -96.632411301482819, 29.240755048736673 ], [ -96.625258299592105, 29.234377047787738 ], [ -96.619792297553715, 29.230335047227893 ], [ -96.61910129809084, 29.229823047546546 ], [ -96.618664297559832, 29.229500047288465 ], [ -96.613405295660129, 29.225599046719214 ], [ -96.61337729551569, 29.225588046468523 ], [ -96.610104295465746, 29.222785046462697 ], [ -96.602246292834863, 29.216024045068171 ], [ -96.591126289362592, 29.206412043660155 ], [ -96.590304289116673, 29.205702043093257 ], [ -96.590101288863494, 29.205527043530019 ], [ -96.568732283322504, 29.187056040322886 ], [ -96.568565283303542, 29.186911040328336 ], [ -96.56850328348051, 29.18685703994818 ], [ -96.568422282870173, 29.186787040307038 ], [ -96.568082282925346, 29.186493039892976 ], [ -96.564946281562626, 29.183783039484183 ], [ -96.556881279805012, 29.176814038048505 ], [ -96.55630827979472, 29.176319038163612 ], [ -96.546378276944793, 29.167753037030149 ], [ -96.546361276638322, 29.167738037045954 ], [ -96.542393275779844, 29.164293036005045 ], [ -96.542277275030727, 29.164195036292455 ], [ -96.542261275091548, 29.16418103616823 ], [ -96.542221274955182, 29.164147036300889 ], [ -96.542186275183369, 29.164117036637144 ], [ -96.541270275615602, 29.163322035751804 ], [ -96.541193274786451, 29.163255036592219 ], [ -96.531869272133008, 29.155185034504083 ], [ -96.531844272887412, 29.155164035039732 ], [ -96.528152270934314, 29.152006034400198 ], [ -96.526350271295314, 29.150444033984996 ], [ -96.524359270027716, 29.1487180334145 ], [ -96.510209265753019, 29.136452031488901 ], [ -96.505434264378735, 29.1323130313821 ], [ -96.500255263694797, 29.127823030182828 ], [ -96.498875262437821, 29.126732030376171 ], [ -96.498800262781486, 29.126671030514977 ], [ -96.497066262696421, 29.125260029858282 ], [ -96.489139260067077, 29.118171028258207 ], [ -96.480272257736047, 29.110559027515741 ], [ -96.478671256641391, 29.109212027450099 ], [ -96.477305256567064, 29.108063027411447 ], [ -96.477239256644907, 29.108007026591697 ], [ -96.477171256721618, 29.107950026629723 ], [ -96.47715625690806, 29.107938027353097 ], [ -96.477148256414566, 29.107931027231732 ], [ -96.477119256822604, 29.107907026860989 ], [ -96.477043256552633, 29.107843026709531 ], [ -96.476948256331767, 29.107763027135434 ], [ -96.475430256589036, 29.106486027145301 ], [ -96.475421256283497, 29.106478026888073 ], [ -96.473940255727712, 29.105208026628308 ], [ -96.473641255195176, 29.104951026348783 ], [ -96.473340255159314, 29.104693026206157 ], [ -96.472708255822823, 29.104151025940002 ], [ -96.467247254200799, 29.099467025425831 ], [ -96.467193253607022, 29.099421025874975 ], [ -96.458374251358975, 29.091859024234878 ], [ -96.457356250756121, 29.090986024355036 ], [ -96.454886250204737, 29.088898023403452 ], [ -96.454825250286021, 29.088847023623281 ], [ -96.45461925046493, 29.088669024070427 ], [ -96.454263249575064, 29.088361023984803 ], [ -96.454209250251594, 29.08831502344411 ], [ -96.454183250382187, 29.088292023782387 ], [ -96.454049250168751, 29.088176023761985 ], [ -96.450914248866482, 29.085463023148122 ], [ -96.450874249342846, 29.085429023366657 ], [ -96.449858248920222, 29.084556023266035 ], [ -96.448869248278072, 29.083707023242933 ], [ -96.448502248559521, 29.083392022523988 ], [ -96.448301248473925, 29.083220022975055 ], [ -96.442886246782848, 29.078576021642299 ], [ -96.437377244734208, 29.073851021015543 ], [ -96.437179244965876, 29.073681021056064 ], [ -96.436147244715784, 29.072795021406044 ], [ -96.436105244939029, 29.072759020792383 ], [ -96.436090244981315, 29.072746021144543 ], [ -96.436005245135235, 29.072673021322231 ], [ -96.435815244847305, 29.072510021029267 ], [ -96.431734243446712, 29.069007020051906 ], [ -96.431691243337582, 29.068970020301172 ], [ -96.42994524255198, 29.067358019875613 ], [ -96.425614241760925, 29.063633020021879 ], [ -96.423181240951465, 29.061538018795034 ], [ -96.42299124105557, 29.06137501914808 ], [ -96.416200239315202, 29.05552801813867 ], [ -96.407294236184939, 29.047860016723799 ], [ -96.397320233161949, 29.039273015163023 ], [ -96.397086233296307, 29.039071015136905 ], [ -96.394700232919647, 29.037014014825193 ], [ -96.394679232519749, 29.036996015318152 ], [ -96.394618232698548, 29.036944015436823 ], [ -96.394577232321126, 29.036908015222771 ], [ -96.39456223246961, 29.036895015176189 ], [ -96.394272232373083, 29.036645015130233 ], [ -96.394245232698623, 29.036622015179251 ], [ -96.392062232371174, 29.034742014920852 ], [ -96.388475230985904, 29.031655014600183 ], [ -96.388464230720842, 29.031646013993228 ], [ -96.388435231522351, 29.031621014083882 ], [ -96.388342231041506, 29.031541014495669 ], [ -96.388324231136679, 29.031525014256772 ], [ -96.388037230786765, 29.031278013841021 ], [ -96.387398230265617, 29.030728013823818 ], [ -96.386603230437473, 29.030044013611338 ], [ -96.385689230529508, 29.029257013947962 ], [ -96.385678230508447, 29.029247013961434 ], [ -96.385669230450347, 29.029239013651011 ], [ -96.385648230118278, 29.029221013552426 ], [ -96.385571229974829, 29.029155013784223 ], [ -96.384843230301215, 29.028528013889115 ], [ -96.383541229740516, 29.027407013646879 ], [ -96.382881229165193, 29.026839012986784 ], [ -96.382680229059417, 29.02666601318294 ], [ -96.382664229669288, 29.026652013680334 ], [ -96.38265122954752, 29.026641013749757 ], [ -96.382637229216826, 29.026630013094657 ], [ -96.382626229750883, 29.026620013756446 ], [ -96.382598229699667, 29.026596013261006 ], [ -96.382534229423257, 29.026541013384964 ], [ -96.381444228975269, 29.025603013551052 ], [ -96.377232228088204, 29.021977013032 ], [ -96.377128227968385, 29.021887012629008 ], [ -96.375534227480159, 29.020515012338056 ], [ -96.375242226946241, 29.020264012294838 ], [ -96.372371226404127, 29.017834011675948 ], [ -96.370221225405629, 29.016015011339128 ], [ -96.370190225356041, 29.015989011880677 ], [ -96.37018222580231, 29.01598201134431 ], [ -96.370151225772545, 29.015956011876742 ], [ -96.370109225493906, 29.015919011911485 ], [ -96.370091226043741, 29.015904011848686 ], [ -96.369837226193482, 29.015686011230212 ], [ -96.369758225147336, 29.015618011844452 ], [ -96.369670225620439, 29.015543011945944 ], [ -96.369648225482777, 29.015524011944393 ], [ -96.369606225638989, 29.015488011870477 ], [ -96.369369225902688, 29.015285011445513 ], [ -96.361957223152359, 29.008926010414754 ], [ -96.357740222241219, 29.005308010252161 ], [ -96.35392222086908, 29.002030008980991 ], [ -96.353489220711907, 29.001658009399971 ], [ -96.353123221293274, 29.001344008949342 ], [ -96.351859220019776, 29.000259009216236 ], [ -96.349794220374548, 28.998482008851653 ], [ -96.347732219200466, 28.99673600836751 ], [ -96.345437218135785, 28.994664007700763 ], [ -96.340590217268456, 28.990436007204107 ], [ -96.340439217168978, 28.990305007544688 ], [ -96.340289217357693, 28.990174006950507 ], [ -96.338782216212692, 28.98885900697357 ], [ -96.338739216686065, 28.988817007020241 ], [ -96.338726216830239, 28.988810007333608 ], [ -96.336411216404713, 28.986929007043646 ], [ -96.335843215837841, 28.986452006395943 ], [ -96.335828216222708, 28.986439006626455 ], [ -96.335552216104503, 28.986207006668106 ], [ -96.335261215449052, 28.985963006312264 ], [ -96.331522214883805, 28.982823006395982 ], [ -96.330518214189851, 28.981831006065349 ], [ -96.328879214101562, 28.980415005416273 ], [ -96.328727213659704, 28.980281005838133 ], [ -96.327944213888728, 28.979593005068789 ], [ -96.327893213985021, 28.979548005664338 ], [ -96.326492213520893, 28.97833300526424 ], [ -96.324796213064531, 28.976862004798726 ], [ -96.324291212598638, 28.976425004651514 ], [ -96.324220212585715, 28.976363004667508 ], [ -96.323875212390391, 28.976064004782938 ], [ -96.320350211226668, 28.973007004833647 ], [ -96.314131209322412, 28.967623003555353 ], [ -96.309185207860708, 28.963296003059213 ], [ -96.307462207726019, 28.964168003007142 ], [ -96.298148205850026, 28.968882004113961 ], [ -96.29800620508685, 28.968954004380898 ], [ -96.297800205312328, 28.969189004381434 ], [ -96.297748205062319, 28.969247004722995 ], [ -96.297609205994064, 28.96940600449723 ], [ -96.297564205059729, 28.969458004020829 ], [ -96.296097205330014, 28.970219004217114 ], [ -96.295949205367563, 28.970297004406596 ], [ -96.295346204702213, 28.970615004938626 ], [ -96.294743205014512, 28.970932004567494 ], [ -96.294605204944787, 28.971004005074967 ], [ -96.287352202729252, 28.974822005602018 ], [ -96.286036203296732, 28.975519005996624 ], [ -96.278053201150598, 28.979735007089168 ], [ -96.277737200858596, 28.979902007222059 ], [ -96.277649201002419, 28.979949006939176 ], [ -96.274122200121411, 28.981812007431873 ], [ -96.270702199065866, 28.983618008570307 ], [ -96.270632199582138, 28.983655007845019 ], [ -96.270424199251025, 28.983765008486952 ], [ -96.270078199557148, 28.983950008232153 ], [ -96.265870198647534, 28.986174008749753 ], [ -96.265041197538793, 28.98655200881457 ], [ -96.263937198121013, 28.987051008909912 ], [ -96.263115197761181, 28.987425009212515 ], [ -96.261213197209813, 28.988290009383118 ], [ -96.261182197507907, 28.988304009216829 ], [ -96.260489197239906, 28.988620009584313 ], [ -96.259271196420883, 28.989262009421807 ], [ -96.257828196091836, 28.990023010021869 ], [ -96.257889195961255, 28.992381010086369 ], [ -96.257902196238987, 28.995564011395444 ], [ -96.257932196273345, 28.998115011964551 ], [ -96.257897196870942, 28.998213011426547 ], [ -96.257832196460384, 28.998395011276507 ], [ -96.257277196344958, 28.998642011367245 ], [ -96.256411195852493, 28.999070012234068 ], [ -96.256411196276389, 28.99916801212775 ], [ -96.256412196365801, 28.99966901221271 ], [ -96.256413195960477, 29.000527011964159 ], [ -96.256455196497967, 29.001503012099757 ], [ -96.256735196950046, 29.012914014244831 ], [ -96.256914196802612, 29.019942015802389 ], [ -96.256940196863752, 29.020954016648997 ], [ -96.256982197830396, 29.022603016328862 ], [ -96.257063197543957, 29.025773017243274 ], [ -96.257107197501881, 29.027488018032024 ], [ -96.257184198088808, 29.030527018205994 ], [ -96.257222197623008, 29.032026018458726 ], [ -96.257449198634802, 29.040913020087928 ], [ -96.257458198219695, 29.041494020626029 ], [ -96.257466197880646, 29.041958020323452 ], [ -96.257499198469034, 29.042069020493464 ], [ -96.257524198092895, 29.043418020842775 ], [ -96.257570198923631, 29.045941021319269 ], [ -96.257580199044611, 29.046521021439236 ], [ -96.257654198945588, 29.05052602257954 ], [ -96.257673199233025, 29.051165022531489 ], [ -96.257771199429314, 29.054527022923555 ], [ -96.257828199071611, 29.056494023668463 ], [ -96.257961199375288, 29.062017024770984 ], [ -96.258066199848756, 29.066330025578747 ], [ -96.258081199175493, 29.066982025294738 ], [ -96.258177199328188, 29.070955026138087 ], [ -96.258309199676702, 29.075772027306936 ], [ -96.258422200351191, 29.079885028240227 ], [ -96.258444200180051, 29.080927028825876 ], [ -96.258460199930241, 29.081888028474751 ], [ -96.258509200018935, 29.085579029418351 ], [ -96.258657200732301, 29.089109030062797 ], [ -96.258686200941085, 29.09031503052633 ], [ -96.258701200830387, 29.090942030861456 ], [ -96.258718200384422, 29.091637030818944 ], [ -96.258911200951388, 29.100150032135655 ], [ -96.26722020362034, 29.099972031740212 ], [ -96.275484205609771, 29.099794032197654 ], [ -96.281753206716388, 29.099692031631779 ], [ -96.291998209364294, 29.099447031633598 ], [ -96.301049212061926, 29.099283031072865 ], [ -96.302773212608486, 29.099252031137976 ], [ -96.308527213810081, 29.099136030771003 ], [ -96.316073215896822, 29.098984030217743 ], [ -96.316895215879697, 29.098972030262935 ], [ -96.31713021577103, 29.098969030052487 ], [ -96.317499216229706, 29.098961030440986 ], [ -96.325063217347662, 29.098792029837799 ], [ -96.32514421791204, 29.10181903100387 ], [ -96.3251702176197, 29.102788030969833 ], [ -96.325290218287265, 29.107272031899097 ], [ -96.325341217991181, 29.109159032377104 ], [ -96.325359218409446, 29.1098500325994 ], [ -96.3254172189408, 29.112032032293587 ], [ -96.325451218066718, 29.11330803268017 ], [ -96.325452218665916, 29.113362032991361 ], [ -96.325654218689067, 29.121465034376335 ], [ -96.325739219400731, 29.12489203550183 ], [ -96.3257362190501, 29.125089035723224 ], [ -96.325843219426361, 29.127834036140207 ], [ -96.326029219182189, 29.135846037526811 ], [ -96.326082219604004, 29.138143037863603 ], [ -96.326100219849309, 29.13880103805851 ], [ -96.32613722012627, 29.140198038882613 ], [ -96.326256219648073, 29.14468503904855 ], [ -96.326276220401539, 29.145425039592823 ], [ -96.326291220372354, 29.14599803991932 ], [ -96.326302220455503, 29.14642004016536 ], [ -96.326349219796413, 29.148243039970666 ], [ -96.32635821987742, 29.148757040503671 ], [ -96.326380220308891, 29.150018040010952 ], [ -96.326412220462856, 29.151489040725394 ], [ -96.326449220807945, 29.153149041378832 ], [ -96.326541220557488, 29.156188041317673 ], [ -96.326567221156978, 29.156862041790504 ], [ -96.326597220647429, 29.159116042704191 ], [ -96.326662220548599, 29.159261042525468 ], [ -96.326900220671774, 29.159574042341088 ], [ -96.327865220742595, 29.158965041833159 ], [ -96.33348222240798, 29.155461041385145 ], [ -96.333673222630267, 29.155705041700589 ], [ -96.333811222952434, 29.155871041485369 ], [ -96.333779222884914, 29.155922041470184 ], [ -96.333788222785003, 29.156379041356331 ], [ -96.333795222329726, 29.156815041737097 ], [ -96.333816222475505, 29.157940041626244 ], [ -96.3338332226093, 29.158907041649403 ], [ -96.333842222312583, 29.159397041992406 ], [ -96.33384622283387, 29.159612042524422 ], [ -96.333854222768664, 29.160195042407487 ], [ -96.333860222181855, 29.160624042135669 ], [ -96.333863222704451, 29.160845042756261 ], [ -96.333869222481468, 29.161292042379326 ], [ -96.333875222342385, 29.161735042704152 ], [ -96.333938223003557, 29.166163043441273 ], [ -96.334120222981269, 29.172014045121585 ], [ -96.334208223529131, 29.177178045387315 ], [ -96.334285223490099, 29.178195045578022 ], [ -96.334360224132098, 29.181895046433677 ], [ -96.33443622414795, 29.185282047759195 ], [ -96.33455422353336, 29.188922048413733 ], [ -96.334637223696632, 29.191767048501454 ], [ -96.334810224547539, 29.199176050351571 ], [ -96.334976225016675, 29.206307051305469 ], [ -96.334137225077853, 29.206300052098257 ], [ -96.334205225153568, 29.21100005291343 ], [ -96.33420822537407, 29.211134052424899 ], [ -96.334212225267891, 29.211300052456266 ], [ -96.334237224856963, 29.212215053082613 ], [ -96.334257225235461, 29.213179053052588 ], [ -96.334262224965499, 29.214096053380384 ], [ -96.334267224715077, 29.214762053552075 ], [ -96.334270225059285, 29.21493105349407 ], [ -96.33431522509072, 29.216630053345334 ], [ -96.334401225473087, 29.219887054867375 ], [ -96.334448225862857, 29.221695054553223 ], [ -96.334477225286747, 29.223167055389631 ], [ -96.334505225920424, 29.224606055464626 ], [ -96.334546225100539, 29.225099055826746 ], [ -96.334547225206222, 29.225142055821198 ], [ -96.334552225271082, 29.225394055401114 ], [ -96.334554225263759, 29.225473056015137 ], [ -96.334587225786123, 29.227031055491658 ], [ -96.334768226490198, 29.235079057235961 ], [ -96.335865226083243, 29.235072057782126 ], [ -96.342905227832546, 29.234948057157052 ], [ -96.348906229935054, 29.234842057027421 ], [ -96.349660229357696, 29.234829056964426 ], [ -96.349659229868323, 29.234867057358159 ], [ -96.349666229520182, 29.234927056879911 ], [ -96.349678229970237, 29.234998056915071 ], [ -96.349703230123325, 29.235042057223129 ], [ -96.34972223013088, 29.235130057092036 ], [ -96.349722229464405, 29.235207057022045 ], [ -96.349716229364603, 29.235268057173553 ], [ -96.349697230277897, 29.235323056831135 ], [ -96.349584230012482, 29.235515057103463 ], [ -96.349465229436049, 29.235669056720777 ], [ -96.349302229521527, 29.235906057044215 ], [ -96.349083230146775, 29.236115057368455 ], [ -96.348964230155801, 29.236269057470572 ], [ -96.348876229914765, 29.236362057188579 ], [ -96.348720229239987, 29.236598056987063 ], [ -96.348657229979807, 29.23667505770343 ], [ -96.348344229895403, 29.236939057579104 ], [ -96.348181229213026, 29.237044057434556 ], [ -96.348087229518327, 29.237049057928701 ], [ -96.348018229911446, 29.237027057423802 ], [ -96.347961229783294, 29.237022057896286 ], [ -96.347880229233354, 29.237033057101481 ], [ -96.347817229826006, 29.237066057716053 ], [ -96.347742229798371, 29.237121057692153 ], [ -96.347692229882369, 29.237225057577035 ], [ -96.347667229732309, 29.237335057708922 ], [ -96.347679229585339, 29.237577057502985 ], [ -96.347698229679651, 29.23769305772451 ], [ -96.347698229452632, 29.237786057319457 ], [ -96.347661229312209, 29.238253057563021 ], [ -96.3476982291849, 29.238457057877245 ], [ -96.347723229237445, 29.23851705818452 ], [ -96.347748228958594, 29.238534057902626 ], [ -96.347962229717552, 29.238776057871497 ], [ -96.348006229134342, 29.238886057796847 ], [ -96.348018229128868, 29.23896305815806 ], [ -96.348024229841229, 29.239078057816588 ], [ -96.348012229656078, 29.239150058050065 ], [ -96.34789322919211, 29.239562057951613 ], [ -96.3478932299452, 29.239672058123684 ], [ -96.347931229467619, 29.239826058442794 ], [ -96.34793122973268, 29.239886057793179 ], [ -96.347893229654687, 29.240029057698749 ], [ -96.347843229722855, 29.240139057833847 ], [ -96.347793229492467, 29.240304058020122 ], [ -96.347761229129816, 29.240359057803644 ], [ -96.347718229725686, 29.240408057884025 ], [ -96.347617229124879, 29.240474058106919 ], [ -96.347605229126117, 29.240496058399636 ], [ -96.347611229865777, 29.24054005834375 ], [ -96.347774229381642, 29.240650058305349 ], [ -96.347812229449985, 29.240694058503546 ], [ -96.347843229684202, 29.240777057963502 ], [ -96.347831229166133, 29.240826058283762 ], [ -96.347755229470096, 29.240986058238715 ], [ -96.347680229975467, 29.24104605839284 ], [ -96.347630229631463, 29.241063057975328 ], [ -96.347216229906053, 29.241057058528295 ], [ -96.347179229704253, 29.241046058425091 ], [ -96.347097229251062, 29.241002057999609 ], [ -96.347035229192826, 29.241008058289456 ], [ -96.347010229438297, 29.241024058679461 ], [ -96.346941229056597, 29.241156058423687 ], [ -96.346941229817304, 29.24126605859502 ], [ -96.346997229538744, 29.241404058496812 ], [ -96.346985229778326, 29.241618058085628 ], [ -96.346997229773308, 29.24172805874716 ], [ -96.347035229362021, 29.241805058472114 ], [ -96.347129229436376, 29.241887058903629 ], [ -96.347210229511489, 29.24193705854389 ], [ -96.34729222975848, 29.242003058722098 ], [ -96.347354229509932, 29.242085058585239 ], [ -96.347499229640022, 29.242492058279968 ], [ -96.347574230021991, 29.24254705852816 ], [ -96.347605229770394, 29.242553059004347 ], [ -96.347850229595096, 29.24249805898825 ], [ -96.347912230060075, 29.242503058684534 ], [ -96.348075229543866, 29.242569058498454 ], [ -96.348157230012674, 29.242657058867231 ], [ -96.348195230228811, 29.242833058880304 ], [ -96.348182229392549, 29.242937058332473 ], [ -96.348182229666918, 29.243053058646463 ], [ -96.348257230171754, 29.243113058662551 ], [ -96.348370229803436, 29.243234059191046 ], [ -96.348502230225762, 29.243443058674391 ], [ -96.348508230206832, 29.243465058698174 ], [ -96.348502230071475, 29.243767058742005 ], [ -96.348515230080793, 29.243789058981537 ], [ -96.348546229609312, 29.243784058855397 ], [ -96.348632230015895, 29.243746059292572 ], [ -96.348652230157811, 29.243751059159649 ], [ -96.348696229828732, 29.243800058495548 ], [ -96.348696230391582, 29.243861058750067 ], [ -96.348728230267042, 29.243905058457543 ], [ -96.348909229563546, 29.24388805853502 ], [ -96.348947230459032, 29.243872059071659 ], [ -96.348966229549816, 29.243850058839666 ], [ -96.349054229519822, 29.243668058738809 ], [ -96.349123229892413, 29.2436460589422 ], [ -96.34939223002911, 29.243723058411433 ], [ -96.349630229862697, 29.243833058633477 ], [ -96.350025230747789, 29.244042058578181 ], [ -96.350245230791813, 29.24408605873823 ], [ -96.350414230509202, 29.244212058606834 ], [ -96.3504832301834, 29.244273059041998 ], [ -96.35065923007366, 29.244471059280681 ], [ -96.350809230047048, 29.244619059073099 ], [ -96.350859230892141, 29.244707059055678 ], [ -96.35084023055623, 29.244822058988873 ], [ -96.350684230548879, 29.244993058874165 ], [ -96.350659229983933, 29.245042059218086 ], [ -96.350652230891498, 29.245081058617867 ], [ -96.350659230125615, 29.245147059080509 ], [ -96.350703230495782, 29.245262059005562 ], [ -96.35069023039749, 29.245477058694352 ], [ -96.350671230392379, 29.245576058980649 ], [ -96.350615230930245, 29.24560905926354 ], [ -96.350458230725252, 29.245603059355364 ], [ -96.350421230285278, 29.245614059114157 ], [ -96.350358230401895, 29.245658059532204 ], [ -96.350270230481698, 29.245752059336144 ], [ -96.350157230606257, 29.245801058950764 ], [ -96.349963230586155, 29.245933059649261 ], [ -96.349926230128148, 29.245988058923771 ], [ -96.349882230010223, 29.246092059674805 ], [ -96.349850230467368, 29.246125059223036 ], [ -96.349775230090842, 29.246296059709383 ], [ -96.349738230656826, 29.246340059493019 ], [ -96.349700230073154, 29.246373059761208 ], [ -96.349468230065881, 29.246483059116549 ], [ -96.349180230317941, 29.246675059391599 ], [ -96.349123230459554, 29.246725059595168 ], [ -96.349111230075792, 29.246747059104553 ], [ -96.349111230080254, 29.246950059512308 ], [ -96.349086229924382, 29.247011059076957 ], [ -96.349061230461132, 29.247049059694284 ], [ -96.349029230658786, 29.24707105958592 ], [ -96.348973229751309, 29.247088059543774 ], [ -96.348873230331463, 29.247159059189805 ], [ -96.348854230541761, 29.247198059961683 ], [ -96.348841230502373, 29.247313059800483 ], [ -96.348823229641866, 29.247330059845648 ], [ -96.348622230336474, 29.247385059536374 ], [ -96.348522229773266, 29.247396059621721 ], [ -96.348465229856572, 29.247473059546149 ], [ -96.348465230303546, 29.247550059401803 ], [ -96.348509230273265, 29.247665060037274 ], [ -96.348622230373351, 29.247857059831251 ], [ -96.348635230387544, 29.24802205935346 ], [ -96.348591230463512, 29.248286059574649 ], [ -96.348604229623064, 29.248352059413559 ], [ -96.34862222987779, 29.248374059769731 ], [ -96.348685230389052, 29.248418059447001 ], [ -96.348779229803299, 29.248457059778023 ], [ -96.348829230080796, 29.248468059731998 ], [ -96.34893023029413, 29.248479060142955 ], [ -96.349049230116563, 29.248468060213121 ], [ -96.349193230235983, 29.248440059346144 ], [ -96.349356230005, 29.248451060052147 ], [ -96.349444230689073, 29.248473060135503 ], [ -96.349525230470732, 29.248544059789765 ], [ -96.349644230185206, 29.248693060063555 ], [ -96.349707230784787, 29.248786059949044 ], [ -96.349713230117828, 29.248863059877166 ], [ -96.349644230835111, 29.248935059887465 ], [ -96.34935623034788, 29.249061060239967 ], [ -96.349187229834172, 29.249116059752854 ], [ -96.349149230101943, 29.249149059893629 ], [ -96.349036230651564, 29.249336059553997 ], [ -96.349018230565889, 29.249386059824179 ], [ -96.348992230208154, 29.249650059680388 ], [ -96.348999230567912, 29.249902060010896 ], [ -96.349131230130524, 29.250004060400205 ], [ -96.349225230233898, 29.250213060534922 ], [ -96.349300230732197, 29.250339060146036 ], [ -96.349381230615137, 29.250438059857316 ], [ -96.34948222999806, 29.250499060519246 ], [ -96.349745230002483, 29.25063605976219 ], [ -96.349827230777464, 29.250691060500774 ], [ -96.34988323043784, 29.250773060640871 ], [ -96.349908230896801, 29.250867060572887 ], [ -96.349839230201624, 29.251444060804666 ], [ -96.349595230585919, 29.252076060086715 ], [ -96.34925723019002, 29.253006060959571 ], [ -96.349163230054344, 29.253209060764693 ], [ -96.349057230530974, 29.25337406079559 ], [ -96.348988230117797, 29.253435061019921 ], [ -96.348906230443831, 29.25349006069202 ], [ -96.34873723059664, 29.25354506067 ], [ -96.348580230418321, 29.253622060583126 ], [ -96.348474230747698, 29.25372106073582 ], [ -96.348398230330702, 29.253836061306032 ], [ -96.348311230255348, 29.254017060937759 ], [ -96.348279229914453, 29.25414406135971 ], [ -96.348273230746869, 29.254270060759357 ], [ -96.348280229937302, 29.254369061454142 ], [ -96.34837422999658, 29.254644061453739 ], [ -96.348524230483036, 29.254847061573649 ], [ -96.348806230152121, 29.255194061565891 ], [ -96.348850230052776, 29.255331060806967 ], [ -96.348813230331274, 29.255447060859403 ], [ -96.348775230511535, 29.255502061621492 ], [ -96.348662230380185, 29.255617061350758 ], [ -96.348562230883871, 29.255678061437585 ], [ -96.348405230520584, 29.25582606166585 ], [ -96.348355230800678, 29.255887061252263 ], [ -96.348318230070788, 29.255997060961409 ], [ -96.348305230051494, 29.256178060971997 ], [ -96.348318230677265, 29.256398061218221 ], [ -96.348318230856862, 29.256667061728042 ], [ -96.348299230850586, 29.256772061817614 ], [ -96.34813623013271, 29.257382061922577 ], [ -96.348017230701828, 29.257871062095347 ], [ -96.347873230082271, 29.258317061742826 ], [ -96.347704230081519, 29.25875106181984 ], [ -96.3476422301638, 29.258806062353486 ], [ -96.347566230099062, 29.258839061663515 ], [ -96.347322229778896, 29.258900062044631 ], [ -96.347203230295477, 29.258938062436627 ], [ -96.347146230363691, 29.258977062422559 ], [ -96.34711523005376, 29.259042062405811 ], [ -96.347103230513696, 29.259103062099836 ], [ -96.347071229807241, 29.259378062423451 ], [ -96.3470462303288, 29.259455062120121 ], [ -96.347009230582245, 29.259510062439908 ], [ -96.346946230483795, 29.259543061915405 ], [ -96.346896230070385, 29.259554062074805 ], [ -96.346758229695425, 29.259554061895717 ], [ -96.346670229740113, 29.259543062419898 ], [ -96.346288229589561, 29.25943306227925 ], [ -96.346112229509117, 29.259428062282915 ], [ -96.346031229534347, 29.259439062507251 ], [ -96.345918229418103, 29.259505062036325 ], [ -96.345830230192888, 29.259604061947726 ], [ -96.345730229957596, 29.259873062155386 ], [ -96.345711229519779, 29.260126062133498 ], [ -96.345724230384121, 29.260192062196193 ], [ -96.345780229500249, 29.260357062063395 ], [ -96.345780229965399, 29.260434062737868 ], [ -96.34577422966251, 29.260505062012303 ], [ -96.345724229486322, 29.260637062017889 ], [ -96.345711229449222, 29.260758062556722 ], [ -96.345724229402663, 29.260857062749 ], [ -96.34571822953906, 29.260918062609356 ], [ -96.345667229468958, 29.261038062161454 ], [ -96.345642229639736, 29.261154062849293 ], [ -96.345793230076026, 29.262116062982198 ], [ -96.345806229787357, 29.262352062988384 ], [ -96.345787230344982, 29.262550062978583 ], [ -96.345712229960426, 29.262759062409771 ], [ -96.345624229902924, 29.262930062671202 ], [ -96.34556822964764, 29.263325062541742 ], [ -96.345574229809799, 29.263402062576588 ], [ -96.345643230093714, 29.263749063417272 ], [ -96.345656229959786, 29.263897063316715 ], [ -96.345574230332147, 29.264084063444173 ], [ -96.34553723016198, 29.264205062744683 ], [ -96.345524230427429, 29.264392063511718 ], [ -96.345531230353686, 29.264441063599346 ], [ -96.345568230256916, 29.264507062987693 ], [ -96.345675230564822, 29.264650062776187 ], [ -96.345719230363471, 29.264727062799036 ], [ -96.345750229668297, 29.264832063060702 ], [ -96.345750230341068, 29.264881062813391 ], [ -96.345738230563555, 29.264947063424227 ], [ -96.345700230403082, 29.265024063130454 ], [ -96.345644230094564, 29.265096063603064 ], [ -96.345606230502028, 29.265162062948267 ], [ -96.345543230161155, 29.265316062915119 ], [ -96.345500229939759, 29.265887063423296 ], [ -96.34551222979745, 29.266019063645427 ], [ -96.345523230435347, 29.266386063984122 ], [ -96.345525229633182, 29.266470063992521 ], [ -96.345425230132804, 29.266739063898925 ], [ -96.34538122966255, 29.266838063899954 ], [ -96.345306230325775, 29.266970063382917 ], [ -96.345086230508414, 29.267482063640117 ], [ -96.345086230452523, 29.267559064244292 ], [ -96.345111230509474, 29.26764106359553 ], [ -96.345162230098367, 29.267735063742219 ], [ -96.34519923053594, 29.267855063981091 ], [ -96.345206230039622, 29.268268063680029 ], [ -96.345250230203234, 29.269274063819314 ], [ -96.345219229899428, 29.270208064114129 ], [ -96.345245229793861, 29.2722040646096 ], [ -96.345282230402944, 29.273298064722468 ], [ -96.345333229913336, 29.274359065215208 ], [ -96.34532122997156, 29.274865065537568 ], [ -96.345346230399969, 29.275074064969619 ], [ -96.345321230531951, 29.275387065101178 ], [ -96.345421230761403, 29.276239065846564 ], [ -96.345453230179643, 29.276289065254659 ], [ -96.345685230705925, 29.277064065940149 ], [ -96.345848231042979, 29.277547066056499 ], [ -96.345993231046108, 29.278130066299376 ], [ -96.346062230317798, 29.278443065904764 ], [ -96.346105230708815, 29.278696066213374 ], [ -96.346118230660963, 29.279406066108677 ], [ -96.346244231196465, 29.279807066023537 ], [ -96.346325231106277, 29.280236066590856 ], [ -96.346319230779926, 29.280516066445117 ], [ -96.346275231335454, 29.280912066369247 ], [ -96.34628823093017, 29.280972066840054 ], [ -96.346345230792139, 29.281115066093133 ], [ -96.346357230499024, 29.281198066287086 ], [ -96.34634523104944, 29.281390066922665 ], [ -96.346401231051686, 29.281995066943562 ], [ -96.346464230748992, 29.28222006692587 ], [ -96.346464230796997, 29.282429066688291 ], [ -96.346427230778787, 29.282720066484728 ], [ -96.346471231260253, 29.283072066680781 ], [ -96.346458230630006, 29.283358067230743 ], [ -96.346483231019121, 29.28356206688359 ], [ -96.346477230846887, 29.283661066804321 ], [ -96.346433231333265, 29.283760067075022 ], [ -96.346414231444243, 29.283831067489142 ], [ -96.346408231148018, 29.283979067012297 ], [ -96.346414231253789, 29.284034067030412 ], [ -96.346590230876203, 29.284584067015693 ], [ -96.346665230785391, 29.28481506740922 ], [ -96.346653230763621, 29.284892067372358 ], [ -96.346659230780944, 29.285062067056387 ], [ -96.346703230882738, 29.28543606765145 ], [ -96.346722231671876, 29.285700067785157 ], [ -96.346722231702074, 29.285785067507227 ], [ -96.34672223121683, 29.285909067429316 ], [ -96.346773231372254, 29.286371067999678 ], [ -96.346823231544676, 29.286624067952111 ], [ -96.346886231821983, 29.286821067638886 ], [ -96.346948231814281, 29.286959067377452 ], [ -96.347017231606799, 29.287019067810515 ], [ -96.34719923156851, 29.287151067632966 ], [ -96.347293231324286, 29.287239067707738 ], [ -96.347500231490301, 29.287476068145747 ], [ -96.34783923157346, 29.287728067829764 ], [ -96.347965231742407, 29.287833067858841 ], [ -96.348021231749399, 29.287899067569832 ], [ -96.34805223191637, 29.287959068253006 ], [ -96.348096231506489, 29.28808006824816 ], [ -96.348115231509937, 29.288201067603428 ], [ -96.348172231706485, 29.28828906788581 ], [ -96.348272231761399, 29.288399067988781 ], [ -96.348335231596437, 29.288454068313204 ], [ -96.348529231642644, 29.28855806842288 ], [ -96.348786232206876, 29.28865206835566 ], [ -96.348862232062359, 29.288696068377021 ], [ -96.348924232093566, 29.288756067631706 ], [ -96.348968232182784, 29.288817068353097 ], [ -96.349056231539421, 29.288981068186718 ], [ -96.349106231934528, 29.289069067913456 ], [ -96.349225232316812, 29.289179068498495 ], [ -96.349288231681982, 29.289212067730642 ], [ -96.349370232279185, 29.289223068453555 ], [ -96.349445231712124, 29.289218067653294 ], [ -96.349526231797014, 29.289201068385392 ], [ -96.349702232597039, 29.289135068117645 ], [ -96.349771231863656, 29.289119067652745 ], [ -96.349865231926501, 29.289113067745319 ], [ -96.349972232145163, 29.289190068397275 ], [ -96.350147231782771, 29.289383068302865 ], [ -96.35032323268004, 29.289624068404823 ], [ -96.350386232310015, 29.289679067710651 ], [ -96.350492232598768, 29.289729068078788 ], [ -96.35055523209941, 29.289729068505032 ], [ -96.35080623286548, 29.289608068469867 ], [ -96.350906232624098, 29.28960206784447 ], [ -96.350950232231, 29.289613068308558 ], [ -96.351025232534994, 29.289701068261774 ], [ -96.351088232083697, 29.289811067818064 ], [ -96.351138232758743, 29.289927068399088 ], [ -96.351151233016196, 29.289959068399462 ], [ -96.351151232667064, 29.290003067781807 ], [ -96.351107232995972, 29.290212067941916 ], [ -96.351038232092847, 29.290449067846076 ], [ -96.351038232391105, 29.290526068133438 ], [ -96.35105123217437, 29.29060306844676 ], [ -96.351076232368058, 29.29067406863512 ], [ -96.351120232321591, 29.290757068278836 ], [ -96.351189232074717, 29.290856068379327 ], [ -96.351233232093222, 29.290889068436659 ], [ -96.351314232394543, 29.290921068490903 ], [ -96.351559232595392, 29.290927068619435 ], [ -96.35162823217, 29.290938068815439 ], [ -96.351703233148186, 29.290971068679806 ], [ -96.351829233059476, 29.291053068745036 ], [ -96.35191623234067, 29.291180068229799 ], [ -96.351992233282928, 29.29134506875133 ], [ -96.352011233307749, 29.291411068629849 ], [ -96.35199223325462, 29.291587068913586 ], [ -96.35201123239267, 29.2916850687247 ], [ -96.352067232405233, 29.291790068554082 ], [ -96.352143232914557, 29.291878068703575 ], [ -96.352268232519137, 29.291971068607729 ], [ -96.352713232655418, 29.292241068495883 ], [ -96.352820233419862, 29.292290068699778 ], [ -96.352958232607662, 29.292312068608791 ], [ -96.353046232811593, 29.292306068286997 ], [ -96.353146233242995, 29.292284068233108 ], [ -96.353786232891252, 29.291932068807409 ], [ -96.353942232984508, 29.291888068367843 ], [ -96.354049233792821, 29.291883068871297 ], [ -96.354149233675386, 29.291888068776117 ], [ -96.354193233145011, 29.291905068295865 ], [ -96.354363233116459, 29.291938068190564 ], [ -96.354820233759298, 29.292091068459264 ], [ -96.355209233209862, 29.292207068112535 ], [ -96.355397234027791, 29.292229068592682 ], [ -96.355479233480722, 29.292223068640837 ], [ -96.355617233484296, 29.292185068760563 ], [ -96.35575523391077, 29.292174068545982 ], [ -96.35589323409836, 29.292185068754964 ], [ -96.356125233655504, 29.29226706824004 ], [ -96.35625023386234, 29.292267068253981 ], [ -96.356501234428364, 29.292217068410217 ], [ -96.356815233585266, 29.292234068148677 ], [ -96.356946234495737, 29.292228068029079 ], [ -96.357041233952003, 29.292212068124456 ], [ -96.357128234628377, 29.292168068704886 ], [ -96.357166233919358, 29.292096068810125 ], [ -96.357203233854548, 29.291942068658855 ], [ -96.357323233841143, 29.291821068390266 ], [ -96.357442234080295, 29.291744068295525 ], [ -96.357667234046417, 29.29151906837955 ], [ -96.357749233990958, 29.291453068223387 ], [ -96.357830234141971, 29.291414067860909 ], [ -96.35791223414914, 29.291398067988343 ], [ -96.357975234582241, 29.291398068519037 ], [ -96.358062234595479, 29.291431068661279 ], [ -96.358257234553193, 29.291552068196207 ], [ -96.358401234744917, 29.291557068069217 ], [ -96.358614234401571, 29.291579068105985 ], [ -96.35873423439844, 29.291639068505194 ], [ -96.358821234526246, 29.291722068513586 ], [ -96.358865234367414, 29.291788068633998 ], [ -96.35886523439315, 29.291865067882693 ], [ -96.358847234752858, 29.291953068423815 ], [ -96.358809234382107, 29.292035068104266 ], [ -96.358677234658799, 29.292239068834693 ], [ -96.358621234084779, 29.292305068133814 ], [ -96.35846423430425, 29.292431068034073 ], [ -96.358427234513059, 29.292503068216895 ], [ -96.358395234577827, 29.292602068809323 ], [ -96.3584082346553, 29.292690068554062 ], [ -96.358439234925498, 29.292789068528517 ], [ -96.358515234648848, 29.292970068154546 ], [ -96.358634234619046, 29.293201068462555 ], [ -96.358690234600488, 29.293355068379917 ], [ -96.358778235016118, 29.293432069070782 ], [ -96.358853235046368, 29.293459068262933 ], [ -96.35894123419979, 29.293514068262635 ], [ -96.359111234251785, 29.293794069120896 ], [ -96.359199235244986, 29.293833068574909 ], [ -96.359537235256511, 29.293926068614411 ], [ -96.360121235488734, 29.294140068362633 ], [ -96.360786235059507, 29.294465068825932 ], [ -96.360999234707833, 29.294536068830379 ], [ -96.361199235010929, 29.294519069106855 ], [ -96.361381235613806, 29.294437068852869 ], [ -96.361463235382047, 29.294420068543378 ], [ -96.361682234921432, 29.294442068499571 ], [ -96.361789235776243, 29.294420068654485 ], [ -96.361889235143266, 29.294382068857892 ], [ -96.361996235966089, 29.294376068336682 ], [ -96.362115234976073, 29.294393069091125 ], [ -96.36251723575964, 29.294552068744693 ], [ -96.362843235279314, 29.294535068549976 ], [ -96.363031235404534, 29.294546068699177 ], [ -96.363238235637965, 29.294590068589702 ], [ -96.363614236295973, 29.294722068356688 ], [ -96.363990235923723, 29.294903069100332 ], [ -96.364103236196215, 29.295002068816313 ], [ -96.364154236116775, 29.295112069255804 ], [ -96.364179236220849, 29.295227068696249 ], [ -96.364179236245448, 29.295310068875573 ], [ -96.364116235625573, 29.29552406921146 ], [ -96.363784235468273, 29.296063069354343 ], [ -96.363753235526431, 29.296173069466594 ], [ -96.363753236258418, 29.296256068753326 ], [ -96.363816235647377, 29.296454069357981 ], [ -96.363834235789611, 29.296597069265122 ], [ -96.36380923592408, 29.296729069343684 ], [ -96.363772235975958, 29.296833068972497 ], [ -96.363759236417437, 29.296915069440203 ], [ -96.363810236354581, 29.297141069112705 ], [ -96.363822235590945, 29.297273069291727 ], [ -96.363810236414736, 29.297383069433639 ], [ -96.363778236089303, 29.297531069622501 ], [ -96.363634236313118, 29.297768069733852 ], [ -96.363440236245381, 29.298136069249605 ], [ -96.363321236450801, 29.298405069305304 ], [ -96.363233235746605, 29.298724069436307 ], [ -96.363252235982586, 29.298911069431945 ], [ -96.363240236424701, 29.298983069512971 ], [ -96.3631962357654, 29.299043069459756 ], [ -96.363165235682146, 29.29910906928319 ], [ -96.363158235830937, 29.299164069404394 ], [ -96.363190236232171, 29.299263069775048 ], [ -96.363290236152096, 29.299505070048369 ], [ -96.363453236316886, 29.299714070002583 ], [ -96.363573236039613, 29.299818069469289 ], [ -96.363660235859726, 29.299862069609237 ], [ -96.363830235747201, 29.29991707023061 ], [ -96.363999235892948, 29.299922069568069 ], [ -96.364131235741311, 29.299966069578034 ], [ -96.364332235813251, 29.300076069623554 ], [ -96.364413236710547, 29.300137070266931 ], [ -96.364463235954261, 29.300186070028456 ], [ -96.36455123627826, 29.300302070245262 ], [ -96.364633235949285, 29.30045607006344 ], [ -96.364740236621103, 29.300582070266419 ], [ -96.364802236305493, 29.300637069718615 ], [ -96.365141236504371, 29.300879069983594 ], [ -96.365210236087023, 29.300956069906967 ], [ -96.365323236745397, 29.301049070026917 ], [ -96.365486236801772, 29.301164069687015 ], [ -96.365618236625622, 29.301230069577663 ], [ -96.365913237053178, 29.301302069595049 ], [ -96.366026236761968, 29.301302069672445 ], [ -96.366320237146425, 29.301225070027545 ], [ -96.366465237300517, 29.301225069711709 ], [ -96.366603237092576, 29.301235070268142 ], [ -96.366772236732331, 29.301268070278965 ], [ -96.367004237445428, 29.301334069683719 ], [ -96.367380237068303, 29.301494069567795 ], [ -96.367462237583496, 29.301537070465333 ], [ -96.367531236984746, 29.301609069925313 ], [ -96.367619237621383, 29.301774070006275 ], [ -96.367625236996801, 29.301851070069503 ], [ -96.367619237411034, 29.302016069988358 ], [ -96.367638237487725, 29.302142070449069 ], [ -96.367745237754718, 29.302532070354175 ], [ -96.367858237795545, 29.302769070503594 ], [ -96.368015237825475, 29.302978070668804 ], [ -96.368253237679085, 29.303165070584306 ], [ -96.368385237281473, 29.303225070204398 ], [ -96.368535237855554, 29.303263070485492 ], [ -96.368793237144786, 29.303346069910756 ], [ -96.368956238076649, 29.303456070469231 ], [ -96.369044237576475, 29.303538070366091 ], [ -96.369219238182396, 29.303730070751406 ], [ -96.369376237338216, 29.303967070695933 ], [ -96.369470237859133, 29.304225070590601 ], [ -96.369508237784729, 29.30441707039715 ], [ -96.369508237468295, 29.30453307018831 ], [ -96.369414237792967, 29.305237070350845 ], [ -96.369383237802836, 29.305330070296939 ], [ -96.369377238295527, 29.305380070400876 ], [ -96.369383237696368, 29.305478070767485 ], [ -96.369446237829592, 29.305605071137407 ], [ -96.369540238050405, 29.305731070766715 ], [ -96.36969123749202, 29.305979071271565 ], [ -96.369879237852231, 29.306237071101886 ], [ -96.36996123748537, 29.306374070514256 ], [ -96.370086238494054, 29.306715070785735 ], [ -96.37011223831432, 29.306913071249753 ], [ -96.370118237682831, 29.307001071334582 ], [ -96.37009323796255, 29.307117071051412 ], [ -96.37005523781977, 29.307210071224205 ], [ -96.370018237759169, 29.307281070781151 ], [ -96.369848238297905, 29.307435071098016 ], [ -96.3698042384014, 29.307501071484634 ], [ -96.369742238408122, 29.307644071499372 ], [ -96.36971723802651, 29.307798071032437 ], [ -96.369704238389886, 29.308123071587701 ], [ -96.369755237670745, 29.308288071482725 ], [ -96.369805237940355, 29.308359071344576 ], [ -96.37028823839934, 29.308650071538889 ], [ -96.371066238500404, 29.309145071496221 ], [ -96.371443238720531, 29.309337071316186 ], [ -96.37160623855037, 29.309447071888904 ], [ -96.371650238093011, 29.309507071701102 ], [ -96.371725238363965, 29.30977107175622 ], [ -96.371763238189018, 29.310304071269375 ], [ -96.371763238289148, 29.310513071908328 ], [ -96.37177623820898, 29.31070007186382 ], [ -96.371801238485062, 29.310838071655468 ], [ -96.371857238685934, 29.310959071642895 ], [ -96.37193923905582, 29.311173072092529 ], [ -96.372033238995385, 29.311338072290134 ], [ -96.372096238378802, 29.311481071474532 ], [ -96.372209239249358, 29.311624071695299 ], [ -96.372348238679649, 29.311700071676 ], [ -96.372460238734632, 29.311761071978982 ], [ -96.372931239135752, 29.31216807165929 ], [ -96.373019238828476, 29.312388072263186 ], [ -96.373132238831943, 29.312558072155063 ], [ -96.37340823918403, 29.313250071893211 ], [ -96.373471239401212, 29.313454072440614 ], [ -96.373653239718351, 29.313784072251767 ], [ -96.373973239290095, 29.3141410727772 ], [ -96.374356239478445, 29.314493072116719 ], [ -96.375010239388786, 29.314988072848664 ], [ -96.375141239548896, 29.315103072862293 ], [ -96.375787240266433, 29.315956072375496 ], [ -96.376144240097375, 29.316594072815125 ], [ -96.376232239550831, 29.316781073040676 ], [ -96.376282239536124, 29.316934072635227 ], [ -96.376282240370998, 29.317055073086102 ], [ -96.376263239851383, 29.317149073034518 ], [ -96.376213239616121, 29.317226073177643 ], [ -96.376106239586463, 29.317369072740906 ], [ -96.375980239620645, 29.317490072704604 ], [ -96.375836240410024, 29.317594072933833 ], [ -96.375729239653012, 29.317731072982273 ], [ -96.375553240297918, 29.318001072952399 ], [ -96.375453239878681, 29.318193073410747 ], [ -96.375396240251007, 29.318374072880161 ], [ -96.375352240156786, 29.318462073612437 ], [ -96.375007239778981, 29.318787073401836 ], [ -96.374521239467938, 29.31902807346334 ], [ -96.37415123952583, 29.319133073289503 ], [ -96.373781239576076, 29.319314073521063 ], [ -96.373612239582314, 29.319435073336937 ], [ -96.373480239653816, 29.319551073755385 ], [ -96.373437239005582, 29.319617073290878 ], [ -96.373368239626785, 29.319776073583412 ], [ -96.373349239481271, 29.319919073161071 ], [ -96.373418239080124, 29.320056073887166 ], [ -96.373462239284891, 29.320100073517786 ], [ -96.373606239347794, 29.320304073383312 ], [ -96.373619239798415, 29.320430073490865 ], [ -96.37352723976484, 29.32082707407573 ], [ -96.373462239237341, 29.321106074103838 ], [ -96.37344423957687, 29.321700073685022 ], [ -96.373488239543732, 29.321887074095997 ], [ -96.373607239288134, 29.322195073716625 ], [ -96.373714239322823, 29.322398074278457 ], [ -96.373946239615861, 29.322679074204842 ], [ -96.374053239964482, 29.322739073681593 ], [ -96.374160239768386, 29.322777074466334 ], [ -96.37430424000425, 29.322783074343302 ], [ -96.374455240000415, 29.322777074397312 ], [ -96.374768239934909, 29.322706073648163 ], [ -96.375006239593674, 29.322662073754817 ], [ -96.375130240102166, 29.322629073901467 ], [ -96.375469240182454, 29.32259107365276 ], [ -96.375563239914612, 29.322591074146807 ], [ -96.375651239744826, 29.322608074200868 ], [ -96.375858239719079, 29.32269607374689 ], [ -96.375989240686522, 29.322784073929466 ], [ -96.37632224055443, 29.323240074136745 ], [ -96.37644124028877, 29.323372074201853 ], [ -96.376560240656985, 29.323471074489518 ], [ -96.376786240080619, 29.323603074104017 ], [ -96.37688024006799, 29.323647074424091 ], [ -96.377055241015086, 29.323675074611725 ], [ -96.37731224009049, 29.323675073884701 ], [ -96.37760124111027, 29.323653073965797 ], [ -96.377758240181976, 29.323653074547149 ], [ -96.378003241159931, 29.32367507444803 ], [ -96.378216240377697, 29.323719074555179 ], [ -96.378605240919399, 29.323863074391078 ], [ -96.378918240532201, 29.324033074318837 ], [ -96.37904424085427, 29.324160074013079 ], [ -96.379727240738035, 29.324913074467108 ], [ -96.379915241074784, 29.325062074512271 ], [ -96.379984241320187, 29.325106074480562 ], [ -96.380084241237824, 29.325150074764657 ], [ -96.380260241169907, 29.325199074392135 ], [ -96.380517241776104, 29.325221074128944 ], [ -96.381050241489291, 29.325337074332658 ], [ -96.381282241695658, 29.3254530744126 ], [ -96.382066242126143, 29.325887074426358 ], [ -96.382160241547524, 29.325948074799339 ], [ -96.382305241712871, 29.326129074829019 ], [ -96.382336241756462, 29.326201074910564 ], [ -96.382386241511853, 29.326250074584859 ], [ -96.382480241489262, 29.3263820749603 ], [ -96.382900242426004, 29.326789074888609 ], [ -96.383051241731664, 29.326888074879758 ], [ -96.383164242482692, 29.326932075043338 ], [ -96.383396242061309, 29.326993074941285 ], [ -96.383735242869861, 29.327037074647766 ], [ -96.383935242150301, 29.327048074463782 ], [ -96.384148242048155, 29.327109075099258 ], [ -96.384224242210536, 29.327136074378263 ], [ -96.384387242642063, 29.327219074972771 ], [ -96.384675242274497, 29.327384074419491 ], [ -96.385403242787845, 29.327692074689516 ], [ -96.385459242872997, 29.327709074718616 ], [ -96.385553243020269, 29.327709074410031 ], [ -96.385622243247624, 29.327687074876081 ], [ -96.38625624276267, 29.327621075038085 ], [ -96.386865243009353, 29.32763207477268 ], [ -96.387122243673815, 29.32770407501522 ], [ -96.387203242988278, 29.327742074954894 ], [ -96.38730424320002, 29.327814074358898 ], [ -96.387442243294203, 29.327951074321646 ], [ -96.38751124293664, 29.328050074687546 ], [ -96.38761124380116, 29.328265074433578 ], [ -96.387441243663375, 29.328386074699512 ], [ -96.387222242799126, 29.32850607469916 ], [ -96.387159243226563, 29.32851707506704 ], [ -96.387015243695245, 29.32852307498889 ], [ -96.386877243648087, 29.328550075223532 ], [ -96.386789242946307, 29.328578075249592 ], [ -96.386670243459719, 29.328660074532877 ], [ -96.386575243636713, 29.328699074695603 ], [ -96.385810243070281, 29.329116074653864 ], [ -96.385302243334237, 29.329435075054391 ], [ -96.38522024232644, 29.32954507552347 ], [ -96.385213243117263, 29.330012075309138 ], [ -96.385238242399652, 29.330199075164096 ], [ -96.38532624277876, 29.330402075038389 ], [ -96.385495242614695, 29.330688075532656 ], [ -96.385542242769475, 29.330795075569995 ], [ -96.385621242792865, 29.330974075416641 ], [ -96.385671242738482, 29.331139075451677 ], [ -96.385664242653817, 29.331436075323968 ], [ -96.385620242955142, 29.331771075595945 ], [ -96.385614242638837, 29.331909075571421 ], [ -96.385444242999469, 29.332414075367375 ], [ -96.385419242539001, 29.332585075381715 ], [ -96.385513243325363, 29.332975076138002 ], [ -96.385513243266161, 29.333041076183886 ], [ -96.385475242986118, 29.333322075787841 ], [ -96.385444243442521, 29.333448075837925 ], [ -96.385443243482371, 29.333657076387066 ], [ -96.385456243263945, 29.333706076368507 ], [ -96.385462243266772, 29.333822076445529 ], [ -96.385562242667959, 29.334113075860348 ], [ -96.385631243655581, 29.334256075907007 ], [ -96.386177242824743, 29.335098076500643 ], [ -96.386195242826247, 29.335164076187731 ], [ -96.386195242870045, 29.335263076664862 ], [ -96.386158243527333, 29.335444076514278 ], [ -96.386133243465196, 29.335477076472085 ], [ -96.386101243801008, 29.335499076354886 ], [ -96.385260242790466, 29.3358780764712 ], [ -96.385229243360641, 29.335933076354316 ], [ -96.385147243474123, 29.336026076559129 ], [ -96.38507224263148, 29.336142076094948 ], [ -96.385047242951416, 29.336197076171562 ], [ -96.385028243048637, 29.336301076263847 ], [ -96.384996243410669, 29.336664077040716 ], [ -96.384959242636356, 29.336796076763388 ], [ -96.384933242585063, 29.336851076167928 ], [ -96.384864243446415, 29.336933076296447 ], [ -96.384789243472753, 29.337071076902429 ], [ -96.384745243282779, 29.337126076416315 ], [ -96.384500243406777, 29.337378077192394 ], [ -96.384142243045929, 29.337653076836393 ], [ -96.383816243083487, 29.337922076440556 ], [ -96.383458242694914, 29.338582076971839 ], [ -96.383294242414649, 29.339016076867672 ], [ -96.383288242815127, 29.339296076837968 ], [ -96.383319242434112, 29.339879077190059 ], [ -96.383338242948824, 29.339995077683813 ], [ -96.383375243031935, 29.340116077362278 ], [ -96.383438242698602, 29.340215077454086 ], [ -96.383551242455781, 29.340363077409872 ], [ -96.383595242660306, 29.340457077602476 ], [ -96.383620242518802, 29.340567077341394 ], [ -96.383664243231294, 29.340902077175738 ], [ -96.38367624304162, 29.341325077166722 ], [ -96.38368224348396, 29.341369077162312 ], [ -96.383720243361537, 29.341441077592403 ], [ -96.383908242943605, 29.341639077895671 ], [ -96.384372243305776, 29.341958077547293 ], [ -96.384435243503674, 29.342013077430451 ], [ -96.384491243661358, 29.34207907742563 ], [ -96.384610242841177, 29.342189077924708 ], [ -96.384748243796039, 29.34239207734166 ], [ -96.384886243471371, 29.342519077385834 ], [ -96.385218243386831, 29.342761077485608 ], [ -96.385294243390831, 29.342843077470654 ], [ -96.385407242991448, 29.342931077616939 ], [ -96.385463243224265, 29.342997078077026 ], [ -96.385538243186019, 29.343140078059037 ], [ -96.385582243798183, 29.343333077872764 ], [ -96.385663243581959, 29.344306077696935 ], [ -96.385657243871464, 29.344410077911341 ], [ -96.385663243328125, 29.34454207796588 ], [ -96.385694243619938, 29.344691077887546 ], [ -96.385713243632992, 29.344724078639871 ], [ -96.385763243229036, 29.344889078156985 ], [ -96.385851244084677, 29.345032078032293 ], [ -96.385889244167686, 29.345158078426227 ], [ -96.385895243292666, 29.345235078659254 ], [ -96.385914243399242, 29.345285078688036 ], [ -96.385926243463018, 29.345455078478164 ], [ -96.385888243847759, 29.345510078558931 ], [ -96.385851244018923, 29.345537078008565 ], [ -96.385738243355263, 29.345664078284404 ], [ -96.385694243170562, 29.345680078519418 ], [ -96.385556243140542, 29.345790078811593 ], [ -96.385292243351515, 29.34596607887396 ], [ -96.385248243730274, 29.346021078559954 ], [ -96.385229243119213, 29.346120078481199 ], [ -96.385260243308466, 29.346488078479087 ], [ -96.385285243667568, 29.34660407872769 ], [ -96.385367244083312, 29.346824078688797 ], [ -96.38542924394801, 29.346939078989301 ], [ -96.385555243748485, 29.347121078370389 ], [ -96.385699243905762, 29.347247078442528 ], [ -96.385850243985658, 29.347324078578776 ], [ -96.385994243748144, 29.347385078423677 ], [ -96.386289243954323, 29.347440078546818 ], [ -96.386515243495552, 29.347462078468059 ], [ -96.38665324377655, 29.347500078967322 ], [ -96.386879243542424, 29.347589079071014 ], [ -96.386979243719551, 29.347638079031967 ], [ -96.387060244384699, 29.347726078353833 ], [ -96.387098244135274, 29.347820078820174 ], [ -96.387123243970294, 29.347858078623812 ], [ -96.387136243663605, 29.347979079133822 ], [ -96.38709224423549, 29.348171079222929 ], [ -96.387004243695245, 29.348309079131511 ], [ -96.386395243915373, 29.349034079464449 ], [ -96.386231244357958, 29.349347079146057 ], [ -96.386212244264982, 29.349391079415788 ], [ -96.386212244365083, 29.349430078973914 ], [ -96.386244243542791, 29.349628078892099 ], [ -96.386237243641091, 29.349727079252094 ], [ -96.386250244027309, 29.349837078811781 ], [ -96.386356244448038, 29.350145079668469 ], [ -96.386394244144171, 29.350293079115218 ], [ -96.386406243841961, 29.350771079543307 ], [ -96.386462243804615, 29.351079079472402 ], [ -96.386475244357825, 29.35122207935969 ], [ -96.386569244214982, 29.35154707980379 ], [ -96.386594244238623, 29.352052079544137 ], [ -96.386612244597913, 29.352102079669852 ], [ -96.386656244122392, 29.352157079883362 ], [ -96.387089244665816, 29.352503080035039 ], [ -96.387120244716797, 29.352542079934743 ], [ -96.387164244701765, 29.352630079440267 ], [ -96.387459244403146, 29.352866079509443 ], [ -96.387860244986143, 29.353235079965224 ], [ -96.387898244713753, 29.353306079819589 ], [ -96.387873244124705, 29.353400079835442 ], [ -96.387816244303878, 29.353482079822911 ], [ -96.38757824460086, 29.353939080143707 ], [ -96.387358244482925, 29.354395080379312 ], [ -96.38735224464854, 29.354494080429582 ], [ -96.387301244851841, 29.354609079771784 ], [ -96.387157244062891, 29.354724079884523 ], [ -96.387069244278308, 29.35476308055879 ], [ -96.387044244487527, 29.354790080616898 ], [ -96.386994244616602, 29.354818080433759 ], [ -96.386881244299914, 29.354840080542061 ], [ -96.386749243841308, 29.354884080640876 ], [ -96.386579243786187, 29.354878080634631 ], [ -96.386335244633756, 29.354840080518084 ], [ -96.386228244596879, 29.354851080123421 ], [ -96.386109243984734, 29.354933080065816 ], [ -96.385958244573288, 29.355076080250942 ], [ -96.38573824378885, 29.355356080503313 ], [ -96.385694244516273, 29.355455080818235 ], [ -96.385682244499975, 29.355499080016425 ], [ -96.38568224363047, 29.355548080534199 ], [ -96.385757243770044, 29.355669080596922 ], [ -96.386177244669057, 29.355999080310838 ], [ -96.386209244354575, 29.356032080042382 ], [ -96.386277244673053, 29.356143080691201 ], [ -96.386309244039111, 29.356230080967435 ], [ -96.386309244619227, 29.356258080375319 ], [ -96.386277243808863, 29.356362080306994 ], [ -96.386246244285701, 29.356423080426307 ], [ -96.386114244671305, 29.356588080337222 ], [ -96.385675244118175, 29.357000080958763 ], [ -96.385530244247477, 29.357165081099442 ], [ -96.385461244022764, 29.35733008059929 ], [ -96.38546124389147, 29.3574180806329 ], [ -96.385499244404244, 29.357484081088121 ], [ -96.385555244043601, 29.357544081128736 ], [ -96.385655243806497, 29.357627080374773 ], [ -96.385756244686803, 29.357682080802839 ], [ -96.385887244731364, 29.357786080740389 ], [ -96.385975244708334, 29.357891080514623 ], [ -96.386044244648389, 29.358012081055833 ], [ -96.386255244771021, 29.358580080755029 ], [ -96.38628924453262, 29.358671081391588 ], [ -96.386552244498048, 29.359238081557923 ], [ -96.386652244155499, 29.359298081556805 ], [ -96.386727244976839, 29.359326080902758 ], [ -96.386803244987235, 29.35937008097557 ], [ -96.386878244869393, 29.359419081330312 ], [ -96.38694124416763, 29.359480081493231 ], [ -96.386966244437019, 29.35954608149234 ], [ -96.386959244692903, 29.359683081217931 ], [ -96.386947244982139, 29.359749081628433 ], [ -96.386890244424762, 29.359837081268282 ], [ -96.386501245000687, 29.36010608096192 ], [ -96.386024244667894, 29.360518081532422 ], [ -96.385986244681135, 29.360612081103209 ], [ -96.385967244206753, 29.360733081167293 ], [ -96.385992244403838, 29.360865081099515 ], [ -96.38606724475143, 29.361008081929768 ], [ -96.386143244070297, 29.361101081919429 ], [ -96.386576244281287, 29.361382081899333 ], [ -96.386601244573441, 29.361426081727171 ], [ -96.386607244594444, 29.361547081250045 ], [ -96.386563244916033, 29.36167308204686 ], [ -96.386488244430126, 29.361772081193838 ], [ -96.386419244076151, 29.361811081670592 ], [ -96.386073244450898, 29.362063081698267 ], [ -96.38587224470966, 29.362289081861057 ], [ -96.385841244741428, 29.362409081536459 ], [ -96.385847244929096, 29.362530081996937 ], [ -96.385891243937422, 29.362596081487652 ], [ -96.386054244179746, 29.362717081537543 ], [ -96.386136244187227, 29.36276708214573 ], [ -96.38646224442148, 29.362921081463135 ], [ -96.38685724481789, 29.363037082001441 ], [ -96.387158244975737, 29.363081081909449 ], [ -96.387296244548693, 29.363130082226927 ], [ -96.387334244909354, 29.363174081826148 ], [ -96.387516245370733, 29.363482081812563 ], [ -96.387622245166042, 29.363851082108415 ], [ -96.387635244561963, 29.363928081804701 ], [ -96.387622245013176, 29.364159082233574 ], [ -96.387628244605864, 29.364208081865488 ], [ -96.387685244613095, 29.364285082534956 ], [ -96.387773244833312, 29.36436208242533 ], [ -96.387860244846848, 29.364379081991466 ], [ -96.387923245508574, 29.364379081946971 ], [ -96.388130244718084, 29.364346082395095 ], [ -96.388268245541283, 29.364340082086184 ], [ -96.388369244986421, 29.364351081702772 ], [ -96.388632245424787, 29.364450082520431 ], [ -96.388996245815306, 29.364478082130798 ], [ -96.389090245026622, 29.364495082413399 ], [ -96.389153245795967, 29.36452208202773 ], [ -96.389191245207925, 29.364550081805827 ], [ -96.389297245005565, 29.36466008191017 ], [ -96.389398245031259, 29.365143082161161 ], [ -96.389423245193271, 29.365380082158872 ], [ -96.389423245918422, 29.365451081883801 ], [ -96.389410245745935, 29.365506082632773 ], [ -96.389316245215852, 29.365644082104982 ], [ -96.389253245413443, 29.365715082548906 ], [ -96.389184244979987, 29.365748082603201 ], [ -96.389096245856194, 29.365814082254563 ], [ -96.388970245116255, 29.365869082137824 ], [ -96.388744244791809, 29.36592908252339 ], [ -96.388688245319557, 29.365968082183169 ], [ -96.388663245641851, 29.366012082691814 ], [ -96.38860624560651, 29.366270082695582 ], [ -96.388480244857973, 29.366737082980791 ], [ -96.388355245593218, 29.367078082695453 ], [ -96.388286244751455, 29.367122082388459 ], [ -96.388248245485045, 29.367133082716052 ], [ -96.387922245335716, 29.367182082717068 ], [ -96.387815244886468, 29.367237082389764 ], [ -96.387438244643306, 29.367386083198241 ], [ -96.387281244712739, 29.367468082477149 ], [ -96.387218244888544, 29.36751208265634 ], [ -96.387181245449312, 29.367600083069988 ], [ -96.387168244502334, 29.367666082788787 ], [ -96.387168244479554, 29.367732082460293 ], [ -96.387181245267897, 29.367781082836721 ], [ -96.387250244839549, 29.367930082641763 ], [ -96.387337244660472, 29.36802908318505 ], [ -96.387532244596756, 29.368199083275123 ], [ -96.387601244636031, 29.368298083358859 ], [ -96.387670245545138, 29.368485083264428 ], [ -96.387676245315134, 29.368562083095572 ], [ -96.38773224543543, 29.368854083036862 ], [ -96.387914245356043, 29.369381082887603 ], [ -96.387989244833093, 29.369486082841327 ], [ -96.388052245548167, 29.369502082807543 ], [ -96.388102245332931, 29.369491083565897 ], [ -96.388448244893993, 29.369371082876597 ], [ -96.388611245087588, 29.369338082659798 ], [ -96.388837245411295, 29.369327082781769 ], [ -96.389144245182422, 29.369387083358628 ], [ -96.389445245985883, 29.369464083373245 ], [ -96.389496245385502, 29.369492082713688 ], [ -96.389590245645977, 29.369575083084062 ], [ -96.389621245587449, 29.369629083197516 ], [ -96.389620245915694, 29.370586082895102 ], [ -96.389601245508786, 29.371004083729321 ], [ -96.389645245498443, 29.371191083626154 ], [ -96.38969524550221, 29.371295083760117 ], [ -96.389764245377322, 29.371367083288757 ], [ -96.389902245326368, 29.371466083699051 ], [ -96.39009124586417, 29.37179608368416 ], [ -96.390216246346696, 29.37205408349184 ], [ -96.390310246181315, 29.37273608404389 ], [ -96.390354246205746, 29.372824083799017 ], [ -96.390485246472664, 29.372961084162089 ], [ -96.390554245917158, 29.373011083966023 ], [ -96.390680246128056, 29.373137083783988 ], [ -96.390843246025213, 29.373269083733387 ], [ -96.391226246663507, 29.373660084061367 ], [ -96.391276246184432, 29.373742084247109 ], [ -96.391294246437994, 29.3737920843509 ], [ -96.391288246754243, 29.373836083842729 ], [ -96.39130124598924, 29.374105084301704 ], [ -96.391257246785798, 29.374281084029782 ], [ -96.391238246094758, 29.37447408409319 ], [ -96.391244245813596, 29.374715083843661 ], [ -96.391238246031278, 29.374759084228689 ], [ -96.391269246123301, 29.375001084238043 ], [ -96.391262245951197, 29.375074084222216 ], [ -96.391268246510947, 29.375168083879483 ], [ -96.391319246566667, 29.375322084191414 ], [ -96.391350246827713, 29.375503084653328 ], [ -96.391344246301543, 29.375619084598309 ], [ -96.391362246019057, 29.37571208404205 ], [ -96.391513246364127, 29.375844084109115 ], [ -96.39160724598274, 29.375910084509936 ], [ -96.391664246245298, 29.375938084640964 ], [ -96.391808246694964, 29.375976084168922 ], [ -96.392028246905824, 29.375987084285253 ], [ -96.392366246960421, 29.376053084211083 ], [ -96.392630246404522, 29.37614108401532 ], [ -96.392793246310859, 29.376229084712737 ], [ -96.392975246523363, 29.37636708470912 ], [ -96.393207247301277, 29.376576084667899 ], [ -96.393515246587938, 29.376807084368469 ], [ -96.393747246610573, 29.376961084796168 ], [ -96.394042247037802, 29.377120084450375 ], [ -96.394324246944166, 29.377362084686261 ], [ -96.394374247535779, 29.377434084444836 ], [ -96.3943872472625, 29.377478084804444 ], [ -96.394380247380909, 29.37792908433774 ], [ -96.394443246882588, 29.378083084609173 ], [ -96.394512247045427, 29.378154085060608 ], [ -96.394675247054408, 29.378253084303303 ], [ -96.394945247144065, 29.378341084536849 ], [ -96.395366247795437, 29.378402085154107 ], [ -96.395579247484378, 29.378407084393846 ], [ -96.395705247521136, 29.378451084986303 ], [ -96.395905247281604, 29.378589084427375 ], [ -96.395968248163172, 29.378693084577286 ], [ -96.396025247299931, 29.378814085049537 ], [ -96.39613824771294, 29.378919084689123 ], [ -96.396351247651168, 29.37895208462902 ], [ -96.397173248301513, 29.37891908463796 ], [ -96.39738024800738, 29.378925084950232 ], [ -96.397519247656419, 29.378969084510121 ], [ -96.397713247700139, 29.379073084983659 ], [ -96.397946248660901, 29.379234084743732 ], [ -96.398127248544881, 29.379359084928591 ], [ -96.398579248365181, 29.379623084684212 ], [ -96.398673248316868, 29.379651085161353 ], [ -96.398843248211051, 29.379673085243059 ], [ -96.399081248258341, 29.379629084658674 ], [ -96.399339248369017, 29.379557085035533 ], [ -96.400738248574811, 29.379321084906799 ], [ -96.400946248668205, 29.379300084593478 ], [ -96.400965249104345, 29.379302084456377 ], [ -96.401331249250518, 29.379096084529365 ], [ -96.401405249233036, 29.379055084293466 ], [ -96.401478249211848, 29.379013084405198 ], [ -96.402266249105708, 29.378570084592869 ], [ -96.402275249174224, 29.378565084603508 ], [ -96.402309248857293, 29.378549084538761 ], [ -96.403330249767436, 29.377969084366121 ], [ -96.407750250453873, 29.375387083302062 ], [ -96.408015250397654, 29.375251083751223 ], [ -96.410646251181532, 29.373803083720137 ], [ -96.410808251018508, 29.373714082875491 ], [ -96.411587251099263, 29.373279083063615 ], [ -96.412270251761242, 29.372896082771422 ], [ -96.417519252267439, 29.369960081948555 ], [ -96.417657252278772, 29.369883082545698 ], [ -96.417672253109771, 29.36987508208945 ], [ -96.418183252717498, 29.369589082541122 ], [ -96.418204253096732, 29.369577082525762 ], [ -96.418224252522748, 29.369566082104345 ], [ -96.41835825271518, 29.369491082258293 ], [ -96.419082253415311, 29.369086081683395 ], [ -96.424790254914825, 29.365894080969166 ], [ -96.424947254680689, 29.365806081499404 ], [ -96.433342256656871, 29.361111080204424 ], [ -96.438513257305459, 29.358229078788963 ], [ -96.438544257947257, 29.358212078918946 ], [ -96.438587257706203, 29.358188079153042 ], [ -96.440734258433579, 29.35699007857454 ], [ -96.461077263022602, 29.345637076022246 ], [ -96.466537264022548, 29.342592074959619 ], [ -96.466591264105617, 29.342562074838462 ], [ -96.466766263783725, 29.342465074721815 ], [ -96.47707526641554, 29.336748074001086 ], [ -96.477157265929051, 29.336702073812837 ], [ -96.481758267831253, 29.33415107274023 ], [ -96.481808267907596, 29.334123073232398 ], [ -96.481936267210557, 29.334052072764774 ], [ -96.481985267066264, 29.3340240732716 ], [ -96.490024269282344, 29.329545072099226 ], [ -96.491487269541068, 29.328741071077712 ], [ -96.491931269751248, 29.3284970716151 ], [ -96.493971270060058, 29.32737507066166 ], [ -96.496633270868188, 29.325911070810733 ], [ -96.49672527070588, 29.325862070490761 ], [ -96.496738270962581, 29.325854070736046 ], [ -96.496814270937193, 29.325808070724001 ], [ -96.500279271698574, 29.323737069819913 ], [ -96.50485827224648, 29.321182069336334 ], [ -96.504915272367285, 29.321150069536664 ], [ -96.505165272353224, 29.321011069054425 ], [ -96.510810274385165, 29.317865068856122 ], [ -96.51096527449684, 29.317779068425629 ], [ -96.512749274143673, 29.316767068519731 ], [ -96.512783274997048, 29.316759067925716 ], [ -96.513110274722038, 29.316583067911814 ], [ -96.513140275068196, 29.31655306862935 ], [ -96.513158274410841, 29.316556068351986 ], [ -96.5243042775585, 29.310343066298188 ], [ -96.52464727685576, 29.31014906668398 ], [ -96.52526027752441, 29.309823066826045 ], [ -96.531904279182271, 29.306122065683969 ], [ -96.537901279751495, 29.302782065069632 ], [ -96.551700283087058, 29.295098062378745 ], [ -96.557319284209072, 29.291968061884695 ], [ -96.56712728722006, 29.286507060534678 ], [ -96.567221287317551, 29.28645505996478 ], [ -96.57085328746281, 29.284432060050975 ], [ -96.57241128840856, 29.283572059209561 ], [ -96.572422288306768, 29.283559059220629 ], [ -96.57323728863814, 29.283105059353588 ], [ -96.573669288101527, 29.282864059856131 ], [ -96.573838288437898, 29.282770059483532 ], [ -96.580992290208755, 29.278787058186623 ], [ -96.581603290329838, 29.278447058392974 ], [ -96.583209290264307, 29.277554058454378 ], [ -96.586696291328863, 29.275612057108312 ], [ -96.586960291724253, 29.275465057126524 ], [ -96.586994291799385, 29.275447057919468 ], [ -96.595361293642256, 29.270787055947888 ], [ -96.599993293976098, 29.268207055622355 ], [ -96.600161294159463, 29.268113055133853 ], [ -96.600181294774316, 29.268102055112536 ], [ -96.604266295233217, 29.265828054839261 ], [ -96.60432829578923, 29.265800055387981 ], [ -96.604348295299076, 29.265785054800212 ], [ -96.612401297010521, 29.262143054224762 ], [ -96.617170298340525, 29.259983053609517 ], [ -96.617535298520551, 29.259801053288033 ], [ -96.617587298823338, 29.259775053193447 ], [ -96.622820300069364, 29.257170052823771 ], [ -96.625258300189174, 29.255956052042336 ], [ -96.626298300926408, 29.255389052158225 ], [ -96.626312300723683, 29.255381052426326 ], [ -96.627746301194534, 29.254598052355753 ], [ -96.629998301692851, 29.253374052031326 ], [ -96.635728302781061, 29.250255051099888 ], [ -96.640083303732538, 29.247936049748308 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 748, "Tract": "48471790200", "Area_SqMi": 137.14971384622515, "total_2009": 1534, "total_2010": 1501, "total_2011": 1450, "total_2012": 1602, "total_2013": 1662, "total_2014": 1840, "total_2015": 1868, "total_2016": 1918, "total_2017": 2010, "total_2018": 2128, "total_2019": 2224, "total_2020": 2137, "age1": 449, "age2": 1243, "age3": 656, "earn1": 276, "earn2": 674, "earn3": 1398, "naics_s01": 44, "naics_s02": 1, "naics_s03": 0, "naics_s04": 279, "naics_s05": 1020, "naics_s06": 52, "naics_s07": 102, "naics_s08": 33, "naics_s09": 0, "naics_s10": 18, "naics_s11": 4, "naics_s12": 38, "naics_s13": 0, "naics_s14": 6, "naics_s15": 269, "naics_s16": 313, "naics_s17": 8, "naics_s18": 79, "naics_s19": 38, "naics_s20": 44, "race1": 1950, "race2": 261, "race3": 29, "race4": 66, "race5": 3, "race6": 39, "ethnicity1": 1785, "ethnicity2": 563, "edu1": 393, "edu2": 553, "edu3": 568, "edu4": 385, "Shape_Length": 269326.60410888802, "Shape_Area": 3823499287.9515424, "total_2021": 2238, "total_2022": 2348 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.531731088836096, 30.695744380981168 ], [ -95.531747088877623, 30.695642380793746 ], [ -95.531649088504423, 30.695537381445689 ], [ -95.531620088390255, 30.69550638127091 ], [ -95.531482088442388, 30.695358380928479 ], [ -95.531258088117283, 30.69510738106252 ], [ -95.531147088779761, 30.694983380937281 ], [ -95.53096508845023, 30.694780380846474 ], [ -95.530351087950336, 30.694092380701349 ], [ -95.530062087952089, 30.693768380666501 ], [ -95.529816088021065, 30.693499380964084 ], [ -95.529648088314431, 30.693313380312084 ], [ -95.528595088044526, 30.692158380658519 ], [ -95.528372087308853, 30.691917379978058 ], [ -95.527846087768253, 30.691346380254203 ], [ -95.527476087700649, 30.690928380277413 ], [ -95.527294087607871, 30.690692380070775 ], [ -95.527127087469509, 30.690476380058129 ], [ -95.526878086952834, 30.690102379759789 ], [ -95.526798087291596, 30.689981380045307 ], [ -95.526505086760295, 30.689455379958456 ], [ -95.526399086769146, 30.689264379783193 ], [ -95.526177086862589, 30.688875379611495 ], [ -95.526152086943483, 30.688832379463669 ], [ -95.525957086327878, 30.688493379611913 ], [ -95.525428086673529, 30.687517380041925 ], [ -95.525310085953137, 30.68731237933746 ], [ -95.525094086770551, 30.686937379904666 ], [ -95.525031086512556, 30.686827379316362 ], [ -95.524962085928038, 30.686707379818227 ], [ -95.524670086733749, 30.686200379400681 ], [ -95.524573086133486, 30.686022379284079 ], [ -95.524323086613549, 30.685566378905119 ], [ -95.523722086285971, 30.684467378720417 ], [ -95.52350608552895, 30.68407237861673 ], [ -95.52327208557621, 30.683657379313377 ], [ -95.522974086163245, 30.68312537907541 ], [ -95.522515085594577, 30.682304378905979 ], [ -95.522140085261995, 30.681632378653333 ], [ -95.521815085047237, 30.681037378331848 ], [ -95.521598085214833, 30.680640378670223 ], [ -95.521219084690543, 30.679944377863638 ], [ -95.520742084726066, 30.679098378056622 ], [ -95.520354084865119, 30.678409377841774 ], [ -95.520016084268647, 30.677773377627268 ], [ -95.519821084314515, 30.677419377944688 ], [ -95.519986085099802, 30.677197377602536 ], [ -95.52003508425463, 30.677100377869142 ], [ -95.520170084394238, 30.676627377305863 ], [ -95.520273084277264, 30.676380377212968 ], [ -95.52036308463984, 30.676164377985319 ], [ -95.519999084810067, 30.675825377357278 ], [ -95.519682084434237, 30.675452377832759 ], [ -95.519316084713864, 30.675036377824398 ], [ -95.518925084035843, 30.674499377608647 ], [ -95.518639084044139, 30.674082377274175 ], [ -95.518358083645964, 30.673586377236781 ], [ -95.518074083991351, 30.673073376849167 ], [ -95.515079082523471, 30.667659375884273 ], [ -95.5122950821617, 30.662624375086153 ], [ -95.511846081762428, 30.661843375387839 ], [ -95.511565081890893, 30.661236375083707 ], [ -95.511318081413066, 30.660603374358352 ], [ -95.511199081081017, 30.660254374619647 ], [ -95.511077081469935, 30.659925374233076 ], [ -95.510894081234142, 30.659360374203029 ], [ -95.510734081332203, 30.658792374184348 ], [ -95.510678081056071, 30.658559374613212 ], [ -95.510609080962325, 30.658206374643992 ], [ -95.510530081153036, 30.657654374522156 ], [ -95.510524081500293, 30.657609373889041 ], [ -95.510502080955419, 30.657359374176707 ], [ -95.51042808069981, 30.656577374240108 ], [ -95.510226080944932, 30.654457373666492 ], [ -95.510046080943766, 30.652169373401943 ], [ -95.509919080701565, 30.650599372567921 ], [ -95.509850080274433, 30.650020372714806 ], [ -95.509595080213884, 30.64711637184374 ], [ -95.509467080153257, 30.645451371994461 ], [ -95.509350079891632, 30.644082371880767 ], [ -95.509330079884563, 30.643939371376131 ], [ -95.509296080739702, 30.643616371163734 ], [ -95.50923208046602, 30.643108371623779 ], [ -95.509081079985634, 30.641372370571911 ], [ -95.50900007962376, 30.640597371154506 ], [ -95.508963080309272, 30.640113370557856 ], [ -95.508884079461268, 30.639066370283736 ], [ -95.508862079859639, 30.638942370692774 ], [ -95.508736079358229, 30.637584370534594 ], [ -95.508658079249173, 30.636485370184086 ], [ -95.508629079413438, 30.636103370274654 ], [ -95.508567079463717, 30.635217369870286 ], [ -95.508432080040706, 30.634058369638129 ], [ -95.508380079492397, 30.633517369782876 ], [ -95.508202078902812, 30.631557369146005 ], [ -95.507907079201217, 30.627839368748287 ], [ -95.507660078445014, 30.625413367521993 ], [ -95.507603078415812, 30.62471836789793 ], [ -95.50755407851581, 30.62408036793639 ], [ -95.50754907852658, 30.624054367689936 ], [ -95.507459078878526, 30.622778367023908 ], [ -95.507319079037714, 30.621401367072139 ], [ -95.507252078315574, 30.620289366579765 ], [ -95.507024078329209, 30.618297366741235 ], [ -95.50687107830484, 30.616360366464285 ], [ -95.506759078030271, 30.614951365314639 ], [ -95.506558077885686, 30.61275636513686 ], [ -95.506491078164302, 30.612237365596027 ], [ -95.506391078253287, 30.611078364923319 ], [ -95.506264078001209, 30.60953836513146 ], [ -95.50600907712068, 30.606859364322471 ], [ -95.50597007711373, 30.606251364205558 ], [ -95.505724077026258, 30.603749363366209 ], [ -95.505538076923656, 30.601428362809603 ], [ -95.50534207678335, 30.599496363002689 ], [ -95.505231077304401, 30.597956362188164 ], [ -95.505087077117139, 30.596653362312654 ], [ -95.504885076876661, 30.594440361986941 ], [ -95.504833076714604, 30.593998361344344 ], [ -95.504743076900382, 30.592873361764454 ], [ -95.504606076334042, 30.591622361007477 ], [ -95.504479076480337, 30.59039236059002 ], [ -95.504234076283907, 30.58763936019513 ], [ -95.50416507627105, 30.586528360266261 ], [ -95.504043075633149, 30.585108360257255 ], [ -95.503827075883564, 30.582758359094314 ], [ -95.503726075610444, 30.58154035937882 ], [ -95.503574075193271, 30.57968035849191 ], [ -95.503372075659854, 30.577965358127049 ], [ -95.503202075206559, 30.576054358162125 ], [ -95.503188074940411, 30.575567357844307 ], [ -95.503148074897439, 30.57516035793736 ], [ -95.503142075620943, 30.574940357407961 ], [ -95.503105074825086, 30.574631357448236 ], [ -95.503028075297095, 30.573792357839253 ], [ -95.502969074932793, 30.573414357713538 ], [ -95.502964075191983, 30.573383357549051 ], [ -95.502948074807563, 30.573189357774872 ], [ -95.502909074735783, 30.572741357428697 ], [ -95.502891075414254, 30.572534357292959 ], [ -95.502865074688259, 30.572246357406851 ], [ -95.502831075565368, 30.571537356766683 ], [ -95.502809074743325, 30.571046357377533 ], [ -95.502750075417296, 30.570570357167217 ], [ -95.502691075390402, 30.569989356998729 ], [ -95.502647075279285, 30.569555356965854 ], [ -95.502618074405092, 30.569184356593688 ], [ -95.502591075231621, 30.568718356392438 ], [ -95.502547074320319, 30.568282356403163 ], [ -95.502539075048531, 30.568171356430227 ], [ -95.502495075023873, 30.567752356397651 ], [ -95.502441074523034, 30.567259356307726 ], [ -95.502395074336036, 30.566872356283227 ], [ -95.502377074596879, 30.566511356481335 ], [ -95.502365074289898, 30.56641535619055 ], [ -95.502273074783005, 30.565795356395402 ], [ -95.502271074810125, 30.565782356023856 ], [ -95.50214607489356, 30.565180355997512 ], [ -95.502115074725069, 30.56506135570384 ], [ -95.501990074982729, 30.56459035544399 ], [ -95.501986074352843, 30.56457535600638 ], [ -95.501857074876753, 30.564129355973346 ], [ -95.501850074061764, 30.564097355421474 ], [ -95.501767074302663, 30.563760355321431 ], [ -95.501624074623152, 30.563155355087062 ], [ -95.501448074607595, 30.562242355000553 ], [ -95.501323074001846, 30.561551355602948 ], [ -95.501061074260477, 30.560496354789503 ], [ -95.499473073751318, 30.554099353970031 ], [ -95.499359073096855, 30.553607353734392 ], [ -95.498870072991082, 30.55179835335197 ], [ -95.498858073109929, 30.551715352924305 ], [ -95.498606073128883, 30.550726353018227 ], [ -95.498436072389381, 30.550056352931637 ], [ -95.498247072958435, 30.549193352510034 ], [ -95.498002072976519, 30.54826335283331 ], [ -95.497863072596118, 30.547593352434312 ], [ -95.497481072877676, 30.546051352315292 ], [ -95.496205072028317, 30.54090235149026 ], [ -95.49600207170711, 30.539972350697969 ], [ -95.495762071368603, 30.538926350562466 ], [ -95.495452072003204, 30.537740350819998 ], [ -95.495200071066037, 30.536664350181198 ], [ -95.495017071571993, 30.536014350523541 ], [ -95.494852071732311, 30.535272350195282 ], [ -95.49462607107543, 30.534319349672014 ], [ -95.494609071000468, 30.534249350207407 ], [ -95.49440007094806, 30.533342349982611 ], [ -95.494224070636378, 30.532619350021392 ], [ -95.494080070714702, 30.532059349427012 ], [ -95.493964071215359, 30.531615349031554 ], [ -95.493816071151471, 30.530983349354248 ], [ -95.493720070368624, 30.53056834879478 ], [ -95.493587070952131, 30.529941348939467 ], [ -95.493470070422035, 30.52946234874387 ], [ -95.493345070230646, 30.528939349032779 ], [ -95.493246070040328, 30.528533349273552 ], [ -95.493111070321433, 30.527945348591217 ], [ -95.492975070642387, 30.527414349026639 ], [ -95.492845070167192, 30.526858348893143 ], [ -95.492696069922943, 30.52629534808564 ], [ -95.492595069916575, 30.525830348410391 ], [ -95.49242306974277, 30.525091348354124 ], [ -95.492303069885367, 30.524544347804113 ], [ -95.492144070221855, 30.523951347546113 ], [ -95.492037070489147, 30.523529348260769 ], [ -95.49192606987053, 30.523021347943644 ], [ -95.491830070156496, 30.522620347748912 ], [ -95.491716069474251, 30.522176347719569 ], [ -95.491578069773325, 30.521642347500318 ], [ -95.491371069716067, 30.52081634743093 ], [ -95.491354069438998, 30.520748347488151 ], [ -95.491292069157964, 30.520394346847812 ], [ -95.491291069683697, 30.520382347397174 ], [ -95.491201070065131, 30.519873347172087 ], [ -95.491187069089335, 30.519761347255166 ], [ -95.491135069272104, 30.519327347068153 ], [ -95.491129069239321, 30.519237347131742 ], [ -95.491102069557172, 30.519066346617251 ], [ -95.49108406925167, 30.518782346537453 ], [ -95.491083069527889, 30.518513346926884 ], [ -95.491081069127219, 30.51846434700586 ], [ -95.491064069991296, 30.518240346807673 ], [ -95.491060069912407, 30.517770346469167 ], [ -95.491057069794977, 30.517691346646899 ], [ -95.491068069772737, 30.517202346789912 ], [ -95.491078069098023, 30.51660934648951 ], [ -95.49113706895298, 30.515959346189852 ], [ -95.491161069807205, 30.515429346271606 ], [ -95.491200069272907, 30.514794345706601 ], [ -95.491227069814059, 30.514199346446585 ], [ -95.491259069097964, 30.513633345459596 ], [ -95.491289069164637, 30.513016345539221 ], [ -95.491288068883023, 30.51298434592416 ], [ -95.491317068796988, 30.512376345306627 ], [ -95.491357069683602, 30.51174134541461 ], [ -95.491384068830712, 30.511172345168706 ], [ -95.491384069295449, 30.510991345221626 ], [ -95.491405068732405, 30.510502345461937 ], [ -95.491467069050884, 30.509760345066731 ], [ -95.491486069646939, 30.509417345287538 ], [ -95.49152106924204, 30.508836344985003 ], [ -95.491453068976185, 30.508836344940939 ], [ -95.491272069282388, 30.508838344574961 ], [ -95.485947067808581, 30.508857345222381 ], [ -95.485722067727735, 30.508858344826098 ], [ -95.484352066912564, 30.50886634499869 ], [ -95.483348066550334, 30.508865345338705 ], [ -95.483337067521845, 30.508865344933657 ], [ -95.483033067040878, 30.508874344911998 ], [ -95.481082066034006, 30.508871345016125 ], [ -95.478423065931864, 30.50887734566744 ], [ -95.478282065603381, 30.508877345434207 ], [ -95.47332406431758, 30.508889345917215 ], [ -95.469366063443061, 30.508893345635283 ], [ -95.466259062924834, 30.508894345763284 ], [ -95.46606706232447, 30.508894346220259 ], [ -95.461402061448183, 30.50889434572936 ], [ -95.46072506076969, 30.508894345707848 ], [ -95.456135060232782, 30.508890345810251 ], [ -95.453111059477393, 30.508899346286373 ], [ -95.448888057980412, 30.508883346277383 ], [ -95.448792058467006, 30.508882346558714 ], [ -95.448756058173061, 30.508881346510083 ], [ -95.448723058653883, 30.508881346703735 ], [ -95.448698057875603, 30.508881346104062 ], [ -95.44868105785747, 30.508881346573396 ], [ -95.448658058050157, 30.508881346255233 ], [ -95.44729205794448, 30.508869346183413 ], [ -95.439843055441969, 30.508898346462111 ], [ -95.439828056360511, 30.508898347138484 ], [ -95.435931054870693, 30.508884346646987 ], [ -95.435719055199655, 30.508883346548515 ], [ -95.435135054507157, 30.508879346516412 ], [ -95.430430053462587, 30.508850347225433 ], [ -95.426192051912949, 30.50882334716507 ], [ -95.426134052341027, 30.50882334701436 ], [ -95.426090052395764, 30.508823347405283 ], [ -95.420987051050275, 30.508848347681383 ], [ -95.417867050072161, 30.508858347794785 ], [ -95.417781049952893, 30.508858347501334 ], [ -95.417471049745131, 30.50885934714184 ], [ -95.41736805049274, 30.508859347659818 ], [ -95.417340050141618, 30.508860347241249 ], [ -95.417318050633767, 30.508860347372249 ], [ -95.417288050272319, 30.508860347271597 ], [ -95.417255050473926, 30.50886034789103 ], [ -95.416877049655213, 30.50886134752896 ], [ -95.415889049894716, 30.508864347993853 ], [ -95.414841049061437, 30.508867348064008 ], [ -95.411803048499735, 30.50887734774906 ], [ -95.411661048347042, 30.50887634810795 ], [ -95.41161404881376, 30.508876347991752 ], [ -95.411584048415676, 30.508876347525717 ], [ -95.411519048188694, 30.508876348164392 ], [ -95.411318048760663, 30.508876347476541 ], [ -95.41107604857838, 30.508876347709865 ], [ -95.403226046139707, 30.508877348213701 ], [ -95.402225046738693, 30.508865347795435 ], [ -95.39880804502107, 30.508824348564719 ], [ -95.395859044208848, 30.508795348606167 ], [ -95.392403043679963, 30.508853348934448 ], [ -95.381180041075055, 30.508924349030735 ], [ -95.381120040778271, 30.508924349024991 ], [ -95.380907040510479, 30.50892534857535 ], [ -95.375366039273629, 30.508943349149433 ], [ -95.368264037457251, 30.508927349561556 ], [ -95.368196037018791, 30.5089273497255 ], [ -95.368128037653833, 30.508927348981754 ], [ -95.368041037883955, 30.50892734968976 ], [ -95.36794203720207, 30.508927349686164 ], [ -95.367875037281536, 30.508927349529529 ], [ -95.367828037178, 30.508927349503296 ], [ -95.367795036939924, 30.508927349758594 ], [ -95.367771037165966, 30.508927349375728 ], [ -95.367753037311275, 30.508927349761926 ], [ -95.367740036922541, 30.508927349274074 ], [ -95.366747037105483, 30.508933349015429 ], [ -95.366055036903219, 30.508937349252893 ], [ -95.365717037348105, 30.508942349541584 ], [ -95.36568803706264, 30.508942349557309 ], [ -95.365302036395519, 30.508939349275757 ], [ -95.364387036639698, 30.508933349345355 ], [ -95.364364036308729, 30.508933349097873 ], [ -95.364352036372537, 30.508933349954425 ], [ -95.364052036574307, 30.508931349607717 ], [ -95.36402103629726, 30.508931349554068 ], [ -95.363012035909335, 30.50893834925736 ], [ -95.361873035601221, 30.508921349760573 ], [ -95.362074036202586, 30.508837349171245 ], [ -95.362106036241855, 30.508799349433716 ], [ -95.362118035603331, 30.508744349229101 ], [ -95.362061035606715, 30.508661349261303 ], [ -95.361985036090587, 30.508618349748648 ], [ -95.361940036054335, 30.508618349218679 ], [ -95.361833036214392, 30.50865634949805 ], [ -95.361706035976823, 30.508728349277369 ], [ -95.36166803583545, 30.508766349681292 ], [ -95.361629035675421, 30.508766349189585 ], [ -95.361617035344381, 30.508629349965016 ], [ -95.361652035616714, 30.508600349602691 ], [ -95.361718036176228, 30.508546349702979 ], [ -95.361731035635799, 30.508519349099718 ], [ -95.361737035570314, 30.50845334942267 ], [ -95.361718036257315, 30.508381349259338 ], [ -95.36167403544755, 30.508326349842015 ], [ -95.361515035384812, 30.508282349807274 ], [ -95.361475035678239, 30.508262349482905 ], [ -95.361439035952571, 30.508244349270818 ], [ -95.36142003534917, 30.508216349204908 ], [ -95.361432035736172, 30.508178349403995 ], [ -95.361585036195578, 30.508073349407002 ], [ -95.361826035592287, 30.507886349443787 ], [ -95.361813036303602, 30.507820349477537 ], [ -95.361762035750303, 30.507793349776481 ], [ -95.361559035984371, 30.507727349380328 ], [ -95.361445035232023, 30.507661349320344 ], [ -95.361277036016801, 30.507527349069797 ], [ -95.361114035588287, 30.507397349196104 ], [ -95.361032035261559, 30.507271349575859 ], [ -95.36098103589643, 30.507139349710908 ], [ -95.36097503574922, 30.507101349382911 ], [ -95.360987035716349, 30.507068348894681 ], [ -95.361044035335965, 30.50707334940493 ], [ -95.361073035250016, 30.507087349352499 ], [ -95.361171035866974, 30.507134348945417 ], [ -95.361229035727007, 30.507111349533684 ], [ -95.36127303613624, 30.507057348915954 ], [ -95.361292036131658, 30.506963349681218 ], [ -95.361292035484681, 30.506903348955674 ], [ -95.361260035142493, 30.5068423496059 ], [ -95.360923035936338, 30.506608349026685 ], [ -95.360905035844908, 30.506595349378628 ], [ -95.360875035496136, 30.506567349626842 ], [ -95.360828035065978, 30.506523349601075 ], [ -95.360841035808207, 30.506380348881667 ], [ -95.360828035272462, 30.506314348713797 ], [ -95.360860035668708, 30.506001349311433 ], [ -95.360828035641518, 30.505825349444773 ], [ -95.360637035552884, 30.505721349463261 ], [ -95.360625034905965, 30.505594349408039 ], [ -95.360701035226512, 30.505440349009078 ], [ -95.360694035341481, 30.505407348969669 ], [ -95.360644035599179, 30.505352348919779 ], [ -95.360421035171413, 30.505171348488414 ], [ -95.360193035765505, 30.50513334936511 ], [ -95.360104035046206, 30.505105348922509 ], [ -95.359983035315949, 30.505056348633044 ], [ -95.359919035141857, 30.505022348781964 ], [ -95.359793035330995, 30.504957349265762 ], [ -95.359710035603754, 30.504935348892836 ], [ -95.359621035435964, 30.504853349222614 ], [ -95.359592034754542, 30.504751349233562 ], [ -95.359583034844306, 30.504721348922288 ], [ -95.359577035441859, 30.504578348430442 ], [ -95.359545034593182, 30.504545349219196 ], [ -95.359392035125367, 30.504451349005816 ], [ -95.359163035001203, 30.504374348985493 ], [ -95.358863035016569, 30.506199348834212 ], [ -95.358859034563068, 30.506243349504992 ], [ -95.358853034549057, 30.506300349509917 ], [ -95.358827035128655, 30.506560348940667 ], [ -95.358804035349252, 30.506788349716288 ], [ -95.358787035167339, 30.506952349630641 ], [ -95.358779035405831, 30.507028349013282 ], [ -95.358601035472972, 30.508804350057193 ], [ -95.358572035040467, 30.509078350186694 ], [ -95.358565034589873, 30.509142350126364 ], [ -95.358559034651194, 30.509206349974022 ], [ -95.358557035335195, 30.509230349569886 ], [ -95.35830203465477, 30.51175135040166 ], [ -95.358276035031452, 30.51200835039527 ], [ -95.358272034714645, 30.512047350734289 ], [ -95.358270034909253, 30.512062350642523 ], [ -95.358263035075282, 30.512128350215203 ], [ -95.358249034697522, 30.512267350155476 ], [ -95.358207035383529, 30.512684350865865 ], [ -95.358152035314959, 30.513231350703741 ], [ -95.35735303527737, 30.521126352519694 ], [ -95.357312035845041, 30.521529352278439 ], [ -95.357284035525836, 30.52180635271036 ], [ -95.357282034837269, 30.521822352368833 ], [ -95.357246035754386, 30.522178352917027 ], [ -95.357236035395246, 30.522273352703706 ], [ -95.357206035484921, 30.522567352560753 ], [ -95.357181035285635, 30.522816353019287 ], [ -95.357176035139787, 30.52286935299891 ], [ -95.357097035555455, 30.523659352798759 ], [ -95.357061035715205, 30.524014353121181 ], [ -95.357058034949475, 30.524042352904349 ], [ -95.35705703558105, 30.524051352603877 ], [ -95.356829035107864, 30.52629835318147 ], [ -95.356820034953316, 30.526383353238636 ], [ -95.356620035393419, 30.528379354051896 ], [ -95.356614035348031, 30.52843735413111 ], [ -95.356613035744175, 30.528450354111495 ], [ -95.356611035156305, 30.528471353874501 ], [ -95.356570035850979, 30.528921354080374 ], [ -95.356564035506125, 30.528942354221027 ], [ -95.356331035507409, 30.530978353866956 ], [ -95.356118035639284, 30.532981354354167 ], [ -95.356114035087245, 30.533023354696283 ], [ -95.356110035675769, 30.533063354467178 ], [ -95.355680036181056, 30.537164355305897 ], [ -95.355677035495532, 30.53719635518215 ], [ -95.355644035824938, 30.537508355599584 ], [ -95.355611035837725, 30.537800355405903 ], [ -95.355578035806133, 30.538145356070075 ], [ -95.355387035716262, 30.539942355956512 ], [ -95.355378035666888, 30.540028356132112 ], [ -95.355269035552823, 30.541063356658267 ], [ -95.355117035395224, 30.542514356227244 ], [ -95.354600036251369, 30.547442357330009 ], [ -95.354534035789271, 30.548075357666519 ], [ -95.353902036144731, 30.554109359303563 ], [ -95.353291035776508, 30.560041360470205 ], [ -95.352890036148963, 30.563933361019334 ], [ -95.352833036337771, 30.564485361191313 ], [ -95.352754035937068, 30.56525336114882 ], [ -95.352741035860234, 30.565368361008424 ], [ -95.352590035868019, 30.566755361734369 ], [ -95.352582036283749, 30.566827362020355 ], [ -95.352577036141611, 30.566874361739057 ], [ -95.352575036180127, 30.566893361414834 ], [ -95.35257403654704, 30.566908361694459 ], [ -95.352573036774984, 30.56691836190527 ], [ -95.35256303633048, 30.567007361267638 ], [ -95.35250303607107, 30.56755736194749 ], [ -95.352493036093563, 30.567645361458343 ], [ -95.352480036138701, 30.567764361397582 ], [ -95.352453036035087, 30.568009361949752 ], [ -95.352334035980846, 30.569112361956169 ], [ -95.352195035901644, 30.570404362347293 ], [ -95.35219403635746, 30.570417362037173 ], [ -95.352188036666448, 30.570485362704041 ], [ -95.352026036196861, 30.572041363092051 ], [ -95.352018036310525, 30.572126362750364 ], [ -95.352009036308999, 30.572211362473524 ], [ -95.351446036755306, 30.577648363975655 ], [ -95.35139703685411, 30.578125364251239 ], [ -95.351389036724385, 30.578207364137345 ], [ -95.351365036263132, 30.578441364046064 ], [ -95.351046036366071, 30.581352364668504 ], [ -95.350713037153724, 30.584523365242084 ], [ -95.350567036771153, 30.58595236587178 ], [ -95.349472036580281, 30.596707368037158 ], [ -95.349147036814102, 30.600082368195377 ], [ -95.347627037754677, 30.615883371458409 ], [ -95.347575037531612, 30.616301372118539 ], [ -95.346584037926505, 30.624332373872981 ], [ -95.346477037086046, 30.625202373339977 ], [ -95.346120037597856, 30.630872374989423 ], [ -95.346119037330212, 30.630884374427847 ], [ -95.346116037884414, 30.630932374887699 ], [ -95.346052038264546, 30.631957375165896 ], [ -95.34587003767146, 30.634847375242053 ], [ -95.345854037850231, 30.635110375934687 ], [ -95.345496038134229, 30.640818377052579 ], [ -95.345131038134681, 30.646559378072418 ], [ -95.345122038201538, 30.646695378034483 ], [ -95.34473103862598, 30.652869378955977 ], [ -95.34466303868254, 30.653878379473745 ], [ -95.344630038349266, 30.654379379765889 ], [ -95.344276038882043, 30.659661380571912 ], [ -95.34416003848898, 30.661406381302669 ], [ -95.343922038488429, 30.665092382004772 ], [ -95.343734039073539, 30.668013382274555 ], [ -95.343602038770044, 30.670081382504087 ], [ -95.343494039117218, 30.671771383265902 ], [ -95.343493038781901, 30.671782383554309 ], [ -95.343493039204219, 30.671792383147572 ], [ -95.343490039392833, 30.671843382749994 ], [ -95.343488038728765, 30.671868383561392 ], [ -95.34311303960375, 30.677141384378732 ], [ -95.34273603930248, 30.682291384989451 ], [ -95.342667039412561, 30.683224385425831 ], [ -95.342303039958395, 30.688192386557116 ], [ -95.342290039235493, 30.688381386542158 ], [ -95.342250039612821, 30.688960386403078 ], [ -95.341986039973676, 30.692811387103713 ], [ -95.341534039401225, 30.699393389102053 ], [ -95.341357040304459, 30.701987389131201 ], [ -95.341078040032613, 30.705702389971805 ], [ -95.341011039778323, 30.706582389805863 ], [ -95.341003040161411, 30.70668839060799 ], [ -95.340985039845833, 30.706934390320182 ], [ -95.340377040113481, 30.715022391893605 ], [ -95.339934040348908, 30.720936392843281 ], [ -95.339917040403563, 30.72115239349613 ], [ -95.339913040373787, 30.721198392937172 ], [ -95.339912040822639, 30.721211393337704 ], [ -95.339906040869025, 30.721287393459228 ], [ -95.339281040862318, 30.729612395272245 ], [ -95.339113040489053, 30.731747395100808 ], [ -95.339109041288737, 30.731795395573467 ], [ -95.338639040569362, 30.737756396696735 ], [ -95.338632040794579, 30.737831396365923 ], [ -95.341910041593351, 30.737426396183043 ], [ -95.344348042391033, 30.73704539589021 ], [ -95.350652044431854, 30.736061396028013 ], [ -95.351078044520975, 30.735995395584943 ], [ -95.353591044870981, 30.735603395630374 ], [ -95.357864045999193, 30.734876395197631 ], [ -95.365309048194575, 30.733735394996209 ], [ -95.371531049219612, 30.732781394404672 ], [ -95.373279050100862, 30.732513394064895 ], [ -95.378561051499418, 30.731703393905029 ], [ -95.378739051448022, 30.73167539377285 ], [ -95.381396052111938, 30.731260394052434 ], [ -95.388084053625491, 30.73021439324933 ], [ -95.391398054032024, 30.729696392780671 ], [ -95.391809054666709, 30.72963139299052 ], [ -95.39205405463747, 30.729593393260359 ], [ -95.397621056272243, 30.728723392672546 ], [ -95.397811056228605, 30.728694392334781 ], [ -95.398740056121909, 30.728551392173394 ], [ -95.399287056091993, 30.728468392563009 ], [ -95.399925056275137, 30.728370392903322 ], [ -95.400657056629669, 30.728275392864095 ], [ -95.40150405626062, 30.728133392530516 ], [ -95.401664056550729, 30.7281093926448 ], [ -95.402656057204567, 30.727958391899286 ], [ -95.403228056958568, 30.727817392609765 ], [ -95.403808057513544, 30.727666392396415 ], [ -95.404563057520804, 30.72736739168284 ], [ -95.404669057481755, 30.72732539223918 ], [ -95.404685057819478, 30.727319392148257 ], [ -95.405235057573094, 30.727041391963425 ], [ -95.405532058041544, 30.726873392222593 ], [ -95.40575305732736, 30.726743391459578 ], [ -95.407829058551499, 30.725360391465628 ], [ -95.409217058619888, 30.724403391210696 ], [ -95.410659058928232, 30.723439390845179 ], [ -95.410842058645784, 30.723321391269032 ], [ -95.411681059475612, 30.722743390695179 ], [ -95.411910059536595, 30.72259139056634 ], [ -95.41308505982083, 30.721753391002597 ], [ -95.413581059524248, 30.721460390949883 ], [ -95.413902060031447, 30.721263390773593 ], [ -95.41407706011546, 30.721116390221212 ], [ -95.41456505981175, 30.720718390545613 ], [ -95.415084060254884, 30.72022738993326 ], [ -95.415496060020217, 30.719899390300373 ], [ -95.41561106019644, 30.719812390213914 ], [ -95.416129059737571, 30.719249390149894 ], [ -95.416755060063139, 30.718591389689667 ], [ -95.420041060727698, 30.715272389238017 ], [ -95.420593060710502, 30.714715389168589 ], [ -95.421363061612666, 30.713943389095679 ], [ -95.423393061746538, 30.711591388001125 ], [ -95.425056061941788, 30.709836387948872 ], [ -95.425369061521309, 30.709533387806115 ], [ -95.425475062438778, 30.709436387884221 ], [ -95.425697061687373, 30.709245387617418 ], [ -95.426040062457758, 30.708972387281186 ], [ -95.426406061836019, 30.708715387424434 ], [ -95.426689062215644, 30.708539387463432 ], [ -95.427177062828463, 30.708257387428379 ], [ -95.427589061985273, 30.708055387121103 ], [ -95.428001062485706, 30.707874387266834 ], [ -95.428436062349704, 30.707711387574815 ], [ -95.428825063000048, 30.707586386781678 ], [ -95.428871062807318, 30.707568387535549 ], [ -95.429321062882977, 30.707448386966487 ], [ -95.429778062610254, 30.707349387196491 ], [ -95.42984606295667, 30.707337387270695 ], [ -95.430236063205399, 30.707271386884926 ], [ -95.430702063315522, 30.707214387472423 ], [ -95.431106063328755, 30.707183387307971 ], [ -95.433799063830733, 30.70702638679095 ], [ -95.434138064413119, 30.70700738732662 ], [ -95.436248064389616, 30.706884386379581 ], [ -95.436805064332404, 30.706857386333287 ], [ -95.439346065516219, 30.706733386718529 ], [ -95.44046106603426, 30.706701386579088 ], [ -95.44088706580078, 30.706689386929842 ], [ -95.443466066393313, 30.706529386433743 ], [ -95.444573067135551, 30.706438386359714 ], [ -95.444785066614529, 30.706420386513219 ], [ -95.44578106691695, 30.706385386379516 ], [ -95.44713306699623, 30.706337386706767 ], [ -95.449485067710654, 30.706254386271791 ], [ -95.44985906828046, 30.706237386624281 ], [ -95.452706068613367, 30.706089386110119 ], [ -95.463697072028708, 30.70551638574516 ], [ -95.466277072614062, 30.705381385659084 ], [ -95.471961073600198, 30.70508538553651 ], [ -95.472854074156274, 30.705064385347082 ], [ -95.473434074438813, 30.705079385460117 ], [ -95.473785074097094, 30.705100384850976 ], [ -95.474006073847463, 30.705116385070269 ], [ -95.474586074842705, 30.705173384917433 ], [ -95.475158074189395, 30.705253384913792 ], [ -95.475980075049165, 30.705384385307795 ], [ -95.480531076291811, 30.706111385271015 ], [ -95.482520076624212, 30.706428384909049 ], [ -95.485709077646732, 30.706937385033704 ], [ -95.487955078149099, 30.70729538492267 ], [ -95.490373078239813, 30.707681384879812 ], [ -95.491225078857696, 30.707817385178231 ], [ -95.492551078688976, 30.708029385352898 ], [ -95.492713079496255, 30.708055385306512 ], [ -95.493438079714153, 30.708169385330265 ], [ -95.495383079381014, 30.708479385109424 ], [ -95.495568079621506, 30.708509385180164 ], [ -95.496201079983351, 30.70861038485581 ], [ -95.497737080768815, 30.708855385300925 ], [ -95.498701081101444, 30.709009385012255 ], [ -95.499583081359489, 30.709149385326722 ], [ -95.501939081935447, 30.709525384857304 ], [ -95.503280082398149, 30.709739385169009 ], [ -95.503364082077496, 30.709750384560639 ], [ -95.504081082510353, 30.709865385095899 ], [ -95.50489008277286, 30.709995384514986 ], [ -95.506354082762101, 30.710228384754551 ], [ -95.507675082638087, 30.710439384825346 ], [ -95.510355083746774, 30.710865384504864 ], [ -95.510409084045349, 30.710873385327865 ], [ -95.51062708388487, 30.710908384940854 ], [ -95.511100084217148, 30.7109843853037 ], [ -95.511361083549957, 30.711045385038904 ], [ -95.51242908385143, 30.711255384751812 ], [ -95.512562084032382, 30.711295385078575 ], [ -95.512757084460532, 30.711353384515419 ], [ -95.512857084075577, 30.71138338508921 ], [ -95.513069084860192, 30.711447384644725 ], [ -95.513221084812102, 30.711502385057106 ], [ -95.513709085096721, 30.711679385171077 ], [ -95.514976085091121, 30.712107385376527 ], [ -95.517466086018615, 30.712941385224259 ], [ -95.518003085575671, 30.713121385285508 ], [ -95.518752085657425, 30.713375385049307 ], [ -95.519524086338862, 30.713638384834475 ], [ -95.521262086465597, 30.71423038543282 ], [ -95.521783087366089, 30.71441538493233 ], [ -95.522122086766288, 30.714535384954115 ], [ -95.522963086870419, 30.714833385305866 ], [ -95.523155087621447, 30.714910385006302 ], [ -95.523612087912667, 30.715095384840716 ], [ -95.523991087304225, 30.715248385576633 ], [ -95.524330087438415, 30.715439385165581 ], [ -95.524383087723763, 30.715469385134657 ], [ -95.52470908745795, 30.715653385703682 ], [ -95.524797087491592, 30.715703385226231 ], [ -95.525274087376033, 30.715974385648341 ], [ -95.525525088384285, 30.716116385296544 ], [ -95.525520087567671, 30.7157093850136 ], [ -95.525519088335372, 30.714667385533655 ], [ -95.525562087336041, 30.714097384944399 ], [ -95.525627088343114, 30.713664384657339 ], [ -95.525644087847112, 30.713553384535302 ], [ -95.525912088022594, 30.712542384326916 ], [ -95.52616608757387, 30.711802384734238 ], [ -95.526691088157747, 30.710591384025342 ], [ -95.526987087809445, 30.710050383699983 ], [ -95.527101088451587, 30.709831384357631 ], [ -95.527443088264363, 30.709171383778578 ], [ -95.527448088178105, 30.709161384179392 ], [ -95.527575088263177, 30.708916383603714 ], [ -95.527646088442793, 30.708779384165101 ], [ -95.527691087758882, 30.708693383816708 ], [ -95.528284088121353, 30.707598383446118 ], [ -95.528359088645615, 30.707459383940925 ], [ -95.528968088617887, 30.706275383418017 ], [ -95.529151088014999, 30.705913383632197 ], [ -95.529198087926417, 30.705821383434223 ], [ -95.529261088683455, 30.705697383378102 ], [ -95.529624088753508, 30.70498738283035 ], [ -95.530019088906954, 30.70412038286009 ], [ -95.530249088377033, 30.703476382448446 ], [ -95.530277088158556, 30.70338938304408 ], [ -95.53028808852055, 30.70335338229874 ], [ -95.530496089022023, 30.702697382702649 ], [ -95.530560088244457, 30.702444382464442 ], [ -95.530807088792145, 30.701477382716124 ], [ -95.530817088972739, 30.701419382436452 ], [ -95.530939088087976, 30.70067538163979 ], [ -95.531063088284327, 30.699942381693283 ], [ -95.531487088728241, 30.697458381232408 ], [ -95.531500088422646, 30.697380381295176 ], [ -95.531569088189983, 30.69678838118551 ], [ -95.531731088836096, 30.695744380981168 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 749, "Tract": "48471790500", "Area_SqMi": 2.7307933633233232, "total_2009": 13921, "total_2010": 12847, "total_2011": 12354, "total_2012": 12181, "total_2013": 11764, "total_2014": 11525, "total_2015": 14643, "total_2016": 15296, "total_2017": 15302, "total_2018": 2431, "total_2019": 2400, "total_2020": 2423, "age1": 884, "age2": 1064, "age3": 542, "earn1": 753, "earn2": 969, "earn3": 768, "naics_s01": 10, "naics_s02": 0, "naics_s03": 0, "naics_s04": 90, "naics_s05": 36, "naics_s06": 33, "naics_s07": 728, "naics_s08": 5, "naics_s09": 31, "naics_s10": 204, "naics_s11": 44, "naics_s12": 376, "naics_s13": 0, "naics_s14": 31, "naics_s15": 81, "naics_s16": 86, "naics_s17": 81, "naics_s18": 432, "naics_s19": 149, "naics_s20": 73, "race1": 2063, "race2": 298, "race3": 26, "race4": 63, "race5": 3, "race6": 37, "ethnicity1": 1914, "ethnicity2": 576, "edu1": 283, "edu2": 477, "edu3": 507, "edu4": 339, "Shape_Length": 41111.920349684275, "Shape_Area": 76129845.16990228, "total_2021": 2242, "total_2022": 2490 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.589233105695286, 30.737124387509901 ], [ -95.589464105209458, 30.736855387376654 ], [ -95.589192105344509, 30.736656386979647 ], [ -95.588457105214133, 30.736183387212755 ], [ -95.587791104612421, 30.735737387083191 ], [ -95.587271104935468, 30.735398387126963 ], [ -95.586200104030397, 30.734677386757483 ], [ -95.585588104078226, 30.734288386932477 ], [ -95.585509103668969, 30.734234387192593 ], [ -95.585372104660394, 30.734141386596061 ], [ -95.584530103653989, 30.733557386762861 ], [ -95.584034104114323, 30.733229386346846 ], [ -95.583500103457766, 30.732854386181437 ], [ -95.582899103618317, 30.732384386224616 ], [ -95.582673103528222, 30.732198386565099 ], [ -95.582097102891069, 30.731725386872263 ], [ -95.579963102722047, 30.729895385934086 ], [ -95.579088101855945, 30.729146385708827 ], [ -95.578122102130308, 30.728342385663417 ], [ -95.576858101962216, 30.727255386042948 ], [ -95.575918101386932, 30.726448385533967 ], [ -95.57544510156967, 30.726014385675331 ], [ -95.57493610060466, 30.725510385260478 ], [ -95.574481100728491, 30.72502138513866 ], [ -95.574216100906369, 30.724717385762606 ], [ -95.574172100774504, 30.724664385637539 ], [ -95.573774100313173, 30.72417338531136 ], [ -95.573210100029328, 30.723413384667079 ], [ -95.572692100499253, 30.722681385244616 ], [ -95.571420100293892, 30.720768384627696 ], [ -95.571158099498732, 30.720368384394742 ], [ -95.570361099065224, 30.719180384275397 ], [ -95.569946099335326, 30.718563384071643 ], [ -95.569709099840736, 30.718208383866255 ], [ -95.56919609876654, 30.718235383963741 ], [ -95.568981098694621, 30.718261384587429 ], [ -95.568779098585438, 30.718286384574398 ], [ -95.568403099061342, 30.718351384434143 ], [ -95.568213098935658, 30.71838538466675 ], [ -95.567735098659469, 30.71850138420243 ], [ -95.567219098485424, 30.718640384609976 ], [ -95.566857098140261, 30.71873738446282 ], [ -95.566386098771986, 30.718851384283195 ], [ -95.565810097936605, 30.718990384494447 ], [ -95.565353097824357, 30.719094384505834 ], [ -95.565075098173793, 30.71915838429015 ], [ -95.564633098087029, 30.71923938442724 ], [ -95.564480097813174, 30.719233384542786 ], [ -95.564435098539406, 30.719236384377226 ], [ -95.564405098239263, 30.719071384300285 ], [ -95.564350098006869, 30.718437384853345 ], [ -95.564340097715245, 30.71832138481286 ], [ -95.564328098352817, 30.717775384315154 ], [ -95.564326097596791, 30.717701384109734 ], [ -95.564291098071593, 30.716099384141259 ], [ -95.564284097562421, 30.715763383648632 ], [ -95.564276097525479, 30.715415383920433 ], [ -95.564271098007808, 30.713892383278836 ], [ -95.564262097924399, 30.713800383886095 ], [ -95.56376009720924, 30.713824383277878 ], [ -95.563325097992191, 30.713855383193902 ], [ -95.562502096995445, 30.713913383868892 ], [ -95.561973097279832, 30.713931383745244 ], [ -95.56161809708054, 30.713943383669392 ], [ -95.561096096631545, 30.713951383255989 ], [ -95.561006097257831, 30.713952383860871 ], [ -95.560825096476179, 30.713955383482482 ], [ -95.559934096816605, 30.713970383904108 ], [ -95.559843096530571, 30.713975384149407 ], [ -95.559278096193509, 30.714002383980663 ], [ -95.558767096704358, 30.714027383916235 ], [ -95.558353096660369, 30.714047383748028 ], [ -95.557450095955573, 30.714082384099871 ], [ -95.557345096283356, 30.714085383517585 ], [ -95.556301095534366, 30.714122383852587 ], [ -95.5561970961556, 30.71412538347688 ], [ -95.555226095708932, 30.714127384337075 ], [ -95.554403095395983, 30.714128383792627 ], [ -95.553295094691876, 30.714132384288426 ], [ -95.552585094641472, 30.714138383796488 ], [ -95.551544094248243, 30.714151384228636 ], [ -95.551081094454901, 30.71414838412317 ], [ -95.551090094854345, 30.714357383828389 ], [ -95.551237094268245, 30.714721383950558 ], [ -95.551330094754746, 30.715022384497626 ], [ -95.551376094343823, 30.715172383843051 ], [ -95.55141009465963, 30.715372384413477 ], [ -95.551411094939084, 30.715579384563142 ], [ -95.551412094984471, 30.715876384629421 ], [ -95.551414095033692, 30.716418384957628 ], [ -95.551414094454984, 30.716549384215352 ], [ -95.551423094235403, 30.717787384817942 ], [ -95.550489093954823, 30.717790384814254 ], [ -95.550495094682077, 30.71811438478511 ], [ -95.550505094205548, 30.718665384534372 ], [ -95.550494094772176, 30.719043384865778 ], [ -95.550471094967492, 30.719815385593169 ], [ -95.550457094551746, 30.720292385587364 ], [ -95.550455094208303, 30.720344385573373 ], [ -95.550442094475358, 30.720772385224027 ], [ -95.550443094326724, 30.721014385861618 ], [ -95.550446094459431, 30.721658385484893 ], [ -95.550454094480855, 30.722982386100568 ], [ -95.550464094450206, 30.723801386312985 ], [ -95.550469094694478, 30.724318386319563 ], [ -95.550473094553325, 30.724665386567938 ], [ -95.55047809504191, 30.725079386307129 ], [ -95.550487095187378, 30.72585938643531 ], [ -95.550474094336295, 30.726389386763127 ], [ -95.550473095259321, 30.726437386251177 ], [ -95.550515094940621, 30.727032386935306 ], [ -95.550584094585915, 30.727988386905565 ], [ -95.550689095242447, 30.729384387470365 ], [ -95.550736095326627, 30.729811386859605 ], [ -95.550828095421835, 30.730427387225408 ], [ -95.550824095175571, 30.730635387781611 ], [ -95.550821095581128, 30.730678387340607 ], [ -95.55080409516809, 30.730886387685025 ], [ -95.550761094809104, 30.73111238747795 ], [ -95.550630095443907, 30.731650387263741 ], [ -95.550544094843687, 30.732061387541354 ], [ -95.550459095597333, 30.732470387661831 ], [ -95.550371094671917, 30.732838387951219 ], [ -95.550334095297004, 30.733179388185849 ], [ -95.550318094727473, 30.733332387495118 ], [ -95.550296094636266, 30.733448387946286 ], [ -95.550148095280193, 30.73423338799337 ], [ -95.550127095050598, 30.734358388489834 ], [ -95.550090094767882, 30.734572388278721 ], [ -95.549960094762511, 30.735438388099695 ], [ -95.549913094984902, 30.735724388234296 ], [ -95.549641095190964, 30.737396388553314 ], [ -95.549557095644104, 30.737884388656543 ], [ -95.549520095366177, 30.738096388541774 ], [ -95.549443094890222, 30.738670389144811 ], [ -95.549304095477709, 30.739528388812531 ], [ -95.549102095073053, 30.740874389177268 ], [ -95.549045095450097, 30.741291389702976 ], [ -95.548967095088784, 30.74189238936275 ], [ -95.549437095660593, 30.741889389713069 ], [ -95.549604095593779, 30.741888389411415 ], [ -95.549754095379569, 30.741887389555021 ], [ -95.550035095536501, 30.741885389599801 ], [ -95.550324095892336, 30.741883389946224 ], [ -95.550979095188893, 30.741877389942449 ], [ -95.552362095795473, 30.741858389760431 ], [ -95.553205096343291, 30.741846389159559 ], [ -95.553742096497587, 30.741839389310964 ], [ -95.554893096924786, 30.741823389417164 ], [ -95.557176097451972, 30.741816389681205 ], [ -95.55786009726657, 30.741814389011882 ], [ -95.558203097774381, 30.741809389736151 ], [ -95.558639097377906, 30.741803389582376 ], [ -95.559363097402297, 30.741792389737903 ], [ -95.561227097888917, 30.741767389583366 ], [ -95.56250509841675, 30.741750389367002 ], [ -95.563332098623974, 30.741679389390704 ], [ -95.563647099335228, 30.741635388862292 ], [ -95.564554099006344, 30.741503389212419 ], [ -95.564805098921241, 30.741440389027346 ], [ -95.565492098882117, 30.741266388965052 ], [ -95.566061099772568, 30.741081389095704 ], [ -95.56689909924755, 30.740787388540088 ], [ -95.567282099704073, 30.740616389167862 ], [ -95.569298100315578, 30.739721388445393 ], [ -95.569917100577669, 30.739440388477529 ], [ -95.570814100650409, 30.739033388567215 ], [ -95.571328100459993, 30.738800388151301 ], [ -95.571976100947083, 30.738504388392947 ], [ -95.572199100909401, 30.73840438834894 ], [ -95.572355100965325, 30.738333388147673 ], [ -95.573346101574501, 30.737892388277441 ], [ -95.574814101246801, 30.737237387956242 ], [ -95.574889102047763, 30.73720438819317 ], [ -95.575637102291537, 30.736856387477353 ], [ -95.575763102085233, 30.736797387473921 ], [ -95.57632810153487, 30.736534387881818 ], [ -95.576536101857641, 30.736419387827336 ], [ -95.576624102514344, 30.736370387208456 ], [ -95.576795102134739, 30.736275387363875 ], [ -95.576826102226164, 30.736258387365616 ], [ -95.576969102596365, 30.736157387540732 ], [ -95.577060101704234, 30.736092387285954 ], [ -95.577307102551046, 30.735840387569159 ], [ -95.57777010182042, 30.735903387186482 ], [ -95.578302102480009, 30.73597538719757 ], [ -95.579332102285903, 30.736115387205292 ], [ -95.579803103158056, 30.736186387278341 ], [ -95.580234102935222, 30.736252387145541 ], [ -95.581469103581966, 30.73642138720788 ], [ -95.581656103184571, 30.736447387535016 ], [ -95.582745103845156, 30.736596387755945 ], [ -95.583039103905605, 30.73663238757317 ], [ -95.583453104301512, 30.736682387043231 ], [ -95.583664103758039, 30.73671438754981 ], [ -95.584431103826347, 30.736829387248431 ], [ -95.585249104758574, 30.736950387034412 ], [ -95.585768104756639, 30.737050387589822 ], [ -95.586066104938439, 30.737120387700475 ], [ -95.586765105150519, 30.737283387397511 ], [ -95.586831104461567, 30.737298387654686 ], [ -95.587278104955701, 30.737427387073911 ], [ -95.587607105056435, 30.7375223876533 ], [ -95.588534104874768, 30.737791387740902 ], [ -95.588928105265097, 30.737777387606666 ], [ -95.589027105042462, 30.737536387248181 ], [ -95.589108105149634, 30.737341387499065 ], [ -95.589233105695286, 30.737124387509901 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 750, "Tract": "48201324101", "Area_SqMi": 1.1387521780983634, "total_2009": 2533, "total_2010": 2291, "total_2011": 2256, "total_2012": 1961, "total_2013": 1962, "total_2014": 1993, "total_2015": 1991, "total_2016": 2404, "total_2017": 2464, "total_2018": 2144, "total_2019": 1977, "total_2020": 1790, "age1": 444, "age2": 1188, "age3": 460, "earn1": 152, "earn2": 418, "earn3": 1522, "naics_s01": 0, "naics_s02": 0, "naics_s03": 19, "naics_s04": 403, "naics_s05": 126, "naics_s06": 189, "naics_s07": 156, "naics_s08": 84, "naics_s09": 11, "naics_s10": 186, "naics_s11": 36, "naics_s12": 621, "naics_s13": 0, "naics_s14": 74, "naics_s15": 0, "naics_s16": 54, "naics_s17": 0, "naics_s18": 92, "naics_s19": 41, "naics_s20": 0, "race1": 1723, "race2": 220, "race3": 17, "race4": 105, "race5": 3, "race6": 24, "ethnicity1": 1211, "ethnicity2": 881, "edu1": 379, "edu2": 448, "edu3": 510, "edu4": 311, "Shape_Length": 34416.63282963683, "Shape_Area": 31746461.731551025, "total_2021": 1711, "total_2022": 2092 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.228216964963579, 29.709778191155404 ], [ -95.228207964597786, 29.709108190956368 ], [ -95.228158964895073, 29.707986190964341 ], [ -95.228144964667337, 29.707663191029361 ], [ -95.227836964542774, 29.707770191504775 ], [ -95.227420964283041, 29.707928190837858 ], [ -95.225393963908175, 29.709022191825962 ], [ -95.225030963866956, 29.709200191504372 ], [ -95.224911963820318, 29.709258191917431 ], [ -95.22419796332548, 29.709523191234233 ], [ -95.22379796406122, 29.709642192029104 ], [ -95.223099963371766, 29.709832191471985 ], [ -95.222542963372035, 29.70994419164829 ], [ -95.2221569635809, 29.710022192114103 ], [ -95.221645963175249, 29.710086191637924 ], [ -95.219978962731091, 29.710295191497728 ], [ -95.219665962942656, 29.710334191584064 ], [ -95.218210962449618, 29.710517192133235 ], [ -95.217652962198784, 29.710587192049875 ], [ -95.217309961973029, 29.710623191830809 ], [ -95.216735961550839, 29.710684191826687 ], [ -95.216575962130037, 29.710701191727146 ], [ -95.21641696158126, 29.710718191673447 ], [ -95.215753961977256, 29.710788191756368 ], [ -95.215136961966195, 29.710843191847683 ], [ -95.214501961092338, 29.710901191875195 ], [ -95.213707960687231, 29.710974192496437 ], [ -95.212661960403949, 29.711070192228231 ], [ -95.211634960243032, 29.711164191893683 ], [ -95.210605959995164, 29.711258192141038 ], [ -95.209535960001347, 29.711357192405369 ], [ -95.209532960314917, 29.71120519272873 ], [ -95.209530960395213, 29.711110192771581 ], [ -95.209523959649985, 29.710777192315462 ], [ -95.209521959492278, 29.708973192410383 ], [ -95.209493959757495, 29.708111192001887 ], [ -95.209481959437852, 29.707728191703836 ], [ -95.209464959706224, 29.707203191204368 ], [ -95.209463959516938, 29.707056191236013 ], [ -95.209445959333891, 29.705356191193058 ], [ -95.209492960154137, 29.703508190523948 ], [ -95.209423959778505, 29.701723190397669 ], [ -95.209416959209506, 29.700995190285049 ], [ -95.209415959320467, 29.700235190542688 ], [ -95.209429959818692, 29.699925190002748 ], [ -95.20941995958097, 29.699822189960905 ], [ -95.209392959331879, 29.699522190015315 ], [ -95.209387959352597, 29.699272189827774 ], [ -95.209378959719558, 29.698801189641216 ], [ -95.209375959202319, 29.698063189905948 ], [ -95.208858958799524, 29.698072189715106 ], [ -95.208680959494103, 29.698075189777278 ], [ -95.208353959417522, 29.698080189513 ], [ -95.207312958652409, 29.698095189783412 ], [ -95.205897958486389, 29.698110189956076 ], [ -95.205239958714202, 29.698116189938066 ], [ -95.204752958527791, 29.698120189787691 ], [ -95.204214957690638, 29.698124190162257 ], [ -95.203157957794019, 29.698167190065629 ], [ -95.201053957614548, 29.698134189866128 ], [ -95.201055957614969, 29.698752190312018 ], [ -95.201056957004866, 29.698901190518022 ], [ -95.201059957354929, 29.699632190458725 ], [ -95.201062957017086, 29.700175190132786 ], [ -95.201062957735161, 29.700358190078706 ], [ -95.201065957053274, 29.701077190722312 ], [ -95.201066957538728, 29.701228190397575 ], [ -95.201068957562043, 29.701817190387487 ], [ -95.201070957931378, 29.702234191040528 ], [ -95.201071957950248, 29.702523190683216 ], [ -95.201073957539023, 29.702992190728928 ], [ -95.201074957369826, 29.70324019138824 ], [ -95.201077957024523, 29.703739190980475 ], [ -95.20107795795073, 29.703969190966848 ], [ -95.201091957491613, 29.704674191227237 ], [ -95.201084957125445, 29.70545019136792 ], [ -95.201087957723217, 29.706158191418179 ], [ -95.201136957219262, 29.706823191541723 ], [ -95.201197957615108, 29.707280192079523 ], [ -95.201142957697257, 29.707461191879684 ], [ -95.201093958187826, 29.707624191902447 ], [ -95.201180958247335, 29.70864919230052 ], [ -95.20124395755002, 29.709063192203253 ], [ -95.201241958174776, 29.709530192196539 ], [ -95.201239958063795, 29.710245192824466 ], [ -95.201238957410638, 29.71086519233042 ], [ -95.201251957905868, 29.711199192855744 ], [ -95.201266958357365, 29.711690192434702 ], [ -95.201273957626583, 29.711940192490193 ], [ -95.201279957506287, 29.712114193095122 ], [ -95.201097958079046, 29.71213119245801 ], [ -95.198839956888278, 29.712338192597628 ], [ -95.198618956843276, 29.712359192878509 ], [ -95.197648957365132, 29.71244819351158 ], [ -95.197404956961265, 29.712470193477458 ], [ -95.197448956700043, 29.712694193575722 ], [ -95.197482957451612, 29.71309219347177 ], [ -95.197533957450659, 29.713322193127105 ], [ -95.197566957079829, 29.713469192906594 ], [ -95.197568956767057, 29.713479193145396 ], [ -95.197583956984943, 29.713540193363748 ], [ -95.197630957052539, 29.713678193289049 ], [ -95.1976939566851, 29.713802193071086 ], [ -95.197771957148902, 29.71390419331475 ], [ -95.197883957682123, 29.714092193171155 ], [ -95.198025956824523, 29.714279193037278 ], [ -95.198452957248676, 29.714843193616876 ], [ -95.198922957745253, 29.715182193292915 ], [ -95.199068957728272, 29.715270194069657 ], [ -95.19918295768187, 29.715340193559001 ], [ -95.199408957968046, 29.715479193949285 ], [ -95.200033957338263, 29.715694194095693 ], [ -95.200189957324966, 29.715745194113659 ], [ -95.200660958258922, 29.715909193855992 ], [ -95.201333957783262, 29.716139194005919 ], [ -95.203421958253656, 29.716900193830764 ], [ -95.205675959359368, 29.717649194280366 ], [ -95.207647959467366, 29.718305193956862 ], [ -95.208201959958132, 29.718438193624589 ], [ -95.208682960169796, 29.718515193566322 ], [ -95.210494960110282, 29.718501193935197 ], [ -95.210717961014367, 29.718511193552324 ], [ -95.211025961056052, 29.71853519370525 ], [ -95.21124996094008, 29.718564193972117 ], [ -95.211217961238091, 29.718501193658131 ], [ -95.21117196115847, 29.71842019342499 ], [ -95.211101961195482, 29.718269193791809 ], [ -95.211082960799018, 29.718131193431116 ], [ -95.211108961226628, 29.718003193561433 ], [ -95.211161960891658, 29.717868194106657 ], [ -95.211290960567936, 29.717716193413828 ], [ -95.21144596035559, 29.717619193924406 ], [ -95.211538961191025, 29.71750719411553 ], [ -95.211628960844862, 29.717348193405655 ], [ -95.211695960677801, 29.717095193139251 ], [ -95.211696961210777, 29.716563193138093 ], [ -95.211697960882091, 29.716167193545232 ], [ -95.213373961248706, 29.716157193623825 ], [ -95.213953961417189, 29.716139193501185 ], [ -95.21533596125532, 29.716145193196549 ], [ -95.216320962034501, 29.716127192989855 ], [ -95.216874962304558, 29.716127193304299 ], [ -95.217590962100104, 29.716123193416585 ], [ -95.218393962809515, 29.716121193064001 ], [ -95.219214962447964, 29.716118192975685 ], [ -95.21931296320075, 29.716117193292515 ], [ -95.219411963138739, 29.716117193062949 ], [ -95.219511962348022, 29.716113193055822 ], [ -95.219611962760126, 29.716110193215499 ], [ -95.22002196312971, 29.716096193243661 ], [ -95.222085963595561, 29.716059192646767 ], [ -95.223305964003998, 29.716056192953481 ], [ -95.224690964252105, 29.716046192826564 ], [ -95.226108964717952, 29.716042193242373 ], [ -95.22618996439364, 29.715886193073313 ], [ -95.226186964992763, 29.715603193006014 ], [ -95.226180964865051, 29.714986193105815 ], [ -95.226173964864742, 29.71415819277891 ], [ -95.226171964174981, 29.713944192511779 ], [ -95.226155964168086, 29.713604192450191 ], [ -95.226162963890829, 29.713222192658055 ], [ -95.226151964454118, 29.712830191808735 ], [ -95.226143964177055, 29.712472192175735 ], [ -95.22613196447297, 29.710859191368769 ], [ -95.226114964403365, 29.710176192010493 ], [ -95.226097963830838, 29.709955191648341 ], [ -95.226297964099814, 29.70993619143006 ], [ -95.228216964963579, 29.709778191155404 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 751, "Tract": "48201343601", "Area_SqMi": 25.313318314270351, "total_2009": 6293, "total_2010": 7412, "total_2011": 7182, "total_2012": 7892, "total_2013": 8423, "total_2014": 8333, "total_2015": 9725, "total_2016": 9847, "total_2017": 9629, "total_2018": 10911, "total_2019": 12830, "total_2020": 13446, "age1": 2252, "age2": 7503, "age3": 2607, "earn1": 703, "earn2": 1397, "earn3": 10262, "naics_s01": 0, "naics_s02": 20, "naics_s03": 61, "naics_s04": 3538, "naics_s05": 4046, "naics_s06": 1207, "naics_s07": 107, "naics_s08": 1008, "naics_s09": 0, "naics_s10": 2, "naics_s11": 1038, "naics_s12": 145, "naics_s13": 0, "naics_s14": 906, "naics_s15": 52, "naics_s16": 4, "naics_s17": 9, "naics_s18": 122, "naics_s19": 97, "naics_s20": 0, "race1": 9958, "race2": 1687, "race3": 138, "race4": 407, "race5": 23, "race6": 149, "ethnicity1": 6668, "ethnicity2": 5694, "edu1": 2424, "edu2": 2774, "edu3": 3056, "edu4": 1856, "Shape_Length": 146452.81413034364, "Shape_Area": 705691990.42457426, "total_2021": 11379, "total_2022": 12362 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153374945546886, 29.712588194793728 ], [ -95.153378945528203, 29.712385194140829 ], [ -95.153374945930125, 29.712085194472799 ], [ -95.153071945226429, 29.712076194269901 ], [ -95.152886945662672, 29.712071194270244 ], [ -95.149482944549845, 29.711973194622203 ], [ -95.149163944175811, 29.71196219451268 ], [ -95.146868943582831, 29.711797194797029 ], [ -95.144926943067645, 29.711728194388012 ], [ -95.144696943750475, 29.711720195075532 ], [ -95.143737943386924, 29.711685194920541 ], [ -95.142503943124495, 29.711657194796732 ], [ -95.141075942709307, 29.711625194904776 ], [ -95.140203942121943, 29.711606194660675 ], [ -95.140007941751463, 29.71160219492651 ], [ -95.13962894178016, 29.71159119492064 ], [ -95.138658941386112, 29.711557194446286 ], [ -95.135083941185684, 29.711430195366088 ], [ -95.134208940557485, 29.71142119544124 ], [ -95.134062941119794, 29.711419195406044 ], [ -95.13192194032635, 29.711467195256475 ], [ -95.131103940286792, 29.711553195138784 ], [ -95.130435939858657, 29.711609194892443 ], [ -95.127601938709631, 29.711565194830623 ], [ -95.127448938886246, 29.711563195511818 ], [ -95.127299938797705, 29.711560194991833 ], [ -95.126142938240932, 29.71154019526799 ], [ -95.124196938376812, 29.711505195071307 ], [ -95.124011938242631, 29.711502195302121 ], [ -95.123840938329664, 29.711496195354364 ], [ -95.120490937183888, 29.711383195577834 ], [ -95.119854937044053, 29.711361195451811 ], [ -95.117952936232086, 29.711326195677589 ], [ -95.116809936143099, 29.71124319555496 ], [ -95.116137936352601, 29.711188195800542 ], [ -95.115002935210839, 29.710997195965266 ], [ -95.11478593618159, 29.710953195978398 ], [ -95.11374193550121, 29.710740195764554 ], [ -95.113371934993509, 29.710633195255554 ], [ -95.113158935346377, 29.710572195366037 ], [ -95.112991934891525, 29.710524195477948 ], [ -95.112891935478487, 29.710495195627868 ], [ -95.111344935203633, 29.710050195287735 ], [ -95.110246934176104, 29.709734195031231 ], [ -95.102586932140852, 29.70758019492936 ], [ -95.102310932791738, 29.707499195064848 ], [ -95.100117932173248, 29.706838195193008 ], [ -95.099085931371675, 29.706527195461998 ], [ -95.097067930414681, 29.705918194669781 ], [ -95.095577930368378, 29.705468195345269 ], [ -95.093265930005188, 29.704771194858854 ], [ -95.09293992947444, 29.704672195257952 ], [ -95.092231929409621, 29.704436194950279 ], [ -95.090635928750132, 29.703904195245553 ], [ -95.088732928880006, 29.703269195296009 ], [ -95.088440928904632, 29.703181194440081 ], [ -95.084641927619757, 29.702032194647732 ], [ -95.082253927021128, 29.701310194474189 ], [ -95.076799925385231, 29.699661194697388 ], [ -95.076113925621073, 29.699453194191427 ], [ -95.070434923606811, 29.697827194663514 ], [ -95.068186922863546, 29.697161194201779 ], [ -95.067154922663775, 29.696827194315073 ], [ -95.064703922413187, 29.696089194256341 ], [ -95.061893921319637, 29.69514319369928 ], [ -95.059907921060017, 29.694564194280947 ], [ -95.05830592047829, 29.694114193890162 ], [ -95.057161919657489, 29.693767194332338 ], [ -95.055882919583425, 29.693363193576733 ], [ -95.053828919424291, 29.692714193825232 ], [ -95.051682918463783, 29.692084193649247 ], [ -95.048993918213682, 29.691279193928281 ], [ -95.046975917479912, 29.690738193774596 ], [ -95.046975916912629, 29.690579193493722 ], [ -95.04695591741212, 29.690160193415267 ], [ -95.046944917278267, 29.689886193798351 ], [ -95.04501691672165, 29.689305193201424 ], [ -95.043392916825411, 29.688800193691648 ], [ -95.042181915847209, 29.688431193677399 ], [ -95.039453915567506, 29.687615193177706 ], [ -95.037225914397865, 29.686941193157999 ], [ -95.03662991500849, 29.686749192861591 ], [ -95.035629914226604, 29.686467192802475 ], [ -95.034012914023123, 29.685969193535755 ], [ -95.033272914040765, 29.685749192887169 ], [ -95.030514912560875, 29.684948193182745 ], [ -95.030369912798847, 29.684906192612193 ], [ -95.030181912766153, 29.684851192615504 ], [ -95.030013912869066, 29.684792193006068 ], [ -95.029831913053371, 29.684727192593368 ], [ -95.028941912696027, 29.68443219303548 ], [ -95.026954911523006, 29.683839192700979 ], [ -95.023718910998468, 29.682872192748171 ], [ -95.020195910438346, 29.681805192715053 ], [ -95.019627909752003, 29.68163319229723 ], [ -95.019694910040712, 29.680980192202057 ], [ -95.019580909354545, 29.679692192656375 ], [ -95.019557909621426, 29.678393192279561 ], [ -95.019534910019587, 29.677089191888513 ], [ -95.019500909273262, 29.675820191329571 ], [ -95.019465909115226, 29.674528191300062 ], [ -95.019431909011118, 29.673259190767961 ], [ -95.018887908949182, 29.673272190765164 ], [ -95.018355909420791, 29.673284191322679 ], [ -95.017852909101762, 29.673296191151447 ], [ -95.01734690913932, 29.673310190683562 ], [ -95.017293909181461, 29.673312190706444 ], [ -95.015187908057612, 29.673364191571633 ], [ -95.009599906543798, 29.673503191164741 ], [ -95.008990906882275, 29.673517191764731 ], [ -95.00844390644059, 29.673507191688618 ], [ -95.007926906920773, 29.673495191524029 ], [ -95.007415906182601, 29.673511191908585 ], [ -95.0068519058063, 29.673547191277365 ], [ -95.006311906441155, 29.673566191777883 ], [ -95.005939906108637, 29.673629191768818 ], [ -95.005476905517028, 29.673717191640343 ], [ -95.005063905783686, 29.673817191320126 ], [ -95.004552905666245, 29.673938191245757 ], [ -95.004111905257759, 29.674141191823722 ], [ -95.003595905659679, 29.674372191576783 ], [ -95.003156905529551, 29.674580191532002 ], [ -95.002691905204557, 29.674792192154449 ], [ -95.002215905232561, 29.675011192395502 ], [ -95.001728905191996, 29.675235192472122 ], [ -95.001274905181802, 29.67544319163844 ], [ -95.000818904982296, 29.675652192129899 ], [ -95.000385904882165, 29.67585019178771 ], [ -95.00036690435941, 29.675877192311791 ], [ -94.999885904901006, 29.676086192133415 ], [ -94.999784904647498, 29.676112192265432 ], [ -94.999359904218664, 29.676182192331591 ], [ -94.998814904228311, 29.676256192443518 ], [ -94.998248903957119, 29.676334192075267 ], [ -94.997573904263646, 29.676416192572624 ], [ -94.996863904267911, 29.67650619258135 ], [ -94.996727903522782, 29.676524192422757 ], [ -94.996523903863604, 29.676559192867021 ], [ -94.995668903544839, 29.676705192166317 ], [ -94.995489902996312, 29.676726192784702 ], [ -94.994930903473005, 29.676790192617798 ], [ -94.994332902756895, 29.676860192163421 ], [ -94.993828903407334, 29.676917192581385 ], [ -94.993250903169098, 29.677012192551814 ], [ -94.992728903305917, 29.677094192526713 ], [ -94.992194902838705, 29.677171192733702 ], [ -94.991985902488295, 29.677201192310743 ], [ -94.991622902538253, 29.677255192551883 ], [ -94.991134902016171, 29.677321192343985 ], [ -94.990109901968808, 29.677478193095375 ], [ -94.989731902092075, 29.677500193052484 ], [ -94.989536902277095, 29.677478192690312 ], [ -94.988934902131689, 29.677388192823411 ], [ -94.988727901948948, 29.677378192622157 ], [ -94.988565901827997, 29.677388192894778 ], [ -94.988472902085832, 29.677401193156996 ], [ -94.988355901884674, 29.677435193312366 ], [ -94.988279901780601, 29.677492192604504 ], [ -94.988096901415261, 29.67711619299067 ], [ -94.987693901480043, 29.676482192582242 ], [ -94.98744190169819, 29.6760881924302 ], [ -94.98699390116613, 29.676298192707019 ], [ -94.986541900862449, 29.676512192824013 ], [ -94.986081900910051, 29.676729192600114 ], [ -94.985620901265747, 29.676946193365971 ], [ -94.985180901117957, 29.677153192985294 ], [ -94.984716900388236, 29.67737219338219 ], [ -94.98428590093414, 29.677582192832393 ], [ -94.983838900669198, 29.677800193480135 ], [ -94.983387900454844, 29.678021193595768 ], [ -94.982940900486199, 29.678238192866782 ], [ -94.982646900717768, 29.678382193161593 ], [ -94.982487899928756, 29.678459193215911 ], [ -94.982116900189965, 29.677837192968013 ], [ -94.982054900366961, 29.677866192975145 ], [ -94.981839900478562, 29.677514192991524 ], [ -94.981799899964841, 29.677469192897501 ], [ -94.981652899968836, 29.677311193513486 ], [ -94.981606899692238, 29.677261193298772 ], [ -94.981310899838732, 29.677101192821247 ], [ -94.98118789952818, 29.676990192765231 ], [ -94.981146900172448, 29.676953192741333 ], [ -94.981134899658642, 29.676838193260185 ], [ -94.981190900039138, 29.676667193306074 ], [ -94.980353899815853, 29.67707819340233 ], [ -94.979880899070537, 29.677311192787943 ], [ -94.979277899342719, 29.677608192871499 ], [ -94.979447899899796, 29.67791319376251 ], [ -94.979658899772502, 29.678277193023149 ], [ -94.980500899735375, 29.679725194054843 ], [ -94.981706899819557, 29.681937193773091 ], [ -94.981987899799222, 29.682330194215176 ], [ -94.982713900838988, 29.683347194497021 ], [ -94.983140900563882, 29.683944194445516 ], [ -94.98387090106786, 29.68480419433963 ], [ -94.984732901528716, 29.685815194498552 ], [ -94.986154901752528, 29.687620194859548 ], [ -94.987507901668792, 29.689265195635553 ], [ -94.98822290209884, 29.690037195252341 ], [ -94.988704902751351, 29.69048519562244 ], [ -94.989629903116295, 29.691454195710683 ], [ -94.989961902788764, 29.691857195828913 ], [ -94.993320903676846, 29.694385196095222 ], [ -94.994618903866638, 29.695344196066994 ], [ -94.996607904307638, 29.696644196936209 ], [ -94.998280905587023, 29.697919196981307 ], [ -94.999361905492279, 29.698664197216953 ], [ -95.000007905931398, 29.69894119696195 ], [ -95.000572905322088, 29.699182197266353 ], [ -95.003469906928814, 29.700116197340051 ], [ -95.006007907568446, 29.70063419713383 ], [ -95.00871790765288, 29.70096219664218 ], [ -95.01059190813217, 29.701202197304099 ], [ -95.011124909061181, 29.701340197121322 ], [ -95.012133909175915, 29.701303197441209 ], [ -95.013777909414287, 29.701732197249758 ], [ -95.014939909719757, 29.702166197543036 ], [ -95.015161909334836, 29.702249197288136 ], [ -95.016285909586614, 29.702691197038124 ], [ -95.017147910236929, 29.703220197145995 ], [ -95.017329910779395, 29.703395197215933 ], [ -95.017699910479408, 29.703753197416962 ], [ -95.018116910614907, 29.704435197540068 ], [ -95.018278910997608, 29.704700197871766 ], [ -95.018425910360108, 29.704953197410052 ], [ -95.019123911104714, 29.706160198079626 ], [ -95.019783910664145, 29.707195197971743 ], [ -95.020155911536492, 29.708138197888406 ], [ -95.020248911131731, 29.708649197914458 ], [ -95.020449911382656, 29.709163198675061 ], [ -95.020445911586791, 29.709925198235354 ], [ -95.020897912164159, 29.720336200724311 ], [ -95.020935912163324, 29.721209201049565 ], [ -95.020999912197851, 29.722535201229572 ], [ -95.021148912395077, 29.723417201235765 ], [ -95.021600911924608, 29.724151201705897 ], [ -95.021922912125746, 29.724780201897264 ], [ -95.022254913001248, 29.725271202100259 ], [ -95.022692912702595, 29.725677201449777 ], [ -95.023066913181722, 29.726027201867044 ], [ -95.023394912869676, 29.726407201873233 ], [ -95.023817913095442, 29.726752201784837 ], [ -95.024887913391979, 29.727685201694044 ], [ -95.026252914071605, 29.728444202183187 ], [ -95.028307914374821, 29.7294492022105 ], [ -95.029805914689476, 29.729708202406261 ], [ -95.031860914838717, 29.729841201809236 ], [ -95.033665915614037, 29.730333201943502 ], [ -95.034572916416764, 29.730286202637437 ], [ -95.035364915876158, 29.730260202145768 ], [ -95.036728916894447, 29.730379202481146 ], [ -95.040438917121364, 29.730628202270061 ], [ -95.041854917389415, 29.730751202291305 ], [ -95.044767918861154, 29.731184202121508 ], [ -95.04833691931519, 29.732622202170674 ], [ -95.050998920527803, 29.734274202295484 ], [ -95.05398992080238, 29.73606020311879 ], [ -95.056308921842671, 29.7373422025547 ], [ -95.057620921725203, 29.738101203521701 ], [ -95.058124922185414, 29.738505202702004 ], [ -95.0583379226386, 29.738586203560477 ], [ -95.058643922567825, 29.738990203435925 ], [ -95.058887922228479, 29.739257203451757 ], [ -95.059146922506955, 29.739509203633663 ], [ -95.059345922418089, 29.739886203212325 ], [ -95.059497922665628, 29.740104203524989 ], [ -95.059543923084476, 29.739822203542278 ], [ -95.059604922944118, 29.740356203652873 ], [ -95.059630923060567, 29.740411203788206 ], [ -95.060948923711408, 29.743137204369567 ], [ -95.064826924835273, 29.750785205132413 ], [ -95.065952925061666, 29.753005205761671 ], [ -95.066455925596259, 29.753940205655677 ], [ -95.066913925499335, 29.754726205928765 ], [ -95.067264925414889, 29.7552672059788 ], [ -95.067722925650131, 29.755881206830889 ], [ -95.068088925431169, 29.756374206067299 ], [ -95.068439925385107, 29.756770206632172 ], [ -95.068835926422508, 29.757117206755733 ], [ -95.069247925977308, 29.757575206713163 ], [ -95.069705925802083, 29.757972206735317 ], [ -95.070102926792288, 29.758277206728231 ], [ -95.070453926660392, 29.758578206783788 ], [ -95.070667926684763, 29.758750207230076 ], [ -95.072604927441844, 29.759772207408197 ], [ -95.07429592746675, 29.760893207127435 ], [ -95.074573927911445, 29.761077207458165 ], [ -95.076205927998316, 29.761789207352642 ], [ -95.077320928735716, 29.762545207630687 ], [ -95.077681928081489, 29.762771207022308 ], [ -95.078129928754663, 29.763052207322104 ], [ -95.07948192898931, 29.763705207741953 ], [ -95.08028592934717, 29.763856208035207 ], [ -95.081399929751612, 29.764087207680458 ], [ -95.08269192969307, 29.764143207405294 ], [ -95.082646929854548, 29.764074207304262 ], [ -95.083805930577526, 29.763891207269658 ], [ -95.084812930545752, 29.76376220733956 ], [ -95.086537930385504, 29.763456207469435 ], [ -95.087514930708792, 29.762931207145854 ], [ -95.0880959311624, 29.762397207476468 ], [ -95.089449931512604, 29.761152206371111 ], [ -95.090014931780303, 29.760632206201695 ], [ -95.090526931895354, 29.759530206108892 ], [ -95.091047932095123, 29.758408206502413 ], [ -95.092460931998218, 29.756944205511424 ], [ -95.093049932081954, 29.755657205922116 ], [ -95.092999931554189, 29.754974205188358 ], [ -95.093083931883115, 29.754673205136303 ], [ -95.093097931672247, 29.754624205685698 ], [ -95.093338932440162, 29.754048205038345 ], [ -95.093611932159575, 29.75356620549876 ], [ -95.094015931764062, 29.752853204674878 ], [ -95.094702931946017, 29.752280204770582 ], [ -95.094869932374081, 29.752166204652475 ], [ -95.095222932529012, 29.751926204994255 ], [ -95.095780932999133, 29.751351204855958 ], [ -95.095863932530023, 29.751265204056757 ], [ -95.096114932317164, 29.750934204785686 ], [ -95.09665793245027, 29.75067720449324 ], [ -95.098073932911262, 29.749862204319864 ], [ -95.098806932870346, 29.749179203798295 ], [ -95.099548933701698, 29.748862204314811 ], [ -95.099984933913987, 29.748476203589657 ], [ -95.100406933818007, 29.748029204115365 ], [ -95.100620933455261, 29.747718203191827 ], [ -95.100691933919975, 29.747481203395079 ], [ -95.100694934114713, 29.747009203663502 ], [ -95.101952934393665, 29.745914203507823 ], [ -95.102642934281292, 29.745151203100825 ], [ -95.103418934055156, 29.744612202496278 ], [ -95.104221934720343, 29.743695202589805 ], [ -95.104368934381, 29.743430202690249 ], [ -95.104402934731112, 29.743371202732259 ], [ -95.104615934715014, 29.743106202560696 ], [ -95.105286934613702, 29.742518202643726 ], [ -95.105640934315673, 29.742270201986006 ], [ -95.106620935059951, 29.741606202470049 ], [ -95.1077199349144, 29.74110820213037 ], [ -95.108470935698364, 29.740662201581863 ], [ -95.108855935380149, 29.740486201783945 ], [ -95.109542935877045, 29.740354201993586 ], [ -95.110236936015625, 29.740142202004396 ], [ -95.110731936175597, 29.74015720150523 ], [ -95.110951936507362, 29.740140201347529 ], [ -95.111556936561797, 29.74009420124175 ], [ -95.112213935896435, 29.740157201667298 ], [ -95.113452936593291, 29.739659201184097 ], [ -95.113885936843374, 29.739540201887223 ], [ -95.11428993632768, 29.739548201751539 ], [ -95.11528293671212, 29.739566200993917 ], [ -95.116885937327368, 29.738811200878114 ], [ -95.117420937825017, 29.738618201528169 ], [ -95.118188938146943, 29.738016201308824 ], [ -95.119788938331993, 29.736931200652542 ], [ -95.121208938311781, 29.736062200920216 ], [ -95.121791938629585, 29.735604200214972 ], [ -95.122007939115335, 29.735481200083843 ], [ -95.122793939308053, 29.735031200473692 ], [ -95.124094938685332, 29.734565199850159 ], [ -95.124685939153437, 29.734306200444859 ], [ -95.125466939948808, 29.734240200167985 ], [ -95.126292939535304, 29.734246199636679 ], [ -95.126671939397198, 29.734346200170293 ], [ -95.127005940253738, 29.734433200050805 ], [ -95.128041939821557, 29.734888199591204 ], [ -95.128472939997607, 29.73466819964797 ], [ -95.129143939895101, 29.73432519988781 ], [ -95.130467940676937, 29.733977199800048 ], [ -95.131194941374133, 29.73378719952559 ], [ -95.131867941010626, 29.734074199532394 ], [ -95.132011941014795, 29.7341352000001 ], [ -95.132519941148956, 29.734289199909181 ], [ -95.133583941180873, 29.7344271993042 ], [ -95.133952941981505, 29.734400200187459 ], [ -95.1342379415388, 29.73443820000988 ], [ -95.137058942202657, 29.735005200141728 ], [ -95.137718942482422, 29.735029199904766 ], [ -95.138488942916752, 29.735062199945848 ], [ -95.139335943129126, 29.735108199652942 ], [ -95.140485943161153, 29.735271199495379 ], [ -95.142148943395341, 29.73539019946535 ], [ -95.143174943853921, 29.73563819953478 ], [ -95.143926944580699, 29.735834199923239 ], [ -95.145237944617534, 29.735986200117996 ], [ -95.145805944493645, 29.736083199777926 ], [ -95.146070944718247, 29.736101200016556 ], [ -95.146270945298383, 29.734472199231515 ], [ -95.146295944764546, 29.734266199091852 ], [ -95.14694094494989, 29.72902419839988 ], [ -95.146954944753276, 29.728907198447189 ], [ -95.147040944259516, 29.728207197962913 ], [ -95.14769094462865, 29.722921196598609 ], [ -95.147719944152371, 29.722591197024034 ], [ -95.14775694428667, 29.722279196880201 ], [ -95.147794944240204, 29.722023196580498 ], [ -95.147848944978662, 29.721802196742374 ], [ -95.147901944892695, 29.721546196295922 ], [ -95.147997944761926, 29.721267196875431 ], [ -95.14811694510361, 29.720982196697072 ], [ -95.148151944339475, 29.720899196891462 ], [ -95.148386944586605, 29.720464196347248 ], [ -95.148455944925558, 29.720337196558194 ], [ -95.148767944382598, 29.719908196535545 ], [ -95.14887194449831, 29.719785196388688 ], [ -95.148947944667555, 29.719694196329794 ], [ -95.149122944411147, 29.719485195878672 ], [ -95.149140944904588, 29.719462196377126 ], [ -95.149246945109795, 29.719327196579659 ], [ -95.14944694518698, 29.719075196138224 ], [ -95.149575945131673, 29.718911196284253 ], [ -95.150102944580468, 29.71825719545215 ], [ -95.150249945593075, 29.718074196266866 ], [ -95.151349945416513, 29.716840195513488 ], [ -95.152136945507593, 29.715981194928741 ], [ -95.152242945396139, 29.715861195333883 ], [ -95.152449945362079, 29.715599195339248 ], [ -95.152636945133224, 29.715325195530067 ], [ -95.152801945916366, 29.715041194989858 ], [ -95.152942945683719, 29.714747194963614 ], [ -95.153079945593774, 29.714413195422672 ], [ -95.153190945343567, 29.71407219481334 ], [ -95.153273945182477, 29.713726194884064 ], [ -95.153329945434862, 29.713375194619136 ], [ -95.153359945732191, 29.712940194921348 ], [ -95.153374945546886, 29.712588194793728 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 752, "Tract": "48201343602", "Area_SqMi": 2.1265841169716393, "total_2009": 2519, "total_2010": 2718, "total_2011": 2508, "total_2012": 2866, "total_2013": 2891, "total_2014": 2849, "total_2015": 2598, "total_2016": 2053, "total_2017": 2081, "total_2018": 2077, "total_2019": 1950, "total_2020": 1827, "age1": 280, "age2": 1167, "age3": 552, "earn1": 275, "earn2": 521, "earn3": 1203, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 216, "naics_s05": 0, "naics_s06": 14, "naics_s07": 47, "naics_s08": 200, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 26, "naics_s13": 4, "naics_s14": 11, "naics_s15": 1226, "naics_s16": 55, "naics_s17": 0, "naics_s18": 60, "naics_s19": 124, "naics_s20": 14, "race1": 1697, "race2": 202, "race3": 19, "race4": 57, "race5": 2, "race6": 22, "ethnicity1": 1354, "ethnicity2": 645, "edu1": 318, "edu2": 446, "edu3": 520, "edu4": 435, "Shape_Length": 44630.945930839232, "Shape_Area": 59285525.496077552, "total_2021": 1978, "total_2022": 1999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.019431909011118, 29.673259190767961 ], [ -95.01941190973703, 29.671940190596086 ], [ -95.019392909688762, 29.670632190213617 ], [ -95.019385909293774, 29.669344190622059 ], [ -95.019354909213646, 29.668063190256944 ], [ -95.01934990944423, 29.66754118964214 ], [ -95.019341909379662, 29.666830190036713 ], [ -95.019308909659983, 29.666095189521698 ], [ -95.019281908646221, 29.665522189178283 ], [ -95.019272908640929, 29.664138189321651 ], [ -95.019204909290167, 29.662864189259462 ], [ -95.019213908934148, 29.661556188786722 ], [ -95.019177908367226, 29.660250188044923 ], [ -95.019143908480913, 29.658968188038013 ], [ -95.019120909037937, 29.657682187739294 ], [ -95.01913690827682, 29.656383187718848 ], [ -95.01910290877602, 29.655082187425524 ], [ -95.019060908623501, 29.653786186641778 ], [ -95.019019908088652, 29.652487186301581 ], [ -95.018940908757386, 29.651151186853028 ], [ -95.018915907970694, 29.649874186482432 ], [ -95.018943907796412, 29.648586185594958 ], [ -95.018933908174361, 29.648320186080195 ], [ -95.018897908399779, 29.647229185408843 ], [ -95.0188549080586, 29.646187185898441 ], [ -95.018848908424445, 29.646039185030567 ], [ -95.018847908162059, 29.645957185393506 ], [ -95.018771908003302, 29.645957185141022 ], [ -95.018589907728781, 29.64587518520511 ], [ -95.018217907830163, 29.645792185211882 ], [ -95.017997908091473, 29.645726185072103 ], [ -95.017966907511322, 29.645693185032382 ], [ -95.017947907568882, 29.645407185264379 ], [ -95.0179349081574, 29.645336185561035 ], [ -95.0178789079457, 29.645215185032214 ], [ -95.017840908212563, 29.645154185445552 ], [ -95.017727907950004, 29.645028185508696 ], [ -95.017620907911265, 29.644934185285472 ], [ -95.017469907796624, 29.644830185442135 ], [ -95.017324908026112, 29.644736185352166 ], [ -95.017022907889753, 29.644565185319266 ], [ -95.016927907546844, 29.644532185147366 ], [ -95.016871908017308, 29.644527185401493 ], [ -95.016411907019176, 29.644565185382795 ], [ -95.016361907568424, 29.644543184966977 ], [ -95.016260907871484, 29.644466185559427 ], [ -95.01615390738327, 29.644367185370815 ], [ -95.015788907450869, 29.643900184849592 ], [ -95.01575090712177, 29.643834184967641 ], [ -95.015662907303906, 29.643647185170575 ], [ -95.015587906878125, 29.643537185215369 ], [ -95.015486907007414, 29.643449184738543 ], [ -95.015379907192909, 29.643366184804414 ], [ -95.015115907103137, 29.643300184961642 ], [ -95.014958907443898, 29.643250184907032 ], [ -95.014863906547944, 29.643195185061753 ], [ -95.014718907220811, 29.643080185044401 ], [ -95.01461890727947, 29.643019185207152 ], [ -95.014404907033637, 29.642849185325431 ], [ -95.014253906978183, 29.642711184583408 ], [ -95.014232906684924, 29.642680184978591 ], [ -95.014209906724602, 29.642645185162664 ], [ -95.014196906421049, 29.642541184574359 ], [ -95.014178907047651, 29.642624184888703 ], [ -95.014172907296512, 29.642639184701068 ], [ -95.014141906441523, 29.64272018450869 ], [ -95.014050906896244, 29.642965184530766 ], [ -95.014026907071695, 29.643031184534561 ], [ -95.014022906461122, 29.643048184867926 ], [ -95.013919906886656, 29.64347518518225 ], [ -95.01395990665884, 29.643670185255857 ], [ -95.01390090669716, 29.643696184944549 ], [ -95.013868907007591, 29.643734185140985 ], [ -95.013842906969771, 29.643834184849673 ], [ -95.013805907255531, 29.643976184833523 ], [ -95.013811906712405, 29.64416318556535 ], [ -95.013723906880941, 29.644680184953891 ], [ -95.013665906464624, 29.644836185351597 ], [ -95.013558906897075, 29.64512218499927 ], [ -95.013446906834929, 29.645422185832256 ], [ -95.013300906971622, 29.645734185576163 ], [ -95.013225906500281, 29.645895185443877 ], [ -95.013184906826282, 29.646047185374321 ], [ -95.013055906912399, 29.646527185552937 ], [ -95.013030906635137, 29.646568185479268 ], [ -95.01281990653915, 29.646916185952414 ], [ -95.01277890632295, 29.646984185368773 ], [ -95.012496906646049, 29.647576185941176 ], [ -95.012488906152768, 29.647594185597345 ], [ -95.012349906420496, 29.64780018586216 ], [ -95.012051906042302, 29.648242186226675 ], [ -95.011984906339066, 29.648342186230952 ], [ -95.011964906608313, 29.648384186295981 ], [ -95.011694906793181, 29.648952186616263 ], [ -95.011495906407646, 29.649255185946281 ], [ -95.011467906140695, 29.649299186414723 ], [ -95.011442905965396, 29.649337186110813 ], [ -95.011429906826208, 29.649364186443783 ], [ -95.011434905954488, 29.649551186232422 ], [ -95.011435906245254, 29.649579186065321 ], [ -95.011429906598551, 29.649656186183119 ], [ -95.011347906129927, 29.649821186082974 ], [ -95.011240905875411, 29.649975186157423 ], [ -95.011196906133733, 29.650024186922529 ], [ -95.011020906831263, 29.650068186460555 ], [ -95.010950906689175, 29.650134186206881 ], [ -95.010862906678668, 29.650271186847821 ], [ -95.010815905784526, 29.650372186814309 ], [ -95.010736906179275, 29.650542186940378 ], [ -95.010711906687433, 29.650596186548174 ], [ -95.010610906248957, 29.650744186330421 ], [ -95.01044690648996, 29.650821186555003 ], [ -95.010390906548722, 29.650865186344504 ], [ -95.010396906457956, 29.650997186855314 ], [ -95.010295906394276, 29.651217186971774 ], [ -95.010150906095546, 29.651481186921259 ], [ -95.010018906147636, 29.651673186439922 ], [ -95.009047905451553, 29.65348218728715 ], [ -95.008461905953112, 29.654450187486663 ], [ -95.008096906038929, 29.655148187562524 ], [ -95.007718905362012, 29.655775187752251 ], [ -95.007657906099993, 29.655912188255282 ], [ -95.007630905886373, 29.655973188288691 ], [ -95.007611905603767, 29.656237188286191 ], [ -95.007497905624476, 29.656490187986048 ], [ -95.007440905727577, 29.656627187614134 ], [ -95.00735290551296, 29.656775188238683 ], [ -95.007264905834759, 29.65688018839278 ], [ -95.007138905104526, 29.656984188479711 ], [ -95.007088905255372, 29.657050188013638 ], [ -95.007094905214927, 29.65713318826565 ], [ -95.007113905272917, 29.657188188337027 ], [ -95.007056905307309, 29.657270188492483 ], [ -95.006823906057747, 29.657562188436966 ], [ -95.006395905261385, 29.657869188075374 ], [ -95.006313905622463, 29.657935188604441 ], [ -95.006143905266342, 29.6581391879131 ], [ -95.006080905242499, 29.658249188091144 ], [ -95.005998904988928, 29.658359188229412 ], [ -95.005809905521659, 29.658507188459506 ], [ -95.00569590515579, 29.658633188659596 ], [ -95.005594904994823, 29.658782188719272 ], [ -95.005594905090931, 29.658848188439478 ], [ -95.005651904957887, 29.658974188141261 ], [ -95.005670905668765, 29.659062188731944 ], [ -95.005670905343976, 29.659112188421542 ], [ -95.005663905477007, 29.659183188297057 ], [ -95.005598905654693, 29.659348188369073 ], [ -95.005531905418437, 29.659519189088751 ], [ -95.005443905000789, 29.659640188992331 ], [ -95.005342905126312, 29.659733188384074 ], [ -95.005328905362916, 29.659752188517608 ], [ -95.005210905411772, 29.659915188660989 ], [ -95.00502190535407, 29.660079188737729 ], [ -95.004813904886603, 29.660151188543502 ], [ -95.004599904821703, 29.66024418912658 ], [ -95.004517904894584, 29.660371188703675 ], [ -95.004479904602888, 29.660481188703613 ], [ -95.004013904536549, 29.660975189349251 ], [ -95.003918905308041, 29.661140188610776 ], [ -95.003874904730978, 29.661250188964864 ], [ -95.003691905411316, 29.661443189529717 ], [ -95.003282904879114, 29.661794188844002 ], [ -95.003078904475842, 29.661932189661009 ], [ -95.003055904549072, 29.661948188999748 ], [ -95.002994904845522, 29.662087188919745 ], [ -95.002980905005344, 29.662119188883665 ], [ -95.002847904244589, 29.662212189647239 ], [ -95.002716904402988, 29.662169188986308 ], [ -95.002696904265747, 29.662163189469851 ], [ -95.00260290423256, 29.66217418945245 ], [ -95.002501904612146, 29.662245189603606 ], [ -95.002501905154602, 29.662306189730241 ], [ -95.002564904659735, 29.662432189313417 ], [ -95.002564904610153, 29.662480189351388 ], [ -95.00256490469765, 29.662658189156701 ], [ -95.002545905069823, 29.662757189619526 ], [ -95.002463904293009, 29.662800189486482 ], [ -95.002387904671792, 29.662800189351678 ], [ -95.002287904321264, 29.662883189188801 ], [ -95.002135904098623, 29.662943189377728 ], [ -95.002022905063285, 29.662943189875687 ], [ -95.002022904322487, 29.663004189059112 ], [ -95.002173904860669, 29.663075189879848 ], [ -95.00228090431591, 29.663180189628459 ], [ -95.002285904750011, 29.663242189492227 ], [ -95.002293904469056, 29.663350189925385 ], [ -95.002399904502312, 29.663608189425279 ], [ -95.002431904702561, 29.663686189442362 ], [ -95.002431905011264, 29.663713189861355 ], [ -95.002405904542229, 29.663743189207672 ], [ -95.002370905057958, 29.663767189834157 ], [ -95.002358904289409, 29.663769189496115 ], [ -95.00229990472171, 29.663743189550893 ], [ -95.002205904293689, 29.663705189874229 ], [ -95.002142904929073, 29.663666189500091 ], [ -95.001971904827428, 29.663628189278747 ], [ -95.001883904569851, 29.663628189746223 ], [ -95.001813904689428, 29.663644189770103 ], [ -95.001782904765363, 29.663688189881228 ], [ -95.001744905022136, 29.663760189240051 ], [ -95.001750904388629, 29.663931189302826 ], [ -95.001692904776633, 29.664046189320562 ], [ -95.001693904914802, 29.66406818930497 ], [ -95.001743904417893, 29.664156190092498 ], [ -95.00174390481493, 29.664228189698104 ], [ -95.001718905058283, 29.664305189665633 ], [ -95.001648904982858, 29.664393190104899 ], [ -95.001433903989081, 29.664541189590064 ], [ -95.001079904455679, 29.66472918957966 ], [ -95.000240903724546, 29.665384190055729 ], [ -95.000031904373017, 29.665573190528825 ], [ -94.998826904274907, 29.666267190702651 ], [ -94.99690790343206, 29.667354190282104 ], [ -94.996844903129428, 29.667536190470393 ], [ -94.996485903666667, 29.667767190357349 ], [ -94.996012903636128, 29.668020190982304 ], [ -94.995141903511879, 29.668649191098787 ], [ -94.994781902524181, 29.668897191234841 ], [ -94.994761903237148, 29.668904190670109 ], [ -94.993960902336667, 29.669427191188941 ], [ -94.993285902380663, 29.669945191584418 ], [ -94.992156902100092, 29.670595191527468 ], [ -94.99176290273239, 29.670831191718456 ], [ -94.990861902091439, 29.671372191495013 ], [ -94.990335902299051, 29.671706191966521 ], [ -94.986088900636688, 29.673221192193122 ], [ -94.985917900729149, 29.673282191969367 ], [ -94.982961900686149, 29.674726192615108 ], [ -94.980005899173491, 29.676171192527224 ], [ -94.979759899203401, 29.676290193405528 ], [ -94.979515898927474, 29.676411193083762 ], [ -94.979182898793823, 29.676573193330903 ], [ -94.978851898976941, 29.676736192658403 ], [ -94.978984899594437, 29.677080192765885 ], [ -94.979277899342719, 29.677608192871499 ], [ -94.979880899070537, 29.677311192787943 ], [ -94.980353899815853, 29.67707819340233 ], [ -94.981190900039138, 29.676667193306074 ], [ -94.981134899658642, 29.676838193260185 ], [ -94.981146900172448, 29.676953192741333 ], [ -94.98118789952818, 29.676990192765231 ], [ -94.981310899838732, 29.677101192821247 ], [ -94.981606899692238, 29.677261193298772 ], [ -94.981652899968836, 29.677311193513486 ], [ -94.981799899964841, 29.677469192897501 ], [ -94.981839900478562, 29.677514192991524 ], [ -94.982054900366961, 29.677866192975145 ], [ -94.982116900189965, 29.677837192968013 ], [ -94.982487899928756, 29.678459193215911 ], [ -94.982646900717768, 29.678382193161593 ], [ -94.982940900486199, 29.678238192866782 ], [ -94.983387900454844, 29.678021193595768 ], [ -94.983838900669198, 29.677800193480135 ], [ -94.98428590093414, 29.677582192832393 ], [ -94.984716900388236, 29.67737219338219 ], [ -94.985180901117957, 29.677153192985294 ], [ -94.985620901265747, 29.676946193365971 ], [ -94.986081900910051, 29.676729192600114 ], [ -94.986541900862449, 29.676512192824013 ], [ -94.98699390116613, 29.676298192707019 ], [ -94.98744190169819, 29.6760881924302 ], [ -94.987693901480043, 29.676482192582242 ], [ -94.988096901415261, 29.67711619299067 ], [ -94.988279901780601, 29.677492192604504 ], [ -94.988355901884674, 29.677435193312366 ], [ -94.988472902085832, 29.677401193156996 ], [ -94.988565901827997, 29.677388192894778 ], [ -94.988727901948948, 29.677378192622157 ], [ -94.988934902131689, 29.677388192823411 ], [ -94.989536902277095, 29.677478192690312 ], [ -94.989731902092075, 29.677500193052484 ], [ -94.990109901968808, 29.677478193095375 ], [ -94.991134902016171, 29.677321192343985 ], [ -94.991622902538253, 29.677255192551883 ], [ -94.991985902488295, 29.677201192310743 ], [ -94.992194902838705, 29.677171192733702 ], [ -94.992728903305917, 29.677094192526713 ], [ -94.993250903169098, 29.677012192551814 ], [ -94.993828903407334, 29.676917192581385 ], [ -94.994332902756895, 29.676860192163421 ], [ -94.994930903473005, 29.676790192617798 ], [ -94.995489902996312, 29.676726192784702 ], [ -94.995668903544839, 29.676705192166317 ], [ -94.996523903863604, 29.676559192867021 ], [ -94.996727903522782, 29.676524192422757 ], [ -94.996863904267911, 29.67650619258135 ], [ -94.997573904263646, 29.676416192572624 ], [ -94.998248903957119, 29.676334192075267 ], [ -94.998814904228311, 29.676256192443518 ], [ -94.999359904218664, 29.676182192331591 ], [ -94.999784904647498, 29.676112192265432 ], [ -94.999885904901006, 29.676086192133415 ], [ -95.00036690435941, 29.675877192311791 ], [ -95.000385904882165, 29.67585019178771 ], [ -95.000818904982296, 29.675652192129899 ], [ -95.001274905181802, 29.67544319163844 ], [ -95.001728905191996, 29.675235192472122 ], [ -95.002215905232561, 29.675011192395502 ], [ -95.002691905204557, 29.674792192154449 ], [ -95.003156905529551, 29.674580191532002 ], [ -95.003595905659679, 29.674372191576783 ], [ -95.004111905257759, 29.674141191823722 ], [ -95.004552905666245, 29.673938191245757 ], [ -95.005063905783686, 29.673817191320126 ], [ -95.005476905517028, 29.673717191640343 ], [ -95.005939906108637, 29.673629191768818 ], [ -95.006311906441155, 29.673566191777883 ], [ -95.0068519058063, 29.673547191277365 ], [ -95.007415906182601, 29.673511191908585 ], [ -95.007926906920773, 29.673495191524029 ], [ -95.00844390644059, 29.673507191688618 ], [ -95.008990906882275, 29.673517191764731 ], [ -95.009599906543798, 29.673503191164741 ], [ -95.015187908057612, 29.673364191571633 ], [ -95.017293909181461, 29.673312190706444 ], [ -95.01734690913932, 29.673310190683562 ], [ -95.017852909101762, 29.673296191151447 ], [ -95.018355909420791, 29.673284191322679 ], [ -95.018887908949182, 29.673272190765164 ], [ -95.019431909011118, 29.673259190767961 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 753, "Tract": "48201340201", "Area_SqMi": 3.8964619193114416, "total_2009": 685, "total_2010": 682, "total_2011": 578, "total_2012": 876, "total_2013": 1088, "total_2014": 1145, "total_2015": 1574, "total_2016": 1354, "total_2017": 1258, "total_2018": 1475, "total_2019": 1624, "total_2020": 1647, "age1": 983, "age2": 1431, "age3": 522, "earn1": 257, "earn2": 484, "earn3": 2195, "naics_s01": 0, "naics_s02": 34, "naics_s03": 0, "naics_s04": 425, "naics_s05": 24, "naics_s06": 2, "naics_s07": 10, "naics_s08": 610, "naics_s09": 116, "naics_s10": 6, "naics_s11": 0, "naics_s12": 111, "naics_s13": 108, "naics_s14": 8, "naics_s15": 4, "naics_s16": 26, "naics_s17": 46, "naics_s18": 32, "naics_s19": 0, "naics_s20": 1374, "race1": 2168, "race2": 562, "race3": 24, "race4": 104, "race5": 9, "race6": 69, "ethnicity1": 1779, "ethnicity2": 1157, "edu1": 448, "edu2": 568, "edu3": 580, "edu4": 357, "Shape_Length": 52987.053747555015, "Shape_Area": 108626689.4491785, "total_2021": 1698, "total_2022": 2936 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.1919099509783, 29.61617717366321 ], [ -95.191729951152652, 29.615991173066188 ], [ -95.191477950760046, 29.61573117312054 ], [ -95.19077695117015, 29.615022173347299 ], [ -95.189559950167123, 29.613854172751712 ], [ -95.189443950135143, 29.613742173120102 ], [ -95.188309949974126, 29.612730172958674 ], [ -95.188234950097609, 29.612578173247645 ], [ -95.187283949969625, 29.61157917225816 ], [ -95.18528894907503, 29.609484172500796 ], [ -95.184370948947375, 29.608441172288181 ], [ -95.181022947955242, 29.604857171941152 ], [ -95.178945947855027, 29.60263317137543 ], [ -95.178570947559479, 29.602249170926161 ], [ -95.176976946504439, 29.600626170516215 ], [ -95.174576946320698, 29.59804117053412 ], [ -95.173033945511378, 29.596417169596663 ], [ -95.171332945271189, 29.594622169817992 ], [ -95.170157944731045, 29.593363169209102 ], [ -95.17006794441464, 29.593266169720845 ], [ -95.169907944717551, 29.593096169699372 ], [ -95.169304944660809, 29.5924471696026 ], [ -95.169124943933298, 29.5922611694862 ], [ -95.168576944056909, 29.591692169481966 ], [ -95.168371944340095, 29.591474169022103 ], [ -95.168347944480828, 29.591826168929792 ], [ -95.167837944278645, 29.591302169575208 ], [ -95.167739944442573, 29.591371168901155 ], [ -95.166626943868124, 29.591375168993757 ], [ -95.166185943700711, 29.591376168947221 ], [ -95.165493943213889, 29.59142616894863 ], [ -95.165078943715557, 29.591481169582355 ], [ -95.164656943086271, 29.591635169332513 ], [ -95.164159942827411, 29.591624168949323 ], [ -95.162807942664458, 29.591651169265596 ], [ -95.162322942585419, 29.591546169152679 ], [ -95.161240942295521, 29.59153016925104 ], [ -95.158453941711471, 29.591606169271131 ], [ -95.156415941499986, 29.591644169836361 ], [ -95.154015940225563, 29.591704169494523 ], [ -95.153137940264145, 29.591726169884605 ], [ -95.153042940713433, 29.591737169647367 ], [ -95.153300939882669, 29.5919571700204 ], [ -95.153514940873578, 29.59225417021279 ], [ -95.153577940069866, 29.592441170055658 ], [ -95.153602940572696, 29.592601169845647 ], [ -95.153608940961519, 29.594206170354543 ], [ -95.15365194017447, 29.596296170939389 ], [ -95.153732941083945, 29.601294171929467 ], [ -95.153737940518056, 29.601475172118739 ], [ -95.153754940544047, 29.602091172006027 ], [ -95.15382594098233, 29.604572172693175 ], [ -95.153844941355786, 29.60478517261264 ], [ -95.153565940514028, 29.605029172592708 ], [ -95.153155940843817, 29.605387172463395 ], [ -95.147897939423345, 29.609976174065935 ], [ -95.146910939077699, 29.610838174098891 ], [ -95.142214938839388, 29.614936174488371 ], [ -95.144749939174332, 29.61707217544312 ], [ -95.153171941481958, 29.611944173813551 ], [ -95.153676941533604, 29.611675173906011 ], [ -95.153686941656872, 29.612358173893362 ], [ -95.153846941566286, 29.622920176070643 ], [ -95.153947942153479, 29.625007176406505 ], [ -95.154034941939074, 29.626992176593038 ], [ -95.154104941881016, 29.627075177007168 ], [ -95.154167942049909, 29.627091177140674 ], [ -95.154463942253827, 29.627080176563794 ], [ -95.155388942408976, 29.627047176861428 ], [ -95.156819942939165, 29.6270171764723 ], [ -95.156948942558856, 29.627015176933103 ], [ -95.15907694301707, 29.626993176378672 ], [ -95.159793943818997, 29.626971177175523 ], [ -95.161933943989496, 29.626972177053453 ], [ -95.162565944427982, 29.626947176980035 ], [ -95.162564944557388, 29.626874176402772 ], [ -95.162418944345532, 29.620788175089512 ], [ -95.166873944883292, 29.620708175336812 ], [ -95.170919946430544, 29.620637175311856 ], [ -95.171119946235649, 29.623137175546766 ], [ -95.174293947278031, 29.623207175867808 ], [ -95.178988947823584, 29.623311175785947 ], [ -95.179212947875783, 29.623488175756524 ], [ -95.179353948607087, 29.623368175510393 ], [ -95.180356948162327, 29.622661175576717 ], [ -95.181439949388832, 29.621958174885371 ], [ -95.184187949094067, 29.620407174554028 ], [ -95.187231950737328, 29.618919174437007 ], [ -95.188854950524984, 29.618085173857541 ], [ -95.189983950660604, 29.617484173621573 ], [ -95.190632951036477, 29.617060173789348 ], [ -95.19109695081103, 29.616765173227865 ], [ -95.191479951483927, 29.616490173215322 ], [ -95.1919099509783, 29.61617717366321 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 754, "Tract": "48201324102", "Area_SqMi": 7.7028396293835462, "total_2009": 1183, "total_2010": 1209, "total_2011": 1179, "total_2012": 1500, "total_2013": 1512, "total_2014": 2446, "total_2015": 2556, "total_2016": 2085, "total_2017": 1914, "total_2018": 1951, "total_2019": 2028, "total_2020": 1347, "age1": 196, "age2": 1114, "age3": 391, "earn1": 36, "earn2": 87, "earn3": 1578, "naics_s01": 0, "naics_s02": 0, "naics_s03": 37, "naics_s04": 93, "naics_s05": 1115, "naics_s06": 149, "naics_s07": 0, "naics_s08": 271, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 34, "naics_s19": 0, "naics_s20": 0, "race1": 1402, "race2": 199, "race3": 11, "race4": 65, "race5": 2, "race6": 22, "ethnicity1": 1210, "ethnicity2": 491, "edu1": 234, "edu2": 400, "edu3": 501, "edu4": 370, "Shape_Length": 65857.079199190441, "Shape_Area": 214741985.32542932, "total_2021": 1457, "total_2022": 1701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.224129964465035, 29.723782194613193 ], [ -95.224156964322205, 29.723316194451591 ], [ -95.223928963808888, 29.722513194437155 ], [ -95.223959964499073, 29.722337193812333 ], [ -95.223867964259924, 29.721913194454544 ], [ -95.223883963997523, 29.721374194001314 ], [ -95.223825964371557, 29.721202193618051 ], [ -95.223644963886613, 29.721007194210816 ], [ -95.223393964217877, 29.720884193552216 ], [ -95.22219396347829, 29.720510193982566 ], [ -95.221450963395071, 29.720128194282974 ], [ -95.221044963157766, 29.719749194001064 ], [ -95.220129962621229, 29.718894193689639 ], [ -95.22002396296935, 29.718753193544277 ], [ -95.220022962749098, 29.718632193588896 ], [ -95.220020963529677, 29.718511193419477 ], [ -95.220018963037532, 29.718367193874801 ], [ -95.220018963418099, 29.718014193159117 ], [ -95.220023963021859, 29.717869193254909 ], [ -95.22002296341779, 29.717582193265986 ], [ -95.220022962717493, 29.717431193611294 ], [ -95.220022962900686, 29.717421193353459 ], [ -95.22002196312971, 29.716096193243661 ], [ -95.219611962760126, 29.716110193215499 ], [ -95.219511962348022, 29.716113193055822 ], [ -95.219411963138739, 29.716117193062949 ], [ -95.21931296320075, 29.716117193292515 ], [ -95.219214962447964, 29.716118192975685 ], [ -95.218393962809515, 29.716121193064001 ], [ -95.217590962100104, 29.716123193416585 ], [ -95.216874962304558, 29.716127193304299 ], [ -95.216320962034501, 29.716127192989855 ], [ -95.21533596125532, 29.716145193196549 ], [ -95.213953961417189, 29.716139193501185 ], [ -95.213373961248706, 29.716157193623825 ], [ -95.211697960882091, 29.716167193545232 ], [ -95.211696961210777, 29.716563193138093 ], [ -95.211695960677801, 29.717095193139251 ], [ -95.211628960844862, 29.717348193405655 ], [ -95.211538961191025, 29.71750719411553 ], [ -95.21144596035559, 29.717619193924406 ], [ -95.211290960567936, 29.717716193413828 ], [ -95.211161960891658, 29.717868194106657 ], [ -95.211108961226628, 29.718003193561433 ], [ -95.211082960799018, 29.718131193431116 ], [ -95.211101961195482, 29.718269193791809 ], [ -95.21117196115847, 29.71842019342499 ], [ -95.211217961238091, 29.718501193658131 ], [ -95.21124996094008, 29.718564193972117 ], [ -95.211025961056052, 29.71853519370525 ], [ -95.210717961014367, 29.718511193552324 ], [ -95.210494960110282, 29.718501193935197 ], [ -95.208682960169796, 29.718515193566322 ], [ -95.208201959958132, 29.718438193624589 ], [ -95.207647959467366, 29.718305193956862 ], [ -95.205675959359368, 29.717649194280366 ], [ -95.203421958253656, 29.716900193830764 ], [ -95.201333957783262, 29.716139194005919 ], [ -95.200660958258922, 29.715909193855992 ], [ -95.200189957324966, 29.715745194113659 ], [ -95.200033957338263, 29.715694194095693 ], [ -95.199408957968046, 29.715479193949285 ], [ -95.19918295768187, 29.715340193559001 ], [ -95.199068957728272, 29.715270194069657 ], [ -95.198922957745253, 29.715182193292915 ], [ -95.198452957248676, 29.714843193616876 ], [ -95.198025956824523, 29.714279193037278 ], [ -95.197883957682123, 29.714092193171155 ], [ -95.197771957148902, 29.71390419331475 ], [ -95.1976939566851, 29.713802193071086 ], [ -95.197630957052539, 29.713678193289049 ], [ -95.197583956984943, 29.713540193363748 ], [ -95.197568956767057, 29.713479193145396 ], [ -95.197566957079829, 29.713469192906594 ], [ -95.197533957450659, 29.713322193127105 ], [ -95.197482957451612, 29.71309219347177 ], [ -95.197448956700043, 29.712694193575722 ], [ -95.197404956961265, 29.712470193477458 ], [ -95.197174957386835, 29.712491193142405 ], [ -95.196276956775534, 29.712574193167956 ], [ -95.193665956482363, 29.712813193327388 ], [ -95.193154955567877, 29.712860193293064 ], [ -95.192560955863314, 29.712915193198402 ], [ -95.191660955930587, 29.71299819321198 ], [ -95.190936954904828, 29.713050193316921 ], [ -95.190222955108695, 29.713071193801849 ], [ -95.188530954353382, 29.713027193068314 ], [ -95.188421954847854, 29.713024193886326 ], [ -95.188141955108279, 29.713017193394204 ], [ -95.187389954505051, 29.712998193448982 ], [ -95.18539195406133, 29.712948193904385 ], [ -95.184348953202289, 29.712923193606205 ], [ -95.184122953458143, 29.712917193279175 ], [ -95.18387995371647, 29.712911193837549 ], [ -95.182610953492826, 29.712880193318576 ], [ -95.179177952534744, 29.712795193720662 ], [ -95.17690495206908, 29.712730193824513 ], [ -95.175070951310474, 29.712678193925537 ], [ -95.173395950984329, 29.712631194055021 ], [ -95.17189695008868, 29.71258819387765 ], [ -95.171498950561187, 29.71257719432564 ], [ -95.171279950497208, 29.712571193647339 ], [ -95.168019949471741, 29.712478194278031 ], [ -95.167407949588309, 29.712467194187816 ], [ -95.165207948695823, 29.712427194299178 ], [ -95.162100947791785, 29.712340194523811 ], [ -95.161213948168424, 29.712314194209902 ], [ -95.153983945380148, 29.712103194058329 ], [ -95.153788946237682, 29.712097194081007 ], [ -95.153549945523494, 29.71209019456046 ], [ -95.153374945930125, 29.712085194472799 ], [ -95.153378945528203, 29.712385194140829 ], [ -95.153374945546886, 29.712588194793728 ], [ -95.153359945732191, 29.712940194921348 ], [ -95.153329945434862, 29.713375194619136 ], [ -95.153273945182477, 29.713726194884064 ], [ -95.153190945343567, 29.71407219481334 ], [ -95.153079945593774, 29.714413195422672 ], [ -95.152942945683719, 29.714747194963614 ], [ -95.152801945916366, 29.715041194989858 ], [ -95.152636945133224, 29.715325195530067 ], [ -95.152449945362079, 29.715599195339248 ], [ -95.152242945396139, 29.715861195333883 ], [ -95.152136945507593, 29.715981194928741 ], [ -95.151349945416513, 29.716840195513488 ], [ -95.150249945593075, 29.718074196266866 ], [ -95.150102944580468, 29.71825719545215 ], [ -95.149575945131673, 29.718911196284253 ], [ -95.14944694518698, 29.719075196138224 ], [ -95.149246945109795, 29.719327196579659 ], [ -95.149140944904588, 29.719462196377126 ], [ -95.149122944411147, 29.719485195878672 ], [ -95.148947944667555, 29.719694196329794 ], [ -95.14887194449831, 29.719785196388688 ], [ -95.148767944382598, 29.719908196535545 ], [ -95.148455944925558, 29.720337196558194 ], [ -95.148386944586605, 29.720464196347248 ], [ -95.148151944339475, 29.720899196891462 ], [ -95.14811694510361, 29.720982196697072 ], [ -95.147997944761926, 29.721267196875431 ], [ -95.147901944892695, 29.721546196295922 ], [ -95.147848944978662, 29.721802196742374 ], [ -95.147794944240204, 29.722023196580498 ], [ -95.14775694428667, 29.722279196880201 ], [ -95.147719944152371, 29.722591197024034 ], [ -95.14769094462865, 29.722921196598609 ], [ -95.147040944259516, 29.728207197962913 ], [ -95.146954944753276, 29.728907198447189 ], [ -95.14694094494989, 29.72902419839988 ], [ -95.146295944764546, 29.734266199091852 ], [ -95.146270945298383, 29.734472199231515 ], [ -95.146070944718247, 29.736101200016556 ], [ -95.146154944838258, 29.736107199589235 ], [ -95.148446945436532, 29.736262199275036 ], [ -95.149987946036617, 29.736176199572427 ], [ -95.150656946444101, 29.736033199962669 ], [ -95.1507879464056, 29.736005199119024 ], [ -95.151695946142397, 29.736041199033522 ], [ -95.152095946646043, 29.736128199942755 ], [ -95.152863946849592, 29.736294199907281 ], [ -95.154533946917468, 29.737159199971867 ], [ -95.155732946883973, 29.737967200089308 ], [ -95.155828947685066, 29.738032199690728 ], [ -95.156331948035884, 29.73837119959558 ], [ -95.156345947808958, 29.73839420009342 ], [ -95.156799947222993, 29.739120200158851 ], [ -95.156843947358084, 29.739190199507313 ], [ -95.157552947698207, 29.739685200039915 ], [ -95.15811094780517, 29.740264200373076 ], [ -95.158402948441363, 29.740700199854984 ], [ -95.158683948436234, 29.741254200387402 ], [ -95.158920948519764, 29.741721200651913 ], [ -95.159262948199597, 29.742033200782718 ], [ -95.159954948350048, 29.742262200141596 ], [ -95.161774949285714, 29.742864200541085 ], [ -95.162056949706056, 29.74301420027502 ], [ -95.162649949208458, 29.743170200330077 ], [ -95.163371949208994, 29.743484200678743 ], [ -95.163872950115604, 29.744144201082936 ], [ -95.165087950607912, 29.745225201250506 ], [ -95.166017950786085, 29.74539520123508 ], [ -95.166284950557312, 29.745491201189608 ], [ -95.168156951382031, 29.7463372010954 ], [ -95.168950950711121, 29.746903201306026 ], [ -95.169979951306772, 29.746815201288928 ], [ -95.170191951451898, 29.746827200806226 ], [ -95.170473951395493, 29.746842201125059 ], [ -95.171108951602363, 29.74700020086404 ], [ -95.172970952165443, 29.746936200664628 ], [ -95.173030952116918, 29.746934200814398 ], [ -95.173404952601913, 29.746921200932903 ], [ -95.173924952562373, 29.746804200541824 ], [ -95.174092952975982, 29.74679920111166 ], [ -95.178529953705777, 29.745903200251352 ], [ -95.182116954729594, 29.745532200014637 ], [ -95.183521955281122, 29.745625199938559 ], [ -95.183931955343439, 29.745653200233047 ], [ -95.186617955906698, 29.745832200732885 ], [ -95.188458956084986, 29.745157200197355 ], [ -95.191504956916702, 29.744016199751368 ], [ -95.192617957344126, 29.743632199936382 ], [ -95.192822957002946, 29.743568200024384 ], [ -95.193127957262476, 29.743473199631648 ], [ -95.193432956841647, 29.743379199649031 ], [ -95.194321957555061, 29.743103199453632 ], [ -95.198417958334332, 29.741832198718821 ], [ -95.198437958928579, 29.741822199117159 ], [ -95.200117958761112, 29.740932198767101 ], [ -95.20022095890549, 29.740847198764055 ], [ -95.20231795900753, 29.739133198638644 ], [ -95.202529959100573, 29.738888198279653 ], [ -95.204490959488737, 29.736626198113367 ], [ -95.204687959843554, 29.73639919745629 ], [ -95.204916959554239, 29.73613319774449 ], [ -95.206617960430762, 29.733332197304428 ], [ -95.207045960471632, 29.732508196802357 ], [ -95.207627960454573, 29.731387196729521 ], [ -95.207796960818456, 29.731061196350289 ], [ -95.207966960257181, 29.730735196058347 ], [ -95.208503960179414, 29.729701196459143 ], [ -95.209317960924992, 29.72813219610358 ], [ -95.209959961190179, 29.727733195472833 ], [ -95.210258960794761, 29.727547195445496 ], [ -95.21055796125367, 29.727360195492533 ], [ -95.211575961647952, 29.726728195243656 ], [ -95.211891961299969, 29.726531195403389 ], [ -95.211948961429187, 29.726496195148485 ], [ -95.213607961976322, 29.725500194820423 ], [ -95.215217962536954, 29.724533195221568 ], [ -95.217038962252118, 29.724355194681692 ], [ -95.217340962136447, 29.724325195056618 ], [ -95.217643963126037, 29.724296195246939 ], [ -95.219317963135254, 29.724133194550777 ], [ -95.222618963671536, 29.725076194775671 ], [ -95.222811964473323, 29.725099195215815 ], [ -95.223429964524215, 29.725243194837606 ], [ -95.223548963992883, 29.725280194921929 ], [ -95.223767964453458, 29.724893194417362 ], [ -95.223869964329779, 29.724604194662874 ], [ -95.224046964152691, 29.724348194503907 ], [ -95.224049963889399, 29.724097194488106 ], [ -95.224049963928451, 29.724061194368922 ], [ -95.224129964465035, 29.723782194613193 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 755, "Tract": "48201340202", "Area_SqMi": 6.4188884018021941, "total_2009": 2758, "total_2010": 2900, "total_2011": 2898, "total_2012": 1727, "total_2013": 1720, "total_2014": 1893, "total_2015": 1619, "total_2016": 1578, "total_2017": 2139, "total_2018": 2357, "total_2019": 2457, "total_2020": 2555, "age1": 621, "age2": 1256, "age3": 645, "earn1": 374, "earn2": 533, "earn3": 1615, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 59, "naics_s05": 900, "naics_s06": 52, "naics_s07": 376, "naics_s08": 13, "naics_s09": 27, "naics_s10": 23, "naics_s11": 20, "naics_s12": 293, "naics_s13": 1, "naics_s14": 200, "naics_s15": 14, "naics_s16": 270, "naics_s17": 15, "naics_s18": 154, "naics_s19": 103, "naics_s20": 0, "race1": 1900, "race2": 312, "race3": 14, "race4": 253, "race5": 4, "race6": 39, "ethnicity1": 1773, "ethnicity2": 749, "edu1": 309, "edu2": 423, "edu3": 537, "edu4": 632, "Shape_Length": 89955.757643110803, "Shape_Area": 178947622.60494941, "total_2021": 2124, "total_2022": 2522 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.179212947875783, 29.623488175756524 ], [ -95.178988947823584, 29.623311175785947 ], [ -95.174293947278031, 29.623207175867808 ], [ -95.171119946235649, 29.623137175546766 ], [ -95.170919946430544, 29.620637175311856 ], [ -95.166873944883292, 29.620708175336812 ], [ -95.162418944345532, 29.620788175089512 ], [ -95.162564944557388, 29.626874176402772 ], [ -95.162565944427982, 29.626947176980035 ], [ -95.161933943989496, 29.626972177053453 ], [ -95.159793943818997, 29.626971177175523 ], [ -95.15907694301707, 29.626993176378672 ], [ -95.156948942558856, 29.627015176933103 ], [ -95.156819942939165, 29.6270171764723 ], [ -95.155388942408976, 29.627047176861428 ], [ -95.154463942253827, 29.627080176563794 ], [ -95.154167942049909, 29.627091177140674 ], [ -95.154104941881016, 29.627075177007168 ], [ -95.154034941939074, 29.626992176593038 ], [ -95.153947942153479, 29.625007176406505 ], [ -95.153846941566286, 29.622920176070643 ], [ -95.153686941656872, 29.612358173893362 ], [ -95.153676941533604, 29.611675173906011 ], [ -95.153171941481958, 29.611944173813551 ], [ -95.144749939174332, 29.61707217544312 ], [ -95.142214938839388, 29.614936174488371 ], [ -95.146910939077699, 29.610838174098891 ], [ -95.147897939423345, 29.609976174065935 ], [ -95.153155940843817, 29.605387172463395 ], [ -95.153565940514028, 29.605029172592708 ], [ -95.153844941355786, 29.60478517261264 ], [ -95.15382594098233, 29.604572172693175 ], [ -95.153754940544047, 29.602091172006027 ], [ -95.153737940518056, 29.601475172118739 ], [ -95.153732941083945, 29.601294171929467 ], [ -95.15365194017447, 29.596296170939389 ], [ -95.153608940961519, 29.594206170354543 ], [ -95.153602940572696, 29.592601169845647 ], [ -95.153577940069866, 29.592441170055658 ], [ -95.153514940873578, 29.59225417021279 ], [ -95.153300939882669, 29.5919571700204 ], [ -95.153042940713433, 29.591737169647367 ], [ -95.153137940264145, 29.591726169884605 ], [ -95.154015940225563, 29.591704169494523 ], [ -95.156415941499986, 29.591644169836361 ], [ -95.158453941711471, 29.591606169271131 ], [ -95.161240942295521, 29.59153016925104 ], [ -95.162322942585419, 29.591546169152679 ], [ -95.162807942664458, 29.591651169265596 ], [ -95.164159942827411, 29.591624168949323 ], [ -95.164656943086271, 29.591635169332513 ], [ -95.165078943715557, 29.591481169582355 ], [ -95.165493943213889, 29.59142616894863 ], [ -95.166185943700711, 29.591376168947221 ], [ -95.166626943868124, 29.591375168993757 ], [ -95.167739944442573, 29.591371168901155 ], [ -95.167837944278645, 29.591302169575208 ], [ -95.168347944480828, 29.591826168929792 ], [ -95.168371944340095, 29.591474169022103 ], [ -95.168213944393642, 29.591305169211392 ], [ -95.168062944424847, 29.591144169526792 ], [ -95.162932942606403, 29.58568316806646 ], [ -95.15931494179145, 29.581818167389148 ], [ -95.159181941254758, 29.581675167060542 ], [ -95.157805941201147, 29.58020516736217 ], [ -95.157578941091245, 29.580365167404764 ], [ -95.157270940405297, 29.580581167193227 ], [ -95.156529940910033, 29.581101167720082 ], [ -95.155817940685367, 29.581478167332271 ], [ -95.155446940006314, 29.581675167393687 ], [ -95.154439940426244, 29.582082167376168 ], [ -95.151530939049977, 29.582837168085383 ], [ -95.151472939114399, 29.582852167801043 ], [ -95.150164939133518, 29.583324168374997 ], [ -95.149186939256197, 29.583843168398523 ], [ -95.148114938281637, 29.584557168245219 ], [ -95.146904938713817, 29.585754168446954 ], [ -95.145683937984387, 29.587396168960236 ], [ -95.144810938050298, 29.588352169239052 ], [ -95.143876938315842, 29.589162169524712 ], [ -95.143345937264144, 29.589515169997927 ], [ -95.142441937491824, 29.590030169861976 ], [ -95.141065937029325, 29.590621170325839 ], [ -95.140080936737689, 29.591073170331732 ], [ -95.139705936383123, 29.59124516966369 ], [ -95.139368936585811, 29.591415170076427 ], [ -95.138633936357351, 29.591797169838266 ], [ -95.13814293643874, 29.592123170488541 ], [ -95.137619935951221, 29.592544170241077 ], [ -95.136968936584623, 29.593220170825258 ], [ -95.136344935610879, 29.594067170401605 ], [ -95.135930935733541, 29.59484317106061 ], [ -95.135920935772319, 29.594861171260728 ], [ -95.135808935868852, 29.59523917069675 ], [ -95.135631935487368, 29.595835170882733 ], [ -95.135605936263346, 29.5959371713083 ], [ -95.135392936352872, 29.596780171418011 ], [ -95.135074936336551, 29.597628171167408 ], [ -95.134258935452877, 29.598905171441725 ], [ -95.133375936017728, 29.599950172361368 ], [ -95.133063935790815, 29.600249171799277 ], [ -95.132664935852517, 29.600631172314849 ], [ -95.131498934675633, 29.601252172862935 ], [ -95.130444934712344, 29.601821172313372 ], [ -95.12820493405421, 29.602850172994714 ], [ -95.127189934146614, 29.603467173062992 ], [ -95.126396933578533, 29.603950172748156 ], [ -95.125327933277887, 29.60453117321304 ], [ -95.125149933836056, 29.604627173202019 ], [ -95.124234933960125, 29.605126173443253 ], [ -95.121070932981979, 29.606383173770077 ], [ -95.120122932622394, 29.606741173907281 ], [ -95.119184931776601, 29.606977173635293 ], [ -95.117882931711435, 29.607240174318477 ], [ -95.116967932155973, 29.607336174568143 ], [ -95.115935931368426, 29.607426174568996 ], [ -95.113464930514951, 29.607544174622564 ], [ -95.113318930306889, 29.607548174446421 ], [ -95.113338930710015, 29.608233174543791 ], [ -95.113354930942677, 29.608416174935964 ], [ -95.11335893066196, 29.608546174699971 ], [ -95.113365930840828, 29.60867817458686 ], [ -95.113369930977029, 29.608747174500404 ], [ -95.113392931223515, 29.609146174328949 ], [ -95.113428931214557, 29.609769174810442 ], [ -95.113445931133782, 29.610068175159906 ], [ -95.113460930782153, 29.610331174690401 ], [ -95.113505930750321, 29.611112174694519 ], [ -95.113529930717888, 29.611532175415846 ], [ -95.113565931493099, 29.612150175073097 ], [ -95.11360093095486, 29.612759175664301 ], [ -95.113605930679967, 29.612852175635403 ], [ -95.113636930941453, 29.61338517537337 ], [ -95.113688930925534, 29.614284176087562 ], [ -95.113748931130033, 29.615327175894492 ], [ -95.113809930925711, 29.616400176167907 ], [ -95.113872931708997, 29.617487176500145 ], [ -95.113943931195266, 29.618727176175128 ], [ -95.114000931818566, 29.619708176929798 ], [ -95.114006931027689, 29.619816177159791 ], [ -95.114079931812668, 29.62109417721636 ], [ -95.114085932061244, 29.621190177010686 ], [ -95.114159931379803, 29.622471177441476 ], [ -95.114209931526446, 29.622466177464805 ], [ -95.114672932102877, 29.622563177817355 ], [ -95.115107932217541, 29.62267217737379 ], [ -95.115408931584838, 29.622757177131714 ], [ -95.116413932443677, 29.623111177649264 ], [ -95.117330932574205, 29.623530177707423 ], [ -95.117758932372695, 29.62376217772665 ], [ -95.118226932554919, 29.624042177395523 ], [ -95.118707933011621, 29.624369177311515 ], [ -95.118766932920821, 29.624411178002479 ], [ -95.119204933411567, 29.624749177380757 ], [ -95.119415933550442, 29.624926177651119 ], [ -95.119626932702673, 29.625113177406813 ], [ -95.119820933255298, 29.625295178194836 ], [ -95.120013933426975, 29.625486178169389 ], [ -95.120269933370778, 29.625757178109424 ], [ -95.120381932959873, 29.625883178238812 ], [ -95.120556933097419, 29.62608817814688 ], [ -95.120724933518673, 29.626297178115077 ], [ -95.120885933168211, 29.626510178139185 ], [ -95.121040934042952, 29.626726178145304 ], [ -95.121146934058473, 29.626883177717428 ], [ -95.121170933253083, 29.626921178129702 ], [ -95.12132793342407, 29.627168177778717 ], [ -95.121413933937959, 29.627312178122331 ], [ -95.121526933534881, 29.627513178492141 ], [ -95.121605933641789, 29.627659178510839 ], [ -95.121634933800365, 29.62771517854225 ], [ -95.121736933964968, 29.627920178682349 ], [ -95.121761933403292, 29.627972178152749 ], [ -95.12178893409677, 29.628031177836075 ], [ -95.121915933552472, 29.628316178128919 ], [ -95.122107933710822, 29.628815178736826 ], [ -95.122244933587666, 29.629245178834974 ], [ -95.122366933577027, 29.629719178728788 ], [ -95.122470933653489, 29.630259178401136 ], [ -95.122484934199164, 29.630360178460702 ], [ -95.122506933966093, 29.630520178971608 ], [ -95.12252993402187, 29.630722178591054 ], [ -95.122557933785103, 29.631106179194521 ], [ -95.12255093390209, 29.631201178535065 ], [ -95.122479934489675, 29.632165178909158 ], [ -95.12242593445805, 29.632899179519164 ], [ -95.122382934475965, 29.633482179401252 ], [ -95.123220934414732, 29.633458179772365 ], [ -95.124598934879515, 29.633418179169652 ], [ -95.128209936051078, 29.633314178713938 ], [ -95.130576936064088, 29.633301178789704 ], [ -95.132576936480305, 29.63328917930361 ], [ -95.135182937435957, 29.633274178773721 ], [ -95.137022937474157, 29.633225178646207 ], [ -95.138828938744453, 29.633211178615632 ], [ -95.139158938879561, 29.633203178419738 ], [ -95.139278938831055, 29.633175178662199 ], [ -95.139396938669094, 29.63314117917318 ], [ -95.139507939003863, 29.633103178869089 ], [ -95.139624938963536, 29.633056178674224 ], [ -95.139734938749996, 29.633006178812462 ], [ -95.139840938295578, 29.632951178672307 ], [ -95.140043938979488, 29.63282517908624 ], [ -95.140135938691017, 29.632756178528645 ], [ -95.14020093845852, 29.632722178861005 ], [ -95.140653938502354, 29.632311178639998 ], [ -95.14108693858077, 29.631869178324152 ], [ -95.141486939421796, 29.631589178443289 ], [ -95.141906939350022, 29.631389178239548 ], [ -95.142309939470422, 29.631269177954572 ], [ -95.142658939226806, 29.631234178560298 ], [ -95.142741939216606, 29.631226178576206 ], [ -95.143315939292918, 29.63120117826594 ], [ -95.144941940032552, 29.631173178413395 ], [ -95.145930940224503, 29.631152178552288 ], [ -95.146517940014661, 29.631140178385614 ], [ -95.147120940387197, 29.631124177652897 ], [ -95.147640940515984, 29.631113178319801 ], [ -95.150007940942771, 29.631061177853052 ], [ -95.15063494146753, 29.631051178052971 ], [ -95.151666941756574, 29.631028177985087 ], [ -95.154005942020589, 29.630981177697883 ], [ -95.154503942728994, 29.630970177566329 ], [ -95.156006942652851, 29.630935177600801 ], [ -95.157484942975003, 29.630908177932039 ], [ -95.158981943049156, 29.630869177176777 ], [ -95.159850943865123, 29.630847177710418 ], [ -95.160532944054268, 29.630829177820637 ], [ -95.16065794361451, 29.630826177817145 ], [ -95.160691943753136, 29.630825177202219 ], [ -95.161809944163693, 29.630797177473681 ], [ -95.162631944480665, 29.630775177740457 ], [ -95.164882944786029, 29.630727177565198 ], [ -95.165495945577135, 29.630710177458347 ], [ -95.165669945056507, 29.630709177197911 ], [ -95.166999945590362, 29.630676177068295 ], [ -95.168819946287016, 29.630620177253729 ], [ -95.16961594630385, 29.630595176786137 ], [ -95.170314946584639, 29.630586177221087 ], [ -95.170572946103164, 29.63034317682505 ], [ -95.171042946289518, 29.62990117716587 ], [ -95.172137946536353, 29.628840176815185 ], [ -95.17276794646618, 29.628269176995921 ], [ -95.173231946572443, 29.62785117661025 ], [ -95.173649947250823, 29.627507176335332 ], [ -95.174080946794135, 29.627182176438208 ], [ -95.174568947153389, 29.626825176590149 ], [ -95.174776947881185, 29.626698176346494 ], [ -95.17652794797786, 29.625411175698527 ], [ -95.179212947875783, 29.623488175756524 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 756, "Tract": "48201324200", "Area_SqMi": 2.8317810885896506, "total_2009": 1225, "total_2010": 1060, "total_2011": 1199, "total_2012": 1160, "total_2013": 1185, "total_2014": 1108, "total_2015": 1299, "total_2016": 1346, "total_2017": 1422, "total_2018": 1424, "total_2019": 1064, "total_2020": 1316, "age1": 299, "age2": 829, "age3": 299, "earn1": 99, "earn2": 179, "earn3": 1149, "naics_s01": 0, "naics_s02": 0, "naics_s03": 37, "naics_s04": 466, "naics_s05": 381, "naics_s06": 17, "naics_s07": 14, "naics_s08": 405, "naics_s09": 0, "naics_s10": 2, "naics_s11": 0, "naics_s12": 71, "naics_s13": 0, "naics_s14": 18, "naics_s15": 10, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 5, "naics_s20": 0, "race1": 1140, "race2": 214, "race3": 16, "race4": 36, "race5": 1, "race6": 20, "ethnicity1": 663, "ethnicity2": 764, "edu1": 312, "edu2": 304, "edu3": 327, "edu4": 185, "Shape_Length": 43359.867460786161, "Shape_Area": 78945210.108108282, "total_2021": 1233, "total_2022": 1427 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.267183974666864, 29.709914189977418 ], [ -95.266991974473754, 29.709866190072844 ], [ -95.266742975081968, 29.709803190431067 ], [ -95.266375974844507, 29.709712190053075 ], [ -95.265725974181251, 29.709549190568843 ], [ -95.264153974447325, 29.709145190087295 ], [ -95.262481973094452, 29.708804189892639 ], [ -95.261659973355407, 29.708624189845732 ], [ -95.261270972828868, 29.708558189805149 ], [ -95.257210971944161, 29.707872189958326 ], [ -95.256904972236711, 29.707820190378726 ], [ -95.256551971843777, 29.707760189960752 ], [ -95.25617097165221, 29.707696190415174 ], [ -95.253695970725857, 29.707271190072383 ], [ -95.252847970731963, 29.707125190015805 ], [ -95.252319970554026, 29.707034189745588 ], [ -95.251573970917406, 29.706906190553973 ], [ -95.250340970274593, 29.706720190577414 ], [ -95.248438969771385, 29.706402190371271 ], [ -95.247996969941795, 29.706301190485636 ], [ -95.247491969382011, 29.70621219012903 ], [ -95.246907969397881, 29.706135189776731 ], [ -95.246294969171572, 29.706071189964767 ], [ -95.245630968910987, 29.706033190026321 ], [ -95.245162969297809, 29.706032190613378 ], [ -95.244888969013616, 29.706032189947788 ], [ -95.244010968206524, 29.706092190577674 ], [ -95.243094967956694, 29.706161190109 ], [ -95.242467968423853, 29.706246190376458 ], [ -95.238363967523284, 29.706617190702602 ], [ -95.236883966986625, 29.706751190466296 ], [ -95.236427966518079, 29.706792190468008 ], [ -95.231903965678427, 29.70720119050241 ], [ -95.231733965790283, 29.707213191280697 ], [ -95.231569965062874, 29.707227190456873 ], [ -95.230648965353652, 29.707325190961377 ], [ -95.230461965489226, 29.707345190838009 ], [ -95.229545964616236, 29.707423191295973 ], [ -95.228822965180257, 29.707510190781157 ], [ -95.228297964911505, 29.707609191156521 ], [ -95.228144964667337, 29.707663191029361 ], [ -95.228158964895073, 29.707986190964341 ], [ -95.228207964597786, 29.709108190956368 ], [ -95.228216964963579, 29.709778191155404 ], [ -95.226297964099814, 29.70993619143006 ], [ -95.226097963830838, 29.709955191648341 ], [ -95.226114964403365, 29.710176192010493 ], [ -95.22613196447297, 29.710859191368769 ], [ -95.226143964177055, 29.712472192175735 ], [ -95.226151964454118, 29.712830191808735 ], [ -95.226162963890829, 29.713222192658055 ], [ -95.226155964168086, 29.713604192450191 ], [ -95.226171964174981, 29.713944192511779 ], [ -95.226173964864742, 29.71415819277891 ], [ -95.226180964865051, 29.714986193105815 ], [ -95.226186964992763, 29.715603193006014 ], [ -95.22618996439364, 29.715886193073313 ], [ -95.226108964717952, 29.716042193242373 ], [ -95.224690964252105, 29.716046192826564 ], [ -95.223305964003998, 29.716056192953481 ], [ -95.222085963595561, 29.716059192646767 ], [ -95.22002196312971, 29.716096193243661 ], [ -95.220022962900686, 29.717421193353459 ], [ -95.220022962717493, 29.717431193611294 ], [ -95.22002296341779, 29.717582193265986 ], [ -95.220023963021859, 29.717869193254909 ], [ -95.220018963418099, 29.718014193159117 ], [ -95.220018963037532, 29.718367193874801 ], [ -95.220020963529677, 29.718511193419477 ], [ -95.220022962749098, 29.718632193588896 ], [ -95.22002396296935, 29.718753193544277 ], [ -95.220129962621229, 29.718894193689639 ], [ -95.221044963157766, 29.719749194001064 ], [ -95.221450963395071, 29.720128194282974 ], [ -95.22219396347829, 29.720510193982566 ], [ -95.223393964217877, 29.720884193552216 ], [ -95.223644963886613, 29.721007194210816 ], [ -95.223825964371557, 29.721202193618051 ], [ -95.223883963997523, 29.721374194001314 ], [ -95.223867964259924, 29.721913194454544 ], [ -95.223959964499073, 29.722337193812333 ], [ -95.223928963808888, 29.722513194437155 ], [ -95.224156964322205, 29.723316194451591 ], [ -95.224129964465035, 29.723782194613193 ], [ -95.224049963928451, 29.724061194368922 ], [ -95.224049963889399, 29.724097194488106 ], [ -95.224046964152691, 29.724348194503907 ], [ -95.223869964329779, 29.724604194662874 ], [ -95.223767964453458, 29.724893194417362 ], [ -95.223548963992883, 29.725280194921929 ], [ -95.223718964433445, 29.725333195303978 ], [ -95.224536964362926, 29.725588195243578 ], [ -95.225030964306654, 29.72564319458888 ], [ -95.22605496467709, 29.725854195308653 ], [ -95.226714964876408, 29.725804195134682 ], [ -95.227001965002501, 29.725823194387818 ], [ -95.228301964979323, 29.725475194628359 ], [ -95.228297965922508, 29.725461194733803 ], [ -95.22869496509945, 29.725349194750962 ], [ -95.229846966113911, 29.72502619416823 ], [ -95.23138496614699, 29.724403194175643 ], [ -95.232109965913196, 29.724269194051384 ], [ -95.23375996698843, 29.723600194385288 ], [ -95.23438796698585, 29.723079194090246 ], [ -95.235684967025193, 29.722375193863112 ], [ -95.236412967190276, 29.72179019346575 ], [ -95.236491967460964, 29.721704193366786 ], [ -95.237130967946541, 29.721018193891538 ], [ -95.237504967618335, 29.720616193343655 ], [ -95.237535967665593, 29.720591193442282 ], [ -95.237844967639674, 29.720342193228117 ], [ -95.237899968129099, 29.720298193754292 ], [ -95.238405968055872, 29.719986192817295 ], [ -95.238918967420474, 29.719520193131853 ], [ -95.239327967763273, 29.719346192701593 ], [ -95.239990967708408, 29.719312193283336 ], [ -95.240232967928264, 29.719300193253861 ], [ -95.240490968246959, 29.719321192656249 ], [ -95.240731968493833, 29.719341192645672 ], [ -95.241128968329761, 29.719373192804809 ], [ -95.24171296896661, 29.719421193133115 ], [ -95.242479968875017, 29.719276193251044 ], [ -95.242538968480616, 29.719256193382378 ], [ -95.243027968749757, 29.719092193040698 ], [ -95.244522969137265, 29.719366192490192 ], [ -95.245460970091983, 29.71964719320091 ], [ -95.245550969690996, 29.719681192528721 ], [ -95.246333969827845, 29.719977193304871 ], [ -95.247458970172502, 29.720513192766905 ], [ -95.247790970479002, 29.7206061928728 ], [ -95.247929970494525, 29.720645193035384 ], [ -95.248467970535629, 29.72113919279942 ], [ -95.249706970558591, 29.72205819321368 ], [ -95.249914970499461, 29.722418193344801 ], [ -95.249937970801199, 29.722458193442165 ], [ -95.250002971280935, 29.722494193321985 ], [ -95.250424970820916, 29.722726193489844 ], [ -95.25083597154665, 29.723131193773547 ], [ -95.251079970875168, 29.72342119362699 ], [ -95.251423971068675, 29.723828193709036 ], [ -95.252611971807454, 29.724981193516737 ], [ -95.254032972534645, 29.726027193906109 ], [ -95.25471997248691, 29.726278193779439 ], [ -95.255795973058667, 29.726815194494616 ], [ -95.256619972341767, 29.726858193729061 ], [ -95.25846397376344, 29.72695419439227 ], [ -95.25932797359404, 29.726879193575797 ], [ -95.260726973576155, 29.726547193568187 ], [ -95.261636973888884, 29.726311193467161 ], [ -95.262089974527257, 29.726313193692622 ], [ -95.262706974218105, 29.726206194044654 ], [ -95.26326397472674, 29.725897194008084 ], [ -95.263987974512261, 29.725632193981536 ], [ -95.264233974838675, 29.725556193566579 ], [ -95.264805975203203, 29.725378193038203 ], [ -95.265338975097833, 29.725331193086507 ], [ -95.265804975214607, 29.725182193847786 ], [ -95.265932975515142, 29.725092193724343 ], [ -95.266202974822221, 29.725017193693223 ], [ -95.266312975256568, 29.724987193152504 ], [ -95.266444975222981, 29.724950193262245 ], [ -95.266531975369887, 29.724944193353696 ], [ -95.266519974900959, 29.724860192977598 ], [ -95.266420974734402, 29.724124193309812 ], [ -95.266347974671746, 29.723804192989352 ], [ -95.26634397509055, 29.723773192888274 ], [ -95.266274975429781, 29.723285193113867 ], [ -95.266210975205567, 29.722345193098434 ], [ -95.266213975204806, 29.721465192690456 ], [ -95.266214974540503, 29.721364192923154 ], [ -95.266224975379771, 29.718386191587843 ], [ -95.266262975166839, 29.717806191484019 ], [ -95.266262974326281, 29.716570191550847 ], [ -95.266264975096831, 29.716481191211773 ], [ -95.266269975285894, 29.716243191354891 ], [ -95.266269974985349, 29.716220191387663 ], [ -95.26629297434728, 29.71530819111414 ], [ -95.266315974454386, 29.714356190974122 ], [ -95.266322974652311, 29.714276190889699 ], [ -95.26629997432083, 29.714000190952685 ], [ -95.266304975124228, 29.713900190800086 ], [ -95.266304974288587, 29.713807190688801 ], [ -95.266281975100924, 29.713399191155663 ], [ -95.266262975064109, 29.713070191207599 ], [ -95.266271974715849, 29.712838190972153 ], [ -95.266300974748205, 29.712186190481347 ], [ -95.266317974901568, 29.711904190417354 ], [ -95.26637497431544, 29.711649190466801 ], [ -95.266474974897775, 29.711163190383107 ], [ -95.266653975011067, 29.71068519048659 ], [ -95.266685974289288, 29.710635190768901 ], [ -95.266721974272926, 29.710564190129475 ], [ -95.266792974486975, 29.710445190733736 ], [ -95.266924974483146, 29.71021119008784 ], [ -95.266958975124965, 29.71017818984463 ], [ -95.267183974666864, 29.709914189977418 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 757, "Tract": "48201542108", "Area_SqMi": 0.74269303672854381, "total_2009": 39, "total_2010": 28, "total_2011": 28, "total_2012": 38, "total_2013": 29, "total_2014": 38, "total_2015": 43, "total_2016": 44, "total_2017": 42, "total_2018": 80, "total_2019": 114, "total_2020": 126, "age1": 25, "age2": 98, "age3": 17, "earn1": 33, "earn2": 44, "earn3": 63, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 37, "naics_s06": 5, "naics_s07": 19, "naics_s08": 13, "naics_s09": 1, "naics_s10": 0, "naics_s11": 2, "naics_s12": 16, "naics_s13": 0, "naics_s14": 3, "naics_s15": 2, "naics_s16": 24, "naics_s17": 0, "naics_s18": 10, "naics_s19": 7, "naics_s20": 0, "race1": 98, "race2": 26, "race3": 0, "race4": 7, "race5": 0, "race6": 9, "ethnicity1": 80, "ethnicity2": 60, "edu1": 33, "edu2": 24, "edu3": 29, "edu4": 29, "Shape_Length": 22145.194646531141, "Shape_Area": 20705010.732155561, "total_2021": 134, "total_2022": 140 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.705972093716085, 29.865115206663564 ], [ -95.705828094247835, 29.865087206636037 ], [ -95.704925093202206, 29.864886206859758 ], [ -95.704796094060384, 29.864844207188138 ], [ -95.704320093179248, 29.864782206567206 ], [ -95.703955093769579, 29.864750207123265 ], [ -95.703616093213199, 29.86473620725133 ], [ -95.703509092962065, 29.864738207087672 ], [ -95.70340909373364, 29.864749206850604 ], [ -95.703305093254087, 29.864739206667938 ], [ -95.702531093305254, 29.864742207135897 ], [ -95.702364093109551, 29.864742206767858 ], [ -95.701935092786726, 29.864745206629749 ], [ -95.70183109262463, 29.864746206644657 ], [ -95.70165309276436, 29.864747206656361 ], [ -95.700719092214143, 29.864754206831712 ], [ -95.700323092586828, 29.864754207083237 ], [ -95.699922092383559, 29.864754206798285 ], [ -95.69803909201319, 29.864755207569225 ], [ -95.696216091778453, 29.86477420725539 ], [ -95.695999090917013, 29.864777206853041 ], [ -95.694292090905279, 29.864796207039195 ], [ -95.693325090273277, 29.864819206962984 ], [ -95.692367090753919, 29.864976207224345 ], [ -95.692295090810859, 29.864995207115939 ], [ -95.691894090669805, 29.865102207182257 ], [ -95.691900090832618, 29.865150207325353 ], [ -95.692128090649334, 29.871029208632169 ], [ -95.692683090610885, 29.871057208868248 ], [ -95.692744090456088, 29.871053208879484 ], [ -95.693301091173836, 29.871013208966314 ], [ -95.693480091078243, 29.871016208468244 ], [ -95.693881091028587, 29.871024208752864 ], [ -95.694802090965311, 29.871024208208869 ], [ -95.694839090896295, 29.8710232081661 ], [ -95.695824091315245, 29.871016208467545 ], [ -95.688578090428152, 29.879780210771763 ], [ -95.688464089896272, 29.879919211015771 ], [ -95.688874090013599, 29.879916210646876 ], [ -95.69121609079582, 29.879904210122373 ], [ -95.693316090961474, 29.879890210059919 ], [ -95.696400092354892, 29.879871210679852 ], [ -95.696952092688747, 29.879867209923535 ], [ -95.697340092584412, 29.879864210680491 ], [ -95.700100093492395, 29.879846210060357 ], [ -95.701175092890821, 29.879840210165508 ], [ -95.701323093772302, 29.879839209960124 ], [ -95.703612094270355, 29.879825209909896 ], [ -95.703592093881156, 29.878547209730474 ], [ -95.703590093998443, 29.878425209617337 ], [ -95.703584093472443, 29.877667210009619 ], [ -95.703575093485497, 29.877554209666112 ], [ -95.703584094236788, 29.877462209184117 ], [ -95.703584093476977, 29.877343209514525 ], [ -95.703576093497247, 29.876706209004382 ], [ -95.703580093833565, 29.876556209046917 ], [ -95.703589094326716, 29.876494209589797 ], [ -95.703608094000032, 29.876415209721166 ], [ -95.703651093383598, 29.876240209475718 ], [ -95.703682094276516, 29.876071209755811 ], [ -95.703699094081699, 29.875869209623851 ], [ -95.703701093479495, 29.875486209047846 ], [ -95.703717093540575, 29.874371208518028 ], [ -95.703679093395294, 29.873129208351827 ], [ -95.703677093844902, 29.87233820891889 ], [ -95.703625093450285, 29.871696208243893 ], [ -95.703605093652513, 29.871154208582627 ], [ -95.703505093108006, 29.870633207754825 ], [ -95.70356209385065, 29.869926208383028 ], [ -95.703855093828054, 29.868867208144071 ], [ -95.704055094134219, 29.868407207516139 ], [ -95.704492093229049, 29.867620207667514 ], [ -95.705192093627929, 29.866747206955409 ], [ -95.705536093951849, 29.86619220728204 ], [ -95.705647093915005, 29.866020207294039 ], [ -95.705712093896352, 29.865922206792902 ], [ -95.705972093716085, 29.865115206663564 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 758, "Tract": "48157672202", "Area_SqMi": 1.1789730297637113, "total_2009": 817, "total_2010": 753, "total_2011": 732, "total_2012": 664, "total_2013": 702, "total_2014": 769, "total_2015": 813, "total_2016": 765, "total_2017": 795, "total_2018": 935, "total_2019": 964, "total_2020": 957, "age1": 145, "age2": 436, "age3": 183, "earn1": 144, "earn2": 124, "earn3": 496, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 448, "naics_s06": 4, "naics_s07": 16, "naics_s08": 0, "naics_s09": 3, "naics_s10": 6, "naics_s11": 32, "naics_s12": 17, "naics_s13": 0, "naics_s14": 4, "naics_s15": 11, "naics_s16": 30, "naics_s17": 7, "naics_s18": 160, "naics_s19": 3, "naics_s20": 0, "race1": 612, "race2": 86, "race3": 1, "race4": 53, "race5": 0, "race6": 12, "ethnicity1": 576, "ethnicity2": 188, "edu1": 105, "edu2": 150, "edu3": 190, "edu4": 174, "Shape_Length": 27234.442555331912, "Shape_Area": 32867750.237305317, "total_2021": 749, "total_2022": 764 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.645178067543085, 29.621271159192954 ], [ -95.645225067330003, 29.621012159119456 ], [ -95.644805067825928, 29.619367159340083 ], [ -95.644089067433129, 29.617151158351994 ], [ -95.644003067346787, 29.616885158030815 ], [ -95.643925066789024, 29.616661158473221 ], [ -95.643827066516621, 29.616383157929487 ], [ -95.643762066592259, 29.616196158452887 ], [ -95.642553067072313, 29.616761158890618 ], [ -95.641300065897312, 29.617347158815171 ], [ -95.638336065992533, 29.618821159229249 ], [ -95.637714065338571, 29.619073159144385 ], [ -95.636355065047141, 29.619531158838438 ], [ -95.635393065491286, 29.6197821589396 ], [ -95.635166064568025, 29.619821159545815 ], [ -95.634651064777501, 29.619941159784119 ], [ -95.634306065092943, 29.620001159007984 ], [ -95.634029064703384, 29.620037159808312 ], [ -95.633793064804181, 29.620087159665236 ], [ -95.633724065000635, 29.620102159696458 ], [ -95.633654065065997, 29.62011615968262 ], [ -95.633487064568001, 29.620140159449718 ], [ -95.632920064011785, 29.620242159570985 ], [ -95.631899063723978, 29.620461159141296 ], [ -95.629653063758767, 29.62094415962077 ], [ -95.628126063394589, 29.621237159564199 ], [ -95.626610063129093, 29.621528160287845 ], [ -95.625036062839115, 29.621830160219119 ], [ -95.623515062227625, 29.622111160496573 ], [ -95.621992061613994, 29.622427160776898 ], [ -95.619343061200055, 29.622933160939954 ], [ -95.618742061343852, 29.623048160560245 ], [ -95.618828061044951, 29.623138160537465 ], [ -95.618903061052933, 29.62318616065739 ], [ -95.618921061086937, 29.623257160459573 ], [ -95.618935060573804, 29.623285160264469 ], [ -95.618951061436945, 29.623548160843931 ], [ -95.618959060621222, 29.623686161011289 ], [ -95.618955060870789, 29.623783160639626 ], [ -95.618945060786672, 29.624015161068023 ], [ -95.618943061359261, 29.624052160343865 ], [ -95.618665061052397, 29.624790161297835 ], [ -95.618654061173089, 29.625073160874667 ], [ -95.618710060960296, 29.627388161370394 ], [ -95.618616061086698, 29.627798161875319 ], [ -95.618627061595888, 29.628206161417559 ], [ -95.618628061491577, 29.628260161843489 ], [ -95.618635061160802, 29.628582161426703 ], [ -95.618656060706854, 29.629540161741676 ], [ -95.618650061527021, 29.631053162519766 ], [ -95.61869806181268, 29.632647162428267 ], [ -95.618727061766521, 29.633632162335154 ], [ -95.618729061821, 29.633688162930031 ], [ -95.618741061800691, 29.634011163060215 ], [ -95.618754061182642, 29.634892162546045 ], [ -95.618774061532235, 29.636193162975289 ], [ -95.619134061695135, 29.636161163258201 ], [ -95.619553061914516, 29.636103163006212 ], [ -95.621741062320211, 29.635691163191364 ], [ -95.622625062391876, 29.635501163304699 ], [ -95.623619062818904, 29.635310162512553 ], [ -95.624561062759767, 29.635131163127671 ], [ -95.626492063596828, 29.634721162349269 ], [ -95.626532063124401, 29.634713162297508 ], [ -95.62711006332583, 29.634594162883939 ], [ -95.627577063492481, 29.634524162667219 ], [ -95.628787064406112, 29.634303162647566 ], [ -95.62970906431228, 29.634103162696235 ], [ -95.630641064657581, 29.633913162134636 ], [ -95.631636064398904, 29.633729161908892 ], [ -95.632699065265001, 29.633521161904671 ], [ -95.633289065167958, 29.633366162031248 ], [ -95.633576064604839, 29.633276162379634 ], [ -95.633794064936964, 29.633208162321772 ], [ -95.634084065530075, 29.633105162413035 ], [ -95.634302065410793, 29.633021162318641 ], [ -95.634518065695644, 29.632937162139395 ], [ -95.634652065277933, 29.632871162490201 ], [ -95.634960065418099, 29.632673162366679 ], [ -95.635276065242238, 29.632457161944121 ], [ -95.635638065320393, 29.632192162288703 ], [ -95.636522065439124, 29.63141616144193 ], [ -95.636495066126685, 29.631398161297753 ], [ -95.636478065509081, 29.631385162114395 ], [ -95.634868065100889, 29.630094161861166 ], [ -95.635421065886348, 29.629578161220387 ], [ -95.63546306531785, 29.629540160992129 ], [ -95.635485064989112, 29.629520161070133 ], [ -95.635533065016062, 29.629566161141927 ], [ -95.635811065494295, 29.629625161671413 ], [ -95.636745066241303, 29.629527161217116 ], [ -95.637083066175094, 29.629395160973001 ], [ -95.637591065937713, 29.629028161595414 ], [ -95.637975066159058, 29.628651160801208 ], [ -95.638441066181585, 29.628104161066378 ], [ -95.638566066475477, 29.627958161170632 ], [ -95.638910066512082, 29.627471160691083 ], [ -95.639324065875158, 29.626886160686059 ], [ -95.63947106636509, 29.626590160960237 ], [ -95.639478066202642, 29.626230160722923 ], [ -95.639346066223055, 29.624834159869856 ], [ -95.639428065830572, 29.623939160371823 ], [ -95.639674066368698, 29.62288115954523 ], [ -95.639942066093653, 29.622477159789337 ], [ -95.640161065978987, 29.6222581593819 ], [ -95.640186066496398, 29.622233159437958 ], [ -95.640548066269616, 29.621995159374887 ], [ -95.640911066055892, 29.621837159755707 ], [ -95.642305066488021, 29.62171115929689 ], [ -95.642836067149887, 29.621758159501738 ], [ -95.643783067102035, 29.62170415972604 ], [ -95.644186067207158, 29.621624159364771 ], [ -95.645178067543085, 29.621271159192954 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 759, "Tract": "48039664300", "Area_SqMi": 3.4322765039649918, "total_2009": 7261, "total_2010": 8241, "total_2011": 7473, "total_2012": 7549, "total_2013": 7526, "total_2014": 7357, "total_2015": 7272, "total_2016": 7574, "total_2017": 7542, "total_2018": 7336, "total_2019": 7851, "total_2020": 8374, "age1": 1171, "age2": 4541, "age3": 1839, "earn1": 574, "earn2": 722, "earn3": 6255, "naics_s01": 0, "naics_s02": 0, "naics_s03": 5, "naics_s04": 291, "naics_s05": 4586, "naics_s06": 123, "naics_s07": 144, "naics_s08": 399, "naics_s09": 0, "naics_s10": 18, "naics_s11": 41, "naics_s12": 784, "naics_s13": 0, "naics_s14": 643, "naics_s15": 0, "naics_s16": 76, "naics_s17": 54, "naics_s18": 192, "naics_s19": 45, "naics_s20": 150, "race1": 6066, "race2": 914, "race3": 53, "race4": 412, "race5": 11, "race6": 95, "ethnicity1": 5579, "ethnicity2": 1972, "edu1": 959, "edu2": 1652, "edu3": 2208, "edu4": 1561, "Shape_Length": 44595.768925802404, "Shape_Area": 95685994.530597821, "total_2021": 7081, "total_2022": 7551 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.386082974361429, 28.979204035312506 ], [ -95.386138973723661, 28.978742035196053 ], [ -95.38599097350999, 28.978586035553782 ], [ -95.385841973534014, 28.978431035014182 ], [ -95.385923974309648, 28.97827903550747 ], [ -95.385893974309482, 28.977176035224733 ], [ -95.383837973313248, 28.976200034496078 ], [ -95.378353972051187, 28.973403034558061 ], [ -95.375778971472272, 28.971739034429934 ], [ -95.37485697039024, 28.969987034154766 ], [ -95.374878970717532, 28.967027033489259 ], [ -95.375838970674366, 28.96373303285511 ], [ -95.377297970434483, 28.958791031905616 ], [ -95.377122970853705, 28.958744031648262 ], [ -95.376189970881654, 28.95849003109732 ], [ -95.375833970230815, 28.958389031524916 ], [ -95.374783969807226, 28.958146031816192 ], [ -95.374701969941825, 28.958075031778144 ], [ -95.373881969968451, 28.957858031826987 ], [ -95.373730969828017, 28.957821031756147 ], [ -95.373647969865971, 28.95780103157308 ], [ -95.372909969845765, 28.957593031449552 ], [ -95.372094970011972, 28.957373031272517 ], [ -95.371077969172603, 28.9571070310528 ], [ -95.37072796920647, 28.957009031428978 ], [ -95.369489968889809, 28.956665031571767 ], [ -95.368161968925619, 28.956301030886632 ], [ -95.368104968256716, 28.956318031112733 ], [ -95.366745967643311, 28.955940030852297 ], [ -95.365364968148583, 28.955569030789196 ], [ -95.363992967681227, 28.955196031481872 ], [ -95.362614966752048, 28.95482103083113 ], [ -95.361234966563543, 28.95444603130991 ], [ -95.360181966112179, 28.954163031107939 ], [ -95.35985996667894, 28.954083031130722 ], [ -95.358490965813886, 28.953705031196165 ], [ -95.357111965581325, 28.953335031309976 ], [ -95.355732965440652, 28.952969030626644 ], [ -95.354413964821106, 28.952606031338167 ], [ -95.354105964921615, 28.952529030924353 ], [ -95.352985964323608, 28.952250031024946 ], [ -95.351609964459968, 28.951868031107725 ], [ -95.35022796341427, 28.951488031212602 ], [ -95.348873963283282, 28.951122030565863 ], [ -95.347501963493002, 28.95077303080204 ], [ -95.346120962892186, 28.950401030717799 ], [ -95.345730962472985, 28.950297030910999 ], [ -95.344874961805075, 28.95006603032396 ], [ -95.344238961913248, 28.949865030444485 ], [ -95.34413296238948, 28.950162030858973 ], [ -95.343915962350891, 28.950774030914147 ], [ -95.343866961633097, 28.950914030687599 ], [ -95.343701962011821, 28.951400031453694 ], [ -95.343473962432796, 28.952073031199685 ], [ -95.343123961989917, 28.953067031328242 ], [ -95.343089961798597, 28.953168031460805 ], [ -95.343013961581477, 28.953394031592332 ], [ -95.342960962042838, 28.953550031312016 ], [ -95.342801962102556, 28.954020031808891 ], [ -95.342342962267196, 28.955356032343769 ], [ -95.342269961828435, 28.9558040324121 ], [ -95.342251962084106, 28.956382032363496 ], [ -95.342283961471679, 28.956585032479683 ], [ -95.342324962303607, 28.956852032388312 ], [ -95.342433962126165, 28.957285032680531 ], [ -95.342581961560271, 28.957653032685556 ], [ -95.342799962015491, 28.958071032670027 ], [ -95.343087962008681, 28.958458032361495 ], [ -95.343377962320531, 28.958782032139343 ], [ -95.344115962583814, 28.95951803257303 ], [ -95.346034963316868, 28.961285033191437 ], [ -95.346733963005903, 28.961956033294815 ], [ -95.347110963774483, 28.962396033440893 ], [ -95.347447963993389, 28.962941033296527 ], [ -95.347622963921665, 28.963413032986086 ], [ -95.34773696367229, 28.964144033208221 ], [ -95.347827963822695, 28.96477403333061 ], [ -95.347873963629652, 28.965198033615295 ], [ -95.348002963354816, 28.965739033609506 ], [ -95.348237963368277, 28.966236033703389 ], [ -95.348634963714858, 28.966835034192751 ], [ -95.348701964133966, 28.966911033671462 ], [ -95.349250964053013, 28.967533034283264 ], [ -95.349308963665194, 28.967712034191035 ], [ -95.349431964554029, 28.968096034088493 ], [ -95.349443964088522, 28.968139034625732 ], [ -95.349494964414006, 28.968314034289183 ], [ -95.349520964545036, 28.968405033944279 ], [ -95.349871963823489, 28.968015034578531 ], [ -95.350178964285547, 28.967673034536798 ], [ -95.350281964151463, 28.967786034471764 ], [ -95.359867966826897, 28.978845035919797 ], [ -95.359934967768538, 28.978923036160669 ], [ -95.363006968129923, 28.982617037079258 ], [ -95.363834968251297, 28.983525036627011 ], [ -95.365209969138576, 28.985176037426037 ], [ -95.367246969423604, 28.987586038055596 ], [ -95.367343969779924, 28.987750037421762 ], [ -95.367375969353091, 28.987786037884778 ], [ -95.36739596983341, 28.987808037937338 ], [ -95.367548970083632, 28.987792037758119 ], [ -95.367768969649447, 28.987769037469445 ], [ -95.371510970126138, 28.986192037590872 ], [ -95.3715719711264, 28.986269037289759 ], [ -95.371584970293398, 28.986292037316879 ], [ -95.371699970749091, 28.986508037111072 ], [ -95.374588971578987, 28.98522103748989 ], [ -95.377544972013965, 28.984011037117956 ], [ -95.377755971649464, 28.983925036861397 ], [ -95.377838971975478, 28.983888037001467 ], [ -95.384350973439155, 28.981051035714003 ], [ -95.385394974023086, 28.980397035959562 ], [ -95.386007973698966, 28.97961103551194 ], [ -95.386021974215268, 28.979164035501306 ], [ -95.386082974361429, 28.979204035312506 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 760, "Tract": "48039662600", "Area_SqMi": 12.408762213089357, "total_2009": 1551, "total_2010": 1525, "total_2011": 1406, "total_2012": 1785, "total_2013": 1794, "total_2014": 1702, "total_2015": 2131, "total_2016": 2517, "total_2017": 2527, "total_2018": 922, "total_2019": 924, "total_2020": 944, "age1": 172, "age2": 546, "age3": 264, "earn1": 211, "earn2": 319, "earn3": 452, "naics_s01": 8, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 1, "naics_s06": 0, "naics_s07": 36, "naics_s08": 1, "naics_s09": 1, "naics_s10": 4, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 90, "naics_s15": 625, "naics_s16": 54, "naics_s17": 24, "naics_s18": 104, "naics_s19": 6, "naics_s20": 0, "race1": 823, "race2": 126, "race3": 10, "race4": 10, "race5": 1, "race6": 12, "ethnicity1": 754, "ethnicity2": 228, "edu1": 138, "edu2": 214, "edu3": 276, "edu4": 182, "Shape_Length": 113467.51917368986, "Shape_Area": 345935052.69214976, "total_2021": 895, "total_2022": 982 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.682804053497833, 29.079139047101187 ], [ -95.68274405382013, 29.078680046496121 ], [ -95.680374052980127, 29.079206046531109 ], [ -95.679899052997015, 29.079301047107851 ], [ -95.678647053307031, 29.079549047348742 ], [ -95.678136052381873, 29.079638046669611 ], [ -95.677892052191694, 29.079675047276645 ], [ -95.676887052719081, 29.079855046995327 ], [ -95.673986052156124, 29.080377047050746 ], [ -95.672793051071267, 29.080593047256389 ], [ -95.672652051288395, 29.080629047428243 ], [ -95.67254805130672, 29.0806610472833 ], [ -95.67200805112158, 29.080931047234248 ], [ -95.67185005133409, 29.081031047583497 ], [ -95.671632050704986, 29.080823047314791 ], [ -95.671420051033081, 29.080861047637697 ], [ -95.670353050764362, 29.080993047182815 ], [ -95.670010050611253, 29.081011047276018 ], [ -95.669412050599433, 29.081023047667397 ], [ -95.667972050075463, 29.081018047813032 ], [ -95.666227049427675, 29.080996047629675 ], [ -95.665156049603112, 29.080997047377373 ], [ -95.663615048625914, 29.080983047900332 ], [ -95.662761048864738, 29.080966047858901 ], [ -95.661804048297626, 29.080895048075678 ], [ -95.660783047954894, 29.080805047806447 ], [ -95.65997904850245, 29.080730047682014 ], [ -95.659429048525766, 29.080674047664051 ], [ -95.658038047795884, 29.080557048043307 ], [ -95.657132047004751, 29.080485048190791 ], [ -95.656851047033598, 29.080456047360787 ], [ -95.65589304690431, 29.080363047544203 ], [ -95.6547520470194, 29.080280048211989 ], [ -95.654451046451811, 29.080258047428622 ], [ -95.653903046977632, 29.080246047498122 ], [ -95.652836046757272, 29.080281048144872 ], [ -95.649691045904916, 29.080397047641537 ], [ -95.647858045336861, 29.080433048438625 ], [ -95.645839044969463, 29.0804230477681 ], [ -95.643708044003631, 29.08041204822101 ], [ -95.64355104436973, 29.080408048514631 ], [ -95.643221044077947, 29.080401047810852 ], [ -95.642851043587953, 29.080386048574699 ], [ -95.642341043909738, 29.080373048460157 ], [ -95.6417170432821, 29.080374048022342 ], [ -95.641118043803928, 29.080352048007029 ], [ -95.640978043593449, 29.080355048711088 ], [ -95.640329043627688, 29.080368047920732 ], [ -95.637874042868631, 29.080517048135228 ], [ -95.637706042664064, 29.080530048800238 ], [ -95.637450042521465, 29.080548048695821 ], [ -95.63632304168199, 29.080627048870571 ], [ -95.635712041873063, 29.080625048564883 ], [ -95.635304041733335, 29.080624048366985 ], [ -95.634744041391457, 29.080613048244349 ], [ -95.632914041649244, 29.080419048721748 ], [ -95.632779041099681, 29.080399048788884 ], [ -95.632261040716344, 29.080348048899843 ], [ -95.630866040400122, 29.08020004863587 ], [ -95.629971040195784, 29.080100048467109 ], [ -95.629296040281162, 29.080046048325432 ], [ -95.628771040165788, 29.080004048941326 ], [ -95.628602039703765, 29.079987048976367 ], [ -95.628157040096312, 29.079941048844528 ], [ -95.627896039815226, 29.079921048348734 ], [ -95.627684040407487, 29.079905048490129 ], [ -95.627191040125282, 29.079868048538842 ], [ -95.62636904001846, 29.079816048651693 ], [ -95.625670038972089, 29.079733048416781 ], [ -95.625094039075151, 29.07964704844483 ], [ -95.622897038770986, 29.079305048677966 ], [ -95.622581039058204, 29.07925004848364 ], [ -95.620838037765708, 29.078995049059571 ], [ -95.619945038071492, 29.078848048956505 ], [ -95.619154037931452, 29.078717049063638 ], [ -95.619038037788741, 29.078688048206693 ], [ -95.618235037125686, 29.078487048173923 ], [ -95.617448037288852, 29.078247048959639 ], [ -95.616351037395717, 29.077913048620047 ], [ -95.616243037383882, 29.077874048860807 ], [ -95.615189036431005, 29.077509048422968 ], [ -95.615102036878014, 29.077479048383008 ], [ -95.61484403652554, 29.077410048276747 ], [ -95.613373036000496, 29.077017048183254 ], [ -95.612805035796526, 29.076913048776145 ], [ -95.612206035510724, 29.0768940486121 ], [ -95.612043036052071, 29.076889048218252 ], [ -95.61193603546991, 29.076889048828917 ], [ -95.609870035517432, 29.07689304870302 ], [ -95.608564034812005, 29.076804048487212 ], [ -95.606309033873814, 29.076550048741691 ], [ -95.606228034238967, 29.077213048804079 ], [ -95.606107034190813, 29.078205048810151 ], [ -95.610820036004867, 29.080873048992821 ], [ -95.613358036496962, 29.082296049260506 ], [ -95.613901036550971, 29.082602049819986 ], [ -95.61664503713763, 29.084149050175625 ], [ -95.618245037945471, 29.085073050246091 ], [ -95.619020037955949, 29.085521050245376 ], [ -95.619699037779867, 29.085914050537522 ], [ -95.620275037800326, 29.086248050113845 ], [ -95.620860038935703, 29.086586049860941 ], [ -95.621495038782328, 29.087000050056428 ], [ -95.622112039111713, 29.087434050359533 ], [ -95.622664038547128, 29.087818050765172 ], [ -95.623773039603066, 29.088622050566844 ], [ -95.623854039198278, 29.088686050277328 ], [ -95.624733039333577, 29.089388050504663 ], [ -95.625379039793003, 29.089966050949048 ], [ -95.625772039898266, 29.090324050885762 ], [ -95.625959039497403, 29.090471050717763 ], [ -95.626624040442891, 29.091112051057294 ], [ -95.627510040504418, 29.091983051092139 ], [ -95.628357040916512, 29.092916051077616 ], [ -95.628911040798357, 29.093548051169392 ], [ -95.629353041317643, 29.094099051387161 ], [ -95.629555040494367, 29.094363051723697 ], [ -95.629859040607997, 29.094743051973982 ], [ -95.630263041229412, 29.095274051294826 ], [ -95.630708041213637, 29.095919051626296 ], [ -95.63168204156085, 29.097427052083816 ], [ -95.631867041476895, 29.097732052022167 ], [ -95.632071041859959, 29.098051052306232 ], [ -95.632392041515715, 29.098646051963627 ], [ -95.633370042387625, 29.10048105247018 ], [ -95.63400004273619, 29.101656053124344 ], [ -95.632375041922216, 29.102289053204473 ], [ -95.625228039935934, 29.102541053183423 ], [ -95.621707039738709, 29.102541053038415 ], [ -95.62022003862846, 29.102267053097812 ], [ -95.61909903827673, 29.102610053466737 ], [ -95.618447038464993, 29.102587053688008 ], [ -95.617690038186083, 29.101992053735824 ], [ -95.61693403849327, 29.101694053780626 ], [ -95.616673038288724, 29.101488053297881 ], [ -95.616803038074607, 29.100846053248542 ], [ -95.616673037952808, 29.100709053528913 ], [ -95.61602103731812, 29.100617053241169 ], [ -95.615812037974663, 29.100365053286279 ], [ -95.61521903763628, 29.100008053397431 ], [ -95.614344037537194, 29.101304053571742 ], [ -95.613826037371055, 29.102142053912996 ], [ -95.613823037081289, 29.10285205360189 ], [ -95.614626037213341, 29.10375905362033 ], [ -95.617190038039041, 29.10473605395752 ], [ -95.619606039115197, 29.105907054117356 ], [ -95.620703038878787, 29.10687905428134 ], [ -95.622237040113617, 29.108305054963584 ], [ -95.622745040142632, 29.109533054440014 ], [ -95.622666040405377, 29.110759054868996 ], [ -95.622287040229963, 29.112710055696663 ], [ -95.622216039549429, 29.11308205565458 ], [ -95.621466039882122, 29.11650105668442 ], [ -95.621750039797476, 29.118697056620523 ], [ -95.621660040227184, 29.12244105783585 ], [ -95.621125039940779, 29.12708705895178 ], [ -95.620930040070419, 29.127777059077051 ], [ -95.619782040069467, 29.131860059406186 ], [ -95.618386039825424, 29.135348059917231 ], [ -95.617925039395914, 29.136501060466575 ], [ -95.61666703911628, 29.13882106132451 ], [ -95.61556103950511, 29.139785061341101 ], [ -95.614770038688121, 29.140095061313499 ], [ -95.614090039392863, 29.140361061437194 ], [ -95.612327038549964, 29.14061306173582 ], [ -95.610397037980675, 29.14081206184489 ], [ -95.607917036955513, 29.141694061534196 ], [ -95.606885037501769, 29.142723062457172 ], [ -95.606219037244045, 29.143754062788101 ], [ -95.605696037086929, 29.144271062456571 ], [ -95.606235036678996, 29.14458306277988 ], [ -95.606550036875262, 29.144765062349585 ], [ -95.606855037031124, 29.144940063087247 ], [ -95.607304037687157, 29.145200062442928 ], [ -95.608029037247164, 29.145485062835199 ], [ -95.608479037719192, 29.14564606298611 ], [ -95.609779038223451, 29.145905062769668 ], [ -95.610506038163564, 29.145935062809968 ], [ -95.610980037958342, 29.145956062926004 ], [ -95.611831039079163, 29.145866062811486 ], [ -95.612149039061777, 29.145834062786882 ], [ -95.612870039316348, 29.145662062299323 ], [ -95.613024039149977, 29.145625062355954 ], [ -95.614663039416712, 29.144930062773732 ], [ -95.616133039500241, 29.144303062428975 ], [ -95.618222039729588, 29.143410062435851 ], [ -95.618540039859624, 29.143275062349456 ], [ -95.61984404062494, 29.142848062183425 ], [ -95.620534040941408, 29.142758061676414 ], [ -95.621182040452027, 29.142673061890182 ], [ -95.622668041189414, 29.142736061523184 ], [ -95.624724041823981, 29.142825061734186 ], [ -95.62500704176712, 29.142838061612537 ], [ -95.626145042055057, 29.142863061691354 ], [ -95.629949042769326, 29.142993061577336 ], [ -95.631327043590801, 29.143045061925086 ], [ -95.633130043592459, 29.143120061582309 ], [ -95.634380044219654, 29.143163061191309 ], [ -95.634560044721752, 29.143170061639847 ], [ -95.63539604466861, 29.143200061766549 ], [ -95.635515044167022, 29.143204061033149 ], [ -95.635576044128257, 29.143206061514 ], [ -95.636041044292753, 29.143218061250661 ], [ -95.636422044512116, 29.143222061273651 ], [ -95.636679044679411, 29.143229061789373 ], [ -95.636987045040854, 29.143238060984157 ], [ -95.637119045316709, 29.143245061828576 ], [ -95.638972045904694, 29.143321061501663 ], [ -95.639825046013257, 29.143365061183889 ], [ -95.640938046040091, 29.143406060850587 ], [ -95.642362046219816, 29.143462061507378 ], [ -95.643009046917811, 29.143487060972152 ], [ -95.643642047146173, 29.143513061223832 ], [ -95.644185046798242, 29.143628061584483 ], [ -95.644291046851365, 29.143658061003539 ], [ -95.645517047053275, 29.143958061139301 ], [ -95.646807047179749, 29.14428706101361 ], [ -95.648004048144003, 29.144593060883874 ], [ -95.648200047997392, 29.143951061524714 ], [ -95.648338047886668, 29.143463060854149 ], [ -95.648648048119142, 29.142386060608732 ], [ -95.648943047725112, 29.141340060308092 ], [ -95.648967047691286, 29.141263060380236 ], [ -95.649039047622736, 29.141009060531228 ], [ -95.649112047850622, 29.140915060638768 ], [ -95.649176048086943, 29.140842060489764 ], [ -95.64934304778852, 29.140714060017064 ], [ -95.650840047984161, 29.139701060630927 ], [ -95.650917048839332, 29.139653060281532 ], [ -95.651771048179356, 29.139056060444108 ], [ -95.652613049007314, 29.1384960598647 ], [ -95.652993048881626, 29.138243059823026 ], [ -95.653238048422395, 29.13807305955071 ], [ -95.654467049342628, 29.137069059622782 ], [ -95.654773049440777, 29.136820059663911 ], [ -95.655243048791959, 29.136425059225953 ], [ -95.655899049469994, 29.135877058934216 ], [ -95.655969049739866, 29.135818059264075 ], [ -95.659420049816831, 29.132964058872179 ], [ -95.660047050397921, 29.132466058024679 ], [ -95.660361050310257, 29.132219058181445 ], [ -95.660472050843651, 29.132126058657416 ], [ -95.661164050867072, 29.131547058315665 ], [ -95.662243051117045, 29.130642057711402 ], [ -95.662828050780718, 29.130172057767517 ], [ -95.664081050767948, 29.129119057698897 ], [ -95.665642051434645, 29.127841057524225 ], [ -95.666809052340028, 29.126882057142883 ], [ -95.668036052421243, 29.125876056953413 ], [ -95.669319052440798, 29.124817056176294 ], [ -95.670356052306133, 29.123956056680051 ], [ -95.670594052952467, 29.123780056388135 ], [ -95.670668052282309, 29.123724056042946 ], [ -95.670766052817655, 29.123629056000851 ], [ -95.67123505328081, 29.12316405614196 ], [ -95.671395052637152, 29.123002056152025 ], [ -95.671467053074991, 29.122915056265871 ], [ -95.671619052401141, 29.122697056399431 ], [ -95.671801053076194, 29.122407055675847 ], [ -95.67199405301713, 29.122062056270543 ], [ -95.672065053303811, 29.121935055817531 ], [ -95.672238053192302, 29.12153505557017 ], [ -95.672977052684729, 29.120088055121485 ], [ -95.673315053387356, 29.119426055215321 ], [ -95.674326053590192, 29.11744705479332 ], [ -95.67482405330945, 29.11648105469629 ], [ -95.675048053593741, 29.116046054213907 ], [ -95.676168053682701, 29.113892054274196 ], [ -95.67663305381916, 29.113013053457045 ], [ -95.677240053622754, 29.111878053833944 ], [ -95.676917053982336, 29.11182505319459 ], [ -95.67609505322342, 29.111692053846163 ], [ -95.675063053099862, 29.111853053727856 ], [ -95.674478053355386, 29.111945054124003 ], [ -95.673904053302024, 29.112197053679594 ], [ -95.673304052787799, 29.113045054268305 ], [ -95.673148052993767, 29.113434054096913 ], [ -95.672783052657138, 29.114007053783865 ], [ -95.672418053265119, 29.114351054025004 ], [ -95.671818052772608, 29.114580054193446 ], [ -95.671036052880936, 29.114603054154639 ], [ -95.670383052156168, 29.114398054448959 ], [ -95.669757051906416, 29.113527054177787 ], [ -95.669757051725597, 29.112817054431577 ], [ -95.670017051588687, 29.112107053783834 ], [ -95.670069052282557, 29.111420053780705 ], [ -95.669938051978036, 29.11084705399006 ], [ -95.669860051756814, 29.110756054028897 ], [ -95.669834051447893, 29.110068053541656 ], [ -95.669963052015163, 29.108992053670605 ], [ -95.669859051665298, 29.108442052790693 ], [ -95.669650051418159, 29.108007052996683 ], [ -95.66954705191209, 29.107871053201073 ], [ -95.668945051249025, 29.107068052759079 ], [ -95.668931051619808, 29.107039052460856 ], [ -95.668527051363441, 29.106198053110969 ], [ -95.668527051832029, 29.105236052911263 ], [ -95.668996051936432, 29.103907052217462 ], [ -95.668995051769599, 29.103197052043917 ], [ -95.668865051246854, 29.102945051835928 ], [ -95.668447050776308, 29.102624051724945 ], [ -95.66705505114389, 29.1019950518291 ], [ -95.66672505130073, 29.101846051603708 ], [ -95.666034050916593, 29.101014051553381 ], [ -95.666021050691839, 29.100999051604202 ], [ -95.665786050779758, 29.100449051504174 ], [ -95.665733050894374, 29.099441051496111 ], [ -95.666046050553959, 29.0984330510638 ], [ -95.666267050997007, 29.098056050750106 ], [ -95.666411050054037, 29.097814051441638 ], [ -95.666932050827015, 29.097287051029603 ], [ -95.66761005037452, 29.096783050365222 ], [ -95.669044051470223, 29.096210050949761 ], [ -95.669826050999532, 29.095729050931197 ], [ -95.670322051127485, 29.095270050488857 ], [ -95.670530051277467, 29.094858050024637 ], [ -95.670478051399357, 29.094239050308591 ], [ -95.669590050870909, 29.092613049667413 ], [ -95.669538051042096, 29.0923840494657 ], [ -95.669485051426406, 29.091331049497228 ], [ -95.669496050718749, 29.091287049724635 ], [ -95.669615051365156, 29.090827049504973 ], [ -95.670003051294103, 29.089973049146799 ], [ -95.670188051622674, 29.089567049210633 ], [ -95.670501051441747, 29.089223049348135 ], [ -95.672456052084513, 29.087756048812334 ], [ -95.674094051602779, 29.086178048538201 ], [ -95.674906051742553, 29.085396047854655 ], [ -95.67553205206552, 29.084983047950985 ], [ -95.676601052449882, 29.084524047889463 ], [ -95.676826052638205, 29.084471047587947 ], [ -95.679547052918153, 29.083836047696341 ], [ -95.680251053435256, 29.083515047402596 ], [ -95.68085105409655, 29.083011047606615 ], [ -95.680988053774001, 29.082804047373411 ], [ -95.681033053822205, 29.082736047692514 ], [ -95.681189054015533, 29.082140047088714 ], [ -95.681971053282425, 29.080860047444538 ], [ -95.682518053640791, 29.079963046500438 ], [ -95.682804053497833, 29.079139047101187 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 761, "Tract": "48039664501", "Area_SqMi": 140.43664952187163, "total_2009": 316, "total_2010": 216, "total_2011": 228, "total_2012": 155, "total_2013": 142, "total_2014": 177, "total_2015": 257, "total_2016": 205, "total_2017": 185, "total_2018": 261, "total_2019": 237, "total_2020": 183, "age1": 23, "age2": 94, "age3": 33, "earn1": 19, "earn2": 40, "earn3": 91, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 54, "naics_s05": 7, "naics_s06": 4, "naics_s07": 15, "naics_s08": 18, "naics_s09": 0, "naics_s10": 0, "naics_s11": 11, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 4, "naics_s19": 13, "naics_s20": 17, "race1": 126, "race2": 15, "race3": 0, "race4": 5, "race5": 0, "race6": 4, "ethnicity1": 112, "ethnicity2": 38, "edu1": 30, "edu2": 39, "edu3": 42, "edu4": 16, "Shape_Length": 373642.76853457064, "Shape_Area": 3915133428.9419336, "total_2021": 157, "total_2022": 150 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.690501051418693, 28.964662022451197 ], [ -95.690426050948645, 28.964552022893088 ], [ -95.690415051434442, 28.964535022819156 ], [ -95.69020305078358, 28.964337022658867 ], [ -95.690115050551256, 28.964222022351322 ], [ -95.690015050578154, 28.964128022597624 ], [ -95.689809051057267, 28.964057022278734 ], [ -95.689721050608966, 28.964046022569043 ], [ -95.689615051275084, 28.963991022626558 ], [ -95.689471050582327, 28.963903023008768 ], [ -95.689296050570476, 28.963754022656509 ], [ -95.689171051083434, 28.963688022729073 ], [ -95.689077050277362, 28.963661022518856 ], [ -95.688890051182625, 28.963584022411865 ], [ -95.688746050204244, 28.96354002263309 ], [ -95.688371050296865, 28.963479022946451 ], [ -95.688115050937014, 28.963391022224862 ], [ -95.688008050027392, 28.963326022899313 ], [ -95.687696050541291, 28.963177022287557 ], [ -95.687452050806812, 28.963034022962578 ], [ -95.687189050027243, 28.962930022397153 ], [ -95.687002049762611, 28.962842022750458 ], [ -95.686827050331331, 28.962743022714115 ], [ -95.68664504980471, 28.962611022790746 ], [ -95.686552049739447, 28.962484022057811 ], [ -95.686283049706418, 28.962188022126877 ], [ -95.686027049874625, 28.961935022092071 ], [ -95.685845049924325, 28.961775022631912 ], [ -95.685758050178507, 28.961720021921401 ], [ -95.685720049841606, 28.961709022034068 ], [ -95.685214049545422, 28.961275022482496 ], [ -95.684751049506502, 28.960863022495811 ], [ -95.684457049813602, 28.960560022073029 ], [ -95.684339049716371, 28.960500021673454 ], [ -95.684251049249141, 28.960478022360864 ], [ -95.684126049721584, 28.960467022234322 ], [ -95.683964049558739, 28.960461021750543 ], [ -95.683826049122089, 28.960472021939168 ], [ -95.683689049373839, 28.96053302179341 ], [ -95.683432049449607, 28.960758021761169 ], [ -95.683382049194933, 28.960852021877727 ], [ -95.68332004868239, 28.961050022447449 ], [ -95.68328204961324, 28.961242022084154 ], [ -95.683251048978164, 28.961539022441894 ], [ -95.68318204928039, 28.961693022742601 ], [ -95.682970049585819, 28.961918022532441 ], [ -95.682845048617551, 28.96210002212025 ], [ -95.68272004857333, 28.962237022499231 ], [ -95.682532048887978, 28.962650022812642 ], [ -95.68250704955345, 28.962787022347538 ], [ -95.682501049205314, 28.962902023040662 ], [ -95.682363049229011, 28.96328702305453 ], [ -95.682261048668678, 28.963443023078103 ], [ -95.682254048921735, 28.963453022827217 ], [ -95.682045049389757, 28.963771022784698 ], [ -95.681551048572729, 28.964315022709027 ], [ -95.681188049036663, 28.964656023085439 ], [ -95.680744048218685, 28.964997023217649 ], [ -95.680250048640019, 28.965321023010322 ], [ -95.679850048028754, 28.965607023720416 ], [ -95.679669048012286, 28.965712022890759 ], [ -95.679557048469476, 28.96573902326881 ], [ -95.679350048711825, 28.965739023087664 ], [ -95.679200048723175, 28.965723023130952 ], [ -95.678994048233648, 28.965679023121265 ], [ -95.678794048202263, 28.965651023359218 ], [ -95.678650048299886, 28.965607023475236 ], [ -95.678425047882655, 28.965519022874556 ], [ -95.67835604836641, 28.965459023681195 ], [ -95.678200048220887, 28.965261023639229 ], [ -95.67819404814432, 28.965025022797899 ], [ -95.678156047555746, 28.964948023657477 ], [ -95.678037047640046, 28.964788023055604 ], [ -95.677856047958926, 28.964717022994055 ], [ -95.67775004767789, 28.964700022924344 ], [ -95.676825047619843, 28.964816023360672 ], [ -95.676525047814849, 28.964821023188339 ], [ -95.676350047366711, 28.964816022812091 ], [ -95.67621804751866, 28.964777023351402 ], [ -95.676125047840031, 28.964717023239146 ], [ -95.676062047223951, 28.964640023100827 ], [ -95.676006047900458, 28.964590022909242 ], [ -95.675900047246529, 28.96453002345795 ], [ -95.675793047037516, 28.96448602293346 ], [ -95.675606047649353, 28.964447023374429 ], [ -95.67549904707586, 28.964370023125621 ], [ -95.675431047243478, 28.964343023351578 ], [ -95.675249047643831, 28.964315023257679 ], [ -95.675137046999467, 28.964249023569849 ], [ -95.675012047249197, 28.964062023466688 ], [ -95.674712047154273, 28.963364022609944 ], [ -95.674599046761557, 28.963133022584859 ], [ -95.674374046549602, 28.962743023046471 ], [ -95.674249046676294, 28.962578022992894 ], [ -95.674174046879529, 28.962512022749433 ], [ -95.67380504709169, 28.962265022638068 ], [ -95.673612047204713, 28.96210502234208 ], [ -95.673530046429349, 28.962028023044635 ], [ -95.673374046484142, 28.961764022485976 ], [ -95.673312047077957, 28.96167602299175 ], [ -95.673093046972042, 28.961484022845479 ], [ -95.672987047078934, 28.961401022598174 ], [ -95.672818046178136, 28.961319022797827 ], [ -95.672605046019299, 28.961154022196975 ], [ -95.672180046759749, 28.96091202228914 ], [ -95.672032046624821, 28.960795022749387 ], [ -95.671999046671345, 28.960769022756651 ], [ -95.671961046110169, 28.96069202258219 ], [ -95.671830046691099, 28.960368022527483 ], [ -95.671743046305167, 28.960219022128676 ], [ -95.671680046402969, 28.960131022038695 ], [ -95.671380046371425, 28.959801022810549 ], [ -95.67128004599914, 28.959664022201313 ], [ -95.670337045330399, 28.958556022318508 ], [ -95.670174046013727, 28.958267022274114 ], [ -95.670012045779956, 28.95776102162251 ], [ -95.669401045367366, 28.956711021730143 ], [ -95.668870045784928, 28.956239022162588 ], [ -95.668420045608045, 28.956130021381586 ], [ -95.668298045043855, 28.956021021556314 ], [ -95.667316045079758, 28.955620021885398 ], [ -95.666824044644727, 28.955583021870829 ], [ -95.665719044738353, 28.955218021636615 ], [ -95.665637044585552, 28.95514502161662 ], [ -95.665473043942754, 28.955145021642 ], [ -95.665023044699367, 28.954999021420878 ], [ -95.664614044491856, 28.954781021561125 ], [ -95.664083044093914, 28.954237021495807 ], [ -95.663387043545328, 28.95423502107699 ], [ -95.663263043620262, 28.9543070216308 ], [ -95.662607044134688, 28.95441302159821 ], [ -95.661954043337289, 28.953833021486748 ], [ -95.661585043317544, 28.953832021356888 ], [ -95.661503043499451, 28.95390402157501 ], [ -95.661052043009704, 28.953975021035454 ], [ -95.660642042824065, 28.953901021433985 ], [ -95.660611043412302, 28.953873021380694 ], [ -95.660596043390626, 28.953860021923859 ], [ -95.660315043027268, 28.953611021850413 ], [ -95.660112043114381, 28.953249021174425 ], [ -95.659867042924745, 28.953031021044776 ], [ -95.659549042383134, 28.95292202127391 ], [ -95.65863804252308, 28.952811020905539 ], [ -95.658557042659695, 28.952738021622491 ], [ -95.658311042398864, 28.952701020994127 ], [ -95.657368042396016, 28.95269802152416 ], [ -95.65700104206627, 28.952408021366431 ], [ -95.656960042168393, 28.95226302084675 ], [ -95.656430041988784, 28.951792021042095 ], [ -95.655405042137701, 28.951716021299262 ], [ -95.655078041658285, 28.951535021028185 ], [ -95.654793041716147, 28.951064020746021 ], [ -95.654794041096011, 28.95084702143691 ], [ -95.654713041489728, 28.950666020667757 ], [ -95.654715040956901, 28.950197021076889 ], [ -95.654593041182139, 28.950016021108361 ], [ -95.654307041255024, 28.949726020445869 ], [ -95.653775041454651, 28.949615020644138 ], [ -95.653244040640175, 28.949216020706434 ], [ -95.653181041282764, 28.949024021141334 ], [ -95.653171041168079, 28.948994020369604 ], [ -95.653041041038847, 28.948601020492749 ], [ -95.65300204139136, 28.948276020483036 ], [ -95.652799040794761, 28.947842020587835 ], [ -95.652269040508642, 28.947153020675032 ], [ -95.651493040558123, 28.946464020651785 ], [ -95.651086039856267, 28.945704020006989 ], [ -95.650760040350576, 28.945342020071976 ], [ -95.650557040162568, 28.944835019994866 ], [ -95.650519040127406, 28.944257020020149 ], [ -95.650315040170526, 28.943931019599617 ], [ -95.649621039659493, 28.943242019473953 ], [ -95.649541039772956, 28.942844019148342 ], [ -95.649379040241612, 28.942519019845349 ], [ -95.64868503909166, 28.941685019121046 ], [ -95.647910039642042, 28.940996018944535 ], [ -95.64770603886214, 28.94067001951306 ], [ -95.646808039511072, 28.940017018699628 ], [ -95.646564038749688, 28.939546018518911 ], [ -95.645829038303773, 28.938893019248187 ], [ -95.645830038307565, 28.938532018877847 ], [ -95.646120038994283, 28.93795501874531 ], [ -95.647559039528147, 28.936623018626474 ], [ -95.647972039048099, 28.9359730181204 ], [ -95.648219039372961, 28.93575701819336 ], [ -95.648384039185629, 28.935324017638735 ], [ -95.648756039773886, 28.934711017927754 ], [ -95.649005039784882, 28.933989017525406 ], [ -95.649047039339948, 28.933664017813623 ], [ -95.649503039127779, 28.93247301754057 ], [ -95.650080039866808, 28.931572016939093 ], [ -95.650328039170091, 28.931030017083803 ], [ -95.650292039114447, 28.929766016811595 ], [ -95.650746039179595, 28.929044016819471 ], [ -95.65111603951884, 28.928648016408651 ], [ -95.651241040117824, 28.928251016278676 ], [ -95.651329039374801, 28.926878016277147 ], [ -95.651700039466562, 28.926229016358128 ], [ -95.65190703950266, 28.925687015570229 ], [ -95.6517940392703, 28.923338015746495 ], [ -95.651224039008383, 28.922433015376669 ], [ -95.651226039419015, 28.921927015454493 ], [ -95.651558039480591, 28.920916014564551 ], [ -95.651562038917817, 28.920013015044933 ], [ -95.651481039578258, 28.919723014684735 ], [ -95.651448039519437, 28.919672014676333 ], [ -95.651416039119027, 28.919622014782508 ], [ -95.651318038857752, 28.91947001480737 ], [ -95.651074039069599, 28.919252014663776 ], [ -95.64927603917539, 28.918126014304825 ], [ -95.648622038977763, 28.917835014074885 ], [ -95.64813203798677, 28.917436014400856 ], [ -95.646787038305959, 28.915805013622261 ], [ -95.645567037239786, 28.913633014058462 ], [ -95.645040037494894, 28.912294013701985 ], [ -95.645044037852927, 28.911318013581663 ], [ -95.645375037030604, 28.910488013209211 ], [ -95.645499037568115, 28.910344013234283 ], [ -95.645461037552124, 28.90972901326797 ], [ -95.644929037115517, 28.908946012430398 ], [ -95.644280036796715, 28.907991012335561 ], [ -95.643711036761985, 28.906905012128782 ], [ -95.642897036117347, 28.905782012181387 ], [ -95.642532036506481, 28.904877011777415 ], [ -95.642125036616946, 28.904262011564761 ], [ -95.641677035871581, 28.903754011996554 ], [ -95.641439035810095, 28.903613011727153 ], [ -95.641415036129359, 28.90359901143427 ], [ -95.641186036563724, 28.903463011782161 ], [ -95.640532035593893, 28.903280011583302 ], [ -95.639754035993789, 28.90327801167815 ], [ -95.638892035547968, 28.903672011520616 ], [ -95.638605034966744, 28.903744011730069 ], [ -95.637540035586554, 28.903740011650278 ], [ -95.637213034919839, 28.903631011369399 ], [ -95.637047034719544, 28.903536011652264 ], [ -95.636518034609352, 28.903231012077587 ], [ -95.636111035013954, 28.902760011472068 ], [ -95.635948034897297, 28.902398011921456 ], [ -95.635889034478225, 28.902095011258485 ], [ -95.635828034863252, 28.901783011271469 ], [ -95.635747034999312, 28.901674011426792 ], [ -95.635669034182413, 28.900770010958855 ], [ -95.635587034622176, 28.900698011662261 ], [ -95.635426034665016, 28.900047010846574 ], [ -95.635223034761793, 28.899576011128499 ], [ -95.635101034597142, 28.899431011014787 ], [ -95.635102033918017, 28.899323011352262 ], [ -95.634451034276751, 28.898381010707482 ], [ -95.633513033825096, 28.897474010941192 ], [ -95.63330803386593, 28.897365010697403 ], [ -95.632981033533738, 28.897292010726733 ], [ -95.632080033150388, 28.897289010463535 ], [ -95.631342033625529, 28.897395010726235 ], [ -95.63097503274561, 28.897394010919381 ], [ -95.630841033224442, 28.897393010576394 ], [ -95.630763032720068, 28.897393010433689 ], [ -95.630728033099118, 28.897393011145489 ], [ -95.630656033039713, 28.897373010748847 ], [ -95.630196033206246, 28.897246010818833 ], [ -95.629216032660608, 28.896665011019174 ], [ -95.628237032248165, 28.895794010610299 ], [ -95.627911032529482, 28.895395010588643 ], [ -95.627013031860983, 28.89470601054526 ], [ -95.626686031777226, 28.894560010540776 ], [ -95.626461032094511, 28.894493009830008 ], [ -95.625214031697524, 28.894121010511906 ], [ -95.625132031199911, 28.894048010514975 ], [ -95.625007031356631, 28.894064009897502 ], [ -95.624477031798293, 28.893976009935454 ], [ -95.624232031362439, 28.893867009861722 ], [ -95.623779031151088, 28.893865009791579 ], [ -95.623740031136919, 28.89386500988239 ], [ -95.623701030986595, 28.89385301005764 ], [ -95.623250031177264, 28.893719010447715 ], [ -95.622638030902763, 28.89321001000248 ], [ -95.622552031381076, 28.89311001003859 ], [ -95.622534031191634, 28.893089010057974 ], [ -95.622438030636985, 28.892977010429522 ], [ -95.622270030955221, 28.892780010488856 ], [ -95.62214603083892, 28.892634009924599 ], [ -95.622027030591639, 28.892495009701115 ], [ -95.621741031043328, 28.892159009763102 ], [ -95.621294030256465, 28.891435009712843 ], [ -95.621295030683356, 28.89132600958493 ], [ -95.621051030247344, 28.890892009402744 ], [ -95.620847030782585, 28.890638009251603 ], [ -95.620807030838677, 28.890457009428285 ], [ -95.620615030795705, 28.890209009384026 ], [ -95.62053803038728, 28.890110009644236 ], [ -95.620359030459298, 28.889878009377494 ], [ -95.619829030194097, 28.889442008982456 ], [ -95.619624030270629, 28.88936900915181 ], [ -95.619217030371658, 28.889006009447098 ], [ -95.618972029958726, 28.888680009555479 ], [ -95.618607029659231, 28.887956009295522 ], [ -95.617710029054408, 28.887049009265535 ], [ -95.617507029696796, 28.886759008509689 ], [ -95.616899029391504, 28.885456008721963 ], [ -95.616491028679562, 28.885057009056624 ], [ -95.616082028699154, 28.884875008547922 ], [ -95.615387028667328, 28.88469200869061 ], [ -95.615235028520971, 28.884613008418437 ], [ -95.614897028795397, 28.884437008144921 ], [ -95.614852028857385, 28.884397008154178 ], [ -95.614530028470767, 28.884110008359841 ], [ -95.614082027858714, 28.883567008753953 ], [ -95.613470028101432, 28.883095008493139 ], [ -95.612857028446641, 28.882876008409603 ], [ -95.611219027481994, 28.882870008195606 ], [ -95.611014027791398, 28.882761008313572 ], [ -95.609750026989389, 28.881708008482502 ], [ -95.609178026854238, 28.881381007845892 ], [ -95.608400026478606, 28.881378007684482 ], [ -95.607869026497781, 28.881195008408127 ], [ -95.607502026611755, 28.880868008206519 ], [ -95.60746202673009, 28.880543007850015 ], [ -95.607219026400074, 28.880108008100102 ], [ -95.607219026100822, 28.880000007624144 ], [ -95.606934026008432, 28.879674007710467 ], [ -95.606198026418284, 28.879454007935117 ], [ -95.605667026491645, 28.879091007377816 ], [ -95.605545026506093, 28.879090007688411 ], [ -95.605054026068089, 28.878872008149163 ], [ -95.604768026125171, 28.878798007613366 ], [ -95.604178025620172, 28.878770008107541 ], [ -95.60408402541367, 28.878765007903059 ], [ -95.603949025820512, 28.878759007302847 ], [ -95.603582025519543, 28.878469007561176 ], [ -95.603174024984398, 28.878287007860401 ], [ -95.602970025636182, 28.878105008043601 ], [ -95.602810025004089, 28.877165007388747 ], [ -95.602568025425981, 28.876550007363193 ], [ -95.60216502520889, 28.876221007359522 ], [ -95.602149025275622, 28.876208006828882 ], [ -95.602078024876235, 28.876150007521506 ], [ -95.601996024683856, 28.876150006929063 ], [ -95.600092024762844, 28.87500500670107 ], [ -95.598255023907655, 28.873967007236395 ], [ -95.597315024152465, 28.873529006669777 ], [ -95.597306023850351, 28.87352400698909 ], [ -95.596793023317744, 28.873250007178612 ], [ -95.596499023596422, 28.872948006593329 ], [ -95.596418023343176, 28.872695006544017 ], [ -95.596174023775944, 28.872477007097956 ], [ -95.595995022929372, 28.872417006762674 ], [ -95.595939023555104, 28.872398006326403 ], [ -95.59584702365423, 28.872367006742216 ], [ -95.595478023348875, 28.872330007066392 ], [ -95.594866023262355, 28.87193000647299 ], [ -95.59445802316587, 28.871748006934496 ], [ -95.593885022394218, 28.87160100679035 ], [ -95.593600022241361, 28.871275006362026 ], [ -95.593029022877573, 28.87080300671861 ], [ -95.592541022032933, 28.870114005835731 ], [ -95.592174021751646, 28.869787006130547 ], [ -95.591683022052237, 28.869677005865235 ], [ -95.591315021472354, 28.869676006454554 ], [ -95.591069021637026, 28.869819006575874 ], [ -95.59082302212218, 28.869819006471381 ], [ -95.590762022264585, 28.869764006335149 ], [ -95.590753021373189, 28.869753006628951 ], [ -95.590294021872324, 28.869163006339313 ], [ -95.590255021555933, 28.86869600637046 ], [ -95.590133021589764, 28.868515005691574 ], [ -95.589929021803769, 28.868369006417378 ], [ -95.58976602191575, 28.868369005626068 ], [ -95.589521021255209, 28.868223005576606 ], [ -95.58886802108961, 28.867679005630123 ], [ -95.588625021319459, 28.867280006085018 ], [ -95.588421021284844, 28.867099005471289 ], [ -95.587931020499809, 28.866699005922339 ], [ -95.587686020967169, 28.866590005316716 ], [ -95.587620020537443, 28.866561005643238 ], [ -95.587278021191693, 28.866408005429424 ], [ -95.58703302058629, 28.86619000591628 ], [ -95.58703502025061, 28.865792005848149 ], [ -95.587103020903086, 28.865645005575807 ], [ -95.587118021044716, 28.865612005288646 ], [ -95.587103020894446, 28.865520005211078 ], [ -95.587078020267498, 28.865359005133339 ], [ -95.587047020834021, 28.865316005852321 ], [ -95.587033021105015, 28.865297005600151 ], [ -95.587005020960589, 28.865258005749297 ], [ -95.586346020448502, 28.864344005354443 ], [ -95.586307020300652, 28.863982004975743 ], [ -95.585902020451528, 28.863077004614325 ], [ -95.585659019952104, 28.862679004682814 ], [ -95.585293019968972, 28.862171004498045 ], [ -95.584967020140596, 28.861881005246069 ], [ -95.583987020136092, 28.861371004900377 ], [ -95.583558020067684, 28.861062004282026 ], [ -95.583416019619008, 28.860935004742988 ], [ -95.583376019387956, 28.860790004325889 ], [ -95.583131019859252, 28.860609004607664 ], [ -95.581166018779442, 28.860565004567064 ], [ -95.580635018494377, 28.860346004254215 ], [ -95.579940018397721, 28.860163004461295 ], [ -95.579695018808621, 28.860017004408643 ], [ -95.579247018743345, 28.859618004877778 ], [ -95.579125017999402, 28.859400004679618 ], [ -95.579126018934957, 28.859147004164864 ], [ -95.579291018159296, 28.858931004215485 ], [ -95.579375017985996, 28.85860600445249 ], [ -95.579457018414303, 28.858534004707433 ], [ -95.579420018638032, 28.857631004306779 ], [ -95.579299018901679, 28.857305004385314 ], [ -95.578608018083514, 28.856471004246842 ], [ -95.578283018019306, 28.855927003961973 ], [ -95.577957018422524, 28.855601003516455 ], [ -95.577028017318355, 28.855063004073379 ], [ -95.57691601794744, 28.854998003779418 ], [ -95.576726017774973, 28.85496700376962 ], [ -95.576507017809774, 28.854332003788539 ], [ -95.576419017801854, 28.853837003045278 ], [ -95.57641201751062, 28.853798003204872 ], [ -95.576284017182587, 28.853401002905201 ], [ -95.57628601755286, 28.853107003235472 ], [ -95.576287017373531, 28.853011003363072 ], [ -95.576228017788864, 28.852820002898007 ], [ -95.576228017788139, 28.852763003353413 ], [ -95.576229017299312, 28.852661002997365 ], [ -95.576163017074634, 28.852426003288507 ], [ -95.576368017780538, 28.851641003234523 ], [ -95.576383017815857, 28.851616003246736 ], [ -95.57645801771713, 28.851496002620127 ], [ -95.576530017359033, 28.851199003151098 ], [ -95.576615017788654, 28.850958003191906 ], [ -95.576647017018175, 28.850678002826573 ], [ -95.576793017580215, 28.850247002424272 ], [ -95.576892017968945, 28.849957002607432 ], [ -95.576868017179876, 28.849646002282455 ], [ -95.576791017312701, 28.849543002384053 ], [ -95.576624017518256, 28.849319002611633 ], [ -95.576612017226353, 28.849054002564269 ], [ -95.576690017157873, 28.848911002605554 ], [ -95.576694017202101, 28.848807002416052 ], [ -95.576695017247232, 28.848774002568831 ], [ -95.576817017316188, 28.848603001955993 ], [ -95.576902017225734, 28.848484001874681 ], [ -95.577194017583722, 28.84830000260008 ], [ -95.577310017598776, 28.848130002418504 ], [ -95.577496017418554, 28.847541002214744 ], [ -95.577458017315834, 28.847294001644904 ], [ -95.577443017120771, 28.847195002184229 ], [ -95.577536017971795, 28.846698002137302 ], [ -95.577562018016508, 28.846644001754392 ], [ -95.577698017671693, 28.846231001547817 ], [ -95.578006017680863, 28.845160001249351 ], [ -95.578214017578489, 28.844639001431183 ], [ -95.578280018056233, 28.844565001574352 ], [ -95.578312017754712, 28.844357001229152 ], [ -95.578430018007182, 28.844206001057085 ], [ -95.578555017308972, 28.844046001225287 ], [ -95.578574017227879, 28.843995001545476 ], [ -95.57864401748742, 28.843811000856363 ], [ -95.579104017933204, 28.843205001260284 ], [ -95.579215018322159, 28.842961001056054 ], [ -95.579289017728769, 28.842798001379496 ], [ -95.579357017621803, 28.842460001168028 ], [ -95.579382017569444, 28.841676000884625 ], [ -95.579396017431122, 28.841241001108202 ], [ -95.579282017351844, 28.840580000508929 ], [ -95.579149017783877, 28.840150000093224 ], [ -95.579028017634712, 28.839633000775756 ], [ -95.578563017819903, 28.838968000511542 ], [ -95.578459017231964, 28.838875000375964 ], [ -95.578165017115325, 28.838613999863124 ], [ -95.577841017114309, 28.838034000052637 ], [ -95.577147016866334, 28.837486000422349 ], [ -95.577068016790918, 28.837033999744094 ], [ -95.577046017509119, 28.836836999497681 ], [ -95.577023017137023, 28.836624999787908 ], [ -95.576976016730754, 28.836539999982044 ], [ -95.576823017079519, 28.836369999501358 ], [ -95.576756017189012, 28.83631699958951 ], [ -95.576300017193446, 28.835948999264897 ], [ -95.575471016880812, 28.835264999597111 ], [ -95.574788016337791, 28.834468999563239 ], [ -95.574119015686193, 28.833483999329378 ], [ -95.573967015746234, 28.833193998916293 ], [ -95.573678015558983, 28.832771999370568 ], [ -95.57296501615636, 28.832368998884814 ], [ -95.572343015388128, 28.832228999383076 ], [ -95.572246015975992, 28.832254999123585 ], [ -95.571888015606277, 28.832239998782761 ], [ -95.571773015464203, 28.832158998923415 ], [ -95.57174701499774, 28.832079999059776 ], [ -95.571290015307142, 28.831374998871595 ], [ -95.571136015617427, 28.83128899850853 ], [ -95.571048015721217, 28.831238999178883 ], [ -95.570466015344536, 28.831109998896881 ], [ -95.570171015335973, 28.830941998733664 ], [ -95.569994015058882, 28.830840998797751 ], [ -95.569933015279574, 28.830805999155327 ], [ -95.569525014472831, 28.830691998395157 ], [ -95.568614015073791, 28.83022499855884 ], [ -95.567715014327206, 28.829762998472074 ], [ -95.567526013940309, 28.829728998346535 ], [ -95.567428014078203, 28.829771998793706 ], [ -95.566968014627406, 28.829971998549933 ], [ -95.566413014325974, 28.830118998498847 ], [ -95.566046014061271, 28.830502999140123 ], [ -95.565902013867472, 28.830573998753081 ], [ -95.565533014048142, 28.830546998950378 ], [ -95.565519013999136, 28.830545998572379 ], [ -95.565307013571086, 28.830529998537465 ], [ -95.565189013847458, 28.830418998502477 ], [ -95.565178013764367, 28.830409998910813 ], [ -95.564945013419674, 28.830226998478285 ], [ -95.564356013306508, 28.829651998618914 ], [ -95.564052013617271, 28.829561999058644 ], [ -95.563908013624939, 28.82951899888241 ], [ -95.563602013483361, 28.829584999053981 ], [ -95.563515013389008, 28.829603998622133 ], [ -95.563254013386057, 28.829773998930154 ], [ -95.562861012762298, 28.829909998711944 ], [ -95.560492012540365, 28.829928999084967 ], [ -95.559691012554083, 28.829889998518681 ], [ -95.559126012479084, 28.830132998824883 ], [ -95.558715012516345, 28.830297998967204 ], [ -95.558684012213732, 28.830311999481264 ], [ -95.558464011577144, 28.830412998983849 ], [ -95.558340011489719, 28.830520999429222 ], [ -95.55819401227518, 28.830536999252715 ], [ -95.558130012418758, 28.830536999431921 ], [ -95.558028011856763, 28.830536999351065 ], [ -95.557828011525331, 28.830535999529889 ], [ -95.557681012083293, 28.830534999572365 ], [ -95.557586012109411, 28.830562999440922 ], [ -95.557483011867546, 28.830533998728395 ], [ -95.557413011595614, 28.830504999585269 ], [ -95.556664011449485, 28.830192999463865 ], [ -95.555871011812755, 28.830116999542291 ], [ -95.555378011619368, 28.830379999595561 ], [ -95.554912011058263, 28.830426999545871 ], [ -95.554664010566384, 28.830335999379777 ], [ -95.554623010569728, 28.830333999316331 ], [ -95.554536010862179, 28.830329999402597 ], [ -95.553398010357, 28.829886999543991 ], [ -95.553353010306566, 28.829846999147374 ], [ -95.553281010485264, 28.829782999027675 ], [ -95.553083010123856, 28.829742999554277 ], [ -95.552648010531726, 28.829575999375233 ], [ -95.552319010729235, 28.829449999363618 ], [ -95.551719010144311, 28.829011998701876 ], [ -95.551299010157635, 28.828886998939453 ], [ -95.551031010117782, 28.828806999408929 ], [ -95.550818009714192, 28.828742999277051 ], [ -95.550405010157164, 28.82877799869766 ], [ -95.550271009606675, 28.828788998828337 ], [ -95.550223009935877, 28.828800999371094 ], [ -95.549977009856121, 28.829041998752107 ], [ -95.549537009781105, 28.829405999039636 ], [ -95.549471010023609, 28.829459999144873 ], [ -95.549091009578518, 28.829671999383127 ], [ -95.548727009126807, 28.829876999369993 ], [ -95.548714009218855, 28.829883998923954 ], [ -95.548027009460768, 28.830372999165377 ], [ -95.547996008939393, 28.830387999259415 ], [ -95.547806009243118, 28.83047699934119 ], [ -95.54758700968253, 28.830580999726639 ], [ -95.546654009382024, 28.831063999834779 ], [ -95.545721008312313, 28.831546999916419 ], [ -95.545243009082299, 28.831793999407171 ], [ -95.544785008095516, 28.832030999817331 ], [ -95.544766009073911, 28.832040999769319 ], [ -95.544443008911401, 28.832208000110413 ], [ -95.544325008158424, 28.832269000176623 ], [ -95.544296008687922, 28.832284000060294 ], [ -95.544121008285629, 28.83237499952989 ], [ -95.543898008743412, 28.832491000201664 ], [ -95.543675008447863, 28.832606000254717 ], [ -95.543622007917946, 28.832631999816691 ], [ -95.543467008114291, 28.832637000340828 ], [ -95.543170008113279, 28.832648000102733 ], [ -95.542947008057752, 28.832602000382234 ], [ -95.542899008352492, 28.832592000332731 ], [ -95.542428008002418, 28.832496999629804 ], [ -95.542147008325514, 28.83239500047409 ], [ -95.54200900840307, 28.832361999649098 ], [ -95.541956007750599, 28.832316999694196 ], [ -95.541891008254822, 28.832263000121284 ], [ -95.541812008108039, 28.83214600000418 ], [ -95.541697007938708, 28.831584999952472 ], [ -95.541861007996886, 28.830822999654679 ], [ -95.541728008179746, 28.830470999450874 ], [ -95.541407007184901, 28.830379999241668 ], [ -95.541102007165563, 28.830453999444128 ], [ -95.540415007024805, 28.831321000065831 ], [ -95.540374007602296, 28.831448999555395 ], [ -95.540371007132066, 28.831458999589554 ], [ -95.540360007197691, 28.831460000278682 ], [ -95.540249007414758, 28.831464999718683 ], [ -95.54004800758149, 28.831566999688235 ], [ -95.540013006921143, 28.83158500005575 ], [ -95.539995007665794, 28.831607000267518 ], [ -95.539949007571479, 28.831618999619486 ], [ -95.539868007814803, 28.831639999872156 ], [ -95.539784006927036, 28.831635999850551 ], [ -95.539691007173133, 28.831627999910982 ], [ -95.539116006688872, 28.831491000278227 ], [ -95.538744007514538, 28.831445000303294 ], [ -95.538608006911048, 28.831549000406365 ], [ -95.538488006479625, 28.831831999908513 ], [ -95.53847800695614, 28.83219100017077 ], [ -95.53838400724662, 28.832341000200522 ], [ -95.538365007332757, 28.832681000497683 ], [ -95.538261007422761, 28.8329060005094 ], [ -95.538256006580426, 28.832915999804591 ], [ -95.538039006426985, 28.832926000034934 ], [ -95.537563006722181, 28.832950000191456 ], [ -95.537461006380212, 28.832940000044506 ], [ -95.537277006566725, 28.832922000725574 ], [ -95.537092006258462, 28.832904000333023 ], [ -95.536864006688532, 28.832845000373261 ], [ -95.536658006785771, 28.832796000307241 ], [ -95.536221006889235, 28.832685000191038 ], [ -95.535970006302222, 28.832616000165974 ], [ -95.535793006606085, 28.832426000236449 ], [ -95.535748006609282, 28.832401000031389 ], [ -95.535739005863419, 28.83237499998938 ], [ -95.535723006109123, 28.832360000518825 ], [ -95.535632006491966, 28.832274999872389 ], [ -95.53572900620884, 28.832053999746712 ], [ -95.535771006201429, 28.831977000146694 ], [ -95.535995006590724, 28.831560999613057 ], [ -95.53601900675892, 28.83107699970601 ], [ -95.535848006249722, 28.830962000050437 ], [ -95.535453006438658, 28.830871000054326 ], [ -95.535294005792423, 28.83092500034757 ], [ -95.535178006295482, 28.830963999613722 ], [ -95.535137006442568, 28.830975000264978 ], [ -95.535003006281968, 28.830800000069573 ], [ -95.534976006223062, 28.830763999969147 ], [ -95.534870006119817, 28.830624999645874 ], [ -95.534760006423824, 28.830481999505633 ], [ -95.53467000605751, 28.830440999570435 ], [ -95.534619006183817, 28.830417999914793 ], [ -95.534464005439062, 28.830347999810932 ], [ -95.53437700629739, 28.830308999948748 ], [ -95.534289005473624, 28.830268999820625 ], [ -95.533794005718605, 28.830045999603918 ], [ -95.533713005301692, 28.830006999724635 ], [ -95.533633005660477, 28.829968999983187 ], [ -95.533557005353074, 28.829937999766386 ], [ -95.533334005394124, 28.829889999411794 ], [ -95.533213005642395, 28.829864999961142 ], [ -95.532983005158584, 28.829816999475192 ], [ -95.532753005003713, 28.829769999737191 ], [ -95.532735005630187, 28.829765999962557 ], [ -95.532647005128212, 28.829747999504235 ], [ -95.532540005733296, 28.82972600016431 ], [ -95.531897005320673, 28.829590999714863 ], [ -95.531711005147045, 28.829480999347975 ], [ -95.531018005333109, 28.829068999305825 ], [ -95.530478004407911, 28.829103000094147 ], [ -95.522814002956068, 28.833247000724537 ], [ -95.521891002694147, 28.833855000965833 ], [ -95.521105002295457, 28.833995000579364 ], [ -95.520529001981259, 28.834012001008496 ], [ -95.518600002094374, 28.834502000816812 ], [ -95.518262001939576, 28.834581001562285 ], [ -95.515986001133967, 28.835114001652176 ], [ -95.513114000977296, 28.835895001553848 ], [ -95.512725000682423, 28.836003001339709 ], [ -95.51196600034271, 28.836215001898658 ], [ -95.511493000009736, 28.836347001894822 ], [ -95.511403000715035, 28.836372001442779 ], [ -95.511385000422791, 28.836377001875483 ], [ -95.51137400055002, 28.836380001581421 ], [ -95.511288000651405, 28.836404002070449 ], [ -95.510819999731254, 28.836534001487188 ], [ -95.510146999884611, 28.83672200160234 ], [ -95.509826000338734, 28.836812001971921 ], [ -95.508681999395804, 28.837131001719897 ], [ -95.507261999301136, 28.837429002115861 ], [ -95.504983998318522, 28.837907002461954 ], [ -95.504433998814847, 28.837893001983058 ], [ -95.504148997964862, 28.83776100225348 ], [ -95.50410299874099, 28.837740001979764 ], [ -95.504018998903035, 28.837522002250349 ], [ -95.503959998736875, 28.83632500186129 ], [ -95.503895998042665, 28.834933001960739 ], [ -95.503887998305601, 28.8336670011048 ], [ -95.504065998709819, 28.832786000958841 ], [ -95.504428998044247, 28.8321880015768 ], [ -95.504600997963436, 28.831606000943456 ], [ -95.504598998082187, 28.830828001143338 ], [ -95.504529997823482, 28.829875000494503 ], [ -95.504526998312429, 28.829840000423399 ], [ -95.504259998107358, 28.829259001007525 ], [ -95.504156998016484, 28.828937000562878 ], [ -95.504081997756302, 28.828655000620671 ], [ -95.504181998375188, 28.828444000434295 ], [ -95.50441799852149, 28.82830000003705 ], [ -95.504627998553389, 28.828203000734995 ], [ -95.505439997906848, 28.827998000102347 ], [ -95.506260998247441, 28.82777800024639 ], [ -95.506768998668406, 28.827203999974753 ], [ -95.50713099907361, 28.826452999588476 ], [ -95.507273998897304, 28.825814999354645 ], [ -95.507312998355019, 28.825765999436761 ], [ -95.50719899829582, 28.825373999976708 ], [ -95.507092998927348, 28.825005999253349 ], [ -95.506999998994544, 28.824497999822398 ], [ -95.506962998463791, 28.824297999744033 ], [ -95.505853998408924, 28.824472999338077 ], [ -95.49398999593754, 28.830725001405497 ], [ -95.48592699397058, 28.834866002293456 ], [ -95.483052993409629, 28.836652002794633 ], [ -95.473691990664108, 28.84184900410931 ], [ -95.469613990123563, 28.843797004986143 ], [ -95.466184988973467, 28.844934004726845 ], [ -95.463496988738171, 28.846883005299766 ], [ -95.461920988279815, 28.848263005422147 ], [ -95.450274984929749, 28.852779007372916 ], [ -95.449778985102441, 28.852972007202773 ], [ -95.441529983610877, 28.855651008075622 ], [ -95.437303982353313, 28.858296009085137 ], [ -95.436534981799355, 28.858778008855225 ], [ -95.437171982205641, 28.859740008594965 ], [ -95.436013981642461, 28.859661009104197 ], [ -95.437907982921161, 28.861326008955348 ], [ -95.438257982165283, 28.861924009227412 ], [ -95.438841982389945, 28.862925009896621 ], [ -95.438972982414441, 28.864823010000762 ], [ -95.439537982661804, 28.865965010582567 ], [ -95.439666983555526, 28.868242010988624 ], [ -95.439949983466079, 28.86875001058662 ], [ -95.441517983736446, 28.869896011208318 ], [ -95.44294998394227, 28.870030010656983 ], [ -95.443378984601651, 28.870285010705732 ], [ -95.443777984858812, 28.870821011296783 ], [ -95.443946984858144, 28.871047011303581 ], [ -95.443368984515416, 28.871677011172487 ], [ -95.439773983914478, 28.873682011860801 ], [ -95.437707983457486, 28.875005012166689 ], [ -95.43716198304547, 28.875355012310497 ], [ -95.427826980460921, 28.881336013840812 ], [ -95.427858980756326, 28.881544013676685 ], [ -95.427890980697541, 28.881749013592099 ], [ -95.427963980402154, 28.88222201404627 ], [ -95.427815980347958, 28.882980013994484 ], [ -95.427089980818423, 28.884368014216115 ], [ -95.425791980432649, 28.885499014891341 ], [ -95.424659980535594, 28.887184015020335 ], [ -95.423308979358339, 28.888646015036702 ], [ -95.422903980275123, 28.889565016064868 ], [ -95.422692979356228, 28.890249015920858 ], [ -95.422457980205849, 28.89071401548183 ], [ -95.422105979714729, 28.891107015704979 ], [ -95.421745979244278, 28.891397015648455 ], [ -95.421644979104769, 28.891712015949892 ], [ -95.421927979996283, 28.892275016000408 ], [ -95.421780979238704, 28.89278701664519 ], [ -95.421804979575242, 28.89313501633524 ], [ -95.421972979237822, 28.893483016078374 ], [ -95.421969979234703, 28.893878016145067 ], [ -95.421862979988191, 28.894432016803055 ], [ -95.422227980271984, 28.896024017319323 ], [ -95.422364979840467, 28.898320017051709 ], [ -95.422430979694695, 28.899616018080327 ], [ -95.423601980442115, 28.901055018168531 ], [ -95.423991980886299, 28.901604018398729 ], [ -95.424485981250427, 28.903180018313577 ], [ -95.425412980839425, 28.903919018320625 ], [ -95.426482981555537, 28.905354019224216 ], [ -95.426780981919407, 28.906419019252159 ], [ -95.426577981932155, 28.907283019575011 ], [ -95.426235981406535, 28.907629019079877 ], [ -95.426000981135232, 28.907767019181954 ], [ -95.425896981586888, 28.908041019535919 ], [ -95.425324980770469, 28.908546019294992 ], [ -95.425194981500695, 28.908775019924054 ], [ -95.424699980875843, 28.908936019635721 ], [ -95.424387981017233, 28.908913019865857 ], [ -95.424256981106439, 28.908363019681193 ], [ -95.42404898085077, 28.908157019856272 ], [ -95.423735980818677, 28.908226019837461 ], [ -95.423658981133556, 28.908730019751474 ], [ -95.423352980540898, 28.910047020039958 ], [ -95.423284981045384, 28.911674020539198 ], [ -95.42334798096671, 28.912877020193434 ], [ -95.423296980466688, 28.913266020944164 ], [ -95.422879981171249, 28.913244020260787 ], [ -95.422176980651599, 28.912763020671346 ], [ -95.421733980279214, 28.912855020288898 ], [ -95.421316980273147, 28.913084020643488 ], [ -95.420978979938241, 28.913565020671964 ], [ -95.421109980309282, 28.913886020609382 ], [ -95.421708980270708, 28.914023020777321 ], [ -95.421786980075154, 28.914206020852692 ], [ -95.421734980801133, 28.914390020502339 ], [ -95.421552980846968, 28.914504021253599 ], [ -95.421500980373594, 28.914985021079303 ], [ -95.42129298020005, 28.915237020991238 ], [ -95.421126980568303, 28.915548021147831 ], [ -95.421092980131434, 28.916220021613317 ], [ -95.421271980791957, 28.91734102121222 ], [ -95.421205980300158, 28.918203021550333 ], [ -95.421065980069542, 28.918980021934996 ], [ -95.420903980670403, 28.919270022053759 ], [ -95.420643980652514, 28.919682022270038 ], [ -95.420279980050665, 28.919843022028225 ], [ -95.419654980087486, 28.919660022016949 ], [ -95.419318980467523, 28.919455021588686 ], [ -95.41905498041298, 28.919293022112086 ], [ -95.41829998022925, 28.91929402212952 ], [ -95.417961979782262, 28.919546022294931 ], [ -95.417599979323754, 28.92017002191691 ], [ -95.41885898038143, 28.921692022178508 ], [ -95.419558979922215, 28.923047022332462 ], [ -95.420526980859009, 28.923546022704691 ], [ -95.420622980470739, 28.923643022813199 ], [ -95.421082981172304, 28.924109022956831 ], [ -95.422016981054043, 28.924114022813932 ], [ -95.422531980712236, 28.924268022828013 ], [ -95.422686981021243, 28.924315022758964 ], [ -95.423011981183166, 28.926030023065881 ], [ -95.424012982000264, 28.927023023239389 ], [ -95.424043981697125, 28.927946023667559 ], [ -95.423629981107212, 28.928471023797851 ], [ -95.423437982030521, 28.928638023772937 ], [ -95.422990981828207, 28.929027023794209 ], [ -95.423320981451553, 28.929886023789972 ], [ -95.423387981314491, 28.931006024081082 ], [ -95.422708981752251, 28.931990024489846 ], [ -95.422510981975293, 28.933702024503191 ], [ -95.422058981033743, 28.934260024760636 ], [ -95.42130798162168, 28.934783025210159 ], [ -95.421270981511157, 28.934824024819068 ], [ -95.420630981062914, 28.93553702541281 ], [ -95.420324980597542, 28.936556025107649 ], [ -95.420396981110514, 28.936985025587511 ], [ -95.420818980776133, 28.937679025787087 ], [ -95.420836981325337, 28.938002025662428 ], [ -95.420852980814686, 28.938281025750907 ], [ -95.420840981187681, 28.938724026272716 ], [ -95.420618981088893, 28.939216026000963 ], [ -95.420408981393081, 28.939428026178625 ], [ -95.420074981127328, 28.939765026536861 ], [ -95.420024981212975, 28.940191026321575 ], [ -95.420353980769676, 28.940561026752796 ], [ -95.42077498096252, 28.94129002624614 ], [ -95.420853981870906, 28.942344026552238 ], [ -95.420348981163855, 28.94323602686385 ], [ -95.418522980450291, 28.944636027172926 ], [ -95.418155980450649, 28.945189027158989 ], [ -95.418224981197937, 28.945744027821529 ], [ -95.418874980713042, 28.946218027135895 ], [ -95.419306981665187, 28.946797027871142 ], [ -95.419442981490661, 28.948207027818565 ], [ -95.419949981214785, 28.948380028206422 ], [ -95.42030798131762, 28.94838202797418 ], [ -95.421329981334964, 28.948388028007052 ], [ -95.421957981470811, 28.948605028336132 ], [ -95.422195982163615, 28.948975028272152 ], [ -95.422964982396124, 28.950169028191201 ], [ -95.424265982263407, 28.951051028771452 ], [ -95.425932982848948, 28.951701028529826 ], [ -95.426121983253637, 28.952385028219634 ], [ -95.425988983544357, 28.954135029150848 ], [ -95.425570982793829, 28.955612029049387 ], [ -95.42558098356723, 28.955628029586755 ], [ -95.425565983322855, 28.955704029249947 ], [ -95.425519983212169, 28.955704029123279 ], [ -95.425475982855119, 28.955766029749832 ], [ -95.425479983660864, 28.955944029450801 ], [ -95.425470982789378, 28.956027029793454 ], [ -95.425483983179163, 28.956075029240104 ], [ -95.425530983665695, 28.956153029194759 ], [ -95.425532983224386, 28.956243029285449 ], [ -95.425556983222165, 28.956292029556597 ], [ -95.425647983685394, 28.956340029191693 ], [ -95.425669983671554, 28.956311029828917 ], [ -95.425668983153656, 28.956261029338293 ], [ -95.425691982990401, 28.956240029195033 ], [ -95.425736983648051, 28.956248029789556 ], [ -95.425771982749694, 28.956279029375921 ], [ -95.425817983087711, 28.956308029008412 ], [ -95.425875983381275, 28.95635702978624 ], [ -95.425967983318401, 28.956416029205251 ], [ -95.425970983018331, 28.956535029580241 ], [ -95.425903982861527, 28.956575029028755 ], [ -95.425852983251147, 28.956639029904355 ], [ -95.425735983210814, 28.956700029315016 ], [ -95.425726983743431, 28.956770029857712 ], [ -95.425727983376063, 28.956828029743448 ], [ -95.425751983603305, 28.956877029978397 ], [ -95.425842982893769, 28.956905029525082 ], [ -95.425989982864252, 28.956884029328226 ], [ -95.426056983416657, 28.956831029092093 ], [ -95.426160983113434, 28.956890029593616 ], [ -95.426229983509245, 28.956968029416842 ], [ -95.426412983330522, 28.956996029193832 ], [ -95.426538983908131, 28.957044029297847 ], [ -95.426631983041915, 28.957162029251482 ], [ -95.426666983976745, 28.957181029957891 ], [ -95.426712983813104, 28.957230030052862 ], [ -95.426749983178141, 28.957358029478783 ], [ -95.426921983970146, 28.957425029423661 ], [ -95.427002983089153, 28.957493029992683 ], [ -95.427025983667107, 28.95750403002031 ], [ -95.427079983459862, 28.957549029981436 ], [ -95.427099983313468, 28.957665029611775 ], [ -95.427146984057089, 28.957779029485284 ], [ -95.427180983627352, 28.957819029478731 ], [ -95.427192983788999, 28.957851030092723 ], [ -95.427261984064515, 28.957899029489198 ], [ -95.427306984169519, 28.957898029831174 ], [ -95.427354983719681, 28.957997029909986 ], [ -95.427355983579417, 28.958057029390723 ], [ -95.427425984009602, 28.958126029557786 ], [ -95.42744998325476, 28.958155029530978 ], [ -95.427449983653773, 28.958184030024029 ], [ -95.427473983992229, 28.958233029918343 ], [ -95.427531984167871, 28.958302029813357 ], [ -95.427555983329455, 28.958343029339662 ], [ -95.427556983611836, 28.958392029515302 ], [ -95.427569984145862, 28.958433029572724 ], [ -95.427637983687887, 28.95845202936983 ], [ -95.427638984010358, 28.958501029544738 ], [ -95.427617983917813, 28.958589030242937 ], [ -95.427619984279971, 28.958659029467523 ], [ -95.427632983894341, 28.95872003029039 ], [ -95.427782984358032, 28.958828030096871 ], [ -95.427773983958588, 28.958936029973561 ], [ -95.427822984049357, 28.959066029765076 ], [ -95.427856983552374, 28.95909503025382 ], [ -95.427971984355665, 28.959142030077153 ], [ -95.428130983463461, 28.959140029908244 ], [ -95.428154983503717, 28.959209029547633 ], [ -95.428180983850694, 28.959339029606255 ], [ -95.428249983824429, 28.959408030403022 ], [ -95.428250983822934, 28.959428030079867 ], [ -95.428228984051913, 28.959458030136055 ], [ -95.428194984248975, 28.959479030373693 ], [ -95.428196983964256, 28.959549030461822 ], [ -95.428253983787812, 28.959557030270506 ], [ -95.428310984393008, 28.959576030286517 ], [ -95.428334983785362, 28.959646030134468 ], [ -95.428428983677293, 28.959793029882871 ], [ -95.428464984465208, 28.959842029696564 ], [ -95.428535984281609, 28.959971030464526 ], [ -95.428569983830585, 28.959991030175534 ], [ -95.428614984568867, 28.959970030178198 ], [ -95.428694984469956, 28.95996803025367 ], [ -95.428762984382132, 28.959976030144748 ], [ -95.428830984107805, 28.959995030205167 ], [ -95.428873984411908, 28.960042030529419 ], [ -95.428900983738515, 28.960064030410408 ], [ -95.428912984542109, 28.960113029954663 ], [ -95.428936984137621, 28.960163029796014 ], [ -95.428955984068097, 28.960203029896935 ], [ -95.429006983760743, 28.960231030577379 ], [ -95.429054984482377, 28.960321030314404 ], [ -95.429055984330802, 28.960381029749925 ], [ -95.42897798436853, 28.960441030394154 ], [ -95.428955983921099, 28.960473030179163 ], [ -95.428843984547981, 28.960534030396609 ], [ -95.428822984636355, 28.960595030425367 ], [ -95.428778983921703, 28.96065502979139 ], [ -95.428722983782563, 28.960705030035843 ], [ -95.42870098366501, 28.960746030372594 ], [ -95.428634984427092, 28.960827030182617 ], [ -95.428631984278638, 28.96084103003302 ], [ -95.428600984000127, 28.960871030298208 ], [ -95.428545983828087, 28.960880030210763 ], [ -95.428477983632561, 28.960911030633518 ], [ -95.428455984035466, 28.96093102988954 ], [ -95.428433984002751, 28.960961029978026 ], [ -95.428378983678101, 28.960982030294719 ], [ -95.428343983835731, 28.960992030586823 ], [ -95.428299983644152, 28.961033030194574 ], [ -95.428277984569647, 28.961063030284741 ], [ -95.428221983771934, 28.961093030421548 ], [ -95.428222983866405, 28.961145030466522 ], [ -95.42820098417323, 28.9611840302085 ], [ -95.428177984430775, 28.96118403064424 ], [ -95.428143984477728, 28.96117603040511 ], [ -95.428142984483046, 28.961156030728702 ], [ -95.428086984042253, 28.96115703034609 ], [ -95.428018984245213, 28.961167030396052 ], [ -95.42799698359913, 28.961188030719757 ], [ -95.427954983936559, 28.961319030223212 ], [ -95.42795798372687, 28.961468030307525 ], [ -95.427986984061263, 28.96152303060251 ], [ -95.428039984333964, 28.961586030589128 ], [ -95.428063983569601, 28.961647030788942 ], [ -95.428122984011196, 28.961736030039319 ], [ -95.428134983853894, 28.961774030321841 ], [ -95.428158983881247, 28.961814030366728 ], [ -95.428209984147898, 28.961848030234776 ], [ -95.428239983741179, 28.961873030397058 ], [ -95.428318984466614, 28.961872030259055 ], [ -95.428375983973211, 28.961889030553539 ], [ -95.428417984483332, 28.961945030907657 ], [ -95.428457983655392, 28.961978030960843 ], [ -95.42849198424274, 28.961988030756483 ], [ -95.428515984689611, 28.96201703053331 ], [ -95.428552984301476, 28.96216603039225 ], [ -95.42857598373007, 28.962206030556302 ], [ -95.428633983880758, 28.962245030951348 ], [ -95.428690984206781, 28.962253030544357 ], [ -95.428713983918129, 28.962282030481216 ], [ -95.428727983733523, 28.962363030832829 ], [ -95.42875198406, 28.962433030598554 ], [ -95.428765984204418, 28.962552030196637 ], [ -95.428770984411983, 28.962741030471587 ], [ -95.428842984629284, 28.962938030763514 ], [ -95.428945984689207, 28.962977031015313 ], [ -95.42897998394578, 28.962977030697221 ], [ -95.429003984568027, 28.96300503101741 ], [ -95.429051984213515, 28.963135030452897 ], [ -95.42907598405472, 28.963194030829666 ], [ -95.429079984661229, 28.963345031163399 ], [ -95.429013983892204, 28.963425030884501 ], [ -95.428957984441581, 28.96347503037612 ], [ -95.428892984622266, 28.963587031106965 ], [ -95.428694984085041, 28.963900031271091 ], [ -95.428573984518081, 28.964042031334248 ], [ -95.428522984271225, 28.96429303138494 ], [ -95.428526984594271, 28.96452703118182 ], [ -95.428568984576359, 28.964782030938579 ], [ -95.428606984434097, 28.964970030936144 ], [ -95.428725984670763, 28.965196031333214 ], [ -95.42877398396179, 28.965326030831058 ], [ -95.428857984213778, 28.965523031110983 ], [ -95.428950984899586, 28.965602031474482 ], [ -95.428975984268277, 28.965710031059267 ], [ -95.428978984132954, 28.96583203112273 ], [ -95.428969984881476, 28.965931031389985 ], [ -95.428949984617489, 28.966051031510773 ], [ -95.428883984031089, 28.966143031685526 ], [ -95.428862984534746, 28.966213031426271 ], [ -95.428840984000232, 28.966252031266869 ], [ -95.428846984195047, 28.966355031061493 ], [ -95.42883998459412, 28.966394031219945 ], [ -95.428847984777875, 28.96643203140091 ], [ -95.428840984024646, 28.966452031007126 ], [ -95.428827984091185, 28.966466031274393 ], [ -95.428788984311439, 28.966496031597568 ], [ -95.428781984217665, 28.966514031591512 ], [ -95.428755984817244, 28.966551031803554 ], [ -95.428745984460491, 28.966571031174915 ], [ -95.428737984005465, 28.966635031833064 ], [ -95.428726984792206, 28.966655031454437 ], [ -95.428694984303391, 28.966681031838846 ], [ -95.428659984349466, 28.966720031821851 ], [ -95.428616984214386, 28.966770031949988 ], [ -95.428594983945544, 28.966775031777424 ], [ -95.428537984391923, 28.966805031472216 ], [ -95.428479984854789, 28.966847031835226 ], [ -95.42844798421855, 28.966879031944394 ], [ -95.428437984139549, 28.966895031144656 ], [ -95.428438984607368, 28.96693603187753 ], [ -95.428427984167612, 28.966974031701383 ], [ -95.428423983929477, 28.96701903185847 ], [ -95.428427984592531, 28.967082031454723 ], [ -95.428428984297042, 28.967143031149405 ], [ -95.428429984081617, 28.967186031491064 ], [ -95.428431984398884, 28.967233031786282 ], [ -95.428438984460541, 28.967301032035596 ], [ -95.428468984758865, 28.96734503173569 ], [ -95.428507984734026, 28.96739403167777 ], [ -95.428568984620398, 28.967447031451442 ], [ -95.428570984084303, 28.967470031677617 ], [ -95.428562983951849, 28.967506031234731 ], [ -95.428535984439677, 28.967562031246921 ], [ -95.428525984162505, 28.967602031394065 ], [ -95.42851798463191, 28.967642032025356 ], [ -95.428525984825086, 28.967680031322036 ], [ -95.42853798491025, 28.967696032032126 ], [ -95.428555984805769, 28.96770903152764 ], [ -95.428663984952294, 28.967755031723229 ], [ -95.428682984406791, 28.967766031341561 ], [ -95.428700984650348, 28.967781031355926 ], [ -95.428743984270312, 28.96780503182929 ], [ -95.428867984833161, 28.967846031520409 ], [ -95.428987984778047, 28.967886031702342 ], [ -95.429062984432363, 28.967903032114837 ], [ -95.429105984523247, 28.967905032069204 ], [ -95.429190984967903, 28.967892032178451 ], [ -95.429303984649664, 28.967883031488743 ], [ -95.429420984937806, 28.967863031417259 ], [ -95.429530984229274, 28.96785603173284 ], [ -95.429630984823049, 28.967855031342658 ], [ -95.429761984339621, 28.96787003161608 ], [ -95.429811984253078, 28.967876031699515 ], [ -95.4298579846742, 28.967882031791675 ], [ -95.429904984298432, 28.967890032146212 ], [ -95.429947985068679, 28.967907031302406 ], [ -95.42999098503229, 28.967931031372505 ], [ -95.4300089843329, 28.967951031598982 ], [ -95.430029984592124, 28.967967031904024 ], [ -95.430161985114097, 28.968066032134992 ], [ -95.430200985194247, 28.968104031350855 ], [ -95.43027398452854, 28.968172031477366 ], [ -95.430328985102975, 28.968212031990006 ], [ -95.430397984616349, 28.968283031968031 ], [ -95.430457984662326, 28.9683560318473 ], [ -95.430483984718364, 28.96841203155148 ], [ -95.430507984854515, 28.968445031956243 ], [ -95.430556984897194, 28.968499032045052 ], [ -95.430576985199622, 28.968530031947228 ], [ -95.43061598492578, 28.96859203195293 ], [ -95.430677984878287, 28.968686032289945 ], [ -95.430722985415144, 28.968739032099965 ], [ -95.430774984774288, 28.968779032186866 ], [ -95.430831984998932, 28.968810031420457 ], [ -95.430894985046763, 28.968860031515607 ], [ -95.430923985474877, 28.968918031852589 ], [ -95.430928985499136, 28.968959031574521 ], [ -95.430936985532483, 28.969029031930823 ], [ -95.430984984725939, 28.969345031807759 ], [ -95.430864985163581, 28.969347031971761 ], [ -95.430571985115265, 28.969353032303466 ], [ -95.428739984227875, 28.969386031820246 ], [ -95.427584983964806, 28.969414032399989 ], [ -95.427010983752439, 28.969429032531576 ], [ -95.425862983517547, 28.969429031855078 ], [ -95.425466983220005, 28.969425032484786 ], [ -95.424096983458156, 28.969369032488537 ], [ -95.423122982795121, 28.969300032154738 ], [ -95.422950982926054, 28.969288032541478 ], [ -95.422316982639259, 28.969227032583976 ], [ -95.421197982417269, 28.969101032375736 ], [ -95.420470982937275, 28.969014031890307 ], [ -95.419494982486441, 28.968831032450023 ], [ -95.41884998217563, 28.96870703223971 ], [ -95.417449981611881, 28.968412031949139 ], [ -95.415671980912265, 28.968005032609017 ], [ -95.413946981007669, 28.967609032479555 ], [ -95.412781980415843, 28.967350031927879 ], [ -95.412090980377627, 28.967187032305173 ], [ -95.41057697946728, 28.966818032464907 ], [ -95.41038497993928, 28.966822032381145 ], [ -95.409691979366769, 28.966630032272676 ], [ -95.409196979897132, 28.966458032156261 ], [ -95.408239978914466, 28.96612203160343 ], [ -95.407725979116705, 28.96590503210038 ], [ -95.406805979124044, 28.965460031584726 ], [ -95.406749979118459, 28.9654330318665 ], [ -95.406141978392881, 28.965085031753382 ], [ -95.40556397808173, 28.964721032077634 ], [ -95.405020978504751, 28.964340031858104 ], [ -95.40457097795759, 28.963983031390029 ], [ -95.404011978195143, 28.963515031790788 ], [ -95.403657977518151, 28.963206031489555 ], [ -95.403569977753634, 28.963056031343765 ], [ -95.401399977369991, 28.961043031142893 ], [ -95.400651976522212, 28.96035003067901 ], [ -95.39689197583931, 28.956841030672951 ], [ -95.392242974054227, 28.952502029573079 ], [ -95.391339974584227, 28.951654029792859 ], [ -95.390459974401253, 28.950860029132159 ], [ -95.389708973331835, 28.950254029073644 ], [ -95.389615973781417, 28.950179029154302 ], [ -95.389105973581891, 28.949847029421363 ], [ -95.38852797332035, 28.949495028892617 ], [ -95.388454973144647, 28.949486029099628 ], [ -95.387911972867144, 28.949192029498224 ], [ -95.387429972719531, 28.948960028872065 ], [ -95.386875972771477, 28.948719029479065 ], [ -95.386400972404942, 28.948548029025414 ], [ -95.385826973026283, 28.94837202935674 ], [ -95.385456972329933, 28.94826702873662 ], [ -95.385232972437876, 28.948204028915438 ], [ -95.384245972586967, 28.947933028659101 ], [ -95.382518971425313, 28.947430028647457 ], [ -95.38062997147243, 28.946932028663106 ], [ -95.380406971522874, 28.946873029030296 ], [ -95.380081970831952, 28.948120028901396 ], [ -95.377297970434483, 28.958791031905616 ], [ -95.375838970674366, 28.96373303285511 ], [ -95.374878970717532, 28.967027033489259 ], [ -95.37485697039024, 28.969987034154766 ], [ -95.375778971472272, 28.971739034429934 ], [ -95.378353972051187, 28.973403034558061 ], [ -95.383837973313248, 28.976200034496078 ], [ -95.385893974309482, 28.977176035224733 ], [ -95.387458974153731, 28.977919035224129 ], [ -95.390741975213047, 28.980704035463706 ], [ -95.392386975371281, 28.981538035479815 ], [ -95.393382975798957, 28.981379036102627 ], [ -95.394150975979969, 28.981257036014387 ], [ -95.395479976323017, 28.980099034998425 ], [ -95.395765976140297, 28.978694034781935 ], [ -95.396547977105399, 28.977097034362142 ], [ -95.397202977146861, 28.976543034736643 ], [ -95.398375977388085, 28.975555034004206 ], [ -95.401353977637257, 28.974698034141433 ], [ -95.403389978513019, 28.974903033978791 ], [ -95.405143978646123, 28.975883034007058 ], [ -95.40568597909423, 28.977148034723438 ], [ -95.405946979074002, 28.97909003499516 ], [ -95.406545979286207, 28.980015034792125 ], [ -95.407973980120047, 28.980557035050552 ], [ -95.410342980285193, 28.980230034800844 ], [ -95.412822981265734, 28.979856034528623 ], [ -95.415301981416476, 28.979627034683418 ], [ -95.417504982597805, 28.980100034895226 ], [ -95.418544982813856, 28.980323034696436 ], [ -95.420845982622993, 28.981985034648378 ], [ -95.425652984127098, 28.987494035898678 ], [ -95.428334984812508, 28.98974003614391 ], [ -95.431511986516313, 28.992183036319247 ], [ -95.433092986552168, 28.994471037525834 ], [ -95.433849987104608, 28.996562037715758 ], [ -95.433781986801108, 28.998454037736984 ], [ -95.433761986793527, 29.000270038290253 ], [ -95.433878987135287, 29.001031038659821 ], [ -95.434833987851732, 29.00206303873609 ], [ -95.435996987325737, 29.002557038338761 ], [ -95.436152987910745, 29.002560038917501 ], [ -95.437569988003119, 29.002591038355892 ], [ -95.438302988643187, 29.001927038610823 ], [ -95.439008988392658, 29.001032038124482 ], [ -95.439565988426907, 29.000547038512277 ], [ -95.440367988358673, 29.000270037926583 ], [ -95.440575988473441, 28.999996037740434 ], [ -95.441304988498615, 28.999652038347669 ], [ -95.442007988907932, 28.999445037762786 ], [ -95.4435979900082, 28.999375038050069 ], [ -95.444483989532685, 28.999627037859003 ], [ -95.445370990007177, 29.000130037718353 ], [ -95.44542398956672, 29.000270038065235 ], [ -95.447168990081565, 29.000613038172894 ], [ -95.448388990688443, 29.001996037803035 ], [ -95.448349990867399, 29.002067038368025 ], [ -95.448650990720907, 29.00242903788163 ], [ -95.449897991403788, 29.004211038358804 ], [ -95.450034991505916, 29.004461038585951 ], [ -95.451917992105109, 29.007151039134431 ], [ -95.453065992249904, 29.008792039251343 ], [ -95.45327499222698, 29.009233039556147 ], [ -95.454179993279254, 29.011203039823343 ], [ -95.454893992978171, 29.013179040593702 ], [ -95.455084993412967, 29.013450040532732 ], [ -95.455122992975319, 29.013554039947827 ], [ -95.456268993365399, 29.015203040424609 ], [ -95.457250993746143, 29.016581040576689 ], [ -95.458682994480029, 29.018343041282073 ], [ -95.458697994271375, 29.018380041113371 ], [ -95.458733994398884, 29.018417041235899 ], [ -95.458789994757396, 29.018557041257182 ], [ -95.45989699515485, 29.021301041773658 ], [ -95.460751994792432, 29.023442042309288 ], [ -95.461338994643839, 29.024325042748071 ], [ -95.461617995636402, 29.024744042746782 ], [ -95.461963995454667, 29.024902042642925 ], [ -95.462016995399338, 29.024963042311335 ], [ -95.462185995626712, 29.02504404294784 ], [ -95.463451996189406, 29.025642043013725 ], [ -95.464420995642897, 29.025567042893258 ], [ -95.46498099576759, 29.025519042540814 ], [ -95.469458997612023, 29.02479104230239 ], [ -95.47074299779041, 29.02479704266538 ], [ -95.47350299849721, 29.02489104256345 ], [ -95.475153999180591, 29.025628042333732 ], [ -95.47625299903585, 29.026444042436474 ], [ -95.476721999681942, 29.027106042542432 ], [ -95.477115999102111, 29.026356042017692 ], [ -95.478478999330449, 29.023764041863625 ], [ -95.479600999325129, 29.021702041220365 ], [ -95.481963000593183, 29.017243040503775 ], [ -95.482582000083383, 29.016074040215727 ], [ -95.4830529997936, 29.015173040134954 ], [ -95.483622000342962, 29.014126039270977 ], [ -95.484480001031841, 29.012546038966011 ], [ -95.48532100029945, 29.010959038581969 ], [ -95.48629200037314, 29.009104038630124 ], [ -95.486686000735503, 29.008420038156157 ], [ -95.490045001949397, 29.003534037535157 ], [ -95.491819001839005, 29.000941036834394 ], [ -95.493046002682362, 28.999168036322921 ], [ -95.493593002145147, 28.998378036377883 ], [ -95.493876002221754, 28.997960036232154 ], [ -95.494095002715156, 28.997709036184261 ], [ -95.494151002392002, 28.997646036274539 ], [ -95.494249002271303, 28.997540036086079 ], [ -95.494464002141925, 28.997309036053061 ], [ -95.494772002748377, 28.99701703544622 ], [ -95.49480900214067, 28.996982036085672 ], [ -95.494992003056879, 28.9968340356174 ], [ -95.495497003062383, 28.996423035958891 ], [ -95.495719002677944, 28.996252035566595 ], [ -95.495947002733161, 28.996099035771454 ], [ -95.496223002956896, 28.995927035356544 ], [ -95.496491002921132, 28.995767035114934 ], [ -95.496765002634461, 28.995613034999646 ], [ -95.497325003479318, 28.995378034995333 ], [ -95.498528002996977, 28.99487403490232 ], [ -95.50000700427789, 28.99428303533622 ], [ -95.500282004071948, 28.994172035290898 ], [ -95.504453004751667, 28.99248103454811 ], [ -95.504634004926643, 28.992408034038469 ], [ -95.505219004549545, 28.992171034497542 ], [ -95.505751004716501, 28.991936034157018 ], [ -95.506331005039911, 28.991636033884959 ], [ -95.507415005641292, 28.991025034081179 ], [ -95.508522005833186, 28.990317033687841 ], [ -95.510827006191533, 28.988810033054573 ], [ -95.511685006650325, 28.988253033620584 ], [ -95.512084006839032, 28.987989033479398 ], [ -95.515808007108674, 28.985523032337255 ], [ -95.517205007361099, 28.984665032001516 ], [ -95.517530007974742, 28.984445032221778 ], [ -95.518188008431409, 28.983857032613763 ], [ -95.518785008546331, 28.983395032277031 ], [ -95.518865008635743, 28.983333031824863 ], [ -95.519174007704493, 28.982977032400967 ], [ -95.520232008906078, 28.982042032183472 ], [ -95.520748008905713, 28.981556032021249 ], [ -95.524105009780087, 28.978470031358484 ], [ -95.524640009600631, 28.977978031060619 ], [ -95.524717009519676, 28.977907030655601 ], [ -95.524784009494795, 28.977845030991002 ], [ -95.525395009341722, 28.97728703039779 ], [ -95.52622000940103, 28.976537030431558 ], [ -95.52709001004942, 28.975742030266456 ], [ -95.529190010469861, 28.97382903023302 ], [ -95.52981401068979, 28.97325302961098 ], [ -95.530368011156881, 28.972748029177517 ], [ -95.530872010449244, 28.972288028997344 ], [ -95.532206011086842, 28.971041028844081 ], [ -95.533946011910402, 28.96945202899861 ], [ -95.535586011832081, 28.967950028777146 ], [ -95.541070012900875, 28.962890026972747 ], [ -95.541165013035368, 28.96281102724663 ], [ -95.542065012724535, 28.961966027282415 ], [ -95.542564013760256, 28.961504026384564 ], [ -95.542932013264959, 28.961163026460596 ], [ -95.543419013422792, 28.96069802661972 ], [ -95.543986013735505, 28.960207026054984 ], [ -95.544970013330285, 28.959316026498559 ], [ -95.548316014625016, 28.95628002527517 ], [ -95.549689014805537, 28.955034025123283 ], [ -95.550740014856373, 28.954087024857269 ], [ -95.552630015341364, 28.95238202503392 ], [ -95.55359001605872, 28.951513024240377 ], [ -95.55474701634644, 28.950468023841424 ], [ -95.554871015544606, 28.95035302414092 ], [ -95.555162016167259, 28.950081024088448 ], [ -95.555585016459531, 28.95061902442286 ], [ -95.557440016921248, 28.952398024700592 ], [ -95.558151016720515, 28.953539024258273 ], [ -95.55814401694856, 28.954930025289265 ], [ -95.557710017212727, 28.955687024775017 ], [ -95.55670101674697, 28.956568025657138 ], [ -95.555120016773643, 28.957067025774794 ], [ -95.551102015399735, 28.957430025767213 ], [ -95.549806014981527, 28.958310026141554 ], [ -95.549517014676752, 28.958688026223751 ], [ -95.549509015170827, 28.960206026169416 ], [ -95.549925014936761, 28.960576026094756 ], [ -95.5510800156692, 28.96160402676918 ], [ -95.553227016338269, 28.962498026440258 ], [ -95.555371016741518, 28.963898026820733 ], [ -95.556087017339564, 28.964154027066513 ], [ -95.556661017410974, 28.964156026614614 ], [ -95.557090016961993, 28.964411026821239 ], [ -95.561393018148735, 28.964555027084455 ], [ -95.562681019046011, 28.965192027075222 ], [ -95.565683019355248, 28.967228027040324 ], [ -95.565819020020967, 28.968620027952362 ], [ -95.565529019428766, 28.969251027436755 ], [ -95.562790019350658, 28.971769028716402 ], [ -95.562355019267471, 28.972526028821694 ], [ -95.562062018287278, 28.973663028991282 ], [ -95.562052019145383, 28.975687029426968 ], [ -95.562193019357579, 28.97606702904195 ], [ -95.563727019247992, 28.977431029880037 ], [ -95.563762019706061, 28.977462029790164 ], [ -95.565195019316619, 28.978229029435809 ], [ -95.565416019350735, 28.978425029221661 ], [ -95.566481020032924, 28.979372029916039 ], [ -95.567048020661858, 28.980639030073714 ], [ -95.567041020281437, 28.982030030682889 ], [ -95.567467020687062, 28.982917030253944 ], [ -95.568609020843326, 28.983933030347639 ], [ -95.57004102095415, 28.984571031032448 ], [ -95.574198022434388, 28.985473030473134 ], [ -95.576775022810807, 28.986621030597256 ], [ -95.578781023138703, 28.987135030871656 ], [ -95.583803024758922, 28.987154031249894 ], [ -95.584663025164517, 28.987411030450179 ], [ -95.586377025305936, 28.989061030854771 ], [ -95.587231025770208, 28.990456031133068 ], [ -95.587224025493555, 28.991973031700251 ], [ -95.585912025378363, 28.9960150327686 ], [ -95.585903025674327, 28.997785033207247 ], [ -95.586615025945051, 28.999052033467571 ], [ -95.586985025867122, 29.000270033780996 ], [ -95.587038026686855, 29.00044503375938 ], [ -95.588905026679555, 29.002580033666018 ], [ -95.589036027174842, 29.002729034220827 ], [ -95.589747027164805, 29.004123034377319 ], [ -95.589597027189697, 29.005387034858472 ], [ -95.58887202731583, 29.007028035172741 ], [ -95.588414026855332, 29.007627034803203 ], [ -95.588019026813271, 29.008688034975389 ], [ -95.587987027077276, 29.008943035425006 ], [ -95.587986026405787, 29.009509035478459 ], [ -95.588037027382811, 29.010704035254502 ], [ -95.588123026549439, 29.010973035297397 ], [ -95.588417027213978, 29.010929035397716 ], [ -95.58939702689996, 29.010783035682731 ], [ -95.58987102692538, 29.01072403542388 ], [ -95.59156002741139, 29.010457035131875 ], [ -95.593069028491854, 29.010220035290047 ], [ -95.594000028380833, 29.010067035323839 ], [ -95.594419028787968, 29.009998035578434 ], [ -95.597115029387922, 29.009553034669665 ], [ -95.602818030433355, 29.008622034979769 ], [ -95.603192031113394, 29.008561034709505 ], [ -95.604276030959753, 29.00838403458463 ], [ -95.605090031514564, 29.008292034305892 ], [ -95.605460031243808, 29.008264034807908 ], [ -95.606121031753233, 29.008274034468705 ], [ -95.613230033128033, 29.008388034319925 ], [ -95.617750034386674, 29.008490034014731 ], [ -95.618045034319707, 29.008529034068403 ], [ -95.618642034251664, 29.00860803434221 ], [ -95.623257036135286, 29.009219034260951 ], [ -95.623854035863388, 29.009277034434763 ], [ -95.624250035787796, 29.009288034463211 ], [ -95.624658035885062, 29.00927103397277 ], [ -95.62498703670768, 29.00922603384322 ], [ -95.625393036804439, 29.009130033927189 ], [ -95.626059037071201, 29.008914033805162 ], [ -95.626480036336034, 29.008743034051108 ], [ -95.62671303696979, 29.00864903429116 ], [ -95.627639036499474, 29.008243033370082 ], [ -95.630201037145426, 29.007205033754254 ], [ -95.632276038481947, 29.00634303309354 ], [ -95.634311038405968, 29.00549803307684 ], [ -95.637047039641644, 29.004371033014344 ], [ -95.637832039033725, 29.004035032350895 ], [ -95.638267039303543, 29.00385303283624 ], [ -95.639214039730945, 29.003368032622699 ], [ -95.641475040467498, 29.00222903229357 ], [ -95.644089040935128, 29.000877032183382 ], [ -95.644563040714232, 29.000631031923124 ], [ -95.645095040969892, 29.000329031701757 ], [ -95.645508041251063, 29.000089031594509 ], [ -95.645822041206074, 28.999868031610905 ], [ -95.645939041194424, 28.999760031425922 ], [ -95.646144041330828, 28.999591031418124 ], [ -95.648324042161789, 28.99760203061745 ], [ -95.649131041793623, 28.996858030602198 ], [ -95.649549042122644, 28.996480030940774 ], [ -95.650723042734796, 28.995419030720811 ], [ -95.651293042213112, 28.99498402984905 ], [ -95.655638043108127, 28.992787029499262 ], [ -95.657287043968807, 28.991947029398354 ], [ -95.658184044229955, 28.99151702912803 ], [ -95.659278043996736, 28.990992029112356 ], [ -95.660704044203371, 28.990254028760639 ], [ -95.661193044647661, 28.989982028554952 ], [ -95.661457044992744, 28.989804028496522 ], [ -95.66172104503751, 28.989598028501273 ], [ -95.661985044628238, 28.989407028364457 ], [ -95.664568045544868, 28.987363028321511 ], [ -95.665608045678795, 28.98652102843003 ], [ -95.665991045675213, 28.986211028399442 ], [ -95.66610704613359, 28.986117027948385 ], [ -95.667175046009064, 28.985254028038181 ], [ -95.672461047754169, 28.980918026516395 ], [ -95.675267047615975, 28.978346025745957 ], [ -95.676435047843526, 28.977274025649738 ], [ -95.678070048692192, 28.975773025687744 ], [ -95.678428048608723, 28.975440024993627 ], [ -95.679247048334872, 28.974679024959784 ], [ -95.680245048941217, 28.973756024639659 ], [ -95.682601049493641, 28.971576024008737 ], [ -95.683055049813902, 28.971154024727966 ], [ -95.687830050135901, 28.966756022893442 ], [ -95.688683050694948, 28.965961022863429 ], [ -95.68888705054205, 28.96580102282531 ], [ -95.690501051418693, 28.964662022451197 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 762, "Tract": "48039661700", "Area_SqMi": 196.29673359685214, "total_2009": 492, "total_2010": 400, "total_2011": 310, "total_2012": 506, "total_2013": 508, "total_2014": 541, "total_2015": 502, "total_2016": 435, "total_2017": 378, "total_2018": 342, "total_2019": 370, "total_2020": 385, "age1": 612, "age2": 1938, "age3": 684, "earn1": 226, "earn2": 325, "earn3": 2683, "naics_s01": 255, "naics_s02": 1, "naics_s03": 0, "naics_s04": 2749, "naics_s05": 37, "naics_s06": 9, "naics_s07": 11, "naics_s08": 47, "naics_s09": 3, "naics_s10": 0, "naics_s11": 8, "naics_s12": 8, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 50, "naics_s17": 4, "naics_s18": 0, "naics_s19": 34, "naics_s20": 12, "race1": 2694, "race2": 369, "race3": 48, "race4": 71, "race5": 10, "race6": 42, "ethnicity1": 1418, "ethnicity2": 1816, "edu1": 848, "edu2": 742, "edu3": 722, "edu4": 310, "Shape_Length": 420498.55393147812, "Shape_Area": 5472416967.4630003, "total_2021": 2684, "total_2022": 3234 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.339340974118571, 29.264298096084456 ], [ -95.339288974181272, 29.263611095724656 ], [ -95.338322973972339, 29.262304095266682 ], [ -95.338322973579196, 29.261915095254661 ], [ -95.338766973476652, 29.261090095707306 ], [ -95.338767973695653, 29.26063209496839 ], [ -95.338636973566821, 29.260426095663323 ], [ -95.338584974051727, 29.259784094697526 ], [ -95.337983973856097, 29.259165095163581 ], [ -95.337954973021056, 29.258240095181673 ], [ -95.337932973147318, 29.2575390949176 ], [ -95.337697973105776, 29.257195094545967 ], [ -95.336861972852574, 29.256943094748511 ], [ -95.336704973132129, 29.256736094484037 ], [ -95.336626972482321, 29.25625509479109 ], [ -95.337358972787825, 29.255362093864655 ], [ -95.337410973046815, 29.254835094151296 ], [ -95.337280972976615, 29.254446094485932 ], [ -95.336783973122493, 29.253964093740755 ], [ -95.336716973233493, 29.253282093504719 ], [ -95.33670597254293, 29.253162094222244 ], [ -95.336758972431667, 29.252429093368299 ], [ -95.336497973056794, 29.252154093847206 ], [ -95.336105972852195, 29.252062093823486 ], [ -95.33560897198997, 29.251856093934332 ], [ -95.334851971869909, 29.250939093307821 ], [ -95.33412097155221, 29.250527093694238 ], [ -95.333803971677455, 29.250261092926813 ], [ -95.3335429722963, 29.249826093146748 ], [ -95.333568972305841, 29.249437093011771 ], [ -95.333855971871927, 29.248841093394976 ], [ -95.333908972337369, 29.248451093366135 ], [ -95.333725972115417, 29.247924092581002 ], [ -95.333856972159325, 29.24762709316115 ], [ -95.333856971764533, 29.247191092930169 ], [ -95.333568972014319, 29.246939092614141 ], [ -95.333020971360213, 29.246687092610856 ], [ -95.332132971770122, 29.24677909244906 ], [ -95.331949971458712, 29.246618092167726 ], [ -95.331845971719702, 29.245656092403795 ], [ -95.331479971012186, 29.245473092713933 ], [ -95.330330970933971, 29.245449092142131 ], [ -95.32996497125508, 29.245151092504951 ], [ -95.329855970306525, 29.244978091914451 ], [ -95.329703970210289, 29.244739092079516 ], [ -95.329415970191405, 29.244579092558538 ], [ -95.329102970072398, 29.244647091863971 ], [ -95.328867970509947, 29.244968092150955 ], [ -95.328553970877394, 29.245174092625035 ], [ -95.328187970732998, 29.245197092250809 ], [ -95.327900970652678, 29.244876092546811 ], [ -95.327717969797447, 29.244395091937335 ], [ -95.327404969764885, 29.244074092491314 ], [ -95.326960969599455, 29.243937092077402 ], [ -95.326542969312527, 29.243684091902491 ], [ -95.325445969984443, 29.243340092400508 ], [ -95.324975969706003, 29.242997091872244 ], [ -95.324792969234878, 29.242745091777731 ], [ -95.324792969153108, 29.242493092187587 ], [ -95.324531969469092, 29.242126092065739 ], [ -95.323982969538477, 29.241897091715138 ], [ -95.323382968403806, 29.241438091533997 ], [ -95.323225968410526, 29.241163092164349 ], [ -95.323173968409733, 29.240384091392325 ], [ -95.322834968856768, 29.240086091648195 ], [ -95.32275596878587, 29.239811091926953 ], [ -95.322364968883676, 29.239651091355601 ], [ -95.321919968723947, 29.239949091771059 ], [ -95.320273967636609, 29.240773091410048 ], [ -95.319882967912278, 29.240819091801107 ], [ -95.319385968303692, 29.240658091610992 ], [ -95.3187599678471, 29.240314091931051 ], [ -95.318236967176588, 29.239833091802037 ], [ -95.317819967226924, 29.238779091494489 ], [ -95.317584967004834, 29.2385960912857 ], [ -95.317401966880993, 29.238596091254262 ], [ -95.317375967658776, 29.23850409173766 ], [ -95.316879967254408, 29.238000091440629 ], [ -95.316800967020598, 29.237656091338888 ], [ -95.316461966542917, 29.237037091428544 ], [ -95.31562596670102, 29.236304091041895 ], [ -95.315626966715698, 29.236006091234017 ], [ -95.315887966452735, 29.235754090735377 ], [ -95.316096966447773, 29.234792090396724 ], [ -95.315417966338643, 29.234540090993615 ], [ -95.315104966843094, 29.234631090341676 ], [ -95.314947966257478, 29.23490609098652 ], [ -95.314790966841343, 29.23552509102597 ], [ -95.314607966280619, 29.235639091174423 ], [ -95.314241966009476, 29.235639090521666 ], [ -95.313536966081571, 29.235387091202369 ], [ -95.313197966341434, 29.23506609082402 ], [ -95.313171965842614, 29.23490509119226 ], [ -95.312727966248005, 29.234585090639982 ], [ -95.312178965873741, 29.234768090634173 ], [ -95.311629965357312, 29.234745090421594 ], [ -95.311421965722886, 29.234515090680759 ], [ -95.311342965070395, 29.234080090448646 ], [ -95.311055965777371, 29.233874090657004 ], [ -95.31050796541065, 29.23382809077544 ], [ -95.30998496541909, 29.233919090862798 ], [ -95.309253965180389, 29.234263090629739 ], [ -95.308782965035533, 29.234308090436354 ], [ -95.308574964730553, 29.234056090783231 ], [ -95.308077964427696, 29.233735090276316 ], [ -95.30771296447503, 29.233323090999363 ], [ -95.307582964927121, 29.232910090602878 ], [ -95.307268964258753, 29.232681090821888 ], [ -95.306981964063297, 29.232245090456761 ], [ -95.305989963870999, 29.232039090231151 ], [ -95.305701963685635, 29.231856090445834 ], [ -95.305702964104654, 29.230824090371151 ], [ -95.305493963915396, 29.230710090535045 ], [ -95.305101963460928, 29.23071009022129 ], [ -95.304788963674838, 29.230412090091306 ], [ -95.304109963386765, 29.230297090202633 ], [ -95.303952963259491, 29.230136090310609 ], [ -95.303874963390385, 29.229884089922418 ], [ -95.303326962900499, 29.229426089741732 ], [ -95.302922963332961, 29.228648089800224 ], [ -95.302517963352926, 29.227868089875599 ], [ -95.301968962425065, 29.227845089395416 ], [ -95.301446962204025, 29.227455089934683 ], [ -95.301342962656193, 29.226973089372731 ], [ -95.300767962472975, 29.226652089865375 ], [ -95.300402962238678, 29.226904089744188 ], [ -95.300140962782308, 29.226904089821584 ], [ -95.299697961873164, 29.226537089683127 ], [ -95.29922796198052, 29.225781089019883 ], [ -95.299149962371089, 29.225437089401588 ], [ -95.29959396202581, 29.225254089299156 ], [ -95.299657962458184, 29.224864088852538 ], [ -95.299698962355833, 29.224613089004233 ], [ -95.299358961945771, 29.224384089417672 ], [ -95.299149961722463, 29.224384089212212 ], [ -95.299097962152629, 29.224475089020093 ], [ -95.298679961931356, 29.224612088801909 ], [ -95.298183961389611, 29.224589088806525 ], [ -95.297974961992082, 29.224452089056083 ], [ -95.297948961744979, 29.224085089220356 ], [ -95.298157961727142, 29.223604089324279 ], [ -95.298131961238042, 29.223031088660424 ], [ -95.298027961748019, 29.222848089049204 ], [ -95.29755796177615, 29.222664089169381 ], [ -95.29682696152274, 29.22216008832067 ], [ -95.295965960659871, 29.221426088120612 ], [ -95.295730961214375, 29.221060088419243 ], [ -95.295678961298989, 29.220304088118731 ], [ -95.295600960583982, 29.220120088287189 ], [ -95.295130960933861, 29.219914088492487 ], [ -95.29497396081598, 29.219799088138256 ], [ -95.294843960770237, 29.218837087939839 ], [ -95.294660961040904, 29.218722088348052 ], [ -95.294112959966839, 29.218928087718208 ], [ -95.293616960486091, 29.219043088084117 ], [ -95.293407960411329, 29.218951087853156 ], [ -95.293120959738289, 29.218630088475962 ], [ -95.29306896044173, 29.218378087732287 ], [ -95.293277960354018, 29.217966088136553 ], [ -95.29335595985215, 29.217507087800755 ], [ -95.293486960385707, 29.217301088204348 ], [ -95.29432295998653, 29.216958087947809 ], [ -95.294348960729238, 29.216614087417899 ], [ -95.293827959749819, 29.215766087412725 ], [ -95.293801960367958, 29.215239087744557 ], [ -95.294140960608445, 29.215171087024796 ], [ -95.294898960374766, 29.215606087541168 ], [ -95.295211960943618, 29.215630087726645 ], [ -95.295420960762257, 29.215492087307123 ], [ -95.295394960193804, 29.214988087385311 ], [ -95.295290960473238, 29.214873087115325 ], [ -95.295316960124154, 29.214782087286199 ], [ -95.295238960546158, 29.21471308694132 ], [ -95.29529096082014, 29.214392086957627 ], [ -95.295473960107941, 29.214209086790628 ], [ -95.296518961314831, 29.214233086884519 ], [ -95.296648961269028, 29.214141086884791 ], [ -95.296648961401488, 29.213820086777424 ], [ -95.296518960455799, 29.213522087036889 ], [ -95.295839960991259, 29.212949086595909 ], [ -95.295761960593822, 29.212399086276946 ], [ -95.29521396049411, 29.211826086201416 ], [ -95.295083960609816, 29.211620086432809 ], [ -95.295188960144557, 29.210749086532758 ], [ -95.295110959894984, 29.210589086459539 ], [ -95.293621959520507, 29.210267086689257 ], [ -95.293465959839793, 29.210107086432394 ], [ -95.293413960348104, 29.209259086557552 ], [ -95.293178959695837, 29.208984085788796 ], [ -95.293152960017977, 29.208732085667286 ], [ -95.293858959982515, 29.208320086003962 ], [ -95.293884959584474, 29.208068085974581 ], [ -95.293153959300767, 29.207770085703146 ], [ -95.292813959605368, 29.207518085809618 ], [ -95.292944960103696, 29.207220086048409 ], [ -95.29336295925448, 29.207060085648436 ], [ -95.293623959431812, 29.207106085532224 ], [ -95.293858959921451, 29.207426085755415 ], [ -95.29406796018641, 29.207450085759334 ], [ -95.294459960167458, 29.207037085370281 ], [ -95.295165960033799, 29.20651108575322 ], [ -95.296157960600496, 29.206419085873108 ], [ -95.296444960970717, 29.206328085326316 ], [ -95.296758960272101, 29.20607608575369 ], [ -95.296784960337391, 29.205732085516548 ], [ -95.296680960129891, 29.205435085117692 ], [ -95.296367960925139, 29.204953085378023 ], [ -95.296341960193871, 29.204518084745096 ], [ -95.296681960355201, 29.204151084985906 ], [ -95.297203960221253, 29.204106085238124 ], [ -95.297542960294081, 29.203923085005304 ], [ -95.297569960795002, 29.203625084788637 ], [ -95.29743896050293, 29.203442084632307 ], [ -95.297412960999267, 29.202892084286066 ], [ -95.2975179605465, 29.202777084931501 ], [ -95.297778961224893, 29.202686084301824 ], [ -95.298353960503562, 29.202961084937272 ], [ -95.298666960730586, 29.202961084851594 ], [ -95.298805961130583, 29.202839084482264 ], [ -95.298875960733923, 29.202778085026964 ], [ -95.298953961006859, 29.202434084342205 ], [ -95.298849960503247, 29.20215908458983 ], [ -95.298353960894744, 29.201724084070147 ], [ -95.298275960888205, 29.201518084382442 ], [ -95.298328960832592, 29.200257084555837 ], [ -95.298615960990531, 29.200143084133593 ], [ -95.2989499611638, 29.200219084470632 ], [ -95.299529961199681, 29.200350083858414 ], [ -95.299634961148328, 29.20028108420324 ], [ -95.299660961316334, 29.200006084020032 ], [ -95.29866896072572, 29.19918108377723 ], [ -95.298486960477263, 29.198791083476241 ], [ -95.298486961051907, 29.198241084134036 ], [ -95.298598961228848, 29.198086083933759 ], [ -95.298783961241455, 29.19777408361551 ], [ -95.298814960932276, 29.197715083923885 ], [ -95.298821960458739, 29.197597083383958 ], [ -95.29876396067732, 29.197445083194786 ], [ -95.298444960505506, 29.197116083273599 ], [ -95.298473960212959, 29.19689808331367 ], [ -95.298581960242359, 29.196778083035618 ], [ -95.299015960347518, 29.196630083416807 ], [ -95.298666960821151, 29.196386083622375 ], [ -95.298518960302232, 29.196290083433023 ], [ -95.29839196108226, 29.19620208286851 ], [ -95.298267960954121, 29.196104083220707 ], [ -95.298154960288144, 29.196000083110121 ], [ -95.297992960604887, 29.195866083439419 ], [ -95.297767960253708, 29.195637082810183 ], [ -95.297662960016268, 29.195483082740303 ], [ -95.297223960502606, 29.194787083368883 ], [ -95.296816959998736, 29.194120082561692 ], [ -95.295908960290319, 29.19260608273958 ], [ -95.295200959459251, 29.191450082132892 ], [ -95.295126959563333, 29.191329082681982 ], [ -95.294872958979752, 29.190977081997808 ], [ -95.294556959103048, 29.190649082232419 ], [ -95.293738959401338, 29.189973082579403 ], [ -95.293229959264849, 29.189596082509855 ], [ -95.292772959067108, 29.189220082219716 ], [ -95.292526958951711, 29.188997082369916 ], [ -95.292328958357416, 29.188811082310092 ], [ -95.292029958478992, 29.188462081831688 ], [ -95.291843958212866, 29.188205081416594 ], [ -95.291579958644107, 29.187781081883724 ], [ -95.291339958007256, 29.187393082096044 ], [ -95.290936958473182, 29.186719081828986 ], [ -95.288891957706213, 29.183373080845975 ], [ -95.288689957839793, 29.183041081260068 ], [ -95.286785956804465, 29.179890080627469 ], [ -95.286711956610617, 29.179774079989876 ], [ -95.284798955875232, 29.176636079290819 ], [ -95.283283955501076, 29.174156079263341 ], [ -95.281434955177048, 29.17112707863085 ], [ -95.28086195524223, 29.170169078255523 ], [ -95.2781899541218, 29.165764077657204 ], [ -95.277022953539387, 29.163862077291 ], [ -95.277315953466172, 29.163724077531004 ], [ -95.277753954387421, 29.163541077049743 ], [ -95.278361954525337, 29.163269076661958 ], [ -95.279780954946915, 29.16261107652663 ], [ -95.28043695498458, 29.16230407660133 ], [ -95.280821954658521, 29.162123076438064 ], [ -95.281207954496239, 29.161943076328647 ], [ -95.281371954815469, 29.161867076520146 ], [ -95.281957954772878, 29.161591076801972 ], [ -95.283468955233388, 29.160877076093001 ], [ -95.28676595643654, 29.159361075569969 ], [ -95.287815956666506, 29.158889075862806 ], [ -95.292035956966373, 29.156993075458658 ], [ -95.299148959182602, 29.15378607420222 ], [ -95.309579960982731, 29.149077073355002 ], [ -95.310014962058631, 29.148880073278509 ], [ -95.310361961693147, 29.148728073345229 ], [ -95.310677962219415, 29.148600072865769 ], [ -95.311030962038998, 29.148477073272126 ], [ -95.311118962166987, 29.148450072794446 ], [ -95.311428961879713, 29.148355072640005 ], [ -95.312210962366407, 29.148150073201101 ], [ -95.312758962624116, 29.148059072730572 ], [ -95.313524962617052, 29.147969072439128 ], [ -95.314981962529288, 29.147826073147641 ], [ -95.315210962557501, 29.147803072457599 ], [ -95.315278963172588, 29.147736072446953 ], [ -95.314928962994784, 29.147148072872653 ], [ -95.314333962838646, 29.146885072158252 ], [ -95.313617962038435, 29.146843072820296 ], [ -95.312763962028981, 29.147068072282515 ], [ -95.312465962302753, 29.147045072614041 ], [ -95.312107962167616, 29.147018072583275 ], [ -95.311803962448067, 29.146931073050911 ], [ -95.311559961655902, 29.146793072440616 ], [ -95.310950962124622, 29.146159072150642 ], [ -95.31040196111023, 29.145476072249547 ], [ -95.310050961887057, 29.14466807218172 ], [ -95.309990961111467, 29.143981071758958 ], [ -95.309747960863078, 29.143405072335359 ], [ -95.309484961140356, 29.143301071714465 ], [ -95.309094960872642, 29.143141071912751 ], [ -95.3089389615198, 29.143084071695611 ], [ -95.308435961410225, 29.142867071459253 ], [ -95.308282960580129, 29.142642072167359 ], [ -95.308328961128765, 29.142280072109116 ], [ -95.308694961117311, 29.141971071331504 ], [ -95.309155960564809, 29.141469071786698 ], [ -95.309439961577695, 29.141172071279758 ], [ -95.309728961145353, 29.14075207158896 ], [ -95.309768960800511, 29.139988070822749 ], [ -95.309396961433819, 29.139300071017225 ], [ -95.308740961120293, 29.13889207098034 ], [ -95.308084960851929, 29.138583070605275 ], [ -95.307687960834826, 29.138278070629443 ], [ -95.30733696090833, 29.137607071039238 ], [ -95.307184960133213, 29.136786070604039 ], [ -95.307336960686612, 29.136222070562564 ], [ -95.308133960652782, 29.135785070203749 ], [ -95.308861960863538, 29.135742070094821 ], [ -95.30984796094404, 29.135702070241116 ], [ -95.310500961157857, 29.135361070674382 ], [ -95.310854960728577, 29.134545070265414 ], [ -95.310602960702937, 29.133712070013317 ], [ -95.31020596069699, 29.133181070228272 ], [ -95.309656961108161, 29.132838069676303 ], [ -95.308851960396467, 29.132539070159801 ], [ -95.308238960101122, 29.132622069944212 ], [ -95.307355959757402, 29.13327306976689 ], [ -95.306862960053664, 29.133894069665498 ], [ -95.306543960159132, 29.134178070466564 ], [ -95.306279959863673, 29.134339070368743 ], [ -95.305963960347, 29.134425070056821 ], [ -95.305368960130622, 29.13429907018546 ], [ -95.305063959935111, 29.133769070436493 ], [ -95.305247959399551, 29.133099069514472 ], [ -95.305586959757875, 29.132548069680837 ], [ -95.30623496025224, 29.132094069788447 ], [ -95.306680960301435, 29.13167106954992 ], [ -95.306634960496339, 29.131171069269453 ], [ -95.306268960048897, 29.130771069531487 ], [ -95.305701959578926, 29.13073906987389 ], [ -95.304953959476194, 29.130836069351069 ], [ -95.304036959372766, 29.130914069276038 ], [ -95.303035958907785, 29.130713069835039 ], [ -95.302457958556232, 29.130425069818578 ], [ -95.302267959076616, 29.130220069131777 ], [ -95.301699958372978, 29.129564069224944 ], [ -95.30138595873207, 29.128783068794313 ], [ -95.301226958434114, 29.127922069020585 ], [ -95.300973958593829, 29.122634068012825 ], [ -95.301431957812213, 29.122044068141644 ], [ -95.302286958774644, 29.121605067591066 ], [ -95.302716959041362, 29.121482067397089 ], [ -95.303314958779538, 29.121425067577398 ], [ -95.303797958474689, 29.121391067930947 ], [ -95.304117958575134, 29.12129606724195 ], [ -95.304162958875864, 29.11943806750423 ], [ -95.304111959000608, 29.119274066946495 ], [ -95.304072958728554, 29.11914706709527 ], [ -95.303981958450763, 29.118647066918154 ], [ -95.304083958750809, 29.118421066980208 ], [ -95.304450959062791, 29.11834406658437 ], [ -95.305763959213067, 29.118926067316146 ], [ -95.306422959863838, 29.119390066797667 ], [ -95.306887959609909, 29.119455067497576 ], [ -95.307176959499174, 29.119390066989791 ], [ -95.307316959435695, 29.119298066748488 ], [ -95.307489960007786, 29.11904906700072 ], [ -95.30733695938784, 29.117725066269045 ], [ -95.30724595924984, 29.116714066730331 ], [ -95.307291959058048, 29.115910066278019 ], [ -95.307306959953593, 29.115192065866964 ], [ -95.306981959824554, 29.114705065893268 ], [ -95.30659295938338, 29.114019065673297 ], [ -95.305432958583779, 29.11281406554572 ], [ -95.304653958528377, 29.112374065290119 ], [ -95.30337495861356, 29.111886066055824 ], [ -95.302727958176618, 29.111481065824066 ], [ -95.302041957902205, 29.111305065596895 ], [ -95.300976957489269, 29.110953065937597 ], [ -95.300185957241311, 29.110986065603864 ], [ -95.299487957141977, 29.111301065340506 ], [ -95.299229957192509, 29.111450065493472 ], [ -95.298648956651178, 29.111698065396421 ], [ -95.298324957396375, 29.111776066188941 ], [ -95.297619957210685, 29.11183506618864 ], [ -95.29716995653861, 29.11179606580982 ], [ -95.296561956272782, 29.111660065980729 ], [ -95.296347956874058, 29.111336066099341 ], [ -95.296306956190492, 29.111055065888447 ], [ -95.296213956667728, 29.110416065563527 ], [ -95.296410956392265, 29.109443065779718 ], [ -95.296505956794519, 29.109360065409255 ], [ -95.296590956613841, 29.109105065208393 ], [ -95.29694095689959, 29.108668065314983 ], [ -95.297161956623995, 29.108322065524007 ], [ -95.297299957008946, 29.106818065208007 ], [ -95.297229956858985, 29.106686064949958 ], [ -95.297093956234804, 29.106250064870455 ], [ -95.297095956680678, 29.106214064866929 ], [ -95.297076956023744, 29.106087064434305 ], [ -95.296882956639962, 29.105470064496334 ], [ -95.296776956469117, 29.105114064204873 ], [ -95.296883956695922, 29.105025064390698 ], [ -95.297021956069941, 29.104938064295204 ], [ -95.297415956961075, 29.104324063891163 ], [ -95.297850956848819, 29.103716064152508 ], [ -95.298635956639515, 29.103055063893542 ], [ -95.299215957332777, 29.102666064035759 ], [ -95.2996549570545, 29.102458063618659 ], [ -95.299654956605082, 29.102006063660991 ], [ -95.299609957116601, 29.101606063904203 ], [ -95.299199956899457, 29.101246063651399 ], [ -95.298652956710839, 29.100934063061608 ], [ -95.29814995620994, 29.100620063463357 ], [ -95.297922956293036, 29.100162063684131 ], [ -95.298151956611676, 29.099825062954682 ], [ -95.298383957007886, 29.099331063325135 ], [ -95.299178956270737, 29.098622062906866 ], [ -95.299578956653193, 29.098378062571427 ], [ -95.29980495737189, 29.098318062966712 ], [ -95.299945956815151, 29.097715062483843 ], [ -95.300152956406222, 29.097096062629284 ], [ -95.300089956826838, 29.096585062818498 ], [ -95.300102957272813, 29.095801062661032 ], [ -95.299932956487112, 29.094962062199581 ], [ -95.299603956257371, 29.094480061860459 ], [ -95.298716956904983, 29.093584061959994 ], [ -95.297436955670307, 29.092999061510113 ], [ -95.297139956279125, 29.092958061799933 ], [ -95.296715955396365, 29.092795061956402 ], [ -95.295310954987357, 29.09302006210017 ], [ -95.291655954492811, 29.09476606279939 ], [ -95.29064095486433, 29.09527006292307 ], [ -95.289681953711977, 29.09577106278967 ], [ -95.289493953970393, 29.095811063130427 ], [ -95.289355954036182, 29.095879062345436 ], [ -95.287771953430649, 29.096248062882722 ], [ -95.286845953835041, 29.09624206328203 ], [ -95.286469953457441, 29.096271063273793 ], [ -95.285585952634023, 29.09600606301716 ], [ -95.284756953190865, 29.095630063122108 ], [ -95.284583953263407, 29.095552062929332 ], [ -95.283740952457748, 29.094558063013828 ], [ -95.283334952880679, 29.094196062898469 ], [ -95.283274952549192, 29.094110062911671 ], [ -95.283114952906701, 29.093882062325733 ], [ -95.28262495189027, 29.093180062585599 ], [ -95.282491952358953, 29.092041061735038 ], [ -95.282929952026606, 29.091159061934999 ], [ -95.284523952962587, 29.089652061371439 ], [ -95.284531952688141, 29.088641061558253 ], [ -95.284482952504604, 29.088593061668053 ], [ -95.28324995239403, 29.087368061205655 ], [ -95.282888951693181, 29.087619061088247 ], [ -95.281824952087717, 29.087920061532159 ], [ -95.28108695214901, 29.088239061530718 ], [ -95.279928951673469, 29.089242061902013 ], [ -95.279861950918487, 29.08929206212451 ], [ -95.279786951853708, 29.089337062068495 ], [ -95.279662951414835, 29.089398062136901 ], [ -95.279306950760699, 29.089655061546431 ], [ -95.278750951093656, 29.089798061825498 ], [ -95.278248950950186, 29.08981806149999 ], [ -95.277707951181213, 29.089735061891513 ], [ -95.277322950483722, 29.089551061447491 ], [ -95.277002950801887, 29.08932206168614 ], [ -95.276644950622241, 29.088957061590023 ], [ -95.276339949941715, 29.088478061931401 ], [ -95.276137950183269, 29.08800106123336 ], [ -95.276143950818422, 29.087275061705068 ], [ -95.276303950358894, 29.08675406152167 ], [ -95.276473950560487, 29.0863270612011 ], [ -95.276486949947582, 29.086295061404773 ], [ -95.276848950964819, 29.085833061513398 ], [ -95.277170950186246, 29.085630061069658 ], [ -95.277844950290103, 29.085301060505731 ], [ -95.278444951043511, 29.085061060750736 ], [ -95.279146950979481, 29.084886061119164 ], [ -95.280065951279383, 29.084892060545684 ], [ -95.280590951723795, 29.085011060866893 ], [ -95.28138895172404, 29.085427060789819 ], [ -95.2820549521212, 29.086022060948306 ], [ -95.282925951829256, 29.086554061072828 ], [ -95.283828952467502, 29.086866060931612 ], [ -95.284690952681729, 29.086872061486254 ], [ -95.28612095293839, 29.086379060985958 ], [ -95.286131952906757, 29.086376060984271 ], [ -95.287436953412339, 29.084993060792424 ], [ -95.287561953350107, 29.084566060819398 ], [ -95.287584953140183, 29.084489060231981 ], [ -95.287454953374862, 29.082844059983469 ], [ -95.286600952716654, 29.08195406001261 ], [ -95.285170952886418, 29.08118605973409 ], [ -95.284021952128299, 29.081051059940044 ], [ -95.283736951958332, 29.08079705981168 ], [ -95.281008951202026, 29.080652060081999 ], [ -95.279431951298307, 29.080262059596869 ], [ -95.278718950476787, 29.079625059442922 ], [ -95.278161950666615, 29.077599058978592 ], [ -95.277448950240199, 29.076962059300897 ], [ -95.275015949701185, 29.075934059131441 ], [ -95.274302948914922, 29.075297058803656 ], [ -95.273881949649976, 29.074156058365805 ], [ -95.272599948950699, 29.073010058535143 ], [ -95.269294948304662, 29.073114058841401 ], [ -95.26894594751171, 29.073243058470247 ], [ -95.268285947565076, 29.073486058948657 ], [ -95.267127947032662, 29.074490059238574 ], [ -95.266997947473072, 29.074780059313603 ], [ -95.266394947050216, 29.076129059453958 ], [ -95.265645947774658, 29.079664059742534 ], [ -95.265772947928951, 29.081561060989685 ], [ -95.266055947554406, 29.082069060878052 ], [ -95.266043947415127, 29.083459061077583 ], [ -95.265604947648384, 29.08434106126116 ], [ -95.265025946976479, 29.084843061192995 ], [ -95.264488946877222, 29.085075061722176 ], [ -95.263871947245818, 29.085341061039884 ], [ -95.259419945690297, 29.085184061273544 ], [ -95.259310945817575, 29.085230061493267 ], [ -95.25854894543879, 29.085560061319189 ], [ -95.257688945490841, 29.085931062076892 ], [ -95.25321094493745, 29.08868206246553 ], [ -95.251472944637001, 29.090187063095588 ], [ -95.251179944220326, 29.090817062932047 ], [ -95.250383944181692, 29.091507063143915 ], [ -95.247869943436413, 29.091426062944709 ], [ -95.246872942763574, 29.090534063014086 ], [ -95.246306942997222, 29.089519062755592 ], [ -95.246183942335747, 29.087242062776156 ], [ -95.248068942942339, 29.08535906202907 ], [ -95.248178943329989, 29.0853000616789 ], [ -95.248646943232814, 29.085046062103917 ], [ -95.249222942868116, 29.08473506177349 ], [ -95.249653943799728, 29.084738061774672 ], [ -95.250377943356213, 29.084110061708291 ], [ -95.251539943385538, 29.082728060781452 ], [ -95.25154994381883, 29.08159006088378 ], [ -95.250267943204008, 29.080443060393758 ], [ -95.248830943020153, 29.080433060811753 ], [ -95.24767694310647, 29.080931061189943 ], [ -95.245507942118934, 29.082559061552665 ], [ -95.245070941833859, 29.083188061428782 ], [ -95.245063942727143, 29.083947061467214 ], [ -95.244484942388667, 29.084449061525287 ], [ -95.243883942270628, 29.084812061802722 ], [ -95.243466941737296, 29.085065062148676 ], [ -95.243039942263536, 29.08532406161908 ], [ -95.241459941184843, 29.085312062127361 ], [ -95.240026940655369, 29.084923061834466 ], [ -95.239939941269455, 29.084845061756337 ], [ -95.239604941163904, 29.084546061926719 ], [ -95.238744940810747, 29.083776061985713 ], [ -95.238177940349317, 29.082887062078498 ], [ -95.238186940483899, 29.08187606106566 ], [ -95.238770940091598, 29.080868061583139 ], [ -95.239204940365696, 29.080492061492027 ], [ -95.239630940931576, 29.080420060846418 ], [ -95.239924940473344, 29.080371060784216 ], [ -95.241517941152196, 29.078991060898833 ], [ -95.241535941135282, 29.076968060246994 ], [ -95.241250940565791, 29.076713060299642 ], [ -95.240685940982289, 29.0756980605567 ], [ -95.238405940194838, 29.073659059551268 ], [ -95.231797937913569, 29.073612059903692 ], [ -95.230356937826997, 29.074108060134087 ], [ -95.227193937371695, 29.074464059890026 ], [ -95.225752937218601, 29.074960060877171 ], [ -95.223848936282934, 29.076608061181393 ], [ -95.223145936452255, 29.077217060799633 ], [ -95.222270936442285, 29.078601061542912 ], [ -95.222109935735233, 29.080497061654622 ], [ -95.222250936429319, 29.080751061371299 ], [ -95.223532937026746, 29.081898062288786 ], [ -95.224105936511805, 29.082155062425421 ], [ -95.226689937281989, 29.082300061911376 ], [ -95.227828937585826, 29.083446061748621 ], [ -95.227669937690095, 29.085088062426038 ], [ -95.227601937471235, 29.085461062660478 ], [ -95.227571937636867, 29.085633062378157 ], [ -95.225112937482393, 29.086666063106062 ], [ -95.224036937436665, 29.087117063132087 ], [ -95.223812936793436, 29.087211062622995 ], [ -95.22078493664435, 29.089274063909482 ], [ -95.22061393673107, 29.08942506337544 ], [ -95.218906935930733, 29.090933064385123 ], [ -95.218664935429189, 29.091147064071336 ], [ -95.218150935252396, 29.091622064242102 ], [ -95.218100935567634, 29.09164306400854 ], [ -95.217505935213921, 29.091902064022172 ], [ -95.217444935570526, 29.091920064190369 ], [ -95.217089934944369, 29.09206906416949 ], [ -95.214856935113446, 29.093396064693717 ], [ -95.214406935251546, 29.093533064480532 ], [ -95.214323934314876, 29.093581064520034 ], [ -95.21400393420538, 29.093656064432963 ], [ -95.212863934518111, 29.094003065210174 ], [ -95.211993934148921, 29.094101064572428 ], [ -95.211123933940442, 29.09419906462103 ], [ -95.210384933798466, 29.094282065297577 ], [ -95.209635933798225, 29.094441064844855 ], [ -95.209098933014374, 29.094671065496442 ], [ -95.209038933937464, 29.094696065528659 ], [ -95.208960933542713, 29.094784064838272 ], [ -95.208930933755454, 29.094788064835345 ], [ -95.208484933784987, 29.094934065166541 ], [ -95.208285933515469, 29.095137065609428 ], [ -95.206971932817737, 29.096614065638448 ], [ -95.206419932422534, 29.097548065964045 ], [ -95.205511932793812, 29.09868906586513 ], [ -95.204433932047678, 29.09915606608849 ], [ -95.203973931851081, 29.099203066392477 ], [ -95.203062932464888, 29.099892065956251 ], [ -95.202732931913005, 29.10007806677708 ], [ -95.202365931584424, 29.100286066416846 ], [ -95.201994932168958, 29.100073066101427 ], [ -95.201913931836771, 29.100397066443207 ], [ -95.201642931617585, 29.101475066715999 ], [ -95.200917932132739, 29.104366067232768 ], [ -95.199591931486111, 29.107136068352812 ], [ -95.198452931796368, 29.108868068108738 ], [ -95.196304930968068, 29.111086068697077 ], [ -95.19463893064659, 29.11268006895472 ], [ -95.179513926894046, 29.126746073118824 ], [ -95.168780924569262, 29.136906075128159 ], [ -95.158961922572132, 29.145638077013619 ], [ -95.158385922739342, 29.14576007723749 ], [ -95.158013922948399, 29.146147077633319 ], [ -95.157431922145463, 29.146656077802707 ], [ -95.135119917650897, 29.159961080746665 ], [ -95.125212915058427, 29.165931082837918 ], [ -95.114285912904364, 29.172517083969108 ], [ -95.113817911935882, 29.172799084078292 ], [ -95.112917912366981, 29.173127084592217 ], [ -95.109544910826443, 29.173772084969379 ], [ -95.106218910285293, 29.17431708532682 ], [ -95.102342909275848, 29.174981085187429 ], [ -95.098359908594787, 29.175736085842715 ], [ -95.096589908263553, 29.176572085522043 ], [ -95.094728907435666, 29.177357085799564 ], [ -95.092469907402631, 29.178613086463979 ], [ -95.087922906243094, 29.181668086670143 ], [ -95.084549905065458, 29.18410608803033 ], [ -95.0812689040457, 29.18659708814064 ], [ -95.078400903427635, 29.188565089004843 ], [ -95.07568490351052, 29.190502089015251 ], [ -95.07266290304382, 29.192718090128903 ], [ -95.07159490208214, 29.193428090198459 ], [ -95.065231901072735, 29.196445091216543 ], [ -95.057391898803701, 29.200655091787674 ], [ -95.057151899339999, 29.200885091959545 ], [ -95.05717889936524, 29.200927092167706 ], [ -95.057379898827378, 29.201217092286896 ], [ -95.057604899256745, 29.201583092068422 ], [ -95.058585899826824, 29.203053092319067 ], [ -95.061678900153325, 29.207694093461516 ], [ -95.065179901777157, 29.21294709471826 ], [ -95.06624190133806, 29.214528094962738 ], [ -95.066779901626916, 29.215347094845214 ], [ -95.067369902016011, 29.216232094883644 ], [ -95.068150902865526, 29.217404095176914 ], [ -95.071858903270339, 29.222964095932124 ], [ -95.075348904265496, 29.228812097245029 ], [ -95.075604904656245, 29.22922109734796 ], [ -95.076610905125037, 29.230900097755313 ], [ -95.076896905473191, 29.231338097757313 ], [ -95.079725906140794, 29.235670098523734 ], [ -95.082436907271642, 29.239820099135219 ], [ -95.08246890702776, 29.239869099187288 ], [ -95.082834907634194, 29.240430099216635 ], [ -95.08341490694815, 29.241319099447612 ], [ -95.084110908009592, 29.242405099704879 ], [ -95.084980907990328, 29.243784100186303 ], [ -95.085112908284103, 29.243966100166858 ], [ -95.085209908037044, 29.244109099921801 ], [ -95.085306908026013, 29.244252100505527 ], [ -95.085343908043285, 29.244305099888635 ], [ -95.085379908402288, 29.244359100033481 ], [ -95.086839908890113, 29.246582100539452 ], [ -95.087947909278569, 29.248269101143663 ], [ -95.088094908922884, 29.248493100605284 ], [ -95.088277908748736, 29.248750101099986 ], [ -95.088408909169743, 29.248932101412102 ], [ -95.088572908736808, 29.249151100861599 ], [ -95.089206908769256, 29.250119101196834 ], [ -95.090056909424334, 29.251433101289965 ], [ -95.090635910106002, 29.252272101396166 ], [ -95.090786910173833, 29.25250610162978 ], [ -95.090918909284127, 29.252711101786332 ], [ -95.092888910557051, 29.25560710201243 ], [ -95.092964910201232, 29.255723101899974 ], [ -95.093039910313038, 29.255839102238372 ], [ -95.093086910823729, 29.255911102436112 ], [ -95.093133910371975, 29.255983102586494 ], [ -95.093173910321099, 29.256043102149381 ], [ -95.093217910980428, 29.256111102430168 ], [ -95.093471910258401, 29.256502101967115 ], [ -95.097034911333537, 29.261991103372488 ], [ -95.097516911764046, 29.262724103249347 ], [ -95.097917912119982, 29.263334103941368 ], [ -95.098006912152158, 29.263465104060749 ], [ -95.098133912351656, 29.263652103500782 ], [ -95.098445912055354, 29.264122103857794 ], [ -95.098547912256933, 29.264276104279698 ], [ -95.098578911907154, 29.264323104248124 ], [ -95.098664912229069, 29.264453104230807 ], [ -95.099217912718203, 29.265287104352549 ], [ -95.099236912771275, 29.265315104314951 ], [ -95.099328912771938, 29.26545410445107 ], [ -95.099384912352974, 29.265538103892215 ], [ -95.099516912927399, 29.265738104334481 ], [ -95.103362914098497, 29.2714161055106 ], [ -95.103802914390585, 29.272071105454689 ], [ -95.104022914112022, 29.272399104951429 ], [ -95.104148913690864, 29.272587105007425 ], [ -95.106287915118259, 29.275774105727827 ], [ -95.107749914756525, 29.277953106387475 ], [ -95.109456915218246, 29.280496106614031 ], [ -95.113796917558702, 29.286961107824737 ], [ -95.114258916841806, 29.287649108560647 ], [ -95.114268917560338, 29.287664107776145 ], [ -95.1171079179298, 29.291894108604009 ], [ -95.11975591938355, 29.295845109322354 ], [ -95.119961919372088, 29.296115109450586 ], [ -95.12816392119791, 29.308422112398205 ], [ -95.131861923121562, 29.314017112997757 ], [ -95.138816924727536, 29.324409114903553 ], [ -95.140796925980368, 29.327367115902685 ], [ -95.144471927072757, 29.332858116841695 ], [ -95.145046927478958, 29.333717116643438 ], [ -95.146815927498238, 29.336515117438648 ], [ -95.148482928360423, 29.338941117594743 ], [ -95.149459928440834, 29.340364117874138 ], [ -95.149480928020509, 29.340394118244269 ], [ -95.150742929106443, 29.342232118681739 ], [ -95.152700929111234, 29.345080118384672 ], [ -95.159463931583133, 29.354925120420752 ], [ -95.165562933855426, 29.36383512245386 ], [ -95.169284935235964, 29.369992123057884 ], [ -95.169299935349088, 29.370013123732353 ], [ -95.169330935223655, 29.370059123349819 ], [ -95.169367935233453, 29.370120123551455 ], [ -95.16940193496572, 29.370171123152968 ], [ -95.169425934832205, 29.370206123527819 ], [ -95.172967936435157, 29.375524124022984 ], [ -95.175601937089652, 29.379630124955728 ], [ -95.17771593772467, 29.382773125460137 ], [ -95.177881938090096, 29.383015125462034 ], [ -95.183465939478054, 29.391166127222149 ], [ -95.18381993922236, 29.390816127370794 ], [ -95.184261939329829, 29.390377127393148 ], [ -95.185644939370874, 29.38893112722311 ], [ -95.185694939894532, 29.388522126481824 ], [ -95.185688940019801, 29.387929126558959 ], [ -95.185581939216689, 29.385610126101117 ], [ -95.185657939203764, 29.38353612609896 ], [ -95.185704939319194, 29.382338125739029 ], [ -95.185761939767147, 29.382100125759941 ], [ -95.185785939924969, 29.382025125437579 ], [ -95.185978939893147, 29.381826125303203 ], [ -95.186179939926703, 29.381739124907313 ], [ -95.186400940056259, 29.381537125260117 ], [ -95.187534939997789, 29.380769125231261 ], [ -95.18925993990311, 29.37952812459951 ], [ -95.188015939725645, 29.378621124243029 ], [ -95.18805594032051, 29.378447124886115 ], [ -95.19228794096793, 29.374270123948829 ], [ -95.192375941007725, 29.37418312390481 ], [ -95.192558941209157, 29.373995123395883 ], [ -95.194856941373232, 29.371746123381573 ], [ -95.194895941174565, 29.37170812288371 ], [ -95.196249941798158, 29.370348122516244 ], [ -95.198407941874876, 29.368244122031175 ], [ -95.198557941818606, 29.368106121626212 ], [ -95.198645942119811, 29.368035122272826 ], [ -95.198772942708956, 29.367965121682818 ], [ -95.199189942935519, 29.367798122134012 ], [ -95.199501942280492, 29.367687122183735 ], [ -95.199715942976937, 29.367593122043306 ], [ -95.199944942372127, 29.367431121930323 ], [ -95.201895942593822, 29.36552512148543 ], [ -95.205143943228435, 29.362302120711202 ], [ -95.205255943770624, 29.362242120288773 ], [ -95.20641594384341, 29.361038120730235 ], [ -95.206729944542673, 29.360713120048999 ], [ -95.210411945318171, 29.357108119804682 ], [ -95.211169944777481, 29.357700119227406 ], [ -95.212804945256437, 29.358966119270846 ], [ -95.214434946499509, 29.360206120222493 ], [ -95.219991947319826, 29.354659118538624 ], [ -95.221622947173088, 29.353031118317968 ], [ -95.222638948006065, 29.352024117627071 ], [ -95.226418948315214, 29.348278116980715 ], [ -95.22743894901636, 29.347246116408812 ], [ -95.228066949244607, 29.346611116520457 ], [ -95.228331949216098, 29.346297116393512 ], [ -95.228544948661295, 29.345933116095512 ], [ -95.228875949056729, 29.345334116815188 ], [ -95.229126949564119, 29.344940116749413 ], [ -95.22973194937444, 29.344309116058788 ], [ -95.232048949877694, 29.342002115486299 ], [ -95.233821949959477, 29.340283115218512 ], [ -95.234999950848547, 29.339054114453425 ], [ -95.235526950990618, 29.338526114362377 ], [ -95.235698950594667, 29.338386114772597 ], [ -95.236012950968259, 29.338155114868595 ], [ -95.236181950175464, 29.338042114387033 ], [ -95.236296950902187, 29.337965114636681 ], [ -95.236632951135277, 29.33776611457866 ], [ -95.23688595084613, 29.337629114945713 ], [ -95.237234950782153, 29.337411114503858 ], [ -95.237460950834986, 29.33724711487346 ], [ -95.237930950870862, 29.33677411449348 ], [ -95.239948951191934, 29.33474411349237 ], [ -95.240235951367708, 29.334455114123926 ], [ -95.240445951254557, 29.334255113622675 ], [ -95.242385952275754, 29.332416112861335 ], [ -95.24617195252182, 29.328559112138098 ], [ -95.246829953164692, 29.3278931120824 ], [ -95.247186953265768, 29.327531111738118 ], [ -95.248784952853171, 29.325935112076813 ], [ -95.249256952996703, 29.325462111227885 ], [ -95.250942953968973, 29.323780111313383 ], [ -95.252481954324395, 29.322203110689145 ], [ -95.253026954295379, 29.321334110591259 ], [ -95.253192954243801, 29.32106411042291 ], [ -95.253435953992593, 29.32067111031494 ], [ -95.253585954886574, 29.320457110263256 ], [ -95.253617954576697, 29.320412110701337 ], [ -95.253663954850097, 29.320347110517773 ], [ -95.254320954420649, 29.319681110657832 ], [ -95.25491495415109, 29.319087109735293 ], [ -95.255065954630027, 29.31893811010768 ], [ -95.252921953941538, 29.317294109353057 ], [ -95.252140954228295, 29.316685109742011 ], [ -95.252302953401454, 29.316519109566411 ], [ -95.252634953529892, 29.316182109952518 ], [ -95.252779953765014, 29.316061109256147 ], [ -95.253183954080995, 29.315627109397699 ], [ -95.25338495429294, 29.31542310942217 ], [ -95.254341954254926, 29.3144551090226 ], [ -95.25465495412675, 29.314137109110707 ], [ -95.25482695427246, 29.313965108901058 ], [ -95.255251954135474, 29.313535108819476 ], [ -95.25605495449571, 29.31276610848305 ], [ -95.256157954173887, 29.312668109147278 ], [ -95.256305954831191, 29.312526109117449 ], [ -95.256446955031151, 29.312392108809867 ], [ -95.256688954859811, 29.312180108663632 ], [ -95.25784095490576, 29.311024107953433 ], [ -95.257976955582478, 29.310887108561904 ], [ -95.258405955541406, 29.310457108271898 ], [ -95.258590955263458, 29.310270108213622 ], [ -95.258599954775903, 29.310261108047751 ], [ -95.259890955021007, 29.30896910807634 ], [ -95.260474955750396, 29.30838210816172 ], [ -95.261416955720421, 29.307436107613455 ], [ -95.262569955884359, 29.306280107151856 ], [ -95.262675956470119, 29.306199107019836 ], [ -95.262761956422437, 29.306157107104738 ], [ -95.263195956332453, 29.30597010694083 ], [ -95.263275955902472, 29.305936106946955 ], [ -95.263363956278468, 29.305885106921334 ], [ -95.263468956302901, 29.305795107241025 ], [ -95.264232956302095, 29.305065107092435 ], [ -95.265123956859867, 29.304191107052002 ], [ -95.265438956346372, 29.303849106319376 ], [ -95.265512956780782, 29.303758106258048 ], [ -95.265760956380447, 29.303381106876103 ], [ -95.266145956420431, 29.302921106718181 ], [ -95.266234957224455, 29.30284010648171 ], [ -95.266444956643269, 29.302685106098426 ], [ -95.266561957390351, 29.302599106212543 ], [ -95.266720957317716, 29.302479105910425 ], [ -95.266849956683174, 29.302382106331383 ], [ -95.266893957033759, 29.302424106400675 ], [ -95.266898957438968, 29.302435105874508 ], [ -95.266902957082792, 29.302445105949182 ], [ -95.266907956956743, 29.302460106521647 ], [ -95.266909956700417, 29.302472106248985 ], [ -95.266911956973246, 29.302488106202258 ], [ -95.266911957091835, 29.302512106569516 ], [ -95.266910957089877, 29.302528106509243 ], [ -95.266909956868105, 29.30255010630799 ], [ -95.2669089571462, 29.302568105909568 ], [ -95.266906957387747, 29.302602106352506 ], [ -95.266905957213297, 29.30261310670042 ], [ -95.266900957118139, 29.30263110628362 ], [ -95.266889957127319, 29.302658106558109 ], [ -95.266868957002728, 29.30269110667167 ], [ -95.266852956672196, 29.302715106087351 ], [ -95.266837956507189, 29.302736106478463 ], [ -95.266826956690963, 29.302749106465679 ], [ -95.266780956641256, 29.302816106041281 ], [ -95.266752956583673, 29.302855105985071 ], [ -95.266721957491299, 29.302896106497677 ], [ -95.266665957097715, 29.302961106339751 ], [ -95.266622957329602, 29.303006106076111 ], [ -95.266588957176879, 29.303038106720127 ], [ -95.266546957166284, 29.303073106354105 ], [ -95.266490956756201, 29.303108106799218 ], [ -95.266442957371339, 29.303137106524353 ], [ -95.266414956813961, 29.303158106790899 ], [ -95.266374957287439, 29.303192106119102 ], [ -95.266323956739996, 29.303239106253017 ], [ -95.266258957164524, 29.303301106871071 ], [ -95.266177956654602, 29.303393106647857 ], [ -95.266102957007291, 29.303476106650155 ], [ -95.266056957197662, 29.303527106958089 ], [ -95.266014957154297, 29.303577106096675 ], [ -95.265969957176054, 29.303639106736 ], [ -95.265941957337901, 29.303684106392069 ], [ -95.265912956643987, 29.303744106577128 ], [ -95.265892957307287, 29.303795106175869 ], [ -95.265880956890484, 29.303835106362754 ], [ -95.265875956591159, 29.303866106818543 ], [ -95.265873956793385, 29.303915106913475 ], [ -95.265874957311652, 29.303964107044873 ], [ -95.265872957279555, 29.304040106528344 ], [ -95.265870956463004, 29.304110107026226 ], [ -95.265870956651028, 29.30412810662839 ], [ -95.265870956801336, 29.304175107084497 ], [ -95.265871957281263, 29.304240106252593 ], [ -95.265874956534475, 29.304327107017286 ], [ -95.265877957046612, 29.304403106558162 ], [ -95.265882956567651, 29.304432106541434 ], [ -95.2658849567879, 29.304461106516797 ], [ -95.265891957164428, 29.304491106819977 ], [ -95.265905957156946, 29.304524107106861 ], [ -95.26593395642162, 29.304563106456229 ], [ -95.265952957182265, 29.304585106447448 ], [ -95.265978956908754, 29.304609107022131 ], [ -95.266000957038642, 29.304623106591329 ], [ -95.266019957075628, 29.304631107167925 ], [ -95.266048956711387, 29.30464310711686 ], [ -95.266074957309129, 29.304657106717546 ], [ -95.266100957117189, 29.304673106847567 ], [ -95.266139956711555, 29.304696107202368 ], [ -95.266172956467869, 29.304709106530659 ], [ -95.26620795668704, 29.30471610691491 ], [ -95.266260956916369, 29.304715106981533 ], [ -95.266298956601673, 29.304711106991942 ], [ -95.266358957364972, 29.30470010700099 ], [ -95.266434956945616, 29.304670107158501 ], [ -95.266509956617725, 29.304618106566405 ], [ -95.266569957352246, 29.304580107093432 ], [ -95.266636957034123, 29.304536106822262 ], [ -95.266669956538195, 29.304512106558466 ], [ -95.266715956742289, 29.304471107030412 ], [ -95.26678395662762, 29.304421106833157 ], [ -95.26681195678411, 29.304399107098664 ], [ -95.266844957208676, 29.30436710639902 ], [ -95.266895957600255, 29.304305106400555 ], [ -95.266948956901473, 29.304249106219309 ], [ -95.266994957265595, 29.304207106326245 ], [ -95.267047957035288, 29.304163106751119 ], [ -95.267102957007367, 29.304119106258941 ], [ -95.267154956706079, 29.304091106578387 ], [ -95.267226957672932, 29.304068106483061 ], [ -95.267278957072264, 29.304057106962073 ], [ -95.267335957669786, 29.304047106821653 ], [ -95.267477957421249, 29.304036106148967 ], [ -95.267588957651441, 29.304034106151043 ], [ -95.267746957065711, 29.304031106447205 ], [ -95.267925957680688, 29.304028106463655 ], [ -95.268002957547651, 29.304031106801755 ], [ -95.268057957812715, 29.304035106639439 ], [ -95.26811895693605, 29.304041106933106 ], [ -95.268191957203612, 29.304053106995848 ], [ -95.268251957433492, 29.304067106782007 ], [ -95.268315957147991, 29.304078106559285 ], [ -95.268403957668312, 29.304091106653097 ], [ -95.268483957536247, 29.304112106266881 ], [ -95.268586957144421, 29.304149106404932 ], [ -95.2686429572164, 29.304171106468477 ], [ -95.268703957423298, 29.304197106659942 ], [ -95.268749957151101, 29.304220106161793 ], [ -95.268797957259892, 29.304251106951341 ], [ -95.268820957488828, 29.30426310638504 ], [ -95.268854957860583, 29.304275106577414 ], [ -95.268888957315042, 29.304281106874694 ], [ -95.268919957187876, 29.304285106660441 ], [ -95.268977957582138, 29.304290106354294 ], [ -95.269042957732168, 29.304292106886983 ], [ -95.269138957567634, 29.304290106701796 ], [ -95.26923695761765, 29.30428810642163 ], [ -95.269323958154288, 29.30428710654439 ], [ -95.269378957621498, 29.304285106852866 ], [ -95.269419957283844, 29.304284106762786 ], [ -95.26945595772402, 29.304288106352313 ], [ -95.269474957672443, 29.304291106846922 ], [ -95.269486957255722, 29.304293106273583 ], [ -95.269504958125708, 29.30429610680758 ], [ -95.269522958000593, 29.304299106408443 ], [ -95.269541957621016, 29.304303106258903 ], [ -95.269564957979995, 29.304309106608567 ], [ -95.269582958159006, 29.304314106764725 ], [ -95.269608957791519, 29.30432310696013 ], [ -95.269624958089778, 29.304330106803572 ], [ -95.269637958061423, 29.304337106692973 ], [ -95.269647957705672, 29.304344106629252 ], [ -95.269661957397531, 29.304355106696288 ], [ -95.26967095796428, 29.304362106675708 ], [ -95.269680957613275, 29.304369106609446 ], [ -95.269693958259182, 29.304377106789421 ], [ -95.269709958208509, 29.304385106889864 ], [ -95.269726957967634, 29.304391106408492 ], [ -95.269743957392706, 29.304395106263403 ], [ -95.269761957925382, 29.304399107029965 ], [ -95.269786958235315, 29.304403106744079 ], [ -95.269810958074615, 29.304408106738094 ], [ -95.269828957616141, 29.304412106564929 ], [ -95.269840958216577, 29.304414106890338 ], [ -95.269859957870736, 29.304418106695522 ], [ -95.269877957777467, 29.304421106248462 ], [ -95.269894957880922, 29.30442610638017 ], [ -95.269908957654422, 29.304431106563719 ], [ -95.269930957888945, 29.30444610665441 ], [ -95.269958957786528, 29.304458106673881 ], [ -95.269992957995825, 29.304471106843252 ], [ -95.270021958378649, 29.304482106563576 ], [ -95.270046958323178, 29.304493106353704 ], [ -95.270061958206909, 29.304501106430877 ], [ -95.270075957964622, 29.30451210645429 ], [ -95.270086957733753, 29.304525106195701 ], [ -95.270097958175228, 29.304539106232198 ], [ -95.270108957933317, 29.304549106944862 ], [ -95.270139957514928, 29.304566106429075 ], [ -95.27018095752392, 29.304582106312022 ], [ -95.270203958327869, 29.304590106212757 ], [ -95.27024495801065, 29.304604106414562 ], [ -95.27026795779561, 29.304612106275417 ], [ -95.2702909582556, 29.304621106428304 ], [ -95.270318958243109, 29.304633106371966 ], [ -95.270348957748553, 29.304647106801671 ], [ -95.270466958411191, 29.304710106904327 ], [ -95.270499957621453, 29.304726106866045 ], [ -95.270533957980845, 29.304745106754286 ], [ -95.270563957897636, 29.304764106725433 ], [ -95.270584958185594, 29.304779106730535 ], [ -95.270591957948213, 29.304788106326043 ], [ -95.270618957862439, 29.30481810670307 ], [ -95.270644957711113, 29.304845106267518 ], [ -95.270681957776958, 29.304881106224538 ], [ -95.270699958436296, 29.304897106578551 ], [ -95.270943958147313, 29.305082106741324 ], [ -95.270956958639914, 29.305094106993089 ], [ -95.270993958246478, 29.305135106423332 ], [ -95.271009958423718, 29.305155106982777 ], [ -95.271022958276021, 29.305172106788969 ], [ -95.271028957986118, 29.30518110638743 ], [ -95.271041957823201, 29.30520110702199 ], [ -95.271054958048282, 29.305220106486207 ], [ -95.271068958713656, 29.305238106557127 ], [ -95.271077958437331, 29.305248106340393 ], [ -95.27109595784431, 29.305265106878551 ], [ -95.271117957752082, 29.305279106475808 ], [ -95.271140958101199, 29.305292106676923 ], [ -95.271155958536312, 29.305299106363048 ], [ -95.271181958539245, 29.305311107080922 ], [ -95.271200958443657, 29.30532110655145 ], [ -95.271221958225567, 29.305335107060966 ], [ -95.271233957982744, 29.305346107017265 ], [ -95.271240958173536, 29.305357107141109 ], [ -95.27124595852608, 29.305376106838526 ], [ -95.271246958035334, 29.305393106986681 ], [ -95.271245958001174, 29.305408106656415 ], [ -95.271244958350565, 29.305434106674266 ], [ -95.271246958713036, 29.305461106875168 ], [ -95.271253958023209, 29.305496106395932 ], [ -95.271256958458011, 29.30551410678342 ], [ -95.271262958667535, 29.305552107190515 ], [ -95.271264958668681, 29.30557110697109 ], [ -95.271266958652816, 29.305587106823264 ], [ -95.271269958759561, 29.305603106647261 ], [ -95.271270958623006, 29.305619106527534 ], [ -95.271271958174594, 29.305642106531351 ], [ -95.271270958474659, 29.305659106763798 ], [ -95.271266958754367, 29.305675106813641 ], [ -95.271259958333772, 29.305695107142935 ], [ -95.271244958021896, 29.305721106679446 ], [ -95.27122695799622, 29.30574510666538 ], [ -95.271201958157647, 29.305775106727882 ], [ -95.271182958653355, 29.305797107103093 ], [ -95.27116295833693, 29.305818107207052 ], [ -95.271145958040307, 29.305834106735077 ], [ -95.271108958733038, 29.305867107092013 ], [ -95.271085958033865, 29.30588510643506 ], [ -95.27107195803184, 29.305895106918655 ], [ -95.27105995794804, 29.305903106784626 ], [ -95.271047957862336, 29.305911106649518 ], [ -95.271024958478392, 29.305925106717396 ], [ -95.271003958299616, 29.305936106772023 ], [ -95.270984958367023, 29.30594710677126 ], [ -95.270972958588402, 29.305954107264146 ], [ -95.27090995868511, 29.305976107074876 ], [ -95.270855958169861, 29.305991106449625 ], [ -95.270813957731036, 29.306004106717847 ], [ -95.270764958137264, 29.306018106566547 ], [ -95.270706958071443, 29.306036106837098 ], [ -95.270642957934257, 29.306058106545517 ], [ -95.270612958606478, 29.306069106806945 ], [ -95.270588957974113, 29.306080106865796 ], [ -95.270563957883965, 29.306092107238985 ], [ -95.270536957885781, 29.306106107313898 ], [ -95.270483957989228, 29.30613710735302 ], [ -95.270428958175316, 29.306161107291629 ], [ -95.270394958317112, 29.306172106689523 ], [ -95.270355957780623, 29.306183107087328 ], [ -95.270290958084701, 29.306188107375462 ], [ -95.27024495806829, 29.306195106818461 ], [ -95.270216957552165, 29.306201107331912 ], [ -95.27018695849533, 29.306211107230315 ], [ -95.270152957847174, 29.306230106956537 ], [ -95.270127958308109, 29.306249107399609 ], [ -95.270086957682224, 29.306283106914798 ], [ -95.270049958249729, 29.306312106781004 ], [ -95.2700319575723, 29.306322107230965 ], [ -95.270018958257268, 29.306330107050513 ], [ -95.269986958216563, 29.30633910664562 ], [ -95.269942958295331, 29.30635210670491 ], [ -95.26991195797639, 29.306362107432648 ], [ -95.269852958441959, 29.306383107305841 ], [ -95.269790957802044, 29.306406106836342 ], [ -95.269770958214608, 29.306415107046931 ], [ -95.26975595757844, 29.306423106845866 ], [ -95.26973895837483, 29.306432107001093 ], [ -95.269722957906382, 29.306442107375766 ], [ -95.269701957425895, 29.306459107080443 ], [ -95.26967195800809, 29.306490107259936 ], [ -95.269637957988593, 29.306527107352128 ], [ -95.269611957727093, 29.306556106862342 ], [ -95.269575958001752, 29.306600107121298 ], [ -95.269524957690706, 29.30666910734487 ], [ -95.269497957756215, 29.306711106854372 ], [ -95.269480958138814, 29.306747107228325 ], [ -95.269464957944606, 29.306785107217344 ], [ -95.26945495758342, 29.30681710723259 ], [ -95.269448957422171, 29.30684710752805 ], [ -95.269447957632039, 29.306875107187924 ], [ -95.269450957719272, 29.306899107467945 ], [ -95.269452957446219, 29.306915107344356 ], [ -95.269469957876638, 29.306981107280023 ], [ -95.269486958236655, 29.307027107084334 ], [ -95.26949995823648, 29.307058107307636 ], [ -95.269512957613813, 29.307085107306204 ], [ -95.269525958060228, 29.307109107404521 ], [ -95.26954495800581, 29.307131106818847 ], [ -95.269572958131647, 29.307153106964474 ], [ -95.269589958277635, 29.307162107327652 ], [ -95.269609957873044, 29.307168106783244 ], [ -95.2696269574203, 29.307170106990782 ], [ -95.269645957937612, 29.307170107532233 ], [ -95.269686958114221, 29.307165107137276 ], [ -95.269708957710719, 29.307163107029385 ], [ -95.269742957587525, 29.307159107028102 ], [ -95.269784958221749, 29.307153107221268 ], [ -95.269830957703334, 29.307146107007174 ], [ -95.26985295832192, 29.307144106904353 ], [ -95.269898957739741, 29.307140107496295 ], [ -95.269941957783914, 29.307139107181658 ], [ -95.269996958081308, 29.307139106868163 ], [ -95.270061958326821, 29.30714010748099 ], [ -95.270142958022277, 29.307143107321753 ], [ -95.270185958051457, 29.307145106856115 ], [ -95.270259957835833, 29.307145106867228 ], [ -95.270345957887656, 29.307143106893282 ], [ -95.270432957716991, 29.307142107108874 ], [ -95.270518957762931, 29.307140107023422 ], [ -95.270601958069122, 29.307139107247806 ], [ -95.270679958042692, 29.307137107272524 ], [ -95.270740958452024, 29.307136107115788 ], [ -95.270771958548295, 29.307136107148182 ], [ -95.270817957931271, 29.307135107350955 ], [ -95.270839958176069, 29.307134107352294 ], [ -95.271284958402916, 29.307428107420154 ], [ -95.271571958017176, 29.307680107048 ], [ -95.271645958456361, 29.308187107413847 ], [ -95.27167595883445, 29.308390107398978 ], [ -95.271466958733726, 29.308825107559954 ], [ -95.271073957939478, 29.309169107959608 ], [ -95.269766957928923, 29.309718107244322 ], [ -95.269409957467161, 29.309988107886017 ], [ -95.269373958399896, 29.310015107932948 ], [ -95.269268957529391, 29.310496107512371 ], [ -95.269764958109079, 29.310840107981662 ], [ -95.270576958656804, 29.310838108082201 ], [ -95.271379958110643, 29.311054107726019 ], [ -95.271797958678846, 29.311382107579906 ], [ -95.271831958734822, 29.311991108185861 ], [ -95.271537958644984, 29.312420108135999 ], [ -95.271210958601401, 29.312601107876052 ], [ -95.270973958375208, 29.312612108599257 ], [ -95.270611958639421, 29.312481108557609 ], [ -95.270183957797528, 29.312217108537507 ], [ -95.269754958496179, 29.312138108609595 ], [ -95.269596957882882, 29.312217108534046 ], [ -95.269370957642295, 29.312556108348428 ], [ -95.269077957769923, 29.314068109016336 ], [ -95.269178957934358, 29.314260108790059 ], [ -95.269370958352084, 29.314361108666883 ], [ -95.269698957993313, 29.314350108669498 ], [ -95.270003958192035, 29.314165108278289 ], [ -95.270478958525501, 29.313951108117482 ], [ -95.270680958755321, 29.314192108309541 ], [ -95.270578958437596, 29.31459810858945 ], [ -95.270544958978846, 29.314892108498181 ], [ -95.270770958112095, 29.315163108788695 ], [ -95.271199959162004, 29.315422108634106 ], [ -95.271605958993419, 29.315682109023971 ], [ -95.271887959070298, 29.315998108567438 ], [ -95.272226958891721, 29.316528108871164 ], [ -95.272452958940036, 29.316685109012333 ], [ -95.273366959741367, 29.316938109476052 ], [ -95.274098959039776, 29.317030109348114 ], [ -95.274726960078539, 29.317007108910364 ], [ -95.275092959758055, 29.316687108610534 ], [ -95.275171959402797, 29.31641210851485 ], [ -95.274910960106453, 29.315518108936601 ], [ -95.274963959902152, 29.315083109043798 ], [ -95.275094959568435, 29.314831108434902 ], [ -95.27532996021273, 29.314694108257054 ], [ -95.275643959343498, 29.314671108383944 ], [ -95.27603595946843, 29.31480910862166 ], [ -95.276270959964492, 29.315084108733149 ], [ -95.276221960021843, 29.315705109122518 ], [ -95.276675960255446, 29.316051108396596 ], [ -95.277373960380046, 29.316043108941926 ], [ -95.27757696004727, 29.31635910854828 ], [ -95.277553960776032, 29.316743108972862 ], [ -95.277073960755573, 29.31729810871871 ], [ -95.276633959851154, 29.317673108724151 ], [ -95.276323960498971, 29.317826109441835 ], [ -95.276266959835723, 29.318571108916213 ], [ -95.276458959733361, 29.319158109157865 ], [ -95.276992960100529, 29.319946109609781 ], [ -95.27710296085057, 29.320784109580316 ], [ -95.276910960885459, 29.322115109847886 ], [ -95.276537960316475, 29.322183110163607 ], [ -95.275984959995114, 29.322036109747639 ], [ -95.275284960428479, 29.321720110326968 ], [ -95.274833959808063, 29.321653110184712 ], [ -95.274483959995266, 29.321743110256026 ], [ -95.274355959633766, 29.321933110290228 ], [ -95.275097960049422, 29.323243110083602 ], [ -95.275047960191955, 29.32474511107176 ], [ -95.275307959948435, 29.325264110960386 ], [ -95.27555595974313, 29.32550111086961 ], [ -95.275996960500024, 29.325535110611682 ], [ -95.276368960905216, 29.325321110579971 ], [ -95.276606959991085, 29.324810110238197 ], [ -95.276654960732515, 29.324203110779195 ], [ -95.27694296006166, 29.323791110447551 ], [ -95.277688960752485, 29.323650110284767 ], [ -95.27824996036972, 29.323883110636288 ], [ -95.278795961354405, 29.32463211045722 ], [ -95.279178960675949, 29.325152110877422 ], [ -95.279215960731321, 29.325488110182647 ], [ -95.278140960852255, 29.326867110800396 ], [ -95.277890960911179, 29.327227110620164 ], [ -95.2778589603694, 29.327273111452801 ], [ -95.278065961247833, 29.32766911070518 ], [ -95.278433961438495, 29.327996111395361 ], [ -95.278976961033237, 29.327911110705951 ], [ -95.279420961008412, 29.327748110926045 ], [ -95.279788961299602, 29.327612111227715 ], [ -95.280365961657822, 29.327795111023153 ], [ -95.280725961701023, 29.327883110748463 ], [ -95.28090596199101, 29.328188111459877 ], [ -95.280883961920779, 29.328899111496263 ], [ -95.280642961754026, 29.329213111802545 ], [ -95.2797999616064, 29.329587111300555 ], [ -95.279765961741461, 29.329858111486786 ], [ -95.280950961362535, 29.330208111837504 ], [ -95.281289961402933, 29.330366111162796 ], [ -95.28074796196951, 29.330806111889721 ], [ -95.279607962001961, 29.331562111610523 ], [ -95.280172961576653, 29.332104112361936 ], [ -95.280747961830528, 29.3323521120961 ], [ -95.28144796189568, 29.33227311219245 ], [ -95.282102961757644, 29.331506111488761 ], [ -95.282383962250066, 29.331173111275344 ], [ -95.283147962664984, 29.331372112153844 ], [ -95.284334963062236, 29.331586111487628 ], [ -95.284569962951238, 29.331856112210616 ], [ -95.284122962971722, 29.332194111857291 ], [ -95.283005962496048, 29.332183111620225 ], [ -95.282553962010624, 29.332228111678926 ], [ -95.282722961903715, 29.332510111741712 ], [ -95.283181962186774, 29.332724112318385 ], [ -95.283569962967448, 29.333357112553276 ], [ -95.283400962730241, 29.333673112361659 ], [ -95.282610961919588, 29.3340911124704 ], [ -95.282632962456105, 29.334824112335358 ], [ -95.282880962103775, 29.335434112790299 ], [ -95.283475962483166, 29.335832112503518 ], [ -95.284433962507975, 29.336075112718174 ], [ -95.284655962733225, 29.33570911250413 ], [ -95.285351962975909, 29.334538111989474 ], [ -95.286154962909748, 29.33322311196984 ], [ -95.286434963229368, 29.33275111147362 ], [ -95.287914963840137, 29.330308111447142 ], [ -95.288275963213508, 29.329722111296217 ], [ -95.289060963665563, 29.328450111291055 ], [ -95.289586963882002, 29.327501111075183 ], [ -95.289886964066923, 29.327007110650197 ], [ -95.290410964287744, 29.326144110099889 ], [ -95.290485963564919, 29.326067110130399 ], [ -95.290743963956373, 29.325620110086131 ], [ -95.290985964321209, 29.32524410993949 ], [ -95.291285964592348, 29.324835110455396 ], [ -95.291559964708696, 29.324472110448731 ], [ -95.291927964690274, 29.324043110333825 ], [ -95.291952964731891, 29.324014109494673 ], [ -95.292203964907173, 29.323712110076507 ], [ -95.292706964062802, 29.323157109291966 ], [ -95.293228964695402, 29.3225801096787 ], [ -95.293335964150586, 29.322477109241206 ], [ -95.293785964909844, 29.322003109088733 ], [ -95.293995965072213, 29.321781109269573 ], [ -95.29566596482718, 29.319983109253826 ], [ -95.296266965545072, 29.31932710871677 ], [ -95.298398965728907, 29.317001108394315 ], [ -95.29979396567569, 29.31546110812387 ], [ -95.300462965903108, 29.314724108042167 ], [ -95.302823966597572, 29.312177107019398 ], [ -95.303870966554769, 29.311074107103568 ], [ -95.304092966462719, 29.310833106429033 ], [ -95.304737967515976, 29.3101351068612 ], [ -95.30558696720577, 29.309215106138382 ], [ -95.307014967782862, 29.307657106018414 ], [ -95.30944796838088, 29.304983105832275 ], [ -95.312809968410008, 29.301359104924916 ], [ -95.313005968292558, 29.301148104412132 ], [ -95.313628968653646, 29.300494104274261 ], [ -95.316848969113565, 29.297004103082866 ], [ -95.322575971214931, 29.290855102265056 ], [ -95.324872971349365, 29.288357101754514 ], [ -95.325299971224808, 29.287891101639932 ], [ -95.328140971548606, 29.284804100398972 ], [ -95.329790972673237, 29.283018100314131 ], [ -95.330043972002187, 29.282745100124782 ], [ -95.33146097231392, 29.28121009991192 ], [ -95.331598972991557, 29.281064099441593 ], [ -95.330920971990153, 29.280470100006486 ], [ -95.330763972536317, 29.280241099971466 ], [ -95.330764972255253, 29.279760099674107 ], [ -95.330868972112526, 29.279073099317856 ], [ -95.331339972112417, 29.278248099096455 ], [ -95.331130972205315, 29.277767098891342 ], [ -95.33047797270892, 29.27726309929005 ], [ -95.330503972732771, 29.277011098961207 ], [ -95.330582972515103, 29.276896099237302 ], [ -95.331575972384201, 29.276599098934987 ], [ -95.331836972293729, 29.27641609853686 ], [ -95.332307972251883, 29.275545098339407 ], [ -95.332308972450392, 29.274422098732231 ], [ -95.332438972673742, 29.274125098440734 ], [ -95.332857973218665, 29.273827097956584 ], [ -95.334973973044242, 29.273140097553728 ], [ -95.335261973636264, 29.272957098051918 ], [ -95.335731973334802, 29.272361097396736 ], [ -95.336045973745314, 29.272339097620598 ], [ -95.33630697373971, 29.272499098123294 ], [ -95.336620973469138, 29.272522097999357 ], [ -95.336907973356347, 29.272270098123641 ], [ -95.337117973743091, 29.270644097400613 ], [ -95.337300973233354, 29.270162096923361 ], [ -95.338110973737884, 29.269750097049322 ], [ -95.33821597347027, 29.269498097532299 ], [ -95.33808497342865, 29.26922309715933 ], [ -95.336883973620303, 29.268055096747254 ], [ -95.336883973504897, 29.267642096858133 ], [ -95.336976973371478, 29.267506097120194 ], [ -95.337118973204781, 29.267299096675259 ], [ -95.337902973329719, 29.267207097072681 ], [ -95.338190973431708, 29.267001096455196 ], [ -95.338164973338877, 29.266703096369802 ], [ -95.337589973052573, 29.265924096755523 ], [ -95.337589973830333, 29.265443096033472 ], [ -95.337798973123213, 29.265191096149341 ], [ -95.339000973916114, 29.264664096488257 ], [ -95.339340974118571, 29.264298096084456 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 763, "Tract": "48039661800", "Area_SqMi": 62.406101932854199, "total_2009": 351, "total_2010": 261, "total_2011": 2208, "total_2012": 1825, "total_2013": 1440, "total_2014": 1890, "total_2015": 714, "total_2016": 606, "total_2017": 639, "total_2018": 1077, "total_2019": 1203, "total_2020": 1293, "age1": 317, "age2": 734, "age3": 259, "earn1": 156, "earn2": 246, "earn3": 908, "naics_s01": 0, "naics_s02": 0, "naics_s03": 32, "naics_s04": 631, "naics_s05": 33, "naics_s06": 146, "naics_s07": 51, "naics_s08": 31, "naics_s09": 0, "naics_s10": 4, "naics_s11": 12, "naics_s12": 51, "naics_s13": 0, "naics_s14": 59, "naics_s15": 0, "naics_s16": 57, "naics_s17": 8, "naics_s18": 49, "naics_s19": 117, "naics_s20": 29, "race1": 1106, "race2": 96, "race3": 16, "race4": 68, "race5": 1, "race6": 23, "ethnicity1": 868, "ethnicity2": 442, "edu1": 204, "edu2": 294, "edu3": 334, "edu4": 161, "Shape_Length": 234424.13703767775, "Shape_Area": 1739775312.777051, "total_2021": 1328, "total_2022": 1310 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.427656004334196, 29.440583129334605 ], [ -95.427649004404714, 29.439225128978599 ], [ -95.427649004506421, 29.43916012954649 ], [ -95.427651003665218, 29.437598129120623 ], [ -95.427622004285993, 29.435497128867159 ], [ -95.427622003695248, 29.434439127816312 ], [ -95.427623003960903, 29.433352128154208 ], [ -95.427520003214411, 29.427849127067244 ], [ -95.427524003602116, 29.42694412645859 ], [ -95.427519003094361, 29.426829126760701 ], [ -95.427498003738478, 29.426400126910821 ], [ -95.427498003896758, 29.426381126424648 ], [ -95.427502003840317, 29.425207126125901 ], [ -95.427511003864211, 29.424578126227207 ], [ -95.427469003113785, 29.422968125812762 ], [ -95.427467002943104, 29.422770126031281 ], [ -95.427442003145998, 29.420019125658403 ], [ -95.427432002816644, 29.419761125306078 ], [ -95.42741900357575, 29.418426124942862 ], [ -95.427355002770327, 29.4119031239671 ], [ -95.427353003231786, 29.411733123603451 ], [ -95.427351002610663, 29.409976122871072 ], [ -95.427289002536639, 29.405870122492196 ], [ -95.427280002081616, 29.40525012197417 ], [ -95.427272002513988, 29.404440121765159 ], [ -95.427271002854141, 29.404355122375875 ], [ -95.427222001718476, 29.399453121305552 ], [ -95.427174002130286, 29.396237120555377 ], [ -95.427153002021242, 29.393876120079863 ], [ -95.427145002031367, 29.392963119774659 ], [ -95.427142002387058, 29.392455120021193 ], [ -95.427140001400346, 29.392047119489259 ], [ -95.427127002186083, 29.391025118878357 ], [ -95.427120001362994, 29.390220119212209 ], [ -95.427087001692087, 29.387467118600366 ], [ -95.42707400162088, 29.386936118216518 ], [ -95.427070002089479, 29.386758118664321 ], [ -95.427075001443342, 29.386194118667149 ], [ -95.42701100123719, 29.381516117258812 ], [ -95.426986001465039, 29.380319117292387 ], [ -95.426977001121756, 29.378242116986328 ], [ -95.426977001731075, 29.378150116234671 ], [ -95.426921001351644, 29.375129116463235 ], [ -95.426914001334751, 29.374731115862478 ], [ -95.426897000982805, 29.370430115117287 ], [ -95.426857000468146, 29.367333114489593 ], [ -95.426858001013159, 29.36664911393575 ], [ -95.426877000416496, 29.366201114124831 ], [ -95.42709200020964, 29.360982113281047 ], [ -95.427096000648262, 29.360887113055483 ], [ -95.427098000564882, 29.360790112982855 ], [ -95.427099000525729, 29.360745113289124 ], [ -95.427103000973574, 29.36058911275401 ], [ -95.427116000806492, 29.360108113239622 ], [ -95.427174000775963, 29.357848112412395 ], [ -95.426903000251826, 29.354049111854394 ], [ -95.426880000612343, 29.353792111773217 ], [ -95.42681199983852, 29.353028111764147 ], [ -95.426806999595627, 29.35292711190133 ], [ -95.426792999885308, 29.352675111028066 ], [ -95.426762999606964, 29.352109111015949 ], [ -95.426742999946143, 29.351822111163475 ], [ -95.426733000367989, 29.351680111579736 ], [ -95.426712000515352, 29.351380110834086 ], [ -95.426701999562042, 29.35122811071885 ], [ -95.42666000026486, 29.350614111371094 ], [ -95.426588999750464, 29.349570110807775 ], [ -95.426517000312316, 29.348527110560923 ], [ -95.426492000104503, 29.348166110370158 ], [ -95.426445999652842, 29.347689110681653 ], [ -95.426260999760828, 29.344957110235647 ], [ -95.426130999497204, 29.342947109736595 ], [ -95.426073999500062, 29.342043109256746 ], [ -95.426069998948535, 29.34187710923997 ], [ -95.426062999354158, 29.341545108934529 ], [ -95.426057998978123, 29.34130310885849 ], [ -95.42605599993864, 29.341214108845886 ], [ -95.426049998916426, 29.340912108758481 ], [ -95.426026999544575, 29.339171108871383 ], [ -95.425986999347359, 29.337831108597801 ], [ -95.42594499885638, 29.33644310834076 ], [ -95.425893999436397, 29.334203107438462 ], [ -95.42575299887487, 29.327903106231833 ], [ -95.425708999088016, 29.326517105622564 ], [ -95.425593998575948, 29.323050105420638 ], [ -95.425463998111383, 29.317573104248549 ], [ -95.42499299865338, 29.317545104132545 ], [ -95.42438599847145, 29.317509104227518 ], [ -95.422373997330851, 29.317389104077947 ], [ -95.421954997269296, 29.31736410449917 ], [ -95.420636997170106, 29.317285104116994 ], [ -95.420623996474546, 29.316598104591915 ], [ -95.420440996419401, 29.316117103962707 ], [ -95.418478996196399, 29.312429103243769 ], [ -95.417955996515374, 29.311651103576871 ], [ -95.41730199549032, 29.310964102937568 ], [ -95.417144995392647, 29.3106891027054 ], [ -95.416935996158102, 29.310093102667313 ], [ -95.416725996213032, 29.309864102837864 ], [ -95.416490996074884, 29.309887102930599 ], [ -95.414921994782873, 29.309384102616331 ], [ -95.414242994996926, 29.309384102935603 ], [ -95.413588995356818, 29.309453103208252 ], [ -95.412909994661462, 29.309132103250402 ], [ -95.412386994607402, 29.309087103057049 ], [ -95.41191599424171, 29.309155102872896 ], [ -95.411288994589839, 29.309064102855988 ], [ -95.409798994269934, 29.308354103016303 ], [ -95.408857993691271, 29.307415102891003 ], [ -95.408333993436173, 29.306568102762011 ], [ -95.40802099338282, 29.306224102119526 ], [ -95.406686992565838, 29.305514101927077 ], [ -95.406293992587223, 29.305210102695785 ], [ -95.406280993095692, 29.305200102130083 ], [ -95.405797992350372, 29.304827101842548 ], [ -95.405467992414131, 29.304777102046316 ], [ -95.405039992344939, 29.304713101905609 ], [ -95.403654991656595, 29.305057102109625 ], [ -95.403341991886833, 29.305217102387427 ], [ -95.402870991973373, 29.305882102295097 ], [ -95.402269992185936, 29.306340103020005 ], [ -95.401407992009013, 29.306478102736293 ], [ -95.400858991069668, 29.306730102506872 ], [ -95.40038799172882, 29.306776103212613 ], [ -95.398767990776221, 29.306203103093029 ], [ -95.397267990201101, 29.306028103077384 ], [ -95.397198990185714, 29.306020102557238 ], [ -95.396179990773234, 29.306433102626738 ], [ -95.395578990529913, 29.30650210307331 ], [ -95.394271989687766, 29.306204102448604 ], [ -95.393696990139588, 29.306181103172158 ], [ -95.39329298973739, 29.305976102908602 ], [ -95.393199989602905, 29.305929102661725 ], [ -95.392520988906057, 29.305792102776785 ], [ -95.39123998938129, 29.306365102593187 ], [ -95.390611988405254, 29.306457103362838 ], [ -95.389618988322056, 29.305976102622672 ], [ -95.388929988560093, 29.305862102805985 ], [ -95.388782988608, 29.305838102927005 ], [ -95.387736988038483, 29.305311103103854 ], [ -95.386952988292535, 29.305060102658018 ], [ -95.386220987334141, 29.304579102766709 ], [ -95.385749987136165, 29.30448710257885 ], [ -95.383998986792207, 29.305243103175073 ], [ -95.382874986767078, 29.305220102790134 ], [ -95.381829986908784, 29.305747103165608 ], [ -95.381147985933922, 29.305954102809174 ], [ -95.380391986726679, 29.306183103318663 ], [ -95.379581985656586, 29.306320103401347 ], [ -95.379084986088003, 29.306160103818506 ], [ -95.377986985443727, 29.305312103151394 ], [ -95.377385985506194, 29.305175103368246 ], [ -95.376287985607092, 29.305198103279402 ], [ -95.375216985005238, 29.30457910289822 ], [ -95.374484984444962, 29.304281103395422 ], [ -95.373517984339969, 29.303502103215081 ], [ -95.372680984530106, 29.303457103118458 ], [ -95.372419984181107, 29.303319103299739 ], [ -95.372079983840564, 29.302815103361329 ], [ -95.371635983428362, 29.302380102761035 ], [ -95.371400984137168, 29.302288102836641 ], [ -95.371373983587119, 29.302151103148272 ], [ -95.371100983500568, 29.301749102508548 ], [ -95.370798983944141, 29.301303102802375 ], [ -95.370772983000762, 29.300066102555043 ], [ -95.370694983313001, 29.29979110218774 ], [ -95.3701719836276, 29.299287102000282 ], [ -95.369910983637553, 29.298256101743384 ], [ -95.369701983471728, 29.297866101935977 ], [ -95.369309983109176, 29.297431102190316 ], [ -95.369185982995575, 29.297352102079408 ], [ -95.368054982967621, 29.2966291021384 ], [ -95.367610982738967, 29.296492102154549 ], [ -95.366146982646001, 29.296583101946812 ], [ -95.364447981436726, 29.296194102035276 ], [ -95.362333981393704, 29.296029101557384 ], [ -95.362095981587899, 29.296010101569586 ], [ -95.361363981395186, 29.295667101364756 ], [ -95.360553980375713, 29.295460102053475 ], [ -95.359507980736851, 29.296056102263432 ], [ -95.358802979997364, 29.296170101523856 ], [ -95.357678980323797, 29.296491101859885 ], [ -95.356840979676562, 29.296932102625846 ], [ -95.356763979962793, 29.296972102156658 ], [ -95.35634597981246, 29.297086101905933 ], [ -95.356031979980187, 29.297018102216647 ], [ -95.355430979510373, 29.296491102049728 ], [ -95.354829979346746, 29.296170101987194 ], [ -95.354176978638321, 29.296009102528568 ], [ -95.353522979116903, 29.295711102429188 ], [ -95.35266097882733, 29.295116101734727 ], [ -95.352060978851355, 29.294789101854427 ], [ -95.351484978459112, 29.294474101557558 ], [ -95.350961978623303, 29.294039101493251 ], [ -95.350569978081865, 29.293328102007553 ], [ -95.349916978164003, 29.292755101324762 ], [ -95.349289978096351, 29.292549101792368 ], [ -95.349028977163442, 29.292297101730703 ], [ -95.348845977697223, 29.291862101258932 ], [ -95.348555977661704, 29.29159310173927 ], [ -95.348400977233723, 29.291449101709656 ], [ -95.347381976906163, 29.291037101420041 ], [ -95.346519976904233, 29.290166100983722 ], [ -95.346258976601931, 29.28943310059709 ], [ -95.345396976077069, 29.288539100552175 ], [ -95.345369976454904, 29.288356100450223 ], [ -95.345259976018312, 29.288298100662338 ], [ -95.345239976255911, 29.288287100417456 ], [ -95.344978976198234, 29.287302100191891 ], [ -95.344612976750597, 29.287141100147558 ], [ -95.344014975679698, 29.287233100794484 ], [ -95.343279975518499, 29.287347100948264 ], [ -95.342835975395161, 29.2872781008261 ], [ -95.342521975427402, 29.287141100781852 ], [ -95.341528975184886, 29.28643010028793 ], [ -95.340692975476344, 29.286270100299586 ], [ -95.340143974961777, 29.286040100054251 ], [ -95.339778975147041, 29.2857651003103 ], [ -95.339307975184553, 29.285605100648588 ], [ -95.337608974622043, 29.285719100712221 ], [ -95.3370079737673, 29.28553610059631 ], [ -95.335779973696617, 29.284481100684218 ], [ -95.335832974075856, 29.283657100348133 ], [ -95.335885973669761, 29.282946099772936 ], [ -95.335782973995023, 29.282711099581608 ], [ -95.335754973425608, 29.282648099980428 ], [ -95.335231973825429, 29.282213099975749 ], [ -95.333376973318451, 29.281754099845951 ], [ -95.332801972878769, 29.281502099463292 ], [ -95.331678972820526, 29.281135099836906 ], [ -95.331598972991557, 29.281064099441593 ], [ -95.33146097231392, 29.28121009991192 ], [ -95.330043972002187, 29.282745100124782 ], [ -95.329790972673237, 29.283018100314131 ], [ -95.328140971548606, 29.284804100398972 ], [ -95.325299971224808, 29.287891101639932 ], [ -95.324872971349365, 29.288357101754514 ], [ -95.322575971214931, 29.290855102265056 ], [ -95.316848969113565, 29.297004103082866 ], [ -95.313628968653646, 29.300494104274261 ], [ -95.313005968292558, 29.301148104412132 ], [ -95.312809968410008, 29.301359104924916 ], [ -95.30944796838088, 29.304983105832275 ], [ -95.307014967782862, 29.307657106018414 ], [ -95.30558696720577, 29.309215106138382 ], [ -95.304737967515976, 29.3101351068612 ], [ -95.304092966462719, 29.310833106429033 ], [ -95.303870966554769, 29.311074107103568 ], [ -95.302823966597572, 29.312177107019398 ], [ -95.300462965903108, 29.314724108042167 ], [ -95.29979396567569, 29.31546110812387 ], [ -95.298398965728907, 29.317001108394315 ], [ -95.296266965545072, 29.31932710871677 ], [ -95.29566596482718, 29.319983109253826 ], [ -95.293995965072213, 29.321781109269573 ], [ -95.293785964909844, 29.322003109088733 ], [ -95.293335964150586, 29.322477109241206 ], [ -95.293228964695402, 29.3225801096787 ], [ -95.292706964062802, 29.323157109291966 ], [ -95.292203964907173, 29.323712110076507 ], [ -95.291952964731891, 29.324014109494673 ], [ -95.291927964690274, 29.324043110333825 ], [ -95.291559964708696, 29.324472110448731 ], [ -95.291285964592348, 29.324835110455396 ], [ -95.290985964321209, 29.32524410993949 ], [ -95.290743963956373, 29.325620110086131 ], [ -95.290485963564919, 29.326067110130399 ], [ -95.290410964287744, 29.326144110099889 ], [ -95.289886964066923, 29.327007110650197 ], [ -95.289586963882002, 29.327501111075183 ], [ -95.289060963665563, 29.328450111291055 ], [ -95.288275963213508, 29.329722111296217 ], [ -95.287914963840137, 29.330308111447142 ], [ -95.286434963229368, 29.33275111147362 ], [ -95.286154962909748, 29.33322311196984 ], [ -95.285351962975909, 29.334538111989474 ], [ -95.284655962733225, 29.33570911250413 ], [ -95.284433962507975, 29.336075112718174 ], [ -95.284801963023455, 29.3361681124168 ], [ -95.284906963431084, 29.336283113099295 ], [ -95.284957962642935, 29.336833112722246 ], [ -95.285219962936324, 29.337108112815759 ], [ -95.285794963249728, 29.337017113202268 ], [ -95.286265963190402, 29.337085112794988 ], [ -95.286238963747408, 29.337590113312515 ], [ -95.285924963435136, 29.338162112872151 ], [ -95.285793963159563, 29.33816211262452 ], [ -95.285558962894825, 29.338002112703069 ], [ -95.285532963480279, 29.337772112630425 ], [ -95.285401963382938, 29.337681112850149 ], [ -95.28514096297414, 29.33774911302552 ], [ -95.284878962867225, 29.338643113352887 ], [ -95.284564962774468, 29.338826112972775 ], [ -95.284563962934371, 29.339055113183001 ], [ -95.284720963060636, 29.33914711303915 ], [ -95.285635963436462, 29.339170112978575 ], [ -95.28581896368209, 29.339331113502848 ], [ -95.285923963706978, 29.339560113044524 ], [ -95.286158963964681, 29.339720113072897 ], [ -95.286472964075941, 29.339606113761366 ], [ -95.286681963926384, 29.339262112835357 ], [ -95.287832964394084, 29.338690112700601 ], [ -95.288407963754551, 29.338851113042587 ], [ -95.288747964212547, 29.338851112919453 ], [ -95.288852964596614, 29.338737113157336 ], [ -95.288879964370608, 29.338210112996535 ], [ -95.289140964408233, 29.338210112878961 ], [ -95.289558964580266, 29.338371113036903 ], [ -95.290683965080717, 29.338234113052664 ], [ -95.29097096467919, 29.338349112608721 ], [ -95.291075964927501, 29.338761113305861 ], [ -95.290682964550285, 29.338898113404763 ], [ -95.290081964563683, 29.338944113406814 ], [ -95.290028964052652, 29.339241112888708 ], [ -95.29078796434267, 29.339379112833058 ], [ -95.291074964396245, 29.339861113267037 ], [ -95.291125965056324, 29.340869113016794 ], [ -95.291471965143117, 29.34138111359724 ], [ -95.291543964991007, 29.341488113725841 ], [ -95.291621965211334, 29.342335113583061 ], [ -95.292144965651119, 29.342863113461686 ], [ -95.292274965380443, 29.343115113951139 ], [ -95.292509965705733, 29.343252114158741 ], [ -95.292902965172516, 29.343184114027288 ], [ -95.293164965529328, 29.342542113837936 ], [ -95.293608965492609, 29.342268113358799 ], [ -95.293896965978959, 29.342291114054852 ], [ -95.295203966194364, 29.342933113751833 ], [ -95.295883966548658, 29.343002113566875 ], [ -95.296223966050533, 29.343323113913332 ], [ -95.296667965938738, 29.34318611347042 ], [ -95.296694966728253, 29.342888113278338 ], [ -95.296877966097384, 29.34254511354133 ], [ -95.297269966166766, 29.342247113265309 ], [ -95.297949966447277, 29.342087113457918 ], [ -95.298472967225095, 29.342294113078548 ], [ -95.299230967243602, 29.342935113885499 ], [ -95.299308967161451, 29.343050113760114 ], [ -95.299334967106319, 29.343371113315246 ], [ -95.299648967115971, 29.343669114121379 ], [ -95.300040967709492, 29.343898113812511 ], [ -95.300092966957791, 29.34417311413468 ], [ -95.300013967664071, 29.344471113689895 ], [ -95.299752967423089, 29.344700113667589 ], [ -95.299202967112564, 29.344952113696003 ], [ -95.299072967414219, 29.345181113701482 ], [ -95.299098966603879, 29.345433113964631 ], [ -95.299385967186169, 29.345662114594795 ], [ -95.300117967343411, 29.346006114385446 ], [ -95.300221967633348, 29.34618911391177 ], [ -95.300326966980251, 29.346648114304998 ], [ -95.301032967708494, 29.347037114711799 ], [ -95.301084967180074, 29.347267114322253 ], [ -95.30079696771206, 29.347885114703928 ], [ -95.300822967710388, 29.348137114412509 ], [ -95.3013449681374, 29.34855011434415 ], [ -95.30158096778608, 29.348939114832078 ], [ -95.301607967898605, 29.348937115129974 ], [ -95.301893968383993, 29.348917114331289 ], [ -95.30212996817373, 29.348802114382959 ], [ -95.302940967790491, 29.347886114232217 ], [ -95.303437968828874, 29.347978114534076 ], [ -95.303567967926398, 29.348207114893871 ], [ -95.303541968633652, 29.349078114671137 ], [ -95.303802968771677, 29.349261114932542 ], [ -95.304482968873288, 29.349193114983013 ], [ -95.304874968327496, 29.349285115032384 ], [ -95.305188969144496, 29.349583115151216 ], [ -95.305371969029082, 29.349972115155708 ], [ -95.30544996902384, 29.350431114989856 ], [ -95.305998968686154, 29.350706114824128 ], [ -95.305998968903708, 29.351416114855347 ], [ -95.306311969642636, 29.351737115548499 ], [ -95.30699196964386, 29.351668114810803 ], [ -95.308038969352424, 29.351004115329527 ], [ -95.308351970104837, 29.350890115355845 ], [ -95.308718970217399, 29.35105111537024 ], [ -95.309319970072238, 29.351761115128614 ], [ -95.309622970262495, 29.351911115364537 ], [ -95.309737970070032, 29.351968115450276 ], [ -95.310181970133684, 29.352105115511609 ], [ -95.310181970363232, 29.35258611478783 ], [ -95.310024969973085, 29.352907115255221 ], [ -95.309370970376179, 29.353205115649505 ], [ -95.309056969791428, 29.353777115437026 ], [ -95.308480969564954, 29.354052115286123 ], [ -95.308506969890345, 29.354327115960157 ], [ -95.308925970461971, 29.354831115770168 ], [ -95.308898969725604, 29.35522011620909 ], [ -95.308741970324178, 29.35561011602168 ], [ -95.308767969516097, 29.355954116345021 ], [ -95.308898970200843, 29.356137115570636 ], [ -95.309107970426936, 29.356229115990701 ], [ -95.309996969910642, 29.356092115636418 ], [ -95.310205970603661, 29.35627511620639 ], [ -95.310257970938338, 29.356664116257988 ], [ -95.31054597003002, 29.356917115718861 ], [ -95.310858970859996, 29.357375116548983 ], [ -95.311225970485964, 29.357283116519749 ], [ -95.311748971123578, 29.356803116280656 ], [ -95.312062971243876, 29.35682611615584 ], [ -95.31232397134022, 29.356986116105144 ], [ -95.312820970676057, 29.357811116283511 ], [ -95.31304497111374, 29.35783811620594 ], [ -95.313124971259498, 29.357883116234675 ], [ -95.313396970919982, 29.357912115947087 ], [ -95.31351497107083, 29.35801211616338 ], [ -95.31351797117857, 29.358156116058559 ], [ -95.313424971585974, 29.358320116148601 ], [ -95.31329597110134, 29.358416116146341 ], [ -95.313263971334862, 29.358440116723859 ], [ -95.313255970892527, 29.358533116467445 ], [ -95.31322797158326, 29.358601116107447 ], [ -95.313058971591914, 29.358807116213569 ], [ -95.313039971166162, 29.358825116827134 ], [ -95.313031971466316, 29.358902116068613 ], [ -95.313033971638973, 29.358961116107569 ], [ -95.313038971155393, 29.359058116712664 ], [ -95.313123970969187, 29.359128116826575 ], [ -95.313213971694623, 29.359237116119466 ], [ -95.313282971335511, 29.35931311620627 ], [ -95.313325971599056, 29.359497116453237 ], [ -95.31339697116411, 29.359622116620965 ], [ -95.313436971375765, 29.359643116577633 ], [ -95.313523971313401, 29.359687116220524 ], [ -95.313602971102924, 29.359686116157729 ], [ -95.313658971679232, 29.359685116315678 ], [ -95.313753971673123, 29.359634116441807 ], [ -95.313809971960325, 29.359522116862539 ], [ -95.313824970971609, 29.359344116120422 ], [ -95.31396497150314, 29.359138116684566 ], [ -95.314146971062598, 29.359034116167802 ], [ -95.31430097109309, 29.359031116515343 ], [ -95.314406971837201, 29.359029116641253 ], [ -95.314581971205016, 29.359069116335657 ], [ -95.314670971974877, 29.359169116275069 ], [ -95.314701972003789, 29.359254116682688 ], [ -95.314881971636012, 29.359504116629118 ], [ -95.315000972008505, 29.359621116708851 ], [ -95.315166971524548, 29.359736116566136 ], [ -95.315275971691051, 29.359869116110069 ], [ -95.315384971958764, 29.359978116616954 ], [ -95.315532971974562, 29.360101116710311 ], [ -95.315600972004574, 29.360109116514771 ], [ -95.315735971791526, 29.360107116285082 ], [ -95.315832972100722, 29.36009611634292 ], [ -95.315986971554267, 29.360093116492948 ], [ -95.316052971827787, 29.360043116398991 ], [ -95.316255971807294, 29.360021116132202 ], [ -95.316429972353674, 29.360036116362949 ], [ -95.316555971911612, 29.360059116146221 ], [ -95.31670397189751, 29.36015811686875 ], [ -95.316803972627966, 29.360309116880135 ], [ -95.316846971799436, 29.36053611683786 ], [ -95.316849972207223, 29.360638116547925 ], [ -95.31683497270339, 29.360841116624023 ], [ -95.316701972493931, 29.360963116360502 ], [ -95.31669597209779, 29.361105117142365 ], [ -95.316687971879162, 29.361182116489967 ], [ -95.316594972443454, 29.361245117145216 ], [ -95.316557972348278, 29.361248116851215 ], [ -95.316495972638691, 29.361253116780265 ], [ -95.316282972251969, 29.361216117012237 ], [ -95.316135972593145, 29.361115116789524 ], [ -95.315978971743618, 29.361034117182694 ], [ -95.315871971566963, 29.360984117156594 ], [ -95.315765972479554, 29.361013117094746 ], [ -95.31560497210009, 29.36112411636568 ], [ -95.315545972446785, 29.361197116815443 ], [ -95.31545397194742, 29.361305116998942 ], [ -95.315417971632911, 29.361400117039285 ], [ -95.315361971497509, 29.361528116834524 ], [ -95.315266972439744, 29.361588116587487 ], [ -95.315045971785409, 29.361634116587375 ], [ -95.315017972199101, 29.361660116608586 ], [ -95.314989971783262, 29.361712116953552 ], [ -95.314914971689461, 29.361815117272979 ], [ -95.314897971451359, 29.361917117294183 ], [ -95.314899971531986, 29.362009116682806 ], [ -95.314959971771685, 29.362101116949344 ], [ -95.315028972068106, 29.362160117084223 ], [ -95.315194972237421, 29.36222511748273 ], [ -95.315339972116988, 29.362256116863982 ], [ -95.315524972394954, 29.362294117199554 ], [ -95.315746972191164, 29.362317117409592 ], [ -95.315901972077512, 29.36233011678457 ], [ -95.31609597224849, 29.362345116921137 ], [ -95.316269972274199, 29.362367117219783 ], [ -95.316424972139842, 29.362389117385082 ], [ -95.316600972756504, 29.362462116913726 ], [ -95.316669972239595, 29.362502116694099 ], [ -95.316718972456442, 29.362528117014708 ], [ -95.316817972009503, 29.362652116658236 ], [ -95.316919972269261, 29.36289711714706 ], [ -95.316951972438005, 29.363007117494295 ], [ -95.3169549720959, 29.363158117034232 ], [ -95.316946972674472, 29.36325211713142 ], [ -95.316949972845663, 29.36337911685979 ], [ -95.316952972893972, 29.363505117228918 ], [ -95.316904972276006, 29.363667116854241 ], [ -95.316898972084545, 29.363684117213115 ], [ -95.31680597269191, 29.363972116919179 ], [ -95.316667972065417, 29.3641621170398 ], [ -95.316621972457938, 29.364239117552948 ], [ -95.316536971969768, 29.364326117614844 ], [ -95.316537972260207, 29.364382117114648 ], [ -95.316538972633552, 29.364419117173618 ], [ -95.316464972586402, 29.364580117432375 ], [ -95.316423972791711, 29.364655117239263 ], [ -95.316433972109195, 29.36476311750846 ], [ -95.316461972285737, 29.364869117557642 ], [ -95.316559972774272, 29.364910117248247 ], [ -95.316684971925497, 29.364908117932789 ], [ -95.316791972133046, 29.364906117403091 ], [ -95.316962972534895, 29.36478411715067 ], [ -95.317048972631838, 29.364773117789678 ], [ -95.317232972159928, 29.364745117161998 ], [ -95.3173369729098, 29.36468511791989 ], [ -95.317538973116442, 29.364629117116408 ], [ -95.317982973140914, 29.364621117133144 ], [ -95.318166972986688, 29.364618117109195 ], [ -95.318331972392343, 29.364634117538252 ], [ -95.318388972846023, 29.364639117670055 ], [ -95.318630973126687, 29.364635116986253 ], [ -95.318843973372253, 29.364658117318253 ], [ -95.319018973426935, 29.364705117165837 ], [ -95.319153972864129, 29.364703117820277 ], [ -95.319248973077848, 29.364624117723384 ], [ -95.319401972868604, 29.364547116967266 ], [ -95.319522972674321, 29.364349117244764 ], [ -95.319589972787625, 29.364332117088331 ], [ -95.31982997352651, 29.364226117070988 ], [ -95.320147972897914, 29.364178117189006 ], [ -95.320301973018942, 29.364175117632765 ], [ -95.32049597352227, 29.364230116941236 ], [ -95.320646973798418, 29.364357117039962 ], [ -95.32073397307586, 29.364463117593466 ], [ -95.320830973234848, 29.364619117620112 ], [ -95.320895973831938, 29.364792117273669 ], [ -95.320939973530443, 29.365028117335186 ], [ -95.320970973558417, 29.365129117378732 ], [ -95.321266973395453, 29.36538511739397 ], [ -95.321355973237289, 29.365503117899653 ], [ -95.321446973349751, 29.365653117508828 ], [ -95.321526973938674, 29.365787117660371 ], [ -95.321561973394168, 29.366057117243201 ], [ -95.321518973928534, 29.366204117805864 ], [ -95.321480973839186, 29.366304117814295 ], [ -95.321444973984811, 29.366424117539307 ], [ -95.321399974212738, 29.366594117525743 ], [ -95.321382973461041, 29.366696118124878 ], [ -95.321054973336572, 29.366702117353018 ], [ -95.321003973380044, 29.366610118145296 ], [ -95.32088597365204, 29.366502117720479 ], [ -95.320786973176538, 29.366402117555076 ], [ -95.320670973048919, 29.366379117832292 ], [ -95.320602973200309, 29.366353117976143 ], [ -95.320447973831762, 29.366309117282377 ], [ -95.320430972973412, 29.366307117509855 ], [ -95.3200989730462, 29.366312117578818 ], [ -95.319839973124886, 29.366366117300174 ], [ -95.319666973585498, 29.366421117611683 ], [ -95.319609973534412, 29.366481117463675 ], [ -95.319515973678733, 29.366584118128202 ], [ -95.319443973139201, 29.366769117952064 ], [ -95.319368973621224, 29.366909117466562 ], [ -95.319235973615207, 29.367022118360811 ], [ -95.319102973243176, 29.367126117729587 ], [ -95.319056973135389, 29.367219117675205 ], [ -95.318941973270256, 29.367246117968705 ], [ -95.318738972824505, 29.367274117869471 ], [ -95.318623973042165, 29.367303118404624 ], [ -95.318528972578662, 29.367379118236482 ], [ -95.318434972983681, 29.367483118439743 ], [ -95.31829197324862, 29.367595117688275 ], [ -95.318148972481097, 29.36768411812362 ], [ -95.318023972885968, 29.367693117964766 ], [ -95.317842972972329, 29.367689117672935 ], [ -95.317815973022263, 29.367687117959886 ], [ -95.317704972491399, 29.367682118278186 ], [ -95.317625973222889, 29.367641118367818 ], [ -95.317509972374651, 29.36760011763209 ], [ -95.31740197237211, 29.367552118198375 ], [ -95.31733397291525, 29.36751111828243 ], [ -95.317275972919006, 29.367512117875652 ], [ -95.317168973120133, 29.367514117975801 ], [ -95.31704997229933, 29.367519118007799 ], [ -95.317023972738284, 29.367542117811034 ], [ -95.316910972610572, 29.367620117768144 ], [ -95.316855972490643, 29.367853118324021 ], [ -95.316791972865218, 29.367910118100227 ], [ -95.316677972656805, 29.367980118023279 ], [ -95.316651973036329, 29.368143118267955 ], [ -95.316655972509494, 29.368239118621446 ], [ -95.316772972298764, 29.368337117954844 ], [ -95.316939972845773, 29.368363118127029 ], [ -95.317027972575431, 29.368374118104459 ], [ -95.317227973219886, 29.368380117950519 ], [ -95.317548972296549, 29.368375118326199 ], [ -95.317903973043414, 29.368369118639155 ], [ -95.318112972840638, 29.368400118114561 ], [ -95.318285973263443, 29.368420118078415 ], [ -95.318473972602987, 29.368435118604804 ], [ -95.318606972618198, 29.368434118044362 ], [ -95.318783973175883, 29.36846411829411 ], [ -95.318974973286402, 29.368743118185083 ], [ -95.318987973269358, 29.368896118423919 ], [ -95.31895197276431, 29.369025117998461 ], [ -95.318749973107984, 29.36914811831792 ], [ -95.318690973621571, 29.369216117959716 ], [ -95.31857897345121, 29.369334118261882 ], [ -95.31853097313649, 29.369382118219104 ], [ -95.318406973577481, 29.369470118311298 ], [ -95.318321973373983, 29.369591118243523 ], [ -95.318265972547877, 29.369703118634092 ], [ -95.318238973109004, 29.369813118645258 ], [ -95.31823297328522, 29.369834118273509 ], [ -95.318230973027767, 29.36987011829715 ], [ -95.318228973242583, 29.369910118448487 ], [ -95.318248973085645, 29.370242119050282 ], [ -95.318310973275487, 29.370385118807775 ], [ -95.318371973095495, 29.370504118234066 ], [ -95.318402973354253, 29.370614118395903 ], [ -95.31852297285721, 29.370749118811595 ], [ -95.318642973382879, 29.370848119014052 ], [ -95.318691972852633, 29.370890118886436 ], [ -95.318797973413027, 29.37088911905364 ], [ -95.318878973684249, 29.370829118802845 ], [ -95.318966972933282, 29.370745118560325 ], [ -95.319252972914015, 29.370288118781609 ], [ -95.319269973112597, 29.370145118837417 ], [ -95.319267973251272, 29.3700621184284 ], [ -95.31927397302816, 29.369915118335278 ], [ -95.319349973102518, 29.369803118377117 ], [ -95.319460973271532, 29.369537118161364 ], [ -95.31959597376418, 29.369495117989874 ], [ -95.319789973297716, 29.369471118675968 ], [ -95.319926973689462, 29.369495118767198 ], [ -95.320034973806514, 29.369536118793306 ], [ -95.320250973649976, 29.369591118028136 ], [ -95.320319973379057, 29.369633118025 ], [ -95.320460973444725, 29.369836118891843 ], [ -95.320518973972668, 29.369808118263641 ], [ -95.320606973364946, 29.369806118845407 ], [ -95.320714973691778, 29.369787118429738 ], [ -95.320868974003488, 29.369777118024846 ], [ -95.320931973284303, 29.369759118523586 ], [ -95.321169974158963, 29.369720118371369 ], [ -95.321335973825029, 29.369717118628714 ], [ -95.321511973575085, 29.369741118566854 ], [ -95.321735973753036, 29.369746118252614 ], [ -95.321931973912839, 29.369810118336314 ], [ -95.322088974477182, 29.369841118414964 ], [ -95.322166973723043, 29.369865118016001 ], [ -95.322294973654365, 29.369902118285413 ], [ -95.322491974406901, 29.370006118215407 ], [ -95.322550974127552, 29.370029118344998 ], [ -95.322836974154001, 29.370178118516002 ], [ -95.322977974744745, 29.370381118368766 ], [ -95.323321974146921, 29.371012118306908 ], [ -95.323243974852915, 29.371135118673266 ], [ -95.323223974118562, 29.37125611830167 ], [ -95.32322697455659, 29.371380118559809 ], [ -95.323484974006263, 29.371814118415788 ], [ -95.323831974690719, 29.37227011904417 ], [ -95.323850974905355, 29.372295118742024 ], [ -95.32429597474156, 29.37266211884268 ], [ -95.324713975243199, 29.372593118870167 ], [ -95.325210975151663, 29.372089118317799 ], [ -95.325917975349611, 29.371814119066848 ], [ -95.326204975114663, 29.371883119071974 ], [ -95.326440974858798, 29.372158119020465 ], [ -95.326649974814984, 29.372800118717365 ], [ -95.327119975405452, 29.37335011908608 ], [ -95.327459975078355, 29.373579118977421 ], [ -95.327695975262941, 29.373579118666065 ], [ -95.327904976161022, 29.373487119388443 ], [ -95.327904975155278, 29.373121118575071 ], [ -95.328244975866482, 29.37293811860399 ], [ -95.32848097582017, 29.372090118742982 ], [ -95.328742976241131, 29.371884118388451 ], [ -95.329134975700796, 29.372045118983653 ], [ -95.329212976084136, 29.372319118494509 ], [ -95.329212975636807, 29.373076118921695 ], [ -95.32950097656952, 29.373419118561383 ], [ -95.329866976627414, 29.373351118959143 ], [ -95.330075975791061, 29.373030118467675 ], [ -95.330415976210247, 29.372916118632407 ], [ -95.331069976366905, 29.372847118622161 ], [ -95.332011977076689, 29.372916118644717 ], [ -95.332220976719611, 29.373122118649786 ], [ -95.332298976723379, 29.373512118877823 ], [ -95.331879976988589, 29.374520118808043 ], [ -95.331879976752035, 29.374886119113857 ], [ -95.332088976548505, 29.375001118992294 ], [ -95.332455976872936, 29.374841119416875 ], [ -95.332586977122276, 29.374611118945456 ], [ -95.332821976984917, 29.374428119372865 ], [ -95.333501977055477, 29.374589118850473 ], [ -95.334364977600487, 29.375253119333788 ], [ -95.334835977354871, 29.375460119561303 ], [ -95.335070977853306, 29.37541411955128 ], [ -95.33517597762237, 29.37525411896705 ], [ -95.335201977540805, 29.374933119154214 ], [ -95.33619597835434, 29.374612118838421 ], [ -95.336535978370009, 29.374635118600676 ], [ -95.336928977910659, 29.37479611855079 ], [ -95.337372978535186, 29.375254119071993 ], [ -95.337581977918873, 29.375667119143269 ], [ -95.337869978170446, 29.375827119181782 ], [ -95.338445978568828, 29.375644118937025 ], [ -95.338889978863946, 29.375254118659694 ], [ -95.33902097905532, 29.375186119044958 ], [ -95.339622978722716, 29.375255119354023 ], [ -95.340066979310777, 29.37546111940993 ], [ -95.34051197943684, 29.375438119347884 ], [ -95.340720979204676, 29.375255119221574 ], [ -95.340825979323071, 29.375026119033663 ], [ -95.341034978647102, 29.374888118734173 ], [ -95.341583979409748, 29.374820118454085 ], [ -95.341793978839931, 29.374705118504625 ], [ -95.342133979630319, 29.374774118973171 ], [ -95.3424739796978, 29.374912118440935 ], [ -95.342891979235574, 29.375255119159068 ], [ -95.343571979349122, 29.375599119117442 ], [ -95.343964979802479, 29.375897119093004 ], [ -95.344277980348821, 29.375920118664794 ], [ -95.345350979933812, 29.375439118481058 ], [ -95.345533980361807, 29.375256118689197 ], [ -95.345795980799863, 29.374866118934943 ], [ -95.346292980157244, 29.374729118514338 ], [ -95.347286981032468, 29.374775118738388 ], [ -95.347678980823261, 29.374706118243175 ], [ -95.348410981072917, 29.374340118523769 ], [ -95.34875198156432, 29.374363118111066 ], [ -95.349404981287591, 29.374638118821302 ], [ -95.350084981148555, 29.374500118677691 ], [ -95.350346981717919, 29.374729118641625 ], [ -95.350294981422621, 29.374981118096208 ], [ -95.35005898130099, 29.37525611840049 ], [ -95.34987598133192, 29.375440119014005 ], [ -95.349901981571364, 29.376035119066227 ], [ -95.35045098168996, 29.376768118560516 ], [ -95.350764982104053, 29.376677118513811 ], [ -95.351235982021791, 29.376104119109769 ], [ -95.351497981311709, 29.376081119024402 ], [ -95.351680981962843, 29.376173118746671 ], [ -95.351811981511872, 29.376425119078469 ], [ -95.35183798184849, 29.377112119151718 ], [ -95.35212498211304, 29.377410119321141 ], [ -95.352412981827783, 29.377433118742143 ], [ -95.352752982328596, 29.377319119266172 ], [ -95.35311898226783, 29.376952118494852 ], [ -95.353537981967833, 29.376975118741775 ], [ -95.354191982910109, 29.377617118873143 ], [ -95.354818983215949, 29.377960118811476 ], [ -95.355106982746705, 29.378258118753191 ], [ -95.355315982493622, 29.378350119048861 ], [ -95.355760982705135, 29.378327119386508 ], [ -95.356623983352932, 29.377983118803886 ], [ -95.356963983514675, 29.37814411856165 ], [ -95.357303983938522, 29.378717118960843 ], [ -95.357486983769377, 29.378739118697364 ], [ -95.357486983783048, 29.379106119203765 ], [ -95.357722983414774, 29.379312118987826 ], [ -95.357722983518059, 29.379702119594512 ], [ -95.357486983202151, 29.379931119612856 ], [ -95.356885983173711, 29.380091119474855 ], [ -95.356806982955987, 29.380251119099412 ], [ -95.356832983625893, 29.380778119597139 ], [ -95.357329984048846, 29.381924119465008 ], [ -95.357748983313215, 29.382474119585073 ], [ -95.357782983426631, 29.38256412024554 ], [ -95.358114983464276, 29.383436119627596 ], [ -95.35850698404407, 29.383642119745062 ], [ -95.358559983711942, 29.383894119649764 ], [ -95.358454984147173, 29.384146120125489 ], [ -95.35811498363303, 29.384605120212409 ], [ -95.358114983699281, 29.384994120196652 ], [ -95.358137984364049, 29.38504712042824 ], [ -95.35824598411152, 29.38529212061902 ], [ -95.358192983658881, 29.385819120733981 ], [ -95.357904984020962, 29.386369121009643 ], [ -95.357931984253455, 29.386804121148796 ], [ -95.358428984097912, 29.387858120476949 ], [ -95.358349984160654, 29.388568121478979 ], [ -95.358114984375874, 29.388866121551111 ], [ -95.357904983938951, 29.388980120745245 ], [ -95.357381983690857, 29.389026121151112 ], [ -95.357146983573159, 29.389164120782123 ], [ -95.357041983849797, 29.389324121479202 ], [ -95.357250984153012, 29.389966121235311 ], [ -95.35766998424414, 29.390676121468104 ], [ -95.357930984374775, 29.39079012163285 ], [ -95.35800998392331, 29.391020121274298 ], [ -95.358349984490914, 29.391317121508081 ], [ -95.358480983929809, 29.391592121918194 ], [ -95.358427984187003, 29.391913121855566 ], [ -95.357512984032041, 29.392990122269236 ], [ -95.357485984240057, 29.394204122029585 ], [ -95.357328983896636, 29.394616122346267 ], [ -95.356831984259088, 29.394937122205786 ], [ -95.35581198421292, 29.39539512279265 ], [ -95.354895983835377, 29.395624122533729 ], [ -95.354320983517496, 29.395945122286989 ], [ -95.353901983003297, 29.39608212273167 ], [ -95.353535983182169, 29.396426122550771 ], [ -95.353064983650839, 29.397823122731012 ], [ -95.352567983222229, 29.398282123359191 ], [ -95.351572983148671, 29.398785123038341 ], [ -95.351389982298528, 29.399037123470308 ], [ -95.351389982411987, 29.399221123527536 ], [ -95.351625982467397, 29.399427123449282 ], [ -95.352802982891347, 29.399565123446742 ], [ -95.353247983159889, 29.399794123413749 ], [ -95.353613983101766, 29.400114123798939 ], [ -95.353717983499877, 29.400389123262698 ], [ -95.353691983427311, 29.400756124104781 ], [ -95.353377983220696, 29.401168123851889 ], [ -95.353377983256095, 29.401558123485085 ], [ -95.353246983529047, 29.401741123607561 ], [ -95.352854983548966, 29.401970124359408 ], [ -95.352426982840456, 29.402043124060089 ], [ -95.351520983289262, 29.402199124102129 ], [ -95.350970982497628, 29.402611123869853 ], [ -95.350970982989551, 29.403138124070384 ], [ -95.351153982647034, 29.40350512468039 ], [ -95.351519983084813, 29.403734124852523 ], [ -95.35222698342848, 29.403620124316614 ], [ -95.353115983200794, 29.403322124598919 ], [ -95.353351983305757, 29.403322124008952 ], [ -95.353665983674645, 29.403505124103361 ], [ -95.353848983976889, 29.403803124086348 ], [ -95.354659983728538, 29.404651124850265 ], [ -95.354685983584289, 29.404742124310541 ], [ -95.355522983586084, 29.405109124925833 ], [ -95.355784983799609, 29.405292124877693 ], [ -95.355915983998088, 29.405751124695016 ], [ -95.355941984101037, 29.406438125053889 ], [ -95.355810984021701, 29.406827125191505 ], [ -95.355365984389266, 29.407538125221979 ], [ -95.355418984276255, 29.407721125054458 ], [ -95.355653984134619, 29.408019124943802 ], [ -95.356098984719424, 29.408294124854446 ], [ -95.356281984418175, 29.408660125248044 ], [ -95.3566219845614, 29.408981125096272 ], [ -95.356987984236213, 29.409096125437802 ], [ -95.35727598499065, 29.409370125361718 ], [ -95.357511985043573, 29.409806125703394 ], [ -95.357851985314468, 29.410149125561961 ], [ -95.358139985290947, 29.410310125517768 ], [ -95.358610984876464, 29.410356125907356 ], [ -95.358714984679878, 29.410654125776414 ], [ -95.359133984817845, 29.410997125203629 ], [ -95.359866985636032, 29.411089125909989 ], [ -95.360180985142691, 29.411181125866161 ], [ -95.360284985500144, 29.41143312611047 ], [ -95.36015398517911, 29.411845125391785 ], [ -95.360179985381308, 29.412234126157841 ], [ -95.360258986104171, 29.412303125689586 ], [ -95.360363985816832, 29.41299012567676 ], [ -95.360703986210737, 29.413769126437234 ], [ -95.361069985984088, 29.414159126425957 ], [ -95.361619985912853, 29.414525126690112 ], [ -95.361854986518452, 29.415098126737529 ], [ -95.361880986301557, 29.415556126713387 ], [ -95.362116986429385, 29.41578612690385 ], [ -95.362090986292088, 29.416152126552614 ], [ -95.361723986312001, 29.41661012669891 ], [ -95.360834985640608, 29.417389127013362 ], [ -95.360493986003632, 29.418351126757699 ], [ -95.36010198627369, 29.418741127674263 ], [ -95.360022986119446, 29.418993126975728 ], [ -95.360075985649274, 29.419955127501403 ], [ -95.359839985960349, 29.42052812751751 ], [ -95.359865986280624, 29.421078127593894 ], [ -95.359996986240972, 29.42128412765112 ], [ -95.360048986120887, 29.42268112844231 ], [ -95.360127985760926, 29.42272712770643 ], [ -95.360389986570098, 29.423689128379575 ], [ -95.360886986004303, 29.424262128372895 ], [ -95.362247986461142, 29.425522128567096 ], [ -95.362351986542976, 29.426049128747259 ], [ -95.362351986565614, 29.426347128692566 ], [ -95.362613987367183, 29.427057128985581 ], [ -95.36307598738982, 29.427498128753395 ], [ -95.363189986663912, 29.427607128790719 ], [ -95.36355598721434, 29.428272129179877 ], [ -95.363548987112509, 29.428332129452947 ], [ -95.363543987075928, 29.42838212950284 ], [ -95.363513987347247, 29.428661129439778 ], [ -95.363505987109761, 29.428736129430781 ], [ -95.363503986837927, 29.428753129467417 ], [ -95.363425987063707, 29.42885512903036 ], [ -95.363346986941878, 29.428959128857048 ], [ -95.362936987459889, 29.429198129308233 ], [ -95.362672987156543, 29.429415129605928 ], [ -95.362613987202153, 29.429463129002901 ], [ -95.36253598730886, 29.429829129841512 ], [ -95.36261398750878, 29.430081129077248 ], [ -95.363126987368673, 29.430486129315717 ], [ -95.363398986775636, 29.430700129972639 ], [ -95.363738987800872, 29.431158129712585 ], [ -95.363765987493821, 29.43131912940331 ], [ -95.363922987840198, 29.431479129505675 ], [ -95.36400698789781, 29.431694129940958 ], [ -95.364094987039337, 29.431921130016331 ], [ -95.3642889875522, 29.432418129835273 ], [ -95.364524987899088, 29.432739129588924 ], [ -95.365283987792154, 29.433014129971401 ], [ -95.365806987909934, 29.433518129663891 ], [ -95.366199988106629, 29.433770130369133 ], [ -95.366513988289512, 29.434091130633746 ], [ -95.36677498801096, 29.434640130156211 ], [ -95.36685398807812, 29.434984130468461 ], [ -95.367036988176736, 29.435259130840063 ], [ -95.367350988632396, 29.435374130214662 ], [ -95.367926988110526, 29.435992130567563 ], [ -95.368423988421526, 29.436313130918325 ], [ -95.368816989166021, 29.436313130505361 ], [ -95.369156988808015, 29.436175130618405 ], [ -95.369784989534836, 29.435717130255412 ], [ -95.370543989441742, 29.435717130488189 ], [ -95.370630989712268, 29.435740130254814 ], [ -95.371800989741374, 29.43606113014626 ], [ -95.373108990276975, 29.436587130542303 ], [ -95.373760989785609, 29.436689130420344 ], [ -95.373841990046557, 29.436702130774904 ], [ -95.37433898994783, 29.437023130137838 ], [ -95.374783990567352, 29.437710131052992 ], [ -95.37475799061842, 29.437779130750233 ], [ -95.37512499056912, 29.438328131140775 ], [ -95.375124990437101, 29.439107131367113 ], [ -95.375228990832156, 29.439245130765141 ], [ -95.375384990152952, 29.439368131330518 ], [ -95.375490990667814, 29.439451130758052 ], [ -95.376432991147055, 29.439543131156011 ], [ -95.37690499126154, 29.43972613106915 ], [ -95.377244991154782, 29.440115130829028 ], [ -95.37753299167008, 29.441123131456319 ], [ -95.377715991475853, 29.441352131580658 ], [ -95.378134991901959, 29.441604131389937 ], [ -95.378658991655215, 29.442223131060231 ], [ -95.378998991430024, 29.443002131627104 ], [ -95.378867991645095, 29.444078131451473 ], [ -95.378998992236006, 29.444651131519219 ], [ -95.379129992073814, 29.44476613200224 ], [ -95.379862991626752, 29.444766131854916 ], [ -95.380045991825966, 29.44483413182483 ], [ -95.38015099166941, 29.444995132087463 ], [ -95.38030799174507, 29.445613132091673 ], [ -95.380543992665309, 29.44577313213497 ], [ -95.382009993126843, 29.446094132490266 ], [ -95.382428992785307, 29.446369131963053 ], [ -95.382951993037267, 29.447446132352507 ], [ -95.383344993462302, 29.448041132611259 ], [ -95.383763992890337, 29.448408132683621 ], [ -95.384915993948468, 29.448774132314661 ], [ -95.385648993686544, 29.449370133107944 ], [ -95.385857994019815, 29.449438133135875 ], [ -95.386171993660199, 29.449370133047349 ], [ -95.387061994058982, 29.44898013223553 ], [ -95.388474994391359, 29.448750132354082 ], [ -95.388998994364101, 29.448750132101825 ], [ -95.389365995010394, 29.449048132800588 ], [ -95.389417994280635, 29.449804132468806 ], [ -95.389548994921228, 29.450056132645262 ], [ -95.389862995085565, 29.450331133067674 ], [ -95.390883995595445, 29.450720132896535 ], [ -95.391145995635242, 29.451064133312297 ], [ -95.392036995095779, 29.453194133451667 ], [ -95.391983995964608, 29.453767133536591 ], [ -95.391879995871278, 29.453950133499152 ], [ -95.391015995498734, 29.454088133853421 ], [ -95.390623995283036, 29.454340133246042 ], [ -95.390439995412649, 29.454638133607709 ], [ -95.39046699468507, 29.455188133980833 ], [ -95.39054499562701, 29.455325134079938 ], [ -95.390492995176473, 29.455806134007272 ], [ -95.390335994939235, 29.456150133638406 ], [ -95.389890995583826, 29.456035133783146 ], [ -95.389681995360718, 29.456104133766509 ], [ -95.389550994549808, 29.45647113432786 ], [ -95.388634994468006, 29.45704413381322 ], [ -95.387534994420022, 29.457090134025968 ], [ -95.387351994396994, 29.457227134492804 ], [ -95.387037994711875, 29.458075134052475 ], [ -95.38656699394069, 29.458258134042989 ], [ -95.385572994316178, 29.458511134487029 ], [ -95.385127993536997, 29.458763135065677 ], [ -95.384577993659931, 29.459496135163171 ], [ -95.384185993785209, 29.459908134640383 ], [ -95.3840279940854, 29.460229134922802 ], [ -95.384034993862173, 29.460348134941757 ], [ -95.384080993472182, 29.461145135227397 ], [ -95.384237993476873, 29.461535134880091 ], [ -95.384682993818217, 29.461833135593121 ], [ -95.385652994106991, 29.462208135609522 ], [ -95.385808994524936, 29.462268135431106 ], [ -95.386306994267244, 29.462772135443181 ], [ -95.386829995059315, 29.463115135064456 ], [ -95.386986994917066, 29.463321135684151 ], [ -95.387013994802246, 29.463848135775542 ], [ -95.387144994767127, 29.464352135745436 ], [ -95.38677899499055, 29.465200136231708 ], [ -95.386568994702586, 29.465750136258691 ], [ -95.385600994251959, 29.466689136505327 ], [ -95.384474994322872, 29.468179136932751 ], [ -95.384344993971183, 29.468476136967968 ], [ -95.384029994202962, 29.468729136843287 ], [ -95.383703994118903, 29.468845136777208 ], [ -95.383323993610077, 29.468981136450335 ], [ -95.383035994062382, 29.469714137147943 ], [ -95.382485994144858, 29.470172137333122 ], [ -95.381909994105357, 29.470951137288637 ], [ -95.381674993318413, 29.471134137052339 ], [ -95.381150993902494, 29.471066137379978 ], [ -95.380731993816738, 29.471135137633034 ], [ -95.380600993496174, 29.471364137351557 ], [ -95.380462993115856, 29.471623137160826 ], [ -95.380290993194421, 29.47194713725694 ], [ -95.380234993034975, 29.472051137875923 ], [ -95.37918799287759, 29.472670138065915 ], [ -95.378847993036104, 29.473013137441782 ], [ -95.378506993305891, 29.473563138186911 ], [ -95.378454992523032, 29.47383813787895 ], [ -95.378611992596646, 29.474251138378637 ], [ -95.378664993273432, 29.474846138523208 ], [ -95.378679992737815, 29.474897138299728 ], [ -95.385383994992921, 29.47718013823852 ], [ -95.391030995956029, 29.47910413898969 ], [ -95.393859996796976, 29.480068139028138 ], [ -95.398342998588205, 29.481564138637484 ], [ -95.398317998353178, 29.481623139050679 ], [ -95.398603998091417, 29.481722138759821 ], [ -95.399405998542775, 29.481998139088823 ], [ -95.400232998873491, 29.482284139371952 ], [ -95.400740998555008, 29.482459138715964 ], [ -95.401187999444815, 29.482614139167076 ], [ -95.401251998960817, 29.482534138795529 ], [ -95.402163998984662, 29.481413138835411 ], [ -95.403505999345924, 29.479737138679795 ], [ -95.403647999756416, 29.479560138013589 ], [ -95.403664000036287, 29.47953913811849 ], [ -95.403879999766559, 29.479267138076771 ], [ -95.404003999425953, 29.479109137772042 ], [ -95.404437000195159, 29.478576138506245 ], [ -95.405034999727889, 29.477802138032832 ], [ -95.406491000529471, 29.475994137881049 ], [ -95.407142000216794, 29.475181137318248 ], [ -95.409522000551874, 29.472175136306952 ], [ -95.410050000801434, 29.471490136216381 ], [ -95.411941001284504, 29.469122135751647 ], [ -95.412384001071175, 29.468549135498822 ], [ -95.412450001604398, 29.468464135750583 ], [ -95.413135001427122, 29.467621135647406 ], [ -95.413670001372566, 29.46694513573954 ], [ -95.414264001392226, 29.466167134881239 ], [ -95.414878001591291, 29.465395135070182 ], [ -95.415185002033766, 29.46504513457613 ], [ -95.415210001672534, 29.465013135091986 ], [ -95.415391002398138, 29.464787134932482 ], [ -95.417314002712246, 29.462387133931799 ], [ -95.418256002211081, 29.461192133946565 ], [ -95.418877003044173, 29.460428133610286 ], [ -95.421721003695438, 29.456835133146654 ], [ -95.422603003138263, 29.455567132460665 ], [ -95.423214003988761, 29.454623132907312 ], [ -95.423263003811087, 29.454540132789027 ], [ -95.423625003558271, 29.453985132040859 ], [ -95.423953003512906, 29.453450132568758 ], [ -95.424062004020129, 29.45324113191263 ], [ -95.424411003404131, 29.452575132238913 ], [ -95.424512004157563, 29.452381132422406 ], [ -95.424547003447941, 29.452315131737837 ], [ -95.424595003545605, 29.452223132278224 ], [ -95.424644003688243, 29.452128131850898 ], [ -95.424657004181128, 29.452099131531899 ], [ -95.425434004117889, 29.450408131549043 ], [ -95.426033004229666, 29.448858131338405 ], [ -95.426610004064713, 29.44702413050496 ], [ -95.426696004305825, 29.446698130370436 ], [ -95.426738003709417, 29.446517130379721 ], [ -95.427097004435723, 29.444983130288218 ], [ -95.427312004625279, 29.443772130474454 ], [ -95.427407004097986, 29.44316312975144 ], [ -95.427415004509839, 29.443112129767997 ], [ -95.427545003730927, 29.442052129449202 ], [ -95.427626003748117, 29.440979129955611 ], [ -95.427648004209999, 29.440693129298744 ], [ -95.427656004334196, 29.440583129334605 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 764, "Tract": "48201522002", "Area_SqMi": 0.35015975178321973, "total_2009": 131, "total_2010": 137, "total_2011": 107, "total_2012": 121, "total_2013": 145, "total_2014": 143, "total_2015": 143, "total_2016": 169, "total_2017": 157, "total_2018": 146, "total_2019": 108, "total_2020": 130, "age1": 19, "age2": 62, "age3": 24, "earn1": 9, "earn2": 41, "earn3": 55, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 1, "naics_s12": 5, "naics_s13": 0, "naics_s14": 37, "naics_s15": 39, "naics_s16": 0, "naics_s17": 0, "naics_s18": 8, "naics_s19": 5, "naics_s20": 0, "race1": 62, "race2": 22, "race3": 2, "race4": 18, "race5": 0, "race6": 1, "ethnicity1": 76, "ethnicity2": 29, "edu1": 22, "edu2": 14, "edu3": 25, "edu4": 25, "Shape_Length": 14174.214485506134, "Shape_Area": 9761854.5753114522, "total_2021": 157, "total_2022": 105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.536895049291985, 29.824017204442132 ], [ -95.536899049326351, 29.822484204176085 ], [ -95.536003048794043, 29.822199204509719 ], [ -95.535626048294304, 29.822095203644139 ], [ -95.535273048245415, 29.821998204242334 ], [ -95.534248048425482, 29.821862203779116 ], [ -95.533333048370565, 29.821873203777219 ], [ -95.531981047136583, 29.821881203828877 ], [ -95.53086104728014, 29.821909204332872 ], [ -95.529881046861078, 29.821915204480817 ], [ -95.529539046882434, 29.821917204123299 ], [ -95.528239047117495, 29.821930204112402 ], [ -95.527527046526743, 29.821937204010755 ], [ -95.527473046593769, 29.821937204556569 ], [ -95.52737204644356, 29.821938204638222 ], [ -95.527348046845148, 29.821938204063141 ], [ -95.527141045965081, 29.821942204610487 ], [ -95.526288046140934, 29.821950204236142 ], [ -95.52629904578788, 29.823332204532601 ], [ -95.5262990458871, 29.823357204215966 ], [ -95.526299046211932, 29.823373204850334 ], [ -95.52630004601464, 29.823467204529113 ], [ -95.52630004643909, 29.823508204845218 ], [ -95.526301045842686, 29.823993204806975 ], [ -95.526302046274694, 29.824238204432515 ], [ -95.52630904598584, 29.824633204948213 ], [ -95.526310046403069, 29.824650204502102 ], [ -95.526316045885025, 29.824754204642748 ], [ -95.52631704603958, 29.824804204619717 ], [ -95.526320046411584, 29.824989205162471 ], [ -95.526333046035177, 29.825383204772454 ], [ -95.526334046426228, 29.826260205506959 ], [ -95.526342046236138, 29.827047205535425 ], [ -95.526347045855246, 29.827246205808372 ], [ -95.52635304669829, 29.827578205732404 ], [ -95.526358046340803, 29.827848205438773 ], [ -95.526366046246466, 29.828490205901836 ], [ -95.526362046176615, 29.82908520598334 ], [ -95.526376046257212, 29.83045220647422 ], [ -95.526382046105354, 29.831031206509124 ], [ -95.526398046402221, 29.832524206499773 ], [ -95.528322046888661, 29.832478206727789 ], [ -95.528435047238119, 29.832483206387508 ], [ -95.529247047753017, 29.832474206420518 ], [ -95.529684046957286, 29.832472206441935 ], [ -95.530790047854822, 29.832451206046535 ], [ -95.531571047657295, 29.832431206759161 ], [ -95.531557048401922, 29.8317422057968 ], [ -95.531548047977083, 29.831313206225456 ], [ -95.53155904799263, 29.83056720554735 ], [ -95.531545047369434, 29.829821206113824 ], [ -95.531538047663474, 29.829072205891098 ], [ -95.531539047244266, 29.828332205643555 ], [ -95.531525047279175, 29.827595205644126 ], [ -95.531787047897183, 29.827586205757957 ], [ -95.533854048607381, 29.827565205062019 ], [ -95.536881048840996, 29.827524204757847 ], [ -95.536886048680657, 29.826881205424467 ], [ -95.536889048523662, 29.826423204723234 ], [ -95.53689304913452, 29.82581720444302 ], [ -95.536892048917736, 29.825228204635202 ], [ -95.536893049169237, 29.824952204985259 ], [ -95.536895049291985, 29.824017204442132 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 765, "Tract": "48339691302", "Area_SqMi": 1.6195871358280653, "total_2009": 696, "total_2010": 737, "total_2011": 799, "total_2012": 942, "total_2013": 938, "total_2014": 855, "total_2015": 902, "total_2016": 864, "total_2017": 911, "total_2018": 886, "total_2019": 848, "total_2020": 881, "age1": 238, "age2": 418, "age3": 216, "earn1": 265, "earn2": 310, "earn3": 297, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 6, "naics_s06": 4, "naics_s07": 42, "naics_s08": 0, "naics_s09": 3, "naics_s10": 21, "naics_s11": 15, "naics_s12": 41, "naics_s13": 0, "naics_s14": 49, "naics_s15": 2, "naics_s16": 254, "naics_s17": 35, "naics_s18": 313, "naics_s19": 71, "naics_s20": 0, "race1": 657, "race2": 133, "race3": 5, "race4": 62, "race5": 3, "race6": 12, "ethnicity1": 613, "ethnicity2": 259, "edu1": 143, "edu2": 156, "edu3": 197, "edu4": 138, "Shape_Length": 45207.66580338221, "Shape_Area": 45151317.395800203, "total_2021": 888, "total_2022": 872 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.509634057497578, 30.156925272864871 ], [ -95.509644057146645, 30.156702272622429 ], [ -95.509604057267495, 30.155991273252706 ], [ -95.509602057304306, 30.155937272825376 ], [ -95.50953805713884, 30.155508273066609 ], [ -95.509441057251109, 30.155102273119024 ], [ -95.509316057311267, 30.154684272345868 ], [ -95.509185056685638, 30.154327272609613 ], [ -95.508970057048884, 30.15387727228013 ], [ -95.508767056535262, 30.153493272255535 ], [ -95.508607056277924, 30.153244271950747 ], [ -95.508536057107037, 30.153132272261885 ], [ -95.508482056795742, 30.153039272068618 ], [ -95.508157056197533, 30.152618272097335 ], [ -95.50759405614707, 30.151734272254679 ], [ -95.507176055747792, 30.15095827185586 ], [ -95.506903055995849, 30.150305272289124 ], [ -95.506700055661824, 30.149790271826923 ], [ -95.506648056195672, 30.149665271634756 ], [ -95.506343056406749, 30.148876271585454 ], [ -95.505799055938482, 30.147625271797086 ], [ -95.504702055252281, 30.145132270635621 ], [ -95.504599055679407, 30.145136271193309 ], [ -95.504175055302497, 30.145174270960378 ], [ -95.503713055487921, 30.145284271046815 ], [ -95.503536055165114, 30.145278270859116 ], [ -95.503485054538586, 30.145234270653102 ], [ -95.503492054809527, 30.145196270717683 ], [ -95.503555055141277, 30.145103271162885 ], [ -95.50377705524825, 30.144910270717862 ], [ -95.503846055460372, 30.144800271015789 ], [ -95.50385305529862, 30.144734270454606 ], [ -95.503827055211076, 30.144613271143015 ], [ -95.50380205486654, 30.14454727102753 ], [ -95.503751055529122, 30.144503270936479 ], [ -95.503695055228562, 30.144481270569592 ], [ -95.503612055553859, 30.144476270410678 ], [ -95.503530055497393, 30.144481270803212 ], [ -95.503416054925523, 30.144525271072229 ], [ -95.503353055255175, 30.144564271180421 ], [ -95.503226054488337, 30.144795270692114 ], [ -95.503163054847633, 30.144789271204129 ], [ -95.503132055257041, 30.144756270789152 ], [ -95.503094054616739, 30.144630270786543 ], [ -95.503056054403046, 30.144580270860693 ], [ -95.503030055029015, 30.144525270672595 ], [ -95.502980054720297, 30.144327270819122 ], [ -95.50294205478167, 30.144234270411548 ], [ -95.502847054934705, 30.144091270638977 ], [ -95.502702054265683, 30.144025270594284 ], [ -95.502575054845138, 30.144014270325343 ], [ -95.502436055189079, 30.144025270875325 ], [ -95.502360054941974, 30.144074270852968 ], [ -95.502297054494193, 30.144151270964294 ], [ -95.50224605454288, 30.144184270360487 ], [ -95.502202054170866, 30.144206270447192 ], [ -95.502113054579155, 30.144222271069861 ], [ -95.501930054809279, 30.144145270487638 ], [ -95.501696054922647, 30.144096270691247 ], [ -95.501601054573072, 30.144052270767784 ], [ -95.5016900550348, 30.144408271196923 ], [ -95.502263054725844, 30.147169271604994 ], [ -95.502302054858077, 30.147982271548717 ], [ -95.500824054628552, 30.147975271960711 ], [ -95.500299054702424, 30.147560271369088 ], [ -95.499438054132099, 30.147576271826253 ], [ -95.497885053363916, 30.147594271628392 ], [ -95.495042052627454, 30.14763227130662 ], [ -95.493619052554052, 30.147658272210947 ], [ -95.492583052646339, 30.147664272195819 ], [ -95.492157051976548, 30.147667271968174 ], [ -95.489103051593531, 30.147703272324016 ], [ -95.489093051746863, 30.146847272029714 ], [ -95.489081051169507, 30.146005271458431 ], [ -95.489059051465759, 30.145149271463673 ], [ -95.489054051372364, 30.144307271608369 ], [ -95.489034051060784, 30.143393271240811 ], [ -95.489028050704761, 30.142403270888675 ], [ -95.489001050991405, 30.141420270740117 ], [ -95.488987051588708, 30.140429270205331 ], [ -95.488972051156125, 30.139428270270066 ], [ -95.488958051439596, 30.138429269865131 ], [ -95.488952051058803, 30.137457270157849 ], [ -95.488936051062367, 30.136461269982213 ], [ -95.488916050452431, 30.135473269640457 ], [ -95.488887050978235, 30.132697269099726 ], [ -95.488381051078534, 30.132698268978849 ], [ -95.485490050273526, 30.132707268859559 ], [ -95.484950050218274, 30.1327182690498 ], [ -95.482359049207474, 30.132746269598172 ], [ -95.482214049268649, 30.132748268942553 ], [ -95.482098048639784, 30.132752269369306 ], [ -95.482032048670291, 30.13275426879984 ], [ -95.481941048541131, 30.132752269546589 ], [ -95.481674048469273, 30.132764269514915 ], [ -95.481390049199334, 30.132793269201233 ], [ -95.481231048280165, 30.132810269451873 ], [ -95.48088004857982, 30.132870268867919 ], [ -95.48070704913242, 30.132909269575133 ], [ -95.480454048162883, 30.132977269678474 ], [ -95.480284048849938, 30.133028268925717 ], [ -95.480036047999008, 30.133115269126819 ], [ -95.479793048331317, 30.13321326889708 ], [ -95.479634048205085, 30.133286269092945 ], [ -95.479401048599058, 30.133401269060659 ], [ -95.479197048519609, 30.133492269601916 ], [ -95.477747047842882, 30.134179270027342 ], [ -95.477763047951456, 30.134512269264746 ], [ -95.478317048641784, 30.135107269494203 ], [ -95.478740048163402, 30.135955269826376 ], [ -95.479003048312109, 30.136138269807159 ], [ -95.480321048305441, 30.136457269695452 ], [ -95.480515048680644, 30.136677269670852 ], [ -95.480744049273312, 30.136938269807032 ], [ -95.481851049606973, 30.137303270490076 ], [ -95.482431049757565, 30.137601270471947 ], [ -95.483196049422574, 30.137783270246345 ], [ -95.483802049845082, 30.138241270046368 ], [ -95.484672050264948, 30.138515269998294 ], [ -95.484541049514362, 30.13899627061247 ], [ -95.484699049771081, 30.139225270736603 ], [ -95.485456050605848, 30.139428270016634 ], [ -95.48548405003541, 30.139449270437087 ], [ -95.485701050631661, 30.139659270249119 ], [ -95.486202050411663, 30.139888270633556 ], [ -95.486229050352406, 30.14039227049204 ], [ -95.486098050114052, 30.140987270678604 ], [ -95.486125050693275, 30.141445270598826 ], [ -95.486310050825566, 30.141606270998089 ], [ -95.486758050910368, 30.141720270459043 ], [ -95.486943050524147, 30.14194927044089 ], [ -95.48696905024461, 30.142109270747103 ], [ -95.487444050816507, 30.142521270842042 ], [ -95.487445050442091, 30.143025271333599 ], [ -95.487524050775136, 30.143231271510814 ], [ -95.487472051123319, 30.143529271052536 ], [ -95.487552050460067, 30.144147271085814 ], [ -95.487657051401555, 30.144261270973047 ], [ -95.487552051251569, 30.144628271485391 ], [ -95.48715705067363, 30.144857271491887 ], [ -95.487105051048346, 30.145224271173891 ], [ -95.48678905085707, 30.145476271580421 ], [ -95.486763050473073, 30.14559127134843 ], [ -95.486499050848295, 30.145751271481632 ], [ -95.486553050294674, 30.146026271958583 ], [ -95.486658051156624, 30.146072272101712 ], [ -95.486685050473696, 30.146232272117036 ], [ -95.486869050582584, 30.146370271414501 ], [ -95.48686905105339, 30.146576271712636 ], [ -95.486316050651666, 30.14664527144382 ], [ -95.486449050749428, 30.14730927188921 ], [ -95.486344050384446, 30.147813271946305 ], [ -95.486222050459631, 30.147923272260794 ], [ -95.485686050990353, 30.148409272665564 ], [ -95.485686050992399, 30.148609271991219 ], [ -95.485686050190566, 30.148936272065121 ], [ -95.485581050617867, 30.149051272728489 ], [ -95.485661050953667, 30.149532272069539 ], [ -95.485608051017621, 30.149875272739475 ], [ -95.485451050948996, 30.150196272289048 ], [ -95.485346051099341, 30.150654272506831 ], [ -95.485162050324604, 30.150884272832425 ], [ -95.485162050994276, 30.151227272549438 ], [ -95.4845560503353, 30.15154827307143 ], [ -95.484319050829185, 30.151823273205959 ], [ -95.483608050444971, 30.151984273358995 ], [ -95.483345050474483, 30.152237272917802 ], [ -95.482791049865128, 30.152329273143081 ], [ -95.482633050445102, 30.152581272777859 ], [ -95.482582050545133, 30.153772273460998 ], [ -95.482793050633006, 30.153978273602704 ], [ -95.482767049838927, 30.154276273356817 ], [ -95.482715050518834, 30.15437227399028 ], [ -95.482828050209974, 30.154378273294494 ], [ -95.483024050157454, 30.154391273470996 ], [ -95.483287050051302, 30.154401273875862 ], [ -95.483991050451692, 30.154480273942077 ], [ -95.48435705079703, 30.154539273167565 ], [ -95.484724050703136, 30.154623273785027 ], [ -95.485353050805045, 30.154782273620011 ], [ -95.486143051418338, 30.155023273516139 ], [ -95.486863051716497, 30.155281273592891 ], [ -95.487630051234134, 30.155579273355443 ], [ -95.488619051737743, 30.156014273482771 ], [ -95.490397052221709, 30.156831273719121 ], [ -95.492475052367453, 30.157796273916698 ], [ -95.493592052675396, 30.158254273928392 ], [ -95.495511053612489, 30.159151274436478 ], [ -95.496457054105861, 30.159589274049043 ], [ -95.497398054518627, 30.160042274406031 ], [ -95.497613053910399, 30.160149274105976 ], [ -95.498081054841691, 30.160385273855542 ], [ -95.498215054112706, 30.160469273784059 ], [ -95.498575054881528, 30.160692274093837 ], [ -95.498940054762414, 30.160927274209353 ], [ -95.499305054841827, 30.161170274044686 ], [ -95.499663054320479, 30.161419274705921 ], [ -95.500015055191582, 30.161670274401587 ], [ -95.500817055219841, 30.162354274895705 ], [ -95.501612054907042, 30.163040274908735 ], [ -95.50206905523244, 30.16341527463377 ], [ -95.502587055271889, 30.163872274670634 ], [ -95.503089055968033, 30.164341275230541 ], [ -95.503572056004614, 30.164827275112874 ], [ -95.503806055584405, 30.165078275121449 ], [ -95.504030056297466, 30.165329274795443 ], [ -95.504793056538546, 30.166099274707541 ], [ -95.505662056742651, 30.167049275300776 ], [ -95.506778056577247, 30.168442275775092 ], [ -95.507464057458591, 30.16797127530738 ], [ -95.507809057669789, 30.167697275520133 ], [ -95.508265056888035, 30.16725527544174 ], [ -95.508495057426032, 30.166996274762074 ], [ -95.508701057189811, 30.166696275436813 ], [ -95.508884057537259, 30.166401275501059 ], [ -95.509042057328926, 30.166086275091761 ], [ -95.509202057563982, 30.165735274786691 ], [ -95.509338057968847, 30.165334274509842 ], [ -95.509480057659346, 30.164793274632011 ], [ -95.509533057231707, 30.16432427468585 ], [ -95.509546057277404, 30.163951274738693 ], [ -95.509511057812944, 30.163523274292906 ], [ -95.509429057813747, 30.163062274377765 ], [ -95.509314057456706, 30.162531274201239 ], [ -95.509108057116421, 30.161733274357669 ], [ -95.50895505735798, 30.160864274083551 ], [ -95.508922057201346, 30.160088273432908 ], [ -95.50900605722569, 30.159467274021324 ], [ -95.509113057519755, 30.158978273162642 ], [ -95.509259057630075, 30.158531273357617 ], [ -95.50939605667844, 30.158141273456703 ], [ -95.509477056689363, 30.157837272978817 ], [ -95.509538056845145, 30.157594273234629 ], [ -95.509583056729241, 30.157300273495235 ], [ -95.509634057497578, 30.156925272864871 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 766, "Tract": "48339691602", "Area_SqMi": 1.1069469224726531, "total_2009": 3677, "total_2010": 4201, "total_2011": 4519, "total_2012": 3316, "total_2013": 3667, "total_2014": 3701, "total_2015": 3748, "total_2016": 3826, "total_2017": 3949, "total_2018": 4419, "total_2019": 4445, "total_2020": 3685, "age1": 898, "age2": 1859, "age3": 710, "earn1": 881, "earn2": 1112, "earn3": 1474, "naics_s01": 0, "naics_s02": 11, "naics_s03": 7, "naics_s04": 499, "naics_s05": 90, "naics_s06": 34, "naics_s07": 485, "naics_s08": 52, "naics_s09": 12, "naics_s10": 125, "naics_s11": 60, "naics_s12": 344, "naics_s13": 30, "naics_s14": 76, "naics_s15": 43, "naics_s16": 825, "naics_s17": 4, "naics_s18": 601, "naics_s19": 169, "naics_s20": 0, "race1": 2787, "race2": 424, "race3": 24, "race4": 178, "race5": 6, "race6": 48, "ethnicity1": 2462, "ethnicity2": 1005, "edu1": 470, "edu2": 679, "edu3": 757, "edu4": 663, "Shape_Length": 23888.230978578038, "Shape_Area": 30859785.639945257, "total_2021": 3289, "total_2022": 3467 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.467572045199404, 30.141266271480539 ], [ -95.467890045812368, 30.141173271679961 ], [ -95.467567045494974, 30.14046027118756 ], [ -95.466645045779515, 30.138549270555306 ], [ -95.46644904543561, 30.138222270495923 ], [ -95.466240045490565, 30.137900270630151 ], [ -95.46613104473262, 30.137743270540717 ], [ -95.465903045291356, 30.137432270904007 ], [ -95.465784044601762, 30.137280270387748 ], [ -95.465536044851078, 30.13698227071589 ], [ -95.465317045356201, 30.136731270950015 ], [ -95.465014045126253, 30.136412270662678 ], [ -95.463053044443782, 30.134586269948503 ], [ -95.461759043335903, 30.133381269573459 ], [ -95.461432043406319, 30.133077269778489 ], [ -95.459364043584117, 30.131150269364245 ], [ -95.458796042518287, 30.130621269754805 ], [ -95.457976042259645, 30.129858269840078 ], [ -95.457208042395933, 30.129143268907836 ], [ -95.456810041835297, 30.128773269542187 ], [ -95.456715042033551, 30.128684268946127 ], [ -95.456628042707607, 30.128596269666982 ], [ -95.456440041875027, 30.128426269390683 ], [ -95.45629704190749, 30.128305268937996 ], [ -95.456152041686622, 30.128182268848676 ], [ -95.456143042030035, 30.128175269032358 ], [ -95.45584704177331, 30.127954269263515 ], [ -95.455635041578731, 30.127808269119644 ], [ -95.455430041684622, 30.127676269101499 ], [ -95.455220041935789, 30.127561268886843 ], [ -95.454893041993543, 30.127395268907552 ], [ -95.45467004185889, 30.127299269151759 ], [ -95.454331042068915, 30.127160269355628 ], [ -95.454213041356013, 30.127122269232704 ], [ -95.453938041143019, 30.127021269126978 ], [ -95.453506041050261, 30.126905269367221 ], [ -95.453258041455456, 30.126849269006026 ], [ -95.453009041559795, 30.126742269309453 ], [ -95.452876040701526, 30.126750269029866 ], [ -95.452749041255615, 30.1267042693609 ], [ -95.452394041513614, 30.126708268978664 ], [ -95.451986041303101, 30.126711269345449 ], [ -95.45157504039949, 30.126703268626173 ], [ -95.450406040644367, 30.126708268753365 ], [ -95.449542039919905, 30.126734269085148 ], [ -95.447972040412168, 30.126701268952434 ], [ -95.446224039973174, 30.126721269056564 ], [ -95.445881039849596, 30.126726268928742 ], [ -95.445334039340352, 30.126719268996684 ], [ -95.444725038926009, 30.126731268979007 ], [ -95.443833038549101, 30.126757269631597 ], [ -95.443361038565754, 30.12677726937568 ], [ -95.44340703894116, 30.127005269127562 ], [ -95.443459038983633, 30.127258269831305 ], [ -95.443811038545618, 30.128924269858992 ], [ -95.444128039057574, 30.130696270249771 ], [ -95.444165039411345, 30.130903270327288 ], [ -95.444593039509641, 30.133192270978636 ], [ -95.444873039598704, 30.134556271038196 ], [ -95.445220040043125, 30.136290271373799 ], [ -95.445257040164037, 30.136480271351772 ], [ -95.445529039646459, 30.137869271334203 ], [ -95.446089040237368, 30.140658271715076 ], [ -95.446516040713519, 30.140698271870392 ], [ -95.448129040472637, 30.140677272053885 ], [ -95.448874040599392, 30.140661271760841 ], [ -95.449666040821285, 30.140646272290262 ], [ -95.450107041078141, 30.140636271988928 ], [ -95.450546041239406, 30.140626271620086 ], [ -95.450809041444643, 30.140621271537416 ], [ -95.452871041451942, 30.140636271398375 ], [ -95.454139042657658, 30.140646271498042 ], [ -95.454898042071349, 30.140652272137306 ], [ -95.454893042459076, 30.140856271886012 ], [ -95.454862042500508, 30.141083271480692 ], [ -95.454846042776495, 30.141160271526772 ], [ -95.454783042104197, 30.14134527144974 ], [ -95.454684042617984, 30.141510271963885 ], [ -95.454459042503387, 30.141854272321005 ], [ -95.454368042449602, 30.141975272125052 ], [ -95.454144042105582, 30.142316272117508 ], [ -95.454070042479344, 30.142473272284871 ], [ -95.45404504194687, 30.1425502723169 ], [ -95.454011042426544, 30.142708271800213 ], [ -95.45400104187685, 30.142884272171916 ], [ -95.454027042199115, 30.143072272100095 ], [ -95.454056041997916, 30.143175272349453 ], [ -95.454089042339717, 30.143269272423275 ], [ -95.454145042343043, 30.143397272321394 ], [ -95.454210042203513, 30.143509272011183 ], [ -95.454289041904772, 30.143615272427766 ], [ -95.454468042095499, 30.143549271874928 ], [ -95.454679042859979, 30.143477272406873 ], [ -95.455092042946788, 30.143359272705919 ], [ -95.455515042421666, 30.143276272667549 ], [ -95.455731043183292, 30.143246272538072 ], [ -95.457042043230729, 30.14320427253627 ], [ -95.458031043291669, 30.143177271850856 ], [ -95.459597043688291, 30.14313127241525 ], [ -95.460660043922886, 30.143104272225358 ], [ -95.460999043903882, 30.143096272437425 ], [ -95.461418044199576, 30.143082271559447 ], [ -95.461574044578612, 30.143078272221651 ], [ -95.461710044607898, 30.143084271907625 ], [ -95.461828043800679, 30.143099271824276 ], [ -95.461936044329263, 30.143121272197799 ], [ -95.462158044507262, 30.143184271617585 ], [ -95.462301043977291, 30.143235271583912 ], [ -95.462542044103486, 30.143299271833069 ], [ -95.46271704475042, 30.14332027171567 ], [ -95.462827044123671, 30.143320271573472 ], [ -95.463015045093599, 30.143306271749744 ], [ -95.463118044667453, 30.143292272339131 ], [ -95.463298044875472, 30.143256272049978 ], [ -95.463433044869404, 30.143218271673138 ], [ -95.464851044826958, 30.142906271428583 ], [ -95.465098044601632, 30.142832271373479 ], [ -95.465267044706508, 30.142765271850941 ], [ -95.465393044755274, 30.142700271322781 ], [ -95.465550045421082, 30.14261327204682 ], [ -95.465773044992176, 30.142446271975658 ], [ -95.465876045789116, 30.142352271443613 ], [ -95.465978045131678, 30.142234271607435 ], [ -95.466204044912445, 30.141992271158674 ], [ -95.466331045836341, 30.141877271710879 ], [ -95.466466044941541, 30.141771271952344 ], [ -95.466538044893468, 30.141720271555492 ], [ -95.466761045457986, 30.141583271705755 ], [ -95.466839045692154, 30.141541271712974 ], [ -95.46700004559051, 30.141468271129487 ], [ -95.46727204538432, 30.141366271260893 ], [ -95.467572045199404, 30.141266271480539 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 767, "Tract": "48339693102", "Area_SqMi": 5.3251663448557309, "total_2009": 575, "total_2010": 959, "total_2011": 439, "total_2012": 519, "total_2013": 615, "total_2014": 680, "total_2015": 733, "total_2016": 698, "total_2017": 798, "total_2018": 807, "total_2019": 746, "total_2020": 819, "age1": 177, "age2": 591, "age3": 244, "earn1": 99, "earn2": 225, "earn3": 688, "naics_s01": 0, "naics_s02": 5, "naics_s03": 8, "naics_s04": 11, "naics_s05": 183, "naics_s06": 173, "naics_s07": 72, "naics_s08": 51, "naics_s09": 0, "naics_s10": 1, "naics_s11": 3, "naics_s12": 44, "naics_s13": 0, "naics_s14": 182, "naics_s15": 1, "naics_s16": 25, "naics_s17": 6, "naics_s18": 108, "naics_s19": 139, "naics_s20": 0, "race1": 855, "race2": 103, "race3": 11, "race4": 32, "race5": 0, "race6": 11, "ethnicity1": 647, "ethnicity2": 365, "edu1": 216, "edu2": 230, "edu3": 251, "edu4": 138, "Shape_Length": 70185.089109592373, "Shape_Area": 148456523.58129075, "total_2021": 878, "total_2022": 1012 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.455905050064885, 30.295041302815363 ], [ -95.455927049157538, 30.289761301871327 ], [ -95.455746049549731, 30.289789301854039 ], [ -95.454974049439599, 30.289984302021519 ], [ -95.454153048971691, 30.290192302441628 ], [ -95.452756049303233, 30.290524301785783 ], [ -95.45047604787915, 30.291086302107612 ], [ -95.449423047735053, 30.291347302405129 ], [ -95.448504047435819, 30.291579302784061 ], [ -95.447720047839098, 30.291775302967565 ], [ -95.446409047176346, 30.292112302581398 ], [ -95.445404047412964, 30.292407303229002 ], [ -95.444500046846713, 30.292670303332219 ], [ -95.443970046919688, 30.292819303090667 ], [ -95.442796046286915, 30.293151303324965 ], [ -95.44258004647206, 30.293213302836257 ], [ -95.441001045790188, 30.293631303247967 ], [ -95.440262045488055, 30.29381730290428 ], [ -95.43935004546546, 30.294041303528161 ], [ -95.438258045739587, 30.294304303353425 ], [ -95.43633904467913, 30.294704303957442 ], [ -95.43382004386676, 30.295218304260143 ], [ -95.431239043872722, 30.295744303661259 ], [ -95.429929043458941, 30.296009303834413 ], [ -95.429700042665743, 30.295450304256953 ], [ -95.429581043264818, 30.295174303951356 ], [ -95.429320043484879, 30.29462530409447 ], [ -95.429182043001916, 30.294352304016964 ], [ -95.42904004272809, 30.294087303785204 ], [ -95.42767304259354, 30.291658303304516 ], [ -95.426847042629106, 30.290175303327977 ], [ -95.425665042030118, 30.288042302606417 ], [ -95.425407042128896, 30.287592302863835 ], [ -95.425131041603052, 30.287108302142201 ], [ -95.424988041458477, 30.286858302341518 ], [ -95.424666041616803, 30.28629430206173 ], [ -95.423792041556169, 30.284721302164186 ], [ -95.423690041225044, 30.284538301777616 ], [ -95.423477041294944, 30.284180302349032 ], [ -95.423257041216772, 30.283830302149894 ], [ -95.42303104051264, 30.283480301904738 ], [ -95.422797041230837, 30.283136301484188 ], [ -95.422558040897101, 30.282794302127641 ], [ -95.422308040677393, 30.282454301522208 ], [ -95.421919040413869, 30.281946301243423 ], [ -95.421178039778269, 30.28094330164836 ], [ -95.420602040156112, 30.280164301382726 ], [ -95.420405040357522, 30.279901301493922 ], [ -95.419278039408312, 30.278391300783227 ], [ -95.417901039208317, 30.27652530069474 ], [ -95.416999039326313, 30.275318300376753 ], [ -95.416854038725447, 30.275146300780193 ], [ -95.416723039058368, 30.274992299949307 ], [ -95.416695038968342, 30.274999300248162 ], [ -95.415973038977739, 30.27517429995352 ], [ -95.415137038755844, 30.275377300333037 ], [ -95.410594037519601, 30.27647930087765 ], [ -95.406630036394176, 30.277430301580338 ], [ -95.406121036257062, 30.277552300812602 ], [ -95.405753036020371, 30.277640301187446 ], [ -95.405659036380797, 30.2776763013417 ], [ -95.405559036275974, 30.277767301489924 ], [ -95.405523036355476, 30.277879300993575 ], [ -95.405525036084626, 30.277967301073534 ], [ -95.405544035802322, 30.278055301728546 ], [ -95.406126036139653, 30.279784301885233 ], [ -95.406191036129243, 30.279987301839714 ], [ -95.406298035930959, 30.280319302132295 ], [ -95.406505036569314, 30.280962301469575 ], [ -95.407086036301848, 30.282764302387971 ], [ -95.407983037207714, 30.285467302960466 ], [ -95.408147037271746, 30.285962303204897 ], [ -95.408185036770135, 30.28609530310937 ], [ -95.408189037130825, 30.286147302701167 ], [ -95.408193037701807, 30.286194302526049 ], [ -95.408185037440418, 30.286273303104871 ], [ -95.408166037056191, 30.286353302752978 ], [ -95.408115037387645, 30.286417302799272 ], [ -95.408026037309909, 30.286484302971779 ], [ -95.407872037139128, 30.28654330305617 ], [ -95.40761503741254, 30.286619302783578 ], [ -95.407262036724589, 30.286704302671101 ], [ -95.40538103686319, 30.287164303560861 ], [ -95.40379403622282, 30.287550303078167 ], [ -95.398958035443073, 30.288728303584048 ], [ -95.397294034378277, 30.289134303760409 ], [ -95.395628033849633, 30.289541304138623 ], [ -95.394304033715642, 30.289863304036803 ], [ -95.392499033145711, 30.290303304287765 ], [ -95.390817033146504, 30.290714304753209 ], [ -95.384448031380884, 30.292271305263345 ], [ -95.384477031902506, 30.293617305235809 ], [ -95.386183031580444, 30.294661305151902 ], [ -95.386476031559951, 30.29490330538906 ], [ -95.387089032579695, 30.295505305126333 ], [ -95.388672032427593, 30.297418305797308 ], [ -95.389464033057067, 30.298223305732289 ], [ -95.390396033368688, 30.299027305886391 ], [ -95.39205303359546, 30.300287306139381 ], [ -95.392454034171379, 30.300593306474994 ], [ -95.393518034004202, 30.301402306260872 ], [ -95.396446035015387, 30.303651306529112 ], [ -95.396780034788989, 30.303907306599289 ], [ -95.399424036304339, 30.30595030747391 ], [ -95.40026403633685, 30.30658030760317 ], [ -95.4014660365672, 30.307501307147266 ], [ -95.405659038202415, 30.310715308149668 ], [ -95.407981038394809, 30.312485308518372 ], [ -95.410823039264841, 30.314650308725902 ], [ -95.411156039097705, 30.314886308602983 ], [ -95.41180503957402, 30.315307308235475 ], [ -95.412099039522587, 30.315497308633891 ], [ -95.413766040427106, 30.316471309144273 ], [ -95.415163040306382, 30.317261308652977 ], [ -95.415611040743968, 30.31751430902343 ], [ -95.415832040706746, 30.317639308781732 ], [ -95.415963040397045, 30.317713309272193 ], [ -95.41612004121373, 30.31780230889537 ], [ -95.41787004086757, 30.318752309278523 ], [ -95.418544041711911, 30.319118308811245 ], [ -95.418847041830205, 30.319338308815436 ], [ -95.419066041574126, 30.319589309482691 ], [ -95.419123041339319, 30.319682309233084 ], [ -95.419169041673896, 30.319759309199931 ], [ -95.419203041702048, 30.31983430898514 ], [ -95.419262041742755, 30.319985309375831 ], [ -95.419296042098765, 30.320126309432606 ], [ -95.421465042432672, 30.31995030894241 ], [ -95.42240104256534, 30.31988430893696 ], [ -95.424831043405092, 30.319706309197766 ], [ -95.427819044130658, 30.319480308549874 ], [ -95.428483044064478, 30.319431309196624 ], [ -95.428804044018662, 30.319408309101053 ], [ -95.430156044363812, 30.319316309252827 ], [ -95.430024044718678, 30.319019308509617 ], [ -95.429925044117937, 30.318796308723812 ], [ -95.429132044020406, 30.317926309032096 ], [ -95.429096043752295, 30.317809308536397 ], [ -95.428894044197406, 30.317147308136672 ], [ -95.428155043883862, 30.3164603082963 ], [ -95.428004044177797, 30.316041308241616 ], [ -95.427784043366373, 30.315429307831106 ], [ -95.427712043470564, 30.315320307668429 ], [ -95.427467043916167, 30.314949307980438 ], [ -95.427287043543643, 30.31478830843027 ], [ -95.42707004386773, 30.314595307921671 ], [ -95.42654304278274, 30.314124307744041 ], [ -95.426041043254742, 30.313529307411692 ], [ -95.425089042464606, 30.311880307400134 ], [ -95.424640042723254, 30.310025307194095 ], [ -95.424455042146306, 30.309750307341744 ], [ -95.423768042305454, 30.309132307220363 ], [ -95.423477041861872, 30.308605307058233 ], [ -95.423451042628557, 30.308331306575621 ], [ -95.42337104240454, 30.308262307153424 ], [ -95.423364041647233, 30.307981306817695 ], [ -95.425129042333694, 30.307820306670333 ], [ -95.425661042280936, 30.307771306226634 ], [ -95.428205043177442, 30.307550306366213 ], [ -95.429041043879451, 30.307478306496911 ], [ -95.429309043836255, 30.307446306288885 ], [ -95.429711043971139, 30.307386306623286 ], [ -95.42997804372672, 30.307335306825248 ], [ -95.430373043826009, 30.307244306638445 ], [ -95.430655044210681, 30.307163306744336 ], [ -95.431191044232605, 30.307037305941218 ], [ -95.43285104464762, 30.306646306511883 ], [ -95.432705044119047, 30.306216305839921 ], [ -95.432593044673112, 30.305866305871756 ], [ -95.432490044094479, 30.305512305982674 ], [ -95.432175043864191, 30.304426305934619 ], [ -95.432126044105914, 30.304143306076348 ], [ -95.431940043883529, 30.303365305163663 ], [ -95.431800044052594, 30.302690305528056 ], [ -95.433471044846542, 30.302322305311947 ], [ -95.435293045322524, 30.302068305544839 ], [ -95.436985045619252, 30.301818305347794 ], [ -95.437913046017229, 30.30157530507007 ], [ -95.441646046171314, 30.300596305022236 ], [ -95.443801047296986, 30.300067304285552 ], [ -95.444804047734664, 30.299827304369241 ], [ -95.445234047592791, 30.299723304047244 ], [ -95.44631304743595, 30.299462304068548 ], [ -95.447504048334096, 30.299172303918876 ], [ -95.448802048323074, 30.298840304107493 ], [ -95.450003048218903, 30.298544304228773 ], [ -95.450911048509923, 30.298274304105039 ], [ -95.451153048451374, 30.298173303452124 ], [ -95.451407048483546, 30.298031303315454 ], [ -95.451486049248089, 30.29795930378376 ], [ -95.451691048390387, 30.297750303657732 ], [ -95.451783049288949, 30.297593303258811 ], [ -95.45187804898849, 30.297387303588678 ], [ -95.451931048753181, 30.297170303121259 ], [ -95.452027049008692, 30.296843303780904 ], [ -95.452079048813772, 30.2966933034246 ], [ -95.452144049197045, 30.296505302989971 ], [ -95.452259049208095, 30.296304303212157 ], [ -95.452366049318101, 30.296175303027699 ], [ -95.452483048644922, 30.296046303422848 ], [ -95.452598049391995, 30.295958303616825 ], [ -95.452700048677855, 30.295898303515809 ], [ -95.453008049124207, 30.295771303476684 ], [ -95.453610049684329, 30.295605302798887 ], [ -95.455688049676425, 30.295077302984783 ], [ -95.455905050064885, 30.295041302815363 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 768, "Tract": "48201233105", "Area_SqMi": 0.63299667837918749, "total_2009": 199, "total_2010": 135, "total_2011": 156, "total_2012": 145, "total_2013": 134, "total_2014": 141, "total_2015": 178, "total_2016": 157, "total_2017": 159, "total_2018": 152, "total_2019": 158, "total_2020": 175, "age1": 58, "age2": 87, "age3": 57, "earn1": 72, "earn2": 71, "earn3": 59, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 1, "naics_s07": 48, "naics_s08": 0, "naics_s09": 0, "naics_s10": 14, "naics_s11": 4, "naics_s12": 32, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 57, "naics_s19": 34, "naics_s20": 0, "race1": 156, "race2": 36, "race3": 1, "race4": 6, "race5": 0, "race6": 3, "ethnicity1": 134, "ethnicity2": 68, "edu1": 33, "edu2": 36, "edu3": 49, "edu4": 26, "Shape_Length": 22633.676738741353, "Shape_Area": 17646864.008569196, "total_2021": 193, "total_2022": 202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.16994795362568, 29.790380209980519 ], [ -95.169945953640081, 29.790303209609856 ], [ -95.169944953730891, 29.790259210128948 ], [ -95.169944952929711, 29.790248209706061 ], [ -95.169932953095568, 29.78952220952646 ], [ -95.169914953287687, 29.788922209282664 ], [ -95.16991295363988, 29.788707210045498 ], [ -95.1698969531258, 29.788269209994422 ], [ -95.169894953634412, 29.788194209990017 ], [ -95.169891952981089, 29.788117209858164 ], [ -95.16988395309663, 29.787827209065004 ], [ -95.169895953406893, 29.787643209855304 ], [ -95.169894952987491, 29.787447209516468 ], [ -95.169874953620166, 29.787099209738525 ], [ -95.16987695320033, 29.787030209652237 ], [ -95.169868953583574, 29.786907209022434 ], [ -95.169857953148977, 29.78681720962242 ], [ -95.16985595295867, 29.786724209547565 ], [ -95.169846953434231, 29.786332209143783 ], [ -95.169840953673301, 29.786252209313911 ], [ -95.169840953074186, 29.786172209410292 ], [ -95.169868953161298, 29.786088209095254 ], [ -95.169832952716689, 29.786021209393727 ], [ -95.169844953013708, 29.785970208948282 ], [ -95.16985095264188, 29.785941209357993 ], [ -95.169844953296007, 29.785788209242405 ], [ -95.16983195278209, 29.78571820904277 ], [ -95.169839953147189, 29.785623209073499 ], [ -95.169826952922264, 29.785238209361975 ], [ -95.169801952674604, 29.784863209003468 ], [ -95.169796953047751, 29.784608208661048 ], [ -95.169805953476484, 29.784532208589408 ], [ -95.169803953590474, 29.784486208935117 ], [ -95.169799953224228, 29.784362208552356 ], [ -95.169789952939368, 29.784275208471467 ], [ -95.169795953332553, 29.784117208977111 ], [ -95.16977595331511, 29.783754208475425 ], [ -95.169762953410086, 29.783424208852178 ], [ -95.169741952669511, 29.783256208339854 ], [ -95.169769952742513, 29.783156208364552 ], [ -95.169755953214491, 29.783000208154579 ], [ -95.169737952918169, 29.782395208375867 ], [ -95.169729952720701, 29.782279208059173 ], [ -95.168928952992232, 29.782300208428175 ], [ -95.168359953040422, 29.782298208339686 ], [ -95.168240952283924, 29.782318208820435 ], [ -95.168134953004483, 29.7823192087635 ], [ -95.168036952785187, 29.782311208022954 ], [ -95.167940952418107, 29.782314208855659 ], [ -95.167602952467746, 29.782310208449282 ], [ -95.167460952134107, 29.782318208894122 ], [ -95.167110952372568, 29.782323208050574 ], [ -95.16690195211342, 29.782339208914642 ], [ -95.166796951977176, 29.782332208569361 ], [ -95.1658799522544, 29.782349208507515 ], [ -95.16549695197007, 29.78234620827735 ], [ -95.164963951756292, 29.782348208143514 ], [ -95.164886952124803, 29.782353208383888 ], [ -95.164773951857697, 29.782331208257872 ], [ -95.16470495138617, 29.782348208660629 ], [ -95.164632951715888, 29.78235420851404 ], [ -95.164543951487104, 29.782355208241988 ], [ -95.164451951792017, 29.78236920867683 ], [ -95.164358951989144, 29.782364208138777 ], [ -95.16417195109986, 29.782370208561836 ], [ -95.164078951610037, 29.782367208247027 ], [ -95.163987951203751, 29.782376208863621 ], [ -95.163892951689647, 29.782375208453484 ], [ -95.163624951312471, 29.782389208508867 ], [ -95.163189950834038, 29.782404209021685 ], [ -95.163175951169947, 29.782290208269082 ], [ -95.163197951127387, 29.782182208466157 ], [ -95.163187951443831, 29.781963208644012 ], [ -95.163189951400497, 29.78186020869801 ], [ -95.163171951677199, 29.781767208743315 ], [ -95.16316895160179, 29.781669208395801 ], [ -95.163158951299764, 29.781393208571728 ], [ -95.163146951518669, 29.781289208406609 ], [ -95.163142950738589, 29.781194207993625 ], [ -95.163145950743669, 29.781031208103546 ], [ -95.163136951386818, 29.780909207986845 ], [ -95.16314195154628, 29.780839208596031 ], [ -95.163136951627578, 29.780768207959024 ], [ -95.163138951028827, 29.780689208372081 ], [ -95.163162951292449, 29.780597208603034 ], [ -95.163156950967505, 29.780514208453404 ], [ -95.163133950869934, 29.780366208367386 ], [ -95.163142951257015, 29.780297208149463 ], [ -95.163137950772338, 29.780177208257381 ], [ -95.163137951630986, 29.780141208112472 ], [ -95.163156951161795, 29.780081208044408 ], [ -95.163171951604596, 29.779927207779718 ], [ -95.163140950990723, 29.779873208255907 ], [ -95.163139951150356, 29.7797812076745 ], [ -95.163098951167754, 29.779573207969666 ], [ -95.163109951292896, 29.779466208436396 ], [ -95.163106950798095, 29.779448208201199 ], [ -95.163084951332138, 29.779399208304572 ], [ -95.163111951425435, 29.77931520758256 ], [ -95.163132951125405, 29.779224207847946 ], [ -95.163119951283363, 29.779136207541654 ], [ -95.163080951319174, 29.779036207818198 ], [ -95.163098951205569, 29.778956207508436 ], [ -95.163077951131797, 29.778863208206069 ], [ -95.163087950734933, 29.778792208177347 ], [ -95.163093950604349, 29.778688207807036 ], [ -95.163091950745638, 29.778485208076358 ], [ -95.16308495107674, 29.778399207525752 ], [ -95.163083951362978, 29.778147207366381 ], [ -95.163079951262972, 29.778073207593881 ], [ -95.163089950725947, 29.77801920743735 ], [ -95.163073950687092, 29.777952207665297 ], [ -95.163069951352796, 29.777890207673575 ], [ -95.163085950999601, 29.777801207801328 ], [ -95.16308895112661, 29.777733207471371 ], [ -95.163069950853881, 29.777656207295873 ], [ -95.163081951138267, 29.777491207242374 ], [ -95.163080951277649, 29.777416207390775 ], [ -95.16306695074887, 29.777340207930482 ], [ -95.163071951251951, 29.777280207837638 ], [ -95.163056950737499, 29.777194207469787 ], [ -95.163037950792543, 29.777080207778074 ], [ -95.163047950767776, 29.776960207554851 ], [ -95.163049951293772, 29.776878207296718 ], [ -95.163040951085165, 29.776796207118192 ], [ -95.163053951113781, 29.776706207797094 ], [ -95.163043950753078, 29.77662020704021 ], [ -95.163044951421384, 29.776533207807308 ], [ -95.163038951361543, 29.77646720745183 ], [ -95.16302895137683, 29.776268207743353 ], [ -95.163043951176093, 29.776182206914772 ], [ -95.163037950754429, 29.775991206906117 ], [ -95.163020951166175, 29.77590820765289 ], [ -95.16302795139498, 29.775824207478795 ], [ -95.163020950904226, 29.77572420754742 ], [ -95.163011951380284, 29.775425207644396 ], [ -95.162994951044553, 29.77518520748476 ], [ -95.162990951042019, 29.775033206859781 ], [ -95.162995950443033, 29.774973206700675 ], [ -95.162997951072839, 29.774955206999969 ], [ -95.162991950823411, 29.774887207092743 ], [ -95.162992951315445, 29.774644207129029 ], [ -95.162984950685811, 29.774557207391677 ], [ -95.162975950850594, 29.774307206684039 ], [ -95.162950950730902, 29.774244207213513 ], [ -95.162961950796415, 29.77417820700278 ], [ -95.162968950413216, 29.774101207321728 ], [ -95.162968950411951, 29.774020206795306 ], [ -95.162978950794681, 29.773929207081245 ], [ -95.162958951080398, 29.773851206846746 ], [ -95.162951950633484, 29.773486207000058 ], [ -95.162951951198579, 29.773437206789527 ], [ -95.162941951336251, 29.773373206897414 ], [ -95.162944950461309, 29.773302206737863 ], [ -95.16293395106473, 29.773076206916041 ], [ -95.162945951008368, 29.773020206699503 ], [ -95.162936950845804, 29.772939206620457 ], [ -95.162935950970081, 29.77287020700776 ], [ -95.162929950751888, 29.77280820649294 ], [ -95.162930950560721, 29.772771206681835 ], [ -95.162939951245107, 29.772602206363079 ], [ -95.162915950751454, 29.772540206786093 ], [ -95.162924950517578, 29.772460206851299 ], [ -95.162912950307742, 29.772316206170821 ], [ -95.162920950457362, 29.772063206679551 ], [ -95.162914950716925, 29.772011206433518 ], [ -95.162908950604432, 29.771960206383326 ], [ -95.162902950910976, 29.77169320660289 ], [ -95.162898950661557, 29.771534206159867 ], [ -95.162582950658347, 29.771551206201536 ], [ -95.162038950532818, 29.771566206419731 ], [ -95.162000950904385, 29.771567206071552 ], [ -95.161805950150182, 29.771552206571929 ], [ -95.161730950096228, 29.771498206445916 ], [ -95.161701950650169, 29.771477206460833 ], [ -95.161681950827528, 29.771449206417412 ], [ -95.161661950625458, 29.771422206567781 ], [ -95.161619950000869, 29.771363206297284 ], [ -95.161589950255504, 29.771301206105619 ], [ -95.161603950375408, 29.771257206178689 ], [ -95.161620950737046, 29.771206206777176 ], [ -95.161646950213154, 29.771125206129334 ], [ -95.161669950368321, 29.771051206781792 ], [ -95.16051595026785, 29.771072206606028 ], [ -95.159955949582482, 29.771078206492334 ], [ -95.159618949611939, 29.771082206168291 ], [ -95.158677949690812, 29.771093206098495 ], [ -95.157325948871048, 29.771110206868492 ], [ -95.157154948790648, 29.771112206288482 ], [ -95.156939948723732, 29.771115206751599 ], [ -95.156744949254772, 29.771117206151697 ], [ -95.15599194923189, 29.771127206676205 ], [ -95.155577948757852, 29.771133206669962 ], [ -95.154781948375344, 29.771152206288964 ], [ -95.154569948079228, 29.771161206341759 ], [ -95.154131948587036, 29.771188206383975 ], [ -95.153841948673204, 29.771235206231182 ], [ -95.153771948598376, 29.771246207053245 ], [ -95.153718947922542, 29.771255206975621 ], [ -95.15367094830512, 29.771259206740528 ], [ -95.153645948199909, 29.771266206490413 ], [ -95.153449948732941, 29.771299206916304 ], [ -95.1535189479049, 29.771376206890071 ], [ -95.153632948618593, 29.771502207111681 ], [ -95.153712947919004, 29.77159120657651 ], [ -95.153766948067528, 29.77165020631492 ], [ -95.154110948978968, 29.772030206849102 ], [ -95.154344948318339, 29.772290206529632 ], [ -95.155049948910886, 29.773040206833471 ], [ -95.155405949213701, 29.77342620703573 ], [ -95.155676948748663, 29.773720207514298 ], [ -95.155699948646728, 29.773747206760671 ], [ -95.155952948881534, 29.774042206821747 ], [ -95.15616594880791, 29.774290207363745 ], [ -95.156310948905002, 29.774459206764313 ], [ -95.156695948832706, 29.774962207120584 ], [ -95.156701949678563, 29.774971206873637 ], [ -95.157230949256061, 29.775853207483816 ], [ -95.157674949737853, 29.776762207833066 ], [ -95.157926949744564, 29.777457207349315 ], [ -95.158155949505272, 29.778197207886532 ], [ -95.1582889499863, 29.778994208318554 ], [ -95.158296949797588, 29.779594207930067 ], [ -95.158314949579648, 29.780260208029137 ], [ -95.158375950308837, 29.782409209118175 ], [ -95.158400950311645, 29.783298208742053 ], [ -95.158454949808501, 29.783894209121648 ], [ -95.15859095058839, 29.784456209310779 ], [ -95.158796950540903, 29.78507720910687 ], [ -95.158812949840211, 29.785119209568407 ], [ -95.159202950210656, 29.786129209402546 ], [ -95.159495950355222, 29.786888209510611 ], [ -95.160409951030729, 29.789103210344898 ], [ -95.160441951283815, 29.789179210030703 ], [ -95.16049195111249, 29.789301210219715 ], [ -95.160836951345914, 29.790137210209156 ], [ -95.160927950960655, 29.790358210374706 ], [ -95.160997951003623, 29.790527210457853 ], [ -95.161053950657177, 29.7906622106164 ], [ -95.16133495137548, 29.790661210028002 ], [ -95.161618951211622, 29.790660210787465 ], [ -95.161863951476931, 29.790650210788282 ], [ -95.163340951479256, 29.790594210282233 ], [ -95.163969951844706, 29.790577210554694 ], [ -95.164332952346797, 29.79055121017603 ], [ -95.164493952478836, 29.790510209953634 ], [ -95.1654029524328, 29.790482210211664 ], [ -95.165485952395201, 29.790483209968965 ], [ -95.166346952505378, 29.790451210034778 ], [ -95.16639295211796, 29.790452209792807 ], [ -95.167315952888472, 29.790440209912703 ], [ -95.16994795362568, 29.790380209980519 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 769, "Tract": "48201252201", "Area_SqMi": 1.032916463141021, "total_2009": 163, "total_2010": 278, "total_2011": 411, "total_2012": 566, "total_2013": 538, "total_2014": 627, "total_2015": 604, "total_2016": 737, "total_2017": 824, "total_2018": 881, "total_2019": 901, "total_2020": 878, "age1": 468, "age2": 373, "age3": 145, "earn1": 409, "earn2": 361, "earn3": 216, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 0, "naics_s07": 267, "naics_s08": 66, "naics_s09": 0, "naics_s10": 13, "naics_s11": 73, "naics_s12": 6, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 42, "naics_s17": 33, "naics_s18": 480, "naics_s19": 1, "naics_s20": 0, "race1": 726, "race2": 167, "race3": 8, "race4": 71, "race5": 0, "race6": 14, "ethnicity1": 535, "ethnicity2": 451, "edu1": 158, "edu2": 137, "edu3": 140, "edu4": 83, "Shape_Length": 28135.059973842886, "Shape_Area": 28795943.138176803, "total_2021": 924, "total_2022": 986 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.175306956407084, 29.832231218077542 ], [ -95.175203956810066, 29.832120218422812 ], [ -95.173912956008962, 29.830795218057457 ], [ -95.172169955331654, 29.828961218263785 ], [ -95.17131395541152, 29.828042217760938 ], [ -95.171085955721608, 29.827806217860367 ], [ -95.170778955507231, 29.827470217252831 ], [ -95.170459955506246, 29.827105217872923 ], [ -95.169865955376054, 29.826389217728355 ], [ -95.169187954756694, 29.825521217529541 ], [ -95.168365954511245, 29.824379217322896 ], [ -95.167837954495425, 29.823655217341475 ], [ -95.167050953738524, 29.822287216748066 ], [ -95.167006954249075, 29.822202216271052 ], [ -95.166715953777171, 29.82164221670455 ], [ -95.16611995396886, 29.820494216538528 ], [ -95.165495953519468, 29.819170215813088 ], [ -95.165418953328825, 29.81900721620741 ], [ -95.165228953371823, 29.818530215882209 ], [ -95.165017953757442, 29.818001215538914 ], [ -95.16472895339615, 29.817016215746428 ], [ -95.164378953308912, 29.815968215904448 ], [ -95.164159952722301, 29.815204215079902 ], [ -95.163895952889803, 29.813773214883337 ], [ -95.163607952221753, 29.812087214995532 ], [ -95.163415952392995, 29.810583214450258 ], [ -95.16331195233542, 29.809257214467785 ], [ -95.163315952675475, 29.808917214188376 ], [ -95.163300952386066, 29.808744213899455 ], [ -95.162889952502582, 29.808836214504055 ], [ -95.162526952467488, 29.808926214506783 ], [ -95.162066952647535, 29.809058214322835 ], [ -95.161569952360608, 29.8092072144863 ], [ -95.161314951483419, 29.809274214477085 ], [ -95.161024952045764, 29.809352214111065 ], [ -95.160006951804817, 29.809614214591015 ], [ -95.159032951441787, 29.809862214232325 ], [ -95.158928951679101, 29.809889214177272 ], [ -95.158695951668122, 29.809951213988551 ], [ -95.159126951156608, 29.810686214167763 ], [ -95.15972995194555, 29.81132621496079 ], [ -95.160356951704628, 29.81209121514032 ], [ -95.160996951718431, 29.8127822149286 ], [ -95.16137295231934, 29.813189214603366 ], [ -95.161411952505844, 29.813232214966309 ], [ -95.161824952612648, 29.813772215429797 ], [ -95.162012951967412, 29.814483214982374 ], [ -95.162107952198724, 29.814804215260981 ], [ -95.162160952179619, 29.815114215153859 ], [ -95.16215495289326, 29.815364215016142 ], [ -95.162101952462777, 29.815718215735266 ], [ -95.162063952452385, 29.815982215731712 ], [ -95.161988952247142, 29.816245215148847 ], [ -95.161891952300863, 29.816431216014493 ], [ -95.161741952357914, 29.816637215383519 ], [ -95.161441951980791, 29.816879215668923 ], [ -95.161134951976109, 29.816986216024361 ], [ -95.160770951933671, 29.817375215465162 ], [ -95.160432951693494, 29.817663215793591 ], [ -95.160138951940169, 29.817867216118682 ], [ -95.15973295160768, 29.817992215843447 ], [ -95.159409951443521, 29.818122216212338 ], [ -95.159250951940166, 29.818242216341652 ], [ -95.159017952246799, 29.818429216244411 ], [ -95.158654951903571, 29.818716216168291 ], [ -95.158538952199493, 29.818808216165728 ], [ -95.158392951824766, 29.818995216306583 ], [ -95.158266951899265, 29.81921521631029 ], [ -95.157995951730101, 29.819545216004233 ], [ -95.157844952087672, 29.819671216563158 ], [ -95.157421951578556, 29.819864216745348 ], [ -95.157270951851999, 29.819968216894413 ], [ -95.157156951068089, 29.820095216677966 ], [ -95.157062951266937, 29.820237216670495 ], [ -95.156980951202485, 29.820452216439598 ], [ -95.156847950851756, 29.820738216944587 ], [ -95.15680995124238, 29.820881217175117 ], [ -95.156778950980168, 29.821057216847752 ], [ -95.156740951033484, 29.822063217384773 ], [ -95.15677795138167, 29.82230821720686 ], [ -95.156828951268693, 29.822640217268411 ], [ -95.156853951406219, 29.823344216863639 ], [ -95.15704895190683, 29.823944217709666 ], [ -95.156991951346669, 29.824405217033206 ], [ -95.157048951324015, 29.824609217666453 ], [ -95.157275951639647, 29.825296217586697 ], [ -95.15747095168544, 29.825802218045528 ], [ -95.157495951320456, 29.826022217890284 ], [ -95.157476952240643, 29.826143217665379 ], [ -95.157483951718021, 29.826226217662654 ], [ -95.157558951318649, 29.826676218003762 ], [ -95.157684951713691, 29.827193217670207 ], [ -95.157728952113601, 29.827606217746514 ], [ -95.157798951513527, 29.827908218308686 ], [ -95.157798951654826, 29.827947217706342 ], [ -95.157785951967611, 29.827980218048406 ], [ -95.157804951868826, 29.828326218048222 ], [ -95.158005952106677, 29.828821218042325 ], [ -95.158302952434042, 29.829294218848155 ], [ -95.158516952170856, 29.82960721860432 ], [ -95.158680952359106, 29.830003218715003 ], [ -95.158774952619083, 29.830366219013872 ], [ -95.158907952054051, 29.830795218852696 ], [ -95.158913952100519, 29.831142218883159 ], [ -95.158661952597996, 29.832214218906877 ], [ -95.158642952727504, 29.832390219177583 ], [ -95.15872495205582, 29.83273621877591 ], [ -95.15876195284801, 29.832835218932757 ], [ -95.158925951986134, 29.833077219449066 ], [ -95.158969952374221, 29.833198219323641 ], [ -95.158982952447587, 29.833248219415488 ], [ -95.159001952048555, 29.833506218909097 ], [ -95.159278952676729, 29.834188219483835 ], [ -95.159688952763133, 29.835590219476313 ], [ -95.160015952876293, 29.836668220005272 ], [ -95.160438953092296, 29.837839219719815 ], [ -95.160709953124709, 29.838405219809729 ], [ -95.160758953596655, 29.838579220280707 ], [ -95.160835953635129, 29.83885122027997 ], [ -95.160839952716557, 29.838866220251365 ], [ -95.160917953025788, 29.838832219998441 ], [ -95.161278953792888, 29.838676220097611 ], [ -95.165908954549494, 29.836677219361263 ], [ -95.167697954864508, 29.835905219812325 ], [ -95.167747955186641, 29.83588321930366 ], [ -95.168116955350541, 29.835724219183387 ], [ -95.168402954617108, 29.835601219118761 ], [ -95.168761954886165, 29.835446219334852 ], [ -95.171155955922373, 29.834191218607064 ], [ -95.172037955498581, 29.833719219113437 ], [ -95.174456956694712, 29.832628218495408 ], [ -95.174633956169785, 29.832541218507732 ], [ -95.174864956214051, 29.832427218255127 ], [ -95.175306956407084, 29.832231218077542 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 770, "Tract": "48201232404", "Area_SqMi": 1.4589796099094186, "total_2009": 122, "total_2010": 180, "total_2011": 168, "total_2012": 211, "total_2013": 202, "total_2014": 708, "total_2015": 677, "total_2016": 179, "total_2017": 238, "total_2018": 548, "total_2019": 709, "total_2020": 643, "age1": 64, "age2": 173, "age3": 95, "earn1": 38, "earn2": 71, "earn3": 223, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 96, "naics_s05": 45, "naics_s06": 100, "naics_s07": 25, "naics_s08": 40, "naics_s09": 0, "naics_s10": 5, "naics_s11": 0, "naics_s12": 10, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 11, "naics_s20": 0, "race1": 244, "race2": 37, "race3": 5, "race4": 44, "race5": 1, "race6": 1, "ethnicity1": 196, "ethnicity2": 136, "edu1": 74, "edu2": 68, "edu3": 86, "edu4": 40, "Shape_Length": 27394.295872476134, "Shape_Area": 40673854.455716155, "total_2021": 398, "total_2022": 332 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.210992965993896, 29.832588217067489 ], [ -95.210817965534048, 29.832329217117479 ], [ -95.210503965569359, 29.831856217242024 ], [ -95.209566965323489, 29.83044221731793 ], [ -95.209376964986461, 29.830154216514611 ], [ -95.209025965071561, 29.829474216484208 ], [ -95.208613964948839, 29.828683216427201 ], [ -95.208568964485039, 29.828541216711269 ], [ -95.208305965407618, 29.827892216628712 ], [ -95.208167964903652, 29.827014216439991 ], [ -95.208161965058025, 29.826621216517417 ], [ -95.206685964197433, 29.826722216243091 ], [ -95.203044963590784, 29.82673121666415 ], [ -95.190547960391669, 29.826760216355588 ], [ -95.18903095938326, 29.826764217087245 ], [ -95.188568960304835, 29.826765216590921 ], [ -95.187991959214685, 29.826767216513801 ], [ -95.186724958859571, 29.827238216704423 ], [ -95.1855689591291, 29.827710217335717 ], [ -95.184571958685524, 29.828126217069705 ], [ -95.182740958261803, 29.828877217579386 ], [ -95.182455958695812, 29.828991217357238 ], [ -95.181969958657405, 29.829182217954326 ], [ -95.18087295784153, 29.829613217565377 ], [ -95.180196957696623, 29.829870217581131 ], [ -95.178279957141925, 29.830971218283864 ], [ -95.176294956981508, 29.831800218338579 ], [ -95.176002957260792, 29.831922218747884 ], [ -95.17552395710382, 29.832134218664976 ], [ -95.175823956889218, 29.83246921848545 ], [ -95.176010956638521, 29.832640218693726 ], [ -95.176348956694227, 29.83299221811928 ], [ -95.176448957036811, 29.833098218815373 ], [ -95.177495957113223, 29.83421421904249 ], [ -95.178781957227642, 29.835512218553362 ], [ -95.180018957628675, 29.836893219252261 ], [ -95.181100958508182, 29.838068218986756 ], [ -95.181615958610962, 29.838624219181646 ], [ -95.181903958626492, 29.838907219835143 ], [ -95.182391959037545, 29.839386220113298 ], [ -95.182956959347464, 29.839924220182528 ], [ -95.183471959262775, 29.840442219912799 ], [ -95.183675959467607, 29.840676219680667 ], [ -95.18424395969744, 29.841303219546809 ], [ -95.184946959399525, 29.842222220484068 ], [ -95.185361959992065, 29.84284422029998 ], [ -95.185420959277906, 29.842962220093934 ], [ -95.18548995939932, 29.843098220516513 ], [ -95.185689960251608, 29.843492220292614 ], [ -95.186044959948617, 29.843340220211346 ], [ -95.188869960582807, 29.842130220007487 ], [ -95.193527961325003, 29.840135219073726 ], [ -95.197806962149386, 29.838257219258914 ], [ -95.199940963156521, 29.837323218944835 ], [ -95.203301963771054, 29.835894217914106 ], [ -95.207043964576954, 29.834303217508708 ], [ -95.207590964689373, 29.834028217947701 ], [ -95.209475965768988, 29.833230217663377 ], [ -95.210992965993896, 29.832588217067489 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 771, "Tract": "48201232203", "Area_SqMi": 3.8404868190155499, "total_2009": 373, "total_2010": 376, "total_2011": 823, "total_2012": 453, "total_2013": 402, "total_2014": 411, "total_2015": 379, "total_2016": 372, "total_2017": 355, "total_2018": 636, "total_2019": 853, "total_2020": 783, "age1": 260, "age2": 483, "age3": 161, "earn1": 228, "earn2": 335, "earn3": 341, "naics_s01": 0, "naics_s02": 23, "naics_s03": 0, "naics_s04": 16, "naics_s05": 16, "naics_s06": 31, "naics_s07": 96, "naics_s08": 0, "naics_s09": 0, "naics_s10": 28, "naics_s11": 140, "naics_s12": 8, "naics_s13": 0, "naics_s14": 4, "naics_s15": 13, "naics_s16": 160, "naics_s17": 35, "naics_s18": 278, "naics_s19": 56, "naics_s20": 0, "race1": 618, "race2": 194, "race3": 4, "race4": 74, "race5": 0, "race6": 14, "ethnicity1": 619, "ethnicity2": 285, "edu1": 139, "edu2": 163, "edu3": 184, "edu4": 158, "Shape_Length": 59598.645230526912, "Shape_Area": 107066199.45527066, "total_2021": 859, "total_2022": 904 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.26868598509887, 29.933381236267007 ], [ -95.268772984758058, 29.933115235705365 ], [ -95.268258984624637, 29.933055235872196 ], [ -95.267704984500753, 29.932870235814168 ], [ -95.267423984404971, 29.932741235849765 ], [ -95.267142984987771, 29.932612236193453 ], [ -95.266291984349166, 29.932041235320874 ], [ -95.26597398416952, 29.931701235260231 ], [ -95.265641983966077, 29.931424235760165 ], [ -95.265382984585415, 29.931055235336977 ], [ -95.265078984166934, 29.930584235226668 ], [ -95.2648199836418, 29.930124235113563 ], [ -95.264552983677873, 29.929791235069779 ], [ -95.264086984190442, 29.929417235219141 ], [ -95.263497983834981, 29.929075235665117 ], [ -95.262898983391253, 29.928904235618024 ], [ -95.262042983132687, 29.928866235107922 ], [ -95.261485983206896, 29.928936235039039 ], [ -95.261430983304834, 29.928949235701239 ], [ -95.260065982319034, 29.929066235199123 ], [ -95.259250982372791, 29.928889235147036 ], [ -95.258548981978464, 29.928689235734037 ], [ -95.258058981955159, 29.928340235286917 ], [ -95.25750198186725, 29.927890235100069 ], [ -95.256361981856472, 29.927044234961116 ], [ -95.256660981689222, 29.926636235168562 ], [ -95.257068981814285, 29.926060235274925 ], [ -95.257457981590719, 29.925133234900464 ], [ -95.257581981466814, 29.924785234633518 ], [ -95.25485698093577, 29.92484623444982 ], [ -95.254853981380592, 29.924745234581803 ], [ -95.25481698084657, 29.924128234294251 ], [ -95.254792980814258, 29.923886234061886 ], [ -95.254744980657762, 29.923717234716914 ], [ -95.254647981590253, 29.923451234081327 ], [ -95.254611980730871, 29.92330623426751 ], [ -95.254599981542128, 29.923124233956585 ], [ -95.254623981051722, 29.922979234088608 ], [ -95.254719981233819, 29.922834234147619 ], [ -95.254877980948606, 29.922677234006088 ], [ -95.255046980992404, 29.922495233940605 ], [ -95.255203981187904, 29.922265234428242 ], [ -95.255264981078255, 29.922108234359715 ], [ -95.255288980849812, 29.921890234363854 ], [ -95.255264980751477, 29.921649234187679 ], [ -95.255191981008636, 29.921443233652958 ], [ -95.255034981168222, 29.921213233697593 ], [ -95.254840980835482, 29.921032234022434 ], [ -95.254647981105563, 29.920959234281803 ], [ -95.25435698120944, 29.920907233515436 ], [ -95.254271980838851, 29.920892234057067 ], [ -95.253199980595312, 29.92158523379765 ], [ -95.252612980878268, 29.922028233774675 ], [ -95.251394980100315, 29.92275623398168 ], [ -95.251011980395873, 29.922885234855094 ], [ -95.250526979582503, 29.922967234668675 ], [ -95.249251980035496, 29.922904234581999 ], [ -95.246316978923772, 29.922325234178011 ], [ -95.245764978606957, 29.922082234123216 ], [ -95.245336978214013, 29.921804234224492 ], [ -95.244691978008035, 29.921198234701642 ], [ -95.244574978437882, 29.921080234656614 ], [ -95.244241977793394, 29.920464234280733 ], [ -95.24406697820298, 29.919873234308522 ], [ -95.24371497781739, 29.915497232947274 ], [ -95.243453978113763, 29.91426323297943 ], [ -95.243191977567264, 29.91369823302194 ], [ -95.242665977776909, 29.912926232391243 ], [ -95.24184097698641, 29.912130232146531 ], [ -95.241323976686715, 29.911774232778825 ], [ -95.24023397719246, 29.911129232673854 ], [ -95.239803976267254, 29.910791232589684 ], [ -95.239632976660374, 29.910546232268803 ], [ -95.238532976143048, 29.908462231578735 ], [ -95.238180976523338, 29.908065231545727 ], [ -95.237307976210332, 29.907525231355006 ], [ -95.237028975852297, 29.907261231645897 ], [ -95.236967975615343, 29.907156231638808 ], [ -95.236897975994921, 29.907036231588986 ], [ -95.23688597567471, 29.906498231712959 ], [ -95.236947976057948, 29.906289231103333 ], [ -95.237111975541183, 29.906084231671414 ], [ -95.237183976207206, 29.906020231084309 ], [ -95.240280976127281, 29.903293231102552 ], [ -95.240532976108284, 29.902882230452743 ], [ -95.240742976785285, 29.902337230917102 ], [ -95.241022976752078, 29.899965230334306 ], [ -95.241050976488808, 29.899730230029004 ], [ -95.241074976736655, 29.899121229557707 ], [ -95.24097897614898, 29.898924229931925 ], [ -95.240772976606678, 29.898699229651143 ], [ -95.240691976013281, 29.898645229725457 ], [ -95.240577976696954, 29.898755230269973 ], [ -95.237085975435875, 29.902135230592069 ], [ -95.236826975366, 29.902388230356195 ], [ -95.235509974786481, 29.903684231216594 ], [ -95.226844973052536, 29.912086233413792 ], [ -95.224183972580732, 29.914710233704717 ], [ -95.223473972476967, 29.915400233640874 ], [ -95.222140972884503, 29.916680234275432 ], [ -95.220694972365791, 29.918046234456813 ], [ -95.219634971959806, 29.919081235066713 ], [ -95.218452972128745, 29.920217235003889 ], [ -95.217392971175414, 29.921245235460777 ], [ -95.215219970611642, 29.92334723527933 ], [ -95.215006970868771, 29.923555235548012 ], [ -95.211461970175421, 29.927029236361875 ], [ -95.207353969171848, 29.930989237705727 ], [ -95.206718968826607, 29.931601237560052 ], [ -95.206391969172117, 29.931916238217511 ], [ -95.207324969668051, 29.932592238105741 ], [ -95.207617969419076, 29.932786237891147 ], [ -95.207783969729789, 29.932907238177226 ], [ -95.208396969404163, 29.933247237835083 ], [ -95.209200969427286, 29.933610237921446 ], [ -95.210079969683292, 29.933932237925205 ], [ -95.210572970173445, 29.934047238342998 ], [ -95.211258970319889, 29.934150238164616 ], [ -95.21156397046029, 29.934196238511994 ], [ -95.211873970585415, 29.934206237784728 ], [ -95.212280970841746, 29.934250238012606 ], [ -95.212925970518398, 29.934252238412878 ], [ -95.216241972126113, 29.934196237752946 ], [ -95.218939972605796, 29.934162237580331 ], [ -95.225423974537648, 29.934128237309881 ], [ -95.225599974420177, 29.934125237669726 ], [ -95.225767974041744, 29.934128237545448 ], [ -95.225819974129777, 29.934127237242947 ], [ -95.226010974000857, 29.934123237150548 ], [ -95.228119974421475, 29.934082237700309 ], [ -95.231057975039192, 29.934013236930088 ], [ -95.233317975946008, 29.933967237470672 ], [ -95.234090976021079, 29.933960237224639 ], [ -95.234396976647062, 29.93395523717064 ], [ -95.23588797717774, 29.933910237523452 ], [ -95.238699977022989, 29.934162236830694 ], [ -95.24074197809415, 29.934437237514551 ], [ -95.242313978197529, 29.934541237252819 ], [ -95.243818978971504, 29.934578237381093 ], [ -95.243869979176253, 29.93457823744518 ], [ -95.245308979320399, 29.934573236757544 ], [ -95.245928979420484, 29.934541236710885 ], [ -95.247741979636444, 29.934541237238864 ], [ -95.247902979796123, 29.934539236904943 ], [ -95.249267980380381, 29.934518237144584 ], [ -95.249519980084784, 29.934506237147158 ], [ -95.249772980393544, 29.934506236447294 ], [ -95.250441980369871, 29.934443236444363 ], [ -95.252024981273919, 29.934434236688219 ], [ -95.253179980895283, 29.934480236501528 ], [ -95.254424981778286, 29.934592236267999 ], [ -95.2554979815542, 29.934736236219855 ], [ -95.256128982316085, 29.934816236344201 ], [ -95.256886982240857, 29.934977236454216 ], [ -95.257918982093742, 29.935195236774291 ], [ -95.259191982763824, 29.935529236928367 ], [ -95.260570983701783, 29.935964236530157 ], [ -95.260771982989183, 29.936024236416412 ], [ -95.262430984182203, 29.936528236916878 ], [ -95.262773983812082, 29.936630236668918 ], [ -95.2630949843564, 29.936731236756955 ], [ -95.263573983688389, 29.936882236573609 ], [ -95.263947984589237, 29.936984236865388 ], [ -95.264760984818579, 29.937191237147584 ], [ -95.264892984450015, 29.937231237044738 ], [ -95.265853985083979, 29.937538237313376 ], [ -95.26619298445037, 29.93765623711791 ], [ -95.266695984465116, 29.937810237258532 ], [ -95.268322985493839, 29.93839823690714 ], [ -95.268386985015354, 29.938048236724708 ], [ -95.268432985333135, 29.937731236772873 ], [ -95.26845798502454, 29.937334236741084 ], [ -95.268453985017672, 29.937036236530648 ], [ -95.268436985575406, 29.936758236716553 ], [ -95.268412985413931, 29.936497236687025 ], [ -95.268393985295944, 29.936268236192721 ], [ -95.268399985430108, 29.935618235992134 ], [ -95.268484985591371, 29.934799236618549 ], [ -95.268485984685185, 29.934785236422197 ], [ -95.268531985539752, 29.934370236222872 ], [ -95.268564985656553, 29.934023236215761 ], [ -95.268614984700605, 29.933662235739849 ], [ -95.26868598509887, 29.933381236267007 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 772, "Tract": "48201232306", "Area_SqMi": 1.646921889847867, "total_2009": 166, "total_2010": 164, "total_2011": 266, "total_2012": 333, "total_2013": 337, "total_2014": 354, "total_2015": 293, "total_2016": 302, "total_2017": 245, "total_2018": 270, "total_2019": 193, "total_2020": 155, "age1": 26, "age2": 80, "age3": 44, "earn1": 33, "earn2": 63, "earn3": 54, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 19, "naics_s06": 19, "naics_s07": 41, "naics_s08": 14, "naics_s09": 0, "naics_s10": 1, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 20, "naics_s17": 0, "naics_s18": 15, "naics_s19": 12, "naics_s20": 0, "race1": 109, "race2": 7, "race3": 3, "race4": 26, "race5": 2, "race6": 3, "ethnicity1": 88, "ethnicity2": 62, "edu1": 42, "edu2": 39, "edu3": 23, "edu4": 20, "Shape_Length": 27948.721568491892, "Shape_Area": 45913363.553973205, "total_2021": 149, "total_2022": 150 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.214170967189503, 29.850108220881236 ], [ -95.214143967036421, 29.848845220085764 ], [ -95.214122967178895, 29.847797220025868 ], [ -95.214117967136758, 29.847601220473873 ], [ -95.214077967124013, 29.845838219944973 ], [ -95.214021966816844, 29.842357218780034 ], [ -95.213962966430401, 29.839863218302053 ], [ -95.213955967385118, 29.839552218579197 ], [ -95.213947967031018, 29.839232218780509 ], [ -95.213942966988938, 29.839038218131613 ], [ -95.214012966686397, 29.838876218312055 ], [ -95.214052966479287, 29.838784218625268 ], [ -95.21391796707951, 29.837320218045804 ], [ -95.213820967073119, 29.836877218430242 ], [ -95.213700966973889, 29.836473217849026 ], [ -95.213566966358016, 29.83614221814641 ], [ -95.213404966216842, 29.835844217795813 ], [ -95.212582966498772, 29.834597217534171 ], [ -95.211356966347211, 29.833127217310576 ], [ -95.210992965993896, 29.832588217067489 ], [ -95.209475965768988, 29.833230217663377 ], [ -95.207590964689373, 29.834028217947701 ], [ -95.207043964576954, 29.834303217508708 ], [ -95.203301963771054, 29.835894217914106 ], [ -95.199940963156521, 29.837323218944835 ], [ -95.197806962149386, 29.838257219258914 ], [ -95.193527961325003, 29.840135219073726 ], [ -95.188869960582807, 29.842130220007487 ], [ -95.186044959948617, 29.843340220211346 ], [ -95.185689960251608, 29.843492220292614 ], [ -95.185776960223919, 29.843720220091345 ], [ -95.185939959785955, 29.844047220064471 ], [ -95.186242960223765, 29.84472322087624 ], [ -95.186615959685454, 29.845730220584215 ], [ -95.186808960604026, 29.846668221158993 ], [ -95.186896959957423, 29.847274221076905 ], [ -95.186932959929663, 29.847523221269256 ], [ -95.18705696046527, 29.848599221606985 ], [ -95.187098960506376, 29.849813221909876 ], [ -95.187139960594919, 29.851317222185251 ], [ -95.187167960861345, 29.853082222376926 ], [ -95.187153960755964, 29.853341222209863 ], [ -95.187298960553392, 29.853339222353089 ], [ -95.187476960288052, 29.853336222361246 ], [ -95.191553962043415, 29.853230221784582 ], [ -95.192645961816936, 29.853201222101351 ], [ -95.192747962135229, 29.853199222421885 ], [ -95.194221962465079, 29.853161222378422 ], [ -95.194701962908681, 29.853148222129231 ], [ -95.195870963192604, 29.85313622199812 ], [ -95.197045963322822, 29.852969222134387 ], [ -95.198549963967409, 29.852555221607528 ], [ -95.198748963191804, 29.852499222218267 ], [ -95.198806963933137, 29.852483221359034 ], [ -95.198927963818889, 29.852450222042847 ], [ -95.200213963577411, 29.852087221260568 ], [ -95.201551964609379, 29.851796221376233 ], [ -95.20162496409138, 29.851786221798125 ], [ -95.204298965179362, 29.851779221028462 ], [ -95.205350965517241, 29.851753221789121 ], [ -95.206265965357886, 29.851580221460082 ], [ -95.206412965942036, 29.851553221729311 ], [ -95.207033965922435, 29.851350220990799 ], [ -95.207887965630704, 29.851072221352112 ], [ -95.207987965475567, 29.85103922138434 ], [ -95.208543965908547, 29.850852221071907 ], [ -95.208710966537225, 29.850795221267315 ], [ -95.208766965770039, 29.850776221354732 ], [ -95.209736966359358, 29.850536220909689 ], [ -95.210200966048845, 29.850420221116952 ], [ -95.210741966674107, 29.85028722060262 ], [ -95.211859966597927, 29.850142220674933 ], [ -95.212767967491615, 29.850104220436208 ], [ -95.214170967189503, 29.850108220881236 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 773, "Tract": "48201541603", "Area_SqMi": 0.91609680077423938, "total_2009": 1176, "total_2010": 993, "total_2011": 1375, "total_2012": 974, "total_2013": 940, "total_2014": 1660, "total_2015": 896, "total_2016": 926, "total_2017": 931, "total_2018": 989, "total_2019": 1012, "total_2020": 946, "age1": 310, "age2": 421, "age3": 200, "earn1": 267, "earn2": 440, "earn3": 224, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 0, "naics_s07": 461, "naics_s08": 1, "naics_s09": 1, "naics_s10": 20, "naics_s11": 11, "naics_s12": 6, "naics_s13": 0, "naics_s14": 14, "naics_s15": 60, "naics_s16": 126, "naics_s17": 0, "naics_s18": 214, "naics_s19": 6, "naics_s20": 0, "race1": 663, "race2": 147, "race3": 11, "race4": 90, "race5": 1, "race6": 19, "ethnicity1": 538, "ethnicity2": 393, "edu1": 193, "edu2": 174, "edu3": 145, "edu4": 109, "Shape_Length": 22706.946541573518, "Shape_Area": 25539210.890241291, "total_2021": 1017, "total_2022": 931 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.665204083183454, 29.849236205473375 ], [ -95.665201082400188, 29.849090205242163 ], [ -95.665199083153169, 29.849025205330555 ], [ -95.665115083280881, 29.848641204711061 ], [ -95.665092082301783, 29.848530205430368 ], [ -95.665016083195596, 29.847662205300598 ], [ -95.665029082545487, 29.847293204563496 ], [ -95.665016082177274, 29.846854204271096 ], [ -95.66502108238781, 29.846596204583232 ], [ -95.665029082526772, 29.846216204282289 ], [ -95.665048082476986, 29.845925204284903 ], [ -95.665042082982495, 29.844897204161789 ], [ -95.664941082084212, 29.843896203951502 ], [ -95.664910082048038, 29.84247220404297 ], [ -95.664898082680423, 29.840922203251427 ], [ -95.664878082173061, 29.840794203279525 ], [ -95.664860082488858, 29.840675203013824 ], [ -95.66485608220637, 29.840031202921107 ], [ -95.661672081130092, 29.840031203178103 ], [ -95.66167308126262, 29.840239203772843 ], [ -95.661668081553387, 29.840312203499771 ], [ -95.661667081798825, 29.84033220321416 ], [ -95.661673081264794, 29.840641203980876 ], [ -95.658665081039771, 29.84064420375552 ], [ -95.657378080500663, 29.840646203701493 ], [ -95.657373080542854, 29.84022920394559 ], [ -95.657323079696653, 29.835349202894619 ], [ -95.657321080109469, 29.835070202395499 ], [ -95.657151079967363, 29.835070202445159 ], [ -95.657110079811886, 29.835071202189237 ], [ -95.656915079752139, 29.835071202428395 ], [ -95.656713079768267, 29.835072202128465 ], [ -95.656521079793478, 29.835072202577575 ], [ -95.656327080074874, 29.835073202592525 ], [ -95.656221079523803, 29.835074202389293 ], [ -95.656174080129318, 29.835075202990982 ], [ -95.656132079913561, 29.835076202772417 ], [ -95.655945079721732, 29.835078202630324 ], [ -95.655760079590465, 29.835080202462986 ], [ -95.655558079890184, 29.835079203019749 ], [ -95.655541079268644, 29.835079202344605 ], [ -95.655508079365461, 29.835080202553616 ], [ -95.655455080072855, 29.835082202253261 ], [ -95.655383080028628, 29.835084202799688 ], [ -95.655359079600558, 29.835092202198201 ], [ -95.655209080109515, 29.835138202244906 ], [ -95.655174079186239, 29.835021202261213 ], [ -95.655135079121607, 29.834907202879737 ], [ -95.654942079060163, 29.834959202701715 ], [ -95.654878079742701, 29.834982202528867 ], [ -95.654805079726898, 29.834994202789428 ], [ -95.654738079824128, 29.835019202735399 ], [ -95.654714079749269, 29.835025202810961 ], [ -95.65460607960226, 29.835051202591867 ], [ -95.65387307958747, 29.83525620262618 ], [ -95.653456079262497, 29.835370202538193 ], [ -95.652578078684158, 29.835615202411304 ], [ -95.652322078951187, 29.835684202874766 ], [ -95.651951078575465, 29.835785203030021 ], [ -95.651637079022137, 29.835860203170032 ], [ -95.651247078627108, 29.835928203374042 ], [ -95.651002078876616, 29.835956202777435 ], [ -95.650856078571223, 29.835969202929938 ], [ -95.650532078331821, 29.835991202966436 ], [ -95.650435078618841, 29.835994202917735 ], [ -95.650242078433848, 29.836001203261301 ], [ -95.650182078418212, 29.836004202988661 ], [ -95.64942707866048, 29.83599820333939 ], [ -95.649030078052391, 29.836002203365435 ], [ -95.648872078454772, 29.8359972027942 ], [ -95.64882807811675, 29.835996203448641 ], [ -95.648760078194329, 29.835997202879238 ], [ -95.648716078136374, 29.835997202662597 ], [ -95.648605077655802, 29.835996203171998 ], [ -95.648317077895939, 29.835995203492644 ], [ -95.647873077798309, 29.835994202984818 ], [ -95.647681077980636, 29.835995203525716 ], [ -95.647488077893797, 29.835995203094068 ], [ -95.647364078036247, 29.835995203493596 ], [ -95.647087077743919, 29.835994202679665 ], [ -95.646935077542395, 29.835994203009971 ], [ -95.646767077829978, 29.835995203011592 ], [ -95.646599077885654, 29.835995202735358 ], [ -95.646525077337941, 29.835995203456708 ], [ -95.646452077684927, 29.835994202930038 ], [ -95.646084076970254, 29.835993203381634 ], [ -95.645980077279972, 29.835994202731616 ], [ -95.645759076981236, 29.83599520268152 ], [ -95.645633077197544, 29.835996202967412 ], [ -95.645666077373505, 29.836494203551727 ], [ -95.645671077108105, 29.836753202890769 ], [ -95.645686077250261, 29.837492203884224 ], [ -95.645689077011028, 29.837602203538953 ], [ -95.645691077738121, 29.837712203473949 ], [ -95.645693077053195, 29.837979203973251 ], [ -95.645696077522686, 29.838246203316647 ], [ -95.64569907758883, 29.83830620350308 ], [ -95.6457000777459, 29.838367203369565 ], [ -95.645700077468831, 29.838529203342848 ], [ -95.645701077466086, 29.838692204018379 ], [ -95.645706077805897, 29.838841203700792 ], [ -95.645706077000483, 29.838982204161486 ], [ -95.645706077854001, 29.839121203633102 ], [ -95.645711077398403, 29.839243203435743 ], [ -95.645706076928434, 29.839392203871846 ], [ -95.645710077899096, 29.839614203724466 ], [ -95.64570107775252, 29.839780203519854 ], [ -95.645706077081513, 29.839929204028834 ], [ -95.645707077274835, 29.840046203653504 ], [ -95.645706077053305, 29.840162203724322 ], [ -95.645711077382458, 29.840320203882829 ], [ -95.645711077755081, 29.840401204286145 ], [ -95.64571607717464, 29.840592203698872 ], [ -95.645721077653334, 29.84064820398897 ], [ -95.64572607778301, 29.840749204282151 ], [ -95.645723077937674, 29.840956204038356 ], [ -95.645730077609414, 29.841054204509362 ], [ -95.645708077923075, 29.841233203911688 ], [ -95.645724077815956, 29.841477204510163 ], [ -95.645741077114721, 29.841722203967976 ], [ -95.645734077684892, 29.842096204821882 ], [ -95.645731077346724, 29.842245204612308 ], [ -95.64574107773835, 29.842414204019292 ], [ -95.645736077565147, 29.842672204531745 ], [ -95.645736077851723, 29.842841204723559 ], [ -95.64573607708806, 29.843145204822335 ], [ -95.645741077358664, 29.84320420433589 ], [ -95.645749077688222, 29.843583204997856 ], [ -95.645751077532708, 29.843651204910852 ], [ -95.645756077852496, 29.845623204939191 ], [ -95.645765077398906, 29.8457922053041 ], [ -95.645775078191861, 29.845989205270001 ], [ -95.645770078090791, 29.846150205219253 ], [ -95.645771077689034, 29.846222205568491 ], [ -95.645770077577225, 29.84634320481403 ], [ -95.645783077999539, 29.846829205545635 ], [ -95.64578507793037, 29.846897205390434 ], [ -95.645780077745826, 29.847374205716381 ], [ -95.645790077353851, 29.84794620574927 ], [ -95.645790077655221, 29.848189205457722 ], [ -95.645800077884232, 29.848359205491846 ], [ -95.645790077892499, 29.848627205636362 ], [ -95.645775077616634, 29.848963205593417 ], [ -95.645770077353092, 29.849003205610227 ], [ -95.646732078148744, 29.84901020556784 ], [ -95.646945077931164, 29.849012205650823 ], [ -95.647132078613311, 29.849011206041066 ], [ -95.647143078494992, 29.849011205736744 ], [ -95.648061078724979, 29.849010205913274 ], [ -95.648315078748055, 29.849009205689168 ], [ -95.649436078702863, 29.849006205661453 ], [ -95.650096078576127, 29.849005205278701 ], [ -95.651068079575921, 29.849024205260044 ], [ -95.651683079375999, 29.849022205214567 ], [ -95.652149079362928, 29.849022205552181 ], [ -95.652595079350789, 29.849020205931978 ], [ -95.65373607957801, 29.849017205213766 ], [ -95.654489080031567, 29.849011205257046 ], [ -95.654619079646935, 29.849010205767133 ], [ -95.656457080227085, 29.849006205047409 ], [ -95.6568330802031, 29.849002205295982 ], [ -95.657084080386525, 29.84900520507825 ], [ -95.657451080430079, 29.849000205768437 ], [ -95.657897080703194, 29.849001204945466 ], [ -95.658073080914505, 29.848997205536232 ], [ -95.658457081004798, 29.848996205782893 ], [ -95.658526080917625, 29.84899420532636 ], [ -95.660514081467113, 29.84894520556394 ], [ -95.661008081879487, 29.848934205617763 ], [ -95.66143208156349, 29.848926205350995 ], [ -95.66159408236372, 29.848931205345718 ], [ -95.661756081487994, 29.848937205156737 ], [ -95.661974082405294, 29.848955205626446 ], [ -95.662451081655036, 29.849019205492223 ], [ -95.663168081836048, 29.849144204883661 ], [ -95.663504081898424, 29.849190204825213 ], [ -95.663880082728554, 29.84922520546996 ], [ -95.664173082164467, 29.849238205530625 ], [ -95.664469082909079, 29.849240204992917 ], [ -95.664662082229654, 29.84923720546249 ], [ -95.665204083183454, 29.849236205473375 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 774, "Tract": "48201221701", "Area_SqMi": 1.1184385695282013, "total_2009": 269, "total_2010": 316, "total_2011": 345, "total_2012": 324, "total_2013": 367, "total_2014": 204, "total_2015": 231, "total_2016": 246, "total_2017": 248, "total_2018": 351, "total_2019": 351, "total_2020": 320, "age1": 62, "age2": 140, "age3": 73, "earn1": 39, "earn2": 83, "earn3": 153, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 101, "naics_s05": 73, "naics_s06": 30, "naics_s07": 37, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 11, "naics_s19": 2, "naics_s20": 0, "race1": 208, "race2": 29, "race3": 4, "race4": 32, "race5": 0, "race6": 2, "ethnicity1": 138, "ethnicity2": 137, "edu1": 80, "edu2": 54, "edu3": 49, "edu4": 30, "Shape_Length": 23549.897519317994, "Shape_Area": 31180153.091703437, "total_2021": 265, "total_2022": 275 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.391096014446305, 29.883231221172707 ], [ -95.390619013763015, 29.882439221408752 ], [ -95.390297013486816, 29.881909221475855 ], [ -95.389757013626536, 29.881023220952763 ], [ -95.389498013291004, 29.880597220672819 ], [ -95.38883001394106, 29.879495220480674 ], [ -95.388609012966697, 29.879122220667544 ], [ -95.388549013142097, 29.879035220318954 ], [ -95.3884430132088, 29.878851220673255 ], [ -95.388403013217783, 29.878754220441873 ], [ -95.388339012880266, 29.878675220608223 ], [ -95.388283013809087, 29.878596220419247 ], [ -95.387972013169446, 29.878080220694684 ], [ -95.387650013512811, 29.877549220059233 ], [ -95.387521013276839, 29.877338220802592 ], [ -95.387281013315018, 29.876942220347079 ], [ -95.386728012292892, 29.876035220553391 ], [ -95.386457012626849, 29.875608220103643 ], [ -95.386521012780491, 29.875608219983985 ], [ -95.386511013012267, 29.87559122035799 ], [ -95.385473012696849, 29.873856220105615 ], [ -95.385289012495306, 29.873566220014357 ], [ -95.385239012437694, 29.873470219990249 ], [ -95.385127012624196, 29.873260219362859 ], [ -95.385077012148997, 29.873151219536116 ], [ -95.385035012243591, 29.873043219667675 ], [ -95.385003012495304, 29.872945219641807 ], [ -95.384968012093793, 29.872817219177772 ], [ -95.384959012249027, 29.872765219692646 ], [ -95.384952012161392, 29.872659219937464 ], [ -95.38490801208323, 29.872335219337248 ], [ -95.384895012061889, 29.871934219163595 ], [ -95.384880012090733, 29.871740219119648 ], [ -95.384878011630263, 29.871524219289928 ], [ -95.384895012500465, 29.87141421953363 ], [ -95.384906011909706, 29.871338219091076 ], [ -95.384903011688252, 29.871201219628855 ], [ -95.384920012086042, 29.870055218876249 ], [ -95.384820012156666, 29.870053218949394 ], [ -95.384192012116046, 29.870046219176569 ], [ -95.38283001132443, 29.87006321938734 ], [ -95.380017010705458, 29.870112219206714 ], [ -95.379518011025269, 29.870112218803939 ], [ -95.378608010001528, 29.870124219201035 ], [ -95.377711010267831, 29.870133219340499 ], [ -95.376851010026897, 29.870149218961309 ], [ -95.375230009244234, 29.870176219781495 ], [ -95.374038008890736, 29.870190218971203 ], [ -95.372981009046242, 29.870196219229079 ], [ -95.37286200913492, 29.870214219902483 ], [ -95.371945008452812, 29.870214219125295 ], [ -95.370202008769866, 29.87024121925327 ], [ -95.369544008628921, 29.870230219644029 ], [ -95.368830008391427, 29.87025221959313 ], [ -95.368452007517348, 29.870248219604221 ], [ -95.368147008311936, 29.870267219265646 ], [ -95.367442007214535, 29.870379220084395 ], [ -95.366847007006825, 29.870480220092723 ], [ -95.365804006892802, 29.8706582193822 ], [ -95.36568700736288, 29.870675219969957 ], [ -95.36549200663589, 29.870702219617723 ], [ -95.365092006847448, 29.870737220116933 ], [ -95.36547600731447, 29.872196220181003 ], [ -95.365556007018952, 29.872519220182138 ], [ -95.366334007854121, 29.875664220914562 ], [ -95.366537007583929, 29.876482220859963 ], [ -95.367042007459048, 29.878536221415583 ], [ -95.367326007970703, 29.879694221916083 ], [ -95.368234008667542, 29.883384222248786 ], [ -95.368860008643736, 29.883366222056335 ], [ -95.369808008366846, 29.883347222468078 ], [ -95.37298300991813, 29.883289222507454 ], [ -95.37350800965136, 29.883280222405702 ], [ -95.375608010772666, 29.883268222385013 ], [ -95.375697010239762, 29.883255222363953 ], [ -95.375776009982744, 29.883254221629162 ], [ -95.375990010911607, 29.883252221748087 ], [ -95.376096010789269, 29.883251221731349 ], [ -95.376442010074456, 29.883251222264818 ], [ -95.377382010871727, 29.88324522188265 ], [ -95.378532011347588, 29.883232221544539 ], [ -95.379027010940092, 29.883232221527329 ], [ -95.379164010743793, 29.883232221843272 ], [ -95.381526012284908, 29.883212221759596 ], [ -95.383989012496968, 29.883171221843629 ], [ -95.384054012919719, 29.883182222101375 ], [ -95.384101012741695, 29.883180221315286 ], [ -95.384188012572181, 29.883183221391239 ], [ -95.384276012817949, 29.88319822175713 ], [ -95.384502012516549, 29.883189221283128 ], [ -95.386615012778805, 29.88319022127207 ], [ -95.38830401391148, 29.883202221926663 ], [ -95.389812013627463, 29.883205221180685 ], [ -95.390478014389828, 29.883218221692427 ], [ -95.391096014446305, 29.883231221172707 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 775, "Tract": "48201330801", "Area_SqMi": 5.7571248371508128, "total_2009": 930, "total_2010": 1010, "total_2011": 1029, "total_2012": 1058, "total_2013": 989, "total_2014": 1056, "total_2015": 1443, "total_2016": 1353, "total_2017": 1698, "total_2018": 1775, "total_2019": 1943, "total_2020": 1912, "age1": 477, "age2": 1452, "age3": 481, "earn1": 219, "earn2": 448, "earn3": 1743, "naics_s01": 1, "naics_s02": 3, "naics_s03": 0, "naics_s04": 275, "naics_s05": 307, "naics_s06": 106, "naics_s07": 40, "naics_s08": 52, "naics_s09": 483, "naics_s10": 3, "naics_s11": 0, "naics_s12": 868, "naics_s13": 0, "naics_s14": 51, "naics_s15": 0, "naics_s16": 83, "naics_s17": 0, "naics_s18": 84, "naics_s19": 54, "naics_s20": 0, "race1": 1871, "race2": 361, "race3": 20, "race4": 118, "race5": 7, "race6": 33, "ethnicity1": 1473, "ethnicity2": 937, "edu1": 453, "edu2": 514, "edu3": 546, "edu4": 420, "Shape_Length": 59024.171451242328, "Shape_Area": 160498787.04212937, "total_2021": 2255, "total_2022": 2410 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355456993086506, 29.615141167994139 ], [ -95.355443993303481, 29.61447616747898 ], [ -95.355416993544864, 29.614347167723977 ], [ -95.355435992725859, 29.612200167307844 ], [ -95.355438993315687, 29.611610167368582 ], [ -95.355444993485605, 29.610261166434988 ], [ -95.355441993151473, 29.607797166493462 ], [ -95.355433992774692, 29.60658316624631 ], [ -95.355317992423835, 29.605710166168713 ], [ -95.355306992835395, 29.60566016623763 ], [ -95.355259992688246, 29.605447166093747 ], [ -95.355226992620644, 29.605296166033295 ], [ -95.355194992377776, 29.605151165498242 ], [ -95.355065993096915, 29.60456416531245 ], [ -95.354657992173657, 29.603270164998722 ], [ -95.353991992253157, 29.601239164877491 ], [ -95.353812992344743, 29.600693164868282 ], [ -95.353702992453549, 29.600358164564209 ], [ -95.353498991895123, 29.599822165156731 ], [ -95.353377991508481, 29.599320164308562 ], [ -95.353265992410201, 29.598971164837568 ], [ -95.353224991903659, 29.598844164576619 ], [ -95.353111991601963, 29.598492164097305 ], [ -95.353103991486776, 29.598377163991497 ], [ -95.352937991585634, 29.597965164308889 ], [ -95.352822991480608, 29.597448164305039 ], [ -95.352701991546098, 29.597047163736807 ], [ -95.352483991147793, 29.596148164163381 ], [ -95.352247991376203, 29.595336163665124 ], [ -95.352243991150928, 29.595144163981207 ], [ -95.352197991364022, 29.594818163750524 ], [ -95.352175991397687, 29.594663163608967 ], [ -95.352148991919037, 29.594273163919819 ], [ -95.352107991681748, 29.593850163899781 ], [ -95.352086991112643, 29.593390163728753 ], [ -95.352084991482343, 29.593344163107123 ], [ -95.352083990991574, 29.593331162990058 ], [ -95.352078991626072, 29.593227163645043 ], [ -95.352073991372592, 29.593006163225098 ], [ -95.352036990945379, 29.591276163220268 ], [ -95.352001991024096, 29.590176162330568 ], [ -95.351911990500767, 29.585782162013203 ], [ -95.351912991179717, 29.585535161590148 ], [ -95.351913991401815, 29.58546016186364 ], [ -95.351752991138497, 29.585504161456928 ], [ -95.351656991186871, 29.585550162166232 ], [ -95.351539990911192, 29.585611161764497 ], [ -95.351413990743922, 29.585651161545776 ], [ -95.351366990364525, 29.585681162047486 ], [ -95.351255991143901, 29.585751161735196 ], [ -95.351114991096452, 29.585863162127161 ], [ -95.351005990548643, 29.585972161796221 ], [ -95.350873990993819, 29.586061161767809 ], [ -95.35077999049085, 29.586109161756369 ], [ -95.350707990334286, 29.586159162006417 ], [ -95.350611990713162, 29.58623216208392 ], [ -95.350517991007138, 29.586273162294741 ], [ -95.350453990497556, 29.586294161721728 ], [ -95.350384990777243, 29.586326162365921 ], [ -95.350303991024063, 29.58633916207167 ], [ -95.350192990781494, 29.586355162507598 ], [ -95.350064990681815, 29.586371162068936 ], [ -95.349925990354535, 29.586385162432222 ], [ -95.349803990460657, 29.586398162379787 ], [ -95.349690990235032, 29.586418161901427 ], [ -95.349565989981414, 29.586448161758856 ], [ -95.349482990728561, 29.586464162082354 ], [ -95.349371990806034, 29.586479162551363 ], [ -95.349248990861838, 29.586504162429112 ], [ -95.349120989842334, 29.586531162413525 ], [ -95.348951989951047, 29.586529162065077 ], [ -95.348837990274873, 29.586511161942926 ], [ -95.348716989833036, 29.586358162407141 ], [ -95.348608990693663, 29.58623016167984 ], [ -95.348540990581, 29.586156162500927 ], [ -95.348416990568793, 29.58601516176309 ], [ -95.348389990408151, 29.58598816208298 ], [ -95.348323989924893, 29.585921161930685 ], [ -95.348263989599317, 29.585873162434499 ], [ -95.348239989991342, 29.585854162321933 ], [ -95.348196990527171, 29.585836161849599 ], [ -95.348174989775345, 29.585833161794703 ], [ -95.348095989642999, 29.585816161676874 ], [ -95.347962990428925, 29.585785162065996 ], [ -95.347873989654872, 29.585765161675731 ], [ -95.347788989719163, 29.585747161646232 ], [ -95.347749989814119, 29.585748162183549 ], [ -95.347731989695646, 29.585749161977994 ], [ -95.347710989940509, 29.585749161807641 ], [ -95.347674989904277, 29.585749161882475 ], [ -95.347653990149141, 29.58574916170322 ], [ -95.347635990232519, 29.585748161983574 ], [ -95.347602989637437, 29.585746162286316 ], [ -95.347578989850248, 29.585744161914914 ], [ -95.347561989670183, 29.585743162402522 ], [ -95.347525989681245, 29.585738162317529 ], [ -95.347509989904523, 29.585736161926899 ], [ -95.347487989829332, 29.585732161571617 ], [ -95.347308989659709, 29.585707162071245 ], [ -95.34719598961621, 29.585691162042696 ], [ -95.34702299005319, 29.585671161852076 ], [ -95.346776989573243, 29.58562216213533 ], [ -95.346537989202531, 29.585572161577694 ], [ -95.346520989542995, 29.585567162028774 ], [ -95.346501990031513, 29.585561161811537 ], [ -95.346487989349498, 29.585558162435262 ], [ -95.346468990002791, 29.585555161930206 ], [ -95.346453990008456, 29.585553161638703 ], [ -95.346439989102578, 29.585552161758638 ], [ -95.346419989734159, 29.585551162325803 ], [ -95.346407989099802, 29.585552162423433 ], [ -95.346390989767585, 29.585553162291653 ], [ -95.346373989789214, 29.585555162345106 ], [ -95.34635999007358, 29.585557162201692 ], [ -95.346343989598878, 29.585561161978891 ], [ -95.346326989357465, 29.5855651624294 ], [ -95.346310990068474, 29.585572161947599 ], [ -95.346297989592102, 29.585578161928616 ], [ -95.346284989884353, 29.585586162339595 ], [ -95.3462699898311, 29.585597161983969 ], [ -95.346259989121933, 29.585607161672701 ], [ -95.346248989414306, 29.585619162466571 ], [ -95.346238989624567, 29.585634162301687 ], [ -95.346232989062841, 29.585647161740198 ], [ -95.346227989880489, 29.585659162148275 ], [ -95.346224989704368, 29.585675162013079 ], [ -95.346224989640689, 29.585688161969372 ], [ -95.346224989314237, 29.585703162328588 ], [ -95.346223989131374, 29.585715161841875 ], [ -95.346221989181245, 29.585727162029603 ], [ -95.346215989380738, 29.585742161898221 ], [ -95.34620998904056, 29.585753161834266 ], [ -95.346200989461423, 29.585764161989424 ], [ -95.346192989231454, 29.585774162155904 ], [ -95.346179989656989, 29.585814161901542 ], [ -95.34617098923944, 29.58584416231723 ], [ -95.346167989808436, 29.585854161873176 ], [ -95.346169989089688, 29.585864161665913 ], [ -95.346165989889528, 29.585874161895862 ], [ -95.346161989272915, 29.585883161881998 ], [ -95.346155989950461, 29.585894161843456 ], [ -95.346147989322148, 29.585903161791407 ], [ -95.346137989570622, 29.585913162400331 ], [ -95.34613198947666, 29.58592216192957 ], [ -95.346123989875792, 29.585931161904178 ], [ -95.346120989757111, 29.585942162548118 ], [ -95.346116989933009, 29.585953162061944 ], [ -95.34611098980254, 29.585962162491985 ], [ -95.346110989989427, 29.585973162044539 ], [ -95.34610598921121, 29.58598116248692 ], [ -95.346102989156904, 29.586000162064376 ], [ -95.346099989682486, 29.58601016252031 ], [ -95.346095989470186, 29.586020161817874 ], [ -95.346090989870333, 29.586031162004272 ], [ -95.346084989882911, 29.586043162149494 ], [ -95.346079989897646, 29.586053162119978 ], [ -95.346073989524626, 29.586064162049102 ], [ -95.34606798979911, 29.586074161790663 ], [ -95.346060989652983, 29.5860851623925 ], [ -95.346053989537623, 29.586096162092147 ], [ -95.34595598976459, 29.586237162456655 ], [ -95.345951989115278, 29.586246162435806 ], [ -95.345946989375335, 29.586254161998088 ], [ -95.345941990016328, 29.586263161775641 ], [ -95.345936989210699, 29.586271162211162 ], [ -95.345930989459632, 29.58628116194609 ], [ -95.345924989943825, 29.58628916217986 ], [ -95.345909989355519, 29.586307162303903 ], [ -95.345902989714602, 29.586314162091469 ], [ -95.345892989280642, 29.586325161966599 ], [ -95.34588098998141, 29.586335162095775 ], [ -95.345870989399415, 29.58634316225292 ], [ -95.345861989858449, 29.586349162264764 ], [ -95.345851989781565, 29.58635316251689 ], [ -95.345827989373163, 29.58637116230766 ], [ -95.345816989042376, 29.586379162230397 ], [ -95.345805989361253, 29.586386161964946 ], [ -95.345792989512219, 29.586394162326645 ], [ -95.345782989189047, 29.586400162074405 ], [ -95.345770989349589, 29.586406162261898 ], [ -95.345756989373825, 29.586413162173912 ], [ -95.345744989151527, 29.586418162143609 ], [ -95.345727989915304, 29.586425162261655 ], [ -95.345715989310634, 29.586429162013314 ], [ -95.34570298893108, 29.586433162434563 ], [ -95.345689989614556, 29.586437161980832 ], [ -95.345676989885632, 29.586440162212256 ], [ -95.345662989382348, 29.586443162182746 ], [ -95.345650989393675, 29.586446162643142 ], [ -95.345639989831412, 29.586448162245116 ], [ -95.345622989689502, 29.586450162202727 ], [ -95.345326989106127, 29.586490162553911 ], [ -95.345310989757422, 29.586492161832251 ], [ -95.345299989775839, 29.586493162092662 ], [ -95.345288989137586, 29.586495162539364 ], [ -95.345264989814311, 29.586500162302897 ], [ -95.345253989581892, 29.586503162060296 ], [ -95.345240989174854, 29.58650716243654 ], [ -95.345228989823283, 29.586509162671859 ], [ -95.345217989430736, 29.586517162545107 ], [ -95.345205988919375, 29.586524161967063 ], [ -95.345197989066108, 29.586530162168994 ], [ -95.345186989700665, 29.586538162067821 ], [ -95.345176989702054, 29.586545161985498 ], [ -95.345163988874603, 29.586556161973768 ], [ -95.345151988819197, 29.586567162224284 ], [ -95.345139989792983, 29.586578162501851 ], [ -95.345127989106601, 29.586590162035471 ], [ -95.345115989790614, 29.586603162713406 ], [ -95.345104989215528, 29.586616162695915 ], [ -95.345095989473776, 29.586627161872716 ], [ -95.345085989669045, 29.586640162117483 ], [ -95.345076989352592, 29.586655162098147 ], [ -95.345066989289521, 29.58667016184209 ], [ -95.345060989231925, 29.586685162557533 ], [ -95.345053989087432, 29.586699161919448 ], [ -95.345048988969282, 29.586709161849896 ], [ -95.345041989701798, 29.586720162425035 ], [ -95.345035989463952, 29.586729161903481 ], [ -95.345029989192824, 29.586738162283424 ], [ -95.345022989175817, 29.586747162426843 ], [ -95.345014989126298, 29.586758162736004 ], [ -95.345005988957553, 29.586768162592872 ], [ -95.344996989159455, 29.586779162664509 ], [ -95.344987989646441, 29.586788162333026 ], [ -95.344953989345854, 29.586825162535174 ], [ -95.344898989604005, 29.586888162050407 ], [ -95.34484698958191, 29.586947162351965 ], [ -95.344829989358217, 29.586960162660574 ], [ -95.344821989480963, 29.586966161937525 ], [ -95.344811989383246, 29.58697316272908 ], [ -95.344796989226424, 29.586982162704313 ], [ -95.344784989260759, 29.586988162802541 ], [ -95.34477398907309, 29.586994162236003 ], [ -95.344761988734518, 29.586999162116854 ], [ -95.344581989544849, 29.587060162005439 ], [ -95.344486989568139, 29.58709216227653 ], [ -95.344475989249176, 29.58709516196955 ], [ -95.344463989516413, 29.587099162538351 ], [ -95.344446989047384, 29.587106162464444 ], [ -95.344433989298309, 29.587112162290421 ], [ -95.3444209895477, 29.587118162115168 ], [ -95.344399989183273, 29.587131162279032 ], [ -95.344379989327379, 29.587146162209393 ], [ -95.344365988955275, 29.587158162092752 ], [ -95.344354989524007, 29.587169162539688 ], [ -95.344342989042175, 29.587182162216546 ], [ -95.344263989351987, 29.587281162009781 ], [ -95.344251989005329, 29.587300162011331 ], [ -95.344242989334404, 29.587320162079671 ], [ -95.344235988700461, 29.587336162700854 ], [ -95.344226989213936, 29.587362162199167 ], [ -95.344218989441572, 29.58738816284087 ], [ -95.344210989237752, 29.587410162649302 ], [ -95.344212988722788, 29.587421162682915 ], [ -95.34421198865175, 29.587434162391702 ], [ -95.344213989534055, 29.587446162668648 ], [ -95.344211989089303, 29.587474162488142 ], [ -95.344213988923244, 29.587497162285537 ], [ -95.344215988758094, 29.587520162082779 ], [ -95.344218989441032, 29.587546162767648 ], [ -95.344223989140289, 29.587565162487103 ], [ -95.344226988985412, 29.587597162574255 ], [ -95.344228989301214, 29.587613162752945 ], [ -95.344233989101141, 29.587635162187148 ], [ -95.344240989395615, 29.587668162583633 ], [ -95.344250988733322, 29.587692162755921 ], [ -95.344256989071468, 29.587705162411158 ], [ -95.344262989378848, 29.587718162967931 ], [ -95.344267989503791, 29.587727162450079 ], [ -95.344277989057687, 29.587746162502633 ], [ -95.344283989305467, 29.587756162441181 ], [ -95.344289988888136, 29.587767162566347 ], [ -95.344298988898117, 29.587781162257965 ], [ -95.344305989571026, 29.587790162250194 ], [ -95.344312989579151, 29.587800162428945 ], [ -95.344321989197056, 29.587813162805698 ], [ -95.344326989397828, 29.587825162902615 ], [ -95.344337988763968, 29.587833162742022 ], [ -95.34434498871164, 29.587840162301873 ], [ -95.344352989514348, 29.587850162747998 ], [ -95.344363989350825, 29.587862162515567 ], [ -95.344374988890962, 29.587876162684243 ], [ -95.344384989343411, 29.587889162423977 ], [ -95.344392989520927, 29.587900162152657 ], [ -95.344400989301235, 29.58791016256756 ], [ -95.344408988817037, 29.587922162482094 ], [ -95.344415989211072, 29.587933162870261 ], [ -95.34441898914983, 29.587943162953422 ], [ -95.344431989017821, 29.587959162225207 ], [ -95.344438988752088, 29.587971162798933 ], [ -95.344445989552085, 29.587983162498645 ], [ -95.3444509894086, 29.587994162375431 ], [ -95.344458989671267, 29.588008162716893 ], [ -95.344464989654895, 29.588020163048583 ], [ -95.344470989007689, 29.588033162665049 ], [ -95.344475989604121, 29.588046162970898 ], [ -95.344481989327321, 29.588060162801849 ], [ -95.344487989419633, 29.58807516284751 ], [ -95.344494988710593, 29.588094163035084 ], [ -95.344500988910227, 29.588112162795195 ], [ -95.344526989320286, 29.588231162920472 ], [ -95.344540989679118, 29.588334162215052 ], [ -95.344544989497393, 29.588380162692658 ], [ -95.344548989614864, 29.588424162767957 ], [ -95.344552988821022, 29.588515162517893 ], [ -95.344552989127877, 29.588612162539899 ], [ -95.34455198890366, 29.588652162357633 ], [ -95.344543989304057, 29.588673162894796 ], [ -95.344534989569382, 29.58869316297654 ], [ -95.344523989535261, 29.588711163049553 ], [ -95.344515989310594, 29.588722162422144 ], [ -95.344502989045083, 29.588741163101719 ], [ -95.3444929888677, 29.588762163126827 ], [ -95.344485988973645, 29.588780162381898 ], [ -95.34446898885696, 29.588819162561474 ], [ -95.344455989337064, 29.588840162763933 ], [ -95.344457988783319, 29.58885916262107 ], [ -95.344453989009594, 29.588882162739921 ], [ -95.344451989165151, 29.58890616265268 ], [ -95.34445098918782, 29.588933162520366 ], [ -95.344451989016306, 29.588969162914363 ], [ -95.34444998946725, 29.588991162425078 ], [ -95.344434989228759, 29.589020162847664 ], [ -95.344435989078079, 29.589045162794406 ], [ -95.344425989027314, 29.589072163143815 ], [ -95.344411988868416, 29.589099162500688 ], [ -95.344405988769878, 29.589109163062655 ], [ -95.344385989659614, 29.589127162729739 ], [ -95.3443659894441, 29.589167163258352 ], [ -95.344340989139667, 29.589201163119924 ], [ -95.344309989668986, 29.589242162945943 ], [ -95.344288989576029, 29.589268163059963 ], [ -95.344261989681812, 29.589302162422442 ], [ -95.344156989692465, 29.589445162892087 ], [ -95.34399898943667, 29.589632162649323 ], [ -95.343980989624114, 29.589661163186779 ], [ -95.343705988837954, 29.589965162643292 ], [ -95.343695989201947, 29.58997716258791 ], [ -95.343673989352482, 29.590004163471356 ], [ -95.343658988854415, 29.590022163355982 ], [ -95.343636989017725, 29.590049163331177 ], [ -95.343616988601482, 29.590070163466866 ], [ -95.343598989154842, 29.590092163434296 ], [ -95.343583988945127, 29.59010816290921 ], [ -95.343563989538254, 29.590129163064905 ], [ -95.343545988604362, 29.590147163068398 ], [ -95.343522989173678, 29.590169162662139 ], [ -95.343501988541945, 29.590189163219826 ], [ -95.343480988608434, 29.590208162685869 ], [ -95.343458988856042, 29.590227162802503 ], [ -95.343436989095522, 29.590246162915399 ], [ -95.343413989158279, 29.590264163463537 ], [ -95.343384989225228, 29.590287163504758 ], [ -95.343362988724948, 29.590304163176143 ], [ -95.343344989006383, 29.590317163065638 ], [ -95.343320988901098, 29.59033416313417 ], [ -95.343296988787785, 29.59035116319826 ], [ -95.343272989342708, 29.590367163071704 ], [ -95.343247989045679, 29.590383163564901 ], [ -95.343198988563131, 29.590413163484239 ], [ -95.342852989008577, 29.590640163440273 ], [ -95.34256898857393, 29.590896162949534 ], [ -95.342321989094415, 29.591078163674599 ], [ -95.342242989047008, 29.591237163773933 ], [ -95.342207989160485, 29.591308163703967 ], [ -95.342140989195158, 29.591434163752844 ], [ -95.341866989218488, 29.591939163133492 ], [ -95.341677988503818, 29.592125163550193 ], [ -95.341062988806499, 29.592422163639952 ], [ -95.340885988029044, 29.592427163440863 ], [ -95.340807988048027, 29.592429163323622 ], [ -95.340783988780103, 29.592433163922717 ], [ -95.340725988285001, 29.592521163371021 ], [ -95.340582988561593, 29.592742164036039 ], [ -95.34060098895398, 29.593231163584203 ], [ -95.340610988379183, 29.593446163414004 ], [ -95.340584988223824, 29.593447163698222 ], [ -95.340565988401963, 29.593465163976038 ], [ -95.340549988424016, 29.593478164047543 ], [ -95.340541988772159, 29.593487163701173 ], [ -95.34053098823513, 29.593501163529243 ], [ -95.340521988348797, 29.593515163924419 ], [ -95.340512988834632, 29.593527163919546 ], [ -95.340499988680961, 29.593538163493548 ], [ -95.340487988021735, 29.593545163411264 ], [ -95.340470988568001, 29.59355316399396 ], [ -95.34045898862405, 29.593556164012082 ], [ -95.340442988041815, 29.593558163606932 ], [ -95.340325988459611, 29.593577164093485 ], [ -95.340300988418676, 29.593582163617281 ], [ -95.340271988411601, 29.593585163425377 ], [ -95.340257988117898, 29.593586164257939 ], [ -95.340224988177795, 29.593587163442468 ], [ -95.340207988796635, 29.593586163955734 ], [ -95.340185987936181, 29.593584163736466 ], [ -95.340155987884927, 29.593574164187732 ], [ -95.340136987827037, 29.593576163829844 ], [ -95.340108988444427, 29.593569163653939 ], [ -95.340094988592298, 29.593565163456883 ], [ -95.339864987881327, 29.593551164072263 ], [ -95.339723988514805, 29.593539163601388 ], [ -95.339584987771559, 29.593527163507545 ], [ -95.339533988635807, 29.593527163578489 ], [ -95.339476987836079, 29.593525164185117 ], [ -95.33939598793468, 29.593522164103987 ], [ -95.339327987854475, 29.59351616343525 ], [ -95.339258987590341, 29.593509164042494 ], [ -95.339224987925121, 29.593504164180089 ], [ -95.339190988263169, 29.593499164308991 ], [ -95.339161988038256, 29.593495164239926 ], [ -95.339032987741234, 29.593496163685291 ], [ -95.338724988211666, 29.593467164018545 ], [ -95.338353987644354, 29.593454163904678 ], [ -95.338340987916936, 29.593454163735391 ], [ -95.338265987533006, 29.593456163924618 ], [ -95.33819398747805, 29.593464163483137 ], [ -95.338119988168813, 29.593480164081271 ], [ -95.338038988078367, 29.593506163714618 ], [ -95.337978987269409, 29.593532164041434 ], [ -95.337920987330349, 29.593562163971452 ], [ -95.337698987801232, 29.593693164162911 ], [ -95.337449987278831, 29.593851164186965 ], [ -95.337427987159984, 29.593865164115769 ], [ -95.337389987920432, 29.59389316397537 ], [ -95.337358988056906, 29.593923163601005 ], [ -95.337327988086571, 29.593963164369864 ], [ -95.337301987646143, 29.594011163745257 ], [ -95.337277987675961, 29.594072163691227 ], [ -95.337257987210975, 29.594144164369567 ], [ -95.337244987603114, 29.594216164455748 ], [ -95.337232987422411, 29.594341163981262 ], [ -95.337270987266322, 29.594511164245102 ], [ -95.337319987696944, 29.594658163968393 ], [ -95.33733998759628, 29.594733164581534 ], [ -95.337359987993537, 29.594806163889707 ], [ -95.337364987170815, 29.594894164474145 ], [ -95.337367987233321, 29.594933164352263 ], [ -95.337366987687403, 29.594961164399731 ], [ -95.337359987794457, 29.594988164247795 ], [ -95.337349987760931, 29.595013164591215 ], [ -95.337324987434002, 29.595056164144111 ], [ -95.337290987378779, 29.595102164334993 ], [ -95.33726098816588, 29.59513616417561 ], [ -95.337222987716316, 29.595172164700617 ], [ -95.337119987873166, 29.595257163930089 ], [ -95.337011987850985, 29.595336163953167 ], [ -95.336898987982778, 29.595410164069545 ], [ -95.336837987570959, 29.595445164566755 ], [ -95.336649987217029, 29.595544164073932 ], [ -95.336437987727805, 29.595645164564846 ], [ -95.336378987593122, 29.595676164654986 ], [ -95.336326987529276, 29.595711164073865 ], [ -95.336271987133074, 29.595754164189024 ], [ -95.336237987697103, 29.59578016454584 ], [ -95.336200987246983, 29.595801164724435 ], [ -95.336159987270605, 29.595818164661463 ], [ -95.335801987668958, 29.595937164481054 ], [ -95.335772987523299, 29.595946164563774 ], [ -95.335734986826608, 29.595959164461416 ], [ -95.335497986772666, 29.596051164711863 ], [ -95.335423986794282, 29.596080164721574 ], [ -95.335363987461278, 29.596108164371753 ], [ -95.335278987448717, 29.59615316414946 ], [ -95.335186987691856, 29.596210164149991 ], [ -95.33511598688942, 29.596264164638807 ], [ -95.335062986774076, 29.596301164579717 ], [ -95.335021987476637, 29.59636216421686 ], [ -95.334979987029712, 29.596415164557726 ], [ -95.334952987036573, 29.596452164542288 ], [ -95.334905987620417, 29.596565164815104 ], [ -95.334860986902655, 29.596671164229445 ], [ -95.33479198689912, 29.596786165113709 ], [ -95.3346199869342, 29.597000164409607 ], [ -95.334436987507132, 29.597228164677361 ], [ -95.334310986616529, 29.597430164959544 ], [ -95.33424198683403, 29.597486165182712 ], [ -95.334224986571954, 29.597499165099119 ], [ -95.334099987404443, 29.597601164858997 ], [ -95.334039987378489, 29.597688165219559 ], [ -95.334002986496529, 29.597723164970983 ], [ -95.333977987221274, 29.59777016477971 ], [ -95.333925986719649, 29.597841165273831 ], [ -95.333889986684525, 29.597880165261518 ], [ -95.333846987157173, 29.597948165338948 ], [ -95.333792986536338, 29.597999164631595 ], [ -95.33373198720291, 29.598044164946444 ], [ -95.333675987016534, 29.598077165271697 ], [ -95.333622986903436, 29.598108165238642 ], [ -95.333575986383195, 29.59812916507245 ], [ -95.333525986587645, 29.598132164743802 ], [ -95.333489986908887, 29.598154164753026 ], [ -95.333443986739056, 29.5981501651525 ], [ -95.333424986736347, 29.598156164690547 ], [ -95.333320986787257, 29.598190164730752 ], [ -95.333269986643529, 29.59820716504451 ], [ -95.333194987046056, 29.598222165183408 ], [ -95.333127987182095, 29.598240164912742 ], [ -95.333072986928059, 29.598247165386965 ], [ -95.333010986675944, 29.598274164936161 ], [ -95.332941986276538, 29.598305164768799 ], [ -95.332876987142143, 29.598343164657472 ], [ -95.332840986978169, 29.598368165100794 ], [ -95.332807986943678, 29.598395165138811 ], [ -95.332780986382971, 29.598419164721676 ], [ -95.332722986741189, 29.598475165133053 ], [ -95.332650986547847, 29.598546164839437 ], [ -95.332587986623466, 29.598611165376077 ], [ -95.332511986234849, 29.598692164828382 ], [ -95.332466986191577, 29.598742165515148 ], [ -95.332381986950764, 29.598840165421262 ], [ -95.332312986469375, 29.59887716527102 ], [ -95.332264986599938, 29.59893916555653 ], [ -95.332223986722795, 29.59896416507415 ], [ -95.332169986317979, 29.598993165534107 ], [ -95.332125986503655, 29.599013165695336 ], [ -95.332055985995666, 29.599038165318042 ], [ -95.33199598605762, 29.59905416553886 ], [ -95.331946986342587, 29.599064165511031 ], [ -95.331908986074907, 29.599069165431011 ], [ -95.331793986357454, 29.599088165641142 ], [ -95.331761986335437, 29.599097165674689 ], [ -95.331729986065127, 29.599105165488027 ], [ -95.331669986708746, 29.599103165485346 ], [ -95.331646986897439, 29.599109165229031 ], [ -95.331330985928304, 29.599074164851991 ], [ -95.331152986283001, 29.599113165113415 ], [ -95.330939986321496, 29.599121165623824 ], [ -95.330827986443865, 29.599112165685877 ], [ -95.330714986154021, 29.599105165707776 ], [ -95.330601986143662, 29.599099164944992 ], [ -95.330391985778746, 29.599094165642477 ], [ -95.330312986314709, 29.599086165276336 ], [ -95.330237985640053, 29.599075165612909 ], [ -95.330176986156857, 29.599063165230522 ], [ -95.33012398593263, 29.599052165108468 ], [ -95.330045985639032, 29.599032165143473 ], [ -95.329997986413588, 29.599019165441899 ], [ -95.329960985615401, 29.599005165740728 ], [ -95.329924986337986, 29.598989165108012 ], [ -95.329906986462461, 29.598980165026326 ], [ -95.329868986029751, 29.598958165109913 ], [ -95.329825986435395, 29.598928165396739 ], [ -95.329799985820941, 29.598907165389715 ], [ -95.329768986301985, 29.598879164900186 ], [ -95.32975698558667, 29.598865164962948 ], [ -95.329723985640825, 29.59884316498108 ], [ -95.329682986108068, 29.598796165126441 ], [ -95.329594985626898, 29.598728164963671 ], [ -95.329548986338779, 29.598697165696141 ], [ -95.329461986131378, 29.598639165160815 ], [ -95.329333985588207, 29.598570165692646 ], [ -95.329144986150524, 29.598452164817765 ], [ -95.329007985789644, 29.598372164939523 ], [ -95.328798985135521, 29.598285165439393 ], [ -95.328584985673004, 29.598194164796546 ], [ -95.328506986059423, 29.598173165521409 ], [ -95.328419985853103, 29.598153164917807 ], [ -95.328332985696264, 29.598138165293129 ], [ -95.328231985772291, 29.598125165426183 ], [ -95.328183985012672, 29.598121165069411 ], [ -95.328141985728564, 29.598118165335784 ], [ -95.32799498546828, 29.598104165362916 ], [ -95.327883985280863, 29.598093165573978 ], [ -95.327482985528405, 29.598055165583489 ], [ -95.326940984645645, 29.598000164843388 ], [ -95.326658985216454, 29.597972164832303 ], [ -95.326589984991188, 29.597977165075189 ], [ -95.326528985222126, 29.597974164857291 ], [ -95.326466985526238, 29.597976165272456 ], [ -95.326410985052505, 29.597978165205546 ], [ -95.326343985172215, 29.597981165675009 ], [ -95.326286985217592, 29.597985165606037 ], [ -95.326219984928358, 29.597991164819877 ], [ -95.326158984824048, 29.597997165390144 ], [ -95.326099985269849, 29.598007164833817 ], [ -95.325954984378342, 29.598016165422457 ], [ -95.325678984915939, 29.598056165320564 ], [ -95.325629984865515, 29.598060165340872 ], [ -95.325582984554472, 29.598064165204441 ], [ -95.32555198467027, 29.598065165196431 ], [ -95.325509984603926, 29.59806316572304 ], [ -95.325484984403687, 29.598061165578095 ], [ -95.325461984616737, 29.598057164894353 ], [ -95.325429984545394, 29.598051165719831 ], [ -95.325366984250948, 29.598033165580642 ], [ -95.325336985098332, 29.598022165240955 ], [ -95.324947984512775, 29.597893164983194 ], [ -95.324820984815531, 29.59784816558107 ], [ -95.324734984587579, 29.597818165376353 ], [ -95.324329984440382, 29.597648165628577 ], [ -95.32384598474323, 29.597560165587602 ], [ -95.323681983899164, 29.59751016549696 ], [ -95.323555983778547, 29.597433164898014 ], [ -95.323486984433259, 29.597351165279711 ], [ -95.323360984663537, 29.597170165370219 ], [ -95.323209984070701, 29.597016165361456 ], [ -95.322894984227233, 29.596873165104569 ], [ -95.322448984366233, 29.596730164687518 ], [ -95.322303984102874, 29.59666916472473 ], [ -95.322228983485843, 29.596669165502909 ], [ -95.322083983906197, 29.596697164962404 ], [ -95.321557984000847, 29.597020165516167 ], [ -95.321504984154487, 29.59705416502263 ], [ -95.32127198413076, 29.597197165446381 ], [ -95.319705983164155, 29.598231165154036 ], [ -95.319604983255985, 29.598275165265832 ], [ -95.31954998299662, 29.598275165964068 ], [ -95.319506983476302, 29.598292165460219 ], [ -95.319461983407024, 29.598311165386907 ], [ -95.319419983560124, 29.598327165971263 ], [ -95.319378983103334, 29.598339165217489 ], [ -95.319331983082719, 29.598349165965455 ], [ -95.319300983535186, 29.598354165360316 ], [ -95.319240983600864, 29.598360165938921 ], [ -95.319195983225299, 29.598361165610633 ], [ -95.319164982884132, 29.598360165501138 ], [ -95.319112983654037, 29.598355165399447 ], [ -95.319070982902986, 29.598348165546966 ], [ -95.319029982692456, 29.59833816550201 ], [ -95.318986983386964, 29.598325165776618 ], [ -95.318947983353326, 29.598310165532769 ], [ -95.318920983201537, 29.598298165709434 ], [ -95.318892983081568, 29.598285165236366 ], [ -95.318854982934397, 29.59827016539673 ], [ -95.318818982661668, 29.598256165721374 ], [ -95.31877198308031, 29.59823616541437 ], [ -95.318711983131521, 29.59820816584994 ], [ -95.318676983443879, 29.598191165959097 ], [ -95.318641982621372, 29.598173165817911 ], [ -95.31860698284305, 29.598155165695815 ], [ -95.318561983320592, 29.59812016575226 ], [ -95.31852298288706, 29.598092165351254 ], [ -95.318476983244366, 29.598063165290963 ], [ -95.318444983018153, 29.598044165315251 ], [ -95.318398982980995, 29.598020165361739 ], [ -95.318348982561545, 29.597997165638038 ], [ -95.318315983114871, 29.597983165357952 ], [ -95.318264983210611, 29.597963165805321 ], [ -95.31823398297054, 29.597953165396675 ], [ -95.31819098289634, 29.59794016538595 ], [ -95.318150982427696, 29.597927165770777 ], [ -95.31812298308742, 29.597919165297867 ], [ -95.318080983146231, 29.597908165212871 ], [ -95.318052983002502, 29.597902165122552 ], [ -95.318024982970613, 29.597897165239264 ], [ -95.318000982562339, 29.597929165846317 ], [ -95.317886983181893, 29.597931165473021 ], [ -95.31751898274598, 29.597961165283792 ], [ -95.317204983035879, 29.598036165273019 ], [ -95.316319982688555, 29.598247165785661 ], [ -95.316270982265735, 29.598253165509881 ], [ -95.315164981707142, 29.598079165346963 ], [ -95.314708981785046, 29.598013165957333 ], [ -95.313608981963071, 29.597299165265799 ], [ -95.312902981732279, 29.596838165551858 ], [ -95.312244981795274, 29.596410165122485 ], [ -95.311899981037882, 29.596215165231158 ], [ -95.311566981581137, 29.596034165175272 ], [ -95.311347980776134, 29.595914165640199 ], [ -95.311242981032137, 29.595856165685809 ], [ -95.311096981352605, 29.595777165300795 ], [ -95.309755980842581, 29.595042165292089 ], [ -95.308654980268358, 29.594921165272947 ], [ -95.308493980077685, 29.594936165237169 ], [ -95.307890980018215, 29.59502116541347 ], [ -95.306386980111142, 29.595191165367911 ], [ -95.305753979096323, 29.595243165521719 ], [ -95.303946978917821, 29.595179165042428 ], [ -95.302938978968726, 29.595356165932035 ], [ -95.302517979072263, 29.595430165767034 ], [ -95.302209978906205, 29.595484165642933 ], [ -95.302098978226681, 29.595504165390224 ], [ -95.301808978227655, 29.595601165648887 ], [ -95.301787978947331, 29.595609165474706 ], [ -95.301655978136708, 29.595674165385081 ], [ -95.301321978865559, 29.595807165554639 ], [ -95.300935978428498, 29.59593116579822 ], [ -95.300330978590765, 29.596127165793874 ], [ -95.299721977855029, 29.596127165532781 ], [ -95.299197977923683, 29.59686216632738 ], [ -95.299136977806683, 29.596879166000651 ], [ -95.298965977600602, 29.596932165989163 ], [ -95.298709977518001, 29.597010165546997 ], [ -95.298601978164569, 29.597043166143965 ], [ -95.298489977702843, 29.596987165869766 ], [ -95.298459977828685, 29.596984165630438 ], [ -95.298367978047693, 29.596926165773358 ], [ -95.29801097717754, 29.596749165939045 ], [ -95.29786197767163, 29.59667516553635 ], [ -95.297583977718276, 29.596537165608861 ], [ -95.297515978038007, 29.596522166127716 ], [ -95.297417977762166, 29.596527165659278 ], [ -95.29737397746625, 29.596529166012914 ], [ -95.297304977449357, 29.596532166090537 ], [ -95.297246977555872, 29.59654016566537 ], [ -95.297232977243254, 29.596542165844689 ], [ -95.297189977493716, 29.596548165808663 ], [ -95.297163977546177, 29.59655316577976 ], [ -95.297256977893113, 29.596936165907547 ], [ -95.2974039777326, 29.597468166136881 ], [ -95.297484978022254, 29.597902166196839 ], [ -95.297672977469517, 29.598635165887231 ], [ -95.297975978259046, 29.599755166529384 ], [ -95.298186977494922, 29.60043016703521 ], [ -95.298224978162338, 29.600559166584624 ], [ -95.298363978295811, 29.60104116675539 ], [ -95.29843697750799, 29.601275166833535 ], [ -95.299446978273593, 29.604647167174338 ], [ -95.300179978952599, 29.6071241680268 ], [ -95.300312978938834, 29.607566168345237 ], [ -95.304375980157332, 29.620857170326818 ], [ -95.304670979972244, 29.620863171023913 ], [ -95.305791980996574, 29.620863170988851 ], [ -95.306936980969255, 29.620868170510679 ], [ -95.30804698143551, 29.620874170580638 ], [ -95.309179981774008, 29.620877170558629 ], [ -95.310664981779254, 29.620882170288041 ], [ -95.311872982653682, 29.620888170446761 ], [ -95.31217298256243, 29.620888170213824 ], [ -95.314408982563961, 29.620898170612303 ], [ -95.317751984115318, 29.620905170117634 ], [ -95.318855984388662, 29.620915169880117 ], [ -95.319628983906867, 29.620922169865178 ], [ -95.323446985642192, 29.620927170313553 ], [ -95.323911985494078, 29.620926169871606 ], [ -95.325087986114923, 29.62093516968044 ], [ -95.325422986155743, 29.620940170413672 ], [ -95.326729985759457, 29.620946169735813 ], [ -95.327231985970997, 29.620942169973858 ], [ -95.327494985922684, 29.620949170165389 ], [ -95.330633986715739, 29.620940169898059 ], [ -95.330658986956578, 29.620940169415761 ], [ -95.330679986815667, 29.620940169358651 ], [ -95.331571987474177, 29.62094716982115 ], [ -95.335469988704773, 29.62096617004784 ], [ -95.337519988929145, 29.620973169953778 ], [ -95.337708988699319, 29.620974169789271 ], [ -95.338685988806191, 29.620984169585185 ], [ -95.339630989385398, 29.620995169928218 ], [ -95.339940989652789, 29.620996169078154 ], [ -95.340913989222386, 29.621006169550807 ], [ -95.341625990175444, 29.621004169866609 ], [ -95.342001989530559, 29.62093016918319 ], [ -95.343344990602631, 29.620769169366085 ], [ -95.344670990864671, 29.620518169575522 ], [ -95.34596699052581, 29.620202168762425 ], [ -95.346250991201273, 29.620122169412952 ], [ -95.346539991415227, 29.620020168947633 ], [ -95.347490991299964, 29.61970316903987 ], [ -95.348543991125098, 29.619261169136152 ], [ -95.349403992301532, 29.618850169064142 ], [ -95.353312992891702, 29.61698816867036 ], [ -95.354166993041801, 29.616624167715095 ], [ -95.354424992764905, 29.616624168105947 ], [ -95.355165993452545, 29.616613167952973 ], [ -95.355430992766628, 29.616616168096908 ], [ -95.355439993150284, 29.615532167835617 ], [ -95.355456993086506, 29.615141167994139 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 776, "Tract": "48201333502", "Area_SqMi": 0.35029420753089513, "total_2009": 689, "total_2010": 627, "total_2011": 384, "total_2012": 354, "total_2013": 346, "total_2014": 351, "total_2015": 350, "total_2016": 384, "total_2017": 401, "total_2018": 387, "total_2019": 373, "total_2020": 320, "age1": 103, "age2": 144, "age3": 91, "earn1": 123, "earn2": 155, "earn3": 60, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 17, "naics_s07": 199, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 5, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 27, "naics_s16": 10, "naics_s17": 0, "naics_s18": 58, "naics_s19": 17, "naics_s20": 0, "race1": 243, "race2": 60, "race3": 1, "race4": 27, "race5": 1, "race6": 6, "ethnicity1": 187, "ethnicity2": 151, "edu1": 69, "edu2": 71, "edu3": 64, "edu4": 31, "Shape_Length": 14360.330150163825, "Shape_Area": 9765602.9714333303, "total_2021": 316, "total_2022": 338 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.289068978257276, 29.673182181761636 ], [ -95.289045978365948, 29.67239018145472 ], [ -95.289029978166113, 29.671725181931699 ], [ -95.289025979104807, 29.671484181787168 ], [ -95.289021978185687, 29.67124818167288 ], [ -95.289005979012316, 29.670309181291451 ], [ -95.288988978877143, 29.669374180812451 ], [ -95.288964978461578, 29.667788181225671 ], [ -95.288960978612877, 29.667578180718177 ], [ -95.288917978524481, 29.66542118050727 ], [ -95.288902978566952, 29.664653180388008 ], [ -95.288896978150646, 29.664234180477788 ], [ -95.288887978090557, 29.663548179764184 ], [ -95.288880978118186, 29.663057179902339 ], [ -95.288852978297598, 29.662119179899978 ], [ -95.285904977005259, 29.662185180212678 ], [ -95.284755977610502, 29.662210179565687 ], [ -95.284124977227904, 29.662225179729113 ], [ -95.283401976314948, 29.662249180006985 ], [ -95.281280975881216, 29.662290180255507 ], [ -95.280734976218298, 29.66227917975456 ], [ -95.279546976091353, 29.662148179790776 ], [ -95.278712975111716, 29.662122180070568 ], [ -95.278744975336693, 29.662870180336082 ], [ -95.278773975875026, 29.663682180562617 ], [ -95.278808976176009, 29.66526018074148 ], [ -95.279711976446293, 29.665001180802768 ], [ -95.280401976585551, 29.664928180169785 ], [ -95.281349976795667, 29.664916180066001 ], [ -95.281367976377368, 29.665680180213069 ], [ -95.281385976385479, 29.666388180568546 ], [ -95.281401976586224, 29.667015181004299 ], [ -95.281421976352092, 29.667786180830191 ], [ -95.281449977010482, 29.66877818122909 ], [ -95.281471976175638, 29.669542181545669 ], [ -95.281491976504284, 29.669862181697304 ], [ -95.281497976308586, 29.670044181163632 ], [ -95.281497976526879, 29.670466181665507 ], [ -95.281530976999846, 29.671413182035977 ], [ -95.281509977178473, 29.671792181685991 ], [ -95.281452976824951, 29.672287182379325 ], [ -95.283102977191092, 29.672261181883488 ], [ -95.283744977805441, 29.672286182304202 ], [ -95.284341977306482, 29.672291182299052 ], [ -95.285631977717614, 29.672362181736304 ], [ -95.286224978221071, 29.672414181919791 ], [ -95.287525978388942, 29.672676182303626 ], [ -95.287790978515403, 29.672746182233531 ], [ -95.288403978786533, 29.67293418208445 ], [ -95.289068978257276, 29.673182181761636 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 777, "Tract": "48201321301", "Area_SqMi": 0.21705392465193563, "total_2009": 236, "total_2010": 327, "total_2011": 316, "total_2012": 336, "total_2013": 332, "total_2014": 349, "total_2015": 307, "total_2016": 259, "total_2017": 205, "total_2018": 215, "total_2019": 236, "total_2020": 188, "age1": 34, "age2": 85, "age3": 50, "earn1": 19, "earn2": 64, "earn3": 86, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 94, "naics_s06": 13, "naics_s07": 27, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 14, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 9, "naics_s19": 0, "naics_s20": 0, "race1": 137, "race2": 13, "race3": 3, "race4": 14, "race5": 0, "race6": 2, "ethnicity1": 82, "ethnicity2": 87, "edu1": 40, "edu2": 34, "edu3": 36, "edu4": 25, "Shape_Length": 14326.766218061955, "Shape_Area": 6051091.9277911829, "total_2021": 153, "total_2022": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.22578196145561, 29.652661179639605 ], [ -95.225728962044442, 29.652605180275 ], [ -95.225256960948215, 29.652114179709891 ], [ -95.224957961220923, 29.65179917970676 ], [ -95.224277961609843, 29.651078179381962 ], [ -95.223357960451679, 29.65010317939927 ], [ -95.222263960531222, 29.648944178815171 ], [ -95.221277959895332, 29.647900179395865 ], [ -95.22117696023254, 29.647792178787391 ], [ -95.220427959652795, 29.64697717878726 ], [ -95.220327960253158, 29.64687017885279 ], [ -95.219819960022221, 29.646361178905082 ], [ -95.219659959580497, 29.646200178613423 ], [ -95.218913959662729, 29.64539617875662 ], [ -95.218647959602123, 29.645109178148953 ], [ -95.218326958883239, 29.644756178703666 ], [ -95.217268958772735, 29.643646178698823 ], [ -95.217064958477621, 29.643792178046887 ], [ -95.216839958591933, 29.643958178410909 ], [ -95.216682958535031, 29.644075178497513 ], [ -95.216250958524512, 29.644392178483034 ], [ -95.215563958910522, 29.644884178695214 ], [ -95.21512595810286, 29.645202179051918 ], [ -95.21570495834213, 29.645833178353271 ], [ -95.21630095883485, 29.64647317904786 ], [ -95.216899959425234, 29.647099178977751 ], [ -95.217479959230587, 29.647727179217927 ], [ -95.216988959525182, 29.648024178877478 ], [ -95.216702958725577, 29.648126179122002 ], [ -95.214123958889317, 29.648949179511884 ], [ -95.214403958902679, 29.649671179416302 ], [ -95.214697958748417, 29.650359179492224 ], [ -95.213656958632711, 29.650685180088317 ], [ -95.213093958011569, 29.650781179838411 ], [ -95.212563957908984, 29.650862179683106 ], [ -95.211347957724939, 29.650895179604742 ], [ -95.213592958498268, 29.650966179775985 ], [ -95.215225958841373, 29.651017180176751 ], [ -95.216464958883691, 29.651015180187766 ], [ -95.216493958660323, 29.65148118033548 ], [ -95.216466958709432, 29.652314180209462 ], [ -95.216504959660199, 29.652368180549612 ], [ -95.216505958997374, 29.652434180287802 ], [ -95.216523958781195, 29.652781180220682 ], [ -95.217305959806424, 29.65277718051259 ], [ -95.218351959409134, 29.652767180221588 ], [ -95.218764959549347, 29.652760179872654 ], [ -95.219105959777863, 29.652761180060406 ], [ -95.222373961155512, 29.652717180330072 ], [ -95.223037960436571, 29.65270617959839 ], [ -95.223125960998132, 29.652705180092937 ], [ -95.224901960963507, 29.652680179940898 ], [ -95.224976961020062, 29.652679179955168 ], [ -95.225349961434958, 29.652674179870051 ], [ -95.22578196145561, 29.652661179639605 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 778, "Tract": "48201321102", "Area_SqMi": 0.99019183098501862, "total_2009": 1590, "total_2010": 1534, "total_2011": 969, "total_2012": 1602, "total_2013": 1548, "total_2014": 1596, "total_2015": 2289, "total_2016": 1275, "total_2017": 1142, "total_2018": 1078, "total_2019": 1132, "total_2020": 986, "age1": 212, "age2": 420, "age3": 243, "earn1": 191, "earn2": 283, "earn3": 401, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 92, "naics_s05": 44, "naics_s06": 9, "naics_s07": 108, "naics_s08": 6, "naics_s09": 0, "naics_s10": 2, "naics_s11": 13, "naics_s12": 2, "naics_s13": 0, "naics_s14": 106, "naics_s15": 0, "naics_s16": 30, "naics_s17": 35, "naics_s18": 223, "naics_s19": 158, "naics_s20": 41, "race1": 668, "race2": 110, "race3": 16, "race4": 64, "race5": 2, "race6": 15, "ethnicity1": 564, "ethnicity2": 311, "edu1": 150, "edu2": 201, "edu3": 174, "edu4": 138, "Shape_Length": 25110.325736030387, "Shape_Area": 27604853.517606203, "total_2021": 869, "total_2022": 875 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.229063961323973, 29.627710174547229 ], [ -95.228818961443054, 29.62748617474805 ], [ -95.22811796110193, 29.626846174845774 ], [ -95.227265960341512, 29.626112174776541 ], [ -95.22685596044515, 29.62574917415613 ], [ -95.223896959492066, 29.623091173880578 ], [ -95.221177959253481, 29.62058717342379 ], [ -95.221053958658999, 29.620657173029048 ], [ -95.220919958904176, 29.620733173152328 ], [ -95.220722958465842, 29.620845173197839 ], [ -95.220721959333801, 29.621149173676852 ], [ -95.220785959082107, 29.622540173693157 ], [ -95.220465959384811, 29.622284173957766 ], [ -95.220093958433182, 29.622152173809681 ], [ -95.219610958436448, 29.622138173789846 ], [ -95.218423958413027, 29.622189173618676 ], [ -95.21729095778538, 29.6222331740261 ], [ -95.217024957611272, 29.622237173711614 ], [ -95.216122957302701, 29.622277173544674 ], [ -95.214933957071409, 29.622324174395569 ], [ -95.213790957087809, 29.622375173667756 ], [ -95.212616956438978, 29.622426174032729 ], [ -95.211418956628634, 29.622453174133486 ], [ -95.210208956266428, 29.622514174619454 ], [ -95.209032955564581, 29.622560174295291 ], [ -95.207854955555547, 29.622611174077765 ], [ -95.206711955315441, 29.622653174162188 ], [ -95.205558955287302, 29.622692174529742 ], [ -95.204417954907882, 29.622736174343547 ], [ -95.203218954491021, 29.622795174250886 ], [ -95.202056954230898, 29.622832174847485 ], [ -95.200895953983377, 29.622876174662412 ], [ -95.199743953732963, 29.622915174221664 ], [ -95.199016953113798, 29.622936174301152 ], [ -95.198014953632537, 29.623005175145202 ], [ -95.198812953082736, 29.623885174448336 ], [ -95.19930595320595, 29.624416175254957 ], [ -95.199645954120896, 29.624778175278951 ], [ -95.200180954239627, 29.625355175546318 ], [ -95.200332953893152, 29.625522175454446 ], [ -95.200450954400367, 29.625648175066711 ], [ -95.202072954418753, 29.627392175838434 ], [ -95.203693955333733, 29.629142175558957 ], [ -95.204564955561267, 29.630053176365294 ], [ -95.204721955702112, 29.630217175515789 ], [ -95.205315955118976, 29.630863175812671 ], [ -95.205743955429696, 29.631314175892307 ], [ -95.206034955757175, 29.631612176259612 ], [ -95.206112955319867, 29.631712176630693 ], [ -95.206519955414791, 29.63214217670965 ], [ -95.206695956005817, 29.632324176245671 ], [ -95.207116955477886, 29.632778176793288 ], [ -95.207777956219431, 29.633491176470852 ], [ -95.208868956630212, 29.63468817696058 ], [ -95.209181956958361, 29.635005177167915 ], [ -95.209532957138606, 29.635360176571989 ], [ -95.210698956944412, 29.636647176782233 ], [ -95.21103095673287, 29.636986177185634 ], [ -95.211454957539175, 29.636688176731951 ], [ -95.211904957348395, 29.636358176871756 ], [ -95.21248195757569, 29.635947176574472 ], [ -95.213357957799687, 29.635333176375351 ], [ -95.213858957613567, 29.634948177027802 ], [ -95.213969957607986, 29.634869176726525 ], [ -95.21400395735543, 29.634847176674789 ], [ -95.214067957587659, 29.634809176720776 ], [ -95.214225957727706, 29.634689176665411 ], [ -95.215889957816572, 29.633509176445607 ], [ -95.216019957879837, 29.6334141763984 ], [ -95.216989958909949, 29.632726176377236 ], [ -95.217092958049804, 29.632652176035844 ], [ -95.217355958752009, 29.632465176021572 ], [ -95.217887959144477, 29.632088175452399 ], [ -95.221168959012758, 29.629755175314255 ], [ -95.221988959207351, 29.629160174872045 ], [ -95.222563959265912, 29.628751175084663 ], [ -95.222948959571909, 29.628523174895395 ], [ -95.223292960359288, 29.628364175118822 ], [ -95.223771960110739, 29.62816417525033 ], [ -95.22425195994181, 29.628012174976284 ], [ -95.225127960623354, 29.627779174826099 ], [ -95.225459960891286, 29.627771175163041 ], [ -95.226135960142472, 29.627750174808519 ], [ -95.226850960554557, 29.627743174433039 ], [ -95.227258961158626, 29.627743174724703 ], [ -95.228163961557485, 29.627725174689079 ], [ -95.228539961589632, 29.627719174947639 ], [ -95.228789961445528, 29.627715174999175 ], [ -95.229063961323973, 29.627710174547229 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 779, "Tract": "48201321002", "Area_SqMi": 1.0291700769693446, "total_2009": 543, "total_2010": 500, "total_2011": 495, "total_2012": 532, "total_2013": 570, "total_2014": 573, "total_2015": 566, "total_2016": 603, "total_2017": 610, "total_2018": 611, "total_2019": 560, "total_2020": 605, "age1": 186, "age2": 313, "age3": 134, "earn1": 163, "earn2": 263, "earn3": 207, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 0, "naics_s06": 22, "naics_s07": 274, "naics_s08": 0, "naics_s09": 41, "naics_s10": 15, "naics_s11": 7, "naics_s12": 19, "naics_s13": 7, "naics_s14": 17, "naics_s15": 3, "naics_s16": 84, "naics_s17": 0, "naics_s18": 94, "naics_s19": 41, "naics_s20": 0, "race1": 498, "race2": 75, "race3": 17, "race4": 29, "race5": 2, "race6": 12, "ethnicity1": 292, "ethnicity2": 341, "edu1": 128, "edu2": 110, "edu3": 142, "edu4": 67, "Shape_Length": 27693.268320599331, "Shape_Area": 28691500.30371448, "total_2021": 619, "total_2022": 633 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.243369966066467, 29.640740177017136 ], [ -95.243272965669021, 29.640650176865996 ], [ -95.243123965231618, 29.640511176667335 ], [ -95.242731965749627, 29.640130177111541 ], [ -95.240624964513302, 29.638246176386048 ], [ -95.238857964617907, 29.636636175838074 ], [ -95.238692964392399, 29.636755176021175 ], [ -95.2385849639996, 29.636830175910713 ], [ -95.23840596416872, 29.636951176301853 ], [ -95.238122963596751, 29.637177175929356 ], [ -95.237844963854698, 29.637337176314265 ], [ -95.237743963741252, 29.637391176294294 ], [ -95.237539964265252, 29.637475176775514 ], [ -95.237120963412664, 29.637597175911591 ], [ -95.236651963740627, 29.637657176651771 ], [ -95.2360779637647, 29.637669176507938 ], [ -95.232824962435373, 29.637708176256261 ], [ -95.230895962325064, 29.637734176653971 ], [ -95.230445962420561, 29.637739176626141 ], [ -95.230020961729025, 29.637796176941247 ], [ -95.229791962473527, 29.637849176775514 ], [ -95.22945996174488, 29.637859176777049 ], [ -95.228947961924192, 29.637875176847505 ], [ -95.228785961706478, 29.637873176472592 ], [ -95.226816961699299, 29.637904176525506 ], [ -95.224690960877069, 29.637935177280578 ], [ -95.224396961043993, 29.637965176960307 ], [ -95.224123960316859, 29.638069176762876 ], [ -95.223858960361639, 29.637615177227993 ], [ -95.22379795997972, 29.637380176697985 ], [ -95.223795960349165, 29.637161176345902 ], [ -95.223784960074084, 29.636381176854684 ], [ -95.223765960334958, 29.635589176250605 ], [ -95.223755959973488, 29.635134176369942 ], [ -95.223758959815996, 29.634829176496496 ], [ -95.221418960085984, 29.634835176059138 ], [ -95.221363960159891, 29.633705175826567 ], [ -95.221329959366003, 29.633004176311896 ], [ -95.221296959995996, 29.63233717567881 ], [ -95.221261959928938, 29.63162617608241 ], [ -95.221234959361169, 29.631065175613788 ], [ -95.221202959526394, 29.630445175666022 ], [ -95.221168959012758, 29.629755175314255 ], [ -95.217887959144477, 29.632088175452399 ], [ -95.217355958752009, 29.632465176021572 ], [ -95.217092958049804, 29.632652176035844 ], [ -95.216989958909949, 29.632726176377236 ], [ -95.216019957879837, 29.6334141763984 ], [ -95.215889957816572, 29.633509176445607 ], [ -95.214225957727706, 29.634689176665411 ], [ -95.214067957587659, 29.634809176720776 ], [ -95.21400395735543, 29.634847176674789 ], [ -95.213969957607986, 29.634869176726525 ], [ -95.213858957613567, 29.634948177027802 ], [ -95.213357957799687, 29.635333176375351 ], [ -95.21248195757569, 29.635947176574472 ], [ -95.211904957348395, 29.636358176871756 ], [ -95.211454957539175, 29.636688176731951 ], [ -95.21103095673287, 29.636986177185634 ], [ -95.212074957070854, 29.638093177348331 ], [ -95.212239957989965, 29.638268177189715 ], [ -95.213234957616024, 29.639331177641289 ], [ -95.214152958170843, 29.640281177586015 ], [ -95.214469957806941, 29.640599178111543 ], [ -95.214635958274826, 29.640785177458248 ], [ -95.21523595792101, 29.64145917827376 ], [ -95.216077958835186, 29.64236017773483 ], [ -95.216882958789427, 29.643197177891828 ], [ -95.217268958772735, 29.643646178698823 ], [ -95.218326958883239, 29.644756178703666 ], [ -95.218647959602123, 29.645109178148953 ], [ -95.218913959662729, 29.64539617875662 ], [ -95.219659959580497, 29.646200178613423 ], [ -95.219819960022221, 29.646361178905082 ], [ -95.220327960253158, 29.64687017885279 ], [ -95.220427959652795, 29.64697717878726 ], [ -95.22117696023254, 29.647792178787391 ], [ -95.221627960497273, 29.647373179297805 ], [ -95.221862960634709, 29.64714317898483 ], [ -95.222224960128656, 29.646763178967941 ], [ -95.222371960503381, 29.646662179131116 ], [ -95.222734960678864, 29.646410178780446 ], [ -95.2230359601635, 29.646220178566246 ], [ -95.223278961035462, 29.646086178539363 ], [ -95.223529960516771, 29.64596817897689 ], [ -95.223653960727063, 29.645919178675321 ], [ -95.223791960427377, 29.645864178321006 ], [ -95.224255961301765, 29.645695178804843 ], [ -95.225030961089033, 29.645430178366215 ], [ -95.225375961233425, 29.645353178294723 ], [ -95.225723961001577, 29.645306178378288 ], [ -95.226559961143124, 29.645290178513676 ], [ -95.229605962236718, 29.645247178235284 ], [ -95.230436962559523, 29.645248177807048 ], [ -95.23299896294894, 29.645224177820751 ], [ -95.23314996301697, 29.645221178010011 ], [ -95.233647963306353, 29.645179178213706 ], [ -95.234142963531497, 29.645110178259646 ], [ -95.234631963944906, 29.645016178192044 ], [ -95.235113963154731, 29.644898178120645 ], [ -95.235586963617166, 29.644754177469704 ], [ -95.236048964272186, 29.644587177599128 ], [ -95.236839964075187, 29.644240177890939 ], [ -95.237823964388781, 29.643791177383818 ], [ -95.239628965115756, 29.642937177370253 ], [ -95.240546965451259, 29.642503177617037 ], [ -95.240912965279207, 29.642330176904007 ], [ -95.241501965509997, 29.642074177406368 ], [ -95.241805965474967, 29.641887176824198 ], [ -95.242032964899892, 29.641729177347994 ], [ -95.242911965666053, 29.641081176947303 ], [ -95.24311296504824, 29.640931176960667 ], [ -95.243230965449087, 29.640844177105656 ], [ -95.243369966066467, 29.640740177017136 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 780, "Tract": "48201333903", "Area_SqMi": 0.78873842187778842, "total_2009": 2492, "total_2010": 2596, "total_2011": 1946, "total_2012": 2380, "total_2013": 2605, "total_2014": 2190, "total_2015": 2353, "total_2016": 2382, "total_2017": 2355, "total_2018": 2249, "total_2019": 2201, "total_2020": 1942, "age1": 742, "age2": 864, "age3": 337, "earn1": 652, "earn2": 669, "earn3": 622, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 44, "naics_s05": 28, "naics_s06": 26, "naics_s07": 1171, "naics_s08": 6, "naics_s09": 11, "naics_s10": 13, "naics_s11": 5, "naics_s12": 33, "naics_s13": 0, "naics_s14": 175, "naics_s15": 0, "naics_s16": 102, "naics_s17": 51, "naics_s18": 221, "naics_s19": 57, "naics_s20": 0, "race1": 1369, "race2": 380, "race3": 19, "race4": 146, "race5": 3, "race6": 26, "ethnicity1": 1181, "ethnicity2": 762, "edu1": 293, "edu2": 322, "edu3": 373, "edu4": 213, "Shape_Length": 23371.570442439017, "Shape_Area": 21988677.262652203, "total_2021": 1952, "total_2022": 1943 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.245402964872738, 29.617899172417903 ], [ -95.24532496488311, 29.617369171743437 ], [ -95.245260964542581, 29.616938171743254 ], [ -95.245094964775106, 29.616742171446063 ], [ -95.241908964086974, 29.616801171909735 ], [ -95.241880964513541, 29.616025172202569 ], [ -95.241884964449866, 29.615633171432524 ], [ -95.242114964304534, 29.615045171997536 ], [ -95.24225196378849, 29.61474317162337 ], [ -95.242270963890448, 29.61426217106947 ], [ -95.242243964093262, 29.613498171139877 ], [ -95.242235964369783, 29.612729170951727 ], [ -95.242211964077669, 29.611967170564515 ], [ -95.242180963824183, 29.611126171205633 ], [ -95.241314963832892, 29.611161170713622 ], [ -95.239542963372458, 29.61119517055652 ], [ -95.238409963065735, 29.611217170525229 ], [ -95.238084963110268, 29.611225171044964 ], [ -95.237850963407084, 29.611404170706965 ], [ -95.236786962915275, 29.61236317116197 ], [ -95.236637962570796, 29.612499171016736 ], [ -95.236263962949479, 29.612836171344167 ], [ -95.235380962762335, 29.613638171390427 ], [ -95.235253961819737, 29.613753171913398 ], [ -95.235091962114524, 29.613905171799185 ], [ -95.234301962026706, 29.614651171981283 ], [ -95.233795961956289, 29.615104171894256 ], [ -95.23364096164876, 29.615244172092524 ], [ -95.232973962053563, 29.615849171723784 ], [ -95.232320961648938, 29.616444171912104 ], [ -95.231666961319007, 29.617048172733497 ], [ -95.2312609617845, 29.617413172057539 ], [ -95.231015961511403, 29.617634172352844 ], [ -95.230692960903269, 29.617930172156655 ], [ -95.230362961106195, 29.618227172851768 ], [ -95.229962960886326, 29.618592173123439 ], [ -95.229903961526873, 29.618794172874608 ], [ -95.229757960794274, 29.61921817321511 ], [ -95.229433960744373, 29.620338173450342 ], [ -95.229100960581931, 29.620343173288841 ], [ -95.228055961197342, 29.620360173330294 ], [ -95.227700960870621, 29.620367172844201 ], [ -95.227513960983899, 29.620370173311677 ], [ -95.227372960926928, 29.620372173046075 ], [ -95.227177960356045, 29.620376173375707 ], [ -95.227028960399196, 29.620378172860381 ], [ -95.226616960824643, 29.620374172895669 ], [ -95.226400960339788, 29.620380173431027 ], [ -95.225419960345434, 29.620392172893954 ], [ -95.225207960517167, 29.620391173524833 ], [ -95.224914960073136, 29.620396172916394 ], [ -95.223531959238883, 29.620412173357902 ], [ -95.223171959664654, 29.620420173470215 ], [ -95.222754958947959, 29.620425173284776 ], [ -95.222043959747751, 29.620433173288269 ], [ -95.221367959537858, 29.620463173583168 ], [ -95.221313959507356, 29.620499173512766 ], [ -95.221177959253481, 29.62058717342379 ], [ -95.223896959492066, 29.623091173880578 ], [ -95.22685596044515, 29.62574917415613 ], [ -95.227265960341512, 29.626112174776541 ], [ -95.22811796110193, 29.626846174845774 ], [ -95.228818961443054, 29.62748617474805 ], [ -95.229063961323973, 29.627710174547229 ], [ -95.229305961677483, 29.627706174791264 ], [ -95.23048596201906, 29.627684174241818 ], [ -95.231085961590495, 29.627692174813188 ], [ -95.231470962285414, 29.627688174361591 ], [ -95.231908962021976, 29.627683174593876 ], [ -95.23207396259518, 29.627680174657574 ], [ -95.233095962052772, 29.627658174163667 ], [ -95.234145962654338, 29.627645174173132 ], [ -95.234468963030992, 29.627642174475628 ], [ -95.234653962532462, 29.627641173990042 ], [ -95.235995963328151, 29.627623174178328 ], [ -95.238529964248755, 29.627594173962986 ], [ -95.238479963673058, 29.627486174120321 ], [ -95.238450963459968, 29.627006174588992 ], [ -95.238343963902651, 29.624667173763768 ], [ -95.238336963423762, 29.62451217404784 ], [ -95.238267963734614, 29.62297217363275 ], [ -95.238837963458508, 29.62292917362041 ], [ -95.239639964325832, 29.622719172947388 ], [ -95.240218963960615, 29.622705172894975 ], [ -95.240338963576448, 29.622222173395631 ], [ -95.240638964455059, 29.621559173204339 ], [ -95.241400964673772, 29.62060517257046 ], [ -95.241601964179623, 29.620272172755257 ], [ -95.242021964562596, 29.619584172764473 ], [ -95.242147964231705, 29.619366172418811 ], [ -95.242648964936222, 29.618784172766766 ], [ -95.243696965067016, 29.618173172231117 ], [ -95.245402964872738, 29.617899172417903 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 781, "Tract": "48201221301", "Area_SqMi": 0.72103592816796869, "total_2009": 1563, "total_2010": 1568, "total_2011": 1781, "total_2012": 1420, "total_2013": 1529, "total_2014": 1577, "total_2015": 1573, "total_2016": 1382, "total_2017": 1348, "total_2018": 1368, "total_2019": 1368, "total_2020": 1283, "age1": 236, "age2": 681, "age3": 353, "earn1": 460, "earn2": 391, "earn3": 419, "naics_s01": 0, "naics_s02": 0, "naics_s03": 6, "naics_s04": 352, "naics_s05": 19, "naics_s06": 0, "naics_s07": 23, "naics_s08": 0, "naics_s09": 5, "naics_s10": 20, "naics_s11": 0, "naics_s12": 36, "naics_s13": 0, "naics_s14": 42, "naics_s15": 1, "naics_s16": 664, "naics_s17": 0, "naics_s18": 74, "naics_s19": 28, "naics_s20": 0, "race1": 889, "race2": 313, "race3": 7, "race4": 45, "race5": 2, "race6": 14, "ethnicity1": 733, "ethnicity2": 537, "edu1": 292, "edu2": 310, "edu3": 269, "edu4": 163, "Shape_Length": 18009.218832163366, "Shape_Area": 20101247.611998476, "total_2021": 1368, "total_2022": 1270 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.384714011158565, 29.859443216811432 ], [ -95.384687011985179, 29.858608216367852 ], [ -95.384674011788675, 29.857726216318166 ], [ -95.384660010995759, 29.856811216613487 ], [ -95.384659011731003, 29.85672221672516 ], [ -95.384649011084974, 29.856102216214413 ], [ -95.384642011315151, 29.855610216464171 ], [ -95.38462201174687, 29.854296215764226 ], [ -95.384615011040921, 29.853820215867991 ], [ -95.38460701076211, 29.853276215783449 ], [ -95.384560011370027, 29.850269215356192 ], [ -95.384547010947983, 29.849465214531598 ], [ -95.384526010867148, 29.848126214565994 ], [ -95.384513010692615, 29.847296214462386 ], [ -95.384498010552491, 29.84634221418845 ], [ -95.384485011204319, 29.845526213590272 ], [ -95.384348010573788, 29.84551821360499 ], [ -95.384307010813984, 29.845516213722274 ], [ -95.383715010957388, 29.845524214225922 ], [ -95.38274201042303, 29.845562213899374 ], [ -95.382539009919142, 29.845563213936487 ], [ -95.382346010110638, 29.845551213712319 ], [ -95.378847009682417, 29.845585214557111 ], [ -95.378412009823862, 29.845604214128411 ], [ -95.377923009525162, 29.845611214609477 ], [ -95.377750008651333, 29.845600214558317 ], [ -95.377604009039288, 29.845587214012408 ], [ -95.37714200921657, 29.845591213928984 ], [ -95.376884009398324, 29.845600214548202 ], [ -95.376733009126795, 29.845616214343597 ], [ -95.376605008526738, 29.845623214110873 ], [ -95.376463008385343, 29.84562621410327 ], [ -95.376107008706057, 29.845619214358869 ], [ -95.376040008314405, 29.845615214072961 ], [ -95.375782008369612, 29.845615214130898 ], [ -95.37570700902296, 29.84561221427597 ], [ -95.374763008632698, 29.845622214193391 ], [ -95.37469600843788, 29.845626214265376 ], [ -95.374459008782736, 29.845623214021817 ], [ -95.374382008211313, 29.845625214124066 ], [ -95.372637008288308, 29.845640214285869 ], [ -95.371885007738683, 29.845683214538266 ], [ -95.371773008002862, 29.845674214468097 ], [ -95.371803007986173, 29.846161214157394 ], [ -95.371819007675327, 29.846602214518605 ], [ -95.371811007477788, 29.847137214882238 ], [ -95.371818007369441, 29.847570215223076 ], [ -95.371839007467059, 29.84866121546478 ], [ -95.371853007433856, 29.849112215002279 ], [ -95.371868008136218, 29.849770215615202 ], [ -95.371857007435707, 29.849820215054262 ], [ -95.371874008096256, 29.850938215363826 ], [ -95.371897007647831, 29.851840215640468 ], [ -95.37190600780221, 29.852929216280941 ], [ -95.371911008266167, 29.853398215935204 ], [ -95.371919008111149, 29.853892215867969 ], [ -95.37192100820009, 29.854692216588067 ], [ -95.371950008439484, 29.855864216175483 ], [ -95.371961008504442, 29.856308216578299 ], [ -95.37197900806882, 29.85708421679935 ], [ -95.37199000839675, 29.858130217420253 ], [ -95.372019008317366, 29.859043216794159 ], [ -95.372128008150042, 29.859084217602874 ], [ -95.372342008567358, 29.859172217138696 ], [ -95.372579008352844, 29.859243216995299 ], [ -95.372820008154818, 29.859286217305552 ], [ -95.373056008623479, 29.859288216802536 ], [ -95.375226008862001, 29.859274216793082 ], [ -95.375344008661301, 29.859276216845828 ], [ -95.375519009071013, 29.859291216993636 ], [ -95.375690009684732, 29.859322217323189 ], [ -95.375857008949296, 29.859362216940134 ], [ -95.376078009540223, 29.859396216864749 ], [ -95.376310008987716, 29.85941221708784 ], [ -95.3797720100753, 29.859366217392221 ], [ -95.38254401064664, 29.859329216630421 ], [ -95.382781011266772, 29.859316216940151 ], [ -95.382986011063281, 29.859296216856173 ], [ -95.38319901108116, 29.859270216629412 ], [ -95.383303011317992, 29.859264216632607 ], [ -95.383428010877708, 29.859264216641304 ], [ -95.383588011490176, 29.859270216810398 ], [ -95.383931011589937, 29.859300216884886 ], [ -95.384184011733737, 29.859342216764801 ], [ -95.384584011458557, 29.859421216860479 ], [ -95.384714011158565, 29.859443216811432 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 782, "Tract": "48201552401", "Area_SqMi": 0.99272396123573781, "total_2009": 2796, "total_2010": 3170, "total_2011": 3560, "total_2012": 3767, "total_2013": 3698, "total_2014": 3708, "total_2015": 3655, "total_2016": 3398, "total_2017": 3643, "total_2018": 3858, "total_2019": 3774, "total_2020": 3681, "age1": 1076, "age2": 1769, "age3": 807, "earn1": 675, "earn2": 1489, "earn3": 1488, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 661, "naics_s05": 156, "naics_s06": 94, "naics_s07": 822, "naics_s08": 6, "naics_s09": 4, "naics_s10": 74, "naics_s11": 38, "naics_s12": 60, "naics_s13": 1, "naics_s14": 941, "naics_s15": 0, "naics_s16": 392, "naics_s17": 19, "naics_s18": 308, "naics_s19": 76, "naics_s20": 0, "race1": 2586, "race2": 446, "race3": 39, "race4": 504, "race5": 7, "race6": 70, "ethnicity1": 2206, "ethnicity2": 1446, "edu1": 657, "edu2": 664, "edu3": 717, "edu4": 538, "Shape_Length": 23707.750855485425, "Shape_Area": 27675444.975212019, "total_2021": 3417, "total_2022": 3652 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.607754072047683, 29.936513224851272 ], [ -95.607759072414296, 29.93645622532599 ], [ -95.607752072010214, 29.936390224544947 ], [ -95.607752072552501, 29.936318224441653 ], [ -95.607741072365627, 29.936216224962401 ], [ -95.60773507238973, 29.936154225243559 ], [ -95.607671071884027, 29.935767224509146 ], [ -95.607624071579139, 29.935558224404012 ], [ -95.607531071671033, 29.935247224738966 ], [ -95.607496072211205, 29.935150224499584 ], [ -95.607459072437436, 29.935042224702038 ], [ -95.607328071965057, 29.934723224443804 ], [ -95.607226071472709, 29.934513224834888 ], [ -95.606899072009128, 29.933908224533539 ], [ -95.60687707143903, 29.933862224352968 ], [ -95.606851071896287, 29.9338102248315 ], [ -95.606708071210704, 29.933464224386697 ], [ -95.606687071616861, 29.933413223992666 ], [ -95.606586071781223, 29.933113224622591 ], [ -95.606483071992812, 29.932722224115128 ], [ -95.606452072063021, 29.932569223919987 ], [ -95.606420072073135, 29.932373223743816 ], [ -95.606398071707417, 29.932178223670633 ], [ -95.606382071678283, 29.931892224422981 ], [ -95.606380071691291, 29.931861224033437 ], [ -95.60636607126763, 29.931094223872115 ], [ -95.606344071745355, 29.929886224027307 ], [ -95.606338071432219, 29.929589223278022 ], [ -95.606331071785618, 29.929282223890116 ], [ -95.606324071531972, 29.928929223422106 ], [ -95.606313070950549, 29.927916222924974 ], [ -95.606293070859095, 29.926862222944198 ], [ -95.606325071597055, 29.925487222902039 ], [ -95.606312071114729, 29.925197222828888 ], [ -95.606315071560502, 29.925086222579736 ], [ -95.606297071450641, 29.92488522266903 ], [ -95.606265070686192, 29.9246352222263 ], [ -95.606237071467419, 29.924455222183777 ], [ -95.606170070720069, 29.924180222844676 ], [ -95.606096070756521, 29.923926222475853 ], [ -95.605988071397306, 29.92373722260453 ], [ -95.605892070869885, 29.92349422221103 ], [ -95.605876071462731, 29.92347122277231 ], [ -95.605781071197654, 29.923241221957763 ], [ -95.605669070488787, 29.92302222213408 ], [ -95.605623070558778, 29.922940222225634 ], [ -95.605429070446831, 29.922608222015675 ], [ -95.60528407080524, 29.922374222317998 ], [ -95.604936070962182, 29.921813222271343 ], [ -95.600056069074455, 29.924001222513191 ], [ -95.599966070014759, 29.924041222641513 ], [ -95.599709069609844, 29.92415822234927 ], [ -95.599310069170059, 29.924365222927658 ], [ -95.598759068960746, 29.924614222995835 ], [ -95.598736069546575, 29.924626222886165 ], [ -95.598647069376852, 29.92467022237097 ], [ -95.598072068765333, 29.924959222534248 ], [ -95.597866069578075, 29.925086223003667 ], [ -95.597452069143543, 29.925351223309445 ], [ -95.597249068592248, 29.925472222781245 ], [ -95.595250068795522, 29.926673223528603 ], [ -95.59512206887355, 29.926742223625521 ], [ -95.595027067919958, 29.926793223204239 ], [ -95.594939068142011, 29.926841223283645 ], [ -95.594666068195835, 29.926988223324589 ], [ -95.594488068228756, 29.927098223394033 ], [ -95.594289068479355, 29.927219223428736 ], [ -95.593459067866689, 29.927729223618918 ], [ -95.593155067811708, 29.927914223587049 ], [ -95.592836068245703, 29.928111223577829 ], [ -95.59237806770092, 29.928393223434355 ], [ -95.592211068270444, 29.92853022397161 ], [ -95.592085068173574, 29.928632223880623 ], [ -95.591333067809472, 29.929023223939986 ], [ -95.590905067804911, 29.929281224187175 ], [ -95.590770067533526, 29.929365223642417 ], [ -95.589677066905551, 29.930053224371786 ], [ -95.589599067362187, 29.930098224053221 ], [ -95.5893210668834, 29.930256224130719 ], [ -95.58895806679277, 29.930462223930842 ], [ -95.588899067347853, 29.93049622446522 ], [ -95.588618067293297, 29.930668224256745 ], [ -95.58809906665563, 29.93098522444464 ], [ -95.587858066814334, 29.931132224670389 ], [ -95.587475066293763, 29.931365224244026 ], [ -95.587147066520174, 29.931565224264467 ], [ -95.586129066744192, 29.932187225113406 ], [ -95.585534065913151, 29.93255122452512 ], [ -95.584868066240176, 29.932962225072171 ], [ -95.584803066212174, 29.932993225386724 ], [ -95.584805066187954, 29.933524224869348 ], [ -95.58480606618383, 29.933579224854974 ], [ -95.58481306577012, 29.933877225247183 ], [ -95.584852066634497, 29.934284225211066 ], [ -95.584865066617141, 29.934518225442751 ], [ -95.584828066105757, 29.934930225265607 ], [ -95.584792066616046, 29.935399225097804 ], [ -95.584791065927249, 29.935420225861233 ], [ -95.584787066676427, 29.935583225354588 ], [ -95.584786066651304, 29.935638225865116 ], [ -95.584784066550966, 29.935718225527257 ], [ -95.584786066468112, 29.935985225274631 ], [ -95.584792066615393, 29.936532225627236 ], [ -95.584795066665905, 29.936620225572298 ], [ -95.584797066610392, 29.936733225560779 ], [ -95.584788065959216, 29.936902226175754 ], [ -95.584745065746773, 29.93726322600304 ], [ -95.584692065959032, 29.937753226227738 ], [ -95.584688066305063, 29.937878225702693 ], [ -95.58469106589142, 29.938277225863935 ], [ -95.584692065848174, 29.938354225834427 ], [ -95.584699066633718, 29.939373225979093 ], [ -95.584862065901945, 29.939377226552889 ], [ -95.585446067006245, 29.939369226536343 ], [ -95.585756066199096, 29.939365226192088 ], [ -95.585850067107415, 29.939365226011255 ], [ -95.58630006668966, 29.939359226002249 ], [ -95.586551067015037, 29.939356226332603 ], [ -95.586702067325703, 29.939347225877029 ], [ -95.586848067242286, 29.939350225899748 ], [ -95.5870020672088, 29.939345226634895 ], [ -95.587623066772039, 29.93934122652734 ], [ -95.589471067525565, 29.939312226156868 ], [ -95.589926067550905, 29.939290225738194 ], [ -95.590009067968808, 29.939280226189439 ], [ -95.590077067439211, 29.939271226475466 ], [ -95.590127067871634, 29.939260226152914 ], [ -95.590197067277501, 29.939261226158493 ], [ -95.590264067393591, 29.939253226281185 ], [ -95.590335068096692, 29.939234226426397 ], [ -95.590404067317436, 29.939229225937019 ], [ -95.590460067957792, 29.939205225704328 ], [ -95.590539067798886, 29.93918322570218 ], [ -95.590961067525143, 29.939145225977772 ], [ -95.591061067803437, 29.939150225794286 ], [ -95.591163067638192, 29.939150226457659 ], [ -95.591835068483149, 29.939226226416817 ], [ -95.591921068572191, 29.939220226201051 ], [ -95.59196706780665, 29.939242226098717 ], [ -95.592027067880565, 29.939236226427422 ], [ -95.592070068076112, 29.939241226154838 ], [ -95.592126068499297, 29.939247225593864 ], [ -95.592179067859973, 29.939239225856788 ], [ -95.592619068033954, 29.939238226347925 ], [ -95.59279706813777, 29.939251225658591 ], [ -95.592825068641687, 29.93925322609682 ], [ -95.592978068953116, 29.939283225869758 ], [ -95.593848068769105, 29.939318226098674 ], [ -95.593857069135169, 29.939120225976751 ], [ -95.593852068276476, 29.93892822554799 ], [ -95.593867068737964, 29.93872322571729 ], [ -95.593866068852734, 29.938582226027098 ], [ -95.593878068800734, 29.938281225432949 ], [ -95.593893068668422, 29.937973225718256 ], [ -95.593905068292074, 29.937604225793439 ], [ -95.593917068986769, 29.937498225251474 ], [ -95.593915069027247, 29.937393226023502 ], [ -95.593939068126147, 29.936759224995455 ], [ -95.593995068497819, 29.936681225533558 ], [ -95.594072068411393, 29.936696225779617 ], [ -95.594645068699592, 29.936691225776872 ], [ -95.594999068486516, 29.936695225117866 ], [ -95.597302069300881, 29.936687225740688 ], [ -95.597846069372551, 29.936687225419806 ], [ -95.598002069331301, 29.936683225569723 ], [ -95.5986910701711, 29.936683224824417 ], [ -95.599621069950842, 29.936669225308119 ], [ -95.599807070473858, 29.93667722563249 ], [ -95.604542071408829, 29.936665225036116 ], [ -95.605494071190947, 29.93666922487915 ], [ -95.606195071303304, 29.93667222472294 ], [ -95.607139072024751, 29.936694225284821 ], [ -95.607563072328759, 29.936689224725736 ], [ -95.607754072478741, 29.936688225395329 ], [ -95.607754072047683, 29.936513224851272 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 783, "Tract": "48201552402", "Area_SqMi": 1.3679454575148919, "total_2009": 342, "total_2010": 583, "total_2011": 576, "total_2012": 410, "total_2013": 432, "total_2014": 461, "total_2015": 481, "total_2016": 581, "total_2017": 546, "total_2018": 513, "total_2019": 494, "total_2020": 445, "age1": 89, "age2": 256, "age3": 132, "earn1": 122, "earn2": 150, "earn3": 205, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 71, "naics_s05": 0, "naics_s06": 10, "naics_s07": 76, "naics_s08": 4, "naics_s09": 6, "naics_s10": 16, "naics_s11": 0, "naics_s12": 23, "naics_s13": 0, "naics_s14": 30, "naics_s15": 146, "naics_s16": 26, "naics_s17": 3, "naics_s18": 25, "naics_s19": 41, "naics_s20": 0, "race1": 409, "race2": 32, "race3": 2, "race4": 28, "race5": 0, "race6": 6, "ethnicity1": 361, "ethnicity2": 116, "edu1": 59, "edu2": 90, "edu3": 119, "edu4": 120, "Shape_Length": 25345.543369067607, "Shape_Area": 38135978.093465731, "total_2021": 455, "total_2022": 477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.608014072255713, 29.946257226520228 ], [ -95.608009072482673, 29.946071227104778 ], [ -95.60800807259298, 29.9458752263882 ], [ -95.607989072565672, 29.945633226808884 ], [ -95.607968072196613, 29.945462227064713 ], [ -95.607950072225833, 29.945374226691207 ], [ -95.607936072346106, 29.945212226322354 ], [ -95.607928072239048, 29.945000226799802 ], [ -95.607920072266154, 29.944912226354305 ], [ -95.607919072405281, 29.944855227 ], [ -95.607910072174676, 29.94478922644506 ], [ -95.607910072897326, 29.944480226945647 ], [ -95.607914072194973, 29.944418226452289 ], [ -95.607907072594145, 29.944059226012271 ], [ -95.607904072870966, 29.943855226681702 ], [ -95.607891072869364, 29.9437862260149 ], [ -95.607897072432621, 29.943723226371432 ], [ -95.607887072757819, 29.943536226772078 ], [ -95.60789407284706, 29.943477226377301 ], [ -95.607884072647408, 29.943411226694224 ], [ -95.607881072716751, 29.943209226482935 ], [ -95.607878072238137, 29.9427902263369 ], [ -95.607865072581461, 29.942375226340801 ], [ -95.607863072871311, 29.941883226072093 ], [ -95.607853072131974, 29.941512225749186 ], [ -95.607846071847348, 29.941463225735909 ], [ -95.607847072284883, 29.941075225611108 ], [ -95.607839072485035, 29.941002225604155 ], [ -95.607839072764705, 29.94065622610205 ], [ -95.607838072012328, 29.940592225473676 ], [ -95.607830072657691, 29.940530225880426 ], [ -95.607829072185822, 29.940464226083062 ], [ -95.60783407218149, 29.940397225336142 ], [ -95.607827072642792, 29.940323225275773 ], [ -95.607831072460542, 29.940174225928153 ], [ -95.607825072707755, 29.94009522566332 ], [ -95.607822072252716, 29.939781225458244 ], [ -95.607827072216992, 29.939707225332079 ], [ -95.607821071966967, 29.939597225664659 ], [ -95.607815072476342, 29.939544225478979 ], [ -95.607814072675581, 29.939295225905944 ], [ -95.607804072553336, 29.939115225361313 ], [ -95.607804071776698, 29.939024225465779 ], [ -95.607812072727029, 29.938937225742873 ], [ -95.607800072504006, 29.938634224963394 ], [ -95.607781072592132, 29.937752225257416 ], [ -95.607785071887307, 29.937675224953132 ], [ -95.607782072497074, 29.93764322553908 ], [ -95.607777072247558, 29.937596225525109 ], [ -95.6077670719244, 29.937138224875376 ], [ -95.60777107221007, 29.93706822485402 ], [ -95.607762072420712, 29.936785224659744 ], [ -95.60775407188558, 29.936733225335331 ], [ -95.607754072478741, 29.936688225395329 ], [ -95.607563072328759, 29.936689224725736 ], [ -95.607139072024751, 29.936694225284821 ], [ -95.606195071303304, 29.93667222472294 ], [ -95.605494071190947, 29.93666922487915 ], [ -95.604542071408829, 29.936665225036116 ], [ -95.599807070473858, 29.93667722563249 ], [ -95.599621069950842, 29.936669225308119 ], [ -95.5986910701711, 29.936683224824417 ], [ -95.598002069331301, 29.936683225569723 ], [ -95.597846069372551, 29.936687225419806 ], [ -95.597302069300881, 29.936687225740688 ], [ -95.594999068486516, 29.936695225117866 ], [ -95.594645068699592, 29.936691225776872 ], [ -95.594072068411393, 29.936696225779617 ], [ -95.593995068497819, 29.936681225533558 ], [ -95.593939068126147, 29.936759224995455 ], [ -95.593915069027247, 29.937393226023502 ], [ -95.593917068986769, 29.937498225251474 ], [ -95.593905068292074, 29.937604225793439 ], [ -95.593893068668422, 29.937973225718256 ], [ -95.593878068800734, 29.938281225432949 ], [ -95.593866068852734, 29.938582226027098 ], [ -95.593867068737964, 29.93872322571729 ], [ -95.593852068276476, 29.93892822554799 ], [ -95.593857069135169, 29.939120225976751 ], [ -95.593848068769105, 29.939318226098674 ], [ -95.592978068953116, 29.939283225869758 ], [ -95.592825068641687, 29.93925322609682 ], [ -95.59279706813777, 29.939251225658591 ], [ -95.592619068033954, 29.939238226347925 ], [ -95.592179067859973, 29.939239225856788 ], [ -95.592126068499297, 29.939247225593864 ], [ -95.592070068076112, 29.939241226154838 ], [ -95.592027067880565, 29.939236226427422 ], [ -95.59196706780665, 29.939242226098717 ], [ -95.591921068572191, 29.939220226201051 ], [ -95.591835068483149, 29.939226226416817 ], [ -95.591163067638192, 29.939150226457659 ], [ -95.591061067803437, 29.939150225794286 ], [ -95.590961067525143, 29.939145225977772 ], [ -95.590539067798886, 29.93918322570218 ], [ -95.590460067957792, 29.939205225704328 ], [ -95.590404067317436, 29.939229225937019 ], [ -95.590335068096692, 29.939234226426397 ], [ -95.590264067393591, 29.939253226281185 ], [ -95.590197067277501, 29.939261226158493 ], [ -95.590127067871634, 29.939260226152914 ], [ -95.590077067439211, 29.939271226475466 ], [ -95.590009067968808, 29.939280226189439 ], [ -95.589926067550905, 29.939290225738194 ], [ -95.589471067525565, 29.939312226156868 ], [ -95.587623066772039, 29.93934122652734 ], [ -95.5870020672088, 29.939345226634895 ], [ -95.586848067242286, 29.939350225899748 ], [ -95.586702067325703, 29.939347225877029 ], [ -95.586551067015037, 29.939356226332603 ], [ -95.58630006668966, 29.939359226002249 ], [ -95.585850067107415, 29.939365226011255 ], [ -95.585756066199096, 29.939365226192088 ], [ -95.585446067006245, 29.939369226536343 ], [ -95.584862065901945, 29.939377226552889 ], [ -95.584699066633718, 29.939373225979093 ], [ -95.584698066788022, 29.939537226700594 ], [ -95.584702066659915, 29.939782226387155 ], [ -95.584703066485233, 29.939832226034781 ], [ -95.58470906622405, 29.940234226572979 ], [ -95.584712066738319, 29.94050222614775 ], [ -95.584715066208176, 29.940781226149674 ], [ -95.584718066408826, 29.941091226585765 ], [ -95.584724066471395, 29.941520226320382 ], [ -95.584726066752793, 29.941945226956157 ], [ -95.584758066834112, 29.943195227264901 ], [ -95.584763066790671, 29.94340522712568 ], [ -95.584765066904424, 29.943548227232672 ], [ -95.584767066852308, 29.943664227083595 ], [ -95.584772066167616, 29.943906227348446 ], [ -95.584775066114318, 29.944025227479568 ], [ -95.584781066176376, 29.94447722774844 ], [ -95.584782066151803, 29.944678227369259 ], [ -95.584785066889708, 29.944872227035663 ], [ -95.584788066866707, 29.944980227567388 ], [ -95.584821066877367, 29.945814227411962 ], [ -95.584815066532869, 29.945904227452019 ], [ -95.584806066694199, 29.945967227680764 ], [ -95.584798066876147, 29.946077227326764 ], [ -95.584803067025604, 29.946353227921232 ], [ -95.584810066333162, 29.94694022814889 ], [ -95.584814066459273, 29.947227228045104 ], [ -95.584815066592341, 29.94726022777202 ], [ -95.584848066744925, 29.947562227659954 ], [ -95.584850067146107, 29.947746228350073 ], [ -95.584849066523063, 29.9480972281326 ], [ -95.584817066829203, 29.948894228309616 ], [ -95.584815066394867, 29.949120228135126 ], [ -95.58481506648809, 29.949216228427492 ], [ -95.584817067155811, 29.94939122865766 ], [ -95.584835066427132, 29.950506228787862 ], [ -95.584846066647103, 29.951165229030146 ], [ -95.584875066866289, 29.95255422939896 ], [ -95.584964066970329, 29.952556228763683 ], [ -95.585344067032167, 29.952548228863712 ], [ -95.585456066922887, 29.952550228894431 ], [ -95.585776067217409, 29.952544229054155 ], [ -95.586008067131658, 29.95254022924146 ], [ -95.586122067113735, 29.952537228835666 ], [ -95.586600067515405, 29.952528228815371 ], [ -95.587107067215825, 29.952520228706344 ], [ -95.587378068057333, 29.952523228983885 ], [ -95.588350067392028, 29.952521229237714 ], [ -95.588959067897576, 29.952512229023096 ], [ -95.589359068130193, 29.95250522862451 ], [ -95.589668068683935, 29.95250322906573 ], [ -95.590102068771273, 29.952501229220157 ], [ -95.59102306830377, 29.952491228683947 ], [ -95.59155306865695, 29.952490228356922 ], [ -95.592183069127699, 29.95249322903398 ], [ -95.592299068997107, 29.952497228384662 ], [ -95.592847069284716, 29.952485229017345 ], [ -95.593162069458685, 29.952483228362862 ], [ -95.593457069078383, 29.952471229080697 ], [ -95.593709068992084, 29.952472229007995 ], [ -95.594146069161738, 29.952462228736444 ], [ -95.594231069318369, 29.952461228685017 ], [ -95.594532068959509, 29.952459228890344 ], [ -95.595763070168431, 29.952457228224645 ], [ -95.595848070244685, 29.952456228953402 ], [ -95.596386070076932, 29.952451228114327 ], [ -95.597262070314628, 29.95242722860073 ], [ -95.597871070396366, 29.952413228430323 ], [ -95.598258070879211, 29.952401228472915 ], [ -95.598703070723175, 29.95239722856142 ], [ -95.598842070487336, 29.952400228149489 ], [ -95.599564070932416, 29.952414228138284 ], [ -95.59994307075975, 29.952411228607868 ], [ -95.600044070827892, 29.95240322817439 ], [ -95.600144071321083, 29.952406228017946 ], [ -95.600737071012645, 29.952396228620358 ], [ -95.600998070710816, 29.952388228506045 ], [ -95.601094070690252, 29.952395228494545 ], [ -95.60119107111484, 29.952396228255932 ], [ -95.601370071583872, 29.952388228382169 ], [ -95.601642071111328, 29.952384228518088 ], [ -95.601749071556014, 29.952378228028145 ], [ -95.602716071064137, 29.95236622850452 ], [ -95.603033071854924, 29.952361228152487 ], [ -95.603809071883589, 29.952362228093858 ], [ -95.604076071465343, 29.952357228567458 ], [ -95.604749071943331, 29.952346228517111 ], [ -95.604845072464414, 29.952345228263852 ], [ -95.60489607195386, 29.951691228052287 ], [ -95.604920072023418, 29.951527228140662 ], [ -95.604954072245931, 29.951382228136314 ], [ -95.604977072050517, 29.951322228198059 ], [ -95.604997071685034, 29.951237228235744 ], [ -95.605038072140218, 29.951113228144322 ], [ -95.605065072302054, 29.951048228082236 ], [ -95.605074072397954, 29.951026228350461 ], [ -95.605176072455549, 29.950803228328429 ], [ -95.605295071647191, 29.950585227698145 ], [ -95.605373072237057, 29.950458227872428 ], [ -95.605576072022885, 29.950182227806593 ], [ -95.605668071889355, 29.950085228097333 ], [ -95.605752072381023, 29.950001227817626 ], [ -95.60580707199442, 29.949958227731003 ], [ -95.605859072461584, 29.949895227816494 ], [ -95.606159072462745, 29.949646227783681 ], [ -95.606234071879868, 29.949575227576567 ], [ -95.60654807285654, 29.949301227734715 ], [ -95.606686071935201, 29.949166227070656 ], [ -95.606932072490736, 29.948901227331074 ], [ -95.607010072117745, 29.948811227845471 ], [ -95.607129072297667, 29.948665227261849 ], [ -95.607260072899237, 29.948484227144153 ], [ -95.607384072500409, 29.948294227472207 ], [ -95.607504072281785, 29.948090227205931 ], [ -95.607546073002041, 29.948011227018849 ], [ -95.607581072976117, 29.947924227441717 ], [ -95.607625072619797, 29.947846227230492 ], [ -95.607700072235346, 29.947683227480077 ], [ -95.607785072114908, 29.947456227179774 ], [ -95.607860072996488, 29.947226226788363 ], [ -95.607935072122501, 29.946943227121412 ], [ -95.607948072246728, 29.946855226622251 ], [ -95.607966072699668, 29.94677522728702 ], [ -95.607992072649012, 29.946600227202552 ], [ -95.608009072585304, 29.946425227159516 ], [ -95.608008073020471, 29.946338226769903 ], [ -95.608014072255713, 29.946257226520228 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 784, "Tract": "48201551202", "Area_SqMi": 0.60869871601430847, "total_2009": 746, "total_2010": 777, "total_2011": 781, "total_2012": 697, "total_2013": 728, "total_2014": 858, "total_2015": 738, "total_2016": 635, "total_2017": 615, "total_2018": 655, "total_2019": 775, "total_2020": 682, "age1": 308, "age2": 388, "age3": 181, "earn1": 372, "earn2": 292, "earn3": 213, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 0, "naics_s06": 22, "naics_s07": 321, "naics_s08": 2, "naics_s09": 0, "naics_s10": 10, "naics_s11": 50, "naics_s12": 56, "naics_s13": 0, "naics_s14": 0, "naics_s15": 6, "naics_s16": 187, "naics_s17": 25, "naics_s18": 157, "naics_s19": 13, "naics_s20": 0, "race1": 636, "race2": 109, "race3": 11, "race4": 112, "race5": 0, "race6": 9, "ethnicity1": 555, "ethnicity2": 322, "edu1": 106, "edu2": 144, "edu3": 161, "edu4": 158, "Shape_Length": 23959.590948133224, "Shape_Area": 16969478.404214576, "total_2021": 746, "total_2022": 877 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.513141049368514, 29.979745237068791 ], [ -95.513061049917582, 29.979657237032146 ], [ -95.512952049777965, 29.979525237257722 ], [ -95.512464049631006, 29.978870237151817 ], [ -95.51219504912153, 29.978522236327883 ], [ -95.511893049895718, 29.978163236493064 ], [ -95.511843049755456, 29.97810523646104 ], [ -95.51179804915634, 29.978058236837889 ], [ -95.511554049275347, 29.977799236623763 ], [ -95.51139804907622, 29.977633236716017 ], [ -95.511331049607847, 29.977570236881899 ], [ -95.511109049312708, 29.977341236514309 ], [ -95.510942049217405, 29.977170236106261 ], [ -95.510749049239877, 29.976947236073833 ], [ -95.510505048912037, 29.976651236368621 ], [ -95.510317048761195, 29.976386236175301 ], [ -95.510174048982009, 29.976162236520583 ], [ -95.51013404900965, 29.976101236445405 ], [ -95.509893048977858, 29.975677236555178 ], [ -95.509780048983956, 29.97542823585805 ], [ -95.509640048574312, 29.97511523582747 ], [ -95.509554048817392, 29.974887236394235 ], [ -95.509498048701445, 29.97471823621218 ], [ -95.509463048884058, 29.97464123596421 ], [ -95.509282048730213, 29.974173235861453 ], [ -95.509256048907588, 29.974094235613574 ], [ -95.509173048660401, 29.973882236077731 ], [ -95.509121048178173, 29.973775236298039 ], [ -95.509104048622419, 29.973689235843249 ], [ -95.509078048338765, 29.973606236225912 ], [ -95.509012048255357, 29.97344423607133 ], [ -95.50895904835356, 29.973282235367453 ], [ -95.508891048033774, 29.973106235654559 ], [ -95.508755048404396, 29.972727235606158 ], [ -95.508734048016478, 29.972650235307697 ], [ -95.508699048420993, 29.972573235680358 ], [ -95.508604048771417, 29.972329236080643 ], [ -95.508528047893279, 29.972139235847521 ], [ -95.508508048462033, 29.972059235184727 ], [ -95.508470048866926, 29.971985235248702 ], [ -95.508389048280051, 29.971765235114834 ], [ -95.50837204791253, 29.971698235454067 ], [ -95.508319048356967, 29.971564235822932 ], [ -95.508305048488808, 29.971539235131075 ], [ -95.508287048491795, 29.971476235843426 ], [ -95.508250047836555, 29.971377235213822 ], [ -95.508222048602448, 29.971322235364561 ], [ -95.508207047955963, 29.971257235421707 ], [ -95.508173048202892, 29.971184235631355 ], [ -95.508147047837255, 29.971106235083298 ], [ -95.508111048374829, 29.971023235095927 ], [ -95.508086048239775, 29.970936235696499 ], [ -95.508040047735676, 29.970815235363652 ], [ -95.508001047744045, 29.970706235364386 ], [ -95.507968047952517, 29.970630235170496 ], [ -95.507736048351973, 29.970023235078639 ], [ -95.507715047613871, 29.969931235515435 ], [ -95.507632047925199, 29.969696235148941 ], [ -95.507471047684234, 29.969274234979689 ], [ -95.507349047482549, 29.968939234556853 ], [ -95.507307048017466, 29.968859235404171 ], [ -95.507165047321777, 29.96847123517 ], [ -95.507049047801928, 29.968168235090172 ], [ -95.507016047485948, 29.968052235097097 ], [ -95.506939047637232, 29.96784823476353 ], [ -95.50689704799278, 29.967738234711355 ], [ -95.506783047241925, 29.967468234811363 ], [ -95.506759048110112, 29.967413234798684 ], [ -95.506708047617479, 29.967315234923866 ], [ -95.506625048023665, 29.967139235005767 ], [ -95.506541048071355, 29.966985234557292 ], [ -95.506491047402506, 29.96690523448763 ], [ -95.506462047207393, 29.966847235002337 ], [ -95.506370047847199, 29.966715234185411 ], [ -95.506288047485867, 29.966577234085033 ], [ -95.506239047789023, 29.966504234150914 ], [ -95.505706047807664, 29.965785234366475 ], [ -95.50534304731184, 29.965284234263816 ], [ -95.50508504758217, 29.964912233813251 ], [ -95.504986047078646, 29.964791234379828 ], [ -95.504904047074902, 29.964669234152005 ], [ -95.504475047248278, 29.964075233904911 ], [ -95.504313046730999, 29.963835234377267 ], [ -95.504181047333489, 29.963606233775732 ], [ -95.504103046452698, 29.963467234130306 ], [ -95.503983046351109, 29.963215233907594 ], [ -95.503750047215732, 29.962640233504754 ], [ -95.503709047001749, 29.962539233373896 ], [ -95.503660046216538, 29.962403234119044 ], [ -95.502533046671076, 29.95956423288288 ], [ -95.502500046663201, 29.959478232977311 ], [ -95.502339046374075, 29.959062233575139 ], [ -95.502194045719634, 29.958725232890757 ], [ -95.502114046398063, 29.958567232674966 ], [ -95.502071045685014, 29.958487233277609 ], [ -95.5020010458896, 29.958371233282982 ], [ -95.50197404647092, 29.95833023329854 ], [ -95.501954045942753, 29.958301233126992 ], [ -95.501926045584966, 29.958258233111408 ], [ -95.50184504644298, 29.958149232977732 ], [ -95.501758045840177, 29.958041232627227 ], [ -95.50166404614238, 29.95793723330771 ], [ -95.50156304551048, 29.957836233092923 ], [ -95.501455045996593, 29.957738232923035 ], [ -95.501340045540218, 29.957643232727566 ], [ -95.501220045648168, 29.957551233197854 ], [ -95.501094045811129, 29.957464232735585 ], [ -95.500966045907333, 29.957382232669023 ], [ -95.500834045267837, 29.957306233261662 ], [ -95.500699045387435, 29.957235232564837 ], [ -95.500562045196943, 29.957170233197996 ], [ -95.500422045391574, 29.957112232635883 ], [ -95.500137045894832, 29.957015232729479 ], [ -95.500047045231199, 29.956991232859806 ], [ -95.499994045601099, 29.956976233146804 ], [ -95.499912045014355, 29.956957232627641 ], [ -95.499850045360091, 29.956942232910627 ], [ -95.499707045422852, 29.956914232777283 ], [ -95.499565045763404, 29.956892232750246 ], [ -95.499426045799908, 29.956876232612792 ], [ -95.499289045448847, 29.956865232414962 ], [ -95.499019044877414, 29.956859233060275 ], [ -95.498496044832208, 29.956863232981064 ], [ -95.498340044565722, 29.956872233025933 ], [ -95.498353044887367, 29.957390232989859 ], [ -95.498412045045285, 29.959210233457572 ], [ -95.498421045515244, 29.959467233334294 ], [ -95.498431045346337, 29.959784232996117 ], [ -95.49844704521945, 29.960258233141516 ], [ -95.498466045589268, 29.960707233269307 ], [ -95.49848104508466, 29.961161233977375 ], [ -95.498489045006593, 29.961537233465119 ], [ -95.498486045508855, 29.961695233942727 ], [ -95.498466045053064, 29.96194823343415 ], [ -95.498433044849719, 29.96221223390355 ], [ -95.498381045613471, 29.962490234307136 ], [ -95.498304045473432, 29.962809234004901 ], [ -95.498488045862857, 29.962853234129138 ], [ -95.498790044996881, 29.962942233890885 ], [ -95.498959045205808, 29.962999233788167 ], [ -95.499044045865091, 29.963037233714434 ], [ -95.4991230457168, 29.963087233964348 ], [ -95.499226045475311, 29.963166234266406 ], [ -95.499268045119493, 29.963203233862433 ], [ -95.499333045229875, 29.963270233699383 ], [ -95.499505045694335, 29.963498234259877 ], [ -95.499625046067493, 29.963671234226066 ], [ -95.499695046074564, 29.96376223380032 ], [ -95.499974046243679, 29.96415423428174 ], [ -95.500060045590146, 29.964257234364574 ], [ -95.500118045768559, 29.964348234093286 ], [ -95.50020204565871, 29.964452234360841 ], [ -95.500396046003488, 29.964720234318477 ], [ -95.50075404646735, 29.965218234536689 ], [ -95.500909046246818, 29.965431234066795 ], [ -95.501166046131388, 29.965786234782982 ], [ -95.501295046108936, 29.965975234605949 ], [ -95.50144004653005, 29.966171234567383 ], [ -95.501573046094578, 29.966364234706621 ], [ -95.501887046565471, 29.966794234679245 ], [ -95.502929046221382, 29.968236235385337 ], [ -95.503740046687881, 29.969344235145723 ], [ -95.503795046651987, 29.969428234800738 ], [ -95.503883047265745, 29.969580235342313 ], [ -95.504076047304608, 29.96995323570308 ], [ -95.504086047418681, 29.969995235660591 ], [ -95.50416104694574, 29.970189235516184 ], [ -95.503673047545846, 29.970333235598549 ], [ -95.503240046898782, 29.970458235414558 ], [ -95.50276804689932, 29.970614235253471 ], [ -95.501887046851863, 29.970942235705731 ], [ -95.501585046692298, 29.971068235614364 ], [ -95.501347046101742, 29.971174235980914 ], [ -95.500758046046386, 29.97145623535312 ], [ -95.500356046650992, 29.971659235722854 ], [ -95.499971046606433, 29.971876235585974 ], [ -95.500247046020263, 29.972250235843902 ], [ -95.500388046352654, 29.97246623606053 ], [ -95.500435046644981, 29.972554236359201 ], [ -95.500490046531525, 29.972682236059942 ], [ -95.500530045931583, 29.972828235704171 ], [ -95.500595046820109, 29.973210236133401 ], [ -95.500632046750184, 29.973385235822068 ], [ -95.500645046258725, 29.973425236445792 ], [ -95.500686046076808, 29.973549236514479 ], [ -95.50072804622495, 29.973618236219433 ], [ -95.500759046072218, 29.973700236077498 ], [ -95.500837046649991, 29.973842236339081 ], [ -95.500919046800036, 29.973979235791916 ], [ -95.500960046191608, 29.974033236509296 ], [ -95.500993046891566, 29.974085236285184 ], [ -95.501035046187766, 29.974130236374904 ], [ -95.501044046032206, 29.974147236203681 ], [ -95.501061046356185, 29.974181235994752 ], [ -95.501173046478414, 29.974333236083663 ], [ -95.501247046855113, 29.974447235940065 ], [ -95.501331046616002, 29.974559236215711 ], [ -95.501361046337138, 29.974618236592253 ], [ -95.501455046503125, 29.974729236419453 ], [ -95.501490046586582, 29.974793236422311 ], [ -95.501527046330438, 29.974845236426578 ], [ -95.501581046789227, 29.974911235983161 ], [ -95.501614046386905, 29.974967236660106 ], [ -95.501643046963579, 29.975033236570905 ], [ -95.501693046756273, 29.97510723607131 ], [ -95.501729047191446, 29.975173236889102 ], [ -95.501769046630926, 29.975230236694809 ], [ -95.501796046978157, 29.975300236113906 ], [ -95.501840046431482, 29.975368236874981 ], [ -95.501918047188482, 29.975614236407555 ], [ -95.502087046573138, 29.976197236485696 ], [ -95.50215804641357, 29.976410236728217 ], [ -95.502222046465562, 29.976597236461128 ], [ -95.502275047202076, 29.976722237064685 ], [ -95.502334046571278, 29.976840236462152 ], [ -95.502358046849125, 29.976907236841296 ], [ -95.502395047521574, 29.976947236840367 ], [ -95.502429047477293, 29.977004237179919 ], [ -95.502471047134293, 29.977059236352854 ], [ -95.502507047445022, 29.977120236623811 ], [ -95.502540047533017, 29.977160237084661 ], [ -95.502676047617669, 29.977336236418974 ], [ -95.502718046623272, 29.977397236697144 ], [ -95.502778047210953, 29.977466236826974 ], [ -95.502805046706214, 29.977522237015492 ], [ -95.503058047313004, 29.977850237142114 ], [ -95.503080046931984, 29.977877237351208 ], [ -95.503121047047145, 29.977945237101252 ], [ -95.503211047652684, 29.978068236611673 ], [ -95.503246047025485, 29.978138237216044 ], [ -95.503434047529538, 29.978376237140473 ], [ -95.503461047861663, 29.978423236725209 ], [ -95.503540047378749, 29.978524237244478 ], [ -95.503689047029326, 29.978726236689983 ], [ -95.503750047576673, 29.978809236888331 ], [ -95.503834047064544, 29.978916236807517 ], [ -95.503939047624627, 29.979056237194929 ], [ -95.5039650470124, 29.979102236723143 ], [ -95.504054047473389, 29.979222237357583 ], [ -95.504186047647792, 29.979400237377728 ], [ -95.504267047893592, 29.979490237473964 ], [ -95.504286047442065, 29.979536237039873 ], [ -95.504324047901662, 29.979594237185612 ], [ -95.50433704789009, 29.979608236909264 ], [ -95.504382047620567, 29.97964923694753 ], [ -95.504428047302852, 29.979718237332349 ], [ -95.504458047857767, 29.979788237401568 ], [ -95.50449204769599, 29.979838237654743 ], [ -95.504538047425427, 29.979892237239003 ], [ -95.504642047291568, 29.980033237156942 ], [ -95.50474204746898, 29.980159237730543 ], [ -95.504843048072885, 29.980304237227415 ], [ -95.504916047341055, 29.980407237785844 ], [ -95.505063047481357, 29.980591237552296 ], [ -95.505088048081205, 29.980639237097446 ], [ -95.505147048183559, 29.980728237136592 ], [ -95.505354047529309, 29.98100523746346 ], [ -95.50598404820883, 29.981873237568642 ], [ -95.506036047888486, 29.98194023805355 ], [ -95.506380047987463, 29.982412237902938 ], [ -95.506576048463316, 29.982691237906828 ], [ -95.506723048161433, 29.982908238046633 ], [ -95.506780048346783, 29.982993238264175 ], [ -95.506789048296184, 29.98300623741822 ], [ -95.506802048486506, 29.98302523801777 ], [ -95.506825047993033, 29.983058237634751 ], [ -95.506914048828293, 29.983170237457312 ], [ -95.507181048117886, 29.98301523788178 ], [ -95.507571048448384, 29.982790237928402 ], [ -95.507903048772533, 29.982609238188793 ], [ -95.508607048539659, 29.982224237998313 ], [ -95.508803048890741, 29.982117237585634 ], [ -95.509089048629122, 29.981960237138594 ], [ -95.50929204936476, 29.981851237382113 ], [ -95.509750048898354, 29.981600237396755 ], [ -95.510310049730677, 29.981294237381647 ], [ -95.511284049724878, 29.980762237019963 ], [ -95.511971049135212, 29.98038623692916 ], [ -95.512618049846239, 29.980030237271709 ], [ -95.513141049368514, 29.979745237068791 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 785, "Tract": "48201551201", "Area_SqMi": 0.7707011198835183, "total_2009": 985, "total_2010": 1062, "total_2011": 1229, "total_2012": 1177, "total_2013": 1229, "total_2014": 1383, "total_2015": 1211, "total_2016": 1301, "total_2017": 1248, "total_2018": 1192, "total_2019": 1097, "total_2020": 1048, "age1": 309, "age2": 335, "age3": 197, "earn1": 333, "earn2": 343, "earn3": 165, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 23, "naics_s06": 0, "naics_s07": 323, "naics_s08": 0, "naics_s09": 0, "naics_s10": 22, "naics_s11": 17, "naics_s12": 44, "naics_s13": 1, "naics_s14": 5, "naics_s15": 0, "naics_s16": 49, "naics_s17": 5, "naics_s18": 332, "naics_s19": 8, "naics_s20": 0, "race1": 553, "race2": 202, "race3": 8, "race4": 63, "race5": 0, "race6": 15, "ethnicity1": 540, "ethnicity2": 301, "edu1": 151, "edu2": 143, "edu3": 127, "edu4": 111, "Shape_Length": 22767.614603852864, "Shape_Area": 21485828.154202849, "total_2021": 946, "total_2022": 841 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.50685304821873, 29.983205237473989 ], [ -95.506914048828293, 29.983170237457312 ], [ -95.506825047993033, 29.983058237634751 ], [ -95.506802048486506, 29.98302523801777 ], [ -95.506789048296184, 29.98300623741822 ], [ -95.506780048346783, 29.982993238264175 ], [ -95.506723048161433, 29.982908238046633 ], [ -95.506576048463316, 29.982691237906828 ], [ -95.506380047987463, 29.982412237902938 ], [ -95.506036047888486, 29.98194023805355 ], [ -95.50598404820883, 29.981873237568642 ], [ -95.505354047529309, 29.98100523746346 ], [ -95.505147048183559, 29.980728237136592 ], [ -95.505088048081205, 29.980639237097446 ], [ -95.505063047481357, 29.980591237552296 ], [ -95.504916047341055, 29.980407237785844 ], [ -95.504843048072885, 29.980304237227415 ], [ -95.50474204746898, 29.980159237730543 ], [ -95.504642047291568, 29.980033237156942 ], [ -95.504538047425427, 29.979892237239003 ], [ -95.50449204769599, 29.979838237654743 ], [ -95.504458047857767, 29.979788237401568 ], [ -95.504428047302852, 29.979718237332349 ], [ -95.504382047620567, 29.97964923694753 ], [ -95.50433704789009, 29.979608236909264 ], [ -95.504324047901662, 29.979594237185612 ], [ -95.504286047442065, 29.979536237039873 ], [ -95.504267047893592, 29.979490237473964 ], [ -95.504186047647792, 29.979400237377728 ], [ -95.504054047473389, 29.979222237357583 ], [ -95.5039650470124, 29.979102236723143 ], [ -95.503939047624627, 29.979056237194929 ], [ -95.503834047064544, 29.978916236807517 ], [ -95.503750047576673, 29.978809236888331 ], [ -95.503689047029326, 29.978726236689983 ], [ -95.503540047378749, 29.978524237244478 ], [ -95.503461047861663, 29.978423236725209 ], [ -95.503434047529538, 29.978376237140473 ], [ -95.503246047025485, 29.978138237216044 ], [ -95.503211047652684, 29.978068236611673 ], [ -95.503121047047145, 29.977945237101252 ], [ -95.503080046931984, 29.977877237351208 ], [ -95.503058047313004, 29.977850237142114 ], [ -95.502805046706214, 29.977522237015492 ], [ -95.502778047210953, 29.977466236826974 ], [ -95.502718046623272, 29.977397236697144 ], [ -95.502676047617669, 29.977336236418974 ], [ -95.502540047533017, 29.977160237084661 ], [ -95.502507047445022, 29.977120236623811 ], [ -95.502471047134293, 29.977059236352854 ], [ -95.502429047477293, 29.977004237179919 ], [ -95.502395047521574, 29.976947236840367 ], [ -95.502358046849125, 29.976907236841296 ], [ -95.502334046571278, 29.976840236462152 ], [ -95.502275047202076, 29.976722237064685 ], [ -95.502222046465562, 29.976597236461128 ], [ -95.50215804641357, 29.976410236728217 ], [ -95.502087046573138, 29.976197236485696 ], [ -95.501918047188482, 29.975614236407555 ], [ -95.501840046431482, 29.975368236874981 ], [ -95.501796046978157, 29.975300236113906 ], [ -95.501769046630926, 29.975230236694809 ], [ -95.501729047191446, 29.975173236889102 ], [ -95.501693046756273, 29.97510723607131 ], [ -95.501643046963579, 29.975033236570905 ], [ -95.501614046386905, 29.974967236660106 ], [ -95.501581046789227, 29.974911235983161 ], [ -95.501527046330438, 29.974845236426578 ], [ -95.501490046586582, 29.974793236422311 ], [ -95.501455046503125, 29.974729236419453 ], [ -95.501361046337138, 29.974618236592253 ], [ -95.501331046616002, 29.974559236215711 ], [ -95.501247046855113, 29.974447235940065 ], [ -95.501173046478414, 29.974333236083663 ], [ -95.501061046356185, 29.974181235994752 ], [ -95.501044046032206, 29.974147236203681 ], [ -95.501035046187766, 29.974130236374904 ], [ -95.500993046891566, 29.974085236285184 ], [ -95.500960046191608, 29.974033236509296 ], [ -95.500919046800036, 29.973979235791916 ], [ -95.500837046649991, 29.973842236339081 ], [ -95.500759046072218, 29.973700236077498 ], [ -95.50072804622495, 29.973618236219433 ], [ -95.500686046076808, 29.973549236514479 ], [ -95.500645046258725, 29.973425236445792 ], [ -95.500632046750184, 29.973385235822068 ], [ -95.500595046820109, 29.973210236133401 ], [ -95.500530045931583, 29.972828235704171 ], [ -95.500490046531525, 29.972682236059942 ], [ -95.500435046644981, 29.972554236359201 ], [ -95.500388046352654, 29.97246623606053 ], [ -95.500247046020263, 29.972250235843902 ], [ -95.499971046606433, 29.971876235585974 ], [ -95.500356046650992, 29.971659235722854 ], [ -95.500758046046386, 29.97145623535312 ], [ -95.501347046101742, 29.971174235980914 ], [ -95.501585046692298, 29.971068235614364 ], [ -95.501887046851863, 29.970942235705731 ], [ -95.50276804689932, 29.970614235253471 ], [ -95.503240046898782, 29.970458235414558 ], [ -95.503673047545846, 29.970333235598549 ], [ -95.50416104694574, 29.970189235516184 ], [ -95.504086047418681, 29.969995235660591 ], [ -95.504076047304608, 29.96995323570308 ], [ -95.503883047265745, 29.969580235342313 ], [ -95.503795046651987, 29.969428234800738 ], [ -95.503740046687881, 29.969344235145723 ], [ -95.502929046221382, 29.968236235385337 ], [ -95.501887046565471, 29.966794234679245 ], [ -95.501573046094578, 29.966364234706621 ], [ -95.50144004653005, 29.966171234567383 ], [ -95.501295046108936, 29.965975234605949 ], [ -95.501166046131388, 29.965786234782982 ], [ -95.500909046246818, 29.965431234066795 ], [ -95.50075404646735, 29.965218234536689 ], [ -95.500396046003488, 29.964720234318477 ], [ -95.50020204565871, 29.964452234360841 ], [ -95.500118045768559, 29.964348234093286 ], [ -95.500060045590146, 29.964257234364574 ], [ -95.499974046243679, 29.96415423428174 ], [ -95.499695046074564, 29.96376223380032 ], [ -95.499625046067493, 29.963671234226066 ], [ -95.499505045694335, 29.963498234259877 ], [ -95.499333045229875, 29.963270233699383 ], [ -95.499268045119493, 29.963203233862433 ], [ -95.499226045475311, 29.963166234266406 ], [ -95.4991230457168, 29.963087233964348 ], [ -95.499044045865091, 29.963037233714434 ], [ -95.498959045205808, 29.962999233788167 ], [ -95.498790044996881, 29.962942233890885 ], [ -95.498488045862857, 29.962853234129138 ], [ -95.498304045473432, 29.962809234004901 ], [ -95.498236044810909, 29.963028234205488 ], [ -95.498132045429884, 29.96330723405579 ], [ -95.498001045575577, 29.963629234304854 ], [ -95.497480045449066, 29.964920234668952 ], [ -95.496747045024307, 29.966722235004273 ], [ -95.49641504509934, 29.967542234633857 ], [ -95.4959910448828, 29.968586235351122 ], [ -95.495733045073976, 29.969222235718487 ], [ -95.494968045095334, 29.97110723606993 ], [ -95.494912045187093, 29.971244236077968 ], [ -95.494888045044988, 29.971306235865296 ], [ -95.494686044619542, 29.971809236013552 ], [ -95.494461045236136, 29.972364235832249 ], [ -95.4943140446358, 29.972745236457612 ], [ -95.494291045207802, 29.972807236074779 ], [ -95.494255045227945, 29.97291223623769 ], [ -95.494252045089823, 29.972921236035283 ], [ -95.49423504494068, 29.972969236241539 ], [ -95.494200044798077, 29.97306723592666 ], [ -95.494118045004853, 29.973293235942055 ], [ -95.494064044663645, 29.973443236126741 ], [ -95.493912044390427, 29.973832236132694 ], [ -95.49383804489824, 29.974012236502858 ], [ -95.493162044656344, 29.97568923689434 ], [ -95.493060044715008, 29.975935236676754 ], [ -95.493018044573816, 29.976033237333606 ], [ -95.492961044629297, 29.976172236602203 ], [ -95.492897044646483, 29.976315237377893 ], [ -95.492691044091941, 29.97676023665915 ], [ -95.492545044186727, 29.977087237545017 ], [ -95.492421044553552, 29.977394236855613 ], [ -95.492375044880362, 29.977524237461953 ], [ -95.492330044110105, 29.977689237157382 ], [ -95.49224404466537, 29.977937237294807 ], [ -95.492077044475593, 29.978339237403446 ], [ -95.492038044764868, 29.978433237356946 ], [ -95.491764044094111, 29.979104237362868 ], [ -95.492063044957234, 29.979491237979452 ], [ -95.492244044207609, 29.979724237898044 ], [ -95.492505044897712, 29.980084237999836 ], [ -95.492539044225978, 29.980130237586465 ], [ -95.492571044148619, 29.980174238089763 ], [ -95.492737044449356, 29.98039223822374 ], [ -95.49289304519678, 29.980596237987974 ], [ -95.493060044791662, 29.980816237682038 ], [ -95.493235045303621, 29.981038237662602 ], [ -95.49331504457912, 29.98113523771611 ], [ -95.493444045138389, 29.98129523792101 ], [ -95.493506045165717, 29.981376238178179 ], [ -95.493847044592073, 29.981819237941522 ], [ -95.494366044728835, 29.982492237878091 ], [ -95.494946045707167, 29.98326223858351 ], [ -95.49504104505256, 29.98338423849626 ], [ -95.495154044974257, 29.983531238234821 ], [ -95.495375045057926, 29.983831238090406 ], [ -95.495908045282206, 29.984534238701386 ], [ -95.495967045761944, 29.984590238423525 ], [ -95.496000046041445, 29.984653238858474 ], [ -95.496140045794931, 29.984835238926969 ], [ -95.496640045966743, 29.985491238367352 ], [ -95.497026046113916, 29.98599623863678 ], [ -95.497213046338871, 29.986234238577463 ], [ -95.497513045888994, 29.986629238822797 ], [ -95.498299046877932, 29.987714238987145 ], [ -95.49831704664453, 29.987739239272411 ], [ -95.498400046221875, 29.987841239363657 ], [ -95.498958047100686, 29.987538238975507 ], [ -95.499047046917866, 29.987489238735755 ], [ -95.499304047113228, 29.987351239228861 ], [ -95.499670047076776, 29.987153238533846 ], [ -95.500065046967293, 29.986940239107827 ], [ -95.500382046520826, 29.986769238955127 ], [ -95.500613046629653, 29.986645238934599 ], [ -95.50117004753902, 29.986345238867116 ], [ -95.501380047422685, 29.986232238873335 ], [ -95.501841047053517, 29.985982238717803 ], [ -95.501916047792619, 29.985942238880078 ], [ -95.502567047365986, 29.985591238351098 ], [ -95.503201047813178, 29.985220238843755 ], [ -95.503707047966728, 29.98493823820349 ], [ -95.503857047524178, 29.984849238671163 ], [ -95.503991047722508, 29.98477023817259 ], [ -95.504113047791137, 29.984699237862962 ], [ -95.504154047981601, 29.984675237976376 ], [ -95.504429048257691, 29.98451223860463 ], [ -95.505081047541452, 29.984129238005718 ], [ -95.505195047912608, 29.984069238495618 ], [ -95.505592048386433, 29.983919237713486 ], [ -95.506091047970315, 29.983621237626888 ], [ -95.506523048437913, 29.983392238271708 ], [ -95.50685304821873, 29.983205237473989 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 786, "Tract": "48201552502", "Area_SqMi": 1.0857626507432718, "total_2009": 386, "total_2010": 347, "total_2011": 329, "total_2012": 370, "total_2013": 519, "total_2014": 626, "total_2015": 609, "total_2016": 709, "total_2017": 593, "total_2018": 595, "total_2019": 578, "total_2020": 537, "age1": 149, "age2": 340, "age3": 138, "earn1": 100, "earn2": 150, "earn3": 377, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 65, "naics_s05": 81, "naics_s06": 7, "naics_s07": 88, "naics_s08": 31, "naics_s09": 8, "naics_s10": 9, "naics_s11": 22, "naics_s12": 25, "naics_s13": 0, "naics_s14": 14, "naics_s15": 15, "naics_s16": 48, "naics_s17": 0, "naics_s18": 41, "naics_s19": 173, "naics_s20": 0, "race1": 499, "race2": 80, "race3": 11, "race4": 33, "race5": 0, "race6": 4, "ethnicity1": 372, "ethnicity2": 255, "edu1": 119, "edu2": 127, "edu3": 150, "edu4": 82, "Shape_Length": 26611.975067763327, "Shape_Area": 30269204.401373532, "total_2021": 608, "total_2022": 627 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.585066067385696, 29.960538230631773 ], [ -95.585066067226435, 29.96012623082396 ], [ -95.585041067580619, 29.959265230148805 ], [ -95.585015067029715, 29.957666230180223 ], [ -95.585010066909177, 29.957597230374073 ], [ -95.584996066976672, 29.957362230059061 ], [ -95.584999066863034, 29.95703823001319 ], [ -95.584998067681482, 29.956828230026353 ], [ -95.584998067693448, 29.956723229647231 ], [ -95.584997066965443, 29.956484229396224 ], [ -95.584992066863848, 29.956219229302487 ], [ -95.584967067474921, 29.955828229237191 ], [ -95.584960067386035, 29.955667230040142 ], [ -95.584953067001749, 29.955449229536725 ], [ -95.58495206689868, 29.95537722930835 ], [ -95.584941067509504, 29.954779229721247 ], [ -95.584925067539672, 29.954117229391578 ], [ -95.584919067327007, 29.953905229169042 ], [ -95.584911067060958, 29.953626229592626 ], [ -95.584905066837123, 29.953428228977977 ], [ -95.584899067099286, 29.953248229067633 ], [ -95.584890067182968, 29.953012229154801 ], [ -95.584881067212336, 29.952779229338095 ], [ -95.584875066866289, 29.95255422939896 ], [ -95.583878067100542, 29.952481229206018 ], [ -95.583318066095458, 29.952489229422302 ], [ -95.58285806663207, 29.952497229107003 ], [ -95.581914066419216, 29.952349228888675 ], [ -95.580208066066703, 29.951726228689761 ], [ -95.578785065478513, 29.951308229355529 ], [ -95.578712065673813, 29.951309229371201 ], [ -95.578572065444803, 29.951291228807658 ], [ -95.578434065743252, 29.951315229376675 ], [ -95.577824064975502, 29.951323229279122 ], [ -95.577720065624391, 29.951314228825769 ], [ -95.577462064540583, 29.951311228974632 ], [ -95.57733806454462, 29.951317228942017 ], [ -95.577211064814264, 29.951319228871231 ], [ -95.576514064811093, 29.951330228897127 ], [ -95.576460064316663, 29.951330229238629 ], [ -95.57619306436014, 29.951328228581634 ], [ -95.575903064531047, 29.951331228596125 ], [ -95.575668064941098, 29.951317229298958 ], [ -95.575416064072968, 29.95128922857382 ], [ -95.575276064967738, 29.95126322876169 ], [ -95.575129063965178, 29.951230228598988 ], [ -95.574982064838252, 29.951191228968629 ], [ -95.574532064378658, 29.951055228734049 ], [ -95.574250064588043, 29.950954228980663 ], [ -95.573809064098825, 29.950825228757598 ], [ -95.573506063765933, 29.950738229104786 ], [ -95.5733330643437, 29.950696229118353 ], [ -95.573097064066545, 29.950657229343332 ], [ -95.572721063980595, 29.950624228892753 ], [ -95.572429063626629, 29.950612229210179 ], [ -95.572360063752882, 29.950613228596886 ], [ -95.57183806402395, 29.95062322945126 ], [ -95.571680063055496, 29.950619229244673 ], [ -95.57148206321547, 29.950627228741045 ], [ -95.56976106307475, 29.950681229033982 ], [ -95.569357062429347, 29.950689229396943 ], [ -95.568070062208051, 29.950727229195007 ], [ -95.567883062981849, 29.950732229180396 ], [ -95.566687061803279, 29.950767229467154 ], [ -95.566598062066333, 29.950769228958723 ], [ -95.566038062459398, 29.950779229249964 ], [ -95.565423061496631, 29.950803228817954 ], [ -95.564783061857284, 29.9508262294334 ], [ -95.563949061483925, 29.950853229131894 ], [ -95.563948061240794, 29.950748229463368 ], [ -95.563948061087984, 29.950718229002288 ], [ -95.563945061996733, 29.950019228785578 ], [ -95.563946061789764, 29.948988228874185 ], [ -95.563946061065906, 29.947742229144332 ], [ -95.563954061522068, 29.947531228262921 ], [ -95.563966061611069, 29.947439228757098 ], [ -95.56398006119592, 29.947277228430043 ], [ -95.563997061538927, 29.946968228550933 ], [ -95.564021061883068, 29.946646228478276 ], [ -95.564041061280008, 29.946346228089872 ], [ -95.564042061018611, 29.946327228418085 ], [ -95.564043061272343, 29.946250228752152 ], [ -95.563922061586581, 29.946359228318478 ], [ -95.563195061423613, 29.947005228143244 ], [ -95.562783060881387, 29.947371228840673 ], [ -95.562615061213791, 29.947521228978303 ], [ -95.562516061351474, 29.947609229104728 ], [ -95.562110061224018, 29.947964228375501 ], [ -95.561789060503756, 29.94824522914022 ], [ -95.560167060300742, 29.949664229171528 ], [ -95.55992906053487, 29.949873229576866 ], [ -95.558823060423691, 29.950851229901808 ], [ -95.557412060040619, 29.952140230004066 ], [ -95.556797059398676, 29.952691230205215 ], [ -95.556562059873968, 29.952901229571435 ], [ -95.555580059723795, 29.953781230429101 ], [ -95.555491059967025, 29.953861229860422 ], [ -95.554944059403809, 29.954351230547555 ], [ -95.553929059293722, 29.955260230754234 ], [ -95.553632059082702, 29.955527230347382 ], [ -95.554282059684979, 29.955718230909461 ], [ -95.554728059564027, 29.955849230357103 ], [ -95.557154059736717, 29.956562230523936 ], [ -95.557267060622735, 29.95662623097326 ], [ -95.557382059734877, 29.956660230664969 ], [ -95.557926060052068, 29.956820230437891 ], [ -95.558062060755347, 29.956861231217584 ], [ -95.558179060816897, 29.956895230961372 ], [ -95.558487060919092, 29.956986230748004 ], [ -95.558765060637853, 29.957058230857236 ], [ -95.558898060874171, 29.957103230764623 ], [ -95.559645060896131, 29.957324230724634 ], [ -95.560229060736418, 29.957497231043622 ], [ -95.563293061557061, 29.958393230893886 ], [ -95.563954062181494, 29.958586230497456 ], [ -95.565100061983074, 29.958922230758663 ], [ -95.567154062646637, 29.959527231422044 ], [ -95.570309063747885, 29.960452230819094 ], [ -95.57067006327803, 29.960560231475025 ], [ -95.570808063846414, 29.960601231303286 ], [ -95.571133063925743, 29.960698231455325 ], [ -95.571856063708069, 29.960911231005188 ], [ -95.572490064538997, 29.96110023098198 ], [ -95.572897064221138, 29.961222231459114 ], [ -95.573363064379137, 29.961349231097145 ], [ -95.573518064622078, 29.961387231264268 ], [ -95.573673064675319, 29.96141523085166 ], [ -95.573989064874738, 29.961438231459262 ], [ -95.57562206475906, 29.961414231048455 ], [ -95.575921064839676, 29.961406230988864 ], [ -95.576544065574964, 29.961398231203827 ], [ -95.577012065685096, 29.961384231122494 ], [ -95.577174065885316, 29.961390230961989 ], [ -95.577894065789565, 29.961377230650573 ], [ -95.578469065384581, 29.961370230605414 ], [ -95.578996066384335, 29.961364230918839 ], [ -95.579350066031665, 29.961355230909415 ], [ -95.579742065944657, 29.961344231213804 ], [ -95.580693066071348, 29.961330230456191 ], [ -95.581596066497639, 29.961319231276992 ], [ -95.581937066312918, 29.961310231058338 ], [ -95.584271066848828, 29.961273230882171 ], [ -95.584577067546576, 29.96126923096228 ], [ -95.585062067461095, 29.961263230328804 ], [ -95.585060067547019, 29.961170231130396 ], [ -95.585060067459537, 29.961090230916366 ], [ -95.585066067385696, 29.960538230631773 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 787, "Tract": "48201552501", "Area_SqMi": 1.0265835353343149, "total_2009": 956, "total_2010": 900, "total_2011": 1162, "total_2012": 1178, "total_2013": 1200, "total_2014": 1121, "total_2015": 1092, "total_2016": 1141, "total_2017": 1190, "total_2018": 1175, "total_2019": 1340, "total_2020": 1330, "age1": 293, "age2": 708, "age3": 316, "earn1": 253, "earn2": 468, "earn3": 596, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 79, "naics_s05": 164, "naics_s06": 128, "naics_s07": 512, "naics_s08": 9, "naics_s09": 16, "naics_s10": 29, "naics_s11": 56, "naics_s12": 26, "naics_s13": 0, "naics_s14": 39, "naics_s15": 2, "naics_s16": 77, "naics_s17": 0, "naics_s18": 84, "naics_s19": 95, "naics_s20": 0, "race1": 1004, "race2": 171, "race3": 14, "race4": 112, "race5": 1, "race6": 15, "ethnicity1": 861, "ethnicity2": 456, "edu1": 234, "edu2": 299, "edu3": 305, "edu4": 186, "Shape_Length": 23708.857126339441, "Shape_Area": 28619391.949840102, "total_2021": 1345, "total_2022": 1317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.584875066866289, 29.95255422939896 ], [ -95.584846066647103, 29.951165229030146 ], [ -95.584835066427132, 29.950506228787862 ], [ -95.584817067155811, 29.94939122865766 ], [ -95.58481506648809, 29.949216228427492 ], [ -95.584815066394867, 29.949120228135126 ], [ -95.584817066829203, 29.948894228309616 ], [ -95.584849066523063, 29.9480972281326 ], [ -95.584850067146107, 29.947746228350073 ], [ -95.584848066744925, 29.947562227659954 ], [ -95.584815066592341, 29.94726022777202 ], [ -95.584814066459273, 29.947227228045104 ], [ -95.584810066333162, 29.94694022814889 ], [ -95.584803067025604, 29.946353227921232 ], [ -95.584798066876147, 29.946077227326764 ], [ -95.584806066694199, 29.945967227680764 ], [ -95.584815066532869, 29.945904227452019 ], [ -95.584821066877367, 29.945814227411962 ], [ -95.584788066866707, 29.944980227567388 ], [ -95.584785066889708, 29.944872227035663 ], [ -95.584782066151803, 29.944678227369259 ], [ -95.584781066176376, 29.94447722774844 ], [ -95.584775066114318, 29.944025227479568 ], [ -95.584772066167616, 29.943906227348446 ], [ -95.584767066852308, 29.943664227083595 ], [ -95.584765066904424, 29.943548227232672 ], [ -95.584763066790671, 29.94340522712568 ], [ -95.584758066834112, 29.943195227264901 ], [ -95.584726066752793, 29.941945226956157 ], [ -95.584724066471395, 29.941520226320382 ], [ -95.584718066408826, 29.941091226585765 ], [ -95.584715066208176, 29.940781226149674 ], [ -95.584712066738319, 29.94050222614775 ], [ -95.58470906622405, 29.940234226572979 ], [ -95.584703066485233, 29.939832226034781 ], [ -95.584702066659915, 29.939782226387155 ], [ -95.584698066788022, 29.939537226700594 ], [ -95.584699066633718, 29.939373225979093 ], [ -95.584692065848174, 29.938354225834427 ], [ -95.58469106589142, 29.938277225863935 ], [ -95.584688066305063, 29.937878225702693 ], [ -95.584692065959032, 29.937753226227738 ], [ -95.584745065746773, 29.93726322600304 ], [ -95.584788065959216, 29.936902226175754 ], [ -95.584797066610392, 29.936733225560779 ], [ -95.584795066665905, 29.936620225572298 ], [ -95.584792066615393, 29.936532225627236 ], [ -95.584786066468112, 29.935985225274631 ], [ -95.584784066550966, 29.935718225527257 ], [ -95.584786066651304, 29.935638225865116 ], [ -95.584787066676427, 29.935583225354588 ], [ -95.584791065927249, 29.935420225861233 ], [ -95.584792066616046, 29.935399225097804 ], [ -95.584828066105757, 29.934930225265607 ], [ -95.584865066617141, 29.934518225442751 ], [ -95.584852066634497, 29.934284225211066 ], [ -95.58481306577012, 29.933877225247183 ], [ -95.58480606618383, 29.933579224854974 ], [ -95.584805066187954, 29.933524224869348 ], [ -95.584803066212174, 29.932993225386724 ], [ -95.584247065974523, 29.933334224817479 ], [ -95.583724066228598, 29.933628224821213 ], [ -95.582892065303824, 29.934132225617944 ], [ -95.582683065619918, 29.934271225008413 ], [ -95.582421065260917, 29.934429224944026 ], [ -95.581836065473496, 29.934747225289897 ], [ -95.58021006474506, 29.935715225698441 ], [ -95.580014064525784, 29.935834225450851 ], [ -95.579812064982534, 29.935955225600068 ], [ -95.579016065218894, 29.93643922573953 ], [ -95.57852606516316, 29.936736225750323 ], [ -95.577843064543814, 29.937151225792661 ], [ -95.57472906404422, 29.939043226819471 ], [ -95.574075063125591, 29.939441227059191 ], [ -95.573327063155446, 29.939893226371332 ], [ -95.573038063859443, 29.940070226867697 ], [ -95.572198063650319, 29.940580227144366 ], [ -95.56909206266775, 29.942465227832695 ], [ -95.568816062562234, 29.9426332272349 ], [ -95.56774406179558, 29.943282227651263 ], [ -95.567315061929051, 29.943517228068121 ], [ -95.567271062019543, 29.94354022777712 ], [ -95.566825062197026, 29.943873228003657 ], [ -95.566718061943618, 29.943953227454312 ], [ -95.566215061358079, 29.944334227859461 ], [ -95.565996061507079, 29.944501228149189 ], [ -95.565835061456994, 29.944624227676822 ], [ -95.565739061905219, 29.94471122830063 ], [ -95.565614062101801, 29.944826228396813 ], [ -95.565502061362977, 29.94495022830629 ], [ -95.564966061282618, 29.945425228236747 ], [ -95.564340061410604, 29.945981228253963 ], [ -95.564170061789397, 29.946135228034954 ], [ -95.564043061272343, 29.946250228752152 ], [ -95.564042061018611, 29.946327228418085 ], [ -95.564041061280008, 29.946346228089872 ], [ -95.564021061883068, 29.946646228478276 ], [ -95.563997061538927, 29.946968228550933 ], [ -95.56398006119592, 29.947277228430043 ], [ -95.563966061611069, 29.947439228757098 ], [ -95.563954061522068, 29.947531228262921 ], [ -95.563946061065906, 29.947742229144332 ], [ -95.563946061789764, 29.948988228874185 ], [ -95.563945061996733, 29.950019228785578 ], [ -95.563948061087984, 29.950718229002288 ], [ -95.563948061240794, 29.950748229463368 ], [ -95.563949061483925, 29.950853229131894 ], [ -95.564783061857284, 29.9508262294334 ], [ -95.565423061496631, 29.950803228817954 ], [ -95.566038062459398, 29.950779229249964 ], [ -95.566598062066333, 29.950769228958723 ], [ -95.566687061803279, 29.950767229467154 ], [ -95.567883062981849, 29.950732229180396 ], [ -95.568070062208051, 29.950727229195007 ], [ -95.569357062429347, 29.950689229396943 ], [ -95.56976106307475, 29.950681229033982 ], [ -95.57148206321547, 29.950627228741045 ], [ -95.571680063055496, 29.950619229244673 ], [ -95.57183806402395, 29.95062322945126 ], [ -95.572360063752882, 29.950613228596886 ], [ -95.572429063626629, 29.950612229210179 ], [ -95.572721063980595, 29.950624228892753 ], [ -95.573097064066545, 29.950657229343332 ], [ -95.5733330643437, 29.950696229118353 ], [ -95.573506063765933, 29.950738229104786 ], [ -95.573809064098825, 29.950825228757598 ], [ -95.574250064588043, 29.950954228980663 ], [ -95.574532064378658, 29.951055228734049 ], [ -95.574982064838252, 29.951191228968629 ], [ -95.575129063965178, 29.951230228598988 ], [ -95.575276064967738, 29.95126322876169 ], [ -95.575416064072968, 29.95128922857382 ], [ -95.575668064941098, 29.951317229298958 ], [ -95.575903064531047, 29.951331228596125 ], [ -95.57619306436014, 29.951328228581634 ], [ -95.576460064316663, 29.951330229238629 ], [ -95.576514064811093, 29.951330228897127 ], [ -95.577211064814264, 29.951319228871231 ], [ -95.57733806454462, 29.951317228942017 ], [ -95.577462064540583, 29.951311228974632 ], [ -95.577720065624391, 29.951314228825769 ], [ -95.577824064975502, 29.951323229279122 ], [ -95.578434065743252, 29.951315229376675 ], [ -95.578572065444803, 29.951291228807658 ], [ -95.578712065673813, 29.951309229371201 ], [ -95.578785065478513, 29.951308229355529 ], [ -95.580208066066703, 29.951726228689761 ], [ -95.581914066419216, 29.952349228888675 ], [ -95.58285806663207, 29.952497229107003 ], [ -95.583318066095458, 29.952489229422302 ], [ -95.583878067100542, 29.952481229206018 ], [ -95.584875066866289, 29.95255422939896 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 788, "Tract": "48201552603", "Area_SqMi": 0.55849563202829955, "total_2009": 19438, "total_2010": 22535, "total_2011": 20489, "total_2012": 1587, "total_2013": 1734, "total_2014": 1740, "total_2015": 2851, "total_2016": 1882, "total_2017": 1918, "total_2018": 1813, "total_2019": 1834, "total_2020": 1720, "age1": 506, "age2": 823, "age3": 399, "earn1": 414, "earn2": 663, "earn3": 651, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 70, "naics_s05": 40, "naics_s06": 178, "naics_s07": 568, "naics_s08": 0, "naics_s09": 65, "naics_s10": 34, "naics_s11": 40, "naics_s12": 126, "naics_s13": 0, "naics_s14": 142, "naics_s15": 18, "naics_s16": 229, "naics_s17": 46, "naics_s18": 161, "naics_s19": 8, "naics_s20": 0, "race1": 1172, "race2": 431, "race3": 11, "race4": 88, "race5": 0, "race6": 26, "ethnicity1": 1181, "ethnicity2": 547, "edu1": 282, "edu2": 321, "edu3": 385, "edu4": 234, "Shape_Length": 15812.405750535827, "Shape_Area": 15569902.346121622, "total_2021": 1728, "total_2022": 1728 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563956062210025, 29.966935232318505 ], [ -95.563954061845493, 29.966849232765167 ], [ -95.56394906227645, 29.966573232824363 ], [ -95.563926062492101, 29.966302232757783 ], [ -95.563867061836518, 29.965793232403932 ], [ -95.563833062509431, 29.965285232730103 ], [ -95.563826061855764, 29.965055232018425 ], [ -95.563798062544436, 29.964350232409497 ], [ -95.563783062147223, 29.963844232242018 ], [ -95.563784062376669, 29.963734231676678 ], [ -95.563783062126831, 29.963654231685943 ], [ -95.563782061611661, 29.963562232096919 ], [ -95.563783061705493, 29.963438231845611 ], [ -95.563766061823983, 29.963085231773434 ], [ -95.563764061691046, 29.963031231616199 ], [ -95.563760061780513, 29.962569232039279 ], [ -95.56375106230449, 29.961527231947059 ], [ -95.563742062271444, 29.961049231661566 ], [ -95.56373306191206, 29.960806231225689 ], [ -95.563730061467581, 29.960738231011121 ], [ -95.563734061643061, 29.960672231330168 ], [ -95.563756062308883, 29.960313231413988 ], [ -95.56378606238539, 29.96007923115052 ], [ -95.56389206192209, 29.959492231166813 ], [ -95.563919062004445, 29.95927023127625 ], [ -95.563951062378266, 29.958702230880689 ], [ -95.563954062181494, 29.958586230497456 ], [ -95.563293061557061, 29.958393230893886 ], [ -95.560229060736418, 29.957497231043622 ], [ -95.559645060896131, 29.957324230724634 ], [ -95.558898060874171, 29.957103230764623 ], [ -95.558765060637853, 29.957058230857236 ], [ -95.558487060919092, 29.956986230748004 ], [ -95.558179060816897, 29.956895230961372 ], [ -95.558062060755347, 29.956861231217584 ], [ -95.557926060052068, 29.956820230437891 ], [ -95.557382059734877, 29.956660230664969 ], [ -95.557267060622735, 29.95662623097326 ], [ -95.557154059736717, 29.956562230523936 ], [ -95.554728059564027, 29.955849230357103 ], [ -95.554282059684979, 29.955718230909461 ], [ -95.553632059082702, 29.955527230347382 ], [ -95.552565058610995, 29.956477230632377 ], [ -95.552242058472814, 29.956752230622225 ], [ -95.551650059066318, 29.957259231413936 ], [ -95.551516058990003, 29.957372231150046 ], [ -95.551210058864768, 29.957640230883221 ], [ -95.551075059051087, 29.957745231218453 ], [ -95.550787058294148, 29.958053231187641 ], [ -95.55011305879907, 29.958584231057607 ], [ -95.549486058268201, 29.959101231668722 ], [ -95.549450058189223, 29.959129231136664 ], [ -95.548714057742785, 29.959755231826016 ], [ -95.547791057791258, 29.960549232024647 ], [ -95.54761705782164, 29.9607032321559 ], [ -95.547530057654768, 29.960780231683064 ], [ -95.547368057466585, 29.960918231531998 ], [ -95.547058057823634, 29.96121723163499 ], [ -95.5470990581629, 29.961252231597847 ], [ -95.547234057292442, 29.961346231651291 ], [ -95.547474057810646, 29.961528232323527 ], [ -95.547849057555325, 29.96181523242797 ], [ -95.548380058524145, 29.962235232153972 ], [ -95.549210058385825, 29.962912232148071 ], [ -95.550293059042588, 29.963714232881756 ], [ -95.550491058741116, 29.963856232692546 ], [ -95.551924058958932, 29.964813232966698 ], [ -95.552303059667622, 29.965089232587946 ], [ -95.552927059425016, 29.96547223261944 ], [ -95.553647059656328, 29.965929232692265 ], [ -95.554570059500691, 29.966508233077793 ], [ -95.554812060418186, 29.966661232765482 ], [ -95.555734060318727, 29.967198233359778 ], [ -95.556221060709177, 29.967481233377352 ], [ -95.556648060836764, 29.967770232992052 ], [ -95.556856060453654, 29.967489233394396 ], [ -95.556985060853961, 29.967322232585758 ], [ -95.557040060919789, 29.967260233134891 ], [ -95.557175060805307, 29.967107233117112 ], [ -95.557242060493309, 29.967040233262079 ], [ -95.557321060710336, 29.966970233145787 ], [ -95.557472061039533, 29.966831232967863 ], [ -95.557526060546735, 29.966783232620358 ], [ -95.557634060320183, 29.966729232719697 ], [ -95.557834060308977, 29.966670232516524 ], [ -95.55800006112257, 29.966654232373717 ], [ -95.558229060972153, 29.966648232517265 ], [ -95.558445060745328, 29.966691232346371 ], [ -95.558764060693051, 29.966735232425155 ], [ -95.559078060533679, 29.966805232842848 ], [ -95.559163061339774, 29.966832232374731 ], [ -95.559413061011384, 29.966887233166489 ], [ -95.559561060969045, 29.966913232794013 ], [ -95.559792061613322, 29.966954232899568 ], [ -95.559964061315, 29.966953232997295 ], [ -95.560058060924248, 29.966952232996313 ], [ -95.560075061196741, 29.966952232563585 ], [ -95.560099061200376, 29.966951232694932 ], [ -95.560116061442258, 29.966951233158778 ], [ -95.560271060894024, 29.966950232399554 ], [ -95.560338061165695, 29.966949232850236 ], [ -95.56056206149654, 29.966947232874752 ], [ -95.560874061966956, 29.966945232673439 ], [ -95.561207061915155, 29.966948232703508 ], [ -95.561361061855919, 29.966937232665362 ], [ -95.561688061637554, 29.966937232971169 ], [ -95.562071062334311, 29.966929232670775 ], [ -95.56282206159797, 29.96692223234928 ], [ -95.563048061722753, 29.966921232526218 ], [ -95.563435062411941, 29.966927232901465 ], [ -95.563809062550064, 29.966934232566693 ], [ -95.563874062683325, 29.966932232380675 ], [ -95.563956062210025, 29.966935232318505 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 789, "Tract": "48201552604", "Area_SqMi": 0.57100292515454865, "total_2009": 239, "total_2010": 302, "total_2011": 290, "total_2012": 339, "total_2013": 307, "total_2014": 286, "total_2015": 285, "total_2016": 202, "total_2017": 268, "total_2018": 271, "total_2019": 201, "total_2020": 217, "age1": 25, "age2": 91, "age3": 49, "earn1": 35, "earn2": 46, "earn3": 84, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 0, "naics_s06": 32, "naics_s07": 18, "naics_s08": 1, "naics_s09": 0, "naics_s10": 7, "naics_s11": 2, "naics_s12": 47, "naics_s13": 0, "naics_s14": 0, "naics_s15": 2, "naics_s16": 16, "naics_s17": 0, "naics_s18": 5, "naics_s19": 1, "naics_s20": 0, "race1": 114, "race2": 25, "race3": 7, "race4": 18, "race5": 0, "race6": 1, "ethnicity1": 113, "ethnicity2": 52, "edu1": 26, "edu2": 33, "edu3": 49, "edu4": 32, "Shape_Length": 18673.234568568783, "Shape_Area": 15918584.272035321, "total_2021": 211, "total_2022": 165 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.585248068185649, 29.966231231913039 ], [ -95.585247067789865, 29.965931231248142 ], [ -95.585241067975915, 29.965667231932539 ], [ -95.585205067510245, 29.964706231314988 ], [ -95.585148067056238, 29.963900231606015 ], [ -95.585130067842158, 29.963291231417919 ], [ -95.585102067354754, 29.962543230775555 ], [ -95.585092067826679, 29.962216230929798 ], [ -95.585087067758181, 29.962088230914553 ], [ -95.58507706782612, 29.96179023115333 ], [ -95.585062067461095, 29.961263230328804 ], [ -95.584577067546576, 29.96126923096228 ], [ -95.584271066848828, 29.961273230882171 ], [ -95.581937066312918, 29.961310231058338 ], [ -95.581596066497639, 29.961319231276992 ], [ -95.580693066071348, 29.961330230456191 ], [ -95.579742065944657, 29.961344231213804 ], [ -95.579350066031665, 29.961355230909415 ], [ -95.578996066384335, 29.961364230918839 ], [ -95.578469065384581, 29.961370230605414 ], [ -95.577894065789565, 29.961377230650573 ], [ -95.577174065885316, 29.961390230961989 ], [ -95.577012065685096, 29.961384231122494 ], [ -95.576544065574964, 29.961398231203827 ], [ -95.575921064839676, 29.961406230988864 ], [ -95.57562206475906, 29.961414231048455 ], [ -95.573989064874738, 29.961438231459262 ], [ -95.573673064675319, 29.96141523085166 ], [ -95.573518064622078, 29.961387231264268 ], [ -95.573363064379137, 29.961349231097145 ], [ -95.572897064221138, 29.961222231459114 ], [ -95.572490064538997, 29.96110023098198 ], [ -95.571856063708069, 29.960911231005188 ], [ -95.571133063925743, 29.960698231455325 ], [ -95.570808063846414, 29.960601231303286 ], [ -95.57067006327803, 29.960560231475025 ], [ -95.570309063747885, 29.960452230819094 ], [ -95.567154062646637, 29.959527231422044 ], [ -95.565100061983074, 29.958922230758663 ], [ -95.563954062181494, 29.958586230497456 ], [ -95.563951062378266, 29.958702230880689 ], [ -95.563919062004445, 29.95927023127625 ], [ -95.56389206192209, 29.959492231166813 ], [ -95.56378606238539, 29.96007923115052 ], [ -95.563756062308883, 29.960313231413988 ], [ -95.563734061643061, 29.960672231330168 ], [ -95.563730061467581, 29.960738231011121 ], [ -95.56373306191206, 29.960806231225689 ], [ -95.563742062271444, 29.961049231661566 ], [ -95.56375106230449, 29.961527231947059 ], [ -95.563760061780513, 29.962569232039279 ], [ -95.563764061691046, 29.963031231616199 ], [ -95.563766061823983, 29.963085231773434 ], [ -95.563783061705493, 29.963438231845611 ], [ -95.563782061611661, 29.963562232096919 ], [ -95.563783062126831, 29.963654231685943 ], [ -95.563784062376669, 29.963734231676678 ], [ -95.563783062147223, 29.963844232242018 ], [ -95.563798062544436, 29.964350232409497 ], [ -95.563826061855764, 29.965055232018425 ], [ -95.563833062509431, 29.965285232730103 ], [ -95.563867061836518, 29.965793232403932 ], [ -95.563926062492101, 29.966302232757783 ], [ -95.56394906227645, 29.966573232824363 ], [ -95.563954061845493, 29.966849232765167 ], [ -95.563956062210025, 29.966935232318505 ], [ -95.564513061954784, 29.966954232382779 ], [ -95.564623062937244, 29.966961232736967 ], [ -95.564844063002568, 29.966988233047115 ], [ -95.56514606272853, 29.967043232880346 ], [ -95.565549062364752, 29.967132232605593 ], [ -95.565793062489945, 29.967184233012681 ], [ -95.566041062777501, 29.967220232649126 ], [ -95.566297062763198, 29.967241232720866 ], [ -95.566799063484154, 29.967267232345282 ], [ -95.568295063682072, 29.967339232139221 ], [ -95.568822063921246, 29.967359232847066 ], [ -95.569107063764605, 29.967370232574861 ], [ -95.569572063454714, 29.967389232863006 ], [ -95.570104064144388, 29.967404232430745 ], [ -95.570210063535569, 29.967409232400982 ], [ -95.570346064313526, 29.967410232124863 ], [ -95.570484063622345, 29.967405232884353 ], [ -95.570762063970591, 29.967405232226756 ], [ -95.570901064065993, 29.967395232655214 ], [ -95.571005063841213, 29.967394232152447 ], [ -95.571818064405292, 29.967383232010217 ], [ -95.57207106474624, 29.967379232868254 ], [ -95.57248606419644, 29.967373232752426 ], [ -95.573802065131517, 29.967357232232633 ], [ -95.574420064496195, 29.967339232539945 ], [ -95.575033065157015, 29.967323232555191 ], [ -95.57513506567156, 29.967323232055051 ], [ -95.575459065157247, 29.967313232025305 ], [ -95.57551806479276, 29.967312232062284 ], [ -95.575627064909298, 29.967302232425716 ], [ -95.575686065572484, 29.967301232415288 ], [ -95.575739064903487, 29.967301231910387 ], [ -95.575853065538567, 29.96729123234682 ], [ -95.576285065172939, 29.967283232440412 ], [ -95.576552065495775, 29.967276232420225 ], [ -95.576635065572901, 29.967268232559377 ], [ -95.577400065418615, 29.967230232119419 ], [ -95.577545065993689, 29.967223232530763 ], [ -95.577674066216517, 29.967217232087904 ], [ -95.577770065674741, 29.967217231884948 ], [ -95.578062066155297, 29.967201232088968 ], [ -95.578297066335523, 29.967189232475466 ], [ -95.578388065918375, 29.967185232445356 ], [ -95.578510065567485, 29.967182232537841 ], [ -95.580219066410535, 29.967100231964036 ], [ -95.582514066653047, 29.966993231747018 ], [ -95.582909067439971, 29.966983231904621 ], [ -95.583325067749627, 29.966967231599757 ], [ -95.58390506712793, 29.966944232172484 ], [ -95.584009067351829, 29.966934232145238 ], [ -95.58421606777253, 29.966932232308793 ], [ -95.584945067886125, 29.966881232246724 ], [ -95.585040067289768, 29.966879232040146 ], [ -95.585091067538528, 29.966849231934109 ], [ -95.585204067609581, 29.966838231481013 ], [ -95.58522806806107, 29.966629231691911 ], [ -95.585248068185649, 29.966231231913039 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 790, "Tract": "48201552702", "Area_SqMi": 1.1181119534621871, "total_2009": 1242, "total_2010": 1287, "total_2011": 1203, "total_2012": 1457, "total_2013": 1471, "total_2014": 1841, "total_2015": 2342, "total_2016": 3466, "total_2017": 3384, "total_2018": 3719, "total_2019": 3673, "total_2020": 2020, "age1": 444, "age2": 1106, "age3": 455, "earn1": 265, "earn2": 447, "earn3": 1293, "naics_s01": 0, "naics_s02": 101, "naics_s03": 7, "naics_s04": 162, "naics_s05": 141, "naics_s06": 93, "naics_s07": 255, "naics_s08": 54, "naics_s09": 8, "naics_s10": 272, "naics_s11": 54, "naics_s12": 437, "naics_s13": 20, "naics_s14": 43, "naics_s15": 0, "naics_s16": 53, "naics_s17": 26, "naics_s18": 243, "naics_s19": 36, "naics_s20": 0, "race1": 1506, "race2": 265, "race3": 15, "race4": 190, "race5": 2, "race6": 27, "ethnicity1": 1490, "ethnicity2": 515, "edu1": 259, "edu2": 354, "edu3": 484, "edu4": 464, "Shape_Length": 29694.623855273639, "Shape_Area": 31171047.594791949, "total_2021": 1971, "total_2022": 2005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.570020064451924, 29.985825236393502 ], [ -95.570087065171549, 29.985771236322115 ], [ -95.569571064755763, 29.984971236510045 ], [ -95.569024064731565, 29.984122235919276 ], [ -95.568561063831226, 29.983457235895408 ], [ -95.568502064119599, 29.983371235585949 ], [ -95.56828206409871, 29.983095235334201 ], [ -95.567955064451283, 29.982685236069113 ], [ -95.567300063525565, 29.981672235138344 ], [ -95.567073063983557, 29.981287235877886 ], [ -95.566699063727171, 29.980629235223766 ], [ -95.56625006299555, 29.97978923539322 ], [ -95.565713063692144, 29.978853234535524 ], [ -95.565445062764297, 29.978194235007841 ], [ -95.564772062866254, 29.977129234950144 ], [ -95.563369062856395, 29.974517234160739 ], [ -95.563172062476298, 29.974184234458935 ], [ -95.56286406242782, 29.973579234344278 ], [ -95.562577061785532, 29.973132233498351 ], [ -95.56214606231481, 29.972571233544983 ], [ -95.562013062226185, 29.97238323396865 ], [ -95.561685062035821, 29.971915233661264 ], [ -95.56095106176943, 29.971090233447665 ], [ -95.56065406206811, 29.970787233626602 ], [ -95.560317061611755, 29.970450233338447 ], [ -95.559998060996591, 29.970152233554181 ], [ -95.559381061320039, 29.969655232907307 ], [ -95.558305060986825, 29.968839233070451 ], [ -95.558105060522777, 29.968698233117752 ], [ -95.557461060276552, 29.968278233504222 ], [ -95.556962060501036, 29.967985233427164 ], [ -95.556648060836764, 29.967770232992052 ], [ -95.556597060137847, 29.967831232810195 ], [ -95.556555060423818, 29.967887233065706 ], [ -95.556472060282601, 29.967983233230711 ], [ -95.556391060250348, 29.968097233031965 ], [ -95.55630806051245, 29.96822523352559 ], [ -95.556271060482842, 29.968323232771564 ], [ -95.55625606019386, 29.968382233201215 ], [ -95.556243060081528, 29.968478233197587 ], [ -95.55624006089505, 29.968584232851661 ], [ -95.556243060716341, 29.968942233338527 ], [ -95.556238060493754, 29.9690692330629 ], [ -95.556246060182701, 29.969195233084008 ], [ -95.556246059929521, 29.96940523354619 ], [ -95.556257060011916, 29.969737233157549 ], [ -95.556261060528541, 29.969855233153694 ], [ -95.556262060299161, 29.970023233136345 ], [ -95.556268060335725, 29.970280233179064 ], [ -95.556281060018648, 29.970647233932965 ], [ -95.556283060378576, 29.970698234042516 ], [ -95.556284060332402, 29.970880233642216 ], [ -95.55628606103177, 29.970951233660315 ], [ -95.556286060512633, 29.970966233349412 ], [ -95.556299060671293, 29.971342233482133 ], [ -95.556325060234798, 29.972135234304734 ], [ -95.556326060895259, 29.972264233522115 ], [ -95.556342061008763, 29.972718234077448 ], [ -95.556343060509775, 29.97309523403861 ], [ -95.556343061002167, 29.973170234310906 ], [ -95.556361060597155, 29.97330923385201 ], [ -95.556364060225761, 29.973395233840499 ], [ -95.556355060727583, 29.973591234627026 ], [ -95.556366060287772, 29.974165234186401 ], [ -95.554380060039236, 29.974205234194937 ], [ -95.554374059938766, 29.974910234497951 ], [ -95.552343059634964, 29.974935234624173 ], [ -95.552334059826833, 29.97500423467574 ], [ -95.55234105971212, 29.975038234326288 ], [ -95.552368059510229, 29.975179234529605 ], [ -95.552382060045971, 29.975611234777507 ], [ -95.552377060120776, 29.97590323442644 ], [ -95.552388059856298, 29.976190234835496 ], [ -95.552379059593946, 29.976337235221202 ], [ -95.552399059906804, 29.976736234583782 ], [ -95.5524120602485, 29.977031235131278 ], [ -95.552421060131664, 29.977381235280749 ], [ -95.552417059405911, 29.977475235528754 ], [ -95.552397059877379, 29.977556235212912 ], [ -95.552360060036278, 29.977624234791218 ], [ -95.552306060170821, 29.977680235200058 ], [ -95.552239059609661, 29.977723235261344 ], [ -95.552068059947317, 29.977735235595631 ], [ -95.551984059593522, 29.977736235175083 ], [ -95.551666059954314, 29.977738234821921 ], [ -95.551022059326741, 29.977733235407378 ], [ -95.550613059555459, 29.977724235363326 ], [ -95.550483058961234, 29.977718235454724 ], [ -95.550235058898565, 29.977716235263212 ], [ -95.550062058811562, 29.977727234874479 ], [ -95.550011059492917, 29.977736235605189 ], [ -95.549967059575422, 29.977763235428732 ], [ -95.549915059015632, 29.977812235451072 ], [ -95.549907059552012, 29.978797235718464 ], [ -95.54989305902663, 29.979329235321625 ], [ -95.549855058749984, 29.979375235646994 ], [ -95.549829059610644, 29.979411235212119 ], [ -95.549791059213234, 29.979424236033694 ], [ -95.548460059382222, 29.979458236116326 ], [ -95.546190058598569, 29.979462235993335 ], [ -95.546012058678457, 29.97946123588763 ], [ -95.54602205855582, 29.979478235620793 ], [ -95.546620057983276, 29.980513235836955 ], [ -95.547106058864927, 29.981355235709241 ], [ -95.547936059175328, 29.982793236612295 ], [ -95.548597059238901, 29.983960236362769 ], [ -95.551016060104928, 29.988235237599898 ], [ -95.552123060283137, 29.990190237577909 ], [ -95.552189060555207, 29.990307238175287 ], [ -95.552471060362222, 29.990804237422061 ], [ -95.553538060285774, 29.992687238586726 ], [ -95.553568060867207, 29.992675238100595 ], [ -95.55360006126088, 29.992383238026829 ], [ -95.553631061145765, 29.992262237850394 ], [ -95.553669061036445, 29.992262238119068 ], [ -95.553789061142851, 29.992312238352032 ], [ -95.553884061411878, 29.992306237801035 ], [ -95.553928061279663, 29.99227323830015 ], [ -95.554086060601023, 29.992251237827578 ], [ -95.554269061495617, 29.992295238152188 ], [ -95.554332060789122, 29.992317237682812 ], [ -95.554421061177919, 29.992367238135788 ], [ -95.554604060576665, 29.992526238168889 ], [ -95.554787060845527, 29.992757238530967 ], [ -95.554907061481657, 29.99295023795224 ], [ -95.555014061531679, 29.993059238588408 ], [ -95.555216061478987, 29.993136238560975 ], [ -95.55541206151797, 29.993191237965789 ], [ -95.555570061816113, 29.993180237917354 ], [ -95.555639061599294, 29.993114237978364 ], [ -95.555684061115485, 29.992993238103367 ], [ -95.555702061052131, 29.992829238508403 ], [ -95.55569606160627, 29.992587238259503 ], [ -95.555665061081058, 29.99242223842268 ], [ -95.555595061150385, 29.992279238318474 ], [ -95.555481061210543, 29.992147238346 ], [ -95.555481061604169, 29.992081237972766 ], [ -95.555488061675902, 29.992037238227226 ], [ -95.555538061174985, 29.99197623770965 ], [ -95.555728060940623, 29.991823237512971 ], [ -95.555803060898711, 29.99180123757009 ], [ -95.556454061507779, 29.991773237595766 ], [ -95.557136061429702, 29.991718237555741 ], [ -95.557398061843159, 29.991715238022362 ], [ -95.557597061318859, 29.991713238016388 ], [ -95.558026062181881, 29.99169623781744 ], [ -95.558222062251872, 29.991713238262772 ], [ -95.558311061632907, 29.991674237700956 ], [ -95.558380062170627, 29.991630238030098 ], [ -95.558443061708687, 29.991548237657952 ], [ -95.558456061694727, 29.991465237715893 ], [ -95.558349061773939, 29.991086237289988 ], [ -95.558393061508539, 29.990954237623946 ], [ -95.558532061756495, 29.990811237594464 ], [ -95.55873406161804, 29.990723237801358 ], [ -95.559138061947138, 29.990630237350803 ], [ -95.5594160617661, 29.990591237406125 ], [ -95.560060062822913, 29.990531237486412 ], [ -95.560319062287064, 29.990498237537317 ], [ -95.560489061973556, 29.990410237865554 ], [ -95.560540062335846, 29.990322237737512 ], [ -95.560597062866165, 29.990212237089096 ], [ -95.560540062569004, 29.989926237475917 ], [ -95.560470062205397, 29.989794237558858 ], [ -95.560174062521824, 29.989299237635468 ], [ -95.560066062759262, 29.989046236814602 ], [ -95.559984062228466, 29.988744236772149 ], [ -95.560022062629585, 29.987881237196149 ], [ -95.559971061720745, 29.98752423667495 ], [ -95.559866062318477, 29.987290237149249 ], [ -95.559693061865914, 29.987125237237571 ], [ -95.559512061835918, 29.986841236606317 ], [ -95.559519061886718, 29.98673423718763 ], [ -95.559521062266271, 29.986576237018806 ], [ -95.559628061715046, 29.986449237046138 ], [ -95.559795062379507, 29.986432236989884 ], [ -95.560087062144987, 29.986384236781735 ], [ -95.56041706278684, 29.986384236918603 ], [ -95.560646062649042, 29.986416236747022 ], [ -95.560929062242153, 29.986487236608738 ], [ -95.561079062722058, 29.986471236523407 ], [ -95.561166062259076, 29.986424236821708 ], [ -95.561268062951186, 29.98634523648273 ], [ -95.56133906263004, 29.986209236483173 ], [ -95.561339062006937, 29.986077236521123 ], [ -95.561370062285405, 29.985896236165672 ], [ -95.561370062917945, 29.985668236576153 ], [ -95.561426063005314, 29.985494236579402 ], [ -95.561552062372584, 29.985353236413513 ], [ -95.561835062235943, 29.985258236046754 ], [ -95.562235062789966, 29.985324236226795 ], [ -95.563032062616927, 29.985423236286387 ], [ -95.563291063402204, 29.985406235989441 ], [ -95.564012062639804, 29.985361236449311 ], [ -95.56448606367573, 29.985132235899442 ], [ -95.5647180636537, 29.985028236070455 ], [ -95.564846063177882, 29.984995236236735 ], [ -95.564909063817169, 29.984929236148943 ], [ -95.564928063667821, 29.984857235933823 ], [ -95.564922063541559, 29.984709236383956 ], [ -95.564947063097534, 29.984648236547635 ], [ -95.564998063309858, 29.984610236388509 ], [ -95.565111063092672, 29.984588235726889 ], [ -95.565174062983047, 29.984588235894428 ], [ -95.565326063057782, 29.984610235715305 ], [ -95.565560063349935, 29.984692235848836 ], [ -95.565850063484802, 29.984835236240819 ], [ -95.566040063653858, 29.984917235914743 ], [ -95.566116063954325, 29.984917235893281 ], [ -95.566242063408481, 29.984846236505525 ], [ -95.566526063316118, 29.984577236287269 ], [ -95.566652063455692, 29.984511235804661 ], [ -95.566797063885815, 29.98448923588337 ], [ -95.567037064142838, 29.984576236238048 ], [ -95.567183063940405, 29.984686235996275 ], [ -95.5673720643005, 29.984906236197101 ], [ -95.56756206450369, 29.985159236547815 ], [ -95.568004064407233, 29.985610236669022 ], [ -95.568389064245395, 29.985780236429012 ], [ -95.568667064347224, 29.985824236619472 ], [ -95.569140064796926, 29.985918236246107 ], [ -95.569702064686837, 29.985962236718372 ], [ -95.569848064898309, 29.98593423626038 ], [ -95.569946064285361, 29.985879236379301 ], [ -95.569974064989069, 29.985863236155957 ], [ -95.569996064743407, 29.985845236041811 ], [ -95.570020064451924, 29.985825236393502 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 791, "Tract": "48201552801", "Area_SqMi": 1.3929475937758065, "total_2009": 199, "total_2010": 148, "total_2011": 412, "total_2012": 355, "total_2013": 398, "total_2014": 262, "total_2015": 232, "total_2016": 237, "total_2017": 222, "total_2018": 638, "total_2019": 361, "total_2020": 259, "age1": 51, "age2": 142, "age3": 91, "earn1": 50, "earn2": 122, "earn3": 112, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 8, "naics_s06": 14, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 9, "naics_s12": 38, "naics_s13": 13, "naics_s14": 8, "naics_s15": 0, "naics_s16": 147, "naics_s17": 0, "naics_s18": 19, "naics_s19": 13, "naics_s20": 0, "race1": 188, "race2": 60, "race3": 1, "race4": 31, "race5": 0, "race6": 4, "ethnicity1": 206, "ethnicity2": 78, "edu1": 49, "edu2": 65, "edu3": 76, "edu4": 43, "Shape_Length": 36112.955274487213, "Shape_Area": 38832994.860836156, "total_2021": 235, "total_2022": 284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.55340406032208, 29.992741237991083 ], [ -95.553538060285774, 29.992687238586726 ], [ -95.552471060362222, 29.990804237422061 ], [ -95.552189060555207, 29.990307238175287 ], [ -95.552123060283137, 29.990190237577909 ], [ -95.551016060104928, 29.988235237599898 ], [ -95.548597059238901, 29.983960236362769 ], [ -95.547936059175328, 29.982793236612295 ], [ -95.547106058864927, 29.981355235709241 ], [ -95.546620057983276, 29.980513235836955 ], [ -95.54602205855582, 29.979478235620793 ], [ -95.545195058514366, 29.979556235540862 ], [ -95.545001057894282, 29.979688235781062 ], [ -95.544845057818861, 29.979853235460478 ], [ -95.544654058052259, 29.980077235779689 ], [ -95.544555057688427, 29.980006236358719 ], [ -95.544465057506329, 29.979955235478286 ], [ -95.544371058123417, 29.979894235925428 ], [ -95.544173058338686, 29.979780235908198 ], [ -95.543865057601522, 29.97962723632698 ], [ -95.543759058110524, 29.979588236163881 ], [ -95.543659057261294, 29.979545235798405 ], [ -95.543460057447675, 29.979472235878482 ], [ -95.542813057514152, 29.979284235468256 ], [ -95.542440057318458, 29.9791442358033 ], [ -95.541619057534092, 29.97881423584553 ], [ -95.54136705687641, 29.9786032358335 ], [ -95.541062057132919, 29.978366235663955 ], [ -95.540876057127221, 29.978195235789421 ], [ -95.540727056644926, 29.978049235732726 ], [ -95.540702056991591, 29.978016235724098 ], [ -95.540624056710428, 29.977944235298718 ], [ -95.540557057132958, 29.977849235638693 ], [ -95.540516056989262, 29.977798236035166 ], [ -95.540489056606731, 29.977765235887198 ], [ -95.540428056575792, 29.977697235693022 ], [ -95.540340056464032, 29.977741235972307 ], [ -95.540301056768314, 29.977762235801467 ], [ -95.540277056575633, 29.977775235406565 ], [ -95.540145056311175, 29.977858235468506 ], [ -95.539095056858258, 29.978407235950737 ], [ -95.538895056681937, 29.978513236131718 ], [ -95.537618055809787, 29.979233236038365 ], [ -95.537527056431699, 29.97928523605156 ], [ -95.537385056291896, 29.97908223614067 ], [ -95.537232055726818, 29.978883235984856 ], [ -95.537210055664232, 29.978847235809919 ], [ -95.536766055393556, 29.978241236014977 ], [ -95.536311055611606, 29.977618236173296 ], [ -95.536169055342015, 29.977394235631966 ], [ -95.536108055602682, 29.977265235270362 ], [ -95.536066055504193, 29.977123236093156 ], [ -95.536053055265825, 29.977049236024424 ], [ -95.536019055981853, 29.976719235558814 ], [ -95.535974055976567, 29.976496235739052 ], [ -95.535944055498945, 29.976396235540999 ], [ -95.535884055829001, 29.976266235491376 ], [ -95.535801055316682, 29.976126235529634 ], [ -95.535604055295465, 29.975850235570288 ], [ -95.535121054910277, 29.975187234971472 ], [ -95.534655055601007, 29.974558234803865 ], [ -95.534615055100517, 29.974583235336333 ], [ -95.534582055558047, 29.974603234881471 ], [ -95.534526054609913, 29.974633235184289 ], [ -95.534461055144519, 29.97466923547292 ], [ -95.534382055025773, 29.974704235400242 ], [ -95.534297055268112, 29.974750235275582 ], [ -95.534213055064797, 29.974804235077201 ], [ -95.534117054598056, 29.974855235464506 ], [ -95.534028054738499, 29.974912235318676 ], [ -95.533923054586666, 29.974963235252581 ], [ -95.533718055174475, 29.97507323525145 ], [ -95.533611055054095, 29.975125235717801 ], [ -95.533518054402379, 29.975184234953396 ], [ -95.53331905501669, 29.975291235667154 ], [ -95.533182054979179, 29.975352235259621 ], [ -95.533022055279403, 29.975424235318805 ], [ -95.532924054824079, 29.97546123586563 ], [ -95.532664054933534, 29.975581235389601 ], [ -95.532523055044848, 29.975660235650075 ], [ -95.532395054128955, 29.975732235350904 ], [ -95.532315054100252, 29.975760235936697 ], [ -95.53226505491935, 29.975787235823073 ], [ -95.532213054686309, 29.975827235143853 ], [ -95.532317054338307, 29.975936235884024 ], [ -95.53234605473844, 29.975999235702968 ], [ -95.532419054819954, 29.976119235146108 ], [ -95.532420055011528, 29.976189235209532 ], [ -95.532375054579589, 29.976266235565884 ], [ -95.532300054235606, 29.976309235946047 ], [ -95.532178055082014, 29.976368235508243 ], [ -95.532105054236311, 29.976410235924032 ], [ -95.531991055044259, 29.976476235530548 ], [ -95.531624053986278, 29.976710235865156 ], [ -95.530959054517027, 29.977202235480583 ], [ -95.530660054071276, 29.977430235850566 ], [ -95.530549054455435, 29.977524236284161 ], [ -95.530415053909749, 29.97761723622952 ], [ -95.530331053809249, 29.9776582357952 ], [ -95.530201054605783, 29.977751236019561 ], [ -95.529719054508732, 29.978010235944243 ], [ -95.529647053572717, 29.978040235990722 ], [ -95.529542054293429, 29.978075236406323 ], [ -95.529505054217694, 29.978035236079862 ], [ -95.529246054030466, 29.977697236297359 ], [ -95.529198053543226, 29.977629235530081 ], [ -95.529128053599862, 29.977512236188023 ], [ -95.528981054204934, 29.977314235882638 ], [ -95.52890205370899, 29.977354235579842 ], [ -95.528817053650144, 29.977413236254456 ], [ -95.528638054186118, 29.97750823574658 ], [ -95.528396053477707, 29.977627235704556 ], [ -95.530174054675726, 29.980067236420339 ], [ -95.53048205383763, 29.980484236912595 ], [ -95.531034054741497, 29.981248236446877 ], [ -95.531256054544968, 29.98159523703869 ], [ -95.531426054609483, 29.981885236575629 ], [ -95.53127105458492, 29.981946236979145 ], [ -95.53087605423579, 29.982158236924253 ], [ -95.530788054115618, 29.982201236456156 ], [ -95.53069905482225, 29.982255236766836 ], [ -95.530607054154018, 29.982302236805761 ], [ -95.530516054023977, 29.982342237058639 ], [ -95.530423054928406, 29.982390236496023 ], [ -95.530230054559524, 29.98247323693818 ], [ -95.530067054153207, 29.982525237391382 ], [ -95.529943053988774, 29.982562236530747 ], [ -95.529854054498259, 29.982595237192168 ], [ -95.529752054661614, 29.982617237157669 ], [ -95.529141053623448, 29.982800237159701 ], [ -95.528876054446215, 29.982917237505109 ], [ -95.528630053709691, 29.983055237411172 ], [ -95.528394053541291, 29.983198237467263 ], [ -95.528175053648184, 29.983350237430788 ], [ -95.527951053721566, 29.983512237281108 ], [ -95.527872053949025, 29.983560237687442 ], [ -95.527796053577859, 29.983619237545224 ], [ -95.527549053267066, 29.98378923723223 ], [ -95.527459053408975, 29.983843237556258 ], [ -95.527391053523232, 29.983903237407244 ], [ -95.527297053311841, 29.983954236953 ], [ -95.527148053354665, 29.984057237124873 ], [ -95.526961053652656, 29.984169237760867 ], [ -95.526914053962756, 29.984190237211354 ], [ -95.526664053479635, 29.984279237264975 ], [ -95.526513053326767, 29.984309237825666 ], [ -95.526346053519902, 29.984328237299721 ], [ -95.525709053698137, 29.984328237504574 ], [ -95.525521053650252, 29.984335237329145 ], [ -95.525338052803917, 29.98435423768462 ], [ -95.525072053176316, 29.98439123741592 ], [ -95.524721052931284, 29.98446823754378 ], [ -95.524291052771531, 29.984575237933971 ], [ -95.524220053201489, 29.984604237568973 ], [ -95.524140052688537, 29.984625237632532 ], [ -95.524028053412508, 29.984675237497761 ], [ -95.523966052671057, 29.984715237522376 ], [ -95.523844053285927, 29.984764237408267 ], [ -95.523722053152312, 29.984820237472469 ], [ -95.523632052912617, 29.984866237637043 ], [ -95.523538053000422, 29.984918237366347 ], [ -95.523427053214803, 29.984980237866644 ], [ -95.523392053086326, 29.984998237916656 ], [ -95.523129052744309, 29.985137237439652 ], [ -95.523058052257099, 29.985183238096951 ], [ -95.522975052840735, 29.985228237612755 ], [ -95.52288705248165, 29.985266238170748 ], [ -95.522529052850629, 29.985467237407295 ], [ -95.522067052146767, 29.985714237839485 ], [ -95.521971052803892, 29.985769238104147 ], [ -95.521655052635609, 29.985946237662692 ], [ -95.521507052405653, 29.986043238404086 ], [ -95.521379052339753, 29.986151237612411 ], [ -95.521320051830983, 29.986210238269376 ], [ -95.521112052603854, 29.986452237886937 ], [ -95.521072052471411, 29.986514237926912 ], [ -95.521020052031744, 29.986570238229682 ], [ -95.520911051948147, 29.986664238456903 ], [ -95.520823052502237, 29.986730238044164 ], [ -95.520721052473718, 29.98678423809195 ], [ -95.5206750521575, 29.986819238441392 ], [ -95.520549052184975, 29.986887238199888 ], [ -95.520393052279573, 29.986974238553369 ], [ -95.519982052199154, 29.98719223789438 ], [ -95.519837051843979, 29.987273238053657 ], [ -95.520088052048422, 29.987621238623614 ], [ -95.520148052040639, 29.987712238452588 ], [ -95.520376052173987, 29.988013238811952 ], [ -95.520509051791379, 29.988189237990937 ], [ -95.52062205236858, 29.988327238059817 ], [ -95.520888052604846, 29.988613238288622 ], [ -95.521168052195648, 29.988887238988156 ], [ -95.521367052909142, 29.989059238890174 ], [ -95.521492052787096, 29.989140238697875 ], [ -95.521692052733002, 29.989305238384727 ], [ -95.521797052384912, 29.989383238775005 ], [ -95.522014052310695, 29.989524238519248 ], [ -95.522356052810693, 29.989718238379059 ], [ -95.523016052859376, 29.990053239074214 ], [ -95.523299052649676, 29.990202238771612 ], [ -95.523562052664829, 29.990355238422154 ], [ -95.52377605278032, 29.990506239158453 ], [ -95.523877052865174, 29.990582238915071 ], [ -95.523921052803161, 29.990618239231988 ], [ -95.523941053639078, 29.990634238557547 ], [ -95.524142053594716, 29.990798238509509 ], [ -95.524391052907191, 29.991019238853685 ], [ -95.524521052982067, 29.99114523874935 ], [ -95.524662053865001, 29.991293238848655 ], [ -95.524805053747855, 29.991464239101408 ], [ -95.525033053141911, 29.991753239101641 ], [ -95.525482053276946, 29.992365239505599 ], [ -95.525541053837941, 29.992454239524204 ], [ -95.525643054109139, 29.992590239046052 ], [ -95.526056054103933, 29.993154239059404 ], [ -95.526122053408258, 29.993267239338429 ], [ -95.526295054185354, 29.993485239355913 ], [ -95.526382053847513, 29.993585239635046 ], [ -95.526492054325146, 29.993751239807807 ], [ -95.526673053728317, 29.993987239235675 ], [ -95.526901054046149, 29.994304239366834 ], [ -95.527087053835203, 29.994525239584501 ], [ -95.527151054584621, 29.994589239797108 ], [ -95.527262053937946, 29.994712239886972 ], [ -95.52732405466422, 29.994775239703845 ], [ -95.527397054644467, 29.994836239474392 ], [ -95.527627054422211, 29.995061239329427 ], [ -95.527718053868867, 29.995118239252214 ], [ -95.527911054493259, 29.995273239684121 ], [ -95.527974054417953, 29.995325239297795 ], [ -95.528275054972724, 29.995538239666825 ], [ -95.528364054618251, 29.995611239499969 ], [ -95.528479054272751, 29.995680239590715 ], [ -95.52857805425846, 29.995745239291331 ], [ -95.528661055061889, 29.995821240133303 ], [ -95.528846054933766, 29.995951239869189 ], [ -95.528893054870153, 29.995990239309755 ], [ -95.529056054896941, 29.996126239954236 ], [ -95.529281054877032, 29.996323240012785 ], [ -95.529379054888437, 29.996420239736135 ], [ -95.529585054635135, 29.996634239935933 ], [ -95.529817055011549, 29.996902240252624 ], [ -95.529909055345186, 29.997024239825155 ], [ -95.529990055021088, 29.997127239626455 ], [ -95.530043055164541, 29.997206239902376 ], [ -95.530108055535933, 29.997284239634631 ], [ -95.530334055541672, 29.997615239720361 ], [ -95.530636055182413, 29.998076240521073 ], [ -95.530711055317497, 29.998038240244171 ], [ -95.530731055060869, 29.998018239787548 ], [ -95.530970055206126, 29.997774239777812 ], [ -95.531375055485, 29.99725823962687 ], [ -95.531646055501199, 29.997021240100224 ], [ -95.532227055021096, 29.99667024004847 ], [ -95.532398056075721, 29.99657623947612 ], [ -95.532587056103623, 29.99644423979537 ], [ -95.53268205513649, 29.996279240007713 ], [ -95.53270105544938, 29.996054239174224 ], [ -95.532644055349451, 29.995889239966395 ], [ -95.532417055064116, 29.99559223987913 ], [ -95.532335055215626, 29.995356239544691 ], [ -95.532215055075753, 29.995218239250139 ], [ -95.532108054956439, 29.995169239397054 ], [ -95.532007055436992, 29.994943239628984 ], [ -95.53197505537436, 29.994740239630456 ], [ -95.53197505500809, 29.994597239573736 ], [ -95.532114055254368, 29.994465239320569 ], [ -95.532247055104435, 29.994394238876087 ], [ -95.532581055724691, 29.99433323888135 ], [ -95.532815055493643, 29.994328239292656 ], [ -95.533156055308083, 29.994361238909129 ], [ -95.533529056017244, 29.994416239433178 ], [ -95.533655055845443, 29.994438239192426 ], [ -95.533781056162738, 29.994476239449572 ], [ -95.533958055364423, 29.994465239636106 ], [ -95.534091055853324, 29.994432238850589 ], [ -95.534217055847932, 29.994333238933542 ], [ -95.534369055477924, 29.994196239511059 ], [ -95.534489056245064, 29.994070238774206 ], [ -95.53464005555405, 29.993740239338557 ], [ -95.53488705655333, 29.993295239050532 ], [ -95.535234055727145, 29.992882238658797 ], [ -95.535316056516379, 29.992827238924146 ], [ -95.53541805638784, 29.992772238742667 ], [ -95.535474056009889, 29.992756238505056 ], [ -95.535531055880057, 29.992756238477899 ], [ -95.535695056316385, 29.992772238845017 ], [ -95.535733056737911, 29.992767238590478 ], [ -95.536106056266036, 29.992893239271339 ], [ -95.53634605671958, 29.992921238890421 ], [ -95.536504056316119, 29.992910238638224 ], [ -95.536617056849892, 29.99287223846493 ], [ -95.536845056565099, 29.992696238673521 ], [ -95.537060056125, 29.992492238931867 ], [ -95.537123056832229, 29.99233823912413 ], [ -95.537224056412228, 29.992195238275134 ], [ -95.537533056263342, 29.991822238657363 ], [ -95.537912057098453, 29.991459238876377 ], [ -95.53831205683035, 29.9911072381426 ], [ -95.53848905689614, 29.991041238575974 ], [ -95.538663056714498, 29.990968238817491 ], [ -95.538828056464453, 29.9909452380506 ], [ -95.538974057130616, 29.99096823843113 ], [ -95.539218057218321, 29.991066238550669 ], [ -95.539421056774245, 29.991117238775448 ], [ -95.539583057003327, 29.991104238695868 ], [ -95.539760057111764, 29.991047238717297 ], [ -95.539960057357192, 29.990961238755855 ], [ -95.540169057167589, 29.990847238223363 ], [ -95.540353057234199, 29.9906922381237 ], [ -95.540483057814654, 29.990514237793491 ], [ -95.540550057746614, 29.990320237759715 ], [ -95.540618057513839, 29.99007823816584 ], [ -95.540664057244499, 29.989978237731126 ], [ -95.540903057783069, 29.989462238190324 ], [ -95.541153057067447, 29.989276237885601 ], [ -95.541282058004128, 29.989268238213086 ], [ -95.541294057294607, 29.989268237636157 ], [ -95.541717058016488, 29.989245237846944 ], [ -95.542005057560004, 29.989230237980429 ], [ -95.542273058198333, 29.989119238011657 ], [ -95.542279058248184, 29.989110237803093 ], [ -95.542587057434957, 29.988602237552662 ], [ -95.542778058335188, 29.988425237597706 ], [ -95.542893058187047, 29.988360237593859 ], [ -95.542974058174281, 29.988315237698735 ], [ -95.543305057929899, 29.988180238072935 ], [ -95.544313058049724, 29.987828237861251 ], [ -95.544384057957785, 29.9878032378166 ], [ -95.544448058224248, 29.987762237557693 ], [ -95.544460058583539, 29.987755237370312 ], [ -95.545042058664052, 29.98737923784952 ], [ -95.545526058994255, 29.987142237731458 ], [ -95.545572058023708, 29.987134237291261 ], [ -95.545623058329582, 29.987125237266973 ], [ -95.545687058353977, 29.987113237510002 ], [ -95.545878058159801, 29.987168237392055 ], [ -95.545888058123637, 29.987179237751405 ], [ -95.545958058443759, 29.987194237044466 ], [ -95.546471059039931, 29.987396237558379 ], [ -95.546612058993205, 29.987475237723139 ], [ -95.546858058439355, 29.987612237249248 ], [ -95.54717105925792, 29.987787237214089 ], [ -95.547515059472801, 29.988003237813817 ], [ -95.547825059344021, 29.988274237442234 ], [ -95.547960058863296, 29.988442237647995 ], [ -95.548017059689016, 29.988607237497469 ], [ -95.548137059234335, 29.988848237287122 ], [ -95.54838905957574, 29.989228237931336 ], [ -95.548768058996032, 29.98961323793554 ], [ -95.548914059898024, 29.989772237787726 ], [ -95.548952060000303, 29.989816237376896 ], [ -95.548999059737156, 29.989890238203365 ], [ -95.549299059940509, 29.990366237939892 ], [ -95.549426059211186, 29.99062423802425 ], [ -95.549469059748319, 29.990712238386269 ], [ -95.549520059699901, 29.990883237754883 ], [ -95.549520060111988, 29.991080238354279 ], [ -95.549494059321503, 29.991197237872289 ], [ -95.549457059985102, 29.991372238452236 ], [ -95.549448059408888, 29.991403238460382 ], [ -95.549358059281388, 29.991712237705119 ], [ -95.549292059945088, 29.99193823776098 ], [ -95.5492990594133, 29.992224237981546 ], [ -95.549318059546593, 29.992293238418775 ], [ -95.549356059921109, 29.99243123837843 ], [ -95.549389059596081, 29.992549238223049 ], [ -95.549400060106876, 29.992587238739485 ], [ -95.549551059392471, 29.992801237932923 ], [ -95.549615060088826, 29.992960238533094 ], [ -95.549665059633938, 29.993048238013714 ], [ -95.549772059422182, 29.993114238775608 ], [ -95.550574060503195, 29.993219238618821 ], [ -95.550631059704401, 29.993220238513551 ], [ -95.550871060359995, 29.993224238328196 ], [ -95.551200060072119, 29.993169238386063 ], [ -95.551496059843089, 29.993048238367138 ], [ -95.55161006030059, 29.99289523848131 ], [ -95.55169906021321, 29.992741238342763 ], [ -95.551699060240054, 29.992620237850339 ], [ -95.55171106029205, 29.992581238639072 ], [ -95.551793060409622, 29.992543238662815 ], [ -95.551850060580946, 29.992548238210667 ], [ -95.552393060083858, 29.992807238569846 ], [ -95.552646060878857, 29.992862238497878 ], [ -95.552873061095823, 29.992862238507644 ], [ -95.55340406032208, 29.992741237991083 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 792, "Tract": "48201554807", "Area_SqMi": 2.212585839992788, "total_2009": 589, "total_2010": 832, "total_2011": 763, "total_2012": 618, "total_2013": 720, "total_2014": 878, "total_2015": 835, "total_2016": 869, "total_2017": 905, "total_2018": 1061, "total_2019": 1101, "total_2020": 1271, "age1": 532, "age2": 725, "age3": 281, "earn1": 291, "earn2": 515, "earn3": 732, "naics_s01": 121, "naics_s02": 0, "naics_s03": 0, "naics_s04": 93, "naics_s05": 99, "naics_s06": 16, "naics_s07": 405, "naics_s08": 15, "naics_s09": 65, "naics_s10": 4, "naics_s11": 89, "naics_s12": 85, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 110, "naics_s17": 0, "naics_s18": 398, "naics_s19": 23, "naics_s20": 0, "race1": 1200, "race2": 213, "race3": 12, "race4": 80, "race5": 2, "race6": 31, "ethnicity1": 1021, "ethnicity2": 517, "edu1": 265, "edu2": 266, "edu3": 275, "edu4": 200, "Shape_Length": 38844.450501909567, "Shape_Area": 61683106.34048716, "total_2021": 1385, "total_2022": 1538 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.614525079243776, 30.051724247996511 ], [ -95.614506078776046, 30.051683247837786 ], [ -95.614368079290998, 30.051387248044801 ], [ -95.61431107914234, 30.051266248394398 ], [ -95.614244079027117, 30.051124247750653 ], [ -95.613481078309718, 30.04989524788067 ], [ -95.613266078638389, 30.049581247692888 ], [ -95.612655078499813, 30.048689247719263 ], [ -95.612471078892852, 30.048374247557916 ], [ -95.612263077865606, 30.047972247755919 ], [ -95.611739077793544, 30.047175247003874 ], [ -95.61079907764919, 30.045876246987223 ], [ -95.610268077908415, 30.04514124693527 ], [ -95.610094077919797, 30.044993246873915 ], [ -95.609922077344308, 30.044846246462807 ], [ -95.609876077715171, 30.044807246692855 ], [ -95.609909077642442, 30.044777247010622 ], [ -95.609918077988638, 30.04476924661293 ], [ -95.608219076824369, 30.042761246657488 ], [ -95.607632077389582, 30.042144246402849 ], [ -95.60686107671161, 30.041336245848591 ], [ -95.606120076636017, 30.040558246291845 ], [ -95.606046075975712, 30.040344245815827 ], [ -95.605551075965252, 30.039520245748463 ], [ -95.605524076621563, 30.039477245899988 ], [ -95.605322076080157, 30.039175245856072 ], [ -95.604720076146634, 30.038014246054548 ], [ -95.604655075737369, 30.037874245691551 ], [ -95.604508075391465, 30.037558245631612 ], [ -95.604453075467021, 30.0374392452165 ], [ -95.604381076019322, 30.037299245614655 ], [ -95.604024075270857, 30.036704245483335 ], [ -95.603933076031097, 30.036535245408626 ], [ -95.603894075614008, 30.03648124504123 ], [ -95.60379107550618, 30.036289245578963 ], [ -95.603394075647159, 30.035550245172885 ], [ -95.602836074841193, 30.034511245228018 ], [ -95.602733075412416, 30.034320244739348 ], [ -95.602553075280539, 30.03400724510254 ], [ -95.602210075019386, 30.033406244443842 ], [ -95.601962074541504, 30.032952244482168 ], [ -95.601861074982423, 30.0327662450071 ], [ -95.601672074683677, 30.032434244472764 ], [ -95.601007074565473, 30.031268244365467 ], [ -95.600240074978174, 30.029848243867967 ], [ -95.59995007421989, 30.02930624429553 ], [ -95.599905074235778, 30.029211243761328 ], [ -95.599579073857342, 30.028550243586526 ], [ -95.599431073791123, 30.028273243712118 ], [ -95.599187074038483, 30.027848243912825 ], [ -95.599170073643521, 30.027802243699703 ], [ -95.59908107401111, 30.027587243528924 ], [ -95.598483074160555, 30.026588243453546 ], [ -95.598117073378504, 30.025977243674834 ], [ -95.596763073647324, 30.023735242836686 ], [ -95.595106072461334, 30.021099242889168 ], [ -95.594050072638908, 30.019336242434534 ], [ -95.593948071860765, 30.019165241802437 ], [ -95.59319607206406, 30.018055241823021 ], [ -95.592820072024011, 30.017500242185786 ], [ -95.592683072324704, 30.017296242200668 ], [ -95.591973071753245, 30.016194241447334 ], [ -95.590275071515464, 30.013550241156462 ], [ -95.590030071182881, 30.013100240819536 ], [ -95.589625070641361, 30.013123240684905 ], [ -95.589348070686981, 30.013133241431238 ], [ -95.58897207055449, 30.013149240787904 ], [ -95.588821070753056, 30.013177241267403 ], [ -95.588629070276241, 30.013224241425316 ], [ -95.588320071126034, 30.013322241329874 ], [ -95.58793607024846, 30.013460241636491 ], [ -95.587644070919723, 30.013580241642945 ], [ -95.587414070451999, 30.013690241708819 ], [ -95.587300070157127, 30.013741241205857 ], [ -95.587162070783819, 30.013801241224801 ], [ -95.586957070191019, 30.013890241655368 ], [ -95.586724069902303, 30.013986241727139 ], [ -95.586608070511801, 30.014034241250599 ], [ -95.586431069781014, 30.014112241807315 ], [ -95.586151069833917, 30.014232241172778 ], [ -95.585843069898019, 30.014364241619557 ], [ -95.585615070433221, 30.014440241086646 ], [ -95.585607069767164, 30.014523241385092 ], [ -95.585614069689456, 30.014751241888472 ], [ -95.585625069593831, 30.01508324205313 ], [ -95.585639070131137, 30.01580724215945 ], [ -95.585634069924737, 30.015895242045342 ], [ -95.585645070009122, 30.016084241439572 ], [ -95.585663070537109, 30.016242242206239 ], [ -95.585647069783249, 30.016939241741849 ], [ -95.585659070290163, 30.017090242384626 ], [ -95.585656069969133, 30.017393242480672 ], [ -95.585662070273514, 30.017599242242483 ], [ -95.585663070384882, 30.017817242370516 ], [ -95.585672070328144, 30.018084242612645 ], [ -95.585666069720077, 30.018224242222512 ], [ -95.585689070505865, 30.018475242372187 ], [ -95.585700070590349, 30.019151242168022 ], [ -95.585703070444467, 30.019366242401066 ], [ -95.585719070144293, 30.019577242587026 ], [ -95.585706070663534, 30.019847242302564 ], [ -95.585720070365198, 30.019989242892965 ], [ -95.58572307064027, 30.020234242633919 ], [ -95.585743070453915, 30.021523242639347 ], [ -95.585753070807414, 30.02217824302976 ], [ -95.585759070684873, 30.022302243001509 ], [ -95.585757070384247, 30.022557242864952 ], [ -95.585765070313371, 30.022846242808068 ], [ -95.585768070429197, 30.022954243002296 ], [ -95.585780070956247, 30.023386243736457 ], [ -95.58578807076232, 30.023504242940017 ], [ -95.585788070717527, 30.023749243738493 ], [ -95.585798070410391, 30.024103243841815 ], [ -95.585796070971028, 30.024322243956693 ], [ -95.585810070031954, 30.024527243349684 ], [ -95.585815070894355, 30.024793243264053 ], [ -95.585810070895178, 30.025043243318812 ], [ -95.58581407011917, 30.02517324384284 ], [ -95.585812070287332, 30.025241243599549 ], [ -95.585804070151696, 30.025301243302494 ], [ -95.585806070328317, 30.025325243914928 ], [ -95.585824070137491, 30.025538243913996 ], [ -95.585833070273722, 30.025830243715664 ], [ -95.585846070403221, 30.025926244115453 ], [ -95.585854070847873, 30.026074243618396 ], [ -95.585870070752918, 30.02622624426321 ], [ -95.585925070753447, 30.026527244155659 ], [ -95.585933070707355, 30.026640244046241 ], [ -95.585968071099018, 30.026838244274053 ], [ -95.586150071013051, 30.027817243969334 ], [ -95.586209070967726, 30.02809024462309 ], [ -95.586249070532375, 30.028243244741947 ], [ -95.586303070887737, 30.028518244656702 ], [ -95.586355071030141, 30.028755244675107 ], [ -95.586376070349502, 30.028876244457461 ], [ -95.586432070476846, 30.029107244870442 ], [ -95.586556071462653, 30.029738244667843 ], [ -95.586582071016494, 30.029976244613511 ], [ -95.586679070705941, 30.030338244532313 ], [ -95.586706071032751, 30.030543245062951 ], [ -95.586764071531505, 30.030806244892212 ], [ -95.586776071282245, 30.030896244780958 ], [ -95.586800071564696, 30.030993244522982 ], [ -95.586815071239059, 30.031097244949873 ], [ -95.586875071600758, 30.031376245100461 ], [ -95.586917071042521, 30.031602244948129 ], [ -95.586976071591124, 30.031923245325462 ], [ -95.586995071138162, 30.032007245080592 ], [ -95.587125071574576, 30.032652245320609 ], [ -95.587169071273692, 30.032839244805167 ], [ -95.587174071055003, 30.032856245617836 ], [ -95.58717907154967, 30.032874245556332 ], [ -95.58726407127844, 30.033173245066934 ], [ -95.587364070847897, 30.033556245427118 ], [ -95.587438071297143, 30.033811245617528 ], [ -95.587579071667051, 30.034321245797013 ], [ -95.587595071082205, 30.034379245637883 ], [ -95.587980071314746, 30.035760245633458 ], [ -95.588226071311979, 30.036674245560391 ], [ -95.588341071859745, 30.03691324596085 ], [ -95.588472071381787, 30.037255246261022 ], [ -95.588556072012352, 30.037485246309195 ], [ -95.588771071428425, 30.037999246533243 ], [ -95.588905071979198, 30.038294246187156 ], [ -95.589019071645765, 30.038515246400294 ], [ -95.589242071745971, 30.038823246658353 ], [ -95.589319071690213, 30.038934246101064 ], [ -95.589507071676266, 30.039168246814086 ], [ -95.589660072402353, 30.039341246632553 ], [ -95.589994072626695, 30.03972024611847 ], [ -95.590216072577491, 30.040020246121369 ], [ -95.590323072004452, 30.04021824678339 ], [ -95.590848073005958, 30.041183246490359 ], [ -95.590913072200777, 30.04138224692468 ], [ -95.591037073089865, 30.04179424720974 ], [ -95.591097072172232, 30.042130246962529 ], [ -95.591117072967251, 30.042253246958783 ], [ -95.591144073011449, 30.04241524693251 ], [ -95.591163073129181, 30.042882247058404 ], [ -95.591177072617086, 30.043269247044631 ], [ -95.591177072651121, 30.043788247302952 ], [ -95.591153073195471, 30.044329247120551 ], [ -95.591016073187561, 30.04541224784786 ], [ -95.591003072513885, 30.045543247244886 ], [ -95.59098307297954, 30.045643247643227 ], [ -95.590977073312658, 30.045801247858634 ], [ -95.590878072628371, 30.046725248134628 ], [ -95.590840072446156, 30.047216247584334 ], [ -95.590803072934065, 30.047522248066873 ], [ -95.590678072911146, 30.048806248423947 ], [ -95.590652073113091, 30.049051248641707 ], [ -95.590611072620717, 30.049452248830679 ], [ -95.590537073227523, 30.050184248702358 ], [ -95.590459073209686, 30.050984249069167 ], [ -95.592873073612807, 30.050947248603524 ], [ -95.593619073489648, 30.050958248924012 ], [ -95.594276074092647, 30.050979248853981 ], [ -95.594945073744498, 30.051012249056395 ], [ -95.595548074711203, 30.051078248341469 ], [ -95.596644074733746, 30.051210248299199 ], [ -95.597521074661984, 30.051374248353561 ], [ -95.599133075579999, 30.05161524884883 ], [ -95.599900075798274, 30.05170324832433 ], [ -95.600350075506398, 30.051736248508782 ], [ -95.601221075206183, 30.051766248321915 ], [ -95.601929075543225, 30.051791248592849 ], [ -95.604483076265865, 30.051769248614328 ], [ -95.60499507666394, 30.051761248211974 ], [ -95.6067300771671, 30.051736248084932 ], [ -95.613528078445157, 30.051726247967657 ], [ -95.614453079115762, 30.051724248365684 ], [ -95.614486079382885, 30.051724248432151 ], [ -95.614525079243776, 30.051724247996511 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 793, "Tract": "48201532101", "Area_SqMi": 0.45004053607155642, "total_2009": 1402, "total_2010": 1468, "total_2011": 1374, "total_2012": 1149, "total_2013": 1143, "total_2014": 1202, "total_2015": 1198, "total_2016": 1165, "total_2017": 1187, "total_2018": 525, "total_2019": 475, "total_2020": 420, "age1": 93, "age2": 218, "age3": 108, "earn1": 84, "earn2": 151, "earn3": 184, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 103, "naics_s05": 0, "naics_s06": 22, "naics_s07": 31, "naics_s08": 0, "naics_s09": 0, "naics_s10": 16, "naics_s11": 8, "naics_s12": 21, "naics_s13": 0, "naics_s14": 150, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 58, "naics_s19": 1, "naics_s20": 0, "race1": 342, "race2": 38, "race3": 4, "race4": 28, "race5": 0, "race6": 7, "ethnicity1": 237, "ethnicity2": 182, "edu1": 83, "edu2": 85, "edu3": 97, "edu4": 61, "Shape_Length": 16123.447844515022, "Shape_Area": 12546359.893599493, "total_2021": 390, "total_2022": 419 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.485076036434776, 29.850061211361616 ], [ -95.485069036992769, 29.849768211323767 ], [ -95.485062036925029, 29.848921210981256 ], [ -95.485043036908408, 29.84808921150729 ], [ -95.48504403700143, 29.847254211265248 ], [ -95.485034037168688, 29.846828211236975 ], [ -95.485024036860949, 29.846420211116065 ], [ -95.485025036127695, 29.845588210718901 ], [ -95.485005037010353, 29.844775210441071 ], [ -95.485006036145151, 29.843960210412124 ], [ -95.485007036873952, 29.843140209721518 ], [ -95.48500903611297, 29.842312209822932 ], [ -95.484981035951776, 29.841501209508177 ], [ -95.484990036403758, 29.840400209900302 ], [ -95.484830035909425, 29.840374209740194 ], [ -95.48467203634938, 29.840359209694284 ], [ -95.483557036465015, 29.840328209334377 ], [ -95.483171035426636, 29.840339209498104 ], [ -95.482339035347636, 29.840364209921542 ], [ -95.482229035880991, 29.840362210015162 ], [ -95.480711035526937, 29.84035020925117 ], [ -95.479742034745641, 29.840366209629721 ], [ -95.478887034359531, 29.840368209878708 ], [ -95.478153034314872, 29.840357210161727 ], [ -95.476089034575082, 29.840364209559123 ], [ -95.475095033862459, 29.840556210129037 ], [ -95.474745033796836, 29.840669209601085 ], [ -95.47411803338521, 29.840841209614965 ], [ -95.473860033076775, 29.840900210016322 ], [ -95.473202033473797, 29.840960210422374 ], [ -95.471110032868538, 29.840945209930542 ], [ -95.469321032629267, 29.840971210157743 ], [ -95.469070032098841, 29.840960210483562 ], [ -95.467599031682767, 29.840968209840682 ], [ -95.46793903249619, 29.841639210283581 ], [ -95.468304032622598, 29.842303210117535 ], [ -95.468701032748669, 29.8429662108644 ], [ -95.468714031821008, 29.842981210814976 ], [ -95.470138033241753, 29.845449210837106 ], [ -95.470384032936195, 29.845374211234859 ], [ -95.470529032803881, 29.845363210791675 ], [ -95.470636032616028, 29.845402210919424 ], [ -95.471115033251579, 29.845655211309275 ], [ -95.47280603350481, 29.846605211408345 ], [ -95.472938034033263, 29.846649211447417 ], [ -95.473077033711505, 29.846677211453105 ], [ -95.473238033257957, 29.846675210904294 ], [ -95.47353103378795, 29.846671211247905 ], [ -95.474023034177947, 29.846616211601575 ], [ -95.474290033732558, 29.846609211486481 ], [ -95.474548034166872, 29.846603210870398 ], [ -95.475072034351086, 29.846591210795669 ], [ -95.47542303441044, 29.84658221088495 ], [ -95.475549034484715, 29.846599211266518 ], [ -95.475789034193312, 29.846654210764157 ], [ -95.476104034542374, 29.846752210834151 ], [ -95.47669103483986, 29.846994211070136 ], [ -95.477088034213622, 29.847104211386846 ], [ -95.477397035202074, 29.847159211591947 ], [ -95.477656035322781, 29.847186211082054 ], [ -95.478236034772706, 29.84719221158657 ], [ -95.478426035135314, 29.847199210839563 ], [ -95.47866503525492, 29.847208211242528 ], [ -95.478923035322623, 29.847241211502993 ], [ -95.479113035472395, 29.847301211481724 ], [ -95.479296035345612, 29.847400210949932 ], [ -95.479491035167698, 29.847526211038552 ], [ -95.479737035826048, 29.847724210901692 ], [ -95.479838035337778, 29.847790211180257 ], [ -95.480097035823889, 29.847895210988796 ], [ -95.480154035784281, 29.847933211496397 ], [ -95.480248034993664, 29.847966211275843 ], [ -95.480532035101419, 29.848026211027232 ], [ -95.480791035776477, 29.848065211004531 ], [ -95.481018035659119, 29.84811421126642 ], [ -95.481446036115344, 29.848290211443988 ], [ -95.481762035931453, 29.848466211111294 ], [ -95.482008035794706, 29.848581210960745 ], [ -95.482159036458526, 29.848696211616211 ], [ -95.482563036468832, 29.849076211621313 ], [ -95.482702035731677, 29.849246210988756 ], [ -95.48278403606804, 29.849301211435957 ], [ -95.482980036680559, 29.849488211357585 ], [ -95.483339036828141, 29.84973521159522 ], [ -95.483459036614875, 29.849773211602621 ], [ -95.483793036083355, 29.84995521116964 ], [ -95.483901036124365, 29.849982211907069 ], [ -95.484367037073909, 29.850037211851323 ], [ -95.484614036785956, 29.850058211947101 ], [ -95.484815036725749, 29.850075211471211 ], [ -95.484910036606223, 29.850075211909314 ], [ -95.484992036975626, 29.850048211937722 ], [ -95.485076036434776, 29.850061211361616 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 794, "Tract": "48201532504", "Area_SqMi": 1.0387024771256439, "total_2009": 118, "total_2010": 96, "total_2011": 72, "total_2012": 67, "total_2013": 63, "total_2014": 82, "total_2015": 107, "total_2016": 107, "total_2017": 88, "total_2018": 141, "total_2019": 156, "total_2020": 114, "age1": 26, "age2": 70, "age3": 45, "earn1": 31, "earn2": 45, "earn3": 65, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 25, "naics_s06": 20, "naics_s07": 33, "naics_s08": 9, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 6, "naics_s17": 0, "naics_s18": 1, "naics_s19": 15, "naics_s20": 0, "race1": 96, "race2": 14, "race3": 1, "race4": 25, "race5": 0, "race6": 5, "ethnicity1": 84, "ethnicity2": 57, "edu1": 33, "edu2": 32, "edu3": 27, "edu4": 23, "Shape_Length": 34507.341796206798, "Shape_Area": 28957247.305206183, "total_2021": 117, "total_2022": 141 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.524842048419799, 29.885129217644849 ], [ -95.524837048883924, 29.884696217333431 ], [ -95.524804048373994, 29.884015217197536 ], [ -95.524794048409916, 29.883378216744926 ], [ -95.524785047964187, 29.883105217010854 ], [ -95.524784048040999, 29.882880216999506 ], [ -95.524770048349666, 29.882464216525594 ], [ -95.524749048429129, 29.882243216810657 ], [ -95.524700048297916, 29.881210216448284 ], [ -95.524698048027275, 29.88101421611649 ], [ -95.52470204878361, 29.880936216174298 ], [ -95.524689047881992, 29.879910216033839 ], [ -95.524683048601929, 29.879757216497588 ], [ -95.524684047925675, 29.879207216285963 ], [ -95.524689048026303, 29.879113215655622 ], [ -95.52468304870591, 29.879018216135137 ], [ -95.524685048564592, 29.878898216062286 ], [ -95.524704048706582, 29.87724421551675 ], [ -95.524706048317682, 29.877077215250697 ], [ -95.524530048376107, 29.877033215959163 ], [ -95.524209048283524, 29.876928216065906 ], [ -95.524039047880763, 29.876791215219839 ], [ -95.523938047705073, 29.876620215742946 ], [ -95.523849047449659, 29.876433215334121 ], [ -95.523761048410947, 29.876219215165534 ], [ -95.523711047860019, 29.876054215123787 ], [ -95.523654047528808, 29.87592821550243 ], [ -95.523490047775823, 29.875713215073464 ], [ -95.523402048220419, 29.875647215609376 ], [ -95.523238048143568, 29.875576215545554 ], [ -95.523061048126721, 29.87557621530523 ], [ -95.522601047384043, 29.875603215328347 ], [ -95.521837047493534, 29.875625215411667 ], [ -95.521137047011123, 29.875614215454569 ], [ -95.519169046831621, 29.875662215225521 ], [ -95.51899904624895, 29.875706215199731 ], [ -95.518513046506285, 29.876047215589882 ], [ -95.51834904659097, 29.876201216055566 ], [ -95.518185046919186, 29.87630521587873 ], [ -95.518009046314617, 29.876400215593531 ], [ -95.517857046373123, 29.876454215526099 ], [ -95.517611046829913, 29.876514215523493 ], [ -95.517484046072411, 29.876530215508641 ], [ -95.517339046021092, 29.876508216181456 ], [ -95.517313046048372, 29.876497215475109 ], [ -95.517024046005588, 29.876382215701643 ], [ -95.516772045798461, 29.876239216009381 ], [ -95.516532046232058, 29.876156215520169 ], [ -95.516311046426026, 29.87609621612749 ], [ -95.516091045957396, 29.876063215643143 ], [ -95.515927046370621, 29.876090215485558 ], [ -95.515737045414127, 29.876134215465886 ], [ -95.515498046161099, 29.876211216097328 ], [ -95.515308046205803, 29.876332215503176 ], [ -95.515144045523968, 29.876464215767207 ], [ -95.514898045626339, 29.876628215746088 ], [ -95.514620046082584, 29.876755215810309 ], [ -95.514425045517498, 29.876815216271524 ], [ -95.514292045344988, 29.87682121632281 ], [ -95.514191045773813, 29.876837216346328 ], [ -95.514122045787147, 29.876832215646477 ], [ -95.514027045397796, 29.876804216174879 ], [ -95.513863045489273, 29.876732216214599 ], [ -95.513649045794963, 29.87660021601722 ], [ -95.513520045185246, 29.876488215641142 ], [ -95.513504045315145, 29.876474215679412 ], [ -95.513359045747947, 29.87630921558663 ], [ -95.51331504540353, 29.876210215579917 ], [ -95.513302045277939, 29.87618821617221 ], [ -95.513288045490967, 29.876048216236075 ], [ -95.513271044952106, 29.875869215408166 ], [ -95.513259044815698, 29.875171215796456 ], [ -95.513271045126146, 29.875001215733917 ], [ -95.513265045349087, 29.874954215657766 ], [ -95.513227044999041, 29.87488821538679 ], [ -95.513120045552526, 29.874805215581663 ], [ -95.512868044869847, 29.874668215950791 ], [ -95.512423044628264, 29.874642215446499 ], [ -95.512394044783463, 29.874640215945629 ], [ -95.512085044556997, 29.874668215255426 ], [ -95.511776044916914, 29.874590215858621 ], [ -95.511505045102041, 29.874469215548611 ], [ -95.51148004514377, 29.874449215459414 ], [ -95.510956044808978, 29.874040215853228 ], [ -95.510824044682707, 29.87391421558403 ], [ -95.510645044370008, 29.873832215798483 ], [ -95.510584044475252, 29.873804215381949 ], [ -95.510397044371217, 29.873791215155613 ], [ -95.5098290443336, 29.87375021566217 ], [ -95.509551044046304, 29.873730215456973 ], [ -95.509342043665484, 29.873715215222234 ], [ -95.509033043807051, 29.873759215140101 ], [ -95.508906044346958, 29.8737932157415 ], [ -95.508742043800424, 29.873836215324502 ], [ -95.508676043429702, 29.873864215890585 ], [ -95.508112044037077, 29.874105215245891 ], [ -95.50788704383065, 29.87416821538638 ], [ -95.507758043389288, 29.874204215353082 ], [ -95.507548044053422, 29.874218215873704 ], [ -95.507506044165225, 29.874221215774469 ], [ -95.507354043315217, 29.874205216006718 ], [ -95.507241043446214, 29.874193215495932 ], [ -95.507006043970492, 29.874157215321151 ], [ -95.507006043283866, 29.874434215319116 ], [ -95.507007043163497, 29.874870215987748 ], [ -95.507007043154331, 29.875621216248099 ], [ -95.506967043323655, 29.876355215930719 ], [ -95.506977043417535, 29.877139216329169 ], [ -95.506977043556986, 29.878016216668925 ], [ -95.506974044191352, 29.878704216783852 ], [ -95.506985044150312, 29.879437216720824 ], [ -95.506981043745228, 29.879561216745074 ], [ -95.506969043828775, 29.880608216816839 ], [ -95.507003043455356, 29.881403217297983 ], [ -95.506949044256629, 29.882245217527881 ], [ -95.506946043879296, 29.883039217273041 ], [ -95.506971044314881, 29.883505217671019 ], [ -95.506970043944676, 29.883932217528514 ], [ -95.50696304430457, 29.884748217412902 ], [ -95.506966043711387, 29.885527218067011 ], [ -95.506269044286427, 29.885553218045722 ], [ -95.50439504372477, 29.885753217953194 ], [ -95.503703043042705, 29.885843218292319 ], [ -95.503305043362957, 29.885918217851973 ], [ -95.503311042649997, 29.885970217807252 ], [ -95.503355043457944, 29.886168218224935 ], [ -95.503342042769688, 29.886327218271038 ], [ -95.503337042870868, 29.886632218533624 ], [ -95.503324043371393, 29.887412218748054 ], [ -95.50332304351862, 29.887481218174099 ], [ -95.503354043125356, 29.887756218980552 ], [ -95.503339042908962, 29.888154218777522 ], [ -95.503335043580378, 29.888273218997551 ], [ -95.50334504361345, 29.888865218976814 ], [ -95.503353043694702, 29.889367219010261 ], [ -95.503334043342605, 29.889702219388163 ], [ -95.50332704293757, 29.890171219237338 ], [ -95.50332704304158, 29.890200218871506 ], [ -95.503327043183958, 29.890236219071017 ], [ -95.503327043611094, 29.890270219116168 ], [ -95.503327043753515, 29.890306219314816 ], [ -95.503327043145703, 29.890340219332245 ], [ -95.503339043518267, 29.890435219302585 ], [ -95.503352043075452, 29.890533219373765 ], [ -95.503447043457356, 29.890791219259402 ], [ -95.5036500438312, 29.891107219192282 ], [ -95.503680043758848, 29.891154219438395 ], [ -95.503749043772913, 29.891335219506626 ], [ -95.503763043962849, 29.891582219600124 ], [ -95.503774043636355, 29.891781219781798 ], [ -95.503767043974008, 29.893941219458256 ], [ -95.503855043925455, 29.894738219726278 ], [ -95.503891044221362, 29.896734220034084 ], [ -95.503910043797148, 29.897212220874387 ], [ -95.503903043953599, 29.897762220490041 ], [ -95.503928043507145, 29.898312220629304 ], [ -95.504048043518566, 29.898559220730672 ], [ -95.504054043568885, 29.898801220760713 ], [ -95.504098043738793, 29.898939220677448 ], [ -95.504103043772901, 29.899169220765934 ], [ -95.504931043641065, 29.899055220520236 ], [ -95.505374043902322, 29.898999220619388 ], [ -95.507281044770778, 29.898726220953375 ], [ -95.508351044683437, 29.898595220609806 ], [ -95.508989044869182, 29.898505220262962 ], [ -95.509039045439948, 29.898506220516094 ], [ -95.509101045019392, 29.898495220596242 ], [ -95.509138045488626, 29.898488220470462 ], [ -95.509191045276012, 29.898486220839317 ], [ -95.511131046062047, 29.89820122030179 ], [ -95.511994045718438, 29.898124220472091 ], [ -95.51211904573799, 29.898115220531867 ], [ -95.512746046569163, 29.898076220094985 ], [ -95.512934046005697, 29.898078220158727 ], [ -95.513334046698148, 29.898064219911692 ], [ -95.513321045630093, 29.896211219868153 ], [ -95.511796045450694, 29.896003219874988 ], [ -95.511753045797491, 29.895854219775032 ], [ -95.511753045874059, 29.895254219737179 ], [ -95.511758045837254, 29.89513122021426 ], [ -95.511790045654024, 29.894413219650403 ], [ -95.511239045958305, 29.89444121996371 ], [ -95.511238045593529, 29.894403219900031 ], [ -95.511221045656384, 29.893841219095982 ], [ -95.511217045249168, 29.893706219249783 ], [ -95.511215045196494, 29.893636219585705 ], [ -95.511201045315218, 29.892975219442139 ], [ -95.511182045008397, 29.892207218885606 ], [ -95.511172045603175, 29.891799219471217 ], [ -95.511164044916356, 29.89143321929739 ], [ -95.511159045474287, 29.89122621931573 ], [ -95.51115104582864, 29.890911218585991 ], [ -95.511138045061557, 29.890729219172837 ], [ -95.511140045283668, 29.890581218945528 ], [ -95.511146044895952, 29.890153218551234 ], [ -95.511176045101024, 29.889981218782182 ], [ -95.511181044838494, 29.889571219001933 ], [ -95.511102045434583, 29.889310218389909 ], [ -95.511063045191889, 29.889203218456966 ], [ -95.510943045693864, 29.88882721835818 ], [ -95.510899045177695, 29.888652218326918 ], [ -95.510866045092513, 29.888415218708417 ], [ -95.510858044864648, 29.888157218548482 ], [ -95.510854044599995, 29.887590218384084 ], [ -95.51084804547726, 29.88673721822726 ], [ -95.510839044929384, 29.885928218221512 ], [ -95.510827044501397, 29.885517217981484 ], [ -95.510830045355121, 29.885075218101818 ], [ -95.510818045394501, 29.884346217410418 ], [ -95.510813045285943, 29.884274217863087 ], [ -95.510795045091939, 29.884095217289364 ], [ -95.510768045070051, 29.883917217401596 ], [ -95.510737044852718, 29.883803217920974 ], [ -95.510616044878972, 29.883491217508691 ], [ -95.510582044723037, 29.883372217164919 ], [ -95.510555044764686, 29.883201217747654 ], [ -95.510545044771348, 29.882956217600405 ], [ -95.510542044324026, 29.882683217590756 ], [ -95.510694045071432, 29.882663217658269 ], [ -95.510764044965242, 29.882658217225689 ], [ -95.511163045119631, 29.882612217089498 ], [ -95.511268045245174, 29.882606217545078 ], [ -95.511578044868017, 29.882572217074191 ], [ -95.511680045382931, 29.882548217187139 ], [ -95.511872044763493, 29.882541217161169 ], [ -95.512389045534732, 29.882490217415882 ], [ -95.512941044946274, 29.882415217199142 ], [ -95.513207045556683, 29.882380217433031 ], [ -95.513268045614652, 29.882444217529773 ], [ -95.513514045098262, 29.882505216859318 ], [ -95.51371604576282, 29.882516217405421 ], [ -95.51540004632453, 29.882472217017753 ], [ -95.516246046752926, 29.882461217083151 ], [ -95.516911046926978, 29.882453216605949 ], [ -95.517357046272338, 29.882448216593538 ], [ -95.518403046521783, 29.882435217066504 ], [ -95.51941204670841, 29.88245721715943 ], [ -95.519652046962619, 29.88250121694859 ], [ -95.52008704701602, 29.882688216564347 ], [ -95.52022004742372, 29.882815216555212 ], [ -95.520346047436419, 29.8829032168066 ], [ -95.520510047526741, 29.883134217211783 ], [ -95.520497046936867, 29.883969217197961 ], [ -95.520452047260846, 29.88456321762721 ], [ -95.520526047476594, 29.885182217364068 ], [ -95.520770047121374, 29.885182217751709 ], [ -95.520856047704271, 29.885175217019651 ], [ -95.521268047419852, 29.885169217351702 ], [ -95.521376047223995, 29.885172217020941 ], [ -95.521487048224543, 29.88516321766393 ], [ -95.522522048182012, 29.885136217668869 ], [ -95.524428048498322, 29.885122216980076 ], [ -95.524842048419799, 29.885129217644849 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 795, "Tract": "48201532503", "Area_SqMi": 0.81921089521440671, "total_2009": 101, "total_2010": 119, "total_2011": 166, "total_2012": 131, "total_2013": 148, "total_2014": 318, "total_2015": 287, "total_2016": 330, "total_2017": 273, "total_2018": 413, "total_2019": 477, "total_2020": 355, "age1": 79, "age2": 243, "age3": 137, "earn1": 61, "earn2": 235, "earn3": 163, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 111, "naics_s05": 180, "naics_s06": 33, "naics_s07": 59, "naics_s08": 0, "naics_s09": 0, "naics_s10": 15, "naics_s11": 0, "naics_s12": 14, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 27, "naics_s17": 0, "naics_s18": 0, "naics_s19": 5, "naics_s20": 0, "race1": 374, "race2": 52, "race3": 7, "race4": 16, "race5": 1, "race6": 9, "ethnicity1": 210, "ethnicity2": 249, "edu1": 128, "edu2": 114, "edu3": 96, "edu4": 42, "Shape_Length": 19954.312839196573, "Shape_Area": 22838197.66511777, "total_2021": 489, "total_2022": 459 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.524931049627128, 29.897485220267356 ], [ -95.524935049050214, 29.897396219881731 ], [ -95.524928049563158, 29.897211220090885 ], [ -95.524923049497616, 29.896855219873906 ], [ -95.524922049592433, 29.896679219934523 ], [ -95.524926049439102, 29.896582219855389 ], [ -95.524920049517775, 29.896481219551553 ], [ -95.524921049389718, 29.89626922000582 ], [ -95.524911049025278, 29.895796219695995 ], [ -95.52491204899556, 29.895283219652036 ], [ -95.524902049342927, 29.895149218892058 ], [ -95.524900048998404, 29.894990219468664 ], [ -95.52487904912438, 29.893148219089046 ], [ -95.524878048916818, 29.892966218482908 ], [ -95.52486704865423, 29.892453218564889 ], [ -95.524872048684557, 29.892366218832134 ], [ -95.524863049205706, 29.892279218457571 ], [ -95.524863049398249, 29.892007218945796 ], [ -95.524862048633295, 29.891759218745474 ], [ -95.524866048551019, 29.891665218744059 ], [ -95.524861048791493, 29.891249218810966 ], [ -95.524866049219639, 29.891139218237203 ], [ -95.524865048864399, 29.891027218239635 ], [ -95.524858048711536, 29.890912218768012 ], [ -95.524863048612758, 29.890795218546955 ], [ -95.524862048755097, 29.890661218704537 ], [ -95.524858048457645, 29.890199218499415 ], [ -95.524857048489793, 29.889571218439865 ], [ -95.524857048475837, 29.889426218338329 ], [ -95.524844048396247, 29.88908521783496 ], [ -95.524809048333552, 29.88841821760634 ], [ -95.524807048848686, 29.888384218300356 ], [ -95.524811048166939, 29.887671218142838 ], [ -95.524827048885967, 29.887302217303414 ], [ -95.524849048786095, 29.886933217462662 ], [ -95.524861048172738, 29.886813217643308 ], [ -95.524860048190391, 29.886373217731659 ], [ -95.524856048421583, 29.886249217482309 ], [ -95.524842048419799, 29.885129217644849 ], [ -95.524428048498322, 29.885122216980076 ], [ -95.522522048182012, 29.885136217668869 ], [ -95.521487048224543, 29.88516321766393 ], [ -95.521376047223995, 29.885172217020941 ], [ -95.521268047419852, 29.885169217351702 ], [ -95.520856047704271, 29.885175217019651 ], [ -95.520770047121374, 29.885182217751709 ], [ -95.520526047476594, 29.885182217364068 ], [ -95.520452047260846, 29.88456321762721 ], [ -95.520497046936867, 29.883969217197961 ], [ -95.520510047526741, 29.883134217211783 ], [ -95.520346047436419, 29.8829032168066 ], [ -95.52022004742372, 29.882815216555212 ], [ -95.52008704701602, 29.882688216564347 ], [ -95.519652046962619, 29.88250121694859 ], [ -95.51941204670841, 29.88245721715943 ], [ -95.518403046521783, 29.882435217066504 ], [ -95.517357046272338, 29.882448216593538 ], [ -95.516911046926978, 29.882453216605949 ], [ -95.516246046752926, 29.882461217083151 ], [ -95.51540004632453, 29.882472217017753 ], [ -95.51371604576282, 29.882516217405421 ], [ -95.513514045098262, 29.882505216859318 ], [ -95.513268045614652, 29.882444217529773 ], [ -95.513207045556683, 29.882380217433031 ], [ -95.512941044946274, 29.882415217199142 ], [ -95.512389045534732, 29.882490217415882 ], [ -95.511872044763493, 29.882541217161169 ], [ -95.511680045382931, 29.882548217187139 ], [ -95.511578044868017, 29.882572217074191 ], [ -95.511268045245174, 29.882606217545078 ], [ -95.511163045119631, 29.882612217089498 ], [ -95.510764044965242, 29.882658217225689 ], [ -95.510694045071432, 29.882663217658269 ], [ -95.510542044324026, 29.882683217590756 ], [ -95.510545044771348, 29.882956217600405 ], [ -95.510555044764686, 29.883201217747654 ], [ -95.510582044723037, 29.883372217164919 ], [ -95.510616044878972, 29.883491217508691 ], [ -95.510737044852718, 29.883803217920974 ], [ -95.510768045070051, 29.883917217401596 ], [ -95.510795045091939, 29.884095217289364 ], [ -95.510813045285943, 29.884274217863087 ], [ -95.510818045394501, 29.884346217410418 ], [ -95.510830045355121, 29.885075218101818 ], [ -95.510827044501397, 29.885517217981484 ], [ -95.510839044929384, 29.885928218221512 ], [ -95.51084804547726, 29.88673721822726 ], [ -95.510854044599995, 29.887590218384084 ], [ -95.510858044864648, 29.888157218548482 ], [ -95.510866045092513, 29.888415218708417 ], [ -95.510899045177695, 29.888652218326918 ], [ -95.510943045693864, 29.88882721835818 ], [ -95.511063045191889, 29.889203218456966 ], [ -95.511102045434583, 29.889310218389909 ], [ -95.511181044838494, 29.889571219001933 ], [ -95.511176045101024, 29.889981218782182 ], [ -95.511146044895952, 29.890153218551234 ], [ -95.511140045283668, 29.890581218945528 ], [ -95.511138045061557, 29.890729219172837 ], [ -95.51115104582864, 29.890911218585991 ], [ -95.511159045474287, 29.89122621931573 ], [ -95.511164044916356, 29.89143321929739 ], [ -95.511172045603175, 29.891799219471217 ], [ -95.511182045008397, 29.892207218885606 ], [ -95.511201045315218, 29.892975219442139 ], [ -95.511215045196494, 29.893636219585705 ], [ -95.511217045249168, 29.893706219249783 ], [ -95.511221045656384, 29.893841219095982 ], [ -95.511238045593529, 29.894403219900031 ], [ -95.511239045958305, 29.89444121996371 ], [ -95.511790045654024, 29.894413219650403 ], [ -95.511758045837254, 29.89513122021426 ], [ -95.511753045874059, 29.895254219737179 ], [ -95.511753045797491, 29.895854219775032 ], [ -95.511796045450694, 29.896003219874988 ], [ -95.513321045630093, 29.896211219868153 ], [ -95.513334046698148, 29.898064219911692 ], [ -95.51421604685774, 29.898049220454478 ], [ -95.515040046714105, 29.898042220425793 ], [ -95.515200046289337, 29.898047220546758 ], [ -95.51534704636866, 29.898046220014024 ], [ -95.51549004686818, 29.898039220613207 ], [ -95.516230047297597, 29.898036220158616 ], [ -95.517142047161187, 29.898027219912343 ], [ -95.517266046746229, 29.898026220511518 ], [ -95.517818047501834, 29.898022220085593 ], [ -95.518224047901541, 29.898020220169158 ], [ -95.518568047894064, 29.89801222022485 ], [ -95.519607047412734, 29.89800822032808 ], [ -95.520629048170193, 29.8979982197678 ], [ -95.52144104789879, 29.8979912204159 ], [ -95.523995049039812, 29.897971219804784 ], [ -95.524930049580362, 29.897967219496387 ], [ -95.524931049627128, 29.897485220267356 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 796, "Tract": "48201534204", "Area_SqMi": 0.88615833531547694, "total_2009": 477, "total_2010": 442, "total_2011": 1044, "total_2012": 1491, "total_2013": 1268, "total_2014": 1214, "total_2015": 1496, "total_2016": 1527, "total_2017": 1578, "total_2018": 1986, "total_2019": 1991, "total_2020": 1764, "age1": 225, "age2": 1157, "age3": 184, "earn1": 90, "earn2": 201, "earn3": 1275, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 149, "naics_s05": 0, "naics_s06": 1237, "naics_s07": 71, "naics_s08": 0, "naics_s09": 9, "naics_s10": 1, "naics_s11": 8, "naics_s12": 39, "naics_s13": 0, "naics_s14": 3, "naics_s15": 4, "naics_s16": 1, "naics_s17": 1, "naics_s18": 22, "naics_s19": 21, "naics_s20": 0, "race1": 1251, "race2": 204, "race3": 11, "race4": 58, "race5": 1, "race6": 41, "ethnicity1": 851, "ethnicity2": 715, "edu1": 250, "edu2": 370, "edu3": 429, "edu4": 292, "Shape_Length": 25478.05288401078, "Shape_Area": 24704577.713446729, "total_2021": 1638, "total_2022": 1566 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.549375055523342, 29.889339216929667 ], [ -95.549368055033355, 29.888468217457923 ], [ -95.549354054695442, 29.888045216980167 ], [ -95.549278055028353, 29.887533216896166 ], [ -95.549142055208449, 29.886922217200482 ], [ -95.549106054597488, 29.886816217113694 ], [ -95.549082054338783, 29.886672217021427 ], [ -95.548789054561212, 29.884798215960725 ], [ -95.548731054842634, 29.884074216070882 ], [ -95.548323054818624, 29.884080215955297 ], [ -95.547548054806001, 29.884091216357575 ], [ -95.546816054297636, 29.884052216079148 ], [ -95.546538053887673, 29.884063216263911 ], [ -95.546393054518475, 29.88405221623044 ], [ -95.546286054168817, 29.884030215916145 ], [ -95.546072054257081, 29.883970216607068 ], [ -95.545882053639133, 29.883893216217412 ], [ -95.545699054248274, 29.883772216634991 ], [ -95.545561054065516, 29.88361821590809 ], [ -95.545479053902937, 29.883409216032593 ], [ -95.545346054145853, 29.883145215808774 ], [ -95.545188054125035, 29.882881216099857 ], [ -95.545081054056652, 29.882732216420568 ], [ -95.544879053157928, 29.882485216276653 ], [ -95.544804053277701, 29.882425215601945 ], [ -95.544734053984911, 29.88239221565437 ], [ -95.544400053355218, 29.882326215741628 ], [ -95.544167053256686, 29.882183216050219 ], [ -95.544097053062487, 29.882161215633896 ], [ -95.543877052999946, 29.882117216316423 ], [ -95.543637053431794, 29.882095215682458 ], [ -95.543195053482023, 29.882095216094505 ], [ -95.542375052724879, 29.882149215943528 ], [ -95.542306052865484, 29.882193216318175 ], [ -95.542198053340357, 29.88222121584673 ], [ -95.542079052575616, 29.882221215815356 ], [ -95.54178805309806, 29.882182215745821 ], [ -95.540857052777, 29.882208216086084 ], [ -95.540621052799835, 29.882215216021553 ], [ -95.540426052011483, 29.882182216479634 ], [ -95.540035052325265, 29.882144216331167 ], [ -95.539688052556457, 29.882088215784375 ], [ -95.539341051654588, 29.881967215801044 ], [ -95.539183051754861, 29.881901215952908 ], [ -95.53901905203206, 29.881781215983459 ], [ -95.538868052170841, 29.881621216039498 ], [ -95.538691051629627, 29.881401215783509 ], [ -95.538294052258138, 29.880686216313983 ], [ -95.537909051712248, 29.880192215756846 ], [ -95.537780051682503, 29.880064215884776 ], [ -95.537581051588901, 29.879867215656613 ], [ -95.537518051480347, 29.879818216139306 ], [ -95.537424051334597, 29.879785215609228 ], [ -95.537361051374916, 29.879752215417597 ], [ -95.537345052016065, 29.879749215642445 ], [ -95.537215051876473, 29.87972421608384 ], [ -95.53692505146509, 29.879730215434204 ], [ -95.536471051698612, 29.879746216147339 ], [ -95.535285050965072, 29.879845215485464 ], [ -95.534888050754702, 29.879834215903728 ], [ -95.534181051243706, 29.879762215805965 ], [ -95.533822050931192, 29.879751216302488 ], [ -95.533405050897272, 29.879817215959783 ], [ -95.533222050370043, 29.879811215513584 ], [ -95.532945050255449, 29.87976721615977 ], [ -95.532737050428935, 29.879718215581395 ], [ -95.532623050088304, 29.879679215998109 ], [ -95.532358050651098, 29.879558215494487 ], [ -95.53218105003269, 29.879426215513494 ], [ -95.531684050477523, 29.878942216221056 ], [ -95.531627049656677, 29.87888721592897 ], [ -95.531318049924479, 29.878519215590426 ], [ -95.531166049998802, 29.87835421533552 ], [ -95.530857050211196, 29.877953215741108 ], [ -95.530662049320199, 29.877722215182366 ], [ -95.530428049279237, 29.877485215254296 ], [ -95.530245050062803, 29.877381215670269 ], [ -95.530056049866417, 29.877298215688928 ], [ -95.529911049006429, 29.877254215676409 ], [ -95.529747048971785, 29.877232215880202 ], [ -95.529533049674612, 29.877227215423581 ], [ -95.528908049528965, 29.877369215486279 ], [ -95.528555049643373, 29.877496216071211 ], [ -95.528044049152285, 29.87769921524626 ], [ -95.527798049148927, 29.877770215712289 ], [ -95.527634049470635, 29.877798215472346 ], [ -95.527224049317994, 29.877781216175404 ], [ -95.526953048493098, 29.877715216073891 ], [ -95.526673048324454, 29.877609215755545 ], [ -95.526133048810479, 29.877407215714882 ], [ -95.525962048115119, 29.87736321600752 ], [ -95.525281048660247, 29.87722021592699 ], [ -95.524706048317682, 29.877077215250697 ], [ -95.524704048706582, 29.87724421551675 ], [ -95.524685048564592, 29.878898216062286 ], [ -95.52468304870591, 29.879018216135137 ], [ -95.524689048026303, 29.879113215655622 ], [ -95.524684047925675, 29.879207216285963 ], [ -95.524683048601929, 29.879757216497588 ], [ -95.524689047881992, 29.879910216033839 ], [ -95.52470204878361, 29.880936216174298 ], [ -95.524698048027275, 29.88101421611649 ], [ -95.524700048297916, 29.881210216448284 ], [ -95.524749048429129, 29.882243216810657 ], [ -95.524770048349666, 29.882464216525594 ], [ -95.524784048040999, 29.882880216999506 ], [ -95.524785047964187, 29.883105217010854 ], [ -95.524794048409916, 29.883378216744926 ], [ -95.524804048373994, 29.884015217197536 ], [ -95.524837048883924, 29.884696217333431 ], [ -95.524842048419799, 29.885129217644849 ], [ -95.524856048421583, 29.886249217482309 ], [ -95.525519048747327, 29.886247217170148 ], [ -95.526364049464405, 29.886233217728808 ], [ -95.526428049132207, 29.886237217797017 ], [ -95.526439048729372, 29.886612217860183 ], [ -95.526440049012592, 29.886977217289207 ], [ -95.526445048942776, 29.887466217682586 ], [ -95.526441049434254, 29.887760217598242 ], [ -95.526863049151373, 29.887744217638875 ], [ -95.527108048826008, 29.887743217714405 ], [ -95.527275049077403, 29.887750217334368 ], [ -95.527535049560669, 29.887784217604246 ], [ -95.527709049329133, 29.887817217465589 ], [ -95.527791049974354, 29.88783921742057 ], [ -95.52786604919622, 29.887867218012378 ], [ -95.527937049662413, 29.887899217375981 ], [ -95.528070049314167, 29.887971217435346 ], [ -95.528355049785247, 29.88815221784084 ], [ -95.528518049209225, 29.88824421802423 ], [ -95.528802049917346, 29.888381218054125 ], [ -95.528979049288452, 29.888447217767805 ], [ -95.529170049611096, 29.888501217490202 ], [ -95.529356049528673, 29.888540218249759 ], [ -95.529530050396744, 29.888567217982768 ], [ -95.529693049466104, 29.888581218086948 ], [ -95.529921050229532, 29.888589218053635 ], [ -95.530418050643206, 29.888583217546302 ], [ -95.531302050375089, 29.888574217874531 ], [ -95.531300050053034, 29.888104217969023 ], [ -95.531315050440327, 29.887834217462718 ], [ -95.531331049926365, 29.88773021719474 ], [ -95.531375050780099, 29.887470217976198 ], [ -95.531440050819143, 29.887192217796123 ], [ -95.531472050248297, 29.887120217410061 ], [ -95.531479050706594, 29.887086217136776 ], [ -95.531584050302641, 29.8871232174419 ], [ -95.531773050367406, 29.887170217243209 ], [ -95.531906050391783, 29.887189217665657 ], [ -95.532056050480548, 29.887197217881873 ], [ -95.532259050318899, 29.887198217097474 ], [ -95.532322050709951, 29.88720621768503 ], [ -95.532379050374871, 29.887197217139899 ], [ -95.532428050506496, 29.887202217560635 ], [ -95.532479050960461, 29.88719421724732 ], [ -95.532716051056425, 29.887176217546731 ], [ -95.532852050952656, 29.887147217882976 ], [ -95.53297305108255, 29.887102217414107 ], [ -95.53305405058002, 29.887056217534806 ], [ -95.533103050859253, 29.887035217593041 ], [ -95.533191050927144, 29.886967217277533 ], [ -95.533234050900091, 29.886940217049911 ], [ -95.533468051319105, 29.886761217769877 ], [ -95.53369305076383, 29.886607217565114 ], [ -95.53377305049321, 29.886564216928814 ], [ -95.533963050533245, 29.886486217599362 ], [ -95.53410805130008, 29.886445217257851 ], [ -95.534296051072047, 29.886413217036395 ], [ -95.534447051351833, 29.886400217227457 ], [ -95.534616051126875, 29.886397217148197 ], [ -95.534700051292972, 29.886402217238789 ], [ -95.534782051163731, 29.886412217431999 ], [ -95.534856051316126, 29.886426217056712 ], [ -95.534926051060012, 29.88644521749292 ], [ -95.535051051577753, 29.88649021682906 ], [ -95.535162051039208, 29.886539217617344 ], [ -95.535269050965852, 29.886597216782445 ], [ -95.535370050979182, 29.886663217662363 ], [ -95.535462051352184, 29.886736217652899 ], [ -95.535556051530619, 29.886824217062674 ], [ -95.535689050952286, 29.886967217411669 ], [ -95.535770051194532, 29.8870722171037 ], [ -95.535801051308056, 29.887123217040653 ], [ -95.535841051714058, 29.887210217313648 ], [ -95.535870051735344, 29.887330217583038 ], [ -95.535888051901765, 29.887434216984644 ], [ -95.53590605124829, 29.887614217409006 ], [ -95.535916051125611, 29.887811217418736 ], [ -95.535919051547992, 29.888534217698957 ], [ -95.536014052004617, 29.8885292176818 ], [ -95.536101052104286, 29.88853121735626 ], [ -95.536377051413808, 29.888523217711967 ], [ -95.536841051858488, 29.888530218011322 ], [ -95.536987052117738, 29.888529217971836 ], [ -95.537099052028026, 29.88852321721162 ], [ -95.537158051827831, 29.888529217700732 ], [ -95.537325051749264, 29.888537217462815 ], [ -95.537378052032082, 29.888537217832326 ], [ -95.537439051957605, 29.888601217156392 ], [ -95.5374540522578, 29.889953218183301 ], [ -95.537453052053976, 29.890231217805983 ], [ -95.537456052207006, 29.890249217998164 ], [ -95.537480051672503, 29.890357217796826 ], [ -95.537447052038544, 29.890786218392215 ], [ -95.537454051797681, 29.891044218065677 ], [ -95.53745005250056, 29.891400217989567 ], [ -95.537451052140838, 29.891841218463014 ], [ -95.5376170526403, 29.891838218214136 ], [ -95.537980052312989, 29.891817217965919 ], [ -95.538665052444529, 29.891815218482453 ], [ -95.539399052307346, 29.891805217788516 ], [ -95.540082052315739, 29.891805218300288 ], [ -95.5408200530063, 29.891799218516923 ], [ -95.541112052733141, 29.891795218249246 ], [ -95.541323053260044, 29.891780218186025 ], [ -95.541483053429999, 29.891749218082104 ], [ -95.541692052960315, 29.891692217965826 ], [ -95.541981052996945, 29.891595217703703 ], [ -95.542541052924122, 29.891398217949611 ], [ -95.543105053772592, 29.891212217760899 ], [ -95.543517053244145, 29.891038217748392 ], [ -95.544379053343718, 29.89072521765754 ], [ -95.544467053385887, 29.890694218147523 ], [ -95.54492805369766, 29.890533217632544 ], [ -95.545106054112154, 29.890478217495222 ], [ -95.545216054234174, 29.890453217574688 ], [ -95.545364053915279, 29.890433217891143 ], [ -95.545498054267412, 29.890424217617667 ], [ -95.54561305432631, 29.890426218016938 ], [ -95.545806054237232, 29.890443217332656 ], [ -95.546021054684431, 29.890477217974571 ], [ -95.546216054411445, 29.890518217497483 ], [ -95.54663905478742, 29.89062221723924 ], [ -95.546906054091593, 29.890680217883137 ], [ -95.547159054148068, 29.89071921745423 ], [ -95.547345054799749, 29.890733217435539 ], [ -95.547498054885125, 29.890736217498009 ], [ -95.547645054414815, 29.890732217752291 ], [ -95.547916054500647, 29.890733217881643 ], [ -95.547990054997015, 29.890729217908259 ], [ -95.548837055241179, 29.890722217399503 ], [ -95.549090055439592, 29.890709217854543 ], [ -95.54935005539599, 29.890705217950842 ], [ -95.549350054991876, 29.890604217307651 ], [ -95.549375055523342, 29.889339216929667 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 797, "Tract": "48201534205", "Area_SqMi": 0.96969425444559476, "total_2009": 198, "total_2010": 231, "total_2011": 129, "total_2012": 345, "total_2013": 424, "total_2014": 347, "total_2015": 404, "total_2016": 324, "total_2017": 288, "total_2018": 282, "total_2019": 329, "total_2020": 393, "age1": 61, "age2": 195, "age3": 102, "earn1": 125, "earn2": 81, "earn3": 152, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 9, "naics_s05": 6, "naics_s06": 48, "naics_s07": 57, "naics_s08": 5, "naics_s09": 0, "naics_s10": 7, "naics_s11": 2, "naics_s12": 76, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 121, "naics_s17": 0, "naics_s18": 16, "naics_s19": 3, "naics_s20": 0, "race1": 238, "race2": 86, "race3": 1, "race4": 28, "race5": 0, "race6": 5, "ethnicity1": 251, "ethnicity2": 107, "edu1": 54, "edu2": 77, "edu3": 89, "edu4": 77, "Shape_Length": 30088.251102697559, "Shape_Area": 27033416.165639929, "total_2021": 376, "total_2022": 358 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.551782056072867, 29.902813219563022 ], [ -95.55165705654764, 29.902684219637848 ], [ -95.551544056610282, 29.902564219842823 ], [ -95.551184056106166, 29.902152220083209 ], [ -95.550705056186956, 29.901505219425125 ], [ -95.550379055972456, 29.901000219493412 ], [ -95.550212055631846, 29.900684220038055 ], [ -95.550095055297845, 29.900462219440001 ], [ -95.549956055444568, 29.900129219861668 ], [ -95.549786055215506, 29.899631219067867 ], [ -95.549715055825715, 29.899363218956722 ], [ -95.549644055105929, 29.899060219137503 ], [ -95.549579055012927, 29.898761219459796 ], [ -95.549483055875271, 29.898148219514248 ], [ -95.549419055068839, 29.897566219289956 ], [ -95.549407055469686, 29.896436218873848 ], [ -95.549407055379021, 29.89638621913404 ], [ -95.54937605530246, 29.893259218242733 ], [ -95.54935005539599, 29.890705217950842 ], [ -95.549090055439592, 29.890709217854543 ], [ -95.548837055241179, 29.890722217399503 ], [ -95.547990054997015, 29.890729217908259 ], [ -95.547916054500647, 29.890733217881643 ], [ -95.547645054414815, 29.890732217752291 ], [ -95.547498054885125, 29.890736217498009 ], [ -95.547345054799749, 29.890733217435539 ], [ -95.547159054148068, 29.89071921745423 ], [ -95.546906054091593, 29.890680217883137 ], [ -95.54663905478742, 29.89062221723924 ], [ -95.546216054411445, 29.890518217497483 ], [ -95.546021054684431, 29.890477217974571 ], [ -95.545806054237232, 29.890443217332656 ], [ -95.54561305432631, 29.890426218016938 ], [ -95.545498054267412, 29.890424217617667 ], [ -95.545364053915279, 29.890433217891143 ], [ -95.545216054234174, 29.890453217574688 ], [ -95.545106054112154, 29.890478217495222 ], [ -95.54492805369766, 29.890533217632544 ], [ -95.544467053385887, 29.890694218147523 ], [ -95.544379053343718, 29.89072521765754 ], [ -95.543517053244145, 29.891038217748392 ], [ -95.543105053772592, 29.891212217760899 ], [ -95.542541052924122, 29.891398217949611 ], [ -95.541981052996945, 29.891595217703703 ], [ -95.541692052960315, 29.891692217965826 ], [ -95.541483053429999, 29.891749218082104 ], [ -95.541323053260044, 29.891780218186025 ], [ -95.541112052733141, 29.891795218249246 ], [ -95.5408200530063, 29.891799218516923 ], [ -95.540082052315739, 29.891805218300288 ], [ -95.539399052307346, 29.891805217788516 ], [ -95.538665052444529, 29.891815218482453 ], [ -95.537980052312989, 29.891817217965919 ], [ -95.5376170526403, 29.891838218214136 ], [ -95.537451052140838, 29.891841218463014 ], [ -95.53745005250056, 29.891400217989567 ], [ -95.537454051797681, 29.891044218065677 ], [ -95.537447052038544, 29.890786218392215 ], [ -95.537480051672503, 29.890357217796826 ], [ -95.537456052207006, 29.890249217998164 ], [ -95.537453052053976, 29.890231217805983 ], [ -95.5374540522578, 29.889953218183301 ], [ -95.537439051957605, 29.888601217156392 ], [ -95.537378052032082, 29.888537217832326 ], [ -95.537325051749264, 29.888537217462815 ], [ -95.537158051827831, 29.888529217700732 ], [ -95.537099052028026, 29.88852321721162 ], [ -95.536987052117738, 29.888529217971836 ], [ -95.536841051858488, 29.888530218011322 ], [ -95.536377051413808, 29.888523217711967 ], [ -95.536101052104286, 29.88853121735626 ], [ -95.536014052004617, 29.8885292176818 ], [ -95.535919051547992, 29.888534217698957 ], [ -95.535916051125611, 29.887811217418736 ], [ -95.53590605124829, 29.887614217409006 ], [ -95.535888051901765, 29.887434216984644 ], [ -95.535870051735344, 29.887330217583038 ], [ -95.535841051714058, 29.887210217313648 ], [ -95.535801051308056, 29.887123217040653 ], [ -95.535770051194532, 29.8870722171037 ], [ -95.535689050952286, 29.886967217411669 ], [ -95.535556051530619, 29.886824217062674 ], [ -95.535462051352184, 29.886736217652899 ], [ -95.535370050979182, 29.886663217662363 ], [ -95.535269050965852, 29.886597216782445 ], [ -95.535162051039208, 29.886539217617344 ], [ -95.535051051577753, 29.88649021682906 ], [ -95.534926051060012, 29.88644521749292 ], [ -95.534856051316126, 29.886426217056712 ], [ -95.534782051163731, 29.886412217431999 ], [ -95.534700051292972, 29.886402217238789 ], [ -95.534616051126875, 29.886397217148197 ], [ -95.534447051351833, 29.886400217227457 ], [ -95.534296051072047, 29.886413217036395 ], [ -95.53410805130008, 29.886445217257851 ], [ -95.533963050533245, 29.886486217599362 ], [ -95.53377305049321, 29.886564216928814 ], [ -95.53369305076383, 29.886607217565114 ], [ -95.533468051319105, 29.886761217769877 ], [ -95.533234050900091, 29.886940217049911 ], [ -95.533191050927144, 29.886967217277533 ], [ -95.533103050859253, 29.887035217593041 ], [ -95.53305405058002, 29.887056217534806 ], [ -95.53297305108255, 29.887102217414107 ], [ -95.532852050952656, 29.887147217882976 ], [ -95.532716051056425, 29.887176217546731 ], [ -95.532479050960461, 29.88719421724732 ], [ -95.532428050506496, 29.887202217560635 ], [ -95.532379050374871, 29.887197217139899 ], [ -95.532322050709951, 29.88720621768503 ], [ -95.532259050318899, 29.887198217097474 ], [ -95.532056050480548, 29.887197217881873 ], [ -95.531906050391783, 29.887189217665657 ], [ -95.531773050367406, 29.887170217243209 ], [ -95.531584050302641, 29.8871232174419 ], [ -95.531479050706594, 29.887086217136776 ], [ -95.531472050248297, 29.887120217410061 ], [ -95.531440050819143, 29.887192217796123 ], [ -95.531375050780099, 29.887470217976198 ], [ -95.531331049926365, 29.88773021719474 ], [ -95.531315050440327, 29.887834217462718 ], [ -95.531300050053034, 29.888104217969023 ], [ -95.531302050375089, 29.888574217874531 ], [ -95.530418050643206, 29.888583217546302 ], [ -95.529921050229532, 29.888589218053635 ], [ -95.529693049466104, 29.888581218086948 ], [ -95.529530050396744, 29.888567217982768 ], [ -95.529356049528673, 29.888540218249759 ], [ -95.529170049611096, 29.888501217490202 ], [ -95.528979049288452, 29.888447217767805 ], [ -95.528802049917346, 29.888381218054125 ], [ -95.528518049209225, 29.88824421802423 ], [ -95.528355049785247, 29.88815221784084 ], [ -95.528070049314167, 29.887971217435346 ], [ -95.527937049662413, 29.887899217375981 ], [ -95.52786604919622, 29.887867218012378 ], [ -95.527791049974354, 29.88783921742057 ], [ -95.527709049329133, 29.887817217465589 ], [ -95.527535049560669, 29.887784217604246 ], [ -95.527275049077403, 29.887750217334368 ], [ -95.527108048826008, 29.887743217714405 ], [ -95.526863049151373, 29.887744217638875 ], [ -95.526441049434254, 29.887760217598242 ], [ -95.526445048942776, 29.887466217682586 ], [ -95.526440049012592, 29.886977217289207 ], [ -95.526439048729372, 29.886612217860183 ], [ -95.526428049132207, 29.886237217797017 ], [ -95.526364049464405, 29.886233217728808 ], [ -95.525519048747327, 29.886247217170148 ], [ -95.524856048421583, 29.886249217482309 ], [ -95.524860048190391, 29.886373217731659 ], [ -95.524861048172738, 29.886813217643308 ], [ -95.524849048786095, 29.886933217462662 ], [ -95.524827048885967, 29.887302217303414 ], [ -95.524811048166939, 29.887671218142838 ], [ -95.524807048848686, 29.888384218300356 ], [ -95.524809048333552, 29.88841821760634 ], [ -95.524844048396247, 29.88908521783496 ], [ -95.524857048475837, 29.889426218338329 ], [ -95.524857048489793, 29.889571218439865 ], [ -95.524858048457645, 29.890199218499415 ], [ -95.524862048755097, 29.890661218704537 ], [ -95.524863048612758, 29.890795218546955 ], [ -95.524858048711536, 29.890912218768012 ], [ -95.524865048864399, 29.891027218239635 ], [ -95.524866049219639, 29.891139218237203 ], [ -95.524861048791493, 29.891249218810966 ], [ -95.524866048551019, 29.891665218744059 ], [ -95.524862048633295, 29.891759218745474 ], [ -95.524863049398249, 29.892007218945796 ], [ -95.524863049205706, 29.892279218457571 ], [ -95.524872048684557, 29.892366218832134 ], [ -95.52486704865423, 29.892453218564889 ], [ -95.524878048916818, 29.892966218482908 ], [ -95.52487904912438, 29.893148219089046 ], [ -95.524900048998404, 29.894990219468664 ], [ -95.524902049342927, 29.895149218892058 ], [ -95.52491204899556, 29.895283219652036 ], [ -95.524911049025278, 29.895796219695995 ], [ -95.524921049389718, 29.89626922000582 ], [ -95.524920049517775, 29.896481219551553 ], [ -95.524926049439102, 29.896582219855389 ], [ -95.524922049592433, 29.896679219934523 ], [ -95.524923049497616, 29.896855219873906 ], [ -95.525047049646886, 29.896857219875148 ], [ -95.525217048823805, 29.896859219522344 ], [ -95.525305049155165, 29.89685722003027 ], [ -95.5256280494675, 29.896835219612214 ], [ -95.526091049702941, 29.89678521973525 ], [ -95.526620049670342, 29.896714219281808 ], [ -95.526906049841983, 29.89666721929574 ], [ -95.527271049927492, 29.896618219665481 ], [ -95.527642049996714, 29.896584219254326 ], [ -95.528092050098877, 29.896560219172184 ], [ -95.528792050182105, 29.896554219317288 ], [ -95.529667050021743, 29.896551219197701 ], [ -95.530365050235503, 29.896552219494698 ], [ -95.530829051020831, 29.896541219391477 ], [ -95.531258050667304, 29.896528218946219 ], [ -95.531925050694042, 29.896458219728338 ], [ -95.532841050956264, 29.89635421887078 ], [ -95.533027051118651, 29.89633321970571 ], [ -95.533379051616464, 29.896286218939014 ], [ -95.53372005145296, 29.896251219154163 ], [ -95.534077051087934, 29.896208219631923 ], [ -95.534393051648394, 29.896175218818154 ], [ -95.534903051707843, 29.896141219531064 ], [ -95.535240052083608, 29.896137219518408 ], [ -95.535919052240303, 29.896131218897477 ], [ -95.536231051503322, 29.896128219096624 ], [ -95.536520052252015, 29.896121219471073 ], [ -95.537380052037449, 29.896113219402032 ], [ -95.537617052296909, 29.896112219000919 ], [ -95.537723052629232, 29.896118218796563 ], [ -95.5379150522689, 29.896119219404529 ], [ -95.537998052488874, 29.896113219518217 ], [ -95.538084051984882, 29.896114218925955 ], [ -95.538307052553577, 29.896125218892053 ], [ -95.538356052787705, 29.896342219181129 ], [ -95.538372052130669, 29.896459219482093 ], [ -95.538399052228115, 29.896812219441891 ], [ -95.538400052931223, 29.897030218905385 ], [ -95.538396052794468, 29.897144219312509 ], [ -95.538406052219983, 29.897858219028389 ], [ -95.538416052336288, 29.89851421910144 ], [ -95.538422052918392, 29.898755219940405 ], [ -95.538419052504011, 29.898910220018749 ], [ -95.538424052278543, 29.899221219684133 ], [ -95.538420052815013, 29.899379219446217 ], [ -95.53842505280079, 29.899529219742213 ], [ -95.538424052753754, 29.899679219593715 ], [ -95.538443052255985, 29.899824219631704 ], [ -95.53845205311859, 29.900389219763703 ], [ -95.538459053196817, 29.90053221967506 ], [ -95.538463053287884, 29.90148421994127 ], [ -95.539968053223504, 29.901489220329324 ], [ -95.542130053899086, 29.90148021983061 ], [ -95.543353054107413, 29.901476220244628 ], [ -95.543473054503224, 29.901473219745593 ], [ -95.544441054439517, 29.901472219883352 ], [ -95.548959055326748, 29.901485219672526 ], [ -95.549337055336252, 29.902694219699438 ], [ -95.549346055969906, 29.902808220262347 ], [ -95.549613055205128, 29.902806220469529 ], [ -95.549726055253601, 29.90281121990019 ], [ -95.549841055890255, 29.902810219737987 ], [ -95.549959055738043, 29.90280322038037 ], [ -95.550072056116576, 29.902809219592584 ], [ -95.550187055498753, 29.902801220454222 ], [ -95.550270056242994, 29.902802219655133 ], [ -95.550586056378933, 29.902808219912476 ], [ -95.551036055922339, 29.90280521954605 ], [ -95.551133056606787, 29.90281921964198 ], [ -95.551235055896115, 29.902824220287499 ], [ -95.55139305599144, 29.902827220274993 ], [ -95.551782056072867, 29.902813219563022 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 798, "Tract": "48201534102", "Area_SqMi": 1.9304655749991, "total_2009": 1032, "total_2010": 1103, "total_2011": 1309, "total_2012": 1895, "total_2013": 1820, "total_2014": 1895, "total_2015": 1752, "total_2016": 1153, "total_2017": 1460, "total_2018": 1454, "total_2019": 1439, "total_2020": 1779, "age1": 226, "age2": 986, "age3": 523, "earn1": 139, "earn2": 193, "earn3": 1403, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 548, "naics_s05": 785, "naics_s06": 155, "naics_s07": 99, "naics_s08": 7, "naics_s09": 0, "naics_s10": 5, "naics_s11": 1, "naics_s12": 61, "naics_s13": 0, "naics_s14": 18, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 21, "naics_s19": 17, "naics_s20": 0, "race1": 1448, "race2": 134, "race3": 16, "race4": 114, "race5": 2, "race6": 21, "ethnicity1": 1040, "ethnicity2": 695, "edu1": 366, "edu2": 407, "edu3": 422, "edu4": 314, "Shape_Length": 31174.166918675339, "Shape_Area": 53818076.206122383, "total_2021": 1710, "total_2022": 1735 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.525177050446189, 29.925223225644132 ], [ -95.525171050805326, 29.924398225270522 ], [ -95.525170050793548, 29.924327225528049 ], [ -95.525157050288087, 29.923424225483195 ], [ -95.525144050471695, 29.922345224639592 ], [ -95.52514405025002, 29.921922224340875 ], [ -95.525138050206479, 29.921408224303214 ], [ -95.525133050651775, 29.920467224048931 ], [ -95.525133050555851, 29.920396224827716 ], [ -95.525124050212938, 29.920025224801453 ], [ -95.525093050676588, 29.919412224163107 ], [ -95.525090049871523, 29.919353223830985 ], [ -95.525084050135973, 29.918612223749594 ], [ -95.52507904990712, 29.918458224039803 ], [ -95.525072049868982, 29.917370223592471 ], [ -95.525070050368072, 29.91663822339406 ], [ -95.525069050042745, 29.915883223886038 ], [ -95.525061050411807, 29.915742223962095 ], [ -95.52506205001616, 29.91491922361293 ], [ -95.525058050336725, 29.913867223478636 ], [ -95.525061049645416, 29.913611223387282 ], [ -95.525049049824048, 29.912831222746441 ], [ -95.525069050182495, 29.911282222735167 ], [ -95.525052050093322, 29.909660221924767 ], [ -95.525039050169426, 29.908968222105422 ], [ -95.525034049465447, 29.907978221759809 ], [ -95.52502704989908, 29.907506221641821 ], [ -95.525013049184182, 29.906694221331978 ], [ -95.525026050077997, 29.906129221543662 ], [ -95.525029049120704, 29.905418221382803 ], [ -95.52500904900181, 29.90414722141454 ], [ -95.525009049218255, 29.90388022150432 ], [ -95.524993049611808, 29.902668221268751 ], [ -95.524990049431722, 29.902539221048645 ], [ -95.52497104944861, 29.901003220462787 ], [ -95.524954049658191, 29.900087220800724 ], [ -95.524953048881358, 29.899871219949087 ], [ -95.524930049580362, 29.897967219496387 ], [ -95.523995049039812, 29.897971219804784 ], [ -95.52144104789879, 29.8979912204159 ], [ -95.520629048170193, 29.8979982197678 ], [ -95.519607047412734, 29.89800822032808 ], [ -95.518568047894064, 29.89801222022485 ], [ -95.518224047901541, 29.898020220169158 ], [ -95.517818047501834, 29.898022220085593 ], [ -95.517266046746229, 29.898026220511518 ], [ -95.517142047161187, 29.898027219912343 ], [ -95.516230047297597, 29.898036220158616 ], [ -95.51549004686818, 29.898039220613207 ], [ -95.51534704636866, 29.898046220014024 ], [ -95.515200046289337, 29.898047220546758 ], [ -95.515040046714105, 29.898042220425793 ], [ -95.51421604685774, 29.898049220454478 ], [ -95.513334046698148, 29.898064219911692 ], [ -95.512934046005697, 29.898078220158727 ], [ -95.512746046569163, 29.898076220094985 ], [ -95.51211904573799, 29.898115220531867 ], [ -95.511994045718438, 29.898124220472091 ], [ -95.511131046062047, 29.89820122030179 ], [ -95.509191045276012, 29.898486220839317 ], [ -95.509138045488626, 29.898488220470462 ], [ -95.509101045019392, 29.898495220596242 ], [ -95.509039045439948, 29.898506220516094 ], [ -95.508989044869182, 29.898505220262962 ], [ -95.508351044683437, 29.898595220609806 ], [ -95.507281044770778, 29.898726220953375 ], [ -95.505374043902322, 29.898999220619388 ], [ -95.504931043641065, 29.899055220520236 ], [ -95.504103043772901, 29.899169220765934 ], [ -95.503416043714466, 29.899263221330816 ], [ -95.503146044163714, 29.899304220843639 ], [ -95.502371043989172, 29.899406220561666 ], [ -95.501230043366732, 29.899562220693774 ], [ -95.500895042832767, 29.899607220783714 ], [ -95.500755042643618, 29.89962122122418 ], [ -95.502086043781816, 29.901958221276008 ], [ -95.502319044067875, 29.902404222043554 ], [ -95.504030043669786, 29.905428222519884 ], [ -95.506398044672224, 29.909681223280995 ], [ -95.50929004615594, 29.914683223936827 ], [ -95.50951504630261, 29.915058224018047 ], [ -95.509625045891369, 29.915252223849855 ], [ -95.511946046321697, 29.919350224653417 ], [ -95.513341047599141, 29.921916225402896 ], [ -95.514082047538565, 29.923208225485585 ], [ -95.514933047972249, 29.924676225350662 ], [ -95.515357047803306, 29.92537522616551 ], [ -95.516399048402633, 29.925374225422843 ], [ -95.516598048593139, 29.92537322544311 ], [ -95.517187048657192, 29.925366226177569 ], [ -95.517975048667481, 29.925360226045509 ], [ -95.518773048676039, 29.925354226124284 ], [ -95.51956704874658, 29.92534822605327 ], [ -95.520404049311267, 29.925341225798462 ], [ -95.520979048906284, 29.925285225582002 ], [ -95.521153049442376, 29.925280225886794 ], [ -95.521959049436319, 29.925250226014889 ], [ -95.522387049459269, 29.925250225816853 ], [ -95.52275605000959, 29.92525022567597 ], [ -95.523520049935527, 29.925232225777282 ], [ -95.523858050497779, 29.925228225431617 ], [ -95.524342050667713, 29.925225225878535 ], [ -95.525104049985984, 29.925221225635358 ], [ -95.525177050446189, 29.925223225644132 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 799, "Tract": "48201534101", "Area_SqMi": 2.9926346228924281, "total_2009": 2734, "total_2010": 2742, "total_2011": 2921, "total_2012": 3410, "total_2013": 3414, "total_2014": 3731, "total_2015": 3360, "total_2016": 3141, "total_2017": 3109, "total_2018": 3447, "total_2019": 3690, "total_2020": 3493, "age1": 1445, "age2": 2732, "age3": 970, "earn1": 800, "earn2": 1585, "earn3": 2762, "naics_s01": 30, "naics_s02": 111, "naics_s03": 0, "naics_s04": 956, "naics_s05": 486, "naics_s06": 202, "naics_s07": 739, "naics_s08": 1504, "naics_s09": 0, "naics_s10": 0, "naics_s11": 46, "naics_s12": 448, "naics_s13": 17, "naics_s14": 122, "naics_s15": 0, "naics_s16": 118, "naics_s17": 291, "naics_s18": 47, "naics_s19": 21, "naics_s20": 9, "race1": 3569, "race2": 1012, "race3": 54, "race4": 400, "race5": 16, "race6": 96, "ethnicity1": 3225, "ethnicity2": 1922, "edu1": 946, "edu2": 1002, "edu3": 1048, "edu4": 706, "Shape_Length": 45678.119720281436, "Shape_Area": 83429531.340894341, "total_2021": 3410, "total_2022": 5147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.547906056797416, 29.928120225581317 ], [ -95.54790605597131, 29.928058225638448 ], [ -95.54789705607854, 29.927701224729788 ], [ -95.547892056455851, 29.926802225196194 ], [ -95.547888056082357, 29.925740224533683 ], [ -95.547887056336492, 29.925514224571842 ], [ -95.547880056305289, 29.925219224225476 ], [ -95.547875056021667, 29.924990224955355 ], [ -95.547883055895099, 29.924842224454206 ], [ -95.547879056518994, 29.924693224859393 ], [ -95.54787905602214, 29.924381224754836 ], [ -95.54786905644346, 29.923563224016576 ], [ -95.547862055850885, 29.923276223928141 ], [ -95.547865056428876, 29.922993224040606 ], [ -95.547857056317582, 29.922250223708257 ], [ -95.54785605577338, 29.92218522392908 ], [ -95.547854056351852, 29.922078223960551 ], [ -95.547861056585447, 29.921949224005758 ], [ -95.547857056479344, 29.921818224405698 ], [ -95.547856056167205, 29.921349224195797 ], [ -95.547849055623757, 29.920723223625593 ], [ -95.547847056041334, 29.920200223207871 ], [ -95.547845055605094, 29.919744223973321 ], [ -95.547835056331337, 29.918834223667034 ], [ -95.547831056069583, 29.918028223001439 ], [ -95.547829056340149, 29.917361223326871 ], [ -95.54782205565256, 29.916108222580611 ], [ -95.547806055508417, 29.915850223110571 ], [ -95.547790055836657, 29.915768222645777 ], [ -95.547764056354268, 29.915691222496701 ], [ -95.5477240560258, 29.915620222694518 ], [ -95.54766705527598, 29.915558222970333 ], [ -95.547597055628003, 29.915509222685369 ], [ -95.547513055592177, 29.915471223012354 ], [ -95.547411055493157, 29.915446222244558 ], [ -95.547290055411253, 29.91543422259771 ], [ -95.547154055526661, 29.915431222893172 ], [ -95.546541055595966, 29.915435222668684 ], [ -95.54547905521126, 29.915442222812132 ], [ -95.544371054951114, 29.915439222756394 ], [ -95.543875054927057, 29.915447222886119 ], [ -95.539416053405077, 29.915469223178714 ], [ -95.539167053489706, 29.915463223108819 ], [ -95.539055053308658, 29.915445222969709 ], [ -95.539004053763634, 29.915428222693404 ], [ -95.538953053377199, 29.915412223341516 ], [ -95.538859053711676, 29.91536722340301 ], [ -95.53877505313767, 29.915311223335163 ], [ -95.538704052993594, 29.915243222875571 ], [ -95.538649053742986, 29.915163222708532 ], [ -95.538610053077733, 29.915075223048095 ], [ -95.538583053390312, 29.914982222988129 ], [ -95.538569053430891, 29.91487922270457 ], [ -95.538564053261553, 29.914768222961857 ], [ -95.538555053084906, 29.912790222463368 ], [ -95.538546052932517, 29.912085221955703 ], [ -95.538548053706748, 29.911557222251712 ], [ -95.538539052938901, 29.910415221879244 ], [ -95.538539053582113, 29.910393222267452 ], [ -95.538532053059981, 29.909682221837173 ], [ -95.538534053202724, 29.909297222049275 ], [ -95.538529053641398, 29.908643221662889 ], [ -95.538523053037011, 29.908169221622476 ], [ -95.538528053555964, 29.908092221874053 ], [ -95.53852305361049, 29.907723221098454 ], [ -95.538516053240556, 29.907183221444068 ], [ -95.538511053341622, 29.906713221076433 ], [ -95.538507052537355, 29.906048220791167 ], [ -95.538507052941313, 29.90514722114543 ], [ -95.538501052997887, 29.904811220796027 ], [ -95.538493053445521, 29.904686220889989 ], [ -95.538490053428347, 29.904293220932548 ], [ -95.538490052999407, 29.904205220425247 ], [ -95.538477053392398, 29.903355220493996 ], [ -95.538477052814812, 29.902948220068527 ], [ -95.538473052915023, 29.902791219998303 ], [ -95.538472052523545, 29.90271722077598 ], [ -95.538464053022707, 29.902293220372542 ], [ -95.538466052333931, 29.901954220053291 ], [ -95.538463053287884, 29.90148421994127 ], [ -95.538459053196817, 29.90053221967506 ], [ -95.53845205311859, 29.900389219763703 ], [ -95.538443052255985, 29.899824219631704 ], [ -95.538424052753754, 29.899679219593715 ], [ -95.53842505280079, 29.899529219742213 ], [ -95.538420052815013, 29.899379219446217 ], [ -95.538424052278543, 29.899221219684133 ], [ -95.538419052504011, 29.898910220018749 ], [ -95.538422052918392, 29.898755219940405 ], [ -95.538416052336288, 29.89851421910144 ], [ -95.538406052219983, 29.897858219028389 ], [ -95.538396052794468, 29.897144219312509 ], [ -95.538400052931223, 29.897030218905385 ], [ -95.538399052228115, 29.896812219441891 ], [ -95.538372052130669, 29.896459219482093 ], [ -95.538356052787705, 29.896342219181129 ], [ -95.538307052553577, 29.896125218892053 ], [ -95.538084051984882, 29.896114218925955 ], [ -95.537998052488874, 29.896113219518217 ], [ -95.5379150522689, 29.896119219404529 ], [ -95.537723052629232, 29.896118218796563 ], [ -95.537617052296909, 29.896112219000919 ], [ -95.537380052037449, 29.896113219402032 ], [ -95.536520052252015, 29.896121219471073 ], [ -95.536231051503322, 29.896128219096624 ], [ -95.535919052240303, 29.896131218897477 ], [ -95.535240052083608, 29.896137219518408 ], [ -95.534903051707843, 29.896141219531064 ], [ -95.534393051648394, 29.896175218818154 ], [ -95.534077051087934, 29.896208219631923 ], [ -95.53372005145296, 29.896251219154163 ], [ -95.533379051616464, 29.896286218939014 ], [ -95.533027051118651, 29.89633321970571 ], [ -95.532841050956264, 29.89635421887078 ], [ -95.531925050694042, 29.896458219728338 ], [ -95.531258050667304, 29.896528218946219 ], [ -95.530829051020831, 29.896541219391477 ], [ -95.530365050235503, 29.896552219494698 ], [ -95.529667050021743, 29.896551219197701 ], [ -95.528792050182105, 29.896554219317288 ], [ -95.528092050098877, 29.896560219172184 ], [ -95.527642049996714, 29.896584219254326 ], [ -95.527271049927492, 29.896618219665481 ], [ -95.526906049841983, 29.89666721929574 ], [ -95.526620049670342, 29.896714219281808 ], [ -95.526091049702941, 29.89678521973525 ], [ -95.5256280494675, 29.896835219612214 ], [ -95.525305049155165, 29.89685722003027 ], [ -95.525217048823805, 29.896859219522344 ], [ -95.525047049646886, 29.896857219875148 ], [ -95.524923049497616, 29.896855219873906 ], [ -95.524928049563158, 29.897211220090885 ], [ -95.524935049050214, 29.897396219881731 ], [ -95.524931049627128, 29.897485220267356 ], [ -95.524930049580362, 29.897967219496387 ], [ -95.524953048881358, 29.899871219949087 ], [ -95.524954049658191, 29.900087220800724 ], [ -95.52497104944861, 29.901003220462787 ], [ -95.524990049431722, 29.902539221048645 ], [ -95.524993049611808, 29.902668221268751 ], [ -95.525009049218255, 29.90388022150432 ], [ -95.52500904900181, 29.90414722141454 ], [ -95.525029049120704, 29.905418221382803 ], [ -95.525026050077997, 29.906129221543662 ], [ -95.525013049184182, 29.906694221331978 ], [ -95.52502704989908, 29.907506221641821 ], [ -95.525034049465447, 29.907978221759809 ], [ -95.525039050169426, 29.908968222105422 ], [ -95.525052050093322, 29.909660221924767 ], [ -95.525069050182495, 29.911282222735167 ], [ -95.525049049824048, 29.912831222746441 ], [ -95.525061049645416, 29.913611223387282 ], [ -95.525058050336725, 29.913867223478636 ], [ -95.52506205001616, 29.91491922361293 ], [ -95.525061050411807, 29.915742223962095 ], [ -95.525069050042745, 29.915883223886038 ], [ -95.525070050368072, 29.91663822339406 ], [ -95.525072049868982, 29.917370223592471 ], [ -95.52507904990712, 29.918458224039803 ], [ -95.525084050135973, 29.918612223749594 ], [ -95.525090049871523, 29.919353223830985 ], [ -95.525093050676588, 29.919412224163107 ], [ -95.525124050212938, 29.920025224801453 ], [ -95.525133050555851, 29.920396224827716 ], [ -95.525133050651775, 29.920467224048931 ], [ -95.525138050206479, 29.921408224303214 ], [ -95.52514405025002, 29.921922224340875 ], [ -95.525144050471695, 29.922345224639592 ], [ -95.525157050288087, 29.923424225483195 ], [ -95.525170050793548, 29.924327225528049 ], [ -95.525171050805326, 29.924398225270522 ], [ -95.525177050446189, 29.925223225644132 ], [ -95.525104049985984, 29.925221225635358 ], [ -95.524342050667713, 29.925225225878535 ], [ -95.523858050497779, 29.925228225431617 ], [ -95.523520049935527, 29.925232225777282 ], [ -95.52275605000959, 29.92525022567597 ], [ -95.522387049459269, 29.925250225816853 ], [ -95.521959049436319, 29.925250226014889 ], [ -95.521153049442376, 29.925280225886794 ], [ -95.520979048906284, 29.925285225582002 ], [ -95.520404049311267, 29.925341225798462 ], [ -95.51956704874658, 29.92534822605327 ], [ -95.518773048676039, 29.925354226124284 ], [ -95.517975048667481, 29.925360226045509 ], [ -95.517187048657192, 29.925366226177569 ], [ -95.516598048593139, 29.92537322544311 ], [ -95.516399048402633, 29.925374225422843 ], [ -95.515357047803306, 29.92537522616551 ], [ -95.515406048451752, 29.925459225785151 ], [ -95.516161048236739, 29.926752225742344 ], [ -95.516435048017911, 29.927237225825596 ], [ -95.517356048564693, 29.928914226185604 ], [ -95.51934304943471, 29.932399227040197 ], [ -95.520818049315992, 29.935000227506148 ], [ -95.520928050150985, 29.935194227444008 ], [ -95.521525049784145, 29.936282227417262 ], [ -95.521579050327702, 29.936390227969159 ], [ -95.521699050096544, 29.93663222827491 ], [ -95.521726049807413, 29.936680227678057 ], [ -95.522083050603868, 29.936671228230033 ], [ -95.522800049998722, 29.936653227424664 ], [ -95.524553050713578, 29.936563228126815 ], [ -95.525309051395553, 29.93650022816573 ], [ -95.52649305124055, 29.936369227955929 ], [ -95.527655051617089, 29.93612622743985 ], [ -95.528306051446663, 29.935947227968196 ], [ -95.52897005143025, 29.935723227629172 ], [ -95.529232051885359, 29.935651227529878 ], [ -95.529447052422483, 29.935591227384187 ], [ -95.529982052155049, 29.935442227269302 ], [ -95.531096052777499, 29.934997227254826 ], [ -95.538146054134671, 29.932067226249501 ], [ -95.543895055380617, 29.929844225772911 ], [ -95.544139055750705, 29.929732225962379 ], [ -95.544329055671241, 29.929659225912314 ], [ -95.546240056085082, 29.928924225628585 ], [ -95.547817056351874, 29.928398225129637 ], [ -95.547902056751056, 29.928356225494792 ], [ -95.547906056797416, 29.928120225581317 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 800, "Tract": "48201540101", "Area_SqMi": 4.6848843147495831, "total_2009": 10930, "total_2010": 9627, "total_2011": 10145, "total_2012": 10409, "total_2013": 11346, "total_2014": 12996, "total_2015": 12580, "total_2016": 12351, "total_2017": 12096, "total_2018": 11505, "total_2019": 11368, "total_2020": 10321, "age1": 1767, "age2": 5852, "age3": 2578, "earn1": 872, "earn2": 2309, "earn3": 7016, "naics_s01": 0, "naics_s02": 208, "naics_s03": 0, "naics_s04": 1391, "naics_s05": 4007, "naics_s06": 1986, "naics_s07": 141, "naics_s08": 174, "naics_s09": 10, "naics_s10": 81, "naics_s11": 388, "naics_s12": 463, "naics_s13": 226, "naics_s14": 219, "naics_s15": 17, "naics_s16": 236, "naics_s17": 15, "naics_s18": 541, "naics_s19": 93, "naics_s20": 1, "race1": 7721, "race2": 1245, "race3": 105, "race4": 963, "race5": 17, "race6": 146, "ethnicity1": 6339, "ethnicity2": 3858, "edu1": 2038, "edu2": 2126, "edu3": 2465, "edu4": 1801, "Shape_Length": 51095.767214673899, "Shape_Area": 130606556.43557802, "total_2021": 9626, "total_2022": 10197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.60806706862779, 29.863112209888239 ], [ -95.607895069089267, 29.86190820993577 ], [ -95.607621068766079, 29.859981209078459 ], [ -95.607544068308883, 29.859401209306125 ], [ -95.607472068171347, 29.858915209196713 ], [ -95.607367068828694, 29.858194209389989 ], [ -95.607288068625479, 29.85768720925568 ], [ -95.607249068319348, 29.857441208722854 ], [ -95.607210068303232, 29.857161208663598 ], [ -95.607094068718126, 29.85634120867531 ], [ -95.607090068816788, 29.85631420863022 ], [ -95.607086068041923, 29.856286208497359 ], [ -95.607071068801858, 29.856184208735286 ], [ -95.607067068196528, 29.856155208539569 ], [ -95.607021067945595, 29.855819208068528 ], [ -95.606900068622636, 29.854976208578595 ], [ -95.606849067988762, 29.854609208432301 ], [ -95.606561067608183, 29.852547207859569 ], [ -95.606457068350835, 29.851741208068663 ], [ -95.60630706752309, 29.85065820779873 ], [ -95.606293067919125, 29.850563207320437 ], [ -95.606226067762464, 29.850075207629516 ], [ -95.606049067784795, 29.848924207274237 ], [ -95.605940068072641, 29.848112207207414 ], [ -95.605860067492827, 29.847455206635733 ], [ -95.605774067732369, 29.846836206462765 ], [ -95.60551506699592, 29.84515520599771 ], [ -95.60513206734079, 29.842446205731175 ], [ -95.605124067070889, 29.842389205919506 ], [ -95.605006066783872, 29.841544205812319 ], [ -95.604996067232136, 29.841430205510811 ], [ -95.604995066622919, 29.841386205969773 ], [ -95.604993067589916, 29.841245205920256 ], [ -95.604873066678664, 29.834632204265802 ], [ -95.604861066799359, 29.834321203760112 ], [ -95.604846066244818, 29.83374120428892 ], [ -95.601073066099048, 29.832626204261434 ], [ -95.597334064669582, 29.83165520377803 ], [ -95.596761064185188, 29.83152320365355 ], [ -95.594540064112891, 29.831556204403789 ], [ -95.594123064329381, 29.831561204360774 ], [ -95.586386061613041, 29.831653204315248 ], [ -95.581235060998409, 29.831724204105424 ], [ -95.579031059730141, 29.831755204605695 ], [ -95.576826059453438, 29.831785204719637 ], [ -95.576295059488444, 29.831792204294501 ], [ -95.575862059197249, 29.831798204830832 ], [ -95.574855058536656, 29.831791204668761 ], [ -95.574753058932785, 29.831789204965371 ], [ -95.572981058883158, 29.831755204331841 ], [ -95.572415058824021, 29.831757204388026 ], [ -95.571158058340487, 29.831775204714916 ], [ -95.569960057532555, 29.831809204522646 ], [ -95.567132057316314, 29.831842204636729 ], [ -95.565467056406462, 29.831863204679522 ], [ -95.564314056700312, 29.831927205330924 ], [ -95.563889056028373, 29.831935205392984 ], [ -95.563700056362634, 29.831939205103282 ], [ -95.563702056262983, 29.832158205131265 ], [ -95.563709055769422, 29.833582205142257 ], [ -95.563704055960841, 29.836590206184582 ], [ -95.563663056156003, 29.838459206592471 ], [ -95.563671056965077, 29.840021206429242 ], [ -95.56365505627403, 29.846681208558074 ], [ -95.563672057362197, 29.850126208715324 ], [ -95.563673057319079, 29.850297208849568 ], [ -95.563922057495404, 29.850294208456585 ], [ -95.564320056754454, 29.850291209190445 ], [ -95.564861057653687, 29.850285208424339 ], [ -95.565908056994317, 29.850293209189186 ], [ -95.566999057802946, 29.850298208604251 ], [ -95.567209057668208, 29.850299208746819 ], [ -95.567550057435554, 29.850301209015502 ], [ -95.567687058209046, 29.850297209085369 ], [ -95.567827057833185, 29.850302208824615 ], [ -95.568483058624551, 29.850305208921544 ], [ -95.568601058579745, 29.850295208861652 ], [ -95.568728058664576, 29.850296208729983 ], [ -95.568871058664115, 29.850319208795941 ], [ -95.568991058020856, 29.850305208691051 ], [ -95.569213058762841, 29.85030720859508 ], [ -95.569702058798669, 29.850302208498881 ], [ -95.570075058867189, 29.850300209045329 ], [ -95.570250058584108, 29.850303208493802 ], [ -95.570357059113178, 29.850305209044187 ], [ -95.570443058430456, 29.850313208196322 ], [ -95.570769058490342, 29.850310208978517 ], [ -95.571592059471044, 29.850307208342176 ], [ -95.571710059144991, 29.850307209014932 ], [ -95.572111059155972, 29.850304208284545 ], [ -95.572784059643695, 29.850301208885341 ], [ -95.572935058908953, 29.850301208691842 ], [ -95.573244059890868, 29.850301208893534 ], [ -95.574939059809864, 29.850300208062222 ], [ -95.57615406036625, 29.850294208224273 ], [ -95.576849060155013, 29.850287208176638 ], [ -95.577125060322288, 29.850289208462542 ], [ -95.578481060353525, 29.850287208291878 ], [ -95.579270060760365, 29.850286208567447 ], [ -95.57949906071822, 29.85028520817287 ], [ -95.579986061498929, 29.850290207911105 ], [ -95.580353061395158, 29.850290208456862 ], [ -95.581196061148276, 29.850289208567606 ], [ -95.581473061415537, 29.850306208448842 ], [ -95.581470061375128, 29.850921208680965 ], [ -95.581469061932808, 29.851150208096652 ], [ -95.581467061318165, 29.851782208708734 ], [ -95.58146806177119, 29.852238208788513 ], [ -95.58146606188366, 29.852891208927876 ], [ -95.581485061505077, 29.852989208384923 ], [ -95.581481061678929, 29.853207208909907 ], [ -95.581461061225866, 29.853326208718865 ], [ -95.581466061755847, 29.853429209150239 ], [ -95.581464061838162, 29.853699209325619 ], [ -95.581460061808542, 29.853854208851974 ], [ -95.581462061877332, 29.853926209075858 ], [ -95.58146506180266, 29.854174208690342 ], [ -95.5814670612464, 29.854491209427056 ], [ -95.581467062195145, 29.85531320908094 ], [ -95.581468061827323, 29.855629209423814 ], [ -95.581467061696529, 29.85592820899695 ], [ -95.58146606166197, 29.856389209310596 ], [ -95.581459061806441, 29.85737320948488 ], [ -95.581467062254447, 29.857603209535831 ], [ -95.581467061691313, 29.858142209935195 ], [ -95.58146006145806, 29.858229210097832 ], [ -95.581466062207099, 29.858348209915885 ], [ -95.581468061801175, 29.85870820967995 ], [ -95.581468062343447, 29.859224210101932 ], [ -95.581460061536475, 29.859309209867892 ], [ -95.581467061964659, 29.85942221032845 ], [ -95.581463062389602, 29.859626210346686 ], [ -95.581464061954605, 29.85985621052177 ], [ -95.581466061769049, 29.860147210681305 ], [ -95.581462061506656, 29.860307210249758 ], [ -95.581465062196401, 29.860551210009358 ], [ -95.581462062234166, 29.860716210129905 ], [ -95.581468062527279, 29.86189921032074 ], [ -95.581464062018782, 29.862460210683182 ], [ -95.581491062039603, 29.863306211162769 ], [ -95.581490062286804, 29.864152210890538 ], [ -95.581490062054669, 29.864528211585728 ], [ -95.58148906248789, 29.867096211591996 ], [ -95.581754062394083, 29.867093212049515 ], [ -95.583417062602905, 29.867069211500741 ], [ -95.584098062635761, 29.867058211340055 ], [ -95.584968063505556, 29.867045211186159 ], [ -95.585848063486395, 29.867032211675607 ], [ -95.586129063745574, 29.867017211882182 ], [ -95.586512063553982, 29.866972211908365 ], [ -95.586829063310645, 29.866922211846376 ], [ -95.587089063947246, 29.866871211272592 ], [ -95.587418063430434, 29.866797211159238 ], [ -95.587664063483132, 29.866731211542763 ], [ -95.588030063400865, 29.866614211397145 ], [ -95.588404063827412, 29.866471211634007 ], [ -95.588652064549947, 29.866361211250279 ], [ -95.588901064604499, 29.866240211629439 ], [ -95.589261064429806, 29.866057210977331 ], [ -95.590770064872899, 29.865274210841783 ], [ -95.591283064227113, 29.865012210521439 ], [ -95.591411064258338, 29.864945211141102 ], [ -95.592488064954054, 29.864389211070986 ], [ -95.593006064590256, 29.864122210960094 ], [ -95.593491065123231, 29.863872210515289 ], [ -95.593703064947192, 29.863771210698516 ], [ -95.59384106546139, 29.863710210673936 ], [ -95.594121065400756, 29.863602210676081 ], [ -95.594410064891349, 29.863504210895563 ], [ -95.594556065890771, 29.863459210341926 ], [ -95.594746065071661, 29.863409210641031 ], [ -95.594855065404502, 29.863381210283471 ], [ -95.595165066072525, 29.863314210634726 ], [ -95.595483065993164, 29.863258210043398 ], [ -95.595642065485592, 29.863235210236926 ], [ -95.595953065738684, 29.863202210220788 ], [ -95.596263065891989, 29.863183210304545 ], [ -95.596713065464499, 29.863175210745872 ], [ -95.596882066290377, 29.863174210139285 ], [ -95.597642066363846, 29.86316821040662 ], [ -95.598748066315423, 29.863159210277598 ], [ -95.598928066432904, 29.863158210704292 ], [ -95.599952066514675, 29.863151210264316 ], [ -95.600195066458198, 29.863150210065058 ], [ -95.60125306677574, 29.863143210301835 ], [ -95.60195506711537, 29.863138210423639 ], [ -95.60382706743134, 29.863123209828863 ], [ -95.604029067327815, 29.863121209766639 ], [ -95.604902068508622, 29.863117210146463 ], [ -95.606091068418991, 29.863108210393882 ], [ -95.60806706862779, 29.863112209888239 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 801, "Tract": "48201540102", "Area_SqMi": 3.8903624974814117, "total_2009": 12184, "total_2010": 14032, "total_2011": 13922, "total_2012": 15914, "total_2013": 17033, "total_2014": 17470, "total_2015": 18058, "total_2016": 15225, "total_2017": 12422, "total_2018": 12612, "total_2019": 13326, "total_2020": 12887, "age1": 1750, "age2": 7541, "age3": 3235, "earn1": 868, "earn2": 2198, "earn3": 9460, "naics_s01": 0, "naics_s02": 241, "naics_s03": 21, "naics_s04": 1538, "naics_s05": 4665, "naics_s06": 2787, "naics_s07": 452, "naics_s08": 241, "naics_s09": 3, "naics_s10": 24, "naics_s11": 137, "naics_s12": 537, "naics_s13": 171, "naics_s14": 760, "naics_s15": 2, "naics_s16": 208, "naics_s17": 31, "naics_s18": 85, "naics_s19": 623, "naics_s20": 0, "race1": 9777, "race2": 1395, "race3": 111, "race4": 1070, "race5": 17, "race6": 156, "ethnicity1": 7845, "ethnicity2": 4681, "edu1": 2377, "edu2": 2853, "edu3": 3218, "edu4": 2328, "Shape_Length": 51695.463000325297, "Shape_Area": 108456648.00782207, "total_2021": 11557, "total_2022": 12526 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.608529069404483, 29.879545213067566 ], [ -95.608528070077753, 29.879298213292788 ], [ -95.608526069837922, 29.878562213188342 ], [ -95.608503069899498, 29.878030212881949 ], [ -95.608489069271073, 29.877418213283086 ], [ -95.608471069290715, 29.877201213137091 ], [ -95.608467070034422, 29.877147212683401 ], [ -95.608443069315896, 29.876931212505664 ], [ -95.608425069368806, 29.876758213083917 ], [ -95.608415069890683, 29.876464212961174 ], [ -95.608420069131597, 29.875975212289486 ], [ -95.60842806992838, 29.875829212826606 ], [ -95.608468069850758, 29.875176212629846 ], [ -95.608473069338714, 29.874445211899264 ], [ -95.608468069400587, 29.872468211567163 ], [ -95.608446069132114, 29.871830211948431 ], [ -95.608409068873925, 29.871152211443636 ], [ -95.608411068882489, 29.870942211442337 ], [ -95.608404069142054, 29.870734211466747 ], [ -95.60840906930774, 29.870524211471249 ], [ -95.608406068841575, 29.870282211236464 ], [ -95.608402069039769, 29.869925211240389 ], [ -95.608405069461, 29.869801210981709 ], [ -95.608399069546223, 29.869540211325766 ], [ -95.608399068813256, 29.869301211220847 ], [ -95.608401069548592, 29.869093211238066 ], [ -95.60839606914206, 29.868616210979585 ], [ -95.608323069556178, 29.867694210649031 ], [ -95.608308069556116, 29.867299210593373 ], [ -95.608298069279002, 29.866641210569703 ], [ -95.608297069243548, 29.866596210488993 ], [ -95.608287069456466, 29.865736210453424 ], [ -95.608272068996484, 29.865404210430146 ], [ -95.608270068936449, 29.865364210628908 ], [ -95.608185068666771, 29.864570209794479 ], [ -95.608164068973835, 29.86429321029394 ], [ -95.608125068470841, 29.863615209764198 ], [ -95.608101069228027, 29.863359209645186 ], [ -95.608088069317233, 29.863238209993565 ], [ -95.60806706862779, 29.863112209888239 ], [ -95.606091068418991, 29.863108210393882 ], [ -95.604902068508622, 29.863117210146463 ], [ -95.604029067327815, 29.863121209766639 ], [ -95.60382706743134, 29.863123209828863 ], [ -95.60195506711537, 29.863138210423639 ], [ -95.60125306677574, 29.863143210301835 ], [ -95.600195066458198, 29.863150210065058 ], [ -95.599952066514675, 29.863151210264316 ], [ -95.598928066432904, 29.863158210704292 ], [ -95.598748066315423, 29.863159210277598 ], [ -95.597642066363846, 29.86316821040662 ], [ -95.596882066290377, 29.863174210139285 ], [ -95.596713065464499, 29.863175210745872 ], [ -95.596263065891989, 29.863183210304545 ], [ -95.595953065738684, 29.863202210220788 ], [ -95.595642065485592, 29.863235210236926 ], [ -95.595483065993164, 29.863258210043398 ], [ -95.595165066072525, 29.863314210634726 ], [ -95.594855065404502, 29.863381210283471 ], [ -95.594746065071661, 29.863409210641031 ], [ -95.594556065890771, 29.863459210341926 ], [ -95.594410064891349, 29.863504210895563 ], [ -95.594121065400756, 29.863602210676081 ], [ -95.59384106546139, 29.863710210673936 ], [ -95.593703064947192, 29.863771210698516 ], [ -95.593491065123231, 29.863872210515289 ], [ -95.593006064590256, 29.864122210960094 ], [ -95.592488064954054, 29.864389211070986 ], [ -95.591411064258338, 29.864945211141102 ], [ -95.591283064227113, 29.865012210521439 ], [ -95.590770064872899, 29.865274210841783 ], [ -95.589261064429806, 29.866057210977331 ], [ -95.588901064604499, 29.866240211629439 ], [ -95.588652064549947, 29.866361211250279 ], [ -95.588404063827412, 29.866471211634007 ], [ -95.588030063400865, 29.866614211397145 ], [ -95.587664063483132, 29.866731211542763 ], [ -95.587418063430434, 29.866797211159238 ], [ -95.587089063947246, 29.866871211272592 ], [ -95.586829063310645, 29.866922211846376 ], [ -95.586512063553982, 29.866972211908365 ], [ -95.586129063745574, 29.867017211882182 ], [ -95.585848063486395, 29.867032211675607 ], [ -95.584968063505556, 29.867045211186159 ], [ -95.584098062635761, 29.867058211340055 ], [ -95.583417062602905, 29.867069211500741 ], [ -95.581754062394083, 29.867093212049515 ], [ -95.58148906248789, 29.867096211591996 ], [ -95.581490062054669, 29.864528211585728 ], [ -95.581490062286804, 29.864152210890538 ], [ -95.581491062039603, 29.863306211162769 ], [ -95.581464062018782, 29.862460210683182 ], [ -95.581468062527279, 29.86189921032074 ], [ -95.581462062234166, 29.860716210129905 ], [ -95.581465062196401, 29.860551210009358 ], [ -95.581462061506656, 29.860307210249758 ], [ -95.581466061769049, 29.860147210681305 ], [ -95.581464061954605, 29.85985621052177 ], [ -95.581463062389602, 29.859626210346686 ], [ -95.581467061964659, 29.85942221032845 ], [ -95.581460061536475, 29.859309209867892 ], [ -95.581468062343447, 29.859224210101932 ], [ -95.581468061801175, 29.85870820967995 ], [ -95.581466062207099, 29.858348209915885 ], [ -95.58146006145806, 29.858229210097832 ], [ -95.581467061691313, 29.858142209935195 ], [ -95.581467062254447, 29.857603209535831 ], [ -95.581459061806441, 29.85737320948488 ], [ -95.58146606166197, 29.856389209310596 ], [ -95.581467061696529, 29.85592820899695 ], [ -95.581468061827323, 29.855629209423814 ], [ -95.581467062195145, 29.85531320908094 ], [ -95.5814670612464, 29.854491209427056 ], [ -95.58146506180266, 29.854174208690342 ], [ -95.581462061877332, 29.853926209075858 ], [ -95.581460061808542, 29.853854208851974 ], [ -95.581464061838162, 29.853699209325619 ], [ -95.581466061755847, 29.853429209150239 ], [ -95.581461061225866, 29.853326208718865 ], [ -95.581481061678929, 29.853207208909907 ], [ -95.581485061505077, 29.852989208384923 ], [ -95.58146606188366, 29.852891208927876 ], [ -95.58146806177119, 29.852238208788513 ], [ -95.581467061318165, 29.851782208708734 ], [ -95.581469061932808, 29.851150208096652 ], [ -95.581470061375128, 29.850921208680965 ], [ -95.581473061415537, 29.850306208448842 ], [ -95.581196061148276, 29.850289208567606 ], [ -95.580353061395158, 29.850290208456862 ], [ -95.579986061498929, 29.850290207911105 ], [ -95.57949906071822, 29.85028520817287 ], [ -95.579270060760365, 29.850286208567447 ], [ -95.578481060353525, 29.850287208291878 ], [ -95.577125060322288, 29.850289208462542 ], [ -95.576849060155013, 29.850287208176638 ], [ -95.57615406036625, 29.850294208224273 ], [ -95.574939059809864, 29.850300208062222 ], [ -95.573244059890868, 29.850301208893534 ], [ -95.572935058908953, 29.850301208691842 ], [ -95.572784059643695, 29.850301208885341 ], [ -95.572111059155972, 29.850304208284545 ], [ -95.571710059144991, 29.850307209014932 ], [ -95.571592059471044, 29.850307208342176 ], [ -95.570769058490342, 29.850310208978517 ], [ -95.570443058430456, 29.850313208196322 ], [ -95.570357059113178, 29.850305209044187 ], [ -95.570250058584108, 29.850303208493802 ], [ -95.570075058867189, 29.850300209045329 ], [ -95.569702058798669, 29.850302208498881 ], [ -95.569213058762841, 29.85030720859508 ], [ -95.568991058020856, 29.850305208691051 ], [ -95.568871058664115, 29.850319208795941 ], [ -95.568728058664576, 29.850296208729983 ], [ -95.568601058579745, 29.850295208861652 ], [ -95.568483058624551, 29.850305208921544 ], [ -95.567827057833185, 29.850302208824615 ], [ -95.567687058209046, 29.850297209085369 ], [ -95.567550057435554, 29.850301209015502 ], [ -95.567209057668208, 29.850299208746819 ], [ -95.566999057802946, 29.850298208604251 ], [ -95.565908056994317, 29.850293209189186 ], [ -95.564861057653687, 29.850285208424339 ], [ -95.564320056754454, 29.850291209190445 ], [ -95.563922057495404, 29.850294208456585 ], [ -95.563673057319079, 29.850297208849568 ], [ -95.563674057146471, 29.850438209343558 ], [ -95.563707057542359, 29.857242209957572 ], [ -95.563687057056669, 29.860478210948362 ], [ -95.563709057169405, 29.861053210931686 ], [ -95.56371005699468, 29.861548211135794 ], [ -95.563767058106777, 29.865739212223573 ], [ -95.563770057561328, 29.866393212229941 ], [ -95.563749057529648, 29.867045211851053 ], [ -95.563744057216255, 29.867069211869776 ], [ -95.563720057256447, 29.867281212707113 ], [ -95.563680058179926, 29.867497211950703 ], [ -95.563648057378629, 29.867648212778153 ], [ -95.563548057408369, 29.868003212188992 ], [ -95.563467057205315, 29.868306212491547 ], [ -95.563281057297317, 29.868725212752711 ], [ -95.56302405809268, 29.86918421259368 ], [ -95.562866057341978, 29.869430213110647 ], [ -95.562608057749017, 29.869806213024876 ], [ -95.562090057929183, 29.870401212884151 ], [ -95.561677057569227, 29.870789212735357 ], [ -95.561326057095542, 29.871076212899425 ], [ -95.560939057186502, 29.871380212970053 ], [ -95.560506057527789, 29.87162821364096 ], [ -95.560435056983735, 29.871668213034422 ], [ -95.559937056753171, 29.871912213011431 ], [ -95.55973605682388, 29.872010213123424 ], [ -95.559471057208, 29.872128213030859 ], [ -95.559183056397103, 29.872256213492864 ], [ -95.559305057311249, 29.872341213139109 ], [ -95.559453056621635, 29.872445213796819 ], [ -95.559606056942414, 29.87255321375121 ], [ -95.559673056476626, 29.872600213211047 ], [ -95.559991056898767, 29.872825213868477 ], [ -95.560068056763868, 29.872879213718328 ], [ -95.560814057026576, 29.87340821368787 ], [ -95.561082057467758, 29.873588213639213 ], [ -95.561163057178035, 29.873647213714623 ], [ -95.561539057245625, 29.873924213413744 ], [ -95.562874057679934, 29.874852213475197 ], [ -95.563742058275409, 29.875459214170551 ], [ -95.564774058834587, 29.876182213979497 ], [ -95.565879058732534, 29.87695621451817 ], [ -95.566184058557781, 29.877169214280055 ], [ -95.566713058833287, 29.877542214662014 ], [ -95.567356059309944, 29.878016214032783 ], [ -95.568506059228127, 29.878855214505709 ], [ -95.569509059718499, 29.87948721456441 ], [ -95.569635059974786, 29.879481214578419 ], [ -95.569932059908481, 29.879467214717653 ], [ -95.570377059900963, 29.879446214457253 ], [ -95.572936060575131, 29.879452214813004 ], [ -95.573633060339859, 29.879502214479491 ], [ -95.574377061090189, 29.879695214207644 ], [ -95.575042061139982, 29.87990421492314 ], [ -95.575274061534444, 29.879977214861299 ], [ -95.576072061712452, 29.880167214895643 ], [ -95.576474061316731, 29.880263214792141 ], [ -95.577434062165452, 29.880289214825726 ], [ -95.578340062144278, 29.880282214091043 ], [ -95.579926062564184, 29.880252214221727 ], [ -95.582077063014438, 29.880229213920106 ], [ -95.582335063075206, 29.880227214625933 ], [ -95.582459063214841, 29.880226214243393 ], [ -95.582515063177041, 29.880226214641635 ], [ -95.584565063331041, 29.880149213972423 ], [ -95.584801064204754, 29.880145213887669 ], [ -95.58556406367434, 29.880114214232872 ], [ -95.587176064237454, 29.880084213751449 ], [ -95.587458064055639, 29.880079213814664 ], [ -95.589189064364973, 29.880075213811264 ], [ -95.591430065714974, 29.88003121409589 ], [ -95.592444065620512, 29.880022213757506 ], [ -95.594022066473414, 29.879990214264271 ], [ -95.594268066099616, 29.879985213947162 ], [ -95.596312066790162, 29.879989213513529 ], [ -95.598148067157524, 29.879957213932961 ], [ -95.599339066928465, 29.879936213454378 ], [ -95.600166067274543, 29.879933213222987 ], [ -95.600941068251302, 29.879918213857767 ], [ -95.602411068251442, 29.879847213152985 ], [ -95.603113068335901, 29.879816213626004 ], [ -95.606039068898596, 29.879600213586354 ], [ -95.608529069404483, 29.879545213067566 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 802, "Tract": "48201540903", "Area_SqMi": 0.5519274087835021, "total_2009": 1026, "total_2010": 1114, "total_2011": 1186, "total_2012": 1362, "total_2013": 1558, "total_2014": 1639, "total_2015": 1767, "total_2016": 1618, "total_2017": 1409, "total_2018": 1546, "total_2019": 1581, "total_2020": 1490, "age1": 480, "age2": 934, "age3": 358, "earn1": 317, "earn2": 390, "earn3": 1065, "naics_s01": 0, "naics_s02": 13, "naics_s03": 7, "naics_s04": 363, "naics_s05": 237, "naics_s06": 122, "naics_s07": 146, "naics_s08": 25, "naics_s09": 209, "naics_s10": 18, "naics_s11": 51, "naics_s12": 53, "naics_s13": 0, "naics_s14": 23, "naics_s15": 32, "naics_s16": 121, "naics_s17": 4, "naics_s18": 258, "naics_s19": 90, "naics_s20": 0, "race1": 1260, "race2": 333, "race3": 18, "race4": 135, "race5": 1, "race6": 25, "ethnicity1": 1174, "ethnicity2": 598, "edu1": 283, "edu2": 336, "edu3": 387, "edu4": 286, "Shape_Length": 16338.859824529318, "Shape_Area": 15386791.523683103, "total_2021": 1672, "total_2022": 1772 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.63411507702962, 29.902294216951084 ], [ -95.63396107761001, 29.902236217349778 ], [ -95.633678076860718, 29.902107216836988 ], [ -95.633403077120192, 29.901967217379884 ], [ -95.633311076655531, 29.901912217409418 ], [ -95.633224077284382, 29.901842216723686 ], [ -95.63315807675589, 29.901821217000649 ], [ -95.633108076518965, 29.901805217270372 ], [ -95.632997076765818, 29.90175221702647 ], [ -95.632758076847125, 29.901610216786938 ], [ -95.632236077044936, 29.901310216554545 ], [ -95.632085077240518, 29.901231216852505 ], [ -95.631894076584771, 29.901136216832381 ], [ -95.631548076322971, 29.900984216972688 ], [ -95.631443077055849, 29.900942216678551 ], [ -95.631193076441562, 29.900850216712005 ], [ -95.630938076771898, 29.900769216712103 ], [ -95.630608076732258, 29.900675217037822 ], [ -95.63024107667971, 29.900595216788755 ], [ -95.629899076024728, 29.900536217032563 ], [ -95.629584076047323, 29.900500216877955 ], [ -95.629560076023836, 29.900498216903301 ], [ -95.629478076295626, 29.900491216657628 ], [ -95.6292540762866, 29.900463216427543 ], [ -95.629177075859843, 29.900456217019482 ], [ -95.628227075974721, 29.900462216973086 ], [ -95.62799907603258, 29.900464216602177 ], [ -95.627701075655395, 29.90046621672133 ], [ -95.627097075484386, 29.900469216941858 ], [ -95.626690075015418, 29.900449216935748 ], [ -95.626386075573265, 29.900417216992459 ], [ -95.62608607555994, 29.90037221702411 ], [ -95.62585807549614, 29.900330217276995 ], [ -95.625558075445824, 29.900264216938513 ], [ -95.625298075085766, 29.900195217158323 ], [ -95.624220074274618, 29.899856217036511 ], [ -95.624017074277205, 29.89979721673944 ], [ -95.623642074391327, 29.899706216659716 ], [ -95.623586074578071, 29.899693216833953 ], [ -95.623311073964317, 29.899639217289263 ], [ -95.623037074320976, 29.899598216806446 ], [ -95.622967074453783, 29.899591216686268 ], [ -95.622743074727182, 29.899567216516186 ], [ -95.622319074014271, 29.899541217252242 ], [ -95.622195073814396, 29.899537216891826 ], [ -95.620807074221972, 29.89949421664614 ], [ -95.620617073874726, 29.899488217022753 ], [ -95.62060307413185, 29.899721216846544 ], [ -95.620583073849758, 29.900222217394358 ], [ -95.620569074004649, 29.900617216789609 ], [ -95.62054607356545, 29.90135521701097 ], [ -95.620472073558602, 29.903066217859568 ], [ -95.620419073593965, 29.904520217505585 ], [ -95.620374074382198, 29.90572621788359 ], [ -95.620373073588041, 29.90576621799482 ], [ -95.620347073784544, 29.906454218605862 ], [ -95.62031507355222, 29.9072062189021 ], [ -95.620193073951626, 29.910488219223897 ], [ -95.620181074550317, 29.910784219071715 ], [ -95.620145074526633, 29.911613219395864 ], [ -95.620118074011785, 29.912474219205784 ], [ -95.620084074127149, 29.913349220022937 ], [ -95.620085074354691, 29.913472219909949 ], [ -95.620096074656431, 29.913589219554975 ], [ -95.620106074351298, 29.913630219556754 ], [ -95.620124074631079, 29.913697220002188 ], [ -95.620169074262265, 29.913800219609861 ], [ -95.620493074233821, 29.914325219664512 ], [ -95.620529074412005, 29.914384219845534 ], [ -95.620528074079658, 29.914405219936238 ], [ -95.620541074613868, 29.914398220262981 ], [ -95.62055607459223, 29.914438219720235 ], [ -95.620610074523086, 29.914524220290499 ], [ -95.620772074406801, 29.914449220091456 ], [ -95.623305075188867, 29.913319219524748 ], [ -95.624237075347196, 29.912856219526724 ], [ -95.625054075854905, 29.912447219071112 ], [ -95.625961076103764, 29.911915219264507 ], [ -95.626438075395896, 29.911605219270864 ], [ -95.626810075750456, 29.911331219218145 ], [ -95.627043075854417, 29.911160219402742 ], [ -95.627842076562487, 29.910581219275993 ], [ -95.628094076031516, 29.910354218833106 ], [ -95.628503075729881, 29.909988218356126 ], [ -95.62934607686833, 29.909183218510069 ], [ -95.629436075917397, 29.909083218201594 ], [ -95.629552076304648, 29.908953218812677 ], [ -95.630167076887588, 29.908275218015561 ], [ -95.630728076572638, 29.90753521801377 ], [ -95.63086307704765, 29.907358217756329 ], [ -95.631117076395967, 29.906970218027375 ], [ -95.631851076785281, 29.905824218046391 ], [ -95.631897076669503, 29.905753217802918 ], [ -95.632290077377206, 29.905153217644635 ], [ -95.632352076618275, 29.905044217261686 ], [ -95.63263507736292, 29.904602217129714 ], [ -95.633032077467263, 29.903983217747282 ], [ -95.633642077460308, 29.903031217244795 ], [ -95.633723077137972, 29.902903217276084 ], [ -95.633916077705791, 29.902604216724733 ], [ -95.63411507702962, 29.902294216951084 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 803, "Tract": "48201554404", "Area_SqMi": 2.3407535059122839, "total_2009": 591, "total_2010": 600, "total_2011": 391, "total_2012": 510, "total_2013": 539, "total_2014": 604, "total_2015": 724, "total_2016": 810, "total_2017": 929, "total_2018": 1528, "total_2019": 1414, "total_2020": 823, "age1": 206, "age2": 624, "age3": 220, "earn1": 132, "earn2": 225, "earn3": 693, "naics_s01": 0, "naics_s02": 0, "naics_s03": 5, "naics_s04": 94, "naics_s05": 13, "naics_s06": 13, "naics_s07": 109, "naics_s08": 46, "naics_s09": 0, "naics_s10": 85, "naics_s11": 61, "naics_s12": 419, "naics_s13": 9, "naics_s14": 20, "naics_s15": 2, "naics_s16": 41, "naics_s17": 43, "naics_s18": 52, "naics_s19": 38, "naics_s20": 0, "race1": 840, "race2": 86, "race3": 7, "race4": 96, "race5": 1, "race6": 20, "ethnicity1": 845, "ethnicity2": 205, "edu1": 116, "edu2": 194, "edu3": 235, "edu4": 299, "Shape_Length": 39953.245912906961, "Shape_Area": 65256201.505170159, "total_2021": 895, "total_2022": 1050 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.654454086131992, 29.986583233729565 ], [ -95.654501086170228, 29.98575223313432 ], [ -95.653887086020418, 29.982746232586727 ], [ -95.653876086288236, 29.982667232857942 ], [ -95.653857086435309, 29.982596232459702 ], [ -95.653846085571075, 29.982520232731478 ], [ -95.653827086366306, 29.982451232364546 ], [ -95.653802086409542, 29.982309232318521 ], [ -95.653785085622616, 29.982242233017342 ], [ -95.653739085920634, 29.982014232143449 ], [ -95.653700085713297, 29.981815232702719 ], [ -95.653605085684177, 29.98138623215657 ], [ -95.653579085674039, 29.981146232020524 ], [ -95.653554085994557, 29.981048232412252 ], [ -95.653542085648354, 29.980953232733292 ], [ -95.653499086121386, 29.980721232344347 ], [ -95.653466086109447, 29.980563232038346 ], [ -95.65338108579293, 29.980157232369923 ], [ -95.653368085435403, 29.980094232506609 ], [ -95.653275085258102, 29.979641232174853 ], [ -95.653269086166162, 29.979614232142222 ], [ -95.653252085621148, 29.979545231767663 ], [ -95.653211086047918, 29.979341231715019 ], [ -95.653143085175003, 29.979001232003736 ], [ -95.653105086092268, 29.978846232398382 ], [ -95.652908085135664, 29.978020232022722 ], [ -95.652879085884194, 29.977917231675331 ], [ -95.652658085237519, 29.977109231962526 ], [ -95.652622085234768, 29.977004231181201 ], [ -95.652582085671028, 29.976852232004596 ], [ -95.652554084870289, 29.976740231917468 ], [ -95.652544085740999, 29.976699231188757 ], [ -95.652510085011315, 29.976606231626533 ], [ -95.652364085733396, 29.975979231223139 ], [ -95.652326085239963, 29.975840231378552 ], [ -95.652282085652615, 29.975701231789039 ], [ -95.652244085688849, 29.975563231028048 ], [ -95.652201085320513, 29.975430231120622 ], [ -95.652170085725501, 29.975287231469167 ], [ -95.652130085573944, 29.975150231342777 ], [ -95.65211208488229, 29.97504023129996 ], [ -95.652057085664055, 29.974878231387471 ], [ -95.65202508551657, 29.97474423122787 ], [ -95.651921084857321, 29.974361230952319 ], [ -95.651862084940163, 29.974122231054615 ], [ -95.651798085325922, 29.973897231219482 ], [ -95.651771084950582, 29.973783231355654 ], [ -95.651648084904807, 29.973353230980813 ], [ -95.651595084601936, 29.973134230940151 ], [ -95.651577084793956, 29.973061230434961 ], [ -95.651489084946974, 29.972626230528761 ], [ -95.651399084802179, 29.972377230556305 ], [ -95.651325084933433, 29.972126230523088 ], [ -95.651281084683703, 29.972019230860294 ], [ -95.651261084378376, 29.971900230175997 ], [ -95.651128085163236, 29.971409230381962 ], [ -95.651016085149251, 29.971025230556684 ], [ -95.650949084800899, 29.970768230419317 ], [ -95.65090908475733, 29.97063823065368 ], [ -95.650866084179953, 29.97041023018085 ], [ -95.650852084397144, 29.970363230409493 ], [ -95.6506760845744, 29.969761230360795 ], [ -95.650500085005305, 29.969098229742421 ], [ -95.650396084136233, 29.967988229611901 ], [ -95.650392084913264, 29.967949230237732 ], [ -95.65039808446744, 29.967855230182504 ], [ -95.650372084930822, 29.967700229576057 ], [ -95.650368084567404, 29.967610230147514 ], [ -95.65034108448603, 29.967018229980408 ], [ -95.650312084811659, 29.966853229199153 ], [ -95.650304084336796, 29.96671622927299 ], [ -95.650290084162791, 29.966575229422926 ], [ -95.650247083938496, 29.966001229135895 ], [ -95.650235084290884, 29.965578229620508 ], [ -95.650190084600723, 29.965154229007656 ], [ -95.650182084443998, 29.965021229070896 ], [ -95.650183084758737, 29.964892229001496 ], [ -95.650173083904832, 29.964774229067817 ], [ -95.650152084233, 29.964664229269033 ], [ -95.650130083979263, 29.964337229201991 ], [ -95.649821083900804, 29.964341228886347 ], [ -95.648922084297681, 29.964343229118263 ], [ -95.648634083707222, 29.964331229055208 ], [ -95.64846808364436, 29.964350228929259 ], [ -95.648085083337435, 29.964356228750496 ], [ -95.646868083106995, 29.964361229193873 ], [ -95.646249083686556, 29.964364229311737 ], [ -95.646015083192253, 29.96436522960196 ], [ -95.645917083365035, 29.964365229449129 ], [ -95.645752083066682, 29.964352229542822 ], [ -95.645509083323958, 29.964325229215859 ], [ -95.645539083470396, 29.96429322889696 ], [ -95.644958082971684, 29.964295229134855 ], [ -95.643841082744345, 29.96434622955562 ], [ -95.642567081900864, 29.964426229152135 ], [ -95.64229508253274, 29.96443022961903 ], [ -95.642035081961154, 29.964421229673725 ], [ -95.641749081919414, 29.964397229406629 ], [ -95.641639081516246, 29.964367229520501 ], [ -95.641544081630187, 29.96435722969165 ], [ -95.641316081812704, 29.964325229471729 ], [ -95.641211082175573, 29.964308229137966 ], [ -95.640944081672117, 29.964255229731432 ], [ -95.640702082052343, 29.964202229781652 ], [ -95.640053081511439, 29.964023229302985 ], [ -95.63968008200834, 29.963915229044424 ], [ -95.638597081256449, 29.963606228968739 ], [ -95.638238081284513, 29.963506229571422 ], [ -95.637202080692774, 29.963213228950227 ], [ -95.637155080993722, 29.963200229420089 ], [ -95.636986080661018, 29.96315222960089 ], [ -95.636539080285843, 29.963012229143057 ], [ -95.635816080349429, 29.962745229374438 ], [ -95.635560080322179, 29.962661229498419 ], [ -95.635283080146579, 29.962583229223622 ], [ -95.635115080288571, 29.962539229593105 ], [ -95.634843080058403, 29.962480229585328 ], [ -95.634504079827252, 29.962424229455863 ], [ -95.63429107985317, 29.962394229402996 ], [ -95.634027080080955, 29.962371229653076 ], [ -95.633982079495752, 29.96235722943792 ], [ -95.633927080334402, 29.962361228996784 ], [ -95.63383308026124, 29.96235322889682 ], [ -95.633543079366646, 29.962342229194356 ], [ -95.633276079293353, 29.962342229107897 ], [ -95.632854080031848, 29.962366229620645 ], [ -95.632593079737475, 29.962393229462958 ], [ -95.632509079226267, 29.962397229491859 ], [ -95.63208807918717, 29.962450229005341 ], [ -95.632008079455204, 29.962464229131264 ], [ -95.631876078971302, 29.962481229108864 ], [ -95.631775079061896, 29.96250922976559 ], [ -95.631679079796896, 29.962542229554568 ], [ -95.631607079409136, 29.962562228986702 ], [ -95.631532079672454, 29.962372229222119 ], [ -95.631439079571862, 29.962077229217336 ], [ -95.631224079291556, 29.961294229366423 ], [ -95.630748079036834, 29.961477228861444 ], [ -95.629815079354614, 29.961976229293594 ], [ -95.629454078347266, 29.962169229039098 ], [ -95.628904078795358, 29.962395229445047 ], [ -95.628841078914519, 29.962466229017842 ], [ -95.628809078504361, 29.96251522920371 ], [ -95.628778078979522, 29.962614229594191 ], [ -95.628784078539738, 29.962691229626593 ], [ -95.628814078486229, 29.96275522989475 ], [ -95.628835078249679, 29.962801229380098 ], [ -95.628942079222114, 29.962983229776235 ], [ -95.628991078680045, 29.96305622975758 ], [ -95.629106078493862, 29.963225229212153 ], [ -95.629175079063884, 29.963346229692306 ], [ -95.629421079199446, 29.963901229830583 ], [ -95.62965407880246, 29.964528229702097 ], [ -95.629724078906065, 29.964759229577012 ], [ -95.629730079366283, 29.964902230201837 ], [ -95.629660079342486, 29.965083230364804 ], [ -95.629503078514901, 29.965171229574061 ], [ -95.629288079220188, 29.965325230127977 ], [ -95.62911707871281, 29.96542922985245 ], [ -95.629111078806389, 29.965550230164165 ], [ -95.629142078412755, 29.965781230489284 ], [ -95.629218078578276, 29.966023229790341 ], [ -95.629212078756879, 29.966144230081827 ], [ -95.629130079142499, 29.966210230137985 ], [ -95.628871079370811, 29.966286230147769 ], [ -95.628568078899903, 29.966270230161435 ], [ -95.628328078804842, 29.966363230027881 ], [ -95.628062078354233, 29.966556230617918 ], [ -95.627917078693756, 29.966605230605168 ], [ -95.627267078782026, 29.966737230152116 ], [ -95.626964078225384, 29.966808230481966 ], [ -95.626673078460271, 29.966808230248308 ], [ -95.626414077964384, 29.966742230246396 ], [ -95.62623107836032, 29.966659230847746 ], [ -95.626118078303904, 29.966648229963717 ], [ -95.625954078284266, 29.966670230861769 ], [ -95.625739078198606, 29.966725230649114 ], [ -95.625638078095776, 29.966736229987301 ], [ -95.625569077745951, 29.966725230487508 ], [ -95.625411077888899, 29.966681230065294 ], [ -95.625012078178855, 29.966517230100688 ], [ -95.62484807814532, 29.966412230112905 ], [ -95.624709078151767, 29.966275230249472 ], [ -95.624589078131905, 29.966077230663217 ], [ -95.624330077639328, 29.965731230343849 ], [ -95.624020077486506, 29.965495229848123 ], [ -95.623894077900147, 29.965440230342921 ], [ -95.62364807794394, 29.965368230246956 ], [ -95.623307076887457, 29.965308230109869 ], [ -95.623187077558853, 29.965259230237184 ], [ -95.623130077813428, 29.965165230361592 ], [ -95.623092077391448, 29.965077230063034 ], [ -95.623004077334087, 29.964956230520581 ], [ -95.622814077565025, 29.964847230054978 ], [ -95.622669077146597, 29.964792229820453 ], [ -95.622461077542496, 29.964759230257041 ], [ -95.622246077392944, 29.964698230441595 ], [ -95.622006076934809, 29.964616229882402 ], [ -95.621772076718258, 29.964440230258209 ], [ -95.621633076481473, 29.964352230035196 ], [ -95.621538076508102, 29.964314229707831 ], [ -95.621444077232709, 29.964314230220083 ], [ -95.621280076369274, 29.964353230300006 ], [ -95.621090076769732, 29.964424230257432 ], [ -95.621033076364171, 29.964424230068463 ], [ -95.620756077154937, 29.964441230243843 ], [ -95.620503076289566, 29.964419229900027 ], [ -95.620446076899938, 29.96449622972748 ], [ -95.620320076404894, 29.964617230521455 ], [ -95.619935076135889, 29.965084230275888 ], [ -95.619670076718776, 29.965475230638923 ], [ -95.61953207624974, 29.965755230655638 ], [ -95.61958207636107, 29.966135230381642 ], [ -95.619665076562413, 29.96627223039668 ], [ -95.619671076549224, 29.966354230145932 ], [ -95.619652076520808, 29.96645923022896 ], [ -95.61968407637282, 29.966651230286999 ], [ -95.619785076446789, 29.966816230951338 ], [ -95.620044076964376, 29.967030230507937 ], [ -95.620360076206737, 29.967398231173075 ], [ -95.620644076331104, 29.967712231214346 ], [ -95.620770076398657, 29.967838230996538 ], [ -95.620872076553155, 29.967915231083328 ], [ -95.620960076772448, 29.967937231211202 ], [ -95.621099076866528, 29.967942230722148 ], [ -95.621326076855652, 29.967992230543896 ], [ -95.621421077074103, 29.968030230894971 ], [ -95.621585076584807, 29.968118230983247 ], [ -95.622053077296002, 29.968393231298091 ], [ -95.622381077219885, 29.968640230513095 ], [ -95.622495077821696, 29.968744231254391 ], [ -95.622596077447255, 29.968871231284478 ], [ -95.622621077749443, 29.96914023125321 ], [ -95.622628077101268, 29.969470231209662 ], [ -95.622615077598212, 29.969541230903744 ], [ -95.622596077262145, 29.9695852315444 ], [ -95.622552076989976, 29.969624231456688 ], [ -95.622451077741516, 29.969772230910937 ], [ -95.622394077481928, 29.969899230845297 ], [ -95.622350077568356, 29.970234231532928 ], [ -95.622370077345053, 29.970448231592314 ], [ -95.622541077941364, 29.971124231805764 ], [ -95.622667077089929, 29.971861231235561 ], [ -95.622769077885749, 29.972317231280645 ], [ -95.62284407720179, 29.972455231589581 ], [ -95.62300907795229, 29.972625231399242 ], [ -95.623647077469798, 29.973114232197446 ], [ -95.623754077391439, 29.973169232226269 ], [ -95.623874077845073, 29.973191231535502 ], [ -95.624076077908512, 29.97317423165353 ], [ -95.624297077745226, 29.973174232012042 ], [ -95.624581077930259, 29.97318523182911 ], [ -95.625011078189388, 29.973113231493205 ], [ -95.625376078569289, 29.973019231326987 ], [ -95.625635078305066, 29.972975232133482 ], [ -95.625855078192728, 29.972970231778312 ], [ -95.625950078873544, 29.972986231833818 ], [ -95.62610207875224, 29.973047231634389 ], [ -95.626398078478445, 29.973245231770683 ], [ -95.627459078472654, 29.974196232022081 ], [ -95.628273079588084, 29.97497223220574 ], [ -95.628588079519304, 29.975324231744917 ], [ -95.628651078822614, 29.975439231738889 ], [ -95.628676079409985, 29.975560231890267 ], [ -95.628626079473662, 29.975692232139703 ], [ -95.628392078764421, 29.975857231943838 ], [ -95.628140079242385, 29.976016232390581 ], [ -95.628051079091662, 29.976115232688745 ], [ -95.628019078695317, 29.976395231919064 ], [ -95.628183079583877, 29.976868232018926 ], [ -95.628391078924366, 29.977236232301269 ], [ -95.628518079502399, 29.97729723233088 ], [ -95.628745079539641, 29.977363232698117 ], [ -95.628808079428396, 29.977330232259433 ], [ -95.629048079292843, 29.977242232246795 ], [ -95.629257079840613, 29.977209232845684 ], [ -95.629604079225146, 29.977231232748696 ], [ -95.629894079255351, 29.977264232137109 ], [ -95.630475079894453, 29.977457232248131 ], [ -95.630694080011196, 29.977576232663807 ], [ -95.63103007959387, 29.977789232751093 ], [ -95.631145079819902, 29.97794723250659 ], [ -95.63114408029162, 29.977985232533623 ], [ -95.631074079920865, 29.978474232349114 ], [ -95.631030079785447, 29.978738232905819 ], [ -95.63098607954359, 29.978881232938598 ], [ -95.630910080392951, 29.97898523273777 ], [ -95.630891079857506, 29.979084232690909 ], [ -95.630897080293906, 29.979304233042512 ], [ -95.630910080265139, 29.979354232485871 ], [ -95.630941080147338, 29.979398232996612 ], [ -95.631036080142422, 29.979453232671414 ], [ -95.631143080023321, 29.979453232615462 ], [ -95.631453079994785, 29.979387232789147 ], [ -95.631598079863195, 29.979381233205249 ], [ -95.631731080306281, 29.979393232494935 ], [ -95.631933080132868, 29.979431232404103 ], [ -95.632545080904052, 29.979624232388819 ], [ -95.632955080819116, 29.97983323243664 ], [ -95.633139080333308, 29.9798492327843 ], [ -95.633221080931378, 29.979888233208925 ], [ -95.633321080780973, 29.97998723280017 ], [ -95.633391080373372, 29.980097233188488 ], [ -95.633549080757874, 29.980421232936877 ], [ -95.633706081146627, 29.98092123303806 ], [ -95.63377608086725, 29.981262232696295 ], [ -95.633870081293622, 29.981394232709171 ], [ -95.634078080587543, 29.981592233465147 ], [ -95.634224080987508, 29.981675233216219 ], [ -95.634659081309039, 29.981796233514718 ], [ -95.634722080610644, 29.981834233332933 ], [ -95.634830081590053, 29.981955233048431 ], [ -95.634975081139359, 29.982043233124578 ], [ -95.635171081377948, 29.982098233167868 ], [ -95.635297081348568, 29.982109233014718 ], [ -95.635745081056612, 29.982043232757334 ], [ -95.635916081292038, 29.98204423362834 ], [ -95.636093081669557, 29.982082233556138 ], [ -95.636225081341905, 29.982126233530863 ], [ -95.6363200814382, 29.982181232894078 ], [ -95.636415081726426, 29.982253233373736 ], [ -95.636673081933708, 29.982566233087329 ], [ -95.63685008215829, 29.982912233350714 ], [ -95.636945081663058, 29.982978233294663 ], [ -95.637052081722189, 29.98302223366262 ], [ -95.637166081619142, 29.983033233590273 ], [ -95.637443082045948, 29.983039233178172 ], [ -95.637557081638917, 29.983055233746889 ], [ -95.637664081856954, 29.983083233367744 ], [ -95.638037081671399, 29.983237233022372 ], [ -95.638971082398143, 29.983457233164756 ], [ -95.639205082113875, 29.983512233160166 ], [ -95.639489082755674, 29.983595233355345 ], [ -95.639672082823694, 29.983699233357111 ], [ -95.640007082968992, 29.983963233153698 ], [ -95.640152082893749, 29.984029233395688 ], [ -95.640316082454603, 29.984051233366355 ], [ -95.640625083158071, 29.98404623331264 ], [ -95.641427082590468, 29.984403233917494 ], [ -95.642134083601348, 29.984898233720632 ], [ -95.642355082915046, 29.98506323401763 ], [ -95.642463082810693, 29.985179233368441 ], [ -95.642406083391847, 29.985272233934431 ], [ -95.642210083298366, 29.985492233256949 ], [ -95.642001083423608, 29.985651234048479 ], [ -95.641616082803694, 29.985794233374513 ], [ -95.641471083131691, 29.985899233626203 ], [ -95.641433083210188, 29.98611323403318 ], [ -95.641464082754268, 29.986437233899537 ], [ -95.641388082642308, 29.987047234377251 ], [ -95.641262082669485, 29.987641234155031 ], [ -95.641173082536838, 29.988224234672614 ], [ -95.641060083262644, 29.988592234041029 ], [ -95.641072082774343, 29.988708234200473 ], [ -95.641198082769634, 29.988823234132798 ], [ -95.641817083527854, 29.989246234697966 ], [ -95.64184208330316, 29.989395234380499 ], [ -95.641817082905305, 29.989538234762488 ], [ -95.641804083144066, 29.989747234562845 ], [ -95.641848082948513, 29.989807234323536 ], [ -95.641962083151824, 29.989906234664563 ], [ -95.642353083080565, 29.990187235032952 ], [ -95.642385083268593, 29.990236235033656 ], [ -95.642398082951104, 29.990308235063729 ], [ -95.642435083783994, 29.990368234736483 ], [ -95.642480083794339, 29.990412234701736 ], [ -95.642606083327749, 29.990440234799095 ], [ -95.64285208322319, 29.990462235001438 ], [ -95.643004084034857, 29.990462234450931 ], [ -95.643099083530529, 29.990451234991014 ], [ -95.643110083801488, 29.990449234621291 ], [ -95.643844083765813, 29.990319234435823 ], [ -95.644109084182517, 29.990209234432253 ], [ -95.644261084214421, 29.990127234192482 ], [ -95.644393084254659, 29.990072234442614 ], [ -95.644475083649439, 29.990061234147795 ], [ -95.644684083587805, 29.990154234381432 ], [ -95.644924083656633, 29.990242234209127 ], [ -95.645435084605921, 29.990341234256057 ], [ -95.645789084120736, 29.990374234230863 ], [ -95.646079083929536, 29.990369234935255 ], [ -95.646401084349606, 29.990265234166682 ], [ -95.64686208419073, 29.990083234406359 ], [ -95.647431085076448, 29.990006234209446 ], [ -95.648668084512451, 29.99001223462492 ], [ -95.649054084656569, 29.990089234308805 ], [ -95.649571084960627, 29.99027123461288 ], [ -95.649792085375154, 29.990315234087969 ], [ -95.650102085833197, 29.990271234515255 ], [ -95.650298084908101, 29.990156234326033 ], [ -95.65132108513528, 29.989298234382876 ], [ -95.652413085506723, 29.988419234271159 ], [ -95.652616085485704, 29.988331234068262 ], [ -95.652868086005228, 29.988282233971606 ], [ -95.653133085893998, 29.988287233879188 ], [ -95.653228086581052, 29.988309234011478 ], [ -95.653792086388833, 29.988510234291994 ], [ -95.654114085961709, 29.987767234120639 ], [ -95.654373085957801, 29.987112233331423 ], [ -95.654417086523409, 29.986904233333522 ], [ -95.654454086131992, 29.986583233729565 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 804, "Tract": "48201551101", "Area_SqMi": 0.70596122774782777, "total_2009": 5967, "total_2010": 6418, "total_2011": 6017, "total_2012": 5779, "total_2013": 5505, "total_2014": 5577, "total_2015": 5711, "total_2016": 5882, "total_2017": 5886, "total_2018": 5542, "total_2019": 3226, "total_2020": 2916, "age1": 498, "age2": 1304, "age3": 759, "earn1": 622, "earn2": 828, "earn3": 1111, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 73, "naics_s05": 11, "naics_s06": 173, "naics_s07": 437, "naics_s08": 73, "naics_s09": 5, "naics_s10": 193, "naics_s11": 94, "naics_s12": 532, "naics_s13": 0, "naics_s14": 226, "naics_s15": 184, "naics_s16": 385, "naics_s17": 23, "naics_s18": 127, "naics_s19": 19, "naics_s20": 0, "race1": 1717, "race2": 533, "race3": 16, "race4": 259, "race5": 1, "race6": 35, "ethnicity1": 1914, "ethnicity2": 647, "edu1": 354, "edu2": 547, "edu3": 631, "edu4": 531, "Shape_Length": 20121.886577849447, "Shape_Area": 19680990.764892571, "total_2021": 2801, "total_2022": 2561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.498349046323568, 29.987870238816623 ], [ -95.498400046221875, 29.987841239363657 ], [ -95.49831704664453, 29.987739239272411 ], [ -95.498299046877932, 29.987714238987145 ], [ -95.497513045888994, 29.986629238822797 ], [ -95.497213046338871, 29.986234238577463 ], [ -95.497026046113916, 29.98599623863678 ], [ -95.496640045966743, 29.985491238367352 ], [ -95.496140045794931, 29.984835238926969 ], [ -95.496000046041445, 29.984653238858474 ], [ -95.495967045761944, 29.984590238423525 ], [ -95.495908045282206, 29.984534238701386 ], [ -95.495375045057926, 29.983831238090406 ], [ -95.495154044974257, 29.983531238234821 ], [ -95.49504104505256, 29.98338423849626 ], [ -95.494946045707167, 29.98326223858351 ], [ -95.494366044728835, 29.982492237878091 ], [ -95.493847044592073, 29.981819237941522 ], [ -95.493506045165717, 29.981376238178179 ], [ -95.493444045138389, 29.98129523792101 ], [ -95.49331504457912, 29.98113523771611 ], [ -95.493235045303621, 29.981038237662602 ], [ -95.493060044791662, 29.980816237682038 ], [ -95.49289304519678, 29.980596237987974 ], [ -95.492737044449356, 29.98039223822374 ], [ -95.492571044148619, 29.980174238089763 ], [ -95.492539044225978, 29.980130237586465 ], [ -95.492505044897712, 29.980084237999836 ], [ -95.492244044207609, 29.979724237898044 ], [ -95.492063044957234, 29.979491237979452 ], [ -95.491764044094111, 29.979104237362868 ], [ -95.491753044629704, 29.979131237592128 ], [ -95.491739044091986, 29.97916523742084 ], [ -95.491628043996144, 29.979437237856615 ], [ -95.491565044267404, 29.979610237702644 ], [ -95.491542043961687, 29.97969523799933 ], [ -95.491514044694171, 29.979787238039954 ], [ -95.491485043840214, 29.979859237909441 ], [ -95.491383043879651, 29.980085237910913 ], [ -95.491189044683466, 29.980555238172215 ], [ -95.489791044436032, 29.983991238575559 ], [ -95.489389044242657, 29.983865238450303 ], [ -95.489039043669806, 29.983763238487899 ], [ -95.488513044205007, 29.983644238214609 ], [ -95.488383043900356, 29.983609239066336 ], [ -95.488036043576827, 29.983489239006971 ], [ -95.487518043450692, 29.983331238774038 ], [ -95.487251043189545, 29.983243238455508 ], [ -95.48669604292219, 29.983077238842384 ], [ -95.486633043010926, 29.983059238786332 ], [ -95.48646704318169, 29.982999238716971 ], [ -95.486281042683331, 29.982950238342617 ], [ -95.486172043088615, 29.982908238204224 ], [ -95.486080043179257, 29.982881238607181 ], [ -95.485992043140499, 29.982861238380774 ], [ -95.485842043381098, 29.982815238125383 ], [ -95.485610042477091, 29.982743238624142 ], [ -95.485008042986053, 29.982567238860046 ], [ -95.485209042949407, 29.982094238717792 ], [ -95.485453042552962, 29.981482238548097 ], [ -95.484424042381448, 29.981053237827002 ], [ -95.484177042857993, 29.980970238672416 ], [ -95.484132042923008, 29.980955238533799 ], [ -95.483992042449174, 29.980927238014655 ], [ -95.483912042881869, 29.980917237872724 ], [ -95.483721041901518, 29.980908238662916 ], [ -95.483644042547709, 29.980908238040914 ], [ -95.48348704283741, 29.980922238287423 ], [ -95.483332042091646, 29.980951238275129 ], [ -95.482949042603622, 29.981049238107651 ], [ -95.482906042137728, 29.981063238275699 ], [ -95.482755041899779, 29.9811102386751 ], [ -95.482680041998719, 29.981138238173092 ], [ -95.482518042500061, 29.98122123835174 ], [ -95.482406041923213, 29.98128323803882 ], [ -95.482073042494406, 29.981467238367934 ], [ -95.481844042117913, 29.981593238754474 ], [ -95.481151042204502, 29.981973238512435 ], [ -95.480655041548246, 29.98223923817234 ], [ -95.480408041961212, 29.982377239015804 ], [ -95.480086041801357, 29.982541238271534 ], [ -95.479623041281457, 29.98278823880834 ], [ -95.479474041471988, 29.982864239107865 ], [ -95.479333041280029, 29.982929238943917 ], [ -95.479079041386896, 29.983063238694477 ], [ -95.478966041574751, 29.983116238667911 ], [ -95.47877404081926, 29.983217238633021 ], [ -95.478532041315276, 29.983359239263386 ], [ -95.478444041639833, 29.983405238665938 ], [ -95.478559041462432, 29.983653238851772 ], [ -95.478672041642682, 29.983953239005935 ], [ -95.478738041762753, 29.984165239281797 ], [ -95.478826041711258, 29.984530239001373 ], [ -95.478873041741565, 29.984800238817169 ], [ -95.478882041442859, 29.984900239303251 ], [ -95.478899040889431, 29.985224238929856 ], [ -95.478922041624642, 29.985820239299802 ], [ -95.478946041245834, 29.98620323963172 ], [ -95.478961041539534, 29.986324239669944 ], [ -95.4789990412159, 29.986539239461731 ], [ -95.479067041841333, 29.986827239950074 ], [ -95.479099041850006, 29.986927239487343 ], [ -95.479142041069053, 29.987064239644273 ], [ -95.479245041899972, 29.987335239561013 ], [ -95.479378041581697, 29.987629239929944 ], [ -95.479410041516815, 29.987692240055296 ], [ -95.479475041486168, 29.987803239505634 ], [ -95.47955004126645, 29.9879102399712 ], [ -95.480593042189966, 29.989318239961303 ], [ -95.480664042071098, 29.989402240156739 ], [ -95.480731042373193, 29.989499239995823 ], [ -95.481730042225507, 29.990868240664081 ], [ -95.481754042321882, 29.990901240171155 ], [ -95.481774042230285, 29.990928240177116 ], [ -95.482092042072665, 29.991357240540765 ], [ -95.48215104213854, 29.991437240309988 ], [ -95.482255042696877, 29.991591240132781 ], [ -95.482321042944477, 29.991665240522462 ], [ -95.482957042708577, 29.992530240379079 ], [ -95.483374042757362, 29.993061240737521 ], [ -95.483606042655737, 29.99336624069371 ], [ -95.483710042875671, 29.993493240500026 ], [ -95.483747042802236, 29.99353824115909 ], [ -95.483790042813254, 29.993600240894164 ], [ -95.484103043018052, 29.99404124076289 ], [ -95.484198042829263, 29.994166240901567 ], [ -95.484389043107683, 29.994437241115932 ], [ -95.484620042828936, 29.994785241168668 ], [ -95.484948043284874, 29.995244241370706 ], [ -95.485033043354832, 29.995194241145015 ], [ -95.485431043345685, 29.994977241096791 ], [ -95.485889043199862, 29.99474324106469 ], [ -95.486495044191003, 29.994434240710142 ], [ -95.487003043416678, 29.994145240613758 ], [ -95.487432043699712, 29.993902240993638 ], [ -95.487987044431875, 29.993590240487446 ], [ -95.488328044639516, 29.993400240352948 ], [ -95.48851104409556, 29.993299240622328 ], [ -95.488898044593213, 29.993084240925775 ], [ -95.489346043909705, 29.992837240792863 ], [ -95.489405044206237, 29.992805240628503 ], [ -95.490258044799916, 29.992337240631528 ], [ -95.490762044377007, 29.992058239977183 ], [ -95.491538044656792, 29.99163024034841 ], [ -95.491724044799028, 29.991528239764826 ], [ -95.492265045074177, 29.991228239594967 ], [ -95.492810045400915, 29.990928239758624 ], [ -95.494098045606663, 29.990230239987987 ], [ -95.49432804525911, 29.990107239798284 ], [ -95.494497045209286, 29.99001623995748 ], [ -95.494923045695444, 29.989784239420466 ], [ -95.494989046146642, 29.989748239734805 ], [ -95.495463046277123, 29.989492239793538 ], [ -95.496157045921578, 29.989118239674976 ], [ -95.496434045753247, 29.988960239188547 ], [ -95.496830045983316, 29.988736239402272 ], [ -95.49752304606487, 29.98834123958639 ], [ -95.497847046482192, 29.988156239418878 ], [ -95.498349046323568, 29.987870238816623 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 805, "Tract": "48201554905", "Area_SqMi": 3.8605965054531342, "total_2009": 5829, "total_2010": 6260, "total_2011": 8755, "total_2012": 8790, "total_2013": 8784, "total_2014": 9103, "total_2015": 9329, "total_2016": 10002, "total_2017": 10222, "total_2018": 10786, "total_2019": 10756, "total_2020": 10638, "age1": 1686, "age2": 6839, "age3": 2751, "earn1": 1444, "earn2": 3398, "earn3": 6434, "naics_s01": 0, "naics_s02": 26, "naics_s03": 0, "naics_s04": 251, "naics_s05": 75, "naics_s06": 51, "naics_s07": 533, "naics_s08": 1, "naics_s09": 18, "naics_s10": 43, "naics_s11": 28, "naics_s12": 114, "naics_s13": 0, "naics_s14": 37, "naics_s15": 9314, "naics_s16": 170, "naics_s17": 50, "naics_s18": 492, "naics_s19": 73, "naics_s20": 0, "race1": 8677, "race2": 1818, "race3": 94, "race4": 496, "race5": 18, "race6": 173, "ethnicity1": 8355, "ethnicity2": 2921, "edu1": 1501, "edu2": 2199, "edu3": 2911, "edu4": 2979, "Shape_Length": 64272.348714993372, "Shape_Area": 107626823.0950782, "total_2021": 10864, "total_2022": 11276 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.551079064043492, 30.072866254385421 ], [ -95.551081063781595, 30.072692254301568 ], [ -95.55107206369631, 30.07255825467584 ], [ -95.551057063425134, 30.07248025480569 ], [ -95.551032063523991, 30.072397254661492 ], [ -95.550999064340246, 30.072308254111181 ], [ -95.550908064046752, 30.072110254869909 ], [ -95.550721063316942, 30.07174725435986 ], [ -95.55063206378, 30.071575253997167 ], [ -95.5484350631056, 30.067315253611941 ], [ -95.546390062446804, 30.06335125322909 ], [ -95.545801062119608, 30.062204252948369 ], [ -95.545605061800501, 30.061820252517649 ], [ -95.545579062153067, 30.061770252571705 ], [ -95.545050062038428, 30.060738252337657 ], [ -95.544966061769628, 30.060589252132527 ], [ -95.544894061288915, 30.060433252486355 ], [ -95.54473506118822, 30.06013725210649 ], [ -95.544040061695085, 30.058784251693616 ], [ -95.543840061559465, 30.058393252329676 ], [ -95.543689061330909, 30.058099252091097 ], [ -95.543380060763781, 30.057497252146074 ], [ -95.543308061402982, 30.057356251570219 ], [ -95.543198061450752, 30.057143251927403 ], [ -95.542360060561663, 30.055531250994719 ], [ -95.540807060542321, 30.05251125039451 ], [ -95.540655060705063, 30.05221625059842 ], [ -95.54056706027616, 30.052046250944009 ], [ -95.540322059909741, 30.051564251013062 ], [ -95.539465060270743, 30.049843249925839 ], [ -95.539300059285395, 30.049502250121204 ], [ -95.539168060191898, 30.049199250342109 ], [ -95.539091059566189, 30.048994250484107 ], [ -95.539033059814884, 30.048813250210525 ], [ -95.53895205972232, 30.048510250262229 ], [ -95.538916059739705, 30.0483462499563 ], [ -95.538761059826058, 30.047488249600573 ], [ -95.538689059239559, 30.047135250055586 ], [ -95.538649058973434, 30.046997249889117 ], [ -95.538561059277356, 30.046767250053875 ], [ -95.538528059710771, 30.046608249258206 ], [ -95.538411059779264, 30.045929249652559 ], [ -95.538137059444352, 30.04593824966701 ], [ -95.538080059503187, 30.045936249724011 ], [ -95.537280059104603, 30.0459502495324 ], [ -95.536923058586453, 30.045977249581576 ], [ -95.53667805846753, 30.046018249933539 ], [ -95.536495059103459, 30.046053249252658 ], [ -95.536283058406042, 30.046115249557651 ], [ -95.535975058832577, 30.046221249764766 ], [ -95.53537605856026, 30.046431249474146 ], [ -95.535249058414522, 30.046470249520137 ], [ -95.535134058147193, 30.046516249393385 ], [ -95.535066058260597, 30.046539249342693 ], [ -95.534634058158971, 30.046687249678953 ], [ -95.534451058040133, 30.046755249564264 ], [ -95.534408058831033, 30.046773250281017 ], [ -95.53432505819768, 30.046794250178827 ], [ -95.534254058356524, 30.04682125005456 ], [ -95.534171058455058, 30.046847249971695 ], [ -95.534094058584699, 30.046890249662606 ], [ -95.534001058620035, 30.046921249795492 ], [ -95.533945058207578, 30.04694525001198 ], [ -95.533786057933014, 30.047013249748847 ], [ -95.533663058376789, 30.047056249595144 ], [ -95.533313057721557, 30.047221250043584 ], [ -95.533057058503587, 30.047353249795513 ], [ -95.532961058312083, 30.047417250067031 ], [ -95.53273205795162, 30.04755424997175 ], [ -95.53261705833043, 30.047614249821144 ], [ -95.5325000583546, 30.047681250441808 ], [ -95.532297057925049, 30.047789250227027 ], [ -95.532208057388686, 30.047838249793877 ], [ -95.532110057661512, 30.047899250166758 ], [ -95.531437057962691, 30.048268250360636 ], [ -95.531113057303187, 30.048444250383408 ], [ -95.530705057849346, 30.048651250654448 ], [ -95.530552057716449, 30.048722249970407 ], [ -95.53025105725402, 30.048856250668209 ], [ -95.530138057706765, 30.048897250079481 ], [ -95.530036057194991, 30.048948250182743 ], [ -95.529914057578281, 30.048989250788285 ], [ -95.529551056886419, 30.049125250199754 ], [ -95.529106057329628, 30.049298250805958 ], [ -95.529011057144217, 30.04932625089387 ], [ -95.528948056966428, 30.049344250485394 ], [ -95.528728057391007, 30.049428250439647 ], [ -95.528526056762615, 30.049508250985369 ], [ -95.52812805667449, 30.04965225067011 ], [ -95.528012056674498, 30.049720250759993 ], [ -95.527910056375759, 30.049751250707359 ], [ -95.527797056537395, 30.049778250616502 ], [ -95.52760305660216, 30.049850250573982 ], [ -95.527527056353421, 30.049888250655879 ], [ -95.527473056755269, 30.049909251133428 ], [ -95.527300056895299, 30.049974250707994 ], [ -95.52680705710867, 30.050139250679038 ], [ -95.526588056700817, 30.050194250791861 ], [ -95.526453056770535, 30.050222250517304 ], [ -95.526206056818637, 30.050262250783447 ], [ -95.525952056041248, 30.050291250825744 ], [ -95.525557055912742, 30.050318250582446 ], [ -95.525241056020093, 30.050331250835075 ], [ -95.524886055763062, 30.050343250916391 ], [ -95.52477805590334, 30.050354250933022 ], [ -95.52440705588026, 30.050368251231816 ], [ -95.524168056052076, 30.050383251100701 ], [ -95.523395055591607, 30.05042125065162 ], [ -95.522793055767494, 30.050453251247152 ], [ -95.522666055980636, 30.050454251471507 ], [ -95.52256605554291, 30.050464250897843 ], [ -95.521255055275859, 30.050523251198303 ], [ -95.520463055059679, 30.050560251153801 ], [ -95.520212054633078, 30.050574250986969 ], [ -95.519978054737024, 30.050574250735206 ], [ -95.519883055179974, 30.050572251059677 ], [ -95.519778054380481, 30.050565251253179 ], [ -95.519464055110205, 30.050532250890065 ], [ -95.519277054932104, 30.050497251038376 ], [ -95.518995055097164, 30.050432250918721 ], [ -95.518645054923567, 30.050339250790813 ], [ -95.518462054646946, 30.050289251089886 ], [ -95.517967054701629, 30.050165251213233 ], [ -95.517633053905143, 30.050087250789097 ], [ -95.517540054033915, 30.050059251051675 ], [ -95.517087054503946, 30.049945251556291 ], [ -95.517002053663944, 30.049924251308557 ], [ -95.516854054449652, 30.049883251418105 ], [ -95.516587054237249, 30.049809251120646 ], [ -95.51635405377526, 30.049744250921897 ], [ -95.515645053573223, 30.049521251523124 ], [ -95.515398053469539, 30.049430250702006 ], [ -95.515164054075683, 30.049339250779067 ], [ -95.514952053357135, 30.049242251261841 ], [ -95.514765053542405, 30.04914525082571 ], [ -95.514680053619671, 30.049095251139992 ], [ -95.514503053782974, 30.048981251140258 ], [ -95.514265053142068, 30.048816250603849 ], [ -95.514111053513403, 30.048698250837301 ], [ -95.513948053011788, 30.048562250740822 ], [ -95.513765053320625, 30.048394250747926 ], [ -95.513683052958143, 30.048312250732597 ], [ -95.513524052753965, 30.048131250796892 ], [ -95.513377053432009, 30.047944250477141 ], [ -95.513240052564612, 30.047753251157332 ], [ -95.513032052724938, 30.047441250506203 ], [ -95.512756053149303, 30.04703425075849 ], [ -95.512653052597486, 30.046877250214028 ], [ -95.512134053072117, 30.046112250214158 ], [ -95.512060052851069, 30.045982250625141 ], [ -95.511963052825138, 30.045842250359609 ], [ -95.511872052889956, 30.045730250303997 ], [ -95.511771052102915, 30.045624250672905 ], [ -95.511639052201446, 30.045507250191942 ], [ -95.511567052039041, 30.045430250271547 ], [ -95.511477052554937, 30.045358250712692 ], [ -95.511376052271729, 30.04529024991556 ], [ -95.511302052639493, 30.045208250154033 ], [ -95.511083052842153, 30.045069249938972 ], [ -95.510921052193439, 30.044957250641549 ], [ -95.510335052496302, 30.0445822504647 ], [ -95.510237051937949, 30.044540250601351 ], [ -95.510118052482099, 30.044496250428701 ], [ -95.509677051521578, 30.044318250498829 ], [ -95.509201051338962, 30.044163250302141 ], [ -95.508788051557502, 30.044010250626435 ], [ -95.508554051761436, 30.043939249887032 ], [ -95.508330051289178, 30.043884249931786 ], [ -95.508108051783495, 30.043844250542733 ], [ -95.507931050982464, 30.043822249983403 ], [ -95.507777051647295, 30.043808250553749 ], [ -95.50766605161725, 30.043803250385388 ], [ -95.50744105153386, 30.04380225056688 ], [ -95.507332051091026, 30.043792250510805 ], [ -95.507051050876214, 30.043775249959104 ], [ -95.506833050954455, 30.043776250614652 ], [ -95.506660051236793, 30.043787250373342 ], [ -95.506575050785855, 30.043789250243805 ], [ -95.50627905149652, 30.043831250560952 ], [ -95.506088050694075, 30.043869249846317 ], [ -95.506096051352785, 30.043912250532596 ], [ -95.506113051369482, 30.043956250557706 ], [ -95.506125050887093, 30.044075249855489 ], [ -95.506133050657652, 30.04412625072808 ], [ -95.50613705082695, 30.044172250369673 ], [ -95.506113051033509, 30.044222250504802 ], [ -95.506109051420708, 30.044262250486067 ], [ -95.506119051008923, 30.044307249937422 ], [ -95.506136051300558, 30.04434925080724 ], [ -95.506134051474035, 30.044392250512097 ], [ -95.506147051479758, 30.044444250534688 ], [ -95.506168050649208, 30.044526249934879 ], [ -95.506198050739869, 30.044623249979001 ], [ -95.506214050861857, 30.044676250394527 ], [ -95.506228050897619, 30.04472925025361 ], [ -95.506242051289732, 30.044779250039049 ], [ -95.506253051491868, 30.044829250344911 ], [ -95.506265050623028, 30.044880250471394 ], [ -95.506279051522782, 30.044935250395451 ], [ -95.506292051104808, 30.04499225051191 ], [ -95.506308050911642, 30.04504925010189 ], [ -95.506326050733577, 30.045107250264486 ], [ -95.506345051457942, 30.045167250322571 ], [ -95.506398051132351, 30.045303250852101 ], [ -95.506425051453576, 30.045363250366279 ], [ -95.506457051442609, 30.04542925093925 ], [ -95.506526050847896, 30.045552250911168 ], [ -95.506562051114273, 30.045610250534921 ], [ -95.506599050872111, 30.045664250752189 ], [ -95.50663705107597, 30.045715250710838 ], [ -95.506674051240836, 30.045766250835197 ], [ -95.506711051442778, 30.045817250948417 ], [ -95.506750051729114, 30.045869250717956 ], [ -95.506788050940173, 30.045921250626474 ], [ -95.506831051501592, 30.045993251078709 ], [ -95.506855050962145, 30.046034250504135 ], [ -95.506897050909103, 30.046151250460809 ], [ -95.506910051599789, 30.04621225061172 ], [ -95.506922050865654, 30.046276250981801 ], [ -95.506932050834308, 30.046342250879587 ], [ -95.5069470512436, 30.046476250736671 ], [ -95.506957051355016, 30.046541250604594 ], [ -95.506966051073391, 30.046609250718994 ], [ -95.506972051292792, 30.046680250564258 ], [ -95.506979051576351, 30.046751251129439 ], [ -95.506984051116845, 30.046828250386262 ], [ -95.506990051437342, 30.04689825110383 ], [ -95.506990051294409, 30.04696825109442 ], [ -95.506987051233324, 30.047035250652087 ], [ -95.506976051407122, 30.047103250793647 ], [ -95.506958051890194, 30.047172251337425 ], [ -95.506932051708844, 30.047241250606699 ], [ -95.506898050968772, 30.047308251256428 ], [ -95.50685605171428, 30.047374250652165 ], [ -95.506821050986147, 30.047420250926201 ], [ -95.506808051024052, 30.047438251031288 ], [ -95.506759051246775, 30.047502250694986 ], [ -95.50671005115818, 30.047568251286499 ], [ -95.506660050831698, 30.047635251156738 ], [ -95.506611051572008, 30.047702250856737 ], [ -95.506564051152409, 30.047771251104166 ], [ -95.506523051000769, 30.047842251222676 ], [ -95.506488051238847, 30.047914251195198 ], [ -95.506460051753592, 30.047989250895487 ], [ -95.506439050790064, 30.048064251108052 ], [ -95.506427051368817, 30.04814225073153 ], [ -95.506424050786549, 30.048219251400965 ], [ -95.506437051386627, 30.048374251222928 ], [ -95.506447051052305, 30.048451251378765 ], [ -95.506470050887174, 30.048613251359452 ], [ -95.50649305105155, 30.048782251509287 ], [ -95.5065040510529, 30.048867251677947 ], [ -95.50651605129228, 30.048951251644603 ], [ -95.506528051551541, 30.049035251607602 ], [ -95.506545051646327, 30.049116251493135 ], [ -95.506595051274175, 30.049271250892229 ], [ -95.506626050903051, 30.049342251589916 ], [ -95.506738051013713, 30.049537251577604 ], [ -95.506780051255888, 30.049596251761852 ], [ -95.506824051885715, 30.049654251552653 ], [ -95.506912051437453, 30.049768250989725 ], [ -95.506955051566933, 30.049821251678587 ], [ -95.506998051878753, 30.049873251429087 ], [ -95.507040051079997, 30.049925251318051 ], [ -95.507083051479185, 30.049977251039341 ], [ -95.507124051684301, 30.050029251107425 ], [ -95.507163051482479, 30.050083251567649 ], [ -95.507203051546597, 30.05013625181245 ], [ -95.507243051136399, 30.050184251908643 ], [ -95.507285051524335, 30.050227251519587 ], [ -95.507322051371773, 30.050270251126268 ], [ -95.507358051509584, 30.050309251719529 ], [ -95.507410052133253, 30.050362251484284 ], [ -95.507542051344885, 30.050450251539186 ], [ -95.508335051538808, 30.050977251580751 ], [ -95.509844052323487, 30.051979252169396 ], [ -95.509545052463707, 30.052262251867287 ], [ -95.508314051774875, 30.053405252046318 ], [ -95.508301052348742, 30.053423252282855 ], [ -95.508243052234448, 30.053478252116857 ], [ -95.508180052262745, 30.05353425201357 ], [ -95.508120051520791, 30.053591252210438 ], [ -95.50805805202603, 30.053653252009084 ], [ -95.507989051952649, 30.053720252315646 ], [ -95.507908051924304, 30.053778251962768 ], [ -95.50782505188424, 30.053832251850309 ], [ -95.507697052308941, 30.053906252552917 ], [ -95.507611052112836, 30.053955251857321 ], [ -95.507531052058042, 30.054000252600236 ], [ -95.507443052319886, 30.054050252210274 ], [ -95.507359051408159, 30.054096252700262 ], [ -95.507272051869492, 30.054144251973554 ], [ -95.507185052217821, 30.054192252091404 ], [ -95.50709105190073, 30.05424525264225 ], [ -95.506977051499916, 30.054308252522212 ], [ -95.506860052090715, 30.054356252537687 ], [ -95.506778051638747, 30.054396252180766 ], [ -95.506761052145237, 30.05440525279295 ], [ -95.50666705155119, 30.054457252121232 ], [ -95.50657305175595, 30.054510252331568 ], [ -95.506476051291287, 30.05456425212143 ], [ -95.506378051902985, 30.054615252883782 ], [ -95.506296051408924, 30.054661252376437 ], [ -95.506279051745892, 30.054671252045114 ], [ -95.506178051232979, 30.054726252361537 ], [ -95.50607605125056, 30.054783252840899 ], [ -95.505971051489226, 30.054842252923471 ], [ -95.505863051018707, 30.054902252555184 ], [ -95.505752050954797, 30.05496225263742 ], [ -95.505638051083452, 30.055024252300871 ], [ -95.505522051651283, 30.055087252250853 ], [ -95.505405051783868, 30.055151252287143 ], [ -95.505296051610415, 30.055210252533229 ], [ -95.505287051475989, 30.055216252406975 ], [ -95.505169051017276, 30.055281252421725 ], [ -95.505048051056193, 30.055345252834432 ], [ -95.504925051539701, 30.05541025261056 ], [ -95.504804051015512, 30.055476252840126 ], [ -95.504768050872357, 30.05549525300032 ], [ -95.504683051241699, 30.055543253005901 ], [ -95.504563051482393, 30.05561025289937 ], [ -95.504443050660029, 30.055676252637458 ], [ -95.504323050953175, 30.055740253156134 ], [ -95.504203050992402, 30.055805252684085 ], [ -95.504083050712111, 30.055871253024719 ], [ -95.503961050989489, 30.055937252696324 ], [ -95.503838051068399, 30.056002252392357 ], [ -95.503717050760883, 30.056071252643402 ], [ -95.503603051429522, 30.056148252786929 ], [ -95.507021051844831, 30.057611253297779 ], [ -95.506799052069894, 30.057916252991959 ], [ -95.506549051567944, 30.058279253229202 ], [ -95.506361052012934, 30.058551253432107 ], [ -95.506257051843718, 30.058711253029955 ], [ -95.506012051333656, 30.059022252954843 ], [ -95.505982052155957, 30.059061253731475 ], [ -95.505964052075399, 30.059084253809743 ], [ -95.505352051119729, 30.059642253914696 ], [ -95.505168051711038, 30.05978125343956 ], [ -95.505013051353998, 30.059914253936807 ], [ -95.504887051707314, 30.060054254019906 ], [ -95.504804051411256, 30.060187253772298 ], [ -95.50469105158939, 30.060547253443968 ], [ -95.504648051779014, 30.060835254155677 ], [ -95.504816051902765, 30.061515253601009 ], [ -95.504813052016402, 30.061973253696191 ], [ -95.504789051871896, 30.062142254034004 ], [ -95.504770051140895, 30.062235253737295 ], [ -95.504730051447453, 30.06236225410613 ], [ -95.504578051556678, 30.062622254396697 ], [ -95.504403051796231, 30.062549254232348 ], [ -95.50429405114815, 30.062508254360445 ], [ -95.504142051633821, 30.062461254177727 ], [ -95.504045051390392, 30.062447254493566 ], [ -95.503990050931165, 30.062439254305907 ], [ -95.503881050994906, 30.062410254357705 ], [ -95.503550051533949, 30.062398254381531 ], [ -95.503377050869304, 30.062401254090776 ], [ -95.503056051269894, 30.062464253775335 ], [ -95.502814051418284, 30.062554254579819 ], [ -95.502634051402666, 30.062630254170369 ], [ -95.502394050740364, 30.062792254514758 ], [ -95.501623051116752, 30.063456254377478 ], [ -95.501575051133727, 30.063499254172736 ], [ -95.50147005023625, 30.063589254177629 ], [ -95.501293050494297, 30.06344525419086 ], [ -95.501263051146637, 30.063421254406549 ], [ -95.501147050310195, 30.063334254725628 ], [ -95.501041050717888, 30.063243254367379 ], [ -95.50092805051996, 30.06315925413589 ], [ -95.500746051031072, 30.063009253950373 ], [ -95.500454050433248, 30.062774254177661 ], [ -95.498989050537205, 30.0616112540682 ], [ -95.498753050155912, 30.061402253704408 ], [ -95.497779049183691, 30.060615254152033 ], [ -95.497559049237424, 30.060419253538981 ], [ -95.497444049303326, 30.060335253981897 ], [ -95.49742604964537, 30.060319253874244 ], [ -95.496900048981274, 30.059853254229996 ], [ -95.49674404898019, 30.059693254039676 ], [ -95.496612049090544, 30.059529253669687 ], [ -95.496404049303109, 30.059242253823452 ], [ -95.496303048789059, 30.059077253360151 ], [ -95.496204048846423, 30.058893253955929 ], [ -95.496113049098966, 30.058698253363403 ], [ -95.496032049050186, 30.058491253157847 ], [ -95.496046049061789, 30.05905325353028 ], [ -95.496052049444046, 30.059295254205082 ], [ -95.496052048965282, 30.062009254568281 ], [ -95.496052049672471, 30.062409254695659 ], [ -95.496066049143593, 30.062573254235453 ], [ -95.49609504963901, 30.062720254537034 ], [ -95.496132049824652, 30.062800254263358 ], [ -95.496159049264293, 30.062887254267604 ], [ -95.496819049182903, 30.064977255106285 ], [ -95.496835049791784, 30.065070255351998 ], [ -95.496826049190631, 30.065268255184392 ], [ -95.496835049661286, 30.065620255419908 ], [ -95.496830049576346, 30.065886255325079 ], [ -95.496838049302198, 30.067662255490387 ], [ -95.496838049993443, 30.069100255852181 ], [ -95.496837049988613, 30.071225256212994 ], [ -95.496839049810234, 30.072005256446083 ], [ -95.49684004985491, 30.072727256387463 ], [ -95.496841049502365, 30.073335256727457 ], [ -95.496842050064544, 30.07372225652383 ], [ -95.496831050257271, 30.074055256634189 ], [ -95.499318050904606, 30.074069256831361 ], [ -95.499899050810214, 30.074073256605317 ], [ -95.500383051037616, 30.074076256629773 ], [ -95.500933051575032, 30.074079256265378 ], [ -95.503188051292582, 30.074094256854462 ], [ -95.503975051489348, 30.074098256291489 ], [ -95.507355052843906, 30.07412025675216 ], [ -95.50746305314189, 30.074121256784508 ], [ -95.508540053247089, 30.074128256425205 ], [ -95.509228053075347, 30.074125256540448 ], [ -95.511531054050323, 30.074115255870101 ], [ -95.51342905436951, 30.074107256371228 ], [ -95.512804054307438, 30.0735242557048 ], [ -95.512565054518333, 30.073300256295266 ], [ -95.512233053693322, 30.072995255655087 ], [ -95.511677053588897, 30.072465255886311 ], [ -95.511563054167112, 30.072362256309905 ], [ -95.511450053742323, 30.072251256258085 ], [ -95.511332053506166, 30.07214825552574 ], [ -95.509860053279951, 30.07074925518123 ], [ -95.509556053188334, 30.070461255179417 ], [ -95.509427053024723, 30.070325255244537 ], [ -95.509151053024738, 30.070069255292641 ], [ -95.509034052483543, 30.069956255565039 ], [ -95.508882052839851, 30.069808255016579 ], [ -95.508850052900712, 30.069778255560735 ], [ -95.50874605239477, 30.06968225502154 ], [ -95.508608053012452, 30.069564255436497 ], [ -95.50846705291174, 30.069425255015535 ], [ -95.508417053305209, 30.069380255166632 ], [ -95.508546052828649, 30.069278255745115 ], [ -95.509037052551619, 30.068892255120485 ], [ -95.509492052972661, 30.068461254909202 ], [ -95.510169053306086, 30.067921255188622 ], [ -95.511042053134219, 30.067253254396046 ], [ -95.511475053625574, 30.066915254897726 ], [ -95.511592053878786, 30.066831254690548 ], [ -95.511789053131722, 30.066695254619454 ], [ -95.512282054130381, 30.066405254477072 ], [ -95.512657053300984, 30.066225254413645 ], [ -95.513170053993051, 30.065998254791502 ], [ -95.513459053995547, 30.065893254885943 ], [ -95.513646053510016, 30.065832254886644 ], [ -95.513954053525026, 30.065752254379742 ], [ -95.514298054312448, 30.065670254413252 ], [ -95.514644054431272, 30.065608254312572 ], [ -95.515184054344502, 30.065546254137409 ], [ -95.515390053988355, 30.06552925409369 ], [ -95.51554005483905, 30.065538254695195 ], [ -95.515749054841876, 30.065538254545526 ], [ -95.516404054254082, 30.065507254362952 ], [ -95.516752054282591, 30.065512253971935 ], [ -95.517221054901484, 30.0655212543966 ], [ -95.517648054927733, 30.065521254277126 ], [ -95.517882055118491, 30.065521254091198 ], [ -95.518199055335671, 30.065535253886331 ], [ -95.518532054905108, 30.065591254633663 ], [ -95.519089055471952, 30.06570725415791 ], [ -95.519688055608327, 30.065809254643298 ], [ -95.520122055775673, 30.065919254478018 ], [ -95.520518056081471, 30.065992254232437 ], [ -95.521003056300827, 30.066082254248489 ], [ -95.521415055690369, 30.066180254232354 ], [ -95.52227005648669, 30.066299254391808 ], [ -95.523391056447252, 30.066517254252798 ], [ -95.523756056603119, 30.066498254410796 ], [ -95.52420505636168, 30.066395253926764 ], [ -95.524412056330519, 30.066351253815068 ], [ -95.524711056994576, 30.066156254482443 ], [ -95.525123056778455, 30.065866253834407 ], [ -95.525572057493875, 30.065697254288349 ], [ -95.525919056901671, 30.065616253622117 ], [ -95.526159056724936, 30.065659253892349 ], [ -95.526418057697654, 30.065728254139621 ], [ -95.526669057743192, 30.065771254358381 ], [ -95.526949057325297, 30.065860254019785 ], [ -95.527371057416133, 30.066058254401383 ], [ -95.527472057834856, 30.06608625395123 ], [ -95.527608057038051, 30.066123254241354 ], [ -95.528850058359026, 30.066688253747422 ], [ -95.530171058242985, 30.067259254468279 ], [ -95.530859058322946, 30.067573254526842 ], [ -95.530929058266665, 30.067606254631961 ], [ -95.531510058515295, 30.067896253882619 ], [ -95.531781059217181, 30.068205254457293 ], [ -95.531875058292968, 30.068589254502921 ], [ -95.531893058466096, 30.069054254821346 ], [ -95.531983058732976, 30.069714254660628 ], [ -95.532052059388292, 30.070333254465549 ], [ -95.532110059162221, 30.070618254689062 ], [ -95.532181059445747, 30.070751254718186 ], [ -95.532195058498303, 30.070765254997159 ], [ -95.532243058856466, 30.070794254418743 ], [ -95.532393058782446, 30.070975254860937 ], [ -95.532638059577323, 30.071224255049881 ], [ -95.533412058944947, 30.071668255343539 ], [ -95.533958058960238, 30.0718592553112 ], [ -95.534291059056798, 30.072161255468725 ], [ -95.534453059359706, 30.072489255454645 ], [ -95.534520059166397, 30.072790255324282 ], [ -95.534524059469561, 30.073055255244054 ], [ -95.534529059826241, 30.073293255407712 ], [ -95.540362060736541, 30.073215254878981 ], [ -95.542376061395316, 30.073164254740171 ], [ -95.549715063209092, 30.07310825473337 ], [ -95.550587063618011, 30.073134254431835 ], [ -95.55105006423085, 30.073197254708361 ], [ -95.55106806416731, 30.072982254312798 ], [ -95.551079064043492, 30.072866254385421 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 806, "Tract": "48201541005", "Area_SqMi": 0.63538322980179363, "total_2009": 360, "total_2010": 424, "total_2011": 609, "total_2012": 749, "total_2013": 734, "total_2014": 700, "total_2015": 668, "total_2016": 820, "total_2017": 819, "total_2018": 849, "total_2019": 760, "total_2020": 861, "age1": 200, "age2": 657, "age3": 277, "earn1": 202, "earn2": 372, "earn3": 560, "naics_s01": 0, "naics_s02": 19, "naics_s03": 0, "naics_s04": 13, "naics_s05": 71, "naics_s06": 247, "naics_s07": 161, "naics_s08": 1, "naics_s09": 0, "naics_s10": 34, "naics_s11": 30, "naics_s12": 11, "naics_s13": 0, "naics_s14": 27, "naics_s15": 5, "naics_s16": 459, "naics_s17": 0, "naics_s18": 13, "naics_s19": 43, "naics_s20": 0, "race1": 627, "race2": 338, "race3": 10, "race4": 134, "race5": 2, "race6": 23, "ethnicity1": 860, "ethnicity2": 274, "edu1": 187, "edu2": 225, "edu3": 291, "edu4": 231, "Shape_Length": 23079.668114157634, "Shape_Area": 17713396.977607872, "total_2021": 857, "total_2022": 1134 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.642378079150959, 29.902916217238367 ], [ -95.642404079600723, 29.90284321669386 ], [ -95.642063078848821, 29.902730216943514 ], [ -95.641817078824459, 29.902659217210655 ], [ -95.641577079545002, 29.90260721726467 ], [ -95.641213079110329, 29.902560216509286 ], [ -95.640897079519519, 29.902501217193542 ], [ -95.640832078872336, 29.902492217049293 ], [ -95.640759079351525, 29.902474216629422 ], [ -95.64044507929988, 29.902462216832134 ], [ -95.640142078940869, 29.902445217109459 ], [ -95.639865078371415, 29.902441216620943 ], [ -95.639404078492305, 29.902460217307574 ], [ -95.639122079050736, 29.902486216836401 ], [ -95.638562078704894, 29.902568217189639 ], [ -95.638497077902429, 29.902564217023293 ], [ -95.638409078716492, 29.902589216888796 ], [ -95.638376078696439, 29.902599217406465 ], [ -95.637743078413408, 29.902703217020196 ], [ -95.637408077638696, 29.902744216938238 ], [ -95.637117077639871, 29.902770216906546 ], [ -95.636959077757012, 29.902777217231609 ], [ -95.636651077859995, 29.902779216940775 ], [ -95.636342077839657, 29.90277021747637 ], [ -95.635927077506068, 29.902736217030984 ], [ -95.635727077323537, 29.902713216807339 ], [ -95.63550407803973, 29.902677216733398 ], [ -95.635245077582141, 29.902626217323014 ], [ -95.634893077626444, 29.902544217126188 ], [ -95.634591077860748, 29.902459217044193 ], [ -95.634320076926727, 29.902368217273864 ], [ -95.63411507702962, 29.902294216951084 ], [ -95.633916077705791, 29.902604216724733 ], [ -95.633723077137972, 29.902903217276084 ], [ -95.633642077460308, 29.903031217244795 ], [ -95.633032077467263, 29.903983217747282 ], [ -95.63263507736292, 29.904602217129714 ], [ -95.632352076618275, 29.905044217261686 ], [ -95.632290077377206, 29.905153217644635 ], [ -95.631897076669503, 29.905753217802918 ], [ -95.631851076785281, 29.905824218046391 ], [ -95.631117076395967, 29.906970218027375 ], [ -95.63086307704765, 29.907358217756329 ], [ -95.630728076572638, 29.90753521801377 ], [ -95.630167076887588, 29.908275218015561 ], [ -95.629552076304648, 29.908953218812677 ], [ -95.629436075917397, 29.909083218201594 ], [ -95.62934607686833, 29.909183218510069 ], [ -95.628503075729881, 29.909988218356126 ], [ -95.628094076031516, 29.910354218833106 ], [ -95.627842076562487, 29.910581219275993 ], [ -95.627043075854417, 29.911160219402742 ], [ -95.626810075750456, 29.911331219218145 ], [ -95.626438075395896, 29.911605219270864 ], [ -95.625961076103764, 29.911915219264507 ], [ -95.625054075854905, 29.912447219071112 ], [ -95.624237075347196, 29.912856219526724 ], [ -95.623305075188867, 29.913319219524748 ], [ -95.620772074406801, 29.914449220091456 ], [ -95.620610074523086, 29.914524220290499 ], [ -95.620523074247004, 29.914560219890728 ], [ -95.620096074452917, 29.914770220405014 ], [ -95.620008074053487, 29.91480421967692 ], [ -95.619928074010858, 29.9148372199672 ], [ -95.619806074321886, 29.914901219771551 ], [ -95.619951074414146, 29.915003219749021 ], [ -95.620057074231966, 29.915078220018916 ], [ -95.620814074131985, 29.915611220174377 ], [ -95.621496074944858, 29.916123220540026 ], [ -95.62205507500363, 29.916514220299856 ], [ -95.622266074942004, 29.916662219931879 ], [ -95.623590075750528, 29.917587220540256 ], [ -95.626825076627412, 29.919848220458015 ], [ -95.628459076752321, 29.920990221432639 ], [ -95.628500076357611, 29.921019220831273 ], [ -95.628734076531458, 29.921182221133865 ], [ -95.628770076286841, 29.921085220806571 ], [ -95.628804076822988, 29.921017221029253 ], [ -95.628836076813016, 29.92095322079296 ], [ -95.629156077230292, 29.920308220516048 ], [ -95.629233076838688, 29.920137220624941 ], [ -95.629337076560859, 29.919872220840336 ], [ -95.629389076754961, 29.919723221175023 ], [ -95.629457076723909, 29.919497220410026 ], [ -95.629488076846485, 29.91936422105659 ], [ -95.629526076643728, 29.919212220718439 ], [ -95.629575077290056, 29.918940220193861 ], [ -95.629639076806114, 29.91840222017068 ], [ -95.629681076613196, 29.918109220717493 ], [ -95.629746076467015, 29.917804220662898 ], [ -95.629800076387568, 29.917602220135386 ], [ -95.629896076970269, 29.917311220067347 ], [ -95.629961077146547, 29.917137220610797 ], [ -95.630302077210743, 29.917158219826394 ], [ -95.63056607671146, 29.917201220171261 ], [ -95.630894076911588, 29.917243219980282 ], [ -95.631103076709223, 29.917273219923253 ], [ -95.631422076791452, 29.917288219794969 ], [ -95.631550076883968, 29.917288220127052 ], [ -95.631891077631948, 29.917309219814587 ], [ -95.632116076965445, 29.917316219835183 ], [ -95.63247807758097, 29.917286220386426 ], [ -95.632575077534, 29.917301220524056 ], [ -95.632949077823497, 29.917282219857189 ], [ -95.633007077405253, 29.91728221995805 ], [ -95.633079077487409, 29.91731422051167 ], [ -95.633444077425992, 29.917317220088009 ], [ -95.633935078412946, 29.917277219966785 ], [ -95.634171077884417, 29.917276220438858 ], [ -95.634339078298467, 29.917272220138479 ], [ -95.634427078269795, 29.917270220023862 ], [ -95.634422077898748, 29.916771219555294 ], [ -95.634433078052766, 29.916623219736401 ], [ -95.634468078044975, 29.91646921948848 ], [ -95.634497078334945, 29.916392219821763 ], [ -95.634533078263345, 29.916315219668462 ], [ -95.63466707808071, 29.916087219559071 ], [ -95.635085077717861, 29.915437219268807 ], [ -95.635177078108114, 29.915275219728077 ], [ -95.635211077761795, 29.915200219860935 ], [ -95.635254077734544, 29.915074219778411 ], [ -95.635283077707868, 29.914959219324512 ], [ -95.635297077899594, 29.914881219743446 ], [ -95.635306078652391, 29.914712219384601 ], [ -95.635289078094772, 29.91285121893258 ], [ -95.635286078503668, 29.912292218678413 ], [ -95.635281078136245, 29.911557218776554 ], [ -95.635274077804226, 29.910600219040472 ], [ -95.635272078299593, 29.910269218516884 ], [ -95.635272077791697, 29.910195218172632 ], [ -95.635255077566384, 29.909529218501699 ], [ -95.635252077554924, 29.909156218112575 ], [ -95.635239078159103, 29.908975218635135 ], [ -95.635671077790363, 29.908978218467425 ], [ -95.636410078484573, 29.908969218719058 ], [ -95.636860078732212, 29.90896721800399 ], [ -95.637139078169398, 29.908965218126085 ], [ -95.637174078107108, 29.908965217858665 ], [ -95.638238078567994, 29.908953218301299 ], [ -95.638216079012494, 29.906843217686749 ], [ -95.638215078012848, 29.906267217419384 ], [ -95.638216078478123, 29.905859217342805 ], [ -95.638205078153007, 29.905323217184069 ], [ -95.639257078439485, 29.905320217121673 ], [ -95.640060079103264, 29.905307217423388 ], [ -95.640222079250535, 29.90530621718602 ], [ -95.640363079068848, 29.905296217738062 ], [ -95.640449079286412, 29.905281217481985 ], [ -95.640540078817239, 29.905259217478687 ], [ -95.640632079555147, 29.905228217736031 ], [ -95.640722079323595, 29.905188217111281 ], [ -95.640807078619986, 29.905143217409631 ], [ -95.640888078893795, 29.905091217450778 ], [ -95.640964078710866, 29.905034217530002 ], [ -95.641035078929377, 29.904971217635691 ], [ -95.641680079501498, 29.904252217251621 ], [ -95.6418590790461, 29.904044216739535 ], [ -95.641942079279488, 29.903930216703845 ], [ -95.642062079370902, 29.903735216673482 ], [ -95.642154079400314, 29.903566217390441 ], [ -95.642214079044365, 29.903424217237959 ], [ -95.642294078920457, 29.903203216883259 ], [ -95.642378079150959, 29.902916217238367 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 807, "Tract": "48201541004", "Area_SqMi": 1.4309923084108773, "total_2009": 1555, "total_2010": 1872, "total_2011": 2150, "total_2012": 2221, "total_2013": 2070, "total_2014": 2260, "total_2015": 2450, "total_2016": 2559, "total_2017": 2278, "total_2018": 2467, "total_2019": 2488, "total_2020": 2347, "age1": 503, "age2": 1647, "age3": 581, "earn1": 469, "earn2": 554, "earn3": 1708, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 231, "naics_s05": 352, "naics_s06": 1050, "naics_s07": 26, "naics_s08": 80, "naics_s09": 3, "naics_s10": 2, "naics_s11": 15, "naics_s12": 143, "naics_s13": 0, "naics_s14": 514, "naics_s15": 0, "naics_s16": 19, "naics_s17": 0, "naics_s18": 26, "naics_s19": 270, "naics_s20": 0, "race1": 2080, "race2": 320, "race3": 34, "race4": 242, "race5": 7, "race6": 48, "ethnicity1": 1864, "ethnicity2": 867, "edu1": 480, "edu2": 556, "edu3": 638, "edu4": 554, "Shape_Length": 32913.19257728925, "Shape_Area": 39893616.390682071, "total_2021": 2286, "total_2022": 2731 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.650317082808186, 29.935257222836569 ], [ -95.650312083394624, 29.935189223365526 ], [ -95.650315083310588, 29.93511122284302 ], [ -95.650303082440217, 29.935037222676943 ], [ -95.650281082771926, 29.934963223010516 ], [ -95.650221082419066, 29.934794222685227 ], [ -95.650175082713602, 29.934706222979187 ], [ -95.649993082470573, 29.934326223361751 ], [ -95.649545082670926, 29.933419222452532 ], [ -95.649466082196099, 29.933259222430074 ], [ -95.649326082598435, 29.932952222455711 ], [ -95.649277083046925, 29.932866222440644 ], [ -95.64907708244391, 29.932468222595162 ], [ -95.648967082067159, 29.932277222685062 ], [ -95.648779082397482, 29.931991222920018 ], [ -95.648590082563629, 29.931729222973182 ], [ -95.648517082324645, 29.931639222563753 ], [ -95.648368082253512, 29.931467222773811 ], [ -95.648143082642392, 29.931228222887228 ], [ -95.648045082540207, 29.931130222248914 ], [ -95.647419081642852, 29.930546222693689 ], [ -95.647288082283566, 29.930389222139791 ], [ -95.647205082330757, 29.930302222166382 ], [ -95.647068082330904, 29.930138221992717 ], [ -95.646939081391878, 29.929966222657345 ], [ -95.646766081987465, 29.929710222505911 ], [ -95.646615081334971, 29.929465222361539 ], [ -95.646459081260261, 29.929177222085549 ], [ -95.646308081359862, 29.928883221760245 ], [ -95.646285081990015, 29.928796221959402 ], [ -95.646188081687356, 29.928519221826907 ], [ -95.646107081592106, 29.928251221832017 ], [ -95.646032081665751, 29.927938222193898 ], [ -95.645983081456194, 29.927641221916709 ], [ -95.645966081045572, 29.927489221761544 ], [ -95.645940081470499, 29.927170221393609 ], [ -95.645938081454432, 29.926993221552401 ], [ -95.645946081226271, 29.92691222202361 ], [ -95.645944081510962, 29.926815221204969 ], [ -95.645934081852488, 29.926701221189848 ], [ -95.645931081225996, 29.926340221812826 ], [ -95.645926081704758, 29.925635221449841 ], [ -95.645918081255545, 29.92525822102267 ], [ -95.645906081612694, 29.925133221139603 ], [ -95.645915081419247, 29.925016220976946 ], [ -95.64591308166375, 29.924979221208662 ], [ -95.645910081089752, 29.92489622105807 ], [ -95.645909081662111, 29.924666220831316 ], [ -95.6459340809362, 29.924407221242863 ], [ -95.645915081242279, 29.924324221113785 ], [ -95.645905080974472, 29.924220221318798 ], [ -95.645893081411714, 29.923765221014904 ], [ -95.645898081610341, 29.923648221040605 ], [ -95.645892081663732, 29.923538220794999 ], [ -95.645874080691542, 29.921632220747362 ], [ -95.645885081383128, 29.921345220320752 ], [ -95.645908081105389, 29.921090220283645 ], [ -95.645935081004794, 29.920904220609216 ], [ -95.645954081264193, 29.920770220495172 ], [ -95.646008081426373, 29.920517220753005 ], [ -95.646088081373307, 29.920232220607691 ], [ -95.646186081293294, 29.919948219838272 ], [ -95.6463030814067, 29.919663219864752 ], [ -95.646433081405419, 29.919390220098673 ], [ -95.646566080864403, 29.919147220387906 ], [ -95.646711080969908, 29.918914220170191 ], [ -95.646884081547356, 29.918667220253855 ], [ -95.647050081297124, 29.918450219578681 ], [ -95.647468080908354, 29.917961219385312 ], [ -95.647670081620916, 29.917717220007258 ], [ -95.647908081209664, 29.917402219755836 ], [ -95.647964081003607, 29.917321219228739 ], [ -95.648122081269577, 29.91707221938934 ], [ -95.648230081545307, 29.916871219756445 ], [ -95.6484150813383, 29.916463219351588 ], [ -95.648775081957979, 29.915599219043497 ], [ -95.648894081519074, 29.915313218763785 ], [ -95.648941081684015, 29.91519721929367 ], [ -95.649064081224992, 29.914861219437963 ], [ -95.64913108126224, 29.914645219214233 ], [ -95.649180081513364, 29.914440219425547 ], [ -95.649227081397171, 29.914184219260296 ], [ -95.649256081474377, 29.914003219171494 ], [ -95.649286081454747, 29.91373821840476 ], [ -95.649299081526536, 29.913455218539838 ], [ -95.649299081323264, 29.913095218886212 ], [ -95.64927308164593, 29.91279421847862 ], [ -95.649242081226362, 29.91258221830801 ], [ -95.649038081690378, 29.911522218461585 ], [ -95.648990081552995, 29.911238218784142 ], [ -95.64895808178342, 29.910962218139936 ], [ -95.648942081626188, 29.910704217805268 ], [ -95.648941081728978, 29.910548218564639 ], [ -95.648955080985331, 29.910277218553887 ], [ -95.648965080945842, 29.910103217993523 ], [ -95.648987080964019, 29.909901218155014 ], [ -95.649033081404596, 29.909624218140689 ], [ -95.649089081403417, 29.909373217844507 ], [ -95.649354081908967, 29.908418217424952 ], [ -95.649498081838203, 29.907919217572275 ], [ -95.64918608190473, 29.907847217723432 ], [ -95.648893080999883, 29.907762217211257 ], [ -95.648644081517716, 29.907677217365904 ], [ -95.648396080718129, 29.907582217231187 ], [ -95.648200080866204, 29.907499217987553 ], [ -95.647951081496146, 29.907384217460525 ], [ -95.647876080858452, 29.907344217152325 ], [ -95.647804080547473, 29.907313217183091 ], [ -95.647543081416217, 29.907168217314446 ], [ -95.647369081316882, 29.907061217587234 ], [ -95.647124081310011, 29.906896217739114 ], [ -95.646931080671919, 29.9067592171691 ], [ -95.646717080431998, 29.906595217614345 ], [ -95.646486080876343, 29.906400217681156 ], [ -95.646336081093082, 29.906256217306542 ], [ -95.646120080181262, 29.906027217392108 ], [ -95.645983080590923, 29.905869217801591 ], [ -95.645901080333545, 29.905799217087559 ], [ -95.645793079983946, 29.905623217490582 ], [ -95.645726079995242, 29.905536217235653 ], [ -95.645666080408731, 29.90544621760467 ], [ -95.645214080237352, 29.904828217602926 ], [ -95.644988080557127, 29.904550217297601 ], [ -95.644793080535933, 29.904345217478539 ], [ -95.644466080134805, 29.90404321711539 ], [ -95.644329079543411, 29.903925217215296 ], [ -95.644233079577432, 29.903852217174176 ], [ -95.644064079460762, 29.903724216948348 ], [ -95.643792080124811, 29.903536216701713 ], [ -95.643558079899961, 29.903390216721583 ], [ -95.643329079608705, 29.903259216539009 ], [ -95.643088079937414, 29.903140216831041 ], [ -95.643000079615106, 29.903097216836596 ], [ -95.642679079483742, 29.902948216607765 ], [ -95.642404079600723, 29.90284321669386 ], [ -95.642378079150959, 29.902916217238367 ], [ -95.642294078920457, 29.903203216883259 ], [ -95.642214079044365, 29.903424217237959 ], [ -95.642154079400314, 29.903566217390441 ], [ -95.642062079370902, 29.903735216673482 ], [ -95.641942079279488, 29.903930216703845 ], [ -95.6418590790461, 29.904044216739535 ], [ -95.641680079501498, 29.904252217251621 ], [ -95.641035078929377, 29.904971217635691 ], [ -95.640964078710866, 29.905034217530002 ], [ -95.640888078893795, 29.905091217450778 ], [ -95.640807078619986, 29.905143217409631 ], [ -95.640722079323595, 29.905188217111281 ], [ -95.640632079555147, 29.905228217736031 ], [ -95.640540078817239, 29.905259217478687 ], [ -95.640449079286412, 29.905281217481985 ], [ -95.640363079068848, 29.905296217738062 ], [ -95.640222079250535, 29.90530621718602 ], [ -95.640060079103264, 29.905307217423388 ], [ -95.639257078439485, 29.905320217121673 ], [ -95.638205078153007, 29.905323217184069 ], [ -95.638216078478123, 29.905859217342805 ], [ -95.638215078012848, 29.906267217419384 ], [ -95.638216079012494, 29.906843217686749 ], [ -95.638238078567994, 29.908953218301299 ], [ -95.637174078107108, 29.908965217858665 ], [ -95.637139078169398, 29.908965218126085 ], [ -95.636860078732212, 29.90896721800399 ], [ -95.636410078484573, 29.908969218719058 ], [ -95.635671077790363, 29.908978218467425 ], [ -95.635239078159103, 29.908975218635135 ], [ -95.635252077554924, 29.909156218112575 ], [ -95.635255077566384, 29.909529218501699 ], [ -95.635272077791697, 29.910195218172632 ], [ -95.635272078299593, 29.910269218516884 ], [ -95.635274077804226, 29.910600219040472 ], [ -95.635281078136245, 29.911557218776554 ], [ -95.635286078503668, 29.912292218678413 ], [ -95.635289078094772, 29.91285121893258 ], [ -95.635306078652391, 29.914712219384601 ], [ -95.635297077899594, 29.914881219743446 ], [ -95.635283077707868, 29.914959219324512 ], [ -95.635254077734544, 29.915074219778411 ], [ -95.635211077761795, 29.915200219860935 ], [ -95.635177078108114, 29.915275219728077 ], [ -95.635085077717861, 29.915437219268807 ], [ -95.63466707808071, 29.916087219559071 ], [ -95.634533078263345, 29.916315219668462 ], [ -95.634497078334945, 29.916392219821763 ], [ -95.634468078044975, 29.91646921948848 ], [ -95.634433078052766, 29.916623219736401 ], [ -95.634422077898748, 29.916771219555294 ], [ -95.634427078269795, 29.917270220023862 ], [ -95.634339078298467, 29.917272220138479 ], [ -95.634171077884417, 29.917276220438858 ], [ -95.633935078412946, 29.917277219966785 ], [ -95.633444077425992, 29.917317220088009 ], [ -95.633079077487409, 29.91731422051167 ], [ -95.633007077405253, 29.91728221995805 ], [ -95.632949077823497, 29.917282219857189 ], [ -95.632575077534, 29.917301220524056 ], [ -95.63247807758097, 29.917286220386426 ], [ -95.632116076965445, 29.917316219835183 ], [ -95.631891077631948, 29.917309219814587 ], [ -95.631550076883968, 29.917288220127052 ], [ -95.631422076791452, 29.917288219794969 ], [ -95.631103076709223, 29.917273219923253 ], [ -95.630894076911588, 29.917243219980282 ], [ -95.63056607671146, 29.917201220171261 ], [ -95.630302077210743, 29.917158219826394 ], [ -95.629961077146547, 29.917137220610797 ], [ -95.629896076970269, 29.917311220067347 ], [ -95.629800076387568, 29.917602220135386 ], [ -95.629746076467015, 29.917804220662898 ], [ -95.629681076613196, 29.918109220717493 ], [ -95.629639076806114, 29.91840222017068 ], [ -95.629575077290056, 29.918940220193861 ], [ -95.629526076643728, 29.919212220718439 ], [ -95.629488076846485, 29.91936422105659 ], [ -95.629457076723909, 29.919497220410026 ], [ -95.629389076754961, 29.919723221175023 ], [ -95.629337076560859, 29.919872220840336 ], [ -95.629233076838688, 29.920137220624941 ], [ -95.629156077230292, 29.920308220516048 ], [ -95.628836076813016, 29.92095322079296 ], [ -95.628804076822988, 29.921017221029253 ], [ -95.628770076286841, 29.921085220806571 ], [ -95.628734076531458, 29.921182221133865 ], [ -95.62880307627519, 29.9212292213337 ], [ -95.628949077208489, 29.92132922154661 ], [ -95.629035076546643, 29.92139022131018 ], [ -95.631656078064992, 29.923251221016947 ], [ -95.6330890777961, 29.924266221175067 ], [ -95.633341078533377, 29.924445221864676 ], [ -95.633349078221954, 29.924451221466093 ], [ -95.633664077749245, 29.924689221633596 ], [ -95.634538078204955, 29.925302221540633 ], [ -95.637546079558788, 29.927411222184066 ], [ -95.637608079610857, 29.927508221754337 ], [ -95.637700079645668, 29.927615222185018 ], [ -95.637867079162248, 29.927768221802392 ], [ -95.638656079283194, 29.928410222001617 ], [ -95.638780079415511, 29.928528221851394 ], [ -95.638862079409762, 29.928616222151515 ], [ -95.641421080761972, 29.93041322211219 ], [ -95.643248080576512, 29.931697223144752 ], [ -95.643649081342716, 29.931985223017023 ], [ -95.643682081409594, 29.932008223028543 ], [ -95.645778081908716, 29.933487223055916 ], [ -95.649161082231032, 29.935929223776451 ], [ -95.649764082836569, 29.936344223562635 ], [ -95.649996082594555, 29.936503223559988 ], [ -95.650114083217929, 29.936212222952733 ], [ -95.650149082703351, 29.936152223645152 ], [ -95.650162082714914, 29.936117223022418 ], [ -95.650197082427297, 29.93601922351295 ], [ -95.650271083378783, 29.935736223417322 ], [ -95.650283082725295, 29.935660223699184 ], [ -95.650286082588181, 29.935535223628925 ], [ -95.650291083438418, 29.935515223283705 ], [ -95.650312082755718, 29.935385223637176 ], [ -95.650317082808186, 29.935257222836569 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 808, "Tract": "48201554804", "Area_SqMi": 3.3083000027568681, "total_2009": 819, "total_2010": 938, "total_2011": 850, "total_2012": 981, "total_2013": 1174, "total_2014": 1056, "total_2015": 1029, "total_2016": 950, "total_2017": 953, "total_2018": 1168, "total_2019": 1252, "total_2020": 1148, "age1": 487, "age2": 1047, "age3": 377, "earn1": 324, "earn2": 504, "earn3": 1083, "naics_s01": 3, "naics_s02": 154, "naics_s03": 0, "naics_s04": 68, "naics_s05": 85, "naics_s06": 56, "naics_s07": 31, "naics_s08": 50, "naics_s09": 36, "naics_s10": 40, "naics_s11": 98, "naics_s12": 227, "naics_s13": 0, "naics_s14": 84, "naics_s15": 32, "naics_s16": 485, "naics_s17": 47, "naics_s18": 209, "naics_s19": 205, "naics_s20": 1, "race1": 1481, "race2": 261, "race3": 20, "race4": 120, "race5": 1, "race6": 28, "ethnicity1": 1326, "ethnicity2": 585, "edu1": 293, "edu2": 339, "edu3": 460, "edu4": 332, "Shape_Length": 40951.880876306706, "Shape_Area": 92229741.864817783, "total_2021": 1643, "total_2022": 1911 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.57628906976241, 30.056228250313467 ], [ -95.575962069486138, 30.056043250436719 ], [ -95.575236069531712, 30.055632249972685 ], [ -95.574983069400204, 30.055528250043601 ], [ -95.574286069071135, 30.055241250125611 ], [ -95.573017068584221, 30.05499025055007 ], [ -95.572312068471987, 30.054954249789208 ], [ -95.571270068417405, 30.05473025017789 ], [ -95.570952068160835, 30.054610250183302 ], [ -95.570565068252606, 30.054464250361647 ], [ -95.569859067748069, 30.054140250568516 ], [ -95.569362067519407, 30.053863250135024 ], [ -95.568771067098865, 30.053392249923899 ], [ -95.567930067683534, 30.052391249519655 ], [ -95.567849067039703, 30.052241250170589 ], [ -95.567228067043189, 30.051081249186275 ], [ -95.566408066863843, 30.050103249746694 ], [ -95.565886066688535, 30.049764249417802 ], [ -95.565231066304463, 30.04911024901595 ], [ -95.56453206636354, 30.048501248938717 ], [ -95.564023065524864, 30.047851249330648 ], [ -95.563662066199058, 30.047337249122737 ], [ -95.563427065917992, 30.047002248908488 ], [ -95.563079065383917, 30.044628248234424 ], [ -95.562824065563618, 30.040189247210176 ], [ -95.562816065041289, 30.040045247229127 ], [ -95.562687065673558, 30.039490247528846 ], [ -95.562566065402251, 30.039010247486452 ], [ -95.562361064859346, 30.038543247508109 ], [ -95.562234064862196, 30.038304246865003 ], [ -95.562071064814774, 30.038043247107737 ], [ -95.561298064814935, 30.037093247373907 ], [ -95.559150064504053, 30.035281246363787 ], [ -95.558872064451847, 30.035047246360762 ], [ -95.558559063791691, 30.034804246303899 ], [ -95.557889063741612, 30.034467246618277 ], [ -95.557355063795058, 30.03420824632364 ], [ -95.557013063360117, 30.034096246370989 ], [ -95.5568720640332, 30.034042246321693 ], [ -95.55671606314796, 30.03398424611688 ], [ -95.556211062964991, 30.033756246488643 ], [ -95.555312063032289, 30.033162246779852 ], [ -95.55517806323644, 30.03337024685057 ], [ -95.55430906269136, 30.034590246816382 ], [ -95.554155062532061, 30.034785246304409 ], [ -95.553994063230846, 30.034960247171949 ], [ -95.553822062354556, 30.035116246949077 ], [ -95.553630062789921, 30.035263246975966 ], [ -95.553527062924559, 30.035333246439301 ], [ -95.553189062886815, 30.035538246795095 ], [ -95.553109063152604, 30.035583247005228 ], [ -95.55265006249472, 30.035844247002135 ], [ -95.552557062382917, 30.035903246661235 ], [ -95.551918062578707, 30.036274247346 ], [ -95.55141906230628, 30.036564247162502 ], [ -95.550989062084298, 30.036815247412139 ], [ -95.55087506239461, 30.036873247542957 ], [ -95.549930061452869, 30.037411247582003 ], [ -95.549520061615567, 30.037645247395439 ], [ -95.548396062033177, 30.038245247323559 ], [ -95.548291061222201, 30.038324247595249 ], [ -95.547795061722695, 30.038712248161989 ], [ -95.547098061590745, 30.039345247556081 ], [ -95.546851061084666, 30.039664247700241 ], [ -95.54655806138075, 30.040069248256575 ], [ -95.545933060875427, 30.041258248211342 ], [ -95.545741060990494, 30.041568248256173 ], [ -95.545578060764029, 30.041799248387353 ], [ -95.545302060564097, 30.042112248310332 ], [ -95.545037061320272, 30.042372248877662 ], [ -95.544975060800056, 30.042454248380611 ], [ -95.544933060932394, 30.042494248696681 ], [ -95.544843061237529, 30.042579248544925 ], [ -95.544560061189031, 30.042804248654889 ], [ -95.5444590612491, 30.042868248426419 ], [ -95.54407306080418, 30.043096248864828 ], [ -95.543431060456072, 30.043464248489133 ], [ -95.54331806064765, 30.043536248482241 ], [ -95.542865060554576, 30.043798249296909 ], [ -95.542514060695723, 30.043992248939151 ], [ -95.542128060224698, 30.044196248907909 ], [ -95.541886060396507, 30.04432324889742 ], [ -95.541681060507841, 30.044427248941812 ], [ -95.541493060329472, 30.0445282492954 ], [ -95.54135606050437, 30.044603249217506 ], [ -95.540935060298281, 30.044828248876598 ], [ -95.539821059656262, 30.045462249110091 ], [ -95.539613059289152, 30.045576249320234 ], [ -95.539519059747704, 30.045634249617745 ], [ -95.539425059650114, 30.045685249711301 ], [ -95.539332060128956, 30.04572924920765 ], [ -95.539150059963049, 30.04580224963938 ], [ -95.539064059372336, 30.045830249302206 ], [ -95.538835059540759, 30.045886249814178 ], [ -95.538652059802445, 30.045919249292737 ], [ -95.538411059779264, 30.045929249652559 ], [ -95.538528059710771, 30.046608249258206 ], [ -95.538561059277356, 30.046767250053875 ], [ -95.538649058973434, 30.046997249889117 ], [ -95.538689059239559, 30.047135250055586 ], [ -95.538761059826058, 30.047488249600573 ], [ -95.538916059739705, 30.0483462499563 ], [ -95.53895205972232, 30.048510250262229 ], [ -95.539033059814884, 30.048813250210525 ], [ -95.539091059566189, 30.048994250484107 ], [ -95.539168060191898, 30.049199250342109 ], [ -95.539300059285395, 30.049502250121204 ], [ -95.539465060270743, 30.049843249925839 ], [ -95.540322059909741, 30.051564251013062 ], [ -95.54056706027616, 30.052046250944009 ], [ -95.540655060705063, 30.05221625059842 ], [ -95.540807060542321, 30.05251125039451 ], [ -95.542360060561663, 30.055531250994719 ], [ -95.543198061450752, 30.057143251927403 ], [ -95.543308061402982, 30.057356251570219 ], [ -95.543380060763781, 30.057497252146074 ], [ -95.543689061330909, 30.058099252091097 ], [ -95.543840061559465, 30.058393252329676 ], [ -95.544040061695085, 30.058784251693616 ], [ -95.54473506118822, 30.06013725210649 ], [ -95.544894061288915, 30.060433252486355 ], [ -95.544966061769628, 30.060589252132527 ], [ -95.545050062038428, 30.060738252337657 ], [ -95.545579062153067, 30.061770252571705 ], [ -95.545605061800501, 30.061820252517649 ], [ -95.545801062119608, 30.062204252948369 ], [ -95.546390062446804, 30.06335125322909 ], [ -95.5484350631056, 30.067315253611941 ], [ -95.55063206378, 30.071575253997167 ], [ -95.550721063316942, 30.07174725435986 ], [ -95.550908064046752, 30.072110254869909 ], [ -95.550999064340246, 30.072308254111181 ], [ -95.551032063523991, 30.072397254661492 ], [ -95.551057063425134, 30.07248025480569 ], [ -95.55107206369631, 30.07255825467584 ], [ -95.551081063781595, 30.072692254301568 ], [ -95.551079064043492, 30.072866254385421 ], [ -95.55106806416731, 30.072982254312798 ], [ -95.55105006423085, 30.073197254708361 ], [ -95.551201063485067, 30.073217254333827 ], [ -95.551799063999951, 30.073284254286641 ], [ -95.552931064191071, 30.073564254524531 ], [ -95.553908065085508, 30.073847254521905 ], [ -95.554054064772188, 30.07390125462852 ], [ -95.554473064799723, 30.074055254337022 ], [ -95.554812065391516, 30.074179254691735 ], [ -95.555108065365616, 30.074288255059635 ], [ -95.555426064645062, 30.074404254410091 ], [ -95.555863065086825, 30.074654254500459 ], [ -95.556122065318021, 30.074802255061776 ], [ -95.556422064885382, 30.075021255010952 ], [ -95.556450064921464, 30.075042254816424 ], [ -95.556732065654273, 30.075247255014077 ], [ -95.556768065124587, 30.075221254654249 ], [ -95.557043065830101, 30.075018255265398 ], [ -95.557307065822471, 30.07479925514755 ], [ -95.55750406581376, 30.074591254501666 ], [ -95.557711065376552, 30.07434925502956 ], [ -95.557964065409152, 30.07405325425751 ], [ -95.558412066144157, 30.073522254846708 ], [ -95.55861106633354, 30.073286254092196 ], [ -95.559675065959439, 30.072069254511177 ], [ -95.560541066255894, 30.071095253544218 ], [ -95.560638065707465, 30.070969253972972 ], [ -95.560820065875831, 30.070767253752603 ], [ -95.561457065903298, 30.070025253192728 ], [ -95.562368066636594, 30.068965253334159 ], [ -95.562781066995129, 30.068484253434598 ], [ -95.563586067238546, 30.0675462527925 ], [ -95.564188066490217, 30.066887252879923 ], [ -95.564461067247009, 30.066614253135871 ], [ -95.564572066988632, 30.066503253040008 ], [ -95.565745066940735, 30.065374252960858 ], [ -95.569768068647164, 30.061965251509292 ], [ -95.570338067765562, 30.061482251601635 ], [ -95.573167068578826, 30.059136251103347 ], [ -95.573737068625064, 30.058676250756164 ], [ -95.574417068661987, 30.058062250406579 ], [ -95.574777069666212, 30.057709250347393 ], [ -95.57628906976241, 30.056228250313467 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 809, "Tract": "48201350102", "Area_SqMi": 1.7636262184745874, "total_2009": 193, "total_2010": 240, "total_2011": 261, "total_2012": 261, "total_2013": 257, "total_2014": 232, "total_2015": 285, "total_2016": 324, "total_2017": 325, "total_2018": 330, "total_2019": 356, "total_2020": 256, "age1": 28, "age2": 112, "age3": 38, "earn1": 33, "earn2": 96, "earn3": 49, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 4, "naics_s07": 53, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 21, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 83, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 94, "race2": 44, "race3": 1, "race4": 35, "race5": 2, "race6": 2, "ethnicity1": 120, "ethnicity2": 58, "edu1": 27, "edu2": 42, "edu3": 48, "edu4": 33, "Shape_Length": 40782.194793369163, "Shape_Area": 49166880.494631477, "total_2021": 204, "total_2022": 178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.253885964243821, 29.554042159018927 ], [ -95.253958964370753, 29.553948158811043 ], [ -95.253862964515008, 29.553783158287271 ], [ -95.25376296493306, 29.553711158859741 ], [ -95.253705963943801, 29.553695158637758 ], [ -95.253630964559051, 29.553689158416883 ], [ -95.253498964346548, 29.553733158160888 ], [ -95.253347964036436, 29.553843158334626 ], [ -95.253114964174074, 29.55412315872832 ], [ -95.252768963911279, 29.55450815853473 ], [ -95.252503963869898, 29.554750158475688 ], [ -95.252063963791642, 29.555074158964015 ], [ -95.251805964441587, 29.555222159061429 ], [ -95.251365964218579, 29.55540915910408 ], [ -95.251057963765035, 29.555497159108857 ], [ -95.250805963579012, 29.555508159369719 ], [ -95.250572963521876, 29.555447159341671 ], [ -95.250327963791136, 29.555354158742087 ], [ -95.25000696378703, 29.555168159046502 ], [ -95.24995696366085, 29.555130158761887 ], [ -95.249874963973227, 29.555124158741922 ], [ -95.249767963456605, 29.555196159436846 ], [ -95.249692963619751, 29.555234159369004 ], [ -95.249629963013632, 29.555245158974721 ], [ -95.249440963622249, 29.555251159381207 ], [ -95.249094963535669, 29.555246159234247 ], [ -95.249025963266917, 29.555273159272691 ], [ -95.24868696311934, 29.555482158966569 ], [ -95.248535962836272, 29.555598158925076 ], [ -95.248390962753248, 29.555680159177083 ], [ -95.248321963495314, 29.555708159129924 ], [ -95.248233963409319, 29.555713159391686 ], [ -95.248170963130377, 29.555708159031678 ], [ -95.247981963329323, 29.555515158700747 ], [ -95.247849962677478, 29.555406158920903 ], [ -95.247786963296008, 29.555340159197833 ], [ -95.247534962743885, 29.554971159209 ], [ -95.247522962431873, 29.554889158555916 ], [ -95.247522963009857, 29.554751159035437 ], [ -95.247553963020664, 29.5546411586642 ], [ -95.247616963038766, 29.554537158585696 ], [ -95.247691962830871, 29.55444915870056 ], [ -95.247748963358788, 29.554333158862214 ], [ -95.247773962884963, 29.55425615862443 ], [ -95.247886962647272, 29.554097159020397 ], [ -95.247936963010659, 29.554009158937344 ], [ -95.247930962684293, 29.553910159214478 ], [ -95.247892962731001, 29.553772158607192 ], [ -95.247741963076706, 29.553470158943984 ], [ -95.247496962920991, 29.553201158679588 ], [ -95.247376962709112, 29.553102158918126 ], [ -95.24729296270128, 29.553132158480921 ], [ -95.247131962913244, 29.55319015845232 ], [ -95.247062962587464, 29.553240158451132 ], [ -95.246923962354813, 29.553388158921816 ], [ -95.246848962782593, 29.553515158699099 ], [ -95.246785962977569, 29.553581158388926 ], [ -95.246691962768665, 29.553641158501552 ], [ -95.24659096275694, 29.553691159178602 ], [ -95.246502962188075, 29.553751158761475 ], [ -95.246227962866286, 29.553876158464504 ], [ -95.246188962078648, 29.553894158411783 ], [ -95.246081962109486, 29.553982159154856 ], [ -95.246025962881916, 29.554048159140773 ], [ -95.245955962644288, 29.554153159024843 ], [ -95.245761962381081, 29.554362158953687 ], [ -95.245654962527567, 29.554499159362198 ], [ -95.245541962580276, 29.554615158618631 ], [ -95.245371962526406, 29.554714159195292 ], [ -95.24522696281619, 29.554741159166305 ], [ -95.24510096206231, 29.554725158612055 ], [ -95.244868962041224, 29.554659159127947 ], [ -95.244755961982548, 29.554615159148788 ], [ -95.244604961760146, 29.554588159349375 ], [ -95.24449096181479, 29.554593159046881 ], [ -95.244339962037614, 29.554615158962758 ], [ -95.24390696248949, 29.554748158702154 ], [ -95.243704961590311, 29.554885159318797 ], [ -95.243554962054958, 29.555006158740504 ], [ -95.243138962288839, 29.555023158946433 ], [ -95.242881962106253, 29.555078158787275 ], [ -95.242780961389883, 29.555117159421556 ], [ -95.242692961398745, 29.555172159004115 ], [ -95.242460961555039, 29.555458159465832 ], [ -95.242258961839283, 29.5556721593289 ], [ -95.242114961419645, 29.555788159381443 ], [ -95.24205196151118, 29.555870158965096 ], [ -95.241976961357253, 29.556079159572732 ], [ -95.241957961924925, 29.556288159621236 ], [ -95.242240961291699, 29.55721715934488 ], [ -95.242241961652653, 29.55736615996447 ], [ -95.24219096211489, 29.5575091593848 ], [ -95.242159961802528, 29.557655160023998 ], [ -95.242153961540339, 29.557685160179624 ], [ -95.242128962054522, 29.557866159988233 ], [ -95.242052961893833, 29.558143159598298 ], [ -95.24198196125495, 29.558398159887876 ], [ -95.241913961728415, 29.558645160413754 ], [ -95.241870961362338, 29.55880116013083 ], [ -95.241795961415193, 29.559224160337706 ], [ -95.24161396203499, 29.559719160323208 ], [ -95.241456961159017, 29.559824160044059 ], [ -95.241368961214164, 29.559917159801653 ], [ -95.241047961010651, 29.560035160039256 ], [ -95.240814961073568, 29.560121160338849 ], [ -95.240657961450651, 29.560154160006668 ], [ -95.24062096117737, 29.560253160007417 ], [ -95.240205961554977, 29.560539160266682 ], [ -95.240174961553876, 29.560565160619035 ], [ -95.240098961728009, 29.560627160051443 ], [ -95.239743961460178, 29.560756160807642 ], [ -95.239507961176415, 29.560842160286448 ], [ -95.239022960757012, 29.561040160636473 ], [ -95.238664961222256, 29.561222160972584 ], [ -95.238469961285361, 29.56127716068805 ], [ -95.238224961183022, 29.561381160984084 ], [ -95.237991961050099, 29.5614311604924 ], [ -95.237727960620887, 29.561376160466065 ], [ -95.237595960347505, 29.561217160288731 ], [ -95.237570961083875, 29.561030160406766 ], [ -95.237312960146596, 29.560711160196988 ], [ -95.23699196033543, 29.560524160655234 ], [ -95.236877960584565, 29.560425160657317 ], [ -95.236645959876981, 29.560304160142366 ], [ -95.236531959896794, 29.560194160787201 ], [ -95.236418960584373, 29.560007160130059 ], [ -95.236317960550238, 29.559854160418102 ], [ -95.236286960039024, 29.559807160366507 ], [ -95.236239960573087, 29.55973516077108 ], [ -95.23608595991422, 29.559502160116345 ], [ -95.235927960218291, 29.559315160679837 ], [ -95.235745959768039, 29.559177159837994 ], [ -95.235569960467473, 29.559128160449461 ], [ -95.235147959837136, 29.558952160048637 ], [ -95.23495295971783, 29.558782159890718 ], [ -95.234864959581643, 29.558650159911807 ], [ -95.234769959716147, 29.558144160453882 ], [ -95.234235960062037, 29.557726160412475 ], [ -95.234096959433231, 29.557660160455889 ], [ -95.23402795992034, 29.55760015987244 ], [ -95.233926959717877, 29.557419160357846 ], [ -95.233675959326163, 29.557149160013864 ], [ -95.233392959895525, 29.557155159652055 ], [ -95.232920959399678, 29.557205160384072 ], [ -95.232436959605721, 29.557342160226774 ], [ -95.232040959242468, 29.557491160199874 ], [ -95.231197958997754, 29.557728159766569 ], [ -95.230927958436965, 29.557849160320501 ], [ -95.230688958937577, 29.558014160192684 ], [ -95.23062595893235, 29.558069159833927 ], [ -95.230537958439768, 29.558179160456934 ], [ -95.230197958324609, 29.558531160727739 ], [ -95.229531958368241, 29.559081160495641 ], [ -95.229418958682302, 29.559224160455596 ], [ -95.229349958449973, 29.559339160166328 ], [ -95.229242958439627, 29.559449160463686 ], [ -95.229066958750337, 29.559664160547779 ], [ -95.228965958424666, 29.559845161089189 ], [ -95.228814957997272, 29.559922160709341 ], [ -95.228575957807195, 29.560021160783407 ], [ -95.228255957940036, 29.560038160612862 ], [ -95.227456958051704, 29.559923160763947 ], [ -95.227060957946236, 29.559851160364484 ], [ -95.226909957787001, 29.559851160818095 ], [ -95.226821958311433, 29.559818160459848 ], [ -95.226236957181371, 29.559720160634416 ], [ -95.22588395772199, 29.559632161147753 ], [ -95.224531956890388, 29.559225160538052 ], [ -95.224254957619138, 29.559181161001135 ], [ -95.224116956815706, 29.559215160788998 ], [ -95.223858957257988, 29.559182160664825 ], [ -95.223613957333939, 29.559138160662705 ], [ -95.223267956615445, 29.558995160504626 ], [ -95.223040956445104, 29.558874160587909 ], [ -95.22253195692295, 29.558566160514744 ], [ -95.222127956503272, 29.558269160241814 ], [ -95.222046956846953, 29.558209160925436 ], [ -95.222027956023908, 29.558077160493578 ], [ -95.221939956661231, 29.557912160591048 ], [ -95.221870956523745, 29.557703160337418 ], [ -95.221480956593012, 29.557175160082661 ], [ -95.221394956452883, 29.557074160623007 ], [ -95.221348956436088, 29.557021160341399 ], [ -95.221165956549399, 29.556928160545802 ], [ -95.220958955787921, 29.556944160746152 ], [ -95.220794955811655, 29.55703216046728 ], [ -95.220730955641983, 29.557077160077629 ], [ -95.220643956470113, 29.557137160582869 ], [ -95.220386955841931, 29.557495160480165 ], [ -95.220228955816381, 29.557670160915027 ], [ -95.22000295617957, 29.557841160842404 ], [ -95.219983956419469, 29.557847160557802 ], [ -95.219914955523549, 29.557869160834016 ], [ -95.219543955937368, 29.558094160978428 ], [ -95.219405955708496, 29.558155160761899 ], [ -95.219034955877049, 29.558408160999267 ], [ -95.218881956063086, 29.558567161047876 ], [ -95.218801955217401, 29.558650160822474 ], [ -95.218688955458461, 29.558853160566041 ], [ -95.218620956033732, 29.558950160907685 ], [ -95.218455955964075, 29.559183160710681 ], [ -95.218449955204363, 29.559233161281291 ], [ -95.218242955713151, 29.559370161009234 ], [ -95.218084955147546, 29.559376160805016 ], [ -95.217889955407799, 29.559398160563596 ], [ -95.217462955208859, 29.559189160760212 ], [ -95.217135955604661, 29.558953160774038 ], [ -95.217092955765608, 29.558934161077165 ], [ -95.216889954793174, 29.55884316066405 ], [ -95.216694955180003, 29.558685160368317 ], [ -95.216468954952632, 29.558502161160881 ], [ -95.216298955493542, 29.558309161147463 ], [ -95.216034954978937, 29.557936160246033 ], [ -95.21597195448301, 29.557809160652507 ], [ -95.215958955255488, 29.557792160534653 ], [ -95.215865955225169, 29.557850161039323 ], [ -95.21583295508276, 29.557871160371242 ], [ -95.215778954802616, 29.557905160811483 ], [ -95.215739955048534, 29.557930161038048 ], [ -95.215280954789392, 29.558334160649011 ], [ -95.212344954344672, 29.56092116128902 ], [ -95.211427954129988, 29.561760161863216 ], [ -95.212884954804466, 29.562971162118174 ], [ -95.213978954935129, 29.563882162045996 ], [ -95.214297954727954, 29.564182161637522 ], [ -95.214714955191397, 29.564509162388134 ], [ -95.215985955736755, 29.565613161884468 ], [ -95.216084955726771, 29.56567516266384 ], [ -95.216178955759659, 29.565763161869548 ], [ -95.217838955618816, 29.567060162153666 ], [ -95.218161956067277, 29.5672881624361 ], [ -95.219015956001329, 29.567808162917263 ], [ -95.219794956458699, 29.568343162780973 ], [ -95.220535956169726, 29.568964162800228 ], [ -95.221175956335301, 29.569491163322013 ], [ -95.222379956909094, 29.570482162658873 ], [ -95.223622957252275, 29.571502163507319 ], [ -95.223872957582742, 29.571729162854925 ], [ -95.225681958146254, 29.573371163435837 ], [ -95.225904958119429, 29.573573163386595 ], [ -95.226268958268179, 29.573939163770625 ], [ -95.22692395837079, 29.574478163415623 ], [ -95.227645958877815, 29.574975163459232 ], [ -95.228382958441316, 29.575355163435169 ], [ -95.229255958775184, 29.575673163796459 ], [ -95.230153959351185, 29.576055164182641 ], [ -95.230950959112477, 29.576541164250354 ], [ -95.231258959843174, 29.576788163953783 ], [ -95.231303959959376, 29.576825164322042 ], [ -95.231387960089279, 29.576892163989335 ], [ -95.23162395960901, 29.577082164177934 ], [ -95.232383959908177, 29.577725163803194 ], [ -95.233747960329794, 29.576484163839908 ], [ -95.233810960418836, 29.576425163537248 ], [ -95.233946960576489, 29.576308163916831 ], [ -95.233976960071999, 29.576282163829134 ], [ -95.234023960561657, 29.576241164042738 ], [ -95.234071960368908, 29.576199164156215 ], [ -95.234161960009104, 29.576119164253178 ], [ -95.234242960605414, 29.576046163537466 ], [ -95.23432196060952, 29.575976164032173 ], [ -95.234380960171961, 29.575926164010163 ], [ -95.23443396097295, 29.575874163405537 ], [ -95.234450960376222, 29.575867163711983 ], [ -95.234495960020098, 29.575832163926009 ], [ -95.234549960562461, 29.57579316382051 ], [ -95.234609960828564, 29.575756163368681 ], [ -95.234675960075322, 29.575722163681874 ], [ -95.235001960871855, 29.575634163857476 ], [ -95.235092960247329, 29.575622163412849 ], [ -95.235187960329, 29.575613163394486 ], [ -95.2354749608416, 29.575586163269474 ], [ -95.235568960821439, 29.575576163482481 ], [ -95.23566196041773, 29.575567163695613 ], [ -95.235842960496669, 29.575541163965966 ], [ -95.236009960567088, 29.575499163397438 ], [ -95.236086960744672, 29.575471163513559 ], [ -95.236148960993376, 29.575444163272017 ], [ -95.23623496118654, 29.575407163488627 ], [ -95.236373961264292, 29.575340163889777 ], [ -95.236439961371417, 29.575308163852377 ], [ -95.236503960728982, 29.575278163927184 ], [ -95.236613961241275, 29.575227163403476 ], [ -95.236732961479532, 29.575184163350738 ], [ -95.236846961372706, 29.575159163984264 ], [ -95.236904960999425, 29.575148163860771 ], [ -95.23696996104087, 29.575136163643453 ], [ -95.237037960741759, 29.575123163600647 ], [ -95.237241961009772, 29.575053163173916 ], [ -95.237369961092355, 29.57498216358745 ], [ -95.237430960760662, 29.574940163560516 ], [ -95.237605961069463, 29.574794163762057 ], [ -95.237662961698376, 29.574743163649149 ], [ -95.23783696172643, 29.57458316369998 ], [ -95.237894961353803, 29.574528163563919 ], [ -95.237914961082694, 29.57450916374831 ], [ -95.237904961556453, 29.574501163129693 ], [ -95.237840961762458, 29.574448162978726 ], [ -95.237771961167653, 29.574388163093637 ], [ -95.237730961634256, 29.574354163519072 ], [ -95.237641961196076, 29.574281162982601 ], [ -95.237493961136892, 29.57415916374077 ], [ -95.2374429613036, 29.574117163396487 ], [ -95.237390961474375, 29.574074163548396 ], [ -95.237338961338111, 29.574030163432564 ], [ -95.237285961594083, 29.573986163156569 ], [ -95.237230961177005, 29.573941163205127 ], [ -95.236997960898492, 29.573751163365714 ], [ -95.236940961392875, 29.573703163198722 ], [ -95.236882960574562, 29.573656163053599 ], [ -95.236825961175839, 29.573608162836578 ], [ -95.236594961326176, 29.573417163221471 ], [ -95.236535960463655, 29.573368163185613 ], [ -95.236476961031656, 29.573320163399472 ], [ -95.236418961333783, 29.573272162830943 ], [ -95.236192960570435, 29.573088163077593 ], [ -95.236140960758689, 29.573045162704734 ], [ -95.236106960874238, 29.573017163309665 ], [ -95.236090960615059, 29.5730031628554 ], [ -95.23604496050126, 29.572965162767773 ], [ -95.235867960306095, 29.572832163381634 ], [ -95.235782960372433, 29.57276616292674 ], [ -95.23572496025642, 29.572721162735611 ], [ -95.235393960370487, 29.572441163253451 ], [ -95.236056960961974, 29.571825163324455 ], [ -95.23761296106187, 29.570414162731581 ], [ -95.239825961326446, 29.568408161851565 ], [ -95.240893962248634, 29.567438161742785 ], [ -95.240910961779647, 29.56742316207713 ], [ -95.242298962431477, 29.566163161292337 ], [ -95.243237962694423, 29.565326160997625 ], [ -95.244945962925073, 29.563806161111479 ], [ -95.246228963375714, 29.562626160967746 ], [ -95.247544962834169, 29.56141715999501 ], [ -95.249937964003919, 29.559245160003112 ], [ -95.25038896378507, 29.558838159678913 ], [ -95.251534964293811, 29.557774159536002 ], [ -95.251602964369411, 29.557694159120903 ], [ -95.251645964244275, 29.557603159417212 ], [ -95.251877964407925, 29.556435159465575 ], [ -95.252211963801614, 29.556010159050281 ], [ -95.252224963895699, 29.555995158757217 ], [ -95.252849963865643, 29.555275158529874 ], [ -95.253375964735255, 29.554647158651878 ], [ -95.253885964243821, 29.554042159018927 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 810, "Tract": "48201555002", "Area_SqMi": 1.3903857035403366, "total_2009": 817, "total_2010": 327, "total_2011": 340, "total_2012": 324, "total_2013": 375, "total_2014": 392, "total_2015": 548, "total_2016": 602, "total_2017": 651, "total_2018": 623, "total_2019": 578, "total_2020": 524, "age1": 170, "age2": 397, "age3": 172, "earn1": 84, "earn2": 188, "earn3": 467, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 370, "naics_s05": 7, "naics_s06": 50, "naics_s07": 57, "naics_s08": 20, "naics_s09": 0, "naics_s10": 14, "naics_s11": 22, "naics_s12": 48, "naics_s13": 0, "naics_s14": 31, "naics_s15": 2, "naics_s16": 82, "naics_s17": 0, "naics_s18": 35, "naics_s19": 1, "naics_s20": 0, "race1": 604, "race2": 58, "race3": 6, "race4": 54, "race5": 1, "race6": 16, "ethnicity1": 482, "ethnicity2": 257, "edu1": 130, "edu2": 140, "edu3": 172, "edu4": 127, "Shape_Length": 25460.001463012894, "Shape_Area": 38761573.745790213, "total_2021": 481, "total_2022": 739 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.496842050064544, 30.07372225652383 ], [ -95.496841049502365, 30.073335256727457 ], [ -95.49684004985491, 30.072727256387463 ], [ -95.496839049810234, 30.072005256446083 ], [ -95.496837049988613, 30.071225256212994 ], [ -95.496838049993443, 30.069100255852181 ], [ -95.496838049302198, 30.067662255490387 ], [ -95.496830049576346, 30.065886255325079 ], [ -95.496835049661286, 30.065620255419908 ], [ -95.496826049190631, 30.065268255184392 ], [ -95.496835049791784, 30.065070255351998 ], [ -95.496819049182903, 30.064977255106285 ], [ -95.496159049264293, 30.062887254267604 ], [ -95.496132049824652, 30.062800254263358 ], [ -95.49609504963901, 30.062720254537034 ], [ -95.496066049143593, 30.062573254235453 ], [ -95.496052049672471, 30.062409254695659 ], [ -95.496052048965282, 30.062009254568281 ], [ -95.496052049444046, 30.059295254205082 ], [ -95.496046049061789, 30.05905325353028 ], [ -95.496032049050186, 30.058491253157847 ], [ -95.495609048766781, 30.057420253746596 ], [ -95.495253048547667, 30.05656025297278 ], [ -95.495086048567501, 30.056197252717201 ], [ -95.495052048764592, 30.05606725268186 ], [ -95.494995048424059, 30.055945253204019 ], [ -95.494550048355421, 30.054860253321575 ], [ -95.493997048395997, 30.053500252536963 ], [ -95.493632047765104, 30.052602252470241 ], [ -95.493240048599517, 30.051602252175588 ], [ -95.493074047555808, 30.051204251788576 ], [ -95.49300504784118, 30.051013251974346 ], [ -95.492780048407624, 30.0504642524498 ], [ -95.492122047427159, 30.050840251762686 ], [ -95.491229047649284, 30.051323252227434 ], [ -95.489963046877051, 30.05202725219258 ], [ -95.487830046629668, 30.053220253053247 ], [ -95.486084046466871, 30.054199253066585 ], [ -95.48500204586189, 30.054806253442877 ], [ -95.484578046351174, 30.055041253743688 ], [ -95.483935045751039, 30.055417253371484 ], [ -95.483586045423536, 30.055607253752328 ], [ -95.483185045243815, 30.055836253849151 ], [ -95.482451045370667, 30.056324254000032 ], [ -95.480457044889434, 30.057436254360621 ], [ -95.480060044505308, 30.057634253536239 ], [ -95.478878045073813, 30.058298254580617 ], [ -95.478076044769495, 30.058749253952371 ], [ -95.477359044676817, 30.05920025438239 ], [ -95.477367044852599, 30.059290254547545 ], [ -95.477396044338718, 30.059610254792059 ], [ -95.477399044184367, 30.060033254320548 ], [ -95.477390044788265, 30.06026725435159 ], [ -95.477337044775567, 30.06050925484395 ], [ -95.477262044198767, 30.060742254251856 ], [ -95.477060044046624, 30.061165255232886 ], [ -95.476746044170113, 30.061706254862596 ], [ -95.4765420444418, 30.062191254875408 ], [ -95.476398044552027, 30.062496254751224 ], [ -95.476269044151039, 30.06288825478461 ], [ -95.476172044367345, 30.063217255224465 ], [ -95.476129043830639, 30.063448255203038 ], [ -95.4761100438661, 30.063839255175985 ], [ -95.476104044135198, 30.064212255171896 ], [ -95.476101044490278, 30.06461725521212 ], [ -95.476163044670869, 30.064999255547349 ], [ -95.476287044856903, 30.0658052561406 ], [ -95.476384044040415, 30.066268256111062 ], [ -95.47641104402112, 30.066450255679158 ], [ -95.476440044447685, 30.066635256300007 ], [ -95.476483044726891, 30.067058256442557 ], [ -95.476533044926569, 30.067459256198003 ], [ -95.47651304454854, 30.068663256520384 ], [ -95.476506044722782, 30.069803256129685 ], [ -95.476500044404318, 30.070607256925658 ], [ -95.481047045933963, 30.070582256842894 ], [ -95.481419045833235, 30.070586256413534 ], [ -95.481929045674036, 30.070610256154332 ], [ -95.482437046724911, 30.07065625631181 ], [ -95.48260004591819, 30.070678256703289 ], [ -95.482942045880051, 30.070724256826864 ], [ -95.484708046613491, 30.07100425679873 ], [ -95.485214047123094, 30.071104256633575 ], [ -95.485714046943301, 30.071226256085808 ], [ -95.486003046930108, 30.071309256141813 ], [ -95.486062047135775, 30.071327256434763 ], [ -95.486929047562029, 30.071598256495431 ], [ -95.488197047683244, 30.071994256202721 ], [ -95.48985104802901, 30.072512256515012 ], [ -95.491623049026515, 30.073066256823108 ], [ -95.492711049041901, 30.07340625658432 ], [ -95.4930920489427, 30.073501257085557 ], [ -95.494297048966217, 30.07376625659381 ], [ -95.494841049912509, 30.073873256651382 ], [ -95.495098049264101, 30.073912257050488 ], [ -95.495362050003749, 30.073952257192804 ], [ -95.49588604939683, 30.074009256753985 ], [ -95.49641304976808, 30.074044257158796 ], [ -95.496831050257271, 30.074055256634189 ], [ -95.496842050064544, 30.07372225652383 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 811, "Tract": "48201554906", "Area_SqMi": 0.75946066123759493, "total_2009": 1185, "total_2010": 1191, "total_2011": 173, "total_2012": 181, "total_2013": 217, "total_2014": 137, "total_2015": 114, "total_2016": 167, "total_2017": 182, "total_2018": 165, "total_2019": 178, "total_2020": 159, "age1": 60, "age2": 120, "age3": 56, "earn1": 73, "earn2": 89, "earn3": 74, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 15, "naics_s06": 10, "naics_s07": 7, "naics_s08": 1, "naics_s09": 0, "naics_s10": 5, "naics_s11": 0, "naics_s12": 61, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 118, "naics_s19": 11, "naics_s20": 0, "race1": 195, "race2": 8, "race3": 2, "race4": 23, "race5": 0, "race6": 8, "ethnicity1": 164, "ethnicity2": 72, "edu1": 44, "edu2": 39, "edu3": 56, "edu4": 37, "Shape_Length": 20988.231106996507, "Shape_Area": 21172463.405391745, "total_2021": 227, "total_2022": 236 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.509545052463707, 30.052262251867287 ], [ -95.509844052323487, 30.051979252169396 ], [ -95.508335051538808, 30.050977251580751 ], [ -95.507542051344885, 30.050450251539186 ], [ -95.507410052133253, 30.050362251484284 ], [ -95.507358051509584, 30.050309251719529 ], [ -95.507322051371773, 30.050270251126268 ], [ -95.507285051524335, 30.050227251519587 ], [ -95.507243051136399, 30.050184251908643 ], [ -95.507203051546597, 30.05013625181245 ], [ -95.507163051482479, 30.050083251567649 ], [ -95.507124051684301, 30.050029251107425 ], [ -95.507083051479185, 30.049977251039341 ], [ -95.507040051079997, 30.049925251318051 ], [ -95.506998051878753, 30.049873251429087 ], [ -95.506955051566933, 30.049821251678587 ], [ -95.506912051437453, 30.049768250989725 ], [ -95.506824051885715, 30.049654251552653 ], [ -95.506780051255888, 30.049596251761852 ], [ -95.506738051013713, 30.049537251577604 ], [ -95.506626050903051, 30.049342251589916 ], [ -95.506595051274175, 30.049271250892229 ], [ -95.506545051646327, 30.049116251493135 ], [ -95.506528051551541, 30.049035251607602 ], [ -95.50651605129228, 30.048951251644603 ], [ -95.5065040510529, 30.048867251677947 ], [ -95.50649305105155, 30.048782251509287 ], [ -95.506470050887174, 30.048613251359452 ], [ -95.506447051052305, 30.048451251378765 ], [ -95.506437051386627, 30.048374251222928 ], [ -95.506424050786549, 30.048219251400965 ], [ -95.506427051368817, 30.04814225073153 ], [ -95.506439050790064, 30.048064251108052 ], [ -95.506460051753592, 30.047989250895487 ], [ -95.506488051238847, 30.047914251195198 ], [ -95.506523051000769, 30.047842251222676 ], [ -95.506564051152409, 30.047771251104166 ], [ -95.506611051572008, 30.047702250856737 ], [ -95.506660050831698, 30.047635251156738 ], [ -95.50671005115818, 30.047568251286499 ], [ -95.506759051246775, 30.047502250694986 ], [ -95.506808051024052, 30.047438251031288 ], [ -95.506821050986147, 30.047420250926201 ], [ -95.50685605171428, 30.047374250652165 ], [ -95.506898050968772, 30.047308251256428 ], [ -95.506932051708844, 30.047241250606699 ], [ -95.506958051890194, 30.047172251337425 ], [ -95.506976051407122, 30.047103250793647 ], [ -95.506987051233324, 30.047035250652087 ], [ -95.506990051294409, 30.04696825109442 ], [ -95.506990051437342, 30.04689825110383 ], [ -95.506984051116845, 30.046828250386262 ], [ -95.506979051576351, 30.046751251129439 ], [ -95.506972051292792, 30.046680250564258 ], [ -95.506966051073391, 30.046609250718994 ], [ -95.506957051355016, 30.046541250604594 ], [ -95.5069470512436, 30.046476250736671 ], [ -95.506932050834308, 30.046342250879587 ], [ -95.506922050865654, 30.046276250981801 ], [ -95.506910051599789, 30.04621225061172 ], [ -95.506897050909103, 30.046151250460809 ], [ -95.506855050962145, 30.046034250504135 ], [ -95.506831051501592, 30.045993251078709 ], [ -95.506788050940173, 30.045921250626474 ], [ -95.506750051729114, 30.045869250717956 ], [ -95.506711051442778, 30.045817250948417 ], [ -95.506674051240836, 30.045766250835197 ], [ -95.50663705107597, 30.045715250710838 ], [ -95.506599050872111, 30.045664250752189 ], [ -95.506562051114273, 30.045610250534921 ], [ -95.506526050847896, 30.045552250911168 ], [ -95.506457051442609, 30.04542925093925 ], [ -95.506425051453576, 30.045363250366279 ], [ -95.506398051132351, 30.045303250852101 ], [ -95.506345051457942, 30.045167250322571 ], [ -95.506326050733577, 30.045107250264486 ], [ -95.506308050911642, 30.04504925010189 ], [ -95.506292051104808, 30.04499225051191 ], [ -95.506279051522782, 30.044935250395451 ], [ -95.506265050623028, 30.044880250471394 ], [ -95.506253051491868, 30.044829250344911 ], [ -95.506242051289732, 30.044779250039049 ], [ -95.506228050897619, 30.04472925025361 ], [ -95.506214050861857, 30.044676250394527 ], [ -95.506198050739869, 30.044623249979001 ], [ -95.506168050649208, 30.044526249934879 ], [ -95.506147051479758, 30.044444250534688 ], [ -95.506134051474035, 30.044392250512097 ], [ -95.506136051300558, 30.04434925080724 ], [ -95.506119051008923, 30.044307249937422 ], [ -95.506109051420708, 30.044262250486067 ], [ -95.506113051033509, 30.044222250504802 ], [ -95.50613705082695, 30.044172250369673 ], [ -95.506133050657652, 30.04412625072808 ], [ -95.506125050887093, 30.044075249855489 ], [ -95.506113051369482, 30.043956250557706 ], [ -95.506096051352785, 30.043912250532596 ], [ -95.506088050694075, 30.043869249846317 ], [ -95.506072050772218, 30.04387024995993 ], [ -95.505867050459557, 30.043887249917276 ], [ -95.50561305093126, 30.043927250476195 ], [ -95.505278050560776, 30.04399625056541 ], [ -95.505205050941896, 30.044020249977201 ], [ -95.505125050580162, 30.044038250339533 ], [ -95.504643051078887, 30.044241250006408 ], [ -95.504546050236343, 30.044277250586894 ], [ -95.504490050923295, 30.044303250514798 ], [ -95.504345050948572, 30.044358250274801 ], [ -95.503901050281257, 30.044540250506888 ], [ -95.50367304994667, 30.044639250341497 ], [ -95.503444050813997, 30.044733250749189 ], [ -95.50327505009848, 30.044796250590771 ], [ -95.503198050082631, 30.044835250852298 ], [ -95.502944050105427, 30.044932250705759 ], [ -95.502767049853034, 30.045005250516773 ], [ -95.502679050253207, 30.045048250454329 ], [ -95.50238605009902, 30.045177250560211 ], [ -95.502297049812199, 30.045222250437607 ], [ -95.502032049546145, 30.045344250896861 ], [ -95.501874050017079, 30.045425250653828 ], [ -95.501710050422872, 30.045502250971822 ], [ -95.501610050145572, 30.045558250469096 ], [ -95.500980049840834, 30.045895251008272 ], [ -95.500788050153702, 30.046001251250583 ], [ -95.500698049559361, 30.046051251261321 ], [ -95.500557049780298, 30.046122250535667 ], [ -95.499402049011096, 30.046771251413915 ], [ -95.499150048861225, 30.046913251559403 ], [ -95.498695049684841, 30.047158251644344 ], [ -95.498342049636335, 30.047362251522166 ], [ -95.497716049087529, 30.047709251353911 ], [ -95.497190049273058, 30.047991250984275 ], [ -95.495730048375236, 30.048803251388776 ], [ -95.494522048323191, 30.049476251512864 ], [ -95.493378048137885, 30.050130251532607 ], [ -95.493249048103621, 30.050205252368638 ], [ -95.492780048407624, 30.0504642524498 ], [ -95.49300504784118, 30.051013251974346 ], [ -95.493074047555808, 30.051204251788576 ], [ -95.493240048599517, 30.051602252175588 ], [ -95.493632047765104, 30.052602252470241 ], [ -95.493997048395997, 30.053500252536963 ], [ -95.494550048355421, 30.054860253321575 ], [ -95.494995048424059, 30.055945253204019 ], [ -95.495052048764592, 30.05606725268186 ], [ -95.495086048567501, 30.056197252717201 ], [ -95.495253048547667, 30.05656025297278 ], [ -95.495609048766781, 30.057420253746596 ], [ -95.496032049050186, 30.058491253157847 ], [ -95.496113049098966, 30.058698253363403 ], [ -95.496204048846423, 30.058893253955929 ], [ -95.496303048789059, 30.059077253360151 ], [ -95.496404049303109, 30.059242253823452 ], [ -95.496612049090544, 30.059529253669687 ], [ -95.49674404898019, 30.059693254039676 ], [ -95.496900048981274, 30.059853254229996 ], [ -95.49742604964537, 30.060319253874244 ], [ -95.497444049303326, 30.060335253981897 ], [ -95.497559049237424, 30.060419253538981 ], [ -95.497779049183691, 30.060615254152033 ], [ -95.498753050155912, 30.061402253704408 ], [ -95.498989050537205, 30.0616112540682 ], [ -95.500454050433248, 30.062774254177661 ], [ -95.500746051031072, 30.063009253950373 ], [ -95.50092805051996, 30.06315925413589 ], [ -95.501041050717888, 30.063243254367379 ], [ -95.501147050310195, 30.063334254725628 ], [ -95.501263051146637, 30.063421254406549 ], [ -95.501293050494297, 30.06344525419086 ], [ -95.50147005023625, 30.063589254177629 ], [ -95.501575051133727, 30.063499254172736 ], [ -95.501623051116752, 30.063456254377478 ], [ -95.502394050740364, 30.062792254514758 ], [ -95.502634051402666, 30.062630254170369 ], [ -95.502814051418284, 30.062554254579819 ], [ -95.503056051269894, 30.062464253775335 ], [ -95.503377050869304, 30.062401254090776 ], [ -95.503550051533949, 30.062398254381531 ], [ -95.503881050994906, 30.062410254357705 ], [ -95.503990050931165, 30.062439254305907 ], [ -95.504045051390392, 30.062447254493566 ], [ -95.504142051633821, 30.062461254177727 ], [ -95.50429405114815, 30.062508254360445 ], [ -95.504403051796231, 30.062549254232348 ], [ -95.504578051556678, 30.062622254396697 ], [ -95.504730051447453, 30.06236225410613 ], [ -95.504770051140895, 30.062235253737295 ], [ -95.504789051871896, 30.062142254034004 ], [ -95.504813052016402, 30.061973253696191 ], [ -95.504816051902765, 30.061515253601009 ], [ -95.504648051779014, 30.060835254155677 ], [ -95.50469105158939, 30.060547253443968 ], [ -95.504804051411256, 30.060187253772298 ], [ -95.504887051707314, 30.060054254019906 ], [ -95.505013051353998, 30.059914253936807 ], [ -95.505168051711038, 30.05978125343956 ], [ -95.505352051119729, 30.059642253914696 ], [ -95.505964052075399, 30.059084253809743 ], [ -95.505982052155957, 30.059061253731475 ], [ -95.506012051333656, 30.059022252954843 ], [ -95.506257051843718, 30.058711253029955 ], [ -95.506361052012934, 30.058551253432107 ], [ -95.506549051567944, 30.058279253229202 ], [ -95.506799052069894, 30.057916252991959 ], [ -95.507021051844831, 30.057611253297779 ], [ -95.503603051429522, 30.056148252786929 ], [ -95.503717050760883, 30.056071252643402 ], [ -95.503838051068399, 30.056002252392357 ], [ -95.503961050989489, 30.055937252696324 ], [ -95.504083050712111, 30.055871253024719 ], [ -95.504203050992402, 30.055805252684085 ], [ -95.504323050953175, 30.055740253156134 ], [ -95.504443050660029, 30.055676252637458 ], [ -95.504563051482393, 30.05561025289937 ], [ -95.504683051241699, 30.055543253005901 ], [ -95.504768050872357, 30.05549525300032 ], [ -95.504804051015512, 30.055476252840126 ], [ -95.504925051539701, 30.05541025261056 ], [ -95.505048051056193, 30.055345252834432 ], [ -95.505169051017276, 30.055281252421725 ], [ -95.505287051475989, 30.055216252406975 ], [ -95.505296051610415, 30.055210252533229 ], [ -95.505405051783868, 30.055151252287143 ], [ -95.505522051651283, 30.055087252250853 ], [ -95.505638051083452, 30.055024252300871 ], [ -95.505752050954797, 30.05496225263742 ], [ -95.505863051018707, 30.054902252555184 ], [ -95.505971051489226, 30.054842252923471 ], [ -95.50607605125056, 30.054783252840899 ], [ -95.506178051232979, 30.054726252361537 ], [ -95.506279051745892, 30.054671252045114 ], [ -95.506296051408924, 30.054661252376437 ], [ -95.506378051902985, 30.054615252883782 ], [ -95.506476051291287, 30.05456425212143 ], [ -95.50657305175595, 30.054510252331568 ], [ -95.50666705155119, 30.054457252121232 ], [ -95.506761052145237, 30.05440525279295 ], [ -95.506778051638747, 30.054396252180766 ], [ -95.506860052090715, 30.054356252537687 ], [ -95.506977051499916, 30.054308252522212 ], [ -95.50709105190073, 30.05424525264225 ], [ -95.507185052217821, 30.054192252091404 ], [ -95.507272051869492, 30.054144251973554 ], [ -95.507359051408159, 30.054096252700262 ], [ -95.507443052319886, 30.054050252210274 ], [ -95.507531052058042, 30.054000252600236 ], [ -95.507611052112836, 30.053955251857321 ], [ -95.507697052308941, 30.053906252552917 ], [ -95.50782505188424, 30.053832251850309 ], [ -95.507908051924304, 30.053778251962768 ], [ -95.507989051952649, 30.053720252315646 ], [ -95.50805805202603, 30.053653252009084 ], [ -95.508120051520791, 30.053591252210438 ], [ -95.508180052262745, 30.05353425201357 ], [ -95.508243052234448, 30.053478252116857 ], [ -95.508301052348742, 30.053423252282855 ], [ -95.508314051774875, 30.053405252046318 ], [ -95.509545052463707, 30.052262251867287 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 812, "Tract": "48201553804", "Area_SqMi": 1.0618455381084981, "total_2009": 756, "total_2010": 609, "total_2011": 799, "total_2012": 887, "total_2013": 826, "total_2014": 775, "total_2015": 843, "total_2016": 797, "total_2017": 696, "total_2018": 724, "total_2019": 737, "total_2020": 744, "age1": 336, "age2": 778, "age3": 253, "earn1": 199, "earn2": 271, "earn3": 897, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 115, "naics_s05": 12, "naics_s06": 74, "naics_s07": 72, "naics_s08": 9, "naics_s09": 81, "naics_s10": 125, "naics_s11": 20, "naics_s12": 44, "naics_s13": 9, "naics_s14": 160, "naics_s15": 118, "naics_s16": 96, "naics_s17": 0, "naics_s18": 84, "naics_s19": 47, "naics_s20": 295, "race1": 1080, "race2": 162, "race3": 12, "race4": 74, "race5": 2, "race6": 37, "ethnicity1": 1008, "ethnicity2": 359, "edu1": 149, "edu2": 270, "edu3": 368, "edu4": 244, "Shape_Length": 24852.546231237895, "Shape_Area": 29602436.235663425, "total_2021": 747, "total_2022": 1367 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.538411059779264, 30.045929249652559 ], [ -95.538152059297943, 30.044463249684398 ], [ -95.538120059669069, 30.044364249327948 ], [ -95.538131058974699, 30.044249248927819 ], [ -95.538100058957468, 30.044132249599791 ], [ -95.53801505935094, 30.04355524936387 ], [ -95.537964058848942, 30.043208249271999 ], [ -95.537833058885141, 30.042424249117964 ], [ -95.537638058662537, 30.041312248334844 ], [ -95.537606059461794, 30.041128248718213 ], [ -95.537581059346124, 30.040986248848686 ], [ -95.53756605940859, 30.040897248666585 ], [ -95.53748305858538, 30.040450248158084 ], [ -95.537448058769428, 30.040303248587112 ], [ -95.53739105883426, 30.040102248709527 ], [ -95.537369058718809, 30.040000248334945 ], [ -95.537268058574526, 30.039727248504541 ], [ -95.537219058764563, 30.039653247884797 ], [ -95.537188059127061, 30.039574247981164 ], [ -95.537165059244614, 30.03948824828846 ], [ -95.537131059015849, 30.039400248473349 ], [ -95.537100058377646, 30.039304248158107 ], [ -95.537007058698123, 30.039059248099711 ], [ -95.536848058729561, 30.038626247955801 ], [ -95.536796058388589, 30.038506248249725 ], [ -95.536703058577586, 30.038258247804315 ], [ -95.536630058346333, 30.038141248369254 ], [ -95.536602058409727, 30.03802224800188 ], [ -95.536568058301498, 30.037907248297209 ], [ -95.5363780584632, 30.037412247533553 ], [ -95.536162058192147, 30.036844247840566 ], [ -95.536061058750434, 30.036603247349209 ], [ -95.536017058772103, 30.036510247351881 ], [ -95.535891058715976, 30.036217247268645 ], [ -95.535740058091079, 30.035830247502695 ], [ -95.53539105781546, 30.034899247556499 ], [ -95.535315058345049, 30.034715247716452 ], [ -95.535198057879441, 30.03445824760707 ], [ -95.535158058520054, 30.034378247778484 ], [ -95.535053057706435, 30.034191247156645 ], [ -95.534887057628609, 30.033926247446765 ], [ -95.534448057928159, 30.033276247539984 ], [ -95.534222057392583, 30.032909247489791 ], [ -95.534193057733589, 30.03285524732631 ], [ -95.534175057691726, 30.032822247071074 ], [ -95.534115057538955, 30.032746247314591 ], [ -95.534014057390763, 30.032562246953205 ], [ -95.533816057936548, 30.032260246952081 ], [ -95.533116057158225, 30.031210246411124 ], [ -95.532976057473917, 30.031000246326236 ], [ -95.532672057166664, 30.030541246257343 ], [ -95.532388057178693, 30.030114246964683 ], [ -95.532351057033623, 30.030061246541958 ], [ -95.532193056636032, 30.029805246359327 ], [ -95.532111057045327, 30.029703246603617 ], [ -95.532078057310656, 30.029661246729784 ], [ -95.532026057019664, 30.02956524604318 ], [ -95.531910056451864, 30.029378246369916 ], [ -95.531532056438834, 30.02876524617005 ], [ -95.531166056778176, 30.028209246395281 ], [ -95.531139056506262, 30.028169245946646 ], [ -95.530972056555584, 30.027935246000489 ], [ -95.530684056103695, 30.027576246463966 ], [ -95.53054905678502, 30.027410246349675 ], [ -95.530235056239562, 30.027060246077937 ], [ -95.530056055971031, 30.026865245535891 ], [ -95.529869056771602, 30.026674245832819 ], [ -95.529415055748814, 30.026181245571106 ], [ -95.52932805655459, 30.026073246300776 ], [ -95.529153055640521, 30.025874245604918 ], [ -95.5289760556593, 30.025694245883326 ], [ -95.528910056353496, 30.025621245544478 ], [ -95.528727055867975, 30.025421246017693 ], [ -95.528577056180609, 30.025225246051065 ], [ -95.528491056045553, 30.025152245880367 ], [ -95.528413055656188, 30.025076245579047 ], [ -95.528344056296518, 30.024991245591927 ], [ -95.527986055878486, 30.024608245956426 ], [ -95.527925055506543, 30.024528245885826 ], [ -95.527860055475131, 30.024455245513241 ], [ -95.527791055846521, 30.024390245766188 ], [ -95.527621055836534, 30.024180245366349 ], [ -95.527560055288632, 30.024125245819253 ], [ -95.527339055771407, 30.023907245335597 ], [ -95.52715805526968, 30.023745245642189 ], [ -95.526851054961185, 30.023492245087258 ], [ -95.526321055420084, 30.023066245217969 ], [ -95.525338054984431, 30.02227424529454 ], [ -95.525158055402429, 30.022130245616186 ], [ -95.525007055134381, 30.022008245466392 ], [ -95.524722054716477, 30.021777245199079 ], [ -95.524409054778175, 30.021524244943159 ], [ -95.524069054500373, 30.021249245065025 ], [ -95.523776054776604, 30.021023245210589 ], [ -95.523626054727444, 30.021102244783854 ], [ -95.523450054615665, 30.021196245184505 ], [ -95.52332305433697, 30.021259245194646 ], [ -95.523078054655542, 30.021381244812606 ], [ -95.522834054391112, 30.021507244711472 ], [ -95.522482054254112, 30.021700245221936 ], [ -95.522167053949332, 30.021872245236878 ], [ -95.521996054426964, 30.021966245056365 ], [ -95.52171505440694, 30.022120245444988 ], [ -95.521423053596124, 30.02228324502325 ], [ -95.520787053916195, 30.022632245844488 ], [ -95.520214053729106, 30.022950245335611 ], [ -95.520136053476691, 30.022993245478034 ], [ -95.519920053481798, 30.023113245896866 ], [ -95.519751053493636, 30.023205245916962 ], [ -95.519649053680567, 30.023261245479521 ], [ -95.519301052994919, 30.023454245779934 ], [ -95.518914052875985, 30.023665245279336 ], [ -95.51875605347621, 30.023752245535441 ], [ -95.517568053278168, 30.024407245551249 ], [ -95.516925053321017, 30.024764245886875 ], [ -95.516870053330834, 30.024800246328841 ], [ -95.516752052417857, 30.024859246001235 ], [ -95.517024052999744, 30.025237245727503 ], [ -95.517169053342769, 30.025430245907586 ], [ -95.516694052632573, 30.025724245858463 ], [ -95.516740053367457, 30.025786246270215 ], [ -95.518498053324649, 30.028269246745495 ], [ -95.518857053600016, 30.028761246687093 ], [ -95.520162053795872, 30.030551247278591 ], [ -95.521862054796514, 30.032868247336548 ], [ -95.522105054565998, 30.03320024717608 ], [ -95.523865055260117, 30.035556247785824 ], [ -95.525273055724739, 30.037482248303995 ], [ -95.526502056311827, 30.039117248537444 ], [ -95.526446056345151, 30.03914224837623 ], [ -95.527243055915505, 30.040142248625489 ], [ -95.527274055772736, 30.040148248423534 ], [ -95.527325056768518, 30.040186248667226 ], [ -95.52736905663734, 30.040344248524917 ], [ -95.528474056790344, 30.041830248861864 ], [ -95.528617056439913, 30.041723249153943 ], [ -95.528663056901834, 30.041784249231899 ], [ -95.531218057113307, 30.045156249921455 ], [ -95.532646057837283, 30.047006249980772 ], [ -95.532961058312083, 30.047417250067031 ], [ -95.533057058503587, 30.047353249795513 ], [ -95.533313057721557, 30.047221250043584 ], [ -95.533663058376789, 30.047056249595144 ], [ -95.533786057933014, 30.047013249748847 ], [ -95.533945058207578, 30.04694525001198 ], [ -95.534001058620035, 30.046921249795492 ], [ -95.534094058584699, 30.046890249662606 ], [ -95.534171058455058, 30.046847249971695 ], [ -95.534254058356524, 30.04682125005456 ], [ -95.53432505819768, 30.046794250178827 ], [ -95.534408058831033, 30.046773250281017 ], [ -95.534451058040133, 30.046755249564264 ], [ -95.534634058158971, 30.046687249678953 ], [ -95.535066058260597, 30.046539249342693 ], [ -95.535134058147193, 30.046516249393385 ], [ -95.535249058414522, 30.046470249520137 ], [ -95.53537605856026, 30.046431249474146 ], [ -95.535975058832577, 30.046221249764766 ], [ -95.536283058406042, 30.046115249557651 ], [ -95.536495059103459, 30.046053249252658 ], [ -95.53667805846753, 30.046018249933539 ], [ -95.536923058586453, 30.045977249581576 ], [ -95.537280059104603, 30.0459502495324 ], [ -95.538080059503187, 30.045936249724011 ], [ -95.538137059444352, 30.04593824966701 ], [ -95.538411059779264, 30.045929249652559 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 813, "Tract": "48201553803", "Area_SqMi": 1.0401019010521488, "total_2009": 368, "total_2010": 295, "total_2011": 366, "total_2012": 389, "total_2013": 437, "total_2014": 358, "total_2015": 434, "total_2016": 466, "total_2017": 436, "total_2018": 407, "total_2019": 485, "total_2020": 513, "age1": 110, "age2": 185, "age3": 75, "earn1": 75, "earn2": 132, "earn3": 163, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 84, "naics_s05": 18, "naics_s06": 4, "naics_s07": 71, "naics_s08": 4, "naics_s09": 8, "naics_s10": 6, "naics_s11": 8, "naics_s12": 6, "naics_s13": 0, "naics_s14": 13, "naics_s15": 5, "naics_s16": 79, "naics_s17": 14, "naics_s18": 16, "naics_s19": 34, "naics_s20": 0, "race1": 304, "race2": 29, "race3": 1, "race4": 19, "race5": 2, "race6": 15, "ethnicity1": 276, "ethnicity2": 94, "edu1": 37, "edu2": 73, "edu3": 75, "edu4": 75, "Shape_Length": 25936.637686169277, "Shape_Area": 28996260.849139158, "total_2021": 392, "total_2022": 370 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.53273205795162, 30.04755424997175 ], [ -95.532961058312083, 30.047417250067031 ], [ -95.532646057837283, 30.047006249980772 ], [ -95.531218057113307, 30.045156249921455 ], [ -95.528663056901834, 30.041784249231899 ], [ -95.528617056439913, 30.041723249153943 ], [ -95.528474056790344, 30.041830248861864 ], [ -95.52736905663734, 30.040344248524917 ], [ -95.527325056768518, 30.040186248667226 ], [ -95.527274055772736, 30.040148248423534 ], [ -95.527243055915505, 30.040142248625489 ], [ -95.526446056345151, 30.03914224837623 ], [ -95.526502056311827, 30.039117248537444 ], [ -95.525273055724739, 30.037482248303995 ], [ -95.523865055260117, 30.035556247785824 ], [ -95.522105054565998, 30.03320024717608 ], [ -95.521862054796514, 30.032868247336548 ], [ -95.520162053795872, 30.030551247278591 ], [ -95.518857053600016, 30.028761246687093 ], [ -95.518498053324649, 30.028269246745495 ], [ -95.516740053367457, 30.025786246270215 ], [ -95.516694052632573, 30.025724245858463 ], [ -95.517169053342769, 30.025430245907586 ], [ -95.517024052999744, 30.025237245727503 ], [ -95.516752052417857, 30.024859246001235 ], [ -95.516513052414922, 30.024994246363249 ], [ -95.516467053079225, 30.025026246115008 ], [ -95.515969052204866, 30.025312246268129 ], [ -95.515873052659245, 30.025359245808371 ], [ -95.515675052661479, 30.025469246612854 ], [ -95.515573052255604, 30.025531246033349 ], [ -95.515359052428835, 30.025650246003256 ], [ -95.515141052711542, 30.025764246435504 ], [ -95.514365051822608, 30.02618224653013 ], [ -95.514256052744614, 30.026245246661595 ], [ -95.514141052495873, 30.026300245999973 ], [ -95.514034051821213, 30.026364246388074 ], [ -95.513612052272407, 30.026594246821166 ], [ -95.513513051766864, 30.026641246269524 ], [ -95.513406052597929, 30.026700246953617 ], [ -95.513042052066936, 30.026901247002215 ], [ -95.512679051982815, 30.027103246813994 ], [ -95.511911051703066, 30.027530246951699 ], [ -95.511865051960768, 30.027559246866186 ], [ -95.511767051678689, 30.02760524662321 ], [ -95.51097505105308, 30.028051247228369 ], [ -95.510515051256817, 30.028314247053633 ], [ -95.509654051038524, 30.02878924688558 ], [ -95.5095130510785, 30.028867247312444 ], [ -95.509390051543647, 30.02894224670381 ], [ -95.508993050784227, 30.029160247526388 ], [ -95.50885405125598, 30.029231247584793 ], [ -95.507160050221827, 30.030169247250541 ], [ -95.507060050177756, 30.030515247225871 ], [ -95.507057050593446, 30.030533247439855 ], [ -95.507029050997701, 30.030708247153807 ], [ -95.507029050983348, 30.030856247319413 ], [ -95.507035050211741, 30.030928247600261 ], [ -95.50709105089787, 30.031060247197011 ], [ -95.507281050350059, 30.031434247383562 ], [ -95.507331050626533, 30.031681247892674 ], [ -95.507413051148646, 30.031928247976033 ], [ -95.50800405061166, 30.032908248143109 ], [ -95.50863805115722, 30.033864247899384 ], [ -95.509004050968215, 30.034381248004639 ], [ -95.509033051267991, 30.034424248181278 ], [ -95.509527051908876, 30.035154248780479 ], [ -95.509566051213952, 30.03521124812637 ], [ -95.509901051549946, 30.035734248912821 ], [ -95.510046051516738, 30.035776248907293 ], [ -95.510204051978391, 30.03582224893788 ], [ -95.511127051934452, 30.035940248487798 ], [ -95.511455052000429, 30.03598224809047 ], [ -95.51179005213892, 30.036059248184138 ], [ -95.511828051644912, 30.036086248887361 ], [ -95.512446052294905, 30.036708248395158 ], [ -95.512541052727329, 30.036785248580664 ], [ -95.512625052320701, 30.036865248483586 ], [ -95.512800052470396, 30.037032248580637 ], [ -95.512851052843786, 30.037093248846013 ], [ -95.512875052372763, 30.037225248949937 ], [ -95.513009052566019, 30.037982248874034 ], [ -95.513046052177984, 30.038187248877438 ], [ -95.513090052850842, 30.038258249057677 ], [ -95.51332405232651, 30.038390248471977 ], [ -95.513602052901959, 30.038583248992957 ], [ -95.513785052448853, 30.038748249291469 ], [ -95.513924052569337, 30.038912248670464 ], [ -95.513958053202671, 30.03895224910335 ], [ -95.514101052646012, 30.03912124926622 ], [ -95.51432205343319, 30.039462249124245 ], [ -95.514922052900133, 30.040232249036663 ], [ -95.514989053543303, 30.040321248861794 ], [ -95.515522053464025, 30.041030249273838 ], [ -95.515540053215815, 30.041156249011138 ], [ -95.5155780530187, 30.041255249478276 ], [ -95.515730053248589, 30.041431249219702 ], [ -95.515799053022619, 30.041590249829845 ], [ -95.51598205344709, 30.041739249048025 ], [ -95.516248053262217, 30.04206324973962 ], [ -95.516324053175694, 30.04209624961894 ], [ -95.516482053666707, 30.042135249783719 ], [ -95.516545053290798, 30.042168249184467 ], [ -95.516671053358664, 30.042261249490867 ], [ -95.516829053937599, 30.042448249308833 ], [ -95.517107053291085, 30.042811249607016 ], [ -95.517524053570696, 30.043059249261052 ], [ -95.517789054295932, 30.04328424982436 ], [ -95.517865053519273, 30.043323249811259 ], [ -95.518073053635433, 30.043405249480291 ], [ -95.518155054374176, 30.043449249679579 ], [ -95.518358054045706, 30.043592249862627 ], [ -95.51845205454201, 30.043631250164545 ], [ -95.518648054716522, 30.043664250030041 ], [ -95.518749054582031, 30.043691249744651 ], [ -95.518876054041684, 30.043752249491313 ], [ -95.519027054236332, 30.043851249855837 ], [ -95.519210054008425, 30.044005249844471 ], [ -95.519394054733269, 30.04418124983037 ], [ -95.519709054714355, 30.044566249896306 ], [ -95.519930054244142, 30.044742249641601 ], [ -95.520183054452275, 30.04496725021977 ], [ -95.520423055209008, 30.045121249612993 ], [ -95.520556054460982, 30.045176250348739 ], [ -95.52127005467905, 30.045380249916526 ], [ -95.521662054884999, 30.045413250057212 ], [ -95.521965055256842, 30.045457250141364 ], [ -95.522142055279772, 30.045507249810957 ], [ -95.522521055807857, 30.045683249927272 ], [ -95.522666055307269, 30.045732250236405 ], [ -95.52279205574996, 30.045760250217867 ], [ -95.523089055103, 30.045765250439043 ], [ -95.523311055600118, 30.045787249699416 ], [ -95.523367055985787, 30.045820249689687 ], [ -95.523424055346723, 30.045870249697288 ], [ -95.523531056013255, 30.045992250492844 ], [ -95.523607055903241, 30.046079249953756 ], [ -95.52366405518346, 30.046123249715393 ], [ -95.523816055914878, 30.046183250484834 ], [ -95.524113055761319, 30.046392250117062 ], [ -95.524265055844978, 30.046464250596653 ], [ -95.524302055527286, 30.046497249732933 ], [ -95.524384055945063, 30.046634250637865 ], [ -95.524505055793398, 30.046870250423513 ], [ -95.524542055425087, 30.046915250639092 ], [ -95.524587055912008, 30.046947249890813 ], [ -95.524694056262177, 30.046997249920356 ], [ -95.524732055898554, 30.047024250286373 ], [ -95.524789056377571, 30.047101250257256 ], [ -95.52485805579721, 30.047222250026159 ], [ -95.524947056134792, 30.047316250114118 ], [ -95.525193056137596, 30.047453249991872 ], [ -95.525534055749873, 30.047662250278407 ], [ -95.525698056599055, 30.047734250620817 ], [ -95.52589405599322, 30.047789249966662 ], [ -95.526463056911538, 30.047883250188775 ], [ -95.526532056911719, 30.047910250710611 ], [ -95.526596056281349, 30.047970250783912 ], [ -95.526684056179533, 30.048141250611664 ], [ -95.526791056178297, 30.04826725041589 ], [ -95.526874056763731, 30.048317250221213 ], [ -95.527019056325301, 30.048361250050057 ], [ -95.52710105683623, 30.048432250458855 ], [ -95.527341056619946, 30.048856250282846 ], [ -95.527417056783889, 30.049054250459211 ], [ -95.527480056376234, 30.049669250430963 ], [ -95.527473056755269, 30.049909251133428 ], [ -95.527527056353421, 30.049888250655879 ], [ -95.52760305660216, 30.049850250573982 ], [ -95.527797056537395, 30.049778250616502 ], [ -95.527910056375759, 30.049751250707359 ], [ -95.528012056674498, 30.049720250759993 ], [ -95.52812805667449, 30.04965225067011 ], [ -95.528526056762615, 30.049508250985369 ], [ -95.528728057391007, 30.049428250439647 ], [ -95.528948056966428, 30.049344250485394 ], [ -95.529011057144217, 30.04932625089387 ], [ -95.529106057329628, 30.049298250805958 ], [ -95.529551056886419, 30.049125250199754 ], [ -95.529914057578281, 30.048989250788285 ], [ -95.530036057194991, 30.048948250182743 ], [ -95.530138057706765, 30.048897250079481 ], [ -95.53025105725402, 30.048856250668209 ], [ -95.530552057716449, 30.048722249970407 ], [ -95.530705057849346, 30.048651250654448 ], [ -95.531113057303187, 30.048444250383408 ], [ -95.531437057962691, 30.048268250360636 ], [ -95.532110057661512, 30.047899250166758 ], [ -95.532208057388686, 30.047838249793877 ], [ -95.532297057925049, 30.047789250227027 ], [ -95.5325000583546, 30.047681250441808 ], [ -95.53261705833043, 30.047614249821144 ], [ -95.53273205795162, 30.04755424997175 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 814, "Tract": "48201240804", "Area_SqMi": 0.34597947993138867, "total_2009": 496, "total_2010": 621, "total_2011": 755, "total_2012": 1094, "total_2013": 1070, "total_2014": 741, "total_2015": 751, "total_2016": 433, "total_2017": 344, "total_2018": 408, "total_2019": 393, "total_2020": 314, "age1": 70, "age2": 153, "age3": 69, "earn1": 39, "earn2": 95, "earn3": 158, "naics_s01": 0, "naics_s02": 8, "naics_s03": 0, "naics_s04": 17, "naics_s05": 0, "naics_s06": 15, "naics_s07": 31, "naics_s08": 1, "naics_s09": 0, "naics_s10": 37, "naics_s11": 0, "naics_s12": 9, "naics_s13": 0, "naics_s14": 120, "naics_s15": 0, "naics_s16": 14, "naics_s17": 0, "naics_s18": 37, "naics_s19": 3, "naics_s20": 0, "race1": 213, "race2": 47, "race3": 4, "race4": 20, "race5": 0, "race6": 8, "ethnicity1": 210, "ethnicity2": 82, "edu1": 34, "edu2": 52, "edu3": 76, "edu4": 60, "Shape_Length": 12559.799430793533, "Shape_Area": 9645315.7506891806, "total_2021": 306, "total_2022": 292 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429277030351813, 30.028239249697545 ], [ -95.429292030990993, 30.026912249667078 ], [ -95.429223030837704, 30.024588249175114 ], [ -95.42920103040278, 30.023789248525024 ], [ -95.429159029935676, 30.023469248509336 ], [ -95.429054030713317, 30.022030248446988 ], [ -95.429050030242394, 30.021980248583549 ], [ -95.429030029878248, 30.021704248773876 ], [ -95.429027030339924, 30.021654248429936 ], [ -95.429022030074975, 30.021554248111848 ], [ -95.429012030037882, 30.021382248119068 ], [ -95.429007030318033, 30.021348248739777 ], [ -95.428887030259887, 30.021384248135902 ], [ -95.428783029852923, 30.021414248173571 ], [ -95.428743030449795, 30.021426248837429 ], [ -95.428607030102597, 30.02146624801119 ], [ -95.428414030181841, 30.021522248105665 ], [ -95.42836202982997, 30.021537248401714 ], [ -95.42813803053977, 30.021603248614575 ], [ -95.428051029526571, 30.021628248472492 ], [ -95.42775102954613, 30.021715248566373 ], [ -95.423895029225548, 30.02283824856146 ], [ -95.423122028698685, 30.023007248711522 ], [ -95.421790028324381, 30.023332249356482 ], [ -95.420570028099391, 30.023571249266521 ], [ -95.420602027771579, 30.023803249332914 ], [ -95.420615028132062, 30.024339249533742 ], [ -95.420560027821125, 30.024609248982685 ], [ -95.420558028654213, 30.024629249195687 ], [ -95.420550028145797, 30.024725249037509 ], [ -95.420558027927029, 30.024784249761353 ], [ -95.420551027991834, 30.024901249453404 ], [ -95.420555028185191, 30.024959249163846 ], [ -95.420543028655842, 30.025163249595998 ], [ -95.420545028595754, 30.02525324925012 ], [ -95.42054602827379, 30.025301249687423 ], [ -95.420535028247272, 30.02536224977192 ], [ -95.420532028681222, 30.025679249855294 ], [ -95.42052702844785, 30.025796249533382 ], [ -95.420518028750635, 30.026016249484769 ], [ -95.420514028615898, 30.026098249474426 ], [ -95.420514027980673, 30.026394249679349 ], [ -95.420498028317468, 30.026937249787295 ], [ -95.420499028526038, 30.027118249448023 ], [ -95.420489028375087, 30.027245249996717 ], [ -95.42049702883368, 30.027386249798358 ], [ -95.420509028710768, 30.027600250052821 ], [ -95.420524027986843, 30.027708250344826 ], [ -95.420556028654076, 30.027950249716607 ], [ -95.420615028658986, 30.028246250128959 ], [ -95.420659028663408, 30.028412249916943 ], [ -95.420716028665353, 30.028613250411087 ], [ -95.420836028265782, 30.02894625027082 ], [ -95.42095502854076, 30.029229250406431 ], [ -95.420989028627005, 30.029281250007955 ], [ -95.421004028277324, 30.029313250550132 ], [ -95.421069028721945, 30.029452250235774 ], [ -95.421239029026424, 30.029735250100675 ], [ -95.421403028989147, 30.029977250132841 ], [ -95.421661028594869, 30.030323250677153 ], [ -95.421725029156988, 30.030391250192491 ], [ -95.422183029228307, 30.03093725039874 ], [ -95.422305029315993, 30.031107250612159 ], [ -95.422476029395014, 30.031461250997971 ], [ -95.422670028858619, 30.031948250405517 ], [ -95.422865028775021, 30.032630251114654 ], [ -95.42490902961238, 30.032705250679449 ], [ -95.425088030240175, 30.032712250693546 ], [ -95.426154030197935, 30.032752251195227 ], [ -95.426434029937766, 30.032800250867908 ], [ -95.427470030456007, 30.03299525068487 ], [ -95.427738030084186, 30.033032251103425 ], [ -95.428066030229218, 30.033044250782648 ], [ -95.428593030296682, 30.033039250958602 ], [ -95.428626030222475, 30.033039250770958 ], [ -95.428738030409093, 30.033038250854823 ], [ -95.428878030695699, 30.033037250391413 ], [ -95.428992030781529, 30.033036251066335 ], [ -95.429104030961241, 30.03303525084522 ], [ -95.429292030434965, 30.0330332510642 ], [ -95.429281030354531, 30.032666250534483 ], [ -95.429255030556149, 30.031561250338186 ], [ -95.429256031177431, 30.031429250282375 ], [ -95.429280030629542, 30.028705250117461 ], [ -95.429292030909394, 30.028601249477124 ], [ -95.429277030351813, 30.028239249697545 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 815, "Tract": "48201241302", "Area_SqMi": 3.7017724357873565, "total_2009": 2568, "total_2010": 2799, "total_2011": 2713, "total_2012": 2210, "total_2013": 2266, "total_2014": 2965, "total_2015": 3039, "total_2016": 3783, "total_2017": 3602, "total_2018": 3998, "total_2019": 3756, "total_2020": 3708, "age1": 1241, "age2": 1323, "age3": 652, "earn1": 904, "earn2": 1193, "earn3": 1119, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 190, "naics_s05": 209, "naics_s06": 68, "naics_s07": 1328, "naics_s08": 15, "naics_s09": 5, "naics_s10": 47, "naics_s11": 75, "naics_s12": 88, "naics_s13": 2, "naics_s14": 5, "naics_s15": 0, "naics_s16": 52, "naics_s17": 352, "naics_s18": 745, "naics_s19": 35, "naics_s20": 0, "race1": 2426, "race2": 529, "race3": 35, "race4": 167, "race5": 1, "race6": 58, "ethnicity1": 2032, "ethnicity2": 1184, "edu1": 474, "edu2": 554, "edu3": 597, "edu4": 350, "Shape_Length": 55251.730483047169, "Shape_Area": 103199079.86290826, "total_2021": 3351, "total_2022": 3216 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436133034249309, 30.074813258611485 ], [ -95.436039033976883, 30.074315258772373 ], [ -95.435569034423196, 30.071705258099581 ], [ -95.435497033995333, 30.071367258567253 ], [ -95.435207033659097, 30.069998258234435 ], [ -95.43492203401685, 30.068767257706519 ], [ -95.434499034091644, 30.066510256975793 ], [ -95.433898033685963, 30.063051256647274 ], [ -95.433117033528617, 30.05855325542834 ], [ -95.432837033065113, 30.057083255538529 ], [ -95.432237032286437, 30.054404255241252 ], [ -95.432129032273437, 30.053817255120794 ], [ -95.431931032851381, 30.052746254494735 ], [ -95.431902032916, 30.052588254885848 ], [ -95.43186003207154, 30.052360254559929 ], [ -95.43122603202616, 30.049368253998825 ], [ -95.430914031525433, 30.047661253313574 ], [ -95.430745031509929, 30.046789253571518 ], [ -95.430501031967509, 30.045221252734212 ], [ -95.430476032145606, 30.045055253445963 ], [ -95.430338032133506, 30.044183253328899 ], [ -95.430000031531691, 30.041995252364693 ], [ -95.429772031705937, 30.040668252030834 ], [ -95.429667031042825, 30.040055252423109 ], [ -95.429581031266807, 30.03940025175233 ], [ -95.429544031577876, 30.03911025192037 ], [ -95.429476031260577, 30.038575252155884 ], [ -95.429415031512463, 30.037775251956877 ], [ -95.429360031401941, 30.036672251495048 ], [ -95.429362030690839, 30.035746251382193 ], [ -95.429374030646699, 30.035648251272107 ], [ -95.429187030742753, 30.035726250964544 ], [ -95.429143030949859, 30.035744251426415 ], [ -95.429092030589246, 30.035752251265428 ], [ -95.428984030912687, 30.035768251214698 ], [ -95.4288620305948, 30.035786250948441 ], [ -95.428769031292532, 30.035780251153327 ], [ -95.428657030762153, 30.035772251617587 ], [ -95.428625030677594, 30.035770251233323 ], [ -95.428571030426383, 30.035766250871806 ], [ -95.427599031025863, 30.035698250900378 ], [ -95.427448030703061, 30.035730251663907 ], [ -95.427014030730135, 30.035823251700272 ], [ -95.426725030075232, 30.035886251729593 ], [ -95.426522030219161, 30.035857251022435 ], [ -95.426277029894408, 30.035725251458025 ], [ -95.42568102961836, 30.035184251285539 ], [ -95.425359029756805, 30.034963251395133 ], [ -95.424359030155784, 30.034780251306454 ], [ -95.423827029618934, 30.034449251284258 ], [ -95.423585029972926, 30.034421251489793 ], [ -95.423419029660764, 30.034521250945787 ], [ -95.42332402899234, 30.034793250903004 ], [ -95.423193028990084, 30.034928251180538 ], [ -95.422399029156779, 30.035296251721153 ], [ -95.421827028883953, 30.035353251345832 ], [ -95.421185029239808, 30.03523125132925 ], [ -95.420929029197467, 30.035405251802814 ], [ -95.420788029210726, 30.035501251288402 ], [ -95.42063602862541, 30.035555251448617 ], [ -95.420045028743246, 30.035436251711541 ], [ -95.419434028322897, 30.035507251671049 ], [ -95.419304028088121, 30.035594251644515 ], [ -95.418971028426938, 30.036003251453494 ], [ -95.418657028292714, 30.03623525203535 ], [ -95.418254028450463, 30.036482251455908 ], [ -95.41774202830625, 30.036619251611587 ], [ -95.417340027586903, 30.036802251768709 ], [ -95.416776028001749, 30.037325252310779 ], [ -95.416626027805478, 30.037383251941243 ], [ -95.415601027637663, 30.037562252543246 ], [ -95.41537902708734, 30.037577252200794 ], [ -95.414780027873547, 30.037617252036402 ], [ -95.413892027276262, 30.037564252449091 ], [ -95.413336027141057, 30.03753125225699 ], [ -95.412215026486976, 30.037283252081881 ], [ -95.412196026239741, 30.037276252543855 ], [ -95.411643026826113, 30.037077252364032 ], [ -95.410743025833355, 30.03663625217526 ], [ -95.410316026278821, 30.036354252482806 ], [ -95.4099640264577, 30.036004252215392 ], [ -95.408931025214343, 30.034671252048106 ], [ -95.408283025023806, 30.033834251222292 ], [ -95.408125025165276, 30.033392251318404 ], [ -95.40821702565033, 30.032468251298905 ], [ -95.408186025143507, 30.032111251706052 ], [ -95.408079025542065, 30.031918251531696 ], [ -95.40794402499543, 30.031785251632872 ], [ -95.407306024995563, 30.031396251408193 ], [ -95.406782025105159, 30.031109250893994 ], [ -95.406333024884816, 30.030939250875399 ], [ -95.406039024309507, 30.030962250991209 ], [ -95.405888024652427, 30.030974250814577 ], [ -95.405856024656359, 30.030982250949279 ], [ -95.405575024986618, 30.031057251528267 ], [ -95.405438025169516, 30.031121251093545 ], [ -95.405456024688689, 30.031194251253492 ], [ -95.405920025174964, 30.033048251895956 ], [ -95.407652025419111, 30.039961253167679 ], [ -95.407703025806839, 30.040163252850519 ], [ -95.407710025961478, 30.040213253140184 ], [ -95.40778302591896, 30.040716253234411 ], [ -95.407791026086457, 30.041081252904355 ], [ -95.40778002571173, 30.041364252880921 ], [ -95.407774025683096, 30.041524253571978 ], [ -95.407743025334739, 30.041802252918679 ], [ -95.407710025258822, 30.04197225349975 ], [ -95.407676025882807, 30.042146253738629 ], [ -95.407600026261335, 30.042472253020517 ], [ -95.407554025575152, 30.042604253266799 ], [ -95.407460025433934, 30.042876253040522 ], [ -95.407430025472479, 30.04294225329188 ], [ -95.405246025121386, 30.047748254778238 ], [ -95.403832024737625, 30.050862255245359 ], [ -95.403714025301952, 30.051243255319584 ], [ -95.403709025478406, 30.05126925552706 ], [ -95.403655024970732, 30.051548255241531 ], [ -95.403617024881072, 30.051750254975406 ], [ -95.403574025553098, 30.052225255667324 ], [ -95.403592025405516, 30.052984255734859 ], [ -95.404580026102224, 30.057077256911544 ], [ -95.404929025575925, 30.058681257019582 ], [ -95.405908026552225, 30.062339257665997 ], [ -95.406046026332518, 30.062763257729941 ], [ -95.406219026669078, 30.063163257235967 ], [ -95.40639002631454, 30.063498257731421 ], [ -95.40659802675701, 30.063835258026714 ], [ -95.406824026859383, 30.064162257585757 ], [ -95.40798502696191, 30.065744257759704 ], [ -95.408085026846322, 30.065880258222581 ], [ -95.409371026988779, 30.067633258875691 ], [ -95.410640027524053, 30.069288258843873 ], [ -95.411055027501035, 30.069903258962828 ], [ -95.411368027871333, 30.070529258833432 ], [ -95.411543027783296, 30.071031259189645 ], [ -95.411686027810731, 30.071684259580941 ], [ -95.411706028441458, 30.072119258990757 ], [ -95.411698028632529, 30.072530259016698 ], [ -95.411670027995555, 30.072887259896383 ], [ -95.411620028521099, 30.073242259156775 ], [ -95.411413027976835, 30.074339259691076 ], [ -95.411377028399343, 30.074525260127615 ], [ -95.411564027830252, 30.074488259527591 ], [ -95.412015028296764, 30.074400259882733 ], [ -95.414328029269058, 30.07395425986131 ], [ -95.414894029467177, 30.07384625950742 ], [ -95.415400029336993, 30.073748259253016 ], [ -95.415543029424057, 30.073721259910652 ], [ -95.415808029033769, 30.073670259631651 ], [ -95.417634029807687, 30.073319259544917 ], [ -95.418366030004705, 30.073109259176977 ], [ -95.418723030335258, 30.073053259283046 ], [ -95.418859029754245, 30.07302125928879 ], [ -95.419492030682818, 30.072909259194827 ], [ -95.420221030106958, 30.072794259253204 ], [ -95.42045003050913, 30.072770258919622 ], [ -95.420981030491575, 30.070917259009519 ], [ -95.421005030920483, 30.070731258981407 ], [ -95.421005030449408, 30.070581258517947 ], [ -95.420897030907938, 30.070064258936682 ], [ -95.420861030849025, 30.069727258240203 ], [ -95.420891030100066, 30.069505258508805 ], [ -95.420933030377057, 30.069348258663556 ], [ -95.42105303039915, 30.069066258377401 ], [ -95.421706030395697, 30.067621257594389 ], [ -95.421757030603388, 30.067489257945404 ], [ -95.421856030336883, 30.067034257667409 ], [ -95.421892030947987, 30.066926257653041 ], [ -95.422054030978231, 30.066583258179374 ], [ -95.422132030825566, 30.066439258138068 ], [ -95.42215003037704, 30.066337257483674 ], [ -95.421783029872472, 30.063896257538637 ], [ -95.421777030345979, 30.063830257546449 ], [ -95.421934030032588, 30.063523257189683 ], [ -95.422006030015098, 30.063409257491994 ], [ -95.422048030535848, 30.063277257196674 ], [ -95.422048030052082, 30.063186257006695 ], [ -95.421880029958118, 30.06266925702116 ], [ -95.422451030633297, 30.062928257373709 ], [ -95.422535030753991, 30.062958256969136 ], [ -95.422601030584403, 30.062970256834404 ], [ -95.422744030887117, 30.062972256804677 ], [ -95.422837030732822, 30.062946256936886 ], [ -95.422926030625334, 30.062921257097312 ], [ -95.423223031126867, 30.06282225673225 ], [ -95.423368031118699, 30.062828257075385 ], [ -95.423532030298375, 30.062894257150408 ], [ -95.423811031134861, 30.062982257213445 ], [ -95.423943030533806, 30.062965256660185 ], [ -95.424038031016849, 30.062943257014741 ], [ -95.424133030881023, 30.062916257080627 ], [ -95.424285031157964, 30.062855256689996 ], [ -95.424386030700447, 30.062883256895915 ], [ -95.424481030665248, 30.062927256933051 ], [ -95.425277031625285, 30.063378256805908 ], [ -95.42542803160778, 30.063477256699109 ], [ -95.425523031529679, 30.063553257261447 ], [ -95.42565403162223, 30.06372125670099 ], [ -95.425936031194553, 30.064080257150632 ], [ -95.4260230315179, 30.064191257209885 ], [ -95.426033031587835, 30.06420225729828 ], [ -95.426414031882032, 30.064626257007696 ], [ -95.426869031430215, 30.065203257537071 ], [ -95.42748903173387, 30.06583525757965 ], [ -95.427640032376971, 30.066017257106168 ], [ -95.427868032055059, 30.066313257491672 ], [ -95.428045031828873, 30.066478257219 ], [ -95.428525032343529, 30.066880257265403 ], [ -95.428589031962616, 30.066946258077035 ], [ -95.428633031945054, 30.067012257271777 ], [ -95.428652031742615, 30.067072258063437 ], [ -95.428671031900677, 30.067352257376793 ], [ -95.428677032663714, 30.067660258021725 ], [ -95.428709031938226, 30.067787257441001 ], [ -95.428759031977592, 30.067897257901947 ], [ -95.428924032855605, 30.068161258027981 ], [ -95.42906903221899, 30.068342257713375 ], [ -95.429210032124729, 30.068475258366952 ], [ -95.429404032528026, 30.068657257898984 ], [ -95.429543032163707, 30.06878725816825 ], [ -95.429695032425641, 30.068985257754122 ], [ -95.429802032493058, 30.069040257875677 ], [ -95.429834033046262, 30.069068257758861 ], [ -95.42986503277406, 30.069117258010678 ], [ -95.429903032645413, 30.069315258393427 ], [ -95.42994103310069, 30.069414257785169 ], [ -95.429992032355116, 30.069464258504066 ], [ -95.430055032459762, 30.069508258198315 ], [ -95.430225032570519, 30.069590257882432 ], [ -95.430267032526842, 30.069624258075645 ], [ -95.43032003250471, 30.069667258281935 ], [ -95.430409033106343, 30.069810257874359 ], [ -95.430447032902634, 30.069925258562456 ], [ -95.430516032904336, 30.070024257820297 ], [ -95.430586032642907, 30.070079258496737 ], [ -95.431047032622928, 30.070239258358235 ], [ -95.431161032831326, 30.070316258056092 ], [ -95.431230032693122, 30.070415258708945 ], [ -95.431287032732442, 30.070541258517611 ], [ -95.431306032845697, 30.070624258739425 ], [ -95.431332033019345, 30.070910258127402 ], [ -95.431363032963716, 30.070992258266312 ], [ -95.431509033654834, 30.071151258129337 ], [ -95.431534032917426, 30.071239257980864 ], [ -95.431452033117552, 30.071388258038432 ], [ -95.43124903274088, 30.071619258094298 ], [ -95.431224033254011, 30.071668258622879 ], [ -95.431237033471007, 30.071784258658219 ], [ -95.431262033644472, 30.071844258460899 ], [ -95.431439032728974, 30.072080258211141 ], [ -95.43149003290408, 30.072113258574841 ], [ -95.431723033538844, 30.072168258814067 ], [ -95.431812033742617, 30.072212258202811 ], [ -95.431919033368942, 30.072306258733324 ], [ -95.432046033120727, 30.072438258876385 ], [ -95.432185033742925, 30.072641258617004 ], [ -95.4322730333446, 30.072823258564156 ], [ -95.432324033948021, 30.072960258657787 ], [ -95.4323300337674, 30.07304825854029 ], [ -95.43231803344851, 30.073147258523761 ], [ -95.432292033488437, 30.074384258876446 ], [ -95.432343033403285, 30.074587259326076 ], [ -95.432356033433848, 30.074741259489592 ], [ -95.432387033094628, 30.074890258820915 ], [ -95.432425033192885, 30.075038258863479 ], [ -95.432514033241731, 30.075286259262239 ], [ -95.432608033808734, 30.075473259310932 ], [ -95.432710033229412, 30.075627259212698 ], [ -95.432943033983634, 30.075890259607732 ], [ -95.433000033487389, 30.075978259695461 ], [ -95.433027034001398, 30.076036259682777 ], [ -95.433121033783479, 30.075999259788183 ], [ -95.435066034135261, 30.075245258768135 ], [ -95.435538034399556, 30.075040258931786 ], [ -95.435634034081957, 30.075003258899415 ], [ -95.435756034928005, 30.074956259227584 ], [ -95.435889034715601, 30.074905259410041 ], [ -95.436133034249309, 30.074813258611485 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 816, "Tract": "48201555704", "Area_SqMi": 3.0563614767415617, "total_2009": 69, "total_2010": 431, "total_2011": 23, "total_2012": 24, "total_2013": 42, "total_2014": 501, "total_2015": 660, "total_2016": 1000, "total_2017": 1251, "total_2018": 1610, "total_2019": 1874, "total_2020": 1278, "age1": 74, "age2": 159, "age3": 41, "earn1": 66, "earn2": 80, "earn3": 128, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 43, "naics_s05": 4, "naics_s06": 28, "naics_s07": 28, "naics_s08": 4, "naics_s09": 12, "naics_s10": 17, "naics_s11": 4, "naics_s12": 43, "naics_s13": 0, "naics_s14": 26, "naics_s15": 3, "naics_s16": 7, "naics_s17": 7, "naics_s18": 46, "naics_s19": 2, "naics_s20": 0, "race1": 200, "race2": 44, "race3": 0, "race4": 23, "race5": 2, "race6": 5, "ethnicity1": 220, "ethnicity2": 54, "edu1": 31, "edu2": 45, "edu3": 64, "edu4": 60, "Shape_Length": 45094.851348863383, "Shape_Area": 85206126.956607759, "total_2021": 1978, "total_2022": 274 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.782371120378528, 30.027316237676789 ], [ -95.782369120994545, 30.026934237319399 ], [ -95.782349120455379, 30.026291237176544 ], [ -95.782341120895737, 30.026145237434495 ], [ -95.782345120633451, 30.025998237169105 ], [ -95.782325120888117, 30.02476223704182 ], [ -95.782322120433221, 30.024537236851756 ], [ -95.782314120849875, 30.024359236281207 ], [ -95.782269120726994, 30.021890235932315 ], [ -95.782216120377257, 30.018954235220537 ], [ -95.782200119897922, 30.01800023580434 ], [ -95.782198120222702, 30.017873235202504 ], [ -95.782196120701954, 30.017776235467405 ], [ -95.782121120022623, 30.013215234670199 ], [ -95.782090120324938, 30.011489233941315 ], [ -95.781886120083925, 30.010851233928395 ], [ -95.782006120440343, 30.010759233837092 ], [ -95.782073119746769, 30.010724234122637 ], [ -95.782098120351918, 30.010682233992849 ], [ -95.782101119831012, 30.010576233964031 ], [ -95.782011120230635, 30.007022233426063 ], [ -95.781979120074624, 30.00508123309076 ], [ -95.781978119859019, 30.005052232464958 ], [ -95.781975120200357, 30.004838233078164 ], [ -95.781972119742306, 30.004678233129425 ], [ -95.781967119418098, 30.004334232535228 ], [ -95.781960119608115, 30.003904232281055 ], [ -95.78195911914672, 30.003811232408815 ], [ -95.781958119264203, 30.003731232207709 ], [ -95.780469118975844, 30.003259232684677 ], [ -95.780201119490556, 30.003139232884894 ], [ -95.77995311873417, 30.003040232146105 ], [ -95.779441119124726, 30.002838232081345 ], [ -95.778640118952865, 30.002523232249445 ], [ -95.777692118017143, 30.002151232494736 ], [ -95.774223117584015, 30.000767232253228 ], [ -95.772473116986603, 30.00012823220511 ], [ -95.771725116447897, 29.999831231803185 ], [ -95.771337117040531, 29.999677232077847 ], [ -95.771163116938723, 29.999627232227446 ], [ -95.770798116654262, 29.999487231977486 ], [ -95.769478116529982, 29.999002232436602 ], [ -95.769387116601919, 29.998969232299711 ], [ -95.769135115910686, 29.998870232078122 ], [ -95.768860115765492, 29.998763231547962 ], [ -95.768570116511299, 29.998650231648305 ], [ -95.768052115612193, 29.998449231935222 ], [ -95.767005115875392, 29.998059232134516 ], [ -95.764524114706376, 29.997134231905374 ], [ -95.761180113865763, 29.995860231333243 ], [ -95.760496113600809, 29.995600231502266 ], [ -95.760437114256888, 29.99572723134888 ], [ -95.760364113490951, 29.995885231357043 ], [ -95.760326113921394, 29.995968232117047 ], [ -95.760264113616117, 29.996102231576113 ], [ -95.758906113573602, 29.999143232246443 ], [ -95.758673113896208, 29.999519232891437 ], [ -95.758108113408582, 30.000491232918144 ], [ -95.757282113252586, 30.00132823245659 ], [ -95.757192113091151, 30.001409233326275 ], [ -95.756839113482442, 30.001726232995939 ], [ -95.756595113579948, 30.001971233242763 ], [ -95.756409113373365, 30.002194233259242 ], [ -95.756121113453062, 30.002514232820076 ], [ -95.755642112450531, 30.003207233361426 ], [ -95.755323113298942, 30.003952233127809 ], [ -95.755099113338431, 30.004889233265224 ], [ -95.75504611270982, 30.005864233694115 ], [ -95.755095112509565, 30.00678723394174 ], [ -95.75518511258592, 30.007057234351056 ], [ -95.755545113344212, 30.00784823398665 ], [ -95.755847113537271, 30.008476234101877 ], [ -95.756013112793411, 30.008819234372933 ], [ -95.756336112942193, 30.009629234295204 ], [ -95.756552113209921, 30.011190234758843 ], [ -95.75645711387493, 30.0125472348271 ], [ -95.75644911321389, 30.012669235574247 ], [ -95.756244113531167, 30.012657234813474 ], [ -95.755529113530912, 30.012615235424786 ], [ -95.754880113090422, 30.012582235113882 ], [ -95.754158113002248, 30.012598234891374 ], [ -95.753473112288091, 30.01267423547857 ], [ -95.752742112106674, 30.012872235330072 ], [ -95.75224111251103, 30.013004235407291 ], [ -95.75114911239676, 30.013274235753716 ], [ -95.750715111872225, 30.013329235717883 ], [ -95.749732112334883, 30.013464235765724 ], [ -95.74862111167694, 30.013466235775649 ], [ -95.748092111252774, 30.013425235252491 ], [ -95.74763211160105, 30.013355235851126 ], [ -95.7456371104619, 30.01287223540211 ], [ -95.745138111159548, 30.012788235969833 ], [ -95.744725110882555, 30.012732235817289 ], [ -95.744196110648147, 30.012708235719327 ], [ -95.743519110006332, 30.012733235366269 ], [ -95.742910109766981, 30.012730235510674 ], [ -95.742954110213532, 30.016065235935777 ], [ -95.742975110458204, 30.017414236739402 ], [ -95.742988110346232, 30.018198236862066 ], [ -95.743011110046766, 30.019570236721318 ], [ -95.743012110584473, 30.019732237458921 ], [ -95.743021110094674, 30.020391237560798 ], [ -95.743034110866574, 30.020463236993951 ], [ -95.743063110245089, 30.020515237527338 ], [ -95.743111110993638, 30.02054923698606 ], [ -95.743170110494304, 30.020563237256951 ], [ -95.743544110757838, 30.020563236835756 ], [ -95.745136111060873, 30.020540236909785 ], [ -95.746354111640642, 30.020501236837649 ], [ -95.748380111757072, 30.020492237398919 ], [ -95.748884111902399, 30.02048323674493 ], [ -95.749915112231875, 30.020464237443406 ], [ -95.750869112795314, 30.020460236915671 ], [ -95.752152112697956, 30.020466237075759 ], [ -95.753034113320894, 30.020458237070354 ], [ -95.754441113060665, 30.020443236953472 ], [ -95.755931113821646, 30.020428237085952 ], [ -95.759339114891532, 30.020393236846694 ], [ -95.763874115666169, 30.020332236262199 ], [ -95.76466211621522, 30.020322236127143 ], [ -95.765823116744457, 30.020328236498401 ], [ -95.767670117013566, 30.020314236778294 ], [ -95.767931117072536, 30.020312236025383 ], [ -95.76822011646378, 30.020310236791214 ], [ -95.76831711708688, 30.020319236740509 ], [ -95.768392117107979, 30.020342236820763 ], [ -95.768439117378122, 30.020380236246073 ], [ -95.768455116632822, 30.02042823610692 ], [ -95.768465117308949, 30.020649236492115 ], [ -95.768478116784948, 30.021582236741125 ], [ -95.768519116822304, 30.022811237063468 ], [ -95.768528116636986, 30.023342237286666 ], [ -95.768508117489475, 30.024485237114341 ], [ -95.768509117312789, 30.025041236983103 ], [ -95.768511116883985, 30.025416237472857 ], [ -95.768511116751952, 30.025554237737232 ], [ -95.768528117442301, 30.027436237846661 ], [ -95.768536117431694, 30.027514238261439 ], [ -95.768550117579764, 30.027571237430458 ], [ -95.768609117773934, 30.027640238134058 ], [ -95.768698116995211, 30.027669237693736 ], [ -95.768851117821526, 30.027685237908621 ], [ -95.769976118070289, 30.027744238170417 ], [ -95.770011117990123, 30.027756238005129 ], [ -95.770951118207208, 30.027761237505654 ], [ -95.774052119125585, 30.02773523806929 ], [ -95.779321119796236, 30.027674237363712 ], [ -95.78018112038832, 30.027661237275481 ], [ -95.781143120380321, 30.027660237121609 ], [ -95.781237120075815, 30.027659237207761 ], [ -95.781582121123833, 30.027653237256736 ], [ -95.781827120362252, 30.027646237532664 ], [ -95.782117120511842, 30.027638237519344 ], [ -95.782183120866108, 30.027629237238131 ], [ -95.7822381204859, 30.027613237258663 ], [ -95.782320120759636, 30.027554237341629 ], [ -95.78236012130435, 30.027456237468513 ], [ -95.782371120378528, 30.027316237676789 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 817, "Tract": "48201521402", "Area_SqMi": 0.35922734115240773, "total_2009": 205, "total_2010": 195, "total_2011": 242, "total_2012": 154, "total_2013": 161, "total_2014": 158, "total_2015": 196, "total_2016": 204, "total_2017": 296, "total_2018": 304, "total_2019": 289, "total_2020": 237, "age1": 40, "age2": 110, "age3": 49, "earn1": 55, "earn2": 60, "earn3": 84, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 17, "naics_s06": 45, "naics_s07": 14, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 16, "naics_s12": 0, "naics_s13": 0, "naics_s14": 29, "naics_s15": 0, "naics_s16": 24, "naics_s17": 0, "naics_s18": 28, "naics_s19": 0, "naics_s20": 0, "race1": 153, "race2": 14, "race3": 4, "race4": 26, "race5": 2, "race6": 0, "ethnicity1": 126, "ethnicity2": 73, "edu1": 43, "edu2": 39, "edu3": 45, "edu4": 32, "Shape_Length": 15295.661828128033, "Shape_Area": 10014643.447590105, "total_2021": 176, "total_2022": 199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.509644041802417, 29.821604205212374 ], [ -95.509633041506902, 29.8211462050464 ], [ -95.507456041674743, 29.821191205065009 ], [ -95.507313040735568, 29.821195204700533 ], [ -95.50666404094126, 29.821167204980863 ], [ -95.505737041266826, 29.820965204996888 ], [ -95.504857040330791, 29.820860205055364 ], [ -95.501939039481528, 29.820859205229478 ], [ -95.501250039154456, 29.82086120469652 ], [ -95.500737039707374, 29.820783205038378 ], [ -95.499921039690562, 29.820525205049627 ], [ -95.499615039432925, 29.820364204548319 ], [ -95.499175038954164, 29.820082205107553 ], [ -95.499126038571575, 29.8200402048729 ], [ -95.498911039493436, 29.820209204701399 ], [ -95.498550038798172, 29.820597205150673 ], [ -95.498288038433145, 29.820865205357673 ], [ -95.497981038646401, 29.821180205304866 ], [ -95.497527038339911, 29.821646205614162 ], [ -95.496830038199406, 29.822431205286239 ], [ -95.496578038361989, 29.822684205635642 ], [ -95.496448038376101, 29.822832205334553 ], [ -95.496352038469837, 29.822941205658111 ], [ -95.496228038827624, 29.823073205939984 ], [ -95.496012038349733, 29.82330320576418 ], [ -95.495459038224013, 29.823898205995597 ], [ -95.494956037921852, 29.8244352061805 ], [ -95.494006037744953, 29.825429206554897 ], [ -95.494137037771594, 29.825528206623549 ], [ -95.494848038435464, 29.826007205831779 ], [ -95.494963038614131, 29.825874206134394 ], [ -95.495124038359677, 29.82575320586421 ], [ -95.495319038621872, 29.825673206522019 ], [ -95.495569038172945, 29.825596205884892 ], [ -95.499482039579647, 29.82558320613585 ], [ -95.502881040107667, 29.825575205678557 ], [ -95.502888040463787, 29.826829205779319 ], [ -95.50288804003651, 29.827287206618728 ], [ -95.502891040561451, 29.827493206246864 ], [ -95.502925040876363, 29.829367207123834 ], [ -95.503492040958179, 29.829381206938692 ], [ -95.50380804111461, 29.829396207018601 ], [ -95.504103040443809, 29.829399206441114 ], [ -95.504538041075207, 29.829389206931822 ], [ -95.504786041193555, 29.82938620664779 ], [ -95.50497504072905, 29.829378206569029 ], [ -95.505886041358551, 29.829374206245099 ], [ -95.506017040993086, 29.829372206727975 ], [ -95.506323040843043, 29.829361206709631 ], [ -95.506542041380953, 29.829366206601428 ], [ -95.506645041169335, 29.829367206606719 ], [ -95.506743040982855, 29.829367206155595 ], [ -95.507404042062532, 29.829357206921795 ], [ -95.508444041817327, 29.829357206221246 ], [ -95.509069041793182, 29.829334206033472 ], [ -95.509278041886148, 29.829341206670716 ], [ -95.50924704214269, 29.827617205856662 ], [ -95.50924304243506, 29.82751120591082 ], [ -95.509238041620833, 29.827342206176773 ], [ -95.509225041795645, 29.826715205670425 ], [ -95.509212042342639, 29.825588206023031 ], [ -95.509210041602515, 29.825483205796637 ], [ -95.509206042240905, 29.825056205492388 ], [ -95.509195042168912, 29.823928205773967 ], [ -95.509196041654263, 29.823896205135522 ], [ -95.509205042238889, 29.823401205018893 ], [ -95.509249041397069, 29.823223205353472 ], [ -95.50930504200204, 29.822993205120572 ], [ -95.509506041617627, 29.822475204923226 ], [ -95.509606042193624, 29.822056204564067 ], [ -95.509644041802417, 29.821604205212374 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 818, "Tract": "48201555505", "Area_SqMi": 2.9098899359693449, "total_2009": 340, "total_2010": 624, "total_2011": 800, "total_2012": 503, "total_2013": 577, "total_2014": 627, "total_2015": 813, "total_2016": 630, "total_2017": 803, "total_2018": 1013, "total_2019": 1091, "total_2020": 1101, "age1": 427, "age2": 671, "age3": 217, "earn1": 299, "earn2": 346, "earn3": 670, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 99, "naics_s05": 92, "naics_s06": 57, "naics_s07": 387, "naics_s08": 6, "naics_s09": 0, "naics_s10": 23, "naics_s11": 29, "naics_s12": 206, "naics_s13": 0, "naics_s14": 43, "naics_s15": 25, "naics_s16": 58, "naics_s17": 10, "naics_s18": 191, "naics_s19": 86, "naics_s20": 0, "race1": 1028, "race2": 160, "race3": 8, "race4": 95, "race5": 1, "race6": 23, "ethnicity1": 921, "ethnicity2": 394, "edu1": 173, "edu2": 241, "edu3": 297, "edu4": 177, "Shape_Length": 48981.788627838483, "Shape_Area": 81122751.0884258, "total_2021": 1233, "total_2022": 1315 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.64237808456835, 30.012414239265045 ], [ -95.642380084594919, 30.012246238878291 ], [ -95.642372084371502, 30.011923238755834 ], [ -95.642355084371786, 30.011830239449218 ], [ -95.642324083890969, 30.011745238633509 ], [ -95.642279084753355, 30.011667239047576 ], [ -95.642216084562108, 30.01159323900308 ], [ -95.64205508376007, 30.01143523937785 ], [ -95.641695084363292, 30.011105239010867 ], [ -95.641623084368902, 30.011030239303576 ], [ -95.64156308449131, 30.010958239018066 ], [ -95.64151808403345, 30.010879239093935 ], [ -95.641486083666209, 30.010805239264513 ], [ -95.641465084590891, 30.01072223913744 ], [ -95.641456083701314, 30.010626238348266 ], [ -95.641458084111164, 30.009054238221818 ], [ -95.641454084300506, 30.007963238221297 ], [ -95.641453084045182, 30.007484238203531 ], [ -95.641447084295834, 30.00738723831229 ], [ -95.6414510842596, 30.006820238079886 ], [ -95.641441083943789, 30.006764237694931 ], [ -95.641417083981963, 30.00671223841114 ], [ -95.641378084138864, 30.006666237789883 ], [ -95.641320083678366, 30.006626237777862 ], [ -95.641246084352971, 30.0065902375758 ], [ -95.640256083160807, 30.006181237653358 ], [ -95.639859083375683, 30.006014238347362 ], [ -95.639707083054546, 30.005956238217735 ], [ -95.639279083682126, 30.005783237839076 ], [ -95.639155082818533, 30.005748238245019 ], [ -95.639004083183153, 30.005685237923966 ], [ -95.638875083583258, 30.005625238260556 ], [ -95.638489083339337, 30.005473237528275 ], [ -95.63838708335706, 30.005416237925775 ], [ -95.638250083305522, 30.005378237969435 ], [ -95.638147082590322, 30.00532623754156 ], [ -95.638034082734876, 30.005276237704816 ], [ -95.637914083266381, 30.005232237724545 ], [ -95.637783082439782, 30.005179237484676 ], [ -95.637131082383704, 30.004915238214657 ], [ -95.63702308222949, 30.004877238207744 ], [ -95.636911083039067, 30.004827238075006 ], [ -95.63669608249549, 30.004741238184906 ], [ -95.636588082418356, 30.004693237734127 ], [ -95.636499083014712, 30.004655237391532 ], [ -95.636215082286526, 30.004543238063924 ], [ -95.63560508233472, 30.004291237800643 ], [ -95.635323081939788, 30.004530237415395 ], [ -95.6352070824355, 30.004614237906424 ], [ -95.635029081989941, 30.004747238024496 ], [ -95.634682081808634, 30.004987238092479 ], [ -95.63463208185631, 30.005011237519138 ], [ -95.634573082539262, 30.005040238050391 ], [ -95.634509081972453, 30.005079237897995 ], [ -95.634295082458138, 30.005213237714976 ], [ -95.634213081872915, 30.005271237874812 ], [ -95.634128081850776, 30.005325237706867 ], [ -95.633947082418757, 30.005414237605976 ], [ -95.633865082163254, 30.005449238264088 ], [ -95.63377808169443, 30.005475238044905 ], [ -95.633664081630613, 30.005523238278968 ], [ -95.63348508182095, 30.005592237859005 ], [ -95.633311081603381, 30.005646237820017 ], [ -95.633184082074678, 30.005678238435731 ], [ -95.63271208212862, 30.005719237833894 ], [ -95.63260008178554, 30.005724238177049 ], [ -95.632351081773734, 30.005724238144417 ], [ -95.632237081358468, 30.005732237712738 ], [ -95.63210708195605, 30.005735238561627 ], [ -95.63195108176626, 30.005730238048326 ], [ -95.631559081488092, 30.00574323796112 ], [ -95.631324081685619, 30.005744237808745 ], [ -95.631229081732428, 30.005753238267854 ], [ -95.631020081000813, 30.005754237940724 ], [ -95.630782081061696, 30.005768238440677 ], [ -95.630661080704741, 30.005760237855785 ], [ -95.630522081544598, 30.005767238019189 ], [ -95.630029080646509, 30.005772237925427 ], [ -95.629889081160442, 30.005786238582999 ], [ -95.629820080810603, 30.005773238463188 ], [ -95.629748081399597, 30.005774238113634 ], [ -95.629686081226041, 30.00578623779889 ], [ -95.629617080457294, 30.005783238564732 ], [ -95.62945408048806, 30.005776238213144 ], [ -95.628462080078279, 30.005783238453891 ], [ -95.628310080846347, 30.005785238529398 ], [ -95.627947080512484, 30.005793238224911 ], [ -95.6275200804848, 30.005793238479232 ], [ -95.627437079909257, 30.005800238750741 ], [ -95.627366080049754, 30.005801238754369 ], [ -95.627101080036141, 30.005802237962605 ], [ -95.626933080243518, 30.005808238212239 ], [ -95.626683079673541, 30.005828237968153 ], [ -95.626521080321339, 30.005852238752301 ], [ -95.62643408040617, 30.005872238293122 ], [ -95.626354080262729, 30.005899238550775 ], [ -95.626259079764708, 30.005948238629085 ], [ -95.626153080390807, 30.006014238760372 ], [ -95.626009079530689, 30.006115238714855 ], [ -95.625825079827578, 30.006257238810349 ], [ -95.625792079487226, 30.006283238723618 ], [ -95.625604079690476, 30.006432238305653 ], [ -95.62440307943892, 30.007356238442309 ], [ -95.62428807950711, 30.007440238601074 ], [ -95.624089079883333, 30.00757523843571 ], [ -95.623692079811775, 30.007873239183382 ], [ -95.62273507921013, 30.008603239343795 ], [ -95.621433079202646, 30.009567238901731 ], [ -95.619454078038686, 30.011032239747774 ], [ -95.619335078981237, 30.011122239888604 ], [ -95.619202078574006, 30.011215239595579 ], [ -95.619143078569593, 30.011263239988075 ], [ -95.619005078435237, 30.011351239983913 ], [ -95.618953078506436, 30.011394239516306 ], [ -95.618901078805891, 30.011430239863959 ], [ -95.618814078496627, 30.011478239385283 ], [ -95.618745078790226, 30.011531239790116 ], [ -95.618401078704053, 30.01177924007558 ], [ -95.618340078758905, 30.011845239610128 ], [ -95.618263078359803, 30.011907239740395 ], [ -95.618176078730585, 30.01196823991403 ], [ -95.618075077917268, 30.012028239549398 ], [ -95.617671077917592, 30.012299239560413 ], [ -95.617521078567052, 30.012385240099672 ], [ -95.617304078324366, 30.012488240468208 ], [ -95.617131077828333, 30.012554239740307 ], [ -95.617092077463909, 30.012571239817568 ], [ -95.616696077726374, 30.012647240510923 ], [ -95.616572078279759, 30.012650240473398 ], [ -95.616474078031715, 30.012664240003502 ], [ -95.616047077245028, 30.012690239984622 ], [ -95.615959077223309, 30.012703240118256 ], [ -95.615654077427607, 30.012724240542639 ], [ -95.615422077109685, 30.01274023997507 ], [ -95.615321077372613, 30.01274124057948 ], [ -95.614609077595134, 30.012784239791436 ], [ -95.614176077551278, 30.012807240583708 ], [ -95.612704076589935, 30.012886240254797 ], [ -95.612449077104785, 30.012896240359343 ], [ -95.611873076788882, 30.012905240555416 ], [ -95.61152207677074, 30.012898239971658 ], [ -95.611206076922144, 30.012886240407667 ], [ -95.611128076017806, 30.012893240449518 ], [ -95.611031076698026, 30.012879240190934 ], [ -95.610896076250469, 30.012876240740308 ], [ -95.610597076048165, 30.012863240775221 ], [ -95.610488076792947, 30.012851240648729 ], [ -95.610351076297761, 30.012845240693728 ], [ -95.609262076002139, 30.012782240207219 ], [ -95.609159075467645, 30.012776240652236 ], [ -95.608970075819585, 30.012765239947122 ], [ -95.608896075614254, 30.012773240411729 ], [ -95.608285075853118, 30.012724239956114 ], [ -95.60823007593514, 30.012729240458501 ], [ -95.60821807601576, 30.012730240762465 ], [ -95.607985075579506, 30.012724240664745 ], [ -95.607963075662497, 30.012723240241009 ], [ -95.607833075523104, 30.012717240271844 ], [ -95.607631075110419, 30.012729240031977 ], [ -95.607552075242879, 30.012723240588574 ], [ -95.607461075592127, 30.012724240512952 ], [ -95.60736207525018, 30.012737240654506 ], [ -95.607223075894211, 30.012742240415438 ], [ -95.607136075830013, 30.012745240068959 ], [ -95.607014074973193, 30.012736240024193 ], [ -95.606800074852842, 30.012740240427743 ], [ -95.606694075693909, 30.012738240008513 ], [ -95.60661507543594, 30.012741240120647 ], [ -95.606003074686029, 30.012760240069273 ], [ -95.60574807457796, 30.012763240896746 ], [ -95.605025075073797, 30.012777240559597 ], [ -95.604967074417601, 30.012778240562163 ], [ -95.604144074857899, 30.012800240964758 ], [ -95.604113075168087, 30.012800240775757 ], [ -95.602774074489602, 30.012824240205219 ], [ -95.602290074681491, 30.012834240555243 ], [ -95.602128074475402, 30.012836240846941 ], [ -95.601916074404201, 30.012839240732653 ], [ -95.601775074169097, 30.012848240272653 ], [ -95.601647073841079, 30.012850240788936 ], [ -95.601502074319015, 30.012846240679178 ], [ -95.600772073328116, 30.012876240967604 ], [ -95.600555073420367, 30.012879240361858 ], [ -95.600228073469594, 30.012883240990639 ], [ -95.60010407400307, 30.012885241104708 ], [ -95.599949074097211, 30.012890240883035 ], [ -95.599593073650965, 30.012890240613089 ], [ -95.599292073611466, 30.012903241039183 ], [ -95.599079073442866, 30.012906240922774 ], [ -95.598821072931941, 30.012910241128537 ], [ -95.598675072791181, 30.012918240793478 ], [ -95.598333072789373, 30.012925240668157 ], [ -95.598138073515543, 30.012929240891186 ], [ -95.597887073555711, 30.01293524060905 ], [ -95.597773073198098, 30.012933240824033 ], [ -95.597521072693141, 30.012942240739893 ], [ -95.597396073287115, 30.012944241012004 ], [ -95.596834073168935, 30.012955240789459 ], [ -95.596457072475644, 30.012964241004539 ], [ -95.59637407234645, 30.012972241252903 ], [ -95.596284072377415, 30.012971240862122 ], [ -95.596226072734083, 30.012967240654945 ], [ -95.596187072533283, 30.012965240781206 ], [ -95.596056073095681, 30.012969241251096 ], [ -95.595863072964249, 30.012977241058451 ], [ -95.595154072435349, 30.01299424100263 ], [ -95.595038072204161, 30.012997240639059 ], [ -95.594686072422647, 30.013010240534236 ], [ -95.594644072468583, 30.013010240923204 ], [ -95.594361072137801, 30.013013240569499 ], [ -95.593619071535741, 30.013030240645836 ], [ -95.5933140722871, 30.013035240801138 ], [ -95.593261071619992, 30.013037240720291 ], [ -95.59304307203665, 30.013040240554968 ], [ -95.592865072051495, 30.0130392408633 ], [ -95.592474071634555, 30.013022240873152 ], [ -95.592211071253359, 30.013020241379266 ], [ -95.591810071159969, 30.013028240731316 ], [ -95.59124207099255, 30.013045241029275 ], [ -95.591197071503501, 30.013046240965895 ], [ -95.591124071017106, 30.013048240703704 ], [ -95.591001071025815, 30.013052240673893 ], [ -95.590887071659253, 30.013056241491228 ], [ -95.590781071181482, 30.013060241223958 ], [ -95.590536070898821, 30.013071241478603 ], [ -95.590030071182881, 30.013100240819536 ], [ -95.590275071515464, 30.013550241156462 ], [ -95.591973071753245, 30.016194241447334 ], [ -95.592683072324704, 30.017296242200668 ], [ -95.592820072024011, 30.017500242185786 ], [ -95.59319607206406, 30.018055241823021 ], [ -95.593948071860765, 30.019165241802437 ], [ -95.594050072638908, 30.019336242434534 ], [ -95.595106072461334, 30.021099242889168 ], [ -95.596763073647324, 30.023735242836686 ], [ -95.598117073378504, 30.025977243674834 ], [ -95.598483074160555, 30.026588243453546 ], [ -95.59908107401111, 30.027587243528924 ], [ -95.599170073643521, 30.027802243699703 ], [ -95.599187074038483, 30.027848243912825 ], [ -95.599431073791123, 30.028273243712118 ], [ -95.599579073857342, 30.028550243586526 ], [ -95.599905074235778, 30.029211243761328 ], [ -95.59995007421989, 30.02930624429553 ], [ -95.600240074978174, 30.029848243867967 ], [ -95.601007074565473, 30.031268244365467 ], [ -95.601672074683677, 30.032434244472764 ], [ -95.601861074982423, 30.0327662450071 ], [ -95.601962074541504, 30.032952244482168 ], [ -95.602210075019386, 30.033406244443842 ], [ -95.602241074758453, 30.033381244747588 ], [ -95.602411074806824, 30.033243244515511 ], [ -95.602455075341098, 30.033229245046702 ], [ -95.60250407508569, 30.03321224468808 ], [ -95.602517075107201, 30.033207244828411 ], [ -95.602534075023584, 30.033201245010829 ], [ -95.602693075419396, 30.033144244833796 ], [ -95.602797074837738, 30.033107244876781 ], [ -95.602825075704274, 30.033097245143409 ], [ -95.602918075252759, 30.033058244963001 ], [ -95.603016075332462, 30.033014244747942 ], [ -95.603118075010414, 30.032970244488222 ], [ -95.603197075020361, 30.03293324492121 ], [ -95.603351075554883, 30.032852244686516 ], [ -95.603498075802435, 30.032758245046413 ], [ -95.603566075588702, 30.032704244179605 ], [ -95.603837075696802, 30.03246824477727 ], [ -95.604326075343863, 30.032121244285044 ], [ -95.604552075581438, 30.031950244797855 ], [ -95.604632075719593, 30.03189924431587 ], [ -95.604700075611717, 30.031849244722434 ], [ -95.604754076065788, 30.031797244236767 ], [ -95.604811076107254, 30.031751244651449 ], [ -95.604887075587342, 30.031681244794751 ], [ -95.604908076234295, 30.031661244593163 ], [ -95.605040076084322, 30.031513243899841 ], [ -95.605148075549806, 30.031366244120527 ], [ -95.605192076034001, 30.03129324428259 ], [ -95.605239075520615, 30.031247244566497 ], [ -95.605329075782038, 30.031120244009202 ], [ -95.60546707584048, 30.030930244384415 ], [ -95.605547076143466, 30.030835243979421 ], [ -95.605598076065675, 30.030788244109015 ], [ -95.605645075486663, 30.030734244197038 ], [ -95.605750076164952, 30.030632244300516 ], [ -95.605870075778185, 30.030532244145967 ], [ -95.606065075767006, 30.030388244489831 ], [ -95.606348076407954, 30.030193243882383 ], [ -95.606619075924783, 30.03000624381923 ], [ -95.606721075899046, 30.02992524425806 ], [ -95.606776075707955, 30.029889243953786 ], [ -95.60683807606803, 30.029838244315474 ], [ -95.606881075685507, 30.029798244152964 ], [ -95.606948075879401, 30.029757243534728 ], [ -95.606996076105204, 30.029722244193977 ], [ -95.607050076697817, 30.029674243737169 ], [ -95.607359075873617, 30.029444243871929 ], [ -95.607453076178217, 30.029386244107677 ], [ -95.607521076336312, 30.029321243925359 ], [ -95.607603075823462, 30.029256243362894 ], [ -95.607700076655973, 30.02919724336553 ], [ -95.60802707592903, 30.028953243272579 ], [ -95.608120076375783, 30.028896243992111 ], [ -95.60859907606023, 30.028549243921589 ], [ -95.608664076824709, 30.028495243356986 ], [ -95.608838077033553, 30.028363243219726 ], [ -95.608805076964714, 30.028305243889122 ], [ -95.608653076794994, 30.02804324326943 ], [ -95.608528076525715, 30.027791243497109 ], [ -95.608417076919295, 30.027526243083837 ], [ -95.608325076486054, 30.027274242977018 ], [ -95.608256076278252, 30.027044243206177 ], [ -95.608251076072463, 30.027022243175548 ], [ -95.609718077181867, 30.026006242859992 ], [ -95.609911076364469, 30.025872243290532 ], [ -95.61056207647016, 30.025859242709114 ], [ -95.612602077770987, 30.025817243062022 ], [ -95.61710107895243, 30.025725242408551 ], [ -95.617129078183027, 30.025718242438828 ], [ -95.61715107862517, 30.025723243125636 ], [ -95.617918078972679, 30.025702242928354 ], [ -95.618141079125536, 30.025696243099095 ], [ -95.619311079188975, 30.025665242289207 ], [ -95.620001079751574, 30.025646242284814 ], [ -95.620959079870147, 30.025621242359929 ], [ -95.622665079762967, 30.02557524240526 ], [ -95.623612080214286, 30.025404242522018 ], [ -95.624408080138267, 30.02499124204196 ], [ -95.624970080254187, 30.024386242037011 ], [ -95.625008080172364, 30.024332242353605 ], [ -95.625277080996455, 30.023842242444633 ], [ -95.625505080660133, 30.023177242103188 ], [ -95.625524081026143, 30.022550241612212 ], [ -95.625481080898396, 30.021599241697412 ], [ -95.62562608043271, 30.021060241612187 ], [ -95.625778081046903, 30.020686241139121 ], [ -95.6258100804734, 30.019845241329993 ], [ -95.625779080138514, 30.018889241414499 ], [ -95.625887079981453, 30.018246241271033 ], [ -95.625892080088732, 30.0178512406797 ], [ -95.625894080157565, 30.017751240624168 ], [ -95.62588107997891, 30.016857240329415 ], [ -95.625872080086523, 30.016695240633247 ], [ -95.625880080031905, 30.016365240706456 ], [ -95.626299080988986, 30.016471240258614 ], [ -95.626699080828431, 30.01665824027658 ], [ -95.627578081317765, 30.017058240582092 ], [ -95.628948081168744, 30.017764240581567 ], [ -95.630515082134551, 30.018580240426211 ], [ -95.630706081987327, 30.018732240580356 ], [ -95.630896081507856, 30.018869240553858 ], [ -95.631180081453778, 30.01896824058694 ], [ -95.631388081922893, 30.018985241167883 ], [ -95.631527082359412, 30.018913241224773 ], [ -95.631565081540558, 30.018880240701588 ], [ -95.631659081898846, 30.018851240760306 ], [ -95.631742081887666, 30.018826241165829 ], [ -95.631805082344229, 30.018815241108022 ], [ -95.632399082087844, 30.018870240628253 ], [ -95.632986081895908, 30.018958240923954 ], [ -95.633214081984946, 30.019068241172345 ], [ -95.633353082857496, 30.019107240748909 ], [ -95.633391082094406, 30.019195241128717 ], [ -95.633498082852128, 30.019222240989794 ], [ -95.633567082832101, 30.019332241105346 ], [ -95.633946082985645, 30.019547240507507 ], [ -95.634092082870282, 30.019651240697854 ], [ -95.63433108240288, 30.019734240952104 ], [ -95.634571082553677, 30.019849240677562 ], [ -95.634755082729583, 30.019899240513116 ], [ -95.634900082377811, 30.019915240594226 ], [ -95.635361082928227, 30.019943241163769 ], [ -95.635816083229727, 30.019965240604627 ], [ -95.635942083513442, 30.019960241187349 ], [ -95.636593083323248, 30.019998241120135 ], [ -95.637098083664, 30.019982240483625 ], [ -95.638715083583975, 30.019999240412371 ], [ -95.638873084046494, 30.019994240991426 ], [ -95.639063084435449, 30.019966240379169 ], [ -95.639353083753946, 30.019977240926917 ], [ -95.639435084043058, 30.019966240523758 ], [ -95.639536084419035, 30.01992324049613 ], [ -95.639701084286415, 30.01991224097209 ], [ -95.639802083991981, 30.019917240840645 ], [ -95.639997084574162, 30.019950240460915 ], [ -95.640831084125935, 30.020253240799654 ], [ -95.640939084121541, 30.020308240730806 ], [ -95.641153084156556, 30.020473240960314 ], [ -95.641305084786168, 30.020605240526233 ], [ -95.642018084888889, 30.02117124117925 ], [ -95.642338085175155, 30.021378240643411 ], [ -95.642333084577828, 30.020810240429018 ], [ -95.642327084557294, 30.020554240852583 ], [ -95.642335084895393, 30.019939240387259 ], [ -95.642332085143963, 30.019588240633155 ], [ -95.642335084240813, 30.019249240955958 ], [ -95.642330085025449, 30.019020240125055 ], [ -95.64232008486232, 30.018913240896303 ], [ -95.642336084934072, 30.018822240755505 ], [ -95.642329084671871, 30.018729240707874 ], [ -95.642343085109843, 30.018289240370503 ], [ -95.642340084951698, 30.018052240664364 ], [ -95.642350084434199, 30.017857240106608 ], [ -95.642354084577946, 30.016906240168559 ], [ -95.642355084497893, 30.015740240069313 ], [ -95.642356084237676, 30.015386239549134 ], [ -95.642358084865918, 30.01430323976156 ], [ -95.64237808456835, 30.012414239265045 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 819, "Tract": "48201250305", "Area_SqMi": 0.91522562691665699, "total_2009": 160, "total_2010": 156, "total_2011": 210, "total_2012": 226, "total_2013": 271, "total_2014": 260, "total_2015": 270, "total_2016": 350, "total_2017": 307, "total_2018": 249, "total_2019": 270, "total_2020": 291, "age1": 99, "age2": 214, "age3": 93, "earn1": 133, "earn2": 176, "earn3": 97, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 41, "naics_s05": 0, "naics_s06": 0, "naics_s07": 149, "naics_s08": 2, "naics_s09": 0, "naics_s10": 13, "naics_s11": 5, "naics_s12": 21, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 30, "naics_s17": 3, "naics_s18": 38, "naics_s19": 98, "naics_s20": 0, "race1": 255, "race2": 99, "race3": 0, "race4": 41, "race5": 3, "race6": 8, "ethnicity1": 291, "ethnicity2": 115, "edu1": 68, "edu2": 87, "edu3": 97, "edu4": 55, "Shape_Length": 29340.1455674547, "Shape_Area": 25514924.054120854, "total_2021": 397, "total_2022": 406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.219170974224426, 29.972326245287562 ], [ -95.219221974117616, 29.971268245763138 ], [ -95.218674973592456, 29.971019245190082 ], [ -95.218685973945398, 29.968811244687938 ], [ -95.218715974122091, 29.962873244032064 ], [ -95.218386973439095, 29.962890243356028 ], [ -95.218085973357091, 29.962893243420904 ], [ -95.218099973873052, 29.963352243610373 ], [ -95.218114973176711, 29.963370244231928 ], [ -95.217218973004464, 29.963326244038264 ], [ -95.216286972763967, 29.963340243824419 ], [ -95.215355972497363, 29.96334024361601 ], [ -95.214448972664769, 29.963277243587779 ], [ -95.21391597213163, 29.963281243724172 ], [ -95.210356971518692, 29.96330624415657 ], [ -95.210362972026175, 29.96353424378194 ], [ -95.210366971834873, 29.964268244008082 ], [ -95.210370971135134, 29.964356244123248 ], [ -95.210378971126019, 29.96455824425842 ], [ -95.210402972078995, 29.964781244770219 ], [ -95.210455971898682, 29.965124244821009 ], [ -95.210650972245091, 29.966063244801962 ], [ -95.210777971446348, 29.966674244673467 ], [ -95.210876972083767, 29.96718024444181 ], [ -95.211037971685883, 29.967969244768888 ], [ -95.21119697175898, 29.968726245341767 ], [ -95.211237971705501, 29.968921245563447 ], [ -95.211361972078407, 29.969538245106602 ], [ -95.211516971895122, 29.970313245282902 ], [ -95.211684972322772, 29.971124245531332 ], [ -95.211831972807559, 29.971836245529765 ], [ -95.211951972195493, 29.97240524550508 ], [ -95.211972972058106, 29.972486245547589 ], [ -95.211985972672736, 29.972570245979821 ], [ -95.212075972642012, 29.973002246209823 ], [ -95.2121349721711, 29.973283245730503 ], [ -95.212159972954524, 29.973371245750265 ], [ -95.21227597222844, 29.973952246589182 ], [ -95.212320972088747, 29.974259246143784 ], [ -95.212347972664247, 29.974565246004229 ], [ -95.212356972567264, 29.974887246550551 ], [ -95.212352972981833, 29.976273246688923 ], [ -95.21234897296344, 29.977712246667693 ], [ -95.21234397269248, 29.977733247346489 ], [ -95.212349972623258, 29.977751247397382 ], [ -95.212347972684015, 29.97783524694934 ], [ -95.21234397293982, 29.977958246569731 ], [ -95.210715972766465, 29.977957246948804 ], [ -95.208020971566455, 29.97795624670043 ], [ -95.206231971564563, 29.977955247123841 ], [ -95.205520971449673, 29.977950247237477 ], [ -95.205351971350055, 29.977950247672773 ], [ -95.204565970635286, 29.977953247428189 ], [ -95.204072970185607, 29.97795024718674 ], [ -95.203904970258662, 29.977940247487663 ], [ -95.203593970732371, 29.977945247140298 ], [ -95.203015969917146, 29.977972247644889 ], [ -95.202794970689695, 29.977983247329011 ], [ -95.202183970008065, 29.978036246986761 ], [ -95.201673969768322, 29.978101247244211 ], [ -95.201176969449335, 29.978184247429876 ], [ -95.200685969293744, 29.978285247332447 ], [ -95.200219969814441, 29.978395247299762 ], [ -95.199177969424952, 29.978675247523977 ], [ -95.198666968791002, 29.978810247234858 ], [ -95.198241969518321, 29.978928247624257 ], [ -95.198000968732558, 29.978989247625712 ], [ -95.197619968780103, 29.979071247688243 ], [ -95.19747796860284, 29.979097247996606 ], [ -95.197344968879278, 29.979128247335211 ], [ -95.197085969160824, 29.979178248187587 ], [ -95.196852969244389, 29.979214247367743 ], [ -95.196618968571883, 29.979250247591416 ], [ -95.196203968251368, 29.979300247707531 ], [ -95.19605696813521, 29.979318248265173 ], [ -95.195971968729665, 29.97932524787781 ], [ -95.195809969026342, 29.979338247750835 ], [ -95.19573796807525, 29.979610248092744 ], [ -95.195801969088166, 29.980209247842449 ], [ -95.195908968802854, 29.980660248043591 ], [ -95.195945968992248, 29.980754247997858 ], [ -95.195978968641612, 29.980836248564376 ], [ -95.196085968478116, 29.981056248626345 ], [ -95.196275969177861, 29.981595247879394 ], [ -95.196388969009803, 29.981875248544391 ], [ -95.196433968296191, 29.982040248633162 ], [ -95.196717968577858, 29.98276624850984 ], [ -95.196862968762247, 29.983195248316278 ], [ -95.197007968883327, 29.983524248288539 ], [ -95.197128968755592, 29.983898248591032 ], [ -95.19719796857747, 29.984063249086848 ], [ -95.197267969291659, 29.984283248964061 ], [ -95.197444969676482, 29.984751249132955 ], [ -95.197488968824985, 29.984899248769903 ], [ -95.19756496954399, 29.985075249160122 ], [ -95.197785969120005, 29.985702248738022 ], [ -95.19789896917311, 29.986021248952937 ], [ -95.198025968954653, 29.986345248835605 ], [ -95.198075969601405, 29.986439249470383 ], [ -95.198143969554465, 29.986620249189009 ], [ -95.199418969763968, 29.986197248770072 ], [ -95.201395970684288, 29.985540249342829 ], [ -95.202189970240411, 29.985273249192868 ], [ -95.203137970692666, 29.984962248384221 ], [ -95.203534971036603, 29.984833248947105 ], [ -95.204331971437313, 29.984575248360219 ], [ -95.20577297080952, 29.98409724820252 ], [ -95.209782971869373, 29.982755247788294 ], [ -95.211952972608188, 29.982010247700167 ], [ -95.212392973316199, 29.981853247681311 ], [ -95.213010973198905, 29.981617247956628 ], [ -95.213595972902866, 29.981375247570455 ], [ -95.214068973295412, 29.98116524787973 ], [ -95.214242973129302, 29.981080247309151 ], [ -95.214251973270379, 29.981075247652402 ], [ -95.214392973595466, 29.981008247723121 ], [ -95.214721973870937, 29.980838247079117 ], [ -95.215054973499377, 29.980656247625102 ], [ -95.215228973374636, 29.980569247362212 ], [ -95.215724973369859, 29.980299247103016 ], [ -95.215879974167748, 29.980205247712199 ], [ -95.216041973612903, 29.980120247012074 ], [ -95.217440974372764, 29.979343246941664 ], [ -95.217571974482667, 29.979272246809405 ], [ -95.217763974371735, 29.979168247217828 ], [ -95.218766974536706, 29.978634246546839 ], [ -95.219069973983721, 29.978471247172561 ], [ -95.219068974681008, 29.978361246605413 ], [ -95.219066974469584, 29.977058246739386 ], [ -95.219170974224426, 29.972326245287562 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 820, "Tract": "48201250901", "Area_SqMi": 1.7707198874075953, "total_2009": 905, "total_2010": 959, "total_2011": 1043, "total_2012": 1093, "total_2013": 1204, "total_2014": 1150, "total_2015": 1312, "total_2016": 1348, "total_2017": 1281, "total_2018": 955, "total_2019": 1005, "total_2020": 1109, "age1": 528, "age2": 585, "age3": 203, "earn1": 409, "earn2": 487, "earn3": 420, "naics_s01": 0, "naics_s02": 50, "naics_s03": 1, "naics_s04": 30, "naics_s05": 0, "naics_s06": 10, "naics_s07": 85, "naics_s08": 60, "naics_s09": 0, "naics_s10": 92, "naics_s11": 14, "naics_s12": 57, "naics_s13": 0, "naics_s14": 143, "naics_s15": 0, "naics_s16": 136, "naics_s17": 0, "naics_s18": 499, "naics_s19": 139, "naics_s20": 0, "race1": 1000, "race2": 211, "race3": 8, "race4": 64, "race5": 5, "race6": 28, "ethnicity1": 958, "ethnicity2": 358, "edu1": 154, "edu2": 233, "edu3": 210, "edu4": 191, "Shape_Length": 33610.589022543274, "Shape_Area": 49364639.843548022, "total_2021": 1222, "total_2022": 1316 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.184218968306126, 30.050029262513544 ], [ -95.183533968307032, 30.048582262739782 ], [ -95.183466968376223, 30.048462262816226 ], [ -95.1831609685795, 30.047994262464755 ], [ -95.182512967706742, 30.047026261870482 ], [ -95.182477967723287, 30.0469822618495 ], [ -95.181913968441521, 30.046266262410438 ], [ -95.181568968073435, 30.045856261826575 ], [ -95.181359968089708, 30.045631261956377 ], [ -95.181244967693104, 30.04551426174428 ], [ -95.179833966897164, 30.044132261876719 ], [ -95.178775966898314, 30.043141261178171 ], [ -95.178746967084422, 30.043113261906804 ], [ -95.17859096671458, 30.042960261596189 ], [ -95.178437966539221, 30.042810261002181 ], [ -95.177936967242829, 30.042320261154927 ], [ -95.177120966158697, 30.041507261503089 ], [ -95.176639965970551, 30.040793261171739 ], [ -95.17623596621884, 30.04001426069258 ], [ -95.176177965862138, 30.039902260648805 ], [ -95.17614096583705, 30.039819260426658 ], [ -95.175624965814208, 30.038652260697056 ], [ -95.175086965825372, 30.037642260602961 ], [ -95.17491496588616, 30.037338260444596 ], [ -95.174645965797509, 30.036863260180056 ], [ -95.174449965920104, 30.036368260112592 ], [ -95.174298965882187, 30.035785260412272 ], [ -95.174283965987414, 30.035722260007141 ], [ -95.174146965774966, 30.035138260375415 ], [ -95.174103965833922, 30.034424259663538 ], [ -95.17412396588027, 30.034067259363823 ], [ -95.174129965697986, 30.033951260181123 ], [ -95.174205965802742, 30.033637260040059 ], [ -95.174361965895997, 30.032886259415893 ], [ -95.174396965974722, 30.032712259348319 ], [ -95.174439965443966, 30.032509259691832 ], [ -95.174611965625786, 30.032037259332469 ], [ -95.174717965522504, 30.031751259658986 ], [ -95.174817965601449, 30.031530259367155 ], [ -95.175387965645768, 30.030271259411847 ], [ -95.175473965554261, 30.030080259039291 ], [ -95.175579965228181, 30.029835259036986 ], [ -95.175782965289741, 30.029311258463824 ], [ -95.175885965743404, 30.029044258627479 ], [ -95.176295965961643, 30.027986258597551 ], [ -95.176504965730331, 30.027419258048891 ], [ -95.176537965960932, 30.027329258353173 ], [ -95.174272965542443, 30.02892325842534 ], [ -95.172451964710675, 30.029462259064328 ], [ -95.168618963846882, 30.030441259560828 ], [ -95.16826296379412, 30.030532259574017 ], [ -95.165846962903686, 30.031522259654928 ], [ -95.160559962409494, 30.034318259949071 ], [ -95.15620696061022, 30.036619261278975 ], [ -95.154777960204314, 30.035553260591236 ], [ -95.15398696002211, 30.034962260920807 ], [ -95.15494396093402, 30.040853261847946 ], [ -95.155241960728048, 30.041645261782467 ], [ -95.155340961455622, 30.041844261844879 ], [ -95.155353960877378, 30.042066261877778 ], [ -95.15551296122706, 30.042294262444571 ], [ -95.155704961429549, 30.042492261780161 ], [ -95.155991961097229, 30.04271026215185 ], [ -95.156303961300438, 30.04293526204264 ], [ -95.157057961132907, 30.043443261881919 ], [ -95.157103961849629, 30.043514262745013 ], [ -95.157151961907985, 30.043549262258548 ], [ -95.157292961853443, 30.043772262248183 ], [ -95.15750196130135, 30.044130262270112 ], [ -95.157526961808415, 30.044375262896189 ], [ -95.157511961606104, 30.044598262480974 ], [ -95.157437962186705, 30.044846262281645 ], [ -95.157416961446387, 30.044961262296834 ], [ -95.157625961347023, 30.045174262545345 ], [ -95.157718961928296, 30.045256262507788 ], [ -95.157851961609452, 30.045568262925585 ], [ -95.157921961943742, 30.045687263035468 ], [ -95.158288961496012, 30.045979263103668 ], [ -95.158945962050183, 30.046545262978015 ], [ -95.159052961895966, 30.046600262584946 ], [ -95.159267962130897, 30.046831263007892 ], [ -95.159400961772775, 30.046881262859035 ], [ -95.159520962731875, 30.046892262843585 ], [ -95.159703962533399, 30.046831262820003 ], [ -95.159741961901219, 30.046831262887313 ], [ -95.159773962647208, 30.046848263235059 ], [ -95.159911962227667, 30.047101262578849 ], [ -95.160082962816162, 30.047288262689289 ], [ -95.160171962829651, 30.047343263312349 ], [ -95.160297962693264, 30.047436263188313 ], [ -95.160430962176946, 30.047596263259273 ], [ -95.16058896228401, 30.047827262861315 ], [ -95.160657962330319, 30.047898263163436 ], [ -95.160739962329558, 30.04793126297001 ], [ -95.160923962792282, 30.047882263301485 ], [ -95.161289962591411, 30.047843262668803 ], [ -95.161510963304849, 30.04787126312274 ], [ -95.161725963062793, 30.047915263389061 ], [ -95.161826962596564, 30.047970262597676 ], [ -95.161871962480319, 30.048008263383228 ], [ -95.161984963093843, 30.048223263021246 ], [ -95.162085962946364, 30.048465263264465 ], [ -95.162111963227076, 30.048553263373151 ], [ -95.162111962785701, 30.048630263386094 ], [ -95.162104963382887, 30.048690262799781 ], [ -95.16206696327086, 30.048839262854667 ], [ -95.161915963014408, 30.049141263298882 ], [ -95.161440963097618, 30.050757263497164 ], [ -95.161394963281111, 30.050883264083815 ], [ -95.160997962683837, 30.051983263625431 ], [ -95.160744963370746, 30.052819264233623 ], [ -95.160599962799921, 30.053270264014344 ], [ -95.160611962494187, 30.053836264583794 ], [ -95.160700963200071, 30.054056264749551 ], [ -95.160921962718476, 30.054326263932257 ], [ -95.161108963396245, 30.054223264725497 ], [ -95.161192962760666, 30.05417726415882 ], [ -95.161722963611027, 30.05401626471561 ], [ -95.162208963741037, 30.053857264288183 ], [ -95.162802963164211, 30.053740264618103 ], [ -95.163050963192504, 30.053681263852603 ], [ -95.163719963268022, 30.053611264073844 ], [ -95.164195963923873, 30.053558264062382 ], [ -95.164837963647287, 30.053559264403798 ], [ -95.165579964084316, 30.053546263742721 ], [ -95.166373964214543, 30.053560264234854 ], [ -95.167168964562691, 30.05356826440357 ], [ -95.16800696498079, 30.053553263906018 ], [ -95.168317964798391, 30.053484264248802 ], [ -95.16872596480637, 30.05342026418715 ], [ -95.169471965021586, 30.053273264152189 ], [ -95.170033965080165, 30.053121263632018 ], [ -95.170671965013739, 30.052894263303344 ], [ -95.173596966361814, 30.051573262954108 ], [ -95.173779966228338, 30.051478263496183 ], [ -95.174835966677833, 30.051062263359178 ], [ -95.175995966255599, 30.050806262903155 ], [ -95.176674966579412, 30.050769262898672 ], [ -95.177781967364297, 30.050708263277407 ], [ -95.178117966971811, 30.050743262695114 ], [ -95.179100967031445, 30.050905262750035 ], [ -95.179770967553793, 30.050952263289851 ], [ -95.181242967613642, 30.05091926329272 ], [ -95.182111968678953, 30.050767263168851 ], [ -95.182273968132961, 30.050738263347771 ], [ -95.184218968306126, 30.050029262513544 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 821, "Tract": "48201241104", "Area_SqMi": 1.8226402103246682, "total_2009": 288, "total_2010": 396, "total_2011": 184, "total_2012": 189, "total_2013": 193, "total_2014": 196, "total_2015": 207, "total_2016": 211, "total_2017": 237, "total_2018": 204, "total_2019": 289, "total_2020": 264, "age1": 77, "age2": 116, "age3": 55, "earn1": 54, "earn2": 133, "earn3": 61, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 1, "naics_s07": 125, "naics_s08": 3, "naics_s09": 1, "naics_s10": 15, "naics_s11": 11, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 50, "naics_s17": 0, "naics_s18": 22, "naics_s19": 4, "naics_s20": 0, "race1": 173, "race2": 50, "race3": 1, "race4": 21, "race5": 0, "race6": 3, "ethnicity1": 160, "ethnicity2": 88, "edu1": 46, "edu2": 52, "edu3": 47, "edu4": 26, "Shape_Length": 36800.831315139156, "Shape_Area": 50812089.583955236, "total_2021": 274, "total_2022": 248 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.381458020271836, 30.060808257694642 ], [ -95.381599020355338, 30.060729257813612 ], [ -95.379615019401541, 30.057634257266418 ], [ -95.380265019781731, 30.05724725727184 ], [ -95.376762018341978, 30.052661256498446 ], [ -95.375482017844945, 30.051104256034755 ], [ -95.374536017461409, 30.049665256044484 ], [ -95.374353017926268, 30.049752255925331 ], [ -95.374172017159154, 30.049845255689991 ], [ -95.373997017678946, 30.049947256110361 ], [ -95.373710017657132, 30.050110256041773 ], [ -95.373626017373752, 30.050149256287881 ], [ -95.373474017495269, 30.050231256308628 ], [ -95.373410017180731, 30.050272256498353 ], [ -95.373242017484088, 30.050368255858245 ], [ -95.373030017274786, 30.050474255907655 ], [ -95.372944017592673, 30.0505282559186 ], [ -95.372741017306367, 30.050636256648591 ], [ -95.37264201729171, 30.050693255964614 ], [ -95.372428017362779, 30.050802256347687 ], [ -95.372137016616222, 30.050963255910627 ], [ -95.371670017251731, 30.051212256109658 ], [ -95.37152301677375, 30.051279256285166 ], [ -95.371370016584876, 30.051332256844091 ], [ -95.371161017120968, 30.051381256735013 ], [ -95.37098201696493, 30.051415256786139 ], [ -95.371092016589685, 30.051840256664445 ], [ -95.370965016411446, 30.05185525618414 ], [ -95.370782017161702, 30.051888256248649 ], [ -95.369837016997806, 30.052088256829631 ], [ -95.369086016824895, 30.052242256426158 ], [ -95.368961016496669, 30.052278257006325 ], [ -95.368918016076734, 30.05229125670246 ], [ -95.36876101643432, 30.052356257122362 ], [ -95.368611015868581, 30.052428256456587 ], [ -95.368044016441786, 30.052739257294135 ], [ -95.367835015572339, 30.052859257219698 ], [ -95.367518016285345, 30.053032257222881 ], [ -95.367065016334124, 30.053289256918919 ], [ -95.366980016310322, 30.053168257120145 ], [ -95.36657601562969, 30.052644256632696 ], [ -95.366275015130427, 30.052264256713876 ], [ -95.366122015461443, 30.05204525661971 ], [ -95.366087015347873, 30.052007256547025 ], [ -95.365989015949367, 30.051871256504345 ], [ -95.365593015316591, 30.051365256946674 ], [ -95.365431014818157, 30.051153256626794 ], [ -95.365209015403067, 30.05087925689352 ], [ -95.365160015310849, 30.050849256563851 ], [ -95.365138015632951, 30.050787256154713 ], [ -95.365120015362024, 30.050759256783678 ], [ -95.365089015092266, 30.050711256575163 ], [ -95.365054014852532, 30.050684256863011 ], [ -95.365031015679207, 30.050632256184208 ], [ -95.36474001546506, 30.050255256638394 ], [ -95.364685015347121, 30.050204256791655 ], [ -95.364638015533089, 30.050124256733842 ], [ -95.364163015330291, 30.049487256155341 ], [ -95.364016014402551, 30.049306256295409 ], [ -95.363674014726101, 30.048846256302244 ], [ -95.363561015089886, 30.048704255869133 ], [ -95.363519015111834, 30.048642256362694 ], [ -95.363177014318921, 30.048200255970201 ], [ -95.362681014641254, 30.047557256381424 ], [ -95.362401014106126, 30.047204255868131 ], [ -95.362200014024907, 30.046928256293583 ], [ -95.361776013743551, 30.046361256107982 ], [ -95.361652013984354, 30.046169256057556 ], [ -95.361557014124401, 30.046043255503331 ], [ -95.361512013742839, 30.045992255946725 ], [ -95.361146013602749, 30.04553925605714 ], [ -95.361101013865664, 30.045469256040324 ], [ -95.36104301377668, 30.045393255591119 ], [ -95.360926013426251, 30.045466255545016 ], [ -95.360707013914734, 30.045620255761445 ], [ -95.360611013861003, 30.045657255927686 ], [ -95.360441013624992, 30.045705255414351 ], [ -95.360294013762186, 30.045708255572844 ], [ -95.360256013737001, 30.045704255947566 ], [ -95.360195013288177, 30.045698255996324 ], [ -95.360105013257098, 30.045681255982494 ], [ -95.360011013318328, 30.04565725542226 ], [ -95.359874013266705, 30.045602255973385 ], [ -95.359670013434069, 30.045531255491191 ], [ -95.359650013862094, 30.045524255718512 ], [ -95.358879013297539, 30.045221255420024 ], [ -95.358453013018078, 30.045049255893719 ], [ -95.358298012973975, 30.044974255808693 ], [ -95.358244013095288, 30.044936255744599 ], [ -95.358192013039911, 30.044891255241023 ], [ -95.358092013081304, 30.044788255221679 ], [ -95.357045012476775, 30.043355255679266 ], [ -95.356963013102501, 30.043251255209757 ], [ -95.356476012635682, 30.042653254765817 ], [ -95.356198012303409, 30.042274255237025 ], [ -95.355617012259216, 30.041480255168672 ], [ -95.355063012697926, 30.04071725459676 ], [ -95.355011012595668, 30.040634254635698 ], [ -95.354996011684591, 30.040610254979033 ], [ -95.354963012048856, 30.040545254423261 ], [ -95.35474201247122, 30.040668254693458 ], [ -95.354185012475725, 30.040969255364391 ], [ -95.353892012241786, 30.041136255159589 ], [ -95.35361101158864, 30.041289254968245 ], [ -95.353312012136769, 30.041456255009667 ], [ -95.353181011862375, 30.041525255368963 ], [ -95.353077012106738, 30.041580255434521 ], [ -95.352443011321697, 30.041935255152488 ], [ -95.352304011306828, 30.042004255056305 ], [ -95.351911011466314, 30.042224255599866 ], [ -95.351651011533619, 30.042363255563572 ], [ -95.351272011808462, 30.0425732555202 ], [ -95.351162011557108, 30.042640255395646 ], [ -95.351042011059633, 30.042692255196553 ], [ -95.35072701161144, 30.042877255042804 ], [ -95.350630011652328, 30.042939255186461 ], [ -95.350528010994736, 30.042991255063757 ], [ -95.350419011496939, 30.043057255281823 ], [ -95.350327011014045, 30.043108255757843 ], [ -95.350274010628027, 30.043137255180742 ], [ -95.350202011116323, 30.043172255250422 ], [ -95.350130011500553, 30.043219255193669 ], [ -95.349894010957726, 30.043349255916233 ], [ -95.349834011343873, 30.043377255430588 ], [ -95.349803011422878, 30.04339125554052 ], [ -95.349652011169809, 30.043481255871221 ], [ -95.349625011373476, 30.04349725552488 ], [ -95.349192010797353, 30.04373025562645 ], [ -95.348454010987268, 30.04414125579849 ], [ -95.348375010604073, 30.044189256009794 ], [ -95.348260010318342, 30.044251255455915 ], [ -95.348027010746591, 30.044387255512394 ], [ -95.347921010192664, 30.044432256200981 ], [ -95.347796011010431, 30.044516255796438 ], [ -95.34696801028025, 30.04496225576322 ], [ -95.34652001055062, 30.045215256287523 ], [ -95.346393009859568, 30.045288256308265 ], [ -95.346520010093073, 30.045550256562873 ], [ -95.346802009870117, 30.046038256222541 ], [ -95.347171010365528, 30.046560256625959 ], [ -95.347212010269018, 30.046615256489154 ], [ -95.347495010650945, 30.046988256637317 ], [ -95.348234010402876, 30.047917256693424 ], [ -95.349067011054885, 30.048896256575823 ], [ -95.349192010800067, 30.049066256397683 ], [ -95.349208011104508, 30.049086256438212 ], [ -95.34991301103986, 30.049956256885963 ], [ -95.350616011151686, 30.050826257391758 ], [ -95.350657011671558, 30.050879256809438 ], [ -95.351073012048815, 30.051417257327458 ], [ -95.351195012149176, 30.051546257504452 ], [ -95.351476011896821, 30.051843257199835 ], [ -95.351595011959674, 30.05194525772011 ], [ -95.351865011602101, 30.052178257026927 ], [ -95.352294011928805, 30.052604257733933 ], [ -95.352343011958951, 30.052670256991728 ], [ -95.352885011770638, 30.053408257382785 ], [ -95.352987012061362, 30.053597257420648 ], [ -95.353226012719105, 30.054085258038555 ], [ -95.353607012592832, 30.055126258169469 ], [ -95.353931012242953, 30.055783257727082 ], [ -95.353988012818604, 30.055879257632032 ], [ -95.3542740126328, 30.056291257857939 ], [ -95.354647012962914, 30.056714258465831 ], [ -95.354777013071882, 30.056867258498816 ], [ -95.355084013455496, 30.057162258567065 ], [ -95.355425013475326, 30.057482258035684 ], [ -95.356172013126312, 30.058137258140693 ], [ -95.356725013558062, 30.058630258060248 ], [ -95.35707701370157, 30.058971258101174 ], [ -95.357680013533283, 30.059512258816063 ], [ -95.357843013840991, 30.059658258542502 ], [ -95.358854014068527, 30.060522258336761 ], [ -95.359534014363803, 30.061048259095607 ], [ -95.359755014584479, 30.061185258936714 ], [ -95.360228014816627, 30.061428259351931 ], [ -95.360763014995413, 30.061665258535974 ], [ -95.361562015286211, 30.061915259239242 ], [ -95.362118014850424, 30.062041258886467 ], [ -95.362835015404201, 30.062178258831747 ], [ -95.363072015299608, 30.062229258586903 ], [ -95.363317015568825, 30.062282258785086 ], [ -95.36371901503307, 30.062383258649916 ], [ -95.363892015175253, 30.062427258894598 ], [ -95.364394015093112, 30.062594258920665 ], [ -95.364823016194833, 30.062790259196927 ], [ -95.365221015626162, 30.062997258787963 ], [ -95.365420016131694, 30.063100259466196 ], [ -95.365990016077973, 30.063497259326315 ], [ -95.366422015658571, 30.063863259108079 ], [ -95.367254016937466, 30.064686259010223 ], [ -95.367275016484896, 30.064708259170466 ], [ -95.367903016455742, 30.06535525930471 ], [ -95.368250017077443, 30.065707259172559 ], [ -95.368531016929424, 30.065937259811488 ], [ -95.369137017133866, 30.066557259636507 ], [ -95.369794016684821, 30.067190259856979 ], [ -95.369956017167411, 30.067350259847409 ], [ -95.370975017167169, 30.06835326004499 ], [ -95.371017017695721, 30.068396259942649 ], [ -95.371278017434705, 30.068664259630705 ], [ -95.371743018185029, 30.069104259807521 ], [ -95.372139017509525, 30.069456260500377 ], [ -95.372340017615286, 30.069611259913103 ], [ -95.372552017674067, 30.069748259769927 ], [ -95.372889018116126, 30.069956260415989 ], [ -95.373188017953694, 30.070116260386445 ], [ -95.373536018199175, 30.070292260212334 ], [ -95.374048018889184, 30.070495260126439 ], [ -95.374392018886937, 30.070597260552432 ], [ -95.37485001888777, 30.070722260729109 ], [ -95.375380018865783, 30.070814260414362 ], [ -95.37568801903825, 30.070852260021411 ], [ -95.376049018776584, 30.07088026033238 ], [ -95.376360019203958, 30.070889260180916 ], [ -95.376671019002103, 30.070885260437755 ], [ -95.376981019113103, 30.070867260302098 ], [ -95.377290019064432, 30.070836259821842 ], [ -95.377597019730175, 30.070791260010576 ], [ -95.377901018949458, 30.070734260155422 ], [ -95.378195019695909, 30.07066426033586 ], [ -95.379052019885577, 30.070375260141141 ], [ -95.379052019750105, 30.070315259828917 ], [ -95.379052019694981, 30.070242259766079 ], [ -95.379052020021959, 30.070206259768604 ], [ -95.379033019675134, 30.070063259712352 ], [ -95.378958020075899, 30.069926259600766 ], [ -95.378521019722186, 30.069351259493292 ], [ -95.378294019572166, 30.069051260208756 ], [ -95.377859019001178, 30.06843025943969 ], [ -95.377682019167381, 30.068210259250435 ], [ -95.377581019632686, 30.068039259773474 ], [ -95.376077019111236, 30.065905259334734 ], [ -95.37605901875672, 30.065879259134924 ], [ -95.376008018919251, 30.065806259371723 ], [ -95.375533018669699, 30.065147259379611 ], [ -95.375367018513018, 30.064800259310545 ], [ -95.375352018074111, 30.064709258804399 ], [ -95.375345018177981, 30.064663258927599 ], [ -95.37536401801043, 30.064547258759486 ], [ -95.37542101897948, 30.064415258980361 ], [ -95.375516018185436, 30.064289258837515 ], [ -95.375623018399992, 30.064195259023784 ], [ -95.37602801878559, 30.063954258862825 ], [ -95.376709018829345, 30.063586258518132 ], [ -95.376800018548408, 30.063356258743315 ], [ -95.377466018976619, 30.062994258606945 ], [ -95.380336019675241, 30.061432258369308 ], [ -95.381252019859502, 30.060922258413548 ], [ -95.381458020271836, 30.060808257694642 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 822, "Tract": "48201520501", "Area_SqMi": 1.7838223597435825, "total_2009": 9946, "total_2010": 9562, "total_2011": 9688, "total_2012": 9851, "total_2013": 9919, "total_2014": 10937, "total_2015": 11188, "total_2016": 10992, "total_2017": 10795, "total_2018": 11588, "total_2019": 11687, "total_2020": 10555, "age1": 1669, "age2": 4901, "age3": 2208, "earn1": 948, "earn2": 2293, "earn3": 5537, "naics_s01": 2, "naics_s02": 33, "naics_s03": 2, "naics_s04": 2239, "naics_s05": 847, "naics_s06": 1729, "naics_s07": 518, "naics_s08": 593, "naics_s09": 254, "naics_s10": 129, "naics_s11": 170, "naics_s12": 528, "naics_s13": 135, "naics_s14": 714, "naics_s15": 91, "naics_s16": 81, "naics_s17": 74, "naics_s18": 452, "naics_s19": 187, "naics_s20": 0, "race1": 6640, "race2": 1474, "race3": 71, "race4": 450, "race5": 15, "race6": 128, "ethnicity1": 5542, "ethnicity2": 3236, "edu1": 1695, "edu2": 1888, "edu3": 2154, "edu4": 1372, "Shape_Length": 44003.223616387302, "Shape_Area": 49729914.347169824, "total_2021": 9963, "total_2022": 8778 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.493214038178422, 29.826268206151827 ], [ -95.493688037523768, 29.825767205944604 ], [ -95.492442037337597, 29.824897206107572 ], [ -95.491753036983326, 29.824394206089025 ], [ -95.491183037425373, 29.824000205639926 ], [ -95.491103037717224, 29.823944205777963 ], [ -95.491077036949562, 29.823926205855262 ], [ -95.49076903689172, 29.823705206064261 ], [ -95.490699037049467, 29.823654205519592 ], [ -95.490591037122087, 29.823573205516492 ], [ -95.488729036190563, 29.822259205585283 ], [ -95.487027036113545, 29.821058205811855 ], [ -95.485266035148797, 29.819781205066924 ], [ -95.484374034890394, 29.819137205590597 ], [ -95.484189035690449, 29.819003205355145 ], [ -95.48327303510996, 29.818341204911643 ], [ -95.481309034355576, 29.816937205105546 ], [ -95.47954703390306, 29.815646204500098 ], [ -95.476398032481967, 29.813360204680837 ], [ -95.474407032526187, 29.81191620401323 ], [ -95.47368903248946, 29.811397204010529 ], [ -95.47322603198144, 29.811063203595296 ], [ -95.472790032274503, 29.8107482036277 ], [ -95.471695031948741, 29.809957203607819 ], [ -95.471150031836487, 29.809564203366278 ], [ -95.470675031029145, 29.809221203376353 ], [ -95.469353031335402, 29.808255203730809 ], [ -95.468977030943321, 29.807992203282723 ], [ -95.468260031056829, 29.80744120293852 ], [ -95.466965030484843, 29.806622203173308 ], [ -95.463949028863468, 29.804279203211848 ], [ -95.463427028922482, 29.803890202415896 ], [ -95.462539029009562, 29.803239202648893 ], [ -95.46229002923846, 29.803067202545272 ], [ -95.461484028933214, 29.802500202829343 ], [ -95.461059028651619, 29.802204202765541 ], [ -95.460058028453645, 29.801483202407816 ], [ -95.459534028294428, 29.801100202767163 ], [ -95.459379027858944, 29.80098620234093 ], [ -95.458633028003831, 29.800478201888257 ], [ -95.455794026985274, 29.798326202099627 ], [ -95.453894026313236, 29.796916201908218 ], [ -95.453128026448155, 29.796378201910446 ], [ -95.452655025786612, 29.796035201810017 ], [ -95.452280025807312, 29.795762201796286 ], [ -95.452054026027866, 29.795595201291494 ], [ -95.451944025958213, 29.795514201615045 ], [ -95.451906026332338, 29.795486201499244 ], [ -95.451641025442143, 29.795291201593265 ], [ -95.451270026111914, 29.795017201430884 ], [ -95.451004025462055, 29.794821201565309 ], [ -95.450897025487308, 29.794741201090403 ], [ -95.450805026011807, 29.794674201247204 ], [ -95.450660025682325, 29.794567201114166 ], [ -95.450415025436783, 29.795348201502602 ], [ -95.449699025220639, 29.798033202248391 ], [ -95.44945902542581, 29.799064202008694 ], [ -95.449308025335966, 29.800042202535462 ], [ -95.449196025242699, 29.800802202698065 ], [ -95.44913802542905, 29.801115202935176 ], [ -95.449088025952619, 29.801543202500699 ], [ -95.449167024977356, 29.801541202517459 ], [ -95.44925802562723, 29.801540202776369 ], [ -95.449874025742758, 29.80153020316347 ], [ -95.449916025699707, 29.801529202369935 ], [ -95.450025026056778, 29.801525202734169 ], [ -95.450050025899671, 29.801524203020744 ], [ -95.450198025958613, 29.8015222027419 ], [ -95.450264025676205, 29.801522202933516 ], [ -95.450497025396942, 29.801521202946812 ], [ -95.450675026345039, 29.801524202800223 ], [ -95.450744025722315, 29.801525202867026 ], [ -95.450772025874429, 29.801524203024925 ], [ -95.45086202567775, 29.801523202776451 ], [ -95.450898025550813, 29.801594203201073 ], [ -95.450956025440703, 29.801738202789842 ], [ -95.451021025546623, 29.801900203006202 ], [ -95.45111502626655, 29.802113202649284 ], [ -95.451333025779704, 29.802573202860007 ], [ -95.451514025983542, 29.802899202642113 ], [ -95.451845026585659, 29.803380203240824 ], [ -95.452188025964219, 29.803833202934165 ], [ -95.452451025938416, 29.804146203414096 ], [ -95.452827026666839, 29.804537203279999 ], [ -95.453487026442275, 29.805139203756859 ], [ -95.455666027851933, 29.807108204022907 ], [ -95.455832027502154, 29.807263203464689 ], [ -95.455921027631504, 29.807347204084213 ], [ -95.45602002767977, 29.807437203425568 ], [ -95.456781028024565, 29.808145204060146 ], [ -95.458504027736694, 29.809809204410826 ], [ -95.458765027812078, 29.810049204597004 ], [ -95.45897802813937, 29.810246204122919 ], [ -95.459087028831533, 29.810347204641111 ], [ -95.45925602842965, 29.810503204754486 ], [ -95.462111028928717, 29.813135204693623 ], [ -95.465538030531505, 29.816348204898823 ], [ -95.468587031712261, 29.819165205949563 ], [ -95.4688860311296, 29.819443205727801 ], [ -95.469076031842661, 29.819619205991923 ], [ -95.470030031304603, 29.8205062059555 ], [ -95.473177032966589, 29.823454206498315 ], [ -95.473311032716836, 29.823579206401511 ], [ -95.473604032348931, 29.823851206750476 ], [ -95.476160033458882, 29.826225207120231 ], [ -95.476287033939002, 29.826343206805461 ], [ -95.476688033617464, 29.826716207257562 ], [ -95.476808033973327, 29.826609206851003 ], [ -95.476901033446282, 29.826553207321826 ], [ -95.477009033276346, 29.826488207339043 ], [ -95.477161033278733, 29.826422206915616 ], [ -95.477501033358465, 29.826367207280061 ], [ -95.478548034217596, 29.826278206508178 ], [ -95.478806034011981, 29.826273207237257 ], [ -95.478983034284923, 29.826295207269435 ], [ -95.479153033813205, 29.826333207278484 ], [ -95.479765034756355, 29.82650920703216 ], [ -95.479929034686762, 29.826542206858417 ], [ -95.480042034808193, 29.826558207173587 ], [ -95.480282034149042, 29.826536207289504 ], [ -95.480490034782264, 29.826459206994755 ], [ -95.481089034250758, 29.826305207036093 ], [ -95.481259034521088, 29.826206206977204 ], [ -95.481457034994705, 29.826105206510789 ], [ -95.48148503440639, 29.826153207081742 ], [ -95.48167503450415, 29.826397207172928 ], [ -95.481931034926419, 29.826681207117989 ], [ -95.482029035138311, 29.826826206751349 ], [ -95.482114035157366, 29.827011207042457 ], [ -95.48218703492735, 29.827344206838184 ], [ -95.482200034846727, 29.828110207180202 ], [ -95.482203035097754, 29.828881207289655 ], [ -95.482220035433514, 29.829641207783368 ], [ -95.48223603564179, 29.830423207628016 ], [ -95.483510035488436, 29.830404207314295 ], [ -95.484548035488757, 29.830398207666605 ], [ -95.484972036358599, 29.82961420758641 ], [ -95.485055035513625, 29.829409207344092 ], [ -95.485124035749848, 29.829192207117256 ], [ -95.485155035928528, 29.828851206967624 ], [ -95.486126035942817, 29.828828207542038 ], [ -95.486566036524309, 29.828840207388986 ], [ -95.487088036399655, 29.828898206965029 ], [ -95.488139036705931, 29.829115206937033 ], [ -95.488803037100709, 29.829149207356259 ], [ -95.488824037186276, 29.829916207314877 ], [ -95.488827036723947, 29.830680207510621 ], [ -95.488839037377502, 29.831449207243764 ], [ -95.488844037246992, 29.832209207598751 ], [ -95.488860036975822, 29.833020207655128 ], [ -95.48983303701192, 29.833038208069258 ], [ -95.490263036947752, 29.833095207969702 ], [ -95.49042303693264, 29.83313520789433 ], [ -95.490832037989946, 29.833312208325644 ], [ -95.491083037455411, 29.832491207695032 ], [ -95.491183037899702, 29.831716207278447 ], [ -95.491229037506969, 29.830878207020085 ], [ -95.49131803798619, 29.829970207111185 ], [ -95.491358037367405, 29.829561207183396 ], [ -95.491397037776196, 29.829175206892973 ], [ -95.491513037037336, 29.828505207186993 ], [ -95.491789037266273, 29.827900206641164 ], [ -95.49232403785534, 29.827245206233524 ], [ -95.492880037867138, 29.826666206618437 ], [ -95.493214038178422, 29.826268206151827 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 823, "Tract": "48201521701", "Area_SqMi": 1.5766910767377458, "total_2009": 10487, "total_2010": 9450, "total_2011": 9516, "total_2012": 9653, "total_2013": 9585, "total_2014": 9699, "total_2015": 8307, "total_2016": 8284, "total_2017": 8799, "total_2018": 8823, "total_2019": 10411, "total_2020": 10377, "age1": 2021, "age2": 6350, "age3": 2260, "earn1": 1057, "earn2": 2471, "earn3": 7103, "naics_s01": 20, "naics_s02": 1, "naics_s03": 0, "naics_s04": 1166, "naics_s05": 1283, "naics_s06": 2054, "naics_s07": 1113, "naics_s08": 317, "naics_s09": 793, "naics_s10": 164, "naics_s11": 212, "naics_s12": 1365, "naics_s13": 485, "naics_s14": 683, "naics_s15": 45, "naics_s16": 300, "naics_s17": 77, "naics_s18": 358, "naics_s19": 195, "naics_s20": 0, "race1": 7584, "race2": 2083, "race3": 79, "race4": 689, "race5": 16, "race6": 180, "ethnicity1": 7108, "ethnicity2": 3523, "edu1": 1785, "edu2": 2272, "edu3": 2595, "edu4": 1958, "Shape_Length": 41637.136852709315, "Shape_Area": 43955448.685700968, "total_2021": 9453, "total_2022": 10631 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.559038056245541, 29.872316213740085 ], [ -95.559183056397103, 29.872256213492864 ], [ -95.558901056901519, 29.872056213610357 ], [ -95.558814057005989, 29.871994213188607 ], [ -95.558419056185457, 29.871715213235543 ], [ -95.557815056460342, 29.871288213621629 ], [ -95.554947055543082, 29.869287213346162 ], [ -95.554306055717859, 29.86883021290361 ], [ -95.553804055030838, 29.868479212879603 ], [ -95.552463054366385, 29.867556212650808 ], [ -95.551257055002793, 29.866663212526234 ], [ -95.55113405446879, 29.866584212313324 ], [ -95.550845054555495, 29.866388212325482 ], [ -95.550813054448085, 29.866367212892499 ], [ -95.54866105419822, 29.864844212765838 ], [ -95.546482053516556, 29.863312211902063 ], [ -95.544138052431279, 29.861664212189091 ], [ -95.543356052202782, 29.861097211357876 ], [ -95.542290052410124, 29.860333211905733 ], [ -95.541822052256236, 29.860010211398095 ], [ -95.541303051574005, 29.859642211865928 ], [ -95.540244051641466, 29.858891211398362 ], [ -95.538298050320194, 29.857525211196588 ], [ -95.537543050512738, 29.856996211560933 ], [ -95.536938050121861, 29.856553210720058 ], [ -95.535611049798334, 29.855597210667725 ], [ -95.533699049399218, 29.854238211018526 ], [ -95.532110049256374, 29.853118210698625 ], [ -95.531906048650384, 29.852955210449505 ], [ -95.530946048830799, 29.852275210711266 ], [ -95.530481048066818, 29.852006210449204 ], [ -95.529923048878075, 29.851593209928367 ], [ -95.528746048056178, 29.85072920969899 ], [ -95.527227047839773, 29.849687209550829 ], [ -95.525629047520511, 29.848502209781607 ], [ -95.524174046402734, 29.84748621000432 ], [ -95.523524046253328, 29.847005209548247 ], [ -95.522404045754811, 29.84620120917403 ], [ -95.521733046098859, 29.845729209009402 ], [ -95.520234046032144, 29.844666209652175 ], [ -95.519695045723822, 29.844277209178966 ], [ -95.518602045035053, 29.843547208911993 ], [ -95.518176045302411, 29.843242208543185 ], [ -95.517974044961292, 29.843099208600886 ], [ -95.515109044374441, 29.841038208516881 ], [ -95.514909044446625, 29.841182208322042 ], [ -95.513919043305336, 29.841180208784639 ], [ -95.514062043733418, 29.844389209727101 ], [ -95.514064043581797, 29.844862209644884 ], [ -95.514082043991067, 29.845401209936515 ], [ -95.514087044042611, 29.845672209560391 ], [ -95.514096044159743, 29.845870209849608 ], [ -95.514119044409597, 29.846266209468169 ], [ -95.514160043631776, 29.846360209613344 ], [ -95.514283043751107, 29.846644210192636 ], [ -95.514459044467898, 29.846990210026423 ], [ -95.514713044754444, 29.84749120989428 ], [ -95.51474404429851, 29.847729210370641 ], [ -95.514736044726135, 29.847921210420559 ], [ -95.514743044429906, 29.848135210509056 ], [ -95.514739044622061, 29.848289209929511 ], [ -95.514737044518697, 29.848733210020807 ], [ -95.514739043939684, 29.848997210112568 ], [ -95.514754043959726, 29.8491502103134 ], [ -95.514877044206813, 29.849542210725669 ], [ -95.515136044747635, 29.849950210669547 ], [ -95.515197044529117, 29.850046210282549 ], [ -95.515241044355477, 29.850115210714666 ], [ -95.515364045052451, 29.850385210337613 ], [ -95.515397044837485, 29.850599210553529 ], [ -95.515399044589003, 29.850930211057069 ], [ -95.514060044684456, 29.850942210700676 ], [ -95.513026044420812, 29.850933210940784 ], [ -95.511600044164126, 29.850962211070527 ], [ -95.51106304310332, 29.851026210361248 ], [ -95.510922043275229, 29.851049210911473 ], [ -95.510242043495211, 29.851212211013596 ], [ -95.509866043195046, 29.851293210752942 ], [ -95.510138043608947, 29.85143421136328 ], [ -95.510300043363273, 29.851521211124226 ], [ -95.511089043149454, 29.851973210938219 ], [ -95.511255044071888, 29.852066211216091 ], [ -95.515290044495799, 29.854333211619231 ], [ -95.515442045282953, 29.85441821116865 ], [ -95.518403045776452, 29.856073211381361 ], [ -95.519403045590252, 29.856661212052419 ], [ -95.520488046676434, 29.857270212107885 ], [ -95.524081046901046, 29.859286212253778 ], [ -95.524365047260247, 29.859438211993695 ], [ -95.524639046901484, 29.859583212245735 ], [ -95.525798047980416, 29.860135212181678 ], [ -95.527994048599183, 29.861144211972508 ], [ -95.529088048735588, 29.861615212504383 ], [ -95.530605048645569, 29.862303212724569 ], [ -95.533445049991627, 29.863574212191853 ], [ -95.53375105012168, 29.863687212290714 ], [ -95.534193049870183, 29.863851212318448 ], [ -95.537327051380913, 29.865277212626392 ], [ -95.540707052187742, 29.866815213033707 ], [ -95.540979051715055, 29.866938212718395 ], [ -95.541178051915352, 29.867029212622867 ], [ -95.542949052005781, 29.867835213110524 ], [ -95.543028052255551, 29.867871212832384 ], [ -95.543114052888001, 29.867910213520336 ], [ -95.544029052409158, 29.868312213378104 ], [ -95.545886053738144, 29.869077213525141 ], [ -95.547998053858919, 29.870001213771456 ], [ -95.548396053720211, 29.870211213607782 ], [ -95.548826054461671, 29.870396213138797 ], [ -95.550156053944505, 29.870969213167964 ], [ -95.55033505394303, 29.871053213928004 ], [ -95.551116055188018, 29.871392213342887 ], [ -95.553685055183706, 29.872542213425682 ], [ -95.553800055329177, 29.872607213770006 ], [ -95.554510055734482, 29.872929214183873 ], [ -95.555202055756169, 29.873237214096925 ], [ -95.555298055366833, 29.873282213848398 ], [ -95.555535055666112, 29.873388213521462 ], [ -95.555789056432545, 29.87352121343103 ], [ -95.555994055590105, 29.873450213617716 ], [ -95.556102056138556, 29.873400213407926 ], [ -95.556255056320012, 29.873322213633092 ], [ -95.557965056760366, 29.872690213540817 ], [ -95.558992056967199, 29.872333213870956 ], [ -95.559038056245541, 29.872316213740085 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 824, "Tract": "48201551901", "Area_SqMi": 0.14565635469998772, "total_2009": 520, "total_2010": 487, "total_2011": 509, "total_2012": 259, "total_2013": 348, "total_2014": 462, "total_2015": 549, "total_2016": 636, "total_2017": 671, "total_2018": 634, "total_2019": 664, "total_2020": 667, "age1": 267, "age2": 286, "age3": 90, "earn1": 186, "earn2": 288, "earn3": 169, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 7, "naics_s06": 8, "naics_s07": 291, "naics_s08": 0, "naics_s09": 0, "naics_s10": 19, "naics_s11": 8, "naics_s12": 60, "naics_s13": 0, "naics_s14": 14, "naics_s15": 11, "naics_s16": 29, "naics_s17": 11, "naics_s18": 123, "naics_s19": 40, "naics_s20": 0, "race1": 484, "race2": 97, "race3": 4, "race4": 44, "race5": 1, "race6": 13, "ethnicity1": 391, "ethnicity2": 252, "edu1": 85, "edu2": 107, "edu3": 106, "edu4": 78, "Shape_Length": 11126.467510412293, "Shape_Area": 4060649.875693114, "total_2021": 652, "total_2022": 643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.588854065138477, 29.898793217718023 ], [ -95.588678065329773, 29.898791217540108 ], [ -95.587925064861722, 29.898783217713511 ], [ -95.587793065616353, 29.898767217913637 ], [ -95.587610065683293, 29.898728217653854 ], [ -95.587364065107238, 29.898646218185345 ], [ -95.586096064764291, 29.898069217845492 ], [ -95.585465065011491, 29.897827217564373 ], [ -95.585124064739759, 29.89772821799739 ], [ -95.584511064299932, 29.897692218222659 ], [ -95.584496064204259, 29.898428218192937 ], [ -95.584517064516703, 29.90211121853212 ], [ -95.584518064644811, 29.902446218602609 ], [ -95.584519064713035, 29.902516219106214 ], [ -95.584521064285155, 29.902961219144213 ], [ -95.584523064514045, 29.903418218902129 ], [ -95.584528064582528, 29.904335219451816 ], [ -95.584530064680578, 29.90448921934145 ], [ -95.584534064605862, 29.905618219352803 ], [ -95.584535064501779, 29.906055219230943 ], [ -95.584541065329873, 29.907287220157645 ], [ -95.584569064824947, 29.909980220271304 ], [ -95.58496006546018, 29.90997122007807 ], [ -95.585014064899354, 29.909973220567228 ], [ -95.586260065848876, 29.909963220224377 ], [ -95.586257065171253, 29.909861220591008 ], [ -95.586272064971894, 29.909170220424368 ], [ -95.586263065448506, 29.908139219510431 ], [ -95.586268065186417, 29.90805322020708 ], [ -95.586279065729457, 29.907969220216824 ], [ -95.586299065522155, 29.90788922010287 ], [ -95.586326065816181, 29.907811219455695 ], [ -95.586358064960308, 29.907738219867223 ], [ -95.586395065130617, 29.907667219422443 ], [ -95.586437064861414, 29.907599219939517 ], [ -95.586487065812889, 29.907533220088965 ], [ -95.586543065418681, 29.90746921946991 ], [ -95.586607065472933, 29.907409219457644 ], [ -95.586680065016282, 29.907352220125276 ], [ -95.586761065771753, 29.907297219481087 ], [ -95.586850065600487, 29.907244219261724 ], [ -95.58828906550707, 29.906450219484366 ], [ -95.588689066340592, 29.906207219185916 ], [ -95.588756066347216, 29.906166219643644 ], [ -95.588788065680703, 29.906138219218139 ], [ -95.588625066326316, 29.905967219317461 ], [ -95.588339065952908, 29.905619219098689 ], [ -95.588191066111222, 29.905405219415687 ], [ -95.588040065690507, 29.905155218911229 ], [ -95.587938065267281, 29.904955219441621 ], [ -95.587843065280182, 29.90473721907858 ], [ -95.587815065778955, 29.904664218896947 ], [ -95.587794065931234, 29.904595219098557 ], [ -95.587766065109307, 29.904526219086719 ], [ -95.587724065939184, 29.904381219089906 ], [ -95.587693065874959, 29.9042742192335 ], [ -95.587674066006485, 29.904186218672603 ], [ -95.587629065215722, 29.903942218995997 ], [ -95.587606065250029, 29.903763219100483 ], [ -95.58758706498368, 29.903442219207612 ], [ -95.587583065345086, 29.902925218942048 ], [ -95.587579065559908, 29.90255421855198 ], [ -95.587574065240801, 29.902046218460892 ], [ -95.587570065580053, 29.901654218602129 ], [ -95.587574065634257, 29.901285218520563 ], [ -95.587595065762216, 29.90103921801968 ], [ -95.587614064997908, 29.900913218457735 ], [ -95.587671065597306, 29.900654218346681 ], [ -95.587709065175176, 29.900523217856822 ], [ -95.587753065002772, 29.900391218241168 ], [ -95.587804065107733, 29.90026021795796 ], [ -95.587860065086673, 29.900133217749559 ], [ -95.587972064948218, 29.89991121814947 ], [ -95.588080065767713, 29.899728218246892 ], [ -95.588223065685895, 29.899520217674244 ], [ -95.588400065044283, 29.899295218434727 ], [ -95.588669065829222, 29.898995217761886 ], [ -95.588854065138477, 29.898793217718023 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 825, "Tract": "48201240903", "Area_SqMi": 1.2590169142742629, "total_2009": 575, "total_2010": 517, "total_2011": 78, "total_2012": 14, "total_2013": 14, "total_2014": 9, "total_2015": 175, "total_2016": 99, "total_2017": 102, "total_2018": 40, "total_2019": 178, "total_2020": 39, "age1": 3, "age2": 33, "age3": 13, "earn1": 11, "earn2": 10, "earn3": 28, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 0, "naics_s06": 3, "naics_s07": 0, "naics_s08": 6, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 11, "naics_s13": 0, "naics_s14": 0, "naics_s15": 2, "naics_s16": 13, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 28, "race2": 21, "race3": 0, "race4": 0, "race5": 0, "race6": 0, "ethnicity1": 38, "ethnicity2": 11, "edu1": 7, "edu2": 9, "edu3": 16, "edu4": 14, "Shape_Length": 25929.034618742815, "Shape_Area": 35099236.740981989, "total_2021": 38, "total_2022": 49 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.306922999102397, 30.031066254316585 ], [ -95.306906999445872, 30.030711254926047 ], [ -95.306863999196182, 30.029731253916573 ], [ -95.306857999444247, 30.028439253787493 ], [ -95.306857999564244, 30.027192253934505 ], [ -95.306849999411767, 30.026927254153261 ], [ -95.306857999476662, 30.025431253501043 ], [ -95.306836999172248, 30.024110253495774 ], [ -95.306802998409708, 30.021043252760471 ], [ -95.306793999034738, 30.020792252306453 ], [ -95.306789998323936, 30.018434251880052 ], [ -95.306795999022441, 30.018176252235662 ], [ -95.306776998766566, 30.017004251993292 ], [ -95.306766998194661, 30.016305251282734 ], [ -95.300228996856731, 30.016333251671515 ], [ -95.294709995810763, 30.016334251924267 ], [ -95.293367995041578, 30.016323251798546 ], [ -95.292993994930058, 30.016335251964925 ], [ -95.292874995112427, 30.016338252222159 ], [ -95.292713994685826, 30.01634225237866 ], [ -95.292593995173036, 30.016344251784972 ], [ -95.292552995282662, 30.016346252370855 ], [ -95.292390995121067, 30.016349252438868 ], [ -95.29222999465803, 30.01635325201552 ], [ -95.292068995185602, 30.016357252329591 ], [ -95.291955994626221, 30.016358251993768 ], [ -95.291283994975018, 30.016373252099566 ], [ -95.291284995163508, 30.016343252531446 ], [ -95.290800994100479, 30.016345252471663 ], [ -95.288363993574492, 30.016354251924064 ], [ -95.284554993026603, 30.016368252477754 ], [ -95.284675993382436, 30.02081225287705 ], [ -95.28468999325078, 30.021306253094338 ], [ -95.284732993153227, 30.022843253474754 ], [ -95.284681993242742, 30.024372254139717 ], [ -95.284725993844901, 30.027806254821769 ], [ -95.284728994036143, 30.028007255034446 ], [ -95.284732993513359, 30.028274254580211 ], [ -95.284734993600281, 30.02852425503179 ], [ -95.284746993445708, 30.029734255354285 ], [ -95.28474599402719, 30.029910255390838 ], [ -95.285076994128588, 30.029834255531004 ], [ -95.285352993376222, 30.02964325469225 ], [ -95.285409993611779, 30.029614254699617 ], [ -95.28619299391444, 30.02920825463595 ], [ -95.286755993870727, 30.02904225468923 ], [ -95.286902994576224, 30.028974254775218 ], [ -95.287070994026763, 30.02890225515949 ], [ -95.287498994684299, 30.028820255002739 ], [ -95.28792699461917, 30.028738254382244 ], [ -95.289685994832382, 30.028400254672075 ], [ -95.292569995702223, 30.027791254823999 ], [ -95.29268799538977, 30.027766254707785 ], [ -95.292831995587932, 30.027758254032197 ], [ -95.292918996090449, 30.027753254034181 ], [ -95.293003995736711, 30.027910254719615 ], [ -95.293107996018335, 30.028214254673546 ], [ -95.293270995479844, 30.028589254782158 ], [ -95.293298995358938, 30.028700254532254 ], [ -95.293327996344402, 30.028763254168037 ], [ -95.293385996184611, 30.028890254345857 ], [ -95.293470996332573, 30.029048254727414 ], [ -95.293713995867677, 30.029496254274019 ], [ -95.294035995838925, 30.029763254612433 ], [ -95.29412499560074, 30.029836254424442 ], [ -95.294337995721037, 30.029946254737975 ], [ -95.294778995775317, 30.030176254528325 ], [ -95.295140996637599, 30.030295254505319 ], [ -95.295777996742856, 30.030551254514478 ], [ -95.296004996603585, 30.030681255260927 ], [ -95.296422996803685, 30.030940255118534 ], [ -95.296565997044794, 30.031025255227608 ], [ -95.297225996871632, 30.031377254904633 ], [ -95.297383996457796, 30.031412255142893 ], [ -95.297580996646531, 30.031505255378221 ], [ -95.299443997645383, 30.032053255431368 ], [ -95.299937998079088, 30.032198254828444 ], [ -95.300278998072713, 30.032204255480913 ], [ -95.300948997659802, 30.032264254650638 ], [ -95.301693998347446, 30.032303255131779 ], [ -95.302388998806606, 30.032292254946697 ], [ -95.302742997986243, 30.032160255080402 ], [ -95.302850998404338, 30.032094255315037 ], [ -95.302932998132448, 30.032023254484333 ], [ -95.302989998195429, 30.03194625481996 ], [ -95.30319499891246, 30.031640255116756 ], [ -95.303417999028483, 30.031337255027641 ], [ -95.303661998199345, 30.031042254374924 ], [ -95.303870999091743, 30.030775254182927 ], [ -95.304235998934985, 30.030068254181913 ], [ -95.304356999024037, 30.029806254735732 ], [ -95.30442499898578, 30.029754254073055 ], [ -95.304728998312697, 30.029637254370023 ], [ -95.305141998710198, 30.029630254326403 ], [ -95.305609998727448, 30.029772254369732 ], [ -95.305916998651568, 30.029954254280117 ], [ -95.306254999276035, 30.030271254229774 ], [ -95.306625999072423, 30.030748254071309 ], [ -95.306922999102397, 30.031066254316585 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 826, "Tract": "48201240904", "Area_SqMi": 3.4639547781898377, "total_2009": 3352, "total_2010": 3602, "total_2011": 4462, "total_2012": 4231, "total_2013": 4260, "total_2014": 4501, "total_2015": 4777, "total_2016": 5237, "total_2017": 5404, "total_2018": 5319, "total_2019": 5010, "total_2020": 5151, "age1": 2313, "age2": 2088, "age3": 856, "earn1": 1789, "earn2": 2155, "earn3": 1313, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 69, "naics_s05": 226, "naics_s06": 21, "naics_s07": 3077, "naics_s08": 3, "naics_s09": 87, "naics_s10": 66, "naics_s11": 40, "naics_s12": 15, "naics_s13": 0, "naics_s14": 53, "naics_s15": 6, "naics_s16": 170, "naics_s17": 199, "naics_s18": 1016, "naics_s19": 209, "naics_s20": 0, "race1": 3687, "race2": 1105, "race3": 49, "race4": 295, "race5": 7, "race6": 114, "ethnicity1": 3226, "ethnicity2": 2031, "edu1": 737, "edu2": 828, "edu3": 868, "edu4": 511, "Shape_Length": 47490.398043717541, "Shape_Area": 96569130.598078325, "total_2021": 4548, "total_2022": 5257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.308951999038811, 30.005970249800175 ], [ -95.308960999070635, 30.005629248884407 ], [ -95.308942999107103, 30.00497324939575 ], [ -95.308928998733862, 30.004878249395784 ], [ -95.308913998564506, 30.004371249454685 ], [ -95.305713997623201, 30.004505248939775 ], [ -95.30355799762043, 30.004635249312987 ], [ -95.303338997254428, 30.004648249644458 ], [ -95.300127996034533, 30.004767249232959 ], [ -95.297515996103598, 30.004917249635859 ], [ -95.297223995539724, 30.004940249796167 ], [ -95.296995995721602, 30.004943249841432 ], [ -95.296847995503228, 30.004948249188345 ], [ -95.295193994812763, 30.005009249530627 ], [ -95.294552994569401, 30.005030249406378 ], [ -95.294539994988796, 30.005030250046815 ], [ -95.293926995258374, 30.005049250128884 ], [ -95.29387399498755, 30.005051249361451 ], [ -95.293161994422803, 30.00505025012675 ], [ -95.292758994434593, 30.005050249523677 ], [ -95.291153994552246, 30.005047250193829 ], [ -95.285487993180283, 30.005041249649562 ], [ -95.284501992712563, 30.005040249924669 ], [ -95.284349992353825, 30.005040249847113 ], [ -95.28422199252185, 30.00504125018859 ], [ -95.283693992322753, 30.005045249933467 ], [ -95.282465992107674, 30.005054249954146 ], [ -95.282387991606839, 30.005053250189324 ], [ -95.281802991435299, 30.005046249755353 ], [ -95.28117899116917, 30.005044249797507 ], [ -95.27995599117024, 30.005039250176086 ], [ -95.27955299126495, 30.00504924978857 ], [ -95.278813991324625, 30.005059250109909 ], [ -95.27750499100982, 30.005064250400004 ], [ -95.27725699069255, 30.005055250000705 ], [ -95.277114990699701, 30.005054250713069 ], [ -95.276971991001048, 30.005053250645574 ], [ -95.276818990584673, 30.005053250436205 ], [ -95.276327990015801, 30.005055250086734 ], [ -95.276102990180433, 30.005055250626391 ], [ -95.274977989554699, 30.005056250443104 ], [ -95.274247989692469, 30.005057250479602 ], [ -95.273293989418391, 30.00505825025536 ], [ -95.272477989687687, 30.00502725055691 ], [ -95.27214598915775, 30.00501225046288 ], [ -95.271789989648411, 30.005016250643259 ], [ -95.270954988684707, 30.005037250400882 ], [ -95.270446988984617, 30.005044250894695 ], [ -95.269477988664391, 30.005065250551691 ], [ -95.26866498804597, 30.005021250938878 ], [ -95.268487988444988, 30.005024250957611 ], [ -95.268249987913862, 30.005023250771576 ], [ -95.268175988521705, 30.005222251040859 ], [ -95.267284988253252, 30.007264251328092 ], [ -95.267102988285373, 30.007734251035252 ], [ -95.26603398745263, 30.010140251700257 ], [ -95.264754987512447, 30.012876252661961 ], [ -95.264143987804502, 30.014255252195603 ], [ -95.263130987939135, 30.016543253347251 ], [ -95.262445987408782, 30.018199253110648 ], [ -95.262106986948694, 30.019019253341387 ], [ -95.261471987016392, 30.02055525382621 ], [ -95.259942987308733, 30.02425225495821 ], [ -95.259354986732433, 30.025664255089488 ], [ -95.259215987392437, 30.026075255493879 ], [ -95.259195986991287, 30.026134255055851 ], [ -95.259191987381541, 30.026147255099563 ], [ -95.259178986426818, 30.026184255111001 ], [ -95.259133986947518, 30.026275254983751 ], [ -95.25904498700551, 30.026505255648086 ], [ -95.258999986421955, 30.026620255103907 ], [ -95.259361987252419, 30.026703255689174 ], [ -95.261258987547095, 30.027916255932798 ], [ -95.261449987463351, 30.029000256134253 ], [ -95.26168598762743, 30.029884256157512 ], [ -95.262202988280848, 30.031061256459829 ], [ -95.262543988161369, 30.031495256036813 ], [ -95.263133987847809, 30.032113256490195 ], [ -95.263638988063661, 30.032389256029788 ], [ -95.26385398854373, 30.032370256580808 ], [ -95.264002988413608, 30.032218256610886 ], [ -95.264144988637085, 30.03207425668408 ], [ -95.264192988683732, 30.032079255894057 ], [ -95.265105988957245, 30.032176256542975 ], [ -95.265907988517625, 30.032081256537186 ], [ -95.26603098848166, 30.032063255798754 ], [ -95.266369988605476, 30.031976256495817 ], [ -95.267237988886194, 30.031804255672721 ], [ -95.26742298955358, 30.031755256424653 ], [ -95.267522988824908, 30.031729256376568 ], [ -95.268074989430332, 30.031700255808165 ], [ -95.268292989548101, 30.03168925576286 ], [ -95.268322989210802, 30.031695256411592 ], [ -95.268740989703034, 30.031778256225277 ], [ -95.269139989567435, 30.0318732562816 ], [ -95.269296989540805, 30.031920255927318 ], [ -95.27013698986093, 30.03216825574842 ], [ -95.270245990520422, 30.032198256074945 ], [ -95.27099998999887, 30.032404256458229 ], [ -95.271407990455501, 30.032411255642224 ], [ -95.272021990929815, 30.032422256176044 ], [ -95.272350990740748, 30.032372255817801 ], [ -95.272471990139266, 30.032368256386061 ], [ -95.273088991283487, 30.032247256249104 ], [ -95.273709991226909, 30.032096255826932 ], [ -95.273932991260466, 30.032072255916432 ], [ -95.274220991262439, 30.031956256048531 ], [ -95.274513990803442, 30.031836255730219 ], [ -95.274834990786317, 30.031808256145634 ], [ -95.275483991250013, 30.031545255410865 ], [ -95.275964991820857, 30.031355255946867 ], [ -95.276513991865784, 30.031228255899922 ], [ -95.276735991762067, 30.03116725547493 ], [ -95.276913991237365, 30.031119255189335 ], [ -95.276912991904453, 30.031170255668776 ], [ -95.276919992166825, 30.031279255699641 ], [ -95.276917991373338, 30.03136025556072 ], [ -95.27692099212922, 30.031471255964849 ], [ -95.277165992198377, 30.031302255791253 ], [ -95.27735899151557, 30.031171255808033 ], [ -95.277631991606441, 30.031152255502782 ], [ -95.277692991623567, 30.031142255738875 ], [ -95.277713991460161, 30.03113825586146 ], [ -95.27773499158198, 30.031133255896709 ], [ -95.277754991737012, 30.031128255304697 ], [ -95.277774992143605, 30.031122255527347 ], [ -95.27779399180028, 30.03111525591229 ], [ -95.277813992235025, 30.031109255227381 ], [ -95.277832991886584, 30.031102255606786 ], [ -95.277852991818676, 30.031094255620978 ], [ -95.27787599199219, 30.03108525561392 ], [ -95.278116991542475, 30.030994255706165 ], [ -95.278130991706234, 30.030989255838698 ], [ -95.278158992250582, 30.030982255478683 ], [ -95.278175991801163, 30.030979255834161 ], [ -95.278190992427596, 30.030976255876439 ], [ -95.278208991723233, 30.030974255129152 ], [ -95.278229991694985, 30.03097325545188 ], [ -95.278240991803301, 30.030972255880094 ], [ -95.278253991621966, 30.030972255828637 ], [ -95.278269992432527, 30.030972255861663 ], [ -95.278280992010252, 30.030973255553143 ], [ -95.278295992543363, 30.030974255948799 ], [ -95.27831299225852, 30.030978255129639 ], [ -95.278337992287788, 30.0309842558556 ], [ -95.278359991922073, 30.030988255423402 ], [ -95.278402992483095, 30.030995255677055 ], [ -95.278439991624367, 30.031000255585084 ], [ -95.278486992428697, 30.031006255497989 ], [ -95.278500991968841, 30.031007255223585 ], [ -95.27851999246235, 30.031008255362696 ], [ -95.278535991963295, 30.031009255419459 ], [ -95.278547991790106, 30.031009255623115 ], [ -95.278560992649773, 30.031009255570677 ], [ -95.278577991668769, 30.031008255141753 ], [ -95.278597991647416, 30.031007255690842 ], [ -95.278609992030638, 30.031005255720796 ], [ -95.278622992131716, 30.031004255549554 ], [ -95.278634992235979, 30.031003255661375 ], [ -95.278646992618022, 30.031001255688018 ], [ -95.278659991959771, 30.030999255400456 ], [ -95.27867199234079, 30.030997255424804 ], [ -95.27868399196268, 30.030994255335383 ], [ -95.278695992342676, 30.030992255357656 ], [ -95.278719992619443, 30.030986255202059 ], [ -95.278730992242302, 30.030983255393313 ], [ -95.278742991860824, 30.03098025529858 ], [ -95.278769992608176, 30.030972255913934 ], [ -95.278786991688946, 30.030967255093515 ], [ -95.278796992347921, 30.030964255593403 ], [ -95.278817991828149, 30.030961255627368 ], [ -95.278832992156836, 30.030959255682109 ], [ -95.278848992481002, 30.030957255449266 ], [ -95.278859992305655, 30.030957255910941 ], [ -95.278870992163277, 30.030957255470067 ], [ -95.278882991983963, 30.030957255643781 ], [ -95.278893992602363, 30.030958255313784 ], [ -95.278910991819799, 30.030960255123812 ], [ -95.278928992312487, 30.030961255491455 ], [ -95.278950991995615, 30.030961255499093 ], [ -95.278984992261584, 30.030962255780668 ], [ -95.279201992227939, 30.030966255117004 ], [ -95.279220991923737, 30.03096625594597 ], [ -95.279243992562542, 30.030947255707595 ], [ -95.279257992223535, 30.030936255160597 ], [ -95.279270992378429, 30.030927255098078 ], [ -95.279291992175956, 30.030915255145096 ], [ -95.279310992742367, 30.030904255880277 ], [ -95.279346992489721, 30.030903255294621 ], [ -95.279416992769569, 30.030898255323986 ], [ -95.2794639923424, 30.030893255658668 ], [ -95.279517992351003, 30.030886255576277 ], [ -95.279538992830155, 30.03088325552617 ], [ -95.279565992446464, 30.030879255416217 ], [ -95.279589992376572, 30.030874255189143 ], [ -95.27961399203592, 30.030870255041943 ], [ -95.279637992196797, 30.030864255623893 ], [ -95.279679992136238, 30.030854255088826 ], [ -95.279692992744302, 30.030847255182159 ], [ -95.279710992490251, 30.030839255503441 ], [ -95.279729992228241, 30.030831255529858 ], [ -95.279749992727119, 30.03082425537383 ], [ -95.279769992956346, 30.030818255298943 ], [ -95.27978299275324, 30.030814255635971 ], [ -95.27980299244534, 30.030810255724472 ], [ -95.27982399290039, 30.030807255629743 ], [ -95.279844992051736, 30.030805255587179 ], [ -95.279861992293363, 30.030803255842091 ], [ -95.2799709923748, 30.030800255151288 ], [ -95.280046992169275, 30.030800255339763 ], [ -95.280123992994504, 30.030800255218619 ], [ -95.280135992533346, 30.030801255364658 ], [ -95.280198992269078, 30.030802255784849 ], [ -95.280242992078342, 30.030804255577841 ], [ -95.280269992408606, 30.030805255804516 ], [ -95.280314992989858, 30.030808255390376 ], [ -95.280384992881537, 30.030812255730236 ], [ -95.280424992492726, 30.030815255835286 ], [ -95.280497992377605, 30.030819255223509 ], [ -95.280514992347079, 30.030822255845251 ], [ -95.280551992792397, 30.030822255653145 ], [ -95.280576992655696, 30.030821255316479 ], [ -95.280601992744209, 30.030819255792746 ], [ -95.280626992606258, 30.030818255446871 ], [ -95.280676993069861, 30.030813255390282 ], [ -95.280735992859505, 30.030806255124244 ], [ -95.280776992904876, 30.030799255729001 ], [ -95.280832992205902, 30.030790255222215 ], [ -95.280885992851651, 30.030784255003436 ], [ -95.280938992947384, 30.030780255833751 ], [ -95.280973992640625, 30.030779255113739 ], [ -95.28100599235033, 30.030778255290421 ], [ -95.281045992729517, 30.030778254958172 ], [ -95.281071992284325, 30.030778255213093 ], [ -95.281087992810427, 30.030779254994805 ], [ -95.281098992615824, 30.030779255273263 ], [ -95.281125992947878, 30.030780255327997 ], [ -95.281152993027121, 30.030782255461499 ], [ -95.28116699252972, 30.030783255811173 ], [ -95.281196992340739, 30.030786255110549 ], [ -95.281217992522571, 30.030788255247536 ], [ -95.281230992848933, 30.030790255105174 ], [ -95.281243993142823, 30.030792255863243 ], [ -95.281262992586875, 30.030793255586055 ], [ -95.281277992870656, 30.030795255733125 ], [ -95.28129599257305, 30.030795255671048 ], [ -95.281320992955301, 30.030796255393014 ], [ -95.281338992657865, 30.030796255325122 ], [ -95.281357992354899, 30.030796254950332 ], [ -95.281382992421939, 30.030794255281336 ], [ -95.281407992488013, 30.030792255607665 ], [ -95.281433992798085, 30.030789255540054 ], [ -95.281450993256215, 30.030786255509739 ], [ -95.281463992515327, 30.030784254950799 ], [ -95.281479993263389, 30.030784255503395 ], [ -95.28157099326171, 30.030782255489349 ], [ -95.281597993309774, 30.030780255168022 ], [ -95.281630992974925, 30.030779255791284 ], [ -95.281663992424129, 30.030779255588854 ], [ -95.281675993011945, 30.030780255626123 ], [ -95.281705993299894, 30.030781255545303 ], [ -95.281721992796449, 30.030782255222881 ], [ -95.281745992937857, 30.030784255257231 ], [ -95.281762993185566, 30.030786255636993 ], [ -95.281795992685346, 30.030790255767595 ], [ -95.281811992973587, 30.030792255547304 ], [ -95.281827992472898, 30.030793255212238 ], [ -95.281840993025469, 30.030794255828411 ], [ -95.281856992525306, 30.03079525548991 ], [ -95.281871993067341, 30.030796255486546 ], [ -95.281885992825025, 30.030796255677107 ], [ -95.281905992483559, 30.03079625581805 ], [ -95.281927992921595, 30.030797255451258 ], [ -95.281956992677138, 30.030796255426186 ], [ -95.281984993016607, 30.030797254999303 ], [ -95.282023993318646, 30.030793255221564 ], [ -95.282115992633393, 30.030785255770049 ], [ -95.282145992865139, 30.030782255225624 ], [ -95.282186993353889, 30.030777255597194 ], [ -95.282244993234187, 30.030769255796887 ], [ -95.282306992980466, 30.030757255261445 ], [ -95.282687993615312, 30.030682255635696 ], [ -95.282951992859438, 30.030629255135658 ], [ -95.283036993113697, 30.030612255579385 ], [ -95.283061993004523, 30.030606255232318 ], [ -95.283097992780242, 30.030595255447217 ], [ -95.283120992912444, 30.030588255639874 ], [ -95.283143993275146, 30.030580255744255 ], [ -95.283166992864537, 30.030571254830107 ], [ -95.283188993460953, 30.030562255160525 ], [ -95.283210993250293, 30.030552255374385 ], [ -95.283231993076328, 30.030542255001418 ], [ -95.283251992906386, 30.030532254943772 ], [ -95.283271992932029, 30.030521255700496 ], [ -95.283291992986307, 30.030510255552539 ], [ -95.283307993567334, 30.030497255607528 ], [ -95.283334993004601, 30.030479255277285 ], [ -95.283351992871317, 30.030469255260567 ], [ -95.28356299375983, 30.03038225481048 ], [ -95.283757993537208, 30.030309255013854 ], [ -95.283876993377518, 30.030270255513301 ], [ -95.283887993354369, 30.030269255479126 ], [ -95.283900993729191, 30.030266255530112 ], [ -95.283912993336912, 30.030262254888637 ], [ -95.283922993191425, 30.030257254809001 ], [ -95.283932993012101, 30.030252255630288 ], [ -95.284458993394139, 30.030038255581722 ], [ -95.284676993930447, 30.029943254908289 ], [ -95.28474599402719, 30.029910255390838 ], [ -95.284746993445708, 30.029734255354285 ], [ -95.284734993600281, 30.02852425503179 ], [ -95.284732993513359, 30.028274254580211 ], [ -95.284728994036143, 30.028007255034446 ], [ -95.284725993844901, 30.027806254821769 ], [ -95.284681993242742, 30.024372254139717 ], [ -95.284732993153227, 30.022843253474754 ], [ -95.28468999325078, 30.021306253094338 ], [ -95.284675993382436, 30.02081225287705 ], [ -95.284554993026603, 30.016368252477754 ], [ -95.288363993574492, 30.016354251924064 ], [ -95.290800994100479, 30.016345252471663 ], [ -95.291284995163508, 30.016343252531446 ], [ -95.291283994975018, 30.016373252099566 ], [ -95.291955994626221, 30.016358251993768 ], [ -95.292068995185602, 30.016357252329591 ], [ -95.29222999465803, 30.01635325201552 ], [ -95.292390995121067, 30.016349252438868 ], [ -95.292552995282662, 30.016346252370855 ], [ -95.292593995173036, 30.016344251784972 ], [ -95.292713994685826, 30.01634225237866 ], [ -95.292874995112427, 30.016338252222159 ], [ -95.292993994930058, 30.016335251964925 ], [ -95.293367995041578, 30.016323251798546 ], [ -95.294709995810763, 30.016334251924267 ], [ -95.300228996856731, 30.016333251671515 ], [ -95.306766998194661, 30.016305251282734 ], [ -95.306765998299042, 30.016271251440521 ], [ -95.306770998396843, 30.01620825148057 ], [ -95.306794998234707, 30.016043251127869 ], [ -95.306958999071838, 30.015305251708437 ], [ -95.307049998802782, 30.014876251518096 ], [ -95.307056998435286, 30.014844251510016 ], [ -95.307665998922758, 30.012122250472888 ], [ -95.307702998894229, 30.011967250576166 ], [ -95.307985999088331, 30.010540250190033 ], [ -95.308020998918579, 30.010345250194504 ], [ -95.308120999065821, 30.009918249897087 ], [ -95.308206999099625, 30.009528249916059 ], [ -95.308227998631054, 30.009353250493366 ], [ -95.308287998888204, 30.009155250278898 ], [ -95.308339998820415, 30.008961249869035 ], [ -95.308382999268204, 30.008745250117524 ], [ -95.308543998847213, 30.007986249714925 ], [ -95.308821998624438, 30.006725249549785 ], [ -95.308903998584427, 30.006341249582267 ], [ -95.308933998739647, 30.00615224951429 ], [ -95.308951999038811, 30.005970249800175 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 827, "Tract": "48201241001", "Area_SqMi": 1.3822447986566138, "total_2009": 109, "total_2010": 147, "total_2011": 103, "total_2012": 102, "total_2013": 79, "total_2014": 99, "total_2015": 86, "total_2016": 165, "total_2017": 144, "total_2018": 87, "total_2019": 85, "total_2020": 141, "age1": 20, "age2": 50, "age3": 27, "earn1": 27, "earn2": 51, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 0, "naics_s06": 5, "naics_s07": 28, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 4, "naics_s16": 16, "naics_s17": 0, "naics_s18": 12, "naics_s19": 4, "naics_s20": 0, "race1": 76, "race2": 13, "race3": 0, "race4": 6, "race5": 0, "race6": 2, "ethnicity1": 61, "ethnicity2": 36, "edu1": 14, "edu2": 25, "edu3": 21, "edu4": 17, "Shape_Length": 34102.517788599631, "Shape_Area": 38534619.250929981, "total_2021": 89, "total_2022": 97 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.367453014695514, 30.033741252768429 ], [ -95.367430014629619, 30.033678253150846 ], [ -95.367350015237662, 30.033455253372107 ], [ -95.366612014820831, 30.032510253142028 ], [ -95.366245015134766, 30.031604252435031 ], [ -95.366047014774409, 30.031479252221985 ], [ -95.365924014638892, 30.031479252495984 ], [ -95.365738014617364, 30.031556252579051 ], [ -95.365280013926892, 30.032064253127466 ], [ -95.364976014054022, 30.032249252694612 ], [ -95.363553014398846, 30.032871252783373 ], [ -95.363161013838848, 30.033111253275482 ], [ -95.362730014162793, 30.033673253303245 ], [ -95.361964013605657, 30.034310253767636 ], [ -95.36091301367847, 30.035347253501392 ], [ -95.359848012765724, 30.035962253293111 ], [ -95.359621013593085, 30.036045254056862 ], [ -95.359172012946559, 30.036102253365041 ], [ -95.358759013180276, 30.036094253842826 ], [ -95.358192013109715, 30.036012254114535 ], [ -95.357641012714737, 30.035770254064868 ], [ -95.356663012396552, 30.034911253537121 ], [ -95.355977012120832, 30.033983253890202 ], [ -95.355643011898977, 30.033617253462705 ], [ -95.355248011622351, 30.033303253746862 ], [ -95.35506701226673, 30.033217253381014 ], [ -95.354871011585274, 30.03326525328303 ], [ -95.354777011619632, 30.033335253424791 ], [ -95.35470501207682, 30.033613253048692 ], [ -95.354597012229547, 30.033717253834837 ], [ -95.354349011505235, 30.033718253266809 ], [ -95.354196011264918, 30.033664253686403 ], [ -95.35400301118726, 30.033529253164154 ], [ -95.353683011212894, 30.033157253368703 ], [ -95.353225011422253, 30.032798253128689 ], [ -95.352606011682028, 30.032145252803048 ], [ -95.352362011342692, 30.031952252920338 ], [ -95.352136011124784, 30.031865253320415 ], [ -95.351834010460053, 30.031767253271582 ], [ -95.350977010418788, 30.031692253364149 ], [ -95.350813010837115, 30.031628253593471 ], [ -95.350673010449171, 30.031544253224897 ], [ -95.350488010087858, 30.031394253199817 ], [ -95.350337010096624, 30.031077252731784 ], [ -95.350305010501359, 30.030080252530023 ], [ -95.350144010362172, 30.029620252964374 ], [ -95.350021010691705, 30.029437252340358 ], [ -95.349856010355765, 30.029310252833152 ], [ -95.349543010013676, 30.029260252536183 ], [ -95.34930300968459, 30.029144252571665 ], [ -95.3491070102923, 30.028950252425247 ], [ -95.349060010114457, 30.028961252383354 ], [ -95.348908009720205, 30.028771252743415 ], [ -95.348660010345739, 30.028584252797813 ], [ -95.348028009906969, 30.028248252905605 ], [ -95.347679009962789, 30.028140252770594 ], [ -95.34722800975257, 30.028162253004773 ], [ -95.346637009041942, 30.028307252316754 ], [ -95.34579100954501, 30.028158252895569 ], [ -95.345503009229091, 30.028150252757442 ], [ -95.344660009192879, 30.028445252695512 ], [ -95.344378009238056, 30.028497252734898 ], [ -95.342335008610121, 30.028258252404655 ], [ -95.342060008554725, 30.028224252939388 ], [ -95.341073008422995, 30.028103252718701 ], [ -95.34083300835205, 30.028079252373725 ], [ -95.340261007973311, 30.028129253026147 ], [ -95.339291007213674, 30.02802725282498 ], [ -95.338964007386352, 30.028048253284521 ], [ -95.338613007221667, 30.028143252660808 ], [ -95.338102007756547, 30.028374253265049 ], [ -95.33702500656311, 30.028711253341154 ], [ -95.336814007262419, 30.028823252641189 ], [ -95.336685007193154, 30.02896225279046 ], [ -95.33633500667608, 30.030137253544471 ], [ -95.336225006545632, 30.030329253676339 ], [ -95.335983006499347, 30.030464253882457 ], [ -95.335533007064896, 30.030444253718706 ], [ -95.335263007158701, 30.030282253293183 ], [ -95.334998006336619, 30.029962253747708 ], [ -95.334722006686022, 30.029522252985689 ], [ -95.334607005953487, 30.029422253610058 ], [ -95.333255005606887, 30.029132253002704 ], [ -95.332560006249267, 30.029210253097144 ], [ -95.332055006026792, 30.029361253270228 ], [ -95.331152005125873, 30.030426253398545 ], [ -95.330930005775883, 30.030658254104114 ], [ -95.33078600532437, 30.030720253781745 ], [ -95.330541005646907, 30.030707253853095 ], [ -95.330246005419141, 30.03058225377189 ], [ -95.33004900551812, 30.030492253654117 ], [ -95.330061005808162, 30.030603253424168 ], [ -95.330143005533557, 30.031340253411777 ], [ -95.330196005578301, 30.031704253515642 ], [ -95.330247005457025, 30.031945254369145 ], [ -95.330312005713836, 30.032174253918047 ], [ -95.330391005435388, 30.032396254309891 ], [ -95.330482005222819, 30.03260425362862 ], [ -95.330575005655973, 30.032787254120816 ], [ -95.330660006057741, 30.032933254343458 ], [ -95.330865005874031, 30.033223254307533 ], [ -95.330983005377718, 30.033367254441576 ], [ -95.331130005629888, 30.033526254093832 ], [ -95.331292005493452, 30.033686254311416 ], [ -95.331474006345033, 30.033848254469419 ], [ -95.332333005642141, 30.034610254348511 ], [ -95.332425005863143, 30.034686253967603 ], [ -95.334212006984515, 30.036240254262687 ], [ -95.334315006691227, 30.036322255137151 ], [ -95.334400007043257, 30.036449254768268 ], [ -95.33466100684781, 30.036715254887827 ], [ -95.335103006941424, 30.03711025462621 ], [ -95.3350720073948, 30.037141254452866 ], [ -95.335006006534229, 30.037190254989607 ], [ -95.334841006793724, 30.037337254920377 ], [ -95.33469500688679, 30.037464255151729 ], [ -95.334507006291545, 30.037618255100138 ], [ -95.33431700625907, 30.037765254785857 ], [ -95.334130006381642, 30.037872254561758 ], [ -95.334018006478928, 30.037927254746748 ], [ -95.334595006339782, 30.038437254925604 ], [ -95.334649006485151, 30.038493255421521 ], [ -95.334726007210222, 30.03854725492598 ], [ -95.334775006987712, 30.038602255188799 ], [ -95.334843006471203, 30.03866025489819 ], [ -95.334903007237045, 30.038720254976166 ], [ -95.334976006731196, 30.038773255231526 ], [ -95.335235006832235, 30.039014255191642 ], [ -95.335338007427168, 30.039090255585599 ], [ -95.335412007088408, 30.039116255603673 ], [ -95.335519007217883, 30.039112255249076 ], [ -95.335583007130737, 30.039104255263332 ], [ -95.335929007278054, 30.03900825482707 ], [ -95.336188006920111, 30.038945254929544 ], [ -95.336635006999188, 30.038833255143885 ], [ -95.336700007124804, 30.038809255456293 ], [ -95.336764007344058, 30.038768255213956 ], [ -95.336813007391243, 30.038722255429747 ], [ -95.336899007270588, 30.038628255267721 ], [ -95.33738600778257, 30.038924254979943 ], [ -95.337813007288432, 30.039150255203285 ], [ -95.337760007394721, 30.039237254915172 ], [ -95.337740007659264, 30.039282255573909 ], [ -95.337710007244397, 30.039323255056043 ], [ -95.33762400795986, 30.039415255579243 ], [ -95.337590007450956, 30.039484255458472 ], [ -95.337487007389129, 30.039608255184042 ], [ -95.337365007639931, 30.039734255194375 ], [ -95.337229007772208, 30.03985325567378 ], [ -95.337082007096271, 30.039962255082621 ], [ -95.336937007940577, 30.040056255454971 ], [ -95.336794007297982, 30.04013525581237 ], [ -95.336638007604151, 30.040210255164837 ], [ -95.337016007477899, 30.040539255251058 ], [ -95.337140007810163, 30.040659255718783 ], [ -95.337205008142291, 30.040715255257201 ], [ -95.337272008021714, 30.04076225535886 ], [ -95.33735800804746, 30.040836255366504 ], [ -95.337522007447518, 30.040979255206 ], [ -95.337599007806361, 30.04103825598138 ], [ -95.337923007765752, 30.041323255861393 ], [ -95.338254007444249, 30.041623255349737 ], [ -95.338631007746173, 30.041944256023601 ], [ -95.338706008397679, 30.042000255561682 ], [ -95.338850008192949, 30.042095255851862 ], [ -95.338930007801693, 30.042136255895198 ], [ -95.339075008665958, 30.042197255503051 ], [ -95.339155007721502, 30.042226255437622 ], [ -95.339319008526942, 30.042262256125273 ], [ -95.339491007991256, 30.042285256045165 ], [ -95.339676008461922, 30.042298255349788 ], [ -95.339980008329121, 30.042302255563442 ], [ -95.340287008295704, 30.042293255541146 ], [ -95.340906008670927, 30.042282255568647 ], [ -95.340906008872452, 30.042720255886749 ], [ -95.34091500851325, 30.042806256102121 ], [ -95.34091700890653, 30.043093255922109 ], [ -95.340675008479792, 30.043109256192082 ], [ -95.340606008491946, 30.043121255450526 ], [ -95.340536008281504, 30.043139255839691 ], [ -95.340474008729458, 30.043160255858517 ], [ -95.340416008761707, 30.04318525583999 ], [ -95.340364008541826, 30.043214256105585 ], [ -95.34018500838944, 30.043347255533408 ], [ -95.340262008233935, 30.043407255600378 ], [ -95.340298009057207, 30.043456255688376 ], [ -95.340349008392593, 30.043490256102853 ], [ -95.340389009059493, 30.043534255527014 ], [ -95.340439008923298, 30.043579255636292 ], [ -95.340474008500863, 30.043621255890152 ], [ -95.340894009000749, 30.043996256429377 ], [ -95.340951009221243, 30.044051256296584 ], [ -95.341012008229995, 30.044098256145904 ], [ -95.341387008929033, 30.044433256220771 ], [ -95.341678008951575, 30.044685256076274 ], [ -95.341734008832631, 30.044725256179699 ], [ -95.341796008691247, 30.044754256359536 ], [ -95.341857009192282, 30.044776255894885 ], [ -95.341976009180271, 30.044794256221515 ], [ -95.342109008938863, 30.044807256277355 ], [ -95.342116008767519, 30.044971256043958 ], [ -95.34210800914552, 30.045040256102574 ], [ -95.342114008556663, 30.045099256529035 ], [ -95.342110009365655, 30.045162255846439 ], [ -95.342096009382772, 30.045226256493851 ], [ -95.342073009448953, 30.045287256551241 ], [ -95.34203900896425, 30.045341256337462 ], [ -95.341995009396982, 30.045398256722223 ], [ -95.341941009038308, 30.045453256399842 ], [ -95.341918009273087, 30.045473256296265 ], [ -95.342536009558785, 30.046076256315864 ], [ -95.342691009229824, 30.046223256301186 ], [ -95.343453009988124, 30.046948256326996 ], [ -95.343806009844982, 30.046747256177166 ], [ -95.343993009361256, 30.046666256625127 ], [ -95.344124009548011, 30.046592256533437 ], [ -95.344203009512739, 30.046549256380491 ], [ -95.344444009950678, 30.0463992565323 ], [ -95.344665010056772, 30.046273256338047 ], [ -95.344779010045713, 30.046201256370104 ], [ -95.344857009657673, 30.046159256681499 ], [ -95.3449020094167, 30.046136256056911 ], [ -95.345018010344418, 30.046064256159557 ], [ -95.34514701015442, 30.04600225656749 ], [ -95.345259010031228, 30.045932256097316 ], [ -95.345373009887069, 30.045870256318242 ], [ -95.34547500957558, 30.045806255800773 ], [ -95.345625009568636, 30.045721256653131 ], [ -95.345734009843923, 30.045660256074786 ], [ -95.345805010317775, 30.045619256036922 ], [ -95.345909009922366, 30.045561255835626 ], [ -95.346393009859568, 30.045288256308265 ], [ -95.34652001055062, 30.045215256287523 ], [ -95.34696801028025, 30.04496225576322 ], [ -95.347796011010431, 30.044516255796438 ], [ -95.347921010192664, 30.044432256200981 ], [ -95.348027010746591, 30.044387255512394 ], [ -95.348260010318342, 30.044251255455915 ], [ -95.348375010604073, 30.044189256009794 ], [ -95.348454010987268, 30.04414125579849 ], [ -95.349192010797353, 30.04373025562645 ], [ -95.349625011373476, 30.04349725552488 ], [ -95.349652011169809, 30.043481255871221 ], [ -95.349803011422878, 30.04339125554052 ], [ -95.349834011343873, 30.043377255430588 ], [ -95.349894010957726, 30.043349255916233 ], [ -95.350130011500553, 30.043219255193669 ], [ -95.350202011116323, 30.043172255250422 ], [ -95.350274010628027, 30.043137255180742 ], [ -95.350327011014045, 30.043108255757843 ], [ -95.350419011496939, 30.043057255281823 ], [ -95.350528010994736, 30.042991255063757 ], [ -95.350630011652328, 30.042939255186461 ], [ -95.35072701161144, 30.042877255042804 ], [ -95.351042011059633, 30.042692255196553 ], [ -95.351162011557108, 30.042640255395646 ], [ -95.351272011808462, 30.0425732555202 ], [ -95.351651011533619, 30.042363255563572 ], [ -95.351911011466314, 30.042224255599866 ], [ -95.352304011306828, 30.042004255056305 ], [ -95.352443011321697, 30.041935255152488 ], [ -95.353077012106738, 30.041580255434521 ], [ -95.353181011862375, 30.041525255368963 ], [ -95.353312012136769, 30.041456255009667 ], [ -95.35361101158864, 30.041289254968245 ], [ -95.353892012241786, 30.041136255159589 ], [ -95.354185012475725, 30.040969255364391 ], [ -95.35474201247122, 30.040668254693458 ], [ -95.354963012048856, 30.040545254423261 ], [ -95.355075012551339, 30.040482254595062 ], [ -95.355604011921699, 30.04019025512433 ], [ -95.355844011993966, 30.040051254998332 ], [ -95.355972012867099, 30.039985254912189 ], [ -95.356441013025702, 30.039720254334391 ], [ -95.356541012700987, 30.039654254447697 ], [ -95.35665301293237, 30.039603255044113 ], [ -95.356871013102761, 30.039489254939628 ], [ -95.357045012932872, 30.039390254961368 ], [ -95.357154012582257, 30.039335254765501 ], [ -95.357374012393734, 30.039212254213457 ], [ -95.357485012493029, 30.039144254755218 ], [ -95.357755012961505, 30.038999254499139 ], [ -95.358319012802099, 30.038679254520478 ], [ -95.358898012668604, 30.038365253832449 ], [ -95.359308013430748, 30.038143254291477 ], [ -95.359445013492646, 30.038090253784439 ], [ -95.359561013159507, 30.038018254254769 ], [ -95.359678013764409, 30.03795225416852 ], [ -95.359812013246412, 30.037897254007195 ], [ -95.360035013842747, 30.037762253872213 ], [ -95.360158013016488, 30.037702253809858 ], [ -95.360596013345983, 30.037453254299276 ], [ -95.360702013498354, 30.037399254063487 ], [ -95.360799013280896, 30.037343253552901 ], [ -95.361194013730653, 30.037133253629442 ], [ -95.361866013284754, 30.036768253476076 ], [ -95.361959013753875, 30.036712253982198 ], [ -95.362541013671247, 30.036387253482566 ], [ -95.362643014113459, 30.036332253527885 ], [ -95.363336013637252, 30.035956253417414 ], [ -95.364209014345533, 30.035499253666895 ], [ -95.364450013983756, 30.035362253098793 ], [ -95.364581014891499, 30.035304253609613 ], [ -95.364688014456206, 30.035235253774349 ], [ -95.364931014717726, 30.035105253708132 ], [ -95.365791014454658, 30.034645253049774 ], [ -95.367363014657784, 30.033788253446005 ], [ -95.367453014695514, 30.033741252768429 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 828, "Tract": "48201350804", "Area_SqMi": 4.2033364343940196, "total_2009": 977, "total_2010": 980, "total_2011": 1190, "total_2012": 1351, "total_2013": 1411, "total_2014": 1581, "total_2015": 1548, "total_2016": 1380, "total_2017": 1373, "total_2018": 1547, "total_2019": 1296, "total_2020": 1165, "age1": 424, "age2": 677, "age3": 248, "earn1": 416, "earn2": 428, "earn3": 505, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 197, "naics_s05": 17, "naics_s06": 27, "naics_s07": 313, "naics_s08": 18, "naics_s09": 1, "naics_s10": 9, "naics_s11": 15, "naics_s12": 49, "naics_s13": 1, "naics_s14": 33, "naics_s15": 100, "naics_s16": 141, "naics_s17": 117, "naics_s18": 262, "naics_s19": 49, "naics_s20": 0, "race1": 1026, "race2": 162, "race3": 10, "race4": 128, "race5": 2, "race6": 21, "ethnicity1": 865, "ethnicity2": 484, "edu1": 200, "edu2": 242, "edu3": 270, "edu4": 213, "Shape_Length": 58806.544830133244, "Shape_Area": 117181825.70869908, "total_2021": 1469, "total_2022": 1349 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.178794943735625, 29.517996154054615 ], [ -95.17877994389886, 29.51784815357373 ], [ -95.178737943449022, 29.51752815340549 ], [ -95.178680943829946, 29.517456153189482 ], [ -95.178582943748268, 29.517386153990216 ], [ -95.178331943954944, 29.517208153493346 ], [ -95.177972943664756, 29.51703315350467 ], [ -95.177617943035827, 29.516946153083079 ], [ -95.176556942674708, 29.516832153426581 ], [ -95.176246942677366, 29.516856153496342 ], [ -95.17598294247118, 29.516956153940725 ], [ -95.175845942657219, 29.517033153992827 ], [ -95.175562942815816, 29.517383153349932 ], [ -95.175438942440195, 29.517947153704942 ], [ -95.175277942899768, 29.518155154113977 ], [ -95.17504094305248, 29.518291154083855 ], [ -95.174680942942629, 29.518227153451299 ], [ -95.174459942372593, 29.518068154261961 ], [ -95.174263942021227, 29.517838153452693 ], [ -95.174210942820963, 29.517766153806736 ], [ -95.174174942520168, 29.517717153915935 ], [ -95.173991942334055, 29.517511153801745 ], [ -95.173854942528422, 29.51737315404511 ], [ -95.173723942344168, 29.517202153663785 ], [ -95.173645942448744, 29.517003153459285 ], [ -95.17359394267379, 29.516784153695021 ], [ -95.173580942537214, 29.516636153647752 ], [ -95.173588942644187, 29.51654215352 ], [ -95.173593942720188, 29.516517153658388 ], [ -95.173590941770229, 29.516464153790576 ], [ -95.173624942190187, 29.516387153220084 ], [ -95.173664942417346, 29.516298153273716 ], [ -95.173893942804483, 29.516046153066164 ], [ -95.17429394264434, 29.515739153714431 ], [ -95.17437494194084, 29.515535153407235 ], [ -95.17433394203772, 29.515182153041728 ], [ -95.174134941873106, 29.51491215358304 ], [ -95.173786942335042, 29.514658153011275 ], [ -95.173424941636071, 29.514486153555612 ], [ -95.172646941463086, 29.514259153348597 ], [ -95.172113942295681, 29.514226153174508 ], [ -95.171828942213068, 29.514255153259782 ], [ -95.171394941248082, 29.514457153470808 ], [ -95.17094794124516, 29.514969152907984 ], [ -95.170597940970907, 29.515155153159938 ], [ -95.17031094148382, 29.51513915294754 ], [ -95.16995894134854, 29.515041153410511 ], [ -95.169674940924921, 29.514897153712596 ], [ -95.169443941012872, 29.514644153454245 ], [ -95.169341940868122, 29.514371153098526 ], [ -95.169262940739486, 29.513727153200072 ], [ -95.169118940810691, 29.51347215346695 ], [ -95.169107940504119, 29.513452153280245 ], [ -95.16907394123028, 29.513393153256647 ], [ -95.169062940623917, 29.513374153326065 ], [ -95.168750940569325, 29.513061152906936 ], [ -95.168686940836679, 29.512997152715506 ], [ -95.168639940930234, 29.512973153146675 ], [ -95.168340941052975, 29.512859152758068 ], [ -95.168028941001509, 29.512769152863449 ], [ -95.167746941058581, 29.512697153295846 ], [ -95.167647940246468, 29.51265615278415 ], [ -95.167629940844122, 29.512648152721333 ], [ -95.167504940914696, 29.512554153362242 ], [ -95.167443940200286, 29.512475153234647 ], [ -95.167391940977041, 29.512350153224233 ], [ -95.167382940782019, 29.512252153068719 ], [ -95.167391940437057, 29.512154152670405 ], [ -95.167403940464538, 29.512078153063808 ], [ -95.167417940833658, 29.511992153046322 ], [ -95.16745294013721, 29.511852152881282 ], [ -95.167486940513001, 29.511756153093682 ], [ -95.167538940622038, 29.511599152818071 ], [ -95.167608940577011, 29.511486152400057 ], [ -95.167716941001743, 29.511331152280452 ], [ -95.167779940054004, 29.511240152883527 ], [ -95.167784940893725, 29.511226152559448 ], [ -95.167872940691495, 29.511143152597086 ], [ -95.168062941080038, 29.510961152374495 ], [ -95.168231940445423, 29.510859152798137 ], [ -95.168265940918857, 29.51083815230831 ], [ -95.168907941135885, 29.510717152974884 ], [ -95.169645940651208, 29.510707152120712 ], [ -95.169940941477151, 29.510610152553959 ], [ -95.170491941431294, 29.510429152455398 ], [ -95.170832940950845, 29.510227152384346 ], [ -95.171065941775993, 29.510024151997875 ], [ -95.171250941568658, 29.50970315180113 ], [ -95.171309941863171, 29.509458151880395 ], [ -95.171209941077421, 29.508709152065187 ], [ -95.171041941155067, 29.508191152138163 ], [ -95.171002940844645, 29.507725152232933 ], [ -95.170941941431423, 29.507553152032138 ], [ -95.170758940910943, 29.507294151901679 ], [ -95.170736941477642, 29.507263151482302 ], [ -95.170615941264231, 29.507145151897394 ], [ -95.1704809413569, 29.507035151338968 ], [ -95.170324941182855, 29.506937151566117 ], [ -95.170173940771136, 29.506880151576812 ], [ -95.169875940660262, 29.506797151324701 ], [ -95.169389940538721, 29.506711151799426 ], [ -95.169021940574467, 29.506643151498952 ], [ -95.168635940426, 29.506541151269147 ], [ -95.16819794073642, 29.50638615142844 ], [ -95.167729939909492, 29.50616015172082 ], [ -95.167534940525854, 29.50605015188837 ], [ -95.16736993993463, 29.505930151685813 ], [ -95.167291940230882, 29.505839151640547 ], [ -95.16723194006768, 29.505749151620602 ], [ -95.16720594061394, 29.505579151620083 ], [ -95.167201939706302, 29.505372151341088 ], [ -95.16720594016725, 29.505314151024102 ], [ -95.16725693988478, 29.50505415096686 ], [ -95.167273940206428, 29.504969151406343 ], [ -95.167296940418879, 29.504904151488393 ], [ -95.167335940140532, 29.504858151523873 ], [ -95.167395940219663, 29.504813150996544 ], [ -95.167436940337424, 29.504788151777461 ], [ -95.167469940678799, 29.504768151094186 ], [ -95.167527939707185, 29.504732151541273 ], [ -95.167657940642428, 29.50462015123902 ], [ -95.167668939941052, 29.504604150845886 ], [ -95.167705940739083, 29.504560150876991 ], [ -95.167726940179236, 29.504496151567338 ], [ -95.167731940078696, 29.504413151441085 ], [ -95.167683940622766, 29.504349151578626 ], [ -95.167630940695489, 29.504312151050851 ], [ -95.16760993975079, 29.504297151430869 ], [ -95.167523939729321, 29.504248151018192 ], [ -95.167363940611338, 29.504187151237257 ], [ -95.167231940104955, 29.504130150933104 ], [ -95.167165939790365, 29.504078151567807 ], [ -95.167134939978993, 29.50405615119519 ], [ -95.167100939609966, 29.504026151059204 ], [ -95.167074939985923, 29.503988151603245 ], [ -95.16705493994516, 29.503933150771193 ], [ -95.167044940555172, 29.503883151029473 ], [ -95.167030940172708, 29.503820151268918 ], [ -95.167031940216262, 29.503801151315653 ], [ -95.167045939682694, 29.503570151510196 ], [ -95.16726694012074, 29.502779151132433 ], [ -95.167216940332054, 29.502624151094835 ], [ -95.167195939891656, 29.502558151081669 ], [ -95.167145939763714, 29.502487151269396 ], [ -95.167088940155026, 29.502405150822874 ], [ -95.166783940077806, 29.502224150455547 ], [ -95.166770940234187, 29.502220151151874 ], [ -95.166623939811615, 29.5021711509022 ], [ -95.166530939779463, 29.502141150955875 ], [ -95.166457939311016, 29.502116150922145 ], [ -95.166438940159139, 29.502110150478799 ], [ -95.16593393933239, 29.502108150775687 ], [ -95.165812939512577, 29.50210815055647 ], [ -95.16575993911195, 29.502108151158271 ], [ -95.165699939741671, 29.502108150448525 ], [ -95.165515939953735, 29.502188150833927 ], [ -95.164915939470347, 29.502312150678399 ], [ -95.164903939339126, 29.502312151178383 ], [ -95.164838939083552, 29.502314150664631 ], [ -95.164649939218407, 29.502335151004637 ], [ -95.164370939329174, 29.502327151129673 ], [ -95.164274939049974, 29.502366150924427 ], [ -95.164072939040196, 29.502340150900299 ], [ -95.163848938646368, 29.502260150714058 ], [ -95.163615938947572, 29.502153150754367 ], [ -95.16345493910238, 29.502052150695203 ], [ -95.163296939026665, 29.5019271505505 ], [ -95.16313893910619, 29.501746151159484 ], [ -95.163087939081521, 29.501658150679134 ], [ -95.163027938528558, 29.50158015088553 ], [ -95.163004939012012, 29.501525150797249 ], [ -95.162968938413442, 29.501442150746733 ], [ -95.16292793888968, 29.501345150482599 ], [ -95.162908938609888, 29.501076150717601 ], [ -95.162902939319423, 29.500987150937718 ], [ -95.162924938543938, 29.500736150603252 ], [ -95.16293893855034, 29.500688150342707 ], [ -95.163046938887433, 29.500299150262968 ], [ -95.163095938374482, 29.500124150525931 ], [ -95.163109939308654, 29.500073150355014 ], [ -95.163126938569263, 29.500049150665863 ], [ -95.163267939181495, 29.49984415061849 ], [ -95.163306938700629, 29.499787150576388 ], [ -95.163363938399982, 29.499703150734277 ], [ -95.163384938766754, 29.499684150790237 ], [ -95.163627938884446, 29.499461150488372 ], [ -95.163657939441052, 29.499435150566441 ], [ -95.16415993870244, 29.498978149807396 ], [ -95.16427193881627, 29.498708149894721 ], [ -95.164276939428603, 29.498528150299766 ], [ -95.164223939568771, 29.498357150417931 ], [ -95.164107939189051, 29.498237149952878 ], [ -95.163955939303122, 29.498079150136636 ], [ -95.163937939073733, 29.498061150321355 ], [ -95.163820939145026, 29.498005150147158 ], [ -95.163711938655595, 29.497953150390352 ], [ -95.163681938449457, 29.497942150128377 ], [ -95.163660939391278, 29.497927149868829 ], [ -95.16338093881518, 29.497809150103482 ], [ -95.163013938917643, 29.497626150067571 ], [ -95.16285893912341, 29.497548149708514 ], [ -95.161891938890136, 29.49732215032693 ], [ -95.161616938507933, 29.497302150245773 ], [ -95.161302938357892, 29.497326150033981 ], [ -95.160930938206803, 29.497430149738307 ], [ -95.160707938442314, 29.497525150243838 ], [ -95.160671938172612, 29.497537150248515 ], [ -95.160638938036712, 29.497551150319669 ], [ -95.160449938306414, 29.497631149898105 ], [ -95.160411937834951, 29.497654150458722 ], [ -95.160384937680021, 29.497670150072921 ], [ -95.160343937559233, 29.49769514984089 ], [ -95.160301938477602, 29.497720149783301 ], [ -95.16027493785127, 29.497737150540125 ], [ -95.159510937679656, 29.498199150303172 ], [ -95.159397938361735, 29.498221149904278 ], [ -95.158708937836465, 29.49835215033066 ], [ -95.158382937078784, 29.49832315036263 ], [ -95.157671937128285, 29.498148150127463 ], [ -95.156728937365031, 29.498190150482738 ], [ -95.156431937002992, 29.498304150706897 ], [ -95.156241937467115, 29.498377150786432 ], [ -95.155578936567352, 29.498833150287322 ], [ -95.154875937062187, 29.499415150906376 ], [ -95.153882936616824, 29.499990150961722 ], [ -95.153094936434059, 29.500266151253829 ], [ -95.152775936073482, 29.500378150737976 ], [ -95.152233936474332, 29.500441150570147 ], [ -95.152164936131854, 29.500449151329867 ], [ -95.151511936386854, 29.500393151273617 ], [ -95.151381936137795, 29.500294151066093 ], [ -95.151109935665801, 29.500087150621756 ], [ -95.150835935542887, 29.49968815073602 ], [ -95.150693935468553, 29.499274151099758 ], [ -95.150647935196844, 29.49888015048565 ], [ -95.150578935902573, 29.498801150680013 ], [ -95.150473935875624, 29.498681150574555 ], [ -95.150233935128043, 29.498542150752566 ], [ -95.149956934987259, 29.498476150232541 ], [ -95.149794935379191, 29.498483150526063 ], [ -95.149629935338197, 29.498491150217518 ], [ -95.149080935506106, 29.49865215037126 ], [ -95.149063935433162, 29.49865715028994 ], [ -95.148891935132383, 29.498708150696196 ], [ -95.148627935585253, 29.49893415090656 ], [ -95.148416935283961, 29.49920015088642 ], [ -95.147939935151769, 29.499997151289275 ], [ -95.147788935230039, 29.50037015088672 ], [ -95.147502934887484, 29.501531150975691 ], [ -95.147282934593647, 29.501874151343209 ], [ -95.147243935105323, 29.501904151207036 ], [ -95.14703593500866, 29.502064151118091 ], [ -95.146595934820169, 29.502260151207953 ], [ -95.14615093471923, 29.502330151254132 ], [ -95.145698934573858, 29.502335151967245 ], [ -95.144954934251473, 29.50264015183874 ], [ -95.144571933977659, 29.503062151652873 ], [ -95.144503933707483, 29.503203152079351 ], [ -95.144080934250965, 29.504084151656734 ], [ -95.144061934270283, 29.504124151749906 ], [ -95.143740934364175, 29.504661151915897 ], [ -95.143560933577874, 29.504943152497958 ], [ -95.143360934415455, 29.505228152568876 ], [ -95.14319093376568, 29.505448152273509 ], [ -95.143035933934868, 29.505593152160937 ], [ -95.142739933727711, 29.505828151973361 ], [ -95.14270893368527, 29.505860152696993 ], [ -95.142124933873973, 29.506197152860565 ], [ -95.141713933343226, 29.506366152777119 ], [ -95.141030933016111, 29.506493152261051 ], [ -95.13992693294243, 29.506404152999909 ], [ -95.139285932807553, 29.506430152191978 ], [ -95.138528932402835, 29.506460152659667 ], [ -95.136445932455018, 29.506222152383376 ], [ -95.135704932160209, 29.506198152726522 ], [ -95.134347931597546, 29.506259152599267 ], [ -95.134237932239486, 29.506301152371559 ], [ -95.133896932012632, 29.506430152419441 ], [ -95.133845931680568, 29.506399152580354 ], [ -95.133459931397894, 29.506162152690152 ], [ -95.132900931721565, 29.50593315236744 ], [ -95.132713931422657, 29.505831152893219 ], [ -95.132342930772538, 29.505629152930027 ], [ -95.13199193130788, 29.505398152949176 ], [ -95.131621930648137, 29.505156152316154 ], [ -95.131247930637542, 29.505054152784446 ], [ -95.130838930746208, 29.504943152914407 ], [ -95.130507930403411, 29.504946152791568 ], [ -95.13038393037057, 29.504947152284362 ], [ -95.130213930646192, 29.504949152520666 ], [ -95.130137931033701, 29.504969152203593 ], [ -95.129623930862266, 29.505104153090493 ], [ -95.129524930800514, 29.50515115298753 ], [ -95.129370930226486, 29.505226153104562 ], [ -95.129157930173037, 29.505395152649044 ], [ -95.129140930080382, 29.505425152625115 ], [ -95.128956930322573, 29.505748153223383 ], [ -95.128838930107179, 29.506233152845077 ], [ -95.128869930267228, 29.506682152697799 ], [ -95.128907930922608, 29.507239152774115 ], [ -95.128903930710209, 29.507292152954516 ], [ -95.12890393007531, 29.507461153604222 ], [ -95.128888930789387, 29.507575153010055 ], [ -95.12887093085422, 29.50771915339493 ], [ -95.128818930171192, 29.507940153001019 ], [ -95.128686930474828, 29.508224153397556 ], [ -95.128581930467931, 29.508440153759761 ], [ -95.128412929970878, 29.508656153517556 ], [ -95.128261930537008, 29.508838153091972 ], [ -95.128003929810916, 29.509062153790634 ], [ -95.127883930660474, 29.509151153678808 ], [ -95.127773929938741, 29.509233153183295 ], [ -95.127531930035332, 29.509371153614367 ], [ -95.127400929818705, 29.509446153590609 ], [ -95.127331930274991, 29.509480153613577 ], [ -95.12730993004287, 29.509492153275207 ], [ -95.127184930450866, 29.50955215387286 ], [ -95.127143929925339, 29.509572154086399 ], [ -95.126954929846249, 29.509653153829714 ], [ -95.126529929523073, 29.509805153498359 ], [ -95.126275930280514, 29.50989515335278 ], [ -95.126112929434498, 29.509963153408847 ], [ -95.12571292983597, 29.510084154137761 ], [ -95.125100929204763, 29.510268154272275 ], [ -95.124017929766666, 29.510489153975655 ], [ -95.122949929190256, 29.510549153623135 ], [ -95.122017928529601, 29.510414153732917 ], [ -95.121680928661618, 29.510280154125674 ], [ -95.121668928234641, 29.510275153861343 ], [ -95.121455928355942, 29.510190153655532 ], [ -95.121402928225038, 29.510150154359295 ], [ -95.121341928443215, 29.510118153559265 ], [ -95.121113928834816, 29.50996115389378 ], [ -95.120952928514541, 29.509814153902141 ], [ -95.120905928948773, 29.509752153492737 ], [ -95.120783928024593, 29.509590154246894 ], [ -95.120729928867036, 29.509511154327576 ], [ -95.120671927935106, 29.509426153889251 ], [ -95.120574928596653, 29.509283154238236 ], [ -95.120398928275634, 29.50898915396392 ], [ -95.120244928343297, 29.50873515341258 ], [ -95.119370928369534, 29.507310153151074 ], [ -95.119341927772496, 29.50727315369668 ], [ -95.119305928228883, 29.50722515371675 ], [ -95.119258927723735, 29.507163153507772 ], [ -95.119214927851147, 29.507120153731609 ], [ -95.119199927612485, 29.507106153840041 ], [ -95.119113927663108, 29.507044153225557 ], [ -95.119001927443918, 29.506988153072669 ], [ -95.118840927902554, 29.506953153243064 ], [ -95.118777927706162, 29.506944153796937 ], [ -95.118679927758777, 29.506946153045778 ], [ -95.118495928068143, 29.506988153163537 ], [ -95.1183109277856, 29.507051153424271 ], [ -95.118133927986506, 29.507142153645351 ], [ -95.118067927267631, 29.507182153798983 ], [ -95.118005928012437, 29.507200153741646 ], [ -95.117968927441709, 29.507241153270652 ], [ -95.117820927865324, 29.50734515323408 ], [ -95.117675927201034, 29.507477153339 ], [ -95.117523927891298, 29.507666154005165 ], [ -95.117404927515793, 29.507794153258484 ], [ -95.117364927156814, 29.507844153812222 ], [ -95.11735592702756, 29.507856153966962 ], [ -95.117338927820541, 29.507875153945307 ], [ -95.117318927648199, 29.507900153311667 ], [ -95.11723992756221, 29.507975153736453 ], [ -95.1172029276795, 29.508022153890824 ], [ -95.11715992718635, 29.508059153801312 ], [ -95.117280927544726, 29.508267153298597 ], [ -95.119458927847532, 29.511889154521644 ], [ -95.119806928395207, 29.512468154568378 ], [ -95.123439929236213, 29.518511155544104 ], [ -95.124856930296431, 29.52099415588912 ], [ -95.12495292998041, 29.521162155795555 ], [ -95.125041930144235, 29.521318156083872 ], [ -95.125948930623224, 29.522908156806363 ], [ -95.126837930576002, 29.524235156390702 ], [ -95.12761693039721, 29.525233157023457 ], [ -95.130120932070781, 29.527893157451949 ], [ -95.130721931814392, 29.528542157336876 ], [ -95.13079693131408, 29.528623157732863 ], [ -95.131119931919272, 29.528393157603013 ], [ -95.131327932096667, 29.528245157290041 ], [ -95.131972931832394, 29.52778515733949 ], [ -95.132404931957353, 29.527481156847212 ], [ -95.132805932567678, 29.527199157147269 ], [ -95.13311593232234, 29.526934156600682 ], [ -95.133169932565607, 29.526889157061632 ], [ -95.13322593281697, 29.526840157373972 ], [ -95.133823932124486, 29.52642715735276 ], [ -95.13459993293958, 29.525884156412413 ], [ -95.134911932553095, 29.525706157007807 ], [ -95.135335933226401, 29.52546415623317 ], [ -95.135717933329829, 29.525316156720113 ], [ -95.136093933519149, 29.525172156247301 ], [ -95.137737933503999, 29.524870156163672 ], [ -95.137844933378844, 29.524851156771287 ], [ -95.138133933135236, 29.524798156440607 ], [ -95.138181933455954, 29.524789156741285 ], [ -95.138770933261355, 29.524750156199087 ], [ -95.139565934362054, 29.524668156697803 ], [ -95.140190933785135, 29.524603155981008 ], [ -95.140678933827957, 29.524553156261373 ], [ -95.141058934360998, 29.524513156161156 ], [ -95.141551934027689, 29.524464156149929 ], [ -95.142766935173, 29.524344156320279 ], [ -95.148939935884542, 29.523733156149387 ], [ -95.150434936200142, 29.52358515547348 ], [ -95.151899936935905, 29.523440155608597 ], [ -95.153900937107309, 29.523193155729047 ], [ -95.154154938045508, 29.52316215556295 ], [ -95.156652938449199, 29.522854155286137 ], [ -95.157596938798818, 29.52274315562827 ], [ -95.159751938735283, 29.522521155525844 ], [ -95.16051793885444, 29.52244315543928 ], [ -95.161733939958637, 29.52236715512937 ], [ -95.161870939632394, 29.522358154924856 ], [ -95.162527939191847, 29.522268154707575 ], [ -95.163081939398708, 29.52221415474769 ], [ -95.16371293950877, 29.522136154989543 ], [ -95.164270940042584, 29.522082154810384 ], [ -95.164320940604654, 29.522077154646382 ], [ -95.164818940291639, 29.522024155015245 ], [ -95.169461941801728, 29.521530154828483 ], [ -95.169650941504983, 29.521510155167753 ], [ -95.172781941857849, 29.521198154475165 ], [ -95.173428942443039, 29.521134154921263 ], [ -95.175513943383052, 29.520527154455706 ], [ -95.176481942661439, 29.52001115388958 ], [ -95.177963943213982, 29.518720154027264 ], [ -95.178671943481092, 29.518104153751345 ], [ -95.178794943735625, 29.517996154054615 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 829, "Tract": "48201554908", "Area_SqMi": 2.162020322674016, "total_2009": 253, "total_2010": 239, "total_2011": 207, "total_2012": 212, "total_2013": 199, "total_2014": 195, "total_2015": 205, "total_2016": 172, "total_2017": 201, "total_2018": 219, "total_2019": 239, "total_2020": 132, "age1": 86, "age2": 136, "age3": 58, "earn1": 69, "earn2": 124, "earn3": 87, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 38, "naics_s05": 3, "naics_s06": 6, "naics_s07": 5, "naics_s08": 6, "naics_s09": 5, "naics_s10": 15, "naics_s11": 17, "naics_s12": 39, "naics_s13": 2, "naics_s14": 24, "naics_s15": 16, "naics_s16": 78, "naics_s17": 0, "naics_s18": 26, "naics_s19": 0, "naics_s20": 0, "race1": 210, "race2": 46, "race3": 0, "race4": 17, "race5": 1, "race6": 6, "ethnicity1": 210, "ethnicity2": 70, "edu1": 40, "edu2": 56, "edu3": 72, "edu4": 26, "Shape_Length": 36077.750618442966, "Shape_Area": 60273426.261387616, "total_2021": 129, "total_2022": 280 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.564960067708711, 30.082931256413918 ], [ -95.565072067759729, 30.082470256364147 ], [ -95.564392067536133, 30.081793256384046 ], [ -95.564282068040711, 30.081684255919537 ], [ -95.56425806728501, 30.081663256302793 ], [ -95.564173067388808, 30.081587255590414 ], [ -95.56412006790228, 30.081540255838483 ], [ -95.564063067099042, 30.081489255790267 ], [ -95.561676067316384, 30.07935725530626 ], [ -95.561584066518321, 30.079274255144455 ], [ -95.561503066588713, 30.079207255600988 ], [ -95.559264065828131, 30.077335255206151 ], [ -95.558506065837832, 30.076710254820647 ], [ -95.557248065293493, 30.075623255145949 ], [ -95.5569470650059, 30.075404255015219 ], [ -95.556732065654273, 30.075247255014077 ], [ -95.556633065301142, 30.075320254558605 ], [ -95.55641306559717, 30.075482254922981 ], [ -95.556134064758936, 30.07568725527338 ], [ -95.555761065679818, 30.075939254809473 ], [ -95.555366065285568, 30.076169255403574 ], [ -95.55500406547948, 30.076356254784571 ], [ -95.554345065256953, 30.076651254974021 ], [ -95.553987064746025, 30.076819254855039 ], [ -95.553056064645588, 30.077115255347433 ], [ -95.552442064899481, 30.077236255345603 ], [ -95.55179506388636, 30.077323255261891 ], [ -95.551778064497455, 30.07732525514848 ], [ -95.551455064213414, 30.077356255871809 ], [ -95.550797063697217, 30.077389255686125 ], [ -95.550117063439032, 30.077411255372176 ], [ -95.546056062805448, 30.077455255879439 ], [ -95.545265062285026, 30.077461255381841 ], [ -95.544795062677338, 30.077466255582934 ], [ -95.544082062754555, 30.077532255901232 ], [ -95.543589062371922, 30.077619255772916 ], [ -95.543085061609517, 30.07772925629661 ], [ -95.542679062215669, 30.077838255522106 ], [ -95.542251061734447, 30.077981255514331 ], [ -95.541923062187948, 30.07811325612272 ], [ -95.541517061233407, 30.078299255867815 ], [ -95.541133061392159, 30.078496256464689 ], [ -95.540887061644199, 30.078639256121328 ], [ -95.540481060930929, 30.078891255865305 ], [ -95.540108061693502, 30.079143256292074 ], [ -95.539944061643254, 30.079275256280336 ], [ -95.53968106094527, 30.079505256196949 ], [ -95.539330061690023, 30.079834256206407 ], [ -95.538957061109357, 30.080250256128199 ], [ -95.538760060847324, 30.080492256752088 ], [ -95.538336061170142, 30.081060256761482 ], [ -95.537225060851597, 30.082553256678228 ], [ -95.536874061177713, 30.083046257436401 ], [ -95.53665506037926, 30.083320256994934 ], [ -95.536545061005398, 30.083441257703377 ], [ -95.536194060231935, 30.083791256922353 ], [ -95.535986060767158, 30.083978257774341 ], [ -95.535657060861411, 30.084252257173386 ], [ -95.535372060026646, 30.08446025761274 ], [ -95.534944060334581, 30.084734257236573 ], [ -95.534627060317476, 30.084932258062196 ], [ -95.534199060132622, 30.085151257818687 ], [ -95.533925059978117, 30.085282257819134 ], [ -95.533454060268625, 30.085469257537007 ], [ -95.533136059352941, 30.085589257644621 ], [ -95.532785060233834, 30.085688257899282 ], [ -95.532522059615999, 30.085754257782625 ], [ -95.531941059435681, 30.085874257820908 ], [ -95.531557059620525, 30.085951258221364 ], [ -95.529585058673703, 30.086321258066441 ], [ -95.528254058141357, 30.08657125834786 ], [ -95.528169058493262, 30.086587258409452 ], [ -95.527934059046899, 30.086642258563788 ], [ -95.52772005825048, 30.086702258253894 ], [ -95.527506058778314, 30.086768258578637 ], [ -95.527194058621731, 30.086867258038499 ], [ -95.526947057842605, 30.086949258012041 ], [ -95.527106058357049, 30.08710125875875 ], [ -95.527151058676097, 30.087144258050948 ], [ -95.527410058082495, 30.087391258018918 ], [ -95.527522058077707, 30.087497258786854 ], [ -95.52813105870267, 30.088093258723831 ], [ -95.528234058496153, 30.088194258339556 ], [ -95.529057059430841, 30.088984258759076 ], [ -95.53134805943057, 30.091162259157109 ], [ -95.531661059603181, 30.091467258854134 ], [ -95.531877059422499, 30.091661259003612 ], [ -95.532084059757779, 30.091864259519593 ], [ -95.532195059925129, 30.091965259042261 ], [ -95.532412060325669, 30.092174258812019 ], [ -95.532629059987073, 30.092372259052286 ], [ -95.53349606027659, 30.093198259338621 ], [ -95.533719059981053, 30.093415258924047 ], [ -95.534427060758375, 30.094085259603482 ], [ -95.534665060188118, 30.094322259604603 ], [ -95.535138060932226, 30.094773259439762 ], [ -95.535487060621435, 30.095091259957869 ], [ -95.535987060722789, 30.095537259937355 ], [ -95.536035060713061, 30.095580260101521 ], [ -95.537373061343928, 30.096721259626459 ], [ -95.538591062257694, 30.097757260286521 ], [ -95.53895706241326, 30.098075259839344 ], [ -95.539050061999944, 30.098154260023762 ], [ -95.539556062474844, 30.098580260016707 ], [ -95.539686062125881, 30.098690260617865 ], [ -95.539830062651149, 30.098808260349678 ], [ -95.539859061965672, 30.098832260166706 ], [ -95.540020061897209, 30.098976260249696 ], [ -95.540199062154471, 30.099128260271989 ], [ -95.540292061871469, 30.099199260441519 ], [ -95.540634062053527, 30.09948826027864 ], [ -95.540713062293023, 30.099563260054211 ], [ -95.540805062652794, 30.099627260319728 ], [ -95.540869062108243, 30.09969126038996 ], [ -95.541090062304974, 30.099877260074617 ], [ -95.541161062094758, 30.099941260465673 ], [ -95.541234062706963, 30.099994260871618 ], [ -95.541301062966895, 30.100056260292913 ], [ -95.541387062871223, 30.100121260109145 ], [ -95.541614062549527, 30.100326260583024 ], [ -95.54166606238833, 30.100374260316329 ], [ -95.542699063206655, 30.101255260266296 ], [ -95.542900063138916, 30.101412260612616 ], [ -95.543007063508171, 30.101494260353078 ], [ -95.543056063379396, 30.101553260842575 ], [ -95.543183063201042, 30.101666260932149 ], [ -95.543259062740603, 30.101719260526952 ], [ -95.543316062866637, 30.101775260813351 ], [ -95.543740062947947, 30.102137260371581 ], [ -95.543872062920215, 30.102241261054481 ], [ -95.543976063259279, 30.102344261269199 ], [ -95.544033063407738, 30.102385260386686 ], [ -95.544423063098563, 30.102720261095769 ], [ -95.544568063828692, 30.102834261151674 ], [ -95.544723063682937, 30.102963260684085 ], [ -95.544944063896992, 30.103163260586012 ], [ -95.545060064029869, 30.103284261250469 ], [ -95.545127063659038, 30.103362261178418 ], [ -95.545179063806074, 30.1034382610788 ], [ -95.545281063555535, 30.103611260738763 ], [ -95.545530063978973, 30.103654261398816 ], [ -95.547364064820599, 30.103973260849148 ], [ -95.547380064770294, 30.103788261238211 ], [ -95.547378063851497, 30.103682261038873 ], [ -95.547373064765353, 30.103403260685543 ], [ -95.547392064766655, 30.103337260658542 ], [ -95.547456064179542, 30.10326526083988 ], [ -95.547481064681079, 30.103238261210912 ], [ -95.547487064848738, 30.103183261257943 ], [ -95.547411064312314, 30.103002261266624 ], [ -95.547399064709893, 30.102947261235308 ], [ -95.547411064497325, 30.102892260995862 ], [ -95.547481064146339, 30.102809260955159 ], [ -95.547525064529282, 30.102738261136228 ], [ -95.547557064289236, 30.102655261011602 ], [ -95.547557064732572, 30.102589260490813 ], [ -95.547544064361958, 30.10252326100386 ], [ -95.547519064582346, 30.102463261149122 ], [ -95.54744306446095, 30.102018260744615 ], [ -95.547437064130733, 30.101919260634819 ], [ -95.547468063882334, 30.101853260916609 ], [ -95.547494064143294, 30.101842260691598 ], [ -95.547538064097225, 30.101842260466071 ], [ -95.547595064214121, 30.101858260892321 ], [ -95.5479550643675, 30.102078260446838 ], [ -95.548025064080932, 30.102100260448619 ], [ -95.548094064943342, 30.102100261066358 ], [ -95.548240064084737, 30.102040260246195 ], [ -95.548315064741558, 30.101996260681933 ], [ -95.548423064768841, 30.101869260231567 ], [ -95.548632064129251, 30.101424260026807 ], [ -95.548670064086565, 30.101358260119024 ], [ -95.548733065085969, 30.101314260088355 ], [ -95.548828064880169, 30.101281260866287 ], [ -95.54940906463716, 30.101122260142034 ], [ -95.549498064546455, 30.101089260817371 ], [ -95.549574064779549, 30.101039260077197 ], [ -95.550010065278116, 30.100819260091427 ], [ -95.550206064951766, 30.100764260258469 ], [ -95.550655065333274, 30.100682260650931 ], [ -95.550794064652464, 30.100682260423852 ], [ -95.551173065065768, 30.100737260503038 ], [ -95.551249065127692, 30.10073126038268 ], [ -95.551319065053718, 30.100704259880779 ], [ -95.551654065057818, 30.100440260099447 ], [ -95.551749065610693, 30.100396259834351 ], [ -95.551926065250868, 30.100374260156929 ], [ -95.552204064921497, 30.100429260264274 ], [ -95.552343065286038, 30.100418260342799 ], [ -95.552507065675172, 30.100336259988936 ], [ -95.552804065077808, 30.100055259739712 ], [ -95.552899065177982, 30.099907260185642 ], [ -95.552912065655391, 30.099868259765472 ], [ -95.552887065854691, 30.099764260266429 ], [ -95.552514065231165, 30.099577259764505 ], [ -95.552299065040046, 30.099417259765328 ], [ -95.552223065713918, 30.099330260086578 ], [ -95.55219106577394, 30.099269260287766 ], [ -95.552160065789153, 30.099126259490212 ], [ -95.552166065295751, 30.098813259774943 ], [ -95.552160064871771, 30.09873625974835 ], [ -95.552109065711406, 30.098620259477389 ], [ -95.552065065769071, 30.09825225944277 ], [ -95.552065065666056, 30.098076259423188 ], [ -95.552084064796574, 30.097961259825187 ], [ -95.552185065652921, 30.097823259272566 ], [ -95.552496065007716, 30.097507259552366 ], [ -95.55271606504725, 30.097285259557299 ], [ -95.553304065533339, 30.096773259453926 ], [ -95.553355065578529, 30.09671825928968 ], [ -95.553386065058319, 30.096652259110122 ], [ -95.553399065093828, 30.096575259681721 ], [ -95.553399065382607, 30.09638325969285 ], [ -95.553437065109009, 30.096218258892218 ], [ -95.553481065679847, 30.096147258934316 ], [ -95.553557065203123, 30.096070258807195 ], [ -95.553633065789427, 30.09602025944341 ], [ -95.55419506573898, 30.095789259240071 ], [ -95.554499066199796, 30.095608259083694 ], [ -95.554575065288347, 30.095536259263589 ], [ -95.554575065598627, 30.09539925900312 ], [ -95.554543065278196, 30.095185258556157 ], [ -95.554423065547368, 30.094932258598469 ], [ -95.55415706578529, 30.094651258831412 ], [ -95.554018065688552, 30.094360258988736 ], [ -95.55386906603789, 30.094086258906213 ], [ -95.553860065599793, 30.094069258430043 ], [ -95.553734065582518, 30.093948258611999 ], [ -95.553715065084376, 30.093893259170954 ], [ -95.553721065938433, 30.093854258799791 ], [ -95.553740065434809, 30.093821258549859 ], [ -95.553936065287331, 30.093574258773543 ], [ -95.55413806578639, 30.093343259013352 ], [ -95.554195065589596, 30.093244259013179 ], [ -95.554202065116243, 30.093096258435022 ], [ -95.554189065609634, 30.093041258509039 ], [ -95.554031065486313, 30.092766258810563 ], [ -95.553892065609801, 30.092678258780726 ], [ -95.55359506549361, 30.092524258519788 ], [ -95.553506065699466, 30.092458258052329 ], [ -95.553424065053861, 30.092376258290376 ], [ -95.55340506542862, 30.092337258732904 ], [ -95.553411065184264, 30.092194258645858 ], [ -95.553399065077457, 30.091633258651438 ], [ -95.553443064906872, 30.091364258265997 ], [ -95.553587065846031, 30.091274258492632 ], [ -95.553683064971807, 30.091216258215162 ], [ -95.553867065628395, 30.091166258061939 ], [ -95.553955065718952, 30.091155258212044 ], [ -95.554296065963044, 30.091144257821231 ], [ -95.554379065928487, 30.091111257774124 ], [ -95.554417065118528, 30.091067257897389 ], [ -95.554455065109607, 30.090985258140268 ], [ -95.554505065178134, 30.090809258399911 ], [ -95.554575065538188, 30.090397258274063 ], [ -95.554575065313372, 30.090270257703885 ], [ -95.554707066024093, 30.090017258325364 ], [ -95.554815065568192, 30.089929257992097 ], [ -95.555179065410456, 30.089700257844065 ], [ -95.55520006563421, 30.089698258008855 ], [ -95.555434065379899, 30.089314257901073 ], [ -95.555573065249433, 30.0890002575312 ], [ -95.555618065520321, 30.088797257449013 ], [ -95.555611066055917, 30.088654258062995 ], [ -95.555611065852744, 30.088511257477659 ], [ -95.555624065392536, 30.088440257638123 ], [ -95.555662066167741, 30.088357257530031 ], [ -95.555757065637891, 30.088209257469124 ], [ -95.555978065760058, 30.087730257439933 ], [ -95.556149065915477, 30.087280257787768 ], [ -95.556231065783905, 30.08723625722153 ], [ -95.556307065918517, 30.087225257197233 ], [ -95.556800065460735, 30.087258257671703 ], [ -95.556888065815954, 30.087252256879925 ], [ -95.557021066228756, 30.087208256895629 ], [ -95.557078066529044, 30.087175257282286 ], [ -95.557198066196506, 30.087038257422115 ], [ -95.557337066243193, 30.086768256897706 ], [ -95.557388066404215, 30.086532257339829 ], [ -95.557482066351696, 30.086400257516782 ], [ -95.557641066647037, 30.086252256815179 ], [ -95.557767065718508, 30.086180257409964 ], [ -95.558058066766122, 30.085971256914345 ], [ -95.558367065980264, 30.0858002570865 ], [ -95.558633066486124, 30.085652256958426 ], [ -95.559050066689807, 30.085438256632372 ], [ -95.559265066899172, 30.085350256699677 ], [ -95.559480067060051, 30.085240256471717 ], [ -95.559625066886582, 30.085196256900925 ], [ -95.55975206662859, 30.085174256815961 ], [ -95.560005067151366, 30.08505925704679 ], [ -95.560378066751497, 30.084965256543349 ], [ -95.560757066643319, 30.084850256937791 ], [ -95.560814066453219, 30.084817256666131 ], [ -95.560852067200017, 30.084762256865162 ], [ -95.560864066597318, 30.084525256552016 ], [ -95.560896066693388, 30.084306256988565 ], [ -95.560984067259596, 30.084146256594028 ], [ -95.561136066604831, 30.083987256903892 ], [ -95.561326067094811, 30.08387125602847 ], [ -95.561553066940363, 30.083761256236997 ], [ -95.561756067189762, 30.083701256816585 ], [ -95.561945067415181, 30.08362925649417 ], [ -95.562015067289352, 30.083624255993072 ], [ -95.562438067516382, 30.08364625664797 ], [ -95.562520067785599, 30.083635256784241 ], [ -95.562571067541953, 30.083613256678458 ], [ -95.562900067435336, 30.083360256415162 ], [ -95.56292506731964, 30.083310256679745 ], [ -95.563013067079936, 30.083036256113587 ], [ -95.563146067565171, 30.082997256519327 ], [ -95.563412067688489, 30.082964255925109 ], [ -95.563506067530156, 30.082970256219774 ], [ -95.563576067580939, 30.082992255768101 ], [ -95.56386706763783, 30.083211256459013 ], [ -95.563968067650308, 30.083272256512711 ], [ -95.564063067401094, 30.083299256644761 ], [ -95.56431606797517, 30.083294255883501 ], [ -95.564480067430623, 30.083272256518114 ], [ -95.564809067539272, 30.083129255947554 ], [ -95.564878067383376, 30.083079256505606 ], [ -95.564922068253267, 30.083025256373706 ], [ -95.564960067708711, 30.082931256413918 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 830, "Tract": "48201554808", "Area_SqMi": 0.80355942643157618, "total_2009": 216, "total_2010": 222, "total_2011": 712, "total_2012": 102, "total_2013": 75, "total_2014": 75, "total_2015": 71, "total_2016": 53, "total_2017": 57, "total_2018": 51, "total_2019": 66, "total_2020": 71, "age1": 71, "age2": 82, "age3": 14, "earn1": 63, "earn2": 56, "earn3": 48, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 8, "naics_s06": 15, "naics_s07": 14, "naics_s08": 62, "naics_s09": 1, "naics_s10": 0, "naics_s11": 0, "naics_s12": 14, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 0, "naics_s17": 3, "naics_s18": 39, "naics_s19": 3, "naics_s20": 0, "race1": 101, "race2": 45, "race3": 0, "race4": 13, "race5": 0, "race6": 8, "ethnicity1": 138, "ethnicity2": 29, "edu1": 11, "edu2": 21, "edu3": 31, "edu4": 33, "Shape_Length": 29391.830868508121, "Shape_Area": 22401861.503208999, "total_2021": 109, "total_2022": 167 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.586525071808381, 30.051041248958974 ], [ -95.586719072367615, 30.051040249253877 ], [ -95.586326072259908, 30.050350248412247 ], [ -95.578730069080763, 30.037033246041805 ], [ -95.577184069045089, 30.034224246252627 ], [ -95.575890068383586, 30.031994245541039 ], [ -95.575265067603979, 30.030917245494443 ], [ -95.574997067710498, 30.03045324545743 ], [ -95.573959068135721, 30.028624244891173 ], [ -95.572537067548268, 30.026116243939402 ], [ -95.57231706731551, 30.025730244433294 ], [ -95.571951066777345, 30.025090244457129 ], [ -95.570689067095614, 30.022881243636959 ], [ -95.570632066288127, 30.022781243608733 ], [ -95.570532066802272, 30.02286324415287 ], [ -95.570507066410016, 30.022884243596582 ], [ -95.570222066562039, 30.023096243406506 ], [ -95.570164066343253, 30.023125243510243 ], [ -95.570022066887091, 30.023213243845731 ], [ -95.56962406595953, 30.023431244037397 ], [ -95.569288066585941, 30.023616244380889 ], [ -95.568861066272802, 30.023853244128063 ], [ -95.56883506606782, 30.023867243780234 ], [ -95.568491066364658, 30.024063243850971 ], [ -95.567165066219857, 30.024815244317267 ], [ -95.56693006566573, 30.024964244620627 ], [ -95.566894066109839, 30.024986243976919 ], [ -95.56683606595054, 30.025013244445795 ], [ -95.566541065749377, 30.025168244492136 ], [ -95.566394065719379, 30.025253244109777 ], [ -95.566213065306954, 30.025347243958265 ], [ -95.566065065608058, 30.025438244863995 ], [ -95.565988065001278, 30.025468244088444 ], [ -95.565929065914716, 30.025509244175321 ], [ -95.56577506516183, 30.0255862445619 ], [ -95.565710065916903, 30.025634244754855 ], [ -95.565449065441626, 30.025762244549885 ], [ -95.565105065014848, 30.025947244951571 ], [ -95.565028065375571, 30.025994244882138 ], [ -95.564853065284211, 30.026076244487694 ], [ -95.56479906503337, 30.026120244690112 ], [ -95.564743064879892, 30.026157245053593 ], [ -95.564635064978219, 30.026213244768812 ], [ -95.564562065617181, 30.026274244991964 ], [ -95.564208064825692, 30.026465244790629 ], [ -95.563751065195802, 30.026712245140821 ], [ -95.563704064650082, 30.026750245112055 ], [ -95.563474064851292, 30.026873245075038 ], [ -95.563376064427104, 30.026941245260581 ], [ -95.563087064546409, 30.027121244720366 ], [ -95.563109064471959, 30.027155244912532 ], [ -95.56319706449635, 30.027289244705582 ], [ -95.56381106507483, 30.028124245146522 ], [ -95.563923065042346, 30.028299245150158 ], [ -95.564029065176129, 30.028488245296174 ], [ -95.564255065479159, 30.028944245429258 ], [ -95.564405065284845, 30.029194244977244 ], [ -95.564509064833032, 30.029348245216301 ], [ -95.564608065804237, 30.029474245228688 ], [ -95.564734065529976, 30.029614245220628 ], [ -95.564884065384362, 30.029761245043975 ], [ -95.565050065079902, 30.029908245753393 ], [ -95.565309065478218, 30.030126245673394 ], [ -95.565391065641862, 30.030201245511993 ], [ -95.565554066059249, 30.030337245402222 ], [ -95.565748065966332, 30.030519245729934 ], [ -95.566331066229324, 30.031138245451292 ], [ -95.566467066101211, 30.03129724586239 ], [ -95.56653406622921, 30.031385245419763 ], [ -95.566646065683599, 30.031557245381226 ], [ -95.566733065654418, 30.0317102460636 ], [ -95.56680706604368, 30.031874245939495 ], [ -95.566902066408929, 30.032086246058459 ], [ -95.566995066024134, 30.032366245685125 ], [ -95.567099065691011, 30.032991245532749 ], [ -95.567125066254334, 30.033231245642583 ], [ -95.567276065848887, 30.033249246072682 ], [ -95.567503066355343, 30.033241246023383 ], [ -95.567786065883311, 30.033243245601671 ], [ -95.567981066469926, 30.033252246239268 ], [ -95.56817206617248, 30.033269245617173 ], [ -95.568259065997296, 30.033270245517741 ], [ -95.568551066704856, 30.033315245673531 ], [ -95.568653066179351, 30.033338246019113 ], [ -95.568744066117176, 30.033350245930741 ], [ -95.569215066646052, 30.033446245680391 ], [ -95.569670067009483, 30.033536245858393 ], [ -95.570277066565779, 30.033664245645401 ], [ -95.570658066637876, 30.03374724613559 ], [ -95.570924066708073, 30.03382324581834 ], [ -95.571208066698105, 30.033922246107334 ], [ -95.571818067467618, 30.034170245770952 ], [ -95.572648067263202, 30.034588246244173 ], [ -95.573332067453606, 30.035051246374568 ], [ -95.573692067497959, 30.035360246088452 ], [ -95.574014067593154, 30.035679246271663 ], [ -95.574534068235607, 30.036343245968233 ], [ -95.574757068638974, 30.036735246607822 ], [ -95.574864068590216, 30.036991246044419 ], [ -95.57490106861195, 30.037104246456515 ], [ -95.575305068472304, 30.037878246454255 ], [ -95.575396068354635, 30.038213246388104 ], [ -95.575444068288448, 30.038500246414667 ], [ -95.575486068689699, 30.038811247199117 ], [ -95.575522068087892, 30.039147246908176 ], [ -95.575499068231267, 30.039664246878441 ], [ -95.575593069028102, 30.043086247384238 ], [ -95.575606068603989, 30.043798247952463 ], [ -95.575639068763707, 30.044274247655746 ], [ -95.575761068721135, 30.044655247908754 ], [ -95.575974069181953, 30.045066248241977 ], [ -95.576187068583849, 30.045371248078563 ], [ -95.576493068632445, 30.045706247814195 ], [ -95.576899069543444, 30.046017248634026 ], [ -95.57727206894296, 30.046305248599218 ], [ -95.577623069640794, 30.046668248296438 ], [ -95.577879069634918, 30.046987248148962 ], [ -95.578018069698047, 30.047105248756669 ], [ -95.578277069797977, 30.047910248310338 ], [ -95.578317069639809, 30.048961248937246 ], [ -95.577902070150344, 30.050211249513481 ], [ -95.577781069809191, 30.050647248896148 ], [ -95.577738069839128, 30.050804248821056 ], [ -95.577528069519431, 30.051234249615796 ], [ -95.577382070101578, 30.051536249192818 ], [ -95.577445069919122, 30.052226249438306 ], [ -95.577644069311745, 30.052843249230136 ], [ -95.578226069397843, 30.053390249776506 ], [ -95.57848207005901, 30.053597249357331 ], [ -95.578784069882374, 30.053841249855576 ], [ -95.579202070308227, 30.053441249515334 ], [ -95.579432070014903, 30.053243249487213 ], [ -95.579849070670534, 30.052925249221925 ], [ -95.580364070582192, 30.052586249236683 ], [ -95.580857070956114, 30.052301249292878 ], [ -95.581307070363607, 30.052070249706929 ], [ -95.581910070475544, 30.051785248890283 ], [ -95.582173071148802, 30.051676249186706 ], [ -95.582404070959683, 30.051590249422791 ], [ -95.582677070535823, 30.051489249443421 ], [ -95.582946070926866, 30.051407249318107 ], [ -95.583308071016361, 30.051297249119223 ], [ -95.583648071312837, 30.051221249360964 ], [ -95.583998071372605, 30.051155249358082 ], [ -95.584623071499479, 30.051078248910052 ], [ -95.58512807181603, 30.051045249104284 ], [ -95.586525071808381, 30.051041248958974 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 831, "Tract": "48201550202", "Area_SqMi": 0.66348517602530754, "total_2009": 5, "total_2010": 7, "total_2011": 8, "total_2012": 5, "total_2013": 1, "total_2014": 12, "total_2015": 6, "total_2016": 10, "total_2017": 9, "total_2018": 157, "total_2019": 217, "total_2020": 237, "age1": 55, "age2": 84, "age3": 34, "earn1": 21, "earn2": 41, "earn3": 111, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 140, "naics_s05": 0, "naics_s06": 0, "naics_s07": 24, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 141, "race2": 20, "race3": 0, "race4": 9, "race5": 0, "race6": 3, "ethnicity1": 112, "ethnicity2": 61, "edu1": 37, "edu2": 25, "edu3": 34, "edu4": 22, "Shape_Length": 20827.629502087213, "Shape_Area": 18496831.141357791, "total_2021": 190, "total_2022": 173 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436576029255008, 29.965423236553683 ], [ -95.436554030035182, 29.965306236299508 ], [ -95.436548029377676, 29.965247237018279 ], [ -95.436539029618373, 29.965010236305378 ], [ -95.436516029117357, 29.963700236615438 ], [ -95.436505029104779, 29.963386236586285 ], [ -95.436505029336601, 29.963067236554 ], [ -95.436498028981077, 29.962906236559874 ], [ -95.43649702902718, 29.962583235809603 ], [ -95.436479029791869, 29.962419236098928 ], [ -95.436489029324335, 29.962097235752982 ], [ -95.436472029676509, 29.961410235452867 ], [ -95.436465029841784, 29.961086235883801 ], [ -95.436443029007222, 29.959961235938646 ], [ -95.436417029511503, 29.958779235244148 ], [ -95.436411029196165, 29.95839423564092 ], [ -95.436407029103606, 29.958168235184736 ], [ -95.436404029726916, 29.95798323548404 ], [ -95.436392029037137, 29.957216235333174 ], [ -95.436396028693267, 29.957067235424944 ], [ -95.436394029569968, 29.957025235140716 ], [ -95.436389028922548, 29.956906235094781 ], [ -95.436387029568408, 29.956824235376306 ], [ -95.436350029038266, 29.954960234937641 ], [ -95.436292029421224, 29.952006234178025 ], [ -95.436289028839099, 29.951871234315249 ], [ -95.436289029017175, 29.951597233799749 ], [ -95.436283028992023, 29.95145823341764 ], [ -95.436275029090993, 29.950981233955538 ], [ -95.436271029043482, 29.950731233746314 ], [ -95.436249029240713, 29.949409233217313 ], [ -95.436230029247426, 29.948733233546054 ], [ -95.436231028866629, 29.948569233631424 ], [ -95.436195028952611, 29.94678823294155 ], [ -95.43619502888032, 29.946547232757698 ], [ -95.436189028710942, 29.946432233123719 ], [ -95.436188029014858, 29.946215232653945 ], [ -95.436155028546196, 29.946111232880977 ], [ -95.434895028673537, 29.946121233068432 ], [ -95.434458028133676, 29.946129232764058 ], [ -95.434169028508478, 29.946127233308175 ], [ -95.433833027882415, 29.946371232869147 ], [ -95.433625027880808, 29.94664623262787 ], [ -95.43361202840785, 29.9466532326466 ], [ -95.43313802742351, 29.946899232742297 ], [ -95.432924027752534, 29.947119232811342 ], [ -95.432829027575238, 29.947202233492362 ], [ -95.432709027315951, 29.947443233237134 ], [ -95.432697027380556, 29.947586233606764 ], [ -95.432697027638994, 29.947751233271084 ], [ -95.432659028239485, 29.947872233303496 ], [ -95.432551027687055, 29.948087233754123 ], [ -95.432362028249671, 29.948285232998618 ], [ -95.431718027135318, 29.948840233751756 ], [ -95.43160402739187, 29.94899423340382 ], [ -95.431466027314187, 29.94923623385802 ], [ -95.431308027134477, 29.949555233982476 ], [ -95.431156027125951, 29.949758233440416 ], [ -95.430954027708623, 29.949934233625807 ], [ -95.430784027727853, 29.950016233723613 ], [ -95.430717026976069, 29.950069233898756 ], [ -95.430657027241978, 29.950115233680489 ], [ -95.430500027779445, 29.950390234302585 ], [ -95.430386027746422, 29.950649234063441 ], [ -95.430348027496521, 29.95078123427723 ], [ -95.430272027384362, 29.950863233743299 ], [ -95.430121027609516, 29.950984234069725 ], [ -95.430002027558729, 29.951099234415615 ], [ -95.429786027420278, 29.951308234185966 ], [ -95.429717027492302, 29.951358233726928 ], [ -95.429515027428593, 29.951594233847267 ], [ -95.429414027133092, 29.951737234421355 ], [ -95.429391027169686, 29.951783233833353 ], [ -95.429344026926728, 29.951875234021514 ], [ -95.429313026711625, 29.95204023408294 ], [ -95.429281027540299, 29.952483234116606 ], [ -95.429275026954713, 29.952573234193995 ], [ -95.429199026717598, 29.952754234579253 ], [ -95.429117027578741, 29.952864234018026 ], [ -95.428915027439999, 29.953095234639168 ], [ -95.428505026677414, 29.953425234614219 ], [ -95.428233027287021, 29.953579234413819 ], [ -95.427968026852412, 29.953755234790684 ], [ -95.427741026520422, 29.953821234242319 ], [ -95.427583027184653, 29.953848234873309 ], [ -95.4272920270284, 29.953821234586538 ], [ -95.426958026609142, 29.953815234565536 ], [ -95.426756026919577, 29.953881234301129 ], [ -95.426636026357258, 29.953958234589891 ], [ -95.426516026659911, 29.95405723473954 ], [ -95.426339026817317, 29.954272235049501 ], [ -95.426219026325356, 29.954370234840169 ], [ -95.426087026702021, 29.954436234805254 ], [ -95.426049025989926, 29.954442234633781 ], [ -95.425714026239206, 29.954590235262557 ], [ -95.425530026721873, 29.954683235265183 ], [ -95.425443026781238, 29.95472823503717 ], [ -95.425152026050498, 29.954810235218087 ], [ -95.424893026296445, 29.954827235097412 ], [ -95.424704025978926, 29.954799234708876 ], [ -95.424493026097565, 29.954842235112658 ], [ -95.424458025949576, 29.954849235055949 ], [ -95.424388026165516, 29.954893234612399 ], [ -95.424104025985699, 29.955074234629887 ], [ -95.423788026418464, 29.955255234679271 ], [ -95.423511025467349, 29.955387235480785 ], [ -95.423252026107221, 29.955481234783782 ], [ -95.423146026039234, 29.955488234770954 ], [ -95.42314802619984, 29.955905235565172 ], [ -95.423150025951912, 29.956003235270156 ], [ -95.423153026208254, 29.956132235210504 ], [ -95.423173025635194, 29.956833235224902 ], [ -95.423174025645409, 29.957183235462715 ], [ -95.423177025801209, 29.957577235559679 ], [ -95.423184026078289, 29.957791235882421 ], [ -95.423217026320614, 29.958102236062931 ], [ -95.423256026186237, 29.958336235610656 ], [ -95.42326202574823, 29.958374235962243 ], [ -95.423278025679963, 29.958447235595418 ], [ -95.423340026270452, 29.958722235454552 ], [ -95.423390025563791, 29.958947235662304 ], [ -95.423437026466175, 29.959099235974129 ], [ -95.423500026510766, 29.959276235659775 ], [ -95.423576026266559, 29.959453235874122 ], [ -95.423701026001353, 29.959715236361845 ], [ -95.423806026313983, 29.959927236249843 ], [ -95.423889026667922, 29.960056235705771 ], [ -95.424058025863189, 29.960324235638907 ], [ -95.424197026006851, 29.960562236462245 ], [ -95.424241026738883, 29.960634235982916 ], [ -95.424639025937452, 29.961280235932705 ], [ -95.424952026968214, 29.961130236688192 ], [ -95.425497026638851, 29.960888235919658 ], [ -95.425956026498596, 29.960715236334821 ], [ -95.426091026303141, 29.960667236436141 ], [ -95.426198026381343, 29.960636236196795 ], [ -95.42644302647156, 29.960555235898184 ], [ -95.426690026561332, 29.96048023559711 ], [ -95.426836026490236, 29.960437235655835 ], [ -95.427272027465222, 29.960332235910268 ], [ -95.427822027012198, 29.960206236096816 ], [ -95.428312026772247, 29.960094235777888 ], [ -95.429093027857391, 29.959922236166264 ], [ -95.429139027660796, 29.962635236766342 ], [ -95.429158027468645, 29.963718236359792 ], [ -95.429207027913378, 29.964182236777763 ], [ -95.429266028224376, 29.96446323654424 ], [ -95.429344027806238, 29.964768236929046 ], [ -95.429429027648851, 29.965064236763446 ], [ -95.429515028046765, 29.965304237256085 ], [ -95.430983027933422, 29.965284236707358 ], [ -95.431460028196753, 29.965264236961694 ], [ -95.431886028322495, 29.965290236701684 ], [ -95.432262028115019, 29.965341237036963 ], [ -95.432765028207996, 29.965436236982981 ], [ -95.433178028371387, 29.965509236391657 ], [ -95.4336950289985, 29.965567236432598 ], [ -95.43418202903031, 29.965576236580375 ], [ -95.434765029365892, 29.965552237129245 ], [ -95.435951029363594, 29.965406237150638 ], [ -95.436576029255008, 29.965423236553683 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 832, "Tract": "48201550201", "Area_SqMi": 0.30417334890353526, "total_2009": 113, "total_2010": 326, "total_2011": 389, "total_2012": 490, "total_2013": 459, "total_2014": 255, "total_2015": 174, "total_2016": 195, "total_2017": 179, "total_2018": 173, "total_2019": 191, "total_2020": 181, "age1": 100, "age2": 96, "age3": 43, "earn1": 83, "earn2": 115, "earn3": 41, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 60, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 16, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 160, "naics_s19": 0, "naics_s20": 3, "race1": 148, "race2": 60, "race3": 0, "race4": 27, "race5": 0, "race6": 4, "ethnicity1": 149, "ethnicity2": 90, "edu1": 56, "edu2": 35, "edu3": 27, "edu4": 21, "Shape_Length": 13775.941440444447, "Shape_Area": 8479832.3695409819, "total_2021": 209, "total_2022": 239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429515028046765, 29.965304237256085 ], [ -95.429429027648851, 29.965064236763446 ], [ -95.429344027806238, 29.964768236929046 ], [ -95.429266028224376, 29.96446323654424 ], [ -95.429207027913378, 29.964182236777763 ], [ -95.429158027468645, 29.963718236359792 ], [ -95.429139027660796, 29.962635236766342 ], [ -95.429093027857391, 29.959922236166264 ], [ -95.428312026772247, 29.960094235777888 ], [ -95.427822027012198, 29.960206236096816 ], [ -95.427272027465222, 29.960332235910268 ], [ -95.426836026490236, 29.960437235655835 ], [ -95.426690026561332, 29.96048023559711 ], [ -95.42644302647156, 29.960555235898184 ], [ -95.426198026381343, 29.960636236196795 ], [ -95.426091026303141, 29.960667236436141 ], [ -95.425956026498596, 29.960715236334821 ], [ -95.425497026638851, 29.960888235919658 ], [ -95.424952026968214, 29.961130236688192 ], [ -95.424639025937452, 29.961280235932705 ], [ -95.424241026738883, 29.960634235982916 ], [ -95.424197026006851, 29.960562236462245 ], [ -95.424058025863189, 29.960324235638907 ], [ -95.423889026667922, 29.960056235705771 ], [ -95.423806026313983, 29.959927236249843 ], [ -95.423701026001353, 29.959715236361845 ], [ -95.423576026266559, 29.959453235874122 ], [ -95.423500026510766, 29.959276235659775 ], [ -95.423437026466175, 29.959099235974129 ], [ -95.423390025563791, 29.958947235662304 ], [ -95.423340026270452, 29.958722235454552 ], [ -95.423278025679963, 29.958447235595418 ], [ -95.42326202574823, 29.958374235962243 ], [ -95.423256026186237, 29.958336235610656 ], [ -95.423217026320614, 29.958102236062931 ], [ -95.423184026078289, 29.957791235882421 ], [ -95.423177025801209, 29.957577235559679 ], [ -95.423174025645409, 29.957183235462715 ], [ -95.423173025635194, 29.956833235224902 ], [ -95.423153026208254, 29.956132235210504 ], [ -95.423150025951912, 29.956003235270156 ], [ -95.42314802619984, 29.955905235565172 ], [ -95.423146026039234, 29.955488234770954 ], [ -95.42291702597538, 29.95550323475787 ], [ -95.422393025230804, 29.955514235246319 ], [ -95.422033025916178, 29.955536234802064 ], [ -95.42191302527381, 29.955585235047625 ], [ -95.421749025714206, 29.955629235544315 ], [ -95.421528025860468, 29.955855234946927 ], [ -95.420764025229261, 29.956393235116181 ], [ -95.420707025565108, 29.95643223507318 ], [ -95.420297025289301, 29.956646235696098 ], [ -95.4199500250065, 29.956767235896692 ], [ -95.419261024662575, 29.956883235941486 ], [ -95.418911024707754, 29.956882235754765 ], [ -95.418683025027249, 29.95688123595767 ], [ -95.418620024382449, 29.956881235211821 ], [ -95.418671024828072, 29.958240236180782 ], [ -95.418678024295616, 29.95919523561512 ], [ -95.418663025175022, 29.96078323610686 ], [ -95.418672025189693, 29.962314236854478 ], [ -95.418705025120431, 29.963017237154169 ], [ -95.418770025068952, 29.963681236553512 ], [ -95.418854025375325, 29.964228236951865 ], [ -95.418991025522516, 29.964834237260884 ], [ -95.419068024884609, 29.965083236833333 ], [ -95.419135024904236, 29.965296237655185 ], [ -95.41918302498101, 29.965420237518199 ], [ -95.419259025473053, 29.965736237113262 ], [ -95.419347025539125, 29.965734237791448 ], [ -95.419582025154227, 29.965728237008079 ], [ -95.420618025796799, 29.96583823768184 ], [ -95.421604026128932, 29.96593123777625 ], [ -95.421662025912383, 29.965936237671745 ], [ -95.421871025910946, 29.965961237376973 ], [ -95.422364025560441, 29.965984237308973 ], [ -95.422922026041874, 29.965987237051952 ], [ -95.423596026356236, 29.965891236960744 ], [ -95.42424302613108, 29.965767237152676 ], [ -95.424683026253149, 29.965670236897175 ], [ -95.42563202660854, 29.965461237301341 ], [ -95.426229026522478, 29.965358237190969 ], [ -95.426495027517902, 29.96535123704232 ], [ -95.428818027682823, 29.96530123708169 ], [ -95.429515028046765, 29.965304237256085 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 833, "Tract": "48201551705", "Area_SqMi": 0.92093904229643664, "total_2009": 383, "total_2010": 323, "total_2011": 312, "total_2012": 17872, "total_2013": 18093, "total_2014": 18417, "total_2015": 18692, "total_2016": 19562, "total_2017": 20190, "total_2018": 20151, "total_2019": 20074, "total_2020": 19326, "age1": 2286, "age2": 9950, "age3": 3882, "earn1": 1461, "earn2": 4946, "earn3": 9711, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 16, "naics_s06": 19, "naics_s07": 12, "naics_s08": 2, "naics_s09": 1, "naics_s10": 7, "naics_s11": 10, "naics_s12": 9, "naics_s13": 0, "naics_s14": 1, "naics_s15": 15833, "naics_s16": 48, "naics_s17": 4, "naics_s18": 40, "naics_s19": 88, "naics_s20": 0, "race1": 11933, "race2": 2941, "race3": 143, "race4": 789, "race5": 22, "race6": 289, "ethnicity1": 11807, "ethnicity2": 4310, "edu1": 2218, "edu2": 3089, "edu3": 4115, "edu4": 4410, "Shape_Length": 23243.971121191818, "Shape_Area": 25674204.296300959, "total_2021": 15895, "total_2022": 16117 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.584722065485124, 29.924625223108201 ], [ -95.584721066172278, 29.924563223532612 ], [ -95.58468506587964, 29.920804222493565 ], [ -95.584680065371998, 29.920371222431697 ], [ -95.584662064920494, 29.918646222299408 ], [ -95.584653065528414, 29.917834221754937 ], [ -95.584649065196231, 29.917557222214647 ], [ -95.584628065346337, 29.915555221830122 ], [ -95.584627064902591, 29.91548022136114 ], [ -95.584623065324706, 29.915185221587382 ], [ -95.584612065247711, 29.914098221589498 ], [ -95.584604065620553, 29.91312122121828 ], [ -95.584596065429253, 29.912458220898284 ], [ -95.584569064824947, 29.909980220271304 ], [ -95.583793064848507, 29.90998222022473 ], [ -95.582894064466643, 29.909990220665509 ], [ -95.582555064061339, 29.909994220094173 ], [ -95.582185064418425, 29.909989220269082 ], [ -95.581885064363561, 29.909976220190753 ], [ -95.581645064106596, 29.909953220035373 ], [ -95.581172063946738, 29.90989022073509 ], [ -95.580157063590477, 29.909742220323867 ], [ -95.578954063430174, 29.909571220296833 ], [ -95.578370063253317, 29.909486220594189 ], [ -95.5775620632688, 29.909370220341703 ], [ -95.577306063007384, 29.909333220538457 ], [ -95.576950063344214, 29.909284220541725 ], [ -95.576472063317368, 29.909206220556154 ], [ -95.574421062031377, 29.908837220027301 ], [ -95.574104062059462, 29.908789220519495 ], [ -95.573721061718544, 29.908745220562881 ], [ -95.573606062324558, 29.908738220164228 ], [ -95.573230062267641, 29.908718220182074 ], [ -95.572986061749958, 29.908717220855916 ], [ -95.572598062042815, 29.908732220643714 ], [ -95.572266062186756, 29.90876222083233 ], [ -95.571804061993731, 29.908829220286972 ], [ -95.571459061612657, 29.90890022089253 ], [ -95.571340061960939, 29.908932220585363 ], [ -95.571220061391443, 29.908958220431668 ], [ -95.570880061583949, 29.90905222048502 ], [ -95.570559061548082, 29.90914422041914 ], [ -95.570639061766215, 29.909346220281343 ], [ -95.570904061024308, 29.909698220902904 ], [ -95.571115061914455, 29.910011220888673 ], [ -95.57122006164515, 29.910165220884828 ], [ -95.571680061426136, 29.910769221147543 ], [ -95.571738062021964, 29.910823221113937 ], [ -95.571775062143772, 29.910857220501374 ], [ -95.571863061413623, 29.911044220733398 ], [ -95.57180006140068, 29.911110220855505 ], [ -95.571605061615614, 29.911512221009922 ], [ -95.571542061526344, 29.911792221352474 ], [ -95.571523061481884, 29.912144221530756 ], [ -95.571529062146126, 29.912408220890605 ], [ -95.571504061306527, 29.912727221094062 ], [ -95.571466062056189, 29.913001221534831 ], [ -95.571358061394363, 29.913451221533549 ], [ -95.571268061606929, 29.913821221926732 ], [ -95.571120061688703, 29.914438221746874 ], [ -95.571074061782099, 29.914630221497546 ], [ -95.570976061683197, 29.915036221379054 ], [ -95.570898061757546, 29.915360222181555 ], [ -95.570892062069234, 29.915503222119685 ], [ -95.570905061676385, 29.915596221843209 ], [ -95.570929061321721, 29.915689221911215 ], [ -95.570955061726295, 29.915792222195222 ], [ -95.571037062143361, 29.916118222304171 ], [ -95.571094061486463, 29.916393222504833 ], [ -95.571164061893896, 29.916591222034061 ], [ -95.571214062318333, 29.916839222353229 ], [ -95.571249061735642, 29.917121222142654 ], [ -95.571258062341272, 29.91719022208957 ], [ -95.571271061487465, 29.917405222048259 ], [ -95.571202061711048, 29.917911222556398 ], [ -95.571214061462697, 29.917993222193651 ], [ -95.571208062159116, 29.918339222228944 ], [ -95.571177061898268, 29.918532222368327 ], [ -95.571139062073939, 29.919071223067796 ], [ -95.571076062439104, 29.920214223132167 ], [ -95.571063062356359, 29.920698222957558 ], [ -95.571025062500354, 29.921044222887637 ], [ -95.571016062150619, 29.921211223006221 ], [ -95.57094406175726, 29.92261122347178 ], [ -95.570893062438586, 29.922886223066811 ], [ -95.570849061953339, 29.922919223470014 ], [ -95.570761062355686, 29.922952223425856 ], [ -95.570420062079677, 29.922974223495178 ], [ -95.569921062163729, 29.922968223466643 ], [ -95.568937061961194, 29.922977223926825 ], [ -95.568792061896602, 29.922979223309429 ], [ -95.568640061060165, 29.923040223617548 ], [ -95.56853306109025, 29.923221223557952 ], [ -95.568552061289523, 29.923381223238337 ], [ -95.568583061186459, 29.923897223699349 ], [ -95.56853306135983, 29.92437622363218 ], [ -95.568451062032466, 29.924909224168349 ], [ -95.568337061486162, 29.925398223638652 ], [ -95.56822406118593, 29.925794223786326 ], [ -95.568011061897423, 29.926328223996887 ], [ -95.567978061594403, 29.926410223908796 ], [ -95.567958061132487, 29.926452224670896 ], [ -95.567685061326713, 29.927011224023293 ], [ -95.567549061582909, 29.927289224008113 ], [ -95.567479061117197, 29.927407224489063 ], [ -95.567393061277727, 29.927554224354672 ], [ -95.567603061040217, 29.927585224053527 ], [ -95.567843061551358, 29.927611224894491 ], [ -95.568116061716694, 29.927628224660573 ], [ -95.568394061839456, 29.927633224712885 ], [ -95.568920061921105, 29.927620224034587 ], [ -95.569191062217698, 29.927602224637109 ], [ -95.569390061708461, 29.927581224687994 ], [ -95.569749062187782, 29.927523224704462 ], [ -95.570013061630917, 29.927471224408897 ], [ -95.570290062447555, 29.927406224795142 ], [ -95.570571062099106, 29.927328224125663 ], [ -95.570854062097212, 29.927238224624201 ], [ -95.570992062618345, 29.927181224442908 ], [ -95.571129062099345, 29.927136224439931 ], [ -95.571492062576084, 29.92697422462798 ], [ -95.571832062979198, 29.926801224341173 ], [ -95.572052062082861, 29.926676224387396 ], [ -95.572368062377961, 29.926474223907089 ], [ -95.572601062889504, 29.926312223745125 ], [ -95.572695062312988, 29.926239223880145 ], [ -95.572882062379009, 29.926092223676985 ], [ -95.573151062579655, 29.925868224257819 ], [ -95.573433062401008, 29.925657223795046 ], [ -95.573574062398052, 29.925561224288511 ], [ -95.573980063340954, 29.925314223640729 ], [ -95.574176062896427, 29.925204224035301 ], [ -95.574387063413042, 29.925099223664436 ], [ -95.574499063314732, 29.925051223842789 ], [ -95.574615063363652, 29.924993223510064 ], [ -95.57473806366049, 29.924948223676669 ], [ -95.574862063406385, 29.924895223554916 ], [ -95.575122062993387, 29.92480322391814 ], [ -95.575390063328015, 29.924720223497438 ], [ -95.575661063304281, 29.92464522367143 ], [ -95.575798063086808, 29.924614223339724 ], [ -95.575935063009652, 29.924578223520733 ], [ -95.576205063644778, 29.924527223616462 ], [ -95.576546063726255, 29.924479223681104 ], [ -95.576814063536744, 29.924454223399977 ], [ -95.577008063212119, 29.924441223321235 ], [ -95.577775063940294, 29.924427223781787 ], [ -95.578595063942871, 29.924411223213365 ], [ -95.578855064443445, 29.924413223018469 ], [ -95.579027064506661, 29.924420223502722 ], [ -95.579230064627865, 29.924434223528838 ], [ -95.579575064697195, 29.924470223724164 ], [ -95.580207064436578, 29.924556223702879 ], [ -95.580693064978263, 29.924618223366505 ], [ -95.581087064846486, 29.924645223704864 ], [ -95.581635064431083, 29.92465322328648 ], [ -95.5823150650061, 29.924646223489635 ], [ -95.582932065246425, 29.92464522326874 ], [ -95.583414065055393, 29.92464022341083 ], [ -95.584722065485124, 29.924625223108201 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 834, "Tract": "48201521702", "Area_SqMi": 0.54339624320161728, "total_2009": 8262, "total_2010": 7858, "total_2011": 8890, "total_2012": 8028, "total_2013": 8124, "total_2014": 8113, "total_2015": 6997, "total_2016": 7047, "total_2017": 6933, "total_2018": 6422, "total_2019": 6390, "total_2020": 5788, "age1": 1246, "age2": 3763, "age3": 1682, "earn1": 918, "earn2": 1538, "earn3": 4235, "naics_s01": 3, "naics_s02": 2, "naics_s03": 0, "naics_s04": 325, "naics_s05": 371, "naics_s06": 873, "naics_s07": 425, "naics_s08": 103, "naics_s09": 2, "naics_s10": 814, "naics_s11": 213, "naics_s12": 1115, "naics_s13": 540, "naics_s14": 908, "naics_s15": 4, "naics_s16": 249, "naics_s17": 0, "naics_s18": 648, "naics_s19": 96, "naics_s20": 0, "race1": 4803, "race2": 1180, "race3": 48, "race4": 547, "race5": 5, "race6": 108, "ethnicity1": 4650, "ethnicity2": 2041, "edu1": 1014, "edu2": 1323, "edu3": 1693, "edu4": 1415, "Shape_Length": 18623.019568752639, "Shape_Area": 15148957.228495974, "total_2021": 5236, "total_2022": 6691 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.515399044589003, 29.850930211057069 ], [ -95.515397044837485, 29.850599210553529 ], [ -95.515364045052451, 29.850385210337613 ], [ -95.515241044355477, 29.850115210714666 ], [ -95.515197044529117, 29.850046210282549 ], [ -95.515136044747635, 29.849950210669547 ], [ -95.514877044206813, 29.849542210725669 ], [ -95.514754043959726, 29.8491502103134 ], [ -95.514739043939684, 29.848997210112568 ], [ -95.514737044518697, 29.848733210020807 ], [ -95.514739044622061, 29.848289209929511 ], [ -95.514743044429906, 29.848135210509056 ], [ -95.514736044726135, 29.847921210420559 ], [ -95.51474404429851, 29.847729210370641 ], [ -95.514713044754444, 29.84749120989428 ], [ -95.514459044467898, 29.846990210026423 ], [ -95.514283043751107, 29.846644210192636 ], [ -95.514160043631776, 29.846360209613344 ], [ -95.514119044409597, 29.846266209468169 ], [ -95.514096044159743, 29.845870209849608 ], [ -95.514087044042611, 29.845672209560391 ], [ -95.514082043991067, 29.845401209936515 ], [ -95.514064043581797, 29.844862209644884 ], [ -95.514062043733418, 29.844389209727101 ], [ -95.513919043305336, 29.841180208784639 ], [ -95.513323043466926, 29.841185208495382 ], [ -95.512729043775266, 29.841189208735805 ], [ -95.511971043435565, 29.841199209050192 ], [ -95.510530042592094, 29.84122020872676 ], [ -95.509788042876124, 29.841225209111087 ], [ -95.508984042518591, 29.841222209073475 ], [ -95.50813604212702, 29.841266209334904 ], [ -95.50740304243125, 29.841295209308736 ], [ -95.506286041375319, 29.841326208593756 ], [ -95.504925041069697, 29.84134020882167 ], [ -95.504484041211199, 29.84134420918404 ], [ -95.503998041582861, 29.84134620913547 ], [ -95.503192041114332, 29.841350208684908 ], [ -95.502997041195201, 29.841350209333061 ], [ -95.501881040390003, 29.841366209263821 ], [ -95.501630040193419, 29.841351208875803 ], [ -95.501212040657592, 29.841363208937871 ], [ -95.500594040923346, 29.84137720906957 ], [ -95.500383040492281, 29.841372209439513 ], [ -95.499526039957232, 29.841377209205245 ], [ -95.498547039416735, 29.841384209168552 ], [ -95.496721039723866, 29.841410209024332 ], [ -95.496472038867282, 29.841411209434451 ], [ -95.495540039307556, 29.841414209058318 ], [ -95.495194038785911, 29.841436209807483 ], [ -95.494915038529214, 29.841424209121516 ], [ -95.494765039136425, 29.841429209160243 ], [ -95.493048038771377, 29.841451209477917 ], [ -95.492740038468199, 29.841431209629 ], [ -95.493150038087691, 29.841748209877327 ], [ -95.493911038628852, 29.842241209793823 ], [ -95.494800039486464, 29.842774209522464 ], [ -95.496374039465579, 29.843669209529128 ], [ -95.496679039370548, 29.8438302101269 ], [ -95.497446039424105, 29.844256210002385 ], [ -95.501984040770282, 29.846826210104357 ], [ -95.50528604197568, 29.848692210751182 ], [ -95.505520041969987, 29.848826210586193 ], [ -95.505699041901707, 29.848928210117432 ], [ -95.509558043371399, 29.851113210563458 ], [ -95.509866043195046, 29.851293210752942 ], [ -95.510242043495211, 29.851212211013596 ], [ -95.510922043275229, 29.851049210911473 ], [ -95.51106304310332, 29.851026210361248 ], [ -95.511600044164126, 29.850962211070527 ], [ -95.513026044420812, 29.850933210940784 ], [ -95.514060044684456, 29.850942210700676 ], [ -95.515399044589003, 29.850930211057069 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 835, "Tract": "48201552304", "Area_SqMi": 0.95462768487624616, "total_2009": 235, "total_2010": 215, "total_2011": 148, "total_2012": 164, "total_2013": 161, "total_2014": 137, "total_2015": 124, "total_2016": 183, "total_2017": 245, "total_2018": 211, "total_2019": 268, "total_2020": 206, "age1": 84, "age2": 215, "age3": 81, "earn1": 67, "earn2": 181, "earn3": 132, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 8, "naics_s06": 20, "naics_s07": 6, "naics_s08": 0, "naics_s09": 1, "naics_s10": 0, "naics_s11": 13, "naics_s12": 64, "naics_s13": 0, "naics_s14": 186, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 0, "naics_s19": 5, "naics_s20": 66, "race1": 312, "race2": 42, "race3": 3, "race4": 15, "race5": 0, "race6": 8, "ethnicity1": 267, "ethnicity2": 113, "edu1": 60, "edu2": 86, "edu3": 88, "edu4": 62, "Shape_Length": 24014.062994927248, "Shape_Area": 26613385.992738023, "total_2021": 340, "total_2022": 380 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.60682307331885, 29.966113230915475 ], [ -95.60697707360255, 29.965933230639564 ], [ -95.606193072767198, 29.96497223114476 ], [ -95.605273072331116, 29.963817230923642 ], [ -95.605098072876515, 29.963558230167401 ], [ -95.605014072449578, 29.9634252305061 ], [ -95.60493307224958, 29.963285230608744 ], [ -95.604858072368827, 29.963142230645275 ], [ -95.604719072649999, 29.962847230436122 ], [ -95.603662071719654, 29.960378230295095 ], [ -95.603421071670255, 29.95979223002654 ], [ -95.603279071992816, 29.959405230116833 ], [ -95.60323907151259, 29.959275229338942 ], [ -95.6031450718408, 29.958888229537909 ], [ -95.603104071814045, 29.95864622950765 ], [ -95.60308907180206, 29.958529229761851 ], [ -95.603082071791448, 29.958201229591563 ], [ -95.603087072222792, 29.958089229652465 ], [ -95.603097071738205, 29.957877229222458 ], [ -95.603126071497144, 29.957653228909475 ], [ -95.603146072180309, 29.957540229334512 ], [ -95.603269071766704, 29.956974229142904 ], [ -95.60339507213537, 29.956496229103834 ], [ -95.603478072251491, 29.956252229358647 ], [ -95.60357407208302, 29.956005228861439 ], [ -95.603685071919102, 29.955771229082849 ], [ -95.603807071822231, 29.955540228660162 ], [ -95.603945071620544, 29.95530122910505 ], [ -95.604093072430956, 29.955069228974796 ], [ -95.604231072371974, 29.954839228526485 ], [ -95.604354071962177, 29.954609228541759 ], [ -95.604411072490052, 29.95449022830423 ], [ -95.604514072020336, 29.954247228248519 ], [ -95.604641072075566, 29.953880228820914 ], [ -95.60470507177611, 29.953637228827052 ], [ -95.604755072317147, 29.953397228684768 ], [ -95.604762072255383, 29.953347227989028 ], [ -95.604792072575961, 29.953162228464418 ], [ -95.604814072072301, 29.95293922837163 ], [ -95.604819071868192, 29.952738228752839 ], [ -95.604838072578801, 29.952499228057814 ], [ -95.604847071622913, 29.952432228572519 ], [ -95.604845072464414, 29.952345228263852 ], [ -95.604749071943331, 29.952346228517111 ], [ -95.604076071465343, 29.952357228567458 ], [ -95.603809071883589, 29.952362228093858 ], [ -95.603033071854924, 29.952361228152487 ], [ -95.602716071064137, 29.95236622850452 ], [ -95.601749071556014, 29.952378228028145 ], [ -95.601642071111328, 29.952384228518088 ], [ -95.601370071583872, 29.952388228382169 ], [ -95.60119107111484, 29.952396228255932 ], [ -95.601094070690252, 29.952395228494545 ], [ -95.600998070710816, 29.952388228506045 ], [ -95.600737071012645, 29.952396228620358 ], [ -95.600144071321083, 29.952406228017946 ], [ -95.600044070827892, 29.95240322817439 ], [ -95.59994307075975, 29.952411228607868 ], [ -95.599564070932416, 29.952414228138284 ], [ -95.598842070487336, 29.952400228149489 ], [ -95.598703070723175, 29.95239722856142 ], [ -95.598258070879211, 29.952401228472915 ], [ -95.597871070396366, 29.952413228430323 ], [ -95.597262070314628, 29.95242722860073 ], [ -95.596386070076932, 29.952451228114327 ], [ -95.595848070244685, 29.952456228953402 ], [ -95.595763070168431, 29.952457228224645 ], [ -95.594532068959509, 29.952459228890344 ], [ -95.594231069318369, 29.952461228685017 ], [ -95.594146069161738, 29.952462228736444 ], [ -95.593709068992084, 29.952472229007995 ], [ -95.593457069078383, 29.952471229080697 ], [ -95.593162069458685, 29.952483228362862 ], [ -95.592847069284716, 29.952485229017345 ], [ -95.592299068997107, 29.952497228384662 ], [ -95.592183069127699, 29.95249322903398 ], [ -95.592201068555127, 29.95290022915292 ], [ -95.59219806867668, 29.95294922885877 ], [ -95.592205069195899, 29.952999228809073 ], [ -95.592201068570162, 29.953043229099645 ], [ -95.592198068890553, 29.953105228392623 ], [ -95.592207068784376, 29.953165228918319 ], [ -95.592214069116125, 29.953352228565667 ], [ -95.592209069359953, 29.953413228496032 ], [ -95.592219069158119, 29.953474229158477 ], [ -95.592221068548554, 29.953726228827914 ], [ -95.592214069270867, 29.953791228692719 ], [ -95.592216069343735, 29.953809228681212 ], [ -95.59222206935037, 29.953925229140115 ], [ -95.592230069008153, 29.954490229289728 ], [ -95.592225069141264, 29.954558229454072 ], [ -95.592232068443721, 29.954609229378537 ], [ -95.592255068773426, 29.954793228760934 ], [ -95.592248069344009, 29.954889228840674 ], [ -95.592247069366849, 29.955202229412784 ], [ -95.592240068944577, 29.955250229497924 ], [ -95.592248069140183, 29.955391229230482 ], [ -95.592248069076518, 29.9557222296113 ], [ -95.59224006872553, 29.955769229545147 ], [ -95.592249069123028, 29.956050229054686 ], [ -95.592257069523441, 29.956153229173804 ], [ -95.592256069304014, 29.956385229371584 ], [ -95.592250068704644, 29.956434229580427 ], [ -95.592250069508694, 29.95650322939731 ], [ -95.592257068563327, 29.956545229852868 ], [ -95.592257069164731, 29.95658422947707 ], [ -95.592252069517954, 29.956651229565473 ], [ -95.592253069554076, 29.956730229828448 ], [ -95.592261069193867, 29.956805229792487 ], [ -95.592254068815677, 29.956873229676454 ], [ -95.592255068586439, 29.956929229998206 ], [ -95.592258069451475, 29.957133229587097 ], [ -95.59227606945386, 29.957214229946899 ], [ -95.592272068995712, 29.957298229819429 ], [ -95.592274069199647, 29.957623229991185 ], [ -95.592266068982966, 29.957693229825583 ], [ -95.592272068688047, 29.957985230096629 ], [ -95.592284069231852, 29.958057229470342 ], [ -95.592274069245789, 29.958128230023384 ], [ -95.592275068823255, 29.958352229990467 ], [ -95.592278069007094, 29.958381229547875 ], [ -95.592288069218554, 29.958497230251904 ], [ -95.592295069038684, 29.958561229669879 ], [ -95.592282069123058, 29.958626229677115 ], [ -95.592282069248, 29.958687230042962 ], [ -95.592288068757512, 29.958741229888517 ], [ -95.592278069163754, 29.958814229605284 ], [ -95.59227806907306, 29.958862230403298 ], [ -95.59227806886048, 29.958931230136734 ], [ -95.592287069436651, 29.958977230045061 ], [ -95.592296069667896, 29.959089230474223 ], [ -95.592327068949459, 29.959177229685398 ], [ -95.592347069655347, 29.95922122979718 ], [ -95.592423069051151, 29.959344230528266 ], [ -95.592454069533204, 29.959384229841913 ], [ -95.592545068805265, 29.959472229950261 ], [ -95.592592069626306, 29.959510229956173 ], [ -95.592918069418829, 29.959755230108161 ], [ -95.593165069662589, 29.959935230020989 ], [ -95.593240069604448, 29.9599902304731 ], [ -95.593512069488753, 29.960189230157191 ], [ -95.593644069751647, 29.960296230558161 ], [ -95.593823069807826, 29.96046323019015 ], [ -95.594261070283139, 29.960887230178137 ], [ -95.593898069280513, 29.961167229987616 ], [ -95.593268069565354, 29.961653230272194 ], [ -95.593129069962998, 29.961761230855533 ], [ -95.592996069009232, 29.961871230139096 ], [ -95.592893069597153, 29.961949230416611 ], [ -95.594475069853829, 29.963284230715121 ], [ -95.592360069089338, 29.965095231502183 ], [ -95.592074069940438, 29.965343230885644 ], [ -95.59178806892119, 29.965589231365488 ], [ -95.591063069282441, 29.966215231958842 ], [ -95.590920069288956, 29.966339231268311 ], [ -95.590850068883569, 29.966400231450042 ], [ -95.590304068759806, 29.966905231247456 ], [ -95.59031106948035, 29.967025231579136 ], [ -95.590510068822852, 29.967050231871159 ], [ -95.590706068917527, 29.967083231796202 ], [ -95.590790068869154, 29.967091231986061 ], [ -95.590875068859347, 29.967113231799789 ], [ -95.591035069497721, 29.967165231293883 ], [ -95.591113069101155, 29.967198231401831 ], [ -95.591191069250243, 29.967236231641024 ], [ -95.591349069375255, 29.967335232050637 ], [ -95.591429069195001, 29.967390232016431 ], [ -95.591489069175822, 29.967461232031233 ], [ -95.591582069368783, 29.967522231750955 ], [ -95.591840069440636, 29.967734231849366 ], [ -95.592088069110744, 29.967964231814037 ], [ -95.592177069730909, 29.968056231675462 ], [ -95.592534070094572, 29.968365232225775 ], [ -95.592562069824297, 29.968410232052879 ], [ -95.592595069934163, 29.968442231981342 ], [ -95.592690070131184, 29.968531231977725 ], [ -95.592741069233867, 29.96856923207212 ], [ -95.592792069623755, 29.968589231602429 ], [ -95.593037069650649, 29.968790232029821 ], [ -95.593170070301269, 29.968933231759681 ], [ -95.59324606981238, 29.968999232307382 ], [ -95.593326070396117, 29.969091232245042 ], [ -95.593603069877744, 29.969285231724218 ], [ -95.594054070059272, 29.969670231979237 ], [ -95.594238069993196, 29.969816232594432 ], [ -95.594367070110494, 29.96993023244006 ], [ -95.594678070132858, 29.970186231808484 ], [ -95.594761069907719, 29.970259232255977 ], [ -95.594847070460673, 29.97032623183723 ], [ -95.594915070417201, 29.970388232359877 ], [ -95.594997070613658, 29.970452232295901 ], [ -95.595109070123328, 29.970549232088516 ], [ -95.595652070672529, 29.970997232529459 ], [ -95.595738070193065, 29.971076232733811 ], [ -95.595826071162293, 29.971122232069206 ], [ -95.595884070169916, 29.971194232452213 ], [ -95.596102071058013, 29.971386232558707 ], [ -95.596195071177689, 29.971459232811309 ], [ -95.59625707042953, 29.971502232448394 ], [ -95.596318070802141, 29.971567232670832 ], [ -95.596460071251741, 29.971679232143785 ], [ -95.596529071346311, 29.971749232089564 ], [ -95.596745070771334, 29.971933232437692 ], [ -95.596807070769245, 29.97197923281168 ], [ -95.596844071167894, 29.972021232182993 ], [ -95.596890071172524, 29.972049232651827 ], [ -95.59696707131755, 29.972116232824384 ], [ -95.59700207056386, 29.972156232821646 ], [ -95.597266071446597, 29.97237723220665 ], [ -95.597333070652553, 29.972423232635101 ], [ -95.597639071307213, 29.972691232702463 ], [ -95.598111071010351, 29.973092232556787 ], [ -95.598607071599687, 29.973533233154821 ], [ -95.598663071725312, 29.973581232318278 ], [ -95.59897207195894, 29.973388233129658 ], [ -95.599200071764756, 29.973328232807102 ], [ -95.599522071501113, 29.973355233056406 ], [ -95.59978007160106, 29.973426232512349 ], [ -95.600077072190842, 29.973492233142153 ], [ -95.600235071620048, 29.973481232812784 ], [ -95.600456071426066, 29.97338823272981 ], [ -95.600879071905396, 29.973146232770429 ], [ -95.601062071722993, 29.973025232986981 ], [ -95.601412072425163, 29.972914232242221 ], [ -95.601788072348754, 29.972794232107564 ], [ -95.602066071985504, 29.972673232347073 ], [ -95.602242072526252, 29.972535232113945 ], [ -95.6023750723175, 29.972403232352608 ], [ -95.602994072247711, 29.972073232618808 ], [ -95.603252072187829, 29.97189123185397 ], [ -95.603650073025918, 29.971419232538629 ], [ -95.603688072335771, 29.971325232424991 ], [ -95.603669072172636, 29.971210232388188 ], [ -95.603618072351026, 29.971100231841447 ], [ -95.603448073075256, 29.970902231644573 ], [ -95.603264072614806, 29.970715232065547 ], [ -95.603094072185712, 29.970561231694582 ], [ -95.602911072363213, 29.970358232059244 ], [ -95.602904072098724, 29.970259231717943 ], [ -95.60296707260801, 29.970078231730636 ], [ -95.603094072563579, 29.969940231829259 ], [ -95.603226072413818, 29.969841232153865 ], [ -95.603453072792618, 29.969764231522475 ], [ -95.604078072881975, 29.969736232226481 ], [ -95.6041600724473, 29.969703231766619 ], [ -95.604255072938756, 29.969560231933873 ], [ -95.604324072710483, 29.969384231560813 ], [ -95.604362073071343, 29.96917623156736 ], [ -95.604438072792433, 29.969044231602233 ], [ -95.604558073289169, 29.968912231335676 ], [ -95.605120072864395, 29.968587231368627 ], [ -95.605202073334837, 29.968477231696195 ], [ -95.605284072626048, 29.968202231671878 ], [ -95.605334072510828, 29.967993231444311 ], [ -95.605441072930944, 29.967806231394437 ], [ -95.605624072538575, 29.96758623168812 ], [ -95.606053072653467, 29.96721223100565 ], [ -95.606318073394419, 29.966992231554197 ], [ -95.606571073398911, 29.966690230988366 ], [ -95.606684072725585, 29.966377230749227 ], [ -95.60682307331885, 29.966113230915475 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 836, "Tract": "48201550307", "Area_SqMi": 1.0549970465212803, "total_2009": 8136, "total_2010": 7147, "total_2011": 7246, "total_2012": 7364, "total_2013": 7526, "total_2014": 7187, "total_2015": 6822, "total_2016": 6686, "total_2017": 6959, "total_2018": 6619, "total_2019": 6861, "total_2020": 6940, "age1": 769, "age2": 3262, "age3": 1325, "earn1": 415, "earn2": 1762, "earn3": 3179, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 22, "naics_s06": 0, "naics_s07": 410, "naics_s08": 4, "naics_s09": 1, "naics_s10": 15, "naics_s11": 28, "naics_s12": 12, "naics_s13": 0, "naics_s14": 14, "naics_s15": 4592, "naics_s16": 83, "naics_s17": 0, "naics_s18": 92, "naics_s19": 56, "naics_s20": 0, "race1": 2901, "race2": 2097, "race3": 53, "race4": 194, "race5": 22, "race6": 89, "ethnicity1": 3694, "ethnicity2": 1662, "edu1": 966, "edu2": 1165, "edu3": 1381, "edu4": 1075, "Shape_Length": 21927.012883374231, "Shape_Area": 29411512.011522289, "total_2021": 5578, "total_2022": 5356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.463694038490615, 30.007095244584558 ], [ -95.463798038732506, 30.00703824462531 ], [ -95.463527038096586, 30.006706244503278 ], [ -95.462427038112438, 30.005409244036255 ], [ -95.462134038430833, 30.005066243821865 ], [ -95.462052037591405, 30.004971243522728 ], [ -95.460584037528164, 30.003253243246231 ], [ -95.460512037269922, 30.00316924331522 ], [ -95.460122037741442, 30.002712243839866 ], [ -95.459973036805806, 30.002536243833298 ], [ -95.459780036953148, 30.002309243800571 ], [ -95.459751037270777, 30.002275243047606 ], [ -95.458895037029492, 30.001272242981262 ], [ -95.458735036747257, 30.001073243511023 ], [ -95.457907036380703, 29.99995624329847 ], [ -95.457590036847421, 29.99952524288231 ], [ -95.457265036883399, 29.999085243076834 ], [ -95.456807036348508, 29.998461242879241 ], [ -95.456102035610243, 29.997504242739915 ], [ -95.455826035634061, 29.997159242720002 ], [ -95.455546036229649, 29.996834242343162 ], [ -95.455260035365427, 29.996530242069177 ], [ -95.454959035999721, 29.996231242676874 ], [ -95.454854036096805, 29.996133242084184 ], [ -95.454641035592829, 29.995946242269621 ], [ -95.454537035638822, 29.995845242352356 ], [ -95.452074034611798, 29.993761241829326 ], [ -95.451954034777799, 29.993660242184525 ], [ -95.450711034897537, 29.994584242322606 ], [ -95.450612035001569, 29.994645241885078 ], [ -95.450504034276108, 29.994653242275145 ], [ -95.449887034689397, 29.994730242665646 ], [ -95.449296034464652, 29.994829241996126 ], [ -95.447691034241856, 29.99512124217328 ], [ -95.447442033409885, 29.995200241961982 ], [ -95.447303034078345, 29.995310242835913 ], [ -95.446653033243933, 29.996058242337373 ], [ -95.446019033720503, 29.996802243099378 ], [ -95.445825033801853, 29.99704124260613 ], [ -95.445620033118388, 29.997195242626731 ], [ -95.445347033812567, 29.997325242951597 ], [ -95.444992032756105, 29.99748524311979 ], [ -95.444904032855362, 29.997534242880945 ], [ -95.444736033255339, 29.997627243390635 ], [ -95.444481033038613, 29.997780243215093 ], [ -95.44366203245707, 29.998138242826094 ], [ -95.443130032376175, 29.998406243484965 ], [ -95.441806032112467, 29.999073243256298 ], [ -95.441493032279141, 29.999214243811206 ], [ -95.440867032611536, 29.999498243803853 ], [ -95.440561032195944, 29.999637243452447 ], [ -95.439903032441038, 29.999837243479 ], [ -95.440153032003025, 30.000184243444131 ], [ -95.440675032094475, 30.000906244201129 ], [ -95.440923032865953, 30.001251243535211 ], [ -95.441218032146267, 30.00164224375759 ], [ -95.441284032318279, 30.001744243742607 ], [ -95.441489032656122, 30.002001243692678 ], [ -95.441609032633593, 30.00215024439494 ], [ -95.442115033205411, 30.002734244366469 ], [ -95.442245033269984, 30.00288524404316 ], [ -95.44235003237624, 30.00302124394906 ], [ -95.442424032619869, 30.003115244385359 ], [ -95.442751032902848, 30.003573244571982 ], [ -95.442783032967895, 30.003639244682784 ], [ -95.442812033293379, 30.003699244425576 ], [ -95.442873033183233, 30.003761244135813 ], [ -95.442909032640813, 30.003798244641963 ], [ -95.443066033471922, 30.004013244539287 ], [ -95.443153032924187, 30.00411724450645 ], [ -95.443218033020145, 30.004230244588427 ], [ -95.443303032850253, 30.004349244707932 ], [ -95.443990033015609, 30.005300244520292 ], [ -95.444400033127451, 30.005846244332968 ], [ -95.444641033349242, 30.00620724430544 ], [ -95.444760033264984, 30.006403244979136 ], [ -95.444998033861893, 30.00679324493802 ], [ -95.445200033243452, 30.007087244844435 ], [ -95.445371033951929, 30.007319244707073 ], [ -95.445865033767618, 30.008006244941324 ], [ -95.446324033712955, 30.008617245300591 ], [ -95.446461034299006, 30.008818244942923 ], [ -95.446612033721081, 30.009004245633363 ], [ -95.446957034325479, 30.009480245015737 ], [ -95.447186034591027, 30.009775245231737 ], [ -95.447437034859647, 30.010086245497632 ], [ -95.447539034075433, 30.010209245422544 ], [ -95.447693034989683, 30.01039324543909 ], [ -95.447743035040617, 30.010472245090433 ], [ -95.44796203469862, 30.010760245197549 ], [ -95.448909034461622, 30.012079245321772 ], [ -95.44915903537337, 30.012427246257875 ], [ -95.44925103526765, 30.012556246038919 ], [ -95.449293034943679, 30.012614245427738 ], [ -95.449738035367346, 30.01321924618999 ], [ -95.449776035458981, 30.01329124604025 ], [ -95.450334035817818, 30.014054246029811 ], [ -95.450392035775067, 30.014133246470792 ], [ -95.450512035204852, 30.014283246015157 ], [ -95.452628035470013, 30.013129245427759 ], [ -95.453158035708512, 30.012840245368235 ], [ -95.453490036397341, 30.012659246037597 ], [ -95.45374103619956, 30.012522245473704 ], [ -95.454312036734308, 30.012211245361911 ], [ -95.454356036727035, 30.012187245613848 ], [ -95.454928036879565, 30.011875245810828 ], [ -95.455345036595332, 30.011647245097624 ], [ -95.455816036232875, 30.011390245630029 ], [ -95.45610603653185, 30.011232245071135 ], [ -95.457304037167845, 30.010579244919953 ], [ -95.457377036546305, 30.010539245461544 ], [ -95.457411036827153, 30.010520244843406 ], [ -95.457463037204562, 30.010491245423118 ], [ -95.457651037001696, 30.010390245290832 ], [ -95.459088037882125, 30.009607244793465 ], [ -95.463694038490615, 30.007095244584558 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 837, "Tract": "48201550308", "Area_SqMi": 0.54541784944562499, "total_2009": 2192, "total_2010": 2251, "total_2011": 1852, "total_2012": 1854, "total_2013": 1916, "total_2014": 2105, "total_2015": 2205, "total_2016": 3024, "total_2017": 2632, "total_2018": 2573, "total_2019": 3259, "total_2020": 2899, "age1": 749, "age2": 1737, "age3": 753, "earn1": 772, "earn2": 962, "earn3": 1505, "naics_s01": 0, "naics_s02": 6, "naics_s03": 62, "naics_s04": 107, "naics_s05": 578, "naics_s06": 226, "naics_s07": 168, "naics_s08": 106, "naics_s09": 0, "naics_s10": 26, "naics_s11": 172, "naics_s12": 50, "naics_s13": 0, "naics_s14": 751, "naics_s15": 59, "naics_s16": 489, "naics_s17": 21, "naics_s18": 405, "naics_s19": 13, "naics_s20": 0, "race1": 2342, "race2": 696, "race3": 36, "race4": 121, "race5": 10, "race6": 34, "ethnicity1": 1918, "ethnicity2": 1321, "edu1": 704, "edu2": 682, "edu3": 693, "edu4": 411, "Shape_Length": 18213.643940481848, "Shape_Area": 15205316.150565241, "total_2021": 2942, "total_2022": 3239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436003030684006, 29.995879243236729 ], [ -95.436084031230479, 29.995843243006252 ], [ -95.435906031191919, 29.995728243149838 ], [ -95.435567030500223, 29.995520242992296 ], [ -95.434954030985139, 29.995134243221852 ], [ -95.434619030406196, 29.994940242881132 ], [ -95.434243030706483, 29.994743242462995 ], [ -95.433916030162777, 29.994543242874602 ], [ -95.433730029787512, 29.994428242361824 ], [ -95.433636030382431, 29.994374242320308 ], [ -95.433390030363142, 29.994203243080076 ], [ -95.433353030206703, 29.994178242790763 ], [ -95.433264030577718, 29.994101242897052 ], [ -95.433174029836849, 29.994031242975232 ], [ -95.433085029614219, 29.993970243055848 ], [ -95.432861030275831, 29.993762242496615 ], [ -95.432737030377254, 29.993638242933617 ], [ -95.432503030367087, 29.993388242376795 ], [ -95.432358029431512, 29.993225242609846 ], [ -95.432170029462256, 29.992987242815893 ], [ -95.432124029805252, 29.992899242732783 ], [ -95.432065029720505, 29.99283824200652 ], [ -95.432014029593773, 29.992773242305333 ], [ -95.431887029268225, 29.992570242785376 ], [ -95.431798029324511, 29.992414242101432 ], [ -95.431698029867363, 29.992229242380564 ], [ -95.431572029508075, 29.991967242657395 ], [ -95.431497029239821, 29.991782242617134 ], [ -95.43139702900956, 29.991510242324505 ], [ -95.431346028999499, 29.991352242563629 ], [ -95.431333029682321, 29.991303242368861 ], [ -95.431280029302187, 29.991104241793551 ], [ -95.431228029346386, 29.990859242184538 ], [ -95.431185029896128, 29.99057624181351 ], [ -95.431157029691633, 29.99030224160072 ], [ -95.431149029492786, 29.990115241475472 ], [ -95.431147029100103, 29.990047241614842 ], [ -95.431152029366942, 29.989811241613527 ], [ -95.431173029352294, 29.989458242025847 ], [ -95.431197029138161, 29.98926724164621 ], [ -95.431223028894678, 29.989120241341968 ], [ -95.431249029132118, 29.988976241238216 ], [ -95.431320029109244, 29.988690241424472 ], [ -95.431394028899604, 29.988440241512613 ], [ -95.431449029003005, 29.988288241451098 ], [ -95.431611029544115, 29.987923241463466 ], [ -95.431773028951341, 29.987585241224377 ], [ -95.431871029351754, 29.987408241768009 ], [ -95.432024029668582, 29.987167241452152 ], [ -95.432099029958863, 29.987058240960312 ], [ -95.432226029852913, 29.986882240888153 ], [ -95.432426029536444, 29.986637240995172 ], [ -95.432671029724276, 29.986350240985278 ], [ -95.432748029866431, 29.986262241401455 ], [ -95.43285602998381, 29.9861482411557 ], [ -95.433004029828723, 29.985969241024996 ], [ -95.433435030110175, 29.985474241151064 ], [ -95.434239029488012, 29.984553240914465 ], [ -95.434133029733061, 29.984476241062183 ], [ -95.433535029658756, 29.984084240246432 ], [ -95.432460029456763, 29.983378240085134 ], [ -95.43174002940809, 29.98290524002946 ], [ -95.431477029352891, 29.98273224066677 ], [ -95.431379028621649, 29.982668240714798 ], [ -95.431079029101298, 29.982486240565809 ], [ -95.430901029193166, 29.982390240392451 ], [ -95.430556029373548, 29.982225240178312 ], [ -95.430235028323239, 29.982090239981932 ], [ -95.430056028411087, 29.982024240296301 ], [ -95.429911029185931, 29.981970240654707 ], [ -95.429694028144709, 29.981903240196576 ], [ -95.429384028953351, 29.981820240631667 ], [ -95.429242028316068, 29.981788240260016 ], [ -95.428974028641122, 29.98172824060854 ], [ -95.428947028885872, 29.981723239883145 ], [ -95.428769028638982, 29.981694240503906 ], [ -95.428333028664611, 29.981640240227378 ], [ -95.428098027996498, 29.981622240210847 ], [ -95.427561028416719, 29.981618240676251 ], [ -95.425643027521303, 29.98161924058018 ], [ -95.42548202734524, 29.981621240156574 ], [ -95.425237027854934, 29.981640240558558 ], [ -95.424961027569609, 29.981661240376084 ], [ -95.424853027517557, 29.98166924064758 ], [ -95.424675027446682, 29.981683240646639 ], [ -95.424498027758645, 29.981705240530832 ], [ -95.424246027198819, 29.981748240365409 ], [ -95.423785027121539, 29.981815240597548 ], [ -95.423088027357252, 29.981903240925373 ], [ -95.422901026760883, 29.981942240726145 ], [ -95.422775027340705, 29.9819682404631 ], [ -95.422801026417488, 29.982131240498237 ], [ -95.422821027093079, 29.982219240616285 ], [ -95.422905026681917, 29.982656240652425 ], [ -95.422983026908454, 29.983063241115005 ], [ -95.423646027531817, 29.986527241840683 ], [ -95.424109027624354, 29.989307242221134 ], [ -95.42425402764249, 29.990183242060919 ], [ -95.424645027856357, 29.992530242792167 ], [ -95.424735027914465, 29.992877242688611 ], [ -95.425588027890555, 29.997534243648946 ], [ -95.42561502800163, 29.997644243579405 ], [ -95.425750028194656, 29.997619243924262 ], [ -95.426024028463146, 29.997573243491249 ], [ -95.426488028239447, 29.997533243423881 ], [ -95.427583028322786, 29.997456243333886 ], [ -95.427680028563302, 29.99744324365129 ], [ -95.428190029273694, 29.997392243774584 ], [ -95.428432029107896, 29.997369243729754 ], [ -95.428966029477508, 29.997333243715268 ], [ -95.429009029211585, 29.997331243208521 ], [ -95.429121028981058, 29.997327243802747 ], [ -95.429364029184555, 29.997317243336241 ], [ -95.429643029783705, 29.997306243470597 ], [ -95.430374029191569, 29.997283243658703 ], [ -95.430479029660702, 29.997280243107344 ], [ -95.430757029895474, 29.997278243802146 ], [ -95.431605030112749, 29.997309243022645 ], [ -95.43191603004783, 29.99730724340024 ], [ -95.432029030250334, 29.997303243780149 ], [ -95.432314030186987, 29.997282243671297 ], [ -95.43260503043625, 29.997249243618043 ], [ -95.432900030420228, 29.997203243644108 ], [ -95.433191030431615, 29.997146243527546 ], [ -95.433475030104546, 29.997076242930202 ], [ -95.433754030416395, 29.996997242925925 ], [ -95.434026030830466, 29.996908243625061 ], [ -95.434291030702212, 29.996806243060835 ], [ -95.43458403089717, 29.996678243499844 ], [ -95.434875030234821, 29.996532243235716 ], [ -95.435162030837859, 29.996370242635706 ], [ -95.43534203035739, 29.996262242868251 ], [ -95.436003030684006, 29.995879243236729 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 838, "Tract": "48201252001", "Area_SqMi": 2.8561365621938597, "total_2009": 89, "total_2010": 103, "total_2011": 212, "total_2012": 196, "total_2013": 244, "total_2014": 169, "total_2015": 269, "total_2016": 193, "total_2017": 195, "total_2018": 656, "total_2019": 307, "total_2020": 346, "age1": 149, "age2": 282, "age3": 89, "earn1": 97, "earn2": 164, "earn3": 259, "naics_s01": 0, "naics_s02": 0, "naics_s03": 11, "naics_s04": 29, "naics_s05": 119, "naics_s06": 20, "naics_s07": 3, "naics_s08": 7, "naics_s09": 1, "naics_s10": 14, "naics_s11": 11, "naics_s12": 20, "naics_s13": 0, "naics_s14": 135, "naics_s15": 3, "naics_s16": 49, "naics_s17": 4, "naics_s18": 79, "naics_s19": 15, "naics_s20": 0, "race1": 389, "race2": 84, "race3": 4, "race4": 26, "race5": 1, "race6": 16, "ethnicity1": 299, "ethnicity2": 221, "edu1": 95, "edu2": 106, "edu3": 105, "edu4": 65, "Shape_Length": 42964.757331720328, "Shape_Area": 79624199.027383953, "total_2021": 461, "total_2022": 520 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.206228969127864, 29.932073237867041 ], [ -95.206391969172117, 29.931916238217511 ], [ -95.20520796873808, 29.930960237788778 ], [ -95.204228968428254, 29.930192237205741 ], [ -95.203349968320609, 29.929503237611303 ], [ -95.202969968351141, 29.929203237778339 ], [ -95.202482967475007, 29.928782237049781 ], [ -95.202041968284348, 29.928383236814007 ], [ -95.201657967715406, 29.927932237167518 ], [ -95.201310967385339, 29.927479236976488 ], [ -95.200960967935316, 29.926935236545404 ], [ -95.20071596771318, 29.926388237060056 ], [ -95.200471966866871, 29.925883236335157 ], [ -95.200285967642557, 29.92539823634208 ], [ -95.200146967262157, 29.924903236371833 ], [ -95.200112967224101, 29.924764236777026 ], [ -95.200093966856926, 29.924679236681381 ], [ -95.199931966632846, 29.924698236568084 ], [ -95.19977496734208, 29.924720236593842 ], [ -95.199657967052374, 29.924737236344232 ], [ -95.199433967367071, 29.924770236958089 ], [ -95.198912967258835, 29.924845236288089 ], [ -95.198177966273349, 29.924933237042318 ], [ -95.197178966593199, 29.925001236717602 ], [ -95.196620965837454, 29.92501123687429 ], [ -95.196032966613572, 29.924982237017876 ], [ -95.195813965893223, 29.924957236359553 ], [ -95.195336965794425, 29.924903236310644 ], [ -95.194935965577443, 29.924845236663788 ], [ -95.194660965784465, 29.924776236616296 ], [ -95.194308965326613, 29.924688236899392 ], [ -95.193779965285458, 29.924570236425325 ], [ -95.193210965878677, 29.924472237001257 ], [ -95.19289796521781, 29.924414236686601 ], [ -95.192466965263492, 29.924365236587708 ], [ -95.19202596504951, 29.924335236795852 ], [ -95.191633965235539, 29.92432523711253 ], [ -95.191075964725385, 29.924335236710039 ], [ -95.190614965180217, 29.924374236714407 ], [ -95.190301964122852, 29.924414237171241 ], [ -95.190026964898465, 29.924464236725086 ], [ -95.189483964865758, 29.924561236520169 ], [ -95.189008963908393, 29.92464923732226 ], [ -95.188621964017202, 29.924707236858485 ], [ -95.188160963690564, 29.924737237030772 ], [ -95.187798963876233, 29.924756236879404 ], [ -95.187473963597157, 29.924747237187717 ], [ -95.18729396347932, 29.924742236754092 ], [ -95.186025963772323, 29.924707237043428 ], [ -95.185623963586153, 29.924717236622616 ], [ -95.185182963837164, 29.92474223729614 ], [ -95.184663963256028, 29.924781237408276 ], [ -95.184340963421207, 29.924820236649083 ], [ -95.183654962462256, 29.924923237531296 ], [ -95.183139963323001, 29.92504523747716 ], [ -95.182797962648948, 29.925143237112572 ], [ -95.182586962438137, 29.925202236920981 ], [ -95.182140962265521, 29.92536923746837 ], [ -95.181714961991815, 29.925530237740368 ], [ -95.181170961920117, 29.925775237612999 ], [ -95.180793962595743, 29.925966237481056 ], [ -95.180347961958589, 29.926216237868697 ], [ -95.179872961983037, 29.926539237876103 ], [ -95.179568962029506, 29.926751237449892 ], [ -95.179338962382857, 29.92693623729178 ], [ -95.178844961460484, 29.927397237875049 ], [ -95.178481961895244, 29.927769237493962 ], [ -95.178217961459083, 29.928053237784738 ], [ -95.177913961243974, 29.928455237957753 ], [ -95.177614961531077, 29.928886238134133 ], [ -95.177403962048416, 29.929253238136493 ], [ -95.177193961878558, 29.929621238440152 ], [ -95.177036961889726, 29.929973238075632 ], [ -95.176865960952043, 29.930404238201181 ], [ -95.176759961874737, 29.930717238964654 ], [ -95.176659961692422, 29.931012238925412 ], [ -95.176551960963181, 29.931521238972653 ], [ -95.176478961077549, 29.93198623890083 ], [ -95.176434961842389, 29.932378238487484 ], [ -95.176424961830094, 29.932633239407856 ], [ -95.176414961871359, 29.932961238928463 ], [ -95.17643496105886, 29.933545238772833 ], [ -95.176438961515103, 29.933980239152358 ], [ -95.176429961426365, 29.934343238993314 ], [ -95.176409961965916, 29.93468123936216 ], [ -95.176394961338673, 29.93500423987453 ], [ -95.176379961459148, 29.935242239067598 ], [ -95.176375961853466, 29.935303239203282 ], [ -95.17636096123266, 29.935376239222176 ], [ -95.176247961920083, 29.936018240114485 ], [ -95.176091961910146, 29.936988239473891 ], [ -95.175963961544397, 29.93759523956653 ], [ -95.175908961810705, 29.937952240087821 ], [ -95.175841961220428, 29.938384240477944 ], [ -95.175733961409918, 29.939285240020055 ], [ -95.17573396133082, 29.939834240517502 ], [ -95.17573996209903, 29.940505240843489 ], [ -95.175743961987706, 29.940990240653939 ], [ -95.175749962159415, 29.941379240396522 ], [ -95.175753961311159, 29.941666240748269 ], [ -95.175743961773478, 29.942185241148049 ], [ -95.175694961422423, 29.942841241490804 ], [ -95.175616961738228, 29.943507241160585 ], [ -95.175486961356938, 29.944433241696615 ], [ -95.175187961917175, 29.94655424150443 ], [ -95.175109961367909, 29.947109241623032 ], [ -95.174851961930642, 29.94894524191962 ], [ -95.174518961905974, 29.95130624250487 ], [ -95.17441196202725, 29.951923243103867 ], [ -95.174313961967542, 29.952383242929173 ], [ -95.174195962249527, 29.952785243619868 ], [ -95.174097962214788, 29.953069243327093 ], [ -95.173831961790654, 29.95364124299207 ], [ -95.173715961319417, 29.953892243532852 ], [ -95.173601961671707, 29.954086243822996 ], [ -95.173490962037675, 29.954274243785488 ], [ -95.173333961158988, 29.954548243218404 ], [ -95.173029961857466, 29.954979243989179 ], [ -95.172657960982491, 29.955450244016969 ], [ -95.171736961322566, 29.956704243635784 ], [ -95.171455961105437, 29.957068244132103 ], [ -95.171382961220729, 29.957164244566769 ], [ -95.170982961591122, 29.957683243928969 ], [ -95.16964096135834, 29.959505245140107 ], [ -95.169444960905807, 29.959760244838652 ], [ -95.169385961208647, 29.959869244772783 ], [ -95.169091961080952, 29.960348244780285 ], [ -95.168905960809184, 29.960759245055712 ], [ -95.168728961164248, 29.961249245403874 ], [ -95.168650960405259, 29.961602244993024 ], [ -95.168627961257101, 29.961716245393212 ], [ -95.168572961200084, 29.961994244854704 ], [ -95.1685529607836, 29.962356245276847 ], [ -95.168562960953111, 29.962817245184134 ], [ -95.168611960948553, 29.96329724590521 ], [ -95.168650960747712, 29.963561245556967 ], [ -95.168777961213721, 29.963992245937181 ], [ -95.16884496141364, 29.964210246083542 ], [ -95.168924960503389, 29.96447224616832 ], [ -95.169022961124881, 29.964747245368034 ], [ -95.169571961286934, 29.966226246233308 ], [ -95.169885961280229, 29.967103246063946 ], [ -95.169928961645354, 29.967223246119666 ], [ -95.170589961822273, 29.966593245871103 ], [ -95.171259961704635, 29.965998245991702 ], [ -95.171841961689424, 29.965416246093145 ], [ -95.172181961807809, 29.965074246055394 ], [ -95.173181962213789, 29.964082245392376 ], [ -95.173828961807672, 29.963435245207549 ], [ -95.174544962805726, 29.962748245237425 ], [ -95.175012962544841, 29.962306244677251 ], [ -95.175654962194173, 29.961687244698822 ], [ -95.177451963055887, 29.959994244607575 ], [ -95.177509963058213, 29.959939244204406 ], [ -95.178307962837806, 29.959150244551459 ], [ -95.180733963819947, 29.956813243576043 ], [ -95.181345963481405, 29.956215243305042 ], [ -95.182741963661584, 29.954847243090125 ], [ -95.183664964453598, 29.953958243501877 ], [ -95.184646964948385, 29.953015243064009 ], [ -95.185746964696619, 29.951968242323112 ], [ -95.190991966209708, 29.946870241008003 ], [ -95.195548966892105, 29.942421240678502 ], [ -95.195960967088311, 29.942032239990453 ], [ -95.196002966963803, 29.941991239918767 ], [ -95.199654967199038, 29.93843223897732 ], [ -95.201495967836735, 29.936663238903598 ], [ -95.203116967995143, 29.935103238562746 ], [ -95.203745968674255, 29.93450223879864 ], [ -95.204107968688604, 29.934157238690471 ], [ -95.205965969205252, 29.932327237598813 ], [ -95.206228969127864, 29.932073237867041 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 839, "Tract": "48201520603", "Area_SqMi": 0.13645651305425097, "total_2009": 290, "total_2010": 314, "total_2011": 275, "total_2012": 218, "total_2013": 242, "total_2014": 248, "total_2015": 149, "total_2016": 138, "total_2017": 133, "total_2018": 126, "total_2019": 129, "total_2020": 138, "age1": 47, "age2": 94, "age3": 42, "earn1": 48, "earn2": 90, "earn3": 45, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 20, "naics_s06": 0, "naics_s07": 30, "naics_s08": 0, "naics_s09": 0, "naics_s10": 11, "naics_s11": 22, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 42, "naics_s17": 0, "naics_s18": 46, "naics_s19": 12, "naics_s20": 0, "race1": 138, "race2": 15, "race3": 4, "race4": 23, "race5": 1, "race6": 2, "ethnicity1": 92, "ethnicity2": 91, "edu1": 45, "edu2": 27, "edu3": 27, "edu4": 37, "Shape_Length": 8321.7697468863207, "Shape_Area": 3804174.0362963146, "total_2021": 167, "total_2022": 183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.48933703607895, 29.810679203758166 ], [ -95.489352036418964, 29.809896203515532 ], [ -95.489327035663507, 29.809134203146105 ], [ -95.489312036167078, 29.808677202701585 ], [ -95.489281036272814, 29.808517202922012 ], [ -95.489187036093696, 29.808314203107724 ], [ -95.48919003612373, 29.80799120296313 ], [ -95.489187036372115, 29.80761920276392 ], [ -95.489176035475452, 29.807130202183966 ], [ -95.489169036031342, 29.805865201921254 ], [ -95.489167035751578, 29.805543202486685 ], [ -95.489134035955743, 29.80538120225108 ], [ -95.488988035890898, 29.805099202552238 ], [ -95.488955035285827, 29.804897202309832 ], [ -95.48892903553633, 29.803914202328489 ], [ -95.488925036014635, 29.803335202131141 ], [ -95.488888035492636, 29.803072202135166 ], [ -95.48886703587263, 29.802889201341365 ], [ -95.488613035380766, 29.802883201920363 ], [ -95.487255034929802, 29.802851201347817 ], [ -95.487174034960788, 29.802849201585531 ], [ -95.486535034952894, 29.80283420212352 ], [ -95.484840034159632, 29.802843201756804 ], [ -95.48487903469821, 29.804746202628294 ], [ -95.4848950344484, 29.805546202299894 ], [ -95.484924035061596, 29.806712202420275 ], [ -95.484948035107649, 29.807690202728025 ], [ -95.484933035241895, 29.807880203263572 ], [ -95.484940034717155, 29.809185203367011 ], [ -95.484996035318844, 29.810576203696108 ], [ -95.485759034753229, 29.810582203760742 ], [ -95.486715035635811, 29.810618203217665 ], [ -95.487294035690383, 29.810690203438305 ], [ -95.487325035775072, 29.810694203750835 ], [ -95.488199035772382, 29.810707203332161 ], [ -95.48933703607895, 29.810679203758166 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 840, "Tract": "48201521201", "Area_SqMi": 0.1856985700566306, "total_2009": 448, "total_2010": 194, "total_2011": 263, "total_2012": 293, "total_2013": 295, "total_2014": 284, "total_2015": 293, "total_2016": 289, "total_2017": 311, "total_2018": 507, "total_2019": 480, "total_2020": 521, "age1": 81, "age2": 243, "age3": 111, "earn1": 47, "earn2": 171, "earn3": 217, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 42, "naics_s05": 16, "naics_s06": 10, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 66, "naics_s12": 53, "naics_s13": 6, "naics_s14": 181, "naics_s15": 0, "naics_s16": 25, "naics_s17": 1, "naics_s18": 25, "naics_s19": 6, "naics_s20": 0, "race1": 334, "race2": 31, "race3": 7, "race4": 58, "race5": 0, "race6": 5, "ethnicity1": 254, "ethnicity2": 181, "edu1": 91, "edu2": 92, "edu3": 88, "edu4": 83, "Shape_Length": 9354.0919670386611, "Shape_Area": 5176958.3068998065, "total_2021": 561, "total_2022": 435 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.506598040541959, 29.811000202930419 ], [ -95.506576040281431, 29.809845202273735 ], [ -95.506568040108291, 29.80895020245789 ], [ -95.506566040719548, 29.808851202256658 ], [ -95.506564040890979, 29.808669202358015 ], [ -95.506555040023017, 29.808016202503136 ], [ -95.506550040592941, 29.807585201993778 ], [ -95.506550040478871, 29.807528202308575 ], [ -95.50654704064894, 29.807329202469226 ], [ -95.506545040319651, 29.807162202249476 ], [ -95.506543039928872, 29.806928202175538 ], [ -95.506541040219759, 29.806794201822903 ], [ -95.506540040479038, 29.806697201640965 ], [ -95.506535040401474, 29.806273201682789 ], [ -95.506534040812767, 29.806136201775093 ], [ -95.506530040290002, 29.805705201778466 ], [ -95.506525040057809, 29.805264201693689 ], [ -95.506529040570598, 29.804547201917856 ], [ -95.506533039937722, 29.803850201381856 ], [ -95.506528039781642, 29.803081201311134 ], [ -95.505986039809159, 29.803071200824895 ], [ -95.505222039554909, 29.803056201592486 ], [ -95.50468703969598, 29.803049200842668 ], [ -95.504120039286079, 29.803041200986442 ], [ -95.503560039910454, 29.803036201128226 ], [ -95.502442039270719, 29.803028201606931 ], [ -95.501865038780707, 29.803009200904565 ], [ -95.500899039022215, 29.803021201679389 ], [ -95.500906038893632, 29.803961201500019 ], [ -95.500869038644353, 29.808197202359342 ], [ -95.500876038812521, 29.808296202452109 ], [ -95.500873038866999, 29.809011202936258 ], [ -95.500863039375545, 29.810912203056098 ], [ -95.501559039613738, 29.810931202652256 ], [ -95.502413039757769, 29.810941202876524 ], [ -95.503389039549475, 29.810954202684076 ], [ -95.503826039395051, 29.810964203049224 ], [ -95.504235040050673, 29.810963202791207 ], [ -95.504604040121492, 29.810976203292995 ], [ -95.504823040165178, 29.810984202838519 ], [ -95.50591504061434, 29.811001203062556 ], [ -95.506598040541959, 29.811000202930419 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 841, "Tract": "48201541207", "Area_SqMi": 0.87874998012635441, "total_2009": 167, "total_2010": 200, "total_2011": 196, "total_2012": 219, "total_2013": 277, "total_2014": 226, "total_2015": 239, "total_2016": 221, "total_2017": 191, "total_2018": 372, "total_2019": 265, "total_2020": 310, "age1": 141, "age2": 223, "age3": 92, "earn1": 103, "earn2": 170, "earn3": 183, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 17, "naics_s05": 0, "naics_s06": 19, "naics_s07": 97, "naics_s08": 3, "naics_s09": 8, "naics_s10": 2, "naics_s11": 26, "naics_s12": 106, "naics_s13": 3, "naics_s14": 4, "naics_s15": 22, "naics_s16": 83, "naics_s17": 0, "naics_s18": 36, "naics_s19": 27, "naics_s20": 0, "race1": 314, "race2": 91, "race3": 2, "race4": 41, "race5": 2, "race6": 6, "ethnicity1": 329, "ethnicity2": 127, "edu1": 57, "edu2": 75, "edu3": 97, "edu4": 86, "Shape_Length": 23367.858916121149, "Shape_Area": 24498045.450300619, "total_2021": 375, "total_2022": 456 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.686008090963369, 29.908529216747073 ], [ -95.685988091022338, 29.907848216435887 ], [ -95.685969090355371, 29.907596216342196 ], [ -95.685938090828017, 29.90738721632535 ], [ -95.685154090789396, 29.903217215152637 ], [ -95.684749090576204, 29.901093214898214 ], [ -95.68471509011431, 29.900911214782731 ], [ -95.684547089606141, 29.900016215075713 ], [ -95.684244090055486, 29.898399214770812 ], [ -95.684218089372649, 29.898262214919846 ], [ -95.684125089654742, 29.897770214759927 ], [ -95.683963089252046, 29.896907214477281 ], [ -95.68374809002853, 29.896942213977475 ], [ -95.683275089654288, 29.897007213929719 ], [ -95.682785089206945, 29.897081214676533 ], [ -95.68251008901639, 29.897123213875847 ], [ -95.682155088999565, 29.897172214060895 ], [ -95.681097089152999, 29.897319214290519 ], [ -95.678942088535592, 29.897632214559295 ], [ -95.678907088021546, 29.897432214188164 ], [ -95.678810088583376, 29.896863214395115 ], [ -95.678707088127595, 29.896337214488586 ], [ -95.678596088240184, 29.896179214324111 ], [ -95.678502088082539, 29.896044214157499 ], [ -95.678152088066867, 29.895647214295476 ], [ -95.678572088215489, 29.895312214336119 ], [ -95.67845208867513, 29.894800214217561 ], [ -95.678447088271938, 29.89470021414699 ], [ -95.678414088545523, 29.894339213873845 ], [ -95.677825088608145, 29.894374213687154 ], [ -95.677509087893071, 29.894389213579078 ], [ -95.677409088066128, 29.894390214133995 ], [ -95.677313087444801, 29.894379213930861 ], [ -95.677226088013882, 29.894352213948839 ], [ -95.677150087976685, 29.894313214189555 ], [ -95.677012088196165, 29.894217214014837 ], [ -95.677045087833136, 29.894182214053238 ], [ -95.677090087721936, 29.894118214171868 ], [ -95.677122087470849, 29.894061213908579 ], [ -95.677155087992759, 29.893979214051285 ], [ -95.677179087463699, 29.893882213680023 ], [ -95.677204088304407, 29.893687213796877 ], [ -95.677207087822325, 29.893628213734544 ], [ -95.677209088121984, 29.893517214120543 ], [ -95.677192087535147, 29.893342213695604 ], [ -95.677157088351009, 29.893190213345786 ], [ -95.677115087414535, 29.893064213823713 ], [ -95.677054087471518, 29.892924213505211 ], [ -95.676971087429905, 29.892781213351764 ], [ -95.676922087387084, 29.89270921386996 ], [ -95.676812087697499, 29.892573213989124 ], [ -95.676698087621219, 29.892456214002834 ], [ -95.676565087914184, 29.892339213556216 ], [ -95.676180087986396, 29.892003213908069 ], [ -95.676130087361742, 29.891969213280252 ], [ -95.676728087449646, 29.891441213805006 ], [ -95.676882087937827, 29.89132021370456 ], [ -95.67700708819055, 29.891243213498534 ], [ -95.677039088066735, 29.89122721293927 ], [ -95.677119088182508, 29.891188213361104 ], [ -95.677135087597819, 29.891181213093404 ], [ -95.677176087980726, 29.891164213326299 ], [ -95.677069087749345, 29.89098221302169 ], [ -95.677028087271339, 29.890940213272547 ], [ -95.676969087751786, 29.890896213543972 ], [ -95.67692208767491, 29.890869212850117 ], [ -95.676652087523721, 29.890743213557354 ], [ -95.676442087081981, 29.890634213097574 ], [ -95.676265087972951, 29.890522212843077 ], [ -95.676116087237105, 29.890411212793595 ], [ -95.675977087355591, 29.890290213545036 ], [ -95.675853087652058, 29.890162212735497 ], [ -95.675730087274246, 29.890011213125366 ], [ -95.675682087409257, 29.889948212919659 ], [ -95.675557087545087, 29.889767212998159 ], [ -95.675478087671522, 29.889623213256364 ], [ -95.675436087520254, 29.889532213421866 ], [ -95.675396087047261, 29.889545212911798 ], [ -95.67529008675119, 29.889579213269933 ], [ -95.674660086940889, 29.889781213438681 ], [ -95.673898086803774, 29.890031213161613 ], [ -95.673106086613714, 29.890286213210711 ], [ -95.672791086328942, 29.890398213091284 ], [ -95.672548086230861, 29.890503213141663 ], [ -95.672446086472902, 29.89034721295161 ], [ -95.67239908672785, 29.890290213098645 ], [ -95.672336086401799, 29.890225213227563 ], [ -95.672206086634858, 29.890114213314945 ], [ -95.672094086310494, 29.89003821337246 ], [ -95.671969086367753, 29.889965213230461 ], [ -95.671831086576503, 29.889901213078833 ], [ -95.671681085800898, 29.88984921340268 ], [ -95.671519086017312, 29.889811213387219 ], [ -95.671350085780006, 29.88978921342072 ], [ -95.671186086408525, 29.889778213180524 ], [ -95.670995085774976, 29.889775212841037 ], [ -95.670887086165919, 29.88977721306464 ], [ -95.67067908637145, 29.889790213527125 ], [ -95.670467086147696, 29.889816213287656 ], [ -95.670227085961869, 29.889868212954482 ], [ -95.669104085527394, 29.890189213533549 ], [ -95.668973085794022, 29.890219213683821 ], [ -95.668764086037299, 29.890243212987752 ], [ -95.668469085540039, 29.890256213505189 ], [ -95.668475085698574, 29.890479213314613 ], [ -95.668506085727969, 29.892944214318991 ], [ -95.668545086176081, 29.895414214483349 ], [ -95.668545085558677, 29.895480214249744 ], [ -95.66855108530379, 29.895966214520691 ], [ -95.668570085420569, 29.896390214744866 ], [ -95.668605085341611, 29.896702214432377 ], [ -95.668641085544138, 29.896913214390413 ], [ -95.668692085819742, 29.897137214435229 ], [ -95.668715086290703, 29.897237215120651 ], [ -95.669370085962029, 29.899559215600739 ], [ -95.669400086407776, 29.899671215137388 ], [ -95.669542086284864, 29.900197214978718 ], [ -95.669619085860276, 29.900582215532445 ], [ -95.669670086497305, 29.900907215747896 ], [ -95.669698086643649, 29.901115215861548 ], [ -95.66974008665656, 29.901528215957502 ], [ -95.66975708644685, 29.901862215532006 ], [ -95.669775086902959, 29.902920215685345 ], [ -95.669778086817374, 29.903257216166406 ], [ -95.669778086743619, 29.903284216204025 ], [ -95.669782086554818, 29.904160215929043 ], [ -95.669780086816687, 29.904734215895079 ], [ -95.669760086629296, 29.905048215941779 ], [ -95.669729086141999, 29.905293216794586 ], [ -95.669667086374147, 29.905639216255057 ], [ -95.669616086017413, 29.905849216836984 ], [ -95.67033408676572, 29.906000216523569 ], [ -95.67063108672663, 29.906048216483594 ], [ -95.67093908718212, 29.906086216659077 ], [ -95.671260086504404, 29.906112216837201 ], [ -95.671426087466926, 29.906118216113949 ], [ -95.671774086905245, 29.906122216112475 ], [ -95.674059087226254, 29.906110216467283 ], [ -95.674628087446266, 29.906108216363009 ], [ -95.674882088030202, 29.906107216506193 ], [ -95.675431088493937, 29.906114215960994 ], [ -95.675784087743963, 29.906129216057188 ], [ -95.67630508863023, 29.906164216042846 ], [ -95.676806088769169, 29.906213216479902 ], [ -95.676983088860467, 29.906235216406422 ], [ -95.677289088268211, 29.906275216533434 ], [ -95.677765089121991, 29.906350216185004 ], [ -95.67822108864317, 29.906437216740297 ], [ -95.678660089088197, 29.906532216761192 ], [ -95.678937088619008, 29.906599216458286 ], [ -95.6790750894545, 29.906633216393566 ], [ -95.679470089074599, 29.90674121646774 ], [ -95.679552089114466, 29.906765216274955 ], [ -95.679950088801164, 29.906886216434685 ], [ -95.680256089055732, 29.906987216146021 ], [ -95.680578089529675, 29.90710521611042 ], [ -95.681167089241342, 29.907332216054048 ], [ -95.681557089406525, 29.907497216113651 ], [ -95.6822110893971, 29.907798216103529 ], [ -95.682352089582466, 29.907860216288128 ], [ -95.682600090048339, 29.90797021650269 ], [ -95.682857089977333, 29.908072216416041 ], [ -95.683110090105217, 29.908161216757055 ], [ -95.683364089657289, 29.908240216638422 ], [ -95.683618090306979, 29.908308216628392 ], [ -95.68387108975783, 29.908366216361912 ], [ -95.684117090498333, 29.908412216523132 ], [ -95.684461090518241, 29.908465216927773 ], [ -95.684787090141711, 29.908498216148448 ], [ -95.685198090982936, 29.908518216197709 ], [ -95.685686090307712, 29.908517216085603 ], [ -95.685902090707657, 29.908525216444218 ], [ -95.686008090963369, 29.908529216747073 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 842, "Tract": "48201250405", "Area_SqMi": 0.99295703895027621, "total_2009": 165, "total_2010": 271, "total_2011": 410, "total_2012": 518, "total_2013": 510, "total_2014": 532, "total_2015": 693, "total_2016": 754, "total_2017": 808, "total_2018": 896, "total_2019": 1043, "total_2020": 862, "age1": 409, "age2": 403, "age3": 134, "earn1": 347, "earn2": 395, "earn3": 204, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 6, "naics_s06": 3, "naics_s07": 168, "naics_s08": 24, "naics_s09": 0, "naics_s10": 24, "naics_s11": 8, "naics_s12": 55, "naics_s13": 0, "naics_s14": 2, "naics_s15": 32, "naics_s16": 167, "naics_s17": 24, "naics_s18": 384, "naics_s19": 45, "naics_s20": 0, "race1": 704, "race2": 141, "race3": 6, "race4": 77, "race5": 3, "race6": 15, "ethnicity1": 627, "ethnicity2": 319, "edu1": 114, "edu2": 146, "edu3": 154, "edu4": 123, "Shape_Length": 21607.62044382223, "Shape_Area": 27681942.782976855, "total_2021": 856, "total_2022": 946 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.178023964117358, 29.992565251263834 ], [ -95.178031964645569, 29.987476250025846 ], [ -95.177962964112126, 29.987467250200098 ], [ -95.177962963883388, 29.987248250382322 ], [ -95.177966964607691, 29.986417249969712 ], [ -95.177897964267785, 29.981675249324756 ], [ -95.177889963899077, 29.980857248706492 ], [ -95.17780596402649, 29.980860248543792 ], [ -95.177225963717348, 29.980851248358039 ], [ -95.176847963237208, 29.980868248507011 ], [ -95.176456964053898, 29.980866248572951 ], [ -95.175569963163099, 29.980969248502259 ], [ -95.174512963224259, 29.981184249211221 ], [ -95.173287962859646, 29.981446248705346 ], [ -95.170258961745205, 29.982083248996954 ], [ -95.169403962048932, 29.982105249742116 ], [ -95.168473961792017, 29.981973249163975 ], [ -95.167441961269816, 29.981722248971245 ], [ -95.166393960743108, 29.981318248968527 ], [ -95.165825961245076, 29.981007249666384 ], [ -95.165318960800562, 29.98065824942951 ], [ -95.165033960210437, 29.980249249202004 ], [ -95.164749961017989, 29.980179248964699 ], [ -95.164217960264949, 29.980500248793099 ], [ -95.163951960621873, 29.980672249135587 ], [ -95.163697960826084, 29.980849249469365 ], [ -95.163641960252875, 29.98089224893754 ], [ -95.163576959872429, 29.980943249662893 ], [ -95.163341960368442, 29.981139249630509 ], [ -95.163228960318946, 29.981241249059359 ], [ -95.163201960253218, 29.981267249481498 ], [ -95.162954960425168, 29.981511249409809 ], [ -95.162553960071449, 29.981987249978875 ], [ -95.162304959724963, 29.982327249375754 ], [ -95.162040960198851, 29.982765249620321 ], [ -95.161844959865007, 29.983203249394581 ], [ -95.161662959505662, 29.983709249694012 ], [ -95.161549959664242, 29.984010249628437 ], [ -95.161503959966126, 29.984305250043878 ], [ -95.161435959531374, 29.98468225052887 ], [ -95.161398960239325, 29.984999250342145 ], [ -95.161390959458544, 29.985543250649041 ], [ -95.161443960425714, 29.987249250760502 ], [ -95.161450959622641, 29.987532250262017 ], [ -95.161484959776828, 29.988893251062699 ], [ -95.161496959973178, 29.989380251101448 ], [ -95.161526960588432, 29.990557251071305 ], [ -95.161596959894865, 29.99248625185875 ], [ -95.16164096072518, 29.99436325209178 ], [ -95.161680960313916, 29.995032252140309 ], [ -95.16167396075079, 29.996038252050198 ], [ -95.161667961041942, 29.996976252857017 ], [ -95.161671960525794, 29.997060252233005 ], [ -95.161858960602729, 29.997826252910262 ], [ -95.161928960968851, 29.998112253014206 ], [ -95.161975961173553, 29.998304252816716 ], [ -95.162097960768733, 29.998637252929154 ], [ -95.162280960501704, 29.99858925261746 ], [ -95.162435961000071, 29.998547252641448 ], [ -95.162564961177338, 29.998518252483255 ], [ -95.162815960573084, 29.998462252451144 ], [ -95.162995960982983, 29.998421253096712 ], [ -95.163561960997725, 29.998317253204 ], [ -95.164132961015426, 29.998234253069676 ], [ -95.165035961460887, 29.998227252847098 ], [ -95.16506796173816, 29.998040253079452 ], [ -95.16508696125554, 29.997972252908696 ], [ -95.165116961267188, 29.997890252611683 ], [ -95.165178961635931, 29.997767252362571 ], [ -95.165265961393118, 29.997635252432186 ], [ -95.165320961248625, 29.997569252211068 ], [ -95.165383961620392, 29.997506252417441 ], [ -95.165456961192518, 29.997448252602613 ], [ -95.165501961406775, 29.997419252547811 ], [ -95.165539961347804, 29.997394252655013 ], [ -95.16563196135759, 29.997347252374976 ], [ -95.165736962029499, 29.997307252223123 ], [ -95.165976961601771, 29.997231252828186 ], [ -95.167029961547229, 29.996922252485739 ], [ -95.16803996229487, 29.996610252583682 ], [ -95.168610961852067, 29.99643925258199 ], [ -95.169236962743241, 29.996240251782616 ], [ -95.174007963261857, 29.994658251671687 ], [ -95.176003963629213, 29.993994251663306 ], [ -95.176915963935315, 29.993694251801656 ], [ -95.178020964389347, 29.993331251663172 ], [ -95.178023964117358, 29.992565251263834 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 843, "Tract": "48201250303", "Area_SqMi": 0.80791111886058786, "total_2009": 75, "total_2010": 164, "total_2011": 160, "total_2012": 191, "total_2013": 221, "total_2014": 247, "total_2015": 378, "total_2016": 459, "total_2017": 476, "total_2018": 543, "total_2019": 520, "total_2020": 616, "age1": 371, "age2": 284, "age3": 100, "earn1": 336, "earn2": 269, "earn3": 150, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 0, "naics_s06": 1, "naics_s07": 42, "naics_s08": 45, "naics_s09": 0, "naics_s10": 34, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 8, "naics_s15": 26, "naics_s16": 59, "naics_s17": 79, "naics_s18": 402, "naics_s19": 37, "naics_s20": 0, "race1": 527, "race2": 165, "race3": 6, "race4": 43, "race5": 0, "race6": 14, "ethnicity1": 450, "ethnicity2": 305, "edu1": 101, "edu2": 99, "edu3": 113, "edu4": 71, "Shape_Length": 20406.720843288051, "Shape_Area": 22523179.240133815, "total_2021": 679, "total_2022": 755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.249707980932413, 29.950526240493559 ], [ -95.249705981189848, 29.949629240292918 ], [ -95.249700981264738, 29.949389239516314 ], [ -95.249665980482177, 29.947545239401094 ], [ -95.249662981244825, 29.94692623907374 ], [ -95.249655981196796, 29.946528239387398 ], [ -95.249622980717945, 29.944626238833212 ], [ -95.249607980309293, 29.943466238296569 ], [ -95.249605980936693, 29.943262238873885 ], [ -95.249593980167504, 29.942809238916507 ], [ -95.249590980884378, 29.941911238074905 ], [ -95.249571980711409, 29.941283237846125 ], [ -95.249565980733408, 29.94104423834662 ], [ -95.249567980443899, 29.940626238432994 ], [ -95.249550980606131, 29.939778237772028 ], [ -95.249549980966336, 29.939677238065915 ], [ -95.249552981004797, 29.939509237474226 ], [ -95.249565980739348, 29.938782237631131 ], [ -95.249563980524542, 29.938552238035335 ], [ -95.249562980708546, 29.938240237482795 ], [ -95.249567980107344, 29.937404237672965 ], [ -95.249573980499648, 29.936481236900377 ], [ -95.249560980448038, 29.935865236842435 ], [ -95.249518979817339, 29.935329236755322 ], [ -95.249513980144783, 29.935209237237785 ], [ -95.249508979937872, 29.935103236857348 ], [ -95.249502980574221, 29.934899237015216 ], [ -95.249508980609534, 29.934748236495839 ], [ -95.249519980084784, 29.934506237147158 ], [ -95.249267980380381, 29.934518237144584 ], [ -95.247902979796123, 29.934539236904943 ], [ -95.247741979636444, 29.934541237238864 ], [ -95.245928979420484, 29.934541236710885 ], [ -95.245308979320399, 29.934573236757544 ], [ -95.243869979176253, 29.93457823744518 ], [ -95.243818978971504, 29.934578237381093 ], [ -95.242313978197529, 29.934541237252819 ], [ -95.24074197809415, 29.934437237514551 ], [ -95.238699977022989, 29.934162236830694 ], [ -95.23588797717774, 29.933910237523452 ], [ -95.234396976647062, 29.93395523717064 ], [ -95.234090976021079, 29.933960237224639 ], [ -95.234208976514211, 29.934173237349487 ], [ -95.234214976142695, 29.934294237291429 ], [ -95.234196976012356, 29.934384237534449 ], [ -95.234183976106138, 29.934448237274069 ], [ -95.23419597602124, 29.934635237708196 ], [ -95.234328976530279, 29.935179237297536 ], [ -95.234391976617417, 29.93527823735549 ], [ -95.23475197688029, 29.935613237208937 ], [ -95.235073977032357, 29.935844237296305 ], [ -95.235193976728709, 29.935943237959961 ], [ -95.235295976669818, 29.936075237357063 ], [ -95.235320976451604, 29.936119237756472 ], [ -95.235332976563399, 29.936174237928391 ], [ -95.235452976728524, 29.93635523781883 ], [ -95.235699977074759, 29.936954237480801 ], [ -95.235895976521746, 29.937345237604188 ], [ -95.235920977165691, 29.937411238169652 ], [ -95.235920976973432, 29.937510238105933 ], [ -95.235876976642302, 29.937675238083632 ], [ -95.23592097669642, 29.937823238275097 ], [ -95.235921977110877, 29.938032237889146 ], [ -95.235902977259485, 29.93816923824431 ], [ -95.235927977199125, 29.938543238185911 ], [ -95.235965977342744, 29.938653238212698 ], [ -95.235997976543658, 29.938681238449849 ], [ -95.236034977434386, 29.938736238168239 ], [ -95.2360669773593, 29.938796238236215 ], [ -95.236060976864479, 29.938923237954267 ], [ -95.236047977194701, 29.93898323812725 ], [ -95.236003977542765, 29.939082238173206 ], [ -95.23598497699075, 29.939181237835829 ], [ -95.235997977529166, 29.939286238401085 ], [ -95.236035976677826, 29.939362238249 ], [ -95.23604897690619, 29.93953823848031 ], [ -95.235985977310179, 29.93980223808796 ], [ -95.236016977103745, 29.940132238500553 ], [ -95.236029977366897, 29.940726238300758 ], [ -95.236010977392382, 29.940963238513387 ], [ -95.236012977610017, 29.941047238237211 ], [ -95.236023976819354, 29.941413238570412 ], [ -95.235986976610235, 29.941661239169452 ], [ -95.235992976991653, 29.941831238959338 ], [ -95.236024977107206, 29.94195823894869 ], [ -95.236030977164233, 29.942172239213775 ], [ -95.2359999767435, 29.942381238462598 ], [ -95.23600597760479, 29.94248023860526 ], [ -95.236024977506091, 29.942606238577241 ], [ -95.236075976922791, 29.94276023869234 ], [ -95.236075977530703, 29.942903238962845 ], [ -95.236043976728951, 29.943178238842197 ], [ -95.235911977714096, 29.944690239840973 ], [ -95.235994977382603, 29.944921239348876 ], [ -95.23610797763628, 29.945037239555454 ], [ -95.237067977144093, 29.945921239580862 ], [ -95.237131978049874, 29.945949239196935 ], [ -95.237497978027378, 29.946191239673226 ], [ -95.237737977748452, 29.946378239915166 ], [ -95.237813977909624, 29.946499239385155 ], [ -95.23784497830772, 29.946537239438968 ], [ -95.237920977825638, 29.946570239790091 ], [ -95.23804697833846, 29.946603239476261 ], [ -95.23811097744634, 29.946647239766438 ], [ -95.238166977969755, 29.946702239394753 ], [ -95.238242977466442, 29.946856239327026 ], [ -95.238280977736352, 29.946889239781555 ], [ -95.240680978251433, 29.948829240498434 ], [ -95.240744978551731, 29.948867240481853 ], [ -95.240901978515438, 29.948911240311549 ], [ -95.241122978364373, 29.948999240522298 ], [ -95.241293979305937, 29.949026239733964 ], [ -95.241463978738253, 29.949021239899778 ], [ -95.24155297881893, 29.948960240444748 ], [ -95.241684978781009, 29.94891624011942 ], [ -95.24197597871013, 29.948855240211142 ], [ -95.242221979419071, 29.948850240286689 ], [ -95.242309978941307, 29.948833239746044 ], [ -95.242492978824274, 29.948828239646556 ], [ -95.242865979156093, 29.948778239849176 ], [ -95.243092979029242, 29.948767240150278 ], [ -95.243288979566017, 29.948772240328434 ], [ -95.243566979624788, 29.94881124009046 ], [ -95.243762979521136, 29.948871240397438 ], [ -95.24413497904105, 29.948909240391476 ], [ -95.244311979201314, 29.948959239583761 ], [ -95.244380979424221, 29.949008240090997 ], [ -95.244450979297653, 29.949036239619776 ], [ -95.244526980039012, 29.94904123971045 ], [ -95.244683979210862, 29.949014240262873 ], [ -95.244866979354171, 29.949019240033621 ], [ -95.245157979801903, 29.949090239586077 ], [ -95.245473979875399, 29.949151239523772 ], [ -95.245896980326933, 29.949206239649861 ], [ -95.246407980425928, 29.949321239759925 ], [ -95.247519980423547, 29.949507240100587 ], [ -95.247777980528198, 29.949567239762477 ], [ -95.247942980190061, 29.949661240114622 ], [ -95.248024980147221, 29.949743239771518 ], [ -95.248201980747524, 29.949881239644572 ], [ -95.248637980760307, 29.950276239884822 ], [ -95.248712980863871, 29.950331240399748 ], [ -95.248933980481141, 29.950425239936528 ], [ -95.248978981202825, 29.950474239868374 ], [ -95.24906098138014, 29.95062823993673 ], [ -95.249161981237279, 29.95078224001993 ], [ -95.249205980902147, 29.950820240272801 ], [ -95.249300981407401, 29.950875240476734 ], [ -95.24933898108749, 29.95088124046228 ], [ -95.249458980695451, 29.950958240424434 ], [ -95.249565980871424, 29.951062239825117 ], [ -95.249653980752996, 29.951177240513587 ], [ -95.249677980864178, 29.950998239986792 ], [ -95.249701981395631, 29.950688239853363 ], [ -95.249707980932413, 29.950526240493559 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 844, "Tract": "48201250201", "Area_SqMi": 1.7886644979672666, "total_2009": 274, "total_2010": 289, "total_2011": 427, "total_2012": 385, "total_2013": 392, "total_2014": 405, "total_2015": 506, "total_2016": 529, "total_2017": 645, "total_2018": 754, "total_2019": 669, "total_2020": 638, "age1": 468, "age2": 534, "age3": 186, "earn1": 278, "earn2": 542, "earn3": 368, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 32, "naics_s05": 88, "naics_s06": 0, "naics_s07": 588, "naics_s08": 31, "naics_s09": 2, "naics_s10": 14, "naics_s11": 6, "naics_s12": 56, "naics_s13": 0, "naics_s14": 16, "naics_s15": 2, "naics_s16": 129, "naics_s17": 39, "naics_s18": 150, "naics_s19": 35, "naics_s20": 0, "race1": 840, "race2": 254, "race3": 7, "race4": 61, "race5": 1, "race6": 25, "ethnicity1": 752, "ethnicity2": 436, "edu1": 174, "edu2": 206, "edu3": 220, "edu4": 120, "Shape_Length": 29703.207700693038, "Shape_Area": 49864904.873443738, "total_2021": 1094, "total_2022": 1188 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.268331985301117, 29.94201623753321 ], [ -95.268292985554609, 29.939980237042572 ], [ -95.268290985065192, 29.939848236946137 ], [ -95.268291985408666, 29.939817237364831 ], [ -95.268270984856613, 29.939085236936023 ], [ -95.268267985627105, 29.938977237350663 ], [ -95.268299985519135, 29.938587237108727 ], [ -95.268322985493839, 29.93839823690714 ], [ -95.266695984465116, 29.937810237258532 ], [ -95.26619298445037, 29.93765623711791 ], [ -95.265853985083979, 29.937538237313376 ], [ -95.264892984450015, 29.937231237044738 ], [ -95.264760984818579, 29.937191237147584 ], [ -95.263947984589237, 29.936984236865388 ], [ -95.263573983688389, 29.936882236573609 ], [ -95.2630949843564, 29.936731236756955 ], [ -95.262773983812082, 29.936630236668918 ], [ -95.262430984182203, 29.936528236916878 ], [ -95.260771982989183, 29.936024236416412 ], [ -95.260570983701783, 29.935964236530157 ], [ -95.259191982763824, 29.935529236928367 ], [ -95.257918982093742, 29.935195236774291 ], [ -95.256886982240857, 29.934977236454216 ], [ -95.256128982316085, 29.934816236344201 ], [ -95.2554979815542, 29.934736236219855 ], [ -95.254424981778286, 29.934592236267999 ], [ -95.253179980895283, 29.934480236501528 ], [ -95.252024981273919, 29.934434236688219 ], [ -95.250441980369871, 29.934443236444363 ], [ -95.249772980393544, 29.934506236447294 ], [ -95.249519980084784, 29.934506237147158 ], [ -95.249508980609534, 29.934748236495839 ], [ -95.249502980574221, 29.934899237015216 ], [ -95.249508979937872, 29.935103236857348 ], [ -95.249513980144783, 29.935209237237785 ], [ -95.249518979817339, 29.935329236755322 ], [ -95.249560980448038, 29.935865236842435 ], [ -95.249573980499648, 29.936481236900377 ], [ -95.249567980107344, 29.937404237672965 ], [ -95.249562980708546, 29.938240237482795 ], [ -95.249563980524542, 29.938552238035335 ], [ -95.249565980739348, 29.938782237631131 ], [ -95.249552981004797, 29.939509237474226 ], [ -95.249549980966336, 29.939677238065915 ], [ -95.249550980606131, 29.939778237772028 ], [ -95.249567980443899, 29.940626238432994 ], [ -95.249565980733408, 29.94104423834662 ], [ -95.249571980711409, 29.941283237846125 ], [ -95.249590980884378, 29.941911238074905 ], [ -95.249593980167504, 29.942809238916507 ], [ -95.249605980936693, 29.943262238873885 ], [ -95.249607980309293, 29.943466238296569 ], [ -95.249622980717945, 29.944626238833212 ], [ -95.249655981196796, 29.946528239387398 ], [ -95.249662981244825, 29.94692623907374 ], [ -95.249665980482177, 29.947545239401094 ], [ -95.249700981264738, 29.949389239516314 ], [ -95.249705981189848, 29.949629240292918 ], [ -95.249707980932413, 29.950526240493559 ], [ -95.249701981395631, 29.950688239853363 ], [ -95.249677980864178, 29.950998239986792 ], [ -95.249653980752996, 29.951177240513587 ], [ -95.249620981496534, 29.951432240344435 ], [ -95.249530980989832, 29.951893240144617 ], [ -95.249379980576975, 29.952424240683047 ], [ -95.249163981014803, 29.952992240454158 ], [ -95.248883980815734, 29.953583240906816 ], [ -95.248580980826489, 29.954195240721692 ], [ -95.248486980475761, 29.954401240775475 ], [ -95.248323981127186, 29.954821240785385 ], [ -95.248130980583966, 29.955477240866966 ], [ -95.248002981178345, 29.956106241220166 ], [ -95.247972981041244, 29.956327241362249 ], [ -95.247937981159282, 29.956779241075619 ], [ -95.247936980768969, 29.957208241111033 ], [ -95.247935980599266, 29.95746924157228 ], [ -95.247978980805598, 29.960218242381814 ], [ -95.247983980645728, 29.960791242542665 ], [ -95.247979981352486, 29.961240241915899 ], [ -95.247989981361187, 29.961796242283082 ], [ -95.248029980828377, 29.961973242062744 ], [ -95.248356981451565, 29.961969242446983 ], [ -95.248993981074008, 29.961964242820585 ], [ -95.249969981419511, 29.961986242595973 ], [ -95.250100981406675, 29.961989242411217 ], [ -95.250342981563847, 29.961995242759794 ], [ -95.253635982225632, 29.961697242632855 ], [ -95.253813982162796, 29.961681241790345 ], [ -95.25518398266631, 29.961079241938265 ], [ -95.255272983026543, 29.961040241703795 ], [ -95.256943983865796, 29.96030624170449 ], [ -95.257265983496623, 29.960165242158766 ], [ -95.257738983224044, 29.959949241524644 ], [ -95.258094983635701, 29.959788242012898 ], [ -95.259112984121145, 29.959326241963559 ], [ -95.2605389844732, 29.958629241766346 ], [ -95.260807984468812, 29.958498241129202 ], [ -95.260840984438232, 29.958482241140103 ], [ -95.261297984439125, 29.958258241151068 ], [ -95.26147898408054, 29.958169240859704 ], [ -95.265411985469143, 29.956400240858191 ], [ -95.266368985072177, 29.955970240795494 ], [ -95.266774985900199, 29.955780240982893 ], [ -95.26811798595952, 29.954573240333378 ], [ -95.268178985469234, 29.95451724026093 ], [ -95.267923986192343, 29.95430324054799 ], [ -95.267678985952855, 29.954096240217908 ], [ -95.267546986258225, 29.953964239928318 ], [ -95.267375985598008, 29.953854240125452 ], [ -95.267192985997227, 29.953750240280868 ], [ -95.267053985849145, 29.953684239731089 ], [ -95.266794985921734, 29.953629239769128 ], [ -95.266548985037701, 29.95360724015654 ], [ -95.266326985739582, 29.95360024056475 ], [ -95.266340985663135, 29.9528532396156 ], [ -95.266319985749789, 29.952101240251054 ], [ -95.266301985095311, 29.951204239438038 ], [ -95.266283985361198, 29.950308239392594 ], [ -95.266254985624911, 29.949105239005529 ], [ -95.26626698525088, 29.948651239329575 ], [ -95.266285985058445, 29.948473239281132 ], [ -95.266313985084338, 29.948265239387855 ], [ -95.266374985465688, 29.947900238729176 ], [ -95.266418985356211, 29.947721238758678 ], [ -95.266477985191813, 29.947547238629483 ], [ -95.266546984961835, 29.947325238904263 ], [ -95.266660984936038, 29.947019238993068 ], [ -95.266796985242095, 29.946687239156706 ], [ -95.267700985214162, 29.944556238100095 ], [ -95.26782298557616, 29.944268237928842 ], [ -95.267974985454714, 29.943908238523704 ], [ -95.268112985365434, 29.943517237598385 ], [ -95.26819898500375, 29.943206237985088 ], [ -95.268291985558122, 29.942803238133735 ], [ -95.268331985301117, 29.94201623753321 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 845, "Tract": "48201532004", "Area_SqMi": 0.61801516966509795, "total_2009": 174, "total_2010": 161, "total_2011": 294, "total_2012": 292, "total_2013": 282, "total_2014": 223, "total_2015": 173, "total_2016": 128, "total_2017": 128, "total_2018": 178, "total_2019": 129, "total_2020": 197, "age1": 45, "age2": 113, "age3": 40, "earn1": 23, "earn2": 56, "earn3": 119, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 14, "naics_s06": 30, "naics_s07": 29, "naics_s08": 2, "naics_s09": 0, "naics_s10": 2, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 8, "naics_s15": 75, "naics_s16": 3, "naics_s17": 2, "naics_s18": 0, "naics_s19": 18, "naics_s20": 0, "race1": 119, "race2": 50, "race3": 0, "race4": 24, "race5": 0, "race6": 5, "ethnicity1": 128, "ethnicity2": 70, "edu1": 40, "edu2": 49, "edu3": 37, "edu4": 27, "Shape_Length": 21380.482804250903, "Shape_Area": 17229205.186728805, "total_2021": 203, "total_2022": 198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.473350033748687, 29.857949213135129 ], [ -95.473329033768692, 29.856962213457123 ], [ -95.473330034486153, 29.856887213399826 ], [ -95.473331034655303, 29.856670212819559 ], [ -95.473333034393505, 29.856199213349605 ], [ -95.473334033648058, 29.856039212934711 ], [ -95.473327034067282, 29.85585921322847 ], [ -95.473322034059692, 29.855476213439271 ], [ -95.473319034074336, 29.855135212599965 ], [ -95.473309034001716, 29.854921212701399 ], [ -95.473315034042372, 29.854452212751777 ], [ -95.473303033826411, 29.853884212454769 ], [ -95.473306033683244, 29.853065212195521 ], [ -95.473315034101191, 29.852728212029838 ], [ -95.473349033902338, 29.851463211865052 ], [ -95.473324033386788, 29.851056212162419 ], [ -95.472581033629439, 29.849821211783663 ], [ -95.472518033303999, 29.849707212211932 ], [ -95.472065033200238, 29.848891211750004 ], [ -95.471272033575715, 29.847534211522326 ], [ -95.470138033241753, 29.845449210837106 ], [ -95.468714031821008, 29.842981210814976 ], [ -95.468701032748669, 29.8429662108644 ], [ -95.468304032622598, 29.842303210117535 ], [ -95.467092031959055, 29.842301210792314 ], [ -95.465069030921839, 29.842302210358021 ], [ -95.463042031041269, 29.842315210618221 ], [ -95.461032030461965, 29.842335210785748 ], [ -95.459000029383148, 29.842343210652146 ], [ -95.45873702964542, 29.842342210825358 ], [ -95.458657029388519, 29.842342210456241 ], [ -95.458743029396231, 29.842759210807248 ], [ -95.459833030200826, 29.844394211155137 ], [ -95.460021030332143, 29.844826210888961 ], [ -95.460182029830136, 29.845472211651821 ], [ -95.460298030538908, 29.845936211065837 ], [ -95.46066803084787, 29.846411211985515 ], [ -95.460848030262696, 29.84664221158771 ], [ -95.461056030635575, 29.847068212080508 ], [ -95.461117030687447, 29.847491211606414 ], [ -95.461036030494697, 29.847943212120207 ], [ -95.460971030328821, 29.848301212405946 ], [ -95.461037030628063, 29.84868721170055 ], [ -95.461209030208423, 29.849165212072567 ], [ -95.461395031230978, 29.849399212197515 ], [ -95.461713030467436, 29.849678212303786 ], [ -95.46175903068054, 29.849714211976167 ], [ -95.461989030588398, 29.849895211961393 ], [ -95.463417031646244, 29.851016212235198 ], [ -95.463503031499343, 29.85108321222808 ], [ -95.463670031724064, 29.851328212610632 ], [ -95.463710031609793, 29.851388212877957 ], [ -95.463736031598032, 29.851671212678912 ], [ -95.463655031675955, 29.851909212724838 ], [ -95.463238030900598, 29.852297213079009 ], [ -95.463016031196375, 29.852634212690958 ], [ -95.46298903103046, 29.852989213216446 ], [ -95.463036031540284, 29.853199213286079 ], [ -95.463137031451055, 29.853354212745508 ], [ -95.463384031390021, 29.853540212765569 ], [ -95.464363031932464, 29.8539792130987 ], [ -95.464551032197221, 29.854258213015974 ], [ -95.464568031481036, 29.854376212798115 ], [ -95.464598032178117, 29.854576213413722 ], [ -95.464560031995475, 29.85485921359718 ], [ -95.463269031180445, 29.856111213918055 ], [ -95.462903031601002, 29.856465213279051 ], [ -95.462004031282078, 29.85733421351452 ], [ -95.461891031303978, 29.85767321430362 ], [ -95.461923031629667, 29.857850213485868 ], [ -95.462060030968189, 29.858110214210143 ], [ -95.462365031256851, 29.858343213940653 ], [ -95.463048031371613, 29.858586213609417 ], [ -95.463075031182939, 29.858519213865563 ], [ -95.463288031502472, 29.857995213680717 ], [ -95.463000031381767, 29.857820213495895 ], [ -95.462889031374118, 29.857725213873028 ], [ -95.46285303179701, 29.857634213886953 ], [ -95.462879031371571, 29.857557213853443 ], [ -95.463405031240768, 29.857044213813531 ], [ -95.463711031984701, 29.857241213441291 ], [ -95.463893031378191, 29.857292214039699 ], [ -95.464557032317629, 29.85728621361541 ], [ -95.465221032016885, 29.857278213283195 ], [ -95.466573032777376, 29.857260213849358 ], [ -95.467500033162608, 29.85724921329642 ], [ -95.468117032354414, 29.857247213332688 ], [ -95.46867603269591, 29.857236213499046 ], [ -95.468694032874623, 29.85681921334022 ], [ -95.468662033253096, 29.856066213356829 ], [ -95.469566032693507, 29.856060212936359 ], [ -95.470955033550581, 29.856034213184721 ], [ -95.470962033866869, 29.856210213638018 ], [ -95.470997033047809, 29.856976213373656 ], [ -95.471022033132456, 29.857512213131269 ], [ -95.471041033312105, 29.857933213224037 ], [ -95.471250034151169, 29.857934213237222 ], [ -95.471887034073831, 29.857938213534695 ], [ -95.472500033826634, 29.857956213741566 ], [ -95.473145033816294, 29.857937213099895 ], [ -95.473350033748687, 29.857949213135129 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 846, "Tract": "48201532003", "Area_SqMi": 0.39491021803000437, "total_2009": 587, "total_2010": 573, "total_2011": 616, "total_2012": 638, "total_2013": 662, "total_2014": 662, "total_2015": 608, "total_2016": 711, "total_2017": 699, "total_2018": 659, "total_2019": 686, "total_2020": 683, "age1": 131, "age2": 361, "age3": 177, "earn1": 148, "earn2": 129, "earn3": 392, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 29, "naics_s05": 382, "naics_s06": 0, "naics_s07": 44, "naics_s08": 2, "naics_s09": 0, "naics_s10": 8, "naics_s11": 14, "naics_s12": 3, "naics_s13": 0, "naics_s14": 2, "naics_s15": 1, "naics_s16": 20, "naics_s17": 1, "naics_s18": 134, "naics_s19": 29, "naics_s20": 0, "race1": 453, "race2": 130, "race3": 9, "race4": 61, "race5": 1, "race6": 15, "ethnicity1": 446, "ethnicity2": 223, "edu1": 124, "edu2": 147, "edu3": 169, "edu4": 98, "Shape_Length": 20886.262239804644, "Shape_Area": 11009420.983083364, "total_2021": 627, "total_2022": 669 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.480957036090373, 29.86575621440867 ], [ -95.481623037066967, 29.865768214776161 ], [ -95.476616034694629, 29.856884212789986 ], [ -95.475922034748635, 29.855651212973882 ], [ -95.475377034752697, 29.85470721295858 ], [ -95.473689034435836, 29.851785211897241 ], [ -95.473324033386788, 29.851056212162419 ], [ -95.473349033902338, 29.851463211865052 ], [ -95.473315034101191, 29.852728212029838 ], [ -95.473306033683244, 29.853065212195521 ], [ -95.473303033826411, 29.853884212454769 ], [ -95.473315034042372, 29.854452212751777 ], [ -95.473309034001716, 29.854921212701399 ], [ -95.473319034074336, 29.855135212599965 ], [ -95.473322034059692, 29.855476213439271 ], [ -95.473327034067282, 29.85585921322847 ], [ -95.473334033648058, 29.856039212934711 ], [ -95.473333034393505, 29.856199213349605 ], [ -95.473331034655303, 29.856670212819559 ], [ -95.473330034486153, 29.856887213399826 ], [ -95.473329033768692, 29.856962213457123 ], [ -95.473350033748687, 29.857949213135129 ], [ -95.473145033816294, 29.857937213099895 ], [ -95.472500033826634, 29.857956213741566 ], [ -95.471887034073831, 29.857938213534695 ], [ -95.471250034151169, 29.857934213237222 ], [ -95.471041033312105, 29.857933213224037 ], [ -95.471022033132456, 29.857512213131269 ], [ -95.470997033047809, 29.856976213373656 ], [ -95.470962033866869, 29.856210213638018 ], [ -95.470955033550581, 29.856034213184721 ], [ -95.469566032693507, 29.856060212936359 ], [ -95.468662033253096, 29.856066213356829 ], [ -95.468694032874623, 29.85681921334022 ], [ -95.46867603269591, 29.857236213499046 ], [ -95.468117032354414, 29.857247213332688 ], [ -95.467500033162608, 29.85724921329642 ], [ -95.466573032777376, 29.857260213849358 ], [ -95.465221032016885, 29.857278213283195 ], [ -95.464557032317629, 29.85728621361541 ], [ -95.463893031378191, 29.857292214039699 ], [ -95.463711031984701, 29.857241213441291 ], [ -95.463405031240768, 29.857044213813531 ], [ -95.462879031371571, 29.857557213853443 ], [ -95.46285303179701, 29.857634213886953 ], [ -95.462889031374118, 29.857725213873028 ], [ -95.463000031381767, 29.857820213495895 ], [ -95.463288031502472, 29.857995213680717 ], [ -95.463075031182939, 29.858519213865563 ], [ -95.463048031371613, 29.858586213609417 ], [ -95.464002032317481, 29.858927214402875 ], [ -95.464090032272566, 29.858967214036056 ], [ -95.464480031944916, 29.859144214303363 ], [ -95.464616032183926, 29.859206213725962 ], [ -95.465194031865295, 29.85960821425553 ], [ -95.465895032779599, 29.86025421438605 ], [ -95.466524032544427, 29.861347214863073 ], [ -95.466716032226174, 29.861619214163238 ], [ -95.466933032405521, 29.861824214226527 ], [ -95.466852032210866, 29.861901214873768 ], [ -95.466858032834139, 29.861929214134381 ], [ -95.466839032227682, 29.862198214141571 ], [ -95.4668590332316, 29.862935214430774 ], [ -95.466833033222485, 29.863012215052049 ], [ -95.466827032735011, 29.863144214435575 ], [ -95.466835032609126, 29.863327214829368 ], [ -95.466883032345393, 29.863325215272503 ], [ -95.467430032581532, 29.863317214486099 ], [ -95.46964703314849, 29.863311214706314 ], [ -95.470184033262171, 29.863314214976445 ], [ -95.470321033641568, 29.863315215121577 ], [ -95.470463033767388, 29.863316214902859 ], [ -95.470549033316743, 29.863317215014249 ], [ -95.470778034169271, 29.863315214294932 ], [ -95.473419034556883, 29.863306214669795 ], [ -95.474716035228113, 29.863293214651861 ], [ -95.4751390346931, 29.863292214218191 ], [ -95.475636035444012, 29.863292214476044 ], [ -95.477602035153851, 29.863284214260148 ], [ -95.477899035284565, 29.863297214813329 ], [ -95.478150035335844, 29.863332214049727 ], [ -95.478395036113781, 29.863411214761904 ], [ -95.478625035911449, 29.86353121414988 ], [ -95.47880003547256, 29.863674214817269 ], [ -95.479185035455373, 29.864059214735519 ], [ -95.479513036015575, 29.864649214513385 ], [ -95.47981603629178, 29.865132215019834 ], [ -95.480034036623408, 29.865360214883296 ], [ -95.480383036678077, 29.865663215233759 ], [ -95.480957036090373, 29.86575621440867 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 847, "Tract": "48167990100", "Area_SqMi": 182.89491607717125, "total_2009": null, "total_2010": null, "total_2011": null, "total_2012": null, "total_2013": null, "total_2014": null, "total_2015": null, "total_2016": null, "total_2017": null, "total_2018": null, "total_2019": null, "total_2020": 694, "age1": 92, "age2": 445, "age3": 186, "earn1": 23, "earn2": 98, "earn3": 602, "naics_s01": 0, "naics_s02": 0, "naics_s03": 34, "naics_s04": 56, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 20, "naics_s09": 22, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 31, "naics_s15": 14, "naics_s16": 0, "naics_s17": 140, "naics_s18": 0, "naics_s19": 18, "naics_s20": 388, "race1": 527, "race2": 178, "race3": 2, "race4": 5, "race5": 0, "race6": 11, "ethnicity1": 541, "ethnicity2": 182, "edu1": 103, "edu2": 180, "edu3": 261, "edu4": 87, "Shape_Length": 691133.95079704211, "Shape_Area": 5098797232.4542227, "total_2021": 705, "total_2022": 723 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.955409881823812, 29.424420142090195 ], [ -94.95560888175028, 29.423340141078086 ], [ -94.954508882302079, 29.421167141055296 ], [ -94.953440881092732, 29.420322141160018 ], [ -94.952569881748289, 29.420081141014482 ], [ -94.95082688141845, 29.421529141421981 ], [ -94.948890880091696, 29.421167140935705 ], [ -94.947922879887145, 29.421409141064348 ], [ -94.945770879673447, 29.420684141549017 ], [ -94.944070878914317, 29.420684140886859 ], [ -94.943569879000805, 29.419960141238207 ], [ -94.944870879421515, 29.419960140971682 ], [ -94.94532887971657, 29.419450141215631 ], [ -94.946170880012517, 29.418512140491242 ], [ -94.946857880103579, 29.414891139807569 ], [ -94.946470879763979, 29.414167140004974 ], [ -94.946210878980921, 29.414215139796735 ], [ -94.944709878585073, 29.414490139664437 ], [ -94.944688879373601, 29.414526140246924 ], [ -94.944468878678251, 29.414552140318914 ], [ -94.943784878965488, 29.414526140080937 ], [ -94.941915878495479, 29.414607139706728 ], [ -94.941136877856962, 29.414688140205403 ], [ -94.94060687766202, 29.41499414005791 ], [ -94.940388877957844, 29.415120140307746 ], [ -94.939578877961551, 29.415525140104677 ], [ -94.939079877749236, 29.41579514046833 ], [ -94.937771877023494, 29.415903140970954 ], [ -94.937709877674763, 29.416064140967208 ], [ -94.937584877050682, 29.416145140531402 ], [ -94.937553877804433, 29.41679314031391 ], [ -94.937895877907124, 29.417144140480939 ], [ -94.938332877793741, 29.417495141275317 ], [ -94.938550877599326, 29.41760314126407 ], [ -94.938612877554803, 29.41800714138083 ], [ -94.938550877393169, 29.41868214116257 ], [ -94.938425877339839, 29.419087141525736 ], [ -94.938269877784066, 29.419249141204329 ], [ -94.938269877240955, 29.41960014165095 ], [ -94.938236877388889, 29.419760141514391 ], [ -94.938257877647473, 29.419828141672806 ], [ -94.938274877494564, 29.420056141723371 ], [ -94.938240877742487, 29.420217141311433 ], [ -94.938202877717458, 29.420289141222067 ], [ -94.938151878029302, 29.420534141807366 ], [ -94.938075877952812, 29.420636141166316 ], [ -94.937986877453071, 29.420716141705327 ], [ -94.937872877712408, 29.420822141143692 ], [ -94.937923877114045, 29.420902141800113 ], [ -94.938003877719439, 29.420932141150431 ], [ -94.938202878037302, 29.420826141481307 ], [ -94.93945987784285, 29.420771141227025 ], [ -94.939446877539339, 29.420598141643566 ], [ -94.939611877998459, 29.420555141253441 ], [ -94.939633878388889, 29.420649141020633 ], [ -94.939616877695912, 29.420831141552107 ], [ -94.939400878298684, 29.420902141251542 ], [ -94.939104877660384, 29.420924141568477 ], [ -94.938465877218789, 29.420911141428157 ], [ -94.93791487777051, 29.42107214120723 ], [ -94.937830877585355, 29.421211141276583 ], [ -94.937748877931512, 29.421237141441349 ], [ -94.937453877331322, 29.421381141281657 ], [ -94.937284877480593, 29.42149914141617 ], [ -94.937189877668146, 29.421482141300405 ], [ -94.937013877311429, 29.421533141856717 ], [ -94.936882877411918, 29.421512141673368 ], [ -94.936789877795405, 29.421508141728445 ], [ -94.936585877380594, 29.421393141943479 ], [ -94.9361838775949, 29.421398141778475 ], [ -94.936116876877719, 29.421436142127721 ], [ -94.935955876598527, 29.421402141579815 ], [ -94.935722877315385, 29.421512141959614 ], [ -94.935580877173493, 29.421562141398621 ], [ -94.93490987675267, 29.421650142237134 ], [ -94.934655876752146, 29.421759142141838 ], [ -94.934250877116071, 29.421893142066409 ], [ -94.93378387681048, 29.421974141721567 ], [ -94.933565876135802, 29.42224414179827 ], [ -94.932879876441291, 29.42219014189007 ], [ -94.931851876204121, 29.422190142226228 ], [ -94.931384875596905, 29.422298142269415 ], [ -94.931069875974401, 29.422452141900092 ], [ -94.930885876220827, 29.422541141715552 ], [ -94.930511875779686, 29.422568142407137 ], [ -94.929670875983547, 29.422568142401303 ], [ -94.928767875743844, 29.422649141815697 ], [ -94.928673875604503, 29.42275714199786 ], [ -94.928362875656845, 29.42251414216673 ], [ -94.928175874876842, 29.422730142606511 ], [ -94.927957874734162, 29.422730142574732 ], [ -94.927707874961456, 29.422487142380191 ], [ -94.92742787543061, 29.422622142399216 ], [ -94.927333874457517, 29.422325141761764 ], [ -94.927084874715447, 29.422190142507262 ], [ -94.926430874659829, 29.422082142522044 ], [ -94.92642487452656, 29.422069141730582 ], [ -94.925959874701817, 29.422379142334862 ], [ -94.924486874093589, 29.422316142362249 ], [ -94.92396887379995, 29.422190142273816 ], [ -94.923096873905862, 29.421974142593154 ], [ -94.923011873544141, 29.421970142541099 ], [ -94.922234873200622, 29.421927142730965 ], [ -94.921632873820172, 29.421893142718975 ], [ -94.921587873297995, 29.421764142250669 ], [ -94.92097687328102, 29.421555141981798 ], [ -94.920714873102455, 29.421466142624848 ], [ -94.920525872829671, 29.42140214197029 ], [ -94.920510873272264, 29.421408141810076 ], [ -94.92042787333888, 29.421359142636536 ], [ -94.920157873434661, 29.421200142585572 ], [ -94.919729873210073, 29.420908142586654 ], [ -94.919233872447478, 29.420571142342158 ], [ -94.918649872903771, 29.420450141833413 ], [ -94.918049872381175, 29.420328142177677 ], [ -94.917083872623664, 29.420328142300239 ], [ -94.916553872155731, 29.420112142347072 ], [ -94.916025871626644, 29.419949141928306 ], [ -94.915745872187387, 29.420414141875717 ], [ -94.91380987128592, 29.420838142320765 ], [ -94.912799871215483, 29.420639142354169 ], [ -94.910913870796037, 29.421441142395874 ], [ -94.908498869636503, 29.421140142394005 ], [ -94.907712869733189, 29.421534142622342 ], [ -94.906797869147681, 29.421543142517102 ], [ -94.905304869087288, 29.423540143569198 ], [ -94.90279686891769, 29.424045143548003 ], [ -94.902003868211196, 29.42473214392243 ], [ -94.902489868486668, 29.426141143537112 ], [ -94.902090868233984, 29.426382144235351 ], [ -94.901876868394297, 29.427763143908539 ], [ -94.900726868537447, 29.428741144493475 ], [ -94.900013867747447, 29.429523145028636 ], [ -94.900379867832598, 29.430622144634004 ], [ -94.902284868906619, 29.431814145353783 ], [ -94.905722869535595, 29.432742144901642 ], [ -94.905889869555381, 29.432896145199447 ], [ -94.906043869860838, 29.432957144749746 ], [ -94.906267870451757, 29.433029145123079 ], [ -94.90647287016013, 29.433008144876439 ], [ -94.906605869638682, 29.432957144889649 ], [ -94.906891870329602, 29.432967145210448 ], [ -94.907177870535037, 29.433141145348987 ], [ -94.907320870416996, 29.433212144818018 ], [ -94.907534870224495, 29.433090144903158 ], [ -94.907677870801152, 29.433049145172561 ], [ -94.907892870432875, 29.43317214535432 ], [ -94.90809687063819, 29.433294145450525 ], [ -94.908291870816626, 29.433366144884712 ], [ -94.908566870817708, 29.43317214547568 ], [ -94.908791870471177, 29.433049145278638 ], [ -94.908924870211592, 29.432937145439155 ], [ -94.90921087022673, 29.43299814468245 ], [ -94.909731870643427, 29.432906144566676 ], [ -94.910416871400301, 29.432834144886019 ], [ -94.91054887053977, 29.432808144675569 ], [ -94.9106828707869, 29.432576145082443 ], [ -94.910789870901411, 29.432339144723038 ], [ -94.91090787096303, 29.432342144867899 ], [ -94.911143871340485, 29.4323451446764 ], [ -94.91172287095111, 29.432318144845507 ], [ -94.912010871362298, 29.432289144439444 ], [ -94.912295871337108, 29.432238144793494 ], [ -94.912694871356848, 29.432114145078081 ], [ -94.912772871125568, 29.432090144717002 ], [ -94.913046871931215, 29.431997144793641 ], [ -94.913240871917736, 29.43192814424971 ], [ -94.913516872030144, 29.431847144773723 ], [ -94.913605871921902, 29.431823144683669 ], [ -94.913979872325669, 29.431730144850086 ], [ -94.914326871719169, 29.431681144455801 ], [ -94.9146718721979, 29.431684144905116 ], [ -94.914900872613515, 29.43172614471337 ], [ -94.915131871800426, 29.431764144240177 ], [ -94.915638872631163, 29.431782144309011 ], [ -94.915988872757694, 29.431796144712123 ], [ -94.915919872180851, 29.431851144329656 ], [ -94.915650871807102, 29.432067144812798 ], [ -94.9155258725458, 29.432148144538854 ], [ -94.915424872425845, 29.432227144359381 ], [ -94.915081872529399, 29.43249814457916 ], [ -94.914839872245906, 29.432945144800112 ], [ -94.914597871925636, 29.43380214522853 ], [ -94.914448872095051, 29.434565145220297 ], [ -94.91437387239381, 29.434789144777334 ], [ -94.914373872265969, 29.435143145129086 ], [ -94.914634872114902, 29.43555314529144 ], [ -94.914839872176117, 29.435795144969028 ], [ -94.914932871978507, 29.435981145475875 ], [ -94.915044872238255, 29.436465145679193 ], [ -94.915062871914856, 29.436857145722382 ], [ -94.915156872536315, 29.437043145910955 ], [ -94.915510872626626, 29.437099145319038 ], [ -94.915826872143327, 29.437062145626662 ], [ -94.915994872262189, 29.436708145928254 ], [ -94.916124872453139, 29.436261145262975 ], [ -94.916422872729058, 29.435981145337148 ], [ -94.916907872869629, 29.436018145713263 ], [ -94.917372872610954, 29.435962145242421 ], [ -94.917801872976014, 29.436130145643467 ], [ -94.918136873443416, 29.436391145142181 ], [ -94.918397873212854, 29.436614145562501 ], [ -94.918639873796835, 29.43695014589191 ], [ -94.918844873509215, 29.437192145297367 ], [ -94.91875187315496, 29.437546145195512 ], [ -94.918788872894254, 29.438384146068916 ], [ -94.918472873666317, 29.439204146417879 ], [ -94.918527873703511, 29.439521146159638 ], [ -94.918676873734285, 29.439874145758342 ], [ -94.918956873165499, 29.440135146500687 ], [ -94.919124873122385, 29.440322146083304 ], [ -94.918993873369033, 29.440545146324954 ], [ -94.919049874067497, 29.441011146199543 ], [ -94.919124873750036, 29.441328146288743 ], [ -94.918992873896983, 29.441535146395537 ], [ -94.918957873092182, 29.441729146213881 ], [ -94.919000873181631, 29.44181114675251 ], [ -94.918961873201141, 29.441882146771814 ], [ -94.918898874047542, 29.442076146935854 ], [ -94.91889087399899, 29.442133146644142 ], [ -94.918751873846205, 29.442538146542692 ], [ -94.918583874070023, 29.443153146385406 ], [ -94.918602873712999, 29.44358214719432 ], [ -94.91839787367438, 29.443880146709198 ], [ -94.917802873812192, 29.444677147013742 ], [ -94.917927873117833, 29.444738147522898 ], [ -94.917924873527539, 29.444778146796192 ], [ -94.917737873637847, 29.445156147005676 ], [ -94.917804873146423, 29.44533114700355 ], [ -94.917862873269399, 29.445479147614005 ], [ -94.917675873660187, 29.445533147345191 ], [ -94.917145873020729, 29.445776147190156 ], [ -94.917082872797579, 29.445776147102915 ], [ -94.917002873414958, 29.445846147858013 ], [ -94.916988873601198, 29.445858147583007 ], [ -94.91676987353587, 29.446053147855231 ], [ -94.916690873543942, 29.44611114763655 ], [ -94.912947871794202, 29.444143146898359 ], [ -94.905067869606796, 29.44020014645508 ], [ -94.894480867181713, 29.434892146104065 ], [ -94.894183867210117, 29.435090145830607 ], [ -94.893871866990196, 29.435036146302934 ], [ -94.893840867151454, 29.434766145742827 ], [ -94.893591867021499, 29.434658146127312 ], [ -94.89349786719437, 29.434496145410023 ], [ -94.892781866916849, 29.433929145650954 ], [ -94.892251866717231, 29.433929145472817 ], [ -94.892189866665802, 29.4337941456224 ], [ -94.892033865922414, 29.43368614600762 ], [ -94.891877866187059, 29.433174145896935 ], [ -94.891593865869496, 29.432188145243821 ], [ -94.891580866092184, 29.432144145450735 ], [ -94.890854865689121, 29.431256145312133 ], [ -94.890919865814482, 29.427934144733239 ], [ -94.89039386601344, 29.42614214395541 ], [ -94.890382865207016, 29.426130144085274 ], [ -94.890288865705145, 29.425887144161887 ], [ -94.890274865133094, 29.425719143689573 ], [ -94.890205865426665, 29.425480144403025 ], [ -94.890070865288166, 29.425402143751956 ], [ -94.889914865695062, 29.425051143947268 ], [ -94.88947886556592, 29.423351143656618 ], [ -94.889229865295633, 29.422973143747868 ], [ -94.889456865268201, 29.422934143738065 ], [ -94.889395865324346, 29.422703143811404 ], [ -94.889354865127828, 29.422730143854512 ], [ -94.889322865599084, 29.422620143963901 ], [ -94.889229864771238, 29.422298143747252 ], [ -94.888886864604473, 29.421947143738659 ], [ -94.88863786533534, 29.421624143780331 ], [ -94.888393865294432, 29.420789142944692 ], [ -94.888197864985074, 29.42012214296426 ], [ -94.888076864357657, 29.419708142927835 ], [ -94.888045864243523, 29.419330143177259 ], [ -94.88795286418447, 29.418169142764476 ], [ -94.887858864845612, 29.41736014275039 ], [ -94.887858864446898, 29.416820142000823 ], [ -94.888014864500946, 29.416766142082306 ], [ -94.888512864195775, 29.416523142195889 ], [ -94.888699864206117, 29.416496142671541 ], [ -94.888824864583484, 29.41633414241425 ], [ -94.888637865101344, 29.416280142017968 ], [ -94.888575864422563, 29.416091142209581 ], [ -94.888668864849208, 29.415822141991814 ], [ -94.888793864644555, 29.415417142323776 ], [ -94.888829864164393, 29.413310142032966 ], [ -94.889042865138236, 29.412799141857874 ], [ -94.888762864776425, 29.412313140975321 ], [ -94.888458864126036, 29.410499141293524 ], [ -94.888366864307216, 29.409582141274676 ], [ -94.888045863715234, 29.406242140471171 ], [ -94.887920864178767, 29.404892139445881 ], [ -94.887858864027962, 29.404164139854103 ], [ -94.887702864256156, 29.402356139642311 ], [ -94.887671864302689, 29.401708139179917 ], [ -94.887609863747286, 29.401168139373187 ], [ -94.887515864212915, 29.4001161387195 ], [ -94.887503863947572, 29.399929139135658 ], [ -94.887453863947385, 29.399063139021823 ], [ -94.887391863229979, 29.398443138772343 ], [ -94.887331863372012, 29.397648138437042 ], [ -94.887280863782934, 29.397015137945829 ], [ -94.887247863488369, 29.396624138377906 ], [ -94.88717386392446, 29.395717137670157 ], [ -94.887048862964264, 29.394341137358314 ], [ -94.887000863044136, 29.393022137708744 ], [ -94.886986863413682, 29.39261313770815 ], [ -94.886923863694221, 29.39223613771664 ], [ -94.886861863378101, 29.391264137405745 ], [ -94.886768862688783, 29.390913137130461 ], [ -94.885492863011464, 29.390621137446232 ], [ -94.884573862928022, 29.389888136929901 ], [ -94.883490862006056, 29.389527136895243 ], [ -94.882952862030862, 29.389230137222054 ], [ -94.882912862501769, 29.389207137241264 ], [ -94.882840861958542, 29.389114136966846 ], [ -94.882179862116729, 29.389032137219338 ], [ -94.880786861364939, 29.388674136358581 ], [ -94.880474861756639, 29.388593136433972 ], [ -94.880194860932377, 29.38851213652368 ], [ -94.879944860911067, 29.388458136791535 ], [ -94.879633861490845, 29.388404137073614 ], [ -94.879352860667368, 29.3883501363302 ], [ -94.878760860760394, 29.388323136653838 ], [ -94.878636860630678, 29.388215136279356 ], [ -94.878480860813312, 29.388161136884086 ], [ -94.877888861163683, 29.387729136746792 ], [ -94.877421860982437, 29.387405136582469 ], [ -94.877234860914285, 29.387351136178879 ], [ -94.877109860039909, 29.387297136400495 ], [ -94.876704860734691, 29.387189136617508 ], [ -94.876019860606618, 29.387189136688487 ], [ -94.875987860406198, 29.387054136223465 ], [ -94.875800860614547, 29.386973136209132 ], [ -94.875676859779361, 29.386973136701169 ], [ -94.87555186015139, 29.386919136362806 ], [ -94.875075860136548, 29.38691913639078 ], [ -94.875051860129446, 29.38684613637006 ], [ -94.874694859926208, 29.38671813620493 ], [ -94.874604859643441, 29.38679513668518 ], [ -94.874324860006809, 29.386642136661113 ], [ -94.87409485918181, 29.386463136757889 ], [ -94.872666858962376, 29.385978136183493 ], [ -94.871212859081822, 29.385557136297823 ], [ -94.870395858955334, 29.38513713607869 ], [ -94.869872858798928, 29.385162136266782 ], [ -94.86950085831684, 29.3851681365669 ], [ -94.868697857706948, 29.384625136433968 ], [ -94.868301857874116, 29.384415136250865 ], [ -94.868128857865003, 29.384477136192135 ], [ -94.86774585745502, 29.384452135854968 ], [ -94.867597858078398, 29.384477136581932 ], [ -94.867140858082848, 29.384563136676718 ], [ -94.866781857692587, 29.38440213595317 ], [ -94.866188857201365, 29.384168135928729 ], [ -94.864520857567101, 29.383167136312327 ], [ -94.864335856681492, 29.383130136134696 ], [ -94.864162857268695, 29.383154136319369 ], [ -94.863680857102565, 29.382994136123507 ], [ -94.86296385633905, 29.382858136099376 ], [ -94.862679856553441, 29.382673136074672 ], [ -94.862061856681464, 29.382549136366968 ], [ -94.861666856002188, 29.382339135906079 ], [ -94.861320855900061, 29.382289135756501 ], [ -94.861026855790229, 29.382258136509293 ], [ -94.860756856061158, 29.382180136059166 ], [ -94.860588855697145, 29.382013135748025 ], [ -94.86034385597813, 29.381884136279844 ], [ -94.860150856189534, 29.381936135630927 ], [ -94.859686855404561, 29.381665136092916 ], [ -94.859209855955598, 29.381613136190843 ], [ -94.858629855805404, 29.381291135994839 ], [ -94.858230855071227, 29.381149136223428 ], [ -94.857805854860473, 29.38107213614667 ], [ -94.857057855479951, 29.38077613562406 ], [ -94.853049853558687, 29.379487136010095 ], [ -94.852843853484913, 29.379551135419625 ], [ -94.85250885335833, 29.379500135571181 ], [ -94.852480853363119, 29.379513135481108 ], [ -94.852209853470413, 29.379280135569768 ], [ -94.851563853414575, 29.379009136120704 ], [ -94.851163853413595, 29.378983135626921 ], [ -94.850995853083006, 29.378841135793486 ], [ -94.850983853266172, 29.378798135281901 ], [ -94.850594852832543, 29.378815135882984 ], [ -94.850413853631068, 29.37884113566539 ], [ -94.85020685293587, 29.378776135758407 ], [ -94.849405853084775, 29.378376135527915 ], [ -94.84882485280005, 29.378376135988368 ], [ -94.846937852810569, 29.377704135324098 ], [ -94.846870852038478, 29.3776931354972 ], [ -94.846782852360704, 29.377575135879145 ], [ -94.845671851700132, 29.377174135129014 ], [ -94.845542852052404, 29.377187135501948 ], [ -94.843930851358792, 29.376706135722735 ], [ -94.843635850999434, 29.376650135163111 ], [ -94.843131851657517, 29.376425135578778 ], [ -94.842682851505387, 29.376439135459183 ], [ -94.842542851464088, 29.376580135405295 ], [ -94.842486851219334, 29.376355135262077 ], [ -94.842304850903091, 29.376271135695209 ], [ -94.841841850613562, 29.376075135662862 ], [ -94.841295850943368, 29.375949135702861 ], [ -94.841056850268444, 29.376005135632926 ], [ -94.840496850100081, 29.375879135798897 ], [ -94.837720849808704, 29.374869135235709 ], [ -94.837288849340496, 29.374716135515719 ], [ -94.836823849983858, 29.374533135198625 ], [ -94.836695849904373, 29.374562135518246 ], [ -94.836661849327413, 29.374812135340576 ], [ -94.836589849805321, 29.374902135790798 ], [ -94.836571849777684, 29.374839135571026 ], [ -94.83658984915543, 29.374614134871415 ], [ -94.836463849028917, 29.37445213514189 ], [ -94.836373849365287, 29.374596135041472 ], [ -94.836301849183982, 29.374830134881446 ], [ -94.836166849013054, 29.374893135512895 ], [ -94.836184849375584, 29.374650135039591 ], [ -94.835585848822291, 29.374273135252164 ], [ -94.83539884879751, 29.374224135364624 ], [ -94.834890848896038, 29.37394913525311 ], [ -94.830871847855562, 29.37261013496909 ], [ -94.829477847219849, 29.372446135371526 ], [ -94.8288768476488, 29.372610135110079 ], [ -94.828521847429172, 29.372118135256567 ], [ -94.826142846317623, 29.371161134744316 ], [ -94.825612846462079, 29.370905135229727 ], [ -94.82428184651161, 29.370259134444982 ], [ -94.823255845820242, 29.369822134440049 ], [ -94.820563845251556, 29.368673134469002 ], [ -94.818816844989939, 29.368077134204416 ], [ -94.817258843936415, 29.367552134055426 ], [ -94.817201844522216, 29.367525134459388 ], [ -94.815727843509563, 29.366978134085628 ], [ -94.815508843557055, 29.367060134233085 ], [ -94.815471843803195, 29.367085134367862 ], [ -94.815153843222276, 29.367306134317268 ], [ -94.814961843754361, 29.366951134756125 ], [ -94.814633843672041, 29.367006134568854 ], [ -94.814196843562996, 29.366978134309235 ], [ -94.813540842763189, 29.366814134414252 ], [ -94.813185843467238, 29.366486134409303 ], [ -94.811906842825238, 29.365915133858941 ], [ -94.810861843009576, 29.36544813397256 ], [ -94.810314842137046, 29.365475134347029 ], [ -94.810031841794768, 29.365627134363738 ], [ -94.809995842617951, 29.365578134718888 ], [ -94.809917842672633, 29.365484134562518 ], [ -94.80971384242828, 29.364600134207521 ], [ -94.80963184218237, 29.363971133662361 ], [ -94.809742842452991, 29.363886134032114 ], [ -94.809979842075805, 29.363705134230056 ], [ -94.810096842355946, 29.36361613420036 ], [ -94.811763842358985, 29.364163134224825 ], [ -94.817258844024792, 29.36645913403073 ], [ -94.820013844464853, 29.367659134473886 ], [ -94.821203845729755, 29.368184134820812 ], [ -94.82401084652453, 29.369420134557629 ], [ -94.826222846891525, 29.37039513505314 ], [ -94.827288846678158, 29.370868135006774 ], [ -94.828466847641096, 29.371379135124599 ], [ -94.829778847494211, 29.37184413468097 ], [ -94.831355848307581, 29.372350135099673 ], [ -94.833482848360489, 29.373034135105769 ], [ -94.834972849039403, 29.373512135499229 ], [ -94.839361849922625, 29.374857134999449 ], [ -94.843972851730967, 29.376341135839922 ], [ -94.852468853388345, 29.37909913536588 ], [ -94.861389855901621, 29.381929135609873 ], [ -94.869846858686842, 29.384600136589047 ], [ -94.869872858712668, 29.384626136577477 ], [ -94.875063859775466, 29.386284136604147 ], [ -94.875177859502827, 29.38632613607351 ], [ -94.87524085969568, 29.386380136844174 ], [ -94.875395860525856, 29.386407136114936 ], [ -94.876237860495792, 29.386650136619959 ], [ -94.876704860598181, 29.386811136499123 ], [ -94.877140860043355, 29.386973136414205 ], [ -94.877421860668136, 29.387054136813934 ], [ -94.87851186089901, 29.387405136387951 ], [ -94.879103860621512, 29.387594136992387 ], [ -94.879664861266363, 29.387783136882405 ], [ -94.879882861440947, 29.387864136570631 ], [ -94.8802568610013, 29.387972136745155 ], [ -94.88050586141469, 29.388080136238468 ], [ -94.880692861268003, 29.388134136468434 ], [ -94.880951861175049, 29.388217136330567 ], [ -94.881385861332518, 29.388382136328552 ], [ -94.882685861699969, 29.388753136681281 ], [ -94.885471863221369, 29.389682137059101 ], [ -94.886705862938243, 29.38867413613724 ], [ -94.886768863457675, 29.38856613648505 ], [ -94.886705863317601, 29.38848013664439 ], [ -94.886705863150738, 29.387783136548059 ], [ -94.886512862644949, 29.387490136703544 ], [ -94.886586862755109, 29.387170136643743 ], [ -94.88683086312821, 29.386973135761181 ], [ -94.886861863399943, 29.386757136102968 ], [ -94.887266862605898, 29.386380136217664 ], [ -94.887391863524215, 29.38624513592654 ], [ -94.88740386320471, 29.386212135740738 ], [ -94.887484863592732, 29.386002135702959 ], [ -94.887609863596012, 29.385597136071699 ], [ -94.88792086314858, 29.38478713590203 ], [ -94.888045863339443, 29.384437135728653 ], [ -94.888170863333116, 29.384032135594342 ], [ -94.888263862989348, 29.383843135218182 ], [ -94.888357863471427, 29.383546135070205 ], [ -94.888450862879836, 29.383303135094078 ], [ -94.888544863049745, 29.3828711356763 ], [ -94.888637863054555, 29.382683135442733 ], [ -94.888668862795498, 29.382413134974616 ], [ -94.888793863090186, 29.382359134938511 ], [ -94.888854863415332, 29.382305135443719 ], [ -94.889104863413209, 29.382197134903898 ], [ -94.88926086365241, 29.382332135256842 ], [ -94.89019586384093, 29.382359135223663 ], [ -94.891379863968538, 29.382305134812906 ], [ -94.891535864092859, 29.382332135351611 ], [ -94.891535864297978, 29.382656135540213 ], [ -94.891628864138227, 29.382844134937763 ], [ -94.891815864432544, 29.382764135581638 ], [ -94.893061864601819, 29.382764135361974 ], [ -94.893155864501352, 29.38265613509585 ], [ -94.893092864332147, 29.382386135420969 ], [ -94.893155864473286, 29.382278134763649 ], [ -94.893155864459231, 29.382089134588742 ], [ -94.892999863879027, 29.382170134745412 ], [ -94.892812864327183, 29.38222413504279 ], [ -94.892563864190606, 29.382224134620735 ], [ -94.891441863863221, 29.382197134817183 ], [ -94.891354864359997, 29.382197134759036 ], [ -94.890337864162774, 29.382191135102982 ], [ -94.890132864008109, 29.382197135520894 ], [ -94.88947886390585, 29.382170134983717 ], [ -94.88904286302575, 29.382089135086098 ], [ -94.888973863800743, 29.382013134811899 ], [ -94.886730862642821, 29.379507134547577 ], [ -94.884174862119124, 29.377155134065347 ], [ -94.88322086132365, 29.377228134361861 ], [ -94.882768861873117, 29.377818134735339 ], [ -94.881887861375503, 29.378302134737424 ], [ -94.881073861021449, 29.378258134688931 ], [ -94.879994860811337, 29.377928134595933 ], [ -94.879333860164067, 29.377245134610266 ], [ -94.874930859328686, 29.376211134251179 ], [ -94.873103858515563, 29.375902134221629 ], [ -94.872531858680347, 29.375572134521395 ], [ -94.872091858673159, 29.375616134577015 ], [ -94.869911857918254, 29.374769134402374 ], [ -94.868810857501131, 29.374637134284438 ], [ -94.866697856855666, 29.374108134003247 ], [ -94.865354856553637, 29.373140134010328 ], [ -94.864517856210924, 29.371863134214387 ], [ -94.864363856306966, 29.370355133612669 ], [ -94.864738856102221, 29.369298132833674 ], [ -94.865552856637464, 29.36810913341462 ], [ -94.866213857166869, 29.367383133100933 ], [ -94.872966858591155, 29.364202131754869 ], [ -94.883503860928883, 29.359300130747869 ], [ -94.886012861127284, 29.358040130602159 ], [ -94.887961861834313, 29.357270130424062 ], [ -94.889974862250952, 29.356152129969772 ], [ -94.890214862717087, 29.355894129783277 ], [ -94.891330863024379, 29.355929129694218 ], [ -94.891444862687521, 29.356117130005753 ], [ -94.891566862548444, 29.356320129380411 ], [ -94.891753862861492, 29.35662912936349 ], [ -94.891637862874205, 29.355837129186938 ], [ -94.891305862616576, 29.352739128731823 ], [ -94.891805862912207, 29.351339129088132 ], [ -94.891405862599171, 29.35083912864809 ], [ -94.891605863081836, 29.348340127691792 ], [ -94.894305863312539, 29.340840126567578 ], [ -94.894705862708179, 29.337640125702702 ], [ -94.895175863309987, 29.336613125302428 ], [ -94.895207863124099, 29.336543125279714 ], [ -94.896168863058861, 29.334441125300106 ], [ -94.89639086321408, 29.334303125362641 ], [ -94.896539863081941, 29.334412125205727 ], [ -94.89635886321453, 29.336522125002897 ], [ -94.896349862813423, 29.336632125590725 ], [ -94.896305863194144, 29.337140125329643 ], [ -94.89670586375189, 29.336740125371833 ], [ -94.897405863316038, 29.336940125172472 ], [ -94.897529863985213, 29.336670125817381 ], [ -94.897585863868954, 29.33654912522184 ], [ -94.898616864137182, 29.334311125242852 ], [ -94.898511863575948, 29.334050124431752 ], [ -94.898765863760204, 29.333448124793545 ], [ -94.898576863717267, 29.333325124859787 ], [ -94.898327864044091, 29.333244124269772 ], [ -94.898140863579854, 29.333163124367697 ], [ -94.898140863146494, 29.332920124167597 ], [ -94.898077863306625, 29.33270412485869 ], [ -94.898015863181357, 29.332407124569968 ], [ -94.898077863673194, 29.33213712437086 ], [ -94.898140863579783, 29.332029124323526 ], [ -94.898171863077536, 29.331760124730504 ], [ -94.898420863769346, 29.331517124584934 ], [ -94.898358863538817, 29.331436124314383 ], [ -94.898327863191568, 29.331085124005511 ], [ -94.898171863371076, 29.330761124317526 ], [ -94.898140863128319, 29.330572124093333 ], [ -94.898077863509997, 29.330464124196801 ], [ -94.897953863548594, 29.330167124274475 ], [ -94.897797863343669, 29.329844124394331 ], [ -94.897641863562285, 29.329547124258543 ], [ -94.89757986334395, 29.329385124330571 ], [ -94.897330863582184, 29.329034123490612 ], [ -94.897174863673825, 29.328818123729807 ], [ -94.896738862711089, 29.328629123835245 ], [ -94.896488863208702, 29.328575124174886 ], [ -94.896177862611168, 29.328575123522498 ], [ -94.89602186250832, 29.328332123745142 ], [ -94.89589686319384, 29.328197123667557 ], [ -94.895616862541814, 29.327928124096683 ], [ -94.895367862610584, 29.32768512336985 ], [ -94.895273862302119, 29.327361123129226 ], [ -94.894962862213561, 29.327064123594567 ], [ -94.894775862268688, 29.326767123626919 ], [ -94.894650862825202, 29.326713123364467 ], [ -94.894526862080014, 29.32663212354376 ], [ -94.894245862196769, 29.326389123445225 ], [ -94.894121861803924, 29.326174123513379 ], [ -94.89402786264678, 29.32609312293614 ], [ -94.893996862450535, 29.325958123012153 ], [ -94.893902861854301, 29.325850123711824 ], [ -94.893715862282932, 29.325796122829509 ], [ -94.893560862425147, 29.325661123217234 ], [ -94.893466861625129, 29.325661123327979 ], [ -94.892937861611529, 29.325607123287234 ], [ -94.89271886239014, 29.325526123145906 ], [ -94.892687862346165, 29.32541812324931 ], [ -94.89262586229394, 29.325364123100776 ], [ -94.892625862254263, 29.325094122734289 ], [ -94.89268786154021, 29.324932123294538 ], [ -94.892687861448721, 29.324419122926678 ], [ -94.892625861637271, 29.324150122638134 ], [ -94.892532862043296, 29.323907123063197 ], [ -94.892469862033039, 29.323799122801773 ], [ -94.892469861632449, 29.323556122755129 ], [ -94.892563861396155, 29.323448122656963 ], [ -94.892625861878528, 29.323286122368518 ], [ -94.892625861642401, 29.323178122544618 ], [ -94.892812862172562, 29.322854123113267 ], [ -94.89287486190203, 29.322692122695045 ], [ -94.892999861558607, 29.322395122280646 ], [ -94.89299986132508, 29.322314122861137 ], [ -94.893061861625199, 29.32196412262477 ], [ -94.892968861341046, 29.321883122064616 ], [ -94.893030861778527, 29.321559122758419 ], [ -94.893030862105803, 29.321316122695553 ], [ -94.892937861768431, 29.32091112256407 ], [ -94.89293786208421, 29.320722122394372 ], [ -94.892874861910769, 29.320641122635553 ], [ -94.892812862109096, 29.320398122262439 ], [ -94.892718861425337, 29.320183122364647 ], [ -94.892594861106332, 29.319859122043674 ], [ -94.892500861371175, 29.319751122371137 ], [ -94.892438861470652, 29.319562121686349 ], [ -94.892313861364642, 29.319238121839039 ], [ -94.892251861054177, 29.319049121923388 ], [ -94.892189861678432, 29.318536121386323 ], [ -94.892127861899624, 29.318482121727179 ], [ -94.892127861921907, 29.318321121345544 ], [ -94.892158861799089, 29.318213121745206 ], [ -94.892251861152673, 29.318024121429577 ], [ -94.892282861923846, 29.317430121309204 ], [ -94.892313861337513, 29.317079121383227 ], [ -94.892376861283523, 29.316863121284779 ], [ -94.892438861869806, 29.316566121588437 ], [ -94.892532860950894, 29.316216121672515 ], [ -94.892563861664385, 29.315811120834439 ], [ -94.892563861756102, 29.314893121328833 ], [ -94.892532861147401, 29.314704120691943 ], [ -94.89240786098965, 29.314650121333898 ], [ -94.892376861744779, 29.314569120646272 ], [ -94.892532861144858, 29.314515121222534 ], [ -94.892532860869366, 29.313814120944887 ], [ -94.892625861555132, 29.313787120382489 ], [ -94.892687861253336, 29.31354412047445 ], [ -94.892781861204938, 29.313463120804201 ], [ -94.892812861365201, 29.31338212059126 ], [ -94.892948861656023, 29.313314120725568 ], [ -94.893030861307764, 29.313274121070215 ], [ -94.89321786182056, 29.313112120234482 ], [ -94.893404861194597, 29.313031120434033 ], [ -94.893497861242992, 29.3128691206878 ], [ -94.893622861402037, 29.312761120973494 ], [ -94.893747861093303, 29.312734120641409 ], [ -94.893871861559333, 29.312626120627236 ], [ -94.893934861179972, 29.312518120675616 ], [ -94.894058861315628, 29.312492120374774 ], [ -94.894121861294053, 29.3123301203834 ], [ -94.894245862174031, 29.312195120522677 ], [ -94.894588861417262, 29.311682120616211 ], [ -94.894713862210452, 29.311547120429662 ], [ -94.894775861319999, 29.311385120050343 ], [ -94.894837861995256, 29.311277120561513 ], [ -94.894868862274734, 29.311115120421821 ], [ -94.894931861763581, 29.311061119999192 ], [ -94.895086861557175, 29.3105221202004 ], [ -94.895242861989715, 29.309955119506743 ], [ -94.895367861790064, 29.309739120136371 ], [ -94.895523862106955, 29.309496119852287 ], [ -94.895678862269037, 29.309199119353849 ], [ -94.895772862071908, 29.308659119335449 ], [ -94.895710862039294, 29.308498119764071 ], [ -94.89567886172226, 29.308093119836762 ], [ -94.895772862041071, 29.307904119185228 ], [ -94.895928862054845, 29.307553119420891 ], [ -94.896239862325842, 29.307499119022658 ], [ -94.896426862302604, 29.307418118941055 ], [ -94.896800861946943, 29.307013119515332 ], [ -94.8969878623532, 29.306851119200758 ], [ -94.897112862615103, 29.306797119138867 ], [ -94.897330861825267, 29.306501119427644 ], [ -94.897392862352049, 29.306258119391554 ], [ -94.897579862622734, 29.306150119160705 ], [ -94.897766862245049, 29.305988118699698 ], [ -94.897828861883099, 29.305637118537359 ], [ -94.897984862282598, 29.305232118436372 ], [ -94.898233862519334, 29.305016119187709 ], [ -94.89835886226814, 29.304800119047698 ], [ -94.898406862834406, 29.304745118644512 ], [ -94.898669862714144, 29.304450118864736 ], [ -94.898717862896859, 29.304283118704234 ], [ -94.898763862941422, 29.30412611864492 ], [ -94.898701862204035, 29.303910118250027 ], [ -94.898669862520862, 29.303748118494898 ], [ -94.898621862526184, 29.303676118102089 ], [ -94.89859886214191, 29.30364311864 ], [ -94.898552862352375, 29.303576118445321 ], [ -94.898625862370977, 29.303564118655043 ], [ -94.896387861618649, 29.302453118388243 ], [ -94.886107859247275, 29.297377117603158 ], [ -94.885865859073135, 29.297254117489508 ], [ -94.885833859307454, 29.297343117455455 ], [ -94.885751859020431, 29.297575117540834 ], [ -94.885700859254428, 29.297717118035614 ], [ -94.884970858782594, 29.298960118083571 ], [ -94.88379085901218, 29.300970118635469 ], [ -94.882104858017172, 29.303841119071521 ], [ -94.881057858358915, 29.30461111901711 ], [ -94.862867854986703, 29.333260125894295 ], [ -94.861073854419274, 29.336084126780918 ], [ -94.860121853832013, 29.337584126435136 ], [ -94.857458853038949, 29.341776127327655 ], [ -94.838579850264608, 29.371495134574499 ], [ -94.830031847441361, 29.369474134527902 ], [ -94.823008845431644, 29.366426134114228 ], [ -94.81083384197531, 29.361142133380202 ], [ -94.810293842142883, 29.360908133127385 ], [ -94.80521784054946, 29.358708133280469 ], [ -94.804769840767975, 29.35851413319434 ], [ -94.795923838165464, 29.354679132916299 ], [ -94.785073835658423, 29.34997513156635 ], [ -94.7821068342827, 29.348731131693302 ], [ -94.765349829413594, 29.342704130852152 ], [ -94.765328829386092, 29.342697131357681 ], [ -94.763501829624218, 29.342040130522694 ], [ -94.763282829232821, 29.342109130674093 ], [ -94.750200826055135, 29.346272132369467 ], [ -94.750256826472736, 29.347865132771968 ], [ -94.750199825733446, 29.349712132470746 ], [ -94.750012826031892, 29.349795132683159 ], [ -94.748823825671465, 29.350324133391574 ], [ -94.743227824919032, 29.353211134128227 ], [ -94.738469823544094, 29.353213134127994 ], [ -94.73154082202413, 29.353218134298878 ], [ -94.731379821451313, 29.353194133813933 ], [ -94.729563821185266, 29.352934134532251 ], [ -94.729517821018504, 29.352932134127599 ], [ -94.729604821535887, 29.359630135408999 ], [ -94.729604821339905, 29.359650135822378 ], [ -94.72962682134164, 29.361354135699901 ], [ -94.729698822113576, 29.367013136767394 ], [ -94.731274822043417, 29.366213136701134 ], [ -94.732173821751857, 29.365869136688961 ], [ -94.733177822413381, 29.365433137029981 ], [ -94.734268823030646, 29.365127136566084 ], [ -94.736886823051137, 29.365171136438143 ], [ -94.7388508235763, 29.365433136339494 ], [ -94.741206824943205, 29.366262136870134 ], [ -94.743519825249365, 29.367222137118024 ], [ -94.745308825742825, 29.367876136668858 ], [ -94.746598826202415, 29.368171136541402 ], [ -94.743814825230331, 29.368900136909577 ], [ -94.744295825940796, 29.369363137569891 ], [ -94.744329825376568, 29.369423137347724 ], [ -94.744340825444397, 29.370258137251774 ], [ -94.744361825915846, 29.371048137219301 ], [ -94.744118825921021, 29.371473137235931 ], [ -94.743996825230042, 29.371352137857226 ], [ -94.743834825109616, 29.371352138013098 ], [ -94.743611825310879, 29.37143313809133 ], [ -94.743287825229743, 29.371696137885937 ], [ -94.74320682484931, 29.372081138058128 ], [ -94.743226825758541, 29.372527137614817 ], [ -94.742862825171969, 29.373114138328127 ], [ -94.742517825579284, 29.373803138018367 ], [ -94.741991825205318, 29.374330138664025 ], [ -94.741606824674435, 29.374411137980431 ], [ -94.741606825162378, 29.37479513809896 ], [ -94.741565825204503, 29.375160138437103 ], [ -94.741788825581764, 29.375079138824148 ], [ -94.742274825110201, 29.374876138639593 ], [ -94.742740825487886, 29.37479513883304 ], [ -94.743814825513979, 29.373924138229278 ], [ -94.744259825590447, 29.373904138410097 ], [ -94.744563826018336, 29.373823138441885 ], [ -94.745212826077932, 29.373438138132581 ], [ -94.745414825938127, 29.373256137619435 ], [ -94.745698826245416, 29.372911137871405 ], [ -94.746245826165477, 29.372587137544855 ], [ -94.746771826594696, 29.372608138003841 ], [ -94.746971826427895, 29.372541137850916 ], [ -94.747197826741626, 29.372466137315719 ], [ -94.747582826335375, 29.372142137594047 ], [ -94.748250826326156, 29.371534137442957 ], [ -94.74889882693121, 29.37119013783936 ], [ -94.748991826849846, 29.371112137514778 ], [ -94.749263826342997, 29.370886137777809 ], [ -94.749769827452226, 29.370744137368863 ], [ -94.749887826561363, 29.370665137616871 ], [ -94.750013826652932, 29.370582137164412 ], [ -94.750256827082538, 29.370622137024284 ], [ -94.750397827245905, 29.370622137609104 ], [ -94.750495827028615, 29.370555137575742 ], [ -94.750924826835927, 29.370258137002253 ], [ -94.750985827395752, 29.369934136688876 ], [ -94.750803827403089, 29.36967013731708 ], [ -94.750915827389221, 29.369544137282151 ], [ -94.750965827258497, 29.369488137387453 ], [ -94.751086827319554, 29.36952813667763 ], [ -94.751834827225039, 29.369193137167496 ], [ -94.753132827797018, 29.368414137064299 ], [ -94.753862828042429, 29.367867136867659 ], [ -94.754267828451802, 29.367584136727096 ], [ -94.754631828397166, 29.36703713646002 ], [ -94.753801827727386, 29.366287135926523 ], [ -94.757265828098426, 29.363877136033683 ], [ -94.757326828411664, 29.363512135968147 ], [ -94.757832829109844, 29.363208135242381 ], [ -94.758035829184251, 29.363208135155716 ], [ -94.75831882873689, 29.363289135433089 ], [ -94.76074982941131, 29.362256134778288 ], [ -94.76095282899874, 29.361993135261642 ], [ -94.761296829425206, 29.36203313484182 ], [ -94.761369829572629, 29.36213413546697 ], [ -94.762073829968003, 29.362674135206678 ], [ -94.762138829541058, 29.362724135422038 ], [ -94.762476830364577, 29.362998135419879 ], [ -94.762033829964864, 29.363399135808741 ], [ -94.762033829679069, 29.363546135641158 ], [ -94.762022830055315, 29.363999135736261 ], [ -94.762191829791959, 29.364558135542588 ], [ -94.762570830006538, 29.365148135586082 ], [ -94.762929830427311, 29.365559135498813 ], [ -94.763161830454649, 29.365717136078132 ], [ -94.763371829781519, 29.365854136027398 ], [ -94.764025830797181, 29.365981135679604 ], [ -94.764510830784147, 29.366034136174282 ], [ -94.765174831097013, 29.365991135808795 ], [ -94.766407831191955, 29.365728135920854 ], [ -94.76790483099623, 29.365433135708461 ], [ -94.768915831874153, 29.365264135310088 ], [ -94.770043831906193, 29.364864134998168 ], [ -94.770075831870514, 29.364695135807974 ], [ -94.770686831978679, 29.364495134972302 ], [ -94.771234832071571, 29.364252135281909 ], [ -94.771249831803289, 29.364228135671159 ], [ -94.771350831839726, 29.364073135321512 ], [ -94.771445832550469, 29.363873134761693 ], [ -94.771635831858632, 29.36376813531264 ], [ -94.772256832157282, 29.363609135393791 ], [ -94.772741832475518, 29.363378135141307 ], [ -94.772960832805964, 29.363192135118009 ], [ -94.773026832527989, 29.3631351353716 ], [ -94.773226832976064, 29.363051135061252 ], [ -94.773574832911791, 29.362914134624916 ], [ -94.773890832735816, 29.362766134747513 ], [ -94.774196832726645, 29.362534134932716 ], [ -94.774586832608932, 29.362440134353076 ], [ -94.774670833461826, 29.362503134861246 ], [ -94.774870832686602, 29.362671135014267 ], [ -94.77525083344365, 29.362577134639078 ], [ -94.775425833292857, 29.362521134908278 ], [ -94.775682833813292, 29.362440134504325 ], [ -94.775872833765604, 29.362303135004929 ], [ -94.776451833025547, 29.362007134945785 ], [ -94.77764283344932, 29.361428134288861 ], [ -94.777979834170239, 29.361386134340645 ], [ -94.778454833548736, 29.36128013438034 ], [ -94.778643833756419, 29.361291134234357 ], [ -94.778506834346075, 29.3619651346879 ], [ -94.778690834388058, 29.362232134912212 ], [ -94.778717834042908, 29.362271134639091 ], [ -94.778892834344219, 29.362332134362752 ], [ -94.779192834580172, 29.362440134998391 ], [ -94.779396834408729, 29.362732135035195 ], [ -94.779434834463743, 29.362787134254503 ], [ -94.779466834686872, 29.362914134938595 ], [ -94.779286834095416, 29.363188134620312 ], [ -94.779149834509496, 29.363304134413202 ], [ -94.779734834660204, 29.36415313521816 ], [ -94.780130835026839, 29.364727134800788 ], [ -94.780477834265682, 29.364864135104082 ], [ -94.780709835177134, 29.365074134806424 ], [ -94.780688835144858, 29.365201135159705 ], [ -94.780836834481917, 29.365464135125549 ], [ -94.780709835140016, 29.365549135679007 ], [ -94.780509834536559, 29.365254135079383 ], [ -94.779371834743358, 29.36561213561108 ], [ -94.77966683425079, 29.366476135464794 ], [ -94.780751835066354, 29.366107135080085 ], [ -94.780730835230173, 29.366012135517803 ], [ -94.781068835063934, 29.365907134910533 ], [ -94.78108983482808, 29.365991135313887 ], [ -94.780973835190565, 29.366076135345132 ], [ -94.780931834395815, 29.366150135339382 ], [ -94.780873834774553, 29.366167135228306 ], [ -94.780541834726932, 29.366265135296668 ], [ -94.780393834860774, 29.366402135798879 ], [ -94.779982834072314, 29.366624135263447 ], [ -94.779719834734564, 29.366687135726529 ], [ -94.779360833936607, 29.366676135401615 ], [ -94.779170833933264, 29.366824135366318 ], [ -94.778875834686502, 29.36738313576657 ], [ -94.778749834075029, 29.367446135438993 ], [ -94.778401834358164, 29.367846135702429 ], [ -94.778053833946061, 29.368394136313036 ], [ -94.777948834553172, 29.368437135935171 ], [ -94.777752834133878, 29.368966135935381 ], [ -94.779666834674615, 29.369953135782907 ], [ -94.779978834580263, 29.370111136477245 ], [ -94.780074834489227, 29.370303136624383 ], [ -94.780138834611023, 29.370479135888488 ], [ -94.780266834713416, 29.370655136199506 ], [ -94.780346835021547, 29.370863136080573 ], [ -94.780426834773323, 29.371167136383253 ], [ -94.781543835299871, 29.372172136802156 ], [ -94.782586835593406, 29.373110136771395 ], [ -94.783260835454826, 29.373717136493251 ], [ -94.783564835311637, 29.373990137253269 ], [ -94.785575836257664, 29.376927137732277 ], [ -94.784967836441666, 29.378142137954892 ], [ -94.775004834186518, 29.384749139502343 ], [ -94.769156832719887, 29.388911140371857 ], [ -94.769845833057019, 29.391313140671251 ], [ -94.770591833046652, 29.392454141589095 ], [ -94.770942833561975, 29.393419141351814 ], [ -94.773619834237763, 29.395042141917713 ], [ -94.773838834695184, 29.39548114136019 ], [ -94.774277834762387, 29.397566142075895 ], [ -94.774343834715353, 29.399255142361625 ], [ -94.765962832350795, 29.40811914486024 ], [ -94.752886829685593, 29.41739914661748 ], [ -94.750077829333989, 29.419111147342118 ], [ -94.744702827613096, 29.421502148327832 ], [ -94.743715827217414, 29.42128314800879 ], [ -94.742640827145777, 29.420515147785384 ], [ -94.741740826702852, 29.419374147777319 ], [ -94.741543827027215, 29.418694147774904 ], [ -94.740841826638587, 29.417794147175805 ], [ -94.740534826499399, 29.41770614728205 ], [ -94.739766825850197, 29.416500147168641 ], [ -94.739020825907517, 29.416017147199501 ], [ -94.738932826283857, 29.415491147034725 ], [ -94.737745825847753, 29.414586146975459 ], [ -94.735895825159943, 29.415048146847258 ], [ -94.735368824755156, 29.415355147461163 ], [ -94.73258682455598, 29.417845148083728 ], [ -94.732091824203351, 29.418615147607905 ], [ -94.731993824205077, 29.419290147688571 ], [ -94.731599824567624, 29.419619148349394 ], [ -94.730015823963271, 29.420217148104793 ], [ -94.729490823715551, 29.420593148082109 ], [ -94.729496823958726, 29.421197148589329 ], [ -94.728367823862456, 29.422114148422271 ], [ -94.727717823316425, 29.423235149352848 ], [ -94.727270822979548, 29.423588148720501 ], [ -94.726874823453471, 29.423731148976547 ], [ -94.725654822533087, 29.423745148679131 ], [ -94.725051822888162, 29.424262149146625 ], [ -94.724607822800237, 29.42489414948281 ], [ -94.724274822485171, 29.42596414958787 ], [ -94.724064823146605, 29.426153149492215 ], [ -94.723510822504338, 29.426414150042604 ], [ -94.723167822404619, 29.426464149522783 ], [ -94.722132822298008, 29.426382149611563 ], [ -94.721842822585643, 29.426571150175789 ], [ -94.721581822529743, 29.426946149505547 ], [ -94.721510822247893, 29.427665150134807 ], [ -94.721220821835502, 29.427854150339318 ], [ -94.720534822104369, 29.428024150092803 ], [ -94.720375822150459, 29.428165149822856 ], [ -94.720090822288213, 29.428702150258452 ], [ -94.719592822113214, 29.42914815025582 ], [ -94.717405821441091, 29.430424150872664 ], [ -94.715848820434815, 29.431045150843676 ], [ -94.714902820966671, 29.431304151271569 ], [ -94.713966820823359, 29.431488151063441 ], [ -94.713145820324144, 29.431423151495537 ], [ -94.712923820212026, 29.431276150859205 ], [ -94.712742820415016, 29.431338150931357 ], [ -94.712155819440937, 29.430753150582554 ], [ -94.711707819274494, 29.430308151124045 ], [ -94.711402819571518, 29.430324151377064 ], [ -94.710823819083402, 29.430662151171017 ], [ -94.710775819945511, 29.430935151018875 ], [ -94.710665819494452, 29.431169150964905 ], [ -94.710534819637672, 29.431450151595733 ], [ -94.71013181958169, 29.431792151410622 ], [ -94.709890819375943, 29.43199715125801 ], [ -94.709343819639741, 29.432254151149863 ], [ -94.708925819024714, 29.432575151476218 ], [ -94.708877818839468, 29.432801151665782 ], [ -94.708668818573329, 29.432785151849046 ], [ -94.708395819037776, 29.432994151823092 ], [ -94.708170818507583, 29.432865151898749 ], [ -94.707631818982648, 29.433219151418136 ], [ -94.707564818301591, 29.433261151796742 ], [ -94.707579819214871, 29.43333215197233 ], [ -94.707141818344098, 29.433639151900081 ], [ -94.706914818082808, 29.433759151814005 ], [ -94.70669781875327, 29.434035152257831 ], [ -94.70651381838141, 29.434248152012753 ], [ -94.706658818354299, 29.434489151749609 ], [ -94.706550818360483, 29.434560152264492 ], [ -94.706368818618287, 29.43468215158607 ], [ -94.706288818724829, 29.434795151615667 ], [ -94.706159818586912, 29.434891151708982 ], [ -94.705870818260294, 29.435084151952815 ], [ -94.705784818218149, 29.435174152211147 ], [ -94.705660817997554, 29.435306151749259 ], [ -94.705532818647072, 29.435020152245865 ], [ -94.705371818406178, 29.435068152361403 ], [ -94.704997818680823, 29.435263152082989 ], [ -94.704839817693085, 29.43650415212198 ], [ -94.704149817563291, 29.437417152275763 ], [ -94.703944817638231, 29.437965152751108 ], [ -94.704096818441926, 29.437921152629251 ], [ -94.704269818262674, 29.438030152884611 ], [ -94.704442817789015, 29.438484153055992 ], [ -94.704442818355773, 29.438628153316625 ], [ -94.704442817816513, 29.439089152689274 ], [ -94.704355818589534, 29.439457153227504 ], [ -94.703728817981045, 29.44012715310997 ], [ -94.702885818241214, 29.441057153219234 ], [ -94.70217181735957, 29.441835153552407 ], [ -94.70184781805176, 29.442311153693456 ], [ -94.70178281759803, 29.442527153721812 ], [ -94.701912817774797, 29.442571153985721 ], [ -94.701803817866278, 29.44267915423233 ], [ -94.701544817993323, 29.442700153913112 ], [ -94.701587818095561, 29.442592154208121 ], [ -94.701479818030634, 29.442571153617084 ], [ -94.701306817920923, 29.442592154284796 ], [ -94.700830817423679, 29.443003153837346 ], [ -94.700311817305547, 29.443609154467939 ], [ -94.700225817252857, 29.443782153930876 ], [ -94.700095817425264, 29.443846154330458 ], [ -94.699987817622699, 29.443976154032676 ], [ -94.699814817293969, 29.444192153915576 ], [ -94.699641817402735, 29.444214153852631 ], [ -94.699446817414, 29.4445381541553 ], [ -94.69940381704815, 29.444755154102975 ], [ -94.699230817554465, 29.444992154048901 ], [ -94.699187817574995, 29.445122154227416 ], [ -94.699014817497456, 29.445166154562013 ], [ -94.698927816883625, 29.445317154177477 ], [ -94.698841817101908, 29.445490154631422 ], [ -94.698754816663168, 29.445684154247697 ], [ -94.698776817366365, 29.445814154724399 ], [ -94.69875481659345, 29.446074154588118 ], [ -94.698754816835333, 29.446268154334629 ], [ -94.698927816846364, 29.446420154846759 ], [ -94.698711817368675, 29.446614154369914 ], [ -94.698452816674902, 29.446809154999862 ], [ -94.698279816519687, 29.446722155138414 ], [ -94.698149817087085, 29.44678715510738 ], [ -94.697868816952919, 29.447068155037591 ], [ -94.697889816879666, 29.447263154475717 ], [ -94.697781816771766, 29.447414155056808 ], [ -94.697846817123846, 29.447609155170465 ], [ -94.697889817208235, 29.447955155001932 ], [ -94.69795481739304, 29.447977155135362 ], [ -94.697998816880414, 29.44817115543799 ], [ -94.697976816747612, 29.448539155591792 ], [ -94.697976816471169, 29.448712155448849 ], [ -94.697803817022645, 29.449015155362822 ], [ -94.697457816903309, 29.449252155017206 ], [ -94.697046816235869, 29.44920915543981 ], [ -94.696895816433681, 29.449144155084337 ], [ -94.696700816440753, 29.449231155430635 ], [ -94.696635816125564, 29.449469155241932 ], [ -94.696743817014578, 29.449793155640013 ], [ -94.696678816416679, 29.450009155189004 ], [ -94.696419816835757, 29.450117155191684 ], [ -94.696268816887411, 29.450269155496791 ], [ -94.696159816243338, 29.450485155483282 ], [ -94.696203816382791, 29.45072315599624 ], [ -94.696138816560904, 29.450874155877745 ], [ -94.695965816302163, 29.451047155561781 ], [ -94.695900817006574, 29.451415155762039 ], [ -94.695878816398334, 29.451912155867806 ], [ -94.695705816429523, 29.452301156129131 ], [ -94.695554816638406, 29.452734156010084 ], [ -94.69544681666828, 29.453102156126832 ], [ -94.695295816135015, 29.453491156097048 ], [ -94.695100815911886, 29.453794156092709 ], [ -94.694927816756945, 29.454248156673451 ], [ -94.694711815890528, 29.45452915618846 ], [ -94.694646816850948, 29.45489615624604 ], [ -94.694624816576692, 29.455264156721533 ], [ -94.69423581594603, 29.455091157085231 ], [ -94.693932816581651, 29.454810156493046 ], [ -94.693759815654914, 29.454767156227422 ], [ -94.693543816205207, 29.454961157009453 ], [ -94.693089816255394, 29.455091156347688 ], [ -94.692829815515523, 29.455199156369336 ], [ -94.692721816350755, 29.455394156414215 ], [ -94.692700816132898, 29.455653156525411 ], [ -94.692981816310919, 29.455826157048662 ], [ -94.693262815585939, 29.456280157233905 ], [ -94.693456815696052, 29.456691156994061 ], [ -94.693348816149452, 29.456972156754144 ], [ -94.693154815692566, 29.457491157382741 ], [ -94.693154816054545, 29.457989157070813 ], [ -94.693283816369359, 29.458313157017624 ], [ -94.693392815792905, 29.458551157377734 ], [ -94.693370816061005, 29.458897157338843 ], [ -94.693240816272109, 29.459048157621833 ], [ -94.693132816000045, 29.459264157750987 ], [ -94.693110816585886, 29.459827157924579 ], [ -94.692873816539745, 29.459827157372551 ], [ -94.692548816213218, 29.459870157456869 ], [ -94.692224815421241, 29.459935157640125 ], [ -94.692159816246971, 29.46015115785146 ], [ -94.691662815820308, 29.460584158096353 ], [ -94.691013815711088, 29.46058415769085 ], [ -94.68999781548591, 29.460757158060414 ], [ -94.689607815418057, 29.460519158081102 ], [ -94.689456814817319, 29.460692158257995 ], [ -94.689218815044626, 29.460605158114799 ], [ -94.689024815080202, 29.460367157594447 ], [ -94.688678815243549, 29.460605158009777 ], [ -94.688483814497857, 29.460346157920416 ], [ -94.687748814413055, 29.460302157839749 ], [ -94.687380815133793, 29.459935157589918 ], [ -94.687229814551927, 29.460086157790709 ], [ -94.687229814863372, 29.460605158020961 ], [ -94.686753814870301, 29.460605157854541 ], [ -94.687229815174831, 29.461124158200438 ], [ -94.687164814924202, 29.461578158516769 ], [ -94.687488814591106, 29.462573158870935 ], [ -94.687142814901449, 29.462984158274569 ], [ -94.686558814848482, 29.463611158329758 ], [ -94.686948814931753, 29.463806158677031 ], [ -94.687294814831105, 29.46402215919484 ], [ -94.687661814723896, 29.463806158549382 ], [ -94.688029815014986, 29.464238158565927 ], [ -94.687207814794974, 29.46469215878744 ], [ -94.687049814382007, 29.464776159208519 ], [ -94.686472814922155, 29.465081158719197 ], [ -94.685941814381039, 29.465431158863627 ], [ -94.685678814899092, 29.465940158895826 ], [ -94.684818814458183, 29.46687015913988 ], [ -94.684274814019446, 29.467431159983281 ], [ -94.683485814341836, 29.467975160017165 ], [ -94.682835813912405, 29.468677159435948 ], [ -94.682081813513321, 29.469466160190716 ], [ -94.681678813890258, 29.470238160484673 ], [ -94.681327813207574, 29.470273160053587 ], [ -94.680906813341721, 29.470677160030835 ], [ -94.680642813880823, 29.470466160526371 ], [ -94.680520813495221, 29.470519160479782 ], [ -94.680414813820619, 29.470642160181047 ], [ -94.680572813381914, 29.47102816028503 ], [ -94.680116812841987, 29.471256160704495 ], [ -94.679730812786758, 29.471344160156743 ], [ -94.67902881300337, 29.471835160681248 ], [ -94.678449813143885, 29.472221160925052 ], [ -94.677818812263055, 29.472677161057558 ], [ -94.677186813077967, 29.473203161140436 ], [ -94.677046812404768, 29.473151161316679 ], [ -94.676660812059438, 29.473484161260448 ], [ -94.676028811990733, 29.473677161143542 ], [ -94.675695812352373, 29.473782160948858 ], [ -94.67534481240223, 29.474010161250199 ], [ -94.675133811771218, 29.474116160970649 ], [ -94.674274811490307, 29.474414161075753 ], [ -94.673413811771852, 29.475477161346969 ], [ -94.67341381194575, 29.47561816163477 ], [ -94.673295811999651, 29.475766161731947 ], [ -94.673014811738852, 29.475898161317307 ], [ -94.672626811103839, 29.475996161652436 ], [ -94.672142811707417, 29.476187161345731 ], [ -94.671759811097317, 29.476491162252675 ], [ -94.671444811085038, 29.476514162004865 ], [ -94.670825811186617, 29.476705162075366 ], [ -94.670419810734046, 29.476863161811629 ], [ -94.670239810731971, 29.476908162182443 ], [ -94.669698811334456, 29.476953161604293 ], [ -94.669068810716652, 29.477100162151569 ], [ -94.668899810390215, 29.477009162370106 ], [ -94.668629811072506, 29.477032161648026 ], [ -94.66838181051574, 29.476931161707512 ], [ -94.668223810189517, 29.477032162478277 ], [ -94.667953810565407, 29.477009162457552 ], [ -94.667874810459736, 29.47712216171443 ], [ -94.667638809966675, 29.477201162116298 ], [ -94.66757080993969, 29.477133161784412 ], [ -94.667615810801962, 29.477032162300862 ], [ -94.667536810776525, 29.476987161750159 ], [ -94.667345810117894, 29.477032161788383 ], [ -94.66731181023232, 29.477190162133379 ], [ -94.666917809633034, 29.47730216255253 ], [ -94.666815809655404, 29.477201161900563 ], [ -94.66662480977692, 29.477201162531056 ], [ -94.666534810240691, 29.477257161887806 ], [ -94.666027809896377, 29.47759516266375 ], [ -94.66589281026117, 29.477651162688243 ], [ -94.665712809453609, 29.477685162277691 ], [ -94.665442809915291, 29.477730162771149 ], [ -94.665047809559013, 29.477696162361678 ], [ -94.664541809232816, 29.477741162554068 ], [ -94.664360809536504, 29.477663162257503 ], [ -94.663977808897542, 29.477663162625948 ], [ -94.663865809377498, 29.477595162514536 ], [ -94.66353880943808, 29.477584162351921 ], [ -94.662851809003257, 29.477663162599121 ], [ -94.661838809178107, 29.477482162235745 ], [ -94.661016808681481, 29.477550162687386 ], [ -94.659743808524794, 29.47721216246763 ], [ -94.659630808336118, 29.477257161986049 ], [ -94.658865807675085, 29.477088162161149 ], [ -94.658617808257915, 29.477111162723844 ], [ -94.658031808058027, 29.477291162590781 ], [ -94.657693807390331, 29.477291162755069 ], [ -94.657378807591613, 29.477314162047886 ], [ -94.657209807953166, 29.477302162150707 ], [ -94.656691807906242, 29.477167162782123 ], [ -94.656139806916229, 29.476942162042636 ], [ -94.655272807131553, 29.476919162535165 ], [ -94.654518806656867, 29.476863162846414 ], [ -94.653324806628717, 29.476638162611881 ], [ -94.652333806485473, 29.476413162189694 ], [ -94.651488806389182, 29.476187162267163 ], [ -94.650644805759526, 29.475883162050263 ], [ -94.65030680625415, 29.475748162761619 ], [ -94.649653805811909, 29.475343162267905 ], [ -94.649135805404555, 29.475061162339085 ], [ -94.648831805185907, 29.474644162059956 ], [ -94.648887805628746, 29.474509162388191 ], [ -94.648797805135359, 29.474464162320647 ], [ -94.648662805603465, 29.474476162229344 ], [ -94.648538805015875, 29.474408162401264 ], [ -94.648065804959742, 29.473924162087364 ], [ -94.647817805147142, 29.473766162469367 ], [ -94.64740080493813, 29.473676161880014 ], [ -94.646544804939595, 29.47349616214219 ], [ -94.6462748044477, 29.473259162257776 ], [ -94.64606080464803, 29.472910162305762 ], [ -94.645948804990368, 29.472910161614159 ], [ -94.645632804164833, 29.472707161999431 ], [ -94.645328804415655, 29.47266216179754 ], [ -94.645092804430746, 29.472741161530472 ], [ -94.644697804686402, 29.472753161632717 ], [ -94.644585804164024, 29.472798162154621 ], [ -94.644562804080678, 29.472888161976062 ], [ -94.64476580459197, 29.473057162054669 ], [ -94.644641804455901, 29.473192161745942 ], [ -94.644517803935059, 29.473180162490451 ], [ -94.64466480416597, 29.473361162404757 ], [ -94.644619804017807, 29.473608162348363 ], [ -94.644810803977037, 29.474003162585344 ], [ -94.644957804649309, 29.474250161854087 ], [ -94.645092804293256, 29.474431162743112 ], [ -94.645002804684154, 29.474431162461002 ], [ -94.644754804485757, 29.47437416205473 ], [ -94.644393804100702, 29.474318162262172 ], [ -94.64407880437642, 29.474217161960663 ], [ -94.643853803622591, 29.474160162147271 ], [ -94.643677804153427, 29.47412416266722 ], [ -94.643502803466561, 29.474107162241499 ], [ -94.643252803623099, 29.474015162546181 ], [ -94.643011803735448, 29.473907161810175 ], [ -94.642844804180996, 29.473799162490316 ], [ -94.642711803985705, 29.473791162334756 ], [ -94.642653803893396, 29.473782161885989 ], [ -94.642303803148366, 29.473541161971859 ], [ -94.642169803436786, 29.473432162379989 ], [ -94.642086803239778, 29.473316161899056 ], [ -94.64207080401961, 29.47317416239742 ], [ -94.642011803810064, 29.473091161844554 ], [ -94.64199280364015, 29.473023162538116 ], [ -94.641961803232178, 29.472916161999677 ], [ -94.641961803894446, 29.472824161715909 ], [ -94.641828803462602, 29.472883161796506 ], [ -94.641820803684581, 29.472858161716392 ], [ -94.641811803250505, 29.472808162353633 ], [ -94.641795803831997, 29.472658162010553 ], [ -94.641628803746798, 29.472508161697508 ], [ -94.641328803051579, 29.472508162429168 ], [ -94.641228802811924, 29.472516161793159 ], [ -94.641079803390483, 29.472625162013749 ], [ -94.640820803540322, 29.472658162126873 ], [ -94.640537803505936, 29.472608162240462 ], [ -94.640437803302035, 29.472658162161959 ], [ -94.640424802687761, 29.472846162013969 ], [ -94.640421803368397, 29.472891162292704 ], [ -94.640379803220867, 29.473016162574272 ], [ -94.640329802673094, 29.473191161906559 ], [ -94.640204803010477, 29.473266162121739 ], [ -94.640162803238709, 29.473382162043098 ], [ -94.64001280305331, 29.473499162658221 ], [ -94.640004802624873, 29.47359116194254 ], [ -94.639913802887449, 29.473749161896137 ], [ -94.63995480332882, 29.473840162722009 ], [ -94.63992180278774, 29.473999162598833 ], [ -94.639854803307969, 29.474140162800101 ], [ -94.63969680282797, 29.47422416209325 ], [ -94.639521802911446, 29.474199162008283 ], [ -94.639271803004689, 29.474215162090243 ], [ -94.639038803299258, 29.474215162515129 ], [ -94.638413802401217, 29.474249162362998 ], [ -94.637947802288068, 29.474290162330156 ], [ -94.637756801996176, 29.474290162148268 ], [ -94.637364802426163, 29.474332162464709 ], [ -94.63718180183244, 29.474348162421141 ], [ -94.6371488026642, 29.474299162214244 ], [ -94.636956802673936, 29.474224162321793 ], [ -94.636765801943966, 29.474249162589771 ], [ -94.636631801844288, 29.474340162437169 ], [ -94.63654080181324, 29.474432162139156 ], [ -94.636473802578834, 29.474640162965539 ], [ -94.636381801704843, 29.474640162848107 ], [ -94.63629080235259, 29.47461516279553 ], [ -94.636290801914754, 29.474657163060819 ], [ -94.636207801822238, 29.474690162436978 ], [ -94.636123801878682, 29.474682162666021 ], [ -94.636048801664813, 29.474707162438737 ], [ -94.635940801567543, 29.474865162556927 ], [ -94.63574980173901, 29.474823162883606 ], [ -94.63573280197599, 29.474873162995596 ], [ -94.635582801516122, 29.47497316314584 ], [ -94.635357801750672, 29.475048162391484 ], [ -94.635232801823193, 29.475073162455452 ], [ -94.634949801829791, 29.475081162690817 ], [ -94.634674801987174, 29.475156163186728 ], [ -94.63447480180487, 29.475106162967528 ], [ -94.634283801858558, 29.47510616239817 ], [ -94.634091801764001, 29.475156162469862 ], [ -94.633883801204036, 29.475290162750102 ], [ -94.633592801516428, 29.475373162637656 ], [ -94.633317800929291, 29.475340162790026 ], [ -94.633258801384784, 29.475348162833434 ], [ -94.63311780131356, 29.475340162561498 ], [ -94.632784801684465, 29.475298162451239 ], [ -94.63272580164309, 29.475331163252282 ], [ -94.632659801297365, 29.475340163048514 ], [ -94.632492801128166, 29.475365162689162 ], [ -94.632401800833378, 29.475306163127161 ], [ -94.632151800936384, 29.475256162651409 ], [ -94.631843800865596, 29.475265162857692 ], [ -94.631609801228223, 29.475281162645345 ], [ -94.631260801062069, 29.475389162615382 ], [ -94.630993800769758, 29.475464162622263 ], [ -94.630852800600266, 29.475456162666035 ], [ -94.630710800346776, 29.475456163154281 ], [ -94.63055280068437, 29.47550616323802 ], [ -94.630419800653186, 29.475556162778673 ], [ -94.630227800524594, 29.475514163101689 ], [ -94.630027800820656, 29.475498162980305 ], [ -94.629652800324749, 29.475589163167765 ], [ -94.629502800739957, 29.475623163004744 ], [ -94.629369800766725, 29.47569816345958 ], [ -94.629311799870038, 29.475798163471875 ], [ -94.628836800153209, 29.475848162967836 ], [ -94.628345800046475, 29.476006163156839 ], [ -94.628187799943177, 29.476164163651422 ], [ -94.628012800399588, 29.476247163438419 ], [ -94.627754800007125, 29.476281163666769 ], [ -94.627512800245839, 29.476289163720299 ], [ -94.627221799352043, 29.476381162925001 ], [ -94.626554800057434, 29.47658016367857 ], [ -94.626546800041851, 29.476655163176975 ], [ -94.626463799601112, 29.476689163393537 ], [ -94.626288800126346, 29.476714163497146 ], [ -94.625005799215117, 29.477205163444324 ], [ -94.624689799604184, 29.477413163445203 ], [ -94.624522799352192, 29.477571163931565 ], [ -94.624406798765719, 29.477730163710394 ], [ -94.623914798664032, 29.47793816351388 ], [ -94.623431798451207, 29.478046164084137 ], [ -94.623265798554002, 29.478154163911796 ], [ -94.62296579851936, 29.478313164182136 ], [ -94.622657798707237, 29.478496164173265 ], [ -94.622565799001592, 29.478604164321919 ], [ -94.621716798550636, 29.478937163924147 ], [ -94.621549798322846, 29.478921163694167 ], [ -94.621274798064178, 29.478979164030683 ], [ -94.620949798807587, 29.478962164134348 ], [ -94.620800797796193, 29.479062163888969 ], [ -94.620691798065408, 29.479120164119774 ], [ -94.620350798038572, 29.479071164120771 ], [ -94.620200798200258, 29.47913716425273 ], [ -94.620000798277843, 29.479220164072913 ], [ -94.619892797845438, 29.479270164011108 ], [ -94.619734798323449, 29.479287164174675 ], [ -94.619592797923431, 29.479304164130049 ], [ -94.619542797834498, 29.479345164466949 ], [ -94.619334797556164, 29.479370164352265 ], [ -94.619242797468047, 29.479395164534232 ], [ -94.619176798157881, 29.479412164062261 ], [ -94.61904279740763, 29.479454164103444 ], [ -94.618851797873688, 29.479670163932955 ], [ -94.618767797683972, 29.479678164015056 ], [ -94.618659797482564, 29.47974516417683 ], [ -94.618651797577513, 29.479820164260889 ], [ -94.61856879726308, 29.479912164554811 ], [ -94.618384797360633, 29.479912164357273 ], [ -94.618176797271587, 29.480062164390699 ], [ -94.617926798057582, 29.480228164256886 ], [ -94.617785797113044, 29.480345164325914 ], [ -94.61727779742435, 29.48022816467202 ], [ -94.61708579719766, 29.480228164812804 ], [ -94.617052797229675, 29.480261164037572 ], [ -94.616844797464978, 29.480320164325729 ], [ -94.616619797412611, 29.480403164300554 ], [ -94.616336796961377, 29.480586164134571 ], [ -94.616327797129244, 29.480761164664109 ], [ -94.615961797163678, 29.481078165011098 ], [ -94.615761796834548, 29.481178164387892 ], [ -94.615644796742046, 29.481261164684511 ], [ -94.6152787965611, 29.481302164953068 ], [ -94.614578797186653, 29.481377165155152 ], [ -94.613887796278419, 29.481436164737747 ], [ -94.613504796609021, 29.481519165153244 ], [ -94.613288796841815, 29.481636165039991 ], [ -94.613004796521821, 29.481694164723436 ], [ -94.612297795934637, 29.4818351646427 ], [ -94.611705796178811, 29.48201016462987 ], [ -94.611106796044865, 29.48222716469942 ], [ -94.610639795986046, 29.482485164997058 ], [ -94.610264795988101, 29.482718165117568 ], [ -94.610115795606816, 29.482768165571077 ], [ -94.610006795589811, 29.482693165201717 ], [ -94.609898795601225, 29.482635165408464 ], [ -94.609698795313889, 29.482602165605339 ], [ -94.609358795351909, 29.482646164979915 ], [ -94.609216795118996, 29.482675164858446 ], [ -94.609026795102039, 29.482703164918878 ], [ -94.608807795359638, 29.482741164984287 ], [ -94.608655795513201, 29.482741164950305 ], [ -94.608427795030025, 29.482808164952452 ], [ -94.608171795297011, 29.482846164932045 ], [ -94.607886794971918, 29.482846164827233 ], [ -94.607639795049067, 29.482960165655179 ], [ -94.607318794561309, 29.48309816535124 ], [ -94.606229795027645, 29.48376316585156 ], [ -94.606117794309029, 29.483795165323532 ], [ -94.605614794561561, 29.483996165534879 ], [ -94.60477679454732, 29.484398165843594 ], [ -94.603885793774282, 29.485055165856377 ], [ -94.603775793891643, 29.485388166363631 ], [ -94.603462794528539, 29.485589165845969 ], [ -94.603351794290845, 29.485912165685654 ], [ -94.602696794033989, 29.486486166304953 ], [ -94.60246479420357, 29.486446165943718 ], [ -94.602162793649043, 29.486744165924684 ], [ -94.602394794220913, 29.486990166405697 ], [ -94.602196794094951, 29.487213166544098 ], [ -94.601693793797892, 29.487146166058078 ], [ -94.601324793348923, 29.487716166439721 ], [ -94.60132479349906, 29.488085166407092 ], [ -94.6008557933677, 29.488487166504537 ], [ -94.600386793679036, 29.489325166891522 ], [ -94.600017792914144, 29.489258166458391 ], [ -94.599783793257458, 29.489760166550099 ], [ -94.599079793479177, 29.490296166806235 ], [ -94.598878792995365, 29.489961167021704 ], [ -94.598409793137435, 29.489827167477369 ], [ -94.597336792298137, 29.490062166879188 ], [ -94.596331792221292, 29.490598167710441 ], [ -94.595158792164355, 29.491101167539306 ], [ -94.594622791565058, 29.491771167827434 ], [ -94.594002791969956, 29.492366168154724 ], [ -94.593784792306394, 29.492575167996289 ], [ -94.593114791401405, 29.492810167756289 ], [ -94.592209791171541, 29.492408167915549 ], [ -94.591774791490451, 29.492541168265898 ], [ -94.593059792231841, 29.493160167975002 ], [ -94.594249791716337, 29.49287516813742 ], [ -94.5945787921235, 29.49287516811971 ], [ -94.595058792524298, 29.492875167559887 ], [ -94.59543979249348, 29.493113168270746 ], [ -94.596581793012319, 29.494588168000668 ], [ -94.597580792763736, 29.495254168614292 ], [ -94.597199792423893, 29.495920168744878 ], [ -94.596771793210593, 29.496967168317397 ], [ -94.596343793102832, 29.49872816900416 ], [ -94.595909792846072, 29.500030169097162 ], [ -94.595867792898716, 29.500156169064322 ], [ -94.595264792307717, 29.500920169105544 ], [ -94.595153792672178, 29.501060169700786 ], [ -94.594915792428026, 29.502392169490694 ], [ -94.59499479294162, 29.503607170426037 ], [ -94.595058792410654, 29.504582170381848 ], [ -94.595105792981201, 29.505581170280202 ], [ -94.594677792473419, 29.506152170422737 ], [ -94.594772792955681, 29.506438170364746 ], [ -94.594677792914524, 29.507247170436994 ], [ -94.594249792863621, 29.508246171348219 ], [ -94.593583792354025, 29.509198170902117 ], [ -94.59301179237319, 29.509721171344061 ], [ -94.592726792322182, 29.510197171057303 ], [ -94.592250792345268, 29.510387171785645 ], [ -94.592060791951596, 29.511530171801354 ], [ -94.591441791730873, 29.511815171542565 ], [ -94.590680792260358, 29.512957171672408 ], [ -94.589728791920209, 29.513338171776564 ], [ -94.588681791649194, 29.514528172544253 ], [ -94.587967791461054, 29.515575173073799 ], [ -94.586730791565316, 29.516812173266089 ], [ -94.58649279118373, 29.517335173219909 ], [ -94.585397791246095, 29.518430173146601 ], [ -94.584160791018121, 29.51942917344148 ], [ -94.58330379039964, 29.520048173762781 ], [ -94.581780789909971, 29.521428173932989 ], [ -94.580495790063367, 29.522856174656436 ], [ -94.578687789854342, 29.524141174779274 ], [ -94.577069788904097, 29.525806174933575 ], [ -94.575641789067177, 29.52642517502348 ], [ -94.574594788770497, 29.527757176047643 ], [ -94.574119788143207, 29.527805175418187 ], [ -94.57390678819084, 29.527687175728385 ], [ -94.573690788327212, 29.527567175668821 ], [ -94.572881787659682, 29.527805175800339 ], [ -94.572120788165137, 29.527520176062612 ], [ -94.57159678719421, 29.527472176154067 ], [ -94.57140678814531, 29.528329176360181 ], [ -94.570692787373901, 29.529233175769978 ], [ -94.568979787556103, 29.530185176756095 ], [ -94.567266786874384, 29.529994175990193 ], [ -94.566171786552061, 29.530565176848167 ], [ -94.564410786318703, 29.530756176903623 ], [ -94.563078785741482, 29.530756176486925 ], [ -94.561983785008749, 29.53066017666135 ], [ -94.560984784692494, 29.530137177092808 ], [ -94.560080784508571, 29.529947176771632 ], [ -94.559413784732314, 29.530042176885456 ], [ -94.558509784503173, 29.530042176473817 ], [ -94.557034783737677, 29.529090176760867 ], [ -94.555226783579556, 29.528662176685287 ], [ -94.553988783587982, 29.528281176914511 ], [ -94.553417783485955, 29.527472176158678 ], [ -94.552228782553328, 29.52623517608826 ], [ -94.550134781938851, 29.525426175616641 ], [ -94.548896781722064, 29.525235175873227 ], [ -94.547992780988139, 29.523998175670865 ], [ -94.547183781474615, 29.523141175610839 ], [ -94.546088781368184, 29.522713175303412 ], [ -94.5451847808379, 29.522903175677332 ], [ -94.544090780379463, 29.522570175743652 ], [ -94.542329779334239, 29.521381175424558 ], [ -94.541615779378546, 29.521143175064921 ], [ -94.541377779551723, 29.520572175518573 ], [ -94.541139779037252, 29.519953175042819 ], [ -94.540521779455077, 29.520238175181227 ], [ -94.540330779241785, 29.520238174980545 ], [ -94.539759778684626, 29.519429175355253 ], [ -94.538998778657415, 29.51933417524647 ], [ -94.538141779039222, 29.519905175652603 ], [ -94.537618778297329, 29.519572175188834 ], [ -94.536856777949993, 29.518335174920797 ], [ -94.536095777916984, 29.518335175447433 ], [ -94.534762778033681, 29.518049174816941 ], [ -94.533953777146678, 29.517764175139465 ], [ -94.532478777217889, 29.517573174967655 ], [ -94.531526776455621, 29.517240175024231 ], [ -94.530574776684574, 29.517240174880712 ], [ -94.530099776943871, 29.51681217526734 ], [ -94.529385776754737, 29.516717175341324 ], [ -94.526815775576651, 29.516955175100932 ], [ -94.525530775056396, 29.516955174980339 ], [ -94.524911775503114, 29.517240175259317 ], [ -94.523722774858115, 29.517097175409919 ], [ -94.522437774324757, 29.51771617516815 ], [ -94.52129477390676, 29.517764175658012 ], [ -94.520343773990987, 29.517573175639509 ], [ -94.518725773212026, 29.517097175754511 ], [ -94.517583773300984, 29.517097175371795 ], [ -94.51701177263115, 29.517573175459031 ], [ -94.516536773227685, 29.51814417593787 ], [ -94.515441773191412, 29.518811175824816 ], [ -94.515277772782937, 29.518821175433921 ], [ -94.506650770340713, 29.521829176535192 ], [ -94.5064597708691, 29.521957176402047 ], [ -94.50254276943852, 29.523446177065882 ], [ -94.50253276926216, 29.523456177548482 ], [ -94.502465769955833, 29.523476177146922 ], [ -94.500192769104189, 29.52448217784891 ], [ -94.495864768231499, 29.526398178293519 ], [ -94.495883767598869, 29.526839177811887 ], [ -94.495665767576995, 29.527337177894676 ], [ -94.500196769453098, 29.537483180337389 ], [ -94.495103768346766, 29.540770180775436 ], [ -94.488605767014917, 29.547205182894231 ], [ -94.482232765425906, 29.55139118378646 ], [ -94.477954764830955, 29.55305518385742 ], [ -94.476608763986661, 29.553578184544378 ], [ -94.472076763401489, 29.55717918506949 ], [ -94.472422762947872, 29.557185184974273 ], [ -94.472485762865105, 29.557163185144951 ], [ -94.472667763632813, 29.557240184957823 ], [ -94.472919763041844, 29.557372185173435 ], [ -94.473460763840023, 29.557713185625371 ], [ -94.473536763918801, 29.557817185633152 ], [ -94.473718763691082, 29.558153185248734 ], [ -94.473992763603803, 29.558207185156039 ], [ -94.474267763377327, 29.558260185358449 ], [ -94.474455763733289, 29.558297185318448 ], [ -94.474643764225377, 29.558334185013976 ], [ -94.474788764197001, 29.558240185092874 ], [ -94.474863763711298, 29.558207185082644 ], [ -94.474989764483468, 29.558185185385536 ], [ -94.47515976431761, 29.558136185583013 ], [ -94.475341763978136, 29.558042184875077 ], [ -94.475582763959437, 29.557844185596437 ], [ -94.475637763703077, 29.557800184909684 ], [ -94.475775764679398, 29.557668185631453 ], [ -94.475970764247293, 29.557514184860615 ], [ -94.476077764602607, 29.557497185603694 ], [ -94.476115764557974, 29.557497185583699 ], [ -94.476153764608156, 29.557519185097174 ], [ -94.476260764645701, 29.557514185022807 ], [ -94.476329763873437, 29.557475185144639 ], [ -94.476360764571965, 29.557453185270877 ], [ -94.476398764097596, 29.55741518529495 ], [ -94.476486764217697, 29.557222184927145 ], [ -94.476511764819378, 29.557189185409943 ], [ -94.476832764921383, 29.556942184872081 ], [ -94.476914764431186, 29.556892185014696 ], [ -94.476970764789257, 29.556875185242465 ], [ -94.47708476483534, 29.556881185441611 ], [ -94.477203764889254, 29.556809185177908 ], [ -94.477254764803078, 29.55675418512827 ], [ -94.477304764575166, 29.556743184613033 ], [ -94.477360764245134, 29.556749184666032 ], [ -94.477417764053456, 29.55673818523038 ], [ -94.477449765066496, 29.556716184641495 ], [ -94.477499764770442, 29.556633185326895 ], [ -94.47754976500245, 29.556606185322501 ], [ -94.477637764973338, 29.556606184937596 ], [ -94.477700764363149, 29.556584184487519 ], [ -94.477801764166585, 29.556529185139276 ], [ -94.477876764864249, 29.556556184732372 ], [ -94.478021765152008, 29.556556185132308 ], [ -94.478122764242343, 29.556523185055529 ], [ -94.478210764580098, 29.55646318493104 ], [ -94.478241764810676, 29.556430184859213 ], [ -94.478291765041163, 29.556336184619198 ], [ -94.478323764949153, 29.556297184811626 ], [ -94.478511765249181, 29.556132185114532 ], [ -94.478587764970726, 29.556088184648623 ], [ -94.478681765371192, 29.55606118507859 ], [ -94.47900276471357, 29.555934184604357 ], [ -94.47909076486728, 29.555879184470882 ], [ -94.479195765198824, 29.555854184530197 ], [ -94.479254765411184, 29.555841185116925 ], [ -94.479298765464918, 29.555802184526364 ], [ -94.479367765113437, 29.555632184666031 ], [ -94.479417764675816, 29.555560184444044 ], [ -94.47960676510489, 29.555450184315248 ], [ -94.479681764805846, 29.555439184848876 ], [ -94.479813765556059, 29.555395184529207 ], [ -94.479901764939669, 29.555318184335921 ], [ -94.479958765109288, 29.555224184508546 ], [ -94.480021765379121, 29.555158184888995 ], [ -94.480184764987555, 29.555026184896491 ], [ -94.480247764973953, 29.554999184568437 ], [ -94.480285765015978, 29.554988184539532 ], [ -94.480360765246189, 29.554982184368388 ], [ -94.480436765301775, 29.554999184538012 ], [ -94.480499764998086, 29.554993184037837 ], [ -94.48058176533975, 29.554966184753585 ], [ -94.480637765112675, 29.554922184309948 ], [ -94.480662765742807, 29.554883184853068 ], [ -94.480694765437235, 29.554861184380606 ], [ -94.480763765440201, 29.554856184796705 ], [ -94.480832765339073, 29.554834184395755 ], [ -94.480952765198907, 29.55476818414472 ], [ -94.48103476572544, 29.554652184245185 ], [ -94.481166765462831, 29.554558184353397 ], [ -94.481310765688747, 29.554476184740661 ], [ -94.481581765603863, 29.554459184431533 ], [ -94.481637765347159, 29.554476184297069 ], [ -94.481669766005552, 29.554492184356153 ], [ -94.481719765235823, 29.554575184005444 ], [ -94.481738765732032, 29.554591184437786 ], [ -94.481763765488267, 29.554602184805038 ], [ -94.481785765278261, 29.554598184178815 ], [ -94.481801765239155, 29.554586184701883 ], [ -94.481807765632382, 29.554509184214169 ], [ -94.481826765517681, 29.554465184378742 ], [ -94.481876765979138, 29.554404183987629 ], [ -94.481964765970204, 29.554327184328294 ], [ -94.482266765953369, 29.554228183986837 ], [ -94.482461766198966, 29.554184184411536 ], [ -94.482851765783408, 29.554030184060803 ], [ -94.482990765423182, 29.553958184590204 ], [ -94.483210765477637, 29.553876184526629 ], [ -94.483285765672107, 29.553870184552078 ], [ -94.483317766344101, 29.55388118457558 ], [ -94.483342765675687, 29.553914184141242 ], [ -94.483386766054082, 29.553936183865904 ], [ -94.48341876638473, 29.553931184458524 ], [ -94.483587765991956, 29.553809183828655 ], [ -94.483682765892681, 29.553788184021656 ], [ -94.483732766542147, 29.553815183706938 ], [ -94.483782766422138, 29.553848184360184 ], [ -94.483808765647581, 29.553886183842266 ], [ -94.483808766274393, 29.553936183882207 ], [ -94.483826765838273, 29.554002184531644 ], [ -94.483876765723281, 29.554039184314998 ], [ -94.483896766245053, 29.554046184188859 ], [ -94.483934766068671, 29.55404718426227 ], [ -94.484368766336516, 29.554062184047655 ], [ -94.484688766517323, 29.554035184439762 ], [ -94.484934766316272, 29.554024183742886 ], [ -94.485009766642563, 29.553974183819154 ], [ -94.485091766170598, 29.553957183790406 ], [ -94.485280766205264, 29.553952183653259 ], [ -94.485349766040287, 29.55396818435889 ], [ -94.485443766799108, 29.55392418392195 ], [ -94.485481766338239, 29.553924183980897 ], [ -94.485550766604533, 29.553946183801244 ], [ -94.485739766969729, 29.553908183795382 ], [ -94.485846766430242, 29.553842183667179 ], [ -94.485934766837019, 29.55384218423961 ], [ -94.486028766268674, 29.553897183757275 ], [ -94.486160766627833, 29.55390218404056 ], [ -94.486204766603663, 29.553886183939845 ], [ -94.486299766769775, 29.553792184172583 ], [ -94.486330766371481, 29.553792184237523 ], [ -94.486431766423081, 29.553841184039815 ], [ -94.486638766480013, 29.553852184079286 ], [ -94.486657766479325, 29.553830184014863 ], [ -94.486689766643678, 29.553775183853322 ], [ -94.48672676659595, 29.553759183848072 ], [ -94.486846766478109, 29.553731183644675 ], [ -94.486965766708849, 29.553720183748101 ], [ -94.486997767129736, 29.553704183755297 ], [ -94.487079766461122, 29.553627184182979 ], [ -94.487135767065197, 29.553605184245207 ], [ -94.487186766785229, 29.55356118395013 ], [ -94.487280766548238, 29.553522183665265 ], [ -94.487462767214325, 29.553511184298635 ], [ -94.487651767305877, 29.553450183489776 ], [ -94.487871767363188, 29.553412183895009 ], [ -94.488374767528313, 29.55323018410061 ], [ -94.489098767615829, 29.553015183566828 ], [ -94.489268767415496, 29.552938183883267 ], [ -94.489588767211913, 29.552839184131031 ], [ -94.489651767427816, 29.552790183644415 ], [ -94.489689767127999, 29.552740183496429 ], [ -94.489689767962574, 29.552702183790945 ], [ -94.489639767140204, 29.552674184080715 ], [ -94.489601767417426, 29.552619183805799 ], [ -94.489607767059496, 29.552460183538379 ], [ -94.489664768074974, 29.552333183407889 ], [ -94.489714768030069, 29.552284184048538 ], [ -94.489783767268079, 29.552240183263983 ], [ -94.489858767173402, 29.55221718342316 ], [ -94.490041767875908, 29.552195183935435 ], [ -94.490261767285801, 29.552113183376161 ], [ -94.490374767461617, 29.552096183895884 ], [ -94.490481767287065, 29.552118183480676 ], [ -94.490557767909948, 29.552201183553805 ], [ -94.490601767898042, 29.552212183850799 ], [ -94.490670768196068, 29.552195183556435 ], [ -94.490777768216176, 29.552113183896385 ], [ -94.490871768336476, 29.552085183617791 ], [ -94.490896768336086, 29.552085183452824 ], [ -94.490972767801026, 29.552063183770354 ], [ -94.491016767515703, 29.552041183830777 ], [ -94.491079767644777, 29.551914183221925 ], [ -94.491255768020608, 29.551755183486758 ], [ -94.491356768419337, 29.551727183294599 ], [ -94.491519767649734, 29.551650183148073 ], [ -94.491632768244827, 29.551623183381267 ], [ -94.491714768402872, 29.551584183561321 ], [ -94.491758767678007, 29.551513183024461 ], [ -94.491821767703698, 29.551463183798965 ], [ -94.491921767888314, 29.551452183602851 ], [ -94.49208576840951, 29.5513801836784 ], [ -94.492374768501534, 29.551188183087397 ], [ -94.492531768332526, 29.551122183265868 ], [ -94.492626767951919, 29.551061182906299 ], [ -94.492947767885468, 29.550924183212228 ], [ -94.493299768678042, 29.550797183261402 ], [ -94.493324768866813, 29.550802183190953 ], [ -94.493399768513456, 29.550857183557397 ], [ -94.493676768082267, 29.550758183087176 ], [ -94.493871768552367, 29.550698183241558 ], [ -94.493991768182795, 29.550681182830932 ], [ -94.494035768521485, 29.550665182952187 ], [ -94.494091768550774, 29.550632183160893 ], [ -94.494148768531048, 29.550571183199249 ], [ -94.494431768887679, 29.550521183320186 ], [ -94.494701768836237, 29.550406183014772 ], [ -94.494978768489361, 29.550224182698621 ], [ -94.495060769073007, 29.550219183244586 ], [ -94.495135768690645, 29.550191182694963 ], [ -94.495242768584177, 29.550120182945356 ], [ -94.495330769132622, 29.550081182715285 ], [ -94.495405768444215, 29.550062182599483 ], [ -94.495469769131205, 29.550048182593297 ], [ -94.495576769321431, 29.549976183033294 ], [ -94.495645769042753, 29.549943182686299 ], [ -94.495714768967346, 29.549877183158802 ], [ -94.495903769465627, 29.549734183334472 ], [ -94.496173768795913, 29.549498183258365 ], [ -94.496336768843676, 29.549288183116047 ], [ -94.496349769216849, 29.549200182694136 ], [ -94.496292768765002, 29.54909618234926 ], [ -94.496292769493309, 29.549074182938785 ], [ -94.496311769200631, 29.549057183001665 ], [ -94.496336769451275, 29.549057182756293 ], [ -94.496431769110941, 29.549057183001825 ], [ -94.496487769155294, 29.549041182963908 ], [ -94.496512768720478, 29.549024182854048 ], [ -94.496544768842043, 29.54898018293132 ], [ -94.496575769006441, 29.548848182281766 ], [ -94.496688768962116, 29.548656182601864 ], [ -94.496801769136169, 29.548430182319013 ], [ -94.496833769485789, 29.548331182850436 ], [ -94.496902769778529, 29.54819418212416 ], [ -94.496940769277955, 29.548150182837766 ], [ -94.497103769596208, 29.54799018260098 ], [ -94.497166768883105, 29.547940182762169 ], [ -94.497310769504566, 29.54779218271393 ], [ -94.49738076963736, 29.547550182674051 ], [ -94.497411769840454, 29.547484181952054 ], [ -94.497518769486348, 29.547352182706238 ], [ -94.497568769160267, 29.547247182408086 ], [ -94.497662769692496, 29.547093181944597 ], [ -94.497643769847457, 29.547038181854187 ], [ -94.497593769844599, 29.547022182566383 ], [ -94.497574769597378, 29.546989181885817 ], [ -94.497562769035966, 29.546957182646963 ], [ -94.497568769683568, 29.546939182206881 ], [ -94.497588769526544, 29.546934182560538 ], [ -94.497681769497078, 29.546950182603869 ], [ -94.4977317695963, 29.546917182465315 ], [ -94.497863769900775, 29.5466371820165 ], [ -94.497888769087538, 29.546494182426581 ], [ -94.497863769706683, 29.546373182459597 ], [ -94.49787676912193, 29.546290182387267 ], [ -94.497937769304556, 29.546201182461427 ], [ -94.497945769864955, 29.546191181758182 ], [ -94.497945769086499, 29.545949181601365 ], [ -94.497976769866455, 29.54578918202515 ], [ -94.498070769521078, 29.545569182044275 ], [ -94.498064769180942, 29.545498181585401 ], [ -94.498064769762038, 29.545157182159791 ], [ -94.498127768921677, 29.544926182239358 ], [ -94.498152769802346, 29.544876181830382 ], [ -94.498183769616261, 29.544827181640127 ], [ -94.498246769418856, 29.544794182076789 ], [ -94.498372769411972, 29.544755181944584 ], [ -94.498504769312845, 29.54470018212502 ], [ -94.498598769672213, 29.544607181538254 ], [ -94.49864876969319, 29.544541181927308 ], [ -94.498699769827056, 29.54450218163073 ], [ -94.49877476955244, 29.544469181364324 ], [ -94.498955769527399, 29.544445181334648 ], [ -94.499107769283071, 29.544425181721159 ], [ -94.499359769410304, 29.544480181360647 ], [ -94.499491769296952, 29.544469181266457 ], [ -94.499718769587631, 29.544480181263523 ], [ -94.50000576995194, 29.544411181300845 ], [ -94.500357770275357, 29.544356181871283 ], [ -94.500474770438885, 29.544325181286016 ], [ -94.500955770427424, 29.544202181582612 ], [ -94.501421770764566, 29.543988181089244 ], [ -94.50188076988006, 29.543894181780878 ], [ -94.502201770356422, 29.543856181713689 ], [ -94.502496770251682, 29.543834181325028 ], [ -94.502704770133874, 29.543884181865817 ], [ -94.503069770169134, 29.543906181773266 ], [ -94.503295770675848, 29.543884181811539 ], [ -94.50348077059229, 29.543852181039085 ], [ -94.503905770610572, 29.543780181021905 ], [ -94.504138770661356, 29.543780181508254 ], [ -94.504314771084935, 29.543835181077373 ], [ -94.504648771073931, 29.543846180957203 ], [ -94.505547771404167, 29.543797181633515 ], [ -94.506554771967217, 29.543687180878347 ], [ -94.506981772008118, 29.543622181161147 ], [ -94.507472772239041, 29.543506180799987 ], [ -94.507843771703477, 29.543457181042662 ], [ -94.50863077221095, 29.543386181494107 ], [ -94.509139772375022, 29.543375181154598 ], [ -94.509787772800323, 29.543177181390856 ], [ -94.510353772581936, 29.543018181317642 ], [ -94.510536772625201, 29.542946180914502 ], [ -94.510643773054795, 29.542913180656623 ], [ -94.510932772619967, 29.543007181093252 ], [ -94.511058772435248, 29.542996181294882 ], [ -94.511133772775793, 29.542952180921649 ], [ -94.511177772764668, 29.542859180528584 ], [ -94.511253773042768, 29.542831181351055 ], [ -94.51139877323439, 29.542859180861157 ], [ -94.511492772411643, 29.542853181183709 ], [ -94.511618772444876, 29.542782181076067 ], [ -94.511813772365784, 29.542589180906084 ], [ -94.511939772674651, 29.542551180451635 ], [ -94.512064772607133, 29.542545180978976 ], [ -94.51231077337556, 29.542606180553804 ], [ -94.512448773230787, 29.54255118090045 ], [ -94.512631772701937, 29.542458180602701 ], [ -94.512807772622381, 29.542414180886304 ], [ -94.513165773303527, 29.542348181076349 ], [ -94.513495772760706, 29.54227918094351 ], [ -94.513750773799302, 29.542227181156612 ], [ -94.514077773662976, 29.542216180714203 ], [ -94.514543773309583, 29.542051180842574 ], [ -94.515053773174671, 29.5419361807344 ], [ -94.515480773545718, 29.541810180286646 ], [ -94.515864773389637, 29.541667180183062 ], [ -94.516292774366178, 29.541551180175173 ], [ -94.516795773994986, 29.541431180253301 ], [ -94.517072774645129, 29.541343180302317 ], [ -94.517368774749087, 29.541310180429569 ], [ -94.517632774825998, 29.541304180339662 ], [ -94.517871774651738, 29.541227180074799 ], [ -94.518154774170497, 29.54116718069465 ], [ -94.518412774641874, 29.541167180247569 ], [ -94.518676774392674, 29.541189180177717 ], [ -94.519192774408481, 29.541118180123277 ], [ -94.519406775161769, 29.541046180350506 ], [ -94.519695775074368, 29.541052179943836 ], [ -94.519940774570088, 29.541068180705306 ], [ -94.520179775486326, 29.541069179854933 ], [ -94.520356774993644, 29.541041180549033 ], [ -94.520437774567412, 29.54100318027675 ], [ -94.520569775551479, 29.540909180096822 ], [ -94.520777775010643, 29.54083817979598 ], [ -94.521117774944599, 29.540805180554788 ], [ -94.521538775198877, 29.540821179879213 ], [ -94.521897775418395, 29.540849180520592 ], [ -94.522186775014717, 29.5409321803638 ], [ -94.522670775662974, 29.54092118006686 ], [ -94.523306775609413, 29.541053180092302 ], [ -94.523494776120913, 29.541130179782179 ], [ -94.523576775793273, 29.541246179877515 ], [ -94.523614775817734, 29.541532180605465 ], [ -94.523582775552214, 29.541790180182943 ], [ -94.523525776121929, 29.542137180793283 ], [ -94.523475776198623, 29.542351180398686 ], [ -94.523431776282209, 29.542665180332996 ], [ -94.523330775446226, 29.542709180839051 ], [ -94.523305775564978, 29.542780180778454 ], [ -94.523311775386603, 29.543033180966134 ], [ -94.523374775908707, 29.543099181039675 ], [ -94.523380776207745, 29.54328618070841 ], [ -94.523330776284695, 29.543435181090803 ], [ -94.523311776069448, 29.543556180968068 ], [ -94.523317775595643, 29.543660180415813 ], [ -94.522845775324768, 29.544729180875521 ], [ -94.522373776032893, 29.545799181149857 ], [ -94.522303775538177, 29.546349181068862 ], [ -94.522221776109006, 29.547323181192809 ], [ -94.522309775695092, 29.547917181191508 ], [ -94.522642776307933, 29.549177181540585 ], [ -94.522755776259572, 29.549787182129155 ], [ -94.522887776214915, 29.55037018248786 ], [ -94.523107775658431, 29.550948182658882 ], [ -94.523308775726463, 29.551350182542905 ], [ -94.523340776320254, 29.551383182037437 ], [ -94.523478776708231, 29.551718182259222 ], [ -94.523843775917243, 29.55213118208102 ], [ -94.524094776832726, 29.552444182277203 ], [ -94.524207776052677, 29.552510182353611 ], [ -94.524289776486768, 29.552549182358955 ], [ -94.524534776889283, 29.552543182661516 ], [ -94.524641776462275, 29.55260418239315 ], [ -94.524792777016486, 29.552637182971644 ], [ -94.525025776815255, 29.552610182816853 ], [ -94.525208776933979, 29.552560182238825 ], [ -94.525201777017372, 29.552467182687323 ], [ -94.52520877629081, 29.552324182810356 ], [ -94.525095776907804, 29.552071182155572 ], [ -94.525000776626712, 29.551829182093968 ], [ -94.524988777045678, 29.551740182223579 ], [ -94.525007776905809, 29.551669182593688 ], [ -94.525025777011081, 29.551636182207158 ], [ -94.525114776519928, 29.551625181872289 ], [ -94.525115777054225, 29.551643182049126 ], [ -94.52517077663947, 29.551812182305135 ], [ -94.525289776896273, 29.55212618227301 ], [ -94.525472776533377, 29.552395182520314 ], [ -94.525660776989184, 29.552604182491244 ], [ -94.525818776611658, 29.552747182814475 ], [ -94.52588177681649, 29.552830182740653 ], [ -94.525918777423257, 29.553011182557995 ], [ -94.52598777673343, 29.553182182242086 ], [ -94.526151776853453, 29.55324218252473 ], [ -94.526396777025909, 29.553391182322368 ], [ -94.526692776687071, 29.553490183075301 ], [ -94.526918777647438, 29.553622183116804 ], [ -94.527239777003558, 29.55398018263806 ], [ -94.527409777129137, 29.554200183128348 ], [ -94.52752877700965, 29.554299182916342 ], [ -94.527597777305914, 29.554431182837387 ], [ -94.52764177719078, 29.554612183174957 ], [ -94.527906777668065, 29.555025182730496 ], [ -94.528075777724581, 29.555162183230873 ], [ -94.528295777398625, 29.555322183242215 ], [ -94.528459777493509, 29.555663182817856 ], [ -94.528691777600514, 29.556103183459786 ], [ -94.529144778313906, 29.556499183281904 ], [ -94.529220777592471, 29.556565183075435 ], [ -94.529616777885508, 29.556813183481943 ], [ -94.529968778169916, 29.55695118308256 ], [ -94.53030277812374, 29.557110183621937 ], [ -94.530736778017413, 29.557402183248886 ], [ -94.530918778350241, 29.557429183452935 ], [ -94.531025778083531, 29.557523183659555 ], [ -94.531107778993999, 29.557682183098873 ], [ -94.531258778994797, 29.557941183675428 ], [ -94.531717778544916, 29.558282183454523 ], [ -94.531893778626923, 29.558392183683178 ], [ -94.532000778346443, 29.558398183787126 ], [ -94.532245778774495, 29.558266183771934 ], [ -94.532340778821862, 29.558293183112433 ], [ -94.532428778449017, 29.558376183315477 ], [ -94.532623779018166, 29.558634183782626 ], [ -94.53283077942875, 29.558799183377065 ], [ -94.53298877911952, 29.55883218328351 ], [ -94.533151779324683, 29.558794183387903 ], [ -94.533384778741819, 29.55877718366165 ], [ -94.533636779682624, 29.558799183108466 ], [ -94.533881778959667, 29.559014183584594 ], [ -94.534321778908449, 29.559311183912634 ], [ -94.534749779346782, 29.55952018371061 ], [ -94.534912779737951, 29.55964718399219 ], [ -94.535120780045403, 29.559740183387891 ], [ -94.535403779328149, 29.559949183894737 ], [ -94.53555477929909, 29.560153183979331 ], [ -94.535636779560093, 29.560219183381431 ], [ -94.535806780294195, 29.560224184169886 ], [ -94.536007780220942, 29.560191184053537 ], [ -94.536089779613505, 29.560213184045693 ], [ -94.536234779594182, 29.560428183874933 ], [ -94.536454780330757, 29.560670183934405 ], [ -94.536762779871637, 29.560797183472552 ], [ -94.536944779730447, 29.561033183650455 ], [ -94.537215780060919, 29.561479184291816 ], [ -94.537347779943019, 29.561727183539208 ], [ -94.537498780470315, 29.562012184234156 ], [ -94.537906780152511, 29.562458183959553 ], [ -94.538152780376507, 29.562606184509594 ], [ -94.538466780505502, 29.562661184212281 ], [ -94.538737780407004, 29.562722184092177 ], [ -94.539051780603742, 29.563047184657972 ], [ -94.53940478066059, 29.563690184624779 ], [ -94.539787781065272, 29.564086184701384 ], [ -94.540001781500422, 29.564477184914431 ], [ -94.540240781260707, 29.565329184395541 ], [ -94.540299780868139, 29.56548318434012 ], [ -94.540510780924734, 29.566028184981601 ], [ -94.540705781481776, 29.566424185199811 ], [ -94.540756780943767, 29.566759185224495 ], [ -94.540900781162833, 29.567266185405057 ], [ -94.541139781070783, 29.567601185427232 ], [ -94.541322782091768, 29.567882185144715 ], [ -94.541649781870774, 29.568586185662415 ], [ -94.542209782265203, 29.569070185081017 ], [ -94.542523781675641, 29.569438185295709 ], [ -94.542863782449686, 29.569961185211852 ], [ -94.543102782515348, 29.57013718590332 ], [ -94.543347781928318, 29.570208185675241 ], [ -94.543410782516858, 29.570302185635093 ], [ -94.543454782135541, 29.570428186003259 ], [ -94.543498782746525, 29.570483185369369 ], [ -94.54369378189007, 29.57058318519103 ], [ -94.544467782371939, 29.571342186126497 ], [ -94.544845782630816, 29.571738186132773 ], [ -94.545115782846949, 29.571892185615276 ], [ -94.545298782598991, 29.572134185960088 ], [ -94.545650783215095, 29.572299185911326 ], [ -94.545914782793773, 29.572508186162551 ], [ -94.546298783237475, 29.572585186179122 ], [ -94.546719782829911, 29.572761186381179 ], [ -94.54746278353069, 29.572926186424418 ], [ -94.547915783845895, 29.573091186039193 ], [ -94.548217783761743, 29.573102185726182 ], [ -94.548399783219821, 29.57308018611112 ], [ -94.54899178382172, 29.573201185661322 ], [ -94.549916784171813, 29.573344185612982 ], [ -94.550734784782122, 29.573614185910209 ], [ -94.551218784553058, 29.573812186237948 ], [ -94.551493784182412, 29.573952186118568 ], [ -94.551564784537632, 29.573988185682282 ], [ -94.552149784853995, 29.574175185811953 ], [ -94.552294784292684, 29.574043186320161 ], [ -94.552388784377555, 29.57405418629919 ], [ -94.552527784315728, 29.574125186195751 ], [ -94.552558785273973, 29.57416918572547 ], [ -94.552546784773853, 29.574213186226181 ], [ -94.552609784546888, 29.574257186324406 ], [ -94.552665784780345, 29.574268186391105 ], [ -94.552741784526901, 29.574197185909359 ], [ -94.552848784805903, 29.574158185837859 ], [ -94.552892785301268, 29.574186186140754 ], [ -94.552911784381536, 29.574219186088424 ], [ -94.552980784739802, 29.574224185902541 ], [ -94.55305578534302, 29.574191186002782 ], [ -94.553099785246985, 29.574186186052618 ], [ -94.553162784546728, 29.574235186275224 ], [ -94.553200784842346, 29.574279186348054 ], [ -94.553276785203494, 29.574285186270572 ], [ -94.553395785276862, 29.574312186020141 ], [ -94.553464784877931, 29.574362186510488 ], [ -94.553559784615445, 29.574362186033603 ], [ -94.553666784547971, 29.574340186504454 ], [ -94.553836784931462, 29.574329186259686 ], [ -94.55402478486927, 29.574351185752398 ], [ -94.554106785621116, 29.574340185757066 ], [ -94.554150785336361, 29.574279185965139 ], [ -94.554194785547523, 29.574263186217486 ], [ -94.554509785465768, 29.574263186259067 ], [ -94.554962785866863, 29.5742411861706 ], [ -94.555302785241864, 29.574296186382362 ], [ -94.555585785628452, 29.574395186143761 ], [ -94.555723785338159, 29.574483185786075 ], [ -94.555943785773394, 29.574533185773213 ], [ -94.556093785717366, 29.574444186007224 ], [ -94.556176786039956, 29.574395185832994 ], [ -94.556441786170325, 29.574340185733099 ], [ -94.556604785993457, 29.574329185923222 ], [ -94.557170786340279, 29.574412186247496 ], [ -94.557303785988282, 29.574489185696891 ], [ -94.557384786511605, 29.5745661856886 ], [ -94.557642785895908, 29.574582186021583 ], [ -94.558001785827059, 29.574593186121739 ], [ -94.558133786221461, 29.574577186355846 ], [ -94.558567786754693, 29.574560186210608 ], [ -94.558957786305044, 29.574588186083297 ], [ -94.559178786103445, 29.574544186001624 ], [ -94.55991478712977, 29.574511186138785 ], [ -94.560543786470291, 29.574445185613563 ], [ -94.560971786890065, 29.574439185601925 ], [ -94.561751787394854, 29.574406186154746 ], [ -94.562229786760852, 29.574313186169785 ], [ -94.56251278716654, 29.574340185451348 ], [ -94.562682787349075, 29.574324185337208 ], [ -94.563016787118514, 29.574191185670074 ], [ -94.563872788087281, 29.574037185626441 ], [ -94.564325788226412, 29.57401518552803 ], [ -94.564683788364931, 29.573933185849391 ], [ -94.565514787662693, 29.573718185329739 ], [ -94.565646787642621, 29.573614185649227 ], [ -94.565715788218512, 29.573515185635014 ], [ -94.565797788155848, 29.573471185700562 ], [ -94.565891787975062, 29.573460185463688 ], [ -94.566030788701624, 29.57352618514139 ], [ -94.566143788609438, 29.573542185495192 ], [ -94.566571787854912, 29.573399185241527 ], [ -94.566709788448449, 29.573317185472149 ], [ -94.566860787981653, 29.57320118534922 ], [ -94.567055788796566, 29.573102185737948 ], [ -94.56732678843639, 29.573124185721149 ], [ -94.567489788727045, 29.573113185406228 ], [ -94.567507788083745, 29.573114185637337 ], [ -94.56755278860318, 29.573119185113356 ], [ -94.567584788530539, 29.57322918521535 ], [ -94.567590788225544, 29.573333184965019 ], [ -94.567697788151975, 29.57337718520532 ], [ -94.567735788681077, 29.5733721856847 ], [ -94.56778678833841, 29.57336818584826 ], [ -94.567856788267164, 29.573360185556865 ], [ -94.567871789107613, 29.573354185317339 ], [ -94.568024788242056, 29.573256184947269 ], [ -94.568188788732257, 29.573179185307193 ], [ -94.568471788998153, 29.573130185705477 ], [ -94.568723789360604, 29.573069185032761 ], [ -94.568930789273423, 29.573080185204812 ], [ -94.569031789086594, 29.573058185094183 ], [ -94.569264789449051, 29.572893185507635 ], [ -94.56939678905735, 29.572855184962826 ], [ -94.569805789468887, 29.572937185311403 ], [ -94.5698557887292, 29.573036184881758 ], [ -94.569830789060532, 29.573174185420765 ], [ -94.569908788711331, 29.573211185261023 ], [ -94.569968788788785, 29.573240185700016 ], [ -94.570063789037391, 29.57324018529355 ], [ -94.570138789175189, 29.573240185018093 ], [ -94.570226789761932, 29.573218184977442 ], [ -94.570459789231066, 29.573014185243039 ], [ -94.570522789001615, 29.572865185282289 ], [ -94.570509789318436, 29.57275518511215 ], [ -94.570421789551006, 29.572695185601948 ], [ -94.570415788912982, 29.572585185208517 ], [ -94.570453789575637, 29.572536185550291 ], [ -94.570516789251997, 29.572453185561418 ], [ -94.570585788840432, 29.57233818518943 ], [ -94.570541789777337, 29.572282184946992 ], [ -94.570440789305437, 29.572189185489499 ], [ -94.570434789777337, 29.572112185113532 ], [ -94.570509789343788, 29.571969185274629 ], [ -94.570704789150255, 29.571782185317019 ], [ -94.571252789596542, 29.571573185102103 ], [ -94.572095790180924, 29.571210184909898 ], [ -94.572730789996868, 29.570962184824626 ], [ -94.573781789822746, 29.570368184285432 ], [ -94.574642790158748, 29.569921184142977 ], [ -94.575046790439586, 29.569713184589109 ], [ -94.575813790389233, 29.569306184626914 ], [ -94.576467791094686, 29.56890518393616 ], [ -94.577071790916676, 29.568553183784964 ], [ -94.577310790852678, 29.568366184474772 ], [ -94.577738791099264, 29.568278184416538 ], [ -94.578053790829713, 29.568096183916772 ], [ -94.578279790734996, 29.567986183895322 ], [ -94.578550791036363, 29.567810183609538 ], [ -94.579059791825884, 29.567601183867158 ], [ -94.579544791914159, 29.567447183871046 ], [ -94.579801791372759, 29.567353183805881 ], [ -94.580104791636671, 29.567216183523019 ], [ -94.580361792023453, 29.567122183347081 ], [ -94.58047579164058, 29.567029183545632 ], [ -94.580626791653287, 29.566946183834542 ], [ -94.580802792053802, 29.566946184057297 ], [ -94.580877792026513, 29.566973183341805 ], [ -94.580947791861988, 29.56706718374372 ], [ -94.580978791801186, 29.567183183347037 ], [ -94.581022791892735, 29.567237183781877 ], [ -94.581104792209373, 29.567238183549435 ], [ -94.581129792271767, 29.567232183652749 ], [ -94.581160792305099, 29.567220183486114 ], [ -94.581192792374011, 29.567210183822439 ], [ -94.581305791902082, 29.567127183532662 ], [ -94.581355791945086, 29.56701218398613 ], [ -94.581399792051272, 29.566852183272328 ], [ -94.581437792078304, 29.566808183734203 ], [ -94.581462791797335, 29.566742183842248 ], [ -94.58150679205373, 29.566709183287671 ], [ -94.581544791511433, 29.566698183615745 ], [ -94.581626791571708, 29.566693183167082 ], [ -94.581928792079708, 29.566687183873029 ], [ -94.582022791878018, 29.566621183836876 ], [ -94.582079792306658, 29.566533183294823 ], [ -94.582110791837536, 29.566506183598449 ], [ -94.582217791748434, 29.566462183703809 ], [ -94.582343791931521, 29.566462183204901 ], [ -94.582526791792844, 29.566291183666944 ], [ -94.582595791743287, 29.566242183671886 ], [ -94.583211792394067, 29.565983183782148 ], [ -94.583325792293238, 29.566033183338131 ], [ -94.583369792754482, 29.566033183004205 ], [ -94.583438792293606, 29.566011183478818 ], [ -94.583702792563727, 29.565889183008515 ], [ -94.583721792684955, 29.565796183225874 ], [ -94.583759792817233, 29.565736183336288 ], [ -94.583941792885511, 29.56563118303815 ], [ -94.584130792564721, 29.565548183048882 ], [ -94.584180792455356, 29.565548182846815 ], [ -94.584224792425346, 29.565565183289081 ], [ -94.584300792354469, 29.565570183362841 ], [ -94.584576792744684, 29.565466183537023 ], [ -94.584904792808388, 29.565444183210666 ], [ -94.584960792533167, 29.565422183466133 ], [ -94.585004793088814, 29.565383182823105 ], [ -94.58508679266842, 29.565196183395734 ], [ -94.585256793105984, 29.565114183412707 ], [ -94.585444793056681, 29.565037182824327 ], [ -94.585885792926916, 29.564921183395061 ], [ -94.586281793279994, 29.564855183390055 ], [ -94.58640779325323, 29.56478918298313 ], [ -94.586464792868369, 29.564728183357488 ], [ -94.58661579270742, 29.564624183347547 ], [ -94.586684793526288, 29.564596183245772 ], [ -94.586885792772478, 29.564585183313991 ], [ -94.586954792743327, 29.564569182837008 ], [ -94.587042793658412, 29.564497182882029 ], [ -94.587149793730035, 29.564387183039045 ], [ -94.587256793224356, 29.564343182836168 ], [ -94.587307793148085, 29.564332182628331 ], [ -94.587344793732441, 29.56434918310795 ], [ -94.587376793552451, 29.564387182957653 ], [ -94.587470793457896, 29.564464182585859 ], [ -94.587716793381489, 29.564558183339315 ], [ -94.587760793168982, 29.564558182462775 ], [ -94.587835793169262, 29.564530182904377 ], [ -94.587848793632872, 29.564497183139515 ], [ -94.587848793093983, 29.564393183171639 ], [ -94.587867793114839, 29.564365183095596 ], [ -94.58791179345603, 29.564338183123592 ], [ -94.587992793911781, 29.564305182475781 ], [ -94.58820679374071, 29.564316182983365 ], [ -94.588313793261889, 29.564255182709392 ], [ -94.588345794054291, 29.564222183173182 ], [ -94.588420794000271, 29.564161182534878 ], [ -94.588508793909583, 29.564145182420194 ], [ -94.589074793461052, 29.563914182852226 ], [ -94.589206793433874, 29.563831182650961 ], [ -94.58933979394476, 29.563677182759477 ], [ -94.589401793912359, 29.563639182593029 ], [ -94.589490793689066, 29.563617182436339 ], [ -94.589653793832369, 29.563606182756004 ], [ -94.589691793511392, 29.563573183043999 ], [ -94.589703793525572, 29.56354018262191 ], [ -94.589691793928438, 29.563463182354759 ], [ -94.589716793716391, 29.563430182732819 ], [ -94.589747793471588, 29.563413182976863 ], [ -94.589785793587666, 29.563424182452032 ], [ -94.589804794223753, 29.563490182228584 ], [ -94.589854793791261, 29.563512182234856 ], [ -94.589949793659017, 29.563512182439887 ], [ -94.590225793521682, 29.563435182960653 ], [ -94.590465793601268, 29.563303182714449 ], [ -94.590565794176456, 29.563160182550838 ], [ -94.59071679383807, 29.563182182076403 ], [ -94.590829793920932, 29.56318218293509 ], [ -94.591297794127158, 29.562872182412839 ], [ -94.591427794778696, 29.562786182408875 ], [ -94.591685794226549, 29.562714182791513 ], [ -94.591817794717898, 29.562670182559827 ], [ -94.591911794913017, 29.562610182070127 ], [ -94.592333794562251, 29.562511182133495 ], [ -94.592591794816883, 29.562423182040746 ], [ -94.592647795096525, 29.562417182499747 ], [ -94.592767794806647, 29.562455182410147 ], [ -94.592905794724771, 29.562455182107531 ], [ -94.592949794580733, 29.562439182569889 ], [ -94.592974794634415, 29.562400182497662 ], [ -94.5929877947883, 29.562345182690276 ], [ -94.593056794354368, 29.562285182673122 ], [ -94.593497794434754, 29.562257182357552 ], [ -94.593968795378387, 29.562103182038044 ], [ -94.594069795235015, 29.562048181753479 ], [ -94.594239794889205, 29.562004182587536 ], [ -94.594906794919837, 29.561905182490815 ], [ -94.594969795148828, 29.561877181891848 ], [ -94.595296795039715, 29.561784182302333 ], [ -94.595528795810978, 29.561778181751272 ], [ -94.595667795416162, 29.561789181997682 ], [ -94.596183795959533, 29.561751182252685 ], [ -94.596629795125935, 29.561794181892495 ], [ -94.596749795203039, 29.56188818160993 ], [ -94.596881795498973, 29.562025182297599 ], [ -94.596900795367461, 29.56210218205052 ], [ -94.597148796016555, 29.562091182415038 ], [ -94.597395795866518, 29.562080181873338 ], [ -94.59751379579906, 29.562075182492794 ], [ -94.597630795725166, 29.56206918215716 ], [ -94.5977837963094, 29.561888181907541 ], [ -94.597860796182147, 29.561799182111514 ], [ -94.597976795574525, 29.561662182380491 ], [ -94.598177795985066, 29.561453181547733 ], [ -94.59831579607598, 29.561216181935244 ], [ -94.598818796347601, 29.560947181891269 ], [ -94.599020796546611, 29.560864182180211 ], [ -94.599183795986804, 29.560771181762728 ], [ -94.599303796706906, 29.560661181615938 ], [ -94.599385796328974, 29.560534182005274 ], [ -94.599668796615092, 29.560369181729403 ], [ -94.599856796294134, 29.560281181987392 ], [ -94.600014796348177, 29.560226181420731 ], [ -94.600202796680676, 29.560215181878622 ], [ -94.600278796350139, 29.560154181581197 ], [ -94.600328796122753, 29.560039181894453 ], [ -94.600441796671845, 29.559973181562039 ], [ -94.600724796882986, 29.559984181762065 ], [ -94.600844797148127, 29.559918181164292 ], [ -94.600951796558832, 29.559764181654366 ], [ -94.601360796775609, 29.55955418131699 ], [ -94.601536797166673, 29.559433181168615 ], [ -94.601592796548445, 29.559422181186751 ], [ -94.601649796673939, 29.559466181786078 ], [ -94.601731797313974, 29.559466181331526 ], [ -94.602177797393779, 29.559329181067646 ], [ -94.602322797014978, 29.559246181531325 ], [ -94.602341796814983, 29.559202181670319 ], [ -94.602423797081812, 29.559136181294516 ], [ -94.602479796511929, 29.559120181509101 ], [ -94.602662797259853, 29.559098180971127 ], [ -94.602750797338672, 29.559070180978999 ], [ -94.602781796873913, 29.559048181561575 ], [ -94.602921796698467, 29.559005181342368 ], [ -94.602945797381523, 29.558998181189789 ], [ -94.603253796949915, 29.558960180822233 ], [ -94.603555797124599, 29.55890518104075 ], [ -94.60398379711097, 29.558767181225278 ], [ -94.604083797873756, 29.558673180904023 ], [ -94.604316797217237, 29.558613181310719 ], [ -94.604473797210574, 29.558591181296478 ], [ -94.604568797190282, 29.558574181127415 ], [ -94.604932797822926, 29.558415180914864 ], [ -94.605033798004442, 29.558382181176544 ], [ -94.605146797509846, 29.558371180723306 ], [ -94.605322797204948, 29.558404181374971 ], [ -94.605429797485257, 29.558393181234258 ], [ -94.605675798209191, 29.558343181149752 ], [ -94.605750797756329, 29.558299181191082 ], [ -94.605832798262696, 29.558277181447977 ], [ -94.606021797591112, 29.558249181340116 ], [ -94.606354798199064, 29.558238180975327 ], [ -94.60646779850714, 29.558222180908835 ], [ -94.606593798394371, 29.558178180554201 ], [ -94.606851797979317, 29.558029180725935 ], [ -94.606989798420926, 29.557968180578186 ], [ -94.607102797826116, 29.557935180793724 ], [ -94.607191797972462, 29.55793518127636 ], [ -94.607279798252094, 29.557924181152845 ], [ -94.607335797846304, 29.557886180784418 ], [ -94.607423798579831, 29.557858180517339 ], [ -94.607662798082885, 29.557803181254648 ], [ -94.607706798628953, 29.557787180622952 ], [ -94.607883798179756, 29.557754180666567 ], [ -94.608096798143691, 29.557622181125407 ], [ -94.608197798505827, 29.55758918086342 ], [ -94.608285797978525, 29.557572181104483 ], [ -94.608386798383691, 29.557473180412341 ], [ -94.608455798223005, 29.557445181097787 ], [ -94.608964799050852, 29.557407181080052 ], [ -94.609279798245211, 29.557247180355159 ], [ -94.609335798710404, 29.55720918101489 ], [ -94.609423799127114, 29.557198180414662 ], [ -94.609493798463333, 29.557203180580562 ], [ -94.609600799092263, 29.557170180388344 ], [ -94.609694799101732, 29.557153180828294 ], [ -94.610178798577095, 29.557181180816777 ], [ -94.610204798595774, 29.557164180257789 ], [ -94.610185798456513, 29.557142180861678 ], [ -94.610122798624175, 29.556977180762424 ], [ -94.610191798633537, 29.556922180761589 ], [ -94.610310799424425, 29.556873180718807 ], [ -94.610543798828942, 29.556796180391903 ], [ -94.610732799443412, 29.556757180823944 ], [ -94.610876799479811, 29.556719180426974 ], [ -94.61100979907954, 29.556636180545954 ], [ -94.611191799517997, 29.556559180788586 ], [ -94.611619799182705, 29.55643818064452 ], [ -94.61216679954795, 29.556267180694064 ], [ -94.612266799383491, 29.556201180152428 ], [ -94.612713799659502, 29.556102180213827 ], [ -94.612770799353925, 29.556102180665079 ], [ -94.612852799802482, 29.556129180500573 ], [ -94.61290879999332, 29.556173180443441 ], [ -94.612984799889361, 29.556162180149073 ], [ -94.613210799353297, 29.556052180704427 ], [ -94.613248799536848, 29.556030180208104 ], [ -94.613424799271613, 29.556008180174693 ], [ -94.613619799738032, 29.555936180579227 ], [ -94.613751800099621, 29.555859180349639 ], [ -94.613858799832556, 29.555738179846326 ], [ -94.613932800035982, 29.555689180261886 ], [ -94.613952799751061, 29.555694180266386 ], [ -94.613996799834908, 29.555760180123396 ], [ -94.61422980018645, 29.555771180442619 ], [ -94.614267799689571, 29.555755180400059 ], [ -94.614330800082911, 29.555672179968759 ], [ -94.614405799868422, 29.55563918002316 ], [ -94.614525799539024, 29.55563418002912 ], [ -94.614713800456229, 29.555683180625728 ], [ -94.614789800011906, 29.555677180543185 ], [ -94.614864799675644, 29.555633180160257 ], [ -94.615028800241888, 29.55550117997419 ], [ -94.615091800363473, 29.555496179983095 ], [ -94.615141800264354, 29.555501180436703 ], [ -94.615198799650329, 29.555523180214013 ], [ -94.615292799684923, 29.555540180469105 ], [ -94.615361800083789, 29.555518180263935 ], [ -94.61541180042444, 29.555430179771573 ], [ -94.615474800520147, 29.555375179935911 ], [ -94.615512799973374, 29.555364179875514 ], [ -94.615562799882753, 29.55538018035254 ], [ -94.615669800469007, 29.555375180140963 ], [ -94.615739800555858, 29.555347180172404 ], [ -94.615889800812724, 29.555264180500796 ], [ -94.616103800168787, 29.555253179894745 ], [ -94.616550800626214, 29.555127180242664 ], [ -94.616695800618189, 29.555110180238817 ], [ -94.616764800214824, 29.555094180053281 ], [ -94.616808800641692, 29.555077179684513 ], [ -94.61684680028533, 29.555050179660913 ], [ -94.617028800991008, 29.554989179904304 ], [ -94.617500801046774, 29.554780180294266 ], [ -94.617657801257806, 29.554769179700667 ], [ -94.617714800415769, 29.554780180030548 ], [ -94.617776800964918, 29.554818179701599 ], [ -94.618072801314582, 29.5548891799396 ], [ -94.618330801110858, 29.554895179563822 ], [ -94.618921801137674, 29.554790179791109 ], [ -94.618972801401895, 29.554746179903407 ], [ -94.619035800860658, 29.554664179584428 ], [ -94.61909180119379, 29.554642179499226 ], [ -94.619141800919579, 29.554631179775132 ], [ -94.619248800798346, 29.554647180229448 ], [ -94.619462801363497, 29.554636179759306 ], [ -94.619664801318152, 29.554674179530792 ], [ -94.619702801017169, 29.554685179544737 ], [ -94.61979680142214, 29.554713179525013 ], [ -94.619909800926251, 29.554718179904182 ], [ -94.620318801299561, 29.554575179803855 ], [ -94.620330801828985, 29.554487179736572 ], [ -94.620412801434696, 29.554377179830123 ], [ -94.620481801265527, 29.554338179722901 ], [ -94.620645801414327, 29.554322179802234 ], [ -94.620764801718963, 29.554294179609347 ], [ -94.621035801921508, 29.554201179469931 ], [ -94.62123680210145, 29.554074179629435 ], [ -94.621670801471794, 29.553964179415267 ], [ -94.621758801291065, 29.553914179513939 ], [ -94.621865802042507, 29.553865179186321 ], [ -94.621934801379638, 29.553848179561776 ], [ -94.621978802241799, 29.553848179354631 ], [ -94.622154801354597, 29.553909179779222 ], [ -94.622632801570902, 29.553903179758379 ], [ -94.622708802449424, 29.553886179633341 ], [ -94.622915801819431, 29.553776179633772 ], [ -94.623129802498397, 29.55365517993485 ], [ -94.623205802609434, 29.553639179934727 ], [ -94.623261801815261, 29.553644179641658 ], [ -94.623286802083925, 29.553672179258342 ], [ -94.62333780247107, 29.553749179490726 ], [ -94.623393802638475, 29.553765179326792 ], [ -94.623500802425298, 29.553660179198079 ], [ -94.623544802458383, 29.553627179792269 ], [ -94.623639802556994, 29.553616179701482 ], [ -94.623739801941468, 29.553633178999572 ], [ -94.623796802128822, 29.553633179328134 ], [ -94.6238718020428, 29.553594179793475 ], [ -94.624186802899047, 29.55349517904618 ], [ -94.624205802369644, 29.553462179219242 ], [ -94.624205802792105, 29.553424179360849 ], [ -94.62424280276565, 29.553374179075281 ], [ -94.624305802002482, 29.55335817913258 ], [ -94.62444480201296, 29.553363179743027 ], [ -94.624639802424909, 29.553291179808209 ], [ -94.624695802792985, 29.553291179544871 ], [ -94.624890802917662, 29.553396179375568 ], [ -94.625010802982374, 29.553418179733185 ], [ -94.625040803112043, 29.553410179275968 ], [ -94.625095802842068, 29.55329017918196 ], [ -94.625111803078042, 29.553297179318601 ], [ -94.625153802892598, 29.553338179642314 ], [ -94.625176802506104, 29.553499179754944 ], [ -94.625179802738529, 29.553514179550131 ], [ -94.625210802307905, 29.553580179026358 ], [ -94.625235802792304, 29.553613179486149 ], [ -94.625424802832853, 29.553685179455524 ], [ -94.625480802346871, 29.553685179731367 ], [ -94.625543803205602, 29.553652179277549 ], [ -94.625581802645272, 29.553619179724617 ], [ -94.625644802725247, 29.55354717982501 ], [ -94.625669802786064, 29.553498179741268 ], [ -94.625681803280258, 29.553438179457441 ], [ -94.625720803205056, 29.553261179554227 ], [ -94.625745802833748, 29.553251179721698 ], [ -94.62577680296134, 29.553251179094627 ], [ -94.625795803195189, 29.553267179085875 ], [ -94.625814803208172, 29.553306179786425 ], [ -94.625808802471397, 29.55343217952321 ], [ -94.625820803130921, 29.553482179806014 ], [ -94.625883802651543, 29.553526179281182 ], [ -94.626034802378044, 29.553559179079581 ], [ -94.626091802417619, 29.553575179788464 ], [ -94.626210803329826, 29.553581179315774 ], [ -94.626305803095377, 29.553531179770523 ], [ -94.626355802847073, 29.553526179030197 ], [ -94.626462802660441, 29.553553179278779 ], [ -94.626820803092215, 29.553499179598536 ], [ -94.626940803536229, 29.553438179189175 ], [ -94.627003803205767, 29.553427179216968 ], [ -94.627066803379293, 29.553438179518114 ], [ -94.627141803042065, 29.553466179465708 ], [ -94.627254803049837, 29.553488179082233 ], [ -94.627462802931319, 29.55344917901942 ], [ -94.627538803387807, 29.553416179331546 ], [ -94.627852803566498, 29.553361179450878 ], [ -94.62815480295211, 29.553279179504045 ], [ -94.628330803326946, 29.553252178777427 ], [ -94.628689803550827, 29.553125179585244 ], [ -94.629485804241469, 29.552938178730081 ], [ -94.629557804132119, 29.552922178935997 ], [ -94.629784804106009, 29.552851178847096 ], [ -94.629847804062067, 29.552840179370978 ], [ -94.629903804105979, 29.552840178730484 ], [ -94.629954803781544, 29.552818178684582 ], [ -94.62997980355928, 29.552779179369253 ], [ -94.63001680372696, 29.552664179007678 ], [ -94.630048804097029, 29.552647179429627 ], [ -94.630168803783278, 29.552675179484851 ], [ -94.630205803534395, 29.552675178903872 ], [ -94.630256804075771, 29.552658179082187 ], [ -94.630306803939504, 29.552631179329605 ], [ -94.630337804453092, 29.552587178936015 ], [ -94.630375804192028, 29.552521178589114 ], [ -94.630407803778681, 29.55237817893094 ], [ -94.630457804401743, 29.5522461790225 ], [ -94.630495804160574, 29.552202178911887 ], [ -94.630520804484973, 29.552191178711411 ], [ -94.630652804029765, 29.552230178799526 ], [ -94.631231804233195, 29.55222417873955 ], [ -94.631552804436481, 29.552186178727109 ], [ -94.632137804382566, 29.55219217902377 ], [ -94.632445804569869, 29.552131178570065 ], [ -94.632564804266579, 29.552115178516033 ], [ -94.632728804734967, 29.552109179015687 ], [ -94.633584804861485, 29.551840178935986 ], [ -94.633823805265777, 29.55172517893898 ], [ -94.634018804487013, 29.551648178826238 ], [ -94.634162805135929, 29.551643178603371 ], [ -94.6342538052983, 29.551616179072948 ], [ -94.634269804717576, 29.551604179098504 ], [ -94.634383805349245, 29.551566178298526 ], [ -94.634439804704158, 29.551538178404705 ], [ -94.634584804506275, 29.551417178626824 ], [ -94.634634804798637, 29.551384178403282 ], [ -94.63477980464836, 29.551351178491277 ], [ -94.634980805506672, 29.551335178365971 ], [ -94.635031805540009, 29.551318178555679 ], [ -94.635138804714032, 29.551236178303341 ], [ -94.635251805163421, 29.551186178803242 ], [ -94.635314805146464, 29.551142178249194 ], [ -94.635345805039165, 29.551098178551456 ], [ -94.635371805317718, 29.551010178576732 ], [ -94.635408805295569, 29.550999178269898 ], [ -94.63560380573351, 29.550994178296335 ], [ -94.635723805097399, 29.550961178388032 ], [ -94.635811804775926, 29.550950178715524 ], [ -94.635849805149249, 29.550928178321829 ], [ -94.635887805114749, 29.550884178571138 ], [ -94.635887805144421, 29.550835178702361 ], [ -94.63594380556718, 29.550796178117668 ], [ -94.636075805414777, 29.550840178584121 ], [ -94.636151805289671, 29.550818178750916 ], [ -94.636277805624601, 29.550824178468336 ], [ -94.636497804959035, 29.550802178796118 ], [ -94.636553805299044, 29.550780178797229 ], [ -94.636629805288862, 29.550725178353144 ], [ -94.636692805833249, 29.550615178303353 ], [ -94.636786805995925, 29.550521178180968 ], [ -94.636868805290177, 29.550478178005843 ], [ -94.636925805569902, 29.55047217840082 ], [ -94.637120805478304, 29.55048317845198 ], [ -94.637227806053147, 29.55046117841631 ], [ -94.637283806050448, 29.550445177926289 ], [ -94.637390805490071, 29.550384178470477 ], [ -94.637598805899941, 29.550351178134338 ], [ -94.637642805976427, 29.550324178594096 ], [ -94.637705805640948, 29.550258178525638 ], [ -94.637761805496837, 29.550263178544522 ], [ -94.637818805758201, 29.550296178717321 ], [ -94.637881805650011, 29.55030217816504 ], [ -94.637906805275904, 29.550280178291228 ], [ -94.637931805328918, 29.550208178161814 ], [ -94.637944805539732, 29.550186178634323 ], [ -94.637965805866315, 29.550191177902402 ], [ -94.638000805814883, 29.550208178495186 ], [ -94.638076805419729, 29.55028517859305 ], [ -94.638126805713057, 29.550302178275235 ], [ -94.638177806123721, 29.550296178322281 ], [ -94.638265806145682, 29.550269178469957 ], [ -94.638504806203656, 29.550313178513672 ], [ -94.638535805930971, 29.550308178260895 ], [ -94.638573805829665, 29.550291178300878 ], [ -94.63859280640439, 29.550220178696659 ], [ -94.638611805563585, 29.550203178271161 ], [ -94.638642806283514, 29.550198178027095 ], [ -94.638749806466279, 29.550225178417946 ], [ -94.638774806405081, 29.550242178540611 ], [ -94.638938806361949, 29.55030817830373 ], [ -94.639032806300534, 29.550286178033335 ], [ -94.639057805674881, 29.550264177944356 ], [ -94.639063806347778, 29.550198178000151 ], [ -94.639095806415625, 29.550159177901794 ], [ -94.639139805904179, 29.550126178051421 ], [ -94.639296806498109, 29.550132178475113 ], [ -94.639353805854711, 29.550115178610888 ], [ -94.639409806196696, 29.550093178348284 ], [ -94.639491805802422, 29.550022178397004 ], [ -94.639523806560078, 29.550044178573835 ], [ -94.639548805798384, 29.550137177953786 ], [ -94.639586806293323, 29.550159177865204 ], [ -94.639623806602543, 29.550154178043815 ], [ -94.639655806715751, 29.550143177845325 ], [ -94.639724806197279, 29.550088178531428 ], [ -94.63975580653549, 29.550071178396074 ], [ -94.639818806363849, 29.550077177833387 ], [ -94.639963806383008, 29.550132177773154 ], [ -94.64000780640761, 29.550132177980526 ], [ -94.640098806854581, 29.550101178305685 ], [ -94.640152806533706, 29.550083178279827 ], [ -94.640208806006541, 29.550050178458442 ], [ -94.640347806004044, 29.550028178416905 ], [ -94.640403806084578, 29.550006177737714 ], [ -94.640454806863985, 29.549978178534676 ], [ -94.640510806014959, 29.549962178495321 ], [ -94.640661806901491, 29.549951177700514 ], [ -94.640800806249814, 29.549907177870747 ], [ -94.640831807024156, 29.549901178513235 ], [ -94.641014806942451, 29.549918177827859 ], [ -94.641083807042264, 29.549962177875969 ], [ -94.641114807011348, 29.549962178236054 ], [ -94.641139806372621, 29.549945178065705 ], [ -94.641158806300595, 29.549907178436747 ], [ -94.641146806685001, 29.549824178547329 ], [ -94.641152806704852, 29.54978617763787 ], [ -94.641215806975609, 29.549753178125243 ], [ -94.641244806428475, 29.5497471784346 ], [ -94.641265806267569, 29.549747177777153 ], [ -94.641297806487856, 29.549775178215899 ], [ -94.641303807109352, 29.549863177828986 ], [ -94.641328806876359, 29.549885177751371 ], [ -94.641416806918173, 29.549891177972086 ], [ -94.641504806723219, 29.549874178408601 ], [ -94.641649806758906, 29.549825178017599 ], [ -94.641680806686523, 29.549825178246522 ], [ -94.641800806915342, 29.549863178420267 ], [ -94.641857807237571, 29.549858178057043 ], [ -94.641894807263668, 29.549836177697554 ], [ -94.641989806722805, 29.549731177664516 ], [ -94.642146807039055, 29.549632177661518 ], [ -94.642196806468206, 29.549632177684018 ], [ -94.642234807306778, 29.549654177747161 ], [ -94.642259806491865, 29.549654178178375 ], [ -94.6422978068166, 29.549643177910401 ], [ -94.642347806730598, 29.549610177596765 ], [ -94.642372806936137, 29.549610178040457 ], [ -94.642404806539176, 29.549627178088315 ], [ -94.642442807121398, 29.549671178278679 ], [ -94.642486807382639, 29.549687178073299 ], [ -94.642567806860598, 29.549676177898967 ], [ -94.642643807029472, 29.549687178358379 ], [ -94.642781806835515, 29.549688178143683 ], [ -94.642844807445016, 29.54966617798982 ], [ -94.64292680700774, 29.549589178013054 ], [ -94.64311580729705, 29.549484178026017 ], [ -94.643140806738685, 29.54944017791804 ], [ -94.643222806928563, 29.549363177789704 ], [ -94.643310806780391, 29.54932517819266 ], [ -94.64353080679993, 29.549275177961484 ], [ -94.643555806923587, 29.549275178184072 ], [ -94.643979807358761, 29.549460178257746 ], [ -94.644033807650203, 29.549484178055621 ], [ -94.64427280708496, 29.549490178029775 ], [ -94.644335807575843, 29.549534177733864 ], [ -94.644367807145912, 29.549627177522932 ], [ -94.644429807035053, 29.549660177894921 ], [ -94.644511807788263, 29.549638178381592 ], [ -94.644593806984304, 29.549550178224226 ], [ -94.644675807271398, 29.549518178023884 ], [ -94.644769807950311, 29.549512177795091 ], [ -94.64500280760133, 29.549534178219922 ], [ -94.645090807750307, 29.549562178014011 ], [ -94.645128807837153, 29.549562177936586 ], [ -94.645201808027494, 29.549497178333837 ], [ -94.645316807648214, 29.549397177712112 ], [ -94.645568807868983, 29.549215177978422 ], [ -94.645625808147273, 29.549243178094571 ], [ -94.645807807786227, 29.549193177976075 ], [ -94.646122808146245, 29.549260177967099 ], [ -94.646600808415883, 29.549254177918247 ], [ -94.646832807997271, 29.549166177877122 ], [ -94.646933807827963, 29.549117177495624 ], [ -94.647097807976266, 29.549095177335538 ], [ -94.647229808036329, 29.549051177809634 ], [ -94.647405808286351, 29.548924177382823 ], [ -94.647474808562663, 29.548891178021087 ], [ -94.647631807807642, 29.548836177486784 ], [ -94.647707808175454, 29.54882017734214 ], [ -94.647889808733453, 29.54883117738526 ], [ -94.647946808028991, 29.548826178032709 ], [ -94.648110807960052, 29.548776177589342 ], [ -94.648172808095225, 29.548776177783658 ], [ -94.648198808754145, 29.548793177986489 ], [ -94.648267808131052, 29.548897177628351 ], [ -94.648317808670797, 29.548947177330195 ], [ -94.648418808647733, 29.548963177721173 ], [ -94.648512808228716, 29.548958177975418 ], [ -94.648544808996974, 29.548947177517892 ], [ -94.648632808267209, 29.548848177897405 ], [ -94.648657808760333, 29.548837178006455 ], [ -94.648770808543333, 29.54885917753472 ], [ -94.648795808845108, 29.548831177738329 ], [ -94.648808808032499, 29.548798178022011 ], [ -94.64877080871868, 29.548672178020553 ], [ -94.648820808902371, 29.548622177303947 ], [ -94.648846808551383, 29.548617177190216 ], [ -94.648896808944812, 29.548628177542348 ], [ -94.649116808914968, 29.548738177252094 ], [ -94.649248808470418, 29.548776177475613 ], [ -94.649311808190106, 29.548776177166967 ], [ -94.649468809029315, 29.548699178025139 ], [ -94.649600809179532, 29.548721177562797 ], [ -94.649739808357069, 29.548716177653862 ], [ -94.64978980864484, 29.548705177514694 ], [ -94.649839808536669, 29.548705177418714 ], [ -94.650053808661653, 29.548793177909662 ], [ -94.650104808934657, 29.548799177551732 ], [ -94.650154808467335, 29.548782177458108 ], [ -94.650198808796901, 29.548749177734543 ], [ -94.6502048091304, 29.548722177508076 ], [ -94.650204809415001, 29.548650177284802 ], [ -94.650217809155833, 29.548617177463829 ], [ -94.650437808559957, 29.548502177722472 ], [ -94.6505888085576, 29.548353177771595 ], [ -94.6506268087726, 29.548326177532587 ], [ -94.650682808611066, 29.548304177150843 ], [ -94.650714809352095, 29.548315177233412 ], [ -94.650921809172232, 29.548447177329408 ], [ -94.650965809590303, 29.548485177168686 ], [ -94.651016808950658, 29.548573177210066 ], [ -94.6510858091534, 29.548612177143252 ], [ -94.651116809638353, 29.548617177299239 ], [ -94.651160809100475, 29.548606177382311 ], [ -94.651261808887242, 29.548529177491037 ], [ -94.651362808668011, 29.548496177805379 ], [ -94.651387809196336, 29.54845817790288 ], [ -94.651362809203107, 29.548414177057388 ], [ -94.651387808725815, 29.548326177051095 ], [ -94.6514128091884, 29.548293177420053 ], [ -94.651519808820865, 29.548177177473786 ], [ -94.6515888096514, 29.548117177450763 ], [ -94.651620809206634, 29.548139177346698 ], [ -94.651840808994649, 29.548370177786556 ], [ -94.652041809279979, 29.548458177533643 ], [ -94.65213580979092, 29.548486177298823 ], [ -94.652198809255168, 29.548486177433592 ], [ -94.652286809332622, 29.548425177835341 ], [ -94.652337809661489, 29.548425177742995 ], [ -94.652425809782955, 29.548447177407507 ], [ -94.65250080895936, 29.548491177831369 ], [ -94.652613809582647, 29.548579177226408 ], [ -94.652664809907108, 29.548590177071507 ], [ -94.652701810012175, 29.548579177485998 ], [ -94.652752809707039, 29.548524177792405 ], [ -94.652758809637476, 29.548453177200429 ], [ -94.652802809079517, 29.548398177394478 ], [ -94.652840809774489, 29.548376177739343 ], [ -94.652922809656303, 29.548359177014611 ], [ -94.652953810095298, 29.548332176966444 ], [ -94.65298580942418, 29.548260177115264 ], [ -94.653004809671685, 29.54823317782386 ], [ -94.653060809940484, 29.548211177381219 ], [ -94.653117809799937, 29.548205177251752 ], [ -94.653186809633269, 29.548216177060933 ], [ -94.653211809443647, 29.548205177218936 ], [ -94.653230809733657, 29.548183177271138 ], [ -94.65323680936784, 29.54810617776857 ], [ -94.653255809651725, 29.548073177753462 ], [ -94.653299809577987, 29.548046177725531 ], [ -94.653362809808471, 29.548035177282188 ], [ -94.653463809444588, 29.548068177322367 ], [ -94.653526809694, 29.548079176928486 ], [ -94.653758809504239, 29.548013177002321 ], [ -94.653897810061878, 29.547914177085723 ], [ -94.654023810271298, 29.54791417753616 ], [ -94.654142809439406, 29.547925176977405 ], [ -94.654167810267921, 29.547936177117005 ], [ -94.654180810079595, 29.54795817725778 ], [ -94.654205809572588, 29.548057176929468 ], [ -94.654312810089763, 29.548107177106758 ], [ -94.654432810108361, 29.548112177426255 ], [ -94.654520810334503, 29.54813417751717 ], [ -94.654715809688071, 29.548151177054912 ], [ -94.654765810557393, 29.548167177295191 ], [ -94.654828809786196, 29.548173176878343 ], [ -94.654972810607049, 29.548151177175615 ], [ -94.655023810577575, 29.548134177112058 ], [ -94.655092810622705, 29.548090177458743 ], [ -94.655105809761736, 29.548063176977873 ], [ -94.655105810414597, 29.548035177098917 ], [ -94.655073809838399, 29.547997176793288 ], [ -94.655064810009989, 29.547976177142104 ], [ -94.655067809769392, 29.547958176861187 ], [ -94.655098810008724, 29.547958177620391 ], [ -94.655268809753125, 29.547997177512972 ], [ -94.655413810456267, 29.548002176817924 ], [ -94.655457809808809, 29.548030177265471 ], [ -94.655488810292738, 29.548035177310449 ], [ -94.655526810276939, 29.548019177577814 ], [ -94.655551810547536, 29.547991177482292 ], [ -94.655564810584039, 29.547964176989765 ], [ -94.655602810440385, 29.547936177663775 ], [ -94.655671809836633, 29.547925176965961 ], [ -94.655702810656607, 29.54790917727707 ], [ -94.655784810109225, 29.547826177184838 ], [ -94.655828810772604, 29.547821177386712 ], [ -94.655941809882577, 29.547848177417485 ], [ -94.655979810248567, 29.547848176995753 ], [ -94.65605481051648, 29.547815176855778 ], [ -94.656117809978142, 29.547799177541105 ], [ -94.65616880991054, 29.547722177409668 ], [ -94.65619981076901, 29.547705177195287 ], [ -94.656256810335108, 29.547717176889062 ], [ -94.65630681087103, 29.547761177337051 ], [ -94.656432809994158, 29.547799176822963 ], [ -94.656545810791073, 29.547816176756232 ], [ -94.656677810958755, 29.54780517727038 ], [ -94.656753810903183, 29.547783176771588 ], [ -94.656897810755083, 29.547700176758024 ], [ -94.657004810180297, 29.547607176755438 ], [ -94.657036810392412, 29.547563176841486 ], [ -94.65704981057425, 29.547498176698483 ], [ -94.657055810448753, 29.547475176961321 ], [ -94.657074810534397, 29.547271176773126 ], [ -94.657099811060561, 29.547244176826968 ], [ -94.657149811018627, 29.54723817695016 ], [ -94.657181810387357, 29.547260177289601 ], [ -94.657306810172798, 29.547315176743997 ], [ -94.657394810506332, 29.547370176912764 ], [ -94.657482811246695, 29.547409176713153 ], [ -94.657545810376291, 29.547420177099347 ], [ -94.657615810772242, 29.547409177230655 ], [ -94.657646810347586, 29.54737017745148 ], [ -94.657671810755204, 29.547244176946229 ], [ -94.657696810892872, 29.547183177217484 ], [ -94.657759811034936, 29.547172177439521 ], [ -94.657885810625146, 29.547205177119636 ], [ -94.657986811239027, 29.547249177422184 ], [ -94.658049810397699, 29.547238176572577 ], [ -94.658206810841776, 29.547090176796672 ], [ -94.658244811028709, 29.547030177027676 ], [ -94.658294811398235, 29.546909176886615 ], [ -94.658288811179489, 29.546848177024373 ], [ -94.658300810579519, 29.546815176514716 ], [ -94.658344811238067, 29.546776177149148 ], [ -94.658414811273587, 29.546749176548666 ], [ -94.658521810614531, 29.546639176461472 ], [ -94.658539811451419, 29.546628176798333 ], [ -94.658583810848953, 29.546650176438362 ], [ -94.658703811462104, 29.546760176820285 ], [ -94.658747810569608, 29.546777177028279 ], [ -94.658835810540467, 29.546760177072038 ], [ -94.658961810989453, 29.546661177014332 ], [ -94.658992811267353, 29.546650176837819 ], [ -94.659156811258583, 29.546661176674352 ], [ -94.659231810875312, 29.546689176601639 ], [ -94.65928881090349, 29.546727176778216 ], [ -94.65942081138148, 29.546876176867968 ], [ -94.659514810827702, 29.546931177177367 ], [ -94.659690810885778, 29.546953176838333 ], [ -94.659955811749526, 29.546931177013551 ], [ -94.660036811149183, 29.546909177175163 ], [ -94.660143811459747, 29.546854176993769 ], [ -94.66035781187496, 29.546639177121392 ], [ -94.660433811959066, 29.546601176985362 ], [ -94.660521811830506, 29.546502177175295 ], [ -94.660590811859649, 29.546463176853454 ], [ -94.660659811449705, 29.546436176939356 ], [ -94.660728811237306, 29.546425176401097 ], [ -94.660904811414326, 29.546458176337499 ], [ -94.661093812076601, 29.546464176873705 ], [ -94.661137811746244, 29.546469176754734 ], [ -94.66120681172336, 29.546502177039596 ], [ -94.661294811794818, 29.546590176522066 ], [ -94.661389811683662, 29.546662177075977 ], [ -94.661433811670662, 29.546684176680028 ], [ -94.661571812045224, 29.54668417667364 ], [ -94.661754811516488, 29.546623176803447 ], [ -94.661842812095244, 29.546623176525795 ], [ -94.661879811417691, 29.546612177135206 ], [ -94.661930811914871, 29.546541176545343 ], [ -94.661949811315395, 29.546486177087175 ], [ -94.661961811473006, 29.54641417642447 ], [ -94.661974812142248, 29.546392176547968 ], [ -94.661999811827883, 29.546398176717503 ], [ -94.662043811690779, 29.546431177057539 ], [ -94.662125812093777, 29.546447176328694 ], [ -94.662219812000316, 29.546436176310031 ], [ -94.662263812349821, 29.54641417640876 ], [ -94.662288812366455, 29.546376176388961 ], [ -94.662351812106436, 29.546255176810803 ], [ -94.662376812101044, 29.546227176397601 ], [ -94.662402812360796, 29.546233176452411 ], [ -94.662439812185781, 29.546288176242694 ], [ -94.662464811951438, 29.546293176817279 ], [ -94.662496812293952, 29.546282176689079 ], [ -94.662521812243796, 29.546233176590455 ], [ -94.662540812450644, 29.546145176975024 ], [ -94.662584811619993, 29.546112176898834 ], [ -94.662660811901517, 29.546112176811668 ], [ -94.662741811838643, 29.546189176609772 ], [ -94.66277381209386, 29.546189176449339 ], [ -94.662861812346861, 29.546101177029179 ], [ -94.662930812197814, 29.546073176466589 ], [ -94.663050812450507, 29.546084177026422 ], [ -94.663125811628305, 29.54613417661248 ], [ -94.663194812523599, 29.546161177021155 ], [ -94.663307812340008, 29.546156176588756 ], [ -94.663364812285153, 29.546139176630579 ], [ -94.663603812669834, 29.546018176496599 ], [ -94.663710812152999, 29.545974176257833 ], [ -94.663754812306678, 29.54593617648408 ], [ -94.663792812540009, 29.545892176441164 ], [ -94.663817812016049, 29.545804176235684 ], [ -94.663867812666268, 29.545788176090589 ], [ -94.663999812210392, 29.545765176242224 ], [ -94.664081812776644, 29.545738176421981 ], [ -94.664383811975199, 29.545590176387137 ], [ -94.664647812987567, 29.545535176424202 ], [ -94.664748812776566, 29.545496176104727 ], [ -94.664830812785524, 29.545430175959993 ], [ -94.664899812132845, 29.545353176723872 ], [ -94.665201812523108, 29.545084176429199 ], [ -94.665270812914201, 29.545029176201929 ], [ -94.665333812323098, 29.544996176450649 ], [ -94.665396812979637, 29.54497417674007 ], [ -94.665497813149003, 29.544902176706898 ], [ -94.665541812177409, 29.544864176336546 ], [ -94.665566812707226, 29.544825176249766 ], [ -94.665591812894803, 29.544715176618954 ], [ -94.66561081249074, 29.544699176556204 ], [ -94.665786812272245, 29.544589176066438 ], [ -94.665780812785783, 29.544545176472123 ], [ -94.665698812431486, 29.544391176579634 ], [ -94.66571781282947, 29.54434717579819 ], [ -94.665792812402231, 29.544297175954384 ], [ -94.666000813178613, 29.544215175988445 ], [ -94.666019812336913, 29.544187176318207 ], [ -94.666050812390509, 29.544171176088305 ], [ -94.666101812435642, 29.544187176512018 ], [ -94.666176812685507, 29.54425317653164 ], [ -94.666207813098737, 29.544231176508458 ], [ -94.666233812396811, 29.544198175947066 ], [ -94.666226812855172, 29.544143176431895 ], [ -94.666239813349321, 29.544121176163568 ], [ -94.666403813010163, 29.544077176107663 ], [ -94.666648813135097, 29.543923176453362 ], [ -94.666686813219869, 29.543918176380977 ], [ -94.666774812572257, 29.543951175682185 ], [ -94.666799813186557, 29.543934176338325 ], [ -94.66681181296272, 29.543912176086135 ], [ -94.66679981290109, 29.543830175832042 ], [ -94.666855812881778, 29.543786176025232 ], [ -94.667094812786161, 29.543720176338752 ], [ -94.667271813175333, 29.543703176171395 ], [ -94.667334813313289, 29.543687176234787 ], [ -94.667547813089328, 29.543588176341551 ], [ -94.667723813101162, 29.543517175961906 ], [ -94.668610813354121, 29.543423175569124 ], [ -94.668906813700076, 29.543368175795081 ], [ -94.669070813462312, 29.543368176232548 ], [ -94.669214813730434, 29.543390175998393 ], [ -94.669258814051787, 29.543407175499279 ], [ -94.669334813712211, 29.54342317554995 ], [ -94.669661813671951, 29.543357176091682 ], [ -94.669692813489718, 29.543319175901168 ], [ -94.669680814105192, 29.543280175649425 ], [ -94.669629813915549, 29.543231175628719 ], [ -94.669655813725257, 29.543203175613048 ], [ -94.669736813933184, 29.543148175435782 ], [ -94.66982481405752, 29.543121176019014 ], [ -94.669969814056856, 29.543126175979392 ], [ -94.670038813748405, 29.543104176132562 ], [ -94.670145813501534, 29.543055176079093 ], [ -94.670240814135298, 29.543033175852717 ], [ -94.670604813830366, 29.542983175499828 ], [ -94.670919814338987, 29.542901176019488 ], [ -94.671221814164511, 29.542912175956282 ], [ -94.671403813893875, 29.542813175721946 ], [ -94.671661814091394, 29.542692175528042 ], [ -94.672007814463399, 29.542593175233225 ], [ -94.672271814357714, 29.54253317563181 ], [ -94.672416814597483, 29.542522175418512 ], [ -94.672579814347074, 29.542527175591719 ], [ -94.672655814821624, 29.542516175325723 ], [ -94.672825814126497, 29.542456175503929 ], [ -94.672976814317323, 29.542439175919789 ], [ -94.673171814669729, 29.542390175895981 ], [ -94.67324681442561, 29.542379175414261 ], [ -94.673378814493788, 29.542379175072078 ], [ -94.673535814591176, 29.542357175577191 ], [ -94.673674814749475, 29.542302175733685 ], [ -94.673888814811406, 29.542274175184058 ], [ -94.674183815099937, 29.542148175519561 ], [ -94.674353815261512, 29.542109175231211 ], [ -94.674580814642766, 29.542087175024633 ], [ -94.674737814903736, 29.542010175032352 ], [ -94.674831815080964, 29.541994175105614 ], [ -94.675020815451248, 29.541988175649415 ], [ -94.675215814998808, 29.541944175629965 ], [ -94.675448814893343, 29.541845174860828 ], [ -94.675592815066267, 29.541796175663965 ], [ -94.675938814776998, 29.541741175311564 ], [ -94.676328815578444, 29.541614175382904 ], [ -94.676391815330661, 29.541609174858024 ], [ -94.67643581572834, 29.541620174948815 ], [ -94.676555815479418, 29.541675175237057 ], [ -94.67666281545722, 29.541675174860835 ], [ -94.676750815091594, 29.541691175055551 ], [ -94.67676281573597, 29.541675175563892 ], [ -94.676775815805115, 29.541631175238365 ], [ -94.676825815848034, 29.541554175124165 ], [ -94.676976815502002, 29.541455175360838 ], [ -94.677020815704623, 29.541438175508109 ], [ -94.6770708157472, 29.541438175284291 ], [ -94.67730381527015, 29.541466175575678 ], [ -94.677404815922785, 29.541444174754886 ], [ -94.677548815710509, 29.541356175553744 ], [ -94.677599815178908, 29.541334174954397 ], [ -94.677712815329826, 29.541323175442521 ], [ -94.677857815349114, 29.541317175055749 ], [ -94.677945816263389, 29.541301174939321 ], [ -94.678159815353936, 29.541169174664994 ], [ -94.678228815290765, 29.541136175212674 ], [ -94.678404816267602, 29.541152175125973 ], [ -94.678498815999248, 29.541136175357352 ], [ -94.678637815808841, 29.541169174918998 ], [ -94.678700816417148, 29.541169175394327 ], [ -94.678737815924862, 29.541158175067626 ], [ -94.678788816022447, 29.541119175208408 ], [ -94.678819815510096, 29.541059174828522 ], [ -94.678863816289365, 29.54102617507148 ], [ -94.678989815989652, 29.540971174879122 ], [ -94.679102816505974, 29.540894175180664 ], [ -94.679178815954941, 29.540867174612096 ], [ -94.679360815895194, 29.540856174635277 ], [ -94.679410816533562, 29.540839174730078 ], [ -94.679568816337252, 29.540757175105469 ], [ -94.67963081567153, 29.540735175316943 ], [ -94.679706815965602, 29.540724174713372 ], [ -94.679762816452524, 29.540691175130618 ], [ -94.679794816634981, 29.54065817459627 ], [ -94.679851816346257, 29.540564175073801 ], [ -94.679888816650603, 29.540526175148177 ], [ -94.680090815745928, 29.540482174960506 ], [ -94.680297816230421, 29.540465174681533 ], [ -94.680561816331604, 29.540377174659795 ], [ -94.680656816501696, 29.540361175032753 ], [ -94.680807816571132, 29.54035017461004 ], [ -94.680876816488535, 29.540322174973422 ], [ -94.680995816787686, 29.540256175249468 ], [ -94.681039816274236, 29.540245174734022 ], [ -94.681140816380392, 29.540267174685674 ], [ -94.681234816755008, 29.540262174842589 ], [ -94.681404817064617, 29.54020117482953 ], [ -94.681536816524044, 29.540124174745273 ], [ -94.681593816458687, 29.54011317507404 ], [ -94.681744816392225, 29.540141175104029 ], [ -94.681901816481641, 29.540135174294239 ], [ -94.682021816801324, 29.540152174907693 ], [ -94.682115816913225, 29.540146174935671 ], [ -94.682278817040569, 29.540097174746229 ], [ -94.682335817295694, 29.540058175065656 ], [ -94.682448816684442, 29.539921174264421 ], [ -94.68251181677914, 29.539882175071568 ], [ -94.682624817258201, 29.539866174859693 ], [ -94.682694816413715, 29.539844174722131 ], [ -94.682794817379346, 29.539767174743627 ], [ -94.682851817326124, 29.539739174823158 ], [ -94.682958816944179, 29.539717174921069 ], [ -94.683008816474, 29.539701174979584 ], [ -94.683071816786835, 29.539657174399487 ], [ -94.683178816657644, 29.539569174456012 ], [ -94.683241816777951, 29.539525174696241 ], [ -94.683304816606523, 29.539508174191482 ], [ -94.683650816743267, 29.539470174745766 ], [ -94.683750816803723, 29.539442174200438 ], [ -94.683926817371926, 29.539420174863878 ], [ -94.684096817337874, 29.539338174667112 ], [ -94.68419781681817, 29.539321174436715 ], [ -94.684297817217569, 29.539272174860322 ], [ -94.684398816900824, 29.539195174371084 ], [ -94.684436817346494, 29.539173174144572 ], [ -94.684536817282677, 29.539140174592589 ], [ -94.684687817765123, 29.539118174410437 ], [ -94.684763816914284, 29.539096174585165 ], [ -94.684857817624888, 29.539019174461213 ], [ -94.684977817856307, 29.538898174818023 ], [ -94.685014817878226, 29.538870174002355 ], [ -94.685102817411178, 29.538837174027869 ], [ -94.685134817594417, 29.538815174057639 ], [ -94.685159817766319, 29.5387381739889 ], [ -94.685222817284654, 29.53866717403173 ], [ -94.685279817644201, 29.538628174052796 ], [ -94.685404817374888, 29.538573174544521 ], [ -94.685599817154198, 29.538557173848304 ], [ -94.685744817444174, 29.538518174166956 ], [ -94.685851817262673, 29.538513174432897 ], [ -94.68596481810745, 29.538469174496772 ], [ -94.68614781741374, 29.538381174411267 ], [ -94.686260817612123, 29.538342174445201 ], [ -94.686713817531682, 29.53828717393403 ], [ -94.686864818074056, 29.538249173853842 ], [ -94.68700281833334, 29.538249174156096 ], [ -94.687172818239787, 29.53827117373368 ], [ -94.68722881800872, 29.538260173751581 ], [ -94.687272817944205, 29.538199174342484 ], [ -94.687304817816695, 29.538194174469623 ], [ -94.687348817766534, 29.538205174584746 ], [ -94.687392818324639, 29.538227173770018 ], [ -94.687461817801037, 29.538276174200444 ], [ -94.687480818039134, 29.538304173758544 ], [ -94.687530817965836, 29.538315174151975 ], [ -94.687593817694818, 29.538315174078143 ], [ -94.687738818570324, 29.538260173895171 ], [ -94.68788281810032, 29.538249174531696 ], [ -94.688147818591446, 29.538177174297672 ], [ -94.688210818513312, 29.538172173711647 ], [ -94.688329818101991, 29.538177173983815 ], [ -94.688373818021873, 29.538194174394906 ], [ -94.688423818073645, 29.538232173713869 ], [ -94.688480818358968, 29.538249174446872 ], [ -94.688713818574286, 29.538254174565022 ], [ -94.688776818587129, 29.538243173980991 ], [ -94.688870818561924, 29.538238174245343 ], [ -94.688983818688882, 29.538271174231372 ], [ -94.689260818019719, 29.538293174460506 ], [ -94.689524818501695, 29.538342174059 ], [ -94.689675818885618, 29.538353174511091 ], [ -94.689820818960229, 29.538392174195778 ], [ -94.689895818528882, 29.538392174405807 ], [ -94.690078818998288, 29.538375174487431 ], [ -94.690405819214774, 29.538326173646535 ], [ -94.690738819127247, 29.538249174364221 ], [ -94.690914818561424, 29.538254174168216 ], [ -94.691071818983772, 29.538243174224512 ], [ -94.691317818813317, 29.538205174078922 ], [ -94.691461818678988, 29.538199173821567 ], [ -94.691644819517933, 29.538221174088541 ], [ -94.691920819584482, 29.538292173641878 ], [ -94.692084819340153, 29.538303174063291 ], [ -94.692191819693434, 29.538337174289595 ], [ -94.692254819279754, 29.53834217404491 ], [ -94.692335819717073, 29.538342173945804 ], [ -94.692468819368315, 29.538331173647361 ], [ -94.693059819224842, 29.538364173834577 ], [ -94.693172819898464, 29.538347174345116 ], [ -94.693241820038352, 29.538314173672095 ], [ -94.693329819629568, 29.538298174376123 ], [ -94.693581819469358, 29.538320173734988 ], [ -94.693769819671687, 29.53835917378737 ], [ -94.693845819837293, 29.538375174386822 ], [ -94.694040819455537, 29.538364174293744 ], [ -94.694222819987914, 29.538364174108633 ], [ -94.694361820076395, 29.538347174068942 ], [ -94.694587820164898, 29.538281174248951 ], [ -94.6946758195553, 29.538270174288694 ], [ -94.695128819648772, 29.538276173756255 ], [ -94.695260820349233, 29.538265173737255 ], [ -94.69534281990255, 29.538292174297002 ], [ -94.695461820432072, 29.538314174218968 ], [ -94.695581820622877, 29.538309173619865 ], [ -94.695625820567997, 29.538298173811043 ], [ -94.695675820306988, 29.538259173453049 ], [ -94.696015820498076, 29.538193173421639 ], [ -94.696619820690699, 29.538166173840189 ], [ -94.696713820657976, 29.538155173401972 ], [ -94.696996820519331, 29.538138174238657 ], [ -94.697204820782872, 29.538111173455544 ], [ -94.697323820831656, 29.538105173919995 ], [ -94.697468820871265, 29.538122173490223 ], [ -94.697531820253403, 29.538122174145023 ], [ -94.69774482065597, 29.538078173995345 ], [ -94.697958820387967, 29.538105173877618 ], [ -94.698071820719434, 29.538100174219565 ], [ -94.698222820607498, 29.538067173390328 ], [ -94.698430821227873, 29.538056173580195 ], [ -94.698669820621078, 29.537984173823872 ], [ -94.698707821423824, 29.537990173750647 ], [ -94.698751820769999, 29.538023173528742 ], [ -94.698839821389186, 29.538056173313525 ], [ -94.698914820729044, 29.538061174097603 ], [ -94.699009821278992, 29.538056174169025 ], [ -94.699053821498211, 29.538044173754969 ], [ -94.699078820754181, 29.538017173522167 ], [ -94.699078820692066, 29.537957173665468 ], [ -94.699210820742039, 29.537868173465103 ], [ -94.699537820883009, 29.537857173950666 ], [ -94.699631821365273, 29.537874173772199 ], [ -94.69968882120439, 29.537907173412329 ], [ -94.700116820819702, 29.537846173466125 ], [ -94.700166821130097, 29.537874173264218 ], [ -94.700285821065947, 29.537984173669475 ], [ -94.700386821757505, 29.538011173712526 ], [ -94.70041182124217, 29.538028173846488 ], [ -94.700462821498576, 29.538220173433533 ], [ -94.700499821485636, 29.538281173675724 ], [ -94.700568821688449, 29.538352173328033 ], [ -94.700663821024804, 29.53839117367291 ], [ -94.700889821688619, 29.538440173605846 ], [ -94.701185821804216, 29.538468173830328 ], [ -94.701462821203876, 29.538523173723888 ], [ -94.701644821570241, 29.538512173437841 ], [ -94.701701821726886, 29.538561174125903 ], [ -94.701726821645224, 29.538600173849989 ], [ -94.701751821534927, 29.538704173571784 ], [ -94.701820821890166, 29.538732174177504 ], [ -94.701940821788526, 29.538737173692031 ], [ -94.701984822325215, 29.538748173465777 ], [ -94.70205982175662, 29.538787173521019 ], [ -94.702097821678365, 29.538792173842211 ], [ -94.702185822219661, 29.538787174115594 ], [ -94.702216822167145, 29.538765174134966 ], [ -94.702223821403194, 29.538743173604196 ], [ -94.702216822212904, 29.538644174160911 ], [ -94.70231182207246, 29.538600173301464 ], [ -94.702481821562159, 29.538589173398201 ], [ -94.702550821726078, 29.538616174118172 ], [ -94.702625822224334, 29.538616173534276 ], [ -94.702757822528795, 29.538550173768211 ], [ -94.702971821710292, 29.538506173972731 ], [ -94.702996821836877, 29.538506174004599 ], [ -94.70316082249947, 29.538572173930671 ], [ -94.703229822263154, 29.538566173641886 ], [ -94.703311821747533, 29.538534173482716 ], [ -94.703443822568346, 29.538434173837 ], [ -94.703487822169961, 29.538418173958732 ], [ -94.703688822469701, 29.538401173312177 ], [ -94.703789822300706, 29.538357173750036 ], [ -94.703977821855403, 29.538319173474807 ], [ -94.704040822521065, 29.538313173201782 ], [ -94.70417282280377, 29.538335174063977 ], [ -94.704223822004423, 29.538357173995799 ], [ -94.704317822584869, 29.538434173847381 ], [ -94.704348822611408, 29.538434173209623 ], [ -94.704499822010945, 29.538379173638194 ], [ -94.70456282215639, 29.53833517317263 ], [ -94.704644822349621, 29.538225173379242 ], [ -94.704707822970079, 29.538170173858855 ], [ -94.704738822552315, 29.538159173210715 ], [ -94.704896823038183, 29.538154173577219 ], [ -94.704971822632331, 29.538159173669499 ], [ -94.705028822417617, 29.538170173863758 ], [ -94.705204822482017, 29.538236173963661 ], [ -94.705323822664312, 29.538258173159488 ], [ -94.705367822419106, 29.538247173785287 ], [ -94.705418823176586, 29.538225173682203 ], [ -94.705443822505103, 29.538181173610447 ], [ -94.705462822685618, 29.538104173406332 ], [ -94.70551282285588, 29.538066173520082 ], [ -94.705650822639811, 29.53805517362839 ], [ -94.705782823196415, 29.53802717358964 ], [ -94.705852822835539, 29.538005173276886 ], [ -94.705908823252145, 29.537972173879453 ], [ -94.706015823079625, 29.537879173274046 ], [ -94.706097823368751, 29.537769173547069 ], [ -94.706185822842372, 29.537670173154726 ], [ -94.706235823213277, 29.537631173517745 ], [ -94.706317822681328, 29.537598172967069 ], [ -94.706361822584114, 29.537598173185593 ], [ -94.706443822623314, 29.537620172999198 ], [ -94.706713823402168, 29.537615173164323 ], [ -94.706852823225219, 29.537642173382768 ], [ -94.706958823282804, 29.53764717297242 ], [ -94.707072822833837, 29.537642173450539 ], [ -94.707241822976044, 29.537620173489898 ], [ -94.707424823625075, 29.537625173252177 ], [ -94.707644823190947, 29.537592173583228 ], [ -94.707858823540306, 29.537642173143361 ], [ -94.707889823578981, 29.537631173600079 ], [ -94.707930823022437, 29.537598172975255 ], [ -94.707965822892618, 29.537554173029971 ], [ -94.708015823609315, 29.537548173359369 ], [ -94.70817282306983, 29.537548173163238 ], [ -94.708355823408311, 29.537526173456342 ], [ -94.708600823772656, 29.537427173712068 ], [ -94.708719823315292, 29.537416172896254 ], [ -94.708807823534102, 29.537444173051156 ], [ -94.708826823049463, 29.537466173290021 ], [ -94.708833823465085, 29.537510173673574 ], [ -94.708845823434729, 29.537537173334734 ], [ -94.70889682324497, 29.537565172990817 ], [ -94.708952823570684, 29.537576173738227 ], [ -94.709028823575025, 29.537570173083004 ], [ -94.709279823357051, 29.537460173382414 ], [ -94.709367823343882, 29.537438172980664 ], [ -94.709864823694772, 29.537405173045286 ], [ -94.710009823583079, 29.53736117337057 ], [ -94.710336823723679, 29.537229173117826 ], [ -94.710424824277709, 29.53720717295425 ], [ -94.710506823872009, 29.537196173283281 ], [ -94.710663824500031, 29.537212173012708 ], [ -94.710921823901884, 29.537069173124245 ], [ -94.71096582369492, 29.537053173552433 ], [ -94.711267823687479, 29.536904172948898 ], [ -94.711348824644631, 29.536877173152984 ], [ -94.711650824528249, 29.536855172874478 ], [ -94.711820824586283, 29.536822173203504 ], [ -94.711921824710657, 29.536822172620983 ], [ -94.711946824458309, 29.536833172673131 ], [ -94.711965824387832, 29.536860172658741 ], [ -94.712072824142467, 29.537135172849879 ], [ -94.712166824226486, 29.537207173161427 ], [ -94.712191823959785, 29.537207173277846 ], [ -94.712235824274174, 29.537190172909909 ], [ -94.712260824690262, 29.537096173364581 ], [ -94.712261824631483, 29.537068173473259 ], [ -94.71226782448899, 29.53697517342739 ], [ -94.712317824299717, 29.536915173111126 ], [ -94.712367824231308, 29.5368821727449 ], [ -94.71244382427524, 29.536865172996432 ], [ -94.712518824644491, 29.536821172781242 ], [ -94.712524824948858, 29.536788173261147 ], [ -94.712531824017049, 29.536695172749987 ], [ -94.712518824232831, 29.536656172691767 ], [ -94.712487824314309, 29.53660717276659 ], [ -94.712455824508737, 29.536525172707606 ], [ -94.712449823966935, 29.536486173215113 ], [ -94.712468824333726, 29.536453172618717 ], [ -94.712512824070529, 29.536425173167711 ], [ -94.712537824763402, 29.536420173062229 ], [ -94.712644824398012, 29.53643117284216 ], [ -94.712688824265427, 29.536414173224085 ], [ -94.712732824338318, 29.536387173210745 ], [ -94.712770824718845, 29.536376173158679 ], [ -94.712971824449411, 29.536381172927385 ], [ -94.713027824398239, 29.536376172791556 ], [ -94.713078824430397, 29.536359172720314 ], [ -94.713115824923349, 29.5363211730496 ], [ -94.713172824427943, 29.536293173141114 ], [ -94.713273824520797, 29.536271172689801 ], [ -94.713354824891155, 29.536266173261225 ], [ -94.713455824843493, 29.536249172862853 ], [ -94.713499824570363, 29.536227172786763 ], [ -94.713606824616903, 29.53613917287381 ], [ -94.71367582453145, 29.536101172537396 ], [ -94.713694824330261, 29.536073172856423 ], [ -94.713719824657986, 29.535952173107546 ], [ -94.713776824881677, 29.535919172781682 ], [ -94.71382682507911, 29.535925173043911 ], [ -94.713901824954505, 29.535952172456138 ], [ -94.713946824862262, 29.535958173061953 ], [ -94.713983824451631, 29.53595217237881 ], [ -94.714044824590744, 29.535917172985098 ], [ -94.714071824441618, 29.535903172605785 ], [ -94.714184825056989, 29.535809172636259 ], [ -94.71423582500411, 29.535793172533786 ], [ -94.714317825008791, 29.53578717258333 ], [ -94.71436182471227, 29.5357711728246 ], [ -94.714549824883434, 29.535644172971239 ], [ -94.714662825011004, 29.535661172702078 ], [ -94.71482082458526, 29.535633173031275 ], [ -94.715134825589416, 29.535490172759744 ], [ -94.715222824910569, 29.53540717219882 ], [ -94.71531682562896, 29.53524217228917 ], [ -94.715360825576951, 29.535193172584894 ], [ -94.715574825195532, 29.534995172770369 ], [ -94.715650825348177, 29.534907172701761 ], [ -94.715675825064935, 29.534852172793741 ], [ -94.715738825293315, 29.534791172206344 ], [ -94.715794825215937, 29.534764172088543 ], [ -94.715996825214262, 29.534747172625984 ], [ -94.71603382518721, 29.534736172116837 ], [ -94.716109824877293, 29.534692172197971 ], [ -94.716382825358366, 29.534492172299657 ], [ -94.716417825478203, 29.534467172439349 ], [ -94.716637825334118, 29.534274172061856 ], [ -94.716700825712664, 29.534230172416542 ], [ -94.717008825018908, 29.534120172069454 ], [ -94.717121825364444, 29.534098172271342 ], [ -94.717222826058119, 29.534087172429686 ], [ -94.717464825277091, 29.534113172024917 ], [ -94.717631825238968, 29.534131172448486 ], [ -94.717851825856243, 29.53413117221406 ], [ -94.71792682550084, 29.534142172028485 ], [ -94.718071826034588, 29.534202171923592 ], [ -94.718163825770432, 29.534263172688146 ], [ -94.718354825460636, 29.534389172300248 ], [ -94.718362825649763, 29.534402171892488 ], [ -94.718404825531138, 29.534472172661157 ], [ -94.718429826391031, 29.534582172169515 ], [ -94.718455826053571, 29.534587172651523 ], [ -94.718530825830271, 29.534494172206358 ], [ -94.718580825729262, 29.534466172496945 ], [ -94.718700826360617, 29.534433172691834 ], [ -94.719077826181461, 29.534427172589943 ], [ -94.719260825825501, 29.534438172225293 ], [ -94.719392825865924, 29.534433172658947 ], [ -94.720071826386175, 29.534257172158295 ], [ -94.721247826500019, 29.533811172307441 ], [ -94.72163082675084, 29.533651172210639 ], [ -94.722366826942107, 29.53337617201376 ], [ -94.722883826909069, 29.533167171716848 ], [ -94.723146827292297, 29.533062171524112 ], [ -94.723800826899208, 29.532776172100288 ], [ -94.724498827783876, 29.532452171427231 ], [ -94.724636827644062, 29.532413171823062 ], [ -94.724793827567069, 29.532342172048249 ], [ -94.725837827853184, 29.531995171493858 ], [ -94.725975827486977, 29.531940171408564 ], [ -94.726089827730362, 29.531918171754356 ], [ -94.726359827507309, 29.531819171291545 ], [ -94.726535827536338, 29.531780171198442 ], [ -94.726692827823427, 29.531763171722098 ], [ -94.72682482816316, 29.531741171751779 ], [ -94.727026828003616, 29.531664171803058 ], [ -94.727283827714885, 29.531532171551468 ], [ -94.727573828072764, 29.531461171731525 ], [ -94.727812828064728, 29.531367171837406 ], [ -94.728466828626395, 29.531147171013643 ], [ -94.728931828328271, 29.530932171400146 ], [ -94.729314828695365, 29.530828171201229 ], [ -94.730239829037899, 29.530503171154557 ], [ -94.730691829294727, 29.53031617135451 ], [ -94.730893828733699, 29.530189171215216 ], [ -94.731044828719391, 29.530057170674496 ], [ -94.731075828828111, 29.530035170572823 ], [ -94.731138828662338, 29.530024171083188 ], [ -94.731207828779645, 29.530029170879232 ], [ -94.731421829365928, 29.529991171296111 ], [ -94.73151582894144, 29.529963170701848 ], [ -94.731754829324899, 29.529870170688714 ], [ -94.732043829389525, 29.529721170858263 ], [ -94.732251828814839, 29.529655170444538 ], [ -94.732351829040041, 29.529655170587457 ], [ -94.732540829798978, 29.529716171328705 ], [ -94.732723829792334, 29.529732171013773 ], [ -94.732892829587385, 29.529759171181794 ], [ -94.732943829627104, 29.529759171340508 ], [ -94.733024829187514, 29.529748170431649 ], [ -94.733068829892645, 29.529726170462627 ], [ -94.73313882994745, 29.529666170999239 ], [ -94.733188829333201, 29.529589171011775 ], [ -94.73323882911788, 29.529572171241771 ], [ -94.733276829476182, 29.529578170406161 ], [ -94.733383829546028, 29.529627170592125 ], [ -94.733465829087621, 29.52963317103378 ], [ -94.733540829422864, 29.529600170986338 ], [ -94.733622829357387, 29.529534170906448 ], [ -94.733729829312054, 29.529517170935367 ], [ -94.733836829583026, 29.529523170940806 ], [ -94.733924829245979, 29.52953917062371 ], [ -94.733974829882371, 29.529534170832537 ], [ -94.734075829488631, 29.529512171232547 ], [ -94.73425783011308, 29.529489171196662 ], [ -94.734326830194121, 29.529467170472035 ], [ -94.734420829534841, 29.529429171142972 ], [ -94.734463830312492, 29.529429170974261 ], [ -94.734483830021901, 29.529434171016447 ], [ -94.734521829687466, 29.529473171087822 ], [ -94.734571830153172, 29.529478170500955 ], [ -94.734615830380775, 29.529473170407737 ], [ -94.73476082943364, 29.529440170506057 ], [ -94.734955830380372, 29.529313170441373 ], [ -94.735055830213298, 29.529286170550911 ], [ -94.735156830319113, 29.529242170516241 ], [ -94.735206830094882, 29.529209170937317 ], [ -94.735276830484864, 29.529132170928577 ], [ -94.735307830358906, 29.529115170941228 ], [ -94.735389830066239, 29.529110170394929 ], [ -94.735433829567953, 29.529121170907754 ], [ -94.735533829590921, 29.529120170995757 ], [ -94.735590830066471, 29.529104171091632 ], [ -94.735911830240738, 29.528851170611443 ], [ -94.735980830091577, 29.52884017067619 ], [ -94.736062830146892, 29.52885617079167 ], [ -94.736162829981396, 29.528900170994994 ], [ -94.736244830476352, 29.528900171024013 ], [ -94.736319830722209, 29.528851170372715 ], [ -94.736571830300221, 29.52871417011065 ], [ -94.736759830313389, 29.528614170640509 ], [ -94.736885830070506, 29.528520170501803 ], [ -94.736998830120925, 29.52847117065556 ], [ -94.737067830629513, 29.528460170191501 ], [ -94.73717483034909, 29.52842117057714 ], [ -94.737426830708003, 29.528196170237134 ], [ -94.737470830822673, 29.528179170814795 ], [ -94.737526830691877, 29.528190170504828 ], [ -94.737602830307921, 29.528190170673081 ], [ -94.737690830338494, 29.528146170464233 ], [ -94.737791830997764, 29.528113170142134 ], [ -94.737847830630514, 29.528080170420111 ], [ -94.737885830504638, 29.528047170066351 ], [ -94.737941831101978, 29.528014170337372 ], [ -94.73832583095087, 29.527964170048119 ], [ -94.738413831193014, 29.527942169919225 ], [ -94.738545831217706, 29.527887169977326 ], [ -94.738753831060137, 29.527766170547046 ], [ -94.739155830650986, 29.527612169919134 ], [ -94.739407831175271, 29.527590170045869 ], [ -94.739551830609457, 29.527628170167873 ], [ -94.739583831528435, 29.52761717008179 ], [ -94.739784830798712, 29.527447170469074 ], [ -94.74006783073483, 29.527260169741037 ], [ -94.74011783112023, 29.527210169852999 ], [ -94.740167831119777, 29.527172170140055 ], [ -94.740400830725051, 29.527051170422727 ], [ -94.740519831123606, 29.527012169623148 ], [ -94.740601831541426, 29.526974170142637 ], [ -94.740658831160161, 29.526935169898621 ], [ -94.740808831244678, 29.526781169750187 ], [ -94.740865831561607, 29.526748169997784 ], [ -94.740922830942438, 29.526726170002377 ], [ -94.740972831056865, 29.526726169595445 ], [ -94.741091831512392, 29.526759170424231 ], [ -94.74141283177805, 29.526940169841794 ], [ -94.741890831945483, 29.527105169857087 ], [ -94.742016832113748, 29.527160170323626 ], [ -94.742154831358732, 29.527187169907823 ], [ -94.742242831300686, 29.527176169806982 ], [ -94.742481831305, 29.527121169604385 ], [ -94.742752831462596, 29.527022169621755 ], [ -94.742890831378091, 29.526978170397815 ], [ -94.743072831555409, 29.526945169970038 ], [ -94.743167832062312, 29.52693917026772 ], [ -94.743236831484637, 29.526950169851588 ], [ -94.743251832296338, 29.526955170103161 ], [ -94.743519831840601, 29.527055170068333 ], [ -94.743569831594186, 29.527093170036043 ], [ -94.743576831566486, 29.527110170277698 ], [ -94.743563832018168, 29.527137169598603 ], [ -94.743456832019845, 29.527225169951944 ], [ -94.743431832396766, 29.527269170292914 ], [ -94.743431832168753, 29.527291169886308 ], [ -94.743469832011442, 29.527346170018813 ], [ -94.743658831832988, 29.527522170271954 ], [ -94.743695832342681, 29.527550170357756 ], [ -94.743859832270772, 29.527561169989326 ], [ -94.743922832368057, 29.527583170286356 ], [ -94.74396083227667, 29.527605169970123 ], [ -94.744035831792687, 29.52762116981642 ], [ -94.744249832315901, 29.527632170103686 ], [ -94.744331832508408, 29.527648169661113 ], [ -94.744513832213016, 29.527703170118954 ], [ -94.744563832838139, 29.52770916981839 ], [ -94.74468383210737, 29.527703170346808 ], [ -94.744758831875401, 29.52766517030409 ], [ -94.744821832553427, 29.527648170258676 ], [ -94.744897832216111, 29.527643169754036 ], [ -94.745110832329033, 29.527648169674755 ], [ -94.745375832819292, 29.527675169949841 ], [ -94.745601832871415, 29.527670169954078 ], [ -94.745947832954954, 29.527692170177552 ], [ -94.746098833104512, 29.527681169966684 ], [ -94.746161832703038, 29.527670169804637 ], [ -94.74629383317712, 29.527598170163976 ], [ -94.746343832426007, 29.527582169573247 ], [ -94.74637483316171, 29.527581169764719 ], [ -94.746406833126287, 29.527587170176204 ], [ -94.746538833008728, 29.527713170094771 ], [ -94.746639832464624, 29.527746170009337 ], [ -94.746708832729752, 29.527757169603216 ], [ -94.746821833013072, 29.527752169812441 ], [ -94.746985833162029, 29.527730169846112 ], [ -94.747098833160919, 29.527702169848933 ], [ -94.74721783346601, 29.527653170073101 ], [ -94.747274833106104, 29.527603170005737 ], [ -94.74740683345793, 29.527422170011715 ], [ -94.747437833421102, 29.52738917006311 ], [ -94.747475833287496, 29.527372169729979 ], [ -94.74755783328807, 29.527372170068251 ], [ -94.747632833193805, 29.52740517002907 ], [ -94.747708833577178, 29.527476169677634 ], [ -94.747802832835234, 29.527515169566453 ], [ -94.747859833486146, 29.527509170236566 ], [ -94.747890833029572, 29.527498169743215 ], [ -94.747972832984601, 29.527432170213299 ], [ -94.74804783302848, 29.527339169456074 ], [ -94.748135833686305, 29.527267169667997 ], [ -94.748217833238655, 29.527240169873906 ], [ -94.748324833363199, 29.527229169749063 ], [ -94.748550833054964, 29.527217170184656 ], [ -94.748613833515506, 29.527201169666622 ], [ -94.748745833549634, 29.527140170149831 ], [ -94.748802833403388, 29.52711816956813 ], [ -94.748965833693404, 29.527096169725816 ], [ -94.749606833875703, 29.526909169970825 ], [ -94.749641833362617, 29.526891169847389 ], [ -94.749776833578466, 29.52682616928108 ], [ -94.749915833785664, 29.526788169972662 ], [ -94.75000983327061, 29.526733169548454 ], [ -94.750550834089736, 29.526494169827028 ], [ -94.750852834369326, 29.5261751695101 ], [ -94.75150683443465, 29.525950169300891 ], [ -94.751657834259163, 29.525923169300118 ], [ -94.751838834555784, 29.525912169094877 ], [ -94.751946833919277, 29.525906169134998 ], [ -94.752116834310883, 29.525830169220225 ], [ -94.752179834303504, 29.525753169450841 ], [ -94.752198834356236, 29.525670169386125 ], [ -94.752185833879707, 29.525560169303365 ], [ -94.752204834223278, 29.52543916977773 ], [ -94.752255833980755, 29.525406169627885 ], [ -94.752531833846717, 29.525318168952253 ], [ -94.752649834663657, 29.525297168923029 ], [ -94.752871834542333, 29.525258169041287 ], [ -94.752972834302199, 29.525258169408847 ], [ -94.753003834165938, 29.525274169267277 ], [ -94.753066834361334, 29.525335169614536 ], [ -94.753072834165494, 29.525395169644145 ], [ -94.753091834500964, 29.525434169164168 ], [ -94.753122834811833, 29.525461169680664 ], [ -94.753305834410142, 29.525511169032264 ], [ -94.753342834231432, 29.52551116901412 ], [ -94.753550834398794, 29.525412169341319 ], [ -94.753714834811106, 29.525396169039379 ], [ -94.753745834962345, 29.525407169490972 ], [ -94.753877834746973, 29.525528169103353 ], [ -94.753883835038195, 29.52558816909411 ], [ -94.753871834491676, 29.525759169553194 ], [ -94.753858834200486, 29.525797169535164 ], [ -94.753889834983909, 29.525819169736067 ], [ -94.754003834811044, 29.525819169663098 ], [ -94.754198834926669, 29.52579716972091 ], [ -94.754443835294396, 29.525731169522054 ], [ -94.75458183442727, 29.52567716896689 ], [ -94.754732835031731, 29.525600169576535 ], [ -94.754933835077949, 29.525567168869202 ], [ -94.755040835118137, 29.525517169037734 ], [ -94.755179834854502, 29.525413169376229 ], [ -94.755179834955285, 29.525385169322341 ], [ -94.755053834716634, 29.52535216918406 ], [ -94.75502283454604, 29.525336168899408 ], [ -94.754990834659097, 29.525308169206639 ], [ -94.754978834597097, 29.525253169382918 ], [ -94.75499083523917, 29.525187169096341 ], [ -94.755022834765015, 29.525116169083894 ], [ -94.755091835415897, 29.525061169416997 ], [ -94.755255834949509, 29.52496216924013 ], [ -94.755305834900781, 29.524907169185138 ], [ -94.755355835362764, 29.524868169033372 ], [ -94.755506834983834, 29.524792169170262 ], [ -94.755563834736009, 29.524748168959828 ], [ -94.755607835030176, 29.524704169455291 ], [ -94.755708834885695, 29.524555169408234 ], [ -94.75577783548745, 29.524511169167553 ], [ -94.755827835352918, 29.524506169413844 ], [ -94.755974835026151, 29.524524168882362 ], [ -94.756003834921472, 29.524528169392251 ], [ -94.756167835094118, 29.524533168877422 ], [ -94.756180835657688, 29.524537168782306 ], [ -94.756236834739113, 29.524555168759065 ], [ -94.756317835347289, 29.524621169465391 ], [ -94.756775835866193, 29.524616168796957 ], [ -94.756808834953546, 29.524616169032765 ], [ -94.756981835067194, 29.524642168848313 ], [ -94.756997835048281, 29.524644169209612 ], [ -94.757060835503282, 29.524633169447039 ], [ -94.757097835576218, 29.524605169265911 ], [ -94.757124835238869, 29.524567169170613 ], [ -94.75717383589614, 29.524501168571 ], [ -94.757242835292416, 29.524429169317816 ], [ -94.757292835429652, 29.524407168743405 ], [ -94.75733083514551, 29.524402168538341 ], [ -94.757412835438856, 29.5244131689977 ], [ -94.757556835642106, 29.524490169373916 ], [ -94.757594835396958, 29.524490169230937 ], [ -94.757657835885098, 29.524473168668166 ], [ -94.757701835486884, 29.524484169078317 ], [ -94.757718835279533, 29.524499169117604 ], [ -94.75773983586771, 29.524517169090302 ], [ -94.757795835304279, 29.524633168554068 ], [ -94.757833835882494, 29.524655168784758 ], [ -94.757871835733312, 29.524660168699938 ], [ -94.757951835970232, 29.524575169189646 ], [ -94.757971835317875, 29.524556169027512 ], [ -94.758015836200101, 29.524540168820614 ], [ -94.758103835750489, 29.524540168981211 ], [ -94.758236836224157, 29.524573169003332 ], [ -94.758305835548754, 29.524567168660184 ], [ -94.758695835783612, 29.52451216903204 ], [ -94.758991835429796, 29.524444169235366 ], [ -94.759317835825058, 29.524370168469169 ], [ -94.75933883620543, 29.524368168544243 ], [ -94.759613836478778, 29.524337169188577 ], [ -94.759833835789607, 29.524326168483341 ], [ -94.759927836368618, 29.524342169001439 ], [ -94.760034835793235, 29.524425168971042 ], [ -94.760110836573048, 29.524458169265891 ], [ -94.760229836688296, 29.524480168555709 ], [ -94.760418836646181, 29.52445816887219 ], [ -94.760468836039678, 29.524436168913798 ], [ -94.76051883593577, 29.524375169188115 ], [ -94.760544836477493, 29.524364168885473 ], [ -94.760613836331856, 29.524359168667136 ], [ -94.760694835876777, 29.524398168784742 ], [ -94.760795836490004, 29.524502169282229 ], [ -94.760852836390598, 29.524546168485603 ], [ -94.760902836532409, 29.524568169184032 ], [ -94.761134836741434, 29.524640169173274 ], [ -94.761222836808599, 29.524662168591817 ], [ -94.761329836980309, 29.524667168896706 ], [ -94.761449836557318, 29.524634168453847 ], [ -94.761531836260772, 29.524601169175657 ], [ -94.761590836735067, 29.524565168916268 ], [ -94.761631836234073, 29.524541168583685 ], [ -94.761707836397775, 29.524453168939271 ], [ -94.761789836313795, 29.524398169124353 ], [ -94.762015837178751, 29.524310169127837 ], [ -94.762122836536093, 29.524305168524094 ], [ -94.76221683646078, 29.524327168821017 ], [ -94.762248837140703, 29.524327168566266 ], [ -94.762279836999099, 29.524310168817841 ], [ -94.762323837262514, 29.52420616835299 ], [ -94.76234283681886, 29.524184169014333 ], [ -94.762418836944207, 29.524151168602216 ], [ -94.762512837076358, 29.524151168313317 ], [ -94.762575836515197, 29.524167169172237 ], [ -94.762707836766666, 29.524266168476881 ], [ -94.762776836840132, 29.524299169215258 ], [ -94.762914836678462, 29.524327168512116 ], [ -94.763895836872507, 29.52441516886838 ], [ -94.764122837381791, 29.524476168852058 ], [ -94.764279836846129, 29.524498168807984 ], [ -94.764631837342961, 29.524646169223537 ], [ -94.764901837715328, 29.524806169140668 ], [ -94.765278837468628, 29.524905169003304 ], [ -94.765694837686425, 29.524872168672012 ], [ -94.765920837434166, 29.524927168532013 ], [ -94.766731838086244, 29.525175168406282 ], [ -94.766945837630345, 29.525373169283409 ], [ -94.767096837640537, 29.52544516848284 ], [ -94.767529838399099, 29.525676168625463 ], [ -94.767649837717656, 29.52566516930921 ], [ -94.767762838191331, 29.525649168463335 ], [ -94.767951837883572, 29.525610168722658 ], [ -94.768058838043544, 29.525616168499376 ], [ -94.768356838687509, 29.525741169243091 ], [ -94.768385838558075, 29.525753169215331 ], [ -94.76852983811267, 29.525830169148939 ], [ -94.768605838822339, 29.525847169162677 ], [ -94.768995838584203, 29.525880168846815 ], [ -94.769252838702741, 29.525935169107434 ], [ -94.769466838799787, 29.526007168758685 ], [ -94.76963683908015, 29.526089168884706 ], [ -94.769661838607377, 29.526128168813063 ], [ -94.769661838250272, 29.526430169296557 ], [ -94.769730838344586, 29.52646916862065 ], [ -94.770057838406345, 29.526568169415672 ], [ -94.770283838687774, 29.526584169300218 ], [ -94.770382839072198, 29.526604168604717 ], [ -94.770585838506804, 29.526645169342615 ], [ -94.770705839360545, 29.526694168674855 ], [ -94.770780838644825, 29.526667169401982 ], [ -94.771026839523131, 29.526502168877727 ], [ -94.771076838856715, 29.526430169283866 ], [ -94.771164839498908, 29.526403168526723 ], [ -94.771195839326268, 29.526403168755245 ], [ -94.771340839167593, 29.526447169188884 ], [ -94.771409839442626, 29.526508168850647 ], [ -94.771524839570233, 29.526654169248129 ], [ -94.771679839149357, 29.526849168862139 ], [ -94.771761839481101, 29.526860169435853 ], [ -94.771843838863788, 29.526854168826148 ], [ -94.771912839645623, 29.52686516890979 ], [ -94.772057839040926, 29.526915169012053 ], [ -94.772208839297519, 29.52693716925198 ], [ -94.772723839535274, 29.527234168709565 ], [ -94.77276783968135, 29.527284169095505 ], [ -94.773012839382574, 29.527487168662049 ], [ -94.773069839551766, 29.527493169534758 ], [ -94.773113839176744, 29.52747616939903 ], [ -94.773321839959522, 29.527454169000315 ], [ -94.773780839924186, 29.527570168677375 ], [ -94.7741958398165, 29.527768169529054 ], [ -94.774339840336793, 29.527812169312682 ], [ -94.774503840217719, 29.527971168889284 ], [ -94.774578840569902, 29.528027169476772 ], [ -94.774597840112122, 29.528186169072292 ], [ -94.774553840237772, 29.528384169377162 ], [ -94.774603840343488, 29.528422169092881 ], [ -94.774748840420358, 29.528430169075452 ], [ -94.774798839704005, 29.528433168852544 ], [ -94.774804840601377, 29.528412169032755 ], [ -94.774804840292319, 29.52829616891826 ], [ -94.774823840508716, 29.528225169037128 ], [ -94.77488084060775, 29.528153169093819 ], [ -94.77490584020353, 29.528137169493515 ], [ -94.774999839866553, 29.528126168731411 ], [ -94.775169839801933, 29.528164169084938 ], [ -94.77530884011064, 29.528181169171244 ], [ -94.775339840148533, 29.528192169020944 ], [ -94.775389840402866, 29.528307168974504 ], [ -94.775439840003656, 29.528373169120645 ], [ -94.775534840534092, 29.528428168847626 ], [ -94.775603840338178, 29.528450169342651 ], [ -94.775740840268028, 29.5284701691895 ], [ -94.775829840753289, 29.528483168895033 ], [ -94.77599384015798, 29.528527169533714 ], [ -94.776251840722608, 29.528555169163848 ], [ -94.776383840835138, 29.528588168806831 ], [ -94.776540840859425, 29.528709169298672 ], [ -94.776592840845652, 29.528726169241661 ], [ -94.776685840189387, 29.528731168870575 ], [ -94.776722840592086, 29.528753168954779 ], [ -94.776804840607383, 29.52885816881814 ], [ -94.776905841108004, 29.52894016966529 ], [ -94.777206840829024, 29.529078169306214 ], [ -94.777496840752804, 29.529281169680463 ], [ -94.778017840858936, 29.529501168892658 ], [ -94.778030840696999, 29.52952916942429 ], [ -94.77803684076072, 29.529699169100724 ], [ -94.778080841358658, 29.529776169772003 ], [ -94.778118840784046, 29.529804168974081 ], [ -94.778376840847287, 29.529837168973962 ], [ -94.778426840865251, 29.529853169634286 ], [ -94.77852084082943, 29.529919169512773 ], [ -94.778640840787233, 29.529974169122827 ], [ -94.778797841745032, 29.529985169171216 ], [ -94.778820841465077, 29.52998016947334 ], [ -94.778917841347592, 29.529963168996581 ], [ -94.778948841237366, 29.52997516925511 ], [ -94.778967841763944, 29.530013169764377 ], [ -94.778973840989579, 29.530139169712136 ], [ -94.778998841760497, 29.53016216979346 ], [ -94.779149840988524, 29.530206169419142 ], [ -94.779369841725526, 29.530239169292845 ], [ -94.779476841775917, 29.530239169204552 ], [ -94.779514841525682, 29.530255169754845 ], [ -94.779552841484445, 29.530283169448282 ], [ -94.77960884109703, 29.53036516930209 ], [ -94.779665841136563, 29.530514169316103 ], [ -94.779677841086368, 29.530536169218717 ], [ -94.779703841374598, 29.530552169161233 ], [ -94.779791841451768, 29.530558169824687 ], [ -94.779835842014037, 29.530591169370361 ], [ -94.77984184106559, 29.53064016973946 ], [ -94.77979784156085, 29.53073916986369 ], [ -94.779803841595438, 29.530783169265991 ], [ -94.779872841923179, 29.530877169578883 ], [ -94.779979841922867, 29.530954169445344 ], [ -94.780193841382811, 29.531058169746025 ], [ -94.780400841989021, 29.531229169235221 ], [ -94.780419842151062, 29.531262169398278 ], [ -94.780481841859697, 29.531416169799531 ], [ -94.780495842102638, 29.531449170123281 ], [ -94.780551841576965, 29.531509169282945 ], [ -94.780872842087263, 29.531768169356873 ], [ -94.780922841680209, 29.531911169387374 ], [ -94.780973841892902, 29.53198217002846 ], [ -94.781054841449475, 29.532026170047761 ], [ -94.781092841472926, 29.532092170141542 ], [ -94.781148841831879, 29.532301169618737 ], [ -94.781186842018244, 29.532367169682004 ], [ -94.781312841896039, 29.532538169870097 ], [ -94.78138784226546, 29.532604170155782 ], [ -94.781450841848766, 29.532670169973098 ], [ -94.78148284190317, 29.532736170184904 ], [ -94.781526842568709, 29.533011169706452 ], [ -94.781563842081795, 29.533055170344333 ], [ -94.781658841819635, 29.533110169914806 ], [ -94.78168984200515, 29.533154169894868 ], [ -94.781689841944512, 29.533182169674692 ], [ -94.781677842433609, 29.533225170269397 ], [ -94.781645842213834, 29.533253169640471 ], [ -94.781620842506982, 29.533302170357988 ], [ -94.781658842270218, 29.533517169844 ], [ -94.781651841814593, 29.533561169661795 ], [ -94.781595842215182, 29.533611170306493 ], [ -94.781563841647682, 29.533665170476837 ], [ -94.781563842271908, 29.533715170490272 ], [ -94.781588842225432, 29.533825170472475 ], [ -94.781620842248245, 29.533907170364202 ], [ -94.781701842593165, 29.534012170487497 ], [ -94.781865842229905, 29.534183170109323 ], [ -94.782079841811907, 29.534337170642019 ], [ -94.782242842532341, 29.534414170351244 ], [ -94.782286842257761, 29.534469170068355 ], [ -94.782324842751464, 29.534480170581098 ], [ -94.782494842456074, 29.534744169963741 ], [ -94.782638842404438, 29.534903170427292 ], [ -94.782846842765551, 29.535074170072136 ], [ -94.782943842492443, 29.535123170762819 ], [ -94.783242843127212, 29.535277170121276 ], [ -94.783757842777277, 29.535640170825836 ], [ -94.784135842934887, 29.536124170587236 ], [ -94.784140843340964, 29.536163170570877 ], [ -94.784160843107074, 29.536322170670847 ], [ -94.784127843303239, 29.536441170766384 ], [ -94.784109843194813, 29.536509170498082 ], [ -94.783902842983281, 29.536900170377507 ], [ -94.783804842511344, 29.537223171058276 ], [ -94.78379584331509, 29.537257170929664 ], [ -94.783826842407223, 29.537504171083555 ], [ -94.783839842643374, 29.537604171031539 ], [ -94.784034842529948, 29.538104170658492 ], [ -94.784323842997082, 29.538731171065773 ], [ -94.784379843426464, 29.538825171254338 ], [ -94.784367842733019, 29.538891170729045 ], [ -94.784411843390799, 29.538929171342716 ], [ -94.784436843595032, 29.539006170739306 ], [ -94.784448843407034, 29.539111170703819 ], [ -94.784442843385449, 29.539276171013064 ], [ -94.78448084296619, 29.539474170880009 ], [ -94.784549842971501, 29.539617171396085 ], [ -94.78456084299728, 29.539631171417462 ], [ -94.784643842963433, 29.539743170981463 ], [ -94.78488284355582, 29.540007170902122 ], [ -94.785058843047622, 29.540084171202722 ], [ -94.785197843695329, 29.540123171409018 ], [ -94.785272843265972, 29.540211171094423 ], [ -94.785385843334893, 29.540332171342826 ], [ -94.78542384342137, 29.540404171262431 ], [ -94.785555843047106, 29.540469171417907 ], [ -94.785794843352463, 29.540662171706543 ], [ -94.785920843301255, 29.540695171649912 ], [ -94.786002843258899, 29.540756171025237 ], [ -94.786234844021635, 29.540954171107622 ], [ -94.786347843990342, 29.540959171077965 ], [ -94.786467843247294, 29.541014171098787 ], [ -94.78658684365513, 29.541163171254567 ], [ -94.786600843537315, 29.541177171738521 ], [ -94.786617843665354, 29.541188171753831 ], [ -94.78666884399891, 29.541245171777192 ], [ -94.786668843405877, 29.541300171666851 ], [ -94.786586843820672, 29.541454171403679 ], [ -94.786517843844749, 29.541526171687167 ], [ -94.786479843339649, 29.541603171248333 ], [ -94.786448843342711, 29.541784171409475 ], [ -94.78642384426044, 29.541850171212662 ], [ -94.786265843391448, 29.542070171951838 ], [ -94.78625384401667, 29.542103171802662 ], [ -94.786272843925872, 29.542136171829821 ], [ -94.786404844062886, 29.542186171735334 ], [ -94.786492843921508, 29.542241171605436 ], [ -94.786718844173365, 29.542505171543702 ], [ -94.786737843690929, 29.542543171554826 ], [ -94.786743844044722, 29.542609171469866 ], [ -94.786731843595618, 29.542653171842996 ], [ -94.786598843616915, 29.542934172105173 ], [ -94.786649843557939, 29.5430381716677 ], [ -94.786938844036882, 29.543330171803717 ], [ -94.787020843975355, 29.543396172310953 ], [ -94.787120844104905, 29.543544172169003 ], [ -94.787284844037174, 29.543715172166792 ], [ -94.787485843931933, 29.543858171630436 ], [ -94.787611843914405, 29.544023172373066 ], [ -94.787843844320491, 29.544402172030974 ], [ -94.787894844201404, 29.544463172057863 ], [ -94.787929844661875, 29.544489172207136 ], [ -94.788026844508863, 29.544562172336001 ], [ -94.788114844702278, 29.544644172118716 ], [ -94.788120844020938, 29.544721172388098 ], [ -94.78809584389947, 29.544815172075509 ], [ -94.788095844073894, 29.544870171923201 ], [ -94.788114844340726, 29.545002172622475 ], [ -94.788076844449151, 29.545161172625242 ], [ -94.788089843888059, 29.545200172433233 ], [ -94.788183844630211, 29.545354172369461 ], [ -94.788384844352123, 29.545596172144286 ], [ -94.788485844663697, 29.545700172274294 ], [ -94.788641844496638, 29.545837171951355 ], [ -94.788862844875098, 29.54598117199296 ], [ -94.78918984496444, 29.546162172681012 ], [ -94.789246844829165, 29.546215172110248 ], [ -94.789390844616321, 29.546349172778459 ], [ -94.789414844391516, 29.546377172578676 ], [ -94.78946684455525, 29.54643717235178 ], [ -94.789556845158032, 29.546507172699314 ], [ -94.789826844981164, 29.546720172601994 ], [ -94.789917844811029, 29.546792172397922 ], [ -94.789985844840999, 29.546895172711853 ], [ -94.790190845321163, 29.547204172404211 ], [ -94.790236845082646, 29.547273172248548 ], [ -94.790254845058854, 29.547310172308261 ], [ -94.790270844606326, 29.547344172358763 ], [ -94.790309845291645, 29.547427172800219 ], [ -94.790319845152098, 29.547448172286447 ], [ -94.790336845411332, 29.547483172609613 ], [ -94.79041984479116, 29.547658172545123 ], [ -94.790529845140355, 29.547892172416116 ], [ -94.790580844718278, 29.548213172594654 ], [ -94.790611845524424, 29.548406172452207 ], [ -94.79062884526995, 29.548511172642787 ], [ -94.790717845549139, 29.548739173361565 ], [ -94.790894844886409, 29.549188172922261 ], [ -94.790960845014283, 29.549355173232531 ], [ -94.791299844991158, 29.549981172770753 ], [ -94.791617845238534, 29.550421173194252 ], [ -94.792156845622188, 29.550811173036081 ], [ -94.79253684573915, 29.550942173610885 ], [ -94.792655846012934, 29.550984173649745 ], [ -94.793173846143588, 29.551116173479951 ], [ -94.793341845802004, 29.551072173083394 ], [ -94.793825846582067, 29.550948172876563 ], [ -94.794510846740977, 29.550489172728458 ], [ -94.795294846245156, 29.54990917255914 ], [ -94.795968846484897, 29.5493771732299 ], [ -94.796826846278663, 29.548700172919823 ], [ -94.798159846544721, 29.547775172523806 ], [ -94.798818846760042, 29.54744617234736 ], [ -94.800558847729889, 29.546726172376076 ], [ -94.801859847899522, 29.54619717185296 ], [ -94.802995847906587, 29.545726171433806 ], [ -94.80423484826926, 29.544872172083767 ], [ -94.804255848662194, 29.544858171407316 ], [ -94.805436848529567, 29.543596171207287 ], [ -94.806188848480772, 29.542564171282596 ], [ -94.806250849281128, 29.542452170706689 ], [ -94.806274849335963, 29.542408171482361 ], [ -94.806346849273012, 29.54227917127524 ], [ -94.806371849025766, 29.542236171260598 ], [ -94.806791848996156, 29.541485170565927 ], [ -94.806995848584179, 29.541105170843906 ], [ -94.807638848973738, 29.539911170545334 ], [ -94.808752849788178, 29.537666170113038 ], [ -94.808756849676527, 29.537656169934085 ], [ -94.809165849795448, 29.536893169508577 ], [ -94.809269849895188, 29.536698169690471 ], [ -94.809365849541706, 29.536518170123802 ], [ -94.80938484914013, 29.536482170062111 ], [ -94.809440849460756, 29.536374170162016 ], [ -94.809460849789531, 29.536339169327601 ], [ -94.810048849551819, 29.535241169519704 ], [ -94.810565849741891, 29.534358169630952 ], [ -94.811229849375025, 29.533228169390437 ], [ -94.811465849733835, 29.532839168588914 ], [ -94.812367849581818, 29.531361168339934 ], [ -94.813651850669615, 29.529509167822017 ], [ -94.814295850264514, 29.528675168220857 ], [ -94.814965850942343, 29.527810167461464 ], [ -94.815737851188686, 29.526925167437678 ], [ -94.815749850263373, 29.526911167696628 ], [ -94.815784850234152, 29.526869167947499 ], [ -94.815797851079523, 29.52685616742793 ], [ -94.815814850370558, 29.526835167223972 ], [ -94.81586785101706, 29.526775167201514 ], [ -94.815886850290369, 29.526755167665943 ], [ -94.816662850380595, 29.525865167687094 ], [ -94.818744851598183, 29.523722166462445 ], [ -94.820775851627175, 29.521999166793311 ], [ -94.822946852155866, 29.52040416613595 ], [ -94.825230852392153, 29.519083165445053 ], [ -94.825564852894104, 29.518932165238436 ], [ -94.828123853885771, 29.51777916495918 ], [ -94.830334854281276, 29.517200165454838 ], [ -94.833386854468387, 29.516911164713516 ], [ -94.837344856251519, 29.517007164887293 ], [ -94.848452859041387, 29.517094164856882 ], [ -94.857946861020309, 29.51678516378114 ], [ -94.862798861820096, 29.516351164085815 ], [ -94.86298986262716, 29.516334163726135 ], [ -94.863975862973405, 29.516246163486706 ], [ -94.867956863214062, 29.515914163311734 ], [ -94.871353864268215, 29.515305163745278 ], [ -94.873970865494059, 29.514899163593203 ], [ -94.875206865321672, 29.514676163390391 ], [ -94.875555865248486, 29.514555163246431 ], [ -94.876603866245489, 29.51419216309333 ], [ -94.876953865973405, 29.514072162601664 ], [ -94.876970865718164, 29.514067162508159 ], [ -94.87700686548213, 29.514059162432222 ], [ -94.877022866095018, 29.514053162755914 ], [ -94.877040866114513, 29.51404716245991 ], [ -94.877387865952798, 29.513931162726781 ], [ -94.878254866401008, 29.513643162919191 ], [ -94.878431866183803, 29.513586162469064 ], [ -94.878781866148714, 29.513476162656708 ], [ -94.878962866094071, 29.513419162982618 ], [ -94.879142866733005, 29.513361162600805 ], [ -94.879452865985343, 29.513261162746716 ], [ -94.879917866183334, 29.513113162847912 ], [ -94.881469866933088, 29.512624162872608 ], [ -94.881901866908265, 29.51248916230135 ], [ -94.882132867266179, 29.512386162438393 ], [ -94.882142867170103, 29.512381162714146 ], [ -94.882172866860046, 29.512369162789167 ], [ -94.882183866952332, 29.512365162631426 ], [ -94.882209866923816, 29.512353162252364 ], [ -94.882290867298678, 29.51231916214422 ], [ -94.882317867402293, 29.512308162214492 ], [ -94.882565866854023, 29.51221916213056 ], [ -94.883312867177935, 29.511952162274113 ], [ -94.883562867270811, 29.511864161873554 ], [ -94.883607867343798, 29.511848161788645 ], [ -94.883741867248247, 29.511801162588878 ], [ -94.883787867467504, 29.511786162001187 ], [ -94.883803867290837, 29.511780162412396 ], [ -94.883854867372762, 29.51176116179958 ], [ -94.883871867390766, 29.511756161759745 ], [ -94.885653868365182, 29.511079162430814 ], [ -94.886319867914182, 29.510827161458412 ], [ -94.889327869160979, 29.509515161907114 ], [ -94.890882869193703, 29.508768160918642 ], [ -94.892095869785237, 29.508187160953295 ], [ -94.892585870160346, 29.507913160737338 ], [ -94.894159869576768, 29.507035160737018 ], [ -94.896035870431618, 29.505974160473162 ], [ -94.896847870299567, 29.505515160676428 ], [ -94.899222871311466, 29.504029160451729 ], [ -94.901376871802924, 29.502560159750246 ], [ -94.903368872359067, 29.501058159025433 ], [ -94.905294872413691, 29.499571158703056 ], [ -94.905800873013504, 29.499242158699154 ], [ -94.908475873659739, 29.497511158432673 ], [ -94.90891587354453, 29.497294158723772 ], [ -94.909182873496036, 29.497207158735012 ], [ -94.909287873449941, 29.497172158494777 ], [ -94.909339873238494, 29.497156158451372 ], [ -94.909583873185852, 29.497079158593728 ], [ -94.909604873388972, 29.497073158303063 ], [ -94.909713873885806, 29.497049158520845 ], [ -94.909614873424644, 29.496415157944316 ], [ -94.909669873547088, 29.495901157653872 ], [ -94.909898873742605, 29.495048157676656 ], [ -94.910183873182646, 29.49427415803936 ], [ -94.910601874071133, 29.493547157363302 ], [ -94.910894873638227, 29.493626157197493 ], [ -94.911194873673992, 29.492894157007434 ], [ -94.91075887413345, 29.492705157386695 ], [ -94.910447873549714, 29.492516157480168 ], [ -94.910451873316532, 29.492377157439385 ], [ -94.9105308730974, 29.492140156979403 ], [ -94.910736874122051, 29.491492156755928 ], [ -94.910775874006973, 29.491413157166949 ], [ -94.91117887340441, 29.49150015712355 ], [ -94.911257873397432, 29.491545156987929 ], [ -94.911336873577426, 29.491556156705165 ], [ -94.911463873985667, 29.491587156792249 ], [ -94.91145587426675, 29.491595156767854 ], [ -94.911526874160018, 29.491627157243499 ], [ -94.91159987335665, 29.491626156803097 ], [ -94.912036874189965, 29.490951157266295 ], [ -94.912285874452579, 29.490223156858324 ], [ -94.912690874143806, 29.489737156730357 ], [ -94.912690873679381, 29.489440156212844 ], [ -94.913313874256872, 29.488333156393836 ], [ -94.913656874592391, 29.48809115607191 ], [ -94.913843873918125, 29.487308156146941 ], [ -94.914777874898562, 29.486310156084837 ], [ -94.914902874261003, 29.485905155860781 ], [ -94.91533887437248, 29.485365155383036 ], [ -94.915213874112965, 29.485149155443313 ], [ -94.915525874069004, 29.48514915572763 ], [ -94.915774874529703, 29.484906155593734 ], [ -94.91596187425597, 29.484663155892733 ], [ -94.916366874690766, 29.484340155132493 ], [ -94.916678875214757, 29.483773154953411 ], [ -94.917114874845467, 29.483719155681047 ], [ -94.917301874952415, 29.483044155520052 ], [ -94.917488874474813, 29.482531154596554 ], [ -94.917581874751264, 29.482289154660595 ], [ -94.917881874675672, 29.482055154817111 ], [ -94.917893875437485, 29.4820461544893 ], [ -94.917963874769015, 29.481865154457825 ], [ -94.918018874982963, 29.481722154479648 ], [ -94.918298875361828, 29.481371154757738 ], [ -94.918672875133922, 29.480642154158488 ], [ -94.918890875460107, 29.480534154161386 ], [ -94.919139875704545, 29.480454154305068 ], [ -94.919575875554202, 29.479833154152647 ], [ -94.91973187521242, 29.479671154539787 ], [ -94.920074875560758, 29.479050153938498 ], [ -94.920510875245938, 29.478160153879088 ], [ -94.92091587594544, 29.477944153928998 ], [ -94.92103087565431, 29.477894153521543 ], [ -94.921289875942918, 29.477782154220186 ], [ -94.921527875286159, 29.477266153728678 ], [ -94.921663875900336, 29.476972153724805 ], [ -94.921912876165663, 29.476460153927633 ], [ -94.922255876264614, 29.476352153256364 ], [ -94.922535875859097, 29.476028153653047 ], [ -94.922702875544772, 29.475677153483318 ], [ -94.922753875670011, 29.475569153744726 ], [ -94.922753875853232, 29.475299153686315 ], [ -94.923003875586161, 29.474975153114961 ], [ -94.923221875884281, 29.474705153268157 ], [ -94.923351876473504, 29.474576153285675 ], [ -94.923439875738438, 29.474490153252589 ], [ -94.923631876140078, 29.474033152967174 ], [ -94.923813876534766, 29.473599153255943 ], [ -94.924031876110035, 29.473437152717846 ], [ -94.924560876835244, 29.47276215250545 ], [ -94.924779876179954, 29.472659153084507 ], [ -94.925011876947863, 29.472483152517526 ], [ -94.92505987621719, 29.472412152745886 ], [ -94.925433876755562, 29.470873152322447 ], [ -94.925585876318081, 29.470856152408306 ], [ -94.925636876880745, 29.470435151946795 ], [ -94.925691876959306, 29.469986151718967 ], [ -94.925882876160045, 29.470019152100928 ], [ -94.926291876387523, 29.470513151957078 ], [ -94.92658687634345, 29.470551152588882 ], [ -94.927389877272361, 29.470654152418856 ], [ -94.927735876745089, 29.471201152148449 ], [ -94.928338877033383, 29.471434152732559 ], [ -94.928417877555702, 29.471530152464371 ], [ -94.928807876902098, 29.472103152904289 ], [ -94.928782877197705, 29.472349152617923 ], [ -94.92867587696098, 29.472444152491324 ], [ -94.92862187771216, 29.472638152330944 ], [ -94.928622877049492, 29.472858152538894 ], [ -94.928590877929764, 29.472967152315626 ], [ -94.928440877665352, 29.473178153010366 ], [ -94.92829287744425, 29.473363153122239 ], [ -94.928227877469467, 29.473636152795848 ], [ -94.928209877722892, 29.47385615266808 ], [ -94.92813087771016, 29.474131153336351 ], [ -94.927994877133003, 29.474430153008772 ], [ -94.92790287724705, 29.474623153234297 ], [ -94.927821876850643, 29.474854153340271 ], [ -94.927852877809599, 29.475078152961451 ], [ -94.927971877152856, 29.475312153094865 ], [ -94.928099877253189, 29.47549815348258 ], [ -94.928141877909169, 29.475648152926141 ], [ -94.928064876937924, 29.475880153496753 ], [ -94.928043876896851, 29.475945153511077 ], [ -94.928083877294668, 29.476260153640879 ], [ -94.927993876919714, 29.476623153626399 ], [ -94.927989877367992, 29.476694153813938 ], [ -94.927974877122907, 29.476988153221811 ], [ -94.928080877357957, 29.477349153864516 ], [ -94.928288877136609, 29.477686153366076 ], [ -94.928421877566976, 29.47798715400814 ], [ -94.928466877931726, 29.478219153824515 ], [ -94.928683878062714, 29.478640153420137 ], [ -94.928831877997197, 29.478977153556734 ], [ -94.928988877408585, 29.479232153797085 ], [ -94.929190878012605, 29.479433153839736 ], [ -94.929306878322791, 29.479481153842883 ], [ -94.929915878238006, 29.479618154170335 ], [ -94.930144878108251, 29.479702153834591 ], [ -94.930606878059635, 29.479955154123576 ], [ -94.930829878319244, 29.480042154144702 ], [ -94.930926878196189, 29.480078154014798 ], [ -94.931122878325979, 29.480180154371983 ], [ -94.931184878836916, 29.480193153731364 ], [ -94.931390878627354, 29.480232153909153 ], [ -94.931653878518105, 29.480290154382395 ], [ -94.931993879073204, 29.480286154452354 ], [ -94.932375878244457, 29.480235153939002 ], [ -94.932627878560069, 29.480240154180606 ], [ -94.93281587885032, 29.480364154374588 ], [ -94.932902879052065, 29.480471154487329 ], [ -94.933047878593129, 29.480569153663318 ], [ -94.933222879081214, 29.480566154452568 ], [ -94.933505879394502, 29.480631153882644 ], [ -94.934027879593955, 29.480679154236505 ], [ -94.934347879098638, 29.480655153894237 ], [ -94.935145878982027, 29.480509153714962 ], [ -94.935553879572666, 29.480356153540558 ], [ -94.935746879397115, 29.480447153930292 ], [ -94.936061879848495, 29.480537153928729 ], [ -94.936093879750231, 29.480499153599755 ], [ -94.9363138802251, 29.480324153677799 ], [ -94.937149879936086, 29.479634153927336 ], [ -94.938960879995449, 29.479228153317912 ], [ -94.939065880723817, 29.479211153777651 ], [ -94.940421880909341, 29.479038153227386 ], [ -94.941115881274001, 29.478522153028202 ], [ -94.942990881435335, 29.477613153205017 ], [ -94.9451698823013, 29.476768153027152 ], [ -94.946015882171608, 29.475829152520273 ], [ -94.946437881747897, 29.475593152683469 ], [ -94.948253882523602, 29.474715151950775 ], [ -94.949023882960631, 29.474172151820515 ], [ -94.9491988825325, 29.474048152212873 ], [ -94.949426883116786, 29.47384215234047 ], [ -94.950532883421417, 29.47285615197865 ], [ -94.950849882846114, 29.472661151639617 ], [ -94.951537882805397, 29.472242152053308 ], [ -94.952828883585298, 29.470922151249642 ], [ -94.953146883738185, 29.471366151198925 ], [ -94.95333688418053, 29.471113151602989 ], [ -94.953464883984779, 29.471293151645778 ], [ -94.953277883817549, 29.471593151725077 ], [ -94.952676883448575, 29.472568151416322 ], [ -94.952478883384629, 29.472890151506455 ], [ -94.952516883946714, 29.472897152223073 ], [ -94.953097883873369, 29.472611151503227 ], [ -94.953443883373808, 29.472466151306623 ], [ -94.953477884211082, 29.471602151992421 ], [ -94.953858884356791, 29.471176151300376 ], [ -94.954105884293867, 29.470750151576482 ], [ -94.953414883570346, 29.470274151675692 ], [ -94.952477883846797, 29.469738151140739 ], [ -94.951822883599732, 29.467257150958506 ], [ -94.951542882639046, 29.467203150401701 ], [ -94.951386883498543, 29.467176150772804 ], [ -94.950420882745092, 29.466583150517483 ], [ -94.950015882301827, 29.466286150330202 ], [ -94.949860882218246, 29.46604315047934 ], [ -94.949579882781165, 29.465962150403215 ], [ -94.949361881927132, 29.465422150578668 ], [ -94.949018882377786, 29.465206150660343 ], [ -94.948613881829104, 29.464829150067633 ], [ -94.947616881726134, 29.464154150289616 ], [ -94.947398881979339, 29.463749150540693 ], [ -94.946900881891182, 29.463047150156875 ], [ -94.946588881443063, 29.462643150059765 ], [ -94.946277881468319, 29.462508150006212 ], [ -94.946090881189917, 29.462292150311562 ], [ -94.945778881791014, 29.46223815015513 ], [ -94.94549888176617, 29.462049149576497 ], [ -94.945311881355096, 29.461995150230383 ], [ -94.945061881439699, 29.461887149985905 ], [ -94.944843880962097, 29.461779150099996 ], [ -94.944812880680018, 29.461563149507871 ], [ -94.940697879816497, 29.459429149821815 ], [ -94.93331987805314, 29.455095148365999 ], [ -94.931734877572964, 29.453280148575246 ], [ -94.931562876955638, 29.453305148697783 ], [ -94.931406877250197, 29.453388148865532 ], [ -94.931272877728247, 29.453533148196477 ], [ -94.931095877123568, 29.453751148681576 ], [ -94.930556876591965, 29.453336148773364 ], [ -94.930370877152583, 29.453316148432346 ], [ -94.930110876451579, 29.45326414891084 ], [ -94.929841876644304, 29.453139148845125 ], [ -94.929488876482353, 29.452922148237285 ], [ -94.929260876495249, 29.452849148808451 ], [ -94.928835876414681, 29.45279714877233 ], [ -94.928742876161749, 29.452652148832712 ], [ -94.928659876493512, 29.452517148373623 ], [ -94.928462876974294, 29.452341148062004 ], [ -94.928400875984622, 29.452238148673629 ], [ -94.92812087626956, 29.452092148089044 ], [ -94.927881875932044, 29.452061147919533 ], [ -94.927715876053682, 29.452113148590524 ], [ -94.92757087625597, 29.45221714850371 ], [ -94.927404876010939, 29.452414148219418 ], [ -94.927301876627155, 29.45248614871489 ], [ -94.926782876070746, 29.452466148239235 ], [ -94.926637875906124, 29.45240314810507 ], [ -94.926305876038256, 29.452352148644636 ], [ -94.92617187576964, 29.452393148036229 ], [ -94.926098876064302, 29.452476148266289 ], [ -94.925984876026078, 29.452528148311327 ], [ -94.925870875691544, 29.45249714888002 ], [ -94.925766875747541, 29.452434148810145 ], [ -94.925621875377473, 29.452238148644042 ], [ -94.925393875295129, 29.452051148433394 ], [ -94.925165875726321, 29.451792148673807 ], [ -94.925041875967963, 29.451512148579084 ], [ -94.92487587521012, 29.451066148314798 ], [ -94.924761875332365, 29.450931148288607 ], [ -94.924543875572084, 29.450672148127342 ], [ -94.924408875461253, 29.450465147941905 ], [ -94.924263874904582, 29.45016414788919 ], [ -94.924014875762381, 29.449915147809541 ], [ -94.923921875341577, 29.44980114784855 ], [ -94.923787875383283, 29.449384147644693 ], [ -94.919146873363673, 29.447033147635565 ], [ -94.918828874165925, 29.446829147604859 ], [ -94.918609874077177, 29.446720147737757 ], [ -94.918173873416478, 29.446046147284854 ], [ -94.918142873844161, 29.445857147618167 ], [ -94.918018873421062, 29.445614147591741 ], [ -94.918208873173967, 29.445577147596957 ], [ -94.91915387403229, 29.445210147556445 ], [ -94.920175873948736, 29.445621146987573 ], [ -94.921098874386601, 29.445862147053827 ], [ -94.92186087493431, 29.445862147633516 ], [ -94.922754874338665, 29.446120147676691 ], [ -94.93094487733191, 29.448792147788467 ], [ -94.932805877897223, 29.449681147626723 ], [ -94.935052877458403, 29.447337147520244 ], [ -94.93557287846005, 29.445891146455317 ], [ -94.936433877829245, 29.443960145976096 ], [ -94.935964878087333, 29.442876145911779 ], [ -94.934702877773077, 29.442023146455362 ], [ -94.933996877620487, 29.438937144992789 ], [ -94.936393878036384, 29.43568214443837 ], [ -94.937428878191156, 29.435387144875016 ], [ -94.937429878421398, 29.435141144898616 ], [ -94.937505878335443, 29.434958144460246 ], [ -94.937477877951608, 29.434885144624801 ], [ -94.937522878360241, 29.434820144554589 ], [ -94.938363878310213, 29.434145144055538 ], [ -94.938986877925174, 29.433713144050891 ], [ -94.939266878037188, 29.433686143983834 ], [ -94.939640878649939, 29.433525143800619 ], [ -94.939952878252498, 29.43306614392181 ], [ -94.940139879109992, 29.433066143753102 ], [ -94.940165878592836, 29.433043144216843 ], [ -94.940419879030898, 29.43282314412637 ], [ -94.941011879299182, 29.43271514416692 ], [ -94.941665879357544, 29.432202144065723 ], [ -94.941691879032007, 29.432082143664772 ], [ -94.941728878767165, 29.431905143372013 ], [ -94.941946878771589, 29.431689143954983 ], [ -94.942257878967112, 29.431689143989569 ], [ -94.942569879675304, 29.431743143858434 ], [ -94.942787879500855, 29.431743143828896 ], [ -94.943099879441647, 29.43142014314844 ], [ -94.943254879897225, 29.43101514339256 ], [ -94.943815879894004, 29.431015143847279 ], [ -94.943940879581532, 29.431096143468373 ], [ -94.944283880062883, 29.430907143604976 ], [ -94.94446988008913, 29.430691143484857 ], [ -94.94481288005484, 29.430664142994132 ], [ -94.945311879587166, 29.430556143402125 ], [ -94.945653879733598, 29.430475143001253 ], [ -94.946027879735041, 29.430394143514381 ], [ -94.94649288029882, 29.430200142778876 ], [ -94.946533880388628, 29.430155142787253 ], [ -94.946699879882573, 29.430055142848236 ], [ -94.946758880347346, 29.42993414345792 ], [ -94.946869880413786, 29.429450142805468 ], [ -94.947125880221606, 29.429391142727248 ], [ -94.947132879985517, 29.429308142893653 ], [ -94.947191879818604, 29.429377142864809 ], [ -94.947381879938888, 29.429339142803123 ], [ -94.947474880477003, 29.429366143200042 ], [ -94.947613880319167, 29.429325143347576 ], [ -94.947651880452682, 29.429384143383039 ], [ -94.947322880105148, 29.429529143091383 ], [ -94.947083880639894, 29.429688142796348 ], [ -94.947031880760477, 29.429823142993438 ], [ -94.946942880435145, 29.430013143584102 ], [ -94.946724880417136, 29.430224143625978 ], [ -94.946699879789392, 29.430266143418237 ], [ -94.946575880134887, 29.430307143534986 ], [ -94.946582879989833, 29.430366143677357 ], [ -94.94655488003815, 29.430470143581161 ], [ -94.946530880117535, 29.430553142897093 ], [ -94.946308880252147, 29.430664143054592 ], [ -94.946308880316735, 29.430826143669272 ], [ -94.946183879894519, 29.431231143605252 ], [ -94.946308880615419, 29.431366143580181 ], [ -94.946183879732004, 29.431501143096774 ], [ -94.946432880408423, 29.431609143526494 ], [ -94.946277879804512, 29.432013143509689 ], [ -94.94658887981484, 29.432094143638668 ], [ -94.946650879959947, 29.43236414337154 ], [ -94.946495880389975, 29.432634143786913 ], [ -94.946588880037794, 29.432796143921372 ], [ -94.946647880118775, 29.433126143899496 ], [ -94.946900879963437, 29.433201143920975 ], [ -94.947024880070416, 29.4334171436556 ], [ -94.947274880930408, 29.433632144048751 ], [ -94.947871880614798, 29.433672143709792 ], [ -94.948208880582001, 29.433596143677693 ], [ -94.948393880812532, 29.433576143714152 ], [ -94.948606880833708, 29.433514144077535 ], [ -94.948839880874957, 29.433481143363686 ], [ -94.947984881064045, 29.432383143882227 ], [ -94.94758588095992, 29.432202143181669 ], [ -94.947529880091764, 29.432225143775021 ], [ -94.947592880210578, 29.431907143463043 ], [ -94.94764488104596, 29.431849143786952 ], [ -94.947699880451381, 29.43182814325354 ], [ -94.947738880756191, 29.431801143569778 ], [ -94.9477878802536, 29.431776143725781 ], [ -94.947844880243665, 29.431786143323652 ], [ -94.94788088043812, 29.432001143259086 ], [ -94.947962880569435, 29.432162143256765 ], [ -94.94898788138687, 29.433390143894741 ], [ -94.949174881305737, 29.433390143673073 ], [ -94.949330881129725, 29.433282144016065 ], [ -94.948925880624031, 29.432958143257416 ], [ -94.948613880832411, 29.432688143751569 ], [ -94.948551880873211, 29.432526143912575 ], [ -94.948551880753712, 29.432337143978817 ], [ -94.948458880600512, 29.431986143510873 ], [ -94.948458880724175, 29.431150143761943 ], [ -94.948364880431868, 29.430745143594812 ], [ -94.948676880773391, 29.430313143023792 ], [ -94.948738880435954, 29.430043143039111 ], [ -94.948644880814513, 29.429935142776696 ], [ -94.948551880390241, 29.429693143165341 ], [ -94.948831880986361, 29.429639142931684 ], [ -94.948894881101623, 29.429827143349211 ], [ -94.949112881313155, 29.429854143450633 ], [ -94.949330880778561, 29.429558143426657 ], [ -94.949610880537449, 29.429693143329771 ], [ -94.94982888074226, 29.429800143056738 ], [ -94.950327880844952, 29.429585142821175 ], [ -94.950514881330264, 29.429396142837607 ], [ -94.950701881093295, 29.429396142500735 ], [ -94.950857881594231, 29.429315142513754 ], [ -94.950607881368882, 29.429126143197713 ], [ -94.950545881487415, 29.429234142567434 ], [ -94.950296880647841, 29.429261142573999 ], [ -94.950483880857561, 29.428829142837078 ], [ -94.950701881188849, 29.428829142737118 ], [ -94.950888881627421, 29.428640143168767 ], [ -94.951199881046051, 29.428640142507227 ], [ -94.951573880996108, 29.428505142407648 ], [ -94.952165881618441, 29.428127142746984 ], [ -94.952383881706993, 29.427857142582479 ], [ -94.952664882051778, 29.427588142363511 ], [ -94.953380881669318, 29.427210142574115 ], [ -94.953754881865564, 29.426967142364024 ], [ -94.954190881691474, 29.426346142033157 ], [ -94.954221882110033, 29.426076142294402 ], [ -94.954408882545479, 29.425995142209626 ], [ -94.954699882232163, 29.425820142216537 ], [ -94.955208881988597, 29.425513141741554 ], [ -94.955338882746119, 29.424805141529799 ], [ -94.955409881823812, 29.424420142090195 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 848, "Tract": "48201541901", "Area_SqMi": 0.97784284454437909, "total_2009": 30, "total_2010": 83, "total_2011": 180, "total_2012": 225, "total_2013": 137, "total_2014": 210, "total_2015": 213, "total_2016": 254, "total_2017": 266, "total_2018": 245, "total_2019": 336, "total_2020": 354, "age1": 102, "age2": 269, "age3": 88, "earn1": 78, "earn2": 140, "earn3": 241, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 90, "naics_s05": 38, "naics_s06": 0, "naics_s07": 39, "naics_s08": 7, "naics_s09": 0, "naics_s10": 4, "naics_s11": 4, "naics_s12": 14, "naics_s13": 0, "naics_s14": 62, "naics_s15": 1, "naics_s16": 189, "naics_s17": 0, "naics_s18": 9, "naics_s19": 0, "naics_s20": 0, "race1": 306, "race2": 104, "race3": 3, "race4": 39, "race5": 0, "race6": 7, "ethnicity1": 322, "ethnicity2": 137, "edu1": 63, "edu2": 99, "edu3": 120, "edu4": 75, "Shape_Length": 20368.149311762401, "Shape_Area": 27260584.911142699, "total_2021": 432, "total_2022": 459 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.704047091446441, 29.813100196805138 ], [ -95.70406709134329, 29.812960196132785 ], [ -95.70400909065792, 29.812425195967936 ], [ -95.7039470907186, 29.811837196437033 ], [ -95.703942090855207, 29.811785196117761 ], [ -95.703937090975487, 29.811472195865729 ], [ -95.703938090727348, 29.810004196092549 ], [ -95.703932091366283, 29.809810195770744 ], [ -95.703935090886844, 29.809668195727106 ], [ -95.703939090594034, 29.809520195563216 ], [ -95.703941091004936, 29.809328196138036 ], [ -95.703932090631113, 29.809231196004266 ], [ -95.703929091129737, 29.808928195607503 ], [ -95.703936091340765, 29.808822195710402 ], [ -95.703938091398257, 29.808700195639787 ], [ -95.703939090530312, 29.808159195320123 ], [ -95.703939090570969, 29.808086195739037 ], [ -95.703940090511523, 29.807807195631767 ], [ -95.703940090649027, 29.807678195604939 ], [ -95.703940090807194, 29.807626195392402 ], [ -95.703940090916248, 29.8074801953038 ], [ -95.70393909058609, 29.807050195219691 ], [ -95.703941090487319, 29.806633195566466 ], [ -95.703939090706697, 29.805915195087998 ], [ -95.703939090446767, 29.80535119461987 ], [ -95.703941090339242, 29.8052551950001 ], [ -95.703941090589694, 29.805194195142658 ], [ -95.703953090980605, 29.805025194434204 ], [ -95.703960090596851, 29.804933195204818 ], [ -95.703973091054394, 29.804818195074965 ], [ -95.703993091121063, 29.80449519448981 ], [ -95.703993090453267, 29.804266194916618 ], [ -95.703993090885959, 29.804054194523751 ], [ -95.703988090973226, 29.803965194664215 ], [ -95.703988091091986, 29.803780194890926 ], [ -95.703977090746974, 29.803597194637334 ], [ -95.703977090420778, 29.803504194703557 ], [ -95.70398609030309, 29.803421194586043 ], [ -95.703983090398197, 29.802948194703443 ], [ -95.70397609107944, 29.802855194164163 ], [ -95.703985090813774, 29.802768194700583 ], [ -95.703996090161525, 29.802500194237993 ], [ -95.703992090812619, 29.802412194624221 ], [ -95.703997090822185, 29.802333193850316 ], [ -95.703998090274595, 29.802188194697099 ], [ -95.703984090898089, 29.802074194112105 ], [ -95.703983090888272, 29.802041193790689 ], [ -95.703983090580621, 29.802025194662182 ], [ -95.703998090633917, 29.801972193941708 ], [ -95.703992090907789, 29.801871194021111 ], [ -95.703979090089618, 29.80117019383038 ], [ -95.703970090882876, 29.800685194356255 ], [ -95.703967090567701, 29.800523194181103 ], [ -95.703976090216031, 29.80039719419079 ], [ -95.70398109004779, 29.800314194037618 ], [ -95.703549090286131, 29.800323193972943 ], [ -95.703266090623785, 29.800330194031798 ], [ -95.702509089765854, 29.800333194290783 ], [ -95.701965089901464, 29.800337193932961 ], [ -95.701826090327515, 29.8003441936138 ], [ -95.701656089878639, 29.800340194244558 ], [ -95.701632090441194, 29.800339193987345 ], [ -95.700179089585802, 29.80034419395567 ], [ -95.698003089273385, 29.800344193767543 ], [ -95.695003088306905, 29.800351194351069 ], [ -95.692935088018601, 29.800353194123876 ], [ -95.689802087193385, 29.800351194067179 ], [ -95.68853808655706, 29.800341194653249 ], [ -95.688505087037868, 29.800329194686022 ], [ -95.688334086225225, 29.80033219475397 ], [ -95.688304086266328, 29.801139194194391 ], [ -95.688238086358183, 29.801702194343324 ], [ -95.688080086975958, 29.802332194801302 ], [ -95.687789086929754, 29.803157194694194 ], [ -95.687725086724356, 29.803337194989897 ], [ -95.687358086678202, 29.804304194934044 ], [ -95.687203086081198, 29.804830195064898 ], [ -95.687124086283063, 29.805627195968377 ], [ -95.68711508625924, 29.806381195403215 ], [ -95.68711408616636, 29.80644819551382 ], [ -95.68709808621459, 29.80720319605285 ], [ -95.68711708689851, 29.808157195988176 ], [ -95.687124086252183, 29.809025196301967 ], [ -95.687130086285237, 29.809574195981845 ], [ -95.687127086256893, 29.810156196276949 ], [ -95.687127086937835, 29.810391196742966 ], [ -95.687115086636808, 29.81065519661313 ], [ -95.687095086292786, 29.811068196259221 ], [ -95.686957086488235, 29.811768196996269 ], [ -95.686799086163248, 29.812272197127839 ], [ -95.686979086375061, 29.812313196959792 ], [ -95.687151086535948, 29.812371196634373 ], [ -95.687445086718284, 29.812456196472748 ], [ -95.687755086869458, 29.812563196890022 ], [ -95.687898087395894, 29.812623196817608 ], [ -95.688115087075985, 29.812731196916975 ], [ -95.688459087541489, 29.812901197105866 ], [ -95.689038087602228, 29.813197197339562 ], [ -95.689379087354183, 29.813354196930113 ], [ -95.689659087530273, 29.813463196768961 ], [ -95.690051087591513, 29.813594196804083 ], [ -95.690347087678546, 29.81367719693861 ], [ -95.690718087764822, 29.813764196643767 ], [ -95.691014087635523, 29.813825196713204 ], [ -95.691449088186957, 29.813922196753687 ], [ -95.69166008822539, 29.813978196930144 ], [ -95.691991087593294, 29.814081197062347 ], [ -95.692362088160181, 29.814218196810003 ], [ -95.692532088722686, 29.814290196823741 ], [ -95.692769088286227, 29.814400197025822 ], [ -95.693086088823435, 29.814564197324 ], [ -95.693154088043897, 29.814604197045103 ], [ -95.693593088103569, 29.814836196980977 ], [ -95.693790088778357, 29.8149301972201 ], [ -95.694075088331161, 29.815055197120472 ], [ -95.694407088329086, 29.815182197277604 ], [ -95.694644089073094, 29.815260197681575 ], [ -95.694898088653744, 29.815331197502324 ], [ -95.695109088484557, 29.815386197464701 ], [ -95.695485089136383, 29.815464197229037 ], [ -95.695692088667911, 29.815498197579402 ], [ -95.696016088695643, 29.815539197483009 ], [ -95.696240088861643, 29.815560197295337 ], [ -95.696590089457771, 29.81557719701242 ], [ -95.696952089403055, 29.815580197306502 ], [ -95.6973150894095, 29.81556219752748 ], [ -95.697664089921602, 29.815529196817064 ], [ -95.697996089161464, 29.815481197177427 ], [ -95.698289089947309, 29.815424197121587 ], [ -95.698589089368937, 29.815356196664553 ], [ -95.699258090014013, 29.815169197341195 ], [ -95.699355089740777, 29.815142197370115 ], [ -95.699402089690835, 29.815129197468213 ], [ -95.699691090487121, 29.815064197469635 ], [ -95.700017090374047, 29.815008197301896 ], [ -95.700344089762439, 29.814963197182269 ], [ -95.700642090315426, 29.814942197024113 ], [ -95.700928090585521, 29.814929197413296 ], [ -95.701179090173767, 29.8149291969094 ], [ -95.701459090624638, 29.814942197090712 ], [ -95.70236109111994, 29.815017196517903 ], [ -95.702830090534505, 29.815035196862915 ], [ -95.703648091446254, 29.815050197260728 ], [ -95.703734090645654, 29.814849196786696 ], [ -95.703850090633168, 29.814319196604817 ], [ -95.703917091247405, 29.813998196258439 ], [ -95.703929091289467, 29.813946196905341 ], [ -95.704047091446441, 29.813100196805138 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 849, "Tract": "48201454801", "Area_SqMi": 0.47978960942133664, "total_2009": 758, "total_2010": 871, "total_2011": 719, "total_2012": 720, "total_2013": 746, "total_2014": 677, "total_2015": 651, "total_2016": 669, "total_2017": 650, "total_2018": 651, "total_2019": 570, "total_2020": 525, "age1": 145, "age2": 247, "age3": 110, "earn1": 172, "earn2": 162, "earn3": 168, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 21, "naics_s06": 3, "naics_s07": 36, "naics_s08": 0, "naics_s09": 1, "naics_s10": 27, "naics_s11": 27, "naics_s12": 26, "naics_s13": 6, "naics_s14": 0, "naics_s15": 24, "naics_s16": 169, "naics_s17": 7, "naics_s18": 139, "naics_s19": 16, "naics_s20": 0, "race1": 382, "race2": 49, "race3": 7, "race4": 52, "race5": 0, "race6": 12, "ethnicity1": 346, "ethnicity2": 156, "edu1": 59, "edu2": 71, "edu3": 128, "edu4": 99, "Shape_Length": 17952.911795067477, "Shape_Area": 13375713.142543465, "total_2021": 466, "total_2022": 502 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.751761101935045, 29.773649186991229 ], [ -95.75179910122722, 29.773594187035055 ], [ -95.751759101045423, 29.773426186775691 ], [ -95.751762100990803, 29.77329718653645 ], [ -95.751754101909555, 29.773121187007007 ], [ -95.751755101859231, 29.772832186368298 ], [ -95.75175210119157, 29.772753186926607 ], [ -95.75175010146026, 29.772667186988489 ], [ -95.751746101044247, 29.772518186541827 ], [ -95.751737101768796, 29.772206186832765 ], [ -95.751737101501348, 29.772100186403538 ], [ -95.751737101473736, 29.772068186444901 ], [ -95.751739100922592, 29.771242186587759 ], [ -95.751734101902812, 29.771087185912361 ], [ -95.751724101838775, 29.770759186199605 ], [ -95.751704101450571, 29.769663185615315 ], [ -95.751582101189683, 29.769667185580371 ], [ -95.751556101124848, 29.769668186321272 ], [ -95.751266101427618, 29.769676186385762 ], [ -95.750994100888065, 29.769694185896601 ], [ -95.750902100651075, 29.769704186302224 ], [ -95.750620101046835, 29.769746185875189 ], [ -95.750479100884291, 29.769773185768678 ], [ -95.750253100685057, 29.769823186265928 ], [ -95.750078100492146, 29.769868186340709 ], [ -95.750013101040423, 29.769904186196619 ], [ -95.749989100730076, 29.769910185769447 ], [ -95.749777100977411, 29.7699671860201 ], [ -95.74961210088324, 29.770035186520033 ], [ -95.749513100380454, 29.770075185766107 ], [ -95.749444100585563, 29.770104186314054 ], [ -95.749183100434934, 29.770227185932903 ], [ -95.749049100166104, 29.770296185913438 ], [ -95.748697100223794, 29.770486185897624 ], [ -95.748546100721285, 29.770567186133057 ], [ -95.748272100728414, 29.770715185932627 ], [ -95.747628100184002, 29.771061186543211 ], [ -95.747496100263717, 29.771128186504978 ], [ -95.747198099741553, 29.771261186614012 ], [ -95.747043100141738, 29.771324186375686 ], [ -95.746808099817073, 29.771407186609693 ], [ -95.746548100464977, 29.771482186546059 ], [ -95.746232099672426, 29.771564186952087 ], [ -95.746027099662058, 29.771605186147646 ], [ -95.745737099664481, 29.771655186691177 ], [ -95.745486099532457, 29.771686186710955 ], [ -95.745236099296505, 29.771702186229266 ], [ -95.745072100142892, 29.771708186693619 ], [ -95.745049099855379, 29.771633187031142 ], [ -95.744993099813655, 29.771390186839771 ], [ -95.744982099914807, 29.77130418645854 ], [ -95.744960099392557, 29.771211186558276 ], [ -95.744775099683238, 29.770529186063399 ], [ -95.744622099035453, 29.769939186058245 ], [ -95.744588099678396, 29.769848186231101 ], [ -95.744565099650657, 29.769763185858888 ], [ -95.744554099999434, 29.769682186585861 ], [ -95.744533098995561, 29.769605186482583 ], [ -95.74450009994402, 29.76953218668249 ], [ -95.744465099683637, 29.769403186480634 ], [ -95.744460099886112, 29.769351186585677 ], [ -95.744457098958136, 29.769313186411431 ], [ -95.744356099540084, 29.768927186377859 ], [ -95.744318099379768, 29.768824186035381 ], [ -95.744301099850404, 29.768717185669843 ], [ -95.744216099113586, 29.768388185685286 ], [ -95.744172099651237, 29.768276186127309 ], [ -95.744158099009297, 29.768166186197526 ], [ -95.744130099814186, 29.768054186324807 ], [ -95.744069098949922, 29.767941186087246 ], [ -95.744057099702701, 29.767834186192633 ], [ -95.744002099598248, 29.767627185432303 ], [ -95.743991098804145, 29.767534186223688 ], [ -95.743955098848147, 29.767442186215121 ], [ -95.743932099295307, 29.767353185428785 ], [ -95.743922099018178, 29.767267185650301 ], [ -95.743900098863648, 29.76718518607592 ], [ -95.743872099140688, 29.767107185369269 ], [ -95.743851098824877, 29.767014185964975 ], [ -95.743837099412843, 29.766957185466556 ], [ -95.7437880987261, 29.766801185275316 ], [ -95.743779099151382, 29.766723185881862 ], [ -95.743700098717028, 29.766421185560681 ], [ -95.743665099341314, 29.766354185935871 ], [ -95.743636099350724, 29.766246185260947 ], [ -95.743535099079153, 29.765869185535973 ], [ -95.743532098778189, 29.765790185603883 ], [ -95.743493099026708, 29.765707185241936 ], [ -95.743430099469705, 29.765459185828092 ], [ -95.739827098439704, 29.766181185703161 ], [ -95.739295098415212, 29.766277185713999 ], [ -95.739033097748361, 29.766318186161879 ], [ -95.738559098325211, 29.766391186124238 ], [ -95.738161097344587, 29.76644518552127 ], [ -95.737723097722167, 29.766493185387777 ], [ -95.737205097747832, 29.766536186262009 ], [ -95.736843097507816, 29.766562185604386 ], [ -95.736406097362106, 29.766588186152056 ], [ -95.735881096785931, 29.766604185820288 ], [ -95.735433096724194, 29.76660918568755 ], [ -95.735035096536819, 29.766606185963536 ], [ -95.734904097296834, 29.76660818598566 ], [ -95.73491009651265, 29.766808186325459 ], [ -95.734905096945468, 29.766879186152948 ], [ -95.73490609739423, 29.766963185830573 ], [ -95.734935096536375, 29.767267185986601 ], [ -95.734966096671172, 29.767489185679384 ], [ -95.734977096806233, 29.767604186239353 ], [ -95.735001097056383, 29.767721185931194 ], [ -95.735067096722588, 29.767958186223776 ], [ -95.735137097131897, 29.768177186267909 ], [ -95.73516209684901, 29.768275186546369 ], [ -95.735229097248819, 29.768474186237572 ], [ -95.735254097588012, 29.768563185961742 ], [ -95.735271097571527, 29.768648186401911 ], [ -95.735305097174205, 29.768717186619142 ], [ -95.735319097182796, 29.768788186236378 ], [ -95.735392097377982, 29.769062186620413 ], [ -95.73544609686725, 29.76931218658013 ], [ -95.735473097475392, 29.769494186357065 ], [ -95.735497097545917, 29.769746186700246 ], [ -95.735506097430758, 29.769933186915221 ], [ -95.735510096959359, 29.770327186842881 ], [ -95.735515096936837, 29.770387186744433 ], [ -95.735514097028243, 29.770455186286089 ], [ -95.735511097632937, 29.771151187007952 ], [ -95.735509097434488, 29.7712821866584 ], [ -95.735514097446256, 29.771357186528359 ], [ -95.735517097432236, 29.771839186999713 ], [ -95.735517096801232, 29.772012187263844 ], [ -95.735526097752228, 29.772302187127131 ], [ -95.735526097345343, 29.772660187424435 ], [ -95.735528096932498, 29.772853186999505 ], [ -95.735533097524339, 29.773223187007112 ], [ -95.735554097000801, 29.773577187624941 ], [ -95.735606096938355, 29.774421187533818 ], [ -95.735611096976086, 29.774508187124766 ], [ -95.735627097236858, 29.775168187398208 ], [ -95.735626097896855, 29.775349188002394 ], [ -95.73562609779809, 29.775467187621889 ], [ -95.735625097363851, 29.775587187358184 ], [ -95.735624097137872, 29.775845187862732 ], [ -95.735637097030761, 29.776128187806144 ], [ -95.735633097712537, 29.776255187990895 ], [ -95.735747097520729, 29.7762741875244 ], [ -95.736025097928206, 29.776321187840615 ], [ -95.736378097880419, 29.776364187746182 ], [ -95.736411097298713, 29.776367188181801 ], [ -95.736668097368025, 29.776386187737081 ], [ -95.736963097665395, 29.7764001874448 ], [ -95.737245097842262, 29.776400187830653 ], [ -95.737596098516292, 29.776384187518584 ], [ -95.737619097932821, 29.776382187648387 ], [ -95.737879097839624, 29.776359187801575 ], [ -95.738197098541463, 29.776316188074532 ], [ -95.738424098563513, 29.776278187388787 ], [ -95.738656097800487, 29.776231187416276 ], [ -95.739005098433793, 29.776142187469453 ], [ -95.739358098740965, 29.776038187406193 ], [ -95.73963409856843, 29.775938187270093 ], [ -95.740737099045262, 29.7754861873014 ], [ -95.741001098714833, 29.775387187777827 ], [ -95.741255098441883, 29.775305187453561 ], [ -95.741401098702582, 29.775268187189507 ], [ -95.741636099123738, 29.775209187635021 ], [ -95.741905098639577, 29.775151187486177 ], [ -95.742184098619546, 29.775103187665039 ], [ -95.742470099068214, 29.775067187510285 ], [ -95.742755099462769, 29.775043187491416 ], [ -95.74303409936914, 29.775029187830278 ], [ -95.743609099680555, 29.775023187691989 ], [ -95.743865099134965, 29.775023186939475 ], [ -95.74410609924243, 29.775012187142835 ], [ -95.744600099264957, 29.775014187537046 ], [ -95.744964100291128, 29.775010187568675 ], [ -95.745401099807026, 29.7750061875523 ], [ -95.745629100288866, 29.775010186982399 ], [ -95.745850099801373, 29.775003186915324 ], [ -95.746209100391482, 29.775005187044986 ], [ -95.74644810020034, 29.775000187164999 ], [ -95.746563100644366, 29.774989187483328 ], [ -95.746683100478521, 29.774985187600358 ], [ -95.74718610010153, 29.774947187118066 ], [ -95.747306100264623, 29.774934187091642 ], [ -95.747419100373321, 29.774916187386669 ], [ -95.747777101024141, 29.774879187590123 ], [ -95.748000100217553, 29.774852187183114 ], [ -95.748278100947275, 29.774826186932035 ], [ -95.748700100619644, 29.77479618719493 ], [ -95.749118101225079, 29.774776187161301 ], [ -95.749213101124923, 29.77478518676714 ], [ -95.749340101037248, 29.774783187436345 ], [ -95.749447101112153, 29.774776187327472 ], [ -95.749579101251499, 29.7747741871964 ], [ -95.75091310159452, 29.774765187471154 ], [ -95.751249100994116, 29.774763186719664 ], [ -95.751556101291314, 29.774760187109987 ], [ -95.751623101749459, 29.774759187254261 ], [ -95.751671101786386, 29.774758187166352 ], [ -95.751776102076278, 29.774757186701763 ], [ -95.75177810140687, 29.774600186911911 ], [ -95.751761101935045, 29.773649186991229 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 850, "Tract": "48201552901", "Area_SqMi": 0.75070711375739207, "total_2009": 1461, "total_2010": 1553, "total_2011": 1940, "total_2012": 1972, "total_2013": 1970, "total_2014": 1632, "total_2015": 1337, "total_2016": 1110, "total_2017": 1045, "total_2018": 1057, "total_2019": 1159, "total_2020": 1238, "age1": 318, "age2": 671, "age3": 269, "earn1": 300, "earn2": 517, "earn3": 441, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 150, "naics_s05": 3, "naics_s06": 104, "naics_s07": 93, "naics_s08": 4, "naics_s09": 8, "naics_s10": 36, "naics_s11": 43, "naics_s12": 29, "naics_s13": 0, "naics_s14": 480, "naics_s15": 35, "naics_s16": 145, "naics_s17": 5, "naics_s18": 90, "naics_s19": 27, "naics_s20": 1, "race1": 827, "race2": 281, "race3": 15, "race4": 114, "race5": 0, "race6": 21, "ethnicity1": 821, "ethnicity2": 437, "edu1": 249, "edu2": 242, "edu3": 277, "edu4": 172, "Shape_Length": 20524.956489481734, "Shape_Area": 20928429.483489934, "total_2021": 1283, "total_2022": 1258 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.519029052411199, 29.99824824071105 ], [ -95.519128052499539, 29.998187240539622 ], [ -95.51883605211539, 29.997828240254854 ], [ -95.518715052292094, 29.997636240144711 ], [ -95.518673052283091, 29.997592240111484 ], [ -95.518591052173633, 29.997457240285957 ], [ -95.518545051651103, 29.997390240281383 ], [ -95.518390052159646, 29.997183240675771 ], [ -95.518340052426822, 29.99710324019204 ], [ -95.518284052189941, 29.997035239877725 ], [ -95.518231051764019, 29.996959240250813 ], [ -95.518180051592296, 29.996876240716468 ], [ -95.518125052227873, 29.996811240217387 ], [ -95.518078051660453, 29.996739240068074 ], [ -95.517807052329886, 29.996367240390153 ], [ -95.517684051794745, 29.996195240463774 ], [ -95.517580051936861, 29.99608123991743 ], [ -95.517321052069022, 29.995718240076378 ], [ -95.517269051593274, 29.995637240445639 ], [ -95.517152051204576, 29.995487240292189 ], [ -95.517047051297823, 29.995324240175552 ], [ -95.516982051557164, 29.995256239629018 ], [ -95.51692905198037, 29.995178240232438 ], [ -95.516824051526058, 29.995037239911838 ], [ -95.516786051833122, 29.994973240108219 ], [ -95.516728051523231, 29.994904240378961 ], [ -95.516705051524738, 29.994860239564758 ], [ -95.516663051591564, 29.994799239900225 ], [ -95.516350051192916, 29.99439223993916 ], [ -95.516274051850402, 29.994267240121452 ], [ -95.516168051388519, 29.994139239983724 ], [ -95.516037051494195, 29.993968239323884 ], [ -95.515814050885808, 29.993700239689485 ], [ -95.515736050796093, 29.993613239773108 ], [ -95.515688051526951, 29.993552239361698 ], [ -95.515583051166345, 29.993417239966718 ], [ -95.515481050689118, 29.993287239992792 ], [ -95.515135051293285, 29.992811239620501 ], [ -95.515067051444461, 29.992708239892451 ], [ -95.51498705070307, 29.992615239654821 ], [ -95.514877050763985, 29.992466239254501 ], [ -95.514641050376767, 29.992149239091916 ], [ -95.5145580503562, 29.992036239284172 ], [ -95.514440050541737, 29.991874239693512 ], [ -95.514410051172135, 29.99183323920472 ], [ -95.513899050986055, 29.991114239481806 ], [ -95.513055050366333, 29.989979238703427 ], [ -95.512982049990441, 29.989890239389169 ], [ -95.512781050598747, 29.989618239009619 ], [ -95.512771049935594, 29.989603238619242 ], [ -95.512593050355946, 29.98934123892148 ], [ -95.512582050276563, 29.989325238693301 ], [ -95.512528050041681, 29.989253238594948 ], [ -95.512469050521275, 29.989175239259687 ], [ -95.512433050378746, 29.989196238663993 ], [ -95.512305050412394, 29.989274238940542 ], [ -95.512196050274454, 29.989354238879464 ], [ -95.512129050537325, 29.989412239048896 ], [ -95.512021050141669, 29.989520238997052 ], [ -95.511899050011777, 29.989665238878331 ], [ -95.511805049551185, 29.989774239453475 ], [ -95.511740050322345, 29.98983423912993 ], [ -95.511668050448606, 29.989890239092553 ], [ -95.511590049455577, 29.989942239116331 ], [ -95.511507049918151, 29.98999123910183 ], [ -95.510687050192516, 29.990440239511717 ], [ -95.510234050114178, 29.990694239342524 ], [ -95.510031049504875, 29.99041523932387 ], [ -95.510003049196229, 29.99037523921821 ], [ -95.509835049814015, 29.99014923913823 ], [ -95.509764049258735, 29.990044239608842 ], [ -95.509620049047228, 29.989854239015994 ], [ -95.50955304940247, 29.989758239039283 ], [ -95.509342049164388, 29.989478239246196 ], [ -95.508915048711515, 29.988890239013212 ], [ -95.508814048951791, 29.988751239171421 ], [ -95.508673049553011, 29.988587238968282 ], [ -95.508590049628182, 29.988497238860411 ], [ -95.508322048901022, 29.988236239239143 ], [ -95.508286048621827, 29.988196239225772 ], [ -95.508214049306133, 29.988126238761581 ], [ -95.508112048838882, 29.988029238620616 ], [ -95.507949049209032, 29.987852238997771 ], [ -95.507863049295992, 29.987747239108948 ], [ -95.507839048525071, 29.987718239185075 ], [ -95.50761104919053, 29.987416239076879 ], [ -95.507581048643459, 29.987375238667983 ], [ -95.507325048812049, 29.987018238376677 ], [ -95.507141048272587, 29.986771238753892 ], [ -95.506971049036494, 29.986541238246978 ], [ -95.506775048442492, 29.98627123893824 ], [ -95.50663704868488, 29.986081238147889 ], [ -95.50638804797768, 29.985739237994572 ], [ -95.506066048309918, 29.985300238002644 ], [ -95.505913048618439, 29.985092238762292 ], [ -95.505735048093868, 29.984850237965638 ], [ -95.50532004781455, 29.984271238211605 ], [ -95.505265048452316, 29.984183237871012 ], [ -95.505195047912608, 29.984069238495618 ], [ -95.505081047541452, 29.984129238005718 ], [ -95.504429048257691, 29.98451223860463 ], [ -95.504154047981601, 29.984675237976376 ], [ -95.504113047791137, 29.984699237862962 ], [ -95.503991047722508, 29.98477023817259 ], [ -95.503857047524178, 29.984849238671163 ], [ -95.503707047966728, 29.98493823820349 ], [ -95.503201047813178, 29.985220238843755 ], [ -95.502567047365986, 29.985591238351098 ], [ -95.501916047792619, 29.985942238880078 ], [ -95.501841047053517, 29.985982238717803 ], [ -95.501380047422685, 29.986232238873335 ], [ -95.50117004753902, 29.986345238867116 ], [ -95.500613046629653, 29.986645238934599 ], [ -95.500382046520826, 29.986769238955127 ], [ -95.500065046967293, 29.986940239107827 ], [ -95.499670047076776, 29.987153238533846 ], [ -95.499304047113228, 29.987351239228861 ], [ -95.499047046917866, 29.987489238735755 ], [ -95.498958047100686, 29.987538238975507 ], [ -95.498400046221875, 29.987841239363657 ], [ -95.498349046323568, 29.987870238816623 ], [ -95.498578046405186, 29.98819323907906 ], [ -95.498658046098711, 29.98830023953931 ], [ -95.498782046264211, 29.988468239180545 ], [ -95.498897046548578, 29.988622238970081 ], [ -95.499165047061396, 29.988977239053867 ], [ -95.499311046966767, 29.989177239071608 ], [ -95.499765046701754, 29.989800239093501 ], [ -95.50004104740421, 29.990179239173035 ], [ -95.500138046983878, 29.990312239671979 ], [ -95.500564047141097, 29.990860239804594 ], [ -95.500835046898985, 29.991231239961145 ], [ -95.500954047458066, 29.991397239569284 ], [ -95.501062047315685, 29.991556240066014 ], [ -95.50112904732778, 29.991647239655059 ], [ -95.501340047637683, 29.991965239949462 ], [ -95.501596048007443, 29.992339240322924 ], [ -95.501795047119998, 29.992618240339958 ], [ -95.502322047668144, 29.993338240534978 ], [ -95.502713047411888, 29.993840240603106 ], [ -95.503915048489489, 29.995495240794288 ], [ -95.504154047995769, 29.995824240305549 ], [ -95.505226049146117, 29.997311240918755 ], [ -95.505437048788252, 29.997604240512867 ], [ -95.505596048929988, 29.997833240698121 ], [ -95.505800048368656, 29.998143240560722 ], [ -95.50601504860407, 29.998455241076378 ], [ -95.506346049397862, 29.998907240798612 ], [ -95.506493049438347, 29.999112241556091 ], [ -95.506879049599789, 29.999636240882442 ], [ -95.507301049326216, 30.000181241701554 ], [ -95.508260049131351, 30.00150624144587 ], [ -95.508549049754166, 30.001920241607657 ], [ -95.509020049643382, 30.002619241646457 ], [ -95.509353049878413, 30.0030902420127 ], [ -95.509598049642264, 30.003426241831491 ], [ -95.509728050451884, 30.003358242249593 ], [ -95.510089050258728, 30.003158242170947 ], [ -95.510589050422482, 30.002888241594221 ], [ -95.510839050789627, 30.002749241371426 ], [ -95.510970050159955, 30.002687241525539 ], [ -95.511080050258713, 30.002630241490831 ], [ -95.511501050643616, 30.002390242060962 ], [ -95.511643050815749, 30.002321241770236 ], [ -95.512209050519658, 30.002001241355853 ], [ -95.512506050398457, 30.001836241624417 ], [ -95.512851050557927, 30.001648241789443 ], [ -95.5129390511796, 30.001593241461329 ], [ -95.513958050659951, 30.001032241560075 ], [ -95.514260051436025, 30.000860241183542 ], [ -95.51464205126338, 30.000655241390149 ], [ -95.514844051395031, 30.00054324136077 ], [ -95.514995050868137, 30.000459241242719 ], [ -95.515084050999178, 30.000402241025064 ], [ -95.515828051872049, 29.999991241413042 ], [ -95.516497052162791, 29.999627240587223 ], [ -95.516717051647348, 29.999502241054621 ], [ -95.51680605189749, 29.999457241113742 ], [ -95.517055051926363, 29.999319240700625 ], [ -95.517267052084776, 29.999202240781916 ], [ -95.517329051943548, 29.999168240364664 ], [ -95.517503051749898, 29.999072240365571 ], [ -95.517555052210383, 29.999043240739006 ], [ -95.517696052052656, 29.998960241093201 ], [ -95.517760051857522, 29.998929241004774 ], [ -95.517929051763701, 29.998833240816616 ], [ -95.518019051524803, 29.998794240971105 ], [ -95.518089051835119, 29.998751240553048 ], [ -95.518148052318551, 29.998723240781658 ], [ -95.518245052143072, 29.99866624100267 ], [ -95.518294052399895, 29.998644240328751 ], [ -95.518441051825221, 29.998563240270986 ], [ -95.518540051692, 29.99852024033888 ], [ -95.518618052476043, 29.998472241027503 ], [ -95.518703052417635, 29.998413240312114 ], [ -95.518802051968464, 29.998367240964985 ], [ -95.518912052068558, 29.998305240782919 ], [ -95.519029052411199, 29.99824824071105 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 851, "Tract": "48201240703", "Area_SqMi": 0.84141123471334012, "total_2009": 632, "total_2010": 667, "total_2011": 637, "total_2012": 582, "total_2013": 613, "total_2014": 1044, "total_2015": 1049, "total_2016": 760, "total_2017": 776, "total_2018": 481, "total_2019": 522, "total_2020": 757, "age1": 249, "age2": 379, "age3": 170, "earn1": 111, "earn2": 289, "earn3": 398, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 12, "naics_s05": 84, "naics_s06": 16, "naics_s07": 551, "naics_s08": 35, "naics_s09": 0, "naics_s10": 0, "naics_s11": 12, "naics_s12": 8, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 46, "naics_s17": 0, "naics_s18": 27, "naics_s19": 1, "naics_s20": 0, "race1": 548, "race2": 177, "race3": 6, "race4": 57, "race5": 0, "race6": 10, "ethnicity1": 494, "ethnicity2": 304, "edu1": 114, "edu2": 153, "edu3": 173, "edu4": 109, "Shape_Length": 27862.699856521984, "Shape_Area": 23457105.134087242, "total_2021": 751, "total_2022": 798 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.427170029472194, 30.005937245649605 ], [ -95.4271410293956, 30.005807245291827 ], [ -95.427095029130186, 30.005598245516019 ], [ -95.426875029137079, 30.004435244892427 ], [ -95.426547028753276, 30.002751244950499 ], [ -95.426301028477994, 30.001314244158916 ], [ -95.426267028833607, 30.001135244420009 ], [ -95.426061028030375, 30.000046244506994 ], [ -95.425680028798084, 29.99798424330907 ], [ -95.425654028469097, 29.9978142435819 ], [ -95.42561502800163, 29.997644243579405 ], [ -95.42547702809334, 29.997663243214216 ], [ -95.425319027786045, 29.997685244054427 ], [ -95.425253028388369, 29.997696243813202 ], [ -95.425015027796292, 29.997722243716112 ], [ -95.424840028330365, 29.997742243619808 ], [ -95.424766028460937, 29.997759243592121 ], [ -95.424402027834063, 29.997847243876667 ], [ -95.423998027375646, 29.997946244039476 ], [ -95.423150027960958, 29.998061243421756 ], [ -95.422122026928832, 29.998202243658088 ], [ -95.421765027848721, 29.998235243790557 ], [ -95.421300026844762, 29.998262243469771 ], [ -95.420975026649458, 29.998271244057669 ], [ -95.420670027269836, 29.998268243527178 ], [ -95.420163026782006, 29.99824224392782 ], [ -95.419797026474313, 29.998213243985209 ], [ -95.419532026810373, 29.998182243737688 ], [ -95.419118027044874, 29.998121243800689 ], [ -95.418704026623928, 29.998043244138341 ], [ -95.418286026142269, 29.997946243566869 ], [ -95.416903026558529, 29.997576243531878 ], [ -95.414948025790707, 29.997046243876106 ], [ -95.414161025149809, 29.996843243429822 ], [ -95.41384002540353, 29.99677524428796 ], [ -95.413522025101216, 29.996719244039216 ], [ -95.41320902537052, 29.99667324366013 ], [ -95.412768024642233, 29.996624243769357 ], [ -95.412384025052646, 29.996598243837003 ], [ -95.412012025117306, 29.996581243543584 ], [ -95.411527024381584, 29.996577244245593 ], [ -95.411411024760739, 29.996578243761544 ], [ -95.408517023957828, 29.996616243756399 ], [ -95.407692023794169, 29.996628243642171 ], [ -95.407300023643202, 29.996629244505364 ], [ -95.406951023074498, 29.996618243753446 ], [ -95.406623023509113, 29.996592244180878 ], [ -95.406306023715118, 29.9965532438537 ], [ -95.405880022847285, 29.996478244371637 ], [ -95.405669023643355, 29.996429244061339 ], [ -95.405377023043329, 29.996346243997628 ], [ -95.404960023388313, 29.996210244375785 ], [ -95.404425023309855, 29.99601824429477 ], [ -95.404116023171454, 29.995922243946112 ], [ -95.403811022918319, 29.9958402444481 ], [ -95.403656022359201, 29.995806243869804 ], [ -95.403315022452858, 29.995736244138619 ], [ -95.402998022866598, 29.995689244351812 ], [ -95.402674021911579, 29.995656244127954 ], [ -95.402646022768195, 29.995654244146369 ], [ -95.402508021866012, 29.995647243637688 ], [ -95.402324022699659, 29.995638243719043 ], [ -95.402283022468026, 29.995636243824382 ], [ -95.40204402179458, 29.995631244484141 ], [ -95.401935022367311, 29.99563024445283 ], [ -95.399657021236649, 29.995662244582441 ], [ -95.39934802099846, 29.995666243929485 ], [ -95.398813021527204, 29.995677243922707 ], [ -95.39857902128837, 29.995692243958498 ], [ -95.398232020986867, 29.995728244084603 ], [ -95.397919021379067, 29.995773244188886 ], [ -95.397214020816577, 29.99590724386103 ], [ -95.397068020923868, 29.995934244103243 ], [ -95.397161020594439, 29.996310244154159 ], [ -95.39731202104737, 29.996896244462931 ], [ -95.398161021768573, 30.000178244813238 ], [ -95.398246021174572, 30.000573244969747 ], [ -95.398843021438466, 30.003043245934052 ], [ -95.3990060218172, 30.003559246061009 ], [ -95.399174022137373, 30.004003245828098 ], [ -95.399236021374364, 30.003963246061133 ], [ -95.400446022044619, 30.003190245654977 ], [ -95.402215022846235, 30.002195245042106 ], [ -95.402386022603508, 30.002074245060001 ], [ -95.402445022248457, 30.002025245026239 ], [ -95.402702022716809, 30.001816245679613 ], [ -95.405260023475506, 30.000420244965873 ], [ -95.406031023812133, 30.000173245071991 ], [ -95.407751024101501, 30.000160244624073 ], [ -95.407754023711973, 30.000337244869367 ], [ -95.407758023429366, 30.000528244824078 ], [ -95.407874023759589, 30.000943245098529 ], [ -95.408048024368298, 30.001736244977103 ], [ -95.408175024525022, 30.002313245649603 ], [ -95.408503023922464, 30.003128245171105 ], [ -95.408972024549058, 30.00401124565461 ], [ -95.409223024359207, 30.004344245250834 ], [ -95.409639024550358, 30.004898245617827 ], [ -95.41169702475689, 30.007542246218129 ], [ -95.411786024916452, 30.007494245767393 ], [ -95.412191025287385, 30.007257245866725 ], [ -95.412900025895041, 30.006845246418315 ], [ -95.413698026080127, 30.00638024581027 ], [ -95.416147025900131, 30.004952245492522 ], [ -95.41686402611721, 30.004532245405713 ], [ -95.417579026154442, 30.004113245172022 ], [ -95.418309026401971, 30.003688245475491 ], [ -95.41901302670577, 30.003277244676902 ], [ -95.419666027225659, 30.002904244479776 ], [ -95.419783027513049, 30.002866244795264 ], [ -95.419886027195474, 30.002856244621416 ], [ -95.419979027345917, 30.002864245282336 ], [ -95.420290027208466, 30.002945244938665 ], [ -95.420391027149094, 30.002981244575135 ], [ -95.420516027556332, 30.003042245358628 ], [ -95.420571027363337, 30.003081244952146 ], [ -95.42061202727885, 30.003116244882573 ], [ -95.420670027640639, 30.003185245071645 ], [ -95.420704027633818, 30.003230245018134 ], [ -95.420751027085231, 30.003318244780381 ], [ -95.420785027556335, 30.003429245313058 ], [ -95.421151027948298, 30.005401244958762 ], [ -95.421195027063419, 30.005553245270345 ], [ -95.421322027207594, 30.005819245413392 ], [ -95.421359027397443, 30.005932245373813 ], [ -95.421467027594517, 30.006524246027908 ], [ -95.421927028066989, 30.006483245262352 ], [ -95.422147028005384, 30.006463245134892 ], [ -95.42348702790207, 30.006343245854676 ], [ -95.424488027955121, 30.006238245364319 ], [ -95.424909028876343, 30.006181245104347 ], [ -95.425045028879282, 30.006164245049664 ], [ -95.426393028873406, 30.005988245024643 ], [ -95.426526029217456, 30.005971244915465 ], [ -95.426645029213773, 30.005959245323261 ], [ -95.426785029116886, 30.00594724553082 ], [ -95.426870029151132, 30.005944245367633 ], [ -95.426985029376979, 30.005940245175974 ], [ -95.427062028823201, 30.005938245156827 ], [ -95.427170029472194, 30.005937245649605 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 852, "Tract": "48201240101", "Area_SqMi": 0.63415789184297411, "total_2009": 12324, "total_2010": 11119, "total_2011": 11499, "total_2012": 10283, "total_2013": 11089, "total_2014": 12254, "total_2015": 11779, "total_2016": 11233, "total_2017": 11018, "total_2018": 12264, "total_2019": 12779, "total_2020": 11177, "age1": 1503, "age2": 6077, "age3": 2117, "earn1": 944, "earn2": 1538, "earn3": 7215, "naics_s01": 0, "naics_s02": 913, "naics_s03": 0, "naics_s04": 1078, "naics_s05": 1235, "naics_s06": 499, "naics_s07": 84, "naics_s08": 306, "naics_s09": 12, "naics_s10": 675, "naics_s11": 293, "naics_s12": 2086, "naics_s13": 187, "naics_s14": 1656, "naics_s15": 7, "naics_s16": 381, "naics_s17": 0, "naics_s18": 105, "naics_s19": 51, "naics_s20": 129, "race1": 7164, "race2": 1661, "race3": 72, "race4": 624, "race5": 10, "race6": 166, "ethnicity1": 7047, "ethnicity2": 2650, "edu1": 1351, "edu2": 2007, "edu3": 2482, "edu4": 2354, "Shape_Length": 21137.257236495592, "Shape_Area": 17679236.652502861, "total_2021": 9228, "total_2022": 9697 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.403924020699307, 29.94358323362458 ], [ -95.40370102041453, 29.94321923337694 ], [ -95.403549019735394, 29.94303323354233 ], [ -95.403376019804782, 29.942790233554604 ], [ -95.403094020273912, 29.942473233355372 ], [ -95.402901019551848, 29.941924233442887 ], [ -95.402824020158036, 29.941546232992678 ], [ -95.402858020243769, 29.94100223313654 ], [ -95.402910019955584, 29.940732232938643 ], [ -95.402952019753144, 29.940493232913663 ], [ -95.40215501964137, 29.940372232814823 ], [ -95.401364019539116, 29.94019423286943 ], [ -95.40064601948896, 29.940000232643378 ], [ -95.400057018769061, 29.939823232524997 ], [ -95.397436018710863, 29.939198232349682 ], [ -95.397146018428757, 29.939129232462694 ], [ -95.396942018228017, 29.93907823305295 ], [ -95.396645017719393, 29.939004232355344 ], [ -95.395896018096963, 29.938829232398973 ], [ -95.395322018185681, 29.938729232812456 ], [ -95.394794017941862, 29.938648232244947 ], [ -95.394081017454326, 29.938596232671291 ], [ -95.393874017854301, 29.938583232728874 ], [ -95.391816016862606, 29.938573232526778 ], [ -95.390129016161509, 29.938599232896003 ], [ -95.386548015287744, 29.93865323340501 ], [ -95.385851015049454, 29.938648232562429 ], [ -95.383520014765381, 29.938688233282978 ], [ -95.383409014790388, 29.93869023335094 ], [ -95.383156014814801, 29.93869923336122 ], [ -95.382802014672876, 29.938699232778802 ], [ -95.381870014843244, 29.938700232793806 ], [ -95.38163301454658, 29.938700233375865 ], [ -95.381404014657306, 29.938701233575749 ], [ -95.381449014752477, 29.93888323300575 ], [ -95.381508014583716, 29.939119233175202 ], [ -95.381546014024764, 29.939271233198802 ], [ -95.381650014651854, 29.939687233306252 ], [ -95.381990015029047, 29.94104523326595 ], [ -95.38201301501023, 29.94113823381527 ], [ -95.382358014617523, 29.942516234064012 ], [ -95.382541014714477, 29.943253233985949 ], [ -95.382748015233901, 29.944085233766828 ], [ -95.383085014605641, 29.945438234376624 ], [ -95.383498015282939, 29.947100234369003 ], [ -95.384022015320923, 29.949208235358793 ], [ -95.38407401587304, 29.949393235001274 ], [ -95.384250015575162, 29.949397235090146 ], [ -95.384385015162223, 29.949399235370265 ], [ -95.38460301573231, 29.949403235165224 ], [ -95.38473001565022, 29.949398235650293 ], [ -95.385525015652107, 29.949310235542423 ], [ -95.38586701571306, 29.949315234817103 ], [ -95.385948015444782, 29.949316234730667 ], [ -95.386081015639434, 29.949277235298297 ], [ -95.386264015536668, 29.949162235176232 ], [ -95.386611016403506, 29.948871235354847 ], [ -95.387022015838809, 29.948436235167527 ], [ -95.38738801601346, 29.947916234477454 ], [ -95.387514016008097, 29.947738234724238 ], [ -95.387578015978505, 29.947716234466611 ], [ -95.38778601628249, 29.947381234962421 ], [ -95.388159016443353, 29.946930234627299 ], [ -95.388803016589137, 29.946100234146666 ], [ -95.388820016338599, 29.94607223484012 ], [ -95.389106016448693, 29.94563923467221 ], [ -95.38935201633322, 29.945485234417973 ], [ -95.389558016415478, 29.945393234178781 ], [ -95.389763016559172, 29.945303234002292 ], [ -95.390091016643197, 29.94525423405651 ], [ -95.39025501726924, 29.945260234349309 ], [ -95.390584016845338, 29.945276234462952 ], [ -95.391632017498281, 29.945249234435931 ], [ -95.392118016949993, 29.945249233983883 ], [ -95.392370017535796, 29.945238233880485 ], [ -95.393096017496319, 29.945266234452511 ], [ -95.393481018149842, 29.945244233882505 ], [ -95.393835017311631, 29.945261234299927 ], [ -95.394813017638967, 29.945267233885811 ], [ -95.395040017957228, 29.945245234258415 ], [ -95.395211017620014, 29.945201234092089 ], [ -95.395363018160651, 29.945184234185664 ], [ -95.395811018344432, 29.945217233824941 ], [ -95.396035018692061, 29.945183233937154 ], [ -95.396063018284678, 29.945179234274157 ], [ -95.396410018367064, 29.945163233791376 ], [ -95.396821018526737, 29.945174234060069 ], [ -95.397168019131414, 29.945245234061787 ], [ -95.397534018392236, 29.945443233596485 ], [ -95.397805018550798, 29.945674234078602 ], [ -95.39810201913788, 29.945993234513004 ], [ -95.398411018783008, 29.946378234369977 ], [ -95.398708019364307, 29.946719234342279 ], [ -95.399030019218287, 29.947065233930335 ], [ -95.399623019202323, 29.94765923417258 ], [ -95.399951019084597, 29.947907234590023 ], [ -95.400273019045329, 29.948132234604959 ], [ -95.400557019722314, 29.948303234686527 ], [ -95.400772019569587, 29.948369234383943 ], [ -95.401144019936893, 29.94834723403525 ], [ -95.401207019692052, 29.947852234696022 ], [ -95.401182019272227, 29.947583233989278 ], [ -95.40119501964044, 29.947115234256508 ], [ -95.401183019790622, 29.945922233780117 ], [ -95.401164020150532, 29.945659233614354 ], [ -95.401158020048271, 29.944326233740878 ], [ -95.401406019519086, 29.944323233875323 ], [ -95.401612019667411, 29.944317233974996 ], [ -95.401857019866654, 29.944302233950474 ], [ -95.402714019980152, 29.944101233512868 ], [ -95.402839019536316, 29.94404223357181 ], [ -95.403924020699307, 29.94358323362458 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 853, "Tract": "48201333906", "Area_SqMi": 0.76468142960940721, "total_2009": 351, "total_2010": 372, "total_2011": 584, "total_2012": 889, "total_2013": 923, "total_2014": 698, "total_2015": 531, "total_2016": 445, "total_2017": 406, "total_2018": 415, "total_2019": 489, "total_2020": 558, "age1": 253, "age2": 237, "age3": 89, "earn1": 153, "earn2": 277, "earn3": 149, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 46, "naics_s05": 4, "naics_s06": 1, "naics_s07": 424, "naics_s08": 0, "naics_s09": 0, "naics_s10": 12, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 42, "naics_s17": 0, "naics_s18": 28, "naics_s19": 14, "naics_s20": 0, "race1": 437, "race2": 90, "race3": 5, "race4": 35, "race5": 1, "race6": 11, "ethnicity1": 284, "ethnicity2": 295, "edu1": 102, "edu2": 84, "edu3": 96, "edu4": 44, "Shape_Length": 19440.562859398306, "Shape_Area": 21318009.492163502, "total_2021": 585, "total_2022": 579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.266588970410012, 29.6118391700135 ], [ -95.266578970237802, 29.608499169431056 ], [ -95.266551970138352, 29.604645168890155 ], [ -95.266520969438062, 29.604158168629905 ], [ -95.266516970335019, 29.604095168495469 ], [ -95.266481969859129, 29.603907168190499 ], [ -95.266478969916633, 29.603886168265731 ], [ -95.266444970219666, 29.603183167907517 ], [ -95.266403969902143, 29.602670167828737 ], [ -95.266370969461533, 29.60225516813356 ], [ -95.266351969538249, 29.60201716798279 ], [ -95.266321969979259, 29.601632168370326 ], [ -95.266342969662432, 29.600793168257656 ], [ -95.266334969806366, 29.600410167310841 ], [ -95.26633296950601, 29.600276167318473 ], [ -95.266122969801955, 29.600283167336141 ], [ -95.263618969099269, 29.600304167418535 ], [ -95.259230968306355, 29.600353168153934 ], [ -95.254870966444159, 29.600438168052854 ], [ -95.252971966513954, 29.600464168437171 ], [ -95.249676964975237, 29.600559168189921 ], [ -95.247883965357133, 29.600612168314992 ], [ -95.24781296541839, 29.600617168598024 ], [ -95.247688964806002, 29.600743168689981 ], [ -95.247609965302843, 29.600824168568742 ], [ -95.247761965045456, 29.601146168755079 ], [ -95.248048965504594, 29.60193016866879 ], [ -95.248320965213139, 29.602670168514415 ], [ -95.248437965503157, 29.602989168536471 ], [ -95.248879965539388, 29.603484168766197 ], [ -95.249367965744213, 29.604114168766724 ], [ -95.24973596615466, 29.604854168856619 ], [ -95.249949965421024, 29.605785169613608 ], [ -95.249948965709194, 29.606906169708758 ], [ -95.249982965664884, 29.608615170326576 ], [ -95.249888965783128, 29.609618170462674 ], [ -95.24982796612187, 29.611006170167364 ], [ -95.250341966178823, 29.61100617081738 ], [ -95.252661966972624, 29.61098217028783 ], [ -95.25483096714521, 29.610958169963414 ], [ -95.256983967394035, 29.610935170078786 ], [ -95.259985968342548, 29.610902169724863 ], [ -95.260543968646701, 29.610896170055927 ], [ -95.261219969112503, 29.610956169971644 ], [ -95.261909969333686, 29.611102170465234 ], [ -95.262476968929079, 29.611293169878497 ], [ -95.263960969255777, 29.611703170295797 ], [ -95.264374969272382, 29.611778170243856 ], [ -95.264895969681405, 29.611823170441564 ], [ -95.266353970639159, 29.611837170148025 ], [ -95.266588970410012, 29.6118391700135 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 854, "Tract": "48201252303", "Area_SqMi": 0.46874648994458329, "total_2009": 19, "total_2010": 15, "total_2011": 38, "total_2012": 80, "total_2013": 89, "total_2014": 98, "total_2015": 79, "total_2016": 44, "total_2017": 43, "total_2018": 40, "total_2019": 48, "total_2020": 53, "age1": 11, "age2": 27, "age3": 13, "earn1": 10, "earn2": 17, "earn3": 24, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 0, "naics_s06": 4, "naics_s07": 2, "naics_s08": 8, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 0, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 9, "naics_s20": 0, "race1": 36, "race2": 11, "race3": 2, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 31, "ethnicity2": 20, "edu1": 8, "edu2": 10, "edu3": 7, "edu4": 15, "Shape_Length": 14469.849294821888, "Shape_Area": 13067849.87201946, "total_2021": 51, "total_2022": 51 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.152810949271156, 29.798613211878745 ], [ -95.152756949542294, 29.797220211596326 ], [ -95.152598948569178, 29.793059210774544 ], [ -95.152436948319234, 29.78884720995519 ], [ -95.152263949290031, 29.788850209994123 ], [ -95.152150948692267, 29.788851210443692 ], [ -95.151708949142744, 29.788854210325656 ], [ -95.151490948207652, 29.788855210420078 ], [ -95.151090948604974, 29.788859210236886 ], [ -95.151033948164013, 29.788859209957099 ], [ -95.150279948387706, 29.788856210308076 ], [ -95.149427948553836, 29.788877210580928 ], [ -95.148919947435289, 29.788882210205198 ], [ -95.148665947642314, 29.788892210418169 ], [ -95.148612947564757, 29.788891210111927 ], [ -95.14823394764808, 29.788895210863384 ], [ -95.147784947225901, 29.788900210078765 ], [ -95.146961947692304, 29.788910210791276 ], [ -95.146389946947025, 29.788908210079171 ], [ -95.14614094739683, 29.788914210339819 ], [ -95.145760946847162, 29.788917210331935 ], [ -95.145316946523394, 29.788922210571247 ], [ -95.14488294731872, 29.788931210776614 ], [ -95.144650946562422, 29.788932210516155 ], [ -95.144496946575103, 29.788937210353719 ], [ -95.144430946345835, 29.788939210580505 ], [ -95.144301946930895, 29.788934210542127 ], [ -95.144080946605769, 29.788936210913668 ], [ -95.143688946344426, 29.788942210690465 ], [ -95.143413946180004, 29.788941211004278 ], [ -95.143325946732048, 29.788947210406015 ], [ -95.143117946817554, 29.788949210456892 ], [ -95.142867946667792, 29.788952210434132 ], [ -95.142439946046181, 29.788954210519627 ], [ -95.142058946138178, 29.788957210983199 ], [ -95.141338946433862, 29.788962210708988 ], [ -95.141225945593348, 29.788966210701862 ], [ -95.14117494578332, 29.788967210395857 ], [ -95.14109294632317, 29.788968210326971 ], [ -95.140770945559112, 29.788974211133329 ], [ -95.140601945327106, 29.788977211081029 ], [ -95.14028294561426, 29.788978210329326 ], [ -95.140283945733827, 29.789316210526586 ], [ -95.140286946031438, 29.789672210668222 ], [ -95.14030194585547, 29.789868210560421 ], [ -95.140371945803778, 29.790296210614706 ], [ -95.140379945707224, 29.790345211093676 ], [ -95.140407945459529, 29.790618211377804 ], [ -95.140438945379529, 29.791217210746659 ], [ -95.140439946139935, 29.791399211610752 ], [ -95.140448945955427, 29.791553211289934 ], [ -95.140448946146094, 29.791866211518812 ], [ -95.140457945705379, 29.792031211653143 ], [ -95.140465945687538, 29.792173211606165 ], [ -95.140498945915667, 29.79253221110617 ], [ -95.140560946005252, 29.792864211286627 ], [ -95.140584945542358, 29.792969211935969 ], [ -95.140647946480598, 29.793200211718371 ], [ -95.140727945684091, 29.79345421187605 ], [ -95.140836946163788, 29.793725211879284 ], [ -95.140973946158084, 29.794031211815117 ], [ -95.141293945778884, 29.794703211804165 ], [ -95.14161494657715, 29.795403211991239 ], [ -95.14166994655055, 29.795538211796977 ], [ -95.141734946297419, 29.795720212142967 ], [ -95.141763946534908, 29.795802211707496 ], [ -95.141776946636838, 29.795840211921394 ], [ -95.141873946477887, 29.796174212331159 ], [ -95.141901946472075, 29.796302212421867 ], [ -95.141925946164818, 29.796407211764837 ], [ -95.141936946754541, 29.796472212334571 ], [ -95.141981946219744, 29.796773212033553 ], [ -95.142009946908587, 29.79708021202315 ], [ -95.142041946527371, 29.79751021252028 ], [ -95.142047946589315, 29.797720212767512 ], [ -95.142063946562573, 29.798051212511712 ], [ -95.14206694687114, 29.798107212912125 ], [ -95.142081946793112, 29.79881121278396 ], [ -95.142201946851003, 29.798807212807517 ], [ -95.142572946377683, 29.79880721258402 ], [ -95.142861946363283, 29.798807212363428 ], [ -95.142966946908231, 29.798816212445868 ], [ -95.143361946691925, 29.798826213022412 ], [ -95.143803946989067, 29.798818212231804 ], [ -95.144041947196996, 29.798810212946659 ], [ -95.144610947680619, 29.798806212181333 ], [ -95.145432947008928, 29.798785212469159 ], [ -95.146250947562123, 29.798766212328744 ], [ -95.146320948175358, 29.798762212792116 ], [ -95.146467947425293, 29.798767212538678 ], [ -95.147063947968647, 29.798752212548255 ], [ -95.147893948462851, 29.798733212424374 ], [ -95.148757947796028, 29.798709212584235 ], [ -95.149585948643065, 29.79869021225613 ], [ -95.149618948666927, 29.798688212842077 ], [ -95.149690948193452, 29.798685212303653 ], [ -95.15044094912426, 29.798671212219443 ], [ -95.151277949272071, 29.798650212163189 ], [ -95.152139948883274, 29.7986302125042 ], [ -95.152166949502984, 29.798629211961487 ], [ -95.152478948770508, 29.798623212717537 ], [ -95.152546949705396, 29.798616212414554 ], [ -95.152810949271156, 29.798613211878745 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 855, "Tract": "48201252305", "Area_SqMi": 0.90493067544531924, "total_2009": 313, "total_2010": 378, "total_2011": 54, "total_2012": 48, "total_2013": 75, "total_2014": 105, "total_2015": 100, "total_2016": 93, "total_2017": 82, "total_2018": 170, "total_2019": 168, "total_2020": 178, "age1": 32, "age2": 144, "age3": 63, "earn1": 54, "earn2": 96, "earn3": 89, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 14, "naics_s07": 11, "naics_s08": 17, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 164, "naics_s17": 0, "naics_s18": 6, "naics_s19": 6, "naics_s20": 0, "race1": 131, "race2": 94, "race3": 0, "race4": 11, "race5": 0, "race6": 3, "ethnicity1": 156, "ethnicity2": 83, "edu1": 54, "edu2": 53, "edu3": 74, "edu4": 26, "Shape_Length": 22520.898683240961, "Shape_Area": 25227918.427085496, "total_2021": 198, "total_2022": 239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.161227951666135, 29.804397213594179 ], [ -95.161227951769149, 29.804314213343726 ], [ -95.1612149521942, 29.804248213406911 ], [ -95.161189952069591, 29.804193213215658 ], [ -95.161156951230112, 29.804148213368826 ], [ -95.161120952020624, 29.804100212806119 ], [ -95.161051952058941, 29.804023212832867 ], [ -95.160890951194418, 29.803920213228146 ], [ -95.160817951326635, 29.803874213062581 ], [ -95.160767951736076, 29.803814213443733 ], [ -95.160780951514994, 29.803451212867309 ], [ -95.160735951479211, 29.803209212723143 ], [ -95.160685951527611, 29.80314321274771 ], [ -95.160509951131928, 29.802978212963389 ], [ -95.160414951668415, 29.802923212511754 ], [ -95.159815951832059, 29.802686212957202 ], [ -95.159399950790771, 29.802505213117186 ], [ -95.158926951370063, 29.802312212884313 ], [ -95.15865595151611, 29.802219212627211 ], [ -95.158214950873912, 29.802120213101613 ], [ -95.15797495111326, 29.802087212819149 ], [ -95.157555950843289, 29.802016212669077 ], [ -95.156959950782294, 29.801916213242588 ], [ -95.156905950511344, 29.801905212813367 ], [ -95.156171950728648, 29.801762212994678 ], [ -95.155976950734797, 29.801707213199911 ], [ -95.155875950430442, 29.801657212550875 ], [ -95.155692950553686, 29.801371212993228 ], [ -95.155535950569501, 29.801036212342783 ], [ -95.155510950271548, 29.800871212238285 ], [ -95.155529949761444, 29.800816212572954 ], [ -95.155617950366079, 29.800695212466916 ], [ -95.155699950342978, 29.800514212274329 ], [ -95.155743950667357, 29.800365212845421 ], [ -95.15595795009574, 29.800217212417426 ], [ -95.156493949868803, 29.799947212719069 ], [ -95.155963950651696, 29.799318212244923 ], [ -95.155907949922238, 29.799258212711866 ], [ -95.155702949693008, 29.79908321185221 ], [ -95.155646950146945, 29.799042212458062 ], [ -95.155580950463786, 29.799008211996245 ], [ -95.155464949865873, 29.798934211857006 ], [ -95.155377950483199, 29.798885212575112 ], [ -95.155209950269551, 29.79880021249161 ], [ -95.155069949411654, 29.798740212468687 ], [ -95.154915949697354, 29.798686211841638 ], [ -95.154665950274676, 29.798628212231943 ], [ -95.154448950116333, 29.79859521247807 ], [ -95.154338950063163, 29.798586212476572 ], [ -95.154305949376322, 29.798583212017331 ], [ -95.153429949755449, 29.798587212355333 ], [ -95.153135949696065, 29.798599212526188 ], [ -95.153078949490393, 29.798598212173218 ], [ -95.152888949581381, 29.798612212554382 ], [ -95.152810949271156, 29.798613211878745 ], [ -95.152546949705396, 29.798616212414554 ], [ -95.152478948770508, 29.798623212717537 ], [ -95.152166949502984, 29.798629211961487 ], [ -95.152139948883274, 29.7986302125042 ], [ -95.151277949272071, 29.798650212163189 ], [ -95.15044094912426, 29.798671212219443 ], [ -95.149690948193452, 29.798685212303653 ], [ -95.149618948666927, 29.798688212842077 ], [ -95.149585948643065, 29.79869021225613 ], [ -95.148757947796028, 29.798709212584235 ], [ -95.147893948462851, 29.798733212424374 ], [ -95.147063947968647, 29.798752212548255 ], [ -95.146467947425293, 29.798767212538678 ], [ -95.146320948175358, 29.798762212792116 ], [ -95.146250947562123, 29.798766212328744 ], [ -95.145432947008928, 29.798785212469159 ], [ -95.144610947680619, 29.798806212181333 ], [ -95.144041947196996, 29.798810212946659 ], [ -95.143803946989067, 29.798818212231804 ], [ -95.143361946691925, 29.798826213022412 ], [ -95.142966946908231, 29.798816212445868 ], [ -95.142861946363283, 29.798807212363428 ], [ -95.142572946377683, 29.79880721258402 ], [ -95.142201946851003, 29.798807212807517 ], [ -95.142081946793112, 29.79881121278396 ], [ -95.142091946276835, 29.799174212391375 ], [ -95.142116946845007, 29.799536212904844 ], [ -95.142134946279342, 29.799843212706758 ], [ -95.14213894687056, 29.79999221312913 ], [ -95.142144946231795, 29.800058212493912 ], [ -95.142147946694749, 29.800258212651535 ], [ -95.142150946273176, 29.80051021261605 ], [ -95.142171946688663, 29.800968213222543 ], [ -95.142190946549093, 29.801691213216731 ], [ -95.142216946994751, 29.80240821379229 ], [ -95.142251946912211, 29.803386213327013 ], [ -95.14225694639444, 29.803622214072753 ], [ -95.142281946547456, 29.80432721365689 ], [ -95.142308947104198, 29.805035214388877 ], [ -95.142316946914605, 29.805384214260162 ], [ -95.142310947014906, 29.805683214468459 ], [ -95.142313946917497, 29.805818214561562 ], [ -95.142361946767181, 29.807907214442992 ], [ -95.142377947615003, 29.808635215134842 ], [ -95.142419947655966, 29.809506214652011 ], [ -95.142445947208614, 29.810276215101808 ], [ -95.142463947286686, 29.811072215204636 ], [ -95.142507946962084, 29.811412214882608 ], [ -95.142686947112239, 29.812856215209528 ], [ -95.142705947589135, 29.814017215734857 ], [ -95.142793947945208, 29.815331216057466 ], [ -95.142793947465719, 29.815452215960789 ], [ -95.144397947435024, 29.814891215861806 ], [ -95.144718948500028, 29.814780215640397 ], [ -95.144945948471502, 29.814699215858294 ], [ -95.145256948020901, 29.814589215845206 ], [ -95.145922948655667, 29.814352215997648 ], [ -95.146951948537563, 29.813991215938628 ], [ -95.147606949183768, 29.813761215428816 ], [ -95.148087948556054, 29.813591215493361 ], [ -95.148871948950799, 29.813318215580427 ], [ -95.149365949369397, 29.813132215845418 ], [ -95.149472948724906, 29.813091215362679 ], [ -95.149631949486078, 29.813032215279165 ], [ -95.150112949426813, 29.812807215340964 ], [ -95.150349948840116, 29.812687215182766 ], [ -95.150911949631976, 29.812390214948703 ], [ -95.15106094933968, 29.81231121546039 ], [ -95.151308949290268, 29.81218621525014 ], [ -95.151832950101223, 29.811970215205438 ], [ -95.152419949376025, 29.811773215123242 ], [ -95.152640949667287, 29.811699215060759 ], [ -95.153462950071557, 29.811437214667762 ], [ -95.153655949736745, 29.811376214638599 ], [ -95.154129950573648, 29.811230215049783 ], [ -95.154291950538422, 29.811180215252868 ], [ -95.154469950097337, 29.811126214850059 ], [ -95.154610950579169, 29.81108421508706 ], [ -95.155097950975005, 29.810940214411296 ], [ -95.156261950656841, 29.81058321491259 ], [ -95.156376950472833, 29.8105482148537 ], [ -95.156542950370408, 29.810497214939641 ], [ -95.157050951389039, 29.810373214865116 ], [ -95.157220951265742, 29.810332214324628 ], [ -95.157360951487263, 29.810295214734538 ], [ -95.157836951178965, 29.810170214098619 ], [ -95.15834295080829, 29.810044214642243 ], [ -95.158413951362533, 29.810027214820053 ], [ -95.158695951668122, 29.809951213988551 ], [ -95.158678951339752, 29.809812214792423 ], [ -95.158677951620902, 29.809784214004107 ], [ -95.1586729512223, 29.809653214496969 ], [ -95.158697951052901, 29.809488213931392 ], [ -95.158698951578927, 29.809356214654404 ], [ -95.15864195166651, 29.809197214438914 ], [ -95.158559951624781, 29.809054214106908 ], [ -95.158543951567168, 29.809035214036431 ], [ -95.158433951541994, 29.808911213914225 ], [ -95.158282951649198, 29.808806214218006 ], [ -95.157771951337949, 29.808377214375771 ], [ -95.15760795059991, 29.808273214251678 ], [ -95.157481950591787, 29.808240214167455 ], [ -95.15729895076521, 29.80823421391646 ], [ -95.157134951334839, 29.808218214476316 ], [ -95.157021951355745, 29.808185213798197 ], [ -95.156970950353269, 29.808119214530016 ], [ -95.156958950588304, 29.808020213719246 ], [ -95.15692095131952, 29.80790421431805 ], [ -95.156636951051908, 29.807464213741234 ], [ -95.156573950498213, 29.807332213678283 ], [ -95.156561950852094, 29.807217214123664 ], [ -95.15656795031714, 29.807107213458298 ], [ -95.156775950679801, 29.80690921383432 ], [ -95.157153951120691, 29.806755214268769 ], [ -95.157261950715707, 29.806595213640357 ], [ -95.157286950671832, 29.806409213476332 ], [ -95.15734395078357, 29.806260213604542 ], [ -95.15739995123559, 29.806205213721718 ], [ -95.157740951227012, 29.805958213952181 ], [ -95.157872951117895, 29.805897213665389 ], [ -95.157986951102984, 29.805875213359919 ], [ -95.158068951145751, 29.805837213414815 ], [ -95.158308951068562, 29.805600213612486 ], [ -95.158579950657455, 29.805452213154386 ], [ -95.158856951655792, 29.805337213774404 ], [ -95.15968295143972, 29.805172213104488 ], [ -95.160098951857194, 29.805139213253959 ], [ -95.160369951630329, 29.805166213379742 ], [ -95.16043995113219, 29.805166213452367 ], [ -95.160653951579619, 29.805023212987511 ], [ -95.160855952198915, 29.80490321341513 ], [ -95.161151951316342, 29.804765213613365 ], [ -95.161214951930248, 29.8046332132072 ], [ -95.161227951666135, 29.804397213594179 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 856, "Tract": "48201542004", "Area_SqMi": 0.53089216696712793, "total_2009": 463, "total_2010": 189, "total_2011": 257, "total_2012": 193, "total_2013": 195, "total_2014": 192, "total_2015": 220, "total_2016": 453, "total_2017": 545, "total_2018": 276, "total_2019": 292, "total_2020": 231, "age1": 60, "age2": 140, "age3": 33, "earn1": 50, "earn2": 100, "earn3": 83, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 3, "naics_s06": 0, "naics_s07": 45, "naics_s08": 0, "naics_s09": 0, "naics_s10": 23, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 63, "naics_s15": 0, "naics_s16": 20, "naics_s17": 17, "naics_s18": 46, "naics_s19": 9, "naics_s20": 0, "race1": 164, "race2": 31, "race3": 1, "race4": 29, "race5": 0, "race6": 8, "ethnicity1": 163, "ethnicity2": 70, "edu1": 26, "edu2": 39, "edu3": 69, "edu4": 39, "Shape_Length": 17179.463600857442, "Shape_Area": 14800364.984018771, "total_2021": 207, "total_2022": 233 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.720410095080027, 29.807927194678456 ], [ -95.720408094800888, 29.806918194924851 ], [ -95.7204010946392, 29.805680194043582 ], [ -95.720388094626387, 29.805427194790113 ], [ -95.720363095266237, 29.805182193928363 ], [ -95.720327095242112, 29.804945194220892 ], [ -95.720285095239319, 29.804743193972982 ], [ -95.720265095038513, 29.804648194246905 ], [ -95.720230094675614, 29.804518193932729 ], [ -95.720188094334702, 29.80436219425858 ], [ -95.720133094589613, 29.804207194288399 ], [ -95.720110094985145, 29.804143194095499 ], [ -95.719964094719799, 29.803787194375531 ], [ -95.719638094830657, 29.803027193737027 ], [ -95.719612094323097, 29.802966194165357 ], [ -95.719403094992643, 29.802477193693829 ], [ -95.719358094081912, 29.802372193346777 ], [ -95.719327094153584, 29.802302193620104 ], [ -95.719221094544324, 29.802023193821181 ], [ -95.719156094842276, 29.801829193740659 ], [ -95.719078094021711, 29.801537193219765 ], [ -95.7190540941438, 29.801426193706117 ], [ -95.719007094465539, 29.801158193152901 ], [ -95.718974094873886, 29.800889193073289 ], [ -95.718966094210543, 29.800714193485788 ], [ -95.718972094628498, 29.800547193118213 ], [ -95.718989094054038, 29.800386193301101 ], [ -95.719003094668068, 29.800299193633215 ], [ -95.71890009426059, 29.800300193650859 ], [ -95.718586094704605, 29.800302193577199 ], [ -95.718343093843316, 29.800308193561339 ], [ -95.718267094132671, 29.800309193368498 ], [ -95.718020093879929, 29.800311193023454 ], [ -95.717616093846715, 29.800313193161251 ], [ -95.716757094203942, 29.800309193081681 ], [ -95.716667093928947, 29.800308193762522 ], [ -95.716603093593903, 29.800308193122643 ], [ -95.714709093045172, 29.800314193641224 ], [ -95.714466093429763, 29.800315193577649 ], [ -95.714226092987687, 29.800315193419635 ], [ -95.713754092604816, 29.800315193883467 ], [ -95.713227092762878, 29.800317193702742 ], [ -95.713134093076818, 29.800325193892519 ], [ -95.713012092610313, 29.800317193274278 ], [ -95.712911092939692, 29.800321193692486 ], [ -95.71268709311245, 29.800317193879238 ], [ -95.711556092718837, 29.800320193210794 ], [ -95.711497092411548, 29.800322193758351 ], [ -95.711298091897959, 29.800318193824346 ], [ -95.709921092440524, 29.800320193289334 ], [ -95.709073091425964, 29.800325193294551 ], [ -95.708703091255302, 29.80032019392678 ], [ -95.708332091274656, 29.800321193701219 ], [ -95.707334091015809, 29.800324193650344 ], [ -95.705572091078722, 29.800327194056326 ], [ -95.705407090718481, 29.800325194271501 ], [ -95.704964091123287, 29.800318193761086 ], [ -95.704604090775234, 29.800313194195759 ], [ -95.704037090273303, 29.8003131934923 ], [ -95.70398109004779, 29.800314194037618 ], [ -95.703976090216031, 29.80039719419079 ], [ -95.703967090567701, 29.800523194181103 ], [ -95.703970090882876, 29.800685194356255 ], [ -95.703979090089618, 29.80117019383038 ], [ -95.703992090907789, 29.801871194021111 ], [ -95.703998090633917, 29.801972193941708 ], [ -95.703983090580621, 29.802025194662182 ], [ -95.703983090888272, 29.802041193790689 ], [ -95.703984090898089, 29.802074194112105 ], [ -95.703998090274595, 29.802188194697099 ], [ -95.703997090822185, 29.802333193850316 ], [ -95.703992090812619, 29.802412194624221 ], [ -95.703996090161525, 29.802500194237993 ], [ -95.703985090813774, 29.802768194700583 ], [ -95.70397609107944, 29.802855194164163 ], [ -95.703983090398197, 29.802948194703443 ], [ -95.70398609030309, 29.803421194586043 ], [ -95.703977090420778, 29.803504194703557 ], [ -95.703977090746974, 29.803597194637334 ], [ -95.703988091091986, 29.803780194890926 ], [ -95.703988090973226, 29.803965194664215 ], [ -95.703993090885959, 29.804054194523751 ], [ -95.703993090453267, 29.804266194916618 ], [ -95.703993091121063, 29.80449519448981 ], [ -95.703973091054394, 29.804818195074965 ], [ -95.703960090596851, 29.804933195204818 ], [ -95.703953090980605, 29.805025194434204 ], [ -95.703941090589694, 29.805194195142658 ], [ -95.703941090339242, 29.8052551950001 ], [ -95.703939090446767, 29.80535119461987 ], [ -95.703939090706697, 29.805915195087998 ], [ -95.703941090487319, 29.806633195566466 ], [ -95.70393909058609, 29.807050195219691 ], [ -95.703940090916248, 29.8074801953038 ], [ -95.703940090807194, 29.807626195392402 ], [ -95.704091090393277, 29.80763019558502 ], [ -95.707895091688556, 29.807547194769221 ], [ -95.711700093220969, 29.807465194724763 ], [ -95.71248209346868, 29.807435195062496 ], [ -95.712483092904648, 29.807496194898505 ], [ -95.712501092557929, 29.808375195526548 ], [ -95.712714092787849, 29.808374195103262 ], [ -95.713150093606288, 29.808374194826289 ], [ -95.71321109276272, 29.808441195612755 ], [ -95.714045093567705, 29.808426195085815 ], [ -95.714488093554493, 29.808413195230855 ], [ -95.715159093742571, 29.808378195001261 ], [ -95.715412093561795, 29.808377195547553 ], [ -95.715736093435211, 29.808389195449301 ], [ -95.715930094334226, 29.808501195318591 ], [ -95.716091094379777, 29.808611195166225 ], [ -95.716517094115346, 29.80889919516552 ], [ -95.717513094378532, 29.809621195153817 ], [ -95.717756094390467, 29.809784195036379 ], [ -95.717853094151351, 29.809844195461288 ], [ -95.718246094989112, 29.810067195218565 ], [ -95.71834709475462, 29.810134195162458 ], [ -95.719029095201918, 29.810611195835609 ], [ -95.719153095063533, 29.810679195736935 ], [ -95.719534094618524, 29.810791195377799 ], [ -95.719742094549773, 29.810823195701005 ], [ -95.719907094894552, 29.810839195287013 ], [ -95.720332095397907, 29.810814195231195 ], [ -95.720402095026188, 29.810811195213855 ], [ -95.720393094786004, 29.809822194901411 ], [ -95.720389094953404, 29.809368195431297 ], [ -95.720388095151847, 29.808687195218464 ], [ -95.72039309491069, 29.808315195275849 ], [ -95.720410095080027, 29.807927194678456 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 857, "Tract": "48201542401", "Area_SqMi": 0.47403446361129231, "total_2009": 523, "total_2010": 537, "total_2011": 575, "total_2012": 714, "total_2013": 819, "total_2014": 792, "total_2015": 805, "total_2016": 944, "total_2017": 825, "total_2018": 956, "total_2019": 1010, "total_2020": 983, "age1": 290, "age2": 546, "age3": 203, "earn1": 250, "earn2": 317, "earn3": 472, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 42, "naics_s05": 10, "naics_s06": 1, "naics_s07": 132, "naics_s08": 2, "naics_s09": 13, "naics_s10": 38, "naics_s11": 289, "naics_s12": 144, "naics_s13": 0, "naics_s14": 50, "naics_s15": 0, "naics_s16": 50, "naics_s17": 22, "naics_s18": 233, "naics_s19": 10, "naics_s20": 0, "race1": 750, "race2": 128, "race3": 5, "race4": 140, "race5": 0, "race6": 16, "ethnicity1": 700, "ethnicity2": 339, "edu1": 156, "edu2": 187, "edu3": 222, "edu4": 184, "Shape_Length": 16171.89276811355, "Shape_Area": 13215269.527389927, "total_2021": 1023, "total_2022": 1039 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.730872096619478, 29.790470191064227 ], [ -95.730885097352981, 29.789644191099967 ], [ -95.729409096458355, 29.789652190595795 ], [ -95.728839096731761, 29.789655190521568 ], [ -95.728267096693031, 29.789660190759367 ], [ -95.727631095772011, 29.78966419114461 ], [ -95.727184096271742, 29.78966419094192 ], [ -95.727103095461956, 29.789666190847676 ], [ -95.726920095496823, 29.789669191284602 ], [ -95.726884096265778, 29.789672190621683 ], [ -95.726774096242039, 29.789680191070872 ], [ -95.726566096049055, 29.789706191066095 ], [ -95.726484095351438, 29.789720191223303 ], [ -95.726192095268559, 29.78979619088037 ], [ -95.726033096041249, 29.789849190619794 ], [ -95.725885095844149, 29.789912191330409 ], [ -95.725134095785464, 29.790287190687529 ], [ -95.725064095041972, 29.790317190726068 ], [ -95.725006095615385, 29.790342191232135 ], [ -95.724854094948171, 29.79039819107539 ], [ -95.724647095159526, 29.790457190969711 ], [ -95.724425095740699, 29.790501191417949 ], [ -95.724194095508054, 29.79052619159927 ], [ -95.723914095586153, 29.7905341914886 ], [ -95.722853094906327, 29.790542191185882 ], [ -95.722388094320451, 29.790543190850101 ], [ -95.722176094241846, 29.790544191377556 ], [ -95.72181309471415, 29.790545191255489 ], [ -95.721547094869933, 29.790537191019435 ], [ -95.721378094829134, 29.790519191191287 ], [ -95.721212094380036, 29.790490191685816 ], [ -95.721047094363499, 29.790451191503575 ], [ -95.720795094681364, 29.790368191282308 ], [ -95.720016094463318, 29.790066191357816 ], [ -95.719823094341621, 29.790009191211723 ], [ -95.719646094328183, 29.789971190816026 ], [ -95.719451094192038, 29.789939191359782 ], [ -95.719393094084083, 29.789935191389503 ], [ -95.719238093980863, 29.789924191596306 ], [ -95.71890109381944, 29.789924191626966 ], [ -95.718903093802382, 29.790221190950859 ], [ -95.718879093835056, 29.790772191240034 ], [ -95.718877093995772, 29.791116191863292 ], [ -95.718880093528512, 29.79139119172563 ], [ -95.718883094016817, 29.791656191918321 ], [ -95.718889094456344, 29.79221419202333 ], [ -95.718889093934109, 29.792285191555127 ], [ -95.718889093737786, 29.792374192121503 ], [ -95.718889094383087, 29.792389192091374 ], [ -95.718893093654017, 29.792598191797328 ], [ -95.718897094360798, 29.79267219195296 ], [ -95.718890094063013, 29.792813192008861 ], [ -95.718893093679398, 29.7933821922059 ], [ -95.718897093782601, 29.793855192402749 ], [ -95.71890209370342, 29.793923192278125 ], [ -95.718903093966716, 29.793938192339194 ], [ -95.718915093572576, 29.794025192226133 ], [ -95.718959094204223, 29.794269191802179 ], [ -95.718982094535107, 29.794437192025725 ], [ -95.718989093971871, 29.794602192146087 ], [ -95.718991093615514, 29.79478519184293 ], [ -95.71899909396862, 29.795410192685491 ], [ -95.719000094198492, 29.795492191989396 ], [ -95.718998094100442, 29.795842192464999 ], [ -95.719002094105818, 29.79619019252949 ], [ -95.719003093690901, 29.796532192797159 ], [ -95.719005094653411, 29.796977192595211 ], [ -95.719011094042926, 29.797479193180923 ], [ -95.719012094173124, 29.797948193157147 ], [ -95.719015093802213, 29.798316193094031 ], [ -95.719024094540714, 29.798971193245208 ], [ -95.719024093857328, 29.799497193317897 ], [ -95.719027094865879, 29.800061193042179 ], [ -95.719016094272163, 29.800226193697078 ], [ -95.719003094668068, 29.800299193633215 ], [ -95.719698094216284, 29.800305192941565 ], [ -95.719860094406215, 29.800304193625671 ], [ -95.720450095107466, 29.800286193604304 ], [ -95.720600095275785, 29.800281192948333 ], [ -95.720793095167252, 29.800289193163948 ], [ -95.721276095321343, 29.800331193731715 ], [ -95.721591094845806, 29.800383193221393 ], [ -95.72191209479756, 29.800451193337427 ], [ -95.722195094792283, 29.800519193205211 ], [ -95.722812095459375, 29.800688193210704 ], [ -95.722971095631252, 29.800732193211417 ], [ -95.72329909545013, 29.800817193190952 ], [ -95.723660095916856, 29.800899193624836 ], [ -95.723939096149977, 29.800949193021154 ], [ -95.724076095745744, 29.800970193458902 ], [ -95.724374096186921, 29.801005193320051 ], [ -95.724739095859746, 29.80103119348458 ], [ -95.72497309593895, 29.801037193687243 ], [ -95.725581096345877, 29.801032193537797 ], [ -95.726264095860827, 29.801028193585811 ], [ -95.726337096737552, 29.801032192987552 ], [ -95.726388096252677, 29.801034192922291 ], [ -95.726495096000704, 29.801027193318166 ], [ -95.726695096439798, 29.801030193207215 ], [ -95.72673809637935, 29.801032193541435 ], [ -95.726846096849727, 29.801025192820088 ], [ -95.727130096897881, 29.801023192948605 ], [ -95.729352097415699, 29.80100719352561 ], [ -95.730238097005255, 29.800977192803654 ], [ -95.730559097457714, 29.800978192933066 ], [ -95.730553097411203, 29.800502193398209 ], [ -95.730547096995011, 29.799787193062425 ], [ -95.730540096909351, 29.799067192301688 ], [ -95.73052509677234, 29.798906192597926 ], [ -95.730499097502275, 29.798756192363594 ], [ -95.730450097409516, 29.798585192338059 ], [ -95.730387097247501, 29.798425192571354 ], [ -95.730339097324702, 29.798324192579887 ], [ -95.730313097161272, 29.798280192419409 ], [ -95.730233097606373, 29.798156192302045 ], [ -95.730123096765979, 29.798007192808594 ], [ -95.730022096795835, 29.797896192743334 ], [ -95.729837097476548, 29.797729192097894 ], [ -95.729699096533182, 29.797626192143127 ], [ -95.729452097110311, 29.79746619238227 ], [ -95.728793096338592, 29.797060192304325 ], [ -95.72836809666579, 29.796798192560516 ], [ -95.72830609706584, 29.796755192531172 ], [ -95.72824709648313, 29.796705192183001 ], [ -95.728191096958867, 29.7966491925255 ], [ -95.728141096418909, 29.7965871927222 ], [ -95.728096096282798, 29.796519191873479 ], [ -95.72798309658431, 29.796302192105806 ], [ -95.727898095965912, 29.796170192472392 ], [ -95.727853096051177, 29.79611619228508 ], [ -95.727733096015299, 29.795988192257653 ], [ -95.727664096537339, 29.795953192050479 ], [ -95.72822709600581, 29.795335191718245 ], [ -95.728370096372942, 29.795138191780076 ], [ -95.728815096516172, 29.794157192113069 ], [ -95.729189096424932, 29.793396191663707 ], [ -95.729278096810063, 29.793213191652139 ], [ -95.729289096501489, 29.793191191681483 ], [ -95.729756096336502, 29.792665191643795 ], [ -95.72982309685419, 29.792590191150303 ], [ -95.730619097360872, 29.791693191563649 ], [ -95.730709097420984, 29.79156119159865 ], [ -95.730832096759855, 29.791267191471658 ], [ -95.730846097429492, 29.791089191060948 ], [ -95.730855097397196, 29.790882190748835 ], [ -95.730872096619478, 29.790470191064227 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 858, "Tract": "48201543004", "Area_SqMi": 13.278428789252457, "total_2009": 218, "total_2010": 254, "total_2011": 22, "total_2012": 46, "total_2013": 111, "total_2014": 220, "total_2015": 296, "total_2016": 275, "total_2017": 307, "total_2018": 353, "total_2019": 396, "total_2020": 706, "age1": 239, "age2": 323, "age3": 86, "earn1": 231, "earn2": 236, "earn3": 181, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 43, "naics_s05": 5, "naics_s06": 15, "naics_s07": 155, "naics_s08": 6, "naics_s09": 0, "naics_s10": 6, "naics_s11": 23, "naics_s12": 82, "naics_s13": 0, "naics_s14": 44, "naics_s15": 1, "naics_s16": 135, "naics_s17": 5, "naics_s18": 80, "naics_s19": 45, "naics_s20": 0, "race1": 415, "race2": 125, "race3": 5, "race4": 89, "race5": 1, "race6": 13, "ethnicity1": 466, "ethnicity2": 182, "edu1": 76, "edu2": 97, "edu3": 112, "edu4": 124, "Shape_Length": 91688.176541233144, "Shape_Area": 370179868.38635612, "total_2021": 564, "total_2022": 648 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.769603114371179, 29.953388223046129 ], [ -95.769611113853415, 29.952015222671832 ], [ -95.769599114410596, 29.94978022190876 ], [ -95.769592113569388, 29.949343222357754 ], [ -95.769590113612438, 29.949204221767719 ], [ -95.769574114180955, 29.948064221433338 ], [ -95.769447113834872, 29.946915221252311 ], [ -95.769170113919472, 29.946044220969107 ], [ -95.769006113602074, 29.945527220740338 ], [ -95.768892113419042, 29.945328221404818 ], [ -95.768609113526622, 29.944583220775048 ], [ -95.768566113792687, 29.944507221183429 ], [ -95.767955113370931, 29.943426220446401 ], [ -95.766785112841461, 29.94171422034891 ], [ -95.766728113303529, 29.941613220439493 ], [ -95.766029112865283, 29.940545220418457 ], [ -95.765961112669288, 29.9404332204581 ], [ -95.765380112626815, 29.939561220398243 ], [ -95.76508611200596, 29.939020220155495 ], [ -95.764880112341459, 29.938633219839357 ], [ -95.764730112733389, 29.938314219470403 ], [ -95.764374112486635, 29.937464220113363 ], [ -95.764330111928928, 29.937371219967339 ], [ -95.763980111530628, 29.936442219242686 ], [ -95.763787112343323, 29.935618218912023 ], [ -95.763668112193074, 29.935082219174568 ], [ -95.763406111922052, 29.933414219259028 ], [ -95.762957110959448, 29.929950218478847 ], [ -95.762475110689834, 29.926437217656105 ], [ -95.762438111118641, 29.926111217093048 ], [ -95.762330110854904, 29.925182217293216 ], [ -95.762214111218995, 29.924072217101067 ], [ -95.762145110863969, 29.923452216831929 ], [ -95.762057110551083, 29.922301216733782 ], [ -95.762052110406586, 29.922241216661963 ], [ -95.762050110953552, 29.922191216838701 ], [ -95.762046111259366, 29.922117216438515 ], [ -95.761888110953521, 29.918970216381496 ], [ -95.761754110861361, 29.918970216366514 ], [ -95.753534108721084, 29.918980216523959 ], [ -95.746549106508965, 29.919008216601878 ], [ -95.7415011058022, 29.919071216736754 ], [ -95.741312105562329, 29.91906521658245 ], [ -95.74124910517375, 29.919038216452371 ], [ -95.741211105100177, 29.918994216574408 ], [ -95.74117910575805, 29.918906216520007 ], [ -95.74114710503153, 29.91873021711454 ], [ -95.741147104966828, 29.918356216875431 ], [ -95.741108104761068, 29.916570215923795 ], [ -95.741101104876194, 29.915102215524396 ], [ -95.741112105214796, 29.912310215267386 ], [ -95.741099105300648, 29.912019215695366 ], [ -95.740456104539874, 29.912052215113775 ], [ -95.734897103717984, 29.912065215310587 ], [ -95.732373102886541, 29.912105216042587 ], [ -95.731761102888342, 29.91158821526782 ], [ -95.731250101961152, 29.911138215874601 ], [ -95.730871102577694, 29.910791215887617 ], [ -95.730663102686208, 29.910588215079102 ], [ -95.730499101743206, 29.910385215392424 ], [ -95.730287102114417, 29.910030215737947 ], [ -95.730227101914323, 29.909929215113834 ], [ -95.730132101865053, 29.909791214839633 ], [ -95.729848102363377, 29.909511215113092 ], [ -95.729716101821921, 29.909418215387237 ], [ -95.729407102333539, 29.909280215491613 ], [ -95.72915410228471, 29.909209215386781 ], [ -95.728031101376985, 29.908940215427609 ], [ -95.72703410146201, 29.908660215416422 ], [ -95.726624101415041, 29.908512214869752 ], [ -95.726321101436625, 29.908384215198758 ], [ -95.726256100937377, 29.90942221567763 ], [ -95.726250101341748, 29.909606215464695 ], [ -95.726248101327755, 29.910018215170425 ], [ -95.726247101023688, 29.910515215543256 ], [ -95.726275101465561, 29.91121721588037 ], [ -95.726446101616872, 29.911855215486156 ], [ -95.726621101302243, 29.912163215973607 ], [ -95.726770101091049, 29.912381215826535 ], [ -95.727286101987076, 29.913294216379203 ], [ -95.727707101379735, 29.913915216271779 ], [ -95.727986102087328, 29.914528216652247 ], [ -95.728150101831275, 29.915084216039357 ], [ -95.728331101841292, 29.916124216956792 ], [ -95.728350102527756, 29.917985216668392 ], [ -95.728351102089263, 29.918051216813716 ], [ -95.72835410185688, 29.918239217108592 ], [ -95.728360102607297, 29.919178217471085 ], [ -95.728369101843398, 29.9201292177056 ], [ -95.728371101902098, 29.920320217012694 ], [ -95.728382101997227, 29.921274217863768 ], [ -95.728391102027842, 29.922423217612625 ], [ -95.728398102102346, 29.92337621775275 ], [ -95.728408101880092, 29.924323218417001 ], [ -95.728410102072161, 29.924512218333348 ], [ -95.7284171024356, 29.925466218729003 ], [ -95.728423102180699, 29.926361218926701 ], [ -95.728425102463675, 29.926543218624094 ], [ -95.728426102134819, 29.926616218673221 ], [ -95.728430102076061, 29.927199219033085 ], [ -95.728432102339639, 29.927396218870822 ], [ -95.72843410260775, 29.927594218708283 ], [ -95.728443102505167, 29.928793219342623 ], [ -95.728453102679495, 29.929542219510846 ], [ -95.728454102457292, 29.92959621925905 ], [ -95.72845510288559, 29.9297982189977 ], [ -95.728455102849594, 29.929810219140904 ], [ -95.728458103055644, 29.930429219302063 ], [ -95.72846010312945, 29.930740219352895 ], [ -95.728460102975532, 29.930802219170896 ], [ -95.728463102767265, 29.931199219270173 ], [ -95.728475103062081, 29.931985220156385 ], [ -95.72847810241683, 29.932179219622419 ], [ -95.728481102789445, 29.932373220002937 ], [ -95.728465102988395, 29.933087219713958 ], [ -95.728453103268308, 29.933609219923142 ], [ -95.728439102546758, 29.933735220315711 ], [ -95.728415103202479, 29.933895220167209 ], [ -95.7283781032192, 29.934083220249068 ], [ -95.728263102629541, 29.934412220597725 ], [ -95.728158102476542, 29.934653219967597 ], [ -95.728097102855102, 29.934801220325625 ], [ -95.728012102434107, 29.935013220262586 ], [ -95.727836102373757, 29.935362220967722 ], [ -95.72763010315974, 29.935698220170476 ], [ -95.72748410269449, 29.935899220926686 ], [ -95.727399102317591, 29.936019220419276 ], [ -95.727152102696792, 29.936322220835237 ], [ -95.727025102068779, 29.936463220704379 ], [ -95.726745102346229, 29.936741220609687 ], [ -95.726642102425345, 29.936825220816495 ], [ -95.72629010234121, 29.93711722060447 ], [ -95.726132102639397, 29.937231220641891 ], [ -95.725994101877234, 29.937324220663264 ], [ -95.726380102676643, 29.937722221001593 ], [ -95.726832102560877, 29.938148221268147 ], [ -95.72706210217855, 29.938308221212754 ], [ -95.72716310264623, 29.9383972214248 ], [ -95.727564102339002, 29.938645221270267 ], [ -95.728219103437482, 29.938950221436695 ], [ -95.72884210289115, 29.939179221239517 ], [ -95.729517103101998, 29.93937022103426 ], [ -95.73001910385905, 29.939459221141842 ], [ -95.730256103147013, 29.939488221400776 ], [ -95.730241103558143, 29.939945221759512 ], [ -95.73022910336951, 29.940366221709009 ], [ -95.730153103591945, 29.940623221070727 ], [ -95.729962104026114, 29.940973221451443 ], [ -95.72965710354822, 29.941476221900547 ], [ -95.729568103848962, 29.941819221664222 ], [ -95.729549103822237, 29.942150221637313 ], [ -95.729625103678345, 29.942544222200244 ], [ -95.729719103726467, 29.942814221588968 ], [ -95.729771103236473, 29.942964222197414 ], [ -95.729956103200195, 29.943512222444848 ], [ -95.730007103176035, 29.943811222165007 ], [ -95.730000104048827, 29.943995222635223 ], [ -95.729968103258869, 29.944841222366669 ], [ -95.729905104176865, 29.945439222472782 ], [ -95.729892103344923, 29.945808222233861 ], [ -95.72992410345006, 29.946069222609278 ], [ -95.730007103513657, 29.946419222890253 ], [ -95.729504103858076, 29.946500223063296 ], [ -95.728925103729409, 29.946653223033028 ], [ -95.728321103597182, 29.94688222281648 ], [ -95.727933103644816, 29.947060223208577 ], [ -95.727576103314675, 29.947200223340587 ], [ -95.727080103033472, 29.947365223245473 ], [ -95.726628102895816, 29.947480223407457 ], [ -95.726158102999747, 29.947562223367832 ], [ -95.725896102655568, 29.947594223528604 ], [ -95.725687102924184, 29.947620223319724 ], [ -95.725045102965979, 29.947633223534051 ], [ -95.724370102809388, 29.947648223326077 ], [ -95.72429210201669, 29.947648222771793 ], [ -95.72371510247666, 29.947655223069358 ], [ -95.721565101647272, 29.947712223073164 ], [ -95.72051010109854, 29.947742223551632 ], [ -95.720252101152496, 29.947755223676626 ], [ -95.720229101126364, 29.947916223562242 ], [ -95.720199101241974, 29.948079223031645 ], [ -95.7201241011946, 29.948399223668289 ], [ -95.720079100876575, 29.948558223035427 ], [ -95.720029100897662, 29.948717223886931 ], [ -95.719977101711194, 29.948875223700032 ], [ -95.719924101138417, 29.949034223399767 ], [ -95.719869101198142, 29.949193223866295 ], [ -95.71981210099149, 29.949351223262912 ], [ -95.719682101681315, 29.949663223650781 ], [ -95.719528101626665, 29.949967224064427 ], [ -95.719413101337807, 29.950155224212306 ], [ -95.719349100748104, 29.950261223442475 ], [ -95.71907210134971, 29.950688224126424 ], [ -95.718804101059007, 29.951112223921395 ], [ -95.718568100730707, 29.951545223739913 ], [ -95.718437101521658, 29.951840224468739 ], [ -95.718326101515174, 29.952142223854509 ], [ -95.718165101051071, 29.952764224279047 ], [ -95.718087101181283, 29.953558224605001 ], [ -95.718100100957713, 29.95378722434624 ], [ -95.718114101551862, 29.954030224250403 ], [ -95.718142101160169, 29.954503224773038 ], [ -95.718371101256878, 29.955266224529588 ], [ -95.718784100923585, 29.955971225329701 ], [ -95.719060101339167, 29.956262224997154 ], [ -95.719168101333494, 29.956376224690842 ], [ -95.719017101492469, 29.956474225038182 ], [ -95.718398101614667, 29.95647922521059 ], [ -95.718154101011081, 29.956485225475152 ], [ -95.71804210080245, 29.956504225376833 ], [ -95.717976101667091, 29.956551225223155 ], [ -95.717946100883296, 29.956625225157371 ], [ -95.717939100808351, 29.956692224994782 ], [ -95.717952101379367, 29.957041225167831 ], [ -95.71795710101226, 29.95758122566421 ], [ -95.717975101636512, 29.957813225509319 ], [ -95.717976101417122, 29.958336225480117 ], [ -95.717959101027887, 29.958758225334794 ], [ -95.717924100990771, 29.95888722603171 ], [ -95.717882101628973, 29.958986226064781 ], [ -95.717773101297553, 29.95917822592606 ], [ -95.717760100944844, 29.959195225909689 ], [ -95.718257101297311, 29.959436226026838 ], [ -95.71829510182387, 29.959447226126777 ], [ -95.718642101787268, 29.959640225362918 ], [ -95.718970101822279, 29.960030225906145 ], [ -95.719280101393124, 29.960332225825802 ], [ -95.719577101853758, 29.960486226318462 ], [ -95.719861102289599, 29.960618226163994 ], [ -95.720044102022584, 29.960689225568089 ], [ -95.720151101851272, 29.960711225573021 ], [ -95.720189101734505, 29.961920226402494 ], [ -95.720228101897717, 29.962558226056537 ], [ -95.720228102495454, 29.962761226655608 ], [ -95.720215102214681, 29.96288822626699 ], [ -95.720184102390192, 29.963031226704487 ], [ -95.720228101869125, 29.964476226501709 ], [ -95.720216102135311, 29.965103227178428 ], [ -95.720299101859936, 29.968187227412585 ], [ -95.720397102381312, 29.975943228786065 ], [ -95.720448102397867, 29.977542229108579 ], [ -95.7204431029066, 29.978817229247145 ], [ -95.720462102372196, 29.979411229414996 ], [ -95.720456103052712, 29.979576229533546 ], [ -95.720418102469509, 29.979724229826882 ], [ -95.720388102634232, 29.979788229893114 ], [ -95.720376102857955, 29.979814230100754 ], [ -95.720353102768328, 29.979865229651878 ], [ -95.720281102903968, 29.980021229927956 ], [ -95.720222102304689, 29.980148230020621 ], [ -95.720147102691854, 29.98029423009903 ], [ -95.723086103574545, 29.981398230139032 ], [ -95.723742104129826, 29.981637229884502 ], [ -95.724486103710149, 29.981949230510761 ], [ -95.724882103871337, 29.982110230085347 ], [ -95.725380103896427, 29.982320230556333 ], [ -95.727592104501596, 29.983143230154532 ], [ -95.728966105713624, 29.983664230451588 ], [ -95.732241106588532, 29.984895230401943 ], [ -95.734713107252531, 29.985867230556455 ], [ -95.736729107046344, 29.986662230582052 ], [ -95.740810108576071, 29.988179231128044 ], [ -95.74098210831842, 29.988243230754232 ], [ -95.741156108127257, 29.988315230759593 ], [ -95.74134010865491, 29.988385230410678 ], [ -95.743427109020786, 29.989179231112171 ], [ -95.743477109626809, 29.989199231093274 ], [ -95.746268110351977, 29.990259231299493 ], [ -95.748736110443232, 29.991208231411385 ], [ -95.749212111004766, 29.991391231193784 ], [ -95.751114111164895, 29.992057231355592 ], [ -95.754408111986635, 29.99325223097793 ], [ -95.75519011239949, 29.993564231397905 ], [ -95.75567811252489, 29.993752231124553 ], [ -95.75929911371216, 29.995144231990004 ], [ -95.760496113600809, 29.995600231502266 ], [ -95.761180113865763, 29.995860231333243 ], [ -95.764524114706376, 29.997134231905374 ], [ -95.767005115875392, 29.998059232134516 ], [ -95.768052115612193, 29.998449231935222 ], [ -95.768570116511299, 29.998650231648305 ], [ -95.768860115765492, 29.998763231547962 ], [ -95.768841115737857, 29.99836423152427 ], [ -95.768833116029128, 29.998192232252141 ], [ -95.768827116195695, 29.998072232148782 ], [ -95.768810115577367, 29.997718231339107 ], [ -95.768760116185675, 29.997486231976158 ], [ -95.768743115468737, 29.997197231534976 ], [ -95.768756116059365, 29.996633231884214 ], [ -95.768763116131382, 29.996330231381794 ], [ -95.768736115896019, 29.995575231632838 ], [ -95.768665115666124, 29.995060231574826 ], [ -95.76869211599525, 29.99430123097758 ], [ -95.768705115323002, 29.993980231401935 ], [ -95.76873311576152, 29.992981231222171 ], [ -95.768798115772057, 29.992414230835614 ], [ -95.768812115564458, 29.992300230437593 ], [ -95.768814115974493, 29.992280231106061 ], [ -95.769012115290508, 29.991150230193863 ], [ -95.769056115342508, 29.990905229997004 ], [ -95.76916411574183, 29.989140230176019 ], [ -95.769220115629238, 29.988468230008806 ], [ -95.769258116052441, 29.987792229999187 ], [ -95.769380115913165, 29.986175229451984 ], [ -95.769407115595513, 29.984935229092692 ], [ -95.769407115551601, 29.983654229235437 ], [ -95.76942611549407, 29.982971228761677 ], [ -95.769444115094771, 29.982333228633486 ], [ -95.769447115089918, 29.982226228460028 ], [ -95.769460115126407, 29.980609228399558 ], [ -95.769447114846145, 29.979072228102066 ], [ -95.769458115456175, 29.978684227564486 ], [ -95.769460114795777, 29.978613227941477 ], [ -95.769464115094252, 29.978475227769628 ], [ -95.769465115015223, 29.978422228211819 ], [ -95.769487115660468, 29.977630228026779 ], [ -95.769487114787054, 29.975406227627332 ], [ -95.76951411496124, 29.973735227298707 ], [ -95.769514115137298, 29.972751226966366 ], [ -95.769514115210796, 29.971215226543819 ], [ -95.769541115111068, 29.969625225615719 ], [ -95.769528114488622, 29.96838522619349 ], [ -95.769555114680202, 29.966242225765622 ], [ -95.769569114497045, 29.965459225594422 ], [ -95.769570114498421, 29.965404224920896 ], [ -95.769593114178207, 29.964122224640988 ], [ -95.769595114840342, 29.96403222487729 ], [ -95.769582114055609, 29.96207822483527 ], [ -95.769576114343465, 29.961389224473031 ], [ -95.769573114825675, 29.961128223994113 ], [ -95.769564114736966, 29.960160223865394 ], [ -95.769572114703109, 29.958700223692915 ], [ -95.769602114496777, 29.953616222949606 ], [ -95.769603114253201, 29.953491222453419 ], [ -95.769603114371179, 29.953388223046129 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 859, "Tract": "48201554407", "Area_SqMi": 2.5319848909900355, "total_2009": 1282, "total_2010": 1570, "total_2011": 1075, "total_2012": 1760, "total_2013": 1744, "total_2014": 2001, "total_2015": 2146, "total_2016": 2065, "total_2017": 2013, "total_2018": 2330, "total_2019": 2254, "total_2020": 2178, "age1": 932, "age2": 1002, "age3": 450, "earn1": 673, "earn2": 1018, "earn3": 693, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 129, "naics_s05": 36, "naics_s06": 31, "naics_s07": 959, "naics_s08": 5, "naics_s09": 67, "naics_s10": 76, "naics_s11": 23, "naics_s12": 62, "naics_s13": 0, "naics_s14": 33, "naics_s15": 4, "naics_s16": 261, "naics_s17": 14, "naics_s18": 534, "naics_s19": 145, "naics_s20": 0, "race1": 1741, "race2": 430, "race3": 20, "race4": 157, "race5": 1, "race6": 35, "ethnicity1": 1555, "ethnicity2": 829, "edu1": 320, "edu2": 390, "edu3": 435, "edu4": 307, "Shape_Length": 40403.850567929163, "Shape_Area": 70587405.225351274, "total_2021": 2072, "total_2022": 2384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.699738097231531, 29.973814229076979 ], [ -95.69980409686876, 29.973602229220788 ], [ -95.699504097286024, 29.973530228962943 ], [ -95.699301097347671, 29.973481229577217 ], [ -95.697620097085704, 29.973073229418379 ], [ -95.696529096617127, 29.972670229002205 ], [ -95.695886096688881, 29.97239222908626 ], [ -95.695303096159591, 29.972090229426723 ], [ -95.694769096369569, 29.971755228996187 ], [ -95.694724095895253, 29.971727228648646 ], [ -95.694584096323737, 29.971639229011334 ], [ -95.694270095651959, 29.971412228615986 ], [ -95.693906095673668, 29.971148229125191 ], [ -95.693396095935753, 29.970710229142057 ], [ -95.692906095751368, 29.970236229255306 ], [ -95.692691094966321, 29.970018228823811 ], [ -95.692221095691409, 29.969450228900335 ], [ -95.691955095274864, 29.969104228987788 ], [ -95.691445094998301, 29.968316228913228 ], [ -95.691001094357375, 29.967443228498556 ], [ -95.690081094193886, 29.965403228326533 ], [ -95.689800094787927, 29.964914227618046 ], [ -95.689594094009806, 29.964600227529072 ], [ -95.689546093852385, 29.964527227595962 ], [ -95.689520094622168, 29.964491227979675 ], [ -95.689305093742021, 29.964189227615034 ], [ -95.688950093798013, 29.963798227933648 ], [ -95.688532094368625, 29.96340122766976 ], [ -95.688139093515815, 29.963091227926338 ], [ -95.688066093478, 29.963035227388328 ], [ -95.687888093436698, 29.9629012272609 ], [ -95.687723093986705, 29.963055227524457 ], [ -95.687516093653073, 29.963235227869088 ], [ -95.687420093596103, 29.963339227174192 ], [ -95.687354093268723, 29.963393227706518 ], [ -95.687301093899549, 29.963445227622525 ], [ -95.687249093531051, 29.963505227879985 ], [ -95.687204093493875, 29.963571227599772 ], [ -95.687165093299441, 29.963641227354891 ], [ -95.687133094019842, 29.963713227458737 ], [ -95.687109094091227, 29.9637892272989 ], [ -95.687000094032655, 29.964259227977397 ], [ -95.686999093767326, 29.965361228024143 ], [ -95.687048093421396, 29.965812228387524 ], [ -95.687199093564004, 29.967372228429163 ], [ -95.687200093676637, 29.969437228993034 ], [ -95.687201093691172, 29.969712228914368 ], [ -95.687206093638324, 29.970196229035778 ], [ -95.687211093942665, 29.970824229341041 ], [ -95.687215094173922, 29.971355229349182 ], [ -95.687228094528351, 29.973278229656145 ], [ -95.687234094313553, 29.973459230036735 ], [ -95.685123093091278, 29.974000229536372 ], [ -95.683855093649598, 29.974324230249962 ], [ -95.683197093356739, 29.9744922300318 ], [ -95.683111092650236, 29.97451422977414 ], [ -95.681077092456604, 29.975031230624996 ], [ -95.680527092875451, 29.975170230185714 ], [ -95.680380092527201, 29.975213230516193 ], [ -95.680226091940597, 29.975253230000959 ], [ -95.679767092404745, 29.975369230302878 ], [ -95.679124092483605, 29.975523230064155 ], [ -95.678997091886757, 29.975571230719204 ], [ -95.678928092322607, 29.975585230303508 ], [ -95.678837091893556, 29.975605230042987 ], [ -95.677485091593169, 29.975953230546267 ], [ -95.677186092124757, 29.976039230769558 ], [ -95.676852091365291, 29.976141230805183 ], [ -95.676767091239384, 29.976161230525399 ], [ -95.676695091910275, 29.976185230646252 ], [ -95.676612091943554, 29.976206231038038 ], [ -95.676601091415137, 29.976211230516022 ], [ -95.676545091918911, 29.97623523029057 ], [ -95.676230091416485, 29.976346230671773 ], [ -95.675964090917503, 29.976452231015941 ], [ -95.674764091347683, 29.97697423087531 ], [ -95.674487090858875, 29.977095230490569 ], [ -95.674211090633051, 29.977213230823981 ], [ -95.673681090323271, 29.977442231342593 ], [ -95.673553091140533, 29.977483231026042 ], [ -95.673469090344568, 29.977534231163663 ], [ -95.67337109034915, 29.977577230982789 ], [ -95.673256091149966, 29.977606230994397 ], [ -95.673172091098337, 29.97764023081448 ], [ -95.673117090222888, 29.977687230668362 ], [ -95.672904090187913, 29.977750230750981 ], [ -95.672834090287139, 29.977784230630292 ], [ -95.67260109105753, 29.977898230724531 ], [ -95.672506090330543, 29.977945231166775 ], [ -95.672200090171245, 29.978070231500407 ], [ -95.672033090509018, 29.978163231348809 ], [ -95.671913090863555, 29.978191230857963 ], [ -95.671826090137017, 29.978226231313958 ], [ -95.671732090455393, 29.978254231484335 ], [ -95.671607090173325, 29.978305231556856 ], [ -95.671655090087555, 29.978397231560955 ], [ -95.671866090187535, 29.978852230972798 ], [ -95.671974090137709, 29.979132231100625 ], [ -95.672032090023208, 29.979309231280837 ], [ -95.672056090640694, 29.979389231045509 ], [ -95.672123090098239, 29.979656231121531 ], [ -95.672176090837439, 29.979907231597291 ], [ -95.672209090477281, 29.980149231840603 ], [ -95.672252090450058, 29.980671231260999 ], [ -95.672257090185866, 29.980905231612962 ], [ -95.672269090813103, 29.981141232142587 ], [ -95.672309090220082, 29.981491231449901 ], [ -95.67234509069074, 29.9816832314579 ], [ -95.672380090451355, 29.981857231776033 ], [ -95.67245109060238, 29.982121232122918 ], [ -95.672559091158945, 29.98244123165329 ], [ -95.672640090274683, 29.982647231826352 ], [ -95.672754091148661, 29.982898232149545 ], [ -95.672908091361109, 29.9831862325222 ], [ -95.673046090654537, 29.983411232066448 ], [ -95.673170090458854, 29.983596231856534 ], [ -95.67329509142597, 29.983771231869927 ], [ -95.673469091034789, 29.983983232614946 ], [ -95.673711090887679, 29.984252232591807 ], [ -95.673856091621488, 29.98439423251622 ], [ -95.674107091100524, 29.984625232302616 ], [ -95.674315091810911, 29.984793232348945 ], [ -95.674817091223986, 29.985164232597867 ], [ -95.67494809122698, 29.985259232694727 ], [ -95.675179091357478, 29.985442232184965 ], [ -95.675360092011701, 29.985600232611041 ], [ -95.675666092148063, 29.985900232765569 ], [ -95.675915092108156, 29.986169232824007 ], [ -95.676083092007858, 29.986283232381563 ], [ -95.676256092204298, 29.986456233023421 ], [ -95.676700092267751, 29.986956233220155 ], [ -95.676535091885015, 29.987103232416196 ], [ -95.676520092353442, 29.987114233154465 ], [ -95.676404091914122, 29.987202233187134 ], [ -95.676328092127378, 29.987244232685658 ], [ -95.676160092204242, 29.987301232569944 ], [ -95.676065092193781, 29.987321232726686 ], [ -95.675964092297107, 29.987333233204453 ], [ -95.675857092045646, 29.987338233080116 ], [ -95.674108091082317, 29.987344232601842 ], [ -95.673231091168844, 29.987343233194434 ], [ -95.671853090707117, 29.987350233354935 ], [ -95.671435090547988, 29.987349233235754 ], [ -95.671264090635887, 29.987352232713775 ], [ -95.670738090327077, 29.987345233302417 ], [ -95.670656090020785, 29.987351233212479 ], [ -95.66987609069254, 29.987348232757078 ], [ -95.67000209028356, 29.987415233524242 ], [ -95.670043090810111, 29.987451233131239 ], [ -95.670074090675769, 29.98748523296517 ], [ -95.67033209023981, 29.987977233339635 ], [ -95.670547090845318, 29.988401233569437 ], [ -95.670851090389007, 29.98899523363508 ], [ -95.670906090199736, 29.989092233700106 ], [ -95.671048090843826, 29.989374233150691 ], [ -95.671103090674123, 29.989468233096531 ], [ -95.671311090839708, 29.989870233197742 ], [ -95.672233091502221, 29.991646233444406 ], [ -95.672540091621286, 29.992200234110051 ], [ -95.672632091648879, 29.992431234357472 ], [ -95.67318409120216, 29.993483234537102 ], [ -95.67367009136963, 29.994423234220754 ], [ -95.673776091734098, 29.994709234589926 ], [ -95.673835091916672, 29.994949234214012 ], [ -95.673933091549699, 29.994945234912965 ], [ -95.674655092138011, 29.994918234729976 ], [ -95.675147091863195, 29.994924234500861 ], [ -95.675353092411328, 29.994926234196402 ], [ -95.675947091808993, 29.994926234863605 ], [ -95.677255092936193, 29.994922234803305 ], [ -95.677709092727184, 29.99492423461842 ], [ -95.678114092771636, 29.994926234096926 ], [ -95.678202092279292, 29.994927234383407 ], [ -95.678254092668453, 29.994927234254202 ], [ -95.680822093002206, 29.994938234038081 ], [ -95.681012093119136, 29.994939234001276 ], [ -95.681170093386697, 29.99493223455028 ], [ -95.682381093731422, 29.99493323460073 ], [ -95.683334094309046, 29.994934234309444 ], [ -95.683799094639497, 29.994943234267769 ], [ -95.684027094562637, 29.994960234012609 ], [ -95.684111094473494, 29.9949692345801 ], [ -95.684430093839396, 29.995015234562008 ], [ -95.684628093962999, 29.995048233743866 ], [ -95.685076094327385, 29.995125233858797 ], [ -95.685240095005682, 29.995161234205096 ], [ -95.685402094250193, 29.995181233696318 ], [ -95.686014094397095, 29.995285234175721 ], [ -95.686769095114798, 29.995414233930852 ], [ -95.68758509526856, 29.995550234563272 ], [ -95.689889095768777, 29.995934233695188 ], [ -95.690164095830269, 29.995980234002051 ], [ -95.693182096383481, 29.996480234136943 ], [ -95.693238096175264, 29.99649023456594 ], [ -95.693324096361067, 29.996510234309639 ], [ -95.693401096208248, 29.996528234465327 ], [ -95.693560096828037, 29.996543234148611 ], [ -95.694028096572865, 29.996616234255328 ], [ -95.695340097664939, 29.996836233917222 ], [ -95.695477096886307, 29.996869234195103 ], [ -95.695621097689596, 29.996894234212956 ], [ -95.696050097420184, 29.996957234420595 ], [ -95.69699009805953, 29.997114234362979 ], [ -95.697240097453644, 29.997151234338858 ], [ -95.697410097287118, 29.997177234490088 ], [ -95.697591097791033, 29.99719523415142 ], [ -95.698156098143571, 29.997207233773818 ], [ -95.698500098049621, 29.997209234372647 ], [ -95.698604097572499, 29.997118233994463 ], [ -95.698654097951135, 29.997075233813938 ], [ -95.698792098216842, 29.996956234214039 ], [ -95.698951097937694, 29.996805234424809 ], [ -95.69904809845508, 29.996701234139689 ], [ -95.699135098289815, 29.996586233558627 ], [ -95.699213097861872, 29.996464233802342 ], [ -95.699303098591614, 29.996286233989437 ], [ -95.699358098640616, 29.9961442340371 ], [ -95.69938709826495, 29.995991234200986 ], [ -95.699388097980389, 29.995933233709739 ], [ -95.699402098414652, 29.995557233425213 ], [ -95.699424098335228, 29.99318923361632 ], [ -95.699419098388105, 29.992795232738025 ], [ -95.699405098303984, 29.991591232722641 ], [ -95.699384098043566, 29.990527232305109 ], [ -95.699367097658012, 29.989314232500629 ], [ -95.699351097974628, 29.988220232279282 ], [ -95.699336098270436, 29.987498232499096 ], [ -95.699305098166491, 29.985946232164519 ], [ -95.699297097954272, 29.985472231436642 ], [ -95.699290097983507, 29.985049231752665 ], [ -95.699282097329075, 29.984627231780212 ], [ -95.69927509730752, 29.984219231070682 ], [ -95.699253097149892, 29.982866230961783 ], [ -95.699250097804196, 29.982659231054082 ], [ -95.699236097333667, 29.981857230810824 ], [ -95.699232097503781, 29.981604230544516 ], [ -95.699225097831913, 29.981196231205473 ], [ -95.699215096980708, 29.980231231068643 ], [ -95.699225097790915, 29.979839230618005 ], [ -95.699245097335989, 29.979458230393814 ], [ -95.699323096922129, 29.978043229803969 ], [ -95.699344097716008, 29.977660230481519 ], [ -95.69939109748023, 29.976787229655429 ], [ -95.699462097622671, 29.975498229467551 ], [ -95.699478097096247, 29.975297229381809 ], [ -95.699483097587276, 29.97505322956799 ], [ -95.699513097651916, 29.97467622992728 ], [ -95.699549097400634, 29.974455229364946 ], [ -95.699577097405992, 29.974331229300997 ], [ -95.699644097706695, 29.974113229745811 ], [ -95.699738097231531, 29.973814229076979 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 860, "Tract": "48201423303", "Area_SqMi": 0.17483462034372144, "total_2009": 488, "total_2010": 449, "total_2011": 424, "total_2012": 463, "total_2013": 483, "total_2014": 455, "total_2015": 443, "total_2016": 460, "total_2017": 465, "total_2018": 400, "total_2019": 436, "total_2020": 415, "age1": 139, "age2": 182, "age3": 88, "earn1": 148, "earn2": 186, "earn3": 75, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 2, "naics_s06": 0, "naics_s07": 224, "naics_s08": 0, "naics_s09": 0, "naics_s10": 27, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 61, "naics_s17": 0, "naics_s18": 82, "naics_s19": 9, "naics_s20": 0, "race1": 242, "race2": 116, "race3": 3, "race4": 43, "race5": 1, "race6": 4, "ethnicity1": 228, "ethnicity2": 181, "edu1": 95, "edu2": 61, "edu3": 74, "edu4": 40, "Shape_Length": 11204.497710655918, "Shape_Area": 4874089.9827396618, "total_2021": 394, "total_2022": 409 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.514273035922997, 29.660549171697404 ], [ -95.514265035695786, 29.659961171498846 ], [ -95.514256036103632, 29.659341171281149 ], [ -95.514250035922373, 29.658579171776164 ], [ -95.514232035729933, 29.657866170894163 ], [ -95.514215035238792, 29.657149170960761 ], [ -95.514217035788988, 29.656480170747567 ], [ -95.514186035318815, 29.655833170845089 ], [ -95.513591035914459, 29.655907170847769 ], [ -95.51312103493413, 29.655966170834731 ], [ -95.512972035304216, 29.655987171209858 ], [ -95.511999035408806, 29.655996170582377 ], [ -95.511498035420814, 29.65599917133774 ], [ -95.510908035178957, 29.655999170700689 ], [ -95.509735034218309, 29.656010170622235 ], [ -95.508680034457683, 29.656016171003593 ], [ -95.508433034030759, 29.656023170839511 ], [ -95.508418033991845, 29.656596170988376 ], [ -95.508428033868626, 29.657555171689051 ], [ -95.508435033852692, 29.657742171177091 ], [ -95.50844003468174, 29.658159171827315 ], [ -95.508443034773549, 29.658386171159467 ], [ -95.50844703445145, 29.658729171884978 ], [ -95.508450034531563, 29.659194171443048 ], [ -95.508466034013708, 29.660015171687302 ], [ -95.508474033999676, 29.660400171665927 ], [ -95.508475034275534, 29.660616172175452 ], [ -95.508472034348088, 29.661029171772679 ], [ -95.508496033941043, 29.661692172405871 ], [ -95.508489034690854, 29.662208172722632 ], [ -95.508524034973092, 29.66279417274276 ], [ -95.508521034147051, 29.663590172222044 ], [ -95.508511034703574, 29.66403217275656 ], [ -95.508510034803834, 29.664659172800373 ], [ -95.508549035043458, 29.665639172654554 ], [ -95.509211035200877, 29.6656381730117 ], [ -95.509805034938694, 29.665631172820135 ], [ -95.510378035208191, 29.665632172562685 ], [ -95.510976035084951, 29.665632173159871 ], [ -95.511292034936261, 29.66562317324669 ], [ -95.512324035378171, 29.665613172791844 ], [ -95.512287035920366, 29.664678173050792 ], [ -95.512155035322081, 29.66423617220126 ], [ -95.511915035608268, 29.663789172727778 ], [ -95.511755035648747, 29.663490172634422 ], [ -95.511507034982756, 29.66305717248671 ], [ -95.511084035029327, 29.662231172478489 ], [ -95.510998034923702, 29.661811172426702 ], [ -95.51098803514607, 29.661387172115965 ], [ -95.510982034586291, 29.660573171935628 ], [ -95.513324035977817, 29.660569171962766 ], [ -95.514273035922997, 29.660549171697404 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 861, "Tract": "48201422403", "Area_SqMi": 0.34878263702559187, "total_2009": 66, "total_2010": 91, "total_2011": 121, "total_2012": 152, "total_2013": 152, "total_2014": 132, "total_2015": 119, "total_2016": 28, "total_2017": 39, "total_2018": 48, "total_2019": 36, "total_2020": 26, "age1": 8, "age2": 30, "age3": 15, "earn1": 8, "earn2": 18, "earn3": 27, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 30, "naics_s12": 7, "naics_s13": 0, "naics_s14": 0, "naics_s15": 1, "naics_s16": 0, "naics_s17": 0, "naics_s18": 1, "naics_s19": 2, "naics_s20": 0, "race1": 37, "race2": 0, "race3": 3, "race4": 13, "race5": 0, "race6": 0, "ethnicity1": 34, "ethnicity2": 19, "edu1": 7, "edu2": 11, "edu3": 15, "edu4": 12, "Shape_Length": 12779.489968135107, "Shape_Area": 9723462.9728242513, "total_2021": 44, "total_2022": 53 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.501180032810183, 29.666751173186579 ], [ -95.501173032989428, 29.665592172980208 ], [ -95.501171032410781, 29.664780173114945 ], [ -95.501166032579235, 29.663909172743466 ], [ -95.501158033045542, 29.663093173121432 ], [ -95.501144032394947, 29.662268172224056 ], [ -95.501137032243847, 29.661402172097826 ], [ -95.501124032614229, 29.660582172461989 ], [ -95.501116031959612, 29.659894171960378 ], [ -95.501109032447289, 29.659781171896665 ], [ -95.501102032907909, 29.659291172378055 ], [ -95.501093032631402, 29.658489172062549 ], [ -95.501092032880592, 29.658160171493698 ], [ -95.501082031976949, 29.657263171395631 ], [ -95.501048032240718, 29.657020171141859 ], [ -95.50090503182814, 29.656686171402789 ], [ -95.500141032155966, 29.656902171632815 ], [ -95.499575032270897, 29.657034171581092 ], [ -95.498925032040802, 29.657121171614936 ], [ -95.498554031454262, 29.657123171518979 ], [ -95.498112031115554, 29.65712017173162 ], [ -95.497493031754388, 29.657134171588986 ], [ -95.496311031215129, 29.657161171419837 ], [ -95.494891030959536, 29.657131171444185 ], [ -95.49206202993139, 29.657195172221531 ], [ -95.492072030375283, 29.657711172194876 ], [ -95.492130029840936, 29.660607172227795 ], [ -95.492178030418088, 29.663073172836054 ], [ -95.492196030437327, 29.66423617329411 ], [ -95.49222803025657, 29.666358173642472 ], [ -95.493319030607978, 29.666344174073043 ], [ -95.494242030919992, 29.666327173477228 ], [ -95.494890031360185, 29.666330173650568 ], [ -95.495232031727483, 29.666324173323666 ], [ -95.495997031377982, 29.666314173729539 ], [ -95.496244031890271, 29.666305173321305 ], [ -95.497204031775624, 29.666296173173908 ], [ -95.498188032329026, 29.666311173727728 ], [ -95.498232032337526, 29.666515173775799 ], [ -95.498285032181087, 29.666623173143606 ], [ -95.49838103166276, 29.66670917380014 ], [ -95.498522032215462, 29.666760173751545 ], [ -95.49873303216161, 29.666779173574888 ], [ -95.499319032211361, 29.666775173399689 ], [ -95.500503032520811, 29.666768173196981 ], [ -95.501180032810183, 29.666751173186579 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 862, "Tract": "48201541301", "Area_SqMi": 1.2330696196914603, "total_2009": 1678, "total_2010": 1649, "total_2011": 2094, "total_2012": 2058, "total_2013": 2028, "total_2014": 2117, "total_2015": 2107, "total_2016": 2075, "total_2017": 2175, "total_2018": 2186, "total_2019": 2123, "total_2020": 1953, "age1": 877, "age2": 780, "age3": 394, "earn1": 700, "earn2": 926, "earn3": 425, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 0, "naics_s07": 1567, "naics_s08": 8, "naics_s09": 21, "naics_s10": 40, "naics_s11": 14, "naics_s12": 31, "naics_s13": 0, "naics_s14": 33, "naics_s15": 0, "naics_s16": 71, "naics_s17": 0, "naics_s18": 233, "naics_s19": 28, "naics_s20": 0, "race1": 1418, "race2": 429, "race3": 15, "race4": 154, "race5": 0, "race6": 35, "ethnicity1": 1229, "ethnicity2": 822, "edu1": 294, "edu2": 334, "edu3": 355, "edu4": 191, "Shape_Length": 24281.737910559197, "Shape_Area": 34375870.577251963, "total_2021": 2046, "total_2022": 2051 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.669268084718624, 29.872135209281687 ], [ -95.669268085057169, 29.871946209811139 ], [ -95.669258085343515, 29.871530209940044 ], [ -95.66923008488213, 29.870917209049271 ], [ -95.669221084631829, 29.870210208864084 ], [ -95.669224084788311, 29.869741209590931 ], [ -95.669220084683076, 29.869625208761704 ], [ -95.669215084403987, 29.869450209273896 ], [ -95.669213084564348, 29.869381208806342 ], [ -95.669212085216159, 29.869310208717316 ], [ -95.669211084578606, 29.869211209114603 ], [ -95.669208084733583, 29.868891209281113 ], [ -95.669192084518357, 29.868734209134288 ], [ -95.669186084826663, 29.868570208753443 ], [ -95.669184084437475, 29.868541209194323 ], [ -95.669180084287021, 29.868466209306376 ], [ -95.669167084270981, 29.868403208540901 ], [ -95.669132084800935, 29.868274209051314 ], [ -95.669124084820808, 29.868207208589233 ], [ -95.669062085051365, 29.867839209020676 ], [ -95.669004085010783, 29.867572208683473 ], [ -95.668927084283212, 29.867138208862286 ], [ -95.668900085040576, 29.866755208302596 ], [ -95.668894084954431, 29.866552208664796 ], [ -95.668913084198536, 29.866075208609065 ], [ -95.668937084822815, 29.865828208117055 ], [ -95.668995084953636, 29.865509208181827 ], [ -95.669058084661984, 29.865285208661287 ], [ -95.66849308395075, 29.865201207994083 ], [ -95.668233083897661, 29.865168208695703 ], [ -95.667943084328201, 29.865144207867374 ], [ -95.667676084348457, 29.865130208706443 ], [ -95.667580083664845, 29.865125208233483 ], [ -95.666805083482586, 29.865100208493033 ], [ -95.666320083394581, 29.865091207973453 ], [ -95.665869083997848, 29.865089208121411 ], [ -95.66566608392678, 29.865088208648455 ], [ -95.665569083633031, 29.865087208253364 ], [ -95.665523083990195, 29.865087208383702 ], [ -95.665016083682403, 29.865085208082959 ], [ -95.663290083089734, 29.865079208815985 ], [ -95.663192082846763, 29.865079208052112 ], [ -95.662275082987691, 29.865081208167179 ], [ -95.661467082206997, 29.86510120887047 ], [ -95.661269082642903, 29.865114208744235 ], [ -95.660876082723746, 29.865158208247927 ], [ -95.660681081904272, 29.865188208729784 ], [ -95.660488082813501, 29.865224208515542 ], [ -95.660300081893297, 29.865265208154771 ], [ -95.659936082035046, 29.865360208284638 ], [ -95.659581082597967, 29.865470208470768 ], [ -95.659406082289692, 29.865532208528791 ], [ -95.659061082440033, 29.865667208508796 ], [ -95.658894082137422, 29.865741209183756 ], [ -95.658732082296083, 29.8658212090461 ], [ -95.658417081820232, 29.865996208372557 ], [ -95.658262082175156, 29.866090208554088 ], [ -95.657495081172769, 29.866581208583899 ], [ -95.657191081975, 29.866759208596783 ], [ -95.656886081195537, 29.866921209259811 ], [ -95.656731081066667, 29.866994209369039 ], [ -95.656575081824784, 29.867062209425256 ], [ -95.65641608104967, 29.867126209205775 ], [ -95.656093081816394, 29.867243209447466 ], [ -95.655761081474523, 29.867343209328133 ], [ -95.655593081213695, 29.867386209296637 ], [ -95.655251081483655, 29.867463209311431 ], [ -95.655079080773845, 29.867494209389363 ], [ -95.654732080644337, 29.86754820952741 ], [ -95.654558080697612, 29.867568209082705 ], [ -95.654209080368162, 29.867595208995315 ], [ -95.654037081103525, 29.867602209291007 ], [ -95.653694080753908, 29.86760920940149 ], [ -95.653673080507971, 29.867609209039504 ], [ -95.653544080973305, 29.867609209630064 ], [ -95.6531740801979, 29.867609209624682 ], [ -95.652210080368164, 29.867595209146788 ], [ -95.651087079972228, 29.867590209654441 ], [ -95.650066080071511, 29.867606209200002 ], [ -95.649351079570977, 29.867618209343469 ], [ -95.648841079828571, 29.867634209626104 ], [ -95.648721079192498, 29.867638209459269 ], [ -95.648601079581695, 29.867642209210935 ], [ -95.647507078877936, 29.867667209929525 ], [ -95.64732707939875, 29.867667209835858 ], [ -95.647008078607186, 29.867667209254478 ], [ -95.646475078659549, 29.867668209758467 ], [ -95.646179078800586, 29.867668209970095 ], [ -95.645937079150471, 29.867670209554564 ], [ -95.645787078199191, 29.867671209260148 ], [ -95.645168078412226, 29.867678209865201 ], [ -95.645185079076271, 29.868212209795495 ], [ -95.645196078755063, 29.868536210207196 ], [ -95.645222079205212, 29.870374209909176 ], [ -95.645228078225642, 29.870688209980319 ], [ -95.645248078893374, 29.87129421045838 ], [ -95.645254078810211, 29.871378210450423 ], [ -95.645247078935569, 29.871725210157326 ], [ -95.645250078955272, 29.871834210403609 ], [ -95.645254078887092, 29.871974210151187 ], [ -95.64524807927873, 29.872130210661162 ], [ -95.645267078689855, 29.873116210451546 ], [ -95.645280079272268, 29.874108210946837 ], [ -95.645291079193171, 29.874700210610676 ], [ -95.645296078832985, 29.875150210989027 ], [ -95.645317078554854, 29.875991211117846 ], [ -95.64532007933829, 29.87761421190832 ], [ -95.645320078951244, 29.877788211410323 ], [ -95.645320078795834, 29.878139211450264 ], [ -95.645320079089458, 29.87839721143413 ], [ -95.645320079447743, 29.878817212073415 ], [ -95.645320078974635, 29.879214211518555 ], [ -95.645753078783159, 29.87920921211758 ], [ -95.646106079012142, 29.879204211554434 ], [ -95.646404079483602, 29.879201211790871 ], [ -95.64722307918025, 29.879191211529786 ], [ -95.648262080212874, 29.879178212190602 ], [ -95.648417079391095, 29.879176212267893 ], [ -95.648634079878107, 29.879174212154716 ], [ -95.648714080117756, 29.879173212188146 ], [ -95.648869080314313, 29.879171211769229 ], [ -95.649010080093149, 29.879169211680036 ], [ -95.649075080496814, 29.879168211412313 ], [ -95.649230079614185, 29.879166211452443 ], [ -95.649529080126598, 29.879163211679554 ], [ -95.649573079905267, 29.879162212012233 ], [ -95.65072408053355, 29.879148211471094 ], [ -95.651101081066898, 29.87914421211077 ], [ -95.65336508073527, 29.879116211747981 ], [ -95.654553081105405, 29.879102211397658 ], [ -95.655161081581809, 29.87909421195047 ], [ -95.658117082265989, 29.87907821129448 ], [ -95.658309082867248, 29.879077211881619 ], [ -95.658375082762646, 29.879077211294579 ], [ -95.658535082168655, 29.879077211505976 ], [ -95.659348083167757, 29.879077211284294 ], [ -95.660707083539407, 29.879076211602243 ], [ -95.661558083699646, 29.879058211526964 ], [ -95.662383083600474, 29.87905621161206 ], [ -95.663505083442416, 29.879049211631614 ], [ -95.663732083504385, 29.879048211103044 ], [ -95.665327083861001, 29.87903821117192 ], [ -95.665482084324097, 29.879037211484974 ], [ -95.665706083846203, 29.879036211565602 ], [ -95.666684084582414, 29.879029211040464 ], [ -95.667192085083627, 29.879026210786943 ], [ -95.668156084935987, 29.879019210956795 ], [ -95.668173084532313, 29.878705210730335 ], [ -95.668173085056694, 29.878144210850337 ], [ -95.668159085016157, 29.877507210962275 ], [ -95.668164084751595, 29.876946210467839 ], [ -95.668145084562909, 29.876653210454677 ], [ -95.668230084308831, 29.876144210524259 ], [ -95.668306084485678, 29.875663210249815 ], [ -95.668456084750161, 29.875229210190824 ], [ -95.668655085335317, 29.874766210565195 ], [ -95.668824085399422, 29.874417209957677 ], [ -95.66897508521977, 29.874096210207185 ], [ -95.669079085302187, 29.873729210118558 ], [ -95.669211085351876, 29.873313209750769 ], [ -95.669268085226321, 29.872813209925631 ], [ -95.66926808478523, 29.872389209864281 ], [ -95.669268084718624, 29.872135209281687 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 863, "Tract": "48201541703", "Area_SqMi": 4.0830472426878339, "total_2009": 1420, "total_2010": 1589, "total_2011": 589, "total_2012": 497, "total_2013": 482, "total_2014": 537, "total_2015": 681, "total_2016": 689, "total_2017": 692, "total_2018": 360, "total_2019": 326, "total_2020": 298, "age1": 45, "age2": 158, "age3": 92, "earn1": 29, "earn2": 76, "earn3": 190, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 71, "naics_s05": 35, "naics_s06": 92, "naics_s07": 2, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 22, "naics_s12": 3, "naics_s13": 0, "naics_s14": 25, "naics_s15": 13, "naics_s16": 0, "naics_s17": 0, "naics_s18": 30, "naics_s19": 2, "naics_s20": 0, "race1": 248, "race2": 28, "race3": 3, "race4": 12, "race5": 0, "race6": 4, "ethnicity1": 159, "ethnicity2": 136, "edu1": 60, "edu2": 67, "edu3": 63, "edu4": 60, "Shape_Length": 45744.200156736333, "Shape_Area": 113828368.92093979, "total_2021": 258, "total_2022": 295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.688334086225225, 29.80033219475397 ], [ -95.688340086810456, 29.800158194074466 ], [ -95.688315086983962, 29.799433193804173 ], [ -95.688313086921738, 29.798638193958507 ], [ -95.688314086351397, 29.798484193651852 ], [ -95.688318086183699, 29.797907193958249 ], [ -95.688294086763932, 29.797043193787925 ], [ -95.688286086374731, 29.795220193766848 ], [ -95.688286086592882, 29.795078193755192 ], [ -95.688279086416657, 29.794163193464421 ], [ -95.688276086349148, 29.793603192689321 ], [ -95.688274086289468, 29.793042192996577 ], [ -95.68826808632663, 29.791948192670628 ], [ -95.688266085982747, 29.791490193051963 ], [ -95.688264085641222, 29.791040192085987 ], [ -95.68826308647084, 29.790942192630798 ], [ -95.687985086444186, 29.790940192520569 ], [ -95.676121083107091, 29.790872192749294 ], [ -95.674740082687137, 29.790893192909124 ], [ -95.671913081772431, 29.790898193176254 ], [ -95.669226081051292, 29.790883193209087 ], [ -95.666577080542297, 29.790882193601469 ], [ -95.660280079016914, 29.790844193284148 ], [ -95.652658077207064, 29.790806193447445 ], [ -95.650695076859989, 29.790802193618429 ], [ -95.645123074605095, 29.790771194074278 ], [ -95.644877075051937, 29.790770194298769 ], [ -95.644881075328954, 29.790938194288387 ], [ -95.644912075424315, 29.792085194629919 ], [ -95.644936074845347, 29.792963194170213 ], [ -95.645025075087986, 29.796280195368805 ], [ -95.645067074882434, 29.797849195042289 ], [ -95.645041075261929, 29.800152195585788 ], [ -95.645102075206054, 29.804494196729017 ], [ -95.645197075968781, 29.810642198047724 ], [ -95.645225075731091, 29.811209197987825 ], [ -95.645304076256878, 29.811988197934003 ], [ -95.64546207636667, 29.813290198387342 ], [ -95.645530076282625, 29.814559198743563 ], [ -95.645540076276191, 29.814829198420181 ], [ -95.646937076597581, 29.814812199030783 ], [ -95.65253707777498, 29.814779198244171 ], [ -95.654186078655798, 29.814775198697873 ], [ -95.656209079451216, 29.814755198293941 ], [ -95.656955078869643, 29.814758198152113 ], [ -95.661548080294239, 29.814735198558431 ], [ -95.661531080380669, 29.81671119893792 ], [ -95.662133081072128, 29.816701198996554 ], [ -95.663712080771276, 29.816674198540451 ], [ -95.663772081406066, 29.816674198657509 ], [ -95.66544508190988, 29.816648198104676 ], [ -95.667181082005825, 29.816622198395919 ], [ -95.667184081746584, 29.816632198671648 ], [ -95.669267082527384, 29.816611198412527 ], [ -95.669341082491982, 29.816612198178277 ], [ -95.669412082599379, 29.816601198458454 ], [ -95.669462082763317, 29.816572198539539 ], [ -95.669494082033594, 29.816533198522496 ], [ -95.669507082298097, 29.816481198712985 ], [ -95.669506082937829, 29.816398198530354 ], [ -95.669505082244044, 29.81622819833192 ], [ -95.669479082711888, 29.814986198182197 ], [ -95.669450081868973, 29.813129198051691 ], [ -95.669449081811777, 29.813042197514612 ], [ -95.669459082785366, 29.81259119727957 ], [ -95.66945608245463, 29.81228219709503 ], [ -95.669475082250486, 29.812219197553112 ], [ -95.669570082035307, 29.812165197372934 ], [ -95.675126083483718, 29.812127197349547 ], [ -95.675429083286616, 29.812125197007141 ], [ -95.676142084445686, 29.812120197000237 ], [ -95.676319083506314, 29.812118197383736 ], [ -95.67644808351487, 29.812114197162618 ], [ -95.677189084110921, 29.812105196758463 ], [ -95.677856084375478, 29.812104196795524 ], [ -95.678765084362951, 29.812103197201736 ], [ -95.679997084494346, 29.812094197365834 ], [ -95.680049084794106, 29.812094197042928 ], [ -95.681992085908291, 29.812081196934685 ], [ -95.682563085539442, 29.812077196600189 ], [ -95.683421085697674, 29.812074196803568 ], [ -95.684484086414187, 29.812063197238249 ], [ -95.68466008626983, 29.812063197229783 ], [ -95.684947086224042, 29.812063196858599 ], [ -95.685086086392417, 29.812067196892556 ], [ -95.685294086145916, 29.812072196875604 ], [ -95.685789086074649, 29.812106196989411 ], [ -95.686267086893068, 29.812154196550285 ], [ -95.686379087059564, 29.812171196584231 ], [ -95.686799086163248, 29.812272197127839 ], [ -95.686957086488235, 29.811768196996269 ], [ -95.687095086292786, 29.811068196259221 ], [ -95.687115086636808, 29.81065519661313 ], [ -95.687127086937835, 29.810391196742966 ], [ -95.687127086256893, 29.810156196276949 ], [ -95.687130086285237, 29.809574195981845 ], [ -95.687124086252183, 29.809025196301967 ], [ -95.68711708689851, 29.808157195988176 ], [ -95.68709808621459, 29.80720319605285 ], [ -95.68711408616636, 29.80644819551382 ], [ -95.68711508625924, 29.806381195403215 ], [ -95.687124086283063, 29.805627195968377 ], [ -95.687203086081198, 29.804830195064898 ], [ -95.687358086678202, 29.804304194934044 ], [ -95.687725086724356, 29.803337194989897 ], [ -95.687789086929754, 29.803157194694194 ], [ -95.688080086975958, 29.802332194801302 ], [ -95.688238086358183, 29.801702194343324 ], [ -95.688304086266328, 29.801139194194391 ], [ -95.688334086225225, 29.80033219475397 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 864, "Tract": "48201330802", "Area_SqMi": 6.546527918359037, "total_2009": 3381, "total_2010": 3258, "total_2011": 3275, "total_2012": 3956, "total_2013": 4459, "total_2014": 5391, "total_2015": 5403, "total_2016": 5086, "total_2017": 4852, "total_2018": 4965, "total_2019": 5743, "total_2020": 6075, "age1": 1248, "age2": 3372, "age3": 1300, "earn1": 743, "earn2": 1293, "earn3": 3884, "naics_s01": 0, "naics_s02": 97, "naics_s03": 8, "naics_s04": 815, "naics_s05": 2434, "naics_s06": 388, "naics_s07": 439, "naics_s08": 577, "naics_s09": 96, "naics_s10": 8, "naics_s11": 241, "naics_s12": 126, "naics_s13": 0, "naics_s14": 51, "naics_s15": 0, "naics_s16": 54, "naics_s17": 130, "naics_s18": 257, "naics_s19": 199, "naics_s20": 0, "race1": 4149, "race2": 1006, "race3": 56, "race4": 609, "race5": 9, "race6": 91, "ethnicity1": 3894, "ethnicity2": 2026, "edu1": 1036, "edu2": 1280, "edu3": 1309, "edu4": 1047, "Shape_Length": 72438.268247559972, "Shape_Area": 182505993.8693383, "total_2021": 5525, "total_2022": 5920 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.431023011572222, 29.583562158548634 ], [ -95.431034011568684, 29.583514158911434 ], [ -95.430912010734872, 29.583457159119103 ], [ -95.430898011585271, 29.583450158913909 ], [ -95.430800010698249, 29.583403158521435 ], [ -95.43076901105205, 29.583388159056025 ], [ -95.430722010653994, 29.5833651590229 ], [ -95.427069009944574, 29.581606158301376 ], [ -95.426924010025488, 29.581539158672594 ], [ -95.424293009022662, 29.580317157953463 ], [ -95.424125009514185, 29.580238158238465 ], [ -95.417115007482067, 29.583282159459607 ], [ -95.417008007115768, 29.583214159264848 ], [ -95.416618007080771, 29.583054159401073 ], [ -95.416272007321936, 29.582895159422886 ], [ -95.415983007754008, 29.582834158777668 ], [ -95.41569400708218, 29.58279015884818 ], [ -95.415316007267393, 29.582757159235491 ], [ -95.415058007497521, 29.58276315950609 ], [ -95.414788006667152, 29.582785159259824 ], [ -95.414612006824242, 29.582834159338105 ], [ -95.414498006905731, 29.582894159564113 ], [ -95.41429700711069, 29.583026159118262 ], [ -95.414108006411709, 29.583208159059218 ], [ -95.414027007154758, 29.583263158922311 ], [ -95.413970007113534, 29.583285159559011 ], [ -95.413794006586599, 29.583312158954449 ], [ -95.413530007115753, 29.583323158883605 ], [ -95.413096006164935, 29.583301159227961 ], [ -95.412435006486234, 29.583202159510357 ], [ -95.41153000588784, 29.58307015890291 ], [ -95.410794005901423, 29.582949159454703 ], [ -95.409856005852959, 29.582701158934444 ], [ -95.409661005216634, 29.582696159536727 ], [ -95.409554006145186, 29.5827231594761 ], [ -95.409297005192329, 29.582828158965093 ], [ -95.408925005842505, 29.582872159819932 ], [ -95.408851005507216, 29.582870159525019 ], [ -95.408730004929552, 29.582866159779254 ], [ -95.408617004970836, 29.582899159676547 ], [ -95.40835900508209, 29.582872159757759 ], [ -95.408083005020799, 29.582745158928667 ], [ -95.407617005481995, 29.582514159641324 ], [ -95.407527005379649, 29.582480159731229 ], [ -95.407340005536469, 29.582410159098487 ], [ -95.40691900460692, 29.582355159009708 ], [ -95.406525005180484, 29.582339159220567 ], [ -95.406063004737916, 29.582365158972109 ], [ -95.405592004815063, 29.582371159734805 ], [ -95.405365004309274, 29.58234915928972 ], [ -95.405183004000534, 29.582255159010199 ], [ -95.404812004259185, 29.582008159618383 ], [ -95.40464800462118, 29.581914159462741 ], [ -95.404623004511834, 29.581908159730954 ], [ -95.404460004041837, 29.581870158946973 ], [ -95.404107003779501, 29.581832159426355 ], [ -95.403862004273336, 29.581821159349044 ], [ -95.403529004476511, 29.581859158968609 ], [ -95.403239003753328, 29.581881159138817 ], [ -95.402893003514691, 29.581941159337553 ], [ -95.40247800379278, 29.581963159668724 ], [ -95.401981003830954, 29.581980159095565 ], [ -95.401333003073134, 29.581952159414922 ], [ -95.400840003253393, 29.581963159075926 ], [ -95.400720003771923, 29.581966159564374 ], [ -95.400612003691663, 29.581969159683975 ], [ -95.400509003211553, 29.581971159566304 ], [ -95.400403003547794, 29.581974159188412 ], [ -95.399987003660982, 29.582001159253277 ], [ -95.399516002657691, 29.58207315934434 ], [ -95.399358002609532, 29.582056159138574 ], [ -95.39923300256126, 29.581990159392777 ], [ -95.399069003162808, 29.581984159224724 ], [ -95.398987002587432, 29.582017159631725 ], [ -95.398742002603839, 29.582171159270597 ], [ -95.398553003231612, 29.582254159628302 ], [ -95.398408002878043, 29.582287159554614 ], [ -95.397880003107176, 29.582298160084946 ], [ -95.397509002879261, 29.58236915957719 ], [ -95.396987001908556, 29.582479159374589 ], [ -95.396578002134831, 29.582622159401172 ], [ -95.396377001738216, 29.582704160023003 ], [ -95.396315002278428, 29.58272116020721 ], [ -95.396295002383653, 29.582726159437659 ], [ -95.396144002193793, 29.582726159553875 ], [ -95.396049002393582, 29.582715159660253 ], [ -95.395609002095512, 29.582577160134214 ], [ -95.395175001898735, 29.582396159983279 ], [ -95.394854001724013, 29.582341160151525 ], [ -95.394270001802923, 29.582264160083653 ], [ -95.394194001641011, 29.582231159467963 ], [ -95.393892001788004, 29.581939159718932 ], [ -95.393811002026084, 29.581879159684419 ], [ -95.393282001018065, 29.581692159774391 ], [ -95.393106001631125, 29.581647159659511 ], [ -95.393012001759914, 29.581636159259734 ], [ -95.392899001644295, 29.581647159782019 ], [ -95.392817001261889, 29.581669159748149 ], [ -95.392722000819731, 29.581735159708717 ], [ -95.392659001709561, 29.5818291596939 ], [ -95.392559001632279, 29.581944159668534 ], [ -95.392257001622127, 29.582186160202717 ], [ -95.392112000782689, 29.582318159881321 ], [ -95.391974001230167, 29.582532160135091 ], [ -95.391778000981191, 29.582703159820156 ], [ -95.391546001235483, 29.582807159922663 ], [ -95.391294000823493, 29.582895160352976 ], [ -95.391156000634766, 29.582961159996444 ], [ -95.391061001242775, 29.583082159575824 ], [ -95.390797000609481, 29.583516160532813 ], [ -95.390577001093888, 29.583758160207811 ], [ -95.390507000365858, 29.583819159780166 ], [ -95.390275000297436, 29.583901159802775 ], [ -95.390098000645125, 29.5839781605982 ], [ -95.390023000612032, 29.584055159899613 ], [ -95.389991000266392, 29.584187160440926 ], [ -95.389998000931698, 29.584335160509447 ], [ -95.389991000687104, 29.584467160544943 ], [ -95.389935000342206, 29.584528160354605 ], [ -95.389482000984955, 29.584791160094483 ], [ -95.389293000420096, 29.584967160232676 ], [ -95.389231000741759, 29.585048160565503 ], [ -95.389110000582008, 29.585204160609216 ], [ -95.388826999989632, 29.585368160406048 ], [ -95.388449000522272, 29.585554160811988 ], [ -95.388412000208078, 29.585572160965711 ], [ -95.388159999961047, 29.58567116054115 ], [ -95.388133999826152, 29.585675160652649 ], [ -95.388002999734681, 29.58569816090759 ], [ -95.387884000690605, 29.585698161097046 ], [ -95.387373999723508, 29.585648160666665 ], [ -95.387046999953185, 29.585626160902027 ], [ -95.386864999707285, 29.585599160234551 ], [ -95.386782000283475, 29.585595160672725 ], [ -95.386684999470248, 29.585591161068869 ], [ -95.386491000215415, 29.585582160616514 ], [ -95.386050999976803, 29.585561160621005 ], [ -95.385889999667398, 29.585554160278207 ], [ -95.385782000097109, 29.585561161066337 ], [ -95.385719999246689, 29.585565161078542 ], [ -95.385505999152826, 29.585637160803607 ], [ -95.385310999845188, 29.585741160838751 ], [ -95.385152999954315, 29.585939160552215 ], [ -95.384970999607276, 29.586192161274578 ], [ -95.38488899897547, 29.586379160633626 ], [ -95.38471899946363, 29.586549161388664 ], [ -95.384429999544679, 29.586725161120231 ], [ -95.384158999476369, 29.58687316112702 ], [ -95.383988999153843, 29.586928161139948 ], [ -95.383919999556639, 29.586923160763259 ], [ -95.383699999458415, 29.586857160874871 ], [ -95.383152999538794, 29.586807160631491 ], [ -95.382929998668573, 29.586793160676567 ], [ -95.382875998878205, 29.58679016134624 ], [ -95.382460998702499, 29.586834161367673 ], [ -95.381906998511639, 29.586878161079998 ], [ -95.381264998978807, 29.586955161122383 ], [ -95.381136998235021, 29.586980161343945 ], [ -95.380906998418666, 29.587026160942706 ], [ -95.380327998767214, 29.58720716084569 ], [ -95.379978998513195, 29.587331161194445 ], [ -95.378779998098679, 29.587757161761768 ], [ -95.378307998113343, 29.587894161484762 ], [ -95.378049998059055, 29.587932161156651 ], [ -95.377754997864599, 29.587916161541028 ], [ -95.37711999784247, 29.587794161513084 ], [ -95.376785997444586, 29.587805161307543 ], [ -95.376659997729519, 29.58784916107242 ], [ -95.376508997073316, 29.587937161932153 ], [ -95.37637699774946, 29.588058161188467 ], [ -95.376187997343976, 29.58828916149346 ], [ -95.376068997297423, 29.588371161929881 ], [ -95.375948997363508, 29.588382161840812 ], [ -95.375766996913399, 29.588366161846132 ], [ -95.375621997068677, 29.588338161592919 ], [ -95.375420997578829, 29.588283161331894 ], [ -95.37523799670123, 29.588200161841812 ], [ -95.375005997352005, 29.588112162041298 ], [ -95.37422599697021, 29.587773161305552 ], [ -95.373426996321086, 29.58744416175341 ], [ -95.372740996738941, 29.587070161542179 ], [ -95.372595996428629, 29.587004161234233 ], [ -95.372060996180551, 29.586867161025452 ], [ -95.371934996593836, 29.586823161523853 ], [ -95.37175299570076, 29.586708161628888 ], [ -95.371437996061616, 29.586449161234157 ], [ -95.370965995881193, 29.586103161260525 ], [ -95.370663996152231, 29.585894161347721 ], [ -95.37055699611831, 29.585856160847925 ], [ -95.370135995619691, 29.585730160807906 ], [ -95.369745995895954, 29.585587161489276 ], [ -95.369027995770125, 29.585043161591905 ], [ -95.368763994841473, 29.584878161102047 ], [ -95.368574995503494, 29.58478516150846 ], [ -95.368411995459709, 29.584746161543457 ], [ -95.368228994859976, 29.584719161445783 ], [ -95.368102995132219, 29.584736161334948 ], [ -95.367781994679689, 29.584758161396156 ], [ -95.367366994760644, 29.584835160889821 ], [ -95.366926994382453, 29.584967160864647 ], [ -95.366473995114518, 29.585132161349453 ], [ -95.365310994039461, 29.585512161512007 ], [ -95.365039994465135, 29.585677161217447 ], [ -95.364939994113328, 29.58576016116179 ], [ -95.364605994648159, 29.585897161073888 ], [ -95.364392994590162, 29.585941161660163 ], [ -95.364053994148634, 29.585947161454829 ], [ -95.36380099403948, 29.585953161173368 ], [ -95.363423993615967, 29.585903161376553 ], [ -95.363039994144657, 29.585695161479251 ], [ -95.362536993214363, 29.585552161884934 ], [ -95.361189993059114, 29.585080161115084 ], [ -95.36073699292038, 29.584942161746337 ], [ -95.360497992749657, 29.584887161787041 ], [ -95.360290992995289, 29.584909161214835 ], [ -95.360038992551381, 29.585003161686146 ], [ -95.359786993419675, 29.585124161756056 ], [ -95.359642993239504, 29.585218161423526 ], [ -95.359541992460095, 29.585262161174949 ], [ -95.359384992972807, 29.585306161390051 ], [ -95.359113992470895, 29.585350161925227 ], [ -95.358812992907673, 29.585427161680439 ], [ -95.358610992633785, 29.585526161234686 ], [ -95.357982992429527, 29.585938161880868 ], [ -95.357692992026003, 29.58609816218102 ], [ -95.357233992784103, 29.586395162168898 ], [ -95.357038992693035, 29.586588162328283 ], [ -95.356818992327845, 29.586786162050782 ], [ -95.356529991776497, 29.586934162154652 ], [ -95.356397992221034, 29.586967161559087 ], [ -95.356227992429666, 29.586989161578991 ], [ -95.355994992030119, 29.586923162322293 ], [ -95.355485992497904, 29.58680816165667 ], [ -95.355151992334271, 29.58674216225598 ], [ -95.354604991966468, 29.586534161827768 ], [ -95.353893991859977, 29.586127161996867 ], [ -95.353496990941721, 29.585786161731978 ], [ -95.353188991644885, 29.585572161706775 ], [ -95.352936991196444, 29.585457161581495 ], [ -95.35255999110008, 29.585358161635632 ], [ -95.352207991101508, 29.585380162007549 ], [ -95.351913991401815, 29.58546016186364 ], [ -95.351912991179717, 29.585535161590148 ], [ -95.351911990500767, 29.585782162013203 ], [ -95.352001991024096, 29.590176162330568 ], [ -95.352036990945379, 29.591276163220268 ], [ -95.352073991372592, 29.593006163225098 ], [ -95.352078991626072, 29.593227163645043 ], [ -95.352083990991574, 29.593331162990058 ], [ -95.352084991482343, 29.593344163107123 ], [ -95.352086991112643, 29.593390163728753 ], [ -95.352107991681748, 29.593850163899781 ], [ -95.352148991919037, 29.594273163919819 ], [ -95.352175991397687, 29.594663163608967 ], [ -95.352197991364022, 29.594818163750524 ], [ -95.352243991150928, 29.595144163981207 ], [ -95.352247991376203, 29.595336163665124 ], [ -95.352483991147793, 29.596148164163381 ], [ -95.352701991546098, 29.597047163736807 ], [ -95.352822991480608, 29.597448164305039 ], [ -95.352937991585634, 29.597965164308889 ], [ -95.353103991486776, 29.598377163991497 ], [ -95.353111991601963, 29.598492164097305 ], [ -95.353224991903659, 29.598844164576619 ], [ -95.353265992410201, 29.598971164837568 ], [ -95.353377991508481, 29.599320164308562 ], [ -95.353498991895123, 29.599822165156731 ], [ -95.353702992453549, 29.600358164564209 ], [ -95.353812992344743, 29.600693164868282 ], [ -95.353991992253157, 29.601239164877491 ], [ -95.354657992173657, 29.603270164998722 ], [ -95.355065993096915, 29.60456416531245 ], [ -95.355194992377776, 29.605151165498242 ], [ -95.355226992620644, 29.605296166033295 ], [ -95.355259992688246, 29.605447166093747 ], [ -95.355306992835395, 29.60566016623763 ], [ -95.355317992423835, 29.605710166168713 ], [ -95.355433992774692, 29.60658316624631 ], [ -95.355441993151473, 29.607797166493462 ], [ -95.355444993485605, 29.610261166434988 ], [ -95.355438993315687, 29.611610167368582 ], [ -95.355435992725859, 29.612200167307844 ], [ -95.355566993554959, 29.612204167170731 ], [ -95.355674993544227, 29.612202167513949 ], [ -95.356494993447498, 29.61220316744701 ], [ -95.35710699339819, 29.612204167321579 ], [ -95.357514994082621, 29.612200166894453 ], [ -95.357620993890478, 29.612204167455488 ], [ -95.357792993768513, 29.612200166665129 ], [ -95.357967993481552, 29.612206167124445 ], [ -95.358154993259291, 29.612204167450386 ], [ -95.358254994205609, 29.612198167460036 ], [ -95.359464994572178, 29.612216166807173 ], [ -95.359558993931799, 29.612221167179094 ], [ -95.360294993862524, 29.612223166656321 ], [ -95.36039099412082, 29.612218167467987 ], [ -95.360680994128472, 29.612217167024809 ], [ -95.360765994797433, 29.612234166945758 ], [ -95.360867994959833, 29.612225167345677 ], [ -95.361371995071096, 29.612225167225915 ], [ -95.361747994523483, 29.612231166593677 ], [ -95.36200699497428, 29.612229166856046 ], [ -95.362233995261121, 29.612221167413615 ], [ -95.36237599495395, 29.612221167299282 ], [ -95.362454994571735, 29.612215167312833 ], [ -95.362533995014246, 29.612218167248496 ], [ -95.362620995148845, 29.612213167314973 ], [ -95.363681995433382, 29.612220166617735 ], [ -95.363897995148463, 29.612215166564621 ], [ -95.364022995181855, 29.612223167350876 ], [ -95.364077995101809, 29.612234166546031 ], [ -95.364306995269658, 29.612239167203104 ], [ -95.365194995800778, 29.612244166916753 ], [ -95.365329995754848, 29.612241167006147 ], [ -95.36546799608918, 29.612244166578577 ], [ -95.365614995732145, 29.612237166600824 ], [ -95.365762995945886, 29.612247167144822 ], [ -95.366693996147973, 29.612252166715567 ], [ -95.367017995846624, 29.612248167119166 ], [ -95.367956995785079, 29.612253166596169 ], [ -95.36804799649174, 29.612253167091005 ], [ -95.368364996254996, 29.612251166880039 ], [ -95.368483996812287, 29.612256167065496 ], [ -95.368757996902573, 29.612256166390317 ], [ -95.368911996989084, 29.612252166509442 ], [ -95.369591996721056, 29.612259166713574 ], [ -95.372140997642376, 29.612267166825536 ], [ -95.372646997626148, 29.612272166789712 ], [ -95.372994997220147, 29.612269166274288 ], [ -95.373167997632791, 29.61227416646317 ], [ -95.373348997264529, 29.612270166685303 ], [ -95.37407499774703, 29.61227916639902 ], [ -95.375344998326185, 29.612283166792743 ], [ -95.376295998911644, 29.612288166555537 ], [ -95.377550999116238, 29.612298166058871 ], [ -95.378353998678577, 29.612295166786073 ], [ -95.380232999255483, 29.612307166500909 ], [ -95.380245999827991, 29.614119166831877 ], [ -95.381168999256602, 29.614108167112583 ], [ -95.38225199957391, 29.614095166659347 ], [ -95.384407000387156, 29.614069166310159 ], [ -95.385675000419553, 29.614049166565337 ], [ -95.386255001400968, 29.614038166387115 ], [ -95.386690001498437, 29.614037166627291 ], [ -95.387211001064912, 29.614037166061337 ], [ -95.387102001006625, 29.609506165948179 ], [ -95.38704700099359, 29.607127165529 ], [ -95.386978000675583, 29.604150164893955 ], [ -95.386924001162896, 29.602554164154412 ], [ -95.386936000915625, 29.602452163696295 ], [ -95.386850000305031, 29.59929916329336 ], [ -95.387221000809561, 29.599329163234938 ], [ -95.387891000486192, 29.599505163557613 ], [ -95.387958001299054, 29.599512163116763 ], [ -95.388297000820231, 29.599515163774775 ], [ -95.392430001493992, 29.599479163180359 ], [ -95.395235002328178, 29.599447163437762 ], [ -95.395458003024686, 29.599447162876515 ], [ -95.395958003015679, 29.599428162966163 ], [ -95.396569003365428, 29.599428163145127 ], [ -95.397353002751899, 29.599413163236203 ], [ -95.400688004018633, 29.599372163232299 ], [ -95.404848005143165, 29.599321162715501 ], [ -95.409028006017763, 29.599273162373574 ], [ -95.411346006540541, 29.599237162640058 ], [ -95.411521006471688, 29.599225162502513 ], [ -95.412354007559756, 29.599218163026464 ], [ -95.4131840074987, 29.599192162866316 ], [ -95.415100007662289, 29.599194162312845 ], [ -95.415990007600143, 29.599188162098368 ], [ -95.416295007655947, 29.599178162525121 ], [ -95.417116008076732, 29.599178162574649 ], [ -95.417332008771197, 29.599175162325196 ], [ -95.418257008775356, 29.599165161971143 ], [ -95.419019009205769, 29.599154161943499 ], [ -95.419398008973261, 29.599154161928411 ], [ -95.420574008994777, 29.599135161910564 ], [ -95.42129600942269, 29.599127162454806 ], [ -95.421486009489755, 29.599126162626249 ], [ -95.424251010304616, 29.599104162420691 ], [ -95.424938010461247, 29.599095161777655 ], [ -95.425023010080338, 29.599101162253007 ], [ -95.425586010886448, 29.599238162248707 ], [ -95.425778010838243, 29.598758161869164 ], [ -95.425846010229833, 29.59862616196942 ], [ -95.42629001039252, 29.597485161347823 ], [ -95.426403010193255, 29.597188161695943 ], [ -95.426441010464245, 29.597076161727152 ], [ -95.426574010297301, 29.596759161775193 ], [ -95.427087010319312, 29.595507161605475 ], [ -95.427155011161702, 29.595376161264912 ], [ -95.427517010478141, 29.594480161071846 ], [ -95.427735010390393, 29.593720161302976 ], [ -95.427923010989076, 29.593043160503193 ], [ -95.428096010985357, 29.592313160845098 ], [ -95.428270010733257, 29.591751160412013 ], [ -95.428689010917296, 29.590659160042019 ], [ -95.429304011222953, 29.589055159818486 ], [ -95.429694010662942, 29.588037160161413 ], [ -95.430675011266473, 29.585835159420157 ], [ -95.430689010742427, 29.585803158837216 ], [ -95.430791010963503, 29.585442158879967 ], [ -95.430949011246938, 29.584885159366987 ], [ -95.430981011384617, 29.584239159321424 ], [ -95.430978011674526, 29.584203159351702 ], [ -95.430953011267732, 29.583838158442564 ], [ -95.431023011572222, 29.583562158548634 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 865, "Tract": "48201421602", "Area_SqMi": 0.3262094654371922, "total_2009": 2514, "total_2010": 947, "total_2011": 942, "total_2012": 939, "total_2013": 1000, "total_2014": 1135, "total_2015": 1018, "total_2016": 919, "total_2017": 1001, "total_2018": 964, "total_2019": 952, "total_2020": 851, "age1": 155, "age2": 440, "age3": 243, "earn1": 131, "earn2": 303, "earn3": 404, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 72, "naics_s05": 101, "naics_s06": 50, "naics_s07": 96, "naics_s08": 0, "naics_s09": 0, "naics_s10": 56, "naics_s11": 97, "naics_s12": 43, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 55, "naics_s17": 4, "naics_s18": 143, "naics_s19": 106, "naics_s20": 0, "race1": 621, "race2": 81, "race3": 10, "race4": 113, "race5": 0, "race6": 13, "ethnicity1": 507, "ethnicity2": 331, "edu1": 181, "edu2": 162, "edu3": 203, "edu4": 137, "Shape_Length": 15124.743720163196, "Shape_Area": 9094161.5833089594, "total_2021": 855, "total_2022": 838 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.486726030943558, 29.705537181636409 ], [ -95.486719031013251, 29.704714181510589 ], [ -95.486708030389437, 29.703710181917295 ], [ -95.486687030133723, 29.701893180728558 ], [ -95.486716031024741, 29.701455180729663 ], [ -95.486633030928544, 29.698092180380094 ], [ -95.484597030062758, 29.699189180706004 ], [ -95.484579029709337, 29.699199180775651 ], [ -95.482477029400883, 29.700244180828058 ], [ -95.480417028740845, 29.701251181148123 ], [ -95.480388028939714, 29.700250180654653 ], [ -95.480386028888859, 29.700040181333463 ], [ -95.480380029294068, 29.699289180560438 ], [ -95.480362028542388, 29.698329181081444 ], [ -95.479778028754524, 29.698335180286389 ], [ -95.47880702842194, 29.698338180386706 ], [ -95.477817028538098, 29.698350180504093 ], [ -95.476840027983471, 29.698363180569682 ], [ -95.476202027809066, 29.698364180698086 ], [ -95.475013027023607, 29.698382180512411 ], [ -95.474254026873737, 29.698394180543342 ], [ -95.474085027745474, 29.698390180484282 ], [ -95.474102026840768, 29.699303180808123 ], [ -95.474100027323075, 29.700203181603378 ], [ -95.474105027079773, 29.701121181296212 ], [ -95.474130027018333, 29.70198618163375 ], [ -95.474164027286804, 29.704428182326549 ], [ -95.474862027551183, 29.704088182107139 ], [ -95.475050027887164, 29.703997181918918 ], [ -95.475253027634949, 29.703898181555267 ], [ -95.476262028296887, 29.703401181416616 ], [ -95.476261028031431, 29.70381818183991 ], [ -95.476270027619407, 29.704560181821829 ], [ -95.476272028501199, 29.704747182450255 ], [ -95.476283027612325, 29.705608182194712 ], [ -95.477664028064524, 29.705619182528014 ], [ -95.477795028127773, 29.705621181844389 ], [ -95.478390028347619, 29.705625182091463 ], [ -95.478639028531504, 29.705623182229864 ], [ -95.478906028411984, 29.705620182018276 ], [ -95.479104028763274, 29.705616182374985 ], [ -95.479759029215387, 29.705611182064569 ], [ -95.4804570295301, 29.705602182431303 ], [ -95.480915029330816, 29.705598182301934 ], [ -95.481194029866657, 29.705593182077557 ], [ -95.481518028997812, 29.705587181779489 ], [ -95.481907029842333, 29.70556818223384 ], [ -95.482547029599104, 29.705563182244031 ], [ -95.484637030668793, 29.705535181741812 ], [ -95.484664030635514, 29.705535181876666 ], [ -95.485862030737124, 29.705535182192278 ], [ -95.486726030943558, 29.705537181636409 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 866, "Tract": "48201413204", "Area_SqMi": 0.090314034110593341, "total_2009": 151, "total_2010": 149, "total_2011": 61, "total_2012": 64, "total_2013": 58, "total_2014": 60, "total_2015": 31, "total_2016": 41, "total_2017": 34, "total_2018": 15, "total_2019": 34, "total_2020": 35, "age1": 8, "age2": 17, "age3": 4, "earn1": 4, "earn2": 6, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 3, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 15, "naics_s12": 7, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 3, "naics_s20": 0, "race1": 22, "race2": 1, "race3": 0, "race4": 6, "race5": 0, "race6": 0, "ethnicity1": 21, "ethnicity2": 8, "edu1": 1, "edu2": 3, "edu3": 4, "edu4": 13, "Shape_Length": 10072.101641453426, "Shape_Area": 2517800.6969891265, "total_2021": 25, "total_2022": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.427360014946544, 29.700552182907145 ], [ -95.427344015720138, 29.699722182916585 ], [ -95.427337015081946, 29.699165182850155 ], [ -95.427328015473762, 29.698489182106268 ], [ -95.427291015037042, 29.697590181949771 ], [ -95.427289014972672, 29.697130182113114 ], [ -95.427236015246422, 29.696671182028183 ], [ -95.427183015025719, 29.696439182209186 ], [ -95.426989015416552, 29.695949181837186 ], [ -95.426940014660573, 29.695825181849006 ], [ -95.426601015239811, 29.696194181810949 ], [ -95.426253015344059, 29.696446182355796 ], [ -95.425647014593949, 29.696748181890339 ], [ -95.424982014701115, 29.696936182584277 ], [ -95.423976014693153, 29.696998182221773 ], [ -95.42321601396381, 29.696851182386816 ], [ -95.422841014489478, 29.696703182611127 ], [ -95.420947013189092, 29.695705181923266 ], [ -95.420752013654251, 29.69565018226838 ], [ -95.420441013772461, 29.695645182021075 ], [ -95.420078013198591, 29.695698182072377 ], [ -95.419650012865304, 29.695912182095277 ], [ -95.418105013204993, 29.697345182732548 ], [ -95.418027012388833, 29.697393182800035 ], [ -95.418066013204552, 29.69751018215522 ], [ -95.418176013058513, 29.697838182336923 ], [ -95.418630013545226, 29.697633182242033 ], [ -95.419411013512388, 29.697204182750692 ], [ -95.41979801351269, 29.696992182496071 ], [ -95.420225013550194, 29.696846182226498 ], [ -95.420682013024177, 29.696750182510822 ], [ -95.421412013890432, 29.696759182118988 ], [ -95.421450013666274, 29.696770182037309 ], [ -95.423567014189956, 29.697399182602194 ], [ -95.423322014522739, 29.698294182504611 ], [ -95.423092014188825, 29.699081182812421 ], [ -95.422989014527587, 29.699527182559123 ], [ -95.422902014589255, 29.700074183113784 ], [ -95.422901014071925, 29.70037218325735 ], [ -95.422903014553455, 29.700513182970429 ], [ -95.422915014052862, 29.701242183493886 ], [ -95.424413014635647, 29.701192183525247 ], [ -95.425172014422273, 29.701009183059998 ], [ -95.425223014797041, 29.700595182740063 ], [ -95.425896015138306, 29.700567183287095 ], [ -95.427360014946544, 29.700552182907145 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 867, "Tract": "48201555703", "Area_SqMi": 1.4880542492939342, "total_2009": 115, "total_2010": 432, "total_2011": 837, "total_2012": 1112, "total_2013": 1250, "total_2014": 914, "total_2015": 744, "total_2016": 1001, "total_2017": 1182, "total_2018": 1435, "total_2019": 1853, "total_2020": 2962, "age1": 1800, "age2": 1158, "age3": 403, "earn1": 1408, "earn2": 1173, "earn3": 780, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 6, "naics_s06": 77, "naics_s07": 2090, "naics_s08": 3, "naics_s09": 0, "naics_s10": 30, "naics_s11": 38, "naics_s12": 114, "naics_s13": 14, "naics_s14": 62, "naics_s15": 0, "naics_s16": 43, "naics_s17": 30, "naics_s18": 680, "naics_s19": 134, "naics_s20": 0, "race1": 2379, "race2": 586, "race3": 41, "race4": 263, "race5": 6, "race6": 86, "ethnicity1": 2077, "ethnicity2": 1284, "edu1": 355, "edu2": 412, "edu3": 457, "edu4": 337, "Shape_Length": 27423.204780625736, "Shape_Area": 41484405.640013821, "total_2021": 2992, "total_2022": 3361 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.760437114256888, 29.99572723134888 ], [ -95.760496113600809, 29.995600231502266 ], [ -95.75929911371216, 29.995144231990004 ], [ -95.75567811252489, 29.993752231124553 ], [ -95.75519011239949, 29.993564231397905 ], [ -95.754408111986635, 29.99325223097793 ], [ -95.751114111164895, 29.992057231355592 ], [ -95.749212111004766, 29.991391231193784 ], [ -95.748736110443232, 29.991208231411385 ], [ -95.746268110351977, 29.990259231299493 ], [ -95.743477109626809, 29.989199231093274 ], [ -95.743427109020786, 29.989179231112171 ], [ -95.74134010865491, 29.988385230410678 ], [ -95.741156108127257, 29.988315230759593 ], [ -95.741094108045559, 29.988452231228276 ], [ -95.74101110868223, 29.988673231130839 ], [ -95.740969108443423, 29.988756230953079 ], [ -95.740941108441675, 29.988810230544669 ], [ -95.740921108559817, 29.988850231267651 ], [ -95.740908108408149, 29.988876230511941 ], [ -95.740868108249032, 29.988953231065675 ], [ -95.740195108416685, 29.990272231512801 ], [ -95.739635108638623, 29.991372231186062 ], [ -95.739359108316592, 29.99191223164128 ], [ -95.739031108132281, 29.992590231836676 ], [ -95.738995107914718, 29.992643231728621 ], [ -95.738957107932904, 29.992699231759744 ], [ -95.738797107669185, 29.993041231951015 ], [ -95.738561108377624, 29.993710231873699 ], [ -95.738441107783714, 29.994113231851088 ], [ -95.738293107785523, 29.994608232032881 ], [ -95.738131108453473, 29.99530123248034 ], [ -95.738050108082234, 29.99564323217685 ], [ -95.737976108057779, 29.995963232410663 ], [ -95.737753108035179, 29.997221232450489 ], [ -95.73774210758306, 29.997335232717777 ], [ -95.73771310808921, 29.997626232994591 ], [ -95.73773410820462, 29.998115232769887 ], [ -95.737774107958685, 29.998436233201961 ], [ -95.737779107747727, 29.998647232577664 ], [ -95.737900108502544, 29.999101233390551 ], [ -95.737985108433207, 29.999381233158363 ], [ -95.738251108165372, 30.000175233428237 ], [ -95.738351108119886, 30.000383233473869 ], [ -95.738809108074193, 30.00107723309976 ], [ -95.739228108434219, 30.001515233911675 ], [ -95.740236108987389, 30.002614233940417 ], [ -95.741112108784932, 30.003478233722337 ], [ -95.742403109429148, 30.004671233690345 ], [ -95.742837109359016, 30.005390234232024 ], [ -95.74292010976059, 30.005563234636373 ], [ -95.74322511006865, 30.006198234504989 ], [ -95.743447110311209, 30.006773234219906 ], [ -95.743456109863033, 30.006894234488925 ], [ -95.743479109671995, 30.007189234327367 ], [ -95.743473109523904, 30.007252234836493 ], [ -95.743447110053154, 30.007550234488772 ], [ -95.74344510965517, 30.007571234346511 ], [ -95.743503109846841, 30.008688235112277 ], [ -95.743472110162728, 30.008960234843482 ], [ -95.743430109815165, 30.009231235041646 ], [ -95.743413110567502, 30.009318234662366 ], [ -95.743391110052357, 30.009428235346466 ], [ -95.743377109782656, 30.009501234820068 ], [ -95.74334710977061, 30.009603234863906 ], [ -95.743216110470939, 30.010434235418249 ], [ -95.742975109534513, 30.011443235874001 ], [ -95.742952110137352, 30.011834235544491 ], [ -95.742935109839507, 30.012540235323659 ], [ -95.742926109902498, 30.01258023563939 ], [ -95.742909109930011, 30.012654235359456 ], [ -95.742910109766981, 30.012730235510674 ], [ -95.743519110006332, 30.012733235366269 ], [ -95.744196110648147, 30.012708235719327 ], [ -95.744725110882555, 30.012732235817289 ], [ -95.745138111159548, 30.012788235969833 ], [ -95.7456371104619, 30.01287223540211 ], [ -95.74763211160105, 30.013355235851126 ], [ -95.748092111252774, 30.013425235252491 ], [ -95.74862111167694, 30.013466235775649 ], [ -95.749732112334883, 30.013464235765724 ], [ -95.750715111872225, 30.013329235717883 ], [ -95.75114911239676, 30.013274235753716 ], [ -95.75224111251103, 30.013004235407291 ], [ -95.752742112106674, 30.012872235330072 ], [ -95.753473112288091, 30.01267423547857 ], [ -95.754158113002248, 30.012598234891374 ], [ -95.754880113090422, 30.012582235113882 ], [ -95.755529113530912, 30.012615235424786 ], [ -95.756244113531167, 30.012657234813474 ], [ -95.75644911321389, 30.012669235574247 ], [ -95.75645711387493, 30.0125472348271 ], [ -95.756552113209921, 30.011190234758843 ], [ -95.756336112942193, 30.009629234295204 ], [ -95.756013112793411, 30.008819234372933 ], [ -95.755847113537271, 30.008476234101877 ], [ -95.755545113344212, 30.00784823398665 ], [ -95.75518511258592, 30.007057234351056 ], [ -95.755095112509565, 30.00678723394174 ], [ -95.75504611270982, 30.005864233694115 ], [ -95.755099113338431, 30.004889233265224 ], [ -95.755323113298942, 30.003952233127809 ], [ -95.755642112450531, 30.003207233361426 ], [ -95.756121113453062, 30.002514232820076 ], [ -95.756409113373365, 30.002194233259242 ], [ -95.756595113579948, 30.001971233242763 ], [ -95.756839113482442, 30.001726232995939 ], [ -95.757192113091151, 30.001409233326275 ], [ -95.757282113252586, 30.00132823245659 ], [ -95.758108113408582, 30.000491232918144 ], [ -95.758673113896208, 29.999519232891437 ], [ -95.758906113573602, 29.999143232246443 ], [ -95.760264113616117, 29.996102231576113 ], [ -95.760326113921394, 29.995968232117047 ], [ -95.760364113490951, 29.995885231357043 ], [ -95.760437114256888, 29.99572723134888 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 868, "Tract": "48201422501", "Area_SqMi": 0.3321951778821039, "total_2009": 468, "total_2010": 518, "total_2011": 403, "total_2012": 565, "total_2013": 574, "total_2014": 592, "total_2015": 597, "total_2016": 558, "total_2017": 571, "total_2018": 646, "total_2019": 607, "total_2020": 573, "age1": 361, "age2": 327, "age3": 136, "earn1": 170, "earn2": 374, "earn3": 280, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 7, "naics_s07": 200, "naics_s08": 1, "naics_s09": 0, "naics_s10": 26, "naics_s11": 70, "naics_s12": 40, "naics_s13": 0, "naics_s14": 1, "naics_s15": 8, "naics_s16": 58, "naics_s17": 0, "naics_s18": 6, "naics_s19": 407, "naics_s20": 0, "race1": 583, "race2": 178, "race3": 8, "race4": 38, "race5": 2, "race6": 15, "ethnicity1": 550, "ethnicity2": 274, "edu1": 90, "edu2": 135, "edu3": 136, "edu4": 102, "Shape_Length": 15303.758716844623, "Shape_Area": 9261033.0016238615, "total_2021": 666, "total_2022": 824 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508648034872238, 29.676177174770057 ], [ -95.508647035572196, 29.676089175129334 ], [ -95.508642034580916, 29.675630175002212 ], [ -95.508630035156017, 29.674900175217587 ], [ -95.508623035286647, 29.674537175198655 ], [ -95.508612034612185, 29.673928175035844 ], [ -95.508607035428071, 29.673644175091098 ], [ -95.508584034992253, 29.672391174049782 ], [ -95.508579035169561, 29.672104174449547 ], [ -95.508574035400002, 29.671865174422319 ], [ -95.508583034643848, 29.670871174000432 ], [ -95.508146034579923, 29.670863174312476 ], [ -95.507382034255457, 29.670880173737793 ], [ -95.50691703424387, 29.670886174523506 ], [ -95.505796034003609, 29.670899174520748 ], [ -95.505321034514083, 29.670905174164275 ], [ -95.504607033714066, 29.670914174596771 ], [ -95.504354033309369, 29.670917173985341 ], [ -95.50373603322538, 29.670924173938957 ], [ -95.503528033655698, 29.670930173948662 ], [ -95.50304003394875, 29.670928174162444 ], [ -95.502466033453501, 29.670941174740467 ], [ -95.50247103368919, 29.671852174459321 ], [ -95.502487033662788, 29.672587174330939 ], [ -95.502504033441497, 29.673414174530699 ], [ -95.499825033044402, 29.673451174512479 ], [ -95.497149032077161, 29.673475174985242 ], [ -95.497137032462504, 29.672666174626791 ], [ -95.495778032013988, 29.672682174927814 ], [ -95.494854031418399, 29.672684174557695 ], [ -95.493787031287454, 29.672688174584422 ], [ -95.492642031338875, 29.672707174839285 ], [ -95.49302103099653, 29.673402175027338 ], [ -95.493203031017572, 29.673752174869772 ], [ -95.493438030645692, 29.674357175189144 ], [ -95.493654030749966, 29.675183175151208 ], [ -95.493704031778336, 29.676027175259449 ], [ -95.493604031383356, 29.677127176020349 ], [ -95.493377031139644, 29.677698176063686 ], [ -95.493282031146279, 29.677963175957526 ], [ -95.493227031394611, 29.678105175788996 ], [ -95.49319903167364, 29.678176175692371 ], [ -95.493368031735258, 29.678240176538427 ], [ -95.493999031189716, 29.678402176403445 ], [ -95.494848031417803, 29.678514175856986 ], [ -95.495632032026379, 29.678532176472352 ], [ -95.496322032029582, 29.678460175728205 ], [ -95.498131032189292, 29.67816017601881 ], [ -95.498573032118884, 29.678087176012422 ], [ -95.498739032573923, 29.678059175893065 ], [ -95.49890603232673, 29.678032175667138 ], [ -95.500818033595095, 29.677714176152538 ], [ -95.50171303360554, 29.677565176049555 ], [ -95.502860033548473, 29.677376175532164 ], [ -95.503845033534972, 29.677124175874479 ], [ -95.505202034552681, 29.676574175655567 ], [ -95.505932034340773, 29.676327174876658 ], [ -95.506823034452907, 29.676203175627744 ], [ -95.508648034872238, 29.676177174770057 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 869, "Tract": "48201542901", "Area_SqMi": 2.1840941233956741, "total_2009": 52, "total_2010": 44, "total_2011": 43, "total_2012": 60, "total_2013": 65, "total_2014": 84, "total_2015": 102, "total_2016": 404, "total_2017": 532, "total_2018": 551, "total_2019": 862, "total_2020": 1542, "age1": 755, "age2": 1096, "age3": 402, "earn1": 533, "earn2": 683, "earn3": 1037, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 264, "naics_s05": 35, "naics_s06": 23, "naics_s07": 583, "naics_s08": 3, "naics_s09": 36, "naics_s10": 65, "naics_s11": 3, "naics_s12": 530, "naics_s13": 0, "naics_s14": 57, "naics_s15": 37, "naics_s16": 89, "naics_s17": 19, "naics_s18": 381, "naics_s19": 128, "naics_s20": 0, "race1": 1672, "race2": 314, "race3": 15, "race4": 204, "race5": 2, "race6": 46, "ethnicity1": 1594, "ethnicity2": 659, "edu1": 283, "edu2": 380, "edu3": 458, "edu4": 377, "Shape_Length": 35066.958511725999, "Shape_Area": 60888806.045819931, "total_2021": 1531, "total_2022": 2253 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.775640109292382, 29.80197219216026 ], [ -95.775646109325109, 29.801938191574575 ], [ -95.775449108421242, 29.801938191731502 ], [ -95.775337109060871, 29.801939191966429 ], [ -95.774895108543518, 29.801945191911614 ], [ -95.774686108993421, 29.801942191895119 ], [ -95.774608108196219, 29.801943191752642 ], [ -95.774593108786092, 29.801943191903604 ], [ -95.773673108241695, 29.801950191643975 ], [ -95.77360010788361, 29.801951192118405 ], [ -95.773310108359581, 29.801956192203185 ], [ -95.771128107981838, 29.801970192281821 ], [ -95.769412106795386, 29.801982191810541 ], [ -95.768940107139372, 29.801985191901956 ], [ -95.76611010622743, 29.802004192253783 ], [ -95.764647105896103, 29.802014191771494 ], [ -95.763903105527049, 29.802017191943811 ], [ -95.762044105440694, 29.802024192152579 ], [ -95.761714104960888, 29.802018192466761 ], [ -95.761445105505032, 29.801997191957817 ], [ -95.761058105365237, 29.802001192339446 ], [ -95.76062410499901, 29.802027192325777 ], [ -95.76025310525354, 29.802029192430584 ], [ -95.760181104708735, 29.802035191936973 ], [ -95.760092104977304, 29.802030192561997 ], [ -95.76000910472824, 29.802036192397651 ], [ -95.759917104706304, 29.802037191964775 ], [ -95.759828104838249, 29.80204519208732 ], [ -95.759726104901347, 29.802043192487407 ], [ -95.759217104338205, 29.802048191971007 ], [ -95.759107104211893, 29.802044192465459 ], [ -95.759005104738691, 29.80204719255153 ], [ -95.757144104405342, 29.802058192203337 ], [ -95.756991104067438, 29.802061192678917 ], [ -95.756770103989822, 29.80207119272265 ], [ -95.756649103935089, 29.802066192199888 ], [ -95.756532104007505, 29.802066191998826 ], [ -95.755142103834771, 29.80207619238282 ], [ -95.754731103530673, 29.802079192864504 ], [ -95.754010103367449, 29.802084192302818 ], [ -95.753800103614154, 29.802086192599322 ], [ -95.753417102729983, 29.802089192824781 ], [ -95.753328102786256, 29.802091192881171 ], [ -95.75290610258682, 29.80210319256226 ], [ -95.752614102520226, 29.802102192155342 ], [ -95.752010102735269, 29.802102192367105 ], [ -95.752011102621907, 29.802139193035512 ], [ -95.752021102846584, 29.802676193006121 ], [ -95.752024103077858, 29.802807192317093 ], [ -95.752031103068276, 29.803244192510483 ], [ -95.752001103303897, 29.803594193008287 ], [ -95.751998102931225, 29.803787193257886 ], [ -95.751996102661991, 29.803923192550393 ], [ -95.752022103448283, 29.805613193699436 ], [ -95.752034102782758, 29.806408193616939 ], [ -95.752043102648486, 29.806949193212489 ], [ -95.752086103557559, 29.809415194064648 ], [ -95.752089103345966, 29.809552194264004 ], [ -95.752097103408232, 29.810059193798075 ], [ -95.752110103758923, 29.810774194432266 ], [ -95.752119103135882, 29.811332194035465 ], [ -95.752149103264216, 29.813033194855496 ], [ -95.752159103613295, 29.813581195326268 ], [ -95.752198103495658, 29.816083195044637 ], [ -95.752221103393325, 29.816864195647344 ], [ -95.752237103566131, 29.817220195582475 ], [ -95.752247103632541, 29.817312195255553 ], [ -95.7522691033016, 29.817522195370433 ], [ -95.752273104070341, 29.817876196019558 ], [ -95.752281103214912, 29.817940195679416 ], [ -95.752275104115284, 29.817989195916166 ], [ -95.752276104081204, 29.818101195912678 ], [ -95.752263103417647, 29.818161195792086 ], [ -95.752278103330283, 29.818215195823665 ], [ -95.752285103177542, 29.818629195710546 ], [ -95.752302103961384, 29.819004196090198 ], [ -95.752324103694562, 29.819181195621965 ], [ -95.752328104139096, 29.819350195687075 ], [ -95.752374103948682, 29.819439196139392 ], [ -95.75235310410666, 29.819525196477322 ], [ -95.752373104195527, 29.819706196438077 ], [ -95.75241310383683, 29.819985196513777 ], [ -95.752412103388892, 29.820080196029927 ], [ -95.752424103379241, 29.820171196162761 ], [ -95.752509103953273, 29.820654195987782 ], [ -95.752607103585575, 29.821132196195574 ], [ -95.752723104014905, 29.821601196781316 ], [ -95.752911103715277, 29.822266196747439 ], [ -95.753131103642943, 29.822996196614248 ], [ -95.753325103697208, 29.823652197024476 ], [ -95.753379104646768, 29.823814196811082 ], [ -95.753569104541953, 29.824455196665067 ], [ -95.753596104734385, 29.824546196870539 ], [ -95.75362110414278, 29.82465419713111 ], [ -95.753670103825542, 29.824784197138754 ], [ -95.753704104217647, 29.824907197452827 ], [ -95.753843104831532, 29.825401197227762 ], [ -95.753979104210572, 29.825967197295707 ], [ -95.754036104305371, 29.826267197877485 ], [ -95.754057104094912, 29.82638019702647 ], [ -95.754094104370594, 29.826574197603858 ], [ -95.754186104995981, 29.827184197953294 ], [ -95.754211104740477, 29.827412198083014 ], [ -95.754228104175624, 29.827554198010642 ], [ -95.754272104289001, 29.828145198000218 ], [ -95.754278104692105, 29.828296198256194 ], [ -95.754289105090962, 29.828600198073751 ], [ -95.754293104425159, 29.829186197917789 ], [ -95.754295105129842, 29.829333197737295 ], [ -95.754313104217729, 29.830302198654181 ], [ -95.754317105216032, 29.83067219830313 ], [ -95.754326104339185, 29.831421198475443 ], [ -95.75432210450532, 29.831561198915558 ], [ -95.754321104390897, 29.831581198916666 ], [ -95.754318105165353, 29.83167019821472 ], [ -95.754134105063898, 29.831672198877918 ], [ -95.752917104327338, 29.831684198911208 ], [ -95.752245104101405, 29.831691198975886 ], [ -95.752251103952688, 29.831731198667047 ], [ -95.752421103971358, 29.831802198216959 ], [ -95.75246510472553, 29.831844198541091 ], [ -95.752585104125629, 29.831956198856872 ], [ -95.752693104034023, 29.831963198802939 ], [ -95.752844103985865, 29.831973198440515 ], [ -95.752844104621516, 29.832028198699938 ], [ -95.753014104943034, 29.832088198873286 ], [ -95.753178104471502, 29.832281198368587 ], [ -95.75325310416973, 29.832391198733323 ], [ -95.753253104884593, 29.83242419907025 ], [ -95.753171104156152, 29.832748198701449 ], [ -95.753228104562695, 29.832919198742829 ], [ -95.753272104856364, 29.832990198923547 ], [ -95.753366104303637, 29.83308419919236 ], [ -95.753379104926225, 29.833138199126505 ], [ -95.753379104624472, 29.833303198866723 ], [ -95.753429104755313, 29.833551199098146 ], [ -95.753530104428719, 29.83362219907136 ], [ -95.753650104887271, 29.833666198543003 ], [ -95.753845104287521, 29.833655199030208 ], [ -95.753971104842009, 29.833628199158092 ], [ -95.75413510501572, 29.83354619901727 ], [ -95.754236104771707, 29.833430198850756 ], [ -95.754299105189972, 29.833276199039407 ], [ -95.754394104603904, 29.833144199158259 ], [ -95.754489105076559, 29.833111199243895 ], [ -95.754596104533078, 29.832985198336786 ], [ -95.754772105244982, 29.832952199027726 ], [ -95.754873105335392, 29.832947198842465 ], [ -95.755037105238713, 29.83296319848478 ], [ -95.755207104666511, 29.833013199017547 ], [ -95.75534010504424, 29.83307319892889 ], [ -95.755441104822481, 29.833161198974807 ], [ -95.755554105121433, 29.833321198552515 ], [ -95.755793105570788, 29.83359019864222 ], [ -95.756052105048681, 29.833739198456225 ], [ -95.756033105342283, 29.833821198497478 ], [ -95.756090105715316, 29.83387619928903 ], [ -95.75612710579378, 29.833876198961992 ], [ -95.756348105297462, 29.833827198796321 ], [ -95.756783105627079, 29.833755198738693 ], [ -95.75721810526818, 29.833849198677704 ], [ -95.757432105535912, 29.833849198915967 ], [ -95.75748910564478, 29.833904199087531 ], [ -95.757729105840539, 29.833954199292336 ], [ -95.758208105765505, 29.834025198455361 ], [ -95.758548105531375, 29.833954198596672 ], [ -95.758674105856301, 29.833877198878017 ], [ -95.758701106055014, 29.833867198575685 ], [ -95.758838105862736, 29.833817199262807 ], [ -95.758876106122869, 29.833734198663738 ], [ -95.758895106100425, 29.833591198832373 ], [ -95.758933106088563, 29.833525198809085 ], [ -95.759015106242956, 29.8334811988334 ], [ -95.759255106149183, 29.833476198885606 ], [ -95.759475105787871, 29.833624198959267 ], [ -95.759563105865382, 29.833669198748677 ], [ -95.760869106666874, 29.831804198068358 ], [ -95.760990106613164, 29.831632198442204 ], [ -95.76103110602368, 29.831571198255123 ], [ -95.761056106139932, 29.831534197867139 ], [ -95.764167106762741, 29.826916197353981 ], [ -95.765113106758591, 29.825512197014341 ], [ -95.766010107886387, 29.824232196978532 ], [ -95.768488107948912, 29.820895195595668 ], [ -95.771264108840938, 29.817161194712206 ], [ -95.771310108359899, 29.81709919534374 ], [ -95.771434108709855, 29.816932194737095 ], [ -95.772517109184179, 29.815077194240338 ], [ -95.773418109273322, 29.812937194285581 ], [ -95.773839108527227, 29.811443193652458 ], [ -95.774079108423081, 29.810272193852605 ], [ -95.774227108381154, 29.809491193681183 ], [ -95.774569109155806, 29.807699192604616 ], [ -95.774927108796717, 29.805827192601679 ], [ -95.775168108621358, 29.804543191898908 ], [ -95.775588108935253, 29.802268191851951 ], [ -95.775612109326275, 29.802128192074747 ], [ -95.775630108951376, 29.802025192076204 ], [ -95.775640109292382, 29.80197219216026 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 870, "Tract": "48201330902", "Area_SqMi": 2.1323239066451927, "total_2009": 504, "total_2010": 454, "total_2011": 463, "total_2012": 433, "total_2013": 416, "total_2014": 481, "total_2015": 473, "total_2016": 497, "total_2017": 551, "total_2018": 847, "total_2019": 845, "total_2020": 549, "age1": 112, "age2": 319, "age3": 240, "earn1": 78, "earn2": 207, "earn3": 386, "naics_s01": 2, "naics_s02": 6, "naics_s03": 0, "naics_s04": 179, "naics_s05": 110, "naics_s06": 91, "naics_s07": 25, "naics_s08": 74, "naics_s09": 0, "naics_s10": 11, "naics_s11": 6, "naics_s12": 10, "naics_s13": 0, "naics_s14": 28, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 2, "naics_s19": 120, "naics_s20": 0, "race1": 523, "race2": 87, "race3": 15, "race4": 34, "race5": 1, "race6": 11, "ethnicity1": 378, "ethnicity2": 293, "edu1": 159, "edu2": 144, "edu3": 169, "edu4": 87, "Shape_Length": 33555.916000765465, "Shape_Area": 59445541.008428022, "total_2021": 538, "total_2022": 671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.425276010158896, 29.600005161994776 ], [ -95.425586010886448, 29.599238162248707 ], [ -95.425023010080338, 29.599101162253007 ], [ -95.424938010461247, 29.599095161777655 ], [ -95.424251010304616, 29.599104162420691 ], [ -95.421486009489755, 29.599126162626249 ], [ -95.42129600942269, 29.599127162454806 ], [ -95.420574008994777, 29.599135161910564 ], [ -95.419398008973261, 29.599154161928411 ], [ -95.419019009205769, 29.599154161943499 ], [ -95.418257008775356, 29.599165161971143 ], [ -95.417332008771197, 29.599175162325196 ], [ -95.417116008076732, 29.599178162574649 ], [ -95.416295007655947, 29.599178162525121 ], [ -95.415990007600143, 29.599188162098368 ], [ -95.415100007662289, 29.599194162312845 ], [ -95.4131840074987, 29.599192162866316 ], [ -95.412354007559756, 29.599218163026464 ], [ -95.411521006471688, 29.599225162502513 ], [ -95.411346006540541, 29.599237162640058 ], [ -95.409028006017763, 29.599273162373574 ], [ -95.404848005143165, 29.599321162715501 ], [ -95.400688004018633, 29.599372163232299 ], [ -95.397353002751899, 29.599413163236203 ], [ -95.396569003365428, 29.599428163145127 ], [ -95.395958003015679, 29.599428162966163 ], [ -95.395458003024686, 29.599447162876515 ], [ -95.395235002328178, 29.599447163437762 ], [ -95.392430001493992, 29.599479163180359 ], [ -95.388297000820231, 29.599515163774775 ], [ -95.387958001299054, 29.599512163116763 ], [ -95.387891000486192, 29.599505163557613 ], [ -95.387221000809561, 29.599329163234938 ], [ -95.386850000305031, 29.59929916329336 ], [ -95.386936000915625, 29.602452163696295 ], [ -95.386924001162896, 29.602554164154412 ], [ -95.386978000675583, 29.604150164893955 ], [ -95.38704700099359, 29.607127165529 ], [ -95.387102001006625, 29.609506165948179 ], [ -95.387211001064912, 29.614037166061337 ], [ -95.387628001905441, 29.61403616650399 ], [ -95.388179001479656, 29.614032166168133 ], [ -95.388562001993847, 29.61402616659494 ], [ -95.389630001746823, 29.614016166147625 ], [ -95.390920002450073, 29.613997166273158 ], [ -95.391449002668097, 29.61399016602833 ], [ -95.392728002496114, 29.613974165845931 ], [ -95.39421900282008, 29.613958166358504 ], [ -95.396865003280766, 29.613922166315067 ], [ -95.398138004446309, 29.613908166344146 ], [ -95.401029005185904, 29.613866166090176 ], [ -95.404492006065837, 29.613835166277124 ], [ -95.405183006279955, 29.613825165868249 ], [ -95.406579005984185, 29.613804165465979 ], [ -95.407961006507207, 29.613786166101796 ], [ -95.409297007063131, 29.613769165709286 ], [ -95.409365007111973, 29.613769165336823 ], [ -95.412040007446933, 29.613732165193461 ], [ -95.413380008249931, 29.613714165274967 ], [ -95.413424008173038, 29.613713165636522 ], [ -95.415305008603823, 29.613679165202807 ], [ -95.415577008052836, 29.613679165725333 ], [ -95.417503008854013, 29.613678165185259 ], [ -95.419075009568971, 29.613647165779017 ], [ -95.419249009677458, 29.613642165543769 ], [ -95.419599009866246, 29.613633165737461 ], [ -95.420475009378777, 29.611383165193665 ], [ -95.42095701005681, 29.610144164285089 ], [ -95.421017010207407, 29.609989164446596 ], [ -95.421781010213593, 29.608176164178804 ], [ -95.422413010237449, 29.606351163506929 ], [ -95.422486010060467, 29.60623516378115 ], [ -95.422772009645612, 29.605555163731669 ], [ -95.422976009793999, 29.605073163840611 ], [ -95.423273009951274, 29.604200162933953 ], [ -95.423880010121778, 29.602716162983707 ], [ -95.424218010540216, 29.602090163100012 ], [ -95.424973010743287, 29.600698162311595 ], [ -95.425276010158896, 29.600005161994776 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 871, "Tract": "48201542902", "Area_SqMi": 18.974854749854746, "total_2009": 1378, "total_2010": 1096, "total_2011": 1151, "total_2012": 1505, "total_2013": 1342, "total_2014": 1575, "total_2015": 1833, "total_2016": 1698, "total_2017": 1839, "total_2018": 2585, "total_2019": 3559, "total_2020": 3018, "age1": 1526, "age2": 2889, "age3": 811, "earn1": 930, "earn2": 1715, "earn3": 2581, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1149, "naics_s05": 508, "naics_s06": 174, "naics_s07": 173, "naics_s08": 1813, "naics_s09": 27, "naics_s10": 17, "naics_s11": 47, "naics_s12": 273, "naics_s13": 4, "naics_s14": 342, "naics_s15": 173, "naics_s16": 128, "naics_s17": 23, "naics_s18": 309, "naics_s19": 59, "naics_s20": 0, "race1": 3604, "race2": 1070, "race3": 52, "race4": 408, "race5": 12, "race6": 80, "ethnicity1": 3322, "ethnicity2": 1904, "edu1": 859, "edu2": 941, "edu3": 1071, "edu4": 829, "Shape_Length": 107966.10696275928, "Shape_Area": 528986474.63747811, "total_2021": 3988, "total_2022": 5226 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.856858133277171, 29.874583204125148 ], [ -95.856844133100608, 29.874536203752715 ], [ -95.856802132841977, 29.874396203529479 ], [ -95.856789133286711, 29.874350204027238 ], [ -95.856760133291573, 29.874254203300975 ], [ -95.855739132560203, 29.871501202806495 ], [ -95.852574131743481, 29.862960201305363 ], [ -95.851519130958295, 29.86011320103848 ], [ -95.851404130566578, 29.859812201352678 ], [ -95.846452128915317, 29.845776197966849 ], [ -95.846366128528658, 29.845531198392695 ], [ -95.846340128633386, 29.845457198133278 ], [ -95.84629412864831, 29.845328198089902 ], [ -95.842861127730572, 29.835950196463834 ], [ -95.842141126944298, 29.833983196284823 ], [ -95.841101126762808, 29.831142195330731 ], [ -95.840187127059167, 29.83113819571151 ], [ -95.840035126103544, 29.831129195186257 ], [ -95.83767812564686, 29.831138195758392 ], [ -95.83684012527398, 29.83113819567405 ], [ -95.835910125783101, 29.831146195866342 ], [ -95.834726125546652, 29.831148195431059 ], [ -95.833077125143646, 29.831160195330689 ], [ -95.831827124465391, 29.831169195636573 ], [ -95.831695124876447, 29.831170195363971 ], [ -95.831541124091302, 29.831172195920793 ], [ -95.831518124033593, 29.831172195820457 ], [ -95.831255124705649, 29.83117619563814 ], [ -95.830875124030612, 29.831181195395768 ], [ -95.830369124475098, 29.831184196181258 ], [ -95.829555124130351, 29.831190196303591 ], [ -95.827320123135948, 29.831213196352792 ], [ -95.825330122562235, 29.831224195563511 ], [ -95.824704122491198, 29.831229196095769 ], [ -95.823482122001053, 29.831227195684377 ], [ -95.822875122383209, 29.831227196303999 ], [ -95.815239120202577, 29.831273196382977 ], [ -95.806840118022706, 29.831370196851577 ], [ -95.806807117790584, 29.83135219673521 ], [ -95.806759118168728, 29.831353196420352 ], [ -95.806709117890009, 29.831126196945895 ], [ -95.806714118340579, 29.824796195194192 ], [ -95.806714118239711, 29.824385195006194 ], [ -95.806715117618225, 29.824160195604865 ], [ -95.806718117838756, 29.821770194608668 ], [ -95.806725117114723, 29.818538193661421 ], [ -95.806725117892896, 29.817027193427954 ], [ -95.806725117127755, 29.816949193849506 ], [ -95.806725117815859, 29.816908193575635 ], [ -95.806725117216445, 29.816864194085849 ], [ -95.807821117552322, 29.816857193433115 ], [ -95.80913011791813, 29.816850193255949 ], [ -95.809062118391168, 29.814748193022396 ], [ -95.809076118182219, 29.814565193228411 ], [ -95.809075117571012, 29.813975192722094 ], [ -95.809076118215941, 29.813336193162044 ], [ -95.809075117411851, 29.813155192860659 ], [ -95.80907511757286, 29.813108193274942 ], [ -95.809061117469923, 29.812902192418299 ], [ -95.809069117517495, 29.812697192590257 ], [ -95.809066117752707, 29.812278192620976 ], [ -95.809069118252182, 29.812046192998942 ], [ -95.80907011804878, 29.811966192731745 ], [ -95.809067117858135, 29.811919193023932 ], [ -95.809068117922109, 29.811657192699879 ], [ -95.809062117905114, 29.811242192617879 ], [ -95.80904711789853, 29.811088192883165 ], [ -95.809059117791492, 29.811035192569861 ], [ -95.809052117661778, 29.809869192608222 ], [ -95.809035118104617, 29.806619191371595 ], [ -95.809030117948666, 29.805289191617643 ], [ -95.809028117358096, 29.804466191572622 ], [ -95.809034117725687, 29.804264190683973 ], [ -95.809024117601552, 29.804075191145301 ], [ -95.809010116902215, 29.801689190509713 ], [ -95.809010117053873, 29.801659190423802 ], [ -95.80799211736641, 29.801674190648708 ], [ -95.805642116591429, 29.801691190712486 ], [ -95.804233116103404, 29.801706190299896 ], [ -95.803008115406115, 29.801713190850148 ], [ -95.801843115131888, 29.801721191004951 ], [ -95.801738115347689, 29.801720190653757 ], [ -95.801639115034249, 29.801721190818228 ], [ -95.801404115469538, 29.801728191041725 ], [ -95.801045115478203, 29.80172619119443 ], [ -95.800998115197586, 29.801726190645358 ], [ -95.799499114558316, 29.801743190677477 ], [ -95.799411115419389, 29.80174519102988 ], [ -95.799116114579959, 29.801745190479796 ], [ -95.797463114454715, 29.801760191153573 ], [ -95.793215113071398, 29.801789190934176 ], [ -95.792959113565971, 29.801784190772757 ], [ -95.789174112082421, 29.801823191029367 ], [ -95.787112112149501, 29.801842191598762 ], [ -95.785596111548486, 29.801856191068694 ], [ -95.784067110984736, 29.801870191896576 ], [ -95.780484110219504, 29.801894191634531 ], [ -95.779166109602684, 29.801905191631299 ], [ -95.778993110099407, 29.801906191516142 ], [ -95.778608109424212, 29.801909191240622 ], [ -95.778053109417641, 29.801922191498623 ], [ -95.777580109424449, 29.801927191710423 ], [ -95.776595109450682, 29.80192919135914 ], [ -95.776073109055631, 29.801936191407105 ], [ -95.776039108707224, 29.801930192134186 ], [ -95.775921108913522, 29.801937191404487 ], [ -95.775646109325109, 29.801938191574575 ], [ -95.775640109292382, 29.80197219216026 ], [ -95.775630108951376, 29.802025192076204 ], [ -95.775612109326275, 29.802128192074747 ], [ -95.775588108935253, 29.802268191851951 ], [ -95.775168108621358, 29.804543191898908 ], [ -95.774927108796717, 29.805827192601679 ], [ -95.774569109155806, 29.807699192604616 ], [ -95.774227108381154, 29.809491193681183 ], [ -95.774079108423081, 29.810272193852605 ], [ -95.773839108527227, 29.811443193652458 ], [ -95.773418109273322, 29.812937194285581 ], [ -95.772517109184179, 29.815077194240338 ], [ -95.771434108709855, 29.816932194737095 ], [ -95.771310108359899, 29.81709919534374 ], [ -95.771264108840938, 29.817161194712206 ], [ -95.768488107948912, 29.820895195595668 ], [ -95.766010107886387, 29.824232196978532 ], [ -95.765113106758591, 29.825512197014341 ], [ -95.764167106762741, 29.826916197353981 ], [ -95.761056106139932, 29.831534197867139 ], [ -95.76103110602368, 29.831571198255123 ], [ -95.760990106613164, 29.831632198442204 ], [ -95.760869106666874, 29.831804198068358 ], [ -95.759563105865382, 29.833669198748677 ], [ -95.75965810618267, 29.833718198986979 ], [ -95.759710106543523, 29.833760198769927 ], [ -95.760087105852534, 29.834070198914745 ], [ -95.760194106816684, 29.834246198876219 ], [ -95.760200106439811, 29.834482198597215 ], [ -95.760187106520917, 29.834603199218531 ], [ -95.7599031064332, 29.834762199162977 ], [ -95.75962610663457, 29.834894198853217 ], [ -95.759601105780547, 29.834933199021126 ], [ -95.759569106252471, 29.8350211987492 ], [ -95.759550106279463, 29.835114198667082 ], [ -95.759563106225485, 29.835202199046545 ], [ -95.759601106668455, 29.835229199391623 ], [ -95.759664105812618, 29.835230199048496 ], [ -95.759682106259206, 29.835285199052326 ], [ -95.759657106208266, 29.835565199462 ], [ -95.759613106719016, 29.83570219884545 ], [ -95.759487105963657, 29.835834199524317 ], [ -95.75941710619351, 29.835884199362585 ], [ -95.759317105887831, 29.835938199097427 ], [ -95.759285105798284, 29.835971199540168 ], [ -95.759272106645057, 29.836109198848582 ], [ -95.759203106215637, 29.836175198910187 ], [ -95.759165106700095, 29.836235199683706 ], [ -95.759165106161376, 29.836323199092913 ], [ -95.759190106629106, 29.836395199213229 ], [ -95.759209106278703, 29.836582199064765 ], [ -95.759329105901728, 29.83686219953761 ], [ -95.759594106616134, 29.836906198989471 ], [ -95.759959106387683, 29.837044199173107 ], [ -95.760016106744672, 29.837120199764076 ], [ -95.760022106463197, 29.837384199342498 ], [ -95.759965106140911, 29.837467199647303 ], [ -95.759902106743581, 29.83752719952092 ], [ -95.759852105979988, 29.837615199377833 ], [ -95.75965010637394, 29.837791199472687 ], [ -95.759372106363756, 29.838126199485199 ], [ -95.759202106245496, 29.83835719962142 ], [ -95.759139106680919, 29.838406199671127 ], [ -95.75907610595533, 29.838434199856252 ], [ -95.759032106297923, 29.838494199981497 ], [ -95.759000105826374, 29.838626200078892 ], [ -95.758931106327509, 29.838698200220591 ], [ -95.758918106577951, 29.838802200043585 ], [ -95.758918106634809, 29.838945199452859 ], [ -95.75896810603605, 29.839011199685764 ], [ -95.759271106386535, 29.839198200328831 ], [ -95.759359106322478, 29.839220200190066 ], [ -95.759611106574866, 29.839248199743317 ], [ -95.759882106609012, 29.839248200226798 ], [ -95.759990106485134, 29.8392591996314 ], [ -95.760349106504833, 29.839490200085191 ], [ -95.760632106669547, 29.839770200339949 ], [ -95.760733106468905, 29.839836199738702 ], [ -95.760841107207739, 29.839864199922896 ], [ -95.760979107131661, 29.839864199779015 ], [ -95.761225107185282, 29.84002920024037 ], [ -95.76164110721534, 29.840392199676479 ], [ -95.761868106666938, 29.840463200028626 ], [ -95.762038107194712, 29.840573199700554 ], [ -95.76220810701156, 29.840749200362271 ], [ -95.762347106983995, 29.840974200411072 ], [ -95.762423107218822, 29.841068200551668 ], [ -95.762561107512781, 29.84116720013084 ], [ -95.762864107216103, 29.841348200136544 ], [ -95.762933107662789, 29.841442200684231 ], [ -95.762946107811089, 29.841541199930163 ], [ -95.76292710739726, 29.841898200383703 ], [ -95.762895107370085, 29.8420412006354 ], [ -95.762857107342967, 29.842124200359329 ], [ -95.762712107766717, 29.842272200719002 ], [ -95.76261110749796, 29.842349200266248 ], [ -95.762359106898501, 29.842514200079542 ], [ -95.76233410702477, 29.842596200271664 ], [ -95.762334107123593, 29.842684200362072 ], [ -95.76239710769832, 29.842788200118434 ], [ -95.76245310738463, 29.842816200818813 ], [ -95.762542107231639, 29.842904200333397 ], [ -95.762586107544763, 29.843030200525778 ], [ -95.762642107855555, 29.843140201035705 ], [ -95.762699107049016, 29.843184200983348 ], [ -95.762901107297253, 29.8431792009549 ], [ -95.763040107243199, 29.843135200577265 ], [ -95.763134107115846, 29.8430912006746 ], [ -95.763298107284356, 29.842926200306504 ], [ -95.76350010771452, 29.842899200507219 ], [ -95.763702107260912, 29.842954200248837 ], [ -95.764174107790879, 29.843328200555941 ], [ -95.764351108183163, 29.843504200986072 ], [ -95.764508108318935, 29.843680200630015 ], [ -95.764609107608976, 29.843806200523446 ], [ -95.764628108444541, 29.843982200406128 ], [ -95.76469710759487, 29.844092200349557 ], [ -95.764943108041095, 29.844312200498692 ], [ -95.765441108200619, 29.84464220076746 ], [ -95.765706108671935, 29.844840201178343 ], [ -95.765801108261812, 29.844845200642879 ], [ -95.765901107811544, 29.844840201168065 ], [ -95.766173108184759, 29.84479020036559 ], [ -95.766463108035936, 29.844659200919018 ], [ -95.766538108690369, 29.844659200413474 ], [ -95.766639108695458, 29.844675200777303 ], [ -95.766791108929766, 29.844785200480594 ], [ -95.767024108839678, 29.844917200983712 ], [ -95.767402108612131, 29.845060200733421 ], [ -95.767515108312011, 29.845198200850248 ], [ -95.767585109012657, 29.845307200717727 ], [ -95.767705108896806, 29.845434201161808 ], [ -95.76825310913182, 29.845753201123376 ], [ -95.768637108876348, 29.846022201093543 ], [ -95.768757109564504, 29.846143201263775 ], [ -95.768801109367743, 29.846187201184719 ], [ -95.768959109649444, 29.846297201120585 ], [ -95.769104108808961, 29.846363201383369 ], [ -95.769419109010428, 29.846457201446562 ], [ -95.769495109064749, 29.846545200599731 ], [ -95.76955810985676, 29.846765200886686 ], [ -95.769570109276913, 29.846979200923922 ], [ -95.769513109761334, 29.847303201084543 ], [ -95.769564109149755, 29.84741920078979 ], [ -95.769658109039071, 29.847545201201832 ], [ -95.769728109885875, 29.847578201226586 ], [ -95.770106109085063, 29.847567201160317 ], [ -95.770308109319714, 29.84754520103543 ], [ -95.770352109207067, 29.847490201201495 ], [ -95.770421109969888, 29.847457201080399 ], [ -95.770503110118156, 29.847479201406056 ], [ -95.770541109692118, 29.847501200915701 ], [ -95.770573109984568, 29.847567201616478 ], [ -95.77057910971736, 29.84765520145309 ], [ -95.770566109625051, 29.848024201205838 ], [ -95.770604109980582, 29.848392201405574 ], [ -95.770724109226592, 29.848595200961213 ], [ -95.771323110364818, 29.848903201124884 ], [ -95.771329110358806, 29.848985201617037 ], [ -95.77132211000206, 29.849041201625369 ], [ -95.771190110227721, 29.849217201369772 ], [ -95.771051110285015, 29.849563201420587 ], [ -95.770944109462505, 29.849755202088819 ], [ -95.770824109922088, 29.850046202014838 ], [ -95.770837109661258, 29.850178201822107 ], [ -95.770881110009199, 29.850217201721261 ], [ -95.770874109745165, 29.85029920150513 ], [ -95.770874109542746, 29.850371201667055 ], [ -95.770914109542176, 29.850418202032994 ], [ -95.770944110266981, 29.850453201406658 ], [ -95.771076109437658, 29.850497201601435 ], [ -95.771297109850735, 29.850492201951283 ], [ -95.771442110494007, 29.850497201408899 ], [ -95.771555110412649, 29.850547201549475 ], [ -95.771681109635509, 29.850519201881234 ], [ -95.771845110144511, 29.850448202168646 ], [ -95.771972109851774, 29.850448201798073 ], [ -95.772028110134201, 29.850520202183823 ], [ -95.772487110205304, 29.850933201933163 ], [ -95.772577110294151, 29.851014201827091 ], [ -95.772785110561742, 29.851119202106773 ], [ -95.772930110106429, 29.851179202273869 ], [ -95.773100110255001, 29.851152202149791 ], [ -95.77327011005714, 29.851141202229051 ], [ -95.773466110038612, 29.851163202055442 ], [ -95.773661111040923, 29.851218201903134 ], [ -95.773665110947903, 29.851793202265686 ], [ -95.773685110748431, 29.853418202150259 ], [ -95.773690110673442, 29.854046202254441 ], [ -95.773701110652624, 29.85527120280311 ], [ -95.773715111353098, 29.856615203093817 ], [ -95.773716110781208, 29.857283202998367 ], [ -95.773748111459398, 29.86063620399279 ], [ -95.773778111276158, 29.865523204548772 ], [ -95.773789111570721, 29.867249205129898 ], [ -95.773792111660342, 29.867703204850738 ], [ -95.773800111391807, 29.867942205564404 ], [ -95.773793111699916, 29.868128205433038 ], [ -95.773811111357347, 29.870269205449215 ], [ -95.773834112018136, 29.873937206132275 ], [ -95.773836111445505, 29.874184206630261 ], [ -95.773842111454371, 29.875160207093124 ], [ -95.782094114203545, 29.87510820684523 ], [ -95.782312113952514, 29.875107206171215 ], [ -95.783497114556511, 29.875099206164261 ], [ -95.790598116118332, 29.875056206219696 ], [ -95.796473116976188, 29.875010206128383 ], [ -95.806957120467345, 29.874929205426611 ], [ -95.807073119680581, 29.874928205309494 ], [ -95.807212120656743, 29.874927205559608 ], [ -95.80724312038754, 29.874927205924305 ], [ -95.807279120307243, 29.874926205226892 ], [ -95.807434120314014, 29.8749252051174 ], [ -95.81568712225058, 29.874853205128108 ], [ -95.823925124563971, 29.874796204783461 ], [ -95.84062812824763, 29.874675203953736 ], [ -95.841659129002807, 29.874678203860768 ], [ -95.856232132887783, 29.874578203592112 ], [ -95.856858133277171, 29.874583204125148 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 872, "Tract": "48201542303", "Area_SqMi": 0.52615313968814936, "total_2009": 30, "total_2010": 47, "total_2011": 501, "total_2012": 335, "total_2013": 344, "total_2014": 446, "total_2015": 432, "total_2016": 173, "total_2017": 184, "total_2018": 226, "total_2019": 151, "total_2020": 177, "age1": 73, "age2": 178, "age3": 67, "earn1": 75, "earn2": 66, "earn3": 177, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 16, "naics_s06": 2, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 24, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 3, "naics_s17": 0, "naics_s18": 23, "naics_s19": 0, "naics_s20": 223, "race1": 254, "race2": 39, "race3": 3, "race4": 15, "race5": 2, "race6": 5, "ethnicity1": 240, "ethnicity2": 78, "edu1": 41, "edu2": 59, "edu3": 95, "edu4": 50, "Shape_Length": 19850.928503920863, "Shape_Area": 14668249.014407098, "total_2021": 109, "total_2022": 318 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.7410771004145, 29.817068195995777 ], [ -95.740974100790751, 29.81698719619564 ], [ -95.740886100595219, 29.816894195732605 ], [ -95.740833100973617, 29.816852196245232 ], [ -95.740735100161714, 29.816773195998341 ], [ -95.740539100192919, 29.816652196068208 ], [ -95.740426100820812, 29.816525196158853 ], [ -95.740066100320774, 29.816196195637787 ], [ -95.740066100342261, 29.816141195868365 ], [ -95.740016100131541, 29.816064196076251 ], [ -95.739814100787768, 29.815910195668813 ], [ -95.739511099924272, 29.81569019535107 ], [ -95.738685099807796, 29.815180195904556 ], [ -95.738508100155727, 29.815031196095887 ], [ -95.738300099526626, 29.814949195885838 ], [ -95.737802100174918, 29.814608195876552 ], [ -95.737670099632979, 29.814482195983643 ], [ -95.737619100159563, 29.814405195251609 ], [ -95.737109099316868, 29.814048195770173 ], [ -95.736951100016711, 29.813883195092483 ], [ -95.736598099431205, 29.813471195748498 ], [ -95.736535099497956, 29.813355195774641 ], [ -95.736408099205804, 29.813312195552435 ], [ -95.736289098986489, 29.813097195060113 ], [ -95.736232099269543, 29.813020195687276 ], [ -95.736181099513473, 29.81297119563791 ], [ -95.736118099015741, 29.81294919531971 ], [ -95.735961099618507, 29.812927195523493 ], [ -95.735570098783825, 29.812641195525458 ], [ -95.735122099477664, 29.8122281956888 ], [ -95.735034099005659, 29.812147195197447 ], [ -95.734832099056561, 29.81185619554844 ], [ -95.734725098432477, 29.811559194759798 ], [ -95.734687098401224, 29.811493194878668 ], [ -95.734453098893042, 29.811086194879987 ], [ -95.734376098934078, 29.810884195182108 ], [ -95.734365098673862, 29.810855194819883 ], [ -95.734100098578011, 29.810086195008203 ], [ -95.733974098137566, 29.809910194898134 ], [ -95.733848098621735, 29.809844194583881 ], [ -95.733791098177164, 29.809844195014257 ], [ -95.73364209832819, 29.809828194378827 ], [ -95.733287097955383, 29.809789195185406 ], [ -95.73296509880872, 29.809707194747631 ], [ -95.732833097977419, 29.809630194698759 ], [ -95.732814098708374, 29.809542194945895 ], [ -95.732839098576619, 29.809454195158708 ], [ -95.732839098358824, 29.809399195178536 ], [ -95.732807098687729, 29.809251194286826 ], [ -95.732738098528117, 29.809130194673532 ], [ -95.732706098604723, 29.808971195001046 ], [ -95.732568098648045, 29.808877194732673 ], [ -95.732277098045088, 29.808751194907032 ], [ -95.732065098227594, 29.808698194895424 ], [ -95.731950098105941, 29.808707194640078 ], [ -95.731736097692377, 29.808746194994765 ], [ -95.731666097733822, 29.80881119490672 ], [ -95.731597098117149, 29.808899195030136 ], [ -95.731591097536125, 29.809042194777568 ], [ -95.731540098096175, 29.809147194970357 ], [ -95.731452098295051, 29.809229194539157 ], [ -95.731408097975091, 29.809257194555666 ], [ -95.7313200979643, 29.80926219476143 ], [ -95.731249097445001, 29.809241194718137 ], [ -95.731194097440167, 29.809224195038642 ], [ -95.731061098110189, 29.809120194588328 ], [ -95.730847097366194, 29.808872194714951 ], [ -95.730784097474483, 29.808614194555343 ], [ -95.730657098036644, 29.808262194981513 ], [ -95.730550097543443, 29.807795194334741 ], [ -95.730481097401793, 29.807647194780724 ], [ -95.730405097929534, 29.807542194507207 ], [ -95.730279097417508, 29.807482194551618 ], [ -95.730146097322148, 29.807460194436757 ], [ -95.730058097673279, 29.807460194441994 ], [ -95.729819097120966, 29.807504194136342 ], [ -95.729705097753637, 29.807603194673664 ], [ -95.729639097292889, 29.807668194546 ], [ -95.72956709726175, 29.807740194600857 ], [ -95.729491097122562, 29.807817194765498 ], [ -95.729296097187898, 29.808037194442321 ], [ -95.72910709771277, 29.808191194328639 ], [ -95.729031097633651, 29.808202194548372 ], [ -95.728886097576463, 29.808147194822112 ], [ -95.72874709718559, 29.808054195008758 ], [ -95.728615097401857, 29.807933194774545 ], [ -95.728451096752764, 29.807653194356519 ], [ -95.728293096989262, 29.807554194925594 ], [ -95.72811709677859, 29.807477194860063 ], [ -95.72756209680405, 29.807395194312001 ], [ -95.727436096703485, 29.807362194820879 ], [ -95.727342097136045, 29.807312194778483 ], [ -95.727310097126519, 29.807213194752279 ], [ -95.727304096465417, 29.806895194579791 ], [ -95.72729109643268, 29.806834194546227 ], [ -95.727133096559953, 29.806620194122246 ], [ -95.727007097189826, 29.806411194255478 ], [ -95.726610097011545, 29.806043194403472 ], [ -95.726358096401626, 29.805895194583091 ], [ -95.726131096192418, 29.805785193886425 ], [ -95.725721096217498, 29.805730194062953 ], [ -95.725469096471514, 29.805653194391859 ], [ -95.725280096076432, 29.805565194546869 ], [ -95.725185096280654, 29.805455194244015 ], [ -95.725129095945789, 29.805422193796712 ], [ -95.724939096370903, 29.805367194218427 ], [ -95.724630095616078, 29.805351194467889 ], [ -95.724549095859516, 29.805323194301721 ], [ -95.724309095480393, 29.805153194605417 ], [ -95.724202095456789, 29.805109194414893 ], [ -95.723994095436055, 29.805082193742766 ], [ -95.72371009613245, 29.805021193902565 ], [ -95.723496095477472, 29.804879194125984 ], [ -95.723382095768429, 29.804818193690846 ], [ -95.722947095446841, 29.804780194266769 ], [ -95.722317095061371, 29.804697193789632 ], [ -95.722122095423941, 29.804659194247197 ], [ -95.722040095040825, 29.804599194354921 ], [ -95.721996094814457, 29.804615194314927 ], [ -95.721788095568485, 29.80467619394399 ], [ -95.72152909535393, 29.804681194061921 ], [ -95.721359095298098, 29.804643194615696 ], [ -95.721321095650751, 29.80462619404512 ], [ -95.721264094846219, 29.804626194486275 ], [ -95.721069094839336, 29.804670194126174 ], [ -95.72078509536297, 29.804714194483296 ], [ -95.720678095085745, 29.80467119418136 ], [ -95.720565094530656, 29.804588193812947 ], [ -95.720434095264167, 29.804592194516839 ], [ -95.720388094399766, 29.804594193911154 ], [ -95.720265095038513, 29.804648194246905 ], [ -95.720285095239319, 29.804743193972982 ], [ -95.720327095242112, 29.804945194220892 ], [ -95.720363095266237, 29.805182193928363 ], [ -95.720388094626387, 29.805427194790113 ], [ -95.7204010946392, 29.805680194043582 ], [ -95.720408094800888, 29.806918194924851 ], [ -95.720410095080027, 29.807927194678456 ], [ -95.72039309491069, 29.808315195275849 ], [ -95.720388095151847, 29.808687195218464 ], [ -95.720389094953404, 29.809368195431297 ], [ -95.720393094786004, 29.809822194901411 ], [ -95.720402095026188, 29.810811195213855 ], [ -95.720408094840266, 29.812163195405404 ], [ -95.720411094972917, 29.812708195421934 ], [ -95.720413094857975, 29.813091196074186 ], [ -95.720423094879678, 29.813725195653237 ], [ -95.720452094995508, 29.814277196325577 ], [ -95.72045709487908, 29.814915196315937 ], [ -95.721149095448865, 29.814901196127153 ], [ -95.722949096525227, 29.814877196036043 ], [ -95.724020096260119, 29.814864196139812 ], [ -95.725318096713039, 29.814847196462061 ], [ -95.725581096852494, 29.814840195745941 ], [ -95.725934097273381, 29.814841195820279 ], [ -95.726396096960968, 29.814840196343635 ], [ -95.726730096648254, 29.814837195934523 ], [ -95.727063097450284, 29.814837195728099 ], [ -95.727211097031002, 29.814833196160855 ], [ -95.727455097098229, 29.814831195759243 ], [ -95.727539097599731, 29.814835196467332 ], [ -95.727622097393265, 29.814829195681344 ], [ -95.727895097391297, 29.814830195701049 ], [ -95.728093097235671, 29.814841195840312 ], [ -95.728201097666727, 29.814840195795409 ], [ -95.728364097572381, 29.814849196085326 ], [ -95.728494097181795, 29.814856195963959 ], [ -95.728584097722333, 29.814867195636118 ], [ -95.728669097074899, 29.814882196166405 ], [ -95.729075097754304, 29.814981196039355 ], [ -95.729149097139711, 29.81499119573062 ], [ -95.729257097734163, 29.814999196170174 ], [ -95.729502097952377, 29.815009196249797 ], [ -95.730117098006573, 29.815020196107664 ], [ -95.730958097623358, 29.815038195544975 ], [ -95.7318120981964, 29.815058196215585 ], [ -95.732705098117151, 29.815074195727369 ], [ -95.73309009838043, 29.815100196142609 ], [ -95.733350098376306, 29.815131195519218 ], [ -95.733659099115272, 29.815182195871856 ], [ -95.733924098818662, 29.815238196151743 ], [ -95.734242099067501, 29.815317196351494 ], [ -95.734496099292869, 29.81539119556555 ], [ -95.734684099199796, 29.815453195665363 ], [ -95.734985099628801, 29.815568196007302 ], [ -95.735302099350619, 29.815704196286799 ], [ -95.735515098818738, 29.815807195665286 ], [ -95.735800099584935, 29.815964196411965 ], [ -95.736083099134092, 29.816130196058378 ], [ -95.736382099694325, 29.816251196193292 ], [ -95.737052099773891, 29.816523196063091 ], [ -95.737975100142719, 29.816878196197145 ], [ -95.73926910006584, 29.817074196129685 ], [ -95.739967100865627, 29.817074196368136 ], [ -95.740089099992318, 29.817073195817439 ], [ -95.7410771004145, 29.817068195995777 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 873, "Tract": "48201555404", "Area_SqMi": 2.8440000869875335, "total_2009": 7353, "total_2010": 7731, "total_2011": 7964, "total_2012": 7676, "total_2013": 7732, "total_2014": 7838, "total_2015": 7923, "total_2016": 8413, "total_2017": 8775, "total_2018": 8440, "total_2019": 8664, "total_2020": 8064, "age1": 1699, "age2": 5473, "age3": 2008, "earn1": 1331, "earn2": 2827, "earn3": 5022, "naics_s01": 1, "naics_s02": 39, "naics_s03": 0, "naics_s04": 388, "naics_s05": 269, "naics_s06": 168, "naics_s07": 1195, "naics_s08": 43, "naics_s09": 70, "naics_s10": 81, "naics_s11": 52, "naics_s12": 511, "naics_s13": 3, "naics_s14": 174, "naics_s15": 3236, "naics_s16": 2317, "naics_s17": 6, "naics_s18": 261, "naics_s19": 99, "naics_s20": 267, "race1": 7176, "race2": 1189, "race3": 55, "race4": 610, "race5": 4, "race6": 146, "ethnicity1": 6917, "ethnicity2": 2263, "edu1": 1222, "edu2": 1798, "edu3": 2366, "edu4": 2095, "Shape_Length": 35908.866498624666, "Shape_Area": 79285854.870416492, "total_2021": 8960, "total_2022": 9180 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.632430085111139, 30.089430254861348 ], [ -95.632464085721054, 30.089421254701758 ], [ -95.632258085331983, 30.08858725531076 ], [ -95.632173085128741, 30.088246255195543 ], [ -95.632007084856525, 30.087683254873976 ], [ -95.631852084783603, 30.087017254816853 ], [ -95.631724084648795, 30.086497254547979 ], [ -95.631638085055002, 30.086151254068003 ], [ -95.63148608451165, 30.085508254668568 ], [ -95.631287084538016, 30.084664254458744 ], [ -95.631249085068518, 30.084503253996594 ], [ -95.631215084772478, 30.084362254054358 ], [ -95.631187084540443, 30.084242254216829 ], [ -95.631174085061147, 30.0841982542374 ], [ -95.631098085201302, 30.083949254427736 ], [ -95.631059085027474, 30.083818254373647 ], [ -95.631039085125437, 30.083764254228456 ], [ -95.631005085132259, 30.083675254093791 ], [ -95.630811084883717, 30.083079253885714 ], [ -95.630734084862084, 30.08282425403932 ], [ -95.630662084782514, 30.082549253444867 ], [ -95.630607084228771, 30.082298253297495 ], [ -95.630485084829772, 30.081906253349352 ], [ -95.630258084091537, 30.081322253855962 ], [ -95.630136084967688, 30.081083253352336 ], [ -95.629800084362998, 30.080311253031706 ], [ -95.629717084739127, 30.0801082534296 ], [ -95.629632083884658, 30.079925252870751 ], [ -95.629537084649442, 30.079655253068537 ], [ -95.629452084535714, 30.079456253543047 ], [ -95.629403084378438, 30.079358253206131 ], [ -95.629074083864523, 30.07856525286309 ], [ -95.628930083633819, 30.078208252579895 ], [ -95.628842083953217, 30.078012253043905 ], [ -95.628654084278878, 30.077576253134833 ], [ -95.628413084021105, 30.076988252728679 ], [ -95.628354084157237, 30.076859252460775 ], [ -95.628215083966822, 30.076560252805571 ], [ -95.627628083312203, 30.075318252294299 ], [ -95.627490083724851, 30.075024252267919 ], [ -95.627427083639915, 30.074891252225061 ], [ -95.626264082587184, 30.072714252011451 ], [ -95.626198083301475, 30.072609252256505 ], [ -95.6251830824677, 30.070983252016752 ], [ -95.624995082870626, 30.070651251915645 ], [ -95.624492082477332, 30.069761251196262 ], [ -95.623835082632837, 30.068875251110214 ], [ -95.622901081975257, 30.067312250609447 ], [ -95.622875081780961, 30.067268251291871 ], [ -95.622539081917438, 30.066853250467616 ], [ -95.618704080798125, 30.066880251334794 ], [ -95.616979080386713, 30.066892250728991 ], [ -95.614719079437492, 30.06691225144781 ], [ -95.611663078676628, 30.066941251398347 ], [ -95.611395079071002, 30.066944250888699 ], [ -95.611250078549261, 30.066954251460146 ], [ -95.610731078677091, 30.066965250862722 ], [ -95.610595079250302, 30.066967251216639 ], [ -95.609102078749402, 30.066980251217984 ], [ -95.608812078529525, 30.066982251037015 ], [ -95.608652078073746, 30.066984251308096 ], [ -95.608626078728634, 30.066984251479049 ], [ -95.608482078025176, 30.066987251787168 ], [ -95.606992077405621, 30.06702325155754 ], [ -95.605506077219871, 30.067059251931749 ], [ -95.605461077933555, 30.067031251102861 ], [ -95.60134807624469, 30.067732251499329 ], [ -95.601204076784711, 30.067789251885877 ], [ -95.599344076363124, 30.06810725194422 ], [ -95.598640075848948, 30.068227252163165 ], [ -95.598488075349948, 30.06825325226465 ], [ -95.59843507549715, 30.068262252185445 ], [ -95.598023075876995, 30.068332252155596 ], [ -95.597885075176407, 30.068356252118395 ], [ -95.596708074895048, 30.068557252426604 ], [ -95.596782075378869, 30.068688252584046 ], [ -95.601678076851101, 30.077249253722897 ], [ -95.604340078391417, 30.081944254410089 ], [ -95.606201078545908, 30.085209255454014 ], [ -95.608202078799849, 30.088717255536178 ], [ -95.608938079733576, 30.090040256084475 ], [ -95.6093710800439, 30.090728256478492 ], [ -95.609958079853413, 30.091797256292683 ], [ -95.61037207953737, 30.09255125615946 ], [ -95.611035079707747, 30.093667256298048 ], [ -95.611298080010542, 30.094134256603471 ], [ -95.61145908035526, 30.094421256671843 ], [ -95.61197008018091, 30.095233256970896 ], [ -95.612452080270259, 30.096127257310005 ], [ -95.612861080508665, 30.096774257078462 ], [ -95.613151080420792, 30.097369257098695 ], [ -95.613608080868701, 30.09821725774831 ], [ -95.613632080925072, 30.098205257749626 ], [ -95.61395908069656, 30.098088257952273 ], [ -95.614936081208327, 30.097640257179421 ], [ -95.61597608119348, 30.09723925735377 ], [ -95.616992081807936, 30.096799256711417 ], [ -95.618019081825551, 30.096350257346771 ], [ -95.619302082498791, 30.095786256519212 ], [ -95.620599082646478, 30.095241256707133 ], [ -95.621858082924618, 30.094691256595546 ], [ -95.622529083329056, 30.094413256856335 ], [ -95.622924083262362, 30.094191256502693 ], [ -95.623157082758709, 30.094078256287776 ], [ -95.624130083775384, 30.093603256214372 ], [ -95.624516084047002, 30.09340825578812 ], [ -95.624860083555845, 30.093235256329042 ], [ -95.625264083659303, 30.093031256381259 ], [ -95.625682084047568, 30.09278525642334 ], [ -95.626098083555107, 30.092543256342495 ], [ -95.62639908373842, 30.092365256235755 ], [ -95.627490084217101, 30.091773256083517 ], [ -95.629295084278738, 30.090810255862866 ], [ -95.629923084677429, 30.090441255796438 ], [ -95.630493084527586, 30.090139255410641 ], [ -95.631624085319743, 30.089537254895426 ], [ -95.632430085111139, 30.089430254861348 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 874, "Tract": "48201411901", "Area_SqMi": 0.37407256192149402, "total_2009": 674, "total_2010": 607, "total_2011": 637, "total_2012": 633, "total_2013": 668, "total_2014": 654, "total_2015": 665, "total_2016": 629, "total_2017": 682, "total_2018": 637, "total_2019": 634, "total_2020": 562, "age1": 292, "age2": 768, "age3": 296, "earn1": 169, "earn2": 324, "earn3": 863, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 17, "naics_s05": 2, "naics_s06": 48, "naics_s07": 4, "naics_s08": 0, "naics_s09": 12, "naics_s10": 0, "naics_s11": 619, "naics_s12": 52, "naics_s13": 0, "naics_s14": 16, "naics_s15": 11, "naics_s16": 124, "naics_s17": 11, "naics_s18": 350, "naics_s19": 87, "naics_s20": 0, "race1": 1081, "race2": 143, "race3": 9, "race4": 102, "race5": 2, "race6": 19, "ethnicity1": 928, "ethnicity2": 428, "edu1": 215, "edu2": 243, "edu3": 282, "edu4": 324, "Shape_Length": 16497.651068359995, "Shape_Area": 10428502.794782955, "total_2021": 712, "total_2022": 1356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.410615012377164, 29.73098318939407 ], [ -95.410612012555546, 29.730853189470498 ], [ -95.410610012900804, 29.730719189556943 ], [ -95.410606012173574, 29.730485189427359 ], [ -95.410602012889868, 29.730046189744492 ], [ -95.410597012534794, 29.729522189060962 ], [ -95.410585012414586, 29.728672189355237 ], [ -95.410559012098091, 29.727845188800423 ], [ -95.410550011925409, 29.727141188499257 ], [ -95.410541011863188, 29.726436188812755 ], [ -95.410537011867433, 29.726007188342571 ], [ -95.410537012292934, 29.725891188635963 ], [ -95.410535011867069, 29.725588188789036 ], [ -95.408642011241184, 29.725611188902501 ], [ -95.407390011169099, 29.725626188648693 ], [ -95.406911010796591, 29.725633188511328 ], [ -95.405177010944769, 29.725651188470046 ], [ -95.404395010416053, 29.725657189231171 ], [ -95.403454010560111, 29.725667188426218 ], [ -95.402082009994743, 29.725692188459032 ], [ -95.400786009213618, 29.725706189294051 ], [ -95.399446009654824, 29.725731189066831 ], [ -95.39946400915052, 29.726684188830372 ], [ -95.399458009518867, 29.727880189472724 ], [ -95.398158008815457, 29.727906189074794 ], [ -95.398047009596013, 29.72798918979856 ], [ -95.395126008599988, 29.728012190013985 ], [ -95.394634007878054, 29.728529189618481 ], [ -95.393809008303052, 29.728530189687948 ], [ -95.393737008341333, 29.728538189716602 ], [ -95.392822007830617, 29.728541190084275 ], [ -95.3919090079076, 29.728546189662776 ], [ -95.391047007201365, 29.728562189435493 ], [ -95.391063007446689, 29.729351189649758 ], [ -95.391077007728995, 29.730145189848521 ], [ -95.391080007049865, 29.730684190150544 ], [ -95.391081007891287, 29.730950190274939 ], [ -95.391091007961791, 29.731734190907002 ], [ -95.391093007140029, 29.731887190214255 ], [ -95.391095007861622, 29.732017190466397 ], [ -95.393655008050771, 29.731829190532121 ], [ -95.394694008246589, 29.731720189939242 ], [ -95.396155009152494, 29.731635190478549 ], [ -95.397586008787727, 29.731541190188938 ], [ -95.398691009452378, 29.731459190294306 ], [ -95.399493009505349, 29.731395190557091 ], [ -95.402116010174126, 29.73128618990355 ], [ -95.402935010589033, 29.731228190292978 ], [ -95.404434010390403, 29.731170190266223 ], [ -95.40700701180117, 29.731076189639186 ], [ -95.407356011859221, 29.731055189850927 ], [ -95.41045201235363, 29.730983189680835 ], [ -95.410615012377164, 29.73098318939407 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 875, "Tract": "48201330901", "Area_SqMi": 1.732172423627079, "total_2009": 664, "total_2010": 415, "total_2011": 101, "total_2012": 139, "total_2013": 144, "total_2014": 153, "total_2015": 165, "total_2016": 574, "total_2017": 483, "total_2018": 499, "total_2019": 591, "total_2020": 307, "age1": 119, "age2": 342, "age3": 159, "earn1": 160, "earn2": 186, "earn3": 274, "naics_s01": 105, "naics_s02": 0, "naics_s03": 0, "naics_s04": 37, "naics_s05": 4, "naics_s06": 82, "naics_s07": 9, "naics_s08": 1, "naics_s09": 0, "naics_s10": 1, "naics_s11": 231, "naics_s12": 23, "naics_s13": 3, "naics_s14": 91, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 25, "naics_s19": 3, "naics_s20": 0, "race1": 378, "race2": 153, "race3": 8, "race4": 64, "race5": 0, "race6": 17, "ethnicity1": 397, "ethnicity2": 223, "edu1": 122, "edu2": 143, "edu3": 119, "edu4": 117, "Shape_Length": 30912.134861913866, "Shape_Area": 48290002.527990848, "total_2021": 304, "total_2022": 620 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.419599009866246, 29.613633165737461 ], [ -95.419249009677458, 29.613642165543769 ], [ -95.419075009568971, 29.613647165779017 ], [ -95.417503008854013, 29.613678165185259 ], [ -95.415577008052836, 29.613679165725333 ], [ -95.415305008603823, 29.613679165202807 ], [ -95.413424008173038, 29.613713165636522 ], [ -95.413380008249931, 29.613714165274967 ], [ -95.412040007446933, 29.613732165193461 ], [ -95.409365007111973, 29.613769165336823 ], [ -95.409297007063131, 29.613769165709286 ], [ -95.407961006507207, 29.613786166101796 ], [ -95.406579005984185, 29.613804165465979 ], [ -95.405183006279955, 29.613825165868249 ], [ -95.404492006065837, 29.613835166277124 ], [ -95.401029005185904, 29.613866166090176 ], [ -95.398138004446309, 29.613908166344146 ], [ -95.396865003280766, 29.613922166315067 ], [ -95.39421900282008, 29.613958166358504 ], [ -95.392728002496114, 29.613974165845931 ], [ -95.391449002668097, 29.61399016602833 ], [ -95.390920002450073, 29.613997166273158 ], [ -95.389630001746823, 29.614016166147625 ], [ -95.388562001993847, 29.61402616659494 ], [ -95.388179001479656, 29.614032166168133 ], [ -95.387628001905441, 29.61403616650399 ], [ -95.387211001064912, 29.614037166061337 ], [ -95.387258001443001, 29.615987166679449 ], [ -95.387253001685494, 29.616891167383546 ], [ -95.387247001915384, 29.617967167595438 ], [ -95.38724800152643, 29.619327167538088 ], [ -95.387275001830574, 29.623506168510854 ], [ -95.387245001733959, 29.624429168661216 ], [ -95.387218001584131, 29.627547169348333 ], [ -95.387217001570633, 29.627710169699892 ], [ -95.387216001577443, 29.627817169651557 ], [ -95.387252002163919, 29.628513169452447 ], [ -95.387276002465583, 29.6315861699198 ], [ -95.387285002047207, 29.632134170338976 ], [ -95.387287002193602, 29.632217170041329 ], [ -95.387675002705564, 29.632426170427486 ], [ -95.388071001883631, 29.632605170607487 ], [ -95.388557002896391, 29.632758169955018 ], [ -95.389017003070734, 29.632810170520809 ], [ -95.389695002279609, 29.632771170349891 ], [ -95.39025500266203, 29.632626170055953 ], [ -95.390986003361434, 29.632401169896088 ], [ -95.39278400394673, 29.63177016975116 ], [ -95.393747004200989, 29.6313911696781 ], [ -95.394834003676678, 29.631033170003004 ], [ -95.395409003913826, 29.630892169719662 ], [ -95.396048004345332, 29.630803169582197 ], [ -95.397224004491051, 29.630803169826279 ], [ -95.398107004556437, 29.630799169787295 ], [ -95.398675004814891, 29.630688169420914 ], [ -95.399257004829423, 29.630528169835724 ], [ -95.399691005296802, 29.630342169470772 ], [ -95.400707005397493, 29.629876169206465 ], [ -95.401366005426809, 29.62956316940657 ], [ -95.401903005547581, 29.629333168897222 ], [ -95.402229005652956, 29.629230169171453 ], [ -95.402689005561939, 29.629154169507792 ], [ -95.403386006265379, 29.629045169281834 ], [ -95.403871005706236, 29.628987169133563 ], [ -95.404351006721186, 29.628917168893707 ], [ -95.405086006035575, 29.628796168636519 ], [ -95.405706006912936, 29.628732168549647 ], [ -95.406115006508585, 29.628674169017476 ], [ -95.406338006534384, 29.628591168932459 ], [ -95.406517007325448, 29.628482168439756 ], [ -95.406703006733792, 29.628329169029595 ], [ -95.406856006536003, 29.628080168798835 ], [ -95.406937007387867, 29.627844168396592 ], [ -95.407132007310906, 29.627530168203208 ], [ -95.407160006989272, 29.627368168784525 ], [ -95.407476006863945, 29.626827168825336 ], [ -95.40773200686499, 29.626456168553084 ], [ -95.407975007531363, 29.625945168377061 ], [ -95.408077006776594, 29.625587168346669 ], [ -95.408077007068911, 29.624858168400849 ], [ -95.408175006887021, 29.624193168211907 ], [ -95.40824500744543, 29.624085168210584 ], [ -95.408365007412726, 29.623674167606506 ], [ -95.408614006922619, 29.623269167536794 ], [ -95.409162007183227, 29.622793167840964 ], [ -95.409787007170877, 29.622455167028892 ], [ -95.410055007633702, 29.622373167152496 ], [ -95.411010007636804, 29.622228167770793 ], [ -95.411383008039977, 29.622084167516771 ], [ -95.411864007491303, 29.621763167237052 ], [ -95.412198007784696, 29.621318167185681 ], [ -95.412522008418875, 29.620451167354965 ], [ -95.412830008422432, 29.620122166524492 ], [ -95.413042008240623, 29.619974166933691 ], [ -95.413380008663609, 29.619826166584097 ], [ -95.413559007844185, 29.619770166522127 ], [ -95.416620009339482, 29.618957166540955 ], [ -95.416928008632141, 29.619030166164247 ], [ -95.417123009237741, 29.619033166245114 ], [ -95.417443009028986, 29.619039166222485 ], [ -95.417469009718417, 29.618973166349331 ], [ -95.417684009530845, 29.618433166336345 ], [ -95.418017009558397, 29.617574166285642 ], [ -95.41822400892616, 29.61705816582359 ], [ -95.418900009623741, 29.615377165583013 ], [ -95.419224009570385, 29.614569165398841 ], [ -95.419599009866246, 29.613633165737461 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 876, "Tract": "48201541604", "Area_SqMi": 2.8366481506019352, "total_2009": 501, "total_2010": 712, "total_2011": 497, "total_2012": 516, "total_2013": 514, "total_2014": 597, "total_2015": 591, "total_2016": 633, "total_2017": 604, "total_2018": 629, "total_2019": 658, "total_2020": 791, "age1": 238, "age2": 413, "age3": 216, "earn1": 191, "earn2": 297, "earn3": 379, "naics_s01": 6, "naics_s02": 0, "naics_s03": 0, "naics_s04": 195, "naics_s05": 36, "naics_s06": 19, "naics_s07": 289, "naics_s08": 75, "naics_s09": 24, "naics_s10": 10, "naics_s11": 17, "naics_s12": 39, "naics_s13": 0, "naics_s14": 29, "naics_s15": 7, "naics_s16": 27, "naics_s17": 3, "naics_s18": 29, "naics_s19": 62, "naics_s20": 0, "race1": 630, "race2": 133, "race3": 4, "race4": 87, "race5": 1, "race6": 12, "ethnicity1": 539, "ethnicity2": 328, "edu1": 163, "edu2": 159, "edu3": 168, "edu4": 139, "Shape_Length": 42232.108822613947, "Shape_Area": 79080895.466950893, "total_2021": 741, "total_2022": 867 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.702609092690395, 29.845153202923601 ], [ -95.702608092489371, 29.845060203003339 ], [ -95.702594092015275, 29.844824202797916 ], [ -95.702547092360803, 29.844432202778695 ], [ -95.702495092567389, 29.844076203238561 ], [ -95.70247409241702, 29.843809202714667 ], [ -95.702437092126189, 29.841900202467365 ], [ -95.702422092389469, 29.840210201719866 ], [ -95.702400092295846, 29.838272201229998 ], [ -95.702396091301651, 29.837953201428395 ], [ -95.702393091643998, 29.837774201291317 ], [ -95.702368091295043, 29.835523200720679 ], [ -95.702363092057709, 29.835242201403997 ], [ -95.702360091783603, 29.835086201310936 ], [ -95.702327091627723, 29.831932200476324 ], [ -95.702314091037053, 29.83146520066359 ], [ -95.702310091754427, 29.831330200326818 ], [ -95.702309092006061, 29.831289199884132 ], [ -95.702308091454427, 29.831247200274166 ], [ -95.70231209107574, 29.831160200448863 ], [ -95.702313091830845, 29.83112519985573 ], [ -95.702175091713542, 29.831124199774635 ], [ -95.694913089661853, 29.831095200224308 ], [ -95.691692089167987, 29.831083200276254 ], [ -95.689759087785703, 29.831077200268179 ], [ -95.689665088693985, 29.831077200369631 ], [ -95.688664087523904, 29.831078200385075 ], [ -95.68787608777221, 29.831088200660599 ], [ -95.6868460876059, 29.831106201043756 ], [ -95.686783087759181, 29.83110720059036 ], [ -95.686719087489166, 29.831109200714632 ], [ -95.686609087413316, 29.831109200457266 ], [ -95.6864880874069, 29.831109200884224 ], [ -95.686292087636204, 29.831110200941179 ], [ -95.685040087546525, 29.831113200923152 ], [ -95.684857086810155, 29.831111200550989 ], [ -95.683174086185375, 29.831110200979964 ], [ -95.681324085834675, 29.831103200795898 ], [ -95.681213085710738, 29.83110520125847 ], [ -95.681078086030539, 29.831102201265189 ], [ -95.680830085894797, 29.831104200674989 ], [ -95.680526086385029, 29.831101201314294 ], [ -95.679990086180595, 29.831103200946732 ], [ -95.679633085254665, 29.831108201028421 ], [ -95.679375085813959, 29.83111720055869 ], [ -95.678932085802728, 29.831121201014962 ], [ -95.678228085751726, 29.831120200761919 ], [ -95.678096085646885, 29.83112420115355 ], [ -95.677715084857383, 29.831118201205708 ], [ -95.677588085228578, 29.83112320138726 ], [ -95.677452085505294, 29.831118200834148 ], [ -95.67508008431362, 29.831112201433207 ], [ -95.674903084338467, 29.831110200876076 ], [ -95.67476808400329, 29.831116201336076 ], [ -95.673690084423853, 29.831111200797164 ], [ -95.673428084415704, 29.831106200794476 ], [ -95.673181084369162, 29.831099201339367 ], [ -95.672657083565781, 29.831083201177769 ], [ -95.671926083464044, 29.831081200943132 ], [ -95.671053083494115, 29.831078201615522 ], [ -95.670711083276046, 29.831076201551451 ], [ -95.669746083277303, 29.831070201045797 ], [ -95.669726082899643, 29.831069201608273 ], [ -95.669402083494916, 29.831060201678572 ], [ -95.669168082538576, 29.831053200877548 ], [ -95.668810082421899, 29.83103520107257 ], [ -95.668598083147813, 29.831025201399047 ], [ -95.668039082421728, 29.831017201357668 ], [ -95.667558082152311, 29.83101820097184 ], [ -95.666936082127719, 29.831011201276478 ], [ -95.666827082708096, 29.831016201833616 ], [ -95.666464082348938, 29.831016201584966 ], [ -95.666343082054738, 29.8310142017644 ], [ -95.666198081878008, 29.831012201781 ], [ -95.665747082508773, 29.831016201712405 ], [ -95.664322081892934, 29.831030201233908 ], [ -95.662801081442367, 29.831022201553388 ], [ -95.662405081626446, 29.831067201221934 ], [ -95.662274081580293, 29.831082201672178 ], [ -95.66189008088908, 29.831137201234316 ], [ -95.661600081262435, 29.831191201273899 ], [ -95.66132308088828, 29.83125520181164 ], [ -95.661065080709207, 29.831326201438081 ], [ -95.660753080615024, 29.831432201935822 ], [ -95.660440081303051, 29.831556201377058 ], [ -95.66023508058646, 29.831649201954676 ], [ -95.659935080839276, 29.8318042018232 ], [ -95.659639080824519, 29.831981201795735 ], [ -95.659445080741165, 29.832112202197656 ], [ -95.659252081009626, 29.832257201908913 ], [ -95.658726080519926, 29.832687201896714 ], [ -95.658031080792796, 29.833262202072646 ], [ -95.657776080035504, 29.83347220184752 ], [ -95.657605079920728, 29.833614202213074 ], [ -95.657511080234499, 29.833701202170246 ], [ -95.657410079982142, 29.833775201892685 ], [ -95.657353079890967, 29.833822201865441 ], [ -95.657222079680508, 29.833927201945027 ], [ -95.657014080027054, 29.834075202072 ], [ -95.656749079511229, 29.834243202683496 ], [ -95.656468080193633, 29.834403202354491 ], [ -95.65627008002302, 29.834504202360584 ], [ -95.656208079888259, 29.834532202413193 ], [ -95.656152079989852, 29.834557202046287 ], [ -95.655973080094256, 29.834630202573809 ], [ -95.655832080242192, 29.834687202730564 ], [ -95.655610079932032, 29.834768202299649 ], [ -95.65531207967507, 29.834859202917833 ], [ -95.655135079121607, 29.834907202879737 ], [ -95.655174079186239, 29.835021202261213 ], [ -95.655209080109515, 29.835138202244906 ], [ -95.655359079600558, 29.835092202198201 ], [ -95.655383080028628, 29.835084202799688 ], [ -95.655455080072855, 29.835082202253261 ], [ -95.655508079365461, 29.835080202553616 ], [ -95.655541079268644, 29.835079202344605 ], [ -95.655558079890184, 29.835079203019749 ], [ -95.655760079590465, 29.835080202462986 ], [ -95.655945079721732, 29.835078202630324 ], [ -95.656132079913561, 29.835076202772417 ], [ -95.656174080129318, 29.835075202990982 ], [ -95.656221079523803, 29.835074202389293 ], [ -95.656327080074874, 29.835073202592525 ], [ -95.656521079793478, 29.835072202577575 ], [ -95.656713079768267, 29.835072202128465 ], [ -95.656915079752139, 29.835071202428395 ], [ -95.657110079811886, 29.835071202189237 ], [ -95.657151079967363, 29.835070202445159 ], [ -95.657321080109469, 29.835070202395499 ], [ -95.657323079696653, 29.835349202894619 ], [ -95.657373080542854, 29.84022920394559 ], [ -95.657378080500663, 29.840646203701493 ], [ -95.658665081039771, 29.84064420375552 ], [ -95.661673081264794, 29.840641203980876 ], [ -95.661667081798825, 29.84033220321416 ], [ -95.661668081553387, 29.840312203499771 ], [ -95.66167308126262, 29.840239203772843 ], [ -95.661672081130092, 29.840031203178103 ], [ -95.66485608220637, 29.840031202921107 ], [ -95.664860082488858, 29.840675203013824 ], [ -95.664878082173061, 29.840794203279525 ], [ -95.664898082680423, 29.840922203251427 ], [ -95.664910082048038, 29.84247220404297 ], [ -95.664941082084212, 29.843896203951502 ], [ -95.665042082982495, 29.844897204161789 ], [ -95.665048082476986, 29.845925204284903 ], [ -95.665029082526772, 29.846216204282289 ], [ -95.66502108238781, 29.846596204583232 ], [ -95.665016082177274, 29.846854204271096 ], [ -95.665029082545487, 29.847293204563496 ], [ -95.665016083195596, 29.847662205300598 ], [ -95.665092082301783, 29.848530205430368 ], [ -95.665115083280881, 29.848641204711061 ], [ -95.665199083153169, 29.849025205330555 ], [ -95.665201082400188, 29.849090205242163 ], [ -95.665204083183454, 29.849236205473375 ], [ -95.665286082989638, 29.849236205360587 ], [ -95.665406082798242, 29.84924020518751 ], [ -95.665968083164501, 29.849232205263149 ], [ -95.667244083347001, 29.849229205147488 ], [ -95.668207083482784, 29.849221205043637 ], [ -95.668294083625142, 29.849220205408084 ], [ -95.669422083717194, 29.849216204955248 ], [ -95.670110084296496, 29.849215204803517 ], [ -95.671542084230609, 29.849204204930743 ], [ -95.671783084237831, 29.849195204588266 ], [ -95.672047085057301, 29.849171205137424 ], [ -95.672294084839848, 29.849149204963549 ], [ -95.672545084309306, 29.84910620501007 ], [ -95.672603084704022, 29.849097204771031 ], [ -95.67308208440771, 29.849001204476711 ], [ -95.67367508544028, 29.848875205072023 ], [ -95.673791085232239, 29.848856204428994 ], [ -95.673894084977448, 29.848829204912779 ], [ -95.674018084961517, 29.848810204809389 ], [ -95.674208084757424, 29.848781204315483 ], [ -95.674506085485149, 29.848745204947811 ], [ -95.674798084857159, 29.848723204869941 ], [ -95.675114085392849, 29.848714205016719 ], [ -95.675309085309266, 29.848715204799259 ], [ -95.675616085253992, 29.848714204896922 ], [ -95.675823085093427, 29.848713204317466 ], [ -95.676176085381229, 29.848712205088464 ], [ -95.677632085800184, 29.848707204770275 ], [ -95.678982086122133, 29.848703204984172 ], [ -95.679831086325692, 29.848698204294386 ], [ -95.680539086843936, 29.848695204386267 ], [ -95.682437087590912, 29.848688204504281 ], [ -95.683242087652616, 29.848681204834516 ], [ -95.683561087330659, 29.848681204655815 ], [ -95.683674087285112, 29.848681204400961 ], [ -95.684012087284572, 29.848666204691817 ], [ -95.684766087700368, 29.848635204632 ], [ -95.687335088057324, 29.848620203989906 ], [ -95.689643088646335, 29.848612204128358 ], [ -95.689775089186952, 29.848607204446598 ], [ -95.689756088738008, 29.846173203382509 ], [ -95.689759088748644, 29.846003203364027 ], [ -95.68977008897069, 29.845895203408631 ], [ -95.689794088526781, 29.845796203408334 ], [ -95.689832088925343, 29.845705203658234 ], [ -95.689879089385343, 29.84562520361963 ], [ -95.689931089353905, 29.845556203831965 ], [ -95.68998608859475, 29.845498203663247 ], [ -95.690095089178172, 29.845403203111996 ], [ -95.690199088685389, 29.845336203155952 ], [ -95.690297088864185, 29.845284203816991 ], [ -95.690378089525083, 29.845255203910149 ], [ -95.690463088986377, 29.845236203830513 ], [ -95.690573088651561, 29.845225203621577 ], [ -95.690759089549587, 29.845223203505384 ], [ -95.691065089018764, 29.845219203252192 ], [ -95.691161089680861, 29.845217203296858 ], [ -95.691256088788805, 29.845216203884053 ], [ -95.692380089110031, 29.845202202986027 ], [ -95.692482090049154, 29.84520720328069 ], [ -95.692958089646737, 29.845199203823359 ], [ -95.693095089912433, 29.845204203796019 ], [ -95.693253089459276, 29.845195203541952 ], [ -95.69355309021428, 29.845193203247952 ], [ -95.694624090246776, 29.845187203169502 ], [ -95.695199090378367, 29.845189203680736 ], [ -95.695433090833063, 29.845187202889626 ], [ -95.697846090785774, 29.845177203040532 ], [ -95.697987091504103, 29.845172203080256 ], [ -95.698251090761858, 29.845165202834231 ], [ -95.699901091839351, 29.84515820333365 ], [ -95.700777091586559, 29.845157202852231 ], [ -95.70214909199143, 29.845157202906027 ], [ -95.702609092690395, 29.845153202923601 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 877, "Tract": "48201330102", "Area_SqMi": 0.54802804214490397, "total_2009": 91, "total_2010": 111, "total_2011": 197, "total_2012": 162, "total_2013": 169, "total_2014": 180, "total_2015": 154, "total_2016": 215, "total_2017": 221, "total_2018": 228, "total_2019": 153, "total_2020": 185, "age1": 48, "age2": 89, "age3": 55, "earn1": 54, "earn2": 57, "earn3": 81, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 11, "naics_s07": 5, "naics_s08": 0, "naics_s09": 2, "naics_s10": 0, "naics_s11": 0, "naics_s12": 25, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 41, "naics_s17": 82, "naics_s18": 13, "naics_s19": 10, "naics_s20": 0, "race1": 105, "race2": 52, "race3": 1, "race4": 32, "race5": 0, "race6": 2, "ethnicity1": 143, "ethnicity2": 49, "edu1": 27, "edu2": 34, "edu3": 41, "edu4": 42, "Shape_Length": 15999.104762948902, "Shape_Area": 15278083.855631689, "total_2021": 190, "total_2022": 192 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.422058011126197, 29.640476170412668 ], [ -95.422054011610953, 29.640276170778744 ], [ -95.422048011765298, 29.639247170672679 ], [ -95.421998011697553, 29.638236170562816 ], [ -95.421972011168066, 29.637125169847721 ], [ -95.42196301114177, 29.636711169923071 ], [ -95.421935011144527, 29.635509169944712 ], [ -95.42188501087017, 29.634404169620097 ], [ -95.421882011340898, 29.634144169736427 ], [ -95.421867011138659, 29.632221168945261 ], [ -95.421832010895386, 29.631057168475753 ], [ -95.421785010497146, 29.629461168438564 ], [ -95.421766010368103, 29.629236168067202 ], [ -95.421716010657434, 29.628966168582906 ], [ -95.421736010812069, 29.62842016818151 ], [ -95.421741010612976, 29.628284167926008 ], [ -95.42163701097364, 29.628000168033438 ], [ -95.419554010496199, 29.628033168291854 ], [ -95.417685010089059, 29.628063168642399 ], [ -95.416909009079887, 29.628041168814423 ], [ -95.416363008989208, 29.627972168475441 ], [ -95.416011009696106, 29.627913168669444 ], [ -95.415762008682478, 29.627863168792874 ], [ -95.415644008934464, 29.62783216842606 ], [ -95.415417009407463, 29.627788168818849 ], [ -95.414967008836825, 29.627747168332249 ], [ -95.414535009382377, 29.627723168713921 ], [ -95.414179009294543, 29.627710168804256 ], [ -95.413990009162006, 29.627695168290771 ], [ -95.413942008427583, 29.627820168804231 ], [ -95.41364700919496, 29.628529168153182 ], [ -95.413487008760313, 29.628944168230635 ], [ -95.413361008425966, 29.629253168755039 ], [ -95.412755008409164, 29.63077816940989 ], [ -95.412393008844703, 29.631695169644203 ], [ -95.411968008012238, 29.632765169505994 ], [ -95.411459008010524, 29.634036169850756 ], [ -95.411431008442875, 29.634106169792165 ], [ -95.411179008557028, 29.634724170386967 ], [ -95.410949008404941, 29.63531717024517 ], [ -95.410739008459799, 29.635846170359237 ], [ -95.409368008047394, 29.639270170804682 ], [ -95.408986008164362, 29.640278170832438 ], [ -95.410059008634633, 29.640556171248949 ], [ -95.410185008263724, 29.640581171172258 ], [ -95.410299008004998, 29.640597171604075 ], [ -95.41060600893708, 29.64061417155553 ], [ -95.410961008269226, 29.640612171032817 ], [ -95.413632008858059, 29.640561171460405 ], [ -95.413826009546767, 29.640537170810841 ], [ -95.414361009635329, 29.640570171030475 ], [ -95.417862010262382, 29.640502171199795 ], [ -95.422058011126197, 29.640476170412668 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 878, "Tract": "48201251505", "Area_SqMi": 1.0052197358221238, "total_2009": 426, "total_2010": 401, "total_2011": 598, "total_2012": 420, "total_2013": 413, "total_2014": 431, "total_2015": 439, "total_2016": 549, "total_2017": 585, "total_2018": 674, "total_2019": 786, "total_2020": 749, "age1": 489, "age2": 513, "age3": 177, "earn1": 307, "earn2": 445, "earn3": 427, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 5, "naics_s06": 8, "naics_s07": 460, "naics_s08": 0, "naics_s09": 14, "naics_s10": 229, "naics_s11": 6, "naics_s12": 32, "naics_s13": 0, "naics_s14": 1, "naics_s15": 19, "naics_s16": 18, "naics_s17": 21, "naics_s18": 306, "naics_s19": 57, "naics_s20": 0, "race1": 920, "race2": 157, "race3": 12, "race4": 61, "race5": 0, "race6": 29, "ethnicity1": 822, "ethnicity2": 357, "edu1": 110, "edu2": 167, "edu3": 217, "edu4": 196, "Shape_Length": 26128.96634994349, "Shape_Area": 28023805.783948511, "total_2021": 974, "total_2022": 1179 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.18678397005722, 30.058911264218544 ], [ -95.186752969628614, 30.058704264246369 ], [ -95.186612970253847, 30.057779264614613 ], [ -95.186607970211043, 30.057748263835101 ], [ -95.186579969327568, 30.057562264426817 ], [ -95.186352969731971, 30.056237264247354 ], [ -95.186236969139912, 30.055907263903858 ], [ -95.186125969246262, 30.05559326352607 ], [ -95.185722969850531, 30.054755263756903 ], [ -95.185438969122231, 30.053963263845798 ], [ -95.185326969227901, 30.053543263109468 ], [ -95.185180968922893, 30.053088263537738 ], [ -95.185140969235533, 30.052465263029038 ], [ -95.185036969153344, 30.051970263052588 ], [ -95.184809969288494, 30.051303263287455 ], [ -95.184297968586279, 30.050154262937625 ], [ -95.184218968306126, 30.050029262513544 ], [ -95.182273968132961, 30.050738263347771 ], [ -95.182111968678953, 30.050767263168851 ], [ -95.181242967613642, 30.05091926329272 ], [ -95.179770967553793, 30.050952263289851 ], [ -95.179100967031445, 30.050905262750035 ], [ -95.178117966971811, 30.050743262695114 ], [ -95.177781967364297, 30.050708263277407 ], [ -95.176674966579412, 30.050769262898672 ], [ -95.175995966255599, 30.050806262903155 ], [ -95.174835966677833, 30.051062263359178 ], [ -95.173779966228338, 30.051478263496183 ], [ -95.173596966361814, 30.051573262954108 ], [ -95.170671965013739, 30.052894263303344 ], [ -95.170033965080165, 30.053121263632018 ], [ -95.169471965021586, 30.053273264152189 ], [ -95.16872596480637, 30.05342026418715 ], [ -95.168317964798391, 30.053484264248802 ], [ -95.16800696498079, 30.053553263906018 ], [ -95.167168964562691, 30.05356826440357 ], [ -95.166373964214543, 30.053560264234854 ], [ -95.165579964084316, 30.053546263742721 ], [ -95.164837963647287, 30.053559264403798 ], [ -95.164195963923873, 30.053558264062382 ], [ -95.163719963268022, 30.053611264073844 ], [ -95.163050963192504, 30.053681263852603 ], [ -95.162802963164211, 30.053740264618103 ], [ -95.162208963741037, 30.053857264288183 ], [ -95.161722963611027, 30.05401626471561 ], [ -95.161192962760666, 30.05417726415882 ], [ -95.161108963396245, 30.054223264725497 ], [ -95.160921962718476, 30.054326263932257 ], [ -95.1608909628399, 30.054343264010846 ], [ -95.160256962537872, 30.054704264535122 ], [ -95.15950996226745, 30.055275264383354 ], [ -95.159389962421685, 30.055427264660828 ], [ -95.158785962321389, 30.056196264886424 ], [ -95.158448962043693, 30.056742265175533 ], [ -95.158318962920504, 30.057016265374617 ], [ -95.158167962578901, 30.057334265008013 ], [ -95.158066962275157, 30.057705264746588 ], [ -95.15801396206794, 30.05824626519858 ], [ -95.157693962098477, 30.059587265820799 ], [ -95.157622962651601, 30.059815265979431 ], [ -95.157280962128638, 30.060643266190485 ], [ -95.156826962739714, 30.061278265907688 ], [ -95.156642962303223, 30.061511266166903 ], [ -95.155619962265845, 30.062694265904508 ], [ -95.155816962293443, 30.062836266417388 ], [ -95.157657962201782, 30.064171266784804 ], [ -95.15809596249953, 30.063657266076305 ], [ -95.158236962561574, 30.063490266315764 ], [ -95.15843996229485, 30.063323266668714 ], [ -95.158695962749903, 30.063153266577764 ], [ -95.158882963002668, 30.063091265875748 ], [ -95.159023963030251, 30.063067266137487 ], [ -95.159257962861716, 30.063023266098455 ], [ -95.160153963254885, 30.062940266061297 ], [ -95.161123962945638, 30.062740266461063 ], [ -95.162505963553741, 30.062227265728843 ], [ -95.16333696366658, 30.06204326575725 ], [ -95.164216964074484, 30.061930265367675 ], [ -95.165134963930413, 30.061838265418199 ], [ -95.166004964596681, 30.06181126563402 ], [ -95.166889964982275, 30.061865265585912 ], [ -95.166949964412794, 30.061519265665975 ], [ -95.16695996446586, 30.06135226598019 ], [ -95.166927964954141, 30.061163265604971 ], [ -95.166878964847271, 30.060877265959871 ], [ -95.166716965081534, 30.060402265371181 ], [ -95.167802964605315, 30.060407265142054 ], [ -95.169308965680131, 30.060591265364042 ], [ -95.170032965243607, 30.060634265307304 ], [ -95.170087965367614, 30.060638265212489 ], [ -95.170448966192239, 30.060666265157479 ], [ -95.170804966127321, 30.060661265123251 ], [ -95.171308966365842, 30.060569265427393 ], [ -95.171425965791769, 30.060548265381566 ], [ -95.171733966343382, 30.060391265198092 ], [ -95.171866966357229, 30.060308265087009 ], [ -95.172111966032801, 30.060155265333446 ], [ -95.173031966133095, 30.060981265370405 ], [ -95.173391966698745, 30.061259265330833 ], [ -95.174299967070851, 30.061783265664076 ], [ -95.174519966669408, 30.062032265419539 ], [ -95.175411966673281, 30.061641265082407 ], [ -95.176259966735287, 30.061241265338271 ], [ -95.177161967859732, 30.061041265618549 ], [ -95.178064968160925, 30.060857264810018 ], [ -95.178571968138584, 30.060731265513184 ], [ -95.178958968064663, 30.060603265333338 ], [ -95.179406967599448, 30.060481264831182 ], [ -95.180246968090003, 30.060111264549892 ], [ -95.181020968802017, 30.059651265014836 ], [ -95.18180896818113, 30.059149264367672 ], [ -95.18230396845621, 30.05894026426888 ], [ -95.182530969024015, 30.058862264525313 ], [ -95.18269696877546, 30.058805264400746 ], [ -95.183446968888433, 30.058652264325563 ], [ -95.184243969392242, 30.058675264078055 ], [ -95.184767969610562, 30.058754264538351 ], [ -95.185334969311711, 30.058840264721486 ], [ -95.185478969721004, 30.058882264795038 ], [ -95.18678397005722, 30.058911264218544 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 879, "Tract": "48201542001", "Area_SqMi": 0.5851936230427246, "total_2009": 365, "total_2010": 121, "total_2011": 137, "total_2012": 217, "total_2013": 325, "total_2014": 141, "total_2015": 165, "total_2016": 154, "total_2017": 176, "total_2018": 187, "total_2019": 182, "total_2020": 176, "age1": 89, "age2": 121, "age3": 47, "earn1": 90, "earn2": 86, "earn3": 81, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 41, "naics_s05": 32, "naics_s06": 13, "naics_s07": 45, "naics_s08": 1, "naics_s09": 1, "naics_s10": 0, "naics_s11": 2, "naics_s12": 4, "naics_s13": 0, "naics_s14": 29, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 64, "naics_s19": 7, "naics_s20": 0, "race1": 184, "race2": 39, "race3": 4, "race4": 21, "race5": 0, "race6": 9, "ethnicity1": 165, "ethnicity2": 92, "edu1": 41, "edu2": 50, "edu3": 39, "edu4": 38, "Shape_Length": 16682.353923105195, "Shape_Area": 16314196.641535496, "total_2021": 194, "total_2022": 257 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.720454095454528, 29.815329196019672 ], [ -95.72045709487908, 29.814915196315937 ], [ -95.718928094678589, 29.81492919676321 ], [ -95.718287094487209, 29.814935195983185 ], [ -95.717444094116516, 29.814951196116468 ], [ -95.717070094831541, 29.81495419677325 ], [ -95.71671609412121, 29.814957196017851 ], [ -95.71449609383572, 29.814983196451646 ], [ -95.712841093926187, 29.815003196526018 ], [ -95.712600093855428, 29.815005196978575 ], [ -95.710323093262929, 29.815029196473802 ], [ -95.710086092256049, 29.815031196663597 ], [ -95.708100092658583, 29.815052196948756 ], [ -95.706960091664754, 29.815064196441298 ], [ -95.705925091308742, 29.81506919689895 ], [ -95.705077091443513, 29.815049196781064 ], [ -95.703887091633391, 29.815065197135034 ], [ -95.703772090697456, 29.815060196528563 ], [ -95.703683091029802, 29.815057197061087 ], [ -95.703648091446254, 29.815050197260728 ], [ -95.703409091431183, 29.815684196859603 ], [ -95.703404090688153, 29.816038196793141 ], [ -95.703419091377754, 29.817706197458417 ], [ -95.703448090975641, 29.820229197544858 ], [ -95.703453091157286, 29.820616198211201 ], [ -95.703451091746089, 29.820837197655397 ], [ -95.703463091218623, 29.821375198614675 ], [ -95.703467091750511, 29.821812197934879 ], [ -95.703465091321888, 29.821974198714972 ], [ -95.703591091346198, 29.82197219865116 ], [ -95.703651091191645, 29.821973198032051 ], [ -95.704768092138437, 29.821984198673892 ], [ -95.70519309181978, 29.821985198030166 ], [ -95.705742092255903, 29.821981197932608 ], [ -95.705952092461274, 29.821990198446201 ], [ -95.706248091694462, 29.822020198425651 ], [ -95.706593092104754, 29.822070198307891 ], [ -95.706838092642982, 29.822120198140713 ], [ -95.707096092243148, 29.822184197956737 ], [ -95.707350092112904, 29.822260198042798 ], [ -95.707529092151006, 29.822323198445417 ], [ -95.707695092271209, 29.822388198119619 ], [ -95.707911092125485, 29.82248719850697 ], [ -95.708164092146845, 29.822621197972179 ], [ -95.708970093015338, 29.823059197998848 ], [ -95.70979609268187, 29.823508198645065 ], [ -95.710356093063979, 29.823812198496121 ], [ -95.71072609278805, 29.82400419866438 ], [ -95.710966093773322, 29.824109198115863 ], [ -95.711086093639054, 29.824154198641214 ], [ -95.711208093291418, 29.824194198215345 ], [ -95.711458093506209, 29.824261198237085 ], [ -95.711587093954179, 29.824288198826249 ], [ -95.711855094008968, 29.824331198784009 ], [ -95.712130093523143, 29.824356198353378 ], [ -95.712271093726571, 29.824361198089978 ], [ -95.712634094310076, 29.824361198612525 ], [ -95.715148094303757, 29.824348198556933 ], [ -95.715980094180381, 29.82434219838785 ], [ -95.716800094787644, 29.82433619800824 ], [ -95.717621094819577, 29.824332198224603 ], [ -95.718274095177335, 29.824327198456547 ], [ -95.718441095661078, 29.824329197894095 ], [ -95.718751095481096, 29.824322198582021 ], [ -95.718857095654471, 29.82431519810147 ], [ -95.719187095868108, 29.824296198324877 ], [ -95.71929709598092, 29.824285198600283 ], [ -95.719506095818573, 29.824277198487611 ], [ -95.719837096019887, 29.824278198162045 ], [ -95.719830095726294, 29.822882197740796 ], [ -95.71982809515184, 29.82238619812204 ], [ -95.719827095457617, 29.821915197943643 ], [ -95.719832095398047, 29.821681197960917 ], [ -95.719854095483669, 29.821435198075971 ], [ -95.719889095732398, 29.821181197198744 ], [ -95.719948095517722, 29.82083619772207 ], [ -95.720005095303009, 29.820514197319799 ], [ -95.720033095462711, 29.820275197331963 ], [ -95.720049095794906, 29.819964197226177 ], [ -95.720049095880739, 29.81963019719073 ], [ -95.720046094910884, 29.818068197010685 ], [ -95.720046095259505, 29.817842196707218 ], [ -95.720064095035525, 29.817529196457841 ], [ -95.720078095688109, 29.817397196663769 ], [ -95.720109095261577, 29.817172196518161 ], [ -95.72013509531827, 29.817036196704031 ], [ -95.720161095862878, 29.816906196288024 ], [ -95.720354095332326, 29.816131196245781 ], [ -95.72040409564643, 29.81585819623173 ], [ -95.720438095906999, 29.815590196787159 ], [ -95.720454095454528, 29.815329196019672 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 880, "Tract": "48201542402", "Area_SqMi": 1.7060375710291562, "total_2009": 3633, "total_2010": 3641, "total_2011": 4895, "total_2012": 5938, "total_2013": 6247, "total_2014": 6178, "total_2015": 7710, "total_2016": 7675, "total_2017": 7790, "total_2018": 8091, "total_2019": 8401, "total_2020": 8491, "age1": 2941, "age2": 4078, "age3": 1673, "earn1": 2032, "earn2": 3709, "earn3": 2951, "naics_s01": 0, "naics_s02": 13, "naics_s03": 0, "naics_s04": 123, "naics_s05": 190, "naics_s06": 1896, "naics_s07": 1696, "naics_s08": 179, "naics_s09": 69, "naics_s10": 8, "naics_s11": 12, "naics_s12": 186, "naics_s13": 1790, "naics_s14": 217, "naics_s15": 191, "naics_s16": 269, "naics_s17": 64, "naics_s18": 1733, "naics_s19": 56, "naics_s20": 0, "race1": 6266, "race2": 1561, "race3": 89, "race4": 595, "race5": 8, "race6": 173, "ethnicity1": 5456, "ethnicity2": 3236, "edu1": 1359, "edu2": 1521, "edu3": 1679, "edu4": 1192, "Shape_Length": 33796.968546427364, "Shape_Area": 47561407.567808025, "total_2021": 8302, "total_2022": 8692 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.752010102735269, 29.802102192367105 ], [ -95.752009102973673, 29.801998192203779 ], [ -95.752005102838041, 29.801167192018305 ], [ -95.752001103052848, 29.800441192045554 ], [ -95.751992103031611, 29.799675192537737 ], [ -95.751986102912753, 29.798786192024874 ], [ -95.751978102219923, 29.798225191799094 ], [ -95.751976102170019, 29.797784191858678 ], [ -95.751973102644769, 29.79728519195066 ], [ -95.751969102926594, 29.796481191913696 ], [ -95.751954102643282, 29.794902190923295 ], [ -95.751943102546903, 29.793591190918466 ], [ -95.751945102479283, 29.793445190721904 ], [ -95.751930101873867, 29.791251190381683 ], [ -95.751923102087559, 29.790267190293953 ], [ -95.751920102538179, 29.789974190545863 ], [ -95.751913101970487, 29.789325189724586 ], [ -95.751908102316349, 29.788928190361258 ], [ -95.751898102095751, 29.788591190132202 ], [ -95.751878102486174, 29.788255189501193 ], [ -95.7518661020179, 29.787382189420867 ], [ -95.751871102064442, 29.786069189635207 ], [ -95.75187110175645, 29.78597718944178 ], [ -95.751872102559261, 29.785824189627899 ], [ -95.751872102320391, 29.785755189703657 ], [ -95.751873102510032, 29.785631189544645 ], [ -95.751873101887654, 29.785592189338143 ], [ -95.751873102299228, 29.785553189156328 ], [ -95.751873102200221, 29.785539189339552 ], [ -95.751874102415073, 29.785397189153507 ], [ -95.751702101770846, 29.785410188813739 ], [ -95.751601102395909, 29.785417189275019 ], [ -95.750757101657783, 29.785385189285126 ], [ -95.749442101853916, 29.785361189559584 ], [ -95.747205100653147, 29.785376189242744 ], [ -95.746442100771191, 29.785385189353853 ], [ -95.743213099645132, 29.785397189536088 ], [ -95.739415099331922, 29.785417189907427 ], [ -95.739014098423922, 29.78543018943995 ], [ -95.738658098508054, 29.78541719009851 ], [ -95.737810098157979, 29.785421190060713 ], [ -95.736598098188708, 29.785422189627194 ], [ -95.735750098385907, 29.785427190169997 ], [ -95.735471098320005, 29.785422189639096 ], [ -95.734175097889718, 29.785428189496713 ], [ -95.732992097636199, 29.78540519018846 ], [ -95.732611097558461, 29.785397190279639 ], [ -95.731239097032713, 29.785375190303363 ], [ -95.729869096232378, 29.785394190371239 ], [ -95.728665096635822, 29.785356190244116 ], [ -95.726514095360557, 29.785357190059475 ], [ -95.725539095647946, 29.785336189989469 ], [ -95.722159094342928, 29.785244190519929 ], [ -95.720368094499989, 29.785224190128964 ], [ -95.719155093785602, 29.785173190329914 ], [ -95.718939093295731, 29.785183190073596 ], [ -95.718940093995514, 29.785346189913927 ], [ -95.718940093883035, 29.785599190421156 ], [ -95.718939093187316, 29.785677190387968 ], [ -95.718939093940023, 29.785702190077036 ], [ -95.718934093665695, 29.786419190257771 ], [ -95.718908093999957, 29.787348190514578 ], [ -95.718897093918997, 29.788251190634284 ], [ -95.718900093426669, 29.789213190942402 ], [ -95.718898093664322, 29.789830191277407 ], [ -95.71890109381944, 29.789924191626966 ], [ -95.719238093980863, 29.789924191596306 ], [ -95.719393094084083, 29.789935191389503 ], [ -95.719451094192038, 29.789939191359782 ], [ -95.719646094328183, 29.789971190816026 ], [ -95.719823094341621, 29.790009191211723 ], [ -95.720016094463318, 29.790066191357816 ], [ -95.720795094681364, 29.790368191282308 ], [ -95.721047094363499, 29.790451191503575 ], [ -95.721212094380036, 29.790490191685816 ], [ -95.721378094829134, 29.790519191191287 ], [ -95.721547094869933, 29.790537191019435 ], [ -95.72181309471415, 29.790545191255489 ], [ -95.722176094241846, 29.790544191377556 ], [ -95.722388094320451, 29.790543190850101 ], [ -95.722853094906327, 29.790542191185882 ], [ -95.723914095586153, 29.7905341914886 ], [ -95.724194095508054, 29.79052619159927 ], [ -95.724425095740699, 29.790501191417949 ], [ -95.724647095159526, 29.790457190969711 ], [ -95.724854094948171, 29.79039819107539 ], [ -95.725006095615385, 29.790342191232135 ], [ -95.725064095041972, 29.790317190726068 ], [ -95.725134095785464, 29.790287190687529 ], [ -95.725885095844149, 29.789912191330409 ], [ -95.726033096041249, 29.789849190619794 ], [ -95.726192095268559, 29.78979619088037 ], [ -95.726484095351438, 29.789720191223303 ], [ -95.726566096049055, 29.789706191066095 ], [ -95.726774096242039, 29.789680191070872 ], [ -95.726884096265778, 29.789672190621683 ], [ -95.726920095496823, 29.789669191284602 ], [ -95.727103095461956, 29.789666190847676 ], [ -95.727184096271742, 29.78966419094192 ], [ -95.727631095772011, 29.78966419114461 ], [ -95.728267096693031, 29.789660190759367 ], [ -95.728839096731761, 29.789655190521568 ], [ -95.729409096458355, 29.789652190595795 ], [ -95.730885097352981, 29.789644191099967 ], [ -95.730872096619478, 29.790470191064227 ], [ -95.730855097397196, 29.790882190748835 ], [ -95.730846097429492, 29.791089191060948 ], [ -95.730832096759855, 29.791267191471658 ], [ -95.730709097420984, 29.79156119159865 ], [ -95.730619097360872, 29.791693191563649 ], [ -95.72982309685419, 29.792590191150303 ], [ -95.729756096336502, 29.792665191643795 ], [ -95.729289096501489, 29.793191191681483 ], [ -95.729278096810063, 29.793213191652139 ], [ -95.729189096424932, 29.793396191663707 ], [ -95.728815096516172, 29.794157192113069 ], [ -95.728370096372942, 29.795138191780076 ], [ -95.72822709600581, 29.795335191718245 ], [ -95.727664096537339, 29.795953192050479 ], [ -95.727733096015299, 29.795988192257653 ], [ -95.727853096051177, 29.79611619228508 ], [ -95.727898095965912, 29.796170192472392 ], [ -95.72798309658431, 29.796302192105806 ], [ -95.728096096282798, 29.796519191873479 ], [ -95.728141096418909, 29.7965871927222 ], [ -95.728191096958867, 29.7966491925255 ], [ -95.72824709648313, 29.796705192183001 ], [ -95.72830609706584, 29.796755192531172 ], [ -95.72836809666579, 29.796798192560516 ], [ -95.728793096338592, 29.797060192304325 ], [ -95.729452097110311, 29.79746619238227 ], [ -95.729699096533182, 29.797626192143127 ], [ -95.729837097476548, 29.797729192097894 ], [ -95.730022096795835, 29.797896192743334 ], [ -95.730123096765979, 29.798007192808594 ], [ -95.730233097606373, 29.798156192302045 ], [ -95.730313097161272, 29.798280192419409 ], [ -95.730339097324702, 29.798324192579887 ], [ -95.730387097247501, 29.798425192571354 ], [ -95.730450097409516, 29.798585192338059 ], [ -95.730499097502275, 29.798756192363594 ], [ -95.73052509677234, 29.798906192597926 ], [ -95.730540096909351, 29.799067192301688 ], [ -95.730547096995011, 29.799787193062425 ], [ -95.730553097411203, 29.800502193398209 ], [ -95.730559097457714, 29.800978192933066 ], [ -95.731124097513472, 29.800972192969716 ], [ -95.733789098039111, 29.800952193239297 ], [ -95.734681098404408, 29.800978193113963 ], [ -95.735149098543062, 29.800992192787962 ], [ -95.735191098797458, 29.800993193088154 ], [ -95.735241098665881, 29.80099519328688 ], [ -95.735254098709802, 29.800995193076318 ], [ -95.735273098996942, 29.800996192822499 ], [ -95.735304098644619, 29.800998193303776 ], [ -95.73539909889611, 29.801001192744462 ], [ -95.735990099126482, 29.801022193051462 ], [ -95.736262098704685, 29.801043193304817 ], [ -95.736574098507106, 29.801081192823464 ], [ -95.736880099281763, 29.801131193310365 ], [ -95.737187099160835, 29.801195192838012 ], [ -95.737490098769996, 29.801273192478945 ], [ -95.738256099838793, 29.801503192700149 ], [ -95.738481099758516, 29.801563193075108 ], [ -95.738829099114241, 29.801634192861076 ], [ -95.73908609947425, 29.801678192744149 ], [ -95.739116099886246, 29.801682193402261 ], [ -95.739494099410578, 29.801737192900045 ], [ -95.739761099741372, 29.801757192515094 ], [ -95.740936100268911, 29.80174619293766 ], [ -95.741914099973982, 29.801741192913177 ], [ -95.742059100570685, 29.801741193183048 ], [ -95.742201100709366, 29.801746192831455 ], [ -95.742341100340653, 29.801758192796861 ], [ -95.742597100213686, 29.80179219269602 ], [ -95.742863100270156, 29.80184119300602 ], [ -95.743075100308303, 29.801880192738594 ], [ -95.743286100643061, 29.801918193069369 ], [ -95.743694100757267, 29.802000193210052 ], [ -95.743972101096205, 29.802048193002665 ], [ -95.744242101244524, 29.802084193200447 ], [ -95.744503100551441, 29.802109193069956 ], [ -95.744878101304792, 29.802128192980533 ], [ -95.745435100666228, 29.802125192989248 ], [ -95.745587101111937, 29.802122193148659 ], [ -95.746012101541012, 29.8021191931564 ], [ -95.748380101955945, 29.802107192435308 ], [ -95.74892910182237, 29.802108192590772 ], [ -95.749641102137957, 29.802099192510841 ], [ -95.750507102811085, 29.802102192706649 ], [ -95.750775102785241, 29.802106192894964 ], [ -95.751112102426092, 29.802111192324443 ], [ -95.751757102843726, 29.802105192880941 ], [ -95.752010102735269, 29.802102192367105 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 881, "Tract": "48201410705", "Area_SqMi": 0.18487378426554577, "total_2009": 1321, "total_2010": 1467, "total_2011": 1544, "total_2012": 1592, "total_2013": 1757, "total_2014": 1913, "total_2015": 2139, "total_2016": 1833, "total_2017": 1537, "total_2018": 1764, "total_2019": 1810, "total_2020": 1685, "age1": 160, "age2": 588, "age3": 180, "earn1": 108, "earn2": 190, "earn3": 630, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 52, "naics_s05": 0, "naics_s06": 5, "naics_s07": 19, "naics_s08": 0, "naics_s09": 44, "naics_s10": 43, "naics_s11": 34, "naics_s12": 410, "naics_s13": 1, "naics_s14": 3, "naics_s15": 106, "naics_s16": 19, "naics_s17": 49, "naics_s18": 122, "naics_s19": 21, "naics_s20": 0, "race1": 710, "race2": 110, "race3": 8, "race4": 85, "race5": 0, "race6": 15, "ethnicity1": 726, "ethnicity2": 202, "edu1": 88, "edu2": 139, "edu3": 265, "edu4": 276, "Shape_Length": 9809.5378344145993, "Shape_Area": 5153964.6906793509, "total_2021": 1674, "total_2022": 928 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399439009483984, 29.734483191156997 ], [ -95.399489009505331, 29.734426190319141 ], [ -95.397880009168617, 29.734435190406774 ], [ -95.397002008799888, 29.734447190693448 ], [ -95.396748009092661, 29.734450190752764 ], [ -95.396494009338596, 29.734453191232472 ], [ -95.394654008354877, 29.734460191026546 ], [ -95.39410000808428, 29.734481190652559 ], [ -95.39369700829161, 29.734488190722541 ], [ -95.393110008557841, 29.734487190825746 ], [ -95.392960008305764, 29.734487191431793 ], [ -95.392936007760014, 29.734487190596923 ], [ -95.392509008488034, 29.734487190613024 ], [ -95.39177300799696, 29.734483191383116 ], [ -95.391137007096759, 29.734480191405769 ], [ -95.390297007737175, 29.734507190859397 ], [ -95.389825007041637, 29.734518190936342 ], [ -95.38885200748058, 29.73451919096485 ], [ -95.388848007554316, 29.73534719103705 ], [ -95.38885700738426, 29.736204191128241 ], [ -95.388873007615373, 29.737047191584391 ], [ -95.388890006723472, 29.73789719186939 ], [ -95.388892006993672, 29.738799192002265 ], [ -95.389874007954646, 29.738797191986958 ], [ -95.39118100812766, 29.738780191794913 ], [ -95.392568008441742, 29.738769192019817 ], [ -95.39374900799416, 29.738759191493326 ], [ -95.394749008900433, 29.738743192235663 ], [ -95.395455008761942, 29.738729192062497 ], [ -95.395721009320113, 29.738725191931493 ], [ -95.397500009367874, 29.73872019176364 ], [ -95.399321010338568, 29.738698191213768 ], [ -95.399304010353688, 29.737787191746548 ], [ -95.399291009742285, 29.736940191092032 ], [ -95.399276009903019, 29.736094190811659 ], [ -95.399268009660304, 29.735237190828741 ], [ -95.399277009404841, 29.735091190947784 ], [ -95.399309009317307, 29.734939190927587 ], [ -95.399437009394489, 29.73462619098386 ], [ -95.399439009483984, 29.734483191156997 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 882, "Tract": "48201541402", "Area_SqMi": 0.38492404019257398, "total_2009": 69, "total_2010": 64, "total_2011": 29, "total_2012": 31, "total_2013": 49, "total_2014": 60, "total_2015": 59, "total_2016": 57, "total_2017": 59, "total_2018": 74, "total_2019": 65, "total_2020": 64, "age1": 8, "age2": 35, "age3": 18, "earn1": 11, "earn2": 32, "earn3": 18, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 0, "naics_s07": 1, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 21, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 36, "race2": 15, "race3": 1, "race4": 5, "race5": 0, "race6": 4, "ethnicity1": 34, "ethnicity2": 27, "edu1": 12, "edu2": 11, "edu3": 14, "edu4": 16, "Shape_Length": 15418.128363638958, "Shape_Area": 10731023.436489988, "total_2021": 48, "total_2022": 61 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.664643082937829, 29.849638205595767 ], [ -95.664662082229654, 29.84923720546249 ], [ -95.664469082909079, 29.849240204992917 ], [ -95.664173082164467, 29.849238205530625 ], [ -95.663880082728554, 29.84922520546996 ], [ -95.663504081898424, 29.849190204825213 ], [ -95.663168081836048, 29.849144204883661 ], [ -95.662451081655036, 29.849019205492223 ], [ -95.661974082405294, 29.848955205626446 ], [ -95.661756081487994, 29.848937205156737 ], [ -95.66159408236372, 29.848931205345718 ], [ -95.66143208156349, 29.848926205350995 ], [ -95.661008081879487, 29.848934205617763 ], [ -95.660514081467113, 29.84894520556394 ], [ -95.658526080917625, 29.84899420532636 ], [ -95.658457081004798, 29.848996205782893 ], [ -95.658073080914505, 29.848997205536232 ], [ -95.657897080703194, 29.849001204945466 ], [ -95.657451080430079, 29.849000205768437 ], [ -95.657084080386525, 29.84900520507825 ], [ -95.6568330802031, 29.849002205295982 ], [ -95.656457080227085, 29.849006205047409 ], [ -95.654619079646935, 29.849010205767133 ], [ -95.654489080031567, 29.849011205257046 ], [ -95.65373607957801, 29.849017205213766 ], [ -95.652595079350789, 29.849020205931978 ], [ -95.652149079362928, 29.849022205552181 ], [ -95.651683079375999, 29.849022205214567 ], [ -95.651677079955093, 29.850892205614084 ], [ -95.651687079545241, 29.851666205972649 ], [ -95.651693079332205, 29.851993206050842 ], [ -95.651697079304782, 29.852263206263256 ], [ -95.653015079466627, 29.852275206548907 ], [ -95.653529079727278, 29.852280206580343 ], [ -95.653530080208753, 29.854961206406546 ], [ -95.653518080061417, 29.857138207441508 ], [ -95.653525080531168, 29.85812220714168 ], [ -95.653534080183476, 29.859486207892768 ], [ -95.654800080121788, 29.859461207674659 ], [ -95.656527081425537, 29.859468207252863 ], [ -95.657299081413655, 29.859470207819406 ], [ -95.660578081678466, 29.859451207179472 ], [ -95.660578082593958, 29.85940020730564 ], [ -95.660575081613288, 29.85905620706831 ], [ -95.661457082002102, 29.859020207226827 ], [ -95.661446082209338, 29.858679207577978 ], [ -95.661444082442202, 29.858326207444918 ], [ -95.661441081898047, 29.857578207202156 ], [ -95.661439082046627, 29.8570762064831 ], [ -95.66144208225063, 29.856970207092612 ], [ -95.661439081924001, 29.856839206881602 ], [ -95.661436082289555, 29.856085206905426 ], [ -95.66143708205243, 29.855335206321261 ], [ -95.661434082454235, 29.854592206569002 ], [ -95.661432082185868, 29.85385220640454 ], [ -95.661431081599417, 29.853116205892206 ], [ -95.661428082268273, 29.852401206216342 ], [ -95.661431081705473, 29.852073205699135 ], [ -95.66142408231741, 29.851704205900187 ], [ -95.661425082403255, 29.851511206069233 ], [ -95.661415081619879, 29.851415205639015 ], [ -95.661404081840331, 29.851369205570844 ], [ -95.661367082104206, 29.851276205659207 ], [ -95.661300081586518, 29.851188205640032 ], [ -95.662095082440999, 29.850919205760459 ], [ -95.663620082942884, 29.850324205834333 ], [ -95.664627082516517, 29.84992620567154 ], [ -95.664643082937829, 29.849638205595767 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 883, "Tract": "48201540504", "Area_SqMi": 0.42761761898240702, "total_2009": 1807, "total_2010": 1841, "total_2011": 1832, "total_2012": 1812, "total_2013": 1825, "total_2014": 1792, "total_2015": 1951, "total_2016": 2018, "total_2017": 1941, "total_2018": 1756, "total_2019": 1760, "total_2020": 1870, "age1": 404, "age2": 891, "age3": 460, "earn1": 584, "earn2": 727, "earn3": 444, "naics_s01": 0, "naics_s02": 3, "naics_s03": 1, "naics_s04": 40, "naics_s05": 23, "naics_s06": 8, "naics_s07": 237, "naics_s08": 16, "naics_s09": 1, "naics_s10": 90, "naics_s11": 34, "naics_s12": 66, "naics_s13": 1, "naics_s14": 354, "naics_s15": 2, "naics_s16": 463, "naics_s17": 22, "naics_s18": 319, "naics_s19": 67, "naics_s20": 8, "race1": 1187, "race2": 404, "race3": 17, "race4": 127, "race5": 3, "race6": 17, "ethnicity1": 1050, "ethnicity2": 705, "edu1": 383, "edu2": 353, "edu3": 359, "edu4": 256, "Shape_Length": 18758.821855081856, "Shape_Area": 11921247.342360154, "total_2021": 1897, "total_2022": 1755 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.645790077892499, 29.848627205636362 ], [ -95.645800077884232, 29.848359205491846 ], [ -95.645790077655221, 29.848189205457722 ], [ -95.645790077353851, 29.84794620574927 ], [ -95.645780077745826, 29.847374205716381 ], [ -95.64578507793037, 29.846897205390434 ], [ -95.645783077999539, 29.846829205545635 ], [ -95.645770077577225, 29.84634320481403 ], [ -95.645771077689034, 29.846222205568491 ], [ -95.645770078090791, 29.846150205219253 ], [ -95.645775078191861, 29.845989205270001 ], [ -95.645765077398906, 29.8457922053041 ], [ -95.645756077852496, 29.845623204939191 ], [ -95.645751077532708, 29.843651204910852 ], [ -95.645749077688222, 29.843583204997856 ], [ -95.645741077358664, 29.84320420433589 ], [ -95.64573607708806, 29.843145204822335 ], [ -95.645736077851723, 29.842841204723559 ], [ -95.645736077565147, 29.842672204531745 ], [ -95.64574107773835, 29.842414204019292 ], [ -95.645731077346724, 29.842245204612308 ], [ -95.645734077684892, 29.842096204821882 ], [ -95.645741077114721, 29.841722203967976 ], [ -95.645724077815956, 29.841477204510163 ], [ -95.645708077923075, 29.841233203911688 ], [ -95.645730077609414, 29.841054204509362 ], [ -95.645723077937674, 29.840956204038356 ], [ -95.64572607778301, 29.840749204282151 ], [ -95.645721077653334, 29.84064820398897 ], [ -95.64571607717464, 29.840592203698872 ], [ -95.645711077755081, 29.840401204286145 ], [ -95.645711077382458, 29.840320203882829 ], [ -95.645706077053305, 29.840162203724322 ], [ -95.645707077274835, 29.840046203653504 ], [ -95.645706077081513, 29.839929204028834 ], [ -95.64570107775252, 29.839780203519854 ], [ -95.645710077899096, 29.839614203724466 ], [ -95.645706076928434, 29.839392203871846 ], [ -95.645711077398403, 29.839243203435743 ], [ -95.645706077854001, 29.839121203633102 ], [ -95.645706077000483, 29.838982204161486 ], [ -95.645706077805897, 29.838841203700792 ], [ -95.645701077466086, 29.838692204018379 ], [ -95.645700077468831, 29.838529203342848 ], [ -95.6457000777459, 29.838367203369565 ], [ -95.64569907758883, 29.83830620350308 ], [ -95.645696077522686, 29.838246203316647 ], [ -95.645693077053195, 29.837979203973251 ], [ -95.645691077738121, 29.837712203473949 ], [ -95.645689077011028, 29.837602203538953 ], [ -95.645686077250261, 29.837492203884224 ], [ -95.645671077108105, 29.836753202890769 ], [ -95.645666077373505, 29.836494203551727 ], [ -95.645633077197544, 29.835996202967412 ], [ -95.645401077132462, 29.835996203316558 ], [ -95.64526407665474, 29.836001202707521 ], [ -95.64507707751649, 29.836000203548508 ], [ -95.644789077170373, 29.836002202783764 ], [ -95.644247077174185, 29.836002203349196 ], [ -95.643893077166908, 29.836002203411905 ], [ -95.64352107662144, 29.836009202833623 ], [ -95.642721076804278, 29.836019203552514 ], [ -95.64140807600225, 29.836014203481554 ], [ -95.64097807583984, 29.836013203137391 ], [ -95.640814075628853, 29.836012203674958 ], [ -95.640492075732666, 29.836011202899698 ], [ -95.640497076016658, 29.836514203760036 ], [ -95.640497075782775, 29.836555203630386 ], [ -95.640499076355141, 29.836703203500168 ], [ -95.640500075685864, 29.836844203112527 ], [ -95.640501075990215, 29.836906203189741 ], [ -95.640513075500834, 29.837129203713349 ], [ -95.640519075751499, 29.837219203533238 ], [ -95.640558076183396, 29.837509203177838 ], [ -95.640594076141781, 29.837694204078577 ], [ -95.640747075700148, 29.838277203756657 ], [ -95.64095607643732, 29.839062204016489 ], [ -95.641151075836618, 29.839805204224891 ], [ -95.641201076090667, 29.84000320422729 ], [ -95.641230076666815, 29.840166204110012 ], [ -95.641250076124336, 29.840414204017407 ], [ -95.641246076827812, 29.840664204103774 ], [ -95.641223076031451, 29.840893204457775 ], [ -95.641188076348499, 29.841089204619191 ], [ -95.641135076721113, 29.841308203944685 ], [ -95.641086076456517, 29.841464204769874 ], [ -95.641015076410611, 29.841641204622533 ], [ -95.640952076687128, 29.841781204881645 ], [ -95.64087507649387, 29.841922204701305 ], [ -95.64075007655488, 29.842120204305136 ], [ -95.640658075850709, 29.842247204687069 ], [ -95.640509075979892, 29.842430204905604 ], [ -95.640366076704822, 29.842585204641619 ], [ -95.640191075793084, 29.842749204569397 ], [ -95.640088075708647, 29.842833204374188 ], [ -95.640390076446948, 29.843128204526487 ], [ -95.640589076118644, 29.843312204842587 ], [ -95.640713075985374, 29.843439204676791 ], [ -95.64077107596718, 29.843505204695862 ], [ -95.640878076400483, 29.843639205007772 ], [ -95.641000076693615, 29.84384820456728 ], [ -95.641065076384422, 29.843993204928445 ], [ -95.641116076884998, 29.844146205326798 ], [ -95.641152076649917, 29.8443052049439 ], [ -95.641201076960542, 29.844451205315934 ], [ -95.641177075993426, 29.844551205074971 ], [ -95.64117407675397, 29.844610204828864 ], [ -95.641168076148517, 29.844722204820727 ], [ -95.641112076246628, 29.845070205175684 ], [ -95.641042076793667, 29.845434205122888 ], [ -95.6408990761214, 29.846175205335353 ], [ -95.640749076407303, 29.846946205966887 ], [ -95.640601076313772, 29.847720206025116 ], [ -95.640488076017192, 29.848325205970482 ], [ -95.640465076409143, 29.84849020558347 ], [ -95.640440076664618, 29.848748205730654 ], [ -95.640430076834036, 29.849021206097383 ], [ -95.640429076855185, 29.849302205801418 ], [ -95.640439076901217, 29.850064206113988 ], [ -95.640451076825116, 29.850816206107794 ], [ -95.640453076851514, 29.851379206145189 ], [ -95.640463076478412, 29.852264206792359 ], [ -95.640318076534427, 29.852267206964388 ], [ -95.640229076620727, 29.852274206478896 ], [ -95.640146076421274, 29.852309206226078 ], [ -95.640084076045852, 29.852379206912467 ], [ -95.640061077051456, 29.852464207061136 ], [ -95.640058076279459, 29.852631206599376 ], [ -95.640069076935191, 29.853752206942882 ], [ -95.640072076938239, 29.854214206795305 ], [ -95.64007607689382, 29.854494206706917 ], [ -95.640078076169218, 29.854605207222427 ], [ -95.640089076786083, 29.855686207286027 ], [ -95.640095077140629, 29.856207207761326 ], [ -95.640099076819681, 29.856317207723635 ], [ -95.640093076264606, 29.856422207814752 ], [ -95.640078076301293, 29.85648220735786 ], [ -95.640039077062696, 29.856527207793462 ], [ -95.640009076316574, 29.856543207234829 ], [ -95.639984076471606, 29.856557207273152 ], [ -95.639948077199378, 29.856560207329441 ], [ -95.639913077149913, 29.856563207135064 ], [ -95.639864076819975, 29.856567207371345 ], [ -95.639916076781446, 29.856575207145315 ], [ -95.639951077107554, 29.856580207801745 ], [ -95.640024076723961, 29.856585207206351 ], [ -95.640084077167941, 29.856590207684192 ], [ -95.640200076927542, 29.856599207563391 ], [ -95.640221076897646, 29.856598207319134 ], [ -95.641004076739932, 29.856591207157603 ], [ -95.641394076894301, 29.856580207550632 ], [ -95.641485076696057, 29.856578207896881 ], [ -95.641865077192563, 29.856572207741767 ], [ -95.641973077015578, 29.856575207635863 ], [ -95.642101077527386, 29.856588207781911 ], [ -95.64222907741248, 29.85661420762025 ], [ -95.642436076846238, 29.856674207422135 ], [ -95.642811077680321, 29.856809207403998 ], [ -95.642846077572457, 29.856832207397765 ], [ -95.64288707730941, 29.856841207836244 ], [ -95.642932077453722, 29.856852207408139 ], [ -95.642986077601861, 29.856846207419565 ], [ -95.643085077840098, 29.856856207208981 ], [ -95.643320077545795, 29.856861207402577 ], [ -95.643482077145137, 29.856860207836853 ], [ -95.64400607754402, 29.856853207232945 ], [ -95.644444077870119, 29.856847207675933 ], [ -95.644648078336743, 29.856844207613616 ], [ -95.644837077468068, 29.856843207584827 ], [ -95.645030078223243, 29.856840207082776 ], [ -95.645064077950551, 29.855449207154667 ], [ -95.645060077959471, 29.855319207216084 ], [ -95.645085078423193, 29.854972207412931 ], [ -95.645108078095262, 29.854768207099916 ], [ -95.645164077546312, 29.854203206705073 ], [ -95.645338078250859, 29.852739206590623 ], [ -95.645362078431802, 29.852541206211761 ], [ -95.645404077959427, 29.852172206694078 ], [ -95.645417077997578, 29.852070206503765 ], [ -95.64553707748567, 29.851057206488512 ], [ -95.645552077709368, 29.850913206035312 ], [ -95.645582078309488, 29.85066420645003 ], [ -95.645666077766407, 29.850018205875742 ], [ -95.645721077741626, 29.849566205950829 ], [ -95.645770077353092, 29.849003205610227 ], [ -95.645775077616634, 29.848963205593417 ], [ -95.645790077892499, 29.848627205636362 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 884, "Tract": "48201421802", "Area_SqMi": 0.33243838438541534, "total_2009": 21, "total_2010": 30, "total_2011": 568, "total_2012": 29, "total_2013": 42, "total_2014": 55, "total_2015": 74, "total_2016": 72, "total_2017": 82, "total_2018": 46, "total_2019": 88, "total_2020": 66, "age1": 12, "age2": 45, "age3": 16, "earn1": 10, "earn2": 12, "earn3": 51, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 25, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 2, "naics_s11": 2, "naics_s12": 14, "naics_s13": 0, "naics_s14": 6, "naics_s15": 10, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 55, "race2": 3, "race3": 0, "race4": 12, "race5": 1, "race6": 2, "ethnicity1": 62, "ethnicity2": 11, "edu1": 8, "edu2": 14, "edu3": 12, "edu4": 27, "Shape_Length": 13687.617598535457, "Shape_Area": 9267813.1826840937, "total_2021": 54, "total_2022": 73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484462030058125, 29.69103517943984 ], [ -95.484452029157509, 29.690521179007415 ], [ -95.484443029657811, 29.690095178607219 ], [ -95.484427029956379, 29.689622178983708 ], [ -95.48442502957316, 29.689561179084407 ], [ -95.484423029751454, 29.689040178991903 ], [ -95.484407029103707, 29.688542178316077 ], [ -95.484394029755023, 29.688143178556206 ], [ -95.484395029704146, 29.687838178029853 ], [ -95.484396029527758, 29.687354177845766 ], [ -95.484385029272516, 29.68714217799176 ], [ -95.484375029574181, 29.686953177925972 ], [ -95.484371029243647, 29.686923177786174 ], [ -95.484327029383138, 29.68660417790921 ], [ -95.484340029727264, 29.686212178284077 ], [ -95.484342029070476, 29.686164177807072 ], [ -95.484336029815111, 29.685826178134473 ], [ -95.484327029098836, 29.68543217817475 ], [ -95.484329028940238, 29.685050178092702 ], [ -95.484320029009581, 29.684574177922645 ], [ -95.484315029114654, 29.684279177183882 ], [ -95.48429902871851, 29.683752177966397 ], [ -95.484291028701008, 29.683509177248329 ], [ -95.48428102871074, 29.682965177745022 ], [ -95.48428102877817, 29.682735177705748 ], [ -95.484281029488642, 29.68243617756049 ], [ -95.484281029169821, 29.681971177568581 ], [ -95.48427102925298, 29.681469176746692 ], [ -95.484266029053387, 29.681198177449616 ], [ -95.484249028684246, 29.68042917668199 ], [ -95.484211028753123, 29.679915177026778 ], [ -95.484203028464066, 29.679133176626454 ], [ -95.48342302841678, 29.679134176417751 ], [ -95.483381029128239, 29.67912817637416 ], [ -95.483093028204593, 29.679075176275745 ], [ -95.482732028693505, 29.679010176983066 ], [ -95.482282028617021, 29.678980176890089 ], [ -95.481847028665555, 29.678983176212352 ], [ -95.481444027784718, 29.678986176484301 ], [ -95.480659028536024, 29.678992176641309 ], [ -95.479795027403497, 29.67900417661324 ], [ -95.479416027440081, 29.679002176440203 ], [ -95.479253027408006, 29.679972176592578 ], [ -95.479258027915847, 29.680536177258553 ], [ -95.479259028075035, 29.680565177138849 ], [ -95.479281028244316, 29.6814201773871 ], [ -95.479296027513328, 29.682366177308463 ], [ -95.4792980275367, 29.683282177405257 ], [ -95.477027027823311, 29.683286177873082 ], [ -95.477030027807899, 29.684168177973692 ], [ -95.477040027779978, 29.684968177613303 ], [ -95.477052027626499, 29.685340177808396 ], [ -95.477065027118343, 29.685762178192658 ], [ -95.477066027367655, 29.686143178164585 ], [ -95.477067027531447, 29.686553178728733 ], [ -95.477042027643876, 29.687014178722375 ], [ -95.477008027495387, 29.687323178717012 ], [ -95.476734027632261, 29.68805717864392 ], [ -95.476391027359796, 29.689022178693776 ], [ -95.476295027687797, 29.689348178672674 ], [ -95.476247027195456, 29.689833178591428 ], [ -95.476242027874264, 29.689889178851036 ], [ -95.476240027827842, 29.689906179243042 ], [ -95.476124027911979, 29.690339179218 ], [ -95.476088026979099, 29.691120179457766 ], [ -95.476319027481438, 29.691066179283201 ], [ -95.479405028471433, 29.691038179569251 ], [ -95.480256028608196, 29.69102417955401 ], [ -95.481651028775275, 29.691016178881547 ], [ -95.481890028672467, 29.691048178714215 ], [ -95.484462030058125, 29.69103517943984 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 885, "Tract": "48201454504", "Area_SqMi": 2.7838820823150994, "total_2009": 446, "total_2010": 632, "total_2011": 683, "total_2012": 511, "total_2013": 559, "total_2014": 564, "total_2015": 561, "total_2016": 516, "total_2017": 543, "total_2018": 616, "total_2019": 614, "total_2020": 674, "age1": 132, "age2": 292, "age3": 144, "earn1": 112, "earn2": 213, "earn3": 243, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 32, "naics_s05": 0, "naics_s06": 10, "naics_s07": 76, "naics_s08": 7, "naics_s09": 2, "naics_s10": 72, "naics_s11": 26, "naics_s12": 86, "naics_s13": 0, "naics_s14": 21, "naics_s15": 41, "naics_s16": 42, "naics_s17": 1, "naics_s18": 131, "naics_s19": 20, "naics_s20": 0, "race1": 402, "race2": 48, "race3": 6, "race4": 104, "race5": 1, "race6": 7, "ethnicity1": 418, "ethnicity2": 150, "edu1": 83, "edu2": 99, "edu3": 111, "edu4": 143, "Shape_Length": 50027.735584283102, "Shape_Area": 77609867.793142349, "total_2021": 454, "total_2022": 568 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.718836093051991, 29.77219818732798 ], [ -95.718836093319197, 29.772130187568237 ], [ -95.718831093197124, 29.771490187275813 ], [ -95.718830092980994, 29.771314187776841 ], [ -95.718828092891599, 29.771035187060704 ], [ -95.718821093272055, 29.770956187596347 ], [ -95.718823092787005, 29.770786186978711 ], [ -95.71880909297127, 29.770494187649664 ], [ -95.71880409327396, 29.770447187718428 ], [ -95.71879009331758, 29.770320187095333 ], [ -95.718755092726695, 29.770097186982806 ], [ -95.718717092827944, 29.769909186937817 ], [ -95.718653093109225, 29.769641186915006 ], [ -95.718608092780073, 29.76949518686223 ], [ -95.718516093116421, 29.769220186658803 ], [ -95.718411092404253, 29.768959186610662 ], [ -95.718293092701813, 29.768723186541344 ], [ -95.718109092379677, 29.768399187259046 ], [ -95.718090092978102, 29.768369186689419 ], [ -95.717914092864675, 29.768096186804183 ], [ -95.717579092468881, 29.767621186568189 ], [ -95.717501092354809, 29.767480186761308 ], [ -95.717396092210166, 29.767367187141975 ], [ -95.717238092584552, 29.767148186545175 ], [ -95.717008092612872, 29.766818186480947 ], [ -95.716678092100381, 29.766352186643989 ], [ -95.71651409234839, 29.766088186749482 ], [ -95.716458091685254, 29.765992186616188 ], [ -95.716399091734019, 29.765890186584482 ], [ -95.716231092591798, 29.765535186122079 ], [ -95.716116092109957, 29.765252186406169 ], [ -95.716092092257298, 29.765186186062103 ], [ -95.716044092205593, 29.7650491859211 ], [ -95.716009091927916, 29.764937186449508 ], [ -95.715982091878743, 29.764848185958371 ], [ -95.715903091855438, 29.764521186176708 ], [ -95.71586009181388, 29.764270186326748 ], [ -95.715846092002522, 29.764153185726592 ], [ -95.715824091604674, 29.763976186367014 ], [ -95.715801092325393, 29.76363918624369 ], [ -95.715799091654986, 29.763407185959785 ], [ -95.715821092271966, 29.763042185607514 ], [ -95.715862092225819, 29.762734186180143 ], [ -95.715903092319579, 29.762515185409725 ], [ -95.715914092384864, 29.762470185739122 ], [ -95.715955092090695, 29.76229418598313 ], [ -95.716028092189958, 29.762043185603265 ], [ -95.716118092025638, 29.761779185710697 ], [ -95.716180091714421, 29.76163118516558 ], [ -95.716288092066719, 29.761398185147478 ], [ -95.716423091501682, 29.761131185460904 ], [ -95.716555092240341, 29.760900185864067 ], [ -95.716643091927224, 29.760762185603301 ], [ -95.71685109182495, 29.760467185131898 ], [ -95.717063091746581, 29.760209185524069 ], [ -95.717172092365416, 29.760084184911527 ], [ -95.717576092666505, 29.759657185114865 ], [ -95.717669092044233, 29.759562184975582 ], [ -95.717722091818217, 29.759508185259183 ], [ -95.716437092139486, 29.758490184617951 ], [ -95.714903091420865, 29.757308184833022 ], [ -95.71342209138227, 29.756166184562961 ], [ -95.7132040911915, 29.756043184958294 ], [ -95.713047090896467, 29.755956184604553 ], [ -95.712874090983064, 29.755859184406543 ], [ -95.71238409020134, 29.755788184330882 ], [ -95.711110090770319, 29.755604184436176 ], [ -95.711021089815986, 29.755591184182837 ], [ -95.70960809010478, 29.755358184424338 ], [ -95.709144089535954, 29.755281184919163 ], [ -95.708507089605135, 29.755129184774415 ], [ -95.7079480891082, 29.754977184396289 ], [ -95.706249088607052, 29.754438184657062 ], [ -95.705403088915332, 29.75397318412049 ], [ -95.704762088146396, 29.753446184101911 ], [ -95.704121088756054, 29.752759183748367 ], [ -95.703653088658555, 29.752107183783046 ], [ -95.703156088211301, 29.751082184131995 ], [ -95.702995088308285, 29.750557183820231 ], [ -95.702855087545672, 29.749728184018032 ], [ -95.702796087628982, 29.749007183106702 ], [ -95.702839087568137, 29.748420183678732 ], [ -95.702899088126188, 29.747715183137576 ], [ -95.702832087648432, 29.7474491827797 ], [ -95.702755087849411, 29.747145183500539 ], [ -95.702554088204991, 29.746820182599897 ], [ -95.702421087955017, 29.746804182739503 ], [ -95.702390087266664, 29.746787182997391 ], [ -95.702340088006167, 29.746738182631695 ], [ -95.702289087732126, 29.746644183158327 ], [ -95.702258087371533, 29.746606182738116 ], [ -95.701943087952657, 29.746282182928997 ], [ -95.701722087104386, 29.746172182620455 ], [ -95.700878086924476, 29.745463183062924 ], [ -95.700752087507624, 29.745342182653655 ], [ -95.700601087633814, 29.745177182350869 ], [ -95.700474087357065, 29.74486918270275 ], [ -95.700374087460901, 29.744572182554297 ], [ -95.700273087231551, 29.744386182248654 ], [ -95.700040087208663, 29.744116182793899 ], [ -95.699983086699149, 29.744061182759975 ], [ -95.699907087210676, 29.744017182205663 ], [ -95.699807087185775, 29.743990182912029 ], [ -95.699700087377295, 29.743984182391031 ], [ -95.699454087205282, 29.743984182552044 ], [ -95.699353086644734, 29.743995182799576 ], [ -95.699214087183648, 29.744023182295493 ], [ -95.699051086900212, 29.744111182453807 ], [ -95.698944086613892, 29.744149182839365 ], [ -95.698522086632636, 29.744210182829814 ], [ -95.698383086919179, 29.744237182295684 ], [ -95.698106086176054, 29.744243182822434 ], [ -95.697816086637559, 29.74421018257382 ], [ -95.697577085888014, 29.744166182398899 ], [ -95.696915086514366, 29.743935182903446 ], [ -95.696821086345381, 29.743941182860883 ], [ -95.696764086333062, 29.74393018296777 ], [ -95.696651086121932, 29.744045182991371 ], [ -95.696544085684465, 29.744183182774101 ], [ -95.696424086522597, 29.74441418314521 ], [ -95.696241086234423, 29.744870183248246 ], [ -95.69603408605235, 29.745310183046779 ], [ -95.69574408562822, 29.745700183414911 ], [ -95.695587086270081, 29.745870182943221 ], [ -95.695202085590651, 29.746239183405486 ], [ -95.694661085550194, 29.746783182846503 ], [ -95.694214086100828, 29.747223183630069 ], [ -95.693672085459923, 29.74773418359004 ], [ -95.693124085522356, 29.748289183812641 ], [ -95.692387085061313, 29.749004184031726 ], [ -95.692223085390594, 29.749175183902103 ], [ -95.692173085288246, 29.749240183792217 ], [ -95.692167085461861, 29.74931718411613 ], [ -95.69217308492685, 29.749389184241512 ], [ -95.692242085535085, 29.749675183562633 ], [ -95.692327084927712, 29.75000218372206 ], [ -95.692343085319351, 29.750332183915216 ], [ -95.692299085300732, 29.750475184403594 ], [ -95.692274085076704, 29.75059618380855 ], [ -95.692211085369848, 29.750783184281673 ], [ -95.692160085137417, 29.750860183839087 ], [ -95.691833084714688, 29.751030184593262 ], [ -95.690831085272734, 29.751646184264576 ], [ -95.690472084712098, 29.751943184505691 ], [ -95.689855084728407, 29.752487184229462 ], [ -95.689735084271433, 29.75270718505427 ], [ -95.689603085148548, 29.753009184345672 ], [ -95.68948908472224, 29.753130184918128 ], [ -95.689294084521592, 29.753251185127123 ], [ -95.688828084504934, 29.753466184744347 ], [ -95.688557084317736, 29.753669184884743 ], [ -95.688381084480582, 29.75382818507466 ], [ -95.688261084916078, 29.753900185208721 ], [ -95.687807084753274, 29.753916184919277 ], [ -95.686491084493369, 29.754076185411691 ], [ -95.685634084178261, 29.754191185465167 ], [ -95.68534408384447, 29.75421318474536 ], [ -95.685262083387244, 29.75451518478069 ], [ -95.685004084118134, 29.755263185292527 ], [ -95.685017084077217, 29.755730185770293 ], [ -95.685268083654137, 29.756406185785409 ], [ -95.685198084001627, 29.756459185729927 ], [ -95.685283084174273, 29.756708185200441 ], [ -95.685361084259597, 29.757200185868172 ], [ -95.685388083594248, 29.757754185919907 ], [ -95.685432084262558, 29.759596186361566 ], [ -95.685439084627802, 29.763300186877277 ], [ -95.685476084305463, 29.765670187774106 ], [ -95.685495084158447, 29.768411188299869 ], [ -95.685500084869147, 29.773084188793394 ], [ -95.685505085018818, 29.773724188864477 ], [ -95.685515084829362, 29.77485618908392 ], [ -95.685509084693848, 29.775129189822799 ], [ -95.685503084993499, 29.775602189211547 ], [ -95.685461084392671, 29.775602189378336 ], [ -95.683491084030578, 29.777559190169399 ], [ -95.683615084199133, 29.777559189729434 ], [ -95.6828260839862, 29.780486190627045 ], [ -95.682534084491294, 29.781281190442524 ], [ -95.683076083858893, 29.781278191075607 ], [ -95.683393084575073, 29.781281190573512 ], [ -95.685470084662512, 29.781284190421971 ], [ -95.685552084786664, 29.781273190262365 ], [ -95.685553085469024, 29.781334190294622 ], [ -95.685553084562542, 29.78139519082999 ], [ -95.685556085497865, 29.782042190944313 ], [ -95.685557084535034, 29.782183190955038 ], [ -95.685562084761784, 29.782346191213929 ], [ -95.685555084653046, 29.782401190636616 ], [ -95.685558085454971, 29.782722190991404 ], [ -95.685924085431893, 29.782688191306729 ], [ -95.686434085700469, 29.782682190976406 ], [ -95.688279086034697, 29.782707190733191 ], [ -95.68828308569644, 29.782399191198561 ], [ -95.688279085699932, 29.782197190670999 ], [ -95.688280085194165, 29.782087190798645 ], [ -95.688286086036143, 29.781446190166044 ], [ -95.688287085748684, 29.781283190298804 ], [ -95.688291085990457, 29.780879190464368 ], [ -95.688292085939722, 29.780773190833582 ], [ -95.688284085727261, 29.779644189870957 ], [ -95.688280086055414, 29.778603189616963 ], [ -95.688276085953007, 29.778116190082905 ], [ -95.688267085556419, 29.777689190190319 ], [ -95.688261085526193, 29.777472189477223 ], [ -95.688260085367673, 29.777424189441614 ], [ -95.688241085832288, 29.777226190124782 ], [ -95.688209085716267, 29.777037189682385 ], [ -95.688118085366497, 29.776624189744872 ], [ -95.68828808504459, 29.776598189860628 ], [ -95.688333085892481, 29.776589189201449 ], [ -95.688421085150011, 29.776564189325118 ], [ -95.688645085056336, 29.776520189797328 ], [ -95.688956085776312, 29.776474189159419 ], [ -95.689317085956162, 29.776441189963229 ], [ -95.689626085306941, 29.776427189285531 ], [ -95.690333085963616, 29.776415189691935 ], [ -95.6905830865486, 29.776400189271559 ], [ -95.690953086230508, 29.776361189072912 ], [ -95.691322086134178, 29.776305189093172 ], [ -95.69157608601401, 29.776256189369693 ], [ -95.691728086139889, 29.776220189638085 ], [ -95.691878086240678, 29.776184189109525 ], [ -95.691905086373396, 29.776177188964109 ], [ -95.69193108667028, 29.77617118947547 ], [ -95.692239086530734, 29.776098189309455 ], [ -95.692265086459329, 29.77609318891345 ], [ -95.692657086124484, 29.776023189666631 ], [ -95.692937086796789, 29.775986188999358 ], [ -95.693219087133954, 29.775961189166303 ], [ -95.69373208661294, 29.775944189123678 ], [ -95.693791086843561, 29.775942189495268 ], [ -95.694989087147022, 29.77593418883508 ], [ -95.695437087587493, 29.775930189585306 ], [ -95.695532087563635, 29.775928189572252 ], [ -95.696117086902831, 29.775927189424479 ], [ -95.696960087348387, 29.77592018903065 ], [ -95.6973730872743, 29.775902188969503 ], [ -95.69763808770081, 29.775875189553279 ], [ -95.697895087602376, 29.775840188726679 ], [ -95.698061088260729, 29.775811188826147 ], [ -95.698282087950204, 29.775766188702772 ], [ -95.698743087598288, 29.775651188888624 ], [ -95.69920908781053, 29.775535188751501 ], [ -95.699487088755262, 29.775479188959988 ], [ -95.699964088702501, 29.775406189202599 ], [ -95.700234088848077, 29.775381188798434 ], [ -95.700555088926862, 29.775365188503439 ], [ -95.701048088935593, 29.775353189332186 ], [ -95.701873088699003, 29.7753521884358 ], [ -95.701872088362649, 29.775213188925974 ], [ -95.701847088526137, 29.771552187988163 ], [ -95.701834088962428, 29.770403187815688 ], [ -95.701824088968294, 29.768839187770286 ], [ -95.701823088468558, 29.768567187071568 ], [ -95.701811088482572, 29.767534186848248 ], [ -95.701810088896153, 29.767448187057223 ], [ -95.701799087967942, 29.76642118712974 ], [ -95.704983089309735, 29.766432187058523 ], [ -95.706723090023701, 29.766412186872788 ], [ -95.707584089795304, 29.766403186512758 ], [ -95.708618090124261, 29.766382186753635 ], [ -95.710061090813326, 29.766398187106031 ], [ -95.710658090548449, 29.766398186652268 ], [ -95.710937090614678, 29.766398186567315 ], [ -95.711999090698498, 29.766378186416777 ], [ -95.712153091396544, 29.76637618641621 ], [ -95.712417091118908, 29.766491186574719 ], [ -95.712745091235135, 29.766854186623767 ], [ -95.713048091543598, 29.767139186649182 ], [ -95.713161091125741, 29.767326186878222 ], [ -95.713552091849621, 29.767673187226528 ], [ -95.714270091465579, 29.768392187160462 ], [ -95.714283091677856, 29.768502187221703 ], [ -95.714258091664206, 29.768607186742368 ], [ -95.714176091229305, 29.768733187275572 ], [ -95.713987091370143, 29.768931187278671 ], [ -95.713672091424286, 29.769173186999204 ], [ -95.713332091029571, 29.769366187058484 ], [ -95.713095091078443, 29.769530187019406 ], [ -95.713510091933728, 29.769930187043411 ], [ -95.713674091147766, 29.770074187095524 ], [ -95.713927091263358, 29.770275187780683 ], [ -95.714127092073667, 29.770414187837638 ], [ -95.714379092241444, 29.770572187397157 ], [ -95.714917091649468, 29.770874187140951 ], [ -95.715351092587525, 29.771113187842236 ], [ -95.715556092186276, 29.771233187804853 ], [ -95.715699092365924, 29.771336187837626 ], [ -95.715820091970798, 29.771444187737039 ], [ -95.715944092485145, 29.771574187542484 ], [ -95.715961091994174, 29.77159618761296 ], [ -95.716039092513384, 29.771700187583761 ], [ -95.716102092647674, 29.771797187752721 ], [ -95.716184092547849, 29.771957188097701 ], [ -95.716226092640625, 29.772066187969962 ], [ -95.716263092815296, 29.772191188181111 ], [ -95.716279092222379, 29.772272187303408 ], [ -95.716498092797025, 29.772246187336641 ], [ -95.716648092047109, 29.772235188052871 ], [ -95.716749092535053, 29.772223187692639 ], [ -95.716980092779181, 29.772208187369934 ], [ -95.717098092881855, 29.772210187976121 ], [ -95.717227092668509, 29.772203187471359 ], [ -95.717483093171595, 29.772200187465572 ], [ -95.717613093187779, 29.772204187414381 ], [ -95.717746092366212, 29.772199187913802 ], [ -95.717879092668255, 29.772203187974931 ], [ -95.718014092735032, 29.772198187568307 ], [ -95.718325093316082, 29.772198187273286 ], [ -95.718516092674747, 29.772198187775096 ], [ -95.718619092557859, 29.772198187886453 ], [ -95.718692092688499, 29.772198187212851 ], [ -95.718735093008746, 29.772198187607106 ], [ -95.718836093051991, 29.77219818732798 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 886, "Tract": "48201542104", "Area_SqMi": 0.83508229719832716, "total_2009": 92, "total_2010": 85, "total_2011": 79, "total_2012": 143, "total_2013": 121, "total_2014": 106, "total_2015": 154, "total_2016": 149, "total_2017": 146, "total_2018": 127, "total_2019": 104, "total_2020": 100, "age1": 19, "age2": 50, "age3": 22, "earn1": 36, "earn2": 38, "earn3": 17, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 35, "naics_s08": 6, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 8, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 10, "naics_s19": 1, "naics_s20": 0, "race1": 55, "race2": 11, "race3": 0, "race4": 20, "race5": 0, "race6": 5, "ethnicity1": 55, "ethnicity2": 36, "edu1": 14, "edu2": 17, "edu3": 20, "edu4": 21, "Shape_Length": 20085.362105332155, "Shape_Area": 23280665.188253496, "total_2021": 104, "total_2022": 91 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.719884095549475, 29.832650200221472 ], [ -95.719880096342209, 29.83125219995226 ], [ -95.719880095778933, 29.831174200010473 ], [ -95.719052095512183, 29.831174199649244 ], [ -95.718113095656605, 29.831175199854513 ], [ -95.717631095583926, 29.831178199414943 ], [ -95.71609109525798, 29.831178199571585 ], [ -95.712665094280268, 29.831161200148514 ], [ -95.711147093285902, 29.831154199625036 ], [ -95.70811609349488, 29.831144199612289 ], [ -95.703519091401972, 29.831129199783039 ], [ -95.702493091426547, 29.831126200033118 ], [ -95.702313091830845, 29.83112519985573 ], [ -95.70231209107574, 29.831160200448863 ], [ -95.702308091454427, 29.831247200274166 ], [ -95.702309092006061, 29.831289199884132 ], [ -95.702310091754427, 29.831330200326818 ], [ -95.702314091037053, 29.83146520066359 ], [ -95.702327091627723, 29.831932200476324 ], [ -95.702360091783603, 29.835086201310936 ], [ -95.702363092057709, 29.835242201403997 ], [ -95.702368091295043, 29.835523200720679 ], [ -95.702393091643998, 29.837774201291317 ], [ -95.702396091301651, 29.837953201428395 ], [ -95.702400092295846, 29.838272201229998 ], [ -95.702422092389469, 29.840210201719866 ], [ -95.702437092126189, 29.841900202467365 ], [ -95.70247409241702, 29.843809202714667 ], [ -95.702495092567389, 29.844076203238561 ], [ -95.702547092360803, 29.844432202778695 ], [ -95.702745092599173, 29.844409203062494 ], [ -95.702774091865152, 29.844405202795063 ], [ -95.702834092680803, 29.844397202727681 ], [ -95.70318309216006, 29.844348202860107 ], [ -95.704271092535336, 29.844195202404386 ], [ -95.704499092309931, 29.844154202713653 ], [ -95.704610092222026, 29.844125203090204 ], [ -95.70471909303447, 29.844091202770869 ], [ -95.704746092266817, 29.844081202310115 ], [ -95.704827092412202, 29.844049202670924 ], [ -95.704934092733453, 29.844002202986687 ], [ -95.705073092336889, 29.843933203147238 ], [ -95.706100093270024, 29.843426202435957 ], [ -95.706631093164347, 29.843163202480284 ], [ -95.706690092951987, 29.843135202307977 ], [ -95.706822093253749, 29.843077202608843 ], [ -95.707022093248838, 29.843004202904126 ], [ -95.707170093326397, 29.842968202282133 ], [ -95.707332093478684, 29.842928202062467 ], [ -95.707665093698907, 29.84287620210441 ], [ -95.70812609376587, 29.842810202516823 ], [ -95.70855509375383, 29.8427672022734 ], [ -95.708945093250733, 29.842731202471221 ], [ -95.709345093969418, 29.842621202661583 ], [ -95.709769093665415, 29.84255820225254 ], [ -95.709948094420596, 29.842531202283013 ], [ -95.710129094501426, 29.842514201922423 ], [ -95.710286094438814, 29.842513202700989 ], [ -95.710439094305102, 29.842522202198566 ], [ -95.710628094321876, 29.842550202616646 ], [ -95.710763093982933, 29.842580202538244 ], [ -95.71093409464568, 29.842631202539181 ], [ -95.711124094263283, 29.842706202656331 ], [ -95.711224094626644, 29.842756202132687 ], [ -95.711423094190721, 29.842876202451968 ], [ -95.711967094933357, 29.843232202654825 ], [ -95.712319094553536, 29.84345720240157 ], [ -95.712487094327912, 29.843545202406858 ], [ -95.712605094643166, 29.84359720256403 ], [ -95.712701094330725, 29.843632202358673 ], [ -95.71288409490532, 29.843689202649056 ], [ -95.71304709449447, 29.843726202627426 ], [ -95.713243094724376, 29.843756202148281 ], [ -95.71343609488288, 29.843771202128373 ], [ -95.713649094866184, 29.843767202796503 ], [ -95.713862094955772, 29.843748202484569 ], [ -95.713960095356356, 29.843733202205268 ], [ -95.714077095066358, 29.84370820210011 ], [ -95.714562095382234, 29.843591202151256 ], [ -95.714634095613718, 29.843570202312446 ], [ -95.715669095294516, 29.843236202009358 ], [ -95.715746095687251, 29.843181202537959 ], [ -95.7158180949788, 29.843122202233246 ], [ -95.71588409498527, 29.843060201974822 ], [ -95.716232095764568, 29.84269720184589 ], [ -95.716275095362931, 29.84265820242171 ], [ -95.716337095147381, 29.84260720194963 ], [ -95.716403095669023, 29.842561202138551 ], [ -95.716480095255974, 29.842514201676344 ], [ -95.716562095667243, 29.842472201970519 ], [ -95.716648095811877, 29.842435201970162 ], [ -95.716739095789308, 29.842403201781867 ], [ -95.716836095670104, 29.842376202410737 ], [ -95.716940095728546, 29.842353202112932 ], [ -95.717047096041014, 29.842339201551642 ], [ -95.717157095883465, 29.842331202378784 ], [ -95.717579095679284, 29.842317201861228 ], [ -95.718173095520527, 29.842286202364772 ], [ -95.718507096542652, 29.842277201980796 ], [ -95.718900096716965, 29.842290201920711 ], [ -95.718881095803212, 29.840343201206419 ], [ -95.718871096604602, 29.839667201022863 ], [ -95.718856096412523, 29.838589200828682 ], [ -95.718837095631741, 29.836990200523406 ], [ -95.718840096101459, 29.836792201162545 ], [ -95.71886209606393, 29.836488200771033 ], [ -95.718874096374009, 29.836392200428694 ], [ -95.718947096383602, 29.835950200665213 ], [ -95.719036095731241, 29.835612200628248 ], [ -95.719280095614607, 29.834806199934562 ], [ -95.719497096500206, 29.834115200429142 ], [ -95.719723095506822, 29.833365200445094 ], [ -95.719832096341307, 29.832978200309988 ], [ -95.719870095642662, 29.83279420000467 ], [ -95.719884095549475, 29.832650200221472 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 887, "Tract": "48201542203", "Area_SqMi": 3.1385170584514923, "total_2009": 109, "total_2010": 148, "total_2011": 208, "total_2012": 517, "total_2013": 574, "total_2014": 642, "total_2015": 628, "total_2016": 899, "total_2017": 720, "total_2018": 664, "total_2019": 817, "total_2020": 927, "age1": 227, "age2": 550, "age3": 211, "earn1": 199, "earn2": 312, "earn3": 477, "naics_s01": 0, "naics_s02": 0, "naics_s03": 15, "naics_s04": 101, "naics_s05": 177, "naics_s06": 0, "naics_s07": 174, "naics_s08": 32, "naics_s09": 19, "naics_s10": 14, "naics_s11": 69, "naics_s12": 36, "naics_s13": 0, "naics_s14": 118, "naics_s15": 34, "naics_s16": 70, "naics_s17": 0, "naics_s18": 98, "naics_s19": 31, "naics_s20": 0, "race1": 742, "race2": 151, "race3": 9, "race4": 67, "race5": 1, "race6": 18, "ethnicity1": 644, "ethnicity2": 344, "edu1": 176, "edu2": 210, "edu3": 232, "edu4": 143, "Shape_Length": 46676.96923030039, "Shape_Area": 87496483.963997245, "total_2021": 980, "total_2022": 988 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.756670107619357, 29.875266206894473 ], [ -95.756641107492399, 29.873128206883862 ], [ -95.756626107218949, 29.872012206641774 ], [ -95.756635106658436, 29.870062206226404 ], [ -95.756637106748755, 29.869724206531252 ], [ -95.75662110756312, 29.869287206008011 ], [ -95.756606106667888, 29.868861206364191 ], [ -95.756595107171435, 29.868529205580657 ], [ -95.756583106926044, 29.868218205462547 ], [ -95.756567107266449, 29.867755205849452 ], [ -95.756543107190438, 29.865161204957957 ], [ -95.756553106732056, 29.864747204816503 ], [ -95.756567107272502, 29.864170204988913 ], [ -95.756519106745571, 29.862838204709661 ], [ -95.756508106996307, 29.861187204366914 ], [ -95.756513106214015, 29.860789204196294 ], [ -95.756265107044442, 29.860787204784376 ], [ -95.740972102450456, 29.860658204440387 ], [ -95.74037010296108, 29.86065320458248 ], [ -95.740375102726418, 29.858263204047194 ], [ -95.740356102215472, 29.857587204265744 ], [ -95.740324102608227, 29.856943204471232 ], [ -95.740342102214129, 29.856091204249694 ], [ -95.740335102451979, 29.855619203626105 ], [ -95.740291102247255, 29.855058203347713 ], [ -95.740297101765293, 29.854635203311748 ], [ -95.740316101967309, 29.85437620333806 ], [ -95.740303102464651, 29.853915203231608 ], [ -95.740315102247592, 29.853250203525235 ], [ -95.740283102119093, 29.852524203629624 ], [ -95.740295102317006, 29.851754202767978 ], [ -95.740269102076951, 29.850831202551472 ], [ -95.740276101559246, 29.850562202717388 ], [ -95.740269101691027, 29.849902202853862 ], [ -95.740281102074633, 29.849435202950811 ], [ -95.740268102121419, 29.849281202931362 ], [ -95.740281101758143, 29.849006202373353 ], [ -95.740261102041089, 29.847401202071214 ], [ -95.740229102058748, 29.846384202110851 ], [ -95.739659101696219, 29.845602202036346 ], [ -95.739607101245824, 29.845531201647429 ], [ -95.738430101838006, 29.845523202044287 ], [ -95.734688100896435, 29.845618202047568 ], [ -95.734453100516433, 29.845715201790181 ], [ -95.733091100232343, 29.845689201771673 ], [ -95.731102099388636, 29.845702201907557 ], [ -95.729486099246131, 29.845750202081625 ], [ -95.72940909890994, 29.845744202393632 ], [ -95.726674098496034, 29.845764202200982 ], [ -95.723727097309236, 29.845786202611279 ], [ -95.719189096825431, 29.845754202901016 ], [ -95.719190096921224, 29.845799203040126 ], [ -95.719196096241944, 29.846441202815782 ], [ -95.719196096367, 29.846943202546683 ], [ -95.719172096559731, 29.847262202480977 ], [ -95.719118096734661, 29.847688203036554 ], [ -95.718972096826164, 29.848718203042068 ], [ -95.71891309602745, 29.849129203172666 ], [ -95.71881009687857, 29.849851203430163 ], [ -95.718791096385658, 29.849984203318204 ], [ -95.718710096539013, 29.850565203422178 ], [ -95.718660097034785, 29.8510632039821 ], [ -95.71862709619775, 29.851549203772908 ], [ -95.71861809624265, 29.851932203561052 ], [ -95.718618096706862, 29.852001203578169 ], [ -95.718618096693547, 29.85227520350762 ], [ -95.718617096759658, 29.852704203968937 ], [ -95.71861609645012, 29.852821203925505 ], [ -95.718616096137666, 29.85318220446052 ], [ -95.718616096664476, 29.853482204411211 ], [ -95.71861609660634, 29.853746203826535 ], [ -95.718616096553916, 29.853936203966551 ], [ -95.718618096701306, 29.854623204511068 ], [ -95.718620096726895, 29.854922204466764 ], [ -95.718617096366515, 29.856098204905749 ], [ -95.718617096276361, 29.8562782045265 ], [ -95.718625096927894, 29.856606205106033 ], [ -95.718643097306654, 29.856814204757111 ], [ -95.718666097177021, 29.856966204538463 ], [ -95.718714097039239, 29.857201205263902 ], [ -95.718774096396317, 29.85743120506104 ], [ -95.71887009668842, 29.857724205103992 ], [ -95.719006097045494, 29.858072205330995 ], [ -95.719156096596649, 29.858432205241304 ], [ -95.719183097342892, 29.858497205589035 ], [ -95.719967096841415, 29.860374205303884 ], [ -95.720122097508892, 29.860768205386808 ], [ -95.720212097352444, 29.861043205547578 ], [ -95.720291097604644, 29.861357206138958 ], [ -95.721460097804808, 29.861074205936632 ], [ -95.722341097996477, 29.860862205795634 ], [ -95.722519098196656, 29.86082820532096 ], [ -95.723018098408573, 29.860733205130636 ], [ -95.723588097877752, 29.860605205035903 ], [ -95.724065098215945, 29.860555205860511 ], [ -95.724878098600215, 29.860541205264102 ], [ -95.725569098417253, 29.860605205560351 ], [ -95.726160099254329, 29.860733205357594 ], [ -95.727043099413564, 29.860869205699011 ], [ -95.727656099463474, 29.860961205448159 ], [ -95.728297098956972, 29.861040205212856 ], [ -95.729265099944016, 29.861047205346189 ], [ -95.72927210010927, 29.861270205791921 ], [ -95.729272099869164, 29.862246205316477 ], [ -95.729272099921317, 29.862428206009266 ], [ -95.729279099945273, 29.863448205839941 ], [ -95.729294099832543, 29.865355206507832 ], [ -95.729647099896596, 29.865353205959956 ], [ -95.729792100322513, 29.865358206615888 ], [ -95.729861100552597, 29.865367206615492 ], [ -95.729978099679983, 29.865394206608187 ], [ -95.730168099928733, 29.865466206648286 ], [ -95.730097100101574, 29.865609206308704 ], [ -95.73003510014118, 29.865775206734003 ], [ -95.729992099811497, 29.865932206066624 ], [ -95.729952099968884, 29.866145206317153 ], [ -95.72992710047339, 29.86633720599648 ], [ -95.729917100520424, 29.866522206446508 ], [ -95.72991610053343, 29.866884206302625 ], [ -95.729922100571272, 29.867144206530284 ], [ -95.729935100222562, 29.867348206801868 ], [ -95.729974100153484, 29.867608206322881 ], [ -95.730003100324893, 29.867741207137666 ], [ -95.730059100429287, 29.867943206685084 ], [ -95.730127100444861, 29.868125206531332 ], [ -95.730234100509946, 29.868360206390975 ], [ -95.730577100129466, 29.869073207373912 ], [ -95.730915100425037, 29.869774206852199 ], [ -95.731257100667776, 29.87047920712488 ], [ -95.731604100711436, 29.871201207636574 ], [ -95.731954100855546, 29.871931207182854 ], [ -95.732294101248044, 29.872638207673457 ], [ -95.732442100822254, 29.872950207887737 ], [ -95.732556101500677, 29.873211207780827 ], [ -95.732651101561231, 29.873475207885889 ], [ -95.732701101486853, 29.873653207850364 ], [ -95.732751101320403, 29.873902208041134 ], [ -95.732789101071731, 29.874185207552237 ], [ -95.732800101400954, 29.87436520809106 ], [ -95.732803100719522, 29.874573207721763 ], [ -95.732792101048815, 29.87479420795659 ], [ -95.732739101228574, 29.875133207696972 ], [ -95.732731101664498, 29.875175208132646 ], [ -95.732677100862219, 29.87540520829948 ], [ -95.73259710101874, 29.875652208415968 ], [ -95.732491101126413, 29.875923208612317 ], [ -95.73227210143331, 29.87645320847183 ], [ -95.732171101649001, 29.876714208046405 ], [ -95.732040101430059, 29.877118208276634 ], [ -95.732023100750752, 29.877195208807716 ], [ -95.732002101159551, 29.877263208246738 ], [ -95.731957101120358, 29.877481208528824 ], [ -95.73192710148362, 29.877642208851778 ], [ -95.731895101528053, 29.877856208855647 ], [ -95.731882100732861, 29.877946208776805 ], [ -95.731875101313591, 29.87806220849637 ], [ -95.73186110164535, 29.878171208978955 ], [ -95.731855101125291, 29.878405209238867 ], [ -95.731859101584064, 29.878528209029202 ], [ -95.731854100831541, 29.878641208592875 ], [ -95.73185610128678, 29.878760209184389 ], [ -95.731872100737107, 29.879074208695041 ], [ -95.731911101171761, 29.879381208672726 ], [ -95.731912101345628, 29.879503209319356 ], [ -95.731902100958024, 29.879667209408368 ], [ -95.73524210227211, 29.879652208555289 ], [ -95.738018102748782, 29.879632208492222 ], [ -95.739296103136255, 29.879622208600221 ], [ -95.739477103513224, 29.879621208390727 ], [ -95.740631103837231, 29.879629208957073 ], [ -95.740817103570222, 29.879630208404528 ], [ -95.741271103587309, 29.879612208530087 ], [ -95.741551103285261, 29.879587208686708 ], [ -95.741637103379205, 29.879574208501605 ], [ -95.741852103681907, 29.87954320874173 ], [ -95.742186103954637, 29.879489208626055 ], [ -95.742515103883619, 29.879391208828427 ], [ -95.742808104295293, 29.879306208254803 ], [ -95.74320410368307, 29.879176208872991 ], [ -95.743546104499188, 29.879037208874852 ], [ -95.743770104504719, 29.878919208452306 ], [ -95.744004104512058, 29.878782208898684 ], [ -95.744238104402882, 29.878655208289498 ], [ -95.744482103906449, 29.878481208679002 ], [ -95.744799104683011, 29.878248208514993 ], [ -95.745085104049977, 29.878016208253722 ], [ -95.745491104511672, 29.877589208270646 ], [ -95.745577105090788, 29.877499208213774 ], [ -95.745641104693604, 29.877430208359769 ], [ -95.745968104876553, 29.87711220766391 ], [ -95.746305104801209, 29.876804207972242 ], [ -95.746654104951418, 29.876533207853946 ], [ -95.747079104467787, 29.876270207680172 ], [ -95.747462105481446, 29.876055208176322 ], [ -95.748199105096091, 29.875733207866471 ], [ -95.748759105545631, 29.875567207972097 ], [ -95.749175105301475, 29.87545920726005 ], [ -95.749246105142561, 29.875447207985335 ], [ -95.74956210515731, 29.875394207713125 ], [ -95.750163105885804, 29.875278207427957 ], [ -95.756044107036729, 29.87526620750619 ], [ -95.756384106969705, 29.87526620690128 ], [ -95.756670107619357, 29.875266206894473 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 888, "Tract": "48201541302", "Area_SqMi": 0.82415412981284664, "total_2009": 410, "total_2010": 369, "total_2011": 227, "total_2012": 336, "total_2013": 342, "total_2014": 320, "total_2015": 367, "total_2016": 366, "total_2017": 334, "total_2018": 336, "total_2019": 345, "total_2020": 379, "age1": 138, "age2": 280, "age3": 78, "earn1": 134, "earn2": 150, "earn3": 212, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 4, "naics_s06": 0, "naics_s07": 66, "naics_s08": 4, "naics_s09": 0, "naics_s10": 17, "naics_s11": 0, "naics_s12": 55, "naics_s13": 40, "naics_s14": 17, "naics_s15": 124, "naics_s16": 28, "naics_s17": 31, "naics_s18": 68, "naics_s19": 31, "naics_s20": 1, "race1": 336, "race2": 75, "race3": 2, "race4": 73, "race5": 0, "race6": 10, "ethnicity1": 345, "ethnicity2": 151, "edu1": 80, "edu2": 74, "edu3": 107, "edu4": 97, "Shape_Length": 19735.735186166945, "Shape_Area": 22976006.585291706, "total_2021": 433, "total_2022": 496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.683354088379815, 29.878033210104427 ], [ -95.683354088828182, 29.877594210716108 ], [ -95.683347088672761, 29.876481209759849 ], [ -95.683342088850296, 29.87539521021548 ], [ -95.683331089078976, 29.873626209076573 ], [ -95.683309088004236, 29.872235208806387 ], [ -95.683308088651017, 29.871951209298999 ], [ -95.683306088547454, 29.871747209118631 ], [ -95.683305088277208, 29.8713862090353 ], [ -95.683302088394669, 29.870920209225581 ], [ -95.683295088505261, 29.869385208789168 ], [ -95.683293088347398, 29.868916208903769 ], [ -95.683294088212875, 29.868368208443265 ], [ -95.683302088273564, 29.867967208559723 ], [ -95.68330908810718, 29.867675208437667 ], [ -95.683310088653073, 29.867351208410184 ], [ -95.683307088681119, 29.866236207879268 ], [ -95.683305087996715, 29.865838207901785 ], [ -95.683304088482103, 29.865366207734834 ], [ -95.682640088341827, 29.865372207692136 ], [ -95.682468088338027, 29.865373207910515 ], [ -95.681941087515838, 29.865363208044755 ], [ -95.680911087507113, 29.865361208284845 ], [ -95.68077408804858, 29.865361207628755 ], [ -95.67983308687154, 29.865368207978619 ], [ -95.676009086380915, 29.865387207891221 ], [ -95.674835085780003, 29.865391208260174 ], [ -95.674141085594414, 29.865398207814106 ], [ -95.674065085797295, 29.865399208130626 ], [ -95.673518085992029, 29.865401207871653 ], [ -95.672984085685187, 29.865404208330837 ], [ -95.672485085493918, 29.865407208397873 ], [ -95.671929085594741, 29.865407208473446 ], [ -95.671480084993334, 29.865416208121818 ], [ -95.671045084933553, 29.865432208353006 ], [ -95.670775084926134, 29.865442207948409 ], [ -95.670506084660502, 29.865442207881159 ], [ -95.670251084835428, 29.865433208690231 ], [ -95.670009084680558, 29.865416208221898 ], [ -95.669674085088431, 29.865377208048137 ], [ -95.669198084575839, 29.865306208321428 ], [ -95.669058084661984, 29.865285208661287 ], [ -95.668995084953636, 29.865509208181827 ], [ -95.668937084822815, 29.865828208117055 ], [ -95.668913084198536, 29.866075208609065 ], [ -95.668894084954431, 29.866552208664796 ], [ -95.668900085040576, 29.866755208302596 ], [ -95.668927084283212, 29.867138208862286 ], [ -95.669004085010783, 29.867572208683473 ], [ -95.669062085051365, 29.867839209020676 ], [ -95.669124084820808, 29.868207208589233 ], [ -95.669132084800935, 29.868274209051314 ], [ -95.669167084270981, 29.868403208540901 ], [ -95.669180084287021, 29.868466209306376 ], [ -95.669184084437475, 29.868541209194323 ], [ -95.669186084826663, 29.868570208753443 ], [ -95.669192084518357, 29.868734209134288 ], [ -95.669208084733583, 29.868891209281113 ], [ -95.669211084578606, 29.869211209114603 ], [ -95.669212085216159, 29.869310208717316 ], [ -95.669213084564348, 29.869381208806342 ], [ -95.669215084403987, 29.869450209273896 ], [ -95.669220084683076, 29.869625208761704 ], [ -95.669224084788311, 29.869741209590931 ], [ -95.669221084631829, 29.870210208864084 ], [ -95.66923008488213, 29.870917209049271 ], [ -95.669258085343515, 29.871530209940044 ], [ -95.669268085057169, 29.871946209811139 ], [ -95.669268084718624, 29.872135209281687 ], [ -95.66926808478523, 29.872389209864281 ], [ -95.669268085226321, 29.872813209925631 ], [ -95.669211085351876, 29.873313209750769 ], [ -95.669079085302187, 29.873729210118558 ], [ -95.66897508521977, 29.874096210207185 ], [ -95.668824085399422, 29.874417209957677 ], [ -95.668655085335317, 29.874766210565195 ], [ -95.668456084750161, 29.875229210190824 ], [ -95.668306084485678, 29.875663210249815 ], [ -95.668230084308831, 29.876144210524259 ], [ -95.668145084562909, 29.876653210454677 ], [ -95.668164084751595, 29.876946210467839 ], [ -95.668159085016157, 29.877507210962275 ], [ -95.668173085056694, 29.878144210850337 ], [ -95.668173084532313, 29.878705210730335 ], [ -95.668156084935987, 29.879019210956795 ], [ -95.668359084811613, 29.879018211293122 ], [ -95.669200085432294, 29.87901221104115 ], [ -95.670374085481839, 29.879004210779829 ], [ -95.671399085578216, 29.878997211406077 ], [ -95.672893085760066, 29.878988210639402 ], [ -95.67297308617762, 29.878987210666367 ], [ -95.673211086436254, 29.878986210568073 ], [ -95.673704086533476, 29.878982210800451 ], [ -95.675088086186847, 29.878973211147141 ], [ -95.676133086517538, 29.878966210980455 ], [ -95.677753087801534, 29.87894421118866 ], [ -95.678034086962811, 29.878949210647249 ], [ -95.678489087492039, 29.878957210517196 ], [ -95.678825087990688, 29.878988210878717 ], [ -95.679053087823974, 29.879018210443622 ], [ -95.679193087519664, 29.879037210713626 ], [ -95.679628087638136, 29.879122211167324 ], [ -95.680254088197358, 29.87931621048191 ], [ -95.68045608771348, 29.87937821088827 ], [ -95.68111108814368, 29.879610211218782 ], [ -95.681590087947626, 29.879760210422777 ], [ -95.682057088278796, 29.879845210920369 ], [ -95.682513088697675, 29.879920210860163 ], [ -95.683043089176167, 29.879947210997429 ], [ -95.683303088944939, 29.879946210648118 ], [ -95.683291088733938, 29.879429210536244 ], [ -95.683295088316811, 29.879141210544613 ], [ -95.683309088718303, 29.878773210913746 ], [ -95.683327088426765, 29.878471210730606 ], [ -95.683335088815255, 29.878341210218231 ], [ -95.683354088379815, 29.878033210104427 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 889, "Tract": "48201423304", "Area_SqMi": 0.61469856584635885, "total_2009": 213, "total_2010": 257, "total_2011": 283, "total_2012": 294, "total_2013": 304, "total_2014": 321, "total_2015": 282, "total_2016": 305, "total_2017": 303, "total_2018": 360, "total_2019": 401, "total_2020": 381, "age1": 127, "age2": 275, "age3": 138, "earn1": 174, "earn2": 188, "earn3": 178, "naics_s01": 23, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 31, "naics_s06": 29, "naics_s07": 33, "naics_s08": 0, "naics_s09": 5, "naics_s10": 4, "naics_s11": 10, "naics_s12": 15, "naics_s13": 0, "naics_s14": 17, "naics_s15": 16, "naics_s16": 300, "naics_s17": 1, "naics_s18": 27, "naics_s19": 10, "naics_s20": 0, "race1": 293, "race2": 185, "race3": 8, "race4": 45, "race5": 0, "race6": 9, "ethnicity1": 389, "ethnicity2": 151, "edu1": 111, "edu2": 115, "edu3": 122, "edu4": 65, "Shape_Length": 17502.417796649919, "Shape_Area": 17136743.948686525, "total_2021": 407, "total_2022": 540 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.528109039649166, 29.664977172427275 ], [ -95.528113039914075, 29.66469717232857 ], [ -95.528091039027046, 29.66382417190059 ], [ -95.528068039504944, 29.662837171916884 ], [ -95.52806603983872, 29.662711172007942 ], [ -95.528074039320046, 29.661944171461222 ], [ -95.528069039817311, 29.661527171354393 ], [ -95.528066039795746, 29.661195171749984 ], [ -95.528064039031648, 29.661058171125621 ], [ -95.52805803914292, 29.66050317171436 ], [ -95.528054039029684, 29.660134171596379 ], [ -95.528041039044425, 29.658934170876822 ], [ -95.528033038941174, 29.658165170472262 ], [ -95.528048038998506, 29.65686617016917 ], [ -95.528031039304224, 29.65568916996116 ], [ -95.527272039386673, 29.6557041701065 ], [ -95.526682039209945, 29.655717170363761 ], [ -95.525644038080813, 29.655737170565093 ], [ -95.525393038011416, 29.655744170039149 ], [ -95.524697038314926, 29.655719170390011 ], [ -95.524514038360124, 29.655713170734874 ], [ -95.524349038286118, 29.655710170149035 ], [ -95.523562038035294, 29.655664170897932 ], [ -95.5227990380438, 29.655615170806005 ], [ -95.521749037360024, 29.655601170863459 ], [ -95.521513036988551, 29.65561717048017 ], [ -95.521440037978977, 29.655614170430038 ], [ -95.521312037067148, 29.655623170679927 ], [ -95.520435037608323, 29.655629170217555 ], [ -95.519654036744612, 29.655612170834356 ], [ -95.516996036262285, 29.655644170974401 ], [ -95.51692103648378, 29.655653170478221 ], [ -95.515547036174283, 29.655667170768126 ], [ -95.514492035231257, 29.655800171074588 ], [ -95.514186035318815, 29.655833170845089 ], [ -95.514217035788988, 29.656480170747567 ], [ -95.514215035238792, 29.657149170960761 ], [ -95.514232035729933, 29.657866170894163 ], [ -95.514250035922373, 29.658579171776164 ], [ -95.514256036103632, 29.659341171281149 ], [ -95.514265035695786, 29.659961171498846 ], [ -95.514273035922997, 29.660549171697404 ], [ -95.513324035977817, 29.660569171962766 ], [ -95.510982034586291, 29.660573171935628 ], [ -95.51098803514607, 29.661387172115965 ], [ -95.510998034923702, 29.661811172426702 ], [ -95.511084035029327, 29.662231172478489 ], [ -95.511507034982756, 29.66305717248671 ], [ -95.511755035648747, 29.663490172634422 ], [ -95.511915035608268, 29.663789172727778 ], [ -95.512155035322081, 29.66423617220126 ], [ -95.512287035920366, 29.664678173050792 ], [ -95.512324035378171, 29.665613172791844 ], [ -95.513420035961957, 29.665581172643957 ], [ -95.51436703560924, 29.665574172629928 ], [ -95.516344036447734, 29.665559173019371 ], [ -95.516658036311227, 29.665546172842113 ], [ -95.517192037130357, 29.665541173087668 ], [ -95.517510036619157, 29.665535173057947 ], [ -95.51772903722491, 29.665535172355813 ], [ -95.518047036602056, 29.665529172854569 ], [ -95.518744037529487, 29.665516172735998 ], [ -95.518886037335662, 29.665518172825973 ], [ -95.519728036968047, 29.665502172592475 ], [ -95.520161037595969, 29.665509172684466 ], [ -95.520584037811162, 29.665490172280791 ], [ -95.521277038348629, 29.66549017238388 ], [ -95.521389038126088, 29.665490172566418 ], [ -95.522628038350817, 29.66548017287311 ], [ -95.523440038563564, 29.66546517266676 ], [ -95.524319038329864, 29.665466172591341 ], [ -95.524962038949226, 29.665368172323806 ], [ -95.525460039033987, 29.665327172258987 ], [ -95.526093038903397, 29.665349171973162 ], [ -95.526316038677137, 29.665340172205962 ], [ -95.52651703941234, 29.665309172300002 ], [ -95.526783038924407, 29.665212172171799 ], [ -95.527038039536379, 29.665089172323867 ], [ -95.527321039746326, 29.664992172600542 ], [ -95.528109039649166, 29.664977172427275 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 890, "Tract": "48201331603", "Area_SqMi": 0.835211955680214, "total_2009": 51, "total_2010": 62, "total_2011": 74, "total_2012": 79, "total_2013": 76, "total_2014": 88, "total_2015": 112, "total_2016": 133, "total_2017": 159, "total_2018": 77, "total_2019": 73, "total_2020": 72, "age1": 27, "age2": 63, "age3": 29, "earn1": 30, "earn2": 29, "earn3": 60, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 13, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 89, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 2, "naics_s19": 0, "naics_s20": 0, "race1": 80, "race2": 31, "race3": 1, "race4": 5, "race5": 1, "race6": 1, "ethnicity1": 68, "ethnicity2": 51, "edu1": 27, "edu2": 25, "edu3": 26, "edu4": 14, "Shape_Length": 24331.82674177911, "Shape_Area": 23284279.844815791, "total_2021": 74, "total_2022": 119 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355952994196471, 29.63822517260688 ], [ -95.355957994286143, 29.637862172012955 ], [ -95.355908994576112, 29.636992172477779 ], [ -95.355878994069826, 29.636751172647724 ], [ -95.355870994144297, 29.636088172368801 ], [ -95.355852994374459, 29.63506017212794 ], [ -95.355842993944378, 29.634900171662117 ], [ -95.355835994101042, 29.63462517134937 ], [ -95.355832994119467, 29.634316171433092 ], [ -95.355839994204558, 29.634075171551252 ], [ -95.355799994386373, 29.633025171392298 ], [ -95.355777993560267, 29.632775171643264 ], [ -95.355760993716459, 29.632265171581366 ], [ -95.355661993947621, 29.628871170908514 ], [ -95.355638994295774, 29.628045170817096 ], [ -95.35562699401703, 29.627664170466016 ], [ -95.355621993696502, 29.627398169857109 ], [ -95.355582993236922, 29.625561170262579 ], [ -95.355547993856931, 29.625174169495672 ], [ -95.355522993199571, 29.624807169545079 ], [ -95.355529993617452, 29.624789169863956 ], [ -95.355477993807597, 29.623214169082363 ], [ -95.355494993158544, 29.622462169369737 ], [ -95.355461993025372, 29.622006169592439 ], [ -95.35544299305586, 29.621065168854358 ], [ -95.355428993285784, 29.620693169260068 ], [ -95.355433993332895, 29.619908168944431 ], [ -95.355437993310929, 29.619076168193697 ], [ -95.355466993589175, 29.617608168061722 ], [ -95.355421993333749, 29.617038167916849 ], [ -95.355430992766628, 29.616616168096908 ], [ -95.355165993452545, 29.616613167952973 ], [ -95.354424992764905, 29.616624168105947 ], [ -95.354166993041801, 29.616624167715095 ], [ -95.353312992891702, 29.61698816867036 ], [ -95.349403992301532, 29.618850169064142 ], [ -95.348543991125098, 29.619261169136152 ], [ -95.347490991299964, 29.61970316903987 ], [ -95.346539991415227, 29.620020168947633 ], [ -95.346250991201273, 29.620122169412952 ], [ -95.34596699052581, 29.620202168762425 ], [ -95.344670990864671, 29.620518169575522 ], [ -95.343344990602631, 29.620769169366085 ], [ -95.342001989530559, 29.62093016918319 ], [ -95.341625990175444, 29.621004169866609 ], [ -95.340913989222386, 29.621006169550807 ], [ -95.340872990055672, 29.621220169549172 ], [ -95.340698989207709, 29.622139170032916 ], [ -95.340395989763849, 29.623049170014777 ], [ -95.339603989851653, 29.625165170093517 ], [ -95.339463989716393, 29.625858170282715 ], [ -95.339361990024301, 29.626516171109614 ], [ -95.339335989429514, 29.626828170457799 ], [ -95.339331989639348, 29.627378170439567 ], [ -95.344073991107905, 29.62746017038247 ], [ -95.348938991724239, 29.627546170549465 ], [ -95.348929991964667, 29.627693170249863 ], [ -95.348918992123686, 29.630377171213262 ], [ -95.348893992533007, 29.630789171112642 ], [ -95.348912992606415, 29.631102171524642 ], [ -95.348910992406729, 29.631883171606095 ], [ -95.348908992131513, 29.632654171410916 ], [ -95.34890799282708, 29.633422171624559 ], [ -95.348912992186811, 29.636286172457542 ], [ -95.348914992159152, 29.636974172539539 ], [ -95.348857992240738, 29.637282172472876 ], [ -95.348832992597067, 29.637513173045267 ], [ -95.348834992823257, 29.637693172843644 ], [ -95.348837992317726, 29.63793517299144 ], [ -95.349379992983387, 29.638101172841122 ], [ -95.349371992221592, 29.638170172751757 ], [ -95.352555993292668, 29.6381971725258 ], [ -95.353000993479469, 29.638205172776072 ], [ -95.354411993948531, 29.638216172488015 ], [ -95.355506993980029, 29.638226172905917 ], [ -95.355797994101707, 29.638225172164905 ], [ -95.355952994196471, 29.63822517260688 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 891, "Tract": "48201542103", "Area_SqMi": 1.4524600162960208, "total_2009": 204, "total_2010": 344, "total_2011": 361, "total_2012": 349, "total_2013": 382, "total_2014": 341, "total_2015": 392, "total_2016": 437, "total_2017": 417, "total_2018": 401, "total_2019": 362, "total_2020": 304, "age1": 89, "age2": 179, "age3": 92, "earn1": 61, "earn2": 172, "earn3": 127, "naics_s01": 18, "naics_s02": 0, "naics_s03": 0, "naics_s04": 70, "naics_s05": 2, "naics_s06": 12, "naics_s07": 46, "naics_s08": 5, "naics_s09": 0, "naics_s10": 1, "naics_s11": 4, "naics_s12": 6, "naics_s13": 1, "naics_s14": 143, "naics_s15": 2, "naics_s16": 35, "naics_s17": 4, "naics_s18": 9, "naics_s19": 2, "naics_s20": 0, "race1": 249, "race2": 55, "race3": 3, "race4": 40, "race5": 6, "race6": 7, "ethnicity1": 215, "ethnicity2": 145, "edu1": 82, "edu2": 57, "edu3": 75, "edu4": 57, "Shape_Length": 28159.550408944469, "Shape_Area": 40492099.344170615, "total_2021": 323, "total_2022": 360 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.706276094113846, 29.864000206721052 ], [ -95.706278094422004, 29.863907207121102 ], [ -95.706262093570601, 29.863747206993189 ], [ -95.706121094200682, 29.863080206465423 ], [ -95.705962094122867, 29.862396206065029 ], [ -95.705884094128251, 29.862043206473608 ], [ -95.705835094101843, 29.861776206611943 ], [ -95.705794093741417, 29.86147120670698 ], [ -95.705774093763708, 29.86111820612809 ], [ -95.705926094159665, 29.85940820552894 ], [ -95.70584509397969, 29.858290205703028 ], [ -95.705846093127775, 29.858244205815915 ], [ -95.705899093644092, 29.856079205187307 ], [ -95.705828093428124, 29.855405205448868 ], [ -95.705729093503876, 29.85502020495387 ], [ -95.705500093129373, 29.854356204701816 ], [ -95.705464093145594, 29.854249205024324 ], [ -95.705446093082273, 29.854196204747794 ], [ -95.705346093711668, 29.853964204580979 ], [ -95.70523609316092, 29.853748204812032 ], [ -95.705113092695939, 29.853540204526272 ], [ -95.704960093387157, 29.853316204769939 ], [ -95.704807093167801, 29.853121204206165 ], [ -95.703697092273117, 29.85186520482112 ], [ -95.703533092250453, 29.851654204157917 ], [ -95.70338309230165, 29.851435204044645 ], [ -95.703245093017742, 29.851204203948981 ], [ -95.703131092561506, 29.850981204555165 ], [ -95.703036092233077, 29.850765203956914 ], [ -95.703004092802772, 29.850678204234438 ], [ -95.702948092867885, 29.850527203821798 ], [ -95.702876092286516, 29.850286204145725 ], [ -95.702816092438027, 29.850019204046422 ], [ -95.702654092054658, 29.849354204220059 ], [ -95.702651091951907, 29.848926203677916 ], [ -95.70264909216111, 29.848404203655065 ], [ -95.702647091820694, 29.848136203977791 ], [ -95.702642092626704, 29.848004203381429 ], [ -95.702635091832278, 29.84651320301694 ], [ -95.702635092663755, 29.846392203023758 ], [ -95.702610092254005, 29.845216203273228 ], [ -95.702609092690395, 29.845153202923601 ], [ -95.70214909199143, 29.845157202906027 ], [ -95.700777091586559, 29.845157202852231 ], [ -95.699901091839351, 29.84515820333365 ], [ -95.698251090761858, 29.845165202834231 ], [ -95.697987091504103, 29.845172203080256 ], [ -95.697846090785774, 29.845177203040532 ], [ -95.695433090833063, 29.845187202889626 ], [ -95.695199090378367, 29.845189203680736 ], [ -95.694624090246776, 29.845187203169502 ], [ -95.69355309021428, 29.845193203247952 ], [ -95.693253089459276, 29.845195203541952 ], [ -95.693095089912433, 29.845204203796019 ], [ -95.692958089646737, 29.845199203823359 ], [ -95.692482090049154, 29.84520720328069 ], [ -95.692380089110031, 29.845202202986027 ], [ -95.691256088788805, 29.845216203884053 ], [ -95.691161089680861, 29.845217203296858 ], [ -95.691065089018764, 29.845219203252192 ], [ -95.690759089549587, 29.845223203505384 ], [ -95.690573088651561, 29.845225203621577 ], [ -95.690463088986377, 29.845236203830513 ], [ -95.690378089525083, 29.845255203910149 ], [ -95.690297088864185, 29.845284203816991 ], [ -95.690199088685389, 29.845336203155952 ], [ -95.690095089178172, 29.845403203111996 ], [ -95.68998608859475, 29.845498203663247 ], [ -95.689931089353905, 29.845556203831965 ], [ -95.689879089385343, 29.84562520361963 ], [ -95.689832088925343, 29.845705203658234 ], [ -95.689794088526781, 29.845796203408334 ], [ -95.68977008897069, 29.845895203408631 ], [ -95.689759088748644, 29.846003203364027 ], [ -95.689756088738008, 29.846173203382509 ], [ -95.689775089186952, 29.848607204446598 ], [ -95.689778088687461, 29.849745204855839 ], [ -95.689790088677384, 29.85121520507807 ], [ -95.689791088777497, 29.851919204659382 ], [ -95.689792089636015, 29.852064204478921 ], [ -95.689810088873813, 29.85267620489028 ], [ -95.689797088953895, 29.853283205291266 ], [ -95.689802089457601, 29.853404205180471 ], [ -95.689798089770036, 29.853526205024124 ], [ -95.689812088840966, 29.854667205421549 ], [ -95.689809089163006, 29.854890205599283 ], [ -95.689817089669489, 29.855013205542043 ], [ -95.68981908929311, 29.856119205547529 ], [ -95.689818089038212, 29.856342205327159 ], [ -95.689818089014324, 29.856410205672251 ], [ -95.689534089014657, 29.856414206220073 ], [ -95.688497089547297, 29.856417205462336 ], [ -95.687939089145146, 29.856413205753356 ], [ -95.687315088311806, 29.856417205927372 ], [ -95.685119087910351, 29.856417205606263 ], [ -95.683736087694271, 29.856418206382106 ], [ -95.683384088156018, 29.856420205821649 ], [ -95.683245088011503, 29.856422205850624 ], [ -95.683233087493633, 29.857200206021222 ], [ -95.683228087390646, 29.858055206648473 ], [ -95.683229087481934, 29.85923620693816 ], [ -95.683230088068967, 29.859398206571999 ], [ -95.683232087922264, 29.859539206483621 ], [ -95.683245087524497, 29.860315206631189 ], [ -95.683271088161405, 29.861344207286635 ], [ -95.683275088451097, 29.86188820694948 ], [ -95.683285088340455, 29.8626652072975 ], [ -95.683288087870224, 29.863187207186918 ], [ -95.68329408859978, 29.863990207860322 ], [ -95.68329408849074, 29.864088207666384 ], [ -95.683304088482103, 29.865366207734834 ], [ -95.683899088753179, 29.865362207456862 ], [ -95.684105088038066, 29.865350207770653 ], [ -95.684668088607992, 29.865282208180886 ], [ -95.684794088998771, 29.865271207842738 ], [ -95.684941088642006, 29.865268207705345 ], [ -95.685194088740147, 29.86526520754731 ], [ -95.6860690892929, 29.865353207578266 ], [ -95.68830308923107, 29.865248207856805 ], [ -95.68964009027242, 29.865244207757023 ], [ -95.689874089651326, 29.865239207259926 ], [ -95.690126090308411, 29.865235207401199 ], [ -95.690286089710199, 29.865229207948953 ], [ -95.690603089619799, 29.865203207912511 ], [ -95.691106090605018, 29.865225207744633 ], [ -95.691474090587079, 29.865215207943287 ], [ -95.691606090639468, 29.865179207359972 ], [ -95.691670090643385, 29.865162207377697 ], [ -95.691682090451508, 29.86515920715507 ], [ -95.691894090669805, 29.865102207182257 ], [ -95.692295090810859, 29.864995207115939 ], [ -95.692367090753919, 29.864976207224345 ], [ -95.693325090273277, 29.864819206962984 ], [ -95.694292090905279, 29.864796207039195 ], [ -95.695999090917013, 29.864777206853041 ], [ -95.696216091778453, 29.86477420725539 ], [ -95.69803909201319, 29.864755207569225 ], [ -95.699922092383559, 29.864754206798285 ], [ -95.700323092586828, 29.864754207083237 ], [ -95.700719092214143, 29.864754206831712 ], [ -95.70165309276436, 29.864747206656361 ], [ -95.70183109262463, 29.864746206644657 ], [ -95.701935092786726, 29.864745206629749 ], [ -95.702364093109551, 29.864742206767858 ], [ -95.702531093305254, 29.864742207135897 ], [ -95.703305093254087, 29.864739206667938 ], [ -95.70340909373364, 29.864749206850604 ], [ -95.703509092962065, 29.864738207087672 ], [ -95.703616093213199, 29.86473620725133 ], [ -95.703955093769579, 29.864750207123265 ], [ -95.704320093179248, 29.864782206567206 ], [ -95.704796094060384, 29.864844207188138 ], [ -95.704925093202206, 29.864886206859758 ], [ -95.705828094247835, 29.865087206636037 ], [ -95.705972093716085, 29.865115206663564 ], [ -95.706081093567562, 29.865133206884241 ], [ -95.706173094313513, 29.864789207184312 ], [ -95.706213093672176, 29.864605206610232 ], [ -95.706256094397801, 29.864291207021783 ], [ -95.70626009421305, 29.864241206734668 ], [ -95.706276094325872, 29.864084206353539 ], [ -95.706276094113846, 29.864000206721052 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 892, "Tract": "48201550405", "Area_SqMi": 1.4702313887144007, "total_2009": 547, "total_2010": 550, "total_2011": 923, "total_2012": 1027, "total_2013": 1051, "total_2014": 1005, "total_2015": 965, "total_2016": 1528, "total_2017": 1674, "total_2018": 1725, "total_2019": 1500, "total_2020": 996, "age1": 263, "age2": 603, "age3": 239, "earn1": 195, "earn2": 370, "earn3": 540, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 51, "naics_s06": 44, "naics_s07": 118, "naics_s08": 0, "naics_s09": 1, "naics_s10": 51, "naics_s11": 7, "naics_s12": 11, "naics_s13": 0, "naics_s14": 78, "naics_s15": 17, "naics_s16": 500, "naics_s17": 0, "naics_s18": 107, "naics_s19": 99, "naics_s20": 0, "race1": 700, "race2": 260, "race3": 6, "race4": 127, "race5": 2, "race6": 10, "ethnicity1": 792, "ethnicity2": 313, "edu1": 144, "edu2": 227, "edu3": 269, "edu4": 202, "Shape_Length": 29817.45821744276, "Shape_Area": 40987534.791187175, "total_2021": 1106, "total_2022": 1105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484694042897814, 29.995395240872963 ], [ -95.484948043284874, 29.995244241370706 ], [ -95.484620042828936, 29.994785241168668 ], [ -95.484389043107683, 29.994437241115932 ], [ -95.484198042829263, 29.994166240901567 ], [ -95.484103043018052, 29.99404124076289 ], [ -95.483790042813254, 29.993600240894164 ], [ -95.483747042802236, 29.99353824115909 ], [ -95.483710042875671, 29.993493240500026 ], [ -95.483606042655737, 29.99336624069371 ], [ -95.483374042757362, 29.993061240737521 ], [ -95.482957042708577, 29.992530240379079 ], [ -95.482321042944477, 29.991665240522462 ], [ -95.482255042696877, 29.991591240132781 ], [ -95.48215104213854, 29.991437240309988 ], [ -95.482092042072665, 29.991357240540765 ], [ -95.481774042230285, 29.990928240177116 ], [ -95.481754042321882, 29.990901240171155 ], [ -95.481730042225507, 29.990868240664081 ], [ -95.480731042373193, 29.989499239995823 ], [ -95.480664042071098, 29.989402240156739 ], [ -95.480593042189966, 29.989318239961303 ], [ -95.47955004126645, 29.9879102399712 ], [ -95.479475041486168, 29.987803239505634 ], [ -95.479410041516815, 29.987692240055296 ], [ -95.479378041581697, 29.987629239929944 ], [ -95.479245041899972, 29.987335239561013 ], [ -95.479142041069053, 29.987064239644273 ], [ -95.479099041850006, 29.986927239487343 ], [ -95.479067041841333, 29.986827239950074 ], [ -95.4789990412159, 29.986539239461731 ], [ -95.478961041539534, 29.986324239669944 ], [ -95.478946041245834, 29.98620323963172 ], [ -95.478922041624642, 29.985820239299802 ], [ -95.478899040889431, 29.985224238929856 ], [ -95.478882041442859, 29.984900239303251 ], [ -95.478873041741565, 29.984800238817169 ], [ -95.478826041711258, 29.984530239001373 ], [ -95.478738041762753, 29.984165239281797 ], [ -95.478672041642682, 29.983953239005935 ], [ -95.478559041462432, 29.983653238851772 ], [ -95.478444041639833, 29.983405238665938 ], [ -95.478334040839741, 29.983205238535131 ], [ -95.478158040815131, 29.982938238563921 ], [ -95.477608040575419, 29.982174238792005 ], [ -95.477246040923518, 29.981671238394764 ], [ -95.476863040884169, 29.981150238176447 ], [ -95.475797039961009, 29.97968423828085 ], [ -95.475605040601991, 29.979443238358524 ], [ -95.475428039753837, 29.979242237844783 ], [ -95.475338039715723, 29.979147237711793 ], [ -95.475246039915007, 29.979057238567488 ], [ -95.475052039773502, 29.978886238043618 ], [ -95.474847039701643, 29.978729238113765 ], [ -95.47367403953443, 29.977919237690624 ], [ -95.473436039449879, 29.978181238459264 ], [ -95.473283039716577, 29.978326238394356 ], [ -95.473101039216502, 29.978470238248015 ], [ -95.472969039715707, 29.97856123830331 ], [ -95.472755039915825, 29.978687238329957 ], [ -95.472197039764424, 29.978993238288862 ], [ -95.47148203941137, 29.979385238159523 ], [ -95.471005038669858, 29.979647238709269 ], [ -95.470258038633176, 29.980057238116693 ], [ -95.469371039003889, 29.980553238797697 ], [ -95.469246038473443, 29.980625238550395 ], [ -95.471089039380757, 29.983205239503935 ], [ -95.471356039736179, 29.983588238779152 ], [ -95.471530039098738, 29.983866239432658 ], [ -95.471750039214058, 29.984261239234225 ], [ -95.472250039536192, 29.985390239704177 ], [ -95.470940038991728, 29.986137239845618 ], [ -95.468411039286323, 29.987459240049102 ], [ -95.468232038763489, 29.987620240202038 ], [ -95.467863038854432, 29.988337240193111 ], [ -95.467598038250557, 29.988942240481951 ], [ -95.467153039011322, 29.989997240747797 ], [ -95.466782038401647, 29.990782241148565 ], [ -95.466754038859008, 29.990755240467777 ], [ -95.466169037965685, 29.991939241287557 ], [ -95.465669037998566, 29.992334241532934 ], [ -95.464853038149656, 29.99266724145841 ], [ -95.46379203793208, 29.993108241377424 ], [ -95.462526037778744, 29.993700241839878 ], [ -95.462226037026895, 29.99389224147556 ], [ -95.461870037534041, 29.994123241457931 ], [ -95.461615037141897, 29.994390241589077 ], [ -95.461364036842568, 29.994805242137289 ], [ -95.46119103729221, 29.995239242294815 ], [ -95.460895036879904, 29.995961242367027 ], [ -95.460602037474303, 29.996788242707687 ], [ -95.460592036856781, 29.997092242517251 ], [ -95.460795037576247, 29.997359242393074 ], [ -95.461148037853889, 29.997822242468001 ], [ -95.460607037360901, 29.99812924219837 ], [ -95.46030203697994, 29.998349242869487 ], [ -95.459274037219728, 29.999027242636295 ], [ -95.458353037126543, 29.999669242490043 ], [ -95.457907036380703, 29.99995624329847 ], [ -95.458735036747257, 30.001073243511023 ], [ -95.458895037029492, 30.001272242981262 ], [ -95.459751037270777, 30.002275243047606 ], [ -95.459780036953148, 30.002309243800571 ], [ -95.459973036805806, 30.002536243833298 ], [ -95.460122037741442, 30.002712243839866 ], [ -95.460512037269922, 30.00316924331522 ], [ -95.460584037528164, 30.003253243246231 ], [ -95.462052037591405, 30.004971243522728 ], [ -95.462134038430833, 30.005066243821865 ], [ -95.462427038112438, 30.005409244036255 ], [ -95.463527038096586, 30.006706244503278 ], [ -95.463798038732506, 30.00703824462531 ], [ -95.464039038912048, 30.006915244369992 ], [ -95.465377038831136, 30.0063002443218 ], [ -95.465891039077249, 30.006027244379908 ], [ -95.466911039423039, 30.005459243815569 ], [ -95.467681039455059, 30.005031243443202 ], [ -95.468058039695421, 30.004822243663071 ], [ -95.468850039300591, 30.004381243194082 ], [ -95.469321039347648, 30.004119243294838 ], [ -95.469553039669023, 30.003990243827968 ], [ -95.469639040198317, 30.003942243398722 ], [ -95.470776040543385, 30.003342243071685 ], [ -95.471682040789318, 30.002864242854095 ], [ -95.472422040037742, 30.002393242585956 ], [ -95.472503040254495, 30.002348242786031 ], [ -95.472569041022908, 30.002311242979264 ], [ -95.47342104050739, 30.001837243117482 ], [ -95.473467040373308, 30.001812242779607 ], [ -95.474143040816188, 30.001436242967578 ], [ -95.475076041245842, 30.000916242848078 ], [ -95.47518504080773, 30.000855242522828 ], [ -95.475791041542365, 30.000519242810441 ], [ -95.476120041330603, 30.000286242013789 ], [ -95.47627204176213, 30.00017824283881 ], [ -95.476988041953504, 29.99975024229829 ], [ -95.477242042106212, 29.999597242463917 ], [ -95.477611042105792, 29.999393242529667 ], [ -95.477871041477712, 29.999250242310886 ], [ -95.47816504220259, 29.999087242152054 ], [ -95.478331042002011, 29.998994242070307 ], [ -95.478447041770835, 29.998931242079053 ], [ -95.478582041578093, 29.998854242078462 ], [ -95.47879404145111, 29.998737242139217 ], [ -95.479202041826724, 29.998511242009876 ], [ -95.4796070418125, 29.99828724156151 ], [ -95.479673042420927, 29.998250241954931 ], [ -95.479778042241989, 29.998191241576041 ], [ -95.480016042317033, 29.998058241613435 ], [ -95.480919042401808, 29.997557241613599 ], [ -95.481269042711475, 29.997360241691474 ], [ -95.48156604251605, 29.997194241379617 ], [ -95.481813042880205, 29.997054241754721 ], [ -95.482071042647476, 29.996910241648774 ], [ -95.483458042832254, 29.996133241595061 ], [ -95.483918043287886, 29.995856241485445 ], [ -95.484694042897814, 29.995395240872963 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 893, "Tract": "48201451604", "Area_SqMi": 0.78739177849499387, "total_2009": 1370, "total_2010": 1323, "total_2011": 1473, "total_2012": 1065, "total_2013": 1628, "total_2014": 2208, "total_2015": 2368, "total_2016": 2160, "total_2017": 2063, "total_2018": 2238, "total_2019": 2311, "total_2020": 2363, "age1": 446, "age2": 1489, "age3": 525, "earn1": 423, "earn2": 548, "earn3": 1489, "naics_s01": 0, "naics_s02": 15, "naics_s03": 10, "naics_s04": 11, "naics_s05": 0, "naics_s06": 74, "naics_s07": 30, "naics_s08": 17, "naics_s09": 2, "naics_s10": 31, "naics_s11": 39, "naics_s12": 999, "naics_s13": 0, "naics_s14": 46, "naics_s15": 4, "naics_s16": 1008, "naics_s17": 3, "naics_s18": 110, "naics_s19": 61, "naics_s20": 0, "race1": 1256, "race2": 646, "race3": 14, "race4": 505, "race5": 3, "race6": 36, "ethnicity1": 1972, "ethnicity2": 488, "edu1": 284, "edu2": 404, "edu3": 568, "edu4": 758, "Shape_Length": 22627.422156405661, "Shape_Area": 21951135.149943076, "total_2021": 2372, "total_2022": 2460 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.644614073377014, 29.762473187813235 ], [ -95.644610073698857, 29.762125188499528 ], [ -95.644581073053018, 29.759389187894378 ], [ -95.644585073249914, 29.759276187341268 ], [ -95.643485072799422, 29.759296187547953 ], [ -95.643022073559237, 29.759294187556343 ], [ -95.642705073323214, 29.759298188026605 ], [ -95.637798071675434, 29.75932618797788 ], [ -95.637652072092138, 29.75939518792336 ], [ -95.637239071154923, 29.759594187957891 ], [ -95.637261071638676, 29.760299187963057 ], [ -95.637263071601907, 29.760967188193643 ], [ -95.637243071748699, 29.761596187981393 ], [ -95.63726407219842, 29.762241188038882 ], [ -95.637262072069959, 29.762852188263061 ], [ -95.637272071464963, 29.763546188781898 ], [ -95.634451071488428, 29.763580188604909 ], [ -95.634114071286845, 29.76355718888788 ], [ -95.633833070657545, 29.763525188887648 ], [ -95.633195070420911, 29.763328188780701 ], [ -95.632960070615013, 29.763702188951527 ], [ -95.632753071193463, 29.763932188493765 ], [ -95.632419070585485, 29.764171188633625 ], [ -95.631800070477198, 29.764497189195282 ], [ -95.631699070216143, 29.764539188702329 ], [ -95.631276069886383, 29.764627188874542 ], [ -95.631049070479619, 29.764649188644505 ], [ -95.630904070095255, 29.764663189172449 ], [ -95.630445070610691, 29.764632189335188 ], [ -95.629955069902977, 29.76457418941602 ], [ -95.629642069694611, 29.764512189289952 ], [ -95.629087070196164, 29.764377189243994 ], [ -95.628656069673227, 29.764252188857753 ], [ -95.628429069122774, 29.764192188743603 ], [ -95.628225070090835, 29.764146188736042 ], [ -95.628017069603004, 29.764098188642052 ], [ -95.627651069422683, 29.76404218923852 ], [ -95.627341069841052, 29.764022188828044 ], [ -95.627236068865287, 29.764020188784421 ], [ -95.626873069157, 29.764011189249771 ], [ -95.625480068946885, 29.76399518935877 ], [ -95.625387068766813, 29.764006188837364 ], [ -95.625361068774097, 29.76416918927848 ], [ -95.625202069212477, 29.765298189880184 ], [ -95.624744068531157, 29.766425189766458 ], [ -95.624639068973877, 29.766602189903143 ], [ -95.62449206839328, 29.766852189938273 ], [ -95.623223068531843, 29.768687189861264 ], [ -95.623199068622441, 29.768722190211371 ], [ -95.623134068721782, 29.768811190216041 ], [ -95.623065068023905, 29.768892189769748 ], [ -95.622787068222678, 29.769276190379294 ], [ -95.622065068715727, 29.77046119051494 ], [ -95.62182606865467, 29.770795190300856 ], [ -95.621396068505433, 29.771307191025667 ], [ -95.621333068578821, 29.771382190636007 ], [ -95.622927069008568, 29.77232419073421 ], [ -95.62313906853224, 29.772467190766051 ], [ -95.623358068704562, 29.772583191203303 ], [ -95.624889068767075, 29.773483191455593 ], [ -95.625228069552264, 29.773611190726118 ], [ -95.626863069543518, 29.773743191065471 ], [ -95.626937069712667, 29.773742191401912 ], [ -95.627848070352101, 29.773732190737189 ], [ -95.628016070221619, 29.773738191407652 ], [ -95.628191070427263, 29.773745191163833 ], [ -95.628414069861535, 29.773753190639315 ], [ -95.629403070081537, 29.773792190745567 ], [ -95.630203070882501, 29.773823191108178 ], [ -95.630600070526356, 29.773839191266696 ], [ -95.631386071252194, 29.773894191109814 ], [ -95.631736071259525, 29.77391919060188 ], [ -95.631998071019808, 29.773937191200197 ], [ -95.632440070723419, 29.773871190694983 ], [ -95.632641070991482, 29.773842190478351 ], [ -95.63279107067217, 29.773782191315782 ], [ -95.633363071095104, 29.773319190478205 ], [ -95.633519071584303, 29.773000190594331 ], [ -95.63352507109829, 29.772988190466009 ], [ -95.63357407100014, 29.772795190301029 ], [ -95.633905071210648, 29.77151419082 ], [ -95.634107071456214, 29.771081190615106 ], [ -95.634337071838758, 29.770785189924851 ], [ -95.634912071463972, 29.77051018982085 ], [ -95.639693072814026, 29.76905719006038 ], [ -95.640295072695679, 29.768942189698784 ], [ -95.640558072470427, 29.768936189736426 ], [ -95.641610072952105, 29.769081189699431 ], [ -95.643319073478494, 29.769373189453116 ], [ -95.643339073162764, 29.769297189527521 ], [ -95.643443073150365, 29.768903189630446 ], [ -95.643492074059139, 29.768721189773455 ], [ -95.643656073258327, 29.768107189534 ], [ -95.643757074193758, 29.767634188932188 ], [ -95.643870073562638, 29.767124189592916 ], [ -95.643936073332171, 29.766845189320208 ], [ -95.643988074043051, 29.766635188922635 ], [ -95.644059073332116, 29.766327188616991 ], [ -95.644437073982445, 29.764648188442237 ], [ -95.644489073793522, 29.764390188272454 ], [ -95.64458507416424, 29.763832188030506 ], [ -95.64460507368284, 29.763716188120934 ], [ -95.644614073377014, 29.762473187813235 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 894, "Tract": "48201550901", "Area_SqMi": 0.64160845800092414, "total_2009": 177, "total_2010": 188, "total_2011": 266, "total_2012": 281, "total_2013": 327, "total_2014": 341, "total_2015": 385, "total_2016": 401, "total_2017": 408, "total_2018": 417, "total_2019": 448, "total_2020": 440, "age1": 161, "age2": 212, "age3": 92, "earn1": 82, "earn2": 208, "earn3": 175, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 33, "naics_s05": 56, "naics_s06": 7, "naics_s07": 213, "naics_s08": 6, "naics_s09": 0, "naics_s10": 15, "naics_s11": 4, "naics_s12": 9, "naics_s13": 0, "naics_s14": 15, "naics_s15": 71, "naics_s16": 19, "naics_s17": 0, "naics_s18": 5, "naics_s19": 12, "naics_s20": 0, "race1": 319, "race2": 113, "race3": 3, "race4": 23, "race5": 0, "race6": 7, "ethnicity1": 280, "ethnicity2": 185, "edu1": 66, "edu2": 87, "edu3": 92, "edu4": 59, "Shape_Length": 27603.389268863615, "Shape_Area": 17886945.685215086, "total_2021": 453, "total_2022": 465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.498340044565722, 29.956872233025933 ], [ -95.498329044698195, 29.95663923274369 ], [ -95.498296045406406, 29.955667232479087 ], [ -95.498205045225319, 29.953008231919583 ], [ -95.498194045152943, 29.952568232134738 ], [ -95.4981880446432, 29.952315231575696 ], [ -95.498187045239916, 29.952300231664076 ], [ -95.498186044943537, 29.95226823158637 ], [ -95.498165045186298, 29.951709231594439 ], [ -95.498145044881269, 29.95111723204667 ], [ -95.498128044931718, 29.950603231532796 ], [ -95.498107045024554, 29.949859231403796 ], [ -95.498096044943281, 29.949558231678743 ], [ -95.498081045097038, 29.949161231700035 ], [ -95.498065044627495, 29.948697231145623 ], [ -95.497776044907809, 29.948708231517028 ], [ -95.49733404469174, 29.948736230987347 ], [ -95.497157044853267, 29.948736231493264 ], [ -95.497006044537017, 29.948774231097964 ], [ -95.496589044550149, 29.948797231166044 ], [ -95.496280044128454, 29.948769231047699 ], [ -95.495807043797186, 29.948819231094657 ], [ -95.495642043512518, 29.948781230817424 ], [ -95.495459043483976, 29.94875323135307 ], [ -95.495295044260445, 29.948693231008587 ], [ -95.49510604374143, 29.948561231174384 ], [ -95.494885043930751, 29.948248231618997 ], [ -95.494727044197035, 29.948121231269745 ], [ -95.494537043712327, 29.948028231314307 ], [ -95.494373043668858, 29.947929230880138 ], [ -95.494146043969224, 29.947852231003438 ], [ -95.494083043889106, 29.947852231226591 ], [ -95.494038043224592, 29.947902230814773 ], [ -95.493988043545031, 29.9479132309243 ], [ -95.493906043641374, 29.947891230798433 ], [ -95.493805043444127, 29.947836231417668 ], [ -95.493685043538377, 29.947808231183728 ], [ -95.493363042878926, 29.947814230782345 ], [ -95.492921043766245, 29.947842231039807 ], [ -95.49263104290705, 29.947842231340786 ], [ -95.492422043131938, 29.94785323147735 ], [ -95.492290043377125, 29.94783123095732 ], [ -95.492151042956607, 29.947820231322364 ], [ -95.492031043344639, 29.947842231029238 ], [ -95.4918860433052, 29.947826231078658 ], [ -95.491760042574754, 29.947771231218962 ], [ -95.49169604339879, 29.947771231290613 ], [ -95.491520043428878, 29.947705230835382 ], [ -95.491311042717285, 29.947716231019847 ], [ -95.491078042706064, 29.947766231639545 ], [ -95.49013704300269, 29.947832231631867 ], [ -95.489885042632878, 29.947843230953588 ], [ -95.489758042520137, 29.947838231589106 ], [ -95.489474042357344, 29.947733231608137 ], [ -95.489196042492281, 29.947558230806621 ], [ -95.48891804242794, 29.94742023091057 ], [ -95.488780042310395, 29.947404231029189 ], [ -95.48842004156036, 29.947223231631941 ], [ -95.488167041911012, 29.947074230746839 ], [ -95.48816104178556, 29.946964230820218 ], [ -95.488085041905052, 29.946887231481711 ], [ -95.487801042346391, 29.946745230803145 ], [ -95.487100041681828, 29.946437230708927 ], [ -95.486715041483635, 29.946250230846506 ], [ -95.486039041456706, 29.946152230755693 ], [ -95.485686041042825, 29.946124231229319 ], [ -95.485477041702467, 29.946069231435089 ], [ -95.485002040962627, 29.946015231427204 ], [ -95.484076040942796, 29.945910231428499 ], [ -95.483807041333563, 29.945870230929039 ], [ -95.483775041275507, 29.946085231334116 ], [ -95.483727040370553, 29.946305230861917 ], [ -95.48356104087668, 29.946911231666029 ], [ -95.483429040393261, 29.947415231400502 ], [ -95.4834030407591, 29.947532231526434 ], [ -95.483354041318719, 29.947832231703785 ], [ -95.483329040848005, 29.948056231722592 ], [ -95.483317040322177, 29.948292231871381 ], [ -95.483323040958908, 29.948899231783372 ], [ -95.483340040691999, 29.949619232015319 ], [ -95.483343040899797, 29.949820231837478 ], [ -95.483346041029534, 29.950012231951515 ], [ -95.483355040795615, 29.950664231789581 ], [ -95.483374040846357, 29.951512231887378 ], [ -95.483378040564773, 29.951968232021166 ], [ -95.483391040805742, 29.952511232515995 ], [ -95.483405041184625, 29.9534372325307 ], [ -95.483409041381407, 29.95388623282177 ], [ -95.483417041028204, 29.954657233114066 ], [ -95.483403041220882, 29.954894232806222 ], [ -95.48339604140422, 29.9550062326805 ], [ -95.483375041594186, 29.955201233134996 ], [ -95.483318041127418, 29.955512233159411 ], [ -95.483243041070153, 29.955833233464499 ], [ -95.483180041550057, 29.956046233342573 ], [ -95.483065041210665, 29.95635623296306 ], [ -95.48294004073847, 29.956639233249117 ], [ -95.482819040722035, 29.956876233275626 ], [ -95.482667041293567, 29.957142233474553 ], [ -95.482444040857686, 29.957481233764849 ], [ -95.482153041303377, 29.957922233966816 ], [ -95.481928040458655, 29.958248233413439 ], [ -95.48178304068631, 29.958431233822999 ], [ -95.481714041079826, 29.958509234121866 ], [ -95.481609041102104, 29.958626233994615 ], [ -95.481524041143444, 29.958716233576659 ], [ -95.48148004036328, 29.958762233344942 ], [ -95.481328040915244, 29.958923233474433 ], [ -95.481025040463095, 29.959220234341171 ], [ -95.480808040878728, 29.959410233531365 ], [ -95.480584040477851, 29.959589234109799 ], [ -95.480352040562636, 29.959753233978876 ], [ -95.480108040895956, 29.959911234404995 ], [ -95.479855040611255, 29.960062234461606 ], [ -95.479473040278464, 29.960266234391678 ], [ -95.478918040300144, 29.960557234046103 ], [ -95.478178039747533, 29.9609452339981 ], [ -95.477999040525745, 29.961045234139299 ], [ -95.478308039889882, 29.961450234294396 ], [ -95.47874703990513, 29.962021234432566 ], [ -95.479024040077064, 29.96238723493623 ], [ -95.4791890408694, 29.962602234590364 ], [ -95.47934204059267, 29.96280123514104 ], [ -95.479608040401828, 29.963151234528322 ], [ -95.480026041054188, 29.963697234545165 ], [ -95.48050304034038, 29.964321234572402 ], [ -95.480670040478813, 29.964311235391712 ], [ -95.480986041081877, 29.964280235152334 ], [ -95.481293041481337, 29.964244234489687 ], [ -95.481389041272166, 29.964233234881622 ], [ -95.481539041446837, 29.964216234592715 ], [ -95.481688041583482, 29.964198234949961 ], [ -95.481873041545612, 29.964177234994533 ], [ -95.482250041334694, 29.96413823466904 ], [ -95.482555041503957, 29.964119234843043 ], [ -95.483313041818079, 29.964109234485949 ], [ -95.484493041502944, 29.96408023482994 ], [ -95.484696041934541, 29.964072234635772 ], [ -95.484715041457804, 29.964034235111185 ], [ -95.484715041386892, 29.96399923478177 ], [ -95.48470704233209, 29.963636234283648 ], [ -95.485151042498671, 29.9636302345553 ], [ -95.485380041561754, 29.963596234483862 ], [ -95.485341042486382, 29.963183234581901 ], [ -95.485351042400808, 29.963049234522856 ], [ -95.485366041838262, 29.962859234632784 ], [ -95.485341041571004, 29.962441234286217 ], [ -95.485321041889819, 29.961210234352155 ], [ -95.485302042292119, 29.961045234074909 ], [ -95.485309041501026, 29.960786234292083 ], [ -95.485284042319819, 29.960406234199173 ], [ -95.485270042326619, 29.960182233811143 ], [ -95.485289041615758, 29.959995233940202 ], [ -95.485270042005197, 29.959632233890851 ], [ -95.485289042188072, 29.959132233431806 ], [ -95.48526804144592, 29.958553233248583 ], [ -95.485238041552606, 29.957763233206173 ], [ -95.485231041668669, 29.957565233357204 ], [ -95.48519804131513, 29.957072233733175 ], [ -95.485180041880014, 29.956790233005762 ], [ -95.485199042048578, 29.956641233567982 ], [ -95.485186042118627, 29.956449233093583 ], [ -95.485186041610604, 29.956353233310193 ], [ -95.485186041942015, 29.956069233341214 ], [ -95.485162041162454, 29.955612233045123 ], [ -95.485135041933347, 29.955074232938259 ], [ -95.485142041271388, 29.954977233069538 ], [ -95.485148041266967, 29.954887232755787 ], [ -95.485116041627094, 29.954497232935939 ], [ -95.48510504102228, 29.95387523265622 ], [ -95.485097041093695, 29.953344232726604 ], [ -95.485096041400837, 29.953310232342403 ], [ -95.485102041629176, 29.953112232237434 ], [ -95.485431041754111, 29.953123232345902 ], [ -95.485813041333557, 29.953114232137935 ], [ -95.486870041521769, 29.953089232255998 ], [ -95.489761042420469, 29.952994232571413 ], [ -95.489925042414924, 29.952997232289459 ], [ -95.490020043059459, 29.953000232224809 ], [ -95.490393042913794, 29.953110232243088 ], [ -95.490797042695164, 29.953247232642742 ], [ -95.491308043448072, 29.953505232327508 ], [ -95.491852042977925, 29.953813232479014 ], [ -95.492094043117177, 29.953939232723886 ], [ -95.492600043280717, 29.954205232488292 ], [ -95.492265043410328, 29.954689232440074 ], [ -95.491812042800845, 29.955342233029494 ], [ -95.491355042939887, 29.955990232879639 ], [ -95.491303043734973, 29.956065232523756 ], [ -95.491200043204543, 29.956235232893842 ], [ -95.491109043589077, 29.956399233251318 ], [ -95.491062042987465, 29.956526233071536 ], [ -95.491054043589614, 29.956580233140148 ], [ -95.491035042830248, 29.956657233231613 ], [ -95.490994042969078, 29.956865233291609 ], [ -95.4909810432992, 29.957034233422672 ], [ -95.490982043305948, 29.957122233396998 ], [ -95.490989043228893, 29.957208233003144 ], [ -95.491002043070196, 29.957288232896218 ], [ -95.491064043696667, 29.957518232837259 ], [ -95.49110504319998, 29.957626233280457 ], [ -95.49116404334184, 29.957745233652378 ], [ -95.491217043711259, 29.957838233554124 ], [ -95.491361042855701, 29.958056233569323 ], [ -95.491779043622941, 29.958636233232873 ], [ -95.491789043648737, 29.958650233623974 ], [ -95.491843043608156, 29.958627233318484 ], [ -95.493856044265371, 29.95751023336679 ], [ -95.494326043897033, 29.957243233474966 ], [ -95.494497044026204, 29.95715523317751 ], [ -95.49464704422455, 29.957089232711169 ], [ -95.494737044656745, 29.957054232640296 ], [ -95.494846044369837, 29.957019232993112 ], [ -95.495028043883323, 29.956979233273788 ], [ -95.495186044329188, 29.956960232709719 ], [ -95.495304044592203, 29.956950232683148 ], [ -95.496036044892804, 29.956925233290853 ], [ -95.496902044192652, 29.956901233210225 ], [ -95.497271045271475, 29.956893232860313 ], [ -95.49735104517724, 29.956895233238676 ], [ -95.497520044412312, 29.956892232619872 ], [ -95.497605044810356, 29.956887232898946 ], [ -95.497694044577287, 29.956890233228979 ], [ -95.497948045175519, 29.956882233169349 ], [ -95.498022044907842, 29.956883232731144 ], [ -95.49809004472246, 29.956876233234286 ], [ -95.498340044565722, 29.956872233025933 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 895, "Tract": "48201334101", "Area_SqMi": 6.0562405491170139, "total_2009": 10099, "total_2010": 10142, "total_2011": 10077, "total_2012": 11522, "total_2013": 11000, "total_2014": 12283, "total_2015": 12736, "total_2016": 13610, "total_2017": 11881, "total_2018": 10181, "total_2019": 10471, "total_2020": 10936, "age1": 2747, "age2": 6975, "age3": 2513, "earn1": 1040, "earn2": 2617, "earn3": 8578, "naics_s01": 19, "naics_s02": 188, "naics_s03": 0, "naics_s04": 738, "naics_s05": 1497, "naics_s06": 2851, "naics_s07": 1440, "naics_s08": 1057, "naics_s09": 141, "naics_s10": 42, "naics_s11": 244, "naics_s12": 1016, "naics_s13": 137, "naics_s14": 870, "naics_s15": 6, "naics_s16": 531, "naics_s17": 0, "naics_s18": 753, "naics_s19": 705, "naics_s20": 0, "race1": 8768, "race2": 2475, "race3": 110, "race4": 696, "race5": 17, "race6": 169, "ethnicity1": 7972, "ethnicity2": 4263, "edu1": 2009, "edu2": 2528, "edu3": 2873, "edu4": 2078, "Shape_Length": 89329.214524097682, "Shape_Area": 168837621.15008959, "total_2021": 11060, "total_2022": 12235 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.442285017079726, 29.656158173179783 ], [ -95.442138017330933, 29.656214172936661 ], [ -95.44186601685837, 29.656322172968803 ], [ -95.441363017434469, 29.656502173278085 ], [ -95.437794016639614, 29.65789917385149 ], [ -95.437325016016118, 29.658078173875722 ], [ -95.434054015577843, 29.659330174249078 ], [ -95.433294014750061, 29.659609174035513 ], [ -95.431048014242933, 29.660419174558157 ], [ -95.430847014095505, 29.660467174439706 ], [ -95.429310013934142, 29.660927174549084 ], [ -95.426357013145278, 29.661810174921072 ], [ -95.425769013093188, 29.661986175082852 ], [ -95.422897012275243, 29.662835175112136 ], [ -95.420864011744641, 29.663438175162483 ], [ -95.420218011657226, 29.663630175774916 ], [ -95.416508011316964, 29.66472917566163 ], [ -95.413151009786773, 29.665728176376213 ], [ -95.412329009831041, 29.665979176401301 ], [ -95.403073007364981, 29.668808177626307 ], [ -95.399696007381323, 29.66982917744145 ], [ -95.397279005933854, 29.670550177326614 ], [ -95.397085005807909, 29.670608177542601 ], [ -95.396933006075088, 29.67065317819738 ], [ -95.396727005774636, 29.670713177534815 ], [ -95.396846006257618, 29.670396177548714 ], [ -95.397413006350135, 29.669118177343236 ], [ -95.397561006314348, 29.668785177136659 ], [ -95.397778005947245, 29.668334177117956 ], [ -95.39798300643676, 29.668014176971599 ], [ -95.398594006456349, 29.666388176504544 ], [ -95.398938007044265, 29.665516177054968 ], [ -95.399506006205357, 29.664096176591794 ], [ -95.399674006256433, 29.663647176519987 ], [ -95.39981300703657, 29.66328817640283 ], [ -95.400049006601776, 29.662683175969097 ], [ -95.401552007011674, 29.658933175141133 ], [ -95.401958007116676, 29.65796017488589 ], [ -95.402116006915136, 29.657541175208724 ], [ -95.404354007692945, 29.651940173614083 ], [ -95.40529200781954, 29.649551172738132 ], [ -95.405644007915953, 29.648683173319615 ], [ -95.40577100763943, 29.64835617325463 ], [ -95.405928007122554, 29.647961172406919 ], [ -95.406752008066874, 29.645873172662128 ], [ -95.407125007584057, 29.644946172051938 ], [ -95.407338008082618, 29.644412171688927 ], [ -95.407626008268181, 29.643688172102838 ], [ -95.407931007977211, 29.642915171809626 ], [ -95.408037007647692, 29.642650171918799 ], [ -95.408524007515368, 29.641432171669116 ], [ -95.408986008164362, 29.640278170832438 ], [ -95.409368008047394, 29.639270170804682 ], [ -95.410739008459799, 29.635846170359237 ], [ -95.410949008404941, 29.63531717024517 ], [ -95.411179008557028, 29.634724170386967 ], [ -95.411431008442875, 29.634106169792165 ], [ -95.411459008010524, 29.634036169850756 ], [ -95.411968008012238, 29.632765169505994 ], [ -95.412393008844703, 29.631695169644203 ], [ -95.412755008409164, 29.63077816940989 ], [ -95.413361008425966, 29.629253168755039 ], [ -95.413487008760313, 29.628944168230635 ], [ -95.41364700919496, 29.628529168153182 ], [ -95.413942008427583, 29.627820168804231 ], [ -95.413990009162006, 29.627695168290771 ], [ -95.414434009148891, 29.626548167992517 ], [ -95.414895009112101, 29.625362167871746 ], [ -95.415175009357156, 29.624678167326572 ], [ -95.41606900927016, 29.62249716732137 ], [ -95.417416009375387, 29.619107166781419 ], [ -95.417443009028986, 29.619039166222485 ], [ -95.417123009237741, 29.619033166245114 ], [ -95.416928008632141, 29.619030166164247 ], [ -95.416620009339482, 29.618957166540955 ], [ -95.413559007844185, 29.619770166522127 ], [ -95.413380008663609, 29.619826166584097 ], [ -95.413042008240623, 29.619974166933691 ], [ -95.412830008422432, 29.620122166524492 ], [ -95.412522008418875, 29.620451167354965 ], [ -95.412198007784696, 29.621318167185681 ], [ -95.411864007491303, 29.621763167237052 ], [ -95.411383008039977, 29.622084167516771 ], [ -95.411010007636804, 29.622228167770793 ], [ -95.410055007633702, 29.622373167152496 ], [ -95.409787007170877, 29.622455167028892 ], [ -95.409162007183227, 29.622793167840964 ], [ -95.408614006922619, 29.623269167536794 ], [ -95.408365007412726, 29.623674167606506 ], [ -95.40824500744543, 29.624085168210584 ], [ -95.408175006887021, 29.624193168211907 ], [ -95.408077007068911, 29.624858168400849 ], [ -95.408077006776594, 29.625587168346669 ], [ -95.407975007531363, 29.625945168377061 ], [ -95.40773200686499, 29.626456168553084 ], [ -95.407476006863945, 29.626827168825336 ], [ -95.407160006989272, 29.627368168784525 ], [ -95.407132007310906, 29.627530168203208 ], [ -95.406937007387867, 29.627844168396592 ], [ -95.406856006536003, 29.628080168798835 ], [ -95.406703006733792, 29.628329169029595 ], [ -95.406517007325448, 29.628482168439756 ], [ -95.406338006534384, 29.628591168932459 ], [ -95.406115006508585, 29.628674169017476 ], [ -95.405706006912936, 29.628732168549647 ], [ -95.405086006035575, 29.628796168636519 ], [ -95.404351006721186, 29.628917168893707 ], [ -95.403871005706236, 29.628987169133563 ], [ -95.403386006265379, 29.629045169281834 ], [ -95.402689005561939, 29.629154169507792 ], [ -95.402229005652956, 29.629230169171453 ], [ -95.401903005547581, 29.629333168897222 ], [ -95.401366005426809, 29.62956316940657 ], [ -95.400707005397493, 29.629876169206465 ], [ -95.399691005296802, 29.630342169470772 ], [ -95.399257004829423, 29.630528169835724 ], [ -95.398675004814891, 29.630688169420914 ], [ -95.398107004556437, 29.630799169787295 ], [ -95.397224004491051, 29.630803169826279 ], [ -95.396048004345332, 29.630803169582197 ], [ -95.395409003913826, 29.630892169719662 ], [ -95.394834003676678, 29.631033170003004 ], [ -95.393747004200989, 29.6313911696781 ], [ -95.39278400394673, 29.63177016975116 ], [ -95.390986003361434, 29.632401169896088 ], [ -95.39025500266203, 29.632626170055953 ], [ -95.389695002279609, 29.632771170349891 ], [ -95.389017003070734, 29.632810170520809 ], [ -95.388557002896391, 29.632758169955018 ], [ -95.388071001883631, 29.632605170607487 ], [ -95.387675002705564, 29.632426170427486 ], [ -95.387287002193602, 29.632217170041329 ], [ -95.387288002529871, 29.63230717021171 ], [ -95.387354002565672, 29.636163170715218 ], [ -95.387395002115952, 29.638488171506832 ], [ -95.387403002343831, 29.639653172043367 ], [ -95.387482002855933, 29.643430172528216 ], [ -95.387483002887762, 29.643479172257695 ], [ -95.38748700300772, 29.64364017297758 ], [ -95.387498002966723, 29.6441851728149 ], [ -95.387501002344621, 29.644618172953166 ], [ -95.387513002505045, 29.645260172884569 ], [ -95.387517002759282, 29.646009172820108 ], [ -95.387586003363538, 29.649712173743506 ], [ -95.387599002534387, 29.650408174243633 ], [ -95.387612002627705, 29.651490174052014 ], [ -95.387642003406455, 29.65294817490782 ], [ -95.387676002980086, 29.65576717547512 ], [ -95.387629003149755, 29.656593175598431 ], [ -95.387588003491771, 29.657151175390091 ], [ -95.387521003306063, 29.657631175442965 ], [ -95.387500003675171, 29.657778175438573 ], [ -95.387416003041679, 29.658381175238006 ], [ -95.387300002838543, 29.658987175695561 ], [ -95.387172003718916, 29.659603176177736 ], [ -95.387008003536693, 29.66020417614827 ], [ -95.38683000338213, 29.660766175660896 ], [ -95.386675003192977, 29.661238175982994 ], [ -95.386473003287122, 29.661909176435433 ], [ -95.386141002876911, 29.662687176576821 ], [ -95.385848003064993, 29.663274176995667 ], [ -95.385242002979808, 29.664372176739249 ], [ -95.383566002608504, 29.667581177987294 ], [ -95.383485002193993, 29.667736178024668 ], [ -95.383400002334312, 29.667899177887463 ], [ -95.383277002415838, 29.668136177778784 ], [ -95.383147003042012, 29.668385177413427 ], [ -95.382995002191464, 29.668675178224387 ], [ -95.382779003059284, 29.66909117782733 ], [ -95.382390002337459, 29.670025177781 ], [ -95.382222002447534, 29.670504178384164 ], [ -95.382104002407175, 29.67093017841427 ], [ -95.382045002398684, 29.671202178781236 ], [ -95.381940002911747, 29.671749178326792 ], [ -95.38188700233286, 29.672120178405102 ], [ -95.381896002059008, 29.673149178947739 ], [ -95.3818030021705, 29.674853178805328 ], [ -95.381797002431568, 29.674970178756475 ], [ -95.381790002269966, 29.675227179651372 ], [ -95.381785002700155, 29.675444178891446 ], [ -95.38177300236238, 29.675895179468359 ], [ -95.381714002307149, 29.677987179509213 ], [ -95.381633003072736, 29.678629179705649 ], [ -95.381550002313915, 29.679188179916473 ], [ -95.381367003116978, 29.680116180626694 ], [ -95.38129000233063, 29.680413180062111 ], [ -95.381260002324325, 29.680530180198403 ], [ -95.38124800262564, 29.680575180489253 ], [ -95.381220003163577, 29.680684180044302 ], [ -95.381211002637883, 29.680721180574974 ], [ -95.381299003141351, 29.680721180491364 ], [ -95.381457003116111, 29.68071918074877 ], [ -95.381996003000538, 29.680712180091213 ], [ -95.383733002904805, 29.680690179967129 ], [ -95.385914003830592, 29.68066317992167 ], [ -95.387426004738913, 29.680666180048064 ], [ -95.3888350042578, 29.680669179745152 ], [ -95.390172004602931, 29.680656180425416 ], [ -95.392403005834495, 29.680600180345483 ], [ -95.392633005163731, 29.68059117991027 ], [ -95.392982006099402, 29.680589179963771 ], [ -95.393259005833372, 29.680594179673797 ], [ -95.393433005938277, 29.680593179963164 ], [ -95.393687005732289, 29.680588179483987 ], [ -95.395310005947806, 29.680511180070656 ], [ -95.396645006414801, 29.680384179425708 ], [ -95.399897007704368, 29.679741179586468 ], [ -95.40207300774486, 29.679301179133976 ], [ -95.402984007787495, 29.679091179348838 ], [ -95.403159008499685, 29.679054178900504 ], [ -95.403417008106928, 29.679009179599298 ], [ -95.403639008007147, 29.678954178810521 ], [ -95.404389008853514, 29.67877817889535 ], [ -95.405626008455371, 29.678540178759462 ], [ -95.406634009591315, 29.678410179446317 ], [ -95.407668009131314, 29.678274178638926 ], [ -95.407936009082576, 29.678247179368565 ], [ -95.408929009546213, 29.678202178993509 ], [ -95.411254010684615, 29.678138178532475 ], [ -95.411685010450555, 29.678122179121551 ], [ -95.412044010175023, 29.678096178912824 ], [ -95.412279010283655, 29.6780891790794 ], [ -95.412498010583363, 29.678074178467391 ], [ -95.412891010584687, 29.67805017837734 ], [ -95.415561011063673, 29.677985178475137 ], [ -95.41647601187087, 29.67794717903751 ], [ -95.418270012197581, 29.677873178984409 ], [ -95.419206012078291, 29.677820178660156 ], [ -95.422219012566657, 29.67773517863904 ], [ -95.424510013398859, 29.677624177834097 ], [ -95.42473301368193, 29.677617177848369 ], [ -95.424816013433812, 29.677624178416611 ], [ -95.42582601355798, 29.677630178619992 ], [ -95.426574014433143, 29.67762417783096 ], [ -95.427271013852632, 29.677669177757746 ], [ -95.427453014232725, 29.677689178457399 ], [ -95.427650014746419, 29.677729177974914 ], [ -95.42780101416146, 29.677489178338224 ], [ -95.427964014394163, 29.677290177665068 ], [ -95.428459014282339, 29.676696177952454 ], [ -95.428577015106725, 29.676545178114612 ], [ -95.42883101505133, 29.676223177477535 ], [ -95.429088014824586, 29.675899177530724 ], [ -95.429442015136232, 29.675466177476117 ], [ -95.429704015158649, 29.675131177979711 ], [ -95.429953014778917, 29.674806177759674 ], [ -95.431150015550273, 29.67332617675142 ], [ -95.431343014758653, 29.67305817712236 ], [ -95.431469014916303, 29.672908176987413 ], [ -95.431583015707361, 29.672756177031989 ], [ -95.432079015198312, 29.672142176980639 ], [ -95.43274601522964, 29.671290177153388 ], [ -95.433045015411636, 29.670917176205869 ], [ -95.434054015263072, 29.669658176613691 ], [ -95.435263016406694, 29.66812617602589 ], [ -95.435582016056415, 29.667693176110404 ], [ -95.43566901617146, 29.667579175853014 ], [ -95.436497016029733, 29.666567176038352 ], [ -95.437777016488425, 29.664909175272452 ], [ -95.438394016271559, 29.664132174896078 ], [ -95.439303016806633, 29.662967174521789 ], [ -95.439350016430183, 29.66290617449787 ], [ -95.43970701729387, 29.662476174382618 ], [ -95.43996201696595, 29.662131174410714 ], [ -95.44000201722497, 29.662087174923581 ], [ -95.440239016569478, 29.661800174532541 ], [ -95.440585016535991, 29.661379174446779 ], [ -95.440968016681708, 29.660881174371561 ], [ -95.441097016729358, 29.66069917416776 ], [ -95.441263017206339, 29.66050917409968 ], [ -95.441483016832038, 29.660196173985987 ], [ -95.441642017627615, 29.659864173773297 ], [ -95.44178301701686, 29.659512173652374 ], [ -95.44183401741769, 29.659216174188028 ], [ -95.44191001743205, 29.65840317387816 ], [ -95.441956016779827, 29.657778173820624 ], [ -95.44198601732117, 29.657412173307108 ], [ -95.442002017666439, 29.657209173796858 ], [ -95.442066017522507, 29.656777173440471 ], [ -95.442131017384213, 29.656502173735266 ], [ -95.442285017079726, 29.656158173179783 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 896, "Tract": "48201240705", "Area_SqMi": 1.1787247147788924, "total_2009": 550, "total_2010": 583, "total_2011": 414, "total_2012": 323, "total_2013": 375, "total_2014": 315, "total_2015": 295, "total_2016": 357, "total_2017": 301, "total_2018": 214, "total_2019": 311, "total_2020": 370, "age1": 132, "age2": 311, "age3": 112, "earn1": 80, "earn2": 157, "earn3": 318, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 80, "naics_s05": 9, "naics_s06": 157, "naics_s07": 38, "naics_s08": 18, "naics_s09": 0, "naics_s10": 2, "naics_s11": 30, "naics_s12": 13, "naics_s13": 0, "naics_s14": 37, "naics_s15": 0, "naics_s16": 54, "naics_s17": 7, "naics_s18": 61, "naics_s19": 47, "naics_s20": 0, "race1": 448, "race2": 79, "race3": 5, "race4": 14, "race5": 0, "race6": 9, "ethnicity1": 368, "ethnicity2": 187, "edu1": 86, "edu2": 106, "edu3": 141, "edu4": 90, "Shape_Length": 26692.196377707285, "Shape_Area": 32860827.640523911, "total_2021": 457, "total_2022": 555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.420570028099391, 30.023571249266521 ], [ -95.420506027916872, 30.023104248848238 ], [ -95.420415028579953, 30.022647248891158 ], [ -95.420069027588909, 30.021477248632912 ], [ -95.419967027893065, 30.02096324855648 ], [ -95.419849028130415, 30.020374248098772 ], [ -95.419797028296188, 30.020116248241603 ], [ -95.419786027347527, 30.020011248643527 ], [ -95.419748027891998, 30.019742248408402 ], [ -95.419696028061523, 30.019476247971696 ], [ -95.419628028123142, 30.019211248060536 ], [ -95.419546028171993, 30.018951248030742 ], [ -95.419450028063054, 30.018693248578202 ], [ -95.41934002816582, 30.018440248051903 ], [ -95.419171027797972, 30.01811124807022 ], [ -95.419028027720856, 30.017871248403978 ], [ -95.418872027995135, 30.017637248072869 ], [ -95.418704027444988, 30.017409247482501 ], [ -95.418492027862698, 30.017153248082753 ], [ -95.418297026848776, 30.016943247521798 ], [ -95.417905027343593, 30.016556247405912 ], [ -95.417712027087745, 30.016344247668439 ], [ -95.417533027512007, 30.016123247657074 ], [ -95.417367026783168, 30.015895247908066 ], [ -95.417215026685938, 30.015659248047992 ], [ -95.417056026413377, 30.015375247922414 ], [ -95.416937026552887, 30.015125247818556 ], [ -95.41685402727505, 30.014926247814206 ], [ -95.416849026702891, 30.014913247233505 ], [ -95.416757026999079, 30.014655247197457 ], [ -95.416540027062069, 30.013905247634213 ], [ -95.416495027115474, 30.013748247140182 ], [ -95.416449026763516, 30.013573246809887 ], [ -95.416369026384316, 30.013311247551233 ], [ -95.416274026945018, 30.013054247336093 ], [ -95.4161660269408, 30.012800246972947 ], [ -95.416044026749162, 30.012551246961721 ], [ -95.41588502628116, 30.012268246779279 ], [ -95.415734026396763, 30.012031246954535 ], [ -95.415571026181894, 30.01180124667686 ], [ -95.415530025951909, 30.011749247006506 ], [ -95.415425026041063, 30.011614246653679 ], [ -95.415208026148619, 30.011362246821477 ], [ -95.41515002602047, 30.011301246812245 ], [ -95.415009026209404, 30.011154246813032 ], [ -95.413380025245701, 30.009612246587935 ], [ -95.413136026087301, 30.009360246896584 ], [ -95.413085025518924, 30.009307246457922 ], [ -95.41169702475689, 30.007542246218129 ], [ -95.409639024550358, 30.004898245617827 ], [ -95.409223024359207, 30.004344245250834 ], [ -95.408972024549058, 30.00401124565461 ], [ -95.408503023922464, 30.003128245171105 ], [ -95.408175024525022, 30.002313245649603 ], [ -95.408048024368298, 30.001736244977103 ], [ -95.407874023759589, 30.000943245098529 ], [ -95.407758023429366, 30.000528244824078 ], [ -95.407754023711973, 30.000337244869367 ], [ -95.407751024101501, 30.000160244624073 ], [ -95.406031023812133, 30.000173245071991 ], [ -95.405260023475506, 30.000420244965873 ], [ -95.402702022716809, 30.001816245679613 ], [ -95.402445022248457, 30.002025245026239 ], [ -95.402386022603508, 30.002074245060001 ], [ -95.402215022846235, 30.002195245042106 ], [ -95.400446022044619, 30.003190245654977 ], [ -95.399236021374364, 30.003963246061133 ], [ -95.399174022137373, 30.004003245828098 ], [ -95.399388022012474, 30.004341246155771 ], [ -95.400030022468854, 30.005062246214784 ], [ -95.400757021874213, 30.005751246278443 ], [ -95.401284022924031, 30.006239246348454 ], [ -95.401686022148795, 30.006555246283366 ], [ -95.401831022663288, 30.006702246501426 ], [ -95.402263022243574, 30.007091246144 ], [ -95.402560022428247, 30.00740024662819 ], [ -95.402922023080052, 30.007869246619212 ], [ -95.403112022669248, 30.008174246801008 ], [ -95.403463022885589, 30.008817246388087 ], [ -95.403564023076314, 30.009124246787138 ], [ -95.40440002363917, 30.012269247185831 ], [ -95.404498023151689, 30.013063247162727 ], [ -95.40452202314053, 30.01407024763159 ], [ -95.404527023275662, 30.014220247572172 ], [ -95.404730024288341, 30.020136248966772 ], [ -95.404788024587447, 30.021840249009337 ], [ -95.404689024590937, 30.022604249600295 ], [ -95.404624023855106, 30.023092249425435 ], [ -95.404581023906189, 30.023581249486966 ], [ -95.404560024312843, 30.023734250098872 ], [ -95.40438502368508, 30.025235249968922 ], [ -95.404404023796772, 30.025860249955315 ], [ -95.404502024268297, 30.026359250656093 ], [ -95.404551024635879, 30.026598250312951 ], [ -95.404938024661419, 30.026526249951072 ], [ -95.406645025036767, 30.026209249755045 ], [ -95.409126025806771, 30.025747249741574 ], [ -95.411428026276056, 30.025318249812226 ], [ -95.412406026497536, 30.02512224944806 ], [ -95.413812026461017, 30.024855249532873 ], [ -95.4162280268676, 30.024396249849687 ], [ -95.417851027160566, 30.024088248954733 ], [ -95.41838402804602, 30.023987249027218 ], [ -95.418551027744201, 30.023955249243137 ], [ -95.418885027925683, 30.023892249137585 ], [ -95.419242027626979, 30.02382424895324 ], [ -95.420470027706557, 30.023591248787131 ], [ -95.420570028099391, 30.023571249266521 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 897, "Tract": "48201250306", "Area_SqMi": 0.83023048529291399, "total_2009": 3, "total_2010": 7, "total_2011": 18, "total_2012": 25, "total_2013": 21, "total_2014": 15, "total_2015": 29, "total_2016": 43, "total_2017": 50, "total_2018": 40, "total_2019": 62, "total_2020": 27, "age1": 4, "age2": 18, "age3": 5, "earn1": 11, "earn2": 5, "earn3": 11, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 2, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 8, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 9, "naics_s19": 0, "naics_s20": 0, "race1": 18, "race2": 7, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 18, "ethnicity2": 9, "edu1": 4, "edu2": 8, "edu3": 6, "edu4": 5, "Shape_Length": 33251.914546698361, "Shape_Area": 23145404.976289641, "total_2021": 24, "total_2022": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.218715974122091, 29.962873244032064 ], [ -95.218690972941403, 29.955673241967322 ], [ -95.218688973454192, 29.954965241789317 ], [ -95.218678973196091, 29.952205241500035 ], [ -95.218530973103455, 29.951153241570143 ], [ -95.218419972738573, 29.951195241140621 ], [ -95.218028972762482, 29.951377241464659 ], [ -95.217605972862302, 29.951657241599545 ], [ -95.217422972933861, 29.951734241252897 ], [ -95.216993972524179, 29.95198224119526 ], [ -95.216835972228722, 29.95214124171498 ], [ -95.216671972202747, 29.952389241281466 ], [ -95.216620973020454, 29.952537241431536 ], [ -95.216608972929492, 29.952598241946486 ], [ -95.216601972393988, 29.952708242000607 ], [ -95.216614973042297, 29.953087242102569 ], [ -95.216595973113542, 29.95323624147094 ], [ -95.21655797234024, 29.953401241910566 ], [ -95.21650197278376, 29.953560241571772 ], [ -95.216438972704495, 29.953648241864705 ], [ -95.216357972806478, 29.95374424232164 ], [ -95.216153972500365, 29.953890241880408 ], [ -95.216034972340935, 29.95403924167119 ], [ -95.215951972385781, 29.954094242222538 ], [ -95.215863972829609, 29.95417624177826 ], [ -95.215825972062333, 29.954231242381891 ], [ -95.215724972200633, 29.954281242050257 ], [ -95.215680972472725, 29.954363242378452 ], [ -95.215592972775255, 29.954440241980226 ], [ -95.215560972375698, 29.954451242284197 ], [ -95.215516972729773, 29.954506242499292 ], [ -95.215459972265208, 29.954611242275572 ], [ -95.215428972299975, 29.954638242237273 ], [ -95.215377972884824, 29.954666241803924 ], [ -95.215327972859896, 29.954710241913794 ], [ -95.21519497235451, 29.954946241767423 ], [ -95.215061972844836, 29.955149242445213 ], [ -95.214797972311615, 29.955650242255057 ], [ -95.214677971839734, 29.955837242198921 ], [ -95.214645971903124, 29.955925242837239 ], [ -95.2144499723709, 29.956095242165905 ], [ -95.214393971834085, 29.956134242667581 ], [ -95.214279972713385, 29.956161242618879 ], [ -95.21422297265967, 29.956167242880031 ], [ -95.214153972327253, 29.956167242407282 ], [ -95.214039971974074, 29.95614524268499 ], [ -95.214007972471151, 29.956128242462757 ], [ -95.213995972138591, 29.956073242297212 ], [ -95.213944972486033, 29.956035242286756 ], [ -95.21376797222716, 29.955975242375004 ], [ -95.213673972343329, 29.955964242809145 ], [ -95.213477971899351, 29.955964242877798 ], [ -95.213401972039932, 29.955942242899042 ], [ -95.213067971963994, 29.955931242676016 ], [ -95.212852971548969, 29.955936242760728 ], [ -95.212587971772379, 29.955980242765857 ], [ -95.212498971595721, 29.95602524211661 ], [ -95.212265972187737, 29.956091242793374 ], [ -95.211981971991705, 29.956239242394457 ], [ -95.211507971701607, 29.956580242917777 ], [ -95.211393971959637, 29.956685242953974 ], [ -95.211343970997788, 29.956767242272107 ], [ -95.211299971688632, 29.956899242641949 ], [ -95.211185971814928, 29.957091242633783 ], [ -95.210775971796593, 29.957938242706003 ], [ -95.210655971486005, 29.958169243384916 ], [ -95.210504971327069, 29.95853824347979 ], [ -95.210472971049128, 29.95864824344369 ], [ -95.210447971395695, 29.958807242755139 ], [ -95.210460971373166, 29.958994243356202 ], [ -95.21048597093197, 29.959066242953657 ], [ -95.210523971016585, 29.959329243671753 ], [ -95.210592971113783, 29.959544243532658 ], [ -95.210630971223566, 29.959813243173596 ], [ -95.210630971359649, 29.960022243527341 ], [ -95.21062497097374, 29.960116243071138 ], [ -95.210548971660685, 29.960325243103707 ], [ -95.210479971890067, 29.960440243777565 ], [ -95.210397971155103, 29.960528243892298 ], [ -95.21033497138157, 29.960578243467442 ], [ -95.210233971108764, 29.960633243427942 ], [ -95.210163971229107, 29.960688243694932 ], [ -95.210170971244096, 29.960787243468566 ], [ -95.210151971718474, 29.96080924361603 ], [ -95.210056971258581, 29.960842243738103 ], [ -95.209987971433378, 29.960908243847321 ], [ -95.209892971214174, 29.96095724332179 ], [ -95.209709971416231, 29.96112224387517 ], [ -95.209633971566674, 29.961161243831111 ], [ -95.20958397150639, 29.961199243759481 ], [ -95.209557971483235, 29.961210243287351 ], [ -95.209530971272628, 29.961199244089642 ], [ -95.209482971699046, 29.961210243545271 ], [ -95.209330971129603, 29.961320243863664 ], [ -95.209179971341783, 29.961452243658176 ], [ -95.209084971058033, 29.961590243797165 ], [ -95.208977971616719, 29.961705244058926 ], [ -95.208882971145343, 29.961727243690159 ], [ -95.208812971074437, 29.961799243765732 ], [ -95.208705970665505, 29.961799243560691 ], [ -95.208648971165317, 29.961832243410779 ], [ -95.208648970700835, 29.961936243943278 ], [ -95.208579970675416, 29.9620082441579 ], [ -95.208516970892148, 29.962041244214259 ], [ -95.208484970990241, 29.962074244080753 ], [ -95.208389970735766, 29.962063244325677 ], [ -95.208320970555562, 29.962079244043334 ], [ -95.208307970518064, 29.96210124366679 ], [ -95.208276971021348, 29.962107243708282 ], [ -95.20817597123775, 29.962090244159974 ], [ -95.208004970607874, 29.962145244181514 ], [ -95.207733971076422, 29.962178243718594 ], [ -95.207550971088438, 29.96217324363672 ], [ -95.207392970873755, 29.962118244042724 ], [ -95.207133970441063, 29.962101244153803 ], [ -95.206691970474481, 29.962101243702101 ], [ -95.206413970203016, 29.96240924445884 ], [ -95.206356970116275, 29.962354244021576 ], [ -95.20634397012816, 29.962288244143213 ], [ -95.206280970798076, 29.962288244115321 ], [ -95.20620597066825, 29.962338243938451 ], [ -95.206129970664833, 29.962420244190191 ], [ -95.206097970055552, 29.962519244336953 ], [ -95.206104970691612, 29.962624244298787 ], [ -95.205662970593153, 29.962943244174703 ], [ -95.205485970714633, 29.9631082444287 ], [ -95.205428969793957, 29.963245244402035 ], [ -95.205430970773392, 29.963297243928814 ], [ -95.205432969955069, 29.963356244354536 ], [ -95.205473970270617, 29.964394244046222 ], [ -95.205473970705512, 29.964521244108379 ], [ -95.20547797059892, 29.965818244543087 ], [ -95.205479970527875, 29.966220245166888 ], [ -95.205473970070017, 29.967226245357093 ], [ -95.205486970293535, 29.967693244942957 ], [ -95.205473970447244, 29.96789124536043 ], [ -95.205492970684446, 29.968112245098482 ], [ -95.205499970270694, 29.968199245160619 ], [ -95.205474970643934, 29.968683245351851 ], [ -95.205505970822699, 29.969249245780301 ], [ -95.205480970278117, 29.969530245726109 ], [ -95.205493970620452, 29.96968924531523 ], [ -95.20549397103575, 29.969909245832159 ], [ -95.205493970174103, 29.971595245727247 ], [ -95.205493970391586, 29.971927245630717 ], [ -95.205525971023633, 29.972515245889117 ], [ -95.205525970328864, 29.973730246104523 ], [ -95.205519971021943, 29.973950246471667 ], [ -95.205544971284468, 29.974242246805748 ], [ -95.205519970615597, 29.974313246566908 ], [ -95.205488970970194, 29.974357246548795 ], [ -95.205443971022348, 29.974385246857064 ], [ -95.205027971053653, 29.974396246552008 ], [ -95.202210970250789, 29.974391246793687 ], [ -95.201578969802725, 29.974396246726716 ], [ -95.201408969862698, 29.97441924660157 ], [ -95.201275969180983, 29.974424247089068 ], [ -95.201155969626285, 29.974391246419991 ], [ -95.201124970029568, 29.974391246808977 ], [ -95.201092969983179, 29.974419246989203 ], [ -95.201054970094916, 29.974424246763416 ], [ -95.200808969195037, 29.974397246396268 ], [ -95.19828896863865, 29.974386246475966 ], [ -95.198086969060526, 29.974397247176583 ], [ -95.198004968601438, 29.974425246329719 ], [ -95.197707968627284, 29.974546246836162 ], [ -95.197606968706054, 29.974612247230983 ], [ -95.197366968564353, 29.974799246914628 ], [ -95.19720296885022, 29.974930247187373 ], [ -95.197031968996015, 29.975205247052092 ], [ -95.196785968209184, 29.975601247322516 ], [ -95.196495968744841, 29.976360247329939 ], [ -95.196438968842926, 29.976591246991042 ], [ -95.19635096863496, 29.976860247374624 ], [ -95.196362969024136, 29.976987247716266 ], [ -95.196362968631036, 29.977042246930978 ], [ -95.196324968250963, 29.977075247319135 ], [ -95.196324968413521, 29.977207247808217 ], [ -95.196305968266145, 29.977245247260726 ], [ -95.196274968415267, 29.977410247822021 ], [ -95.19621196864847, 29.977592247763319 ], [ -95.196198968937864, 29.977729247140513 ], [ -95.196154968972138, 29.977790247359859 ], [ -95.196040968068274, 29.978417247413013 ], [ -95.19595896844929, 29.978769247943688 ], [ -95.195853968053385, 29.979169247703851 ], [ -95.195809969026342, 29.979338247750835 ], [ -95.195971968729665, 29.97932524787781 ], [ -95.19605696813521, 29.979318248265173 ], [ -95.196203968251368, 29.979300247707531 ], [ -95.196618968571883, 29.979250247591416 ], [ -95.196852969244389, 29.979214247367743 ], [ -95.197085969160824, 29.979178248187587 ], [ -95.197344968879278, 29.979128247335211 ], [ -95.19747796860284, 29.979097247996606 ], [ -95.197619968780103, 29.979071247688243 ], [ -95.198000968732558, 29.978989247625712 ], [ -95.198241969518321, 29.978928247624257 ], [ -95.198666968791002, 29.978810247234858 ], [ -95.199177969424952, 29.978675247523977 ], [ -95.200219969814441, 29.978395247299762 ], [ -95.200685969293744, 29.978285247332447 ], [ -95.201176969449335, 29.978184247429876 ], [ -95.201673969768322, 29.978101247244211 ], [ -95.202183970008065, 29.978036246986761 ], [ -95.202794970689695, 29.977983247329011 ], [ -95.203015969917146, 29.977972247644889 ], [ -95.203593970732371, 29.977945247140298 ], [ -95.203904970258662, 29.977940247487663 ], [ -95.204072970185607, 29.97795024718674 ], [ -95.204565970635286, 29.977953247428189 ], [ -95.205351971350055, 29.977950247672773 ], [ -95.205520971449673, 29.977950247237477 ], [ -95.206231971564563, 29.977955247123841 ], [ -95.208020971566455, 29.97795624670043 ], [ -95.210715972766465, 29.977957246948804 ], [ -95.21234397293982, 29.977958246569731 ], [ -95.212347972684015, 29.97783524694934 ], [ -95.212349972623258, 29.977751247397382 ], [ -95.21234397269248, 29.977733247346489 ], [ -95.21234897296344, 29.977712246667693 ], [ -95.212352972981833, 29.976273246688923 ], [ -95.212356972567264, 29.974887246550551 ], [ -95.212347972664247, 29.974565246004229 ], [ -95.212320972088747, 29.974259246143784 ], [ -95.21227597222844, 29.973952246589182 ], [ -95.212159972954524, 29.973371245750265 ], [ -95.2121349721711, 29.973283245730503 ], [ -95.212075972642012, 29.973002246209823 ], [ -95.211985972672736, 29.972570245979821 ], [ -95.211972972058106, 29.972486245547589 ], [ -95.211951972195493, 29.97240524550508 ], [ -95.211831972807559, 29.971836245529765 ], [ -95.211684972322772, 29.971124245531332 ], [ -95.211516971895122, 29.970313245282902 ], [ -95.211361972078407, 29.969538245106602 ], [ -95.211237971705501, 29.968921245563447 ], [ -95.21119697175898, 29.968726245341767 ], [ -95.211037971685883, 29.967969244768888 ], [ -95.210876972083767, 29.96718024444181 ], [ -95.210777971446348, 29.966674244673467 ], [ -95.210650972245091, 29.966063244801962 ], [ -95.210455971898682, 29.965124244821009 ], [ -95.210402972078995, 29.964781244770219 ], [ -95.210378971126019, 29.96455824425842 ], [ -95.210370971135134, 29.964356244123248 ], [ -95.210366971834873, 29.964268244008082 ], [ -95.210362972026175, 29.96353424378194 ], [ -95.210356971518692, 29.96330624415657 ], [ -95.21391597213163, 29.963281243724172 ], [ -95.214448972664769, 29.963277243587779 ], [ -95.215355972497363, 29.96334024361601 ], [ -95.216286972763967, 29.963340243824419 ], [ -95.217218973004464, 29.963326244038264 ], [ -95.218114973176711, 29.963370244231928 ], [ -95.218099973873052, 29.963352243610373 ], [ -95.218085973357091, 29.962893243420904 ], [ -95.218386973439095, 29.962890243356028 ], [ -95.218715974122091, 29.962873244032064 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 898, "Tract": "48201553202", "Area_SqMi": 0.76369374336858575, "total_2009": 890, "total_2010": 911, "total_2011": 913, "total_2012": 1025, "total_2013": 1081, "total_2014": 720, "total_2015": 617, "total_2016": 567, "total_2017": 581, "total_2018": 495, "total_2019": 530, "total_2020": 854, "age1": 130, "age2": 461, "age3": 176, "earn1": 117, "earn2": 174, "earn3": 476, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 158, "naics_s05": 35, "naics_s06": 22, "naics_s07": 4, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 6, "naics_s13": 0, "naics_s14": 46, "naics_s15": 0, "naics_s16": 423, "naics_s17": 0, "naics_s18": 62, "naics_s19": 2, "naics_s20": 0, "race1": 484, "race2": 234, "race3": 3, "race4": 36, "race5": 0, "race6": 10, "ethnicity1": 611, "ethnicity2": 156, "edu1": 108, "edu2": 141, "edu3": 215, "edu4": 173, "Shape_Length": 28874.645880809418, "Shape_Area": 21290474.490211297, "total_2021": 846, "total_2022": 767 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.459027038696675, 30.035613250511283 ], [ -95.45898203837838, 30.035552249853328 ], [ -95.458508037933413, 30.034991250020024 ], [ -95.458365038152678, 30.034781250215623 ], [ -95.458261038268489, 30.034629249944185 ], [ -95.458299037957403, 30.034381249905689 ], [ -95.45813203872477, 30.034046249937873 ], [ -95.45811003822179, 30.0340022502841 ], [ -95.45779403800141, 30.033722249794454 ], [ -95.457583038487954, 30.033430249816785 ], [ -95.457099037720042, 30.032762249271819 ], [ -95.456391037755665, 30.033328249470991 ], [ -95.45626303733026, 30.033457249569359 ], [ -95.456216037519795, 30.033523250328233 ], [ -95.456099037909809, 30.033776249774096 ], [ -95.455462037725013, 30.033169249502329 ], [ -95.455400037027587, 30.033125250176862 ], [ -95.455332037385915, 30.033024249808424 ], [ -95.455221037313891, 30.032861249501153 ], [ -95.454561037361515, 30.03194224925371 ], [ -95.454083036930612, 30.031297249924226 ], [ -95.453971036899532, 30.031165249564346 ], [ -95.453889037355395, 30.031043249759605 ], [ -95.453364037049795, 30.03033924897494 ], [ -95.453117036709358, 30.029980249002335 ], [ -95.450448035721507, 30.026334248536337 ], [ -95.449985035466455, 30.025680248704791 ], [ -95.449727035286287, 30.025340248506225 ], [ -95.449416035716141, 30.024909248031484 ], [ -95.448809035054367, 30.025248248308777 ], [ -95.448022035027904, 30.025661248495918 ], [ -95.447159035430545, 30.026131249155782 ], [ -95.446925035025529, 30.025835248392156 ], [ -95.446622034898169, 30.025415248456767 ], [ -95.446363034607742, 30.025055248314178 ], [ -95.446101034319852, 30.024701248849471 ], [ -95.446086034336389, 30.024680248171883 ], [ -95.446070034457932, 30.024659248120695 ], [ -95.445488034756579, 30.023872248662972 ], [ -95.445392034240214, 30.023750247985941 ], [ -95.445324034089836, 30.02366224783567 ], [ -95.445205034745456, 30.023530248152603 ], [ -95.445068034328344, 30.023412248414605 ], [ -95.444992034902342, 30.023360248526824 ], [ -95.444828034411216, 30.023271248595524 ], [ -95.444653034509201, 30.023201248067078 ], [ -95.444293034707414, 30.02309424777399 ], [ -95.443667034506873, 30.022923248002705 ], [ -95.443242034225179, 30.02278924860321 ], [ -95.443108033948064, 30.02272724779759 ], [ -95.44293903401514, 30.022629248040616 ], [ -95.442790033799085, 30.022790248376257 ], [ -95.442724034292922, 30.022851247816636 ], [ -95.442580033466754, 30.022959248518145 ], [ -95.442508033472933, 30.023006248014884 ], [ -95.44230803368437, 30.023111248428826 ], [ -95.442196033908203, 30.023187247862747 ], [ -95.442088034188018, 30.023241248213381 ], [ -95.441360033178128, 30.023647248463604 ], [ -95.441301034021606, 30.023674248582154 ], [ -95.441110033031265, 30.023777248129669 ], [ -95.441052033134454, 30.023828248760964 ], [ -95.44097403319374, 30.023848248702208 ], [ -95.440924033426299, 30.023874248718979 ], [ -95.440723033758871, 30.02398024837386 ], [ -95.440692033852343, 30.023996248394599 ], [ -95.440262033142375, 30.024222248378223 ], [ -95.440219033657073, 30.024246248480189 ], [ -95.439848033603525, 30.024459248273093 ], [ -95.439893032757425, 30.024514248457383 ], [ -95.440069032910742, 30.024732248628244 ], [ -95.440273033239691, 30.025001248362351 ], [ -95.440489033053368, 30.025355248632167 ], [ -95.440529033443269, 30.025488249156879 ], [ -95.44066703310537, 30.025712249229294 ], [ -95.440701033376001, 30.025789248552776 ], [ -95.440766033134679, 30.025935248498637 ], [ -95.441065033279941, 30.026735249275855 ], [ -95.441204033859321, 30.027018249197742 ], [ -95.44135603327787, 30.027266249394199 ], [ -95.441423034129897, 30.027428249439215 ], [ -95.441457033422793, 30.02755924934613 ], [ -95.441464033922443, 30.027653248981267 ], [ -95.44143603404018, 30.027908249332587 ], [ -95.441433033965595, 30.027997249199171 ], [ -95.441442034173789, 30.028087249235664 ], [ -95.441467033773748, 30.028176249654436 ], [ -95.441506034064261, 30.028264248957722 ], [ -95.441647033542935, 30.028511249700429 ], [ -95.441684033693249, 30.028597249116533 ], [ -95.441736033440876, 30.028782248974444 ], [ -95.441752033374968, 30.028879249643325 ], [ -95.441762033906656, 30.028962249592755 ], [ -95.441766034311286, 30.028993249649073 ], [ -95.441776034237407, 30.029081249822635 ], [ -95.441779033445385, 30.029186249555661 ], [ -95.441768033645204, 30.029512249501959 ], [ -95.441754034292742, 30.029625249832755 ], [ -95.441723033469515, 30.029736249300832 ], [ -95.441605034074584, 30.03007225008631 ], [ -95.441484033809374, 30.030270249396821 ], [ -95.441415033785972, 30.030352250063512 ], [ -95.441268034221878, 30.030495250190686 ], [ -95.441196034289845, 30.030545250063607 ], [ -95.441066033917892, 30.030625249476259 ], [ -95.440731033572604, 30.030810249924379 ], [ -95.440705033853305, 30.030824249640965 ], [ -95.4406430337974, 30.030859249837921 ], [ -95.440512033768712, 30.030932249885339 ], [ -95.44022203366994, 30.031093249537221 ], [ -95.43991903375732, 30.031267249558073 ], [ -95.439844033827541, 30.03132124976209 ], [ -95.439713033627783, 30.031417250166108 ], [ -95.439622033840138, 30.031500250116864 ], [ -95.439492033053938, 30.031642250152252 ], [ -95.439468033211867, 30.03166925001101 ], [ -95.439340033185871, 30.031847250518261 ], [ -95.439267033435016, 30.031932249864639 ], [ -95.439163033274184, 30.031995250612024 ], [ -95.439071033282161, 30.032065250135879 ], [ -95.438955033609005, 30.03210925040182 ], [ -95.438888032849832, 30.032126249982436 ], [ -95.438834033785056, 30.032140250093665 ], [ -95.438707033069548, 30.032155250506833 ], [ -95.438451032712237, 30.03216125007242 ], [ -95.438183032914424, 30.032143250308028 ], [ -95.437348032997903, 30.032096250226399 ], [ -95.437129032747421, 30.032084249934265 ], [ -95.436830032864947, 30.032067250455462 ], [ -95.436679033029634, 30.032065250722859 ], [ -95.436242032239818, 30.03209625065038 ], [ -95.436193032539123, 30.032101250086132 ], [ -95.435734032369297, 30.032150250635429 ], [ -95.435664032963942, 30.032166250262133 ], [ -95.435307032698901, 30.032246250701053 ], [ -95.434910032509052, 30.032312250542855 ], [ -95.434792032448016, 30.032317250018409 ], [ -95.434373031749516, 30.03231325043231 ], [ -95.434186032515768, 30.032299250536678 ], [ -95.433813031716056, 30.032245250770661 ], [ -95.433539032182495, 30.032196250625184 ], [ -95.433460031474326, 30.032191250128982 ], [ -95.43314703228684, 30.032119250790512 ], [ -95.432841031671515, 30.032070250832383 ], [ -95.432161031701455, 30.032006250102619 ], [ -95.431882031932474, 30.031980250314334 ], [ -95.431812031965222, 30.031980250734787 ], [ -95.431744031119081, 30.031992250660796 ], [ -95.431681031300784, 30.032016250390246 ], [ -95.431417031401779, 30.032190250149604 ], [ -95.43119603180169, 30.032319250180688 ], [ -95.430967030881007, 30.032431250376188 ], [ -95.430730031341767, 30.032529250918657 ], [ -95.430290031397604, 30.032595250274465 ], [ -95.430141031333179, 30.032609250221366 ], [ -95.429769030594343, 30.032624250340405 ], [ -95.429654030640933, 30.032629251024996 ], [ -95.429609030648635, 30.032631250404776 ], [ -95.429414031228291, 30.03266425030295 ], [ -95.429281030354531, 30.032666250534483 ], [ -95.429292030434965, 30.0330332510642 ], [ -95.429339031169917, 30.034511250762211 ], [ -95.429372030576701, 30.035580251592648 ], [ -95.429374030646699, 30.035648251272107 ], [ -95.429405031297506, 30.035635251250003 ], [ -95.429495031503109, 30.035598250905466 ], [ -95.429635030661089, 30.035540251201983 ], [ -95.429809031032704, 30.035468251490791 ], [ -95.429911031230858, 30.035356250972153 ], [ -95.430131031577488, 30.034896251427373 ], [ -95.43040403123473, 30.034681251070296 ], [ -95.430664030902506, 30.034574251416426 ], [ -95.43105603127853, 30.034561251041993 ], [ -95.431207031940488, 30.034769251024411 ], [ -95.431237031897695, 30.034971250942451 ], [ -95.431305031751748, 30.035296250766141 ], [ -95.431459031318269, 30.035523251525937 ], [ -95.431631031294913, 30.035646251116379 ], [ -95.431951032005358, 30.035718250911614 ], [ -95.432280031909258, 30.035737251599841 ], [ -95.432775031559004, 30.035848251195585 ], [ -95.433173032377084, 30.035816251266539 ], [ -95.433434031826906, 30.035694251346538 ], [ -95.433579031694094, 30.035517250862547 ], [ -95.433625031690411, 30.035416251069428 ], [ -95.433746031990211, 30.035150250798534 ], [ -95.433780031795962, 30.035083250923734 ], [ -95.433964032442049, 30.034847250579638 ], [ -95.434351031714854, 30.034413250603979 ], [ -95.434494032269086, 30.034217251113599 ], [ -95.434629032299554, 30.034100250655595 ], [ -95.434658032050649, 30.034074250771436 ], [ -95.434782032251817, 30.034033250847887 ], [ -95.435016032643276, 30.034020250858262 ], [ -95.435228032300657, 30.034084250914535 ], [ -95.435372032394383, 30.034246250325065 ], [ -95.435454032907316, 30.034411250387635 ], [ -95.435626032977751, 30.034509250843637 ], [ -95.435698032481653, 30.034509250886675 ], [ -95.435829032804179, 30.034509250848267 ], [ -95.436062033177478, 30.034408250705507 ], [ -95.436394032295695, 30.034283250804819 ], [ -95.436748033177395, 30.034257250780048 ], [ -95.436923033189998, 30.034317250551016 ], [ -95.43695103264541, 30.034326250629569 ], [ -95.436981033344949, 30.03433625056503 ], [ -95.437290033046452, 30.034528250526211 ], [ -95.437663033397811, 30.034690250926296 ], [ -95.437759032719711, 30.034666250467655 ], [ -95.437915032926696, 30.034626250354599 ], [ -95.438079033459076, 30.034507250753066 ], [ -95.438720032970238, 30.034066250681832 ], [ -95.438909033634488, 30.034056250919953 ], [ -95.439152033148986, 30.034149250845132 ], [ -95.439430033337885, 30.034312250575219 ], [ -95.439723033131813, 30.034418250893065 ], [ -95.439795033347337, 30.034402250707601 ], [ -95.43991303415585, 30.034377250366482 ], [ -95.440057033735911, 30.034335251063279 ], [ -95.440623034114978, 30.034107250899744 ], [ -95.440911033374874, 30.034080250648564 ], [ -95.441236033645637, 30.034177250928842 ], [ -95.441321034033692, 30.034349250229379 ], [ -95.441393034028536, 30.034590250488638 ], [ -95.441407034218543, 30.034906250746964 ], [ -95.4415000340002, 30.035221250905845 ], [ -95.441594034361543, 30.035353250832795 ], [ -95.441729034684357, 30.035443250454232 ], [ -95.442201034239432, 30.035787250497876 ], [ -95.442741034133618, 30.036265250916628 ], [ -95.442845034942692, 30.036311250685959 ], [ -95.443034034464262, 30.036395251138909 ], [ -95.443648035166035, 30.036665251001629 ], [ -95.443972035255072, 30.036807250559004 ], [ -95.444344034868863, 30.036843251006641 ], [ -95.444727034703007, 30.036694250545892 ], [ -95.445118034866653, 30.036678250997532 ], [ -95.445264035581985, 30.036659251367954 ], [ -95.445806035750053, 30.036620251233014 ], [ -95.446238035774954, 30.036525250750824 ], [ -95.446787035884356, 30.035974250748961 ], [ -95.447209036004011, 30.035688250343359 ], [ -95.447562035802434, 30.035593250876573 ], [ -95.447721035442441, 30.035714250207164 ], [ -95.447792036150119, 30.035769250510903 ], [ -95.447966035866813, 30.035901250332511 ], [ -95.448068035615265, 30.036277250341708 ], [ -95.448284035926392, 30.03648425039388 ], [ -95.448729035717164, 30.036591250705467 ], [ -95.449353036069496, 30.036818250858815 ], [ -95.449493035789985, 30.036869250933393 ], [ -95.449706036356403, 30.036894250609826 ], [ -95.450382036537533, 30.036972251217627 ], [ -95.450468036088637, 30.036982250735537 ], [ -95.450713036511047, 30.037170251012224 ], [ -95.45090703673867, 30.037639250947397 ], [ -95.451031036890797, 30.037730250914741 ], [ -95.451234036355615, 30.037755251124409 ], [ -95.451562036714265, 30.037611251194207 ], [ -95.451913037089128, 30.037363251263336 ], [ -95.452564036855989, 30.036812251065115 ], [ -95.453171037034423, 30.036181250847111 ], [ -95.453487037211332, 30.036015250850642 ], [ -95.453775037213333, 30.036000250620283 ], [ -95.45406003715604, 30.035985250032486 ], [ -95.454534037928852, 30.036045250598715 ], [ -95.455164037728409, 30.036125250088645 ], [ -95.455763038034931, 30.03589125035932 ], [ -95.457259038334854, 30.035669250277429 ], [ -95.458201037928461, 30.035735249885253 ], [ -95.458806038959551, 30.035626250433257 ], [ -95.459027038696675, 30.035613250511283 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 899, "Tract": "48201241502", "Area_SqMi": 0.53263774090090921, "total_2009": 453, "total_2010": 339, "total_2011": 399, "total_2012": 321, "total_2013": 363, "total_2014": 323, "total_2015": 346, "total_2016": 292, "total_2017": 303, "total_2018": 408, "total_2019": 392, "total_2020": 318, "age1": 69, "age2": 193, "age3": 90, "earn1": 34, "earn2": 97, "earn3": 221, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 100, "naics_s05": 15, "naics_s06": 68, "naics_s07": 29, "naics_s08": 47, "naics_s09": 0, "naics_s10": 8, "naics_s11": 6, "naics_s12": 13, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 47, "naics_s18": 14, "naics_s19": 5, "naics_s20": 0, "race1": 279, "race2": 38, "race3": 2, "race4": 27, "race5": 0, "race6": 6, "ethnicity1": 237, "ethnicity2": 115, "edu1": 68, "edu2": 80, "edu3": 71, "edu4": 64, "Shape_Length": 16002.588456440126, "Shape_Area": 14849028.597712947, "total_2021": 348, "total_2022": 352 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.304319994949068, 29.952241238332384 ], [ -95.30410799508482, 29.951289238817498 ], [ -95.303997995271189, 29.950790238436486 ], [ -95.303964994608933, 29.950392238043854 ], [ -95.303905994616983, 29.949227238052956 ], [ -95.30387499482255, 29.948724238115439 ], [ -95.303816994865215, 29.947679237994979 ], [ -95.303775994956041, 29.946834237389705 ], [ -95.303743994809963, 29.946158237427955 ], [ -95.303696994360934, 29.94526323686096 ], [ -95.303693994672869, 29.944970236979582 ], [ -95.303639994472277, 29.943986236988376 ], [ -95.303626994896476, 29.943494236482948 ], [ -95.303571994634424, 29.942340236509619 ], [ -95.30350899414141, 29.941340236758982 ], [ -95.30350499402816, 29.941255236761599 ], [ -95.303484993919625, 29.940783236681057 ], [ -95.303461994288583, 29.940289236197142 ], [ -95.303455994242569, 29.94016123654588 ], [ -95.303451994562664, 29.940065236139738 ], [ -95.303444994264936, 29.939943235811182 ], [ -95.303438994813163, 29.93983123622565 ], [ -95.303104994150345, 29.939854236072456 ], [ -95.302130993854163, 29.939889236214569 ], [ -95.301220993660863, 29.939895236463503 ], [ -95.300294993715553, 29.939911235757432 ], [ -95.299328992914809, 29.939935236212047 ], [ -95.298764992861678, 29.939951236358809 ], [ -95.297742992657547, 29.939971236143236 ], [ -95.297168992430755, 29.939968235870555 ], [ -95.296727992961422, 29.939966235986731 ], [ -95.295987992361859, 29.939967235980316 ], [ -95.295891992887945, 29.940136236503132 ], [ -95.295793991968509, 29.940353236175426 ], [ -95.295692992566231, 29.940577236902584 ], [ -95.295460992243889, 29.941057236275668 ], [ -95.295230992550202, 29.941598236299821 ], [ -95.294674991991513, 29.942805236666242 ], [ -95.294009992377966, 29.944316237422413 ], [ -95.29315599179742, 29.946337238161146 ], [ -95.292936991804865, 29.946838237827709 ], [ -95.292850991445164, 29.946980238256966 ], [ -95.292489992196479, 29.947784238157617 ], [ -95.292361992342023, 29.948067238528246 ], [ -95.292075992111805, 29.948804238147517 ], [ -95.291764991872412, 29.949553238460862 ], [ -95.291542991841396, 29.95005423857296 ], [ -95.290670991185877, 29.952025239154761 ], [ -95.290592991766673, 29.952198238907812 ], [ -95.290908991891584, 29.952203238979479 ], [ -95.292997991967653, 29.952252238685183 ], [ -95.293352992660729, 29.952255239119093 ], [ -95.293613992763767, 29.952228238759691 ], [ -95.293847992636969, 29.952215238829307 ], [ -95.294428992511669, 29.952218238781828 ], [ -95.298378993879339, 29.952197238385772 ], [ -95.299916994296268, 29.952190238546947 ], [ -95.301556994250205, 29.952172238855496 ], [ -95.302251994466573, 29.952178238897549 ], [ -95.302977994738697, 29.95221823895988 ], [ -95.30370799469415, 29.952245239030965 ], [ -95.304319994949068, 29.952241238332384 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 900, "Tract": "48201250406", "Area_SqMi": 0.84375466124743981, "total_2009": 55, "total_2010": 73, "total_2011": 492, "total_2012": 209, "total_2013": 309, "total_2014": 258, "total_2015": 373, "total_2016": 402, "total_2017": 469, "total_2018": 474, "total_2019": 590, "total_2020": 594, "age1": 217, "age2": 338, "age3": 116, "earn1": 199, "earn2": 209, "earn3": 263, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 0, "naics_s06": 0, "naics_s07": 33, "naics_s08": 16, "naics_s09": 4, "naics_s10": 20, "naics_s11": 18, "naics_s12": 53, "naics_s13": 2, "naics_s14": 29, "naics_s15": 109, "naics_s16": 133, "naics_s17": 0, "naics_s18": 136, "naics_s19": 102, "naics_s20": 0, "race1": 499, "race2": 115, "race3": 5, "race4": 35, "race5": 2, "race6": 15, "ethnicity1": 493, "ethnicity2": 178, "edu1": 91, "edu2": 124, "edu3": 131, "edu4": 108, "Shape_Length": 20012.222327366442, "Shape_Area": 23522435.855043344, "total_2021": 715, "total_2022": 671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.198143969554465, 29.986620249189009 ], [ -95.198075969601405, 29.986439249470383 ], [ -95.198025968954653, 29.986345248835605 ], [ -95.19789896917311, 29.986021248952937 ], [ -95.197785969120005, 29.985702248738022 ], [ -95.19756496954399, 29.985075249160122 ], [ -95.197488968824985, 29.984899248769903 ], [ -95.197444969676482, 29.984751249132955 ], [ -95.197267969291659, 29.984283248964061 ], [ -95.19719796857747, 29.984063249086848 ], [ -95.197128968755592, 29.983898248591032 ], [ -95.197007968883327, 29.983524248288539 ], [ -95.196862968762247, 29.983195248316278 ], [ -95.196717968577858, 29.98276624850984 ], [ -95.196433968296191, 29.982040248633162 ], [ -95.196388969009803, 29.981875248544391 ], [ -95.196275969177861, 29.981595247879394 ], [ -95.196085968478116, 29.981056248626345 ], [ -95.195978968641612, 29.980836248564376 ], [ -95.195945968992248, 29.980754247997858 ], [ -95.195908968802854, 29.980660248043591 ], [ -95.195801969088166, 29.980209247842449 ], [ -95.19573796807525, 29.979610248092744 ], [ -95.195809969026342, 29.979338247750835 ], [ -95.195537968695774, 29.979359248103897 ], [ -95.1954089683571, 29.979365248111936 ], [ -95.195235967935758, 29.979375247546134 ], [ -95.194734967765015, 29.979388247761058 ], [ -95.194591968681067, 29.979384247948168 ], [ -95.194176968009018, 29.979382247533714 ], [ -95.193655967763647, 29.979357247726771 ], [ -95.19349796766592, 29.979342247934568 ], [ -95.193159968196071, 29.979312247879385 ], [ -95.192492967894339, 29.979233247762206 ], [ -95.192355967826188, 29.979208247653453 ], [ -95.192226967093816, 29.979193248099016 ], [ -95.191549967142876, 29.979089247910125 ], [ -95.191192966975294, 29.979027247603923 ], [ -95.191053967473607, 29.979012247649734 ], [ -95.190094967131259, 29.978867248372076 ], [ -95.188986966615829, 29.978967247710628 ], [ -95.188643966395034, 29.978913248115383 ], [ -95.187121965848561, 29.978816247755368 ], [ -95.186952965864748, 29.978806248102931 ], [ -95.186871966574827, 29.978802248444168 ], [ -95.186208966563512, 29.978713247870637 ], [ -95.185580966146517, 29.978709247777939 ], [ -95.185003965783253, 29.97874624775088 ], [ -95.184621965957064, 29.978801247742961 ], [ -95.183909965915561, 29.97891124817026 ], [ -95.183248964914213, 29.979127248364744 ], [ -95.182885965338144, 29.979259247923068 ], [ -95.182542965472081, 29.979384248142676 ], [ -95.182242965117126, 29.979555248650911 ], [ -95.181514964870388, 29.979962248379255 ], [ -95.180936964296947, 29.980261248453665 ], [ -95.180594965124982, 29.980454248185804 ], [ -95.179929964107757, 29.980609248403042 ], [ -95.179040964486944, 29.980823248419121 ], [ -95.178101964327396, 29.980851249164314 ], [ -95.178050963663637, 29.980852248373377 ], [ -95.177990963923065, 29.980854248835247 ], [ -95.177889963899077, 29.980857248706492 ], [ -95.177897964267785, 29.981675249324756 ], [ -95.177966964607691, 29.986417249969712 ], [ -95.177962963883388, 29.987248250382322 ], [ -95.177962964112126, 29.987467250200098 ], [ -95.178031964645569, 29.987476250025846 ], [ -95.178023964117358, 29.992565251263834 ], [ -95.178020964389347, 29.993331251663172 ], [ -95.178085964625936, 29.993310251749048 ], [ -95.178358964298923, 29.99321925154354 ], [ -95.181197965307277, 29.992273250659231 ], [ -95.182128965523987, 29.991964250569787 ], [ -95.18395296593971, 29.991357250785594 ], [ -95.18447296581077, 29.991184250849678 ], [ -95.185067966324993, 29.990985250205966 ], [ -95.185145966538315, 29.99095925088028 ], [ -95.188075967276006, 29.989981250039911 ], [ -95.188351966969677, 29.989889249957908 ], [ -95.190199967351418, 29.989273250345967 ], [ -95.190522967646814, 29.989165250183898 ], [ -95.19250796801893, 29.988497249702789 ], [ -95.192605967931257, 29.9884662501291 ], [ -95.195862968467907, 29.987385249681953 ], [ -95.197702968839096, 29.98676624956218 ], [ -95.19792496980125, 29.986692249030575 ], [ -95.198143969554465, 29.986620249189009 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 901, "Tract": "48201554805", "Area_SqMi": 1.5282957847561525, "total_2009": 369, "total_2010": 324, "total_2011": 356, "total_2012": 579, "total_2013": 474, "total_2014": 525, "total_2015": 470, "total_2016": 310, "total_2017": 307, "total_2018": 307, "total_2019": 297, "total_2020": 95, "age1": 32, "age2": 89, "age3": 25, "earn1": 12, "earn2": 63, "earn3": 71, "naics_s01": 0, "naics_s02": 11, "naics_s03": 1, "naics_s04": 30, "naics_s05": 7, "naics_s06": 0, "naics_s07": 10, "naics_s08": 1, "naics_s09": 0, "naics_s10": 2, "naics_s11": 3, "naics_s12": 25, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 15, "naics_s19": 24, "naics_s20": 0, "race1": 86, "race2": 8, "race3": 0, "race4": 46, "race5": 0, "race6": 6, "ethnicity1": 108, "ethnicity2": 38, "edu1": 30, "edu2": 25, "edu3": 32, "edu4": 27, "Shape_Length": 32287.651363636531, "Shape_Area": 42606270.774624184, "total_2021": 125, "total_2022": 146 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.591177072651121, 30.043788247302952 ], [ -95.591177072617086, 30.043269247044631 ], [ -95.591163073129181, 30.042882247058404 ], [ -95.591144073011449, 30.04241524693251 ], [ -95.591117072967251, 30.042253246958783 ], [ -95.591097072172232, 30.042130246962529 ], [ -95.591037073089865, 30.04179424720974 ], [ -95.590913072200777, 30.04138224692468 ], [ -95.590848073005958, 30.041183246490359 ], [ -95.590323072004452, 30.04021824678339 ], [ -95.590216072577491, 30.040020246121369 ], [ -95.589994072626695, 30.03972024611847 ], [ -95.589660072402353, 30.039341246632553 ], [ -95.589507071676266, 30.039168246814086 ], [ -95.589319071690213, 30.038934246101064 ], [ -95.589242071745971, 30.038823246658353 ], [ -95.589019071645765, 30.038515246400294 ], [ -95.588905071979198, 30.038294246187156 ], [ -95.588771071428425, 30.037999246533243 ], [ -95.588556072012352, 30.037485246309195 ], [ -95.588472071381787, 30.037255246261022 ], [ -95.588341071859745, 30.03691324596085 ], [ -95.588226071311979, 30.036674245560391 ], [ -95.587980071314746, 30.035760245633458 ], [ -95.587595071082205, 30.034379245637883 ], [ -95.587579071667051, 30.034321245797013 ], [ -95.587438071297143, 30.033811245617528 ], [ -95.587364070847897, 30.033556245427118 ], [ -95.58726407127844, 30.033173245066934 ], [ -95.58717907154967, 30.032874245556332 ], [ -95.587174071055003, 30.032856245617836 ], [ -95.587169071273692, 30.032839244805167 ], [ -95.587125071574576, 30.032652245320609 ], [ -95.586995071138162, 30.032007245080592 ], [ -95.586976071591124, 30.031923245325462 ], [ -95.586917071042521, 30.031602244948129 ], [ -95.586875071600758, 30.031376245100461 ], [ -95.586815071239059, 30.031097244949873 ], [ -95.586800071564696, 30.030993244522982 ], [ -95.586776071282245, 30.030896244780958 ], [ -95.586764071531505, 30.030806244892212 ], [ -95.586706071032751, 30.030543245062951 ], [ -95.586679070705941, 30.030338244532313 ], [ -95.586582071016494, 30.029976244613511 ], [ -95.586556071462653, 30.029738244667843 ], [ -95.586432070476846, 30.029107244870442 ], [ -95.586376070349502, 30.028876244457461 ], [ -95.586355071030141, 30.028755244675107 ], [ -95.586303070887737, 30.028518244656702 ], [ -95.586249070532375, 30.028243244741947 ], [ -95.586209070967726, 30.02809024462309 ], [ -95.586150071013051, 30.027817243969334 ], [ -95.585968071099018, 30.026838244274053 ], [ -95.585933070707355, 30.026640244046241 ], [ -95.585925070753447, 30.026527244155659 ], [ -95.585870070752918, 30.02622624426321 ], [ -95.585854070847873, 30.026074243618396 ], [ -95.585846070403221, 30.025926244115453 ], [ -95.585833070273722, 30.025830243715664 ], [ -95.585824070137491, 30.025538243913996 ], [ -95.585806070328317, 30.025325243914928 ], [ -95.585804070151696, 30.025301243302494 ], [ -95.585812070287332, 30.025241243599549 ], [ -95.58581407011917, 30.02517324384284 ], [ -95.585810070895178, 30.025043243318812 ], [ -95.585815070894355, 30.024793243264053 ], [ -95.585810070031954, 30.024527243349684 ], [ -95.585796070971028, 30.024322243956693 ], [ -95.585798070410391, 30.024103243841815 ], [ -95.585788070717527, 30.023749243738493 ], [ -95.58578807076232, 30.023504242940017 ], [ -95.585780070956247, 30.023386243736457 ], [ -95.585768070429197, 30.022954243002296 ], [ -95.585765070313371, 30.022846242808068 ], [ -95.585757070384247, 30.022557242864952 ], [ -95.585759070684873, 30.022302243001509 ], [ -95.585753070807414, 30.02217824302976 ], [ -95.585743070453915, 30.021523242639347 ], [ -95.58572307064027, 30.020234242633919 ], [ -95.585720070365198, 30.019989242892965 ], [ -95.585706070663534, 30.019847242302564 ], [ -95.585719070144293, 30.019577242587026 ], [ -95.585703070444467, 30.019366242401066 ], [ -95.585700070590349, 30.019151242168022 ], [ -95.585689070505865, 30.018475242372187 ], [ -95.585666069720077, 30.018224242222512 ], [ -95.585672070328144, 30.018084242612645 ], [ -95.585663070384882, 30.017817242370516 ], [ -95.585662070273514, 30.017599242242483 ], [ -95.585656069969133, 30.017393242480672 ], [ -95.585659070290163, 30.017090242384626 ], [ -95.585647069783249, 30.016939241741849 ], [ -95.585663070537109, 30.016242242206239 ], [ -95.585645070009122, 30.016084241439572 ], [ -95.585634069924737, 30.015895242045342 ], [ -95.585639070131137, 30.01580724215945 ], [ -95.585625069593831, 30.01508324205313 ], [ -95.585614069689456, 30.014751241888472 ], [ -95.585607069767164, 30.014523241385092 ], [ -95.585615070433221, 30.014440241086646 ], [ -95.584799069655389, 30.014579241133433 ], [ -95.58408107014742, 30.014652241327642 ], [ -95.582906069261057, 30.014701241679901 ], [ -95.582016068935019, 30.014685241563622 ], [ -95.581003069117656, 30.014723241812128 ], [ -95.580434068832645, 30.014745241744087 ], [ -95.579935069065101, 30.014765241448433 ], [ -95.579639068472176, 30.014817242127293 ], [ -95.579331068007278, 30.014887242028813 ], [ -95.578738068664563, 30.015102242089515 ], [ -95.578355068419413, 30.015243241873712 ], [ -95.577925068349685, 30.015421241806155 ], [ -95.57764806804596, 30.015587242372288 ], [ -95.577377067932332, 30.015752241789336 ], [ -95.577175068106271, 30.015880242476051 ], [ -95.577086067795108, 30.015937242337802 ], [ -95.576776067658159, 30.016150242449665 ], [ -95.574347067642194, 30.018806242559386 ], [ -95.572582067465476, 30.02073624340246 ], [ -95.57233206729353, 30.021004243447539 ], [ -95.572188066667024, 30.02114024369029 ], [ -95.571922067165431, 30.02142724309472 ], [ -95.571888067293898, 30.021472243761664 ], [ -95.571868066670177, 30.021499243876562 ], [ -95.571770066925552, 30.021612243671729 ], [ -95.571607066433984, 30.021784243832219 ], [ -95.571292067083718, 30.022136243784555 ], [ -95.570826066807655, 30.022617243539226 ], [ -95.570773066748387, 30.022665243706879 ], [ -95.570718066993123, 30.022709243283128 ], [ -95.570632066288127, 30.022781243608733 ], [ -95.570689067095614, 30.022881243636959 ], [ -95.571951066777345, 30.025090244457129 ], [ -95.57231706731551, 30.025730244433294 ], [ -95.572537067548268, 30.026116243939402 ], [ -95.573959068135721, 30.028624244891173 ], [ -95.574997067710498, 30.03045324545743 ], [ -95.575265067603979, 30.030917245494443 ], [ -95.575890068383586, 30.031994245541039 ], [ -95.577184069045089, 30.034224246252627 ], [ -95.578730069080763, 30.037033246041805 ], [ -95.586326072259908, 30.050350248412247 ], [ -95.586719072367615, 30.051040249253877 ], [ -95.590459073209686, 30.050984249069167 ], [ -95.590537073227523, 30.050184248702358 ], [ -95.590611072620717, 30.049452248830679 ], [ -95.590652073113091, 30.049051248641707 ], [ -95.590678072911146, 30.048806248423947 ], [ -95.590803072934065, 30.047522248066873 ], [ -95.590840072446156, 30.047216247584334 ], [ -95.590878072628371, 30.046725248134628 ], [ -95.590977073312658, 30.045801247858634 ], [ -95.59098307297954, 30.045643247643227 ], [ -95.591003072513885, 30.045543247244886 ], [ -95.591016073187561, 30.04541224784786 ], [ -95.591153073195471, 30.044329247120551 ], [ -95.591177072651121, 30.043788247302952 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 902, "Tract": "48201551704", "Area_SqMi": 0.82133459286920252, "total_2009": 470, "total_2010": 577, "total_2011": 549, "total_2012": 659, "total_2013": 700, "total_2014": 678, "total_2015": 758, "total_2016": 797, "total_2017": 799, "total_2018": 872, "total_2019": 799, "total_2020": 813, "age1": 211, "age2": 330, "age3": 150, "earn1": 166, "earn2": 320, "earn3": 205, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 4, "naics_s06": 12, "naics_s07": 245, "naics_s08": 1, "naics_s09": 0, "naics_s10": 5, "naics_s11": 10, "naics_s12": 91, "naics_s13": 0, "naics_s14": 66, "naics_s15": 1, "naics_s16": 120, "naics_s17": 0, "naics_s18": 75, "naics_s19": 47, "naics_s20": 0, "race1": 465, "race2": 105, "race3": 6, "race4": 104, "race5": 1, "race6": 10, "ethnicity1": 477, "ethnicity2": 214, "edu1": 114, "edu2": 137, "edu3": 130, "edu4": 99, "Shape_Length": 20122.381060884829, "Shape_Area": 22897402.720988616, "total_2021": 693, "total_2022": 691 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.584569064824947, 29.909980220271304 ], [ -95.584541065329873, 29.907287220157645 ], [ -95.584535064501779, 29.906055219230943 ], [ -95.584534064605862, 29.905618219352803 ], [ -95.584530064680578, 29.90448921934145 ], [ -95.584528064582528, 29.904335219451816 ], [ -95.584523064514045, 29.903418218902129 ], [ -95.584521064285155, 29.902961219144213 ], [ -95.584519064713035, 29.902516219106214 ], [ -95.584518064644811, 29.902446218602609 ], [ -95.584517064516703, 29.90211121853212 ], [ -95.584496064204259, 29.898428218192937 ], [ -95.584511064299932, 29.897692218222659 ], [ -95.583881064591608, 29.897690218076626 ], [ -95.583673064640791, 29.897651217628994 ], [ -95.583301064517386, 29.897536217459109 ], [ -95.58138206364697, 29.896453217478573 ], [ -95.580909063523308, 29.896179217350642 ], [ -95.580745063837483, 29.896074217498651 ], [ -95.580486063383532, 29.895937218021572 ], [ -95.580064062791578, 29.895695217492541 ], [ -95.579792063189544, 29.895616217296897 ], [ -95.579628063536191, 29.895569217663621 ], [ -95.579445062763, 29.895530217717841 ], [ -95.579041062726702, 29.895481217613192 ], [ -95.577862062399589, 29.895420217324151 ], [ -95.577174062730776, 29.895437217285899 ], [ -95.576701062187823, 29.895464217307119 ], [ -95.575578061961593, 29.895476217475117 ], [ -95.575104062325423, 29.895498217672639 ], [ -95.573956061225928, 29.89547621755159 ], [ -95.573262061578973, 29.895509217665101 ], [ -95.572603061743223, 29.895512218210857 ], [ -95.572297061331668, 29.895514217379844 ], [ -95.571937061282995, 29.895509217722452 ], [ -95.571710060745303, 29.895531217750452 ], [ -95.570303060562125, 29.895526217449163 ], [ -95.568726060436873, 29.895553217712767 ], [ -95.568518059929517, 29.895575218046989 ], [ -95.568253060153666, 29.89555921831781 ], [ -95.568013060250081, 29.895564217963724 ], [ -95.567824059815791, 29.895553218240384 ], [ -95.567748060383948, 29.895575218020394 ], [ -95.567912059856567, 29.895724217923583 ], [ -95.568019059824536, 29.895867217956717 ], [ -95.568064059756068, 29.896031218414336 ], [ -95.568076060634411, 29.896207217714743 ], [ -95.568051060388171, 29.896405217930269 ], [ -95.567944060521313, 29.896779218561036 ], [ -95.567950060505282, 29.896884217889276 ], [ -95.567994060187146, 29.896933218077105 ], [ -95.567988060373963, 29.897065218133498 ], [ -95.567931060213567, 29.897257218098645 ], [ -95.567900060388155, 29.897312218382066 ], [ -95.567868060443573, 29.897450218079552 ], [ -95.567780059917936, 29.897714218370858 ], [ -95.567729059783403, 29.897912218630029 ], [ -95.567698059723568, 29.898104218301672 ], [ -95.567704060603859, 29.898186218910347 ], [ -95.567635060072277, 29.89823621889316 ], [ -95.567616060432343, 29.898379218295418 ], [ -95.567635060154885, 29.898428218114745 ], [ -95.567666059807181, 29.898456218504844 ], [ -95.567843059740852, 29.898562218680194 ], [ -95.567931060011944, 29.898615218982332 ], [ -95.568108060683898, 29.898736218827516 ], [ -95.568266059890959, 29.898819218441961 ], [ -95.568493060771004, 29.898918218853098 ], [ -95.568638060849651, 29.898945218820913 ], [ -95.568707060549428, 29.898945218669692 ], [ -95.568789060190227, 29.898923218299419 ], [ -95.568859060450066, 29.898929218750155 ], [ -95.569061060105469, 29.898978218480622 ], [ -95.569565060889218, 29.899132219026111 ], [ -95.569799060227211, 29.899231218270675 ], [ -95.569932060290327, 29.899317218729131 ], [ -95.569976060995387, 29.899346218792285 ], [ -95.570140060916088, 29.899478219045069 ], [ -95.570222060433849, 29.899610219023167 ], [ -95.570272060761098, 29.899764218345808 ], [ -95.570329060860161, 29.900050218601226 ], [ -95.570379060497544, 29.900138218357014 ], [ -95.570455061354281, 29.9003252188825 ], [ -95.570569061220581, 29.901034219143096 ], [ -95.570569060921116, 29.90113321876942 ], [ -95.570689060759292, 29.90143521948491 ], [ -95.570739061432548, 29.901815219406995 ], [ -95.570739060622458, 29.901875219365877 ], [ -95.57058206078716, 29.902320219560512 ], [ -95.570550061200933, 29.902656219707275 ], [ -95.570468060572011, 29.903172218996083 ], [ -95.570443061234002, 29.903414219065244 ], [ -95.570474060903834, 29.903739219176359 ], [ -95.570462061007191, 29.903854219876791 ], [ -95.570380060982828, 29.904266220034788 ], [ -95.570343061089304, 29.904617219407026 ], [ -95.570304061465421, 29.904986220135417 ], [ -95.570191061231867, 29.905877220403532 ], [ -95.570197060837259, 29.906042220048523 ], [ -95.570235061421272, 29.906174219690126 ], [ -95.570235061065659, 29.906454219816634 ], [ -95.570178060818222, 29.906987220219015 ], [ -95.570166060967111, 29.907515220458333 ], [ -95.570191060983007, 29.907867220054708 ], [ -95.570166061168777, 29.907939220713246 ], [ -95.570077061327851, 29.90806522064673 ], [ -95.570084061452945, 29.908109220689649 ], [ -95.570210061167472, 29.908202220522128 ], [ -95.570260061619138, 29.908252220519394 ], [ -95.570431061623538, 29.908637220918308 ], [ -95.57053206155922, 29.908824220552926 ], [ -95.570538061209746, 29.908912220989198 ], [ -95.57051906155796, 29.909043220465207 ], [ -95.570559061548082, 29.90914422041914 ], [ -95.570880061583949, 29.90905222048502 ], [ -95.571220061391443, 29.908958220431668 ], [ -95.571340061960939, 29.908932220585363 ], [ -95.571459061612657, 29.90890022089253 ], [ -95.571804061993731, 29.908829220286972 ], [ -95.572266062186756, 29.90876222083233 ], [ -95.572598062042815, 29.908732220643714 ], [ -95.572986061749958, 29.908717220855916 ], [ -95.573230062267641, 29.908718220182074 ], [ -95.573606062324558, 29.908738220164228 ], [ -95.573721061718544, 29.908745220562881 ], [ -95.574104062059462, 29.908789220519495 ], [ -95.574421062031377, 29.908837220027301 ], [ -95.576472063317368, 29.909206220556154 ], [ -95.576950063344214, 29.909284220541725 ], [ -95.577306063007384, 29.909333220538457 ], [ -95.5775620632688, 29.909370220341703 ], [ -95.578370063253317, 29.909486220594189 ], [ -95.578954063430174, 29.909571220296833 ], [ -95.580157063590477, 29.909742220323867 ], [ -95.581172063946738, 29.90989022073509 ], [ -95.581645064106596, 29.909953220035373 ], [ -95.581885064363561, 29.909976220190753 ], [ -95.582185064418425, 29.909989220269082 ], [ -95.582555064061339, 29.909994220094173 ], [ -95.582894064466643, 29.909990220665509 ], [ -95.583793064848507, 29.90998222022473 ], [ -95.584569064824947, 29.909980220271304 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 903, "Tract": "48201552003", "Area_SqMi": 1.0302555784863294, "total_2009": 3477, "total_2010": 3355, "total_2011": 3207, "total_2012": 3413, "total_2013": 3379, "total_2014": 3423, "total_2015": 3635, "total_2016": 3591, "total_2017": 3717, "total_2018": 3165, "total_2019": 2927, "total_2020": 2316, "age1": 664, "age2": 1266, "age3": 583, "earn1": 577, "earn2": 1002, "earn3": 934, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 6, "naics_s06": 12, "naics_s07": 856, "naics_s08": 63, "naics_s09": 10, "naics_s10": 75, "naics_s11": 81, "naics_s12": 229, "naics_s13": 0, "naics_s14": 12, "naics_s15": 140, "naics_s16": 638, "naics_s17": 23, "naics_s18": 314, "naics_s19": 33, "naics_s20": 13, "race1": 1622, "race2": 586, "race3": 24, "race4": 238, "race5": 0, "race6": 43, "ethnicity1": 1762, "ethnicity2": 751, "edu1": 364, "edu2": 456, "edu3": 564, "edu4": 465, "Shape_Length": 24044.048938265249, "Shape_Area": 28721762.228153601, "total_2021": 2783, "total_2022": 2513 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.604936070962182, 29.921813222271343 ], [ -95.604761070900665, 29.921519222102933 ], [ -95.604659070367902, 29.921348221811193 ], [ -95.604323070918099, 29.920796221432095 ], [ -95.604207070673851, 29.920592221548027 ], [ -95.604096070498343, 29.920375221999564 ], [ -95.603994069944676, 29.920150221328864 ], [ -95.603902070833854, 29.919917221437892 ], [ -95.60382106988736, 29.919676221392812 ], [ -95.603753070294772, 29.919430221496079 ], [ -95.603701070749992, 29.919183221114832 ], [ -95.603669070199985, 29.918985221774719 ], [ -95.603661070340522, 29.918937221109463 ], [ -95.603648070163175, 29.918819221557143 ], [ -95.603635070524462, 29.91869322164295 ], [ -95.603621069742317, 29.918439221162803 ], [ -95.603609070650165, 29.917910221564494 ], [ -95.603611070449134, 29.91751522133212 ], [ -95.603607070230979, 29.917266221332721 ], [ -95.603606069986, 29.917171221377444 ], [ -95.603578070258337, 29.915384220511552 ], [ -95.603564070390789, 29.914072220067386 ], [ -95.603553070372371, 29.913373220586568 ], [ -95.603543069829627, 29.912725219806525 ], [ -95.603314070098861, 29.912720220258031 ], [ -95.603187069565664, 29.912714220576941 ], [ -95.599957069103667, 29.912765220504703 ], [ -95.599379069216198, 29.912768220424216 ], [ -95.598260068156122, 29.912774220057024 ], [ -95.597972068448755, 29.912775220795659 ], [ -95.595407068267633, 29.912788220425821 ], [ -95.594977067367921, 29.912797220336973 ], [ -95.594973067275532, 29.912823220339885 ], [ -95.594934068059388, 29.913027220396053 ], [ -95.594866067994801, 29.913271220416643 ], [ -95.594836067632428, 29.913400220250306 ], [ -95.594815067602511, 29.913461220292309 ], [ -95.59479006751566, 29.913514220429288 ], [ -95.594740067619384, 29.913641220842727 ], [ -95.594705067612509, 29.913727220702082 ], [ -95.594628067523217, 29.913889220982959 ], [ -95.594540067693316, 29.91403922040265 ], [ -95.594497067973109, 29.914114220649445 ], [ -95.594363067209059, 29.914325220951898 ], [ -95.594229068101583, 29.914510220769252 ], [ -95.594083067513722, 29.914696221005279 ], [ -95.593889067360195, 29.91491222107506 ], [ -95.593757067220068, 29.915036221189091 ], [ -95.593591067196442, 29.915178221078179 ], [ -95.593402067670198, 29.915332221546119 ], [ -95.593234067759099, 29.915454220694048 ], [ -95.593061067901687, 29.915567221333546 ], [ -95.592772067722919, 29.915737221217093 ], [ -95.592583067456047, 29.915834221314494 ], [ -95.592344066733858, 29.915942221203629 ], [ -95.592125066786934, 29.916030221193747 ], [ -95.591888067406501, 29.916109220920276 ], [ -95.59162806691549, 29.916184221682965 ], [ -95.591367067199798, 29.916246221194665 ], [ -95.591075067008717, 29.916297221108412 ], [ -95.590770067115685, 29.916334221623199 ], [ -95.590574066721643, 29.916348221097934 ], [ -95.590305067189135, 29.916359221281088 ], [ -95.590156066612806, 29.916356221032096 ], [ -95.589863067087563, 29.916339221110849 ], [ -95.589782066097555, 29.916299221523857 ], [ -95.589477066778315, 29.916248221007809 ], [ -95.589057066740764, 29.916146221601043 ], [ -95.588597065912367, 29.916025221255126 ], [ -95.588056065771198, 29.915868221594422 ], [ -95.587299065717531, 29.915617221123128 ], [ -95.587101066186136, 29.915576221424985 ], [ -95.586827065567817, 29.915527221536067 ], [ -95.58652906554812, 29.915461221760054 ], [ -95.586485065740348, 29.91546122096435 ], [ -95.586201065670153, 29.915463221705096 ], [ -95.584687064993133, 29.915474221657512 ], [ -95.584627064902591, 29.91548022136114 ], [ -95.584628065346337, 29.915555221830122 ], [ -95.584649065196231, 29.917557222214647 ], [ -95.584653065528414, 29.917834221754937 ], [ -95.584662064920494, 29.918646222299408 ], [ -95.584680065371998, 29.920371222431697 ], [ -95.58468506587964, 29.920804222493565 ], [ -95.584721066172278, 29.924563223532612 ], [ -95.584722065485124, 29.924625223108201 ], [ -95.58473906532376, 29.926118223714479 ], [ -95.584744065955618, 29.92655222389152 ], [ -95.584775066184733, 29.927353223520726 ], [ -95.584753066011999, 29.927454223676239 ], [ -95.584772065629537, 29.929439223918834 ], [ -95.584772065516376, 29.929486224331683 ], [ -95.584772065899244, 29.929518224047907 ], [ -95.584779065851563, 29.930287224462575 ], [ -95.584781065943261, 29.930490224407716 ], [ -95.584781065740344, 29.930518224813323 ], [ -95.584801066041024, 29.932138225244405 ], [ -95.584803066212174, 29.932993225386724 ], [ -95.584868066240176, 29.932962225072171 ], [ -95.585534065913151, 29.93255122452512 ], [ -95.586129066744192, 29.932187225113406 ], [ -95.587147066520174, 29.931565224264467 ], [ -95.587475066293763, 29.931365224244026 ], [ -95.587858066814334, 29.931132224670389 ], [ -95.58809906665563, 29.93098522444464 ], [ -95.588618067293297, 29.930668224256745 ], [ -95.588899067347853, 29.93049622446522 ], [ -95.58895806679277, 29.930462223930842 ], [ -95.5893210668834, 29.930256224130719 ], [ -95.589599067362187, 29.930098224053221 ], [ -95.589677066905551, 29.930053224371786 ], [ -95.590770067533526, 29.929365223642417 ], [ -95.590905067804911, 29.929281224187175 ], [ -95.591333067809472, 29.929023223939986 ], [ -95.592085068173574, 29.928632223880623 ], [ -95.592211068270444, 29.92853022397161 ], [ -95.59237806770092, 29.928393223434355 ], [ -95.592836068245703, 29.928111223577829 ], [ -95.593155067811708, 29.927914223587049 ], [ -95.593459067866689, 29.927729223618918 ], [ -95.594289068479355, 29.927219223428736 ], [ -95.594488068228756, 29.927098223394033 ], [ -95.594666068195835, 29.926988223324589 ], [ -95.594939068142011, 29.926841223283645 ], [ -95.595027067919958, 29.926793223204239 ], [ -95.59512206887355, 29.926742223625521 ], [ -95.595250068795522, 29.926673223528603 ], [ -95.597249068592248, 29.925472222781245 ], [ -95.597452069143543, 29.925351223309445 ], [ -95.597866069578075, 29.925086223003667 ], [ -95.598072068765333, 29.924959222534248 ], [ -95.598647069376852, 29.92467022237097 ], [ -95.598736069546575, 29.924626222886165 ], [ -95.598759068960746, 29.924614222995835 ], [ -95.599310069170059, 29.924365222927658 ], [ -95.599709069609844, 29.92415822234927 ], [ -95.599966070014759, 29.924041222641513 ], [ -95.600056069074455, 29.924001222513191 ], [ -95.604936070962182, 29.921813222271343 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 904, "Tract": "48201241002", "Area_SqMi": 5.4090432386160474, "total_2009": 184, "total_2010": 174, "total_2011": 168, "total_2012": 204, "total_2013": 209, "total_2014": 218, "total_2015": 213, "total_2016": 240, "total_2017": 174, "total_2018": 139, "total_2019": 237, "total_2020": 193, "age1": 94, "age2": 119, "age3": 75, "earn1": 143, "earn2": 83, "earn3": 62, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 5, "naics_s06": 5, "naics_s07": 2, "naics_s08": 37, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 17, "naics_s14": 0, "naics_s15": 0, "naics_s16": 6, "naics_s17": 72, "naics_s18": 7, "naics_s19": 107, "naics_s20": 0, "race1": 266, "race2": 13, "race3": 0, "race4": 6, "race5": 0, "race6": 3, "ethnicity1": 210, "ethnicity2": 78, "edu1": 26, "edu2": 44, "edu3": 56, "edu4": 68, "Shape_Length": 72379.369519357817, "Shape_Area": 150794867.82258999, "total_2021": 225, "total_2022": 288 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.37905201996729, 30.070432260299853 ], [ -95.379275019672818, 30.070300260360131 ], [ -95.379052019885577, 30.070375260141141 ], [ -95.378195019695909, 30.07066426033586 ], [ -95.377901018949458, 30.070734260155422 ], [ -95.377597019730175, 30.070791260010576 ], [ -95.377290019064432, 30.070836259821842 ], [ -95.376981019113103, 30.070867260302098 ], [ -95.376671019002103, 30.070885260437755 ], [ -95.376360019203958, 30.070889260180916 ], [ -95.376049018776584, 30.07088026033238 ], [ -95.37568801903825, 30.070852260021411 ], [ -95.375380018865783, 30.070814260414362 ], [ -95.37485001888777, 30.070722260729109 ], [ -95.374392018886937, 30.070597260552432 ], [ -95.374048018889184, 30.070495260126439 ], [ -95.373536018199175, 30.070292260212334 ], [ -95.373188017953694, 30.070116260386445 ], [ -95.372889018116126, 30.069956260415989 ], [ -95.372552017674067, 30.069748259769927 ], [ -95.372340017615286, 30.069611259913103 ], [ -95.372139017509525, 30.069456260500377 ], [ -95.371743018185029, 30.069104259807521 ], [ -95.371278017434705, 30.068664259630705 ], [ -95.371017017695721, 30.068396259942649 ], [ -95.370975017167169, 30.06835326004499 ], [ -95.369956017167411, 30.067350259847409 ], [ -95.369794016684821, 30.067190259856979 ], [ -95.369137017133866, 30.066557259636507 ], [ -95.368531016929424, 30.065937259811488 ], [ -95.368250017077443, 30.065707259172559 ], [ -95.367903016455742, 30.06535525930471 ], [ -95.367275016484896, 30.064708259170466 ], [ -95.367254016937466, 30.064686259010223 ], [ -95.366422015658571, 30.063863259108079 ], [ -95.365990016077973, 30.063497259326315 ], [ -95.365420016131694, 30.063100259466196 ], [ -95.365221015626162, 30.062997258787963 ], [ -95.364823016194833, 30.062790259196927 ], [ -95.364394015093112, 30.062594258920665 ], [ -95.363892015175253, 30.062427258894598 ], [ -95.36371901503307, 30.062383258649916 ], [ -95.363317015568825, 30.062282258785086 ], [ -95.363072015299608, 30.062229258586903 ], [ -95.362835015404201, 30.062178258831747 ], [ -95.362118014850424, 30.062041258886467 ], [ -95.361562015286211, 30.061915259239242 ], [ -95.360763014995413, 30.061665258535974 ], [ -95.360228014816627, 30.061428259351931 ], [ -95.359755014584479, 30.061185258936714 ], [ -95.359534014363803, 30.061048259095607 ], [ -95.358854014068527, 30.060522258336761 ], [ -95.357843013840991, 30.059658258542502 ], [ -95.357680013533283, 30.059512258816063 ], [ -95.35707701370157, 30.058971258101174 ], [ -95.356725013558062, 30.058630258060248 ], [ -95.356172013126312, 30.058137258140693 ], [ -95.355425013475326, 30.057482258035684 ], [ -95.355084013455496, 30.057162258567065 ], [ -95.354777013071882, 30.056867258498816 ], [ -95.354647012962914, 30.056714258465831 ], [ -95.3542740126328, 30.056291257857939 ], [ -95.353988012818604, 30.055879257632032 ], [ -95.353931012242953, 30.055783257727082 ], [ -95.353607012592832, 30.055126258169469 ], [ -95.353226012719105, 30.054085258038555 ], [ -95.352987012061362, 30.053597257420648 ], [ -95.352885011770638, 30.053408257382785 ], [ -95.352343011958951, 30.052670256991728 ], [ -95.352294011928805, 30.052604257733933 ], [ -95.351865011602101, 30.052178257026927 ], [ -95.351595011959674, 30.05194525772011 ], [ -95.351476011896821, 30.051843257199835 ], [ -95.351195012149176, 30.051546257504452 ], [ -95.351073012048815, 30.051417257327458 ], [ -95.350657011671558, 30.050879256809438 ], [ -95.350616011151686, 30.050826257391758 ], [ -95.34991301103986, 30.049956256885963 ], [ -95.349208011104508, 30.049086256438212 ], [ -95.349192010800067, 30.049066256397683 ], [ -95.349067011054885, 30.048896256575823 ], [ -95.348234010402876, 30.047917256693424 ], [ -95.347495010650945, 30.046988256637317 ], [ -95.347212010269018, 30.046615256489154 ], [ -95.347171010365528, 30.046560256625959 ], [ -95.346802009870117, 30.046038256222541 ], [ -95.346520010093073, 30.045550256562873 ], [ -95.346393009859568, 30.045288256308265 ], [ -95.345909009922366, 30.045561255835626 ], [ -95.345805010317775, 30.045619256036922 ], [ -95.345734009843923, 30.045660256074786 ], [ -95.345625009568636, 30.045721256653131 ], [ -95.34547500957558, 30.045806255800773 ], [ -95.345373009887069, 30.045870256318242 ], [ -95.345259010031228, 30.045932256097316 ], [ -95.34514701015442, 30.04600225656749 ], [ -95.345018010344418, 30.046064256159557 ], [ -95.3449020094167, 30.046136256056911 ], [ -95.344857009657673, 30.046159256681499 ], [ -95.344779010045713, 30.046201256370104 ], [ -95.344665010056772, 30.046273256338047 ], [ -95.344444009950678, 30.0463992565323 ], [ -95.344203009512739, 30.046549256380491 ], [ -95.344124009548011, 30.046592256533437 ], [ -95.343993009361256, 30.046666256625127 ], [ -95.343806009844982, 30.046747256177166 ], [ -95.343453009988124, 30.046948256326996 ], [ -95.342691009229824, 30.046223256301186 ], [ -95.342536009558785, 30.046076256315864 ], [ -95.341918009273087, 30.045473256296265 ], [ -95.341941009038308, 30.045453256399842 ], [ -95.341995009396982, 30.045398256722223 ], [ -95.34203900896425, 30.045341256337462 ], [ -95.342073009448953, 30.045287256551241 ], [ -95.342096009382772, 30.045226256493851 ], [ -95.342110009365655, 30.045162255846439 ], [ -95.342114008556663, 30.045099256529035 ], [ -95.34210800914552, 30.045040256102574 ], [ -95.342116008767519, 30.044971256043958 ], [ -95.342109008938863, 30.044807256277355 ], [ -95.341976009180271, 30.044794256221515 ], [ -95.341857009192282, 30.044776255894885 ], [ -95.341796008691247, 30.044754256359536 ], [ -95.341734008832631, 30.044725256179699 ], [ -95.341678008951575, 30.044685256076274 ], [ -95.341387008929033, 30.044433256220771 ], [ -95.341012008229995, 30.044098256145904 ], [ -95.340951009221243, 30.044051256296584 ], [ -95.340894009000749, 30.043996256429377 ], [ -95.340474008500863, 30.043621255890152 ], [ -95.340439008923298, 30.043579255636292 ], [ -95.340389009059493, 30.043534255527014 ], [ -95.340349008392593, 30.043490256102853 ], [ -95.340298009057207, 30.043456255688376 ], [ -95.340262008233935, 30.043407255600378 ], [ -95.34018500838944, 30.043347255533408 ], [ -95.340364008541826, 30.043214256105585 ], [ -95.340416008761707, 30.04318525583999 ], [ -95.340474008729458, 30.043160255858517 ], [ -95.340536008281504, 30.043139255839691 ], [ -95.340606008491946, 30.043121255450526 ], [ -95.340675008479792, 30.043109256192082 ], [ -95.34091700890653, 30.043093255922109 ], [ -95.34091500851325, 30.042806256102121 ], [ -95.340906008872452, 30.042720255886749 ], [ -95.340906008670927, 30.042282255568647 ], [ -95.340287008295704, 30.042293255541146 ], [ -95.339980008329121, 30.042302255563442 ], [ -95.339676008461922, 30.042298255349788 ], [ -95.339491007991256, 30.042285256045165 ], [ -95.339319008526942, 30.042262256125273 ], [ -95.339155007721502, 30.042226255437622 ], [ -95.339075008665958, 30.042197255503051 ], [ -95.338930007801693, 30.042136255895198 ], [ -95.338850008192949, 30.042095255851862 ], [ -95.338706008397679, 30.042000255561682 ], [ -95.338631007746173, 30.041944256023601 ], [ -95.338254007444249, 30.041623255349737 ], [ -95.337923007765752, 30.041323255861393 ], [ -95.337599007806361, 30.04103825598138 ], [ -95.337522007447518, 30.040979255206 ], [ -95.33735800804746, 30.040836255366504 ], [ -95.337272008021714, 30.04076225535886 ], [ -95.337205008142291, 30.040715255257201 ], [ -95.337140007810163, 30.040659255718783 ], [ -95.337016007477899, 30.040539255251058 ], [ -95.336638007604151, 30.040210255164837 ], [ -95.336794007297982, 30.04013525581237 ], [ -95.336937007940577, 30.040056255454971 ], [ -95.337082007096271, 30.039962255082621 ], [ -95.337229007772208, 30.03985325567378 ], [ -95.337365007639931, 30.039734255194375 ], [ -95.337487007389129, 30.039608255184042 ], [ -95.337590007450956, 30.039484255458472 ], [ -95.33762400795986, 30.039415255579243 ], [ -95.337710007244397, 30.039323255056043 ], [ -95.337740007659264, 30.039282255573909 ], [ -95.337760007394721, 30.039237254915172 ], [ -95.337813007288432, 30.039150255203285 ], [ -95.33738600778257, 30.038924254979943 ], [ -95.336899007270588, 30.038628255267721 ], [ -95.336813007391243, 30.038722255429747 ], [ -95.336764007344058, 30.038768255213956 ], [ -95.336700007124804, 30.038809255456293 ], [ -95.336635006999188, 30.038833255143885 ], [ -95.336188006920111, 30.038945254929544 ], [ -95.335929007278054, 30.03900825482707 ], [ -95.335583007130737, 30.039104255263332 ], [ -95.335519007217883, 30.039112255249076 ], [ -95.335412007088408, 30.039116255603673 ], [ -95.335338007427168, 30.039090255585599 ], [ -95.335235006832235, 30.039014255191642 ], [ -95.334976006731196, 30.038773255231526 ], [ -95.334903007237045, 30.038720254976166 ], [ -95.334843006471203, 30.03866025489819 ], [ -95.334775006987712, 30.038602255188799 ], [ -95.334726007210222, 30.03854725492598 ], [ -95.334649006485151, 30.038493255421521 ], [ -95.334595006339782, 30.038437254925604 ], [ -95.334018006478928, 30.037927254746748 ], [ -95.334130006381642, 30.037872254561758 ], [ -95.33431700625907, 30.037765254785857 ], [ -95.334507006291545, 30.037618255100138 ], [ -95.33469500688679, 30.037464255151729 ], [ -95.334841006793724, 30.037337254920377 ], [ -95.335006006534229, 30.037190254989607 ], [ -95.3350720073948, 30.037141254452866 ], [ -95.335103006941424, 30.03711025462621 ], [ -95.33466100684781, 30.036715254887827 ], [ -95.334400007043257, 30.036449254768268 ], [ -95.334315006691227, 30.036322255137151 ], [ -95.334212006984515, 30.036240254262687 ], [ -95.332425005863143, 30.034686253967603 ], [ -95.332333005642141, 30.034610254348511 ], [ -95.331474006345033, 30.033848254469419 ], [ -95.331292005493452, 30.033686254311416 ], [ -95.331130005629888, 30.033526254093832 ], [ -95.330983005377718, 30.033367254441576 ], [ -95.330865005874031, 30.033223254307533 ], [ -95.330660006057741, 30.032933254343458 ], [ -95.330575005655973, 30.032787254120816 ], [ -95.330482005222819, 30.03260425362862 ], [ -95.330391005435388, 30.032396254309891 ], [ -95.330312005713836, 30.032174253918047 ], [ -95.330247005457025, 30.031945254369145 ], [ -95.330196005578301, 30.031704253515642 ], [ -95.330143005533557, 30.031340253411777 ], [ -95.330061005808162, 30.030603253424168 ], [ -95.33004900551812, 30.030492253654117 ], [ -95.329640004836619, 30.030306253851101 ], [ -95.328380004432205, 30.029568253191261 ], [ -95.32795900423838, 30.029128253847997 ], [ -95.32718300440375, 30.0284922537829 ], [ -95.327043004110934, 30.0280102531955 ], [ -95.327029004059611, 30.026832252801604 ], [ -95.326885003822312, 30.026537253038057 ], [ -95.32673000459468, 30.026370253295251 ], [ -95.326549004359464, 30.026286253167417 ], [ -95.326395004683377, 30.026315252801631 ], [ -95.326090004036317, 30.026499252540106 ], [ -95.325075003847232, 30.027291253287149 ], [ -95.324857003345571, 30.027611253471139 ], [ -95.324655003580361, 30.027907253113671 ], [ -95.324404004015776, 30.028190253112463 ], [ -95.323996003349976, 30.028434253201617 ], [ -95.323894003371521, 30.028495253717452 ], [ -95.323575003267266, 30.028615253257666 ], [ -95.323440003862117, 30.028666253177345 ], [ -95.323143003277053, 30.028803253937351 ], [ -95.322819003707735, 30.029380253691926 ], [ -95.322552002944136, 30.029549253627533 ], [ -95.32146600334066, 30.030065253486942 ], [ -95.3214420033853, 30.03013125430909 ], [ -95.321436002686738, 30.030310254260456 ], [ -95.321493003621967, 30.030478254204073 ], [ -95.32230700318901, 30.030900254177993 ], [ -95.32242700365255, 30.030997253790765 ], [ -95.322472003533562, 30.031097254178448 ], [ -95.322458003008222, 30.032451254121135 ], [ -95.32238700315142, 30.032768254021931 ], [ -95.322276003507199, 30.032960254805278 ], [ -95.32208600379478, 30.033097254062422 ], [ -95.321292003390752, 30.033398254736976 ], [ -95.320743003006527, 30.033560255005828 ], [ -95.319936003389486, 30.033721254410356 ], [ -95.319359002265017, 30.0339192550042 ], [ -95.318470002012788, 30.034374255088341 ], [ -95.318213002845368, 30.034464254435086 ], [ -95.318182002778457, 30.034466254504309 ], [ -95.317802002514384, 30.034487254654401 ], [ -95.31733000194609, 30.034358254751744 ], [ -95.317138001810662, 30.034172254937872 ], [ -95.316545001738731, 30.033309254963079 ], [ -95.316517001829823, 30.033096254541743 ], [ -95.316632002226797, 30.032461254438338 ], [ -95.316569001824945, 30.032217254132746 ], [ -95.316307001796048, 30.031769254051166 ], [ -95.316087002081858, 30.031510254124225 ], [ -95.315916001282886, 30.031409254474497 ], [ -95.315591001434271, 30.031443254370153 ], [ -95.314926001855653, 30.031734253996127 ], [ -95.314716001437915, 30.031907254405532 ], [ -95.314102000942981, 30.032582254991102 ], [ -95.313974001105834, 30.032685255022074 ], [ -95.313708001399888, 30.032901254681665 ], [ -95.313388001302684, 30.033064254472489 ], [ -95.313105001114707, 30.033113254875399 ], [ -95.31290400134246, 30.033075254804775 ], [ -95.312474001134476, 30.032600255004123 ], [ -95.312203001288239, 30.032434254678879 ], [ -95.311809000564025, 30.032331254846888 ], [ -95.311561001018731, 30.032333254793073 ], [ -95.311296000786683, 30.032430254817147 ], [ -95.31115500053869, 30.032560254995811 ], [ -95.311056000175967, 30.032773255129072 ], [ -95.311001000405014, 30.032892255035449 ], [ -95.311461000455466, 30.033304254858351 ], [ -95.31220400105866, 30.034340254850672 ], [ -95.312566001462869, 30.035104255512174 ], [ -95.312813001012827, 30.035999255305224 ], [ -95.312775001055513, 30.036823255552317 ], [ -95.312476001268365, 30.038015255968524 ], [ -95.3124250014545, 30.038660255538282 ], [ -95.312030001046622, 30.040449255935979 ], [ -95.311511000599637, 30.041890256842226 ], [ -95.31137400137159, 30.042154256595975 ], [ -95.311286001141724, 30.042316256468695 ], [ -95.311053000744735, 30.042519256786122 ], [ -95.310583000801444, 30.042655256939948 ], [ -95.310346000877473, 30.042800257215603 ], [ -95.30977100097671, 30.043269257244312 ], [ -95.309418001082761, 30.043668256700268 ], [ -95.309315000828079, 30.043941257363436 ], [ -95.309247000901166, 30.044586257407701 ], [ -95.30955500077539, 30.045630257556539 ], [ -95.309761000829624, 30.04589825729229 ], [ -95.310571001178531, 30.046397257962642 ], [ -95.31139800123627, 30.046985257565197 ], [ -95.31202800182983, 30.047653258186354 ], [ -95.312346001687914, 30.0480742581986 ], [ -95.312594001947815, 30.048529258134725 ], [ -95.312740001336266, 30.049454258253142 ], [ -95.313120001826505, 30.050555258182449 ], [ -95.313244002285998, 30.050783258121108 ], [ -95.31391600246117, 30.051602258823614 ], [ -95.314988002153498, 30.052550259112763 ], [ -95.315622002939548, 30.053478258619442 ], [ -95.315958003091538, 30.053845258513114 ], [ -95.316212002710216, 30.054028259157135 ], [ -95.316576002837152, 30.054200258722524 ], [ -95.31710900305886, 30.054266258688717 ], [ -95.31744100301546, 30.054262258775807 ], [ -95.317838003104313, 30.054158258992853 ], [ -95.318183002864302, 30.053959258992769 ], [ -95.319781003277711, 30.052730258842903 ], [ -95.320775003880144, 30.052768258358288 ], [ -95.32118100372405, 30.052841258060074 ], [ -95.321522004500764, 30.052973258890493 ], [ -95.321831004244316, 30.053154258428354 ], [ -95.322337004520534, 30.053629258324204 ], [ -95.322960004897368, 30.054602258775638 ], [ -95.323409005130131, 30.055875259144376 ], [ -95.323745004800145, 30.056239258799199 ], [ -95.324008004865675, 30.056469258823082 ], [ -95.324312004791537, 30.056656259190635 ], [ -95.325532005635537, 30.057100259495002 ], [ -95.32634000547246, 30.057539259439316 ], [ -95.32703700572695, 30.058047259180665 ], [ -95.327383005865585, 30.058620259414226 ], [ -95.328006006509767, 30.059757259908331 ], [ -95.328128005702681, 30.060230260181331 ], [ -95.328071006058494, 30.060657259877349 ], [ -95.328095006373488, 30.061303259585898 ], [ -95.328475006262906, 30.061941260296337 ], [ -95.328790006599817, 30.062224260340241 ], [ -95.329329007070825, 30.062491260294255 ], [ -95.330880007099537, 30.062883260088892 ], [ -95.331428007107561, 30.063136260498041 ], [ -95.332060007695432, 30.063308260315051 ], [ -95.33287400780641, 30.06342226025539 ], [ -95.334313008056853, 30.063060260406974 ], [ -95.335023007703171, 30.062881260323007 ], [ -95.335432008095324, 30.062820260502345 ], [ -95.33630200805429, 30.062814259598508 ], [ -95.33687700879716, 30.063016259828345 ], [ -95.337120008344982, 30.063154259895352 ], [ -95.337322008674064, 30.063335259693385 ], [ -95.33757300838667, 30.063827260308265 ], [ -95.33769900899361, 30.064208260048705 ], [ -95.337746008606814, 30.064674260603045 ], [ -95.33787800919103, 30.065128260223776 ], [ -95.337870009309754, 30.065522260282474 ], [ -95.338150009112539, 30.066083260287304 ], [ -95.338478008937315, 30.066313260211981 ], [ -95.33931500946845, 30.066623260530104 ], [ -95.340176009360945, 30.066732261060835 ], [ -95.341095010081887, 30.066949261149222 ], [ -95.341649009787602, 30.067195261072602 ], [ -95.342554009734613, 30.067703260414834 ], [ -95.342881010284245, 30.06797926075475 ], [ -95.343137010575191, 30.068307260576976 ], [ -95.343355010938794, 30.068888261261566 ], [ -95.343555010390062, 30.069660261559051 ], [ -95.343962011092287, 30.070679261655275 ], [ -95.344358011150788, 30.071352261618316 ], [ -95.344700011047678, 30.071759261667378 ], [ -95.345019011008347, 30.071989261256075 ], [ -95.346036010954194, 30.072572261580785 ], [ -95.346813011548861, 30.072821261246261 ], [ -95.347921012084967, 30.072947261917321 ], [ -95.348336012432256, 30.072933261537557 ], [ -95.348858011788181, 30.073152261553215 ], [ -95.349161011843464, 30.073340261511731 ], [ -95.349363012031333, 30.073611261860936 ], [ -95.349524012676724, 30.073943262070728 ], [ -95.34949201186113, 30.074338262040833 ], [ -95.349377011832431, 30.074940261598286 ], [ -95.349364011995959, 30.075848262003451 ], [ -95.349335012227229, 30.076097261904359 ], [ -95.349546012926112, 30.076403262420822 ], [ -95.349681012687498, 30.076484262146554 ], [ -95.349940012126254, 30.076599262229308 ], [ -95.35025801312824, 30.076659262216943 ], [ -95.350539012379357, 30.076656262489355 ], [ -95.351111012838558, 30.076600261938463 ], [ -95.352648013300467, 30.076300262051479 ], [ -95.353640013190912, 30.076342261755279 ], [ -95.354100013847017, 30.076505262310334 ], [ -95.354611013621493, 30.076812262118356 ], [ -95.355528014381605, 30.077234262473123 ], [ -95.356012013764726, 30.077323262067761 ], [ -95.356679014765831, 30.077221262597639 ], [ -95.357240014147862, 30.077093262518364 ], [ -95.358680014566204, 30.076540262373356 ], [ -95.359010015248685, 30.076523261919064 ], [ -95.359418015166398, 30.076589261871259 ], [ -95.359723015170715, 30.076700261789984 ], [ -95.359944014966757, 30.076864261906476 ], [ -95.360521015122998, 30.077653262271916 ], [ -95.361109014981835, 30.078160262065214 ], [ -95.361413015837869, 30.078275262658899 ], [ -95.362143015861818, 30.078398262419331 ], [ -95.36254301543201, 30.078313262053374 ], [ -95.363270016245053, 30.077969262365034 ], [ -95.363756015853909, 30.077578262268133 ], [ -95.364036015955548, 30.077266261712136 ], [ -95.364685016313345, 30.076822261584322 ], [ -95.365223016764972, 30.076633262279213 ], [ -95.365551016708437, 30.07659726202105 ], [ -95.365707016998641, 30.076639261412002 ], [ -95.365912017114653, 30.076817261883676 ], [ -95.366179016846033, 30.077343261660285 ], [ -95.366658016344843, 30.077652262061982 ], [ -95.367082016970301, 30.07750126190821 ], [ -95.367182016666291, 30.077334261726133 ], [ -95.367302016690402, 30.077290262142178 ], [ -95.367454016952422, 30.077285261789523 ], [ -95.36795301712732, 30.077367262088579 ], [ -95.36813001768887, 30.077285261941196 ], [ -95.368256016890413, 30.077142261547731 ], [ -95.368300017182293, 30.076905261328367 ], [ -95.36828101755431, 30.07664126174393 ], [ -95.368414017304488, 30.076383261261515 ], [ -95.368641016872445, 30.076157261768262 ], [ -95.368685017800317, 30.075976261530819 ], [ -95.368685017716174, 30.075855261685032 ], [ -95.368875017761184, 30.075662261323249 ], [ -95.369045016967206, 30.075470261146769 ], [ -95.369128017238765, 30.075332261244249 ], [ -95.369165017252897, 30.075129261046374 ], [ -95.369172017792337, 30.074997261066251 ], [ -95.369159016964275, 30.074656261599834 ], [ -95.369462017665541, 30.074282261613245 ], [ -95.369531017480497, 30.074178261430323 ], [ -95.369885017951859, 30.073897260828161 ], [ -95.37016901762783, 30.073782261281256 ], [ -95.370441017639379, 30.073704261258211 ], [ -95.370840017838091, 30.073682260824977 ], [ -95.37211201817243, 30.073867261301242 ], [ -95.372648018395793, 30.073945261012163 ], [ -95.372941018401306, 30.074034260667684 ], [ -95.373352018463166, 30.073803260937503 ], [ -95.373591018931478, 30.07366226097642 ], [ -95.376729018909941, 30.071806260180036 ], [ -95.377664019047245, 30.071253260208408 ], [ -95.378374019734295, 30.070833260286218 ], [ -95.37905201996729, 30.070432260299853 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 905, "Tract": "48201550407", "Area_SqMi": 1.1590858606690777, "total_2009": 146, "total_2010": 184, "total_2011": 70, "total_2012": 144, "total_2013": 156, "total_2014": 201, "total_2015": 197, "total_2016": 52, "total_2017": 55, "total_2018": 35, "total_2019": 25, "total_2020": 21, "age1": 0, "age2": 23, "age3": 4, "earn1": 5, "earn2": 11, "earn3": 11, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 3, "naics_s06": 2, "naics_s07": 1, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 6, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 3, "naics_s20": 0, "race1": 18, "race2": 1, "race3": 0, "race4": 8, "race5": 0, "race6": 0, "ethnicity1": 18, "ethnicity2": 9, "edu1": 8, "edu2": 6, "edu3": 8, "edu4": 5, "Shape_Length": 29008.139709637744, "Shape_Area": 32313330.000177011, "total_2021": 31, "total_2022": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.473436039449879, 29.978181238459264 ], [ -95.47367403953443, 29.977919237690624 ], [ -95.473237039881411, 29.977615237546953 ], [ -95.473065039625453, 29.977485238246015 ], [ -95.472811039049759, 29.977267237838074 ], [ -95.472647039703716, 29.977115238294978 ], [ -95.472426039602254, 29.976886237649108 ], [ -95.472149039727896, 29.976569237748233 ], [ -95.471823039490445, 29.976762237703475 ], [ -95.471577038901444, 29.976866237722657 ], [ -95.471343038887809, 29.977059237542758 ], [ -95.471192038959188, 29.977251238197184 ], [ -95.471072039267483, 29.977433237680334 ], [ -95.470819038531317, 29.977746238196438 ], [ -95.470662038443407, 29.977872238197648 ], [ -95.470523038970143, 29.977944237638475 ], [ -95.470251038472981, 29.978049237990003 ], [ -95.470055038920904, 29.978098238378415 ], [ -95.469512038783733, 29.978153238359088 ], [ -95.469449038225036, 29.978153238337249 ], [ -95.46929103830108, 29.97819223776709 ], [ -95.469121038667026, 29.978186238326401 ], [ -95.468887038698568, 29.977999238215748 ], [ -95.468729038224865, 29.977763238451878 ], [ -95.468653038517175, 29.977433238241968 ], [ -95.468634038859705, 29.977109238008438 ], [ -95.468653038503959, 29.976647237561796 ], [ -95.468577038423419, 29.976163237696468 ], [ -95.468179038533663, 29.975031237525858 ], [ -95.467484038187294, 29.974410237647657 ], [ -95.466259037222969, 29.973289236935436 ], [ -95.46587303727685, 29.972899237343981 ], [ -95.464873036872319, 29.972921237372674 ], [ -95.464272037138159, 29.972937236925965 ], [ -95.461441035881307, 29.973010237272629 ], [ -95.460346035684182, 29.973022237720702 ], [ -95.460064036322777, 29.973026237242351 ], [ -95.459662035525213, 29.973038237472498 ], [ -95.459606035509125, 29.973040237828059 ], [ -95.456705035581422, 29.973132237525252 ], [ -95.45443803413572, 29.973171237800791 ], [ -95.453011034072063, 29.973171237920546 ], [ -95.452777034358363, 29.973193237494648 ], [ -95.452682033699404, 29.973281237569505 ], [ -95.452701034053845, 29.973759237567183 ], [ -95.452594034578397, 29.973924237983567 ], [ -95.452443033848624, 29.973963238274717 ], [ -95.449828033929705, 29.974034238308398 ], [ -95.447917032836813, 29.974077238473257 ], [ -95.447164032607219, 29.974095238003123 ], [ -95.446141032449916, 29.974106237987662 ], [ -95.445977032505553, 29.974073237822946 ], [ -95.445894032776636, 29.974035238184335 ], [ -95.445762032198317, 29.974028237980512 ], [ -95.445768032627683, 29.978798239410928 ], [ -95.445781033185469, 29.982434239505274 ], [ -95.452586034627529, 29.982338239611483 ], [ -95.452738034610903, 29.982808239528751 ], [ -95.453194034834212, 29.984216240154424 ], [ -95.453855034810772, 29.986114240460626 ], [ -95.454204035573468, 29.986484240552684 ], [ -95.455614035089567, 29.986413240116651 ], [ -95.457281035844574, 29.985642239723607 ], [ -95.458293036334766, 29.985325239625404 ], [ -95.458658036042678, 29.985285239709228 ], [ -95.459442036028562, 29.985270240156428 ], [ -95.459737036434035, 29.985059240096419 ], [ -95.460109036780167, 29.984222239295107 ], [ -95.460288036355337, 29.984070239279532 ], [ -95.461321036405337, 29.983528239612486 ], [ -95.461618036794064, 29.983421239429294 ], [ -95.46258303748769, 29.983312239178026 ], [ -95.464115037234819, 29.985559239402331 ], [ -95.46571903833923, 29.987498239892876 ], [ -95.466053038471983, 29.987798240429438 ], [ -95.466596038269671, 29.988072240471212 ], [ -95.467598038250557, 29.988942240481951 ], [ -95.467863038854432, 29.988337240193111 ], [ -95.468232038763489, 29.987620240202038 ], [ -95.468411039286323, 29.987459240049102 ], [ -95.470940038991728, 29.986137239845618 ], [ -95.472250039536192, 29.985390239704177 ], [ -95.471750039214058, 29.984261239234225 ], [ -95.471530039098738, 29.983866239432658 ], [ -95.471356039736179, 29.983588238779152 ], [ -95.471089039380757, 29.983205239503935 ], [ -95.469246038473443, 29.980625238550395 ], [ -95.469371039003889, 29.980553238797697 ], [ -95.470258038633176, 29.980057238116693 ], [ -95.471005038669858, 29.979647238709269 ], [ -95.47148203941137, 29.979385238159523 ], [ -95.472197039764424, 29.978993238288862 ], [ -95.472755039915825, 29.978687238329957 ], [ -95.472969039715707, 29.97856123830331 ], [ -95.473101039216502, 29.978470238248015 ], [ -95.473283039716577, 29.978326238394356 ], [ -95.473436039449879, 29.978181238459264 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 906, "Tract": "48201550303", "Area_SqMi": 0.56816297890253309, "total_2009": 844, "total_2010": 1194, "total_2011": 935, "total_2012": 702, "total_2013": 1214, "total_2014": 1328, "total_2015": 1408, "total_2016": 929, "total_2017": 940, "total_2018": 964, "total_2019": 958, "total_2020": 998, "age1": 411, "age2": 638, "age3": 286, "earn1": 233, "earn2": 332, "earn3": 770, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 36, "naics_s07": 804, "naics_s08": 0, "naics_s09": 0, "naics_s10": 25, "naics_s11": 29, "naics_s12": 15, "naics_s13": 0, "naics_s14": 55, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 345, "naics_s19": 0, "naics_s20": 0, "race1": 1007, "race2": 230, "race3": 17, "race4": 60, "race5": 3, "race6": 18, "ethnicity1": 854, "ethnicity2": 481, "edu1": 200, "edu2": 278, "edu3": 290, "edu4": 156, "Shape_Length": 20011.807147815009, "Shape_Area": 15839411.431145715, "total_2021": 1084, "total_2022": 1335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.43727403014887, 29.981038239590816 ], [ -95.437181030981918, 29.980957240038883 ], [ -95.43682803005612, 29.980648239787236 ], [ -95.435661030092476, 29.979628239513524 ], [ -95.435341030391911, 29.979348240037705 ], [ -95.435244029746329, 29.979269239443887 ], [ -95.435061029452328, 29.979109239287325 ], [ -95.434708029533454, 29.978799239201408 ], [ -95.434637030240992, 29.978737239111364 ], [ -95.43420203012613, 29.978356238989601 ], [ -95.434073030026582, 29.978244239376423 ], [ -95.43387902949226, 29.978080239327646 ], [ -95.433700029438569, 29.97792223970405 ], [ -95.433540028989071, 29.977787239645565 ], [ -95.433345029271536, 29.977616239711299 ], [ -95.43311802894921, 29.977409239048367 ], [ -95.432850029034427, 29.977179239433998 ], [ -95.432754028820213, 29.977101239150638 ], [ -95.432687029103917, 29.977042238779806 ], [ -95.431843028414775, 29.976300239332229 ], [ -95.431558028521479, 29.976047239382943 ], [ -95.43139102925845, 29.975899239171042 ], [ -95.430724028740556, 29.975305238920058 ], [ -95.43061502835063, 29.975216239051154 ], [ -95.430417028857306, 29.975040239206063 ], [ -95.430248028166886, 29.974888239005455 ], [ -95.430102027925329, 29.974756238582778 ], [ -95.430007028482251, 29.97467923845992 ], [ -95.429841028513835, 29.974529239086856 ], [ -95.429610028327019, 29.974331239030548 ], [ -95.429548028286092, 29.974267238636095 ], [ -95.42949202805633, 29.974223238509477 ], [ -95.42925202819643, 29.974017238907816 ], [ -95.428935027591322, 29.973727238535378 ], [ -95.42863802811658, 29.973471238296089 ], [ -95.428364027699232, 29.973231238252172 ], [ -95.428328028042884, 29.973197238652133 ], [ -95.428279028369431, 29.97315123899514 ], [ -95.428195028081518, 29.973081238995906 ], [ -95.428154027775435, 29.973042238652962 ], [ -95.427655028156423, 29.972679238210194 ], [ -95.426835026997267, 29.971966238274529 ], [ -95.426656026922103, 29.971818238111769 ], [ -95.426137027210643, 29.97140923843552 ], [ -95.42525702671378, 29.970716238325139 ], [ -95.424917027122461, 29.970443238450382 ], [ -95.424640027174448, 29.9701822380446 ], [ -95.424375026204146, 29.969923238047592 ], [ -95.424072026943108, 29.969570237575478 ], [ -95.423708026646054, 29.969028237530697 ], [ -95.423497026577181, 29.96869823780851 ], [ -95.42343102675197, 29.968585237778882 ], [ -95.423171026229113, 29.967971237667449 ], [ -95.423162026785391, 29.967949237276432 ], [ -95.423102025891623, 29.967587237189122 ], [ -95.423033025909348, 29.967250237476314 ], [ -95.422967026202542, 29.966814237873006 ], [ -95.422922026041874, 29.965987237051952 ], [ -95.422364025560441, 29.965984237308973 ], [ -95.421871025910946, 29.965961237376973 ], [ -95.421662025912383, 29.965936237671745 ], [ -95.421604026128932, 29.96593123777625 ], [ -95.420618025796799, 29.96583823768184 ], [ -95.419582025154227, 29.965728237008079 ], [ -95.419347025539125, 29.965734237791448 ], [ -95.419259025473053, 29.965736237113262 ], [ -95.41930402574161, 29.965902237777165 ], [ -95.419552025208645, 29.966762237937971 ], [ -95.419903025265825, 29.968305237629249 ], [ -95.420102026027322, 29.969147237687615 ], [ -95.42022202517569, 29.969751237756114 ], [ -95.420971026079087, 29.972773238719615 ], [ -95.421225025660931, 29.973704239251081 ], [ -95.421359026264753, 29.974172239091889 ], [ -95.421539025820934, 29.9750842389222 ], [ -95.421772026845773, 29.976265239454822 ], [ -95.422215026518927, 29.978842240321466 ], [ -95.422409027069477, 29.979920240181045 ], [ -95.422566026388267, 29.980791240733279 ], [ -95.422736027294278, 29.981748240272651 ], [ -95.422775027340705, 29.9819682404631 ], [ -95.422901026760883, 29.981942240726145 ], [ -95.423088027357252, 29.981903240925373 ], [ -95.423785027121539, 29.981815240597548 ], [ -95.424246027198819, 29.981748240365409 ], [ -95.424498027758645, 29.981705240530832 ], [ -95.424675027446682, 29.981683240646639 ], [ -95.424853027517557, 29.98166924064758 ], [ -95.424961027569609, 29.981661240376084 ], [ -95.425237027854934, 29.981640240558558 ], [ -95.42548202734524, 29.981621240156574 ], [ -95.425643027521303, 29.98161924058018 ], [ -95.427561028416719, 29.981618240676251 ], [ -95.428098027996498, 29.981622240210847 ], [ -95.428333028664611, 29.981640240227378 ], [ -95.428769028638982, 29.981694240503906 ], [ -95.428947028885872, 29.981723239883145 ], [ -95.428974028641122, 29.98172824060854 ], [ -95.429242028316068, 29.981788240260016 ], [ -95.429384028953351, 29.981820240631667 ], [ -95.429694028144709, 29.981903240196576 ], [ -95.429911029185931, 29.981970240654707 ], [ -95.430056028411087, 29.982024240296301 ], [ -95.430235028323239, 29.982090239981932 ], [ -95.430556029373548, 29.982225240178312 ], [ -95.430901029193166, 29.982390240392451 ], [ -95.431079029101298, 29.982486240565809 ], [ -95.431379028621649, 29.982668240714798 ], [ -95.431477029352891, 29.98273224066677 ], [ -95.43174002940809, 29.98290524002946 ], [ -95.432460029456763, 29.983378240085134 ], [ -95.433535029658756, 29.984084240246432 ], [ -95.434133029733061, 29.984476241062183 ], [ -95.434239029488012, 29.984553240914465 ], [ -95.435023029569535, 29.983645240282176 ], [ -95.435211029631489, 29.983437240682846 ], [ -95.435527029787451, 29.983065240658249 ], [ -95.437094030129643, 29.98125824025534 ], [ -95.43727403014887, 29.981038239590816 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 907, "Tract": "48201453902", "Area_SqMi": 0.36652130285148188, "total_2009": 73, "total_2010": 77, "total_2011": 28, "total_2012": 43, "total_2013": 55, "total_2014": 42, "total_2015": 31, "total_2016": 52, "total_2017": 44, "total_2018": 48, "total_2019": 173, "total_2020": 29, "age1": 9, "age2": 23, "age3": 13, "earn1": 11, "earn2": 15, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 2, "naics_s07": 22, "naics_s08": 0, "naics_s09": 1, "naics_s10": 6, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 28, "race2": 8, "race3": 3, "race4": 6, "race5": 0, "race6": 0, "ethnicity1": 29, "ethnicity2": 16, "edu1": 9, "edu2": 9, "edu3": 14, "edu4": 4, "Shape_Length": 16049.514019626085, "Shape_Area": 10217986.616020082, "total_2021": 34, "total_2022": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.634753067540586, 29.680782172004839 ], [ -95.634680068001586, 29.680726171639709 ], [ -95.634313066971913, 29.680630172127415 ], [ -95.634206067255249, 29.680566171648966 ], [ -95.632695066704159, 29.679669171346347 ], [ -95.632514067217841, 29.679566171669574 ], [ -95.631837066946005, 29.67918617192095 ], [ -95.631808066182558, 29.67917017175904 ], [ -95.630972066258821, 29.678812171301637 ], [ -95.630943065961802, 29.678799171285 ], [ -95.630864065993848, 29.67876517178745 ], [ -95.630075066271502, 29.678285171315398 ], [ -95.630041065884058, 29.678264171638002 ], [ -95.629949065909273, 29.67820817141471 ], [ -95.629120066122027, 29.677641171296987 ], [ -95.629094065788394, 29.677624171031439 ], [ -95.628262065258369, 29.677194171674799 ], [ -95.628231065517141, 29.677178170908558 ], [ -95.627347065673121, 29.676678171592851 ], [ -95.627307064990333, 29.676655171456868 ], [ -95.626414065198546, 29.676164171049226 ], [ -95.626391065391502, 29.676151171363433 ], [ -95.625560064635309, 29.675687171354113 ], [ -95.625524064956366, 29.675667170740269 ], [ -95.624760064413834, 29.675220170865945 ], [ -95.624096064444601, 29.674834171041546 ], [ -95.624072064679382, 29.674820170885802 ], [ -95.624037064039697, 29.674799170560302 ], [ -95.623833064719236, 29.674675171111094 ], [ -95.623430064116917, 29.674437171135111 ], [ -95.623185063776049, 29.674303170792228 ], [ -95.623177063957357, 29.674448171282744 ], [ -95.623177064081133, 29.674496171270857 ], [ -95.623150064757809, 29.674845171320264 ], [ -95.623109064762303, 29.675164171380249 ], [ -95.623091064538983, 29.675346171083302 ], [ -95.622789064103017, 29.675357171251989 ], [ -95.622125064250469, 29.675362171233008 ], [ -95.621390063447663, 29.675368170781063 ], [ -95.620805063261969, 29.675372170945369 ], [ -95.620322063232678, 29.675376170876582 ], [ -95.619177063553096, 29.675385171539617 ], [ -95.618657063637883, 29.675386171364366 ], [ -95.61843306330546, 29.67538717087476 ], [ -95.616787062930442, 29.675393171700986 ], [ -95.616472062902105, 29.675395171128379 ], [ -95.616119062530316, 29.675397171593644 ], [ -95.615736062073196, 29.675400171139767 ], [ -95.615449061889521, 29.675401171748859 ], [ -95.615234062139209, 29.675402171391024 ], [ -95.615103062254406, 29.675402171285871 ], [ -95.615006062424186, 29.675403171476191 ], [ -95.614797061809014, 29.675404171351193 ], [ -95.614569061969931, 29.67540617170657 ], [ -95.614442062534479, 29.675402171459908 ], [ -95.614437062262155, 29.675484171744341 ], [ -95.614421062445587, 29.67582317149979 ], [ -95.614414062091612, 29.676128171960308 ], [ -95.614407062604982, 29.676410171598686 ], [ -95.614409062114348, 29.676814171691234 ], [ -95.614435062184512, 29.677625171495727 ], [ -95.614434062519095, 29.678062171586344 ], [ -95.614435061873337, 29.678624172293727 ], [ -95.61441006203647, 29.679204171954403 ], [ -95.614411061774405, 29.679301172134871 ], [ -95.614414062024935, 29.679679172621775 ], [ -95.614425061873391, 29.680915172754833 ], [ -95.614427061902916, 29.681153172595959 ], [ -95.615044062150332, 29.68114817249883 ], [ -95.615338062081804, 29.681147172379706 ], [ -95.615486062297236, 29.681144172709246 ], [ -95.6162160632732, 29.681130172935283 ], [ -95.616246062957543, 29.681129172765722 ], [ -95.618683063893698, 29.681084172010323 ], [ -95.620548064109798, 29.68104917211209 ], [ -95.620632064344733, 29.681047172635886 ], [ -95.621626064644204, 29.681029172399647 ], [ -95.62210806475322, 29.681025172561316 ], [ -95.62240606412864, 29.681022171864058 ], [ -95.622990064769837, 29.681024171847234 ], [ -95.623369064372412, 29.681017172451664 ], [ -95.624598064595716, 29.681000172380887 ], [ -95.62548406487798, 29.680987172630893 ], [ -95.62642706493601, 29.680971172200131 ], [ -95.62734806577501, 29.680957171752603 ], [ -95.630065066383821, 29.680910171888168 ], [ -95.630900066095009, 29.680893171924062 ], [ -95.631066066444816, 29.680890172015133 ], [ -95.634166067442834, 29.680841171633446 ], [ -95.634424067875585, 29.680838172223527 ], [ -95.634753067540586, 29.680782172004839 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 908, "Tract": "48201240706", "Area_SqMi": 2.0223629683338973, "total_2009": 3618, "total_2010": 3048, "total_2011": 2785, "total_2012": 3150, "total_2013": 2469, "total_2014": 2423, "total_2015": 2293, "total_2016": 1990, "total_2017": 1745, "total_2018": 2096, "total_2019": 2009, "total_2020": 2088, "age1": 486, "age2": 1404, "age3": 518, "earn1": 216, "earn2": 652, "earn3": 1540, "naics_s01": 20, "naics_s02": 0, "naics_s03": 0, "naics_s04": 130, "naics_s05": 435, "naics_s06": 180, "naics_s07": 250, "naics_s08": 404, "naics_s09": 0, "naics_s10": 0, "naics_s11": 56, "naics_s12": 12, "naics_s13": 340, "naics_s14": 91, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 3, "naics_s19": 477, "naics_s20": 0, "race1": 1898, "race2": 314, "race3": 19, "race4": 149, "race5": 1, "race6": 27, "ethnicity1": 1562, "ethnicity2": 846, "edu1": 431, "edu2": 500, "edu3": 579, "edu4": 412, "Shape_Length": 36196.223067634855, "Shape_Area": 56380018.24833592, "total_2021": 2222, "total_2022": 2408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.41070702444182, 29.989107242403225 ], [ -95.410715023900792, 29.988880242288456 ], [ -95.410706023902321, 29.988658242214221 ], [ -95.410696024018534, 29.988537242495514 ], [ -95.410688024213826, 29.987979242290155 ], [ -95.410695024525992, 29.987870241923254 ], [ -95.41069402448133, 29.987758242344139 ], [ -95.410683024041788, 29.987644242522663 ], [ -95.410681024309582, 29.987327242063849 ], [ -95.410693024060677, 29.987232241807643 ], [ -95.410691024207324, 29.987141242270951 ], [ -95.410678024452054, 29.98705224224279 ], [ -95.410676023666838, 29.986811241767075 ], [ -95.410682023845141, 29.986740241746343 ], [ -95.410681024221901, 29.98667424184983 ], [ -95.410673024096425, 29.986590242199952 ], [ -95.410653023649076, 29.986216242005948 ], [ -95.410638024292695, 29.986036241470799 ], [ -95.410624024273972, 29.985939242064717 ], [ -95.410518024277494, 29.985431241474988 ], [ -95.410500023486122, 29.985325241854696 ], [ -95.410469024061882, 29.98521924140422 ], [ -95.410430024087461, 29.985014241921501 ], [ -95.410377023468399, 29.98460324125789 ], [ -95.4103650234225, 29.984294241794238 ], [ -95.41036402365701, 29.984250241635241 ], [ -95.410364023356891, 29.984208241258358 ], [ -95.410353023638436, 29.983198241337103 ], [ -95.410253023171009, 29.981412240687224 ], [ -95.410205023275878, 29.98084424040352 ], [ -95.410148023920144, 29.980315240608391 ], [ -95.410071023024642, 29.979719240734084 ], [ -95.409984023708802, 29.979209240694285 ], [ -95.409926023289884, 29.978949240249467 ], [ -95.409830023440875, 29.978613239892859 ], [ -95.409723023144608, 29.978367240038125 ], [ -95.409700023121687, 29.978304240463231 ], [ -95.409681023698653, 29.978253240433599 ], [ -95.409659023145807, 29.978191240566439 ], [ -95.409570023512885, 29.977958239878983 ], [ -95.409535023775476, 29.97787524014932 ], [ -95.409421023143977, 29.977614240292827 ], [ -95.409377022727668, 29.97752624046564 ], [ -95.409329023664867, 29.977438240210045 ], [ -95.409228023554419, 29.977259240144672 ], [ -95.409173022676228, 29.977167240033889 ], [ -95.4091180229332, 29.977075239925345 ], [ -95.409003023308316, 29.97689824003492 ], [ -95.408945023258525, 29.976815239723347 ], [ -95.408885023371838, 29.976733240135299 ], [ -95.408824023008336, 29.976655240241222 ], [ -95.408703022804943, 29.976506239667309 ], [ -95.40864302288675, 29.976436239965889 ], [ -95.408585022829214, 29.976369239791222 ], [ -95.408529022515893, 29.976307240198881 ], [ -95.408477022851756, 29.976251239723624 ], [ -95.408432023115211, 29.976199239907618 ], [ -95.408388022528683, 29.976156239505752 ], [ -95.408345023245531, 29.976118240076104 ], [ -95.408201023064862, 29.976004240283654 ], [ -95.408080023132712, 29.975890239958595 ], [ -95.40773702322879, 29.975601239395424 ], [ -95.407473022662799, 29.97540524009441 ], [ -95.406737022091122, 29.974962239413458 ], [ -95.406579022180381, 29.974869239344802 ], [ -95.405661022596206, 29.974349239244503 ], [ -95.404920022391536, 29.973938239324205 ], [ -95.40475202179789, 29.973839239559354 ], [ -95.404181021916656, 29.973470239034611 ], [ -95.403916021352941, 29.973265239079588 ], [ -95.403778021105722, 29.973151239620329 ], [ -95.403614021214977, 29.973005239778644 ], [ -95.403546021498883, 29.972946239004806 ], [ -95.403494021616936, 29.972895239513086 ], [ -95.403063020940365, 29.972446239346024 ], [ -95.402818021591685, 29.972144238854273 ], [ -95.4026040209298, 29.971829239573207 ], [ -95.402386020840012, 29.971451238725162 ], [ -95.402163020819586, 29.9709192391724 ], [ -95.402068020677234, 29.97063023853093 ], [ -95.401961020651754, 29.970214239105257 ], [ -95.401891020917532, 29.969627238769252 ], [ -95.401872021185156, 29.969262239086756 ], [ -95.40188202087235, 29.968818238309598 ], [ -95.401985020894628, 29.968167238664289 ], [ -95.402079020464669, 29.967695238752295 ], [ -95.40216002125392, 29.967355238732527 ], [ -95.402218021038692, 29.967116238022612 ], [ -95.402268021233454, 29.966496238311009 ], [ -95.402249020842461, 29.965980237690331 ], [ -95.402177020619661, 29.965978238105571 ], [ -95.402023020844894, 29.965974238052937 ], [ -95.401662020435992, 29.96596523771078 ], [ -95.401464020460196, 29.965964237827077 ], [ -95.401065020473879, 29.965962238008888 ], [ -95.400948020738255, 29.965963237770936 ], [ -95.400884020932608, 29.96596423826109 ], [ -95.400579020214892, 29.965967237775132 ], [ -95.400416020743052, 29.965969237922017 ], [ -95.40020501993007, 29.965971238117689 ], [ -95.399885020037374, 29.965974238307414 ], [ -95.399266020231025, 29.965972238364401 ], [ -95.398916019931349, 29.965976237855763 ], [ -95.398771019937072, 29.96597423821407 ], [ -95.397612020017846, 29.965961238147703 ], [ -95.397528019600614, 29.96596023823853 ], [ -95.397447020088379, 29.965960238541346 ], [ -95.396719019692455, 29.965960237794913 ], [ -95.395943018940571, 29.96595923808724 ], [ -95.394958018791854, 29.965959237978968 ], [ -95.394851019384163, 29.965959238180886 ], [ -95.394777019367353, 29.965958237880283 ], [ -95.39408401835, 29.965958238299024 ], [ -95.393569018921312, 29.965958238644468 ], [ -95.392500017968899, 29.965961238255638 ], [ -95.392207018228916, 29.96596023847956 ], [ -95.392017017791233, 29.96595823823894 ], [ -95.390397017437223, 29.965960237945175 ], [ -95.389729017461576, 29.965973238302929 ], [ -95.389002017827977, 29.965987238275062 ], [ -95.388717017275795, 29.965987238491802 ], [ -95.388643017404149, 29.965985238339734 ], [ -95.388376017594581, 29.96597823847496 ], [ -95.388142017635204, 29.965973238655515 ], [ -95.387961016712609, 29.96596423857531 ], [ -95.387663017378571, 29.965931238781508 ], [ -95.3874510172881, 29.96589523845233 ], [ -95.387125016594865, 29.965820238684806 ], [ -95.386682016617357, 29.965699238567829 ], [ -95.386107016344624, 29.965515238780984 ], [ -95.38586401703418, 29.965451238587281 ], [ -95.385612016395768, 29.965401238753415 ], [ -95.385350016326541, 29.965368238797677 ], [ -95.385217016031618, 29.965358238141523 ], [ -95.385083016107103, 29.965353238854036 ], [ -95.384738016552333, 29.965354238248004 ], [ -95.384082015826039, 29.965363238913856 ], [ -95.382689016016542, 29.965379238137679 ], [ -95.381610015352848, 29.965392238935969 ], [ -95.380268015152211, 29.965408238897115 ], [ -95.380126015428033, 29.965410238949914 ], [ -95.380118015000193, 29.965518238536461 ], [ -95.380180015348444, 29.967065239122107 ], [ -95.38027401495475, 29.967492238784398 ], [ -95.380443015841564, 29.967918239017873 ], [ -95.380646015141451, 29.968419239373272 ], [ -95.381029015704669, 29.968997239471051 ], [ -95.381486015821238, 29.969570239895795 ], [ -95.382089016399462, 29.970134239759584 ], [ -95.382784015974153, 29.970583239173731 ], [ -95.383572016571875, 29.97092923952717 ], [ -95.385232016419252, 29.971486239878743 ], [ -95.385541016360577, 29.971590239781349 ], [ -95.386715017199705, 29.971977239336269 ], [ -95.387598017524638, 29.972254240225016 ], [ -95.388438017903795, 29.972549240017404 ], [ -95.389325017367028, 29.972902240187675 ], [ -95.389975018460035, 29.973278240168515 ], [ -95.39029201838774, 29.973512239744995 ], [ -95.390428017795841, 29.9736132401056 ], [ -95.390624018720843, 29.973801240046438 ], [ -95.39085701868531, 29.974024240477689 ], [ -95.391174017952011, 29.974393239787879 ], [ -95.391468019012791, 29.974796240390674 ], [ -95.391699018117663, 29.975179239941777 ], [ -95.391928019166741, 29.97566624068423 ], [ -95.392139019108228, 29.976234240392873 ], [ -95.39222601887144, 29.976597240427825 ], [ -95.392441018965044, 29.977525240390822 ], [ -95.392625019105026, 29.978320241081754 ], [ -95.393085019180276, 29.98001024120197 ], [ -95.393653019298071, 29.982246241642407 ], [ -95.393996019830922, 29.983599241799499 ], [ -95.394015019619175, 29.983674241499106 ], [ -95.394639020308958, 29.986129242366115 ], [ -95.396103020681679, 29.991891243633066 ], [ -95.396310020864121, 29.992839243999914 ], [ -95.396389020145165, 29.993199243804497 ], [ -95.397068020923868, 29.995934244103243 ], [ -95.397214020816577, 29.99590724386103 ], [ -95.397919021379067, 29.995773244188886 ], [ -95.398232020986867, 29.995728244084603 ], [ -95.39857902128837, 29.995692243958498 ], [ -95.398813021527204, 29.995677243922707 ], [ -95.39934802099846, 29.995666243929485 ], [ -95.399657021236649, 29.995662244582441 ], [ -95.401935022367311, 29.99563024445283 ], [ -95.40204402179458, 29.995631244484141 ], [ -95.402283022468026, 29.995636243824382 ], [ -95.402324022699659, 29.995638243719043 ], [ -95.402508021866012, 29.995647243637688 ], [ -95.402646022768195, 29.995654244146369 ], [ -95.402674021911579, 29.995656244127954 ], [ -95.402998022866598, 29.995689244351812 ], [ -95.403315022452858, 29.995736244138619 ], [ -95.403656022359201, 29.995806243869804 ], [ -95.403811022918319, 29.9958402444481 ], [ -95.404116023171454, 29.995922243946112 ], [ -95.404425023309855, 29.99601824429477 ], [ -95.404960023388313, 29.996210244375785 ], [ -95.405377023043329, 29.996346243997628 ], [ -95.405669023643355, 29.996429244061339 ], [ -95.405880022847285, 29.996478244371637 ], [ -95.406306023715118, 29.9965532438537 ], [ -95.406623023509113, 29.996592244180878 ], [ -95.406951023074498, 29.996618243753446 ], [ -95.407300023643202, 29.996629244505364 ], [ -95.407692023794169, 29.996628243642171 ], [ -95.407689023743714, 29.996513243853649 ], [ -95.407680023185719, 29.996013243558394 ], [ -95.40766402363603, 29.995744243633446 ], [ -95.407664023391476, 29.995655243721011 ], [ -95.407685023741848, 29.995433243779281 ], [ -95.407733023970906, 29.995154243476954 ], [ -95.407800023861128, 29.994867243459691 ], [ -95.407882024024673, 29.994592243749924 ], [ -95.407927023684351, 29.994459243742739 ], [ -95.407973023334989, 29.994339243394638 ], [ -95.408072023314091, 29.994079243423581 ], [ -95.408263023351367, 29.993703243103937 ], [ -95.408381023489952, 29.993496242944943 ], [ -95.408403023897435, 29.993460243830999 ], [ -95.408627023290933, 29.99311124366416 ], [ -95.408795024193182, 29.992888243132736 ], [ -95.409045024092066, 29.992583242870083 ], [ -95.409158023500837, 29.992445243175915 ], [ -95.409277024276221, 29.992304242957449 ], [ -95.409800024459187, 29.991689242714013 ], [ -95.410065024210766, 29.991382243354746 ], [ -95.410270023587245, 29.991153242964522 ], [ -95.410391023759132, 29.990997242704427 ], [ -95.410485024059298, 29.990844243034303 ], [ -95.410555024227492, 29.990703242679203 ], [ -95.410605023664601, 29.99057024267162 ], [ -95.410626024593114, 29.990503243166117 ], [ -95.410653023889395, 29.990436242396573 ], [ -95.410688024539155, 29.99023424277857 ], [ -95.410701023923878, 29.990157242623436 ], [ -95.410715023852731, 29.990007242350053 ], [ -95.410715024114836, 29.989912242818257 ], [ -95.410707024160843, 29.989649242260963 ], [ -95.41070702444182, 29.989107242403225 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 909, "Tract": "48201454503", "Area_SqMi": 0.56019038021388767, "total_2009": 364, "total_2010": 381, "total_2011": 453, "total_2012": 450, "total_2013": 428, "total_2014": 530, "total_2015": 542, "total_2016": 614, "total_2017": 610, "total_2018": 783, "total_2019": 879, "total_2020": 965, "age1": 144, "age2": 497, "age3": 177, "earn1": 93, "earn2": 209, "earn3": 516, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 1, "naics_s07": 4, "naics_s08": 0, "naics_s09": 1, "naics_s10": 1, "naics_s11": 7, "naics_s12": 7, "naics_s13": 0, "naics_s14": 11, "naics_s15": 5, "naics_s16": 712, "naics_s17": 0, "naics_s18": 38, "naics_s19": 29, "naics_s20": 0, "race1": 418, "race2": 206, "race3": 8, "race4": 174, "race5": 2, "race6": 10, "ethnicity1": 599, "ethnicity2": 219, "edu1": 136, "edu2": 124, "edu3": 195, "edu4": 219, "Shape_Length": 17058.356947038603, "Shape_Area": 15617149.024945309, "total_2021": 814, "total_2022": 818 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.718862093170614, 29.774863188140181 ], [ -95.718857092697334, 29.774702188387604 ], [ -95.718855093005303, 29.774613188048871 ], [ -95.718847092930417, 29.773836188351247 ], [ -95.718847093181608, 29.773714187956802 ], [ -95.718846093021654, 29.773385188026168 ], [ -95.718836093051991, 29.77219818732798 ], [ -95.718735093008746, 29.772198187607106 ], [ -95.718692092688499, 29.772198187212851 ], [ -95.718619092557859, 29.772198187886453 ], [ -95.718516092674747, 29.772198187775096 ], [ -95.718325093316082, 29.772198187273286 ], [ -95.718014092735032, 29.772198187568307 ], [ -95.717879092668255, 29.772203187974931 ], [ -95.717746092366212, 29.772199187913802 ], [ -95.717613093187779, 29.772204187414381 ], [ -95.717483093171595, 29.772200187465572 ], [ -95.717227092668509, 29.772203187471359 ], [ -95.717098092881855, 29.772210187976121 ], [ -95.716980092779181, 29.772208187369934 ], [ -95.716749092535053, 29.772223187692639 ], [ -95.716648092047109, 29.772235188052871 ], [ -95.716498092797025, 29.772246187336641 ], [ -95.716279092222379, 29.772272187303408 ], [ -95.716263092815296, 29.772191188181111 ], [ -95.716226092640625, 29.772066187969962 ], [ -95.716184092547849, 29.771957188097701 ], [ -95.716102092647674, 29.771797187752721 ], [ -95.716039092513384, 29.771700187583761 ], [ -95.715961091994174, 29.77159618761296 ], [ -95.715944092485145, 29.771574187542484 ], [ -95.715820091970798, 29.771444187737039 ], [ -95.715699092365924, 29.771336187837626 ], [ -95.715556092186276, 29.771233187804853 ], [ -95.715351092587525, 29.771113187842236 ], [ -95.714917091649468, 29.770874187140951 ], [ -95.714379092241444, 29.770572187397157 ], [ -95.714127092073667, 29.770414187837638 ], [ -95.713927091263358, 29.770275187780683 ], [ -95.713674091147766, 29.770074187095524 ], [ -95.713510091933728, 29.769930187043411 ], [ -95.713095091078443, 29.769530187019406 ], [ -95.713332091029571, 29.769366187058484 ], [ -95.713672091424286, 29.769173186999204 ], [ -95.713987091370143, 29.768931187278671 ], [ -95.714176091229305, 29.768733187275572 ], [ -95.714258091664206, 29.768607186742368 ], [ -95.714283091677856, 29.768502187221703 ], [ -95.714270091465579, 29.768392187160462 ], [ -95.713552091849621, 29.767673187226528 ], [ -95.713161091125741, 29.767326186878222 ], [ -95.713048091543598, 29.767139186649182 ], [ -95.712745091235135, 29.766854186623767 ], [ -95.712417091118908, 29.766491186574719 ], [ -95.712153091396544, 29.76637618641621 ], [ -95.711999090698498, 29.766378186416777 ], [ -95.710937090614678, 29.766398186567315 ], [ -95.710658090548449, 29.766398186652268 ], [ -95.710061090813326, 29.766398187106031 ], [ -95.708618090124261, 29.766382186753635 ], [ -95.707584089795304, 29.766403186512758 ], [ -95.706723090023701, 29.766412186872788 ], [ -95.704983089309735, 29.766432187058523 ], [ -95.701799087967942, 29.76642118712974 ], [ -95.701810088896153, 29.767448187057223 ], [ -95.701811088482572, 29.767534186848248 ], [ -95.701823088468558, 29.768567187071568 ], [ -95.701824088968294, 29.768839187770286 ], [ -95.701834088962428, 29.770403187815688 ], [ -95.701847088526137, 29.771552187988163 ], [ -95.701872088362649, 29.775213188925974 ], [ -95.701873088699003, 29.7753521884358 ], [ -95.702013088832217, 29.775353188468603 ], [ -95.70215408866288, 29.775353188518359 ], [ -95.702749088965504, 29.77535418911263 ], [ -95.703054089524898, 29.775365189040496 ], [ -95.70336108969714, 29.775390188736367 ], [ -95.703573089499898, 29.775414188768842 ], [ -95.703894089495932, 29.775464188426678 ], [ -95.704097089458671, 29.775505188532676 ], [ -95.704435089355499, 29.775583188875238 ], [ -95.704699089610486, 29.775643189150262 ], [ -95.705057090204704, 29.775732188471846 ], [ -95.705378089626734, 29.775828188413726 ], [ -95.705691090104949, 29.775937188564626 ], [ -95.70596508994312, 29.776037189182791 ], [ -95.706072090463962, 29.776076188679241 ], [ -95.707194090676253, 29.776492188911394 ], [ -95.707509089959217, 29.776595189194126 ], [ -95.707907090829437, 29.776699188658256 ], [ -95.707955090688841, 29.776708188582436 ], [ -95.708688091180122, 29.776835189151743 ], [ -95.708811091100713, 29.776852188887482 ], [ -95.708982090517409, 29.776870189345768 ], [ -95.709548091324265, 29.776896189167974 ], [ -95.709691091105569, 29.7768951887562 ], [ -95.709969091255658, 29.776885189166077 ], [ -95.710269091336386, 29.776860189206253 ], [ -95.710651090852309, 29.776812188674594 ], [ -95.710919090775349, 29.776767188578912 ], [ -95.711178091730631, 29.776713188593302 ], [ -95.711527091294556, 29.7766241891389 ], [ -95.71161709176279, 29.776598188916463 ], [ -95.712541091166244, 29.776336188787276 ], [ -95.712732092051084, 29.776278188295461 ], [ -95.713719091491143, 29.775990188442076 ], [ -95.715277092137114, 29.775535188227359 ], [ -95.715480092788937, 29.775482188562858 ], [ -95.715730092568933, 29.775422188189591 ], [ -95.71602809272575, 29.775364188478022 ], [ -95.716289092457529, 29.775325188049422 ], [ -95.716631092451138, 29.775290187897063 ], [ -95.716875092433554, 29.775274188299282 ], [ -95.717333092968218, 29.775266188294456 ], [ -95.717459092440947, 29.775265188376935 ], [ -95.717715093246355, 29.77526318871498 ], [ -95.717994092566215, 29.775260188487135 ], [ -95.718725092788858, 29.775255188020985 ], [ -95.718749092805169, 29.775254187964279 ], [ -95.718856092859923, 29.775250188025673 ], [ -95.718855093148861, 29.775144188562667 ], [ -95.718854093657811, 29.775047187855577 ], [ -95.718854093278281, 29.774953188325195 ], [ -95.718862093170614, 29.774863188140181 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 910, "Tract": "48201555101", "Area_SqMi": 1.3493313772576769, "total_2009": 256, "total_2010": 264, "total_2011": 262, "total_2012": 288, "total_2013": 386, "total_2014": 371, "total_2015": 370, "total_2016": 396, "total_2017": 388, "total_2018": 420, "total_2019": 430, "total_2020": 409, "age1": 153, "age2": 169, "age3": 86, "earn1": 115, "earn2": 183, "earn3": 110, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 50, "naics_s05": 4, "naics_s06": 6, "naics_s07": 55, "naics_s08": 17, "naics_s09": 0, "naics_s10": 0, "naics_s11": 28, "naics_s12": 41, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 71, "naics_s17": 28, "naics_s18": 68, "naics_s19": 35, "naics_s20": 0, "race1": 302, "race2": 68, "race3": 2, "race4": 32, "race5": 1, "race6": 3, "ethnicity1": 283, "ethnicity2": 125, "edu1": 59, "edu2": 62, "edu3": 70, "edu4": 64, "Shape_Length": 25582.856230403249, "Shape_Area": 37617049.394211337, "total_2021": 399, "total_2022": 408 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.496825050390242, 30.074175256790841 ], [ -95.496831050257271, 30.074055256634189 ], [ -95.49641304976808, 30.074044257158796 ], [ -95.49588604939683, 30.074009256753985 ], [ -95.495362050003749, 30.073952257192804 ], [ -95.495098049264101, 30.073912257050488 ], [ -95.494841049912509, 30.073873256651382 ], [ -95.494297048966217, 30.07376625659381 ], [ -95.4930920489427, 30.073501257085557 ], [ -95.492711049041901, 30.07340625658432 ], [ -95.491623049026515, 30.073066256823108 ], [ -95.48985104802901, 30.072512256515012 ], [ -95.488197047683244, 30.071994256202721 ], [ -95.486929047562029, 30.071598256495431 ], [ -95.486062047135775, 30.071327256434763 ], [ -95.486003046930108, 30.071309256141813 ], [ -95.485714046943301, 30.071226256085808 ], [ -95.485214047123094, 30.071104256633575 ], [ -95.484708046613491, 30.07100425679873 ], [ -95.482942045880051, 30.070724256826864 ], [ -95.48260004591819, 30.070678256703289 ], [ -95.482437046724911, 30.07065625631181 ], [ -95.481929045674036, 30.070610256154332 ], [ -95.481419045833235, 30.070586256413534 ], [ -95.481047045933963, 30.070582256842894 ], [ -95.476500044404318, 30.070607256925658 ], [ -95.469347042582854, 30.070646256929432 ], [ -95.46933304282517, 30.071052257371093 ], [ -95.469312043013545, 30.07134225676819 ], [ -95.469297042387183, 30.071544257065849 ], [ -95.469294042907464, 30.071987257551218 ], [ -95.469292043287922, 30.072727257600121 ], [ -95.469277043353316, 30.073038257906411 ], [ -95.469237042465068, 30.073302257361615 ], [ -95.469152043065733, 30.073579257511007 ], [ -95.46905604342399, 30.073804257944939 ], [ -95.468751042979079, 30.074406257992546 ], [ -95.468607043109657, 30.074712258243959 ], [ -95.468544042943122, 30.074877258119859 ], [ -95.46847904256154, 30.075094258164086 ], [ -95.468440043046627, 30.075258257591834 ], [ -95.468411042816015, 30.075418257858608 ], [ -95.468388042537285, 30.07562125796348 ], [ -95.468370043208182, 30.075956258231187 ], [ -95.468396043114979, 30.076329258253573 ], [ -95.46839404303347, 30.076396257901951 ], [ -95.468419043324459, 30.076430258472239 ], [ -95.468423043132049, 30.07648725845274 ], [ -95.468462043010589, 30.07665525823408 ], [ -95.468538043254483, 30.076912258323102 ], [ -95.468712042522199, 30.077395258671125 ], [ -95.468801042514741, 30.077685258721019 ], [ -95.468840043550401, 30.077855258366515 ], [ -95.468879043415484, 30.078114258274319 ], [ -95.468890043440524, 30.078518258975993 ], [ -95.468884043421909, 30.081422258834721 ], [ -95.468882042931185, 30.082677259615625 ], [ -95.469795043354267, 30.082670259309889 ], [ -95.471562044396762, 30.082662259462026 ], [ -95.471894043662033, 30.082672259770433 ], [ -95.471975043999549, 30.082668259004624 ], [ -95.472051044229232, 30.082680259087702 ], [ -95.47231504413817, 30.082691259124125 ], [ -95.472435044045611, 30.082687259761364 ], [ -95.472540044433316, 30.082702259732621 ], [ -95.472784044178042, 30.082717259429511 ], [ -95.472922044388383, 30.082714258991512 ], [ -95.473288044754526, 30.082735259120309 ], [ -95.473999044254455, 30.082788259048684 ], [ -95.475769044590862, 30.08290025880196 ], [ -95.476413045189688, 30.082933259015906 ], [ -95.476478045507832, 30.082942258829046 ], [ -95.477242044966147, 30.082985259449259 ], [ -95.47815604563084, 30.083051258844254 ], [ -95.478297045304629, 30.083053259353896 ], [ -95.478573045964822, 30.083071259213689 ], [ -95.478719045786733, 30.083065259228334 ], [ -95.478873045582176, 30.083071259459508 ], [ -95.479002045648713, 30.083088259315502 ], [ -95.479226046448389, 30.083097259482113 ], [ -95.479476046520674, 30.083125259066232 ], [ -95.4816600467949, 30.083272259564779 ], [ -95.482350047023473, 30.083306259072568 ], [ -95.482472046836293, 30.083302258849837 ], [ -95.482588047051053, 30.083322259026911 ], [ -95.484454047441019, 30.083439259485576 ], [ -95.48526604743094, 30.083487259305357 ], [ -95.487711047758907, 30.083645258818933 ], [ -95.488975048421182, 30.083719259234165 ], [ -95.489870049060841, 30.083773258942418 ], [ -95.490921049358889, 30.083790258976826 ], [ -95.491744049295662, 30.083786258521254 ], [ -95.492941049274137, 30.08377925887191 ], [ -95.493743049895841, 30.083778258906726 ], [ -95.49420804930655, 30.08376625889942 ], [ -95.494861049555411, 30.083704258407327 ], [ -95.495346050081849, 30.083640258923221 ], [ -95.495660050429535, 30.083610258589875 ], [ -95.496419050168257, 30.083508258430999 ], [ -95.496579049923497, 30.083492259000177 ], [ -95.496668050074803, 30.083472258464823 ], [ -95.496715050409406, 30.083471258477797 ], [ -95.496739050845136, 30.083360258611616 ], [ -95.496727050038118, 30.083203258562563 ], [ -95.496751050847578, 30.083140258501537 ], [ -95.496727050159919, 30.082942258312173 ], [ -95.496721050641838, 30.081014258550059 ], [ -95.496679050453778, 30.080910258109267 ], [ -95.496719049814047, 30.077829257732752 ], [ -95.496741050418777, 30.076243257028228 ], [ -95.496756050570596, 30.075597256658366 ], [ -95.496759050533598, 30.075487257083907 ], [ -95.496790050288297, 30.075332257138395 ], [ -95.496806049932303, 30.075035257255163 ], [ -95.496801050070616, 30.074754257314222 ], [ -95.496823050361925, 30.07464525647902 ], [ -95.496830050443634, 30.074430257229629 ], [ -95.496806050498307, 30.074318257026526 ], [ -95.496811050097662, 30.074238256805543 ], [ -95.496825050390242, 30.074175256790841 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 911, "Tract": "48201521401", "Area_SqMi": 0.22755924072679762, "total_2009": 426, "total_2010": 371, "total_2011": 363, "total_2012": 612, "total_2013": 688, "total_2014": 476, "total_2015": 519, "total_2016": 463, "total_2017": 425, "total_2018": 466, "total_2019": 475, "total_2020": 540, "age1": 131, "age2": 355, "age3": 157, "earn1": 51, "earn2": 155, "earn3": 437, "naics_s01": 0, "naics_s02": 12, "naics_s03": 0, "naics_s04": 127, "naics_s05": 80, "naics_s06": 63, "naics_s07": 32, "naics_s08": 93, "naics_s09": 10, "naics_s10": 37, "naics_s11": 28, "naics_s12": 67, "naics_s13": 21, "naics_s14": 0, "naics_s15": 10, "naics_s16": 33, "naics_s17": 27, "naics_s18": 0, "naics_s19": 3, "naics_s20": 0, "race1": 528, "race2": 68, "race3": 2, "race4": 37, "race5": 0, "race6": 8, "ethnicity1": 399, "ethnicity2": 244, "edu1": 116, "edu2": 120, "edu3": 159, "edu4": 117, "Shape_Length": 13779.952696982664, "Shape_Area": 6343962.159930178, "total_2021": 530, "total_2022": 643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.509330042550346, 29.832716207120065 ], [ -95.509338042648039, 29.832177206870117 ], [ -95.509302042528006, 29.830317206744802 ], [ -95.509278041886148, 29.829341206670716 ], [ -95.509069041793182, 29.829334206033472 ], [ -95.508444041817327, 29.829357206221246 ], [ -95.507404042062532, 29.829357206921795 ], [ -95.506743040982855, 29.829367206155595 ], [ -95.506645041169335, 29.829367206606719 ], [ -95.506542041380953, 29.829366206601428 ], [ -95.506323040843043, 29.829361206709631 ], [ -95.506017040993086, 29.829372206727975 ], [ -95.505886041358551, 29.829374206245099 ], [ -95.50497504072905, 29.829378206569029 ], [ -95.504786041193555, 29.82938620664779 ], [ -95.504538041075207, 29.829389206931822 ], [ -95.504103040443809, 29.829399206441114 ], [ -95.50380804111461, 29.829396207018601 ], [ -95.503492040958179, 29.829381206938692 ], [ -95.502925040876363, 29.829367207123834 ], [ -95.502891040561451, 29.827493206246864 ], [ -95.50288804003651, 29.827287206618728 ], [ -95.502888040463787, 29.826829205779319 ], [ -95.502881040107667, 29.825575205678557 ], [ -95.499482039579647, 29.82558320613585 ], [ -95.495569038172945, 29.825596205884892 ], [ -95.495319038621872, 29.825673206522019 ], [ -95.495124038359677, 29.82575320586421 ], [ -95.494963038614131, 29.825874206134394 ], [ -95.494848038435464, 29.826007205831779 ], [ -95.494137037771594, 29.825528206623549 ], [ -95.494006037744953, 29.825429206554897 ], [ -95.493879037552389, 29.825564206008824 ], [ -95.493688037523768, 29.825767205944604 ], [ -95.494224037940057, 29.826152205996628 ], [ -95.494757038221579, 29.826523206030021 ], [ -95.496456038860302, 29.827780206121833 ], [ -95.496942039026379, 29.828107206348164 ], [ -95.499185039856897, 29.82971820701929 ], [ -95.501272040434898, 29.831176207084269 ], [ -95.502378040620187, 29.831996206820168 ], [ -95.502541040377608, 29.832112207585453 ], [ -95.502634040319577, 29.832178207141354 ], [ -95.50452704150166, 29.833525207261555 ], [ -95.504727041349511, 29.833672207791565 ], [ -95.505056041015322, 29.833519207426512 ], [ -95.505087041367801, 29.833506207165389 ], [ -95.505214041129619, 29.833451207176736 ], [ -95.506272041229096, 29.83297720727963 ], [ -95.506640041590643, 29.832851207325504 ], [ -95.506729041785832, 29.832845207344022 ], [ -95.50722704173667, 29.832810207329615 ], [ -95.507383041819068, 29.832798207587548 ], [ -95.507992042323394, 29.832758206913176 ], [ -95.50825204203278, 29.832739206755747 ], [ -95.509077041765948, 29.832719206778492 ], [ -95.509330042550346, 29.832716207120065 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 912, "Tract": "48201530101", "Area_SqMi": 0.34235238587457689, "total_2009": 572, "total_2010": 453, "total_2011": 362, "total_2012": 433, "total_2013": 402, "total_2014": 405, "total_2015": 447, "total_2016": 469, "total_2017": 438, "total_2018": 409, "total_2019": 391, "total_2020": 349, "age1": 85, "age2": 212, "age3": 117, "earn1": 106, "earn2": 187, "earn3": 121, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 11, "naics_s06": 7, "naics_s07": 27, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 23, "naics_s12": 36, "naics_s13": 0, "naics_s14": 162, "naics_s15": 0, "naics_s16": 25, "naics_s17": 72, "naics_s18": 35, "naics_s19": 7, "naics_s20": 0, "race1": 325, "race2": 37, "race3": 9, "race4": 30, "race5": 1, "race6": 12, "ethnicity1": 218, "ethnicity2": 196, "edu1": 87, "edu2": 76, "edu3": 90, "edu4": 76, "Shape_Length": 15802.283831697749, "Shape_Area": 9544198.5762187894, "total_2021": 363, "total_2022": 414 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.459455028656848, 29.819628206294098 ], [ -95.459433028390194, 29.819040206455067 ], [ -95.459419029358571, 29.818911205692601 ], [ -95.45939302862827, 29.818136205978647 ], [ -95.459365029236565, 29.817327205359248 ], [ -95.459362028887639, 29.817210205696796 ], [ -95.459329028244682, 29.816227205324264 ], [ -95.459312029061095, 29.815675205648745 ], [ -95.459259029054181, 29.814091204795606 ], [ -95.454704027675135, 29.81411020509837 ], [ -95.450103026454272, 29.81412320496284 ], [ -95.45007502655136, 29.81215320472969 ], [ -95.450065026068501, 29.811246205149491 ], [ -95.450056026198936, 29.81076420473865 ], [ -95.450054026349093, 29.810556204677834 ], [ -95.448671026251745, 29.810578204636009 ], [ -95.448016025569089, 29.810617204736911 ], [ -95.447209025165506, 29.810617204687688 ], [ -95.446667025017376, 29.810628204372634 ], [ -95.445702025476521, 29.810617205210043 ], [ -95.445122024750859, 29.810645205086349 ], [ -95.444437025157868, 29.810616204608035 ], [ -95.443930024583068, 29.810595205042933 ], [ -95.443382024688802, 29.810623204963861 ], [ -95.442947024002521, 29.810623205208234 ], [ -95.442676024117873, 29.810672204687034 ], [ -95.442632023772759, 29.810694205122843 ], [ -95.442525024077526, 29.810701204617263 ], [ -95.442696023845244, 29.811216205305417 ], [ -95.443670024904321, 29.814149205999097 ], [ -95.443788025101583, 29.814504205657503 ], [ -95.444003024907374, 29.814931205887007 ], [ -95.445281025363911, 29.81680120595195 ], [ -95.445339025308769, 29.817224205990023 ], [ -95.445445025035866, 29.817222206149047 ], [ -95.446015025756367, 29.81721020612768 ], [ -95.446894025890188, 29.817210206485637 ], [ -95.447810025827266, 29.817210205622676 ], [ -95.449026026099261, 29.817208206407859 ], [ -95.449479026233078, 29.817215206447422 ], [ -95.450111026711369, 29.817283205568096 ], [ -95.451060026735504, 29.817380206436166 ], [ -95.451975026490203, 29.81757320556844 ], [ -95.452584026897313, 29.817721206452156 ], [ -95.452739026926054, 29.817768205907889 ], [ -95.453599027716663, 29.818039206315397 ], [ -95.453830026940224, 29.81812920590307 ], [ -95.453957027956122, 29.818188205812003 ], [ -95.454034027769765, 29.818222206272942 ], [ -95.454655027421609, 29.818493205944296 ], [ -95.454788027922262, 29.818562205968551 ], [ -95.455619028014368, 29.818937206307389 ], [ -95.456004028025973, 29.819124206075852 ], [ -95.456549027656934, 29.819303206295853 ], [ -95.456883027734676, 29.81939620598386 ], [ -95.457253027950017, 29.81947720602583 ], [ -95.457484027939088, 29.819520206393069 ], [ -95.457701028233814, 29.819552206212496 ], [ -95.458141029004736, 29.819621205900642 ], [ -95.458270028962787, 29.819630206260431 ], [ -95.458550028162222, 29.819638206152788 ], [ -95.459455028656848, 29.819628206294098 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 913, "Tract": "48201240906", "Area_SqMi": 1.4431422424359206, "total_2009": 47, "total_2010": 48, "total_2011": 36, "total_2012": 43, "total_2013": 62, "total_2014": 56, "total_2015": 85, "total_2016": 67, "total_2017": 46, "total_2018": 56, "total_2019": 62, "total_2020": 127, "age1": 8, "age2": 31, "age3": 18, "earn1": 7, "earn2": 20, "earn3": 30, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 0, "naics_s06": 6, "naics_s07": 10, "naics_s08": 7, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 1, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 32, "race2": 13, "race3": 0, "race4": 8, "race5": 0, "race6": 4, "ethnicity1": 39, "ethnicity2": 18, "edu1": 18, "edu2": 12, "edu3": 9, "edu4": 10, "Shape_Length": 29807.1009849281, "Shape_Area": 40232335.756480366, "total_2021": 186, "total_2022": 57 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.330116005037681, 30.016538250597751 ], [ -95.330115004445588, 30.016243251083228 ], [ -95.329983004441274, 30.016243251013655 ], [ -95.318509001724792, 30.016295250945976 ], [ -95.315306001046579, 30.016297250998985 ], [ -95.315089001350941, 30.016298250886937 ], [ -95.309543998933862, 30.016305251415258 ], [ -95.306867999057459, 30.016308251738437 ], [ -95.306766998194661, 30.016305251282734 ], [ -95.306776998766566, 30.017004251993292 ], [ -95.306795999022441, 30.018176252235662 ], [ -95.306789998323936, 30.018434251880052 ], [ -95.306793999034738, 30.020792252306453 ], [ -95.306802998409708, 30.021043252760471 ], [ -95.306836999172248, 30.024110253495774 ], [ -95.306857999476662, 30.025431253501043 ], [ -95.306849999411767, 30.026927254153261 ], [ -95.306857999564244, 30.027192253934505 ], [ -95.306857999444247, 30.028439253787493 ], [ -95.306863999196182, 30.029731253916573 ], [ -95.306906999445872, 30.030711254926047 ], [ -95.306922999102397, 30.031066254316585 ], [ -95.307278999260532, 30.031447255044377 ], [ -95.308009999218555, 30.031918254646573 ], [ -95.309504000443852, 30.032541255153497 ], [ -95.310440000348436, 30.03283025472216 ], [ -95.310763000471283, 30.03289525468135 ], [ -95.311001000405014, 30.032892255035449 ], [ -95.311056000175967, 30.032773255129072 ], [ -95.31115500053869, 30.032560254995811 ], [ -95.311296000786683, 30.032430254817147 ], [ -95.311561001018731, 30.032333254793073 ], [ -95.311809000564025, 30.032331254846888 ], [ -95.312203001288239, 30.032434254678879 ], [ -95.312474001134476, 30.032600255004123 ], [ -95.31290400134246, 30.033075254804775 ], [ -95.313105001114707, 30.033113254875399 ], [ -95.313388001302684, 30.033064254472489 ], [ -95.313708001399888, 30.032901254681665 ], [ -95.313974001105834, 30.032685255022074 ], [ -95.314102000942981, 30.032582254991102 ], [ -95.314716001437915, 30.031907254405532 ], [ -95.314926001855653, 30.031734253996127 ], [ -95.315591001434271, 30.031443254370153 ], [ -95.315916001282886, 30.031409254474497 ], [ -95.316087002081858, 30.031510254124225 ], [ -95.316307001796048, 30.031769254051166 ], [ -95.316569001824945, 30.032217254132746 ], [ -95.316632002226797, 30.032461254438338 ], [ -95.316517001829823, 30.033096254541743 ], [ -95.316545001738731, 30.033309254963079 ], [ -95.317138001810662, 30.034172254937872 ], [ -95.31733000194609, 30.034358254751744 ], [ -95.317802002514384, 30.034487254654401 ], [ -95.318182002778457, 30.034466254504309 ], [ -95.318213002845368, 30.034464254435086 ], [ -95.318470002012788, 30.034374255088341 ], [ -95.319359002265017, 30.0339192550042 ], [ -95.319936003389486, 30.033721254410356 ], [ -95.320743003006527, 30.033560255005828 ], [ -95.321292003390752, 30.033398254736976 ], [ -95.32208600379478, 30.033097254062422 ], [ -95.322276003507199, 30.032960254805278 ], [ -95.32238700315142, 30.032768254021931 ], [ -95.322458003008222, 30.032451254121135 ], [ -95.322472003533562, 30.031097254178448 ], [ -95.32242700365255, 30.030997253790765 ], [ -95.32230700318901, 30.030900254177993 ], [ -95.321493003621967, 30.030478254204073 ], [ -95.321436002686738, 30.030310254260456 ], [ -95.3214420033853, 30.03013125430909 ], [ -95.32146600334066, 30.030065253486942 ], [ -95.322552002944136, 30.029549253627533 ], [ -95.322819003707735, 30.029380253691926 ], [ -95.323143003277053, 30.028803253937351 ], [ -95.323440003862117, 30.028666253177345 ], [ -95.323575003267266, 30.028615253257666 ], [ -95.323894003371521, 30.028495253717452 ], [ -95.323996003349976, 30.028434253201617 ], [ -95.324404004015776, 30.028190253112463 ], [ -95.324655003580361, 30.027907253113671 ], [ -95.324857003345571, 30.027611253471139 ], [ -95.325075003847232, 30.027291253287149 ], [ -95.326090004036317, 30.026499252540106 ], [ -95.326395004683377, 30.026315252801631 ], [ -95.326549004359464, 30.026286253167417 ], [ -95.32673000459468, 30.026370253295251 ], [ -95.326885003822312, 30.026537253038057 ], [ -95.327029004059611, 30.026832252801604 ], [ -95.327043004110934, 30.0280102531955 ], [ -95.32718300440375, 30.0284922537829 ], [ -95.32795900423838, 30.029128253847997 ], [ -95.328380004432205, 30.029568253191261 ], [ -95.329640004836619, 30.030306253851101 ], [ -95.33004900551812, 30.030492253654117 ], [ -95.330043005157961, 30.030440253582963 ], [ -95.330037005613093, 30.030387253454464 ], [ -95.32999000502879, 30.029953253517785 ], [ -95.32992300542908, 30.029305253631406 ], [ -95.329894005121218, 30.028908253434253 ], [ -95.329888005095995, 30.028639253390047 ], [ -95.329899004673265, 30.028082253569043 ], [ -95.330012004615057, 30.025777252661872 ], [ -95.330020005357355, 30.025332252432829 ], [ -95.330015004698225, 30.023636252288757 ], [ -95.330014005353846, 30.023449252339059 ], [ -95.330013005374795, 30.022957252096191 ], [ -95.330016005229979, 30.022376251822944 ], [ -95.330011004474315, 30.021175251415524 ], [ -95.330016005139058, 30.020874251558649 ], [ -95.330015005135721, 30.020666251494411 ], [ -95.330007004346299, 30.018714251061816 ], [ -95.330022004423753, 30.018368251414437 ], [ -95.330057004441784, 30.017941250723073 ], [ -95.330101004649521, 30.017509250806182 ], [ -95.330114004936107, 30.017223250998576 ], [ -95.330116005037681, 30.016538250597751 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 914, "Tract": "48201550403", "Area_SqMi": 0.63264540944340508, "total_2009": 260, "total_2010": 260, "total_2011": 142, "total_2012": 112, "total_2013": 125, "total_2014": 69, "total_2015": 98, "total_2016": 137, "total_2017": 137, "total_2018": 188, "total_2019": 146, "total_2020": 151, "age1": 70, "age2": 121, "age3": 39, "earn1": 60, "earn2": 105, "earn3": 65, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 24, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 43, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 87, "naics_s19": 58, "naics_s20": 0, "race1": 155, "race2": 48, "race3": 4, "race4": 21, "race5": 0, "race6": 2, "ethnicity1": 140, "ethnicity2": 90, "edu1": 52, "edu2": 47, "edu3": 35, "edu4": 26, "Shape_Length": 26058.846798446379, "Shape_Area": 17637071.231842373, "total_2021": 217, "total_2022": 230 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.447580032560268, 29.96787623689044 ], [ -95.447568032106261, 29.966774236463067 ], [ -95.447526032279072, 29.96514223608304 ], [ -95.447062032024306, 29.96515423635848 ], [ -95.446921031922002, 29.965163236444575 ], [ -95.446449031943445, 29.965169236415889 ], [ -95.445299031578756, 29.965203236665502 ], [ -95.443378031052134, 29.965249236601977 ], [ -95.443009031621912, 29.965253236652867 ], [ -95.442128030595214, 29.965279236856073 ], [ -95.441856030839432, 29.965289236450765 ], [ -95.440171030771893, 29.965331236729241 ], [ -95.439854030457525, 29.96533923683765 ], [ -95.439717030226419, 29.965343236692828 ], [ -95.438273030151848, 29.965379236637986 ], [ -95.437724029673717, 29.965389237031225 ], [ -95.436702029232677, 29.965419236809957 ], [ -95.436576029255008, 29.965423236553683 ], [ -95.435951029363594, 29.965406237150638 ], [ -95.434765029365892, 29.965552237129245 ], [ -95.43418202903031, 29.965576236580375 ], [ -95.4336950289985, 29.965567236432598 ], [ -95.433178028371387, 29.965509236391657 ], [ -95.432765028207996, 29.965436236982981 ], [ -95.432262028115019, 29.965341237036963 ], [ -95.431886028322495, 29.965290236701684 ], [ -95.431460028196753, 29.965264236961694 ], [ -95.430983027933422, 29.965284236707358 ], [ -95.429515028046765, 29.965304237256085 ], [ -95.428818027682823, 29.96530123708169 ], [ -95.426495027517902, 29.96535123704232 ], [ -95.426229026522478, 29.965358237190969 ], [ -95.42563202660854, 29.965461237301341 ], [ -95.424683026253149, 29.965670236897175 ], [ -95.42424302613108, 29.965767237152676 ], [ -95.423596026356236, 29.965891236960744 ], [ -95.422922026041874, 29.965987237051952 ], [ -95.422967026202542, 29.966814237873006 ], [ -95.423033025909348, 29.967250237476314 ], [ -95.423102025891623, 29.967587237189122 ], [ -95.423162026785391, 29.967949237276432 ], [ -95.423171026229113, 29.967971237667449 ], [ -95.42343102675197, 29.968585237778882 ], [ -95.423497026577181, 29.96869823780851 ], [ -95.423708026646054, 29.969028237530697 ], [ -95.424072026943108, 29.969570237575478 ], [ -95.424375026204146, 29.969923238047592 ], [ -95.424640027174448, 29.9701822380446 ], [ -95.424917027122461, 29.970443238450382 ], [ -95.42525702671378, 29.970716238325139 ], [ -95.426137027210643, 29.97140923843552 ], [ -95.426656026922103, 29.971818238111769 ], [ -95.426835026997267, 29.971966238274529 ], [ -95.427655028156423, 29.972679238210194 ], [ -95.428154027775435, 29.973042238652962 ], [ -95.428195028081518, 29.973081238995906 ], [ -95.428279028369431, 29.97315123899514 ], [ -95.428328028042884, 29.973197238652133 ], [ -95.428364027699232, 29.973231238252172 ], [ -95.42863802811658, 29.973471238296089 ], [ -95.428935027591322, 29.973727238535378 ], [ -95.42925202819643, 29.974017238907816 ], [ -95.42949202805633, 29.974223238509477 ], [ -95.429548028286092, 29.974267238636095 ], [ -95.429610028327019, 29.974331239030548 ], [ -95.429841028513835, 29.974529239086856 ], [ -95.430007028482251, 29.97467923845992 ], [ -95.430102027925329, 29.974756238582778 ], [ -95.430248028166886, 29.974888239005455 ], [ -95.430417028857306, 29.975040239206063 ], [ -95.43061502835063, 29.975216239051154 ], [ -95.430724028740556, 29.975305238920058 ], [ -95.43139102925845, 29.975899239171042 ], [ -95.431558028521479, 29.976047239382943 ], [ -95.431843028414775, 29.976300239332229 ], [ -95.432687029103917, 29.977042238779806 ], [ -95.432754028820213, 29.977101239150638 ], [ -95.432850029034427, 29.977179239433998 ], [ -95.43311802894921, 29.977409239048367 ], [ -95.433345029271536, 29.977616239711299 ], [ -95.433540028989071, 29.977787239645565 ], [ -95.433700029438569, 29.97792223970405 ], [ -95.43387902949226, 29.978080239327646 ], [ -95.434073030026582, 29.978244239376423 ], [ -95.43420203012613, 29.978356238989601 ], [ -95.434637030240992, 29.978737239111364 ], [ -95.434708029533454, 29.978799239201408 ], [ -95.435061029452328, 29.979109239287325 ], [ -95.435244029746329, 29.979269239443887 ], [ -95.435341030391911, 29.979348240037705 ], [ -95.435661030092476, 29.979628239513524 ], [ -95.43682803005612, 29.980648239787236 ], [ -95.437181030981918, 29.980957240038883 ], [ -95.43727403014887, 29.981038239590816 ], [ -95.437475031000233, 29.980746239455179 ], [ -95.437582030272125, 29.980568239823821 ], [ -95.437639030898509, 29.980485239830521 ], [ -95.437693030710591, 29.980376239693378 ], [ -95.43782503067635, 29.980111240073171 ], [ -95.437941030637631, 29.979842239877932 ], [ -95.438018030570561, 29.979640239541567 ], [ -95.438055030771395, 29.979531239651017 ], [ -95.438158030359048, 29.97917223944355 ], [ -95.4382040308396, 29.978976239448997 ], [ -95.438241030851287, 29.978771239293408 ], [ -95.438272030840139, 29.978533239305918 ], [ -95.438284030812369, 29.978366239338527 ], [ -95.438295031056242, 29.978210238867661 ], [ -95.438299030587231, 29.977931239296332 ], [ -95.438303030913303, 29.97777623915244 ], [ -95.438300030371991, 29.977743239457059 ], [ -95.438295030569662, 29.977672239201894 ], [ -95.438296030449393, 29.977573239107105 ], [ -95.438271030967428, 29.977228239361196 ], [ -95.438223030720124, 29.976871238849281 ], [ -95.4381760302267, 29.97659123847944 ], [ -95.438155030987716, 29.976505238820511 ], [ -95.438058030880015, 29.976190239295629 ], [ -95.438018030927608, 29.976060238940065 ], [ -95.438008029991281, 29.97604123862439 ], [ -95.437979030989368, 29.975981238818321 ], [ -95.437886030131011, 29.975738239115366 ], [ -95.437805030121908, 29.975558238881192 ], [ -95.437674030846836, 29.975297238858737 ], [ -95.437661030579861, 29.975277238302869 ], [ -95.43762403086572, 29.97521823833203 ], [ -95.437580030401236, 29.975139238985111 ], [ -95.437395029980493, 29.974862238262837 ], [ -95.437220030667746, 29.974623238951292 ], [ -95.437086030518174, 29.974454238103309 ], [ -95.436974029907219, 29.974324238653534 ], [ -95.436743030433746, 29.974084238361272 ], [ -95.436718029634974, 29.974060238504126 ], [ -95.43655503025488, 29.973904238377902 ], [ -95.436153030212793, 29.973539238561472 ], [ -95.435440029510019, 29.972914238101616 ], [ -95.435200029977096, 29.972697238573197 ], [ -95.434605029592618, 29.97215823796823 ], [ -95.434566029080884, 29.972119238566478 ], [ -95.434278029688102, 29.971855238380449 ], [ -95.434021029551559, 29.97163923827755 ], [ -95.433847028954403, 29.97148523766834 ], [ -95.433678028710275, 29.971326238378019 ], [ -95.433224028900241, 29.970923237859225 ], [ -95.432666029078149, 29.970425237838121 ], [ -95.432403028990905, 29.970181238099507 ], [ -95.433009028746596, 29.96964623752535 ], [ -95.433110028734163, 29.969581237717406 ], [ -95.433243028851251, 29.969454237607252 ], [ -95.433376029048986, 29.969329237515655 ], [ -95.433473028811179, 29.969248237442269 ], [ -95.433563028872129, 29.969162237865948 ], [ -95.434009029607722, 29.968785237817311 ], [ -95.434095029640076, 29.968724237276064 ], [ -95.43419602894835, 29.968673237669385 ], [ -95.434262028788424, 29.968627237727102 ], [ -95.434414029136619, 29.968562237358842 ], [ -95.434493029688198, 29.968536237371371 ], [ -95.434577028847869, 29.968519237130288 ], [ -95.434651028804723, 29.968499237389622 ], [ -95.434726029021704, 29.968488237740114 ], [ -95.43483902958107, 29.968481237263678 ], [ -95.434949029073493, 29.96847923770795 ], [ -95.435660029496177, 29.968473237079053 ], [ -95.436499029643784, 29.968470236971253 ], [ -95.43684402968384, 29.968483237158555 ], [ -95.437310030117814, 29.968515237723466 ], [ -95.43752103024012, 29.968521237441259 ], [ -95.438129030092199, 29.968524237389918 ], [ -95.440046030967736, 29.968517237391158 ], [ -95.440869031322023, 29.968516237238855 ], [ -95.441871030746412, 29.968512237352403 ], [ -95.44265303121206, 29.968511237404059 ], [ -95.443491031638672, 29.968508237537307 ], [ -95.444312031866176, 29.968505237189895 ], [ -95.445155031577841, 29.968502237474254 ], [ -95.446178032399146, 29.968499237108823 ], [ -95.446176031845852, 29.967911237190862 ], [ -95.446497032304492, 29.96790323666696 ], [ -95.447580032560268, 29.96787623689044 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 915, "Tract": "48201541802", "Area_SqMi": 1.3660079235155598, "total_2009": 1114, "total_2010": 1162, "total_2011": 1425, "total_2012": 1766, "total_2013": 1958, "total_2014": 1868, "total_2015": 2064, "total_2016": 2381, "total_2017": 2375, "total_2018": 2894, "total_2019": 3332, "total_2020": 3523, "age1": 951, "age2": 2072, "age3": 626, "earn1": 622, "earn2": 1066, "earn3": 1961, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 35, "naics_s05": 1, "naics_s06": 23, "naics_s07": 726, "naics_s08": 0, "naics_s09": 14, "naics_s10": 15, "naics_s11": 45, "naics_s12": 150, "naics_s13": 8, "naics_s14": 94, "naics_s15": 0, "naics_s16": 2136, "naics_s17": 92, "naics_s18": 255, "naics_s19": 55, "naics_s20": 0, "race1": 2153, "race2": 798, "race3": 37, "race4": 583, "race5": 8, "race6": 70, "ethnicity1": 2519, "ethnicity2": 1130, "edu1": 513, "edu2": 645, "edu3": 849, "edu4": 691, "Shape_Length": 29920.757996494987, "Shape_Area": 38081962.961686932, "total_2021": 3498, "total_2022": 3649 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.718940093883035, 29.785599190421156 ], [ -95.718940093995514, 29.785346189913927 ], [ -95.718939093295731, 29.785183190073596 ], [ -95.718746093311381, 29.785183190533115 ], [ -95.718423093335133, 29.785179190293643 ], [ -95.717386093286521, 29.78519318998935 ], [ -95.716815093118569, 29.7852141905901 ], [ -95.714069092545202, 29.785242190120723 ], [ -95.710208091896078, 29.785193190905414 ], [ -95.707245090385754, 29.785254190738218 ], [ -95.70634909031233, 29.785254190529212 ], [ -95.706140090826523, 29.785254190367613 ], [ -95.705871090098839, 29.785254191006306 ], [ -95.705148089728866, 29.785257190600053 ], [ -95.703842089854277, 29.785272190840683 ], [ -95.702753089529054, 29.785270191233874 ], [ -95.701972089836332, 29.7852711909402 ], [ -95.700035088440316, 29.785242190624256 ], [ -95.698864088350518, 29.78523219072763 ], [ -95.698338088844736, 29.785218190744608 ], [ -95.695297087641933, 29.785154191438423 ], [ -95.694877087897623, 29.7851351914973 ], [ -95.690957086175516, 29.785038191373133 ], [ -95.69067908610549, 29.785038191164741 ], [ -95.689701086527052, 29.785031191033031 ], [ -95.688618086296913, 29.785038191029326 ], [ -95.688504086274278, 29.785040191696989 ], [ -95.688358085340539, 29.785045191584743 ], [ -95.688359086320389, 29.785128191154218 ], [ -95.688355085662607, 29.7854651914468 ], [ -95.688353085970576, 29.785624191416979 ], [ -95.688349085590886, 29.785913191192652 ], [ -95.688366085848273, 29.786221191173055 ], [ -95.68835408606995, 29.787520191722475 ], [ -95.688403085939242, 29.788877191721486 ], [ -95.688423086525461, 29.790949192683328 ], [ -95.68826308647084, 29.790942192630798 ], [ -95.688264085641222, 29.791040192085987 ], [ -95.688266085982747, 29.791490193051963 ], [ -95.68826808632663, 29.791948192670628 ], [ -95.688274086289468, 29.793042192996577 ], [ -95.688276086349148, 29.793603192689321 ], [ -95.688279086416657, 29.794163193464421 ], [ -95.688286086592882, 29.795078193755192 ], [ -95.688286086374731, 29.795220193766848 ], [ -95.688294086763932, 29.797043193787925 ], [ -95.688318086183699, 29.797907193958249 ], [ -95.688314086351397, 29.798484193651852 ], [ -95.688313086921738, 29.798638193958507 ], [ -95.688315086983962, 29.799433193804173 ], [ -95.688340086810456, 29.800158194074466 ], [ -95.688334086225225, 29.80033219475397 ], [ -95.688505087037868, 29.800329194686022 ], [ -95.68853808655706, 29.800341194653249 ], [ -95.689802087193385, 29.800351194067179 ], [ -95.692935088018601, 29.800353194123876 ], [ -95.695003088306905, 29.800351194351069 ], [ -95.698003089273385, 29.800344193767543 ], [ -95.700179089585802, 29.80034419395567 ], [ -95.701632090441194, 29.800339193987345 ], [ -95.701656089878639, 29.800340194244558 ], [ -95.701826090327515, 29.8003441936138 ], [ -95.701965089901464, 29.800337193932961 ], [ -95.702509089765854, 29.800333194290783 ], [ -95.703266090623785, 29.800330194031798 ], [ -95.703549090286131, 29.800323193972943 ], [ -95.70398109004779, 29.800314194037618 ], [ -95.703990090720353, 29.800175194207856 ], [ -95.703996090440185, 29.799928193700755 ], [ -95.704011090515323, 29.799663194084083 ], [ -95.704019090929592, 29.799380193686194 ], [ -95.704023090830475, 29.799259193771611 ], [ -95.704058090734975, 29.798997193198279 ], [ -95.704096090072852, 29.798616193455477 ], [ -95.704143090771467, 29.798371193733615 ], [ -95.704226090462157, 29.797758193551413 ], [ -95.704328090045536, 29.797366193253168 ], [ -95.704462090475985, 29.796850193287579 ], [ -95.704662090738495, 29.796225192612408 ], [ -95.704815090278728, 29.795683192873319 ], [ -95.705040090705779, 29.795034192695876 ], [ -95.705205090402984, 29.794550192998653 ], [ -95.705440090685002, 29.793831192663074 ], [ -95.705653090952907, 29.793135192301072 ], [ -95.705771090451108, 29.792758192119912 ], [ -95.705865090931184, 29.792322192394366 ], [ -95.705971090920798, 29.791709192442049 ], [ -95.706042090740667, 29.791249191748001 ], [ -95.706124090319264, 29.790635191983544 ], [ -95.706154091029646, 29.79031719142581 ], [ -95.706985090803315, 29.790553191525841 ], [ -95.707840091151425, 29.790812191437468 ], [ -95.708499091279364, 29.791009191844811 ], [ -95.708794090968908, 29.791101192208604 ], [ -95.708847090990361, 29.79111819210517 ], [ -95.708996091370906, 29.79116219214437 ], [ -95.709081091055211, 29.791189192033968 ], [ -95.70928709130726, 29.791244191883958 ], [ -95.709334091357647, 29.79125819213197 ], [ -95.709517091556151, 29.791298192013748 ], [ -95.709672091392434, 29.791318191811516 ], [ -95.709798092091646, 29.791341191947794 ], [ -95.710028091825549, 29.791372191610854 ], [ -95.710112092165829, 29.791377192074776 ], [ -95.710205091600969, 29.791390191787254 ], [ -95.710307091416098, 29.791398191792553 ], [ -95.710387091376418, 29.791397191931761 ], [ -95.710726091592704, 29.791412191846181 ], [ -95.710903091726891, 29.791411191783286 ], [ -95.711348091564545, 29.791396191616514 ], [ -95.711627091643038, 29.791396192028753 ], [ -95.711700092461825, 29.791388191661817 ], [ -95.711928092405287, 29.791388192217358 ], [ -95.712000092366452, 29.791394191430928 ], [ -95.712081092576, 29.791395191746041 ], [ -95.712255092224396, 29.791391191941852 ], [ -95.712580091976122, 29.791393191400296 ], [ -95.712807092342373, 29.791386191709329 ], [ -95.713039092327591, 29.791368191736915 ], [ -95.713252092837791, 29.791335192159252 ], [ -95.713334092194586, 29.791318191692564 ], [ -95.713543092654859, 29.791274191314539 ], [ -95.713726092944398, 29.791224191865592 ], [ -95.71380709305636, 29.791189191734119 ], [ -95.71401309287802, 29.791111191796119 ], [ -95.714525093130902, 29.790917192051367 ], [ -95.714685093268983, 29.790853191767219 ], [ -95.715305092700945, 29.790621191950187 ], [ -95.716303093375004, 29.790238191380748 ], [ -95.716724092863714, 29.790087191395568 ], [ -95.716941093043829, 29.790025191158488 ], [ -95.717061093116882, 29.790001190915728 ], [ -95.717288093745807, 29.789968191238216 ], [ -95.717520093327266, 29.7899431913096 ], [ -95.717752093488926, 29.789931190849028 ], [ -95.718312093248997, 29.78993119102822 ], [ -95.718419094240275, 29.789927191100901 ], [ -95.718510093996983, 29.789930191490441 ], [ -95.718867093523144, 29.789925191601867 ], [ -95.71890109381944, 29.789924191626966 ], [ -95.718898093664322, 29.789830191277407 ], [ -95.718900093426669, 29.789213190942402 ], [ -95.718897093918997, 29.788251190634284 ], [ -95.718908093999957, 29.787348190514578 ], [ -95.718934093665695, 29.786419190257771 ], [ -95.718939093940023, 29.785702190077036 ], [ -95.718939093187316, 29.785677190387968 ], [ -95.718940093883035, 29.785599190421156 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 916, "Tract": "48201250102", "Area_SqMi": 2.3443001692440468, "total_2009": 1767, "total_2010": 1786, "total_2011": 1942, "total_2012": 2407, "total_2013": 2636, "total_2014": 2588, "total_2015": 2827, "total_2016": 2877, "total_2017": 3000, "total_2018": 2838, "total_2019": 2839, "total_2020": 2584, "age1": 499, "age2": 1406, "age3": 572, "earn1": 300, "earn2": 711, "earn3": 1466, "naics_s01": 0, "naics_s02": 137, "naics_s03": 0, "naics_s04": 594, "naics_s05": 879, "naics_s06": 69, "naics_s07": 80, "naics_s08": 101, "naics_s09": 0, "naics_s10": 17, "naics_s11": 10, "naics_s12": 97, "naics_s13": 0, "naics_s14": 182, "naics_s15": 0, "naics_s16": 132, "naics_s17": 62, "naics_s18": 25, "naics_s19": 92, "naics_s20": 0, "race1": 1933, "race2": 374, "race3": 35, "race4": 75, "race5": 15, "race6": 45, "ethnicity1": 1322, "ethnicity2": 1155, "edu1": 634, "edu2": 534, "edu3": 496, "edu4": 314, "Shape_Length": 40770.035271036228, "Shape_Area": 65355076.408684753, "total_2021": 2539, "total_2022": 2477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.266354985557513, 29.956174240937688 ], [ -95.266368985072177, 29.955970240795494 ], [ -95.265411985469143, 29.956400240858191 ], [ -95.26147898408054, 29.958169240859704 ], [ -95.261297984439125, 29.958258241151068 ], [ -95.260840984438232, 29.958482241140103 ], [ -95.260807984468812, 29.958498241129202 ], [ -95.2605389844732, 29.958629241766346 ], [ -95.259112984121145, 29.959326241963559 ], [ -95.258094983635701, 29.959788242012898 ], [ -95.257738983224044, 29.959949241524644 ], [ -95.257265983496623, 29.960165242158766 ], [ -95.256943983865796, 29.96030624170449 ], [ -95.255272983026543, 29.961040241703795 ], [ -95.25518398266631, 29.961079241938265 ], [ -95.253813982162796, 29.961681241790345 ], [ -95.253635982225632, 29.961697242632855 ], [ -95.250342981563847, 29.961995242759794 ], [ -95.250100981406675, 29.961989242411217 ], [ -95.249969981419511, 29.961986242595973 ], [ -95.248993981074008, 29.961964242820585 ], [ -95.248356981451565, 29.961969242446983 ], [ -95.248029980828377, 29.961973242062744 ], [ -95.247965980672006, 29.961961242048602 ], [ -95.246913981255275, 29.961975242578923 ], [ -95.246468980327165, 29.961991242382876 ], [ -95.246162980866913, 29.962012242679908 ], [ -95.246008980486891, 29.962029242934268 ], [ -95.245855980987187, 29.962052242864672 ], [ -95.245703980270207, 29.962081242416488 ], [ -95.2455509802394, 29.962115242462581 ], [ -95.245360980399994, 29.962168242674068 ], [ -95.245250980922236, 29.962202242532872 ], [ -95.244962980770239, 29.962312242820396 ], [ -95.2448229806716, 29.96237524278153 ], [ -95.244548980203959, 29.962516243175447 ], [ -95.244413980319052, 29.962596242993001 ], [ -95.244144980017154, 29.962775242784645 ], [ -95.242048979300321, 29.964217242905406 ], [ -95.240398979331616, 29.965353243169439 ], [ -95.239624978934472, 29.965885243905188 ], [ -95.239362978824545, 29.966065243720827 ], [ -95.239070978865328, 29.966266243941821 ], [ -95.238080979150595, 29.966944243659256 ], [ -95.23746397839345, 29.967370244272129 ], [ -95.236271978621502, 29.968192244582319 ], [ -95.236200978366895, 29.968241244576923 ], [ -95.235824978254868, 29.96850024381175 ], [ -95.235235978312318, 29.968901244542707 ], [ -95.234981977939, 29.969074244645896 ], [ -95.234891977826933, 29.969136244509912 ], [ -95.234832978370122, 29.969176244295234 ], [ -95.234264977620001, 29.969549244899248 ], [ -95.233336977748522, 29.970193244567849 ], [ -95.23300097733518, 29.970429245029731 ], [ -95.232988978012443, 29.970438244413199 ], [ -95.232605978018597, 29.970711245183839 ], [ -95.231832977312436, 29.971241244558946 ], [ -95.231473977560171, 29.971489244597748 ], [ -95.230883977269642, 29.971897244735807 ], [ -95.230051976797, 29.972464245387702 ], [ -95.229846977437816, 29.972595245301207 ], [ -95.229640976812973, 29.972714245073224 ], [ -95.229588976654398, 29.972744245628231 ], [ -95.229068976621036, 29.973025245043807 ], [ -95.227950976367566, 29.973630245783337 ], [ -95.22733797637116, 29.973950246085113 ], [ -95.226718976270121, 29.974276245515462 ], [ -95.226600976695138, 29.974338245725953 ], [ -95.226088975718213, 29.974609246206928 ], [ -95.225787975991992, 29.974769245509872 ], [ -95.225350975828121, 29.975013245574473 ], [ -95.224718975776653, 29.975361246176828 ], [ -95.223907975756873, 29.97580924634234 ], [ -95.223645975580737, 29.975954246254851 ], [ -95.222637974800989, 29.976519246742765 ], [ -95.22226497513536, 29.976724246055269 ], [ -95.221897974636192, 29.976933246662703 ], [ -95.221705975151295, 29.97702724623834 ], [ -95.221386975118406, 29.977205246265154 ], [ -95.221008974705441, 29.977414246398844 ], [ -95.220234974882814, 29.977846246907255 ], [ -95.219523974645185, 29.978229246686173 ], [ -95.219069973983721, 29.978471247172561 ], [ -95.218766974536706, 29.978634246546839 ], [ -95.217763974371735, 29.979168247217828 ], [ -95.217571974482667, 29.979272246809405 ], [ -95.217440974372764, 29.979343246941664 ], [ -95.217896974249612, 29.979685246793093 ], [ -95.218102973807945, 29.979828247144589 ], [ -95.218335974315238, 29.979973246844438 ], [ -95.218461974290946, 29.980043247445359 ], [ -95.218720974255177, 29.980170246957925 ], [ -95.218790974803341, 29.980200246791476 ], [ -95.218977974713198, 29.980279246952502 ], [ -95.219311974294911, 29.980396247083082 ], [ -95.219663974692097, 29.98049424702134 ], [ -95.220015974792091, 29.980576247603764 ], [ -95.220321974508153, 29.980632247280617 ], [ -95.220624975454996, 29.980669247024203 ], [ -95.220851974806479, 29.980686247659076 ], [ -95.221199975529643, 29.980696247169025 ], [ -95.222069975589335, 29.980687247162411 ], [ -95.222215974983214, 29.980681247536769 ], [ -95.222524975153974, 29.980681247340893 ], [ -95.22299697527194, 29.980664247064084 ], [ -95.223660975651711, 29.980623247255906 ], [ -95.22373597625915, 29.980615246730174 ], [ -95.224175976124357, 29.980567247566395 ], [ -95.224347976265705, 29.980545247163981 ], [ -95.224380976189551, 29.980539247209787 ], [ -95.224866976198513, 29.980459247045108 ], [ -95.225404976415035, 29.980357247157894 ], [ -95.225586976447346, 29.980315246660169 ], [ -95.225768976664369, 29.980266246859511 ], [ -95.226350976782825, 29.980131247248913 ], [ -95.226548976072991, 29.980080247131767 ], [ -95.226746976749752, 29.980023246924112 ], [ -95.227580976511135, 29.979814246506475 ], [ -95.228006977292424, 29.979702247150239 ], [ -95.228654977256639, 29.979530246463362 ], [ -95.230651977739427, 29.979018246439328 ], [ -95.231742977226318, 29.97871524648426 ], [ -95.23244997754334, 29.978518246524963 ], [ -95.233378978511823, 29.978290246056538 ], [ -95.233404978335997, 29.978283246029076 ], [ -95.234424978394117, 29.978116246531286 ], [ -95.235302978467899, 29.978047246662708 ], [ -95.235515978843168, 29.978052246625776 ], [ -95.23602297880511, 29.978065246136783 ], [ -95.236588978750589, 29.978080246536429 ], [ -95.236610979044272, 29.978081245810184 ], [ -95.236882979127103, 29.97809624643785 ], [ -95.23700597925982, 29.978102245843246 ], [ -95.237308978910491, 29.978126246124017 ], [ -95.237414978658862, 29.978135245766449 ], [ -95.237620979271313, 29.97815624588522 ], [ -95.238238978923093, 29.978243246285828 ], [ -95.238256978936548, 29.978246246302959 ], [ -95.238647979422623, 29.978316246413971 ], [ -95.239053979280698, 29.978401245739722 ], [ -95.239457979456276, 29.978499246260519 ], [ -95.239839979346826, 29.978597246022733 ], [ -95.240380980288691, 29.978745245974608 ], [ -95.240884980565923, 29.978868246577292 ], [ -95.241304980045683, 29.978958246033194 ], [ -95.241731980720957, 29.979035246264253 ], [ -95.242158980329023, 29.979095245751825 ], [ -95.242453980313527, 29.979126245972914 ], [ -95.242537980245473, 29.979135246060835 ], [ -95.242582980935268, 29.979140246611479 ], [ -95.243001980961495, 29.979174246615237 ], [ -95.243413980234635, 29.979192246128473 ], [ -95.243823980358016, 29.97920224616967 ], [ -95.244111980597836, 29.979199245962082 ], [ -95.244791981013904, 29.979192246238991 ], [ -95.245305981380241, 29.979180246231095 ], [ -95.246862981324043, 29.979145245745478 ], [ -95.248420982171268, 29.979148246168769 ], [ -95.249954982031355, 29.979064245754756 ], [ -95.250276982872364, 29.979060245662073 ], [ -95.251141983140329, 29.979115246202099 ], [ -95.251455982464904, 29.979110245448478 ], [ -95.254877983460474, 29.979069245983748 ], [ -95.255500983324552, 29.979061246007973 ], [ -95.25594998399616, 29.979055245775726 ], [ -95.256090983503583, 29.979053245629711 ], [ -95.256531984005832, 29.979047246072259 ], [ -95.25680598402424, 29.979045245533111 ], [ -95.257179983917936, 29.979041245839554 ], [ -95.257495984718716, 29.979035246031614 ], [ -95.258936984911884, 29.979017245338699 ], [ -95.26007498482133, 29.97914024513986 ], [ -95.260568985197793, 29.979238245420873 ], [ -95.260938985442365, 29.979310245443902 ], [ -95.261683984862373, 29.976221245181925 ], [ -95.261832985166308, 29.97561224523961 ], [ -95.26263698526995, 29.972332244370474 ], [ -95.262776985869536, 29.97172524355824 ], [ -95.26282798542799, 29.971506243623256 ], [ -95.262917985871255, 29.971114243687683 ], [ -95.263096984974212, 29.970338243674387 ], [ -95.263136985349163, 29.970166243555212 ], [ -95.263183985809576, 29.969964243336385 ], [ -95.263213984921052, 29.969833243176534 ], [ -95.263274985419031, 29.969566243952105 ], [ -95.263556985837525, 29.968372242968258 ], [ -95.263831985954212, 29.967208243018035 ], [ -95.263978985459815, 29.966581243095401 ], [ -95.264097985917971, 29.966078243157895 ], [ -95.264290985091421, 29.965259242403075 ], [ -95.264564985928544, 29.964074242360685 ], [ -95.265076985460041, 29.961853241756899 ], [ -95.265298985805117, 29.960893241504632 ], [ -95.265451985811652, 29.960227241565661 ], [ -95.266313985996049, 29.956778241011289 ], [ -95.26631498512829, 29.956760240436523 ], [ -95.266354985557513, 29.956174240937688 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 917, "Tract": "48201543007", "Area_SqMi": 8.7164533676927185, "total_2009": 1641, "total_2010": 2040, "total_2011": 3257, "total_2012": 3263, "total_2013": 3199, "total_2014": 3549, "total_2015": 3733, "total_2016": 4107, "total_2017": 4531, "total_2018": 4606, "total_2019": 4787, "total_2020": 5341, "age1": 2790, "age2": 3030, "age3": 1139, "earn1": 2203, "earn2": 2596, "earn3": 2160, "naics_s01": 0, "naics_s02": 6, "naics_s03": 1, "naics_s04": 274, "naics_s05": 19, "naics_s06": 177, "naics_s07": 1965, "naics_s08": 111, "naics_s09": 29, "naics_s10": 158, "naics_s11": 262, "naics_s12": 304, "naics_s13": 1, "naics_s14": 727, "naics_s15": 140, "naics_s16": 649, "naics_s17": 165, "naics_s18": 1759, "naics_s19": 212, "naics_s20": 0, "race1": 5085, "race2": 1091, "race3": 63, "race4": 589, "race5": 6, "race6": 125, "ethnicity1": 4703, "ethnicity2": 2256, "edu1": 926, "edu2": 1093, "edu3": 1199, "edu4": 951, "Shape_Length": 69105.47262397084, "Shape_Area": 242999801.53223789, "total_2021": 6219, "total_2022": 6959 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.730241103558143, 29.939945221759512 ], [ -95.730256103147013, 29.939488221400776 ], [ -95.73001910385905, 29.939459221141842 ], [ -95.729517103101998, 29.93937022103426 ], [ -95.72884210289115, 29.939179221239517 ], [ -95.728219103437482, 29.938950221436695 ], [ -95.727564102339002, 29.938645221270267 ], [ -95.72716310264623, 29.9383972214248 ], [ -95.72706210217855, 29.938308221212754 ], [ -95.726832102560877, 29.938148221268147 ], [ -95.726380102676643, 29.937722221001593 ], [ -95.725994101877234, 29.937324220663264 ], [ -95.726132102639397, 29.937231220641891 ], [ -95.72629010234121, 29.93711722060447 ], [ -95.726642102425345, 29.936825220816495 ], [ -95.726745102346229, 29.936741220609687 ], [ -95.727025102068779, 29.936463220704379 ], [ -95.727152102696792, 29.936322220835237 ], [ -95.727399102317591, 29.936019220419276 ], [ -95.72748410269449, 29.935899220926686 ], [ -95.72763010315974, 29.935698220170476 ], [ -95.727836102373757, 29.935362220967722 ], [ -95.728012102434107, 29.935013220262586 ], [ -95.728097102855102, 29.934801220325625 ], [ -95.728158102476542, 29.934653219967597 ], [ -95.728263102629541, 29.934412220597725 ], [ -95.7283781032192, 29.934083220249068 ], [ -95.728415103202479, 29.933895220167209 ], [ -95.728439102546758, 29.933735220315711 ], [ -95.728453103268308, 29.933609219923142 ], [ -95.728465102988395, 29.933087219713958 ], [ -95.728481102789445, 29.932373220002937 ], [ -95.72847810241683, 29.932179219622419 ], [ -95.728475103062081, 29.931985220156385 ], [ -95.728463102767265, 29.931199219270173 ], [ -95.728460102975532, 29.930802219170896 ], [ -95.72846010312945, 29.930740219352895 ], [ -95.728458103055644, 29.930429219302063 ], [ -95.728455102849594, 29.929810219140904 ], [ -95.72845510288559, 29.9297982189977 ], [ -95.728454102457292, 29.92959621925905 ], [ -95.728453102679495, 29.929542219510846 ], [ -95.728443102505167, 29.928793219342623 ], [ -95.72843410260775, 29.927594218708283 ], [ -95.728432102339639, 29.927396218870822 ], [ -95.728430102076061, 29.927199219033085 ], [ -95.728426102134819, 29.926616218673221 ], [ -95.728425102463675, 29.926543218624094 ], [ -95.728423102180699, 29.926361218926701 ], [ -95.728210101932049, 29.926338218365881 ], [ -95.727639102651423, 29.926278219137107 ], [ -95.72668910215468, 29.92616621872239 ], [ -95.725952101693892, 29.926078218758164 ], [ -95.725492101962232, 29.926042218584016 ], [ -95.72491510170336, 29.925995218515975 ], [ -95.724792101724901, 29.925982218995877 ], [ -95.724301100994367, 29.925930218893569 ], [ -95.723729101076785, 29.925842218706361 ], [ -95.722680100762247, 29.92569421860237 ], [ -95.722209100826205, 29.925641218959139 ], [ -95.72210210046245, 29.925630218693641 ], [ -95.721654100648422, 29.925571219094554 ], [ -95.721288100711945, 29.925506219061059 ], [ -95.720616100715645, 29.925441218945405 ], [ -95.720003100136552, 29.925352219057217 ], [ -95.719732100535353, 29.925317218888331 ], [ -95.719443099756447, 29.925288218747198 ], [ -95.719136100496115, 29.925258218474308 ], [ -95.718694099993044, 29.925229218838069 ], [ -95.71825810006311, 29.92519921912476 ], [ -95.717874099226606, 29.925146218337591 ], [ -95.717397099756226, 29.925099218436849 ], [ -95.717317099256107, 29.925085218430013 ], [ -95.71713909995934, 29.925054218468961 ], [ -95.716636099680713, 29.924987218594811 ], [ -95.71527409876046, 29.92481621876157 ], [ -95.714089098595636, 29.924663218903984 ], [ -95.713535098805977, 29.924586218582526 ], [ -95.713235098685288, 29.924537218713205 ], [ -95.713028098518762, 29.92450321876359 ], [ -95.711907098530673, 29.924379218460281 ], [ -95.711170098345548, 29.924297218919406 ], [ -95.71072209819846, 29.924226219297225 ], [ -95.710246097807698, 29.924158218792577 ], [ -95.710034097205224, 29.924122218844474 ], [ -95.708996097816183, 29.923945219270394 ], [ -95.70864009683028, 29.923896218646654 ], [ -95.708218097646551, 29.92383921843534 ], [ -95.707192096513864, 29.923674218538146 ], [ -95.706154096856082, 29.923580219097804 ], [ -95.705258096592686, 29.923462219276793 ], [ -95.704114096121401, 29.923320219283973 ], [ -95.70386009556114, 29.923281218734026 ], [ -95.703548096472986, 29.923237219224372 ], [ -95.703350095812226, 29.923209218655096 ], [ -95.703087095580756, 29.923180218719029 ], [ -95.702864095905525, 29.923155218974909 ], [ -95.702144095385577, 29.923061218560175 ], [ -95.70149609501135, 29.922943218677116 ], [ -95.701154095649756, 29.922862219222139 ], [ -95.7008710957072, 29.922791218884075 ], [ -95.700287095268337, 29.922620219107475 ], [ -95.699747095236006, 29.922460218504199 ], [ -95.69955009498706, 29.922402219068442 ], [ -95.698890094913011, 29.922178218620388 ], [ -95.698094094425485, 29.921942219242883 ], [ -95.697540094737292, 29.921800218449714 ], [ -95.697286093847538, 29.921724218900287 ], [ -95.697203094700697, 29.921700218493712 ], [ -95.696425094253087, 29.921576218507546 ], [ -95.69599509349888, 29.921488219157908 ], [ -95.69496909375205, 29.921394219275371 ], [ -95.693613092860218, 29.921240218669784 ], [ -95.692410093162493, 29.921081219123241 ], [ -95.692014093138695, 29.921033218959106 ], [ -95.691679092990924, 29.920993218627409 ], [ -95.690629092089623, 29.920834218553377 ], [ -95.690253092639551, 29.920780218763539 ], [ -95.690104092078585, 29.920759219133494 ], [ -95.690045092460167, 29.920751218892931 ], [ -95.689338092712916, 29.92056821924643 ], [ -95.68885409206159, 29.92042721909224 ], [ -95.688170092134158, 29.9202792191447 ], [ -95.687646091962506, 29.920220218809021 ], [ -95.687139091140423, 29.920238219151052 ], [ -95.686643091622756, 29.920303218680996 ], [ -95.686279091593804, 29.920334219010993 ], [ -95.68632909140257, 29.922431219603556 ], [ -95.686341091599843, 29.92292221922537 ], [ -95.686347091328429, 29.923227219541253 ], [ -95.686355091749249, 29.923612219708708 ], [ -95.686399091470037, 29.925656220183225 ], [ -95.68637809182502, 29.925858220065038 ], [ -95.686342092071385, 29.926089220349407 ], [ -95.686280091914668, 29.926330219775139 ], [ -95.68624109120033, 29.92641922023493 ], [ -95.686093092098929, 29.926760220644411 ], [ -95.685885091479065, 29.927213220413552 ], [ -95.684978091539477, 29.929106220477028 ], [ -95.684778090971662, 29.929525221173119 ], [ -95.682594090766898, 29.93407322225659 ], [ -95.682551090904511, 29.934165222082697 ], [ -95.682537091240917, 29.934195221527364 ], [ -95.681187090457513, 29.937006222465055 ], [ -95.680926091100417, 29.937550222505209 ], [ -95.680747090732112, 29.937922222428316 ], [ -95.680304091141053, 29.93884722268065 ], [ -95.680223090229205, 29.939014223085952 ], [ -95.680143090599799, 29.939180222909311 ], [ -95.679973090244445, 29.939536222855907 ], [ -95.679436090633118, 29.94065522334245 ], [ -95.679295091073598, 29.940950223654511 ], [ -95.678591090150761, 29.942417223896943 ], [ -95.678553090293519, 29.9424972239837 ], [ -95.677381090279724, 29.944938224229904 ], [ -95.676349090469046, 29.947078224392634 ], [ -95.676314089933342, 29.947151224820747 ], [ -95.675909090146021, 29.947994224684891 ], [ -95.675610089665994, 29.948618224752568 ], [ -95.675555089799133, 29.948733225129185 ], [ -95.675472089442863, 29.948908225484658 ], [ -95.675378089455336, 29.949109225545989 ], [ -95.675077089872104, 29.949740225519534 ], [ -95.674916089473342, 29.950076225483112 ], [ -95.674693090191852, 29.950549225582076 ], [ -95.67431908939669, 29.951326225185486 ], [ -95.67400308945318, 29.951983226057596 ], [ -95.673941089331365, 29.952111225836973 ], [ -95.673826089775957, 29.952350225959535 ], [ -95.673779090021895, 29.952448225798435 ], [ -95.673719089160443, 29.952573226208539 ], [ -95.673696089816133, 29.952621225857545 ], [ -95.673681089447271, 29.952652225719095 ], [ -95.673611090007967, 29.952796225996831 ], [ -95.673477089506989, 29.953080226063005 ], [ -95.675702090421083, 29.954594225857463 ], [ -95.676788090479278, 29.955309226397386 ], [ -95.678352090710447, 29.956338226067267 ], [ -95.679343091307487, 29.956991226275193 ], [ -95.68015509128827, 29.957549226745829 ], [ -95.680899092283454, 29.958072226557395 ], [ -95.681405092081945, 29.958427226618777 ], [ -95.683295092406382, 29.959733227355375 ], [ -95.684589093173074, 29.960627227570377 ], [ -95.685080093024339, 29.960955227538559 ], [ -95.685646092941326, 29.961356227515342 ], [ -95.6857370936264, 29.961422227126896 ], [ -95.687270093378203, 29.962450227430516 ], [ -95.687430093292662, 29.962567227343222 ], [ -95.687711094157166, 29.962772227251058 ], [ -95.687888093436698, 29.9629012272609 ], [ -95.688066093478, 29.963035227388328 ], [ -95.688139093515815, 29.963091227926338 ], [ -95.688532094368625, 29.96340122766976 ], [ -95.688950093798013, 29.963798227933648 ], [ -95.689305093742021, 29.964189227615034 ], [ -95.689520094622168, 29.964491227979675 ], [ -95.689546093852385, 29.964527227595962 ], [ -95.689594094009806, 29.964600227529072 ], [ -95.689800094787927, 29.964914227618046 ], [ -95.690081094193886, 29.965403228326533 ], [ -95.691001094357375, 29.967443228498556 ], [ -95.691445094998301, 29.968316228913228 ], [ -95.691955095274864, 29.969104228987788 ], [ -95.692221095691409, 29.969450228900335 ], [ -95.692691094966321, 29.970018228823811 ], [ -95.692906095751368, 29.970236229255306 ], [ -95.693396095935753, 29.970710229142057 ], [ -95.693906095673668, 29.971148229125191 ], [ -95.694270095651959, 29.971412228615986 ], [ -95.694584096323737, 29.971639229011334 ], [ -95.694724095895253, 29.971727228648646 ], [ -95.694769096369569, 29.971755228996187 ], [ -95.695303096159591, 29.972090229426723 ], [ -95.695886096688881, 29.97239222908626 ], [ -95.696529096617127, 29.972670229002205 ], [ -95.697620097085704, 29.973073229418379 ], [ -95.699301097347671, 29.973481229577217 ], [ -95.699504097286024, 29.973530228962943 ], [ -95.69980409686876, 29.973602229220788 ], [ -95.699971097217983, 29.973643229456712 ], [ -95.703008097699978, 29.974379229216488 ], [ -95.703406098654682, 29.974464229260644 ], [ -95.703767097980531, 29.974542229639649 ], [ -95.704693098389924, 29.974741228971705 ], [ -95.705204098812274, 29.974873229291795 ], [ -95.705865099346568, 29.975045229372558 ], [ -95.706743098726804, 29.975287229210046 ], [ -95.706786098982519, 29.975301229551572 ], [ -95.707911099843528, 29.975666229840797 ], [ -95.708989099532118, 29.976051229347885 ], [ -95.709526100264213, 29.976234229120976 ], [ -95.710404099668295, 29.97654222976735 ], [ -95.711094100505264, 29.976830229803301 ], [ -95.716353101789892, 29.978809229903 ], [ -95.716964101877551, 29.979046229371107 ], [ -95.717053102356047, 29.979081229846173 ], [ -95.717194101792245, 29.979136229621332 ], [ -95.720147102691854, 29.98029423009903 ], [ -95.720222102304689, 29.980148230020621 ], [ -95.720281102903968, 29.980021229927956 ], [ -95.720353102768328, 29.979865229651878 ], [ -95.720376102857955, 29.979814230100754 ], [ -95.720388102634232, 29.979788229893114 ], [ -95.720418102469509, 29.979724229826882 ], [ -95.720456103052712, 29.979576229533546 ], [ -95.720462102372196, 29.979411229414996 ], [ -95.7204431029066, 29.978817229247145 ], [ -95.720448102397867, 29.977542229108579 ], [ -95.720397102381312, 29.975943228786065 ], [ -95.720299101859936, 29.968187227412585 ], [ -95.720216102135311, 29.965103227178428 ], [ -95.720228101869125, 29.964476226501709 ], [ -95.720184102390192, 29.963031226704487 ], [ -95.720215102214681, 29.96288822626699 ], [ -95.720228102495454, 29.962761226655608 ], [ -95.720228101897717, 29.962558226056537 ], [ -95.720189101734505, 29.961920226402494 ], [ -95.720151101851272, 29.960711225573021 ], [ -95.720044102022584, 29.960689225568089 ], [ -95.719861102289599, 29.960618226163994 ], [ -95.719577101853758, 29.960486226318462 ], [ -95.719280101393124, 29.960332225825802 ], [ -95.718970101822279, 29.960030225906145 ], [ -95.718642101787268, 29.959640225362918 ], [ -95.71829510182387, 29.959447226126777 ], [ -95.718257101297311, 29.959436226026838 ], [ -95.717760100944844, 29.959195225909689 ], [ -95.717773101297553, 29.95917822592606 ], [ -95.717882101628973, 29.958986226064781 ], [ -95.717924100990771, 29.95888722603171 ], [ -95.717959101027887, 29.958758225334794 ], [ -95.717976101417122, 29.958336225480117 ], [ -95.717975101636512, 29.957813225509319 ], [ -95.71795710101226, 29.95758122566421 ], [ -95.717952101379367, 29.957041225167831 ], [ -95.717939100808351, 29.956692224994782 ], [ -95.717946100883296, 29.956625225157371 ], [ -95.717976101667091, 29.956551225223155 ], [ -95.71804210080245, 29.956504225376833 ], [ -95.718154101011081, 29.956485225475152 ], [ -95.718398101614667, 29.95647922521059 ], [ -95.719017101492469, 29.956474225038182 ], [ -95.719168101333494, 29.956376224690842 ], [ -95.719060101339167, 29.956262224997154 ], [ -95.718784100923585, 29.955971225329701 ], [ -95.718371101256878, 29.955266224529588 ], [ -95.718142101160169, 29.954503224773038 ], [ -95.718114101551862, 29.954030224250403 ], [ -95.718100100957713, 29.95378722434624 ], [ -95.718087101181283, 29.953558224605001 ], [ -95.718165101051071, 29.952764224279047 ], [ -95.718326101515174, 29.952142223854509 ], [ -95.718437101521658, 29.951840224468739 ], [ -95.718568100730707, 29.951545223739913 ], [ -95.718804101059007, 29.951112223921395 ], [ -95.71907210134971, 29.950688224126424 ], [ -95.719349100748104, 29.950261223442475 ], [ -95.719413101337807, 29.950155224212306 ], [ -95.719528101626665, 29.949967224064427 ], [ -95.719682101681315, 29.949663223650781 ], [ -95.71981210099149, 29.949351223262912 ], [ -95.719869101198142, 29.949193223866295 ], [ -95.719924101138417, 29.949034223399767 ], [ -95.719977101711194, 29.948875223700032 ], [ -95.720029100897662, 29.948717223886931 ], [ -95.720079100876575, 29.948558223035427 ], [ -95.7201241011946, 29.948399223668289 ], [ -95.720199101241974, 29.948079223031645 ], [ -95.720229101126364, 29.947916223562242 ], [ -95.720252101152496, 29.947755223676626 ], [ -95.72051010109854, 29.947742223551632 ], [ -95.721565101647272, 29.947712223073164 ], [ -95.72371510247666, 29.947655223069358 ], [ -95.72429210201669, 29.947648222771793 ], [ -95.724370102809388, 29.947648223326077 ], [ -95.725045102965979, 29.947633223534051 ], [ -95.725687102924184, 29.947620223319724 ], [ -95.725896102655568, 29.947594223528604 ], [ -95.726158102999747, 29.947562223367832 ], [ -95.726628102895816, 29.947480223407457 ], [ -95.727080103033472, 29.947365223245473 ], [ -95.727576103314675, 29.947200223340587 ], [ -95.727933103644816, 29.947060223208577 ], [ -95.728321103597182, 29.94688222281648 ], [ -95.728925103729409, 29.946653223033028 ], [ -95.729504103858076, 29.946500223063296 ], [ -95.730007103513657, 29.946419222890253 ], [ -95.72992410345006, 29.946069222609278 ], [ -95.729892103344923, 29.945808222233861 ], [ -95.729905104176865, 29.945439222472782 ], [ -95.729968103258869, 29.944841222366669 ], [ -95.730000104048827, 29.943995222635223 ], [ -95.730007103176035, 29.943811222165007 ], [ -95.729956103200195, 29.943512222444848 ], [ -95.729771103236473, 29.942964222197414 ], [ -95.729719103726467, 29.942814221588968 ], [ -95.729625103678345, 29.942544222200244 ], [ -95.729549103822237, 29.942150221637313 ], [ -95.729568103848962, 29.941819221664222 ], [ -95.72965710354822, 29.941476221900547 ], [ -95.729962104026114, 29.940973221451443 ], [ -95.730153103591945, 29.940623221070727 ], [ -95.73022910336951, 29.940366221709009 ], [ -95.730241103558143, 29.939945221759512 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 918, "Tract": "48201543008", "Area_SqMi": 0.90854930330976647, "total_2009": 39, "total_2010": 40, "total_2011": 317, "total_2012": 336, "total_2013": 378, "total_2014": 380, "total_2015": 388, "total_2016": 482, "total_2017": 608, "total_2018": 715, "total_2019": 743, "total_2020": 587, "age1": 274, "age2": 349, "age3": 152, "earn1": 261, "earn2": 299, "earn3": 215, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 50, "naics_s05": 0, "naics_s06": 8, "naics_s07": 229, "naics_s08": 1, "naics_s09": 1, "naics_s10": 29, "naics_s11": 3, "naics_s12": 57, "naics_s13": 0, "naics_s14": 25, "naics_s15": 36, "naics_s16": 122, "naics_s17": 41, "naics_s18": 155, "naics_s19": 18, "naics_s20": 0, "race1": 463, "race2": 142, "race3": 6, "race4": 151, "race5": 2, "race6": 11, "ethnicity1": 569, "ethnicity2": 206, "edu1": 103, "edu2": 139, "edu3": 162, "edu4": 97, "Shape_Length": 20609.870314832046, "Shape_Area": 25328799.578602798, "total_2021": 714, "total_2022": 775 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.697431092758663, 29.886398211394496 ], [ -95.697364092589041, 29.881819210908645 ], [ -95.697355092436609, 29.881539210579497 ], [ -95.697349092365684, 29.881122210644257 ], [ -95.697348092428612, 29.881063210119862 ], [ -95.69733109207651, 29.88000720993557 ], [ -95.697340092584412, 29.879864210680491 ], [ -95.696952092688747, 29.879867209923535 ], [ -95.696400092354892, 29.879871210679852 ], [ -95.693316090961474, 29.879890210059919 ], [ -95.69121609079582, 29.879904210122373 ], [ -95.688874090013599, 29.879916210646876 ], [ -95.688464089896272, 29.879919211015771 ], [ -95.686623089978184, 29.879930211046069 ], [ -95.685356089061017, 29.879938210470872 ], [ -95.683303088944939, 29.879946210648118 ], [ -95.68330408928253, 29.880393211299946 ], [ -95.683289089260768, 29.880719210578551 ], [ -95.6832870893803, 29.880998210775168 ], [ -95.683299088579929, 29.882283211262255 ], [ -95.683300088565105, 29.882454210945209 ], [ -95.683306089356165, 29.883015211036604 ], [ -95.683309088736422, 29.883178211062067 ], [ -95.683309088696802, 29.883206211224074 ], [ -95.683315088589069, 29.883725211370567 ], [ -95.6833280891166, 29.884714211734615 ], [ -95.683340088871219, 29.885597211972918 ], [ -95.683356089070415, 29.886992212410011 ], [ -95.683371088832374, 29.88818521261997 ], [ -95.683388089315144, 29.889410212428853 ], [ -95.683390089715246, 29.889689212351314 ], [ -95.683399088946885, 29.890581213121774 ], [ -95.683432089431449, 29.893359213260933 ], [ -95.683444089252745, 29.893924213555302 ], [ -95.683454090024995, 29.894027213389094 ], [ -95.683485089303929, 29.894223213753005 ], [ -95.683540089804893, 29.894548213343846 ], [ -95.683748089660128, 29.895759213775815 ], [ -95.683963089252046, 29.896907214477281 ], [ -95.68532609052302, 29.896636213791748 ], [ -95.685542090022096, 29.896594213700443 ], [ -95.686528089976775, 29.89620021406585 ], [ -95.687317090982418, 29.895937214123769 ], [ -95.68912309099386, 29.895674213818872 ], [ -95.689219090839813, 29.895674214156291 ], [ -95.691259091960859, 29.895674213326181 ], [ -95.691686092074434, 29.895674214143799 ], [ -95.693807091842075, 29.895610213702312 ], [ -95.693854092440631, 29.895609213725965 ], [ -95.694749092954396, 29.8956102137427 ], [ -95.695458092831061, 29.895572213835454 ], [ -95.696037092398214, 29.895491213896886 ], [ -95.696679092893802, 29.895337213186277 ], [ -95.697058092789945, 29.895229213261516 ], [ -95.697072092524195, 29.894620213179614 ], [ -95.696940092323544, 29.886606211772055 ], [ -95.696937092337478, 29.886398211237143 ], [ -95.697431092758663, 29.886398211394496 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 919, "Tract": "48201553101", "Area_SqMi": 0.73252497320939935, "total_2009": 294, "total_2010": 245, "total_2011": 235, "total_2012": 140, "total_2013": 178, "total_2014": 227, "total_2015": 257, "total_2016": 259, "total_2017": 237, "total_2018": 214, "total_2019": 261, "total_2020": 260, "age1": 27, "age2": 127, "age3": 75, "earn1": 41, "earn2": 80, "earn3": 108, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 40, "naics_s06": 30, "naics_s07": 0, "naics_s08": 0, "naics_s09": 2, "naics_s10": 0, "naics_s11": 23, "naics_s12": 10, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 55, "naics_s17": 0, "naics_s18": 25, "naics_s19": 21, "naics_s20": 0, "race1": 161, "race2": 46, "race3": 4, "race4": 12, "race5": 0, "race6": 6, "ethnicity1": 159, "ethnicity2": 70, "edu1": 45, "edu2": 45, "edu3": 57, "edu4": 55, "Shape_Length": 22804.843826477281, "Shape_Area": 20421542.524056453, "total_2021": 266, "total_2022": 229 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476378042859295, 30.024376247474674 ], [ -95.476332042293635, 30.024303247446461 ], [ -95.475714042427569, 30.023337247268479 ], [ -95.475507042437528, 30.023040247137093 ], [ -95.475370042310473, 30.022866247013059 ], [ -95.475231042491203, 30.022703247083104 ], [ -95.47492004210882, 30.022374247218064 ], [ -95.47453604157819, 30.021991246647428 ], [ -95.474304041698389, 30.02174424668058 ], [ -95.474032041429453, 30.021409246866515 ], [ -95.47388504192287, 30.021212246928823 ], [ -95.473831041865765, 30.021129246691768 ], [ -95.473677041880322, 30.020928246701473 ], [ -95.473626042074642, 30.02084424654543 ], [ -95.473258041312079, 30.020325246930671 ], [ -95.47244804140486, 30.01916624621731 ], [ -95.472193040860006, 30.018800246537971 ], [ -95.471624040564762, 30.017982246283477 ], [ -95.471612040665747, 30.017964246212678 ], [ -95.471409041308632, 30.017659245820447 ], [ -95.471231040738928, 30.017396246525866 ], [ -95.471170040754657, 30.017325245806934 ], [ -95.471119040720694, 30.017234245967707 ], [ -95.471024041224169, 30.017098246282426 ], [ -95.471004040490115, 30.017070245822776 ], [ -95.470961040383898, 30.016992246346394 ], [ -95.47088004072495, 30.016912245901818 ], [ -95.470839040284815, 30.016832245563162 ], [ -95.470762041044466, 30.016725245989548 ], [ -95.470034040372767, 30.015719245349722 ], [ -95.470025040090476, 30.015706245633602 ], [ -95.469951040113202, 30.015605246070535 ], [ -95.469521040082554, 30.015017245475622 ], [ -95.469159040287636, 30.014502245925673 ], [ -95.469025040587397, 30.014580245946341 ], [ -95.468644040212737, 30.014800245971308 ], [ -95.468576040255655, 30.014840245679828 ], [ -95.468480039567453, 30.014890245363535 ], [ -95.468116040045146, 30.015085245585144 ], [ -95.468030039597522, 30.015129245830508 ], [ -95.467927039592539, 30.015169245666421 ], [ -95.467801039611999, 30.015200245905824 ], [ -95.467611040099854, 30.015231245656853 ], [ -95.46747403976515, 30.01526324612669 ], [ -95.467324039810634, 30.015325245413649 ], [ -95.466570039578002, 30.015737245516096 ], [ -95.4664990393197, 30.015644245619054 ], [ -95.466489039445335, 30.015580245821642 ], [ -95.466358039853546, 30.01544824627522 ], [ -95.466211039556612, 30.015241245431962 ], [ -95.46570103892256, 30.015513245569625 ], [ -95.465071038852685, 30.015864245564455 ], [ -95.464911039043002, 30.015957245924199 ], [ -95.464724038841936, 30.016087245875383 ], [ -95.464482038918732, 30.016291245826508 ], [ -95.46431403893979, 30.016480246231211 ], [ -95.464314038769245, 30.016510245854359 ], [ -95.464302039589342, 30.016525245775089 ], [ -95.464203039124371, 30.016458246384076 ], [ -95.464112038540961, 30.016412246367693 ], [ -95.463926039062869, 30.016258246239374 ], [ -95.463769039317043, 30.016098246203224 ], [ -95.463604038763364, 30.015889246001763 ], [ -95.463086038774435, 30.015181245608439 ], [ -95.462879038592689, 30.015296245586601 ], [ -95.462696038357777, 30.015414246426506 ], [ -95.462456039035459, 30.015598245809425 ], [ -95.461165038224408, 30.016703246430669 ], [ -95.461032038236297, 30.016798245958643 ], [ -95.460890037941255, 30.016887246249386 ], [ -95.460811037748499, 30.01692524647498 ], [ -95.460500037681555, 30.017108246596131 ], [ -95.460225037770286, 30.017256246057993 ], [ -95.460142037719152, 30.017318246374188 ], [ -95.460120038253393, 30.017398246438862 ], [ -95.460158037618783, 30.017485246426151 ], [ -95.460300038160781, 30.01768524644822 ], [ -95.46027803831241, 30.017729246581418 ], [ -95.460230037792272, 30.01776124612163 ], [ -95.459697037469184, 30.018054246290404 ], [ -95.45955503800505, 30.018120246823639 ], [ -95.459149037809667, 30.018347247110665 ], [ -95.459082038313028, 30.018366246716383 ], [ -95.459018037967184, 30.018407246976746 ], [ -95.458948038129179, 30.018431247106225 ], [ -95.458855037573613, 30.018503247096199 ], [ -95.458716037261709, 30.018580246921388 ], [ -95.458673037759056, 30.018532246600312 ], [ -95.458638037814353, 30.018493246363651 ], [ -95.458441037718757, 30.018219246998914 ], [ -95.45823503746567, 30.017982246496587 ], [ -95.457919037628415, 30.017547246618285 ], [ -95.457093037637037, 30.018007246464546 ], [ -95.457266037492161, 30.018249247091582 ], [ -95.457337037689911, 30.018326246657015 ], [ -95.457444036963494, 30.018481247021725 ], [ -95.457502037176312, 30.018552246380374 ], [ -95.457539037564558, 30.018617246783499 ], [ -95.457630037180522, 30.01874424703616 ], [ -95.457941037420582, 30.019177247207587 ], [ -95.457981038077222, 30.019238246941729 ], [ -95.458002037169663, 30.019288247001327 ], [ -95.458050037384581, 30.019328247199056 ], [ -95.458146037468993, 30.019462246526988 ], [ -95.458324037629907, 30.019698247097335 ], [ -95.458367037695467, 30.019783246588823 ], [ -95.458560037589606, 30.020033246643649 ], [ -95.458602038200482, 30.020075247418777 ], [ -95.458643038014301, 30.020142247366504 ], [ -95.458795037512274, 30.020362247028157 ], [ -95.458905037644797, 30.020497247424327 ], [ -95.458995038143442, 30.020634246894694 ], [ -95.459041037613446, 30.020692247165918 ], [ -95.459103037770248, 30.020739247101936 ], [ -95.459129038067232, 30.020814247255604 ], [ -95.459151037983844, 30.020844247238351 ], [ -95.459428038393085, 30.021216246915952 ], [ -95.459651037873186, 30.021535247406618 ], [ -95.460008038227997, 30.022033247656427 ], [ -95.46015203794046, 30.022219247018604 ], [ -95.460497038000085, 30.022683247472827 ], [ -95.460665038515671, 30.022922247336989 ], [ -95.461157038486746, 30.02359924787876 ], [ -95.461671038781745, 30.024299248173666 ], [ -95.461819038774593, 30.024508248033136 ], [ -95.461913038401889, 30.024627247659776 ], [ -95.461951038960564, 30.024693247684706 ], [ -95.462170038972502, 30.024985247661434 ], [ -95.461896039186371, 30.025138248297527 ], [ -95.461618038792054, 30.025252247766868 ], [ -95.460918038601264, 30.02545924819967 ], [ -95.46072603866115, 30.025523247940182 ], [ -95.460635038739852, 30.025538247779764 ], [ -95.459775038191765, 30.025814248247471 ], [ -95.459715038815432, 30.025843248120054 ], [ -95.459384037931017, 30.025991247940574 ], [ -95.45907603846122, 30.026161248530478 ], [ -95.46021603811387, 30.027743248180517 ], [ -95.460407039041613, 30.028004249034986 ], [ -95.460491038180606, 30.02809724840402 ], [ -95.460506038392538, 30.028144248520253 ], [ -95.460570039160231, 30.02822124830087 ], [ -95.460774038248246, 30.028505248988324 ], [ -95.461192038816009, 30.029135249168093 ], [ -95.461330038939252, 30.029343249172797 ], [ -95.461394039199362, 30.029414249117366 ], [ -95.461933038665663, 30.030180249387445 ], [ -95.462588038962082, 30.031074249555612 ], [ -95.462713038842452, 30.031223248750631 ], [ -95.462753039112499, 30.03128924950995 ], [ -95.462821038958097, 30.031251249108632 ], [ -95.463157039977261, 30.031747249146374 ], [ -95.463541039206305, 30.032912249882941 ], [ -95.463553039427154, 30.032971249590808 ], [ -95.463678039273347, 30.033002249959267 ], [ -95.464048040131615, 30.032852249438466 ], [ -95.464341040041731, 30.032663249127793 ], [ -95.464545039820408, 30.032532249251013 ], [ -95.464867039818586, 30.03199324885836 ], [ -95.464959039528836, 30.031756249487159 ], [ -95.465092039935925, 30.031414249315784 ], [ -95.465171039449729, 30.030452248913168 ], [ -95.465391040489465, 30.029989248469089 ], [ -95.465678040054883, 30.029829248472151 ], [ -95.466043040122017, 30.02953824863113 ], [ -95.466304040416816, 30.029259248902058 ], [ -95.467034040034008, 30.028679248616079 ], [ -95.467200040445974, 30.028480248204691 ], [ -95.467266040447115, 30.028031248562449 ], [ -95.46716604037934, 30.02764724818784 ], [ -95.467190040050085, 30.027290248303217 ], [ -95.467300040767427, 30.026833247964305 ], [ -95.467512039861802, 30.026527247900336 ], [ -95.467625039971281, 30.026424248480257 ], [ -95.467972040667092, 30.026324247898565 ], [ -95.468542040690181, 30.026282248205948 ], [ -95.469069040298379, 30.026330248150153 ], [ -95.469487041298109, 30.026480248347138 ], [ -95.469916040916544, 30.026750247956691 ], [ -95.470509041524878, 30.026854248373013 ], [ -95.470760040930543, 30.026899248475662 ], [ -95.471125041716505, 30.027237248227852 ], [ -95.471375041637543, 30.027352248204231 ], [ -95.471814041066125, 30.027416248137182 ], [ -95.471980041183201, 30.027441247790605 ], [ -95.472537041473686, 30.027387248426702 ], [ -95.4727660420333, 30.027256248305171 ], [ -95.472776042194539, 30.027251247974018 ], [ -95.473636042124198, 30.026598247734032 ], [ -95.474085042139208, 30.026259247728987 ], [ -95.474468041860831, 30.025890247929024 ], [ -95.475418041814009, 30.024769247209058 ], [ -95.476003042554055, 30.024507247569517 ], [ -95.476130042375061, 30.024462247093776 ], [ -95.476378042859295, 30.024376247474674 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 920, "Tract": "48201541009", "Area_SqMi": 0.85238024949736579, "total_2009": 236, "total_2010": 191, "total_2011": 109, "total_2012": 102, "total_2013": 125, "total_2014": 173, "total_2015": 130, "total_2016": 103, "total_2017": 93, "total_2018": 98, "total_2019": 124, "total_2020": 134, "age1": 45, "age2": 108, "age3": 28, "earn1": 34, "earn2": 56, "earn3": 91, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 54, "naics_s05": 1, "naics_s06": 8, "naics_s07": 0, "naics_s08": 7, "naics_s09": 12, "naics_s10": 6, "naics_s11": 25, "naics_s12": 16, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 37, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 139, "race2": 23, "race3": 3, "race4": 14, "race5": 0, "race6": 2, "ethnicity1": 90, "ethnicity2": 91, "edu1": 38, "edu2": 37, "edu3": 36, "edu4": 25, "Shape_Length": 21044.777193666174, "Shape_Area": 23762902.492609449, "total_2021": 144, "total_2022": 181 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.668672086389861, 29.907775216592068 ], [ -95.669616086017413, 29.905849216836984 ], [ -95.668086086421553, 29.905521216844502 ], [ -95.667824086294075, 29.905475216553725 ], [ -95.6676910858083, 29.90545321666805 ], [ -95.667596086232706, 29.90544121655828 ], [ -95.667277086364493, 29.905404216194004 ], [ -95.666991085727005, 29.905379216448718 ], [ -95.666697085830322, 29.90536921648782 ], [ -95.666396085563761, 29.905370216566045 ], [ -95.665948085491365, 29.905391216420352 ], [ -95.665509085709616, 29.905430217022907 ], [ -95.665114084977972, 29.905478216915117 ], [ -95.664714085295302, 29.905541216497145 ], [ -95.66465008548461, 29.905554216644084 ], [ -95.664410084901562, 29.905605216522865 ], [ -95.664051085533629, 29.905695217003135 ], [ -95.66350008461643, 29.905854216458014 ], [ -95.663218084808719, 29.905949216761069 ], [ -95.662942084335967, 29.906051216991031 ], [ -95.662667084553732, 29.906165216706036 ], [ -95.662392084207241, 29.906290217150051 ], [ -95.662262084446908, 29.906356216555064 ], [ -95.66217008446435, 29.906403217121543 ], [ -95.661468084190417, 29.90676321717638 ], [ -95.661065084295686, 29.906955217256705 ], [ -95.660642084702602, 29.907139217325202 ], [ -95.660352084337902, 29.907255217374662 ], [ -95.660058083633473, 29.907363217147743 ], [ -95.659990083687831, 29.907386217000909 ], [ -95.659901084017946, 29.907416216999199 ], [ -95.659457084459063, 29.907557217192039 ], [ -95.65899808402348, 29.907684217448448 ], [ -95.658689083335801, 29.907758216885394 ], [ -95.658372084067807, 29.907825217473452 ], [ -95.658244083213546, 29.907852217203033 ], [ -95.657897083581673, 29.907913217645497 ], [ -95.657612083712095, 29.907956217327083 ], [ -95.657155083398834, 29.908011217041754 ], [ -95.656711083620579, 29.908049217154094 ], [ -95.656509083081332, 29.908060217772729 ], [ -95.65644208361033, 29.908064217521556 ], [ -95.655907083468549, 29.908081217812416 ], [ -95.655219083006685, 29.908086217446463 ], [ -95.655143082947163, 29.908087217751902 ], [ -95.655078082593235, 29.908087217761768 ], [ -95.653681082346864, 29.908099217592614 ], [ -95.653590082315432, 29.908100217558218 ], [ -95.652301082462884, 29.908110217171636 ], [ -95.651793081677013, 29.908109217750543 ], [ -95.650960081580706, 29.908092217990522 ], [ -95.650622082176767, 29.908077217487616 ], [ -95.650199081921173, 29.908039217311753 ], [ -95.649936081247318, 29.908004218022697 ], [ -95.64962808175359, 29.907948217703058 ], [ -95.649498081838203, 29.907919217572275 ], [ -95.649354081908967, 29.908418217424952 ], [ -95.649089081403417, 29.909373217844507 ], [ -95.649033081404596, 29.909624218140689 ], [ -95.648987080964019, 29.909901218155014 ], [ -95.648965080945842, 29.910103217993523 ], [ -95.648955080985331, 29.910277218553887 ], [ -95.648941081728978, 29.910548218564639 ], [ -95.648942081626188, 29.910704217805268 ], [ -95.64895808178342, 29.910962218139936 ], [ -95.648990081552995, 29.911238218784142 ], [ -95.649038081690378, 29.911522218461585 ], [ -95.649242081226362, 29.91258221830801 ], [ -95.64927308164593, 29.91279421847862 ], [ -95.649299081323264, 29.913095218886212 ], [ -95.649299081526536, 29.913455218539838 ], [ -95.649286081454747, 29.91373821840476 ], [ -95.649256081474377, 29.914003219171494 ], [ -95.649227081397171, 29.914184219260296 ], [ -95.649180081513364, 29.914440219425547 ], [ -95.64913108126224, 29.914645219214233 ], [ -95.649064081224992, 29.914861219437963 ], [ -95.648941081684015, 29.91519721929367 ], [ -95.648894081519074, 29.915313218763785 ], [ -95.648775081957979, 29.915599219043497 ], [ -95.6484150813383, 29.916463219351588 ], [ -95.648230081545307, 29.916871219756445 ], [ -95.648122081269577, 29.91707221938934 ], [ -95.647964081003607, 29.917321219228739 ], [ -95.647908081209664, 29.917402219755836 ], [ -95.648184082035087, 29.91748222004966 ], [ -95.648735082074651, 29.917605219655712 ], [ -95.649209081496295, 29.917673219627734 ], [ -95.650058082318196, 29.917725219988327 ], [ -95.650318081710836, 29.917725219793017 ], [ -95.651938082056446, 29.917714219800612 ], [ -95.652182082867853, 29.917709219271448 ], [ -95.653415082678308, 29.917736219906828 ], [ -95.653549083207153, 29.917745219206619 ], [ -95.653631083463793, 29.917745219438419 ], [ -95.654123083363345, 29.917743219668569 ], [ -95.654941083172744, 29.917740219461884 ], [ -95.6550350829351, 29.917739219120129 ], [ -95.655446083555489, 29.917738219351001 ], [ -95.655899083206052, 29.917736219581101 ], [ -95.655958083579549, 29.917736219352385 ], [ -95.656820084000159, 29.91773321911608 ], [ -95.657119083613338, 29.91773221955674 ], [ -95.658043084178317, 29.91772821949861 ], [ -95.658803084539812, 29.917725219127167 ], [ -95.665014085719065, 29.917625219176209 ], [ -95.668428086991682, 29.917631219282608 ], [ -95.668431086976355, 29.917518218996634 ], [ -95.668431087085494, 29.916236218357849 ], [ -95.668431086497819, 29.915125218014467 ], [ -95.668518086236006, 29.913845218028598 ], [ -95.66844808610881, 29.913133217691652 ], [ -95.668118086273438, 29.911967217395997 ], [ -95.667984086441038, 29.911106217312494 ], [ -95.667971085810194, 29.910506217784658 ], [ -95.668076086412199, 29.91010921762048 ], [ -95.668134086044802, 29.909432217194457 ], [ -95.66850908653241, 29.908133216796923 ], [ -95.668672086389861, 29.907775216592068 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 921, "Tract": "48201522001", "Area_SqMi": 0.44135135568597911, "total_2009": 61, "total_2010": 82, "total_2011": 72, "total_2012": 133, "total_2013": 125, "total_2014": 169, "total_2015": 161, "total_2016": 164, "total_2017": 156, "total_2018": 171, "total_2019": 196, "total_2020": 152, "age1": 30, "age2": 72, "age3": 39, "earn1": 28, "earn2": 44, "earn3": 69, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 1, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 6, "naics_s12": 9, "naics_s13": 0, "naics_s14": 22, "naics_s15": 91, "naics_s16": 9, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 112, "race2": 24, "race3": 2, "race4": 3, "race5": 0, "race6": 0, "ethnicity1": 100, "ethnicity2": 41, "edu1": 22, "edu2": 22, "edu3": 28, "edu4": 39, "Shape_Length": 15779.014698177827, "Shape_Area": 12304120.416130457, "total_2021": 124, "total_2022": 141 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.545328051887708, 29.832244206211886 ], [ -95.545320051512746, 29.830517205032521 ], [ -95.545308051655837, 29.827736205312 ], [ -95.545293051271571, 29.826891204415837 ], [ -95.54528205105737, 29.825955204303725 ], [ -95.545271051239098, 29.824997204654835 ], [ -95.545263051178011, 29.824224203982361 ], [ -95.545270051063909, 29.823818204063439 ], [ -95.545268051285504, 29.823351204069294 ], [ -95.545267051469793, 29.822713204300886 ], [ -95.544090050686705, 29.822704203597873 ], [ -95.543418050595321, 29.822699204025561 ], [ -95.541506049549923, 29.822693203969475 ], [ -95.541299049953565, 29.822699204043957 ], [ -95.541103050278608, 29.822694204031368 ], [ -95.540532050081836, 29.82269620375471 ], [ -95.539745049482107, 29.822690204358643 ], [ -95.539122049827654, 29.822687204172468 ], [ -95.538399048934167, 29.822682204314216 ], [ -95.537591049124629, 29.822633203959374 ], [ -95.536899049326351, 29.822484204176085 ], [ -95.536895049291985, 29.824017204442132 ], [ -95.536893049169237, 29.824952204985259 ], [ -95.536892048917736, 29.825228204635202 ], [ -95.53689304913452, 29.82581720444302 ], [ -95.536889048523662, 29.826423204723234 ], [ -95.536886048680657, 29.826881205424467 ], [ -95.536881048840996, 29.827524204757847 ], [ -95.533854048607381, 29.827565205062019 ], [ -95.531787047897183, 29.827586205757957 ], [ -95.531525047279175, 29.827595205644126 ], [ -95.531539047244266, 29.828332205643555 ], [ -95.531538047663474, 29.829072205891098 ], [ -95.531545047369434, 29.829821206113824 ], [ -95.53155904799263, 29.83056720554735 ], [ -95.531548047977083, 29.831313206225456 ], [ -95.531557048401922, 29.8317422057968 ], [ -95.531571047657295, 29.832431206759161 ], [ -95.531622048326241, 29.832435206639822 ], [ -95.533134048325564, 29.832413206203555 ], [ -95.533762048336214, 29.832403206388726 ], [ -95.535601048472529, 29.832374206553126 ], [ -95.536849049251501, 29.832359205842991 ], [ -95.537746049152773, 29.832347205655513 ], [ -95.539059050328206, 29.83233320643944 ], [ -95.542166050706214, 29.832289206275085 ], [ -95.542766051258511, 29.832277205775124 ], [ -95.543493051248021, 29.832261205723231 ], [ -95.545328051887708, 29.832244206211886 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 922, "Tract": "48201540904", "Area_SqMi": 1.2039756909027737, "total_2009": 2983, "total_2010": 2735, "total_2011": 2858, "total_2012": 2956, "total_2013": 3053, "total_2014": 3192, "total_2015": 3108, "total_2016": 3292, "total_2017": 3207, "total_2018": 3284, "total_2019": 3387, "total_2020": 3043, "age1": 1036, "age2": 1207, "age3": 489, "earn1": 850, "earn2": 1020, "earn3": 862, "naics_s01": 3, "naics_s02": 4, "naics_s03": 0, "naics_s04": 81, "naics_s05": 0, "naics_s06": 10, "naics_s07": 354, "naics_s08": 13, "naics_s09": 1, "naics_s10": 408, "naics_s11": 81, "naics_s12": 103, "naics_s13": 0, "naics_s14": 103, "naics_s15": 65, "naics_s16": 240, "naics_s17": 149, "naics_s18": 1023, "naics_s19": 94, "naics_s20": 0, "race1": 2030, "race2": 469, "race3": 24, "race4": 148, "race5": 3, "race6": 58, "ethnicity1": 1828, "ethnicity2": 904, "edu1": 381, "edu2": 442, "edu3": 501, "edu4": 372, "Shape_Length": 26482.118902815073, "Shape_Area": 33564781.63738016, "total_2021": 3079, "total_2022": 2732 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.64531907941462, 29.881386212781802 ], [ -95.64533907916308, 29.88095021267889 ], [ -95.645319079149573, 29.880239211783081 ], [ -95.645319079481936, 29.880117212219211 ], [ -95.64532007929256, 29.879862212256182 ], [ -95.645320078733633, 29.879617212112919 ], [ -95.645320078839944, 29.879280212013462 ], [ -95.645320078974635, 29.879214211518555 ], [ -95.64519907884312, 29.8792152122763 ], [ -95.645132079447762, 29.879216212128103 ], [ -95.645012078788781, 29.879217211535519 ], [ -95.644953078804349, 29.879217211821182 ], [ -95.644934079110953, 29.879217212343526 ], [ -95.644673079196551, 29.879219211735474 ], [ -95.644474078575314, 29.879221211576791 ], [ -95.643808078897479, 29.879226211685211 ], [ -95.642376078557902, 29.879238212209529 ], [ -95.641571077797678, 29.879244211827174 ], [ -95.641363077812414, 29.879246211936657 ], [ -95.640629078313665, 29.879252212492965 ], [ -95.640490077719491, 29.879253212276087 ], [ -95.639195077113399, 29.879263211978145 ], [ -95.638039076862242, 29.879274212111195 ], [ -95.637715077429021, 29.879277212357987 ], [ -95.637506076639866, 29.879279212098975 ], [ -95.637473077513206, 29.87927921179989 ], [ -95.637302077160641, 29.879281212314314 ], [ -95.636964077196552, 29.879284211837394 ], [ -95.635711076309533, 29.879296212732655 ], [ -95.634613076097907, 29.879307212618638 ], [ -95.634595076840768, 29.879307212403489 ], [ -95.634578075996728, 29.879307211958785 ], [ -95.633030076105968, 29.879321212233538 ], [ -95.631314075671455, 29.879348212898496 ], [ -95.631257075442264, 29.879349212299832 ], [ -95.62948207556083, 29.879383212163525 ], [ -95.628987075134958, 29.879393212627946 ], [ -95.628691074470709, 29.879399212419045 ], [ -95.628615074340601, 29.87940021252556 ], [ -95.628255075071294, 29.879407212456243 ], [ -95.628015075171618, 29.879412212784626 ], [ -95.627532074884769, 29.8794222125481 ], [ -95.626893074174077, 29.879434213014569 ], [ -95.626100073940293, 29.879450212741208 ], [ -95.625584074252814, 29.879438212952916 ], [ -95.625386074286368, 29.879433212913611 ], [ -95.625442074145695, 29.879881212984458 ], [ -95.625549074600414, 29.880112212461366 ], [ -95.625719073993963, 29.880618213310559 ], [ -95.625908074204318, 29.880860212906168 ], [ -95.626280074824081, 29.881262213038472 ], [ -95.626514074523527, 29.881515212868091 ], [ -95.626678074671617, 29.881630213177313 ], [ -95.62693607483952, 29.881718213113803 ], [ -95.627119074507121, 29.881768213275031 ], [ -95.62747907432211, 29.881768212953968 ], [ -95.627662074215507, 29.88174621313129 ], [ -95.627769074442057, 29.881707212707614 ], [ -95.628425074527911, 29.881350212621339 ], [ -95.628570074924724, 29.881323213115962 ], [ -95.628571075269235, 29.881417213358578 ], [ -95.628573075206944, 29.881668213478065 ], [ -95.628580074718769, 29.881767213089084 ], [ -95.628588074761765, 29.882252212703605 ], [ -95.628574074611919, 29.882324213016908 ], [ -95.628581074688526, 29.882433213137073 ], [ -95.628581075192031, 29.882539213210634 ], [ -95.62859807502069, 29.882625213400694 ], [ -95.628626075106993, 29.882860213373863 ], [ -95.62869507515272, 29.883330213163603 ], [ -95.628760075506193, 29.883589213440292 ], [ -95.628781075179504, 29.883666213427251 ], [ -95.628799075234539, 29.883759213770826 ], [ -95.628825075100906, 29.883847213585526 ], [ -95.628865075195208, 29.884047213469149 ], [ -95.628894075221311, 29.884254213483736 ], [ -95.628914075610751, 29.884367213622273 ], [ -95.628916074821248, 29.884462213638546 ], [ -95.628932075634069, 29.884564213801838 ], [ -95.628929074981528, 29.884671213353453 ], [ -95.628936075654394, 29.884781213425903 ], [ -95.628941075561997, 29.885186213399109 ], [ -95.628936074932838, 29.885476213467935 ], [ -95.628941075453284, 29.885964213945467 ], [ -95.628951074747164, 29.88614621351309 ], [ -95.628949075255008, 29.886265214400829 ], [ -95.628949074960346, 29.887111214470114 ], [ -95.628945075057501, 29.887369214438436 ], [ -95.62892407541824, 29.887672214631895 ], [ -95.62889707552813, 29.887904213938945 ], [ -95.628867075122614, 29.888086213872288 ], [ -95.628807075152025, 29.888360214657016 ], [ -95.628738075424749, 29.888624214419163 ], [ -95.628651075612382, 29.888873214202892 ], [ -95.628446075728789, 29.889357214639599 ], [ -95.628391074942158, 29.889455214753404 ], [ -95.628356074819379, 29.889564214340581 ], [ -95.62832807523553, 29.889687214521391 ], [ -95.628296075332045, 29.89001421449715 ], [ -95.628255075399878, 29.890347215115501 ], [ -95.628212074945878, 29.890594214445713 ], [ -95.628164075438463, 29.89090421486868 ], [ -95.628147075566062, 29.891132214936341 ], [ -95.628139075290235, 29.891286214586433 ], [ -95.628135074937688, 29.891644215506012 ], [ -95.628148075091559, 29.892666215572646 ], [ -95.628159075575695, 29.893484215682385 ], [ -95.62816407549299, 29.893776215501489 ], [ -95.628167075701441, 29.893973215531741 ], [ -95.627774075105108, 29.894010215250891 ], [ -95.627667075661435, 29.894054215207841 ], [ -95.627642074984422, 29.894087215754141 ], [ -95.627651075606195, 29.895048215540946 ], [ -95.627662075653376, 29.896127215828166 ], [ -95.627677075277134, 29.897667216113593 ], [ -95.627683075575462, 29.898281216107954 ], [ -95.627683075001329, 29.899359216738702 ], [ -95.627701075624501, 29.900211216685051 ], [ -95.627701075655395, 29.90046621672133 ], [ -95.62799907603258, 29.900464216602177 ], [ -95.628227075974721, 29.900462216973086 ], [ -95.629177075859843, 29.900456217019482 ], [ -95.6292540762866, 29.900463216427543 ], [ -95.629478076295626, 29.900491216657628 ], [ -95.629560076023836, 29.900498216903301 ], [ -95.629584076047323, 29.900500216877955 ], [ -95.629899076024728, 29.900536217032563 ], [ -95.63024107667971, 29.900595216788755 ], [ -95.630608076732258, 29.900675217037822 ], [ -95.630938076771898, 29.900769216712103 ], [ -95.631193076441562, 29.900850216712005 ], [ -95.631443077055849, 29.900942216678551 ], [ -95.631548076322971, 29.900984216972688 ], [ -95.631894076584771, 29.901136216832381 ], [ -95.632085077240518, 29.901231216852505 ], [ -95.632236077044936, 29.901310216554545 ], [ -95.632758076847125, 29.901610216786938 ], [ -95.632997076765818, 29.90175221702647 ], [ -95.633108076518965, 29.901805217270372 ], [ -95.63315807675589, 29.901821217000649 ], [ -95.633224077284382, 29.901842216723686 ], [ -95.633311076655531, 29.901912217409418 ], [ -95.633403077120192, 29.901967217379884 ], [ -95.633678076860718, 29.902107216836988 ], [ -95.63396107761001, 29.902236217349778 ], [ -95.63411507702962, 29.902294216951084 ], [ -95.634342077464595, 29.901940216843414 ], [ -95.634421077639388, 29.90181721706686 ], [ -95.634655077464828, 29.901452217294096 ], [ -95.634783077890319, 29.901249216933547 ], [ -95.635336077890486, 29.900422216268247 ], [ -95.635489077180452, 29.900168216112622 ], [ -95.635656077999002, 29.899906216268647 ], [ -95.635802077295153, 29.899678216504832 ], [ -95.635901077994987, 29.899521216645841 ], [ -95.636140077535273, 29.899146216425954 ], [ -95.637378077381626, 29.897202215703725 ], [ -95.637560078022574, 29.896910216164979 ], [ -95.638011077925142, 29.896210215699185 ], [ -95.639080077782722, 29.89455821555558 ], [ -95.63920507860206, 29.894363215620231 ], [ -95.639967078571971, 29.893186214858197 ], [ -95.640495078013856, 29.892369214489847 ], [ -95.640718078326358, 29.892023214803519 ], [ -95.640893078313383, 29.891753214274225 ], [ -95.641317078866209, 29.891097214730021 ], [ -95.64137307861094, 29.891009214364079 ], [ -95.641685078624263, 29.890527214246664 ], [ -95.641824079088522, 29.890312214758371 ], [ -95.641840078850009, 29.890288214257193 ], [ -95.642415078606248, 29.88939721401654 ], [ -95.642851079305458, 29.888707214103459 ], [ -95.643030078760802, 29.888423213632226 ], [ -95.643582078711404, 29.887511214120345 ], [ -95.643724078961853, 29.887240213798819 ], [ -95.643988078658538, 29.886698213346328 ], [ -95.64406607915592, 29.886528213176902 ], [ -95.644157078793029, 29.886331213709255 ], [ -95.644345079425648, 29.885903213259002 ], [ -95.644558078699077, 29.88531921305238 ], [ -95.644724079726345, 29.8848232128218 ], [ -95.64475107909206, 29.884743212740304 ], [ -95.644995078998448, 29.88388721330217 ], [ -95.645033079064973, 29.88375721329658 ], [ -95.645105079158071, 29.88340221252567 ], [ -95.645118078894825, 29.883341212481412 ], [ -95.64513807950452, 29.883210212688635 ], [ -95.645174079743526, 29.882987212365581 ], [ -95.645198079104404, 29.882832213021093 ], [ -95.645243079681393, 29.88240021295751 ], [ -95.645300079211836, 29.881747212573629 ], [ -95.64531907941462, 29.881386212781802 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 923, "Tract": "48201452701", "Area_SqMi": 0.55136020337184932, "total_2009": 166, "total_2010": 167, "total_2011": 188, "total_2012": 155, "total_2013": 151, "total_2014": 184, "total_2015": 226, "total_2016": 223, "total_2017": 220, "total_2018": 225, "total_2019": 243, "total_2020": 228, "age1": 26, "age2": 99, "age3": 71, "earn1": 39, "earn2": 75, "earn3": 82, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 4, "naics_s06": 60, "naics_s07": 90, "naics_s08": 6, "naics_s09": 0, "naics_s10": 2, "naics_s11": 5, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 17, "naics_s19": 4, "naics_s20": 0, "race1": 97, "race2": 16, "race3": 2, "race4": 77, "race5": 0, "race6": 4, "ethnicity1": 161, "ethnicity2": 35, "edu1": 39, "edu2": 27, "edu3": 54, "edu4": 50, "Shape_Length": 16580.497014503246, "Shape_Area": 15370978.807587987, "total_2021": 231, "total_2022": 196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.623972065849074, 29.703712177170846 ], [ -95.623970066027397, 29.703380176810764 ], [ -95.623948065777242, 29.701108176721085 ], [ -95.623944065638412, 29.700684176468982 ], [ -95.623941065451319, 29.700382176356946 ], [ -95.623938065529657, 29.699998175680904 ], [ -95.623915065856409, 29.697508175697831 ], [ -95.623898065642791, 29.696455175599429 ], [ -95.62389106524013, 29.696314175425385 ], [ -95.623870064934493, 29.696092175597308 ], [ -95.623784065623497, 29.695621174847339 ], [ -95.623726064859, 29.69538417560295 ], [ -95.62362706547556, 29.695071175200077 ], [ -95.623553065111921, 29.694862175290666 ], [ -95.623229064883574, 29.694049174644991 ], [ -95.622933065230612, 29.693300174685444 ], [ -95.622638065446594, 29.692546175026155 ], [ -95.622549064656766, 29.692267174754353 ], [ -95.622480065168645, 29.691987174200211 ], [ -95.622435065295917, 29.691748174090453 ], [ -95.622394064562997, 29.691463174155018 ], [ -95.622376064393919, 29.691245173991973 ], [ -95.622367065173336, 29.690887174446743 ], [ -95.622365064799638, 29.690516173979727 ], [ -95.622362064962218, 29.689547174384433 ], [ -95.622362064912366, 29.689374173600452 ], [ -95.622362064534599, 29.688695173605847 ], [ -95.622358064785999, 29.688534173395034 ], [ -95.622350064805744, 29.688480174214654 ], [ -95.619618064217974, 29.688490174271319 ], [ -95.617913063267224, 29.688497174363771 ], [ -95.617638063796036, 29.688494173655535 ], [ -95.617552063327821, 29.688493173803941 ], [ -95.617520063233499, 29.688494174334341 ], [ -95.617366063701667, 29.688501174336931 ], [ -95.616453063692347, 29.68850117399716 ], [ -95.616090063391908, 29.688496173899409 ], [ -95.615907062669336, 29.688502173958188 ], [ -95.615220062487282, 29.688508174475217 ], [ -95.615073062856837, 29.688521174342597 ], [ -95.614767062317767, 29.688511173992168 ], [ -95.61433506298566, 29.688513173919194 ], [ -95.61434306253075, 29.688657173741806 ], [ -95.614383062585162, 29.689365174194915 ], [ -95.614427062351112, 29.690129174402877 ], [ -95.614457062454107, 29.690666174501946 ], [ -95.61447206322093, 29.691046174212158 ], [ -95.61451606281716, 29.691427175116861 ], [ -95.614577063303756, 29.691874174367754 ], [ -95.614617062789122, 29.692205175015964 ], [ -95.614620062974282, 29.692242174603223 ], [ -95.614621062913884, 29.69226417522551 ], [ -95.614633062747174, 29.692423174755881 ], [ -95.614543062442124, 29.692596175023521 ], [ -95.614540063247773, 29.692673175364757 ], [ -95.614531062709304, 29.693405175378281 ], [ -95.614560063019454, 29.69407517509487 ], [ -95.614562062938873, 29.694283175334856 ], [ -95.614566063181158, 29.694707175763455 ], [ -95.61455806295254, 29.695419175929143 ], [ -95.614567062616302, 29.696073176075611 ], [ -95.614588063488043, 29.696737175503198 ], [ -95.614595063211837, 29.697413175990292 ], [ -95.61460206294241, 29.698141175681297 ], [ -95.614612063177006, 29.698664176514367 ], [ -95.614620063363134, 29.699830176410188 ], [ -95.614621063609675, 29.699989176455155 ], [ -95.614632062833024, 29.700538176201679 ], [ -95.614635063671784, 29.700862176885412 ], [ -95.614637063514706, 29.701278176589152 ], [ -95.614650063183547, 29.702035176867817 ], [ -95.614635063494774, 29.702466177077333 ], [ -95.614628063814649, 29.702684176988001 ], [ -95.614647063547977, 29.703248177093375 ], [ -95.614644063479503, 29.70351117727698 ], [ -95.614858063283762, 29.703516176830966 ], [ -95.616007063952068, 29.703536176684352 ], [ -95.616381063563097, 29.703544176750857 ], [ -95.616982064496113, 29.703557177236991 ], [ -95.618568064358712, 29.703589177128841 ], [ -95.619452064849099, 29.703571176713094 ], [ -95.619922065110117, 29.703585177138422 ], [ -95.619954064650173, 29.703586177019474 ], [ -95.620193064465624, 29.703594177409638 ], [ -95.621087064546174, 29.703622177003833 ], [ -95.623972065849074, 29.703712177170846 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 924, "Tract": "48201522102", "Area_SqMi": 0.54369199474808161, "total_2009": 164, "total_2010": 147, "total_2011": 180, "total_2012": 231, "total_2013": 220, "total_2014": 227, "total_2015": 234, "total_2016": 228, "total_2017": 267, "total_2018": 272, "total_2019": 227, "total_2020": 240, "age1": 94, "age2": 170, "age3": 53, "earn1": 54, "earn2": 117, "earn3": 146, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 34, "naics_s06": 0, "naics_s07": 107, "naics_s08": 7, "naics_s09": 0, "naics_s10": 2, "naics_s11": 20, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 62, "naics_s16": 59, "naics_s17": 0, "naics_s18": 0, "naics_s19": 19, "naics_s20": 0, "race1": 208, "race2": 80, "race3": 0, "race4": 20, "race5": 0, "race6": 9, "ethnicity1": 211, "ethnicity2": 106, "edu1": 53, "edu2": 63, "edu3": 68, "edu4": 39, "Shape_Length": 15752.818882802352, "Shape_Area": 15157202.275427567, "total_2021": 295, "total_2022": 317 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.537892049140012, 29.812172202255088 ], [ -95.537472048949397, 29.811971202172273 ], [ -95.537105048729103, 29.811779202182692 ], [ -95.536708048321543, 29.811509202121282 ], [ -95.536336048192766, 29.811235201843331 ], [ -95.535676048331794, 29.810708201635951 ], [ -95.534990048162513, 29.810216201786847 ], [ -95.534663047253432, 29.810029201837736 ], [ -95.534289047308491, 29.809846201407115 ], [ -95.533989047723225, 29.809708201187117 ], [ -95.533509047067895, 29.809541201724773 ], [ -95.532861047711805, 29.809360201518288 ], [ -95.53241004713108, 29.809285201544487 ], [ -95.531978047214295, 29.80923520117862 ], [ -95.531382046580035, 29.809205201545758 ], [ -95.530734046792247, 29.809209201909535 ], [ -95.529849046818086, 29.809219201402296 ], [ -95.528923046698765, 29.809210201249524 ], [ -95.528406045959372, 29.809271201937783 ], [ -95.528030045507691, 29.809360201280388 ], [ -95.527168045388763, 29.809654202248318 ], [ -95.526680045425366, 29.80975120200155 ], [ -95.526164045840929, 29.809806202332645 ], [ -95.526182045468673, 29.810045201501016 ], [ -95.526183045797453, 29.810233201899972 ], [ -95.526184045963888, 29.810504202411604 ], [ -95.526184045214748, 29.810568202434826 ], [ -95.52617804526426, 29.811236201746919 ], [ -95.526177045281244, 29.811283202160489 ], [ -95.526176045728121, 29.811420202481361 ], [ -95.526186045445968, 29.812054202135744 ], [ -95.526190045530527, 29.812208202770773 ], [ -95.526206045875483, 29.812870202555708 ], [ -95.526223045845427, 29.815170203095249 ], [ -95.526221045713996, 29.815794203343877 ], [ -95.526228045951356, 29.815927202758029 ], [ -95.526234045458793, 29.816026202700986 ], [ -95.526247045838602, 29.817145203730327 ], [ -95.526243045797543, 29.817465203459374 ], [ -95.526231046073221, 29.817828203164947 ], [ -95.52624104606771, 29.817948203131014 ], [ -95.526238045523556, 29.818047203608192 ], [ -95.526257045786238, 29.818529203804491 ], [ -95.526270046329529, 29.820076203807727 ], [ -95.526272046234979, 29.82078620403405 ], [ -95.526288046140934, 29.821950204236142 ], [ -95.527141045965081, 29.821942204610487 ], [ -95.527348046845148, 29.821938204063141 ], [ -95.52737204644356, 29.821938204638222 ], [ -95.527473046593769, 29.821937204556569 ], [ -95.527527046526743, 29.821937204010755 ], [ -95.528239047117495, 29.821930204112402 ], [ -95.529539046882434, 29.821917204123299 ], [ -95.529881046861078, 29.821915204480817 ], [ -95.53086104728014, 29.821909204332872 ], [ -95.531981047136583, 29.821881203828877 ], [ -95.533333048370565, 29.821873203777219 ], [ -95.534248048425482, 29.821862203779116 ], [ -95.535273048245415, 29.821998204242334 ], [ -95.535626048294304, 29.822095203644139 ], [ -95.536003048794043, 29.822199204509719 ], [ -95.536899049326351, 29.822484204176085 ], [ -95.536891049112313, 29.821920204031404 ], [ -95.536898049156292, 29.821063203684616 ], [ -95.53690604832957, 29.820730204019085 ], [ -95.53691604904175, 29.820368203655789 ], [ -95.536916048741091, 29.82032320394244 ], [ -95.536915049079298, 29.819982203901812 ], [ -95.53689804902379, 29.819572203787573 ], [ -95.536854048714304, 29.819131203734514 ], [ -95.53683104824988, 29.818823203444065 ], [ -95.536817048306204, 29.818467203612276 ], [ -95.536839048898315, 29.817952203354274 ], [ -95.536889048732604, 29.817477203407019 ], [ -95.536914048797016, 29.817089203147784 ], [ -95.536924048472244, 29.816615202582557 ], [ -95.53691604902059, 29.815858202973295 ], [ -95.536910048885431, 29.815348202546001 ], [ -95.536902048297534, 29.814584202850323 ], [ -95.536892048591952, 29.813817202501596 ], [ -95.536887048415252, 29.813524202346887 ], [ -95.536894048382763, 29.813355201788337 ], [ -95.536947048331484, 29.813162201978848 ], [ -95.537014048381678, 29.813041202399663 ], [ -95.537092048661123, 29.812952202048052 ], [ -95.537892049140012, 29.812172202255088 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 925, "Tract": "48201220701", "Area_SqMi": 0.79078613943432807, "total_2009": 810, "total_2010": 558, "total_2011": 719, "total_2012": 864, "total_2013": 808, "total_2014": 732, "total_2015": 786, "total_2016": 800, "total_2017": 785, "total_2018": 726, "total_2019": 759, "total_2020": 706, "age1": 190, "age2": 414, "age3": 165, "earn1": 59, "earn2": 177, "earn3": 533, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 291, "naics_s05": 248, "naics_s06": 15, "naics_s07": 75, "naics_s08": 11, "naics_s09": 0, "naics_s10": 3, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 110, "naics_s17": 0, "naics_s18": 8, "naics_s19": 8, "naics_s20": 0, "race1": 623, "race2": 83, "race3": 13, "race4": 35, "race5": 3, "race6": 12, "ethnicity1": 323, "ethnicity2": 446, "edu1": 194, "edu2": 145, "edu3": 145, "edu4": 95, "Shape_Length": 20172.681323904657, "Shape_Area": 22045764.123424906, "total_2021": 773, "total_2022": 769 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.358830004531526, 29.846542215433654 ], [ -95.359058004868785, 29.846503215429085 ], [ -95.358764004143865, 29.845373214963086 ], [ -95.358234003851706, 29.843332214254328 ], [ -95.357080003996188, 29.838558213380281 ], [ -95.356804003574268, 29.837434213349599 ], [ -95.355562002898495, 29.832543211960164 ], [ -95.355500003135546, 29.832323212625475 ], [ -95.355283002971802, 29.832332211950089 ], [ -95.355068002433484, 29.83234021188515 ], [ -95.354821003082677, 29.832350212052518 ], [ -95.350947001614017, 29.832418212697409 ], [ -95.350968001799728, 29.833683212618048 ], [ -95.348616000755285, 29.833707213048967 ], [ -95.348489001527739, 29.833723213273803 ], [ -95.348388001409802, 29.833758212728622 ], [ -95.34824800116634, 29.833828212800519 ], [ -95.348128000840816, 29.833878213034058 ], [ -95.348150000627072, 29.834913212770878 ], [ -95.34816900138874, 29.83577621324028 ], [ -95.34817800142261, 29.836132213254643 ], [ -95.348198001126619, 29.836991213863072 ], [ -95.348217001261389, 29.837737213892268 ], [ -95.348008001269648, 29.837739213758113 ], [ -95.346506001211182, 29.837750214007976 ], [ -95.346355000551284, 29.837748213973821 ], [ -95.345849000806865, 29.837754213694836 ], [ -95.345545000304412, 29.837753213874887 ], [ -95.345413000898432, 29.837758213443522 ], [ -95.344851000005079, 29.837761213685397 ], [ -95.344271999956334, 29.837762213646737 ], [ -95.343755000321408, 29.837774214239445 ], [ -95.34338599958069, 29.837773213689516 ], [ -95.342922000063737, 29.837782213412837 ], [ -95.342841999548199, 29.837810213657679 ], [ -95.342806000307334, 29.837847213696506 ], [ -95.34278199962705, 29.837910214199379 ], [ -95.342778000294203, 29.83804421401695 ], [ -95.342801000316797, 29.839281214089453 ], [ -95.342809999717048, 29.8395682140407 ], [ -95.342812999505327, 29.840447214367547 ], [ -95.342826999911381, 29.841157214927538 ], [ -95.342844999961343, 29.842066214609321 ], [ -95.342844000341913, 29.842499214456808 ], [ -95.342859999978728, 29.842886214760728 ], [ -95.34286600013148, 29.843407215273949 ], [ -95.342884999818878, 29.844593215418829 ], [ -95.342905000422505, 29.845427215083333 ], [ -95.342913000218829, 29.846176215974719 ], [ -95.342930000611759, 29.846877215482749 ], [ -95.342937999866919, 29.847017215283387 ], [ -95.342954000815311, 29.847321215487771 ], [ -95.342957000589109, 29.847688216322492 ], [ -95.342943000788637, 29.84790321582927 ], [ -95.342910000527141, 29.848156215976569 ], [ -95.343780000092352, 29.848147215784188 ], [ -95.344531000684185, 29.848134215505009 ], [ -95.34504100129935, 29.848125216068748 ], [ -95.345310001034889, 29.848125215456115 ], [ -95.346279001464211, 29.848096216019506 ], [ -95.34723100120182, 29.848106215776951 ], [ -95.347799001164077, 29.848098215974876 ], [ -95.348636002214775, 29.848077215613714 ], [ -95.349802001771877, 29.84807021608384 ], [ -95.350691002748945, 29.84805821578837 ], [ -95.352081002273181, 29.84804521582274 ], [ -95.352406002950318, 29.848014215366664 ], [ -95.35284000321964, 29.847943215966957 ], [ -95.35313000279784, 29.847891215935505 ], [ -95.353441003262802, 29.847806215949902 ], [ -95.353779003609787, 29.847708215544031 ], [ -95.354711003491616, 29.84737821515866 ], [ -95.355180003127515, 29.847218215341933 ], [ -95.355780003771727, 29.847086215528766 ], [ -95.356493003387641, 29.846938215517113 ], [ -95.357567003907633, 29.846745215424662 ], [ -95.358501004333149, 29.846596215089381 ], [ -95.358652004530725, 29.846572214786352 ], [ -95.358830004531526, 29.846542215433654 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 926, "Tract": "48201554410", "Area_SqMi": 1.402714845979558, "total_2009": 530, "total_2010": 295, "total_2011": 520, "total_2012": 521, "total_2013": 661, "total_2014": 763, "total_2015": 1420, "total_2016": 1388, "total_2017": 1360, "total_2018": 753, "total_2019": 767, "total_2020": 797, "age1": 225, "age2": 473, "age3": 214, "earn1": 127, "earn2": 272, "earn3": 513, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 459, "naics_s05": 3, "naics_s06": 85, "naics_s07": 11, "naics_s08": 8, "naics_s09": 0, "naics_s10": 0, "naics_s11": 13, "naics_s12": 28, "naics_s13": 0, "naics_s14": 54, "naics_s15": 64, "naics_s16": 15, "naics_s17": 0, "naics_s18": 163, "naics_s19": 7, "naics_s20": 0, "race1": 770, "race2": 78, "race3": 8, "race4": 38, "race5": 1, "race6": 17, "ethnicity1": 609, "ethnicity2": 303, "edu1": 147, "edu2": 180, "edu3": 202, "edu4": 158, "Shape_Length": 41814.556772096679, "Shape_Area": 39105289.135457531, "total_2021": 850, "total_2022": 912 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.67339609040171, 29.965300228458762 ], [ -95.673391089657784, 29.964990228597355 ], [ -95.673373090084397, 29.964580228428112 ], [ -95.673344090049213, 29.964301228219782 ], [ -95.673314090407885, 29.964101228663093 ], [ -95.673226089582158, 29.96361922774981 ], [ -95.6732020898, 29.963478227761282 ], [ -95.673148089771843, 29.963164228450317 ], [ -95.673062089467493, 29.962664227806165 ], [ -95.673020089468238, 29.962677227992604 ], [ -95.672976089991096, 29.962690228264073 ], [ -95.672948089530479, 29.96269722773523 ], [ -95.672729090333036, 29.962756228211802 ], [ -95.672616089923039, 29.962773228032678 ], [ -95.672483089753072, 29.962756228055376 ], [ -95.672388090052351, 29.962718228014833 ], [ -95.672117089436526, 29.962569228230663 ], [ -95.671214089365506, 29.961536227469644 ], [ -95.671063089654453, 29.961404227530398 ], [ -95.670956089213334, 29.961327227942352 ], [ -95.670823088904925, 29.961283227648142 ], [ -95.670703089708368, 29.96129922738692 ], [ -95.670589089160032, 29.961327227926059 ], [ -95.670520089319453, 29.961376228092291 ], [ -95.670457088764962, 29.961492228189439 ], [ -95.670387089311291, 29.96183822788948 ], [ -95.670279089342415, 29.962110228147569 ], [ -95.670211089208848, 29.962184228056294 ], [ -95.670078089641649, 29.962256227931299 ], [ -95.669952088662143, 29.9623602284389 ], [ -95.669712089260017, 29.962437227872027 ], [ -95.669390089073588, 29.962476228506549 ], [ -95.669175089324156, 29.962602227787251 ], [ -95.668847088972484, 29.962981227888637 ], [ -95.668721088597977, 29.963075228034679 ], [ -95.668651088847682, 29.963097228219873 ], [ -95.668329088649585, 29.963102228551968 ], [ -95.668083088896978, 29.963064227917961 ], [ -95.667635088877631, 29.962915228534683 ], [ -95.666764088210826, 29.96268422856097 ], [ -95.666300087847674, 29.962457227812752 ], [ -95.665002088282023, 29.961821227883696 ], [ -95.664819087511091, 29.96170022847669 ], [ -95.66468708809299, 29.961579228486698 ], [ -95.664624087577238, 29.961480227834137 ], [ -95.664125087937379, 29.960139227890675 ], [ -95.66400508775591, 29.959935227724895 ], [ -95.663930087891501, 29.95984822747748 ], [ -95.663690087129979, 29.959661227763913 ], [ -95.663582087613875, 29.95960022731327 ], [ -95.663418087529664, 29.95959522791701 ], [ -95.663273087805038, 29.959617228033729 ], [ -95.662989087198824, 29.95973222742327 ], [ -95.662724087605056, 29.95978722809614 ], [ -95.662635087476559, 29.959798227443414 ], [ -95.662396087486371, 29.959792228192843 ], [ -95.662263086601826, 29.959781227956562 ], [ -95.662086087010664, 29.95971522761965 ], [ -95.661903087388154, 29.959611227917588 ], [ -95.661625086543935, 29.959391227653203 ], [ -95.661480086586067, 29.959308227528751 ], [ -95.66125308670432, 29.959220227947657 ], [ -95.661051087201628, 29.959187227916242 ], [ -95.660912086798788, 29.959198227353582 ], [ -95.660843087075165, 29.959220227584535 ], [ -95.660596086271283, 29.95938522784077 ], [ -95.660458086907298, 29.959402227453783 ], [ -95.660376086671135, 29.959380227307179 ], [ -95.660312086298575, 29.959341227739021 ], [ -95.660218086843244, 29.959237228066765 ], [ -95.660061086017237, 29.959012227571861 ], [ -95.659871086681832, 29.95873722726957 ], [ -95.659826086249467, 29.958682227755016 ], [ -95.659770086177843, 29.958643227458847 ], [ -95.659656086775655, 29.958594227244074 ], [ -95.659593086800854, 29.958594227659219 ], [ -95.659416086648804, 29.958621227240517 ], [ -95.659006086684968, 29.958714227487295 ], [ -95.658823086045501, 29.958703227890183 ], [ -95.658728086297657, 29.958676228051782 ], [ -95.658595086365438, 29.958621227825553 ], [ -95.658457086166592, 29.958544228054116 ], [ -95.658104085883991, 29.958315227168075 ], [ -95.657990086293637, 29.958241227721118 ], [ -95.657844085971291, 29.958181227955382 ], [ -95.657466085743181, 29.958000227618552 ], [ -95.656872085329113, 29.957780227548753 ], [ -95.655907085515906, 29.957296227375011 ], [ -95.655818085219195, 29.957241227150782 ], [ -95.655667085186863, 29.957037227431417 ], [ -95.6556160853916, 29.956949227017812 ], [ -95.655578084981656, 29.956828227488888 ], [ -95.655547084862562, 29.956762227445438 ], [ -95.655446085716022, 29.956608227480295 ], [ -95.655326084751437, 29.956449226911865 ], [ -95.655212085467326, 29.956251226898846 ], [ -95.655200085226042, 29.9561852271292 ], [ -95.655175084964057, 29.956130226846405 ], [ -95.655067084922834, 29.956020227242025 ], [ -95.654960085154158, 29.955976227672231 ], [ -95.654821084973889, 29.955943227026314 ], [ -95.654720085419498, 29.955949227078023 ], [ -95.654594085029416, 29.955971227229288 ], [ -95.654360085159553, 29.956048226952319 ], [ -95.6542530850584, 29.956053226937325 ], [ -95.654190084746304, 29.956047227351284 ], [ -95.654070084899757, 29.95602022748859 ], [ -95.653994084375157, 29.955987227286844 ], [ -95.653855085086349, 29.9558772276288 ], [ -95.653407084567135, 29.955415227432173 ], [ -95.653218084892288, 29.955140227241891 ], [ -95.652959084767858, 29.954541227399829 ], [ -95.652915084778215, 29.954475226583419 ], [ -95.65285808438864, 29.954426226950254 ], [ -95.652732084851849, 29.954371227262463 ], [ -95.652656084049553, 29.954360226722667 ], [ -95.652473084845781, 29.954365226757737 ], [ -95.652214084089024, 29.954360226658775 ], [ -95.651703083997333, 29.954310227184585 ], [ -95.651028083908926, 29.954161226923127 ], [ -95.650643084336309, 29.954062226882144 ], [ -95.650523084306457, 29.954007226719479 ], [ -95.650428084181229, 29.953947227262429 ], [ -95.650390083610858, 29.953903226810304 ], [ -95.650346083616057, 29.953826226643269 ], [ -95.650207083668121, 29.953309227127225 ], [ -95.650157084045048, 29.953216226639217 ], [ -95.650037083258667, 29.953122226878659 ], [ -95.649829083533817, 29.953018226926062 ], [ -95.649431083589576, 29.952941226984713 ], [ -95.649019083232346, 29.952918226974596 ], [ -95.648831083780777, 29.952908226805651 ], [ -95.647386082545779, 29.95295722732234 ], [ -95.645902082709242, 29.952956226971981 ], [ -95.645044082404894, 29.952967226771548 ], [ -95.644110082111197, 29.953060227001437 ], [ -95.643251081555832, 29.953120226787082 ], [ -95.643043081805899, 29.953115226737307 ], [ -95.642601081964969, 29.953082227473907 ], [ -95.642418082144061, 29.95308222716282 ], [ -95.642254081205181, 29.953126227200119 ], [ -95.642140081912643, 29.953180226883301 ], [ -95.642064081564925, 29.953268227300679 ], [ -95.642045081310954, 29.953362227392205 ], [ -95.642058081908843, 29.953527227233032 ], [ -95.642096081529374, 29.953714227364049 ], [ -95.642146081218641, 29.953884227514187 ], [ -95.642165082113152, 29.954066227067631 ], [ -95.642165081629543, 29.954236227649861 ], [ -95.642089081912317, 29.954527227674955 ], [ -95.642057082171164, 29.954615227391606 ], [ -95.642007082199413, 29.954714227555126 ], [ -95.641925081622944, 29.954819227151312 ], [ -95.641843081768727, 29.954912227323909 ], [ -95.641773082089856, 29.95497222713734 ], [ -95.64165308148074, 29.955055227765357 ], [ -95.641451081728803, 29.955170227650033 ], [ -95.64136908196113, 29.955192227603408 ], [ -95.640946080929979, 29.955253227761151 ], [ -95.640612081138713, 29.955258227301751 ], [ -95.640548080892898, 29.95524122758065 ], [ -95.640384080819118, 29.955230227677482 ], [ -95.640214080809287, 29.955263227448409 ], [ -95.640127081535852, 29.95530222742368 ], [ -95.640031081330164, 29.955346227860193 ], [ -95.639904081227854, 29.955439228046966 ], [ -95.639728080722378, 29.955626227990088 ], [ -95.638755080589036, 29.95621922807765 ], [ -95.638547081273856, 29.956362227625629 ], [ -95.638389081326679, 29.956522228172734 ], [ -95.63827508065053, 29.956824228072275 ], [ -95.638206080811813, 29.95706022838484 ], [ -95.638130080903366, 29.957258228441034 ], [ -95.638073080606219, 29.957478228171169 ], [ -95.637972081187655, 29.957698228173815 ], [ -95.637953081192364, 29.957797227788888 ], [ -95.638054081050811, 29.958176228034034 ], [ -95.638186080765351, 29.95834122833616 ], [ -95.638325080950906, 29.958489228250833 ], [ -95.638350080986882, 29.959045228557098 ], [ -95.638318080539392, 29.959111228623488 ], [ -95.638243081102061, 29.95914422807061 ], [ -95.638047081079961, 29.959182228737784 ], [ -95.637927080931902, 29.959231228922153 ], [ -95.637801080566135, 29.959303228228016 ], [ -95.637573080912105, 29.959457228477348 ], [ -95.637523080391276, 29.959534228239264 ], [ -95.637422081270188, 29.960017228643501 ], [ -95.63739608053946, 29.960204229097666 ], [ -95.637308080305829, 29.960441228622997 ], [ -95.637200080535294, 29.960644229118962 ], [ -95.636986080754511, 29.960985228748108 ], [ -95.636840080955238, 29.961150228487465 ], [ -95.636544080992323, 29.961314228966 ], [ -95.63639208082526, 29.961353229278775 ], [ -95.636234080944007, 29.961358229039497 ], [ -95.635906080792438, 29.961331228821287 ], [ -95.635622080431574, 29.961221228975255 ], [ -95.635464080637007, 29.961105228536351 ], [ -95.635395080607751, 29.960951228757541 ], [ -95.635780079878984, 29.960517228488065 ], [ -95.635837080646667, 29.960297228902068 ], [ -95.635799080577684, 29.960193229195287 ], [ -95.635692080228281, 29.960099228353741 ], [ -95.635540080798989, 29.960055228387688 ], [ -95.635319080580118, 29.959973228458189 ], [ -95.635162080078558, 29.959874228645965 ], [ -95.634834080151435, 29.959615228985815 ], [ -95.634669079664803, 29.959505229057157 ], [ -95.634537079876935, 29.959489228954414 ], [ -95.63441108014861, 29.959489228786932 ], [ -95.63402507942132, 29.95960922853768 ], [ -95.633766079883571, 29.959807228955032 ], [ -95.633407079387084, 29.960104228649456 ], [ -95.632920079716214, 29.960566228568855 ], [ -95.632611079197687, 29.960923228739382 ], [ -95.632358079853702, 29.960945229111665 ], [ -95.63215007972417, 29.961000229417948 ], [ -95.631859079316172, 29.961049229475361 ], [ -95.631224079291556, 29.961294229366423 ], [ -95.631439079571862, 29.962077229217336 ], [ -95.631532079672454, 29.962372229222119 ], [ -95.631607079409136, 29.962562228986702 ], [ -95.631679079796896, 29.962542229554568 ], [ -95.631775079061896, 29.96250922976559 ], [ -95.631876078971302, 29.962481229108864 ], [ -95.632008079455204, 29.962464229131264 ], [ -95.63208807918717, 29.962450229005341 ], [ -95.632509079226267, 29.962397229491859 ], [ -95.632593079737475, 29.962393229462958 ], [ -95.632854080031848, 29.962366229620645 ], [ -95.633276079293353, 29.962342229107897 ], [ -95.633543079366646, 29.962342229194356 ], [ -95.63383308026124, 29.96235322889682 ], [ -95.633927080334402, 29.962361228996784 ], [ -95.633982079495752, 29.96235722943792 ], [ -95.634027080080955, 29.962371229653076 ], [ -95.63429107985317, 29.962394229402996 ], [ -95.634504079827252, 29.962424229455863 ], [ -95.634843080058403, 29.962480229585328 ], [ -95.635115080288571, 29.962539229593105 ], [ -95.635283080146579, 29.962583229223622 ], [ -95.635560080322179, 29.962661229498419 ], [ -95.635816080349429, 29.962745229374438 ], [ -95.636539080285843, 29.963012229143057 ], [ -95.636986080661018, 29.96315222960089 ], [ -95.637155080993722, 29.963200229420089 ], [ -95.637202080692774, 29.963213228950227 ], [ -95.638238081284513, 29.963506229571422 ], [ -95.638597081256449, 29.963606228968739 ], [ -95.63968008200834, 29.963915229044424 ], [ -95.640053081511439, 29.964023229302985 ], [ -95.640702082052343, 29.964202229781652 ], [ -95.640944081672117, 29.964255229731432 ], [ -95.641211082175573, 29.964308229137966 ], [ -95.641316081812704, 29.964325229471729 ], [ -95.641544081630187, 29.96435722969165 ], [ -95.641639081516246, 29.964367229520501 ], [ -95.641749081919414, 29.964397229406629 ], [ -95.642035081961154, 29.964421229673725 ], [ -95.64229508253274, 29.96443022961903 ], [ -95.642567081900864, 29.964426229152135 ], [ -95.643841082744345, 29.96434622955562 ], [ -95.644958082971684, 29.964295229134855 ], [ -95.645539083470396, 29.96429322889696 ], [ -95.645509083323958, 29.964325229215859 ], [ -95.645752083066682, 29.964352229542822 ], [ -95.645917083365035, 29.964365229449129 ], [ -95.646015083192253, 29.96436522960196 ], [ -95.646249083686556, 29.964364229311737 ], [ -95.646868083106995, 29.964361229193873 ], [ -95.648085083337435, 29.964356228750496 ], [ -95.64846808364436, 29.964350228929259 ], [ -95.648634083707222, 29.964331229055208 ], [ -95.648922084297681, 29.964343229118263 ], [ -95.649821083900804, 29.964341228886347 ], [ -95.650130083979263, 29.964337229201991 ], [ -95.650152084233, 29.964664229269033 ], [ -95.650173083904832, 29.964774229067817 ], [ -95.650183084758737, 29.964892229001496 ], [ -95.650182084443998, 29.965021229070896 ], [ -95.650190084600723, 29.965154229007656 ], [ -95.650235084290884, 29.965578229620508 ], [ -95.650247083938496, 29.966001229135895 ], [ -95.650290084162791, 29.966575229422926 ], [ -95.650304084336796, 29.96671622927299 ], [ -95.650312084811659, 29.966853229199153 ], [ -95.65034108448603, 29.967018229980408 ], [ -95.650368084567404, 29.967610230147514 ], [ -95.650372084930822, 29.967700229576057 ], [ -95.65039808446744, 29.967855230182504 ], [ -95.650392084913264, 29.967949230237732 ], [ -95.650396084136233, 29.967988229611901 ], [ -95.650500085005305, 29.969098229742421 ], [ -95.6506760845744, 29.969761230360795 ], [ -95.650852084397144, 29.970363230409493 ], [ -95.650866084179953, 29.97041023018085 ], [ -95.65090908475733, 29.97063823065368 ], [ -95.650949084800899, 29.970768230419317 ], [ -95.651016085149251, 29.971025230556684 ], [ -95.651128085163236, 29.971409230381962 ], [ -95.651261084378376, 29.971900230175997 ], [ -95.651281084683703, 29.972019230860294 ], [ -95.651325084933433, 29.972126230523088 ], [ -95.651399084802179, 29.972377230556305 ], [ -95.651489084946974, 29.972626230528761 ], [ -95.651577084793956, 29.973061230434961 ], [ -95.651595084601936, 29.973134230940151 ], [ -95.651648084904807, 29.973353230980813 ], [ -95.651771084950582, 29.973783231355654 ], [ -95.651798085325922, 29.973897231219482 ], [ -95.651862084940163, 29.974122231054615 ], [ -95.651921084857321, 29.974361230952319 ], [ -95.65202508551657, 29.97474423122787 ], [ -95.653724085510632, 29.974411231358477 ], [ -95.653894085615988, 29.974378231167208 ], [ -95.654422085630699, 29.974279230980567 ], [ -95.656663085805576, 29.974345231179786 ], [ -95.657675086791144, 29.974278231249443 ], [ -95.658422086391653, 29.974046230682273 ], [ -95.659014086870684, 29.973736230847827 ], [ -95.659119086860173, 29.973681230344248 ], [ -95.65916708666019, 29.973646230822453 ], [ -95.659578087327418, 29.973177230694191 ], [ -95.660821087383681, 29.971450230478538 ], [ -95.660492086771768, 29.971269229982497 ], [ -95.660060086742092, 29.970973230279537 ], [ -95.65964408730747, 29.970596229690475 ], [ -95.659382086680992, 29.97028723030088 ], [ -95.659035087034482, 29.969822229719188 ], [ -95.658856087068173, 29.96957923011426 ], [ -95.658541086899945, 29.969198229463199 ], [ -95.658201086869454, 29.968731229926291 ], [ -95.657623086709719, 29.967932230017226 ], [ -95.657275086611762, 29.967419229105275 ], [ -95.657114086365482, 29.967190229214079 ], [ -95.657024086088782, 29.967039228984451 ], [ -95.656879085934037, 29.966617229417416 ], [ -95.656745086154686, 29.966208229332334 ], [ -95.656691085521032, 29.965913229103631 ], [ -95.6566110858748, 29.965494229167316 ], [ -95.65657308630648, 29.964968228758082 ], [ -95.656573085959309, 29.964543228499615 ], [ -95.656595085651844, 29.964293228517292 ], [ -95.656756086273035, 29.964292228961408 ], [ -95.656906085872663, 29.964300228953658 ], [ -95.657214085798202, 29.964296228696096 ], [ -95.658096086674362, 29.964297229221074 ], [ -95.659672086666092, 29.964292228482684 ], [ -95.660050086472779, 29.964291228392206 ], [ -95.661200087390384, 29.964284228745161 ], [ -95.66248308713142, 29.964274228891306 ], [ -95.663372087841196, 29.964273228829537 ], [ -95.663915087660314, 29.964274228380965 ], [ -95.664701088260969, 29.964298228627243 ], [ -95.664872088398383, 29.96431322879598 ], [ -95.665049088508724, 29.964334228935606 ], [ -95.665219087816808, 29.964375228577243 ], [ -95.665575088169291, 29.964440228983449 ], [ -95.666065088623142, 29.964571228847756 ], [ -95.666209088513213, 29.96461622887098 ], [ -95.666341088282621, 29.964673228839395 ], [ -95.667085088202384, 29.964955228543332 ], [ -95.667192088573557, 29.964984228575531 ], [ -95.667285088362021, 29.965018228591305 ], [ -95.667567088603732, 29.965105228483633 ], [ -95.667692088583465, 29.965133228934402 ], [ -95.667840088335979, 29.965160228684994 ], [ -95.668130088411118, 29.965228228853764 ], [ -95.668585089424042, 29.965311228354356 ], [ -95.668900088845433, 29.965337228206746 ], [ -95.669404089549246, 29.965346229070075 ], [ -95.670597089845799, 29.965338228718178 ], [ -95.670867089580057, 29.965335228747026 ], [ -95.671052089890182, 29.965337228538779 ], [ -95.671240089800648, 29.965332228329597 ], [ -95.671422089265747, 29.965334228132647 ], [ -95.673331090594445, 29.965301228310487 ], [ -95.67339609040171, 29.965300228458762 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 927, "Tract": "48201555503", "Area_SqMi": 9.0927295401807324, "total_2009": 995, "total_2010": 1268, "total_2011": 1169, "total_2012": 1359, "total_2013": 1741, "total_2014": 1386, "total_2015": 1527, "total_2016": 1579, "total_2017": 1608, "total_2018": 1646, "total_2019": 1938, "total_2020": 1940, "age1": 551, "age2": 1157, "age3": 489, "earn1": 355, "earn2": 569, "earn3": 1273, "naics_s01": 11, "naics_s02": 89, "naics_s03": 2, "naics_s04": 533, "naics_s05": 319, "naics_s06": 165, "naics_s07": 75, "naics_s08": 75, "naics_s09": 2, "naics_s10": 36, "naics_s11": 30, "naics_s12": 204, "naics_s13": 0, "naics_s14": 159, "naics_s15": 14, "naics_s16": 172, "naics_s17": 39, "naics_s18": 229, "naics_s19": 43, "naics_s20": 0, "race1": 1752, "race2": 253, "race3": 19, "race4": 144, "race5": 3, "race6": 26, "ethnicity1": 1480, "ethnicity2": 717, "edu1": 349, "edu2": 445, "edu3": 482, "edu4": 370, "Shape_Length": 78045.427742587373, "Shape_Area": 253489737.21809825, "total_2021": 1957, "total_2022": 2197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.697681099770065, 30.050494245277552 ], [ -95.697672100266388, 30.050355244844035 ], [ -95.697676099961242, 30.050208244506862 ], [ -95.697627100456231, 30.046495243807808 ], [ -95.697611099871722, 30.044894243774824 ], [ -95.697611100153935, 30.044839244028662 ], [ -95.697600100331272, 30.043970243537967 ], [ -95.697570100311339, 30.041503242737996 ], [ -95.697569100267316, 30.041159242951355 ], [ -95.697564100134969, 30.040981242676615 ], [ -95.697556099843581, 30.040598243025293 ], [ -95.697538100004408, 30.038718242472729 ], [ -95.697533099652475, 30.038403242761742 ], [ -95.697530100091882, 30.038001242339469 ], [ -95.697517099101461, 30.036807242317185 ], [ -95.697513100094255, 30.036680241976672 ], [ -95.697508099260531, 30.0365492423505 ], [ -95.697503099828253, 30.035777242337119 ], [ -95.6974520996541, 30.031442241065516 ], [ -95.697428099310414, 30.029493241123507 ], [ -95.697371099408485, 30.024603239622046 ], [ -95.696835099331366, 30.024604239438034 ], [ -95.694288098577374, 30.024614239523689 ], [ -95.694083097768271, 30.024608239963747 ], [ -95.693008098058584, 30.024622240146453 ], [ -95.692880098363943, 30.024620239491671 ], [ -95.692808097720302, 30.024618239850117 ], [ -95.69241509732916, 30.024623239954746 ], [ -95.692230097663952, 30.02462123981709 ], [ -95.691348097626118, 30.024628239799519 ], [ -95.691145097354493, 30.024628239820153 ], [ -95.690982097815876, 30.024651239744287 ], [ -95.690801097293715, 30.024638239690915 ], [ -95.6906220975834, 30.024633239842704 ], [ -95.689567096704991, 30.02463924039278 ], [ -95.689047096592915, 30.024648239558619 ], [ -95.688873096752317, 30.024641239671812 ], [ -95.688710096814276, 30.024645239767221 ], [ -95.687581096775702, 30.024647240410697 ], [ -95.687415096660359, 30.02465023989371 ], [ -95.686959096799654, 30.024649240380725 ], [ -95.686470096242914, 30.024659240340799 ], [ -95.686328096039219, 30.024659240133559 ], [ -95.685860095636073, 30.02466924044953 ], [ -95.685566095546989, 30.024665240160235 ], [ -95.685259095738132, 30.024661239817874 ], [ -95.685061095546388, 30.024653240370366 ], [ -95.684839095349773, 30.024636239714258 ], [ -95.684703096211408, 30.024619239824514 ], [ -95.684568095387533, 30.024596240123866 ], [ -95.684297095211832, 30.024538240160624 ], [ -95.683630094993021, 30.024363240529368 ], [ -95.683480095447706, 30.024326239685358 ], [ -95.683347095619993, 30.024299240337424 ], [ -95.683211095833116, 30.024278239844683 ], [ -95.683070095018735, 30.024266240213052 ], [ -95.682704095177201, 30.024261240467585 ], [ -95.680963094734608, 30.024268239986821 ], [ -95.679810094866568, 30.024272240315298 ], [ -95.679630094387079, 30.024279240669909 ], [ -95.677133093913767, 30.024297240390403 ], [ -95.672622092390981, 30.024328240714198 ], [ -95.672460092532745, 30.024347240346785 ], [ -95.672370092846521, 30.024329240774168 ], [ -95.672329093008017, 30.024329240688921 ], [ -95.671976092334972, 30.024335240267426 ], [ -95.67169509201014, 30.024330240083604 ], [ -95.671430092301094, 30.024339240297824 ], [ -95.667808091520698, 30.024358240692287 ], [ -95.664960091121657, 30.024377240343874 ], [ -95.664691090926851, 30.024391240778179 ], [ -95.664432090388758, 30.024419240652733 ], [ -95.664174090359253, 30.024462240423244 ], [ -95.664042090542083, 30.024492240960125 ], [ -95.66390609064122, 30.024528241295446 ], [ -95.663767090623097, 30.024573240960649 ], [ -95.663312089835557, 30.02474424107109 ], [ -95.662828089909198, 30.024919240508527 ], [ -95.662575090611966, 30.024993241259544 ], [ -95.662319090253689, 30.02505324107052 ], [ -95.662186090066456, 30.025077241164123 ], [ -95.662050089752597, 30.025094240637628 ], [ -95.661907089965339, 30.025104241204133 ], [ -95.661756090289586, 30.025108241445814 ], [ -95.660833089517112, 30.025112241069511 ], [ -95.659660089455954, 30.025113241424823 ], [ -95.659082089598087, 30.025117241525642 ], [ -95.658145089396839, 30.025115241045409 ], [ -95.657612089217281, 30.025120241236852 ], [ -95.655669088504283, 30.025130241245265 ], [ -95.654647087889714, 30.025130241431981 ], [ -95.654036088456152, 30.02513424116642 ], [ -95.653887088088567, 30.02513924174723 ], [ -95.653357087433207, 30.025140241119463 ], [ -95.653168087978514, 30.025143241006372 ], [ -95.653022088119258, 30.025134241402451 ], [ -95.652837088021826, 30.025130241190489 ], [ -95.652651087347493, 30.025127241064062 ], [ -95.65254008776914, 30.025114241062585 ], [ -95.652436088028892, 30.025090241209025 ], [ -95.652338087095487, 30.025047240967204 ], [ -95.652242088034214, 30.02498624093797 ], [ -95.652143087413393, 30.024910240994746 ], [ -95.651933087081972, 30.024734241571792 ], [ -95.651152087097415, 30.024100241438926 ], [ -95.651048087600202, 30.023996241534924 ], [ -95.650924087112898, 30.023901241172652 ], [ -95.650806086968331, 30.023799241353835 ], [ -95.650541086504177, 30.02359924134899 ], [ -95.650286087178742, 30.023379241053863 ], [ -95.65012108725314, 30.02324424125154 ], [ -95.649037087004956, 30.02235224096404 ], [ -95.64859908649764, 30.021999240696285 ], [ -95.648489086281771, 30.021906240550916 ], [ -95.648372086069273, 30.021815240777205 ], [ -95.648261086504519, 30.021718240772095 ], [ -95.647436086610867, 30.021030240487079 ], [ -95.64732508556412, 30.0209372405035 ], [ -95.647205085794184, 30.020845240590354 ], [ -95.646208086032615, 30.020023240326928 ], [ -95.646010085503448, 30.019861240671833 ], [ -95.644510085253245, 30.01863423992209 ], [ -95.644361084898947, 30.018537240391773 ], [ -95.644287085635895, 30.018503240461033 ], [ -95.644205085570093, 30.018481240127159 ], [ -95.644123085074668, 30.018467240647915 ], [ -95.644025085390709, 30.018464240414225 ], [ -95.643909084882239, 30.018467239924199 ], [ -95.643796084736465, 30.018460240259529 ], [ -95.643688085035507, 30.018466239990044 ], [ -95.643573084990607, 30.018478240754334 ], [ -95.643236084550409, 30.018480240098498 ], [ -95.643125084618674, 30.018487240232243 ], [ -95.642952085114487, 30.018492240752469 ], [ -95.642872084382688, 30.018489239954448 ], [ -95.642563084685037, 30.018497240536988 ], [ -95.642452084504015, 30.018481240061085 ], [ -95.642374084469154, 30.018429240121737 ], [ -95.642360084824531, 30.018386240340512 ], [ -95.642343085109843, 30.018289240370503 ], [ -95.642329084671871, 30.018729240707874 ], [ -95.642336084934072, 30.018822240755505 ], [ -95.64232008486232, 30.018913240896303 ], [ -95.642330085025449, 30.019020240125055 ], [ -95.642335084240813, 30.019249240955958 ], [ -95.642332085143963, 30.019588240633155 ], [ -95.642335084895393, 30.019939240387259 ], [ -95.642327084557294, 30.020554240852583 ], [ -95.642333084577828, 30.020810240429018 ], [ -95.642338085175155, 30.021378240643411 ], [ -95.642344084859403, 30.02209724147367 ], [ -95.642341084962098, 30.022183241487546 ], [ -95.642328084663319, 30.022251241569347 ], [ -95.642317084809349, 30.022268241058757 ], [ -95.642297084475956, 30.022301241263403 ], [ -95.642249084735099, 30.022336241192075 ], [ -95.642188085159589, 30.022353241114001 ], [ -95.642116084600374, 30.022359241333351 ], [ -95.641658085144456, 30.022361240946342 ], [ -95.641157084691685, 30.022358241626726 ], [ -95.641079084879209, 30.022362241132694 ], [ -95.641006084439624, 30.022374241039653 ], [ -95.640963084439193, 30.022392240947827 ], [ -95.640945084439224, 30.02240224130686 ], [ -95.640911084930551, 30.022433241502817 ], [ -95.640883084450408, 30.022477240965653 ], [ -95.640874084425732, 30.022533241645757 ], [ -95.640870084174097, 30.022677241062226 ], [ -95.640875084640953, 30.023189241100837 ], [ -95.640885084485134, 30.024200241758759 ], [ -95.640892084235333, 30.024721241857861 ], [ -95.640909085054801, 30.025844241868619 ], [ -95.640911084191927, 30.026248242122143 ], [ -95.64091908512718, 30.027236242225353 ], [ -95.640932084425742, 30.028403242191445 ], [ -95.640763085137152, 30.028403242835182 ], [ -95.63845308443203, 30.028398242194928 ], [ -95.637007083859942, 30.028396242704495 ], [ -95.636272083950772, 30.02846424268682 ], [ -95.636063083838849, 30.028492242354627 ], [ -95.635312083473707, 30.028639242691902 ], [ -95.634735083117434, 30.028774243100763 ], [ -95.633883082949765, 30.029060242987093 ], [ -95.633765083150678, 30.02912024264338 ], [ -95.633739083255662, 30.02913024290595 ], [ -95.633686082662692, 30.029151242711769 ], [ -95.633634082531358, 30.029168243192082 ], [ -95.633577083151664, 30.029176242946569 ], [ -95.633550082478237, 30.029208242477971 ], [ -95.633497083079163, 30.029242243149024 ], [ -95.633428083271767, 30.029273242728014 ], [ -95.633348082776465, 30.02930524281761 ], [ -95.633267082892175, 30.029332243087936 ], [ -95.633183083047527, 30.02935624304909 ], [ -95.633064082805816, 30.029386243192821 ], [ -95.632657082884904, 30.02948024270421 ], [ -95.632516082700803, 30.029508243378515 ], [ -95.632371082182047, 30.029539242926713 ], [ -95.632228082251245, 30.02955724281556 ], [ -95.631757082465754, 30.029605242900185 ], [ -95.631297082843432, 30.029612242724717 ], [ -95.630981082394271, 30.029603243247426 ], [ -95.630827082059227, 30.029589242883045 ], [ -95.630381081935951, 30.02952524304807 ], [ -95.629949082060463, 30.029419242623437 ], [ -95.629800082406717, 30.029387242822523 ], [ -95.629508081593542, 30.029323243364914 ], [ -95.629214081641635, 30.02926324275608 ], [ -95.629063081669884, 30.029232243389593 ], [ -95.628607081315323, 30.029132242967989 ], [ -95.628121081567031, 30.029058242715301 ], [ -95.627956081614144, 30.029044242780326 ], [ -95.627649081264892, 30.029021242840876 ], [ -95.627340080821114, 30.029013243468253 ], [ -95.627183081728504, 30.029016243078559 ], [ -95.626707081152162, 30.029067243453301 ], [ -95.626236081270207, 30.029145243226488 ], [ -95.626080081440108, 30.029174243238497 ], [ -95.625766081000378, 30.029244243051217 ], [ -95.625468081360424, 30.029318243275885 ], [ -95.625315081029171, 30.029365242874231 ], [ -95.624891081170759, 30.029506243467093 ], [ -95.624860080948096, 30.029521242800527 ], [ -95.624331080453786, 30.02974724333826 ], [ -95.623767080814162, 30.030041243466108 ], [ -95.62362208084528, 30.030121243723343 ], [ -95.623334080012583, 30.030282243477082 ], [ -95.623052080693299, 30.030443243637496 ], [ -95.622907080599219, 30.030530243155223 ], [ -95.622595080695376, 30.030733243894428 ], [ -95.622511079838688, 30.03078824363882 ], [ -95.62238707966516, 30.030877243387248 ], [ -95.6221410805028, 30.03105624321924 ], [ -95.621892079601153, 30.031242243879184 ], [ -95.621501079822693, 30.031521243588667 ], [ -95.621360079553327, 30.031606243662939 ], [ -95.621069080368216, 30.031768243608298 ], [ -95.620919079434941, 30.031843243404165 ], [ -95.620459080021206, 30.032041243924532 ], [ -95.620000079995833, 30.032199243564033 ], [ -95.619972079081592, 30.032209244121066 ], [ -95.619802079366366, 30.032257244075264 ], [ -95.619465079110881, 30.032327243819751 ], [ -95.619296079315831, 30.032363243897006 ], [ -95.618950078909492, 30.032413244208264 ], [ -95.61860507887846, 30.03244524438902 ], [ -95.618427079451351, 30.032457244277932 ], [ -95.618303078757961, 30.032461243686452 ], [ -95.618246079496032, 30.032463244211286 ], [ -95.618062078684119, 30.032470244189565 ], [ -95.617982079312938, 30.032473244244098 ], [ -95.617886079216873, 30.032477244046071 ], [ -95.617342079254001, 30.032492243728122 ], [ -95.616809079125346, 30.032507243797038 ], [ -95.616468078967159, 30.032518244386662 ], [ -95.616295079103949, 30.032523244584155 ], [ -95.615765078065564, 30.032527243800921 ], [ -95.615529078919209, 30.032525243841345 ], [ -95.615250078691119, 30.032531244264757 ], [ -95.615066078062313, 30.032543243783497 ], [ -95.614711078780516, 30.032565243813831 ], [ -95.614176078506119, 30.032594244497879 ], [ -95.613676078117095, 30.032622244231263 ], [ -95.613338077841519, 30.03264324394808 ], [ -95.613176078329772, 30.032651243935728 ], [ -95.612742077292381, 30.0326752439316 ], [ -95.612286078103651, 30.032735244042964 ], [ -95.611951077919571, 30.03275524462029 ], [ -95.611853077387551, 30.032768243878888 ], [ -95.611649077294018, 30.032790244431641 ], [ -95.61159207708198, 30.03279724394633 ], [ -95.611432077843048, 30.03281524449331 ], [ -95.611308077446751, 30.032826244726063 ], [ -95.611189077078549, 30.032868244734136 ], [ -95.610392077181203, 30.032965244809279 ], [ -95.610001076984545, 30.03302624417881 ], [ -95.609636077008361, 30.033151244421607 ], [ -95.609479076462037, 30.03320824451022 ], [ -95.609031076628227, 30.033368244682492 ], [ -95.608981077079761, 30.033392244761174 ], [ -95.608617076637174, 30.033559244254754 ], [ -95.608460076721499, 30.033653244279733 ], [ -95.608434076447182, 30.03366824425073 ], [ -95.607864076137162, 30.034035244450514 ], [ -95.607513076661519, 30.034283244714757 ], [ -95.607202076913595, 30.034584245276456 ], [ -95.60672007584408, 30.035016245399788 ], [ -95.606278076518592, 30.035412244897095 ], [ -95.60602607625475, 30.035582244829833 ], [ -95.605605076149956, 30.035779245389197 ], [ -95.605218076277993, 30.035985245359136 ], [ -95.604749075568108, 30.036231245680199 ], [ -95.604708076259357, 30.036255245076735 ], [ -95.604552076112455, 30.036307244932726 ], [ -95.604473076010322, 30.036333245246567 ], [ -95.604402075871576, 30.036357245491672 ], [ -95.604266075913159, 30.036407244983828 ], [ -95.604207075693765, 30.036428245103536 ], [ -95.604056075521086, 30.03648724533058 ], [ -95.603933076031097, 30.036535245408626 ], [ -95.604024075270857, 30.036704245483335 ], [ -95.604381076019322, 30.037299245614655 ], [ -95.604453075467021, 30.0374392452165 ], [ -95.604508075391465, 30.037558245631612 ], [ -95.604655075737369, 30.037874245691551 ], [ -95.604720076146634, 30.038014246054548 ], [ -95.605322076080157, 30.039175245856072 ], [ -95.605524076621563, 30.039477245899988 ], [ -95.605551075965252, 30.039520245748463 ], [ -95.606046075975712, 30.040344245815827 ], [ -95.606120076636017, 30.040558246291845 ], [ -95.60686107671161, 30.041336245848591 ], [ -95.607632077389582, 30.042144246402849 ], [ -95.608219076824369, 30.042761246657488 ], [ -95.609918077988638, 30.04476924661293 ], [ -95.609909077642442, 30.044777247010622 ], [ -95.609876077715171, 30.044807246692855 ], [ -95.609922077344308, 30.044846246462807 ], [ -95.610094077919797, 30.044993246873915 ], [ -95.610268077908415, 30.04514124693527 ], [ -95.61079907764919, 30.045876246987223 ], [ -95.611739077793544, 30.047175247003874 ], [ -95.612263077865606, 30.047972247755919 ], [ -95.612471078892852, 30.048374247557916 ], [ -95.612655078499813, 30.048689247719263 ], [ -95.613266078638389, 30.049581247692888 ], [ -95.613481078309718, 30.04989524788067 ], [ -95.614244079027117, 30.051124247750653 ], [ -95.61431107914234, 30.051266248394398 ], [ -95.614368079290998, 30.051387248044801 ], [ -95.614506078776046, 30.051683247837786 ], [ -95.614525079243776, 30.051724247996511 ], [ -95.61473407894654, 30.0517232481217 ], [ -95.615098078927261, 30.051722248394917 ], [ -95.615124079525032, 30.051722248004786 ], [ -95.615326079440891, 30.051722247807501 ], [ -95.61556307987928, 30.051721247844881 ], [ -95.615774079641753, 30.051721247980023 ], [ -95.618926080077316, 30.051713247976817 ], [ -95.620492080739595, 30.051710248148179 ], [ -95.620531080535116, 30.051710247773695 ], [ -95.620639081076675, 30.051709247751479 ], [ -95.621192080767187, 30.051708248162814 ], [ -95.624435081381378, 30.051821248158497 ], [ -95.62784908264922, 30.051992247942902 ], [ -95.630059083024307, 30.052087247759893 ], [ -95.634972084154839, 30.052277247107614 ], [ -95.636432084265365, 30.052258247713631 ], [ -95.642113085896739, 30.052068246757173 ], [ -95.643232086398982, 30.05203024743501 ], [ -95.644162086236378, 30.051973247320266 ], [ -95.645736086829615, 30.051859247269377 ], [ -95.646149087131619, 30.051813247000503 ], [ -95.646931087631785, 30.051726246858394 ], [ -95.647282087174119, 30.051689246699343 ], [ -95.650203088551834, 30.051385246923768 ], [ -95.651942088279824, 30.05125124668394 ], [ -95.653119089036323, 30.051139246549909 ], [ -95.654107089046832, 30.051033246599015 ], [ -95.655241089743981, 30.050907246095836 ], [ -95.65622508929188, 30.050800246655974 ], [ -95.656768090179753, 30.050757246137394 ], [ -95.657170090134002, 30.050732246064484 ], [ -95.657548089641409, 30.050703246326123 ], [ -95.657940089680281, 30.050679246147759 ], [ -95.658308090291357, 30.05066024640265 ], [ -95.658783090433772, 30.050645246026285 ], [ -95.659209090183779, 30.050626246204011 ], [ -95.659934090502432, 30.050600245901588 ], [ -95.661739090877177, 30.05051824643941 ], [ -95.662028091018044, 30.050502246188927 ], [ -95.662575091457086, 30.050483246390513 ], [ -95.663618091354465, 30.050431245896092 ], [ -95.665334092052689, 30.050367245786237 ], [ -95.665958092000494, 30.050342245762163 ], [ -95.666653091870401, 30.050310245841928 ], [ -95.667873093021427, 30.050256245953509 ], [ -95.66945609327216, 30.050181246087153 ], [ -95.671856093819628, 30.050082246136544 ], [ -95.674801094338775, 30.05004824567143 ], [ -95.679925095682407, 30.049999245398556 ], [ -95.681549096353223, 30.049974245331679 ], [ -95.682894096515128, 30.049953245733864 ], [ -95.684896096770458, 30.049934245585696 ], [ -95.686489097861198, 30.050010245006245 ], [ -95.68721009755059, 30.050067244848869 ], [ -95.688556098020129, 30.050219244883934 ], [ -95.689562098180332, 30.05035124529369 ], [ -95.690175098361507, 30.050456245592443 ], [ -95.691440099070874, 30.050674245484849 ], [ -95.697527100384121, 30.052148244869038 ], [ -95.697547100205782, 30.052016244838345 ], [ -95.697590099975031, 30.05173524486344 ], [ -95.697681099770065, 30.050494245277552 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 928, "Tract": "48201232405", "Area_SqMi": 4.1505566002877856, "total_2009": 1947, "total_2010": 1891, "total_2011": 1854, "total_2012": 2103, "total_2013": 2384, "total_2014": 1734, "total_2015": 2175, "total_2016": 2575, "total_2017": 1943, "total_2018": 2362, "total_2019": 2683, "total_2020": 2294, "age1": 726, "age2": 904, "age3": 378, "earn1": 612, "earn2": 664, "earn3": 732, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 177, "naics_s05": 17, "naics_s06": 27, "naics_s07": 516, "naics_s08": 101, "naics_s09": 0, "naics_s10": 16, "naics_s11": 28, "naics_s12": 25, "naics_s13": 1, "naics_s14": 266, "naics_s15": 10, "naics_s16": 137, "naics_s17": 0, "naics_s18": 603, "naics_s19": 82, "naics_s20": 0, "race1": 1417, "race2": 458, "race3": 23, "race4": 78, "race5": 3, "race6": 29, "ethnicity1": 1205, "ethnicity2": 803, "edu1": 353, "edu2": 373, "edu3": 378, "edu4": 178, "Shape_Length": 64340.83675075361, "Shape_Area": 115710414.26740615, "total_2021": 2173, "total_2022": 2008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.230885969779578, 29.814972213373377 ], [ -95.230966970246484, 29.814770212701742 ], [ -95.230846970300561, 29.81384721285734 ], [ -95.230668970390596, 29.813486213138582 ], [ -95.23043196984051, 29.813290212699393 ], [ -95.230135969558077, 29.813168212345722 ], [ -95.22989196992701, 29.813138212277234 ], [ -95.228106969070851, 29.813520213168289 ], [ -95.227819969042386, 29.813511212844361 ], [ -95.226851968945482, 29.813348212828011 ], [ -95.226406969021951, 29.813417213140262 ], [ -95.226187968588349, 29.813626213238205 ], [ -95.225776969131829, 29.814367213093263 ], [ -95.225635968856352, 29.814437213386942 ], [ -95.225390968883374, 29.814418213285947 ], [ -95.22507496828959, 29.814189212620075 ], [ -95.224923968268328, 29.813979212901728 ], [ -95.224726967903294, 29.812338212899821 ], [ -95.224621968327952, 29.812183212574602 ], [ -95.224409967832344, 29.812077212537712 ], [ -95.224170968646632, 29.812029212256153 ], [ -95.223397967575821, 29.812087212780963 ], [ -95.223235968319017, 29.812068212361513 ], [ -95.223132968072548, 29.812008212835295 ], [ -95.223037968375749, 29.81189121266123 ], [ -95.222926968130423, 29.811288212365618 ], [ -95.2226789677797, 29.810757212848877 ], [ -95.222445967335361, 29.8106002125412 ], [ -95.221860967489718, 29.81033321262332 ], [ -95.221016967610154, 29.810053212478085 ], [ -95.219977967322706, 29.809504212409948 ], [ -95.219102966566624, 29.808751212107712 ], [ -95.218706967220839, 29.808656211806959 ], [ -95.218303966953741, 29.80872821195851 ], [ -95.218056966287492, 29.808856212501293 ], [ -95.217780966145199, 29.809072212007873 ], [ -95.217467966856674, 29.809493212560803 ], [ -95.21694696635447, 29.810001212652242 ], [ -95.216677965835132, 29.810168212638946 ], [ -95.216448966436374, 29.810237212945342 ], [ -95.21596496604802, 29.810209212872714 ], [ -95.215734965540022, 29.810062212127146 ], [ -95.215310965703466, 29.809671212416173 ], [ -95.214996966002019, 29.809597212699313 ], [ -95.214674966098855, 29.809748212418217 ], [ -95.214320966147, 29.810094212589341 ], [ -95.213837966017664, 29.810716212574143 ], [ -95.21341296506148, 29.81093221253251 ], [ -95.213207965875739, 29.810951212697848 ], [ -95.213056965209432, 29.81090121242093 ], [ -95.213008964845642, 29.810856213150778 ], [ -95.212888965828881, 29.810744212329148 ], [ -95.212774964818095, 29.81051221268558 ], [ -95.212626965334039, 29.80988821253171 ], [ -95.212486964828628, 29.810031212783901 ], [ -95.211765964763771, 29.810769213150976 ], [ -95.210840964534256, 29.81171521318829 ], [ -95.210745964503261, 29.81181121303662 ], [ -95.210732964771623, 29.811825212843736 ], [ -95.210690964796896, 29.81186821337775 ], [ -95.210328964935144, 29.812226213253496 ], [ -95.209891964728556, 29.812704213447802 ], [ -95.209188964219763, 29.81347321307398 ], [ -95.209134964822226, 29.813531213283113 ], [ -95.208496964524912, 29.814375213265521 ], [ -95.20787696445565, 29.815327213798888 ], [ -95.207299964214783, 29.816236214136719 ], [ -95.207262964027393, 29.816297213928106 ], [ -95.207042963934185, 29.816663214012998 ], [ -95.206560964414123, 29.817112214356232 ], [ -95.206368964108734, 29.817316214198215 ], [ -95.202737962484989, 29.817332214727546 ], [ -95.20256696245562, 29.817332214274376 ], [ -95.202517963324112, 29.817333214909141 ], [ -95.198941961991167, 29.817403214557231 ], [ -95.194356961117563, 29.81749521473056 ], [ -95.193921960615029, 29.817500215060413 ], [ -95.193527960447952, 29.817506214681448 ], [ -95.1908129595829, 29.817534214450117 ], [ -95.187146958983234, 29.817607214949778 ], [ -95.185023958859333, 29.817646214946468 ], [ -95.182455958249207, 29.8177052156374 ], [ -95.182455957949117, 29.817678215041315 ], [ -95.182453957760188, 29.817466215517918 ], [ -95.182445957450327, 29.816887214938522 ], [ -95.182437957919092, 29.816143214627029 ], [ -95.182427957960925, 29.815178214567954 ], [ -95.182417957271483, 29.814764215024514 ], [ -95.18238395731575, 29.812126213762255 ], [ -95.182368957395596, 29.810772213409088 ], [ -95.182360957470593, 29.81043121381893 ], [ -95.182357957480491, 29.80992821366323 ], [ -95.182352957805563, 29.809791213883763 ], [ -95.182346957183142, 29.809236213909813 ], [ -95.182338957357004, 29.808472213440204 ], [ -95.182333957279383, 29.808023213328564 ], [ -95.182312957169586, 29.807178213146635 ], [ -95.182263957580886, 29.806379213146002 ], [ -95.182263957486427, 29.80635121317405 ], [ -95.182261956916847, 29.806156212567583 ], [ -95.182062957320355, 29.806156213092862 ], [ -95.180804956494683, 29.806180212867744 ], [ -95.179702956918959, 29.806197213129991 ], [ -95.179547956573927, 29.806199213071725 ], [ -95.179221956511384, 29.806204213364374 ], [ -95.179079956634396, 29.806206213197601 ], [ -95.178642956339715, 29.806216213121299 ], [ -95.178199956399155, 29.806227213184911 ], [ -95.177755956160979, 29.806230213311821 ], [ -95.177139956379179, 29.806248213451077 ], [ -95.176478955283343, 29.806258212924991 ], [ -95.175840955100441, 29.806307212996614 ], [ -95.175174955217173, 29.806332213510906 ], [ -95.17448195548269, 29.806335213171494 ], [ -95.173902955029405, 29.806348213448103 ], [ -95.173564954527038, 29.80636321330325 ], [ -95.17333695516632, 29.806387212787687 ], [ -95.172888955263204, 29.806442212846346 ], [ -95.172292955111189, 29.806535213098606 ], [ -95.171880954608142, 29.806613213139681 ], [ -95.16953595442348, 29.807203213909165 ], [ -95.169299953761538, 29.807271213164274 ], [ -95.168565953470704, 29.80745221377266 ], [ -95.168313953317082, 29.807513213946802 ], [ -95.167349953631089, 29.807753213346764 ], [ -95.16643895337954, 29.807980214203599 ], [ -95.165868953509388, 29.80812421405696 ], [ -95.165391952684686, 29.808240214122215 ], [ -95.16493195266159, 29.808340213689934 ], [ -95.164556952752662, 29.808426213532105 ], [ -95.163895952362154, 29.808594214131752 ], [ -95.163515952823474, 29.808692213932773 ], [ -95.163415952454955, 29.808718214206969 ], [ -95.163300952386066, 29.808744213899455 ], [ -95.163315952675475, 29.808917214188376 ], [ -95.16331195233542, 29.809257214467785 ], [ -95.163415952392995, 29.810583214450258 ], [ -95.163607952221753, 29.812087214995532 ], [ -95.163895952889803, 29.813773214883337 ], [ -95.164159952722301, 29.815204215079902 ], [ -95.164378953308912, 29.815968215904448 ], [ -95.16472895339615, 29.817016215746428 ], [ -95.165017953757442, 29.818001215538914 ], [ -95.165228953371823, 29.818530215882209 ], [ -95.165418953328825, 29.81900721620741 ], [ -95.165495953519468, 29.819170215813088 ], [ -95.16611995396886, 29.820494216538528 ], [ -95.166715953777171, 29.82164221670455 ], [ -95.167006954249075, 29.822202216271052 ], [ -95.167050953738524, 29.822287216748066 ], [ -95.167837954495425, 29.823655217341475 ], [ -95.168365954511245, 29.824379217322896 ], [ -95.169187954756694, 29.825521217529541 ], [ -95.169865955376054, 29.826389217728355 ], [ -95.170459955506246, 29.827105217872923 ], [ -95.170778955507231, 29.827470217252831 ], [ -95.171085955721608, 29.827806217860367 ], [ -95.17131395541152, 29.828042217760938 ], [ -95.172169955331654, 29.828961218263785 ], [ -95.173912956008962, 29.830795218057457 ], [ -95.175203956810066, 29.832120218422812 ], [ -95.175306956407084, 29.832231218077542 ], [ -95.17552395710382, 29.832134218664976 ], [ -95.176002957260792, 29.831922218747884 ], [ -95.176294956981508, 29.831800218338579 ], [ -95.178279957141925, 29.830971218283864 ], [ -95.180196957696623, 29.829870217581131 ], [ -95.18087295784153, 29.829613217565377 ], [ -95.181969958657405, 29.829182217954326 ], [ -95.182455958695812, 29.828991217357238 ], [ -95.182740958261803, 29.828877217579386 ], [ -95.184571958685524, 29.828126217069705 ], [ -95.1855689591291, 29.827710217335717 ], [ -95.186724958859571, 29.827238216704423 ], [ -95.187991959214685, 29.826767216513801 ], [ -95.188568960304835, 29.826765216590921 ], [ -95.18903095938326, 29.826764217087245 ], [ -95.190547960391669, 29.826760216355588 ], [ -95.203044963590784, 29.82673121666415 ], [ -95.206685964197433, 29.826722216243091 ], [ -95.208161965058025, 29.826621216517417 ], [ -95.208167964903652, 29.827014216439991 ], [ -95.208305965407618, 29.827892216628712 ], [ -95.208568964485039, 29.828541216711269 ], [ -95.208613964948839, 29.828683216427201 ], [ -95.209025965071561, 29.829474216484208 ], [ -95.209376964986461, 29.830154216514611 ], [ -95.209566965323489, 29.83044221731793 ], [ -95.210503965569359, 29.831856217242024 ], [ -95.210817965534048, 29.832329217117479 ], [ -95.210992965993896, 29.832588217067489 ], [ -95.213043966331043, 29.831730217080597 ], [ -95.216133967145495, 29.83041921646273 ], [ -95.219207967566973, 29.829093216149602 ], [ -95.224721969487405, 29.826707215445975 ], [ -95.226805970028636, 29.825787215352435 ], [ -95.226990969806536, 29.825724215435642 ], [ -95.229822970673013, 29.824608215415683 ], [ -95.229931970670336, 29.824565214591338 ], [ -95.229909970722559, 29.824518215189535 ], [ -95.229755970333088, 29.824264215107636 ], [ -95.228559969769464, 29.822290214859756 ], [ -95.228448969329236, 29.822027214907067 ], [ -95.228375969935385, 29.821855214720351 ], [ -95.228392970160485, 29.821713214053361 ], [ -95.228494969717545, 29.821518214771579 ], [ -95.228649969596333, 29.821353213952793 ], [ -95.228753969898165, 29.821243214320759 ], [ -95.228927969515397, 29.821147214469072 ], [ -95.229211969714356, 29.821061214615636 ], [ -95.229532970388505, 29.820966214151102 ], [ -95.229652969855621, 29.820861214214553 ], [ -95.229790969659064, 29.820743214381032 ], [ -95.229872970396499, 29.82054021449779 ], [ -95.229880970111736, 29.819969214050719 ], [ -95.22994797031798, 29.819470214339798 ], [ -95.230070969943085, 29.819128213544417 ], [ -95.230217970188917, 29.818871213625712 ], [ -95.230366970199796, 29.8186982140932 ], [ -95.230755969977324, 29.818428213608101 ], [ -95.23085396985968, 29.818271213292899 ], [ -95.230896970466219, 29.818023213317517 ], [ -95.230844969751701, 29.817522213411802 ], [ -95.230558970237908, 29.816894213561689 ], [ -95.230422970280301, 29.816759213249682 ], [ -95.230165970016728, 29.81658321358589 ], [ -95.230018969867331, 29.81654421378914 ], [ -95.229930969627404, 29.816522213199072 ], [ -95.229028970211658, 29.816528213752804 ], [ -95.228743969786748, 29.816492212973394 ], [ -95.228666969911629, 29.816449213067376 ], [ -95.228604969198855, 29.816416213454943 ], [ -95.228572969405121, 29.816352213696721 ], [ -95.228555970066807, 29.816318213328866 ], [ -95.228558969583105, 29.816290213328326 ], [ -95.228571969895228, 29.816175213004708 ], [ -95.228591970105839, 29.816000213038738 ], [ -95.22875696944503, 29.815862212877075 ], [ -95.228973969549287, 29.815680213205976 ], [ -95.229268969966412, 29.815551212942186 ], [ -95.230215970020694, 29.815351212716021 ], [ -95.230754969861621, 29.81510921313296 ], [ -95.230885969779578, 29.814972213373377 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 929, "Tract": "48201430102", "Area_SqMi": 1.1250052739763685, "total_2009": 2414, "total_2010": 2150, "total_2011": 2284, "total_2012": 3041, "total_2013": 3344, "total_2014": 3215, "total_2015": 2896, "total_2016": 3525, "total_2017": 3690, "total_2018": 2931, "total_2019": 2990, "total_2020": 2866, "age1": 465, "age2": 1582, "age3": 777, "earn1": 366, "earn2": 687, "earn3": 1771, "naics_s01": 8, "naics_s02": 25, "naics_s03": 4, "naics_s04": 88, "naics_s05": 0, "naics_s06": 283, "naics_s07": 139, "naics_s08": 28, "naics_s09": 1, "naics_s10": 168, "naics_s11": 154, "naics_s12": 243, "naics_s13": 49, "naics_s14": 328, "naics_s15": 75, "naics_s16": 156, "naics_s17": 27, "naics_s18": 719, "naics_s19": 329, "naics_s20": 0, "race1": 2151, "race2": 439, "race3": 21, "race4": 166, "race5": 6, "race6": 41, "ethnicity1": 1924, "ethnicity2": 900, "edu1": 483, "edu2": 569, "edu3": 689, "edu4": 618, "Shape_Length": 36656.022591652581, "Shape_Area": 31363221.572691355, "total_2021": 2704, "total_2022": 2824 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.486539034128583, 29.783014197574705 ], [ -95.486532034374946, 29.782948197680451 ], [ -95.48648203433342, 29.782893197428479 ], [ -95.486381033829247, 29.78284419766976 ], [ -95.486381033770044, 29.782800197907598 ], [ -95.486463034056143, 29.782679197693799 ], [ -95.486400033860249, 29.782613197407333 ], [ -95.486324034497912, 29.782563197576572 ], [ -95.485996033552055, 29.782404197918165 ], [ -95.485977034311901, 29.78231119790809 ], [ -95.485996034204305, 29.782261197325028 ], [ -95.486009033607942, 29.782184197803399 ], [ -95.485996034124611, 29.782080197640415 ], [ -95.485946034268267, 29.782030197750903 ], [ -95.485857033748076, 29.781981197163407 ], [ -95.485712033705781, 29.781970197639485 ], [ -95.485511033867155, 29.781981198007308 ], [ -95.485341033911823, 29.78192619715217 ], [ -95.485246033541998, 29.781827197179005 ], [ -95.485088033710298, 29.781756197382414 ], [ -95.484871033346849, 29.781740197300916 ], [ -95.484759034002707, 29.781731197753786 ], [ -95.484647033350242, 29.781723197294049 ], [ -95.484553033520086, 29.781723197762453 ], [ -95.484509033768703, 29.781712197736052 ], [ -95.48443303314005, 29.781674197264415 ], [ -95.484414033811944, 29.781602197653392 ], [ -95.484414033437503, 29.781421197853241 ], [ -95.484351033766472, 29.781245197031581 ], [ -95.484300034026006, 29.781206197737866 ], [ -95.484237033756784, 29.781179197362313 ], [ -95.484155033505473, 29.781102197176939 ], [ -95.484105032991138, 29.781036197341312 ], [ -95.484105033269515, 29.780975197325802 ], [ -95.484225033407384, 29.780882197533366 ], [ -95.484231033088534, 29.780827197645479 ], [ -95.484193032992081, 29.780772197112693 ], [ -95.484061033385359, 29.780662197358737 ], [ -95.48401703314704, 29.780613197137043 ], [ -95.483985033585199, 29.780558197797241 ], [ -95.483985032901529, 29.780497197746254 ], [ -95.484004033025826, 29.780464197625459 ], [ -95.484073033317941, 29.780459197374245 ], [ -95.484287033579619, 29.780525197380808 ], [ -95.48436303368203, 29.780514197551458 ], [ -95.48439503352138, 29.78049219758422 ], [ -95.484407033350465, 29.780316197174272 ], [ -95.484382033366913, 29.780217197579464 ], [ -95.484382033970036, 29.780129197059267 ], [ -95.48436903335184, 29.78007919760498 ], [ -95.484394033733977, 29.779969197632006 ], [ -95.484501034011245, 29.779832197076335 ], [ -95.484615033449586, 29.779738197390685 ], [ -95.484646033312856, 29.779562197039862 ], [ -95.484634033775578, 29.779491196991188 ], [ -95.48460203339323, 29.779458196768093 ], [ -95.484520033367019, 29.779419196757683 ], [ -95.484363033569551, 29.779420197359183 ], [ -95.484155032954277, 29.779436196666889 ], [ -95.484073033360204, 29.7794311968321 ], [ -95.483978033876454, 29.779381197150048 ], [ -95.48394703386991, 29.779343197137138 ], [ -95.483946033154837, 29.779293197414781 ], [ -95.483965033587211, 29.779249196892181 ], [ -95.484022033803441, 29.779183196834982 ], [ -95.484072033523958, 29.779084196916362 ], [ -95.484079033545157, 29.778941197403547 ], [ -95.484060033575815, 29.77888619697076 ], [ -95.483921033221691, 29.778771196835198 ], [ -95.483707033317472, 29.778650196765145 ], [ -95.483612032859781, 29.778562196732622 ], [ -95.483530033097637, 29.778513196693925 ], [ -95.483253033465218, 29.778474197283632 ], [ -95.483221032877609, 29.778447196511426 ], [ -95.482963032607074, 29.778029196495734 ], [ -95.482812033396556, 29.777901196408916 ], [ -95.482680033073137, 29.777790196734724 ], [ -95.482566032714615, 29.777694196350783 ], [ -95.482276032496358, 29.777304196862964 ], [ -95.482238032327388, 29.777205196681159 ], [ -95.482238033028068, 29.777095197002037 ], [ -95.482225033175311, 29.777062196617191 ], [ -95.482124032497978, 29.776985196306853 ], [ -95.482023033230604, 29.776946196918487 ], [ -95.481941032737481, 29.776902196414405 ], [ -95.481891032565997, 29.776842196314202 ], [ -95.481866033044781, 29.776760196321529 ], [ -95.481859032735898, 29.776655196673406 ], [ -95.481840032272089, 29.77660619655807 ], [ -95.481777032543249, 29.776534196706432 ], [ -95.481532033098858, 29.776446196366763 ], [ -95.481361032958787, 29.776325196467649 ], [ -95.481225032794185, 29.776203196285334 ], [ -95.481109032799566, 29.776100196248738 ], [ -95.481008032389667, 29.77589119621528 ], [ -95.480863032150722, 29.775770196819323 ], [ -95.480643032751487, 29.775660196860688 ], [ -95.48029003244288, 29.775666196434184 ], [ -95.480157032325636, 29.775639196042725 ], [ -95.480031032190695, 29.775628196271533 ], [ -95.47989303220578, 29.775633196352672 ], [ -95.479804031951105, 29.775589196561508 ], [ -95.479798031850805, 29.775303196486284 ], [ -95.479861032039352, 29.775045196079432 ], [ -95.479848031637275, 29.774946196405956 ], [ -95.479804031924928, 29.774902196128078 ], [ -95.479653031954825, 29.774919196224477 ], [ -95.479565032288804, 29.774913196463594 ], [ -95.479502031863646, 29.774875195947313 ], [ -95.479464032405531, 29.774792195879776 ], [ -95.479476031860685, 29.774638196282627 ], [ -95.479463031877813, 29.774061196077735 ], [ -95.479407031568911, 29.773995196342103 ], [ -95.479129032328999, 29.773885196397774 ], [ -95.479035032205175, 29.773814195864826 ], [ -95.47894703152528, 29.773731196167358 ], [ -95.478883031953927, 29.773440195917704 ], [ -95.478883032102942, 29.773341196453522 ], [ -95.478524031261941, 29.773160195665891 ], [ -95.477956031307301, 29.77285519582729 ], [ -95.477642031712833, 29.772687196183643 ], [ -95.477446031494893, 29.772506196168226 ], [ -95.476809031219403, 29.771698195758614 ], [ -95.476639030670952, 29.771341195499652 ], [ -95.476456031140543, 29.771154195523842 ], [ -95.476357031390691, 29.771120196041451 ], [ -95.476280031428885, 29.771093195416594 ], [ -95.476059030708271, 29.771126195899242 ], [ -95.475814030750257, 29.771275195753429 ], [ -95.47561803048346, 29.771429195467274 ], [ -95.475486030529254, 29.771605195607933 ], [ -95.475373031298503, 29.771924195818219 ], [ -95.475297030690371, 29.772232195529543 ], [ -95.475215031113379, 29.772364196195088 ], [ -95.475133030607068, 29.772413195562173 ], [ -95.475039031033788, 29.772430195754382 ], [ -95.474932030750807, 29.772413196327285 ], [ -95.474686030635269, 29.772325196352295 ], [ -95.474421030185098, 29.772199195933439 ], [ -95.474226030107118, 29.772149195634192 ], [ -95.474093030242301, 29.772133195821795 ], [ -95.473904030170416, 29.77212719588367 ], [ -95.473615030156012, 29.77222119621096 ], [ -95.473520030590507, 29.772227195645605 ], [ -95.473407030207298, 29.772221196425416 ], [ -95.473249030455918, 29.772183195899217 ], [ -95.473047029866422, 29.772056195954221 ], [ -95.472852029906704, 29.771842195822419 ], [ -95.472606030353788, 29.77143019587059 ], [ -95.472486029743067, 29.771083195690572 ], [ -95.472417030513995, 29.770770195364367 ], [ -95.472354029513426, 29.770616195778647 ], [ -95.472240029565413, 29.770479195287365 ], [ -95.472089030120827, 29.770385195466147 ], [ -95.471963030218447, 29.770336195797942 ], [ -95.471766029894084, 29.770304195517188 ], [ -95.471723029822726, 29.77029719534633 ], [ -95.471478030268798, 29.770297195884069 ], [ -95.470772029827444, 29.770336196131829 ], [ -95.470697029821878, 29.770329195963772 ], [ -95.4705890292541, 29.770320195623679 ], [ -95.47034302975915, 29.770276195635521 ], [ -95.470135029396943, 29.770265195596668 ], [ -95.47000302947491, 29.770281195812775 ], [ -95.46973802891965, 29.770342195701861 ], [ -95.469045029239695, 29.770595196090557 ], [ -95.468787029049153, 29.770655196118184 ], [ -95.468623029016527, 29.770650195821062 ], [ -95.468548028730225, 29.770639195748547 ], [ -95.468466028573957, 29.770612196004528 ], [ -95.468396028931764, 29.770579195780289 ], [ -95.468289029057843, 29.770507195786823 ], [ -95.468150028585285, 29.770293195575761 ], [ -95.46809402901502, 29.770144195705726 ], [ -95.468068028747851, 29.770001195594968 ], [ -95.468012028451, 29.769837195565852 ], [ -95.467923028521938, 29.769655195421436 ], [ -95.467736028849771, 29.769477196000707 ], [ -95.467640028537176, 29.769386195912933 ], [ -95.46729302866575, 29.769155195950471 ], [ -95.467085028119769, 29.768990195985488 ], [ -95.466581028726083, 29.768748195799027 ], [ -95.466247028373601, 29.768638195439756 ], [ -95.465982028068055, 29.7686221952609 ], [ -95.465724028233112, 29.768628195130503 ], [ -95.465606027860971, 29.76864219528133 ], [ -95.46545302814269, 29.768661195344126 ], [ -95.465188028467068, 29.768666195378163 ], [ -95.464984028364199, 29.768492195294737 ], [ -95.464878028463346, 29.768263195193409 ], [ -95.464879028020519, 29.768084195152372 ], [ -95.465076027904971, 29.767351194894303 ], [ -95.465056027613556, 29.767100194925401 ], [ -95.464982028244549, 29.766975195590739 ], [ -95.464785027948835, 29.766925195129836 ], [ -95.46458802827739, 29.766972195051974 ], [ -95.463271027975637, 29.767770195751073 ], [ -95.463112027565401, 29.767806195793032 ], [ -95.46270602709933, 29.767797195452363 ], [ -95.462504027469663, 29.767675195800994 ], [ -95.462291027024193, 29.767414195390934 ], [ -95.462047026896755, 29.766812195295437 ], [ -95.461916026720445, 29.766289195112094 ], [ -95.46180102718462, 29.76609919519024 ], [ -95.461622026950351, 29.765950194851534 ], [ -95.461471026988065, 29.765873195523941 ], [ -95.460840026399723, 29.765551194608882 ], [ -95.459788026173243, 29.765142195442611 ], [ -95.459428026080616, 29.765077195073729 ], [ -95.458758026403714, 29.765130195172155 ], [ -95.458387026397929, 29.764852194960717 ], [ -95.458273026159119, 29.764553194923927 ], [ -95.458231025769237, 29.764444195350364 ], [ -95.458044025558038, 29.76412519466027 ], [ -95.457974026290572, 29.763847194714149 ], [ -95.45802402613289, 29.763674194868493 ], [ -95.458314026416204, 29.763326194423531 ], [ -95.45867902644676, 29.763038194751363 ], [ -95.459221026757007, 29.762874194529253 ], [ -95.459590026549151, 29.762872194583466 ], [ -95.460028026269299, 29.762976194260034 ], [ -95.460357027015363, 29.762969194567095 ], [ -95.460652026427908, 29.762846194402155 ], [ -95.460729026879875, 29.762761194311548 ], [ -95.46073302672086, 29.762619194844653 ], [ -95.460558027015111, 29.762378194360465 ], [ -95.460171026733207, 29.762113194823442 ], [ -95.459771026075714, 29.762026194289096 ], [ -95.459035026336153, 29.761961194507247 ], [ -95.458266026436064, 29.761723193927526 ], [ -95.458031026185168, 29.76158219401983 ], [ -95.457945025512345, 29.761460193876484 ], [ -95.457896025841109, 29.761213194045634 ], [ -95.458186026355904, 29.760431193733499 ], [ -95.458197026169117, 29.760109193965789 ], [ -95.458017025878718, 29.75955819369209 ], [ -95.457801026182864, 29.759395194246714 ], [ -95.457624025679763, 29.759371193968672 ], [ -95.456966025517573, 29.75957419357113 ], [ -95.456321025101005, 29.75989019396183 ], [ -95.456050025402249, 29.759972193827636 ], [ -95.45596902486021, 29.759969193985935 ], [ -95.455729025273712, 29.759962194402824 ], [ -95.455729025298268, 29.760027193959623 ], [ -95.45572802552222, 29.760091194017509 ], [ -95.455808025727819, 29.763366194434841 ], [ -95.455900025876147, 29.764466194637738 ], [ -95.455939025661735, 29.765174194787907 ], [ -95.455966025487612, 29.765661195215316 ], [ -95.456001026024197, 29.766014195633456 ], [ -95.456025025499912, 29.766318195653184 ], [ -95.456122025521907, 29.768162195945312 ], [ -95.456137025913719, 29.768421195638517 ], [ -95.456181025377333, 29.769797195864026 ], [ -95.456207025397532, 29.770985196288422 ], [ -95.45624902576742, 29.771973196531775 ], [ -95.456207025629112, 29.773043196320568 ], [ -95.456202026341956, 29.773234196926747 ], [ -95.456450026474059, 29.773230196437201 ], [ -95.456531026460837, 29.77322919697642 ], [ -95.456583026405283, 29.773229197166142 ], [ -95.456642026455853, 29.773228196346526 ], [ -95.457607026739382, 29.773216196417636 ], [ -95.458608026939189, 29.773205196828346 ], [ -95.459419026980044, 29.773196196393194 ], [ -95.459643026416472, 29.773198196654832 ], [ -95.459782026541163, 29.773200196947577 ], [ -95.460103026572639, 29.773231196309808 ], [ -95.460489027215587, 29.773336197021809 ], [ -95.460826027057195, 29.773497196830931 ], [ -95.461001026965008, 29.773661196760063 ], [ -95.461198027187592, 29.773865196631814 ], [ -95.461301027011018, 29.773993196698402 ], [ -95.461526027193401, 29.774362197123764 ], [ -95.461559027473072, 29.774686196826284 ], [ -95.461641027047193, 29.775659197348492 ], [ -95.461671027376724, 29.77579419676437 ], [ -95.461749027431893, 29.776144197018898 ], [ -95.461984027989246, 29.7766331973754 ], [ -95.462008027922721, 29.776684197392257 ], [ -95.462390027293452, 29.777135197625991 ], [ -95.462800028249617, 29.777574197613326 ], [ -95.46334902753523, 29.778047197468993 ], [ -95.463393027567108, 29.778078197130348 ], [ -95.463718028566859, 29.77830919784952 ], [ -95.464040028432734, 29.778518197944788 ], [ -95.464132028093871, 29.778557197424412 ], [ -95.46500902814158, 29.778972197689061 ], [ -95.465442028848642, 29.779102197538986 ], [ -95.466017029117452, 29.779228197505123 ], [ -95.466208028424887, 29.77927019769146 ], [ -95.466710028428409, 29.779347198105434 ], [ -95.467394029214518, 29.779367197501042 ], [ -95.467974029171984, 29.77937919746099 ], [ -95.468115029339856, 29.779379198019029 ], [ -95.469525029700904, 29.77932019717883 ], [ -95.470163030178142, 29.779308197945902 ], [ -95.470691030267162, 29.779299197763251 ], [ -95.471007029935166, 29.779256197508573 ], [ -95.471624029789226, 29.779134197162989 ], [ -95.471865030482206, 29.779095197682015 ], [ -95.472346030414357, 29.7789991977562 ], [ -95.472796030640566, 29.778990196972522 ], [ -95.473050030142147, 29.778983197486625 ], [ -95.473957030749673, 29.778958196992782 ], [ -95.474682031392717, 29.778944197539921 ], [ -95.475443031683213, 29.778932196986197 ], [ -95.475452031098129, 29.779074197273861 ], [ -95.475514031558703, 29.781175197723787 ], [ -95.475535031336619, 29.782344197878114 ], [ -95.475537030919355, 29.782426198064538 ], [ -95.475551031151753, 29.783169198072468 ], [ -95.4755440317481, 29.783472198495041 ], [ -95.475535031775934, 29.78372819840526 ], [ -95.475527031681395, 29.783817198210148 ], [ -95.475521031904591, 29.783883198205491 ], [ -95.475517031215645, 29.783924198120204 ], [ -95.475507031925517, 29.78401819830162 ], [ -95.475715031126398, 29.784005198031817 ], [ -95.477536032396515, 29.784043198177237 ], [ -95.478886032565626, 29.784020198299949 ], [ -95.479826032939883, 29.783971197875196 ], [ -95.48105003275414, 29.783998198138672 ], [ -95.481744033481633, 29.784028198482982 ], [ -95.484562034121481, 29.784148198466365 ], [ -95.484734033475135, 29.784145197962062 ], [ -95.484860034211465, 29.784146198154644 ], [ -95.485031034180281, 29.784152198294159 ], [ -95.486388034402026, 29.784273197879372 ], [ -95.48639103456884, 29.784163197740043 ], [ -95.486393034415968, 29.784069197621559 ], [ -95.486397034243538, 29.783928198382043 ], [ -95.486400033739542, 29.7838441976551 ], [ -95.486402033739836, 29.783746197965382 ], [ -95.486407034245872, 29.783581197756881 ], [ -95.486429034232088, 29.783455198252167 ], [ -95.486451034029272, 29.783333197400392 ], [ -95.486507034066094, 29.783196197889865 ], [ -95.486539034128583, 29.783014197574705 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 930, "Tract": "48201320202", "Area_SqMi": 0.77933244401833357, "total_2009": 292, "total_2010": 308, "total_2011": 295, "total_2012": 244, "total_2013": 275, "total_2014": 269, "total_2015": 345, "total_2016": 302, "total_2017": 279, "total_2018": 291, "total_2019": 302, "total_2020": 273, "age1": 46, "age2": 117, "age3": 78, "earn1": 61, "earn2": 119, "earn3": 61, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 18, "naics_s06": 0, "naics_s07": 21, "naics_s08": 9, "naics_s09": 0, "naics_s10": 5, "naics_s11": 10, "naics_s12": 15, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 25, "naics_s17": 0, "naics_s18": 115, "naics_s19": 6, "naics_s20": 0, "race1": 197, "race2": 29, "race3": 5, "race4": 10, "race5": 0, "race6": 0, "ethnicity1": 94, "ethnicity2": 147, "edu1": 68, "edu2": 48, "edu3": 45, "edu4": 34, "Shape_Length": 20235.08387990448, "Shape_Area": 21726454.6984226, "total_2021": 243, "total_2022": 241 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.278118976626189, 29.685756185100288 ], [ -95.278050976606636, 29.685686184713035 ], [ -95.277368975988608, 29.684985185198784 ], [ -95.277325976393783, 29.684938184488157 ], [ -95.277251976230403, 29.684864184831518 ], [ -95.277206975716055, 29.684819184811474 ], [ -95.276613976027392, 29.68422718502525 ], [ -95.275751976236819, 29.683369184443315 ], [ -95.27445897523846, 29.682129184184031 ], [ -95.273938975446853, 29.681611184552139 ], [ -95.273351975459462, 29.681026183714017 ], [ -95.272817975021951, 29.680489183824047 ], [ -95.272679974676251, 29.680351184045065 ], [ -95.272544975298288, 29.680415183914409 ], [ -95.272383974475588, 29.680491184318512 ], [ -95.272210974515531, 29.680573183851404 ], [ -95.271831974704455, 29.680752184445772 ], [ -95.271460974519144, 29.680741184186807 ], [ -95.270763973885749, 29.680801184107906 ], [ -95.269998974661846, 29.681068183951218 ], [ -95.269642973748006, 29.681313184453494 ], [ -95.268448973596804, 29.682359184809169 ], [ -95.267729973909454, 29.683102184837878 ], [ -95.267587973578458, 29.683361184909561 ], [ -95.267353973400034, 29.68353018445023 ], [ -95.266920973851896, 29.684076184854202 ], [ -95.26685997360326, 29.684152184816313 ], [ -95.266812973259249, 29.684225184525179 ], [ -95.266257973520027, 29.685077184997603 ], [ -95.266024973672046, 29.685436185516402 ], [ -95.265557972900567, 29.686319185453243 ], [ -95.264708972669226, 29.688388185721092 ], [ -95.264420973116714, 29.688825186007605 ], [ -95.264199972939281, 29.688809186015416 ], [ -95.262811973112818, 29.688707186230552 ], [ -95.262368973058273, 29.688766186430676 ], [ -95.262225972180488, 29.688835185904061 ], [ -95.262058972458945, 29.688994186172383 ], [ -95.261871972623055, 29.68957818615073 ], [ -95.26156697218596, 29.689915186710639 ], [ -95.260919971797193, 29.690126186257544 ], [ -95.260329972188913, 29.69014418652711 ], [ -95.260225972584564, 29.690147186484872 ], [ -95.260047972206522, 29.690201186168828 ], [ -95.2601209721457, 29.690276186691012 ], [ -95.261170972013474, 29.691354187008855 ], [ -95.262094973097021, 29.692344187199488 ], [ -95.262240972991151, 29.692501187128546 ], [ -95.262320972379044, 29.692586186927432 ], [ -95.262399973151375, 29.692671186782526 ], [ -95.263251972620424, 29.693585186712788 ], [ -95.264154973701793, 29.694564187568087 ], [ -95.264684972994772, 29.695137187082654 ], [ -95.265474973477893, 29.695972187046237 ], [ -95.265672973454642, 29.695841187070382 ], [ -95.265809973981732, 29.695750187229578 ], [ -95.265923973373333, 29.695717187536289 ], [ -95.266017973904283, 29.695717187326956 ], [ -95.266269974022393, 29.695783187129525 ], [ -95.266420974131378, 29.695772187703032 ], [ -95.26648197411518, 29.695742187220748 ], [ -95.266521973803307, 29.695723187444852 ], [ -95.26657897425595, 29.695635187489923 ], [ -95.26657897444872, 29.695552187159624 ], [ -95.266609973617079, 29.695448187533565 ], [ -95.266943974094247, 29.695288187527474 ], [ -95.267088973628844, 29.695239187616934 ], [ -95.267189974314945, 29.695250187149583 ], [ -95.267277974158532, 29.695316187235576 ], [ -95.267340974076163, 29.695376186974297 ], [ -95.267409974653674, 29.695415187268441 ], [ -95.267554974167837, 29.695415187608976 ], [ -95.267856973769881, 29.695388187418903 ], [ -95.268329974631968, 29.695300187206232 ], [ -95.268486974846496, 29.695322186848387 ], [ -95.268643974740954, 29.695300187455349 ], [ -95.268832974196499, 29.695228186716079 ], [ -95.26904097501351, 29.695124187006499 ], [ -95.269179974412495, 29.695075187393403 ], [ -95.269267974677277, 29.695080187544288 ], [ -95.269380975114089, 29.695108187327367 ], [ -95.270092974569721, 29.695465187316259 ], [ -95.270180974790833, 29.695559187401187 ], [ -95.270211974407658, 29.695625187458198 ], [ -95.270300974989382, 29.695680186803099 ], [ -95.270381974556997, 29.695713187249538 ], [ -95.270451975226067, 29.695696187315246 ], [ -95.270507974716324, 29.695696187126611 ], [ -95.270602975187188, 29.695713186944097 ], [ -95.270910975445048, 29.695988187601586 ], [ -95.271313975415751, 29.69630118731078 ], [ -95.271603975066455, 29.696257186855398 ], [ -95.272094975209143, 29.696802186947512 ], [ -95.272187975378941, 29.696803187226507 ], [ -95.272491975841064, 29.696808187095762 ], [ -95.272894975194717, 29.696786187714828 ], [ -95.272982975995006, 29.696753186903955 ], [ -95.273240975636384, 29.696687186984281 ], [ -95.273454976233978, 29.696681187214679 ], [ -95.273587976176856, 29.696698187102765 ], [ -95.274027976423341, 29.696885187369812 ], [ -95.274298975879788, 29.696923187631224 ], [ -95.274607976239878, 29.696913187043013 ], [ -95.274789975930886, 29.696836187152506 ], [ -95.27494797565943, 29.696742187648333 ], [ -95.275073976402126, 29.696643186925396 ], [ -95.275161975733397, 29.696605187288746 ], [ -95.275224976161354, 29.696599187299629 ], [ -95.275312976078609, 29.696610187313905 ], [ -95.275564976172149, 29.696660186994215 ], [ -95.27602497668758, 29.696544187039276 ], [ -95.276232976063639, 29.696660187113995 ], [ -95.276490976898145, 29.696858186952038 ], [ -95.276628976360627, 29.697111186895224 ], [ -95.277565976406194, 29.697572187356823 ], [ -95.277794977136637, 29.697572187133005 ], [ -95.277777976930111, 29.696541187341747 ], [ -95.277765977323725, 29.695806186809545 ], [ -95.277735976362422, 29.695734187237218 ], [ -95.277721976674215, 29.694643186290453 ], [ -95.277686977226168, 29.693572186550696 ], [ -95.277647976184781, 29.692472185960902 ], [ -95.277640976585275, 29.691372186388421 ], [ -95.277612976555176, 29.690267185746269 ], [ -95.277569976351415, 29.689197185429336 ], [ -95.277516976765256, 29.687369184827197 ], [ -95.277494976812108, 29.68626618496539 ], [ -95.277654976596509, 29.686065185225896 ], [ -95.277901976065507, 29.685898185045172 ], [ -95.277995976675783, 29.685834184695956 ], [ -95.278021976088411, 29.685816185295177 ], [ -95.278118976626189, 29.685756185100288 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 931, "Tract": "48201320201", "Area_SqMi": 0.83170763287000971, "total_2009": 622, "total_2010": 535, "total_2011": 519, "total_2012": 492, "total_2013": 530, "total_2014": 526, "total_2015": 621, "total_2016": 610, "total_2017": 544, "total_2018": 503, "total_2019": 511, "total_2020": 415, "age1": 60, "age2": 197, "age3": 91, "earn1": 35, "earn2": 104, "earn3": 209, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 33, "naics_s06": 32, "naics_s07": 83, "naics_s08": 22, "naics_s09": 0, "naics_s10": 0, "naics_s11": 28, "naics_s12": 5, "naics_s13": 0, "naics_s14": 0, "naics_s15": 2, "naics_s16": 27, "naics_s17": 0, "naics_s18": 10, "naics_s19": 78, "naics_s20": 0, "race1": 308, "race2": 17, "race3": 7, "race4": 16, "race5": 0, "race6": 0, "ethnicity1": 195, "ethnicity2": 153, "edu1": 60, "edu2": 82, "edu3": 90, "edu4": 56, "Shape_Length": 27776.13102776909, "Shape_Area": 23186585.322575726, "total_2021": 385, "total_2022": 348 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.277905977578413, 29.702299188164311 ], [ -95.27791597759321, 29.702078188312502 ], [ -95.277901977355839, 29.70156418816865 ], [ -95.27787797670517, 29.700845187697158 ], [ -95.277853976812338, 29.699533187537241 ], [ -95.277841976551173, 29.699050187303996 ], [ -95.277813977431038, 29.698324187545985 ], [ -95.277800976831031, 29.697896187281305 ], [ -95.277794977136637, 29.697572187133005 ], [ -95.277565976406194, 29.697572187356823 ], [ -95.276628976360627, 29.697111186895224 ], [ -95.276490976898145, 29.696858186952038 ], [ -95.276232976063639, 29.696660187113995 ], [ -95.27602497668758, 29.696544187039276 ], [ -95.275564976172149, 29.696660186994215 ], [ -95.275312976078609, 29.696610187313905 ], [ -95.275224976161354, 29.696599187299629 ], [ -95.275161975733397, 29.696605187288746 ], [ -95.275073976402126, 29.696643186925396 ], [ -95.27494797565943, 29.696742187648333 ], [ -95.274789975930886, 29.696836187152506 ], [ -95.274607976239878, 29.696913187043013 ], [ -95.274298975879788, 29.696923187631224 ], [ -95.274027976423341, 29.696885187369812 ], [ -95.273587976176856, 29.696698187102765 ], [ -95.273454976233978, 29.696681187214679 ], [ -95.273240975636384, 29.696687186984281 ], [ -95.272982975995006, 29.696753186903955 ], [ -95.272894975194717, 29.696786187714828 ], [ -95.272491975841064, 29.696808187095762 ], [ -95.272187975378941, 29.696803187226507 ], [ -95.272094975209143, 29.696802186947512 ], [ -95.271603975066455, 29.696257186855398 ], [ -95.271313975415751, 29.69630118731078 ], [ -95.270910975445048, 29.695988187601586 ], [ -95.270602975187188, 29.695713186944097 ], [ -95.270507974716324, 29.695696187126611 ], [ -95.270451975226067, 29.695696187315246 ], [ -95.270381974556997, 29.695713187249538 ], [ -95.270300974989382, 29.695680186803099 ], [ -95.270211974407658, 29.695625187458198 ], [ -95.270180974790833, 29.695559187401187 ], [ -95.270092974569721, 29.695465187316259 ], [ -95.269380975114089, 29.695108187327367 ], [ -95.269267974677277, 29.695080187544288 ], [ -95.269179974412495, 29.695075187393403 ], [ -95.26904097501351, 29.695124187006499 ], [ -95.268832974196499, 29.695228186716079 ], [ -95.268643974740954, 29.695300187455349 ], [ -95.268486974846496, 29.695322186848387 ], [ -95.268329974631968, 29.695300187206232 ], [ -95.267856973769881, 29.695388187418903 ], [ -95.267554974167837, 29.695415187608976 ], [ -95.267409974653674, 29.695415187268441 ], [ -95.267340974076163, 29.695376186974297 ], [ -95.267277974158532, 29.695316187235576 ], [ -95.267189974314945, 29.695250187149583 ], [ -95.267088973628844, 29.695239187616934 ], [ -95.266943974094247, 29.695288187527474 ], [ -95.266609973617079, 29.695448187533565 ], [ -95.26657897444872, 29.695552187159624 ], [ -95.26657897425595, 29.695635187489923 ], [ -95.266521973803307, 29.695723187444852 ], [ -95.26648197411518, 29.695742187220748 ], [ -95.266420974131378, 29.695772187703032 ], [ -95.266269974022393, 29.695783187129525 ], [ -95.266017973904283, 29.695717187326956 ], [ -95.265923973373333, 29.695717187536289 ], [ -95.265809973981732, 29.695750187229578 ], [ -95.265672973454642, 29.695841187070382 ], [ -95.265474973477893, 29.695972187046237 ], [ -95.264684972994772, 29.695137187082654 ], [ -95.264154973701793, 29.694564187568087 ], [ -95.263251972620424, 29.693585186712788 ], [ -95.262399973151375, 29.692671186782526 ], [ -95.262320972379044, 29.692586186927432 ], [ -95.262240972991151, 29.692501187128546 ], [ -95.262094973097021, 29.692344187199488 ], [ -95.261170972013474, 29.691354187008855 ], [ -95.2601209721457, 29.690276186691012 ], [ -95.260047972206522, 29.690201186168828 ], [ -95.259410971809189, 29.690393186799906 ], [ -95.259016971444879, 29.690585186359325 ], [ -95.258288972146829, 29.69126518666415 ], [ -95.258028971489082, 29.691439186984745 ], [ -95.257300971823696, 29.691683186449037 ], [ -95.256730971612896, 29.691725187077012 ], [ -95.25654897085424, 29.691893186566105 ], [ -95.256052970805968, 29.692215186983596 ], [ -95.25577397106548, 29.692479187408107 ], [ -95.255419970809101, 29.692959187530228 ], [ -95.25535097078405, 29.693348187642908 ], [ -95.255502970719036, 29.693743187445108 ], [ -95.255777970935611, 29.694049187054613 ], [ -95.256100971367687, 29.694100187263416 ], [ -95.25688097115659, 29.694068187532501 ], [ -95.257372971260153, 29.694100187334467 ], [ -95.257559971839626, 29.694172187369002 ], [ -95.257989972079258, 29.694558187419062 ], [ -95.258297971600811, 29.694658187296969 ], [ -95.258542971521251, 29.694637187259623 ], [ -95.259315972081225, 29.694392187407651 ], [ -95.25959697207584, 29.694355187709814 ], [ -95.259899972134164, 29.69446718747577 ], [ -95.260098972704654, 29.694596187540085 ], [ -95.260498971924207, 29.694960187171251 ], [ -95.260525971925844, 29.694985187049731 ], [ -95.260872972592665, 29.695094187705607 ], [ -95.261423972808316, 29.695819187390239 ], [ -95.261628973019953, 29.696089187684294 ], [ -95.262443972739746, 29.696191187912518 ], [ -95.262619972526764, 29.696284187429594 ], [ -95.26268197297189, 29.696382187188266 ], [ -95.262756973122691, 29.696502187640228 ], [ -95.262767972591931, 29.696892187391697 ], [ -95.262676972888428, 29.69712618783765 ], [ -95.262517973439643, 29.697239187912682 ], [ -95.262041972836968, 29.697413188122731 ], [ -95.262166973226499, 29.697982187831634 ], [ -95.262493972978888, 29.698563187681398 ], [ -95.263142973066095, 29.699389188124737 ], [ -95.264722973959692, 29.700912188668571 ], [ -95.265165973911579, 29.70152018832048 ], [ -95.265268974059907, 29.701977189004864 ], [ -95.265234974362926, 29.702734188971277 ], [ -95.265164974399923, 29.702979189110465 ], [ -95.264944973768806, 29.703366188916334 ], [ -95.264724974090541, 29.703627188697467 ], [ -95.264348973834544, 29.703909189029432 ], [ -95.263210973678952, 29.704564189276706 ], [ -95.261519972913163, 29.705145189615617 ], [ -95.259631972789194, 29.705877190019926 ], [ -95.258157972484753, 29.706865190103006 ], [ -95.257520971683959, 29.707198190333237 ], [ -95.257086972017589, 29.707583190094507 ], [ -95.257058971761211, 29.707620190322388 ], [ -95.256904972236711, 29.707820190378726 ], [ -95.257210971944161, 29.707872189958326 ], [ -95.261270972828868, 29.708558189805149 ], [ -95.261659973355407, 29.708624189845732 ], [ -95.262481973094452, 29.708804189892639 ], [ -95.264153974447325, 29.709145190087295 ], [ -95.265725974181251, 29.709549190568843 ], [ -95.266375974844507, 29.709712190053075 ], [ -95.266742975081968, 29.709803190431067 ], [ -95.266991974473754, 29.709866190072844 ], [ -95.267183974666864, 29.709914189977418 ], [ -95.267348975259097, 29.709729190350377 ], [ -95.267571975249211, 29.709538189949605 ], [ -95.267759974558416, 29.709363190034107 ], [ -95.267863974975086, 29.709285189798273 ], [ -95.267969975165869, 29.709204190462014 ], [ -95.268444974675376, 29.70887319018366 ], [ -95.268817975586316, 29.708650189566768 ], [ -95.269307975575714, 29.708374189842683 ], [ -95.269672975530796, 29.708185190045111 ], [ -95.270209974924754, 29.707914190111033 ], [ -95.270688975480027, 29.707653189899919 ], [ -95.271065975799033, 29.707487189277312 ], [ -95.271440975550789, 29.707286189174617 ], [ -95.272080976144991, 29.706932189876586 ], [ -95.272555975716855, 29.706602189226547 ], [ -95.272773975731042, 29.706449189546568 ], [ -95.274088976708455, 29.705449188823373 ], [ -95.274237975906331, 29.705335189322057 ], [ -95.274436976664205, 29.705192189384494 ], [ -95.275810976768241, 29.704204188432012 ], [ -95.276056976717356, 29.704027188473109 ], [ -95.277731977636762, 29.702799188478267 ], [ -95.277887977189025, 29.702685188264873 ], [ -95.277905977578413, 29.702299188164311 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 932, "Tract": "48201313802", "Area_SqMi": 0.50565952503552603, "total_2009": 605, "total_2010": 605, "total_2011": 604, "total_2012": 543, "total_2013": 563, "total_2014": 616, "total_2015": 886, "total_2016": 844, "total_2017": 768, "total_2018": 710, "total_2019": 753, "total_2020": 786, "age1": 266, "age2": 782, "age3": 331, "earn1": 405, "earn2": 394, "earn3": 580, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 115, "naics_s05": 15, "naics_s06": 119, "naics_s07": 100, "naics_s08": 32, "naics_s09": 2, "naics_s10": 0, "naics_s11": 18, "naics_s12": 247, "naics_s13": 0, "naics_s14": 270, "naics_s15": 0, "naics_s16": 433, "naics_s17": 0, "naics_s18": 28, "naics_s19": 0, "naics_s20": 0, "race1": 777, "race2": 529, "race3": 5, "race4": 43, "race5": 3, "race6": 22, "ethnicity1": 1011, "ethnicity2": 368, "edu1": 274, "edu2": 299, "edu3": 362, "edu4": 178, "Shape_Length": 24098.281572655833, "Shape_Area": 14096922.113063984, "total_2021": 848, "total_2022": 1379 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.38120000271627, 29.680762180111131 ], [ -95.381211002637883, 29.680721180574974 ], [ -95.381130002350616, 29.680722180419359 ], [ -95.380983002668671, 29.680730180268252 ], [ -95.380767002517985, 29.680735180098644 ], [ -95.379281002227756, 29.680770180854566 ], [ -95.376421001577157, 29.680818180630048 ], [ -95.375512001103985, 29.680844180656518 ], [ -95.374546000505788, 29.68087218043328 ], [ -95.373863001076998, 29.680891180917669 ], [ -95.371667000722979, 29.680937181169377 ], [ -95.370914999839826, 29.680944181216375 ], [ -95.36705299906906, 29.680976180905347 ], [ -95.366655998511163, 29.680979181225464 ], [ -95.366533999146341, 29.681290181374386 ], [ -95.366325999051639, 29.681756181150387 ], [ -95.366038999074974, 29.682434181632775 ], [ -95.365819998866996, 29.68311218121401 ], [ -95.368272999226434, 29.683902181059334 ], [ -95.371526000563762, 29.684904181398064 ], [ -95.371661000019685, 29.684951181258018 ], [ -95.374732001296096, 29.685909181829377 ], [ -95.374445000963306, 29.686586181972768 ], [ -95.374176001138594, 29.687256182072296 ], [ -95.373901001094069, 29.687933181909649 ], [ -95.373631001534648, 29.688606182302308 ], [ -95.373441000777021, 29.689058182158718 ], [ -95.37358900150322, 29.689114182391464 ], [ -95.37518500189276, 29.689615182104429 ], [ -95.37529700134904, 29.689670182328104 ], [ -95.375417001145991, 29.689692182112463 ], [ -95.374620001354202, 29.691757182762597 ], [ -95.37400100191671, 29.693308183124913 ], [ -95.373727001425138, 29.693994183544831 ], [ -95.372919001223153, 29.693756183344934 ], [ -95.372122000506536, 29.693527183435311 ], [ -95.371294000666026, 29.693287183449474 ], [ -95.371220000280218, 29.693500183514445 ], [ -95.370755000174967, 29.694722183768707 ], [ -95.369950000032375, 29.694486183236908 ], [ -95.369176000243712, 29.694260183258717 ], [ -95.368382999737889, 29.694015183664089 ], [ -95.367791999670786, 29.6954671837969 ], [ -95.368588999614872, 29.69570318421448 ], [ -95.369386000389738, 29.695948184054469 ], [ -95.370177000488113, 29.696184183630454 ], [ -95.37096700074801, 29.696434183514835 ], [ -95.371114000308154, 29.696486183579093 ], [ -95.371768000629572, 29.696670183589941 ], [ -95.372577001504581, 29.696919183782622 ], [ -95.373410001085034, 29.697171184002404 ], [ -95.374493001739552, 29.697500184385856 ], [ -95.375330001949948, 29.697756183874727 ], [ -95.375696001739882, 29.697875184503129 ], [ -95.376283001783392, 29.698065183829133 ], [ -95.377229002206931, 29.695040183378197 ], [ -95.377467002213237, 29.694226183714381 ], [ -95.37785500201997, 29.692849183277978 ], [ -95.37815800187056, 29.691574182737085 ], [ -95.378252002403627, 29.691239182938844 ], [ -95.378385002122144, 29.690784182881078 ], [ -95.378409002801106, 29.690702182512016 ], [ -95.379275002234209, 29.687689181755722 ], [ -95.379420002249603, 29.687300181433713 ], [ -95.379549002774297, 29.686928181831416 ], [ -95.37962900260797, 29.686768181722552 ], [ -95.37979500279657, 29.686461181545347 ], [ -95.380027003035309, 29.686100181597812 ], [ -95.380242002385529, 29.685781181112016 ], [ -95.380318002538161, 29.68563118160646 ], [ -95.380514002698419, 29.685168181228477 ], [ -95.380628003125693, 29.684899180933346 ], [ -95.380697002937353, 29.684567180939137 ], [ -95.380724003146426, 29.684248180706955 ], [ -95.380801003025297, 29.682494180749273 ], [ -95.380919002951188, 29.681871180205381 ], [ -95.381185002677, 29.680822180425956 ], [ -95.381200003198927, 29.680788180104031 ], [ -95.38120000271627, 29.680762180111131 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 933, "Tract": "48201333203", "Area_SqMi": 0.7484011453670224, "total_2009": 5015, "total_2010": 4769, "total_2011": 4085, "total_2012": 4036, "total_2013": 4085, "total_2014": 7036, "total_2015": 5292, "total_2016": 2097, "total_2017": 2120, "total_2018": 5958, "total_2019": 6060, "total_2020": 5927, "age1": 706, "age2": 3465, "age3": 1772, "earn1": 695, "earn2": 1182, "earn3": 4066, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 410, "naics_s05": 52, "naics_s06": 46, "naics_s07": 35, "naics_s08": 3893, "naics_s09": 0, "naics_s10": 52, "naics_s11": 10, "naics_s12": 58, "naics_s13": 498, "naics_s14": 188, "naics_s15": 39, "naics_s16": 35, "naics_s17": 0, "naics_s18": 390, "naics_s19": 233, "naics_s20": 4, "race1": 4166, "race2": 1392, "race3": 52, "race4": 210, "race5": 17, "race6": 106, "ethnicity1": 4438, "ethnicity2": 1505, "edu1": 826, "edu2": 1426, "edu3": 1814, "edu4": 1171, "Shape_Length": 23342.595786902591, "Shape_Area": 20864143.031470772, "total_2021": 5114, "total_2022": 5943 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.275017974904785, 29.665593180935691 ], [ -95.274974974950041, 29.664225180281015 ], [ -95.274941975016304, 29.662972180461836 ], [ -95.271853973907, 29.663023180866738 ], [ -95.271832974395096, 29.663023180069665 ], [ -95.271718973498764, 29.66299118044828 ], [ -95.271685973846232, 29.66282018015696 ], [ -95.271701974297244, 29.662531180568575 ], [ -95.271823973745683, 29.662231179947735 ], [ -95.272182973735156, 29.661923179953227 ], [ -95.272322973473251, 29.661724180205887 ], [ -95.272425974119244, 29.661461180308507 ], [ -95.272369974352188, 29.660158179908723 ], [ -95.272337973586644, 29.659006179999281 ], [ -95.272321974088428, 29.658436179375489 ], [ -95.272320973411567, 29.658368179810264 ], [ -95.272316973507628, 29.657985179309975 ], [ -95.270249973734664, 29.658047179240139 ], [ -95.269978972717297, 29.658054179539644 ], [ -95.269607973089762, 29.658061179162011 ], [ -95.268443972539359, 29.658031179255769 ], [ -95.267632972572116, 29.65786917972197 ], [ -95.26740197216597, 29.657780179591725 ], [ -95.26733497297927, 29.657755179176888 ], [ -95.267106972214677, 29.657653179105647 ], [ -95.266003972410061, 29.657159179228163 ], [ -95.265321972242788, 29.656715179558603 ], [ -95.264520971647769, 29.656080179497632 ], [ -95.263979971137459, 29.65562017899374 ], [ -95.262798970697958, 29.654637179241618 ], [ -95.262480970639686, 29.654373179361599 ], [ -95.262294971230446, 29.654216179068204 ], [ -95.261182970890076, 29.653311178950908 ], [ -95.260785970537398, 29.65305817835057 ], [ -95.260248970002607, 29.652747178529239 ], [ -95.259492970182805, 29.652426178366479 ], [ -95.258915970466617, 29.652298178249236 ], [ -95.258320969548592, 29.652166178856152 ], [ -95.258115969784058, 29.652131179075266 ], [ -95.257774969731472, 29.652117178831062 ], [ -95.257385970175534, 29.65211017850099 ], [ -95.257002969895296, 29.652114178347478 ], [ -95.256152968969047, 29.652133179133347 ], [ -95.25536396875053, 29.652151178419945 ], [ -95.255011969590186, 29.65215517869812 ], [ -95.25442196860655, 29.652160178489801 ], [ -95.253763968499669, 29.652172178714899 ], [ -95.253372968745211, 29.652181179167677 ], [ -95.252929968793822, 29.652202178689418 ], [ -95.252554968334223, 29.652262178832398 ], [ -95.252219968894678, 29.652351178524537 ], [ -95.251812968151995, 29.652460178488386 ], [ -95.251599968426405, 29.652508179147649 ], [ -95.251707968391116, 29.652673178869215 ], [ -95.254641969092006, 29.657164179551859 ], [ -95.256330969669222, 29.65971318041078 ], [ -95.258333970150929, 29.66272218078031 ], [ -95.258372970039147, 29.662781181092885 ], [ -95.258546970617743, 29.663056180801298 ], [ -95.258557970496113, 29.663073181290187 ], [ -95.258582970128998, 29.663113180711896 ], [ -95.258776970595193, 29.663420180683335 ], [ -95.259915971113557, 29.665222181459626 ], [ -95.260293970550009, 29.665796181139012 ], [ -95.261003970801198, 29.666876181256168 ], [ -95.262330972216006, 29.66889418156584 ], [ -95.262405971343028, 29.66900718215301 ], [ -95.262491972017543, 29.669139182352883 ], [ -95.262672971341559, 29.669041181656468 ], [ -95.263046971928631, 29.66856818173115 ], [ -95.263192971668559, 29.667929181421897 ], [ -95.263172971522735, 29.667100181950534 ], [ -95.263176971658595, 29.666288181467824 ], [ -95.26315897142301, 29.665458181289686 ], [ -95.267061973251771, 29.665380181405443 ], [ -95.267614973159354, 29.665372181125292 ], [ -95.26829497302964, 29.665363181014563 ], [ -95.269043973449413, 29.665344181156989 ], [ -95.269803973960492, 29.665320181100107 ], [ -95.270343973216299, 29.665344181309891 ], [ -95.270661974056054, 29.665386181274712 ], [ -95.271027974015198, 29.665459180716994 ], [ -95.271073973521524, 29.665467180975089 ], [ -95.272040973695638, 29.665635181047652 ], [ -95.272869974556897, 29.665639180715782 ], [ -95.27314897415684, 29.665634181369846 ], [ -95.275017974904785, 29.665593180935691 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 934, "Tract": "48201510602", "Area_SqMi": 0.46147175779573618, "total_2009": 3188, "total_2010": 3413, "total_2011": 3384, "total_2012": 3272, "total_2013": 3090, "total_2014": 3190, "total_2015": 3239, "total_2016": 3276, "total_2017": 3337, "total_2018": 2960, "total_2019": 2690, "total_2020": 2515, "age1": 616, "age2": 1403, "age3": 655, "earn1": 351, "earn2": 882, "earn3": 1441, "naics_s01": 1, "naics_s02": 45, "naics_s03": 0, "naics_s04": 491, "naics_s05": 188, "naics_s06": 125, "naics_s07": 87, "naics_s08": 74, "naics_s09": 40, "naics_s10": 97, "naics_s11": 116, "naics_s12": 219, "naics_s13": 64, "naics_s14": 144, "naics_s15": 0, "naics_s16": 250, "naics_s17": 43, "naics_s18": 551, "naics_s19": 139, "naics_s20": 0, "race1": 2139, "race2": 297, "race3": 28, "race4": 165, "race5": 3, "race6": 42, "ethnicity1": 1688, "ethnicity2": 986, "edu1": 460, "edu2": 519, "edu3": 652, "edu4": 427, "Shape_Length": 16198.110513691956, "Shape_Area": 12865042.790538112, "total_2021": 2594, "total_2022": 2674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429169019614818, 29.777660198478038 ], [ -95.429021018834916, 29.777539198766718 ], [ -95.428852019254251, 29.777401198504499 ], [ -95.428713019251219, 29.777287198194927 ], [ -95.428379019003444, 29.777016198232225 ], [ -95.42801201886985, 29.776668198386986 ], [ -95.427309019084703, 29.775998198484736 ], [ -95.427252018829776, 29.775930197950171 ], [ -95.426772018648805, 29.775393198270347 ], [ -95.426209018541954, 29.77473519828326 ], [ -95.425905018105766, 29.774396197927935 ], [ -95.425041018021133, 29.773397197896269 ], [ -95.424880017925958, 29.773233197987896 ], [ -95.424192017320408, 29.772413197571296 ], [ -95.423636017374832, 29.771801197896238 ], [ -95.423230017465713, 29.771416197352249 ], [ -95.423106017116098, 29.771270197552422 ], [ -95.422948017285094, 29.771169197135883 ], [ -95.422721016983033, 29.771096197198105 ], [ -95.422158017232704, 29.771062197233586 ], [ -95.421853017193683, 29.771047197419914 ], [ -95.421156016514118, 29.770967197882189 ], [ -95.420207016836642, 29.770906197948698 ], [ -95.419325016822413, 29.770834197207343 ], [ -95.418489016579429, 29.770770198022916 ], [ -95.417445015777815, 29.770658197693766 ], [ -95.416353016088166, 29.770602197887769 ], [ -95.415362015512869, 29.770527197355374 ], [ -95.414954015492768, 29.770508198075152 ], [ -95.414381015638213, 29.770482197660161 ], [ -95.413424014882835, 29.77043419807897 ], [ -95.412500015037011, 29.770431197711883 ], [ -95.411532014646227, 29.770442198099527 ], [ -95.410590014254851, 29.770468197683449 ], [ -95.409794013572821, 29.770462198176737 ], [ -95.409470014273793, 29.770475197605382 ], [ -95.409495013945957, 29.771203198330756 ], [ -95.409500013691215, 29.771945198485827 ], [ -95.409521014449808, 29.77269519864377 ], [ -95.409523014495221, 29.772874197942269 ], [ -95.409526013714967, 29.773065198606545 ], [ -95.409529013628486, 29.773408198042066 ], [ -95.409559014279722, 29.774124198633587 ], [ -95.409554014650453, 29.774853198333489 ], [ -95.409550013681184, 29.775570198590941 ], [ -95.409576014299432, 29.77631419926248 ], [ -95.409603014707486, 29.777064199398673 ], [ -95.409605014178055, 29.777417199197657 ], [ -95.409606014555905, 29.777518199430503 ], [ -95.409612013760878, 29.777661199509151 ], [ -95.410728014666773, 29.777664198906514 ], [ -95.410963014363389, 29.777680199508396 ], [ -95.411860015109028, 29.77766619930566 ], [ -95.41339001565504, 29.777642198789451 ], [ -95.417227015842158, 29.777581199006118 ], [ -95.418060016357913, 29.777568198602644 ], [ -95.42200401700515, 29.777504199197882 ], [ -95.42224601740341, 29.77750119912098 ], [ -95.42250201744919, 29.77749819861539 ], [ -95.424243018110857, 29.777479198409875 ], [ -95.424944017827002, 29.777471198560189 ], [ -95.425522018319128, 29.777465198664874 ], [ -95.425681018031099, 29.777463198381199 ], [ -95.426529019023064, 29.777472199110619 ], [ -95.427352018393833, 29.777509198813377 ], [ -95.42790101920049, 29.777519198534094 ], [ -95.428711018837092, 29.777605198374008 ], [ -95.429169019614818, 29.777660198478038 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 935, "Tract": "48201510801", "Area_SqMi": 0.33636536669369754, "total_2009": 1571, "total_2010": 1425, "total_2011": 1512, "total_2012": 1478, "total_2013": 1497, "total_2014": 1550, "total_2015": 1547, "total_2016": 1713, "total_2017": 1521, "total_2018": 1343, "total_2019": 1405, "total_2020": 1430, "age1": 358, "age2": 668, "age3": 257, "earn1": 251, "earn2": 380, "earn3": 652, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 77, "naics_s05": 1, "naics_s06": 29, "naics_s07": 140, "naics_s08": 1, "naics_s09": 4, "naics_s10": 56, "naics_s11": 200, "naics_s12": 306, "naics_s13": 0, "naics_s14": 40, "naics_s15": 70, "naics_s16": 48, "naics_s17": 42, "naics_s18": 204, "naics_s19": 65, "naics_s20": 0, "race1": 1010, "race2": 156, "race3": 14, "race4": 71, "race5": 3, "race6": 29, "ethnicity1": 826, "ethnicity2": 457, "edu1": 212, "edu2": 216, "edu3": 242, "edu4": 255, "Shape_Length": 15011.652679635834, "Shape_Area": 9377290.7283416092, "total_2021": 1477, "total_2022": 1283 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.422695016855911, 29.761670195577423 ], [ -95.422687016862582, 29.761506195506929 ], [ -95.422175016455455, 29.761380195941491 ], [ -95.421466016172388, 29.761327195368249 ], [ -95.420927016324399, 29.761364195123416 ], [ -95.420085016703794, 29.761359195270483 ], [ -95.41921101625941, 29.761368195381234 ], [ -95.418386015762138, 29.761375195804217 ], [ -95.417570015647371, 29.76138319542385 ], [ -95.416943015497012, 29.761417195532932 ], [ -95.416217014939804, 29.761487195775768 ], [ -95.416223015392788, 29.762070196135632 ], [ -95.416246015764017, 29.763084195732656 ], [ -95.416247015813767, 29.763148196328025 ], [ -95.416255015438651, 29.763324195959285 ], [ -95.416256015777336, 29.763346196035599 ], [ -95.416257015332818, 29.763470196067946 ], [ -95.416283015831041, 29.764394195983808 ], [ -95.416284015194719, 29.764489196395672 ], [ -95.416293015831769, 29.765152196582964 ], [ -95.416298015676631, 29.765335196300676 ], [ -95.416316015704723, 29.765934196916316 ], [ -95.415101015078747, 29.765977196499492 ], [ -95.413354015081026, 29.766015196578749 ], [ -95.412418014666983, 29.766032196648343 ], [ -95.411468014548944, 29.766047196828438 ], [ -95.410511013932521, 29.766054196601491 ], [ -95.410067014253897, 29.766059196796917 ], [ -95.409949014050738, 29.766055196982393 ], [ -95.409717013926922, 29.766073196892251 ], [ -95.409391013288953, 29.766079197120096 ], [ -95.409409014123483, 29.766816196701747 ], [ -95.409425013671154, 29.767533197427859 ], [ -95.409429013447792, 29.768270197050732 ], [ -95.409454013830668, 29.768978197253706 ], [ -95.40946401386833, 29.769708197477016 ], [ -95.40948601400963, 29.770387197739471 ], [ -95.409470014273793, 29.770475197605382 ], [ -95.409794013572821, 29.770462198176737 ], [ -95.410590014254851, 29.770468197683449 ], [ -95.411532014646227, 29.770442198099527 ], [ -95.412500015037011, 29.770431197711883 ], [ -95.413424014882835, 29.77043419807897 ], [ -95.414381015638213, 29.770482197660161 ], [ -95.414954015492768, 29.770508198075152 ], [ -95.415362015512869, 29.770527197355374 ], [ -95.416353016088166, 29.770602197887769 ], [ -95.417445015777815, 29.770658197693766 ], [ -95.418489016579429, 29.770770198022916 ], [ -95.419325016822413, 29.770834197207343 ], [ -95.420207016836642, 29.770906197948698 ], [ -95.421156016514118, 29.770967197882189 ], [ -95.42116601701008, 29.770701197168147 ], [ -95.421167016559181, 29.770543197537172 ], [ -95.421162016450594, 29.770410197285614 ], [ -95.42109801699354, 29.770242197098071 ], [ -95.421026017002134, 29.770133197157868 ], [ -95.421037016527464, 29.768892197313921 ], [ -95.421015016683285, 29.767384196605185 ], [ -95.42099001691318, 29.765862196201859 ], [ -95.421728016564614, 29.765876196459448 ], [ -95.421899016501158, 29.765834196465875 ], [ -95.422104016719899, 29.765715196113639 ], [ -95.422242017217627, 29.765575196395819 ], [ -95.422357017473686, 29.76540619675891 ], [ -95.422418017146185, 29.765238196115661 ], [ -95.422461016734871, 29.765019196118299 ], [ -95.422439017156833, 29.764818196387818 ], [ -95.42233901661983, 29.764367196007207 ], [ -95.422314016774948, 29.76414219580035 ], [ -95.422268016921706, 29.763437196070022 ], [ -95.422311016568401, 29.762879195539327 ], [ -95.422351016718267, 29.762635195816433 ], [ -95.422419017241808, 29.762363195933119 ], [ -95.422530016500204, 29.762020195786846 ], [ -95.422695016855911, 29.761670195577423 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 936, "Tract": "48201510901", "Area_SqMi": 0.5435319152003264, "total_2009": 1062, "total_2010": 979, "total_2011": 703, "total_2012": 692, "total_2013": 696, "total_2014": 648, "total_2015": 661, "total_2016": 636, "total_2017": 575, "total_2018": 489, "total_2019": 876, "total_2020": 926, "age1": 220, "age2": 329, "age3": 130, "earn1": 128, "earn2": 196, "earn3": 355, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 96, "naics_s05": 34, "naics_s06": 73, "naics_s07": 36, "naics_s08": 1, "naics_s09": 0, "naics_s10": 16, "naics_s11": 10, "naics_s12": 112, "naics_s13": 0, "naics_s14": 53, "naics_s15": 17, "naics_s16": 22, "naics_s17": 3, "naics_s18": 159, "naics_s19": 47, "naics_s20": 0, "race1": 533, "race2": 75, "race3": 4, "race4": 50, "race5": 0, "race6": 17, "ethnicity1": 460, "ethnicity2": 219, "edu1": 91, "edu2": 93, "edu3": 145, "edu4": 130, "Shape_Length": 19993.521279985445, "Shape_Area": 15152739.531615036, "total_2021": 1078, "total_2022": 679 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436122021082355, 29.783935199756268 ], [ -95.436753021253921, 29.783931199740952 ], [ -95.435711021543483, 29.783365199325893 ], [ -95.433759020429477, 29.782121199044099 ], [ -95.432156020592856, 29.781151199656808 ], [ -95.431173020289108, 29.78057219917531 ], [ -95.430835019844594, 29.780399199191184 ], [ -95.429571019157379, 29.779733199464033 ], [ -95.42886501977884, 29.779368198860645 ], [ -95.428183018712431, 29.779017198551696 ], [ -95.427332018441604, 29.778568198753803 ], [ -95.426570019067924, 29.778188198987628 ], [ -95.424944017827002, 29.777471198560189 ], [ -95.424243018110857, 29.777479198409875 ], [ -95.42250201744919, 29.77749819861539 ], [ -95.42224601740341, 29.77750119912098 ], [ -95.42200401700515, 29.777504199197882 ], [ -95.418060016357913, 29.777568198602644 ], [ -95.417227015842158, 29.777581199006118 ], [ -95.41339001565504, 29.777642198789451 ], [ -95.411860015109028, 29.77766619930566 ], [ -95.410963014363389, 29.777680199508396 ], [ -95.410728014666773, 29.777664198906514 ], [ -95.409612013760878, 29.777661199509151 ], [ -95.40963001467955, 29.777993198952576 ], [ -95.409637013941918, 29.778491199279159 ], [ -95.409654014146412, 29.779217199382682 ], [ -95.409637014433187, 29.779502199589114 ], [ -95.409598014702453, 29.779617199761503 ], [ -95.409571014571085, 29.77969519943284 ], [ -95.409550014242242, 29.779753200001117 ], [ -95.409458014769527, 29.780005200147738 ], [ -95.409303014203019, 29.780471200123653 ], [ -95.409190014753861, 29.780940200015916 ], [ -95.409166014144844, 29.781312199628672 ], [ -95.409181014047761, 29.781503200032798 ], [ -95.409344014030339, 29.78196320031379 ], [ -95.409512014967618, 29.782578200358625 ], [ -95.409640014160246, 29.78325920085291 ], [ -95.409662014023752, 29.783329200450382 ], [ -95.411194015052814, 29.783327200820061 ], [ -95.413479015490879, 29.783323200077824 ], [ -95.413574016026629, 29.783323200358371 ], [ -95.413663015960495, 29.783325200048012 ], [ -95.414835016251658, 29.783353200424422 ], [ -95.415981016414364, 29.783441200263955 ], [ -95.417748016521642, 29.783524200017204 ], [ -95.41794201649428, 29.783565200357156 ], [ -95.418906016935594, 29.783695199766921 ], [ -95.423772018407206, 29.783742199705149 ], [ -95.425362018387901, 29.783760199965837 ], [ -95.425585018238579, 29.783772199608496 ], [ -95.433550020971282, 29.783903199956807 ], [ -95.436122021082355, 29.783935199756268 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 937, "Tract": "48201511004", "Area_SqMi": 0.40624389058035998, "total_2009": 310, "total_2010": 365, "total_2011": 342, "total_2012": 293, "total_2013": 325, "total_2014": 324, "total_2015": 343, "total_2016": 261, "total_2017": 250, "total_2018": 173, "total_2019": 158, "total_2020": 167, "age1": 70, "age2": 76, "age3": 37, "earn1": 56, "earn2": 64, "earn3": 63, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 0, "naics_s07": 51, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 8, "naics_s12": 2, "naics_s13": 0, "naics_s14": 54, "naics_s15": 18, "naics_s16": 4, "naics_s17": 16, "naics_s18": 18, "naics_s19": 5, "naics_s20": 0, "race1": 136, "race2": 27, "race3": 5, "race4": 9, "race5": 1, "race6": 5, "ethnicity1": 113, "ethnicity2": 70, "edu1": 23, "edu2": 26, "edu3": 42, "edu4": 22, "Shape_Length": 15979.597144262289, "Shape_Area": 11325384.376012843, "total_2021": 138, "total_2022": 183 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430031020516935, 29.801966203538811 ], [ -95.430040020566494, 29.801646203181985 ], [ -95.430030020970477, 29.800744203323184 ], [ -95.430030020371916, 29.799995202847303 ], [ -95.430037020682363, 29.799238202592129 ], [ -95.430017020194271, 29.798408203098873 ], [ -95.429990020179176, 29.797317202907518 ], [ -95.429969019939037, 29.79642420251178 ], [ -95.429948020677003, 29.795552201888835 ], [ -95.429931020626427, 29.79438220234265 ], [ -95.429916019910266, 29.793356202036783 ], [ -95.429924020123437, 29.792815201641247 ], [ -95.429930019645269, 29.7916642014907 ], [ -95.429924019967117, 29.7907062016216 ], [ -95.429893020284382, 29.789252201186041 ], [ -95.427817018935997, 29.789281201391912 ], [ -95.426500018632083, 29.789281201279156 ], [ -95.425406018991836, 29.789274200696362 ], [ -95.423162018672173, 29.78928320141987 ], [ -95.422662018204946, 29.789306200872659 ], [ -95.421802017735644, 29.78948920116596 ], [ -95.420658017686847, 29.789866201326301 ], [ -95.420070017901935, 29.790030201405713 ], [ -95.41920701780019, 29.790102201454388 ], [ -95.417144016445874, 29.79012220160071 ], [ -95.417067016999411, 29.790123201521663 ], [ -95.417078017191315, 29.790303201865182 ], [ -95.417164016963511, 29.790465201593541 ], [ -95.417384016553413, 29.790671201675046 ], [ -95.417721017336305, 29.790881202135466 ], [ -95.419475017653781, 29.79200720182769 ], [ -95.419721017901281, 29.792296201925101 ], [ -95.419862017643766, 29.792463201697807 ], [ -95.420229017833876, 29.793056202357349 ], [ -95.420464017355769, 29.793302202005087 ], [ -95.420801017802006, 29.793505202258686 ], [ -95.421673018180627, 29.793828201791506 ], [ -95.422060018581135, 29.794029201841735 ], [ -95.422509018397534, 29.794441202345382 ], [ -95.42277501838845, 29.794844202430763 ], [ -95.42350101880352, 29.797040202423346 ], [ -95.423822018381173, 29.797539202990226 ], [ -95.424422019169469, 29.798165202859607 ], [ -95.424581018953276, 29.79845320258422 ], [ -95.42464801900617, 29.798843203091145 ], [ -95.424630019010493, 29.799519202787458 ], [ -95.424668019190776, 29.799837202979866 ], [ -95.424882018918424, 29.800181203127011 ], [ -95.425074019128743, 29.80036420297133 ], [ -95.425360018939386, 29.800500203714702 ], [ -95.425832019767441, 29.800626203746706 ], [ -95.426106019873103, 29.800783203316538 ], [ -95.426349020004139, 29.801021203133029 ], [ -95.426478019167178, 29.80128120370706 ], [ -95.426527019661179, 29.801661203616828 ], [ -95.426561019678104, 29.80192520400654 ], [ -95.426679019586985, 29.802304203348502 ], [ -95.427062020115528, 29.80276420394895 ], [ -95.427470019531071, 29.802999203675075 ], [ -95.427823020017655, 29.80309320349054 ], [ -95.42966302035326, 29.803174204083895 ], [ -95.429702020838278, 29.803089203940765 ], [ -95.429791020322227, 29.802896203881701 ], [ -95.429929020396841, 29.802559203349336 ], [ -95.429979020684968, 29.802326203832109 ], [ -95.430031020516935, 29.801966203538811 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 938, "Tract": "48201221302", "Area_SqMi": 0.60378941761453253, "total_2009": 192, "total_2010": 168, "total_2011": 202, "total_2012": 177, "total_2013": 169, "total_2014": 165, "total_2015": 186, "total_2016": 172, "total_2017": 200, "total_2018": 201, "total_2019": 183, "total_2020": 173, "age1": 36, "age2": 95, "age3": 69, "earn1": 49, "earn2": 86, "earn3": 65, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 117, "naics_s05": 0, "naics_s06": 26, "naics_s07": 33, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 6, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 3, "naics_s19": 7, "naics_s20": 0, "race1": 167, "race2": 14, "race3": 0, "race4": 18, "race5": 0, "race6": 1, "ethnicity1": 97, "ethnicity2": 103, "edu1": 52, "edu2": 45, "edu3": 45, "edu4": 22, "Shape_Length": 16758.42370434148, "Shape_Area": 16832615.567177009, "total_2021": 168, "total_2022": 200 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372019008317366, 29.859043216794159 ], [ -95.37199000839675, 29.858130217420253 ], [ -95.37197900806882, 29.85708421679935 ], [ -95.371961008504442, 29.856308216578299 ], [ -95.371950008439484, 29.855864216175483 ], [ -95.37192100820009, 29.854692216588067 ], [ -95.371919008111149, 29.853892215867969 ], [ -95.371911008266167, 29.853398215935204 ], [ -95.37190600780221, 29.852929216280941 ], [ -95.371897007647831, 29.851840215640468 ], [ -95.371874008096256, 29.850938215363826 ], [ -95.371857007435707, 29.849820215054262 ], [ -95.371868008136218, 29.849770215615202 ], [ -95.371853007433856, 29.849112215002279 ], [ -95.371839007467059, 29.84866121546478 ], [ -95.371818007369441, 29.847570215223076 ], [ -95.371811007477788, 29.847137214882238 ], [ -95.371819007675327, 29.846602214518605 ], [ -95.371803007986173, 29.846161214157394 ], [ -95.371773008002862, 29.845674214468097 ], [ -95.37164600793335, 29.845663214404105 ], [ -95.371273007045758, 29.845683214718342 ], [ -95.370989007841743, 29.845715214787962 ], [ -95.370849007301672, 29.845724214084104 ], [ -95.370411007321167, 29.845813214918735 ], [ -95.370185007038529, 29.845869214575174 ], [ -95.370039007668836, 29.84591921483689 ], [ -95.369956007100626, 29.845937214550858 ], [ -95.369359007476604, 29.846094214478242 ], [ -95.369197007088502, 29.846119214305556 ], [ -95.36886800673301, 29.846177214446136 ], [ -95.368699006881542, 29.846194214488417 ], [ -95.368490007151522, 29.84620221500878 ], [ -95.368336006891511, 29.846196214294881 ], [ -95.368217006337218, 29.84618221510577 ], [ -95.367820006711497, 29.846185214518989 ], [ -95.366806006345271, 29.846205214675305 ], [ -95.365783006236441, 29.846214214605869 ], [ -95.364453006154221, 29.846236215217548 ], [ -95.362764005144456, 29.846247214708175 ], [ -95.362691005472044, 29.846247215268452 ], [ -95.362566005307173, 29.846252215102467 ], [ -95.361807005132263, 29.846286215387288 ], [ -95.361367004653872, 29.84627321495881 ], [ -95.360916004600796, 29.846275215363363 ], [ -95.360553005110788, 29.846288215442719 ], [ -95.360301005005326, 29.846306214666889 ], [ -95.359522004207861, 29.846428215156106 ], [ -95.359356004714513, 29.846451215311376 ], [ -95.359058004868785, 29.846503215429085 ], [ -95.359210004713333, 29.847090214822003 ], [ -95.359413004294595, 29.847871215710292 ], [ -95.360341004786491, 29.851762216408261 ], [ -95.360368004825332, 29.85187721578373 ], [ -95.361437005310663, 29.856094216752112 ], [ -95.362225006090341, 29.859203217794025 ], [ -95.362812006305333, 29.859164217377398 ], [ -95.364717006621234, 29.859039217695358 ], [ -95.368051006816287, 29.859020217620046 ], [ -95.371280008390059, 29.859039217126071 ], [ -95.372019008317366, 29.859043216794159 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 939, "Tract": "48201311501", "Area_SqMi": 0.29613604791853709, "total_2009": 672, "total_2010": 1658, "total_2011": 1414, "total_2012": 1286, "total_2013": 1089, "total_2014": 613, "total_2015": 349, "total_2016": 342, "total_2017": 352, "total_2018": 311, "total_2019": 324, "total_2020": 303, "age1": 181, "age2": 203, "age3": 93, "earn1": 97, "earn2": 131, "earn3": 249, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 35, "naics_s10": 29, "naics_s11": 12, "naics_s12": 9, "naics_s13": 0, "naics_s14": 23, "naics_s15": 2, "naics_s16": 75, "naics_s17": 0, "naics_s18": 196, "naics_s19": 2, "naics_s20": 94, "race1": 317, "race2": 125, "race3": 3, "race4": 18, "race5": 2, "race6": 12, "ethnicity1": 289, "ethnicity2": 188, "edu1": 53, "edu2": 77, "edu3": 80, "edu4": 86, "Shape_Length": 16926.25252378191, "Shape_Area": 8255766.1740573486, "total_2021": 321, "total_2022": 477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.295459981672707, 29.702131187579141 ], [ -95.295324981616019, 29.702044188016309 ], [ -95.293597980816827, 29.700930187875535 ], [ -95.293030981245536, 29.700572187045552 ], [ -95.29153698077981, 29.699632187395366 ], [ -95.291309980630501, 29.699480186903916 ], [ -95.291189979986811, 29.699392187407611 ], [ -95.291144980410934, 29.699411186856647 ], [ -95.290960980572152, 29.699486187220121 ], [ -95.290875980819365, 29.699521187544153 ], [ -95.290640980599491, 29.699731187336944 ], [ -95.290199980227328, 29.699912187628389 ], [ -95.290010980613289, 29.700104187155009 ], [ -95.28990798047208, 29.700257187499336 ], [ -95.289865980116801, 29.700319187622483 ], [ -95.289853980498961, 29.700412187181499 ], [ -95.28979697963203, 29.700632187502261 ], [ -95.28992297995741, 29.701391188100875 ], [ -95.289922979941494, 29.701540187810238 ], [ -95.289878980108341, 29.701765188184233 ], [ -95.288542980413325, 29.703662188439335 ], [ -95.288303980121825, 29.703981188218407 ], [ -95.28767397929397, 29.704404188060433 ], [ -95.286936979511751, 29.704811188820074 ], [ -95.286306979102179, 29.705096188462459 ], [ -95.286029978944768, 29.705146188354664 ], [ -95.2857909793413, 29.70514618849743 ], [ -95.285469979229191, 29.705069188228002 ], [ -95.284895979032981, 29.704634188837922 ], [ -95.283819978510707, 29.703881188780098 ], [ -95.283441978820505, 29.703342187919276 ], [ -95.283397978262599, 29.70329018801009 ], [ -95.28316497872548, 29.703012188705372 ], [ -95.283137978753146, 29.702995187981983 ], [ -95.282899978516781, 29.702842188189173 ], [ -95.282660978580765, 29.702660187983312 ], [ -95.282478978678384, 29.702396188499403 ], [ -95.282308978186663, 29.701973187719886 ], [ -95.282301977927773, 29.701934188025344 ], [ -95.28205697784459, 29.701538187943452 ], [ -95.281791978043174, 29.701368187731585 ], [ -95.281432978029287, 29.701313188050253 ], [ -95.280758977718378, 29.70129118820968 ], [ -95.280507977864744, 29.701362187782113 ], [ -95.280263978055359, 29.701399187859355 ], [ -95.280464977772738, 29.701497187789286 ], [ -95.280658977533875, 29.701530187971759 ], [ -95.280683977714574, 29.702829188618374 ], [ -95.280708978297298, 29.703029188785553 ], [ -95.280713977687739, 29.703699188559355 ], [ -95.280734977960989, 29.704404188932294 ], [ -95.280744977717745, 29.705092189086976 ], [ -95.280764977710859, 29.705813188867779 ], [ -95.280799978330649, 29.706469189036717 ], [ -95.280808978156188, 29.70714318901571 ], [ -95.280801977791327, 29.707317188847448 ], [ -95.280826977681699, 29.707849189505357 ], [ -95.28080997792506, 29.708065189610927 ], [ -95.280836978222197, 29.708521189553007 ], [ -95.280840978672018, 29.708784189691453 ], [ -95.28086497845463, 29.709215189862178 ], [ -95.283516979033479, 29.709153189143176 ], [ -95.283540979055601, 29.709448189515726 ], [ -95.286139979342948, 29.709433189664846 ], [ -95.288076979863405, 29.709415189165398 ], [ -95.288363980403957, 29.709401188971036 ], [ -95.290137980328524, 29.709368189703582 ], [ -95.290119980749552, 29.708620189074928 ], [ -95.290104980805992, 29.707979188824247 ], [ -95.290105980079034, 29.707885188700388 ], [ -95.290090980072875, 29.707141188567931 ], [ -95.290059980042301, 29.706408188557667 ], [ -95.28988998025946, 29.705635189015982 ], [ -95.289731980535763, 29.704876188367532 ], [ -95.289811979988229, 29.704658188501252 ], [ -95.289991980869061, 29.704468188569024 ], [ -95.290277980105984, 29.704226188269214 ], [ -95.29051998052168, 29.704048188673102 ], [ -95.291106980853755, 29.703887188573844 ], [ -95.291554980824131, 29.703832188095678 ], [ -95.292862981364365, 29.703868188095491 ], [ -95.293383981715607, 29.703845188178679 ], [ -95.29395998173004, 29.703664187907929 ], [ -95.294429981399603, 29.703322187795887 ], [ -95.294843981869192, 29.702879188217668 ], [ -95.295274981981947, 29.702346187423089 ], [ -95.295459981672707, 29.702131187579141 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 940, "Tract": "48201311502", "Area_SqMi": 0.60884147443194936, "total_2009": 741, "total_2010": 626, "total_2011": 722, "total_2012": 858, "total_2013": 801, "total_2014": 794, "total_2015": 678, "total_2016": 726, "total_2017": 551, "total_2018": 642, "total_2019": 732, "total_2020": 564, "age1": 150, "age2": 258, "age3": 140, "earn1": 132, "earn2": 174, "earn3": 242, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 107, "naics_s05": 23, "naics_s06": 33, "naics_s07": 116, "naics_s08": 11, "naics_s09": 1, "naics_s10": 0, "naics_s11": 1, "naics_s12": 8, "naics_s13": 0, "naics_s14": 56, "naics_s15": 0, "naics_s16": 73, "naics_s17": 0, "naics_s18": 4, "naics_s19": 115, "naics_s20": 0, "race1": 452, "race2": 63, "race3": 6, "race4": 25, "race5": 0, "race6": 2, "ethnicity1": 223, "ethnicity2": 325, "edu1": 130, "edu2": 112, "edu3": 95, "edu4": 61, "Shape_Length": 21907.647833905681, "Shape_Area": 16973458.264564931, "total_2021": 586, "total_2022": 548 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.290196980772151, 29.712202189801847 ], [ -95.29018098093789, 29.711679190237373 ], [ -95.290166980908054, 29.710915189528695 ], [ -95.290156980707408, 29.710703189214108 ], [ -95.290137980705239, 29.710139189717527 ], [ -95.290137980328524, 29.709368189703582 ], [ -95.288363980403957, 29.709401188971036 ], [ -95.288076979863405, 29.709415189165398 ], [ -95.286139979342948, 29.709433189664846 ], [ -95.283540979055601, 29.709448189515726 ], [ -95.283516979033479, 29.709153189143176 ], [ -95.28086497845463, 29.709215189862178 ], [ -95.280840978672018, 29.708784189691453 ], [ -95.280836978222197, 29.708521189553007 ], [ -95.28080997792506, 29.708065189610927 ], [ -95.280826977681699, 29.707849189505357 ], [ -95.280801977791327, 29.707317188847448 ], [ -95.280808978156188, 29.70714318901571 ], [ -95.280799978330649, 29.706469189036717 ], [ -95.280764977710859, 29.705813188867779 ], [ -95.280744977717745, 29.705092189086976 ], [ -95.280734977960989, 29.704404188932294 ], [ -95.280713977687739, 29.703699188559355 ], [ -95.280708978297298, 29.703029188785553 ], [ -95.280683977714574, 29.702829188618374 ], [ -95.280658977533875, 29.701530187971759 ], [ -95.280464977772738, 29.701497187789286 ], [ -95.280263978055359, 29.701399187859355 ], [ -95.280553978020947, 29.701093188146753 ], [ -95.280781978197126, 29.700629188199606 ], [ -95.2803639774136, 29.700889187949734 ], [ -95.280200977468311, 29.700990188042802 ], [ -95.278090976878019, 29.702536188351047 ], [ -95.277887977189025, 29.702685188264873 ], [ -95.277731977636762, 29.702799188478267 ], [ -95.276056976717356, 29.704027188473109 ], [ -95.275810976768241, 29.704204188432012 ], [ -95.274436976664205, 29.705192189384494 ], [ -95.274237975906331, 29.705335189322057 ], [ -95.274088976708455, 29.705449188823373 ], [ -95.272773975731042, 29.706449189546568 ], [ -95.272555975716855, 29.706602189226547 ], [ -95.272080976144991, 29.706932189876586 ], [ -95.271440975550789, 29.707286189174617 ], [ -95.271065975799033, 29.707487189277312 ], [ -95.270688975480027, 29.707653189899919 ], [ -95.270209974924754, 29.707914190111033 ], [ -95.269672975530796, 29.708185190045111 ], [ -95.269307975575714, 29.708374189842683 ], [ -95.268817975586316, 29.708650189566768 ], [ -95.268444974675376, 29.70887319018366 ], [ -95.267969975165869, 29.709204190462014 ], [ -95.267863974975086, 29.709285189798273 ], [ -95.267759974558416, 29.709363190034107 ], [ -95.267571975249211, 29.709538189949605 ], [ -95.267348975259097, 29.709729190350377 ], [ -95.267183974666864, 29.709914189977418 ], [ -95.267587974661552, 29.710015190333749 ], [ -95.267894975020965, 29.710092189798658 ], [ -95.268152974891507, 29.710156190007229 ], [ -95.268298975291458, 29.71019319068267 ], [ -95.268644974693245, 29.710270190011126 ], [ -95.26948897517974, 29.710457190100879 ], [ -95.270570975923931, 29.710711189853196 ], [ -95.271625976092963, 29.711043190730635 ], [ -95.272328975685042, 29.711303189906445 ], [ -95.273852976167873, 29.711818190284536 ], [ -95.274499977193656, 29.712067190082614 ], [ -95.275205976790005, 29.712406190247428 ], [ -95.275394977117045, 29.712522190849629 ], [ -95.275791976595201, 29.712764190655619 ], [ -95.276723977043559, 29.713104190491585 ], [ -95.277637977526624, 29.71354419093122 ], [ -95.278207977341012, 29.713821190321067 ], [ -95.279988978334941, 29.715380191135978 ], [ -95.28028697839342, 29.715652190531642 ], [ -95.280721978169097, 29.715655190806402 ], [ -95.280867978762487, 29.715656191290226 ], [ -95.282036978708561, 29.715933190606968 ], [ -95.28273197857979, 29.716233191328001 ], [ -95.28361197908302, 29.716605190985167 ], [ -95.284305979867, 29.716745191105925 ], [ -95.284364979873303, 29.71675719088131 ], [ -95.285957980382619, 29.716775191063384 ], [ -95.285947979345423, 29.715532190495011 ], [ -95.285906979285954, 29.714791190509541 ], [ -95.285943979622729, 29.714652190942179 ], [ -95.285966979688553, 29.714567190686434 ], [ -95.286115980110623, 29.714492190187478 ], [ -95.287177979800418, 29.714485190321348 ], [ -95.287912980027997, 29.71393519065678 ], [ -95.288354979896837, 29.713614189872079 ], [ -95.288536980138048, 29.713469189855438 ], [ -95.289401980696724, 29.712809190219861 ], [ -95.290196980772151, 29.712202189801847 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 941, "Tract": "48201511502", "Area_SqMi": 0.70882228302098871, "total_2009": 627, "total_2010": 604, "total_2011": 619, "total_2012": 857, "total_2013": 964, "total_2014": 1041, "total_2015": 1220, "total_2016": 866, "total_2017": 928, "total_2018": 1476, "total_2019": 1650, "total_2020": 1557, "age1": 281, "age2": 641, "age3": 275, "earn1": 239, "earn2": 453, "earn3": 505, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 53, "naics_s05": 159, "naics_s06": 90, "naics_s07": 99, "naics_s08": 1, "naics_s09": 5, "naics_s10": 12, "naics_s11": 17, "naics_s12": 127, "naics_s13": 73, "naics_s14": 28, "naics_s15": 18, "naics_s16": 126, "naics_s17": 11, "naics_s18": 271, "naics_s19": 106, "naics_s20": 0, "race1": 900, "race2": 134, "race3": 16, "race4": 117, "race5": 5, "race6": 25, "ethnicity1": 726, "ethnicity2": 471, "edu1": 229, "edu2": 232, "edu3": 255, "edu4": 200, "Shape_Length": 18298.786780221075, "Shape_Area": 19760752.089163259, "total_2021": 1159, "total_2022": 1197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399406013669264, 29.812907207274385 ], [ -95.399402013420783, 29.81264320683303 ], [ -95.399395013027828, 29.812181206236179 ], [ -95.399394012986846, 29.812098206356623 ], [ -95.399388013251112, 29.811613206958292 ], [ -95.399384013019059, 29.811358206697918 ], [ -95.399381012987007, 29.811092206553923 ], [ -95.399377013581855, 29.810578206349604 ], [ -95.399376013184849, 29.810515206356364 ], [ -95.399366013294255, 29.810071206715211 ], [ -95.399361013142013, 29.809683206094832 ], [ -95.399360013332412, 29.809548206490359 ], [ -95.399347012997652, 29.809054206152567 ], [ -95.399334012788771, 29.808560205741433 ], [ -95.399333012526142, 29.808362205833205 ], [ -95.399323012903594, 29.808028206087112 ], [ -95.399319012629249, 29.807868205544708 ], [ -95.399307013200655, 29.807670205336432 ], [ -95.399299013201713, 29.807530205619297 ], [ -95.399291012475132, 29.807003205775359 ], [ -95.39927901259783, 29.806509205736912 ], [ -95.399272012507438, 29.806002205488845 ], [ -95.399268012761695, 29.80560520568007 ], [ -95.399261012978045, 29.805497205421471 ], [ -95.399257012449553, 29.804965205513277 ], [ -95.399223013101789, 29.803964205196763 ], [ -95.397958012150397, 29.803985204659512 ], [ -95.396676012312028, 29.804008204930305 ], [ -95.395559011982471, 29.804028205243366 ], [ -95.394473011559768, 29.804032205557064 ], [ -95.393369011136329, 29.804048205474665 ], [ -95.392270010557979, 29.804067204906996 ], [ -95.391071010250784, 29.804082205250971 ], [ -95.39051201078955, 29.804086205545328 ], [ -95.390248010441724, 29.804086205332045 ], [ -95.3888530098384, 29.804127205539039 ], [ -95.388042010161826, 29.804081205205101 ], [ -95.387453009658472, 29.803201205329717 ], [ -95.386159009835794, 29.803192204922578 ], [ -95.384445009127958, 29.803203204924483 ], [ -95.384406008958592, 29.803145205640202 ], [ -95.384371008539119, 29.803089205277711 ], [ -95.381914008537052, 29.803100205069782 ], [ -95.381918008687691, 29.803248205425433 ], [ -95.381931008637878, 29.803711205374594 ], [ -95.381924008640155, 29.803853205855322 ], [ -95.381939008196795, 29.804658205986531 ], [ -95.381953008571458, 29.805363205740445 ], [ -95.381965008617058, 29.806085206056814 ], [ -95.381968008762968, 29.806326205665624 ], [ -95.381975008542582, 29.80679520654353 ], [ -95.381988008287252, 29.80756820624514 ], [ -95.382005008449795, 29.808398206922732 ], [ -95.382011008516088, 29.808790206961259 ], [ -95.382016008461548, 29.809575206772347 ], [ -95.3820170083806, 29.80977620714264 ], [ -95.382024009130589, 29.81054720735187 ], [ -95.382045009205584, 29.81123720673822 ], [ -95.382051009132994, 29.811376207105774 ], [ -95.382068008678942, 29.811487207125079 ], [ -95.382133008270742, 29.811918207486102 ], [ -95.38228100895185, 29.812592207733257 ], [ -95.382458009386795, 29.813263207129641 ], [ -95.382472008984166, 29.813313207144258 ], [ -95.382508009030474, 29.813698207193283 ], [ -95.382583009159106, 29.813696207758671 ], [ -95.382618008575733, 29.813945207412644 ], [ -95.385883009840285, 29.8139222072049 ], [ -95.389373011157716, 29.813883207798067 ], [ -95.391428010753884, 29.813882206966429 ], [ -95.391625011389195, 29.813881206993635 ], [ -95.391934011167081, 29.813873206948152 ], [ -95.393138011220898, 29.813833206972998 ], [ -95.393496011695831, 29.813808206895576 ], [ -95.394266012427011, 29.813699206860541 ], [ -95.394804011959366, 29.813561207319509 ], [ -95.395698012773153, 29.813306206936055 ], [ -95.3970070121687, 29.813021207092703 ], [ -95.39776201240285, 29.812935206852416 ], [ -95.399406013669264, 29.812907207274385 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 942, "Tract": "48201341203", "Area_SqMi": 0.54041941098950752, "total_2009": 1410, "total_2010": 1629, "total_2011": 1862, "total_2012": 1990, "total_2013": 2233, "total_2014": 2573, "total_2015": 2344, "total_2016": 2328, "total_2017": 2237, "total_2018": 1932, "total_2019": 2034, "total_2020": 1915, "age1": 492, "age2": 1104, "age3": 497, "earn1": 408, "earn2": 625, "earn3": 1060, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 5, "naics_s06": 7, "naics_s07": 67, "naics_s08": 55, "naics_s09": 0, "naics_s10": 57, "naics_s11": 4, "naics_s12": 941, "naics_s13": 10, "naics_s14": 120, "naics_s15": 5, "naics_s16": 466, "naics_s17": 0, "naics_s18": 309, "naics_s19": 20, "naics_s20": 0, "race1": 1508, "race2": 356, "race3": 9, "race4": 191, "race5": 3, "race6": 26, "ethnicity1": 1665, "ethnicity2": 428, "edu1": 275, "edu2": 341, "edu3": 551, "edu4": 434, "Shape_Length": 16635.211262127545, "Shape_Area": 15065968.241321603, "total_2021": 1986, "total_2022": 2093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.106293926419923, 29.54598716209593 ], [ -95.106419925912064, 29.545943161974797 ], [ -95.106280926321332, 29.545797161806473 ], [ -95.106192925712293, 29.545655161894459 ], [ -95.106091925715432, 29.54549416167411 ], [ -95.105085926329096, 29.544677161458761 ], [ -95.104020925232646, 29.543660161411573 ], [ -95.101535924403194, 29.540974160675145 ], [ -95.099084923842824, 29.538316160534855 ], [ -95.099161923917734, 29.538259160323395 ], [ -95.097163923514515, 29.536152159874902 ], [ -95.096666923665566, 29.535618160510637 ], [ -95.096584923155945, 29.535530159739846 ], [ -95.096264923218627, 29.535185159744834 ], [ -95.095889922884325, 29.5353981600013 ], [ -95.095203923016911, 29.535550160219735 ], [ -95.0950809227935, 29.535533160245997 ], [ -95.09505592322509, 29.535530160418016 ], [ -95.094782922661068, 29.535492160157759 ], [ -95.094553922315328, 29.535460159985494 ], [ -95.094041922596475, 29.535389160434409 ], [ -95.093180921972703, 29.534981160067236 ], [ -95.092471922553258, 29.534449160293534 ], [ -95.092368922047385, 29.534374159681292 ], [ -95.092335922646043, 29.534351159907047 ], [ -95.092157921908765, 29.534600159549655 ], [ -95.091807922230387, 29.5350881601262 ], [ -95.091767922029973, 29.535275160175381 ], [ -95.091768922293625, 29.535345159820121 ], [ -95.091771921785309, 29.535495160480313 ], [ -95.091813922020918, 29.535739160004503 ], [ -95.091795921825451, 29.535939160514598 ], [ -95.091711922068384, 29.536089160041961 ], [ -95.091539922420097, 29.536356160744827 ], [ -95.091459922166862, 29.536481160654237 ], [ -95.091083922221614, 29.536762160627887 ], [ -95.090762922188034, 29.53698616083739 ], [ -95.090147922142791, 29.537293160769362 ], [ -95.089900921415136, 29.537661160710275 ], [ -95.0898899215874, 29.538055160419095 ], [ -95.08991592148665, 29.538384161050519 ], [ -95.090060922104328, 29.538671160585658 ], [ -95.090198921366081, 29.538923160916497 ], [ -95.090482922353772, 29.539300161030944 ], [ -95.090633921672264, 29.539521161071839 ], [ -95.090860921933412, 29.539869160721651 ], [ -95.091002922412969, 29.540330161616861 ], [ -95.090993922575947, 29.540848161075136 ], [ -95.090854921899904, 29.541412161511381 ], [ -95.09082592224587, 29.541722161307717 ], [ -95.090862922612757, 29.542021161203458 ], [ -95.091042922184798, 29.542546161677286 ], [ -95.091403922701261, 29.5430431614726 ], [ -95.091993922867985, 29.543711161646424 ], [ -95.092743922398355, 29.544588161901434 ], [ -95.093237922699146, 29.545191162068814 ], [ -95.093906923071941, 29.546563162806205 ], [ -95.094137923235635, 29.547252162321101 ], [ -95.094704923802411, 29.548087162335918 ], [ -95.09504792371456, 29.548611162408605 ], [ -95.095381923844158, 29.54940316300798 ], [ -95.095435923713111, 29.549680163397689 ], [ -95.096534923935351, 29.549306162491565 ], [ -95.097687924093123, 29.548846162620936 ], [ -95.098421924880725, 29.548607162395854 ], [ -95.098766924494527, 29.548495162404919 ], [ -95.099342924222015, 29.548307162813234 ], [ -95.100093924603158, 29.548060162509806 ], [ -95.101316924934281, 29.547642162563985 ], [ -95.101698925580422, 29.5475091620076 ], [ -95.10224292571246, 29.547320162136366 ], [ -95.102545925458159, 29.547218162410481 ], [ -95.103146925132592, 29.547017162314937 ], [ -95.103235925795744, 29.546987162292581 ], [ -95.104720925434705, 29.54650116161168 ], [ -95.104904925478607, 29.546441161789229 ], [ -95.10508792585604, 29.546381162389146 ], [ -95.106293926419923, 29.54598716209593 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 943, "Tract": "48201311701", "Area_SqMi": 0.62497760535049407, "total_2009": 849, "total_2010": 778, "total_2011": 978, "total_2012": 1264, "total_2013": 1409, "total_2014": 1139, "total_2015": 1243, "total_2016": 1198, "total_2017": 1145, "total_2018": 985, "total_2019": 1063, "total_2020": 1004, "age1": 237, "age2": 636, "age3": 297, "earn1": 183, "earn2": 513, "earn3": 474, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 163, "naics_s05": 48, "naics_s06": 213, "naics_s07": 202, "naics_s08": 2, "naics_s09": 0, "naics_s10": 20, "naics_s11": 3, "naics_s12": 71, "naics_s13": 1, "naics_s14": 285, "naics_s15": 2, "naics_s16": 76, "naics_s17": 2, "naics_s18": 58, "naics_s19": 24, "naics_s20": 0, "race1": 880, "race2": 172, "race3": 11, "race4": 89, "race5": 3, "race6": 15, "ethnicity1": 618, "ethnicity2": 552, "edu1": 250, "edu2": 244, "edu3": 283, "edu4": 156, "Shape_Length": 21471.944674076745, "Shape_Area": 17423305.977309879, "total_2021": 1108, "total_2022": 1170 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.326670989070422, 29.69547118495014 ], [ -95.326504989665466, 29.69470918517116 ], [ -95.325819988972398, 29.692362184509751 ], [ -95.325721988915305, 29.69196718472509 ], [ -95.325663988657624, 29.691994184204344 ], [ -95.322941988787861, 29.693314184955039 ], [ -95.322509988674355, 29.693510184746362 ], [ -95.319341987019044, 29.694951185418198 ], [ -95.316887986902699, 29.696059186107515 ], [ -95.315777986585104, 29.696513186216809 ], [ -95.315184986204528, 29.696702185861099 ], [ -95.314638986234087, 29.696859185959919 ], [ -95.314023986716904, 29.697006185621373 ], [ -95.313425985777855, 29.697118186281635 ], [ -95.312894985661629, 29.697190186498826 ], [ -95.312112986133826, 29.697231186541927 ], [ -95.31206498601847, 29.697232186330393 ], [ -95.311685986048587, 29.697239186172084 ], [ -95.310781985210426, 29.697175186216977 ], [ -95.310309985775191, 29.697141185870322 ], [ -95.309910985526145, 29.697091185796697 ], [ -95.309647985009761, 29.69705918615346 ], [ -95.308731984455761, 29.696943186566987 ], [ -95.307849984442285, 29.696830186210434 ], [ -95.306737984047174, 29.696688186159545 ], [ -95.305939983952356, 29.696586186430441 ], [ -95.305522983878618, 29.696526186544762 ], [ -95.305393984428349, 29.696507185876985 ], [ -95.304505984063823, 29.696388186160029 ], [ -95.304298983851766, 29.696360186629775 ], [ -95.302086983313458, 29.696064185892798 ], [ -95.301665982649354, 29.696008186017007 ], [ -95.300685982710547, 29.695907185968757 ], [ -95.300390982406057, 29.695877186122413 ], [ -95.300523982561245, 29.696193186340551 ], [ -95.300546982932687, 29.696235186146914 ], [ -95.300614983139923, 29.696439186272613 ], [ -95.300736983263121, 29.696706186217735 ], [ -95.30087698271268, 29.696972186561506 ], [ -95.301508982537328, 29.698384187106001 ], [ -95.30164098324299, 29.698634186334324 ], [ -95.301754983337887, 29.698817186509928 ], [ -95.30215898302184, 29.699468187225513 ], [ -95.302801983327953, 29.700443187218184 ], [ -95.303525983823647, 29.70153818708317 ], [ -95.304362984303381, 29.702752187133026 ], [ -95.305225984379462, 29.703587187396362 ], [ -95.306343984835792, 29.704466187641923 ], [ -95.306842985144584, 29.704840187579681 ], [ -95.307574985399782, 29.705407188035895 ], [ -95.308157984680491, 29.705832188261837 ], [ -95.308400984804862, 29.706015187726614 ], [ -95.308521985334565, 29.706088187679626 ], [ -95.308980985295193, 29.706337187961434 ], [ -95.315134986519695, 29.702691186728991 ], [ -95.318174987347788, 29.700782186234456 ], [ -95.321005988538943, 29.698995185893597 ], [ -95.322227988835337, 29.698253185925459 ], [ -95.323078988957164, 29.697712185437929 ], [ -95.323240988983571, 29.69761018619803 ], [ -95.324066989285186, 29.697093185475271 ], [ -95.324219988413532, 29.696999185910627 ], [ -95.324852988989505, 29.69661018592058 ], [ -95.325986989299096, 29.695896185350517 ], [ -95.326670989070422, 29.69547118495014 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 944, "Tract": "48201312603", "Area_SqMi": 0.39474346523118042, "total_2009": 882, "total_2010": 815, "total_2011": 960, "total_2012": 951, "total_2013": 944, "total_2014": 980, "total_2015": 1014, "total_2016": 925, "total_2017": 901, "total_2018": 638, "total_2019": 942, "total_2020": 771, "age1": 245, "age2": 463, "age3": 235, "earn1": 249, "earn2": 319, "earn3": 375, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 6, "naics_s05": 14, "naics_s06": 23, "naics_s07": 39, "naics_s08": 0, "naics_s09": 6, "naics_s10": 48, "naics_s11": 13, "naics_s12": 59, "naics_s13": 6, "naics_s14": 20, "naics_s15": 13, "naics_s16": 275, "naics_s17": 10, "naics_s18": 355, "naics_s19": 53, "naics_s20": 2, "race1": 528, "race2": 310, "race3": 3, "race4": 84, "race5": 0, "race6": 18, "ethnicity1": 688, "ethnicity2": 255, "edu1": 160, "edu2": 186, "edu3": 198, "edu4": 154, "Shape_Length": 22221.204963183922, "Shape_Area": 11004772.200452419, "total_2021": 874, "total_2022": 943 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.386029006425318, 29.730285190089166 ], [ -95.385952005877741, 29.730330190529603 ], [ -95.385846006189738, 29.730338190690443 ], [ -95.385085005961571, 29.729872190467795 ], [ -95.384234005599495, 29.729362190185075 ], [ -95.383368005691281, 29.728845190625911 ], [ -95.38250500549681, 29.72832418970621 ], [ -95.381677005230529, 29.727822189904 ], [ -95.380806004835748, 29.727297189962879 ], [ -95.379939004321059, 29.72677518972041 ], [ -95.379142003793547, 29.726287190166236 ], [ -95.377829003355814, 29.72551418933644 ], [ -95.377931003421793, 29.725233189491405 ], [ -95.378123004048035, 29.724634189470194 ], [ -95.378263003367948, 29.724253189622125 ], [ -95.378369003805545, 29.723942188905259 ], [ -95.378565003439633, 29.723347189534017 ], [ -95.37863100390804, 29.723209189525488 ], [ -95.378923003466795, 29.722335188756116 ], [ -95.378953003505274, 29.722242189410483 ], [ -95.379164004194905, 29.721647188408326 ], [ -95.379421004196629, 29.720887188600766 ], [ -95.379744003823731, 29.719889188503686 ], [ -95.380014003838909, 29.719174188692232 ], [ -95.380089003848454, 29.71897618849091 ], [ -95.38030800423023, 29.718345188240686 ], [ -95.380404003691524, 29.718054187740069 ], [ -95.380421003769129, 29.718003188393052 ], [ -95.38055600441902, 29.717597187596397 ], [ -95.380932004399, 29.716523187861053 ], [ -95.38189700455996, 29.713727187569283 ], [ -95.382067004195335, 29.713204187032026 ], [ -95.382098004362476, 29.713109187415846 ], [ -95.381586004536402, 29.712991187048743 ], [ -95.380452004195533, 29.712805187412282 ], [ -95.380067003461519, 29.712687186723539 ], [ -95.379403003492214, 29.712112186983397 ], [ -95.379097003414813, 29.712004186743997 ], [ -95.379024003986075, 29.711978186599008 ], [ -95.378742003706549, 29.711948186524879 ], [ -95.378666003717697, 29.711966187248347 ], [ -95.378687002986609, 29.712047187113527 ], [ -95.378969003812415, 29.713127187353983 ], [ -95.379058003480395, 29.713468187281315 ], [ -95.379137003549431, 29.714063186975917 ], [ -95.379168003365237, 29.714651187553262 ], [ -95.379160003771673, 29.715239187124951 ], [ -95.379092004211017, 29.715712187618077 ], [ -95.379053003536086, 29.716162187430513 ], [ -95.378641003753941, 29.717647188211572 ], [ -95.3781130038751, 29.719416188844896 ], [ -95.378068003816679, 29.719565188783243 ], [ -95.377203003176476, 29.722362189017556 ], [ -95.376863003468927, 29.723461189341059 ], [ -95.376635003887074, 29.724000189146942 ], [ -95.376440003075942, 29.724410189189026 ], [ -95.376302003271178, 29.724701189759394 ], [ -95.37588600359075, 29.72542318958704 ], [ -95.375630003070896, 29.725815189705887 ], [ -95.375609003731583, 29.725838189414436 ], [ -95.375423002842822, 29.726043189686173 ], [ -95.375221002816815, 29.726315190094169 ], [ -95.375011003535633, 29.726606189845551 ], [ -95.374477003383717, 29.727243189906915 ], [ -95.374366003344093, 29.727383189787982 ], [ -95.37401300329087, 29.727843190193667 ], [ -95.373512003350712, 29.728465190063435 ], [ -95.373267002707863, 29.72876919039102 ], [ -95.373084002524891, 29.729017190894361 ], [ -95.372977003016302, 29.729209190873984 ], [ -95.372733002950937, 29.729727190673703 ], [ -95.372626002268063, 29.729948190530688 ], [ -95.372548002164606, 29.730261190773845 ], [ -95.372453002571262, 29.730609191224996 ], [ -95.372409002667339, 29.730745190679542 ], [ -95.372252002643094, 29.731397191388336 ], [ -95.371944002456772, 29.732241190857824 ], [ -95.371817002290086, 29.732780191726409 ], [ -95.371766002709862, 29.732995191040811 ], [ -95.372129002667648, 29.733220191517518 ], [ -95.372522002775924, 29.733463191119498 ], [ -95.372817002632388, 29.733367191221937 ], [ -95.373000002595347, 29.733294191358237 ], [ -95.373455003285471, 29.733170191065753 ], [ -95.374175002734233, 29.73307419133684 ], [ -95.374884002910989, 29.733019190977085 ], [ -95.375208003858305, 29.732999191272715 ], [ -95.375302003638055, 29.732991191576204 ], [ -95.376020003735988, 29.732930191296958 ], [ -95.376224003572418, 29.732913190997831 ], [ -95.377718003847662, 29.732789191329299 ], [ -95.37789300450045, 29.732774190898905 ], [ -95.379015004539554, 29.73270719079472 ], [ -95.37916300426852, 29.732698190979168 ], [ -95.379823004988168, 29.732659191322032 ], [ -95.380352004684823, 29.73261319061502 ], [ -95.380471004542315, 29.732603190924699 ], [ -95.381768005437706, 29.732491190691945 ], [ -95.382402005178989, 29.732437191339205 ], [ -95.383077005209628, 29.732388191058881 ], [ -95.383732005701518, 29.732321190759624 ], [ -95.384479005639577, 29.732252190426998 ], [ -95.384504005901377, 29.732221190491732 ], [ -95.384637005789145, 29.732055190945857 ], [ -95.385167006222773, 29.731390190636731 ], [ -95.385510006377302, 29.730962190930491 ], [ -95.386029006425318, 29.730285190089166 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 945, "Tract": "48201313202", "Area_SqMi": 0.66282152278109141, "total_2009": 334, "total_2010": 306, "total_2011": 285, "total_2012": 286, "total_2013": 280, "total_2014": 277, "total_2015": 264, "total_2016": 360, "total_2017": 448, "total_2018": 434, "total_2019": 513, "total_2020": 463, "age1": 114, "age2": 211, "age3": 96, "earn1": 103, "earn2": 158, "earn3": 160, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 1, "naics_s05": 1, "naics_s06": 9, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 8, "naics_s11": 13, "naics_s12": 16, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 148, "naics_s17": 0, "naics_s18": 192, "naics_s19": 5, "naics_s20": 0, "race1": 228, "race2": 132, "race3": 4, "race4": 47, "race5": 2, "race6": 8, "ethnicity1": 296, "ethnicity2": 125, "edu1": 70, "edu2": 74, "edu3": 84, "edu4": 79, "Shape_Length": 21279.561275248823, "Shape_Area": 18478329.624762923, "total_2021": 415, "total_2022": 421 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.378666003717697, 29.711966187248347 ], [ -95.378641003098352, 29.711871186995303 ], [ -95.378614003201534, 29.711768186414634 ], [ -95.378560003750835, 29.711647186661356 ], [ -95.378269003674333, 29.710929186608894 ], [ -95.377973002832121, 29.710258186415114 ], [ -95.37741800330933, 29.70916718616904 ], [ -95.377228002584147, 29.708811185934071 ], [ -95.376827003094263, 29.708135186554156 ], [ -95.376500002586212, 29.707544186397524 ], [ -95.376403002915467, 29.707379186395201 ], [ -95.376236003069138, 29.70709518600475 ], [ -95.376021002880378, 29.706659186154347 ], [ -95.375819002317314, 29.706263185994306 ], [ -95.375752002694298, 29.706100186082107 ], [ -95.375653002797634, 29.705856185721192 ], [ -95.375537002075859, 29.705511185709852 ], [ -95.375494001820059, 29.705402185243802 ], [ -95.375421002556351, 29.705217186022082 ], [ -95.375341001810028, 29.704863185480363 ], [ -95.375248002673558, 29.70450818580154 ], [ -95.375144002111611, 29.703855185579016 ], [ -95.375076001805965, 29.703147185354425 ], [ -95.375099002195284, 29.702613185265271 ], [ -95.375145002028432, 29.70225418456922 ], [ -95.375216002046628, 29.701862185163364 ], [ -95.374620001445038, 29.701759184928378 ], [ -95.374195002050286, 29.701709184807935 ], [ -95.374039002269413, 29.701710184807915 ], [ -95.373362001935547, 29.70163018493038 ], [ -95.372977001643989, 29.701614184883823 ], [ -95.372333001026007, 29.701615184605917 ], [ -95.371785001635629, 29.701649185424657 ], [ -95.37067200088218, 29.701741184942403 ], [ -95.369800000562236, 29.701780184832579 ], [ -95.368941000477236, 29.701836185120889 ], [ -95.368850999974498, 29.701842184851436 ], [ -95.368524999962631, 29.701870185172282 ], [ -95.368233999970087, 29.701882185154485 ], [ -95.36792100063775, 29.701898185198331 ], [ -95.367714999744322, 29.701909185560055 ], [ -95.366504000273409, 29.701990185135397 ], [ -95.365360999125173, 29.702062185389771 ], [ -95.36482499906964, 29.702081184880598 ], [ -95.36326199925584, 29.702145185099535 ], [ -95.362224998485956, 29.702219185149858 ], [ -95.361305998513046, 29.702272185281672 ], [ -95.361351998918906, 29.702941185658947 ], [ -95.361380998245323, 29.703635185925403 ], [ -95.361373999008535, 29.703985185974613 ], [ -95.361330999013475, 29.704204185478098 ], [ -95.361257998567751, 29.704467186188666 ], [ -95.361155999089817, 29.70473718633971 ], [ -95.360859998869245, 29.705494186203694 ], [ -95.361619998687559, 29.705728185865755 ], [ -95.361270998940114, 29.706585186300472 ], [ -95.358141997942639, 29.70565018650262 ], [ -95.357809997449934, 29.706518186136243 ], [ -95.357643997590472, 29.706956186327066 ], [ -95.357478997731761, 29.70736018688245 ], [ -95.357075998091233, 29.708376187271856 ], [ -95.356800997656478, 29.709071186662879 ], [ -95.356585997215973, 29.709624187477825 ], [ -95.35655299779593, 29.709710187340182 ], [ -95.356719997976228, 29.709775187573669 ], [ -95.357341998183983, 29.710343187688729 ], [ -95.357549997721563, 29.710457187418648 ], [ -95.357572997570941, 29.710460186999505 ], [ -95.358072998209693, 29.710533187328785 ], [ -95.358434997763922, 29.710474186857702 ], [ -95.359291997950592, 29.710129186979312 ], [ -95.359935998805142, 29.710012187156863 ], [ -95.36071499857691, 29.710009187464919 ], [ -95.362249998798404, 29.710232187240166 ], [ -95.362414999330454, 29.710222187190116 ], [ -95.363963999415475, 29.710132187345653 ], [ -95.367250000752037, 29.709778186377321 ], [ -95.368013000316765, 29.709633186417673 ], [ -95.368953000910366, 29.709279187004359 ], [ -95.369407000563569, 29.709269186374435 ], [ -95.369904000556545, 29.709508186591492 ], [ -95.370206001429423, 29.709846186501274 ], [ -95.370374001278478, 29.710169186665702 ], [ -95.370438001427615, 29.710521186644357 ], [ -95.370336001634016, 29.711845187298898 ], [ -95.370428000980539, 29.712266187478235 ], [ -95.37070200176494, 29.712861187554903 ], [ -95.370850001541285, 29.713074187803961 ], [ -95.370870001590035, 29.713092187535441 ], [ -95.37136300123116, 29.713531187723998 ], [ -95.371474001973979, 29.713592187556369 ], [ -95.371709002184076, 29.713722187460334 ], [ -95.37213100146441, 29.713851187265316 ], [ -95.372815001862421, 29.713948187460968 ], [ -95.373306002524842, 29.713929187919653 ], [ -95.373704001944404, 29.713846187228249 ], [ -95.374696002285503, 29.713452187437174 ], [ -95.377696003246811, 29.712263187241316 ], [ -95.378055003681609, 29.712121187115535 ], [ -95.378149002845362, 29.712084186504079 ], [ -95.378666003717697, 29.711966187248347 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 946, "Tract": "48201313101", "Area_SqMi": 0.26438059273330827, "total_2009": 1889, "total_2010": 1894, "total_2011": 1915, "total_2012": 1749, "total_2013": 1701, "total_2014": 1640, "total_2015": 2034, "total_2016": 2367, "total_2017": 2353, "total_2018": 2134, "total_2019": 1926, "total_2020": 1896, "age1": 202, "age2": 668, "age3": 298, "earn1": 108, "earn2": 248, "earn3": 812, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 2, "naics_s06": 958, "naics_s07": 3, "naics_s08": 105, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 8, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 38, "naics_s17": 5, "naics_s18": 33, "naics_s19": 4, "naics_s20": 0, "race1": 592, "race2": 509, "race3": 9, "race4": 39, "race5": 0, "race6": 19, "ethnicity1": 746, "ethnicity2": 422, "edu1": 218, "edu2": 315, "edu3": 287, "edu4": 146, "Shape_Length": 11253.822951382854, "Shape_Area": 7370478.4334979001, "total_2021": 1139, "total_2022": 1168 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.384623004797831, 29.705704185109681 ], [ -95.384460005037738, 29.705587185689055 ], [ -95.384428004381036, 29.705570185506428 ], [ -95.384122004843007, 29.70541518569329 ], [ -95.383634004001749, 29.705092184867855 ], [ -95.383226004015242, 29.704797185485834 ], [ -95.382838004177444, 29.704511184866067 ], [ -95.382563003748999, 29.704327185093984 ], [ -95.382104004106154, 29.704073185159924 ], [ -95.38151900344144, 29.703811185378829 ], [ -95.38103500320355, 29.703642184658573 ], [ -95.380712003813031, 29.703550185466142 ], [ -95.379680003209657, 29.703237185216182 ], [ -95.377866003213541, 29.70264818471394 ], [ -95.376566002263559, 29.702220185168212 ], [ -95.375505002391264, 29.701939185105175 ], [ -95.375216002046628, 29.701862185163364 ], [ -95.375145002028432, 29.70225418456922 ], [ -95.375099002195284, 29.702613185265271 ], [ -95.375076001805965, 29.703147185354425 ], [ -95.375144002111611, 29.703855185579016 ], [ -95.375248002673558, 29.70450818580154 ], [ -95.375341001810028, 29.704863185480363 ], [ -95.375421002556351, 29.705217186022082 ], [ -95.375494001820059, 29.705402185243802 ], [ -95.375537002075859, 29.705511185709852 ], [ -95.375653002797634, 29.705856185721192 ], [ -95.375752002694298, 29.706100186082107 ], [ -95.375819002317314, 29.706263185994306 ], [ -95.376021002880378, 29.706659186154347 ], [ -95.376236003069138, 29.70709518600475 ], [ -95.376403002915467, 29.707379186395201 ], [ -95.376500002586212, 29.707544186397524 ], [ -95.376827003094263, 29.708135186554156 ], [ -95.377228002584147, 29.708811185934071 ], [ -95.37741800330933, 29.70916718616904 ], [ -95.377973002832121, 29.710258186415114 ], [ -95.378269003674333, 29.710929186608894 ], [ -95.378560003750835, 29.711647186661356 ], [ -95.378614003201534, 29.711768186414634 ], [ -95.378641003098352, 29.711871186995303 ], [ -95.378666003717697, 29.711966187248347 ], [ -95.378742003706549, 29.711948186524879 ], [ -95.379024003986075, 29.711978186599008 ], [ -95.379097003414813, 29.712004186743997 ], [ -95.379403003492214, 29.712112186983397 ], [ -95.380067003461519, 29.712687186723539 ], [ -95.380452004195533, 29.712805187412282 ], [ -95.381586004536402, 29.712991187048743 ], [ -95.382098004362476, 29.713109187415846 ], [ -95.38212700448706, 29.71301818677674 ], [ -95.382281004747938, 29.712545187114177 ], [ -95.382501004600613, 29.711863187108356 ], [ -95.382529004904001, 29.71166118625176 ], [ -95.38260600401567, 29.711617186212681 ], [ -95.382695004651893, 29.711492186443103 ], [ -95.382814004252324, 29.711246186195623 ], [ -95.383193004674808, 29.710111186476809 ], [ -95.383679004833397, 29.708587186247978 ], [ -95.384623004797831, 29.705704185109681 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 947, "Tract": "48201312601", "Area_SqMi": 0.17793555703746244, "total_2009": 3848, "total_2010": 3007, "total_2011": 2928, "total_2012": 3351, "total_2013": 3879, "total_2014": 4425, "total_2015": 4313, "total_2016": 3211, "total_2017": 3474, "total_2018": 4310, "total_2019": 4733, "total_2020": 4142, "age1": 709, "age2": 2152, "age3": 978, "earn1": 429, "earn2": 1122, "earn3": 2288, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 11, "naics_s06": 0, "naics_s07": 11, "naics_s08": 0, "naics_s09": 37, "naics_s10": 10, "naics_s11": 37, "naics_s12": 184, "naics_s13": 0, "naics_s14": 114, "naics_s15": 1, "naics_s16": 2474, "naics_s17": 434, "naics_s18": 329, "naics_s19": 189, "naics_s20": 0, "race1": 2108, "race2": 1193, "race3": 31, "race4": 435, "race5": 1, "race6": 71, "ethnicity1": 2820, "ethnicity2": 1019, "edu1": 542, "edu2": 749, "edu3": 1003, "edu4": 836, "Shape_Length": 10730.281117850604, "Shape_Area": 4960538.7904549679, "total_2021": 3377, "total_2022": 3839 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.390639007165277, 29.724070189243324 ], [ -95.390725007274753, 29.723936188901124 ], [ -95.390249006652382, 29.723649189244796 ], [ -95.390075006835659, 29.723580189188901 ], [ -95.389943007036734, 29.723526188604197 ], [ -95.389271007104327, 29.723112189224356 ], [ -95.388328006184111, 29.722554188692424 ], [ -95.387474006591333, 29.722023188427688 ], [ -95.386657005715264, 29.721524188200739 ], [ -95.385777005172983, 29.721012188544105 ], [ -95.384913005066849, 29.720493188362447 ], [ -95.384785004860717, 29.72040318801994 ], [ -95.384632005502425, 29.720243188394626 ], [ -95.38449700482289, 29.720056188025801 ], [ -95.383651005137992, 29.718400188222724 ], [ -95.383521004733765, 29.718186188204037 ], [ -95.38330700465167, 29.717908187791686 ], [ -95.383040004687714, 29.717617187982125 ], [ -95.382946005267755, 29.717534187872676 ], [ -95.382754004209758, 29.717363187759791 ], [ -95.382719004984864, 29.71734018749822 ], [ -95.3823760048342, 29.717111187415849 ], [ -95.382048004636573, 29.716929187632658 ], [ -95.381796004196289, 29.716814187528747 ], [ -95.381513004837799, 29.716713187619842 ], [ -95.380932004399, 29.716523187861053 ], [ -95.38055600441902, 29.717597187596397 ], [ -95.380421003769129, 29.718003188393052 ], [ -95.380404003691524, 29.718054187740069 ], [ -95.38030800423023, 29.718345188240686 ], [ -95.380089003848454, 29.71897618849091 ], [ -95.380014003838909, 29.719174188692232 ], [ -95.379744003823731, 29.719889188503686 ], [ -95.379421004196629, 29.720887188600766 ], [ -95.379455004099171, 29.720929188336072 ], [ -95.380368004367952, 29.721472188431939 ], [ -95.381738004508236, 29.722318188546883 ], [ -95.382088004860719, 29.722528188664082 ], [ -95.382915004813157, 29.723014188846591 ], [ -95.383771005411845, 29.723542188937738 ], [ -95.384638005247467, 29.724061188924889 ], [ -95.385472005806932, 29.724567189499439 ], [ -95.38634600580798, 29.725097189747995 ], [ -95.387211006228227, 29.725621189424615 ], [ -95.388057006911225, 29.726113189336672 ], [ -95.388927006493731, 29.726649189459994 ], [ -95.389288006461015, 29.726167189478883 ], [ -95.389614006458899, 29.725796188952479 ], [ -95.390265006993062, 29.724963189349591 ], [ -95.390626007125945, 29.724535189040715 ], [ -95.390601007380738, 29.724348188864671 ], [ -95.390639007165277, 29.724070189243324 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 948, "Tract": "48201253201", "Area_SqMi": 6.8203265984148125, "total_2009": 803, "total_2010": 622, "total_2011": 611, "total_2012": 507, "total_2013": 495, "total_2014": 729, "total_2015": 653, "total_2016": 670, "total_2017": 669, "total_2018": 540, "total_2019": 606, "total_2020": 478, "age1": 131, "age2": 408, "age3": 134, "earn1": 94, "earn2": 212, "earn3": 367, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 266, "naics_s05": 70, "naics_s06": 36, "naics_s07": 7, "naics_s08": 71, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 32, "naics_s13": 26, "naics_s14": 129, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 0, "naics_s19": 21, "naics_s20": 0, "race1": 555, "race2": 69, "race3": 11, "race4": 26, "race5": 1, "race6": 11, "ethnicity1": 352, "ethnicity2": 321, "edu1": 141, "edu2": 148, "edu3": 162, "edu4": 91, "Shape_Length": 79074.734717113999, "Shape_Area": 190139032.45816904, "total_2021": 410, "total_2022": 673 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.965254901975626, 29.808055220863857 ], [ -94.965211901657327, 29.807813220112216 ], [ -94.965200901254249, 29.80776922086751 ], [ -94.965169901841819, 29.807578220524739 ], [ -94.964141900809466, 29.807748220563564 ], [ -94.96321590109946, 29.807902221016118 ], [ -94.962262900443363, 29.808060220771655 ], [ -94.962142900887685, 29.808080220511947 ], [ -94.962087901200931, 29.808083221119762 ], [ -94.962080901140766, 29.808023220642987 ], [ -94.961635900950355, 29.80595422066849 ], [ -94.961598900996734, 29.805785220072593 ], [ -94.961549900545521, 29.805557220161855 ], [ -94.961151900053679, 29.803674219507947 ], [ -94.960922900276287, 29.802589219357557 ], [ -94.960743900342749, 29.801719219525477 ], [ -94.960453899791219, 29.800387218766954 ], [ -94.960271899857787, 29.799549219311899 ], [ -94.960230900077136, 29.799361218813424 ], [ -94.960201899617815, 29.799228218595584 ], [ -94.960155900203873, 29.799013219273917 ], [ -94.9599678995136, 29.798119218571301 ], [ -94.959949899925874, 29.798005218899256 ], [ -94.959945899459214, 29.797980219140847 ], [ -94.959908899837131, 29.797879218867084 ], [ -94.959888899419568, 29.797787218725478 ], [ -94.959885899626215, 29.797699218377382 ], [ -94.95982490005629, 29.797408218232508 ], [ -94.959667899295084, 29.797237218847027 ], [ -94.95959489931424, 29.797164218401793 ], [ -94.959545899290831, 29.797104218937161 ], [ -94.959498899951384, 29.797034218492286 ], [ -94.959302899138535, 29.796796218134176 ], [ -94.959228899116653, 29.796715218642795 ], [ -94.959162899069369, 29.796634218347339 ], [ -94.959092899316985, 29.796537218763575 ], [ -94.959011899292165, 29.796447218813459 ], [ -94.957893899397703, 29.795065218510409 ], [ -94.957576898663532, 29.794678217813193 ], [ -94.957421898937227, 29.794485217683043 ], [ -94.956722898232627, 29.793623217857547 ], [ -94.95624789805845, 29.793027217786179 ], [ -94.956052898779106, 29.792795217543723 ], [ -94.955911898744972, 29.792471218057432 ], [ -94.955788898319199, 29.792412217838653 ], [ -94.955680898375263, 29.792334217403091 ], [ -94.955563898480307, 29.792187217925584 ], [ -94.954857898509644, 29.791324217458612 ], [ -94.953411897930025, 29.78952221691987 ], [ -94.952589897827551, 29.788515217400708 ], [ -94.950808897159405, 29.786318216555305 ], [ -94.949708896455505, 29.784952216774393 ], [ -94.949397896384937, 29.784566216451193 ], [ -94.948427896310164, 29.78336521612216 ], [ -94.947827895941359, 29.782623215624955 ], [ -94.94731589599111, 29.781981216030449 ], [ -94.946747895566133, 29.781289216002715 ], [ -94.946583895113037, 29.781104215645779 ], [ -94.946232894967594, 29.78066521595925 ], [ -94.945944894952291, 29.780318215605892 ], [ -94.945509894696357, 29.779775215785875 ], [ -94.944874895373729, 29.77899821504554 ], [ -94.94421689463779, 29.778188215392635 ], [ -94.943593895002465, 29.777423214739837 ], [ -94.943276894761354, 29.777028215254575 ], [ -94.943059894412869, 29.776761214695153 ], [ -94.942317894397817, 29.77585321490805 ], [ -94.942210894170259, 29.775709214835466 ], [ -94.942142893844704, 29.77572121456873 ], [ -94.942102894498106, 29.775563214550804 ], [ -94.941907893849063, 29.774901215001936 ], [ -94.941874894164854, 29.77477321467784 ], [ -94.941861894239253, 29.774732214333167 ], [ -94.941782894034006, 29.77448421477882 ], [ -94.941450893708392, 29.773457214645934 ], [ -94.941244893592128, 29.772772214440685 ], [ -94.941198894130821, 29.77263121376582 ], [ -94.941178893794287, 29.772482213886473 ], [ -94.94113989360342, 29.772383214505012 ], [ -94.941117893942007, 29.772326214245773 ], [ -94.940857893933511, 29.771521214001137 ], [ -94.940848893710537, 29.771492214239156 ], [ -94.940832893504293, 29.771393213596369 ], [ -94.940811893283694, 29.771270213843177 ], [ -94.940766893962746, 29.77111121394519 ], [ -94.940683893301966, 29.770788213454509 ], [ -94.940664893151592, 29.770707213451153 ], [ -94.940532893678196, 29.770129213537167 ], [ -94.939481893356501, 29.765800212849808 ], [ -94.938048892211597, 29.766026213230127 ], [ -94.936966892363671, 29.76619821263187 ], [ -94.934979892077621, 29.766505213424598 ], [ -94.933757891951132, 29.766661212813162 ], [ -94.933405891680351, 29.766706213514347 ], [ -94.932759891176914, 29.76681221310978 ], [ -94.931874890750336, 29.76696721284425 ], [ -94.931613891367121, 29.767003213049218 ], [ -94.931137890511295, 29.767079213246674 ], [ -94.930600891264802, 29.767166212989402 ], [ -94.930228890536483, 29.76722621334417 ], [ -94.930067890221338, 29.767262213563839 ], [ -94.92969289098707, 29.767324213106242 ], [ -94.929311890227282, 29.767350213427818 ], [ -94.929093890507531, 29.767338213546914 ], [ -94.928758890382468, 29.767319213443802 ], [ -94.928552890588008, 29.76727121342762 ], [ -94.928235889678092, 29.767203213613332 ], [ -94.927896889759424, 29.767136213714888 ], [ -94.927177890281072, 29.767029213900134 ], [ -94.926754890207093, 29.76700821368442 ], [ -94.926233890144459, 29.767022213448218 ], [ -94.920030887943682, 29.768101214111489 ], [ -94.919323888365653, 29.76827221436271 ], [ -94.919134887548367, 29.768272213613511 ], [ -94.918964887479987, 29.768228213864589 ], [ -94.918844887487595, 29.768151213603748 ], [ -94.918637887688163, 29.768171213906296 ], [ -94.918567888227386, 29.768239214179115 ], [ -94.918476887961972, 29.768328214348838 ], [ -94.917481887457697, 29.769354214229843 ], [ -94.917028887225868, 29.769821213983391 ], [ -94.916831887122498, 29.770109214765331 ], [ -94.916726887809205, 29.770184214831577 ], [ -94.916624887430117, 29.770276214361946 ], [ -94.916862887877144, 29.770606214972499 ], [ -94.917238887235115, 29.771071214435278 ], [ -94.917752887833629, 29.77115221481554 ], [ -94.918626888220999, 29.771111214724726 ], [ -94.91912488823904, 29.77117821417777 ], [ -94.919304887658171, 29.771217214225036 ], [ -94.919640888220911, 29.771290214482324 ], [ -94.919739887854263, 29.771437214965427 ], [ -94.91981788842665, 29.771551214968632 ], [ -94.919851887754604, 29.771601214200391 ], [ -94.920013888292473, 29.772002214562448 ], [ -94.91990188849374, 29.772452214694578 ], [ -94.91978788856369, 29.772563214870832 ], [ -94.919549888623791, 29.772800215227697 ], [ -94.919157887776052, 29.772896214906179 ], [ -94.918655888118522, 29.772634214926306 ], [ -94.917700887968593, 29.771931214682532 ], [ -94.917026887413357, 29.771955214533477 ], [ -94.91652588698372, 29.77229121486199 ], [ -94.916369887139339, 29.772713215290114 ], [ -94.916361887145385, 29.772733215404699 ], [ -94.916337887099431, 29.772796214774505 ], [ -94.916330887035471, 29.772817214944322 ], [ -94.916297887432549, 29.772907214798263 ], [ -94.916298887362927, 29.772993215088842 ], [ -94.91630988778526, 29.773540215327568 ], [ -94.916311887223813, 29.773668215336144 ], [ -94.916337887101491, 29.773717215149247 ], [ -94.91638188712551, 29.773800215055015 ], [ -94.916516887497266, 29.774052214841689 ], [ -94.916561887733238, 29.774136215637999 ], [ -94.916667887856491, 29.774336215289559 ], [ -94.916822887538018, 29.774491215720005 ], [ -94.917243887805242, 29.774910215757899 ], [ -94.917905887405055, 29.775167215618627 ], [ -94.917985887389804, 29.775198215578257 ], [ -94.918739888394896, 29.775217215837223 ], [ -94.919697888571704, 29.775203215069077 ], [ -94.920077888595188, 29.775362215013626 ], [ -94.920254889004354, 29.775688215225646 ], [ -94.920342888247205, 29.776239215733952 ], [ -94.91997588834225, 29.776752215320606 ], [ -94.91977788811495, 29.777159216171455 ], [ -94.919772888964673, 29.777756215524885 ], [ -94.919862888707897, 29.778180215685907 ], [ -94.91999788864743, 29.778813216210729 ], [ -94.920014888622816, 29.779004215962541 ], [ -94.920062888714696, 29.779530216459293 ], [ -94.919892889053003, 29.779874216434326 ], [ -94.919881889070069, 29.779894216556176 ], [ -94.919851888557432, 29.779955216431414 ], [ -94.919841888605021, 29.779976216578891 ], [ -94.91983488874169, 29.779988216210935 ], [ -94.919815888167321, 29.780026216034098 ], [ -94.919810889050979, 29.780039216370927 ], [ -94.919749888110189, 29.780161216332875 ], [ -94.919743889085439, 29.780729216467297 ], [ -94.920039889177687, 29.781009216464721 ], [ -94.920650888762424, 29.781157216127379 ], [ -94.920795888976869, 29.781203216227009 ], [ -94.921029888462286, 29.781278216617771 ], [ -94.921186889516036, 29.781440216235605 ], [ -94.92132888909866, 29.781684216758169 ], [ -94.921378889397047, 29.782080216919468 ], [ -94.921070889309405, 29.782547217306995 ], [ -94.92060488879082, 29.782808216941604 ], [ -94.919087888572022, 29.78315121737451 ], [ -94.918380887914438, 29.783557217505201 ], [ -94.918149887853332, 29.784053217408569 ], [ -94.918070887879836, 29.78439121711456 ], [ -94.918100887935481, 29.784557217776278 ], [ -94.918137888049387, 29.784756217715387 ], [ -94.918359888439056, 29.78519321742063 ], [ -94.918205888466829, 29.785643217881937 ], [ -94.917788887868198, 29.785956218013645 ], [ -94.917598888767301, 29.786032217404152 ], [ -94.917116887772949, 29.786227218065573 ], [ -94.917007888116345, 29.786355217728943 ], [ -94.917003888122082, 29.786557218182264 ], [ -94.917011888502145, 29.786644217699418 ], [ -94.917024887832881, 29.786773217644928 ], [ -94.917248887788247, 29.786852217680693 ], [ -94.917471887818621, 29.786879217732793 ], [ -94.918208888095151, 29.786898217698525 ], [ -94.918459888913489, 29.787044217717977 ], [ -94.918600888331582, 29.787243217625466 ], [ -94.918614888455835, 29.787549217771474 ], [ -94.918422888429944, 29.787769217654713 ], [ -94.918027888988817, 29.788028218405717 ], [ -94.918016888959102, 29.788036217783869 ], [ -94.917839888822797, 29.788210217860609 ], [ -94.91774888860671, 29.788593217802802 ], [ -94.917770888573045, 29.788839218631029 ], [ -94.917792888040438, 29.788911217813848 ], [ -94.91783488890502, 29.789047218111833 ], [ -94.918061888622361, 29.789275218716416 ], [ -94.918566888210094, 29.789723218603179 ], [ -94.918578888711878, 29.789741218838614 ], [ -94.91881288876624, 29.790071218038033 ], [ -94.919119888839887, 29.790671218387875 ], [ -94.919368888600417, 29.791138218485646 ], [ -94.919531888788455, 29.791339218388988 ], [ -94.919631889113589, 29.791463219146369 ], [ -94.920030889574534, 29.791726218568769 ], [ -94.920513888790282, 29.791928219191927 ], [ -94.92077088932588, 29.79194721871913 ], [ -94.921130889173583, 29.791934219193873 ], [ -94.921303889746611, 29.792066218864552 ], [ -94.921436889525054, 29.792296218433524 ], [ -94.921295889398237, 29.792537218986201 ], [ -94.920861889553422, 29.792648218819647 ], [ -94.920443888847174, 29.792721219065474 ], [ -94.920032889508477, 29.792988219417879 ], [ -94.919738888713226, 29.793291218845063 ], [ -94.91944688866775, 29.793662219424991 ], [ -94.919298888644647, 29.794015219492504 ], [ -94.919263889044629, 29.794404219290023 ], [ -94.919473889650547, 29.794655219053617 ], [ -94.919697888815293, 29.794704219601911 ], [ -94.919885888881694, 29.794671219265137 ], [ -94.920079889380119, 29.794534219612693 ], [ -94.920323888881683, 29.794299219091712 ], [ -94.920569889140424, 29.794183219269613 ], [ -94.921014889681373, 29.794177219690472 ], [ -94.921789889291205, 29.794382218934615 ], [ -94.922201889696879, 29.794473218868433 ], [ -94.922441889475067, 29.794534219175585 ], [ -94.922451890036228, 29.794537219094607 ], [ -94.922808890203029, 29.794427219155658 ], [ -94.923204889862561, 29.794488219441845 ], [ -94.923842890740502, 29.794725218901853 ], [ -94.924120890110714, 29.794923218965774 ], [ -94.924210890355269, 29.795183219370752 ], [ -94.924169890861819, 29.795931219087141 ], [ -94.924101890111928, 29.796117219108769 ], [ -94.924071890169742, 29.796201219615668 ], [ -94.923818890844515, 29.796406219347809 ], [ -94.923459890644196, 29.796447219367664 ], [ -94.923297889920065, 29.796466220042539 ], [ -94.922504889767637, 29.79664221981086 ], [ -94.922275890406382, 29.796757220170214 ], [ -94.922133890199305, 29.79695321945762 ], [ -94.922087889550895, 29.797223219943856 ], [ -94.922142889541121, 29.797409220131112 ], [ -94.922308890167969, 29.797563219486083 ], [ -94.922457890409802, 29.797621219894321 ], [ -94.922566890365459, 29.797664219795198 ], [ -94.922979889956054, 29.797763219589452 ], [ -94.923187890394175, 29.797872220201846 ], [ -94.923251889874578, 29.798032220229373 ], [ -94.92327789078378, 29.798094219791906 ], [ -94.923280890013061, 29.798475219597069 ], [ -94.923251890214829, 29.798539219657755 ], [ -94.923182890251496, 29.798698220329417 ], [ -94.923132889996452, 29.798814220341434 ], [ -94.922925890670683, 29.799153220116953 ], [ -94.922610890253196, 29.799480220707075 ], [ -94.922496890350573, 29.799600220159324 ], [ -94.922170889732698, 29.800000220754868 ], [ -94.922080889674305, 29.800196220278291 ], [ -94.922111889972882, 29.800494220811718 ], [ -94.922266890007066, 29.800738220928352 ], [ -94.922942890035642, 29.801610220877826 ], [ -94.923007890457612, 29.801922220731036 ], [ -94.923004890828508, 29.801944221164099 ], [ -94.922948890478551, 29.802386220854928 ], [ -94.922740890562409, 29.80272522139181 ], [ -94.922644890414617, 29.80281922073851 ], [ -94.922446890184261, 29.803013220685656 ], [ -94.92217489034465, 29.803137220834419 ], [ -94.922094890507125, 29.803135221286464 ], [ -94.921583889838473, 29.803123221317254 ], [ -94.920497889645191, 29.802952220644141 ], [ -94.920154890206661, 29.802858220772524 ], [ -94.920084890008354, 29.80283922098608 ], [ -94.91975788956303, 29.802791221100652 ], [ -94.919506889658038, 29.802773221099283 ], [ -94.919414889343329, 29.802766220703123 ], [ -94.919312889815714, 29.802783221114517 ], [ -94.91904988960529, 29.802921221047519 ], [ -94.918609889521363, 29.803196221535082 ], [ -94.918216889061597, 29.803277221027987 ], [ -94.918010889492734, 29.8032422208118 ], [ -94.917926889615842, 29.803205221136142 ], [ -94.917829889116931, 29.803163221350108 ], [ -94.917674889405902, 29.803135221086286 ], [ -94.917384889107723, 29.803169221489473 ], [ -94.916890889365973, 29.803303220990973 ], [ -94.916801889204606, 29.803611220989957 ], [ -94.916762888400797, 29.80381322133233 ], [ -94.916792889090033, 29.804044221640357 ], [ -94.916951888715062, 29.804303221041433 ], [ -94.917170888526059, 29.804546221662811 ], [ -94.917230888973492, 29.804740221902719 ], [ -94.917191889339662, 29.80495722185228 ], [ -94.91694788881081, 29.805185221339773 ], [ -94.916752889252237, 29.805292221597043 ], [ -94.916401888502222, 29.805312221395056 ], [ -94.916214889024829, 29.805374221370869 ], [ -94.916088888864394, 29.805481222048112 ], [ -94.915979888976764, 29.80563222159903 ], [ -94.915976889109601, 29.805923222160409 ], [ -94.916127888468608, 29.80622022177042 ], [ -94.916162888911671, 29.806394221833759 ], [ -94.916175888857595, 29.806458221650061 ], [ -94.916050888639177, 29.806632222051288 ], [ -94.915846889187833, 29.806717221700023 ], [ -94.915444888727805, 29.8067452219878 ], [ -94.915087888811669, 29.806914222090519 ], [ -94.914821888313696, 29.807233221952664 ], [ -94.914780888758742, 29.80727822227918 ], [ -94.914657888133931, 29.807414222493367 ], [ -94.914617888735606, 29.807460221926075 ], [ -94.914488888889124, 29.807603222495032 ], [ -94.914210887976367, 29.807771221914429 ], [ -94.913785887843758, 29.808031222527543 ], [ -94.913234887800115, 29.808278222815051 ], [ -94.912883888330683, 29.808328222753012 ], [ -94.912800888206988, 29.80837622284227 ], [ -94.91273988831351, 29.808412222402815 ], [ -94.912554888384534, 29.808572222704797 ], [ -94.912465887810853, 29.808753222644924 ], [ -94.912447888088025, 29.808790222713256 ], [ -94.912443888307578, 29.809036223043993 ], [ -94.912606887897496, 29.809295222897255 ], [ -94.912850888122392, 29.809494222325416 ], [ -94.912991887905648, 29.809674222914804 ], [ -94.913052887792063, 29.809752222323922 ], [ -94.913099887742732, 29.809826222614664 ], [ -94.913281888139593, 29.810107222612015 ], [ -94.913542888076023, 29.810305223139135 ], [ -94.913639888674894, 29.810483222623592 ], [ -94.91353088823017, 29.810574223048466 ], [ -94.913500888846329, 29.810576222676502 ], [ -94.913231887891271, 29.810601223213141 ], [ -94.912990888639399, 29.810574222476749 ], [ -94.912708887961216, 29.810571222535906 ], [ -94.91240288845492, 29.810710222658916 ], [ -94.912122887989241, 29.8108712228108 ], [ -94.911979887673013, 29.810962223385289 ], [ -94.911889887833865, 29.811195222680126 ], [ -94.912047887555858, 29.811402223533047 ], [ -94.912406888063416, 29.811606222688845 ], [ -94.91288088851141, 29.811771222885138 ], [ -94.913064887919504, 29.811962223598368 ], [ -94.913346887920127, 29.812407223008176 ], [ -94.913353888281506, 29.812743223217076 ], [ -94.913253888047734, 29.812923223762795 ], [ -94.91292588818969, 29.813242223862733 ], [ -94.912278888335763, 29.813886223349702 ], [ -94.9119828885798, 29.814054223939657 ], [ -94.911759888363193, 29.814058223246541 ], [ -94.911638888221361, 29.813977223573488 ], [ -94.911609887631059, 29.813806223991016 ], [ -94.911631887467706, 29.813619223629793 ], [ -94.911678888204662, 29.813372223919092 ], [ -94.911725887576452, 29.813155223168565 ], [ -94.911719888039329, 29.812871223009953 ], [ -94.911687887719978, 29.81249822295915 ], [ -94.911656887915797, 29.812214223130017 ], [ -94.911377887698919, 29.811994222972462 ], [ -94.911017888120085, 29.811940222839439 ], [ -94.910717887644992, 29.811922223658012 ], [ -94.910543887187742, 29.811953223295532 ], [ -94.910495887842856, 29.811962223020725 ], [ -94.910475887303647, 29.811993223368628 ], [ -94.910414887438932, 29.812089223637731 ], [ -94.910395887156284, 29.812121223161196 ], [ -94.91039788742205, 29.812134223587517 ], [ -94.910404887247751, 29.812173223746392 ], [ -94.910407887575218, 29.812186223084286 ], [ -94.910413887117812, 29.812216223705494 ], [ -94.910418887993558, 29.812247223017671 ], [ -94.910436887998728, 29.812342223555344 ], [ -94.91044288812661, 29.812374222924035 ], [ -94.910453887788989, 29.812400223336425 ], [ -94.910489887958647, 29.812478223135859 ], [ -94.91050188767079, 29.812504223356481 ], [ -94.910648887709002, 29.812827223874642 ], [ -94.910918888231336, 29.813502224010136 ], [ -94.910956887833748, 29.813724224005334 ], [ -94.910966887899448, 29.813778223957044 ], [ -94.910858887730427, 29.813936223864747 ], [ -94.910731887927966, 29.814028224029464 ], [ -94.910422888056289, 29.81402522382491 ], [ -94.910121887766323, 29.813910223804513 ], [ -94.909678887182565, 29.813632223220946 ], [ -94.909438886957844, 29.813598223247578 ], [ -94.909225887645377, 29.813631223441664 ], [ -94.909056887440059, 29.813761223529784 ], [ -94.908950886891759, 29.814061223733368 ], [ -94.908504887682639, 29.814941223636826 ], [ -94.908498887196345, 29.815061223539963 ], [ -94.90855188763723, 29.815135224306598 ], [ -94.908731887176685, 29.815142223596638 ], [ -94.908799887096379, 29.815146223552404 ], [ -94.90922688736562, 29.815035223524365 ], [ -94.909602887183723, 29.815030223802594 ], [ -94.909973887687016, 29.81515122350029 ], [ -94.910001888087123, 29.815168223803564 ], [ -94.91039788802486, 29.815399223691649 ], [ -94.910642888200528, 29.815657224039271 ], [ -94.910740887451354, 29.815857223781123 ], [ -94.910614888126972, 29.816016224489985 ], [ -94.910459888144473, 29.816080224031808 ], [ -94.9102078882228, 29.81618622392795 ], [ -94.910197887637409, 29.816202223748302 ], [ -94.910080887516216, 29.816300223972615 ], [ -94.910083888120184, 29.816464224068724 ], [ -94.910249887858697, 29.816611224359544 ], [ -94.910526888110951, 29.81676422403228 ], [ -94.910622887631718, 29.816867224361626 ], [ -94.910719887822694, 29.817023224188038 ], [ -94.910724887439173, 29.817254224571023 ], [ -94.910703887695803, 29.817494224205785 ], [ -94.91076688783042, 29.81766422424781 ], [ -94.91105588817237, 29.818004224327559 ], [ -94.911135888392508, 29.818174224462165 ], [ -94.91107088817165, 29.818340224558746 ], [ -94.910788887835764, 29.818389224317507 ], [ -94.91044688825113, 29.818416224486512 ], [ -94.910338887767992, 29.818567224758908 ], [ -94.91040888748698, 29.818777224341659 ], [ -94.910415888025653, 29.818797224768932 ], [ -94.910504887742263, 29.818856224567714 ], [ -94.91058088750961, 29.818907224643112 ], [ -94.910600887612716, 29.818929224909322 ], [ -94.910781888345909, 29.819128224513946 ], [ -94.910800888192867, 29.819232225161802 ], [ -94.910776887819267, 29.819345224725488 ], [ -94.910684887906939, 29.819451224622934 ], [ -94.910403887678868, 29.819537225223815 ], [ -94.909983887452753, 29.819535224977191 ], [ -94.909946888070507, 29.819587225008359 ], [ -94.909900888318163, 29.819649224846547 ], [ -94.909936888040093, 29.81987222536404 ], [ -94.909939887985814, 29.819887225200091 ], [ -94.910072887813016, 29.820147224688554 ], [ -94.910052888202614, 29.820485224774682 ], [ -94.910010887608749, 29.820629224990171 ], [ -94.909979887652483, 29.820739224919709 ], [ -94.90995588764639, 29.820826225523302 ], [ -94.909926888086986, 29.820929225015195 ], [ -94.909897887398714, 29.821032225367723 ], [ -94.909866887340982, 29.821118225179678 ], [ -94.909822888226586, 29.821201224818257 ], [ -94.909822887800217, 29.82122822478491 ], [ -94.90991288824091, 29.821209225580056 ], [ -94.910082887909695, 29.821211225051176 ], [ -94.910625888506743, 29.821250225602846 ], [ -94.911028888036441, 29.821257225530967 ], [ -94.914218889396196, 29.82131022510006 ], [ -94.914479889575816, 29.82132022470908 ], [ -94.91479088907694, 29.821331224672626 ], [ -94.914819889292033, 29.821332224807712 ], [ -94.915016889465349, 29.821340225341366 ], [ -94.915155888929206, 29.821345225205651 ], [ -94.91635288905583, 29.821393224764776 ], [ -94.917836889733266, 29.821375224499434 ], [ -94.918358890522512, 29.821321224769115 ], [ -94.918952889879861, 29.821231225032268 ], [ -94.919510890501954, 29.821069224750097 ], [ -94.920239890896326, 29.82083522513545 ], [ -94.921111890723026, 29.820466224328573 ], [ -94.922155890686653, 29.819971224843201 ], [ -94.92416389140007, 29.819047223988431 ], [ -94.926795892231354, 29.817880223628677 ], [ -94.928377892857355, 29.817179223651998 ], [ -94.931310893089417, 29.815878222992009 ], [ -94.932730893819198, 29.815249223211858 ], [ -94.934143893774817, 29.814622222696819 ], [ -94.93502189364601, 29.814233223090685 ], [ -94.935471893714706, 29.814033222409901 ], [ -94.937436894692254, 29.813147222329807 ], [ -94.938601894542757, 29.812670222124257 ], [ -94.939817895100887, 29.812167222509235 ], [ -94.940821895131791, 29.811859222587117 ], [ -94.941690895695615, 29.811653221907115 ], [ -94.941956895495309, 29.811590221673775 ], [ -94.942890895930489, 29.811423222195867 ], [ -94.944639895971477, 29.811159221499921 ], [ -94.946618896992334, 29.810860221586644 ], [ -94.956553899327545, 29.809361221496118 ], [ -94.959727900492467, 29.808882220773647 ], [ -94.962035900560764, 29.808533221125295 ], [ -94.963340901251442, 29.808339221005326 ], [ -94.965254901975626, 29.808055220863857 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 949, "Tract": "48201232901", "Area_SqMi": 0.94283842635861115, "total_2009": 180, "total_2010": 197, "total_2011": 241, "total_2012": 202, "total_2013": 189, "total_2014": 241, "total_2015": 272, "total_2016": 308, "total_2017": 374, "total_2018": 291, "total_2019": 818, "total_2020": 826, "age1": 165, "age2": 319, "age3": 126, "earn1": 164, "earn2": 211, "earn3": 235, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 9, "naics_s06": 3, "naics_s07": 42, "naics_s08": 5, "naics_s09": 4, "naics_s10": 2, "naics_s11": 11, "naics_s12": 20, "naics_s13": 0, "naics_s14": 281, "naics_s15": 78, "naics_s16": 57, "naics_s17": 0, "naics_s18": 93, "naics_s19": 5, "naics_s20": 0, "race1": 380, "race2": 172, "race3": 11, "race4": 36, "race5": 0, "race6": 11, "ethnicity1": 360, "ethnicity2": 250, "edu1": 124, "edu2": 120, "edu3": 117, "edu4": 84, "Shape_Length": 26155.177662661437, "Shape_Area": 26284721.64278397, "total_2021": 631, "total_2022": 610 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.212675964827739, 29.805309211299754 ], [ -95.212803965434944, 29.805210211217858 ], [ -95.212665964883541, 29.805129211558434 ], [ -95.211992964515815, 29.80496421127987 ], [ -95.211169964746233, 29.804950211534884 ], [ -95.210778964119683, 29.804759211331323 ], [ -95.210537964879947, 29.804460211197718 ], [ -95.210491964518823, 29.804212211734974 ], [ -95.210351964523099, 29.80391321107496 ], [ -95.210100964264527, 29.803630210960772 ], [ -95.209884963939132, 29.803462211125662 ], [ -95.208943963970754, 29.802951211490932 ], [ -95.208728963896263, 29.802733211501081 ], [ -95.208369963640848, 29.802168211407214 ], [ -95.207861963276528, 29.800875211041866 ], [ -95.207697963976571, 29.800586210533481 ], [ -95.207287963032499, 29.800091210515973 ], [ -95.206405962619215, 29.79923621097474 ], [ -95.204855963111186, 29.797913210833226 ], [ -95.204069962048834, 29.797127210023735 ], [ -95.203797962208398, 29.796685210020659 ], [ -95.203711962764658, 29.796298209728786 ], [ -95.203847962436896, 29.795962210117821 ], [ -95.204156962654963, 29.795626209820814 ], [ -95.204413962742819, 29.795524209638842 ], [ -95.204909962393842, 29.795523209606053 ], [ -95.205339962828162, 29.79559221029545 ], [ -95.206244962652221, 29.79573820981825 ], [ -95.206449963125451, 29.795722209908092 ], [ -95.206607962726565, 29.795647209816 ], [ -95.206803962721239, 29.795557209694088 ], [ -95.206852963377997, 29.795343210062736 ], [ -95.206811963172456, 29.795125210135122 ], [ -95.206784963166854, 29.794946209333112 ], [ -95.20639596335559, 29.794282209498508 ], [ -95.206350962874325, 29.794091209537306 ], [ -95.206306962481406, 29.793846209575204 ], [ -95.206327963213454, 29.793519209455805 ], [ -95.206538962837342, 29.793265209676836 ], [ -95.206376962744386, 29.792908209529092 ], [ -95.206390963192959, 29.792269209274174 ], [ -95.206328963086463, 29.792270209492226 ], [ -95.206206962304805, 29.792271209375794 ], [ -95.20620196258082, 29.792232209403444 ], [ -95.205647962432622, 29.791348209019226 ], [ -95.205620962861147, 29.791311209453557 ], [ -95.205494963029508, 29.791329208810957 ], [ -95.205439962927031, 29.791337208609036 ], [ -95.205392962630185, 29.791344209002066 ], [ -95.205341962400325, 29.791351208972834 ], [ -95.205285962525579, 29.791359209289837 ], [ -95.205166962287549, 29.791367208723415 ], [ -95.205116962639195, 29.791371209286311 ], [ -95.204798962031077, 29.791384208646829 ], [ -95.203864962202957, 29.791386209213414 ], [ -95.203668961774696, 29.791385209289555 ], [ -95.203383961768253, 29.791383209161399 ], [ -95.202824961896056, 29.791382208766663 ], [ -95.202226961255064, 29.791388209024706 ], [ -95.201736961111479, 29.79139520904771 ], [ -95.201281961794336, 29.791427209276488 ], [ -95.201024961286478, 29.791463208778797 ], [ -95.200684961267925, 29.791520208861602 ], [ -95.200298961732798, 29.791601209454072 ], [ -95.199911961617957, 29.791709209228983 ], [ -95.199542960713146, 29.791841209232395 ], [ -95.199172960744932, 29.791999209272241 ], [ -95.199032960500119, 29.792068208958653 ], [ -95.198866960442444, 29.79215020936045 ], [ -95.198833960574092, 29.792166209058255 ], [ -95.198594960741204, 29.79229720913024 ], [ -95.198561960725243, 29.792315209142586 ], [ -95.19834796096292, 29.792443209536 ], [ -95.198268960597161, 29.792496209553175 ], [ -95.19788996059755, 29.792762209917541 ], [ -95.19760996047016, 29.792955209895339 ], [ -95.197323960143208, 29.793136210092506 ], [ -95.197051960701074, 29.793282209351123 ], [ -95.196951960311011, 29.793330209416471 ], [ -95.196772960598608, 29.793415210042898 ], [ -95.196478960485564, 29.793546210207673 ], [ -95.196158960446169, 29.79366420960535 ], [ -95.196096960263318, 29.793687210247452 ], [ -95.195846960681365, 29.79376220940728 ], [ -95.195518959708892, 29.793847209490394 ], [ -95.195239959955202, 29.793906209997761 ], [ -95.195017959524179, 29.793944209951999 ], [ -95.194873960316826, 29.793968209609261 ], [ -95.194697959565048, 29.793991210322559 ], [ -95.194538960107366, 29.794009209587699 ], [ -95.194189959890892, 29.794034209843534 ], [ -95.193861959644821, 29.794042210069847 ], [ -95.193674959902026, 29.79403920985829 ], [ -95.193258959825101, 29.794025210345669 ], [ -95.192966959007876, 29.793992210047744 ], [ -95.192709959185663, 29.793958210147402 ], [ -95.192536959593298, 29.793925210254958 ], [ -95.192515959684883, 29.794013210253976 ], [ -95.192480958959507, 29.794127210229224 ], [ -95.192438959676025, 29.794205210253139 ], [ -95.192428959024866, 29.794268210041526 ], [ -95.192391959643572, 29.794344209971538 ], [ -95.192390958950057, 29.794431210072698 ], [ -95.192331958806534, 29.794591210539899 ], [ -95.192317959254027, 29.794676210188968 ], [ -95.19230895934021, 29.794763210525005 ], [ -95.192305959175712, 29.794936210124977 ], [ -95.192321959426934, 29.795100210628423 ], [ -95.192350959677896, 29.795266210692919 ], [ -95.192379959576883, 29.795400209979412 ], [ -95.192447959697802, 29.795638210578769 ], [ -95.19250695960001, 29.795793210286753 ], [ -95.192530959494562, 29.795868210482304 ], [ -95.192581959946921, 29.79600321015139 ], [ -95.19265795908602, 29.796190210426936 ], [ -95.192665959006177, 29.796260210109036 ], [ -95.192690959599915, 29.796326210774087 ], [ -95.192703959078671, 29.796401210794222 ], [ -95.192754959632055, 29.796541210424095 ], [ -95.192808960019448, 29.796716210785608 ], [ -95.193066959496548, 29.797434210243242 ], [ -95.192977959655522, 29.797460210548124 ], [ -95.192677959120289, 29.797530211027233 ], [ -95.19247995940502, 29.797565211105091 ], [ -95.192061959812321, 29.797613210355259 ], [ -95.191797959026857, 29.797635210438127 ], [ -95.191719959815131, 29.797634210345844 ], [ -95.191742959208199, 29.798230211021785 ], [ -95.191746958936918, 29.798821210645642 ], [ -95.191759959227696, 29.799574210776637 ], [ -95.191767959021632, 29.800298211160801 ], [ -95.191772959648446, 29.800574211079962 ], [ -95.191787959511643, 29.801015211571112 ], [ -95.191798959295596, 29.801725212047081 ], [ -95.191804959701869, 29.802227212084652 ], [ -95.191771959421487, 29.802350211577409 ], [ -95.191730959652119, 29.80238721201469 ], [ -95.191721959378739, 29.802395211504084 ], [ -95.191634959914168, 29.802430211788042 ], [ -95.191151959032496, 29.802451211868288 ], [ -95.189291958398854, 29.8024762120241 ], [ -95.188967959113668, 29.802470211898381 ], [ -95.188432958472404, 29.802480212071607 ], [ -95.188030958616068, 29.802495211919236 ], [ -95.187750958170369, 29.802491212005933 ], [ -95.187569958411089, 29.802496211603639 ], [ -95.187370958883022, 29.802497211872392 ], [ -95.187358958923596, 29.80259021159204 ], [ -95.187368957986337, 29.803215212439067 ], [ -95.187367957925943, 29.803571212553123 ], [ -95.187372958950775, 29.803928211990936 ], [ -95.187364958515772, 29.804255212285419 ], [ -95.187373958399803, 29.80464821221732 ], [ -95.187373958239064, 29.804783212775849 ], [ -95.187359958399938, 29.804946212284634 ], [ -95.187358958886364, 29.804959212522395 ], [ -95.187358958523632, 29.805064212740753 ], [ -95.187357958533283, 29.805191212202882 ], [ -95.187361958048967, 29.805348212450639 ], [ -95.187354958444573, 29.805533212129689 ], [ -95.187359958675842, 29.805660212522213 ], [ -95.187637958265626, 29.805660212203968 ], [ -95.188057958426214, 29.805675212633002 ], [ -95.188280958715893, 29.805693212100905 ], [ -95.188440958377441, 29.805706212599134 ], [ -95.188714959182846, 29.805744212819839 ], [ -95.18885095882726, 29.805767212109718 ], [ -95.189334959219224, 29.805859212950811 ], [ -95.189633958716527, 29.805915212192978 ], [ -95.190160958956909, 29.805999212983568 ], [ -95.19037695931803, 29.806024212625342 ], [ -95.190735959790672, 29.806056212886237 ], [ -95.19094795911974, 29.806067212597217 ], [ -95.19138395991196, 29.806073212261985 ], [ -95.19188295970622, 29.80605921264495 ], [ -95.192297959360602, 29.806047212333354 ], [ -95.192832959726758, 29.806029212760077 ], [ -95.193171959765976, 29.806025212070256 ], [ -95.193296960389063, 29.806027212746411 ], [ -95.193356960005133, 29.806028212440044 ], [ -95.195232960776892, 29.806012212754194 ], [ -95.195493961107857, 29.806006212600412 ], [ -95.196277960639947, 29.805988212154109 ], [ -95.197200961406665, 29.805976212138876 ], [ -95.197552960892651, 29.805977212623347 ], [ -95.197798961356213, 29.80598321264916 ], [ -95.198072961652116, 29.805979211891913 ], [ -95.198546961171417, 29.805972211873563 ], [ -95.200783961596372, 29.805940212041442 ], [ -95.201247961917716, 29.805984212089083 ], [ -95.201465961973199, 29.806014212579512 ], [ -95.201788962290834, 29.806058212416833 ], [ -95.202156962565027, 29.8061222118838 ], [ -95.202531962376341, 29.806188212195945 ], [ -95.203506963182164, 29.806368212520649 ], [ -95.204799963478578, 29.806589212160588 ], [ -95.204923963493968, 29.806611212568466 ], [ -95.205372963335265, 29.806668211949372 ], [ -95.205824963171409, 29.806703212102317 ], [ -95.208188964386792, 29.806800212382495 ], [ -95.209552964662805, 29.80680221172199 ], [ -95.209742964274852, 29.806781211719912 ], [ -95.210112964715762, 29.806719211602946 ], [ -95.210291964459302, 29.806677211918327 ], [ -95.210630964989747, 29.806573211817724 ], [ -95.211119965123913, 29.806374212026764 ], [ -95.211588964297405, 29.806121212132187 ], [ -95.21201096489321, 29.805827211931575 ], [ -95.212675964827739, 29.805309211299754 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 950, "Tract": "48201232802", "Area_SqMi": 0.43632950176966406, "total_2009": 68, "total_2010": 85, "total_2011": 105, "total_2012": 90, "total_2013": 98, "total_2014": 85, "total_2015": 68, "total_2016": 99, "total_2017": 109, "total_2018": 111, "total_2019": 79, "total_2020": 80, "age1": 19, "age2": 51, "age3": 13, "earn1": 20, "earn2": 31, "earn3": 32, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 0, "naics_s07": 16, "naics_s08": 1, "naics_s09": 0, "naics_s10": 3, "naics_s11": 8, "naics_s12": 2, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 12, "naics_s17": 0, "naics_s18": 20, "naics_s19": 6, "naics_s20": 0, "race1": 61, "race2": 15, "race3": 0, "race4": 5, "race5": 0, "race6": 2, "ethnicity1": 40, "ethnicity2": 43, "edu1": 15, "edu2": 15, "edu3": 20, "edu4": 14, "Shape_Length": 16737.789675620574, "Shape_Area": 12164119.723932471, "total_2021": 72, "total_2022": 83 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.214882964341584, 29.786171208042418 ], [ -95.214883964936391, 29.785774207220548 ], [ -95.214343964976152, 29.784885207011275 ], [ -95.21406996450078, 29.784130207245834 ], [ -95.213865964547324, 29.783323207297673 ], [ -95.213841964799954, 29.783291207460522 ], [ -95.212979964161804, 29.782152207318816 ], [ -95.212817964276269, 29.78152120674515 ], [ -95.212882964195913, 29.780984206796543 ], [ -95.212841964239033, 29.780627206701688 ], [ -95.212721963646416, 29.780321206274792 ], [ -95.212522963934944, 29.780048206410331 ], [ -95.211933963527329, 29.77954720660302 ], [ -95.211205963816141, 29.779137205989485 ], [ -95.210721963533814, 29.778938206507611 ], [ -95.210272962820625, 29.778875206490639 ], [ -95.20990196345052, 29.778890206204391 ], [ -95.209409963132202, 29.778940205968031 ], [ -95.208789963273929, 29.77909620613503 ], [ -95.208549963031871, 29.779046206033257 ], [ -95.208356962912916, 29.77891120630996 ], [ -95.208174962725948, 29.778672206760959 ], [ -95.208055962280795, 29.778365206159837 ], [ -95.208104962477606, 29.776532206053368 ], [ -95.207986962279307, 29.776211205438084 ], [ -95.207927962313562, 29.776049206139437 ], [ -95.207823962074713, 29.775947206146103 ], [ -95.207610962278338, 29.775758205441878 ], [ -95.207469962575189, 29.775666205371873 ], [ -95.207254962750923, 29.77555820561852 ], [ -95.207071962633378, 29.77547620542116 ], [ -95.206932962649532, 29.775465205788592 ], [ -95.206549962445351, 29.775499205663106 ], [ -95.206422962197266, 29.775501205580031 ], [ -95.206415962522172, 29.775546205757372 ], [ -95.206418962162431, 29.775674205441025 ], [ -95.206426962474524, 29.775964205762303 ], [ -95.20646896227953, 29.776979206208615 ], [ -95.206471961840705, 29.777491206321578 ], [ -95.206462962535483, 29.777696206183098 ], [ -95.206450962193571, 29.777991206232802 ], [ -95.206441961749078, 29.778066206114616 ], [ -95.206407962114866, 29.778366206330922 ], [ -95.206396962540595, 29.77846220603902 ], [ -95.206378962569929, 29.778557205983248 ], [ -95.206309961943433, 29.778914206730594 ], [ -95.206212962007001, 29.779300206676513 ], [ -95.206201961778888, 29.779370206717342 ], [ -95.206138962642143, 29.779547206990149 ], [ -95.206110962347466, 29.779629206523087 ], [ -95.206052961834132, 29.779803206854854 ], [ -95.205744962115517, 29.780673206789615 ], [ -95.205601961986474, 29.78107820653403 ], [ -95.205536961992706, 29.781266207037348 ], [ -95.205111961972847, 29.782479206891242 ], [ -95.205097961972101, 29.782507207646827 ], [ -95.205044962334014, 29.782652207195049 ], [ -95.204982962383056, 29.782816207382197 ], [ -95.204917961838831, 29.782995207609563 ], [ -95.204907962347775, 29.783022207693321 ], [ -95.204598961855751, 29.783888207228078 ], [ -95.204569962184308, 29.783961207965095 ], [ -95.204489961944532, 29.784160207698843 ], [ -95.204447961530761, 29.784264207281296 ], [ -95.204263962362518, 29.784652207390213 ], [ -95.204048961813328, 29.785040207529207 ], [ -95.203820962366109, 29.785411207782616 ], [ -95.203664961377683, 29.785634208272484 ], [ -95.203532961884122, 29.785806207944638 ], [ -95.203337961724415, 29.786059207712466 ], [ -95.20323896189727, 29.786192208233853 ], [ -95.203118962030331, 29.786354207908051 ], [ -95.202907961371935, 29.786686207693233 ], [ -95.202736961734956, 29.786993208188381 ], [ -95.202592962012659, 29.787304208737577 ], [ -95.202477961694143, 29.787609208184037 ], [ -95.202431961769804, 29.787757208782278 ], [ -95.202380961446906, 29.787921208866113 ], [ -95.202373961929538, 29.787946208519561 ], [ -95.202335961224932, 29.788085208328152 ], [ -95.202315961508916, 29.788180208729838 ], [ -95.202285961952327, 29.788361208592995 ], [ -95.202267961742422, 29.788469208556407 ], [ -95.202238961909401, 29.78873620900001 ], [ -95.202220961191244, 29.788960208624772 ], [ -95.20222096139284, 29.788974208608401 ], [ -95.202211961162519, 29.789206208416992 ], [ -95.202218961884725, 29.7894732088373 ], [ -95.202221961637647, 29.789950209223768 ], [ -95.202226961671101, 29.790697208671624 ], [ -95.202226962115176, 29.791232209014051 ], [ -95.202226961255064, 29.791388209024706 ], [ -95.202824961896056, 29.791382208766663 ], [ -95.203383961768253, 29.791383209161399 ], [ -95.203668961774696, 29.791385209289555 ], [ -95.203864962202957, 29.791386209213414 ], [ -95.204798962031077, 29.791384208646829 ], [ -95.205116962639195, 29.791371209286311 ], [ -95.205166962287549, 29.791367208723415 ], [ -95.205285962525579, 29.791359209289837 ], [ -95.205341962400325, 29.791351208972834 ], [ -95.205392962630185, 29.791344209002066 ], [ -95.205439962927031, 29.791337208609036 ], [ -95.205494963029508, 29.791329208810957 ], [ -95.205620962861147, 29.791311209453557 ], [ -95.205500962249033, 29.791147208611942 ], [ -95.205369962122617, 29.790667208868161 ], [ -95.205362962837484, 29.790158208891892 ], [ -95.205517962909667, 29.789798209036956 ], [ -95.205807962843423, 29.789522208435503 ], [ -95.206153962145336, 29.789459209005013 ], [ -95.206832962804327, 29.789534208314453 ], [ -95.207069962733101, 29.789596208383049 ], [ -95.208161963210756, 29.789663208885059 ], [ -95.208878963261185, 29.789708208214218 ], [ -95.209329963902064, 29.78968620848989 ], [ -95.209745963397921, 29.789538208208526 ], [ -95.210039963943387, 29.789340208445566 ], [ -95.211549963829711, 29.788114208293422 ], [ -95.211915963580381, 29.787880208083514 ], [ -95.212562964421465, 29.787649208295928 ], [ -95.213543964622232, 29.78753120827043 ], [ -95.21402696448412, 29.787332207828737 ], [ -95.214482964407495, 29.786869207427916 ], [ -95.214712964208275, 29.786528208140076 ], [ -95.214882964341584, 29.786171208042418 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 951, "Tract": "48201541206", "Area_SqMi": 0.85903807880840255, "total_2009": 272, "total_2010": 287, "total_2011": 502, "total_2012": 532, "total_2013": 503, "total_2014": 510, "total_2015": 590, "total_2016": 626, "total_2017": 630, "total_2018": 664, "total_2019": 678, "total_2020": 656, "age1": 179, "age2": 315, "age3": 144, "earn1": 218, "earn2": 209, "earn3": 211, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 3, "naics_s06": 25, "naics_s07": 139, "naics_s08": 4, "naics_s09": 0, "naics_s10": 23, "naics_s11": 8, "naics_s12": 47, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 171, "naics_s17": 42, "naics_s18": 67, "naics_s19": 89, "naics_s20": 0, "race1": 433, "race2": 124, "race3": 1, "race4": 67, "race5": 3, "race6": 10, "ethnicity1": 435, "ethnicity2": 203, "edu1": 89, "edu2": 114, "edu3": 164, "edu4": 92, "Shape_Length": 23144.810484383364, "Shape_Area": 23948511.378812402, "total_2021": 615, "total_2022": 638 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.683963089252046, 29.896907214477281 ], [ -95.683748089660128, 29.895759213775815 ], [ -95.683540089804893, 29.894548213343846 ], [ -95.683485089303929, 29.894223213753005 ], [ -95.683454090024995, 29.894027213389094 ], [ -95.683444089252745, 29.893924213555302 ], [ -95.683432089431449, 29.893359213260933 ], [ -95.683399088946885, 29.890581213121774 ], [ -95.683390089715246, 29.889689212351314 ], [ -95.683388089315144, 29.889410212428853 ], [ -95.683371088832374, 29.88818521261997 ], [ -95.683356089070415, 29.886992212410011 ], [ -95.683340088871219, 29.885597211972918 ], [ -95.6833280891166, 29.884714211734615 ], [ -95.683315088589069, 29.883725211370567 ], [ -95.683309088696802, 29.883206211224074 ], [ -95.683309088736422, 29.883178211062067 ], [ -95.683306089356165, 29.883015211036604 ], [ -95.683300088565105, 29.882454210945209 ], [ -95.683299088579929, 29.882283211262255 ], [ -95.6832870893803, 29.880998210775168 ], [ -95.683289089260768, 29.880719210578551 ], [ -95.68330408928253, 29.880393211299946 ], [ -95.683303088944939, 29.879946210648118 ], [ -95.683043089176167, 29.879947210997429 ], [ -95.682513088697675, 29.879920210860163 ], [ -95.682057088278796, 29.879845210920369 ], [ -95.681590087947626, 29.879760210422777 ], [ -95.68111108814368, 29.879610211218782 ], [ -95.68045608771348, 29.87937821088827 ], [ -95.680254088197358, 29.87931621048191 ], [ -95.679628087638136, 29.879122211167324 ], [ -95.679193087519664, 29.879037210713626 ], [ -95.679053087823974, 29.879018210443622 ], [ -95.678825087990688, 29.878988210878717 ], [ -95.678489087492039, 29.878957210517196 ], [ -95.678034086962811, 29.878949210647249 ], [ -95.677753087801534, 29.87894421118866 ], [ -95.676133086517538, 29.878966210980455 ], [ -95.675088086186847, 29.878973211147141 ], [ -95.673704086533476, 29.878982210800451 ], [ -95.673211086436254, 29.878986210568073 ], [ -95.67297308617762, 29.878987210666367 ], [ -95.672893085760066, 29.878988210639402 ], [ -95.671399085578216, 29.878997211406077 ], [ -95.670374085481839, 29.879004210779829 ], [ -95.669200085432294, 29.87901221104115 ], [ -95.668359084811613, 29.879018211293122 ], [ -95.668156084935987, 29.879019210956795 ], [ -95.668172085439224, 29.880027211108633 ], [ -95.668179085000446, 29.880494211710428 ], [ -95.668209085029005, 29.882299211731297 ], [ -95.668235085396972, 29.883927212331461 ], [ -95.668272085238911, 29.886170212480913 ], [ -95.668290085720287, 29.887243212916776 ], [ -95.668320085728894, 29.889037213005139 ], [ -95.668334085008681, 29.889209212753187 ], [ -95.668455085834779, 29.889837213095888 ], [ -95.668465085893573, 29.889964213692153 ], [ -95.668469085540039, 29.890256213505189 ], [ -95.668764086037299, 29.890243212987752 ], [ -95.668973085794022, 29.890219213683821 ], [ -95.669104085527394, 29.890189213533549 ], [ -95.670227085961869, 29.889868212954482 ], [ -95.670467086147696, 29.889816213287656 ], [ -95.67067908637145, 29.889790213527125 ], [ -95.670887086165919, 29.88977721306464 ], [ -95.670995085774976, 29.889775212841037 ], [ -95.671186086408525, 29.889778213180524 ], [ -95.671350085780006, 29.88978921342072 ], [ -95.671519086017312, 29.889811213387219 ], [ -95.671681085800898, 29.88984921340268 ], [ -95.671831086576503, 29.889901213078833 ], [ -95.671969086367753, 29.889965213230461 ], [ -95.672094086310494, 29.89003821337246 ], [ -95.672206086634858, 29.890114213314945 ], [ -95.672336086401799, 29.890225213227563 ], [ -95.67239908672785, 29.890290213098645 ], [ -95.672446086472902, 29.89034721295161 ], [ -95.672548086230861, 29.890503213141663 ], [ -95.672791086328942, 29.890398213091284 ], [ -95.673106086613714, 29.890286213210711 ], [ -95.673898086803774, 29.890031213161613 ], [ -95.674660086940889, 29.889781213438681 ], [ -95.67529008675119, 29.889579213269933 ], [ -95.675396087047261, 29.889545212911798 ], [ -95.675436087520254, 29.889532213421866 ], [ -95.675478087671522, 29.889623213256364 ], [ -95.675557087545087, 29.889767212998159 ], [ -95.675682087409257, 29.889948212919659 ], [ -95.675730087274246, 29.890011213125366 ], [ -95.675853087652058, 29.890162212735497 ], [ -95.675977087355591, 29.890290213545036 ], [ -95.676116087237105, 29.890411212793595 ], [ -95.676265087972951, 29.890522212843077 ], [ -95.676442087081981, 29.890634213097574 ], [ -95.676652087523721, 29.890743213557354 ], [ -95.67692208767491, 29.890869212850117 ], [ -95.676969087751786, 29.890896213543972 ], [ -95.677028087271339, 29.890940213272547 ], [ -95.677069087749345, 29.89098221302169 ], [ -95.677176087980726, 29.891164213326299 ], [ -95.677135087597819, 29.891181213093404 ], [ -95.677119088182508, 29.891188213361104 ], [ -95.677039088066735, 29.89122721293927 ], [ -95.67700708819055, 29.891243213498534 ], [ -95.676882087937827, 29.89132021370456 ], [ -95.676728087449646, 29.891441213805006 ], [ -95.676130087361742, 29.891969213280252 ], [ -95.676180087986396, 29.892003213908069 ], [ -95.676565087914184, 29.892339213556216 ], [ -95.676698087621219, 29.892456214002834 ], [ -95.676812087697499, 29.892573213989124 ], [ -95.676922087387084, 29.89270921386996 ], [ -95.676971087429905, 29.892781213351764 ], [ -95.677054087471518, 29.892924213505211 ], [ -95.677115087414535, 29.893064213823713 ], [ -95.677157088351009, 29.893190213345786 ], [ -95.677192087535147, 29.893342213695604 ], [ -95.677209088121984, 29.893517214120543 ], [ -95.677207087822325, 29.893628213734544 ], [ -95.677204088304407, 29.893687213796877 ], [ -95.677179087463699, 29.893882213680023 ], [ -95.677155087992759, 29.893979214051285 ], [ -95.677122087470849, 29.894061213908579 ], [ -95.677090087721936, 29.894118214171868 ], [ -95.677045087833136, 29.894182214053238 ], [ -95.677012088196165, 29.894217214014837 ], [ -95.677150087976685, 29.894313214189555 ], [ -95.677226088013882, 29.894352213948839 ], [ -95.677313087444801, 29.894379213930861 ], [ -95.677409088066128, 29.894390214133995 ], [ -95.677509087893071, 29.894389213579078 ], [ -95.677825088608145, 29.894374213687154 ], [ -95.678414088545523, 29.894339213873845 ], [ -95.678447088271938, 29.89470021414699 ], [ -95.67845208867513, 29.894800214217561 ], [ -95.678572088215489, 29.895312214336119 ], [ -95.678152088066867, 29.895647214295476 ], [ -95.678502088082539, 29.896044214157499 ], [ -95.678596088240184, 29.896179214324111 ], [ -95.678707088127595, 29.896337214488586 ], [ -95.678810088583376, 29.896863214395115 ], [ -95.678907088021546, 29.897432214188164 ], [ -95.678942088535592, 29.897632214559295 ], [ -95.681097089152999, 29.897319214290519 ], [ -95.682155088999565, 29.897172214060895 ], [ -95.68251008901639, 29.897123213875847 ], [ -95.682785089206945, 29.897081214676533 ], [ -95.683275089654288, 29.897007213929719 ], [ -95.68374809002853, 29.896942213977475 ], [ -95.683963089252046, 29.896907214477281 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 952, "Tract": "48201251504", "Area_SqMi": 1.0995161144396333, "total_2009": 284, "total_2010": 277, "total_2011": 244, "total_2012": 250, "total_2013": 244, "total_2014": 293, "total_2015": 317, "total_2016": 364, "total_2017": 373, "total_2018": 357, "total_2019": 253, "total_2020": 313, "age1": 91, "age2": 245, "age3": 127, "earn1": 81, "earn2": 161, "earn3": 221, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 36, "naics_s05": 4, "naics_s06": 53, "naics_s07": 173, "naics_s08": 8, "naics_s09": 0, "naics_s10": 53, "naics_s11": 11, "naics_s12": 29, "naics_s13": 0, "naics_s14": 15, "naics_s15": 2, "naics_s16": 33, "naics_s17": 0, "naics_s18": 36, "naics_s19": 6, "naics_s20": 4, "race1": 370, "race2": 53, "race3": 7, "race4": 25, "race5": 0, "race6": 8, "ethnicity1": 348, "ethnicity2": 115, "edu1": 60, "edu2": 95, "edu3": 129, "edu4": 88, "Shape_Length": 26166.809248502523, "Shape_Area": 30652627.429939717, "total_2021": 382, "total_2022": 463 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.188212971100199, 30.06799526628393 ], [ -95.188185970724291, 30.067804266157442 ], [ -95.187953970465628, 30.066776265940824 ], [ -95.187462970119427, 30.065605266117519 ], [ -95.187397970056708, 30.065074266083307 ], [ -95.187356970281286, 30.064837265264167 ], [ -95.187328970545693, 30.064672265215254 ], [ -95.187290969763495, 30.064452265433211 ], [ -95.18733996971136, 30.063149265069082 ], [ -95.187341969767473, 30.062532265018522 ], [ -95.187283969934882, 30.062195264857269 ], [ -95.187238970205954, 30.062050264649638 ], [ -95.187173969651454, 30.06151726528352 ], [ -95.187169970213645, 30.060731264460848 ], [ -95.187079969468911, 30.060282264868007 ], [ -95.18678397005722, 30.058911264218544 ], [ -95.185478969721004, 30.058882264795038 ], [ -95.185334969311711, 30.058840264721486 ], [ -95.184767969610562, 30.058754264538351 ], [ -95.184243969392242, 30.058675264078055 ], [ -95.183446968888433, 30.058652264325563 ], [ -95.18269696877546, 30.058805264400746 ], [ -95.182530969024015, 30.058862264525313 ], [ -95.18230396845621, 30.05894026426888 ], [ -95.18180896818113, 30.059149264367672 ], [ -95.181020968802017, 30.059651265014836 ], [ -95.180246968090003, 30.060111264549892 ], [ -95.179406967599448, 30.060481264831182 ], [ -95.178958968064663, 30.060603265333338 ], [ -95.178571968138584, 30.060731265513184 ], [ -95.178064968160925, 30.060857264810018 ], [ -95.177161967859732, 30.061041265618549 ], [ -95.176259966735287, 30.061241265338271 ], [ -95.175411966673281, 30.061641265082407 ], [ -95.174519966669408, 30.062032265419539 ], [ -95.174299967070851, 30.061783265664076 ], [ -95.173391966698745, 30.061259265330833 ], [ -95.173031966133095, 30.060981265370405 ], [ -95.172111966032801, 30.060155265333446 ], [ -95.171866966357229, 30.060308265087009 ], [ -95.171733966343382, 30.060391265198092 ], [ -95.171425965791769, 30.060548265381566 ], [ -95.171308966365842, 30.060569265427393 ], [ -95.170804966127321, 30.060661265123251 ], [ -95.170448966192239, 30.060666265157479 ], [ -95.170087965367614, 30.060638265212489 ], [ -95.170032965243607, 30.060634265307304 ], [ -95.169308965680131, 30.060591265364042 ], [ -95.167802964605315, 30.060407265142054 ], [ -95.166716965081534, 30.060402265371181 ], [ -95.166878964847271, 30.060877265959871 ], [ -95.166927964954141, 30.061163265604971 ], [ -95.16695996446586, 30.06135226598019 ], [ -95.166949964412794, 30.061519265665975 ], [ -95.166889964982275, 30.061865265585912 ], [ -95.166004964596681, 30.06181126563402 ], [ -95.165134963930413, 30.061838265418199 ], [ -95.164216964074484, 30.061930265367675 ], [ -95.16333696366658, 30.06204326575725 ], [ -95.162505963553741, 30.062227265728843 ], [ -95.161123962945638, 30.062740266461063 ], [ -95.160153963254885, 30.062940266061297 ], [ -95.159257962861716, 30.063023266098455 ], [ -95.159023963030251, 30.063067266137487 ], [ -95.158882963002668, 30.063091265875748 ], [ -95.158695962749903, 30.063153266577764 ], [ -95.15843996229485, 30.063323266668714 ], [ -95.158236962561574, 30.063490266315764 ], [ -95.15809596249953, 30.063657266076305 ], [ -95.157657962201782, 30.064171266784804 ], [ -95.157687962146426, 30.064193266702603 ], [ -95.158251962275926, 30.064461266747063 ], [ -95.158886962602466, 30.064748266457752 ], [ -95.159159963149136, 30.064823266177982 ], [ -95.159596963404994, 30.064942266342847 ], [ -95.159949963539503, 30.065039266366838 ], [ -95.16040396362132, 30.065126266666617 ], [ -95.161935963429173, 30.065422266889403 ], [ -95.162157963814096, 30.065495266962508 ], [ -95.16293096412582, 30.065749266294088 ], [ -95.163431964098692, 30.066087266378346 ], [ -95.164080963968289, 30.066603266592946 ], [ -95.164553965026585, 30.067084266808116 ], [ -95.164731964850958, 30.067264266918308 ], [ -95.16498696498212, 30.067614267404466 ], [ -95.165117964951364, 30.067792266973523 ], [ -95.165306965149355, 30.068051267376887 ], [ -95.165572964319963, 30.068537267532346 ], [ -95.166381965456225, 30.069075267530373 ], [ -95.166718965596473, 30.069299266819087 ], [ -95.167559965731712, 30.069858266936276 ], [ -95.168086965375508, 30.070209266950751 ], [ -95.169164966212392, 30.070925267118184 ], [ -95.169976965693081, 30.071465267306515 ], [ -95.170025966522061, 30.071498267996464 ], [ -95.170945966576241, 30.072156267529476 ], [ -95.17144596617922, 30.072515267680298 ], [ -95.171593966720877, 30.0726222674509 ], [ -95.172009966805732, 30.07289126790527 ], [ -95.172522966619837, 30.073221268056756 ], [ -95.172708966480371, 30.073341267650768 ], [ -95.173171967319945, 30.07362726752995 ], [ -95.174307967714867, 30.074327268170869 ], [ -95.174494967397521, 30.074441267682825 ], [ -95.176035968034157, 30.075393268226833 ], [ -95.1761839675749, 30.07548526821159 ], [ -95.177253968140832, 30.074189267874864 ], [ -95.178435968239043, 30.072864267726466 ], [ -95.178622968406799, 30.072655267676769 ], [ -95.17937096869737, 30.071930267442578 ], [ -95.179615968327141, 30.071746267227844 ], [ -95.179834968142316, 30.071580266959703 ], [ -95.181719968563513, 30.070159266929583 ], [ -95.182990969692469, 30.069564266682988 ], [ -95.183114969335676, 30.069506267123764 ], [ -95.183834969794276, 30.069199266418273 ], [ -95.184043969224263, 30.06911026697297 ], [ -95.18417196961903, 30.06905626672874 ], [ -95.186149970560791, 30.068398266438322 ], [ -95.186292970183942, 30.068374265979209 ], [ -95.187555970957135, 30.068103266507773 ], [ -95.188212971100199, 30.06799526628393 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 953, "Tract": "48201253501", "Area_SqMi": 0.94179369808964797, "total_2009": 849, "total_2010": 943, "total_2011": 1173, "total_2012": 1198, "total_2013": 1445, "total_2014": 1518, "total_2015": 1424, "total_2016": 1569, "total_2017": 1632, "total_2018": 1735, "total_2019": 1590, "total_2020": 1380, "age1": 443, "age2": 667, "age3": 275, "earn1": 401, "earn2": 549, "earn3": 435, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 82, "naics_s05": 0, "naics_s06": 0, "naics_s07": 412, "naics_s08": 2, "naics_s09": 0, "naics_s10": 18, "naics_s11": 3, "naics_s12": 6, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 510, "naics_s17": 0, "naics_s18": 333, "naics_s19": 8, "naics_s20": 0, "race1": 993, "race2": 227, "race3": 11, "race4": 126, "race5": 0, "race6": 28, "ethnicity1": 908, "ethnicity2": 477, "edu1": 229, "edu2": 250, "edu3": 292, "edu4": 171, "Shape_Length": 22365.690759311074, "Shape_Area": 26255596.406715579, "total_2021": 1360, "total_2022": 1385 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.002203909579322, 29.782021213928243 ], [ -95.002171909981286, 29.781911213943353 ], [ -95.001825909246605, 29.781180213660818 ], [ -95.001768909574054, 29.781015213976342 ], [ -95.001749909569881, 29.780921213896889 ], [ -95.001832909678001, 29.780322214056792 ], [ -95.001763909360548, 29.779195213579623 ], [ -95.001776909196835, 29.779074213464327 ], [ -95.00191591005543, 29.778782213699813 ], [ -95.002009909810226, 29.778480212945304 ], [ -95.001959910155463, 29.778342213058984 ], [ -95.001896909435658, 29.778277212895407 ], [ -95.001625909191546, 29.778144213362982 ], [ -95.001486909933092, 29.777979213223535 ], [ -95.001373909783922, 29.777809212865687 ], [ -95.001114909706743, 29.777313213217539 ], [ -95.001052909815272, 29.777193213227921 ], [ -95.000586908963797, 29.776577212995992 ], [ -95.000195909180079, 29.775873212752419 ], [ -95.000145909186699, 29.775746212946089 ], [ -95.000183908856911, 29.775070212632773 ], [ -95.000102909533496, 29.7745312121552 ], [ -95.000007908972847, 29.774294212379058 ], [ -94.999941909171838, 29.7740272120501 ], [ -94.999877908464441, 29.773653212562635 ], [ -94.999864908760699, 29.772866212238917 ], [ -94.999839909065074, 29.772575212588162 ], [ -94.999769909133747, 29.772410212420475 ], [ -94.999700908804257, 29.772295212333656 ], [ -94.999630908407568, 29.771816211576734 ], [ -94.999668909199983, 29.771195212000862 ], [ -94.999733908446601, 29.771051211814598 ], [ -94.99882590878407, 29.771068212199079 ], [ -94.99655690809719, 29.771083212251135 ], [ -94.995710907400337, 29.771087211532482 ], [ -94.995180907147315, 29.771082212093674 ], [ -94.994890907459109, 29.771079212191268 ], [ -94.994195907101997, 29.77103421215924 ], [ -94.993793906861782, 29.770975211907146 ], [ -94.993593907586202, 29.770921211940511 ], [ -94.99340390760193, 29.770870211700963 ], [ -94.993093906652831, 29.770786211959219 ], [ -94.992746907117237, 29.770670211736149 ], [ -94.992641907280117, 29.770636211772356 ], [ -94.992217907160395, 29.770460212027288 ], [ -94.992086906639898, 29.770404211897077 ], [ -94.991647906148629, 29.770215211458151 ], [ -94.991312906774681, 29.770083211970167 ], [ -94.990928906452623, 29.769973211911797 ], [ -94.990618905990615, 29.769896211712592 ], [ -94.990522906008891, 29.769877211457391 ], [ -94.990319906587558, 29.769836212137076 ], [ -94.990050906362384, 29.769805211633354 ], [ -94.989690906437133, 29.769748212219028 ], [ -94.989295906057365, 29.769752211836334 ], [ -94.989047905504904, 29.769750211593866 ], [ -94.988791906233075, 29.769749211845696 ], [ -94.988625906118713, 29.76974821201302 ], [ -94.987461905678273, 29.769760212045224 ], [ -94.987222905284725, 29.769760212135477 ], [ -94.986205905340512, 29.769766211650339 ], [ -94.985584905334107, 29.769775212483239 ], [ -94.985459905252753, 29.769777211858585 ], [ -94.984998905404183, 29.769772212450537 ], [ -94.984664904727381, 29.769768212234638 ], [ -94.983878904278171, 29.76978221188029 ], [ -94.982693904176983, 29.769790211762249 ], [ -94.982411903789639, 29.769791212551336 ], [ -94.98151390349615, 29.769810212494299 ], [ -94.980993904013005, 29.769807212529066 ], [ -94.980576903813841, 29.76980221218879 ], [ -94.980290903208555, 29.769799212064736 ], [ -94.979287903657678, 29.769786212135841 ], [ -94.979185903652564, 29.769780212121038 ], [ -94.978567903118815, 29.769745212029701 ], [ -94.978265903444125, 29.769748211975035 ], [ -94.978039902844102, 29.769751211996336 ], [ -94.977806903180792, 29.769753212532997 ], [ -94.977555902679129, 29.76975621241963 ], [ -94.977558903389024, 29.769950212416319 ], [ -94.977568903116946, 29.770277212631822 ], [ -94.977569902876738, 29.770548212383488 ], [ -94.977573902617337, 29.770791212699624 ], [ -94.97758090330413, 29.77121821302508 ], [ -94.977591903077666, 29.771851212884343 ], [ -94.977595903441156, 29.77208121244135 ], [ -94.977604903284018, 29.772598213033085 ], [ -94.977610903413776, 29.772947213316634 ], [ -94.977620903349134, 29.773585213030017 ], [ -94.977647903329895, 29.774381213351724 ], [ -94.977666903145732, 29.774800212912734 ], [ -94.977670903720607, 29.775039213710368 ], [ -94.977675903236474, 29.775249213462754 ], [ -94.97768090291234, 29.775511213183186 ], [ -94.977687903311661, 29.776142213537515 ], [ -94.977671902995681, 29.776539213739568 ], [ -94.977674903249195, 29.776882214095558 ], [ -94.97764790329326, 29.777201214088606 ], [ -94.977626903434199, 29.777456214147907 ], [ -94.977618903860133, 29.777564214198776 ], [ -94.977618902927645, 29.777625213743214 ], [ -94.977619903467584, 29.777776214326998 ], [ -94.97760890332313, 29.77795921416611 ], [ -94.978157903595957, 29.77805721371573 ], [ -94.978566903467367, 29.77813621359903 ], [ -94.978777903437688, 29.778176213695879 ], [ -94.979102903603305, 29.778224213729299 ], [ -94.979505903504887, 29.778294214316954 ], [ -94.979856904022142, 29.7783622141196 ], [ -94.980334904476507, 29.778456214095382 ], [ -94.980600903909135, 29.778507213584135 ], [ -94.981421904610912, 29.778668213671352 ], [ -94.981882904420814, 29.778757214225752 ], [ -94.982206904626253, 29.778822214427311 ], [ -94.982613904556359, 29.778903213633313 ], [ -94.982729904792564, 29.778927214382495 ], [ -94.983595904756129, 29.779095213788587 ], [ -94.984411905327192, 29.779259214081176 ], [ -94.984804904851345, 29.779338214398539 ], [ -94.985433905656947, 29.779459214052046 ], [ -94.98588490595796, 29.779548214315895 ], [ -94.985953905740132, 29.779561214388512 ], [ -94.986891905382492, 29.779738214207953 ], [ -94.986911906040589, 29.779742213833934 ], [ -94.987219906045851, 29.779801213944182 ], [ -94.988135906638092, 29.779967214125801 ], [ -94.989238906692918, 29.780149214343719 ], [ -94.989601906934439, 29.780200214400026 ], [ -94.990094906306723, 29.780275214056505 ], [ -94.990748906951893, 29.780383213608346 ], [ -94.991139907132151, 29.78044821382576 ], [ -94.993447907817341, 29.780832214189029 ], [ -94.993701908007708, 29.780877214290626 ], [ -94.994680907834223, 29.781033213683084 ], [ -94.995014908499968, 29.781094213988805 ], [ -94.99524890826946, 29.781127214311024 ], [ -94.995656908282498, 29.781191214212463 ], [ -94.996012907938322, 29.781247214464113 ], [ -94.996441908760232, 29.781315213890561 ], [ -94.997378908516623, 29.781471214185199 ], [ -94.998269908765167, 29.781605214465721 ], [ -94.998993908928185, 29.781717214284363 ], [ -94.999655909332546, 29.781833213828602 ], [ -94.999997909253054, 29.781881214065113 ], [ -95.000340909428317, 29.781951213596233 ], [ -95.00177590947392, 29.782177213616308 ], [ -95.001867909972646, 29.782191213859445 ], [ -95.002155909618082, 29.782238214082721 ], [ -95.002203909579322, 29.782021213928243 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 954, "Tract": "48201251904", "Area_SqMi": 8.6541717836664542, "total_2009": 1277, "total_2010": 68, "total_2011": 106, "total_2012": 161, "total_2013": 181, "total_2014": 191, "total_2015": 198, "total_2016": 199, "total_2017": 143, "total_2018": 187, "total_2019": 266, "total_2020": 328, "age1": 96, "age2": 131, "age3": 39, "earn1": 71, "earn2": 114, "earn3": 81, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 0, "naics_s06": 29, "naics_s07": 47, "naics_s08": 10, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 38, "naics_s13": 0, "naics_s14": 0, "naics_s15": 52, "naics_s16": 8, "naics_s17": 7, "naics_s18": 14, "naics_s19": 42, "naics_s20": 0, "race1": 236, "race2": 14, "race3": 4, "race4": 7, "race5": 3, "race6": 2, "ethnicity1": 181, "ethnicity2": 85, "edu1": 41, "edu2": 37, "edu3": 59, "edu4": 33, "Shape_Length": 74898.919907052754, "Shape_Area": 241263497.56558204, "total_2021": 366, "total_2022": 266 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.149220955610389, 29.948823243554475 ], [ -95.14983395492942, 29.943278241759945 ], [ -95.148098954465638, 29.940220241786573 ], [ -95.145057953068246, 29.934858240814133 ], [ -95.140442951672682, 29.926722238860094 ], [ -95.140290951751027, 29.926594238919726 ], [ -95.138700951726463, 29.925058238635462 ], [ -95.136952950515578, 29.923368238337563 ], [ -95.133509949858137, 29.920040237856504 ], [ -95.128792949162388, 29.922392238407554 ], [ -95.125385948176557, 29.92409123935559 ], [ -95.125006948059308, 29.924246239110083 ], [ -95.124842947714512, 29.924301238927196 ], [ -95.12475394767219, 29.92427423897287 ], [ -95.124305947476074, 29.923867238515061 ], [ -95.124077947676597, 29.923504239144854 ], [ -95.123976947941159, 29.923361238619471 ], [ -95.123869947342669, 29.923229238998957 ], [ -95.123692947921612, 29.923098238842659 ], [ -95.123458947403677, 29.923015238661684 ], [ -95.123143947156692, 29.922823239087435 ], [ -95.122972946827829, 29.922675238570648 ], [ -95.122909947299362, 29.922570238361651 ], [ -95.122852946770095, 29.922411238704459 ], [ -95.122934947414763, 29.921916238239355 ], [ -95.122959947395458, 29.921668238734899 ], [ -95.122927946826948, 29.921531238401816 ], [ -95.122883946930557, 29.921300238912735 ], [ -95.122396946958276, 29.920382237993596 ], [ -95.122320947157476, 29.920287238104724 ], [ -95.122232947168513, 29.920178238338174 ], [ -95.122062946376488, 29.920058238519626 ], [ -95.121784946307514, 29.919997238507445 ], [ -95.121052946746659, 29.91995923853711 ], [ -95.120749946763041, 29.919822238031227 ], [ -95.120357946711636, 29.919575238231211 ], [ -95.120243946553259, 29.919498238439449 ], [ -95.119667946462769, 29.919139237809667 ], [ -95.119555945791646, 29.9190692377551 ], [ -95.118080946286128, 29.918159238335381 ], [ -95.11667694532035, 29.917294237679343 ], [ -95.116392945360062, 29.917157237708711 ], [ -95.115842944883781, 29.917157237420195 ], [ -95.115640944935123, 29.917190237959748 ], [ -95.115148945470992, 29.9173662377246 ], [ -95.112365944089106, 29.918220237846121 ], [ -95.110352943909859, 29.918787238119297 ], [ -95.106704942944617, 29.919707238425097 ], [ -95.106363942685988, 29.919788239016015 ], [ -95.103396942581512, 29.920494238764498 ], [ -95.102747941866284, 29.920677238590912 ], [ -95.102334942002969, 29.920957239272404 ], [ -95.101957942126418, 29.92143523928809 ], [ -95.100513941997875, 29.923266239815614 ], [ -95.100380941952054, 29.923409240122027 ], [ -95.099754941116842, 29.924147239814676 ], [ -95.098238941239742, 29.925115240163052 ], [ -95.09705294122773, 29.925872240695913 ], [ -95.096473940999942, 29.926127240382002 ], [ -95.096194940066468, 29.926109240155274 ], [ -95.09447494027539, 29.925635240503496 ], [ -95.09312993962709, 29.925266240319178 ], [ -95.093103939871511, 29.925259240470158 ], [ -95.092863939906522, 29.925199240721934 ], [ -95.092557939525889, 29.925156240303426 ], [ -95.09086593947967, 29.924711240138759 ], [ -95.088848938399792, 29.924182240181093 ], [ -95.088797938053403, 29.924166240454991 ], [ -95.088747938530616, 29.924138240611803 ], [ -95.08870993897041, 29.924116240408484 ], [ -95.088147938343212, 29.923990239830637 ], [ -95.085925937889442, 29.923396240461063 ], [ -95.085619937184362, 29.923318240110667 ], [ -95.084246937787697, 29.922973240207011 ], [ -95.0783509356542, 29.923365240405882 ], [ -95.078228936096849, 29.923359240004039 ], [ -95.078186935522638, 29.923357239978856 ], [ -95.078135935943394, 29.923354240373158 ], [ -95.071633933633365, 29.924317240549719 ], [ -95.071497934572861, 29.924338240959216 ], [ -95.068161932824211, 29.924851240985138 ], [ -95.067846933452103, 29.924845241355566 ], [ -95.067663932919316, 29.924790241247369 ], [ -95.067423933362861, 29.924675241191331 ], [ -95.066400932524246, 29.924031241007473 ], [ -95.065005932388402, 29.923207240836362 ], [ -95.064588932633271, 29.9229432405056 ], [ -95.064494932092941, 29.922921240365987 ], [ -95.06394593167802, 29.922632240347511 ], [ -95.063958931925228, 29.923086240941753 ], [ -95.063980931702076, 29.924566240808392 ], [ -95.063977932232021, 29.924759241649667 ], [ -95.063967932397347, 29.92487524109438 ], [ -95.063995931694961, 29.924982241117291 ], [ -95.063971932064149, 29.925102241464117 ], [ -95.063953932350643, 29.925149241504077 ], [ -95.063921931980857, 29.925186241584029 ], [ -95.063876932361836, 29.925212241085912 ], [ -95.063811932415717, 29.925226241196402 ], [ -95.063744932041743, 29.925231241387909 ], [ -95.063378932085683, 29.925232241627747 ], [ -95.062909931843691, 29.925239240957087 ], [ -95.06250493196417, 29.925234240941467 ], [ -95.062369931479196, 29.925236241643521 ], [ -95.062360931920381, 29.925243241614012 ], [ -95.062327932050763, 29.925270241709391 ], [ -95.062320932260633, 29.925326241011504 ], [ -95.062329931888996, 29.925517241474669 ], [ -95.062321931880689, 29.925615241031267 ], [ -95.062324931736583, 29.925667241382282 ], [ -95.062319931334144, 29.925936241191799 ], [ -95.062320931432012, 29.926607241960589 ], [ -95.062329932004204, 29.927534242094609 ], [ -95.062333932129349, 29.928353241917758 ], [ -95.062321931995712, 29.92869924197937 ], [ -95.062335932266649, 29.928887242129111 ], [ -95.062336932175739, 29.929025242332074 ], [ -95.062490932810206, 29.940345244092455 ], [ -95.062565932544189, 29.940365244291694 ], [ -95.062706932401397, 29.940418244757989 ], [ -95.062782932169966, 29.940468244478996 ], [ -95.062817932094262, 29.940509244125774 ], [ -95.062845933125757, 29.940565244342629 ], [ -95.062860932248157, 29.940723244831013 ], [ -95.062882932304916, 29.942228244729009 ], [ -95.062905932838959, 29.943152245454897 ], [ -95.062963932397963, 29.943148245147256 ], [ -95.063024932950668, 29.943156244756615 ], [ -95.063088932436429, 29.943153245426242 ], [ -95.063293932396348, 29.943142244535892 ], [ -95.063433932947277, 29.943146244615676 ], [ -95.064345932825589, 29.943135245048552 ], [ -95.064836932973407, 29.943128245064475 ], [ -95.065210932923719, 29.943122245081597 ], [ -95.067252933579255, 29.943089244812366 ], [ -95.071776935457933, 29.943019245141123 ], [ -95.072075935152952, 29.943018244659196 ], [ -95.073188935633837, 29.943003244330253 ], [ -95.074095935579194, 29.942978244673338 ], [ -95.074471936154524, 29.94297624475988 ], [ -95.075096935477234, 29.942963244105542 ], [ -95.075102936299629, 29.943007244216776 ], [ -95.075691935950616, 29.945548245509972 ], [ -95.075766936169387, 29.945759245131296 ], [ -95.075986936677026, 29.946374244981239 ], [ -95.076057936736262, 29.946494244809355 ], [ -95.07630093629443, 29.946903244939605 ], [ -95.076758936371775, 29.947679245579859 ], [ -95.077252937012801, 29.948516245474959 ], [ -95.077268936877061, 29.948541245329295 ], [ -95.077619937141307, 29.949218245686474 ], [ -95.077671937034935, 29.949319245589486 ], [ -95.077841936894231, 29.949304245976951 ], [ -95.07875793756493, 29.949289246022087 ], [ -95.078932937591375, 29.949280245910479 ], [ -95.079120937019937, 29.949284245700966 ], [ -95.07951893717042, 29.949276246001478 ], [ -95.079721936882223, 29.949278245765647 ], [ -95.081219938053579, 29.949264245201235 ], [ -95.081440937416119, 29.949251245218353 ], [ -95.081655938060265, 29.949254245906758 ], [ -95.082506938474992, 29.9492482456529 ], [ -95.082714937972426, 29.949253245599326 ], [ -95.082772938357792, 29.949253245514882 ], [ -95.083582938209133, 29.949250245855858 ], [ -95.084292938896795, 29.949233245879505 ], [ -95.084534938766666, 29.949234245600199 ], [ -95.085263938609344, 29.949221245601336 ], [ -95.085742939032571, 29.949221245739519 ], [ -95.086694939425684, 29.949205245530298 ], [ -95.086930939480411, 29.949219245225446 ], [ -95.08716593897762, 29.949211245815032 ], [ -95.087865939147619, 29.949199245074819 ], [ -95.088097939221328, 29.949256245550529 ], [ -95.088559939922661, 29.949195245106111 ], [ -95.09038794056417, 29.949160245418241 ], [ -95.091497940433698, 29.94915424487462 ], [ -95.092519941062278, 29.94914024504893 ], [ -95.092640940698431, 29.949138245237709 ], [ -95.095864941146544, 29.949113244825707 ], [ -95.09713494178142, 29.949089244939596 ], [ -95.098420941882353, 29.949078245325992 ], [ -95.09931194191887, 29.949061244955594 ], [ -95.100333942889492, 29.949057245206568 ], [ -95.10147994266049, 29.949039244566251 ], [ -95.102562942983369, 29.949029245270214 ], [ -95.102891943237125, 29.949023245129979 ], [ -95.104406943890567, 29.949002244639392 ], [ -95.104959944025779, 29.948983245138912 ], [ -95.105035944262085, 29.948980244469499 ], [ -95.105241943557488, 29.948943244579514 ], [ -95.105447943689626, 29.948895244349416 ], [ -95.105648944357583, 29.948837245128168 ], [ -95.106053943746232, 29.948701244535194 ], [ -95.106262944306536, 29.948639244699244 ], [ -95.106478944189732, 29.948585244891351 ], [ -95.106698944713031, 29.948548244479934 ], [ -95.106917944740047, 29.948529244812743 ], [ -95.107142944524824, 29.94852224477345 ], [ -95.107372944077625, 29.948520244845373 ], [ -95.107611944265741, 29.948504244972106 ], [ -95.107846944127814, 29.948503244956331 ], [ -95.108091944561068, 29.948494244255564 ], [ -95.108574944389986, 29.948484244826432 ], [ -95.108831945005832, 29.94850924430413 ], [ -95.109072944906401, 29.948482244695398 ], [ -95.109798945210457, 29.948486244312761 ], [ -95.110040944766354, 29.948479244607324 ], [ -95.110523945297643, 29.948477244050299 ], [ -95.1112259457162, 29.948457244281638 ], [ -95.111931945480265, 29.948461244249675 ], [ -95.112182945788462, 29.948434244380817 ], [ -95.112402945452743, 29.948427244192914 ], [ -95.112649946083963, 29.948440244435666 ], [ -95.112887946178517, 29.948433244753868 ], [ -95.113366945604923, 29.948411244775521 ], [ -95.113601946092473, 29.948417244006151 ], [ -95.114068946010079, 29.948422244364931 ], [ -95.114314945968573, 29.948410244517714 ], [ -95.114795946190085, 29.94839824396761 ], [ -95.115032946544403, 29.948401243911722 ], [ -95.115508946363619, 29.948400244163725 ], [ -95.11575194623407, 29.948393244172966 ], [ -95.115987946695, 29.948393244595707 ], [ -95.116358947213342, 29.948386244034559 ], [ -95.116703946732073, 29.94837724462554 ], [ -95.117173946796356, 29.948381244080021 ], [ -95.117641947177319, 29.948370243858477 ], [ -95.117658947361235, 29.948370244448324 ], [ -95.117904946746748, 29.948373244117349 ], [ -95.118158947375747, 29.948354244490123 ], [ -95.118407947063304, 29.948369244420679 ], [ -95.11866994777651, 29.948342244545053 ], [ -95.118916947085083, 29.948344244026142 ], [ -95.119170947559994, 29.948339243897266 ], [ -95.119415947558906, 29.948342244404753 ], [ -95.120864947651398, 29.948307244457094 ], [ -95.120904947679435, 29.948316243644467 ], [ -95.121138948161217, 29.948312244271637 ], [ -95.121371947505367, 29.948337243807526 ], [ -95.121620947707243, 29.948317243761718 ], [ -95.121854947850196, 29.948304244360564 ], [ -95.122323947815246, 29.94829624367674 ], [ -95.122782948747613, 29.948294244213731 ], [ -95.123696949100662, 29.948274244278284 ], [ -95.125454948866803, 29.948251243743758 ], [ -95.125666948934438, 29.948235244064634 ], [ -95.125875948715958, 29.94824524385708 ], [ -95.126492949494704, 29.948240244047028 ], [ -95.126688949679121, 29.948245243981169 ], [ -95.127091949206616, 29.948230243913539 ], [ -95.127486949788576, 29.948222244120966 ], [ -95.127874949246632, 29.948187243547547 ], [ -95.127963949600215, 29.948196243989202 ], [ -95.128051949750983, 29.948205243505971 ], [ -95.128230949578494, 29.948216243787979 ], [ -95.129567950285363, 29.948199243687519 ], [ -95.129768949894725, 29.948205243511755 ], [ -95.130159950250757, 29.948195243882402 ], [ -95.131093950039244, 29.948186243904953 ], [ -95.131289950294843, 29.948171243816571 ], [ -95.132183951147809, 29.948157243585459 ], [ -95.132378950821817, 29.948159243813215 ], [ -95.132563951363636, 29.948156243741984 ], [ -95.132749950590892, 29.948146243976023 ], [ -95.133318950759019, 29.948141243628807 ], [ -95.133501951567069, 29.948132243277549 ], [ -95.133698951528544, 29.948164243555478 ], [ -95.133884951353849, 29.948145243496143 ], [ -95.134451951333858, 29.94812824380822 ], [ -95.134643951450627, 29.948128243418431 ], [ -95.135732951474736, 29.948109243086197 ], [ -95.135905951813044, 29.948127243885402 ], [ -95.135986951790628, 29.948118243222424 ], [ -95.136079952209784, 29.948108243838504 ], [ -95.13625895135911, 29.948101243131077 ], [ -95.137502951946288, 29.94809124348199 ], [ -95.137657951992693, 29.948086243075217 ], [ -95.137815951689021, 29.948086243835409 ], [ -95.137970952601293, 29.948098243103509 ], [ -95.138115951927276, 29.948080243042877 ], [ -95.138255952744046, 29.94807624299462 ], [ -95.138702952566504, 29.948079243705074 ], [ -95.139121952753555, 29.94807024363422 ], [ -95.140255953207003, 29.948045243399726 ], [ -95.14072995270989, 29.948040243298266 ], [ -95.140967953127003, 29.948042243216495 ], [ -95.141096952643906, 29.948021243513551 ], [ -95.141201952631022, 29.948035243624254 ], [ -95.141519953414402, 29.948031242963093 ], [ -95.141684953656551, 29.948013243450337 ], [ -95.141768953264375, 29.947985243075433 ], [ -95.141818953142561, 29.947951243043164 ], [ -95.141842953336692, 29.94793424317324 ], [ -95.141852953410023, 29.947922243422717 ], [ -95.142049953040527, 29.947920243130156 ], [ -95.142012953166841, 29.948008243594249 ], [ -95.141966953390238, 29.948117243288436 ], [ -95.142352953231139, 29.948117243003644 ], [ -95.142363953837148, 29.948090243410718 ], [ -95.142385953358854, 29.94803924284416 ], [ -95.142533953562378, 29.948037242860266 ], [ -95.142699953917358, 29.948037243007303 ], [ -95.142721953015041, 29.948708243070456 ], [ -95.143006953170044, 29.949244243510005 ], [ -95.14517795437574, 29.948728243063627 ], [ -95.147012955111833, 29.948821243351148 ], [ -95.149220955610389, 29.948823243554475 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 955, "Tract": "48201253602", "Area_SqMi": 0.95572667573889958, "total_2009": 2901, "total_2010": 2661, "total_2011": 2603, "total_2012": 2494, "total_2013": 2442, "total_2014": 2478, "total_2015": 2432, "total_2016": 2358, "total_2017": 2338, "total_2018": 2361, "total_2019": 2654, "total_2020": 2847, "age1": 269, "age2": 1582, "age3": 404, "earn1": 45, "earn2": 134, "earn3": 2076, "naics_s01": 0, "naics_s02": 50, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1433, "naics_s06": 5, "naics_s07": 24, "naics_s08": 3, "naics_s09": 0, "naics_s10": 268, "naics_s11": 42, "naics_s12": 345, "naics_s13": 0, "naics_s14": 1, "naics_s15": 12, "naics_s16": 56, "naics_s17": 11, "naics_s18": 0, "naics_s19": 5, "naics_s20": 0, "race1": 1828, "race2": 232, "race3": 14, "race4": 143, "race5": 4, "race6": 34, "ethnicity1": 1752, "ethnicity2": 503, "edu1": 255, "edu2": 478, "edu3": 659, "edu4": 594, "Shape_Length": 28998.50597256748, "Shape_Area": 26644023.977047142, "total_2021": 2454, "total_2022": 2255 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.006239909826931, 29.763021210060153 ], [ -95.005998910203516, 29.762772210290262 ], [ -95.005616909505264, 29.762377209648015 ], [ -95.00525490973925, 29.761907209861263 ], [ -95.004134908954981, 29.760790209961772 ], [ -95.003695908883302, 29.76029120989589 ], [ -95.003256909626074, 29.759913209510401 ], [ -95.003004909521877, 29.759727209524499 ], [ -95.002851909402438, 29.759617209261247 ], [ -95.00236790852955, 29.759294208899583 ], [ -95.002251908881505, 29.759219209568602 ], [ -95.00168590878927, 29.758904209363813 ], [ -94.999330907604332, 29.757638208941785 ], [ -94.998840907492053, 29.757386209432216 ], [ -94.998383907568865, 29.757175209437065 ], [ -94.998084907938889, 29.756997208941133 ], [ -94.996134907308701, 29.75598020885263 ], [ -94.995882906901727, 29.755849208894606 ], [ -94.995713906576597, 29.755763209196175 ], [ -94.995617907168807, 29.75573520891713 ], [ -94.995250906489474, 29.755546208506882 ], [ -94.994107906208001, 29.754909208881937 ], [ -94.993435906785649, 29.7545352082611 ], [ -94.992909906518335, 29.754256208216429 ], [ -94.992441905807297, 29.753952208281682 ], [ -94.992022905802045, 29.753631208269411 ], [ -94.991595905885205, 29.753262208586911 ], [ -94.991209905681288, 29.7529002082806 ], [ -94.990930905557121, 29.752596208231321 ], [ -94.990632905365501, 29.752237208566619 ], [ -94.990478905552848, 29.752071208164413 ], [ -94.989967905588685, 29.751357207952683 ], [ -94.989205904707717, 29.750292208235784 ], [ -94.989068904844757, 29.750114207994159 ], [ -94.988980904893666, 29.749989208068389 ], [ -94.988194904278629, 29.748839208060559 ], [ -94.988102904673639, 29.748729207197737 ], [ -94.987887904617693, 29.748460207275883 ], [ -94.987711904712683, 29.748193207337909 ], [ -94.987405904771791, 29.747921207579555 ], [ -94.987311904369022, 29.747838207486616 ], [ -94.987049904943831, 29.747622207101379 ], [ -94.986740904024401, 29.747167207176592 ], [ -94.986422903801284, 29.746699206873551 ], [ -94.986319903966958, 29.746548207209916 ], [ -94.98605390395052, 29.746158207363305 ], [ -94.986011904589716, 29.746096207189634 ], [ -94.985987903965437, 29.746060207030776 ], [ -94.985920903997027, 29.745954207069467 ], [ -94.985527903609608, 29.745439206801191 ], [ -94.98540090380601, 29.745258206749433 ], [ -94.984762904049873, 29.744267207032376 ], [ -94.984104903450131, 29.743467206660696 ], [ -94.983887903563541, 29.743213206534268 ], [ -94.98346390295626, 29.74274420656246 ], [ -94.983327903206217, 29.742845206593682 ], [ -94.983277903105346, 29.742882206862504 ], [ -94.983201903119621, 29.742970206708538 ], [ -94.983094903349368, 29.743305206981525 ], [ -94.983056903580092, 29.743399206694146 ], [ -94.98294390277232, 29.743575206465028 ], [ -94.982874903125889, 29.743652206371966 ], [ -94.982748903071226, 29.743877206635219 ], [ -94.982729903409307, 29.743971206376482 ], [ -94.982735903074101, 29.744070206924501 ], [ -94.982710903462589, 29.74420720704471 ], [ -94.982710903337775, 29.744471207170996 ], [ -94.982723903394529, 29.744603207074586 ], [ -94.982774903063913, 29.744796207227896 ], [ -94.98279990274122, 29.74486220716879 ], [ -94.982887903160488, 29.745005206578995 ], [ -94.982894902788601, 29.745082206822616 ], [ -94.982969902832195, 29.745192207446898 ], [ -94.983007903189829, 29.745230206921317 ], [ -94.983051903337454, 29.745258206676347 ], [ -94.983215903848816, 29.745335207435804 ], [ -94.983284903566727, 29.745406207125942 ], [ -94.983303903559289, 29.745455206687645 ], [ -94.983307903304322, 29.745568206892131 ], [ -94.983310902982922, 29.745659207351618 ], [ -94.983291903526677, 29.74571920708804 ], [ -94.983247903117643, 29.745758207227681 ], [ -94.9832039037329, 29.745780207364525 ], [ -94.983133903156642, 29.745796207158584 ], [ -94.982913903492843, 29.74586320680206 ], [ -94.982856903494678, 29.745896207214688 ], [ -94.982812902919662, 29.745934206945115 ], [ -94.98278790324666, 29.745973207058523 ], [ -94.982774903005506, 29.746011207424534 ], [ -94.982774903184563, 29.746055207430157 ], [ -94.982831903822216, 29.746171207085972 ], [ -94.98283190366945, 29.746236207262278 ], [ -94.982800903271354, 29.746297207537658 ], [ -94.982655903213896, 29.746363207585869 ], [ -94.982510902833525, 29.746506207243538 ], [ -94.982472902988604, 29.746561207190215 ], [ -94.982390902764777, 29.746776207666112 ], [ -94.982334902964823, 29.746963207606047 ], [ -94.982315903253777, 29.74707320788999 ], [ -94.982315903087084, 29.747265207605668 ], [ -94.982366903405321, 29.747589207470931 ], [ -94.982410903659968, 29.747716207588354 ], [ -94.982491902958884, 29.747713207411042 ], [ -94.982658903208232, 29.748247207260217 ], [ -94.982663903335862, 29.748489207644319 ], [ -94.982479903179254, 29.748655207574888 ], [ -94.982150903352178, 29.748719208175846 ], [ -94.98165790325254, 29.748772207959924 ], [ -94.981001902843744, 29.748965207647338 ], [ -94.980613902820394, 29.749050207774083 ], [ -94.979883902359816, 29.749250208203652 ], [ -94.979580902197725, 29.749484208404969 ], [ -94.979555902656585, 29.749574208004784 ], [ -94.97947690292024, 29.74985620815853 ], [ -94.979419902380471, 29.750079208163616 ], [ -94.979351902826281, 29.750336208494144 ], [ -94.979322902209375, 29.750426208033026 ], [ -94.979292902727479, 29.750654208044697 ], [ -94.979341902157202, 29.750817208067676 ], [ -94.979527902509318, 29.750993208119596 ], [ -94.980162902975238, 29.75123620856499 ], [ -94.980636903424028, 29.751351208591352 ], [ -94.980724902504363, 29.75138420869424 ], [ -94.980750902591325, 29.751406208246333 ], [ -94.980623902614028, 29.751532208821704 ], [ -94.980586902585074, 29.75162020819289 ], [ -94.980460902763042, 29.751802208374201 ], [ -94.980101902394338, 29.751884208083823 ], [ -94.979666902240112, 29.752039208903177 ], [ -94.979470902800685, 29.752154208591016 ], [ -94.979382902405206, 29.752380208828523 ], [ -94.979313903101854, 29.752583208897157 ], [ -94.979219903059601, 29.752721208691227 ], [ -94.979042902954774, 29.75284720855068 ], [ -94.978954902815076, 29.752946209050723 ], [ -94.978910902187991, 29.753040208909884 ], [ -94.978683902981771, 29.753771209116039 ], [ -94.978614902844384, 29.753931209099413 ], [ -94.978469903048307, 29.754030209150667 ], [ -94.97814890229651, 29.754195209190772 ], [ -94.977833902676977, 29.754365209422989 ], [ -94.977562902130686, 29.754585208943283 ], [ -94.977448902185074, 29.754651209042592 ], [ -94.977341902364188, 29.754673208916088 ], [ -94.977241902066723, 29.754717208959644 ], [ -94.9771969022501, 29.754721209412182 ], [ -94.977216902556677, 29.755394209774888 ], [ -94.977213901807858, 29.756115209210673 ], [ -94.977222902744089, 29.756408209699945 ], [ -94.977246902340056, 29.757193209655945 ], [ -94.977271902647459, 29.758005209612261 ], [ -94.977277902680527, 29.75816720970548 ], [ -94.977282902167559, 29.758338210120151 ], [ -94.97730590208991, 29.759089210321932 ], [ -94.97732490298506, 29.759714210429202 ], [ -94.977329902987137, 29.759865210003024 ], [ -94.977340902475362, 29.760210210784241 ], [ -94.977350902428086, 29.760539210693771 ], [ -94.97736890294901, 29.761124210550104 ], [ -94.977373902117776, 29.761283210340537 ], [ -94.97829790269455, 29.761258210272921 ], [ -94.978475903097575, 29.761239210795747 ], [ -94.978614902600341, 29.761199210405596 ], [ -94.979180903029913, 29.761035210434773 ], [ -94.979615902681942, 29.760915210589879 ], [ -94.979732902944349, 29.760898210421484 ], [ -94.979930903169105, 29.760884210109893 ], [ -94.980190902787839, 29.760871210173288 ], [ -94.982397903718294, 29.760806210502022 ], [ -94.985968905101942, 29.760701209724388 ], [ -94.986068904976975, 29.760692210521373 ], [ -94.986368904519509, 29.760667210280193 ], [ -94.9866529047775, 29.760644210029348 ], [ -94.98696790460798, 29.760618209733277 ], [ -94.988400905231885, 29.760332210342938 ], [ -94.989424905552298, 29.759999210182475 ], [ -94.990388905545146, 29.759685210077691 ], [ -94.991488906289277, 29.759305209620639 ], [ -94.991518906614672, 29.75933721002329 ], [ -94.991770906587277, 29.759485209742554 ], [ -94.992085906601758, 29.759601210142076 ], [ -94.992489906483598, 29.759903210080537 ], [ -94.992596906368021, 29.759963209470339 ], [ -94.992659906507541, 29.759991209735293 ], [ -94.992848906049488, 29.760040209348148 ], [ -94.993081906345438, 29.760139209591259 ], [ -94.993377907128377, 29.760337209717726 ], [ -94.993598907121168, 29.760452210010079 ], [ -94.993850906859464, 29.760436209986835 ], [ -94.994031906692641, 29.760462210084537 ], [ -94.994197906993662, 29.760485209386946 ], [ -94.994335907234984, 29.760485209509245 ], [ -94.994405906582202, 29.760469209963492 ], [ -94.994537906781559, 29.760469210152991 ], [ -94.994632907454388, 29.760490210067434 ], [ -94.994752906780946, 29.760534210258371 ], [ -94.99482790721126, 29.760589209574178 ], [ -94.994928906739034, 29.760644209628165 ], [ -94.995048907227115, 29.760743210283668 ], [ -94.995199907451521, 29.760914209944858 ], [ -94.995306907578581, 29.761062210003203 ], [ -94.99538290729258, 29.761211209913135 ], [ -94.995451906919513, 29.761293209808574 ], [ -94.995546906893708, 29.761375210358686 ], [ -94.995660907195457, 29.761430210177643 ], [ -94.995836907320765, 29.761452209875412 ], [ -94.996763907631305, 29.761617209593631 ], [ -94.997311908146514, 29.76191921017686 ], [ -94.997469907580069, 29.762095209803928 ], [ -94.997595907831595, 29.762111209657476 ], [ -94.997689908020405, 29.762172210328934 ], [ -94.997759908159722, 29.762249210453351 ], [ -94.997885907389076, 29.762364210237276 ], [ -94.998118907703628, 29.762568210352722 ], [ -94.998389908175767, 29.762705210040384 ], [ -94.998929908316526, 29.762903210542703 ], [ -94.999285908682012, 29.763045210133011 ], [ -94.999406908357102, 29.76310121004181 ], [ -94.999625908430033, 29.762955210346352 ], [ -95.000168908652029, 29.762755210202378 ], [ -95.000278908606745, 29.762751210400186 ], [ -95.001423908490779, 29.762822210257468 ], [ -95.001768909019376, 29.762861210490161 ], [ -95.002439909034436, 29.762785210367639 ], [ -95.003303908820286, 29.76279720972067 ], [ -95.00407590953543, 29.762932210443285 ], [ -95.004092909870721, 29.762957210161634 ], [ -95.00419390982988, 29.763045209624771 ], [ -95.004338909260355, 29.763128209922176 ], [ -95.004451910138243, 29.763161209943235 ], [ -95.004798909461442, 29.763199210195609 ], [ -95.005075909650913, 29.763144210328264 ], [ -95.005335909523524, 29.763068209565297 ], [ -95.005502910354892, 29.763038210041792 ], [ -95.005732909802006, 29.763033209754319 ], [ -95.005905909569364, 29.763029210133535 ], [ -95.006239909826931, 29.763021210060153 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 956, "Tract": "48201423204", "Area_SqMi": 0.24408237095814539, "total_2009": 126, "total_2010": 121, "total_2011": 169, "total_2012": 151, "total_2013": 165, "total_2014": 206, "total_2015": 169, "total_2016": 191, "total_2017": 172, "total_2018": 173, "total_2019": 148, "total_2020": 139, "age1": 31, "age2": 81, "age3": 39, "earn1": 34, "earn2": 74, "earn3": 43, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 4, "naics_s07": 76, "naics_s08": 3, "naics_s09": 0, "naics_s10": 22, "naics_s11": 24, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 21, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 97, "race2": 36, "race3": 1, "race4": 14, "race5": 0, "race6": 3, "ethnicity1": 77, "ethnicity2": 74, "edu1": 46, "edu2": 27, "edu3": 24, "edu4": 23, "Shape_Length": 10255.109263892786, "Shape_Area": 6804598.7511601318, "total_2021": 137, "total_2022": 151 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.536753042036224, 29.670393172994338 ], [ -95.536665042313871, 29.67008017310598 ], [ -95.536677041967465, 29.669734173137982 ], [ -95.536669042282156, 29.669364172443114 ], [ -95.536652042398572, 29.668585172265676 ], [ -95.536646041855434, 29.66793117287833 ], [ -95.536640042302267, 29.667309172342044 ], [ -95.536621041817952, 29.66655117249125 ], [ -95.536597041752557, 29.666064172158872 ], [ -95.536605041323654, 29.666025172508501 ], [ -95.536588041451282, 29.666025172295583 ], [ -95.535956041124393, 29.666024172561741 ], [ -95.535083041448928, 29.666038171808228 ], [ -95.534160041342048, 29.666016172114102 ], [ -95.533309040769197, 29.665815171795202 ], [ -95.532364041088925, 29.66561517207673 ], [ -95.531462040923131, 29.665433171906024 ], [ -95.530493040217536, 29.665213172334465 ], [ -95.529614040440634, 29.665045171730913 ], [ -95.52922304027264, 29.664976172250672 ], [ -95.52912704008078, 29.664972172239654 ], [ -95.528826039720798, 29.664961172447565 ], [ -95.528237039689145, 29.664974172540393 ], [ -95.528109039649166, 29.664977172427275 ], [ -95.528108039833711, 29.665346172396617 ], [ -95.52811203944006, 29.665687172641583 ], [ -95.528114039551227, 29.666012172041874 ], [ -95.528115040109114, 29.666307172933745 ], [ -95.528153040096441, 29.667041172240907 ], [ -95.528161039446005, 29.667564173016803 ], [ -95.528162039729224, 29.668040172576934 ], [ -95.528163039641967, 29.668415172591093 ], [ -95.52816904019916, 29.668733172542435 ], [ -95.528172040263811, 29.668895173367016 ], [ -95.528178039454019, 29.669258173117619 ], [ -95.528170039443424, 29.669560173294357 ], [ -95.528166039684223, 29.669689173063144 ], [ -95.5281770399679, 29.670106173554011 ], [ -95.528177039649563, 29.670405173100452 ], [ -95.528180039793966, 29.671337173893118 ], [ -95.528179039416059, 29.67192317318969 ], [ -95.528198039516226, 29.672460173451007 ], [ -95.528201039431806, 29.672619173703996 ], [ -95.528203040403156, 29.672725174196458 ], [ -95.528318040429923, 29.672765174021031 ], [ -95.529425040752315, 29.673160174230283 ], [ -95.529800040829571, 29.673365174033975 ], [ -95.529871040695994, 29.673322174283115 ], [ -95.530104040942774, 29.673245174016849 ], [ -95.530601040923514, 29.6732351737909 ], [ -95.531351041166616, 29.673191173433327 ], [ -95.531483040465915, 29.673191174013052 ], [ -95.53163404098035, 29.673169173588185 ], [ -95.531804040469837, 29.673103173565906 ], [ -95.531936040459016, 29.673029173606288 ], [ -95.531974040872797, 29.673009174069318 ], [ -95.532962040989148, 29.672641173870705 ], [ -95.533190041410975, 29.672569174017138 ], [ -95.533856041528139, 29.672361173877135 ], [ -95.534612041947227, 29.672092173848288 ], [ -95.534864041141105, 29.67198217344438 ], [ -95.535065041651777, 29.671850173002859 ], [ -95.535670041325261, 29.671306173636399 ], [ -95.536373041936301, 29.670714173182919 ], [ -95.53654304215523, 29.670570173012305 ], [ -95.536753042036224, 29.670393172994338 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 957, "Tract": "48201433602", "Area_SqMi": 0.3010170444775217, "total_2009": 2052, "total_2010": 1969, "total_2011": 1604, "total_2012": 1580, "total_2013": 1577, "total_2014": 1520, "total_2015": 1494, "total_2016": 1947, "total_2017": 1921, "total_2018": 1792, "total_2019": 1817, "total_2020": 2223, "age1": 1220, "age2": 1832, "age3": 612, "earn1": 1125, "earn2": 1485, "earn3": 1054, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 4, "naics_s06": 39, "naics_s07": 863, "naics_s08": 0, "naics_s09": 1468, "naics_s10": 93, "naics_s11": 25, "naics_s12": 364, "naics_s13": 3, "naics_s14": 19, "naics_s15": 27, "naics_s16": 565, "naics_s17": 0, "naics_s18": 186, "naics_s19": 8, "naics_s20": 0, "race1": 1842, "race2": 1530, "race3": 35, "race4": 177, "race5": 7, "race6": 73, "ethnicity1": 2586, "ethnicity2": 1078, "edu1": 608, "edu2": 676, "edu3": 746, "edu4": 414, "Shape_Length": 14518.021072482239, "Shape_Area": 8391840.0042127389, "total_2021": 2716, "total_2022": 3664 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.560549048048827, 29.6734751724976 ], [ -95.560514048352175, 29.67270917234789 ], [ -95.560484048521559, 29.671409172095224 ], [ -95.560370048297315, 29.670059172233533 ], [ -95.560170047712404, 29.670068171726093 ], [ -95.559830048404166, 29.670084172389924 ], [ -95.558616047424579, 29.670130171998721 ], [ -95.558536047822315, 29.67013317216928 ], [ -95.557770047598254, 29.670169172365281 ], [ -95.557557047315342, 29.670171172206516 ], [ -95.557253047735585, 29.670181172339635 ], [ -95.557024046767083, 29.670192172643773 ], [ -95.556649047113041, 29.670265172494631 ], [ -95.556437047049897, 29.670321172627901 ], [ -95.556344046879929, 29.670357172666709 ], [ -95.556106047411632, 29.670451172814587 ], [ -95.555782046392167, 29.670548172836561 ], [ -95.555303046742225, 29.670564172217222 ], [ -95.554932046163529, 29.670569172881297 ], [ -95.554682046113413, 29.670562172591492 ], [ -95.554366046486237, 29.670568172792724 ], [ -95.554287046927172, 29.670574172195462 ], [ -95.553889046259187, 29.670578172665973 ], [ -95.553769046009236, 29.670584172471518 ], [ -95.553473046246083, 29.670590172690492 ], [ -95.553343045771499, 29.67062217262237 ], [ -95.553281046714019, 29.670637172500289 ], [ -95.553163046151568, 29.67066617210088 ], [ -95.552639046550908, 29.670685172721267 ], [ -95.552504046520625, 29.67068517250576 ], [ -95.551942046416244, 29.670710172912827 ], [ -95.551708045378746, 29.670750172792285 ], [ -95.551406045357112, 29.670835172321734 ], [ -95.550875045759554, 29.671093172428723 ], [ -95.550757045103808, 29.67093317306901 ], [ -95.550471045944562, 29.670725172320097 ], [ -95.550324045592845, 29.670619172604827 ], [ -95.549737045317173, 29.670308173014856 ], [ -95.549355044860732, 29.670054172702564 ], [ -95.549047045276893, 29.669821172452298 ], [ -95.548976044851358, 29.669707172192982 ], [ -95.548931045328786, 29.669626172227922 ], [ -95.547812044552131, 29.67066617301419 ], [ -95.5456160449137, 29.672708172793882 ], [ -95.543626043440412, 29.674534174027372 ], [ -95.542572044036561, 29.675516173619506 ], [ -95.54218504399843, 29.675876174069646 ], [ -95.542565044019298, 29.675842174105391 ], [ -95.543890043677749, 29.675767173851661 ], [ -95.546067045109297, 29.675592173833042 ], [ -95.54787204523906, 29.675492173954801 ], [ -95.548705045510317, 29.675447173452316 ], [ -95.549529045815774, 29.675395173224722 ], [ -95.549746045389071, 29.675380173501789 ], [ -95.550160045634243, 29.675354173623909 ], [ -95.550675045721661, 29.675308173282477 ], [ -95.551270046163282, 29.67525617381073 ], [ -95.551899046484152, 29.675216173352105 ], [ -95.552336045914885, 29.675172173653824 ], [ -95.552723046745299, 29.675158173539593 ], [ -95.553662046222087, 29.675090173284243 ], [ -95.553887046249528, 29.675088173218825 ], [ -95.555163046780862, 29.674987172933548 ], [ -95.555991047650167, 29.67493917338669 ], [ -95.556408046755806, 29.674908173005708 ], [ -95.556925047499348, 29.674876173133882 ], [ -95.557714047358587, 29.674818173275039 ], [ -95.557870048072431, 29.674808173272041 ], [ -95.55848704729398, 29.674767172724181 ], [ -95.559161048077542, 29.674704172807523 ], [ -95.559480048269705, 29.674686173359007 ], [ -95.559586048127542, 29.674680173228307 ], [ -95.559950048651615, 29.674660173387679 ], [ -95.56026804840927, 29.674643172668478 ], [ -95.560482048371355, 29.674632172950218 ], [ -95.560495048228205, 29.674409173252933 ], [ -95.560549048048827, 29.6734751724976 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 958, "Tract": "48201251702", "Area_SqMi": 25.667262137673692, "total_2009": 544, "total_2010": 547, "total_2011": 796, "total_2012": 931, "total_2013": 943, "total_2014": 1472, "total_2015": 1615, "total_2016": 1618, "total_2017": 1585, "total_2018": 1570, "total_2019": 1661, "total_2020": 1521, "age1": 280, "age2": 920, "age3": 361, "earn1": 282, "earn2": 409, "earn3": 870, "naics_s01": 4, "naics_s02": 10, "naics_s03": 0, "naics_s04": 271, "naics_s05": 64, "naics_s06": 57, "naics_s07": 20, "naics_s08": 9, "naics_s09": 0, "naics_s10": 30, "naics_s11": 7, "naics_s12": 52, "naics_s13": 0, "naics_s14": 143, "naics_s15": 680, "naics_s16": 54, "naics_s17": 15, "naics_s18": 85, "naics_s19": 60, "naics_s20": 0, "race1": 1447, "race2": 67, "race3": 8, "race4": 24, "race5": 2, "race6": 13, "ethnicity1": 1165, "ethnicity2": 396, "edu1": 216, "edu2": 351, "edu3": 368, "edu4": 346, "Shape_Length": 167271.2432181492, "Shape_Area": 715559338.44015145, "total_2021": 1473, "total_2022": 1561 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.131724953541578, 30.012863257073491 ], [ -95.13170095404277, 30.012659257001282 ], [ -95.131238953654346, 30.008700256245106 ], [ -95.130224952124479, 30.000004254730378 ], [ -95.129516952233175, 29.9939342530263 ], [ -95.130162952363293, 29.991991252838329 ], [ -95.130714952139982, 29.990328252124101 ], [ -95.131308952308856, 29.987793251769254 ], [ -95.130691952265636, 29.98807325182144 ], [ -95.129367951383642, 29.988719252257308 ], [ -95.128467951485675, 29.989146252282435 ], [ -95.127469951148498, 29.989620252059694 ], [ -95.125861951176987, 29.990361252410683 ], [ -95.123775950090206, 29.990461252333454 ], [ -95.122989950619427, 29.990127252589861 ], [ -95.122412950417569, 29.990040252757296 ], [ -95.121686949822447, 29.989515252622699 ], [ -95.120759949539007, 29.989507252314599 ], [ -95.120442949451117, 29.989585252090254 ], [ -95.120135949795511, 29.989674252841208 ], [ -95.119823949337672, 29.98976725254807 ], [ -95.118778949616328, 29.990037252717979 ], [ -95.118388949395438, 29.990115252987785 ], [ -95.118123948674167, 29.990136253169666 ], [ -95.117801949265129, 29.990157252565329 ], [ -95.117583949102453, 29.990157253137156 ], [ -95.117411949206286, 29.990141252971004 ], [ -95.117115949231589, 29.990079252319337 ], [ -95.116377948226003, 29.989767252896876 ], [ -95.115764948116237, 29.989559252583405 ], [ -95.115452948332234, 29.98950225286745 ], [ -95.115233947833573, 29.989497252386936 ], [ -95.111168947044078, 29.989510253120869 ], [ -95.109607946691185, 29.989515253220194 ], [ -95.109258946821384, 29.989516252996083 ], [ -95.108159946159631, 29.989523252557142 ], [ -95.105354946049204, 29.989540252950242 ], [ -95.104637945961557, 29.989576253260921 ], [ -95.104101945401425, 29.989564253038676 ], [ -95.10359894540909, 29.989531253437235 ], [ -95.103195945362501, 29.989520253083381 ], [ -95.102804945019955, 29.989509253108398 ], [ -95.102446944778961, 29.989542253405848 ], [ -95.101932944974621, 29.989587252799065 ], [ -95.101384944840774, 29.989598253582596 ], [ -95.100870944255306, 29.989587252804988 ], [ -95.100524945010591, 29.989564252790533 ], [ -95.10004394478419, 29.989486253253119 ], [ -95.099685944471261, 29.989419253129689 ], [ -95.099261944317362, 29.989352253257913 ], [ -95.098579944273112, 29.989274253193205 ], [ -95.098148943944494, 29.989251252810384 ], [ -95.097539943820792, 29.989274252970006 ], [ -95.097103943613803, 29.989330253576092 ], [ -95.096589943397234, 29.989430252950012 ], [ -95.09612094302328, 29.98953125336034 ], [ -95.095684942949518, 29.989632253799581 ], [ -95.095125942731869, 29.989710253846471 ], [ -95.094521942747662, 29.989766253809034 ], [ -95.09381794293077, 29.98978825372431 ], [ -95.091484941710362, 29.989857253464105 ], [ -95.091383942594888, 29.989434253677491 ], [ -95.091148942054218, 29.988433253186692 ], [ -95.091025942048802, 29.987907253194489 ], [ -95.090910942310458, 29.987450253127754 ], [ -95.090487942231803, 29.9857812530994 ], [ -95.090434941960254, 29.985570252375272 ], [ -95.090413942055903, 29.985489252670789 ], [ -95.090007941169716, 29.983887252416217 ], [ -95.089644941794361, 29.982368252420873 ], [ -95.089247940755627, 29.980710252138923 ], [ -95.089231941649231, 29.980645251350094 ], [ -95.089150941348265, 29.980306251913468 ], [ -95.089015941228666, 29.97972725185387 ], [ -95.088986940661869, 29.979605251204688 ], [ -95.088123940801168, 29.975921250824726 ], [ -95.087571940673058, 29.973285250604494 ], [ -95.086694939994231, 29.969623249904238 ], [ -95.086481940279455, 29.969628249615031 ], [ -95.08225393840307, 29.969671250181815 ], [ -95.078851937849151, 29.969716249973445 ], [ -95.077775938197462, 29.969720249904238 ], [ -95.076984937473739, 29.969729250034696 ], [ -95.071950936280103, 29.969789250577925 ], [ -95.068181935359007, 29.969827250523718 ], [ -95.063632934215562, 29.969900250687335 ], [ -95.062084933643433, 29.969913250226991 ], [ -95.061676933773356, 29.969921250328181 ], [ -95.061686934014716, 29.970179250977349 ], [ -95.061712933439452, 29.971538250602389 ], [ -95.061736933618718, 29.972765251111195 ], [ -95.061746933486603, 29.973361251303317 ], [ -95.061761934027572, 29.974302251818617 ], [ -95.061780934405547, 29.97536725168273 ], [ -95.061800933591201, 29.976162252050777 ], [ -95.061805933999963, 29.976392252307665 ], [ -95.061808934204194, 29.976943251743133 ], [ -95.061855934181736, 29.979491252220388 ], [ -95.06186393423836, 29.98015625284388 ], [ -95.061853933762549, 29.980275252476908 ], [ -95.061843934094441, 29.980294252223338 ], [ -95.061828933665439, 29.980322253083052 ], [ -95.061782934580023, 29.980357252333736 ], [ -95.061720933746145, 29.980375252385009 ], [ -95.061638934471134, 29.980381252395535 ], [ -95.059286933007854, 29.980396253023965 ], [ -95.057379933210512, 29.980410252500196 ], [ -95.05630393285341, 29.980426252798225 ], [ -95.05563293215009, 29.980436252601471 ], [ -95.054586932535756, 29.980445252580889 ], [ -95.052150932136072, 29.980475252778884 ], [ -95.049741930784577, 29.980501253146485 ], [ -95.049255931191027, 29.980509252983396 ], [ -95.049177930808099, 29.980511253139294 ], [ -95.0486439310815, 29.980509253119536 ], [ -95.048717931216444, 29.980525253347231 ], [ -95.049032931076198, 29.980527253208898 ], [ -95.049079931263492, 29.980533253267321 ], [ -95.049100930844503, 29.980584253526185 ], [ -95.049110931062401, 29.980706253050972 ], [ -95.049108930753746, 29.980875253407664 ], [ -95.049126930651497, 29.98123425328594 ], [ -95.049206930922836, 29.982296253088727 ], [ -95.049251931240804, 29.982989253766878 ], [ -95.04943393155942, 29.985371254197062 ], [ -95.049724931677261, 29.988977254954033 ], [ -95.049404931603007, 29.988986254907083 ], [ -95.048003930780112, 29.988995254661809 ], [ -95.046541930910976, 29.989003254748994 ], [ -95.045904930021791, 29.989011254928684 ], [ -95.04525693031556, 29.98902025514688 ], [ -95.044432930365545, 29.989017255055053 ], [ -95.043771929605754, 29.989016255223081 ], [ -95.043104929351131, 29.989016255179166 ], [ -95.042173929582091, 29.989028255092535 ], [ -95.041787929405487, 29.989040254808508 ], [ -95.041597929107795, 29.989056255037827 ], [ -95.041410929091555, 29.989083255076132 ], [ -95.041228929116102, 29.989118255593201 ], [ -95.040691929225915, 29.989258255386325 ], [ -95.040335928930006, 29.989367254973036 ], [ -95.040153929170188, 29.989419255209409 ], [ -95.039964929203251, 29.989468254983493 ], [ -95.039771928596522, 29.989509255191503 ], [ -95.039571928967817, 29.989543255127963 ], [ -95.039370928752604, 29.989569255464982 ], [ -95.039167928374155, 29.989587255602611 ], [ -95.038971928793401, 29.989599255062981 ], [ -95.038335928666015, 29.989617255252238 ], [ -95.037126928363577, 29.989618255340282 ], [ -95.035687927580383, 29.989621255715345 ], [ -95.035250927957804, 29.98962125563153 ], [ -95.035135927834148, 29.989623255906771 ], [ -95.035055927843302, 29.989625255835655 ], [ -95.034331927789495, 29.989640255371036 ], [ -95.032930927272773, 29.989647255874061 ], [ -95.031558926579066, 29.989665255726834 ], [ -95.031118926262138, 29.989665255543169 ], [ -95.030666927003722, 29.989678255422724 ], [ -95.030221925934285, 29.989680255601886 ], [ -95.029562926011536, 29.989690256097951 ], [ -95.027768926089593, 29.989700255750446 ], [ -95.027097925573855, 29.989719255498169 ], [ -95.026404925502675, 29.989719255671062 ], [ -95.025944925795272, 29.989730256272722 ], [ -95.024754925482782, 29.989743256288492 ], [ -95.024038924449158, 29.989746256325539 ], [ -95.022779924910765, 29.989758255846645 ], [ -95.021819924485882, 29.989776255575745 ], [ -95.021817924191211, 29.99010025605855 ], [ -95.021836924522361, 29.991479256214053 ], [ -95.021844924126086, 29.991539256530292 ], [ -95.021898923995181, 29.991628256110296 ], [ -95.022018924703048, 29.991673256584345 ], [ -95.022102924886596, 29.991682256625015 ], [ -95.022202924163267, 29.991685256406324 ], [ -95.024751924989175, 29.991642256644756 ], [ -95.024934925607909, 29.991647256213312 ], [ -95.025110924701423, 29.991629256363961 ], [ -95.02526992490364, 29.991637256083305 ], [ -95.025408925443699, 29.991636256105849 ], [ -95.025523925262775, 29.991640256112003 ], [ -95.02561292542299, 29.991656256019727 ], [ -95.025684925778364, 29.991689255899011 ], [ -95.025740924957674, 29.991736255910602 ], [ -95.025779925353206, 29.991797256341396 ], [ -95.025804924956262, 29.991869256024337 ], [ -95.025823925926389, 29.991951255984695 ], [ -95.026228925416405, 29.994030257062796 ], [ -95.02662092551185, 29.995980256639495 ], [ -95.026741926117467, 29.996616257506211 ], [ -95.026778925855112, 29.996744256945579 ], [ -95.026852925902119, 29.996744257050381 ], [ -95.0270719262207, 29.996711257394448 ], [ -95.027145925691997, 29.996701257378309 ], [ -95.027221926399079, 29.996679257550284 ], [ -95.027505926431616, 29.996426257482383 ], [ -95.027783925991329, 29.996054257145108 ], [ -95.028282926175905, 29.995392257139947 ], [ -95.028396926743696, 29.995216256691965 ], [ -95.028472926693198, 29.995007256829282 ], [ -95.028674926553094, 29.994639256568483 ], [ -95.028971926451305, 29.994380256812107 ], [ -95.029186925879415, 29.994287256841655 ], [ -95.029641926066304, 29.994212256168826 ], [ -95.029824926207041, 29.99418325650575 ], [ -95.030121926241748, 29.994056256627946 ], [ -95.030475926206336, 29.99394125670656 ], [ -95.030515926815085, 29.993924256184723 ], [ -95.030686926713756, 29.99385125677793 ], [ -95.030803927265595, 29.993803256185089 ], [ -95.0309429272221, 29.993704256719166 ], [ -95.031100926861157, 29.99349425666772 ], [ -95.031113927099312, 29.993479256387563 ], [ -95.031185926653166, 29.993329256390627 ], [ -95.031427926898118, 29.99395825623294 ], [ -95.032153927163449, 29.995846256450747 ], [ -95.032395927212718, 29.996476257415942 ], [ -95.035698928121889, 30.005069258257635 ], [ -95.039697929827668, 30.015493260555232 ], [ -95.039714929746623, 30.015545260271953 ], [ -95.039775930415104, 30.01569226028462 ], [ -95.041140930305616, 30.019195261031843 ], [ -95.042361930823844, 30.022329262130313 ], [ -95.042377930708028, 30.022370261667856 ], [ -95.042393930570043, 30.022411262104523 ], [ -95.044588931804043, 30.027975263160865 ], [ -95.044619931384133, 30.028054263101676 ], [ -95.044652931861805, 30.028121263168103 ], [ -95.044692931770356, 30.028200262672097 ], [ -95.04475693223074, 30.02832726322179 ], [ -95.044830932008026, 30.028475263543957 ], [ -95.044898931750865, 30.028594263123995 ], [ -95.045138932542159, 30.029214263475126 ], [ -95.045588932522847, 30.030779263495504 ], [ -95.046037932690311, 30.032344263783763 ], [ -95.046083932159718, 30.032505264312288 ], [ -95.046129932845986, 30.032666263944542 ], [ -95.046189932973462, 30.033006263902084 ], [ -95.046221932107912, 30.033186264212421 ], [ -95.048301933106515, 30.038177265105016 ], [ -95.048314933427605, 30.038211265430952 ], [ -95.04834093346507, 30.038276264695241 ], [ -95.048350932907397, 30.03830026458688 ], [ -95.04839993355921, 30.038446264893675 ], [ -95.048446933770322, 30.038586264994105 ], [ -95.048495933092397, 30.038731265049829 ], [ -95.048544933021063, 30.038875264940319 ], [ -95.049606933822005, 30.041495265543691 ], [ -95.049716933812121, 30.041770265500634 ], [ -95.049824934376076, 30.042042265663898 ], [ -95.056850936757613, 30.060985269798071 ], [ -95.05685393609221, 30.060995268960855 ], [ -95.056887936649687, 30.06108726959194 ], [ -95.057804937098908, 30.063609269764719 ], [ -95.058116937366336, 30.064468270306357 ], [ -95.059054937153491, 30.0670482707791 ], [ -95.059367937685124, 30.067908270886573 ], [ -95.059711937221422, 30.068855270906234 ], [ -95.060744938095297, 30.071696271149271 ], [ -95.06108993861254, 30.072643271410495 ], [ -95.06138093792363, 30.073445272080512 ], [ -95.062256938117741, 30.075853272326185 ], [ -95.062548938235281, 30.076656272235368 ], [ -95.062880938462044, 30.077542272367555 ], [ -95.062899938538877, 30.077591272233136 ], [ -95.063927938743674, 30.080182272929534 ], [ -95.064277939283173, 30.081063273311816 ], [ -95.064303939219556, 30.081129273376508 ], [ -95.064383939105738, 30.081331273039183 ], [ -95.064410939394151, 30.081398273608482 ], [ -95.072189942615438, 30.101949276851037 ], [ -95.072609942883474, 30.103059277789868 ], [ -95.072696942116949, 30.10307227694318 ], [ -95.072791942079775, 30.103039277537896 ], [ -95.072885942694398, 30.10296727750417 ], [ -95.072993942112362, 30.10283527725343 ], [ -95.073145942482412, 30.102555277491511 ], [ -95.073429942274529, 30.102115277600937 ], [ -95.073606942526197, 30.101901277132818 ], [ -95.073695943020041, 30.101824277049165 ], [ -95.073878943064344, 30.10171427733837 ], [ -95.073954942888022, 30.101686277156453 ], [ -95.074011942420398, 30.101686277073618 ], [ -95.074068942495217, 30.101703277259848 ], [ -95.074099942826166, 30.101741277239007 ], [ -95.074213942623572, 30.102192277070763 ], [ -95.074251943379267, 30.102417276789687 ], [ -95.074296942791733, 30.102560277639331 ], [ -95.07439794250908, 30.102769276935781 ], [ -95.074485943409428, 30.102912277608123 ], [ -95.074568943070432, 30.102984276992544 ], [ -95.074694942852659, 30.103006277243768 ], [ -95.074789942759963, 30.102995277320012 ], [ -95.074858943353078, 30.102956277652311 ], [ -95.074953942956768, 30.102890277225885 ], [ -95.07511194283282, 30.102747277680255 ], [ -95.075194942707441, 30.102659277052904 ], [ -95.07523894334193, 30.102566277403156 ], [ -95.075250943397847, 30.102346276828335 ], [ -95.075206943216386, 30.102142277288099 ], [ -95.075187942898836, 30.101944277078672 ], [ -95.075212942734396, 30.101856276696211 ], [ -95.075250943422546, 30.101801277121076 ], [ -95.07530794343873, 30.101752276835711 ], [ -95.075370943602024, 30.101719276705929 ], [ -95.075440943625097, 30.10170227701942 ], [ -95.075554943463828, 30.101719276764833 ], [ -95.075642942919529, 30.101746276963389 ], [ -95.075800942826035, 30.101834276827322 ], [ -95.076092943221141, 30.102032276886717 ], [ -95.076199943434659, 30.102082277097338 ], [ -95.076300943695244, 30.102098276709253 ], [ -95.07637094360993, 30.102093277092738 ], [ -95.076452943161271, 30.102049277151302 ], [ -95.076534943621198, 30.101950276813081 ], [ -95.076553943819775, 30.101647277150388 ], [ -95.076547943174134, 30.101455277230954 ], [ -95.076515943198714, 30.101169277090019 ], [ -95.076565943187475, 30.100982277225281 ], [ -95.076667943920754, 30.100938276807355 ], [ -95.076983943923452, 30.100883276533636 ], [ -95.077211943420281, 30.100778277166842 ], [ -95.077312944072006, 30.100745276415122 ], [ -95.077463943299819, 30.100778276434113 ], [ -95.077552944147286, 30.100811276463411 ], [ -95.07767294345976, 30.100828277060778 ], [ -95.077761944000571, 30.100822276702715 ], [ -95.077862943445808, 30.100789276409877 ], [ -95.077950944077017, 30.100718276755728 ], [ -95.077995944132695, 30.100553276758092 ], [ -95.078007943826293, 30.100371276958416 ], [ -95.078039943782599, 30.100217276356236 ], [ -95.078102943958186, 30.100179276176895 ], [ -95.078178943458269, 30.100157276186451 ], [ -95.078292943756551, 30.100151276284357 ], [ -95.078507943976931, 30.100184276187999 ], [ -95.078595943684064, 30.10021227642078 ], [ -95.078671943776754, 30.100217276751472 ], [ -95.078747944455969, 30.100206276913568 ], [ -95.07886794397669, 30.100124276153895 ], [ -95.078918944311823, 30.100036276994317 ], [ -95.078924943567799, 30.099953276664863 ], [ -95.078911944282581, 30.099898276284684 ], [ -95.078861943870308, 30.099827276210029 ], [ -95.078760944167556, 30.09974427662047 ], [ -95.078456944090078, 30.099558276608374 ], [ -95.078380944244941, 30.099530276047094 ], [ -95.078184943336979, 30.099437276661476 ], [ -95.07807094427244, 30.099332276456366 ], [ -95.078026943626497, 30.099250276393079 ], [ -95.078001943270706, 30.099167276222921 ], [ -95.078020943980604, 30.099079276330503 ], [ -95.078127944056305, 30.09900227673392 ], [ -95.078538944065699, 30.098788276089525 ], [ -95.078874943457649, 30.098636276151723 ], [ -95.078974943827902, 30.098590275934995 ], [ -95.079113944384787, 30.09850727656864 ], [ -95.079221943515009, 30.098425275765699 ], [ -95.079253943749819, 30.098370276117141 ], [ -95.079297943586567, 30.098260275753365 ], [ -95.079303944059518, 30.098199276284454 ], [ -95.079271943699084, 30.098100276052772 ], [ -95.079234943934566, 30.098034275770512 ], [ -95.079025944234871, 30.097891275918958 ], [ -95.078968944256772, 30.097831276112643 ], [ -95.078943944032048, 30.097770276078226 ], [ -95.078949943714207, 30.097715276418402 ], [ -95.079018943477493, 30.097649275865983 ], [ -95.079196943962671, 30.097611275672939 ], [ -95.079436944215786, 30.097512275872479 ], [ -95.079587944452626, 30.097413275573619 ], [ -95.079796943799778, 30.097209276286101 ], [ -95.079847944333636, 30.097132276290804 ], [ -95.079891944147349, 30.097028275547256 ], [ -95.079904944107511, 30.096945276134591 ], [ -95.079891943920686, 30.096868275772085 ], [ -95.079853943605826, 30.096808276074892 ], [ -95.079796943940849, 30.096747275574774 ], [ -95.079606944482222, 30.096638275956614 ], [ -95.079315943768975, 30.096528275902951 ], [ -95.079043944255503, 30.096456276193017 ], [ -95.078696943466298, 30.096291275788484 ], [ -95.078626943447489, 30.096253275715629 ], [ -95.078569943642378, 30.096143275825106 ], [ -95.078563943893329, 30.096055275914445 ], [ -95.078613943308568, 30.095846275981586 ], [ -95.078714944193337, 30.095560275529849 ], [ -95.078727943967436, 30.09543927597371 ], [ -95.078714943996815, 30.095142275302692 ], [ -95.078746944072009, 30.095027275520749 ], [ -95.07877794414695, 30.094983275206463 ], [ -95.078809943491621, 30.09496627577845 ], [ -95.078955944077222, 30.094933275731542 ], [ -95.079043944211008, 30.094944275571844 ], [ -95.079555943539944, 30.095131275751978 ], [ -95.079713944277799, 30.095175275968323 ], [ -95.080017943954246, 30.095279275383259 ], [ -95.080150944183956, 30.095307275297419 ], [ -95.080257944520326, 30.095301275591666 ], [ -95.080403944010556, 30.09526827575009 ], [ -95.080536944431884, 30.095197275732222 ], [ -95.080681943996098, 30.095037275032968 ], [ -95.080738944297792, 30.094927275831004 ], [ -95.080731944624176, 30.094779275589886 ], [ -95.08070694419672, 30.094696275810232 ], [ -95.080649944132276, 30.094614275708665 ], [ -95.080573943690382, 30.094548275147762 ], [ -95.080472944641485, 30.094438275054237 ], [ -95.080403943646303, 30.094311275038546 ], [ -95.080358944447028, 30.094196275778792 ], [ -95.0803399444398, 30.09411927556685 ], [ -95.080339944388314, 30.093877275424372 ], [ -95.080377944284251, 30.093740275061478 ], [ -95.080598944021673, 30.093426274975176 ], [ -95.08071294381233, 30.093349275257811 ], [ -95.080813944384317, 30.093250274689126 ], [ -95.081104944413852, 30.093003275502525 ], [ -95.08143394418093, 30.092761274568151 ], [ -95.081597944725587, 30.092700274806987 ], [ -95.081743944480891, 30.092634274938064 ], [ -95.08203394474269, 30.092420274923992 ], [ -95.082103944864784, 30.092321275319776 ], [ -95.082090944184287, 30.092271274783176 ], [ -95.081932944100558, 30.092156274749055 ], [ -95.081888944734644, 30.09213427507428 ], [ -95.081724944859189, 30.092183274606391 ], [ -95.081629944791231, 30.092200274481197 ], [ -95.081521944126777, 30.092183274771767 ], [ -95.081426944750319, 30.092150274639945 ], [ -95.08137694435834, 30.092101275252215 ], [ -95.081363944063398, 30.092051274641111 ], [ -95.08136994378431, 30.091969275060453 ], [ -95.081464944453884, 30.091842274370599 ], [ -95.08167394415409, 30.091622274710353 ], [ -95.081736944166792, 30.091589274417089 ], [ -95.081818944561405, 30.091573274842915 ], [ -95.081989944815163, 30.091578274714976 ], [ -95.082166944797962, 30.091622274426729 ], [ -95.082267944445434, 30.091672274998874 ], [ -95.0823819440715, 30.091771274962589 ], [ -95.082609944797738, 30.091694274854291 ], [ -95.083133945192372, 30.09145227510346 ], [ -95.083266944372227, 30.091402275047244 ], [ -95.083450944396276, 30.091380274766902 ], [ -95.083500944694777, 30.09139127499137 ], [ -95.083646944560186, 30.091474274401243 ], [ -95.083665944663707, 30.091523274316273 ], [ -95.083652945015459, 30.091600274325216 ], [ -95.083595945338004, 30.091677274305482 ], [ -95.083519944339841, 30.091732274927352 ], [ -95.083481945193554, 30.091809275062609 ], [ -95.083469944871055, 30.09191327500465 ], [ -95.083475944514717, 30.092018275011242 ], [ -95.08358394461969, 30.092199274423979 ], [ -95.083671944627525, 30.092265274474201 ], [ -95.08377994493685, 30.092315274697949 ], [ -95.083861945221727, 30.092320274655826 ], [ -95.083956945317254, 30.092309274855964 ], [ -95.084044944647857, 30.09226527461183 ], [ -95.084272944698469, 30.092117274667107 ], [ -95.084468945129501, 30.091886274491817 ], [ -95.084531945445192, 30.091776274260265 ], [ -95.084600944914669, 30.091352274573183 ], [ -95.084632945456406, 30.091275274548142 ], [ -95.084676944820117, 30.091231274203075 ], [ -95.084765945304255, 30.091209274688943 ], [ -95.084853945434034, 30.091204274259649 ], [ -95.085094945076051, 30.091215274903202 ], [ -95.08521494535745, 30.091193274274417 ], [ -95.085492945245846, 30.091050274746106 ], [ -95.085536945176969, 30.091006274146071 ], [ -95.08554294507212, 30.090940274619708 ], [ -95.085530944984427, 30.090896274520802 ], [ -95.085473945369685, 30.0908242740324 ], [ -95.084638944824377, 30.09011027446811 ], [ -95.084379944558691, 30.08992327471174 ], [ -95.084233944961781, 30.089769274414696 ], [ -95.083923944885882, 30.089329274085021 ], [ -95.083873945060958, 30.089241274340157 ], [ -95.083841944382812, 30.089104273772634 ], [ -95.083847944690703, 30.089016274224626 ], [ -95.083885945272954, 30.08893327413918 ], [ -95.084214945293539, 30.088416273853856 ], [ -95.084309944400772, 30.088240274051493 ], [ -95.084422944564366, 30.088103273500639 ], [ -95.08486594469008, 30.08774527386117 ], [ -95.085200944578631, 30.08749227397352 ], [ -95.08587094543438, 30.087052273713919 ], [ -95.086091945062194, 30.08687627380754 ], [ -95.086351945782567, 30.08662327376824 ], [ -95.086496945299103, 30.086442273302151 ], [ -95.086629945474755, 30.086321273869451 ], [ -95.086856945859893, 30.08616727325391 ], [ -95.087033945811811, 30.086084273585509 ], [ -95.087147945034445, 30.086079273032034 ], [ -95.087248945844976, 30.086101273821498 ], [ -95.087362945246142, 30.086145273783664 ], [ -95.087539945112653, 30.086189273037871 ], [ -95.08765394521545, 30.086200273168895 ], [ -95.087760945233214, 30.086200273015905 ], [ -95.087893945830928, 30.086145273384396 ], [ -95.088001945690905, 30.086112273658564 ], [ -95.088108945368759, 30.086101273657672 ], [ -95.088197945863712, 30.086106273536462 ], [ -95.08829894615927, 30.086139273077844 ], [ -95.08846994549468, 30.086249273491624 ], [ -95.088633945863123, 30.086381273153492 ], [ -95.088810945736086, 30.086469273456885 ], [ -95.088943946350312, 30.086474273023821 ], [ -95.089063945566295, 30.086463273149384 ], [ -95.089164945738233, 30.086425273137166 ], [ -95.089259946476446, 30.086320273448145 ], [ -95.089297946021929, 30.086249273364622 ], [ -95.089480946177588, 30.086067273031496 ], [ -95.089784945846205, 30.085853273175175 ], [ -95.089853946170322, 30.085781273696529 ], [ -95.089872946140559, 30.085737272976154 ], [ -95.08981594633471, 30.085611272897804 ], [ -95.089682946199005, 30.085402273200479 ], [ -95.089512946033878, 30.085231273202208 ], [ -95.089461946403475, 30.085171273348745 ], [ -95.089429945962266, 30.085116273462372 ], [ -95.089423946283844, 30.084951273361298 ], [ -95.089454946176104, 30.084901273498634 ], [ -95.089492946211564, 30.08486327295207 ], [ -95.089549945614266, 30.084824273432709 ], [ -95.089606946137778, 30.084819272740656 ], [ -95.08967694580771, 30.084830273029272 ], [ -95.089726945675139, 30.084857273019658 ], [ -95.089897946464703, 30.085022273156024 ], [ -95.090017946508112, 30.085171273433748 ], [ -95.090087945908763, 30.085231273259907 ], [ -95.090125945980674, 30.085248273057221 ], [ -95.090232946272735, 30.085242272937379 ], [ -95.090302946753923, 30.085204273145806 ], [ -95.090359946372118, 30.085138273555625 ], [ -95.090397946538431, 30.085072272900977 ], [ -95.090409945791365, 30.085017272939179 ], [ -95.090432946311182, 30.084752273464986 ], [ -95.09008494576986, 30.084509273126525 ], [ -95.089774945684226, 30.084042273276872 ], [ -95.089650946463138, 30.083780273109912 ], [ -95.089682945530825, 30.08369227313241 ], [ -95.08972694558048, 30.083648272992164 ], [ -95.089802946162905, 30.083615272605492 ], [ -95.08987894646728, 30.083604273111558 ], [ -95.089947946444738, 30.083604272623031 ], [ -95.090188946126062, 30.08363127299457 ], [ -95.090289946613979, 30.083664272935263 ], [ -95.090542946482415, 30.083680272788691 ], [ -95.090643946555375, 30.083746272948609 ], [ -95.090681946386425, 30.08382327285997 ], [ -95.090693946813531, 30.083889272619782 ], [ -95.090637946492933, 30.08419227315698 ], [ -95.090637945917351, 30.084247272764138 ], [ -95.090656946683964, 30.084302272533602 ], [ -95.090687946187785, 30.08435127296864 ], [ -95.090776946729818, 30.08439027270645 ], [ -95.090845946662569, 30.084379273080586 ], [ -95.090972946786522, 30.084329272628736 ], [ -95.091111946054212, 30.084236272618281 ], [ -95.091206946628944, 30.084087273329938 ], [ -95.091231946834426, 30.083851273163145 ], [ -95.091302946954627, 30.08370427302723 ], [ -95.091468946162834, 30.083595273137 ], [ -95.091642946221313, 30.083516272905392 ], [ -95.091701946088605, 30.083479273141091 ], [ -95.091775946298171, 30.083432273139358 ], [ -95.091868946843249, 30.083349273099845 ], [ -95.091920946248294, 30.083271272227968 ], [ -95.091952946267384, 30.083183272685336 ], [ -95.091964946479209, 30.083100272728746 ], [ -95.091963946122021, 30.08303627268614 ], [ -95.091907946054263, 30.082961272708445 ], [ -95.091727946235366, 30.082758272192734 ], [ -95.091683946688676, 30.082577272896721 ], [ -95.09173294658909, 30.082353272259521 ], [ -95.091723946123665, 30.082236272181142 ], [ -95.091633946681455, 30.082114272393923 ], [ -95.091409946337421, 30.082053272586748 ], [ -95.091070946647974, 30.081988272210268 ], [ -95.090905945968629, 30.081826272125667 ], [ -95.090747946194767, 30.081735272189007 ], [ -95.090665945685487, 30.081671272376294 ], [ -95.090552946337453, 30.081438272275815 ], [ -95.090493945995107, 30.081187272366016 ], [ -95.090504946132583, 30.081093272671026 ], [ -95.090499945964481, 30.080981272036848 ], [ -95.090524946375936, 30.080905271969705 ], [ -95.090563946611184, 30.080834272588092 ], [ -95.09061794629082, 30.080809272002757 ], [ -95.090812946681098, 30.08080627215524 ], [ -95.091245946611735, 30.080840272285627 ], [ -95.091402946150069, 30.080926271772 ], [ -95.091484946389471, 30.080966272652027 ], [ -95.091566946889756, 30.081029271858377 ], [ -95.09165494668035, 30.081033271954428 ], [ -95.091701946543367, 30.081009272448718 ], [ -95.091794946320078, 30.080973271998037 ], [ -95.09185294669841, 30.080837272227054 ], [ -95.091868946861922, 30.080637271826856 ], [ -95.091832946055703, 30.080538272445366 ], [ -95.091795946602574, 30.080391272287233 ], [ -95.09175294651142, 30.080263272436646 ], [ -95.091744946450206, 30.080181272349087 ], [ -95.091817946486998, 30.080115272461232 ], [ -95.092086946008308, 30.080070272254357 ], [ -95.092274946517477, 30.08003227184831 ], [ -95.092438946381463, 30.079806272014071 ], [ -95.092487946597728, 30.079746271711986 ], [ -95.092570946634183, 30.07965127233399 ], [ -95.092316946361436, 30.079485272275541 ], [ -95.092012946199389, 30.079437271763084 ], [ -95.091815946343786, 30.079387271652852 ], [ -95.091691946264291, 30.079296271857277 ], [ -95.091573946068507, 30.079133272125688 ], [ -95.091493945817632, 30.078999271487362 ], [ -95.091511945799041, 30.078917271810678 ], [ -95.091605945950434, 30.078863272154582 ], [ -95.091739946621828, 30.078837271855594 ], [ -95.091953946617579, 30.078745271859773 ], [ -95.092172946210979, 30.078542271991154 ], [ -95.092290946877242, 30.078376271261693 ], [ -95.092386946030445, 30.078157271352186 ], [ -95.092522946931041, 30.077874271621535 ], [ -95.092532946556489, 30.077740271869608 ], [ -95.092522946339102, 30.077234271015207 ], [ -95.09252394674543, 30.076958271468445 ], [ -95.092439946890522, 30.076830271302196 ], [ -95.092141946051356, 30.076629271440492 ], [ -95.092073946247439, 30.076566271432068 ], [ -95.09205194628322, 30.076496271040693 ], [ -95.092056945963108, 30.076425271080549 ], [ -95.092178946208648, 30.07613627084077 ], [ -95.092296946009427, 30.07594027161376 ], [ -95.092311946653467, 30.075723271210805 ], [ -95.092235946584651, 30.075630271345311 ], [ -95.092171946211934, 30.075473270941707 ], [ -95.092233946526179, 30.07519027090466 ], [ -95.092410946650801, 30.074970271415655 ], [ -95.092457945945611, 30.074629270957026 ], [ -95.092515946198944, 30.074346270894875 ], [ -95.092587945863912, 30.074222271102105 ], [ -95.092713945990511, 30.074114270643406 ], [ -95.092846946828857, 30.074012270333888 ], [ -95.092931946348159, 30.073899270530834 ], [ -95.09295594660199, 30.073752270583821 ], [ -95.092945945901334, 30.073600270978485 ], [ -95.092875946487979, 30.073507270680018 ], [ -95.09277294631103, 30.07339127033557 ], [ -95.092669946348195, 30.073311270904306 ], [ -95.092625945894866, 30.073282270779671 ], [ -95.092416946640341, 30.073145270382653 ], [ -95.092218945915889, 30.073030270875236 ], [ -95.092108945891255, 30.072944270696645 ], [ -95.092026946019161, 30.072893270299083 ], [ -95.092030946282577, 30.072757270756853 ], [ -95.092127945714338, 30.072680270183895 ], [ -95.092269946553373, 30.072566270586655 ], [ -95.092516946198202, 30.072450270272029 ], [ -95.092763946602958, 30.072171270275174 ], [ -95.093051946204241, 30.072054270108367 ], [ -95.093245946709587, 30.072010269896559 ], [ -95.093521946279708, 30.071941270024084 ], [ -95.093756946502168, 30.071908270588843 ], [ -95.094020946776666, 30.07195127022192 ], [ -95.094210946875975, 30.071989270300524 ], [ -95.094602946883427, 30.072030269911728 ], [ -95.094850946721223, 30.071950270182136 ], [ -95.09505294658905, 30.071893270670422 ], [ -95.095138947250632, 30.07183927002815 ], [ -95.095143946686335, 30.071745270560001 ], [ -95.095120946404762, 30.071640270434354 ], [ -95.094627947127947, 30.071272270078406 ], [ -95.094252946376429, 30.071120269957067 ], [ -95.094191946487101, 30.071080270472297 ], [ -95.094182946907139, 30.07099227025347 ], [ -95.094116946843911, 30.07074627045872 ], [ -95.094127946102134, 30.070617270213642 ], [ -95.094509946398162, 30.070505269633099 ], [ -95.094912946367273, 30.07039926958749 ], [ -95.095280947313682, 30.070258269813181 ], [ -95.095497946843906, 30.070131269514778 ], [ -95.095536946685201, 30.070049269906878 ], [ -95.095553946588467, 30.06990426941778 ], [ -95.095559947020107, 30.069855269536202 ], [ -95.095529946904463, 30.069708270083801 ], [ -95.095459946834112, 30.069598269682462 ], [ -95.095456946704374, 30.069492269991663 ], [ -95.0954689466096, 30.069381269421704 ], [ -95.095606946642889, 30.069232269337522 ], [ -95.09587994673403, 30.069063269527618 ], [ -95.096311946618584, 30.068751269809542 ], [ -95.096667946728175, 30.068669269329824 ], [ -95.097194947702718, 30.068684269565505 ], [ -95.097390946807138, 30.06869826946231 ], [ -95.097558947359488, 30.068678269589654 ], [ -95.097684947835077, 30.068582269761269 ], [ -95.097775947053066, 30.068422269024389 ], [ -95.097797947229992, 30.068170269709817 ], [ -95.09773194763541, 30.067443269324922 ], [ -95.098001946991459, 30.067300269117435 ], [ -95.098204947372452, 30.067199269517644 ], [ -95.098370947675889, 30.067107269060962 ], [ -95.098460947023753, 30.066978268984119 ], [ -95.098478947037705, 30.066951268991815 ], [ -95.098465947353731, 30.066741268978422 ], [ -95.098583947944647, 30.06658526938671 ], [ -95.098719947592613, 30.066421269380179 ], [ -95.098885947420357, 30.066337269328201 ], [ -95.099089948122412, 30.066285268580533 ], [ -95.099172947534228, 30.066251269372476 ], [ -95.099272947949487, 30.066152268625164 ], [ -95.099362947398348, 30.065997269122519 ], [ -95.09942594796766, 30.065874269127814 ], [ -95.099554947846372, 30.065816269276592 ], [ -95.09972194727338, 30.065780269114097 ], [ -95.099832947320195, 30.065746268775577 ], [ -95.0999159481579, 30.065664268396791 ], [ -95.100043947640785, 30.065548268596352 ], [ -95.100134947634757, 30.065458268989889 ], [ -95.100273948251072, 30.065423269153943 ], [ -95.100543948020658, 30.065411269136618 ], [ -95.100741948198021, 30.065529268975766 ], [ -95.100848948036472, 30.06553226844709 ], [ -95.100909948164414, 30.065534269163464 ], [ -95.101085948266601, 30.065467269008664 ], [ -95.101110948435377, 30.065337268945552 ], [ -95.101162948016679, 30.065166268733805 ], [ -95.101177948434042, 30.064979268204873 ], [ -95.101170948512731, 30.064671268299815 ], [ -95.101035948089716, 30.064446268521596 ], [ -95.100894948473467, 30.064266268230405 ], [ -95.100834947639882, 30.064190268869769 ], [ -95.100657947456881, 30.06397426808725 ], [ -95.100617947596959, 30.063829268595324 ], [ -95.100612948124436, 30.063626268793524 ], [ -95.100626948399992, 30.063407268433981 ], [ -95.100687948092116, 30.063179268382374 ], [ -95.100816947521892, 30.063053268490872 ], [ -95.100906947460686, 30.062965268492935 ], [ -95.101183947538985, 30.06284726807889 ], [ -95.101387948314979, 30.062779268263029 ], [ -95.101448948137858, 30.062607267909097 ], [ -95.101454948269463, 30.062413267886289 ], [ -95.101502947944994, 30.062055267954367 ], [ -95.101588948548383, 30.061276267582954 ], [ -95.101664948340002, 30.061128267503314 ], [ -95.101766948567942, 30.061054267512588 ], [ -95.102095948456309, 30.060813267315769 ], [ -95.102163948041721, 30.060496267495459 ], [ -95.102184948214784, 30.060172267517725 ], [ -95.101834948428404, 30.059918267693217 ], [ -95.10179394769338, 30.059748267634113 ], [ -95.101803947689149, 30.059612267339329 ], [ -95.101815948137968, 30.05944026710419 ], [ -95.101797947557046, 30.059051267340514 ], [ -95.101713948485056, 30.058574266982347 ], [ -95.101762948109027, 30.058289267184502 ], [ -95.101763947491918, 30.05807126759796 ], [ -95.101653947748915, 30.057764267182847 ], [ -95.101506947962903, 30.057402267466852 ], [ -95.101184947333053, 30.057139266707935 ], [ -95.100864947597813, 30.056990266871775 ], [ -95.100480947184778, 30.056891267135992 ], [ -95.100228947311791, 30.056725266967383 ], [ -95.100083947904878, 30.0566302666345 ], [ -95.099890947757245, 30.056349266597156 ], [ -95.099772946995259, 30.05604326685441 ], [ -95.099787946855187, 30.055963266429064 ], [ -95.099608947652996, 30.056023266965237 ], [ -95.099428946892971, 30.056082266950821 ], [ -95.099030946918816, 30.056215266457031 ], [ -95.09572194672856, 30.057318267642568 ], [ -95.095493946742693, 30.057292267534589 ], [ -95.095188945787186, 30.057300267457524 ], [ -95.094430945594283, 30.057307266975442 ], [ -95.09396994609169, 30.057305266864432 ], [ -95.093697945729659, 30.057288266908945 ], [ -95.093449945506833, 30.057309267769551 ], [ -95.093078945562027, 30.057308267665206 ], [ -95.092892945311903, 30.05731326696112 ], [ -95.092700945859036, 30.057335267167087 ], [ -95.092505945708524, 30.057312267699153 ], [ -95.091484944768467, 30.05730926749975 ], [ -95.091281945395295, 30.057317267045544 ], [ -95.091082944829566, 30.057330267727512 ], [ -95.09069394470896, 30.05732326744236 ], [ -95.090449945390603, 30.057332267431736 ], [ -95.089814944322342, 30.057331267796723 ], [ -95.087654944491163, 30.057354267390867 ], [ -95.087183944353598, 30.057362267455982 ], [ -95.087001944261829, 30.055848267065631 ], [ -95.086838943998472, 30.054714266736159 ], [ -95.086872944434944, 30.053732266711144 ], [ -95.086941944203673, 30.053298266641129 ], [ -95.087072944322927, 30.052593266259873 ], [ -95.087153943920228, 30.05221526649748 ], [ -95.087171943697328, 30.052133266609392 ], [ -95.087898944124277, 30.049235265634664 ], [ -95.088145943963468, 30.047963265341693 ], [ -95.088214943611632, 30.047573265558363 ], [ -95.088363943891707, 30.046743264913658 ], [ -95.088475943599789, 30.046371265286304 ], [ -95.088506944065813, 30.04628426552814 ], [ -95.088742943828947, 30.045603264670348 ], [ -95.08881194412912, 30.04542726534973 ], [ -95.088957943612783, 30.045056264764671 ], [ -95.089074944013547, 30.044672264873 ], [ -95.089128944125591, 30.044472265027618 ], [ -95.089237944594956, 30.043943264575287 ], [ -95.089276944520449, 30.043779264585105 ], [ -95.089290944196932, 30.043720264789226 ], [ -95.089331943588064, 30.043260264347552 ], [ -95.089332943638055, 30.042390264358183 ], [ -95.089300944354491, 30.041925264239389 ], [ -95.089188943496751, 30.040522263990521 ], [ -95.089170944278067, 30.040021264186461 ], [ -95.089177944293297, 30.03985226349344 ], [ -95.089185943565198, 30.039679264228134 ], [ -95.089194943435047, 30.039482263597389 ], [ -95.089204943850646, 30.039277263861099 ], [ -95.089246943355334, 30.038844264080236 ], [ -95.089320943961923, 30.038395263603263 ], [ -95.089425944136764, 30.037876263473333 ], [ -95.089567944175016, 30.037316263624739 ], [ -95.089706944356621, 30.036521262827836 ], [ -95.089786944070937, 30.036067263288501 ], [ -95.089826943699421, 30.035821263018633 ], [ -95.089833943521185, 30.035593262667348 ], [ -95.089819943821709, 30.035213263116287 ], [ -95.089808943524332, 30.034943262729705 ], [ -95.08980694406921, 30.034893263282179 ], [ -95.089770943696365, 30.034537263166115 ], [ -95.089748944178055, 30.034390262613552 ], [ -95.089556943582494, 30.033541262251653 ], [ -95.089368943841635, 30.032958262548721 ], [ -95.089078944017572, 30.032194262312863 ], [ -95.088994943500111, 30.031973262177708 ], [ -95.088794943896147, 30.031425262635835 ], [ -95.088746942960853, 30.0312832619239 ], [ -95.088676943127311, 30.031128262477505 ], [ -95.088664943283334, 30.031103262463219 ], [ -95.088420943338065, 30.030200261961181 ], [ -95.088415942765337, 30.030161262360103 ], [ -95.088355942935422, 30.029644261966506 ], [ -95.088303943660563, 30.029365261823944 ], [ -95.088342942734883, 30.028032261508496 ], [ -95.088428943249184, 30.027663261673997 ], [ -95.088543943322961, 30.027232261111081 ], [ -95.088710943319441, 30.026614261121882 ], [ -95.088729942904678, 30.026541261061354 ], [ -95.088747943045405, 30.026475260908363 ], [ -95.088785942799504, 30.026318260979629 ], [ -95.088898943454922, 30.025991261259581 ], [ -95.089008943104503, 30.025669261454318 ], [ -95.08915794326974, 30.025284261073871 ], [ -95.089326943006029, 30.02484626079141 ], [ -95.089436943557033, 30.024500260687716 ], [ -95.089581943502949, 30.024045260313112 ], [ -95.089795943610397, 30.023373260169009 ], [ -95.089942943706603, 30.022911260531842 ], [ -95.090345942891616, 30.022745260674913 ], [ -95.090541943740163, 30.022663260208073 ], [ -95.091824943324568, 30.022130260172961 ], [ -95.093014944061522, 30.021827260119178 ], [ -95.094617944509167, 30.021389260002 ], [ -95.097520945488625, 30.020858259594739 ], [ -95.099423946069209, 30.020585259555578 ], [ -95.099617945529459, 30.020557259957386 ], [ -95.099821945226012, 30.020528259603964 ], [ -95.100317945927586, 30.020457259701789 ], [ -95.102997946381777, 30.020087259114945 ], [ -95.103235946886613, 30.02004725894966 ], [ -95.104045946718685, 30.019908259749897 ], [ -95.104357946910937, 30.019855259732417 ], [ -95.10552894726699, 30.019656258990072 ], [ -95.110210948083107, 30.018862259105898 ], [ -95.112655948777743, 30.018493259113477 ], [ -95.11439994968633, 30.018229258847342 ], [ -95.115420949196135, 30.018075258213305 ], [ -95.115506949833531, 30.018062258138848 ], [ -95.117172949598839, 30.017638258569662 ], [ -95.118095950314796, 30.017335258343554 ], [ -95.120971950547201, 30.016389258354412 ], [ -95.121380950823763, 30.016255258394011 ], [ -95.121788950887918, 30.016120257984888 ], [ -95.122538951214366, 30.015873258177837 ], [ -95.125343951955486, 30.014951258010196 ], [ -95.131724953541578, 30.012863257073491 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 959, "Tract": "48201252202", "Area_SqMi": 7.4240586320732804, "total_2009": 2648, "total_2010": 2795, "total_2011": 3395, "total_2012": 3156, "total_2013": 3097, "total_2014": 2967, "total_2015": 3129, "total_2016": 2387, "total_2017": 2426, "total_2018": 2638, "total_2019": 2919, "total_2020": 2963, "age1": 601, "age2": 1665, "age3": 653, "earn1": 200, "earn2": 420, "earn3": 2299, "naics_s01": 0, "naics_s02": 193, "naics_s03": 5, "naics_s04": 374, "naics_s05": 1032, "naics_s06": 92, "naics_s07": 76, "naics_s08": 246, "naics_s09": 0, "naics_s10": 10, "naics_s11": 17, "naics_s12": 180, "naics_s13": 115, "naics_s14": 380, "naics_s15": 0, "naics_s16": 45, "naics_s17": 1, "naics_s18": 31, "naics_s19": 122, "naics_s20": 0, "race1": 2376, "race2": 322, "race3": 37, "race4": 147, "race5": 1, "race6": 36, "ethnicity1": 1595, "ethnicity2": 1324, "edu1": 583, "edu2": 650, "edu3": 686, "edu4": 399, "Shape_Length": 70748.201334005003, "Shape_Area": 206970048.25886458, "total_2021": 2917, "total_2022": 2919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.185689960251608, 29.843492220292614 ], [ -95.18548995939932, 29.843098220516513 ], [ -95.185420959277906, 29.842962220093934 ], [ -95.185361959992065, 29.84284422029998 ], [ -95.184946959399525, 29.842222220484068 ], [ -95.18424395969744, 29.841303219546809 ], [ -95.183675959467607, 29.840676219680667 ], [ -95.183471959262775, 29.840442219912799 ], [ -95.182956959347464, 29.839924220182528 ], [ -95.182391959037545, 29.839386220113298 ], [ -95.181903958626492, 29.838907219835143 ], [ -95.181615958610962, 29.838624219181646 ], [ -95.181100958508182, 29.838068218986756 ], [ -95.180018957628675, 29.836893219252261 ], [ -95.178781957227642, 29.835512218553362 ], [ -95.177495957113223, 29.83421421904249 ], [ -95.176448957036811, 29.833098218815373 ], [ -95.176348956694227, 29.83299221811928 ], [ -95.176010956638521, 29.832640218693726 ], [ -95.175823956889218, 29.83246921848545 ], [ -95.17552395710382, 29.832134218664976 ], [ -95.175306956407084, 29.832231218077542 ], [ -95.174864956214051, 29.832427218255127 ], [ -95.174633956169785, 29.832541218507732 ], [ -95.174456956694712, 29.832628218495408 ], [ -95.172037955498581, 29.833719219113437 ], [ -95.171155955922373, 29.834191218607064 ], [ -95.168761954886165, 29.835446219334852 ], [ -95.168402954617108, 29.835601219118761 ], [ -95.168116955350541, 29.835724219183387 ], [ -95.167747955186641, 29.83588321930366 ], [ -95.167697954864508, 29.835905219812325 ], [ -95.165908954549494, 29.836677219361263 ], [ -95.161278953792888, 29.838676220097611 ], [ -95.160917953025788, 29.838832219998441 ], [ -95.160839952716557, 29.838866220251365 ], [ -95.160835953635129, 29.83885122027997 ], [ -95.160758953596655, 29.838579220280707 ], [ -95.160709953124709, 29.838405219809729 ], [ -95.160438953092296, 29.837839219719815 ], [ -95.160015952876293, 29.836668220005272 ], [ -95.159688952763133, 29.835590219476313 ], [ -95.159278952676729, 29.834188219483835 ], [ -95.159001952048555, 29.833506218909097 ], [ -95.158982952447587, 29.833248219415488 ], [ -95.158969952374221, 29.833198219323641 ], [ -95.158925951986134, 29.833077219449066 ], [ -95.15876195284801, 29.832835218932757 ], [ -95.15872495205582, 29.83273621877591 ], [ -95.158642952727504, 29.832390219177583 ], [ -95.158661952597996, 29.832214218906877 ], [ -95.158913952100519, 29.831142218883159 ], [ -95.158907952054051, 29.830795218852696 ], [ -95.158774952619083, 29.830366219013872 ], [ -95.158680952359106, 29.830003218715003 ], [ -95.158516952170856, 29.82960721860432 ], [ -95.158302952434042, 29.829294218848155 ], [ -95.158005952106677, 29.828821218042325 ], [ -95.157804951868826, 29.828326218048222 ], [ -95.157785951967611, 29.827980218048406 ], [ -95.157798951654826, 29.827947217706342 ], [ -95.157798951513527, 29.827908218308686 ], [ -95.157728952113601, 29.827606217746514 ], [ -95.157684951713691, 29.827193217670207 ], [ -95.157558951318649, 29.826676218003762 ], [ -95.157483951718021, 29.826226217662654 ], [ -95.157476952240643, 29.826143217665379 ], [ -95.157495951320456, 29.826022217890284 ], [ -95.15747095168544, 29.825802218045528 ], [ -95.157275951639647, 29.825296217586697 ], [ -95.157048951324015, 29.824609217666453 ], [ -95.156991951346669, 29.824405217033206 ], [ -95.15704895190683, 29.823944217709666 ], [ -95.156853951406219, 29.823344216863639 ], [ -95.156828951268693, 29.822640217268411 ], [ -95.15677795138167, 29.82230821720686 ], [ -95.156740951033484, 29.822063217384773 ], [ -95.156778950980168, 29.821057216847752 ], [ -95.15680995124238, 29.820881217175117 ], [ -95.156847950851756, 29.820738216944587 ], [ -95.156980951202485, 29.820452216439598 ], [ -95.157062951266937, 29.820237216670495 ], [ -95.157156951068089, 29.820095216677966 ], [ -95.157270951851999, 29.819968216894413 ], [ -95.157421951578556, 29.819864216745348 ], [ -95.157844952087672, 29.819671216563158 ], [ -95.157995951730101, 29.819545216004233 ], [ -95.158266951899265, 29.81921521631029 ], [ -95.158392951824766, 29.818995216306583 ], [ -95.158538952199493, 29.818808216165728 ], [ -95.158654951903571, 29.818716216168291 ], [ -95.159017952246799, 29.818429216244411 ], [ -95.159250951940166, 29.818242216341652 ], [ -95.159409951443521, 29.818122216212338 ], [ -95.15973295160768, 29.817992215843447 ], [ -95.160138951940169, 29.817867216118682 ], [ -95.160432951693494, 29.817663215793591 ], [ -95.160770951933671, 29.817375215465162 ], [ -95.161134951976109, 29.816986216024361 ], [ -95.161441951980791, 29.816879215668923 ], [ -95.161741952357914, 29.816637215383519 ], [ -95.161891952300863, 29.816431216014493 ], [ -95.161988952247142, 29.816245215148847 ], [ -95.162063952452385, 29.815982215731712 ], [ -95.162101952462777, 29.815718215735266 ], [ -95.16215495289326, 29.815364215016142 ], [ -95.162160952179619, 29.815114215153859 ], [ -95.162107952198724, 29.814804215260981 ], [ -95.162012951967412, 29.814483214982374 ], [ -95.161824952612648, 29.813772215429797 ], [ -95.161411952505844, 29.813232214966309 ], [ -95.16137295231934, 29.813189214603366 ], [ -95.160996951718431, 29.8127822149286 ], [ -95.160356951704628, 29.81209121514032 ], [ -95.15972995194555, 29.81132621496079 ], [ -95.159126951156608, 29.810686214167763 ], [ -95.158695951668122, 29.809951213988551 ], [ -95.158413951362533, 29.810027214820053 ], [ -95.15834295080829, 29.810044214642243 ], [ -95.157836951178965, 29.810170214098619 ], [ -95.157360951487263, 29.810295214734538 ], [ -95.157220951265742, 29.810332214324628 ], [ -95.157050951389039, 29.810373214865116 ], [ -95.156542950370408, 29.810497214939641 ], [ -95.156376950472833, 29.8105482148537 ], [ -95.156261950656841, 29.81058321491259 ], [ -95.155097950975005, 29.810940214411296 ], [ -95.154610950579169, 29.81108421508706 ], [ -95.154469950097337, 29.811126214850059 ], [ -95.154291950538422, 29.811180215252868 ], [ -95.154129950573648, 29.811230215049783 ], [ -95.153655949736745, 29.811376214638599 ], [ -95.153462950071557, 29.811437214667762 ], [ -95.152640949667287, 29.811699215060759 ], [ -95.152419949376025, 29.811773215123242 ], [ -95.151832950101223, 29.811970215205438 ], [ -95.151308949290268, 29.81218621525014 ], [ -95.15106094933968, 29.81231121546039 ], [ -95.150911949631976, 29.812390214948703 ], [ -95.150349948840116, 29.812687215182766 ], [ -95.150112949426813, 29.812807215340964 ], [ -95.149631949486078, 29.813032215279165 ], [ -95.149472948724906, 29.813091215362679 ], [ -95.149365949369397, 29.813132215845418 ], [ -95.148871948950799, 29.813318215580427 ], [ -95.148087948556054, 29.813591215493361 ], [ -95.147606949183768, 29.813761215428816 ], [ -95.146951948537563, 29.813991215938628 ], [ -95.145922948655667, 29.814352215997648 ], [ -95.145256948020901, 29.814589215845206 ], [ -95.144945948471502, 29.814699215858294 ], [ -95.144718948500028, 29.814780215640397 ], [ -95.144397947435024, 29.814891215861806 ], [ -95.142793947465719, 29.815452215960789 ], [ -95.142626947669598, 29.815510216078938 ], [ -95.141502946921193, 29.815902216214248 ], [ -95.140834947563235, 29.816143216394881 ], [ -95.139850946738036, 29.81649021674275 ], [ -95.139835946994637, 29.816495216452946 ], [ -95.139326946760193, 29.8166762165168 ], [ -95.138615946929008, 29.816921216854126 ], [ -95.138564946509263, 29.816939216649974 ], [ -95.136983945675539, 29.81750221671447 ], [ -95.135347945385959, 29.81806921716003 ], [ -95.134573945181955, 29.818348217121841 ], [ -95.13431894501629, 29.818436217071852 ], [ -95.133800945637574, 29.818602216654558 ], [ -95.133036945061477, 29.818833216675102 ], [ -95.132272944502404, 29.819057217328538 ], [ -95.131521944582957, 29.819286217031767 ], [ -95.131306944766877, 29.81935821766908 ], [ -95.130800944983918, 29.819527216954604 ], [ -95.130101944441307, 29.819774217403399 ], [ -95.129869944109714, 29.819852217361024 ], [ -95.129410944670397, 29.819996217221917 ], [ -95.128957944340513, 29.820119217487299 ], [ -95.128736944425327, 29.820171217323889 ], [ -95.127934944177923, 29.820344217219482 ], [ -95.127380944233678, 29.820464217624199 ], [ -95.127165943260323, 29.820514218073257 ], [ -95.127210943968493, 29.820970217916493 ], [ -95.127229944216097, 29.821351217780251 ], [ -95.127246944200152, 29.822809217857806 ], [ -95.127267944274607, 29.823784218740272 ], [ -95.127269943893765, 29.82386821859351 ], [ -95.127296943857843, 29.824764218495389 ], [ -95.127341944202982, 29.826697218925936 ], [ -95.127364943729617, 29.827546219377613 ], [ -95.127394943784921, 29.828777219691148 ], [ -95.127397944191699, 29.828915219453354 ], [ -95.127399943829502, 29.829005219472915 ], [ -95.127418943784861, 29.829762219812519 ], [ -95.127445944097715, 29.8307782195124 ], [ -95.127476944325181, 29.832013220253287 ], [ -95.127493944583719, 29.832716219922109 ], [ -95.127507944041639, 29.833280220560539 ], [ -95.127557945015369, 29.8353452203202 ], [ -95.127557944322604, 29.835431220266425 ], [ -95.127569944007519, 29.835740221171093 ], [ -95.127572945019566, 29.835823220536341 ], [ -95.127573944358488, 29.835840221182824 ], [ -95.1275769440917, 29.83593222049284 ], [ -95.127582944467989, 29.836119220629836 ], [ -95.127584944934881, 29.836449221224541 ], [ -95.127561944594717, 29.837471221217292 ], [ -95.127560944745895, 29.837949221249925 ], [ -95.127565944348504, 29.838196221412812 ], [ -95.127588944676063, 29.839197221763239 ], [ -95.127609944892498, 29.840015221755412 ], [ -95.127641945130236, 29.841391222278624 ], [ -95.127691944809641, 29.843142222630011 ], [ -95.127711944680485, 29.844101222179773 ], [ -95.127737945055017, 29.845637222508604 ], [ -95.127750945315, 29.845987223193323 ], [ -95.127788945197139, 29.846566223179448 ], [ -95.12781794558795, 29.846998223331184 ], [ -95.127829945372085, 29.847320222892744 ], [ -95.127835945480555, 29.847561222941138 ], [ -95.127849944962335, 29.848288223781385 ], [ -95.127868944800966, 29.849263223946284 ], [ -95.127875945322359, 29.849646223492392 ], [ -95.127878945069, 29.849859223360077 ], [ -95.127881945563217, 29.850042223720006 ], [ -95.127931945480896, 29.851584223696431 ], [ -95.127944945507835, 29.851987224018682 ], [ -95.127953945233855, 29.852293224502844 ], [ -95.127945945239659, 29.85243422395645 ], [ -95.127947945252075, 29.85249022394148 ], [ -95.127965944896957, 29.852889224184857 ], [ -95.127976944954966, 29.853374223977028 ], [ -95.127985944988325, 29.854048224135941 ], [ -95.127993945035826, 29.854639224396223 ], [ -95.127986944986233, 29.855005224720419 ], [ -95.127957945405868, 29.855605224441057 ], [ -95.127936945925001, 29.856171224602889 ], [ -95.127939945785798, 29.856797224970936 ], [ -95.127949945847263, 29.857347224944149 ], [ -95.127953945915095, 29.857478225680897 ], [ -95.127957945184079, 29.857616225025509 ], [ -95.127960945174621, 29.85769322532294 ], [ -95.127971945854895, 29.858101224964148 ], [ -95.127983945213188, 29.859052225698601 ], [ -95.128008945610517, 29.860356225768037 ], [ -95.12802794586942, 29.861769226329873 ], [ -95.128055945465093, 29.863156226528968 ], [ -95.128062945969845, 29.863534226124031 ], [ -95.128077945799973, 29.864217226596967 ], [ -95.128081945892333, 29.864411226367594 ], [ -95.12809194616969, 29.865697226466086 ], [ -95.128102946484034, 29.866148226853518 ], [ -95.128118946123649, 29.866454226687608 ], [ -95.128182946521719, 29.867928227817188 ], [ -95.128191945791031, 29.868194227267928 ], [ -95.133503946902607, 29.865914227053572 ], [ -95.136445948288909, 29.864651226640717 ], [ -95.136816947995101, 29.864494226780899 ], [ -95.146971950651931, 29.86019522490281 ], [ -95.14760595121659, 29.859928225493046 ], [ -95.150226951730701, 29.858724224628322 ], [ -95.153779952240399, 29.857153224011348 ], [ -95.158848953370111, 29.854947224016836 ], [ -95.163145954660081, 29.853078222700017 ], [ -95.166311954951539, 29.851764222297486 ], [ -95.166377955151347, 29.851742222772984 ], [ -95.166456955554082, 29.851729222750699 ], [ -95.166774955524886, 29.851615222837204 ], [ -95.168199955973549, 29.851030222704541 ], [ -95.174035956950831, 29.848538222060473 ], [ -95.183839959038508, 29.844293220327231 ], [ -95.185172959767257, 29.843714220258899 ], [ -95.185470960091777, 29.84358622033708 ], [ -95.185689960251608, 29.843492220292614 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 960, "Tract": "48201333205", "Area_SqMi": 0.052156720745490957, "total_2009": null, "total_2010": 1, "total_2011": 1, "total_2012": 2, "total_2013": 2, "total_2014": 2, "total_2015": 2, "total_2016": 80, "total_2017": 87, "total_2018": 89, "total_2019": 84, "total_2020": 79, "age1": 14, "age2": 21, "age3": 10, "earn1": 9, "earn2": 17, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 45, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 40, "race2": 3, "race3": 0, "race4": 1, "race5": 0, "race6": 1, "ethnicity1": 20, "ethnicity2": 25, "edu1": 14, "edu2": 4, "edu3": 8, "edu4": 5, "Shape_Length": 6119.3251719219961, "Shape_Area": 1454040.1072645832, "total_2021": 59, "total_2022": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.276914974902951, 29.665563180764138 ], [ -95.276919975257556, 29.665427180962105 ], [ -95.276901975593717, 29.664783180357457 ], [ -95.276896975643552, 29.664406180688207 ], [ -95.276909974764564, 29.664271180549743 ], [ -95.27688897469605, 29.663721180580247 ], [ -95.276882975504279, 29.663592180438833 ], [ -95.276869975444413, 29.663241180132861 ], [ -95.27686297476329, 29.663058179848367 ], [ -95.276848975282917, 29.662700180043913 ], [ -95.276844975202806, 29.662596180121486 ], [ -95.276827975231299, 29.662048179624282 ], [ -95.276814975539764, 29.66158217989517 ], [ -95.276806974677342, 29.661395179770459 ], [ -95.276198974897852, 29.661396179935377 ], [ -95.274922974829934, 29.661425179685033 ], [ -95.274698974466858, 29.661426180313526 ], [ -95.27457797469512, 29.66142917968676 ], [ -95.274456974565382, 29.661433180049997 ], [ -95.272425974119244, 29.661461180308507 ], [ -95.272322973473251, 29.661724180205887 ], [ -95.272182973735156, 29.661923179953227 ], [ -95.271823973745683, 29.662231179947735 ], [ -95.271701974297244, 29.662531180568575 ], [ -95.271685973846232, 29.66282018015696 ], [ -95.271718973498764, 29.66299118044828 ], [ -95.271832974395096, 29.663023180069665 ], [ -95.271853973907, 29.663023180866738 ], [ -95.274941975016304, 29.662972180461836 ], [ -95.274974974950041, 29.664225180281015 ], [ -95.275017974904785, 29.665593180935691 ], [ -95.276233974623352, 29.665575181199987 ], [ -95.276914974902951, 29.665563180764138 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 961, "Tract": "48201253202", "Area_SqMi": 7.3856709027183118, "total_2009": 4777, "total_2010": 4712, "total_2011": 5140, "total_2012": 4603, "total_2013": 4725, "total_2014": 8209, "total_2015": 9481, "total_2016": 9501, "total_2017": 9554, "total_2018": 10047, "total_2019": 9761, "total_2020": 9026, "age1": 2516, "age2": 4893, "age3": 1891, "earn1": 1563, "earn2": 3060, "earn3": 4677, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 274, "naics_s05": 1079, "naics_s06": 26, "naics_s07": 1670, "naics_s08": 34, "naics_s09": 60, "naics_s10": 108, "naics_s11": 72, "naics_s12": 161, "naics_s13": 0, "naics_s14": 88, "naics_s15": 3989, "naics_s16": 187, "naics_s17": 23, "naics_s18": 1294, "naics_s19": 234, "naics_s20": 1, "race1": 7334, "race2": 1468, "race3": 80, "race4": 292, "race5": 13, "race6": 113, "ethnicity1": 6019, "ethnicity2": 3281, "edu1": 1399, "edu2": 1729, "edu3": 2063, "edu4": 1593, "Shape_Length": 74756.653303492523, "Shape_Area": 205899864.06570348, "total_2021": 8750, "total_2022": 9300 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.050645922789158, 29.78988021362148 ], [ -95.050790922684484, 29.789787214318181 ], [ -95.049920922618767, 29.789565214325624 ], [ -95.049779922759555, 29.789522213800929 ], [ -95.049340922335233, 29.789389213562924 ], [ -95.047719922053219, 29.788895214058936 ], [ -95.04690392163873, 29.78864721400587 ], [ -95.046190921550547, 29.788420213788239 ], [ -95.045245920929588, 29.788120213967638 ], [ -95.044854921136249, 29.787996213382108 ], [ -95.043845920467632, 29.787619213886309 ], [ -95.043779921029071, 29.787595213523012 ], [ -95.043325920267904, 29.78740521336567 ], [ -95.042938920390299, 29.787242213829838 ], [ -95.041717920631058, 29.786731213880604 ], [ -95.039840919238557, 29.785948213753954 ], [ -95.039696919989993, 29.786169213742603 ], [ -95.039623920139078, 29.786280213582245 ], [ -95.039487919784321, 29.786484213657076 ], [ -95.039436919671331, 29.786559213970111 ], [ -95.039387919675647, 29.786610213476944 ], [ -95.039314919364145, 29.786645213952347 ], [ -95.039198919497409, 29.78665921327935 ], [ -95.038942919281538, 29.786675213503141 ], [ -95.038749919017178, 29.786688214047278 ], [ -95.038374919337826, 29.786705214151564 ], [ -95.038234919601749, 29.786717214110762 ], [ -95.038089918871833, 29.786735213766889 ], [ -95.037789919763313, 29.786740213855943 ], [ -95.037625919423292, 29.786790214155076 ], [ -95.037470918758501, 29.786761214090376 ], [ -95.037307918910983, 29.78677121415399 ], [ -95.036976919037258, 29.786779213720898 ], [ -95.036278918756537, 29.786823214032498 ], [ -95.036097919163524, 29.786828213514152 ], [ -95.035530918611613, 29.786862213722557 ], [ -95.035339918296174, 29.786869213839182 ], [ -95.035141918804527, 29.786883214129769 ], [ -95.034946918759914, 29.786886213564973 ], [ -95.034749918586456, 29.78689721413884 ], [ -95.034607917973332, 29.786910213661127 ], [ -95.03395591830477, 29.786944213668985 ], [ -95.033324918515305, 29.786968213977858 ], [ -95.032944917759608, 29.786995214027215 ], [ -95.032618917719006, 29.787002214305335 ], [ -95.032454918234293, 29.787000213929769 ], [ -95.032134918096688, 29.786986214073167 ], [ -95.031892917480633, 29.786966213997545 ], [ -95.03161991802105, 29.786931213707188 ], [ -95.030691917765836, 29.786767214176617 ], [ -95.03034091719212, 29.786716213674417 ], [ -95.029555917507992, 29.786590214264326 ], [ -95.029261916915345, 29.786544214407236 ], [ -95.027738917090815, 29.786299214349469 ], [ -95.027500917102202, 29.786261213957285 ], [ -95.025242916107374, 29.785890214000172 ], [ -95.02485391565385, 29.785821214067404 ], [ -95.024664915478354, 29.785783213919601 ], [ -95.024466915806173, 29.785760213796632 ], [ -95.024266916089232, 29.785729214389484 ], [ -95.023668915222061, 29.785621214018487 ], [ -95.02307691560658, 29.785531213761924 ], [ -95.022885915440696, 29.785507213812565 ], [ -95.021553915072289, 29.785286213781106 ], [ -95.020449914276398, 29.785112214272697 ], [ -95.019763914244223, 29.785004213794839 ], [ -95.019597914941784, 29.784970214312843 ], [ -95.019268914547879, 29.784926213966795 ], [ -95.017696913716392, 29.784682213853767 ], [ -95.017293914026297, 29.784618213853591 ], [ -95.017170914086861, 29.784603213714291 ], [ -95.016789914151019, 29.784544213612218 ], [ -95.016538913625098, 29.784505214000696 ], [ -95.014660913209994, 29.784205214198103 ], [ -95.014485912801362, 29.784191213672347 ], [ -95.013884913068523, 29.784097214211702 ], [ -95.01314591294971, 29.783980214026496 ], [ -95.012414913063083, 29.783863213940812 ], [ -95.01154091210509, 29.783727213980253 ], [ -95.01126791254741, 29.783684214001234 ], [ -95.010952911857217, 29.78363521392841 ], [ -95.009611912096943, 29.783424213728242 ], [ -95.009391911320748, 29.783384214259179 ], [ -95.00935391226372, 29.783379214475421 ], [ -95.009218911275809, 29.783360214220135 ], [ -95.008416911136905, 29.783235214405043 ], [ -95.00821291114373, 29.78319821363468 ], [ -95.008011911114778, 29.783171214123094 ], [ -95.007386910743421, 29.783071214414917 ], [ -95.007174911001002, 29.783042214034719 ], [ -95.006963911601289, 29.782998214105216 ], [ -95.006308910598065, 29.782935213870985 ], [ -95.006026910720109, 29.782862214461218 ], [ -95.005778911156014, 29.782820213614745 ], [ -95.005751911214773, 29.782815213817678 ], [ -95.005739910351949, 29.782813214035333 ], [ -95.005686910657744, 29.782806214285337 ], [ -95.005547911284822, 29.782788214141089 ], [ -95.004969910416776, 29.782688213617824 ], [ -95.003019910552524, 29.78237521365768 ], [ -95.002363910367052, 29.782271214349191 ], [ -95.002155909618082, 29.782238214082721 ], [ -95.001867909972646, 29.782191213859445 ], [ -95.00177590947392, 29.782177213616308 ], [ -95.000340909428317, 29.781951213596233 ], [ -94.999997909253054, 29.781881214065113 ], [ -94.999655909332546, 29.781833213828602 ], [ -94.998993908928185, 29.781717214284363 ], [ -94.998269908765167, 29.781605214465721 ], [ -94.997378908516623, 29.781471214185199 ], [ -94.996441908760232, 29.781315213890561 ], [ -94.996012907938322, 29.781247214464113 ], [ -94.995656908282498, 29.781191214212463 ], [ -94.99524890826946, 29.781127214311024 ], [ -94.995014908499968, 29.781094213988805 ], [ -94.994680907834223, 29.781033213683084 ], [ -94.993701908007708, 29.780877214290626 ], [ -94.993447907817341, 29.780832214189029 ], [ -94.991139907132151, 29.78044821382576 ], [ -94.990748906951893, 29.780383213608346 ], [ -94.990094906306723, 29.780275214056505 ], [ -94.989601906934439, 29.780200214400026 ], [ -94.989238906692918, 29.780149214343719 ], [ -94.988135906638092, 29.779967214125801 ], [ -94.987219906045851, 29.779801213944182 ], [ -94.986911906040589, 29.779742213833934 ], [ -94.986891905382492, 29.779738214207953 ], [ -94.985953905740132, 29.779561214388512 ], [ -94.98588490595796, 29.779548214315895 ], [ -94.985433905656947, 29.779459214052046 ], [ -94.984804904851345, 29.779338214398539 ], [ -94.984411905327192, 29.779259214081176 ], [ -94.983595904756129, 29.779095213788587 ], [ -94.982729904792564, 29.778927214382495 ], [ -94.982613904556359, 29.778903213633313 ], [ -94.982206904626253, 29.778822214427311 ], [ -94.981882904420814, 29.778757214225752 ], [ -94.981421904610912, 29.778668213671352 ], [ -94.980600903909135, 29.778507213584135 ], [ -94.980334904476507, 29.778456214095382 ], [ -94.979856904022142, 29.7783622141196 ], [ -94.979505903504887, 29.778294214316954 ], [ -94.979102903603305, 29.778224213729299 ], [ -94.978777903437688, 29.778176213695879 ], [ -94.978566903467367, 29.77813621359903 ], [ -94.978157903595957, 29.77805721371573 ], [ -94.97760890332313, 29.77795921416611 ], [ -94.977034902855536, 29.777839213536733 ], [ -94.976410902936507, 29.777720214355256 ], [ -94.975332902432527, 29.777513213954634 ], [ -94.975214902295406, 29.777493213572392 ], [ -94.974869902963974, 29.777434214293432 ], [ -94.974478903001113, 29.777419214143173 ], [ -94.973892902003854, 29.777430213824569 ], [ -94.973291901927325, 29.777453213861257 ], [ -94.972918902564842, 29.777466213879546 ], [ -94.971545901361594, 29.7775122142443 ], [ -94.971292901435774, 29.777521213951935 ], [ -94.970187901555065, 29.777558213856036 ], [ -94.967103900302504, 29.777613214527904 ], [ -94.966295900109984, 29.777787214205944 ], [ -94.965801900602671, 29.777919214479937 ], [ -94.964961900342743, 29.77817721470829 ], [ -94.96411290043568, 29.778320214522182 ], [ -94.962944899289738, 29.778453214878702 ], [ -94.961960899772208, 29.77860021491535 ], [ -94.961920898883747, 29.778606214554024 ], [ -94.961788898978511, 29.778628214942298 ], [ -94.961722899004528, 29.778639215087615 ], [ -94.961708898938554, 29.778641214422418 ], [ -94.961526899384594, 29.77867221512625 ], [ -94.961175899665349, 29.778731214989321 ], [ -94.960992898712405, 29.778767215004958 ], [ -94.960558898596688, 29.778840215101184 ], [ -94.960233899256068, 29.778900214720423 ], [ -94.956293897611957, 29.779576215228321 ], [ -94.956110898120954, 29.779600215461571 ], [ -94.956038897918845, 29.77960421499213 ], [ -94.955817897887627, 29.779650215037947 ], [ -94.955704897578343, 29.77966221509331 ], [ -94.955532898236072, 29.779699215039219 ], [ -94.955386898015874, 29.779723215111932 ], [ -94.955152897610219, 29.779759215370248 ], [ -94.955049898100469, 29.77977421510143 ], [ -94.954934897508039, 29.779791215048103 ], [ -94.954867897245478, 29.779799215175533 ], [ -94.954779897722332, 29.779812215561368 ], [ -94.954132897789364, 29.779909214814104 ], [ -94.954017897889784, 29.779926214906478 ], [ -94.953914897648971, 29.779942214921412 ], [ -94.953023896890031, 29.780081214989174 ], [ -94.952906896824643, 29.78009921539083 ], [ -94.952538897122082, 29.780157215499781 ], [ -94.95234589708862, 29.780188215606174 ], [ -94.951830896431403, 29.780269215151463 ], [ -94.951454896918861, 29.780335215639273 ], [ -94.950844896454498, 29.780431215323187 ], [ -94.949817896781695, 29.780589215781664 ], [ -94.949503896485709, 29.780639215235087 ], [ -94.949256895953781, 29.780679215191213 ], [ -94.948136895751091, 29.780856215305167 ], [ -94.947585895686998, 29.780944215339883 ], [ -94.946583895113037, 29.781104215645779 ], [ -94.946747895566133, 29.781289216002715 ], [ -94.94731589599111, 29.781981216030449 ], [ -94.947827895941359, 29.782623215624955 ], [ -94.948427896310164, 29.78336521612216 ], [ -94.949397896384937, 29.784566216451193 ], [ -94.949708896455505, 29.784952216774393 ], [ -94.950808897159405, 29.786318216555305 ], [ -94.952589897827551, 29.788515217400708 ], [ -94.953411897930025, 29.78952221691987 ], [ -94.954857898509644, 29.791324217458612 ], [ -94.955563898480307, 29.792187217925584 ], [ -94.955680898375263, 29.792334217403091 ], [ -94.955788898319199, 29.792412217838653 ], [ -94.955911898744972, 29.792471218057432 ], [ -94.956052898779106, 29.792795217543723 ], [ -94.95624789805845, 29.793027217786179 ], [ -94.956722898232627, 29.793623217857547 ], [ -94.957421898937227, 29.794485217683043 ], [ -94.957576898663532, 29.794678217813193 ], [ -94.957893899397703, 29.795065218510409 ], [ -94.959011899292165, 29.796447218813459 ], [ -94.959092899316985, 29.796537218763575 ], [ -94.959162899069369, 29.796634218347339 ], [ -94.959228899116653, 29.796715218642795 ], [ -94.959302899138535, 29.796796218134176 ], [ -94.959498899951384, 29.797034218492286 ], [ -94.959545899290831, 29.797104218937161 ], [ -94.95959489931424, 29.797164218401793 ], [ -94.959667899295084, 29.797237218847027 ], [ -94.95982490005629, 29.797408218232508 ], [ -94.959885899626215, 29.797699218377382 ], [ -94.959888899419568, 29.797787218725478 ], [ -94.959908899837131, 29.797879218867084 ], [ -94.959945899459214, 29.797980219140847 ], [ -94.959949899925874, 29.798005218899256 ], [ -94.9599678995136, 29.798119218571301 ], [ -94.960155900203873, 29.799013219273917 ], [ -94.960201899617815, 29.799228218595584 ], [ -94.960230900077136, 29.799361218813424 ], [ -94.960271899857787, 29.799549219311899 ], [ -94.960453899791219, 29.800387218766954 ], [ -94.960743900342749, 29.801719219525477 ], [ -94.960922900276287, 29.802589219357557 ], [ -94.961151900053679, 29.803674219507947 ], [ -94.961549900545521, 29.805557220161855 ], [ -94.961598900996734, 29.805785220072593 ], [ -94.961635900950355, 29.80595422066849 ], [ -94.962080901140766, 29.808023220642987 ], [ -94.962087901200931, 29.808083221119762 ], [ -94.962142900887685, 29.808080220511947 ], [ -94.962262900443363, 29.808060220771655 ], [ -94.96321590109946, 29.807902221016118 ], [ -94.964141900809466, 29.807748220563564 ], [ -94.965169901841819, 29.807578220524739 ], [ -94.965200901254249, 29.80776922086751 ], [ -94.965211901657327, 29.807813220112216 ], [ -94.965254901975626, 29.808055220863857 ], [ -94.966099901597403, 29.807929220685121 ], [ -94.968534901896092, 29.807455219904838 ], [ -94.969364902437974, 29.807294220617383 ], [ -94.970464903062975, 29.807055219877203 ], [ -94.97233390368315, 29.806650219863418 ], [ -94.973209903112519, 29.806460219570756 ], [ -94.974188903337406, 29.806248219526321 ], [ -94.975734903791022, 29.805912220064055 ], [ -94.977063904445814, 29.805624219795384 ], [ -94.977150904980135, 29.805605219751676 ], [ -94.978578904935347, 29.805284219925859 ], [ -94.979085905459087, 29.805196219995711 ], [ -94.979583904595643, 29.805109219273206 ], [ -94.980984905233768, 29.804889219496385 ], [ -94.981574905418299, 29.804786219667555 ], [ -94.981742906084023, 29.804756219143691 ], [ -94.981899905974302, 29.80473221966394 ], [ -94.983492906063944, 29.804491219537265 ], [ -94.985126906142767, 29.804243219090761 ], [ -94.987355906926879, 29.80389321923537 ], [ -94.988243907009263, 29.803753219367412 ], [ -94.989901908162736, 29.803494218862788 ], [ -94.991852908229816, 29.803188218346467 ], [ -94.99440290874179, 29.802788218520426 ], [ -94.997379909317559, 29.80231821838532 ], [ -94.997593909725751, 29.802284218517606 ], [ -94.99781490932844, 29.802251218099546 ], [ -94.997972910066778, 29.802227218159587 ], [ -95.000311909938233, 29.801840218294757 ], [ -95.00305491122181, 29.80141821759824 ], [ -95.004328911643668, 29.801222218195932 ], [ -95.00476591149058, 29.801154217971661 ], [ -95.00867691226054, 29.800543217292748 ], [ -95.009901912548699, 29.800356217133274 ], [ -95.011013912561523, 29.800224217402093 ], [ -95.011220912885733, 29.800212217842319 ], [ -95.011907913304285, 29.800172217406349 ], [ -95.013016913815747, 29.800140217447499 ], [ -95.013582913457157, 29.800123217713015 ], [ -95.015020913718629, 29.800094217524183 ], [ -95.016699914600139, 29.80010121755166 ], [ -95.016908914267816, 29.800096217080547 ], [ -95.017101914238111, 29.800092216855166 ], [ -95.018683915418947, 29.800043217530074 ], [ -95.020498915453317, 29.799986217466017 ], [ -95.021075915141694, 29.799968217306372 ], [ -95.023380915918111, 29.799935217016753 ], [ -95.023830916252521, 29.799923216647493 ], [ -95.023994916795246, 29.79991821718432 ], [ -95.024529916910126, 29.799895217199687 ], [ -95.025080916126242, 29.799841217213498 ], [ -95.025623916245479, 29.799756216843665 ], [ -95.026243917047836, 29.799631217139591 ], [ -95.026723917213502, 29.799505217087557 ], [ -95.027216916729103, 29.799352216846685 ], [ -95.02785591747886, 29.799128216717548 ], [ -95.028551917904608, 29.798868216595409 ], [ -95.02858491770661, 29.798856216523063 ], [ -95.028660917237389, 29.798825216673176 ], [ -95.02870491771813, 29.798811216135938 ], [ -95.029383917927674, 29.798558216221373 ], [ -95.029692917660299, 29.798443216144729 ], [ -95.031695918256332, 29.797698216626788 ], [ -95.031883917818774, 29.797628216605048 ], [ -95.032202918744161, 29.797509216230029 ], [ -95.035446919418391, 29.79630121624314 ], [ -95.040468919839313, 29.794426215261893 ], [ -95.041748920636834, 29.79395021508692 ], [ -95.045272921767847, 29.792639214631794 ], [ -95.045383921471668, 29.792597214661303 ], [ -95.046103921410676, 29.792330214567667 ], [ -95.047285921464777, 29.791907214473248 ], [ -95.048064921834367, 29.791597214261127 ], [ -95.048176921941618, 29.791553213978744 ], [ -95.049159922404513, 29.791163213839443 ], [ -95.049447922186033, 29.791082214548229 ], [ -95.04931692205777, 29.79099121453871 ], [ -95.049124922245568, 29.790858214596167 ], [ -95.049436922925466, 29.7907032139771 ], [ -95.049929922708145, 29.790388214167763 ], [ -95.050157922356775, 29.790235213806579 ], [ -95.050445922452752, 29.7900512135786 ], [ -95.050645922789158, 29.78988021362148 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 962, "Tract": "48201452703", "Area_SqMi": 0.54828654091306772, "total_2009": 799, "total_2010": 758, "total_2011": 855, "total_2012": 941, "total_2013": 903, "total_2014": 882, "total_2015": 1041, "total_2016": 1043, "total_2017": 1067, "total_2018": 999, "total_2019": 992, "total_2020": 678, "age1": 328, "age2": 658, "age3": 397, "earn1": 552, "earn2": 642, "earn3": 189, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 342, "naics_s06": 1, "naics_s07": 240, "naics_s08": 3, "naics_s09": 0, "naics_s10": 28, "naics_s11": 11, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 11, "naics_s16": 396, "naics_s17": 10, "naics_s18": 318, "naics_s19": 21, "naics_s20": 0, "race1": 605, "race2": 361, "race3": 10, "race4": 381, "race5": 5, "race6": 21, "ethnicity1": 1021, "ethnicity2": 362, "edu1": 278, "edu2": 264, "edu3": 254, "edu4": 259, "Shape_Length": 16264.272174029942, "Shape_Area": 15285290.35886303, "total_2021": 1290, "total_2022": 1383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.643978070790382, 29.703966176547393 ], [ -95.643923070951857, 29.702180175789991 ], [ -95.643883070438093, 29.700858175201528 ], [ -95.643876070231158, 29.700617175900895 ], [ -95.643840070847503, 29.699441175113122 ], [ -95.643823070217664, 29.696996174706388 ], [ -95.643820070108831, 29.696491174527903 ], [ -95.643814070932066, 29.695506174740309 ], [ -95.643814070509791, 29.695418174777011 ], [ -95.643758070350884, 29.693816174391255 ], [ -95.643730070604533, 29.692983174255318 ], [ -95.643741070185897, 29.692369173820239 ], [ -95.643748069984269, 29.692014173727092 ], [ -95.643741070651544, 29.691164173361763 ], [ -95.643709070298414, 29.690373173277429 ], [ -95.643681070499525, 29.689691173551466 ], [ -95.642933069695616, 29.689699173123351 ], [ -95.64269806951522, 29.689707173634829 ], [ -95.642330069400742, 29.68973817372353 ], [ -95.642135070188488, 29.689760173097536 ], [ -95.642014069642642, 29.689775173172173 ], [ -95.641730069818436, 29.689823173132467 ], [ -95.641568069246233, 29.689857173711697 ], [ -95.641073069516651, 29.689962173646595 ], [ -95.64083806932004, 29.690010173274803 ], [ -95.640528069226221, 29.690060173984246 ], [ -95.640214069225536, 29.690098173465433 ], [ -95.639992068943883, 29.690115173230929 ], [ -95.639563069473326, 29.690132173563217 ], [ -95.6393920690345, 29.690130173895092 ], [ -95.638347068799959, 29.690145173788373 ], [ -95.638175068671217, 29.690143173645918 ], [ -95.637761069091752, 29.690149173570358 ], [ -95.636352068506937, 29.69016217378843 ], [ -95.634936068104622, 29.69017217342569 ], [ -95.634816067604376, 29.690179174171472 ], [ -95.634715067846145, 29.690177173891563 ], [ -95.634345067794825, 29.690181173943035 ], [ -95.634277067413265, 29.690182173552632 ], [ -95.63427906738761, 29.690346173464249 ], [ -95.634299067956903, 29.69213017382453 ], [ -95.634299068106145, 29.692150174127747 ], [ -95.634310068362396, 29.693084174193526 ], [ -95.634346067956685, 29.696206175200341 ], [ -95.63436506802411, 29.6981481757423 ], [ -95.634388068350816, 29.70039917588544 ], [ -95.634402068361354, 29.701783176370153 ], [ -95.634402068651383, 29.70268817623726 ], [ -95.634392068642043, 29.703498176623732 ], [ -95.634390068359167, 29.704008176661073 ], [ -95.635228068516668, 29.704033176931269 ], [ -95.636146069047172, 29.704043176934555 ], [ -95.636991068774478, 29.704035176149052 ], [ -95.637364069471403, 29.704031176092144 ], [ -95.638020068957104, 29.704025176611058 ], [ -95.638073069326964, 29.704025176628601 ], [ -95.638345069261774, 29.704022176649175 ], [ -95.639223069560316, 29.704014176875624 ], [ -95.639988069813512, 29.70400917631666 ], [ -95.641026070257539, 29.703995176015926 ], [ -95.64227007069303, 29.703982176038579 ], [ -95.643978070790382, 29.703966176547393 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 963, "Tract": "48201422405", "Area_SqMi": 0.081172431346553331, "total_2009": 120, "total_2010": 135, "total_2011": 193, "total_2012": 197, "total_2013": 180, "total_2014": 170, "total_2015": 150, "total_2016": 169, "total_2017": 160, "total_2018": 186, "total_2019": 224, "total_2020": 225, "age1": 97, "age2": 109, "age3": 37, "earn1": 82, "earn2": 95, "earn3": 66, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 62, "naics_s08": 0, "naics_s09": 0, "naics_s10": 47, "naics_s11": 13, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 25, "naics_s17": 18, "naics_s18": 9, "naics_s19": 69, "naics_s20": 0, "race1": 130, "race2": 78, "race3": 2, "race4": 27, "race5": 0, "race6": 6, "ethnicity1": 147, "ethnicity2": 96, "edu1": 40, "edu2": 40, "edu3": 44, "edu4": 22, "Shape_Length": 6855.1084128562197, "Shape_Area": 2262948.4579371903, "total_2021": 226, "total_2022": 243 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508524034973092, 29.66279417274276 ], [ -95.508489034690854, 29.662208172722632 ], [ -95.508496033941043, 29.661692172405871 ], [ -95.508472034348088, 29.661029171772679 ], [ -95.508475034275534, 29.660616172175452 ], [ -95.508474033999676, 29.660400171665927 ], [ -95.508466034013708, 29.660015171687302 ], [ -95.508450034531563, 29.659194171443048 ], [ -95.50844703445145, 29.658729171884978 ], [ -95.508443034773549, 29.658386171159467 ], [ -95.50844003468174, 29.658159171827315 ], [ -95.508435033852692, 29.657742171177091 ], [ -95.508428033868626, 29.657555171689051 ], [ -95.508418033991845, 29.656596170988376 ], [ -95.508433034030759, 29.656023170839511 ], [ -95.507677033839258, 29.65602217115849 ], [ -95.507113033593669, 29.65602317063135 ], [ -95.506448033181911, 29.65603417080392 ], [ -95.505980033951488, 29.656034171387191 ], [ -95.505581033666573, 29.656034170793792 ], [ -95.50558403391922, 29.65657217094321 ], [ -95.505586033140773, 29.656855171628017 ], [ -95.505611033005735, 29.657141171089947 ], [ -95.505636033846059, 29.657663171679925 ], [ -95.505592034002973, 29.65793817176171 ], [ -95.50562903393508, 29.658900171518773 ], [ -95.505623033286781, 29.659136172081219 ], [ -95.505660033211782, 29.660032171837678 ], [ -95.505658034147757, 29.662836172431742 ], [ -95.505660034020892, 29.663089172847123 ], [ -95.506044034151358, 29.663044172535646 ], [ -95.506912033558507, 29.663034172781202 ], [ -95.507920034311582, 29.662837172010416 ], [ -95.508411034121906, 29.662807172692037 ], [ -95.508524034973092, 29.66279417274276 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 964, "Tract": "48201253101", "Area_SqMi": 1.1189383263847836, "total_2009": 290, "total_2010": 369, "total_2011": 439, "total_2012": 690, "total_2013": 730, "total_2014": 786, "total_2015": 769, "total_2016": 824, "total_2017": 853, "total_2018": 894, "total_2019": 849, "total_2020": 851, "age1": 350, "age2": 371, "age3": 151, "earn1": 313, "earn2": 306, "earn3": 253, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 4, "naics_s07": 327, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 2, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 69, "naics_s17": 0, "naics_s18": 451, "naics_s19": 0, "naics_s20": 0, "race1": 676, "race2": 144, "race3": 4, "race4": 38, "race5": 2, "race6": 8, "ethnicity1": 567, "ethnicity2": 305, "edu1": 143, "edu2": 131, "edu3": 157, "edu4": 91, "Shape_Length": 22396.677429128002, "Shape_Area": 31194085.457522549, "total_2021": 811, "total_2022": 872 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.999360910617625, 29.820071221496171 ], [ -94.999364910320296, 29.819859222135179 ], [ -94.999349910434205, 29.818152221824693 ], [ -94.999340910270206, 29.81748022173328 ], [ -94.999336910275915, 29.816959221223538 ], [ -94.999310910649456, 29.815161221193591 ], [ -94.999279910598176, 29.812725220327991 ], [ -94.99926091082871, 29.810928220382873 ], [ -94.999242910197452, 29.81009322013572 ], [ -94.999251910727452, 29.809388219460303 ], [ -94.999267910604232, 29.809185219574609 ], [ -94.999266909886359, 29.809155219405859 ], [ -94.999261910116616, 29.809002219745619 ], [ -94.999246910062411, 29.808830219406424 ], [ -94.999236910165934, 29.808486219787678 ], [ -94.999213910428836, 29.808312219403462 ], [ -94.999201910552856, 29.808241219473292 ], [ -94.999132910715559, 29.807940219816658 ], [ -94.999063909985779, 29.807703219447781 ], [ -94.999031910093137, 29.807573219292596 ], [ -94.998939910529998, 29.807261219082559 ], [ -94.998607910532158, 29.80605321912974 ], [ -94.998404910441238, 29.805297219223128 ], [ -94.99814390968524, 29.804376218767125 ], [ -94.998083909510115, 29.804149218746208 ], [ -94.997946909984208, 29.803625218313591 ], [ -94.997677909154277, 29.802600218096039 ], [ -94.997658909349127, 29.802512218614002 ], [ -94.99762691008452, 29.802386217924163 ], [ -94.997593909725751, 29.802284218517606 ], [ -94.997379909317559, 29.80231821838532 ], [ -94.99440290874179, 29.802788218520426 ], [ -94.991852908229816, 29.803188218346467 ], [ -94.989901908162736, 29.803494218862788 ], [ -94.988243907009263, 29.803753219367412 ], [ -94.987355906926879, 29.80389321923537 ], [ -94.985126906142767, 29.804243219090761 ], [ -94.983492906063944, 29.804491219537265 ], [ -94.981899905974302, 29.80473221966394 ], [ -94.981742906084023, 29.804756219143691 ], [ -94.981778905392531, 29.805011219207628 ], [ -94.981807905225949, 29.805106219460292 ], [ -94.981934905691475, 29.805592219135921 ], [ -94.981948905928931, 29.805727219356339 ], [ -94.981957905410908, 29.805822219463181 ], [ -94.981979905973915, 29.80589122000573 ], [ -94.982013905797857, 29.806071219761666 ], [ -94.982044906171481, 29.806234219230504 ], [ -94.982322905864919, 29.807696220229012 ], [ -94.982364905588625, 29.807918219935964 ], [ -94.982514905635199, 29.808706220148601 ], [ -94.982531906018082, 29.808795220075094 ], [ -94.982600905644048, 29.809212220576999 ], [ -94.982632905883619, 29.809404219865325 ], [ -94.98304190623297, 29.811866220536597 ], [ -94.983064906337006, 29.812006220413785 ], [ -94.983792906286851, 29.816031221412985 ], [ -94.983932906718834, 29.816806221624528 ], [ -94.984070906788332, 29.81756822152235 ], [ -94.984118907081807, 29.817833222337836 ], [ -94.984133906409156, 29.817917221949447 ], [ -94.984744906644963, 29.821288222395921 ], [ -94.985533907175238, 29.821154222281738 ], [ -94.985695906944557, 29.82112722228667 ], [ -94.985747907363987, 29.821118222559576 ], [ -94.986903908089829, 29.820917222446987 ], [ -94.98730790736802, 29.820847222673322 ], [ -94.987671908038408, 29.820783222241648 ], [ -94.988871907976574, 29.820579222378939 ], [ -94.988961908623978, 29.820564222121931 ], [ -94.989909908564698, 29.820395222658767 ], [ -94.990118908095639, 29.820359222648094 ], [ -94.990411908244042, 29.82030922244131 ], [ -94.990733909075203, 29.820257222649744 ], [ -94.990849908855949, 29.820239222453548 ], [ -94.99097090901229, 29.820225221898777 ], [ -94.991034908236585, 29.820217222607429 ], [ -94.991231908473281, 29.820201222611438 ], [ -94.991442908736659, 29.82019222194533 ], [ -94.993898909385436, 29.820151221790848 ], [ -94.99448090989128, 29.820142222440911 ], [ -94.995519910135684, 29.820125221961753 ], [ -94.996355909567654, 29.820112222399128 ], [ -94.996619909701352, 29.820108222250905 ], [ -94.997334910447393, 29.8200912224315 ], [ -94.997629910920381, 29.820093221965504 ], [ -94.998547910617518, 29.820079221785189 ], [ -94.998884910231268, 29.820076221485856 ], [ -94.999360910617625, 29.820071221496171 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 965, "Tract": "48201314004", "Area_SqMi": 0.07216471192900073, "total_2009": 50, "total_2010": 59, "total_2011": 63, "total_2012": 48, "total_2013": 55, "total_2014": 55, "total_2015": 70, "total_2016": 49, "total_2017": 48, "total_2018": 48, "total_2019": 45, "total_2020": 46, "age1": 9, "age2": 63, "age3": 11, "earn1": 2, "earn2": 0, "earn3": 81, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 80, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 3, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 47, "race2": 8, "race3": 0, "race4": 23, "race5": 3, "race6": 2, "ethnicity1": 70, "ethnicity2": 13, "edu1": 5, "edu2": 9, "edu3": 18, "edu4": 42, "Shape_Length": 5963.0015817871044, "Shape_Area": 2011828.6574416852, "total_2021": 55, "total_2022": 83 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.400067007412432, 29.688934181206271 ], [ -95.400042007613763, 29.688053181684285 ], [ -95.40001800738051, 29.686720180608006 ], [ -95.400013007847392, 29.686416180663812 ], [ -95.399991007628515, 29.685280180766608 ], [ -95.397380006824335, 29.685300180901606 ], [ -95.397069006553295, 29.685303180987994 ], [ -95.39641700648194, 29.685309180405397 ], [ -95.395533007066291, 29.685315180639339 ], [ -95.395574006865488, 29.686442180727088 ], [ -95.395575006368503, 29.686469181466322 ], [ -95.395556006377845, 29.686871181451316 ], [ -95.395473006488473, 29.687195181323723 ], [ -95.395401006353126, 29.687348181441141 ], [ -95.395281006313724, 29.68758418138475 ], [ -95.395129007016195, 29.687840181518929 ], [ -95.395035006416961, 29.687999181390271 ], [ -95.394761006082902, 29.688467181519229 ], [ -95.394428006729953, 29.689016182040135 ], [ -95.396996006768035, 29.6889631819204 ], [ -95.398110007610001, 29.68895218145429 ], [ -95.398798007423125, 29.688939181582167 ], [ -95.400067007412432, 29.688934181206271 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 966, "Tract": "48201252902", "Area_SqMi": 3.9734051566425501, "total_2009": 875, "total_2010": 778, "total_2011": 891, "total_2012": 928, "total_2013": 983, "total_2014": 920, "total_2015": 940, "total_2016": 1068, "total_2017": 1170, "total_2018": 975, "total_2019": 1182, "total_2020": 1276, "age1": 291, "age2": 833, "age3": 348, "earn1": 189, "earn2": 266, "earn3": 1017, "naics_s01": 0, "naics_s02": 0, "naics_s03": 50, "naics_s04": 104, "naics_s05": 650, "naics_s06": 182, "naics_s07": 171, "naics_s08": 118, "naics_s09": 28, "naics_s10": 5, "naics_s11": 1, "naics_s12": 19, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 33, "naics_s17": 0, "naics_s18": 85, "naics_s19": 23, "naics_s20": 0, "race1": 1131, "race2": 258, "race3": 13, "race4": 51, "race5": 1, "race6": 18, "ethnicity1": 972, "ethnicity2": 500, "edu1": 272, "edu2": 351, "edu3": 361, "edu4": 197, "Shape_Length": 50846.73690881965, "Shape_Area": 110771735.21630299, "total_2021": 1344, "total_2022": 1472 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.057883926197803, 29.835576223267203 ], [ -95.057896927070544, 29.83523322345529 ], [ -95.057877926206174, 29.834643222551115 ], [ -95.057849926494896, 29.83420122323729 ], [ -95.057816926269439, 29.833911223032036 ], [ -95.057743926080207, 29.833503222383371 ], [ -95.057615926724012, 29.832933222751471 ], [ -95.057593926569311, 29.832822222229201 ], [ -95.057556926596902, 29.83261122268064 ], [ -95.057539926761095, 29.832485222324227 ], [ -95.057528926035118, 29.832353222804198 ], [ -95.057525925990944, 29.832083222332859 ], [ -95.057539926061352, 29.831487222017611 ], [ -95.057565926713153, 29.830667221755167 ], [ -95.057568926351436, 29.830515222273601 ], [ -95.057563926502084, 29.829952221876418 ], [ -95.057559926659252, 29.829723221627532 ], [ -95.057528926384876, 29.828429222094396 ], [ -95.057522926137509, 29.828240221414404 ], [ -95.057498926598072, 29.827444221497018 ], [ -95.057487926511584, 29.826993221508229 ], [ -95.057439925827794, 29.824912221362201 ], [ -95.057398925990356, 29.823603220350527 ], [ -95.057389926118759, 29.823475220580896 ], [ -95.057378925803889, 29.823080220754601 ], [ -95.057357925348569, 29.822112220584074 ], [ -95.057287925580283, 29.819841220120828 ], [ -95.057257925188466, 29.818837219734792 ], [ -95.057238926038536, 29.818274219931379 ], [ -95.057226925147205, 29.817689219591937 ], [ -95.057218925432551, 29.81749621903629 ], [ -95.057211925604634, 29.817120219407087 ], [ -95.057201926021378, 29.81683521966854 ], [ -95.057184925322034, 29.816242219169972 ], [ -95.057174925810415, 29.815899218939627 ], [ -95.057168925211244, 29.815770219251963 ], [ -95.057137925793128, 29.81475321864038 ], [ -95.057129925092426, 29.81445021834697 ], [ -95.057095925248177, 29.813511218885008 ], [ -95.057057925429092, 29.812228218699431 ], [ -95.057047925111917, 29.811834218199106 ], [ -95.057017925201819, 29.811217218048363 ], [ -95.056992925333006, 29.810929218216877 ], [ -95.056933925279864, 29.81058521845835 ], [ -95.056917924834863, 29.810464217800934 ], [ -95.056846925187415, 29.810053218101789 ], [ -95.056802925264194, 29.809789218054675 ], [ -95.056697925008365, 29.80914321814738 ], [ -95.056680924583631, 29.809059218051804 ], [ -95.056616925448481, 29.808637217413004 ], [ -95.056386925411672, 29.807203217759131 ], [ -95.056373925051091, 29.807125217442874 ], [ -95.056303924558108, 29.80664121702949 ], [ -95.056237924946657, 29.806272216901707 ], [ -95.056118924493987, 29.805581216872397 ], [ -95.056054925222782, 29.805206217108939 ], [ -95.055945924543394, 29.804557217138207 ], [ -95.055908924857306, 29.804308217099564 ], [ -95.055904925136844, 29.804080216950588 ], [ -95.055902924346213, 29.803857216262603 ], [ -95.055925924484583, 29.803463216900841 ], [ -95.055953924776716, 29.802257216348668 ], [ -95.055969924890547, 29.801568215749914 ], [ -95.055976925023785, 29.801331216537843 ], [ -95.055983924090043, 29.800666216418513 ], [ -95.05598092421711, 29.800438215657898 ], [ -95.055956924592053, 29.800053216256241 ], [ -95.055931924008647, 29.799736215638237 ], [ -95.055914924731269, 29.799574216184627 ], [ -95.055858924810408, 29.799177215646818 ], [ -95.055816924880148, 29.798963215981683 ], [ -95.055691924871297, 29.798487215889654 ], [ -95.055319923952695, 29.797332214899871 ], [ -95.055273923826391, 29.797170215708924 ], [ -95.055248923803447, 29.797049215703769 ], [ -95.055225924639117, 29.796896215720391 ], [ -95.055218923855648, 29.796785215120391 ], [ -95.055224924234452, 29.796533215180119 ], [ -95.055244923895103, 29.796374215430976 ], [ -95.055269923880942, 29.796262214827525 ], [ -95.055364923986929, 29.79598421468059 ], [ -95.055654924236819, 29.795233214948158 ], [ -95.055825923967646, 29.794754214344735 ], [ -95.055864924018977, 29.794656214469978 ], [ -95.056006924251548, 29.794264214544665 ], [ -95.056242924040404, 29.79364621429994 ], [ -95.056336923969212, 29.793399214632903 ], [ -95.056534923874395, 29.792882214195135 ], [ -95.056576923971122, 29.792773214056268 ], [ -95.05658392445585, 29.792754214303582 ], [ -95.05661992477313, 29.792664214457936 ], [ -95.05669592438997, 29.792536214461652 ], [ -95.056785924583735, 29.792395214367144 ], [ -95.056840924055706, 29.792287214059517 ], [ -95.056925924495019, 29.792092214032806 ], [ -95.056961923917584, 29.792014214144562 ], [ -95.057152924782372, 29.791605214281471 ], [ -95.057265924897123, 29.791343214212066 ], [ -95.057369924896776, 29.79102421409921 ], [ -95.057007924321255, 29.79089321384928 ], [ -95.056603924655704, 29.790780214222732 ], [ -95.056033923723732, 29.790646213885637 ], [ -95.05543792363278, 29.790548213491597 ], [ -95.054916924197698, 29.790484214275882 ], [ -95.054506924151084, 29.790455213670022 ], [ -95.054151923913295, 29.790443213683339 ], [ -95.053441923748721, 29.790454213650822 ], [ -95.053090923227089, 29.790468213734353 ], [ -95.052956923152323, 29.790473213720333 ], [ -95.052411923029055, 29.790517213757632 ], [ -95.051756923465177, 29.790593214146718 ], [ -95.051137922473259, 29.790698214451556 ], [ -95.050559922324851, 29.790802213824055 ], [ -95.049804922645237, 29.790981214259588 ], [ -95.049447922186033, 29.791082214548229 ], [ -95.049159922404513, 29.791163213839443 ], [ -95.048176921941618, 29.791553213978744 ], [ -95.048064921834367, 29.791597214261127 ], [ -95.047285921464777, 29.791907214473248 ], [ -95.046103921410676, 29.792330214567667 ], [ -95.045383921471668, 29.792597214661303 ], [ -95.045272921767847, 29.792639214631794 ], [ -95.041748920636834, 29.79395021508692 ], [ -95.040468919839313, 29.794426215261893 ], [ -95.035446919418391, 29.79630121624314 ], [ -95.032202918744161, 29.797509216230029 ], [ -95.031883917818774, 29.797628216605048 ], [ -95.031885917812588, 29.797906216409984 ], [ -95.031888917765755, 29.798439216090525 ], [ -95.031900917891178, 29.798681216255357 ], [ -95.031912918042863, 29.798898216786675 ], [ -95.031908917860534, 29.798926216048265 ], [ -95.031911918781262, 29.799154216360513 ], [ -95.031913918565223, 29.799314216928625 ], [ -95.031925918274041, 29.800136216392168 ], [ -95.031938918564492, 29.801144217080527 ], [ -95.031944918506639, 29.801465216986944 ], [ -95.03196591878141, 29.803160217338025 ], [ -95.031993918263908, 29.804711217659534 ], [ -95.03205591900408, 29.806578218322372 ], [ -95.032058918590224, 29.806682217810504 ], [ -95.032058919029495, 29.806698217972841 ], [ -95.032059919060785, 29.806753218071023 ], [ -95.032061918621594, 29.806807217729393 ], [ -95.0320669191928, 29.806961217773541 ], [ -95.032075918744638, 29.807260218576573 ], [ -95.032093919003728, 29.807455218519909 ], [ -95.032125919193476, 29.80762221823268 ], [ -95.032272919142414, 29.808219218241529 ], [ -95.032729918816131, 29.809835218339391 ], [ -95.032831918797385, 29.810190219046113 ], [ -95.032879919148854, 29.810354219052368 ], [ -95.032907919115061, 29.810454218844068 ], [ -95.032938919058154, 29.810559219200208 ], [ -95.033048919140086, 29.81096021885433 ], [ -95.03312091945773, 29.811209219342295 ], [ -95.033156919263845, 29.811342218825615 ], [ -95.033188919097043, 29.811448219111398 ], [ -95.033230919093924, 29.811579218706662 ], [ -95.033242919296555, 29.811619219321717 ], [ -95.033258918927231, 29.81168221906433 ], [ -95.033263919433566, 29.811698219100855 ], [ -95.033299918786568, 29.811834219201852 ], [ -95.033344918798889, 29.812008219131041 ], [ -95.033455919268192, 29.812393218782965 ], [ -95.033480918808635, 29.812499219449215 ], [ -95.033992919548083, 29.81434921916858 ], [ -95.034653919924835, 29.816713219729632 ], [ -95.035352919841941, 29.819302220084019 ], [ -95.035611920143197, 29.820361221059841 ], [ -95.03570492073014, 29.82074222042149 ], [ -95.035815919826732, 29.821246221290057 ], [ -95.035891920449174, 29.821583221277074 ], [ -95.035926920566624, 29.821742221074199 ], [ -95.036035920058183, 29.82219022090085 ], [ -95.036191920379636, 29.822829221244369 ], [ -95.036315920838177, 29.823373221187921 ], [ -95.034323920461091, 29.823450221027429 ], [ -95.034411920408743, 29.823505221308835 ], [ -95.034556920491056, 29.824665221519108 ], [ -95.034688920400257, 29.825858221473762 ], [ -95.034865920771097, 29.827266222177144 ], [ -95.034915919880078, 29.827343222544311 ], [ -95.036132921086079, 29.827343221806004 ], [ -95.036681921240771, 29.827360222229149 ], [ -95.038390921162687, 29.827327221880441 ], [ -95.038674921224825, 29.827360222333223 ], [ -95.039027921681551, 29.827448222097637 ], [ -95.039349921379767, 29.827448222242918 ], [ -95.042868922388152, 29.827410222189563 ], [ -95.042924922805597, 29.827427222280736 ], [ -95.042962922324236, 29.827504221894081 ], [ -95.042949922560524, 29.827573222116147 ], [ -95.042943921930529, 29.827603222404488 ], [ -95.043001922821361, 29.82866922190011 ], [ -95.043025922701645, 29.828971221863373 ], [ -95.043385922257002, 29.829182222006189 ], [ -95.043512922890045, 29.830615222233426 ], [ -95.043514922919456, 29.830689222939743 ], [ -95.043521922678849, 29.831049222328307 ], [ -95.044286922954996, 29.831068222340942 ], [ -95.044462922522115, 29.831205222976749 ], [ -95.044495922636315, 29.833879222988429 ], [ -95.044526923031768, 29.834754223279283 ], [ -95.044625923362048, 29.834822223151964 ], [ -95.047693923912902, 29.834829223604029 ], [ -95.0477969241865, 29.836401223889219 ], [ -95.047824923640462, 29.836513223591044 ], [ -95.047848923916817, 29.836519223660304 ], [ -95.048199923673863, 29.836550223780918 ], [ -95.048681924593311, 29.836620223766488 ], [ -95.048779924782366, 29.836859223330954 ], [ -95.048801923929233, 29.838049223653872 ], [ -95.048823924769266, 29.839250224195702 ], [ -95.048870924317939, 29.840207224713343 ], [ -95.049066924212298, 29.84142222489201 ], [ -95.049078924991548, 29.841521224684417 ], [ -95.04910992444384, 29.841737224952514 ], [ -95.04968992428725, 29.841729224485903 ], [ -95.05121392556039, 29.841722224663286 ], [ -95.052060925314692, 29.841708224656895 ], [ -95.052203925569074, 29.84170622477976 ], [ -95.052679926034159, 29.841703224513704 ], [ -95.052898925551801, 29.8417012249542 ], [ -95.0535189261076, 29.841699224847705 ], [ -95.05381192577434, 29.841696224910038 ], [ -95.054504925657767, 29.841694224462888 ], [ -95.055241925815579, 29.841686224406121 ], [ -95.055321926523845, 29.841685224149462 ], [ -95.056886926185797, 29.841674224018551 ], [ -95.057131926341683, 29.841668224742378 ], [ -95.05739192699636, 29.841674224516968 ], [ -95.05755492634438, 29.841668224710222 ], [ -95.057700926926188, 29.841669224787996 ], [ -95.057699927063567, 29.841592224714734 ], [ -95.057699927211459, 29.84112222464611 ], [ -95.057717926791838, 29.840604224172921 ], [ -95.05775692691239, 29.839470223977731 ], [ -95.057778926426366, 29.838784223892223 ], [ -95.057780926932395, 29.838488223593505 ], [ -95.057781927059054, 29.837950223208463 ], [ -95.057799927002534, 29.837431223849922 ], [ -95.057824926232314, 29.836785223693148 ], [ -95.057829926123873, 29.836681223379305 ], [ -95.057839927101909, 29.836416222952465 ], [ -95.057868926446929, 29.835810223478862 ], [ -95.057883926197803, 29.835576223267203 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 967, "Tract": "48201433506", "Area_SqMi": 0.050004127152502735, "total_2009": 7, "total_2010": 6, "total_2011": 3, "total_2012": 3, "total_2013": 9, "total_2014": 11, "total_2015": 2, "total_2016": 2, "total_2017": 17, "total_2018": 61, "total_2019": 15, "total_2020": 6, "age1": 2, "age2": 2, "age3": 3, "earn1": 2, "earn2": 2, "earn3": 3, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 0, "race2": 0, "race3": 0, "race4": 7, "race5": 0, "race6": 0, "ethnicity1": 7, "ethnicity2": 0, "edu1": 1, "edu2": 0, "edu3": 2, "edu4": 2, "Shape_Length": 5360.6091246168562, "Shape_Area": 1394029.4820928264, "total_2021": 4, "total_2022": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.556230047338332, 29.678425174005945 ], [ -95.556249047021865, 29.678123173548258 ], [ -95.556208047175247, 29.677519174267911 ], [ -95.555636047610292, 29.677550173848971 ], [ -95.555455046697418, 29.677561173695281 ], [ -95.555432046976065, 29.677562174240677 ], [ -95.554883047328346, 29.677597174331286 ], [ -95.554681047014682, 29.67761017373261 ], [ -95.554171046478473, 29.677615174082771 ], [ -95.553463046688876, 29.677493173734849 ], [ -95.552867046297649, 29.678903173944821 ], [ -95.552829046778783, 29.678997174452483 ], [ -95.552626046208502, 29.679505174582033 ], [ -95.552595046747371, 29.679600173952881 ], [ -95.552487046387327, 29.679844174010217 ], [ -95.552385046144991, 29.680031174910273 ], [ -95.55215704683954, 29.68036717461511 ], [ -95.551911045967742, 29.680635174585184 ], [ -95.551667045868484, 29.68084717420863 ], [ -95.551979046255383, 29.681207175103427 ], [ -95.553006046602817, 29.682055175138657 ], [ -95.553130046973322, 29.68190617459582 ], [ -95.55366604729538, 29.680933174986698 ], [ -95.553852046463319, 29.680726174416925 ], [ -95.553961047155866, 29.680508174472536 ], [ -95.555665046988707, 29.681030174279201 ], [ -95.555824047237962, 29.680343174333078 ], [ -95.555904047296636, 29.679950174475099 ], [ -95.55592304700339, 29.679861174323165 ], [ -95.555974047615052, 29.679589174161343 ], [ -95.555983047409768, 29.679492173902901 ], [ -95.556045046919721, 29.679236174334275 ], [ -95.556230047338332, 29.678425174005945 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 968, "Tract": "48201321001", "Area_SqMi": 0.50423679560125334, "total_2009": 526, "total_2010": 550, "total_2011": 760, "total_2012": 830, "total_2013": 757, "total_2014": 725, "total_2015": 798, "total_2016": 803, "total_2017": 775, "total_2018": 818, "total_2019": 748, "total_2020": 729, "age1": 227, "age2": 470, "age3": 168, "earn1": 99, "earn2": 299, "earn3": 467, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 181, "naics_s06": 19, "naics_s07": 381, "naics_s08": 0, "naics_s09": 2, "naics_s10": 0, "naics_s11": 27, "naics_s12": 11, "naics_s13": 24, "naics_s14": 155, "naics_s15": 1, "naics_s16": 14, "naics_s17": 0, "naics_s18": 43, "naics_s19": 1, "naics_s20": 0, "race1": 626, "race2": 163, "race3": 7, "race4": 54, "race5": 1, "race6": 14, "ethnicity1": 487, "ethnicity2": 378, "edu1": 167, "edu2": 166, "edu3": 203, "edu4": 102, "Shape_Length": 15811.34047487538, "Shape_Area": 14057258.851462224, "total_2021": 741, "total_2022": 865 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.238692964392399, 29.636755176021175 ], [ -95.238857964617907, 29.636636175838074 ], [ -95.236809963242365, 29.634772176078926 ], [ -95.232323961857048, 29.630687174680848 ], [ -95.229705961385562, 29.62829717463951 ], [ -95.229350961203878, 29.627972174371337 ], [ -95.229063961323973, 29.627710174547229 ], [ -95.228789961445528, 29.627715174999175 ], [ -95.228539961589632, 29.627719174947639 ], [ -95.228163961557485, 29.627725174689079 ], [ -95.227258961158626, 29.627743174724703 ], [ -95.226850960554557, 29.627743174433039 ], [ -95.226135960142472, 29.627750174808519 ], [ -95.225459960891286, 29.627771175163041 ], [ -95.225127960623354, 29.627779174826099 ], [ -95.22425195994181, 29.628012174976284 ], [ -95.223771960110739, 29.62816417525033 ], [ -95.223292960359288, 29.628364175118822 ], [ -95.222948959571909, 29.628523174895395 ], [ -95.222563959265912, 29.628751175084663 ], [ -95.221988959207351, 29.629160174872045 ], [ -95.221168959012758, 29.629755175314255 ], [ -95.221202959526394, 29.630445175666022 ], [ -95.221234959361169, 29.631065175613788 ], [ -95.221261959928938, 29.63162617608241 ], [ -95.221296959995996, 29.63233717567881 ], [ -95.221329959366003, 29.633004176311896 ], [ -95.221363960159891, 29.633705175826567 ], [ -95.221418960085984, 29.634835176059138 ], [ -95.223758959815996, 29.634829176496496 ], [ -95.223755959973488, 29.635134176369942 ], [ -95.223765960334958, 29.635589176250605 ], [ -95.223784960074084, 29.636381176854684 ], [ -95.223795960349165, 29.637161176345902 ], [ -95.22379795997972, 29.637380176697985 ], [ -95.223858960361639, 29.637615177227993 ], [ -95.224123960316859, 29.638069176762876 ], [ -95.224396961043993, 29.637965176960307 ], [ -95.224690960877069, 29.637935177280578 ], [ -95.226816961699299, 29.637904176525506 ], [ -95.228785961706478, 29.637873176472592 ], [ -95.228947961924192, 29.637875176847505 ], [ -95.22945996174488, 29.637859176777049 ], [ -95.229791962473527, 29.637849176775514 ], [ -95.230020961729025, 29.637796176941247 ], [ -95.230445962420561, 29.637739176626141 ], [ -95.230895962325064, 29.637734176653971 ], [ -95.232824962435373, 29.637708176256261 ], [ -95.2360779637647, 29.637669176507938 ], [ -95.236651963740627, 29.637657176651771 ], [ -95.237120963412664, 29.637597175911591 ], [ -95.237539964265252, 29.637475176775514 ], [ -95.237743963741252, 29.637391176294294 ], [ -95.237844963854698, 29.637337176314265 ], [ -95.238122963596751, 29.637177175929356 ], [ -95.23840596416872, 29.636951176301853 ], [ -95.2385849639996, 29.636830175910713 ], [ -95.238692964392399, 29.636755176021175 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 969, "Tract": "48201432302", "Area_SqMi": 0.097273365343220813, "total_2009": 420, "total_2010": 572, "total_2011": 609, "total_2012": 750, "total_2013": 795, "total_2014": 930, "total_2015": 1383, "total_2016": 1403, "total_2017": 1466, "total_2018": 1491, "total_2019": 1444, "total_2020": 1547, "age1": 184, "age2": 789, "age3": 247, "earn1": 65, "earn2": 163, "earn3": 992, "naics_s01": 0, "naics_s02": 2, "naics_s03": 99, "naics_s04": 51, "naics_s05": 32, "naics_s06": 30, "naics_s07": 5, "naics_s08": 0, "naics_s09": 83, "naics_s10": 210, "naics_s11": 18, "naics_s12": 380, "naics_s13": 0, "naics_s14": 151, "naics_s15": 28, "naics_s16": 130, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 823, "race2": 175, "race3": 5, "race4": 200, "race5": 1, "race6": 16, "ethnicity1": 945, "ethnicity2": 275, "edu1": 133, "edu2": 214, "edu3": 321, "edu4": 368, "Shape_Length": 6504.6499711013794, "Shape_Area": 2711814.9407403353, "total_2021": 1232, "total_2022": 1220 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.549082047784921, 29.733116185325546 ], [ -95.549042047956902, 29.731004184685091 ], [ -95.549037047404681, 29.730840184841174 ], [ -95.54902904753682, 29.730552184470348 ], [ -95.54898404724544, 29.728757184377873 ], [ -95.548462047179768, 29.7287831841704 ], [ -95.547766047527432, 29.728814184535135 ], [ -95.547317046863824, 29.728805184984321 ], [ -95.546509046791954, 29.728751184909378 ], [ -95.545759046686726, 29.728675184523826 ], [ -95.545463047114779, 29.728640184534807 ], [ -95.545258046972506, 29.728610184536617 ], [ -95.54488504707777, 29.728531184323245 ], [ -95.544414046083716, 29.728435184899407 ], [ -95.544097046037948, 29.72835918498355 ], [ -95.543969045987879, 29.728743184739038 ], [ -95.543738046809509, 29.729219185172489 ], [ -95.543646046471324, 29.72940118515795 ], [ -95.54356304659288, 29.72961218514655 ], [ -95.543479046543681, 29.729828185136345 ], [ -95.543415046872852, 29.73001718527161 ], [ -95.543397046363523, 29.730089185111016 ], [ -95.543369046462857, 29.730211184651985 ], [ -95.543340046335601, 29.730349184630825 ], [ -95.543331046760457, 29.73045118466213 ], [ -95.543309045905445, 29.731045185111245 ], [ -95.543316045935711, 29.731214185226229 ], [ -95.543343046015679, 29.731527184869101 ], [ -95.543332046123282, 29.731694185117298 ], [ -95.543324046835465, 29.731834185599158 ], [ -95.543262046145145, 29.732257185200496 ], [ -95.543838046477916, 29.732388185211558 ], [ -95.544031046583243, 29.732438185018562 ], [ -95.544129046862068, 29.732471185189311 ], [ -95.544326046943851, 29.73253818503434 ], [ -95.545143046467899, 29.732795185175899 ], [ -95.545325047243679, 29.732839185743959 ], [ -95.545377046648838, 29.732856185581621 ], [ -95.545471046677662, 29.732879185126773 ], [ -95.545855047464599, 29.732962185690962 ], [ -95.546478047706643, 29.733070185529982 ], [ -95.547093047872309, 29.73312318557738 ], [ -95.547415047872676, 29.733133185343757 ], [ -95.548029047355584, 29.733130185802743 ], [ -95.548230048065605, 29.733124185073152 ], [ -95.549082047784921, 29.733116185325546 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 970, "Tract": "48201452002", "Area_SqMi": 0.34013224063844916, "total_2009": 923, "total_2010": 1048, "total_2011": 1011, "total_2012": 1037, "total_2013": 1159, "total_2014": 1043, "total_2015": 1213, "total_2016": 1302, "total_2017": 1550, "total_2018": 1746, "total_2019": 1915, "total_2020": 1455, "age1": 495, "age2": 512, "age3": 248, "earn1": 476, "earn2": 552, "earn3": 227, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 3, "naics_s07": 158, "naics_s08": 0, "naics_s09": 0, "naics_s10": 19, "naics_s11": 8, "naics_s12": 6, "naics_s13": 0, "naics_s14": 34, "naics_s15": 0, "naics_s16": 221, "naics_s17": 64, "naics_s18": 635, "naics_s19": 103, "naics_s20": 0, "race1": 768, "race2": 365, "race3": 12, "race4": 71, "race5": 4, "race6": 35, "ethnicity1": 862, "ethnicity2": 393, "edu1": 196, "edu2": 181, "edu3": 205, "edu4": 178, "Shape_Length": 12799.175374776951, "Shape_Area": 9482304.7268520948, "total_2021": 1385, "total_2022": 1255 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.605846063019541, 29.7361831845663 ], [ -95.605827062236784, 29.735682184405285 ], [ -95.605818062899658, 29.735506184187287 ], [ -95.605820063028077, 29.735008183762329 ], [ -95.605814062223985, 29.734726183793796 ], [ -95.605803062810224, 29.733775183573325 ], [ -95.605800062160625, 29.733648184051148 ], [ -95.605797062804641, 29.733452183886676 ], [ -95.605793062959322, 29.733240183819273 ], [ -95.60579206217092, 29.733189183079574 ], [ -95.605790061943665, 29.73305418370164 ], [ -95.605785062880528, 29.73266518365546 ], [ -95.605784062311187, 29.732625183127166 ], [ -95.60577806232908, 29.732278183605047 ], [ -95.605778062278262, 29.73213118310461 ], [ -95.605772062381334, 29.731919182829127 ], [ -95.605770061928155, 29.731712183291076 ], [ -95.605763062460994, 29.731399183481614 ], [ -95.605752062190447, 29.730280183245288 ], [ -95.605741062511569, 29.729784183283311 ], [ -95.6027820613361, 29.729812182528914 ], [ -95.599800061251116, 29.72984018349911 ], [ -95.599125060400198, 29.729858183231443 ], [ -95.598673060862964, 29.729847183078931 ], [ -95.598044059861849, 29.729798182996877 ], [ -95.597540060037886, 29.729786183375779 ], [ -95.597052060556351, 29.729809183080079 ], [ -95.596614059934439, 29.729862183544164 ], [ -95.596152059612521, 29.729962183345719 ], [ -95.59496205958132, 29.730337183575909 ], [ -95.594520059754956, 29.730470183301925 ], [ -95.594015058858162, 29.730592183493133 ], [ -95.59372905970622, 29.730652183072642 ], [ -95.593196059236391, 29.730717183458857 ], [ -95.592505059036, 29.73073018308213 ], [ -95.592515059036202, 29.73168218377975 ], [ -95.592564059302589, 29.733735183942098 ], [ -95.592569059276258, 29.734393183957284 ], [ -95.592586059009321, 29.735442184061636 ], [ -95.592634059026707, 29.73630218458154 ], [ -95.593079059684669, 29.736291184773144 ], [ -95.594386059880762, 29.736279184416659 ], [ -95.594704060120137, 29.736273184370834 ], [ -95.595699059654095, 29.73625318423414 ], [ -95.598096060871001, 29.736206184471541 ], [ -95.600826061312787, 29.736153183899475 ], [ -95.603091061795425, 29.736151184602985 ], [ -95.603972062314128, 29.736151184265839 ], [ -95.604719062333132, 29.736153184269462 ], [ -95.605307062547567, 29.736155184113134 ], [ -95.605572062518533, 29.736140184557058 ], [ -95.605846063019541, 29.7361831845663 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 971, "Tract": "48201551102", "Area_SqMi": 1.0802562074329911, "total_2009": 259, "total_2010": 209, "total_2011": 289, "total_2012": 293, "total_2013": 312, "total_2014": 331, "total_2015": 364, "total_2016": 373, "total_2017": 211, "total_2018": 300, "total_2019": 289, "total_2020": 283, "age1": 72, "age2": 131, "age3": 56, "earn1": 104, "earn2": 106, "earn3": 49, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 12, "naics_s06": 0, "naics_s07": 108, "naics_s08": 0, "naics_s09": 0, "naics_s10": 6, "naics_s11": 2, "naics_s12": 18, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 21, "naics_s17": 36, "naics_s18": 42, "naics_s19": 14, "naics_s20": 0, "race1": 146, "race2": 62, "race3": 2, "race4": 41, "race5": 0, "race6": 8, "ethnicity1": 176, "ethnicity2": 83, "edu1": 37, "edu2": 57, "edu3": 58, "edu4": 35, "Shape_Length": 23555.513509969496, "Shape_Area": 30115694.186254818, "total_2021": 284, "total_2022": 259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.491753044629704, 29.979131237592128 ], [ -95.491764044094111, 29.979104237362868 ], [ -95.491137044644262, 29.978289237495321 ], [ -95.490601043960694, 29.977589237554916 ], [ -95.490005044349346, 29.976812236782642 ], [ -95.489882044132401, 29.976651236982431 ], [ -95.489787044180972, 29.976527237196304 ], [ -95.489409043879448, 29.976033237298022 ], [ -95.489277043477301, 29.975862236586536 ], [ -95.488817043763078, 29.975265237036698 ], [ -95.488702043036596, 29.975116237306228 ], [ -95.488325042910745, 29.974623236582573 ], [ -95.488216043324286, 29.974480236585642 ], [ -95.4881370437123, 29.974377237149678 ], [ -95.487895042805206, 29.97406123636663 ], [ -95.487828043157407, 29.973970236238131 ], [ -95.487777043348885, 29.97390223704598 ], [ -95.487641043340048, 29.973718236517147 ], [ -95.487526042924358, 29.973562237024158 ], [ -95.487493042949325, 29.973517236871764 ], [ -95.487373043095658, 29.973347236531879 ], [ -95.487081042968839, 29.97293323652368 ], [ -95.486847042416287, 29.972607236445256 ], [ -95.486559042991885, 29.972230236281131 ], [ -95.4860180426422, 29.971521236128709 ], [ -95.485998043036133, 29.97149523656752 ], [ -95.485846042885015, 29.971299236008928 ], [ -95.485387042570935, 29.970708235671012 ], [ -95.48477604173361, 29.969906236056566 ], [ -95.484442041590739, 29.969469235911365 ], [ -95.484361041925979, 29.969362235430435 ], [ -95.484051041547161, 29.968953235944735 ], [ -95.483951042136383, 29.968824235513605 ], [ -95.483803041650575, 29.968635235408769 ], [ -95.483729041538837, 29.968550235855179 ], [ -95.483357041242741, 29.968057236004157 ], [ -95.4832160419773, 29.967872235514857 ], [ -95.48265604195376, 29.967138235798505 ], [ -95.482435041547461, 29.966849235478882 ], [ -95.481300041571387, 29.965362234913542 ], [ -95.481125041313192, 29.965135235448003 ], [ -95.480922041415027, 29.964870235172206 ], [ -95.480687040386897, 29.964563235316984 ], [ -95.48050304034038, 29.964321234572402 ], [ -95.480318041093142, 29.964327235353711 ], [ -95.47951704015928, 29.964354235180984 ], [ -95.478407040797464, 29.964386234794304 ], [ -95.478327040671999, 29.964388235259207 ], [ -95.47828404020072, 29.964389234853552 ], [ -95.477136039792242, 29.964414235045954 ], [ -95.476498040311341, 29.964434235420441 ], [ -95.476207039655776, 29.964441235270328 ], [ -95.474449039260989, 29.964487234964729 ], [ -95.473805039464935, 29.964500235170629 ], [ -95.473550039222374, 29.964500235542442 ], [ -95.473482039460947, 29.964495235550359 ], [ -95.471621038068932, 29.96454123514193 ], [ -95.471271038419289, 29.964550235569398 ], [ -95.471107038939124, 29.964575235228086 ], [ -95.471108038538233, 29.964631235310701 ], [ -95.471127038615833, 29.965259235170901 ], [ -95.471136038442808, 29.965647235654359 ], [ -95.471147038351432, 29.96615923607423 ], [ -95.471145038130885, 29.966444235944859 ], [ -95.47115203847639, 29.966596235522658 ], [ -95.471173038202693, 29.966887235439668 ], [ -95.471178038267766, 29.967045236056553 ], [ -95.471169038071196, 29.967209235568248 ], [ -95.471170039002146, 29.967294235663758 ], [ -95.471190038120341, 29.968163235746395 ], [ -95.471205038952689, 29.968650236380551 ], [ -95.471191038291593, 29.968963236497309 ], [ -95.471217039167712, 29.969300235975393 ], [ -95.47122003851878, 29.969447236442214 ], [ -95.471240038726677, 29.97037023653138 ], [ -95.47124503840088, 29.970575236249555 ], [ -95.471289038749205, 29.971107236808979 ], [ -95.471292039356641, 29.972358236742512 ], [ -95.471339038465004, 29.973048236962516 ], [ -95.471335039206977, 29.973895236896567 ], [ -95.471333039273787, 29.973991237130921 ], [ -95.471326038934222, 29.974072236830235 ], [ -95.471311038716493, 29.974134237264281 ], [ -95.471259038744179, 29.974221237241846 ], [ -95.471140038843657, 29.974299236964789 ], [ -95.471003038390762, 29.974375237278988 ], [ -95.471113038985919, 29.974544237349715 ], [ -95.471200038520251, 29.974695237437455 ], [ -95.471259039428702, 29.974820237563019 ], [ -95.471386038559103, 29.975140237373129 ], [ -95.47153603893436, 29.975563237438386 ], [ -95.47161203891676, 29.97575423758537 ], [ -95.471706038648691, 29.975945237635806 ], [ -95.471815039625142, 29.976130237837047 ], [ -95.471934038901907, 29.976304237290272 ], [ -95.47212003975261, 29.976536237520691 ], [ -95.472149039727896, 29.976569237748233 ], [ -95.472426039602254, 29.976886237649108 ], [ -95.472647039703716, 29.977115238294978 ], [ -95.472811039049759, 29.977267237838074 ], [ -95.473065039625453, 29.977485238246015 ], [ -95.473237039881411, 29.977615237546953 ], [ -95.47367403953443, 29.977919237690624 ], [ -95.474847039701643, 29.978729238113765 ], [ -95.475052039773502, 29.978886238043618 ], [ -95.475246039915007, 29.979057238567488 ], [ -95.475338039715723, 29.979147237711793 ], [ -95.475428039753837, 29.979242237844783 ], [ -95.475605040601991, 29.979443238358524 ], [ -95.475797039961009, 29.97968423828085 ], [ -95.476863040884169, 29.981150238176447 ], [ -95.477246040923518, 29.981671238394764 ], [ -95.477608040575419, 29.982174238792005 ], [ -95.478158040815131, 29.982938238563921 ], [ -95.478334040839741, 29.983205238535131 ], [ -95.478444041639833, 29.983405238665938 ], [ -95.478532041315276, 29.983359239263386 ], [ -95.47877404081926, 29.983217238633021 ], [ -95.478966041574751, 29.983116238667911 ], [ -95.479079041386896, 29.983063238694477 ], [ -95.479333041280029, 29.982929238943917 ], [ -95.479474041471988, 29.982864239107865 ], [ -95.479623041281457, 29.98278823880834 ], [ -95.480086041801357, 29.982541238271534 ], [ -95.480408041961212, 29.982377239015804 ], [ -95.480655041548246, 29.98223923817234 ], [ -95.481151042204502, 29.981973238512435 ], [ -95.481844042117913, 29.981593238754474 ], [ -95.482073042494406, 29.981467238367934 ], [ -95.482406041923213, 29.98128323803882 ], [ -95.482518042500061, 29.98122123835174 ], [ -95.482680041998719, 29.981138238173092 ], [ -95.482755041899779, 29.9811102386751 ], [ -95.482906042137728, 29.981063238275699 ], [ -95.482949042603622, 29.981049238107651 ], [ -95.483332042091646, 29.980951238275129 ], [ -95.48348704283741, 29.980922238287423 ], [ -95.483644042547709, 29.980908238040914 ], [ -95.483721041901518, 29.980908238662916 ], [ -95.483912042881869, 29.980917237872724 ], [ -95.483992042449174, 29.980927238014655 ], [ -95.484132042923008, 29.980955238533799 ], [ -95.484177042857993, 29.980970238672416 ], [ -95.484424042381448, 29.981053237827002 ], [ -95.485453042552962, 29.981482238548097 ], [ -95.485209042949407, 29.982094238717792 ], [ -95.485008042986053, 29.982567238860046 ], [ -95.485610042477091, 29.982743238624142 ], [ -95.485842043381098, 29.982815238125383 ], [ -95.485992043140499, 29.982861238380774 ], [ -95.486080043179257, 29.982881238607181 ], [ -95.486172043088615, 29.982908238204224 ], [ -95.486281042683331, 29.982950238342617 ], [ -95.48646704318169, 29.982999238716971 ], [ -95.486633043010926, 29.983059238786332 ], [ -95.48669604292219, 29.983077238842384 ], [ -95.487251043189545, 29.983243238455508 ], [ -95.487518043450692, 29.983331238774038 ], [ -95.488036043576827, 29.983489239006971 ], [ -95.488383043900356, 29.983609239066336 ], [ -95.488513044205007, 29.983644238214609 ], [ -95.489039043669806, 29.983763238487899 ], [ -95.489389044242657, 29.983865238450303 ], [ -95.489791044436032, 29.983991238575559 ], [ -95.491189044683466, 29.980555238172215 ], [ -95.491383043879651, 29.980085237910913 ], [ -95.491485043840214, 29.979859237909441 ], [ -95.491514044694171, 29.979787238039954 ], [ -95.491542043961687, 29.97969523799933 ], [ -95.491565044267404, 29.979610237702644 ], [ -95.491628043996144, 29.979437237856615 ], [ -95.491739044091986, 29.97916523742084 ], [ -95.491753044629704, 29.979131237592128 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 972, "Tract": "48201240707", "Area_SqMi": 1.952063678857993, "total_2009": 2874, "total_2010": 3197, "total_2011": 3116, "total_2012": 3468, "total_2013": 3646, "total_2014": 4118, "total_2015": 4701, "total_2016": 4414, "total_2017": 4236, "total_2018": 4696, "total_2019": 4734, "total_2020": 4330, "age1": 942, "age2": 2423, "age3": 942, "earn1": 493, "earn2": 1052, "earn3": 2762, "naics_s01": 0, "naics_s02": 27, "naics_s03": 84, "naics_s04": 434, "naics_s05": 868, "naics_s06": 678, "naics_s07": 422, "naics_s08": 265, "naics_s09": 5, "naics_s10": 56, "naics_s11": 32, "naics_s12": 85, "naics_s13": 0, "naics_s14": 346, "naics_s15": 311, "naics_s16": 42, "naics_s17": 7, "naics_s18": 591, "naics_s19": 54, "naics_s20": 0, "race1": 3269, "race2": 734, "race3": 26, "race4": 209, "race5": 6, "race6": 63, "ethnicity1": 2785, "ethnicity2": 1522, "edu1": 764, "edu2": 895, "edu3": 1043, "edu4": 663, "Shape_Length": 35396.925439644474, "Shape_Area": 54420194.376184128, "total_2021": 4079, "total_2022": 4307 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.42561502800163, 29.997644243579405 ], [ -95.425588027890555, 29.997534243648946 ], [ -95.424735027914465, 29.992877242688611 ], [ -95.424645027856357, 29.992530242792167 ], [ -95.42425402764249, 29.990183242060919 ], [ -95.424109027624354, 29.989307242221134 ], [ -95.423646027531817, 29.986527241840683 ], [ -95.422983026908454, 29.983063241115005 ], [ -95.422905026681917, 29.982656240652425 ], [ -95.422821027093079, 29.982219240616285 ], [ -95.422801026417488, 29.982131240498237 ], [ -95.422775027340705, 29.9819682404631 ], [ -95.422736027294278, 29.981748240272651 ], [ -95.422566026388267, 29.980791240733279 ], [ -95.422409027069477, 29.979920240181045 ], [ -95.422215026518927, 29.978842240321466 ], [ -95.421772026845773, 29.976265239454822 ], [ -95.421539025820934, 29.9750842389222 ], [ -95.421359026264753, 29.974172239091889 ], [ -95.421225025660931, 29.973704239251081 ], [ -95.420971026079087, 29.972773238719615 ], [ -95.42022202517569, 29.969751237756114 ], [ -95.420102026027322, 29.969147237687615 ], [ -95.419903025265825, 29.968305237629249 ], [ -95.419552025208645, 29.966762237937971 ], [ -95.41930402574161, 29.965902237777165 ], [ -95.419259025473053, 29.965736237113262 ], [ -95.419170025013415, 29.965738237679794 ], [ -95.419089025251182, 29.965740237638144 ], [ -95.419005025574592, 29.965743237048788 ], [ -95.418900024832723, 29.965746237729356 ], [ -95.418805025408432, 29.965748237822663 ], [ -95.418566025366246, 29.965754237054856 ], [ -95.418421025030057, 29.965752236956128 ], [ -95.418322024990402, 29.965750237096938 ], [ -95.418310024989452, 29.965750237428807 ], [ -95.418007025020842, 29.96574623724652 ], [ -95.417768024841152, 29.965752237764072 ], [ -95.417379024948289, 29.965762237300712 ], [ -95.415247024520482, 29.965821237804025 ], [ -95.414693023625532, 29.965828237906354 ], [ -95.414109023600091, 29.965836237978177 ], [ -95.41247002335129, 29.965858237208671 ], [ -95.41205702294198, 29.965866237951566 ], [ -95.409878022497921, 29.965891237842939 ], [ -95.407941022149942, 29.96592023765918 ], [ -95.406520022420111, 29.965939238082161 ], [ -95.406051021802696, 29.96594623797527 ], [ -95.405778021597229, 29.9659472382357 ], [ -95.405026022013644, 29.965958237618384 ], [ -95.40367002107584, 29.965978237779208 ], [ -95.402612021074745, 29.965988237597067 ], [ -95.402249020842461, 29.965980237690331 ], [ -95.402268021233454, 29.966496238311009 ], [ -95.402218021038692, 29.967116238022612 ], [ -95.40216002125392, 29.967355238732527 ], [ -95.402079020464669, 29.967695238752295 ], [ -95.401985020894628, 29.968167238664289 ], [ -95.40188202087235, 29.968818238309598 ], [ -95.401872021185156, 29.969262239086756 ], [ -95.401891020917532, 29.969627238769252 ], [ -95.401961020651754, 29.970214239105257 ], [ -95.402068020677234, 29.97063023853093 ], [ -95.402163020819586, 29.9709192391724 ], [ -95.402386020840012, 29.971451238725162 ], [ -95.4026040209298, 29.971829239573207 ], [ -95.402818021591685, 29.972144238854273 ], [ -95.403063020940365, 29.972446239346024 ], [ -95.403494021616936, 29.972895239513086 ], [ -95.403546021498883, 29.972946239004806 ], [ -95.403614021214977, 29.973005239778644 ], [ -95.403778021105722, 29.973151239620329 ], [ -95.403916021352941, 29.973265239079588 ], [ -95.404181021916656, 29.973470239034611 ], [ -95.40475202179789, 29.973839239559354 ], [ -95.404920022391536, 29.973938239324205 ], [ -95.405661022596206, 29.974349239244503 ], [ -95.406579022180381, 29.974869239344802 ], [ -95.406737022091122, 29.974962239413458 ], [ -95.407473022662799, 29.97540524009441 ], [ -95.40773702322879, 29.975601239395424 ], [ -95.408080023132712, 29.975890239958595 ], [ -95.408201023064862, 29.976004240283654 ], [ -95.408345023245531, 29.976118240076104 ], [ -95.408388022528683, 29.976156239505752 ], [ -95.408432023115211, 29.976199239907618 ], [ -95.408477022851756, 29.976251239723624 ], [ -95.408529022515893, 29.976307240198881 ], [ -95.408585022829214, 29.976369239791222 ], [ -95.40864302288675, 29.976436239965889 ], [ -95.408703022804943, 29.976506239667309 ], [ -95.408824023008336, 29.976655240241222 ], [ -95.408885023371838, 29.976733240135299 ], [ -95.408945023258525, 29.976815239723347 ], [ -95.409003023308316, 29.97689824003492 ], [ -95.4091180229332, 29.977075239925345 ], [ -95.409173022676228, 29.977167240033889 ], [ -95.409228023554419, 29.977259240144672 ], [ -95.409329023664867, 29.977438240210045 ], [ -95.409377022727668, 29.97752624046564 ], [ -95.409421023143977, 29.977614240292827 ], [ -95.409535023775476, 29.97787524014932 ], [ -95.409570023512885, 29.977958239878983 ], [ -95.409659023145807, 29.978191240566439 ], [ -95.409681023698653, 29.978253240433599 ], [ -95.409700023121687, 29.978304240463231 ], [ -95.409723023144608, 29.978367240038125 ], [ -95.409830023440875, 29.978613239892859 ], [ -95.409926023289884, 29.978949240249467 ], [ -95.409984023708802, 29.979209240694285 ], [ -95.410071023024642, 29.979719240734084 ], [ -95.410148023920144, 29.980315240608391 ], [ -95.410205023275878, 29.98084424040352 ], [ -95.410253023171009, 29.981412240687224 ], [ -95.410353023638436, 29.983198241337103 ], [ -95.410364023356891, 29.984208241258358 ], [ -95.41036402365701, 29.984250241635241 ], [ -95.4103650234225, 29.984294241794238 ], [ -95.410377023468399, 29.98460324125789 ], [ -95.410430024087461, 29.985014241921501 ], [ -95.410469024061882, 29.98521924140422 ], [ -95.410500023486122, 29.985325241854696 ], [ -95.410518024277494, 29.985431241474988 ], [ -95.410624024273972, 29.985939242064717 ], [ -95.410638024292695, 29.986036241470799 ], [ -95.410653023649076, 29.986216242005948 ], [ -95.410673024096425, 29.986590242199952 ], [ -95.410681024221901, 29.98667424184983 ], [ -95.410682023845141, 29.986740241746343 ], [ -95.410676023666838, 29.986811241767075 ], [ -95.410678024452054, 29.98705224224279 ], [ -95.410691024207324, 29.987141242270951 ], [ -95.410693024060677, 29.987232241807643 ], [ -95.410681024309582, 29.987327242063849 ], [ -95.410683024041788, 29.987644242522663 ], [ -95.41069402448133, 29.987758242344139 ], [ -95.410695024525992, 29.987870241923254 ], [ -95.410688024213826, 29.987979242290155 ], [ -95.410696024018534, 29.988537242495514 ], [ -95.410706023902321, 29.988658242214221 ], [ -95.410715023900792, 29.988880242288456 ], [ -95.41070702444182, 29.989107242403225 ], [ -95.410707024160843, 29.989649242260963 ], [ -95.410715024114836, 29.989912242818257 ], [ -95.410715023852731, 29.990007242350053 ], [ -95.410701023923878, 29.990157242623436 ], [ -95.410688024539155, 29.99023424277857 ], [ -95.410653023889395, 29.990436242396573 ], [ -95.410626024593114, 29.990503243166117 ], [ -95.410605023664601, 29.99057024267162 ], [ -95.410555024227492, 29.990703242679203 ], [ -95.410485024059298, 29.990844243034303 ], [ -95.410391023759132, 29.990997242704427 ], [ -95.410270023587245, 29.991153242964522 ], [ -95.410065024210766, 29.991382243354746 ], [ -95.409800024459187, 29.991689242714013 ], [ -95.409277024276221, 29.992304242957449 ], [ -95.409158023500837, 29.992445243175915 ], [ -95.409045024092066, 29.992583242870083 ], [ -95.408795024193182, 29.992888243132736 ], [ -95.408627023290933, 29.99311124366416 ], [ -95.408403023897435, 29.993460243830999 ], [ -95.408381023489952, 29.993496242944943 ], [ -95.408263023351367, 29.993703243103937 ], [ -95.408072023314091, 29.994079243423581 ], [ -95.407973023334989, 29.994339243394638 ], [ -95.407927023684351, 29.994459243742739 ], [ -95.407882024024673, 29.994592243749924 ], [ -95.407800023861128, 29.994867243459691 ], [ -95.407733023970906, 29.995154243476954 ], [ -95.407685023741848, 29.995433243779281 ], [ -95.407664023391476, 29.995655243721011 ], [ -95.40766402363603, 29.995744243633446 ], [ -95.407680023185719, 29.996013243558394 ], [ -95.407689023743714, 29.996513243853649 ], [ -95.407692023794169, 29.996628243642171 ], [ -95.408517023957828, 29.996616243756399 ], [ -95.411411024760739, 29.996578243761544 ], [ -95.411527024381584, 29.996577244245593 ], [ -95.412012025117306, 29.996581243543584 ], [ -95.412384025052646, 29.996598243837003 ], [ -95.412768024642233, 29.996624243769357 ], [ -95.41320902537052, 29.99667324366013 ], [ -95.413522025101216, 29.996719244039216 ], [ -95.41384002540353, 29.99677524428796 ], [ -95.414161025149809, 29.996843243429822 ], [ -95.414948025790707, 29.997046243876106 ], [ -95.416903026558529, 29.997576243531878 ], [ -95.418286026142269, 29.997946243566869 ], [ -95.418704026623928, 29.998043244138341 ], [ -95.419118027044874, 29.998121243800689 ], [ -95.419532026810373, 29.998182243737688 ], [ -95.419797026474313, 29.998213243985209 ], [ -95.420163026782006, 29.99824224392782 ], [ -95.420670027269836, 29.998268243527178 ], [ -95.420975026649458, 29.998271244057669 ], [ -95.421300026844762, 29.998262243469771 ], [ -95.421765027848721, 29.998235243790557 ], [ -95.422122026928832, 29.998202243658088 ], [ -95.423150027960958, 29.998061243421756 ], [ -95.423998027375646, 29.997946244039476 ], [ -95.424402027834063, 29.997847243876667 ], [ -95.424766028460937, 29.997759243592121 ], [ -95.424840028330365, 29.997742243619808 ], [ -95.425015027796292, 29.997722243716112 ], [ -95.425253028388369, 29.997696243813202 ], [ -95.425319027786045, 29.997685244054427 ], [ -95.42547702809334, 29.997663243214216 ], [ -95.42561502800163, 29.997644243579405 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 973, "Tract": "48201411802", "Area_SqMi": 0.35884631782306164, "total_2009": 3565, "total_2010": 3647, "total_2011": 3892, "total_2012": 3139, "total_2013": 3175, "total_2014": 2986, "total_2015": 3325, "total_2016": 3510, "total_2017": 3791, "total_2018": 3745, "total_2019": 3662, "total_2020": 3504, "age1": 1111, "age2": 1898, "age3": 802, "earn1": 648, "earn2": 1274, "earn3": 1889, "naics_s01": 2, "naics_s02": 0, "naics_s03": 3, "naics_s04": 461, "naics_s05": 33, "naics_s06": 256, "naics_s07": 853, "naics_s08": 79, "naics_s09": 44, "naics_s10": 70, "naics_s11": 31, "naics_s12": 170, "naics_s13": 0, "naics_s14": 160, "naics_s15": 8, "naics_s16": 473, "naics_s17": 23, "naics_s18": 985, "naics_s19": 159, "naics_s20": 1, "race1": 2798, "race2": 683, "race3": 34, "race4": 217, "race5": 11, "race6": 68, "ethnicity1": 2284, "ethnicity2": 1527, "edu1": 698, "edu2": 696, "edu3": 753, "edu4": 553, "Shape_Length": 14755.432065616511, "Shape_Area": 10004021.169295883, "total_2021": 3579, "total_2022": 3811 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.428155017134543, 29.730049189272453 ], [ -95.428125016442849, 29.729895188927582 ], [ -95.428098016452921, 29.729756188651958 ], [ -95.428048017133591, 29.729498188472984 ], [ -95.428008016545462, 29.728931188961681 ], [ -95.427973016551675, 29.728591188376122 ], [ -95.427972017110832, 29.728582188376137 ], [ -95.427965017184732, 29.728377188926121 ], [ -95.427862016423092, 29.727558188689901 ], [ -95.427797016679548, 29.726758187986864 ], [ -95.426618016161399, 29.726784188481574 ], [ -95.424831016091744, 29.726804188641044 ], [ -95.424833015560893, 29.726490187916013 ], [ -95.424839016193715, 29.725372188200542 ], [ -95.422124015287409, 29.725433188319894 ], [ -95.42062501470123, 29.725435188497556 ], [ -95.418588014158956, 29.725495188386478 ], [ -95.417949014119372, 29.725497188712005 ], [ -95.416775013603626, 29.725501188426215 ], [ -95.415477013901963, 29.725515188401697 ], [ -95.415037013772903, 29.725521188419279 ], [ -95.412800012498693, 29.725556188624168 ], [ -95.411374012736488, 29.72556818868247 ], [ -95.410535011867069, 29.725588188789036 ], [ -95.410537012292934, 29.725891188635963 ], [ -95.410537011867433, 29.726007188342571 ], [ -95.410541011863188, 29.726436188812755 ], [ -95.410550011925409, 29.727141188499257 ], [ -95.410559012098091, 29.727845188800423 ], [ -95.410585012414586, 29.728672189355237 ], [ -95.410597012534794, 29.729522189060962 ], [ -95.410602012889868, 29.730046189744492 ], [ -95.410606012173574, 29.730485189427359 ], [ -95.410610012900804, 29.730719189556943 ], [ -95.410612012555546, 29.730853189470498 ], [ -95.410615012377164, 29.73098318939407 ], [ -95.410762012607307, 29.730983189879204 ], [ -95.411258012355205, 29.730983189770416 ], [ -95.412843013464396, 29.730932189402932 ], [ -95.413724013277914, 29.730904189332243 ], [ -95.415969013988672, 29.730795189373072 ], [ -95.418433014030114, 29.730752189748983 ], [ -95.418664014355471, 29.730748189141671 ], [ -95.41882901467919, 29.730745189477005 ], [ -95.418954014954494, 29.730745189499338 ], [ -95.422859015161421, 29.730685189560276 ], [ -95.424005015572263, 29.730648189576588 ], [ -95.425165016482453, 29.730525188663446 ], [ -95.426595016426504, 29.730294189310602 ], [ -95.426932016361476, 29.730240189227644 ], [ -95.427952017151796, 29.730080188665738 ], [ -95.428155017134543, 29.730049189272453 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 974, "Tract": "48201533401", "Area_SqMi": 0.79264111102256618, "total_2009": 265, "total_2010": 239, "total_2011": 147, "total_2012": 165, "total_2013": 160, "total_2014": 159, "total_2015": 187, "total_2016": 213, "total_2017": 230, "total_2018": 186, "total_2019": 216, "total_2020": 301, "age1": 79, "age2": 89, "age3": 25, "earn1": 80, "earn2": 82, "earn3": 31, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 0, "naics_s06": 0, "naics_s07": 59, "naics_s08": 0, "naics_s09": 0, "naics_s10": 8, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 115, "naics_s19": 1, "naics_s20": 0, "race1": 138, "race2": 42, "race3": 1, "race4": 10, "race5": 1, "race6": 1, "ethnicity1": 104, "ethnicity2": 89, "edu1": 22, "edu2": 41, "edu3": 29, "edu4": 22, "Shape_Length": 19028.168798468527, "Shape_Area": 22097477.556489382, "total_2021": 224, "total_2022": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.440989027824145, 29.897894222702487 ], [ -95.440986027943708, 29.897738223199358 ], [ -95.44082502773108, 29.889725221110073 ], [ -95.440784026893297, 29.885269220098952 ], [ -95.440672027327764, 29.885275219982407 ], [ -95.440195026822764, 29.885293220223609 ], [ -95.438744026735506, 29.885347220636021 ], [ -95.438628026391399, 29.88535221993639 ], [ -95.438338026310248, 29.885352220143858 ], [ -95.437581026381707, 29.885391220135812 ], [ -95.437341026183859, 29.885390220651715 ], [ -95.437171026529157, 29.885401220541112 ], [ -95.436912026595365, 29.885396220813156 ], [ -95.43619302610324, 29.885435220248553 ], [ -95.435758025844748, 29.885446220303631 ], [ -95.435505025280278, 29.885473220666697 ], [ -95.435354026152254, 29.885462220818546 ], [ -95.434969025290911, 29.885479220490186 ], [ -95.43425602509069, 29.885473220101538 ], [ -95.43394102543968, 29.885484220853943 ], [ -95.433373025378373, 29.885522220845065 ], [ -95.432042024654251, 29.885561220690015 ], [ -95.431833024585629, 29.885550220596802 ], [ -95.431637024678153, 29.885559220442403 ], [ -95.43136002430154, 29.885572220479943 ], [ -95.431270024879765, 29.88558222043897 ], [ -95.43120502426801, 29.885590220774123 ], [ -95.431133024884844, 29.885599220948972 ], [ -95.431139025123599, 29.885984220759269 ], [ -95.431154025159373, 29.886273220997186 ], [ -95.430603024433964, 29.886295220394206 ], [ -95.429669024205808, 29.886310220443342 ], [ -95.429034024515857, 29.886315221181675 ], [ -95.428068024133609, 29.88632422068325 ], [ -95.427590024232828, 29.886339220703167 ], [ -95.426670023087453, 29.886358221035263 ], [ -95.426388023656827, 29.886370221155087 ], [ -95.425867023736117, 29.8864272212268 ], [ -95.425194023434983, 29.886575220641056 ], [ -95.424627022537791, 29.886746221351519 ], [ -95.424254023243336, 29.886892221083396 ], [ -95.42383702313839, 29.887101221425652 ], [ -95.42176202244903, 29.888311221490277 ], [ -95.423097023219128, 29.890068222009095 ], [ -95.423878023300517, 29.891085222340479 ], [ -95.425705023755327, 29.89339922258749 ], [ -95.426122024124112, 29.893955222932767 ], [ -95.428507024064146, 29.897030223467016 ], [ -95.429216025073941, 29.89792422333845 ], [ -95.42931902436537, 29.898031223479094 ], [ -95.429545024388617, 29.898034223422794 ], [ -95.431315025260048, 29.898035222699729 ], [ -95.431368025704174, 29.898035223285607 ], [ -95.431442025609769, 29.898035222704177 ], [ -95.431893025068149, 29.898037223266353 ], [ -95.432125025613729, 29.898037222885691 ], [ -95.432220025922916, 29.8980372233517 ], [ -95.432343025461947, 29.898037223537731 ], [ -95.432801025718376, 29.898039223051342 ], [ -95.435559026076959, 29.898001223380508 ], [ -95.435796026417492, 29.897995222531694 ], [ -95.437302027183605, 29.897960223118574 ], [ -95.438258026948816, 29.897938222461057 ], [ -95.440921027584395, 29.897895222596024 ], [ -95.440989027824145, 29.897894222702487 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 975, "Tract": "48201421203", "Area_SqMi": 0.08556030614021716, "total_2009": 283, "total_2010": 196, "total_2011": 149, "total_2012": 216, "total_2013": 233, "total_2014": 237, "total_2015": 234, "total_2016": 57, "total_2017": 49, "total_2018": 118, "total_2019": 136, "total_2020": 163, "age1": 30, "age2": 121, "age3": 41, "earn1": 20, "earn2": 45, "earn3": 127, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 1, "naics_s07": 6, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 107, "naics_s12": 43, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 27, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 154, "race2": 23, "race3": 1, "race4": 10, "race5": 1, "race6": 3, "ethnicity1": 91, "ethnicity2": 101, "edu1": 28, "edu2": 45, "edu3": 59, "edu4": 30, "Shape_Length": 7057.1395149006075, "Shape_Area": 2385274.8972617732, "total_2021": 208, "total_2022": 192 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.491500033123586, 29.723735185346282 ], [ -95.491652032814528, 29.72360218538601 ], [ -95.491420032635688, 29.723612185738602 ], [ -95.491153032456523, 29.723635185865337 ], [ -95.490847032900419, 29.723636185351783 ], [ -95.490690032622553, 29.723636185567518 ], [ -95.489048032419063, 29.723769185738561 ], [ -95.489044031729208, 29.723693185372699 ], [ -95.4890330322187, 29.723467185535394 ], [ -95.489036032476065, 29.722733185081161 ], [ -95.489040031726702, 29.721820184894376 ], [ -95.488784031624604, 29.721846185503829 ], [ -95.487392031976967, 29.721851185431177 ], [ -95.486376030982129, 29.72187518553492 ], [ -95.485294031044617, 29.721846185647887 ], [ -95.485119031067981, 29.721928185590706 ], [ -95.485125030716745, 29.722541185568495 ], [ -95.485013031356658, 29.722489185807021 ], [ -95.484863030880049, 29.72249818532363 ], [ -95.484783031439534, 29.722503185226319 ], [ -95.484739031166058, 29.722722185632751 ], [ -95.484591031222237, 29.723301185985893 ], [ -95.484391031067304, 29.723961185315371 ], [ -95.484325030700774, 29.724161185973074 ], [ -95.484285031235189, 29.724293185608996 ], [ -95.484272030624055, 29.724367185609811 ], [ -95.484149031505538, 29.725045185968998 ], [ -95.484184030607992, 29.725360186476056 ], [ -95.48418303118676, 29.725498185985415 ], [ -95.48418203145836, 29.725675186199993 ], [ -95.484181031371833, 29.72581518594852 ], [ -95.484180031143907, 29.725984185965263 ], [ -95.484397031073584, 29.725980186030888 ], [ -95.486318031831615, 29.725944186283471 ], [ -95.486482031925846, 29.72593418651838 ], [ -95.487101031336266, 29.725894186356928 ], [ -95.48721203214771, 29.725887186254845 ], [ -95.487325031996122, 29.72588018612932 ], [ -95.487921032275167, 29.725777186294753 ], [ -95.488391031876048, 29.725686186003308 ], [ -95.488812032192769, 29.725534185985335 ], [ -95.489198031918576, 29.725367186029871 ], [ -95.48980503262348, 29.725065186168766 ], [ -95.490140032985323, 29.724849185544638 ], [ -95.490199032964426, 29.724806185864495 ], [ -95.490563032955464, 29.724545185283535 ], [ -95.490858032975822, 29.724293185331888 ], [ -95.491013032883899, 29.724162185503744 ], [ -95.491500033123586, 29.723735185346282 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 976, "Tract": "48201451404", "Area_SqMi": 0.21707074031443002, "total_2009": 47, "total_2010": 89, "total_2011": 140, "total_2012": 159, "total_2013": 160, "total_2014": 253, "total_2015": 307, "total_2016": 263, "total_2017": 268, "total_2018": 335, "total_2019": 302, "total_2020": 274, "age1": 73, "age2": 92, "age3": 42, "earn1": 52, "earn2": 91, "earn3": 64, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 4, "naics_s07": 6, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 16, "naics_s12": 12, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 78, "naics_s17": 0, "naics_s18": 73, "naics_s19": 15, "naics_s20": 0, "race1": 106, "race2": 42, "race3": 2, "race4": 53, "race5": 0, "race6": 4, "ethnicity1": 146, "ethnicity2": 61, "edu1": 30, "edu2": 39, "edu3": 31, "edu4": 34, "Shape_Length": 10164.386695180272, "Shape_Area": 6051560.7196812322, "total_2021": 242, "total_2022": 207 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.625266068485089, 29.753035186642222 ], [ -95.625267068655049, 29.752337186999917 ], [ -95.625258067943136, 29.751624186692762 ], [ -95.625238068168983, 29.74995218671393 ], [ -95.625232068001836, 29.749447185885167 ], [ -95.625229068108382, 29.749250186049871 ], [ -95.625217067651874, 29.748226185529028 ], [ -95.625217068247665, 29.748159185668744 ], [ -95.62521406755647, 29.748065186241536 ], [ -95.625205068261707, 29.747668185491637 ], [ -95.625115067921001, 29.747178185605115 ], [ -95.62500406780488, 29.746725185348861 ], [ -95.624630067730365, 29.746809185890818 ], [ -95.624346067986892, 29.746828185872324 ], [ -95.624171068021482, 29.746777185713373 ], [ -95.623974067969954, 29.746653185599261 ], [ -95.623657067461536, 29.746490185857635 ], [ -95.623430067733324, 29.746440185891277 ], [ -95.623129067162026, 29.746442185588823 ], [ -95.622633067680596, 29.746436185985878 ], [ -95.622383067424508, 29.746452185583582 ], [ -95.619782066721626, 29.746618185514809 ], [ -95.619675066807659, 29.746610185854021 ], [ -95.619031066171019, 29.746563186228904 ], [ -95.618916066003152, 29.746859186078922 ], [ -95.618683066052981, 29.747157185835903 ], [ -95.618337066483363, 29.74747718572997 ], [ -95.618223066013883, 29.747563185899875 ], [ -95.618136066606738, 29.747598185736656 ], [ -95.618442066520515, 29.748002186489771 ], [ -95.61845806618345, 29.748349186089659 ], [ -95.618438066100708, 29.749385186612688 ], [ -95.61848406658676, 29.749673186729783 ], [ -95.618683066186549, 29.750248186390181 ], [ -95.618839066334829, 29.750619186291971 ], [ -95.618894066729226, 29.75082818653507 ], [ -95.618916066801461, 29.750967186910099 ], [ -95.618934067069731, 29.751129186871466 ], [ -95.618949067110591, 29.751357186761531 ], [ -95.618934066772567, 29.751580186436936 ], [ -95.618880066826136, 29.751945187295505 ], [ -95.618800066106033, 29.752174187283472 ], [ -95.618572066806223, 29.752726186665821 ], [ -95.618475066168131, 29.75312118712495 ], [ -95.618459067029832, 29.753281187215791 ], [ -95.618449066792834, 29.753805187366705 ], [ -95.618448066197402, 29.754463187754066 ], [ -95.619517066929063, 29.754442186972099 ], [ -95.619671066457457, 29.754434187437155 ], [ -95.620469066941325, 29.754425187698853 ], [ -95.621206066927058, 29.754422187234699 ], [ -95.622107067743954, 29.754420186941005 ], [ -95.622561068044874, 29.75441818690248 ], [ -95.622666067430842, 29.754421187305734 ], [ -95.623535068060249, 29.754448187632203 ], [ -95.624580068645784, 29.754695187059745 ], [ -95.624983067822697, 29.754823187505352 ], [ -95.62526606802389, 29.754914187597521 ], [ -95.625266068279615, 29.754091186991207 ], [ -95.625266068821205, 29.753884187159926 ], [ -95.625266068191323, 29.753531186648381 ], [ -95.625266068485089, 29.753035186642222 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 977, "Tract": "48201543006", "Area_SqMi": 4.6706930336329151, "total_2009": 172, "total_2010": 181, "total_2011": 174, "total_2012": 141, "total_2013": 169, "total_2014": 229, "total_2015": 260, "total_2016": 496, "total_2017": 697, "total_2018": 1021, "total_2019": 1106, "total_2020": 878, "age1": 585, "age2": 621, "age3": 214, "earn1": 412, "earn2": 546, "earn3": 462, "naics_s01": 0, "naics_s02": 1, "naics_s03": 2, "naics_s04": 177, "naics_s05": 0, "naics_s06": 4, "naics_s07": 277, "naics_s08": 82, "naics_s09": 102, "naics_s10": 29, "naics_s11": 21, "naics_s12": 73, "naics_s13": 1, "naics_s14": 62, "naics_s15": 1, "naics_s16": 321, "naics_s17": 4, "naics_s18": 122, "naics_s19": 140, "naics_s20": 1, "race1": 895, "race2": 313, "race3": 14, "race4": 162, "race5": 2, "race6": 34, "ethnicity1": 963, "ethnicity2": 457, "edu1": 197, "edu2": 207, "edu3": 235, "edu4": 196, "Shape_Length": 45782.533629266458, "Shape_Area": 130210927.80666569, "total_2021": 1075, "total_2022": 1420 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.728423102180699, 29.926361218926701 ], [ -95.7284171024356, 29.925466218729003 ], [ -95.728410102072161, 29.924512218333348 ], [ -95.728408101880092, 29.924323218417001 ], [ -95.728398102102346, 29.92337621775275 ], [ -95.728391102027842, 29.922423217612625 ], [ -95.728382101997227, 29.921274217863768 ], [ -95.728371101902098, 29.920320217012694 ], [ -95.728369101843398, 29.9201292177056 ], [ -95.728360102607297, 29.919178217471085 ], [ -95.72835410185688, 29.918239217108592 ], [ -95.728351102089263, 29.918051216813716 ], [ -95.728350102527756, 29.917985216668392 ], [ -95.728331101841292, 29.916124216956792 ], [ -95.728150101831275, 29.915084216039357 ], [ -95.727986102087328, 29.914528216652247 ], [ -95.727707101379735, 29.913915216271779 ], [ -95.727286101987076, 29.913294216379203 ], [ -95.726770101091049, 29.912381215826535 ], [ -95.726621101302243, 29.912163215973607 ], [ -95.726446101616872, 29.911855215486156 ], [ -95.726275101465561, 29.91121721588037 ], [ -95.726247101023688, 29.910515215543256 ], [ -95.726248101327755, 29.910018215170425 ], [ -95.726250101341748, 29.909606215464695 ], [ -95.726256100937377, 29.90942221567763 ], [ -95.726321101436625, 29.908384215198758 ], [ -95.726327101058175, 29.907745215400769 ], [ -95.726297100650427, 29.90696121437816 ], [ -95.726342101272294, 29.90677921457209 ], [ -95.726330101142196, 29.906499214949921 ], [ -95.726279100942165, 29.906092214440996 ], [ -95.72617210114521, 29.905618214632295 ], [ -95.725987101069038, 29.905062214396047 ], [ -95.725884101196399, 29.904856214426896 ], [ -95.725699100582574, 29.904489213933189 ], [ -95.72553310033318, 29.904213213834382 ], [ -95.725268100427684, 29.903842214508487 ], [ -95.724893100469131, 29.903399214473467 ], [ -95.724526099915423, 29.90303221429809 ], [ -95.724107100077291, 29.902630213672744 ], [ -95.723776100207573, 29.90233421433523 ], [ -95.723180100245031, 29.901777213444557 ], [ -95.723089100289386, 29.901693214234275 ], [ -95.72233610023531, 29.900998213473613 ], [ -95.721802099848389, 29.900487213976842 ], [ -95.721019099430663, 29.899753213211849 ], [ -95.720440098741491, 29.899197213622912 ], [ -95.720206099214465, 29.89909021329273 ], [ -95.720108098861644, 29.899026213640486 ], [ -95.719428099290411, 29.898228213149057 ], [ -95.719179099009438, 29.897783213114799 ], [ -95.718977098696229, 29.89738021289353 ], [ -95.718858098887637, 29.897047212827154 ], [ -95.718798098435713, 29.896875213443202 ], [ -95.718577098675254, 29.896171213148214 ], [ -95.718501098970904, 29.895664212690189 ], [ -95.718483098320704, 29.894473212932958 ], [ -95.71842209859922, 29.894474212199761 ], [ -95.716108097421341, 29.894498212312353 ], [ -95.710780096240953, 29.894588212892703 ], [ -95.710588096775794, 29.894592213273775 ], [ -95.706563095754404, 29.894642212918672 ], [ -95.706370095399336, 29.89465021260617 ], [ -95.70529009524482, 29.894699213095208 ], [ -95.705013095174422, 29.894711213482658 ], [ -95.704632095425481, 29.894689213411329 ], [ -95.704503095341821, 29.894689213276695 ], [ -95.704502095201008, 29.894735213525419 ], [ -95.704408094724172, 29.894735212730666 ], [ -95.704319094797015, 29.894741213018264 ], [ -95.704088094680145, 29.894757213211463 ], [ -95.702385094902098, 29.894776212824301 ], [ -95.701774094619978, 29.894784212953628 ], [ -95.700877094362767, 29.894798213595823 ], [ -95.700631094206813, 29.894804213316849 ], [ -95.698764093552001, 29.894851213031853 ], [ -95.698213093227395, 29.894940213428711 ], [ -95.69774709287924, 29.895031213175749 ], [ -95.697058092789945, 29.895229213261516 ], [ -95.696679092893802, 29.895337213186277 ], [ -95.696037092398214, 29.895491213896886 ], [ -95.695458092831061, 29.895572213835454 ], [ -95.694749092954396, 29.8956102137427 ], [ -95.693854092440631, 29.895609213725965 ], [ -95.693807091842075, 29.895610213702312 ], [ -95.691686092074434, 29.895674214143799 ], [ -95.691259091960859, 29.895674213326181 ], [ -95.689219090839813, 29.895674214156291 ], [ -95.68912309099386, 29.895674213818872 ], [ -95.687317090982418, 29.895937214123769 ], [ -95.686528089976775, 29.89620021406585 ], [ -95.685542090022096, 29.896594213700443 ], [ -95.68532609052302, 29.896636213791748 ], [ -95.683963089252046, 29.896907214477281 ], [ -95.684125089654742, 29.897770214759927 ], [ -95.684218089372649, 29.898262214919846 ], [ -95.684244090055486, 29.898399214770812 ], [ -95.684547089606141, 29.900016215075713 ], [ -95.68471509011431, 29.900911214782731 ], [ -95.684749090576204, 29.901093214898214 ], [ -95.685154090789396, 29.903217215152637 ], [ -95.685938090828017, 29.90738721632535 ], [ -95.685969090355371, 29.907596216342196 ], [ -95.685988091022338, 29.907848216435887 ], [ -95.686008090963369, 29.908529216747073 ], [ -95.686097091441653, 29.912741217773846 ], [ -95.686124090891909, 29.913919217523098 ], [ -95.686153091102994, 29.915160218260812 ], [ -95.686169090754106, 29.915810218340212 ], [ -95.686184091291594, 29.916439218318132 ], [ -95.686202091579887, 29.917224218718207 ], [ -95.686226091793472, 29.918268218547546 ], [ -95.686229091843373, 29.918356218187071 ], [ -95.686237091702253, 29.918723218521929 ], [ -95.686240091742278, 29.918821218405263 ], [ -95.686251091876727, 29.919318218472817 ], [ -95.686270091252979, 29.919948218967775 ], [ -95.686279091593804, 29.920334219010993 ], [ -95.686643091622756, 29.920303218680996 ], [ -95.687139091140423, 29.920238219151052 ], [ -95.687646091962506, 29.920220218809021 ], [ -95.688170092134158, 29.9202792191447 ], [ -95.68885409206159, 29.92042721909224 ], [ -95.689338092712916, 29.92056821924643 ], [ -95.690045092460167, 29.920751218892931 ], [ -95.690104092078585, 29.920759219133494 ], [ -95.690253092639551, 29.920780218763539 ], [ -95.690629092089623, 29.920834218553377 ], [ -95.691679092990924, 29.920993218627409 ], [ -95.692014093138695, 29.921033218959106 ], [ -95.692410093162493, 29.921081219123241 ], [ -95.693613092860218, 29.921240218669784 ], [ -95.69496909375205, 29.921394219275371 ], [ -95.69599509349888, 29.921488219157908 ], [ -95.696425094253087, 29.921576218507546 ], [ -95.697203094700697, 29.921700218493712 ], [ -95.697286093847538, 29.921724218900287 ], [ -95.697540094737292, 29.921800218449714 ], [ -95.698094094425485, 29.921942219242883 ], [ -95.698890094913011, 29.922178218620388 ], [ -95.69955009498706, 29.922402219068442 ], [ -95.699747095236006, 29.922460218504199 ], [ -95.700287095268337, 29.922620219107475 ], [ -95.7008710957072, 29.922791218884075 ], [ -95.701154095649756, 29.922862219222139 ], [ -95.70149609501135, 29.922943218677116 ], [ -95.702144095385577, 29.923061218560175 ], [ -95.702864095905525, 29.923155218974909 ], [ -95.703087095580756, 29.923180218719029 ], [ -95.703350095812226, 29.923209218655096 ], [ -95.703548096472986, 29.923237219224372 ], [ -95.70386009556114, 29.923281218734026 ], [ -95.704114096121401, 29.923320219283973 ], [ -95.705258096592686, 29.923462219276793 ], [ -95.706154096856082, 29.923580219097804 ], [ -95.707192096513864, 29.923674218538146 ], [ -95.708218097646551, 29.92383921843534 ], [ -95.70864009683028, 29.923896218646654 ], [ -95.708996097816183, 29.923945219270394 ], [ -95.710034097205224, 29.924122218844474 ], [ -95.710246097807698, 29.924158218792577 ], [ -95.71072209819846, 29.924226219297225 ], [ -95.711170098345548, 29.924297218919406 ], [ -95.711907098530673, 29.924379218460281 ], [ -95.713028098518762, 29.92450321876359 ], [ -95.713235098685288, 29.924537218713205 ], [ -95.713535098805977, 29.924586218582526 ], [ -95.714089098595636, 29.924663218903984 ], [ -95.71527409876046, 29.92481621876157 ], [ -95.716636099680713, 29.924987218594811 ], [ -95.71713909995934, 29.925054218468961 ], [ -95.717317099256107, 29.925085218430013 ], [ -95.717397099756226, 29.925099218436849 ], [ -95.717874099226606, 29.925146218337591 ], [ -95.71825810006311, 29.92519921912476 ], [ -95.718694099993044, 29.925229218838069 ], [ -95.719136100496115, 29.925258218474308 ], [ -95.719443099756447, 29.925288218747198 ], [ -95.719732100535353, 29.925317218888331 ], [ -95.720003100136552, 29.925352219057217 ], [ -95.720616100715645, 29.925441218945405 ], [ -95.721288100711945, 29.925506219061059 ], [ -95.721654100648422, 29.925571219094554 ], [ -95.72210210046245, 29.925630218693641 ], [ -95.722209100826205, 29.925641218959139 ], [ -95.722680100762247, 29.92569421860237 ], [ -95.723729101076785, 29.925842218706361 ], [ -95.724301100994367, 29.925930218893569 ], [ -95.724792101724901, 29.925982218995877 ], [ -95.72491510170336, 29.925995218515975 ], [ -95.725492101962232, 29.926042218584016 ], [ -95.725952101693892, 29.926078218758164 ], [ -95.72668910215468, 29.92616621872239 ], [ -95.727639102651423, 29.926278219137107 ], [ -95.728210101932049, 29.926338218365881 ], [ -95.728423102180699, 29.926361218926701 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 978, "Tract": "48201541007", "Area_SqMi": 1.728209376485758, "total_2009": 343, "total_2010": 315, "total_2011": 302, "total_2012": 268, "total_2013": 360, "total_2014": 315, "total_2015": 299, "total_2016": 390, "total_2017": 535, "total_2018": 551, "total_2019": 747, "total_2020": 719, "age1": 348, "age2": 407, "age3": 144, "earn1": 298, "earn2": 266, "earn3": 335, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 54, "naics_s05": 0, "naics_s06": 4, "naics_s07": 83, "naics_s08": 24, "naics_s09": 5, "naics_s10": 8, "naics_s11": 14, "naics_s12": 33, "naics_s13": 0, "naics_s14": 222, "naics_s15": 17, "naics_s16": 75, "naics_s17": 39, "naics_s18": 303, "naics_s19": 18, "naics_s20": 0, "race1": 658, "race2": 130, "race3": 9, "race4": 80, "race5": 2, "race6": 20, "ethnicity1": 594, "ethnicity2": 305, "edu1": 118, "edu2": 140, "edu3": 160, "edu4": 133, "Shape_Length": 43237.252088362759, "Shape_Area": 48179519.556513786, "total_2021": 718, "total_2022": 899 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.686279091593804, 29.920334219010993 ], [ -95.686270091252979, 29.919948218967775 ], [ -95.686251091876727, 29.919318218472817 ], [ -95.686240091742278, 29.918821218405263 ], [ -95.686237091702253, 29.918723218521929 ], [ -95.686229091843373, 29.918356218187071 ], [ -95.686226091793472, 29.918268218547546 ], [ -95.686202091579887, 29.917224218718207 ], [ -95.686184091291594, 29.916439218318132 ], [ -95.686169090754106, 29.915810218340212 ], [ -95.686153091102994, 29.915160218260812 ], [ -95.686124090891909, 29.913919217523098 ], [ -95.686097091441653, 29.912741217773846 ], [ -95.686008090963369, 29.908529216747073 ], [ -95.685902090707657, 29.908525216444218 ], [ -95.685686090307712, 29.908517216085603 ], [ -95.685198090982936, 29.908518216197709 ], [ -95.684787090141711, 29.908498216148448 ], [ -95.684461090518241, 29.908465216927773 ], [ -95.684117090498333, 29.908412216523132 ], [ -95.68387108975783, 29.908366216361912 ], [ -95.683618090306979, 29.908308216628392 ], [ -95.683364089657289, 29.908240216638422 ], [ -95.683110090105217, 29.908161216757055 ], [ -95.682857089977333, 29.908072216416041 ], [ -95.682600090048339, 29.90797021650269 ], [ -95.682352089582466, 29.907860216288128 ], [ -95.6822110893971, 29.907798216103529 ], [ -95.681557089406525, 29.907497216113651 ], [ -95.681167089241342, 29.907332216054048 ], [ -95.680578089529675, 29.90710521611042 ], [ -95.680256089055732, 29.906987216146021 ], [ -95.679950088801164, 29.906886216434685 ], [ -95.679552089114466, 29.906765216274955 ], [ -95.679470089074599, 29.90674121646774 ], [ -95.6790750894545, 29.906633216393566 ], [ -95.678937088619008, 29.906599216458286 ], [ -95.678660089088197, 29.906532216761192 ], [ -95.67822108864317, 29.906437216740297 ], [ -95.677765089121991, 29.906350216185004 ], [ -95.677289088268211, 29.906275216533434 ], [ -95.676983088860467, 29.906235216406422 ], [ -95.676806088769169, 29.906213216479902 ], [ -95.67630508863023, 29.906164216042846 ], [ -95.675784087743963, 29.906129216057188 ], [ -95.675431088493937, 29.906114215960994 ], [ -95.674882088030202, 29.906107216506193 ], [ -95.674628087446266, 29.906108216363009 ], [ -95.674059087226254, 29.906110216467283 ], [ -95.671774086905245, 29.906122216112475 ], [ -95.671426087466926, 29.906118216113949 ], [ -95.671260086504404, 29.906112216837201 ], [ -95.67093908718212, 29.906086216659077 ], [ -95.67063108672663, 29.906048216483594 ], [ -95.67033408676572, 29.906000216523569 ], [ -95.669616086017413, 29.905849216836984 ], [ -95.668672086389861, 29.907775216592068 ], [ -95.66850908653241, 29.908133216796923 ], [ -95.668134086044802, 29.909432217194457 ], [ -95.668076086412199, 29.91010921762048 ], [ -95.667971085810194, 29.910506217784658 ], [ -95.667984086441038, 29.911106217312494 ], [ -95.668118086273438, 29.911967217395997 ], [ -95.66844808610881, 29.913133217691652 ], [ -95.668518086236006, 29.913845218028598 ], [ -95.668431086497819, 29.915125218014467 ], [ -95.668431087085494, 29.916236218357849 ], [ -95.668431086976355, 29.917518218996634 ], [ -95.668428086991682, 29.917631219282608 ], [ -95.668427087075202, 29.917682218582421 ], [ -95.668464086411163, 29.918563218764461 ], [ -95.668517086952349, 29.91902821888096 ], [ -95.668477086716592, 29.919871219666231 ], [ -95.66835608701264, 29.920741219532111 ], [ -95.668196086479654, 29.921570220011596 ], [ -95.667939086863171, 29.922156220327324 ], [ -95.667051086663704, 29.923732220136468 ], [ -95.666107086242349, 29.925589220957455 ], [ -95.666056086792167, 29.925712220401518 ], [ -95.665867086956567, 29.926169220371943 ], [ -95.665697086077088, 29.926605221174633 ], [ -95.665635086330695, 29.926993220902283 ], [ -95.665612086687929, 29.927257221072665 ], [ -95.6655880868596, 29.927971221552763 ], [ -95.665603086213309, 29.928291221251424 ], [ -95.665619086893827, 29.92865422169999 ], [ -95.665637086219874, 29.928723221245377 ], [ -95.665674086310446, 29.928867220994341 ], [ -95.665928086733658, 29.929467221502136 ], [ -95.665937086878458, 29.929501221239391 ], [ -95.666091086547482, 29.930056221791343 ], [ -95.666145086857554, 29.930176221411354 ], [ -95.666596086569925, 29.930954222124864 ], [ -95.667126087161932, 29.931867222045462 ], [ -95.667324086660756, 29.932274221531458 ], [ -95.667525087628945, 29.93274322182889 ], [ -95.667670087243792, 29.933290222539881 ], [ -95.667748087376239, 29.933780222665085 ], [ -95.667795087401316, 29.934065222352942 ], [ -95.667826087361249, 29.934249222114165 ], [ -95.667860087874445, 29.934661222624005 ], [ -95.667837087537166, 29.935030222292642 ], [ -95.667793087138861, 29.935531222871621 ], [ -95.667737086956578, 29.936045222750202 ], [ -95.667616087755988, 29.936949223259898 ], [ -95.667559087831194, 29.937515222766326 ], [ -95.667515087808852, 29.937963223441116 ], [ -95.66747208755794, 29.939038223140479 ], [ -95.667474087331144, 29.939097223635301 ], [ -95.667501087037792, 29.939669223204874 ], [ -95.667517087809557, 29.940396223979491 ], [ -95.668057087667577, 29.941727223602374 ], [ -95.668473087808835, 29.942582223697286 ], [ -95.66870008753979, 29.942997224063927 ], [ -95.668973087795791, 29.943435224096543 ], [ -95.669226087675099, 29.943737224314006 ], [ -95.669569088617365, 29.94407722462601 ], [ -95.669911087922287, 29.944377224444661 ], [ -95.670345087960825, 29.944729224554855 ], [ -95.670785088825752, 29.945020224473179 ], [ -95.670982088788719, 29.945120224345281 ], [ -95.671471088529074, 29.945369224805361 ], [ -95.673350089531439, 29.946140224440171 ], [ -95.673755089271239, 29.946306224365156 ], [ -95.674211089863988, 29.946493225092258 ], [ -95.676314089933342, 29.947151224820747 ], [ -95.676349090469046, 29.947078224392634 ], [ -95.677381090279724, 29.944938224229904 ], [ -95.678553090293519, 29.9424972239837 ], [ -95.678124090613792, 29.942363223449508 ], [ -95.677814090115234, 29.942267223929868 ], [ -95.677668090556139, 29.942221223751663 ], [ -95.677505089704042, 29.942170224039106 ], [ -95.677214090470557, 29.942053223606667 ], [ -95.676362089782259, 29.941713224006936 ], [ -95.67585508974517, 29.941489223530251 ], [ -95.675939090159304, 29.941275223149603 ], [ -95.676002089913055, 29.941024223628698 ], [ -95.676002089785186, 29.94070222319495 ], [ -95.67590808997852, 29.94016222368904 ], [ -95.675749089250004, 29.939591223002612 ], [ -95.675358089581025, 29.937928222645152 ], [ -95.675280089182067, 29.937596223091209 ], [ -95.67518808905902, 29.936817222282304 ], [ -95.675188089346179, 29.935949222478129 ], [ -95.675281089047246, 29.935420222156537 ], [ -95.675362089421242, 29.934922222174222 ], [ -95.675448089192827, 29.934568221980363 ], [ -95.675668089265557, 29.933928222095815 ], [ -95.676401089922564, 29.932508221483651 ], [ -95.677126089357699, 29.931601221321667 ], [ -95.676998089462771, 29.931519221421791 ], [ -95.676140088896389, 29.930968221326335 ], [ -95.675591088956978, 29.930602221194388 ], [ -95.675325089314455, 29.930425221074113 ], [ -95.674595088740219, 29.929939221600474 ], [ -95.67436408851276, 29.929786221563184 ], [ -95.67362908809875, 29.929296221597173 ], [ -95.673263088566443, 29.928923221434051 ], [ -95.673136088355761, 29.928648221188006 ], [ -95.673080088433224, 29.928389220994323 ], [ -95.673061088296294, 29.92810422104435 ], [ -95.673042088392393, 29.926141220235564 ], [ -95.673013088401149, 29.924375220212344 ], [ -95.67310908872814, 29.924375220583048 ], [ -95.673049088045204, 29.921963219272794 ], [ -95.673033088240558, 29.920676219629428 ], [ -95.673046088575191, 29.920499219144045 ], [ -95.673001087643797, 29.918898219264918 ], [ -95.672971087507122, 29.91764521882013 ], [ -95.672970088058705, 29.917597218806836 ], [ -95.67307508796921, 29.917600218702919 ], [ -95.674538088830275, 29.917610218413937 ], [ -95.675842088450167, 29.917699218784396 ], [ -95.677427088999195, 29.918286218392552 ], [ -95.679427089903456, 29.919357218714925 ], [ -95.679991090245068, 29.91958121909104 ], [ -95.680351090218394, 29.919669218618765 ], [ -95.68066308968028, 29.919722218701953 ], [ -95.681992090121113, 29.919891219300602 ], [ -95.684537090500797, 29.920161218951346 ], [ -95.68460609145059, 29.920170218699038 ], [ -95.68532309091438, 29.920240218673193 ], [ -95.686122091640897, 29.920318218821748 ], [ -95.686279091593804, 29.920334219010993 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 979, "Tract": "48201250407", "Area_SqMi": 1.6321284238716773, "total_2009": 90, "total_2010": 116, "total_2011": 82, "total_2012": 107, "total_2013": 112, "total_2014": 105, "total_2015": 134, "total_2016": 160, "total_2017": 228, "total_2018": 216, "total_2019": 263, "total_2020": 279, "age1": 127, "age2": 174, "age3": 57, "earn1": 105, "earn2": 174, "earn3": 79, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 13, "naics_s06": 8, "naics_s07": 121, "naics_s08": 7, "naics_s09": 0, "naics_s10": 18, "naics_s11": 10, "naics_s12": 11, "naics_s13": 1, "naics_s14": 69, "naics_s15": 22, "naics_s16": 38, "naics_s17": 0, "naics_s18": 24, "naics_s19": 5, "naics_s20": 0, "race1": 257, "race2": 69, "race3": 3, "race4": 22, "race5": 0, "race6": 7, "ethnicity1": 238, "ethnicity2": 120, "edu1": 48, "edu2": 69, "edu3": 59, "edu4": 55, "Shape_Length": 29191.334822907138, "Shape_Area": 45500947.041827098, "total_2021": 356, "total_2022": 358 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.205519970615597, 29.974313246566908 ], [ -95.205544971284468, 29.974242246805748 ], [ -95.205519971021943, 29.973950246471667 ], [ -95.205525970328864, 29.973730246104523 ], [ -95.205525971023633, 29.972515245889117 ], [ -95.205493970391586, 29.971927245630717 ], [ -95.205493970174103, 29.971595245727247 ], [ -95.20549397103575, 29.969909245832159 ], [ -95.205493970620452, 29.96968924531523 ], [ -95.205480970278117, 29.969530245726109 ], [ -95.205505970822699, 29.969249245780301 ], [ -95.205474970643934, 29.968683245351851 ], [ -95.205499970270694, 29.968199245160619 ], [ -95.205492970684446, 29.968112245098482 ], [ -95.205473970447244, 29.96789124536043 ], [ -95.205486970293535, 29.967693244942957 ], [ -95.205473970070017, 29.967226245357093 ], [ -95.205479970527875, 29.966220245166888 ], [ -95.20547797059892, 29.965818244543087 ], [ -95.205473970705512, 29.964521244108379 ], [ -95.205473970270617, 29.964394244046222 ], [ -95.205432969955069, 29.963356244354536 ], [ -95.205430970773392, 29.963297243928814 ], [ -95.203843970180699, 29.963277244473193 ], [ -95.194199967151476, 29.963225244886438 ], [ -95.190510966413171, 29.96344924444135 ], [ -95.189465965847802, 29.963455244952605 ], [ -95.18596196515567, 29.963526245105438 ], [ -95.180907964081541, 29.963628245054011 ], [ -95.177834962794307, 29.963690244970028 ], [ -95.177844963413435, 29.966302245898984 ], [ -95.177849963520316, 29.967621246416318 ], [ -95.17808096406732, 29.980201249032728 ], [ -95.178096964361927, 29.980714248711372 ], [ -95.178101964327396, 29.980851249164314 ], [ -95.179040964486944, 29.980823248419121 ], [ -95.179929964107757, 29.980609248403042 ], [ -95.180594965124982, 29.980454248185804 ], [ -95.180936964296947, 29.980261248453665 ], [ -95.181514964870388, 29.979962248379255 ], [ -95.182242965117126, 29.979555248650911 ], [ -95.182542965472081, 29.979384248142676 ], [ -95.182885965338144, 29.979259247923068 ], [ -95.183248964914213, 29.979127248364744 ], [ -95.183909965915561, 29.97891124817026 ], [ -95.184621965957064, 29.978801247742961 ], [ -95.185003965783253, 29.97874624775088 ], [ -95.185580966146517, 29.978709247777939 ], [ -95.186208966563512, 29.978713247870637 ], [ -95.186871966574827, 29.978802248444168 ], [ -95.186952965864748, 29.978806248102931 ], [ -95.187121965848561, 29.978816247755368 ], [ -95.188643966395034, 29.978913248115383 ], [ -95.188986966615829, 29.978967247710628 ], [ -95.190094967131259, 29.978867248372076 ], [ -95.191053967473607, 29.979012247649734 ], [ -95.191192966975294, 29.979027247603923 ], [ -95.191549967142876, 29.979089247910125 ], [ -95.192226967093816, 29.979193248099016 ], [ -95.192355967826188, 29.979208247653453 ], [ -95.192492967894339, 29.979233247762206 ], [ -95.193159968196071, 29.979312247879385 ], [ -95.19349796766592, 29.979342247934568 ], [ -95.193655967763647, 29.979357247726771 ], [ -95.194176968009018, 29.979382247533714 ], [ -95.194591968681067, 29.979384247948168 ], [ -95.194734967765015, 29.979388247761058 ], [ -95.195235967935758, 29.979375247546134 ], [ -95.1954089683571, 29.979365248111936 ], [ -95.195537968695774, 29.979359248103897 ], [ -95.195809969026342, 29.979338247750835 ], [ -95.195853968053385, 29.979169247703851 ], [ -95.19595896844929, 29.978769247943688 ], [ -95.196040968068274, 29.978417247413013 ], [ -95.196154968972138, 29.977790247359859 ], [ -95.196198968937864, 29.977729247140513 ], [ -95.19621196864847, 29.977592247763319 ], [ -95.196274968415267, 29.977410247822021 ], [ -95.196305968266145, 29.977245247260726 ], [ -95.196324968413521, 29.977207247808217 ], [ -95.196324968250963, 29.977075247319135 ], [ -95.196362968631036, 29.977042246930978 ], [ -95.196362969024136, 29.976987247716266 ], [ -95.19635096863496, 29.976860247374624 ], [ -95.196438968842926, 29.976591246991042 ], [ -95.196495968744841, 29.976360247329939 ], [ -95.196785968209184, 29.975601247322516 ], [ -95.197031968996015, 29.975205247052092 ], [ -95.19720296885022, 29.974930247187373 ], [ -95.197366968564353, 29.974799246914628 ], [ -95.197606968706054, 29.974612247230983 ], [ -95.197707968627284, 29.974546246836162 ], [ -95.198004968601438, 29.974425246329719 ], [ -95.198086969060526, 29.974397247176583 ], [ -95.19828896863865, 29.974386246475966 ], [ -95.200808969195037, 29.974397246396268 ], [ -95.201054970094916, 29.974424246763416 ], [ -95.201092969983179, 29.974419246989203 ], [ -95.201124970029568, 29.974391246808977 ], [ -95.201155969626285, 29.974391246419991 ], [ -95.201275969180983, 29.974424247089068 ], [ -95.201408969862698, 29.97441924660157 ], [ -95.201578969802725, 29.974396246726716 ], [ -95.202210970250789, 29.974391246793687 ], [ -95.205027971053653, 29.974396246552008 ], [ -95.205443971022348, 29.974385246857064 ], [ -95.205488970970194, 29.974357246548795 ], [ -95.205519970615597, 29.974313246566908 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 980, "Tract": "48201240505", "Area_SqMi": 0.13244005725754471, "total_2009": 62, "total_2010": 78, "total_2011": 135, "total_2012": 99, "total_2013": 108, "total_2014": 90, "total_2015": 93, "total_2016": 90, "total_2017": 96, "total_2018": 105, "total_2019": 93, "total_2020": 115, "age1": 33, "age2": 76, "age3": 27, "earn1": 15, "earn2": 20, "earn3": 101, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 93, "naics_s05": 3, "naics_s06": 0, "naics_s07": 20, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 108, "race2": 15, "race3": 3, "race4": 10, "race5": 0, "race6": 0, "ethnicity1": 71, "ethnicity2": 65, "edu1": 32, "edu2": 20, "edu3": 26, "edu4": 25, "Shape_Length": 10691.779329306246, "Shape_Area": 3692202.1229169425, "total_2021": 111, "total_2022": 136 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.39987901936415, 29.953823235855211 ], [ -95.399868019789977, 29.953582235959573 ], [ -95.399847019318415, 29.953330235889343 ], [ -95.39978901939449, 29.952722235370835 ], [ -95.399768019674937, 29.952544235342341 ], [ -95.399765019781626, 29.952512235154071 ], [ -95.399748019464681, 29.95232123561933 ], [ -95.399701019735986, 29.951706234947729 ], [ -95.399678019213596, 29.951483235015637 ], [ -95.399483019819044, 29.950603234968106 ], [ -95.398120019369827, 29.950619234798442 ], [ -95.397073018669715, 29.950627235281232 ], [ -95.39570101875654, 29.950638234889652 ], [ -95.395491018937079, 29.95063723539543 ], [ -95.394167018348952, 29.950655235081033 ], [ -95.393192017781118, 29.950659235146841 ], [ -95.391611017118862, 29.95068823527372 ], [ -95.391392017664103, 29.950685235523043 ], [ -95.391180017171877, 29.950689235534568 ], [ -95.390494016903077, 29.950710235021525 ], [ -95.388811017072598, 29.950750235492038 ], [ -95.388077016187466, 29.950770235699576 ], [ -95.387404016146476, 29.9508112352319 ], [ -95.387036015936303, 29.950849235621494 ], [ -95.386730016531857, 29.950905235500212 ], [ -95.386269015622588, 29.951002235483521 ], [ -95.386385016009186, 29.951466235463247 ], [ -95.386486016440031, 29.951789235733539 ], [ -95.389125017227045, 29.951757236009765 ], [ -95.389841017469493, 29.95175323560423 ], [ -95.389870017482139, 29.952965235882441 ], [ -95.393227017865797, 29.95292023562925 ], [ -95.393246017612611, 29.953903235402425 ], [ -95.39531801899588, 29.953888236025012 ], [ -95.398307019103996, 29.953858235680336 ], [ -95.39940701973822, 29.953838236071377 ], [ -95.39987901936415, 29.953823235855211 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 981, "Tract": "48201554904", "Area_SqMi": 0.70279084908819867, "total_2009": 1246, "total_2010": 1306, "total_2011": 302, "total_2012": 310, "total_2013": 399, "total_2014": 592, "total_2015": 410, "total_2016": 556, "total_2017": 487, "total_2018": 546, "total_2019": 569, "total_2020": 657, "age1": 260, "age2": 400, "age3": 103, "earn1": 162, "earn2": 264, "earn3": 337, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 31, "naics_s05": 0, "naics_s06": 23, "naics_s07": 51, "naics_s08": 13, "naics_s09": 0, "naics_s10": 47, "naics_s11": 0, "naics_s12": 83, "naics_s13": 0, "naics_s14": 15, "naics_s15": 38, "naics_s16": 315, "naics_s17": 29, "naics_s18": 105, "naics_s19": 6, "naics_s20": 0, "race1": 585, "race2": 97, "race3": 11, "race4": 48, "race5": 1, "race6": 21, "ethnicity1": 520, "ethnicity2": 243, "edu1": 91, "edu2": 101, "edu3": 176, "edu4": 135, "Shape_Length": 19485.434286892221, "Shape_Area": 19592606.034019418, "total_2021": 673, "total_2022": 763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.534529059826241, 30.073293255407712 ], [ -95.534524059469561, 30.073055255244054 ], [ -95.534520059166397, 30.072790255324282 ], [ -95.534453059359706, 30.072489255454645 ], [ -95.534291059056798, 30.072161255468725 ], [ -95.533958058960238, 30.0718592553112 ], [ -95.533412058944947, 30.071668255343539 ], [ -95.532638059577323, 30.071224255049881 ], [ -95.532393058782446, 30.070975254860937 ], [ -95.532243058856466, 30.070794254418743 ], [ -95.532195058498303, 30.070765254997159 ], [ -95.532181059445747, 30.070751254718186 ], [ -95.532110059162221, 30.070618254689062 ], [ -95.532052059388292, 30.070333254465549 ], [ -95.531983058732976, 30.069714254660628 ], [ -95.531893058466096, 30.069054254821346 ], [ -95.531875058292968, 30.068589254502921 ], [ -95.531781059217181, 30.068205254457293 ], [ -95.531510058515295, 30.067896253882619 ], [ -95.530929058266665, 30.067606254631961 ], [ -95.530859058322946, 30.067573254526842 ], [ -95.530171058242985, 30.067259254468279 ], [ -95.528850058359026, 30.066688253747422 ], [ -95.527608057038051, 30.066123254241354 ], [ -95.527472057834856, 30.06608625395123 ], [ -95.527371057416133, 30.066058254401383 ], [ -95.526949057325297, 30.065860254019785 ], [ -95.526669057743192, 30.065771254358381 ], [ -95.526418057697654, 30.065728254139621 ], [ -95.526159056724936, 30.065659253892349 ], [ -95.525919056901671, 30.065616253622117 ], [ -95.525572057493875, 30.065697254288349 ], [ -95.525123056778455, 30.065866253834407 ], [ -95.524711056994576, 30.066156254482443 ], [ -95.524412056330519, 30.066351253815068 ], [ -95.52420505636168, 30.066395253926764 ], [ -95.523756056603119, 30.066498254410796 ], [ -95.523391056447252, 30.066517254252798 ], [ -95.52227005648669, 30.066299254391808 ], [ -95.521415055690369, 30.066180254232354 ], [ -95.521003056300827, 30.066082254248489 ], [ -95.520518056081471, 30.065992254232437 ], [ -95.520122055775673, 30.065919254478018 ], [ -95.519688055608327, 30.065809254643298 ], [ -95.519089055471952, 30.06570725415791 ], [ -95.518532054905108, 30.065591254633663 ], [ -95.518199055335671, 30.065535253886331 ], [ -95.517882055118491, 30.065521254091198 ], [ -95.517648054927733, 30.065521254277126 ], [ -95.517221054901484, 30.0655212543966 ], [ -95.516752054282591, 30.065512253971935 ], [ -95.516404054254082, 30.065507254362952 ], [ -95.515749054841876, 30.065538254545526 ], [ -95.51554005483905, 30.065538254695195 ], [ -95.515390053988355, 30.06552925409369 ], [ -95.515184054344502, 30.065546254137409 ], [ -95.514644054431272, 30.065608254312572 ], [ -95.514298054312448, 30.065670254413252 ], [ -95.513954053525026, 30.065752254379742 ], [ -95.513646053510016, 30.065832254886644 ], [ -95.513459053995547, 30.065893254885943 ], [ -95.513170053993051, 30.065998254791502 ], [ -95.512657053300984, 30.066225254413645 ], [ -95.512282054130381, 30.066405254477072 ], [ -95.511789053131722, 30.066695254619454 ], [ -95.511592053878786, 30.066831254690548 ], [ -95.511475053625574, 30.066915254897726 ], [ -95.511042053134219, 30.067253254396046 ], [ -95.510169053306086, 30.067921255188622 ], [ -95.509492052972661, 30.068461254909202 ], [ -95.509037052551619, 30.068892255120485 ], [ -95.508546052828649, 30.069278255745115 ], [ -95.508417053305209, 30.069380255166632 ], [ -95.50846705291174, 30.069425255015535 ], [ -95.508608053012452, 30.069564255436497 ], [ -95.50874605239477, 30.06968225502154 ], [ -95.508850052900712, 30.069778255560735 ], [ -95.508882052839851, 30.069808255016579 ], [ -95.509034052483543, 30.069956255565039 ], [ -95.509151053024738, 30.070069255292641 ], [ -95.509427053024723, 30.070325255244537 ], [ -95.509556053188334, 30.070461255179417 ], [ -95.509860053279951, 30.07074925518123 ], [ -95.511332053506166, 30.07214825552574 ], [ -95.511450053742323, 30.072251256258085 ], [ -95.511563054167112, 30.072362256309905 ], [ -95.511677053588897, 30.072465255886311 ], [ -95.512233053693322, 30.072995255655087 ], [ -95.512565054518333, 30.073300256295266 ], [ -95.512804054307438, 30.0735242557048 ], [ -95.51342905436951, 30.074107256371228 ], [ -95.513821053903001, 30.074104255847182 ], [ -95.51472305432722, 30.074098255765207 ], [ -95.516959054676448, 30.074082256182376 ], [ -95.518991056177413, 30.074068255648427 ], [ -95.52158305635929, 30.074051255662923 ], [ -95.522679056625279, 30.074044255374762 ], [ -95.522766056479455, 30.074043255814679 ], [ -95.522819057119321, 30.074043255831988 ], [ -95.5229020566494, 30.074042255597259 ], [ -95.525409056963596, 30.07402625583849 ], [ -95.5260310571215, 30.073987256112272 ], [ -95.526390057095767, 30.073964255844416 ], [ -95.528171058163366, 30.073784255231907 ], [ -95.532264058768291, 30.073336255459797 ], [ -95.532389059425739, 30.073323255132593 ], [ -95.532982059765843, 30.073314255413177 ], [ -95.53323205889626, 30.073310255265451 ], [ -95.533473059269696, 30.073307255459046 ], [ -95.534233060015168, 30.073297255200774 ], [ -95.534435059670557, 30.073294255374059 ], [ -95.534529059826241, 30.073293255407712 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 982, "Tract": "48201554907", "Area_SqMi": 1.2311899986121784, "total_2009": 442, "total_2010": 441, "total_2011": 654, "total_2012": 669, "total_2013": 750, "total_2014": 868, "total_2015": 1014, "total_2016": 1245, "total_2017": 1155, "total_2018": 1007, "total_2019": 1085, "total_2020": 1084, "age1": 437, "age2": 549, "age3": 247, "earn1": 360, "earn2": 498, "earn3": 375, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 41, "naics_s05": 26, "naics_s06": 76, "naics_s07": 274, "naics_s08": 3, "naics_s09": 60, "naics_s10": 34, "naics_s11": 14, "naics_s12": 12, "naics_s13": 0, "naics_s14": 29, "naics_s15": 31, "naics_s16": 84, "naics_s17": 5, "naics_s18": 475, "naics_s19": 64, "naics_s20": 0, "race1": 913, "race2": 164, "race3": 14, "race4": 118, "race5": 0, "race6": 24, "ethnicity1": 822, "ethnicity2": 411, "edu1": 182, "edu2": 201, "edu3": 242, "edu4": 171, "Shape_Length": 31133.058227494923, "Shape_Area": 34323469.958565213, "total_2021": 1161, "total_2022": 1233 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.556633065301142, 30.075320254558605 ], [ -95.556732065654273, 30.075247255014077 ], [ -95.556450064921464, 30.075042254816424 ], [ -95.556422064885382, 30.075021255010952 ], [ -95.556122065318021, 30.074802255061776 ], [ -95.555863065086825, 30.074654254500459 ], [ -95.555426064645062, 30.074404254410091 ], [ -95.555108065365616, 30.074288255059635 ], [ -95.554812065391516, 30.074179254691735 ], [ -95.554473064799723, 30.074055254337022 ], [ -95.554054064772188, 30.07390125462852 ], [ -95.553908065085508, 30.073847254521905 ], [ -95.552931064191071, 30.073564254524531 ], [ -95.551799063999951, 30.073284254286641 ], [ -95.551201063485067, 30.073217254333827 ], [ -95.55105006423085, 30.073197254708361 ], [ -95.550587063618011, 30.073134254431835 ], [ -95.549715063209092, 30.07310825473337 ], [ -95.542376061395316, 30.073164254740171 ], [ -95.540362060736541, 30.073215254878981 ], [ -95.534529059826241, 30.073293255407712 ], [ -95.534435059670557, 30.073294255374059 ], [ -95.534233060015168, 30.073297255200774 ], [ -95.533473059269696, 30.073307255459046 ], [ -95.53323205889626, 30.073310255265451 ], [ -95.532982059765843, 30.073314255413177 ], [ -95.532389059425739, 30.073323255132593 ], [ -95.532264058768291, 30.073336255459797 ], [ -95.528171058163366, 30.073784255231907 ], [ -95.526390057095767, 30.073964255844416 ], [ -95.5260310571215, 30.073987256112272 ], [ -95.525409056963596, 30.07402625583849 ], [ -95.5229020566494, 30.074042255597259 ], [ -95.522819057119321, 30.074043255831988 ], [ -95.522766056479455, 30.074043255814679 ], [ -95.522679056625279, 30.074044255374762 ], [ -95.52158305635929, 30.074051255662923 ], [ -95.518991056177413, 30.074068255648427 ], [ -95.516959054676448, 30.074082256182376 ], [ -95.51472305432722, 30.074098255765207 ], [ -95.513821053903001, 30.074104255847182 ], [ -95.51342905436951, 30.074107256371228 ], [ -95.515401055039575, 30.076011256345762 ], [ -95.517381055897388, 30.077891256907858 ], [ -95.520194055969597, 30.080563256791979 ], [ -95.520390055935124, 30.080750256899826 ], [ -95.520629056947868, 30.080982257223766 ], [ -95.520755056311643, 30.081095257501413 ], [ -95.524119057747285, 30.084288257434942 ], [ -95.524759057949211, 30.084874258087435 ], [ -95.52545805747063, 30.085534258089154 ], [ -95.525521057531705, 30.085593258475608 ], [ -95.526629058233581, 30.086646258641572 ], [ -95.526947057842605, 30.086949258012041 ], [ -95.527194058621731, 30.086867258038499 ], [ -95.527506058778314, 30.086768258578637 ], [ -95.52772005825048, 30.086702258253894 ], [ -95.527934059046899, 30.086642258563788 ], [ -95.528169058493262, 30.086587258409452 ], [ -95.528254058141357, 30.08657125834786 ], [ -95.529585058673703, 30.086321258066441 ], [ -95.531557059620525, 30.085951258221364 ], [ -95.531941059435681, 30.085874257820908 ], [ -95.532522059615999, 30.085754257782625 ], [ -95.532785060233834, 30.085688257899282 ], [ -95.533136059352941, 30.085589257644621 ], [ -95.533454060268625, 30.085469257537007 ], [ -95.533925059978117, 30.085282257819134 ], [ -95.534199060132622, 30.085151257818687 ], [ -95.534627060317476, 30.084932258062196 ], [ -95.534944060334581, 30.084734257236573 ], [ -95.535372060026646, 30.08446025761274 ], [ -95.535657060861411, 30.084252257173386 ], [ -95.535986060767158, 30.083978257774341 ], [ -95.536194060231935, 30.083791256922353 ], [ -95.536545061005398, 30.083441257703377 ], [ -95.53665506037926, 30.083320256994934 ], [ -95.536874061177713, 30.083046257436401 ], [ -95.537225060851597, 30.082553256678228 ], [ -95.538336061170142, 30.081060256761482 ], [ -95.538760060847324, 30.080492256752088 ], [ -95.538957061109357, 30.080250256128199 ], [ -95.539330061690023, 30.079834256206407 ], [ -95.53968106094527, 30.079505256196949 ], [ -95.539944061643254, 30.079275256280336 ], [ -95.540108061693502, 30.079143256292074 ], [ -95.540481060930929, 30.078891255865305 ], [ -95.540887061644199, 30.078639256121328 ], [ -95.541133061392159, 30.078496256464689 ], [ -95.541517061233407, 30.078299255867815 ], [ -95.541923062187948, 30.07811325612272 ], [ -95.542251061734447, 30.077981255514331 ], [ -95.542679062215669, 30.077838255522106 ], [ -95.543085061609517, 30.07772925629661 ], [ -95.543589062371922, 30.077619255772916 ], [ -95.544082062754555, 30.077532255901232 ], [ -95.544795062677338, 30.077466255582934 ], [ -95.545265062285026, 30.077461255381841 ], [ -95.546056062805448, 30.077455255879439 ], [ -95.550117063439032, 30.077411255372176 ], [ -95.550797063697217, 30.077389255686125 ], [ -95.551455064213414, 30.077356255871809 ], [ -95.551778064497455, 30.07732525514848 ], [ -95.55179506388636, 30.077323255261891 ], [ -95.552442064899481, 30.077236255345603 ], [ -95.553056064645588, 30.077115255347433 ], [ -95.553987064746025, 30.076819254855039 ], [ -95.554345065256953, 30.076651254974021 ], [ -95.55500406547948, 30.076356254784571 ], [ -95.555366065285568, 30.076169255403574 ], [ -95.555761065679818, 30.075939254809473 ], [ -95.556134064758936, 30.07568725527338 ], [ -95.55641306559717, 30.075482254922981 ], [ -95.556633065301142, 30.075320254558605 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 983, "Tract": "48201555305", "Area_SqMi": 4.706476493395181, "total_2009": 71, "total_2010": 188, "total_2011": 258, "total_2012": 199, "total_2013": 261, "total_2014": 492, "total_2015": 735, "total_2016": 957, "total_2017": 1011, "total_2018": 1344, "total_2019": 1283, "total_2020": 1363, "age1": 589, "age2": 1064, "age3": 344, "earn1": 390, "earn2": 632, "earn3": 975, "naics_s01": 0, "naics_s02": 7, "naics_s03": 0, "naics_s04": 31, "naics_s05": 25, "naics_s06": 276, "naics_s07": 433, "naics_s08": 52, "naics_s09": 3, "naics_s10": 46, "naics_s11": 30, "naics_s12": 87, "naics_s13": 27, "naics_s14": 79, "naics_s15": 78, "naics_s16": 300, "naics_s17": 25, "naics_s18": 282, "naics_s19": 216, "naics_s20": 0, "race1": 1546, "race2": 267, "race3": 11, "race4": 132, "race5": 8, "race6": 33, "ethnicity1": 1492, "ethnicity2": 505, "edu1": 245, "edu2": 339, "edu3": 402, "edu4": 422, "Shape_Length": 60306.383190068103, "Shape_Area": 131208509.4208342, "total_2021": 1837, "total_2022": 1997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.553157067069705, 30.136625267072382 ], [ -95.553083067119104, 30.136625267901056 ], [ -95.55301006747996, 30.136632267105455 ], [ -95.552935067624404, 30.136626267621423 ], [ -95.552707067258353, 30.136647267034874 ], [ -95.552576067654442, 30.13664626706473 ], [ -95.552506067629793, 30.136656267905256 ], [ -95.552446067567828, 30.136653267153086 ], [ -95.552334067330364, 30.136658267325906 ], [ -95.552231067272899, 30.136672267773879 ], [ -95.552170066913916, 30.136671267392096 ], [ -95.552025066745117, 30.13666826726163 ], [ -95.551949066651773, 30.136661267780845 ], [ -95.551747066504234, 30.136656267422861 ], [ -95.551679066900448, 30.13664326723012 ], [ -95.551621066565261, 30.136646267615816 ], [ -95.551420066743276, 30.13663926717966 ], [ -95.551276067172566, 30.136638267485726 ], [ -95.551196066443126, 30.136631267892689 ], [ -95.551129066445469, 30.136639267362355 ], [ -95.550910066861476, 30.136644267402477 ], [ -95.550532067166486, 30.13666226793536 ], [ -95.549907066950908, 30.136669267290348 ], [ -95.54834506581345, 30.136672267883455 ], [ -95.547904065569298, 30.136680267313412 ], [ -95.547787065838335, 30.136676267339361 ], [ -95.547560065760052, 30.136675267904359 ], [ -95.547329065629128, 30.136669267490898 ], [ -95.546850066246506, 30.13666626753016 ], [ -95.546856065801478, 30.136841267541115 ], [ -95.546595065341023, 30.136845268081199 ], [ -95.545927065482203, 30.136848267826316 ], [ -95.544023064953706, 30.136856267765371 ], [ -95.542901065117547, 30.136865267494017 ], [ -95.541799064429767, 30.136875267511687 ], [ -95.54046706452084, 30.136874267631743 ], [ -95.539249063824769, 30.136860268186048 ], [ -95.538474063467802, 30.136852267827603 ], [ -95.536416063214688, 30.136881267940336 ], [ -95.534712062659537, 30.136881267990983 ], [ -95.533989062156365, 30.136889267989329 ], [ -95.531400061862172, 30.136901267981202 ], [ -95.527050060534975, 30.136905268572782 ], [ -95.527050060193261, 30.13694726798272 ], [ -95.523993059403196, 30.13693326819919 ], [ -95.517180057649981, 30.136933268788052 ], [ -95.517185057705831, 30.13625826862738 ], [ -95.517194057846282, 30.134885268292322 ], [ -95.517662057796244, 30.134885268034463 ], [ -95.517673057718795, 30.13439126831549 ], [ -95.517815058433897, 30.134139268495581 ], [ -95.518046058720088, 30.13394226774475 ], [ -95.518419058564845, 30.133711268376629 ], [ -95.519129058051973, 30.13324526821815 ], [ -95.519362058860892, 30.133064268126173 ], [ -95.519625058263543, 30.132867267859236 ], [ -95.519855058502529, 30.132731268247763 ], [ -95.520009058402238, 30.132483267904849 ], [ -95.520184058306015, 30.132242267288369 ], [ -95.520316058695883, 30.132055268103628 ], [ -95.520537058642233, 30.131774267936613 ], [ -95.520546058928446, 30.131630267563619 ], [ -95.520420058467764, 30.130938267592981 ], [ -95.520286058977575, 30.130429267070106 ], [ -95.520195058187994, 30.130074267191631 ], [ -95.520156058081056, 30.129871267297137 ], [ -95.519016058435582, 30.130067267320737 ], [ -95.517621057959346, 30.129978267517991 ], [ -95.517159057804903, 30.129850267367033 ], [ -95.516847058244409, 30.129796266920135 ], [ -95.516477057485332, 30.129624267232352 ], [ -95.516320057678769, 30.129535267525203 ], [ -95.516059057778008, 30.129449266893911 ], [ -95.515852057125883, 30.12933326769345 ], [ -95.515672056912223, 30.129274267714948 ], [ -95.515156056886369, 30.128985267161788 ], [ -95.514964057459224, 30.12885126724731 ], [ -95.514588057333867, 30.128631266781234 ], [ -95.513914056745705, 30.128137267440856 ], [ -95.513202056313489, 30.127871266982712 ], [ -95.512869057054374, 30.127786267007838 ], [ -95.511937056359017, 30.127607267116169 ], [ -95.510331055895676, 30.127355267177464 ], [ -95.509017055682406, 30.127254266836186 ], [ -95.508864055690808, 30.12724826668779 ], [ -95.50594505503949, 30.127150267257331 ], [ -95.505943054432791, 30.127220267308154 ], [ -95.505909055349008, 30.127534267065364 ], [ -95.505821054532987, 30.128065267139029 ], [ -95.505806054505157, 30.128155267798981 ], [ -95.505790055110552, 30.12831126743221 ], [ -95.505773054673085, 30.128625267317634 ], [ -95.50577305438155, 30.128898267697849 ], [ -95.505785054546479, 30.129266267928706 ], [ -95.505791054792525, 30.129755267694939 ], [ -95.505817055282023, 30.130044268240155 ], [ -95.505819055085297, 30.130061267748793 ], [ -95.505823055095718, 30.130214267896445 ], [ -95.505820054772286, 30.130527267547233 ], [ -95.505847055027417, 30.130714267500025 ], [ -95.505835055403651, 30.130838268202108 ], [ -95.505797054875003, 30.130963267614217 ], [ -95.50573105444262, 30.131090267929977 ], [ -95.505463054874284, 30.131656268409483 ], [ -95.505391055171813, 30.131793267851453 ], [ -95.505179054792805, 30.132217268664409 ], [ -95.50511505524176, 30.132364268169567 ], [ -95.505016055214654, 30.132528268731107 ], [ -95.504992055144143, 30.132673268715632 ], [ -95.504974054882325, 30.132822268426597 ], [ -95.504946054915962, 30.132985268126138 ], [ -95.50493105487682, 30.133145268084007 ], [ -95.504924055100176, 30.133304268340019 ], [ -95.504933054568085, 30.133619268084946 ], [ -95.504913054546918, 30.133798268816651 ], [ -95.504892054715896, 30.134716268940846 ], [ -95.504890055276562, 30.13482726851851 ], [ -95.504878054562866, 30.135694268750271 ], [ -95.504871055472265, 30.135870268735694 ], [ -95.504875055071082, 30.136041269342062 ], [ -95.504872054856193, 30.136215269436526 ], [ -95.504860054801313, 30.136393269388453 ], [ -95.504872054727514, 30.136557269413473 ], [ -95.504859055520356, 30.136899269120757 ], [ -95.504843055114648, 30.137073268903787 ], [ -95.504857054751582, 30.137717268977806 ], [ -95.504834054847976, 30.13805126957331 ], [ -95.504824054984354, 30.139114269299718 ], [ -95.504815054710036, 30.139273269555101 ], [ -95.504813054892452, 30.139539269307882 ], [ -95.504844054860271, 30.139909269917535 ], [ -95.504858054852974, 30.140010269920339 ], [ -95.504857055212568, 30.140202270110827 ], [ -95.504857055453513, 30.140257269594827 ], [ -95.504888055191657, 30.14057526967229 ], [ -95.50489605536697, 30.140791269671489 ], [ -95.504873055119063, 30.140961269677639 ], [ -95.50481005484518, 30.141309270098951 ], [ -95.504736055436908, 30.14193827062881 ], [ -95.504685055076891, 30.142229270092759 ], [ -95.504669055082871, 30.142359269980211 ], [ -95.504638055271997, 30.142489269992996 ], [ -95.504596054716913, 30.142800270165448 ], [ -95.504596055423747, 30.14287427031174 ], [ -95.504580055616742, 30.14298527036572 ], [ -95.50444205523705, 30.143729270360691 ], [ -95.504438055649601, 30.143773270647948 ], [ -95.504702055252281, 30.145132270635621 ], [ -95.504890055036626, 30.145125270933242 ], [ -95.504997055405624, 30.145131271095046 ], [ -95.505098055499005, 30.14514727130523 ], [ -95.505132055536905, 30.145158270927798 ], [ -95.50521905507216, 30.145186270891053 ], [ -95.505800056063961, 30.145450271172482 ], [ -95.505958056083841, 30.145477271003834 ], [ -95.506085055304681, 30.145472270909309 ], [ -95.50619905619223, 30.145478270517927 ], [ -95.506376055694545, 30.14552227122498 ], [ -95.506515056329164, 30.145571271287881 ], [ -95.50664205574877, 30.145593271246867 ], [ -95.506768055936661, 30.145599270601505 ], [ -95.506844055698792, 30.145621270925407 ], [ -95.506932055742794, 30.145681270975349 ], [ -95.506977055994042, 30.145753270713538 ], [ -95.50697705637397, 30.145846271388493 ], [ -95.506913055562279, 30.146055271213697 ], [ -95.506901056218396, 30.146143270819401 ], [ -95.506913056448226, 30.146220270999706 ], [ -95.506995056504906, 30.146313270907296 ], [ -95.507164056121582, 30.146440271137983 ], [ -95.507179056333996, 30.146451271482924 ], [ -95.507425056126294, 30.146599271241723 ], [ -95.507539056521338, 30.146643270986008 ], [ -95.507817056280928, 30.146715271410766 ], [ -95.508077055881202, 30.146831270948038 ], [ -95.508209056198396, 30.146919271064032 ], [ -95.50841505629441, 30.147090270967034 ], [ -95.508488055967831, 30.14715027136533 ], [ -95.508646056602998, 30.147183271481747 ], [ -95.508798056760369, 30.147232271608736 ], [ -95.508850056361936, 30.147266271370388 ], [ -95.508873056682916, 30.147282271483824 ], [ -95.508924056239096, 30.147364270793624 ], [ -95.508924056648027, 30.147430270822873 ], [ -95.508892056225889, 30.14763427156382 ], [ -95.508905056290558, 30.147744271707058 ], [ -95.5089430561532, 30.147820271255828 ], [ -95.509069056518157, 30.147952271175608 ], [ -95.509341057039407, 30.148227271365936 ], [ -95.509486056500066, 30.148354271121345 ], [ -95.509695057014682, 30.148480271505662 ], [ -95.509757056284883, 30.148496271545838 ], [ -95.509847057259549, 30.148519271404489 ], [ -95.510299056560783, 30.148606271369342 ], [ -95.510693056954537, 30.14868127103394 ], [ -95.510853056653829, 30.148712271601905 ], [ -95.511137057050931, 30.148833271809877 ], [ -95.512098057445002, 30.149355271101825 ], [ -95.512396057272909, 30.149482271301022 ], [ -95.512509057074212, 30.149537271223341 ], [ -95.512560057676609, 30.149576271461523 ], [ -95.512611057115294, 30.149658271896254 ], [ -95.512667057936852, 30.149801271962129 ], [ -95.512724057927826, 30.149883271754824 ], [ -95.512971057822682, 30.150125271677013 ], [ -95.513028058193342, 30.15020827131362 ], [ -95.513097057553679, 30.150395271638011 ], [ -95.51316105809353, 30.1504442717685 ], [ -95.513451057510693, 30.15057627140401 ], [ -95.514103057739504, 30.150846271514972 ], [ -95.514242058094439, 30.150912271949736 ], [ -95.514609058230732, 30.151198271529843 ], [ -95.514685058379214, 30.151225271664078 ], [ -95.514767058597855, 30.151231271404392 ], [ -95.514862058275611, 30.151215271579311 ], [ -95.514982058200488, 30.151176271690588 ], [ -95.515102058452754, 30.151160271326308 ], [ -95.515210058152988, 30.15117127182867 ], [ -95.515298058417073, 30.151231271442541 ], [ -95.51534205788785, 30.151330271418288 ], [ -95.51533605787192, 30.151396271945796 ], [ -95.515266058328038, 30.151632271618425 ], [ -95.515273058455676, 30.151687271517474 ], [ -95.515336058030172, 30.151803271466111 ], [ -95.515386058544649, 30.15184727162729 ], [ -95.51551305886521, 30.151880271768746 ], [ -95.515684058176262, 30.151875272111361 ], [ -95.515785058327054, 30.15188027144772 ], [ -95.515867058767711, 30.151902272040147 ], [ -95.516019058392658, 30.152029272229658 ], [ -95.516120058756599, 30.152149272055475 ], [ -95.516196058602446, 30.152260271651421 ], [ -95.516202058724275, 30.152342272188783 ], [ -95.516177058563059, 30.152419272375788 ], [ -95.516120059131993, 30.15248527170154 ], [ -95.516082059049779, 30.152551272049926 ], [ -95.516076058919751, 30.152589272146542 ], [ -95.51608205861244, 30.152633272425103 ], [ -95.516170058534755, 30.152694272263734 ], [ -95.516436058384272, 30.152782271611173 ], [ -95.516518058417986, 30.152820272388492 ], [ -95.516601058266701, 30.152886272337138 ], [ -95.516740058785985, 30.153046271980468 ], [ -95.516828059330919, 30.153117272100946 ], [ -95.516879058864944, 30.153189271748936 ], [ -95.516891058975233, 30.153282272122095 ], [ -95.51684105852101, 30.153502272394164 ], [ -95.516828058383908, 30.15360127248762 ], [ -95.516828058628803, 30.153678272017405 ], [ -95.516847058579913, 30.153749272594691 ], [ -95.516885059363887, 30.15381527241712 ], [ -95.516948058426095, 30.153876272409512 ], [ -95.51702405883843, 30.153931272431706 ], [ -95.517119059097283, 30.153980272520073 ], [ -95.517163058845895, 30.154019271908631 ], [ -95.517176058768726, 30.154057272023458 ], [ -95.517176059136418, 30.154151272128573 ], [ -95.517207058666884, 30.154200272308429 ], [ -95.517264058741361, 30.154239272467546 ], [ -95.517302059234055, 30.154255272151847 ], [ -95.517365059103739, 30.154261272049983 ], [ -95.517441059277829, 30.154250272115625 ], [ -95.517618059009138, 30.154184272019101 ], [ -95.517833059010769, 30.154140272014658 ], [ -95.517922059233868, 30.154102272148531 ], [ -95.518036059605393, 30.154003272381832 ], [ -95.518099059065705, 30.153860271956219 ], [ -95.51822005930903, 30.153656271909409 ], [ -95.518365059411153, 30.153519272500162 ], [ -95.518536059510694, 30.153404272087247 ], [ -95.518549059476754, 30.15338227226157 ], [ -95.51853605908542, 30.153338272377365 ], [ -95.518492059024027, 30.153277272020109 ], [ -95.518416059311789, 30.153211272135625 ], [ -95.518334059237745, 30.153156271951495 ], [ -95.518283058773548, 30.153096271736906 ], [ -95.518251058896084, 30.153030272378331 ], [ -95.518245059234019, 30.152975272427284 ], [ -95.518264059421753, 30.15287027236673 ], [ -95.518315059309288, 30.152815271942533 ], [ -95.518530059701561, 30.152689272367432 ], [ -95.518606059308155, 30.152634271675254 ], [ -95.518612059195462, 30.152552272273891 ], [ -95.518555059144745, 30.152288272153044 ], [ -95.518555058820709, 30.152238272131999 ], [ -95.518581059472382, 30.152189271668057 ], [ -95.518682058905696, 30.152189271595699 ], [ -95.51890305894446, 30.152266271447306 ], [ -95.519036058908782, 30.152365271554107 ], [ -95.519441059386764, 30.152568271837705 ], [ -95.519574059893586, 30.152645271791791 ], [ -95.519700059555447, 30.152695271495521 ], [ -95.519795059153978, 30.152706272198905 ], [ -95.519915059197885, 30.152739272037202 ], [ -95.519966059879891, 30.152772272123133 ], [ -95.520004059748032, 30.15281627233124 ], [ -95.520016059479318, 30.152854271564959 ], [ -95.52001006012874, 30.152909271501684 ], [ -95.519921059707244, 30.152948271793598 ], [ -95.519700059030328, 30.152959272061846 ], [ -95.519611059466158, 30.152997272192728 ], [ -95.519517059703873, 30.153052271654936 ], [ -95.519453059433545, 30.153118271715101 ], [ -95.519384059436874, 30.153239272247468 ], [ -95.519377059487852, 30.153283271742826 ], [ -95.519377059299671, 30.153343272437326 ], [ -95.519396059078147, 30.153426272393631 ], [ -95.519447059502042, 30.153497271952489 ], [ -95.519504059334878, 30.153558271649874 ], [ -95.519573059047531, 30.153607272419244 ], [ -95.520130059244735, 30.153833272547121 ], [ -95.520218060099765, 30.153877271769556 ], [ -95.520320059953249, 30.153910272211441 ], [ -95.520522059876868, 30.153943272303671 ], [ -95.520642059677087, 30.153982272215586 ], [ -95.52075006007685, 30.154042271763014 ], [ -95.52091405946328, 30.154201272543457 ], [ -95.520971059977953, 30.154312272430687 ], [ -95.521003059809345, 30.154443272505333 ], [ -95.521009060200413, 30.154504272163077 ], [ -95.521002059750728, 30.154614272219572 ], [ -95.520958059992495, 30.154768272205445 ], [ -95.520952060436088, 30.154872272075991 ], [ -95.520964059828827, 30.154949272214811 ], [ -95.521002059522729, 30.155015272538904 ], [ -95.521097060406291, 30.155092271897491 ], [ -95.521262059864654, 30.155120272586657 ], [ -95.521344060170506, 30.155120271948924 ], [ -95.521489059810094, 30.155092272569522 ], [ -95.522014060703711, 30.154966272574178 ], [ -95.522135060505562, 30.154961272545176 ], [ -95.522229060481877, 30.154977272594124 ], [ -95.522299060040837, 30.155016272653246 ], [ -95.522381060234068, 30.155087272678145 ], [ -95.522407060476823, 30.155148272066366 ], [ -95.522413060143052, 30.155197272744608 ], [ -95.522407059954602, 30.155230272221729 ], [ -95.522381059908227, 30.155268272670337 ], [ -95.522350060712625, 30.15529027236747 ], [ -95.522160060754061, 30.155351272085305 ], [ -95.522046060357127, 30.155411272394709 ], [ -95.522002060775677, 30.15546127201555 ], [ -95.521983060362615, 30.155554272641233 ], [ -95.522242060627391, 30.155994272396811 ], [ -95.522248059882685, 30.156082272265603 ], [ -95.522242060365357, 30.156280272904013 ], [ -95.522280060755378, 30.156379272142662 ], [ -95.522393060198368, 30.156538272870613 ], [ -95.522495060137445, 30.156637272895182 ], [ -95.522931060849956, 30.156901272921406 ], [ -95.523222061067628, 30.157061272925464 ], [ -95.523399060668638, 30.157226273056516 ], [ -95.52349406077721, 30.157352273110732 ], [ -95.523519060333825, 30.157418272405764 ], [ -95.523570061195329, 30.157858273162475 ], [ -95.523506060867902, 30.158023272917234 ], [ -95.523475060374153, 30.158089272792644 ], [ -95.523430060741774, 30.158149272955821 ], [ -95.523367061048177, 30.158215272636532 ], [ -95.523152060798381, 30.15830927327486 ], [ -95.523038060338507, 30.15838027328423 ], [ -95.523013060989655, 30.158419272585839 ], [ -95.523006060403304, 30.158468272925756 ], [ -95.523013061009024, 30.158523273065281 ], [ -95.523076060363977, 30.158605273069021 ], [ -95.523133061178726, 30.158649273170038 ], [ -95.523272060751594, 30.158688273230819 ], [ -95.52334106076232, 30.158683273004645 ], [ -95.523544060262608, 30.158595273209595 ], [ -95.523626060902359, 30.158534273339018 ], [ -95.523740060725814, 30.15847427258792 ], [ -95.523816061198559, 30.15844627299381 ], [ -95.523911060411663, 30.158441272757205 ], [ -95.524006060859946, 30.15845727293301 ], [ -95.524113061273923, 30.15849627300036 ], [ -95.52420806142139, 30.158556272968532 ], [ -95.524271061468454, 30.158617272862237 ], [ -95.524366060814614, 30.158743273051599 ], [ -95.524373061193813, 30.158815272716474 ], [ -95.524360061170086, 30.158958273092903 ], [ -95.524233061094733, 30.159463273461419 ], [ -95.524239061196127, 30.159667273222915 ], [ -95.52427106067671, 30.159881272933074 ], [ -95.524265061487569, 30.159942273627717 ], [ -95.524246061324789, 30.160002273312674 ], [ -95.523973060830372, 30.160359273696312 ], [ -95.523948061247609, 30.160414273680971 ], [ -95.523866061105878, 30.160860273196402 ], [ -95.523866060612534, 30.161206273459211 ], [ -95.523904060736058, 30.161349273651215 ], [ -95.523941060704701, 30.16142027309381 ], [ -95.52414406086038, 30.161635273554193 ], [ -95.52442206118333, 30.161899273160554 ], [ -95.524530060878448, 30.162042273578486 ], [ -95.524555061503193, 30.162097273695174 ], [ -95.524555061453512, 30.162525273618719 ], [ -95.524567060818882, 30.162784273334385 ], [ -95.524599061547349, 30.162866274000642 ], [ -95.524650061386055, 30.162960274152045 ], [ -95.524789061531536, 30.163158274065783 ], [ -95.524845061745154, 30.163224273982852 ], [ -95.524985061328309, 30.16335627397083 ], [ -95.525168061167975, 30.16338927390326 ], [ -95.525510061749856, 30.163411273456617 ], [ -95.52585806163404, 30.163422273882734 ], [ -95.526003061672938, 30.163411273571597 ], [ -95.526149061402904, 30.163433273748552 ], [ -95.526332061431035, 30.163488274261795 ], [ -95.526459061530105, 30.163554273471782 ], [ -95.52659106227641, 30.163664274222949 ], [ -95.52672406179704, 30.16373027371543 ], [ -95.52700306225745, 30.163845273470127 ], [ -95.527091062018258, 30.163911273466706 ], [ -95.527148062207417, 30.163977273799144 ], [ -95.527186061911522, 30.164054274381453 ], [ -95.527230062013516, 30.164269273873291 ], [ -95.527287061787206, 30.164395274430323 ], [ -95.527414062000418, 30.164566273658767 ], [ -95.527534061659992, 30.164698274457926 ], [ -95.527648062520754, 30.164797273678079 ], [ -95.528071062091655, 30.164951274178783 ], [ -95.528166061762775, 30.164945274447433 ], [ -95.52883706200592, 30.16484127385759 ], [ -95.529001062198475, 30.164830273996259 ], [ -95.529122062850604, 30.164835274397504 ], [ -95.529210062666408, 30.164863273898476 ], [ -95.529273062431216, 30.16490727425268 ], [ -95.529305062233007, 30.164978273872624 ], [ -95.529318062868043, 30.165044274499817 ], [ -95.529286063019143, 30.165121273791282 ], [ -95.529229062379216, 30.165209274087843 ], [ -95.529191062856853, 30.165292274571048 ], [ -95.529172062716341, 30.165363274489323 ], [ -95.529172062765312, 30.165457273870548 ], [ -95.52920406262777, 30.165556274578503 ], [ -95.529317062641766, 30.165710273919906 ], [ -95.529374062787426, 30.165754273768957 ], [ -95.529539062522119, 30.165825274303579 ], [ -95.529665062674439, 30.165842273762422 ], [ -95.530203063208688, 30.165831273834968 ], [ -95.530330062602047, 30.165814274059155 ], [ -95.530456063305706, 30.165776274234329 ], [ -95.530595062485901, 30.165655274101965 ], [ -95.530697063035703, 30.165451274174217 ], [ -95.530760063440113, 30.165369274407368 ], [ -95.530849063478954, 30.165276273788404 ], [ -95.530950062579549, 30.165215273884527 ], [ -95.531051063009258, 30.165133273587735 ], [ -95.531102062869735, 30.165061273566142 ], [ -95.531114062653955, 30.165001274041735 ], [ -95.531108063271461, 30.164951274101924 ], [ -95.530994062957646, 30.164786274226465 ], [ -95.530994063164172, 30.164715274272289 ], [ -95.531013063305892, 30.164671274315712 ], [ -95.531064063493574, 30.16462727358202 ], [ -95.531418062679379, 30.164451273737349 ], [ -95.531557063445447, 30.164457273875183 ], [ -95.531614063306876, 30.164528273885193 ], [ -95.531633063238488, 30.164600273523423 ], [ -95.531652063040625, 30.1648632735699 ], [ -95.531690063676734, 30.165111273701296 ], [ -95.531753063000991, 30.165166274362353 ], [ -95.531981062988606, 30.165270274034008 ], [ -95.532101063197231, 30.165336274118978 ], [ -95.53230406361503, 30.165474274171242 ], [ -95.532449063270732, 30.165628274186886 ], [ -95.532563063190949, 30.165782273875642 ], [ -95.532689063217177, 30.165903274012052 ], [ -95.532841063913935, 30.165947273717052 ], [ -95.53296806305103, 30.165952274470392 ], [ -95.533151063845906, 30.165980274316183 ], [ -95.533221063704858, 30.166013273802715 ], [ -95.533518063839935, 30.166293273932222 ], [ -95.533619063579437, 30.16634827433251 ], [ -95.533695064008285, 30.166354274554745 ], [ -95.533904064036761, 30.166343274538633 ], [ -95.533980064319778, 30.166348274623225 ], [ -95.534038063574954, 30.166390273848187 ], [ -95.53405606425936, 30.166403274186916 ], [ -95.534094064223851, 30.166502273791814 ], [ -95.534081063665681, 30.166601274630352 ], [ -95.534057063918468, 30.166635274607426 ], [ -95.534030064166828, 30.166673273905594 ], [ -95.533953063857453, 30.166763274359688 ], [ -95.533796063861615, 30.166947274472616 ], [ -95.533777063799931, 30.167013274155973 ], [ -95.533790064049739, 30.16706327464756 ], [ -95.533904063767153, 30.167173274231654 ], [ -95.534517064120735, 30.167481274766537 ], [ -95.534593063985895, 30.16749727416099 ], [ -95.534929064415991, 30.167486274425897 ], [ -95.535093064394218, 30.167503274389269 ], [ -95.535163063819056, 30.167585274117158 ], [ -95.535163064634943, 30.167651274081145 ], [ -95.535106064000317, 30.167723274426276 ], [ -95.535030064453935, 30.167778274235648 ], [ -95.534840063936272, 30.167833274057202 ], [ -95.534682063749415, 30.167860274555718 ], [ -95.534644063903229, 30.167888274332761 ], [ -95.534637064363736, 30.167932274227582 ], [ -95.534650063740742, 30.167986274468085 ], [ -95.534675064231806, 30.168030274505949 ], [ -95.534726064465445, 30.16807427446793 ], [ -95.534903064081405, 30.168140274105664 ], [ -95.535137064155506, 30.168124274357584 ], [ -95.535415064154122, 30.168152274146806 ], [ -95.535542064567551, 30.168190274191382 ], [ -95.535713064362611, 30.168273274811028 ], [ -95.535833063912435, 30.168355274468546 ], [ -95.535991064312185, 30.168432274142219 ], [ -95.536061064755629, 30.168460274918068 ], [ -95.536143064878971, 30.168476274447904 ], [ -95.536213064542906, 30.168476274124671 ], [ -95.536327064248567, 30.168460274220564 ], [ -95.536421064486817, 30.16842727433669 ], [ -95.536655064424764, 30.168245274023608 ], [ -95.536738064877397, 30.168223274768771 ], [ -95.536801064906101, 30.168229274311088 ], [ -95.536858064409529, 30.168262274737209 ], [ -95.53688306488678, 30.168306274333297 ], [ -95.536883064657275, 30.168366274395932 ], [ -95.536820064246712, 30.168537274269578 ], [ -95.536801064760922, 30.168614274892292 ], [ -95.536807064928567, 30.168680274884096 ], [ -95.536826065036934, 30.168718274546702 ], [ -95.536871065110475, 30.1687622744506 ], [ -95.536965064249046, 30.168828274884994 ], [ -95.537016064683328, 30.168899274950935 ], [ -95.537022065130301, 30.168949274493837 ], [ -95.537016064693091, 30.16899327491177 ], [ -95.53696506484259, 30.169075274904966 ], [ -95.536959064367991, 30.169130274995929 ], [ -95.536972064317339, 30.169174274355484 ], [ -95.537003064488559, 30.169235274392982 ], [ -95.537060064530067, 30.169273274570923 ], [ -95.537130064809588, 30.169301274754574 ], [ -95.537263064531018, 30.169328274396442 ], [ -95.537440064476598, 30.169317274650325 ], [ -95.537535064358806, 30.169295275020747 ], [ -95.537611064886192, 30.16925727426278 ], [ -95.538123064979033, 30.168938274533723 ], [ -95.538560065065894, 30.168619274908576 ], [ -95.538629064946548, 30.168575274174582 ], [ -95.53870506549184, 30.168542274470148 ], [ -95.5388630648158, 30.168542274755062 ], [ -95.538946064981786, 30.168570274467601 ], [ -95.539003065562113, 30.168619274414723 ], [ -95.539053065175324, 30.168696274835487 ], [ -95.53915406525617, 30.168966274434823 ], [ -95.539224065411517, 30.169081274536158 ], [ -95.539515065482732, 30.1694062744258 ], [ -95.539724065443011, 30.169549275040065 ], [ -95.539907065496365, 30.169642274290922 ], [ -95.539973065997899, 30.169671274772345 ], [ -95.540685065986196, 30.169983274484046 ], [ -95.541406065750607, 30.170284274510752 ], [ -95.541434066338965, 30.170234274659975 ], [ -95.542784066049151, 30.168167274451115 ], [ -95.54284406602676, 30.168090274210151 ], [ -95.542890065952179, 30.168005274582736 ], [ -95.543098066087026, 30.167690274445643 ], [ -95.54327906611401, 30.167441274183616 ], [ -95.543436066753557, 30.167252274465334 ], [ -95.543609066416849, 30.167060274093629 ], [ -95.543907065915533, 30.166765273543689 ], [ -95.544017066590101, 30.166664273530426 ], [ -95.544122065970271, 30.166559274153261 ], [ -95.544592066263661, 30.166122273492846 ], [ -95.545074066234605, 30.165659273263827 ], [ -95.54521306716363, 30.165550273509421 ], [ -95.545549066417806, 30.165226273935534 ], [ -95.546025066678467, 30.164796273271655 ], [ -95.546246066643519, 30.164579273268462 ], [ -95.546349066816504, 30.164472273266984 ], [ -95.546534066687911, 30.164258273714907 ], [ -95.54677906707802, 30.163936272858638 ], [ -95.546853067103697, 30.163826272835603 ], [ -95.54690206748046, 30.163712272976611 ], [ -95.546973066565386, 30.163598272699573 ], [ -95.547041067354897, 30.163478273230595 ], [ -95.547138066676567, 30.163357273367822 ], [ -95.547202066933124, 30.163228273399312 ], [ -95.547317067567008, 30.1629622730295 ], [ -95.547419066583629, 30.162686273139233 ], [ -95.547553066864694, 30.162127273157704 ], [ -95.54762806710562, 30.161815272630356 ], [ -95.547676066934656, 30.161550272802412 ], [ -95.547710067071648, 30.161429272372967 ], [ -95.54772606711262, 30.161293272588306 ], [ -95.547829066658124, 30.160735272641961 ], [ -95.54786606698957, 30.160590272194813 ], [ -95.548078067093456, 30.159429272576375 ], [ -95.54809006727308, 30.159291272075812 ], [ -95.548124067024887, 30.159173272271808 ], [ -95.54820206665508, 30.158742272011622 ], [ -95.548241067277033, 30.158577271810703 ], [ -95.548867067241233, 30.155746271657211 ], [ -95.54891206662225, 30.155521271375896 ], [ -95.548946066778385, 30.155398271386055 ], [ -95.549145067147393, 30.154493270985103 ], [ -95.549270066852984, 30.153947271413088 ], [ -95.549384066868598, 30.153265271029095 ], [ -95.54956606714066, 30.152163270761211 ], [ -95.549861066790641, 30.150483269968728 ], [ -95.549924067564646, 30.149938270206967 ], [ -95.549895067619303, 30.149296269757095 ], [ -95.549799067436339, 30.148676270463085 ], [ -95.549730066735933, 30.148247270173989 ], [ -95.549789066904879, 30.147418269833903 ], [ -95.549877066546784, 30.146675269977926 ], [ -95.550084067089244, 30.145415269678569 ], [ -95.550339066812697, 30.144271269407295 ], [ -95.550348067068086, 30.144194269102947 ], [ -95.55035006713571, 30.144152268996457 ], [ -95.550400066795788, 30.143789268758717 ], [ -95.550461066977206, 30.143410269320604 ], [ -95.550476066751898, 30.143287268625858 ], [ -95.550520066772094, 30.143031269054553 ], [ -95.550539066453013, 30.142902269055156 ], [ -95.550551066572737, 30.142774269138908 ], [ -95.550602066704059, 30.142504268806086 ], [ -95.550622066957089, 30.142371268345109 ], [ -95.550631067121927, 30.14229526885158 ], [ -95.550641066777175, 30.142240268351348 ], [ -95.550718066778089, 30.141826268997928 ], [ -95.550804066669869, 30.141437268731092 ], [ -95.550845067242832, 30.141309268656556 ], [ -95.550911067248933, 30.141042268161815 ], [ -95.550921067411068, 30.140916268255936 ], [ -95.551026066649911, 30.140437268555374 ], [ -95.551033066954133, 30.140337267861479 ], [ -95.551060067419428, 30.140247268021284 ], [ -95.55112106727384, 30.140097268431543 ], [ -95.551138066664933, 30.140066268119234 ], [ -95.551155066751846, 30.140015268245932 ], [ -95.551549067195992, 30.139228267914177 ], [ -95.551614066775073, 30.139085267578917 ], [ -95.551689067555657, 30.138945268117308 ], [ -95.551698066608651, 30.138922268245565 ], [ -95.552028066619727, 30.138498267978445 ], [ -95.552291067079196, 30.138183267594542 ], [ -95.552373067240154, 30.138081267658436 ], [ -95.552459066916143, 30.137982268132596 ], [ -95.552521067106127, 30.137892267892006 ], [ -95.552594067074025, 30.137798268031187 ], [ -95.5526610674534, 30.137686267268197 ], [ -95.552703067796301, 30.137581267316484 ], [ -95.55293106769065, 30.137122267828914 ], [ -95.552978067461893, 30.137018267720791 ], [ -95.553157067069705, 30.136625267072382 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 984, "Tract": "48201440101", "Area_SqMi": 0.86762465341786521, "total_2009": 2757, "total_2010": 2880, "total_2011": 2997, "total_2012": 3069, "total_2013": 3261, "total_2014": 3334, "total_2015": 3187, "total_2016": 3069, "total_2017": 3133, "total_2018": 2882, "total_2019": 2717, "total_2020": 2546, "age1": 641, "age2": 1790, "age3": 846, "earn1": 713, "earn2": 868, "earn3": 1696, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 66, "naics_s05": 12, "naics_s06": 329, "naics_s07": 508, "naics_s08": 1246, "naics_s09": 1, "naics_s10": 48, "naics_s11": 46, "naics_s12": 62, "naics_s13": 0, "naics_s14": 86, "naics_s15": 1, "naics_s16": 269, "naics_s17": 37, "naics_s18": 529, "naics_s19": 35, "naics_s20": 0, "race1": 1988, "race2": 885, "race3": 23, "race4": 324, "race5": 5, "race6": 52, "ethnicity1": 2245, "ethnicity2": 1032, "edu1": 580, "edu2": 755, "edu3": 786, "edu4": 515, "Shape_Length": 20957.302554555747, "Shape_Area": 24187890.382854905, "total_2021": 2600, "total_2022": 3277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.571352050145251, 29.648746167661422 ], [ -95.571370050220537, 29.648730167187768 ], [ -95.571227049828764, 29.648664167338602 ], [ -95.571072049601412, 29.648593167064661 ], [ -95.570997050047012, 29.648558167347623 ], [ -95.570822049752252, 29.648478167723077 ], [ -95.570740049814319, 29.648440167739054 ], [ -95.570661049308782, 29.648403167055761 ], [ -95.568445049579495, 29.647377167322656 ], [ -95.567409048663492, 29.646904166745195 ], [ -95.567027048696062, 29.646728166898239 ], [ -95.566523048088655, 29.646484166697704 ], [ -95.565486047809173, 29.645965166715921 ], [ -95.565229047709565, 29.645836167288465 ], [ -95.564017047477705, 29.64533816701552 ], [ -95.563462048131157, 29.645083166525623 ], [ -95.559818046541466, 29.643409166972386 ], [ -95.55794404626279, 29.642549166510229 ], [ -95.557735045763891, 29.642439166957391 ], [ -95.557684046388431, 29.642451166678207 ], [ -95.557263045606561, 29.642391166204551 ], [ -95.556470045642271, 29.642435166336341 ], [ -95.556010045242445, 29.642413166553691 ], [ -95.555866045284276, 29.642369166730138 ], [ -95.555664045788475, 29.64246816693376 ], [ -95.555298045086488, 29.642431167059868 ], [ -95.555268045325633, 29.642429166435207 ], [ -95.555226045117792, 29.642431167097858 ], [ -95.555048045332398, 29.642437166525198 ], [ -95.55421104572163, 29.642468167170545 ], [ -95.553518044809991, 29.64245916704769 ], [ -95.552870044902448, 29.642451167107296 ], [ -95.552727044823058, 29.642474166382847 ], [ -95.552622044983153, 29.64249816686231 ], [ -95.552729045444622, 29.648277168343338 ], [ -95.552725045568181, 29.649262168216232 ], [ -95.552740045692545, 29.651133168441522 ], [ -95.552743045623103, 29.651434168362758 ], [ -95.552787045503194, 29.65172516851425 ], [ -95.55277504579152, 29.652077169027699 ], [ -95.552794045549462, 29.652793168713298 ], [ -95.552403045381411, 29.65284016859005 ], [ -95.551568044909359, 29.653023169209714 ], [ -95.550685044401874, 29.653343169499308 ], [ -95.550413044959527, 29.65347416891089 ], [ -95.55037204521399, 29.653494169315454 ], [ -95.550533045055758, 29.65362716893025 ], [ -95.552020044914258, 29.654836168916656 ], [ -95.552840045188574, 29.655532169215487 ], [ -95.553481045416163, 29.656076169182601 ], [ -95.553940045626746, 29.656464169652178 ], [ -95.554681046162202, 29.657126169315564 ], [ -95.55555304593382, 29.657935170090042 ], [ -95.555941046907904, 29.658292169838262 ], [ -95.556119046567403, 29.658469170361158 ], [ -95.556705047030945, 29.659087170098829 ], [ -95.556821046222609, 29.659225169975848 ], [ -95.557268047095377, 29.659824169852318 ], [ -95.55766304656531, 29.660349170465693 ], [ -95.557773046558893, 29.660499170173207 ], [ -95.557933046996823, 29.660755170553621 ], [ -95.557987047355326, 29.660831169994346 ], [ -95.558057047435923, 29.660941170070696 ], [ -95.558131047059561, 29.661053170299731 ], [ -95.558379047113078, 29.660819169967638 ], [ -95.558522047332914, 29.660685170233215 ], [ -95.558587046982652, 29.660624170527715 ], [ -95.560148047861247, 29.659158169750221 ], [ -95.560938047313215, 29.658415169445036 ], [ -95.561030047201072, 29.658329169331274 ], [ -95.561813047387957, 29.65759316928882 ], [ -95.562333048354105, 29.657104169239762 ], [ -95.56253804797943, 29.656948169598021 ], [ -95.564219048157071, 29.655460168629102 ], [ -95.564963048374906, 29.654728168473618 ], [ -95.565537048366721, 29.654192168396648 ], [ -95.565786048913665, 29.653954169120581 ], [ -95.565919048371754, 29.653830168261234 ], [ -95.567295049018753, 29.652555167964017 ], [ -95.568337049532246, 29.651593168195806 ], [ -95.56841704936889, 29.651513167731018 ], [ -95.568538049209025, 29.65139216763081 ], [ -95.568616049027369, 29.651316167757091 ], [ -95.570457049858888, 29.649592167376273 ], [ -95.57075205016217, 29.649321167212733 ], [ -95.571352050145251, 29.648746167661422 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 985, "Tract": "48201542107", "Area_SqMi": 0.53147788993509881, "total_2009": 59, "total_2010": 64, "total_2011": 176, "total_2012": 161, "total_2013": 160, "total_2014": 160, "total_2015": 199, "total_2016": 168, "total_2017": 171, "total_2018": 187, "total_2019": 188, "total_2020": 184, "age1": 46, "age2": 97, "age3": 46, "earn1": 64, "earn2": 87, "earn3": 38, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 19, "naics_s06": 0, "naics_s07": 62, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 20, "naics_s15": 0, "naics_s16": 16, "naics_s17": 0, "naics_s18": 55, "naics_s19": 6, "naics_s20": 1, "race1": 134, "race2": 23, "race3": 6, "race4": 25, "race5": 0, "race6": 1, "ethnicity1": 99, "ethnicity2": 90, "edu1": 43, "edu2": 40, "edu3": 33, "edu4": 27, "Shape_Length": 16992.102673517529, "Shape_Area": 14816693.937890921, "total_2021": 195, "total_2022": 189 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.695824091315245, 29.871016208467545 ], [ -95.694839090896295, 29.8710232081661 ], [ -95.694802090965311, 29.871024208208869 ], [ -95.693881091028587, 29.871024208752864 ], [ -95.693480091078243, 29.871016208468244 ], [ -95.693301091173836, 29.871013208966314 ], [ -95.692744090456088, 29.871053208879484 ], [ -95.692683090610885, 29.871057208868248 ], [ -95.692128090649334, 29.871029208632169 ], [ -95.691900090832618, 29.865150207325353 ], [ -95.691894090669805, 29.865102207182257 ], [ -95.691682090451508, 29.86515920715507 ], [ -95.691670090643385, 29.865162207377697 ], [ -95.691606090639468, 29.865179207359972 ], [ -95.691474090587079, 29.865215207943287 ], [ -95.691106090605018, 29.865225207744633 ], [ -95.690603089619799, 29.865203207912511 ], [ -95.690286089710199, 29.865229207948953 ], [ -95.690126090308411, 29.865235207401199 ], [ -95.689874089651326, 29.865239207259926 ], [ -95.68964009027242, 29.865244207757023 ], [ -95.68830308923107, 29.865248207856805 ], [ -95.6860690892929, 29.865353207578266 ], [ -95.685194088740147, 29.86526520754731 ], [ -95.684941088642006, 29.865268207705345 ], [ -95.684794088998771, 29.865271207842738 ], [ -95.684668088607992, 29.865282208180886 ], [ -95.684105088038066, 29.865350207770653 ], [ -95.683899088753179, 29.865362207456862 ], [ -95.683304088482103, 29.865366207734834 ], [ -95.683305087996715, 29.865838207901785 ], [ -95.683307088681119, 29.866236207879268 ], [ -95.683310088653073, 29.867351208410184 ], [ -95.68330908810718, 29.867675208437667 ], [ -95.683302088273564, 29.867967208559723 ], [ -95.683294088212875, 29.868368208443265 ], [ -95.683293088347398, 29.868916208903769 ], [ -95.683295088505261, 29.869385208789168 ], [ -95.683302088394669, 29.870920209225581 ], [ -95.683305088277208, 29.8713862090353 ], [ -95.683306088547454, 29.871747209118631 ], [ -95.683308088651017, 29.871951209298999 ], [ -95.683309088004236, 29.872235208806387 ], [ -95.683331089078976, 29.873626209076573 ], [ -95.683342088850296, 29.87539521021548 ], [ -95.683347088672761, 29.876481209759849 ], [ -95.683354088828182, 29.877594210716108 ], [ -95.683354088379815, 29.878033210104427 ], [ -95.683335088815255, 29.878341210218231 ], [ -95.683327088426765, 29.878471210730606 ], [ -95.683309088718303, 29.878773210913746 ], [ -95.683295088316811, 29.879141210544613 ], [ -95.683291088733938, 29.879429210536244 ], [ -95.683303088944939, 29.879946210648118 ], [ -95.685356089061017, 29.879938210470872 ], [ -95.686623089978184, 29.879930211046069 ], [ -95.688464089896272, 29.879919211015771 ], [ -95.688578090428152, 29.879780210771763 ], [ -95.695824091315245, 29.871016208467545 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 986, "Tract": "48201542201", "Area_SqMi": 0.74835699671595546, "total_2009": 51, "total_2010": 39, "total_2011": 40, "total_2012": 105, "total_2013": 137, "total_2014": 34, "total_2015": 60, "total_2016": 65, "total_2017": 39, "total_2018": 57, "total_2019": 45, "total_2020": 66, "age1": 38, "age2": 56, "age3": 19, "earn1": 39, "earn2": 42, "earn3": 32, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 3, "naics_s07": 22, "naics_s08": 4, "naics_s09": 3, "naics_s10": 8, "naics_s11": 0, "naics_s12": 11, "naics_s13": 0, "naics_s14": 4, "naics_s15": 2, "naics_s16": 19, "naics_s17": 0, "naics_s18": 33, "naics_s19": 0, "naics_s20": 0, "race1": 63, "race2": 26, "race3": 2, "race4": 20, "race5": 0, "race6": 2, "ethnicity1": 71, "ethnicity2": 42, "edu1": 22, "edu2": 17, "edu3": 20, "edu4": 16, "Shape_Length": 19639.404081572837, "Shape_Area": 20862912.242640197, "total_2021": 75, "total_2022": 113 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.732803100719522, 29.874573207721763 ], [ -95.732800101400954, 29.87436520809106 ], [ -95.732789101071731, 29.874185207552237 ], [ -95.732751101320403, 29.873902208041134 ], [ -95.732701101486853, 29.873653207850364 ], [ -95.732651101561231, 29.873475207885889 ], [ -95.732556101500677, 29.873211207780827 ], [ -95.732442100822254, 29.872950207887737 ], [ -95.732294101248044, 29.872638207673457 ], [ -95.731954100855546, 29.871931207182854 ], [ -95.731604100711436, 29.871201207636574 ], [ -95.731257100667776, 29.87047920712488 ], [ -95.730915100425037, 29.869774206852199 ], [ -95.730577100129466, 29.869073207373912 ], [ -95.730234100509946, 29.868360206390975 ], [ -95.730127100444861, 29.868125206531332 ], [ -95.730059100429287, 29.867943206685084 ], [ -95.730003100324893, 29.867741207137666 ], [ -95.729974100153484, 29.867608206322881 ], [ -95.729935100222562, 29.867348206801868 ], [ -95.729922100571272, 29.867144206530284 ], [ -95.72991610053343, 29.866884206302625 ], [ -95.729917100520424, 29.866522206446508 ], [ -95.72992710047339, 29.86633720599648 ], [ -95.729952099968884, 29.866145206317153 ], [ -95.729992099811497, 29.865932206066624 ], [ -95.73003510014118, 29.865775206734003 ], [ -95.730097100101574, 29.865609206308704 ], [ -95.730168099928733, 29.865466206648286 ], [ -95.729978099679983, 29.865394206608187 ], [ -95.729861100552597, 29.865367206615492 ], [ -95.729792100322513, 29.865358206615888 ], [ -95.729647099896596, 29.865353205959956 ], [ -95.729294099832543, 29.865355206507832 ], [ -95.729279099945273, 29.863448205839941 ], [ -95.729272099921317, 29.862428206009266 ], [ -95.729272099869164, 29.862246205316477 ], [ -95.72927210010927, 29.861270205791921 ], [ -95.729265099944016, 29.861047205346189 ], [ -95.728297098956972, 29.861040205212856 ], [ -95.727656099463474, 29.860961205448159 ], [ -95.727043099413564, 29.860869205699011 ], [ -95.726160099254329, 29.860733205357594 ], [ -95.725569098417253, 29.860605205560351 ], [ -95.724878098600215, 29.860541205264102 ], [ -95.724065098215945, 29.860555205860511 ], [ -95.723588097877752, 29.860605205035903 ], [ -95.723018098408573, 29.860733205130636 ], [ -95.722519098196656, 29.86082820532096 ], [ -95.722341097996477, 29.860862205795634 ], [ -95.721460097804808, 29.861074205936632 ], [ -95.720291097604644, 29.861357206138958 ], [ -95.720320097538632, 29.861508205786897 ], [ -95.720366097202344, 29.861799205481287 ], [ -95.720389097280332, 29.862019206177681 ], [ -95.720400097968465, 29.862267206008216 ], [ -95.720408097512362, 29.863569205917663 ], [ -95.720415098021661, 29.864524206651527 ], [ -95.720415097745786, 29.864553206756895 ], [ -95.720429098214765, 29.866706206647727 ], [ -95.72043609780259, 29.867690207396489 ], [ -95.720437097713216, 29.867747206702113 ], [ -95.720441097806727, 29.868251206953182 ], [ -95.720444098181247, 29.868542207096141 ], [ -95.720455098024786, 29.869724207879795 ], [ -95.720455097357274, 29.869771207625647 ], [ -95.7204560982034, 29.869855207815487 ], [ -95.720463097600302, 29.870564207512309 ], [ -95.720469098164202, 29.871010207371405 ], [ -95.720483097459478, 29.871252207370759 ], [ -95.720514097593636, 29.87150020796798 ], [ -95.720558097932965, 29.871745207629413 ], [ -95.720614098127697, 29.871987208061377 ], [ -95.720681098220723, 29.872222208140837 ], [ -95.720758098123781, 29.872447207677261 ], [ -95.720869098110029, 29.872727207826692 ], [ -95.720982097839382, 29.872974207824111 ], [ -95.721105097704552, 29.873210208063014 ], [ -95.721195098531211, 29.873360208499275 ], [ -95.721505098640108, 29.873786208591074 ], [ -95.72173209807417, 29.874054208126115 ], [ -95.722855098340389, 29.875325208234432 ], [ -95.72305409897541, 29.875596208233027 ], [ -95.723088098314548, 29.875641208824266 ], [ -95.723343098744934, 29.876055208649529 ], [ -95.723378099382757, 29.876129208323547 ], [ -95.723446099183761, 29.87627120911355 ], [ -95.723578098704763, 29.876597208915715 ], [ -95.723653099435623, 29.876815208653465 ], [ -95.723717098821822, 29.877033208630213 ], [ -95.723769098527171, 29.877249208792623 ], [ -95.723812098791768, 29.877462209284737 ], [ -95.723843099259142, 29.877673209084978 ], [ -95.723871099296701, 29.878000208563051 ], [ -95.723877099103831, 29.878325208638849 ], [ -95.723847098964313, 29.879709209299147 ], [ -95.726846100056179, 29.879692209399433 ], [ -95.728252100116734, 29.879684208939882 ], [ -95.728656100755217, 29.879682208867003 ], [ -95.729074100470726, 29.879679209486607 ], [ -95.730893100813958, 29.879671208723106 ], [ -95.731902100958024, 29.879667209408368 ], [ -95.731912101345628, 29.879503209319356 ], [ -95.731911101171761, 29.879381208672726 ], [ -95.731872100737107, 29.879074208695041 ], [ -95.73185610128678, 29.878760209184389 ], [ -95.731854100831541, 29.878641208592875 ], [ -95.731859101584064, 29.878528209029202 ], [ -95.731855101125291, 29.878405209238867 ], [ -95.73186110164535, 29.878171208978955 ], [ -95.731875101313591, 29.87806220849637 ], [ -95.731882100732861, 29.877946208776805 ], [ -95.731895101528053, 29.877856208855647 ], [ -95.73192710148362, 29.877642208851778 ], [ -95.731957101120358, 29.877481208528824 ], [ -95.732002101159551, 29.877263208246738 ], [ -95.732023100750752, 29.877195208807716 ], [ -95.732040101430059, 29.877118208276634 ], [ -95.732171101649001, 29.876714208046405 ], [ -95.73227210143331, 29.87645320847183 ], [ -95.732491101126413, 29.875923208612317 ], [ -95.73259710101874, 29.875652208415968 ], [ -95.732677100862219, 29.87540520829948 ], [ -95.732731101664498, 29.875175208132646 ], [ -95.732739101228574, 29.875133207696972 ], [ -95.732792101048815, 29.87479420795659 ], [ -95.732803100719522, 29.874573207721763 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 987, "Tract": "48201233501", "Area_SqMi": 0.55077465808348036, "total_2009": 1468, "total_2010": 544, "total_2011": 328, "total_2012": 315, "total_2013": 293, "total_2014": 283, "total_2015": 282, "total_2016": 303, "total_2017": 263, "total_2018": 320, "total_2019": 315, "total_2020": 287, "age1": 54, "age2": 154, "age3": 76, "earn1": 61, "earn2": 90, "earn3": 133, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 33, "naics_s06": 10, "naics_s07": 37, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 60, "naics_s15": 0, "naics_s16": 94, "naics_s17": 0, "naics_s18": 20, "naics_s19": 3, "naics_s20": 0, "race1": 205, "race2": 50, "race3": 1, "race4": 18, "race5": 2, "race6": 8, "ethnicity1": 162, "ethnicity2": 122, "edu1": 60, "edu2": 63, "edu3": 70, "edu4": 37, "Shape_Length": 24466.573839595145, "Shape_Area": 15354654.807119038, "total_2021": 284, "total_2022": 284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.247363972317615, 29.767234202854965 ], [ -95.247353971779006, 29.76704720221872 ], [ -95.247356972003715, 29.766657202975434 ], [ -95.247337971920032, 29.765944202734381 ], [ -95.247326972302972, 29.765216202441746 ], [ -95.24730597217625, 29.764470202015495 ], [ -95.247290971797142, 29.763746202042626 ], [ -95.247269972145276, 29.763018201954107 ], [ -95.245135971106606, 29.763057201532561 ], [ -95.243524970727862, 29.763066201707705 ], [ -95.24197097087611, 29.763122202172948 ], [ -95.238768970300868, 29.763171202317508 ], [ -95.238795969759323, 29.76389520245128 ], [ -95.23879096964211, 29.764614202367067 ], [ -95.238801969607124, 29.764666202286385 ], [ -95.238229969818505, 29.764673202266636 ], [ -95.238101970169993, 29.764676202131835 ], [ -95.237860970139792, 29.764677202821332 ], [ -95.2377759694932, 29.764679202516707 ], [ -95.237611969725094, 29.764682202165929 ], [ -95.236909969507451, 29.764691202614749 ], [ -95.235062968992381, 29.764713202454878 ], [ -95.234717968793063, 29.764719202863706 ], [ -95.234584968507022, 29.764719202721494 ], [ -95.23372996865298, 29.764732202730592 ], [ -95.233726969103984, 29.764386202490485 ], [ -95.233724968370851, 29.763974202386049 ], [ -95.233719968219447, 29.763293202105224 ], [ -95.233702968903216, 29.762680202359856 ], [ -95.233678968625185, 29.761830202406344 ], [ -95.233643967963459, 29.76026520131942 ], [ -95.233574968105231, 29.759179201331602 ], [ -95.233573968281945, 29.759152201451631 ], [ -95.233571968656378, 29.75903720173293 ], [ -95.232972968357601, 29.759144201402606 ], [ -95.232522967858131, 29.759224201519903 ], [ -95.231332967748742, 29.759231201765267 ], [ -95.229380967584774, 29.759306201564691 ], [ -95.22749296728567, 29.759331201405001 ], [ -95.224336965902808, 29.759432202026499 ], [ -95.223325965866096, 29.759452201947152 ], [ -95.22330496584857, 29.759452202209413 ], [ -95.223299966067302, 29.759505201577571 ], [ -95.223935965364419, 29.759488201877257 ], [ -95.223957966314956, 29.760349201873151 ], [ -95.224144965873705, 29.765551202911574 ], [ -95.224101966306918, 29.765539203074013 ], [ -95.222782965821651, 29.765009202880893 ], [ -95.222609965578727, 29.76494220313328 ], [ -95.221561965869313, 29.764550203252121 ], [ -95.220993965652923, 29.765697203053424 ], [ -95.220883965690831, 29.765916203308798 ], [ -95.220442965190898, 29.765916203583725 ], [ -95.220438965203741, 29.766023203528572 ], [ -95.220879965736259, 29.766026202931727 ], [ -95.221256965724038, 29.766065203041986 ], [ -95.221541965630095, 29.766109203266922 ], [ -95.221767965897286, 29.76615420321793 ], [ -95.221989965365651, 29.766209202943678 ], [ -95.222199965564485, 29.766271202964163 ], [ -95.222345965270492, 29.766323203673984 ], [ -95.222611965736689, 29.766429203280815 ], [ -95.223962966573637, 29.766970203808324 ], [ -95.22400596579709, 29.766987203717257 ], [ -95.223956966298843, 29.767096203363398 ], [ -95.224302965818566, 29.76724020341403 ], [ -95.224662965973863, 29.767378203165666 ], [ -95.224926966409399, 29.767463203524137 ], [ -95.225171966164908, 29.767520203451415 ], [ -95.225430966347986, 29.767556203299261 ], [ -95.225666966454853, 29.767564203008714 ], [ -95.225976967045341, 29.767564203315523 ], [ -95.226369966549356, 29.767556203455513 ], [ -95.226570967096492, 29.767548203143118 ], [ -95.226982967009278, 29.767552203523937 ], [ -95.228482967322947, 29.767520203632884 ], [ -95.229190967881223, 29.767508202899517 ], [ -95.230188967783889, 29.767495202906066 ], [ -95.231884968055681, 29.767475203542233 ], [ -95.232788969000651, 29.767454203280217 ], [ -95.233818969066789, 29.767441203002054 ], [ -95.238832969655775, 29.767363202751554 ], [ -95.240438970772672, 29.76735220308748 ], [ -95.24205597125399, 29.767328203169697 ], [ -95.243626970774471, 29.76730020242552 ], [ -95.245203971919139, 29.76727720254593 ], [ -95.247363972317615, 29.767234202854965 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 988, "Tract": "48201314402", "Area_SqMi": 0.73553280341817651, "total_2009": 4418, "total_2010": 5309, "total_2011": 6732, "total_2012": 5992, "total_2013": 6323, "total_2014": 6609, "total_2015": 6341, "total_2016": 5705, "total_2017": 5194, "total_2018": 3717, "total_2019": 4667, "total_2020": 2904, "age1": 855, "age2": 2312, "age3": 1393, "earn1": 1797, "earn2": 941, "earn3": 1822, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 32, "naics_s05": 60, "naics_s06": 53, "naics_s07": 56, "naics_s08": 13, "naics_s09": 19, "naics_s10": 12, "naics_s11": 14, "naics_s12": 19, "naics_s13": 0, "naics_s14": 1330, "naics_s15": 85, "naics_s16": 1225, "naics_s17": 354, "naics_s18": 990, "naics_s19": 49, "naics_s20": 249, "race1": 2314, "race2": 1876, "race3": 27, "race4": 283, "race5": 7, "race6": 53, "ethnicity1": 3405, "ethnicity2": 1155, "edu1": 759, "edu2": 997, "edu3": 1164, "edu4": 785, "Shape_Length": 20472.599923061967, "Shape_Area": 20505395.682324309, "total_2021": 3232, "total_2022": 4560 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.414370011608682, 29.694454182321202 ], [ -95.413913011576298, 29.694000182162668 ], [ -95.413736011193606, 29.693784182286155 ], [ -95.413589011840969, 29.69360318160124 ], [ -95.413536011691548, 29.693538182359951 ], [ -95.413159011679383, 29.69281218210245 ], [ -95.413094011502039, 29.692686181753093 ], [ -95.412764011064411, 29.692043181479526 ], [ -95.412711011545738, 29.691898181573169 ], [ -95.412615011343689, 29.691358181627947 ], [ -95.412584011023512, 29.69115118145513 ], [ -95.412544011676289, 29.690999181056718 ], [ -95.412517011339958, 29.690767181053598 ], [ -95.412554010900678, 29.690714181637727 ], [ -95.412559011215265, 29.690667181615314 ], [ -95.412553011550685, 29.690065181465123 ], [ -95.412540011588518, 29.689274181431237 ], [ -95.412497011390798, 29.688151180997536 ], [ -95.412506011393049, 29.687653180413164 ], [ -95.412501011166157, 29.687549181160325 ], [ -95.412413010858202, 29.684851180441925 ], [ -95.412379010713451, 29.683724179889111 ], [ -95.412370010623235, 29.682062179689098 ], [ -95.412273010838419, 29.678343178544896 ], [ -95.412279010283655, 29.6780891790794 ], [ -95.412044010175023, 29.678096178912824 ], [ -95.411685010450555, 29.678122179121551 ], [ -95.411254010684615, 29.678138178532475 ], [ -95.408929009546213, 29.678202178993509 ], [ -95.407936009082576, 29.678247179368565 ], [ -95.407668009131314, 29.678274178638926 ], [ -95.406634009591315, 29.678410179446317 ], [ -95.405626008455371, 29.678540178759462 ], [ -95.404389008853514, 29.67877817889535 ], [ -95.403639008007147, 29.678954178810521 ], [ -95.403417008106928, 29.679009179599298 ], [ -95.403159008499685, 29.679054178900504 ], [ -95.403181008463505, 29.679320178973605 ], [ -95.403202008078608, 29.680174179174347 ], [ -95.403203008076559, 29.68085817950211 ], [ -95.403208008155985, 29.681536179650319 ], [ -95.403205008440239, 29.682222180042999 ], [ -95.403234008577442, 29.685241180986107 ], [ -95.403256009059746, 29.686323180388726 ], [ -95.403281008847841, 29.687469181252759 ], [ -95.40329600816662, 29.6880301812628 ], [ -95.403320008250688, 29.68890018145229 ], [ -95.40332600824496, 29.689913181845672 ], [ -95.403464008576194, 29.690350181856161 ], [ -95.4035670088914, 29.690576181804058 ], [ -95.403684009118606, 29.690799181648345 ], [ -95.404013008582808, 29.691222181977796 ], [ -95.404386009544965, 29.691641181572738 ], [ -95.404594009330182, 29.692007182202428 ], [ -95.404657009700486, 29.69211718212981 ], [ -95.404703008822793, 29.692237182127371 ], [ -95.404807009179805, 29.692662181609705 ], [ -95.404818009637538, 29.693097182482632 ], [ -95.404777009580386, 29.694693182554779 ], [ -95.404773009239292, 29.694832182657855 ], [ -95.40474100889746, 29.695351182536299 ], [ -95.404751008986409, 29.695690183054658 ], [ -95.404758009654444, 29.695897182637133 ], [ -95.404803009155302, 29.696403183155052 ], [ -95.404887009021692, 29.696907183205674 ], [ -95.404967008999236, 29.697203182797107 ], [ -95.405047009686726, 29.697448183078745 ], [ -95.405238009841611, 29.69789118290273 ], [ -95.405405009472787, 29.698199183336268 ], [ -95.405884009453132, 29.698873183219369 ], [ -95.406150009793876, 29.699124183756844 ], [ -95.406382009615001, 29.69932018315658 ], [ -95.406721009941521, 29.699586183230949 ], [ -95.407194010699087, 29.699959183192266 ], [ -95.407661010475948, 29.700314183573006 ], [ -95.407732010682807, 29.700368183183329 ], [ -95.408085010668387, 29.699939183446205 ], [ -95.408712010657979, 29.698651183386044 ], [ -95.409020010369858, 29.698315182730823 ], [ -95.40926301040281, 29.698137182616176 ], [ -95.409762010435429, 29.697774182793665 ], [ -95.410088010562944, 29.697553182594692 ], [ -95.410273010728432, 29.697464182813228 ], [ -95.410519011260703, 29.697346183016514 ], [ -95.411037011240097, 29.697236182432658 ], [ -95.411445010930819, 29.697202182527914 ], [ -95.412012011142565, 29.697286182880422 ], [ -95.412133010932337, 29.697317182927794 ], [ -95.412221011168825, 29.69721318246679 ], [ -95.412378011221577, 29.69702818242434 ], [ -95.412423011285412, 29.696957182395327 ], [ -95.41336001158092, 29.695758182452462 ], [ -95.413609011622611, 29.6954541824941 ], [ -95.414370011608682, 29.694454182321202 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 989, "Tract": "48201323602", "Area_SqMi": 0.87549169030159568, "total_2009": 452, "total_2010": 496, "total_2011": 690, "total_2012": 631, "total_2013": 508, "total_2014": 386, "total_2015": 391, "total_2016": 388, "total_2017": 305, "total_2018": 262, "total_2019": 237, "total_2020": 1043, "age1": 213, "age2": 478, "age3": 99, "earn1": 78, "earn2": 141, "earn3": 571, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 4, "naics_s06": 11, "naics_s07": 43, "naics_s08": 10, "naics_s09": 0, "naics_s10": 13, "naics_s11": 6, "naics_s12": 551, "naics_s13": 0, "naics_s14": 9, "naics_s15": 2, "naics_s16": 52, "naics_s17": 0, "naics_s18": 47, "naics_s19": 26, "naics_s20": 0, "race1": 653, "race2": 66, "race3": 4, "race4": 51, "race5": 1, "race6": 15, "ethnicity1": 533, "ethnicity2": 257, "edu1": 117, "edu2": 158, "edu3": 177, "edu4": 125, "Shape_Length": 23209.907901609113, "Shape_Area": 24407209.906605117, "total_2021": 882, "total_2022": 790 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.195702953484172, 29.638624177846374 ], [ -95.19467395261141, 29.637260177759298 ], [ -95.193512952282717, 29.6357261772811 ], [ -95.193302952431864, 29.635454177421419 ], [ -95.193046952406135, 29.635102177694222 ], [ -95.19280195230067, 29.634799176893171 ], [ -95.19263395234664, 29.634572177041889 ], [ -95.19255295200476, 29.634411177153684 ], [ -95.192537952303681, 29.634292177327655 ], [ -95.192538952657685, 29.634016176854143 ], [ -95.19259095272794, 29.633395176589037 ], [ -95.192714952607119, 29.632153176965918 ], [ -95.192792952164027, 29.631375176693812 ], [ -95.191255951371915, 29.631400176390422 ], [ -95.190824951616378, 29.631410176379585 ], [ -95.190813951376342, 29.631213176788819 ], [ -95.190794951911585, 29.630365176157408 ], [ -95.190791952005711, 29.630314176167161 ], [ -95.190789952044014, 29.630255176564361 ], [ -95.190641951360618, 29.630255176578441 ], [ -95.19049795155594, 29.63025517658162 ], [ -95.190402951137273, 29.630256175999538 ], [ -95.190383951041397, 29.630256176730004 ], [ -95.189962951123434, 29.630264176367643 ], [ -95.189542951392212, 29.63027117674687 ], [ -95.18943795169578, 29.630273176250768 ], [ -95.189304950932325, 29.630275176307862 ], [ -95.189109951660484, 29.630270176520295 ], [ -95.188977951676137, 29.630267176483127 ], [ -95.18884295114718, 29.630263176381074 ], [ -95.188488951065324, 29.630264176729305 ], [ -95.18773495071116, 29.630276176388683 ], [ -95.186991950634194, 29.630286176942125 ], [ -95.186666951042724, 29.630291176477147 ], [ -95.186525950370864, 29.630293176904615 ], [ -95.186384950759418, 29.630295176311233 ], [ -95.186352950726913, 29.630296176346658 ], [ -95.186329950627098, 29.630297176488629 ], [ -95.186079950317378, 29.630300176552062 ], [ -95.185880950256333, 29.630301176817277 ], [ -95.1850669505111, 29.630329176652122 ], [ -95.18500795032385, 29.630332176234894 ], [ -95.184324950258798, 29.630334177091896 ], [ -95.183234949464889, 29.630375176867798 ], [ -95.182115949850171, 29.63036117674363 ], [ -95.182068949076466, 29.63036417705332 ], [ -95.181594948878839, 29.63036517663258 ], [ -95.18121594908888, 29.630367176760309 ], [ -95.181236948746445, 29.631528176744379 ], [ -95.181251949751072, 29.632229176815926 ], [ -95.181292949062538, 29.634150177448181 ], [ -95.181299949800604, 29.634566177735607 ], [ -95.181370949826615, 29.636154177581197 ], [ -95.181349949909205, 29.637345177962573 ], [ -95.181376949392671, 29.638120178567341 ], [ -95.181382949203211, 29.638614178343502 ], [ -95.181291950086461, 29.640463178434409 ], [ -95.181301949491498, 29.640784178814418 ], [ -95.181305949350147, 29.640912178866596 ], [ -95.181356949916349, 29.642676178866122 ], [ -95.181371949620768, 29.643166179362968 ], [ -95.181413949479094, 29.644169179540928 ], [ -95.181417949613163, 29.644715179839018 ], [ -95.181499949702527, 29.645659180307895 ], [ -95.181482949593843, 29.646448180171344 ], [ -95.181477950010134, 29.646728180263992 ], [ -95.181526950487765, 29.646937180446244 ], [ -95.181761950112943, 29.647555180450802 ], [ -95.181939950155424, 29.647943180642926 ], [ -95.182282949927441, 29.648760180897192 ], [ -95.182548950408858, 29.64936018067398 ], [ -95.182619950208533, 29.649503181045596 ], [ -95.182991950247427, 29.6501991805101 ], [ -95.183411950202569, 29.650807180832242 ], [ -95.183832951063039, 29.650807180544923 ], [ -95.184909950689246, 29.650802180553942 ], [ -95.185258950942455, 29.650808180383546 ], [ -95.185606951353904, 29.650831180957205 ], [ -95.18595395125007, 29.650870181122212 ], [ -95.186294951911563, 29.65092418084825 ], [ -95.188853952494512, 29.651391180679695 ], [ -95.189154952051069, 29.651439180891717 ], [ -95.189458951808845, 29.651471180871042 ], [ -95.189719952770631, 29.651485180516485 ], [ -95.190069952705528, 29.651489180378444 ], [ -95.190890953061881, 29.651472181185476 ], [ -95.190881952570578, 29.651079180533607 ], [ -95.190875952083204, 29.65080818069146 ], [ -95.190870952803593, 29.650594181029355 ], [ -95.190863952351094, 29.650254180906469 ], [ -95.190828951964065, 29.648628179954716 ], [ -95.190784952686002, 29.646396179941654 ], [ -95.190755952635641, 29.644333179234671 ], [ -95.190721952299526, 29.643655179615305 ], [ -95.190719951674936, 29.642971179307725 ], [ -95.190700952654907, 29.6422861786893 ], [ -95.190664952427156, 29.641632178843711 ], [ -95.190666952385698, 29.641257178555279 ], [ -95.190671951995029, 29.640247178716656 ], [ -95.190632951967274, 29.63950617830923 ], [ -95.190597952003529, 29.639004178068099 ], [ -95.190587952467482, 29.63885217817483 ], [ -95.190826951842155, 29.638800178481663 ], [ -95.190880951886129, 29.638788178016018 ], [ -95.191057952509453, 29.638750177769534 ], [ -95.191116952372468, 29.638733178413652 ], [ -95.191893952641749, 29.638687177955788 ], [ -95.192561952123228, 29.638680178379147 ], [ -95.193002952947083, 29.638673178206346 ], [ -95.194019952590949, 29.63866117758544 ], [ -95.194643952889535, 29.638648177833677 ], [ -95.195702953484172, 29.638624177846374 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 990, "Tract": "48201312501", "Area_SqMi": 0.37872947621560393, "total_2009": 3832, "total_2010": 4076, "total_2011": 3869, "total_2012": 3852, "total_2013": 3835, "total_2014": 3845, "total_2015": 3913, "total_2016": 4063, "total_2017": 4194, "total_2018": 4379, "total_2019": 4224, "total_2020": 3960, "age1": 736, "age2": 2579, "age3": 933, "earn1": 391, "earn2": 925, "earn3": 2932, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 185, "naics_s06": 74, "naics_s07": 130, "naics_s08": 55, "naics_s09": 6, "naics_s10": 98, "naics_s11": 68, "naics_s12": 281, "naics_s13": 23, "naics_s14": 53, "naics_s15": 6, "naics_s16": 2839, "naics_s17": 16, "naics_s18": 211, "naics_s19": 170, "naics_s20": 33, "race1": 2126, "race2": 1673, "race3": 16, "race4": 359, "race5": 1, "race6": 73, "ethnicity1": 3142, "ethnicity2": 1106, "edu1": 634, "edu2": 843, "edu3": 1101, "edu4": 934, "Shape_Length": 13119.284328330712, "Shape_Area": 10558329.594914269, "total_2021": 4103, "total_2022": 4248 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.376585003846884, 29.742235192795871 ], [ -95.377048004562795, 29.741658192792432 ], [ -95.376187004359664, 29.741103192938279 ], [ -95.375329004021154, 29.7405991925148 ], [ -95.374461003115144, 29.740085192993455 ], [ -95.373599003015002, 29.739573192329704 ], [ -95.372743002945668, 29.739051192318289 ], [ -95.371893003287084, 29.738537192344857 ], [ -95.371036002937075, 29.738006192897089 ], [ -95.37019800187862, 29.737507192159214 ], [ -95.369667002326906, 29.737183192358664 ], [ -95.36936300236377, 29.736990192124548 ], [ -95.369092002533904, 29.736831192008204 ], [ -95.368578001509334, 29.737505192795716 ], [ -95.367620001776061, 29.738728192628006 ], [ -95.366089001433252, 29.740587193206707 ], [ -95.365609001339294, 29.741169193171494 ], [ -95.364329000945318, 29.742752193235464 ], [ -95.3640350008952, 29.74313919403011 ], [ -95.363723000976208, 29.743551193500046 ], [ -95.363490001052938, 29.743858193962083 ], [ -95.363439001248437, 29.743922193788372 ], [ -95.363024000918088, 29.744440193972636 ], [ -95.362848001053976, 29.744668194381806 ], [ -95.362691000350097, 29.744870194389442 ], [ -95.362759000623555, 29.744898194553581 ], [ -95.362982000726419, 29.74498819434082 ], [ -95.363170000835638, 29.745068194364016 ], [ -95.363558001110661, 29.745219193802487 ], [ -95.36398000157422, 29.745367194531248 ], [ -95.364337001434464, 29.745508194501603 ], [ -95.364547001200236, 29.745608194254363 ], [ -95.364905001506543, 29.745761194643553 ], [ -95.365197001250422, 29.745885194222254 ], [ -95.365784001387027, 29.746241194338396 ], [ -95.36664100139815, 29.746760194231747 ], [ -95.367494001817505, 29.747276194057026 ], [ -95.368350001974889, 29.747795194108232 ], [ -95.369252003010459, 29.748340194310384 ], [ -95.370087002773673, 29.748824194752903 ], [ -95.370954003252677, 29.749324195163133 ], [ -95.371045003513757, 29.749209194780764 ], [ -95.371424003541136, 29.748734194823871 ], [ -95.372025002963184, 29.748013194706846 ], [ -95.372614003596183, 29.747263194737791 ], [ -95.373157003574519, 29.746570194433623 ], [ -95.373608003712434, 29.746014194003621 ], [ -95.373801003445479, 29.745764193582978 ], [ -95.374081003322715, 29.745417194308356 ], [ -95.374648003734961, 29.744685193365925 ], [ -95.375101004275152, 29.744106193440881 ], [ -95.375561004358659, 29.743536193252208 ], [ -95.376121004469908, 29.74281319327952 ], [ -95.376585003846884, 29.742235192795871 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 991, "Tract": "48201510702", "Area_SqMi": 0.19795088643318298, "total_2009": 464, "total_2010": 459, "total_2011": 579, "total_2012": 580, "total_2013": 678, "total_2014": 718, "total_2015": 746, "total_2016": 778, "total_2017": 984, "total_2018": 961, "total_2019": 802, "total_2020": 733, "age1": 259, "age2": 392, "age3": 136, "earn1": 165, "earn2": 316, "earn3": 306, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 53, "naics_s05": 8, "naics_s06": 10, "naics_s07": 3, "naics_s08": 0, "naics_s09": 0, "naics_s10": 24, "naics_s11": 8, "naics_s12": 109, "naics_s13": 2, "naics_s14": 32, "naics_s15": 0, "naics_s16": 141, "naics_s17": 19, "naics_s18": 308, "naics_s19": 69, "naics_s20": 0, "race1": 595, "race2": 93, "race3": 9, "race4": 75, "race5": 0, "race6": 15, "ethnicity1": 512, "ethnicity2": 275, "edu1": 103, "edu2": 139, "edu3": 162, "edu4": 124, "Shape_Length": 10418.719496131735, "Shape_Area": 5518531.9174290309, "total_2021": 791, "total_2022": 787 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.409470014273793, 29.770475197605382 ], [ -95.40948601400963, 29.770387197739471 ], [ -95.40946401386833, 29.769708197477016 ], [ -95.409454013830668, 29.768978197253706 ], [ -95.409429013447792, 29.768270197050732 ], [ -95.409425013671154, 29.767533197427859 ], [ -95.409409014123483, 29.766816196701747 ], [ -95.409391013288953, 29.766079197120096 ], [ -95.409283013510446, 29.766076196731877 ], [ -95.408277013693521, 29.766099196782363 ], [ -95.40718301351508, 29.766112197062657 ], [ -95.407088013464431, 29.766109196823741 ], [ -95.406148013036244, 29.766124197273996 ], [ -95.406050013139819, 29.766130197472073 ], [ -95.404795012701584, 29.7661491974239 ], [ -95.403323012146231, 29.766175197297358 ], [ -95.403057011734575, 29.76618519721508 ], [ -95.402774011623407, 29.766219196857548 ], [ -95.402528012246691, 29.766271197100536 ], [ -95.402321012299794, 29.766309197548082 ], [ -95.40215501138691, 29.766327197039903 ], [ -95.401995011688243, 29.766339196823964 ], [ -95.401823012163248, 29.766334197614071 ], [ -95.401708011860634, 29.766322196826003 ], [ -95.400810011526872, 29.766354197040361 ], [ -95.39972401150186, 29.766374197174251 ], [ -95.399518011281657, 29.766398197395358 ], [ -95.399054011361613, 29.76649419753884 ], [ -95.3987750112654, 29.76653119742506 ], [ -95.398098011258853, 29.766555197715221 ], [ -95.397627010583292, 29.766543197611163 ], [ -95.397373011151785, 29.766572197543585 ], [ -95.397119010660063, 29.767330197353928 ], [ -95.397122010633211, 29.768027197778451 ], [ -95.397119010796871, 29.768717198219452 ], [ -95.397125010485965, 29.769033197688429 ], [ -95.397279010377545, 29.769562198206152 ], [ -95.398153010695339, 29.769666198433026 ], [ -95.398579011442692, 29.769712197798256 ], [ -95.399251010883717, 29.769790197632247 ], [ -95.40090801128521, 29.769956197800926 ], [ -95.401901011793711, 29.770074197596397 ], [ -95.402232012354517, 29.770110198421175 ], [ -95.404000012430316, 29.770297197687842 ], [ -95.404890012828716, 29.770369198384369 ], [ -95.406130012629234, 29.770506197870294 ], [ -95.407250013400301, 29.770493197929838 ], [ -95.408351013433219, 29.770477197997227 ], [ -95.409470014273793, 29.770475197605382 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 992, "Tract": "48201431204", "Area_SqMi": 0.33549567408890468, "total_2009": 3159, "total_2010": 2622, "total_2011": 3655, "total_2012": 3737, "total_2013": 4156, "total_2014": 4072, "total_2015": 4160, "total_2016": 4031, "total_2017": 4121, "total_2018": 4345, "total_2019": 4308, "total_2020": 3765, "age1": 772, "age2": 1991, "age3": 771, "earn1": 511, "earn2": 892, "earn3": 2131, "naics_s01": 3, "naics_s02": 43, "naics_s03": 232, "naics_s04": 400, "naics_s05": 7, "naics_s06": 50, "naics_s07": 265, "naics_s08": 6, "naics_s09": 95, "naics_s10": 267, "naics_s11": 90, "naics_s12": 388, "naics_s13": 126, "naics_s14": 993, "naics_s15": 56, "naics_s16": 371, "naics_s17": 10, "naics_s18": 91, "naics_s19": 32, "naics_s20": 9, "race1": 2508, "race2": 682, "race3": 29, "race4": 224, "race5": 3, "race6": 88, "ethnicity1": 2626, "ethnicity2": 908, "edu1": 445, "edu2": 627, "edu3": 880, "edu4": 810, "Shape_Length": 15874.208881125171, "Shape_Area": 9353045.1870137546, "total_2021": 3601, "total_2022": 3534 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508433038503924, 29.748319189833214 ], [ -95.508420038393027, 29.748118189436511 ], [ -95.508353037711629, 29.748083190230236 ], [ -95.508325037991256, 29.748069189969065 ], [ -95.508054038052492, 29.747965189414558 ], [ -95.507835038416474, 29.747927189639139 ], [ -95.507705038468615, 29.747904189596287 ], [ -95.50743403816152, 29.747835190215021 ], [ -95.50733803844409, 29.747826189621989 ], [ -95.506977038031593, 29.747792189751831 ], [ -95.506820037771959, 29.747530189521726 ], [ -95.506719037503501, 29.747231189583431 ], [ -95.506792037562207, 29.74705718958355 ], [ -95.506898037843911, 29.746977189487549 ], [ -95.507132037814301, 29.746789189584728 ], [ -95.507279038118753, 29.746637189546743 ], [ -95.507317037643105, 29.746599189815008 ], [ -95.507585038373193, 29.746374189991034 ], [ -95.50770503768419, 29.746195189127224 ], [ -95.507847038081508, 29.74609918958258 ], [ -95.507752037930103, 29.745819189301137 ], [ -95.507758038295862, 29.745218188932018 ], [ -95.507772038239764, 29.743873189008855 ], [ -95.507739037668131, 29.742582188690466 ], [ -95.507723038195394, 29.741965188228523 ], [ -95.506022036880324, 29.741959188942886 ], [ -95.505996037246248, 29.741799188759632 ], [ -95.505995037420107, 29.74176818862253 ], [ -95.505791037021993, 29.741785188631056 ], [ -95.505180036838695, 29.741808188673062 ], [ -95.50512703682044, 29.740983188249146 ], [ -95.50513003733019, 29.740502188505534 ], [ -95.505133036904851, 29.740149188407184 ], [ -95.505097037029628, 29.739340188043165 ], [ -95.505068036605479, 29.738524187766714 ], [ -95.505053036989892, 29.737646188217088 ], [ -95.505050037028781, 29.737471188174641 ], [ -95.504143036641224, 29.737509188046584 ], [ -95.500912035980619, 29.737543188367841 ], [ -95.500912036146303, 29.737670188203229 ], [ -95.500897036059413, 29.738711188009063 ], [ -95.500902035817816, 29.739063187925634 ], [ -95.500913035778538, 29.739753188550786 ], [ -95.500923035676976, 29.740456188927936 ], [ -95.500925035898476, 29.740585188797496 ], [ -95.500940036343223, 29.74147118914081 ], [ -95.500959035732535, 29.742088188680619 ], [ -95.500957036055482, 29.742494189134053 ], [ -95.500957035715814, 29.74269518902117 ], [ -95.500956036366247, 29.743453189139554 ], [ -95.500961036249265, 29.744025188977091 ], [ -95.500978035922046, 29.744384189419762 ], [ -95.500984036188456, 29.744699189527701 ], [ -95.500997035968027, 29.745085189891263 ], [ -95.501009035775922, 29.745425189963445 ], [ -95.501021036672938, 29.745688189480894 ], [ -95.501015036419233, 29.746318189597439 ], [ -95.501030035903213, 29.747310189864962 ], [ -95.501050036100409, 29.748288190539611 ], [ -95.501056036176777, 29.749149190001088 ], [ -95.501068036168107, 29.749266190154156 ], [ -95.501103036846615, 29.749832190072794 ], [ -95.501108036313994, 29.750381190539276 ], [ -95.501110036639616, 29.750486190702848 ], [ -95.501112036519231, 29.751267190875783 ], [ -95.501113036434759, 29.751703191063434 ], [ -95.501118036525412, 29.752139190950864 ], [ -95.501118036422795, 29.752308190893199 ], [ -95.501119036457624, 29.752711191431576 ], [ -95.501116036794997, 29.752891191088306 ], [ -95.50111403701132, 29.75297019095472 ], [ -95.501297036161731, 29.752970190987245 ], [ -95.501344037117448, 29.752970190680067 ], [ -95.501952037187422, 29.752969191269489 ], [ -95.502376036756942, 29.752968190830277 ], [ -95.502507036615114, 29.752960191113804 ], [ -95.502601037284109, 29.75295419067589 ], [ -95.503054036859908, 29.752956190816555 ], [ -95.503618037204134, 29.752958191241419 ], [ -95.504178037845222, 29.752956190963285 ], [ -95.504623037180352, 29.752931191326738 ], [ -95.504652037601659, 29.752833191286459 ], [ -95.504671037554289, 29.752648190580661 ], [ -95.504684037915055, 29.752486190500541 ], [ -95.504700037127932, 29.752398190985843 ], [ -95.504725037255085, 29.752316190509529 ], [ -95.504755036994212, 29.752257190558232 ], [ -95.504795037874857, 29.752179191026649 ], [ -95.504979037518297, 29.751876190672125 ], [ -95.505009037822248, 29.751827190992426 ], [ -95.505085037836068, 29.751678191136367 ], [ -95.505141037473891, 29.751525190792886 ], [ -95.505167037367301, 29.751365190565693 ], [ -95.505224038032495, 29.75113419054745 ], [ -95.505236037152159, 29.751075190342853 ], [ -95.505266037318265, 29.750920190326045 ], [ -95.50528103730565, 29.750843190371924 ], [ -95.505293037661275, 29.750738190904499 ], [ -95.505306037791854, 29.750524190683169 ], [ -95.5053000377454, 29.750458190418243 ], [ -95.505268037554629, 29.750332190678115 ], [ -95.505268037975924, 29.750233190345721 ], [ -95.505282037970062, 29.750205190133688 ], [ -95.505439037750477, 29.750094190695101 ], [ -95.505564037405023, 29.749932190622555 ], [ -95.505605037630389, 29.74983119062723 ], [ -95.505665037911811, 29.749765190356019 ], [ -95.505658037640387, 29.749697189944449 ], [ -95.505754037131879, 29.749460190544312 ], [ -95.50578403738858, 29.749275190323718 ], [ -95.505798037508427, 29.749207190590408 ], [ -95.505828037893579, 29.749047189798802 ], [ -95.505924037265558, 29.748848190388994 ], [ -95.506159037232877, 29.748559189609189 ], [ -95.50634503761755, 29.748394189601239 ], [ -95.506479037303947, 29.748365189597983 ], [ -95.506566038114556, 29.748346190130054 ], [ -95.506975038165436, 29.748463189794091 ], [ -95.50755003790384, 29.748742189751741 ], [ -95.507583037702034, 29.748759189986181 ], [ -95.507788037890506, 29.748748190248218 ], [ -95.507975038621311, 29.748702189796091 ], [ -95.508010038578348, 29.748690189781961 ], [ -95.508220037950423, 29.748551190370939 ], [ -95.508361038464457, 29.748424190226796 ], [ -95.508396038123621, 29.748367190045144 ], [ -95.508433038503924, 29.748319189833214 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 993, "Tract": "48201533301", "Area_SqMi": 0.73542251524290569, "total_2009": 351, "total_2010": 349, "total_2011": 352, "total_2012": 638, "total_2013": 720, "total_2014": 626, "total_2015": 870, "total_2016": 749, "total_2017": 775, "total_2018": 715, "total_2019": 512, "total_2020": 484, "age1": 178, "age2": 197, "age3": 112, "earn1": 149, "earn2": 209, "earn3": 129, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 53, "naics_s07": 189, "naics_s08": 30, "naics_s09": 1, "naics_s10": 19, "naics_s11": 14, "naics_s12": 20, "naics_s13": 0, "naics_s14": 39, "naics_s15": 0, "naics_s16": 14, "naics_s17": 0, "naics_s18": 98, "naics_s19": 8, "naics_s20": 0, "race1": 340, "race2": 110, "race3": 2, "race4": 28, "race5": 0, "race6": 7, "ethnicity1": 280, "ethnicity2": 207, "edu1": 78, "edu2": 93, "edu3": 82, "edu4": 56, "Shape_Length": 23546.789334673107, "Shape_Area": 20502321.036757857, "total_2021": 451, "total_2022": 487 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429647023599102, 29.870962217222566 ], [ -95.429644023895364, 29.870840217443106 ], [ -95.429643023755929, 29.870806217914076 ], [ -95.429626023726101, 29.869940217031584 ], [ -95.429610023925974, 29.868784217068132 ], [ -95.429574023794345, 29.867186216544908 ], [ -95.429561023412759, 29.866020216686433 ], [ -95.429511023180751, 29.865394216678677 ], [ -95.429458022842965, 29.864674216782912 ], [ -95.429240023156765, 29.864481216702984 ], [ -95.428177023195119, 29.863594215776235 ], [ -95.427845022835186, 29.863720216124321 ], [ -95.42717402240666, 29.86396721607067 ], [ -95.426473022970569, 29.864216216185863 ], [ -95.426284022348767, 29.86428321673764 ], [ -95.425094022467405, 29.86469921669531 ], [ -95.424694022424603, 29.864835217009109 ], [ -95.4239230218204, 29.865131216314037 ], [ -95.423340022242641, 29.86536121649074 ], [ -95.423157021331036, 29.865396216660976 ], [ -95.422343021623249, 29.865693216855927 ], [ -95.421835021523549, 29.865873216979168 ], [ -95.419194020440017, 29.866835216914531 ], [ -95.418184020220977, 29.867194217513042 ], [ -95.416717019673072, 29.867726217288208 ], [ -95.416161020154547, 29.867935217134814 ], [ -95.414814019541993, 29.868422217558134 ], [ -95.414612019147214, 29.868491217630154 ], [ -95.414257019463193, 29.868612217840745 ], [ -95.412965018883085, 29.869110218244767 ], [ -95.412757019470178, 29.869187217620564 ], [ -95.412439018630948, 29.869298217555546 ], [ -95.411456018661369, 29.869642218299294 ], [ -95.41084001917433, 29.86977321834425 ], [ -95.410478018196443, 29.869845218162581 ], [ -95.409679018432797, 29.869862218096145 ], [ -95.409208018311546, 29.869873218483253 ], [ -95.408779018594316, 29.869897218407061 ], [ -95.408140018517997, 29.869877218024392 ], [ -95.407930018077266, 29.869871218485002 ], [ -95.408044018400631, 29.870095218168583 ], [ -95.40829001791775, 29.870580218489337 ], [ -95.409023018376899, 29.871800218541164 ], [ -95.409320018735116, 29.872266218434632 ], [ -95.410238018807647, 29.873604218832906 ], [ -95.410833019364787, 29.874252218676766 ], [ -95.41102501857111, 29.874420218951478 ], [ -95.411617019623094, 29.875180219087483 ], [ -95.411942019194726, 29.875562218948737 ], [ -95.412248018880874, 29.875943219659284 ], [ -95.412464019605196, 29.876237219716334 ], [ -95.413053019248281, 29.876975219226797 ], [ -95.413305019695557, 29.877317219627191 ], [ -95.413735019572869, 29.877900219981381 ], [ -95.414796019740194, 29.879342220274204 ], [ -95.415746020873399, 29.880583219698501 ], [ -95.417183021420257, 29.882465220754057 ], [ -95.417335021072077, 29.882663220854283 ], [ -95.41750002143219, 29.882880220593279 ], [ -95.417559020640709, 29.882708220895839 ], [ -95.417947020643538, 29.882480220017417 ], [ -95.418080021348558, 29.882400220694716 ], [ -95.418240021572174, 29.882321220069112 ], [ -95.418473021122182, 29.88226022026851 ], [ -95.418837021052809, 29.882242220162926 ], [ -95.419151021277699, 29.882246220044621 ], [ -95.41945602198102, 29.882269220197536 ], [ -95.419803022032198, 29.882326220240291 ], [ -95.420022021306551, 29.882374220242745 ], [ -95.420310022058672, 29.882407220777878 ], [ -95.420529022095863, 29.882410220671314 ], [ -95.420787021882362, 29.882396219966182 ], [ -95.420776021873763, 29.881578220006375 ], [ -95.42077102150634, 29.880752220190278 ], [ -95.420762021231539, 29.879927220055819 ], [ -95.420748021916296, 29.879106219436856 ], [ -95.420735021986516, 29.878209219163654 ], [ -95.420734021877621, 29.878093219012477 ], [ -95.420733021451738, 29.877889219454506 ], [ -95.420704021377503, 29.876101218861475 ], [ -95.420710021153724, 29.875918218630115 ], [ -95.420723021247554, 29.875771218546554 ], [ -95.420764021435929, 29.875597218868513 ], [ -95.420806021411096, 29.87548821848269 ], [ -95.420848021430984, 29.875381219199621 ], [ -95.421202021626556, 29.874737219088772 ], [ -95.421241021536488, 29.874664219094978 ], [ -95.421261021909174, 29.874584218768888 ], [ -95.421260021367047, 29.874481218979156 ], [ -95.421217021669094, 29.874371219079627 ], [ -95.421161021396316, 29.874277218848924 ], [ -95.421090022034747, 29.874215219019767 ], [ -95.42093302163687, 29.874009218204623 ], [ -95.420855021420905, 29.873877218921706 ], [ -95.420792021783996, 29.873738218292289 ], [ -95.420761020913034, 29.873635218654499 ], [ -95.420742021323377, 29.873516218868147 ], [ -95.420726021653536, 29.873282218165098 ], [ -95.42072102156979, 29.873043218839936 ], [ -95.420723021442697, 29.872813218584348 ], [ -95.42069902144118, 29.87186621817764 ], [ -95.420696021653143, 29.871000217910463 ], [ -95.422147021326097, 29.870998218272749 ], [ -95.42367902249832, 29.870995217714714 ], [ -95.425400022777382, 29.870984217518398 ], [ -95.425894022198264, 29.870981217828326 ], [ -95.426775022703879, 29.87097621805496 ], [ -95.426929022601612, 29.870971217968211 ], [ -95.427975023227049, 29.87096721754844 ], [ -95.429647023599102, 29.870962217222566 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 994, "Tract": "48201221501", "Area_SqMi": 0.67140829698975879, "total_2009": 719, "total_2010": 729, "total_2011": 1008, "total_2012": 1029, "total_2013": 1074, "total_2014": 884, "total_2015": 849, "total_2016": 751, "total_2017": 791, "total_2018": 814, "total_2019": 852, "total_2020": 742, "age1": 232, "age2": 460, "age3": 178, "earn1": 259, "earn2": 367, "earn3": 244, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 7, "naics_s06": 1, "naics_s07": 100, "naics_s08": 4, "naics_s09": 2, "naics_s10": 127, "naics_s11": 9, "naics_s12": 103, "naics_s13": 0, "naics_s14": 140, "naics_s15": 0, "naics_s16": 164, "naics_s17": 0, "naics_s18": 179, "naics_s19": 7, "naics_s20": 2, "race1": 617, "race2": 182, "race3": 7, "race4": 47, "race5": 2, "race6": 15, "ethnicity1": 468, "ethnicity2": 402, "edu1": 141, "edu2": 161, "edu3": 192, "edu4": 144, "Shape_Length": 19934.887179399426, "Shape_Area": 18717714.193289634, "total_2021": 828, "total_2022": 870 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.404920016811033, 29.864268217113668 ], [ -95.405068017125586, 29.864270216841962 ], [ -95.404058016519215, 29.862286216589105 ], [ -95.403555015976309, 29.861301216185698 ], [ -95.403456016297525, 29.861107216467094 ], [ -95.402705016469895, 29.859634216508177 ], [ -95.402687016506135, 29.859600216319691 ], [ -95.402585016555278, 29.859400215838942 ], [ -95.402482015648914, 29.859433216475423 ], [ -95.402355016216362, 29.859473215935093 ], [ -95.402131015589518, 29.859545216696052 ], [ -95.401969016158233, 29.859597216198505 ], [ -95.401757015618728, 29.859621216725575 ], [ -95.40160801629716, 29.859631216643315 ], [ -95.40123301566328, 29.859644216228634 ], [ -95.399608015273827, 29.85964521608506 ], [ -95.397775015349353, 29.859651216301444 ], [ -95.397670014397491, 29.859651216167595 ], [ -95.397380014724988, 29.859638216454975 ], [ -95.397027014733396, 29.859635216545794 ], [ -95.396255014414933, 29.859638216334357 ], [ -95.394931014528908, 29.85964421619083 ], [ -95.393849014426351, 29.859652216156913 ], [ -95.392863014074379, 29.859670216914846 ], [ -95.392210012982702, 29.859664217064957 ], [ -95.391089013287299, 29.859669216851429 ], [ -95.389490013288992, 29.859659216543811 ], [ -95.387784012539271, 29.859673216864515 ], [ -95.386526011821076, 29.859688217128085 ], [ -95.385976012282057, 29.859671217318034 ], [ -95.385669012162211, 29.859643217093151 ], [ -95.385292011513414, 29.859584216987844 ], [ -95.384714011158565, 29.859443216811432 ], [ -95.384724011341845, 29.860141217054814 ], [ -95.384731011575951, 29.860688217332211 ], [ -95.384750011248315, 29.861723217059026 ], [ -95.38477101187452, 29.862906217746072 ], [ -95.384784011442463, 29.863625217527098 ], [ -95.384807011937625, 29.864453218101783 ], [ -95.38485501161054, 29.867215218028612 ], [ -95.384879012344399, 29.868450218764572 ], [ -95.384891012154327, 29.869047219216014 ], [ -95.384920012086042, 29.870055218876249 ], [ -95.385505012178584, 29.870047219251411 ], [ -95.385609012618218, 29.870038218652489 ], [ -95.385920012031988, 29.870028219362599 ], [ -95.388541013172031, 29.869998218671782 ], [ -95.390261013568889, 29.869988218452661 ], [ -95.391220013286656, 29.869977218986804 ], [ -95.394561014452222, 29.869941218238647 ], [ -95.395601015010584, 29.869931218205465 ], [ -95.397197015656872, 29.869925218684511 ], [ -95.39783501561223, 29.86991321814191 ], [ -95.397833015149715, 29.869589218479192 ], [ -95.397749015260331, 29.865309217907843 ], [ -95.397737015489611, 29.864717217795111 ], [ -95.397740014608871, 29.864324217466798 ], [ -95.397813015284271, 29.864323217255873 ], [ -95.399267015511029, 29.864310217403521 ], [ -95.402525016187283, 29.864267217151621 ], [ -95.403006016093897, 29.864261217153416 ], [ -95.40325601614002, 29.864257217489982 ], [ -95.403286016419131, 29.864257216767207 ], [ -95.404531016745722, 29.864259216890485 ], [ -95.404789017037416, 29.864264216823734 ], [ -95.404920016811033, 29.864268217113668 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 995, "Tract": "48201410801", "Area_SqMi": 0.20343413319948353, "total_2009": 702, "total_2010": 679, "total_2011": 467, "total_2012": 656, "total_2013": 691, "total_2014": 755, "total_2015": 826, "total_2016": 885, "total_2017": 925, "total_2018": 832, "total_2019": 784, "total_2020": 816, "age1": 343, "age2": 363, "age3": 125, "earn1": 184, "earn2": 368, "earn3": 279, "naics_s01": 0, "naics_s02": 15, "naics_s03": 0, "naics_s04": 6, "naics_s05": 3, "naics_s06": 47, "naics_s07": 418, "naics_s08": 13, "naics_s09": 0, "naics_s10": 6, "naics_s11": 7, "naics_s12": 48, "naics_s13": 1, "naics_s14": 76, "naics_s15": 49, "naics_s16": 77, "naics_s17": 4, "naics_s18": 52, "naics_s19": 9, "naics_s20": 0, "race1": 635, "race2": 95, "race3": 9, "race4": 71, "race5": 0, "race6": 21, "ethnicity1": 463, "ethnicity2": 368, "edu1": 110, "edu2": 111, "edu3": 143, "edu4": 124, "Shape_Length": 10292.581105573601, "Shape_Area": 5671395.4526028577, "total_2021": 835, "total_2022": 831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.410700012957605, 29.738559191668617 ], [ -95.410691013071769, 29.737668190722054 ], [ -95.410679012289506, 29.7368211906808 ], [ -95.410672012577024, 29.735968190838459 ], [ -95.410654012400116, 29.735109190317814 ], [ -95.410658012676009, 29.734246189925425 ], [ -95.408027012058199, 29.734266190167144 ], [ -95.407054011281801, 29.734271190174027 ], [ -95.406241011535855, 29.734267190133192 ], [ -95.404466011366779, 29.734302190518822 ], [ -95.40334801089584, 29.734313190219265 ], [ -95.402851010924081, 29.734318190452615 ], [ -95.402072009944277, 29.734325190621547 ], [ -95.400616010224851, 29.734394190573987 ], [ -95.399489009505331, 29.734426190319141 ], [ -95.399439009483984, 29.734483191156997 ], [ -95.399437009394489, 29.73462619098386 ], [ -95.399309009317307, 29.734939190927587 ], [ -95.399277009404841, 29.735091190947784 ], [ -95.399268009660304, 29.735237190828741 ], [ -95.399276009903019, 29.736094190811659 ], [ -95.399291009742285, 29.736940191092032 ], [ -95.399304010353688, 29.737787191746548 ], [ -95.399321010338568, 29.738698191213768 ], [ -95.401536010916544, 29.73866519135467 ], [ -95.401993010427205, 29.738657191233528 ], [ -95.40452701102987, 29.738633191151479 ], [ -95.406288011494908, 29.738615191407504 ], [ -95.407055012113872, 29.738601191395656 ], [ -95.408072011836808, 29.738596191112531 ], [ -95.409392012865695, 29.738581191733608 ], [ -95.410700012957605, 29.738559191668617 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 996, "Tract": "48201432705", "Area_SqMi": 0.18239898489511072, "total_2009": 796, "total_2010": 848, "total_2011": 831, "total_2012": 1018, "total_2013": 1083, "total_2014": 885, "total_2015": 1214, "total_2016": 1201, "total_2017": 1263, "total_2018": 1213, "total_2019": 1115, "total_2020": 1064, "age1": 286, "age2": 558, "age3": 309, "earn1": 399, "earn2": 411, "earn3": 343, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 15, "naics_s06": 5, "naics_s07": 77, "naics_s08": 2, "naics_s09": 1, "naics_s10": 0, "naics_s11": 186, "naics_s12": 32, "naics_s13": 14, "naics_s14": 238, "naics_s15": 12, "naics_s16": 273, "naics_s17": 9, "naics_s18": 39, "naics_s19": 240, "naics_s20": 0, "race1": 641, "race2": 383, "race3": 9, "race4": 103, "race5": 1, "race6": 16, "ethnicity1": 827, "ethnicity2": 326, "edu1": 203, "edu2": 230, "edu3": 231, "edu4": 203, "Shape_Length": 11503.254580593597, "Shape_Area": 5084971.5198930763, "total_2021": 1095, "total_2022": 1153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.501156035204943, 29.728105186022987 ], [ -95.501152035061011, 29.727435186325472 ], [ -95.501141035192177, 29.726820185906732 ], [ -95.501115035453438, 29.725747185493891 ], [ -95.5010810352627, 29.724588185731896 ], [ -95.501075035439058, 29.724379185050715 ], [ -95.501069035719524, 29.723833185595453 ], [ -95.501044035622542, 29.723301185310664 ], [ -95.501046035726816, 29.723010185141803 ], [ -95.501049035578745, 29.722798185276918 ], [ -95.500296034876015, 29.722896184970111 ], [ -95.498531034327115, 29.723064184968546 ], [ -95.497351034011956, 29.723134184756312 ], [ -95.496405034138974, 29.723195185605665 ], [ -95.4956250336908, 29.723246185181456 ], [ -95.492031032637058, 29.723568185113454 ], [ -95.491652032814528, 29.72360218538601 ], [ -95.491500033123586, 29.723735185346282 ], [ -95.491013032883899, 29.724162185503744 ], [ -95.490858032975822, 29.724293185331888 ], [ -95.490563032955464, 29.724545185283535 ], [ -95.490199032964426, 29.724806185864495 ], [ -95.490140032985323, 29.724849185544638 ], [ -95.48980503262348, 29.725065186168766 ], [ -95.489198031918576, 29.725367186029871 ], [ -95.488812032192769, 29.725534185985335 ], [ -95.488391031876048, 29.725686186003308 ], [ -95.487921032275167, 29.725777186294753 ], [ -95.487940031936006, 29.725842185812482 ], [ -95.487962031954012, 29.725917185889344 ], [ -95.487992031524911, 29.726020186397619 ], [ -95.488059031822729, 29.72617018566698 ], [ -95.488070031750752, 29.726190186069374 ], [ -95.488085032290911, 29.726205185985531 ], [ -95.488109031634124, 29.726222186501644 ], [ -95.488146032551228, 29.726243186307848 ], [ -95.488186032525647, 29.726257186171203 ], [ -95.488857032627109, 29.726386186155022 ], [ -95.489070031973228, 29.726411185938172 ], [ -95.489606032868537, 29.726451186505653 ], [ -95.489992032910294, 29.726437186469003 ], [ -95.490255032473954, 29.726425186204956 ], [ -95.490685032612276, 29.726327185881697 ], [ -95.490941033254657, 29.726268186066701 ], [ -95.491104032898235, 29.726231186069068 ], [ -95.491256032953302, 29.726194185697043 ], [ -95.491631033176262, 29.72613518567092 ], [ -95.492143032685874, 29.726081185879281 ], [ -95.492612032761357, 29.726074185541265 ], [ -95.493565033645041, 29.726058186021895 ], [ -95.493945033077253, 29.726053185745506 ], [ -95.494224033143368, 29.726057186118073 ], [ -95.495268034225504, 29.726031186259664 ], [ -95.495379033769765, 29.726003185641652 ], [ -95.495403033540185, 29.728183186281459 ], [ -95.497857034723566, 29.72814518639516 ], [ -95.498648035095044, 29.72813618609425 ], [ -95.4993500345212, 29.728128186046767 ], [ -95.50028803562148, 29.728117186489779 ], [ -95.501156035204943, 29.728105186022987 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 997, "Tract": "48201313901", "Area_SqMi": 0.81903551971606714, "total_2009": 10047, "total_2010": 11730, "total_2011": 12180, "total_2012": 12227, "total_2013": 13211, "total_2014": 13776, "total_2015": 13666, "total_2016": 13987, "total_2017": 13718, "total_2018": 13992, "total_2019": 14437, "total_2020": 14894, "age1": 2376, "age2": 10222, "age3": 3633, "earn1": 783, "earn2": 2153, "earn3": 13295, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 1171, "naics_s06": 824, "naics_s07": 24, "naics_s08": 284, "naics_s09": 70, "naics_s10": 0, "naics_s11": 17, "naics_s12": 1054, "naics_s13": 7, "naics_s14": 329, "naics_s15": 3, "naics_s16": 12238, "naics_s17": 33, "naics_s18": 37, "naics_s19": 121, "naics_s20": 0, "race1": 7428, "race2": 5846, "race3": 105, "race4": 2600, "race5": 22, "race6": 230, "ethnicity1": 11826, "ethnicity2": 4404, "edu1": 2313, "edu2": 3175, "edu3": 4549, "edu4": 3818, "Shape_Length": 20628.788649561349, "Shape_Area": 22833308.496382229, "total_2021": 15150, "total_2022": 16231 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.391641005664439, 29.685368180636718 ], [ -95.391354005828646, 29.685377180683805 ], [ -95.390689005691343, 29.685380181389881 ], [ -95.390619005431134, 29.685382181360414 ], [ -95.39045500532211, 29.685387180699266 ], [ -95.388964005132337, 29.685403181460231 ], [ -95.388117004919437, 29.685410181165949 ], [ -95.388025004715217, 29.685411181016921 ], [ -95.387474004399934, 29.68542018103663 ], [ -95.387061004141401, 29.685426181218524 ], [ -95.386743004138012, 29.685431180939776 ], [ -95.386216003885295, 29.685440180740287 ], [ -95.386066004355015, 29.685443181242047 ], [ -95.385985004338281, 29.685445181590939 ], [ -95.384993003528336, 29.68544818089941 ], [ -95.384674003975434, 29.685455181564073 ], [ -95.384362003206718, 29.685481181436309 ], [ -95.383988003888177, 29.685533181549623 ], [ -95.383687003792346, 29.685617181755127 ], [ -95.383456003085385, 29.685691180996557 ], [ -95.383217003854739, 29.685786181317347 ], [ -95.382859003165933, 29.685957181295951 ], [ -95.382601003105307, 29.686108181420128 ], [ -95.381695002573537, 29.686648181542857 ], [ -95.381269003128196, 29.686811181731724 ], [ -95.380882002560753, 29.686906181364943 ], [ -95.380532003002699, 29.686941181385297 ], [ -95.380269002526887, 29.686948181567068 ], [ -95.380001002842931, 29.68694418139658 ], [ -95.379797002911801, 29.686937181934677 ], [ -95.379549002774297, 29.686928181831416 ], [ -95.379420002249603, 29.687300181433713 ], [ -95.379275002234209, 29.687689181755722 ], [ -95.378409002801106, 29.690702182512016 ], [ -95.378385002122144, 29.690784182881078 ], [ -95.378252002403627, 29.691239182938844 ], [ -95.37815800187056, 29.691574182737085 ], [ -95.37785500201997, 29.692849183277978 ], [ -95.377467002213237, 29.694226183714381 ], [ -95.377229002206931, 29.695040183378197 ], [ -95.376283001783392, 29.698065183829133 ], [ -95.375652001752343, 29.700198184591816 ], [ -95.375552002210455, 29.700538185005609 ], [ -95.375456002260606, 29.700887184980594 ], [ -95.375426001628938, 29.70099918447589 ], [ -95.37529700233226, 29.701469184496137 ], [ -95.375259002387935, 29.701651185069178 ], [ -95.375216002046628, 29.701862185163364 ], [ -95.375505002391264, 29.701939185105175 ], [ -95.376566002263559, 29.702220185168212 ], [ -95.377866003213541, 29.70264818471394 ], [ -95.379680003209657, 29.703237185216182 ], [ -95.380712003813031, 29.703550185466142 ], [ -95.38103500320355, 29.703642184658573 ], [ -95.38151900344144, 29.703811185378829 ], [ -95.382104004106154, 29.704073185159924 ], [ -95.382563003748999, 29.704327185093984 ], [ -95.382838004177444, 29.704511184866067 ], [ -95.383226004015242, 29.704797185485834 ], [ -95.383634004001749, 29.705092184867855 ], [ -95.384122004843007, 29.70541518569329 ], [ -95.384428004381036, 29.705570185506428 ], [ -95.384460005037738, 29.705587185689055 ], [ -95.384623004797831, 29.705704185109681 ], [ -95.38573500516091, 29.702560184769482 ], [ -95.386590004410579, 29.700150184619307 ], [ -95.386929005037558, 29.699093183812536 ], [ -95.38700000484431, 29.698927184270975 ], [ -95.387050004476066, 29.698765183852419 ], [ -95.387174005359654, 29.698391183968248 ], [ -95.38744800460573, 29.697676183869365 ], [ -95.387491004879024, 29.697464183790146 ], [ -95.387992005293853, 29.696040183178926 ], [ -95.388182004818461, 29.695444183212388 ], [ -95.388255005086478, 29.695151183194362 ], [ -95.388289004650517, 29.695038183158616 ], [ -95.388321004728226, 29.694938182811164 ], [ -95.388726004756037, 29.69388918284119 ], [ -95.388899005605765, 29.693444182797283 ], [ -95.388972005504201, 29.693174182563421 ], [ -95.389232004834412, 29.692438182943082 ], [ -95.389470005786478, 29.691742182172792 ], [ -95.389682005658187, 29.690992182136736 ], [ -95.38993300570624, 29.690306182385356 ], [ -95.390475005520088, 29.688806181981086 ], [ -95.390817005251179, 29.687735181103747 ], [ -95.391233005429598, 29.686582181221301 ], [ -95.391641005664439, 29.685368180636718 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 998, "Tract": "48201314003", "Area_SqMi": 0.33866441292198934, "total_2009": 1336, "total_2010": 1476, "total_2011": 1814, "total_2012": 1030, "total_2013": 1305, "total_2014": 1639, "total_2015": 1286, "total_2016": 1143, "total_2017": 851, "total_2018": 1703, "total_2019": 1688, "total_2020": 740, "age1": 159, "age2": 513, "age3": 158, "earn1": 155, "earn2": 290, "earn3": 385, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 5, "naics_s06": 13, "naics_s07": 64, "naics_s08": 0, "naics_s09": 6, "naics_s10": 0, "naics_s11": 8, "naics_s12": 134, "naics_s13": 0, "naics_s14": 118, "naics_s15": 0, "naics_s16": 473, "naics_s17": 0, "naics_s18": 5, "naics_s19": 0, "naics_s20": 0, "race1": 370, "race2": 334, "race3": 7, "race4": 108, "race5": 2, "race6": 9, "ethnicity1": 641, "ethnicity2": 189, "edu1": 119, "edu2": 160, "edu3": 195, "edu4": 197, "Shape_Length": 14232.670524714336, "Shape_Area": 9441384.20232944, "total_2021": 679, "total_2022": 830 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.40332600824496, 29.689913181845672 ], [ -95.403320008250688, 29.68890018145229 ], [ -95.40329600816662, 29.6880301812628 ], [ -95.403281008847841, 29.687469181252759 ], [ -95.403256009059746, 29.686323180388726 ], [ -95.403234008577442, 29.685241180986107 ], [ -95.399991007628515, 29.685280180766608 ], [ -95.400013007847392, 29.686416180663812 ], [ -95.40001800738051, 29.686720180608006 ], [ -95.400042007613763, 29.688053181684285 ], [ -95.400067007412432, 29.688934181206271 ], [ -95.398798007423125, 29.688939181582167 ], [ -95.398110007610001, 29.68895218145429 ], [ -95.396996006768035, 29.6889631819204 ], [ -95.394428006729953, 29.689016182040135 ], [ -95.393701005930495, 29.690121181769818 ], [ -95.393439005969569, 29.690554181572299 ], [ -95.393212006208117, 29.690921181957837 ], [ -95.392691006359158, 29.691781182282924 ], [ -95.392373006411333, 29.692517182515672 ], [ -95.392209006436687, 29.693152182869223 ], [ -95.3921710058206, 29.693576182914008 ], [ -95.392145005778644, 29.69407718236511 ], [ -95.392157005990427, 29.694324183023099 ], [ -95.392168006122915, 29.694530183295825 ], [ -95.392189006422058, 29.694664182845717 ], [ -95.392229006023484, 29.69490818268963 ], [ -95.392306006100043, 29.695295183092536 ], [ -95.39238200646983, 29.695538183105022 ], [ -95.39240700625453, 29.695618182965433 ], [ -95.39252500666872, 29.695994182810288 ], [ -95.392702006434774, 29.696502183347917 ], [ -95.392885006180521, 29.697102183460309 ], [ -95.393002006435069, 29.697538183680635 ], [ -95.393069006582976, 29.697709183297864 ], [ -95.394782006577799, 29.697316183071976 ], [ -95.395584007300371, 29.697116183689371 ], [ -95.395760007477477, 29.697060183453161 ], [ -95.396654007695005, 29.696848183128083 ], [ -95.397227007855804, 29.696695182977511 ], [ -95.397331007851321, 29.696659183100156 ], [ -95.39837700735886, 29.696418183057812 ], [ -95.398405008152849, 29.696412183247251 ], [ -95.39968700767588, 29.696099182530652 ], [ -95.400841008308177, 29.695787182377348 ], [ -95.40081500807095, 29.695652182676703 ], [ -95.40059100801308, 29.694651182821914 ], [ -95.400554007732637, 29.694152182313527 ], [ -95.400605008107988, 29.693394182041185 ], [ -95.400888008059752, 29.693019182580919 ], [ -95.401336008555901, 29.692575182543198 ], [ -95.401704007995249, 29.692305182086503 ], [ -95.402410008525209, 29.691747181726409 ], [ -95.402874009078403, 29.691229181912739 ], [ -95.403068009211168, 29.69091018209923 ], [ -95.403154008616127, 29.690673182110935 ], [ -95.403226009067268, 29.690429181298654 ], [ -95.40332600824496, 29.689913181845672 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 999, "Tract": "48201412201", "Area_SqMi": 0.37305071829765107, "total_2009": 2455, "total_2010": 1244, "total_2011": 1068, "total_2012": 1010, "total_2013": 782, "total_2014": 880, "total_2015": 935, "total_2016": 889, "total_2017": 910, "total_2018": 985, "total_2019": 1125, "total_2020": 1214, "age1": 332, "age2": 749, "age3": 339, "earn1": 322, "earn2": 436, "earn3": 662, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 2, "naics_s06": 14, "naics_s07": 28, "naics_s08": 0, "naics_s09": 1, "naics_s10": 0, "naics_s11": 58, "naics_s12": 195, "naics_s13": 0, "naics_s14": 16, "naics_s15": 20, "naics_s16": 596, "naics_s17": 45, "naics_s18": 340, "naics_s19": 103, "naics_s20": 0, "race1": 945, "race2": 304, "race3": 12, "race4": 134, "race5": 3, "race6": 22, "ethnicity1": 920, "ethnicity2": 500, "edu1": 254, "edu2": 256, "edu3": 291, "edu4": 287, "Shape_Length": 13397.246661583635, "Shape_Area": 10400015.543453055, "total_2021": 1189, "total_2022": 1420 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412678012033112, 29.715112186729005 ], [ -95.412675012546757, 29.714663186365765 ], [ -95.412673012307565, 29.714250185824252 ], [ -95.412662012303912, 29.713434186439464 ], [ -95.412648011678854, 29.712620186247875 ], [ -95.412648012187375, 29.711790185590225 ], [ -95.412637012027318, 29.711024185361694 ], [ -95.41261801241329, 29.710219185737312 ], [ -95.412626012170804, 29.70949718559455 ], [ -95.412616011975487, 29.708688185051642 ], [ -95.412603012067791, 29.707856185207369 ], [ -95.412592011551951, 29.707080184375364 ], [ -95.412598011370221, 29.706209184165012 ], [ -95.412574011911047, 29.705314184251062 ], [ -95.412542011987469, 29.704999184395444 ], [ -95.41246701224452, 29.704683184260801 ], [ -95.412239011374325, 29.704051183776926 ], [ -95.412138011380122, 29.703843183626489 ], [ -95.411965011371578, 29.703560184078089 ], [ -95.411725011569217, 29.703210183755598 ], [ -95.411322011491748, 29.703353183859857 ], [ -95.410978011752576, 29.703458183685843 ], [ -95.410609011026679, 29.703560183665935 ], [ -95.410224011268994, 29.703641183725114 ], [ -95.40994701146893, 29.703691184456694 ], [ -95.409372010853545, 29.703760183987232 ], [ -95.409028010828749, 29.703782184595358 ], [ -95.408617010856787, 29.703792183783197 ], [ -95.408224010789382, 29.703811183887517 ], [ -95.407962010491588, 29.703745184282102 ], [ -95.407633010177264, 29.703634184155376 ], [ -95.40725701083538, 29.703447183840101 ], [ -95.406659010434453, 29.704220184656368 ], [ -95.405919009833198, 29.705163184172097 ], [ -95.405073009635672, 29.706252184916462 ], [ -95.404329009385393, 29.707172184948902 ], [ -95.403092009235607, 29.708725185224434 ], [ -95.401837009312018, 29.710304186069379 ], [ -95.401360009324605, 29.710896185903447 ], [ -95.400883009521422, 29.711492185640928 ], [ -95.402089009177615, 29.711912186046646 ], [ -95.40416800970506, 29.712596186442813 ], [ -95.406554011092823, 29.713376186388079 ], [ -95.409673011688014, 29.714400186519669 ], [ -95.410702011379627, 29.714728186242198 ], [ -95.411321011490472, 29.714918186631021 ], [ -95.411745011637564, 29.715034186645013 ], [ -95.41223301194583, 29.715106186804192 ], [ -95.412678012033112, 29.715112186729005 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1000, "Tract": "48201411902", "Area_SqMi": 0.32447291589117833, "total_2009": 938, "total_2010": 1008, "total_2011": 1242, "total_2012": 1501, "total_2013": 1467, "total_2014": 1312, "total_2015": 1352, "total_2016": 1354, "total_2017": 1274, "total_2018": 1228, "total_2019": 1247, "total_2020": 1239, "age1": 190, "age2": 689, "age3": 303, "earn1": 174, "earn2": 282, "earn3": 726, "naics_s01": 0, "naics_s02": 34, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1, "naics_s06": 1, "naics_s07": 7, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 24, "naics_s12": 225, "naics_s13": 0, "naics_s14": 146, "naics_s15": 294, "naics_s16": 162, "naics_s17": 118, "naics_s18": 131, "naics_s19": 32, "naics_s20": 0, "race1": 887, "race2": 162, "race3": 7, "race4": 101, "race5": 0, "race6": 25, "ethnicity1": 852, "ethnicity2": 330, "edu1": 167, "edu2": 216, "edu3": 279, "edu4": 330, "Shape_Length": 15300.828906673198, "Shape_Area": 9045749.554100344, "total_2021": 888, "total_2022": 1182 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399591009600456, 29.725647189286065 ], [ -95.399542009461584, 29.723199188809112 ], [ -95.39950400929304, 29.723059188885589 ], [ -95.399421009664309, 29.722944188309906 ], [ -95.399343008858935, 29.722850188141386 ], [ -95.399247009652186, 29.722789188583604 ], [ -95.398809008652009, 29.722621188501243 ], [ -95.398814008744878, 29.722492188014002 ], [ -95.398540009097843, 29.72259218816011 ], [ -95.398208009333956, 29.722704188039081 ], [ -95.397852009096312, 29.722724188853121 ], [ -95.397342008417127, 29.722706188519208 ], [ -95.397121008569314, 29.722699188088704 ], [ -95.396070008193234, 29.722089188524851 ], [ -95.395555008464484, 29.721773188292822 ], [ -95.395210008387707, 29.721568187844635 ], [ -95.394516007654289, 29.721154188648708 ], [ -95.393662007328643, 29.720642187851539 ], [ -95.393555007333362, 29.720776187858302 ], [ -95.392648007002492, 29.721914188550336 ], [ -95.392112007608247, 29.722598188931762 ], [ -95.391664006952666, 29.723156189072906 ], [ -95.391326007318938, 29.723582188591639 ], [ -95.391174007601492, 29.723668188991812 ], [ -95.39088000757161, 29.723761188900056 ], [ -95.390788007302106, 29.723851188566005 ], [ -95.390725007274753, 29.723936188901124 ], [ -95.390639007165277, 29.724070189243324 ], [ -95.390601007380738, 29.724348188864671 ], [ -95.390626007125945, 29.724535189040715 ], [ -95.390265006993062, 29.724963189349591 ], [ -95.389614006458899, 29.725796188952479 ], [ -95.389288006461015, 29.726167189478883 ], [ -95.388927006493731, 29.726649189459994 ], [ -95.388640006968885, 29.726995189680327 ], [ -95.388443006796365, 29.727242190038034 ], [ -95.387948006914684, 29.727856189903463 ], [ -95.38743300653941, 29.728521190174263 ], [ -95.386957006473864, 29.729114190073222 ], [ -95.386748006718264, 29.729388189991862 ], [ -95.386510005729008, 29.729679189875551 ], [ -95.386029006425318, 29.730285190089166 ], [ -95.385510006377302, 29.730962190930491 ], [ -95.385167006222773, 29.731390190636731 ], [ -95.384637005789145, 29.732055190945857 ], [ -95.384504005901377, 29.732221190491732 ], [ -95.384479005639577, 29.732252190426998 ], [ -95.384551005980981, 29.732248190518344 ], [ -95.385225006015176, 29.732212190650692 ], [ -95.386935006579193, 29.732195190440752 ], [ -95.387278006208049, 29.732196190879062 ], [ -95.387511006785417, 29.732197191172549 ], [ -95.387716006443284, 29.73219519105686 ], [ -95.387815006995808, 29.732200190443038 ], [ -95.38864600731759, 29.732190190956739 ], [ -95.388857006427656, 29.732189190317133 ], [ -95.389520006874719, 29.732118190938319 ], [ -95.389760007622769, 29.732102190988446 ], [ -95.39024900692425, 29.732075190235367 ], [ -95.391095007861622, 29.732017190466397 ], [ -95.391093007140029, 29.731887190214255 ], [ -95.391091007961791, 29.731734190907002 ], [ -95.391081007891287, 29.730950190274939 ], [ -95.391080007049865, 29.730684190150544 ], [ -95.391077007728995, 29.730145189848521 ], [ -95.391063007446689, 29.729351189649758 ], [ -95.391047007201365, 29.728562189435493 ], [ -95.3919090079076, 29.728546189662776 ], [ -95.392822007830617, 29.728541190084275 ], [ -95.393737008341333, 29.728538189716602 ], [ -95.393809008303052, 29.728530189687948 ], [ -95.394634007878054, 29.728529189618481 ], [ -95.395126008599988, 29.728012190013985 ], [ -95.398047009596013, 29.72798918979856 ], [ -95.398158008815457, 29.727906189074794 ], [ -95.399458009518867, 29.727880189472724 ], [ -95.39946400915052, 29.726684188830372 ], [ -95.399446009654824, 29.725731189066831 ], [ -95.399533009606643, 29.725693189166861 ], [ -95.399591009600456, 29.725647189286065 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1001, "Tract": "48201333501", "Area_SqMi": 0.38028240027067972, "total_2009": 840, "total_2010": 997, "total_2011": 1234, "total_2012": 1128, "total_2013": 1071, "total_2014": 1127, "total_2015": 1229, "total_2016": 1360, "total_2017": 859, "total_2018": 862, "total_2019": 918, "total_2020": 897, "age1": 170, "age2": 393, "age3": 276, "earn1": 162, "earn2": 290, "earn3": 387, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 24, "naics_s05": 64, "naics_s06": 12, "naics_s07": 79, "naics_s08": 2, "naics_s09": 0, "naics_s10": 3, "naics_s11": 45, "naics_s12": 15, "naics_s13": 0, "naics_s14": 220, "naics_s15": 179, "naics_s16": 86, "naics_s17": 0, "naics_s18": 72, "naics_s19": 38, "naics_s20": 0, "race1": 639, "race2": 131, "race3": 2, "race4": 54, "race5": 0, "race6": 13, "ethnicity1": 518, "ethnicity2": 321, "edu1": 162, "edu2": 160, "edu3": 217, "edu4": 130, "Shape_Length": 20077.347701566534, "Shape_Area": 10601622.459713697, "total_2021": 828, "total_2022": 839 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.288852978297598, 29.662119179899978 ], [ -95.288842978303308, 29.661627179527244 ], [ -95.28883297861185, 29.661085179803468 ], [ -95.288805978557022, 29.659714178759483 ], [ -95.288798978506776, 29.659385178793734 ], [ -95.288776978355003, 29.658415178827543 ], [ -95.288756978301819, 29.657531178446302 ], [ -95.288709977832326, 29.657552178582879 ], [ -95.28704797753285, 29.657585179203135 ], [ -95.28577497681033, 29.657602178480264 ], [ -95.285571977316025, 29.657385179178522 ], [ -95.284508976770525, 29.657656178892307 ], [ -95.284275976865644, 29.657682179006947 ], [ -95.283279976118479, 29.657763179206182 ], [ -95.282528976334845, 29.657776178685829 ], [ -95.281998976727181, 29.657776178822829 ], [ -95.281666975935067, 29.657790178924731 ], [ -95.281237975784705, 29.657802179395514 ], [ -95.280204975357634, 29.657825179450093 ], [ -95.278918975658385, 29.657853178963435 ], [ -95.278604975068532, 29.657848178696597 ], [ -95.27811597501514, 29.657867178852527 ], [ -95.27733597542138, 29.657881179012303 ], [ -95.276707974453174, 29.657905179155282 ], [ -95.276717975237787, 29.658359179212056 ], [ -95.276755975428131, 29.660045179438878 ], [ -95.276773974586462, 29.660283179375675 ], [ -95.276806974677342, 29.661395179770459 ], [ -95.276814975539764, 29.66158217989517 ], [ -95.276827975231299, 29.662048179624282 ], [ -95.276844975202806, 29.662596180121486 ], [ -95.276848975282917, 29.662700180043913 ], [ -95.27686297476329, 29.663058179848367 ], [ -95.276869975444413, 29.663241180132861 ], [ -95.276882975504279, 29.663592180438833 ], [ -95.27688897469605, 29.663721180580247 ], [ -95.276909974764564, 29.664271180549743 ], [ -95.276896975643552, 29.664406180688207 ], [ -95.276901975593717, 29.664783180357457 ], [ -95.276919975257556, 29.665427180962105 ], [ -95.276914974902951, 29.665563180764138 ], [ -95.276922975177669, 29.665725180956404 ], [ -95.276980975279088, 29.666554180737034 ], [ -95.277015975397774, 29.668209181344334 ], [ -95.277018975234483, 29.668353181304536 ], [ -95.277029975808333, 29.66886518179458 ], [ -95.277048975088746, 29.669735181473438 ], [ -95.277061975369179, 29.670351181813572 ], [ -95.277066975094428, 29.670605182046611 ], [ -95.277075975784072, 29.671009182294291 ], [ -95.277086975448981, 29.671519181988526 ], [ -95.277099975943244, 29.672125181815822 ], [ -95.277119975872722, 29.672411182187428 ], [ -95.279103975821826, 29.672370182405238 ], [ -95.280372976427728, 29.67231718172895 ], [ -95.281452976824951, 29.672287182379325 ], [ -95.281509977178473, 29.671792181685991 ], [ -95.281530976999846, 29.671413182035977 ], [ -95.281497976526879, 29.670466181665507 ], [ -95.281497976308586, 29.670044181163632 ], [ -95.281491976504284, 29.669862181697304 ], [ -95.281471976175638, 29.669542181545669 ], [ -95.281449977010482, 29.66877818122909 ], [ -95.281421976352092, 29.667786180830191 ], [ -95.281401976586224, 29.667015181004299 ], [ -95.281385976385479, 29.666388180568546 ], [ -95.281367976377368, 29.665680180213069 ], [ -95.281349976795667, 29.664916180066001 ], [ -95.280401976585551, 29.664928180169785 ], [ -95.279711976446293, 29.665001180802768 ], [ -95.278808976176009, 29.66526018074148 ], [ -95.278773975875026, 29.663682180562617 ], [ -95.278744975336693, 29.662870180336082 ], [ -95.278712975111716, 29.662122180070568 ], [ -95.279546976091353, 29.662148179790776 ], [ -95.280734976218298, 29.66227917975456 ], [ -95.281280975881216, 29.662290180255507 ], [ -95.283401976314948, 29.662249180006985 ], [ -95.284124977227904, 29.662225179729113 ], [ -95.284755977610502, 29.662210179565687 ], [ -95.285904977005259, 29.662185180212678 ], [ -95.288852978297598, 29.662119179899978 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1002, "Tract": "48201313801", "Area_SqMi": 0.3466424960881882, "total_2009": 127, "total_2010": 130, "total_2011": 123, "total_2012": 137, "total_2013": 129, "total_2014": 98, "total_2015": 111, "total_2016": 119, "total_2017": 119, "total_2018": 122, "total_2019": 133, "total_2020": 123, "age1": 25, "age2": 61, "age3": 28, "earn1": 26, "earn2": 26, "earn3": 62, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 13, "naics_s06": 52, "naics_s07": 29, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 10, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 70, "race2": 21, "race3": 3, "race4": 19, "race5": 0, "race6": 1, "ethnicity1": 61, "ethnicity2": 53, "edu1": 25, "edu2": 21, "edu3": 23, "edu4": 20, "Shape_Length": 14222.57761579257, "Shape_Area": 9663799.5063772593, "total_2021": 125, "total_2022": 114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.375417001145991, 29.689692182112463 ], [ -95.37529700134904, 29.689670182328104 ], [ -95.37518500189276, 29.689615182104429 ], [ -95.37358900150322, 29.689114182391464 ], [ -95.373441000777021, 29.689058182158718 ], [ -95.373631001534648, 29.688606182302308 ], [ -95.373901001094069, 29.687933181909649 ], [ -95.374176001138594, 29.687256182072296 ], [ -95.374445000963306, 29.686586181972768 ], [ -95.374732001296096, 29.685909181829377 ], [ -95.371661000019685, 29.684951181258018 ], [ -95.371526000563762, 29.684904181398064 ], [ -95.368272999226434, 29.683902181059334 ], [ -95.365819998866996, 29.68311218121401 ], [ -95.365754998678426, 29.683359181875737 ], [ -95.365713998922416, 29.683465181742196 ], [ -95.365599999262542, 29.683824181827269 ], [ -95.36533899831737, 29.6844801820973 ], [ -95.365232998909946, 29.684748181699931 ], [ -95.365062998437153, 29.685164182175445 ], [ -95.364981999095747, 29.685409181913663 ], [ -95.364615998226711, 29.686320182306851 ], [ -95.364607998331223, 29.686361181732522 ], [ -95.364381998610085, 29.686850182089259 ], [ -95.364353998633106, 29.686924182242905 ], [ -95.364302998953903, 29.687059182423269 ], [ -95.36411099909985, 29.687509182433043 ], [ -95.364093998662355, 29.687554182749484 ], [ -95.363864998550511, 29.688178182216696 ], [ -95.363595998190448, 29.688812182636973 ], [ -95.363338998543256, 29.68942618267382 ], [ -95.363123998555523, 29.689971182517933 ], [ -95.363577998897568, 29.690100183131968 ], [ -95.364510998698577, 29.690377182882479 ], [ -95.36493899891056, 29.690520183002068 ], [ -95.365155999124042, 29.690647183393363 ], [ -95.368553999521808, 29.691701182639228 ], [ -95.368875000483399, 29.691781182650374 ], [ -95.369220000175986, 29.691885183217337 ], [ -95.368948000391242, 29.692564182785475 ], [ -95.368382999737889, 29.694015183664089 ], [ -95.369176000243712, 29.694260183258717 ], [ -95.369950000032375, 29.694486183236908 ], [ -95.370755000174967, 29.694722183768707 ], [ -95.371220000280218, 29.693500183514445 ], [ -95.371294000666026, 29.693287183449474 ], [ -95.372122000506536, 29.693527183435311 ], [ -95.372919001223153, 29.693756183344934 ], [ -95.373727001425138, 29.693994183544831 ], [ -95.37400100191671, 29.693308183124913 ], [ -95.374620001354202, 29.691757182762597 ], [ -95.375417001145991, 29.689692182112463 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1003, "Tract": "48201350604", "Area_SqMi": 0.56096891840801344, "total_2009": 61, "total_2010": 48, "total_2011": 37, "total_2012": 46, "total_2013": 51, "total_2014": 25, "total_2015": 35, "total_2016": 49, "total_2017": 62, "total_2018": 61, "total_2019": 47, "total_2020": 38, "age1": 13, "age2": 29, "age3": 15, "earn1": 16, "earn2": 24, "earn3": 17, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 0, "naics_s07": 15, "naics_s08": 0, "naics_s09": 0, "naics_s10": 12, "naics_s11": 6, "naics_s12": 7, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 10, "naics_s19": 0, "naics_s20": 0, "race1": 40, "race2": 6, "race3": 0, "race4": 10, "race5": 0, "race6": 1, "ethnicity1": 39, "ethnicity2": 18, "edu1": 9, "edu2": 10, "edu3": 16, "edu4": 9, "Shape_Length": 20096.763252939145, "Shape_Area": 15638853.3373161, "total_2021": 55, "total_2022": 57 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.19342694902285, 29.545654158700795 ], [ -95.193308948484102, 29.545477159069474 ], [ -95.192945948345127, 29.545076158559425 ], [ -95.192704948650771, 29.54474815882827 ], [ -95.192175947880202, 29.544195158267733 ], [ -95.1914859476, 29.543591158502085 ], [ -95.190740947988843, 29.542931158730678 ], [ -95.190180947443295, 29.542358158459233 ], [ -95.189304947334676, 29.541010157668492 ], [ -95.188838947146905, 29.54040615820978 ], [ -95.188152947129794, 29.539780157543923 ], [ -95.186582946703922, 29.538443157990386 ], [ -95.185989946830091, 29.537898157562367 ], [ -95.185313946248442, 29.537359157290663 ], [ -95.184895945559774, 29.537017157405987 ], [ -95.184364945579148, 29.536569157050366 ], [ -95.183062945954163, 29.53548615760371 ], [ -95.18140794471698, 29.534038156886108 ], [ -95.180689944778848, 29.533350156576699 ], [ -95.179783945022351, 29.532596156544447 ], [ -95.177848943590803, 29.530938156234807 ], [ -95.177183943526146, 29.531567156687402 ], [ -95.176787943819434, 29.531935156624797 ], [ -95.176557943910197, 29.532151157109993 ], [ -95.175378943473405, 29.533256156798402 ], [ -95.175133943286568, 29.533430157095779 ], [ -95.175177943761426, 29.533475156735861 ], [ -95.175468943515199, 29.533812156998373 ], [ -95.175978944058642, 29.534194156911465 ], [ -95.176670943375953, 29.534494157348686 ], [ -95.177361944154015, 29.534986156940008 ], [ -95.177607943772742, 29.535368157306323 ], [ -95.178017943904152, 29.536187157567724 ], [ -95.177598943880668, 29.536460157321937 ], [ -95.177361943977687, 29.536724157631113 ], [ -95.177322944605564, 29.536808157762692 ], [ -95.177305944558043, 29.536919157550354 ], [ -95.177308944057245, 29.537044157800782 ], [ -95.177354943803934, 29.537252158075525 ], [ -95.177420944535982, 29.537355157438327 ], [ -95.177531943743702, 29.537480158163454 ], [ -95.177933944577603, 29.537851157957881 ], [ -95.178124944494044, 29.537985158174635 ], [ -95.178543944762879, 29.538353158178065 ], [ -95.179137945078068, 29.538845157730538 ], [ -95.179743944466651, 29.539345158142051 ], [ -95.18034894544283, 29.539849157893862 ], [ -95.180939944699887, 29.540338157962218 ], [ -95.181543945861605, 29.540840157993337 ], [ -95.181890945940438, 29.541124158280091 ], [ -95.182097945999431, 29.541267158489838 ], [ -95.18182794537249, 29.541520158252688 ], [ -95.181613945625728, 29.54180115815009 ], [ -95.181594945435705, 29.542169158845422 ], [ -95.181625945046136, 29.542472158707806 ], [ -95.181625945862621, 29.543071158913929 ], [ -95.181581945348441, 29.543357159092647 ], [ -95.181481945430207, 29.543571158963569 ], [ -95.181229945533005, 29.543764158731598 ], [ -95.180978945496634, 29.543852159360092 ], [ -95.180845945411576, 29.543885158618409 ], [ -95.180606945541115, 29.54397315920319 ], [ -95.180424944764255, 29.543989159430879 ], [ -95.180210944671671, 29.544044158992097 ], [ -95.180097944686651, 29.544110158816174 ], [ -95.180053944742809, 29.544127159149525 ], [ -95.179959945052843, 29.54420415930522 ], [ -95.17981494456977, 29.544358159369562 ], [ -95.179741945063526, 29.544394159258086 ], [ -95.179807945127436, 29.544448158786846 ], [ -95.180458945732738, 29.544987159278985 ], [ -95.181309945801502, 29.545690159700758 ], [ -95.182079945356733, 29.546327159681159 ], [ -95.183173946415778, 29.547232159882515 ], [ -95.184348946149001, 29.54818415937773 ], [ -95.1846119464076, 29.548403159413485 ], [ -95.184861946607015, 29.548611159764512 ], [ -95.185173947038408, 29.548869160289957 ], [ -95.185358947171508, 29.5490231599039 ], [ -95.185594946526109, 29.549220160034267 ], [ -95.185909947329719, 29.549482159563205 ], [ -95.186358947082397, 29.549857159941947 ], [ -95.187160947724962, 29.550529159888463 ], [ -95.187264946839676, 29.550606159793286 ], [ -95.187330947091397, 29.550655160353251 ], [ -95.188730947341242, 29.549364159806572 ], [ -95.189598947501338, 29.548609159676786 ], [ -95.189821947501628, 29.548415159169579 ], [ -95.189999948199755, 29.548259159563212 ], [ -95.190363947919408, 29.547942159692532 ], [ -95.190766948180979, 29.547561159473716 ], [ -95.190866948407077, 29.547472159110129 ], [ -95.190971948100298, 29.547377159638536 ], [ -95.191797948188892, 29.546628158765497 ], [ -95.191874948716517, 29.546566159487767 ], [ -95.192489948091762, 29.546125159119235 ], [ -95.19342694902285, 29.545654158700795 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1004, "Tract": "48201222504", "Area_SqMi": 0.11366432694201717, "total_2009": 10, "total_2010": 9, "total_2011": 13, "total_2012": 17, "total_2013": 21, "total_2014": 21, "total_2015": 28, "total_2016": 28, "total_2017": 13, "total_2018": 36, "total_2019": 66, "total_2020": 80, "age1": 3, "age2": 10, "age3": 0, "earn1": 5, "earn2": 4, "earn3": 4, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 7, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 6, "race2": 5, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 7, "ethnicity2": 6, "edu1": 3, "edu2": 2, "edu3": 3, "edu4": 2, "Shape_Length": 7682.6155521454484, "Shape_Area": 3168766.8967036316, "total_2021": 20, "total_2022": 13 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.408563020708229, 29.924954228990853 ], [ -95.408272020412497, 29.924150229096085 ], [ -95.408147020310764, 29.923784228847712 ], [ -95.407969020762536, 29.923309229441106 ], [ -95.407561019930299, 29.92215822846396 ], [ -95.407371020498076, 29.921643228698436 ], [ -95.407234020565284, 29.921275228862516 ], [ -95.407037019643255, 29.920744228980663 ], [ -95.406804019654658, 29.920063228024972 ], [ -95.406756019829217, 29.919933228423886 ], [ -95.406179019577323, 29.920133228700667 ], [ -95.405040019079451, 29.920530229008083 ], [ -95.404497019898855, 29.920676228716005 ], [ -95.404388018911888, 29.920702228354742 ], [ -95.404185019155904, 29.920731229035368 ], [ -95.403958019232789, 29.92073722861489 ], [ -95.40334101861599, 29.920728228860945 ], [ -95.4031710194635, 29.920758228801297 ], [ -95.402936018702434, 29.920826228546929 ], [ -95.402751018943476, 29.920920228371028 ], [ -95.40213901933204, 29.921310228822357 ], [ -95.402410019237323, 29.921663228776318 ], [ -95.402498019437616, 29.921770228536694 ], [ -95.402633018969226, 29.921934228897261 ], [ -95.402871019528149, 29.922115229325627 ], [ -95.402880018618447, 29.922221228891303 ], [ -95.402818019234076, 29.922348229436157 ], [ -95.402719019498264, 29.922463229083917 ], [ -95.402630018647812, 29.922568229425359 ], [ -95.402279019209104, 29.922827228806263 ], [ -95.401781018294542, 29.923174229379978 ], [ -95.401526018460046, 29.923353229339959 ], [ -95.401209018441449, 29.923573229375901 ], [ -95.400719019054634, 29.923947229345988 ], [ -95.400539018245269, 29.924070229493026 ], [ -95.401060019117025, 29.92465622945387 ], [ -95.401616018523285, 29.925277230050444 ], [ -95.401726019019833, 29.925230229358419 ], [ -95.401995019175573, 29.925200229532386 ], [ -95.402459019464473, 29.925196229619107 ], [ -95.402707019630526, 29.925196229788256 ], [ -95.4035220194245, 29.925186229975122 ], [ -95.404606020128611, 29.925173229988172 ], [ -95.405031019702122, 29.925170229903507 ], [ -95.405661019646132, 29.925160229894949 ], [ -95.407184019825991, 29.925142229249765 ], [ -95.407795020924155, 29.92513522905378 ], [ -95.408078020372173, 29.925094229686323 ], [ -95.408563020708229, 29.924954228990853 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1005, "Tract": "48201333302", "Area_SqMi": 2.1028431793637608, "total_2009": 5294, "total_2010": 4425, "total_2011": 5548, "total_2012": 5720, "total_2013": 5808, "total_2014": 6294, "total_2015": 6980, "total_2016": 6478, "total_2017": 5415, "total_2018": 5602, "total_2019": 5823, "total_2020": 5221, "age1": 968, "age2": 2747, "age3": 1406, "earn1": 529, "earn2": 1403, "earn3": 3189, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 873, "naics_s05": 1454, "naics_s06": 770, "naics_s07": 189, "naics_s08": 1018, "naics_s09": 1, "naics_s10": 20, "naics_s11": 228, "naics_s12": 44, "naics_s13": 0, "naics_s14": 5, "naics_s15": 1, "naics_s16": 2, "naics_s17": 0, "naics_s18": 391, "naics_s19": 125, "naics_s20": 0, "race1": 3973, "race2": 695, "race3": 42, "race4": 356, "race5": 4, "race6": 51, "ethnicity1": 2826, "ethnicity2": 2295, "edu1": 1139, "edu2": 1170, "edu3": 1191, "edu4": 653, "Shape_Length": 33204.40618226066, "Shape_Area": 58623668.788590714, "total_2021": 5108, "total_2022": 5121 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.26719697261484, 29.651931178288311 ], [ -95.267149972251786, 29.649580177697711 ], [ -95.267132972003367, 29.648874178083418 ], [ -95.267112971723321, 29.648182177971449 ], [ -95.26711097246654, 29.647681177715253 ], [ -95.267073971836624, 29.645528176820555 ], [ -95.267053972053091, 29.644662177047753 ], [ -95.267039972143806, 29.643824177063401 ], [ -95.267019972249102, 29.643181176549685 ], [ -95.266907971967512, 29.638920175342992 ], [ -95.26688997120587, 29.636767175102673 ], [ -95.265575971352106, 29.635964175498749 ], [ -95.264633971175087, 29.635960175464064 ], [ -95.264609970782615, 29.6343001750413 ], [ -95.264608970339552, 29.634237175048497 ], [ -95.264619970257655, 29.632478174404458 ], [ -95.266666971316965, 29.63243817441948 ], [ -95.266826971741281, 29.632435174318783 ], [ -95.266838970814419, 29.631878174084413 ], [ -95.26683297169815, 29.630976174034021 ], [ -95.266825970836635, 29.630081173530449 ], [ -95.266810970993703, 29.629177173409278 ], [ -95.266785971567586, 29.628670173268773 ], [ -95.266785971356015, 29.628566173312265 ], [ -95.266785971265605, 29.628266173333593 ], [ -95.266768971391613, 29.628038173249443 ], [ -95.266640971284247, 29.627835173584838 ], [ -95.266713971016856, 29.627358173181413 ], [ -95.266740970567454, 29.626442173444307 ], [ -95.264689970477633, 29.626545173545875 ], [ -95.261059969526769, 29.626629173633102 ], [ -95.259739969566454, 29.626687173210748 ], [ -95.259138969308424, 29.626714173239009 ], [ -95.258805968751261, 29.626733173837163 ], [ -95.258686968646074, 29.626737173244635 ], [ -95.258182968469271, 29.626753173136507 ], [ -95.255963968309402, 29.626838173082643 ], [ -95.253007967017396, 29.626967173283919 ], [ -95.249908966419525, 29.627103173804269 ], [ -95.24936496695311, 29.627127174158225 ], [ -95.248535966444379, 29.627163173474766 ], [ -95.248381966069729, 29.62716917414383 ], [ -95.248427965840918, 29.628405174357223 ], [ -95.248352966222171, 29.628774173745771 ], [ -95.248242966432869, 29.629123174039893 ], [ -95.248060966239962, 29.629599174142008 ], [ -95.247909966140114, 29.629918174330371 ], [ -95.247700966457586, 29.63026817438088 ], [ -95.247333965847062, 29.630924174880374 ], [ -95.247033966044924, 29.631419174474907 ], [ -95.24671196639197, 29.631950174590138 ], [ -95.246638966164483, 29.632091174988158 ], [ -95.24645396638671, 29.632453174615016 ], [ -95.246255966032393, 29.632983175058687 ], [ -95.246148965942737, 29.633472174949045 ], [ -95.246081966278467, 29.633989175484388 ], [ -95.246094966007348, 29.634580175057646 ], [ -95.246103966530129, 29.635321175790452 ], [ -95.246107965688594, 29.635630175570675 ], [ -95.24611196584479, 29.635983176025988 ], [ -95.246120966180612, 29.636658175498933 ], [ -95.246086966542322, 29.637197176393808 ], [ -95.246072966340137, 29.637298176028221 ], [ -95.246024966566196, 29.63762817596481 ], [ -95.245907966258088, 29.637978176533373 ], [ -95.245845966085838, 29.638164176250729 ], [ -95.245612966371908, 29.638603176520682 ], [ -95.245567966082618, 29.638674176364677 ], [ -95.245251965539381, 29.639165176222654 ], [ -95.244977965833868, 29.639403176122947 ], [ -95.244376966288229, 29.639925176679281 ], [ -95.24421596591958, 29.640057176780601 ], [ -95.243533965508391, 29.640618176710017 ], [ -95.243369966066467, 29.640740177017136 ], [ -95.243474965660241, 29.640839177017138 ], [ -95.243579965752971, 29.640951177091186 ], [ -95.24381896608574, 29.641206177133096 ], [ -95.244281966189504, 29.64166217718811 ], [ -95.244585965660136, 29.642034176645421 ], [ -95.245164966114103, 29.642850177013617 ], [ -95.245459966296806, 29.643293177367404 ], [ -95.246240966850905, 29.644421177594737 ], [ -95.246619966325781, 29.64496317741408 ], [ -95.247057966425217, 29.645638177619752 ], [ -95.248642967672879, 29.648081177901624 ], [ -95.249020967776588, 29.648664178550181 ], [ -95.249075967381117, 29.648747177990444 ], [ -95.250340967977891, 29.650665178890236 ], [ -95.250914968317517, 29.651460178726076 ], [ -95.251444968006652, 29.652271179060403 ], [ -95.251599968426405, 29.652508179147649 ], [ -95.251812968151995, 29.652460178488386 ], [ -95.252219968894678, 29.652351178524537 ], [ -95.252554968334223, 29.652262178832398 ], [ -95.252929968793822, 29.652202178689418 ], [ -95.253372968745211, 29.652181179167677 ], [ -95.253763968499669, 29.652172178714899 ], [ -95.25442196860655, 29.652160178489801 ], [ -95.255011969590186, 29.65215517869812 ], [ -95.25536396875053, 29.652151178419945 ], [ -95.256152968969047, 29.652133179133347 ], [ -95.257002969895296, 29.652114178347478 ], [ -95.257385970175534, 29.65211017850099 ], [ -95.257774969731472, 29.652117178831062 ], [ -95.258115969784058, 29.652131179075266 ], [ -95.258320969548592, 29.652166178856152 ], [ -95.258915970466617, 29.652298178249236 ], [ -95.259492970182805, 29.652426178366479 ], [ -95.260248970002607, 29.652747178529239 ], [ -95.260785970537398, 29.65305817835057 ], [ -95.261182970890076, 29.653311178950908 ], [ -95.262294971230446, 29.654216179068204 ], [ -95.262480970639686, 29.654373179361599 ], [ -95.262798970697958, 29.654637179241618 ], [ -95.263979971137459, 29.65562017899374 ], [ -95.264236971346335, 29.655040178714017 ], [ -95.264693971578438, 29.65393817888075 ], [ -95.264918971453525, 29.653179178980359 ], [ -95.264999971500075, 29.652539178280829 ], [ -95.265010971749405, 29.651955178618532 ], [ -95.266485972191091, 29.65194117877731 ], [ -95.266789972411473, 29.651936177914486 ], [ -95.26719697261484, 29.651931178288311 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1006, "Tract": "48201520301", "Area_SqMi": 0.25989198315314865, "total_2009": 405, "total_2010": 307, "total_2011": 368, "total_2012": 285, "total_2013": 294, "total_2014": 327, "total_2015": 344, "total_2016": 359, "total_2017": 244, "total_2018": 285, "total_2019": 284, "total_2020": 274, "age1": 55, "age2": 131, "age3": 64, "earn1": 38, "earn2": 68, "earn3": 144, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 74, "naics_s05": 38, "naics_s06": 0, "naics_s07": 50, "naics_s08": 3, "naics_s09": 0, "naics_s10": 4, "naics_s11": 4, "naics_s12": 40, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 16, "naics_s19": 18, "naics_s20": 0, "race1": 189, "race2": 21, "race3": 3, "race4": 33, "race5": 0, "race6": 4, "ethnicity1": 157, "ethnicity2": 93, "edu1": 43, "edu2": 56, "edu3": 52, "edu4": 44, "Shape_Length": 10747.518824733017, "Shape_Area": 7245343.6807351252, "total_2021": 254, "total_2022": 250 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.475929032711264, 29.799601201867578 ], [ -95.475840031827062, 29.798852201776036 ], [ -95.475752032507117, 29.798208201119238 ], [ -95.475704031859806, 29.796301200543407 ], [ -95.475690031757409, 29.795806200799102 ], [ -95.475672032271035, 29.794545200347031 ], [ -95.47501503138939, 29.794531200314566 ], [ -95.474358032023531, 29.79451620059108 ], [ -95.473685030999789, 29.794524200918957 ], [ -95.473267031426545, 29.794525200785728 ], [ -95.47207703065142, 29.794531200216788 ], [ -95.471004030526871, 29.794538200599934 ], [ -95.470907030329968, 29.794537200257562 ], [ -95.470341030687436, 29.794548200371768 ], [ -95.469719030564065, 29.794555200378735 ], [ -95.46933703069881, 29.794560200551924 ], [ -95.468149029828737, 29.794576200952243 ], [ -95.468166030041772, 29.795344201267334 ], [ -95.468155029971527, 29.795608200920466 ], [ -95.468151030532567, 29.796091200652491 ], [ -95.468134029806862, 29.796946201445717 ], [ -95.468140030430504, 29.797245201731286 ], [ -95.468151029972134, 29.797704200945731 ], [ -95.468153030394063, 29.797794201089268 ], [ -95.468174030431712, 29.798664201624177 ], [ -95.468176029922532, 29.799512201501898 ], [ -95.468202030056602, 29.800361201778344 ], [ -95.468203030221403, 29.801275202477687 ], [ -95.46822202984022, 29.801982202567853 ], [ -95.468236030330715, 29.802911202271311 ], [ -95.469177030448492, 29.802905202300099 ], [ -95.469654030980877, 29.802903202804849 ], [ -95.46991503122112, 29.802902202338604 ], [ -95.470640031123864, 29.802880202249099 ], [ -95.47197703142173, 29.802886202761545 ], [ -95.472110031528558, 29.802884202314704 ], [ -95.475280032417302, 29.802852201828994 ], [ -95.475468031899524, 29.802850201740117 ], [ -95.475459032462197, 29.802620202323485 ], [ -95.47552903221829, 29.802042201811968 ], [ -95.475618031987167, 29.801675202351117 ], [ -95.475641032053943, 29.801217201958423 ], [ -95.47567603265594, 29.800727201913904 ], [ -95.475752031821287, 29.800396201302387 ], [ -95.475929032711264, 29.799601201867578 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1007, "Tract": "48201552902", "Area_SqMi": 1.1260659403456958, "total_2009": 1814, "total_2010": 1818, "total_2011": 1791, "total_2012": 1782, "total_2013": 1978, "total_2014": 1970, "total_2015": 2073, "total_2016": 2079, "total_2017": 2267, "total_2018": 2477, "total_2019": 2621, "total_2020": 1961, "age1": 455, "age2": 1321, "age3": 641, "earn1": 644, "earn2": 621, "earn3": 1152, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 31, "naics_s05": 126, "naics_s06": 48, "naics_s07": 177, "naics_s08": 12, "naics_s09": 3, "naics_s10": 485, "naics_s11": 152, "naics_s12": 208, "naics_s13": 0, "naics_s14": 230, "naics_s15": 7, "naics_s16": 472, "naics_s17": 0, "naics_s18": 401, "naics_s19": 63, "naics_s20": 0, "race1": 1577, "race2": 628, "race3": 15, "race4": 152, "race5": 1, "race6": 44, "ethnicity1": 1756, "ethnicity2": 661, "edu1": 345, "edu2": 491, "edu3": 654, "edu4": 472, "Shape_Length": 32297.097528937829, "Shape_Area": 31392791.135719568, "total_2021": 2319, "total_2022": 2417 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.530570054897794, 29.998109240168564 ], [ -95.530636055182413, 29.998076240521073 ], [ -95.530334055541672, 29.997615239720361 ], [ -95.530108055535933, 29.997284239634631 ], [ -95.530043055164541, 29.997206239902376 ], [ -95.529990055021088, 29.997127239626455 ], [ -95.529909055345186, 29.997024239825155 ], [ -95.529817055011549, 29.996902240252624 ], [ -95.529585054635135, 29.996634239935933 ], [ -95.529379054888437, 29.996420239736135 ], [ -95.529281054877032, 29.996323240012785 ], [ -95.529056054896941, 29.996126239954236 ], [ -95.528893054870153, 29.995990239309755 ], [ -95.528846054933766, 29.995951239869189 ], [ -95.528661055061889, 29.995821240133303 ], [ -95.52857805425846, 29.995745239291331 ], [ -95.528479054272751, 29.995680239590715 ], [ -95.528364054618251, 29.995611239499969 ], [ -95.528275054972724, 29.995538239666825 ], [ -95.527974054417953, 29.995325239297795 ], [ -95.527911054493259, 29.995273239684121 ], [ -95.527718053868867, 29.995118239252214 ], [ -95.527627054422211, 29.995061239329427 ], [ -95.527397054644467, 29.994836239474392 ], [ -95.52732405466422, 29.994775239703845 ], [ -95.527262053937946, 29.994712239886972 ], [ -95.527151054584621, 29.994589239797108 ], [ -95.527087053835203, 29.994525239584501 ], [ -95.526901054046149, 29.994304239366834 ], [ -95.526673053728317, 29.993987239235675 ], [ -95.526492054325146, 29.993751239807807 ], [ -95.526382053847513, 29.993585239635046 ], [ -95.526295054185354, 29.993485239355913 ], [ -95.526122053408258, 29.993267239338429 ], [ -95.526056054103933, 29.993154239059404 ], [ -95.525643054109139, 29.992590239046052 ], [ -95.525541053837941, 29.992454239524204 ], [ -95.525482053276946, 29.992365239505599 ], [ -95.525033053141911, 29.991753239101641 ], [ -95.524805053747855, 29.991464239101408 ], [ -95.524662053865001, 29.991293238848655 ], [ -95.524521052982067, 29.99114523874935 ], [ -95.524391052907191, 29.991019238853685 ], [ -95.524142053594716, 29.990798238509509 ], [ -95.523941053639078, 29.990634238557547 ], [ -95.523921052803161, 29.990618239231988 ], [ -95.523877052865174, 29.990582238915071 ], [ -95.52377605278032, 29.990506239158453 ], [ -95.523562052664829, 29.990355238422154 ], [ -95.523299052649676, 29.990202238771612 ], [ -95.523016052859376, 29.990053239074214 ], [ -95.522356052810693, 29.989718238379059 ], [ -95.522014052310695, 29.989524238519248 ], [ -95.521797052384912, 29.989383238775005 ], [ -95.521692052733002, 29.989305238384727 ], [ -95.521492052787096, 29.989140238697875 ], [ -95.521367052909142, 29.989059238890174 ], [ -95.521168052195648, 29.988887238988156 ], [ -95.520888052604846, 29.988613238288622 ], [ -95.52062205236858, 29.988327238059817 ], [ -95.520509051791379, 29.988189237990937 ], [ -95.520376052173987, 29.988013238811952 ], [ -95.520148052040639, 29.987712238452588 ], [ -95.520088052048422, 29.987621238623614 ], [ -95.519837051843979, 29.987273238053657 ], [ -95.519730052195214, 29.987121238664855 ], [ -95.519656051861915, 29.987034237921417 ], [ -95.51958805156265, 29.986941238012474 ], [ -95.519455051600261, 29.986740238453411 ], [ -95.518989051198716, 29.986134237780142 ], [ -95.518923051957856, 29.986031238349334 ], [ -95.518850051348579, 29.985929237963898 ], [ -95.518789051863664, 29.985826238075244 ], [ -95.518705052088464, 29.985724237706723 ], [ -95.518641051337397, 29.985621237561933 ], [ -95.518560051295424, 29.98551723803639 ], [ -95.518511051518985, 29.985450238375247 ], [ -95.518405051144782, 29.98530523777691 ], [ -95.518332051495165, 29.985193237534617 ], [ -95.518012051722351, 29.984756238088348 ], [ -95.517476051688419, 29.984024237483617 ], [ -95.517106051468716, 29.983518237299961 ], [ -95.51703505124614, 29.983420237261406 ], [ -95.516970050824156, 29.98334523769315 ], [ -95.516931050738393, 29.983287237160585 ], [ -95.516749051379392, 29.983070237299351 ], [ -95.516527051218404, 29.982827237281416 ], [ -95.516370050369389, 29.982670237265083 ], [ -95.516098051279656, 29.982450237583954 ], [ -95.515769050396003, 29.98219723715675 ], [ -95.515641050768082, 29.982106237132399 ], [ -95.51559005079018, 29.982073237376376 ], [ -95.515091050629934, 29.981752237517149 ], [ -95.514809050396693, 29.981550237193385 ], [ -95.514676050157917, 29.981455237098508 ], [ -95.514427050400855, 29.981257236887611 ], [ -95.514399050408556, 29.98123223736583 ], [ -95.514238049828379, 29.981087236982351 ], [ -95.514182050074695, 29.981037236949234 ], [ -95.514087050422631, 29.980936237562076 ], [ -95.513805050102135, 29.980628237122513 ], [ -95.513671050014892, 29.980465237427325 ], [ -95.513509050102257, 29.980245237222547 ], [ -95.513222050005865, 29.979843237352647 ], [ -95.513141049368514, 29.979745237068791 ], [ -95.512618049846239, 29.980030237271709 ], [ -95.511971049135212, 29.98038623692916 ], [ -95.511284049724878, 29.980762237019963 ], [ -95.510310049730677, 29.981294237381647 ], [ -95.509750048898354, 29.981600237396755 ], [ -95.50929204936476, 29.981851237382113 ], [ -95.509089048629122, 29.981960237138594 ], [ -95.508803048890741, 29.982117237585634 ], [ -95.508607048539659, 29.982224237998313 ], [ -95.507903048772533, 29.982609238188793 ], [ -95.507571048448384, 29.982790237928402 ], [ -95.507181048117886, 29.98301523788178 ], [ -95.506914048828293, 29.983170237457312 ], [ -95.50685304821873, 29.983205237473989 ], [ -95.506523048437913, 29.983392238271708 ], [ -95.506091047970315, 29.983621237626888 ], [ -95.505592048386433, 29.983919237713486 ], [ -95.505195047912608, 29.984069238495618 ], [ -95.505265048452316, 29.984183237871012 ], [ -95.50532004781455, 29.984271238211605 ], [ -95.505735048093868, 29.984850237965638 ], [ -95.505913048618439, 29.985092238762292 ], [ -95.506066048309918, 29.985300238002644 ], [ -95.50638804797768, 29.985739237994572 ], [ -95.50663704868488, 29.986081238147889 ], [ -95.506775048442492, 29.98627123893824 ], [ -95.506971049036494, 29.986541238246978 ], [ -95.507141048272587, 29.986771238753892 ], [ -95.507325048812049, 29.987018238376677 ], [ -95.507581048643459, 29.987375238667983 ], [ -95.50761104919053, 29.987416239076879 ], [ -95.507839048525071, 29.987718239185075 ], [ -95.507863049295992, 29.987747239108948 ], [ -95.507949049209032, 29.987852238997771 ], [ -95.508112048838882, 29.988029238620616 ], [ -95.508214049306133, 29.988126238761581 ], [ -95.508286048621827, 29.988196239225772 ], [ -95.508322048901022, 29.988236239239143 ], [ -95.508590049628182, 29.988497238860411 ], [ -95.508673049553011, 29.988587238968282 ], [ -95.508814048951791, 29.988751239171421 ], [ -95.508915048711515, 29.988890239013212 ], [ -95.509342049164388, 29.989478239246196 ], [ -95.50955304940247, 29.989758239039283 ], [ -95.509620049047228, 29.989854239015994 ], [ -95.509764049258735, 29.990044239608842 ], [ -95.509835049814015, 29.99014923913823 ], [ -95.510003049196229, 29.99037523921821 ], [ -95.510031049504875, 29.99041523932387 ], [ -95.510234050114178, 29.990694239342524 ], [ -95.510687050192516, 29.990440239511717 ], [ -95.511507049918151, 29.98999123910183 ], [ -95.511590049455577, 29.989942239116331 ], [ -95.511668050448606, 29.989890239092553 ], [ -95.511740050322345, 29.98983423912993 ], [ -95.511805049551185, 29.989774239453475 ], [ -95.511899050011777, 29.989665238878331 ], [ -95.512021050141669, 29.989520238997052 ], [ -95.512129050537325, 29.989412239048896 ], [ -95.512196050274454, 29.989354238879464 ], [ -95.512305050412394, 29.989274238940542 ], [ -95.512433050378746, 29.989196238663993 ], [ -95.512469050521275, 29.989175239259687 ], [ -95.512528050041681, 29.989253238594948 ], [ -95.512582050276563, 29.989325238693301 ], [ -95.512593050355946, 29.98934123892148 ], [ -95.512771049935594, 29.989603238619242 ], [ -95.512781050598747, 29.989618239009619 ], [ -95.512982049990441, 29.989890239389169 ], [ -95.513055050366333, 29.989979238703427 ], [ -95.513899050986055, 29.991114239481806 ], [ -95.514410051172135, 29.99183323920472 ], [ -95.514440050541737, 29.991874239693512 ], [ -95.5145580503562, 29.992036239284172 ], [ -95.514641050376767, 29.992149239091916 ], [ -95.514877050763985, 29.992466239254501 ], [ -95.51498705070307, 29.992615239654821 ], [ -95.515067051444461, 29.992708239892451 ], [ -95.515135051293285, 29.992811239620501 ], [ -95.515481050689118, 29.993287239992792 ], [ -95.515583051166345, 29.993417239966718 ], [ -95.515688051526951, 29.993552239361698 ], [ -95.515736050796093, 29.993613239773108 ], [ -95.515814050885808, 29.993700239689485 ], [ -95.516037051494195, 29.993968239323884 ], [ -95.516168051388519, 29.994139239983724 ], [ -95.516274051850402, 29.994267240121452 ], [ -95.516350051192916, 29.99439223993916 ], [ -95.516663051591564, 29.994799239900225 ], [ -95.516705051524738, 29.994860239564758 ], [ -95.516728051523231, 29.994904240378961 ], [ -95.516786051833122, 29.994973240108219 ], [ -95.516824051526058, 29.995037239911838 ], [ -95.51692905198037, 29.995178240232438 ], [ -95.516982051557164, 29.995256239629018 ], [ -95.517047051297823, 29.995324240175552 ], [ -95.517152051204576, 29.995487240292189 ], [ -95.517269051593274, 29.995637240445639 ], [ -95.517321052069022, 29.995718240076378 ], [ -95.517580051936861, 29.99608123991743 ], [ -95.517684051794745, 29.996195240463774 ], [ -95.517807052329886, 29.996367240390153 ], [ -95.518078051660453, 29.996739240068074 ], [ -95.518125052227873, 29.996811240217387 ], [ -95.518180051592296, 29.996876240716468 ], [ -95.518231051764019, 29.996959240250813 ], [ -95.518284052189941, 29.997035239877725 ], [ -95.518340052426822, 29.99710324019204 ], [ -95.518390052159646, 29.997183240675771 ], [ -95.518545051651103, 29.997390240281383 ], [ -95.518591052173633, 29.997457240285957 ], [ -95.518673052283091, 29.997592240111484 ], [ -95.518715052292094, 29.997636240144711 ], [ -95.51883605211539, 29.997828240254854 ], [ -95.519128052499539, 29.998187240539622 ], [ -95.519029052411199, 29.99824824071105 ], [ -95.518912052068558, 29.998305240782919 ], [ -95.518802051968464, 29.998367240964985 ], [ -95.518703052417635, 29.998413240312114 ], [ -95.518618052476043, 29.998472241027503 ], [ -95.518540051692, 29.99852024033888 ], [ -95.518441051825221, 29.998563240270986 ], [ -95.518294052399895, 29.998644240328751 ], [ -95.518245052143072, 29.99866624100267 ], [ -95.518148052318551, 29.998723240781658 ], [ -95.518089051835119, 29.998751240553048 ], [ -95.518019051524803, 29.998794240971105 ], [ -95.517929051763701, 29.998833240816616 ], [ -95.517760051857522, 29.998929241004774 ], [ -95.517696052052656, 29.998960241093201 ], [ -95.517555052210383, 29.999043240739006 ], [ -95.517503051749898, 29.999072240365571 ], [ -95.517329051943548, 29.999168240364664 ], [ -95.517267052084776, 29.999202240781916 ], [ -95.517055051926363, 29.999319240700625 ], [ -95.51680605189749, 29.999457241113742 ], [ -95.516717051647348, 29.999502241054621 ], [ -95.516497052162791, 29.999627240587223 ], [ -95.515828051872049, 29.999991241413042 ], [ -95.515084050999178, 30.000402241025064 ], [ -95.514995050868137, 30.000459241242719 ], [ -95.514844051395031, 30.00054324136077 ], [ -95.51464205126338, 30.000655241390149 ], [ -95.514260051436025, 30.000860241183542 ], [ -95.513958050659951, 30.001032241560075 ], [ -95.5129390511796, 30.001593241461329 ], [ -95.512851050557927, 30.001648241789443 ], [ -95.512506050398457, 30.001836241624417 ], [ -95.512209050519658, 30.002001241355853 ], [ -95.511643050815749, 30.002321241770236 ], [ -95.511501050643616, 30.002390242060962 ], [ -95.511080050258713, 30.002630241490831 ], [ -95.510970050159955, 30.002687241525539 ], [ -95.510839050789627, 30.002749241371426 ], [ -95.510589050422482, 30.002888241594221 ], [ -95.510089050258728, 30.003158242170947 ], [ -95.509728050451884, 30.003358242249593 ], [ -95.509598049642264, 30.003426241831491 ], [ -95.510028050723946, 30.004012241762634 ], [ -95.51051605042899, 30.004691242249194 ], [ -95.510916049983564, 30.005232241991948 ], [ -95.510985050870289, 30.005331242020137 ], [ -95.511222050790764, 30.00561224227911 ], [ -95.511295050807604, 30.005713242267191 ], [ -95.51137705080771, 30.005803242643445 ], [ -95.511654050229581, 30.006175242838861 ], [ -95.511997051161558, 30.0066472424556 ], [ -95.512035050756026, 30.006700242882104 ], [ -95.512188050767364, 30.00648324201569 ], [ -95.512359050519876, 30.006010242487996 ], [ -95.512461050610781, 30.005856241916174 ], [ -95.512726051331043, 30.005641241980271 ], [ -95.513295051039648, 30.005594242504984 ], [ -95.513445051093626, 30.005542241925237 ], [ -95.513548051044651, 30.005432242053882 ], [ -95.513761050924984, 30.004975242080491 ], [ -95.514038051717478, 30.004764241631246 ], [ -95.514237051010042, 30.004722242229427 ], [ -95.514441051814501, 30.004738241905009 ], [ -95.514589051341389, 30.0047982421863 ], [ -95.514948051353556, 30.00508624240992 ], [ -95.515212051810693, 30.005186242020823 ], [ -95.516337051610492, 30.005356242111411 ], [ -95.517309051668988, 30.005616241690042 ], [ -95.517589052439305, 30.005763242456048 ], [ -95.51785405192382, 30.006107242071316 ], [ -95.518109052305675, 30.006218242105977 ], [ -95.518354052666183, 30.006229242250914 ], [ -95.518802052927185, 30.006103242035156 ], [ -95.519169052595757, 30.005999241664099 ], [ -95.519809053060442, 30.005888242369682 ], [ -95.520058052393878, 30.005762242249482 ], [ -95.520195053370017, 30.005590242287894 ], [ -95.52044005260116, 30.004802242148848 ], [ -95.520979053456657, 30.003931241701597 ], [ -95.52109905346444, 30.003738241961283 ], [ -95.521296053261281, 30.003311241701848 ], [ -95.521518053211551, 30.003058241664789 ], [ -95.522116053679383, 30.002620241077821 ], [ -95.522352053117473, 30.002295241104932 ], [ -95.522578053534744, 30.002141241078476 ], [ -95.522732053730536, 30.002097241216227 ], [ -95.523616053192029, 30.002173241292883 ], [ -95.523774053287895, 30.002176240835983 ], [ -95.524428054024682, 30.002189241418076 ], [ -95.524791053731278, 30.002134240829349 ], [ -95.525854054315715, 30.001423240867091 ], [ -95.526110054701647, 30.001142240820975 ], [ -95.526161053869089, 30.001086240800849 ], [ -95.526177054162844, 30.00107424076549 ], [ -95.526419054563036, 30.000910240779898 ], [ -95.526915054618954, 30.000570240658789 ], [ -95.527093054171246, 30.000463240306956 ], [ -95.527155054465936, 30.0004072409426 ], [ -95.527294054097524, 30.000380240464715 ], [ -95.52731305411578, 30.000303240506923 ], [ -95.527471054442614, 30.00018824039882 ], [ -95.52765405485961, 30.000006240341975 ], [ -95.527850054879039, 29.999742240855824 ], [ -95.528147054237081, 29.999450240383823 ], [ -95.528494054738914, 29.999253240814383 ], [ -95.528734054720189, 29.999077240571562 ], [ -95.528797054409125, 29.99897824031347 ], [ -95.528917055130449, 29.998840240380883 ], [ -95.528968054713076, 29.998747240649717 ], [ -95.528968055049518, 29.998703239909624 ], [ -95.529000054330652, 29.998615240358038 ], [ -95.529113054339433, 29.998489240310061 ], [ -95.529423055139929, 29.998346240171134 ], [ -95.53006705491174, 29.998181240407433 ], [ -95.530389055615615, 29.99820324015225 ], [ -95.530570054897794, 29.998109240168564 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1008, "Tract": "48201431505", "Area_SqMi": 0.1217740119151626, "total_2009": 1364, "total_2010": 1562, "total_2011": 1716, "total_2012": 1882, "total_2013": 1863, "total_2014": 2054, "total_2015": 2213, "total_2016": 2082, "total_2017": 2010, "total_2018": 2011, "total_2019": 2233, "total_2020": 1703, "age1": 370, "age2": 1694, "age3": 568, "earn1": 167, "earn2": 323, "earn3": 2142, "naics_s01": 0, "naics_s02": 58, "naics_s03": 0, "naics_s04": 439, "naics_s05": 0, "naics_s06": 3, "naics_s07": 35, "naics_s08": 0, "naics_s09": 749, "naics_s10": 889, "naics_s11": 147, "naics_s12": 136, "naics_s13": 0, "naics_s14": 14, "naics_s15": 9, "naics_s16": 70, "naics_s17": 0, "naics_s18": 10, "naics_s19": 27, "naics_s20": 46, "race1": 1627, "race2": 744, "race3": 14, "race4": 193, "race5": 7, "race6": 47, "ethnicity1": 2205, "ethnicity2": 427, "edu1": 308, "edu2": 529, "edu3": 725, "edu4": 700, "Shape_Length": 9199.0917074316021, "Shape_Area": 3394851.0338903773, "total_2021": 1909, "total_2022": 2632 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.486183033388073, 29.758545192980336 ], [ -95.486096033226161, 29.75813919241838 ], [ -95.486033033078755, 29.757847192682942 ], [ -95.485962033288388, 29.75751919252022 ], [ -95.485951033005406, 29.75746719270046 ], [ -95.485899033069828, 29.756925192789161 ], [ -95.485882033149437, 29.756591192570841 ], [ -95.485883032325773, 29.756230192512234 ], [ -95.485884032964876, 29.755804192427259 ], [ -95.485879033166682, 29.755654192321472 ], [ -95.485835032305175, 29.754436192307814 ], [ -95.48583003302457, 29.754091191975107 ], [ -95.485841032416033, 29.75373019217313 ], [ -95.485831033026471, 29.752682191245984 ], [ -95.485838032410157, 29.75185219135939 ], [ -95.485899033043268, 29.751390191057371 ], [ -95.485939032990245, 29.750979191555455 ], [ -95.485991032894177, 29.750622191332511 ], [ -95.486041032617734, 29.749943190691877 ], [ -95.485703032446366, 29.749958190579218 ], [ -95.485251032453817, 29.749995191501991 ], [ -95.484101031627148, 29.750030190719496 ], [ -95.482649031433397, 29.750040191494843 ], [ -95.48266303180111, 29.751396191473088 ], [ -95.482680031791276, 29.752930192099353 ], [ -95.482690032136915, 29.753388191437836 ], [ -95.48268803152034, 29.753625191559166 ], [ -95.482702031532924, 29.754319192108071 ], [ -95.482705031887107, 29.754558191912942 ], [ -95.482711031816933, 29.755011191902277 ], [ -95.48272103158952, 29.755797192655596 ], [ -95.482738031868379, 29.756790192757354 ], [ -95.482762032204519, 29.757983192938262 ], [ -95.482769032253501, 29.758237192850352 ], [ -95.482771032415741, 29.759058193079536 ], [ -95.48277403235366, 29.759229193056296 ], [ -95.482791031803657, 29.760066193406647 ], [ -95.482827032599999, 29.760162193564057 ], [ -95.482913032626769, 29.760262193222399 ], [ -95.484095032948616, 29.759209192636153 ], [ -95.484380032651373, 29.759026192623878 ], [ -95.484651033116748, 29.758860192449763 ], [ -95.485076032639313, 29.758722192947868 ], [ -95.486183033388073, 29.758545192980336 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1009, "Tract": "48201520302", "Area_SqMi": 0.31148044281741066, "total_2009": 287, "total_2010": 293, "total_2011": 446, "total_2012": 714, "total_2013": 689, "total_2014": 701, "total_2015": 624, "total_2016": 684, "total_2017": 937, "total_2018": 1179, "total_2019": 1108, "total_2020": 1081, "age1": 388, "age2": 715, "age3": 367, "earn1": 632, "earn2": 560, "earn3": 278, "naics_s01": 0, "naics_s02": 11, "naics_s03": 0, "naics_s04": 44, "naics_s05": 9, "naics_s06": 24, "naics_s07": 0, "naics_s08": 5, "naics_s09": 21, "naics_s10": 32, "naics_s11": 44, "naics_s12": 34, "naics_s13": 0, "naics_s14": 848, "naics_s15": 2, "naics_s16": 289, "naics_s17": 1, "naics_s18": 63, "naics_s19": 43, "naics_s20": 0, "race1": 1038, "race2": 294, "race3": 19, "race4": 87, "race5": 2, "race6": 30, "ethnicity1": 891, "ethnicity2": 579, "edu1": 325, "edu2": 278, "edu3": 274, "edu4": 205, "Shape_Length": 11840.724717345594, "Shape_Area": 8683541.6416436061, "total_2021": 1256, "total_2022": 1470 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484919034054556, 29.795420200193078 ], [ -95.484934034221993, 29.794915199969047 ], [ -95.484493034432347, 29.794842200029837 ], [ -95.483979034055267, 29.794710200550483 ], [ -95.483601034022001, 29.794654200258325 ], [ -95.480342033225071, 29.794607200232235 ], [ -95.480007032934793, 29.794602200032127 ], [ -95.479283033258355, 29.794588200005087 ], [ -95.478588032774127, 29.794574200582868 ], [ -95.477144032422274, 29.794554200648779 ], [ -95.475672032271035, 29.794545200347031 ], [ -95.475690031757409, 29.795806200799102 ], [ -95.475704031859806, 29.796301200543407 ], [ -95.475752032507117, 29.798208201119238 ], [ -95.475840031827062, 29.798852201776036 ], [ -95.475929032711264, 29.799601201867578 ], [ -95.475752031821287, 29.800396201302387 ], [ -95.47567603265594, 29.800727201913904 ], [ -95.475641032053943, 29.801217201958423 ], [ -95.475618031987167, 29.801675202351117 ], [ -95.47552903221829, 29.802042201811968 ], [ -95.475459032462197, 29.802620202323485 ], [ -95.475468031899524, 29.802850201740117 ], [ -95.47651403279859, 29.802867202037895 ], [ -95.477477032704073, 29.802849201701029 ], [ -95.478407032721464, 29.802852201896048 ], [ -95.478887032600383, 29.802843202432932 ], [ -95.480778033425736, 29.802830202308847 ], [ -95.481998034220894, 29.80283220187151 ], [ -95.482901034237997, 29.802826202382665 ], [ -95.484840034159632, 29.802843201756804 ], [ -95.484839034140805, 29.800437201636399 ], [ -95.484845034142154, 29.799400201086936 ], [ -95.484854034840595, 29.799154200736997 ], [ -95.48487203428158, 29.798143200592374 ], [ -95.484897033981682, 29.796537200374225 ], [ -95.484899034152576, 29.796379200500237 ], [ -95.484902034192515, 29.79600020070248 ], [ -95.484919034054556, 29.795420200193078 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1010, "Tract": "48201410704", "Area_SqMi": 0.19467770992411895, "total_2009": 784, "total_2010": 917, "total_2011": 629, "total_2012": 750, "total_2013": 866, "total_2014": 758, "total_2015": 739, "total_2016": 850, "total_2017": 805, "total_2018": 854, "total_2019": 891, "total_2020": 811, "age1": 254, "age2": 491, "age3": 187, "earn1": 199, "earn2": 335, "earn3": 398, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 58, "naics_s07": 109, "naics_s08": 27, "naics_s09": 12, "naics_s10": 17, "naics_s11": 0, "naics_s12": 78, "naics_s13": 0, "naics_s14": 20, "naics_s15": 20, "naics_s16": 39, "naics_s17": 32, "naics_s18": 477, "naics_s19": 39, "naics_s20": 0, "race1": 678, "race2": 106, "race3": 13, "race4": 113, "race5": 0, "race6": 22, "ethnicity1": 673, "ethnicity2": 259, "edu1": 136, "edu2": 171, "edu3": 194, "edu4": 177, "Shape_Length": 9746.257751305644, "Shape_Area": 5427281.3584539089, "total_2021": 811, "total_2022": 932 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.38966000783094, 29.745375193392789 ], [ -95.389665007925629, 29.744624192998458 ], [ -95.389390007589355, 29.744539193393248 ], [ -95.389084007566595, 29.744517193328502 ], [ -95.388851007107164, 29.744515192770713 ], [ -95.388836007456021, 29.743570192680778 ], [ -95.388883007221992, 29.743461192531559 ], [ -95.388952007802814, 29.743270193215864 ], [ -95.388947007349984, 29.742400193203142 ], [ -95.388925007660305, 29.74137219236475 ], [ -95.388916006981205, 29.740519192309787 ], [ -95.388898007357753, 29.739663191836286 ], [ -95.388892006993672, 29.738799192002265 ], [ -95.387926006737544, 29.738819192082431 ], [ -95.386966006483178, 29.738854192301709 ], [ -95.386488007025349, 29.738867192100596 ], [ -95.38543900589957, 29.738888192284236 ], [ -95.384448005906691, 29.738895192150895 ], [ -95.383831005784657, 29.738897192504641 ], [ -95.383468005428213, 29.738899192308974 ], [ -95.382300005929707, 29.738912192058869 ], [ -95.382231006034445, 29.738907191960717 ], [ -95.382152005658597, 29.739135192160568 ], [ -95.382040005122619, 29.739527192515329 ], [ -95.381981005290285, 29.739743192862797 ], [ -95.38193200537377, 29.74006119220239 ], [ -95.381930005512586, 29.740179192811485 ], [ -95.381917005100433, 29.740686192912392 ], [ -95.381932005898136, 29.741799192792332 ], [ -95.381936005821402, 29.742053192500752 ], [ -95.381941005289164, 29.742454193411106 ], [ -95.381945005711344, 29.742763192648006 ], [ -95.381932006009905, 29.743009193208891 ], [ -95.381905005519158, 29.743253193551261 ], [ -95.381831005532703, 29.743593193359644 ], [ -95.381745006080621, 29.743993193420216 ], [ -95.381702005170084, 29.744450193708776 ], [ -95.381673005467164, 29.744809193046372 ], [ -95.381603005379006, 29.745087193526384 ], [ -95.38155500614377, 29.745248193161157 ], [ -95.381541005297166, 29.745531193928063 ], [ -95.381672005817691, 29.745566193539876 ], [ -95.383030005583663, 29.745528194009982 ], [ -95.384805006425069, 29.745481193248054 ], [ -95.385966006987047, 29.745451193081223 ], [ -95.387257007032915, 29.74542719336096 ], [ -95.388060007604309, 29.745408193751508 ], [ -95.388853007996701, 29.745390193457816 ], [ -95.38966000783094, 29.745375193392789 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1011, "Tract": "48201511003", "Area_SqMi": 0.41149005553007173, "total_2009": 1860, "total_2010": 1577, "total_2011": 1626, "total_2012": 1900, "total_2013": 2039, "total_2014": 1671, "total_2015": 1963, "total_2016": 2047, "total_2017": 2535, "total_2018": 2236, "total_2019": 1733, "total_2020": 1399, "age1": 219, "age2": 567, "age3": 271, "earn1": 83, "earn2": 308, "earn3": 666, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 151, "naics_s06": 105, "naics_s07": 23, "naics_s08": 0, "naics_s09": 8, "naics_s10": 49, "naics_s11": 9, "naics_s12": 306, "naics_s13": 0, "naics_s14": 95, "naics_s15": 0, "naics_s16": 70, "naics_s17": 13, "naics_s18": 92, "naics_s19": 41, "naics_s20": 55, "race1": 820, "race2": 138, "race3": 8, "race4": 76, "race5": 3, "race6": 12, "ethnicity1": 649, "ethnicity2": 408, "edu1": 174, "edu2": 200, "edu3": 253, "edu4": 211, "Shape_Length": 14091.13655328349, "Shape_Area": 11471638.475909758, "total_2021": 1309, "total_2022": 1057 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.438091022878481, 29.801611202984812 ], [ -95.438083022400207, 29.800763203194926 ], [ -95.438082022938772, 29.800627202970503 ], [ -95.438077022476492, 29.799854202676531 ], [ -95.438068022822165, 29.799092202928435 ], [ -95.438064022763712, 29.798321202939459 ], [ -95.43807602257742, 29.797276202582061 ], [ -95.438073022739431, 29.796390202514999 ], [ -95.438075022245357, 29.795995202157702 ], [ -95.438070021919586, 29.795504202191484 ], [ -95.438044021979238, 29.794384201689919 ], [ -95.438024022640576, 29.794003201399324 ], [ -95.437920022715829, 29.793240201238888 ], [ -95.437887022098252, 29.792835201546005 ], [ -95.437880022112125, 29.792749201349196 ], [ -95.437867022522951, 29.791974201216512 ], [ -95.437862022002292, 29.791624201484087 ], [ -95.437860021786491, 29.791466201267809 ], [ -95.437857022065231, 29.79102420137334 ], [ -95.437853021786864, 29.790436201277373 ], [ -95.437844022151182, 29.789221200815867 ], [ -95.436394021191703, 29.789236200550224 ], [ -95.430829020622454, 29.78924620050941 ], [ -95.429893020284382, 29.789252201186041 ], [ -95.429924019967117, 29.7907062016216 ], [ -95.429930019645269, 29.7916642014907 ], [ -95.429924020123437, 29.792815201641247 ], [ -95.429916019910266, 29.793356202036783 ], [ -95.429931020626427, 29.79438220234265 ], [ -95.429948020677003, 29.795552201888835 ], [ -95.429969019939037, 29.79642420251178 ], [ -95.429990020179176, 29.797317202907518 ], [ -95.430017020194271, 29.798408203098873 ], [ -95.430037020682363, 29.799238202592129 ], [ -95.430030020371916, 29.799995202847303 ], [ -95.430030020970477, 29.800744203323184 ], [ -95.430040020566494, 29.801646203181985 ], [ -95.433393021680786, 29.801622203474412 ], [ -95.43358102196342, 29.801621203623903 ], [ -95.43399502165741, 29.801618203792103 ], [ -95.435108022089352, 29.801620203032876 ], [ -95.436589022696154, 29.801609203076829 ], [ -95.438091022878481, 29.801611202984812 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1012, "Tract": "48201511202", "Area_SqMi": 0.38211837202466731, "total_2009": 2528, "total_2010": 2050, "total_2011": 1519, "total_2012": 894, "total_2013": 1165, "total_2014": 1239, "total_2015": 1384, "total_2016": 1180, "total_2017": 924, "total_2018": 928, "total_2019": 1061, "total_2020": 1138, "age1": 303, "age2": 781, "age3": 289, "earn1": 205, "earn2": 373, "earn3": 795, "naics_s01": 0, "naics_s02": 17, "naics_s03": 0, "naics_s04": 91, "naics_s05": 63, "naics_s06": 120, "naics_s07": 49, "naics_s08": 13, "naics_s09": 23, "naics_s10": 52, "naics_s11": 0, "naics_s12": 315, "naics_s13": 0, "naics_s14": 147, "naics_s15": 30, "naics_s16": 52, "naics_s17": 5, "naics_s18": 341, "naics_s19": 55, "naics_s20": 0, "race1": 1079, "race2": 149, "race3": 11, "race4": 106, "race5": 1, "race6": 27, "ethnicity1": 937, "ethnicity2": 436, "edu1": 213, "edu2": 281, "edu3": 293, "edu4": 283, "Shape_Length": 13208.913069000784, "Shape_Area": 10652806.20991781, "total_2021": 1122, "total_2022": 1373 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.422468018779554, 29.808720204855135 ], [ -95.42244101929866, 29.807710204739042 ], [ -95.422424019356797, 29.80669820462159 ], [ -95.422407019321881, 29.806225204312714 ], [ -95.42239401923301, 29.805677204527086 ], [ -95.422389019210797, 29.804811204200249 ], [ -95.422384018440397, 29.804673204741242 ], [ -95.422350018704194, 29.803729204617266 ], [ -95.42231901885205, 29.802713203709381 ], [ -95.422326018795701, 29.801684204007209 ], [ -95.422311018882922, 29.801529203443422 ], [ -95.422306018771508, 29.800674203451766 ], [ -95.422290018865624, 29.800007203866944 ], [ -95.422273018465987, 29.799646203509678 ], [ -95.417962016922175, 29.79967120375656 ], [ -95.417860017619702, 29.799673203465943 ], [ -95.416051017230444, 29.799665203906375 ], [ -95.415931017070193, 29.799665203530324 ], [ -95.415873017002596, 29.799665203520934 ], [ -95.414071016834484, 29.799681203284027 ], [ -95.413270015873479, 29.799698203645605 ], [ -95.412483016156727, 29.799708203834236 ], [ -95.412197015467612, 29.799709203973372 ], [ -95.411705015986229, 29.799707204170367 ], [ -95.411808016108367, 29.800018204152558 ], [ -95.412046015572813, 29.800476203663553 ], [ -95.412114016314845, 29.800714203767715 ], [ -95.412188016074424, 29.800997204210262 ], [ -95.412230015785255, 29.801729204200065 ], [ -95.412244015956929, 29.802744203940062 ], [ -95.412263016385126, 29.803769204908129 ], [ -95.412284015739502, 29.804779204740289 ], [ -95.412300016477431, 29.805801204734522 ], [ -95.412313016047079, 29.806312204810208 ], [ -95.412324016053034, 29.806813205054549 ], [ -95.412330016059769, 29.807329205144818 ], [ -95.412349015947314, 29.807829205264539 ], [ -95.412356016018094, 29.8083572055282 ], [ -95.41235701588505, 29.808844205921439 ], [ -95.414776017209277, 29.80883120520679 ], [ -95.417592018118825, 29.808796205459348 ], [ -95.418167018236346, 29.808776205670323 ], [ -95.421391019028164, 29.808734205575995 ], [ -95.422468018779554, 29.808720204855135 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1013, "Tract": "48201221601", "Area_SqMi": 0.45433025409116862, "total_2009": 422, "total_2010": 474, "total_2011": 580, "total_2012": 415, "total_2013": 463, "total_2014": 395, "total_2015": 458, "total_2016": 467, "total_2017": 454, "total_2018": 414, "total_2019": 306, "total_2020": 309, "age1": 75, "age2": 168, "age3": 72, "earn1": 56, "earn2": 163, "earn3": 96, "naics_s01": 0, "naics_s02": 0, "naics_s03": 12, "naics_s04": 25, "naics_s05": 22, "naics_s06": 0, "naics_s07": 18, "naics_s08": 0, "naics_s09": 0, "naics_s10": 36, "naics_s11": 3, "naics_s12": 2, "naics_s13": 0, "naics_s14": 156, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 32, "naics_s19": 2, "naics_s20": 0, "race1": 168, "race2": 107, "race3": 4, "race4": 32, "race5": 0, "race6": 4, "ethnicity1": 209, "ethnicity2": 106, "edu1": 67, "edu2": 66, "edu3": 69, "edu4": 38, "Shape_Length": 17101.158417619481, "Shape_Area": 12665949.890060514, "total_2021": 149, "total_2022": 315 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412460020113784, 29.89965122427272 ], [ -95.4124390205764, 29.898481223921191 ], [ -95.412436020813914, 29.898310223833093 ], [ -95.41243302010075, 29.89815922393759 ], [ -95.41243102026894, 29.898041223461135 ], [ -95.412390020642562, 29.895736223366011 ], [ -95.412341020349245, 29.895279223002479 ], [ -95.412331020610921, 29.893938223026392 ], [ -95.412313020548652, 29.891416222800029 ], [ -95.412246019596097, 29.889334221721192 ], [ -95.412246020444044, 29.889258221921857 ], [ -95.412245020393343, 29.889063221721404 ], [ -95.412094019603842, 29.889065222380651 ], [ -95.411948019914547, 29.889066222016488 ], [ -95.411715019306897, 29.889068221817954 ], [ -95.410786019691088, 29.889063221929796 ], [ -95.410487019992388, 29.889059221641212 ], [ -95.410183019486837, 29.889038222297096 ], [ -95.40987901979625, 29.888985221622136 ], [ -95.409436018816933, 29.888896221807006 ], [ -95.409227018811592, 29.888866221644655 ], [ -95.409000018713726, 29.888845222341665 ], [ -95.408774018986819, 29.888836221811509 ], [ -95.408568018634469, 29.888849222405327 ], [ -95.408500018482229, 29.888847221656157 ], [ -95.408349018688924, 29.888853222155433 ], [ -95.408257019160601, 29.8888462218749 ], [ -95.407998019057374, 29.888846222133925 ], [ -95.407483019171409, 29.888857222320482 ], [ -95.405861017877513, 29.888869222152358 ], [ -95.405458018041159, 29.888870222417111 ], [ -95.405366018357199, 29.888867222377066 ], [ -95.405208018196987, 29.888870221931086 ], [ -95.40494401763867, 29.888872222442004 ], [ -95.404571017961501, 29.888887222045405 ], [ -95.402460017406554, 29.889007222508148 ], [ -95.401247017565524, 29.889079222792081 ], [ -95.400727017454074, 29.889113222519782 ], [ -95.400487016701888, 29.889123222613279 ], [ -95.399667017173499, 29.889169222265881 ], [ -95.398705016464646, 29.889225222905605 ], [ -95.398124016221175, 29.889258222443924 ], [ -95.396043016231374, 29.889376222578594 ], [ -95.395288015233461, 29.889432222174293 ], [ -95.394860015603243, 29.889458223084365 ], [ -95.394938015662731, 29.889594222491457 ], [ -95.395299015884987, 29.890191223035796 ], [ -95.395550015860266, 29.890597222584255 ], [ -95.395854016208588, 29.891107223153995 ], [ -95.395984016000639, 29.891326223106876 ], [ -95.396197016353824, 29.891670222741162 ], [ -95.396422016337837, 29.892037222678468 ], [ -95.396550015929577, 29.892271223103737 ], [ -95.396892016562731, 29.892864223052197 ], [ -95.397112016522968, 29.892768223527934 ], [ -95.397314015801626, 29.89269122346251 ], [ -95.39741501680615, 29.89266422278433 ], [ -95.397547015956249, 29.892664223173341 ], [ -95.397781016839971, 29.892680223272912 ], [ -95.398052016233152, 29.892714223433348 ], [ -95.398594017099086, 29.893077223020128 ], [ -95.398892016475585, 29.893246223122535 ], [ -95.399049016669608, 29.893335223733008 ], [ -95.399210017259051, 29.893519223392232 ], [ -95.399274017062069, 29.893577223061492 ], [ -95.39934301660503, 29.893698223671525 ], [ -95.399432017409552, 29.893845223058666 ], [ -95.399477016558848, 29.893890223146386 ], [ -95.399654016575994, 29.894088223364697 ], [ -95.399849016739253, 29.894220223593571 ], [ -95.400222017488687, 29.894303223556719 ], [ -95.400607017185635, 29.894474223308173 ], [ -95.400783017754534, 29.894633223470255 ], [ -95.400979017066888, 29.894974223927317 ], [ -95.401092017702084, 29.895232224017526 ], [ -95.401168017846146, 29.895375224075217 ], [ -95.40131901790626, 29.89548522377877 ], [ -95.401603017483652, 29.895617223470264 ], [ -95.401982017816536, 29.895727224105912 ], [ -95.402127017391408, 29.895749223292832 ], [ -95.402291017880543, 29.8957052238957 ], [ -95.402314018191106, 29.89569622405887 ], [ -95.402518017458291, 29.895618223669707 ], [ -95.40282101771345, 29.895519223899193 ], [ -95.402991017934696, 29.895541223547994 ], [ -95.403143018196801, 29.895574223621825 ], [ -95.403364018385787, 29.89566222393757 ], [ -95.403616018438044, 29.895717223601299 ], [ -95.403843017639048, 29.89578822325414 ], [ -95.404045018031496, 29.895876223179638 ], [ -95.404360018185415, 29.896058223406616 ], [ -95.404474018285114, 29.896085223873392 ], [ -95.404922018553208, 29.896064223513683 ], [ -95.405086018594687, 29.896091223601772 ], [ -95.40530001894976, 29.8961902237989 ], [ -95.405540018650171, 29.896267223715267 ], [ -95.405685018864119, 29.896284223926244 ], [ -95.405780018238858, 29.896267223303983 ], [ -95.405963018229755, 29.896179223748991 ], [ -95.406073018625619, 29.896144223896393 ], [ -95.406222018965934, 29.896097223828122 ], [ -95.406474018946398, 29.896141223222095 ], [ -95.406689019174337, 29.896163223703159 ], [ -95.406998018411116, 29.896009223305587 ], [ -95.407194018899858, 29.895960223151878 ], [ -95.407288018750265, 29.895971223791921 ], [ -95.407357018632254, 29.896031223505187 ], [ -95.407503018802245, 29.896273223996154 ], [ -95.407540018744527, 29.896394223425762 ], [ -95.407780019520317, 29.896768223826253 ], [ -95.407938019194106, 29.896872223838471 ], [ -95.408222019656748, 29.89691122393485 ], [ -95.408455019816643, 29.896999223641377 ], [ -95.40863201924239, 29.897016224145275 ], [ -95.408991019798023, 29.897049223711821 ], [ -95.409351019282383, 29.896999223358819 ], [ -95.409597019918948, 29.896977223663662 ], [ -95.409824019812248, 29.897082223716563 ], [ -95.410077019978104, 29.897296223416149 ], [ -95.41021501985513, 29.897401223630911 ], [ -95.410260019743376, 29.897522224076713 ], [ -95.410260019939201, 29.897632223612611 ], [ -95.410216019790738, 29.898032223814845 ], [ -95.410220020240629, 29.898110224181917 ], [ -95.41023402004879, 29.898341224270027 ], [ -95.410291020242212, 29.898555223930479 ], [ -95.410392019743526, 29.898748224146679 ], [ -95.410550020255457, 29.898896224468146 ], [ -95.410808019750377, 29.899017224013971 ], [ -95.410991020255864, 29.899122223777514 ], [ -95.411452020213375, 29.899336224478244 ], [ -95.411886020037926, 29.899471223758297 ], [ -95.41212902074443, 29.899547223921019 ], [ -95.412281020294301, 29.899595223890387 ], [ -95.412460020113784, 29.89965122427272 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1014, "Tract": "48201432706", "Area_SqMi": 0.25947367115815106, "total_2009": 1236, "total_2010": 1116, "total_2011": 1037, "total_2012": 1113, "total_2013": 1126, "total_2014": 1084, "total_2015": 1095, "total_2016": 993, "total_2017": 1287, "total_2018": 1144, "total_2019": 1239, "total_2020": 1061, "age1": 274, "age2": 567, "age3": 286, "earn1": 171, "earn2": 392, "earn3": 564, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 43, "naics_s05": 46, "naics_s06": 115, "naics_s07": 14, "naics_s08": 174, "naics_s09": 0, "naics_s10": 7, "naics_s11": 23, "naics_s12": 210, "naics_s13": 0, "naics_s14": 111, "naics_s15": 0, "naics_s16": 48, "naics_s17": 0, "naics_s18": 215, "naics_s19": 119, "naics_s20": 2, "race1": 761, "race2": 204, "race3": 9, "race4": 135, "race5": 0, "race6": 18, "ethnicity1": 730, "ethnicity2": 397, "edu1": 217, "edu2": 211, "edu3": 197, "edu4": 228, "Shape_Length": 13095.653284850103, "Shape_Area": 7233681.858262727, "total_2021": 1416, "total_2022": 1127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.501193035541377, 29.731667187176104 ], [ -95.501167035503542, 29.730468186476081 ], [ -95.501163035850325, 29.729638186493045 ], [ -95.501162035929909, 29.729377186348128 ], [ -95.501161035519885, 29.729106186688544 ], [ -95.501159035788817, 29.728590186178479 ], [ -95.501156035204943, 29.728105186022987 ], [ -95.50028803562148, 29.728117186489779 ], [ -95.4993500345212, 29.728128186046767 ], [ -95.498648035095044, 29.72813618609425 ], [ -95.497857034723566, 29.72814518639516 ], [ -95.495403033540185, 29.728183186281459 ], [ -95.495379033769765, 29.726003185641652 ], [ -95.495268034225504, 29.726031186259664 ], [ -95.494224033143368, 29.726057186118073 ], [ -95.493945033077253, 29.726053185745506 ], [ -95.493565033645041, 29.726058186021895 ], [ -95.492612032761357, 29.726074185541265 ], [ -95.492143032685874, 29.726081185879281 ], [ -95.491631033176262, 29.72613518567092 ], [ -95.491256032953302, 29.726194185697043 ], [ -95.491104032898235, 29.726231186069068 ], [ -95.490941033254657, 29.726268186066701 ], [ -95.490685032612276, 29.726327185881697 ], [ -95.490255032473954, 29.726425186204956 ], [ -95.489992032910294, 29.726437186469003 ], [ -95.489606032868537, 29.726451186505653 ], [ -95.489070031973228, 29.726411185938172 ], [ -95.488857032627109, 29.726386186155022 ], [ -95.488186032525647, 29.726257186171203 ], [ -95.488146032551228, 29.726243186307848 ], [ -95.488109031634124, 29.726222186501644 ], [ -95.488085032290911, 29.726205185985531 ], [ -95.488070031750752, 29.726190186069374 ], [ -95.488059031822729, 29.72617018566698 ], [ -95.487992031524911, 29.726020186397619 ], [ -95.487962031954012, 29.725917185889344 ], [ -95.487940031936006, 29.725842185812482 ], [ -95.487921032275167, 29.725777186294753 ], [ -95.487325031996122, 29.72588018612932 ], [ -95.48721203214771, 29.725887186254845 ], [ -95.487206032121051, 29.726047186532874 ], [ -95.487203031373298, 29.726147186155551 ], [ -95.487206031442739, 29.726371186349947 ], [ -95.48721003140308, 29.7266901865821 ], [ -95.487218032094617, 29.72692718601656 ], [ -95.487300031430038, 29.72721118608565 ], [ -95.487458032310641, 29.727535186763181 ], [ -95.487562032151715, 29.727872186509302 ], [ -95.487578031928962, 29.728117186311536 ], [ -95.487572031970785, 29.728296186310324 ], [ -95.487536032248983, 29.728474186649404 ], [ -95.487346031499655, 29.728983186817448 ], [ -95.48728603175968, 29.729300186321023 ], [ -95.487300031504986, 29.729536186594899 ], [ -95.487371031722148, 29.729776187281338 ], [ -95.487515032601308, 29.730015186525701 ], [ -95.487634032626332, 29.730202186641822 ], [ -95.487922032681098, 29.730657186597593 ], [ -95.488630032825256, 29.730650186673529 ], [ -95.489549032353949, 29.730631186775149 ], [ -95.489769032401711, 29.730624186614588 ], [ -95.489789032287149, 29.731797187600307 ], [ -95.493242034046091, 29.7317681867641 ], [ -95.494149033375265, 29.731762187443213 ], [ -95.494874034112144, 29.731755186752903 ], [ -95.495170034336766, 29.731752187257264 ], [ -95.495305034594764, 29.731751187069001 ], [ -95.495404034342101, 29.731750187279875 ], [ -95.4954430341174, 29.73175018667947 ], [ -95.495834034651665, 29.731746186808813 ], [ -95.496463034181843, 29.731741186698383 ], [ -95.496515034160169, 29.731741187297079 ], [ -95.496718034905854, 29.731740186799126 ], [ -95.497425034880465, 29.731734187313837 ], [ -95.497817034993844, 29.73173118716425 ], [ -95.497943034399896, 29.731729187174047 ], [ -95.498427034489637, 29.731719186590929 ], [ -95.499074035465895, 29.731706187003752 ], [ -95.499201035067841, 29.731703186568698 ], [ -95.499392034902016, 29.73169918664663 ], [ -95.499839035176379, 29.731688187014417 ], [ -95.500030035785358, 29.731685187235605 ], [ -95.501193035541377, 29.731667187176104 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1015, "Tract": "48201511501", "Area_SqMi": 0.48037853684153464, "total_2009": 1606, "total_2010": 1660, "total_2011": 1552, "total_2012": 1513, "total_2013": 1617, "total_2014": 1862, "total_2015": 1841, "total_2016": 1701, "total_2017": 1619, "total_2018": 2230, "total_2019": 2266, "total_2020": 2317, "age1": 792, "age2": 1402, "age3": 469, "earn1": 536, "earn2": 1001, "earn3": 1126, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 34, "naics_s06": 122, "naics_s07": 859, "naics_s08": 62, "naics_s09": 108, "naics_s10": 119, "naics_s11": 99, "naics_s12": 182, "naics_s13": 0, "naics_s14": 16, "naics_s15": 0, "naics_s16": 348, "naics_s17": 19, "naics_s18": 401, "naics_s19": 189, "naics_s20": 87, "race1": 2066, "race2": 365, "race3": 19, "race4": 161, "race5": 9, "race6": 43, "ethnicity1": 1509, "ethnicity2": 1154, "edu1": 430, "edu2": 491, "edu3": 555, "edu4": 395, "Shape_Length": 14639.049260784506, "Shape_Area": 13392131.431059232, "total_2021": 2694, "total_2022": 2663 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.412398015990419, 29.810889205685452 ], [ -95.412401016320018, 29.810393205870891 ], [ -95.412383016501835, 29.809874206097525 ], [ -95.412369016362746, 29.809376205861284 ], [ -95.41235701588505, 29.808844205921439 ], [ -95.412356016018094, 29.8083572055282 ], [ -95.412349015947314, 29.807829205264539 ], [ -95.412330016059769, 29.807329205144818 ], [ -95.412324016053034, 29.806813205054549 ], [ -95.412313016047079, 29.806312204810208 ], [ -95.412300016477431, 29.805801204734522 ], [ -95.412284015739502, 29.804779204740289 ], [ -95.412263016385126, 29.803769204908129 ], [ -95.410156015388878, 29.803815204361847 ], [ -95.409955015371253, 29.803820204789076 ], [ -95.408620015547328, 29.803813204633872 ], [ -95.408047014699932, 29.803837204277915 ], [ -95.40589801427997, 29.8038702049327 ], [ -95.403647013528271, 29.803902204907427 ], [ -95.401432013791776, 29.80393720512491 ], [ -95.399223013101789, 29.803964205196763 ], [ -95.399257012449553, 29.804965205513277 ], [ -95.399261012978045, 29.805497205421471 ], [ -95.399268012761695, 29.80560520568007 ], [ -95.399272012507438, 29.806002205488845 ], [ -95.39927901259783, 29.806509205736912 ], [ -95.399291012475132, 29.807003205775359 ], [ -95.399299013201713, 29.807530205619297 ], [ -95.399307013200655, 29.807670205336432 ], [ -95.399319012629249, 29.807868205544708 ], [ -95.399323012903594, 29.808028206087112 ], [ -95.399333012526142, 29.808362205833205 ], [ -95.399334012788771, 29.808560205741433 ], [ -95.399347012997652, 29.809054206152567 ], [ -95.399360013332412, 29.809548206490359 ], [ -95.399361013142013, 29.809683206094832 ], [ -95.399366013294255, 29.810071206715211 ], [ -95.399376013184849, 29.810515206356364 ], [ -95.399377013581855, 29.810578206349604 ], [ -95.399381012987007, 29.811092206553923 ], [ -95.399384013019059, 29.811358206697918 ], [ -95.399388013251112, 29.811613206958292 ], [ -95.399394012986846, 29.812098206356623 ], [ -95.399395013027828, 29.812181206236179 ], [ -95.399402013420783, 29.81264320683303 ], [ -95.399406013669264, 29.812907207274385 ], [ -95.402471014273047, 29.812842206863486 ], [ -95.406044014671181, 29.81280220643777 ], [ -95.408185015338205, 29.812779206605047 ], [ -95.410172015521695, 29.812760206323855 ], [ -95.410324016119631, 29.812759206110314 ], [ -95.411875016780513, 29.812744206504604 ], [ -95.412059016151815, 29.812460206635649 ], [ -95.412109016062985, 29.812346205937754 ], [ -95.412232016500198, 29.812042206384596 ], [ -95.412294016475869, 29.81191520644769 ], [ -95.41237901689064, 29.811430206421072 ], [ -95.412380016674064, 29.811406205719674 ], [ -95.412396016393714, 29.811137205740479 ], [ -95.412398015990419, 29.810889205685452 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1016, "Tract": "48201350803", "Area_SqMi": 1.5831893544875908, "total_2009": 1136, "total_2010": 1296, "total_2011": 1352, "total_2012": 1152, "total_2013": 1155, "total_2014": 1324, "total_2015": 1346, "total_2016": 1416, "total_2017": 1489, "total_2018": 1555, "total_2019": 1568, "total_2020": 1554, "age1": 880, "age2": 975, "age3": 376, "earn1": 633, "earn2": 847, "earn3": 751, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 10, "naics_s06": 3, "naics_s07": 888, "naics_s08": 37, "naics_s09": 14, "naics_s10": 99, "naics_s11": 29, "naics_s12": 17, "naics_s13": 0, "naics_s14": 285, "naics_s15": 8, "naics_s16": 29, "naics_s17": 40, "naics_s18": 567, "naics_s19": 180, "naics_s20": 0, "race1": 1713, "race2": 332, "race3": 15, "race4": 121, "race5": 9, "race6": 41, "ethnicity1": 1352, "ethnicity2": 879, "edu1": 363, "edu2": 348, "edu3": 408, "edu4": 232, "Shape_Length": 26794.321581907716, "Shape_Area": 44136609.547453128, "total_2021": 1808, "total_2022": 2231 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.162682940181952, 29.529667157067248 ], [ -95.162728940270114, 29.528687156206352 ], [ -95.16267594023509, 29.528191156738909 ], [ -95.162440939569152, 29.526482155595179 ], [ -95.1623519396869, 29.52583915613458 ], [ -95.162313939779381, 29.525596155490931 ], [ -95.16224594004197, 29.525094155613253 ], [ -95.16213593959823, 29.524295155461473 ], [ -95.16199393922183, 29.523279155559283 ], [ -95.16191593980399, 29.522694155369326 ], [ -95.161907939491996, 29.522633154784078 ], [ -95.161870939632394, 29.522358154924856 ], [ -95.161733939958637, 29.52236715512937 ], [ -95.16051793885444, 29.52244315543928 ], [ -95.159751938735283, 29.522521155525844 ], [ -95.157596938798818, 29.52274315562827 ], [ -95.156652938449199, 29.522854155286137 ], [ -95.154154938045508, 29.52316215556295 ], [ -95.153900937107309, 29.523193155729047 ], [ -95.151899936935905, 29.523440155608597 ], [ -95.150434936200142, 29.52358515547348 ], [ -95.148939935884542, 29.523733156149387 ], [ -95.142766935173, 29.524344156320279 ], [ -95.141551934027689, 29.524464156149929 ], [ -95.141058934360998, 29.524513156161156 ], [ -95.140678933827957, 29.524553156261373 ], [ -95.140190933785135, 29.524603155981008 ], [ -95.139565934362054, 29.524668156697803 ], [ -95.138770933261355, 29.524750156199087 ], [ -95.138181933455954, 29.524789156741285 ], [ -95.138133933135236, 29.524798156440607 ], [ -95.137844933378844, 29.524851156771287 ], [ -95.137737933503999, 29.524870156163672 ], [ -95.136093933519149, 29.525172156247301 ], [ -95.135717933329829, 29.525316156720113 ], [ -95.135335933226401, 29.52546415623317 ], [ -95.134911932553095, 29.525706157007807 ], [ -95.13459993293958, 29.525884156412413 ], [ -95.133823932124486, 29.52642715735276 ], [ -95.13322593281697, 29.526840157373972 ], [ -95.133169932565607, 29.526889157061632 ], [ -95.13311593232234, 29.526934156600682 ], [ -95.132805932567678, 29.527199157147269 ], [ -95.132404931957353, 29.527481156847212 ], [ -95.131972931832394, 29.52778515733949 ], [ -95.131327932096667, 29.528245157290041 ], [ -95.131119931919272, 29.528393157603013 ], [ -95.13079693131408, 29.528623157732863 ], [ -95.132460932363955, 29.530421158137624 ], [ -95.134765933276313, 29.532816157963847 ], [ -95.13643893329413, 29.534630158418189 ], [ -95.13813793376049, 29.536544159198613 ], [ -95.138942934693731, 29.5374241588 ], [ -95.13954893449322, 29.537998159008044 ], [ -95.140233934808677, 29.53872515941918 ], [ -95.141695934718996, 29.540276159509148 ], [ -95.141830934838168, 29.540419159938846 ], [ -95.141993934979538, 29.540340159619344 ], [ -95.143616935335373, 29.53955115900979 ], [ -95.143951935425278, 29.539398159402378 ], [ -95.144488936052298, 29.53916815887499 ], [ -95.14452893535011, 29.539159158922708 ], [ -95.144654935380714, 29.539134159290356 ], [ -95.14505593638502, 29.539063159552846 ], [ -95.145866936354551, 29.538922158892948 ], [ -95.148143936764768, 29.538561159358224 ], [ -95.150559937156018, 29.538177159012022 ], [ -95.150684937702621, 29.538157158837929 ], [ -95.152067938041498, 29.537941158387852 ], [ -95.152608937914152, 29.537856159033556 ], [ -95.154066938236042, 29.537600158820492 ], [ -95.15444893876608, 29.537533158091364 ], [ -95.154715938387341, 29.537486158115389 ], [ -95.155236938133655, 29.537318158311663 ], [ -95.155470938466792, 29.537243158165488 ], [ -95.155949939040255, 29.53701915882554 ], [ -95.156226938374672, 29.536890158739251 ], [ -95.156487939107564, 29.536712158071268 ], [ -95.157310938663684, 29.536152158346589 ], [ -95.158955939500146, 29.534639157596807 ], [ -95.159221939611555, 29.534394157454312 ], [ -95.159615939741528, 29.534032157218586 ], [ -95.159673939642474, 29.533978157749118 ], [ -95.159869939707676, 29.533793157581705 ], [ -95.161401940300976, 29.532354157312273 ], [ -95.161880939945377, 29.531743156811928 ], [ -95.162248939827265, 29.53110115656343 ], [ -95.162544939946727, 29.530332157122739 ], [ -95.16258193981362, 29.530152156370278 ], [ -95.162682940181952, 29.529667157067248 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1017, "Tract": "48201432003", "Area_SqMi": 0.1384442928813131, "total_2009": 1353, "total_2010": 1094, "total_2011": 1437, "total_2012": 1164, "total_2013": 1377, "total_2014": 1530, "total_2015": 1402, "total_2016": 1401, "total_2017": 1568, "total_2018": 1518, "total_2019": 1447, "total_2020": 1391, "age1": 490, "age2": 659, "age3": 352, "earn1": 462, "earn2": 651, "earn3": 388, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 2, "naics_s07": 21, "naics_s08": 1, "naics_s09": 0, "naics_s10": 21, "naics_s11": 31, "naics_s12": 8, "naics_s13": 0, "naics_s14": 285, "naics_s15": 49, "naics_s16": 132, "naics_s17": 9, "naics_s18": 860, "naics_s19": 78, "naics_s20": 0, "race1": 965, "race2": 331, "race3": 19, "race4": 134, "race5": 1, "race6": 51, "ethnicity1": 957, "ethnicity2": 544, "edu1": 305, "edu2": 260, "edu3": 252, "edu4": 194, "Shape_Length": 7944.1671355507178, "Shape_Area": 3859589.9357556319, "total_2021": 1471, "total_2022": 1501 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.489859032695392, 29.737689188562648 ], [ -95.489824032479575, 29.735350187506583 ], [ -95.489824032487363, 29.73479518749193 ], [ -95.489824033024703, 29.734261187436868 ], [ -95.489823033333749, 29.734179187560386 ], [ -95.489818032859517, 29.73299618733709 ], [ -95.489789032287149, 29.731797187600307 ], [ -95.48697503194434, 29.731782187186234 ], [ -95.486929031662839, 29.731781187548503 ], [ -95.486468032365494, 29.731722187489066 ], [ -95.485704031377182, 29.731621187583471 ], [ -95.485407031487085, 29.731581187509796 ], [ -95.484870031408278, 29.731551187491227 ], [ -95.484212031023546, 29.731514186976181 ], [ -95.484210031562625, 29.732240187331755 ], [ -95.484209031419184, 29.73238018773333 ], [ -95.484240030890035, 29.732844188008094 ], [ -95.484244031502115, 29.733060187955353 ], [ -95.484264031744274, 29.73424518771888 ], [ -95.484264031381173, 29.734262188144417 ], [ -95.484239031819826, 29.735419188029919 ], [ -95.484256031756914, 29.736127188310832 ], [ -95.484265031655042, 29.736555188206001 ], [ -95.484278031915082, 29.737121188352539 ], [ -95.484286031426279, 29.737461188264238 ], [ -95.484292031134501, 29.737723188642534 ], [ -95.48468303118662, 29.737729188600962 ], [ -95.485316032279229, 29.737734188185378 ], [ -95.487217031910887, 29.737702188142109 ], [ -95.488114032930653, 29.737687188807353 ], [ -95.488562032860131, 29.737688188864041 ], [ -95.489859032695392, 29.737689188562648 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1018, "Tract": "48201532102", "Area_SqMi": 0.28145858731901302, "total_2009": 177, "total_2010": 147, "total_2011": 115, "total_2012": 147, "total_2013": 136, "total_2014": 142, "total_2015": 154, "total_2016": 196, "total_2017": 182, "total_2018": 178, "total_2019": 175, "total_2020": 183, "age1": 34, "age2": 121, "age3": 43, "earn1": 27, "earn2": 75, "earn3": 96, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 66, "naics_s05": 0, "naics_s06": 0, "naics_s07": 31, "naics_s08": 4, "naics_s09": 0, "naics_s10": 5, "naics_s11": 27, "naics_s12": 40, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 9, "naics_s19": 7, "naics_s20": 0, "race1": 149, "race2": 16, "race3": 2, "race4": 25, "race5": 2, "race6": 4, "ethnicity1": 112, "ethnicity2": 86, "edu1": 52, "edu2": 35, "edu3": 44, "edu4": 33, "Shape_Length": 20193.552549120253, "Shape_Area": 7846583.6932674944, "total_2021": 170, "total_2022": 198 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.488892037501813, 29.850577211116725 ], [ -95.488883038053658, 29.849764211718014 ], [ -95.488874038253797, 29.848916211403477 ], [ -95.488869037197773, 29.848087210894551 ], [ -95.488870038055055, 29.847252210561614 ], [ -95.488864037823703, 29.846427210937861 ], [ -95.488861037589288, 29.845597210623939 ], [ -95.488860038068665, 29.845462210890268 ], [ -95.488860037569808, 29.845357210472468 ], [ -95.488857037292945, 29.84475221041701 ], [ -95.488854037755758, 29.843953210049158 ], [ -95.488855037819079, 29.843132210022265 ], [ -95.488862037275794, 29.842320209797347 ], [ -95.488875037424847, 29.841486209940769 ], [ -95.487952037647148, 29.841217209173788 ], [ -95.486854036823303, 29.840897209511258 ], [ -95.486759037111511, 29.84087020932613 ], [ -95.486707036587703, 29.840855209393119 ], [ -95.485759036671794, 29.840584209582467 ], [ -95.484990036403758, 29.840400209900302 ], [ -95.484981035951776, 29.841501209508177 ], [ -95.48500903611297, 29.842312209822932 ], [ -95.485007036873952, 29.843140209721518 ], [ -95.485006036145151, 29.843960210412124 ], [ -95.485005037010353, 29.844775210441071 ], [ -95.485025036127695, 29.845588210718901 ], [ -95.485024036860949, 29.846420211116065 ], [ -95.485034037168688, 29.846828211236975 ], [ -95.48504403700143, 29.847254211265248 ], [ -95.485043036908408, 29.84808921150729 ], [ -95.485062036925029, 29.848921210981256 ], [ -95.485069036992769, 29.849768211323767 ], [ -95.485076036434776, 29.850061211361616 ], [ -95.484992036975626, 29.850048211937722 ], [ -95.484910036606223, 29.850075211909314 ], [ -95.484815036725749, 29.850075211471211 ], [ -95.484614036785956, 29.850058211947101 ], [ -95.484367037073909, 29.850037211851323 ], [ -95.483901036124365, 29.849982211907069 ], [ -95.483793036083355, 29.84995521116964 ], [ -95.483459036614875, 29.849773211602621 ], [ -95.483339036828141, 29.84973521159522 ], [ -95.482980036680559, 29.849488211357585 ], [ -95.48278403606804, 29.849301211435957 ], [ -95.482702035731677, 29.849246210988756 ], [ -95.482563036468832, 29.849076211621313 ], [ -95.482159036458526, 29.848696211616211 ], [ -95.482008035794706, 29.848581210960745 ], [ -95.481762035931453, 29.848466211111294 ], [ -95.481446036115344, 29.848290211443988 ], [ -95.481018035659119, 29.84811421126642 ], [ -95.480791035776477, 29.848065211004531 ], [ -95.480532035101419, 29.848026211027232 ], [ -95.480248034993664, 29.847966211275843 ], [ -95.480154035784281, 29.847933211496397 ], [ -95.480097035823889, 29.847895210988796 ], [ -95.479838035337778, 29.847790211180257 ], [ -95.479737035826048, 29.847724210901692 ], [ -95.479491035167698, 29.847526211038552 ], [ -95.479296035345612, 29.847400210949932 ], [ -95.479113035472395, 29.847301211481724 ], [ -95.478923035322623, 29.847241211502993 ], [ -95.47866503525492, 29.847208211242528 ], [ -95.478426035135314, 29.847199210839563 ], [ -95.478236034772706, 29.84719221158657 ], [ -95.477656035322781, 29.847186211082054 ], [ -95.477397035202074, 29.847159211591947 ], [ -95.477088034213622, 29.847104211386846 ], [ -95.47669103483986, 29.846994211070136 ], [ -95.476104034542374, 29.846752210834151 ], [ -95.475789034193312, 29.846654210764157 ], [ -95.475549034484715, 29.846599211266518 ], [ -95.47542303441044, 29.84658221088495 ], [ -95.475072034351086, 29.846591210795669 ], [ -95.474548034166872, 29.846603210870398 ], [ -95.474290033732558, 29.846609211486481 ], [ -95.474023034177947, 29.846616211601575 ], [ -95.47353103378795, 29.846671211247905 ], [ -95.473238033257957, 29.846675210904294 ], [ -95.473077033711505, 29.846677211453105 ], [ -95.472938034033263, 29.846649211447417 ], [ -95.47280603350481, 29.846605211408345 ], [ -95.471115033251579, 29.845655211309275 ], [ -95.470636032616028, 29.845402210919424 ], [ -95.470529032803881, 29.845363210791675 ], [ -95.470384032936195, 29.845374211234859 ], [ -95.470138033241753, 29.845449210837106 ], [ -95.471272033575715, 29.847534211522326 ], [ -95.472065033200238, 29.848891211750004 ], [ -95.473301033775712, 29.848882211868343 ], [ -95.473908033658134, 29.84890521142238 ], [ -95.474689033820212, 29.848984211348416 ], [ -95.474976034006062, 29.849013211933066 ], [ -95.475272034283336, 29.849062211251379 ], [ -95.475641034587611, 29.849123211371815 ], [ -95.476624034573874, 29.849447211609238 ], [ -95.477565034429233, 29.849876211266857 ], [ -95.47855803541637, 29.850229211527626 ], [ -95.479737035376644, 29.850491212153837 ], [ -95.480089035832279, 29.850530211763832 ], [ -95.481065035582716, 29.850574211825322 ], [ -95.481883036090323, 29.85057721196678 ], [ -95.482786036708376, 29.850598212139815 ], [ -95.483898036810899, 29.850565211283797 ], [ -95.483975036753364, 29.850563211452474 ], [ -95.484798036757738, 29.850566212058023 ], [ -95.485108036797271, 29.850568211451076 ], [ -95.485894037161458, 29.850585211866129 ], [ -95.485919037084628, 29.850584211494787 ], [ -95.486521037509519, 29.850566211803645 ], [ -95.486937037636054, 29.850570211119873 ], [ -95.487751037670776, 29.850557211752751 ], [ -95.488892037501813, 29.850577211116725 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1019, "Tract": "48201431303", "Area_SqMi": 0.10706464506452536, "total_2009": 598, "total_2010": 551, "total_2011": 475, "total_2012": 504, "total_2013": 452, "total_2014": 513, "total_2015": 525, "total_2016": 662, "total_2017": 614, "total_2018": 594, "total_2019": 592, "total_2020": 622, "age1": 184, "age2": 332, "age3": 125, "earn1": 194, "earn2": 303, "earn3": 144, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 12, "naics_s07": 72, "naics_s08": 1, "naics_s09": 0, "naics_s10": 7, "naics_s11": 5, "naics_s12": 45, "naics_s13": 0, "naics_s14": 57, "naics_s15": 0, "naics_s16": 29, "naics_s17": 0, "naics_s18": 186, "naics_s19": 220, "naics_s20": 0, "race1": 409, "race2": 118, "race3": 3, "race4": 94, "race5": 2, "race6": 15, "ethnicity1": 443, "ethnicity2": 198, "edu1": 107, "edu2": 107, "edu3": 118, "edu4": 125, "Shape_Length": 7467.5683412548224, "Shape_Area": 2984779.0614275816, "total_2021": 616, "total_2022": 641 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.500961036249265, 29.744025188977091 ], [ -95.500956036366247, 29.743453189139554 ], [ -95.500957035715814, 29.74269518902117 ], [ -95.500957036055482, 29.742494189134053 ], [ -95.500959035732535, 29.742088188680619 ], [ -95.500940036343223, 29.74147118914081 ], [ -95.500925035898476, 29.740585188797496 ], [ -95.500923035676976, 29.740456188927936 ], [ -95.500913035778538, 29.739753188550786 ], [ -95.500902035817816, 29.739063187925634 ], [ -95.500897036059413, 29.738711188009063 ], [ -95.500912036146303, 29.737670188203229 ], [ -95.500912035980619, 29.737543188367841 ], [ -95.499194035171598, 29.73752418827263 ], [ -95.498319034986437, 29.737544188396164 ], [ -95.497361034552071, 29.737565188258856 ], [ -95.496476035170801, 29.737558187692624 ], [ -95.496345034535807, 29.73756218773341 ], [ -95.496347034525527, 29.737739187733407 ], [ -95.496349034356413, 29.738042188461922 ], [ -95.49640103500434, 29.738165188488324 ], [ -95.496459034696571, 29.738288188314478 ], [ -95.496592034988453, 29.738520188379425 ], [ -95.496648035155246, 29.738692188088645 ], [ -95.496656035124531, 29.738719188609952 ], [ -95.496655034515669, 29.739123188612364 ], [ -95.496652034429388, 29.740916188993449 ], [ -95.496667035494127, 29.742431189020227 ], [ -95.497464035535643, 29.742416189208857 ], [ -95.497599035431165, 29.742425189401335 ], [ -95.497608035052309, 29.743689189423534 ], [ -95.497615035705067, 29.743816189824837 ], [ -95.498004035867609, 29.743814189058778 ], [ -95.498040035401971, 29.743814189493758 ], [ -95.498684035193989, 29.743811189359366 ], [ -95.499022035188517, 29.743805189104958 ], [ -95.499448035925695, 29.743797188956844 ], [ -95.500961036249265, 29.744025188977091 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1020, "Tract": "48201432102", "Area_SqMi": 0.39759041876867907, "total_2009": 1940, "total_2010": 1892, "total_2011": 1910, "total_2012": 1939, "total_2013": 1956, "total_2014": 1764, "total_2015": 1653, "total_2016": 1806, "total_2017": 1844, "total_2018": 1737, "total_2019": 1564, "total_2020": 1707, "age1": 467, "age2": 575, "age3": 290, "earn1": 424, "earn2": 649, "earn3": 259, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 843, "naics_s08": 0, "naics_s09": 0, "naics_s10": 23, "naics_s11": 28, "naics_s12": 33, "naics_s13": 0, "naics_s14": 16, "naics_s15": 0, "naics_s16": 70, "naics_s17": 0, "naics_s18": 220, "naics_s19": 97, "naics_s20": 0, "race1": 879, "race2": 307, "race3": 10, "race4": 110, "race5": 3, "race6": 23, "ethnicity1": 840, "ethnicity2": 492, "edu1": 225, "edu2": 247, "edu3": 232, "edu4": 161, "Shape_Length": 13546.498480510221, "Shape_Area": 11084140.392468205, "total_2021": 1902, "total_2022": 1332 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.514201039357474, 29.737388187185392 ], [ -95.514189038891303, 29.736493186933806 ], [ -95.514195039152341, 29.73631418735668 ], [ -95.514197038667533, 29.736141187313976 ], [ -95.514189038823929, 29.735478186889605 ], [ -95.51418303895673, 29.735219187350733 ], [ -95.514166038876084, 29.734403187220966 ], [ -95.514152038649669, 29.733708187028547 ], [ -95.514130038580319, 29.733052186479849 ], [ -95.514112039066845, 29.731790186333239 ], [ -95.514101038809713, 29.731190186201037 ], [ -95.514088039250908, 29.730631186008452 ], [ -95.514080038621927, 29.730248186214585 ], [ -95.514069039302797, 29.729883186423013 ], [ -95.514066039250892, 29.72930818607292 ], [ -95.51393703931214, 29.729310186238489 ], [ -95.512779038925672, 29.729323185572792 ], [ -95.512604038762305, 29.729324185531322 ], [ -95.512430038513088, 29.729328185495365 ], [ -95.512365037929968, 29.729329185764062 ], [ -95.512211038202068, 29.72933018586783 ], [ -95.511607037836583, 29.729337185937823 ], [ -95.511440038345768, 29.729335185640604 ], [ -95.511017038013478, 29.729332186271527 ], [ -95.510518038329465, 29.729330186377492 ], [ -95.510411037579757, 29.729334185996823 ], [ -95.509123037487683, 29.729345186135394 ], [ -95.508428037178788, 29.729467186252396 ], [ -95.507671037502135, 29.729634186103443 ], [ -95.506476036952677, 29.730104185947667 ], [ -95.506456036538339, 29.730112186191381 ], [ -95.505555036435979, 29.73046418646889 ], [ -95.503650036676675, 29.731174186956267 ], [ -95.50265703612844, 29.731518186759899 ], [ -95.501833035524911, 29.731642186670747 ], [ -95.501193035541377, 29.731667187176104 ], [ -95.501240035925406, 29.732830187051977 ], [ -95.501232035486353, 29.73404818684277 ], [ -95.501075035869988, 29.734903187649461 ], [ -95.500941036285866, 29.735492187305034 ], [ -95.500861036271331, 29.736191187740708 ], [ -95.500887035351695, 29.737063187650509 ], [ -95.500912035595334, 29.737315188365748 ], [ -95.500912035980619, 29.737543188367841 ], [ -95.504143036641224, 29.737509188046584 ], [ -95.505050037028781, 29.737471188174641 ], [ -95.50582903740046, 29.737472187474314 ], [ -95.505871037492412, 29.737473188145639 ], [ -95.507177037314619, 29.737467187364309 ], [ -95.507611037108376, 29.737470187748656 ], [ -95.508257037318003, 29.737460187614644 ], [ -95.508810037543597, 29.737451187246911 ], [ -95.509382038300714, 29.737443187858837 ], [ -95.509531038355306, 29.737441187572418 ], [ -95.510094038523476, 29.737434187257211 ], [ -95.51106703886245, 29.737422187650637 ], [ -95.512273038806441, 29.73740918758368 ], [ -95.514201039357474, 29.737388187185392 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1021, "Tract": "48201551501", "Area_SqMi": 1.4917657063136378, "total_2009": 2606, "total_2010": 2243, "total_2011": 2698, "total_2012": 2811, "total_2013": 2724, "total_2014": 3022, "total_2015": 3130, "total_2016": 2981, "total_2017": 2982, "total_2018": 2905, "total_2019": 2759, "total_2020": 2646, "age1": 804, "age2": 1528, "age3": 556, "earn1": 549, "earn2": 831, "earn3": 1508, "naics_s01": 0, "naics_s02": 0, "naics_s03": 56, "naics_s04": 373, "naics_s05": 199, "naics_s06": 167, "naics_s07": 968, "naics_s08": 23, "naics_s09": 0, "naics_s10": 21, "naics_s11": 55, "naics_s12": 105, "naics_s13": 7, "naics_s14": 153, "naics_s15": 0, "naics_s16": 80, "naics_s17": 8, "naics_s18": 573, "naics_s19": 100, "naics_s20": 0, "race1": 2193, "race2": 440, "race3": 17, "race4": 186, "race5": 7, "race6": 45, "ethnicity1": 1776, "ethnicity2": 1112, "edu1": 530, "edu2": 583, "edu3": 562, "edu4": 409, "Shape_Length": 42469.133548431986, "Shape_Area": 41587874.709500983, "total_2021": 2757, "total_2022": 2888 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.582969065527251, 29.933891225031928 ], [ -95.582967066142132, 29.933816224822802 ], [ -95.582947065801676, 29.933757225632089 ], [ -95.582917065141785, 29.933715225376272 ], [ -95.582872065575756, 29.933676225223302 ], [ -95.582814065760019, 29.933646224868554 ], [ -95.582740065687517, 29.933625225544795 ], [ -95.582709065621572, 29.93362122502495 ], [ -95.582683065462149, 29.933617225424232 ], [ -95.582350065222599, 29.933618225480096 ], [ -95.582301065340602, 29.93360922485903 ], [ -95.581394065393525, 29.933612225091547 ], [ -95.58084406508577, 29.933617225066396 ], [ -95.580146064444691, 29.933617224835679 ], [ -95.579690065201547, 29.933621225729176 ], [ -95.579296064900632, 29.933628225647311 ], [ -95.579162064544974, 29.933623225046816 ], [ -95.579071064151051, 29.933624225622015 ], [ -95.579047064458749, 29.933624225037377 ], [ -95.579014064847811, 29.933624225241086 ], [ -95.578776064161929, 29.933625224896712 ], [ -95.578465064291109, 29.933626225468512 ], [ -95.577931064667126, 29.933630225083284 ], [ -95.577649063923175, 29.933632225687578 ], [ -95.577273064260751, 29.933634225273728 ], [ -95.576176063420561, 29.933638225739664 ], [ -95.575876063650213, 29.933638225554368 ], [ -95.575626063293612, 29.933638225776587 ], [ -95.575371063566621, 29.933639225299306 ], [ -95.575228064095029, 29.933639225188145 ], [ -95.57474306320438, 29.933641225617592 ], [ -95.574087063044885, 29.93364322504026 ], [ -95.57385706339295, 29.933643225175409 ], [ -95.573607063450325, 29.933644225308257 ], [ -95.573217062869858, 29.933645225264012 ], [ -95.572882062700799, 29.933646225702521 ], [ -95.572774062769255, 29.933646225698933 ], [ -95.572578062749159, 29.933648225330739 ], [ -95.572488063163391, 29.933649225338549 ], [ -95.572129063215812, 29.93365422594195 ], [ -95.571799062881865, 29.933655225899368 ], [ -95.571552062214607, 29.933655225647794 ], [ -95.568496062373143, 29.933664226055448 ], [ -95.568176061601392, 29.933665225428101 ], [ -95.568114061470567, 29.933672225598745 ], [ -95.567838061332012, 29.933671225287778 ], [ -95.565998061182114, 29.933688226175139 ], [ -95.565786061229034, 29.933691225430938 ], [ -95.565581061427608, 29.933688226244072 ], [ -95.565449061169645, 29.933694225765564 ], [ -95.565052060956589, 29.93369822615054 ], [ -95.564523060883474, 29.933698226184351 ], [ -95.564523060418594, 29.933769226176196 ], [ -95.564524060771092, 29.935435225982829 ], [ -95.564523061340267, 29.936512226439877 ], [ -95.564523060835015, 29.936862226748069 ], [ -95.56452506154244, 29.937264226662055 ], [ -95.564506061291809, 29.938773226631742 ], [ -95.564487061566709, 29.939861226984615 ], [ -95.564475060953427, 29.940573227149475 ], [ -95.564469061739004, 29.940927227100168 ], [ -95.564474060955263, 29.941026227160012 ], [ -95.564469060952447, 29.941074226986128 ], [ -95.564467061222999, 29.941289227738711 ], [ -95.564461060814097, 29.942044227948966 ], [ -95.564454060929236, 29.942814227479264 ], [ -95.564112060799914, 29.94280722765815 ], [ -95.563499060742657, 29.942808227650367 ], [ -95.562782061058641, 29.942799227829443 ], [ -95.562674061347863, 29.942801228176144 ], [ -95.561920060781645, 29.942797227910411 ], [ -95.561853060790924, 29.94279322761426 ], [ -95.561832060355712, 29.942796227857954 ], [ -95.561413061056371, 29.94279622790809 ], [ -95.561407060567518, 29.942919228215075 ], [ -95.561410060065796, 29.94335622787133 ], [ -95.561426060431003, 29.943409227791594 ], [ -95.561411060119468, 29.943503228113375 ], [ -95.561409060656644, 29.943929228178376 ], [ -95.560524059849541, 29.943937228402529 ], [ -95.560462060838219, 29.943931228198007 ], [ -95.560325060474881, 29.943941227775678 ], [ -95.558690060401517, 29.94394522850267 ], [ -95.556176058882031, 29.943957228264821 ], [ -95.555092058665863, 29.943964227814309 ], [ -95.55403005898566, 29.943965227958106 ], [ -95.55294605861846, 29.943968228036614 ], [ -95.551881057952784, 29.943975228303167 ], [ -95.550800058084661, 29.943981228712438 ], [ -95.549877058057731, 29.943995228886571 ], [ -95.547803056783948, 29.943994228855519 ], [ -95.547434057438082, 29.943999228566586 ], [ -95.547428057011601, 29.94404222810725 ], [ -95.547426056618406, 29.944594228643197 ], [ -95.547420056608473, 29.944674228288569 ], [ -95.54742605674187, 29.944938228312882 ], [ -95.547429057270023, 29.945208229100007 ], [ -95.547436056904402, 29.945282228786631 ], [ -95.5474290568621, 29.945366229076349 ], [ -95.547434057565752, 29.945880228762892 ], [ -95.547439057034836, 29.946634228812517 ], [ -95.547446057034705, 29.946709229423107 ], [ -95.547441056821143, 29.94680622941604 ], [ -95.547448056675748, 29.947638229555686 ], [ -95.547461057598113, 29.947844229513674 ], [ -95.547480057119031, 29.947975229207337 ], [ -95.54752405735492, 29.94814622938776 ], [ -95.547556057276964, 29.948240229362654 ], [ -95.547819056869571, 29.948622229552573 ], [ -95.547829057771708, 29.948760229168617 ], [ -95.547689057171539, 29.948802229848269 ], [ -95.547486057529113, 29.948847229678162 ], [ -95.547257057192397, 29.948914229535454 ], [ -95.547121056730987, 29.948956229613383 ], [ -95.547086057307297, 29.948965229784235 ], [ -95.546865057216294, 29.949009229605743 ], [ -95.54682905691655, 29.949012229840584 ], [ -95.546360057093096, 29.949048229716411 ], [ -95.54611305724319, 29.949053229933561 ], [ -95.545937056900527, 29.949026229742003 ], [ -95.545798056982534, 29.949048229744818 ], [ -95.545495056950131, 29.94902622985866 ], [ -95.545356056936654, 29.949048229404049 ], [ -95.545261056682421, 29.949053229256876 ], [ -95.545223056371, 29.949042229237921 ], [ -95.545148057106275, 29.949059229833072 ], [ -95.545002056848247, 29.949042229218222 ], [ -95.544908056532094, 29.949058229840187 ], [ -95.544516056432059, 29.949042229213845 ], [ -95.54405505652673, 29.949058230090316 ], [ -95.542944056359232, 29.949058230062963 ], [ -95.542654055984116, 29.949080229501448 ], [ -95.542351056440111, 29.949080229966871 ], [ -95.542225055861337, 29.949091230173689 ], [ -95.542042056287599, 29.949146229315762 ], [ -95.541878056096877, 29.949218230176747 ], [ -95.541480055733601, 29.949459230096039 ], [ -95.54130905585501, 29.949514229601437 ], [ -95.540962055329956, 29.949586229849373 ], [ -95.540596055806077, 29.94964122978552 ], [ -95.538102054950002, 29.950135230441479 ], [ -95.537768054619519, 29.950179230463508 ], [ -95.537168054735318, 29.95030523025088 ], [ -95.537048055125183, 29.950344230260065 ], [ -95.536950054966354, 29.950389230217397 ], [ -95.536764054335578, 29.950481229838026 ], [ -95.536653055012707, 29.950549230319918 ], [ -95.536505054904211, 29.950641230566045 ], [ -95.536366054511134, 29.950674230492552 ], [ -95.536209054219938, 29.950679230151088 ], [ -95.53578605478954, 29.950635230594315 ], [ -95.535401054431858, 29.950613230349465 ], [ -95.535249054100845, 29.950613230385656 ], [ -95.53514205466665, 29.950629229947449 ], [ -95.534991053973684, 29.950693229978224 ], [ -95.534958053789353, 29.95070623009526 ], [ -95.534889054258443, 29.950734230625674 ], [ -95.534752054262995, 29.950753230147292 ], [ -95.534465054299829, 29.950793229978643 ], [ -95.534172053729151, 29.950818230553704 ], [ -95.533944054080351, 29.950833230186323 ], [ -95.533887053974212, 29.950821230098956 ], [ -95.533385054255106, 29.950719230077816 ], [ -95.53402805372653, 29.951213230044559 ], [ -95.535303054112049, 29.952103230734384 ], [ -95.536502054239762, 29.952979231140031 ], [ -95.537034055251638, 29.953317230579049 ], [ -95.537378055401888, 29.953544230427447 ], [ -95.537806054970318, 29.953782230735158 ], [ -95.539017055162901, 29.954572230635538 ], [ -95.539938055578247, 29.955270230726533 ], [ -95.541951055886472, 29.956769231458871 ], [ -95.542329056759002, 29.957051231477838 ], [ -95.54265905613893, 29.957317230981168 ], [ -95.542958056982371, 29.95755723170107 ], [ -95.543404056812776, 29.95793423193016 ], [ -95.54342005614474, 29.957941231679019 ], [ -95.544260056954514, 29.958678231987985 ], [ -95.545154057035987, 29.959483231945363 ], [ -95.545967057804873, 29.960215232292462 ], [ -95.546606057615492, 29.960766232244524 ], [ -95.54680005806911, 29.960977232113645 ], [ -95.546914057781393, 29.961073232278505 ], [ -95.546955057688322, 29.961114231652541 ], [ -95.547058057823634, 29.96121723163499 ], [ -95.547368057466585, 29.960918231531998 ], [ -95.547530057654768, 29.960780231683064 ], [ -95.54761705782164, 29.9607032321559 ], [ -95.547791057791258, 29.960549232024647 ], [ -95.548714057742785, 29.959755231826016 ], [ -95.549450058189223, 29.959129231136664 ], [ -95.549486058268201, 29.959101231668722 ], [ -95.55011305879907, 29.958584231057607 ], [ -95.550787058294148, 29.958053231187641 ], [ -95.551075059051087, 29.957745231218453 ], [ -95.551210058864768, 29.957640230883221 ], [ -95.551516058990003, 29.957372231150046 ], [ -95.551650059066318, 29.957259231413936 ], [ -95.552242058472814, 29.956752230622225 ], [ -95.552565058610995, 29.956477230632377 ], [ -95.553632059082702, 29.955527230347382 ], [ -95.553929059293722, 29.955260230754234 ], [ -95.554944059403809, 29.954351230547555 ], [ -95.555491059967025, 29.953861229860422 ], [ -95.555580059723795, 29.953781230429101 ], [ -95.556562059873968, 29.952901229571435 ], [ -95.556797059398676, 29.952691230205215 ], [ -95.557412060040619, 29.952140230004066 ], [ -95.558823060423691, 29.950851229901808 ], [ -95.55992906053487, 29.949873229576866 ], [ -95.560167060300742, 29.949664229171528 ], [ -95.561789060503756, 29.94824522914022 ], [ -95.562110061224018, 29.947964228375501 ], [ -95.562516061351474, 29.947609229104728 ], [ -95.562615061213791, 29.947521228978303 ], [ -95.562783060881387, 29.947371228840673 ], [ -95.563195061423613, 29.947005228143244 ], [ -95.563922061586581, 29.946359228318478 ], [ -95.564043061272343, 29.946250228752152 ], [ -95.564170061789397, 29.946135228034954 ], [ -95.564340061410604, 29.945981228253963 ], [ -95.564966061282618, 29.945425228236747 ], [ -95.565502061362977, 29.94495022830629 ], [ -95.565614062101801, 29.944826228396813 ], [ -95.565739061905219, 29.94471122830063 ], [ -95.565835061456994, 29.944624227676822 ], [ -95.565996061507079, 29.944501228149189 ], [ -95.566215061358079, 29.944334227859461 ], [ -95.566718061943618, 29.943953227454312 ], [ -95.566825062197026, 29.943873228003657 ], [ -95.567271062019543, 29.94354022777712 ], [ -95.567315061929051, 29.943517228068121 ], [ -95.56774406179558, 29.943282227651263 ], [ -95.568816062562234, 29.9426332272349 ], [ -95.56909206266775, 29.942465227832695 ], [ -95.572198063650319, 29.940580227144366 ], [ -95.573038063859443, 29.940070226867697 ], [ -95.573327063155446, 29.939893226371332 ], [ -95.574075063125591, 29.939441227059191 ], [ -95.57472906404422, 29.939043226819471 ], [ -95.577843064543814, 29.937151225792661 ], [ -95.57852606516316, 29.936736225750323 ], [ -95.579016065218894, 29.93643922573953 ], [ -95.579812064982534, 29.935955225600068 ], [ -95.580014064525784, 29.935834225450851 ], [ -95.58021006474506, 29.935715225698441 ], [ -95.581836065473496, 29.934747225289897 ], [ -95.582421065260917, 29.934429224944026 ], [ -95.582683065619918, 29.934271225008413 ], [ -95.582892065303824, 29.934132225617944 ], [ -95.582940065745987, 29.934046225069032 ], [ -95.582958065821472, 29.933964225491419 ], [ -95.582969065527251, 29.933891225031928 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1022, "Tract": "48201250601", "Area_SqMi": 1.6852672032157487, "total_2009": 2967, "total_2010": 2678, "total_2011": 2663, "total_2012": 2462, "total_2013": 2598, "total_2014": 3150, "total_2015": 3263, "total_2016": 3169, "total_2017": 3082, "total_2018": 2857, "total_2019": 2716, "total_2020": 2655, "age1": 689, "age2": 1502, "age3": 661, "earn1": 667, "earn2": 902, "earn3": 1283, "naics_s01": 2, "naics_s02": 1, "naics_s03": 20, "naics_s04": 263, "naics_s05": 104, "naics_s06": 45, "naics_s07": 655, "naics_s08": 18, "naics_s09": 30, "naics_s10": 112, "naics_s11": 19, "naics_s12": 240, "naics_s13": 0, "naics_s14": 24, "naics_s15": 53, "naics_s16": 376, "naics_s17": 86, "naics_s18": 478, "naics_s19": 71, "naics_s20": 255, "race1": 2182, "race2": 499, "race3": 23, "race4": 93, "race5": 4, "race6": 51, "ethnicity1": 2002, "ethnicity2": 850, "edu1": 474, "edu2": 623, "edu3": 697, "edu4": 369, "Shape_Length": 33586.787576246228, "Shape_Area": 46982365.262010016, "total_2021": 2650, "total_2022": 2852 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.277083989885639, 29.982610245586596 ], [ -95.277170989289232, 29.982400246011615 ], [ -95.276965989109797, 29.982358245820105 ], [ -95.276789989662703, 29.982322245753771 ], [ -95.276584988969418, 29.982244245520029 ], [ -95.276418989323886, 29.982158245931227 ], [ -95.27636398979142, 29.982136245775024 ], [ -95.276219989684037, 29.982079245317163 ], [ -95.276122988783428, 29.982041245753994 ], [ -95.275473988742817, 29.981743245942237 ], [ -95.275241989465542, 29.981684245169447 ], [ -95.275099988527771, 29.981637245861606 ], [ -95.274625988379086, 29.981388245814781 ], [ -95.274314988291678, 29.981254245953377 ], [ -95.273923988152447, 29.981109245840159 ], [ -95.27341298822715, 29.980990245514604 ], [ -95.272950988008461, 29.980926245360529 ], [ -95.272689988475264, 29.980890245628657 ], [ -95.272419988120319, 29.980852245352263 ], [ -95.272083988022075, 29.980805245547295 ], [ -95.271375988244927, 29.980804245334895 ], [ -95.270652988190022, 29.980816246004494 ], [ -95.270098988144696, 29.980870246012199 ], [ -95.269818987180102, 29.980896245190333 ], [ -95.268673987388993, 29.980692245333572 ], [ -95.262753985943263, 29.979634245655181 ], [ -95.260938985442365, 29.979310245443902 ], [ -95.260392985617429, 29.981503245778089 ], [ -95.260250985064289, 29.982060246398738 ], [ -95.260197984733296, 29.98226824655211 ], [ -95.260131985348963, 29.982526246017475 ], [ -95.260049984741727, 29.982830246454565 ], [ -95.259681985251717, 29.984196246401591 ], [ -95.259638984870222, 29.984389246843072 ], [ -95.259301985164413, 29.985844246822762 ], [ -95.259286984801577, 29.985913246612064 ], [ -95.258860984811065, 29.987607247209134 ], [ -95.258621985280385, 29.988441247186536 ], [ -95.258419985264823, 29.989270247825061 ], [ -95.258271985255874, 29.989947247904624 ], [ -95.258260985213639, 29.989996247507133 ], [ -95.258251984987226, 29.990651247873263 ], [ -95.258248985507024, 29.990860248139811 ], [ -95.258220984935349, 29.992778248528946 ], [ -95.257998985249415, 29.993521248642644 ], [ -95.257895985166911, 29.993869249017845 ], [ -95.257845985168984, 29.994038248435725 ], [ -95.257638984639101, 29.994734248888825 ], [ -95.257575985142381, 29.994981249316751 ], [ -95.257364984636112, 29.995582249145713 ], [ -95.257387985092976, 29.99587124945684 ], [ -95.25741898487037, 29.996725249534691 ], [ -95.257389984983263, 29.997413249010858 ], [ -95.257388985441338, 29.998151249624481 ], [ -95.257410985061753, 29.999163250126575 ], [ -95.256319985462866, 29.999161250095685 ], [ -95.255648984342557, 29.999162249727227 ], [ -95.2552139847175, 29.999162250241913 ], [ -95.254101984515273, 29.999161249761471 ], [ -95.25309698396228, 29.999162250141648 ], [ -95.252627984090381, 29.999157250042813 ], [ -95.252333984131056, 29.999162250001984 ], [ -95.252082983839315, 29.999169249797355 ], [ -95.251822983404296, 29.999168249823278 ], [ -95.251213983291194, 29.999171249912397 ], [ -95.251009983539532, 29.999172250008574 ], [ -95.250848983039589, 29.999172250325422 ], [ -95.250659983240226, 29.999170250329893 ], [ -95.250130983323544, 29.999173250036172 ], [ -95.249727983021373, 29.999177250139791 ], [ -95.249356982833618, 29.999181249906293 ], [ -95.248683982984858, 29.999191250213752 ], [ -95.248524983221415, 29.999192250481247 ], [ -95.248389983090775, 29.999193250244751 ], [ -95.248109983330949, 29.999196249974581 ], [ -95.24784998280586, 29.999200250089903 ], [ -95.247653982308677, 29.999201250116695 ], [ -95.247135983138023, 29.999208249745553 ], [ -95.246273982462327, 29.999216249895635 ], [ -95.246104982426303, 29.999219250572214 ], [ -95.245370982308174, 29.999220250653782 ], [ -95.245253982080214, 29.999220250259043 ], [ -95.244769982328151, 29.999298250523076 ], [ -95.244610981880086, 29.999412249826776 ], [ -95.244577981534263, 29.999479249960693 ], [ -95.244496982122769, 29.999632249990956 ], [ -95.245108982558861, 29.999838250386794 ], [ -95.245803982180007, 30.000161250269919 ], [ -95.246613983020467, 30.000574250389214 ], [ -95.246967983047853, 30.000762250325671 ], [ -95.247828982637898, 30.001280250502251 ], [ -95.248379983001698, 30.001622250597741 ], [ -95.249450983631974, 30.002286250430377 ], [ -95.250481983530378, 30.002893251140076 ], [ -95.250703983772055, 30.003024250430098 ], [ -95.251112984184559, 30.003267250991623 ], [ -95.251964983676402, 30.003774250452757 ], [ -95.25201898386409, 30.003806250604772 ], [ -95.252764984733503, 30.004175250664982 ], [ -95.253288984872626, 30.004421251043144 ], [ -95.254387985021907, 30.004772251442688 ], [ -95.254946984569159, 30.004902250881113 ], [ -95.25559198507392, 30.005029251232131 ], [ -95.256191985572613, 30.005097250683786 ], [ -95.256876985676655, 30.005128250842663 ], [ -95.257744985863326, 30.005120250975903 ], [ -95.258392985412058, 30.005123251203617 ], [ -95.259461986085782, 30.005104250523733 ], [ -95.260490985981548, 30.005090251159785 ], [ -95.261206986289423, 30.005080251155032 ], [ -95.262575987348868, 30.005062250782277 ], [ -95.262897986896746, 30.005058250658156 ], [ -95.263118986748836, 30.005055250897858 ], [ -95.263281987006906, 30.005053250421184 ], [ -95.264869987745868, 30.005032251002739 ], [ -95.265007987258159, 30.005035250594755 ], [ -95.265594987739178, 30.005041250613079 ], [ -95.266272987449966, 30.005035250734149 ], [ -95.267449988502946, 30.005017250593291 ], [ -95.267841988441859, 30.005010250915706 ], [ -95.268056988687349, 30.005017250688351 ], [ -95.268249987913862, 30.005023250771576 ], [ -95.268300988630983, 30.00489425064492 ], [ -95.268369988288171, 30.004727250124091 ], [ -95.268795988234629, 30.003675250311879 ], [ -95.269732988942209, 30.001568249743801 ], [ -95.26980398874376, 30.001409249742593 ], [ -95.269847988711874, 30.001309249850287 ], [ -95.269871988767306, 30.001257250171399 ], [ -95.269905988064437, 30.001167249786349 ], [ -95.270286988499137, 30.00033724962011 ], [ -95.270550988369209, 29.999556249820788 ], [ -95.270706989110778, 29.998950248876831 ], [ -95.271223989205737, 29.997466249179453 ], [ -95.27161498829453, 29.996467249055762 ], [ -95.27244498855184, 29.99432224820816 ], [ -95.273130989384242, 29.992591248215373 ], [ -95.274600988964451, 29.989020246962681 ], [ -95.27527698980775, 29.987299246424293 ], [ -95.275793989493309, 29.985984246704238 ], [ -95.27616298911029, 29.98503724657575 ], [ -95.276239989187943, 29.984847246081976 ], [ -95.276676989357085, 29.983770246359761 ], [ -95.276729990025913, 29.983639245536079 ], [ -95.276812989631125, 29.983405245538098 ], [ -95.276945989454703, 29.982986245735507 ], [ -95.277083989885639, 29.982610245586596 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1023, "Tract": "48201241201", "Area_SqMi": 0.67234879043992579, "total_2009": 79, "total_2010": 110, "total_2011": 101, "total_2012": 106, "total_2013": 108, "total_2014": 79, "total_2015": 89, "total_2016": 126, "total_2017": 136, "total_2018": 119, "total_2019": 137, "total_2020": 129, "age1": 45, "age2": 61, "age3": 30, "earn1": 44, "earn2": 49, "earn3": 43, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 5, "naics_s06": 0, "naics_s07": 23, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 21, "naics_s12": 19, "naics_s13": 0, "naics_s14": 17, "naics_s15": 0, "naics_s16": 15, "naics_s17": 0, "naics_s18": 13, "naics_s19": 16, "naics_s20": 0, "race1": 100, "race2": 18, "race3": 0, "race4": 10, "race5": 2, "race6": 6, "ethnicity1": 86, "ethnicity2": 50, "edu1": 24, "edu2": 28, "edu3": 28, "edu4": 11, "Shape_Length": 19229.960196794902, "Shape_Area": 18743933.541009665, "total_2021": 124, "total_2022": 136 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.402592024957968, 30.04374225406681 ], [ -95.402517024375513, 30.043632253981336 ], [ -95.400850024430895, 30.041350253162818 ], [ -95.400559023826474, 30.040861253386453 ], [ -95.400370023649728, 30.040602253278308 ], [ -95.400117023321911, 30.040223252851316 ], [ -95.399239023886352, 30.039057252912446 ], [ -95.398803022876393, 30.038419252724854 ], [ -95.39721202229228, 30.036291252560751 ], [ -95.397136022828661, 30.03624225271172 ], [ -95.397041022654562, 30.036093252895963 ], [ -95.396974022243697, 30.035976251998541 ], [ -95.396884022188289, 30.035995252406401 ], [ -95.396858023147232, 30.035988252533258 ], [ -95.396412022837296, 30.035873252019645 ], [ -95.396048022855496, 30.035854252678778 ], [ -95.39575902219822, 30.035661252855249 ], [ -95.395482022668219, 30.035670252228634 ], [ -95.395259021814837, 30.035749252428868 ], [ -95.394703022276616, 30.036176252361773 ], [ -95.394405022383324, 30.036296252226872 ], [ -95.394117021655745, 30.036306252451222 ], [ -95.393616021656172, 30.036155252913307 ], [ -95.392839021276345, 30.036176253023996 ], [ -95.392129021939283, 30.036360253080943 ], [ -95.39137402142903, 30.036727253144857 ], [ -95.390741021081155, 30.036879253137442 ], [ -95.390330021542724, 30.036889253038826 ], [ -95.389889020916669, 30.036802253085536 ], [ -95.38921602028735, 30.036526253056952 ], [ -95.388850020329357, 30.036477252716647 ], [ -95.388319020447298, 30.036674253135448 ], [ -95.387068020231112, 30.037376252795259 ], [ -95.386005020208117, 30.037774253566266 ], [ -95.384518019738778, 30.038228253271416 ], [ -95.384141019890649, 30.038444253731821 ], [ -95.38380101995601, 30.038804253059503 ], [ -95.383100019471982, 30.039940253380312 ], [ -95.382758019440558, 30.040248253600193 ], [ -95.382620019250169, 30.040311253965946 ], [ -95.382540019036028, 30.040348253447377 ], [ -95.382422018956063, 30.040367254129407 ], [ -95.382448019625159, 30.040465254205102 ], [ -95.382531018899371, 30.04077425351613 ], [ -95.382673018876176, 30.041244254006568 ], [ -95.382695018887588, 30.041295253587027 ], [ -95.382773018930394, 30.041483254294263 ], [ -95.382972019293021, 30.041889254018308 ], [ -95.383048019592522, 30.042032253944857 ], [ -95.383201019460529, 30.042272254315737 ], [ -95.383576019877438, 30.042838254451507 ], [ -95.383884019818396, 30.043338254352665 ], [ -95.384130019966619, 30.043754254474447 ], [ -95.384299019930381, 30.044040254189991 ], [ -95.384467020079043, 30.044336254400058 ], [ -95.384926019907653, 30.045104254366798 ], [ -95.385017019947554, 30.045257254412817 ], [ -95.385199019673408, 30.045540254736665 ], [ -95.385538020541276, 30.046102255198409 ], [ -95.385887020560247, 30.046694255349575 ], [ -95.386318020407401, 30.047426255128524 ], [ -95.386406020044063, 30.047575255217087 ], [ -95.386855020322443, 30.048340254934253 ], [ -95.387133020876163, 30.048831255260929 ], [ -95.387270020940164, 30.04905725579307 ], [ -95.387567021302104, 30.049546255680482 ], [ -95.387804020919305, 30.049936255755675 ], [ -95.387902021073032, 30.050120255479243 ], [ -95.38800702071147, 30.050072255276604 ], [ -95.388377021619306, 30.049937255315307 ], [ -95.38856502089925, 30.049877255181936 ], [ -95.389447021746903, 30.049677255896203 ], [ -95.389551021196141, 30.049647255711346 ], [ -95.389660021285536, 30.049617255304511 ], [ -95.38990802125717, 30.049519255629075 ], [ -95.390064021781612, 30.049444255886122 ], [ -95.390641021538386, 30.049129255564196 ], [ -95.390835022113407, 30.049028255090033 ], [ -95.391496021677028, 30.048657254767864 ], [ -95.392414022141764, 30.048155254945655 ], [ -95.39246802219769, 30.048109255187669 ], [ -95.392414021680068, 30.04802425494475 ], [ -95.392363021710636, 30.047965255425698 ], [ -95.392345021580098, 30.047896254895672 ], [ -95.392218021895303, 30.047652254600042 ], [ -95.392176022111656, 30.047599255056088 ], [ -95.392004022429774, 30.047207254872834 ], [ -95.392272022342382, 30.047121255166434 ], [ -95.39241102186395, 30.047061254806412 ], [ -95.392586021722991, 30.047014254752785 ], [ -95.392857022275223, 30.046921254634974 ], [ -95.392752021670717, 30.0466512544238 ], [ -95.39261802216339, 30.04623825474776 ], [ -95.392537021751664, 30.04594925482262 ], [ -95.392418022086034, 30.045463254427784 ], [ -95.392364021467543, 30.045173254277 ], [ -95.392329022285352, 30.044918254389231 ], [ -95.39229302221581, 30.044546254396042 ], [ -95.392465022347153, 30.044517254479594 ], [ -95.392527022302872, 30.044492254012304 ], [ -95.392594021736372, 30.044477254706415 ], [ -95.392904021914248, 30.044423253998762 ], [ -95.393216021735228, 30.044392254294063 ], [ -95.393635022092639, 30.044368253834815 ], [ -95.394097021910781, 30.044378254302092 ], [ -95.394178022514538, 30.044385253862568 ], [ -95.39441102293155, 30.044403254509582 ], [ -95.39456902262566, 30.044424254541479 ], [ -95.395152022870789, 30.044533253945847 ], [ -95.395269022907442, 30.044557254622681 ], [ -95.395596022831342, 30.044645254019755 ], [ -95.396072022917679, 30.044754254079432 ], [ -95.396183022940576, 30.04477125420998 ], [ -95.396302023028682, 30.044799254576922 ], [ -95.39646702294759, 30.044822254249695 ], [ -95.39654002285728, 30.044825254227717 ], [ -95.396815022781837, 30.044880254297137 ], [ -95.396978023320955, 30.044899254563525 ], [ -95.397322023569231, 30.04494125438022 ], [ -95.397414022843364, 30.044961254210111 ], [ -95.3974980234117, 30.044960254113573 ], [ -95.397932023696484, 30.045004254345795 ], [ -95.398001023798415, 30.045004254457954 ], [ -95.398085023357609, 30.045018253884319 ], [ -95.398170023896299, 30.045018254049175 ], [ -95.398261023966853, 30.045033254217937 ], [ -95.398525023747851, 30.045053254568238 ], [ -95.398879023519243, 30.045066254125526 ], [ -95.399348023979897, 30.045092254325304 ], [ -95.399832023862132, 30.04509325442833 ], [ -95.400170023711183, 30.045033253929223 ], [ -95.40047202351181, 30.044914254490358 ], [ -95.40061202449948, 30.044834254406652 ], [ -95.40077902361719, 30.044753254265313 ], [ -95.401014023719569, 30.044611254028428 ], [ -95.401180023939688, 30.044522254196146 ], [ -95.401276024272008, 30.044480254088203 ], [ -95.40135002465388, 30.044429253670966 ], [ -95.401767024599678, 30.044209254023958 ], [ -95.40182602433859, 30.044168253877906 ], [ -95.402013024280109, 30.044074253649271 ], [ -95.40235302424027, 30.043878254266332 ], [ -95.402592024957968, 30.04374225406681 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1024, "Tract": "48201241105", "Area_SqMi": 0.72285343200433627, "total_2009": 99, "total_2010": 113, "total_2011": 50, "total_2012": 64, "total_2013": 50, "total_2014": 59, "total_2015": 51, "total_2016": 49, "total_2017": 61, "total_2018": 66, "total_2019": 62, "total_2020": 67, "age1": 28, "age2": 62, "age3": 26, "earn1": 42, "earn2": 40, "earn3": 34, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 0, "naics_s06": 0, "naics_s07": 14, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 5, "naics_s13": 0, "naics_s14": 62, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 80, "race2": 26, "race3": 3, "race4": 4, "race5": 0, "race6": 3, "ethnicity1": 82, "ethnicity2": 34, "edu1": 24, "edu2": 28, "edu3": 28, "edu4": 8, "Shape_Length": 20093.043812410433, "Shape_Area": 20151916.5082675, "total_2021": 57, "total_2022": 116 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.374353017926268, 30.049752255925331 ], [ -95.374536017461409, 30.049665256044484 ], [ -95.372209016633974, 30.046143255800594 ], [ -95.370410016462174, 30.043421254447985 ], [ -95.37195401686165, 30.042562254508461 ], [ -95.371905016407766, 30.042491254820689 ], [ -95.371856017050661, 30.042441254649447 ], [ -95.371705016444537, 30.042253254581894 ], [ -95.371659016156954, 30.042209254448721 ], [ -95.371620016079589, 30.042145254320076 ], [ -95.371448016567129, 30.041945254796126 ], [ -95.371276016221927, 30.041723254513961 ], [ -95.371109016524116, 30.041502254594725 ], [ -95.371065015855677, 30.041453254661874 ], [ -95.370960016754353, 30.041319254647021 ], [ -95.370713016537948, 30.041050254073685 ], [ -95.370580016420192, 30.040914254598658 ], [ -95.370402015851312, 30.04075625477979 ], [ -95.370121016403985, 30.040520254671126 ], [ -95.369875015711159, 30.040332253852075 ], [ -95.369751015910765, 30.040246254298943 ], [ -95.369593016102712, 30.040144253863776 ], [ -95.369495015667894, 30.040086254250753 ], [ -95.369393015405493, 30.040020254290916 ], [ -95.369167016189607, 30.039898254262852 ], [ -95.369067016239327, 30.039852254316013 ], [ -95.369008016186783, 30.039816254434342 ], [ -95.368845015846304, 30.039735253781341 ], [ -95.368662015515156, 30.039645254319673 ], [ -95.368452015768, 30.039525254086861 ], [ -95.36831001556439, 30.039431254431001 ], [ -95.368162015916639, 30.039319253765136 ], [ -95.368006015733812, 30.039189253937693 ], [ -95.367865015639765, 30.039054253779703 ], [ -95.367691014826718, 30.038852254226523 ], [ -95.367606014964622, 30.038747254016268 ], [ -95.367326014810928, 30.038363254094637 ], [ -95.36715901491992, 30.038127253947131 ], [ -95.367001015188976, 30.037914253791683 ], [ -95.366934015380153, 30.037811254281259 ], [ -95.366900015154641, 30.037772253987992 ], [ -95.366841014637004, 30.037646253473611 ], [ -95.366807014856732, 30.037548253802125 ], [ -95.366788015240971, 30.03745325373168 ], [ -95.366780014740485, 30.037356253971954 ], [ -95.366782015474229, 30.037301253906399 ], [ -95.366790015039641, 30.037242253310346 ], [ -95.366805014869598, 30.037178253921695 ], [ -95.366826014682644, 30.037112254162114 ], [ -95.366853014639617, 30.037046253262677 ], [ -95.366918015181824, 30.036915253796696 ], [ -95.366948015218, 30.036844253331623 ], [ -95.366972015057243, 30.036773253998732 ], [ -95.366998015348557, 30.036631253519051 ], [ -95.366998015297057, 30.036519253347301 ], [ -95.366983014550684, 30.036422253846329 ], [ -95.366930014638314, 30.036266253789066 ], [ -95.366861015249142, 30.036153253578188 ], [ -95.366769014865213, 30.036021253830953 ], [ -95.366510014460133, 30.035650253389786 ], [ -95.366407014387093, 30.035503253660782 ], [ -95.366069014378752, 30.035031253707654 ], [ -95.365962014805589, 30.034888253081224 ], [ -95.365846014703891, 30.0347242530218 ], [ -95.365791014454658, 30.034645253049774 ], [ -95.364931014717726, 30.035105253708132 ], [ -95.364688014456206, 30.035235253774349 ], [ -95.364581014891499, 30.035304253609613 ], [ -95.364450013983756, 30.035362253098793 ], [ -95.364209014345533, 30.035499253666895 ], [ -95.363336013637252, 30.035956253417414 ], [ -95.362643014113459, 30.036332253527885 ], [ -95.362541013671247, 30.036387253482566 ], [ -95.361959013753875, 30.036712253982198 ], [ -95.361866013284754, 30.036768253476076 ], [ -95.361194013730653, 30.037133253629442 ], [ -95.360799013280896, 30.037343253552901 ], [ -95.360702013498354, 30.037399254063487 ], [ -95.360596013345983, 30.037453254299276 ], [ -95.360158013016488, 30.037702253809858 ], [ -95.360035013842747, 30.037762253872213 ], [ -95.359812013246412, 30.037897254007195 ], [ -95.359678013764409, 30.03795225416852 ], [ -95.359561013159507, 30.038018254254769 ], [ -95.359445013492646, 30.038090253784439 ], [ -95.359308013430748, 30.038143254291477 ], [ -95.358898012668604, 30.038365253832449 ], [ -95.358319012802099, 30.038679254520478 ], [ -95.357755012961505, 30.038999254499139 ], [ -95.357485012493029, 30.039144254755218 ], [ -95.357374012393734, 30.039212254213457 ], [ -95.357154012582257, 30.039335254765501 ], [ -95.357045012932872, 30.039390254961368 ], [ -95.356871013102761, 30.039489254939628 ], [ -95.35665301293237, 30.039603255044113 ], [ -95.356541012700987, 30.039654254447697 ], [ -95.356441013025702, 30.039720254334391 ], [ -95.355972012867099, 30.039985254912189 ], [ -95.355844011993966, 30.040051254998332 ], [ -95.355604011921699, 30.04019025512433 ], [ -95.355075012551339, 30.040482254595062 ], [ -95.354963012048856, 30.040545254423261 ], [ -95.354996011684591, 30.040610254979033 ], [ -95.355011012595668, 30.040634254635698 ], [ -95.355063012697926, 30.04071725459676 ], [ -95.355617012259216, 30.041480255168672 ], [ -95.356198012303409, 30.042274255237025 ], [ -95.356476012635682, 30.042653254765817 ], [ -95.356963013102501, 30.043251255209757 ], [ -95.357045012476775, 30.043355255679266 ], [ -95.358092013081304, 30.044788255221679 ], [ -95.358192013039911, 30.044891255241023 ], [ -95.358244013095288, 30.044936255744599 ], [ -95.358298012973975, 30.044974255808693 ], [ -95.358453013018078, 30.045049255893719 ], [ -95.358879013297539, 30.045221255420024 ], [ -95.359650013862094, 30.045524255718512 ], [ -95.359670013434069, 30.045531255491191 ], [ -95.359874013266705, 30.045602255973385 ], [ -95.360011013318328, 30.04565725542226 ], [ -95.360105013257098, 30.045681255982494 ], [ -95.360195013288177, 30.045698255996324 ], [ -95.360256013737001, 30.045704255947566 ], [ -95.360294013762186, 30.045708255572844 ], [ -95.360441013624992, 30.045705255414351 ], [ -95.360611013861003, 30.045657255927686 ], [ -95.360707013914734, 30.045620255761445 ], [ -95.360926013426251, 30.045466255545016 ], [ -95.36104301377668, 30.045393255591119 ], [ -95.361101013865664, 30.045469256040324 ], [ -95.361146013602749, 30.04553925605714 ], [ -95.361512013742839, 30.045992255946725 ], [ -95.361557014124401, 30.046043255503331 ], [ -95.361652013984354, 30.046169256057556 ], [ -95.361776013743551, 30.046361256107982 ], [ -95.362200014024907, 30.046928256293583 ], [ -95.362401014106126, 30.047204255868131 ], [ -95.362681014641254, 30.047557256381424 ], [ -95.363177014318921, 30.048200255970201 ], [ -95.363519015111834, 30.048642256362694 ], [ -95.363561015089886, 30.048704255869133 ], [ -95.363674014726101, 30.048846256302244 ], [ -95.364016014402551, 30.049306256295409 ], [ -95.364163015330291, 30.049487256155341 ], [ -95.364638015533089, 30.050124256733842 ], [ -95.364685015347121, 30.050204256791655 ], [ -95.36474001546506, 30.050255256638394 ], [ -95.365031015679207, 30.050632256184208 ], [ -95.365054014852532, 30.050684256863011 ], [ -95.365089015092266, 30.050711256575163 ], [ -95.365120015362024, 30.050759256783678 ], [ -95.365138015632951, 30.050787256154713 ], [ -95.365160015310849, 30.050849256563851 ], [ -95.365209015403067, 30.05087925689352 ], [ -95.365431014818157, 30.051153256626794 ], [ -95.365593015316591, 30.051365256946674 ], [ -95.365989015949367, 30.051871256504345 ], [ -95.366087015347873, 30.052007256547025 ], [ -95.366122015461443, 30.05204525661971 ], [ -95.366275015130427, 30.052264256713876 ], [ -95.36657601562969, 30.052644256632696 ], [ -95.366980016310322, 30.053168257120145 ], [ -95.367065016334124, 30.053289256918919 ], [ -95.367518016285345, 30.053032257222881 ], [ -95.367835015572339, 30.052859257219698 ], [ -95.368044016441786, 30.052739257294135 ], [ -95.368611015868581, 30.052428256456587 ], [ -95.36876101643432, 30.052356257122362 ], [ -95.368918016076734, 30.05229125670246 ], [ -95.368961016496669, 30.052278257006325 ], [ -95.369086016824895, 30.052242256426158 ], [ -95.369837016997806, 30.052088256829631 ], [ -95.370782017161702, 30.051888256248649 ], [ -95.370965016411446, 30.05185525618414 ], [ -95.371092016589685, 30.051840256664445 ], [ -95.37098201696493, 30.051415256786139 ], [ -95.371161017120968, 30.051381256735013 ], [ -95.371370016584876, 30.051332256844091 ], [ -95.37152301677375, 30.051279256285166 ], [ -95.371670017251731, 30.051212256109658 ], [ -95.372137016616222, 30.050963255910627 ], [ -95.372428017362779, 30.050802256347687 ], [ -95.37264201729171, 30.050693255964614 ], [ -95.372741017306367, 30.050636256648591 ], [ -95.372944017592673, 30.0505282559186 ], [ -95.373030017274786, 30.050474255907655 ], [ -95.373242017484088, 30.050368255858245 ], [ -95.373410017180731, 30.050272256498353 ], [ -95.373474017495269, 30.050231256308628 ], [ -95.373626017373752, 30.050149256287881 ], [ -95.373710017657132, 30.050110256041773 ], [ -95.373997017678946, 30.049947256110361 ], [ -95.374172017159154, 30.049845255689991 ], [ -95.374353017926268, 30.049752255925331 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1025, "Tract": "48201554809", "Area_SqMi": 2.9156038376457492, "total_2009": 449, "total_2010": 525, "total_2011": 270, "total_2012": 143, "total_2013": 178, "total_2014": 334, "total_2015": 369, "total_2016": 420, "total_2017": 423, "total_2018": 459, "total_2019": 870, "total_2020": 849, "age1": 394, "age2": 463, "age3": 179, "earn1": 263, "earn2": 365, "earn3": 408, "naics_s01": 0, "naics_s02": 0, "naics_s03": 7, "naics_s04": 16, "naics_s05": 25, "naics_s06": 9, "naics_s07": 470, "naics_s08": 2, "naics_s09": 3, "naics_s10": 24, "naics_s11": 79, "naics_s12": 96, "naics_s13": 0, "naics_s14": 154, "naics_s15": 1, "naics_s16": 97, "naics_s17": 2, "naics_s18": 46, "naics_s19": 5, "naics_s20": 0, "race1": 807, "race2": 139, "race3": 9, "race4": 53, "race5": 1, "race6": 27, "ethnicity1": 713, "ethnicity2": 323, "edu1": 153, "edu2": 185, "edu3": 169, "edu4": 135, "Shape_Length": 62532.327986412383, "Shape_Area": 81282044.887723505, "total_2021": 961, "total_2022": 1036 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.592095073346286, 30.06057525065836 ], [ -95.592164073285034, 30.06059225100481 ], [ -95.589942072602611, 30.05674724951594 ], [ -95.588860072337127, 30.054754249712644 ], [ -95.588795073166708, 30.054618249523308 ], [ -95.588750073069193, 30.0545392498009 ], [ -95.588682072848329, 30.054421249222656 ], [ -95.58841707234599, 30.053967249125705 ], [ -95.586840072439117, 30.051251249085627 ], [ -95.586778071534013, 30.051143248966095 ], [ -95.586719072367615, 30.051040249253877 ], [ -95.586525071808381, 30.051041248958974 ], [ -95.58512807181603, 30.051045249104284 ], [ -95.584623071499479, 30.051078248910052 ], [ -95.583998071372605, 30.051155249358082 ], [ -95.583648071312837, 30.051221249360964 ], [ -95.583308071016361, 30.051297249119223 ], [ -95.582946070926866, 30.051407249318107 ], [ -95.582677070535823, 30.051489249443421 ], [ -95.582404070959683, 30.051590249422791 ], [ -95.582173071148802, 30.051676249186706 ], [ -95.581910070475544, 30.051785248890283 ], [ -95.581307070363607, 30.052070249706929 ], [ -95.580857070956114, 30.052301249292878 ], [ -95.580364070582192, 30.052586249236683 ], [ -95.579849070670534, 30.052925249221925 ], [ -95.579432070014903, 30.053243249487213 ], [ -95.579202070308227, 30.053441249515334 ], [ -95.578784069882374, 30.053841249855576 ], [ -95.57848207005901, 30.053597249357331 ], [ -95.578226069397843, 30.053390249776506 ], [ -95.577644069311745, 30.052843249230136 ], [ -95.577445069919122, 30.052226249438306 ], [ -95.577382070101578, 30.051536249192818 ], [ -95.577528069519431, 30.051234249615796 ], [ -95.577738069839128, 30.050804248821056 ], [ -95.577781069809191, 30.050647248896148 ], [ -95.577902070150344, 30.050211249513481 ], [ -95.578317069639809, 30.048961248937246 ], [ -95.578277069797977, 30.047910248310338 ], [ -95.578018069698047, 30.047105248756669 ], [ -95.577879069634918, 30.046987248148962 ], [ -95.577623069640794, 30.046668248296438 ], [ -95.57727206894296, 30.046305248599218 ], [ -95.576899069543444, 30.046017248634026 ], [ -95.576493068632445, 30.045706247814195 ], [ -95.576187068583849, 30.045371248078563 ], [ -95.575974069181953, 30.045066248241977 ], [ -95.575761068721135, 30.044655247908754 ], [ -95.575639068763707, 30.044274247655746 ], [ -95.575606068603989, 30.043798247952463 ], [ -95.575593069028102, 30.043086247384238 ], [ -95.575499068231267, 30.039664246878441 ], [ -95.575522068087892, 30.039147246908176 ], [ -95.575486068689699, 30.038811247199117 ], [ -95.575444068288448, 30.038500246414667 ], [ -95.575396068354635, 30.038213246388104 ], [ -95.575305068472304, 30.037878246454255 ], [ -95.57490106861195, 30.037104246456515 ], [ -95.574864068590216, 30.036991246044419 ], [ -95.574757068638974, 30.036735246607822 ], [ -95.574534068235607, 30.036343245968233 ], [ -95.574014067593154, 30.035679246271663 ], [ -95.573692067497959, 30.035360246088452 ], [ -95.573332067453606, 30.035051246374568 ], [ -95.572648067263202, 30.034588246244173 ], [ -95.571818067467618, 30.034170245770952 ], [ -95.571208066698105, 30.033922246107334 ], [ -95.570924066708073, 30.03382324581834 ], [ -95.570658066637876, 30.03374724613559 ], [ -95.570277066565779, 30.033664245645401 ], [ -95.569670067009483, 30.033536245858393 ], [ -95.569215066646052, 30.033446245680391 ], [ -95.568744066117176, 30.033350245930741 ], [ -95.568653066179351, 30.033338246019113 ], [ -95.568551066704856, 30.033315245673531 ], [ -95.568259065997296, 30.033270245517741 ], [ -95.56817206617248, 30.033269245617173 ], [ -95.567981066469926, 30.033252246239268 ], [ -95.567786065883311, 30.033243245601671 ], [ -95.567503066355343, 30.033241246023383 ], [ -95.567276065848887, 30.033249246072682 ], [ -95.567125066254334, 30.033231245642583 ], [ -95.567099065691011, 30.032991245532749 ], [ -95.566995066024134, 30.032366245685125 ], [ -95.566902066408929, 30.032086246058459 ], [ -95.56680706604368, 30.031874245939495 ], [ -95.566733065654418, 30.0317102460636 ], [ -95.566646065683599, 30.031557245381226 ], [ -95.56653406622921, 30.031385245419763 ], [ -95.566467066101211, 30.03129724586239 ], [ -95.566331066229324, 30.031138245451292 ], [ -95.565748065966332, 30.030519245729934 ], [ -95.565554066059249, 30.030337245402222 ], [ -95.565391065641862, 30.030201245511993 ], [ -95.565309065478218, 30.030126245673394 ], [ -95.565050065079902, 30.029908245753393 ], [ -95.564884065384362, 30.029761245043975 ], [ -95.564734065529976, 30.029614245220628 ], [ -95.564608065804237, 30.029474245228688 ], [ -95.564509064833032, 30.029348245216301 ], [ -95.564405065284845, 30.029194244977244 ], [ -95.564255065479159, 30.028944245429258 ], [ -95.564029065176129, 30.028488245296174 ], [ -95.563923065042346, 30.028299245150158 ], [ -95.56381106507483, 30.028124245146522 ], [ -95.56319706449635, 30.027289244705582 ], [ -95.563109064471959, 30.027155244912532 ], [ -95.563087064546409, 30.027121244720366 ], [ -95.562946064720137, 30.027198245064064 ], [ -95.562044064524002, 30.027671244643194 ], [ -95.561991064363426, 30.027706244796146 ], [ -95.56195606508436, 30.027729245007144 ], [ -95.560548064470098, 30.028551245448643 ], [ -95.56022406402441, 30.028729245453487 ], [ -95.558924064073224, 30.029445245631511 ], [ -95.558801063356555, 30.029525245143613 ], [ -95.558678063416167, 30.029592245221927 ], [ -95.558167063362518, 30.029877245433958 ], [ -95.557743063879968, 30.030126245330138 ], [ -95.557710063347571, 30.030151246063841 ], [ -95.557375063149166, 30.030404245989942 ], [ -95.557320063854661, 30.030454245756058 ], [ -95.557289063092213, 30.0304822453352 ], [ -95.557169063682863, 30.030605246191627 ], [ -95.55710906385589, 30.030653245870077 ], [ -95.557061063215514, 30.030726245688101 ], [ -95.556996063588855, 30.030806245972862 ], [ -95.556906063314983, 30.030930245434789 ], [ -95.556079063676592, 30.032077245968885 ], [ -95.555826063540636, 30.032416246065154 ], [ -95.555762062710187, 30.032529245798337 ], [ -95.555691063282922, 30.03263124640926 ], [ -95.55561806297878, 30.032725246086788 ], [ -95.555557062804255, 30.032822246527282 ], [ -95.555526063652863, 30.032866246044751 ], [ -95.555360063137798, 30.033095246784335 ], [ -95.555312063032289, 30.033162246779852 ], [ -95.556211062964991, 30.033756246488643 ], [ -95.55671606314796, 30.03398424611688 ], [ -95.5568720640332, 30.034042246321693 ], [ -95.557013063360117, 30.034096246370989 ], [ -95.557355063795058, 30.03420824632364 ], [ -95.557889063741612, 30.034467246618277 ], [ -95.558559063791691, 30.034804246303899 ], [ -95.558872064451847, 30.035047246360762 ], [ -95.559150064504053, 30.035281246363787 ], [ -95.561298064814935, 30.037093247373907 ], [ -95.562071064814774, 30.038043247107737 ], [ -95.562234064862196, 30.038304246865003 ], [ -95.562361064859346, 30.038543247508109 ], [ -95.562566065402251, 30.039010247486452 ], [ -95.562687065673558, 30.039490247528846 ], [ -95.562816065041289, 30.040045247229127 ], [ -95.562824065563618, 30.040189247210176 ], [ -95.563079065383917, 30.044628248234424 ], [ -95.563427065917992, 30.047002248908488 ], [ -95.563662066199058, 30.047337249122737 ], [ -95.564023065524864, 30.047851249330648 ], [ -95.56453206636354, 30.048501248938717 ], [ -95.565231066304463, 30.04911024901595 ], [ -95.565886066688535, 30.049764249417802 ], [ -95.566408066863843, 30.050103249746694 ], [ -95.567228067043189, 30.051081249186275 ], [ -95.567849067039703, 30.052241250170589 ], [ -95.567930067683534, 30.052391249519655 ], [ -95.568771067098865, 30.053392249923899 ], [ -95.569362067519407, 30.053863250135024 ], [ -95.569859067748069, 30.054140250568516 ], [ -95.570565068252606, 30.054464250361647 ], [ -95.570952068160835, 30.054610250183302 ], [ -95.571270068417405, 30.05473025017789 ], [ -95.572312068471987, 30.054954249789208 ], [ -95.573017068584221, 30.05499025055007 ], [ -95.574286069071135, 30.055241250125611 ], [ -95.574983069400204, 30.055528250043601 ], [ -95.575236069531712, 30.055632249972685 ], [ -95.575962069486138, 30.056043250436719 ], [ -95.57628906976241, 30.056228250313467 ], [ -95.574777069666212, 30.057709250347393 ], [ -95.574417068661987, 30.058062250406579 ], [ -95.573737068625064, 30.058676250756164 ], [ -95.573167068578826, 30.059136251103347 ], [ -95.570338067765562, 30.061482251601635 ], [ -95.569768068647164, 30.061965251509292 ], [ -95.565745066940735, 30.065374252960858 ], [ -95.564572066988632, 30.066503253040008 ], [ -95.564461067247009, 30.066614253135871 ], [ -95.564188066490217, 30.066887252879923 ], [ -95.563586067238546, 30.0675462527925 ], [ -95.562781066995129, 30.068484253434598 ], [ -95.562368066636594, 30.068965253334159 ], [ -95.561457065903298, 30.070025253192728 ], [ -95.560820065875831, 30.070767253752603 ], [ -95.560638065707465, 30.070969253972972 ], [ -95.560541066255894, 30.071095253544218 ], [ -95.559675065959439, 30.072069254511177 ], [ -95.55861106633354, 30.073286254092196 ], [ -95.558412066144157, 30.073522254846708 ], [ -95.557964065409152, 30.07405325425751 ], [ -95.557711065376552, 30.07434925502956 ], [ -95.55750406581376, 30.074591254501666 ], [ -95.557307065822471, 30.07479925514755 ], [ -95.557043065830101, 30.075018255265398 ], [ -95.556768065124587, 30.075221254654249 ], [ -95.556732065654273, 30.075247255014077 ], [ -95.5569470650059, 30.075404255015219 ], [ -95.557248065293493, 30.075623255145949 ], [ -95.558506065837832, 30.076710254820647 ], [ -95.559264065828131, 30.077335255206151 ], [ -95.561503066588713, 30.079207255600988 ], [ -95.561584066518321, 30.079274255144455 ], [ -95.561676067316384, 30.07935725530626 ], [ -95.564063067099042, 30.081489255790267 ], [ -95.56412006790228, 30.081540255838483 ], [ -95.564173067388808, 30.081587255590414 ], [ -95.56425806728501, 30.081663256302793 ], [ -95.564282068040711, 30.081684255919537 ], [ -95.564392067536133, 30.081793256384046 ], [ -95.565072067759729, 30.082470256364147 ], [ -95.56513706780521, 30.082200256176467 ], [ -95.56523206814397, 30.081985256061085 ], [ -95.565428067906709, 30.081628256193092 ], [ -95.565636067950109, 30.08134825557616 ], [ -95.566066067770535, 30.080958255950605 ], [ -95.566186067801382, 30.080837255441665 ], [ -95.566205067642144, 30.080716255417574 ], [ -95.566231068546415, 30.080683255340478 ], [ -95.566294068568041, 30.080639255355756 ], [ -95.566540068349767, 30.080540256065309 ], [ -95.56681206827588, 30.080507255931657 ], [ -95.566919068009156, 30.080485255618733 ], [ -95.56700206849284, 30.080435255242179 ], [ -95.567122068310454, 30.080298255749813 ], [ -95.567235068791774, 30.080111255321633 ], [ -95.567375068522551, 30.079940255531763 ], [ -95.567887068545488, 30.079495255609825 ], [ -95.567981068863944, 30.079424255725304 ], [ -95.568209068093282, 30.07929725515309 ], [ -95.568721068158524, 30.078978255497919 ], [ -95.568797068198421, 30.07894525492997 ], [ -95.568923068879641, 30.078923255178442 ], [ -95.568961069196916, 30.078934254798003 ], [ -95.569005068936292, 30.078962254962747 ], [ -95.569087068832616, 30.079050255494785 ], [ -95.569132068556911, 30.079077254964179 ], [ -95.569258068764569, 30.079099254794315 ], [ -95.569384069251399, 30.07909925546096 ], [ -95.569612069379119, 30.078989255252029 ], [ -95.569701068652634, 30.078923254728871 ], [ -95.569922069156092, 30.078703255233879 ], [ -95.569972068873184, 30.078621254971786 ], [ -95.570402069472848, 30.077389255132118 ], [ -95.570440069476277, 30.077318254483501 ], [ -95.570446068662974, 30.077208255190421 ], [ -95.570440068672028, 30.077126254782922 ], [ -95.570301069128817, 30.076889254997951 ], [ -95.570168068908231, 30.076482254897197 ], [ -95.570136068539725, 30.076449254368438 ], [ -95.570073068618584, 30.076400254430826 ], [ -95.569896069199828, 30.076350254555496 ], [ -95.569852068495166, 30.076290254644956 ], [ -95.569808068715915, 30.076252254715911 ], [ -95.569782068879618, 30.076246254650609 ], [ -95.569738068788538, 30.076252254639865 ], [ -95.569593068643343, 30.076312254873116 ], [ -95.569454068414473, 30.076323254689928 ], [ -95.569397068430632, 30.076318254962946 ], [ -95.569346068277156, 30.076290254921972 ], [ -95.569308068825293, 30.076246254529298 ], [ -95.56922006870056, 30.076092254346353 ], [ -95.569201068409456, 30.076037255048728 ], [ -95.569220068868447, 30.075883254537434 ], [ -95.569296068762995, 30.075619254799665 ], [ -95.569485068622029, 30.075048254447058 ], [ -95.569675068694764, 30.074778254766304 ], [ -95.569750068641994, 30.074734254354439 ], [ -95.56997206844305, 30.074718253874881 ], [ -95.570313069022305, 30.074734253955139 ], [ -95.570673069412948, 30.074773254091472 ], [ -95.570875069520184, 30.074751254559214 ], [ -95.571122068557727, 30.074696254544293 ], [ -95.571331069318234, 30.074685254189053 ], [ -95.571381069233695, 30.074696254178868 ], [ -95.571546069375742, 30.074773253890516 ], [ -95.571596069489772, 30.074800254689269 ], [ -95.571628068806731, 30.074833253963025 ], [ -95.571691069335415, 30.074866254142187 ], [ -95.571773069250057, 30.074866254199769 ], [ -95.571817069430708, 30.07484425448256 ], [ -95.571862069750495, 30.074806254100952 ], [ -95.571931068983446, 30.074624253950084 ], [ -95.571994069472737, 30.07450925414652 ], [ -95.572013069390366, 30.07445425405696 ], [ -95.57202606969264, 30.074388254411243 ], [ -95.572019069086167, 30.074327253749402 ], [ -95.57204506959593, 30.074228254415882 ], [ -95.572133068977621, 30.074096253949939 ], [ -95.572203069437293, 30.074030253793602 ], [ -95.572266068884574, 30.073986253764318 ], [ -95.572418069048865, 30.07390425413557 ], [ -95.572708069485742, 30.073629254036224 ], [ -95.572797069706084, 30.073514254275398 ], [ -95.572891069225506, 30.073305253828082 ], [ -95.572904068938385, 30.073222254085369 ], [ -95.572898069907808, 30.073145253729493 ], [ -95.572910069461443, 30.072980253811611 ], [ -95.572929069123262, 30.072903253588866 ], [ -95.572967068994956, 30.072821254002402 ], [ -95.573169069989802, 30.072502254035197 ], [ -95.573555069369831, 30.072007253611872 ], [ -95.573656069539737, 30.071914253181703 ], [ -95.573707069331434, 30.071881253485191 ], [ -95.573782069960757, 30.071853253592664 ], [ -95.573921069724861, 30.071859253943153 ], [ -95.574105070076257, 30.071897253899571 ], [ -95.574206070217869, 30.071908253908926 ], [ -95.574275070237789, 30.071903253332096 ], [ -95.574446069591716, 30.071853253680239 ], [ -95.574522070000754, 30.071804253600842 ], [ -95.574598070180627, 30.071738253484536 ], [ -95.574667069999109, 30.071655253656967 ], [ -95.574718069647133, 30.07161725358495 ], [ -95.574889069796797, 30.071529253426746 ], [ -95.575122069853748, 30.071358253351377 ], [ -95.575204070396012, 30.071276253261633 ], [ -95.575255069475801, 30.071133253038582 ], [ -95.575280070038232, 30.070814252967196 ], [ -95.57527406971505, 30.070600253615055 ], [ -95.575002069420535, 30.070072253209212 ], [ -95.574970070083481, 30.069968252869085 ], [ -95.574983069926915, 30.069913252877335 ], [ -95.575027069456709, 30.069847253028957 ], [ -95.575147070036081, 30.069731252758455 ], [ -95.575299069722803, 30.069649252658294 ], [ -95.575495070052852, 30.069539253321132 ], [ -95.575811070285155, 30.069473252827947 ], [ -95.576114070507501, 30.069445252597369 ], [ -95.576291069748635, 30.06935225279214 ], [ -95.57646807070708, 30.069187252814288 ], [ -95.576853069877473, 30.068692252760034 ], [ -95.577068070794738, 30.068192253099916 ], [ -95.577169069900719, 30.068104252756832 ], [ -95.577207070523613, 30.068082252884061 ], [ -95.577296069890679, 30.068043252851112 ], [ -95.577372070636599, 30.068032253014263 ], [ -95.577479070301067, 30.068049252709962 ], [ -95.577643070482893, 30.068148252318991 ], [ -95.577770070652363, 30.068181252872055 ], [ -95.577915070424041, 30.068175253064837 ], [ -95.578086070781836, 30.068137252552699 ], [ -95.578604071109652, 30.067922252449311 ], [ -95.579129070584571, 30.06776325250501 ], [ -95.579280070924966, 30.067614252369552 ], [ -95.579369070961732, 30.067268252875508 ], [ -95.579602070698968, 30.066509252438212 ], [ -95.57962707111669, 30.066465252316281 ], [ -95.57976007055953, 30.06630625206661 ], [ -95.580392070558489, 30.065915252427768 ], [ -95.580455071296356, 30.065899252291199 ], [ -95.580588070819104, 30.065888252157713 ], [ -95.58082207120701, 30.065970252524107 ], [ -95.58122607112476, 30.066190252350818 ], [ -95.581346071398428, 30.066190252059954 ], [ -95.581422071282645, 30.066174251757015 ], [ -95.58148607169494, 30.066124252204059 ], [ -95.581587071492592, 30.065959252269231 ], [ -95.581700071550856, 30.065739252388422 ], [ -95.581991071632245, 30.06533225177413 ], [ -95.582092071473554, 30.065255252349804 ], [ -95.582212071891902, 30.065239252222021 ], [ -95.582743071869373, 30.065217252060496 ], [ -95.58297707189314, 30.06515125233603 ], [ -95.583040071285865, 30.065123251877548 ], [ -95.583097072079013, 30.065085252334939 ], [ -95.583141071257501, 30.065030251692193 ], [ -95.583438072087176, 30.064414251689829 ], [ -95.583444072119235, 30.064354251678065 ], [ -95.58343807136518, 30.064310251680098 ], [ -95.583413071649062, 30.064260251611422 ], [ -95.583362072023107, 30.064205251302507 ], [ -95.583292071874979, 30.064156251747125 ], [ -95.582559071530426, 30.063716251719018 ], [ -95.582490071384044, 30.063628251856588 ], [ -95.582471071454023, 30.063568251599296 ], [ -95.582471071854499, 30.063474251565051 ], [ -95.582483071213517, 30.063441251585036 ], [ -95.582635071539229, 30.063238251464657 ], [ -95.582648071283387, 30.063194251626566 ], [ -95.582603071316782, 30.062793251672655 ], [ -95.582521071549039, 30.062595251505613 ], [ -95.58253407100554, 30.062518251634195 ], [ -95.582761071826894, 30.062072250980158 ], [ -95.58285607170734, 30.061776251656415 ], [ -95.582875071189832, 30.061743250893528 ], [ -95.583279072028901, 30.061341250951511 ], [ -95.583431071423121, 30.061242250885851 ], [ -95.583646071451469, 30.061176250934281 ], [ -95.583728071494733, 30.061160251188834 ], [ -95.583797072000166, 30.061160251335409 ], [ -95.583949071509423, 30.061182250821009 ], [ -95.584176071523274, 30.061237250973683 ], [ -95.584271072327155, 30.061215250962128 ], [ -95.584518071634733, 30.061022251335675 ], [ -95.584581071992105, 30.060989251110342 ], [ -95.584650072271188, 30.060962250792635 ], [ -95.584821071500627, 30.060956251008335 ], [ -95.585023072449147, 30.061006250817048 ], [ -95.585061072003668, 30.061022250583704 ], [ -95.58531407198376, 30.061286250677437 ], [ -95.585371072562566, 30.061335251140132 ], [ -95.585497071743987, 30.061412250812559 ], [ -95.585567071688402, 30.061434251078161 ], [ -95.585668072629417, 30.061451250899193 ], [ -95.586022072083026, 30.061478250977167 ], [ -95.586079072498123, 30.061489251108313 ], [ -95.5863700719364, 30.061698251217049 ], [ -95.586540072116151, 30.061709250924419 ], [ -95.58674907257128, 30.061687250728344 ], [ -95.586938072259329, 30.061632251358311 ], [ -95.587039072528228, 30.061588251020165 ], [ -95.587336072114951, 30.061384250615625 ], [ -95.587538072949769, 30.061313251093338 ], [ -95.587734073108024, 30.061302250558089 ], [ -95.587823072821934, 30.061313250938959 ], [ -95.587880072605145, 30.061329251190852 ], [ -95.588430073102657, 30.061681251045524 ], [ -95.588512073292989, 30.061730251082377 ], [ -95.588600073042926, 30.061769250814912 ], [ -95.589049072647796, 30.061862251421235 ], [ -95.589144073216332, 30.061873250666228 ], [ -95.589346073415271, 30.061868251098794 ], [ -95.589377073627816, 30.061865250719922 ], [ -95.589447073240422, 30.061857250748723 ], [ -95.589586073245115, 30.061791250648536 ], [ -95.589637072860853, 30.061752251362066 ], [ -95.59024307287055, 30.06141725067291 ], [ -95.590288072920458, 30.061378250570723 ], [ -95.5903250735131, 30.061329250601261 ], [ -95.590490073455996, 30.061015250457199 ], [ -95.590578073088238, 30.060916250787344 ], [ -95.59096707398092, 30.060742250383544 ], [ -95.591096073862914, 30.060685250533371 ], [ -95.591260073132233, 30.060559251043244 ], [ -95.591343073591702, 30.060520250417966 ], [ -95.591425073817703, 30.060504250535665 ], [ -95.591557073876572, 30.060493250493607 ], [ -95.591911073244262, 30.060570250422661 ], [ -95.592095073346286, 30.06057525065836 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1026, "Tract": "48201532302", "Area_SqMi": 1.4906001179024493, "total_2009": 6587, "total_2010": 6492, "total_2011": 6788, "total_2012": 6873, "total_2013": 7366, "total_2014": 7735, "total_2015": 8135, "total_2016": 8095, "total_2017": 7813, "total_2018": 7736, "total_2019": 7593, "total_2020": 7564, "age1": 1967, "age2": 3981, "age3": 1519, "earn1": 1028, "earn2": 1955, "earn3": 4484, "naics_s01": 0, "naics_s02": 31, "naics_s03": 4, "naics_s04": 290, "naics_s05": 549, "naics_s06": 1639, "naics_s07": 191, "naics_s08": 86, "naics_s09": 111, "naics_s10": 149, "naics_s11": 209, "naics_s12": 1449, "naics_s13": 0, "naics_s14": 981, "naics_s15": 19, "naics_s16": 162, "naics_s17": 10, "naics_s18": 945, "naics_s19": 360, "naics_s20": 282, "race1": 5689, "race2": 1219, "race3": 66, "race4": 365, "race5": 5, "race6": 123, "ethnicity1": 5028, "ethnicity2": 2439, "edu1": 1246, "edu2": 1473, "edu3": 1598, "edu4": 1183, "Shape_Length": 27723.660746607147, "Shape_Area": 41555380.099521548, "total_2021": 7024, "total_2022": 7467 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.506849042770284, 29.865606213674539 ], [ -95.506904043273778, 29.864796213788644 ], [ -95.506788043132346, 29.86423721364098 ], [ -95.506690043484539, 29.863765213137846 ], [ -95.506670043463515, 29.863669213649153 ], [ -95.50648604268433, 29.863388213141317 ], [ -95.505924042519112, 29.86253921330006 ], [ -95.505591042314038, 29.862056213142225 ], [ -95.505420042787222, 29.861737213127739 ], [ -95.505058042818888, 29.860977212763125 ], [ -95.505028041989888, 29.860903213332836 ], [ -95.504881042089735, 29.860421212972337 ], [ -95.504852041921993, 29.859964212399042 ], [ -95.504851042023262, 29.859486212875552 ], [ -95.504850042731192, 29.859303212789627 ], [ -95.504956042679694, 29.858708212503899 ], [ -95.505132041975898, 29.857941212488775 ], [ -95.505400042573868, 29.856914212642813 ], [ -95.505391042386066, 29.855946211605367 ], [ -95.505390042431628, 29.855865211582408 ], [ -95.505353042662492, 29.855733212186244 ], [ -95.505217042650216, 29.855317212339777 ], [ -95.505159042274556, 29.855138211971298 ], [ -95.505082041827507, 29.854902212224363 ], [ -95.504870041649667, 29.854209211741288 ], [ -95.504857042525444, 29.854166212053546 ], [ -95.504719042475912, 29.85361421177728 ], [ -95.504678041999895, 29.853263211330216 ], [ -95.50465504177366, 29.852226211427372 ], [ -95.504665042121871, 29.851791211641636 ], [ -95.504654042246571, 29.851597211223083 ], [ -95.504772041566071, 29.850767211046449 ], [ -95.504782042401828, 29.85072921090428 ], [ -95.504872041535293, 29.850368211208917 ], [ -95.504960041987502, 29.850013210449326 ], [ -95.505310042301431, 29.84922421050646 ], [ -95.505419041546844, 29.849017210703014 ], [ -95.505479041845149, 29.848903210951885 ], [ -95.505520041969987, 29.848826210586193 ], [ -95.50528604197568, 29.848692210751182 ], [ -95.501984040770282, 29.846826210104357 ], [ -95.497446039424105, 29.844256210002385 ], [ -95.496679039370548, 29.8438302101269 ], [ -95.496374039465579, 29.843669209529128 ], [ -95.494800039486464, 29.842774209522464 ], [ -95.493911038628852, 29.842241209793823 ], [ -95.493150038087691, 29.841748209877327 ], [ -95.492740038468199, 29.841431209629 ], [ -95.492547037933605, 29.841432209568595 ], [ -95.492384038011451, 29.841435209729134 ], [ -95.492025038157891, 29.841443209350395 ], [ -95.491100038085648, 29.841462209369578 ], [ -95.490954038355625, 29.841465209414803 ], [ -95.490871037716957, 29.841466209402729 ], [ -95.490228037268153, 29.841475209389948 ], [ -95.489974037690757, 29.841474209336429 ], [ -95.489889037635237, 29.841464209450301 ], [ -95.489407038037683, 29.841462209411631 ], [ -95.488875037424847, 29.841486209940769 ], [ -95.488862037275794, 29.842320209797347 ], [ -95.488855037819079, 29.843132210022265 ], [ -95.488854037755758, 29.843953210049158 ], [ -95.488857037292945, 29.84475221041701 ], [ -95.488860037569808, 29.845357210472468 ], [ -95.488860038068665, 29.845462210890268 ], [ -95.488861037589288, 29.845597210623939 ], [ -95.488864037823703, 29.846427210937861 ], [ -95.488870038055055, 29.847252210561614 ], [ -95.488869037197773, 29.848087210894551 ], [ -95.488874038253797, 29.848916211403477 ], [ -95.488883038053658, 29.849764211718014 ], [ -95.488892037501813, 29.850577211116725 ], [ -95.488893038137945, 29.850841211412085 ], [ -95.488894037926812, 29.85103821150545 ], [ -95.488887037661215, 29.851221212015247 ], [ -95.488876037965994, 29.851347211526768 ], [ -95.488852037433318, 29.851634212071115 ], [ -95.488706038189733, 29.85249921192192 ], [ -95.488683038148167, 29.853262212087895 ], [ -95.488660037413069, 29.8541032123123 ], [ -95.488700037794331, 29.855117212848231 ], [ -95.48870203788961, 29.855635212621809 ], [ -95.488696038268614, 29.856781212411754 ], [ -95.488698038097922, 29.857882212962508 ], [ -95.488633038051915, 29.860490213891893 ], [ -95.488510037720303, 29.861051213781284 ], [ -95.48844403796474, 29.861303213695152 ], [ -95.488305038343199, 29.861662213338153 ], [ -95.488231038300782, 29.86182321359842 ], [ -95.487753037901157, 29.86274621357628 ], [ -95.486974038458271, 29.864373213981874 ], [ -95.486831038151124, 29.864863214171738 ], [ -95.486779037943293, 29.865757214204535 ], [ -95.488621038161568, 29.865740214687836 ], [ -95.489631038399608, 29.86574321409562 ], [ -95.490866039047646, 29.865722214827283 ], [ -95.490995038602108, 29.865721214452787 ], [ -95.491344038816379, 29.865720214445965 ], [ -95.491655039078395, 29.865723214720667 ], [ -95.491719038790848, 29.865722214133367 ], [ -95.491807039281795, 29.865721214800185 ], [ -95.493498039324194, 29.86570521406993 ], [ -95.494287039504002, 29.865698214014625 ], [ -95.494438039491669, 29.865699214131503 ], [ -95.494922039771382, 29.865702214760653 ], [ -95.49607104026822, 29.865694214230562 ], [ -95.500192041014017, 29.865670214383581 ], [ -95.502114041994389, 29.865650214012827 ], [ -95.502312042216573, 29.865648213866514 ], [ -95.503473042245886, 29.865644214101508 ], [ -95.506849042770284, 29.865606213674539 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1027, "Tract": "48201411506", "Area_SqMi": 0.14460567663635515, "total_2009": 32678, "total_2010": 42974, "total_2011": 35464, "total_2012": 34298, "total_2013": 33281, "total_2014": 33617, "total_2015": 34533, "total_2016": 35511, "total_2017": 35057, "total_2018": 32995, "total_2019": 32169, "total_2020": 31749, "age1": 3533, "age2": 14494, "age3": 7021, "earn1": 1575, "earn2": 7793, "earn3": 15679, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 22, "naics_s07": 646, "naics_s08": 0, "naics_s09": 201, "naics_s10": 165, "naics_s11": 173, "naics_s12": 72, "naics_s13": 5, "naics_s14": 12, "naics_s15": 23232, "naics_s16": 27, "naics_s17": 31, "naics_s18": 412, "naics_s19": 47, "naics_s20": 0, "race1": 13628, "race2": 9599, "race3": 209, "race4": 1197, "race5": 30, "race6": 383, "ethnicity1": 15820, "ethnicity2": 9228, "edu1": 4328, "edu2": 4929, "edu3": 6235, "edu4": 6023, "Shape_Length": 9858.8273296308234, "Shape_Area": 4031358.7695325161, "total_2021": 24560, "total_2022": 25048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.441613020521814, 29.738211190234072 ], [ -95.44154502021614, 29.736094190092786 ], [ -95.441543021081529, 29.735707189300093 ], [ -95.441544020999487, 29.73558919002371 ], [ -95.441540020408681, 29.735294189748814 ], [ -95.441528020660428, 29.734476189371865 ], [ -95.441513020898824, 29.733648188924089 ], [ -95.441478020194964, 29.732650188656002 ], [ -95.441468020250042, 29.731721188747986 ], [ -95.441461020576142, 29.730695188457084 ], [ -95.441445020414463, 29.729709188329551 ], [ -95.441439019875773, 29.729299188261297 ], [ -95.441430019901375, 29.729013188642533 ], [ -95.441214019870429, 29.729017188193353 ], [ -95.44048301982906, 29.729030188213066 ], [ -95.440445019920645, 29.729020187984567 ], [ -95.436354018669817, 29.729218188050016 ], [ -95.436358019028503, 29.729386188940531 ], [ -95.436373018659793, 29.729938188948527 ], [ -95.436396018577526, 29.73081818844226 ], [ -95.436391019032342, 29.732099188761836 ], [ -95.436382018981618, 29.732714189067654 ], [ -95.438445019213958, 29.732692189514296 ], [ -95.438460020055572, 29.733156189385937 ], [ -95.438487020227484, 29.73399918899598 ], [ -95.438497019999573, 29.734290189754073 ], [ -95.438499019734934, 29.73437918980656 ], [ -95.438503020058974, 29.734477189274326 ], [ -95.438507020209215, 29.734610189245185 ], [ -95.438510019589728, 29.734705189647105 ], [ -95.438517019366344, 29.734910189419601 ], [ -95.43852201952501, 29.735070189140963 ], [ -95.438546019801151, 29.735366189934098 ], [ -95.438558019338103, 29.736195189872195 ], [ -95.438572019952232, 29.736647189839349 ], [ -95.43857501999149, 29.736748190156241 ], [ -95.438625020238931, 29.73825919058762 ], [ -95.438848019628594, 29.738255190296471 ], [ -95.440015020400693, 29.738236190616625 ], [ -95.441613020521814, 29.738211190234072 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1028, "Tract": "48201350104", "Area_SqMi": 2.1960328926053543, "total_2009": 48, "total_2010": 70, "total_2011": 98, "total_2012": 140, "total_2013": 158, "total_2014": 460, "total_2015": 335, "total_2016": 485, "total_2017": 509, "total_2018": 530, "total_2019": 679, "total_2020": 743, "age1": 376, "age2": 355, "age3": 102, "earn1": 232, "earn2": 339, "earn3": 262, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 2, "naics_s05": 126, "naics_s06": 2, "naics_s07": 228, "naics_s08": 3, "naics_s09": 130, "naics_s10": 32, "naics_s11": 5, "naics_s12": 18, "naics_s13": 5, "naics_s14": 34, "naics_s15": 5, "naics_s16": 57, "naics_s17": 4, "naics_s18": 159, "naics_s19": 19, "naics_s20": 0, "race1": 589, "race2": 152, "race3": 7, "race4": 66, "race5": 0, "race6": 19, "ethnicity1": 492, "ethnicity2": 341, "edu1": 132, "edu2": 123, "edu3": 125, "edu4": 77, "Shape_Length": 50626.852008170637, "Shape_Area": 61221638.497978099, "total_2021": 688, "total_2022": 833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.286431974445946, 29.599299166511891 ], [ -95.286499974307617, 29.59789116620253 ], [ -95.286173974186042, 29.597836166688587 ], [ -95.285695974079474, 29.597654166571147 ], [ -95.285556974840148, 29.597700166403484 ], [ -95.285278974175924, 29.597907166363711 ], [ -95.285084974433516, 29.597955166274815 ], [ -95.284903974833284, 29.597964166344223 ], [ -95.284754974735108, 29.597932166649006 ], [ -95.284602974800606, 29.597872166709447 ], [ -95.284516974000141, 29.597813166465734 ], [ -95.284397974461427, 29.597719166349208 ], [ -95.284282973881318, 29.597643166490712 ], [ -95.284148973939338, 29.597595166692816 ], [ -95.283963974200205, 29.597576166485034 ], [ -95.283896973628316, 29.597598166123689 ], [ -95.283774974511857, 29.597649166242906 ], [ -95.283627974350679, 29.597690166416523 ], [ -95.283464974200939, 29.597716166382295 ], [ -95.283131974157413, 29.597751167013385 ], [ -95.282955973477613, 29.597758166585749 ], [ -95.282815973966024, 29.597754166369189 ], [ -95.282579973861303, 29.597687166476845 ], [ -95.282494973278716, 29.597632166485553 ], [ -95.282314974055794, 29.597560166738059 ], [ -95.281880973973401, 29.597326166198915 ], [ -95.281771973198161, 29.5972571663075 ], [ -95.281718973593854, 29.597223166174455 ], [ -95.281595973206436, 29.597036166312641 ], [ -95.281550973115245, 29.596863166511437 ], [ -95.281513973953636, 29.596811166554289 ], [ -95.281421973355407, 29.596684166649851 ], [ -95.281192973246718, 29.596521166133449 ], [ -95.280786973542533, 29.596256166042647 ], [ -95.280640973656958, 29.596058166050685 ], [ -95.280522973485503, 29.595893166303007 ], [ -95.280466973594244, 29.595788166757089 ], [ -95.280393972849637, 29.595713165984222 ], [ -95.280250973314878, 29.595526166496754 ], [ -95.280109972609125, 29.595450166572171 ], [ -95.279858972607258, 29.595426166571681 ], [ -95.279824972857682, 29.595420166679677 ], [ -95.279761973449098, 29.595417166183331 ], [ -95.279224972859254, 29.595439165939318 ], [ -95.278979972807178, 29.595432166115824 ], [ -95.278839972893707, 29.595453166256608 ], [ -95.278724972940353, 29.595499166718486 ], [ -95.278394972804534, 29.595628166680779 ], [ -95.277919972301632, 29.595960166373811 ], [ -95.277896972315446, 29.595964166434054 ], [ -95.277878972200611, 29.5959661661464 ], [ -95.277832972505294, 29.595973166035566 ], [ -95.277755972582199, 29.595985166532664 ], [ -95.277596972119653, 29.596058166371101 ], [ -95.277553972169699, 29.596090166701828 ], [ -95.277494972725052, 29.596128166365464 ], [ -95.277436972758849, 29.596134166877015 ], [ -95.277362972852586, 29.596111166158902 ], [ -95.277292972123391, 29.596067166424355 ], [ -95.277228972343607, 29.596006166496444 ], [ -95.277200972575258, 29.595986166421795 ], [ -95.277137972141944, 29.595909166341716 ], [ -95.277099971830253, 29.59577616622531 ], [ -95.277081972170151, 29.595711166352313 ], [ -95.277071971746551, 29.595623166447158 ], [ -95.277054972302537, 29.595419166321765 ], [ -95.27704697187248, 29.595381166343991 ], [ -95.277011972647472, 29.595222166304616 ], [ -95.276856971920282, 29.594968166182124 ], [ -95.276782971929805, 29.594909166153233 ], [ -95.276664971839637, 29.594859166590659 ], [ -95.276463972540782, 29.594853166549818 ], [ -95.276316972477119, 29.594854166066057 ], [ -95.275848971622636, 29.594862165938956 ], [ -95.275706972149578, 29.594886166476755 ], [ -95.275489971515086, 29.594937166349979 ], [ -95.275218971299893, 29.595118166225628 ], [ -95.27505597175039, 29.595171166437247 ], [ -95.274939971733687, 29.595206166797787 ], [ -95.274926971367393, 29.595210166761266 ], [ -95.274744971311762, 29.595155165970851 ], [ -95.274666971153408, 29.595132166064595 ], [ -95.274521971691513, 29.595065166304252 ], [ -95.274374971990454, 29.594997166418871 ], [ -95.274335971291222, 29.594948166128876 ], [ -95.274158971108008, 29.594725166193058 ], [ -95.273998971785929, 29.594523166660704 ], [ -95.273804971705658, 29.594404166297846 ], [ -95.27366997103509, 29.594393165869782 ], [ -95.273555971496876, 29.594417165943248 ], [ -95.273450970823347, 29.594495165944249 ], [ -95.273406971552788, 29.594578166546039 ], [ -95.273344971019995, 29.594699166093918 ], [ -95.273272971502522, 29.594837166168869 ], [ -95.273239971530955, 29.594897166514688 ], [ -95.273206971063118, 29.594936166676121 ], [ -95.273183970915326, 29.594963166529681 ], [ -95.272860971430461, 29.595085166841042 ], [ -95.272822971434962, 29.595083166528763 ], [ -95.272586970586275, 29.595033166828813 ], [ -95.272280970706134, 29.594569166657323 ], [ -95.272143971101585, 29.594428166649916 ], [ -95.272117971176343, 29.594390166626948 ], [ -95.271973970708828, 29.594318166368783 ], [ -95.271834971082015, 29.594291166417001 ], [ -95.271677970955722, 29.594280166502134 ], [ -95.271638971057641, 29.594276166416542 ], [ -95.271592971207369, 29.594272166207364 ], [ -95.271456970426826, 29.59428716674249 ], [ -95.271072970180398, 29.59442916678233 ], [ -95.2708399709731, 29.594556166183889 ], [ -95.270595970799732, 29.594659166378335 ], [ -95.270425970751631, 29.594714166686515 ], [ -95.270219969966078, 29.594727166488646 ], [ -95.269773970150112, 29.594631166561655 ], [ -95.269596970091385, 29.594552166330747 ], [ -95.269445969865131, 29.594400165957275 ], [ -95.269363970500891, 29.594315166587478 ], [ -95.269333969724727, 29.594284166115305 ], [ -95.269259970559546, 29.594207166801759 ], [ -95.269201969972443, 29.594159166062752 ], [ -95.269038970029186, 29.594023166302129 ], [ -95.268978970351597, 29.593988166778413 ], [ -95.268965970089013, 29.593983165957923 ], [ -95.268841969824209, 29.593912166029479 ], [ -95.268635969703126, 29.593862166403543 ], [ -95.268336969451497, 29.593858166051039 ], [ -95.268197969748101, 29.593849166309607 ], [ -95.268047970105457, 29.593839166245495 ], [ -95.267870969481478, 29.593843166002195 ], [ -95.267576969562455, 29.593847166232834 ], [ -95.267420969259931, 29.593904166539556 ], [ -95.267291970079071, 29.594020166040021 ], [ -95.267223970065004, 29.594205166089484 ], [ -95.267199969824119, 29.594321166057068 ], [ -95.267117969258308, 29.594447166548942 ], [ -95.266931970104721, 29.594577166149993 ], [ -95.266680969270922, 29.594652166195402 ], [ -95.266459969362785, 29.594659166356308 ], [ -95.266333969588189, 29.594640166905457 ], [ -95.26624796946831, 29.59462816689101 ], [ -95.266082969132839, 29.594607166864723 ], [ -95.266048968933816, 29.5946021663617 ], [ -95.265898968964265, 29.594530166219752 ], [ -95.265610968838089, 29.594248166050882 ], [ -95.26540996934321, 29.594116166136306 ], [ -95.265338969040684, 29.594100166325951 ], [ -95.264941969292366, 29.594012166694821 ], [ -95.264476968549985, 29.593959166047362 ], [ -95.263914968530599, 29.59392416692361 ], [ -95.263579968270363, 29.59386316673486 ], [ -95.262830969022957, 29.593621166667742 ], [ -95.262653968446756, 29.593564166504905 ], [ -95.26209496843552, 29.593402166016325 ], [ -95.26199396792947, 29.593371166758402 ], [ -95.261921968469323, 29.593351166068093 ], [ -95.261612967937438, 29.593162166053517 ], [ -95.2614719677685, 29.593049166500158 ], [ -95.261301967996161, 29.592796165921513 ], [ -95.26116996840139, 29.59254416672799 ], [ -95.261029967574331, 29.592145165883686 ], [ -95.260991967483278, 29.59203616590122 ], [ -95.260887968277871, 29.591741166507067 ], [ -95.260899967630309, 29.591488166496276 ], [ -95.261027967914202, 29.591038165875137 ], [ -95.261043967796837, 29.590828165535232 ], [ -95.261017968238235, 29.590777165659549 ], [ -95.260982968120686, 29.590703166250009 ], [ -95.260949968302128, 29.590651166350568 ], [ -95.260575967369221, 29.590429166237225 ], [ -95.260402968052276, 29.590267166005148 ], [ -95.260400967278301, 29.590168166108654 ], [ -95.260404967706179, 29.590073166082171 ], [ -95.260299967560982, 29.59000316569885 ], [ -95.260298967677912, 29.589888165762787 ], [ -95.260316967672139, 29.589795165792978 ], [ -95.260377967404366, 29.589633166091176 ], [ -95.260502968141466, 29.589491165515145 ], [ -95.260963967590456, 29.589359165778209 ], [ -95.261087967700917, 29.589324165542493 ], [ -95.261279968406328, 29.58919316545386 ], [ -95.261521967933533, 29.588030165176267 ], [ -95.262140967897963, 29.587140164915652 ], [ -95.262167968267036, 29.586926164803316 ], [ -95.262129967798117, 29.586714165013991 ], [ -95.261969968014313, 29.586462165400455 ], [ -95.261384968266867, 29.585958164872373 ], [ -95.261164967975105, 29.58569916459043 ], [ -95.261120967546304, 29.585524164896515 ], [ -95.261190967269144, 29.584989165127542 ], [ -95.261067968128145, 29.584539164739923 ], [ -95.260822967974633, 29.58430016454588 ], [ -95.260350967206634, 29.584081164561571 ], [ -95.26020296739425, 29.583956165007958 ], [ -95.260159967857845, 29.583855164640237 ], [ -95.260546967251159, 29.581970163693896 ], [ -95.260667967401318, 29.581824163965035 ], [ -95.261078967984488, 29.581529163853876 ], [ -95.261194967174347, 29.581188164263203 ], [ -95.261160967213996, 29.581085164298475 ], [ -95.260703967859641, 29.580676164337408 ], [ -95.260432966963123, 29.58036016401612 ], [ -95.260206967557693, 29.579659163908694 ], [ -95.259884966715248, 29.579123163456284 ], [ -95.259494966738671, 29.578615163462068 ], [ -95.258961966864788, 29.578168163843813 ], [ -95.25893896704558, 29.578127163748324 ], [ -95.25880196658315, 29.577880163689954 ], [ -95.258781966836523, 29.576876163513287 ], [ -95.258869966636667, 29.576715163171507 ], [ -95.25927996719102, 29.576444163392679 ], [ -95.259391966751721, 29.576370163448345 ], [ -95.259625966452646, 29.575990162867829 ], [ -95.259672966770864, 29.575853162901705 ], [ -95.259737966917029, 29.574961162539228 ], [ -95.25967296675725, 29.57442816250655 ], [ -95.258947966966346, 29.573650162606423 ], [ -95.258784966538613, 29.573400162648166 ], [ -95.258683966148141, 29.573291161973643 ], [ -95.258599966263887, 29.573366162146936 ], [ -95.258132966618163, 29.573788162615969 ], [ -95.257943966500306, 29.573979162817736 ], [ -95.257491966578939, 29.574442162429865 ], [ -95.257203966089691, 29.574900163136068 ], [ -95.2569029662166, 29.57538416293842 ], [ -95.256496966000199, 29.57586816339002 ], [ -95.25621996603364, 29.576133163484421 ], [ -95.255881965701192, 29.576457163476658 ], [ -95.252942965074553, 29.579138163889954 ], [ -95.252310965217063, 29.579715163919833 ], [ -95.251014964656662, 29.581023164389254 ], [ -95.250527965045791, 29.581749164824007 ], [ -95.250517965292048, 29.581763164887494 ], [ -95.250497964705161, 29.581793164543257 ], [ -95.250452965140795, 29.581860164368578 ], [ -95.250206964600835, 29.582199164877654 ], [ -95.249863964718315, 29.582672164771726 ], [ -95.24945196464202, 29.583123164817074 ], [ -95.249019964043825, 29.583496165133322 ], [ -95.248227963834609, 29.5840391654001 ], [ -95.247442964324307, 29.584392165403301 ], [ -95.246481963654432, 29.584700164890606 ], [ -95.245866963792579, 29.584824165376162 ], [ -95.245002963773501, 29.584889165440231 ], [ -95.244345963906582, 29.584867165522667 ], [ -95.244218963601341, 29.584856165464444 ], [ -95.244166963505933, 29.58485116569604 ], [ -95.243857963658826, 29.584824164960633 ], [ -95.243170963036263, 29.584725165439373 ], [ -95.24244496311681, 29.584549165473977 ], [ -95.241537963131748, 29.584420165398779 ], [ -95.241430962334732, 29.584405164913036 ], [ -95.241190962450773, 29.584392165564072 ], [ -95.240965962907239, 29.584381165335923 ], [ -95.240684962210963, 29.584393165120414 ], [ -95.239976962322913, 29.584408165074674 ], [ -95.23868896234552, 29.584437165557613 ], [ -95.237957961699266, 29.58452516522097 ], [ -95.236948961333042, 29.584774165799836 ], [ -95.235146960777158, 29.585460165257835 ], [ -95.235465961337383, 29.586021166143901 ], [ -95.236054960940507, 29.58677216612579 ], [ -95.236827961283012, 29.587473166337652 ], [ -95.237081961171924, 29.587680165755138 ], [ -95.237358962062132, 29.587906166142748 ], [ -95.238200961671311, 29.588604166088512 ], [ -95.238767962122353, 29.589074166241062 ], [ -95.239219962337984, 29.589450166625614 ], [ -95.23936596275243, 29.589571165985618 ], [ -95.239693962290261, 29.589841166222374 ], [ -95.240007962150401, 29.590098166246182 ], [ -95.24025896288552, 29.590305166919798 ], [ -95.240266962074671, 29.5903121667981 ], [ -95.240371962890663, 29.5903981662515 ], [ -95.240650962459682, 29.590627166495501 ], [ -95.241102962882451, 29.590998166966969 ], [ -95.243078962983247, 29.592598167316098 ], [ -95.243190963403208, 29.592692166925648 ], [ -95.243269963806483, 29.592758166610569 ], [ -95.243361963701034, 29.592835167350213 ], [ -95.244913963797174, 29.594138167072721 ], [ -95.24494996428416, 29.594168167189988 ], [ -95.245420963709293, 29.594713167410895 ], [ -95.245898964524997, 29.595457167002579 ], [ -95.246411964105917, 29.595205167529198 ], [ -95.248665964557105, 29.597033167265067 ], [ -95.249206965349146, 29.597460167867339 ], [ -95.249267965089047, 29.597509167881153 ], [ -95.249320965575549, 29.597551167668723 ], [ -95.25031096534039, 29.598337168203557 ], [ -95.24912196561975, 29.599399168460337 ], [ -95.248608965666293, 29.599858167955503 ], [ -95.248204964616036, 29.600219168745522 ], [ -95.247863964942027, 29.600565168052398 ], [ -95.24781296541839, 29.600617168598024 ], [ -95.247883965357133, 29.600612168314992 ], [ -95.249676964975237, 29.600559168189921 ], [ -95.252971966513954, 29.600464168437171 ], [ -95.254870966444159, 29.600438168052854 ], [ -95.259230968306355, 29.600353168153934 ], [ -95.263618969099269, 29.600304167418535 ], [ -95.266122969801955, 29.600283167336141 ], [ -95.26633296950601, 29.600276167318473 ], [ -95.266334969806366, 29.600410167310841 ], [ -95.266342969662432, 29.600793168257656 ], [ -95.266321969979259, 29.601632168370326 ], [ -95.266405969735885, 29.601634167870415 ], [ -95.266457969963668, 29.601636167972849 ], [ -95.26648797001279, 29.601635168165135 ], [ -95.266644969986032, 29.601632168017414 ], [ -95.271373970703294, 29.601538168045366 ], [ -95.273528971946945, 29.601498168131268 ], [ -95.277772972454372, 29.601421167651541 ], [ -95.277877972230215, 29.601438167993624 ], [ -95.277971972707164, 29.601486167847202 ], [ -95.278026972302399, 29.601557167282593 ], [ -95.27805597262099, 29.601656167178305 ], [ -95.278048972807625, 29.602856167438194 ], [ -95.278051972745132, 29.602923168114078 ], [ -95.278075973320881, 29.602975167497473 ], [ -95.278143973364863, 29.603014167628398 ], [ -95.278171972391192, 29.603018167493389 ], [ -95.278232973163071, 29.603026168263202 ], [ -95.281395973558901, 29.602968167697686 ], [ -95.281701973915489, 29.60296216799161 ], [ -95.284535974669353, 29.602909167561467 ], [ -95.286152974409163, 29.602912168024911 ], [ -95.286271974587493, 29.601390166929672 ], [ -95.286362975094079, 29.600647167093587 ], [ -95.286387975280761, 29.600233166982839 ], [ -95.286395975150384, 29.600112166799509 ], [ -95.286419975184046, 29.599714166736359 ], [ -95.286431974445946, 29.599299166511891 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1029, "Tract": "48201551601", "Area_SqMi": 0.53105032274892883, "total_2009": 976, "total_2010": 968, "total_2011": 1249, "total_2012": 1069, "total_2013": 1103, "total_2014": 1254, "total_2015": 1381, "total_2016": 1356, "total_2017": 1554, "total_2018": 1626, "total_2019": 1396, "total_2020": 1502, "age1": 329, "age2": 1069, "age3": 374, "earn1": 106, "earn2": 374, "earn3": 1292, "naics_s01": 6, "naics_s02": 296, "naics_s03": 0, "naics_s04": 203, "naics_s05": 286, "naics_s06": 454, "naics_s07": 91, "naics_s08": 35, "naics_s09": 70, "naics_s10": 45, "naics_s11": 0, "naics_s12": 122, "naics_s13": 1, "naics_s14": 38, "naics_s15": 0, "naics_s16": 48, "naics_s17": 10, "naics_s18": 36, "naics_s19": 31, "naics_s20": 0, "race1": 1404, "race2": 190, "race3": 17, "race4": 126, "race5": 5, "race6": 30, "ethnicity1": 1275, "ethnicity2": 497, "edu1": 281, "edu2": 394, "edu3": 430, "edu4": 338, "Shape_Length": 16134.679632626892, "Shape_Area": 14804774.096529054, "total_2021": 1313, "total_2022": 1772 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.565865060817288, 29.927225224681585 ], [ -95.565894060839483, 29.927166224314838 ], [ -95.565510061373686, 29.927029224745027 ], [ -95.565203060900188, 29.926931224388564 ], [ -95.565183061201481, 29.926924223989936 ], [ -95.565095060678331, 29.926900224498304 ], [ -95.564917060500733, 29.926851224667924 ], [ -95.564639060544891, 29.926788224204557 ], [ -95.564360060258579, 29.926737224364935 ], [ -95.563952060086535, 29.926680224825979 ], [ -95.563698060486942, 29.926654224093522 ], [ -95.563472059927037, 29.926642224737318 ], [ -95.563120060396813, 29.92663622404099 ], [ -95.562803060665161, 29.926638224665545 ], [ -95.562355060455062, 29.926635224157394 ], [ -95.562036060331025, 29.926624224290666 ], [ -95.561879059867863, 29.926612224116383 ], [ -95.561570059923483, 29.9265792244768 ], [ -95.561269060199336, 29.926533224393744 ], [ -95.560976059546007, 29.926476224899368 ], [ -95.560693059832886, 29.926410224194715 ], [ -95.560420059152889, 29.926333224891017 ], [ -95.560165059099404, 29.926250224787225 ], [ -95.559932058916601, 29.926165224709983 ], [ -95.559626059521278, 29.926039224663931 ], [ -95.559345059071333, 29.925901224127323 ], [ -95.559115059627743, 29.9257872248034 ], [ -95.557680059097862, 29.925056224024576 ], [ -95.556957058114037, 29.924688224399457 ], [ -95.556269058532379, 29.924352224272248 ], [ -95.555992058351436, 29.924225223984841 ], [ -95.55573805862943, 29.924123224441193 ], [ -95.5555040577797, 29.924047223722354 ], [ -95.555053058161519, 29.923931224400668 ], [ -95.554853057681783, 29.923880223794701 ], [ -95.554783057629393, 29.923991224038978 ], [ -95.554676057868917, 29.924170224258415 ], [ -95.554345057693396, 29.924599224214798 ], [ -95.554073057390553, 29.924952224691918 ], [ -95.553512057416398, 29.925519224653556 ], [ -95.552980057191192, 29.925955224988069 ], [ -95.55226005732429, 29.926467224754369 ], [ -95.552233057538146, 29.926486224576205 ], [ -95.551719056969262, 29.926768225120025 ], [ -95.551653057631327, 29.926796225283915 ], [ -95.55055105713376, 29.927270225010322 ], [ -95.547902056751056, 29.928356225494792 ], [ -95.547897056631825, 29.928501225187301 ], [ -95.547892056793501, 29.928647224937009 ], [ -95.547887056935465, 29.928800225076444 ], [ -95.547901056070401, 29.929270225433324 ], [ -95.547903056327868, 29.929658225693373 ], [ -95.547905056838459, 29.930214225437521 ], [ -95.547910056791849, 29.930758225727313 ], [ -95.547909056173751, 29.931153225729162 ], [ -95.547919056497918, 29.932106226491893 ], [ -95.547921057161901, 29.933094226235273 ], [ -95.547930056353664, 29.933203226313822 ], [ -95.547949057093945, 29.933293226212861 ], [ -95.547981056290539, 29.933378226150314 ], [ -95.548027057056501, 29.933458226640447 ], [ -95.548086056506961, 29.933530226083118 ], [ -95.548156057113687, 29.933592226236829 ], [ -95.548237057274292, 29.9336422260312 ], [ -95.548326056534677, 29.933682226025891 ], [ -95.548426056924271, 29.933712226678072 ], [ -95.548537056544689, 29.933729225945186 ], [ -95.548659057210628, 29.933736226720164 ], [ -95.550506057771074, 29.933732226047471 ], [ -95.55053005767121, 29.933732226322686 ], [ -95.551378057142799, 29.933731226696601 ], [ -95.551632057166955, 29.933731226340736 ], [ -95.551927057696531, 29.93373022622842 ], [ -95.552496057378377, 29.933727226182043 ], [ -95.553002057574218, 29.933725226161354 ], [ -95.553389058241962, 29.93372322587981 ], [ -95.553827058604227, 29.933721225962273 ], [ -95.554738058661812, 29.933719225792125 ], [ -95.554926058149562, 29.933723225889203 ], [ -95.555707058543646, 29.93371822568032 ], [ -95.556047059107101, 29.93371622573294 ], [ -95.556254058630984, 29.933715226488822 ], [ -95.557088059123416, 29.933712225986866 ], [ -95.559841059673928, 29.93370322606896 ], [ -95.560339059752437, 29.933701226243787 ], [ -95.562317060871067, 29.933694225489052 ], [ -95.563307060526625, 29.933700225811865 ], [ -95.56390506038224, 29.933698225865047 ], [ -95.564383060939662, 29.933698225404566 ], [ -95.564445060465388, 29.933698225485664 ], [ -95.564512060964688, 29.933698226265697 ], [ -95.564523060883474, 29.933698226184351 ], [ -95.56452106126639, 29.932011225832234 ], [ -95.564517060728562, 29.931690225140123 ], [ -95.564515060574877, 29.931379225582866 ], [ -95.56451806120964, 29.930926225679233 ], [ -95.56454406093539, 29.930572225592385 ], [ -95.564582060943565, 29.930301225524495 ], [ -95.564644060964497, 29.93000822476559 ], [ -95.56472606104154, 29.929718225111664 ], [ -95.564766060834444, 29.929594225127527 ], [ -95.564861061137577, 29.92932322511512 ], [ -95.564981061325099, 29.929049224711036 ], [ -95.565549060745838, 29.927866224297897 ], [ -95.565599060762466, 29.927763224681797 ], [ -95.565704060445924, 29.927551224829561 ], [ -95.56585806118558, 29.927240224196211 ], [ -95.565865060817288, 29.927225224681585 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1030, "Tract": "48201411504", "Area_SqMi": 0.35986436329812449, "total_2009": 23912, "total_2010": 23960, "total_2011": 22856, "total_2012": 22515, "total_2013": 23044, "total_2014": 24053, "total_2015": 23794, "total_2016": 24930, "total_2017": 22720, "total_2018": 22432, "total_2019": 23187, "total_2020": 23674, "age1": 4610, "age2": 16352, "age3": 5344, "earn1": 2184, "earn2": 4225, "earn3": 19897, "naics_s01": 2, "naics_s02": 2691, "naics_s03": 915, "naics_s04": 1172, "naics_s05": 583, "naics_s06": 1021, "naics_s07": 135, "naics_s08": 712, "naics_s09": 346, "naics_s10": 2994, "naics_s11": 1196, "naics_s12": 5096, "naics_s13": 1477, "naics_s14": 3632, "naics_s15": 2457, "naics_s16": 730, "naics_s17": 300, "naics_s18": 498, "naics_s19": 348, "naics_s20": 1, "race1": 19385, "race2": 3917, "race3": 209, "race4": 2310, "race5": 51, "race6": 434, "ethnicity1": 18904, "ethnicity2": 7402, "edu1": 3738, "edu2": 4846, "edu3": 6140, "edu4": 6972, "Shape_Length": 13681.807037688544, "Shape_Area": 10032402.53473839, "total_2021": 24231, "total_2022": 26306 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436657019610422, 29.741565191421131 ], [ -95.436587019375111, 29.738378190494174 ], [ -95.436626019102917, 29.738267190166539 ], [ -95.436599019625689, 29.737385189729199 ], [ -95.4365970190116, 29.73732019038663 ], [ -95.436548019542712, 29.736002189999613 ], [ -95.436544019014178, 29.735887189822929 ], [ -95.43653401882564, 29.73561918948975 ], [ -95.436447019657493, 29.73405618934493 ], [ -95.436406018867871, 29.733307189283458 ], [ -95.436382018981618, 29.732714189067654 ], [ -95.436391019032342, 29.732099188761836 ], [ -95.436396018577526, 29.73081818844226 ], [ -95.436373018659793, 29.729938188948527 ], [ -95.436358019028503, 29.729386188940531 ], [ -95.436354018669817, 29.729218188050016 ], [ -95.433503018370189, 29.729357188654827 ], [ -95.433388018326013, 29.72936318857106 ], [ -95.432887018299482, 29.729387188586557 ], [ -95.431698017478368, 29.729499188464352 ], [ -95.428907017094389, 29.72993118863716 ], [ -95.428350017236312, 29.730018189302648 ], [ -95.428155017134543, 29.730049189272453 ], [ -95.428206016459853, 29.730303189255906 ], [ -95.428341017025716, 29.730828188719268 ], [ -95.428471016612832, 29.731374189476675 ], [ -95.428667017346967, 29.732128189257722 ], [ -95.428948017424091, 29.732938189739269 ], [ -95.429272017792798, 29.733871189965114 ], [ -95.429601017819849, 29.734853189497052 ], [ -95.429739017172835, 29.735288190181993 ], [ -95.429769017208841, 29.735439190280864 ], [ -95.429786017185293, 29.735571189565352 ], [ -95.429801017682522, 29.735690189627757 ], [ -95.429822017240568, 29.735857190454272 ], [ -95.429887017782846, 29.736323190571799 ], [ -95.42997701766491, 29.738342190980163 ], [ -95.43003301811035, 29.741410190730235 ], [ -95.430036017952844, 29.74207319088724 ], [ -95.431444018407987, 29.742063191251102 ], [ -95.431923018532075, 29.742034191525889 ], [ -95.432629018718117, 29.741928191317371 ], [ -95.4330990190074, 29.741820191023034 ], [ -95.433809019031216, 29.741670190996221 ], [ -95.434399019029655, 29.741551190671622 ], [ -95.435282018906676, 29.741521190778585 ], [ -95.436075019410538, 29.741546190798893 ], [ -95.436657019610422, 29.741565191421131 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1031, "Tract": "48201411505", "Area_SqMi": 0.32934501187157622, "total_2009": 4648, "total_2010": 4922, "total_2011": 4807, "total_2012": 4715, "total_2013": 4728, "total_2014": 4830, "total_2015": 4692, "total_2016": 4694, "total_2017": 4797, "total_2018": 4605, "total_2019": 4752, "total_2020": 5515, "age1": 1029, "age2": 2610, "age3": 937, "earn1": 542, "earn2": 1073, "earn3": 2961, "naics_s01": 2, "naics_s02": 226, "naics_s03": 0, "naics_s04": 41, "naics_s05": 302, "naics_s06": 65, "naics_s07": 947, "naics_s08": 7, "naics_s09": 359, "naics_s10": 151, "naics_s11": 81, "naics_s12": 845, "naics_s13": 10, "naics_s14": 552, "naics_s15": 2, "naics_s16": 805, "naics_s17": 6, "naics_s18": 82, "naics_s19": 93, "naics_s20": 0, "race1": 3456, "race2": 609, "race3": 33, "race4": 400, "race5": 4, "race6": 74, "ethnicity1": 3105, "ethnicity2": 1471, "edu1": 592, "edu2": 820, "edu3": 1054, "edu4": 1081, "Shape_Length": 13003.955833056463, "Shape_Area": 9181575.2513582297, "total_2021": 5381, "total_2022": 4576 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.448166022627262, 29.741635190607202 ], [ -95.448101022851063, 29.73814219031788 ], [ -95.447968021851821, 29.732498188940419 ], [ -95.447933022275564, 29.73030018822028 ], [ -95.44793202201889, 29.730051188549979 ], [ -95.44746802179948, 29.729958188415971 ], [ -95.447326022106068, 29.729935187802166 ], [ -95.445884021828675, 29.72965818845864 ], [ -95.444855020944374, 29.729421187820488 ], [ -95.44300602068634, 29.729137188338044 ], [ -95.441624020087133, 29.729009188360656 ], [ -95.441430019901375, 29.729013188642533 ], [ -95.441439019875773, 29.729299188261297 ], [ -95.441445020414463, 29.729709188329551 ], [ -95.441461020576142, 29.730695188457084 ], [ -95.441468020250042, 29.731721188747986 ], [ -95.441478020194964, 29.732650188656002 ], [ -95.441513020898824, 29.733648188924089 ], [ -95.441528020660428, 29.734476189371865 ], [ -95.441540020408681, 29.735294189748814 ], [ -95.441544020999487, 29.73558919002371 ], [ -95.441543021081529, 29.735707189300093 ], [ -95.44154502021614, 29.736094190092786 ], [ -95.441613020521814, 29.738211190234072 ], [ -95.441618021231506, 29.739462190555393 ], [ -95.441636020813974, 29.739658190867495 ], [ -95.441643021154078, 29.740441190414945 ], [ -95.441670020900204, 29.741735190879783 ], [ -95.445493022333892, 29.741705190331992 ], [ -95.447355022587658, 29.741679190800092 ], [ -95.448166022627262, 29.741635190607202 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1032, "Tract": "48201220702", "Area_SqMi": 0.8054789559485287, "total_2009": 253, "total_2010": 292, "total_2011": 379, "total_2012": 529, "total_2013": 422, "total_2014": 337, "total_2015": 307, "total_2016": 180, "total_2017": 185, "total_2018": 173, "total_2019": 187, "total_2020": 188, "age1": 27, "age2": 71, "age3": 27, "earn1": 39, "earn2": 54, "earn3": 32, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 62, "naics_s06": 2, "naics_s07": 15, "naics_s08": 0, "naics_s09": 0, "naics_s10": 2, "naics_s11": 8, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 34, "naics_s19": 0, "naics_s20": 0, "race1": 77, "race2": 16, "race3": 4, "race4": 27, "race5": 1, "race6": 0, "ethnicity1": 73, "ethnicity2": 52, "edu1": 36, "edu2": 23, "edu3": 17, "edu4": 22, "Shape_Length": 21356.154084663103, "Shape_Area": 22455374.700834032, "total_2021": 99, "total_2022": 125 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.356109002380791, 29.821906209723526 ], [ -95.356101002514592, 29.821541210077303 ], [ -95.356044002392281, 29.821137210018094 ], [ -95.356043002887901, 29.821121210392658 ], [ -95.35594700258433, 29.820622210160195 ], [ -95.355838002098778, 29.820250210093594 ], [ -95.355704001864055, 29.819905209353653 ], [ -95.355642002721495, 29.819791209573577 ], [ -95.355593002401349, 29.819701209926599 ], [ -95.355333002277575, 29.819707210132314 ], [ -95.354679001847003, 29.81972420964248 ], [ -95.352380001331511, 29.819737210231164 ], [ -95.352090001197709, 29.81974420953927 ], [ -95.350631000937582, 29.819734209803023 ], [ -95.349260000191492, 29.819775210115136 ], [ -95.348354000698848, 29.819800209815135 ], [ -95.348074000237361, 29.819809210413631 ], [ -95.347750000338394, 29.819821210132581 ], [ -95.344425999649062, 29.819837210544172 ], [ -95.342493998698885, 29.819863210470345 ], [ -95.342500999473828, 29.820374209878143 ], [ -95.342530998671521, 29.821165210786091 ], [ -95.342529999241947, 29.821905210659203 ], [ -95.342546998769251, 29.822193210325288 ], [ -95.342566998993746, 29.823553211021025 ], [ -95.342577998802483, 29.824628211014115 ], [ -95.3425909994791, 29.824912210896763 ], [ -95.342597998860356, 29.8257872117895 ], [ -95.342611999689964, 29.82656321149787 ], [ -95.34261599948826, 29.826996211663918 ], [ -95.34262999914921, 29.827733211823841 ], [ -95.342615999069437, 29.828119211553048 ], [ -95.342630999758242, 29.828279211964265 ], [ -95.342638999377357, 29.828725211818146 ], [ -95.342637999032604, 29.828928212414215 ], [ -95.342656999963268, 29.829873211888184 ], [ -95.342674999469878, 29.831014212334903 ], [ -95.34267699934837, 29.831147212533406 ], [ -95.342688999162363, 29.831949212381328 ], [ -95.342708999442451, 29.833232212585603 ], [ -95.342725999652515, 29.833922213437031 ], [ -95.342720000125809, 29.834506212888286 ], [ -95.342729999710912, 29.834856213269173 ], [ -95.342724999905457, 29.83504721375418 ], [ -95.342741000107779, 29.835800213790936 ], [ -95.342758999689778, 29.836634213574648 ], [ -95.342764999503345, 29.83702021345152 ], [ -95.342770000058522, 29.837214213464144 ], [ -95.342769999415395, 29.83742421379074 ], [ -95.34278199962705, 29.837910214199379 ], [ -95.342806000307334, 29.837847213696506 ], [ -95.342841999548199, 29.837810213657679 ], [ -95.342922000063737, 29.837782213412837 ], [ -95.34338599958069, 29.837773213689516 ], [ -95.343755000321408, 29.837774214239445 ], [ -95.344271999956334, 29.837762213646737 ], [ -95.344851000005079, 29.837761213685397 ], [ -95.345413000898432, 29.837758213443522 ], [ -95.345545000304412, 29.837753213874887 ], [ -95.345849000806865, 29.837754213694836 ], [ -95.346355000551284, 29.837748213973821 ], [ -95.346506001211182, 29.837750214007976 ], [ -95.348008001269648, 29.837739213758113 ], [ -95.348217001261389, 29.837737213892268 ], [ -95.348198001126619, 29.836991213863072 ], [ -95.34817800142261, 29.836132213254643 ], [ -95.34816900138874, 29.83577621324028 ], [ -95.348150000627072, 29.834913212770878 ], [ -95.348128000840816, 29.833878213034058 ], [ -95.34824800116634, 29.833828212800519 ], [ -95.348388001409802, 29.833758212728622 ], [ -95.348489001527739, 29.833723213273803 ], [ -95.348616000755285, 29.833707213048967 ], [ -95.350968001799728, 29.833683212618048 ], [ -95.350947001614017, 29.832418212697409 ], [ -95.354821003082677, 29.832350212052518 ], [ -95.355068002433484, 29.83234021188515 ], [ -95.355283002971802, 29.832332211950089 ], [ -95.355500003135546, 29.832323212625475 ], [ -95.355085002169602, 29.83082821222354 ], [ -95.354971002323069, 29.830420211851273 ], [ -95.354886002207124, 29.829899212263939 ], [ -95.354842002673379, 29.82957721188556 ], [ -95.354821002541485, 29.829063211654418 ], [ -95.35484100224248, 29.828901211176593 ], [ -95.354882002134175, 29.828598211417166 ], [ -95.354933002310347, 29.828319211494897 ], [ -95.354986002113364, 29.828070211384738 ], [ -95.355028002512796, 29.827826211708903 ], [ -95.355043002596972, 29.827738210988684 ], [ -95.355073002061076, 29.827563211463346 ], [ -95.35551300228164, 29.825174211227242 ], [ -95.355606002783389, 29.824715210758718 ], [ -95.355982002859733, 29.822701210327704 ], [ -95.35605400290153, 29.822273210685331 ], [ -95.356109002380791, 29.821906209723526 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1033, "Tract": "48201431902", "Area_SqMi": 0.35735439909716887, "total_2009": 24608, "total_2010": 22360, "total_2011": 23917, "total_2012": 24413, "total_2013": 26262, "total_2014": 25502, "total_2015": 27492, "total_2016": 26681, "total_2017": 25861, "total_2018": 24352, "total_2019": 24834, "total_2020": 22857, "age1": 5660, "age2": 12721, "age3": 4716, "earn1": 3108, "earn2": 4755, "earn3": 15234, "naics_s01": 6, "naics_s02": 470, "naics_s03": 150, "naics_s04": 2047, "naics_s05": 54, "naics_s06": 419, "naics_s07": 5338, "naics_s08": 48, "naics_s09": 130, "naics_s10": 2353, "naics_s11": 1182, "naics_s12": 3389, "naics_s13": 1397, "naics_s14": 2797, "naics_s15": 58, "naics_s16": 396, "naics_s17": 85, "naics_s18": 2515, "naics_s19": 260, "naics_s20": 3, "race1": 15880, "race2": 3852, "race3": 188, "race4": 2681, "race5": 30, "race6": 466, "ethnicity1": 16656, "ethnicity2": 6441, "edu1": 2808, "edu2": 3847, "edu3": 4936, "edu4": 5846, "Shape_Length": 15273.903372383942, "Shape_Area": 9962429.0286624115, "total_2021": 20258, "total_2022": 23097 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.47408902856894, 29.737956189313959 ], [ -95.473805029390931, 29.737926188827469 ], [ -95.470625028567426, 29.737995189177866 ], [ -95.468398027133347, 29.738011189041202 ], [ -95.468378027483652, 29.736776189195055 ], [ -95.468354027230234, 29.736461189074888 ], [ -95.468364027732576, 29.736009188438565 ], [ -95.468326027393644, 29.735243188586857 ], [ -95.468331027628622, 29.734461188087394 ], [ -95.468317027187354, 29.733701188660746 ], [ -95.468307027507137, 29.732842188080578 ], [ -95.468277026980715, 29.732103188175007 ], [ -95.468261026950259, 29.73152818788347 ], [ -95.46662702722827, 29.731574188338758 ], [ -95.465653026848798, 29.731631187662867 ], [ -95.465467026325868, 29.731648188369896 ], [ -95.464222026500494, 29.731768187955613 ], [ -95.463591026508681, 29.731825187903468 ], [ -95.463154025870693, 29.731871188445112 ], [ -95.462850025991727, 29.731886188404065 ], [ -95.462593025469019, 29.731902187769975 ], [ -95.462479025319809, 29.731904187982288 ], [ -95.461776025857972, 29.731915188058366 ], [ -95.460689025502205, 29.731942188304387 ], [ -95.46061702479264, 29.731942187854457 ], [ -95.460482025687782, 29.731934188000718 ], [ -95.460319025473368, 29.731928188575178 ], [ -95.46011702465799, 29.731921188148903 ], [ -95.459916025181982, 29.732852188613069 ], [ -95.459371025570647, 29.735385188725772 ], [ -95.459357024927385, 29.735448189342389 ], [ -95.458837024832604, 29.737865189218908 ], [ -95.458821025394272, 29.737962189430558 ], [ -95.458343025546569, 29.740779190459595 ], [ -95.458314025409564, 29.740948189788948 ], [ -95.458448024688991, 29.74094018995951 ], [ -95.458718025631683, 29.740924190475891 ], [ -95.459373025211605, 29.740883190478215 ], [ -95.460511025583202, 29.740792190401777 ], [ -95.460880025352722, 29.740782189718747 ], [ -95.461913026257733, 29.74074018989209 ], [ -95.462088026365038, 29.740746189762184 ], [ -95.464166026699473, 29.740619190112596 ], [ -95.464195026161462, 29.740617189762371 ], [ -95.465111027278425, 29.740561189662213 ], [ -95.465965027030791, 29.740502190214162 ], [ -95.466494027306922, 29.740474189539359 ], [ -95.466579027562005, 29.740469189461663 ], [ -95.46679202687524, 29.740453189527233 ], [ -95.466944027220848, 29.740411190148226 ], [ -95.467966027151903, 29.740058189228183 ], [ -95.47003202789719, 29.739320189261964 ], [ -95.470670028232632, 29.739085189472707 ], [ -95.471676028326286, 29.738764189502039 ], [ -95.472518028907686, 29.738483189406676 ], [ -95.473319028703855, 29.738215188799199 ], [ -95.47368402918292, 29.738080189132997 ], [ -95.47408902856894, 29.737956189313959 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1034, "Tract": "48201341001", "Area_SqMi": 0.47890319445124341, "total_2009": 1051, "total_2010": 1844, "total_2011": 1075, "total_2012": 1284, "total_2013": 1276, "total_2014": 1353, "total_2015": 1282, "total_2016": 1238, "total_2017": 1335, "total_2018": 1356, "total_2019": 1591, "total_2020": 1422, "age1": 585, "age2": 761, "age3": 275, "earn1": 493, "earn2": 658, "earn3": 470, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 39, "naics_s06": 0, "naics_s07": 301, "naics_s08": 0, "naics_s09": 2, "naics_s10": 26, "naics_s11": 72, "naics_s12": 76, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 151, "naics_s17": 43, "naics_s18": 861, "naics_s19": 35, "naics_s20": 0, "race1": 1170, "race2": 267, "race3": 12, "race4": 141, "race5": 0, "race6": 31, "ethnicity1": 1138, "ethnicity2": 483, "edu1": 262, "edu2": 268, "edu3": 298, "edu4": 208, "Shape_Length": 20028.601108284372, "Shape_Area": 13351001.410291649, "total_2021": 1424, "total_2022": 1621 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.144248937119798, 29.559569163367453 ], [ -95.143779935964972, 29.559072163704588 ], [ -95.143629936613436, 29.558880163327231 ], [ -95.143358936672016, 29.558584163317192 ], [ -95.143132936190085, 29.558129163330701 ], [ -95.142443936557498, 29.557342162967362 ], [ -95.141909935717209, 29.556660163186365 ], [ -95.141395936161587, 29.556046162343208 ], [ -95.140878935789956, 29.555418162791067 ], [ -95.140345935870187, 29.554775162750484 ], [ -95.139854934884568, 29.554142162140796 ], [ -95.139330935455064, 29.553512162641894 ], [ -95.138813935126919, 29.552912162473081 ], [ -95.140514935112265, 29.551727161713551 ], [ -95.141134935532762, 29.551287161602527 ], [ -95.140670935380072, 29.550759161816195 ], [ -95.140411934836905, 29.550739161685534 ], [ -95.139116935395748, 29.55094516207371 ], [ -95.138262934385665, 29.551087162017868 ], [ -95.138093934169561, 29.550325161317083 ], [ -95.137947935010217, 29.54958516157593 ], [ -95.137846934891257, 29.549107161787877 ], [ -95.137887934207924, 29.548673161591072 ], [ -95.137080933815682, 29.548323161004898 ], [ -95.136979933883978, 29.548237160869824 ], [ -95.136963934291103, 29.548216161455109 ], [ -95.137035933781874, 29.548083160859544 ], [ -95.137350934403742, 29.547490161543365 ], [ -95.137374934395169, 29.547446161377383 ], [ -95.137486934517398, 29.547236161394796 ], [ -95.137521934802706, 29.54717116093763 ], [ -95.13766693473579, 29.546899161144747 ], [ -95.137757934737706, 29.546729160972475 ], [ -95.137836934739838, 29.54658016104532 ], [ -95.137915934511796, 29.546431161066753 ], [ -95.137993934250829, 29.546286161227343 ], [ -95.138073934221268, 29.546135160619396 ], [ -95.138623934160478, 29.545061160482913 ], [ -95.138773934527478, 29.544770160678901 ], [ -95.138884934469615, 29.544555160928919 ], [ -95.139024934860885, 29.544251160134348 ], [ -95.139151934507439, 29.544015160615505 ], [ -95.138951934603099, 29.543819160165029 ], [ -95.138718934936236, 29.5435531605292 ], [ -95.138585934666466, 29.54297215997315 ], [ -95.138486934574516, 29.542656160554891 ], [ -95.138249934586085, 29.542167159809413 ], [ -95.137575934118445, 29.542499160109468 ], [ -95.136793933691067, 29.542984160182286 ], [ -95.136492934373322, 29.543189160471734 ], [ -95.135670933467281, 29.543773160039045 ], [ -95.13559193364236, 29.543829160575964 ], [ -95.135452933610125, 29.543928160078256 ], [ -95.135309933794076, 29.544030160196186 ], [ -95.135162933787072, 29.544134160633469 ], [ -95.134693933406865, 29.544470160617138 ], [ -95.134622932991718, 29.544521160301148 ], [ -95.134211933785863, 29.54481216035115 ], [ -95.131554932573763, 29.546706161581234 ], [ -95.130791932567831, 29.547262161649019 ], [ -95.129998932819163, 29.547863161838222 ], [ -95.129556932338616, 29.548200161643813 ], [ -95.129489932626299, 29.548257161508257 ], [ -95.129288931932209, 29.548434161599452 ], [ -95.128599932223253, 29.548962161871977 ], [ -95.129280932296183, 29.54962116187151 ], [ -95.129372932189568, 29.549722161562485 ], [ -95.129490932257454, 29.549850161962404 ], [ -95.129847932629318, 29.550234161736068 ], [ -95.130553932871791, 29.551007161745034 ], [ -95.13064993306908, 29.551111162385556 ], [ -95.130738932710983, 29.551208162489399 ], [ -95.131488932931717, 29.552029162271531 ], [ -95.13168093288256, 29.552239162507099 ], [ -95.132422932756768, 29.553055162856218 ], [ -95.133634934078586, 29.554382162326018 ], [ -95.133677933613214, 29.554430162898964 ], [ -95.133978933742966, 29.554758162605932 ], [ -95.134299933516544, 29.555098162513151 ], [ -95.136116934549719, 29.557020162948241 ], [ -95.137685935247234, 29.558679163340539 ], [ -95.138913935164453, 29.559979163486545 ], [ -95.139398935825852, 29.560492163888867 ], [ -95.140673935980686, 29.561890164171288 ], [ -95.141698936471457, 29.561242163709416 ], [ -95.141880936515193, 29.561122163948628 ], [ -95.142710935872572, 29.560579163939458 ], [ -95.142957935808809, 29.560416163848327 ], [ -95.143173936649319, 29.560273163791326 ], [ -95.143462936334316, 29.56008316358184 ], [ -95.144248937119798, 29.559569163367453 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1035, "Tract": "48201251903", "Area_SqMi": 10.906170777258698, "total_2009": 80, "total_2010": 71, "total_2011": 58, "total_2012": 80, "total_2013": 90, "total_2014": 106, "total_2015": 114, "total_2016": 119, "total_2017": 104, "total_2018": 145, "total_2019": 243, "total_2020": 224, "age1": 82, "age2": 158, "age3": 56, "earn1": 91, "earn2": 89, "earn3": 116, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 66, "naics_s05": 0, "naics_s06": 2, "naics_s07": 21, "naics_s08": 6, "naics_s09": 0, "naics_s10": 10, "naics_s11": 2, "naics_s12": 25, "naics_s13": 0, "naics_s14": 82, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 64, "naics_s19": 7, "naics_s20": 0, "race1": 265, "race2": 12, "race3": 2, "race4": 14, "race5": 0, "race6": 3, "ethnicity1": 205, "ethnicity2": 91, "edu1": 43, "edu2": 53, "edu3": 75, "edu4": 43, "Shape_Length": 83596.410109132019, "Shape_Area": 304045375.17213547, "total_2021": 272, "total_2022": 296 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.148245955211721, 29.957633244879172 ], [ -95.149220955610389, 29.948823243554475 ], [ -95.147012955111833, 29.948821243351148 ], [ -95.14517795437574, 29.948728243063627 ], [ -95.143006953170044, 29.949244243510005 ], [ -95.142721953015041, 29.948708243070456 ], [ -95.142699953917358, 29.948037243007303 ], [ -95.142533953562378, 29.948037242860266 ], [ -95.142385953358854, 29.94803924284416 ], [ -95.142363953837148, 29.948090243410718 ], [ -95.142352953231139, 29.948117243003644 ], [ -95.141966953390238, 29.948117243288436 ], [ -95.142012953166841, 29.948008243594249 ], [ -95.142049953040527, 29.947920243130156 ], [ -95.141852953410023, 29.947922243422717 ], [ -95.141842953336692, 29.94793424317324 ], [ -95.141818953142561, 29.947951243043164 ], [ -95.141768953264375, 29.947985243075433 ], [ -95.141684953656551, 29.948013243450337 ], [ -95.141519953414402, 29.948031242963093 ], [ -95.141201952631022, 29.948035243624254 ], [ -95.141096952643906, 29.948021243513551 ], [ -95.140967953127003, 29.948042243216495 ], [ -95.14072995270989, 29.948040243298266 ], [ -95.140255953207003, 29.948045243399726 ], [ -95.139121952753555, 29.94807024363422 ], [ -95.138702952566504, 29.948079243705074 ], [ -95.138255952744046, 29.94807624299462 ], [ -95.138115951927276, 29.948080243042877 ], [ -95.137970952601293, 29.948098243103509 ], [ -95.137815951689021, 29.948086243835409 ], [ -95.137657951992693, 29.948086243075217 ], [ -95.137502951946288, 29.94809124348199 ], [ -95.13625895135911, 29.948101243131077 ], [ -95.136079952209784, 29.948108243838504 ], [ -95.135986951790628, 29.948118243222424 ], [ -95.135905951813044, 29.948127243885402 ], [ -95.135732951474736, 29.948109243086197 ], [ -95.134643951450627, 29.948128243418431 ], [ -95.134451951333858, 29.94812824380822 ], [ -95.133884951353849, 29.948145243496143 ], [ -95.133698951528544, 29.948164243555478 ], [ -95.133501951567069, 29.948132243277549 ], [ -95.133318950759019, 29.948141243628807 ], [ -95.132749950590892, 29.948146243976023 ], [ -95.132563951363636, 29.948156243741984 ], [ -95.132378950821817, 29.948159243813215 ], [ -95.132183951147809, 29.948157243585459 ], [ -95.131289950294843, 29.948171243816571 ], [ -95.131093950039244, 29.948186243904953 ], [ -95.130159950250757, 29.948195243882402 ], [ -95.129768949894725, 29.948205243511755 ], [ -95.129567950285363, 29.948199243687519 ], [ -95.128230949578494, 29.948216243787979 ], [ -95.128051949750983, 29.948205243505971 ], [ -95.127963949600215, 29.948196243989202 ], [ -95.127874949246632, 29.948187243547547 ], [ -95.127486949788576, 29.948222244120966 ], [ -95.127091949206616, 29.948230243913539 ], [ -95.126688949679121, 29.948245243981169 ], [ -95.126492949494704, 29.948240244047028 ], [ -95.125875948715958, 29.94824524385708 ], [ -95.125666948934438, 29.948235244064634 ], [ -95.125454948866803, 29.948251243743758 ], [ -95.123696949100662, 29.948274244278284 ], [ -95.122782948747613, 29.948294244213731 ], [ -95.122323947815246, 29.94829624367674 ], [ -95.121854947850196, 29.948304244360564 ], [ -95.121620947707243, 29.948317243761718 ], [ -95.121371947505367, 29.948337243807526 ], [ -95.121138948161217, 29.948312244271637 ], [ -95.120904947679435, 29.948316243644467 ], [ -95.120864947651398, 29.948307244457094 ], [ -95.119415947558906, 29.948342244404753 ], [ -95.119170947559994, 29.948339243897266 ], [ -95.118916947085083, 29.948344244026142 ], [ -95.11866994777651, 29.948342244545053 ], [ -95.118407947063304, 29.948369244420679 ], [ -95.118158947375747, 29.948354244490123 ], [ -95.117904946746748, 29.948373244117349 ], [ -95.117658947361235, 29.948370244448324 ], [ -95.117641947177319, 29.948370243858477 ], [ -95.117173946796356, 29.948381244080021 ], [ -95.116703946732073, 29.94837724462554 ], [ -95.116358947213342, 29.948386244034559 ], [ -95.115987946695, 29.948393244595707 ], [ -95.11575194623407, 29.948393244172966 ], [ -95.115508946363619, 29.948400244163725 ], [ -95.115032946544403, 29.948401243911722 ], [ -95.114795946190085, 29.94839824396761 ], [ -95.114314945968573, 29.948410244517714 ], [ -95.114068946010079, 29.948422244364931 ], [ -95.113601946092473, 29.948417244006151 ], [ -95.113366945604923, 29.948411244775521 ], [ -95.112887946178517, 29.948433244753868 ], [ -95.112649946083963, 29.948440244435666 ], [ -95.112402945452743, 29.948427244192914 ], [ -95.112182945788462, 29.948434244380817 ], [ -95.111931945480265, 29.948461244249675 ], [ -95.1112259457162, 29.948457244281638 ], [ -95.110523945297643, 29.948477244050299 ], [ -95.110040944766354, 29.948479244607324 ], [ -95.109798945210457, 29.948486244312761 ], [ -95.109072944906401, 29.948482244695398 ], [ -95.108831945005832, 29.94850924430413 ], [ -95.108574944389986, 29.948484244826432 ], [ -95.108091944561068, 29.948494244255564 ], [ -95.107846944127814, 29.948503244956331 ], [ -95.107611944265741, 29.948504244972106 ], [ -95.107372944077625, 29.948520244845373 ], [ -95.107142944524824, 29.94852224477345 ], [ -95.106917944740047, 29.948529244812743 ], [ -95.106698944713031, 29.948548244479934 ], [ -95.106478944189732, 29.948585244891351 ], [ -95.106262944306536, 29.948639244699244 ], [ -95.106053943746232, 29.948701244535194 ], [ -95.105648944357583, 29.948837245128168 ], [ -95.105447943689626, 29.948895244349416 ], [ -95.105241943557488, 29.948943244579514 ], [ -95.105035944262085, 29.948980244469499 ], [ -95.104959944025779, 29.948983245138912 ], [ -95.104406943890567, 29.949002244639392 ], [ -95.102891943237125, 29.949023245129979 ], [ -95.102562942983369, 29.949029245270214 ], [ -95.10147994266049, 29.949039244566251 ], [ -95.100333942889492, 29.949057245206568 ], [ -95.09931194191887, 29.949061244955594 ], [ -95.098420941882353, 29.949078245325992 ], [ -95.09713494178142, 29.949089244939596 ], [ -95.095864941146544, 29.949113244825707 ], [ -95.092640940698431, 29.949138245237709 ], [ -95.092519941062278, 29.94914024504893 ], [ -95.091497940433698, 29.94915424487462 ], [ -95.09038794056417, 29.949160245418241 ], [ -95.088559939922661, 29.949195245106111 ], [ -95.088097939221328, 29.949256245550529 ], [ -95.087865939147619, 29.949199245074819 ], [ -95.08716593897762, 29.949211245815032 ], [ -95.086930939480411, 29.949219245225446 ], [ -95.086694939425684, 29.949205245530298 ], [ -95.085742939032571, 29.949221245739519 ], [ -95.085263938609344, 29.949221245601336 ], [ -95.084534938766666, 29.949234245600199 ], [ -95.084292938896795, 29.949233245879505 ], [ -95.083582938209133, 29.949250245855858 ], [ -95.082772938357792, 29.949253245514882 ], [ -95.082714937972426, 29.949253245599326 ], [ -95.082506938474992, 29.9492482456529 ], [ -95.081655938060265, 29.949254245906758 ], [ -95.081440937416119, 29.949251245218353 ], [ -95.081219938053579, 29.949264245201235 ], [ -95.079721936882223, 29.949278245765647 ], [ -95.07951893717042, 29.949276246001478 ], [ -95.079120937019937, 29.949284245700966 ], [ -95.078932937591375, 29.949280245910479 ], [ -95.07875793756493, 29.949289246022087 ], [ -95.077841936894231, 29.949304245976951 ], [ -95.077671937034935, 29.949319245589486 ], [ -95.077619937141307, 29.949218245686474 ], [ -95.077268936877061, 29.948541245329295 ], [ -95.077252937012801, 29.948516245474959 ], [ -95.076758936371775, 29.947679245579859 ], [ -95.07630093629443, 29.946903244939605 ], [ -95.076057936736262, 29.946494244809355 ], [ -95.075986936677026, 29.946374244981239 ], [ -95.075766936169387, 29.945759245131296 ], [ -95.075691935950616, 29.945548245509972 ], [ -95.075102936299629, 29.943007244216776 ], [ -95.075096935477234, 29.942963244105542 ], [ -95.074471936154524, 29.94297624475988 ], [ -95.074095935579194, 29.942978244673338 ], [ -95.073188935633837, 29.943003244330253 ], [ -95.072075935152952, 29.943018244659196 ], [ -95.071776935457933, 29.943019245141123 ], [ -95.067252933579255, 29.943089244812366 ], [ -95.065210932923719, 29.943122245081597 ], [ -95.064836932973407, 29.943128245064475 ], [ -95.064345932825589, 29.943135245048552 ], [ -95.063433932947277, 29.943146244615676 ], [ -95.063293932396348, 29.943142244535892 ], [ -95.063088932436429, 29.943153245426242 ], [ -95.063024932950668, 29.943156244756615 ], [ -95.062963932397963, 29.943148245147256 ], [ -95.062905932838959, 29.943152245454897 ], [ -95.062913932701818, 29.943415244758992 ], [ -95.062931932944466, 29.94354424474346 ], [ -95.062920933226579, 29.943685244893956 ], [ -95.06292093287, 29.943839245049425 ], [ -95.062940932696307, 29.944137245165358 ], [ -95.063084933350723, 29.94759724635977 ], [ -95.063138932884755, 29.94869824582776 ], [ -95.063141932835151, 29.948930245813855 ], [ -95.063151932994927, 29.949328246394824 ], [ -95.063170933418078, 29.949750246193929 ], [ -95.06321893294303, 29.950924246264275 ], [ -95.063233932931738, 29.951365246560922 ], [ -95.063288933650711, 29.952606246619801 ], [ -95.063315933092227, 29.953237247166012 ], [ -95.063320933002402, 29.953351247240782 ], [ -95.063342932973825, 29.953904246805514 ], [ -95.063372932947473, 29.954598247007699 ], [ -95.06337793322281, 29.954886247474775 ], [ -95.063397933309446, 29.955049247449047 ], [ -95.063408933000929, 29.955217247073236 ], [ -95.063411933395585, 29.955384247551425 ], [ -95.063407933674924, 29.955732247504908 ], [ -95.063396933021792, 29.955887247798284 ], [ -95.063422933657847, 29.956082247926485 ], [ -95.063434933064869, 29.956269247691445 ], [ -95.06344993314994, 29.956725247982895 ], [ -95.063456933844421, 29.956972248126913 ], [ -95.063498934056327, 29.95855524829528 ], [ -95.063519933545976, 29.959711248542934 ], [ -95.063523933605268, 29.960418248197318 ], [ -95.063517933806594, 29.960443248217857 ], [ -95.063527934047002, 29.960670248491315 ], [ -95.063547933317437, 29.962547249107672 ], [ -95.063556934137225, 29.962974248807946 ], [ -95.063553934271113, 29.963185249452071 ], [ -95.063568934148492, 29.963620249420906 ], [ -95.063568933549931, 29.963884248875605 ], [ -95.063566933557269, 29.96404724957392 ], [ -95.063581933885445, 29.965994249969899 ], [ -95.063596934199055, 29.966967249666645 ], [ -95.063633933921153, 29.969557250195152 ], [ -95.063632934215562, 29.969900250687335 ], [ -95.068181935359007, 29.969827250523718 ], [ -95.071950936280103, 29.969789250577925 ], [ -95.076984937473739, 29.969729250034696 ], [ -95.077775938197462, 29.969720249904238 ], [ -95.078851937849151, 29.969716249973445 ], [ -95.08225393840307, 29.969671250181815 ], [ -95.086481940279455, 29.969628249615031 ], [ -95.086694939994231, 29.969623249904238 ], [ -95.087571940673058, 29.973285250604494 ], [ -95.088123940801168, 29.975921250824726 ], [ -95.088986940661869, 29.979605251204688 ], [ -95.089015941228666, 29.97972725185387 ], [ -95.089150941348265, 29.980306251913468 ], [ -95.089231941649231, 29.980645251350094 ], [ -95.089247940755627, 29.980710252138923 ], [ -95.089644941794361, 29.982368252420873 ], [ -95.090007941169716, 29.983887252416217 ], [ -95.090413942055903, 29.985489252670789 ], [ -95.090434941960254, 29.985570252375272 ], [ -95.090487942231803, 29.9857812530994 ], [ -95.090910942310458, 29.987450253127754 ], [ -95.091025942048802, 29.987907253194489 ], [ -95.091148942054218, 29.988433253186692 ], [ -95.091383942594888, 29.989434253677491 ], [ -95.091484941710362, 29.989857253464105 ], [ -95.09381794293077, 29.98978825372431 ], [ -95.094521942747662, 29.989766253809034 ], [ -95.095125942731869, 29.989710253846471 ], [ -95.095684942949518, 29.989632253799581 ], [ -95.09612094302328, 29.98953125336034 ], [ -95.096589943397234, 29.989430252950012 ], [ -95.097103943613803, 29.989330253576092 ], [ -95.097539943820792, 29.989274252970006 ], [ -95.098148943944494, 29.989251252810384 ], [ -95.098579944273112, 29.989274253193205 ], [ -95.099261944317362, 29.989352253257913 ], [ -95.099685944471261, 29.989419253129689 ], [ -95.10004394478419, 29.989486253253119 ], [ -95.100524945010591, 29.989564252790533 ], [ -95.100870944255306, 29.989587252804988 ], [ -95.101384944840774, 29.989598253582596 ], [ -95.101932944974621, 29.989587252799065 ], [ -95.102446944778961, 29.989542253405848 ], [ -95.102804945019955, 29.989509253108398 ], [ -95.103195945362501, 29.989520253083381 ], [ -95.10359894540909, 29.989531253437235 ], [ -95.104101945401425, 29.989564253038676 ], [ -95.104637945961557, 29.989576253260921 ], [ -95.105354946049204, 29.989540252950242 ], [ -95.108159946159631, 29.989523252557142 ], [ -95.109258946821384, 29.989516252996083 ], [ -95.109607946691185, 29.989515253220194 ], [ -95.111168947044078, 29.989510253120869 ], [ -95.115233947833573, 29.989497252386936 ], [ -95.115452948332234, 29.98950225286745 ], [ -95.115764948116237, 29.989559252583405 ], [ -95.116377948226003, 29.989767252896876 ], [ -95.117115949231589, 29.990079252319337 ], [ -95.117411949206286, 29.990141252971004 ], [ -95.117583949102453, 29.990157253137156 ], [ -95.117801949265129, 29.990157252565329 ], [ -95.118123948674167, 29.990136253169666 ], [ -95.118388949395438, 29.990115252987785 ], [ -95.118778949616328, 29.990037252717979 ], [ -95.119823949337672, 29.98976725254807 ], [ -95.120135949795511, 29.989674252841208 ], [ -95.120442949451117, 29.989585252090254 ], [ -95.120759949539007, 29.989507252314599 ], [ -95.121686949822447, 29.989515252622699 ], [ -95.122412950417569, 29.990040252757296 ], [ -95.122989950619427, 29.990127252589861 ], [ -95.123775950090206, 29.990461252333454 ], [ -95.125861951176987, 29.990361252410683 ], [ -95.127469951148498, 29.989620252059694 ], [ -95.128467951485675, 29.989146252282435 ], [ -95.129367951383642, 29.988719252257308 ], [ -95.130691952265636, 29.98807325182144 ], [ -95.131308952308856, 29.987793251769254 ], [ -95.13142895288361, 29.987733251481991 ], [ -95.131547952293275, 29.987672251891603 ], [ -95.131481952639902, 29.987382252122959 ], [ -95.131147952374292, 29.985932251535797 ], [ -95.129750951398421, 29.97986824987975 ], [ -95.129652951097285, 29.979445249883113 ], [ -95.129345951893399, 29.978110249688619 ], [ -95.129291951733379, 29.977877250026822 ], [ -95.148245955211721, 29.957633244879172 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1036, "Tract": "48201322702", "Area_SqMi": 0.49090649353484367, "total_2009": 609, "total_2010": 749, "total_2011": 1127, "total_2012": 617, "total_2013": 716, "total_2014": 759, "total_2015": 2192, "total_2016": 1010, "total_2017": 1227, "total_2018": 806, "total_2019": 1737, "total_2020": 1168, "age1": 223, "age2": 689, "age3": 233, "earn1": 115, "earn2": 209, "earn3": 821, "naics_s01": 0, "naics_s02": 232, "naics_s03": 0, "naics_s04": 561, "naics_s05": 73, "naics_s06": 41, "naics_s07": 22, "naics_s08": 128, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 7, "naics_s19": 81, "naics_s20": 0, "race1": 1023, "race2": 68, "race3": 10, "race4": 22, "race5": 5, "race6": 17, "ethnicity1": 594, "ethnicity2": 551, "edu1": 225, "edu2": 276, "edu3": 265, "edu4": 156, "Shape_Length": 16401.176616534722, "Shape_Area": 13685632.844890725, "total_2021": 1040, "total_2022": 1145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.171498950561187, 29.71257719432564 ], [ -95.171497950361413, 29.712386193807969 ], [ -95.171495950567305, 29.712132194065887 ], [ -95.17149295013013, 29.71163819370042 ], [ -95.17148494981015, 29.711379193680557 ], [ -95.171464950079383, 29.71068519362791 ], [ -95.171451949821446, 29.710004193312898 ], [ -95.171446949702542, 29.709528193660958 ], [ -95.171443950112689, 29.709303193256908 ], [ -95.171444950516559, 29.709045193323909 ], [ -95.171446950426116, 29.708561193285188 ], [ -95.171446950162718, 29.708515192962277 ], [ -95.171396950247754, 29.707833193149376 ], [ -95.171388950092663, 29.707359192746058 ], [ -95.171385949697012, 29.70714119284218 ], [ -95.171349949734122, 29.706460192392822 ], [ -95.171377950500244, 29.705781192179913 ], [ -95.171363949708592, 29.705452192297393 ], [ -95.171340949976539, 29.704960192030178 ], [ -95.171268949938067, 29.703047192085979 ], [ -95.171264950172358, 29.702929192093482 ], [ -95.171260949773313, 29.702587192384549 ], [ -95.171251949391618, 29.701748191775387 ], [ -95.171265950019261, 29.701026191549829 ], [ -95.171214949867192, 29.699412191043358 ], [ -95.170724949256254, 29.699402191494677 ], [ -95.170090949191874, 29.699439191529535 ], [ -95.169006949244803, 29.699464191806602 ], [ -95.168411949224364, 29.699458191332376 ], [ -95.167834949058488, 29.699458191034118 ], [ -95.166447947941251, 29.699456191649141 ], [ -95.166164948839096, 29.699472191625812 ], [ -95.166160947947631, 29.69921019102696 ], [ -95.165962948651242, 29.69921419123774 ], [ -95.165503947875365, 29.699237191062391 ], [ -95.164572947860648, 29.699243191894205 ], [ -95.163558947379684, 29.699242191760817 ], [ -95.162914947282573, 29.699286191637519 ], [ -95.162350947425168, 29.699325191606881 ], [ -95.162384947609411, 29.700383191682068 ], [ -95.162407947795757, 29.701090191857261 ], [ -95.16243694752437, 29.703065191991229 ], [ -95.162453947842423, 29.70371219206687 ], [ -95.162466947707827, 29.704251192861381 ], [ -95.162481948130718, 29.704819192466662 ], [ -95.16250194819834, 29.705924193012251 ], [ -95.162527947528545, 29.707881193467614 ], [ -95.162547948039659, 29.708708193696527 ], [ -95.163124947697284, 29.708688193603169 ], [ -95.163162948217519, 29.709651193539237 ], [ -95.163143947960606, 29.709805193836253 ], [ -95.163074948430278, 29.709876193673377 ], [ -95.162998948380164, 29.709915193341672 ], [ -95.162859947795866, 29.709937194045065 ], [ -95.161914947419277, 29.709969193738399 ], [ -95.161795948163558, 29.709980193562661 ], [ -95.161486948138759, 29.709975193750338 ], [ -95.161411947666309, 29.70999719388843 ], [ -95.161316947571635, 29.710046193721897 ], [ -95.161278947674489, 29.71010719339397 ], [ -95.161253947679185, 29.710178194205604 ], [ -95.161266947432722, 29.710695193914059 ], [ -95.161265947980027, 29.711800194375627 ], [ -95.1612589473676, 29.711874194499636 ], [ -95.161239947646337, 29.712061193834462 ], [ -95.161232947229536, 29.712129194416224 ], [ -95.161213948168424, 29.712314194209902 ], [ -95.162100947791785, 29.712340194523811 ], [ -95.165207948695823, 29.712427194299178 ], [ -95.167407949588309, 29.712467194187816 ], [ -95.168019949471741, 29.712478194278031 ], [ -95.171279950497208, 29.712571193647339 ], [ -95.171498950561187, 29.71257719432564 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1037, "Tract": "48201431803", "Area_SqMi": 0.13123522986489164, "total_2009": 3117, "total_2010": 3509, "total_2011": 4626, "total_2012": 2962, "total_2013": 3129, "total_2014": 3108, "total_2015": 3400, "total_2016": 3161, "total_2017": 2738, "total_2018": 3209, "total_2019": 3286, "total_2020": 2097, "age1": 534, "age2": 1864, "age3": 521, "earn1": 190, "earn2": 395, "earn3": 2334, "naics_s01": 13, "naics_s02": 794, "naics_s03": 0, "naics_s04": 257, "naics_s05": 28, "naics_s06": 221, "naics_s07": 128, "naics_s08": 7, "naics_s09": 59, "naics_s10": 459, "naics_s11": 52, "naics_s12": 418, "naics_s13": 9, "naics_s14": 129, "naics_s15": 4, "naics_s16": 113, "naics_s17": 3, "naics_s18": 202, "naics_s19": 23, "naics_s20": 0, "race1": 2221, "race2": 373, "race3": 16, "race4": 264, "race5": 6, "race6": 39, "ethnicity1": 2105, "ethnicity2": 814, "edu1": 380, "edu2": 584, "edu3": 712, "edu4": 709, "Shape_Length": 9678.8738764459431, "Shape_Area": 3658613.5972924666, "total_2021": 2155, "total_2022": 2919 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.467238028001915, 29.750288191941074 ], [ -95.467219027564141, 29.750139191241082 ], [ -95.467191028077636, 29.749903191808741 ], [ -95.467177028003476, 29.749145191080991 ], [ -95.467164028098949, 29.748480190952598 ], [ -95.467160027214859, 29.748259191610988 ], [ -95.467131027235283, 29.747901191008609 ], [ -95.46711402715016, 29.74744519140225 ], [ -95.467092028009574, 29.746817191432836 ], [ -95.467071027124859, 29.746267191027496 ], [ -95.467065028057078, 29.746065191021589 ], [ -95.467042027397667, 29.744678190502814 ], [ -95.467039027006933, 29.744604190874252 ], [ -95.467011027846496, 29.74365519054815 ], [ -95.467014027509833, 29.743567190188948 ], [ -95.467008027110865, 29.743163190045738 ], [ -95.46700702739183, 29.743118190156633 ], [ -95.466997027299357, 29.742316190028923 ], [ -95.46699302765802, 29.742144189672484 ], [ -95.46697202700436, 29.740550189931191 ], [ -95.466944027220848, 29.740411190148226 ], [ -95.46679202687524, 29.740453189527233 ], [ -95.466579027562005, 29.740469189461663 ], [ -95.466494027306922, 29.740474189539359 ], [ -95.465965027030791, 29.740502190214162 ], [ -95.465111027278425, 29.740561189662213 ], [ -95.464195026161462, 29.740617189762371 ], [ -95.464199026437655, 29.740737189706202 ], [ -95.46426102653345, 29.743924190160577 ], [ -95.464262026573138, 29.743976190137698 ], [ -95.464264027184015, 29.744071190700669 ], [ -95.464229026610823, 29.744291190153032 ], [ -95.46423502721251, 29.744755190510187 ], [ -95.464248027123574, 29.74572619065621 ], [ -95.464255027000064, 29.745936191357117 ], [ -95.464258027190766, 29.746086191300783 ], [ -95.464261026375283, 29.746230191312065 ], [ -95.464211026368631, 29.746345190579124 ], [ -95.464121027099381, 29.74643519146889 ], [ -95.463963026342171, 29.746479191319235 ], [ -95.463652026330493, 29.746497191265121 ], [ -95.463347026251981, 29.746506191510626 ], [ -95.463150026880143, 29.746561191448638 ], [ -95.463090026395193, 29.746580191491407 ], [ -95.46323402707759, 29.746930190821917 ], [ -95.463256026967173, 29.747011191166411 ], [ -95.463277026846583, 29.747388191123758 ], [ -95.463303026979403, 29.747857191785279 ], [ -95.463309026527511, 29.748015191611753 ], [ -95.463323026541417, 29.74838719104795 ], [ -95.463324026627362, 29.748641191723582 ], [ -95.46326202657697, 29.748921191903221 ], [ -95.463192027106459, 29.749053191347389 ], [ -95.462967026210976, 29.749777191792361 ], [ -95.462960026577434, 29.750199192195371 ], [ -95.462965026502317, 29.750324191861754 ], [ -95.463831026989595, 29.750307191478068 ], [ -95.464922026944862, 29.750304191816568 ], [ -95.466407027216405, 29.750304192177477 ], [ -95.466907027427325, 29.750280191558975 ], [ -95.467238028001915, 29.750288191941074 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1038, "Tract": "48201333204", "Area_SqMi": 0.063319332892853297, "total_2009": 58, "total_2010": 1, "total_2011": null, "total_2012": null, "total_2013": null, "total_2014": 47, "total_2015": 38, "total_2016": null, "total_2017": 4, "total_2018": 2, "total_2019": null, "total_2020": null, "age1": 3, "age2": 9, "age3": 5, "earn1": 10, "earn2": 4, "earn3": 3, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 17, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 12, "race2": 1, "race3": 0, "race4": 3, "race5": 0, "race6": 1, "ethnicity1": 11, "ethnicity2": 6, "edu1": 3, "edu2": 3, "edu3": 4, "edu4": 4, "Shape_Length": 5320.503908518951, "Shape_Area": 1765234.6289314167, "total_2021": 6, "total_2022": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.276806974677342, 29.661395179770459 ], [ -95.276773974586462, 29.660283179375675 ], [ -95.276755975428131, 29.660045179438878 ], [ -95.276717975237787, 29.658359179212056 ], [ -95.276707974453174, 29.657905179155282 ], [ -95.274468974531089, 29.65794917892541 ], [ -95.273569974454816, 29.657968179797443 ], [ -95.272316973507628, 29.657985179309975 ], [ -95.272320973411567, 29.658368179810264 ], [ -95.272321974088428, 29.658436179375489 ], [ -95.272337973586644, 29.659006179999281 ], [ -95.272369974352188, 29.660158179908723 ], [ -95.272425974119244, 29.661461180308507 ], [ -95.274456974565382, 29.661433180049997 ], [ -95.27457797469512, 29.66142917968676 ], [ -95.274698974466858, 29.661426180313526 ], [ -95.274922974829934, 29.661425179685033 ], [ -95.276198974897852, 29.661396179935377 ], [ -95.276806974677342, 29.661395179770459 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1039, "Tract": "48201431701", "Area_SqMi": 0.36435243976897652, "total_2009": 6104, "total_2010": 6678, "total_2011": 6717, "total_2012": 8084, "total_2013": 7916, "total_2014": 7707, "total_2015": 8451, "total_2016": 7090, "total_2017": 6856, "total_2018": 6348, "total_2019": 6287, "total_2020": 5475, "age1": 1082, "age2": 3319, "age3": 1326, "earn1": 481, "earn2": 1003, "earn3": 4243, "naics_s01": 0, "naics_s02": 54, "naics_s03": 65, "naics_s04": 79, "naics_s05": 57, "naics_s06": 383, "naics_s07": 71, "naics_s08": 68, "naics_s09": 177, "naics_s10": 664, "naics_s11": 722, "naics_s12": 1420, "naics_s13": 51, "naics_s14": 1110, "naics_s15": 30, "naics_s16": 94, "naics_s17": 10, "naics_s18": 385, "naics_s19": 287, "naics_s20": 0, "race1": 4284, "race2": 828, "race3": 38, "race4": 483, "race5": 6, "race6": 88, "ethnicity1": 4231, "ethnicity2": 1496, "edu1": 721, "edu2": 1012, "edu3": 1294, "edu4": 1618, "Shape_Length": 19772.729766631051, "Shape_Area": 10157522.425326096, "total_2021": 4897, "total_2022": 5727 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.467736028849771, 29.769477196000707 ], [ -95.467737028553472, 29.769262195198866 ], [ -95.467726028294848, 29.768602195509203 ], [ -95.467715028572044, 29.768162195590904 ], [ -95.467711028986827, 29.767132195168866 ], [ -95.467718028345374, 29.766229194528023 ], [ -95.467698028580557, 29.765461195115538 ], [ -95.467724028654004, 29.7652571946374 ], [ -95.467712028691039, 29.764259194177757 ], [ -95.467710028922284, 29.763433194719511 ], [ -95.467689028274322, 29.762958194115669 ], [ -95.466941028416201, 29.762505194177088 ], [ -95.466302028410382, 29.762242193976231 ], [ -95.465722027978913, 29.762176194330973 ], [ -95.465317028155184, 29.762174194293632 ], [ -95.464055027997858, 29.762178194451216 ], [ -95.463375027396523, 29.762269194614134 ], [ -95.463357027767714, 29.761376194193648 ], [ -95.463284027568591, 29.760068193531467 ], [ -95.463279026741404, 29.759986193491322 ], [ -95.463256026837072, 29.759026193455231 ], [ -95.46325402695868, 29.758469193481616 ], [ -95.463257027579857, 29.758162193785811 ], [ -95.463212027441671, 29.757586193533449 ], [ -95.463180026936968, 29.75703219346061 ], [ -95.463167027042161, 29.756669193615117 ], [ -95.463153026974041, 29.755736192721457 ], [ -95.46311502711832, 29.755132192572738 ], [ -95.4631080272259, 29.754589192711222 ], [ -95.463091027296258, 29.754213192709699 ], [ -95.462513026746819, 29.754242192544712 ], [ -95.459619026167189, 29.754315192725159 ], [ -95.458913025878786, 29.754322193147043 ], [ -95.458740025744973, 29.754320192605054 ], [ -95.458737026251711, 29.754598192675285 ], [ -95.458733025575484, 29.754908193075934 ], [ -95.458046025379375, 29.754906192643865 ], [ -95.457721025235443, 29.754905193211361 ], [ -95.457717025923415, 29.755340193128365 ], [ -95.457712025644057, 29.755898192781029 ], [ -95.457715025585117, 29.756287193696522 ], [ -95.457724025647451, 29.757408193719243 ], [ -95.457679025713674, 29.757836193487204 ], [ -95.457577025739099, 29.758007194071951 ], [ -95.457435025609925, 29.758165193239982 ], [ -95.456864025435578, 29.75823619386032 ], [ -95.455993024764268, 29.758213193980911 ], [ -95.455993024844105, 29.757651193507254 ], [ -95.455721024783458, 29.75783319385889 ], [ -95.455729025579188, 29.759852194326147 ], [ -95.455729025273712, 29.759962194402824 ], [ -95.45596902486021, 29.759969193985935 ], [ -95.456050025402249, 29.759972193827636 ], [ -95.456321025101005, 29.75989019396183 ], [ -95.456966025517573, 29.75957419357113 ], [ -95.457624025679763, 29.759371193968672 ], [ -95.457801026182864, 29.759395194246714 ], [ -95.458017025878718, 29.75955819369209 ], [ -95.458197026169117, 29.760109193965789 ], [ -95.458186026355904, 29.760431193733499 ], [ -95.457896025841109, 29.761213194045634 ], [ -95.457945025512345, 29.761460193876484 ], [ -95.458031026185168, 29.76158219401983 ], [ -95.458266026436064, 29.761723193927526 ], [ -95.459035026336153, 29.761961194507247 ], [ -95.459771026075714, 29.762026194289096 ], [ -95.460171026733207, 29.762113194823442 ], [ -95.460558027015111, 29.762378194360465 ], [ -95.46073302672086, 29.762619194844653 ], [ -95.460729026879875, 29.762761194311548 ], [ -95.460652026427908, 29.762846194402155 ], [ -95.460357027015363, 29.762969194567095 ], [ -95.460028026269299, 29.762976194260034 ], [ -95.459590026549151, 29.762872194583466 ], [ -95.459221026757007, 29.762874194529253 ], [ -95.45867902644676, 29.763038194751363 ], [ -95.458314026416204, 29.763326194423531 ], [ -95.45802402613289, 29.763674194868493 ], [ -95.457974026290572, 29.763847194714149 ], [ -95.458044025558038, 29.76412519466027 ], [ -95.458231025769237, 29.764444195350364 ], [ -95.458273026159119, 29.764553194923927 ], [ -95.458387026397929, 29.764852194960717 ], [ -95.458758026403714, 29.765130195172155 ], [ -95.459428026080616, 29.765077195073729 ], [ -95.459788026173243, 29.765142195442611 ], [ -95.460840026399723, 29.765551194608882 ], [ -95.461471026988065, 29.765873195523941 ], [ -95.461622026950351, 29.765950194851534 ], [ -95.46180102718462, 29.76609919519024 ], [ -95.461916026720445, 29.766289195112094 ], [ -95.462047026896755, 29.766812195295437 ], [ -95.462291027024193, 29.767414195390934 ], [ -95.462504027469663, 29.767675195800994 ], [ -95.46270602709933, 29.767797195452363 ], [ -95.463112027565401, 29.767806195793032 ], [ -95.463271027975637, 29.767770195751073 ], [ -95.46458802827739, 29.766972195051974 ], [ -95.464785027948835, 29.766925195129836 ], [ -95.464982028244549, 29.766975195590739 ], [ -95.465056027613556, 29.767100194925401 ], [ -95.465076027904971, 29.767351194894303 ], [ -95.464879028020519, 29.768084195152372 ], [ -95.464878028463346, 29.768263195193409 ], [ -95.464984028364199, 29.768492195294737 ], [ -95.465188028467068, 29.768666195378163 ], [ -95.46545302814269, 29.768661195344126 ], [ -95.465606027860971, 29.76864219528133 ], [ -95.465724028233112, 29.768628195130503 ], [ -95.465982028068055, 29.7686221952609 ], [ -95.466247028373601, 29.768638195439756 ], [ -95.466581028726083, 29.768748195799027 ], [ -95.467085028119769, 29.768990195985488 ], [ -95.46729302866575, 29.769155195950471 ], [ -95.467640028537176, 29.769386195912933 ], [ -95.467736028849771, 29.769477196000707 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1040, "Tract": "48201431702", "Area_SqMi": 0.76250449703968892, "total_2009": 1013, "total_2010": 892, "total_2011": 798, "total_2012": 1040, "total_2013": 1136, "total_2014": 1055, "total_2015": 1260, "total_2016": 1032, "total_2017": 1152, "total_2018": 1401, "total_2019": 2016, "total_2020": 1862, "age1": 264, "age2": 852, "age3": 471, "earn1": 400, "earn2": 351, "earn3": 836, "naics_s01": 4, "naics_s02": 97, "naics_s03": 0, "naics_s04": 488, "naics_s05": 25, "naics_s06": 16, "naics_s07": 19, "naics_s08": 44, "naics_s09": 31, "naics_s10": 46, "naics_s11": 80, "naics_s12": 203, "naics_s13": 200, "naics_s14": 6, "naics_s15": 57, "naics_s16": 13, "naics_s17": 0, "naics_s18": 8, "naics_s19": 250, "naics_s20": 0, "race1": 1294, "race2": 180, "race3": 9, "race4": 77, "race5": 3, "race6": 24, "ethnicity1": 1017, "ethnicity2": 570, "edu1": 302, "edu2": 325, "edu3": 364, "edu4": 332, "Shape_Length": 18555.532978167801, "Shape_Area": 21257320.337977085, "total_2021": 1960, "total_2022": 1587 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.477943030848238, 29.763797193688053 ], [ -95.477857031269252, 29.76313519356388 ], [ -95.477736030672332, 29.762777194189383 ], [ -95.47759903135676, 29.762457194089997 ], [ -95.477517030975733, 29.762217193679298 ], [ -95.477457030511246, 29.761866193396042 ], [ -95.477415030737845, 29.761477193888489 ], [ -95.477418030910016, 29.760361193325362 ], [ -95.477414030951408, 29.760167193639496 ], [ -95.477405030475566, 29.759057192967106 ], [ -95.477380030792787, 29.757957193238518 ], [ -95.477359030559825, 29.756866192931206 ], [ -95.477342030660068, 29.755755192894135 ], [ -95.477333030286943, 29.7546661926037 ], [ -95.477305030449273, 29.753566192019601 ], [ -95.477292030906696, 29.75238919193206 ], [ -95.477281030924857, 29.752120192173795 ], [ -95.477251030001895, 29.751889191462663 ], [ -95.477026030561731, 29.751277191202167 ], [ -95.476983030318848, 29.75097419129299 ], [ -95.47699303045917, 29.750793191671903 ], [ -95.476974030767806, 29.750131191468714 ], [ -95.476223030452275, 29.750135191744075 ], [ -95.475845029750786, 29.750139191136512 ], [ -95.475247030129083, 29.750151191769081 ], [ -95.474739030000336, 29.750151191262361 ], [ -95.474495030040089, 29.750155191269094 ], [ -95.472783028756652, 29.750203191694304 ], [ -95.471840029419837, 29.750201191189547 ], [ -95.470881029091814, 29.750211192010063 ], [ -95.469623027955762, 29.750235191597632 ], [ -95.468162027990019, 29.750264191743785 ], [ -95.467238028001915, 29.750288191941074 ], [ -95.466907027427325, 29.750280191558975 ], [ -95.466407027216405, 29.750304192177477 ], [ -95.464922026944862, 29.750304191816568 ], [ -95.463831026989595, 29.750307191478068 ], [ -95.462965026502317, 29.750324191861754 ], [ -95.462994026760796, 29.750958192219091 ], [ -95.463006026789557, 29.751566192453879 ], [ -95.463010026496448, 29.751726191963737 ], [ -95.463024026444629, 29.752227191885851 ], [ -95.463035026810047, 29.752551192052575 ], [ -95.463040026780106, 29.752684192687749 ], [ -95.463042026836007, 29.753052192112118 ], [ -95.463091027296258, 29.754213192709699 ], [ -95.4631080272259, 29.754589192711222 ], [ -95.46311502711832, 29.755132192572738 ], [ -95.463153026974041, 29.755736192721457 ], [ -95.463167027042161, 29.756669193615117 ], [ -95.463180026936968, 29.75703219346061 ], [ -95.463212027441671, 29.757586193533449 ], [ -95.463257027579857, 29.758162193785811 ], [ -95.46325402695868, 29.758469193481616 ], [ -95.463256026837072, 29.759026193455231 ], [ -95.463279026741404, 29.759986193491322 ], [ -95.463284027568591, 29.760068193531467 ], [ -95.463357027767714, 29.761376194193648 ], [ -95.463375027396523, 29.762269194614134 ], [ -95.464055027997858, 29.762178194451216 ], [ -95.465317028155184, 29.762174194293632 ], [ -95.465722027978913, 29.762176194330973 ], [ -95.466302028410382, 29.762242193976231 ], [ -95.466941028416201, 29.762505194177088 ], [ -95.467689028274322, 29.762958194115669 ], [ -95.467945028053393, 29.763059194240899 ], [ -95.468261028990128, 29.76314819410441 ], [ -95.468652028574212, 29.763213194328966 ], [ -95.469406029400545, 29.763210193982236 ], [ -95.469925029568145, 29.763232194162995 ], [ -95.47034202938292, 29.763271194062614 ], [ -95.470614029706326, 29.763327194023038 ], [ -95.471057029828955, 29.763470194668475 ], [ -95.471406029565344, 29.763651193945652 ], [ -95.471654029231615, 29.76375419395335 ], [ -95.471795029843193, 29.763797193966553 ], [ -95.471965029872223, 29.76384119472646 ], [ -95.472276029377952, 29.763878194717474 ], [ -95.472598030055153, 29.763881194030759 ], [ -95.473934030422512, 29.763858194667076 ], [ -95.474779030486559, 29.763838194093513 ], [ -95.477943030848238, 29.763797193688053 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1041, "Tract": "48201431804", "Area_SqMi": 0.41721680179726567, "total_2009": 24443, "total_2010": 26829, "total_2011": 27623, "total_2012": 25867, "total_2013": 27457, "total_2014": 25218, "total_2015": 26338, "total_2016": 26867, "total_2017": 25687, "total_2018": 25317, "total_2019": 25808, "total_2020": 25003, "age1": 5484, "age2": 16152, "age3": 5376, "earn1": 2971, "earn2": 4737, "earn3": 19304, "naics_s01": 34, "naics_s02": 484, "naics_s03": 1024, "naics_s04": 330, "naics_s05": 119, "naics_s06": 1302, "naics_s07": 995, "naics_s08": 437, "naics_s09": 453, "naics_s10": 5289, "naics_s11": 2328, "naics_s12": 4179, "naics_s13": 1903, "naics_s14": 1553, "naics_s15": 58, "naics_s16": 519, "naics_s17": 134, "naics_s18": 5453, "naics_s19": 417, "naics_s20": 1, "race1": 19239, "race2": 4635, "race3": 208, "race4": 2367, "race5": 39, "race6": 524, "ethnicity1": 19708, "ethnicity2": 7304, "edu1": 3435, "edu2": 4782, "edu3": 6342, "edu4": 6969, "Shape_Length": 17263.540969166308, "Shape_Area": 11631290.360414933, "total_2021": 24447, "total_2022": 27012 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.464264027184015, 29.744071190700669 ], [ -95.464262026573138, 29.743976190137698 ], [ -95.46426102653345, 29.743924190160577 ], [ -95.464199026437655, 29.740737189706202 ], [ -95.464195026161462, 29.740617189762371 ], [ -95.464166026699473, 29.740619190112596 ], [ -95.462088026365038, 29.740746189762184 ], [ -95.461913026257733, 29.74074018989209 ], [ -95.460880025352722, 29.740782189718747 ], [ -95.460511025583202, 29.740792190401777 ], [ -95.459373025211605, 29.740883190478215 ], [ -95.458718025631683, 29.740924190475891 ], [ -95.458448024688991, 29.74094018995951 ], [ -95.458314025409564, 29.740948189788948 ], [ -95.458283024699739, 29.741076190192228 ], [ -95.458239024950799, 29.741253190317209 ], [ -95.458041024750258, 29.742061190372599 ], [ -95.45753402555107, 29.744129190845015 ], [ -95.457253024970882, 29.745271191125248 ], [ -95.456683024605326, 29.747334191602171 ], [ -95.456645024905242, 29.747487191221619 ], [ -95.456598025450063, 29.747677191599152 ], [ -95.45657702542654, 29.747718191464159 ], [ -95.456555024562846, 29.747805191837546 ], [ -95.456501025193063, 29.748012191675933 ], [ -95.456234024467562, 29.749227191985586 ], [ -95.455743024793392, 29.751591192424456 ], [ -95.455722024970214, 29.751806192055184 ], [ -95.455675024815662, 29.752191192867734 ], [ -95.45562302528171, 29.752934192430427 ], [ -95.455654024780998, 29.753862192551033 ], [ -95.455659025314887, 29.754168193343602 ], [ -95.455663024730882, 29.754378192711432 ], [ -95.455670025019998, 29.754795193479097 ], [ -95.455677025355527, 29.75519519283252 ], [ -95.455714024807534, 29.757372193943535 ], [ -95.455721025124433, 29.757776193527711 ], [ -95.455721024783458, 29.75783319385889 ], [ -95.455993024844105, 29.757651193507254 ], [ -95.455993024764268, 29.758213193980911 ], [ -95.456864025435578, 29.75823619386032 ], [ -95.457435025609925, 29.758165193239982 ], [ -95.457577025739099, 29.758007194071951 ], [ -95.457679025713674, 29.757836193487204 ], [ -95.457724025647451, 29.757408193719243 ], [ -95.457715025585117, 29.756287193696522 ], [ -95.457712025644057, 29.755898192781029 ], [ -95.457717025923415, 29.755340193128365 ], [ -95.457721025235443, 29.754905193211361 ], [ -95.458046025379375, 29.754906192643865 ], [ -95.458733025575484, 29.754908193075934 ], [ -95.458737026251711, 29.754598192675285 ], [ -95.458740025744973, 29.754320192605054 ], [ -95.458913025878786, 29.754322193147043 ], [ -95.459619026167189, 29.754315192725159 ], [ -95.462513026746819, 29.754242192544712 ], [ -95.463091027296258, 29.754213192709699 ], [ -95.463042026836007, 29.753052192112118 ], [ -95.463040026780106, 29.752684192687749 ], [ -95.463035026810047, 29.752551192052575 ], [ -95.463024026444629, 29.752227191885851 ], [ -95.463010026496448, 29.751726191963737 ], [ -95.463006026789557, 29.751566192453879 ], [ -95.462994026760796, 29.750958192219091 ], [ -95.462965026502317, 29.750324191861754 ], [ -95.462960026577434, 29.750199192195371 ], [ -95.462967026210976, 29.749777191792361 ], [ -95.463192027106459, 29.749053191347389 ], [ -95.46326202657697, 29.748921191903221 ], [ -95.463324026627362, 29.748641191723582 ], [ -95.463323026541417, 29.74838719104795 ], [ -95.463309026527511, 29.748015191611753 ], [ -95.463303026979403, 29.747857191785279 ], [ -95.463277026846583, 29.747388191123758 ], [ -95.463256026967173, 29.747011191166411 ], [ -95.46323402707759, 29.746930190821917 ], [ -95.463090026395193, 29.746580191491407 ], [ -95.463150026880143, 29.746561191448638 ], [ -95.463347026251981, 29.746506191510626 ], [ -95.463652026330493, 29.746497191265121 ], [ -95.463963026342171, 29.746479191319235 ], [ -95.464121027099381, 29.74643519146889 ], [ -95.464211026368631, 29.746345190579124 ], [ -95.464261026375283, 29.746230191312065 ], [ -95.464258027190766, 29.746086191300783 ], [ -95.464255027000064, 29.745936191357117 ], [ -95.464248027123574, 29.74572619065621 ], [ -95.46423502721251, 29.744755190510187 ], [ -95.464229026610823, 29.744291190153032 ], [ -95.464264027184015, 29.744071190700669 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1042, "Tract": "48201430101", "Area_SqMi": 0.57571892750465792, "total_2009": 1611, "total_2010": 1717, "total_2011": 1881, "total_2012": 1829, "total_2013": 1836, "total_2014": 2057, "total_2015": 2363, "total_2016": 1969, "total_2017": 1895, "total_2018": 2187, "total_2019": 2283, "total_2020": 2272, "age1": 491, "age2": 1474, "age3": 658, "earn1": 643, "earn2": 676, "earn3": 1304, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 91, "naics_s05": 0, "naics_s06": 57, "naics_s07": 34, "naics_s08": 39, "naics_s09": 64, "naics_s10": 70, "naics_s11": 591, "naics_s12": 349, "naics_s13": 77, "naics_s14": 564, "naics_s15": 140, "naics_s16": 220, "naics_s17": 0, "naics_s18": 124, "naics_s19": 42, "naics_s20": 159, "race1": 1726, "race2": 653, "race3": 20, "race4": 166, "race5": 6, "race6": 52, "ethnicity1": 1893, "ethnicity2": 730, "edu1": 417, "edu2": 515, "edu3": 670, "edu4": 530, "Shape_Length": 19398.506373033888, "Shape_Area": 16050058.346037678, "total_2021": 2035, "total_2022": 2623 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.4755440317481, 29.783472198495041 ], [ -95.475551031151753, 29.783169198072468 ], [ -95.475537030919355, 29.782426198064538 ], [ -95.475535031336619, 29.782344197878114 ], [ -95.475514031558703, 29.781175197723787 ], [ -95.475452031098129, 29.779074197273861 ], [ -95.475443031683213, 29.778932196986197 ], [ -95.474682031392717, 29.778944197539921 ], [ -95.473957030749673, 29.778958196992782 ], [ -95.473050030142147, 29.778983197486625 ], [ -95.472796030640566, 29.778990196972522 ], [ -95.472346030414357, 29.7789991977562 ], [ -95.471865030482206, 29.779095197682015 ], [ -95.471624029789226, 29.779134197162989 ], [ -95.471007029935166, 29.779256197508573 ], [ -95.470691030267162, 29.779299197763251 ], [ -95.470163030178142, 29.779308197945902 ], [ -95.469525029700904, 29.77932019717883 ], [ -95.468115029339856, 29.779379198019029 ], [ -95.467974029171984, 29.77937919746099 ], [ -95.467394029214518, 29.779367197501042 ], [ -95.466710028428409, 29.779347198105434 ], [ -95.466208028424887, 29.77927019769146 ], [ -95.466017029117452, 29.779228197505123 ], [ -95.465442028848642, 29.779102197538986 ], [ -95.46500902814158, 29.778972197689061 ], [ -95.464132028093871, 29.778557197424412 ], [ -95.464040028432734, 29.778518197944788 ], [ -95.463718028566859, 29.77830919784952 ], [ -95.463393027567108, 29.778078197130348 ], [ -95.46334902753523, 29.778047197468993 ], [ -95.462800028249617, 29.777574197613326 ], [ -95.462390027293452, 29.777135197625991 ], [ -95.462008027922721, 29.776684197392257 ], [ -95.461984027989246, 29.7766331973754 ], [ -95.461749027431893, 29.776144197018898 ], [ -95.461671027376724, 29.77579419676437 ], [ -95.461641027047193, 29.775659197348492 ], [ -95.461559027473072, 29.774686196826284 ], [ -95.461526027193401, 29.774362197123764 ], [ -95.461301027011018, 29.773993196698402 ], [ -95.461198027187592, 29.773865196631814 ], [ -95.461001026965008, 29.773661196760063 ], [ -95.460826027057195, 29.773497196830931 ], [ -95.460489027215587, 29.773336197021809 ], [ -95.460103026572639, 29.773231196309808 ], [ -95.459782026541163, 29.773200196947577 ], [ -95.459643026416472, 29.773198196654832 ], [ -95.459419026980044, 29.773196196393194 ], [ -95.458608026939189, 29.773205196828346 ], [ -95.457607026739382, 29.773216196417636 ], [ -95.456642026455853, 29.773228196346526 ], [ -95.456583026405283, 29.773229197166142 ], [ -95.456531026460837, 29.77322919697642 ], [ -95.456450026474059, 29.773230196437201 ], [ -95.456202026341956, 29.773234196926747 ], [ -95.456189026514053, 29.773338196863758 ], [ -95.456188026308084, 29.773384197070364 ], [ -95.45614902607349, 29.773895197040176 ], [ -95.456061025527191, 29.775135197546909 ], [ -95.455978026478988, 29.776085197253931 ], [ -95.455834026167452, 29.777131197921982 ], [ -95.455693026523591, 29.777873197443967 ], [ -95.455475026078034, 29.778556198172957 ], [ -95.455274025527359, 29.779045198386783 ], [ -95.455086025614989, 29.779383198068064 ], [ -95.454780025532813, 29.7798251980423 ], [ -95.454536025623625, 29.780182198366099 ], [ -95.454342025580544, 29.780395198477951 ], [ -95.45428302622642, 29.780460198391783 ], [ -95.454139025829164, 29.780616198622038 ], [ -95.454057025663928, 29.780705198621142 ], [ -95.45403402553886, 29.780730198031254 ], [ -95.454008025448161, 29.78075719865361 ], [ -95.453966025400447, 29.780817198045472 ], [ -95.453932025476277, 29.780866198288738 ], [ -95.453875026121736, 29.780942198178693 ], [ -95.453920025419336, 29.78097119826802 ], [ -95.453943025572883, 29.780986198524076 ], [ -95.454051026275664, 29.781063198027926 ], [ -95.454098025410346, 29.781096198214083 ], [ -95.454129025603848, 29.781117198730765 ], [ -95.455503025777091, 29.782025199025114 ], [ -95.456441026271108, 29.78258919903125 ], [ -95.456658026395132, 29.782687198602726 ], [ -95.456811026203809, 29.782771198397889 ], [ -95.456958026581191, 29.782850198555295 ], [ -95.457421026246536, 29.783127198660146 ], [ -95.457946027137851, 29.78342919865992 ], [ -95.45846102653438, 29.783678199115755 ], [ -95.458634026927115, 29.78374819903825 ], [ -95.458969026933389, 29.783857198858254 ], [ -95.459210027374141, 29.783924198826497 ], [ -95.459463027242137, 29.784002198968558 ], [ -95.459849027711101, 29.784096198770708 ], [ -95.460874027663294, 29.78430919844984 ], [ -95.461605028109773, 29.784421198974176 ], [ -95.461769028342218, 29.784432198982039 ], [ -95.462349027678997, 29.78444919874644 ], [ -95.462679028280817, 29.784460198520073 ], [ -95.463700028304388, 29.784455199194458 ], [ -95.464639028528978, 29.784436199210727 ], [ -95.467777029929735, 29.78447519915105 ], [ -95.468003029990086, 29.784469198618531 ], [ -95.468181029226045, 29.784469199076995 ], [ -95.46852802966842, 29.784464198987049 ], [ -95.469694029983401, 29.784462198189232 ], [ -95.470837029907486, 29.784381198484475 ], [ -95.472047030585472, 29.784294198150597 ], [ -95.473124031250833, 29.784195198852643 ], [ -95.474223031270796, 29.78406319884111 ], [ -95.47477203098731, 29.78405619844796 ], [ -95.475316031361317, 29.784032198592847 ], [ -95.475507031925517, 29.78401819830162 ], [ -95.475517031215645, 29.783924198120204 ], [ -95.475521031904591, 29.783883198205491 ], [ -95.475527031681395, 29.783817198210148 ], [ -95.475535031775934, 29.78372819840526 ], [ -95.4755440317481, 29.783472198495041 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1043, "Tract": "48201510902", "Area_SqMi": 1.5663299229754764, "total_2009": 7560, "total_2010": 6702, "total_2011": 6792, "total_2012": 8332, "total_2013": 8923, "total_2014": 8712, "total_2015": 9987, "total_2016": 9964, "total_2017": 9431, "total_2018": 9081, "total_2019": 8103, "total_2020": 7498, "age1": 1729, "age2": 3926, "age3": 1731, "earn1": 1252, "earn2": 2099, "earn3": 4035, "naics_s01": 0, "naics_s02": 8, "naics_s03": 0, "naics_s04": 965, "naics_s05": 341, "naics_s06": 1450, "naics_s07": 619, "naics_s08": 141, "naics_s09": 20, "naics_s10": 29, "naics_s11": 210, "naics_s12": 795, "naics_s13": 161, "naics_s14": 105, "naics_s15": 5, "naics_s16": 1637, "naics_s17": 62, "naics_s18": 171, "naics_s19": 667, "naics_s20": 0, "race1": 5276, "race2": 1589, "race3": 67, "race4": 336, "race5": 11, "race6": 107, "ethnicity1": 4975, "ethnicity2": 2411, "edu1": 1204, "edu2": 1548, "edu3": 1707, "edu4": 1198, "Shape_Length": 44281.223954637768, "Shape_Area": 43666597.452100791, "total_2021": 6928, "total_2022": 7386 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.453875026121736, 29.780942198178693 ], [ -95.453849025650356, 29.78092819808435 ], [ -95.45369902537314, 29.780811198606166 ], [ -95.453639025682946, 29.780767198588514 ], [ -95.453573025197883, 29.780722198493528 ], [ -95.453355025993318, 29.78060819861502 ], [ -95.452715025367112, 29.780223197989823 ], [ -95.452430025509727, 29.780024198693816 ], [ -95.4523230253847, 29.779949198363411 ], [ -95.451251025430878, 29.779492198011589 ], [ -95.450685024939361, 29.779338198441902 ], [ -95.450505024854507, 29.779290198429695 ], [ -95.450161025218833, 29.779233198610424 ], [ -95.449758024823026, 29.7791671981146 ], [ -95.449248024119882, 29.779157198571745 ], [ -95.448801024288301, 29.779149198608796 ], [ -95.447712023726851, 29.779141198091764 ], [ -95.44568302318973, 29.779156198733105 ], [ -95.44386602343674, 29.779141198277252 ], [ -95.443022022749261, 29.779160198088867 ], [ -95.441951022421222, 29.779122198540414 ], [ -95.441287022835567, 29.779091198946354 ], [ -95.438232021980511, 29.778676198971713 ], [ -95.436382021368502, 29.778474198882019 ], [ -95.434828020781453, 29.778324198597758 ], [ -95.433426020620217, 29.778158198279073 ], [ -95.43033301968859, 29.777794198221056 ], [ -95.429850019474529, 29.777741198984664 ], [ -95.429497019504652, 29.777697198305219 ], [ -95.429169019614818, 29.777660198478038 ], [ -95.428711018837092, 29.777605198374008 ], [ -95.42790101920049, 29.777519198534094 ], [ -95.427352018393833, 29.777509198813377 ], [ -95.426529019023064, 29.777472199110619 ], [ -95.425681018031099, 29.777463198381199 ], [ -95.425522018319128, 29.777465198664874 ], [ -95.424944017827002, 29.777471198560189 ], [ -95.426570019067924, 29.778188198987628 ], [ -95.427332018441604, 29.778568198753803 ], [ -95.428183018712431, 29.779017198551696 ], [ -95.42886501977884, 29.779368198860645 ], [ -95.429571019157379, 29.779733199464033 ], [ -95.430835019844594, 29.780399199191184 ], [ -95.431173020289108, 29.78057219917531 ], [ -95.432156020592856, 29.781151199656808 ], [ -95.433759020429477, 29.782121199044099 ], [ -95.435711021543483, 29.783365199325893 ], [ -95.436753021253921, 29.783931199740952 ], [ -95.436122021082355, 29.783935199756268 ], [ -95.433550020971282, 29.783903199956807 ], [ -95.425585018238579, 29.783772199608496 ], [ -95.425362018387901, 29.783760199965837 ], [ -95.423772018407206, 29.783742199705149 ], [ -95.418906016935594, 29.783695199766921 ], [ -95.41794201649428, 29.783565200357156 ], [ -95.417748016521642, 29.783524200017204 ], [ -95.415981016414364, 29.783441200263955 ], [ -95.414835016251658, 29.783353200424422 ], [ -95.413663015960495, 29.783325200048012 ], [ -95.413574016026629, 29.783323200358371 ], [ -95.413479015490879, 29.783323200077824 ], [ -95.411194015052814, 29.783327200820061 ], [ -95.409662014023752, 29.783329200450382 ], [ -95.409703014170887, 29.78346120031809 ], [ -95.409715014775287, 29.785145201208 ], [ -95.409776014929434, 29.785990200539469 ], [ -95.409787014656757, 29.786301200974005 ], [ -95.409797015021439, 29.786754201203109 ], [ -95.4098170146912, 29.78731920103937 ], [ -95.409827014412414, 29.787610201622538 ], [ -95.409849014342569, 29.788246201352287 ], [ -95.409859014771115, 29.788667201477935 ], [ -95.409861015093554, 29.788771201484078 ], [ -95.409876014860131, 29.789456201561791 ], [ -95.409890015264011, 29.789977202164309 ], [ -95.409903014882914, 29.790511202007913 ], [ -95.410570015251508, 29.790472202247752 ], [ -95.410840015376706, 29.790458202111481 ], [ -95.411281015676209, 29.790432201868008 ], [ -95.411807014904738, 29.790384201612742 ], [ -95.41246201535364, 29.79034020183893 ], [ -95.413407015948536, 29.790296201733224 ], [ -95.414328015601711, 29.790218201885768 ], [ -95.41534301593326, 29.790148201431403 ], [ -95.416354016152155, 29.790130201652094 ], [ -95.416961017128344, 29.79012420154292 ], [ -95.417067016999411, 29.790123201521663 ], [ -95.417144016445874, 29.79012220160071 ], [ -95.41920701780019, 29.790102201454388 ], [ -95.420070017901935, 29.790030201405713 ], [ -95.420658017686847, 29.789866201326301 ], [ -95.421802017735644, 29.78948920116596 ], [ -95.422662018204946, 29.789306200872659 ], [ -95.423162018672173, 29.78928320141987 ], [ -95.425406018991836, 29.789274200696362 ], [ -95.426500018632083, 29.789281201279156 ], [ -95.427817018935997, 29.789281201391912 ], [ -95.429893020284382, 29.789252201186041 ], [ -95.430829020622454, 29.78924620050941 ], [ -95.436394021191703, 29.789236200550224 ], [ -95.437844022151182, 29.789221200815867 ], [ -95.438006022572281, 29.78922220058266 ], [ -95.438606021919909, 29.789227200527645 ], [ -95.439448022704099, 29.789224200532658 ], [ -95.441256022692102, 29.78921820038882 ], [ -95.441658023342143, 29.789213200590918 ], [ -95.441732023469157, 29.789212200823727 ], [ -95.441816022829357, 29.789210200956404 ], [ -95.441883023125826, 29.78920820019929 ], [ -95.442812023556584, 29.789187200770634 ], [ -95.443306023177158, 29.789176200578293 ], [ -95.443598023167354, 29.789403200217855 ], [ -95.443674023229534, 29.789457200741541 ], [ -95.443779023479678, 29.789531200521257 ], [ -95.443825023377102, 29.789563200140634 ], [ -95.444876024068265, 29.790345201028366 ], [ -95.444910023461773, 29.790370200606944 ], [ -95.444976023667394, 29.7904192007612 ], [ -95.44527602362632, 29.790642200539128 ], [ -95.44643402474297, 29.791504200837828 ], [ -95.447905024956199, 29.7925682008051 ], [ -95.448105024592806, 29.79271620077261 ], [ -95.448605025094963, 29.793083200760389 ], [ -95.448941024683009, 29.793334201250776 ], [ -95.449177025140358, 29.793499201261955 ], [ -95.449684024847045, 29.793855201361019 ], [ -95.450018025205281, 29.794101201350777 ], [ -95.450312025588119, 29.79431020172699 ], [ -95.450446025588988, 29.794409201531938 ], [ -95.450532025317486, 29.794473201259777 ], [ -95.450660025682325, 29.794567201114166 ], [ -95.450805026011807, 29.794674201247204 ], [ -95.450897025487308, 29.794741201090403 ], [ -95.451004025462055, 29.794821201565309 ], [ -95.451270026111914, 29.795017201430884 ], [ -95.451377025496285, 29.7947572012094 ], [ -95.451618025365278, 29.793758200848703 ], [ -95.451688025698104, 29.793468201062797 ], [ -95.451740025916862, 29.793246200711639 ], [ -95.451745025661722, 29.793223201141668 ], [ -95.452222026129689, 29.79116420071912 ], [ -95.452263025625214, 29.790866200955396 ], [ -95.452291026031233, 29.790157200478557 ], [ -95.452317025477711, 29.789860199986812 ], [ -95.452311025371259, 29.789332200202853 ], [ -95.452239026046726, 29.78808320029475 ], [ -95.452177025567096, 29.787515199571729 ], [ -95.452030025634741, 29.785812199194467 ], [ -95.452032025514058, 29.784817199174437 ], [ -95.452022025095303, 29.784661199130014 ], [ -95.452083025567489, 29.784113199491784 ], [ -95.452161025029767, 29.783789198708657 ], [ -95.452291025856724, 29.783454199130787 ], [ -95.452322025737459, 29.783361199178472 ], [ -95.452360025267893, 29.783259199218804 ], [ -95.452389025041128, 29.783216198657961 ], [ -95.452535025192816, 29.782926199248127 ], [ -95.452776025985557, 29.782428199162396 ], [ -95.453145025563416, 29.781847198755393 ], [ -95.453491026046066, 29.781363198585833 ], [ -95.45364702593848, 29.781201198955127 ], [ -95.453728025232763, 29.781117198623555 ], [ -95.453802025379829, 29.781038198727327 ], [ -95.453875026121736, 29.780942198178693 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1044, "Tract": "48201510802", "Area_SqMi": 2.7903859321344009, "total_2009": 2754, "total_2010": 3450, "total_2011": 571, "total_2012": 537, "total_2013": 581, "total_2014": 737, "total_2015": 713, "total_2016": 671, "total_2017": 662, "total_2018": 704, "total_2019": 728, "total_2020": 692, "age1": 164, "age2": 350, "age3": 159, "earn1": 152, "earn2": 202, "earn3": 319, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 5, "naics_s06": 9, "naics_s07": 41, "naics_s08": 0, "naics_s09": 2, "naics_s10": 65, "naics_s11": 8, "naics_s12": 96, "naics_s13": 2, "naics_s14": 33, "naics_s15": 16, "naics_s16": 34, "naics_s17": 82, "naics_s18": 205, "naics_s19": 75, "naics_s20": 0, "race1": 509, "race2": 77, "race3": 14, "race4": 52, "race5": 1, "race6": 20, "ethnicity1": 411, "ethnicity2": 262, "edu1": 128, "edu2": 132, "edu3": 134, "edu4": 115, "Shape_Length": 40596.680458495146, "Shape_Area": 77791183.994654268, "total_2021": 736, "total_2022": 673 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.456207025629112, 29.773043196320568 ], [ -95.45624902576742, 29.771973196531775 ], [ -95.456207025397532, 29.770985196288422 ], [ -95.456181025377333, 29.769797195864026 ], [ -95.456137025913719, 29.768421195638517 ], [ -95.456122025521907, 29.768162195945312 ], [ -95.456025025499912, 29.766318195653184 ], [ -95.456001026024197, 29.766014195633456 ], [ -95.455966025487612, 29.765661195215316 ], [ -95.455939025661735, 29.765174194787907 ], [ -95.455900025876147, 29.764466194637738 ], [ -95.455808025727819, 29.763366194434841 ], [ -95.45572802552222, 29.760091194017509 ], [ -95.455729025298268, 29.760027193959623 ], [ -95.455729025273712, 29.759962194402824 ], [ -95.455523025432669, 29.759955193814662 ], [ -95.455433025570784, 29.759952193897021 ], [ -95.455294025160356, 29.759929193948512 ], [ -95.455071024725555, 29.759892193900587 ], [ -95.453562024853667, 29.759083193788346 ], [ -95.453224024208652, 29.758930194108476 ], [ -95.452941024881056, 29.758801194040682 ], [ -95.452669024726092, 29.758588193529189 ], [ -95.452663024648857, 29.758270193594431 ], [ -95.452942024543162, 29.757522193563574 ], [ -95.452934024070871, 29.757415194058822 ], [ -95.452846024461877, 29.757297193829775 ], [ -95.452651023883107, 29.757244193887548 ], [ -95.452116024526617, 29.757234193996748 ], [ -95.451530023889589, 29.757063193603827 ], [ -95.451184023718852, 29.756867193775278 ], [ -95.450761023781212, 29.756474193137322 ], [ -95.450436023864697, 29.756324193156924 ], [ -95.4498680233458, 29.756235193813229 ], [ -95.448587022944423, 29.756172193792949 ], [ -95.448408023332149, 29.756106193770037 ], [ -95.447830022799906, 29.755893193626171 ], [ -95.446503023047839, 29.755106193539671 ], [ -95.446381022899942, 29.754880193047292 ], [ -95.446283022374885, 29.754241193257226 ], [ -95.446174022232242, 29.75404719320921 ], [ -95.446057022403892, 29.753947193159089 ], [ -95.445816022195373, 29.753915193312849 ], [ -95.445107022408877, 29.754097193458247 ], [ -95.443916021529802, 29.754075193557508 ], [ -95.443392021917447, 29.753983193559389 ], [ -95.442652021263143, 29.753600193041425 ], [ -95.442448021596533, 29.753617193176773 ], [ -95.44206302106717, 29.753748192827672 ], [ -95.441512021790714, 29.754058193447847 ], [ -95.441358021414388, 29.754427193450557 ], [ -95.441153021375555, 29.755229193414486 ], [ -95.440970021457474, 29.75550819384938 ], [ -95.440754020978588, 29.755705193499733 ], [ -95.440481021340446, 29.755865193611434 ], [ -95.440242020773397, 29.756112193992113 ], [ -95.440100020666563, 29.756330193677815 ], [ -95.439847020951674, 29.756934194431921 ], [ -95.439677020972823, 29.757087193623988 ], [ -95.439357020831622, 29.757137194009015 ], [ -95.438342020839173, 29.756995194209122 ], [ -95.4381810210091, 29.757025193647639 ], [ -95.438028020150469, 29.757137193851094 ], [ -95.438028020708373, 29.757349194112273 ], [ -95.438213020892675, 29.757785194531465 ], [ -95.438916020652783, 29.758435194456183 ], [ -95.439210021117162, 29.758781194623428 ], [ -95.439237020915357, 29.75895819432235 ], [ -95.439191020911551, 29.759205194447151 ], [ -95.439040021211724, 29.759408194604177 ], [ -95.438911020706257, 29.759500194522339 ], [ -95.438786020715099, 29.759589194622258 ], [ -95.438589021368628, 29.759634194922498 ], [ -95.438387021119027, 29.759596194193058 ], [ -95.437924020644004, 29.759365194463687 ], [ -95.437310020434467, 29.758944194363757 ], [ -95.436296020427747, 29.758464194869418 ], [ -95.435528019720877, 29.75798319449391 ], [ -95.434816019902115, 29.757806194206882 ], [ -95.43381601946858, 29.757677194586375 ], [ -95.433758019282763, 29.757670194387362 ], [ -95.433559019808214, 29.757712194108144 ], [ -95.433431019153289, 29.757801194306492 ], [ -95.433247019677339, 29.758159194283625 ], [ -95.433205019099901, 29.758840194976838 ], [ -95.433268019214438, 29.759446194583578 ], [ -95.433202019826425, 29.75968519482856 ], [ -95.433047019093124, 29.759803194877964 ], [ -95.432742019031863, 29.759905194471568 ], [ -95.431930019641925, 29.759670195208258 ], [ -95.431089018715682, 29.758770194586695 ], [ -95.43068201867564, 29.758523194471231 ], [ -95.430277018975715, 29.758349194214908 ], [ -95.429958018573629, 29.758279194936581 ], [ -95.429341018518556, 29.75828919419677 ], [ -95.428962018068887, 29.758423194508264 ], [ -95.42865301870745, 29.758710194319196 ], [ -95.428504018660803, 29.758925194815671 ], [ -95.428467018636226, 29.759349194731904 ], [ -95.428503017991645, 29.759526195020761 ], [ -95.428693018354224, 29.759801194700405 ], [ -95.428905018744359, 29.759913195367027 ], [ -95.429412018768247, 29.760060195082371 ], [ -95.42955601859309, 29.760185195181009 ], [ -95.429532018182087, 29.760321194665547 ], [ -95.429277018877642, 29.760500195368106 ], [ -95.429039018289117, 29.760550194721329 ], [ -95.428323018439258, 29.760547195187051 ], [ -95.428302017785185, 29.760640195350266 ], [ -95.428221017907319, 29.760998195520255 ], [ -95.427763018413941, 29.761903195129516 ], [ -95.427491018033407, 29.762161195287788 ], [ -95.427166018359529, 29.762498195485655 ], [ -95.427038018056223, 29.762446195480855 ], [ -95.42704301767283, 29.762659195875024 ], [ -95.42708501791877, 29.762792195965115 ], [ -95.427242018453995, 29.762974195522421 ], [ -95.427304017858731, 29.763200195524394 ], [ -95.427319018549383, 29.763511196240085 ], [ -95.425800017756416, 29.763541195692678 ], [ -95.425056017398731, 29.763217195638383 ], [ -95.424609017850898, 29.762966195669485 ], [ -95.424191017613879, 29.762556195701734 ], [ -95.423638017526841, 29.761987195918014 ], [ -95.422756016869641, 29.761522195686055 ], [ -95.422687016862582, 29.761506195506929 ], [ -95.422695016855911, 29.761670195577423 ], [ -95.422530016500204, 29.762020195786846 ], [ -95.422419017241808, 29.762363195933119 ], [ -95.422351016718267, 29.762635195816433 ], [ -95.422311016568401, 29.762879195539327 ], [ -95.422268016921706, 29.763437196070022 ], [ -95.422314016774948, 29.76414219580035 ], [ -95.42233901661983, 29.764367196007207 ], [ -95.422439017156833, 29.764818196387818 ], [ -95.422461016734871, 29.765019196118299 ], [ -95.422418017146185, 29.765238196115661 ], [ -95.422357017473686, 29.76540619675891 ], [ -95.422242017217627, 29.765575196395819 ], [ -95.422104016719899, 29.765715196113639 ], [ -95.421899016501158, 29.765834196465875 ], [ -95.421728016564614, 29.765876196459448 ], [ -95.42099001691318, 29.765862196201859 ], [ -95.421015016683285, 29.767384196605185 ], [ -95.421037016527464, 29.768892197313921 ], [ -95.421026017002134, 29.770133197157868 ], [ -95.42109801699354, 29.770242197098071 ], [ -95.421162016450594, 29.770410197285614 ], [ -95.421167016559181, 29.770543197537172 ], [ -95.42116601701008, 29.770701197168147 ], [ -95.421156016514118, 29.770967197882189 ], [ -95.421853017193683, 29.771047197419914 ], [ -95.422158017232704, 29.771062197233586 ], [ -95.422721016983033, 29.771096197198105 ], [ -95.422948017285094, 29.771169197135883 ], [ -95.423106017116098, 29.771270197552422 ], [ -95.423230017465713, 29.771416197352249 ], [ -95.423636017374832, 29.771801197896238 ], [ -95.424192017320408, 29.772413197571296 ], [ -95.424880017925958, 29.773233197987896 ], [ -95.425041018021133, 29.773397197896269 ], [ -95.425905018105766, 29.774396197927935 ], [ -95.426209018541954, 29.77473519828326 ], [ -95.426772018648805, 29.775393198270347 ], [ -95.427252018829776, 29.775930197950171 ], [ -95.427309019084703, 29.775998198484736 ], [ -95.42801201886985, 29.776668198386986 ], [ -95.428379019003444, 29.777016198232225 ], [ -95.428713019251219, 29.777287198194927 ], [ -95.428852019254251, 29.777401198504499 ], [ -95.429021018834916, 29.777539198766718 ], [ -95.429169019614818, 29.777660198478038 ], [ -95.429497019504652, 29.777697198305219 ], [ -95.429850019474529, 29.777741198984664 ], [ -95.43033301968859, 29.777794198221056 ], [ -95.433426020620217, 29.778158198279073 ], [ -95.434828020781453, 29.778324198597758 ], [ -95.436382021368502, 29.778474198882019 ], [ -95.438232021980511, 29.778676198971713 ], [ -95.441287022835567, 29.779091198946354 ], [ -95.441951022421222, 29.779122198540414 ], [ -95.443022022749261, 29.779160198088867 ], [ -95.44386602343674, 29.779141198277252 ], [ -95.44568302318973, 29.779156198733105 ], [ -95.447712023726851, 29.779141198091764 ], [ -95.448801024288301, 29.779149198608796 ], [ -95.449248024119882, 29.779157198571745 ], [ -95.449758024823026, 29.7791671981146 ], [ -95.450161025218833, 29.779233198610424 ], [ -95.450505024854507, 29.779290198429695 ], [ -95.450685024939361, 29.779338198441902 ], [ -95.451251025430878, 29.779492198011589 ], [ -95.4523230253847, 29.779949198363411 ], [ -95.452430025509727, 29.780024198693816 ], [ -95.452715025367112, 29.780223197989823 ], [ -95.453355025993318, 29.78060819861502 ], [ -95.453573025197883, 29.780722198493528 ], [ -95.453639025682946, 29.780767198588514 ], [ -95.45369902537314, 29.780811198606166 ], [ -95.453849025650356, 29.78092819808435 ], [ -95.453875026121736, 29.780942198178693 ], [ -95.453932025476277, 29.780866198288738 ], [ -95.453966025400447, 29.780817198045472 ], [ -95.454008025448161, 29.78075719865361 ], [ -95.45403402553886, 29.780730198031254 ], [ -95.454057025663928, 29.780705198621142 ], [ -95.454139025829164, 29.780616198622038 ], [ -95.45428302622642, 29.780460198391783 ], [ -95.454342025580544, 29.780395198477951 ], [ -95.454536025623625, 29.780182198366099 ], [ -95.454780025532813, 29.7798251980423 ], [ -95.455086025614989, 29.779383198068064 ], [ -95.455274025527359, 29.779045198386783 ], [ -95.455475026078034, 29.778556198172957 ], [ -95.455693026523591, 29.777873197443967 ], [ -95.455834026167452, 29.777131197921982 ], [ -95.455978026478988, 29.776085197253931 ], [ -95.456061025527191, 29.775135197546909 ], [ -95.45614902607349, 29.773895197040176 ], [ -95.456188026308084, 29.773384197070364 ], [ -95.456189026514053, 29.773338196863758 ], [ -95.456202026341956, 29.773234196926747 ], [ -95.456207025629112, 29.773043196320568 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1045, "Tract": "48201232704", "Area_SqMi": 1.4865277330303892, "total_2009": 1489, "total_2010": 1227, "total_2011": 1156, "total_2012": 1883, "total_2013": 796, "total_2014": 871, "total_2015": 1036, "total_2016": 746, "total_2017": 760, "total_2018": 941, "total_2019": 902, "total_2020": 841, "age1": 185, "age2": 379, "age3": 153, "earn1": 177, "earn2": 244, "earn3": 296, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 36, "naics_s05": 1, "naics_s06": 34, "naics_s07": 40, "naics_s08": 7, "naics_s09": 0, "naics_s10": 50, "naics_s11": 73, "naics_s12": 26, "naics_s13": 0, "naics_s14": 165, "naics_s15": 0, "naics_s16": 109, "naics_s17": 0, "naics_s18": 162, "naics_s19": 14, "naics_s20": 0, "race1": 506, "race2": 165, "race3": 6, "race4": 29, "race5": 0, "race6": 11, "ethnicity1": 412, "ethnicity2": 305, "edu1": 161, "edu2": 145, "edu3": 143, "edu4": 83, "Shape_Length": 42267.654511211163, "Shape_Area": 41441848.97924488, "total_2021": 834, "total_2022": 717 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.218917966313768, 29.802616210664013 ], [ -95.218887966348746, 29.800636210633574 ], [ -95.218850966830331, 29.799654210330235 ], [ -95.218829966601362, 29.797987209656672 ], [ -95.218762965872259, 29.795386209743743 ], [ -95.218737966527314, 29.794058209458914 ], [ -95.218734965975131, 29.793099209174809 ], [ -95.218721965975519, 29.792680208563038 ], [ -95.218698965788036, 29.792103208665335 ], [ -95.218657965462185, 29.788800207632821 ], [ -95.218693966118309, 29.787971207625461 ], [ -95.21869596610955, 29.787139208081921 ], [ -95.218697966154593, 29.786678207681472 ], [ -95.218697965966072, 29.786618207230749 ], [ -95.218695965618508, 29.78653020737077 ], [ -95.218661965355437, 29.784149206959398 ], [ -95.218602965132732, 29.780932206743575 ], [ -95.218597965641123, 29.780652206652292 ], [ -95.218581965341443, 29.779976206412329 ], [ -95.218560965382025, 29.779076205618047 ], [ -95.218550965350346, 29.778650206200187 ], [ -95.21853996505746, 29.778172205611444 ], [ -95.218536965140629, 29.778041206142898 ], [ -95.218528964958978, 29.777760205801705 ], [ -95.218524964827296, 29.777548205983798 ], [ -95.218497965603277, 29.77653120518336 ], [ -95.21828096464634, 29.775842204972463 ], [ -95.217480964404245, 29.774696205420277 ], [ -95.217329964984856, 29.774482205437806 ], [ -95.217160964299225, 29.774348205345436 ], [ -95.215390963870988, 29.772740204492223 ], [ -95.213901963589734, 29.771387204959435 ], [ -95.213703964032746, 29.770998204303211 ], [ -95.213668963835445, 29.770743204951845 ], [ -95.213408964095365, 29.770770204411942 ], [ -95.209778962767416, 29.771147204730795 ], [ -95.209135962821037, 29.771203204355484 ], [ -95.207950962038879, 29.771322204911375 ], [ -95.206426961491431, 29.771398205064493 ], [ -95.206213961570725, 29.771408205311886 ], [ -95.206001962194904, 29.77141820466294 ], [ -95.203909961456304, 29.771518204575976 ], [ -95.203185961092885, 29.771552204985205 ], [ -95.202260960619057, 29.771581204906958 ], [ -95.201738961002519, 29.771606205274114 ], [ -95.201270960776654, 29.771629204789914 ], [ -95.200604960241748, 29.771661204754551 ], [ -95.200378960785827, 29.771661205259555 ], [ -95.199629960180033, 29.771663205243158 ], [ -95.198800959548947, 29.771652204952645 ], [ -95.197991959276976, 29.771589205128944 ], [ -95.19766595924365, 29.771572204875003 ], [ -95.1972889593019, 29.771552204853247 ], [ -95.197033959342477, 29.77153920557279 ], [ -95.197043959246386, 29.771671205001656 ], [ -95.197062959152504, 29.771917205297058 ], [ -95.197033959259983, 29.772055204946611 ], [ -95.197018959345954, 29.772128205363718 ], [ -95.196738959446108, 29.772608205810723 ], [ -95.195422959400176, 29.773898206128784 ], [ -95.195190959475028, 29.77423920625484 ], [ -95.19515695880591, 29.77452420545897 ], [ -95.195309958801559, 29.775119205921101 ], [ -95.195750958987986, 29.775832205971074 ], [ -95.195970959260208, 29.776094206352337 ], [ -95.196740959986201, 29.776635206683697 ], [ -95.197146960005043, 29.776814206142827 ], [ -95.197507959378669, 29.776890206224834 ], [ -95.197796959770471, 29.776901206183815 ], [ -95.198515960161018, 29.776745206126968 ], [ -95.198806960071465, 29.776608206302662 ], [ -95.19918896058698, 29.776332205771308 ], [ -95.200111960103982, 29.775460205906768 ], [ -95.200717960742253, 29.775152205609267 ], [ -95.201355961260333, 29.775007205580845 ], [ -95.202890961479824, 29.775102205850803 ], [ -95.20361996139151, 29.775147205451805 ], [ -95.204352961188249, 29.775253205305809 ], [ -95.20473796175682, 29.775355205527095 ], [ -95.205534962172507, 29.7755452060515 ], [ -95.206027962142002, 29.775506206177251 ], [ -95.206422962197266, 29.775501205580031 ], [ -95.206549962445351, 29.775499205663106 ], [ -95.206932962649532, 29.775465205788592 ], [ -95.207071962633378, 29.77547620542116 ], [ -95.207254962750923, 29.77555820561852 ], [ -95.207469962575189, 29.775666205371873 ], [ -95.207610962278338, 29.775758205441878 ], [ -95.207823962074713, 29.775947206146103 ], [ -95.207927962313562, 29.776049206139437 ], [ -95.207986962279307, 29.776211205438084 ], [ -95.208104962477606, 29.776532206053368 ], [ -95.208055962280795, 29.778365206159837 ], [ -95.208174962725948, 29.778672206760959 ], [ -95.208356962912916, 29.77891120630996 ], [ -95.208549963031871, 29.779046206033257 ], [ -95.208789963273929, 29.77909620613503 ], [ -95.209409963132202, 29.778940205968031 ], [ -95.20990196345052, 29.778890206204391 ], [ -95.210272962820625, 29.778875206490639 ], [ -95.210721963533814, 29.778938206507611 ], [ -95.211205963816141, 29.779137205989485 ], [ -95.211933963527329, 29.77954720660302 ], [ -95.212522963934944, 29.780048206410331 ], [ -95.212721963646416, 29.780321206274792 ], [ -95.212841964239033, 29.780627206701688 ], [ -95.212882964195913, 29.780984206796543 ], [ -95.212817964276269, 29.78152120674515 ], [ -95.212979964161804, 29.782152207318816 ], [ -95.213841964799954, 29.783291207460522 ], [ -95.213865964547324, 29.783323207297673 ], [ -95.21406996450078, 29.784130207245834 ], [ -95.214343964976152, 29.784885207011275 ], [ -95.214883964936391, 29.785774207220548 ], [ -95.214882964341584, 29.786171208042418 ], [ -95.214712964208275, 29.786528208140076 ], [ -95.214482964407495, 29.786869207427916 ], [ -95.21402696448412, 29.787332207828737 ], [ -95.213543964622232, 29.78753120827043 ], [ -95.212562964421465, 29.787649208295928 ], [ -95.211915963580381, 29.787880208083514 ], [ -95.211549963829711, 29.788114208293422 ], [ -95.210039963943387, 29.789340208445566 ], [ -95.209745963397921, 29.789538208208526 ], [ -95.209329963902064, 29.78968620848989 ], [ -95.208878963261185, 29.789708208214218 ], [ -95.208161963210756, 29.789663208885059 ], [ -95.207069962733101, 29.789596208383049 ], [ -95.206832962804327, 29.789534208314453 ], [ -95.206153962145336, 29.789459209005013 ], [ -95.205807962843423, 29.789522208435503 ], [ -95.205517962909667, 29.789798209036956 ], [ -95.205362962837484, 29.790158208891892 ], [ -95.205369962122617, 29.790667208868161 ], [ -95.205500962249033, 29.791147208611942 ], [ -95.205620962861147, 29.791311209453557 ], [ -95.205647962432622, 29.791348209019226 ], [ -95.20620196258082, 29.792232209403444 ], [ -95.206206962304805, 29.792271209375794 ], [ -95.206328963086463, 29.792270209492226 ], [ -95.206390963192959, 29.792269209274174 ], [ -95.206376962744386, 29.792908209529092 ], [ -95.206538962837342, 29.793265209676836 ], [ -95.206327963213454, 29.793519209455805 ], [ -95.206306962481406, 29.793846209575204 ], [ -95.206350962874325, 29.794091209537306 ], [ -95.20639596335559, 29.794282209498508 ], [ -95.206784963166854, 29.794946209333112 ], [ -95.206811963172456, 29.795125210135122 ], [ -95.206852963377997, 29.795343210062736 ], [ -95.206803962721239, 29.795557209694088 ], [ -95.206607962726565, 29.795647209816 ], [ -95.206449963125451, 29.795722209908092 ], [ -95.206244962652221, 29.79573820981825 ], [ -95.205339962828162, 29.79559221029545 ], [ -95.204909962393842, 29.795523209606053 ], [ -95.204413962742819, 29.795524209638842 ], [ -95.204156962654963, 29.795626209820814 ], [ -95.203847962436896, 29.795962210117821 ], [ -95.203711962764658, 29.796298209728786 ], [ -95.203797962208398, 29.796685210020659 ], [ -95.204069962048834, 29.797127210023735 ], [ -95.204855963111186, 29.797913210833226 ], [ -95.206405962619215, 29.79923621097474 ], [ -95.207287963032499, 29.800091210515973 ], [ -95.207697963976571, 29.800586210533481 ], [ -95.207861963276528, 29.800875211041866 ], [ -95.208369963640848, 29.802168211407214 ], [ -95.208728963896263, 29.802733211501081 ], [ -95.208943963970754, 29.802951211490932 ], [ -95.209884963939132, 29.803462211125662 ], [ -95.210100964264527, 29.803630210960772 ], [ -95.210351964523099, 29.80391321107496 ], [ -95.210491964518823, 29.804212211734974 ], [ -95.210537964879947, 29.804460211197718 ], [ -95.210778964119683, 29.804759211331323 ], [ -95.211169964746233, 29.804950211534884 ], [ -95.211992964515815, 29.80496421127987 ], [ -95.212665964883541, 29.805129211558434 ], [ -95.212803965434944, 29.805210211217858 ], [ -95.212942965128633, 29.805110211941649 ], [ -95.213959964824269, 29.80437321146518 ], [ -95.214613965805853, 29.804057211524196 ], [ -95.218917966313768, 29.802616210664013 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1046, "Tract": "48201232703", "Area_SqMi": 0.25330819612942423, "total_2009": 1444, "total_2010": 1383, "total_2011": 1431, "total_2012": 1399, "total_2013": 1474, "total_2014": 1356, "total_2015": 1241, "total_2016": 841, "total_2017": 890, "total_2018": 852, "total_2019": 828, "total_2020": 749, "age1": 214, "age2": 359, "age3": 177, "earn1": 256, "earn2": 371, "earn3": 123, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 29, "naics_s06": 0, "naics_s07": 105, "naics_s08": 0, "naics_s09": 1, "naics_s10": 1, "naics_s11": 6, "naics_s12": 5, "naics_s13": 0, "naics_s14": 239, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 340, "naics_s19": 6, "naics_s20": 0, "race1": 562, "race2": 121, "race3": 13, "race4": 44, "race5": 1, "race6": 9, "ethnicity1": 340, "ethnicity2": 410, "edu1": 199, "edu2": 125, "edu3": 141, "edu4": 71, "Shape_Length": 11754.943111751845, "Shape_Area": 7061798.9667777969, "total_2021": 766, "total_2022": 750 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.228886967884733, 29.775092205061704 ], [ -95.228542967869203, 29.774716204426088 ], [ -95.228428967504726, 29.774502204505595 ], [ -95.228409967604222, 29.77441420471197 ], [ -95.228403967311323, 29.774216204269155 ], [ -95.228516967878619, 29.773792204563048 ], [ -95.228441967459815, 29.773578204469452 ], [ -95.228384967711065, 29.773094204905465 ], [ -95.228346967120615, 29.773012204020116 ], [ -95.228327967990097, 29.772918204859351 ], [ -95.228283967431906, 29.772814204233789 ], [ -95.228131967547498, 29.772588204487036 ], [ -95.228081967884634, 29.772495204004542 ], [ -95.228060967842154, 29.772416204564049 ], [ -95.227986967069938, 29.772137204547739 ], [ -95.227978967568944, 29.772121204729597 ], [ -95.226018966642059, 29.771687204104154 ], [ -95.221829965818515, 29.77076020388559 ], [ -95.221120965868479, 29.770607204042534 ], [ -95.220478965052891, 29.770510204243841 ], [ -95.219684965150861, 29.770446204060583 ], [ -95.219187964634031, 29.770440204061586 ], [ -95.218796965111395, 29.770436203910595 ], [ -95.21834596445953, 29.770450204519001 ], [ -95.216535964082951, 29.770506203917705 ], [ -95.215801963822358, 29.770547204208555 ], [ -95.215168964400078, 29.770583204197109 ], [ -95.21395096407538, 29.770714204222013 ], [ -95.213668963835445, 29.770743204951845 ], [ -95.213703964032746, 29.770998204303211 ], [ -95.213901963589734, 29.771387204959435 ], [ -95.215390963870988, 29.772740204492223 ], [ -95.217160964299225, 29.774348205345436 ], [ -95.217329964984856, 29.774482205437806 ], [ -95.217480964404245, 29.774696205420277 ], [ -95.21828096464634, 29.775842204972463 ], [ -95.219934966041833, 29.775783205577987 ], [ -95.220466965284444, 29.775774205037617 ], [ -95.22071596602251, 29.77577020537532 ], [ -95.221179965490165, 29.775762205466375 ], [ -95.221971966367761, 29.775749204846058 ], [ -95.222643966668727, 29.775740204885128 ], [ -95.223192966873114, 29.775721205046803 ], [ -95.223435966554192, 29.775749205189246 ], [ -95.223685966572461, 29.775796205353707 ], [ -95.223927966254507, 29.775880205088601 ], [ -95.224472966937029, 29.776099205502902 ], [ -95.225279967007481, 29.776426205456087 ], [ -95.225684966733809, 29.776545204877312 ], [ -95.226169967355517, 29.776555205652716 ], [ -95.226700967387586, 29.77639520489284 ], [ -95.226846967839833, 29.776296205011203 ], [ -95.227796967902449, 29.775660204883039 ], [ -95.227959968017629, 29.775549205254247 ], [ -95.228101967415753, 29.775499205385668 ], [ -95.228886967884733, 29.775092205061704 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1047, "Tract": "48201341102", "Area_SqMi": 0.79839931290369681, "total_2009": 5095, "total_2010": 3834, "total_2011": 4380, "total_2012": 3750, "total_2013": 3800, "total_2014": 3627, "total_2015": 3445, "total_2016": 4245, "total_2017": 3646, "total_2018": 3980, "total_2019": 4202, "total_2020": 3734, "age1": 912, "age2": 2381, "age3": 1085, "earn1": 977, "earn2": 1186, "earn3": 2215, "naics_s01": 11, "naics_s02": 32, "naics_s03": 22, "naics_s04": 36, "naics_s05": 101, "naics_s06": 185, "naics_s07": 212, "naics_s08": 129, "naics_s09": 13, "naics_s10": 48, "naics_s11": 112, "naics_s12": 1027, "naics_s13": 0, "naics_s14": 394, "naics_s15": 34, "naics_s16": 1452, "naics_s17": 30, "naics_s18": 291, "naics_s19": 62, "naics_s20": 187, "race1": 3175, "race2": 855, "race3": 30, "race4": 252, "race5": 5, "race6": 61, "ethnicity1": 3214, "ethnicity2": 1164, "edu1": 636, "edu2": 844, "edu3": 1139, "edu4": 847, "Shape_Length": 19034.968358413651, "Shape_Area": 22258006.369674288, "total_2021": 4074, "total_2022": 4378 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.128599932223253, 29.548962161871977 ], [ -95.128478932042867, 29.548819161714519 ], [ -95.128301931681065, 29.548610161248703 ], [ -95.127763931757215, 29.547974161647439 ], [ -95.126753931734882, 29.546903161355065 ], [ -95.126573931992795, 29.546712161224519 ], [ -95.126547931437074, 29.546685161608533 ], [ -95.126436931204296, 29.546573161469794 ], [ -95.125883931534531, 29.546010161350605 ], [ -95.124591930621435, 29.544641160770009 ], [ -95.124308930456408, 29.544339160880096 ], [ -95.123239930599212, 29.543251161176244 ], [ -95.122548930567007, 29.542475160520354 ], [ -95.122193929917998, 29.542075160124522 ], [ -95.121683930390674, 29.541665160040949 ], [ -95.121199930242724, 29.541148160315448 ], [ -95.120621929318517, 29.540531160432707 ], [ -95.119968929575933, 29.539833160575853 ], [ -95.119326929190734, 29.539147160197459 ], [ -95.118663928647862, 29.538440160173927 ], [ -95.118048929011564, 29.537783159500702 ], [ -95.117899928798764, 29.53789416015119 ], [ -95.117434928365981, 29.538239159947526 ], [ -95.117276928872428, 29.538356160252171 ], [ -95.116659928180638, 29.538816159743824 ], [ -95.116326928900847, 29.539079160152884 ], [ -95.116215928923225, 29.539174159742981 ], [ -95.115792928426472, 29.539527160354915 ], [ -95.115482928500981, 29.539760160468234 ], [ -95.115100928482306, 29.54003316067136 ], [ -95.114433928346116, 29.54049016087529 ], [ -95.113935928298673, 29.540826160607924 ], [ -95.113031927961885, 29.541470160291265 ], [ -95.111499927631471, 29.542617161452856 ], [ -95.110640927660185, 29.543225161524798 ], [ -95.11054992681008, 29.543290161266508 ], [ -95.110488927024051, 29.543333160923158 ], [ -95.109672926943759, 29.543911161676455 ], [ -95.108419927048587, 29.544595161331532 ], [ -95.10806592624165, 29.544850161329467 ], [ -95.107437926148577, 29.545344161398081 ], [ -95.107278926601836, 29.545457161658454 ], [ -95.107047926492513, 29.54559716190812 ], [ -95.106976925967643, 29.545644161550904 ], [ -95.106419925912064, 29.545943161974797 ], [ -95.106545926696157, 29.546066161594268 ], [ -95.106593925958137, 29.546113161467709 ], [ -95.107824926423945, 29.547598162199478 ], [ -95.108124926571392, 29.547959162135143 ], [ -95.108535926748019, 29.548436162633241 ], [ -95.108792927447041, 29.548696162244244 ], [ -95.109068926847272, 29.548946162513111 ], [ -95.109349927198565, 29.549176162179695 ], [ -95.109603927175385, 29.549364162852743 ], [ -95.109845927316542, 29.549530162544205 ], [ -95.109962927416873, 29.549600162743246 ], [ -95.110165927842019, 29.54972216234356 ], [ -95.110428927640811, 29.549861162183834 ], [ -95.110859927657032, 29.55006416213617 ], [ -95.110918927360075, 29.550088162425844 ], [ -95.111726927980726, 29.55041416298161 ], [ -95.111781927861017, 29.550436162463008 ], [ -95.111929927460693, 29.550496162188782 ], [ -95.112052928430387, 29.550545163032606 ], [ -95.112789927906476, 29.550844163044644 ], [ -95.113200928109663, 29.551010162902806 ], [ -95.113315927813503, 29.55105616294064 ], [ -95.113484928740874, 29.551124162395645 ], [ -95.114061928143343, 29.551358162680856 ], [ -95.114391928520334, 29.551491162590551 ], [ -95.116102929335383, 29.552200163161963 ], [ -95.116373929194182, 29.552312162694793 ], [ -95.116400929005167, 29.552324162997344 ], [ -95.116634929536517, 29.552409163214683 ], [ -95.116674929310662, 29.552423162406164 ], [ -95.117999929724206, 29.553006163065959 ], [ -95.118598929591897, 29.553355162534356 ], [ -95.11955193050278, 29.55408716270723 ], [ -95.12020593033985, 29.554719163597664 ], [ -95.120344930085707, 29.554872163548634 ], [ -95.122088930991794, 29.553627162824288 ], [ -95.122291930287147, 29.553482163085221 ], [ -95.122603930348504, 29.553262162639857 ], [ -95.122911930400065, 29.55306616312404 ], [ -95.12306893061195, 29.552974162819787 ], [ -95.123394930837534, 29.552800162946792 ], [ -95.123546930878248, 29.552727162263682 ], [ -95.123946930734192, 29.552544162577274 ], [ -95.124287931250933, 29.552369162727956 ], [ -95.124473931118558, 29.552265162157202 ], [ -95.124677930815295, 29.552141162074214 ], [ -95.124970931533781, 29.551946162275129 ], [ -95.12525493114029, 29.551735162056229 ], [ -95.12554993132089, 29.551408162122179 ], [ -95.126213931761995, 29.550829161808913 ], [ -95.1267419317183, 29.550467161768299 ], [ -95.127090932098454, 29.550153161916434 ], [ -95.12717993170692, 29.550073162204125 ], [ -95.127347931637175, 29.549922161631429 ], [ -95.128076931989256, 29.549363161888472 ], [ -95.128257932270358, 29.5492241617081 ], [ -95.128369932272221, 29.549139161455731 ], [ -95.128470932225511, 29.549061161385946 ], [ -95.128599932223253, 29.548962161871977 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1048, "Tract": "48201431901", "Area_SqMi": 0.13703977456820046, "total_2009": 1039, "total_2010": 1270, "total_2011": 1267, "total_2012": 1203, "total_2013": 1259, "total_2014": 1199, "total_2015": 1257, "total_2016": 1293, "total_2017": 1198, "total_2018": 1219, "total_2019": 1140, "total_2020": 1097, "age1": 228, "age2": 647, "age3": 240, "earn1": 120, "earn2": 273, "earn3": 722, "naics_s01": 0, "naics_s02": 24, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 7, "naics_s07": 256, "naics_s08": 57, "naics_s09": 35, "naics_s10": 73, "naics_s11": 35, "naics_s12": 222, "naics_s13": 2, "naics_s14": 40, "naics_s15": 108, "naics_s16": 35, "naics_s17": 0, "naics_s18": 131, "naics_s19": 27, "naics_s20": 57, "race1": 794, "race2": 186, "race3": 9, "race4": 110, "race5": 1, "race6": 15, "ethnicity1": 748, "ethnicity2": 367, "edu1": 173, "edu2": 228, "edu3": 256, "edu4": 230, "Shape_Length": 8236.9156361284586, "Shape_Area": 3820434.3690431691, "total_2021": 1122, "total_2022": 1115 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.468284027135041, 29.726643186681681 ], [ -95.468261026487525, 29.726401186836998 ], [ -95.468013026967924, 29.726432186492762 ], [ -95.467754027266167, 29.726466186692544 ], [ -95.46666702695309, 29.726687186734047 ], [ -95.464856026519286, 29.727268186869857 ], [ -95.46409602574451, 29.727539186932493 ], [ -95.463802025477108, 29.727644187161076 ], [ -95.463439026133898, 29.72778618728254 ], [ -95.461558025585219, 29.728520187160186 ], [ -95.461380025726086, 29.728589187630362 ], [ -95.461071024937254, 29.728710187831755 ], [ -95.460918025170031, 29.728770187982523 ], [ -95.460831025273805, 29.728804187797827 ], [ -95.460800025468941, 29.728816187333344 ], [ -95.460725025082581, 29.728845187492759 ], [ -95.460656024675174, 29.728873187135832 ], [ -95.46044202512843, 29.728958187925127 ], [ -95.460444024752846, 29.729161187810924 ], [ -95.460445025502722, 29.729271188055577 ], [ -95.460449025642163, 29.729757188105694 ], [ -95.460420024893025, 29.730404187879344 ], [ -95.460314024699542, 29.731002187937996 ], [ -95.460158024710751, 29.731728187804194 ], [ -95.46011702465799, 29.731921188148903 ], [ -95.460319025473368, 29.731928188575178 ], [ -95.460482025687782, 29.731934188000718 ], [ -95.46061702479264, 29.731942187854457 ], [ -95.460689025502205, 29.731942188304387 ], [ -95.461776025857972, 29.731915188058366 ], [ -95.462479025319809, 29.731904187982288 ], [ -95.462593025469019, 29.731902187769975 ], [ -95.462850025991727, 29.731886188404065 ], [ -95.463154025870693, 29.731871188445112 ], [ -95.463591026508681, 29.731825187903468 ], [ -95.464222026500494, 29.731768187955613 ], [ -95.465467026325868, 29.731648188369896 ], [ -95.465653026848798, 29.731631187662867 ], [ -95.46662702722827, 29.731574188338758 ], [ -95.468261026950259, 29.73152818788347 ], [ -95.468250027130068, 29.73060618788649 ], [ -95.468244026920601, 29.730150187479865 ], [ -95.46824602694231, 29.729738187339763 ], [ -95.468236027178165, 29.729463187455185 ], [ -95.468239026961967, 29.729129187299481 ], [ -95.468210026782785, 29.728412187107573 ], [ -95.468189027131146, 29.72769818689379 ], [ -95.46811002674032, 29.727630186930657 ], [ -95.468010027379322, 29.727538186860926 ], [ -95.468249026868207, 29.726880186586165 ], [ -95.468284027135041, 29.726643186681681 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1049, "Tract": "48201431506", "Area_SqMi": 0.27726889232146351, "total_2009": 2453, "total_2010": 2391, "total_2011": 2285, "total_2012": 2234, "total_2013": 2039, "total_2014": 2199, "total_2015": 2369, "total_2016": 2882, "total_2017": 2537, "total_2018": 2044, "total_2019": 1802, "total_2020": 1743, "age1": 375, "age2": 1092, "age3": 415, "earn1": 349, "earn2": 447, "earn3": 1086, "naics_s01": 0, "naics_s02": 19, "naics_s03": 0, "naics_s04": 143, "naics_s05": 0, "naics_s06": 27, "naics_s07": 20, "naics_s08": 0, "naics_s09": 2, "naics_s10": 319, "naics_s11": 53, "naics_s12": 272, "naics_s13": 45, "naics_s14": 76, "naics_s15": 155, "naics_s16": 317, "naics_s17": 23, "naics_s18": 188, "naics_s19": 223, "naics_s20": 0, "race1": 1385, "race2": 295, "race3": 11, "race4": 150, "race5": 3, "race6": 38, "ethnicity1": 1429, "ethnicity2": 453, "edu1": 214, "edu2": 331, "edu3": 464, "edu4": 498, "Shape_Length": 12617.596937116617, "Shape_Area": 7729782.1674704673, "total_2021": 1683, "total_2022": 1882 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.482913032626769, 29.760262193222399 ], [ -95.482827032599999, 29.760162193564057 ], [ -95.482791031803657, 29.760066193406647 ], [ -95.48277403235366, 29.759229193056296 ], [ -95.482771032415741, 29.759058193079536 ], [ -95.482769032253501, 29.758237192850352 ], [ -95.482762032204519, 29.757983192938262 ], [ -95.482738031868379, 29.756790192757354 ], [ -95.48272103158952, 29.755797192655596 ], [ -95.482711031816933, 29.755011191902277 ], [ -95.482705031887107, 29.754558191912942 ], [ -95.482702031532924, 29.754319192108071 ], [ -95.48268803152034, 29.753625191559166 ], [ -95.482690032136915, 29.753388191437836 ], [ -95.482680031791276, 29.752930192099353 ], [ -95.48266303180111, 29.751396191473088 ], [ -95.482649031433397, 29.750040191494843 ], [ -95.480826031137838, 29.75006719135893 ], [ -95.479923031362631, 29.750080190884873 ], [ -95.479542030764591, 29.750086191641564 ], [ -95.477875030602078, 29.750115191324532 ], [ -95.476974030767806, 29.750131191468714 ], [ -95.47699303045917, 29.750793191671903 ], [ -95.476983030318848, 29.75097419129299 ], [ -95.477026030561731, 29.751277191202167 ], [ -95.477251030001895, 29.751889191462663 ], [ -95.477281030924857, 29.752120192173795 ], [ -95.477292030906696, 29.75238919193206 ], [ -95.477305030449273, 29.753566192019601 ], [ -95.477333030286943, 29.7546661926037 ], [ -95.477342030660068, 29.755755192894135 ], [ -95.477359030559825, 29.756866192931206 ], [ -95.477380030792787, 29.757957193238518 ], [ -95.477405030475566, 29.759057192967106 ], [ -95.477414030951408, 29.760167193639496 ], [ -95.477418030910016, 29.760361193325362 ], [ -95.477415030737845, 29.761477193888489 ], [ -95.477457030511246, 29.761866193396042 ], [ -95.477517030975733, 29.762217193679298 ], [ -95.47759903135676, 29.762457194089997 ], [ -95.477736030672332, 29.762777194189383 ], [ -95.477857031269252, 29.76313519356388 ], [ -95.477943030848238, 29.763797193688053 ], [ -95.478370031661555, 29.763748193752946 ], [ -95.478864031818532, 29.763653194325762 ], [ -95.479455031491753, 29.763351193696181 ], [ -95.479786031598422, 29.76308819394735 ], [ -95.481542031471307, 29.761524193782584 ], [ -95.482653032070445, 29.760497193090252 ], [ -95.482913032626769, 29.760262193222399 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1050, "Tract": "48201232902", "Area_SqMi": 0.3332126304514077, "total_2009": 312, "total_2010": 359, "total_2011": 324, "total_2012": 330, "total_2013": 454, "total_2014": 301, "total_2015": 323, "total_2016": 258, "total_2017": 253, "total_2018": 269, "total_2019": 300, "total_2020": 245, "age1": 70, "age2": 106, "age3": 45, "earn1": 66, "earn2": 95, "earn3": 60, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 75, "naics_s08": 7, "naics_s09": 0, "naics_s10": 14, "naics_s11": 19, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 47, "naics_s17": 0, "naics_s18": 56, "naics_s19": 0, "naics_s20": 0, "race1": 167, "race2": 27, "race3": 2, "race4": 20, "race5": 0, "race6": 5, "ethnicity1": 100, "ethnicity2": 121, "edu1": 47, "edu2": 44, "edu3": 34, "edu4": 26, "Shape_Length": 15446.226822597888, "Shape_Area": 9289397.837868575, "total_2021": 253, "total_2022": 221 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.192977959655522, 29.797460210548124 ], [ -95.193066959496548, 29.797434210243242 ], [ -95.192808960019448, 29.796716210785608 ], [ -95.192754959632055, 29.796541210424095 ], [ -95.192703959078671, 29.796401210794222 ], [ -95.192690959599915, 29.796326210774087 ], [ -95.192665959006177, 29.796260210109036 ], [ -95.19265795908602, 29.796190210426936 ], [ -95.192581959946921, 29.79600321015139 ], [ -95.192530959494562, 29.795868210482304 ], [ -95.19250695960001, 29.795793210286753 ], [ -95.192447959697802, 29.795638210578769 ], [ -95.192379959576883, 29.795400209979412 ], [ -95.192350959677896, 29.795266210692919 ], [ -95.192321959426934, 29.795100210628423 ], [ -95.192305959175712, 29.794936210124977 ], [ -95.19230895934021, 29.794763210525005 ], [ -95.192317959254027, 29.794676210188968 ], [ -95.192331958806534, 29.794591210539899 ], [ -95.192390958950057, 29.794431210072698 ], [ -95.192391959643572, 29.794344209971538 ], [ -95.192428959024866, 29.794268210041526 ], [ -95.192438959676025, 29.794205210253139 ], [ -95.192480958959507, 29.794127210229224 ], [ -95.192515959684883, 29.794013210253976 ], [ -95.192536959593298, 29.793925210254958 ], [ -95.191997959115724, 29.793814210056354 ], [ -95.191852958689211, 29.7937762102855 ], [ -95.191626958609092, 29.793704209661922 ], [ -95.191369958904744, 29.793613209670092 ], [ -95.191269959488068, 29.793572210044033 ], [ -95.191094958841958, 29.793501209933165 ], [ -95.190822958460558, 29.793380210067465 ], [ -95.190539958557594, 29.793226210166122 ], [ -95.190259958847165, 29.79306120972943 ], [ -95.190054959111578, 29.792940209706369 ], [ -95.190032958684, 29.792928210294075 ], [ -95.1899979584134, 29.792907209713292 ], [ -95.188804957907109, 29.794336210529515 ], [ -95.188652958702406, 29.794540210514075 ], [ -95.1863409576207, 29.79735621065516 ], [ -95.185904957816589, 29.79788821119045 ], [ -95.185790957410418, 29.798028210772813 ], [ -95.185076957444025, 29.798913211622136 ], [ -95.184649957211846, 29.799444211391627 ], [ -95.184233957039922, 29.799928211470672 ], [ -95.18341395731791, 29.800913211644552 ], [ -95.182205956929906, 29.802401212152514 ], [ -95.181610957008701, 29.803134212204615 ], [ -95.180513956736107, 29.80447021243382 ], [ -95.180116956316965, 29.804921212479172 ], [ -95.179353956305732, 29.805883212457303 ], [ -95.179221956511384, 29.806204213364374 ], [ -95.179547956573927, 29.806199213071725 ], [ -95.179702956918959, 29.806197213129991 ], [ -95.180804956494683, 29.806180212867744 ], [ -95.182062957320355, 29.806156213092862 ], [ -95.182261956916847, 29.806156212567583 ], [ -95.182352957221013, 29.806156212515052 ], [ -95.182843957582392, 29.806149213196498 ], [ -95.18308695761317, 29.806151212692694 ], [ -95.183512957146903, 29.806146212853456 ], [ -95.183784957811696, 29.806135212777672 ], [ -95.183934958029084, 29.806129212880748 ], [ -95.184082957705968, 29.806115213009843 ], [ -95.184314958207622, 29.806083212912938 ], [ -95.184365958015775, 29.806071212526966 ], [ -95.184522957544601, 29.806050212439018 ], [ -95.184798958265262, 29.805993212440754 ], [ -95.185753958264371, 29.805841212796736 ], [ -95.186135958386643, 29.805772212378042 ], [ -95.186329958148846, 29.805739212537798 ], [ -95.186768958280183, 29.80568621283448 ], [ -95.187131958351813, 29.805664212521052 ], [ -95.187359958675842, 29.805660212522213 ], [ -95.187354958444573, 29.805533212129689 ], [ -95.187361958048967, 29.805348212450639 ], [ -95.187357958533283, 29.805191212202882 ], [ -95.187358958523632, 29.805064212740753 ], [ -95.187358958886364, 29.804959212522395 ], [ -95.187359958399938, 29.804946212284634 ], [ -95.187373958239064, 29.804783212775849 ], [ -95.187373958399803, 29.80464821221732 ], [ -95.187364958515772, 29.804255212285419 ], [ -95.187372958950775, 29.803928211990936 ], [ -95.187367957925943, 29.803571212553123 ], [ -95.187368957986337, 29.803215212439067 ], [ -95.187358958923596, 29.80259021159204 ], [ -95.187370958883022, 29.802497211872392 ], [ -95.187569958411089, 29.802496211603639 ], [ -95.187750958170369, 29.802491212005933 ], [ -95.188030958616068, 29.802495211919236 ], [ -95.188432958472404, 29.802480212071607 ], [ -95.188967959113668, 29.802470211898381 ], [ -95.189291958398854, 29.8024762120241 ], [ -95.191151959032496, 29.802451211868288 ], [ -95.191634959914168, 29.802430211788042 ], [ -95.191721959378739, 29.802395211504084 ], [ -95.191730959652119, 29.80238721201469 ], [ -95.191771959421487, 29.802350211577409 ], [ -95.191804959701869, 29.802227212084652 ], [ -95.191798959295596, 29.801725212047081 ], [ -95.191787959511643, 29.801015211571112 ], [ -95.191772959648446, 29.800574211079962 ], [ -95.191767959021632, 29.800298211160801 ], [ -95.191759959227696, 29.799574210776637 ], [ -95.191746958936918, 29.798821210645642 ], [ -95.191742959208199, 29.798230211021785 ], [ -95.191719959815131, 29.797634210345844 ], [ -95.191797959026857, 29.797635210438127 ], [ -95.192061959812321, 29.797613210355259 ], [ -95.19247995940502, 29.797565211105091 ], [ -95.192677959120289, 29.797530211027233 ], [ -95.192977959655522, 29.797460210548124 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1051, "Tract": "48201510601", "Area_SqMi": 0.34501306077383703, "total_2009": 685, "total_2010": 911, "total_2011": 840, "total_2012": 695, "total_2013": 936, "total_2014": 1362, "total_2015": 1530, "total_2016": 1600, "total_2017": 1671, "total_2018": 1980, "total_2019": 2010, "total_2020": 1849, "age1": 852, "age2": 878, "age3": 346, "earn1": 556, "earn2": 923, "earn3": 597, "naics_s01": 0, "naics_s02": 2, "naics_s03": 2, "naics_s04": 86, "naics_s05": 36, "naics_s06": 29, "naics_s07": 629, "naics_s08": 0, "naics_s09": 40, "naics_s10": 86, "naics_s11": 27, "naics_s12": 91, "naics_s13": 8, "naics_s14": 4, "naics_s15": 13, "naics_s16": 118, "naics_s17": 65, "naics_s18": 780, "naics_s19": 60, "naics_s20": 0, "race1": 1496, "race2": 380, "race3": 21, "race4": 129, "race5": 1, "race6": 49, "ethnicity1": 1270, "ethnicity2": 806, "edu1": 312, "edu2": 309, "edu3": 334, "edu4": 269, "Shape_Length": 12980.980810037472, "Shape_Area": 9618373.6386195607, "total_2021": 2005, "total_2022": 2076 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.409612013760878, 29.777661199509151 ], [ -95.409606014555905, 29.777518199430503 ], [ -95.409605014178055, 29.777417199197657 ], [ -95.409603014707486, 29.777064199398673 ], [ -95.409576014299432, 29.77631419926248 ], [ -95.409550013681184, 29.775570198590941 ], [ -95.409554014650453, 29.774853198333489 ], [ -95.409559014279722, 29.774124198633587 ], [ -95.409529013628486, 29.773408198042066 ], [ -95.409526013714967, 29.773065198606545 ], [ -95.409523014495221, 29.772874197942269 ], [ -95.409521014449808, 29.77269519864377 ], [ -95.409500013691215, 29.771945198485827 ], [ -95.409495013945957, 29.771203198330756 ], [ -95.409470014273793, 29.770475197605382 ], [ -95.408351013433219, 29.770477197997227 ], [ -95.407250013400301, 29.770493197929838 ], [ -95.406130012629234, 29.770506197870294 ], [ -95.404890012828716, 29.770369198384369 ], [ -95.404000012430316, 29.770297197687842 ], [ -95.402232012354517, 29.770110198421175 ], [ -95.401901011793711, 29.770074197596397 ], [ -95.40090801128521, 29.769956197800926 ], [ -95.399251010883717, 29.769790197632247 ], [ -95.398579011442692, 29.769712197798256 ], [ -95.398153010695339, 29.769666198433026 ], [ -95.397279010377545, 29.769562198206152 ], [ -95.397325010419507, 29.770411198144952 ], [ -95.397330010942071, 29.771441198593003 ], [ -95.397334011410749, 29.772454198293058 ], [ -95.397378011086701, 29.774271199455278 ], [ -95.397405011191637, 29.775081199037203 ], [ -95.397408011214949, 29.775158199526608 ], [ -95.397410011156822, 29.775232198878303 ], [ -95.397440011447017, 29.776129199213148 ], [ -95.397441010703034, 29.776416199321449 ], [ -95.397441011122837, 29.776530199342758 ], [ -95.397442011096871, 29.77667319967339 ], [ -95.398713011686368, 29.776609199415976 ], [ -95.398844011927693, 29.776603199240352 ], [ -95.399016011845475, 29.776594199817175 ], [ -95.399810011402039, 29.776607199351975 ], [ -95.399942012084097, 29.776610199178144 ], [ -95.400047012248606, 29.776611199047739 ], [ -95.40036401153084, 29.776616199778548 ], [ -95.400566012310904, 29.776620199038881 ], [ -95.401513012090064, 29.776666199745058 ], [ -95.401784012373469, 29.776693199036256 ], [ -95.402427012470369, 29.776757199768426 ], [ -95.402500012564289, 29.776766199158214 ], [ -95.402965012995537, 29.776820199011734 ], [ -95.403423013013978, 29.776886199718245 ], [ -95.403738012797859, 29.776932199619605 ], [ -95.404352012857657, 29.777031199470567 ], [ -95.406029013408727, 29.777348199325282 ], [ -95.406267013473894, 29.777386199669955 ], [ -95.406629013152326, 29.777443198940318 ], [ -95.407257013986964, 29.777524198935577 ], [ -95.407848013924223, 29.777586199003263 ], [ -95.408355014114932, 29.777615199165961 ], [ -95.409066014166115, 29.777649199585706 ], [ -95.409612013760878, 29.777661199509151 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1052, "Tract": "48201510302", "Area_SqMi": 0.35902885290490572, "total_2009": 46, "total_2010": 58, "total_2011": 76, "total_2012": 173, "total_2013": 210, "total_2014": 237, "total_2015": 199, "total_2016": 191, "total_2017": 230, "total_2018": 270, "total_2019": 252, "total_2020": 238, "age1": 56, "age2": 104, "age3": 53, "earn1": 68, "earn2": 50, "earn3": 95, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 12, "naics_s07": 21, "naics_s08": 0, "naics_s09": 3, "naics_s10": 0, "naics_s11": 9, "naics_s12": 29, "naics_s13": 0, "naics_s14": 14, "naics_s15": 27, "naics_s16": 6, "naics_s17": 7, "naics_s18": 54, "naics_s19": 25, "naics_s20": 0, "race1": 176, "race2": 12, "race3": 3, "race4": 18, "race5": 0, "race6": 4, "ethnicity1": 147, "ethnicity2": 66, "edu1": 42, "edu2": 25, "edu3": 47, "edu4": 43, "Shape_Length": 16260.091515934517, "Shape_Area": 10009109.93496578, "total_2021": 167, "total_2022": 213 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.387834009502711, 29.790833203159181 ], [ -95.387831008758795, 29.789906202666625 ], [ -95.387812008696017, 29.788991202110136 ], [ -95.387808008656137, 29.788826202737173 ], [ -95.387797009304336, 29.788051201766962 ], [ -95.387789008829174, 29.787627202202813 ], [ -95.387785008773477, 29.78734020168239 ], [ -95.387782009557242, 29.787153201701916 ], [ -95.387773009062101, 29.786635201419166 ], [ -95.387766008980819, 29.786213201841008 ], [ -95.387761009315824, 29.785922201671656 ], [ -95.387749008919755, 29.785300201195788 ], [ -95.387747009317849, 29.785214201832787 ], [ -95.387731008558461, 29.784378200939209 ], [ -95.387719009144689, 29.783465200974184 ], [ -95.387699008668847, 29.78254520074923 ], [ -95.387685008515561, 29.781632200520903 ], [ -95.387592008846582, 29.781255200530822 ], [ -95.387456008893949, 29.780980200624459 ], [ -95.38728400886491, 29.780918200478308 ], [ -95.387024008168837, 29.780873200657553 ], [ -95.386508008340755, 29.780839200812846 ], [ -95.385932008498045, 29.780813200648193 ], [ -95.385392008030522, 29.780787200356905 ], [ -95.384225008226096, 29.780736200412878 ], [ -95.384214008234025, 29.781539201330489 ], [ -95.384231007451021, 29.781676201349914 ], [ -95.38424200750957, 29.782583201294447 ], [ -95.384262008418631, 29.7833942016136 ], [ -95.384264008034364, 29.783511201107338 ], [ -95.384271008115803, 29.784089201478853 ], [ -95.382024007058988, 29.784102201216047 ], [ -95.382022007996937, 29.784416201637292 ], [ -95.380732006799803, 29.784423202071874 ], [ -95.379296006930915, 29.78443320197848 ], [ -95.379202006804746, 29.784444201546275 ], [ -95.378973006819223, 29.7844502016546 ], [ -95.37887700692194, 29.784504201956185 ], [ -95.378809006764058, 29.78455720212132 ], [ -95.378740006391084, 29.784583201997993 ], [ -95.378670006304375, 29.784587201420877 ], [ -95.377950006915768, 29.784588201759451 ], [ -95.377832006055982, 29.784597201386699 ], [ -95.376404005768819, 29.784612202267091 ], [ -95.376389005769269, 29.784700202214911 ], [ -95.376387005701176, 29.785315201657514 ], [ -95.376408006002364, 29.786041201691134 ], [ -95.376417006498485, 29.786756202307604 ], [ -95.376428006477724, 29.787450202332053 ], [ -95.376431006651401, 29.788143202431829 ], [ -95.374979005869875, 29.788155202729332 ], [ -95.374987005851537, 29.788911202916765 ], [ -95.375596006213911, 29.788904203124751 ], [ -95.375631005592112, 29.788904202647416 ], [ -95.375627005806081, 29.788980202981922 ], [ -95.375626005713897, 29.789054202899749 ], [ -95.375627005801093, 29.789111202990075 ], [ -95.375632005973685, 29.789164202346196 ], [ -95.375638006094164, 29.789219202852689 ], [ -95.375640006578493, 29.789306202738832 ], [ -95.375636005667872, 29.78935920241517 ], [ -95.375638005801775, 29.789412202786167 ], [ -95.375631006255006, 29.789464202470921 ], [ -95.375635006508816, 29.7894742028646 ], [ -95.375635005988883, 29.789752203331727 ], [ -95.375632005932516, 29.790052202572312 ], [ -95.375607006388748, 29.790106203244534 ], [ -95.375528006468159, 29.790130202567767 ], [ -95.375418005650886, 29.790130203139732 ], [ -95.374192005388053, 29.790132202654618 ], [ -95.37419600555458, 29.790632202709947 ], [ -95.377013006215719, 29.79059720331777 ], [ -95.377718006925761, 29.79059820260089 ], [ -95.378560007149574, 29.790583202874064 ], [ -95.37937600744246, 29.790577202719575 ], [ -95.380172007792822, 29.790581203211456 ], [ -95.380800007655509, 29.790567203292944 ], [ -95.380950007515906, 29.7905622025147 ], [ -95.381734007600571, 29.790551202465931 ], [ -95.382116008010939, 29.790548202421142 ], [ -95.384339008339026, 29.79053320315127 ], [ -95.384268008176392, 29.790922202592192 ], [ -95.385224008480762, 29.790896202569975 ], [ -95.386028009079382, 29.790866203148752 ], [ -95.386924009362232, 29.790847202644635 ], [ -95.387365009442462, 29.790840202294255 ], [ -95.387834009502711, 29.790833203159181 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1053, "Tract": "48201312902", "Area_SqMi": 0.37685641788710145, "total_2009": 422, "total_2010": 206, "total_2011": 74, "total_2012": 62, "total_2013": 85, "total_2014": 81, "total_2015": 131, "total_2016": 177, "total_2017": 212, "total_2018": 231, "total_2019": 102, "total_2020": 152, "age1": 78, "age2": 115, "age3": 32, "earn1": 54, "earn2": 111, "earn3": 60, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 8, "naics_s07": 11, "naics_s08": 63, "naics_s09": 0, "naics_s10": 8, "naics_s11": 3, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 111, "naics_s16": 10, "naics_s17": 1, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 88, "race2": 129, "race3": 1, "race4": 6, "race5": 0, "race6": 1, "ethnicity1": 166, "ethnicity2": 59, "edu1": 23, "edu2": 33, "edu3": 52, "edu4": 39, "Shape_Length": 12984.742835044744, "Shape_Area": 10506111.934486987, "total_2021": 188, "total_2022": 225 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.371426001578527, 29.7136431873496 ], [ -95.371474001973979, 29.713592187556369 ], [ -95.37136300123116, 29.713531187723998 ], [ -95.370870001590035, 29.713092187535441 ], [ -95.370850001541285, 29.713074187803961 ], [ -95.37070200176494, 29.712861187554903 ], [ -95.370428000980539, 29.712266187478235 ], [ -95.370336001634016, 29.711845187298898 ], [ -95.370438001427615, 29.710521186644357 ], [ -95.370374001278478, 29.710169186665702 ], [ -95.370206001429423, 29.709846186501274 ], [ -95.369904000556545, 29.709508186591492 ], [ -95.369407000563569, 29.709269186374435 ], [ -95.368953000910366, 29.709279187004359 ], [ -95.368013000316765, 29.709633186417673 ], [ -95.367250000752037, 29.709778186377321 ], [ -95.363963999415475, 29.710132187345653 ], [ -95.362414999330454, 29.710222187190116 ], [ -95.362384999623345, 29.710318186670939 ], [ -95.362235999180101, 29.710787187536226 ], [ -95.361938999512077, 29.710768186825405 ], [ -95.361744998783024, 29.711274186963088 ], [ -95.361417999029186, 29.712067187028829 ], [ -95.360972998936802, 29.713155187802979 ], [ -95.360438998478188, 29.714486188293812 ], [ -95.360028999083909, 29.715454188633696 ], [ -95.359713998301018, 29.716202188731007 ], [ -95.359411998387685, 29.716933188331705 ], [ -95.359121998205651, 29.717658188344558 ], [ -95.358980998348258, 29.71801618912091 ], [ -95.358831998989714, 29.718401188962329 ], [ -95.361382999793264, 29.719190188765392 ], [ -95.361735999493689, 29.719296188515596 ], [ -95.362669999485092, 29.719591188632986 ], [ -95.363877000450117, 29.719989188980485 ], [ -95.364002000092682, 29.719986188651653 ], [ -95.364689000600521, 29.720398189051792 ], [ -95.365595000459962, 29.720923189421363 ], [ -95.365677000799067, 29.720973189503326 ], [ -95.366186000951359, 29.72035018872683 ], [ -95.366346000157506, 29.720153189036125 ], [ -95.366677001158124, 29.719726188698466 ], [ -95.367162000859807, 29.719101188298751 ], [ -95.367852001002092, 29.718256188144995 ], [ -95.368183000689854, 29.717834188615505 ], [ -95.368655000606523, 29.71721918871155 ], [ -95.369386001275203, 29.716310187824075 ], [ -95.369784001840102, 29.715821187741856 ], [ -95.37017900139459, 29.715348188190688 ], [ -95.370633001886233, 29.71470518734229 ], [ -95.371173001684227, 29.713913187540399 ], [ -95.371426001578527, 29.7136431873496 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1054, "Tract": "48201312901", "Area_SqMi": 0.17925108003309306, "total_2009": 9, "total_2010": 144, "total_2011": 28, "total_2012": 65, "total_2013": 65, "total_2014": 75, "total_2015": 105, "total_2016": 70, "total_2017": 39, "total_2018": 40, "total_2019": 45, "total_2020": 37, "age1": 6, "age2": 31, "age3": 15, "earn1": 16, "earn2": 14, "earn3": 22, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 29, "naics_s16": 0, "naics_s17": 0, "naics_s18": 18, "naics_s19": 0, "naics_s20": 0, "race1": 3, "race2": 43, "race3": 0, "race4": 6, "race5": 0, "race6": 0, "ethnicity1": 49, "ethnicity2": 3, "edu1": 11, "edu2": 15, "edu3": 11, "edu4": 9, "Shape_Length": 9739.2670432502491, "Shape_Area": 4997213.3200330408, "total_2021": 52, "total_2022": 52 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.362384999623345, 29.710318186670939 ], [ -95.362414999330454, 29.710222187190116 ], [ -95.362249998798404, 29.710232187240166 ], [ -95.36071499857691, 29.710009187464919 ], [ -95.359935998805142, 29.710012187156863 ], [ -95.359291997950592, 29.710129186979312 ], [ -95.358434997763922, 29.710474186857702 ], [ -95.358072998209693, 29.710533187328785 ], [ -95.357572997570941, 29.710460186999505 ], [ -95.357549997721563, 29.710457187418648 ], [ -95.357341998183983, 29.710343187688729 ], [ -95.356719997976228, 29.709775187573669 ], [ -95.35655299779593, 29.709710187340182 ], [ -95.356537997545004, 29.709749186752767 ], [ -95.356349997662491, 29.710233187712401 ], [ -95.35613899796904, 29.710760187442904 ], [ -95.355880997995556, 29.711406187645011 ], [ -95.355510997692065, 29.71233018780644 ], [ -95.35519499745061, 29.713064187759592 ], [ -95.35491199774593, 29.713831188059093 ], [ -95.354605997821764, 29.714581187963244 ], [ -95.354445996904289, 29.715024188343982 ], [ -95.354300997081054, 29.715328188550998 ], [ -95.354030996776785, 29.716005188648634 ], [ -95.353851996873786, 29.716482188718508 ], [ -95.353694997548757, 29.716853188967587 ], [ -95.354341997164866, 29.717047188904285 ], [ -95.356270998258381, 29.717628188667742 ], [ -95.358831998989714, 29.718401188962329 ], [ -95.358980998348258, 29.71801618912091 ], [ -95.359121998205651, 29.717658188344558 ], [ -95.359411998387685, 29.716933188331705 ], [ -95.359713998301018, 29.716202188731007 ], [ -95.360028999083909, 29.715454188633696 ], [ -95.360438998478188, 29.714486188293812 ], [ -95.360972998936802, 29.713155187802979 ], [ -95.361417999029186, 29.712067187028829 ], [ -95.361744998783024, 29.711274186963088 ], [ -95.361938999512077, 29.710768186825405 ], [ -95.362235999180101, 29.710787187536226 ], [ -95.362384999623345, 29.710318186670939 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1055, "Tract": "48201410202", "Area_SqMi": 0.25349143571858962, "total_2009": 1156, "total_2010": 1059, "total_2011": 1124, "total_2012": 1004, "total_2013": 1046, "total_2014": 1500, "total_2015": 1553, "total_2016": 1719, "total_2017": 1590, "total_2018": 1481, "total_2019": 1282, "total_2020": 1084, "age1": 205, "age2": 526, "age3": 204, "earn1": 146, "earn2": 268, "earn3": 521, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 43, "naics_s05": 18, "naics_s06": 14, "naics_s07": 89, "naics_s08": 10, "naics_s09": 8, "naics_s10": 23, "naics_s11": 22, "naics_s12": 138, "naics_s13": 0, "naics_s14": 62, "naics_s15": 0, "naics_s16": 98, "naics_s17": 7, "naics_s18": 287, "naics_s19": 114, "naics_s20": 0, "race1": 699, "race2": 111, "race3": 11, "race4": 97, "race5": 3, "race6": 14, "ethnicity1": 606, "ethnicity2": 329, "edu1": 169, "edu2": 201, "edu3": 185, "edu4": 175, "Shape_Length": 11423.304657360703, "Shape_Area": 7066907.3729060357, "total_2021": 957, "total_2022": 935 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.39812501034136, 29.757337195391866 ], [ -95.398084010067734, 29.75534019474971 ], [ -95.398067010529076, 29.754641195411331 ], [ -95.39803901069142, 29.753949194616073 ], [ -95.398024010398998, 29.753234194896709 ], [ -95.398046010237962, 29.752663194799389 ], [ -95.397936009832989, 29.752415194718481 ], [ -95.397221009959338, 29.752432194555361 ], [ -95.39589300964856, 29.752465194948901 ], [ -95.393704009336517, 29.752501195073002 ], [ -95.392135008856584, 29.752529195096454 ], [ -95.391169008793639, 29.752547194584061 ], [ -95.390112008598578, 29.752567194543854 ], [ -95.389805008012317, 29.752573194868905 ], [ -95.38891100781963, 29.75258119481315 ], [ -95.387319007744864, 29.752604194891042 ], [ -95.386854006891184, 29.752610195061742 ], [ -95.385740006717484, 29.752626195298483 ], [ -95.385732006812333, 29.752987195181777 ], [ -95.385729007540846, 29.753053194736971 ], [ -95.385715007410326, 29.753455195123891 ], [ -95.385687006641817, 29.754175195623326 ], [ -95.385695007073323, 29.754858195644779 ], [ -95.385703007155527, 29.755563195248261 ], [ -95.38570500751176, 29.755746195707676 ], [ -95.385709006770099, 29.756235195327282 ], [ -95.385706007220648, 29.756919196262167 ], [ -95.385718006982714, 29.757624195922652 ], [ -95.388954008437793, 29.757550196191669 ], [ -95.389595008545427, 29.757543195928154 ], [ -95.389759007838904, 29.757538195494185 ], [ -95.390681008022582, 29.75751519602753 ], [ -95.391306008796519, 29.757492195626536 ], [ -95.391802009213094, 29.757478196095402 ], [ -95.392278009394616, 29.757468195715873 ], [ -95.393035008649719, 29.757461195275656 ], [ -95.393472008866141, 29.757453195412051 ], [ -95.394018008973447, 29.757438195582626 ], [ -95.394686009557006, 29.757422195828664 ], [ -95.394820009967759, 29.757419195627634 ], [ -95.395595009456713, 29.757401195843638 ], [ -95.39638000961618, 29.757387195758074 ], [ -95.397154009835219, 29.757370195450779 ], [ -95.39812501034136, 29.757337195391866 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1056, "Tract": "48201350101", "Area_SqMi": 2.1016902343040771, "total_2009": 219, "total_2010": 175, "total_2011": 226, "total_2012": 266, "total_2013": 254, "total_2014": 246, "total_2015": 181, "total_2016": 266, "total_2017": 269, "total_2018": 297, "total_2019": 270, "total_2020": 253, "age1": 122, "age2": 138, "age3": 56, "earn1": 85, "earn2": 144, "earn3": 87, "naics_s01": 0, "naics_s02": 0, "naics_s03": 15, "naics_s04": 0, "naics_s05": 18, "naics_s06": 2, "naics_s07": 37, "naics_s08": 122, "naics_s09": 0, "naics_s10": 2, "naics_s11": 9, "naics_s12": 30, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 47, "naics_s17": 0, "naics_s18": 8, "naics_s19": 25, "naics_s20": 0, "race1": 182, "race2": 60, "race3": 3, "race4": 64, "race5": 1, "race6": 6, "ethnicity1": 218, "ethnicity2": 98, "edu1": 37, "edu2": 53, "edu3": 66, "edu4": 38, "Shape_Length": 48347.284929233254, "Shape_Area": 58591526.653611921, "total_2021": 336, "total_2022": 316 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.225904958119429, 29.573573163386595 ], [ -95.225681958146254, 29.573371163435837 ], [ -95.223872957582742, 29.571729162854925 ], [ -95.223622957252275, 29.571502163507319 ], [ -95.222379956909094, 29.570482162658873 ], [ -95.221175956335301, 29.569491163322013 ], [ -95.220535956169726, 29.568964162800228 ], [ -95.219794956458699, 29.568343162780973 ], [ -95.219015956001329, 29.567808162917263 ], [ -95.218161956067277, 29.5672881624361 ], [ -95.217838955618816, 29.567060162153666 ], [ -95.216178955759659, 29.565763161869548 ], [ -95.216084955726771, 29.56567516266384 ], [ -95.215985955736755, 29.565613161884468 ], [ -95.214714955191397, 29.564509162388134 ], [ -95.214297954727954, 29.564182161637522 ], [ -95.213978954935129, 29.563882162045996 ], [ -95.212884954804466, 29.562971162118174 ], [ -95.211427954129988, 29.561760161863216 ], [ -95.212344954344672, 29.56092116128902 ], [ -95.215280954789392, 29.558334160649011 ], [ -95.215739955048534, 29.557930161038048 ], [ -95.215778954802616, 29.557905160811483 ], [ -95.21583295508276, 29.557871160371242 ], [ -95.215865955225169, 29.557850161039323 ], [ -95.215958955255488, 29.557792160534653 ], [ -95.215890955163573, 29.557705161085675 ], [ -95.215871954965152, 29.557682160276247 ], [ -95.215773954819042, 29.557556160672899 ], [ -95.215733954865016, 29.557506161019457 ], [ -95.215675954914516, 29.55743016099424 ], [ -95.215621954539074, 29.557392160741351 ], [ -95.215543955286464, 29.557336160197384 ], [ -95.215354954715181, 29.557237160660797 ], [ -95.215205954209864, 29.557218160877223 ], [ -95.21497495498302, 29.5571731607677 ], [ -95.214805954570949, 29.557141160838359 ], [ -95.214663954230957, 29.55710216046521 ], [ -95.214602955053223, 29.557081160856161 ], [ -95.2145659542619, 29.557068160992696 ], [ -95.214559954927964, 29.556968160519517 ], [ -95.214611954324155, 29.556861160799656 ], [ -95.214730954347203, 29.55677216007744 ], [ -95.214909954152333, 29.556752160391071 ], [ -95.214977954390292, 29.556792160518871 ], [ -95.215222954438147, 29.556869160409867 ], [ -95.215411954924008, 29.556902160104009 ], [ -95.215430954630591, 29.556902160709633 ], [ -95.215633955265091, 29.556885160305843 ], [ -95.215808954957168, 29.5568371602618 ], [ -95.215914954770398, 29.556786160194452 ], [ -95.216109954851717, 29.556748160393028 ], [ -95.216297954476644, 29.556665160553617 ], [ -95.216341955412858, 29.556588160659071 ], [ -95.216376954527959, 29.556490159943205 ], [ -95.216417954916096, 29.556374160281173 ], [ -95.216436955061525, 29.556165160606231 ], [ -95.216428954992253, 29.55608516003246 ], [ -95.216412954889094, 29.555912160181716 ], [ -95.216410955351634, 29.555895159888628 ], [ -95.216355955105229, 29.555771160016569 ], [ -95.216308955271941, 29.555689160355261 ], [ -95.216198955058857, 29.555641160261747 ], [ -95.21617695456527, 29.555631159939644 ], [ -95.216150954942691, 29.555620159947605 ], [ -95.215989954857122, 29.555507160173452 ], [ -95.215900954390733, 29.555445160228803 ], [ -95.215879954301528, 29.555310159963877 ], [ -95.21593795436722, 29.555154160373043 ], [ -95.215953954324206, 29.555065159632882 ], [ -95.215853955095071, 29.554984159645468 ], [ -95.215671955018607, 29.555046160015536 ], [ -95.215500955117079, 29.555164160343477 ], [ -95.215313955012064, 29.5553831604899 ], [ -95.215073954997891, 29.555612160340324 ], [ -95.21486095499948, 29.555830160334267 ], [ -95.214756954365328, 29.555872160666762 ], [ -95.214592954858901, 29.555789160243432 ], [ -95.214497954017887, 29.555584159905667 ], [ -95.21443995462964, 29.555437160645546 ], [ -95.214278954802054, 29.555264160137881 ], [ -95.214140953978273, 29.555193160601007 ], [ -95.214087954803759, 29.555225160217351 ], [ -95.21394395390071, 29.555317160083494 ], [ -95.213874953834676, 29.555438160137985 ], [ -95.213817954061824, 29.555650160494725 ], [ -95.213819953953546, 29.555665160354263 ], [ -95.213888954456721, 29.555775160702815 ], [ -95.214241954596261, 29.556105160445039 ], [ -95.21424995421313, 29.556125160774915 ], [ -95.214260954930154, 29.556149160396124 ], [ -95.21426095464075, 29.556193160447563 ], [ -95.214171954003177, 29.556297160720661 ], [ -95.21410895433398, 29.556330160026096 ], [ -95.214031953906471, 29.556351160747578 ], [ -95.213867954647384, 29.556327160525687 ], [ -95.21384295457591, 29.556316160401153 ], [ -95.213701954392477, 29.556319160666057 ], [ -95.213209953958312, 29.555755160708518 ], [ -95.212992954391979, 29.556021160294389 ], [ -95.212806953868281, 29.556248160301823 ], [ -95.212964953757933, 29.557172160780144 ], [ -95.213057953651742, 29.557104160676683 ], [ -95.213320953977743, 29.556913160610907 ], [ -95.213466954260156, 29.5569241604375 ], [ -95.213511954750146, 29.556919160604373 ], [ -95.213688953926081, 29.556930160504031 ], [ -95.213744953940136, 29.556996160121226 ], [ -95.213732954025744, 29.557078160211216 ], [ -95.21371095430284, 29.557107161038587 ], [ -95.213669953905054, 29.557161160851763 ], [ -95.213537954675004, 29.5572161605993 ], [ -95.213392953895422, 29.557315160427933 ], [ -95.213323954165546, 29.557397160487639 ], [ -95.213241953977018, 29.55747416034389 ], [ -95.213065954393102, 29.557623160999043 ], [ -95.212914953754165, 29.557733161048798 ], [ -95.212782954589713, 29.557876161104844 ], [ -95.212744954456355, 29.557986161087065 ], [ -95.2129399538033, 29.558167160421849 ], [ -95.213468954573727, 29.558371160788923 ], [ -95.213612954228992, 29.55845816044819 ], [ -95.213625954528467, 29.558502161186439 ], [ -95.213622954663606, 29.558532161296643 ], [ -95.213616954435807, 29.558580161243945 ], [ -95.213613954210061, 29.558607160601703 ], [ -95.213524954586504, 29.558684161043612 ], [ -95.213498954516737, 29.558698161308762 ], [ -95.21342495429144, 29.558739161348903 ], [ -95.213236953961186, 29.558867161171559 ], [ -95.213198953869508, 29.558893161250875 ], [ -95.213135954744573, 29.558921160718128 ], [ -95.213021954629028, 29.558909161158507 ], [ -95.212896954499968, 29.558844160948301 ], [ -95.212833954300237, 29.558778161365609 ], [ -95.21270195379762, 29.558679161019015 ], [ -95.212606954448077, 29.558635160507279 ], [ -95.212537954393412, 29.558613160612239 ], [ -95.212374954048911, 29.55861316130251 ], [ -95.212311953701146, 29.558613160640515 ], [ -95.212204953663331, 29.558646161257755 ], [ -95.21216195444147, 29.558678160854249 ], [ -95.212109954136722, 29.558717160871034 ], [ -95.212034954175635, 29.558789161180645 ], [ -95.211971954034482, 29.55886616137871 ], [ -95.211833954165243, 29.559086161282 ], [ -95.211745954009089, 29.559141160879676 ], [ -95.211663953638606, 29.559174160647892 ], [ -95.211537954042385, 29.559201160848144 ], [ -95.211424954162254, 29.559207161131621 ], [ -95.211273954100207, 29.559146161298294 ], [ -95.211116953879127, 29.559014161456957 ], [ -95.211053954025473, 29.558921160646051 ], [ -95.211015953507072, 29.558838161077173 ], [ -95.210940953247615, 29.558591161144061 ], [ -95.210889953360066, 29.558531160886883 ], [ -95.210789953442202, 29.558459161175517 ], [ -95.210663953529192, 29.558393160931093 ], [ -95.210462953401176, 29.558393161232438 ], [ -95.210435953454208, 29.558396160541136 ], [ -95.21032395359272, 29.558410161309524 ], [ -95.210282953229154, 29.558424161042019 ], [ -95.210210953388327, 29.558448161256578 ], [ -95.210015953764426, 29.558553161117572 ], [ -95.209940953364423, 29.558624160936191 ], [ -95.209908953740708, 29.558684160773144 ], [ -95.209896953380834, 29.558707161271368 ], [ -95.209821953795796, 29.558812161364173 ], [ -95.20974995319925, 29.558912161224871 ], [ -95.209687953330459, 29.558960160786775 ], [ -95.209506952832626, 29.559020160997324 ], [ -95.209468953797952, 29.559023161586595 ], [ -95.209386953681886, 29.559031161000185 ], [ -95.209336952946671, 29.559031160929358 ], [ -95.209292953532596, 29.559020161224403 ], [ -95.20904795299802, 29.55903716122419 ], [ -95.208914953072437, 29.559064160922542 ], [ -95.208770953672442, 29.55917416084489 ], [ -95.208751953373138, 29.559224160876703 ], [ -95.208739952897261, 29.559301161147289 ], [ -95.20873995284478, 29.559416160823062 ], [ -95.208820952892708, 29.559664160906429 ], [ -95.208820952789353, 29.559752161087477 ], [ -95.208795953441111, 29.559818161119779 ], [ -95.208726952665074, 29.559878161548625 ], [ -95.208544953076384, 29.559906161247817 ], [ -95.208512952871644, 29.559895161175572 ], [ -95.20835595258994, 29.559840160922768 ], [ -95.20828695293504, 29.55979616150875 ], [ -95.208128952781394, 29.559719161466909 ], [ -95.20803495258933, 29.559658161034214 ], [ -95.207751952792492, 29.559427161472954 ], [ -95.207616953166635, 29.559234161320404 ], [ -95.207575953239399, 29.559175161052032 ], [ -95.207522953164897, 29.559150161103023 ], [ -95.207388952316549, 29.559196160916159 ], [ -95.207294952684904, 29.559224161329109 ], [ -95.207196953046974, 29.559223161072545 ], [ -95.207123952340851, 29.55921516122147 ], [ -95.207050952229622, 29.559200161410285 ], [ -95.206958952713563, 29.559164160864761 ], [ -95.206876952878801, 29.559100161594376 ], [ -95.206800952772539, 29.559009161437743 ], [ -95.206753953000671, 29.558913161136626 ], [ -95.206739952630656, 29.558830161290793 ], [ -95.206745952487623, 29.558790160836455 ], [ -95.2067579526461, 29.558735160749571 ], [ -95.206877952277139, 29.558515160715061 ], [ -95.206940953009777, 29.558471161114131 ], [ -95.206964952708248, 29.558471161204434 ], [ -95.20699695267237, 29.558471160726675 ], [ -95.207524952883347, 29.558163160843279 ], [ -95.207606953180516, 29.558135161221909 ], [ -95.20778295266399, 29.558031160660597 ], [ -95.207845952762241, 29.557959160881833 ], [ -95.207820953054707, 29.557849161171021 ], [ -95.207732952630451, 29.55780016115871 ], [ -95.207620952317754, 29.557804160765524 ], [ -95.207387953013523, 29.557813161104399 ], [ -95.207292952472599, 29.557816161176476 ], [ -95.207273952319468, 29.557844160966336 ], [ -95.207160952938167, 29.557888160777022 ], [ -95.207002952802114, 29.557932161433921 ], [ -95.206826952124132, 29.557943161248684 ], [ -95.206720952224543, 29.557938161066375 ], [ -95.206700952678645, 29.55793716131025 ], [ -95.206600952371872, 29.557905161097178 ], [ -95.20650595274364, 29.55785516096568 ], [ -95.206455952468517, 29.55780016054381 ], [ -95.206361952331463, 29.557729160852784 ], [ -95.20624195261361, 29.557674161384938 ], [ -95.206059952379746, 29.557613160677018 ], [ -95.205864952387117, 29.55760816052128 ], [ -95.205825952469809, 29.557617161148613 ], [ -95.205770952414639, 29.557630161044546 ], [ -95.20567595222046, 29.557679160624016 ], [ -95.205581952294565, 29.557767161244172 ], [ -95.205562951775491, 29.557839160943914 ], [ -95.205562952183058, 29.558015160648189 ], [ -95.205594952648255, 29.558279161402229 ], [ -95.205594952045644, 29.558350161044199 ], [ -95.205606952135341, 29.558407160994015 ], [ -95.205631952125842, 29.558526160713743 ], [ -95.205675952833957, 29.558636161092785 ], [ -95.205789951951701, 29.558768161633562 ], [ -95.20586495286156, 29.558806161459767 ], [ -95.205946952886464, 29.55881216137033 ], [ -95.205994952267062, 29.558808160901219 ], [ -95.2060919525955, 29.558801161494564 ], [ -95.206116952101468, 29.558861160820644 ], [ -95.206122952099491, 29.558933161222271 ], [ -95.206103952100236, 29.558993161611145 ], [ -95.206040952457414, 29.559070160962275 ], [ -95.206006952414228, 29.55909316165824 ], [ -95.205991952574024, 29.559116161586378 ], [ -95.205942951977079, 29.559168160960027 ], [ -95.20587795233412, 29.559212161168865 ], [ -95.205810952571397, 29.559236160998598 ], [ -95.205763952053701, 29.559251160894608 ], [ -95.205682951945448, 29.559260161397297 ], [ -95.20557695250875, 29.559271161640538 ], [ -95.205389951911698, 29.559248161305753 ], [ -95.205174951789559, 29.559212160911386 ], [ -95.205083952538146, 29.55918016135935 ], [ -95.204973952643087, 29.559136161160563 ], [ -95.204818951769937, 29.559045161088111 ], [ -95.204797952584585, 29.559046161166648 ], [ -95.204757952259413, 29.559049161398303 ], [ -95.204669951881442, 29.55904316107797 ], [ -95.204405952056462, 29.558950160939613 ], [ -95.204330951521868, 29.55891116094779 ], [ -95.204342951755365, 29.558851161600739 ], [ -95.204493951621373, 29.558724161262454 ], [ -95.204503952521421, 29.558712161374114 ], [ -95.204498951843263, 29.558659161473997 ], [ -95.204512951504924, 29.558612161625636 ], [ -95.204540951754566, 29.558568160896151 ], [ -95.20458695246478, 29.558497161498138 ], [ -95.204591952370279, 29.558425160850522 ], [ -95.204568952051446, 29.558370161421831 ], [ -95.204536952314086, 29.558322161070578 ], [ -95.204481951723224, 29.558282160736308 ], [ -95.204336952096199, 29.558227161321771 ], [ -95.204184951724301, 29.558195161053753 ], [ -95.20412395242262, 29.558191160873939 ], [ -95.204002951853937, 29.558262161565789 ], [ -95.203914951537655, 29.558361160795226 ], [ -95.203889952005355, 29.558477160766845 ], [ -95.203919952208352, 29.558611161214408 ], [ -95.203946951388346, 29.558730161177984 ], [ -95.203927952329224, 29.558856161562552 ], [ -95.203845951474321, 29.558950160999444 ], [ -95.20381695156496, 29.55897016152041 ], [ -95.203732952351373, 29.559027161719182 ], [ -95.203562952083274, 29.559230161673391 ], [ -95.203537952140692, 29.55931816178936 ], [ -95.203531952037039, 29.559428161557843 ], [ -95.20358795201787, 29.559489161580036 ], [ -95.203590952251758, 29.559544161193617 ], [ -95.20360095151014, 29.559747161758818 ], [ -95.203575951529331, 29.559802161757297 ], [ -95.203474951870376, 29.559808161126472 ], [ -95.203349952022847, 29.559736161861949 ], [ -95.203294951552863, 29.559712161450157 ], [ -95.20326095176415, 29.559698161259334 ], [ -95.203110951336754, 29.559654161259527 ], [ -95.20300395121555, 29.559648161124986 ], [ -95.202921951530712, 29.559725161222278 ], [ -95.202921951914021, 29.559830161294613 ], [ -95.202946951358285, 29.559912161324444 ], [ -95.203026952029703, 29.560001161273203 ], [ -95.203110952068684, 29.560094161978427 ], [ -95.203129951315844, 29.560171161868485 ], [ -95.203047951944242, 29.560231161417054 ], [ -95.202971952088461, 29.560264162032919 ], [ -95.202908952019598, 29.560283161725561 ], [ -95.202802951615581, 29.560314161165028 ], [ -95.202700951794171, 29.560368161612185 ], [ -95.202657951664165, 29.56039116138852 ], [ -95.202588951956557, 29.56045116149545 ], [ -95.202437951858471, 29.56055616149305 ], [ -95.202430951793033, 29.560600161466805 ], [ -95.202481951392357, 29.560682161494228 ], [ -95.202544952010498, 29.560726161499847 ], [ -95.202665951822681, 29.560776161562192 ], [ -95.202688951725563, 29.560786161787842 ], [ -95.202879951558771, 29.560843161492478 ], [ -95.202921951620965, 29.560880161768253 ], [ -95.202971951578277, 29.560979161822058 ], [ -95.202959951590785, 29.561138161393082 ], [ -95.202883951655465, 29.561243161887234 ], [ -95.202858951745029, 29.561243161569905 ], [ -95.202795951749067, 29.561342162236691 ], [ -95.202638952134308, 29.561391162292406 ], [ -95.202462951556342, 29.561430161727891 ], [ -95.20238795142329, 29.561419162285297 ], [ -95.202230951654983, 29.561354162282374 ], [ -95.202219951435509, 29.561348161631194 ], [ -95.202183951080357, 29.561332161643033 ], [ -95.20191895111914, 29.561250161784542 ], [ -95.201812951850812, 29.561233162048232 ], [ -95.201704951707868, 29.561235161599662 ], [ -95.201547951238197, 29.561239161751683 ], [ -95.201404950872544, 29.561283162270801 ], [ -95.201303950888715, 29.561327161411267 ], [ -95.201216951184833, 29.56146016156919 ], [ -95.201100951633265, 29.562088162106242 ], [ -95.201106951104379, 29.562474161777068 ], [ -95.201109951599548, 29.562618162019962 ], [ -95.201159951717301, 29.562717161840723 ], [ -95.201178950965101, 29.56278816229856 ], [ -95.201198951714289, 29.56299216212275 ], [ -95.201184951779339, 29.563009162265768 ], [ -95.201180951610354, 29.563029161955203 ], [ -95.20116995143826, 29.56305616224229 ], [ -95.201110951230561, 29.563184162050128 ], [ -95.201060951589355, 29.563217162700305 ], [ -95.200991950820764, 29.563217162362225 ], [ -95.200896950960328, 29.563179162260791 ], [ -95.20086495141453, 29.563141162675738 ], [ -95.20075895113601, 29.563014162641107 ], [ -95.200582950990821, 29.562865162377339 ], [ -95.200292950966883, 29.562810161799369 ], [ -95.200124951131102, 29.562720161937659 ], [ -95.200097950732513, 29.562706162156097 ], [ -95.200035950616126, 29.562634162589255 ], [ -95.200028951535288, 29.562453162174698 ], [ -95.200079950929009, 29.562365162113267 ], [ -95.20017395079708, 29.562233162310612 ], [ -95.200236951056866, 29.562057161610909 ], [ -95.200330951579559, 29.561859162362204 ], [ -95.200437951005057, 29.56172716162455 ], [ -95.200569951201942, 29.561705162012199 ], [ -95.20064495128895, 29.56165016221253 ], [ -95.200613950812837, 29.5615731622098 ], [ -95.200497950787579, 29.561508162288593 ], [ -95.200437951252965, 29.56147416152173 ], [ -95.200336950748166, 29.561436161979902 ], [ -95.200239950556593, 29.561407161825791 ], [ -95.200078950728653, 29.56135916179349 ], [ -95.199972950573454, 29.561343161722057 ], [ -95.199960950880651, 29.56134016211854 ], [ -95.199934951423359, 29.561333161791975 ], [ -95.199575950449429, 29.561485161650388 ], [ -95.199462950918274, 29.561507162254824 ], [ -95.199393951270181, 29.561507161994292 ], [ -95.199305950430542, 29.56146316220693 ], [ -95.19918595070493, 29.56134816219781 ], [ -95.199066950492906, 29.561183161697137 ], [ -95.199053951130267, 29.561122161485738 ], [ -95.199072950420216, 29.561067162328087 ], [ -95.199135950262814, 29.561007162251162 ], [ -95.199223950462383, 29.560985161854937 ], [ -95.199317950670604, 29.560985162314477 ], [ -95.199412950648238, 29.56096816158491 ], [ -95.199445951104963, 29.560957161487146 ], [ -95.199500950784739, 29.560941161559537 ], [ -95.199526951345362, 29.560927162159956 ], [ -95.199732950489519, 29.560814161906116 ], [ -95.199778951224033, 29.560781161859644 ], [ -95.199946950865012, 29.560660161786199 ], [ -95.200047950895183, 29.560605161814244 ], [ -95.200085951205821, 29.560523162176846 ], [ -95.200085950474957, 29.560457161869394 ], [ -95.200007950719225, 29.560423162141351 ], [ -95.199839950456195, 29.560402161886007 ], [ -95.199732950887139, 29.560368162079989 ], [ -95.199592950361364, 29.560323161307185 ], [ -95.199443951024179, 29.560275162061888 ], [ -95.199384951065312, 29.560237162009123 ], [ -95.19933095103319, 29.560188161351579 ], [ -95.199248951148874, 29.56010016211831 ], [ -95.19902195061097, 29.559704161839484 ], [ -95.199009950197322, 29.55962716160175 ], [ -95.199097951142875, 29.559396161228165 ], [ -95.199292950615899, 29.55896116178803 ], [ -95.199285950804111, 29.55888416106173 ], [ -95.199260950665547, 29.558780161012933 ], [ -95.199249951035853, 29.558760161115629 ], [ -95.19924195089888, 29.55874716156627 ], [ -95.19919395056624, 29.558722161335254 ], [ -95.199178950643812, 29.558714161781619 ], [ -95.199021950354009, 29.558675161607166 ], [ -95.198807950141713, 29.558675161263633 ], [ -95.198682950931811, 29.558703161876394 ], [ -95.198564950739907, 29.55876616160549 ], [ -95.198468950762035, 29.55885116118381 ], [ -95.198292950786978, 29.558978161868005 ], [ -95.198197950315333, 29.559000161199748 ], [ -95.198109950032233, 29.559000161673918 ], [ -95.198021950837813, 29.558956161890215 ], [ -95.19794695048563, 29.558879161337085 ], [ -95.197940950224037, 29.558758161613614 ], [ -95.197996950037719, 29.558555161778784 ], [ -95.197971950829626, 29.558511161216334 ], [ -95.197939950361402, 29.558406161089465 ], [ -95.197879949964275, 29.558306161401802 ], [ -95.197870950575208, 29.558291161735699 ], [ -95.197801949830577, 29.558219161398487 ], [ -95.197688949983629, 29.558219161201023 ], [ -95.197619949827029, 29.558241160972187 ], [ -95.197576950417712, 29.558263161610007 ], [ -95.19748794995192, 29.558307161445462 ], [ -95.197443950290008, 29.558318161522486 ], [ -95.197407950219755, 29.558317161263236 ], [ -95.197389950680616, 29.558317161269965 ], [ -95.197358950196858, 29.558317161690937 ], [ -95.197225950106258, 29.558365161435241 ], [ -95.196968949719675, 29.558479161033592 ], [ -95.196947950263038, 29.558487161634158 ], [ -95.196942949896695, 29.558508161026392 ], [ -95.196938950316309, 29.558521161589269 ], [ -95.196933950057456, 29.558538161782291 ], [ -95.196904950000743, 29.558585161318302 ], [ -95.196889950127144, 29.558610161689824 ], [ -95.196826949802869, 29.558687161392729 ], [ -95.196656949696319, 29.55877516191477 ], [ -95.196568949574456, 29.558802161856253 ], [ -95.196506949813013, 29.55879116138756 ], [ -95.196338950236466, 29.558681161307295 ], [ -95.196304949917817, 29.558659161791166 ], [ -95.19624894991253, 29.558637161178879 ], [ -95.196166950134284, 29.558588161624151 ], [ -95.196090949836105, 29.558582161166004 ], [ -95.196015950137649, 29.558621161654653 ], [ -95.195965949411672, 29.55871416106735 ], [ -95.195958949534102, 29.558786161539807 ], [ -95.195984949488505, 29.55890116191938 ], [ -95.196021949546406, 29.55896716134373 ], [ -95.196233950180712, 29.559121161587321 ], [ -95.196248949812315, 29.559132161320058 ], [ -95.196300949925657, 29.559204161847926 ], [ -95.196367949836016, 29.559413161306836 ], [ -95.196462949821083, 29.559528161624801 ], [ -95.196556950335733, 29.559621161302417 ], [ -95.196663949804929, 29.559693161531939 ], [ -95.196801949811302, 29.559808161361197 ], [ -95.196871950076286, 29.559891161776683 ], [ -95.196952949650367, 29.559968162012016 ], [ -95.197018950452815, 29.560067161853681 ], [ -95.197028950411067, 29.560083161389247 ], [ -95.197009950322766, 29.560133161722693 ], [ -95.196973949780585, 29.560157161319669 ], [ -95.19695395037391, 29.560170161835746 ], [ -95.196927950506534, 29.560188161767844 ], [ -95.196852950349978, 29.560188161942111 ], [ -95.196773949984291, 29.560160162229344 ], [ -95.196657950017595, 29.560116161419899 ], [ -95.196518950463073, 29.560100161549794 ], [ -95.196411949615438, 29.560105161601015 ], [ -95.196272949534873, 29.560152161968503 ], [ -95.196198949926639, 29.560177162223784 ], [ -95.196110950215797, 29.560188161488661 ], [ -95.196003950435681, 29.560166161671749 ], [ -95.195921949947646, 29.56017716175473 ], [ -95.195864949447426, 29.560204162038669 ], [ -95.195801949614463, 29.560210161473528 ], [ -95.195720949634534, 29.56017716166512 ], [ -95.19563894948557, 29.560094161381905 ], [ -95.195501949727131, 29.559898162064837 ], [ -95.195483950169887, 29.559872161590832 ], [ -95.195396949666701, 29.559851161788373 ], [ -95.195333949671465, 29.559823161452339 ], [ -95.195286949593196, 29.559791162133195 ], [ -95.195250949793234, 29.559755161521345 ], [ -95.195244949867117, 29.559728161843644 ], [ -95.195244949938228, 29.559687161441229 ], [ -95.195271949739137, 29.559564162006406 ], [ -95.19525594934106, 29.559518161878742 ], [ -95.195218949441227, 29.559495161352128 ], [ -95.195171949395444, 29.559486161465802 ], [ -95.19507994948593, 29.559486161707934 ], [ -95.195003949326548, 29.559504161290246 ], [ -95.194940949665053, 29.559532161349029 ], [ -95.194836950016381, 29.559591161647891 ], [ -95.194715949722152, 29.559655161417535 ], [ -95.194651949707946, 29.559694161831828 ], [ -95.194619949308219, 29.559729161864034 ], [ -95.194436949993275, 29.559930162177082 ], [ -95.194311949822605, 29.56001216153734 ], [ -95.194091948976435, 29.560083161556857 ], [ -95.194072949174867, 29.560089162156512 ], [ -95.19405294915299, 29.560090161912189 ], [ -95.194034949890181, 29.560097161444983 ], [ -95.193981949222149, 29.56010616190969 ], [ -95.19391994893671, 29.560110162224461 ], [ -95.193845948925983, 29.560101161629515 ], [ -95.193672949535539, 29.560047161840057 ], [ -95.193510949179242, 29.559965161813391 ], [ -95.193442949324549, 29.559915161649077 ], [ -95.193405948847257, 29.559874161469832 ], [ -95.193353949076013, 29.559791161524011 ], [ -95.193321948804083, 29.559700161934853 ], [ -95.193304949156513, 29.559589161822057 ], [ -95.193160949465963, 29.559523161432587 ], [ -95.193002948956789, 29.559616161764016 ], [ -95.192663949117829, 29.55999616184376 ], [ -95.192600948917999, 29.560045161602634 ], [ -95.192380949248133, 29.560304162159881 ], [ -95.192242948557251, 29.560414162154405 ], [ -95.192084948776511, 29.560496162297696 ], [ -95.191845948908153, 29.560590162427161 ], [ -95.191789948863672, 29.560639161660706 ], [ -95.191738948502831, 29.560760161672349 ], [ -95.191688948599008, 29.56082116234985 ], [ -95.191575949132272, 29.560876161959726 ], [ -95.191430948441166, 29.560887162445415 ], [ -95.191342949106058, 29.560903161684674 ], [ -95.191216948762246, 29.561052162044501 ], [ -95.190701948094429, 29.561321162621709 ], [ -95.190600948088345, 29.561431162384778 ], [ -95.19055694824938, 29.561464162198078 ], [ -95.1904369486289, 29.561591162031906 ], [ -95.190367948352105, 29.561678161958341 ], [ -95.190311948059843, 29.561788162482703 ], [ -95.190248948436434, 29.561942162480378 ], [ -95.190242948522069, 29.562019162686134 ], [ -95.190216948143032, 29.562107162795861 ], [ -95.190154948413934, 29.562173162657373 ], [ -95.190047948242508, 29.56220616208061 ], [ -95.189877948278919, 29.562217162760668 ], [ -95.189808947897021, 29.562316162737268 ], [ -95.189776948857912, 29.56243216233262 ], [ -95.189160948312804, 29.562954162717094 ], [ -95.188870947809349, 29.563218162870832 ], [ -95.18870194859791, 29.563301162809783 ], [ -95.188594948505937, 29.563301162689065 ], [ -95.188443947815074, 29.563345162587432 ], [ -95.188374947819284, 29.563405162831732 ], [ -95.188292947705662, 29.563521162353236 ], [ -95.188267948234454, 29.563675163116098 ], [ -95.188235948585174, 29.563735162621573 ], [ -95.18818594849634, 29.563785162872165 ], [ -95.188052947636592, 29.563836162626259 ], [ -95.188464948670656, 29.564179162452032 ], [ -95.19253694937585, 29.567558163437539 ], [ -95.193102949698869, 29.568017163114259 ], [ -95.198334950739635, 29.572360164587245 ], [ -95.19895895173326, 29.572961163998254 ], [ -95.199100950824914, 29.573098164099946 ], [ -95.200648951317064, 29.574340164372508 ], [ -95.20096695208224, 29.574596165010735 ], [ -95.202477952461919, 29.575810165097415 ], [ -95.203933952733678, 29.577012165288245 ], [ -95.205073952736214, 29.577952165596468 ], [ -95.20594395292774, 29.578667165315299 ], [ -95.207146953119548, 29.579608165443688 ], [ -95.208065953445782, 29.580504165750696 ], [ -95.208165954325878, 29.580588165931587 ], [ -95.209029953713966, 29.581300165342018 ], [ -95.210066954588342, 29.582156166019978 ], [ -95.210090954476584, 29.582176165742492 ], [ -95.210179954162442, 29.582249165859132 ], [ -95.211010954486312, 29.582924166142838 ], [ -95.211147955283877, 29.583040166305537 ], [ -95.211458954972358, 29.583301165861553 ], [ -95.211711954652642, 29.583514165931877 ], [ -95.212245954663643, 29.584031166106048 ], [ -95.2127649548016, 29.584458166132894 ], [ -95.213283955048226, 29.584885166693891 ], [ -95.213380955386967, 29.584966166351233 ], [ -95.213584955178604, 29.584779166564601 ], [ -95.213621955733061, 29.584745166722978 ], [ -95.21368495547614, 29.584687165836336 ], [ -95.213825955674494, 29.584558166588689 ], [ -95.213955955309942, 29.584439166069018 ], [ -95.214460956058304, 29.58397616573885 ], [ -95.214772955478395, 29.583690166393335 ], [ -95.214953955700707, 29.583525166297253 ], [ -95.215002956027874, 29.583480166288126 ], [ -95.215058955825839, 29.583429166085889 ], [ -95.215300955649823, 29.583207166326737 ], [ -95.215615956366108, 29.582918166247595 ], [ -95.215921955811211, 29.58263816573778 ], [ -95.216106955634487, 29.582468165962162 ], [ -95.216576956134688, 29.582039165423339 ], [ -95.216735956193148, 29.581894165710278 ], [ -95.217181956240694, 29.581488165063799 ], [ -95.217382956800492, 29.581305165242817 ], [ -95.218011956055122, 29.58073016528801 ], [ -95.218322956812415, 29.580447164804795 ], [ -95.2189479567772, 29.579872164916448 ], [ -95.220038957192841, 29.578881164697691 ], [ -95.220666957543358, 29.57831216482375 ], [ -95.221250957425539, 29.577700164343891 ], [ -95.223571957473567, 29.575699164279676 ], [ -95.224913958245324, 29.574478164183098 ], [ -95.225904958119429, 29.573573163386595 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1057, "Tract": "48201350103", "Area_SqMi": 1.7029602639589279, "total_2009": 45, "total_2010": 59, "total_2011": 60, "total_2012": 60, "total_2013": 120, "total_2014": 82, "total_2015": 84, "total_2016": 57, "total_2017": 90, "total_2018": 99, "total_2019": 131, "total_2020": 161, "age1": 63, "age2": 75, "age3": 24, "earn1": 34, "earn2": 65, "earn3": 63, "naics_s01": 0, "naics_s02": 0, "naics_s03": 4, "naics_s04": 17, "naics_s05": 2, "naics_s06": 4, "naics_s07": 0, "naics_s08": 80, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 17, "naics_s13": 0, "naics_s14": 26, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 3, "naics_s19": 3, "naics_s20": 0, "race1": 97, "race2": 44, "race3": 2, "race4": 9, "race5": 0, "race6": 10, "ethnicity1": 96, "ethnicity2": 66, "edu1": 28, "edu2": 23, "edu3": 25, "edu4": 23, "Shape_Length": 33427.424374922302, "Shape_Area": 47475617.513553746, "total_2021": 177, "total_2022": 162 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.258599966263887, 29.573366162146936 ], [ -95.258683966148141, 29.573291161973643 ], [ -95.258449966276501, 29.573037162267742 ], [ -95.258375966425859, 29.572870162113883 ], [ -95.258385966877029, 29.57226216193903 ], [ -95.258255966688751, 29.572002162190554 ], [ -95.258328966236519, 29.571760162386163 ], [ -95.258540966053829, 29.571370162242431 ], [ -95.258514966175738, 29.571089162263494 ], [ -95.257824965858745, 29.570247162166428 ], [ -95.257220966403565, 29.56976216187585 ], [ -95.25692496575077, 29.569419161593295 ], [ -95.256776965935927, 29.569141161202158 ], [ -95.256659965773608, 29.568652161244955 ], [ -95.256011965533247, 29.568216161536014 ], [ -95.255454965075558, 29.567183161183525 ], [ -95.255451965220985, 29.567006161282237 ], [ -95.25572896503644, 29.566029160635921 ], [ -95.255732964980851, 29.565814160932241 ], [ -95.255662965491211, 29.565499161170454 ], [ -95.255040964882852, 29.563971160955134 ], [ -95.255003965426809, 29.563881160800715 ], [ -95.254881965515665, 29.56373816090834 ], [ -95.254437965136859, 29.563480160870025 ], [ -95.253802964594257, 29.562687160806874 ], [ -95.253400964462486, 29.561712160053641 ], [ -95.253184964369098, 29.561512159968864 ], [ -95.252896964670683, 29.561245160098938 ], [ -95.25249896434471, 29.560790159660421 ], [ -95.252367964194036, 29.560567159595632 ], [ -95.252362964314031, 29.560369159588443 ], [ -95.252538964114933, 29.560023159780286 ], [ -95.252645964143483, 29.559853159879125 ], [ -95.252652963968032, 29.559754160230767 ], [ -95.252639964389999, 29.559556159914631 ], [ -95.2525969639523, 29.559374159475059 ], [ -95.252570964060709, 29.559264159554392 ], [ -95.25257096426985, 29.559165159633935 ], [ -95.252595964114363, 29.559055159881073 ], [ -95.252759964505032, 29.558753159787464 ], [ -95.252791964845159, 29.55861515997454 ], [ -95.252791964148358, 29.558555159311137 ], [ -95.252759964470428, 29.558478159768839 ], [ -95.252690963993288, 29.558357159206963 ], [ -95.252539964839855, 29.558115159295436 ], [ -95.252495964218539, 29.557985159268689 ], [ -95.25248396382041, 29.557950159522989 ], [ -95.252489964552197, 29.557807159343522 ], [ -95.252571963932638, 29.557670159048158 ], [ -95.252747964339406, 29.55745515924092 ], [ -95.252816964566293, 29.557417159190841 ], [ -95.252930964012023, 29.55738415922497 ], [ -95.253062964502845, 29.55736715911188 ], [ -95.253823964243324, 29.557494159184188 ], [ -95.254081964854706, 29.55750515939706 ], [ -95.254433965067633, 29.55750015956264 ], [ -95.254558965293654, 29.557478159317171 ], [ -95.254735964860259, 29.557423159590712 ], [ -95.254860964699958, 29.557352159222436 ], [ -95.254949965077387, 29.55727515926856 ], [ -95.255043965396609, 29.557170159070136 ], [ -95.255150965342679, 29.556967159395455 ], [ -95.25517596528104, 29.556846159313707 ], [ -95.255144965166977, 29.55658215952085 ], [ -95.255075964639119, 29.556214158692356 ], [ -95.254912964837317, 29.555713158584759 ], [ -95.2548929646441, 29.555520158525823 ], [ -95.254880964662163, 29.555411158651896 ], [ -95.254824964454514, 29.555279158629208 ], [ -95.254805965011485, 29.555086158576284 ], [ -95.254767964786424, 29.55499315913627 ], [ -95.25467996472311, 29.554916158649334 ], [ -95.254459964293474, 29.554767158422482 ], [ -95.254202964803142, 29.554630158742992 ], [ -95.254120964680595, 29.554536158514281 ], [ -95.254088964716644, 29.554454158925164 ], [ -95.25407096425559, 29.554338158884661 ], [ -95.254070964339164, 29.554206158295464 ], [ -95.25405196407489, 29.554107158639521 ], [ -95.253958964370753, 29.553948158811043 ], [ -95.253885964243821, 29.554042159018927 ], [ -95.253375964735255, 29.554647158651878 ], [ -95.252849963865643, 29.555275158529874 ], [ -95.252224963895699, 29.555995158757217 ], [ -95.252211963801614, 29.556010159050281 ], [ -95.251877964407925, 29.556435159465575 ], [ -95.251645964244275, 29.557603159417212 ], [ -95.251602964369411, 29.557694159120903 ], [ -95.251534964293811, 29.557774159536002 ], [ -95.25038896378507, 29.558838159678913 ], [ -95.249937964003919, 29.559245160003112 ], [ -95.247544962834169, 29.56141715999501 ], [ -95.246228963375714, 29.562626160967746 ], [ -95.244945962925073, 29.563806161111479 ], [ -95.243237962694423, 29.565326160997625 ], [ -95.242298962431477, 29.566163161292337 ], [ -95.240910961779647, 29.56742316207713 ], [ -95.240893962248634, 29.567438161742785 ], [ -95.239825961326446, 29.568408161851565 ], [ -95.23761296106187, 29.570414162731581 ], [ -95.236056960961974, 29.571825163324455 ], [ -95.235393960370487, 29.572441163253451 ], [ -95.23572496025642, 29.572721162735611 ], [ -95.235782960372433, 29.57276616292674 ], [ -95.235867960306095, 29.572832163381634 ], [ -95.23604496050126, 29.572965162767773 ], [ -95.236090960615059, 29.5730031628554 ], [ -95.236106960874238, 29.573017163309665 ], [ -95.236140960758689, 29.573045162704734 ], [ -95.236192960570435, 29.573088163077593 ], [ -95.236418961333783, 29.573272162830943 ], [ -95.236476961031656, 29.573320163399472 ], [ -95.236535960463655, 29.573368163185613 ], [ -95.236594961326176, 29.573417163221471 ], [ -95.236825961175839, 29.573608162836578 ], [ -95.236882960574562, 29.573656163053599 ], [ -95.236940961392875, 29.573703163198722 ], [ -95.236997960898492, 29.573751163365714 ], [ -95.237230961177005, 29.573941163205127 ], [ -95.237285961594083, 29.573986163156569 ], [ -95.237338961338111, 29.574030163432564 ], [ -95.237390961474375, 29.574074163548396 ], [ -95.2374429613036, 29.574117163396487 ], [ -95.237493961136892, 29.57415916374077 ], [ -95.237641961196076, 29.574281162982601 ], [ -95.237730961634256, 29.574354163519072 ], [ -95.237771961167653, 29.574388163093637 ], [ -95.237840961762458, 29.574448162978726 ], [ -95.237904961556453, 29.574501163129693 ], [ -95.237914961082694, 29.57450916374831 ], [ -95.237894961353803, 29.574528163563919 ], [ -95.23783696172643, 29.57458316369998 ], [ -95.237662961698376, 29.574743163649149 ], [ -95.237605961069463, 29.574794163762057 ], [ -95.237430960760662, 29.574940163560516 ], [ -95.237369961092355, 29.57498216358745 ], [ -95.237241961009772, 29.575053163173916 ], [ -95.237037960741759, 29.575123163600647 ], [ -95.23696996104087, 29.575136163643453 ], [ -95.236904960999425, 29.575148163860771 ], [ -95.236846961372706, 29.575159163984264 ], [ -95.236732961479532, 29.575184163350738 ], [ -95.236613961241275, 29.575227163403476 ], [ -95.236503960728982, 29.575278163927184 ], [ -95.236439961371417, 29.575308163852377 ], [ -95.236373961264292, 29.575340163889777 ], [ -95.23623496118654, 29.575407163488627 ], [ -95.236148960993376, 29.575444163272017 ], [ -95.236086960744672, 29.575471163513559 ], [ -95.236009960567088, 29.575499163397438 ], [ -95.235842960496669, 29.575541163965966 ], [ -95.23566196041773, 29.575567163695613 ], [ -95.235568960821439, 29.575576163482481 ], [ -95.2354749608416, 29.575586163269474 ], [ -95.235187960329, 29.575613163394486 ], [ -95.235092960247329, 29.575622163412849 ], [ -95.235001960871855, 29.575634163857476 ], [ -95.234675960075322, 29.575722163681874 ], [ -95.234609960828564, 29.575756163368681 ], [ -95.234549960562461, 29.57579316382051 ], [ -95.234495960020098, 29.575832163926009 ], [ -95.234450960376222, 29.575867163711983 ], [ -95.23443396097295, 29.575874163405537 ], [ -95.234380960171961, 29.575926164010163 ], [ -95.23432196060952, 29.575976164032173 ], [ -95.234242960605414, 29.576046163537466 ], [ -95.234161960009104, 29.576119164253178 ], [ -95.234071960368908, 29.576199164156215 ], [ -95.234023960561657, 29.576241164042738 ], [ -95.233976960071999, 29.576282163829134 ], [ -95.233946960576489, 29.576308163916831 ], [ -95.233810960418836, 29.576425163537248 ], [ -95.233747960329794, 29.576484163839908 ], [ -95.232383959908177, 29.577725163803194 ], [ -95.232997960395821, 29.578371163948734 ], [ -95.233410960505338, 29.578954164785287 ], [ -95.233796960940197, 29.579722164478962 ], [ -95.234033960335609, 29.5805101645288 ], [ -95.234231960762287, 29.581556165059737 ], [ -95.234378960611693, 29.58235816551068 ], [ -95.234520960607171, 29.583131165135899 ], [ -95.234669961092862, 29.583929165166058 ], [ -95.234832960815055, 29.584660165767172 ], [ -95.235146960777158, 29.585460165257835 ], [ -95.236948961333042, 29.584774165799836 ], [ -95.237957961699266, 29.58452516522097 ], [ -95.23868896234552, 29.584437165557613 ], [ -95.239976962322913, 29.584408165074674 ], [ -95.240684962210963, 29.584393165120414 ], [ -95.240965962907239, 29.584381165335923 ], [ -95.241190962450773, 29.584392165564072 ], [ -95.241430962334732, 29.584405164913036 ], [ -95.241537963131748, 29.584420165398779 ], [ -95.24244496311681, 29.584549165473977 ], [ -95.243170963036263, 29.584725165439373 ], [ -95.243857963658826, 29.584824164960633 ], [ -95.244166963505933, 29.58485116569604 ], [ -95.244218963601341, 29.584856165464444 ], [ -95.244345963906582, 29.584867165522667 ], [ -95.245002963773501, 29.584889165440231 ], [ -95.245866963792579, 29.584824165376162 ], [ -95.246481963654432, 29.584700164890606 ], [ -95.247442964324307, 29.584392165403301 ], [ -95.248227963834609, 29.5840391654001 ], [ -95.249019964043825, 29.583496165133322 ], [ -95.24945196464202, 29.583123164817074 ], [ -95.249863964718315, 29.582672164771726 ], [ -95.250206964600835, 29.582199164877654 ], [ -95.250452965140795, 29.581860164368578 ], [ -95.250497964705161, 29.581793164543257 ], [ -95.250517965292048, 29.581763164887494 ], [ -95.250527965045791, 29.581749164824007 ], [ -95.251014964656662, 29.581023164389254 ], [ -95.252310965217063, 29.579715163919833 ], [ -95.252942965074553, 29.579138163889954 ], [ -95.255881965701192, 29.576457163476658 ], [ -95.25621996603364, 29.576133163484421 ], [ -95.256496966000199, 29.57586816339002 ], [ -95.2569029662166, 29.57538416293842 ], [ -95.257203966089691, 29.574900163136068 ], [ -95.257491966578939, 29.574442162429865 ], [ -95.257943966500306, 29.573979162817736 ], [ -95.258132966618163, 29.573788162615969 ], [ -95.258599966263887, 29.573366162146936 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1058, "Tract": "48201411507", "Area_SqMi": 0.11731271130401896, "total_2009": 2477, "total_2010": 1877, "total_2011": 1410, "total_2012": 1103, "total_2013": 1171, "total_2014": 1267, "total_2015": 1201, "total_2016": 1136, "total_2017": 991, "total_2018": 1894, "total_2019": 1158, "total_2020": 957, "age1": 248, "age2": 566, "age3": 258, "earn1": 133, "earn2": 286, "earn3": 653, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 83, "naics_s05": 0, "naics_s06": 3, "naics_s07": 111, "naics_s08": 7, "naics_s09": 0, "naics_s10": 31, "naics_s11": 48, "naics_s12": 139, "naics_s13": 0, "naics_s14": 217, "naics_s15": 19, "naics_s16": 246, "naics_s17": 11, "naics_s18": 91, "naics_s19": 59, "naics_s20": 2, "race1": 773, "race2": 176, "race3": 16, "race4": 87, "race5": 2, "race6": 18, "ethnicity1": 725, "ethnicity2": 347, "edu1": 173, "edu2": 195, "edu3": 246, "edu4": 210, "Shape_Length": 9724.4013292669242, "Shape_Area": 3270477.6084439997, "total_2021": 1003, "total_2022": 1072 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.441670020900204, 29.741735190879783 ], [ -95.441643021154078, 29.740441190414945 ], [ -95.441636020813974, 29.739658190867495 ], [ -95.441618021231506, 29.739462190555393 ], [ -95.441613020521814, 29.738211190234072 ], [ -95.440015020400693, 29.738236190616625 ], [ -95.438848019628594, 29.738255190296471 ], [ -95.438625020238931, 29.73825919058762 ], [ -95.43857501999149, 29.736748190156241 ], [ -95.438572019952232, 29.736647189839349 ], [ -95.438558019338103, 29.736195189872195 ], [ -95.438546019801151, 29.735366189934098 ], [ -95.43852201952501, 29.735070189140963 ], [ -95.438517019366344, 29.734910189419601 ], [ -95.438510019589728, 29.734705189647105 ], [ -95.438507020209215, 29.734610189245185 ], [ -95.438503020058974, 29.734477189274326 ], [ -95.438499019734934, 29.73437918980656 ], [ -95.438497019999573, 29.734290189754073 ], [ -95.438487020227484, 29.73399918899598 ], [ -95.438460020055572, 29.733156189385937 ], [ -95.438445019213958, 29.732692189514296 ], [ -95.436382018981618, 29.732714189067654 ], [ -95.436406018867871, 29.733307189283458 ], [ -95.436447019657493, 29.73405618934493 ], [ -95.43653401882564, 29.73561918948975 ], [ -95.436544019014178, 29.735887189822929 ], [ -95.436548019542712, 29.736002189999613 ], [ -95.4365970190116, 29.73732019038663 ], [ -95.436599019625689, 29.737385189729199 ], [ -95.436626019102917, 29.738267190166539 ], [ -95.436587019375111, 29.738378190494174 ], [ -95.436657019610422, 29.741565191421131 ], [ -95.437075019725754, 29.741585190762752 ], [ -95.438191020477944, 29.74162519120879 ], [ -95.439097020008361, 29.741658190825806 ], [ -95.439866020008651, 29.741684191320221 ], [ -95.441670020900204, 29.741735190879783 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1059, "Tract": "48201411301", "Area_SqMi": 0.34413594123076169, "total_2009": 11100, "total_2010": 11857, "total_2011": 14648, "total_2012": 13598, "total_2013": 15414, "total_2014": 15745, "total_2015": 16024, "total_2016": 13518, "total_2017": 13781, "total_2018": 15009, "total_2019": 14986, "total_2020": 13551, "age1": 2761, "age2": 8524, "age3": 3382, "earn1": 1303, "earn2": 3332, "earn3": 10032, "naics_s01": 3, "naics_s02": 256, "naics_s03": 1, "naics_s04": 259, "naics_s05": 9, "naics_s06": 96, "naics_s07": 112, "naics_s08": 296, "naics_s09": 9, "naics_s10": 3313, "naics_s11": 498, "naics_s12": 3778, "naics_s13": 1011, "naics_s14": 3430, "naics_s15": 120, "naics_s16": 510, "naics_s17": 48, "naics_s18": 578, "naics_s19": 336, "naics_s20": 4, "race1": 10347, "race2": 3076, "race3": 103, "race4": 875, "race5": 24, "race6": 242, "ethnicity1": 10214, "ethnicity2": 4453, "edu1": 2032, "edu2": 2767, "edu3": 3740, "edu4": 3367, "Shape_Length": 13815.193099478016, "Shape_Area": 9593921.0469637215, "total_2021": 13324, "total_2022": 14667 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.45657702542654, 29.747718191464159 ], [ -95.456598025450063, 29.747677191599152 ], [ -95.456422025179194, 29.747523191654185 ], [ -95.456337025368612, 29.747435191826529 ], [ -95.45612602443461, 29.74729419178928 ], [ -95.455926024742823, 29.747191191490369 ], [ -95.455735025001488, 29.747096191748149 ], [ -95.45553902486742, 29.746995191310347 ], [ -95.455273024954906, 29.746890191182434 ], [ -95.455047024545351, 29.746812191015515 ], [ -95.454930024017784, 29.746745191254181 ], [ -95.454442024487221, 29.746633191357724 ], [ -95.453944024077643, 29.746648191389774 ], [ -95.453806024451197, 29.746657191287916 ], [ -95.452762023508427, 29.746673191085975 ], [ -95.451871023759878, 29.746675191661023 ], [ -95.450731023238191, 29.74666219193271 ], [ -95.45065102335748, 29.746662191130575 ], [ -95.449987023475543, 29.746666191189508 ], [ -95.449794023511714, 29.746658191385951 ], [ -95.448578023348361, 29.746652191377837 ], [ -95.448390022521423, 29.746658191300146 ], [ -95.448263023217507, 29.746662192084937 ], [ -95.448333023351239, 29.750478192603445 ], [ -95.448413023332634, 29.754787193089609 ], [ -95.448403023249043, 29.755998193784126 ], [ -95.448408023332149, 29.756106193770037 ], [ -95.448587022944423, 29.756172193792949 ], [ -95.4498680233458, 29.756235193813229 ], [ -95.450436023864697, 29.756324193156924 ], [ -95.450761023781212, 29.756474193137322 ], [ -95.451184023718852, 29.756867193775278 ], [ -95.451530023889589, 29.757063193603827 ], [ -95.452116024526617, 29.757234193996748 ], [ -95.452651023883107, 29.757244193887548 ], [ -95.452846024461877, 29.757297193829775 ], [ -95.452934024070871, 29.757415194058822 ], [ -95.452942024543162, 29.757522193563574 ], [ -95.452663024648857, 29.758270193594431 ], [ -95.452669024726092, 29.758588193529189 ], [ -95.452941024881056, 29.758801194040682 ], [ -95.453224024208652, 29.758930194108476 ], [ -95.453562024853667, 29.759083193788346 ], [ -95.455071024725555, 29.759892193900587 ], [ -95.455294025160356, 29.759929193948512 ], [ -95.455433025570784, 29.759952193897021 ], [ -95.455523025432669, 29.759955193814662 ], [ -95.455729025273712, 29.759962194402824 ], [ -95.455729025579188, 29.759852194326147 ], [ -95.455721024783458, 29.75783319385889 ], [ -95.455721025124433, 29.757776193527711 ], [ -95.455714024807534, 29.757372193943535 ], [ -95.455677025355527, 29.75519519283252 ], [ -95.455670025019998, 29.754795193479097 ], [ -95.455663024730882, 29.754378192711432 ], [ -95.455659025314887, 29.754168193343602 ], [ -95.455654024780998, 29.753862192551033 ], [ -95.45562302528171, 29.752934192430427 ], [ -95.455675024815662, 29.752191192867734 ], [ -95.455722024970214, 29.751806192055184 ], [ -95.455743024793392, 29.751591192424456 ], [ -95.456234024467562, 29.749227191985586 ], [ -95.456501025193063, 29.748012191675933 ], [ -95.456555024562846, 29.747805191837546 ], [ -95.45657702542654, 29.747718191464159 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1060, "Tract": "48201410502", "Area_SqMi": 0.21167219511364554, "total_2009": 715, "total_2010": 828, "total_2011": 753, "total_2012": 805, "total_2013": 931, "total_2014": 987, "total_2015": 894, "total_2016": 784, "total_2017": 799, "total_2018": 812, "total_2019": 789, "total_2020": 720, "age1": 130, "age2": 452, "age3": 201, "earn1": 185, "earn2": 332, "earn3": 266, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 8, "naics_s05": 48, "naics_s06": 11, "naics_s07": 40, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 6, "naics_s12": 102, "naics_s13": 2, "naics_s14": 267, "naics_s15": 1, "naics_s16": 4, "naics_s17": 0, "naics_s18": 273, "naics_s19": 17, "naics_s20": 0, "race1": 648, "race2": 76, "race3": 7, "race4": 37, "race5": 3, "race6": 12, "ethnicity1": 462, "ethnicity2": 321, "edu1": 178, "edu2": 178, "edu3": 169, "edu4": 128, "Shape_Length": 12522.656522538326, "Shape_Area": 5901058.519185815, "total_2021": 803, "total_2022": 783 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.38891100797909, 29.75085519451985 ], [ -95.388918007778557, 29.750792194868406 ], [ -95.388906007398987, 29.750179194277536 ], [ -95.388892007839019, 29.749505194484751 ], [ -95.388879007895909, 29.749446194369924 ], [ -95.38887100757934, 29.7488351942369 ], [ -95.388870007611715, 29.748163193724459 ], [ -95.388865007894083, 29.747471194151039 ], [ -95.388863007860536, 29.746734193478318 ], [ -95.388877007230363, 29.746639193377941 ], [ -95.388853007996701, 29.745390193457816 ], [ -95.388060007604309, 29.745408193751508 ], [ -95.387257007032915, 29.74542719336096 ], [ -95.385966006987047, 29.745451193081223 ], [ -95.384805006425069, 29.745481193248054 ], [ -95.383030005583663, 29.745528194009982 ], [ -95.381672005817691, 29.745566193539876 ], [ -95.381685005401906, 29.746153193518978 ], [ -95.381679005357924, 29.746473193987416 ], [ -95.381687005341661, 29.746904193471327 ], [ -95.381671005897601, 29.746985193676505 ], [ -95.381637005229649, 29.747060194226929 ], [ -95.381581005754441, 29.747138194152495 ], [ -95.382427005697508, 29.747666193881418 ], [ -95.383285006051636, 29.748169193917757 ], [ -95.383225006283553, 29.748261194274718 ], [ -95.382817005710208, 29.748773194491239 ], [ -95.382359005792352, 29.74933819481198 ], [ -95.381798005485933, 29.75005019422435 ], [ -95.380931005672778, 29.749531194147384 ], [ -95.380467005213461, 29.750130194809241 ], [ -95.38044800599846, 29.750152194947834 ], [ -95.380441005229102, 29.750171194705061 ], [ -95.380355005141453, 29.750306194920785 ], [ -95.380310005160709, 29.750458195101995 ], [ -95.380300005241367, 29.750625194453409 ], [ -95.380276005765822, 29.750756194559006 ], [ -95.380206006024579, 29.750974194743318 ], [ -95.380100005758194, 29.751149195001506 ], [ -95.37998000586208, 29.751294195031125 ], [ -95.379829005326798, 29.75141819447947 ], [ -95.379738005758682, 29.751458195304068 ], [ -95.379613005052576, 29.751506194765128 ], [ -95.379492005327137, 29.751535194584235 ], [ -95.379367005238649, 29.75155119521494 ], [ -95.379188005415472, 29.751547194765244 ], [ -95.37898700556849, 29.75150819527795 ], [ -95.378739004945729, 29.751406194510668 ], [ -95.378519005447544, 29.751282194798165 ], [ -95.378387005018268, 29.751198194727198 ], [ -95.378023004666986, 29.751633194782411 ], [ -95.378563004873072, 29.751974194819901 ], [ -95.378760005566264, 29.752098194737496 ], [ -95.378939005673004, 29.752133195109465 ], [ -95.379036005268901, 29.752118194730514 ], [ -95.379141005283998, 29.752071195230052 ], [ -95.379522005912804, 29.752060195331715 ], [ -95.380405005136055, 29.752055195178048 ], [ -95.381289005564298, 29.752053195047587 ], [ -95.382167005671576, 29.752048195405518 ], [ -95.383045006278877, 29.752044194694122 ], [ -95.384006006165464, 29.752035195200449 ], [ -95.384111006532777, 29.752027195138904 ], [ -95.384869007249989, 29.752020194890367 ], [ -95.384971006779935, 29.752011195179236 ], [ -95.385739007329434, 29.752004194436385 ], [ -95.385740006717484, 29.752626195298483 ], [ -95.386854006891184, 29.752610195061742 ], [ -95.387319007744864, 29.752604194891042 ], [ -95.38891100781963, 29.75258119481315 ], [ -95.388908007400943, 29.75152519471682 ], [ -95.38891100797909, 29.75085519451985 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1061, "Tract": "48201210500", "Area_SqMi": 0.83161645405485796, "total_2009": 810, "total_2010": 798, "total_2011": 816, "total_2012": 842, "total_2013": 886, "total_2014": 824, "total_2015": 839, "total_2016": 838, "total_2017": 883, "total_2018": 936, "total_2019": 973, "total_2020": 920, "age1": 185, "age2": 519, "age3": 261, "earn1": 185, "earn2": 384, "earn3": 396, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 38, "naics_s05": 58, "naics_s06": 33, "naics_s07": 261, "naics_s08": 17, "naics_s09": 8, "naics_s10": 8, "naics_s11": 17, "naics_s12": 19, "naics_s13": 3, "naics_s14": 182, "naics_s15": 27, "naics_s16": 29, "naics_s17": 1, "naics_s18": 144, "naics_s19": 120, "naics_s20": 0, "race1": 744, "race2": 139, "race3": 11, "race4": 59, "race5": 2, "race6": 10, "ethnicity1": 495, "ethnicity2": 470, "edu1": 242, "edu2": 203, "edu3": 203, "edu4": 132, "Shape_Length": 20819.262297488011, "Shape_Area": 23184043.413263395, "total_2021": 840, "total_2022": 965 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.371945005612233, 29.800045205149083 ], [ -95.371932005906814, 29.799883204816151 ], [ -95.371921005432327, 29.799500205388853 ], [ -95.371888005802973, 29.798274204890141 ], [ -95.371884005328525, 29.798138204426959 ], [ -95.371881005560624, 29.798018204448677 ], [ -95.371854004958067, 29.79705920457797 ], [ -95.371798005251208, 29.793871204151039 ], [ -95.371828005458752, 29.793034203814265 ], [ -95.371823005467249, 29.792756203375848 ], [ -95.371852005270597, 29.792212203708029 ], [ -95.371720004921102, 29.792217203203606 ], [ -95.37163500546761, 29.792222203930262 ], [ -95.371266005431977, 29.792239203314818 ], [ -95.370853004729611, 29.79223720362317 ], [ -95.37040200525071, 29.792238203169692 ], [ -95.369885004788529, 29.792243203384945 ], [ -95.369573004804224, 29.792246203459101 ], [ -95.368744004751662, 29.792245203644722 ], [ -95.368493004118704, 29.792419203317042 ], [ -95.368168004025506, 29.792722203961183 ], [ -95.367894004661991, 29.792549204000796 ], [ -95.367686004155075, 29.792439203965085 ], [ -95.367510003957094, 29.792428203365905 ], [ -95.367056004271205, 29.792511203589946 ], [ -95.366754004056915, 29.792505204170212 ], [ -95.366426003885536, 29.792417203976122 ], [ -95.366359003900371, 29.792361203779617 ], [ -95.366268003310367, 29.792286203646949 ], [ -95.366028003456933, 29.792137203342847 ], [ -95.365770003632903, 29.791956203609622 ], [ -95.365259003860317, 29.791384203498644 ], [ -95.365019003248477, 29.791170203413873 ], [ -95.364723003451218, 29.791022203945403 ], [ -95.36391000365748, 29.790703203611852 ], [ -95.363418002803115, 29.790599203509679 ], [ -95.363084003379328, 29.790456203586078 ], [ -95.36275000255479, 29.790335203305062 ], [ -95.362441002660091, 29.790280203500899 ], [ -95.3618920022503, 29.789973203076805 ], [ -95.361810002699187, 29.789791203413849 ], [ -95.361820002535666, 29.789753202927677 ], [ -95.361414002119091, 29.789756203059785 ], [ -95.36043700231113, 29.78975520366469 ], [ -95.359863002496951, 29.78976420371804 ], [ -95.359359002076417, 29.789757203777658 ], [ -95.358955002187116, 29.789771203699289 ], [ -95.358662001279995, 29.789760203869793 ], [ -95.357945001609423, 29.789777203317275 ], [ -95.357837001061696, 29.789775203791514 ], [ -95.35701300182599, 29.789781203742887 ], [ -95.356926001446922, 29.789787203161989 ], [ -95.356086001588437, 29.789788203174652 ], [ -95.35595400088377, 29.789795203625989 ], [ -95.355542001133955, 29.789793203566191 ], [ -95.355017000443254, 29.789800203318482 ], [ -95.354053000814773, 29.789804203888039 ], [ -95.353057000263647, 29.789804203607588 ], [ -95.352088000486958, 29.789810204147088 ], [ -95.351913999764321, 29.7898312033292 ], [ -95.351617999574927, 29.789838203953998 ], [ -95.351103000084009, 29.789834203507716 ], [ -95.350133999236846, 29.789842203749707 ], [ -95.350154999483649, 29.790692203642415 ], [ -95.350165999379513, 29.791538203907006 ], [ -95.350179999992747, 29.792385204577659 ], [ -95.350175999496656, 29.79244620412225 ], [ -95.350170999814509, 29.793209204431662 ], [ -95.350185000227782, 29.793364204559808 ], [ -95.350203999909311, 29.793458204364651 ], [ -95.350216999927568, 29.793503204942777 ], [ -95.350239000240265, 29.793634204440583 ], [ -95.350249999471643, 29.794118204695483 ], [ -95.350267999335301, 29.794973204660099 ], [ -95.350263000073241, 29.795207204679752 ], [ -95.350274999688125, 29.795812204905666 ], [ -95.350289000211632, 29.79665320537832 ], [ -95.350315000372831, 29.797514204961757 ], [ -95.350341999747712, 29.798368205201296 ], [ -95.350378999679634, 29.799199205982443 ], [ -95.350393999669194, 29.800065205804128 ], [ -95.35137299991159, 29.80004520607611 ], [ -95.352351000174281, 29.800019205414486 ], [ -95.353330000348393, 29.800004205696318 ], [ -95.354313000752029, 29.799986206091933 ], [ -95.355279000986911, 29.799978206112456 ], [ -95.356245001248041, 29.799956205248254 ], [ -95.357176001815304, 29.799951205619095 ], [ -95.35725200146716, 29.7999752055389 ], [ -95.357463002015351, 29.800009206049438 ], [ -95.357675002433666, 29.800010205996294 ], [ -95.3577520023277, 29.800012205215292 ], [ -95.358204002317265, 29.800021205519762 ], [ -95.358726001832508, 29.800012205752367 ], [ -95.35897600276455, 29.800007205968257 ], [ -95.359131002793205, 29.800004205543047 ], [ -95.359193002471727, 29.800003205884611 ], [ -95.35954600238945, 29.800000205438263 ], [ -95.359889002484749, 29.799997205119979 ], [ -95.360044002927751, 29.799995205602858 ], [ -95.360097002589512, 29.799994205760697 ], [ -95.360758002549517, 29.799983205294836 ], [ -95.360913002922032, 29.799981205675007 ], [ -95.361059003319696, 29.799979205277239 ], [ -95.362010002790356, 29.799977205416958 ], [ -95.36294000315111, 29.799959205343626 ], [ -95.363853003123339, 29.799949205516761 ], [ -95.36477600418965, 29.799933205349618 ], [ -95.365692003772381, 29.799909205542075 ], [ -95.366626004564623, 29.799904205419576 ], [ -95.367433004630158, 29.799892205325634 ], [ -95.367935004686387, 29.799903205650253 ], [ -95.367934004187759, 29.800056205029236 ], [ -95.368737005047905, 29.800051205244603 ], [ -95.369710004805825, 29.800045205462766 ], [ -95.370316004718958, 29.800047204762468 ], [ -95.371389005047092, 29.80004220531977 ], [ -95.371653005178814, 29.800043205169835 ], [ -95.371789005135128, 29.800044205366035 ], [ -95.371945005612233, 29.800045205149083 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1062, "Tract": "48201210900", "Area_SqMi": 0.48661979873006805, "total_2009": 40, "total_2010": 62, "total_2011": 71, "total_2012": 66, "total_2013": 48, "total_2014": 72, "total_2015": 63, "total_2016": 65, "total_2017": 67, "total_2018": 62, "total_2019": 49, "total_2020": 53, "age1": 15, "age2": 27, "age3": 19, "earn1": 28, "earn2": 26, "earn3": 7, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 44, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 36, "race2": 16, "race3": 1, "race4": 6, "race5": 1, "race6": 1, "ethnicity1": 40, "ethnicity2": 21, "edu1": 14, "edu2": 13, "edu3": 10, "edu4": 9, "Shape_Length": 15037.893781131088, "Shape_Area": 13566127.130485063, "total_2021": 52, "total_2022": 61 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.340093997439212, 29.801671206755838 ], [ -95.340114998046957, 29.801511206309158 ], [ -95.339873997233838, 29.801455206308681 ], [ -95.339699997051312, 29.801415206274925 ], [ -95.339571997443841, 29.80138420607738 ], [ -95.339334997350363, 29.801328206918136 ], [ -95.338629997396083, 29.801147206325588 ], [ -95.337404996830543, 29.800888206587992 ], [ -95.336979996313332, 29.80079820640276 ], [ -95.336223996363202, 29.8005152063871 ], [ -95.335973996927521, 29.800421206578637 ], [ -95.335376996555809, 29.800282206889968 ], [ -95.334870996322707, 29.800177206463559 ], [ -95.334751995687228, 29.800169206503195 ], [ -95.334224996092274, 29.800136206377307 ], [ -95.333900995942187, 29.800114206467835 ], [ -95.333389995805618, 29.800079206127091 ], [ -95.333094995183643, 29.800059206147441 ], [ -95.332244995790447, 29.800070206845554 ], [ -95.331368995388218, 29.800080206227573 ], [ -95.3306029949959, 29.800090206975565 ], [ -95.329563994429122, 29.800103206626673 ], [ -95.328216994723533, 29.800119206925103 ], [ -95.327134994282034, 29.800133207022323 ], [ -95.325860994281882, 29.800148206823575 ], [ -95.324099992891206, 29.800170206718278 ], [ -95.324101993042916, 29.800316206605732 ], [ -95.324152993480382, 29.80356520780844 ], [ -95.324152993961107, 29.803876207944988 ], [ -95.324177994077573, 29.805874207988321 ], [ -95.324183993353657, 29.806195207842833 ], [ -95.324228993386171, 29.80876920830552 ], [ -95.324233993935621, 29.809077208294468 ], [ -95.324708993513383, 29.809015208189436 ], [ -95.324999994000379, 29.808963208172123 ], [ -95.325108994386781, 29.808943208908101 ], [ -95.325784994358685, 29.808863208467514 ], [ -95.32762499491335, 29.80860120864849 ], [ -95.328254994382661, 29.808506208022688 ], [ -95.328516995095995, 29.808467207910795 ], [ -95.328736994484998, 29.808434207981051 ], [ -95.330390994867955, 29.808187207980087 ], [ -95.33068299531007, 29.8081552081042 ], [ -95.331155995019003, 29.808104208118941 ], [ -95.332083995952857, 29.808041208567669 ], [ -95.332469995639499, 29.808035207985956 ], [ -95.33295199555802, 29.808028208127208 ], [ -95.333988996460349, 29.808024207967826 ], [ -95.334104996024564, 29.808031208264481 ], [ -95.335235996984522, 29.808146207836838 ], [ -95.335651996660047, 29.808188208476938 ], [ -95.335768996598986, 29.80820320788542 ], [ -95.336037997102466, 29.808238207825905 ], [ -95.336260996365127, 29.808267208366473 ], [ -95.336378996538187, 29.808100208243406 ], [ -95.33647599658191, 29.807962208055173 ], [ -95.336906996810072, 29.807434208105992 ], [ -95.337160996829667, 29.80712320814099 ], [ -95.337832997195065, 29.80630120789279 ], [ -95.337991996805329, 29.806113207569528 ], [ -95.338224997364875, 29.805837207731329 ], [ -95.339006997301368, 29.804795207273923 ], [ -95.339327997107048, 29.804299207203869 ], [ -95.339571997049575, 29.803810207212813 ], [ -95.339631997232061, 29.803677207116486 ], [ -95.339815997304697, 29.803266206645532 ], [ -95.33996999744295, 29.802801206455328 ], [ -95.340068997649141, 29.802141206933939 ], [ -95.340082997757079, 29.801884206589694 ], [ -95.340093997439212, 29.801671206755838 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1063, "Tract": "48201221400", "Area_SqMi": 0.77954292273053116, "total_2009": 1450, "total_2010": 1223, "total_2011": 1314, "total_2012": 1275, "total_2013": 1344, "total_2014": 1292, "total_2015": 1082, "total_2016": 1491, "total_2017": 1453, "total_2018": 1505, "total_2019": 1511, "total_2020": 1385, "age1": 472, "age2": 837, "age3": 374, "earn1": 396, "earn2": 616, "earn3": 671, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 108, "naics_s05": 49, "naics_s06": 50, "naics_s07": 647, "naics_s08": 2, "naics_s09": 1, "naics_s10": 50, "naics_s11": 13, "naics_s12": 17, "naics_s13": 0, "naics_s14": 12, "naics_s15": 102, "naics_s16": 358, "naics_s17": 1, "naics_s18": 262, "naics_s19": 11, "naics_s20": 0, "race1": 1155, "race2": 410, "race3": 19, "race4": 72, "race5": 3, "race6": 24, "ethnicity1": 910, "ethnicity2": 773, "edu1": 387, "edu2": 336, "edu3": 302, "edu4": 186, "Shape_Length": 19337.758106950732, "Shape_Area": 21732322.484680753, "total_2021": 1564, "total_2022": 1683 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.402585016555278, 29.859400215838942 ], [ -95.402499016392966, 29.859231216545325 ], [ -95.402134016016703, 29.858564216045679 ], [ -95.401313015888917, 29.857210216243317 ], [ -95.400972015844232, 29.856805215907642 ], [ -95.400498015340432, 29.856179215360189 ], [ -95.398180014971018, 29.852898215059614 ], [ -95.397925014331463, 29.852538215273082 ], [ -95.396393013773192, 29.850375214594148 ], [ -95.394484013401694, 29.847681214251697 ], [ -95.393104012900466, 29.845730214067842 ], [ -95.392962013423016, 29.8455292135985 ], [ -95.392831012839665, 29.845531213403191 ], [ -95.392679013068516, 29.845533213297511 ], [ -95.392415013289394, 29.845538213648897 ], [ -95.391846012846102, 29.845535213830502 ], [ -95.391283013063401, 29.845550213721953 ], [ -95.390844012109497, 29.845549213802975 ], [ -95.390571012964458, 29.845536213432396 ], [ -95.390047012357755, 29.845504213880719 ], [ -95.389572012003654, 29.845509213657852 ], [ -95.387353011573794, 29.845515213569165 ], [ -95.385702011551487, 29.845524214232423 ], [ -95.385538011209817, 29.845509213566757 ], [ -95.385398011459273, 29.845507214009679 ], [ -95.385264010631516, 29.845514213747908 ], [ -95.385089011193244, 29.845538214318175 ], [ -95.385043011135508, 29.845541214097693 ], [ -95.384596010949792, 29.845544214202331 ], [ -95.384485011204319, 29.845526213590272 ], [ -95.384498010552491, 29.84634221418845 ], [ -95.384513010692615, 29.847296214462386 ], [ -95.384526010867148, 29.848126214565994 ], [ -95.384547010947983, 29.849465214531598 ], [ -95.384560011370027, 29.850269215356192 ], [ -95.38460701076211, 29.853276215783449 ], [ -95.384615011040921, 29.853820215867991 ], [ -95.38462201174687, 29.854296215764226 ], [ -95.384642011315151, 29.855610216464171 ], [ -95.384649011084974, 29.856102216214413 ], [ -95.384659011731003, 29.85672221672516 ], [ -95.384660010995759, 29.856811216613487 ], [ -95.384674011788675, 29.857726216318166 ], [ -95.384687011985179, 29.858608216367852 ], [ -95.384714011158565, 29.859443216811432 ], [ -95.385292011513414, 29.859584216987844 ], [ -95.385669012162211, 29.859643217093151 ], [ -95.385976012282057, 29.859671217318034 ], [ -95.386526011821076, 29.859688217128085 ], [ -95.387784012539271, 29.859673216864515 ], [ -95.389490013288992, 29.859659216543811 ], [ -95.391089013287299, 29.859669216851429 ], [ -95.392210012982702, 29.859664217064957 ], [ -95.392863014074379, 29.859670216914846 ], [ -95.393849014426351, 29.859652216156913 ], [ -95.394931014528908, 29.85964421619083 ], [ -95.396255014414933, 29.859638216334357 ], [ -95.397027014733396, 29.859635216545794 ], [ -95.397380014724988, 29.859638216454975 ], [ -95.397670014397491, 29.859651216167595 ], [ -95.397775015349353, 29.859651216301444 ], [ -95.399608015273827, 29.85964521608506 ], [ -95.40123301566328, 29.859644216228634 ], [ -95.40160801629716, 29.859631216643315 ], [ -95.401757015618728, 29.859621216725575 ], [ -95.401969016158233, 29.859597216198505 ], [ -95.402131015589518, 29.859545216696052 ], [ -95.402355016216362, 29.859473215935093 ], [ -95.402482015648914, 29.859433216475423 ], [ -95.402585016555278, 29.859400215838942 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1064, "Tract": "48201210600", "Area_SqMi": 0.90089065789603961, "total_2009": 999, "total_2010": 918, "total_2011": 1128, "total_2012": 1069, "total_2013": 964, "total_2014": 1040, "total_2015": 908, "total_2016": 946, "total_2017": 933, "total_2018": 873, "total_2019": 903, "total_2020": 711, "age1": 149, "age2": 332, "age3": 196, "earn1": 249, "earn2": 196, "earn3": 232, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 38, "naics_s05": 14, "naics_s06": 41, "naics_s07": 93, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 17, "naics_s12": 259, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 151, "naics_s19": 43, "naics_s20": 0, "race1": 544, "race2": 64, "race3": 9, "race4": 49, "race5": 1, "race6": 10, "ethnicity1": 429, "ethnicity2": 248, "edu1": 117, "edu2": 121, "edu3": 166, "edu4": 124, "Shape_Length": 20320.658183113406, "Shape_Area": 25115289.652370721, "total_2021": 777, "total_2022": 677 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.37514100711671, 29.813204207623048 ], [ -95.375291007396513, 29.813214208060636 ], [ -95.374264006405156, 29.810666206971081 ], [ -95.374061007124624, 29.810063206816118 ], [ -95.373802006044627, 29.809340207406706 ], [ -95.373583006843688, 29.80869420695652 ], [ -95.373382006550784, 29.807722206775267 ], [ -95.373360005974632, 29.80761520682913 ], [ -95.373338006095878, 29.807509207033583 ], [ -95.373072006639148, 29.806220206487854 ], [ -95.372668005649871, 29.804142205651765 ], [ -95.372635006459518, 29.803971205690758 ], [ -95.372605006176698, 29.803815205932704 ], [ -95.372588006300475, 29.803724206063961 ], [ -95.372147005529996, 29.801435205757695 ], [ -95.37196800562208, 29.800322205469023 ], [ -95.371945005612233, 29.800045205149083 ], [ -95.371789005135128, 29.800044205366035 ], [ -95.371653005178814, 29.800043205169835 ], [ -95.371389005047092, 29.80004220531977 ], [ -95.370316004718958, 29.800047204762468 ], [ -95.369710004805825, 29.800045205462766 ], [ -95.368737005047905, 29.800051205244603 ], [ -95.367934004187759, 29.800056205029236 ], [ -95.367935004686387, 29.799903205650253 ], [ -95.367433004630158, 29.799892205325634 ], [ -95.366626004564623, 29.799904205419576 ], [ -95.365692003772381, 29.799909205542075 ], [ -95.36477600418965, 29.799933205349618 ], [ -95.363853003123339, 29.799949205516761 ], [ -95.36294000315111, 29.799959205343626 ], [ -95.362010002790356, 29.799977205416958 ], [ -95.361059003319696, 29.799979205277239 ], [ -95.360913002922032, 29.799981205675007 ], [ -95.360758002549517, 29.799983205294836 ], [ -95.360097002589512, 29.799994205760697 ], [ -95.360044002927751, 29.799995205602858 ], [ -95.359889002484749, 29.799997205119979 ], [ -95.35954600238945, 29.800000205438263 ], [ -95.359193002471727, 29.800003205884611 ], [ -95.359131002793205, 29.800004205543047 ], [ -95.35897600276455, 29.800007205968257 ], [ -95.358726001832508, 29.800012205752367 ], [ -95.358204002317265, 29.800021205519762 ], [ -95.3577520023277, 29.800012205215292 ], [ -95.357675002433666, 29.800010205996294 ], [ -95.357463002015351, 29.800009206049438 ], [ -95.35725200146716, 29.7999752055389 ], [ -95.357275002054678, 29.800793205586629 ], [ -95.357297002382936, 29.801744205779404 ], [ -95.357304002402472, 29.802499206411817 ], [ -95.357325002516205, 29.803274206584252 ], [ -95.357329001511303, 29.803433206589649 ], [ -95.357355001571023, 29.804149206556364 ], [ -95.357391002141426, 29.804232206626956 ], [ -95.357431002587248, 29.804281206629355 ], [ -95.357439002013422, 29.80447520662316 ], [ -95.357446002285329, 29.805007206797526 ], [ -95.357474002190244, 29.805721207169576 ], [ -95.357460001675676, 29.80583920669633 ], [ -95.35747500187334, 29.806497206634475 ], [ -95.357470002510226, 29.806635207174811 ], [ -95.357488001816535, 29.807234206814908 ], [ -95.357490002191625, 29.807609206928834 ], [ -95.357501002118141, 29.807992207155444 ], [ -95.357504002384857, 29.808466207076876 ], [ -95.357510002757806, 29.808745207149549 ], [ -95.357521001850486, 29.809324207395736 ], [ -95.357526001825761, 29.809412207849952 ], [ -95.357547002775178, 29.810197207780909 ], [ -95.3575580026138, 29.811020207515298 ], [ -95.357565002175207, 29.811631207971956 ], [ -95.357571002761688, 29.811716208037787 ], [ -95.35756400237949, 29.811827207918064 ], [ -95.357578002774872, 29.812476207977841 ], [ -95.357575002809867, 29.812630208018934 ], [ -95.357586002430679, 29.813225208060878 ], [ -95.357591002608999, 29.813692208215375 ], [ -95.357585002252378, 29.81385520830235 ], [ -95.359389003233048, 29.813822208314019 ], [ -95.360912002992478, 29.813808208749169 ], [ -95.361077003780707, 29.813806208126657 ], [ -95.361225003589396, 29.813805208172894 ], [ -95.361375003199697, 29.813804208171724 ], [ -95.3651640045763, 29.813765208310308 ], [ -95.365709005112677, 29.813759207776027 ], [ -95.366113005151377, 29.813752208602178 ], [ -95.366566004811133, 29.813735207886804 ], [ -95.366940004753488, 29.813725207850233 ], [ -95.369793005856707, 29.813670208265357 ], [ -95.371112006309687, 29.813644208036866 ], [ -95.371975006307693, 29.813556208039909 ], [ -95.372509006337438, 29.813470207840645 ], [ -95.372799006279365, 29.813439207598378 ], [ -95.372917006404464, 29.81342620828071 ], [ -95.373621006781576, 29.813299208064922 ], [ -95.374086006909479, 29.813241207611807 ], [ -95.37432200720643, 29.813221207457719 ], [ -95.374858006447297, 29.813188207921371 ], [ -95.375037006772288, 29.813198207489695 ], [ -95.37514100711671, 29.813204207623048 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1065, "Tract": "48201210700", "Area_SqMi": 0.43756681977515738, "total_2009": 252, "total_2010": 247, "total_2011": 86, "total_2012": 183, "total_2013": 164, "total_2014": 150, "total_2015": 210, "total_2016": 234, "total_2017": 292, "total_2018": 314, "total_2019": 329, "total_2020": 350, "age1": 145, "age2": 183, "age3": 78, "earn1": 193, "earn2": 106, "earn3": 107, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 15, "naics_s06": 90, "naics_s07": 268, "naics_s08": 3, "naics_s09": 0, "naics_s10": 2, "naics_s11": 23, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 295, "race2": 87, "race3": 3, "race4": 21, "race5": 0, "race6": 0, "ethnicity1": 231, "ethnicity2": 175, "edu1": 69, "edu2": 71, "edu3": 84, "edu4": 37, "Shape_Length": 15131.27609713725, "Shape_Area": 12198614.032234695, "total_2021": 388, "total_2022": 406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.357591002608999, 29.813692208215375 ], [ -95.357586002430679, 29.813225208060878 ], [ -95.357575002809867, 29.812630208018934 ], [ -95.357578002774872, 29.812476207977841 ], [ -95.35756400237949, 29.811827207918064 ], [ -95.357571002761688, 29.811716208037787 ], [ -95.357565002175207, 29.811631207971956 ], [ -95.3575580026138, 29.811020207515298 ], [ -95.357547002775178, 29.810197207780909 ], [ -95.357526001825761, 29.809412207849952 ], [ -95.357521001850486, 29.809324207395736 ], [ -95.357510002757806, 29.808745207149549 ], [ -95.357504002384857, 29.808466207076876 ], [ -95.357501002118141, 29.807992207155444 ], [ -95.357490002191625, 29.807609206928834 ], [ -95.357488001816535, 29.807234206814908 ], [ -95.357470002510226, 29.806635207174811 ], [ -95.35747500187334, 29.806497206634475 ], [ -95.357460001675676, 29.80583920669633 ], [ -95.357474002190244, 29.805721207169576 ], [ -95.357446002285329, 29.805007206797526 ], [ -95.357439002013422, 29.80447520662316 ], [ -95.357431002587248, 29.804281206629355 ], [ -95.357391002141426, 29.804232206626956 ], [ -95.357355001571023, 29.804149206556364 ], [ -95.357329001511303, 29.803433206589649 ], [ -95.357325002516205, 29.803274206584252 ], [ -95.357304002402472, 29.802499206411817 ], [ -95.357297002382936, 29.801744205779404 ], [ -95.357275002054678, 29.800793205586629 ], [ -95.35725200146716, 29.7999752055389 ], [ -95.357176001815304, 29.799951205619095 ], [ -95.356245001248041, 29.799956205248254 ], [ -95.355279000986911, 29.799978206112456 ], [ -95.354313000752029, 29.799986206091933 ], [ -95.353330000348393, 29.800004205696318 ], [ -95.352351000174281, 29.800019205414486 ], [ -95.35137299991159, 29.80004520607611 ], [ -95.350393999669194, 29.800065205804128 ], [ -95.350418999859087, 29.800924205824881 ], [ -95.350444000603417, 29.801769206267821 ], [ -95.350457999792539, 29.802511206804375 ], [ -95.350471999976222, 29.80262820623987 ], [ -95.350478999855184, 29.802930206647812 ], [ -95.350512000178952, 29.803314206628251 ], [ -95.350272000613359, 29.803319206801458 ], [ -95.34950700012898, 29.803334206897194 ], [ -95.348933000215354, 29.803309206851811 ], [ -95.348487999774832, 29.803238206432823 ], [ -95.347863999833649, 29.803106206847268 ], [ -95.347913999853532, 29.8032802065031 ], [ -95.348722000155803, 29.806072207174925 ], [ -95.34978700090835, 29.810305207606806 ], [ -95.350170000337116, 29.811831208003866 ], [ -95.350215000393732, 29.812021208627343 ], [ -95.350254000865732, 29.812222208154719 ], [ -95.350300000988824, 29.812414208251035 ], [ -95.350753001052553, 29.812551208378448 ], [ -95.351233000957777, 29.812729208415227 ], [ -95.351411001073132, 29.812785208185979 ], [ -95.351698001009353, 29.812863208275527 ], [ -95.352314000792589, 29.813030208134894 ], [ -95.352414001012306, 29.813062208397312 ], [ -95.352750001402612, 29.813169208489452 ], [ -95.353153001349696, 29.813306208475158 ], [ -95.353588001038332, 29.813429208101365 ], [ -95.353779001289723, 29.813494208389532 ], [ -95.354079001386253, 29.813596208231829 ], [ -95.354367001287713, 29.813672208619533 ], [ -95.354912001982825, 29.81377820840742 ], [ -95.355377002237546, 29.813846208350995 ], [ -95.356239002238468, 29.81388020825645 ], [ -95.357585002252378, 29.81385520830235 ], [ -95.357591002608999, 29.813692208215375 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1066, "Tract": "48201313000", "Area_SqMi": 0.46561815533431139, "total_2009": 258, "total_2010": 255, "total_2011": 436, "total_2012": 377, "total_2013": 383, "total_2014": 428, "total_2015": 542, "total_2016": 615, "total_2017": 559, "total_2018": 492, "total_2019": 475, "total_2020": 569, "age1": 267, "age2": 306, "age3": 160, "earn1": 289, "earn2": 277, "earn3": 167, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 0, "naics_s06": 0, "naics_s07": 250, "naics_s08": 24, "naics_s09": 0, "naics_s10": 45, "naics_s11": 7, "naics_s12": 43, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 211, "naics_s17": 0, "naics_s18": 131, "naics_s19": 8, "naics_s20": 0, "race1": 392, "race2": 275, "race3": 7, "race4": 36, "race5": 0, "race6": 23, "ethnicity1": 512, "ethnicity2": 221, "edu1": 112, "edu2": 124, "edu3": 145, "edu4": 85, "Shape_Length": 14891.782520205283, "Shape_Area": 12980637.257283276, "total_2021": 630, "total_2022": 733 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.379160003771673, 29.715239187124951 ], [ -95.379168003365237, 29.714651187553262 ], [ -95.379137003549431, 29.714063186975917 ], [ -95.379058003480395, 29.713468187281315 ], [ -95.378969003812415, 29.713127187353983 ], [ -95.378687002986609, 29.712047187113527 ], [ -95.378666003717697, 29.711966187248347 ], [ -95.378149002845362, 29.712084186504079 ], [ -95.378055003681609, 29.712121187115535 ], [ -95.377696003246811, 29.712263187241316 ], [ -95.374696002285503, 29.713452187437174 ], [ -95.373704001944404, 29.713846187228249 ], [ -95.373306002524842, 29.713929187919653 ], [ -95.372815001862421, 29.713948187460968 ], [ -95.37213100146441, 29.713851187265316 ], [ -95.371709002184076, 29.713722187460334 ], [ -95.371474001973979, 29.713592187556369 ], [ -95.371426001578527, 29.7136431873496 ], [ -95.371173001684227, 29.713913187540399 ], [ -95.370633001886233, 29.71470518734229 ], [ -95.37017900139459, 29.715348188190688 ], [ -95.369784001840102, 29.715821187741856 ], [ -95.369386001275203, 29.716310187824075 ], [ -95.368655000606523, 29.71721918871155 ], [ -95.368183000689854, 29.717834188615505 ], [ -95.367852001002092, 29.718256188144995 ], [ -95.367162000859807, 29.719101188298751 ], [ -95.366677001158124, 29.719726188698466 ], [ -95.366346000157506, 29.720153189036125 ], [ -95.366186000951359, 29.72035018872683 ], [ -95.365677000799067, 29.720973189503326 ], [ -95.367318000661953, 29.72197018929057 ], [ -95.369041001352599, 29.723002189466307 ], [ -95.370147002247649, 29.723679189629557 ], [ -95.370750002140184, 29.724029189605304 ], [ -95.372462002228758, 29.725065189851854 ], [ -95.374138002386019, 29.72609318957409 ], [ -95.374433002450644, 29.726264190268154 ], [ -95.374732002747677, 29.726438189806039 ], [ -95.375011003535633, 29.726606189845551 ], [ -95.375221002816815, 29.726315190094169 ], [ -95.375423002842822, 29.726043189686173 ], [ -95.375609003731583, 29.725838189414436 ], [ -95.375630003070896, 29.725815189705887 ], [ -95.37588600359075, 29.72542318958704 ], [ -95.376302003271178, 29.724701189759394 ], [ -95.376440003075942, 29.724410189189026 ], [ -95.376635003887074, 29.724000189146942 ], [ -95.376863003468927, 29.723461189341059 ], [ -95.377203003176476, 29.722362189017556 ], [ -95.378068003816679, 29.719565188783243 ], [ -95.3781130038751, 29.719416188844896 ], [ -95.378641003753941, 29.717647188211572 ], [ -95.379053003536086, 29.716162187430513 ], [ -95.379092004211017, 29.715712187618077 ], [ -95.379160003771673, 29.715239187124951 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1067, "Tract": "48201543100", "Area_SqMi": 50.122309417602629, "total_2009": 316, "total_2010": 340, "total_2011": 365, "total_2012": 450, "total_2013": 444, "total_2014": 509, "total_2015": 549, "total_2016": 606, "total_2017": 644, "total_2018": 613, "total_2019": 579, "total_2020": 587, "age1": 182, "age2": 427, "age3": 185, "earn1": 64, "earn2": 138, "earn3": 592, "naics_s01": 2, "naics_s02": 70, "naics_s03": 0, "naics_s04": 330, "naics_s05": 22, "naics_s06": 163, "naics_s07": 6, "naics_s08": 6, "naics_s09": 0, "naics_s10": 0, "naics_s11": 25, "naics_s12": 6, "naics_s13": 0, "naics_s14": 96, "naics_s15": 3, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 65, "naics_s20": 0, "race1": 670, "race2": 69, "race3": 9, "race4": 29, "race5": 1, "race6": 16, "ethnicity1": 484, "ethnicity2": 310, "edu1": 159, "edu2": 161, "edu3": 174, "edu4": 118, "Shape_Length": 174335.7479261749, "Shape_Area": 1397324201.3728433, "total_2021": 603, "total_2022": 794 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.921323157701963, 30.054995237916685 ], [ -95.921323158005848, 30.054812238442075 ], [ -95.921322157259496, 30.054510237784967 ], [ -95.921321157653153, 30.054332237552416 ], [ -95.921277157548445, 30.054065237421415 ], [ -95.921171157600639, 30.053832237620448 ], [ -95.921081157352631, 30.053585237986209 ], [ -95.920474156999589, 30.051922237459461 ], [ -95.920424156795463, 30.051785237456979 ], [ -95.918654156652565, 30.046935236071576 ], [ -95.918048156083145, 30.045273236120639 ], [ -95.915101155557565, 30.037194234470327 ], [ -95.914212154964957, 30.034761233848791 ], [ -95.914122154304991, 30.034513234325804 ], [ -95.913680154137595, 30.033302233982827 ], [ -95.909702153146398, 30.022397232077783 ], [ -95.909678152969121, 30.022331231991945 ], [ -95.909643153173178, 30.022235231661963 ], [ -95.909606152773037, 30.022136231516061 ], [ -95.909583152891983, 30.022072231725229 ], [ -95.909552153096897, 30.021987231527966 ], [ -95.909521153326139, 30.021902232222708 ], [ -95.907749152286897, 30.017045231098166 ], [ -95.907525152174145, 30.016431230987624 ], [ -95.902402150075417, 30.002405228253927 ], [ -95.902345150283253, 30.002252227968917 ], [ -95.89983814884539, 29.995557226504662 ], [ -95.899767149501656, 29.995367226429572 ], [ -95.89966114876691, 29.99508322638065 ], [ -95.899554148888782, 29.994797226708993 ], [ -95.899483149173946, 29.994608226349811 ], [ -95.898424148695028, 29.991889226056504 ], [ -95.895247147455379, 29.983735224642146 ], [ -95.8941891468547, 29.981017223715288 ], [ -95.894176147269775, 29.980885224031052 ], [ -95.894132146768115, 29.980780223727642 ], [ -95.894069147640039, 29.98065422357918 ], [ -95.894003147490224, 29.980558223969805 ], [ -95.893918147457555, 29.98046722420656 ], [ -95.893816146818708, 29.980130223709502 ], [ -95.893512146502431, 29.979119223498557 ], [ -95.893411147378572, 29.978783223936166 ], [ -95.893313146984681, 29.978440223516362 ], [ -95.893108147175312, 29.977720223138377 ], [ -95.892944146787727, 29.977447223078247 ], [ -95.892762146592858, 29.977142223728393 ], [ -95.892697146293585, 29.977030223624887 ], [ -95.89264614639518, 29.976845222897627 ], [ -95.892453146619928, 29.976137222824093 ], [ -95.892356146747034, 29.975928223454822 ], [ -95.892222146633983, 29.975637223161474 ], [ -95.890197145238318, 29.968347221863475 ], [ -95.889283145649742, 29.965081221277654 ], [ -95.889159145388618, 29.964720221331675 ], [ -95.887879144693642, 29.960979220143017 ], [ -95.882817142692076, 29.946999217717469 ], [ -95.878874140771075, 29.9361562155493 ], [ -95.878841141696654, 29.936066215028369 ], [ -95.87880914156348, 29.935976215158028 ], [ -95.872972138982632, 29.919835211980921 ], [ -95.87108613816369, 29.914648211327997 ], [ -95.871015138302141, 29.914452210914945 ], [ -95.868973137940444, 29.908833209853665 ], [ -95.868904137498106, 29.908644210087434 ], [ -95.868876137116217, 29.908552210623292 ], [ -95.868522137031164, 29.907588209669015 ], [ -95.86746113693674, 29.904696209161891 ], [ -95.867108136452103, 29.903733209719732 ], [ -95.86710113711186, 29.903714209 ], [ -95.867083136807125, 29.903660209095197 ], [ -95.867077136364742, 29.903642209118097 ], [ -95.86706113649339, 29.903598208859528 ], [ -95.867015137195892, 29.903466209639323 ], [ -95.867000136291978, 29.903423209213962 ], [ -95.866693137096775, 29.90253820893383 ], [ -95.865772135985438, 29.899886208717234 ], [ -95.865466136125846, 29.899002208496587 ], [ -95.865101135976815, 29.897951207746839 ], [ -95.864007135377975, 29.894798207982188 ], [ -95.863643135690737, 29.893747207372989 ], [ -95.863433135664309, 29.89314120694835 ], [ -95.862803134712479, 29.891326207116443 ], [ -95.862593134542792, 29.89072120646804 ], [ -95.86254313510311, 29.890577207112628 ], [ -95.862492135021057, 29.890432206900826 ], [ -95.862228135040894, 29.889684206282325 ], [ -95.862282135117155, 29.889461206896112 ], [ -95.862016135118438, 29.889059206346428 ], [ -95.861957135011906, 29.888897206559729 ], [ -95.860040133564965, 29.883597205201529 ], [ -95.858123133586645, 29.87829720439985 ], [ -95.857219132909364, 29.875799203928199 ], [ -95.85718813281791, 29.875696204343217 ], [ -95.857097133161901, 29.875389203645703 ], [ -95.857067132893093, 29.875287203969499 ], [ -95.857031132811713, 29.875168203625122 ], [ -95.856926133123807, 29.87481120419924 ], [ -95.85689113294228, 29.874693203750933 ], [ -95.856884132639237, 29.87467120401384 ], [ -95.856864132967701, 29.874604203887998 ], [ -95.856858133277171, 29.874583204125148 ], [ -95.856232132887783, 29.874578203592112 ], [ -95.841659129002807, 29.874678203860768 ], [ -95.84062812824763, 29.874675203953736 ], [ -95.823925124563971, 29.874796204783461 ], [ -95.81568712225058, 29.874853205128108 ], [ -95.807434120314014, 29.8749252051174 ], [ -95.807279120307243, 29.874926205226892 ], [ -95.80724312038754, 29.874927205924305 ], [ -95.807253120152467, 29.875847205846028 ], [ -95.807255120707907, 29.875981206173055 ], [ -95.807257120431487, 29.876130205733723 ], [ -95.807260119810977, 29.876458205723647 ], [ -95.807307120221026, 29.880745206405663 ], [ -95.80731012033722, 29.880934206446714 ], [ -95.807374120510161, 29.886786207607646 ], [ -95.807390120915613, 29.888239207903624 ], [ -95.807404121140891, 29.889466208096 ], [ -95.807455120960725, 29.894864209175793 ], [ -95.807506121249105, 29.899802210148284 ], [ -95.807518121802104, 29.901310211229905 ], [ -95.807538121312319, 29.903978211021389 ], [ -95.80754012139333, 29.904137211049331 ], [ -95.807542121363653, 29.904415211265995 ], [ -95.807547121437096, 29.904657211469249 ], [ -95.807548121388805, 29.904723211894517 ], [ -95.807549122093903, 29.904806211459757 ], [ -95.807609122018505, 29.909306212683184 ], [ -95.80762412241836, 29.910373212864108 ], [ -95.807671122100317, 29.914887213265093 ], [ -95.807672121972075, 29.914954213460948 ], [ -95.807672121658698, 29.914983213400831 ], [ -95.807673122113329, 29.915016213670892 ], [ -95.807678122537951, 29.915506213438082 ], [ -95.807702121816604, 29.917831214642966 ], [ -95.80771912229261, 29.919131214388532 ], [ -95.807759122444452, 29.921834215441521 ], [ -95.807771122138064, 29.922281214668182 ], [ -95.807783122314163, 29.922834215173733 ], [ -95.807825122410492, 29.924522215995776 ], [ -95.807842122568047, 29.925346215331899 ], [ -95.807848123182822, 29.925452215777621 ], [ -95.807850122633738, 29.925481215339342 ], [ -95.80790312318581, 29.928503216240276 ], [ -95.80818912324203, 29.941095218673834 ], [ -95.808169123856587, 29.941666219016657 ], [ -95.80817812356608, 29.941809219345124 ], [ -95.808170123908255, 29.941969218746465 ], [ -95.808177123286825, 29.942186219426276 ], [ -95.808211123623366, 29.944061219588697 ], [ -95.808330123404488, 29.949457221004177 ], [ -95.808341123562286, 29.949810220505839 ], [ -95.808355123592776, 29.94993722035921 ], [ -95.808343123735014, 29.950050220558484 ], [ -95.808343124337469, 29.950129220394064 ], [ -95.808343123932559, 29.950159220875825 ], [ -95.808360124234852, 29.950738220799778 ], [ -95.808356123604256, 29.950861220554504 ], [ -95.808369123989749, 29.950999220808132 ], [ -95.808370123525023, 29.951274220849843 ], [ -95.80850212427471, 29.957267221863347 ], [ -95.808613125013721, 29.962254222878954 ], [ -95.808656124290806, 29.964223223364343 ], [ -95.808718124529292, 29.967125224495927 ], [ -95.808822125270595, 29.971702225408919 ], [ -95.808868125604263, 29.973926225382574 ], [ -95.808965125015661, 29.97820622629628 ], [ -95.80897812565334, 29.979068226921257 ], [ -95.808994125166606, 29.979236226722595 ], [ -95.808985125117047, 29.979414227038646 ], [ -95.808993125849824, 29.979590227005218 ], [ -95.80899412536418, 29.979756226914301 ], [ -95.809002125351256, 29.979931226864753 ], [ -95.80901212529669, 29.980443226451182 ], [ -95.809045125231663, 29.980775227174561 ], [ -95.809025125808816, 29.980962226667678 ], [ -95.809035125003732, 29.981315227250899 ], [ -95.809037125738229, 29.981670227230097 ], [ -95.809072125839393, 29.983231227388337 ], [ -95.809183126250375, 29.988244228027796 ], [ -95.809220126221419, 29.990323228737111 ], [ -95.809263125994434, 29.992135229094302 ], [ -95.809309125958194, 29.994570229889014 ], [ -95.809319126654955, 29.994922229679464 ], [ -95.809335125871215, 29.995095230085031 ], [ -95.809351125807623, 29.99516422995508 ], [ -95.809360126271571, 29.995186230106441 ], [ -95.809361126475679, 29.995424229680825 ], [ -95.809302126046973, 29.995524229547982 ], [ -95.809190126332481, 29.99558022982005 ], [ -95.809097126003962, 29.995600230248002 ], [ -95.809363125842054, 29.995600229538478 ], [ -95.809912126719098, 29.995581230159164 ], [ -95.810053126317058, 29.995585230298985 ], [ -95.811769126712306, 29.995563230044091 ], [ -95.813329126954812, 29.995549229657389 ], [ -95.814021127210438, 29.995538229403557 ], [ -95.81413312747209, 29.995538229776297 ], [ -95.814473127329705, 29.995538229508018 ], [ -95.814598127470845, 29.995548229725106 ], [ -95.814705127219653, 29.995569229518686 ], [ -95.814798127690196, 29.995601229948203 ], [ -95.814880127254, 29.995645229908657 ], [ -95.814950127437029, 29.995701230111397 ], [ -95.815009128147295, 29.995767229977794 ], [ -95.815061127589345, 29.995842229590604 ], [ -95.815101128211026, 29.99592622959354 ], [ -95.815126127509259, 29.996018230135874 ], [ -95.815136127953025, 29.996116229542015 ], [ -95.815139128059883, 29.996223229647097 ], [ -95.815172128586354, 30.003432231649562 ], [ -95.815176128354892, 30.006099231463967 ], [ -95.81518812847608, 30.009729232237348 ], [ -95.815193128676199, 30.011161232908801 ], [ -95.815193128074569, 30.012425233330351 ], [ -95.815205128102704, 30.014475233597068 ], [ -95.815199128242782, 30.01521123406301 ], [ -95.815184128511888, 30.015553233692266 ], [ -95.815181128858171, 30.01563323353848 ], [ -95.815202128819649, 30.015853233785251 ], [ -95.815213128279581, 30.015910234231153 ], [ -95.815227129208793, 30.016065233479832 ], [ -95.815235128309624, 30.016162233461962 ], [ -95.815234129131838, 30.016286233897425 ], [ -95.815508129112189, 30.016411233996962 ], [ -95.818863129685454, 30.017622233737065 ], [ -95.820731130350197, 30.018253234565865 ], [ -95.820949130578867, 30.018330233888896 ], [ -95.821200130211167, 30.018424234062742 ], [ -95.822351130413878, 30.01880323381523 ], [ -95.825801131521544, 30.020162234757588 ], [ -95.826205131395, 30.020336234594367 ], [ -95.828954132819192, 30.02121723466194 ], [ -95.830195132753914, 30.02155223463317 ], [ -95.831691132787213, 30.022074234494774 ], [ -95.832092133022115, 30.022286234826151 ], [ -95.832866133107657, 30.022532234898399 ], [ -95.83508313431129, 30.023385234566561 ], [ -95.835265134509953, 30.023427234523361 ], [ -95.836463134314485, 30.023877234687152 ], [ -95.84358013623681, 30.02654923526373 ], [ -95.843600136862605, 30.026554234657578 ], [ -95.844642136467343, 30.026959235333209 ], [ -95.845608136871988, 30.027316234664358 ], [ -95.847611137120722, 30.028072234765627 ], [ -95.849624137598568, 30.028836235104322 ], [ -95.84968313776379, 30.02885923550047 ], [ -95.851710138468732, 30.029577235534401 ], [ -95.855322139331221, 30.030952235873549 ], [ -95.85588013985992, 30.031164235764173 ], [ -95.857148140142812, 30.031640235802186 ], [ -95.858573140639663, 30.032184235229241 ], [ -95.859189140170756, 30.03240723607254 ], [ -95.860158140508446, 30.032774236092845 ], [ -95.860293140744872, 30.03282623613493 ], [ -95.873777144251321, 30.037894236301511 ], [ -95.873974144685718, 30.037970236257049 ], [ -95.87425614457058, 30.038096236303609 ], [ -95.875343144891289, 30.038509236470077 ], [ -95.881800147086039, 30.040920236324151 ], [ -95.882226147268184, 30.041094237038561 ], [ -95.890937149711604, 30.044337236892758 ], [ -95.899444151649391, 30.047544237632049 ], [ -95.90072815163569, 30.048010237291823 ], [ -95.908593153885221, 30.050957237882674 ], [ -95.912490155654439, 30.052435237837273 ], [ -95.912739155724992, 30.052533237747909 ], [ -95.91315015559168, 30.052694237795372 ], [ -95.913403155756527, 30.052793237986467 ], [ -95.913994155925252, 30.053016238281693 ], [ -95.916163156094271, 30.053832237805416 ], [ -95.916271156285944, 30.053873238096834 ], [ -95.916698156036304, 30.054035238408414 ], [ -95.917207156705501, 30.054233238301851 ], [ -95.91738815598076, 30.054319238114584 ], [ -95.917951156856262, 30.054519237961902 ], [ -95.918487156535875, 30.054678237647622 ], [ -95.918821156681119, 30.05477323823812 ], [ -95.919574157282057, 30.054940238327102 ], [ -95.920321157118508, 30.055105238476422 ], [ -95.921180157593312, 30.055296237714415 ], [ -95.921323157701963, 30.054995237916685 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1068, "Tract": "48201420400", "Area_SqMi": 0.98097429804640124, "total_2009": 601, "total_2010": 597, "total_2011": 673, "total_2012": 682, "total_2013": 689, "total_2014": 694, "total_2015": 765, "total_2016": 707, "total_2017": 745, "total_2018": 687, "total_2019": 713, "total_2020": 587, "age1": 85, "age2": 360, "age3": 170, "earn1": 53, "earn2": 90, "earn3": 472, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 37, "naics_s05": 0, "naics_s06": 354, "naics_s07": 34, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 6, "naics_s12": 40, "naics_s13": 0, "naics_s14": 19, "naics_s15": 67, "naics_s16": 32, "naics_s17": 0, "naics_s18": 17, "naics_s19": 6, "naics_s20": 0, "race1": 488, "race2": 65, "race3": 14, "race4": 37, "race5": 2, "race6": 9, "ethnicity1": 447, "ethnicity2": 168, "edu1": 98, "edu2": 126, "edu3": 169, "edu4": 137, "Shape_Length": 21460.940071683617, "Shape_Area": 27347884.475242842, "total_2021": 540, "total_2022": 615 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.464069023234401, 29.662640174254587 ], [ -95.464075023483872, 29.661977173478235 ], [ -95.464063023400342, 29.661497173405479 ], [ -95.464055023022993, 29.661150173311942 ], [ -95.464022023026075, 29.660482173075128 ], [ -95.464014023362878, 29.660330173603231 ], [ -95.464011022513105, 29.659270173118923 ], [ -95.463980023316765, 29.658028173277728 ], [ -95.463945023090645, 29.656903172381579 ], [ -95.463940022538665, 29.656653172485804 ], [ -95.463939023020203, 29.656416172894939 ], [ -95.463932022556421, 29.655688172157628 ], [ -95.463928022290276, 29.65530017234898 ], [ -95.463914022467293, 29.654303172425273 ], [ -95.463908022747987, 29.653893172149658 ], [ -95.463903022718213, 29.653514172449007 ], [ -95.463841022512796, 29.651601171550858 ], [ -95.463846022326592, 29.651283171972924 ], [ -95.463843022879317, 29.651051171468826 ], [ -95.463840022755818, 29.650915171726982 ], [ -95.463815022360663, 29.649966171115544 ], [ -95.463786022566325, 29.649024171328946 ], [ -95.463760022762088, 29.648483170947411 ], [ -95.463750022637342, 29.647880170790629 ], [ -95.46374702210889, 29.647692170753292 ], [ -95.463743021857454, 29.647495170840486 ], [ -95.463363022618651, 29.647661171290434 ], [ -95.462940022408532, 29.647822170903137 ], [ -95.460745022116015, 29.648662170803046 ], [ -95.460283021012444, 29.648862171620355 ], [ -95.457658020553467, 29.649903171695641 ], [ -95.454533020483211, 29.651150171653981 ], [ -95.453570019584788, 29.651518171915836 ], [ -95.452695019555051, 29.65186017174819 ], [ -95.45088601877498, 29.652571172470882 ], [ -95.449954018931905, 29.652893172009986 ], [ -95.447419018034608, 29.653656172906857 ], [ -95.446922018389415, 29.653817172839425 ], [ -95.446858018334964, 29.653834172858733 ], [ -95.446672018624483, 29.653883172831009 ], [ -95.446603017943858, 29.653904172421981 ], [ -95.44661501836292, 29.654225173025992 ], [ -95.446625017872577, 29.654512172737988 ], [ -95.446703018524019, 29.656374172827551 ], [ -95.44657401796843, 29.65672717336934 ], [ -95.446438018064612, 29.657358173722663 ], [ -95.446384018355857, 29.658014173980821 ], [ -95.446403018968553, 29.660144174139003 ], [ -95.44653001843696, 29.664508175128674 ], [ -95.448295019430745, 29.664487174462877 ], [ -95.448383019532471, 29.664486174733334 ], [ -95.448918019501903, 29.664486174915581 ], [ -95.452668020692016, 29.664442174211249 ], [ -95.45479402098907, 29.664387174602414 ], [ -95.456433021655855, 29.664392174930342 ], [ -95.459070021525747, 29.664368174555108 ], [ -95.460219022213209, 29.664357174373773 ], [ -95.460345022595334, 29.664356174150715 ], [ -95.460710021854908, 29.664358174618851 ], [ -95.46250802248268, 29.664318173848724 ], [ -95.463411022571691, 29.664321173923465 ], [ -95.46400502271797, 29.664310174201848 ], [ -95.464063022845252, 29.663430173912015 ], [ -95.464069023234401, 29.662640174254587 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1069, "Tract": "48201511100", "Area_SqMi": 0.72984602353267047, "total_2009": 8477, "total_2010": 8511, "total_2011": 7611, "total_2012": 7426, "total_2013": 9222, "total_2014": 9432, "total_2015": 9895, "total_2016": 9316, "total_2017": 9835, "total_2018": 10997, "total_2019": 10117, "total_2020": 9545, "age1": 1985, "age2": 4845, "age3": 2196, "earn1": 1383, "earn2": 3161, "earn3": 4482, "naics_s01": 0, "naics_s02": 16, "naics_s03": 0, "naics_s04": 227, "naics_s05": 111, "naics_s06": 314, "naics_s07": 786, "naics_s08": 48, "naics_s09": 255, "naics_s10": 501, "naics_s11": 239, "naics_s12": 821, "naics_s13": 7, "naics_s14": 3122, "naics_s15": 86, "naics_s16": 1387, "naics_s17": 32, "naics_s18": 444, "naics_s19": 461, "naics_s20": 169, "race1": 5834, "race2": 2520, "race3": 81, "race4": 443, "race5": 18, "race6": 130, "ethnicity1": 6157, "ethnicity2": 2869, "edu1": 1391, "edu2": 1823, "edu3": 2246, "edu4": 1581, "Shape_Length": 23824.888277912687, "Shape_Area": 20346857.992137447, "total_2021": 9103, "total_2022": 9026 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.440838023542213, 29.808900204414087 ], [ -95.44088902366471, 29.808879204575252 ], [ -95.440550023140389, 29.808656204400044 ], [ -95.439222023041808, 29.807782204003392 ], [ -95.436592022583213, 29.806590204446682 ], [ -95.436043022185203, 29.806279204621326 ], [ -95.435628022188595, 29.805995204150999 ], [ -95.435254022381301, 29.805669204170151 ], [ -95.434090021623362, 29.804371203715057 ], [ -95.433704021822876, 29.804109203694779 ], [ -95.433463021742739, 29.803987203670719 ], [ -95.433206021882839, 29.803857203438099 ], [ -95.432573021186514, 29.803697203759306 ], [ -95.429957020716529, 29.803187203429051 ], [ -95.42966302035326, 29.803174204083895 ], [ -95.427823020017655, 29.80309320349054 ], [ -95.427470019531071, 29.802999203675075 ], [ -95.427062020115528, 29.80276420394895 ], [ -95.426679019586985, 29.802304203348502 ], [ -95.426561019678104, 29.80192520400654 ], [ -95.426527019661179, 29.801661203616828 ], [ -95.426429019482256, 29.801660203283934 ], [ -95.426124019369794, 29.801657203768002 ], [ -95.425810019785928, 29.801688203546174 ], [ -95.425498019338335, 29.801741203654153 ], [ -95.425340019330093, 29.801802203721142 ], [ -95.425206019355656, 29.801915203980833 ], [ -95.4247200196384, 29.802325204102718 ], [ -95.424492019672442, 29.802111203797804 ], [ -95.424474019545727, 29.801976203752087 ], [ -95.424444019564234, 29.801811203831733 ], [ -95.424404019172925, 29.801682203535652 ], [ -95.42436601875491, 29.801683203737394 ], [ -95.422326018795701, 29.801684204007209 ], [ -95.42231901885205, 29.802713203709381 ], [ -95.422350018704194, 29.803729204617266 ], [ -95.422384018440397, 29.804673204741242 ], [ -95.422389019210797, 29.804811204200249 ], [ -95.42239401923301, 29.805677204527086 ], [ -95.422407019321881, 29.806225204312714 ], [ -95.422424019356797, 29.80669820462159 ], [ -95.42244101929866, 29.807710204739042 ], [ -95.422468018779554, 29.808720204855135 ], [ -95.421391019028164, 29.808734205575995 ], [ -95.418167018236346, 29.808776205670323 ], [ -95.417592018118825, 29.808796205459348 ], [ -95.414776017209277, 29.80883120520679 ], [ -95.41235701588505, 29.808844205921439 ], [ -95.412369016362746, 29.809376205861284 ], [ -95.412383016501835, 29.809874206097525 ], [ -95.412401016320018, 29.810393205870891 ], [ -95.412398015990419, 29.810889205685452 ], [ -95.412396016393714, 29.811137205740479 ], [ -95.412380016674064, 29.811406205719674 ], [ -95.41237901689064, 29.811430206421072 ], [ -95.412294016475869, 29.81191520644769 ], [ -95.412232016500198, 29.812042206384596 ], [ -95.412109016062985, 29.812346205937754 ], [ -95.412059016151815, 29.812460206635649 ], [ -95.411875016780513, 29.812744206504604 ], [ -95.412044016282366, 29.812742206039125 ], [ -95.41901001793596, 29.812676205735247 ], [ -95.42518201995783, 29.812642205752486 ], [ -95.425820020181817, 29.812639205471992 ], [ -95.427268019955463, 29.812657206091572 ], [ -95.428220020665819, 29.812651205648582 ], [ -95.428974020579147, 29.812637205891633 ], [ -95.429194020717361, 29.812635205465348 ], [ -95.429366020949303, 29.812635205586329 ], [ -95.429539020872099, 29.812634205810149 ], [ -95.430453021285246, 29.812628205607798 ], [ -95.431312021642086, 29.812549205595296 ], [ -95.432360021669879, 29.81234320532355 ], [ -95.43290602155335, 29.812166205682566 ], [ -95.433255022304976, 29.812046205291843 ], [ -95.433613022365918, 29.811913205319151 ], [ -95.433988022010183, 29.811774205428019 ], [ -95.437521022637853, 29.810252205217321 ], [ -95.440230023717447, 29.809148204770992 ], [ -95.440838023542213, 29.808900204414087 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1070, "Tract": "48201540200", "Area_SqMi": 0.96731105396398787, "total_2009": 3801, "total_2010": 3778, "total_2011": 4142, "total_2012": 3042, "total_2013": 3395, "total_2014": 4638, "total_2015": 5397, "total_2016": 5521, "total_2017": 5183, "total_2018": 5737, "total_2019": 6209, "total_2020": 6274, "age1": 746, "age2": 3647, "age3": 1370, "earn1": 249, "earn2": 774, "earn3": 4740, "naics_s01": 0, "naics_s02": 776, "naics_s03": 121, "naics_s04": 231, "naics_s05": 1398, "naics_s06": 1348, "naics_s07": 73, "naics_s08": 104, "naics_s09": 103, "naics_s10": 206, "naics_s11": 165, "naics_s12": 296, "naics_s13": 94, "naics_s14": 601, "naics_s15": 80, "naics_s16": 27, "naics_s17": 27, "naics_s18": 52, "naics_s19": 60, "naics_s20": 1, "race1": 4158, "race2": 936, "race3": 41, "race4": 555, "race5": 12, "race6": 61, "ethnicity1": 3938, "ethnicity2": 1825, "edu1": 969, "edu2": 1281, "edu3": 1487, "edu4": 1280, "Shape_Length": 21633.146235998749, "Shape_Area": 26966976.615101118, "total_2021": 5923, "total_2022": 5763 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.576025058105941, 29.815651201629265 ], [ -95.576064058376033, 29.813080201103826 ], [ -95.575793058717238, 29.812964201108972 ], [ -95.574944058536417, 29.812948201189414 ], [ -95.574912057916919, 29.812947200451497 ], [ -95.573562058222393, 29.812864201286324 ], [ -95.57179005724872, 29.812903200703325 ], [ -95.569922056860648, 29.81294020091029 ], [ -95.569250057204457, 29.81296220064052 ], [ -95.568707057019822, 29.812950201063899 ], [ -95.568363056583777, 29.812911200788424 ], [ -95.568076056564109, 29.812876201364759 ], [ -95.567831055854057, 29.812838201226988 ], [ -95.567283056230721, 29.812750201069107 ], [ -95.567003055731718, 29.812719201080643 ], [ -95.566216056052454, 29.812676201069234 ], [ -95.565867055792765, 29.812678200801908 ], [ -95.564707055828308, 29.812690200735126 ], [ -95.564047055430962, 29.812695201417096 ], [ -95.563789055552405, 29.81270320147895 ], [ -95.56358605474378, 29.812710200795994 ], [ -95.563586055188409, 29.812956201101979 ], [ -95.56358505549602, 29.815079201755506 ], [ -95.56358405511854, 29.816635201678075 ], [ -95.563594055200412, 29.817169201723758 ], [ -95.563594055516418, 29.818358202312357 ], [ -95.563597055376434, 29.818672201990928 ], [ -95.563607055449282, 29.819709202280634 ], [ -95.56366005550116, 29.821750202631357 ], [ -95.563660055832955, 29.822455203130083 ], [ -95.563660055742673, 29.82267220290813 ], [ -95.563660055381533, 29.822893203010103 ], [ -95.563660055917353, 29.824911204043701 ], [ -95.563660055922469, 29.824959203640802 ], [ -95.563628055816167, 29.825805204140586 ], [ -95.563664055882015, 29.827088204329744 ], [ -95.563701056432279, 29.83173820491437 ], [ -95.563700056362634, 29.831939205103282 ], [ -95.563889056028373, 29.831935205392984 ], [ -95.564314056700312, 29.831927205330924 ], [ -95.565467056406462, 29.831863204679522 ], [ -95.567132057316314, 29.831842204636729 ], [ -95.569960057532555, 29.831809204522646 ], [ -95.571158058340487, 29.831775204714916 ], [ -95.572415058824021, 29.831757204388026 ], [ -95.572981058883158, 29.831755204331841 ], [ -95.574753058932785, 29.831789204965371 ], [ -95.574855058536656, 29.831791204668761 ], [ -95.575862059197249, 29.831798204830832 ], [ -95.575891058896175, 29.830697204853085 ], [ -95.575995058338648, 29.818432202314803 ], [ -95.576025058105941, 29.815651201629265 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1071, "Tract": "48201231100", "Area_SqMi": 4.3158850374897764, "total_2009": 2445, "total_2010": 2283, "total_2011": 2439, "total_2012": 2813, "total_2013": 3182, "total_2014": 3300, "total_2015": 3315, "total_2016": 2949, "total_2017": 3700, "total_2018": 3669, "total_2019": 3905, "total_2020": 2729, "age1": 397, "age2": 1478, "age3": 657, "earn1": 169, "earn2": 542, "earn3": 1821, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 135, "naics_s05": 233, "naics_s06": 769, "naics_s07": 53, "naics_s08": 1026, "naics_s09": 0, "naics_s10": 21, "naics_s11": 10, "naics_s12": 7, "naics_s13": 0, "naics_s14": 159, "naics_s15": 0, "naics_s16": 96, "naics_s17": 0, "naics_s18": 9, "naics_s19": 14, "naics_s20": 0, "race1": 1767, "race2": 632, "race3": 26, "race4": 72, "race5": 8, "race6": 27, "ethnicity1": 1443, "ethnicity2": 1089, "edu1": 594, "edu2": 606, "edu3": 629, "edu4": 306, "Shape_Length": 49839.136274576369, "Shape_Area": 120319488.13414942, "total_2021": 2802, "total_2022": 2532 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.270152981334263, 29.836175216000097 ], [ -95.270142980900445, 29.835636215786394 ], [ -95.270146981260467, 29.835386215906567 ], [ -95.270131981025514, 29.834574215256801 ], [ -95.2701149806106, 29.833512215364514 ], [ -95.270098980916359, 29.831454214938297 ], [ -95.270062981149906, 29.829873214859649 ], [ -95.270038981035427, 29.828714214257772 ], [ -95.270030980256621, 29.828575214776702 ], [ -95.27001098107813, 29.827172214186888 ], [ -95.269992980575779, 29.826529214053963 ], [ -95.269975980932244, 29.825896213465704 ], [ -95.269976980484472, 29.825732213747003 ], [ -95.2699429810542, 29.823987213562507 ], [ -95.269939980310852, 29.823273213191719 ], [ -95.269937980031813, 29.822665213579292 ], [ -95.269921980235935, 29.822264212966218 ], [ -95.269913979944278, 29.822027213431646 ], [ -95.269899980044215, 29.820877212541831 ], [ -95.269900979941681, 29.820634213176731 ], [ -95.269861980598208, 29.818634212418822 ], [ -95.269855980139894, 29.817369211731275 ], [ -95.26984597973977, 29.816920212373574 ], [ -95.26981298061753, 29.81609821190882 ], [ -95.269818980065352, 29.814995211688185 ], [ -95.269815979868056, 29.813745211626649 ], [ -95.269801979825402, 29.812480211258638 ], [ -95.269784980204591, 29.811409210738059 ], [ -95.269771980312242, 29.810122211058111 ], [ -95.26974098002276, 29.808895210208302 ], [ -95.269723980117959, 29.808197210577081 ], [ -95.269715979433116, 29.807879209938356 ], [ -95.269752979806441, 29.807729210565391 ], [ -95.269710979400443, 29.807051209834153 ], [ -95.267563979722368, 29.808174210028472 ], [ -95.267202979093369, 29.808353210218485 ], [ -95.266555979211986, 29.808693210112253 ], [ -95.266113978522839, 29.80890821076887 ], [ -95.262009978415932, 29.810757210756847 ], [ -95.261620977982076, 29.810921211029306 ], [ -95.258066977142022, 29.812430211303361 ], [ -95.249929974661313, 29.815886212631341 ], [ -95.244642973395941, 29.818173212731189 ], [ -95.24386197405066, 29.818486213217525 ], [ -95.24068297246167, 29.81975821340259 ], [ -95.240274972955291, 29.819939213798776 ], [ -95.235982972105177, 29.82186021433229 ], [ -95.235491971155213, 29.822080214128867 ], [ -95.234579971355174, 29.822488214588443 ], [ -95.230043970736773, 29.824515214674808 ], [ -95.229931970670336, 29.824565214591338 ], [ -95.230292970239489, 29.825348215450191 ], [ -95.230370970498512, 29.825763215510406 ], [ -95.230389970014912, 29.825861215107658 ], [ -95.230422970444565, 29.826843215138201 ], [ -95.230451970230874, 29.827690215386003 ], [ -95.230566970736831, 29.828325215298367 ], [ -95.230904971082992, 29.828895215933965 ], [ -95.231609970771132, 29.829817216218284 ], [ -95.231816971473208, 29.829968215607806 ], [ -95.231793970871692, 29.83032121650972 ], [ -95.230481970488256, 29.832101216751315 ], [ -95.230263970509156, 29.832639216512248 ], [ -95.230273970501372, 29.832889216365885 ], [ -95.230242970541141, 29.83316121642688 ], [ -95.23014597121751, 29.834006217294657 ], [ -95.230205971135291, 29.834214217317374 ], [ -95.230438971131903, 29.834629217186134 ], [ -95.230593970547602, 29.834742217450152 ], [ -95.230674971438944, 29.834818217247463 ], [ -95.230754970746219, 29.834924217417004 ], [ -95.230877970907116, 29.83508821747311 ], [ -95.231123971606934, 29.835368217159342 ], [ -95.232051971823424, 29.836138217086443 ], [ -95.232805971612365, 29.83672721717792 ], [ -95.232852971252555, 29.836764217773002 ], [ -95.233450971501128, 29.837315217324839 ], [ -95.23393197154094, 29.837759217454447 ], [ -95.234183971715879, 29.838094218035511 ], [ -95.234272971881794, 29.838138218042364 ], [ -95.234391972213558, 29.838166217341971 ], [ -95.234612971844825, 29.838287217666569 ], [ -95.234713972514285, 29.838325217529476 ], [ -95.234877972420009, 29.838336217812493 ], [ -95.235609971888408, 29.838193217570208 ], [ -95.2356599722184, 29.838171217422012 ], [ -95.235754972201462, 29.838149217600044 ], [ -95.236233972809572, 29.838148217194387 ], [ -95.236428972998567, 29.838198217527168 ], [ -95.236574972828492, 29.83828621722629 ], [ -95.236668973048793, 29.83840121799221 ], [ -95.236744972634412, 29.838555217434646 ], [ -95.23676397312795, 29.838764217885984 ], [ -95.236763972831227, 29.838907217457027 ], [ -95.236788972689823, 29.839055218059844 ], [ -95.236833972337891, 29.839127217446023 ], [ -95.236934972829431, 29.839198217486899 ], [ -95.237123972712169, 29.839270218120159 ], [ -95.237299972548243, 29.839319218156039 ], [ -95.237508973325504, 29.839396217903388 ], [ -95.237728973476749, 29.83953921738766 ], [ -95.237855972943095, 29.839682217942066 ], [ -95.238057973398696, 29.840028217825679 ], [ -95.238196973018248, 29.840292218258146 ], [ -95.238246972772075, 29.840490217678536 ], [ -95.238315973612302, 29.84054521804633 ], [ -95.238820972892654, 29.840589218212529 ], [ -95.239514973800041, 29.840621217719235 ], [ -95.239829973242394, 29.840682218140348 ], [ -95.24002597389844, 29.840759217572675 ], [ -95.240201973929885, 29.840863218286344 ], [ -95.240391973577459, 29.840995217806913 ], [ -95.240536973785254, 29.841143218300893 ], [ -95.240624973301905, 29.84129721761515 ], [ -95.240694973937494, 29.841627218049041 ], [ -95.240650973781015, 29.841902218022931 ], [ -95.24033597409661, 29.842853218289061 ], [ -95.240304973725074, 29.843057218767377 ], [ -95.240316973502601, 29.843282218648689 ], [ -95.240367973489526, 29.84335921868686 ], [ -95.240455973948883, 29.843442218905853 ], [ -95.240525973608698, 29.843464218888524 ], [ -95.240607974325044, 29.843463218379974 ], [ -95.240777974235343, 29.843430218668594 ], [ -95.240909974338891, 29.843425218839478 ], [ -95.241162973828978, 29.843430218030267 ], [ -95.241433974118053, 29.843601218737319 ], [ -95.241761974558671, 29.843776218298562 ], [ -95.241912973865411, 29.843842218187795 ], [ -95.242140974683196, 29.84390321832085 ], [ -95.242335973852207, 29.844029218443424 ], [ -95.242518974125332, 29.844128218845494 ], [ -95.242758974268298, 29.844518219056063 ], [ -95.242783974608855, 29.844683219002405 ], [ -95.242859974113031, 29.844821218890008 ], [ -95.24297997460576, 29.844865218306023 ], [ -95.243111974309357, 29.844875218710737 ], [ -95.243282974273683, 29.84485321853397 ], [ -95.243465974600113, 29.844793218588642 ], [ -95.243591975101182, 29.844727218561367 ], [ -95.243748975051673, 29.844672218324103 ], [ -95.244032975115957, 29.84466621826607 ], [ -95.244228975105813, 29.844809218330095 ], [ -95.24449997534289, 29.845100218599342 ], [ -95.244669974533565, 29.845161218438722 ], [ -95.244852974803109, 29.845188219088776 ], [ -95.244985974910335, 29.845166218754553 ], [ -95.245123975447612, 29.845078218438793 ], [ -95.24522497557426, 29.844984218232316 ], [ -95.245350975362243, 29.84490221846308 ], [ -95.24554097502039, 29.844830218357206 ], [ -95.245741975774052, 29.844781218290976 ], [ -95.2461899758231, 29.844703218174661 ], [ -95.246366975682179, 29.844643218774685 ], [ -95.246555974971514, 29.844555218243659 ], [ -95.246857975975274, 29.844346218070854 ], [ -95.247280975623497, 29.84417521807848 ], [ -95.247412975771425, 29.844142218104679 ], [ -95.247528975845768, 29.844142217985738 ], [ -95.247576975593674, 29.84414221880192 ], [ -95.247747976162287, 29.844158218292883 ], [ -95.247993975773227, 29.844246218074144 ], [ -95.248207975516536, 29.844334218511122 ], [ -95.248459975673399, 29.844383218266422 ], [ -95.248680976519111, 29.844400218093664 ], [ -95.248863976264673, 29.844394218743115 ], [ -95.249172975942713, 29.844367218565399 ], [ -95.249216976548496, 29.844388218670186 ], [ -95.249267976284926, 29.844432218757554 ], [ -95.249494976157564, 29.844680218493966 ], [ -95.249595976311795, 29.844812218362581 ], [ -95.249683976801677, 29.844955218360887 ], [ -95.249803976428097, 29.845224218219951 ], [ -95.249886976427007, 29.845378219007049 ], [ -95.249930976575939, 29.845543218678507 ], [ -95.250005976613096, 29.845932218713084 ], [ -95.250099975987411, 29.846542218711132 ], [ -95.250124976267827, 29.847009218633008 ], [ -95.250149976919502, 29.84719621938353 ], [ -95.25016297628315, 29.847224219082666 ], [ -95.250193976924095, 29.847262219127135 ], [ -95.250319976299679, 29.847312218896768 ], [ -95.25044697657421, 29.847312218612299 ], [ -95.25059197666252, 29.847285218816612 ], [ -95.250868976763371, 29.847175219120675 ], [ -95.250994976577488, 29.847114219345134 ], [ -95.251234976744342, 29.846927219284613 ], [ -95.251442976346553, 29.846801218791288 ], [ -95.251632977315978, 29.846713218413569 ], [ -95.251833977402597, 29.846697219032283 ], [ -95.252199977021476, 29.846812219060272 ], [ -95.252590977541345, 29.846994218828311 ], [ -95.252786976664623, 29.847175219123876 ], [ -95.252867976712238, 29.847373218630235 ], [ -95.252855977250292, 29.847571219322376 ], [ -95.252861976956467, 29.847758219262253 ], [ -95.253056977761474, 29.847846218695448 ], [ -95.253384977296733, 29.847918219090772 ], [ -95.253719977539077, 29.847913218662654 ], [ -95.253996977525659, 29.848001218975238 ], [ -95.254286977873619, 29.848171219394548 ], [ -95.254469977173159, 29.848298219016023 ], [ -95.254683977363257, 29.848353218708542 ], [ -95.254955977457172, 29.848325218603428 ], [ -95.255119978284625, 29.848276219252114 ], [ -95.255276977864042, 29.848085219098824 ], [ -95.255327978134872, 29.848023218764588 ], [ -95.255428977585439, 29.847836218847668 ], [ -95.255548978293859, 29.847660218561849 ], [ -95.255693978163052, 29.847523219183735 ], [ -95.255838978225341, 29.847364218855223 ], [ -95.255895977578064, 29.847270219109234 ], [ -95.255857977462867, 29.847127218582152 ], [ -95.255756978426092, 29.846968218626632 ], [ -95.255719977975147, 29.846808218858929 ], [ -95.255750978117391, 29.846682218419794 ], [ -95.255864978121906, 29.846561218873315 ], [ -95.256053978339807, 29.846446218905786 ], [ -95.256324978232414, 29.846396219024189 ], [ -95.256640978416925, 29.846402218996243 ], [ -95.256677977655926, 29.84641021855963 ], [ -95.256854978580208, 29.846451218890902 ], [ -95.257049977943254, 29.846567218761898 ], [ -95.257346978101864, 29.846803219006411 ], [ -95.257585977925899, 29.846875218560857 ], [ -95.25776897886665, 29.846952218404386 ], [ -95.258071978345285, 29.846980218554275 ], [ -95.258204978435558, 29.846980218570852 ], [ -95.258431978921649, 29.847013218604811 ], [ -95.258708979042154, 29.847161218707022 ], [ -95.258992978336025, 29.847332218514925 ], [ -95.259099979301254, 29.84733221903354 ], [ -95.259118979221569, 29.847325218943254 ], [ -95.259288979122644, 29.847271218645226 ], [ -95.259452978532309, 29.847239218550204 ], [ -95.259818978571786, 29.847277218679395 ], [ -95.260177978936724, 29.847409218940143 ], [ -95.260556978904319, 29.84747521839784 ], [ -95.261035978954595, 29.847624218724807 ], [ -95.261691979942626, 29.847850218597859 ], [ -95.262164979466363, 29.848059218559001 ], [ -95.262323979257587, 29.848105218791151 ], [ -95.262333979391272, 29.846932218491386 ], [ -95.262312979835471, 29.846418218142539 ], [ -95.262320979455453, 29.846069217981213 ], [ -95.262319980052396, 29.845988217926557 ], [ -95.262315979493394, 29.845254218531981 ], [ -95.262316979771612, 29.844921217977955 ], [ -95.262303979851637, 29.844145218108082 ], [ -95.262294979945139, 29.843575217875149 ], [ -95.262280979308812, 29.843081217537186 ], [ -95.262271978905986, 29.842247217437215 ], [ -95.262267979350739, 29.841708217655654 ], [ -95.26226097984933, 29.841426217649349 ], [ -95.262260978837034, 29.840591216850751 ], [ -95.262240978779701, 29.83976921744113 ], [ -95.262223979341172, 29.838950217080772 ], [ -95.262225979357282, 29.838071216504847 ], [ -95.262220979661649, 29.837191216305492 ], [ -95.262243978807462, 29.837046216599251 ], [ -95.262475979131111, 29.836763216807611 ], [ -95.262684978833803, 29.836649216628533 ], [ -95.262730979500404, 29.836594216151315 ], [ -95.26361397976379, 29.836590215971395 ], [ -95.265137980230051, 29.836593216438452 ], [ -95.265335979799431, 29.836590216103041 ], [ -95.265742979641686, 29.83659421649714 ], [ -95.267176980816259, 29.836587216088109 ], [ -95.267431980247466, 29.836585216224652 ], [ -95.268875980392835, 29.836574216276851 ], [ -95.269591980921248, 29.836571215933166 ], [ -95.269837981026569, 29.836499216295369 ], [ -95.270028981455567, 29.836338215776152 ], [ -95.270152981334263, 29.836175216000097 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1072, "Tract": "48201231300", "Area_SqMi": 1.8576378447570769, "total_2009": 277, "total_2010": 292, "total_2011": 379, "total_2012": 463, "total_2013": 474, "total_2014": 600, "total_2015": 647, "total_2016": 693, "total_2017": 611, "total_2018": 423, "total_2019": 396, "total_2020": 356, "age1": 115, "age2": 192, "age3": 74, "earn1": 103, "earn2": 158, "earn3": 120, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 2, "naics_s06": 4, "naics_s07": 164, "naics_s08": 2, "naics_s09": 12, "naics_s10": 11, "naics_s11": 1, "naics_s12": 14, "naics_s13": 0, "naics_s14": 0, "naics_s15": 73, "naics_s16": 50, "naics_s17": 0, "naics_s18": 27, "naics_s19": 21, "naics_s20": 0, "race1": 219, "race2": 127, "race3": 4, "race4": 23, "race5": 0, "race6": 8, "ethnicity1": 221, "ethnicity2": 160, "edu1": 100, "edu2": 65, "edu3": 63, "edu4": 38, "Shape_Length": 33234.523736130337, "Shape_Area": 51787763.732880823, "total_2021": 377, "total_2022": 381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.289044987191559, 29.851751218648559 ], [ -95.288944986565838, 29.851606218318484 ], [ -95.288849986325062, 29.851529218386212 ], [ -95.288628986380616, 29.851364218156796 ], [ -95.288345986554745, 29.851270218362714 ], [ -95.288179986888679, 29.851235218069323 ], [ -95.287853986284674, 29.851166218757296 ], [ -95.287701986436588, 29.851105218732602 ], [ -95.287316986497075, 29.851017218672027 ], [ -95.28720998661305, 29.850995218540522 ], [ -95.287013986504562, 29.850959218364864 ], [ -95.286579986264798, 29.850880218532044 ], [ -95.286339986385499, 29.850791218735797 ], [ -95.286200986090122, 29.850638218270912 ], [ -95.286093986379157, 29.850561217988453 ], [ -95.285954986239645, 29.850555218601293 ], [ -95.285639985974484, 29.850522218743816 ], [ -95.285323985157447, 29.850401218692838 ], [ -95.284983985469225, 29.850093218141172 ], [ -95.284705985420146, 29.849950218776826 ], [ -95.284497985318765, 29.849863218615834 ], [ -95.284270984896636, 29.849769218704807 ], [ -95.28354298552739, 29.849307218382027 ], [ -95.283464984757273, 29.84925721838632 ], [ -95.283385985652401, 29.849208217907542 ], [ -95.283272985420325, 29.849137218659237 ], [ -95.283160984858014, 29.849065217977984 ], [ -95.283129984758418, 29.849015217805903 ], [ -95.28295998483145, 29.848900217855849 ], [ -95.28257498469452, 29.848691217891076 ], [ -95.28241698519075, 29.848641218518033 ], [ -95.281987984247849, 29.848646218457926 ], [ -95.281495985005975, 29.848668217745654 ], [ -95.280947984884079, 29.848657217976758 ], [ -95.280291984411434, 29.84866821804145 ], [ -95.279622984561598, 29.848619217926839 ], [ -95.279086984423785, 29.848613218332936 ], [ -95.278298983267817, 29.84859121867246 ], [ -95.277944983568389, 29.848558218576972 ], [ -95.27701198387733, 29.848272218470214 ], [ -95.276639983504737, 29.848134218073863 ], [ -95.276261982970894, 29.848019217836416 ], [ -95.275479983110998, 29.847815218192366 ], [ -95.275277983049477, 29.847639218137143 ], [ -95.27518898250166, 29.847518218048258 ], [ -95.275182982811813, 29.847309217740367 ], [ -95.275189983332567, 29.847056217848142 ], [ -95.27513298250858, 29.846792217789876 ], [ -95.274836982352298, 29.846385217860878 ], [ -95.274672982356023, 29.8459952181707 ], [ -95.27452098249816, 29.845747217925915 ], [ -95.274420982733034, 29.845643217565041 ], [ -95.27431298310546, 29.845566217509901 ], [ -95.273966982968332, 29.845472218030473 ], [ -95.273606981983107, 29.845324217386086 ], [ -95.273303982751926, 29.845164217325138 ], [ -95.273134982100416, 29.845101217597616 ], [ -95.27295098217364, 29.845032217800028 ], [ -95.27270498213116, 29.844961217447246 ], [ -95.272458982570413, 29.844933217931647 ], [ -95.272124982190064, 29.84501021812645 ], [ -95.271865981704821, 29.845092218103812 ], [ -95.271493981778832, 29.845081218109687 ], [ -95.271203982224449, 29.845092217674065 ], [ -95.270648982104234, 29.845186218190694 ], [ -95.270453982087673, 29.845158217833298 ], [ -95.270238981903816, 29.845021218000358 ], [ -95.270126981827929, 29.844854218191891 ], [ -95.270068981681518, 29.844767218033915 ], [ -95.269955981338271, 29.844564217993305 ], [ -95.269816980966667, 29.844493217606765 ], [ -95.269702981749276, 29.84448721770535 ], [ -95.269538981297643, 29.844487217877475 ], [ -95.269343981642606, 29.844602217529424 ], [ -95.269185981067864, 29.844773217827615 ], [ -95.26892698099914, 29.845026218250801 ], [ -95.268825981708829, 29.845235217636535 ], [ -95.268624981620675, 29.845548217573775 ], [ -95.268384980671883, 29.845790217626039 ], [ -95.2681199808667, 29.846004217698912 ], [ -95.267929980803004, 29.846070217730503 ], [ -95.26754598144278, 29.846141217993306 ], [ -95.267355981326219, 29.846246217926133 ], [ -95.266762980493908, 29.846685218183115 ], [ -95.266567980335083, 29.846790218662374 ], [ -95.266239980899144, 29.846872217940707 ], [ -95.265589980934976, 29.846883218126329 ], [ -95.26531298047226, 29.846817218280243 ], [ -95.265041979914471, 29.846789218516435 ], [ -95.264732980111063, 29.846817218457456 ], [ -95.264580980254976, 29.846932218393075 ], [ -95.264258979774766, 29.847125218719327 ], [ -95.263842980484753, 29.847487218708775 ], [ -95.263533979494014, 29.847630218681683 ], [ -95.263230979754198, 29.847801218980432 ], [ -95.262889979884335, 29.848053218671147 ], [ -95.262700979295545, 29.848130218473411 ], [ -95.262542979255358, 29.848169218426897 ], [ -95.262323979257587, 29.848105218791151 ], [ -95.262322979784315, 29.848175219120993 ], [ -95.262337979208922, 29.848351218969974 ], [ -95.262354979672608, 29.848828219065311 ], [ -95.262373979946119, 29.8491802190504 ], [ -95.262400979433309, 29.849369218611212 ], [ -95.262404980004817, 29.849543219348487 ], [ -95.262402979855452, 29.850058219238452 ], [ -95.262377979958316, 29.851178219037596 ], [ -95.262384979832859, 29.851754219067971 ], [ -95.262379979733922, 29.852969220000961 ], [ -95.262392979437649, 29.853519219473803 ], [ -95.262403980062444, 29.854951220080476 ], [ -95.262421979717971, 29.856502220504311 ], [ -95.262426980494141, 29.856982220302729 ], [ -95.262429979937068, 29.857862220706572 ], [ -95.262423980061115, 29.858728220678355 ], [ -95.262436979673126, 29.859057221165703 ], [ -95.262436979880249, 29.859628220722549 ], [ -95.262442979759257, 29.86049822122903 ], [ -95.262462980499862, 29.86101422148332 ], [ -95.262455980426992, 29.861822221751641 ], [ -95.262457979837336, 29.86228422191088 ], [ -95.262470980855426, 29.863082221614764 ], [ -95.262476980379688, 29.864742222534584 ], [ -95.262491980163659, 29.865880222515752 ], [ -95.262518981079452, 29.867856223141331 ], [ -95.262555981092774, 29.871891223352399 ], [ -95.262557981167532, 29.872064223813641 ], [ -95.26260398052321, 29.874820224523237 ], [ -95.262605981391289, 29.874912224491755 ], [ -95.26261498137363, 29.87547522430005 ], [ -95.262604980700957, 29.875640223914928 ], [ -95.26259198089673, 29.876471224641847 ], [ -95.262584981183693, 29.876630224779092 ], [ -95.2625619815487, 29.876766224355165 ], [ -95.262736981558419, 29.877176224892818 ], [ -95.262724980689882, 29.877223224305322 ], [ -95.262767980896413, 29.877249224645738 ], [ -95.265332981486438, 29.874811223858579 ], [ -95.265418981234234, 29.874729223759186 ], [ -95.26833198225755, 29.871951223767514 ], [ -95.26848298197136, 29.871804223087306 ], [ -95.269897982992205, 29.870427223414961 ], [ -95.270125982958675, 29.870205223356905 ], [ -95.272178983137749, 29.868183222057507 ], [ -95.276189984238556, 29.864241221231623 ], [ -95.276889984499988, 29.863547221714409 ], [ -95.278809984287392, 29.861708220837169 ], [ -95.279974984846007, 29.860567220219924 ], [ -95.280458984729862, 29.860095220484041 ], [ -95.281310984792384, 29.859269220111084 ], [ -95.2814619847221, 29.8591222206345 ], [ -95.281540985204941, 29.859032220191324 ], [ -95.282420984856813, 29.858179219753602 ], [ -95.283321985110121, 29.857299220258334 ], [ -95.284072985136376, 29.856567219960851 ], [ -95.286071986336253, 29.854560219541671 ], [ -95.286673986522999, 29.853941219338715 ], [ -95.288102986221674, 29.85259121860723 ], [ -95.289044987191559, 29.851751218648559 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1073, "Tract": "48201231500", "Area_SqMi": 0.44763605453417393, "total_2009": 90, "total_2010": 76, "total_2011": 114, "total_2012": 94, "total_2013": 71, "total_2014": 68, "total_2015": 82, "total_2016": 99, "total_2017": 112, "total_2018": 89, "total_2019": 112, "total_2020": 84, "age1": 25, "age2": 36, "age3": 27, "earn1": 27, "earn2": 43, "earn3": 18, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 16, "naics_s06": 12, "naics_s07": 5, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 23, "naics_s19": 18, "naics_s20": 0, "race1": 32, "race2": 42, "race3": 5, "race4": 7, "race5": 2, "race6": 0, "ethnicity1": 68, "ethnicity2": 20, "edu1": 18, "edu2": 13, "edu3": 25, "edu4": 7, "Shape_Length": 16472.71384367982, "Shape_Area": 12479327.06364855, "total_2021": 80, "total_2022": 88 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.300568990820324, 29.866875221005845 ], [ -95.30056498998259, 29.864259220768421 ], [ -95.300561990036059, 29.862070220391356 ], [ -95.300539989764388, 29.860773219602127 ], [ -95.300508990156175, 29.857643219666592 ], [ -95.300513989282365, 29.854533218672444 ], [ -95.300498989344135, 29.85308921856106 ], [ -95.300366989454346, 29.853087218487588 ], [ -95.300227989430283, 29.853086218495488 ], [ -95.299931989238914, 29.853146218876198 ], [ -95.299704989338764, 29.85328321810967 ], [ -95.299344989071017, 29.853569218454716 ], [ -95.298833989732813, 29.85373421896481 ], [ -95.298575989349033, 29.853767218536131 ], [ -95.298285988836241, 29.853855218933273 ], [ -95.297963988884263, 29.853971218740966 ], [ -95.297503989428108, 29.853987219129394 ], [ -95.297225989238115, 29.853877218989677 ], [ -95.296802988689137, 29.853591218398321 ], [ -95.29621698900938, 29.853250218586389 ], [ -95.295730988100402, 29.852893218927566 ], [ -95.295301988510133, 29.852656218195992 ], [ -95.294936988647166, 29.852398218059488 ], [ -95.294576988005701, 29.852068217975621 ], [ -95.29429998829049, 29.851903218353169 ], [ -95.294021987558665, 29.851683218437024 ], [ -95.293662987822955, 29.851524218107098 ], [ -95.293340987933419, 29.851491218173209 ], [ -95.292974987351741, 29.851540218485749 ], [ -95.292570988019222, 29.851678218666073 ], [ -95.292242987985773, 29.851930218894282 ], [ -95.291996987447419, 29.852238218137014 ], [ -95.291832987744243, 29.852348218915846 ], [ -95.291523987757913, 29.852491218399724 ], [ -95.291542987648796, 29.852524218793519 ], [ -95.291668987226885, 29.85266221903618 ], [ -95.29213598709147, 29.852805218470181 ], [ -95.292217987163212, 29.852925218561357 ], [ -95.292244987152216, 29.853201218705816 ], [ -95.292492988148709, 29.853126218554543 ], [ -95.292785988193359, 29.852965218749574 ], [ -95.292792987474286, 29.853258219027737 ], [ -95.292795987497698, 29.853684218637373 ], [ -95.292812987721732, 29.854577219069775 ], [ -95.292826988022782, 29.855542219126974 ], [ -95.292841988195661, 29.856489219510074 ], [ -95.292856988270216, 29.857431219773442 ], [ -95.292865988206572, 29.858282219338648 ], [ -95.292876988199652, 29.859100219491875 ], [ -95.292891987755439, 29.860426219789016 ], [ -95.292907988407578, 29.861632220754835 ], [ -95.292914988210669, 29.862460221049485 ], [ -95.292922987828632, 29.863716221258986 ], [ -95.292948987924476, 29.864620220895997 ], [ -95.292949988807194, 29.865087221077658 ], [ -95.292950987895637, 29.865795221508968 ], [ -95.292970988306919, 29.867012221490988 ], [ -95.294697989263653, 29.866978221103906 ], [ -95.295637989315409, 29.866975221779011 ], [ -95.296258988957277, 29.866978221676234 ], [ -95.296433988782297, 29.866979221783183 ], [ -95.298175990168758, 29.866955221271425 ], [ -95.299730989706092, 29.866937220936716 ], [ -95.300100989722708, 29.866902221219149 ], [ -95.300431990014403, 29.866882221149393 ], [ -95.300568990820324, 29.866875221005845 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1074, "Tract": "48201231600", "Area_SqMi": 0.64266621597264784, "total_2009": 127, "total_2010": 50, "total_2011": 52, "total_2012": 58, "total_2013": 56, "total_2014": 50, "total_2015": 41, "total_2016": 40, "total_2017": 41, "total_2018": 36, "total_2019": 56, "total_2020": 27, "age1": 33, "age2": 53, "age3": 34, "earn1": 56, "earn2": 42, "earn3": 22, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 0, "naics_s07": 91, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 23, "naics_s17": 0, "naics_s18": 2, "naics_s19": 0, "naics_s20": 0, "race1": 79, "race2": 28, "race3": 0, "race4": 12, "race5": 0, "race6": 1, "ethnicity1": 77, "ethnicity2": 43, "edu1": 18, "edu2": 28, "edu3": 23, "edu4": 18, "Shape_Length": 19338.130108246438, "Shape_Area": 17916434.167095881, "total_2021": 59, "total_2022": 120 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.318071994441482, 29.862906219563616 ], [ -95.317769994515331, 29.86279522025454 ], [ -95.317303994389576, 29.862624219874366 ], [ -95.316975993944141, 29.862531219540799 ], [ -95.316672993940443, 29.862514219487519 ], [ -95.316092994090468, 29.862328219810088 ], [ -95.315991994309201, 29.862157219439482 ], [ -95.315927993900189, 29.861844219869983 ], [ -95.315845993936506, 29.861651220015176 ], [ -95.315707994042768, 29.861464219954236 ], [ -95.315063993645325, 29.861019219586431 ], [ -95.314716993761806, 29.860821219366784 ], [ -95.314483993154539, 29.860579219505976 ], [ -95.314180993891853, 29.86019421909759 ], [ -95.313846992898547, 29.859826219486063 ], [ -95.313537993335771, 29.859447219435165 ], [ -95.312931992986947, 29.858820219417279 ], [ -95.31234499344545, 29.858303218969926 ], [ -95.311859992850756, 29.858056218834005 ], [ -95.311341992787931, 29.857990219509063 ], [ -95.310893992224052, 29.858023219501941 ], [ -95.310553992556905, 29.858017219024163 ], [ -95.310301992594447, 29.858061219251546 ], [ -95.310023992656198, 29.858166219138219 ], [ -95.309928991950542, 29.858248219485954 ], [ -95.309764992307706, 29.858292218828716 ], [ -95.309348992020446, 29.858155218834128 ], [ -95.309165991827584, 29.858050218696537 ], [ -95.308837992085842, 29.858045219265083 ], [ -95.308607991654711, 29.858086219262429 ], [ -95.308534992095986, 29.858100218755343 ], [ -95.308206991383472, 29.858226219218697 ], [ -95.30798699177538, 29.858336218904281 ], [ -95.30779699161225, 29.858419219708189 ], [ -95.307664991595118, 29.858452219346098 ], [ -95.307500991329377, 29.858474219128599 ], [ -95.30723599161928, 29.858430219666758 ], [ -95.306939992005027, 29.858292219290476 ], [ -95.306674991104998, 29.857929219242305 ], [ -95.306529991300806, 29.857484219464222 ], [ -95.306478991872766, 29.856984218588863 ], [ -95.306377991482606, 29.856797218635265 ], [ -95.30622099093695, 29.856714218525497 ], [ -95.305765991544476, 29.856544218687144 ], [ -95.30546999095678, 29.856406219267893 ], [ -95.305248991151402, 29.856302218541646 ], [ -95.304712991348495, 29.855846219047159 ], [ -95.304365990663428, 29.855505218844023 ], [ -95.304056990967126, 29.854993218368161 ], [ -95.303955991128745, 29.854702218460538 ], [ -95.303974990160086, 29.854433218473087 ], [ -95.304056990826282, 29.854053218104823 ], [ -95.304157990642267, 29.853668218745664 ], [ -95.304119990721162, 29.853415218210667 ], [ -95.304075990365732, 29.853289218700851 ], [ -95.303860990538695, 29.853168218471779 ], [ -95.303400990921602, 29.853053218161826 ], [ -95.30309799001617, 29.853042218100168 ], [ -95.302681989975056, 29.853086218141915 ], [ -95.301848989769525, 29.853212218506158 ], [ -95.301508989474357, 29.853223218759947 ], [ -95.30118098947672, 29.853157218360366 ], [ -95.301019990118533, 29.853132218280653 ], [ -95.300745990253134, 29.853091218550183 ], [ -95.300498989344135, 29.85308921856106 ], [ -95.300513989282365, 29.854533218672444 ], [ -95.300508990156175, 29.857643219666592 ], [ -95.300539989764388, 29.860773219602127 ], [ -95.300561990036059, 29.862070220391356 ], [ -95.30056498998259, 29.864259220768421 ], [ -95.300568990820324, 29.866875221005845 ], [ -95.301868990582349, 29.866873221288969 ], [ -95.302392990709649, 29.866871221282217 ], [ -95.303015990798457, 29.866871221172495 ], [ -95.303259990770783, 29.866865221131203 ], [ -95.304113990885739, 29.866865220905591 ], [ -95.30498099130277, 29.866866221462022 ], [ -95.305879992190341, 29.866862221429017 ], [ -95.306827991595796, 29.866868220885078 ], [ -95.307761991717896, 29.866858221432345 ], [ -95.3087059927973, 29.86685122122066 ], [ -95.309697992285649, 29.866860221030041 ], [ -95.310709992752876, 29.866858220485547 ], [ -95.311731993104388, 29.866856220984879 ], [ -95.312108993457827, 29.866854221039645 ], [ -95.312685993671181, 29.866858220741086 ], [ -95.313216993809618, 29.866853220641641 ], [ -95.314543993411419, 29.866841220534415 ], [ -95.314876993611705, 29.866824220416987 ], [ -95.315438994543001, 29.866717220548562 ], [ -95.315962993754439, 29.866671221086676 ], [ -95.316202993876686, 29.866674220711744 ], [ -95.316516994530275, 29.866671220223207 ], [ -95.316781994426961, 29.866097220476423 ], [ -95.318071994441482, 29.862906219563616 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1075, "Tract": "48201231700", "Area_SqMi": 1.6330400369116824, "total_2009": 844, "total_2010": 947, "total_2011": 1064, "total_2012": 1209, "total_2013": 1263, "total_2014": 1347, "total_2015": 1143, "total_2016": 1324, "total_2017": 1425, "total_2018": 1599, "total_2019": 1358, "total_2020": 1396, "age1": 608, "age2": 624, "age3": 327, "earn1": 461, "earn2": 538, "earn3": 560, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 142, "naics_s05": 222, "naics_s06": 114, "naics_s07": 456, "naics_s08": 23, "naics_s09": 0, "naics_s10": 17, "naics_s11": 12, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 497, "naics_s19": 64, "naics_s20": 0, "race1": 1186, "race2": 280, "race3": 21, "race4": 55, "race5": 2, "race6": 15, "ethnicity1": 821, "ethnicity2": 738, "edu1": 279, "edu2": 279, "edu3": 240, "edu4": 153, "Shape_Length": 32266.004081667998, "Shape_Area": 45526361.253141128, "total_2021": 1329, "total_2022": 1559 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.333553998620516, 29.862121218849541 ], [ -95.333600998229826, 29.861349219349258 ], [ -95.333437998516217, 29.861270218539666 ], [ -95.333264998068742, 29.861186218769689 ], [ -95.332931998231899, 29.861024219137281 ], [ -95.332655997905803, 29.86089021929919 ], [ -95.332586997804881, 29.860857219313772 ], [ -95.332404998670469, 29.860798218523115 ], [ -95.33226599855017, 29.860753219009776 ], [ -95.332113998371128, 29.86074721933981 ], [ -95.331988997895991, 29.860778219057355 ], [ -95.331823998347346, 29.860819219235264 ], [ -95.331566997635221, 29.860949218994719 ], [ -95.331533997995322, 29.860967218829803 ], [ -95.331142998101996, 29.861226218775879 ], [ -95.330827997747676, 29.86147921880514 ], [ -95.330638997711105, 29.86186421943551 ], [ -95.330505997597086, 29.862062219173534 ], [ -95.330146997905217, 29.862227218845412 ], [ -95.329685997649705, 29.862265219346032 ], [ -95.329420997641989, 29.862161219162928 ], [ -95.328796997606659, 29.861809219137459 ], [ -95.328625997555903, 29.861787219602803 ], [ -95.328486996902171, 29.861815218833982 ], [ -95.328334997696913, 29.861888219334745 ], [ -95.327761996913523, 29.862161219294922 ], [ -95.327036996540784, 29.862530219045059 ], [ -95.32684799673207, 29.862678219531386 ], [ -95.326475997203715, 29.863118219444807 ], [ -95.325838997161242, 29.863816219589367 ], [ -95.325472996606791, 29.864289219504034 ], [ -95.325339996884907, 29.864355219926285 ], [ -95.325043996407189, 29.864410220242771 ], [ -95.324753995957877, 29.864413220197243 ], [ -95.3245009961812, 29.864416219727353 ], [ -95.324078996730861, 29.864278219715796 ], [ -95.323674995938134, 29.864015219841839 ], [ -95.323340995975627, 29.863861219709516 ], [ -95.322848995781513, 29.863723219584649 ], [ -95.322614995632108, 29.863718219862808 ], [ -95.322091995192736, 29.863811219978064 ], [ -95.321845995300365, 29.863800219441359 ], [ -95.321693995330406, 29.863707219663095 ], [ -95.321637995134367, 29.863691219909786 ], [ -95.321403995170527, 29.863553219739952 ], [ -95.32073699512938, 29.863425220273946 ], [ -95.320488995494514, 29.86337721957517 ], [ -95.319479995422185, 29.86321821953139 ], [ -95.318293994790992, 29.862987219786511 ], [ -95.318071994441482, 29.862906219563616 ], [ -95.316781994426961, 29.866097220476423 ], [ -95.316516994530275, 29.866671220223207 ], [ -95.315143993786577, 29.870072221210535 ], [ -95.315044994084857, 29.870318221540256 ], [ -95.31401599352786, 29.872774222396764 ], [ -95.313193994056547, 29.874892222036117 ], [ -95.312947993597902, 29.875479222832361 ], [ -95.312657993535638, 29.876177222972235 ], [ -95.312291993668737, 29.877062222914457 ], [ -95.311994994206032, 29.877798222893443 ], [ -95.311658993198932, 29.878605223673759 ], [ -95.311233993820537, 29.879609223870013 ], [ -95.309055993464341, 29.885079225054827 ], [ -95.308314993484345, 29.886987225231685 ], [ -95.308130992814881, 29.887514225652293 ], [ -95.307833993500807, 29.88832222519585 ], [ -95.30659699245453, 29.891190226235256 ], [ -95.306782993275093, 29.891188226180059 ], [ -95.307286993217843, 29.891183225893393 ], [ -95.30918599314046, 29.891157226230849 ], [ -95.309719994092731, 29.891150225833158 ], [ -95.31072899392916, 29.891136225592565 ], [ -95.311084993933122, 29.891124225913192 ], [ -95.311275993952833, 29.891130225443433 ], [ -95.311457994362769, 29.891121226263987 ], [ -95.312687994207806, 29.891103225829802 ], [ -95.313237995007682, 29.891087225742865 ], [ -95.313999995297905, 29.891079225784591 ], [ -95.315466994736397, 29.891061226043416 ], [ -95.315516995433242, 29.891062225430296 ], [ -95.316053995307229, 29.891031225845026 ], [ -95.316969995229854, 29.890979225320411 ], [ -95.317477995973007, 29.890974225320896 ], [ -95.317701995496691, 29.890983225481804 ], [ -95.317848995619102, 29.89097922535775 ], [ -95.318062995710321, 29.890970225281976 ], [ -95.318252996284926, 29.890962225363658 ], [ -95.318301996336942, 29.890866225263434 ], [ -95.318374995966252, 29.890736225790096 ], [ -95.318647996448036, 29.89024922499917 ], [ -95.318942996433833, 29.889754225031584 ], [ -95.319266995621291, 29.889174225486901 ], [ -95.320152996181335, 29.887598224373015 ], [ -95.321140996008808, 29.885933224386324 ], [ -95.322361996658614, 29.883810224417196 ], [ -95.323616997391184, 29.881721223339476 ], [ -95.324635996944309, 29.879995223154634 ], [ -95.324679996724186, 29.8799192235291 ], [ -95.324819997369758, 29.879658222807876 ], [ -95.324990997324662, 29.879365222964605 ], [ -95.325690997092522, 29.87816622282066 ], [ -95.325765997238747, 29.878033222256366 ], [ -95.326183997599969, 29.877188222775693 ], [ -95.326643997007139, 29.87641322218829 ], [ -95.327175997825762, 29.875506222449065 ], [ -95.32977999804298, 29.871053221431687 ], [ -95.330067998119446, 29.870585221170121 ], [ -95.330206998244151, 29.870359220932009 ], [ -95.330307997900334, 29.870187220769985 ], [ -95.331585998306153, 29.868018220416211 ], [ -95.33213499869737, 29.867078220144709 ], [ -95.332266998751777, 29.866852220440283 ], [ -95.332429998737155, 29.866523220463133 ], [ -95.332548998376467, 29.866282220478041 ], [ -95.332848998440269, 29.865517220296809 ], [ -95.332920998388047, 29.865317219547265 ], [ -95.333120998280577, 29.864761219686358 ], [ -95.333158998674179, 29.864545219638178 ], [ -95.333278998321276, 29.86409021955312 ], [ -95.333356998078074, 29.863711219630503 ], [ -95.33345099858613, 29.86311021933707 ], [ -95.333553998620516, 29.862121218849541 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1076, "Tract": "48201340900", "Area_SqMi": 1.5371121367308651, "total_2009": 831, "total_2010": 718, "total_2011": 735, "total_2012": 698, "total_2013": 866, "total_2014": 1036, "total_2015": 1073, "total_2016": 1506, "total_2017": 1564, "total_2018": 1477, "total_2019": 1472, "total_2020": 1353, "age1": 399, "age2": 573, "age3": 278, "earn1": 303, "earn2": 474, "earn3": 473, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 76, "naics_s05": 2, "naics_s06": 24, "naics_s07": 268, "naics_s08": 0, "naics_s09": 7, "naics_s10": 30, "naics_s11": 89, "naics_s12": 154, "naics_s13": 49, "naics_s14": 18, "naics_s15": 36, "naics_s16": 118, "naics_s17": 18, "naics_s18": 283, "naics_s19": 77, "naics_s20": 0, "race1": 959, "race2": 172, "race3": 10, "race4": 87, "race5": 2, "race6": 20, "ethnicity1": 866, "ethnicity2": 384, "edu1": 168, "edu2": 211, "edu3": 280, "edu4": 192, "Shape_Length": 26738.749865633883, "Shape_Area": 42852055.578341961, "total_2021": 1277, "total_2022": 1250 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.169022943659769, 29.569621164420106 ], [ -95.168891943642308, 29.569469165087014 ], [ -95.165512941963883, 29.565550164199561 ], [ -95.16228894131946, 29.561847162845975 ], [ -95.158683940274926, 29.5580911628672 ], [ -95.156938939471132, 29.556269162092622 ], [ -95.154694939498029, 29.553927162112444 ], [ -95.15419993844371, 29.553410161974394 ], [ -95.154045938883598, 29.55352416196374 ], [ -95.153885939231216, 29.553642161781216 ], [ -95.153546939156271, 29.553894161984577 ], [ -95.15227593833572, 29.554706162519054 ], [ -95.151807937915379, 29.555036162038945 ], [ -95.150957938649782, 29.555481162729446 ], [ -95.150510938266535, 29.555653162520461 ], [ -95.150207938488009, 29.55577016209093 ], [ -95.150144938276227, 29.55579416285131 ], [ -95.14911393771159, 29.556438162867007 ], [ -95.148601937444255, 29.55675716251525 ], [ -95.148472937227325, 29.556838162544768 ], [ -95.14823593782836, 29.556993163182842 ], [ -95.147968937287402, 29.557169162377583 ], [ -95.147667937088741, 29.557366163023286 ], [ -95.147393936826703, 29.55754416310802 ], [ -95.146456937605549, 29.55815716311805 ], [ -95.145970937338944, 29.558473163074474 ], [ -95.145503936741903, 29.558779162875418 ], [ -95.145356936920848, 29.558871163182435 ], [ -95.144697936431243, 29.55928316327763 ], [ -95.144379936829239, 29.559483163099255 ], [ -95.144248937119798, 29.559569163367453 ], [ -95.143462936334316, 29.56008316358184 ], [ -95.143173936649319, 29.560273163791326 ], [ -95.142957935808809, 29.560416163848327 ], [ -95.142710935872572, 29.560579163939458 ], [ -95.141880936515193, 29.561122163948628 ], [ -95.141698936471457, 29.561242163709416 ], [ -95.140673935980686, 29.561890164171288 ], [ -95.141539936166907, 29.562774164233183 ], [ -95.141794935669893, 29.563048164009917 ], [ -95.142657936564049, 29.563976164265117 ], [ -95.143257936062383, 29.564621164657751 ], [ -95.14365893642578, 29.565054164919989 ], [ -95.144098936590979, 29.565527164191831 ], [ -95.144701937240853, 29.566176164610102 ], [ -95.145154937357404, 29.566663164748103 ], [ -95.145287937558606, 29.566804164741367 ], [ -95.14553193711555, 29.567065164672364 ], [ -95.146102937370614, 29.567680164688991 ], [ -95.1465429370854, 29.56815116528869 ], [ -95.146630937724808, 29.568246164904505 ], [ -95.146958937489075, 29.568598165231311 ], [ -95.147463938091349, 29.569140165351314 ], [ -95.148813938040036, 29.57058916582066 ], [ -95.149992938651621, 29.571837165394484 ], [ -95.156256940463848, 29.57854516654174 ], [ -95.157053941132546, 29.57939916675182 ], [ -95.157805941201147, 29.58020516736217 ], [ -95.159249940910058, 29.579063166930663 ], [ -95.159996941124831, 29.578164166927088 ], [ -95.161384941947787, 29.57649716620196 ], [ -95.162142942086106, 29.575829166226569 ], [ -95.163604942475317, 29.574908166196217 ], [ -95.164988942617413, 29.574039165431426 ], [ -95.165667942677857, 29.573374165691696 ], [ -95.166356942986781, 29.572480165614106 ], [ -95.166989942783857, 29.571748165116539 ], [ -95.168636943787916, 29.570017165088391 ], [ -95.168863943098657, 29.569784164380597 ], [ -95.169022943659769, 29.569621164420106 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1077, "Tract": "48201230300", "Area_SqMi": 0.67339640495752906, "total_2009": 22, "total_2010": 28, "total_2011": 42, "total_2012": 48, "total_2013": 49, "total_2014": 48, "total_2015": 41, "total_2016": 42, "total_2017": 39, "total_2018": 47, "total_2019": 14, "total_2020": 17, "age1": 4, "age2": 13, "age3": 1, "earn1": 8, "earn2": 5, "earn3": 5, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 10, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 13, "race2": 3, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 12, "ethnicity2": 6, "edu1": 4, "edu2": 3, "edu3": 5, "edu4": 2, "Shape_Length": 19986.797344766728, "Shape_Area": 18773139.240750276, "total_2021": 20, "total_2022": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.318948994251059, 29.840537215481657 ], [ -95.318927993631107, 29.838913215273468 ], [ -95.318905993247142, 29.837784214600056 ], [ -95.31889799369327, 29.837089214288966 ], [ -95.318879993190535, 29.836422214172281 ], [ -95.318877993355784, 29.835674214361848 ], [ -95.31888599327047, 29.834922213895855 ], [ -95.31886699352853, 29.834174213741868 ], [ -95.31885799355085, 29.83100321351505 ], [ -95.318820993792784, 29.829114212955428 ], [ -95.318818993763927, 29.828555212416756 ], [ -95.318809993363672, 29.82814921290575 ], [ -95.318782992955164, 29.827852212861128 ], [ -95.318712992765768, 29.8274882128872 ], [ -95.318671993029398, 29.827078212371152 ], [ -95.318626992620537, 29.826248212692612 ], [ -95.318576992940805, 29.824053211768167 ], [ -95.318573993118449, 29.823761212053178 ], [ -95.318575992502275, 29.823479212064029 ], [ -95.318576993399688, 29.823322211500589 ], [ -95.318453992576039, 29.823412211919692 ], [ -95.316653992179084, 29.824854212457804 ], [ -95.316600992805419, 29.824935212007016 ], [ -95.315140992081808, 29.826313212169921 ], [ -95.315034991756491, 29.826395212493885 ], [ -95.313856991768446, 29.827635212314743 ], [ -95.313771992042248, 29.827715212802911 ], [ -95.310772991240199, 29.830579213101199 ], [ -95.309674990718889, 29.831701214177397 ], [ -95.309139990793938, 29.832179213837762 ], [ -95.308788990576033, 29.832494213541924 ], [ -95.30818699098613, 29.833055214520424 ], [ -95.304087989694196, 29.837106214805733 ], [ -95.303277990022323, 29.837876214794111 ], [ -95.302055989835495, 29.83901921550709 ], [ -95.302093989395473, 29.839452215147105 ], [ -95.302105989869915, 29.840748215985993 ], [ -95.303330990216523, 29.840740215656034 ], [ -95.304551990310344, 29.840728216078759 ], [ -95.305773990981578, 29.840711215971233 ], [ -95.307138991191181, 29.84070821546867 ], [ -95.308622991639339, 29.840698215353303 ], [ -95.309680991115584, 29.840679215217474 ], [ -95.310822991648337, 29.840684215781788 ], [ -95.311761991841735, 29.840658215584472 ], [ -95.312180992487271, 29.84064721559238 ], [ -95.312704992540048, 29.840640215287134 ], [ -95.31321899192082, 29.840637215697377 ], [ -95.314110992330029, 29.840624214992374 ], [ -95.314828992927019, 29.840609215233375 ], [ -95.315322992681999, 29.840598215573319 ], [ -95.316085993323696, 29.840592215616585 ], [ -95.31661799321256, 29.840580215076873 ], [ -95.318012994099732, 29.840553215040426 ], [ -95.318948994251059, 29.840537215481657 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1078, "Tract": "48201423500", "Area_SqMi": 0.47977458859476479, "total_2009": 565, "total_2010": 629, "total_2011": 824, "total_2012": 484, "total_2013": 635, "total_2014": 847, "total_2015": 927, "total_2016": 1146, "total_2017": 780, "total_2018": 879, "total_2019": 748, "total_2020": 591, "age1": 110, "age2": 297, "age3": 142, "earn1": 107, "earn2": 160, "earn3": 282, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 24, "naics_s05": 36, "naics_s06": 79, "naics_s07": 72, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 45, "naics_s12": 199, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 44, "naics_s17": 0, "naics_s18": 38, "naics_s19": 9, "naics_s20": 0, "race1": 355, "race2": 92, "race3": 1, "race4": 93, "race5": 0, "race6": 8, "ethnicity1": 361, "ethnicity2": 188, "edu1": 100, "edu2": 102, "edu3": 122, "edu4": 115, "Shape_Length": 15862.358372215129, "Shape_Area": 13375294.387607044, "total_2021": 609, "total_2022": 549 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.550228044490723, 29.653563169305738 ], [ -95.55037204521399, 29.653494169315454 ], [ -95.550135044487078, 29.653305169088874 ], [ -95.54974104442887, 29.652992169415825 ], [ -95.548013043755844, 29.651482168350736 ], [ -95.546306043930514, 29.650040168108731 ], [ -95.541862041960982, 29.646352167713335 ], [ -95.540465041816546, 29.645247167376212 ], [ -95.539331041176951, 29.644274168029394 ], [ -95.539133041043883, 29.644113167156295 ], [ -95.538961041722558, 29.643955167175289 ], [ -95.538763041432489, 29.643773167253638 ], [ -95.538009040644965, 29.64312316724671 ], [ -95.537005040462375, 29.642283167404507 ], [ -95.536931040982736, 29.642230166934691 ], [ -95.536819040752874, 29.642330167116846 ], [ -95.536623041259475, 29.642540167477105 ], [ -95.536355041205482, 29.64273216751878 ], [ -95.536163041023883, 29.642903167696282 ], [ -95.536041040212652, 29.643067167565594 ], [ -95.536035040116644, 29.643120167845346 ], [ -95.536022041014078, 29.643239167865918 ], [ -95.536026041133866, 29.64358416785797 ], [ -95.536065040498102, 29.645401167506115 ], [ -95.536103040373249, 29.647547168791078 ], [ -95.536168040806288, 29.649988168883702 ], [ -95.53616704076002, 29.650505168627863 ], [ -95.536203041178325, 29.652502169435628 ], [ -95.536207041245419, 29.65268516944403 ], [ -95.536266040837376, 29.65542117023654 ], [ -95.536272041441833, 29.656198169897124 ], [ -95.536273041662511, 29.656303169737392 ], [ -95.536336041424576, 29.656305169987792 ], [ -95.536411041665176, 29.656307170207768 ], [ -95.537604041248557, 29.656345169998744 ], [ -95.538862042143236, 29.656332170132792 ], [ -95.542417043237677, 29.656300169510825 ], [ -95.543806042854413, 29.656231170214866 ], [ -95.545537044133027, 29.655780169645805 ], [ -95.545790043877119, 29.655667169569977 ], [ -95.549759044306967, 29.653789169603009 ], [ -95.550168044977838, 29.653592169537113 ], [ -95.550228044490723, 29.653563169305738 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1079, "Tract": "48201420100", "Area_SqMi": 0.44801975132089183, "total_2009": 714, "total_2010": 675, "total_2011": 747, "total_2012": 528, "total_2013": 593, "total_2014": 746, "total_2015": 867, "total_2016": 838, "total_2017": 789, "total_2018": 792, "total_2019": 822, "total_2020": 822, "age1": 184, "age2": 612, "age3": 219, "earn1": 81, "earn2": 237, "earn3": 697, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 108, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 12, "naics_s12": 229, "naics_s13": 0, "naics_s14": 3, "naics_s15": 294, "naics_s16": 229, "naics_s17": 0, "naics_s18": 29, "naics_s19": 101, "naics_s20": 0, "race1": 722, "race2": 190, "race3": 6, "race4": 83, "race5": 2, "race6": 12, "ethnicity1": 756, "ethnicity2": 259, "edu1": 142, "edu2": 169, "edu3": 279, "edu4": 241, "Shape_Length": 16925.313322364716, "Shape_Area": 12490023.873358632, "total_2021": 1036, "total_2022": 1015 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.439955017316805, 29.6790311780297 ], [ -95.439978017323782, 29.678559177981036 ], [ -95.439945017466712, 29.678001178191622 ], [ -95.439910017115508, 29.677388177787879 ], [ -95.439882017782736, 29.676897177853022 ], [ -95.439893017904197, 29.676073177268798 ], [ -95.439882017835842, 29.675259177117283 ], [ -95.439873017769472, 29.673309177334509 ], [ -95.439858017629902, 29.672163177022295 ], [ -95.439842016913616, 29.671343176599436 ], [ -95.439838017527691, 29.670883176330413 ], [ -95.439840016762119, 29.670515176036794 ], [ -95.439818016960359, 29.669690176500353 ], [ -95.439825016841212, 29.668874175840443 ], [ -95.43980601669692, 29.668044175481132 ], [ -95.439797017538893, 29.667616176082809 ], [ -95.439808017255018, 29.667225175546651 ], [ -95.439787017343804, 29.666398175386306 ], [ -95.439781017456056, 29.665584175274414 ], [ -95.439767017471098, 29.665025174912468 ], [ -95.439747016909735, 29.664727175293994 ], [ -95.439710016842781, 29.662662175079991 ], [ -95.43970701729387, 29.662476174382618 ], [ -95.439350016430183, 29.66290617449787 ], [ -95.439303016806633, 29.662967174521789 ], [ -95.438394016271559, 29.664132174896078 ], [ -95.437777016488425, 29.664909175272452 ], [ -95.436497016029733, 29.666567176038352 ], [ -95.43566901617146, 29.667579175853014 ], [ -95.435582016056415, 29.667693176110404 ], [ -95.435263016406694, 29.66812617602589 ], [ -95.434054015263072, 29.669658176613691 ], [ -95.433045015411636, 29.670917176205869 ], [ -95.43274601522964, 29.671290177153388 ], [ -95.432079015198312, 29.672142176980639 ], [ -95.431583015707361, 29.672756177031989 ], [ -95.431469014916303, 29.672908176987413 ], [ -95.431343014758653, 29.67305817712236 ], [ -95.431150015550273, 29.67332617675142 ], [ -95.429953014778917, 29.674806177759674 ], [ -95.429704015158649, 29.675131177979711 ], [ -95.429442015136232, 29.675466177476117 ], [ -95.429088014824586, 29.675899177530724 ], [ -95.42883101505133, 29.676223177477535 ], [ -95.428577015106725, 29.676545178114612 ], [ -95.428459014282339, 29.676696177952454 ], [ -95.427964014394163, 29.677290177665068 ], [ -95.42780101416146, 29.677489178338224 ], [ -95.427650014746419, 29.677729177974914 ], [ -95.427827014165217, 29.677755178385539 ], [ -95.427934014909184, 29.677770177769581 ], [ -95.428912014377005, 29.677960178110641 ], [ -95.430168015436294, 29.678242177821677 ], [ -95.430631014970444, 29.678343177992062 ], [ -95.431721015907357, 29.678569178458698 ], [ -95.431905015104334, 29.678607178640451 ], [ -95.433077016338771, 29.678868177928276 ], [ -95.433245015456876, 29.678900178688401 ], [ -95.434350015879502, 29.679143177876604 ], [ -95.4347570162371, 29.679229178152589 ], [ -95.435119016455218, 29.679301178237299 ], [ -95.435353016452112, 29.679360178617884 ], [ -95.43561101622214, 29.679409178636675 ], [ -95.436000016542366, 29.679478177906486 ], [ -95.436723017287164, 29.679564178690391 ], [ -95.437401016735961, 29.679590178191905 ], [ -95.438347017711791, 29.679584178500765 ], [ -95.439727017505788, 29.679524177865751 ], [ -95.439955017255429, 29.679518178137879 ], [ -95.439955017355203, 29.679301178212153 ], [ -95.439955017316805, 29.6790311780297 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1080, "Tract": "48201241400", "Area_SqMi": 4.2749763228546502, "total_2009": 441, "total_2010": 543, "total_2011": 601, "total_2012": 882, "total_2013": 1113, "total_2014": 1354, "total_2015": 1596, "total_2016": 1625, "total_2017": 1406, "total_2018": 1391, "total_2019": 1526, "total_2020": 1213, "age1": 283, "age2": 702, "age3": 270, "earn1": 197, "earn2": 366, "earn3": 692, "naics_s01": 18, "naics_s02": 23, "naics_s03": 0, "naics_s04": 196, "naics_s05": 30, "naics_s06": 37, "naics_s07": 76, "naics_s08": 69, "naics_s09": 14, "naics_s10": 48, "naics_s11": 80, "naics_s12": 77, "naics_s13": 0, "naics_s14": 68, "naics_s15": 55, "naics_s16": 80, "naics_s17": 0, "naics_s18": 223, "naics_s19": 161, "naics_s20": 0, "race1": 899, "race2": 265, "race3": 13, "race4": 51, "race5": 3, "race6": 24, "ethnicity1": 896, "ethnicity2": 359, "edu1": 210, "edu2": 251, "edu3": 300, "edu4": 211, "Shape_Length": 72197.075470048265, "Shape_Area": 119179023.18608695, "total_2021": 1138, "total_2022": 1255 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436649036311479, 30.110371266059506 ], [ -95.436632035967179, 30.110304266419959 ], [ -95.436352036288937, 30.109688265722898 ], [ -95.436144036321735, 30.109108266060748 ], [ -95.436013035600539, 30.108753266154135 ], [ -95.435904035800405, 30.10828226551774 ], [ -95.435855036356926, 30.107981265584609 ], [ -95.435800035938314, 30.107576265890586 ], [ -95.435778036294209, 30.107024265818595 ], [ -95.435789036210323, 30.106636265662129 ], [ -95.435789035983646, 30.105553265594907 ], [ -95.435788035753916, 30.105528265610577 ], [ -95.435782035684667, 30.105379264853269 ], [ -95.435492036137148, 30.105389264948851 ], [ -95.435089035755496, 30.10540326520098 ], [ -95.434746035241304, 30.105426265008443 ], [ -95.434566035105291, 30.105441265375202 ], [ -95.434280035596061, 30.105498265282797 ], [ -95.434193035578033, 30.105410264985238 ], [ -95.433930034988705, 30.10518026557876 ], [ -95.433469035568663, 30.104871265138382 ], [ -95.432924034872542, 30.104604264929481 ], [ -95.429550034450713, 30.103105264987136 ], [ -95.429354034555146, 30.103017265052433 ], [ -95.425083032438081, 30.101092264266523 ], [ -95.423053032205019, 30.100148264757713 ], [ -95.422393031830055, 30.099842264367325 ], [ -95.422242032357488, 30.099772264607072 ], [ -95.42208403260733, 30.099699264236904 ], [ -95.421816032336551, 30.099574264645792 ], [ -95.417363030358729, 30.097536264628868 ], [ -95.416955030700976, 30.097321263803106 ], [ -95.416591030728497, 30.097075264588572 ], [ -95.416067030238182, 30.09665626426348 ], [ -95.415757030060192, 30.096339263839592 ], [ -95.41516603003808, 30.095613263760381 ], [ -95.414719029505477, 30.094685263777595 ], [ -95.414493029372522, 30.093940263203088 ], [ -95.414386029456509, 30.093529263943019 ], [ -95.414327029910993, 30.093300263485933 ], [ -95.414180029987662, 30.092735263477447 ], [ -95.414002029173304, 30.092052263676088 ], [ -95.413834029497536, 30.091406263327858 ], [ -95.41337802925392, 30.08977926281101 ], [ -95.412810029600266, 30.087748262534788 ], [ -95.412537029311693, 30.086773261839692 ], [ -95.412255028737619, 30.085766262450459 ], [ -95.411663028231445, 30.083542261596861 ], [ -95.411560028411543, 30.083153261646846 ], [ -95.41151102883353, 30.082968261915617 ], [ -95.41101602810572, 30.081301261389832 ], [ -95.410681027812316, 30.080123261249604 ], [ -95.410590027755433, 30.07923226036942 ], [ -95.410585028533873, 30.078607260633206 ], [ -95.410679028053636, 30.078026260411175 ], [ -95.410795028289598, 30.07751026061689 ], [ -95.410970027749244, 30.076621260631175 ], [ -95.411038027810847, 30.076279260190855 ], [ -95.411312028672114, 30.074872259972739 ], [ -95.411335028183046, 30.074748259781352 ], [ -95.411369028141522, 30.074568259477285 ], [ -95.411341028219752, 30.074532259660419 ], [ -95.411205028327643, 30.074355259972005 ], [ -95.410697028428046, 30.073696259808898 ], [ -95.410639027926635, 30.073616259343247 ], [ -95.410463027408369, 30.073364259855246 ], [ -95.409960027565816, 30.072565259590331 ], [ -95.409333027170902, 30.071694259536333 ], [ -95.408489027141584, 30.070547259016738 ], [ -95.408391026742763, 30.070417258756223 ], [ -95.405746026490888, 30.066796258116092 ], [ -95.405348025984779, 30.066257258183519 ], [ -95.405184026643454, 30.066274258519346 ], [ -95.404894026388988, 30.066327258596726 ], [ -95.404587026493118, 30.066372258768979 ], [ -95.40422702568776, 30.066407258777044 ], [ -95.403864026074402, 30.066426258104126 ], [ -95.403553025736443, 30.066428257973733 ], [ -95.403243025765278, 30.066417258031638 ], [ -95.402881025319488, 30.066388258506311 ], [ -95.402522025523979, 30.066342258110492 ], [ -95.402217025233568, 30.066289258620628 ], [ -95.401845024850957, 30.066206258721198 ], [ -95.401568025599943, 30.066131258068637 ], [ -95.401276025089132, 30.066039258760952 ], [ -95.40094202532137, 30.065917258342232 ], [ -95.400615025117858, 30.065778258693229 ], [ -95.400298025201366, 30.065625258227264 ], [ -95.400035025327242, 30.065481258689626 ], [ -95.399879024554792, 30.065385258431622 ], [ -95.399738024988082, 30.065300258666614 ], [ -95.399452024395089, 30.06510525861356 ], [ -95.398440024903891, 30.064221257740279 ], [ -95.398156024103471, 30.064003258455539 ], [ -95.397869024338888, 30.063810257866532 ], [ -95.397612023952021, 30.063657258385707 ], [ -95.39734702454183, 30.063516258465828 ], [ -95.397073023692471, 30.063387258269731 ], [ -95.396980023741023, 30.063349258173758 ], [ -95.396824024132073, 30.063285258411987 ], [ -95.39676502421689, 30.063261257795979 ], [ -95.396745024136436, 30.063253258273093 ], [ -95.396505023841172, 30.063169258038037 ], [ -95.396211023781049, 30.063079257849207 ], [ -95.39591302384251, 30.063004257880156 ], [ -95.395610023954575, 30.06294225826985 ], [ -95.395304023392029, 30.062894257599051 ], [ -95.394980023297904, 30.06285925786274 ], [ -95.394915023665135, 30.062852257882444 ], [ -95.394594023582002, 30.0628412576187 ], [ -95.394283023537881, 30.06284525843024 ], [ -95.393973023137278, 30.062864258099872 ], [ -95.393665023493611, 30.062898258226966 ], [ -95.3933590228052, 30.062945257778903 ], [ -95.393248022854181, 30.062968257924201 ], [ -95.393056022675381, 30.063008258526565 ], [ -95.392758023130881, 30.063084258061924 ], [ -95.392513023174516, 30.063159257856622 ], [ -95.392225022612024, 30.06326025777193 ], [ -95.391943023201065, 30.063376258261361 ], [ -95.391710022678524, 30.063484258147206 ], [ -95.388325022287106, 30.065346259070282 ], [ -95.385411020796099, 30.066948259559457 ], [ -95.383570021248303, 30.067960259272731 ], [ -95.381725020177058, 30.068972259343216 ], [ -95.379771019459, 30.070044259820747 ], [ -95.379275019672818, 30.070300260360131 ], [ -95.37905201996729, 30.070432260299853 ], [ -95.378374019734295, 30.070833260286218 ], [ -95.377664019047245, 30.071253260208408 ], [ -95.376729018909941, 30.071806260180036 ], [ -95.373591018931478, 30.07366226097642 ], [ -95.373352018463166, 30.073803260937503 ], [ -95.372941018401306, 30.074034260667684 ], [ -95.372648018395793, 30.073945261012163 ], [ -95.37211201817243, 30.073867261301242 ], [ -95.370840017838091, 30.073682260824977 ], [ -95.370441017639379, 30.073704261258211 ], [ -95.37016901762783, 30.073782261281256 ], [ -95.369885017951859, 30.073897260828161 ], [ -95.369531017480497, 30.074178261430323 ], [ -95.369462017665541, 30.074282261613245 ], [ -95.369159016964275, 30.074656261599834 ], [ -95.369172017792337, 30.074997261066251 ], [ -95.369165017252897, 30.075129261046374 ], [ -95.369128017238765, 30.075332261244249 ], [ -95.369045016967206, 30.075470261146769 ], [ -95.368875017761184, 30.075662261323249 ], [ -95.368685017716174, 30.075855261685032 ], [ -95.368685017800317, 30.075976261530819 ], [ -95.368641016872445, 30.076157261768262 ], [ -95.368414017304488, 30.076383261261515 ], [ -95.36828101755431, 30.07664126174393 ], [ -95.368300017182293, 30.076905261328367 ], [ -95.368256016890413, 30.077142261547731 ], [ -95.36813001768887, 30.077285261941196 ], [ -95.36795301712732, 30.077367262088579 ], [ -95.367454016952422, 30.077285261789523 ], [ -95.367302016690402, 30.077290262142178 ], [ -95.367182016666291, 30.077334261726133 ], [ -95.367082016970301, 30.07750126190821 ], [ -95.366658016344843, 30.077652262061982 ], [ -95.366906017248326, 30.077840261974817 ], [ -95.366970016567336, 30.077858262310887 ], [ -95.367577017464995, 30.078027261845303 ], [ -95.368764017860386, 30.077988262420742 ], [ -95.369565017379671, 30.077962262010896 ], [ -95.369862017873828, 30.0780062618798 ], [ -95.371024017658698, 30.078340261880843 ], [ -95.371858018419204, 30.07874026239864 ], [ -95.372622018274953, 30.079174262097951 ], [ -95.373161019017843, 30.079568262140086 ], [ -95.37341401825006, 30.07980626217039 ], [ -95.373746019165267, 30.080305262573066 ], [ -95.373994019155049, 30.080916262531236 ], [ -95.374165019233502, 30.081582262651175 ], [ -95.374381019212024, 30.083509263219348 ], [ -95.374331019145302, 30.083938263263065 ], [ -95.374132018979211, 30.084741263023975 ], [ -95.374235019532094, 30.085635263325631 ], [ -95.374325018841091, 30.085910263471973 ], [ -95.374576019604945, 30.08620226385916 ], [ -95.374745019203914, 30.086307263451584 ], [ -95.374978018927223, 30.08637926313132 ], [ -95.375588019991298, 30.086084263417213 ], [ -95.375870019515318, 30.086031263675494 ], [ -95.376860019647225, 30.086030263425219 ], [ -95.377137019712706, 30.086146262955317 ], [ -95.378410020284278, 30.08716226308653 ], [ -95.379241020236222, 30.08748026380389 ], [ -95.379692020406196, 30.087520263457712 ], [ -95.380474020676445, 30.087445263716535 ], [ -95.381581021312073, 30.087153263583964 ], [ -95.38178702108921, 30.087141263751064 ], [ -95.382231020795388, 30.087224263310013 ], [ -95.382610021553916, 30.0873662632766 ], [ -95.383604022188564, 30.087948263324325 ], [ -95.384015022051329, 30.087971263769663 ], [ -95.384767022302526, 30.087775263757884 ], [ -95.384950021586533, 30.087646263812321 ], [ -95.384991022070452, 30.087328263465878 ], [ -95.384703021781107, 30.086544263153048 ], [ -95.384699021906215, 30.08640226325392 ], [ -95.384950021958005, 30.08575826297178 ], [ -95.385162021687918, 30.085538263352969 ], [ -95.385616022223303, 30.085195262476152 ], [ -95.385875021743956, 30.085022262868648 ], [ -95.386047021828773, 30.084953262581859 ], [ -95.386550022125192, 30.084752262367648 ], [ -95.387411022469337, 30.084673262990801 ], [ -95.388400023166852, 30.085036262362266 ], [ -95.388917022529029, 30.085161262340591 ], [ -95.389533022886766, 30.085216262621447 ], [ -95.389730023006706, 30.085168262968409 ], [ -95.389980022930558, 30.084935262364581 ], [ -95.390113023634754, 30.084633262265122 ], [ -95.390281023063224, 30.08374826200378 ], [ -95.390457023070425, 30.083232262541053 ], [ -95.390660023354926, 30.083005262586333 ], [ -95.390903023273793, 30.08286926238052 ], [ -95.391291023903278, 30.082746261944827 ], [ -95.391633023781068, 30.082701261911989 ], [ -95.391749023623717, 30.082732261972392 ], [ -95.392309023839715, 30.083099261853572 ], [ -95.392649023736922, 30.083230262556782 ], [ -95.394452024536832, 30.083744262031455 ], [ -95.394981024108318, 30.083822262610788 ], [ -95.395235024664387, 30.083937262133475 ], [ -95.395631024342592, 30.084030262248749 ], [ -95.396958025244373, 30.084994262765598 ], [ -95.397504024769731, 30.085314262599979 ], [ -95.39787402473047, 30.085344262464975 ], [ -95.398067025716671, 30.085410262684814 ], [ -95.398294025159075, 30.08556526268007 ], [ -95.398502025715857, 30.085832262237044 ], [ -95.398799025101511, 30.086614262896628 ], [ -95.399022025543275, 30.087780262879885 ], [ -95.399353026201567, 30.088399263413631 ], [ -95.399595026226393, 30.089231263046557 ], [ -95.399882025568829, 30.089906263296623 ], [ -95.400268026257521, 30.090324263002056 ], [ -95.401372026450645, 30.091135263292369 ], [ -95.40224902688837, 30.091668263667376 ], [ -95.402565026931327, 30.091747263366482 ], [ -95.403298026875902, 30.091824263607073 ], [ -95.40457202747811, 30.091855263319079 ], [ -95.405169026968849, 30.091992263825947 ], [ -95.405450027679407, 30.092081263464664 ], [ -95.40591602793458, 30.092229263192159 ], [ -95.405947027865381, 30.092239263681858 ], [ -95.407292027879564, 30.09300126333185 ], [ -95.40741502793864, 30.093011263266053 ], [ -95.408095028650934, 30.092758263582152 ], [ -95.409402028971826, 30.092647263635655 ], [ -95.409879028301461, 30.092723263610527 ], [ -95.410040028475194, 30.092835263887409 ], [ -95.410134029068416, 30.092987263453761 ], [ -95.410269028495719, 30.093434263596549 ], [ -95.410303028591244, 30.09350926408997 ], [ -95.410380028568085, 30.093676264000038 ], [ -95.410498028737564, 30.093934263957536 ], [ -95.410704028429592, 30.094364263905732 ], [ -95.410914028562189, 30.094673264275141 ], [ -95.411068028800472, 30.094792264226509 ], [ -95.411228029583597, 30.094828263509481 ], [ -95.412329029832748, 30.094908263890346 ], [ -95.412564029020459, 30.094974263672949 ], [ -95.4127030299545, 30.095050263530926 ], [ -95.41279702901754, 30.095168264332088 ], [ -95.412926029119944, 30.095465264092262 ], [ -95.412860029365049, 30.0957062636855 ], [ -95.412768029953767, 30.095825264274811 ], [ -95.411986029316395, 30.096509264384718 ], [ -95.411516029210119, 30.097052264114694 ], [ -95.411288028993525, 30.097203264085806 ], [ -95.41064402922764, 30.097948264740072 ], [ -95.410546028837118, 30.098062265032379 ], [ -95.410543028701611, 30.098513264961873 ], [ -95.410713028676611, 30.09883126509478 ], [ -95.410621029535776, 30.099242265154011 ], [ -95.410794029428018, 30.099439264694276 ], [ -95.411027029718468, 30.099500264728348 ], [ -95.411388029284424, 30.099439265235297 ], [ -95.411754029032153, 30.09945826528584 ], [ -95.412146029663305, 30.099368265266051 ], [ -95.41221402944899, 30.099398264715379 ], [ -95.412184029193256, 30.099678265170017 ], [ -95.411731029015414, 30.100089264589204 ], [ -95.411607029373528, 30.10031326463271 ], [ -95.4116200293265, 30.100631264668991 ], [ -95.411745029708527, 30.100854265090412 ], [ -95.412005029072716, 30.100950265511464 ], [ -95.413149029362557, 30.101069264955168 ], [ -95.413857030474347, 30.101350265621956 ], [ -95.414286029994258, 30.101629264908635 ], [ -95.415350030948872, 30.102473265416162 ], [ -95.416253030790145, 30.103015265268819 ], [ -95.416393030520183, 30.103145265374309 ], [ -95.417368031462559, 30.103670265908988 ], [ -95.417994031711928, 30.10393026596455 ], [ -95.418424031836281, 30.104449265350979 ], [ -95.418769031491209, 30.104639265909494 ], [ -95.418946031648133, 30.104788265284633 ], [ -95.419062031952734, 30.105052265779719 ], [ -95.418809031079135, 30.105878265624924 ], [ -95.418813031598674, 30.106199265948842 ], [ -95.418950031709713, 30.106536266142207 ], [ -95.418811031598935, 30.107384265928602 ], [ -95.418851031670272, 30.107916266248729 ], [ -95.418792031733446, 30.108518266228177 ], [ -95.418845031696733, 30.10872226673898 ], [ -95.419071032210027, 30.108804266402235 ], [ -95.419394032065313, 30.108831266774462 ], [ -95.41993503147684, 30.108685266319537 ], [ -95.420466032228873, 30.108703266069927 ], [ -95.420823032007007, 30.10887426634438 ], [ -95.421076032320045, 30.10926226664996 ], [ -95.421187032496604, 30.109433266429868 ], [ -95.422018032818372, 30.109656266494927 ], [ -95.422336033096741, 30.109733266858814 ], [ -95.42245703280004, 30.109832266273614 ], [ -95.422701032386371, 30.110204267004018 ], [ -95.423005033297898, 30.110865267034342 ], [ -95.422918033077153, 30.112108266646597 ], [ -95.423119033481271, 30.112762266769401 ], [ -95.42347303338434, 30.113325267581821 ], [ -95.423579032762333, 30.114532267335445 ], [ -95.423689033055481, 30.114836267781715 ], [ -95.423878033033688, 30.115150267968016 ], [ -95.424223033683504, 30.115496267566158 ], [ -95.424742033537115, 30.115605267976353 ], [ -95.425606033806901, 30.115620267521422 ], [ -95.426069033514551, 30.115538267698192 ], [ -95.426517033647713, 30.115459267613002 ], [ -95.426742034009521, 30.115378267925966 ], [ -95.42738903391465, 30.114945267096623 ], [ -95.427592034546521, 30.114853267097587 ], [ -95.428300033880376, 30.114534267370377 ], [ -95.428536034466077, 30.114294267554556 ], [ -95.429108034274691, 30.114107267344025 ], [ -95.429392034854516, 30.113766266882145 ], [ -95.429687034217636, 30.113593267041718 ], [ -95.429928035054743, 30.113586266963761 ], [ -95.430309034432611, 30.113857267175945 ], [ -95.43062603540001, 30.113913267285799 ], [ -95.431528035650686, 30.113689267300739 ], [ -95.432019034818111, 30.113638267051488 ], [ -95.432845035184016, 30.113635267032265 ], [ -95.434128035485429, 30.113307266778026 ], [ -95.435135036147415, 30.112985267043907 ], [ -95.435409036215745, 30.112825267101492 ], [ -95.435570035850958, 30.112664267012448 ], [ -95.435868036542786, 30.112199266457171 ], [ -95.435959035833335, 30.111928266819906 ], [ -95.436067036004559, 30.111183266140475 ], [ -95.436094036088278, 30.111130266753278 ], [ -95.436142035801808, 30.111032266138 ], [ -95.436240036119088, 30.11083526641378 ], [ -95.436386035984, 30.110670266671534 ], [ -95.436519036553108, 30.110519266447191 ], [ -95.43660403587063, 30.110423266000826 ], [ -95.436625036007413, 30.110399266033543 ], [ -95.436649036311479, 30.110371266059506 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1081, "Tract": "48201343100", "Area_SqMi": 0.79291511096667133, "total_2009": 70, "total_2010": 80, "total_2011": 74, "total_2012": 71, "total_2013": 64, "total_2014": 125, "total_2015": 104, "total_2016": 101, "total_2017": 92, "total_2018": 114, "total_2019": 94, "total_2020": 105, "age1": 36, "age2": 42, "age3": 16, "earn1": 33, "earn2": 29, "earn3": 32, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 0, "naics_s07": 19, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 15, "naics_s13": 0, "naics_s14": 9, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 15, "naics_s19": 0, "naics_s20": 0, "race1": 73, "race2": 7, "race3": 0, "race4": 14, "race5": 0, "race6": 0, "ethnicity1": 69, "ethnicity2": 25, "edu1": 7, "edu2": 25, "edu3": 16, "edu4": 10, "Shape_Length": 19033.570455891553, "Shape_Area": 22105116.205975443, "total_2021": 106, "total_2022": 94 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.086926926350188, 29.66438618695036 ], [ -95.086909926634974, 29.663311187019222 ], [ -95.086830926811217, 29.662373186340886 ], [ -95.086829926095746, 29.661437186678054 ], [ -95.086820926427279, 29.660447186316123 ], [ -95.086765925813083, 29.659957185601957 ], [ -95.08677992672223, 29.659503185628978 ], [ -95.086698926177149, 29.65611918484673 ], [ -95.086611926286963, 29.653921185022714 ], [ -95.086432926217796, 29.651438184434397 ], [ -95.086430925973744, 29.651418183911822 ], [ -95.086417925773631, 29.651264184207211 ], [ -95.086417925265408, 29.65112318433734 ], [ -95.086390926248441, 29.651125184408283 ], [ -95.086350925360577, 29.651128184611778 ], [ -95.08582492588468, 29.651219184453844 ], [ -95.084212925539603, 29.651383184758075 ], [ -95.083335925361112, 29.651423184300214 ], [ -95.078755923373961, 29.651504184611618 ], [ -95.076469923348824, 29.651556185034487 ], [ -95.075716922709915, 29.651567184428298 ], [ -95.074499922867034, 29.651584185045259 ], [ -95.073530922536989, 29.651620184485356 ], [ -95.073320922737352, 29.651628184413688 ], [ -95.073326922585281, 29.651773184923453 ], [ -95.073329922659596, 29.651857185069048 ], [ -95.073372922277684, 29.652577184814447 ], [ -95.073369922247551, 29.652624185082018 ], [ -95.073320922605504, 29.653568185517301 ], [ -95.073181922173887, 29.65444018489087 ], [ -95.07300492282485, 29.655246185564881 ], [ -95.072831922620139, 29.656043185331573 ], [ -95.072651922022303, 29.65653018551486 ], [ -95.072462922526327, 29.657128186320644 ], [ -95.072141922451337, 29.657890186121762 ], [ -95.071814922824856, 29.658642186090002 ], [ -95.071527921990949, 29.659481185984006 ], [ -95.071321922737667, 29.659928186209882 ], [ -95.071148921984616, 29.660301186384086 ], [ -95.070995922098888, 29.660624186990347 ], [ -95.070856922062035, 29.660994186461149 ], [ -95.070819921712115, 29.66137518655124 ], [ -95.070598922634062, 29.662236187486211 ], [ -95.070568922520252, 29.663084187196709 ], [ -95.070566922504284, 29.663946187240366 ], [ -95.07057592261296, 29.664593187219896 ], [ -95.07073692238788, 29.664590187410369 ], [ -95.077456923755932, 29.664483187452458 ], [ -95.0784129241529, 29.664474186798905 ], [ -95.079143924012854, 29.664466187582843 ], [ -95.080896924454933, 29.664449186787262 ], [ -95.083217925697141, 29.664413187485945 ], [ -95.086926926350188, 29.66438618695036 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1082, "Tract": "48201310400", "Area_SqMi": 0.67140962387796554, "total_2009": 776, "total_2010": 1254, "total_2011": 1195, "total_2012": 956, "total_2013": 1045, "total_2014": 1051, "total_2015": 1209, "total_2016": 1030, "total_2017": 1010, "total_2018": 1047, "total_2019": 2143, "total_2020": 1957, "age1": 352, "age2": 1288, "age3": 545, "earn1": 187, "earn2": 658, "earn3": 1340, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 5, "naics_s05": 235, "naics_s06": 55, "naics_s07": 79, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 6, "naics_s13": 0, "naics_s14": 20, "naics_s15": 0, "naics_s16": 1703, "naics_s17": 0, "naics_s18": 64, "naics_s19": 17, "naics_s20": 0, "race1": 1287, "race2": 728, "race3": 18, "race4": 103, "race5": 1, "race6": 48, "ethnicity1": 1263, "ethnicity2": 922, "edu1": 397, "edu2": 439, "edu3": 604, "edu4": 393, "Shape_Length": 19182.791572916114, "Shape_Area": 18717751.184661847, "total_2021": 499, "total_2022": 2185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.33898399502354, 29.745798194782704 ], [ -95.339468994805344, 29.745169194707788 ], [ -95.338421994141285, 29.744870194707776 ], [ -95.337401994671168, 29.744522195056014 ], [ -95.336300994222782, 29.744231195279017 ], [ -95.335262993743683, 29.743901195173592 ], [ -95.334216993102316, 29.743562194771986 ], [ -95.334060993533129, 29.743510195192044 ], [ -95.333605993077754, 29.743370194490957 ], [ -95.333115993606668, 29.743220194830077 ], [ -95.333018992818282, 29.743185195001306 ], [ -95.330596992458752, 29.74241319472457 ], [ -95.329653991791673, 29.742129194405013 ], [ -95.329414991862052, 29.742415194358749 ], [ -95.32917399176057, 29.742681195267348 ], [ -95.328943992327765, 29.742971195273963 ], [ -95.328595991487575, 29.743503195163303 ], [ -95.328423991481145, 29.743894195040784 ], [ -95.328313992263304, 29.74418019526772 ], [ -95.328205991782141, 29.744523194875413 ], [ -95.328115992036089, 29.744734195011493 ], [ -95.327598991556812, 29.74597719545557 ], [ -95.327173991849008, 29.746976195825788 ], [ -95.327014991330572, 29.747320195598498 ], [ -95.326902991912291, 29.747513196220726 ], [ -95.326601991470739, 29.747931196452278 ], [ -95.326051992068457, 29.748500196398236 ], [ -95.325510991617463, 29.749065196568463 ], [ -95.324598990765111, 29.750242196202226 ], [ -95.324421991534535, 29.750507196757155 ], [ -95.323990990706179, 29.751092197074176 ], [ -95.32289999054025, 29.752494196741264 ], [ -95.322533990419842, 29.752976196944037 ], [ -95.322092990367892, 29.753581197397093 ], [ -95.320562990740385, 29.755645197989306 ], [ -95.32027799059739, 29.755868198213712 ], [ -95.32025399029601, 29.755895198095317 ], [ -95.320052990707765, 29.756123198353933 ], [ -95.320140990526653, 29.756177197930331 ], [ -95.320523990952779, 29.756413198198818 ], [ -95.321336990966074, 29.756768197653223 ], [ -95.321761991333588, 29.756890197964648 ], [ -95.322474990839623, 29.757096198446032 ], [ -95.322982991059021, 29.757336198008797 ], [ -95.323666991347096, 29.757911198182178 ], [ -95.324581992048905, 29.759111198526206 ], [ -95.325114991703714, 29.759588198871157 ], [ -95.325186992238599, 29.759652198303918 ], [ -95.325494992380015, 29.759832198787812 ], [ -95.325728991517522, 29.759904198653171 ], [ -95.326217992079663, 29.759930198197758 ], [ -95.327745992639763, 29.759851198863998 ], [ -95.3288739928703, 29.759843198413442 ], [ -95.328987992805736, 29.759721198109101 ], [ -95.329046992965218, 29.75965319830329 ], [ -95.329097992984174, 29.759595198500193 ], [ -95.329842993152425, 29.75874519810808 ], [ -95.33025799327919, 29.758232198073596 ], [ -95.330800993464223, 29.757512197821985 ], [ -95.330115992786531, 29.757132197565557 ], [ -95.330212993079414, 29.757002197802979 ], [ -95.330595992798152, 29.756490197832282 ], [ -95.330642992944917, 29.756419197690921 ], [ -95.331003993426876, 29.755950197936212 ], [ -95.331128993130974, 29.75577919736989 ], [ -95.331403993453733, 29.755429197576813 ], [ -95.331664992906511, 29.755104197196495 ], [ -95.33178499357696, 29.754953196993576 ], [ -95.332434993004682, 29.754125196808303 ], [ -95.332581993594317, 29.753945197179718 ], [ -95.333046993816396, 29.753339196869049 ], [ -95.333494993498689, 29.752747196978728 ], [ -95.333944993690821, 29.752166196237489 ], [ -95.334189994230769, 29.751850196236536 ], [ -95.334445993676226, 29.75152619659757 ], [ -95.334967993719459, 29.750862196011571 ], [ -95.336010993670357, 29.749538195644977 ], [ -95.336608993975531, 29.748792195490218 ], [ -95.337086994319378, 29.748202195802008 ], [ -95.337546994508742, 29.747610195837691 ], [ -95.337861994179278, 29.747210195021719 ], [ -95.338381994443267, 29.746553195761457 ], [ -95.33898399502354, 29.745798194782704 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1083, "Tract": "48201320100", "Area_SqMi": 0.37996687577753613, "total_2009": 474, "total_2010": 478, "total_2011": 481, "total_2012": 568, "total_2013": 493, "total_2014": 460, "total_2015": 479, "total_2016": 470, "total_2017": 446, "total_2018": 512, "total_2019": 475, "total_2020": 458, "age1": 90, "age2": 229, "age3": 106, "earn1": 64, "earn2": 169, "earn3": 192, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 11, "naics_s07": 57, "naics_s08": 7, "naics_s09": 4, "naics_s10": 33, "naics_s11": 6, "naics_s12": 23, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 217, "naics_s17": 8, "naics_s18": 23, "naics_s19": 1, "naics_s20": 0, "race1": 354, "race2": 34, "race3": 5, "race4": 26, "race5": 1, "race6": 5, "ethnicity1": 144, "ethnicity2": 281, "edu1": 105, "edu2": 78, "edu3": 93, "edu4": 59, "Shape_Length": 15707.797328551402, "Shape_Area": 10592826.176870422, "total_2021": 349, "total_2022": 425 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.288600979871163, 29.697471186952498 ], [ -95.288738979449619, 29.697454187244343 ], [ -95.288517979300735, 29.697281186843487 ], [ -95.288339979541803, 29.697153186956012 ], [ -95.288155979619091, 29.697023187107483 ], [ -95.28764997907605, 29.696582186627314 ], [ -95.287018978799694, 29.69604418642578 ], [ -95.286952978727172, 29.695751187005207 ], [ -95.28693097888528, 29.695653186221389 ], [ -95.286869979158354, 29.695481186398034 ], [ -95.286801979027217, 29.695287186730919 ], [ -95.28665997886786, 29.695017186437404 ], [ -95.286417978895287, 29.694665186088187 ], [ -95.285812979244767, 29.693954186136359 ], [ -95.285271979010489, 29.69331818586836 ], [ -95.285110979052718, 29.693060186035883 ], [ -95.284772978273253, 29.692582186056516 ], [ -95.284556978225154, 29.692342185785119 ], [ -95.284128978418266, 29.69189418580541 ], [ -95.28362197801404, 29.691364185405927 ], [ -95.280264976635891, 29.687971185575552 ], [ -95.279097977066002, 29.686767184713347 ], [ -95.278233976467462, 29.685875184604015 ], [ -95.278118976626189, 29.685756185100288 ], [ -95.278021976088411, 29.685816185295177 ], [ -95.277995976675783, 29.685834184695956 ], [ -95.277901976065507, 29.685898185045172 ], [ -95.277654976596509, 29.686065185225896 ], [ -95.277494976812108, 29.68626618496539 ], [ -95.277516976765256, 29.687369184827197 ], [ -95.277569976351415, 29.689197185429336 ], [ -95.277612976555176, 29.690267185746269 ], [ -95.277640976585275, 29.691372186388421 ], [ -95.277647976184781, 29.692472185960902 ], [ -95.277686977226168, 29.693572186550696 ], [ -95.277721976674215, 29.694643186290453 ], [ -95.277735976362422, 29.695734187237218 ], [ -95.277765977323725, 29.695806186809545 ], [ -95.277777976930111, 29.696541187341747 ], [ -95.277794977136637, 29.697572187133005 ], [ -95.277800976831031, 29.697896187281305 ], [ -95.277813977431038, 29.698324187545985 ], [ -95.277841976551173, 29.699050187303996 ], [ -95.277853976812338, 29.699533187537241 ], [ -95.27787797670517, 29.700845187697158 ], [ -95.277901977355839, 29.70156418816865 ], [ -95.27791597759321, 29.702078188312502 ], [ -95.277905977578413, 29.702299188164311 ], [ -95.277887977189025, 29.702685188264873 ], [ -95.278090976878019, 29.702536188351047 ], [ -95.280200977468311, 29.700990188042802 ], [ -95.2803639774136, 29.700889187949734 ], [ -95.280781978197126, 29.700629188199606 ], [ -95.281418977838143, 29.700233187812056 ], [ -95.282375978207909, 29.699682187527984 ], [ -95.283002977952222, 29.699320187772379 ], [ -95.283812979029832, 29.698911187819391 ], [ -95.284006978497757, 29.698832187701392 ], [ -95.284384978969356, 29.698680187509353 ], [ -95.284469979123898, 29.698651187013866 ], [ -95.28483497845238, 29.698528187041312 ], [ -95.285289978744018, 29.698371187442021 ], [ -95.286140978784033, 29.698106187165688 ], [ -95.286285978805594, 29.698061187304138 ], [ -95.28763997903377, 29.697677187365429 ], [ -95.287678979892419, 29.697668187209057 ], [ -95.288510979450436, 29.697484187350788 ], [ -95.288600979871163, 29.697471186952498 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1084, "Tract": "48201210800", "Area_SqMi": 1.4152522155091387, "total_2009": 2333, "total_2010": 2229, "total_2011": 2389, "total_2012": 1910, "total_2013": 1647, "total_2014": 2199, "total_2015": 1768, "total_2016": 1242, "total_2017": 1181, "total_2018": 1304, "total_2019": 1420, "total_2020": 1534, "age1": 202, "age2": 821, "age3": 388, "earn1": 83, "earn2": 347, "earn3": 981, "naics_s01": 0, "naics_s02": 9, "naics_s03": 0, "naics_s04": 1, "naics_s05": 317, "naics_s06": 151, "naics_s07": 10, "naics_s08": 649, "naics_s09": 0, "naics_s10": 3, "naics_s11": 8, "naics_s12": 1, "naics_s13": 16, "naics_s14": 0, "naics_s15": 78, "naics_s16": 52, "naics_s17": 0, "naics_s18": 39, "naics_s19": 77, "naics_s20": 0, "race1": 965, "race2": 340, "race3": 18, "race4": 70, "race5": 3, "race6": 15, "ethnicity1": 903, "ethnicity2": 508, "edu1": 283, "edu2": 359, "edu3": 361, "edu4": 206, "Shape_Length": 33397.577345540609, "Shape_Area": 39454809.540019833, "total_2021": 1268, "total_2022": 1411 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.351679000245511, 29.784745202929376 ], [ -95.351598999565724, 29.784631202240405 ], [ -95.351528999965524, 29.784502202461461 ], [ -95.35146399985058, 29.784329202940938 ], [ -95.351433000061348, 29.783376202849926 ], [ -95.351417999502829, 29.782411202006621 ], [ -95.351406999312815, 29.781450202084393 ], [ -95.351387999882249, 29.780485201950167 ], [ -95.351379999696661, 29.780238201640007 ], [ -95.351370998995989, 29.779949201912977 ], [ -95.351358999231365, 29.778370201541335 ], [ -95.350953998784064, 29.778373201424326 ], [ -95.35054999886944, 29.778376201152458 ], [ -95.350139998805304, 29.778392201649215 ], [ -95.349924998991824, 29.778423201181123 ], [ -95.349719998989869, 29.778474201419726 ], [ -95.349640999038385, 29.778507201324715 ], [ -95.349549998906852, 29.778520201602703 ], [ -95.349438998588028, 29.778529201626693 ], [ -95.34902299837826, 29.778538201199172 ], [ -95.348951999248754, 29.778540201736305 ], [ -95.348867998358713, 29.778534201534349 ], [ -95.348657998242672, 29.778534201374736 ], [ -95.348084998092247, 29.778535201514568 ], [ -95.347534997968097, 29.778551201911146 ], [ -95.346768997993792, 29.778549201207944 ], [ -95.346664998668402, 29.778564202057783 ], [ -95.345774997771741, 29.778562201291461 ], [ -95.344981997388629, 29.778559201425495 ], [ -95.344907997619401, 29.778559201625214 ], [ -95.343924997971783, 29.778572201872141 ], [ -95.342879997161035, 29.778577201517006 ], [ -95.341844997470901, 29.778587201406648 ], [ -95.341334996752906, 29.778598201372311 ], [ -95.341123996858698, 29.778596201524806 ], [ -95.340978996508753, 29.778595201723803 ], [ -95.340626996198338, 29.778597201909371 ], [ -95.340420996157093, 29.778598201643486 ], [ -95.3403309970153, 29.778598202031731 ], [ -95.340227996622914, 29.778599202230797 ], [ -95.340221996833336, 29.778872202252906 ], [ -95.340169996208758, 29.779900201929134 ], [ -95.340163996712079, 29.780106202189227 ], [ -95.340157996826335, 29.780261202557384 ], [ -95.340042996815484, 29.783518202474394 ], [ -95.340040996398599, 29.783840202526104 ], [ -95.340040996417386, 29.784078202576879 ], [ -95.340045996716952, 29.784307203259072 ], [ -95.340077997071262, 29.785211203056512 ], [ -95.340015996547393, 29.787631203908422 ], [ -95.339983996730595, 29.78893120430374 ], [ -95.339928997344231, 29.790470204208962 ], [ -95.3399059974967, 29.790772203927492 ], [ -95.33989199716828, 29.791544204738184 ], [ -95.339918997325327, 29.792478204312314 ], [ -95.339928997189787, 29.792870204350749 ], [ -95.339941997321205, 29.79372720485236 ], [ -95.339944996746993, 29.793910204606846 ], [ -95.339944997564345, 29.794079205183561 ], [ -95.339963996899399, 29.797898205962415 ], [ -95.340053996978028, 29.799133205615924 ], [ -95.340118997411452, 29.800299205883469 ], [ -95.340125997317074, 29.801319206896693 ], [ -95.340114998046957, 29.801511206309158 ], [ -95.340093997439212, 29.801671206755838 ], [ -95.340082997757079, 29.801884206589694 ], [ -95.340068997649141, 29.802141206933939 ], [ -95.33996999744295, 29.802801206455328 ], [ -95.339815997304697, 29.803266206645532 ], [ -95.339631997232061, 29.803677207116486 ], [ -95.339571997049575, 29.803810207212813 ], [ -95.339327997107048, 29.804299207203869 ], [ -95.339006997301368, 29.804795207273923 ], [ -95.338224997364875, 29.805837207731329 ], [ -95.337991996805329, 29.806113207569528 ], [ -95.337832997195065, 29.80630120789279 ], [ -95.337160996829667, 29.80712320814099 ], [ -95.336906996810072, 29.807434208105992 ], [ -95.33647599658191, 29.807962208055173 ], [ -95.336378996538187, 29.808100208243406 ], [ -95.336260996365127, 29.808267208366473 ], [ -95.336490996561352, 29.808302207578571 ], [ -95.336607996561156, 29.808320207600531 ], [ -95.336867996536768, 29.808368208273841 ], [ -95.337265997482575, 29.808442207877199 ], [ -95.337791997760576, 29.808554208140883 ], [ -95.337905997627672, 29.808582207788678 ], [ -95.338919997293942, 29.808830207678792 ], [ -95.339234997172738, 29.808936207763654 ], [ -95.339386997828385, 29.808993208246438 ], [ -95.339557997733223, 29.809036208011737 ], [ -95.339822998026321, 29.809103207712432 ], [ -95.341587998329743, 29.8096562085851 ], [ -95.342344998523231, 29.809882207763749 ], [ -95.344028999072691, 29.810383208373871 ], [ -95.346367999982803, 29.811127207960375 ], [ -95.346833999471031, 29.811272207929608 ], [ -95.347355999807789, 29.811481208635207 ], [ -95.348871999956415, 29.811986208802949 ], [ -95.349053999866513, 29.812046208463769 ], [ -95.349326999972774, 29.812132208259523 ], [ -95.349902000740173, 29.812312208858906 ], [ -95.350300000988824, 29.812414208251035 ], [ -95.350254000865732, 29.812222208154719 ], [ -95.350215000393732, 29.812021208627343 ], [ -95.350170000337116, 29.811831208003866 ], [ -95.34978700090835, 29.810305207606806 ], [ -95.348722000155803, 29.806072207174925 ], [ -95.347913999853532, 29.8032802065031 ], [ -95.347863999833649, 29.803106206847268 ], [ -95.348487999774832, 29.803238206432823 ], [ -95.348933000215354, 29.803309206851811 ], [ -95.34950700012898, 29.803334206897194 ], [ -95.350272000613359, 29.803319206801458 ], [ -95.350512000178952, 29.803314206628251 ], [ -95.350478999855184, 29.802930206647812 ], [ -95.350471999976222, 29.80262820623987 ], [ -95.350457999792539, 29.802511206804375 ], [ -95.350444000603417, 29.801769206267821 ], [ -95.350418999859087, 29.800924205824881 ], [ -95.350393999669194, 29.800065205804128 ], [ -95.350378999679634, 29.799199205982443 ], [ -95.350341999747712, 29.798368205201296 ], [ -95.350315000372831, 29.797514204961757 ], [ -95.350289000211632, 29.79665320537832 ], [ -95.350274999688125, 29.795812204905666 ], [ -95.350263000073241, 29.795207204679752 ], [ -95.350267999335301, 29.794973204660099 ], [ -95.350249999471643, 29.794118204695483 ], [ -95.350239000240265, 29.793634204440583 ], [ -95.350216999927568, 29.793503204942777 ], [ -95.350203999909311, 29.793458204364651 ], [ -95.350185000227782, 29.793364204559808 ], [ -95.350170999814509, 29.793209204431662 ], [ -95.350175999496656, 29.79244620412225 ], [ -95.350179999992747, 29.792385204577659 ], [ -95.350165999379513, 29.791538203907006 ], [ -95.350154999483649, 29.790692203642415 ], [ -95.350133999236846, 29.789842203749707 ], [ -95.351103000084009, 29.789834203507716 ], [ -95.351092000012073, 29.788979203547662 ], [ -95.351079999704893, 29.788127203674186 ], [ -95.351050999412394, 29.787275202931536 ], [ -95.35102999994605, 29.786421202838984 ], [ -95.351010999606245, 29.785573202801384 ], [ -95.350974999754584, 29.785290203189259 ], [ -95.350924999349431, 29.785121202612682 ], [ -95.350859999066813, 29.78495820252849 ], [ -95.350757999746023, 29.78474120317345 ], [ -95.351094999879095, 29.784746202690272 ], [ -95.351679000245511, 29.784745202929376 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1085, "Tract": "48201231800", "Area_SqMi": 1.0898810571283797, "total_2009": 379, "total_2010": 383, "total_2011": 434, "total_2012": 452, "total_2013": 541, "total_2014": 519, "total_2015": 519, "total_2016": 562, "total_2017": 680, "total_2018": 585, "total_2019": 593, "total_2020": 630, "age1": 75, "age2": 362, "age3": 139, "earn1": 44, "earn2": 113, "earn3": 419, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 71, "naics_s05": 7, "naics_s06": 33, "naics_s07": 34, "naics_s08": 365, "naics_s09": 0, "naics_s10": 29, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 28, "naics_s17": 0, "naics_s18": 2, "naics_s19": 2, "naics_s20": 0, "race1": 271, "race2": 276, "race3": 7, "race4": 14, "race5": 1, "race6": 7, "ethnicity1": 421, "ethnicity2": 155, "edu1": 116, "edu2": 159, "edu3": 159, "edu4": 67, "Shape_Length": 25156.973465612107, "Shape_Area": 30384018.522667363, "total_2021": 466, "total_2022": 576 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.316516994530275, 29.866671220223207 ], [ -95.316202993876686, 29.866674220711744 ], [ -95.315962993754439, 29.866671221086676 ], [ -95.315438994543001, 29.866717220548562 ], [ -95.314876993611705, 29.866824220416987 ], [ -95.314543993411419, 29.866841220534415 ], [ -95.313216993809618, 29.866853220641641 ], [ -95.312685993671181, 29.866858220741086 ], [ -95.312108993457827, 29.866854221039645 ], [ -95.311731993104388, 29.866856220984879 ], [ -95.310709992752876, 29.866858220485547 ], [ -95.309697992285649, 29.866860221030041 ], [ -95.3087059927973, 29.86685122122066 ], [ -95.307761991717896, 29.866858221432345 ], [ -95.306827991595796, 29.866868220885078 ], [ -95.305879992190341, 29.866862221429017 ], [ -95.30498099130277, 29.866866221462022 ], [ -95.304113990885739, 29.866865220905591 ], [ -95.303259990770783, 29.866865221131203 ], [ -95.303015990798457, 29.866871221172495 ], [ -95.302392990709649, 29.866871221282217 ], [ -95.301868990582349, 29.866873221288969 ], [ -95.300568990820324, 29.866875221005845 ], [ -95.300608990552021, 29.871243221969699 ], [ -95.300610990890505, 29.871381222438199 ], [ -95.300614990332619, 29.873189222447269 ], [ -95.300614990503405, 29.873204222737879 ], [ -95.300598990241497, 29.875207222589907 ], [ -95.300592990658913, 29.875923223226589 ], [ -95.300616991036861, 29.877648223662209 ], [ -95.300608990519848, 29.879685223932796 ], [ -95.300634990807936, 29.881797224735028 ], [ -95.300671991567256, 29.883030224501457 ], [ -95.300686991580903, 29.88352022464019 ], [ -95.300754991231912, 29.884357224900508 ], [ -95.300769991463909, 29.885189225160588 ], [ -95.300785991741407, 29.885737225159033 ], [ -95.300789991669163, 29.886195225015168 ], [ -95.300860991652996, 29.887184225670541 ], [ -95.300884991091834, 29.889206226144875 ], [ -95.300937991354388, 29.89119222659135 ], [ -95.302133992041462, 29.891171226318178 ], [ -95.302824991764979, 29.891182226484897 ], [ -95.304576992503684, 29.891169226364774 ], [ -95.306210992783392, 29.891143226111492 ], [ -95.306354992994159, 29.891192226157873 ], [ -95.30659699245453, 29.891190226235256 ], [ -95.307833993500807, 29.88832222519585 ], [ -95.308130992814881, 29.887514225652293 ], [ -95.308314993484345, 29.886987225231685 ], [ -95.309055993464341, 29.885079225054827 ], [ -95.311233993820537, 29.879609223870013 ], [ -95.311658993198932, 29.878605223673759 ], [ -95.311994994206032, 29.877798222893443 ], [ -95.312291993668737, 29.877062222914457 ], [ -95.312657993535638, 29.876177222972235 ], [ -95.312947993597902, 29.875479222832361 ], [ -95.313193994056547, 29.874892222036117 ], [ -95.31401599352786, 29.872774222396764 ], [ -95.315044994084857, 29.870318221540256 ], [ -95.315143993786577, 29.870072221210535 ], [ -95.316516994530275, 29.866671220223207 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1086, "Tract": "48201231900", "Area_SqMi": 3.490884906046769, "total_2009": 539, "total_2010": 523, "total_2011": 574, "total_2012": 792, "total_2013": 952, "total_2014": 766, "total_2015": 1048, "total_2016": 542, "total_2017": 524, "total_2018": 561, "total_2019": 614, "total_2020": 459, "age1": 87, "age2": 293, "age3": 96, "earn1": 60, "earn2": 126, "earn3": 290, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 223, "naics_s06": 15, "naics_s07": 64, "naics_s08": 28, "naics_s09": 0, "naics_s10": 12, "naics_s11": 56, "naics_s12": 2, "naics_s13": 0, "naics_s14": 29, "naics_s15": 0, "naics_s16": 3, "naics_s17": 33, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 353, "race2": 82, "race3": 6, "race4": 32, "race5": 0, "race6": 3, "ethnicity1": 290, "ethnicity2": 186, "edu1": 92, "edu2": 120, "edu3": 119, "edu4": 58, "Shape_Length": 44030.156264123776, "Shape_Area": 97319896.471355096, "total_2021": 366, "total_2022": 476 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.300937991354388, 29.89119222659135 ], [ -95.300884991091834, 29.889206226144875 ], [ -95.300860991652996, 29.887184225670541 ], [ -95.300789991669163, 29.886195225015168 ], [ -95.300785991741407, 29.885737225159033 ], [ -95.300769991463909, 29.885189225160588 ], [ -95.300754991231912, 29.884357224900508 ], [ -95.300686991580903, 29.88352022464019 ], [ -95.300671991567256, 29.883030224501457 ], [ -95.300634990807936, 29.881797224735028 ], [ -95.300608990519848, 29.879685223932796 ], [ -95.300616991036861, 29.877648223662209 ], [ -95.300592990658913, 29.875923223226589 ], [ -95.300598990241497, 29.875207222589907 ], [ -95.300614990503405, 29.873204222737879 ], [ -95.300614990332619, 29.873189222447269 ], [ -95.300610990890505, 29.871381222438199 ], [ -95.300437990552041, 29.871385222453412 ], [ -95.297397990087546, 29.871443222389129 ], [ -95.296263989688626, 29.871464222485862 ], [ -95.292850988587944, 29.871527222427403 ], [ -95.292399988953164, 29.871532222609378 ], [ -95.291974988348187, 29.871538222478417 ], [ -95.288298987483515, 29.871597222519135 ], [ -95.28786598744955, 29.871607222409228 ], [ -95.28453698687332, 29.871710222895683 ], [ -95.284209986116394, 29.871715222460956 ], [ -95.281515985593543, 29.871760222522742 ], [ -95.281302985428951, 29.87176222255097 ], [ -95.274519983758466, 29.871832223251815 ], [ -95.273042983949011, 29.871847223630475 ], [ -95.26981898307983, 29.871921223393972 ], [ -95.269531982291198, 29.871928222935875 ], [ -95.26833198225755, 29.871951223767514 ], [ -95.265418981234234, 29.874729223759186 ], [ -95.265332981486438, 29.874811223858579 ], [ -95.262767980896413, 29.877249224645738 ], [ -95.26207998059509, 29.877898225022985 ], [ -95.259926980453415, 29.880022224943161 ], [ -95.257291980156012, 29.882547225731585 ], [ -95.256988979491567, 29.882844225588663 ], [ -95.256526980114529, 29.883291226347581 ], [ -95.254922979060467, 29.884847226373655 ], [ -95.254058979061654, 29.885680226898561 ], [ -95.251929979104418, 29.887820227061443 ], [ -95.251357978542785, 29.888370227225948 ], [ -95.251318979072707, 29.888411227726085 ], [ -95.247780977433109, 29.891866228170326 ], [ -95.247855977520189, 29.891869228264188 ], [ -95.247936977435074, 29.891867228369126 ], [ -95.247987977839784, 29.891860228243072 ], [ -95.248167977928418, 29.891854228512987 ], [ -95.248818978300932, 29.891843228081598 ], [ -95.248885978426102, 29.891836228123349 ], [ -95.248966977725701, 29.891835227738351 ], [ -95.249011977798915, 29.891843227775649 ], [ -95.249103978167426, 29.891839228418295 ], [ -95.249207977862554, 29.891842227881952 ], [ -95.249275978358483, 29.891854227806988 ], [ -95.250112978505683, 29.891876227916942 ], [ -95.250339978326508, 29.891881227997942 ], [ -95.25192397886326, 29.891864227604927 ], [ -95.252509979381699, 29.891849228005849 ], [ -95.253427979213384, 29.891841227699924 ], [ -95.25353697927018, 29.891834228378581 ], [ -95.255043979298918, 29.891817228226312 ], [ -95.255953979823872, 29.89181522745946 ], [ -95.256536979841258, 29.891800227670888 ], [ -95.257268980440159, 29.891799228046608 ], [ -95.257442980289568, 29.891789227565358 ], [ -95.258121980900157, 29.891775227886832 ], [ -95.259024980338481, 29.891760227618029 ], [ -95.25942598111348, 29.891760227481264 ], [ -95.25999598077378, 29.891757227490515 ], [ -95.26065898147867, 29.891748227364598 ], [ -95.260974981449607, 29.891742227626658 ], [ -95.261574981849861, 29.891725228129165 ], [ -95.261918981056169, 29.891727227573721 ], [ -95.263853982108714, 29.891710227469879 ], [ -95.265623981991283, 29.891685227566708 ], [ -95.266242983108299, 29.89168722788904 ], [ -95.267582982571184, 29.891666227626562 ], [ -95.268491983684768, 29.891659227116641 ], [ -95.269858983801157, 29.891649227298306 ], [ -95.272265984212211, 29.891611227124542 ], [ -95.272758984537859, 29.891595227054246 ], [ -95.27542998520326, 29.89157622748515 ], [ -95.277762985423152, 29.891537227265289 ], [ -95.278548986185342, 29.891531227070011 ], [ -95.280264986109358, 29.891513227223186 ], [ -95.287802987672976, 29.891424226596296 ], [ -95.290162988945653, 29.891400226694344 ], [ -95.290511988489669, 29.891401226904875 ], [ -95.290640988820172, 29.891394226951775 ], [ -95.291630989309667, 29.891378226429453 ], [ -95.292269989119774, 29.891372226945276 ], [ -95.292504989413885, 29.891356226791018 ], [ -95.29279298988456, 29.891361226702443 ], [ -95.292838989322746, 29.891368226797002 ], [ -95.292902989507596, 29.891353226592908 ], [ -95.29296898980779, 29.891363226340808 ], [ -95.293030989863055, 29.891354226690201 ], [ -95.293296989899417, 29.891350226645237 ], [ -95.294018989444197, 29.891348226858245 ], [ -95.294517989614491, 29.891339226105561 ], [ -95.294785990011903, 29.891342226047687 ], [ -95.294889990340508, 29.891335226668218 ], [ -95.295930989996975, 29.891320226381012 ], [ -95.296549990651442, 29.891311226292373 ], [ -95.297233990778977, 29.891303226460916 ], [ -95.298718991360033, 29.891287226063444 ], [ -95.29912599115039, 29.891228226132572 ], [ -95.300937991354388, 29.89119222659135 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1087, "Tract": "48201232000", "Area_SqMi": 6.3556516991182939, "total_2009": 2016, "total_2010": 499, "total_2011": 507, "total_2012": 1489, "total_2013": 1428, "total_2014": 1665, "total_2015": 1040, "total_2016": 1394, "total_2017": 1094, "total_2018": 1657, "total_2019": 1023, "total_2020": 613, "age1": 93, "age2": 290, "age3": 162, "earn1": 46, "earn2": 111, "earn3": 388, "naics_s01": 0, "naics_s02": 91, "naics_s03": 0, "naics_s04": 180, "naics_s05": 115, "naics_s06": 36, "naics_s07": 23, "naics_s08": 23, "naics_s09": 0, "naics_s10": 2, "naics_s11": 47, "naics_s12": 7, "naics_s13": 0, "naics_s14": 8, "naics_s15": 12, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 450, "race2": 55, "race3": 8, "race4": 26, "race5": 0, "race6": 6, "ethnicity1": 287, "ethnicity2": 258, "edu1": 131, "edu2": 138, "edu3": 108, "edu4": 75, "Shape_Length": 60514.561152655901, "Shape_Area": 177184691.56482059, "total_2021": 534, "total_2022": 545 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30659699245453, 29.891190226235256 ], [ -95.306354992994159, 29.891192226157873 ], [ -95.306210992783392, 29.891143226111492 ], [ -95.304576992503684, 29.891169226364774 ], [ -95.302824991764979, 29.891182226484897 ], [ -95.302133992041462, 29.891171226318178 ], [ -95.300937991354388, 29.89119222659135 ], [ -95.29912599115039, 29.891228226132572 ], [ -95.298718991360033, 29.891287226063444 ], [ -95.297233990778977, 29.891303226460916 ], [ -95.296549990651442, 29.891311226292373 ], [ -95.295930989996975, 29.891320226381012 ], [ -95.294889990340508, 29.891335226668218 ], [ -95.294785990011903, 29.891342226047687 ], [ -95.294517989614491, 29.891339226105561 ], [ -95.294018989444197, 29.891348226858245 ], [ -95.293296989899417, 29.891350226645237 ], [ -95.293030989863055, 29.891354226690201 ], [ -95.29296898980779, 29.891363226340808 ], [ -95.292902989507596, 29.891353226592908 ], [ -95.292838989322746, 29.891368226797002 ], [ -95.29279298988456, 29.891361226702443 ], [ -95.292504989413885, 29.891356226791018 ], [ -95.292269989119774, 29.891372226945276 ], [ -95.291630989309667, 29.891378226429453 ], [ -95.290640988820172, 29.891394226951775 ], [ -95.290511988489669, 29.891401226904875 ], [ -95.290162988945653, 29.891400226694344 ], [ -95.287802987672976, 29.891424226596296 ], [ -95.280264986109358, 29.891513227223186 ], [ -95.278548986185342, 29.891531227070011 ], [ -95.277762985423152, 29.891537227265289 ], [ -95.27542998520326, 29.89157622748515 ], [ -95.272758984537859, 29.891595227054246 ], [ -95.272265984212211, 29.891611227124542 ], [ -95.269858983801157, 29.891649227298306 ], [ -95.268491983684768, 29.891659227116641 ], [ -95.267582982571184, 29.891666227626562 ], [ -95.266242983108299, 29.89168722788904 ], [ -95.265623981991283, 29.891685227566708 ], [ -95.263853982108714, 29.891710227469879 ], [ -95.261918981056169, 29.891727227573721 ], [ -95.261574981849861, 29.891725228129165 ], [ -95.260974981449607, 29.891742227626658 ], [ -95.26065898147867, 29.891748227364598 ], [ -95.25999598077378, 29.891757227490515 ], [ -95.25942598111348, 29.891760227481264 ], [ -95.259024980338481, 29.891760227618029 ], [ -95.258121980900157, 29.891775227886832 ], [ -95.257442980289568, 29.891789227565358 ], [ -95.257268980440159, 29.891799228046608 ], [ -95.256536979841258, 29.891800227670888 ], [ -95.255953979823872, 29.89181522745946 ], [ -95.255043979298918, 29.891817228226312 ], [ -95.25353697927018, 29.891834228378581 ], [ -95.253427979213384, 29.891841227699924 ], [ -95.252509979381699, 29.891849228005849 ], [ -95.25192397886326, 29.891864227604927 ], [ -95.250339978326508, 29.891881227997942 ], [ -95.250112978505683, 29.891876227916942 ], [ -95.249275978358483, 29.891854227806988 ], [ -95.249207977862554, 29.891842227881952 ], [ -95.249103978167426, 29.891839228418295 ], [ -95.249011977798915, 29.891843227775649 ], [ -95.248966977725701, 29.891835227738351 ], [ -95.248885978426102, 29.891836228123349 ], [ -95.248818978300932, 29.891843228081598 ], [ -95.248167977928418, 29.891854228512987 ], [ -95.247987977839784, 29.891860228243072 ], [ -95.247936977435074, 29.891867228369126 ], [ -95.247855977520189, 29.891869228264188 ], [ -95.247780977433109, 29.891866228170326 ], [ -95.245394977411848, 29.894096229109461 ], [ -95.243870977367237, 29.895576228979841 ], [ -95.242301976339135, 29.897087229145999 ], [ -95.240801976666219, 29.898539229580347 ], [ -95.240691976013281, 29.898645229725457 ], [ -95.240772976606678, 29.898699229651143 ], [ -95.24097897614898, 29.898924229931925 ], [ -95.241074976736655, 29.899121229557707 ], [ -95.241050976488808, 29.899730230029004 ], [ -95.241022976752078, 29.899965230334306 ], [ -95.240742976785285, 29.902337230917102 ], [ -95.240532976108284, 29.902882230452743 ], [ -95.240280976127281, 29.903293231102552 ], [ -95.237183976207206, 29.906020231084309 ], [ -95.237111975541183, 29.906084231671414 ], [ -95.236947976057948, 29.906289231103333 ], [ -95.23688597567471, 29.906498231712959 ], [ -95.236897975994921, 29.907036231588986 ], [ -95.236967975615343, 29.907156231638808 ], [ -95.237028975852297, 29.907261231645897 ], [ -95.237307976210332, 29.907525231355006 ], [ -95.238180976523338, 29.908065231545727 ], [ -95.238532976143048, 29.908462231578735 ], [ -95.239632976660374, 29.910546232268803 ], [ -95.239803976267254, 29.910791232589684 ], [ -95.24023397719246, 29.911129232673854 ], [ -95.241323976686715, 29.911774232778825 ], [ -95.24184097698641, 29.912130232146531 ], [ -95.242665977776909, 29.912926232391243 ], [ -95.243191977567264, 29.91369823302194 ], [ -95.243453978113763, 29.91426323297943 ], [ -95.24371497781739, 29.915497232947274 ], [ -95.24406697820298, 29.919873234308522 ], [ -95.244241977793394, 29.920464234280733 ], [ -95.244574978437882, 29.921080234656614 ], [ -95.244691978008035, 29.921198234701642 ], [ -95.245336978214013, 29.921804234224492 ], [ -95.245764978606957, 29.922082234123216 ], [ -95.246316978923772, 29.922325234178011 ], [ -95.249251980035496, 29.922904234581999 ], [ -95.250526979582503, 29.922967234668675 ], [ -95.251011980395873, 29.922885234855094 ], [ -95.251394980100315, 29.92275623398168 ], [ -95.252612980878268, 29.922028233774675 ], [ -95.253199980595312, 29.92158523379765 ], [ -95.254271980838851, 29.920892234057067 ], [ -95.254815980853138, 29.920542234037384 ], [ -95.257711981787708, 29.918492233186775 ], [ -95.258319982098513, 29.918062232897267 ], [ -95.25933298185609, 29.917442233361815 ], [ -95.26008698176831, 29.917209233366926 ], [ -95.260149982718502, 29.917190232566909 ], [ -95.261764983119122, 29.916912233197205 ], [ -95.262755982965771, 29.916678233022211 ], [ -95.264022982989047, 29.916091232180207 ], [ -95.264162983306662, 29.916011232694665 ], [ -95.265189983968753, 29.915422232016692 ], [ -95.265805983613191, 29.915372232733798 ], [ -95.26649998388973, 29.915450232605892 ], [ -95.268327984355267, 29.915825231989874 ], [ -95.268913983966655, 29.91594523209352 ], [ -95.272389984888804, 29.916754232597491 ], [ -95.272546985313085, 29.916741232654736 ], [ -95.272919985335236, 29.916709232532881 ], [ -95.27373098558914, 29.916351232073239 ], [ -95.274135985839024, 29.916279232633094 ], [ -95.276678986368808, 29.916222232370313 ], [ -95.277635986390976, 29.916200231707023 ], [ -95.277822987004711, 29.916191232337539 ], [ -95.278010987239043, 29.91618323167868 ], [ -95.278654987067625, 29.916153232364387 ], [ -95.279928986858096, 29.916220232204161 ], [ -95.280501987538059, 29.916185232103668 ], [ -95.280781987692947, 29.916125232281747 ], [ -95.281032987923084, 29.916001232264112 ], [ -95.281687988125086, 29.915507231493965 ], [ -95.282170988162818, 29.915236231794811 ], [ -95.285433988167412, 29.91430023127862 ], [ -95.285790988688603, 29.914062231528195 ], [ -95.286232988315305, 29.913587231492162 ], [ -95.286386989286143, 29.913421230838534 ], [ -95.286663988756899, 29.913350231115146 ], [ -95.287200988987095, 29.913344231427853 ], [ -95.287257988559816, 29.913355231071819 ], [ -95.287372988813374, 29.913376230772052 ], [ -95.287443989227896, 29.913389231592674 ], [ -95.287974989442702, 29.913662230840714 ], [ -95.288618988903323, 29.913901230818325 ], [ -95.291394990376034, 29.914459230908708 ], [ -95.291533990481113, 29.914495231392436 ], [ -95.291591990385697, 29.914510231141545 ], [ -95.292183989840865, 29.914667231114606 ], [ -95.29291299012759, 29.915071231731364 ], [ -95.293298990161432, 29.915395231518783 ], [ -95.293449990471657, 29.915563231645557 ], [ -95.29487599149887, 29.917144232128972 ], [ -95.295299991774328, 29.918154232204987 ], [ -95.295515991715178, 29.918523232253403 ], [ -95.295607990878111, 29.918641232043981 ], [ -95.295659991226174, 29.918479231563488 ], [ -95.295741991503093, 29.918202232196297 ], [ -95.29721199171702, 29.914434231178639 ], [ -95.297797991949778, 29.913021231011925 ], [ -95.298214992270104, 29.911882230168811 ], [ -95.29856799140525, 29.910919229915507 ], [ -95.298776991681294, 29.910412230260466 ], [ -95.299129991914157, 29.90957623021837 ], [ -95.299579991831095, 29.908472229354441 ], [ -95.300394992531125, 29.906538229029277 ], [ -95.301095991692335, 29.904921228855759 ], [ -95.301400991796541, 29.904080229115053 ], [ -95.30170799239491, 29.903466228266634 ], [ -95.301860992168983, 29.903084228887113 ], [ -95.302461992446524, 29.901596228554261 ], [ -95.30329699240103, 29.899321227652784 ], [ -95.305215992934137, 29.894622227105092 ], [ -95.30659699245453, 29.891190226235256 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1088, "Tract": "48201232100", "Area_SqMi": 1.2483200134834975, "total_2009": 456, "total_2010": 350, "total_2011": 456, "total_2012": 475, "total_2013": 1111, "total_2014": 1107, "total_2015": 1313, "total_2016": 1213, "total_2017": 1250, "total_2018": 1462, "total_2019": 1342, "total_2020": 1356, "age1": 180, "age2": 829, "age3": 314, "earn1": 91, "earn2": 192, "earn3": 1040, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 173, "naics_s05": 132, "naics_s06": 23, "naics_s07": 237, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 10, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 58, "naics_s17": 0, "naics_s18": 4, "naics_s19": 17, "naics_s20": 659, "race1": 837, "race2": 306, "race3": 21, "race4": 81, "race5": 5, "race6": 73, "ethnicity1": 815, "ethnicity2": 508, "edu1": 162, "edu2": 269, "edu3": 280, "edu4": 432, "Shape_Length": 28769.708098803509, "Shape_Area": 34801025.454864129, "total_2021": 1391, "total_2022": 1323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.318252996284926, 29.890962225363658 ], [ -95.318062995710321, 29.890970225281976 ], [ -95.317848995619102, 29.89097922535775 ], [ -95.317701995496691, 29.890983225481804 ], [ -95.317477995973007, 29.890974225320896 ], [ -95.316969995229854, 29.890979225320411 ], [ -95.316053995307229, 29.891031225845026 ], [ -95.315516995433242, 29.891062225430296 ], [ -95.315466994736397, 29.891061226043416 ], [ -95.313999995297905, 29.891079225784591 ], [ -95.313237995007682, 29.891087225742865 ], [ -95.312687994207806, 29.891103225829802 ], [ -95.311457994362769, 29.891121226263987 ], [ -95.311275993952833, 29.891130225443433 ], [ -95.311084993933122, 29.891124225913192 ], [ -95.31072899392916, 29.891136225592565 ], [ -95.309719994092731, 29.891150225833158 ], [ -95.30918599314046, 29.891157226230849 ], [ -95.307286993217843, 29.891183225893393 ], [ -95.306782993275093, 29.891188226180059 ], [ -95.30659699245453, 29.891190226235256 ], [ -95.305215992934137, 29.894622227105092 ], [ -95.30329699240103, 29.899321227652784 ], [ -95.302461992446524, 29.901596228554261 ], [ -95.301860992168983, 29.903084228887113 ], [ -95.30170799239491, 29.903466228266634 ], [ -95.301400991796541, 29.904080229115053 ], [ -95.301095991692335, 29.904921228855759 ], [ -95.300394992531125, 29.906538229029277 ], [ -95.299579991831095, 29.908472229354441 ], [ -95.299129991914157, 29.90957623021837 ], [ -95.298776991681294, 29.910412230260466 ], [ -95.29856799140525, 29.910919229915507 ], [ -95.298214992270104, 29.911882230168811 ], [ -95.297797991949778, 29.913021231011925 ], [ -95.29721199171702, 29.914434231178639 ], [ -95.295741991503093, 29.918202232196297 ], [ -95.295659991226174, 29.918479231563488 ], [ -95.295607990878111, 29.918641232043981 ], [ -95.295701991930883, 29.918761232206464 ], [ -95.295968991325807, 29.918931232005669 ], [ -95.297873992001243, 29.919523232303042 ], [ -95.29847099202496, 29.919661232274642 ], [ -95.299365992288429, 29.919691231919966 ], [ -95.299543992859739, 29.919697232096791 ], [ -95.299829992857894, 29.919666231723845 ], [ -95.300110992930442, 29.919603232441467 ], [ -95.300695992957799, 29.919210231696578 ], [ -95.300994993201442, 29.919121231579282 ], [ -95.301776993199397, 29.919122232023298 ], [ -95.302269993058701, 29.919122232254171 ], [ -95.302723993164051, 29.919089231753183 ], [ -95.302852992762524, 29.919062232027422 ], [ -95.303098993681289, 29.919012231665604 ], [ -95.305298994081625, 29.91851423204103 ], [ -95.305909993966949, 29.918428231689294 ], [ -95.306210993783282, 29.918430231322386 ], [ -95.306303993690946, 29.918431231151665 ], [ -95.306538994239972, 29.918433231505535 ], [ -95.306622993912924, 29.918433231525725 ], [ -95.306706994618878, 29.918434231645008 ], [ -95.306896994061773, 29.91843523126963 ], [ -95.307038994710368, 29.918436231329917 ], [ -95.307128993816647, 29.918437231960535 ], [ -95.307214994471778, 29.918310231323012 ], [ -95.307832994517668, 29.917358231578064 ], [ -95.308089994695138, 29.916852231223103 ], [ -95.308308994209483, 29.916391231351067 ], [ -95.308405994402236, 29.916148231164915 ], [ -95.308527994679366, 29.915870230941984 ], [ -95.308684994685137, 29.915373231071822 ], [ -95.309400994600566, 29.912185230114609 ], [ -95.309477994763014, 29.911851229988226 ], [ -95.309513994308929, 29.911712230517697 ], [ -95.309695994201107, 29.911008230033808 ], [ -95.309748994437001, 29.910803230294032 ], [ -95.309797994325507, 29.910604229589243 ], [ -95.310318994590119, 29.908351229046769 ], [ -95.310810994422454, 29.906268228599274 ], [ -95.311237994662136, 29.904459228128758 ], [ -95.311675994353081, 29.902950228489409 ], [ -95.311723994342145, 29.902815228181893 ], [ -95.311750995217096, 29.902760228595223 ], [ -95.311831994624768, 29.902556228371285 ], [ -95.312246995269973, 29.901640227562631 ], [ -95.31271699462836, 29.900676227726919 ], [ -95.312893994782542, 29.900293227966152 ], [ -95.313061995250706, 29.899977227518431 ], [ -95.31339699545758, 29.899316227280799 ], [ -95.313867995626737, 29.898467227565263 ], [ -95.314479995655375, 29.897419227479144 ], [ -95.314908995635847, 29.896653226527526 ], [ -95.316721995562801, 29.89353222595312 ], [ -95.316762995462867, 29.893463226008823 ], [ -95.317105995392595, 29.892907225634168 ], [ -95.317521995768459, 29.892186225407535 ], [ -95.318045996393479, 29.891295225855295 ], [ -95.318252996284926, 29.890962225363658 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1089, "Tract": "48201230400", "Area_SqMi": 1.1086700696776968, "total_2009": 170, "total_2010": 186, "total_2011": 224, "total_2012": 234, "total_2013": 226, "total_2014": 160, "total_2015": 183, "total_2016": 151, "total_2017": 145, "total_2018": 119, "total_2019": 121, "total_2020": 122, "age1": 13, "age2": 72, "age3": 52, "earn1": 22, "earn2": 48, "earn3": 67, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 66, "naics_s06": 0, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 35, "naics_s17": 0, "naics_s18": 0, "naics_s19": 11, "naics_s20": 0, "race1": 87, "race2": 38, "race3": 1, "race4": 7, "race5": 0, "race6": 4, "ethnicity1": 97, "ethnicity2": 40, "edu1": 28, "edu2": 36, "edu3": 42, "edu4": 18, "Shape_Length": 24485.905012564253, "Shape_Area": 30907824.034825962, "total_2021": 137, "total_2022": 137 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.335506997471839, 29.82008621050559 ], [ -95.335500997187367, 29.819896210063789 ], [ -95.335301996732738, 29.819896210320454 ], [ -95.335049996772668, 29.819896210315708 ], [ -95.33478799706306, 29.819896210882956 ], [ -95.329773996153236, 29.819999211015503 ], [ -95.328746995692669, 29.820034210294271 ], [ -95.327329995437054, 29.820128210930989 ], [ -95.325838995158875, 29.820381210829996 ], [ -95.323784993940279, 29.820844211057238 ], [ -95.322108994156778, 29.821600211251461 ], [ -95.321692993905415, 29.821788211720559 ], [ -95.320588993426227, 29.822326211535753 ], [ -95.318576993399688, 29.823322211500589 ], [ -95.318575992502275, 29.823479212064029 ], [ -95.318573993118449, 29.823761212053178 ], [ -95.318576992940805, 29.824053211768167 ], [ -95.318626992620537, 29.826248212692612 ], [ -95.318671993029398, 29.827078212371152 ], [ -95.318712992765768, 29.8274882128872 ], [ -95.318782992955164, 29.827852212861128 ], [ -95.318809993363672, 29.82814921290575 ], [ -95.318818993763927, 29.828555212416756 ], [ -95.318820993792784, 29.829114212955428 ], [ -95.31885799355085, 29.83100321351505 ], [ -95.31886699352853, 29.834174213741868 ], [ -95.31888599327047, 29.834922213895855 ], [ -95.318877993355784, 29.835674214361848 ], [ -95.318879993190535, 29.836422214172281 ], [ -95.31889799369327, 29.837089214288966 ], [ -95.318905993247142, 29.837784214600056 ], [ -95.318927993631107, 29.838913215273468 ], [ -95.318948994251059, 29.840537215481657 ], [ -95.31899399354225, 29.841781215846886 ], [ -95.319011993499075, 29.842798215531467 ], [ -95.319037993553849, 29.843808215928444 ], [ -95.321583995137374, 29.843781215592113 ], [ -95.324453995309426, 29.843728215701482 ], [ -95.324738995470142, 29.843728215875316 ], [ -95.32508599596693, 29.843767215766015 ], [ -95.325515995579394, 29.843879215554779 ], [ -95.325702996114416, 29.843927215272249 ], [ -95.325893995779637, 29.843462215458931 ], [ -95.327146995456559, 29.840417214504871 ], [ -95.328356995733728, 29.837369213917686 ], [ -95.329659996423516, 29.834151213341094 ], [ -95.33069199655246, 29.831543213002721 ], [ -95.331641996849427, 29.829237212374267 ], [ -95.332497996846811, 29.827142212318829 ], [ -95.334316997100714, 29.822713211222631 ], [ -95.334546996673808, 29.822083210492444 ], [ -95.334815997442377, 29.821566210606164 ], [ -95.33504099737435, 29.821134210457743 ], [ -95.335307997532652, 29.820534210450116 ], [ -95.335506997471839, 29.82008621050559 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1090, "Tract": "48201511400", "Area_SqMi": 0.44243121319829992, "total_2009": 435, "total_2010": 445, "total_2011": 596, "total_2012": 859, "total_2013": 1183, "total_2014": 852, "total_2015": 491, "total_2016": 570, "total_2017": 602, "total_2018": 646, "total_2019": 727, "total_2020": 925, "age1": 158, "age2": 379, "age3": 173, "earn1": 160, "earn2": 273, "earn3": 277, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 68, "naics_s06": 13, "naics_s07": 85, "naics_s08": 5, "naics_s09": 6, "naics_s10": 19, "naics_s11": 22, "naics_s12": 45, "naics_s13": 1, "naics_s14": 15, "naics_s15": 0, "naics_s16": 8, "naics_s17": 35, "naics_s18": 327, "naics_s19": 48, "naics_s20": 0, "race1": 573, "race2": 72, "race3": 2, "race4": 51, "race5": 2, "race6": 10, "ethnicity1": 449, "ethnicity2": 261, "edu1": 140, "edu2": 149, "edu3": 132, "edu4": 131, "Shape_Length": 17781.049827365103, "Shape_Area": 12334224.995379359, "total_2021": 1135, "total_2022": 710 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.388054010080879, 29.803102205523725 ], [ -95.388055009664541, 29.802563205305834 ], [ -95.388044009651537, 29.802144205104153 ], [ -95.388030009788196, 29.801869205236546 ], [ -95.388007009758141, 29.801184205077735 ], [ -95.388008009280057, 29.800708205125552 ], [ -95.38800600929676, 29.800498204371465 ], [ -95.388002009495438, 29.800002204955501 ], [ -95.38799900922416, 29.799812204342842 ], [ -95.387985009485945, 29.799247204733522 ], [ -95.38798300962344, 29.79912520435056 ], [ -95.387978009546615, 29.798482204321594 ], [ -95.387960009746479, 29.79782620410591 ], [ -95.387943009823843, 29.797069204006938 ], [ -95.387930009291807, 29.796377204120681 ], [ -95.387924009657326, 29.795678204013463 ], [ -95.387921009108894, 29.795455203952017 ], [ -95.387915009411159, 29.794990203874239 ], [ -95.387904009931688, 29.794535203089481 ], [ -95.387900008983877, 29.794302203477912 ], [ -95.387892009055406, 29.793595202974966 ], [ -95.387886009703934, 29.793468203125606 ], [ -95.387879009292917, 29.792925202764074 ], [ -95.387875008933946, 29.792668203294753 ], [ -95.387865009447225, 29.792231202782126 ], [ -95.387859009809446, 29.791750202711626 ], [ -95.387855009120983, 29.791552202423816 ], [ -95.387834009502711, 29.790833203159181 ], [ -95.387365009442462, 29.790840202294255 ], [ -95.386924009362232, 29.790847202644635 ], [ -95.386028009079382, 29.790866203148752 ], [ -95.385224008480762, 29.790896202569975 ], [ -95.384268008176392, 29.790922202592192 ], [ -95.384339008339026, 29.79053320315127 ], [ -95.382116008010939, 29.790548202421142 ], [ -95.381734007600571, 29.790551202465931 ], [ -95.380950007515906, 29.7905622025147 ], [ -95.380800007655509, 29.790567203292944 ], [ -95.380172007792822, 29.790581203211456 ], [ -95.37937600744246, 29.790577202719575 ], [ -95.378560007149574, 29.790583202874064 ], [ -95.377718006925761, 29.79059820260089 ], [ -95.377013006215719, 29.79059720331777 ], [ -95.37419600555458, 29.790632202709947 ], [ -95.372756005449645, 29.790642202740816 ], [ -95.373202005705679, 29.790984202869801 ], [ -95.373649006026611, 29.791319203072764 ], [ -95.374208005458698, 29.791714203478524 ], [ -95.37438300550231, 29.791862203362275 ], [ -95.374838006041045, 29.792199203868947 ], [ -95.375427006673974, 29.792640203552846 ], [ -95.376061006328271, 29.793124203750281 ], [ -95.376095005926658, 29.793149203137805 ], [ -95.376277006155021, 29.79330820342841 ], [ -95.376973006162231, 29.793782203787931 ], [ -95.377055006928472, 29.793842203719361 ], [ -95.377237006248535, 29.793972203848153 ], [ -95.377440007225516, 29.794117203865575 ], [ -95.377976006459861, 29.794506204058127 ], [ -95.378664007479458, 29.795010204313336 ], [ -95.378795007241408, 29.79510020423141 ], [ -95.380093007567055, 29.796065204260035 ], [ -95.380710007281692, 29.796534204337586 ], [ -95.38083600745648, 29.796629204134749 ], [ -95.381492008384086, 29.797120203966607 ], [ -95.381826008046673, 29.797362203806248 ], [ -95.381841007901485, 29.79778820463078 ], [ -95.381849007893848, 29.798473204471751 ], [ -95.381855008303177, 29.799148204763505 ], [ -95.381857008420795, 29.799290204633657 ], [ -95.381861008236129, 29.799839204438349 ], [ -95.381868007990576, 29.800530204780127 ], [ -95.381881008289099, 29.801229204674058 ], [ -95.381888007953449, 29.801601205388469 ], [ -95.38189700863748, 29.802000205158219 ], [ -95.381899008337825, 29.802084204939607 ], [ -95.381906008698849, 29.80243320508167 ], [ -95.381910008810209, 29.802662205002534 ], [ -95.381914008537052, 29.803100205069782 ], [ -95.384371008539119, 29.803089205277711 ], [ -95.384406008958592, 29.803145205640202 ], [ -95.384445009127958, 29.803203204924483 ], [ -95.386159009835794, 29.803192204922578 ], [ -95.387453009658472, 29.803201205329717 ], [ -95.388042010161826, 29.804081205205101 ], [ -95.388054010080879, 29.803102205523725 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1091, "Tract": "48201211301", "Area_SqMi": 0.44427442129467276, "total_2009": 19, "total_2010": 19, "total_2011": 22, "total_2012": 29, "total_2013": 22, "total_2014": 28, "total_2015": 77, "total_2016": 28, "total_2017": 116, "total_2018": 149, "total_2019": 164, "total_2020": 167, "age1": 30, "age2": 74, "age3": 28, "earn1": 16, "earn2": 38, "earn3": 78, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 13, "naics_s08": 2, "naics_s09": 0, "naics_s10": 18, "naics_s11": 2, "naics_s12": 2, "naics_s13": 0, "naics_s14": 25, "naics_s15": 0, "naics_s16": 70, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 74, "race2": 41, "race3": 1, "race4": 14, "race5": 0, "race6": 2, "ethnicity1": 77, "ethnicity2": 55, "edu1": 26, "edu2": 27, "edu3": 29, "edu4": 20, "Shape_Length": 18707.618488562472, "Shape_Area": 12385610.482424049, "total_2021": 159, "total_2022": 132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.341126996351974, 29.769723200073447 ], [ -95.341170996716613, 29.769646200333316 ], [ -95.341031996472836, 29.769608200191435 ], [ -95.340840996409469, 29.769557199652397 ], [ -95.340805995820546, 29.769550199645764 ], [ -95.34067099599433, 29.769485200238197 ], [ -95.340552996564185, 29.769441199802834 ], [ -95.340048996343228, 29.769282200357175 ], [ -95.339529996388421, 29.769171199515583 ], [ -95.339507995926198, 29.769169200319535 ], [ -95.338629996184125, 29.769061199825039 ], [ -95.337716995891256, 29.769111200243596 ], [ -95.33724999518499, 29.769136199977297 ], [ -95.336555995481021, 29.769181199908573 ], [ -95.336246994598881, 29.76919519979867 ], [ -95.335896995421194, 29.769273200377881 ], [ -95.33572299530573, 29.769318199740042 ], [ -95.335722995343517, 29.769390200503896 ], [ -95.335721994503459, 29.769518200065225 ], [ -95.335739995222099, 29.770023200341281 ], [ -95.335740994587226, 29.770661200244827 ], [ -95.335745994912358, 29.771295200469392 ], [ -95.334928995051229, 29.771303200939574 ], [ -95.334772994715621, 29.77129020008076 ], [ -95.334653994498439, 29.771274200478253 ], [ -95.333836995020533, 29.771284200942109 ], [ -95.333779995039237, 29.771350200260279 ], [ -95.333753994891069, 29.771420200690375 ], [ -95.333742995044318, 29.771500200585201 ], [ -95.333740994313715, 29.771709200245407 ], [ -95.33375499428017, 29.772212201083494 ], [ -95.333779994937927, 29.772591201245923 ], [ -95.33381899417661, 29.773661201413464 ], [ -95.333833994853649, 29.774024201478458 ], [ -95.333841994222141, 29.774055201419422 ], [ -95.333892994599708, 29.774246200984518 ], [ -95.333920994594109, 29.774322201024315 ], [ -95.333931994847049, 29.775080201680858 ], [ -95.333948994431864, 29.775486201739849 ], [ -95.333953994442481, 29.775930201813789 ], [ -95.333076994684831, 29.775957201084644 ], [ -95.332194994714712, 29.775977201991989 ], [ -95.331892994566502, 29.775977201220833 ], [ -95.331313993651875, 29.775988201343857 ], [ -95.329554993430094, 29.776039201873594 ], [ -95.328586993801011, 29.77606620154156 ], [ -95.328480993183646, 29.776069201948857 ], [ -95.32813299365634, 29.776078201301015 ], [ -95.327311993114321, 29.776115201313416 ], [ -95.326963992752653, 29.776127201710285 ], [ -95.326421993076551, 29.77616220217692 ], [ -95.326482992946524, 29.77686720172062 ], [ -95.326589992997825, 29.777593202485598 ], [ -95.326615993548657, 29.778267202266957 ], [ -95.324854992629369, 29.778357202013385 ], [ -95.324856992306209, 29.779049202374086 ], [ -95.324862992484711, 29.77973020220788 ], [ -95.324865992996038, 29.780252202398835 ], [ -95.324866992563486, 29.780508202373756 ], [ -95.324876992684764, 29.781214202783829 ], [ -95.324887992973927, 29.781928202869736 ], [ -95.324884993081156, 29.782684202945578 ], [ -95.324905992537154, 29.783385203126475 ], [ -95.324916993054018, 29.783763203233594 ], [ -95.325462993072236, 29.783530203715074 ], [ -95.32588099292127, 29.78334920290408 ], [ -95.326305992825752, 29.783169203294957 ], [ -95.327141993883487, 29.782816203061419 ], [ -95.327690993668483, 29.782588202766284 ], [ -95.328040993834207, 29.782442202649566 ], [ -95.328532993206039, 29.782232202685186 ], [ -95.32968299382398, 29.781754203004386 ], [ -95.330287994027614, 29.781498203172649 ], [ -95.330464993922917, 29.781428202792075 ], [ -95.330575994412754, 29.781384202864238 ], [ -95.330685993690764, 29.781338203099956 ], [ -95.332283994455381, 29.780661202511055 ], [ -95.333281995033374, 29.780241202352663 ], [ -95.33380399482526, 29.7800232023476 ], [ -95.334163994661921, 29.77987820215839 ], [ -95.334490994624801, 29.77974320182286 ], [ -95.334849995138441, 29.779584201878265 ], [ -95.334958995425481, 29.779547202583206 ], [ -95.335783995100357, 29.779189201926595 ], [ -95.33606799571055, 29.779090202258889 ], [ -95.336569996047558, 29.778865201716918 ], [ -95.336626996081165, 29.778840202355969 ], [ -95.337290995362551, 29.778555201917065 ], [ -95.337474995956811, 29.778480201594395 ], [ -95.337946995739145, 29.77827820211569 ], [ -95.338238995551137, 29.778150201627497 ], [ -95.339575995907992, 29.777565201588825 ], [ -95.33989499652516, 29.777426201250339 ], [ -95.340053996540533, 29.777356201504489 ], [ -95.340277996877774, 29.77725720190152 ], [ -95.340285996504392, 29.776959201877951 ], [ -95.340350996534681, 29.77460620060771 ], [ -95.340372996282241, 29.774401201137255 ], [ -95.34040899612765, 29.77416720115151 ], [ -95.340438996036681, 29.773758200930121 ], [ -95.340432995908557, 29.772499200142377 ], [ -95.340457996493242, 29.771700200676992 ], [ -95.340530996742572, 29.771224200213993 ], [ -95.340603995908893, 29.770910200170096 ], [ -95.340779996691694, 29.770379200560026 ], [ -95.340893996185414, 29.77009020003112 ], [ -95.341036995979394, 29.76983019970114 ], [ -95.341126996351974, 29.769723200073447 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1092, "Tract": "48201313902", "Area_SqMi": 0.24470563797389111, "total_2009": 910, "total_2010": 832, "total_2011": 870, "total_2012": 826, "total_2013": 812, "total_2014": 680, "total_2015": 664, "total_2016": 979, "total_2017": 774, "total_2018": 1018, "total_2019": 1019, "total_2020": 975, "age1": 107, "age2": 524, "age3": 188, "earn1": 50, "earn2": 277, "earn3": 492, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 31, "naics_s05": 0, "naics_s06": 40, "naics_s07": 8, "naics_s08": 21, "naics_s09": 0, "naics_s10": 0, "naics_s11": 40, "naics_s12": 82, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 561, "naics_s17": 0, "naics_s18": 14, "naics_s19": 20, "naics_s20": 0, "race1": 487, "race2": 233, "race3": 6, "race4": 79, "race5": 0, "race6": 14, "ethnicity1": 601, "ethnicity2": 218, "edu1": 134, "edu2": 186, "edu3": 219, "edu4": 173, "Shape_Length": 11958.3549227604, "Shape_Area": 6821974.3688269639, "total_2021": 723, "total_2022": 819 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.393159005518129, 29.680886180181894 ], [ -95.393259005833372, 29.680594179673797 ], [ -95.392982006099402, 29.680589179963771 ], [ -95.392633005163731, 29.68059117991027 ], [ -95.392403005834495, 29.680600180345483 ], [ -95.390172004602931, 29.680656180425416 ], [ -95.3888350042578, 29.680669179745152 ], [ -95.387426004738913, 29.680666180048064 ], [ -95.385914003830592, 29.68066317992167 ], [ -95.383733002904805, 29.680690179967129 ], [ -95.381996003000538, 29.680712180091213 ], [ -95.381457003116111, 29.68071918074877 ], [ -95.381299003141351, 29.680721180491364 ], [ -95.381211002637883, 29.680721180574974 ], [ -95.38120000271627, 29.680762180111131 ], [ -95.381200003198927, 29.680788180104031 ], [ -95.381185002677, 29.680822180425956 ], [ -95.380919002951188, 29.681871180205381 ], [ -95.380801003025297, 29.682494180749273 ], [ -95.380724003146426, 29.684248180706955 ], [ -95.380697002937353, 29.684567180939137 ], [ -95.380628003125693, 29.684899180933346 ], [ -95.380514002698419, 29.685168181228477 ], [ -95.380318002538161, 29.68563118160646 ], [ -95.380242002385529, 29.685781181112016 ], [ -95.380027003035309, 29.686100181597812 ], [ -95.37979500279657, 29.686461181545347 ], [ -95.37962900260797, 29.686768181722552 ], [ -95.379549002774297, 29.686928181831416 ], [ -95.379797002911801, 29.686937181934677 ], [ -95.380001002842931, 29.68694418139658 ], [ -95.380269002526887, 29.686948181567068 ], [ -95.380532003002699, 29.686941181385297 ], [ -95.380882002560753, 29.686906181364943 ], [ -95.381269003128196, 29.686811181731724 ], [ -95.381695002573537, 29.686648181542857 ], [ -95.382601003105307, 29.686108181420128 ], [ -95.382859003165933, 29.685957181295951 ], [ -95.383217003854739, 29.685786181317347 ], [ -95.383456003085385, 29.685691180996557 ], [ -95.383687003792346, 29.685617181755127 ], [ -95.383988003888177, 29.685533181549623 ], [ -95.384362003206718, 29.685481181436309 ], [ -95.384674003975434, 29.685455181564073 ], [ -95.384993003528336, 29.68544818089941 ], [ -95.385985004338281, 29.685445181590939 ], [ -95.386066004355015, 29.685443181242047 ], [ -95.386216003885295, 29.685440180740287 ], [ -95.386743004138012, 29.685431180939776 ], [ -95.387061004141401, 29.685426181218524 ], [ -95.387474004399934, 29.68542018103663 ], [ -95.388025004715217, 29.685411181016921 ], [ -95.388117004919437, 29.685410181165949 ], [ -95.388964005132337, 29.685403181460231 ], [ -95.39045500532211, 29.685387180699266 ], [ -95.390619005431134, 29.685382181360414 ], [ -95.390689005691343, 29.685380181389881 ], [ -95.391354005828646, 29.685377180683805 ], [ -95.391641005664439, 29.685368180636718 ], [ -95.392123005835074, 29.684059180681857 ], [ -95.392649005469167, 29.682350179992994 ], [ -95.392842005573243, 29.681688180097591 ], [ -95.393084005664846, 29.68107717983343 ], [ -95.393159005518129, 29.680886180181894 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1093, "Tract": "48201341304", "Area_SqMi": 4.2045143852654459, "total_2009": 3715, "total_2010": 7594, "total_2011": 7314, "total_2012": 7821, "total_2013": 7486, "total_2014": 7004, "total_2015": 7099, "total_2016": 6312, "total_2017": 6195, "total_2018": 7089, "total_2019": 7374, "total_2020": 7334, "age1": 765, "age2": 4003, "age3": 2380, "earn1": 235, "earn2": 398, "earn3": 6515, "naics_s01": 0, "naics_s02": 0, "naics_s03": 44, "naics_s04": 59, "naics_s05": 559, "naics_s06": 4, "naics_s07": 68, "naics_s08": 15, "naics_s09": 0, "naics_s10": 22, "naics_s11": 22, "naics_s12": 2499, "naics_s13": 0, "naics_s14": 265, "naics_s15": 2, "naics_s16": 168, "naics_s17": 0, "naics_s18": 84, "naics_s19": 72, "naics_s20": 3265, "race1": 5458, "race2": 821, "race3": 47, "race4": 583, "race5": 9, "race6": 230, "ethnicity1": 6001, "ethnicity2": 1147, "edu1": 412, "edu2": 786, "edu3": 1147, "edu4": 4038, "Shape_Length": 52668.894672368209, "Shape_Area": 117214664.96291137, "total_2021": 7686, "total_2022": 7148 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.109601927995669, 29.572382166893377 ], [ -95.109395928734315, 29.572290166933826 ], [ -95.1079679273452, 29.571706167292451 ], [ -95.107530928001424, 29.571510167525929 ], [ -95.107265927497053, 29.571422166848546 ], [ -95.106792927100301, 29.571208167068608 ], [ -95.105974927252333, 29.570944167218549 ], [ -95.105497927348338, 29.570816167378979 ], [ -95.105057926876242, 29.570724167260778 ], [ -95.104779926647836, 29.570681167234572 ], [ -95.104665926467987, 29.570676166676936 ], [ -95.104377926626853, 29.570665166821431 ], [ -95.104046926265724, 29.570682167193272 ], [ -95.103601926602138, 29.5707061668096 ], [ -95.103401926243407, 29.570173167246175 ], [ -95.103218926094755, 29.569907166603706 ], [ -95.1029589261762, 29.56964716692509 ], [ -95.102391926583977, 29.569431166489125 ], [ -95.101850926395258, 29.569216166984276 ], [ -95.101789926584715, 29.569192167044491 ], [ -95.101816926362062, 29.569145166502175 ], [ -95.10244392658069, 29.568056166514527 ], [ -95.102826926089321, 29.567291166361684 ], [ -95.103266926671012, 29.566494166101137 ], [ -95.10389592621236, 29.565394166060774 ], [ -95.105340926666116, 29.562649165612598 ], [ -95.105736926767349, 29.561912165566469 ], [ -95.106264927306597, 29.560961165311209 ], [ -95.106484926980855, 29.560466165243273 ], [ -95.106861926658098, 29.559806164530567 ], [ -95.107420927525311, 29.558794164444095 ], [ -95.107960926803116, 29.557804164033282 ], [ -95.107671927061631, 29.557682164491464 ], [ -95.098834924553358, 29.55410516365432 ], [ -95.097517924471305, 29.553572163901325 ], [ -95.094272923922347, 29.55220116344157 ], [ -95.093935923720778, 29.552028163760923 ], [ -95.093604923716867, 29.551767163773988 ], [ -95.093237923641738, 29.551376163048026 ], [ -95.093191923109174, 29.551305162999803 ], [ -95.093120923002033, 29.551195163518855 ], [ -95.093053922891642, 29.551092163685706 ], [ -95.093020922649956, 29.551040163321684 ], [ -95.092986922950686, 29.550989162914949 ], [ -95.092814923365196, 29.550511162838333 ], [ -95.090208922703695, 29.551353163743734 ], [ -95.09000392241046, 29.551417163675133 ], [ -95.088289921409867, 29.551934163428861 ], [ -95.088140922185943, 29.551976164025895 ], [ -95.086380921145803, 29.552526163875747 ], [ -95.084910921228342, 29.55300416399643 ], [ -95.082859920840846, 29.553671164016453 ], [ -95.080024919622616, 29.55459316480378 ], [ -95.078193919565507, 29.555189164826277 ], [ -95.077891919594379, 29.555299164797763 ], [ -95.07759991903913, 29.555429164335429 ], [ -95.077439919122099, 29.555514165162645 ], [ -95.077319918989915, 29.555578165050409 ], [ -95.07705391949365, 29.55574616521103 ], [ -95.076802919325658, 29.555931164743594 ], [ -95.076569919039144, 29.556133165106697 ], [ -95.076533919233924, 29.556169164530942 ], [ -95.076354919237289, 29.556349164648051 ], [ -95.076159918782693, 29.556580164616534 ], [ -95.075984918475683, 29.556822164876369 ], [ -95.075846919353239, 29.557050165256907 ], [ -95.075692918968898, 29.557326165547284 ], [ -95.075628918606554, 29.557440165176857 ], [ -95.075598919218393, 29.557493165680754 ], [ -95.075569919193228, 29.557547165100271 ], [ -95.075550919367771, 29.557581165198929 ], [ -95.075119919175293, 29.558353165645389 ], [ -95.075036918360709, 29.558501165926096 ], [ -95.075017919041031, 29.558536165350798 ], [ -95.074943919123683, 29.558668165195485 ], [ -95.074758918288026, 29.558944165395378 ], [ -95.074485919156416, 29.559163165741889 ], [ -95.074041918101486, 29.559869165868651 ], [ -95.073252918387709, 29.561239166448459 ], [ -95.072824918574923, 29.56197016670253 ], [ -95.072472918613755, 29.56238316633808 ], [ -95.072015918082485, 29.562920166837031 ], [ -95.071952918406325, 29.56299516677305 ], [ -95.07188891822878, 29.563069166796765 ], [ -95.072105918541084, 29.563185166231428 ], [ -95.072170918465744, 29.56368916672276 ], [ -95.071720918521919, 29.565278167110353 ], [ -95.071492918746898, 29.569740168279274 ], [ -95.071613917961869, 29.570121167705281 ], [ -95.071506918322143, 29.570329167685962 ], [ -95.071347918368559, 29.570776167832904 ], [ -95.071352918669419, 29.571389168699749 ], [ -95.07160891837556, 29.571713168732639 ], [ -95.071731918171565, 29.572019168234416 ], [ -95.071850918809872, 29.572476168858255 ], [ -95.071894918659694, 29.572979168705821 ], [ -95.071876918103612, 29.573303168952705 ], [ -95.071579918240516, 29.573650168854876 ], [ -95.071321918903749, 29.57406116920539 ], [ -95.071184918004064, 29.574323168666826 ], [ -95.071037918011058, 29.574811168608818 ], [ -95.071058918901272, 29.575267169286629 ], [ -95.071062917974757, 29.575350169486583 ], [ -95.071442918668026, 29.576106169033512 ], [ -95.071476918693392, 29.57653716955523 ], [ -95.07138391865945, 29.576888169692772 ], [ -95.071271918417864, 29.577036169811056 ], [ -95.070943918249171, 29.577254169111999 ], [ -95.070001918400081, 29.577703169340026 ], [ -95.069759918510755, 29.577898169439287 ], [ -95.069521918685084, 29.578147170180394 ], [ -95.069064918215673, 29.579109169793917 ], [ -95.068625918382011, 29.579309170455563 ], [ -95.068533917995566, 29.579385169822856 ], [ -95.068166917621667, 29.579796170489765 ], [ -95.067854917363277, 29.580108170250281 ], [ -95.067702918289299, 29.580219170021735 ], [ -95.067548917678579, 29.58029016984927 ], [ -95.067249917711976, 29.580459170491409 ], [ -95.067111917274573, 29.580608170421463 ], [ -95.067079918020269, 29.580742170256979 ], [ -95.067176918240904, 29.58097516997659 ], [ -95.067386918057323, 29.581255170660821 ], [ -95.068299918147346, 29.581727170407913 ], [ -95.068322918059849, 29.581910170679315 ], [ -95.068395918483532, 29.582038170792227 ], [ -95.068583918388001, 29.5822291709664 ], [ -95.069037918520294, 29.582541170843971 ], [ -95.069561918152843, 29.582504170313896 ], [ -95.069758918076744, 29.581954170579976 ], [ -95.069899918451071, 29.581777170623639 ], [ -95.070012918887585, 29.581733170798348 ], [ -95.07037791868467, 29.581697170006979 ], [ -95.070615919034964, 29.581753170870162 ], [ -95.071010919037093, 29.581947170348467 ], [ -95.071235918613013, 29.582445170165485 ], [ -95.071173918710244, 29.582763170187143 ], [ -95.07120791917815, 29.583050171040675 ], [ -95.071324918691232, 29.583318170587262 ], [ -95.071668918608012, 29.58357617109008 ], [ -95.071913918725116, 29.583759170683621 ], [ -95.07196691921969, 29.58411817079897 ], [ -95.071976918931696, 29.58418417068884 ], [ -95.072066918669464, 29.584346170895994 ], [ -95.072352919001929, 29.584653170807776 ], [ -95.072925919467465, 29.585166171363692 ], [ -95.073099919321223, 29.585261170788566 ], [ -95.073464919806369, 29.585309171333417 ], [ -95.074082919705845, 29.585299170866612 ], [ -95.07444391947125, 29.585470170656084 ], [ -95.074526919326146, 29.585549171407472 ], [ -95.07474592040677, 29.586165171064586 ], [ -95.075158920289795, 29.586565170939167 ], [ -95.075398920344611, 29.586762171597005 ], [ -95.075787920115246, 29.586880171654364 ], [ -95.076477920170163, 29.587335171452654 ], [ -95.076673920369487, 29.58738817125446 ], [ -95.076863920259981, 29.587158171193622 ], [ -95.076790920549257, 29.586732171542685 ], [ -95.076518920738394, 29.586133171390092 ], [ -95.076523920451407, 29.585918171234184 ], [ -95.076866920055707, 29.585798171479514 ], [ -95.077436920355311, 29.585722170844129 ], [ -95.078050920893844, 29.585777171124775 ], [ -95.078802920626629, 29.586067171352891 ], [ -95.079070921430159, 29.586290170976916 ], [ -95.079798921156637, 29.58706917135002 ], [ -95.08009492089279, 29.587264170849778 ], [ -95.080653921235751, 29.587496171579502 ], [ -95.080846921611965, 29.58756017153307 ], [ -95.081184922048962, 29.587356171455848 ], [ -95.081426921701677, 29.587325171411631 ], [ -95.081911921551125, 29.587407171643001 ], [ -95.082498922185124, 29.587603171248833 ], [ -95.082684922364379, 29.587517171006201 ], [ -95.083006922398567, 29.587367171431122 ], [ -95.083389921818494, 29.586904171391435 ], [ -95.083543922531206, 29.586863170825751 ], [ -95.083786922130386, 29.587048170916596 ], [ -95.084024922418152, 29.587734171208666 ], [ -95.084189922739839, 29.587982171176346 ], [ -95.084370922573768, 29.588128171368968 ], [ -95.084657922604535, 29.5882631710023 ], [ -95.084900923126881, 29.588293171112657 ], [ -95.085102922859519, 29.588272170861327 ], [ -95.085447922787694, 29.588157171251769 ], [ -95.085584923176441, 29.588025171018035 ], [ -95.085632923103574, 29.587850171341799 ], [ -95.085552922875152, 29.586528170572063 ], [ -95.085663922566212, 29.585998171135813 ], [ -95.08580592245761, 29.585780170403361 ], [ -95.085957922645548, 29.585659170370821 ], [ -95.08613892329474, 29.585573170842146 ], [ -95.086421923227292, 29.585535170757698 ], [ -95.086735922951675, 29.585604170508557 ], [ -95.086998923516816, 29.585828171191519 ], [ -95.087119922825849, 29.586017171161014 ], [ -95.087181923379589, 29.586728171128115 ], [ -95.087397922959724, 29.587030170724436 ], [ -95.087778923026491, 29.587238170988531 ], [ -95.088380923749867, 29.587393171082709 ], [ -95.088967923539116, 29.586846170732489 ], [ -95.089199923215517, 29.586426170438923 ], [ -95.089986923782519, 29.585915170655621 ], [ -95.090166924346448, 29.585637170223869 ], [ -95.090284923795068, 29.585258170118024 ], [ -95.090277923399853, 29.585116170046447 ], [ -95.090440924238592, 29.584414170067721 ], [ -95.090426923901688, 29.58402017021395 ], [ -95.090141924065037, 29.583427170552405 ], [ -95.089679923944345, 29.583078169947576 ], [ -95.089619923943076, 29.582946170358674 ], [ -95.089617923474066, 29.582766170394393 ], [ -95.089698923663462, 29.582605170235226 ], [ -95.090483924056997, 29.58168516970613 ], [ -95.090791924321579, 29.581139169512831 ], [ -95.09085292422489, 29.580894169331355 ], [ -95.090680924153105, 29.580082169489703 ], [ -95.090754923833032, 29.579807169024495 ], [ -95.090999924040432, 29.579616169416397 ], [ -95.091239924239147, 29.579519169360751 ], [ -95.091562924355628, 29.579566169714703 ], [ -95.092412923910175, 29.57981816951748 ], [ -95.092532924682899, 29.579854169110856 ], [ -95.092817924372568, 29.579846169436628 ], [ -95.09305092444221, 29.579778169203937 ], [ -95.093218924235586, 29.579676168968618 ], [ -95.093651924935799, 29.579117169348059 ], [ -95.094264924794743, 29.578904168987862 ], [ -95.095108925189209, 29.579059169076395 ], [ -95.095298924614653, 29.579055169416343 ], [ -95.095643925073531, 29.579048168914877 ], [ -95.096047925318061, 29.57897916908064 ], [ -95.096530925098349, 29.579019169208632 ], [ -95.096599924746798, 29.579057168557309 ], [ -95.096883925354405, 29.57918316895497 ], [ -95.097108925434213, 29.579332168620088 ], [ -95.097409925791865, 29.579569169067643 ], [ -95.097620925498731, 29.579629169037677 ], [ -95.097826925574452, 29.579687169399765 ], [ -95.100435926038827, 29.579797168852991 ], [ -95.100898926023845, 29.579830169245643 ], [ -95.101147926096701, 29.579909168897856 ], [ -95.101338926717474, 29.580028169347255 ], [ -95.101491926188473, 29.580122169011613 ], [ -95.101713927111319, 29.580379168701647 ], [ -95.101825926137465, 29.580630168738509 ], [ -95.101865926137748, 29.580895169394129 ], [ -95.101837926382572, 29.581092169176479 ], [ -95.101832927066511, 29.581331169207481 ], [ -95.101858926331644, 29.581502169375472 ], [ -95.101875926613573, 29.581610168979253 ], [ -95.101924926746037, 29.581793169293263 ], [ -95.102023927110153, 29.582021169378219 ], [ -95.102106927091398, 29.582171169242613 ], [ -95.102221927084642, 29.582331169063234 ], [ -95.102326927114277, 29.582456169319528 ], [ -95.10242092736263, 29.58254716916575 ], [ -95.102805927467443, 29.582823169491117 ], [ -95.103412926855583, 29.583258169842559 ], [ -95.103428927519744, 29.583270169822654 ], [ -95.103503927342288, 29.583324169444019 ], [ -95.103566926869618, 29.583368169685951 ], [ -95.103646927715573, 29.583433169855248 ], [ -95.103671927715155, 29.583386169427616 ], [ -95.105636927695514, 29.579740169013824 ], [ -95.106401927380418, 29.578321168749984 ], [ -95.107901927661473, 29.575537167596341 ], [ -95.109601927995669, 29.572382166893377 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1094, "Tract": "48201211102", "Area_SqMi": 0.4314907934937055, "total_2009": 30, "total_2010": 9, "total_2011": 17, "total_2012": 15, "total_2013": 17, "total_2014": 6, "total_2015": 12, "total_2016": 14, "total_2017": 9, "total_2018": 10, "total_2019": 11, "total_2020": 14, "age1": 0, "age2": 4, "age3": 4, "earn1": 5, "earn2": 3, "earn3": 0, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 1, "naics_s19": 0, "naics_s20": 0, "race1": 2, "race2": 0, "race3": 0, "race4": 6, "race5": 0, "race6": 0, "ethnicity1": 7, "ethnicity2": 1, "edu1": 3, "edu2": 1, "edu3": 3, "edu4": 1, "Shape_Length": 21155.759907733016, "Shape_Area": 12029224.818730729, "total_2021": 12, "total_2022": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.33583699597645, 29.782829203002013 ], [ -95.335828995227644, 29.781846202435119 ], [ -95.335814995999982, 29.780845202644301 ], [ -95.335797995183583, 29.77985120193593 ], [ -95.335787995575515, 29.779562202402843 ], [ -95.335787995348682, 29.77952920259473 ], [ -95.335783995100357, 29.779189201926595 ], [ -95.334958995425481, 29.779547202583206 ], [ -95.334849995138441, 29.779584201878265 ], [ -95.334490994624801, 29.77974320182286 ], [ -95.334163994661921, 29.77987820215839 ], [ -95.33380399482526, 29.7800232023476 ], [ -95.333281995033374, 29.780241202352663 ], [ -95.332283994455381, 29.780661202511055 ], [ -95.330685993690764, 29.781338203099956 ], [ -95.330575994412754, 29.781384202864238 ], [ -95.330464993922917, 29.781428202792075 ], [ -95.330287994027614, 29.781498203172649 ], [ -95.32968299382398, 29.781754203004386 ], [ -95.328532993206039, 29.782232202685186 ], [ -95.328040993834207, 29.782442202649566 ], [ -95.327690993668483, 29.782588202766284 ], [ -95.327141993883487, 29.782816203061419 ], [ -95.326305992825752, 29.783169203294957 ], [ -95.32588099292127, 29.78334920290408 ], [ -95.325462993072236, 29.783530203715074 ], [ -95.324916993054018, 29.783763203233594 ], [ -95.323785992971324, 29.784249203410287 ], [ -95.316757991332992, 29.787276204447647 ], [ -95.316096990242229, 29.787551204455795 ], [ -95.315925990753797, 29.787619204682908 ], [ -95.315946990267477, 29.787931204790443 ], [ -95.316474991356216, 29.787755204955282 ], [ -95.317506990690958, 29.787703204437708 ], [ -95.318386991150319, 29.787663204031666 ], [ -95.319303991232815, 29.787629204811289 ], [ -95.320427991767403, 29.78758420455193 ], [ -95.321265991872863, 29.787569204308557 ], [ -95.321564992449865, 29.787648204401492 ], [ -95.321811992222678, 29.787677204047451 ], [ -95.322003992471281, 29.78767420446578 ], [ -95.322095992169508, 29.787681204473561 ], [ -95.32300199216759, 29.787686203895362 ], [ -95.323949992465245, 29.78766920466137 ], [ -95.32396999270685, 29.788374204439567 ], [ -95.323971992386603, 29.789094204709681 ], [ -95.32397699256758, 29.789565204359043 ], [ -95.32397199245429, 29.790291204718315 ], [ -95.323981993451497, 29.790907204496502 ], [ -95.323987993350926, 29.791001205171067 ], [ -95.323991993110383, 29.7917122050637 ], [ -95.324003992884556, 29.792526204840819 ], [ -95.324004993277924, 29.793229205748464 ], [ -95.32400399324878, 29.793956205971664 ], [ -95.324478993365432, 29.793844205913263 ], [ -95.32503799307473, 29.79366220528523 ], [ -95.325373993272351, 29.79359120495965 ], [ -95.325794993795697, 29.793532205002411 ], [ -95.326336993689281, 29.793538205721699 ], [ -95.326805993417793, 29.793527205043546 ], [ -95.327693994443464, 29.793521205324005 ], [ -95.328713994713553, 29.793534205690982 ], [ -95.329848994916119, 29.793559205049679 ], [ -95.330175994875489, 29.793653204910591 ], [ -95.330633995207549, 29.793846205732891 ], [ -95.33099499508188, 29.793977204874366 ], [ -95.330949994595244, 29.79190720459005 ], [ -95.330935994370492, 29.791378204643745 ], [ -95.3310239943428, 29.791263204387779 ], [ -95.331181994702845, 29.791112204474029 ], [ -95.331104994507825, 29.790851204424271 ], [ -95.331101994406097, 29.790378204589274 ], [ -95.331088995171072, 29.789665204860903 ], [ -95.331082994232816, 29.788975204269576 ], [ -95.331064994777179, 29.788304203940445 ], [ -95.331057994623507, 29.787632203819374 ], [ -95.331054995037363, 29.786955203969892 ], [ -95.331052994270806, 29.78628320413328 ], [ -95.331047994147525, 29.785609203887731 ], [ -95.331036993969818, 29.78492120314111 ], [ -95.331011994834327, 29.783873203518986 ], [ -95.330999993975013, 29.782888202896025 ], [ -95.331826994631371, 29.782875203406707 ], [ -95.33265199443089, 29.782861202587455 ], [ -95.333454995217011, 29.782855202724374 ], [ -95.334251995683132, 29.782844202852111 ], [ -95.335030995258165, 29.782839202515206 ], [ -95.33583699597645, 29.782829203002013 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1095, "Tract": "48201341204", "Area_SqMi": 1.4162058983920003, "total_2009": 1978, "total_2010": 2317, "total_2011": 3142, "total_2012": 1647, "total_2013": 1545, "total_2014": 2340, "total_2015": 2821, "total_2016": 2816, "total_2017": 3443, "total_2018": 3743, "total_2019": 3875, "total_2020": 3736, "age1": 732, "age2": 2203, "age3": 1063, "earn1": 350, "earn2": 729, "earn3": 2919, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 207, "naics_s06": 0, "naics_s07": 25, "naics_s08": 120, "naics_s09": 283, "naics_s10": 91, "naics_s11": 38, "naics_s12": 1257, "naics_s13": 5, "naics_s14": 37, "naics_s15": 0, "naics_s16": 1428, "naics_s17": 2, "naics_s18": 355, "naics_s19": 46, "naics_s20": 87, "race1": 3055, "race2": 496, "race3": 30, "race4": 337, "race5": 2, "race6": 78, "ethnicity1": 3045, "ethnicity2": 953, "edu1": 453, "edu2": 719, "edu3": 1045, "edu4": 1049, "Shape_Length": 34795.510072222067, "Shape_Area": 39481396.586549446, "total_2021": 3563, "total_2022": 3998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.095435923713111, 29.549680163397689 ], [ -95.095381923844158, 29.54940316300798 ], [ -95.09504792371456, 29.548611162408605 ], [ -95.094704923802411, 29.548087162335918 ], [ -95.094137923235635, 29.547252162321101 ], [ -95.093906923071941, 29.546563162806205 ], [ -95.093237922699146, 29.545191162068814 ], [ -95.092743922398355, 29.544588161901434 ], [ -95.091993922867985, 29.543711161646424 ], [ -95.091403922701261, 29.5430431614726 ], [ -95.091042922184798, 29.542546161677286 ], [ -95.090862922612757, 29.542021161203458 ], [ -95.09082592224587, 29.541722161307717 ], [ -95.090854921899904, 29.541412161511381 ], [ -95.090993922575947, 29.540848161075136 ], [ -95.091002922412969, 29.540330161616861 ], [ -95.090860921933412, 29.539869160721651 ], [ -95.090633921672264, 29.539521161071839 ], [ -95.090482922353772, 29.539300161030944 ], [ -95.090198921366081, 29.538923160916497 ], [ -95.090060922104328, 29.538671160585658 ], [ -95.08991592148665, 29.538384161050519 ], [ -95.0898899215874, 29.538055160419095 ], [ -95.089900921415136, 29.537661160710275 ], [ -95.090147922142791, 29.537293160769362 ], [ -95.090762922188034, 29.53698616083739 ], [ -95.091083922221614, 29.536762160627887 ], [ -95.091459922166862, 29.536481160654237 ], [ -95.091539922420097, 29.536356160744827 ], [ -95.091711922068384, 29.536089160041961 ], [ -95.091795921825451, 29.535939160514598 ], [ -95.091813922020918, 29.535739160004503 ], [ -95.091771921785309, 29.535495160480313 ], [ -95.091768922293625, 29.535345159820121 ], [ -95.091767922029973, 29.535275160175381 ], [ -95.091807922230387, 29.5350881601262 ], [ -95.092157921908765, 29.534600159549655 ], [ -95.092335922646043, 29.534351159907047 ], [ -95.091620922252673, 29.533829159697625 ], [ -95.091103922325757, 29.533346159465612 ], [ -95.091086921936807, 29.533205159949059 ], [ -95.091029921485685, 29.53274815942914 ], [ -95.091022921736808, 29.532519159798294 ], [ -95.091030921439966, 29.532379159390509 ], [ -95.091039921919304, 29.532090159866531 ], [ -95.091020921377066, 29.531945159340911 ], [ -95.090976921284692, 29.531770159449923 ], [ -95.090863922175018, 29.531544159374587 ], [ -95.090839921760349, 29.531494159077813 ], [ -95.090765921992173, 29.531421159775707 ], [ -95.090628921884303, 29.531306159397239 ], [ -95.090555921940265, 29.531276159147364 ], [ -95.090181921698345, 29.531178159076259 ], [ -95.09004492124852, 29.531133159248952 ], [ -95.089633921577118, 29.531139158935257 ], [ -95.089360921670675, 29.531219159515199 ], [ -95.088348920659698, 29.531806159250284 ], [ -95.088193920929768, 29.531896159985518 ], [ -95.088120920979605, 29.531963159280163 ], [ -95.087878920857861, 29.532185159771331 ], [ -95.087579921291365, 29.532414159340373 ], [ -95.087113920603031, 29.532895160199296 ], [ -95.087004920930383, 29.533092160127399 ], [ -95.086800920968599, 29.533472160133144 ], [ -95.086764920552284, 29.533662159583329 ], [ -95.086573920218868, 29.534139159684443 ], [ -95.086349920656062, 29.534510160492982 ], [ -95.086144920883598, 29.534750160334827 ], [ -95.086114920483126, 29.534765160242973 ], [ -95.086061920391941, 29.534791159818319 ], [ -95.085932920448599, 29.534853160075421 ], [ -95.085882920485744, 29.534853160479425 ], [ -95.085777920374383, 29.53488216041432 ], [ -95.085574919946964, 29.534888160420916 ], [ -95.085234920482208, 29.534769160432969 ], [ -95.08472092032153, 29.534523160243861 ], [ -95.083946919582843, 29.534133160536967 ], [ -95.083807919790956, 29.534091159878781 ], [ -95.083442919601481, 29.534016160457472 ], [ -95.082518919186697, 29.534031160310455 ], [ -95.0815949195879, 29.534004160602446 ], [ -95.08088891960962, 29.534060159853208 ], [ -95.080423918682385, 29.53409715991101 ], [ -95.080116919461219, 29.534196159991318 ], [ -95.08000591895815, 29.534234159943956 ], [ -95.079586919194639, 29.534368160099387 ], [ -95.079230918855316, 29.534742160601699 ], [ -95.079070918700765, 29.535120160224892 ], [ -95.078976919119128, 29.535347160322218 ], [ -95.078812918653995, 29.535948160274003 ], [ -95.078681918701548, 29.536428161209084 ], [ -95.078654918939463, 29.537149160606166 ], [ -95.078664918554097, 29.537363161146956 ], [ -95.078676919033342, 29.537830160962937 ], [ -95.078942918501824, 29.538475160898493 ], [ -95.079959919194053, 29.539143161433547 ], [ -95.080439919493145, 29.540102161244437 ], [ -95.080439919589551, 29.54102616162923 ], [ -95.07994891915672, 29.541452161860231 ], [ -95.07987391966482, 29.541517161767832 ], [ -95.07977491948499, 29.541602161509051 ], [ -95.079045919572678, 29.542179162082331 ], [ -95.079067919192696, 29.542860162426486 ], [ -95.079171918808314, 29.543126161886857 ], [ -95.079218919334693, 29.543248162559316 ], [ -95.079285919134648, 29.54341916257134 ], [ -95.079380918867685, 29.543564161818477 ], [ -95.07957091904504, 29.543861162111309 ], [ -95.079915919585801, 29.544398162737107 ], [ -95.079927919204707, 29.544416162250169 ], [ -95.080900919946671, 29.545722162926481 ], [ -95.080735919711614, 29.546228162531424 ], [ -95.080611919443072, 29.546292162515869 ], [ -95.079097919403708, 29.547073163285692 ], [ -95.078258919050867, 29.547308163524445 ], [ -95.077307918738697, 29.547575163527821 ], [ -95.07649191855883, 29.547805163610612 ], [ -95.074312917821359, 29.548191163179201 ], [ -95.073798918340501, 29.548279163476753 ], [ -95.072734917390747, 29.54889816320139 ], [ -95.072102917496593, 29.549264164129333 ], [ -95.072056917606048, 29.549291163917388 ], [ -95.071126917337381, 29.550710163735435 ], [ -95.070781917037365, 29.552104164331453 ], [ -95.070325917536138, 29.553834164813807 ], [ -95.069770917341998, 29.554999164615882 ], [ -95.069426916707144, 29.555722165129328 ], [ -95.069013917278227, 29.556385165654131 ], [ -95.069366917630276, 29.557272165573558 ], [ -95.069679917169324, 29.558197165814121 ], [ -95.06997191754526, 29.559057165561782 ], [ -95.071386917761899, 29.562353166418088 ], [ -95.071567917588155, 29.562770166751697 ], [ -95.071673917817378, 29.562943166907189 ], [ -95.071705917658321, 29.562996166075948 ], [ -95.071730917865111, 29.563037166526627 ], [ -95.071768917993822, 29.563101166340168 ], [ -95.071807917987428, 29.563164166336946 ], [ -95.07188891822878, 29.563069166796765 ], [ -95.071952918406325, 29.56299516677305 ], [ -95.072015918082485, 29.562920166837031 ], [ -95.072472918613755, 29.56238316633808 ], [ -95.072824918574923, 29.56197016670253 ], [ -95.073252918387709, 29.561239166448459 ], [ -95.074041918101486, 29.559869165868651 ], [ -95.074485919156416, 29.559163165741889 ], [ -95.074758918288026, 29.558944165395378 ], [ -95.074943919123683, 29.558668165195485 ], [ -95.075017919041031, 29.558536165350798 ], [ -95.075036918360709, 29.558501165926096 ], [ -95.075119919175293, 29.558353165645389 ], [ -95.075550919367771, 29.557581165198929 ], [ -95.075569919193228, 29.557547165100271 ], [ -95.075598919218393, 29.557493165680754 ], [ -95.075628918606554, 29.557440165176857 ], [ -95.075692918968898, 29.557326165547284 ], [ -95.075846919353239, 29.557050165256907 ], [ -95.075984918475683, 29.556822164876369 ], [ -95.076159918782693, 29.556580164616534 ], [ -95.076354919237289, 29.556349164648051 ], [ -95.076533919233924, 29.556169164530942 ], [ -95.076569919039144, 29.556133165106697 ], [ -95.076802919325658, 29.555931164743594 ], [ -95.07705391949365, 29.55574616521103 ], [ -95.077319918989915, 29.555578165050409 ], [ -95.077439919122099, 29.555514165162645 ], [ -95.07759991903913, 29.555429164335429 ], [ -95.077891919594379, 29.555299164797763 ], [ -95.078193919565507, 29.555189164826277 ], [ -95.080024919622616, 29.55459316480378 ], [ -95.082859920840846, 29.553671164016453 ], [ -95.084910921228342, 29.55300416399643 ], [ -95.086380921145803, 29.552526163875747 ], [ -95.088140922185943, 29.551976164025895 ], [ -95.088289921409867, 29.551934163428861 ], [ -95.09000392241046, 29.551417163675133 ], [ -95.090208922703695, 29.551353163743734 ], [ -95.092814923365196, 29.550511162838333 ], [ -95.095435923713111, 29.549680163397689 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1096, "Tract": "48201211501", "Area_SqMi": 1.4187398235277644, "total_2009": 3374, "total_2010": 3405, "total_2011": 3727, "total_2012": 2940, "total_2013": 3257, "total_2014": 3521, "total_2015": 3275, "total_2016": 2931, "total_2017": 3003, "total_2018": 3023, "total_2019": 3100, "total_2020": 2971, "age1": 454, "age2": 1502, "age3": 816, "earn1": 155, "earn2": 499, "earn3": 2118, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 204, "naics_s05": 1214, "naics_s06": 256, "naics_s07": 60, "naics_s08": 678, "naics_s09": 0, "naics_s10": 1, "naics_s11": 16, "naics_s12": 9, "naics_s13": 0, "naics_s14": 231, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 17, "naics_s19": 84, "naics_s20": 0, "race1": 2022, "race2": 514, "race3": 38, "race4": 154, "race5": 4, "race6": 40, "ethnicity1": 1596, "ethnicity2": 1176, "edu1": 645, "edu2": 644, "edu3": 651, "edu4": 378, "Shape_Length": 27042.26767664788, "Shape_Area": 39552038.082478337, "total_2021": 2510, "total_2022": 2772 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.304336986227085, 29.76163919970756 ], [ -95.304335986922695, 29.761526199685626 ], [ -95.304319986736587, 29.760157199176128 ], [ -95.302572985786497, 29.75921819913269 ], [ -95.301269985571338, 29.758551199323982 ], [ -95.300502984997706, 29.758147199156365 ], [ -95.30013798578095, 29.757952198964947 ], [ -95.298647985379461, 29.757157198534781 ], [ -95.298544985306464, 29.757105198411942 ], [ -95.297894984375745, 29.756959199228117 ], [ -95.297362984957999, 29.756856198435582 ], [ -95.296823984098609, 29.756771199221873 ], [ -95.295268983923847, 29.756815198626015 ], [ -95.295007983908832, 29.756820198780687 ], [ -95.294880983668335, 29.75682319894533 ], [ -95.294830984341715, 29.75682419851886 ], [ -95.294602983748817, 29.756885198603449 ], [ -95.294525984382105, 29.756936198567455 ], [ -95.29448098361226, 29.756966198716832 ], [ -95.294453984164633, 29.756984199008038 ], [ -95.294320983780665, 29.757054198839594 ], [ -95.294229983399774, 29.757090198742965 ], [ -95.294120984016743, 29.757143199331107 ], [ -95.293893983203532, 29.757174198950878 ], [ -95.293644983347008, 29.757183198719073 ], [ -95.29339798305017, 29.757152199365759 ], [ -95.293131983663585, 29.757016198874972 ], [ -95.292496982860214, 29.756394199250582 ], [ -95.292160983484081, 29.756059198820317 ], [ -95.291861983105676, 29.755753198383506 ], [ -95.291430983106579, 29.755341198885752 ], [ -95.291266982883201, 29.755195198529162 ], [ -95.288317982396961, 29.753241198262089 ], [ -95.28697098198657, 29.752371198460956 ], [ -95.286523981347756, 29.752090197899381 ], [ -95.286197981753787, 29.751890198201664 ], [ -95.285427981089711, 29.751365198064988 ], [ -95.283504981038831, 29.750103197933608 ], [ -95.283492980569818, 29.750541197753297 ], [ -95.283488980429425, 29.750679198345509 ], [ -95.283524980350876, 29.751407198019113 ], [ -95.283520981177119, 29.752176198473315 ], [ -95.283536981213203, 29.752902198750807 ], [ -95.283546981239382, 29.753596198210712 ], [ -95.283555980762628, 29.754277199042772 ], [ -95.283566981182801, 29.754972199075038 ], [ -95.283580981004818, 29.755657199130912 ], [ -95.283593981031103, 29.75635419964112 ], [ -95.283613980987738, 29.757037199390876 ], [ -95.283615981572353, 29.757727199296891 ], [ -95.283628980686629, 29.758421199729312 ], [ -95.283652981410157, 29.759097199554144 ], [ -95.283678980864366, 29.759798199540501 ], [ -95.283690980865074, 29.760475200409676 ], [ -95.283703981717267, 29.761165200517862 ], [ -95.283699981385155, 29.761864199959028 ], [ -95.283716981771207, 29.762542200268161 ], [ -95.283719981429172, 29.763237200596777 ], [ -95.283733981122495, 29.763918200988087 ], [ -95.28374898157692, 29.764416201221596 ], [ -95.283753980944525, 29.764603200452132 ], [ -95.283759981887641, 29.765286201149287 ], [ -95.283786981464573, 29.765999200793161 ], [ -95.283803981950371, 29.766959201091947 ], [ -95.283811981506631, 29.767932201122498 ], [ -95.283813981692305, 29.768222201847674 ], [ -95.283848981865447, 29.769135201389606 ], [ -95.283916982282818, 29.772185202424801 ], [ -95.284390982109059, 29.772238202739789 ], [ -95.285661981912085, 29.772389202660516 ], [ -95.285767982709757, 29.772399202333734 ], [ -95.287354982934588, 29.772597202443233 ], [ -95.287673983114118, 29.772625202789751 ], [ -95.288618983421458, 29.772737202121299 ], [ -95.288787982716698, 29.772752202787512 ], [ -95.28916998311793, 29.772795201934056 ], [ -95.289325983308586, 29.772818202611024 ], [ -95.289382983709501, 29.772826202595816 ], [ -95.289518983133775, 29.772837202321522 ], [ -95.289925982884057, 29.772858202546661 ], [ -95.290013983671656, 29.772862202264786 ], [ -95.291131983312809, 29.772883202006771 ], [ -95.29132898348773, 29.772896202263283 ], [ -95.291567983766981, 29.772870202353154 ], [ -95.292200984057331, 29.772707202033583 ], [ -95.292650983853434, 29.772618202162445 ], [ -95.293022984638853, 29.772605201937647 ], [ -95.29462498414027, 29.772572202000173 ], [ -95.296223984552668, 29.772527201816676 ], [ -95.296515984566639, 29.772535202303249 ], [ -95.296712985524707, 29.772559201963411 ], [ -95.29719898531809, 29.772681202243199 ], [ -95.297738985796627, 29.772832201790745 ], [ -95.297817985828559, 29.772848202510815 ], [ -95.298741985613859, 29.772855201886824 ], [ -95.301120986049156, 29.772832202032831 ], [ -95.302232986335568, 29.772848201773652 ], [ -95.303248986535621, 29.77285520187883 ], [ -95.303255986909335, 29.771001201623307 ], [ -95.303258986936484, 29.769184201038303 ], [ -95.303265986956447, 29.767499200559691 ], [ -95.303273986183086, 29.767381200740346 ], [ -95.304296987088165, 29.767382200567766 ], [ -95.304301986657492, 29.766265200677562 ], [ -95.304303987042289, 29.763178199764727 ], [ -95.304315986260178, 29.763022199785954 ], [ -95.304319986670194, 29.762829199425088 ], [ -95.304308986584644, 29.761993199528757 ], [ -95.304336986227085, 29.76163919970756 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1097, "Tract": "48201211502", "Area_SqMi": 0.92137551146403707, "total_2009": 2033, "total_2010": 1945, "total_2011": 1801, "total_2012": 2010, "total_2013": 1949, "total_2014": 1994, "total_2015": 2095, "total_2016": 1926, "total_2017": 1870, "total_2018": 1685, "total_2019": 1666, "total_2020": 1400, "age1": 307, "age2": 821, "age3": 420, "earn1": 276, "earn2": 487, "earn3": 785, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 35, "naics_s05": 187, "naics_s06": 471, "naics_s07": 95, "naics_s08": 23, "naics_s09": 0, "naics_s10": 40, "naics_s11": 9, "naics_s12": 32, "naics_s13": 10, "naics_s14": 7, "naics_s15": 1, "naics_s16": 1, "naics_s17": 0, "naics_s18": 306, "naics_s19": 331, "naics_s20": 0, "race1": 1160, "race2": 218, "race3": 16, "race4": 134, "race5": 3, "race6": 17, "ethnicity1": 835, "ethnicity2": 713, "edu1": 376, "edu2": 319, "edu3": 322, "edu4": 224, "Shape_Length": 31257.577933188575, "Shape_Area": 25686372.309669212, "total_2021": 1348, "total_2022": 1548 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.315597989743466, 29.774424201385603 ], [ -95.315587990031702, 29.774205201743403 ], [ -95.315579990014484, 29.773867201302867 ], [ -95.315547989940427, 29.77264720118955 ], [ -95.315532989607277, 29.772185201517992 ], [ -95.315510989614509, 29.771721201268697 ], [ -95.315420990059465, 29.771632201590286 ], [ -95.315420990282107, 29.771032201329128 ], [ -95.315423989439438, 29.77041420099528 ], [ -95.315422989722521, 29.769821201278379 ], [ -95.31543398929773, 29.769359201157606 ], [ -95.315424990034998, 29.769199200586623 ], [ -95.315427989542087, 29.767834200801033 ], [ -95.315424989945967, 29.767647200841456 ], [ -95.315438989396725, 29.766199200167268 ], [ -95.315458990043595, 29.765337199519021 ], [ -95.315466989744976, 29.764992200056582 ], [ -95.315486990015486, 29.764683199876469 ], [ -95.315488989523956, 29.764644199566707 ], [ -95.315486989560654, 29.763632199373269 ], [ -95.31302398882147, 29.762913199797818 ], [ -95.312006988387537, 29.762621199791365 ], [ -95.31141498806501, 29.762447199459505 ], [ -95.308457988124118, 29.761601199274313 ], [ -95.307742986967867, 29.761392199798593 ], [ -95.306848987662789, 29.761151199717744 ], [ -95.305953986742281, 29.760916199453501 ], [ -95.305381986577373, 29.760721199663308 ], [ -95.304319986736587, 29.760157199176128 ], [ -95.304335986922695, 29.761526199685626 ], [ -95.304336986227085, 29.76163919970756 ], [ -95.304308986584644, 29.761993199528757 ], [ -95.304319986670194, 29.762829199425088 ], [ -95.304315986260178, 29.763022199785954 ], [ -95.304303987042289, 29.763178199764727 ], [ -95.304301986657492, 29.766265200677562 ], [ -95.304296987088165, 29.767382200567766 ], [ -95.303273986183086, 29.767381200740346 ], [ -95.303265986956447, 29.767499200559691 ], [ -95.303258986936484, 29.769184201038303 ], [ -95.303255986909335, 29.771001201623307 ], [ -95.303248986535621, 29.77285520187883 ], [ -95.302232986335568, 29.772848201773652 ], [ -95.301120986049156, 29.772832202032831 ], [ -95.298741985613859, 29.772855201886824 ], [ -95.297817985828559, 29.772848202510815 ], [ -95.297738985796627, 29.772832201790745 ], [ -95.29719898531809, 29.772681202243199 ], [ -95.296712985524707, 29.772559201963411 ], [ -95.296515984566639, 29.772535202303249 ], [ -95.296223984552668, 29.772527201816676 ], [ -95.29462498414027, 29.772572202000173 ], [ -95.293022984638853, 29.772605201937647 ], [ -95.292650983853434, 29.772618202162445 ], [ -95.292200984057331, 29.772707202033583 ], [ -95.291567983766981, 29.772870202353154 ], [ -95.29132898348773, 29.772896202263283 ], [ -95.291131983312809, 29.772883202006771 ], [ -95.290013983671656, 29.772862202264786 ], [ -95.289925982884057, 29.772858202546661 ], [ -95.289518983133775, 29.772837202321522 ], [ -95.289382983709501, 29.772826202595816 ], [ -95.289325983308586, 29.772818202611024 ], [ -95.28916998311793, 29.772795201934056 ], [ -95.288787982716698, 29.772752202787512 ], [ -95.288618983421458, 29.772737202121299 ], [ -95.287673983114118, 29.772625202789751 ], [ -95.287354982934588, 29.772597202443233 ], [ -95.285767982709757, 29.772399202333734 ], [ -95.285661981912085, 29.772389202660516 ], [ -95.284390982109059, 29.772238202739789 ], [ -95.283916982282818, 29.772185202424801 ], [ -95.283957982069325, 29.774117203109803 ], [ -95.283962982048848, 29.774286203200315 ], [ -95.283960981850157, 29.774584203070873 ], [ -95.283988981880128, 29.775348202965056 ], [ -95.284021982374597, 29.776883202976851 ], [ -95.284028981654913, 29.777616203223825 ], [ -95.284037982062927, 29.777947203902901 ], [ -95.284042982531801, 29.77812020359767 ], [ -95.284318981879679, 29.778117203511297 ], [ -95.287688983307547, 29.778083203775765 ], [ -95.28812298357542, 29.778066203761004 ], [ -95.28840698346086, 29.778055203355709 ], [ -95.289919983478086, 29.778037203343239 ], [ -95.290362983897069, 29.778009203256495 ], [ -95.290841983894722, 29.777969203069912 ], [ -95.291257984256006, 29.777896203339754 ], [ -95.29179898390349, 29.777788203255678 ], [ -95.292224984021615, 29.777697203378533 ], [ -95.292708984619836, 29.777556203087649 ], [ -95.293279984779076, 29.77736320283654 ], [ -95.294309984615182, 29.776919202680773 ], [ -95.295286984626401, 29.776519203118021 ], [ -95.296184985316032, 29.776149202872585 ], [ -95.297582985599234, 29.775572202990471 ], [ -95.298848985879459, 29.77506320263786 ], [ -95.299476985651552, 29.774845202036488 ], [ -95.300018986526624, 29.77468920244295 ], [ -95.300061985933198, 29.774678202532606 ], [ -95.300633986046762, 29.774531202498991 ], [ -95.301109986560689, 29.774448202460089 ], [ -95.301234986417555, 29.774426202381136 ], [ -95.302462986866018, 29.774344201925746 ], [ -95.306370987714146, 29.774350202393723 ], [ -95.307413988453717, 29.774364201841756 ], [ -95.310116989020869, 29.774400201626634 ], [ -95.310552988950917, 29.774405201774865 ], [ -95.312085988920927, 29.774421201618679 ], [ -95.312400989492133, 29.774424201867372 ], [ -95.31244098942139, 29.774425202331592 ], [ -95.312517989644974, 29.774426201761617 ], [ -95.312819988862799, 29.774426202049131 ], [ -95.315177990231689, 29.774424201674403 ], [ -95.315597989743466, 29.774424201385603 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1098, "Tract": "48201311002", "Area_SqMi": 0.6111159407613842, "total_2009": 681, "total_2010": 704, "total_2011": 736, "total_2012": 804, "total_2013": 722, "total_2014": 725, "total_2015": 733, "total_2016": 614, "total_2017": 621, "total_2018": 686, "total_2019": 706, "total_2020": 670, "age1": 79, "age2": 299, "age3": 206, "earn1": 42, "earn2": 164, "earn3": 378, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 201, "naics_s06": 153, "naics_s07": 15, "naics_s08": 111, "naics_s09": 0, "naics_s10": 18, "naics_s11": 2, "naics_s12": 14, "naics_s13": 2, "naics_s14": 5, "naics_s15": 0, "naics_s16": 3, "naics_s17": 0, "naics_s18": 2, "naics_s19": 55, "naics_s20": 0, "race1": 479, "race2": 65, "race3": 7, "race4": 26, "race5": 1, "race6": 6, "ethnicity1": 340, "ethnicity2": 244, "edu1": 123, "edu2": 134, "edu3": 142, "edu4": 106, "Shape_Length": 20350.392706021579, "Shape_Area": 17036866.493041545, "total_2021": 629, "total_2022": 584 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.302904985629056, 29.745112196029687 ], [ -95.303202985408575, 29.744367195931229 ], [ -95.301349985254006, 29.743784195783242 ], [ -95.301216984512621, 29.743745196294203 ], [ -95.299072984344818, 29.743072196041531 ], [ -95.299052984816512, 29.742319196191719 ], [ -95.299030984250024, 29.741607196062901 ], [ -95.29900698462481, 29.740807195224601 ], [ -95.298976983940406, 29.740036195183219 ], [ -95.298948983757498, 29.739256195354709 ], [ -95.298342984156008, 29.739052195514521 ], [ -95.296375983737136, 29.738426195210462 ], [ -95.295281983088628, 29.738073195018067 ], [ -95.295104983535737, 29.738015194770885 ], [ -95.294453982592017, 29.737802195330922 ], [ -95.292459982074391, 29.737161195237103 ], [ -95.290514981876314, 29.736556194820476 ], [ -95.29020698172009, 29.737340194678609 ], [ -95.289925981735308, 29.737994194825617 ], [ -95.289639982131007, 29.738680195316341 ], [ -95.289377981951787, 29.739348195878524 ], [ -95.289101982167438, 29.740029195921043 ], [ -95.288840981605603, 29.740708196181632 ], [ -95.288586982093989, 29.741371195583802 ], [ -95.288378982058461, 29.741843195753624 ], [ -95.288292982049725, 29.74204819637702 ], [ -95.288024982031942, 29.742747196036973 ], [ -95.288077981881656, 29.743052196073826 ], [ -95.288102981453065, 29.743138196612975 ], [ -95.28810698187371, 29.743165195897635 ], [ -95.288134982032858, 29.74333419620638 ], [ -95.288157981269975, 29.744008196298985 ], [ -95.288167981359933, 29.744734196646569 ], [ -95.28817798203616, 29.745440196860084 ], [ -95.28817898182389, 29.746166196696574 ], [ -95.288193981779273, 29.74687419737899 ], [ -95.288204982131091, 29.747580196875099 ], [ -95.288239982280942, 29.747769197663118 ], [ -95.288256981366089, 29.747857196991571 ], [ -95.288301982287706, 29.748225197365898 ], [ -95.288605981884203, 29.749761197257367 ], [ -95.288666982035622, 29.749805197857242 ], [ -95.28881798221289, 29.749915197390067 ], [ -95.288849982011826, 29.749930197308593 ], [ -95.289743981853022, 29.7494091974967 ], [ -95.290469982756107, 29.748779197833606 ], [ -95.290620982001855, 29.748648197330954 ], [ -95.290915982886929, 29.748519197423864 ], [ -95.291203982258295, 29.748317197622377 ], [ -95.291654982556864, 29.748140197341947 ], [ -95.292072982848268, 29.747907197519979 ], [ -95.292364982455851, 29.74756119721458 ], [ -95.293032983424396, 29.747275196789005 ], [ -95.293354983388866, 29.747210197284932 ], [ -95.293675983095198, 29.747225197172966 ], [ -95.293725983349304, 29.747229197270478 ], [ -95.294054983753298, 29.747242196963722 ], [ -95.295251983791175, 29.747188197317524 ], [ -95.295704984152906, 29.747225196755259 ], [ -95.295976983985611, 29.747308197030812 ], [ -95.296262983383286, 29.747454196872731 ], [ -95.296453984436269, 29.747642197106398 ], [ -95.296529983599868, 29.747809197276673 ], [ -95.296522984258317, 29.74816919681184 ], [ -95.296319983582023, 29.748828196821389 ], [ -95.295836983723262, 29.749541197524181 ], [ -95.295129983388961, 29.750250197896946 ], [ -95.295025983636833, 29.750355197637351 ], [ -95.29490898414187, 29.75066719767079 ], [ -95.294833984027107, 29.750866198047106 ], [ -95.294839983870077, 29.751153198182706 ], [ -95.295000983900891, 29.751521197650327 ], [ -95.29517998390422, 29.751758197501299 ], [ -95.295409983993821, 29.752063197518002 ], [ -95.296428984253396, 29.753058198130269 ], [ -95.296713983980922, 29.753452197899058 ], [ -95.297090984728356, 29.753971197947706 ], [ -95.297210984436461, 29.754066198274046 ], [ -95.297233984037689, 29.754050198291047 ], [ -95.297448984974494, 29.753896198360582 ], [ -95.297877984168267, 29.753592198479829 ], [ -95.298915985292652, 29.752861197926361 ], [ -95.29946698541265, 29.752486198114184 ], [ -95.299785984618126, 29.752212197852753 ], [ -95.300036985172014, 29.751973197385258 ], [ -95.300134984854481, 29.751757197386489 ], [ -95.300410984779774, 29.751087197975693 ], [ -95.300689985253726, 29.750435197325945 ], [ -95.300965984960158, 29.749769197423188 ], [ -95.3012369854913, 29.749106197554678 ], [ -95.301505985211648, 29.74843819696655 ], [ -95.301788985359096, 29.747777197156008 ], [ -95.302079985713164, 29.747131196323966 ], [ -95.302343985004867, 29.746477196546081 ], [ -95.302610985254489, 29.745812196762284 ], [ -95.302904985629056, 29.745112196029687 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1099, "Tract": "48201552701", "Area_SqMi": 0.81110167041778047, "total_2009": 2682, "total_2010": 3421, "total_2011": 3677, "total_2012": 3958, "total_2013": 4114, "total_2014": 3854, "total_2015": 3511, "total_2016": 3586, "total_2017": 3846, "total_2018": 3623, "total_2019": 3855, "total_2020": 5052, "age1": 1204, "age2": 3099, "age3": 1020, "earn1": 936, "earn2": 1427, "earn3": 2960, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 3, "naics_s07": 579, "naics_s08": 1, "naics_s09": 264, "naics_s10": 11, "naics_s11": 41, "naics_s12": 56, "naics_s13": 8, "naics_s14": 34, "naics_s15": 1, "naics_s16": 3524, "naics_s17": 256, "naics_s18": 449, "naics_s19": 92, "naics_s20": 0, "race1": 3123, "race2": 1253, "race3": 49, "race4": 778, "race5": 9, "race6": 111, "ethnicity1": 3851, "ethnicity2": 1472, "edu1": 719, "edu2": 978, "edu3": 1312, "edu4": 1110, "Shape_Length": 20015.392301354281, "Shape_Area": 22612126.35686478, "total_2021": 4996, "total_2022": 5323 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.556597060137847, 29.967831232810195 ], [ -95.556648060836764, 29.967770232992052 ], [ -95.556221060709177, 29.967481233377352 ], [ -95.555734060318727, 29.967198233359778 ], [ -95.554812060418186, 29.966661232765482 ], [ -95.554570059500691, 29.966508233077793 ], [ -95.553647059656328, 29.965929232692265 ], [ -95.552927059425016, 29.96547223261944 ], [ -95.552303059667622, 29.965089232587946 ], [ -95.551924058958932, 29.964813232966698 ], [ -95.550491058741116, 29.963856232692546 ], [ -95.550293059042588, 29.963714232881756 ], [ -95.549210058385825, 29.962912232148071 ], [ -95.548380058524145, 29.962235232153972 ], [ -95.547849057555325, 29.96181523242797 ], [ -95.547474057810646, 29.961528232323527 ], [ -95.547234057292442, 29.961346231651291 ], [ -95.5470990581629, 29.961252231597847 ], [ -95.547058057823634, 29.96121723163499 ], [ -95.54693105754491, 29.96133423200067 ], [ -95.546455057253297, 29.961755231868661 ], [ -95.545616057446949, 29.962460232082982 ], [ -95.544682057274841, 29.963135232553366 ], [ -95.544283057624497, 29.963399232454048 ], [ -95.543509057059765, 29.963862232530762 ], [ -95.542852057053025, 29.964190232506901 ], [ -95.541642056635112, 29.964805232644292 ], [ -95.540573056349359, 29.965247232935678 ], [ -95.53998705571739, 29.965496233252352 ], [ -95.539539056217606, 29.965693233521844 ], [ -95.538469055798771, 29.966163233551534 ], [ -95.539649055742785, 29.968291233395632 ], [ -95.539741056098379, 29.968455233332779 ], [ -95.540769056039395, 29.970195234040009 ], [ -95.541281056530366, 29.971090234017343 ], [ -95.541404056459896, 29.971306234473783 ], [ -95.542087057355729, 29.972502234321464 ], [ -95.542598057385689, 29.973396234655826 ], [ -95.544329057506559, 29.976468235526017 ], [ -95.546012058678457, 29.97946123588763 ], [ -95.546190058598569, 29.979462235993335 ], [ -95.548460059382222, 29.979458236116326 ], [ -95.549791059213234, 29.979424236033694 ], [ -95.549829059610644, 29.979411235212119 ], [ -95.549855058749984, 29.979375235646994 ], [ -95.54989305902663, 29.979329235321625 ], [ -95.549907059552012, 29.978797235718464 ], [ -95.549915059015632, 29.977812235451072 ], [ -95.549967059575422, 29.977763235428732 ], [ -95.550011059492917, 29.977736235605189 ], [ -95.550062058811562, 29.977727234874479 ], [ -95.550235058898565, 29.977716235263212 ], [ -95.550483058961234, 29.977718235454724 ], [ -95.550613059555459, 29.977724235363326 ], [ -95.551022059326741, 29.977733235407378 ], [ -95.551666059954314, 29.977738234821921 ], [ -95.551984059593522, 29.977736235175083 ], [ -95.552068059947317, 29.977735235595631 ], [ -95.552239059609661, 29.977723235261344 ], [ -95.552306060170821, 29.977680235200058 ], [ -95.552360060036278, 29.977624234791218 ], [ -95.552397059877379, 29.977556235212912 ], [ -95.552417059405911, 29.977475235528754 ], [ -95.552421060131664, 29.977381235280749 ], [ -95.5524120602485, 29.977031235131278 ], [ -95.552399059906804, 29.976736234583782 ], [ -95.552379059593946, 29.976337235221202 ], [ -95.552388059856298, 29.976190234835496 ], [ -95.552377060120776, 29.97590323442644 ], [ -95.552382060045971, 29.975611234777507 ], [ -95.552368059510229, 29.975179234529605 ], [ -95.55234105971212, 29.975038234326288 ], [ -95.552334059826833, 29.97500423467574 ], [ -95.552343059634964, 29.974935234624173 ], [ -95.554374059938766, 29.974910234497951 ], [ -95.554380060039236, 29.974205234194937 ], [ -95.556366060287772, 29.974165234186401 ], [ -95.556355060727583, 29.973591234627026 ], [ -95.556364060225761, 29.973395233840499 ], [ -95.556361060597155, 29.97330923385201 ], [ -95.556343061002167, 29.973170234310906 ], [ -95.556343060509775, 29.97309523403861 ], [ -95.556342061008763, 29.972718234077448 ], [ -95.556326060895259, 29.972264233522115 ], [ -95.556325060234798, 29.972135234304734 ], [ -95.556299060671293, 29.971342233482133 ], [ -95.556286060512633, 29.970966233349412 ], [ -95.55628606103177, 29.970951233660315 ], [ -95.556284060332402, 29.970880233642216 ], [ -95.556283060378576, 29.970698234042516 ], [ -95.556281060018648, 29.970647233932965 ], [ -95.556268060335725, 29.970280233179064 ], [ -95.556262060299161, 29.970023233136345 ], [ -95.556261060528541, 29.969855233153694 ], [ -95.556257060011916, 29.969737233157549 ], [ -95.556246059929521, 29.96940523354619 ], [ -95.556246060182701, 29.969195233084008 ], [ -95.556238060493754, 29.9690692330629 ], [ -95.556243060716341, 29.968942233338527 ], [ -95.55624006089505, 29.968584232851661 ], [ -95.556243060081528, 29.968478233197587 ], [ -95.55625606019386, 29.968382233201215 ], [ -95.556271060482842, 29.968323232771564 ], [ -95.55630806051245, 29.96822523352559 ], [ -95.556391060250348, 29.968097233031965 ], [ -95.556472060282601, 29.967983233230711 ], [ -95.556555060423818, 29.967887233065706 ], [ -95.556597060137847, 29.967831232810195 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1100, "Tract": "48201211101", "Area_SqMi": 0.49396159160350711, "total_2009": 8, "total_2010": 17, "total_2011": 24, "total_2012": 21, "total_2013": 24, "total_2014": 22, "total_2015": 25, "total_2016": 34, "total_2017": 36, "total_2018": 32, "total_2019": 34, "total_2020": 35, "age1": 11, "age2": 16, "age3": 11, "earn1": 16, "earn2": 15, "earn3": 7, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 27, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 17, "race2": 10, "race3": 0, "race4": 11, "race5": 0, "race6": 0, "ethnicity1": 26, "ethnicity2": 12, "edu1": 6, "edu2": 10, "edu3": 8, "edu4": 3, "Shape_Length": 17410.080489309214, "Shape_Area": 13770803.75019246, "total_2021": 31, "total_2022": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.340223996268421, 29.778409202127314 ], [ -95.340277996877774, 29.77725720190152 ], [ -95.340053996540533, 29.777356201504489 ], [ -95.33989499652516, 29.777426201250339 ], [ -95.339575995907992, 29.777565201588825 ], [ -95.338238995551137, 29.778150201627497 ], [ -95.337946995739145, 29.77827820211569 ], [ -95.337474995956811, 29.778480201594395 ], [ -95.337290995362551, 29.778555201917065 ], [ -95.336626996081165, 29.778840202355969 ], [ -95.336569996047558, 29.778865201716918 ], [ -95.33606799571055, 29.779090202258889 ], [ -95.335783995100357, 29.779189201926595 ], [ -95.335787995348682, 29.77952920259473 ], [ -95.335787995575515, 29.779562202402843 ], [ -95.335797995183583, 29.77985120193593 ], [ -95.335814995999982, 29.780845202644301 ], [ -95.335828995227644, 29.781846202435119 ], [ -95.33583699597645, 29.782829203002013 ], [ -95.335030995258165, 29.782839202515206 ], [ -95.334251995683132, 29.782844202852111 ], [ -95.333454995217011, 29.782855202724374 ], [ -95.33265199443089, 29.782861202587455 ], [ -95.331826994631371, 29.782875203406707 ], [ -95.330999993975013, 29.782888202896025 ], [ -95.331011994834327, 29.783873203518986 ], [ -95.331036993969818, 29.78492120314111 ], [ -95.331047994147525, 29.785609203887731 ], [ -95.331052994270806, 29.78628320413328 ], [ -95.331054995037363, 29.786955203969892 ], [ -95.331057994623507, 29.787632203819374 ], [ -95.331064994777179, 29.788304203940445 ], [ -95.331082994232816, 29.788975204269576 ], [ -95.331088995171072, 29.789665204860903 ], [ -95.331101994406097, 29.790378204589274 ], [ -95.331104994507825, 29.790851204424271 ], [ -95.331181994702845, 29.791112204474029 ], [ -95.3310239943428, 29.791263204387779 ], [ -95.330935994370492, 29.791378204643745 ], [ -95.330949994595244, 29.79190720459005 ], [ -95.33099499508188, 29.793977204874366 ], [ -95.331253994841319, 29.794008204841461 ], [ -95.331445994956738, 29.794018205172961 ], [ -95.332049995618348, 29.794010205701142 ], [ -95.336022996560189, 29.793935205398373 ], [ -95.33722199625366, 29.793923205133463 ], [ -95.338398997186431, 29.793907204605045 ], [ -95.339242997086544, 29.79390420496534 ], [ -95.339538996546793, 29.793907204850502 ], [ -95.339737997304965, 29.793915205436559 ], [ -95.339944996746993, 29.793910204606846 ], [ -95.339941997321205, 29.79372720485236 ], [ -95.339928997189787, 29.792870204350749 ], [ -95.339918997325327, 29.792478204312314 ], [ -95.33989199716828, 29.791544204738184 ], [ -95.3399059974967, 29.790772203927492 ], [ -95.339928997344231, 29.790470204208962 ], [ -95.339983996730595, 29.78893120430374 ], [ -95.340015996547393, 29.787631203908422 ], [ -95.340077997071262, 29.785211203056512 ], [ -95.340045996716952, 29.784307203259072 ], [ -95.340040996417386, 29.784078202576879 ], [ -95.340040996398599, 29.783840202526104 ], [ -95.340042996815484, 29.783518202474394 ], [ -95.340157996826335, 29.780261202557384 ], [ -95.340163996712079, 29.780106202189227 ], [ -95.340169996208758, 29.779900201929134 ], [ -95.340221996833336, 29.778872202252906 ], [ -95.340227996622914, 29.778599202230797 ], [ -95.340223996268421, 29.778409202127314 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1101, "Tract": "48201340701", "Area_SqMi": 0.73500068513967654, "total_2009": 988, "total_2010": 930, "total_2011": 1057, "total_2012": 835, "total_2013": 854, "total_2014": 855, "total_2015": 884, "total_2016": 843, "total_2017": 793, "total_2018": 805, "total_2019": 668, "total_2020": 621, "age1": 233, "age2": 341, "age3": 130, "earn1": 177, "earn2": 325, "earn3": 202, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 0, "naics_s06": 6, "naics_s07": 211, "naics_s08": 19, "naics_s09": 32, "naics_s10": 14, "naics_s11": 13, "naics_s12": 27, "naics_s13": 0, "naics_s14": 51, "naics_s15": 0, "naics_s16": 25, "naics_s17": 0, "naics_s18": 271, "naics_s19": 9, "naics_s20": 0, "race1": 506, "race2": 95, "race3": 4, "race4": 88, "race5": 0, "race6": 11, "ethnicity1": 502, "ethnicity2": 202, "edu1": 101, "edu2": 132, "edu3": 142, "edu4": 96, "Shape_Length": 18920.710473621206, "Shape_Area": 20490561.135449264, "total_2021": 668, "total_2022": 704 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.140444935796594, 29.562054164501486 ], [ -95.140673935980686, 29.561890164171288 ], [ -95.139398935825852, 29.560492163888867 ], [ -95.138913935164453, 29.559979163486545 ], [ -95.137685935247234, 29.558679163340539 ], [ -95.136116934549719, 29.557020162948241 ], [ -95.134299933516544, 29.555098162513151 ], [ -95.133978933742966, 29.554758162605932 ], [ -95.133677933613214, 29.554430162898964 ], [ -95.133634934078586, 29.554382162326018 ], [ -95.132422932756768, 29.553055162856218 ], [ -95.13168093288256, 29.552239162507099 ], [ -95.131488932931717, 29.552029162271531 ], [ -95.130738932710983, 29.551208162489399 ], [ -95.13064993306908, 29.551111162385556 ], [ -95.130553932871791, 29.551007161745034 ], [ -95.129847932629318, 29.550234161736068 ], [ -95.129490932257454, 29.549850161962404 ], [ -95.129372932189568, 29.549722161562485 ], [ -95.129280932296183, 29.54962116187151 ], [ -95.128599932223253, 29.548962161871977 ], [ -95.128470932225511, 29.549061161385946 ], [ -95.128369932272221, 29.549139161455731 ], [ -95.128257932270358, 29.5492241617081 ], [ -95.128076931989256, 29.549363161888472 ], [ -95.127347931637175, 29.549922161631429 ], [ -95.12717993170692, 29.550073162204125 ], [ -95.127090932098454, 29.550153161916434 ], [ -95.1267419317183, 29.550467161768299 ], [ -95.126213931761995, 29.550829161808913 ], [ -95.12554993132089, 29.551408162122179 ], [ -95.12525493114029, 29.551735162056229 ], [ -95.124970931533781, 29.551946162275129 ], [ -95.124677930815295, 29.552141162074214 ], [ -95.124473931118558, 29.552265162157202 ], [ -95.124287931250933, 29.552369162727956 ], [ -95.123946930734192, 29.552544162577274 ], [ -95.123546930878248, 29.552727162263682 ], [ -95.123394930837534, 29.552800162946792 ], [ -95.12306893061195, 29.552974162819787 ], [ -95.122911930400065, 29.55306616312404 ], [ -95.122603930348504, 29.553262162639857 ], [ -95.122291930287147, 29.553482163085221 ], [ -95.122088930991794, 29.553627162824288 ], [ -95.120344930085707, 29.554872163548634 ], [ -95.121328930042779, 29.555946163562115 ], [ -95.122124931162162, 29.556809163599045 ], [ -95.122518931383752, 29.55723316410571 ], [ -95.124119931623255, 29.558926163797263 ], [ -95.124619931409839, 29.559487164252022 ], [ -95.125666931563217, 29.560595164487925 ], [ -95.126713931813711, 29.561711164091854 ], [ -95.127320932123979, 29.562344164666431 ], [ -95.127801932472181, 29.562873164388996 ], [ -95.129526933416983, 29.564720164575515 ], [ -95.130182932917819, 29.56542916477764 ], [ -95.131747933219998, 29.567088165598744 ], [ -95.132432934197311, 29.567768165814893 ], [ -95.133103933990398, 29.567272165599658 ], [ -95.13355993454357, 29.566938165401901 ], [ -95.135103934310635, 29.565859164595114 ], [ -95.13671093446942, 29.564715164559892 ], [ -95.137568934736478, 29.5641101642852 ], [ -95.138068935004583, 29.563746164520712 ], [ -95.138543935049043, 29.563409164162721 ], [ -95.138706934942931, 29.563293164441973 ], [ -95.139605935313512, 29.562656164163876 ], [ -95.1401749358442, 29.562248164446764 ], [ -95.140444935796594, 29.562054164501486 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1102, "Tract": "48201510701", "Area_SqMi": 0.22288217306122846, "total_2009": 2165, "total_2010": 2197, "total_2011": 2467, "total_2012": 2425, "total_2013": 2419, "total_2014": 2584, "total_2015": 3135, "total_2016": 2372, "total_2017": 2367, "total_2018": 2329, "total_2019": 2358, "total_2020": 2424, "age1": 309, "age2": 1269, "age3": 576, "earn1": 135, "earn2": 290, "earn3": 1729, "naics_s01": 5, "naics_s02": 47, "naics_s03": 92, "naics_s04": 24, "naics_s05": 5, "naics_s06": 166, "naics_s07": 9, "naics_s08": 124, "naics_s09": 1, "naics_s10": 165, "naics_s11": 79, "naics_s12": 430, "naics_s13": 154, "naics_s14": 408, "naics_s15": 1, "naics_s16": 106, "naics_s17": 0, "naics_s18": 42, "naics_s19": 296, "naics_s20": 0, "race1": 1606, "race2": 333, "race3": 14, "race4": 180, "race5": 0, "race6": 21, "ethnicity1": 1701, "ethnicity2": 453, "edu1": 221, "edu2": 378, "edu3": 559, "edu4": 687, "Shape_Length": 11142.798586272425, "Shape_Area": 6213573.5182954213, "total_2021": 2211, "total_2022": 2154 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.409395013529391, 29.765420196850641 ], [ -95.409487013614282, 29.765337196701992 ], [ -95.409390013654061, 29.76442819658541 ], [ -95.409368013223911, 29.763922196384492 ], [ -95.409300013759889, 29.763130196194165 ], [ -95.409153013922221, 29.76242219582052 ], [ -95.408977013023915, 29.761798196322303 ], [ -95.408957013922048, 29.761729195650179 ], [ -95.408923013363307, 29.761616196141567 ], [ -95.408894013306721, 29.761525195688829 ], [ -95.408710013446765, 29.76093019572393 ], [ -95.408657012890586, 29.760654195958828 ], [ -95.408632013000044, 29.760527195431958 ], [ -95.408550013067995, 29.76049119584296 ], [ -95.408413013527337, 29.760431196212743 ], [ -95.408088013334336, 29.76038719614991 ], [ -95.407800013543209, 29.760428195733397 ], [ -95.407313012983522, 29.76069519595389 ], [ -95.406993013165774, 29.760763195473121 ], [ -95.405396012626497, 29.760906195744482 ], [ -95.404122012597369, 29.760882196216034 ], [ -95.403593011859641, 29.760927196384323 ], [ -95.402719012117686, 29.761315196443743 ], [ -95.402247011663164, 29.761652196175728 ], [ -95.401751011820537, 29.761828196175831 ], [ -95.401193011797758, 29.761947196274232 ], [ -95.400497011709803, 29.762015195959478 ], [ -95.399033010919055, 29.761806196802926 ], [ -95.398456010739622, 29.761855196405484 ], [ -95.39843001117535, 29.76186319652496 ], [ -95.398457010506519, 29.761923196228164 ], [ -95.398497010495291, 29.762020196019478 ], [ -95.398625010503437, 29.762332196739067 ], [ -95.398832010334445, 29.762730196372548 ], [ -95.398909010795364, 29.762929196995525 ], [ -95.398977010542012, 29.763171196644631 ], [ -95.399024011059794, 29.763534196587862 ], [ -95.398961010468483, 29.763812196877087 ], [ -95.398931011358187, 29.763946196450824 ], [ -95.398902011147314, 29.764075196855813 ], [ -95.398835011177837, 29.764248197046992 ], [ -95.398718011246515, 29.764455197062059 ], [ -95.398473010394554, 29.764883197424123 ], [ -95.398222011184728, 29.765294197022257 ], [ -95.397901010813854, 29.765744196799062 ], [ -95.3975040103021, 29.766270197444001 ], [ -95.397373011151785, 29.766572197543585 ], [ -95.397627010583292, 29.766543197611163 ], [ -95.398098011258853, 29.766555197715221 ], [ -95.3987750112654, 29.76653119742506 ], [ -95.399054011361613, 29.76649419753884 ], [ -95.399518011281657, 29.766398197395358 ], [ -95.39972401150186, 29.766374197174251 ], [ -95.400810011526872, 29.766354197040361 ], [ -95.401708011860634, 29.766322196826003 ], [ -95.401823012163248, 29.766334197614071 ], [ -95.401995011688243, 29.766339196823964 ], [ -95.40215501138691, 29.766327197039903 ], [ -95.402321012299794, 29.766309197548082 ], [ -95.402528012246691, 29.766271197100536 ], [ -95.402774011623407, 29.766219196857548 ], [ -95.403057011734575, 29.76618519721508 ], [ -95.403323012146231, 29.766175197297358 ], [ -95.404795012701584, 29.7661491974239 ], [ -95.406050013139819, 29.766130197472073 ], [ -95.406148013036244, 29.766124197273996 ], [ -95.407088013464431, 29.766109196823741 ], [ -95.40718301351508, 29.766112197062657 ], [ -95.408277013693521, 29.766099196782363 ], [ -95.409283013510446, 29.766076196731877 ], [ -95.409391013288953, 29.766079197120096 ], [ -95.409395013529391, 29.765420196850641 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1103, "Tract": "48201410101", "Area_SqMi": 0.16668290425266369, "total_2009": 144, "total_2010": 143, "total_2011": 146, "total_2012": 141, "total_2013": 148, "total_2014": 163, "total_2015": 111, "total_2016": 93, "total_2017": 125, "total_2018": 162, "total_2019": 158, "total_2020": 163, "age1": 90, "age2": 164, "age3": 31, "earn1": 60, "earn2": 116, "earn3": 109, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 7, "naics_s10": 0, "naics_s11": 24, "naics_s12": 38, "naics_s13": 0, "naics_s14": 80, "naics_s15": 0, "naics_s16": 12, "naics_s17": 15, "naics_s18": 53, "naics_s19": 56, "naics_s20": 0, "race1": 224, "race2": 34, "race3": 3, "race4": 18, "race5": 0, "race6": 6, "ethnicity1": 183, "ethnicity2": 102, "edu1": 36, "edu2": 55, "edu3": 64, "edu4": 40, "Shape_Length": 8637.5090680534813, "Shape_Area": 4646834.089922498, "total_2021": 239, "total_2022": 285 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.385740006717484, 29.752626195298483 ], [ -95.385739007329434, 29.752004194436385 ], [ -95.384971006779935, 29.752011195179236 ], [ -95.384869007249989, 29.752020194890367 ], [ -95.384111006532777, 29.752027195138904 ], [ -95.384006006165464, 29.752035195200449 ], [ -95.383045006278877, 29.752044194694122 ], [ -95.382167005671576, 29.752048195405518 ], [ -95.381289005564298, 29.752053195047587 ], [ -95.380405005136055, 29.752055195178048 ], [ -95.379522005912804, 29.752060195331715 ], [ -95.379141005283998, 29.752071195230052 ], [ -95.379036005268901, 29.752118194730514 ], [ -95.378939005673004, 29.752133195109465 ], [ -95.378760005566264, 29.752098194737496 ], [ -95.378647005301588, 29.752121195159638 ], [ -95.378647004938173, 29.752707195337134 ], [ -95.378648005411151, 29.75298019497971 ], [ -95.378658005228473, 29.753099195650698 ], [ -95.378667005436583, 29.753922195594591 ], [ -95.378675005670829, 29.754547195650972 ], [ -95.378685005361945, 29.755173195628377 ], [ -95.378689004900778, 29.755809195535857 ], [ -95.378693005329822, 29.756436195779333 ], [ -95.378703005403153, 29.757068196345973 ], [ -95.378705005865243, 29.757728196101752 ], [ -95.378704005386467, 29.757741196324346 ], [ -95.378696005284837, 29.757891196207794 ], [ -95.37886800560193, 29.757910196086691 ], [ -95.379376005541758, 29.757903195895633 ], [ -95.380277005407947, 29.757898195990272 ], [ -95.381182005596344, 29.757896196525451 ], [ -95.381346006525035, 29.757890196322062 ], [ -95.381618006512355, 29.757874196188983 ], [ -95.381847006325472, 29.757823196217142 ], [ -95.382087005823252, 29.757769196332003 ], [ -95.382231006401028, 29.757726196416144 ], [ -95.382485006106364, 29.757692195944944 ], [ -95.383078006891267, 29.757681195846867 ], [ -95.383262006365925, 29.757676196208184 ], [ -95.383536006996891, 29.757668195968176 ], [ -95.383777006931965, 29.75766919592942 ], [ -95.384021007088052, 29.757662195776618 ], [ -95.384403006720532, 29.757653196096165 ], [ -95.385189007134727, 29.757634195623364 ], [ -95.385718006982714, 29.757624195922652 ], [ -95.385706007220648, 29.756919196262167 ], [ -95.385709006770099, 29.756235195327282 ], [ -95.38570500751176, 29.755746195707676 ], [ -95.385703007155527, 29.755563195248261 ], [ -95.385695007073323, 29.754858195644779 ], [ -95.385687006641817, 29.754175195623326 ], [ -95.385715007410326, 29.753455195123891 ], [ -95.385729007540846, 29.753053194736971 ], [ -95.385732006812333, 29.752987195181777 ], [ -95.385740006717484, 29.752626195298483 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1104, "Tract": "48201552802", "Area_SqMi": 1.1191285074897026, "total_2009": 3696, "total_2010": 4105, "total_2011": 3853, "total_2012": 4067, "total_2013": 4270, "total_2014": 4462, "total_2015": 4939, "total_2016": 5035, "total_2017": 5122, "total_2018": 4813, "total_2019": 4399, "total_2020": 4031, "age1": 1459, "age2": 1575, "age3": 692, "earn1": 1289, "earn2": 1274, "earn3": 1163, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 39, "naics_s05": 5, "naics_s06": 31, "naics_s07": 345, "naics_s08": 65, "naics_s09": 59, "naics_s10": 60, "naics_s11": 26, "naics_s12": 274, "naics_s13": 213, "naics_s14": 69, "naics_s15": 59, "naics_s16": 111, "naics_s17": 107, "naics_s18": 2178, "naics_s19": 84, "naics_s20": 0, "race1": 2787, "race2": 655, "race3": 23, "race4": 188, "race5": 3, "race6": 70, "ethnicity1": 2698, "ethnicity2": 1028, "edu1": 453, "edu2": 604, "edu3": 663, "edu4": 547, "Shape_Length": 32354.595403541454, "Shape_Area": 31199387.381229471, "total_2021": 3909, "total_2022": 3726 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.54602205855582, 29.979478235620793 ], [ -95.546012058678457, 29.97946123588763 ], [ -95.544329057506559, 29.976468235526017 ], [ -95.542598057385689, 29.973396234655826 ], [ -95.542087057355729, 29.972502234321464 ], [ -95.541404056459896, 29.971306234473783 ], [ -95.541281056530366, 29.971090234017343 ], [ -95.540769056039395, 29.970195234040009 ], [ -95.539741056098379, 29.968455233332779 ], [ -95.539649055742785, 29.968291233395632 ], [ -95.538469055798771, 29.966163233551534 ], [ -95.538216055881193, 29.966274233015437 ], [ -95.538111055473266, 29.966320233144476 ], [ -95.53798405609983, 29.966381233523023 ], [ -95.537458055971214, 29.966633233036781 ], [ -95.537369055736448, 29.966641233642854 ], [ -95.536996055655763, 29.966674233069206 ], [ -95.536518055707631, 29.966876233429399 ], [ -95.536359055488319, 29.96694223388651 ], [ -95.536073055057727, 29.967094233915972 ], [ -95.53571005470765, 29.967289233615482 ], [ -95.535562055260797, 29.967369233303884 ], [ -95.534699054488001, 29.967842233798081 ], [ -95.534290055004718, 29.968069233757706 ], [ -95.533603054468998, 29.968448234408346 ], [ -95.532947054064707, 29.968812234355237 ], [ -95.532872054897283, 29.968852234004508 ], [ -95.53281505417911, 29.968882233945745 ], [ -95.532788054166502, 29.968896234240745 ], [ -95.532404053983129, 29.969118233923815 ], [ -95.532057054624943, 29.969303234160353 ], [ -95.530779054002338, 29.970014234532407 ], [ -95.53071505439695, 29.970050234485953 ], [ -95.529921054223649, 29.970498234583271 ], [ -95.529810053984349, 29.97056423492284 ], [ -95.529182053718841, 29.970901234313981 ], [ -95.528909053805194, 29.971048234816557 ], [ -95.52632105257365, 29.972471234641191 ], [ -95.525795053284668, 29.972808235082482 ], [ -95.525291052877648, 29.973049234982 ], [ -95.525139053047582, 29.973122235141449 ], [ -95.524055052744117, 29.9737522357552 ], [ -95.523659051844703, 29.973970235067434 ], [ -95.522801052256469, 29.974444235372733 ], [ -95.522631052547254, 29.974537235165901 ], [ -95.522187051672233, 29.97477623564744 ], [ -95.520595051362832, 29.975614235816924 ], [ -95.520150051695765, 29.975850236192933 ], [ -95.519095051136262, 29.976407236276547 ], [ -95.518970050934456, 29.976475236039381 ], [ -95.518533051251964, 29.976727236240645 ], [ -95.517727050743929, 29.977193236605871 ], [ -95.517698050687358, 29.9772102363744 ], [ -95.517152050821807, 29.977526236531503 ], [ -95.5169540510079, 29.977642236223556 ], [ -95.515801050584813, 29.978283236616402 ], [ -95.514870050473974, 29.978794236687783 ], [ -95.51428604977113, 29.979117236977068 ], [ -95.513912049769417, 29.979320237009173 ], [ -95.513282049869659, 29.979667236936024 ], [ -95.513141049368514, 29.979745237068791 ], [ -95.513222050005865, 29.979843237352647 ], [ -95.513509050102257, 29.980245237222547 ], [ -95.513671050014892, 29.980465237427325 ], [ -95.513805050102135, 29.980628237122513 ], [ -95.514087050422631, 29.980936237562076 ], [ -95.514182050074695, 29.981037236949234 ], [ -95.514238049828379, 29.981087236982351 ], [ -95.514399050408556, 29.98123223736583 ], [ -95.514427050400855, 29.981257236887611 ], [ -95.514676050157917, 29.981455237098508 ], [ -95.514809050396693, 29.981550237193385 ], [ -95.515091050629934, 29.981752237517149 ], [ -95.51559005079018, 29.982073237376376 ], [ -95.515641050768082, 29.982106237132399 ], [ -95.515769050396003, 29.98219723715675 ], [ -95.516098051279656, 29.982450237583954 ], [ -95.516370050369389, 29.982670237265083 ], [ -95.516527051218404, 29.982827237281416 ], [ -95.516749051379392, 29.983070237299351 ], [ -95.516931050738393, 29.983287237160585 ], [ -95.516970050824156, 29.98334523769315 ], [ -95.51703505124614, 29.983420237261406 ], [ -95.517106051468716, 29.983518237299961 ], [ -95.517476051688419, 29.984024237483617 ], [ -95.518012051722351, 29.984756238088348 ], [ -95.518332051495165, 29.985193237534617 ], [ -95.518405051144782, 29.98530523777691 ], [ -95.518511051518985, 29.985450238375247 ], [ -95.518560051295424, 29.98551723803639 ], [ -95.518641051337397, 29.985621237561933 ], [ -95.518705052088464, 29.985724237706723 ], [ -95.518789051863664, 29.985826238075244 ], [ -95.518850051348579, 29.985929237963898 ], [ -95.518923051957856, 29.986031238349334 ], [ -95.518989051198716, 29.986134237780142 ], [ -95.519455051600261, 29.986740238453411 ], [ -95.51958805156265, 29.986941238012474 ], [ -95.519656051861915, 29.987034237921417 ], [ -95.519730052195214, 29.987121238664855 ], [ -95.519837051843979, 29.987273238053657 ], [ -95.519982052199154, 29.98719223789438 ], [ -95.520393052279573, 29.986974238553369 ], [ -95.520549052184975, 29.986887238199888 ], [ -95.5206750521575, 29.986819238441392 ], [ -95.520721052473718, 29.98678423809195 ], [ -95.520823052502237, 29.986730238044164 ], [ -95.520911051948147, 29.986664238456903 ], [ -95.521020052031744, 29.986570238229682 ], [ -95.521072052471411, 29.986514237926912 ], [ -95.521112052603854, 29.986452237886937 ], [ -95.521320051830983, 29.986210238269376 ], [ -95.521379052339753, 29.986151237612411 ], [ -95.521507052405653, 29.986043238404086 ], [ -95.521655052635609, 29.985946237662692 ], [ -95.521971052803892, 29.985769238104147 ], [ -95.522067052146767, 29.985714237839485 ], [ -95.522529052850629, 29.985467237407295 ], [ -95.52288705248165, 29.985266238170748 ], [ -95.522975052840735, 29.985228237612755 ], [ -95.523058052257099, 29.985183238096951 ], [ -95.523129052744309, 29.985137237439652 ], [ -95.523392053086326, 29.984998237916656 ], [ -95.523427053214803, 29.984980237866644 ], [ -95.523538053000422, 29.984918237366347 ], [ -95.523632052912617, 29.984866237637043 ], [ -95.523722053152312, 29.984820237472469 ], [ -95.523844053285927, 29.984764237408267 ], [ -95.523966052671057, 29.984715237522376 ], [ -95.524028053412508, 29.984675237497761 ], [ -95.524140052688537, 29.984625237632532 ], [ -95.524220053201489, 29.984604237568973 ], [ -95.524291052771531, 29.984575237933971 ], [ -95.524721052931284, 29.98446823754378 ], [ -95.525072053176316, 29.98439123741592 ], [ -95.525338052803917, 29.98435423768462 ], [ -95.525521053650252, 29.984335237329145 ], [ -95.525709053698137, 29.984328237504574 ], [ -95.526346053519902, 29.984328237299721 ], [ -95.526513053326767, 29.984309237825666 ], [ -95.526664053479635, 29.984279237264975 ], [ -95.526914053962756, 29.984190237211354 ], [ -95.526961053652656, 29.984169237760867 ], [ -95.527148053354665, 29.984057237124873 ], [ -95.527297053311841, 29.983954236953 ], [ -95.527391053523232, 29.983903237407244 ], [ -95.527459053408975, 29.983843237556258 ], [ -95.527549053267066, 29.98378923723223 ], [ -95.527796053577859, 29.983619237545224 ], [ -95.527872053949025, 29.983560237687442 ], [ -95.527951053721566, 29.983512237281108 ], [ -95.528175053648184, 29.983350237430788 ], [ -95.528394053541291, 29.983198237467263 ], [ -95.528630053709691, 29.983055237411172 ], [ -95.528876054446215, 29.982917237505109 ], [ -95.529141053623448, 29.982800237159701 ], [ -95.529752054661614, 29.982617237157669 ], [ -95.529854054498259, 29.982595237192168 ], [ -95.529943053988774, 29.982562236530747 ], [ -95.530067054153207, 29.982525237391382 ], [ -95.530230054559524, 29.98247323693818 ], [ -95.530423054928406, 29.982390236496023 ], [ -95.530516054023977, 29.982342237058639 ], [ -95.530607054154018, 29.982302236805761 ], [ -95.53069905482225, 29.982255236766836 ], [ -95.530788054115618, 29.982201236456156 ], [ -95.53087605423579, 29.982158236924253 ], [ -95.53127105458492, 29.981946236979145 ], [ -95.531426054609483, 29.981885236575629 ], [ -95.531256054544968, 29.98159523703869 ], [ -95.531034054741497, 29.981248236446877 ], [ -95.53048205383763, 29.980484236912595 ], [ -95.530174054675726, 29.980067236420339 ], [ -95.528396053477707, 29.977627235704556 ], [ -95.528638054186118, 29.97750823574658 ], [ -95.528817053650144, 29.977413236254456 ], [ -95.52890205370899, 29.977354235579842 ], [ -95.528981054204934, 29.977314235882638 ], [ -95.529128053599862, 29.977512236188023 ], [ -95.529198053543226, 29.977629235530081 ], [ -95.529246054030466, 29.977697236297359 ], [ -95.529505054217694, 29.978035236079862 ], [ -95.529542054293429, 29.978075236406323 ], [ -95.529647053572717, 29.978040235990722 ], [ -95.529719054508732, 29.978010235944243 ], [ -95.530201054605783, 29.977751236019561 ], [ -95.530331053809249, 29.9776582357952 ], [ -95.530415053909749, 29.97761723622952 ], [ -95.530549054455435, 29.977524236284161 ], [ -95.530660054071276, 29.977430235850566 ], [ -95.530959054517027, 29.977202235480583 ], [ -95.531624053986278, 29.976710235865156 ], [ -95.531991055044259, 29.976476235530548 ], [ -95.532105054236311, 29.976410235924032 ], [ -95.532178055082014, 29.976368235508243 ], [ -95.532300054235606, 29.976309235946047 ], [ -95.532375054579589, 29.976266235565884 ], [ -95.532420055011528, 29.976189235209532 ], [ -95.532419054819954, 29.976119235146108 ], [ -95.53234605473844, 29.975999235702968 ], [ -95.532317054338307, 29.975936235884024 ], [ -95.532213054686309, 29.975827235143853 ], [ -95.53226505491935, 29.975787235823073 ], [ -95.532315054100252, 29.975760235936697 ], [ -95.532395054128955, 29.975732235350904 ], [ -95.532523055044848, 29.975660235650075 ], [ -95.532664054933534, 29.975581235389601 ], [ -95.532924054824079, 29.97546123586563 ], [ -95.533022055279403, 29.975424235318805 ], [ -95.533182054979179, 29.975352235259621 ], [ -95.53331905501669, 29.975291235667154 ], [ -95.533518054402379, 29.975184234953396 ], [ -95.533611055054095, 29.975125235717801 ], [ -95.533718055174475, 29.97507323525145 ], [ -95.533923054586666, 29.974963235252581 ], [ -95.534028054738499, 29.974912235318676 ], [ -95.534117054598056, 29.974855235464506 ], [ -95.534213055064797, 29.974804235077201 ], [ -95.534297055268112, 29.974750235275582 ], [ -95.534382055025773, 29.974704235400242 ], [ -95.534461055144519, 29.97466923547292 ], [ -95.534526054609913, 29.974633235184289 ], [ -95.534582055558047, 29.974603234881471 ], [ -95.534615055100517, 29.974583235336333 ], [ -95.534655055601007, 29.974558234803865 ], [ -95.535121054910277, 29.975187234971472 ], [ -95.535604055295465, 29.975850235570288 ], [ -95.535801055316682, 29.976126235529634 ], [ -95.535884055829001, 29.976266235491376 ], [ -95.535944055498945, 29.976396235540999 ], [ -95.535974055976567, 29.976496235739052 ], [ -95.536019055981853, 29.976719235558814 ], [ -95.536053055265825, 29.977049236024424 ], [ -95.536066055504193, 29.977123236093156 ], [ -95.536108055602682, 29.977265235270362 ], [ -95.536169055342015, 29.977394235631966 ], [ -95.536311055611606, 29.977618236173296 ], [ -95.536766055393556, 29.978241236014977 ], [ -95.537210055664232, 29.978847235809919 ], [ -95.537232055726818, 29.978883235984856 ], [ -95.537385056291896, 29.97908223614067 ], [ -95.537527056431699, 29.97928523605156 ], [ -95.537618055809787, 29.979233236038365 ], [ -95.538895056681937, 29.978513236131718 ], [ -95.539095056858258, 29.978407235950737 ], [ -95.540145056311175, 29.977858235468506 ], [ -95.540277056575633, 29.977775235406565 ], [ -95.540301056768314, 29.977762235801467 ], [ -95.540340056464032, 29.977741235972307 ], [ -95.540428056575792, 29.977697235693022 ], [ -95.540489056606731, 29.977765235887198 ], [ -95.540516056989262, 29.977798236035166 ], [ -95.540557057132958, 29.977849235638693 ], [ -95.540624056710428, 29.977944235298718 ], [ -95.540702056991591, 29.978016235724098 ], [ -95.540727056644926, 29.978049235732726 ], [ -95.540876057127221, 29.978195235789421 ], [ -95.541062057132919, 29.978366235663955 ], [ -95.54136705687641, 29.9786032358335 ], [ -95.541619057534092, 29.97881423584553 ], [ -95.542440057318458, 29.9791442358033 ], [ -95.542813057514152, 29.979284235468256 ], [ -95.543460057447675, 29.979472235878482 ], [ -95.543659057261294, 29.979545235798405 ], [ -95.543759058110524, 29.979588236163881 ], [ -95.543865057601522, 29.97962723632698 ], [ -95.544173058338686, 29.979780235908198 ], [ -95.544371058123417, 29.979894235925428 ], [ -95.544465057506329, 29.979955235478286 ], [ -95.544555057688427, 29.980006236358719 ], [ -95.544654058052259, 29.980077235779689 ], [ -95.544845057818861, 29.979853235460478 ], [ -95.545001057894282, 29.979688235781062 ], [ -95.545195058514366, 29.979556235540862 ], [ -95.54602205855582, 29.979478235620793 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1105, "Tract": "48201453901", "Area_SqMi": 0.8916925974154718, "total_2009": 207, "total_2010": 238, "total_2011": 274, "total_2012": 282, "total_2013": 333, "total_2014": 316, "total_2015": 302, "total_2016": 344, "total_2017": 467, "total_2018": 446, "total_2019": 388, "total_2020": 514, "age1": 115, "age2": 294, "age3": 128, "earn1": 170, "earn2": 239, "earn3": 128, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 32, "naics_s06": 3, "naics_s07": 172, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 4, "naics_s12": 63, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 212, "naics_s17": 0, "naics_s18": 12, "naics_s19": 25, "naics_s20": 0, "race1": 204, "race2": 211, "race3": 4, "race4": 104, "race5": 2, "race6": 12, "ethnicity1": 432, "ethnicity2": 105, "edu1": 93, "edu2": 111, "edu3": 122, "edu4": 96, "Shape_Length": 23425.900326171319, "Shape_Area": 24858863.468810339, "total_2021": 556, "total_2022": 537 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.643681070499525, 29.689691173551466 ], [ -95.643652070363601, 29.688372172738568 ], [ -95.643650070243837, 29.688266172967062 ], [ -95.643649069829451, 29.688201172726437 ], [ -95.643647070156234, 29.687924173228378 ], [ -95.643629070238291, 29.687229173206529 ], [ -95.643632069774014, 29.687171172845328 ], [ -95.643629070072208, 29.687116173158653 ], [ -95.643639069722184, 29.686730172337498 ], [ -95.643641069791968, 29.686566172861259 ], [ -95.643640069658119, 29.686013172168121 ], [ -95.643643070005908, 29.685939172845128 ], [ -95.643535070263098, 29.685872172865377 ], [ -95.643505069774562, 29.685853172549269 ], [ -95.643475070329998, 29.685834172252257 ], [ -95.643440070139604, 29.685812172645321 ], [ -95.643368069561959, 29.685768172905849 ], [ -95.643349070393583, 29.685756172864011 ], [ -95.643324069660977, 29.685740172689275 ], [ -95.643034069953387, 29.685564172792287 ], [ -95.642822069450489, 29.685440172827018 ], [ -95.64212806987959, 29.685034172350282 ], [ -95.641584069860926, 29.684759172158984 ], [ -95.640703069544472, 29.68431017258154 ], [ -95.640679068833549, 29.68429817212601 ], [ -95.640595069259732, 29.684255172269175 ], [ -95.640534068787233, 29.684224172085127 ], [ -95.640264069122566, 29.684086172557478 ], [ -95.639976069009265, 29.683922172027916 ], [ -95.639773068981484, 29.683806172567582 ], [ -95.639739069333956, 29.683787172098299 ], [ -95.639643069328201, 29.683732172467426 ], [ -95.638755068476129, 29.683218171880693 ], [ -95.638744068960307, 29.683212172224653 ], [ -95.637905068313742, 29.682729172411566 ], [ -95.637881067987848, 29.682715172130955 ], [ -95.636829068583438, 29.68210917238428 ], [ -95.636630067849254, 29.681994171906013 ], [ -95.636597067879876, 29.681975172243462 ], [ -95.636549068047813, 29.681948172216135 ], [ -95.63604006808535, 29.681655171878461 ], [ -95.635698067306862, 29.681459171728545 ], [ -95.635614068224356, 29.681410171581881 ], [ -95.635472067288234, 29.681328171708188 ], [ -95.635369067864445, 29.68125017192931 ], [ -95.635113067934768, 29.681056171519757 ], [ -95.635091067125103, 29.681039171897847 ], [ -95.634859068061033, 29.680862172112125 ], [ -95.634828067334865, 29.680838172052994 ], [ -95.634753067540586, 29.680782172004839 ], [ -95.634424067875585, 29.680838172223527 ], [ -95.634166067442834, 29.680841171633446 ], [ -95.631066066444816, 29.680890172015133 ], [ -95.630900066095009, 29.680893171924062 ], [ -95.630065066383821, 29.680910171888168 ], [ -95.62734806577501, 29.680957171752603 ], [ -95.62642706493601, 29.680971172200131 ], [ -95.62548406487798, 29.680987172630893 ], [ -95.624598064595716, 29.681000172380887 ], [ -95.623369064372412, 29.681017172451664 ], [ -95.622990064769837, 29.681024171847234 ], [ -95.62240606412864, 29.681022171864058 ], [ -95.62210806475322, 29.681025172561316 ], [ -95.621626064644204, 29.681029172399647 ], [ -95.620632064344733, 29.681047172635886 ], [ -95.620548064109798, 29.68104917211209 ], [ -95.618683063893698, 29.681084172010323 ], [ -95.616246062957543, 29.681129172765722 ], [ -95.6162160632732, 29.681130172935283 ], [ -95.615486062297236, 29.681144172709246 ], [ -95.615338062081804, 29.681147172379706 ], [ -95.615044062150332, 29.68114817249883 ], [ -95.614427061902916, 29.681153172595959 ], [ -95.614428062248635, 29.681206172285471 ], [ -95.614433062042636, 29.681618172823203 ], [ -95.614438062397269, 29.681912172661175 ], [ -95.614483062192946, 29.683913173547712 ], [ -95.614473062085523, 29.68437517291984 ], [ -95.614472062792956, 29.684546173143584 ], [ -95.614471062680195, 29.685089173483036 ], [ -95.614384062721555, 29.685244173646012 ], [ -95.614331062597657, 29.688436174336935 ], [ -95.61433506298566, 29.688513173919194 ], [ -95.614767062317767, 29.688511173992168 ], [ -95.615073062856837, 29.688521174342597 ], [ -95.615220062487282, 29.688508174475217 ], [ -95.615907062669336, 29.688502173958188 ], [ -95.616090063391908, 29.688496173899409 ], [ -95.616453063692347, 29.68850117399716 ], [ -95.617366063701667, 29.688501174336931 ], [ -95.617520063233499, 29.688494174334341 ], [ -95.617552063327821, 29.688493173803941 ], [ -95.617638063796036, 29.688494173655535 ], [ -95.617913063267224, 29.688497174363771 ], [ -95.619618064217974, 29.688490174271319 ], [ -95.622350064805744, 29.688480174214654 ], [ -95.622656064446957, 29.688472174194334 ], [ -95.622937064666104, 29.688454173741036 ], [ -95.623220065029514, 29.688424173993763 ], [ -95.623642064921057, 29.688352173610081 ], [ -95.625119065592628, 29.688049173995978 ], [ -95.62543006574856, 29.687995174083312 ], [ -95.625698065171733, 29.687962173488085 ], [ -95.625939065281557, 29.687943173236803 ], [ -95.626267066014407, 29.687931173769762 ], [ -95.626660065302644, 29.687932173221331 ], [ -95.627017065886662, 29.687951173813886 ], [ -95.627312065628431, 29.687978173326215 ], [ -95.627617065685854, 29.688021173939354 ], [ -95.627926066431385, 29.688081173534158 ], [ -95.628235066054955, 29.688153173670948 ], [ -95.628536066594506, 29.688238173462345 ], [ -95.628828066404921, 29.688336173917744 ], [ -95.629113066787795, 29.688444173701434 ], [ -95.629359066029537, 29.688550173872734 ], [ -95.629646066788865, 29.688689173814023 ], [ -95.629906066523318, 29.688828173236956 ], [ -95.630090066611473, 29.688934174056161 ], [ -95.630724067307014, 29.689292173671234 ], [ -95.631008066736186, 29.689444174063354 ], [ -95.631153067464496, 29.689516174179481 ], [ -95.631449067414934, 29.689647173598971 ], [ -95.631755067285923, 29.689761173845454 ], [ -95.632216067304171, 29.689911173551319 ], [ -95.632373067201357, 29.689947174195446 ], [ -95.632527067034616, 29.689992174178311 ], [ -95.632681067363222, 29.690030174151897 ], [ -95.632987067462167, 29.690090173909901 ], [ -95.633280067519308, 29.690133173763964 ], [ -95.633684067238818, 29.690168173514447 ], [ -95.633922067587136, 29.690179174134496 ], [ -95.634277067413265, 29.690182173552632 ], [ -95.634345067794825, 29.690181173943035 ], [ -95.634715067846145, 29.690177173891563 ], [ -95.634816067604376, 29.690179174171472 ], [ -95.634936068104622, 29.69017217342569 ], [ -95.636352068506937, 29.69016217378843 ], [ -95.637761069091752, 29.690149173570358 ], [ -95.638175068671217, 29.690143173645918 ], [ -95.638347068799959, 29.690145173788373 ], [ -95.6393920690345, 29.690130173895092 ], [ -95.639563069473326, 29.690132173563217 ], [ -95.639992068943883, 29.690115173230929 ], [ -95.640214069225536, 29.690098173465433 ], [ -95.640528069226221, 29.690060173984246 ], [ -95.64083806932004, 29.690010173274803 ], [ -95.641073069516651, 29.689962173646595 ], [ -95.641568069246233, 29.689857173711697 ], [ -95.641730069818436, 29.689823173132467 ], [ -95.642014069642642, 29.689775173172173 ], [ -95.642135070188488, 29.689760173097536 ], [ -95.642330069400742, 29.68973817372353 ], [ -95.64269806951522, 29.689707173634829 ], [ -95.642933069695616, 29.689699173123351 ], [ -95.643681070499525, 29.689691173551466 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1106, "Tract": "48201250802", "Area_SqMi": 2.5381018565933298, "total_2009": 108, "total_2010": 65, "total_2011": 45, "total_2012": 47, "total_2013": 60, "total_2014": 96, "total_2015": 183, "total_2016": 226, "total_2017": 283, "total_2018": 228, "total_2019": 200, "total_2020": 208, "age1": 28, "age2": 83, "age3": 41, "earn1": 20, "earn2": 59, "earn3": 73, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 1, "naics_s05": 0, "naics_s06": 5, "naics_s07": 7, "naics_s08": 0, "naics_s09": 1, "naics_s10": 6, "naics_s11": 1, "naics_s12": 19, "naics_s13": 31, "naics_s14": 16, "naics_s15": 7, "naics_s16": 48, "naics_s17": 4, "naics_s18": 0, "naics_s19": 5, "naics_s20": 0, "race1": 108, "race2": 22, "race3": 1, "race4": 16, "race5": 1, "race6": 4, "ethnicity1": 127, "ethnicity2": 25, "edu1": 14, "edu2": 28, "edu3": 43, "edu4": 39, "Shape_Length": 45178.328981062215, "Shape_Area": 70757935.757079855, "total_2021": 209, "total_2022": 152 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.180660966401291, 30.015959255621834 ], [ -95.180673966078928, 30.015309255531442 ], [ -95.180611966631133, 30.014864255298352 ], [ -95.180533965748609, 30.014348255088169 ], [ -95.180252965942003, 30.013660255229009 ], [ -95.17989296565986, 30.012890255171424 ], [ -95.179835966396283, 30.012797255445456 ], [ -95.179644966073752, 30.012485255352335 ], [ -95.179546966222773, 30.012371254814344 ], [ -95.179228966193207, 30.012003255510241 ], [ -95.17886096556407, 30.011608254920247 ], [ -95.178322965066656, 30.011158255286077 ], [ -95.178202965407564, 30.011050254940855 ], [ -95.177930965146984, 30.010808254466415 ], [ -95.176493965155956, 30.009807255181059 ], [ -95.175873965182305, 30.009433254804584 ], [ -95.175351964187996, 30.009204254854154 ], [ -95.174925964726853, 30.009052255073662 ], [ -95.174015963772362, 30.008818254734152 ], [ -95.172689964240249, 30.008538254393414 ], [ -95.172324963475305, 30.008457254807844 ], [ -95.170276963549369, 30.008015254764999 ], [ -95.169618963270352, 30.00788525497045 ], [ -95.169485963442526, 30.008370254327993 ], [ -95.169322962632918, 30.008850254824949 ], [ -95.16921296271677, 30.009123254842571 ], [ -95.169174962662453, 30.009197254909569 ], [ -95.169094962833626, 30.009323254527136 ], [ -95.169012963439513, 30.009425255334122 ], [ -95.168917962853314, 30.00952225473209 ], [ -95.168808962520984, 30.009613254775058 ], [ -95.16874696296216, 30.00965625492519 ], [ -95.168458963241932, 30.009829255345959 ], [ -95.167970962871749, 30.010105255347245 ], [ -95.167620962754413, 30.01031625492827 ], [ -95.167336963061899, 30.010475255188247 ], [ -95.167265963092149, 30.01050225485778 ], [ -95.167191962932208, 30.010503254869704 ], [ -95.167143962163195, 30.01048225546235 ], [ -95.167095962743289, 30.010454255165481 ], [ -95.167056962529855, 30.010411255135185 ], [ -95.16676796268456, 30.010052255341609 ], [ -95.166653962141567, 30.009887255468559 ], [ -95.166307962249718, 30.010092254951459 ], [ -95.166194962304502, 30.010154255063934 ], [ -95.166093962037166, 30.010216255464414 ], [ -95.165987962594329, 30.010284255603661 ], [ -95.165938961743521, 30.010328255544351 ], [ -95.165886962122869, 30.010388255004965 ], [ -95.165816962266504, 30.010497255244573 ], [ -95.165773961821387, 30.010581255594058 ], [ -95.165683962030812, 30.010831255692196 ], [ -95.165562962237075, 30.011182255042364 ], [ -95.165412961932461, 30.01157325574659 ], [ -95.165370962490627, 30.011684255548239 ], [ -95.163503961971671, 30.011159255715516 ], [ -95.163397961742575, 30.011101255415536 ], [ -95.163103961826607, 30.011046255555485 ], [ -95.162988961534495, 30.010985255615147 ], [ -95.162858961166364, 30.010976255446085 ], [ -95.162561961086368, 30.010897255797307 ], [ -95.162465960994282, 30.010877255643422 ], [ -95.162038961437787, 30.010751255488088 ], [ -95.161877961047182, 30.010709255228235 ], [ -95.161616961456161, 30.010629255609508 ], [ -95.161530961394959, 30.010608255148 ], [ -95.161450960749264, 30.010583255842711 ], [ -95.161365961221691, 30.010547255713291 ], [ -95.161125960803787, 30.010501255792974 ], [ -95.161019960912895, 30.010463255286751 ], [ -95.160830960956702, 30.010414255078956 ], [ -95.160509961146886, 30.011390255352914 ], [ -95.160379960442967, 30.01159925528351 ], [ -95.159801960780001, 30.011961255734537 ], [ -95.159709961015452, 30.012093256197932 ], [ -95.159727960282169, 30.012159255902858 ], [ -95.159751960590384, 30.012243256216799 ], [ -95.159834961124318, 30.012400255789636 ], [ -95.159615961091873, 30.012501255551616 ], [ -95.159316960766688, 30.012623255980213 ], [ -95.158969960430596, 30.012669256148861 ], [ -95.158756960667617, 30.012706256117209 ], [ -95.158173959934388, 30.012856255776356 ], [ -95.157936960610897, 30.012860256074728 ], [ -95.157559960242338, 30.012763255833182 ], [ -95.157534959749157, 30.012822256176761 ], [ -95.157472959949203, 30.012927255824856 ], [ -95.157436959761853, 30.012977256249204 ], [ -95.157361960669746, 30.013058256342735 ], [ -95.157291959956837, 30.013119255928455 ], [ -95.157165960625861, 30.013216255989612 ], [ -95.157103960040089, 30.013254256545725 ], [ -95.157042959649786, 30.01328425574782 ], [ -95.156923960070543, 30.013323255923655 ], [ -95.156856960492235, 30.013341256044654 ], [ -95.156690959897574, 30.013370255890734 ], [ -95.156397960406309, 30.013398255790516 ], [ -95.156266959906148, 30.01341425650287 ], [ -95.156062959603034, 30.013436255948207 ], [ -95.156199960288774, 30.013653256581073 ], [ -95.156407960195352, 30.013939256702887 ], [ -95.156515960348244, 30.014054255905716 ], [ -95.156691959548056, 30.014137256471706 ], [ -95.157541960371177, 30.014534256484698 ], [ -95.157849960370555, 30.014685256102098 ], [ -95.157822960599773, 30.014901256870317 ], [ -95.157758960607509, 30.015761256680403 ], [ -95.157723960308218, 30.01596525623648 ], [ -95.157720960733371, 30.01605525712263 ], [ -95.157753960269375, 30.016595256876315 ], [ -95.157769960955918, 30.016701257158218 ], [ -95.157771960223883, 30.016812256599707 ], [ -95.157786960150901, 30.016908256731195 ], [ -95.157787960100208, 30.017003257090238 ], [ -95.157774960714562, 30.017093257175748 ], [ -95.157745960780687, 30.01717425699659 ], [ -95.157651960586335, 30.017312257351222 ], [ -95.157592960937521, 30.017366256696874 ], [ -95.157382960675875, 30.017500256562716 ], [ -95.157286960828728, 30.017520257219623 ], [ -95.157185960589814, 30.017535256738419 ], [ -95.156808960042611, 30.017548256727647 ], [ -95.156667959848036, 30.017561256731177 ], [ -95.156517959907177, 30.017559257109056 ], [ -95.155391959997885, 30.017588257450946 ], [ -95.15539396015636, 30.017756257220142 ], [ -95.155376959500032, 30.01790525682279 ], [ -95.155363959706335, 30.017977257055414 ], [ -95.155319960218421, 30.018118257395049 ], [ -95.155270959642664, 30.018237257043285 ], [ -95.15518396023873, 30.018401257300809 ], [ -95.155161959367717, 30.018454257379553 ], [ -95.155327960012343, 30.018523257568255 ], [ -95.155657960476972, 30.018702257744838 ], [ -95.155877959956257, 30.018866256858999 ], [ -95.156168959879267, 30.019130257404317 ], [ -95.156897960079277, 30.019933257578 ], [ -95.157100960416457, 30.020157257968631 ], [ -95.156568960370137, 30.020474258012893 ], [ -95.156247960153522, 30.020559257829394 ], [ -95.156061960083122, 30.020608258013365 ], [ -95.15510496024423, 30.020770257861443 ], [ -95.154950959674835, 30.020439257393495 ], [ -95.155028959719601, 30.020140257550317 ], [ -95.154355959540879, 30.020059257893255 ], [ -95.153791959342925, 30.019964257765395 ], [ -95.153140959351688, 30.019909257872211 ], [ -95.153010959521268, 30.019911257179334 ], [ -95.152645959176596, 30.019916257965122 ], [ -95.15244995894659, 30.01992025787705 ], [ -95.152279959025535, 30.02020025747569 ], [ -95.15193895899084, 30.020129257739832 ], [ -95.151837959518332, 30.020090258013081 ], [ -95.151641959092004, 30.019991257708906 ], [ -95.151041959132357, 30.019793257293571 ], [ -95.151023959122512, 30.019773257984262 ], [ -95.151028959222216, 30.019755258065036 ], [ -95.151446959390427, 30.019310257293544 ], [ -95.151509958951209, 30.01920525742463 ], [ -95.151515958691391, 30.019117257076097 ], [ -95.151443959438993, 30.018889257784743 ], [ -95.151396959095962, 30.018863257370011 ], [ -95.151305958712555, 30.018899257426654 ], [ -95.15129095921813, 30.018937257851675 ], [ -95.151326959102079, 30.019100257223073 ], [ -95.151332958977932, 30.019150257855252 ], [ -95.151319958815535, 30.019172257493164 ], [ -95.151174958930227, 30.019348257923234 ], [ -95.150801958682649, 30.019650257533431 ], [ -95.149557958533421, 30.019045257337837 ], [ -95.149203958371103, 30.018902257398764 ], [ -95.149057958358057, 30.018814257119477 ], [ -95.149032958420932, 30.018776257582161 ], [ -95.149026958046505, 30.018715257145121 ], [ -95.149051958731206, 30.018654257165121 ], [ -95.149114958036336, 30.018578257647153 ], [ -95.149241958585151, 30.018501257439805 ], [ -95.149474958079793, 30.018388257690169 ], [ -95.149380958842457, 30.018340257790111 ], [ -95.149292958111261, 30.018296256981518 ], [ -95.148849958458598, 30.018550257752413 ], [ -95.148666958418076, 30.018616257454013 ], [ -95.148615958304646, 30.018616257643668 ], [ -95.148584958277027, 30.018610257222406 ], [ -95.148274958523459, 30.018407257156159 ], [ -95.148224958414517, 30.018357257578423 ], [ -95.147946957776242, 30.018005257163285 ], [ -95.147744958218254, 30.017714257355774 ], [ -95.14761195754059, 30.017472257442908 ], [ -95.147598957814921, 30.017411257459777 ], [ -95.14760595786251, 30.017362257610696 ], [ -95.147617958194132, 30.017345257374245 ], [ -95.148066958438321, 30.017258257197444 ], [ -95.148129957584175, 30.017236257156377 ], [ -95.148142957674295, 30.017219257558949 ], [ -95.148148957557581, 30.017186257312446 ], [ -95.148117958068354, 30.017120256929189 ], [ -95.148028957816607, 30.017126257589801 ], [ -95.147681957978833, 30.017126257315869 ], [ -95.14765595742962, 30.017109256848343 ], [ -95.147649957773936, 30.017076257326689 ], [ -95.14768195838252, 30.016779257160671 ], [ -95.147731958354953, 30.016548257469168 ], [ -95.147778957417643, 30.016436257063098 ], [ -95.147696957410375, 30.016350257303817 ], [ -95.147574957838899, 30.016642257545669 ], [ -95.147472957565483, 30.016906256998666 ], [ -95.147447958218535, 30.016928256997037 ], [ -95.147390957459322, 30.016938257446817 ], [ -95.147308957571582, 30.016944257095812 ], [ -95.147264958139957, 30.016927257575269 ], [ -95.147232957474344, 30.016900256917488 ], [ -95.147087957879648, 30.016702257490934 ], [ -95.146361957655813, 30.015850257218975 ], [ -95.146150957245538, 30.01565225703111 ], [ -95.146020957341406, 30.015531257302342 ], [ -95.145464957324194, 30.015085257251375 ], [ -95.145224956844942, 30.014870256914307 ], [ -95.144990956698791, 30.014617257086456 ], [ -95.144700957161035, 30.014293256737695 ], [ -95.144517957244375, 30.014018257059593 ], [ -95.144397957004585, 30.013891256522225 ], [ -95.14423295651298, 30.013589256624634 ], [ -95.144188956646104, 30.01356725623355 ], [ -95.144119956776976, 30.013572256790802 ], [ -95.144093957213798, 30.013567256319391 ], [ -95.144011956396767, 30.013429256930536 ], [ -95.143898957132834, 30.013297256679266 ], [ -95.143879956608572, 30.013231256541193 ], [ -95.143778956909898, 30.013088256123886 ], [ -95.143771956763274, 30.013033256226521 ], [ -95.143784956600001, 30.012956256093339 ], [ -95.143809956423524, 30.012907256711038 ], [ -95.143993956983451, 30.012748256325022 ], [ -95.144145956481026, 30.012597256227565 ], [ -95.144036956343299, 30.012426256305091 ], [ -95.1433469564885, 30.01308625640484 ], [ -95.141900956740827, 30.020935258064963 ], [ -95.145688957902209, 30.022076258431401 ], [ -95.14788895787909, 30.024314259107037 ], [ -95.147960958432989, 30.02447225901178 ], [ -95.151908959549885, 30.033153259977649 ], [ -95.152085959832689, 30.033543260291829 ], [ -95.15398696002211, 30.034962260920807 ], [ -95.154777960204314, 30.035553260591236 ], [ -95.15620696061022, 30.036619261278975 ], [ -95.160559962409494, 30.034318259949071 ], [ -95.165846962903686, 30.031522259654928 ], [ -95.16826296379412, 30.030532259574017 ], [ -95.168618963846882, 30.030441259560828 ], [ -95.172451964710675, 30.029462259064328 ], [ -95.174272965542443, 30.02892325842534 ], [ -95.176537965960932, 30.027329258353173 ], [ -95.176734966295086, 30.026793258157372 ], [ -95.176904965479949, 30.02633125830846 ], [ -95.177630966220022, 30.02454625783454 ], [ -95.178198966067683, 30.023100257156752 ], [ -95.178827965761769, 30.021525257053447 ], [ -95.179253966265904, 30.020347256626046 ], [ -95.179384966435251, 30.01998325644038 ], [ -95.179415966598228, 30.019900256785302 ], [ -95.179698965693092, 30.019152256637803 ], [ -95.180179966753784, 30.017918256528954 ], [ -95.180267965985067, 30.01768425647629 ], [ -95.18035296649289, 30.01746425587212 ], [ -95.180471966594027, 30.01701325632548 ], [ -95.180535965997905, 30.016786256058985 ], [ -95.18057496663225, 30.016650255841032 ], [ -95.18062396684175, 30.016385255814637 ], [ -95.180660966401291, 30.015959255621834 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1107, "Tract": "48201251701", "Area_SqMi": 5.2604496907111908, "total_2009": 806, "total_2010": 971, "total_2011": 876, "total_2012": 758, "total_2013": 807, "total_2014": 227, "total_2015": 250, "total_2016": 319, "total_2017": 321, "total_2018": 373, "total_2019": 368, "total_2020": 436, "age1": 110, "age2": 258, "age3": 112, "earn1": 101, "earn2": 157, "earn3": 222, "naics_s01": 0, "naics_s02": 0, "naics_s03": 29, "naics_s04": 13, "naics_s05": 0, "naics_s06": 4, "naics_s07": 48, "naics_s08": 0, "naics_s09": 0, "naics_s10": 19, "naics_s11": 55, "naics_s12": 78, "naics_s13": 0, "naics_s14": 2, "naics_s15": 1, "naics_s16": 27, "naics_s17": 0, "naics_s18": 86, "naics_s19": 118, "naics_s20": 0, "race1": 416, "race2": 42, "race3": 3, "race4": 12, "race5": 1, "race6": 6, "ethnicity1": 375, "ethnicity2": 105, "edu1": 65, "edu2": 121, "edu3": 111, "edu4": 73, "Shape_Length": 51909.316509376848, "Shape_Area": 146652334.02740154, "total_2021": 419, "total_2022": 480 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.132053953991516, 30.021161258533404 ], [ -95.132914953843667, 30.016923257284187 ], [ -95.131787953316518, 30.013078256993339 ], [ -95.131724953541578, 30.012863257073491 ], [ -95.125343951955486, 30.014951258010196 ], [ -95.122538951214366, 30.015873258177837 ], [ -95.121788950887918, 30.016120257984888 ], [ -95.121380950823763, 30.016255258394011 ], [ -95.120971950547201, 30.016389258354412 ], [ -95.118095950314796, 30.017335258343554 ], [ -95.117172949598839, 30.017638258569662 ], [ -95.115506949833531, 30.018062258138848 ], [ -95.115420949196135, 30.018075258213305 ], [ -95.11439994968633, 30.018229258847342 ], [ -95.112655948777743, 30.018493259113477 ], [ -95.110210948083107, 30.018862259105898 ], [ -95.10552894726699, 30.019656258990072 ], [ -95.104357946910937, 30.019855259732417 ], [ -95.104045946718685, 30.019908259749897 ], [ -95.103235946886613, 30.02004725894966 ], [ -95.102997946381777, 30.020087259114945 ], [ -95.100317945927586, 30.020457259701789 ], [ -95.099821945226012, 30.020528259603964 ], [ -95.099617945529459, 30.020557259957386 ], [ -95.099423946069209, 30.020585259555578 ], [ -95.097520945488625, 30.020858259594739 ], [ -95.094617944509167, 30.021389260002 ], [ -95.093014944061522, 30.021827260119178 ], [ -95.091824943324568, 30.022130260172961 ], [ -95.090541943740163, 30.022663260208073 ], [ -95.090345942891616, 30.022745260674913 ], [ -95.089942943706603, 30.022911260531842 ], [ -95.089795943610397, 30.023373260169009 ], [ -95.089581943502949, 30.024045260313112 ], [ -95.089436943557033, 30.024500260687716 ], [ -95.089326943006029, 30.02484626079141 ], [ -95.08915794326974, 30.025284261073871 ], [ -95.089008943104503, 30.025669261454318 ], [ -95.088898943454922, 30.025991261259581 ], [ -95.088785942799504, 30.026318260979629 ], [ -95.088747943045405, 30.026475260908363 ], [ -95.088729942904678, 30.026541261061354 ], [ -95.088710943319441, 30.026614261121882 ], [ -95.088543943322961, 30.027232261111081 ], [ -95.088428943249184, 30.027663261673997 ], [ -95.088342942734883, 30.028032261508496 ], [ -95.088303943660563, 30.029365261823944 ], [ -95.088355942935422, 30.029644261966506 ], [ -95.088415942765337, 30.030161262360103 ], [ -95.088420943338065, 30.030200261961181 ], [ -95.088664943283334, 30.031103262463219 ], [ -95.088676943127311, 30.031128262477505 ], [ -95.088746942960853, 30.0312832619239 ], [ -95.088794943896147, 30.031425262635835 ], [ -95.088994943500111, 30.031973262177708 ], [ -95.089078944017572, 30.032194262312863 ], [ -95.089368943841635, 30.032958262548721 ], [ -95.089556943582494, 30.033541262251653 ], [ -95.089748944178055, 30.034390262613552 ], [ -95.089770943696365, 30.034537263166115 ], [ -95.08980694406921, 30.034893263282179 ], [ -95.089808943524332, 30.034943262729705 ], [ -95.089819943821709, 30.035213263116287 ], [ -95.089833943521185, 30.035593262667348 ], [ -95.089826943699421, 30.035821263018633 ], [ -95.089786944070937, 30.036067263288501 ], [ -95.089706944356621, 30.036521262827836 ], [ -95.089567944175016, 30.037316263624739 ], [ -95.089425944136764, 30.037876263473333 ], [ -95.089320943961923, 30.038395263603263 ], [ -95.089246943355334, 30.038844264080236 ], [ -95.089204943850646, 30.039277263861099 ], [ -95.089194943435047, 30.039482263597389 ], [ -95.089185943565198, 30.039679264228134 ], [ -95.089177944293297, 30.03985226349344 ], [ -95.089170944278067, 30.040021264186461 ], [ -95.089188943496751, 30.040522263990521 ], [ -95.089300944354491, 30.041925264239389 ], [ -95.089332943638055, 30.042390264358183 ], [ -95.089331943588064, 30.043260264347552 ], [ -95.089290944196932, 30.043720264789226 ], [ -95.089276944520449, 30.043779264585105 ], [ -95.089237944594956, 30.043943264575287 ], [ -95.089128944125591, 30.044472265027618 ], [ -95.089074944013547, 30.044672264873 ], [ -95.088957943612783, 30.045056264764671 ], [ -95.08881194412912, 30.04542726534973 ], [ -95.088742943828947, 30.045603264670348 ], [ -95.088506944065813, 30.04628426552814 ], [ -95.088475943599789, 30.046371265286304 ], [ -95.088363943891707, 30.046743264913658 ], [ -95.088214943611632, 30.047573265558363 ], [ -95.088145943963468, 30.047963265341693 ], [ -95.087898944124277, 30.049235265634664 ], [ -95.087171943697328, 30.052133266609392 ], [ -95.087153943920228, 30.05221526649748 ], [ -95.087072944322927, 30.052593266259873 ], [ -95.086941944203673, 30.053298266641129 ], [ -95.086872944434944, 30.053732266711144 ], [ -95.086838943998472, 30.054714266736159 ], [ -95.087001944261829, 30.055848267065631 ], [ -95.087183944353598, 30.057362267455982 ], [ -95.087654944491163, 30.057354267390867 ], [ -95.089814944322342, 30.057331267796723 ], [ -95.090449945390603, 30.057332267431736 ], [ -95.09069394470896, 30.05732326744236 ], [ -95.091082944829566, 30.057330267727512 ], [ -95.091281945395295, 30.057317267045544 ], [ -95.091484944768467, 30.05730926749975 ], [ -95.092505945708524, 30.057312267699153 ], [ -95.092700945859036, 30.057335267167087 ], [ -95.092892945311903, 30.05731326696112 ], [ -95.093078945562027, 30.057308267665206 ], [ -95.093449945506833, 30.057309267769551 ], [ -95.093697945729659, 30.057288266908945 ], [ -95.09396994609169, 30.057305266864432 ], [ -95.094430945594283, 30.057307266975442 ], [ -95.095188945787186, 30.057300267457524 ], [ -95.095493946742693, 30.057292267534589 ], [ -95.09572194672856, 30.057318267642568 ], [ -95.099030946918816, 30.056215266457031 ], [ -95.099428946892971, 30.056082266950821 ], [ -95.099608947652996, 30.056023266965237 ], [ -95.099787946855187, 30.055963266429064 ], [ -95.099822947699877, 30.055775267086226 ], [ -95.10000794698621, 30.055480266632923 ], [ -95.100208947115746, 30.055290266669321 ], [ -95.100483947037702, 30.055059266228856 ], [ -95.100729947389453, 30.054812266586829 ], [ -95.101378948135732, 30.054218266175564 ], [ -95.101682948167209, 30.054043266293544 ], [ -95.10189994828616, 30.054049266560817 ], [ -95.102400947665515, 30.054064266200125 ], [ -95.102622948459967, 30.053971266340707 ], [ -95.102793947957338, 30.053717265994926 ], [ -95.102804947512212, 30.053352265819338 ], [ -95.10294894833396, 30.05293226634593 ], [ -95.103134948174372, 30.052390266030905 ], [ -95.103238948349173, 30.05205626584608 ], [ -95.103430947708787, 30.051891266194353 ], [ -95.103464947988698, 30.051883266192558 ], [ -95.103727948036777, 30.051821266001568 ], [ -95.104143948238573, 30.05165226552063 ], [ -95.104473948474961, 30.051412265371621 ], [ -95.105473948841606, 30.050869265700531 ], [ -95.105885949142049, 30.050514265591104 ], [ -95.106187948302434, 30.050241265173657 ], [ -95.106467949196229, 30.049823265506287 ], [ -95.106682948401854, 30.049415265394131 ], [ -95.107019949296017, 30.049085264996979 ], [ -95.107392949239738, 30.048844265006878 ], [ -95.107667948582588, 30.048661264785324 ], [ -95.108066948954814, 30.048549265063311 ], [ -95.108514949040739, 30.048607265091462 ], [ -95.108888948942734, 30.048674264974988 ], [ -95.109307949394477, 30.048627265323308 ], [ -95.109825949257882, 30.048456265163267 ], [ -95.110276949632734, 30.048173264939319 ], [ -95.110633949486385, 30.047876264954791 ], [ -95.110659949896601, 30.047858265000539 ], [ -95.111037949363151, 30.047594265037457 ], [ -95.111574949772361, 30.047463264667449 ], [ -95.11294095026993, 30.047474264465837 ], [ -95.113333950728673, 30.047527264541152 ], [ -95.113529950047294, 30.047554264615538 ], [ -95.114247950563737, 30.047615264708256 ], [ -95.115038950462065, 30.047546264708775 ], [ -95.115679951317588, 30.047446264731647 ], [ -95.116677951517573, 30.047115264755618 ], [ -95.117090950917998, 30.046978264422808 ], [ -95.117824951618005, 30.046901264629216 ], [ -95.118446951303667, 30.046761264329028 ], [ -95.118670951392701, 30.046360264255359 ], [ -95.118537951674568, 30.045771264024264 ], [ -95.11854995213254, 30.045585264056786 ], [ -95.118589951207952, 30.044951263972482 ], [ -95.118868951996447, 30.044484263809146 ], [ -95.119508952342144, 30.043907263856759 ], [ -95.121590952632758, 30.04264226337461 ], [ -95.121867952153181, 30.042474263014899 ], [ -95.122360952146309, 30.042212263014743 ], [ -95.123434952565987, 30.041573263082405 ], [ -95.124339952736932, 30.041028262530332 ], [ -95.125928952760944, 30.038138262103505 ], [ -95.129014954211243, 30.032523261218227 ], [ -95.129235954140839, 30.032047260882546 ], [ -95.130229954447316, 30.029905260066375 ], [ -95.13031495372411, 30.02972326033132 ], [ -95.132053953991516, 30.021161258533404 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1108, "Tract": "48201250902", "Area_SqMi": 4.7239565708147184, "total_2009": 141, "total_2010": 114, "total_2011": 90, "total_2012": 93, "total_2013": 89, "total_2014": 98, "total_2015": 130, "total_2016": 123, "total_2017": 130, "total_2018": 150, "total_2019": 160, "total_2020": 145, "age1": 20, "age2": 98, "age3": 48, "earn1": 26, "earn2": 30, "earn3": 110, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 13, "naics_s07": 10, "naics_s08": 2, "naics_s09": 0, "naics_s10": 3, "naics_s11": 14, "naics_s12": 71, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 30, "naics_s17": 1, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 129, "race2": 15, "race3": 1, "race4": 19, "race5": 0, "race6": 2, "ethnicity1": 151, "ethnicity2": 15, "edu1": 12, "edu2": 24, "edu3": 43, "edu4": 67, "Shape_Length": 51835.172280395651, "Shape_Area": 131695824.0618394, "total_2021": 155, "total_2022": 166 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.162111962785701, 30.048630263386094 ], [ -95.162111963227076, 30.048553263373151 ], [ -95.162085962946364, 30.048465263264465 ], [ -95.161984963093843, 30.048223263021246 ], [ -95.161871962480319, 30.048008263383228 ], [ -95.161826962596564, 30.047970262597676 ], [ -95.161725963062793, 30.047915263389061 ], [ -95.161510963304849, 30.04787126312274 ], [ -95.161289962591411, 30.047843262668803 ], [ -95.160923962792282, 30.047882263301485 ], [ -95.160739962329558, 30.04793126297001 ], [ -95.160657962330319, 30.047898263163436 ], [ -95.16058896228401, 30.047827262861315 ], [ -95.160430962176946, 30.047596263259273 ], [ -95.160297962693264, 30.047436263188313 ], [ -95.160171962829651, 30.047343263312349 ], [ -95.160082962816162, 30.047288262689289 ], [ -95.159911962227667, 30.047101262578849 ], [ -95.159773962647208, 30.046848263235059 ], [ -95.159741961901219, 30.046831262887313 ], [ -95.159703962533399, 30.046831262820003 ], [ -95.159520962731875, 30.046892262843585 ], [ -95.159400961772775, 30.046881262859035 ], [ -95.159267962130897, 30.046831263007892 ], [ -95.159052961895966, 30.046600262584946 ], [ -95.158945962050183, 30.046545262978015 ], [ -95.158288961496012, 30.045979263103668 ], [ -95.157921961943742, 30.045687263035468 ], [ -95.157851961609452, 30.045568262925585 ], [ -95.157718961928296, 30.045256262507788 ], [ -95.157625961347023, 30.045174262545345 ], [ -95.157416961446387, 30.044961262296834 ], [ -95.157437962186705, 30.044846262281645 ], [ -95.157511961606104, 30.044598262480974 ], [ -95.157526961808415, 30.044375262896189 ], [ -95.15750196130135, 30.044130262270112 ], [ -95.157292961853443, 30.043772262248183 ], [ -95.157151961907985, 30.043549262258548 ], [ -95.157103961849629, 30.043514262745013 ], [ -95.157057961132907, 30.043443261881919 ], [ -95.156303961300438, 30.04293526204264 ], [ -95.155991961097229, 30.04271026215185 ], [ -95.155704961429549, 30.042492261780161 ], [ -95.15551296122706, 30.042294262444571 ], [ -95.155353960877378, 30.042066261877778 ], [ -95.155340961455622, 30.041844261844879 ], [ -95.155241960728048, 30.041645261782467 ], [ -95.15494396093402, 30.040853261847946 ], [ -95.15398696002211, 30.034962260920807 ], [ -95.152085959832689, 30.033543260291829 ], [ -95.151908959549885, 30.033153259977649 ], [ -95.147960958432989, 30.02447225901178 ], [ -95.14788895787909, 30.024314259107037 ], [ -95.145688957902209, 30.022076258431401 ], [ -95.141900956740827, 30.020935258064963 ], [ -95.141185956564016, 30.021058258157069 ], [ -95.136766955060594, 30.02182025830739 ], [ -95.133063954602093, 30.021211258313869 ], [ -95.132053953991516, 30.021161258533404 ], [ -95.13031495372411, 30.02972326033132 ], [ -95.130229954447316, 30.029905260066375 ], [ -95.129235954140839, 30.032047260882546 ], [ -95.129014954211243, 30.032523261218227 ], [ -95.125928952760944, 30.038138262103505 ], [ -95.124339952736932, 30.041028262530332 ], [ -95.123425952588832, 30.042693263723447 ], [ -95.122914953036315, 30.043623263306497 ], [ -95.124372953365267, 30.045035264068101 ], [ -95.126088953349651, 30.046697264055094 ], [ -95.127805954429718, 30.048358264611192 ], [ -95.12929795441147, 30.049801264872361 ], [ -95.129463955193302, 30.049962264446719 ], [ -95.129861954438368, 30.050347264255691 ], [ -95.130259954890406, 30.050733264710566 ], [ -95.130711955268524, 30.051171264509772 ], [ -95.132314955731601, 30.052722264865448 ], [ -95.135882956958781, 30.056520265327659 ], [ -95.136762957367793, 30.057457265688491 ], [ -95.138514957371527, 30.059322265820807 ], [ -95.139330957240503, 30.059957266622181 ], [ -95.13953195823747, 30.060113265934696 ], [ -95.141214958412704, 30.061422266185456 ], [ -95.141881958303657, 30.062509266887911 ], [ -95.142787959241545, 30.063985266839403 ], [ -95.143914958749903, 30.065822267360268 ], [ -95.145157959101425, 30.068787268270015 ], [ -95.146017960110271, 30.07083726787328 ], [ -95.146336959982705, 30.071233268530825 ], [ -95.146653959824164, 30.071667268525715 ], [ -95.147027959829074, 30.071886268745182 ], [ -95.147667960221114, 30.071865268109846 ], [ -95.148231960254691, 30.071770268020401 ], [ -95.149205961042867, 30.071272267879976 ], [ -95.150050961101101, 30.071055268625678 ], [ -95.150672961568802, 30.071077268443855 ], [ -95.151451961037154, 30.071235268228751 ], [ -95.15239296111173, 30.071488268313075 ], [ -95.152758961480913, 30.071681268603211 ], [ -95.153478961519809, 30.070914267994862 ], [ -95.153553962365194, 30.070974268219803 ], [ -95.153907962365963, 30.071095267804502 ], [ -95.154121962292948, 30.071139267984268 ], [ -95.154343962113884, 30.071166268248284 ], [ -95.154747962157543, 30.071172267985766 ], [ -95.154848962206273, 30.071150268277723 ], [ -95.15493196189982, 30.071078267926172 ], [ -95.154943961805003, 30.070968267701911 ], [ -95.154899962148605, 30.070765268168731 ], [ -95.154924962532519, 30.070732267497842 ], [ -95.155013961723071, 30.07073226801446 ], [ -95.155082961933005, 30.070902267716324 ], [ -95.1551339620232, 30.070946268311847 ], [ -95.155430962636103, 30.07095226788724 ], [ -95.155936962814849, 30.07098526811966 ], [ -95.156549963001069, 30.071084268061263 ], [ -95.156694962255486, 30.0711782679419 ], [ -95.156777963007983, 30.071260268211393 ], [ -95.156941962683931, 30.071585267940701 ], [ -95.157023962359176, 30.071799268417728 ], [ -95.1571059623558, 30.071898267882204 ], [ -95.157105963116791, 30.071925268173267 ], [ -95.157204963201949, 30.071911268166197 ], [ -95.157273963300696, 30.071882268077388 ], [ -95.157332962796858, 30.071818267939754 ], [ -95.157400962625246, 30.071588267575009 ], [ -95.157448962621601, 30.071277267770114 ], [ -95.157507962459633, 30.070923268022046 ], [ -95.157486962400469, 30.070736268018436 ], [ -95.157371962812093, 30.070314268009358 ], [ -95.157367963141255, 30.070143267399999 ], [ -95.157392963267299, 30.070002267846373 ], [ -95.157503963142261, 30.069700267362371 ], [ -95.157964962752928, 30.069086267551807 ], [ -95.158347963372165, 30.068604267485494 ], [ -95.159234962717207, 30.067505266804581 ], [ -95.159498963584838, 30.067181267246525 ], [ -95.159545962725019, 30.067117267151051 ], [ -95.159634963119501, 30.066933266803421 ], [ -95.159681963567749, 30.066827267432611 ], [ -95.159694963346595, 30.066712266799673 ], [ -95.159664963231421, 30.066550267108905 ], [ -95.15960596348377, 30.066430266682893 ], [ -95.15949096275358, 30.066260267164559 ], [ -95.159447962887043, 30.066158266397096 ], [ -95.159404963031136, 30.066008266560356 ], [ -95.159383963277833, 30.065842267132307 ], [ -95.159400963522216, 30.065740266710399 ], [ -95.159417962989323, 30.065655266359503 ], [ -95.159455963248035, 30.065561266638294 ], [ -95.159524963405545, 30.065446266668012 ], [ -95.159617962959885, 30.065348266503946 ], [ -95.159775963696589, 30.06518626685066 ], [ -95.159949963539503, 30.065039266366838 ], [ -95.159596963404994, 30.064942266342847 ], [ -95.159159963149136, 30.064823266177982 ], [ -95.158886962602466, 30.064748266457752 ], [ -95.158251962275926, 30.064461266747063 ], [ -95.157687962146426, 30.064193266702603 ], [ -95.157657962201782, 30.064171266784804 ], [ -95.155816962293443, 30.062836266417388 ], [ -95.155619962265845, 30.062694265904508 ], [ -95.156642962303223, 30.061511266166903 ], [ -95.156826962739714, 30.061278265907688 ], [ -95.157280962128638, 30.060643266190485 ], [ -95.157622962651601, 30.059815265979431 ], [ -95.157693962098477, 30.059587265820799 ], [ -95.15801396206794, 30.05824626519858 ], [ -95.158066962275157, 30.057705264746588 ], [ -95.158167962578901, 30.057334265008013 ], [ -95.158318962920504, 30.057016265374617 ], [ -95.158448962043693, 30.056742265175533 ], [ -95.158785962321389, 30.056196264886424 ], [ -95.159389962421685, 30.055427264660828 ], [ -95.15950996226745, 30.055275264383354 ], [ -95.160256962537872, 30.054704264535122 ], [ -95.1608909628399, 30.054343264010846 ], [ -95.160921962718476, 30.054326263932257 ], [ -95.160700963200071, 30.054056264749551 ], [ -95.160611962494187, 30.053836264583794 ], [ -95.160599962799921, 30.053270264014344 ], [ -95.160744963370746, 30.052819264233623 ], [ -95.160997962683837, 30.051983263625431 ], [ -95.161394963281111, 30.050883264083815 ], [ -95.161440963097618, 30.050757263497164 ], [ -95.161915963014408, 30.049141263298882 ], [ -95.16206696327086, 30.048839262854667 ], [ -95.162104963382887, 30.048690262799781 ], [ -95.162111962785701, 30.048630263386094 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1109, "Tract": "48201553601", "Area_SqMi": 1.1418468700043645, "total_2009": 349, "total_2010": 394, "total_2011": 441, "total_2012": 490, "total_2013": 521, "total_2014": 474, "total_2015": 433, "total_2016": 486, "total_2017": 510, "total_2018": 462, "total_2019": 509, "total_2020": 587, "age1": 150, "age2": 322, "age3": 131, "earn1": 103, "earn2": 197, "earn3": 303, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 80, "naics_s05": 2, "naics_s06": 12, "naics_s07": 51, "naics_s08": 7, "naics_s09": 0, "naics_s10": 46, "naics_s11": 20, "naics_s12": 76, "naics_s13": 0, "naics_s14": 15, "naics_s15": 7, "naics_s16": 181, "naics_s17": 5, "naics_s18": 36, "naics_s19": 65, "naics_s20": 0, "race1": 417, "race2": 122, "race3": 2, "race4": 49, "race5": 0, "race6": 13, "ethnicity1": 462, "ethnicity2": 141, "edu1": 83, "edu2": 125, "edu3": 143, "edu4": 102, "Shape_Length": 26761.279297717494, "Shape_Area": 31832736.445272204, "total_2021": 633, "total_2022": 603 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.50850905126309, 30.025964246165046 ], [ -95.508491050873232, 30.025810246258466 ], [ -95.508308051257174, 30.025348246237524 ], [ -95.508156050192653, 30.025084246693456 ], [ -95.508017050636923, 30.024914245923387 ], [ -95.507695050447552, 30.024628246452494 ], [ -95.507424050259928, 30.02447424596512 ], [ -95.507095050755794, 30.024309246705389 ], [ -95.507026050120913, 30.024259246359563 ], [ -95.506862050031387, 30.023951245760159 ], [ -95.506647050596968, 30.023600245985907 ], [ -95.506533049987709, 30.023352246347425 ], [ -95.506515049754015, 30.023209246324356 ], [ -95.506508049817413, 30.023011246111913 ], [ -95.506483050121659, 30.022808246109101 ], [ -95.506445049990731, 30.022703246293009 ], [ -95.506224050005457, 30.022236246156023 ], [ -95.506041049831836, 30.022032245638211 ], [ -95.505252049781078, 30.021873246219663 ], [ -95.505081049244922, 30.021735245577208 ], [ -95.504412049916269, 30.021081245553106 ], [ -95.504134049288183, 30.020789245713896 ], [ -95.503869049782352, 30.020476245228618 ], [ -95.50364804905243, 30.020096245898824 ], [ -95.503440049498209, 30.019843245235858 ], [ -95.503339049467385, 30.019761245489953 ], [ -95.503143049546125, 30.019722245844388 ], [ -95.502823048779675, 30.019683245760678 ], [ -95.502650048515406, 30.019662245430474 ], [ -95.50225204919407, 30.019458245430013 ], [ -95.501684048908785, 30.01914424517383 ], [ -95.501450048439523, 30.019067245812433 ], [ -95.501154048674778, 30.019067245362283 ], [ -95.500357048432846, 30.019177245442652 ], [ -95.50000904870717, 30.019183245617462 ], [ -95.499927048294964, 30.019161245816761 ], [ -95.499769048150199, 30.019084245010959 ], [ -95.49966804863233, 30.018996245784109 ], [ -95.499611047791277, 30.018881245561154 ], [ -95.499585048645685, 30.018782244954345 ], [ -95.499521047908942, 30.018646245625739 ], [ -95.499457048591097, 30.018509245351918 ], [ -95.499415048081701, 30.01841924509295 ], [ -95.499351048448844, 30.018337245031656 ], [ -95.499149047785195, 30.018183245656864 ], [ -95.49911804844298, 30.018145245118735 ], [ -95.499042048514667, 30.018029244975693 ], [ -95.498972048070598, 30.017837244773126 ], [ -95.498928048399691, 30.017754244842262 ], [ -95.498738047869736, 30.017529245176757 ], [ -95.498687047624358, 30.017392244745267 ], [ -95.498662048297916, 30.01708924489315 ], [ -95.498712047502892, 30.016743244784042 ], [ -95.498750048355532, 30.016595244696852 ], [ -95.498693047713203, 30.016325245112437 ], [ -95.498699048341635, 30.016287244777608 ], [ -95.498737047357707, 30.016237244838713 ], [ -95.498737048337702, 30.016204244479894 ], [ -95.498706047571488, 30.016133245182431 ], [ -95.498636048275344, 30.016089245024641 ], [ -95.498491047856305, 30.015968244710649 ], [ -95.498447047298356, 30.015907244471734 ], [ -95.498440047658463, 30.015831244983342 ], [ -95.498465047387057, 30.01569924515589 ], [ -95.498440047929748, 30.015605245144322 ], [ -95.498453048175733, 30.015550245163027 ], [ -95.498705047397905, 30.015380244674695 ], [ -95.498806048342701, 30.015297244492825 ], [ -95.498850047537857, 30.015242244547341 ], [ -95.498876047635619, 30.015176244418807 ], [ -95.49886304802699, 30.015033244788114 ], [ -95.498882047782416, 30.015022244899399 ], [ -95.498964047567597, 30.015017244384005 ], [ -95.499014047678969, 30.015033244713226 ], [ -95.499059047927886, 30.015066244465139 ], [ -95.499135047785316, 30.015159244776665 ], [ -95.499173047848402, 30.015225244780083 ], [ -95.499211048349807, 30.015363244895937 ], [ -95.499242048009606, 30.015412245008271 ], [ -95.49926204761104, 30.015418244709263 ], [ -95.499286048486709, 30.015412244406523 ], [ -95.4993120475974, 30.015396244330919 ], [ -95.499337047961816, 30.015357244402253 ], [ -95.499337048233855, 30.015275244807665 ], [ -95.499273048119846, 30.014852244690825 ], [ -95.499267047786773, 30.01474724485676 ], [ -95.499286047789298, 30.014654244395135 ], [ -95.499387048089858, 30.014516244308084 ], [ -95.499456048070641, 30.01447824463223 ], [ -95.499570048317636, 30.014379244416318 ], [ -95.499595047960042, 30.014313244252854 ], [ -95.49959504753258, 30.014263244073199 ], [ -95.499551048140958, 30.014219244858531 ], [ -95.499431048008987, 30.014153244660154 ], [ -95.499399047969973, 30.014109244866908 ], [ -95.499336047967276, 30.014060244878877 ], [ -95.499304048269607, 30.014049244571527 ], [ -95.499090047562888, 30.014060244472343 ], [ -95.499033047559379, 30.014038244719604 ], [ -95.498957047691448, 30.013967244260527 ], [ -95.498881048058507, 30.013912244396661 ], [ -95.498856047913776, 30.013906244276352 ], [ -95.498831047687887, 30.013906244387929 ], [ -95.498736047634864, 30.013934244461669 ], [ -95.498679047778438, 30.013912244557748 ], [ -95.498420047958575, 30.013719244797276 ], [ -95.498344047648999, 30.01368124437252 ], [ -95.498262047724211, 30.01367624408082 ], [ -95.4981860473317, 30.013709244600225 ], [ -95.498148047134109, 30.013747244802513 ], [ -95.498123047813564, 30.013791244761425 ], [ -95.498104047849765, 30.013890244449325 ], [ -95.498085047092232, 30.013923244180379 ], [ -95.498054048077975, 30.013951244137903 ], [ -95.498009047361506, 30.013962244860359 ], [ -95.49790204731687, 30.013934244293978 ], [ -95.497858047566183, 30.013907244266079 ], [ -95.497738047445694, 30.013901244013912 ], [ -95.497624047038101, 30.013989244085167 ], [ -95.497447047871859, 30.014072244960861 ], [ -95.497359047826237, 30.014094244919232 ], [ -95.49731504705619, 30.014088244626819 ], [ -95.497239047888783, 30.014050244510909 ], [ -95.497233047531793, 30.014028244224388 ], [ -95.49723304717341, 30.013973244712837 ], [ -95.497302046919515, 30.013830244604165 ], [ -95.497308047260134, 30.013759244757289 ], [ -95.497283047393267, 30.013654244873472 ], [ -95.497251047282361, 30.013621244071544 ], [ -95.497207047862489, 30.013599244029741 ], [ -95.497144047703216, 30.013583244297145 ], [ -95.497024047716508, 30.0135172445856 ], [ -95.496847047344644, 30.013385244068722 ], [ -95.496743047170639, 30.013328244686669 ], [ -95.496369047518257, 30.013635244261216 ], [ -95.496303047134987, 30.013831244876169 ], [ -95.495903047517515, 30.015042245063217 ], [ -95.495435046658073, 30.015761244566654 ], [ -95.495382046567713, 30.015810244866966 ], [ -95.495096047000445, 30.016073244995297 ], [ -95.495118047215016, 30.016200244578371 ], [ -95.495174046780221, 30.016489244950133 ], [ -95.495430047588798, 30.017481245626772 ], [ -95.495874047619409, 30.018895245427149 ], [ -95.496328047863585, 30.01996824588602 ], [ -95.496397047870531, 30.020087245609655 ], [ -95.49530604703979, 30.020476245732855 ], [ -95.494919046953754, 30.020625246285896 ], [ -95.494670046670379, 30.020734246261625 ], [ -95.494316046518307, 30.020909246052476 ], [ -95.493975047000035, 30.021111245867715 ], [ -95.493643046738399, 30.02133924603605 ], [ -95.493325046487016, 30.021577246560256 ], [ -95.492565047035171, 30.022173245948959 ], [ -95.492352046791495, 30.022329246488503 ], [ -95.492080046804006, 30.02253424611175 ], [ -95.491843046384858, 30.022699246858352 ], [ -95.491589046217172, 30.022862246365317 ], [ -95.491418046544595, 30.022956246828439 ], [ -95.491100045886967, 30.023124246734692 ], [ -95.490996046308197, 30.023169246320418 ], [ -95.490787046190462, 30.023262246303883 ], [ -95.490455045564246, 30.023391246699649 ], [ -95.490296045638019, 30.02345324659813 ], [ -95.489625045540294, 30.023698246771126 ], [ -95.489235045544689, 30.023858246330057 ], [ -95.488773045975748, 30.024087246800551 ], [ -95.488268045336298, 30.024379247021297 ], [ -95.48789704544977, 30.02457724716335 ], [ -95.487613045309345, 30.024708247242206 ], [ -95.4871080450216, 30.024915247135255 ], [ -95.48646204495121, 30.025132247182249 ], [ -95.486240045031167, 30.025189247276383 ], [ -95.486025045325391, 30.02523524734471 ], [ -95.485901045176263, 30.025262247273261 ], [ -95.485162045326987, 30.025398247021258 ], [ -95.485047045194094, 30.025420247653333 ], [ -95.485158044523544, 30.025590247350671 ], [ -95.485772045066369, 30.02641724768251 ], [ -95.48584404474299, 30.026531247080964 ], [ -95.486792045483782, 30.027835247865955 ], [ -95.487478045833129, 30.028768248234375 ], [ -95.487744045605737, 30.029116247827101 ], [ -95.488397045928835, 30.030035247752235 ], [ -95.488869045788888, 30.030683248305355 ], [ -95.489126046284781, 30.031076248502341 ], [ -95.489301046223389, 30.031267248274347 ], [ -95.489347045801736, 30.031317247916217 ], [ -95.489396046617898, 30.031388248185348 ], [ -95.489428045943029, 30.031450247976249 ], [ -95.489684045740489, 30.031819248770372 ], [ -95.489776046177184, 30.03201224836797 ], [ -95.489812045906135, 30.03211124826451 ], [ -95.489830045936046, 30.03219424849852 ], [ -95.489860045883958, 30.032434248262973 ], [ -95.489835045882373, 30.032598248116116 ], [ -95.489798046092488, 30.03285024896719 ], [ -95.489790046614331, 30.033046249071447 ], [ -95.489798046269854, 30.03319724855373 ], [ -95.489878046251249, 30.033505248961042 ], [ -95.489956046659458, 30.033616248827883 ], [ -95.490278046110348, 30.034069248367139 ], [ -95.490308046138964, 30.034126248708382 ], [ -95.490457046218765, 30.034309248618126 ], [ -95.490834046877083, 30.034818249069161 ], [ -95.490893047116103, 30.034916248951937 ], [ -95.49096204642872, 30.034997249404725 ], [ -95.491160046563792, 30.035279248845878 ], [ -95.491392046640684, 30.035582249213508 ], [ -95.491692047012606, 30.036009248860125 ], [ -95.491852047013296, 30.036220248981234 ], [ -95.49192804749741, 30.036335249557503 ], [ -95.492260047547205, 30.036775249574802 ], [ -95.492334047170061, 30.036893249189518 ], [ -95.492646046997891, 30.037311249653147 ], [ -95.492720047279533, 30.037417249535899 ], [ -95.493072047350765, 30.037915249414883 ], [ -95.493390047109898, 30.037739249756381 ], [ -95.494240047372543, 30.037272249110035 ], [ -95.495394048023755, 30.036615248782237 ], [ -95.495428047471307, 30.036596249492259 ], [ -95.495844048256345, 30.03637324881797 ], [ -95.497094047985144, 30.035702248830241 ], [ -95.497668048349468, 30.035384248957669 ], [ -95.499197049051801, 30.034540248443527 ], [ -95.500344049397626, 30.033922248408725 ], [ -95.500918049328234, 30.033607248600255 ], [ -95.502178049290791, 30.032893248443358 ], [ -95.502677049234009, 30.032612247652853 ], [ -95.502772049346106, 30.032560248301671 ], [ -95.502947050074297, 30.03246424828691 ], [ -95.503283049341576, 30.03227924806275 ], [ -95.503400050260595, 30.032222248430958 ], [ -95.503582049634744, 30.032124248252806 ], [ -95.504251049540315, 30.031771247642002 ], [ -95.504309050050566, 30.031738248265796 ], [ -95.505324050525843, 30.031182247567394 ], [ -95.506355050077474, 30.030614247937244 ], [ -95.506489050805584, 30.030532247346081 ], [ -95.506515050178407, 30.030519247800857 ], [ -95.506630050347084, 30.030463247586578 ], [ -95.507160050221827, 30.030169247250541 ], [ -95.507219050770075, 30.029966247376262 ], [ -95.507238050939435, 30.029828247693434 ], [ -95.507630050298516, 30.028179247432629 ], [ -95.507827050650334, 30.027063246404005 ], [ -95.507915051029272, 30.02681624653373 ], [ -95.508042051000103, 30.02666224695643 ], [ -95.508193050888309, 30.026552246954825 ], [ -95.508267050659882, 30.026505246978555 ], [ -95.508358050292145, 30.026448247062469 ], [ -95.508421050884792, 30.026371246290708 ], [ -95.508459051252871, 30.026294246569044 ], [ -95.508468050349393, 30.02623524652574 ], [ -95.50850905126309, 30.025964246165046 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1110, "Tract": "48201240803", "Area_SqMi": 0.78644674766462108, "total_2009": 178, "total_2010": 177, "total_2011": 201, "total_2012": 192, "total_2013": 252, "total_2014": 155, "total_2015": 134, "total_2016": 178, "total_2017": 190, "total_2018": 206, "total_2019": 201, "total_2020": 192, "age1": 33, "age2": 84, "age3": 57, "earn1": 27, "earn2": 29, "earn3": 118, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 107, "naics_s05": 8, "naics_s06": 2, "naics_s07": 42, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 2, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 2, "naics_s17": 1, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 137, "race2": 23, "race3": 5, "race4": 7, "race5": 0, "race6": 2, "ethnicity1": 109, "ethnicity2": 65, "edu1": 29, "edu2": 46, "edu3": 39, "edu4": 27, "Shape_Length": 22976.62159659688, "Shape_Area": 21924789.307828713, "total_2021": 169, "total_2022": 174 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429374030646699, 30.035648251272107 ], [ -95.429372030576701, 30.035580251592648 ], [ -95.429339031169917, 30.034511250762211 ], [ -95.429292030434965, 30.0330332510642 ], [ -95.429104030961241, 30.03303525084522 ], [ -95.428992030781529, 30.033036251066335 ], [ -95.428878030695699, 30.033037250391413 ], [ -95.428738030409093, 30.033038250854823 ], [ -95.428626030222475, 30.033039250770958 ], [ -95.428593030296682, 30.033039250958602 ], [ -95.428066030229218, 30.033044250782648 ], [ -95.427738030084186, 30.033032251103425 ], [ -95.427470030456007, 30.03299525068487 ], [ -95.426434029937766, 30.032800250867908 ], [ -95.426154030197935, 30.032752251195227 ], [ -95.425088030240175, 30.032712250693546 ], [ -95.42490902961238, 30.032705250679449 ], [ -95.422865028775021, 30.032630251114654 ], [ -95.422670028858619, 30.031948250405517 ], [ -95.422476029395014, 30.031461250997971 ], [ -95.422305029315993, 30.031107250612159 ], [ -95.422183029228307, 30.03093725039874 ], [ -95.421725029156988, 30.030391250192491 ], [ -95.421661028594869, 30.030323250677153 ], [ -95.421403028989147, 30.029977250132841 ], [ -95.421239029026424, 30.029735250100675 ], [ -95.421069028721945, 30.029452250235774 ], [ -95.421004028277324, 30.029313250550132 ], [ -95.420989028627005, 30.029281250007955 ], [ -95.42095502854076, 30.029229250406431 ], [ -95.420836028265782, 30.02894625027082 ], [ -95.420716028665353, 30.028613250411087 ], [ -95.420659028663408, 30.028412249916943 ], [ -95.420615028658986, 30.028246250128959 ], [ -95.420556028654076, 30.027950249716607 ], [ -95.420524027986843, 30.027708250344826 ], [ -95.420509028710768, 30.027600250052821 ], [ -95.42049702883368, 30.027386249798358 ], [ -95.420489028375087, 30.027245249996717 ], [ -95.420499028526038, 30.027118249448023 ], [ -95.420498028317468, 30.026937249787295 ], [ -95.420514027980673, 30.026394249679349 ], [ -95.420514028615898, 30.026098249474426 ], [ -95.420518028750635, 30.026016249484769 ], [ -95.42052702844785, 30.025796249533382 ], [ -95.420532028681222, 30.025679249855294 ], [ -95.420535028247272, 30.02536224977192 ], [ -95.42054602827379, 30.025301249687423 ], [ -95.420545028595754, 30.02525324925012 ], [ -95.420543028655842, 30.025163249595998 ], [ -95.420555028185191, 30.024959249163846 ], [ -95.420551027991834, 30.024901249453404 ], [ -95.420558027927029, 30.024784249761353 ], [ -95.420550028145797, 30.024725249037509 ], [ -95.420558028654213, 30.024629249195687 ], [ -95.420560027821125, 30.024609248982685 ], [ -95.420615028132062, 30.024339249533742 ], [ -95.420602027771579, 30.023803249332914 ], [ -95.420570028099391, 30.023571249266521 ], [ -95.420470027706557, 30.023591248787131 ], [ -95.419242027626979, 30.02382424895324 ], [ -95.418885027925683, 30.023892249137585 ], [ -95.418551027744201, 30.023955249243137 ], [ -95.41838402804602, 30.023987249027218 ], [ -95.417851027160566, 30.024088248954733 ], [ -95.4162280268676, 30.024396249849687 ], [ -95.413812026461017, 30.024855249532873 ], [ -95.412406026497536, 30.02512224944806 ], [ -95.411428026276056, 30.025318249812226 ], [ -95.409126025806771, 30.025747249741574 ], [ -95.406645025036767, 30.026209249755045 ], [ -95.404938024661419, 30.026526249951072 ], [ -95.404551024635879, 30.026598250312951 ], [ -95.404295024470002, 30.026646250210163 ], [ -95.404367024486405, 30.026926250512837 ], [ -95.404403024062645, 30.02706725023182 ], [ -95.404786024570981, 30.0285482505336 ], [ -95.405043024396278, 30.029545251040229 ], [ -95.405414024183131, 30.031028250778817 ], [ -95.405438025169516, 30.031121251093545 ], [ -95.405575024986618, 30.031057251528267 ], [ -95.405856024656359, 30.030982250949279 ], [ -95.405888024652427, 30.030974250814577 ], [ -95.406039024309507, 30.030962250991209 ], [ -95.406333024884816, 30.030939250875399 ], [ -95.406782025105159, 30.031109250893994 ], [ -95.407306024995563, 30.031396251408193 ], [ -95.40794402499543, 30.031785251632872 ], [ -95.408079025542065, 30.031918251531696 ], [ -95.408186025143507, 30.032111251706052 ], [ -95.40821702565033, 30.032468251298905 ], [ -95.408125025165276, 30.033392251318404 ], [ -95.408283025023806, 30.033834251222292 ], [ -95.408931025214343, 30.034671252048106 ], [ -95.4099640264577, 30.036004252215392 ], [ -95.410316026278821, 30.036354252482806 ], [ -95.410743025833355, 30.03663625217526 ], [ -95.411643026826113, 30.037077252364032 ], [ -95.412196026239741, 30.037276252543855 ], [ -95.412215026486976, 30.037283252081881 ], [ -95.413336027141057, 30.03753125225699 ], [ -95.413892027276262, 30.037564252449091 ], [ -95.414780027873547, 30.037617252036402 ], [ -95.41537902708734, 30.037577252200794 ], [ -95.415601027637663, 30.037562252543246 ], [ -95.416626027805478, 30.037383251941243 ], [ -95.416776028001749, 30.037325252310779 ], [ -95.417340027586903, 30.036802251768709 ], [ -95.41774202830625, 30.036619251611587 ], [ -95.418254028450463, 30.036482251455908 ], [ -95.418657028292714, 30.03623525203535 ], [ -95.418971028426938, 30.036003251453494 ], [ -95.419304028088121, 30.035594251644515 ], [ -95.419434028322897, 30.035507251671049 ], [ -95.420045028743246, 30.035436251711541 ], [ -95.42063602862541, 30.035555251448617 ], [ -95.420788029210726, 30.035501251288402 ], [ -95.420929029197467, 30.035405251802814 ], [ -95.421185029239808, 30.03523125132925 ], [ -95.421827028883953, 30.035353251345832 ], [ -95.422399029156779, 30.035296251721153 ], [ -95.423193028990084, 30.034928251180538 ], [ -95.42332402899234, 30.034793250903004 ], [ -95.423419029660764, 30.034521250945787 ], [ -95.423585029972926, 30.034421251489793 ], [ -95.423827029618934, 30.034449251284258 ], [ -95.424359030155784, 30.034780251306454 ], [ -95.425359029756805, 30.034963251395133 ], [ -95.42568102961836, 30.035184251285539 ], [ -95.426277029894408, 30.035725251458025 ], [ -95.426522030219161, 30.035857251022435 ], [ -95.426725030075232, 30.035886251729593 ], [ -95.427014030730135, 30.035823251700272 ], [ -95.427448030703061, 30.035730251663907 ], [ -95.427599031025863, 30.035698250900378 ], [ -95.428571030426383, 30.035766250871806 ], [ -95.428625030677594, 30.035770251233323 ], [ -95.428657030762153, 30.035772251617587 ], [ -95.428769031292532, 30.035780251153327 ], [ -95.4288620305948, 30.035786250948441 ], [ -95.428984030912687, 30.035768251214698 ], [ -95.429092030589246, 30.035752251265428 ], [ -95.429143030949859, 30.035744251426415 ], [ -95.429187030742753, 30.035726250964544 ], [ -95.429374030646699, 30.035648251272107 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1111, "Tract": "48201232201", "Area_SqMi": 1.7202955682480121, "total_2009": 373, "total_2010": 508, "total_2011": 639, "total_2012": 711, "total_2013": 799, "total_2014": 862, "total_2015": 979, "total_2016": 990, "total_2017": 1059, "total_2018": 1193, "total_2019": 1104, "total_2020": 1313, "age1": 265, "age2": 833, "age3": 314, "earn1": 201, "earn2": 319, "earn3": 892, "naics_s01": 0, "naics_s02": 0, "naics_s03": 103, "naics_s04": 112, "naics_s05": 286, "naics_s06": 159, "naics_s07": 14, "naics_s08": 76, "naics_s09": 0, "naics_s10": 33, "naics_s11": 23, "naics_s12": 45, "naics_s13": 1, "naics_s14": 88, "naics_s15": 0, "naics_s16": 156, "naics_s17": 0, "naics_s18": 193, "naics_s19": 123, "naics_s20": 0, "race1": 1101, "race2": 229, "race3": 11, "race4": 54, "race5": 3, "race6": 14, "ethnicity1": 863, "ethnicity2": 549, "edu1": 287, "edu2": 326, "edu3": 350, "edu4": 184, "Shape_Length": 39930.14637006689, "Shape_Area": 47958896.127463602, "total_2021": 1365, "total_2022": 1412 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.307128993816647, 29.918437231960535 ], [ -95.307038994710368, 29.918436231329917 ], [ -95.306896994061773, 29.91843523126963 ], [ -95.306706994618878, 29.918434231645008 ], [ -95.306622993912924, 29.918433231525725 ], [ -95.306538994239972, 29.918433231505535 ], [ -95.306303993690946, 29.918431231151665 ], [ -95.306210993783282, 29.918430231322386 ], [ -95.305909993966949, 29.918428231689294 ], [ -95.305298994081625, 29.91851423204103 ], [ -95.303098993681289, 29.919012231665604 ], [ -95.302852992762524, 29.919062232027422 ], [ -95.302723993164051, 29.919089231753183 ], [ -95.302269993058701, 29.919122232254171 ], [ -95.301776993199397, 29.919122232023298 ], [ -95.300994993201442, 29.919121231579282 ], [ -95.300695992957799, 29.919210231696578 ], [ -95.300110992930442, 29.919603232441467 ], [ -95.299829992857894, 29.919666231723845 ], [ -95.299543992859739, 29.919697232096791 ], [ -95.299365992288429, 29.919691231919966 ], [ -95.29847099202496, 29.919661232274642 ], [ -95.297873992001243, 29.919523232303042 ], [ -95.295968991325807, 29.918931232005669 ], [ -95.295701991930883, 29.918761232206464 ], [ -95.295607990878111, 29.918641232043981 ], [ -95.295515991715178, 29.918523232253403 ], [ -95.295299991774328, 29.918154232204987 ], [ -95.29487599149887, 29.917144232128972 ], [ -95.293449990471657, 29.915563231645557 ], [ -95.293298990161432, 29.915395231518783 ], [ -95.29291299012759, 29.915071231731364 ], [ -95.292183989840865, 29.914667231114606 ], [ -95.291591990385697, 29.914510231141545 ], [ -95.291533990481113, 29.914495231392436 ], [ -95.291394990376034, 29.914459230908708 ], [ -95.288618988903323, 29.913901230818325 ], [ -95.287974989442702, 29.913662230840714 ], [ -95.287443989227896, 29.913389231592674 ], [ -95.287372988813374, 29.913376230772052 ], [ -95.287257988559816, 29.913355231071819 ], [ -95.28726398886559, 29.913481231132355 ], [ -95.287316989098386, 29.914616231789612 ], [ -95.287375989519404, 29.915880231401392 ], [ -95.287358988805025, 29.916214232103719 ], [ -95.28736598918492, 29.916954231500483 ], [ -95.287375989649675, 29.917416231889391 ], [ -95.287365988994168, 29.917629231783938 ], [ -95.287377988847098, 29.917856231888909 ], [ -95.287382989580166, 29.918408232660074 ], [ -95.287382989002694, 29.918566232171447 ], [ -95.287399989044147, 29.919521232759813 ], [ -95.287412988901153, 29.920901232606404 ], [ -95.287417989237724, 29.921407233258883 ], [ -95.287419989852751, 29.921514232730125 ], [ -95.287452989669333, 29.923253232880572 ], [ -95.287455989862053, 29.924067233042202 ], [ -95.287513990112387, 29.925314233849782 ], [ -95.287504989674702, 29.927592234322479 ], [ -95.287509989642047, 29.927954233840406 ], [ -95.287522990213731, 29.928881234593646 ], [ -95.287531989362151, 29.929137234752254 ], [ -95.287525989947284, 29.929356234250257 ], [ -95.287543990231498, 29.930354234551821 ], [ -95.287584990313661, 29.930623234897947 ], [ -95.28759098949709, 29.930662235074731 ], [ -95.287545990035866, 29.930790234865434 ], [ -95.287546990116368, 29.930890235237122 ], [ -95.287549989659809, 29.931116235248059 ], [ -95.28755698942409, 29.931576235002236 ], [ -95.287559989468477, 29.931755234563969 ], [ -95.287571989933539, 29.93253123471515 ], [ -95.287582990082029, 29.93329823566911 ], [ -95.287589989626952, 29.933878235422238 ], [ -95.287608990131361, 29.93427923533622 ], [ -95.287600990426455, 29.934509235558309 ], [ -95.287601990581379, 29.934598235354695 ], [ -95.287508989859433, 29.934593235101094 ], [ -95.287468990396064, 29.934591235188748 ], [ -95.285050989671305, 29.934627235232657 ], [ -95.283932989203564, 29.934645235232217 ], [ -95.279222987823971, 29.934716235485137 ], [ -95.272948986808672, 29.93477123636886 ], [ -95.271049985371675, 29.934770236052749 ], [ -95.270989986115723, 29.934772235769 ], [ -95.268761984933604, 29.9347942365936 ], [ -95.268484985591371, 29.934799236618549 ], [ -95.268399985430108, 29.935618235992134 ], [ -95.268393985295944, 29.936268236192721 ], [ -95.268412985413931, 29.936497236687025 ], [ -95.268436985575406, 29.936758236716553 ], [ -95.268453985017672, 29.937036236530648 ], [ -95.26845798502454, 29.937334236741084 ], [ -95.268432985333135, 29.937731236772873 ], [ -95.268386985015354, 29.938048236724708 ], [ -95.268322985493839, 29.93839823690714 ], [ -95.268527985317263, 29.938504237218243 ], [ -95.268733985144507, 29.938564236598438 ], [ -95.26895998531073, 29.93863023719911 ], [ -95.269331985595812, 29.938727237175698 ], [ -95.270210985493051, 29.93901523742602 ], [ -95.270720985651025, 29.939200237237142 ], [ -95.270960985973943, 29.939275237227385 ], [ -95.271519986530834, 29.939451237321819 ], [ -95.272226986054363, 29.939673237514739 ], [ -95.272897986721404, 29.939877236758015 ], [ -95.27346698699202, 29.939988237179954 ], [ -95.273984986770827, 29.940093236838987 ], [ -95.274117986617185, 29.940119237191642 ], [ -95.274668986918968, 29.940227237030609 ], [ -95.275681986914947, 29.940382237071635 ], [ -95.276558987297122, 29.940504236900487 ], [ -95.277225987225265, 29.940600236856671 ], [ -95.278001988362448, 29.940682237422656 ], [ -95.278819988311426, 29.940744237161969 ], [ -95.279596988531424, 29.940779236810847 ], [ -95.280125988112331, 29.940779237234441 ], [ -95.280578988775147, 29.940799237251909 ], [ -95.28123198830788, 29.940792237220617 ], [ -95.282083988495415, 29.940717236773917 ], [ -95.282908989606668, 29.940607237280158 ], [ -95.283335988777083, 29.940552237207591 ], [ -95.283801989514401, 29.940483236947745 ], [ -95.286592990534331, 29.940242236902762 ], [ -95.287485990044374, 29.940174237096201 ], [ -95.287679990704575, 29.94016523684606 ], [ -95.287927990131806, 29.940138236223913 ], [ -95.288332989990622, 29.940121236739678 ], [ -95.291318991622376, 29.940072236301351 ], [ -95.292542991620365, 29.940072236224058 ], [ -95.293794991403175, 29.94003223686045 ], [ -95.295162992592708, 29.939985236697456 ], [ -95.295301992495055, 29.93998323647158 ], [ -95.295513992782546, 29.939975236188612 ], [ -95.295748992338176, 29.939971236158019 ], [ -95.295987992361859, 29.939967235980316 ], [ -95.296092992097201, 29.93974223606066 ], [ -95.296143992727337, 29.939603236679712 ], [ -95.29633999229705, 29.939096236086023 ], [ -95.296961992996003, 29.937652235433731 ], [ -95.297552992894808, 29.936279235399738 ], [ -95.297668992644589, 29.936028235689943 ], [ -95.298301992905891, 29.934605235522742 ], [ -95.299311992931749, 29.932412234845788 ], [ -95.299941993195304, 29.931033234837795 ], [ -95.299989993129941, 29.930931234140559 ], [ -95.30007899335591, 29.930712234707475 ], [ -95.300184993453371, 29.93046423453373 ], [ -95.300715992832778, 29.929216233602734 ], [ -95.301686993234398, 29.926964233176978 ], [ -95.302029993598055, 29.926227233751316 ], [ -95.30246599308056, 29.92539223354229 ], [ -95.302794993892661, 29.924808233372488 ], [ -95.303827993296935, 29.923173232698151 ], [ -95.305710994402247, 29.920480232084945 ], [ -95.306208993743567, 29.919691232236403 ], [ -95.307033994746774, 29.918549231317172 ], [ -95.307128993816647, 29.918437231960535 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1112, "Tract": "48201222701", "Area_SqMi": 0.41688450420805334, "total_2009": 447, "total_2010": 338, "total_2011": 495, "total_2012": 542, "total_2013": 567, "total_2014": 796, "total_2015": 854, "total_2016": 839, "total_2017": 847, "total_2018": 916, "total_2019": 903, "total_2020": 834, "age1": 227, "age2": 580, "age3": 182, "earn1": 111, "earn2": 207, "earn3": 671, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 233, "naics_s05": 128, "naics_s06": 56, "naics_s07": 134, "naics_s08": 94, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 125, "naics_s13": 12, "naics_s14": 140, "naics_s15": 0, "naics_s16": 16, "naics_s17": 0, "naics_s18": 25, "naics_s19": 26, "naics_s20": 0, "race1": 778, "race2": 116, "race3": 14, "race4": 63, "race5": 3, "race6": 15, "ethnicity1": 611, "ethnicity2": 378, "edu1": 210, "edu2": 204, "edu3": 203, "edu4": 145, "Shape_Length": 14956.438883973065, "Shape_Area": 11622026.4723607, "total_2021": 800, "total_2022": 989 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.310612995636191, 29.93767923534072 ], [ -95.31057299604683, 29.935663235109764 ], [ -95.310567995619905, 29.935403235277242 ], [ -95.310580995603914, 29.935249235252474 ], [ -95.310567995458968, 29.93506223523725 ], [ -95.310580995976977, 29.934870234387418 ], [ -95.31055599565434, 29.934672234493775 ], [ -95.31055099595639, 29.934090234859006 ], [ -95.310549995843871, 29.933880234251014 ], [ -95.310489995866234, 29.93048823420315 ], [ -95.309969995375226, 29.930492234231924 ], [ -95.308403994913874, 29.930547233856856 ], [ -95.306953995210691, 29.930547233952481 ], [ -95.30665099483943, 29.930548233738911 ], [ -95.303931993616757, 29.930589233883797 ], [ -95.303058994262912, 29.930594234057462 ], [ -95.301630993721517, 29.930633233992051 ], [ -95.301412993650118, 29.930645233819018 ], [ -95.301037993641359, 29.93069823445515 ], [ -95.300495993359704, 29.930710234301607 ], [ -95.300385992888422, 29.930711234498403 ], [ -95.30007899335591, 29.930712234707475 ], [ -95.299989993129941, 29.930931234140559 ], [ -95.299941993195304, 29.931033234837795 ], [ -95.299311992931749, 29.932412234845788 ], [ -95.298301992905891, 29.934605235522742 ], [ -95.297668992644589, 29.936028235689943 ], [ -95.297552992894808, 29.936279235399738 ], [ -95.296961992996003, 29.937652235433731 ], [ -95.29633999229705, 29.939096236086023 ], [ -95.296143992727337, 29.939603236679712 ], [ -95.296092992097201, 29.93974223606066 ], [ -95.295987992361859, 29.939967235980316 ], [ -95.296727992961422, 29.939966235986731 ], [ -95.297168992430755, 29.939968235870555 ], [ -95.297742992657547, 29.939971236143236 ], [ -95.298764992861678, 29.939951236358809 ], [ -95.299328992914809, 29.939935236212047 ], [ -95.300294993715553, 29.939911235757432 ], [ -95.301220993660863, 29.939895236463503 ], [ -95.302130993854163, 29.939889236214569 ], [ -95.303104994150345, 29.939854236072456 ], [ -95.303438994813163, 29.93983123622565 ], [ -95.303434994402949, 29.93972623563711 ], [ -95.303427994257888, 29.939565236147889 ], [ -95.303407994605223, 29.93906623622723 ], [ -95.30339499462174, 29.938780235533113 ], [ -95.303379994445578, 29.938528236071271 ], [ -95.303371994223042, 29.938237236119491 ], [ -95.303371994730071, 29.937985235394422 ], [ -95.303353994360933, 29.937836235761651 ], [ -95.303348994284278, 29.937722235391256 ], [ -95.306982995049268, 29.937691235932622 ], [ -95.307272995395522, 29.937652235616525 ], [ -95.307626994909882, 29.937652235917184 ], [ -95.307885995848409, 29.93767923503956 ], [ -95.308289995976395, 29.937669235680975 ], [ -95.30846599509448, 29.937641235423282 ], [ -95.309376995873635, 29.937636235024172 ], [ -95.309476996266298, 29.937636235870123 ], [ -95.309854996015034, 29.937674235622808 ], [ -95.31007599634232, 29.937658235140834 ], [ -95.310612995636191, 29.93767923534072 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1113, "Tract": "48201510201", "Area_SqMi": 0.36072994742752729, "total_2009": 1466, "total_2010": 1559, "total_2011": 1385, "total_2012": 1346, "total_2013": 1287, "total_2014": 1147, "total_2015": 939, "total_2016": 968, "total_2017": 952, "total_2018": 1107, "total_2019": 1265, "total_2020": 995, "age1": 148, "age2": 478, "age3": 217, "earn1": 140, "earn2": 233, "earn3": 470, "naics_s01": 0, "naics_s02": 10, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 3, "naics_s07": 61, "naics_s08": 0, "naics_s09": 66, "naics_s10": 65, "naics_s11": 42, "naics_s12": 125, "naics_s13": 34, "naics_s14": 229, "naics_s15": 0, "naics_s16": 25, "naics_s17": 0, "naics_s18": 134, "naics_s19": 45, "naics_s20": 2, "race1": 551, "race2": 206, "race3": 8, "race4": 66, "race5": 3, "race6": 9, "ethnicity1": 577, "ethnicity2": 266, "edu1": 129, "edu2": 166, "edu3": 214, "edu4": 186, "Shape_Length": 16220.261662335901, "Shape_Area": 10056533.538804097, "total_2021": 924, "total_2022": 843 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.392311009017121, 29.763954197366992 ], [ -95.39230900906756, 29.763377197368552 ], [ -95.392305009158292, 29.763211196948347 ], [ -95.39230200941887, 29.763095196534962 ], [ -95.392291009215214, 29.762602196680731 ], [ -95.392289009622687, 29.762536197171599 ], [ -95.391715009262725, 29.762597197229727 ], [ -95.391327009393379, 29.762571196770729 ], [ -95.391183008409826, 29.762562196958658 ], [ -95.390129008704378, 29.762264196359865 ], [ -95.389181008026313, 29.761924196731083 ], [ -95.388952008659444, 29.76187219669929 ], [ -95.388387007750978, 29.761746196711055 ], [ -95.387937008198435, 29.761579196608725 ], [ -95.386762007662071, 29.761584196657349 ], [ -95.386089007531936, 29.76170919712639 ], [ -95.385737007686672, 29.761686196698502 ], [ -95.385320007705459, 29.761658196859724 ], [ -95.384725007308873, 29.761782196675519 ], [ -95.384519007041533, 29.761952196546769 ], [ -95.384512007281145, 29.761967196784788 ], [ -95.384462006926228, 29.762078196676384 ], [ -95.384007007146138, 29.763080196755826 ], [ -95.383911006559671, 29.763239197146291 ], [ -95.383515007186745, 29.763652197373176 ], [ -95.383323006717546, 29.763787197065902 ], [ -95.382993006728569, 29.763932197496867 ], [ -95.382829006524659, 29.763942196973833 ], [ -95.382643006625941, 29.76386619695354 ], [ -95.382284006682866, 29.763605197620461 ], [ -95.382039006058775, 29.763315197333071 ], [ -95.381787006993164, 29.762828197248311 ], [ -95.381677006584496, 29.762682197325276 ], [ -95.381613006462587, 29.762596197412293 ], [ -95.381337006102953, 29.762230197386685 ], [ -95.381000006213739, 29.76196819697174 ], [ -95.380884006026989, 29.761932197120071 ], [ -95.380640005924747, 29.76192119723979 ], [ -95.380007005714646, 29.762179197399519 ], [ -95.379692005780527, 29.762263196706847 ], [ -95.378918005830684, 29.762330196890279 ], [ -95.378396006008401, 29.762235197452767 ], [ -95.378038005918185, 29.762059197223607 ], [ -95.377069005368185, 29.761149197446223 ], [ -95.37680900464494, 29.761045196872978 ], [ -95.376279004632607, 29.761024196925266 ], [ -95.375452004590457, 29.761340197023053 ], [ -95.375372004921886, 29.761349197206911 ], [ -95.375383004895099, 29.761417197332914 ], [ -95.375395004635038, 29.76148419726724 ], [ -95.375496004743269, 29.762062197536132 ], [ -95.375560005239649, 29.762661197473591 ], [ -95.375580005308578, 29.763238197116763 ], [ -95.375575004629269, 29.763414197853457 ], [ -95.375586004933737, 29.763517197828929 ], [ -95.37556600520648, 29.763663197204718 ], [ -95.375557005284051, 29.763730197749666 ], [ -95.375557005029322, 29.763815198025281 ], [ -95.375558005330504, 29.763955197612916 ], [ -95.375536004465218, 29.76441819730319 ], [ -95.375538004784957, 29.764623197674936 ], [ -95.375551005125345, 29.764720197544964 ], [ -95.375558005488358, 29.765414197854465 ], [ -95.375593004933592, 29.76549019829001 ], [ -95.377146005083489, 29.765492197664322 ], [ -95.378260005556228, 29.765483197543571 ], [ -95.378932005843311, 29.765464197454236 ], [ -95.37939800620704, 29.76547419754576 ], [ -95.379795006421929, 29.765469198184118 ], [ -95.380515006287254, 29.765474197906876 ], [ -95.38135700625547, 29.765545198106004 ], [ -95.381365006284071, 29.765668197891436 ], [ -95.381393006570875, 29.765835198242534 ], [ -95.381447006948122, 29.766008197495069 ], [ -95.381549006653998, 29.766200197647262 ], [ -95.381741006236666, 29.766442198126491 ], [ -95.381915006747406, 29.766567197609714 ], [ -95.382146006545838, 29.766710197579528 ], [ -95.382287007156691, 29.766816198211302 ], [ -95.382368006599165, 29.766886198300881 ], [ -95.382461006445325, 29.76698219760835 ], [ -95.38254400666635, 29.767093198136017 ], [ -95.382608006878826, 29.767202198123439 ], [ -95.382675006808526, 29.7673501982073 ], [ -95.382729007383816, 29.767529197688571 ], [ -95.382743007212625, 29.767640198572657 ], [ -95.382745007175743, 29.768314198566927 ], [ -95.383838006891878, 29.768341198140821 ], [ -95.384754007146896, 29.768377198322668 ], [ -95.385488007286796, 29.768452197769911 ], [ -95.386273007520629, 29.768543197902286 ], [ -95.386908008061454, 29.768604198611595 ], [ -95.387598007982348, 29.768675198217263 ], [ -95.388020008456976, 29.768694198110111 ], [ -95.389075008730842, 29.768750198200667 ], [ -95.390747009258931, 29.768881197727453 ], [ -95.39092400864071, 29.768894197933669 ], [ -95.39136800870962, 29.768923198079559 ], [ -95.391825009530478, 29.768966197708821 ], [ -95.392236009721159, 29.767547197615755 ], [ -95.392277009557546, 29.766917198091107 ], [ -95.392301009008463, 29.766569197392922 ], [ -95.392294009024013, 29.764659197451099 ], [ -95.392285009077796, 29.764325197484006 ], [ -95.392311009017121, 29.763954197366992 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1114, "Tract": "48201410602", "Area_SqMi": 0.14608462914232387, "total_2009": 1201, "total_2010": 1241, "total_2011": 1350, "total_2012": 1370, "total_2013": 1263, "total_2014": 1186, "total_2015": 1202, "total_2016": 1431, "total_2017": 1421, "total_2018": 1148, "total_2019": 1403, "total_2020": 1545, "age1": 539, "age2": 877, "age3": 269, "earn1": 368, "earn2": 613, "earn3": 704, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 177, "naics_s05": 2, "naics_s06": 28, "naics_s07": 135, "naics_s08": 0, "naics_s09": 4, "naics_s10": 13, "naics_s11": 54, "naics_s12": 343, "naics_s13": 0, "naics_s14": 89, "naics_s15": 10, "naics_s16": 14, "naics_s17": 0, "naics_s18": 740, "naics_s19": 74, "naics_s20": 2, "race1": 1235, "race2": 221, "race3": 18, "race4": 169, "race5": 2, "race6": 40, "ethnicity1": 1150, "ethnicity2": 535, "edu1": 278, "edu2": 278, "edu3": 338, "edu4": 252, "Shape_Length": 12977.69626886985, "Shape_Area": 4072589.4341464122, "total_2021": 1489, "total_2022": 1685 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.383225006283553, 29.748261194274718 ], [ -95.383285006051636, 29.748169193917757 ], [ -95.382427005697508, 29.747666193881418 ], [ -95.381581005754441, 29.747138194152495 ], [ -95.381637005229649, 29.747060194226929 ], [ -95.381671005897601, 29.746985193676505 ], [ -95.381687005341661, 29.746904193471327 ], [ -95.381679005357924, 29.746473193987416 ], [ -95.381685005401906, 29.746153193518978 ], [ -95.381672005817691, 29.745566193539876 ], [ -95.381541005297166, 29.745531193928063 ], [ -95.38155500614377, 29.745248193161157 ], [ -95.381603005379006, 29.745087193526384 ], [ -95.381673005467164, 29.744809193046372 ], [ -95.381702005170084, 29.744450193708776 ], [ -95.381327005300079, 29.744235193214255 ], [ -95.380871005099493, 29.744825193483411 ], [ -95.380431005813008, 29.745395193558643 ], [ -95.379992005614653, 29.745933193480877 ], [ -95.379872005214011, 29.746102193576263 ], [ -95.379397005027116, 29.746710193814931 ], [ -95.378951004707545, 29.74727819368735 ], [ -95.378386005208469, 29.74799819457915 ], [ -95.377907005149709, 29.74859519450213 ], [ -95.377461004286445, 29.749158194190048 ], [ -95.376900004500072, 29.749863194621849 ], [ -95.376320004230337, 29.750604194496539 ], [ -95.375470003990173, 29.750087194375503 ], [ -95.374606004455131, 29.749568194876595 ], [ -95.373761004323327, 29.749053194343634 ], [ -95.372902003085443, 29.748541194148576 ], [ -95.372025002963184, 29.748013194706846 ], [ -95.371424003541136, 29.748734194823871 ], [ -95.371045003513757, 29.749209194780764 ], [ -95.370954003252677, 29.749324195163133 ], [ -95.371859003398797, 29.749847195053267 ], [ -95.372735004080354, 29.750355194509993 ], [ -95.373015004046323, 29.750578194565581 ], [ -95.373209003927826, 29.750743194916367 ], [ -95.373485003934618, 29.75100119490504 ], [ -95.373769003513516, 29.751268194637198 ], [ -95.374107003945809, 29.751805195120294 ], [ -95.374139003803251, 29.751859194825293 ], [ -95.374265003862206, 29.752120195193204 ], [ -95.374364003613181, 29.75237619516162 ], [ -95.374471004544461, 29.752773195136239 ], [ -95.37450000368095, 29.752884195500151 ], [ -95.374550004031988, 29.75281919518179 ], [ -95.374625004324272, 29.752726195363032 ], [ -95.375144004691023, 29.752075195601389 ], [ -95.375991004344129, 29.752604195431243 ], [ -95.376787004471538, 29.753076195386658 ], [ -95.376842004599524, 29.753121195723271 ], [ -95.377434005417257, 29.752363195208094 ], [ -95.377500004824114, 29.752304194956402 ], [ -95.378023004666986, 29.751633194782411 ], [ -95.378387005018268, 29.751198194727198 ], [ -95.378519005447544, 29.751282194798165 ], [ -95.378739004945729, 29.751406194510668 ], [ -95.37898700556849, 29.75150819527795 ], [ -95.379188005415472, 29.751547194765244 ], [ -95.379367005238649, 29.75155119521494 ], [ -95.379492005327137, 29.751535194584235 ], [ -95.379613005052576, 29.751506194765128 ], [ -95.379738005758682, 29.751458195304068 ], [ -95.379829005326798, 29.75141819447947 ], [ -95.37998000586208, 29.751294195031125 ], [ -95.380100005758194, 29.751149195001506 ], [ -95.380206006024579, 29.750974194743318 ], [ -95.380276005765822, 29.750756194559006 ], [ -95.380300005241367, 29.750625194453409 ], [ -95.380310005160709, 29.750458195101995 ], [ -95.380355005141453, 29.750306194920785 ], [ -95.380441005229102, 29.750171194705061 ], [ -95.38044800599846, 29.750152194947834 ], [ -95.380467005213461, 29.750130194809241 ], [ -95.380931005672778, 29.749531194147384 ], [ -95.381798005485933, 29.75005019422435 ], [ -95.382359005792352, 29.74933819481198 ], [ -95.382817005710208, 29.748773194491239 ], [ -95.383225006283553, 29.748261194274718 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1115, "Tract": "48201980700", "Area_SqMi": 0.50329374743980337, "total_2009": 64775, "total_2010": 68943, "total_2011": 66231, "total_2012": 66559, "total_2013": 66842, "total_2014": 72294, "total_2015": 82605, "total_2016": 83287, "total_2017": 82460, "total_2018": 67255, "total_2019": 69118, "total_2020": 68714, "age1": 11544, "age2": 44374, "age3": 15456, "earn1": 4897, "earn2": 9052, "earn3": 57425, "naics_s01": 39, "naics_s02": 5881, "naics_s03": 6555, "naics_s04": 1363, "naics_s05": 1093, "naics_s06": 578, "naics_s07": 179, "naics_s08": 2423, "naics_s09": 2133, "naics_s10": 7014, "naics_s11": 541, "naics_s12": 15429, "naics_s13": 2728, "naics_s14": 6356, "naics_s15": 745, "naics_s16": 394, "naics_s17": 1979, "naics_s18": 2427, "naics_s19": 1620, "naics_s20": 11897, "race1": 48991, "race2": 13993, "race3": 417, "race4": 6620, "race5": 80, "race6": 1273, "ethnicity1": 55396, "ethnicity2": 15978, "edu1": 7827, "edu2": 13325, "edu3": 18049, "edu4": 20629, "Shape_Length": 16801.879051949349, "Shape_Area": 14030968.282764057, "total_2021": 67889, "total_2022": 71374 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.373662004519133, 29.7601991972744 ], [ -95.373727004031949, 29.760053197211935 ], [ -95.373454004631284, 29.75996119654679 ], [ -95.373409004328309, 29.759946196714122 ], [ -95.373331004532886, 29.759905196968813 ], [ -95.373061004611259, 29.75976519706753 ], [ -95.372918004323154, 29.759684197096497 ], [ -95.37269900378341, 29.759543196584637 ], [ -95.371999003350339, 29.759058196961163 ], [ -95.371276003149063, 29.75857919704632 ], [ -95.370423003611833, 29.75803319699483 ], [ -95.369572003396939, 29.757552196778548 ], [ -95.368955002797009, 29.757182196581692 ], [ -95.368706003137632, 29.75703719609956 ], [ -95.368973003231659, 29.756678196110908 ], [ -95.369286003364877, 29.756296196419832 ], [ -95.368993003154642, 29.756110196451679 ], [ -95.368433002738016, 29.755763196284875 ], [ -95.36758800287781, 29.755255196378251 ], [ -95.366704002693339, 29.754723196481411 ], [ -95.36582600227473, 29.75419119609483 ], [ -95.365243001875285, 29.754934196204225 ], [ -95.364646001577512, 29.755694196708383 ], [ -95.364058001488829, 29.756435196670573 ], [ -95.363465001534109, 29.7571601967378 ], [ -95.362871001548413, 29.757929196593306 ], [ -95.362282000980557, 29.758674196772731 ], [ -95.361671000921234, 29.759441197208609 ], [ -95.361062001102383, 29.760230197652795 ], [ -95.360464000490239, 29.760976197668317 ], [ -95.359857001175442, 29.761729198165686 ], [ -95.35933800101634, 29.762392197900887 ], [ -95.359267000264055, 29.762490197837046 ], [ -95.35919100028309, 29.762586197894247 ], [ -95.359080000317846, 29.762744198112525 ], [ -95.358986000324705, 29.762854197702051 ], [ -95.358870000724025, 29.762966198219029 ], [ -95.358717001069536, 29.763082197598457 ], [ -95.358583000764881, 29.76317719801396 ], [ -95.358063000004009, 29.763512198335196 ], [ -95.357903000217334, 29.763615198596099 ], [ -95.358004000811476, 29.763731197953049 ], [ -95.358605000651721, 29.764837198008959 ], [ -95.358548000867515, 29.764925198248594 ], [ -95.358491000984941, 29.765013198461801 ], [ -95.358411000482079, 29.765137198447025 ], [ -95.358330000888003, 29.765260198157687 ], [ -95.358274000588025, 29.765347198209295 ], [ -95.357986000479684, 29.76560319831033 ], [ -95.357927000722185, 29.76565619894982 ], [ -95.357794000315323, 29.765838198760804 ], [ -95.357719000551313, 29.766124198878423 ], [ -95.357712000005591, 29.76615019860656 ], [ -95.357791000145383, 29.766310199005215 ], [ -95.358169000124491, 29.766639199087052 ], [ -95.358437000998308, 29.766783198543067 ], [ -95.358731000549867, 29.766941198384206 ], [ -95.359026000947338, 29.767098198409535 ], [ -95.359342000497548, 29.76726819889554 ], [ -95.359396000731138, 29.767268199139082 ], [ -95.35949300057257, 29.767267198431504 ], [ -95.35986900124, 29.767265198748561 ], [ -95.360171001167558, 29.767300198585509 ], [ -95.360437001187023, 29.767356199021698 ], [ -95.360697001506182, 29.767433199006621 ], [ -95.360948001666969, 29.767521198586067 ], [ -95.361010001703164, 29.767546199038563 ], [ -95.361287001589233, 29.767659199276132 ], [ -95.361689001651584, 29.767920199077945 ], [ -95.363467002284381, 29.769156199516839 ], [ -95.363945001756861, 29.769506199239849 ], [ -95.364785002739055, 29.770316199296165 ], [ -95.365006002604929, 29.770504199379012 ], [ -95.365042002985987, 29.770557199179965 ], [ -95.365050002761237, 29.770226199465586 ], [ -95.365053002343032, 29.770210198946433 ], [ -95.365075002850276, 29.770080199012259 ], [ -95.365089002279788, 29.770002199421441 ], [ -95.365135002966213, 29.769828199227401 ], [ -95.365165002786256, 29.769717198902914 ], [ -95.365280002495496, 29.769410199341699 ], [ -95.365410002428433, 29.769063198702668 ], [ -95.36549600265009, 29.768877199109184 ], [ -95.365934003141149, 29.767926199173221 ], [ -95.366049002192554, 29.767673199057473 ], [ -95.366171002994335, 29.76739719832668 ], [ -95.366226002252688, 29.767273198461396 ], [ -95.366443002720573, 29.766791198196429 ], [ -95.36669200240668, 29.766214198473836 ], [ -95.367044003219704, 29.765504198251442 ], [ -95.367291002396001, 29.765091198165749 ], [ -95.367549003074885, 29.764791198210979 ], [ -95.367862003156333, 29.764470197739445 ], [ -95.368144003369437, 29.764278197637182 ], [ -95.368476003559522, 29.764078197685091 ], [ -95.368713003440405, 29.763956198106921 ], [ -95.368810003704141, 29.763904198260018 ], [ -95.368974003486215, 29.763816197579178 ], [ -95.369107003102869, 29.763744197754843 ], [ -95.369353003823917, 29.763611197358916 ], [ -95.369435003749373, 29.763567198074732 ], [ -95.369551003651011, 29.763512197497434 ], [ -95.37008200341765, 29.763262197454665 ], [ -95.370349003927871, 29.763146198074057 ], [ -95.370664003795639, 29.763008197728379 ], [ -95.370757003818795, 29.762968197423362 ], [ -95.371660004033558, 29.762559197720783 ], [ -95.371938003781651, 29.762408197057084 ], [ -95.372038003953662, 29.762354197321315 ], [ -95.372309003768663, 29.762160197479492 ], [ -95.372345003979731, 29.762130197135086 ], [ -95.372596004594783, 29.761922197462908 ], [ -95.37282400399701, 29.761697197658627 ], [ -95.372975004449231, 29.761525197552807 ], [ -95.373075004161464, 29.761395197138615 ], [ -95.373142004603835, 29.761283197162868 ], [ -95.373212004296462, 29.761165197075417 ], [ -95.373285004083286, 29.761025197148445 ], [ -95.373343003777379, 29.760912197026887 ], [ -95.373444004166529, 29.76068519681197 ], [ -95.37363400462462, 29.760262196582953 ], [ -95.373662004519133, 29.7601991972744 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1116, "Tract": "48201510202", "Area_SqMi": 1.0242877733502385, "total_2009": 3946, "total_2010": 3891, "total_2011": 3774, "total_2012": 3423, "total_2013": 3474, "total_2014": 3432, "total_2015": 3310, "total_2016": 4046, "total_2017": 3949, "total_2018": 3861, "total_2019": 4214, "total_2020": 3903, "age1": 1458, "age2": 2292, "age3": 897, "earn1": 822, "earn2": 1739, "earn3": 2086, "naics_s01": 5, "naics_s02": 3, "naics_s03": 26, "naics_s04": 301, "naics_s05": 379, "naics_s06": 315, "naics_s07": 1016, "naics_s08": 64, "naics_s09": 86, "naics_s10": 92, "naics_s11": 70, "naics_s12": 698, "naics_s13": 0, "naics_s14": 18, "naics_s15": 43, "naics_s16": 114, "naics_s17": 133, "naics_s18": 842, "naics_s19": 441, "naics_s20": 1, "race1": 3534, "race2": 718, "race3": 34, "race4": 282, "race5": 4, "race6": 75, "ethnicity1": 2732, "ethnicity2": 1915, "edu1": 795, "edu2": 837, "edu3": 893, "edu4": 664, "Shape_Length": 30628.933400138198, "Shape_Area": 28555390.034959957, "total_2021": 4087, "total_2022": 4647 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.399024011059794, 29.763534196587862 ], [ -95.398977010542012, 29.763171196644631 ], [ -95.398909010795364, 29.762929196995525 ], [ -95.398832010334445, 29.762730196372548 ], [ -95.398625010503437, 29.762332196739067 ], [ -95.398497010495291, 29.762020196019478 ], [ -95.398457010506519, 29.761923196228164 ], [ -95.39843001117535, 29.76186319652496 ], [ -95.397218010526657, 29.762254196257718 ], [ -95.396025010566845, 29.76281719709139 ], [ -95.395388010164169, 29.762942196851142 ], [ -95.394688009785071, 29.7629381964727 ], [ -95.392651009413569, 29.762498196739784 ], [ -95.392491009109975, 29.762515196616128 ], [ -95.392289009622687, 29.762536197171599 ], [ -95.392291009215214, 29.762602196680731 ], [ -95.39230200941887, 29.763095196534962 ], [ -95.392305009158292, 29.763211196948347 ], [ -95.39230900906756, 29.763377197368552 ], [ -95.392311009017121, 29.763954197366992 ], [ -95.392285009077796, 29.764325197484006 ], [ -95.392294009024013, 29.764659197451099 ], [ -95.392301009008463, 29.766569197392922 ], [ -95.392277009557546, 29.766917198091107 ], [ -95.392236009721159, 29.767547197615755 ], [ -95.391825009530478, 29.768966197708821 ], [ -95.39136800870962, 29.768923198079559 ], [ -95.39092400864071, 29.768894197933669 ], [ -95.390747009258931, 29.768881197727453 ], [ -95.389075008730842, 29.768750198200667 ], [ -95.388020008456976, 29.768694198110111 ], [ -95.387598007982348, 29.768675198217263 ], [ -95.386908008061454, 29.768604198611595 ], [ -95.386273007520629, 29.768543197902286 ], [ -95.385488007286796, 29.768452197769911 ], [ -95.384754007146896, 29.768377198322668 ], [ -95.383838006891878, 29.768341198140821 ], [ -95.382745007175743, 29.768314198566927 ], [ -95.382743007212625, 29.767640198572657 ], [ -95.382729007383816, 29.767529197688571 ], [ -95.382675006808526, 29.7673501982073 ], [ -95.382608006878826, 29.767202198123439 ], [ -95.38254400666635, 29.767093198136017 ], [ -95.382461006445325, 29.76698219760835 ], [ -95.382368006599165, 29.766886198300881 ], [ -95.382287007156691, 29.766816198211302 ], [ -95.382146006545838, 29.766710197579528 ], [ -95.381915006747406, 29.766567197609714 ], [ -95.381741006236666, 29.766442198126491 ], [ -95.381549006653998, 29.766200197647262 ], [ -95.381447006948122, 29.766008197495069 ], [ -95.381393006570875, 29.765835198242534 ], [ -95.381365006284071, 29.765668197891436 ], [ -95.38135700625547, 29.765545198106004 ], [ -95.380515006287254, 29.765474197906876 ], [ -95.379795006421929, 29.765469198184118 ], [ -95.37939800620704, 29.76547419754576 ], [ -95.378932005843311, 29.765464197454236 ], [ -95.378260005556228, 29.765483197543571 ], [ -95.377146005083489, 29.765492197664322 ], [ -95.375593004933592, 29.76549019829001 ], [ -95.375596004809339, 29.766248198309292 ], [ -95.375597005000316, 29.76698819822824 ], [ -95.375599005255381, 29.767540198477118 ], [ -95.375631004890494, 29.767634198046689 ], [ -95.37562100546198, 29.768338198942008 ], [ -95.375716005354164, 29.768382198736457 ], [ -95.375818005460332, 29.76840919836895 ], [ -95.376005005276838, 29.768426198754085 ], [ -95.377234006000364, 29.768553198124284 ], [ -95.377232005256829, 29.76930519823625 ], [ -95.37723200535207, 29.769518198587399 ], [ -95.377214006110435, 29.770010199148384 ], [ -95.376988006007309, 29.770012198791335 ], [ -95.376795005662061, 29.770009198598615 ], [ -95.375841005203284, 29.770012198515925 ], [ -95.375850005680974, 29.770759199268728 ], [ -95.375861005402896, 29.771491199325602 ], [ -95.375864005035993, 29.772159198970488 ], [ -95.375864005595801, 29.772216199385195 ], [ -95.375864005479855, 29.772272199631217 ], [ -95.375866005712425, 29.772377199013963 ], [ -95.375868005637258, 29.772515199706099 ], [ -95.375876005881139, 29.772975199530368 ], [ -95.375889005730514, 29.773705199646564 ], [ -95.375902005985665, 29.774452199438883 ], [ -95.3759140051245, 29.775157200050238 ], [ -95.375915005854282, 29.775227199607198 ], [ -95.375927005537704, 29.775928200380275 ], [ -95.375939005279747, 29.77660020032047 ], [ -95.375937005220322, 29.777293200167129 ], [ -95.374801005160123, 29.77729320002679 ], [ -95.374707005092404, 29.777306200209683 ], [ -95.373608005318687, 29.777314200008348 ], [ -95.373072004855004, 29.777281200710547 ], [ -95.372434004515071, 29.777286200786502 ], [ -95.372450004655477, 29.777829200213979 ], [ -95.37245900447985, 29.778159200452134 ], [ -95.372465005092721, 29.778362200792586 ], [ -95.374095005028948, 29.778899201056081 ], [ -95.374152005383337, 29.778914200948869 ], [ -95.374641004953872, 29.779016200909279 ], [ -95.37507000564726, 29.779113201202222 ], [ -95.375507006043762, 29.779180200792176 ], [ -95.375984005896811, 29.779209200787857 ], [ -95.376570006130748, 29.779216201077539 ], [ -95.377253006227903, 29.779159200948804 ], [ -95.377690005987731, 29.779056200854889 ], [ -95.378270005812311, 29.778931200813417 ], [ -95.378784005913289, 29.77879520065936 ], [ -95.379339006272488, 29.778603200372455 ], [ -95.380564007353343, 29.77813620051888 ], [ -95.381133007231512, 29.777935200531644 ], [ -95.382387007320503, 29.777575200464856 ], [ -95.383367007490392, 29.777355200071511 ], [ -95.384393007708084, 29.777147199642783 ], [ -95.384848007631021, 29.777078199578792 ], [ -95.385715008623905, 29.776965199708634 ], [ -95.387002008305856, 29.776893199808661 ], [ -95.387364008282219, 29.776887199883102 ], [ -95.387551008839822, 29.776885199868552 ], [ -95.388459008859328, 29.776873199979807 ], [ -95.388709009234674, 29.776870199826689 ], [ -95.389746009142442, 29.776856199837809 ], [ -95.389810009593077, 29.776855199681709 ], [ -95.389869009240613, 29.776854200184037 ], [ -95.389932009114958, 29.776853200096333 ], [ -95.390535009507815, 29.776845200093916 ], [ -95.396990010725361, 29.776696199847546 ], [ -95.397248010639345, 29.776683199744749 ], [ -95.397442011096871, 29.77667319967339 ], [ -95.397441011122837, 29.776530199342758 ], [ -95.397441010703034, 29.776416199321449 ], [ -95.397440011447017, 29.776129199213148 ], [ -95.397410011156822, 29.775232198878303 ], [ -95.397408011214949, 29.775158199526608 ], [ -95.397405011191637, 29.775081199037203 ], [ -95.397378011086701, 29.774271199455278 ], [ -95.397334011410749, 29.772454198293058 ], [ -95.397330010942071, 29.771441198593003 ], [ -95.397325010419507, 29.770411198144952 ], [ -95.397279010377545, 29.769562198206152 ], [ -95.397125010485965, 29.769033197688429 ], [ -95.397119010796871, 29.768717198219452 ], [ -95.397122010633211, 29.768027197778451 ], [ -95.397119010660063, 29.767330197353928 ], [ -95.397373011151785, 29.766572197543585 ], [ -95.3975040103021, 29.766270197444001 ], [ -95.397901010813854, 29.765744196799062 ], [ -95.398222011184728, 29.765294197022257 ], [ -95.398473010394554, 29.764883197424123 ], [ -95.398718011246515, 29.764455197062059 ], [ -95.398835011177837, 29.764248197046992 ], [ -95.398902011147314, 29.764075196855813 ], [ -95.398931011358187, 29.763946196450824 ], [ -95.398961010468483, 29.763812196877087 ], [ -95.399024011059794, 29.763534196587862 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1117, "Tract": "48201410102", "Area_SqMi": 0.30480458724860493, "total_2009": 300, "total_2010": 392, "total_2011": 422, "total_2012": 413, "total_2013": 429, "total_2014": 410, "total_2015": 464, "total_2016": 586, "total_2017": 463, "total_2018": 2346, "total_2019": 2783, "total_2020": 2756, "age1": 156, "age2": 298, "age3": 101, "earn1": 121, "earn2": 219, "earn3": 215, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 28, "naics_s05": 0, "naics_s06": 21, "naics_s07": 13, "naics_s08": 2, "naics_s09": 0, "naics_s10": 1, "naics_s11": 25, "naics_s12": 41, "naics_s13": 1, "naics_s14": 95, "naics_s15": 4, "naics_s16": 7, "naics_s17": 17, "naics_s18": 278, "naics_s19": 17, "naics_s20": 0, "race1": 398, "race2": 108, "race3": 4, "race4": 26, "race5": 2, "race6": 17, "ethnicity1": 391, "ethnicity2": 164, "edu1": 81, "edu2": 109, "edu3": 125, "edu4": 84, "Shape_Length": 15928.420481672703, "Shape_Area": 8497430.2142262999, "total_2021": 2956, "total_2022": 555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.38581600769821, 29.758315195916644 ], [ -95.385806007300232, 29.758115195691349 ], [ -95.385762007297302, 29.75791919608022 ], [ -95.385723007243328, 29.757796196098237 ], [ -95.385718006982714, 29.757624195922652 ], [ -95.385189007134727, 29.757634195623364 ], [ -95.384403006720532, 29.757653196096165 ], [ -95.384021007088052, 29.757662195776618 ], [ -95.383777006931965, 29.75766919592942 ], [ -95.383536006996891, 29.757668195968176 ], [ -95.383262006365925, 29.757676196208184 ], [ -95.383078006891267, 29.757681195846867 ], [ -95.382485006106364, 29.757692195944944 ], [ -95.382231006401028, 29.757726196416144 ], [ -95.382087005823252, 29.757769196332003 ], [ -95.381847006325472, 29.757823196217142 ], [ -95.381618006512355, 29.757874196188983 ], [ -95.381346006525035, 29.757890196322062 ], [ -95.381182005596344, 29.757896196525451 ], [ -95.380277005407947, 29.757898195990272 ], [ -95.379376005541758, 29.757903195895633 ], [ -95.37886800560193, 29.757910196086691 ], [ -95.378696005284837, 29.757891196207794 ], [ -95.378704005386467, 29.757741196324346 ], [ -95.378705005865243, 29.757728196101752 ], [ -95.378703005403153, 29.757068196345973 ], [ -95.378693005329822, 29.756436195779333 ], [ -95.378689004900778, 29.755809195535857 ], [ -95.378685005361945, 29.755173195628377 ], [ -95.378675005670829, 29.754547195650972 ], [ -95.378667005436583, 29.753922195594591 ], [ -95.378658005228473, 29.753099195650698 ], [ -95.378648005411151, 29.75298019497971 ], [ -95.378647004938173, 29.752707195337134 ], [ -95.378647005301588, 29.752121195159638 ], [ -95.378760005566264, 29.752098194737496 ], [ -95.378563004873072, 29.751974194819901 ], [ -95.378023004666986, 29.751633194782411 ], [ -95.377500004824114, 29.752304194956402 ], [ -95.377434005417257, 29.752363195208094 ], [ -95.376842004599524, 29.753121195723271 ], [ -95.376787004471538, 29.753076195386658 ], [ -95.375991004344129, 29.752604195431243 ], [ -95.375144004691023, 29.752075195601389 ], [ -95.374625004324272, 29.752726195363032 ], [ -95.374550004031988, 29.75281919518179 ], [ -95.37450000368095, 29.752884195500151 ], [ -95.374508004427625, 29.752912195187008 ], [ -95.374520003870259, 29.753131195525853 ], [ -95.374548003964762, 29.753669195365163 ], [ -95.37455700427023, 29.754271195518982 ], [ -95.374601003971989, 29.757122196369728 ], [ -95.374609004234713, 29.757617196621965 ], [ -95.374579004532421, 29.757780196239988 ], [ -95.374513004267982, 29.758135196405039 ], [ -95.374403004778131, 29.758462196809013 ], [ -95.374337004581065, 29.758603196444884 ], [ -95.37419100477733, 29.758962196923754 ], [ -95.373783004169809, 29.759920196580804 ], [ -95.373727004031949, 29.760053197211935 ], [ -95.373662004519133, 29.7601991972744 ], [ -95.37363400462462, 29.760262196582953 ], [ -95.373444004166529, 29.76068519681197 ], [ -95.373343003777379, 29.760912197026887 ], [ -95.373285004083286, 29.761025197148445 ], [ -95.373212004296462, 29.761165197075417 ], [ -95.373637004039651, 29.761272197047376 ], [ -95.373890004316834, 29.761335196777697 ], [ -95.374100004620772, 29.761386196872916 ], [ -95.374314004614419, 29.761398196888535 ], [ -95.374717004861367, 29.761421197274007 ], [ -95.375372004921886, 29.761349197206911 ], [ -95.375452004590457, 29.761340197023053 ], [ -95.376279004632607, 29.761024196925266 ], [ -95.37680900464494, 29.761045196872978 ], [ -95.377069005368185, 29.761149197446223 ], [ -95.378038005918185, 29.762059197223607 ], [ -95.378396006008401, 29.762235197452767 ], [ -95.378918005830684, 29.762330196890279 ], [ -95.379692005780527, 29.762263196706847 ], [ -95.380007005714646, 29.762179197399519 ], [ -95.380640005924747, 29.76192119723979 ], [ -95.380884006026989, 29.761932197120071 ], [ -95.381000006213739, 29.76196819697174 ], [ -95.381337006102953, 29.762230197386685 ], [ -95.381613006462587, 29.762596197412293 ], [ -95.381677006584496, 29.762682197325276 ], [ -95.381787006993164, 29.762828197248311 ], [ -95.382039006058775, 29.763315197333071 ], [ -95.382284006682866, 29.763605197620461 ], [ -95.382643006625941, 29.76386619695354 ], [ -95.382829006524659, 29.763942196973833 ], [ -95.382993006728569, 29.763932197496867 ], [ -95.383323006717546, 29.763787197065902 ], [ -95.383515007186745, 29.763652197373176 ], [ -95.383911006559671, 29.763239197146291 ], [ -95.384007007146138, 29.763080196755826 ], [ -95.384462006926228, 29.762078196676384 ], [ -95.384512007281145, 29.761967196784788 ], [ -95.384519007041533, 29.761952196546769 ], [ -95.384725007308873, 29.761782196675519 ], [ -95.385320007705459, 29.761658196859724 ], [ -95.385737007686672, 29.761686196698502 ], [ -95.38574100761042, 29.761604196612787 ], [ -95.385753006983066, 29.761323196500467 ], [ -95.385763007758769, 29.761215196398762 ], [ -95.385788007545159, 29.760949196220356 ], [ -95.385786007902809, 29.76075419696101 ], [ -95.38578100757897, 29.760379196229209 ], [ -95.385765007092019, 29.759696196343317 ], [ -95.385760007280396, 29.759008196215845 ], [ -95.38581600769821, 29.758315195916644 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1118, "Tract": "48201410201", "Area_SqMi": 0.24706808722635268, "total_2009": 5256, "total_2010": 5361, "total_2011": 5807, "total_2012": 6368, "total_2013": 6700, "total_2014": 6410, "total_2015": 6715, "total_2016": 6911, "total_2017": 7072, "total_2018": 7495, "total_2019": 7540, "total_2020": 7423, "age1": 1184, "age2": 5075, "age3": 1729, "earn1": 306, "earn2": 679, "earn3": 7003, "naics_s01": 3, "naics_s02": 33, "naics_s03": 0, "naics_s04": 49, "naics_s05": 97, "naics_s06": 19, "naics_s07": 180, "naics_s08": 1014, "naics_s09": 391, "naics_s10": 2841, "naics_s11": 48, "naics_s12": 1849, "naics_s13": 4, "naics_s14": 637, "naics_s15": 4, "naics_s16": 26, "naics_s17": 13, "naics_s18": 11, "naics_s19": 769, "naics_s20": 0, "race1": 5368, "race2": 1451, "race3": 41, "race4": 991, "race5": 9, "race6": 128, "ethnicity1": 6383, "ethnicity2": 1605, "edu1": 777, "edu2": 1377, "edu3": 2001, "edu4": 2649, "Shape_Length": 11276.703167215332, "Shape_Area": 6887835.4106132872, "total_2021": 7785, "total_2022": 7988 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.39843001117535, 29.76186319652496 ], [ -95.398358010894711, 29.761707196307096 ], [ -95.398319011166592, 29.761621196071971 ], [ -95.398259010249959, 29.761463196668075 ], [ -95.398219010272157, 29.761354195921268 ], [ -95.398208010375839, 29.761265195902038 ], [ -95.39819001081753, 29.761121196438445 ], [ -95.398156010034711, 29.759567195944047 ], [ -95.398148010826802, 29.758252196004189 ], [ -95.39812501034136, 29.757337195391866 ], [ -95.397154009835219, 29.757370195450779 ], [ -95.39638000961618, 29.757387195758074 ], [ -95.395595009456713, 29.757401195843638 ], [ -95.394820009967759, 29.757419195627634 ], [ -95.394686009557006, 29.757422195828664 ], [ -95.394018008973447, 29.757438195582626 ], [ -95.393472008866141, 29.757453195412051 ], [ -95.393035008649719, 29.757461195275656 ], [ -95.392278009394616, 29.757468195715873 ], [ -95.391802009213094, 29.757478196095402 ], [ -95.391306008796519, 29.757492195626536 ], [ -95.390681008022582, 29.75751519602753 ], [ -95.389759007838904, 29.757538195494185 ], [ -95.389595008545427, 29.757543195928154 ], [ -95.388954008437793, 29.757550196191669 ], [ -95.385718006982714, 29.757624195922652 ], [ -95.385723007243328, 29.757796196098237 ], [ -95.385762007297302, 29.75791919608022 ], [ -95.385806007300232, 29.758115195691349 ], [ -95.38581600769821, 29.758315195916644 ], [ -95.385760007280396, 29.759008196215845 ], [ -95.385765007092019, 29.759696196343317 ], [ -95.38578100757897, 29.760379196229209 ], [ -95.385786007902809, 29.76075419696101 ], [ -95.385788007545159, 29.760949196220356 ], [ -95.385763007758769, 29.761215196398762 ], [ -95.385753006983066, 29.761323196500467 ], [ -95.38574100761042, 29.761604196612787 ], [ -95.385737007686672, 29.761686196698502 ], [ -95.386089007531936, 29.76170919712639 ], [ -95.386762007662071, 29.761584196657349 ], [ -95.387937008198435, 29.761579196608725 ], [ -95.388387007750978, 29.761746196711055 ], [ -95.388952008659444, 29.76187219669929 ], [ -95.389181008026313, 29.761924196731083 ], [ -95.390129008704378, 29.762264196359865 ], [ -95.391183008409826, 29.762562196958658 ], [ -95.391327009393379, 29.762571196770729 ], [ -95.391715009262725, 29.762597197229727 ], [ -95.392289009622687, 29.762536197171599 ], [ -95.392491009109975, 29.762515196616128 ], [ -95.392651009413569, 29.762498196739784 ], [ -95.394688009785071, 29.7629381964727 ], [ -95.395388010164169, 29.762942196851142 ], [ -95.396025010566845, 29.76281719709139 ], [ -95.397218010526657, 29.762254196257718 ], [ -95.39843001117535, 29.76186319652496 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1119, "Tract": "48201341600", "Area_SqMi": 8.1151528864194713, "total_2009": 2736, "total_2010": 2935, "total_2011": 3095, "total_2012": 3570, "total_2013": 3575, "total_2014": 3620, "total_2015": 3794, "total_2016": 3561, "total_2017": 3846, "total_2018": 3586, "total_2019": 3747, "total_2020": 3555, "age1": 824, "age2": 2292, "age3": 1031, "earn1": 949, "earn2": 891, "earn3": 2307, "naics_s01": 0, "naics_s02": 1, "naics_s03": 4, "naics_s04": 158, "naics_s05": 705, "naics_s06": 46, "naics_s07": 276, "naics_s08": 1576, "naics_s09": 1, "naics_s10": 27, "naics_s11": 36, "naics_s12": 266, "naics_s13": 17, "naics_s14": 72, "naics_s15": 15, "naics_s16": 155, "naics_s17": 3, "naics_s18": 567, "naics_s19": 70, "naics_s20": 152, "race1": 3074, "race2": 821, "race3": 29, "race4": 163, "race5": 6, "race6": 54, "ethnicity1": 2890, "ethnicity2": 1257, "edu1": 666, "edu2": 1007, "edu3": 1028, "edu4": 622, "Shape_Length": 82901.989302440925, "Shape_Area": 226236573.25039878, "total_2021": 3992, "total_2022": 4147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.045075912707404, 29.593165173951512 ], [ -95.045080913105167, 29.593123173413968 ], [ -95.044723912495158, 29.592832173309478 ], [ -95.044698912715845, 29.592820173620566 ], [ -95.044146912171755, 29.592552173842947 ], [ -95.04407491186447, 29.592539173135911 ], [ -95.042978912132895, 29.592347173905431 ], [ -95.042944912433157, 29.59230917369187 ], [ -95.042592912351935, 29.591916173271127 ], [ -95.042495911516298, 29.591808173824059 ], [ -95.042271911266823, 29.591461173767613 ], [ -95.042312911527574, 29.5913351733147 ], [ -95.042074911634415, 29.591339173156907 ], [ -95.041821911927087, 29.59133817324199 ], [ -95.041717911244675, 29.591335173287952 ], [ -95.041672911900719, 29.591334172962856 ], [ -95.041498911708359, 29.591328173274107 ], [ -95.041299911359772, 29.591322173752719 ], [ -95.041134911728761, 29.591313173680039 ], [ -95.041029911750329, 29.591307173442321 ], [ -95.039947910891087, 29.591086173743026 ], [ -95.037608910651471, 29.5906111731666 ], [ -95.036566910504462, 29.590319173387087 ], [ -95.035195909664509, 29.589937173653428 ], [ -95.032895909295519, 29.589363173567179 ], [ -95.030280908273951, 29.588679173094626 ], [ -95.029302908089988, 29.588423172862864 ], [ -95.029012908549134, 29.588347172890163 ], [ -95.028903908513342, 29.588320173532345 ], [ -95.028930908385647, 29.588140173076908 ], [ -95.029077908596093, 29.587171172670921 ], [ -95.029118907764271, 29.586829172820558 ], [ -95.029164908197288, 29.586424172933473 ], [ -95.029228908581615, 29.586046172722554 ], [ -95.029285907720336, 29.585221172856073 ], [ -95.029293908277111, 29.584747172782802 ], [ -95.029275907991078, 29.584513172735065 ], [ -95.029252908372641, 29.584196172297492 ], [ -95.029248908408846, 29.584075172369904 ], [ -95.029103907805123, 29.583922172213509 ], [ -95.029097908080217, 29.583872172587974 ], [ -95.029072908218382, 29.583674172029852 ], [ -95.02903990800796, 29.583186171843447 ], [ -95.028995907830122, 29.582961172445803 ], [ -95.028662908115621, 29.581230172058589 ], [ -95.028593907944, 29.580790171965269 ], [ -95.028569907687, 29.58064117191881 ], [ -95.028463908171432, 29.579971171570726 ], [ -95.028357907870813, 29.579298170990324 ], [ -95.028353907263622, 29.579275170887144 ], [ -95.027832907669733, 29.575970170704458 ], [ -95.027550907206802, 29.574472170219714 ], [ -95.027468906816338, 29.573980170571797 ], [ -95.027348907301004, 29.573264169939648 ], [ -95.027181907415724, 29.572259170251073 ], [ -95.027061907046431, 29.571527169601648 ], [ -95.026792906697665, 29.569878169846994 ], [ -95.026536906650193, 29.568292169300189 ], [ -95.026205906820493, 29.566396169121862 ], [ -95.026030906177738, 29.565180168298387 ], [ -95.025926906058956, 29.564512168509619 ], [ -95.025909906802227, 29.564424168732387 ], [ -95.025811906493246, 29.563914168606026 ], [ -95.025722906611975, 29.563357168055791 ], [ -95.025641906051874, 29.562781168289391 ], [ -95.025547906271839, 29.562298168302558 ], [ -95.025404906354339, 29.561557168199052 ], [ -95.025351905702891, 29.561283168157921 ], [ -95.025137905990107, 29.560167167162724 ], [ -95.024954905590008, 29.55897616701526 ], [ -95.024373905861509, 29.555736166430751 ], [ -95.024329906116733, 29.555460166157708 ], [ -95.024248905612211, 29.554949166597957 ], [ -95.024215905587212, 29.554740166833867 ], [ -95.024051905986283, 29.553707165856146 ], [ -95.023944905711346, 29.55325516617976 ], [ -95.02343990517187, 29.551109165943984 ], [ -95.023340905310064, 29.550592165140106 ], [ -95.023293904849155, 29.550369165816107 ], [ -95.023254905466743, 29.550189165585582 ], [ -95.023184904722953, 29.549878165018125 ], [ -95.023086904548762, 29.549442165755245 ], [ -95.023046904886328, 29.549436164961723 ], [ -95.022994904759756, 29.549394165528263 ], [ -95.022913904857816, 29.549385165715002 ], [ -95.022703904582215, 29.549374165716262 ], [ -95.022611904544434, 29.549369165620252 ], [ -95.022572904672487, 29.549367164943469 ], [ -95.022531905028174, 29.549369165563892 ], [ -95.022476904480968, 29.549371164949704 ], [ -95.022274904359747, 29.549383165496113 ], [ -95.022191904677683, 29.549368165318167 ], [ -95.021773905179771, 29.549212165306219 ], [ -95.02166190441055, 29.549171165190259 ], [ -95.021622904387769, 29.549152165384275 ], [ -95.021582904901678, 29.549133165619143 ], [ -95.021520904247012, 29.549103165071159 ], [ -95.021508904509119, 29.549097165496864 ], [ -95.021359904704269, 29.549026165492126 ], [ -95.021182904840018, 29.548940165312008 ], [ -95.020951904356835, 29.548866165742123 ], [ -95.020504904510972, 29.548724164996592 ], [ -95.019421904524393, 29.548497164900525 ], [ -95.018720903370749, 29.548433165081615 ], [ -95.018023903965997, 29.548487165062973 ], [ -95.017853903648188, 29.54850016519342 ], [ -95.017797903701435, 29.548505165391767 ], [ -95.017741903483852, 29.548509165253638 ], [ -95.017598903738133, 29.548520165155786 ], [ -95.017465903747279, 29.548527165425675 ], [ -95.017414903204624, 29.548645165591932 ], [ -95.017359903490302, 29.54877016521186 ], [ -95.017367903697064, 29.54893716557109 ], [ -95.017389903192367, 29.549354165340571 ], [ -95.017408903753648, 29.549731165556242 ], [ -95.017778903572093, 29.550133165342061 ], [ -95.018039903922144, 29.550417165385895 ], [ -95.01887290425924, 29.550984165723609 ], [ -95.019841904264524, 29.551481165785411 ], [ -95.020061904140007, 29.551631166055461 ], [ -95.020523904296937, 29.551945166339397 ], [ -95.02094790474095, 29.552374165858883 ], [ -95.020941904123418, 29.55243616588335 ], [ -95.020928904801409, 29.552568165737064 ], [ -95.020888904177866, 29.552968166440468 ], [ -95.020883904469073, 29.553018166423897 ], [ -95.020831904621929, 29.553084166461275 ], [ -95.020547904216073, 29.553450166233304 ], [ -95.020421904107053, 29.553549166603339 ], [ -95.019571904194066, 29.55421816614535 ], [ -95.018812904215508, 29.554432166228313 ], [ -95.018228904028675, 29.554597166656958 ], [ -95.018211904136734, 29.554602166597782 ], [ -95.018118904148949, 29.554858166971115 ], [ -95.017839903489417, 29.555626166777294 ], [ -95.017747903510823, 29.555883167184067 ], [ -95.017580904194759, 29.556200166581551 ], [ -95.017327903477465, 29.556661166738394 ], [ -95.01731490390813, 29.556679166888518 ], [ -95.017194904119634, 29.556789166762595 ], [ -95.016824903913346, 29.557163167395764 ], [ -95.016696903378261, 29.557292167199378 ], [ -95.016683903303715, 29.557305167564685 ], [ -95.016666904021747, 29.557322167370401 ], [ -95.016633903445125, 29.55735816752048 ], [ -95.016452903561245, 29.557559167409948 ], [ -95.016477903430754, 29.557674167069411 ], [ -95.016426903664083, 29.557762167645667 ], [ -95.016426903778822, 29.557817167184535 ], [ -95.016470903334749, 29.557888167004577 ], [ -95.01651290400244, 29.557917167643495 ], [ -95.016691903598584, 29.558042167249198 ], [ -95.016722903619126, 29.55808116725051 ], [ -95.016722904276264, 29.558180167501455 ], [ -95.016653903679838, 29.558317167697879 ], [ -95.016653903943165, 29.558345167168657 ], [ -95.016678904129932, 29.558394167519793 ], [ -95.016690903412979, 29.55840316748457 ], [ -95.016709903827689, 29.55841616777068 ], [ -95.01680490364781, 29.558449167514521 ], [ -95.016829903458429, 29.558477167775433 ], [ -95.016834903730484, 29.558536167593736 ], [ -95.016829903375822, 29.558592167426177 ], [ -95.01678490427517, 29.558889167372481 ], [ -95.016767903947624, 29.558930167212992 ], [ -95.016747903394489, 29.558977167068171 ], [ -95.016721903832874, 29.558999167518262 ], [ -95.016678903428343, 29.559010167365077 ], [ -95.016583903645625, 29.559010167623409 ], [ -95.016445903338919, 29.558966167159916 ], [ -95.016382903368978, 29.558966167224877 ], [ -95.016325903526905, 29.558988167612725 ], [ -95.016281904122678, 29.559021167714238 ], [ -95.016180903921466, 29.559120167901018 ], [ -95.016118903916734, 29.559181167381951 ], [ -95.016111903986783, 29.559241167512671 ], [ -95.016149903422715, 29.559324167420801 ], [ -95.01615590419992, 29.559380167273172 ], [ -95.016162904075713, 29.559450167731228 ], [ -95.01609990334218, 29.559626167737228 ], [ -95.015902903278572, 29.560043167381355 ], [ -95.015878903480683, 29.560093168035255 ], [ -95.015813903440517, 29.560240168162522 ], [ -95.015491903887266, 29.560973167766928 ], [ -95.015426904005437, 29.561121168018772 ], [ -95.015093903049433, 29.561878168439272 ], [ -95.015013903845059, 29.56205916846055 ], [ -95.014896903255107, 29.562326167919839 ], [ -95.01483390367332, 29.56241916841347 ], [ -95.014764903181572, 29.562491168749325 ], [ -95.014638903829862, 29.562507168648633 ], [ -95.014512903177419, 29.562480168003688 ], [ -95.014462903393806, 29.562540168417041 ], [ -95.014435903058171, 29.562605167897086 ], [ -95.014418902965701, 29.562645168059007 ], [ -95.014401903527585, 29.562692168553369 ], [ -95.01414190314226, 29.56343616822409 ], [ -95.014141903446259, 29.563480168919558 ], [ -95.014160903409007, 29.563497168927086 ], [ -95.014310903766344, 29.563568168152496 ], [ -95.01434290361027, 29.563592168615838 ], [ -95.01436790354289, 29.563656168454049 ], [ -95.014365903806336, 29.56369216850122 ], [ -95.014361903797237, 29.563766168281326 ], [ -95.014266903551814, 29.563948168843879 ], [ -95.014166903339387, 29.564030168792787 ], [ -95.014078903579417, 29.564052168755396 ], [ -95.013977903837983, 29.564041168397456 ], [ -95.01387090320101, 29.564047168470665 ], [ -95.013845903557737, 29.56407416901941 ], [ -95.013820903333013, 29.564146168727817 ], [ -95.013763903066561, 29.564250168542852 ], [ -95.013685903046394, 29.564479168802023 ], [ -95.013618903110654, 29.564679168563668 ], [ -95.01356890357745, 29.564904168964105 ], [ -95.013360903040706, 29.565302168954872 ], [ -95.01334790352368, 29.565328169356285 ], [ -95.013323903322714, 29.565356169216713 ], [ -95.013314903624462, 29.565383169090417 ], [ -95.013158903574563, 29.56564116899515 ], [ -95.013058903430874, 29.565779168861944 ], [ -95.012988903244974, 29.566054169268991 ], [ -95.012932903031171, 29.566204169145124 ], [ -95.012918903310222, 29.566242169497418 ], [ -95.012844903281405, 29.566438169304593 ], [ -95.012609902605533, 29.567143169223694 ], [ -95.012592903253235, 29.567161169747102 ], [ -95.012588903185815, 29.567191169691014 ], [ -95.012359902547942, 29.5676591698588 ], [ -95.012226903288834, 29.567857169267491 ], [ -95.012151902714848, 29.567912169342655 ], [ -95.011990902664024, 29.567988169631036 ], [ -95.01186190276637, 29.568049169785134 ], [ -95.011711902926308, 29.568159169540394 ], [ -95.011572903070629, 29.568297169837308 ], [ -95.011534902957052, 29.568357169594464 ], [ -95.011522903024968, 29.568396169265689 ], [ -95.011515902800227, 29.568451169417632 ], [ -95.011522903392915, 29.568517169768981 ], [ -95.011503902991038, 29.568610169278532 ], [ -95.011402903216776, 29.568830170181293 ], [ -95.011245902787337, 29.569253169968267 ], [ -95.010797902805948, 29.570117170370459 ], [ -95.01072190291525, 29.570230170055243 ], [ -95.010653903001739, 29.570331169991352 ], [ -95.010539902892987, 29.570447169904305 ], [ -95.010514902648978, 29.570463170132587 ], [ -95.010458902611731, 29.570463169700393 ], [ -95.010376903061641, 29.570436169967802 ], [ -95.010307902959795, 29.570436169842154 ], [ -95.010212902903817, 29.570513170214355 ], [ -95.010156902775108, 29.570589170070008 ], [ -95.00991690285305, 29.570958170185701 ], [ -95.009834902978383, 29.571101170076872 ], [ -95.009841902262394, 29.571134170416656 ], [ -95.009866902252028, 29.571167170673775 ], [ -95.009866902794997, 29.571216170159534 ], [ -95.009665902327086, 29.571519170554797 ], [ -95.009312902541268, 29.571964170253683 ], [ -95.009111902826106, 29.572239170442963 ], [ -95.009048901906098, 29.572272170928976 ], [ -95.009023902051212, 29.572272170579737 ], [ -95.008972902610267, 29.572299170767153 ], [ -95.008959902461513, 29.572316170729632 ], [ -95.008960902338387, 29.572360170540424 ], [ -95.008972901997254, 29.572382170569366 ], [ -95.009060902310338, 29.572448170590899 ], [ -95.00906690285845, 29.572519170705963 ], [ -95.009035902786735, 29.572536170680188 ], [ -95.008991902101073, 29.572530170241578 ], [ -95.008859902221175, 29.572464170638415 ], [ -95.008790901852691, 29.572470170675004 ], [ -95.008746902292899, 29.572497170237536 ], [ -95.008726902605545, 29.572517170732947 ], [ -95.008708902146481, 29.572536171005265 ], [ -95.008689902528857, 29.572629171056992 ], [ -95.008708902237672, 29.572662170292016 ], [ -95.008764902566895, 29.57271717090714 ], [ -95.008752902071791, 29.572805170693076 ], [ -95.008588901980431, 29.573047171102701 ], [ -95.008374902694271, 29.57342117060157 ], [ -95.008172901794183, 29.573712170587481 ], [ -95.008139901802608, 29.573763170602852 ], [ -95.00796190235846, 29.574038171360879 ], [ -95.00779590269839, 29.574295170764806 ], [ -95.007688901924269, 29.574444170617834 ], [ -95.007329901693055, 29.574944170774621 ], [ -95.007240901727883, 29.57500317130777 ], [ -95.007190901528702, 29.575026171490762 ], [ -95.00712190242001, 29.575026170746849 ], [ -95.007077902476752, 29.575054170984732 ], [ -95.006825902188311, 29.575373171603747 ], [ -95.006685902373007, 29.575681171478202 ], [ -95.006668901882378, 29.575719170980904 ], [ -95.006441902233973, 29.576296171146268 ], [ -95.006372902170412, 29.576445171714845 ], [ -95.006246901599241, 29.576549171816861 ], [ -95.006221901674991, 29.576599171641114 ], [ -95.006215901711769, 29.576659171300477 ], [ -95.00611490171309, 29.577022171878216 ], [ -95.006089901608647, 29.57707217167242 ], [ -95.00601990232451, 29.577110171878072 ], [ -95.005912902280272, 29.577132171746989 ], [ -95.005698901620136, 29.57715417178731 ], [ -95.005554901648793, 29.577159171626654 ], [ -95.005396901546348, 29.577148171725582 ], [ -95.005359901671113, 29.577170171951966 ], [ -95.005290901390566, 29.577192171507786 ], [ -95.005220901870175, 29.57723117160096 ], [ -95.005151901405952, 29.577286172033009 ], [ -95.004994901411791, 29.577434171982233 ], [ -95.004830901851776, 29.57760417154206 ], [ -95.004685901758464, 29.577791172162705 ], [ -95.004673901965688, 29.577863172204648 ], [ -95.004786901076997, 29.577940172091374 ], [ -95.004798901368133, 29.577995171637504 ], [ -95.00475490146431, 29.578050172092329 ], [ -95.004622901724346, 29.578154172082819 ], [ -95.004616901283867, 29.578204172253717 ], [ -95.004628901885724, 29.578303171583709 ], [ -95.004622901128215, 29.578358172352743 ], [ -95.004591901070881, 29.578413172004996 ], [ -95.00444090156121, 29.578528171800681 ], [ -95.004345901668472, 29.578710171987215 ], [ -95.004301901771797, 29.578875172151552 ], [ -95.004257901016175, 29.578957172462687 ], [ -95.004263901456014, 29.57901217245233 ], [ -95.004332901905826, 29.579094172330272 ], [ -95.004364901512261, 29.579183172089305 ], [ -95.004364901549621, 29.579282172215816 ], [ -95.004338901386745, 29.579347172536288 ], [ -95.004307901168019, 29.579397172413923 ], [ -95.004250901724106, 29.579441171926362 ], [ -95.004187901080101, 29.579468172055787 ], [ -95.004137901404533, 29.579479172063618 ], [ -95.0040749009612, 29.579479172112286 ], [ -95.00402490123011, 29.579468171747006 ], [ -95.003923900907623, 29.579424172322188 ], [ -95.003822901542136, 29.579430172615041 ], [ -95.00376690162787, 29.57949617233222 ], [ -95.003766901103404, 29.579529172362005 ], [ -95.003785901537142, 29.579562172275995 ], [ -95.003841901540255, 29.579584172070739 ], [ -95.003866901194513, 29.579606171853502 ], [ -95.003866901198521, 29.579628172183725 ], [ -95.003847901294748, 29.579672172099983 ], [ -95.003785901022141, 29.579705172152071 ], [ -95.003696901726087, 29.579688171871588 ], [ -95.003520901379162, 29.579562172328689 ], [ -95.003407900808782, 29.579556172089323 ], [ -95.003376901381159, 29.579578172348594 ], [ -95.003351901340423, 29.579628172565933 ], [ -95.003306901389664, 29.579798172042818 ], [ -95.003262901718358, 29.579897172704225 ], [ -95.003180900842636, 29.580018171972018 ], [ -95.003124901570686, 29.580056172014508 ], [ -95.003074901228032, 29.580073172527229 ], [ -95.002828901396001, 29.580078172722146 ], [ -95.00258990078828, 29.580073172798702 ], [ -95.00248290131178, 29.580106172466891 ], [ -95.002413901414613, 29.580144172746326 ], [ -95.002344901292588, 29.580205172721421 ], [ -95.002142901104264, 29.580402172667622 ], [ -95.002048900671738, 29.580512172188225 ], [ -95.002029900817519, 29.580556172770155 ], [ -95.002029900810598, 29.58060617255132 ], [ -95.002035901132516, 29.580644172923087 ], [ -95.002274900906272, 29.580820172229082 ], [ -95.00238190116707, 29.58092517293592 ], [ -95.002425901128632, 29.58098017217965 ], [ -95.002456901523175, 29.58109017234527 ], [ -95.002444900955908, 29.581123173017499 ], [ -95.002419900657088, 29.581145172720248 ], [ -95.002318901456221, 29.581183172581504 ], [ -95.00207390079332, 29.581172173021685 ], [ -95.001991901482896, 29.58120017240811 ], [ -95.001909900467425, 29.581299172404734 ], [ -95.001569901031942, 29.581788172760003 ], [ -95.001544901313139, 29.58187017241406 ], [ -95.00155090039604, 29.581942173114257 ], [ -95.001613901042901, 29.581991172781375 ], [ -95.001745901409222, 29.582030172821923 ], [ -95.001776900458552, 29.582047172962984 ], [ -95.001802901415545, 29.582080172969249 ], [ -95.001801900770118, 29.582124172607756 ], [ -95.00178990079911, 29.582173172661204 ], [ -95.001543900761661, 29.582585172704828 ], [ -95.001443901109354, 29.582706172748797 ], [ -95.001380900613697, 29.582767172872813 ], [ -95.001304900784532, 29.582822172519418 ], [ -95.001210900885226, 29.582866173216324 ], [ -95.001046900687726, 29.58291017269789 ], [ -95.000725900753608, 29.58288817288733 ], [ -95.000631900951277, 29.582898172836138 ], [ -95.000555900263365, 29.582931172612795 ], [ -95.000392900961458, 29.583047173359965 ], [ -95.000285900952136, 29.583102173488907 ], [ -95.000007900479048, 29.583296173529138 ], [ -94.999743900712161, 29.583604173048641 ], [ -94.999611900987773, 29.583802173301159 ], [ -94.999554900055443, 29.583846173567082 ], [ -94.999422900138157, 29.583912173420288 ], [ -94.999366899948356, 29.583956172847344 ], [ -94.999297900082496, 29.584055172905483 ], [ -94.999177900812413, 29.584187173188241 ], [ -94.999108900584147, 29.584275173425699 ], [ -94.999007900146253, 29.584358173637057 ], [ -94.998932900735326, 29.584402173309392 ], [ -94.998844899841586, 29.584440173095565 ], [ -94.998800900134199, 29.584473173164103 ], [ -94.998731900437022, 29.584550173514891 ], [ -94.99868190040489, 29.584660173527777 ], [ -94.998630900305869, 29.584677173237651 ], [ -94.99790090021547, 29.584749173557015 ], [ -94.997624900274843, 29.584760173272265 ], [ -94.997504900026058, 29.584749173912563 ], [ -94.997447899663115, 29.584766173276392 ], [ -94.99728489971902, 29.584892173392877 ], [ -94.997215900324619, 29.585046173766294 ], [ -94.997209900380327, 29.585074173316738 ], [ -94.997335900381145, 29.585596174117299 ], [ -94.997316899545908, 29.585959174025465 ], [ -94.996926900393163, 29.586471174298239 ], [ -94.996882899666389, 29.586553174124521 ], [ -94.996719899493314, 29.586740174012462 ], [ -94.996593899471492, 29.586707173646733 ], [ -94.996467899602649, 29.58673517358023 ], [ -94.996178900119759, 29.586762173512824 ], [ -94.996146899493198, 29.586790173812449 ], [ -94.996090900165726, 29.586894173878232 ], [ -94.996002899920299, 29.586993174115385 ], [ -94.995895900176777, 29.587059174218716 ], [ -94.995813899809292, 29.587093174467881 ], [ -94.995694899177153, 29.587120174378882 ], [ -94.995656899874518, 29.587142173720046 ], [ -94.995637899831678, 29.587164173999145 ], [ -94.995637900074257, 29.587219174418433 ], [ -94.995794899817255, 29.587329173686072 ], [ -94.995788899926325, 29.587367174398679 ], [ -94.995687899819529, 29.587483174097432 ], [ -94.995607899604849, 29.587582174350644 ], [ -94.995405899252631, 29.587830173744081 ], [ -94.995059899037386, 29.588231174187353 ], [ -94.995008899578806, 29.58824817439902 ], [ -94.994883899240804, 29.58823717386224 ], [ -94.994461899042193, 29.588259174665069 ], [ -94.994222899290548, 29.588243174209861 ], [ -94.994197899269707, 29.588237173897372 ], [ -94.994203898973225, 29.588094173908175 ], [ -94.994247898864216, 29.58789117430867 ], [ -94.99428589898271, 29.58780817403629 ], [ -94.994285898942081, 29.587786174586792 ], [ -94.994266899798674, 29.587770174018697 ], [ -94.994209898923827, 29.58778117383445 ], [ -94.994153898900976, 29.587814174160613 ], [ -94.993939899251089, 29.588017173994643 ], [ -94.993817899510503, 29.588165174219267 ], [ -94.993756899302454, 29.588331174194561 ], [ -94.993769898902357, 29.588386173977913 ], [ -94.993882899587447, 29.588413173995583 ], [ -94.993951899163136, 29.588446174161795 ], [ -94.994122898999564, 29.5885951740484 ], [ -94.994159899528285, 29.588710174091279 ], [ -94.994499899616429, 29.588952174733752 ], [ -94.994594899135436, 29.589078174210897 ], [ -94.994594899049162, 29.589117174282112 ], [ -94.994496898915301, 29.58938617477607 ], [ -94.994449899836383, 29.589518175028278 ], [ -94.994412899839901, 29.589700174765387 ], [ -94.99436189968317, 29.589826174324017 ], [ -94.994357899195606, 29.589913174748297 ], [ -94.994353899696421, 29.589999174897791 ], [ -94.994349899158735, 29.590085175014586 ], [ -94.994286899468776, 29.590068174554929 ], [ -94.994248899231366, 29.590079174679655 ], [ -94.99421189966327, 29.590129175038779 ], [ -94.994267899776133, 29.590332174779029 ], [ -94.99424889937363, 29.590365174578682 ], [ -94.993827899098562, 29.590404174424492 ], [ -94.993745899609152, 29.590442174718742 ], [ -94.99365789950491, 29.590525174972612 ], [ -94.993594899544576, 29.590531174830101 ], [ -94.993563899456092, 29.590520174648194 ], [ -94.993512899443772, 29.590481174501143 ], [ -94.993468899193118, 29.590481174626973 ], [ -94.993217898887139, 29.590635175130139 ], [ -94.992871898935789, 29.590943174539895 ], [ -94.992613898889871, 29.591213174540449 ], [ -94.992393899265423, 29.591466175358722 ], [ -94.992143899012206, 29.591778175024636 ], [ -94.992006899317104, 29.591949175381721 ], [ -94.991651899025896, 29.592390175314556 ], [ -94.991381899162917, 29.592654175472457 ], [ -94.991249898642565, 29.592825175047007 ], [ -94.991192898883639, 29.592847175219571 ], [ -94.991170898718778, 29.592845175213711 ], [ -94.990997898216335, 29.59283017499811 ], [ -94.990852898668635, 29.592836175163747 ], [ -94.990802898110658, 29.592853175797032 ], [ -94.990777898635571, 29.592880174966943 ], [ -94.990764898129626, 29.592990175244818 ], [ -94.990796898630677, 29.59307817520666 ], [ -94.990840898809466, 29.593138175145572 ], [ -94.990871898488123, 29.593155175033942 ], [ -94.990865898488536, 29.593193175537106 ], [ -94.990796898663319, 29.59330917568558 ], [ -94.990727898710773, 29.593348175939681 ], [ -94.990664898792687, 29.593347175059733 ], [ -94.990550898578306, 29.59331517532355 ], [ -94.990462898724687, 29.593320175220683 ], [ -94.990374898023603, 29.593348175686256 ], [ -94.990274898785458, 29.593436175864035 ], [ -94.990142898238119, 29.593436175832718 ], [ -94.989861898331668, 29.593394175745875 ], [ -94.989808898550578, 29.5933861751211 ], [ -94.989689898338455, 29.593513175883473 ], [ -94.989493898810267, 29.593595175389297 ], [ -94.989380898541981, 29.593667175694147 ], [ -94.989248898518426, 29.593783175685985 ], [ -94.98924289787206, 29.593832175835907 ], [ -94.989273898487369, 29.593887175910321 ], [ -94.989349898803383, 29.593936175529631 ], [ -94.98938789796027, 29.593947175260904 ], [ -94.989450898272494, 29.59392017547507 ], [ -94.989506898079398, 29.593909175556533 ], [ -94.9895508988279, 29.593914175511841 ], [ -94.989594898566338, 29.59394217607597 ], [ -94.989632898877176, 29.593991175555242 ], [ -94.989638898496239, 29.594019175234777 ], [ -94.989637898563998, 29.594028175970696 ], [ -94.98963289802299, 29.594068175399531 ], [ -94.98956389827579, 29.594211175913141 ], [ -94.989481898271123, 29.594332175372436 ], [ -94.989362898637467, 29.594437175529542 ], [ -94.989198898718385, 29.594596176092672 ], [ -94.989122897809011, 29.594617175944823 ], [ -94.989079898755818, 29.594622175522325 ], [ -94.988978898592038, 29.59461917585466 ], [ -94.988903898709282, 29.594613175746566 ], [ -94.988821898328581, 29.594602175410028 ], [ -94.988676898015413, 29.594476175665577 ], [ -94.988636897936331, 29.594454175591682 ], [ -94.988494898435405, 29.59437717576531 ], [ -94.98839989795998, 29.594388175658334 ], [ -94.988311898393746, 29.594360175901343 ], [ -94.988210898205637, 29.594382176009507 ], [ -94.988160897680174, 29.594382175943732 ], [ -94.987915898260255, 29.594207175672288 ], [ -94.987902898125455, 29.594141175576386 ], [ -94.987952897788574, 29.594047176064624 ], [ -94.987933898437404, 29.594031175521913 ], [ -94.987858897824836, 29.594036175422616 ], [ -94.987719897599064, 29.594058175591954 ], [ -94.987594897814546, 29.594108176161225 ], [ -94.987550897987447, 29.594223175926114 ], [ -94.9875068980366, 29.594284175522724 ], [ -94.987480898249274, 29.594372176166395 ], [ -94.987481898299066, 29.594421175906383 ], [ -94.987512897534387, 29.594454176001769 ], [ -94.987537897947448, 29.594674175705094 ], [ -94.987558898160884, 29.594696175847542 ], [ -94.987594898082833, 29.59473517607319 ], [ -94.987783898058836, 29.594768175746964 ], [ -94.987911897844782, 29.594822175556686 ], [ -94.986920897249334, 29.594837176223106 ], [ -94.986404897212182, 29.595421176249562 ], [ -94.986099897202791, 29.595776176479653 ], [ -94.98553889774837, 29.596591176072032 ], [ -94.985092897021815, 29.59727917662897 ], [ -94.984677897742927, 29.597982176507699 ], [ -94.984602897498789, 29.598110176828165 ], [ -94.984070896667646, 29.599308176875812 ], [ -94.984036896784801, 29.599340177000464 ], [ -94.983871897461228, 29.599491176825527 ], [ -94.983668896909705, 29.599778177306415 ], [ -94.983504896786727, 29.600010177123529 ], [ -94.983361897115856, 29.600217176797024 ], [ -94.98316989725997, 29.600494177019243 ], [ -94.982914896787221, 29.600886177084131 ], [ -94.982867897166642, 29.600982177028243 ], [ -94.982828896919756, 29.600973177663043 ], [ -94.982758897356092, 29.600973177268337 ], [ -94.982689896925805, 29.601033177208741 ], [ -94.982721896991279, 29.60106117709574 ], [ -94.98282989689632, 29.601086176990364 ], [ -94.982718896695729, 29.601334177080076 ], [ -94.982612897373954, 29.601778177290083 ], [ -94.982704896991919, 29.602117177495799 ], [ -94.982756896955067, 29.602312177695239 ], [ -94.983048897029775, 29.602626177708931 ], [ -94.983231897615994, 29.602886177619599 ], [ -94.983335897265988, 29.603018177808586 ], [ -94.983464897607632, 29.603238177885551 ], [ -94.983590897485698, 29.603475177735131 ], [ -94.983678897282843, 29.603673177637717 ], [ -94.983930897807426, 29.604085177804759 ], [ -94.983982897537416, 29.60419117839988 ], [ -94.984025897195735, 29.604277178090822 ], [ -94.984025897203836, 29.604316178149269 ], [ -94.984000897191095, 29.604343177908969 ], [ -94.983943897019884, 29.604376177586403 ], [ -94.983912897176751, 29.604415177788738 ], [ -94.983937897606069, 29.604497177617134 ], [ -94.983981897487112, 29.604503177733488 ], [ -94.984239896942086, 29.604371178344383 ], [ -94.984493897671484, 29.604304178305235 ], [ -94.984787897997393, 29.604352178090323 ], [ -94.984822897656358, 29.604357178331245 ], [ -94.984856897720505, 29.60437617806987 ], [ -94.984964897427176, 29.604449177958077 ], [ -94.985051897289523, 29.604508177937319 ], [ -94.985227897826775, 29.604640177890388 ], [ -94.985592897339387, 29.604937178033282 ], [ -94.985901897736582, 29.605272178447148 ], [ -94.986020898341678, 29.605442178350316 ], [ -94.9861348977403, 29.605624177944296 ], [ -94.986423898014138, 29.605959178164447 ], [ -94.986776898256807, 29.606399178299998 ], [ -94.987261897967429, 29.607075178597956 ], [ -94.987481898281132, 29.607449178423931 ], [ -94.987702898882432, 29.607718178959633 ], [ -94.987771898086791, 29.607762178809615 ], [ -94.987815898465513, 29.607839178197612 ], [ -94.987922898923728, 29.607960178877974 ], [ -94.988010898682305, 29.608142178675678 ], [ -94.988073898915815, 29.608345178909282 ], [ -94.988080898445844, 29.608417178417085 ], [ -94.988055899015293, 29.608483178898048 ], [ -94.988097898371976, 29.60858917832271 ], [ -94.988174899045731, 29.608785179130098 ], [ -94.988212898273503, 29.60881217838303 ], [ -94.988256898594429, 29.608867179104642 ], [ -94.988326898980475, 29.608900179166678 ], [ -94.988577898380527, 29.608972178865564 ], [ -94.988628898703155, 29.608994179027444 ], [ -94.988735898298501, 29.609104179246184 ], [ -94.988873898479639, 29.609384178477445 ], [ -94.989006899259849, 29.609598178484202 ], [ -94.989207899040451, 29.61013717918998 ], [ -94.989251899274066, 29.610302179073283 ], [ -94.9893278993584, 29.610363179031005 ], [ -94.9894788986566, 29.610434178673792 ], [ -94.989661898783069, 29.610500178943013 ], [ -94.989799899594914, 29.610615179099856 ], [ -94.98983189937519, 29.610648179466228 ], [ -94.989837899052247, 29.610687178679736 ], [ -94.989799898937946, 29.610714178912914 ], [ -94.989787899024989, 29.610747179374066 ], [ -94.990089899153134, 29.610989179346415 ], [ -94.990271898971372, 29.611110178736656 ], [ -94.990378899768473, 29.611149178848272 ], [ -94.990599899024403, 29.611127178973717 ], [ -94.990655898996522, 29.611132179515295 ], [ -94.990718898906565, 29.611159178808958 ], [ -94.990762899487478, 29.611214179516271 ], [ -94.990800899593594, 29.611346179579701 ], [ -94.990832899223349, 29.611401179030612 ], [ -94.990895899005807, 29.611407179177768 ], [ -94.99102789956126, 29.611379179337785 ], [ -94.991064898978351, 29.611385179397814 ], [ -94.99112189949723, 29.611407179589524 ], [ -94.991279899455535, 29.611500179480409 ], [ -94.991609899236622, 29.61172217913834 ], [ -94.991858899394828, 29.611890179019781 ], [ -94.992311899730424, 29.612231179563693 ], [ -94.992412899562282, 29.612264179695487 ], [ -94.994752900776064, 29.61372417971031 ], [ -94.995322901163078, 29.61373917977463 ], [ -94.995383901071236, 29.613741179901108 ], [ -94.995973900885133, 29.613758179662266 ], [ -94.996592901283961, 29.61374917924952 ], [ -95.00433990329519, 29.613639179265657 ], [ -95.016980906308191, 29.613125178638199 ], [ -95.018196906965713, 29.613058178664033 ], [ -95.018221906899015, 29.613815179175884 ], [ -95.018224906480967, 29.613937179264767 ], [ -95.018241906973955, 29.61472717860196 ], [ -95.018230906697028, 29.614903179409193 ], [ -95.018228906742806, 29.614937179399291 ], [ -95.018197906789794, 29.615387178994322 ], [ -95.018285906414675, 29.616448179354393 ], [ -95.018287906703776, 29.616770179535866 ], [ -95.018289907153388, 29.61714017914348 ], [ -95.018291906975691, 29.617431179316686 ], [ -95.018294907241156, 29.617584179254539 ], [ -95.01830190707571, 29.617876179524639 ], [ -95.018492906825102, 29.617786179690476 ], [ -95.01861290682163, 29.617731179552788 ], [ -95.018731907262548, 29.617675179972977 ], [ -95.019126907081315, 29.617425179793127 ], [ -95.019826907394645, 29.617222179173059 ], [ -95.020412907074515, 29.617052179141314 ], [ -95.020819907593079, 29.616999178986255 ], [ -95.021422907206656, 29.616696179601671 ], [ -95.021854907508342, 29.61673917918213 ], [ -95.022096908003675, 29.61676317896508 ], [ -95.022261907949343, 29.616670179109697 ], [ -95.022316907508767, 29.616639179402611 ], [ -95.022404907760787, 29.616590179666172 ], [ -95.022897907766705, 29.616560178992216 ], [ -95.029959909675654, 29.616426179069627 ], [ -95.030285909916074, 29.616552178649506 ], [ -95.030752909581153, 29.616411179204583 ], [ -95.032120910363133, 29.616432178924619 ], [ -95.032309909942427, 29.616116178576707 ], [ -95.032288910528493, 29.616013179127133 ], [ -95.032346910370734, 29.615695178789228 ], [ -95.032468909984502, 29.615023178621538 ], [ -95.032467910062678, 29.614967178105221 ], [ -95.032465910446746, 29.614733178318467 ], [ -95.032464910707162, 29.614675178134675 ], [ -95.032462910335326, 29.614422178293491 ], [ -95.032458910693464, 29.613948178722417 ], [ -95.032550910040527, 29.613343178076537 ], [ -95.03231890991367, 29.611919177519081 ], [ -95.032361910411623, 29.611722177551837 ], [ -95.032379910287531, 29.611637177831632 ], [ -95.032343910225066, 29.611280177878601 ], [ -95.032472910630489, 29.610577177282259 ], [ -95.032667910458571, 29.610450177382905 ], [ -95.032904910095112, 29.610392177607849 ], [ -95.032924910663652, 29.610390177876628 ], [ -95.032918909808373, 29.610355177679651 ], [ -95.032900910701443, 29.610246177845855 ], [ -95.032879910429344, 29.610120177123584 ], [ -95.032798910273939, 29.609629177492327 ], [ -95.032591910346426, 29.60838417706249 ], [ -95.032465910124543, 29.607624177055797 ], [ -95.031863909710452, 29.60399917594604 ], [ -95.031818909841164, 29.603724176445795 ], [ -95.032030909370434, 29.603722176290493 ], [ -95.032468909492252, 29.603718175837585 ], [ -95.032527909412295, 29.603717176654552 ], [ -95.032758910023446, 29.603715176434019 ], [ -95.033216910105949, 29.60371117622509 ], [ -95.034081910699044, 29.603755176400043 ], [ -95.03427491013035, 29.603758175997314 ], [ -95.037356910905856, 29.603702176249804 ], [ -95.037810911638601, 29.603699175758607 ], [ -95.038261911458051, 29.603716176356468 ], [ -95.038707911795996, 29.603751176090679 ], [ -95.039149911746634, 29.603806176268812 ], [ -95.039583911580479, 29.603881175873745 ], [ -95.040252911422698, 29.604010176124973 ], [ -95.040712912266031, 29.604098176177111 ], [ -95.040846911909469, 29.604124176263287 ], [ -95.041460911706736, 29.604242176236248 ], [ -95.041656911805006, 29.603679176202192 ], [ -95.041963911812616, 29.603440176255162 ], [ -95.042740912749281, 29.603108175519054 ], [ -95.043065912610018, 29.602887175385405 ], [ -95.043706912253185, 29.602095175084635 ], [ -95.043892912251351, 29.601865175358583 ], [ -95.043793912851328, 29.601343175204018 ], [ -95.043530912834001, 29.600736175229077 ], [ -95.043391912405042, 29.600210174777263 ], [ -95.042795912348595, 29.599061174554031 ], [ -95.043047912248369, 29.598530175145523 ], [ -95.04341491232951, 29.598049174960327 ], [ -95.044492912121555, 29.597268174727692 ], [ -95.044381912401192, 29.596774174255366 ], [ -95.0438259127219, 29.595727174422525 ], [ -95.044141912755506, 29.595266173758191 ], [ -95.044920912846266, 29.594523174318116 ], [ -95.045075912707404, 29.593165173951512 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1120, "Tract": "48201310800", "Area_SqMi": 0.74553706063546354, "total_2009": 2618, "total_2010": 2584, "total_2011": 2661, "total_2012": 2432, "total_2013": 2229, "total_2014": 2394, "total_2015": 2699, "total_2016": 2784, "total_2017": 2783, "total_2018": 2642, "total_2019": 2472, "total_2020": 2464, "age1": 333, "age2": 1189, "age3": 571, "earn1": 261, "earn2": 549, "earn3": 1283, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 116, "naics_s05": 381, "naics_s06": 376, "naics_s07": 236, "naics_s08": 524, "naics_s09": 0, "naics_s10": 4, "naics_s11": 17, "naics_s12": 136, "naics_s13": 20, "naics_s14": 25, "naics_s15": 0, "naics_s16": 76, "naics_s17": 0, "naics_s18": 112, "naics_s19": 9, "naics_s20": 60, "race1": 1463, "race2": 495, "race3": 20, "race4": 95, "race5": 4, "race6": 16, "ethnicity1": 1153, "ethnicity2": 940, "edu1": 475, "edu2": 454, "edu3": 537, "edu4": 294, "Shape_Length": 21885.10065080097, "Shape_Area": 20784297.25108492, "total_2021": 2084, "total_2022": 2093 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.322307989615268, 29.728823191936836 ], [ -95.322884989465066, 29.728225191691223 ], [ -95.321663989913816, 29.727856192094617 ], [ -95.321517989539387, 29.727813192149782 ], [ -95.32115798964567, 29.727716191764106 ], [ -95.320944989157724, 29.72765419188913 ], [ -95.32031798933815, 29.727460191689872 ], [ -95.320163989411157, 29.727411192383567 ], [ -95.319732989004677, 29.727283191800094 ], [ -95.318514989023967, 29.72692619227087 ], [ -95.317872988602588, 29.726736192132005 ], [ -95.317809988037993, 29.726712191893949 ], [ -95.316873988729981, 29.726440191674179 ], [ -95.316008987864123, 29.726185191586779 ], [ -95.315356987356225, 29.725986192219903 ], [ -95.313346987044198, 29.725381191736457 ], [ -95.313087987468293, 29.725300191425656 ], [ -95.311422987067218, 29.724811191549229 ], [ -95.311315987023747, 29.724775192083609 ], [ -95.311211986276518, 29.72473919208154 ], [ -95.311099986997277, 29.724702191791366 ], [ -95.308281986011735, 29.723812191945811 ], [ -95.308200986056747, 29.723791191600466 ], [ -95.306333985665887, 29.722948191782454 ], [ -95.305186985326202, 29.722448191721405 ], [ -95.30503598551006, 29.722382191927593 ], [ -95.304951984622477, 29.722637191382471 ], [ -95.305230985048468, 29.724272191925323 ], [ -95.304990985490193, 29.725585191975902 ], [ -95.305097985522025, 29.725969191924705 ], [ -95.305443984915541, 29.726582192520606 ], [ -95.305458984921373, 29.726903192237174 ], [ -95.305315985468894, 29.727161192482573 ], [ -95.305168985233763, 29.727287192843516 ], [ -95.304467984643196, 29.727496192995222 ], [ -95.30424398517728, 29.727654192428844 ], [ -95.304043984790781, 29.728086192873889 ], [ -95.303836984821217, 29.729004192490478 ], [ -95.303663985136907, 29.729330193343806 ], [ -95.303192984952588, 29.730001192790059 ], [ -95.302755984747137, 29.730087192864588 ], [ -95.302396984555344, 29.72996619309825 ], [ -95.302207984486927, 29.72982919297127 ], [ -95.301796984904072, 29.729006193194248 ], [ -95.30154198464578, 29.728776192639572 ], [ -95.30089198381242, 29.728545192864548 ], [ -95.299733984267078, 29.728277193302532 ], [ -95.299609984235957, 29.728229192943697 ], [ -95.29952998432843, 29.728431192488269 ], [ -95.299342983904694, 29.728902193377703 ], [ -95.299280983662669, 29.729081192982974 ], [ -95.300015983672253, 29.729317193284661 ], [ -95.300728983823447, 29.729539193180141 ], [ -95.30031998458746, 29.730570193093776 ], [ -95.299797984001259, 29.731909193475683 ], [ -95.299661984562533, 29.732234193921116 ], [ -95.299559984279355, 29.732484193693644 ], [ -95.299534983659271, 29.732590193855966 ], [ -95.299492983952717, 29.732656193799059 ], [ -95.300746984618357, 29.733048193526141 ], [ -95.301469984848154, 29.733272194197646 ], [ -95.302917985424742, 29.733722193960094 ], [ -95.303149985137992, 29.73380219384401 ], [ -95.304099985592501, 29.734097194205706 ], [ -95.305091986023996, 29.73441519389824 ], [ -95.305610985367593, 29.734561194152803 ], [ -95.307051986441635, 29.735005194088281 ], [ -95.308530986893473, 29.735496193721691 ], [ -95.309012986629256, 29.735660194052432 ], [ -95.310974987651704, 29.736277194374949 ], [ -95.312270987283469, 29.736672194301743 ], [ -95.312991987454765, 29.736915194112488 ], [ -95.313719988060456, 29.737128194043141 ], [ -95.31399098778347, 29.737200193864432 ], [ -95.314253987987044, 29.737268194391284 ], [ -95.314347987665968, 29.737142193917009 ], [ -95.314548987861968, 29.736827194544826 ], [ -95.314857988620005, 29.736370193664023 ], [ -95.315113987876643, 29.736091193531966 ], [ -95.315289988440867, 29.735860193584077 ], [ -95.315516988466371, 29.735665194262889 ], [ -95.31569998839268, 29.735476194199268 ], [ -95.316408988306392, 29.734811193434567 ], [ -95.31669598842565, 29.734518193658456 ], [ -95.316970988669212, 29.734222193224056 ], [ -95.317644988569, 29.73351319373878 ], [ -95.318242988569907, 29.732934193092351 ], [ -95.318822989333256, 29.732364193306879 ], [ -95.319399988793791, 29.731782193183665 ], [ -95.319969989021729, 29.731201192633968 ], [ -95.320000988951449, 29.731122192680488 ], [ -95.320515989183704, 29.730601192446215 ], [ -95.321123989579831, 29.730014192715061 ], [ -95.321721989568431, 29.729404192407451 ], [ -95.322307989615268, 29.728823191936836 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1121, "Tract": "48201233300", "Area_SqMi": 4.6349975929793432, "total_2009": 4136, "total_2010": 3830, "total_2011": 3872, "total_2012": 4151, "total_2013": 4554, "total_2014": 4302, "total_2015": 4137, "total_2016": 3372, "total_2017": 3667, "total_2018": 4062, "total_2019": 4257, "total_2020": 4288, "age1": 1371, "age2": 2261, "age3": 1016, "earn1": 679, "earn2": 1426, "earn3": 2543, "naics_s01": 0, "naics_s02": 38, "naics_s03": 0, "naics_s04": 279, "naics_s05": 1117, "naics_s06": 239, "naics_s07": 908, "naics_s08": 743, "naics_s09": 0, "naics_s10": 292, "naics_s11": 88, "naics_s12": 43, "naics_s13": 0, "naics_s14": 193, "naics_s15": 15, "naics_s16": 175, "naics_s17": 33, "naics_s18": 430, "naics_s19": 55, "naics_s20": 0, "race1": 3779, "race2": 596, "race3": 55, "race4": 144, "race5": 11, "race6": 63, "ethnicity1": 2174, "ethnicity2": 2474, "edu1": 1013, "edu2": 912, "edu3": 862, "edu4": 490, "Shape_Length": 70855.209662910347, "Shape_Area": 129215800.01460136, "total_2021": 4009, "total_2022": 4648 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.227978967568944, 29.772121204729597 ], [ -95.227858967444234, 29.771882204650481 ], [ -95.227724967884996, 29.771614203840649 ], [ -95.227492967199723, 29.771564204324495 ], [ -95.227504966806876, 29.771174204480868 ], [ -95.22733996676223, 29.770983204465924 ], [ -95.227306966970957, 29.770923203727776 ], [ -95.227070967128881, 29.770409203867221 ], [ -95.227261967418229, 29.769791203700315 ], [ -95.227210967491686, 29.769663204038729 ], [ -95.227197967620228, 29.76955920367875 ], [ -95.227275966742951, 29.76942920391302 ], [ -95.227156967550926, 29.769173203454152 ], [ -95.226846966962256, 29.768929203704765 ], [ -95.226517967351612, 29.768932203688689 ], [ -95.226343966700171, 29.769000203985371 ], [ -95.226101966666334, 29.769235203950316 ], [ -95.225569967013527, 29.769543203554594 ], [ -95.225269966268073, 29.769502203711184 ], [ -95.225210966190659, 29.769126203964529 ], [ -95.225107966532221, 29.768714203509663 ], [ -95.224848966906123, 29.768583203917153 ], [ -95.224400966300649, 29.76855720401397 ], [ -95.224112966804768, 29.768687204082088 ], [ -95.223941966359092, 29.768709203903544 ], [ -95.2238409662896, 29.768545204166042 ], [ -95.223576966260381, 29.768355203282439 ], [ -95.223592965728599, 29.768287203318554 ], [ -95.223617966429273, 29.768185204059126 ], [ -95.223696966366688, 29.767677203398499 ], [ -95.22377996578382, 29.767491203878389 ], [ -95.223956966298843, 29.767096203363398 ], [ -95.22400596579709, 29.766987203717257 ], [ -95.223962966573637, 29.766970203808324 ], [ -95.222611965736689, 29.766429203280815 ], [ -95.222345965270492, 29.766323203673984 ], [ -95.222199965564485, 29.766271202964163 ], [ -95.221989965365651, 29.766209202943678 ], [ -95.221767965897286, 29.76615420321793 ], [ -95.221541965630095, 29.766109203266922 ], [ -95.221256965724038, 29.766065203041986 ], [ -95.220879965736259, 29.766026202931727 ], [ -95.220438965203741, 29.766023203528572 ], [ -95.220442965190898, 29.765916203583725 ], [ -95.220883965690831, 29.765916203308798 ], [ -95.220993965652923, 29.765697203053424 ], [ -95.221561965869313, 29.764550203252121 ], [ -95.222609965578727, 29.76494220313328 ], [ -95.222782965821651, 29.765009202880893 ], [ -95.224101966306918, 29.765539203074013 ], [ -95.224144965873705, 29.765551202911574 ], [ -95.223957966314956, 29.760349201873151 ], [ -95.223935965364419, 29.759488201877257 ], [ -95.223299966067302, 29.759505201577571 ], [ -95.222513965337058, 29.759524201745069 ], [ -95.219271964612034, 29.759605202394027 ], [ -95.219240964735064, 29.759602201820275 ], [ -95.219201964611031, 29.759606201639382 ], [ -95.218280964907166, 29.759629202276205 ], [ -95.21773596413648, 29.759652202173132 ], [ -95.21773596403257, 29.759639202331474 ], [ -95.217724964276712, 29.759347202012815 ], [ -95.217311963985409, 29.759354202105715 ], [ -95.216861963650715, 29.759413201863559 ], [ -95.216032963350401, 29.759589202163429 ], [ -95.21567096418849, 29.759718201818028 ], [ -95.215253963728657, 29.759866202428157 ], [ -95.214746963630347, 29.760118201911983 ], [ -95.214142963822653, 29.760492202738579 ], [ -95.213852962922616, 29.760187202028987 ], [ -95.213730963755779, 29.760011202666636 ], [ -95.213656963539577, 29.759816202648725 ], [ -95.213651962843031, 29.75977120232174 ], [ -95.213641963390884, 29.759672202654908 ], [ -95.213617963181875, 29.759436201904833 ], [ -95.21305496332262, 29.759445202168738 ], [ -95.213034962616575, 29.759110201780576 ], [ -95.213018962843051, 29.758544202012498 ], [ -95.212994962991701, 29.758039202036155 ], [ -95.212977963167702, 29.757645201522266 ], [ -95.212962963066289, 29.756499201555457 ], [ -95.212918963019149, 29.755631201279421 ], [ -95.212895963004271, 29.755016200944009 ], [ -95.212871962720087, 29.754591200943715 ], [ -95.212825962680398, 29.75379520125054 ], [ -95.212808962388934, 29.753150200785409 ], [ -95.21277996222905, 29.751764200718558 ], [ -95.212745962212381, 29.750923200144914 ], [ -95.212740963041185, 29.750296200747357 ], [ -95.212695962574855, 29.750182200367064 ], [ -95.212681962951578, 29.749769200454615 ], [ -95.212676962073971, 29.749600200397957 ], [ -95.212670962087785, 29.749415200481469 ], [ -95.212655962243488, 29.748957200195669 ], [ -95.21261896264545, 29.747828199847913 ], [ -95.212555962783881, 29.745924199238292 ], [ -95.212370962237046, 29.74106919865374 ], [ -95.212364961865546, 29.740953198685844 ], [ -95.212287962312274, 29.739150197920313 ], [ -95.212282961567212, 29.739054197710679 ], [ -95.212278961993988, 29.738957197618504 ], [ -95.212269961966783, 29.73873919764911 ], [ -95.212114961297956, 29.735177197661571 ], [ -95.212106961239996, 29.734997197367282 ], [ -95.212067962079331, 29.734102197092085 ], [ -95.212115961625926, 29.733948196802459 ], [ -95.212144962196462, 29.733810196940937 ], [ -95.212191961682024, 29.73367819721539 ], [ -95.212263961792686, 29.733528196596009 ], [ -95.212355961554223, 29.733407196860064 ], [ -95.212626961841522, 29.733116197062728 ], [ -95.212685961921039, 29.73296919668288 ], [ -95.212706961380064, 29.732808196861441 ], [ -95.212705962272821, 29.732738196710198 ], [ -95.212638961590102, 29.732564196746829 ], [ -95.21258096166676, 29.732496196708158 ], [ -95.212415961911191, 29.732328196490702 ], [ -95.21226596141868, 29.732253196910804 ], [ -95.212215961433131, 29.73222319689452 ], [ -95.212139962098092, 29.73215719631407 ], [ -95.212083962031485, 29.732061196293284 ], [ -95.212034961513979, 29.73194919681362 ], [ -95.212018961164475, 29.731850196158458 ], [ -95.211931961251409, 29.731671196980574 ], [ -95.211915961693904, 29.730496196457345 ], [ -95.21191396104517, 29.730446196401914 ], [ -95.211901961511515, 29.730044195959863 ], [ -95.211904961710687, 29.729712196251675 ], [ -95.211912961513164, 29.729012196226428 ], [ -95.211899961597396, 29.727994195601397 ], [ -95.211899961843002, 29.727968195662076 ], [ -95.211897960911401, 29.72780219600677 ], [ -95.211896961221953, 29.727674195489175 ], [ -95.211891961299969, 29.726531195403389 ], [ -95.211575961647952, 29.726728195243656 ], [ -95.21055796125367, 29.727360195492533 ], [ -95.210258960794761, 29.727547195445496 ], [ -95.209959961190179, 29.727733195472833 ], [ -95.209317960924992, 29.72813219610358 ], [ -95.208503960179414, 29.729701196459143 ], [ -95.207966960257181, 29.730735196058347 ], [ -95.207796960818456, 29.731061196350289 ], [ -95.207627960454573, 29.731387196729521 ], [ -95.207045960471632, 29.732508196802357 ], [ -95.206617960430762, 29.733332197304428 ], [ -95.204916959554239, 29.73613319774449 ], [ -95.204687959843554, 29.73639919745629 ], [ -95.204490959488737, 29.736626198113367 ], [ -95.202529959100573, 29.738888198279653 ], [ -95.20231795900753, 29.739133198638644 ], [ -95.20022095890549, 29.740847198764055 ], [ -95.200117958761112, 29.740932198767101 ], [ -95.198437958928579, 29.741822199117159 ], [ -95.198417958334332, 29.741832198718821 ], [ -95.194321957555061, 29.743103199453632 ], [ -95.193432956841647, 29.743379199649031 ], [ -95.193127957262476, 29.743473199631648 ], [ -95.192822957002946, 29.743568200024384 ], [ -95.192617957344126, 29.743632199936382 ], [ -95.191504956916702, 29.744016199751368 ], [ -95.188458956084986, 29.745157200197355 ], [ -95.186617955906698, 29.745832200732885 ], [ -95.183931955343439, 29.745653200233047 ], [ -95.183521955281122, 29.745625199938559 ], [ -95.182116954729594, 29.745532200014637 ], [ -95.178529953705777, 29.745903200251352 ], [ -95.174092952975982, 29.74679920111166 ], [ -95.173924952562373, 29.746804200541824 ], [ -95.173404952601913, 29.746921200932903 ], [ -95.173030952116918, 29.746934200814398 ], [ -95.172970952165443, 29.746936200664628 ], [ -95.171108951602363, 29.74700020086404 ], [ -95.170473951395493, 29.746842201125059 ], [ -95.170191951451898, 29.746827200806226 ], [ -95.167238950776309, 29.749649201749524 ], [ -95.165301950225214, 29.750352202262121 ], [ -95.165030950593547, 29.750611201716968 ], [ -95.164922949821801, 29.75092020201933 ], [ -95.165004950491891, 29.751565202312143 ], [ -95.165116950697183, 29.751797202318226 ], [ -95.165539950791924, 29.752137202004668 ], [ -95.166040950532306, 29.752305202172128 ], [ -95.166656950443326, 29.752364202514443 ], [ -95.168387951346958, 29.752264202260527 ], [ -95.171749952493428, 29.752651202482088 ], [ -95.172100951887174, 29.752752202538399 ], [ -95.172802952120875, 29.752782202509938 ], [ -95.173623952843499, 29.752878202614895 ], [ -95.17448095286295, 29.752997202160522 ], [ -95.174803953084421, 29.753098202589555 ], [ -95.175928953052605, 29.753517202093036 ], [ -95.17611395315393, 29.753535202371967 ], [ -95.177301953273002, 29.754981202761286 ], [ -95.177608954253571, 29.755294202662583 ], [ -95.177623954134731, 29.75548220303877 ], [ -95.177631953710176, 29.755581202719302 ], [ -95.177728953319829, 29.755818202796405 ], [ -95.178435954480364, 29.756701202724003 ], [ -95.178756954218443, 29.757102202783589 ], [ -95.178930954270655, 29.757319202738493 ], [ -95.179882954610576, 29.758170203365541 ], [ -95.179972954335668, 29.7582202033078 ], [ -95.180125954178209, 29.758306203098581 ], [ -95.180351954447858, 29.758585203181106 ], [ -95.180789954986011, 29.75912420347343 ], [ -95.181466954696234, 29.759805203789199 ], [ -95.182098955592707, 29.760323203471245 ], [ -95.182748955853825, 29.760705203626802 ], [ -95.183620955847061, 29.760932203602504 ], [ -95.184183955657971, 29.761012203173699 ], [ -95.184633956106737, 29.760959203516283 ], [ -95.185748955844034, 29.760972203294855 ], [ -95.18683095670778, 29.76074120328899 ], [ -95.187050956588777, 29.760643203483298 ], [ -95.18760395696377, 29.760397203199517 ], [ -95.188430956664021, 29.759798203319729 ], [ -95.189508957370066, 29.758755202499707 ], [ -95.189976957267817, 29.758401202432591 ], [ -95.190298956921566, 29.758240202634386 ], [ -95.190575957197723, 29.758165203136489 ], [ -95.191029957012873, 29.758158202585143 ], [ -95.191415956982553, 29.758285202345519 ], [ -95.191508957347565, 29.758357202903174 ], [ -95.191554957631084, 29.758465202697742 ], [ -95.191595957031652, 29.758559202816596 ], [ -95.191766957196052, 29.759410202603867 ], [ -95.191704957457659, 29.759874202909703 ], [ -95.191503957077359, 29.760385203100402 ], [ -95.191295957773605, 29.760603203645392 ], [ -95.190877957630107, 29.761425203567025 ], [ -95.19036395754695, 29.762031203922991 ], [ -95.190096956898955, 29.762202203695466 ], [ -95.189891956957126, 29.762220203514687 ], [ -95.189666957195385, 29.76230920387259 ], [ -95.189341957179906, 29.762586203771182 ], [ -95.189193956621693, 29.762827203304553 ], [ -95.188482956916303, 29.763753204186845 ], [ -95.188201956960853, 29.764430204445468 ], [ -95.188180957345963, 29.764947203842297 ], [ -95.188191957389094, 29.765253204126459 ], [ -95.188209956504437, 29.765782203986618 ], [ -95.188395957172716, 29.766407204180705 ], [ -95.188673957022232, 29.766961204737743 ], [ -95.18869395663171, 29.76700120482565 ], [ -95.188716956935394, 29.767075205044403 ], [ -95.188724957320062, 29.767099204540376 ], [ -95.188813957728442, 29.767383204233582 ], [ -95.189597957611383, 29.768648205203686 ], [ -95.190103957599902, 29.769330205016001 ], [ -95.190202957853018, 29.769464204877959 ], [ -95.190862958025789, 29.769895205355972 ], [ -95.191423958079824, 29.770121204723864 ], [ -95.192866958375973, 29.770182204783328 ], [ -95.193562958906, 29.770099205295029 ], [ -95.194826959256332, 29.769763204657814 ], [ -95.195320958745711, 29.769731205040568 ], [ -95.195692959416974, 29.769750204991912 ], [ -95.196234959329132, 29.769924204712595 ], [ -95.196640958931042, 29.770226205091049 ], [ -95.196840959446021, 29.770500205481678 ], [ -95.196979959551385, 29.770839205120208 ], [ -95.197001959419552, 29.771124205388801 ], [ -95.197006959570274, 29.771197205605901 ], [ -95.197012959279846, 29.771270205301303 ], [ -95.197033959342477, 29.77153920557279 ], [ -95.1972889593019, 29.771552204853247 ], [ -95.19766595924365, 29.771572204875003 ], [ -95.197991959276976, 29.771589205128944 ], [ -95.198800959548947, 29.771652204952645 ], [ -95.199629960180033, 29.771663205243158 ], [ -95.200378960785827, 29.771661205259555 ], [ -95.200604960241748, 29.771661204754551 ], [ -95.201270960776654, 29.771629204789914 ], [ -95.201738961002519, 29.771606205274114 ], [ -95.202260960619057, 29.771581204906958 ], [ -95.203185961092885, 29.771552204985205 ], [ -95.203909961456304, 29.771518204575976 ], [ -95.206001962194904, 29.77141820466294 ], [ -95.206213961570725, 29.771408205311886 ], [ -95.206426961491431, 29.771398205064493 ], [ -95.207950962038879, 29.771322204911375 ], [ -95.209135962821037, 29.771203204355484 ], [ -95.209778962767416, 29.771147204730795 ], [ -95.213408964095365, 29.770770204411942 ], [ -95.213668963835445, 29.770743204951845 ], [ -95.21395096407538, 29.770714204222013 ], [ -95.215168964400078, 29.770583204197109 ], [ -95.215801963822358, 29.770547204208555 ], [ -95.216535964082951, 29.770506203917705 ], [ -95.21834596445953, 29.770450204519001 ], [ -95.218796965111395, 29.770436203910595 ], [ -95.219187964634031, 29.770440204061586 ], [ -95.219684965150861, 29.770446204060583 ], [ -95.220478965052891, 29.770510204243841 ], [ -95.221120965868479, 29.770607204042534 ], [ -95.221829965818515, 29.77076020388559 ], [ -95.226018966642059, 29.771687204104154 ], [ -95.227978967568944, 29.772121204729597 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1122, "Tract": "48201452203", "Area_SqMi": 0.30742345716600977, "total_2009": 2349, "total_2010": 2321, "total_2011": 2411, "total_2012": 2475, "total_2013": 2139, "total_2014": 1773, "total_2015": 2158, "total_2016": 3439, "total_2017": 3139, "total_2018": 3177, "total_2019": 2871, "total_2020": 2749, "age1": 482, "age2": 2191, "age3": 932, "earn1": 405, "earn2": 799, "earn3": 2401, "naics_s01": 0, "naics_s02": 0, "naics_s03": 3, "naics_s04": 5, "naics_s05": 118, "naics_s06": 288, "naics_s07": 44, "naics_s08": 5, "naics_s09": 2, "naics_s10": 537, "naics_s11": 155, "naics_s12": 1235, "naics_s13": 0, "naics_s14": 48, "naics_s15": 667, "naics_s16": 134, "naics_s17": 0, "naics_s18": 347, "naics_s19": 17, "naics_s20": 0, "race1": 2377, "race2": 630, "race3": 11, "race4": 532, "race5": 2, "race6": 53, "ethnicity1": 2835, "ethnicity2": 770, "edu1": 450, "edu2": 650, "edu3": 913, "edu4": 1110, "Shape_Length": 13596.342867457452, "Shape_Area": 8570439.8252828866, "total_2021": 2703, "total_2022": 3605 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.568067052821078, 29.73025518402758 ], [ -95.568068053008815, 29.729924184436875 ], [ -95.56805605255235, 29.729712183673371 ], [ -95.568049052608373, 29.72931718403364 ], [ -95.568041052096049, 29.728900184234032 ], [ -95.568021052667007, 29.72816318409394 ], [ -95.568023052497594, 29.727760183788394 ], [ -95.56699205238408, 29.727771183858373 ], [ -95.566825051892039, 29.727774183583147 ], [ -95.565929052401188, 29.727784183597958 ], [ -95.565628051657882, 29.727788183880875 ], [ -95.565272051593368, 29.727792184085505 ], [ -95.563907051177068, 29.727810183507597 ], [ -95.563554051388209, 29.727815184014304 ], [ -95.563258051231315, 29.727793184261277 ], [ -95.562778050834439, 29.727758183728092 ], [ -95.562603050878636, 29.727745184134463 ], [ -95.561715051424883, 29.727683184271129 ], [ -95.561314051214268, 29.727653183943662 ], [ -95.560473050574302, 29.727622183512572 ], [ -95.55968505066464, 29.727619183737275 ], [ -95.558023049577443, 29.72763318418237 ], [ -95.557628049987642, 29.72764118421426 ], [ -95.55763004956259, 29.727847184347596 ], [ -95.557643049795217, 29.729134184015678 ], [ -95.557653050514602, 29.730089184671424 ], [ -95.557723050519598, 29.736709185559739 ], [ -95.557724050051149, 29.736862186016971 ], [ -95.558403050474354, 29.73685818550689 ], [ -95.559102051098208, 29.736856185493142 ], [ -95.559859051216492, 29.736852186158682 ], [ -95.560171051052791, 29.736851185747298 ], [ -95.56053705097456, 29.736848186151484 ], [ -95.560785050913452, 29.73684818587704 ], [ -95.561719051605721, 29.736835185865839 ], [ -95.563145051407176, 29.736798185262195 ], [ -95.563491051423284, 29.736800185891074 ], [ -95.564208052005824, 29.736789185824321 ], [ -95.564211052330151, 29.736437185852402 ], [ -95.564202052366483, 29.736311185675177 ], [ -95.564197051626664, 29.736207185794942 ], [ -95.564130052032183, 29.735962185956296 ], [ -95.563969051711183, 29.735327185103223 ], [ -95.56389705186956, 29.734776185208037 ], [ -95.563880051576149, 29.734641185434498 ], [ -95.56387405227332, 29.734569185101751 ], [ -95.563873051421041, 29.734447185545523 ], [ -95.563862051763593, 29.733880184949395 ], [ -95.563849051422437, 29.733264185233285 ], [ -95.563844051687866, 29.733152185273962 ], [ -95.563841051378262, 29.733086184877148 ], [ -95.563836051607922, 29.7325761845788 ], [ -95.563885051445126, 29.731980184960641 ], [ -95.563987051967388, 29.731441184510707 ], [ -95.564179051424645, 29.731472184170922 ], [ -95.564618051435502, 29.731562184580039 ], [ -95.564870052368036, 29.731625184739517 ], [ -95.56531405164084, 29.7317431841808 ], [ -95.565621052551464, 29.731834184476263 ], [ -95.566131051959772, 29.732000184315556 ], [ -95.566375052691924, 29.732088184198759 ], [ -95.566770052008224, 29.732231184710205 ], [ -95.567206052195431, 29.732398184887138 ], [ -95.567481052175395, 29.732492184310626 ], [ -95.567526052286837, 29.732383184308333 ], [ -95.567753052500052, 29.731907184295611 ], [ -95.567866052487659, 29.73161418461638 ], [ -95.567912053037091, 29.731453184465639 ], [ -95.567976052221752, 29.731197184427252 ], [ -95.568018052299138, 29.730978184497335 ], [ -95.568045052642702, 29.730835184227335 ], [ -95.568056052346094, 29.730664184308022 ], [ -95.568067052821078, 29.73025518402758 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1123, "Tract": "48201232500", "Area_SqMi": 4.4536319964663544, "total_2009": 3968, "total_2010": 3535, "total_2011": 3833, "total_2012": 4369, "total_2013": 4488, "total_2014": 4108, "total_2015": 4142, "total_2016": 3970, "total_2017": 3929, "total_2018": 3776, "total_2019": 3434, "total_2020": 3471, "age1": 568, "age2": 2147, "age3": 1010, "earn1": 271, "earn2": 825, "earn3": 2629, "naics_s01": 0, "naics_s02": 96, "naics_s03": 0, "naics_s04": 164, "naics_s05": 513, "naics_s06": 449, "naics_s07": 235, "naics_s08": 1061, "naics_s09": 0, "naics_s10": 59, "naics_s11": 289, "naics_s12": 20, "naics_s13": 0, "naics_s14": 157, "naics_s15": 355, "naics_s16": 99, "naics_s17": 0, "naics_s18": 59, "naics_s19": 116, "naics_s20": 53, "race1": 2587, "race2": 902, "race3": 38, "race4": 145, "race5": 8, "race6": 45, "ethnicity1": 2206, "ethnicity2": 1519, "edu1": 797, "edu2": 909, "edu3": 930, "edu4": 521, "Shape_Length": 57393.595169309658, "Shape_Area": 124159637.59413995, "total_2021": 3442, "total_2022": 3725 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.280146982194665, 29.802478208428866 ], [ -95.280001982272239, 29.802381208872756 ], [ -95.279948982536084, 29.802346209025817 ], [ -95.279591981750997, 29.802101208901608 ], [ -95.279156981639048, 29.801803208437526 ], [ -95.277350981179822, 29.800607208446372 ], [ -95.275191981097933, 29.799162208190793 ], [ -95.272037980245656, 29.797108208147343 ], [ -95.27194197993866, 29.797047207846219 ], [ -95.271661979506604, 29.7968712081693 ], [ -95.27066797999008, 29.796168207649195 ], [ -95.270248978878257, 29.795799207626775 ], [ -95.269549978897572, 29.794858207904166 ], [ -95.269341978838483, 29.794563207696363 ], [ -95.268688979088481, 29.79319020709789 ], [ -95.268416978526631, 29.792617207070073 ], [ -95.268025979101623, 29.791811207151607 ], [ -95.267810978115179, 29.791834206724545 ], [ -95.267394978357501, 29.791879207352334 ], [ -95.266552978711474, 29.791886207015281 ], [ -95.264436977600454, 29.791997207269254 ], [ -95.262278976766183, 29.792059206815495 ], [ -95.261602976869568, 29.792104207358644 ], [ -95.260969976547827, 29.792212207239157 ], [ -95.25890697666452, 29.792608207415309 ], [ -95.258756976540965, 29.792637207892039 ], [ -95.257691975591882, 29.792835207562121 ], [ -95.254245974739192, 29.793522207845069 ], [ -95.253684975330714, 29.793647207439648 ], [ -95.250339974203101, 29.794300208450352 ], [ -95.24943797346242, 29.794479208015947 ], [ -95.247284973170267, 29.794897208125974 ], [ -95.246196973503629, 29.79494020803067 ], [ -95.245285973429532, 29.794953208005538 ], [ -95.244169972764567, 29.794970208592289 ], [ -95.241383972258376, 29.794997208475511 ], [ -95.240262972112205, 29.795109208706119 ], [ -95.238680970827872, 29.795632208613082 ], [ -95.237405971319532, 29.79609120858396 ], [ -95.235804971086878, 29.796695208990872 ], [ -95.23500297004793, 29.796989209134292 ], [ -95.234818969880237, 29.797056209020237 ], [ -95.232815969678029, 29.797790209757167 ], [ -95.231781969986201, 29.798157209429863 ], [ -95.22884896848457, 29.799170209883236 ], [ -95.227243968926274, 29.799727210413035 ], [ -95.224421967980092, 29.800692210129984 ], [ -95.224158967512992, 29.800787210708329 ], [ -95.222338966963378, 29.801422210216597 ], [ -95.221559967406719, 29.8016942107954 ], [ -95.221131967077753, 29.801843210591887 ], [ -95.220301966833347, 29.802133211166073 ], [ -95.218917966313768, 29.802616210664013 ], [ -95.214613965805853, 29.804057211524196 ], [ -95.213959964824269, 29.80437321146518 ], [ -95.212942965128633, 29.805110211941649 ], [ -95.212803965434944, 29.805210211217858 ], [ -95.213620965701409, 29.805691212065494 ], [ -95.214086965888882, 29.806143211407608 ], [ -95.214228965823281, 29.806401211400392 ], [ -95.214240965945493, 29.806649212129777 ], [ -95.214108965264046, 29.806873211967709 ], [ -95.213449965750783, 29.807563212050592 ], [ -95.213229965370189, 29.807867212506775 ], [ -95.21277996555753, 29.809176212614044 ], [ -95.21263696545644, 29.809826212906351 ], [ -95.212626965334039, 29.80988821253171 ], [ -95.212774964818095, 29.81051221268558 ], [ -95.212888965828881, 29.810744212329148 ], [ -95.213008964845642, 29.810856213150778 ], [ -95.213056965209432, 29.81090121242093 ], [ -95.213207965875739, 29.810951212697848 ], [ -95.21341296506148, 29.81093221253251 ], [ -95.213837966017664, 29.810716212574143 ], [ -95.214320966147, 29.810094212589341 ], [ -95.214674966098855, 29.809748212418217 ], [ -95.214996966002019, 29.809597212699313 ], [ -95.215310965703466, 29.809671212416173 ], [ -95.215734965540022, 29.810062212127146 ], [ -95.21596496604802, 29.810209212872714 ], [ -95.216448966436374, 29.810237212945342 ], [ -95.216677965835132, 29.810168212638946 ], [ -95.21694696635447, 29.810001212652242 ], [ -95.217467966856674, 29.809493212560803 ], [ -95.217780966145199, 29.809072212007873 ], [ -95.218056966287492, 29.808856212501293 ], [ -95.218303966953741, 29.80872821195851 ], [ -95.218706967220839, 29.808656211806959 ], [ -95.219102966566624, 29.808751212107712 ], [ -95.219977967322706, 29.809504212409948 ], [ -95.221016967610154, 29.810053212478085 ], [ -95.221860967489718, 29.81033321262332 ], [ -95.222445967335361, 29.8106002125412 ], [ -95.2226789677797, 29.810757212848877 ], [ -95.222926968130423, 29.811288212365618 ], [ -95.223037968375749, 29.81189121266123 ], [ -95.223132968072548, 29.812008212835295 ], [ -95.223235968319017, 29.812068212361513 ], [ -95.223397967575821, 29.812087212780963 ], [ -95.224170968646632, 29.812029212256153 ], [ -95.224409967832344, 29.812077212537712 ], [ -95.224621968327952, 29.812183212574602 ], [ -95.224726967903294, 29.812338212899821 ], [ -95.224923968268328, 29.813979212901728 ], [ -95.22507496828959, 29.814189212620075 ], [ -95.225390968883374, 29.814418213285947 ], [ -95.225635968856352, 29.814437213386942 ], [ -95.225776969131829, 29.814367213093263 ], [ -95.226187968588349, 29.813626213238205 ], [ -95.226406969021951, 29.813417213140262 ], [ -95.226851968945482, 29.813348212828011 ], [ -95.227819969042386, 29.813511212844361 ], [ -95.228106969070851, 29.813520213168289 ], [ -95.22989196992701, 29.813138212277234 ], [ -95.230135969558077, 29.813168212345722 ], [ -95.23043196984051, 29.813290212699393 ], [ -95.230668970390596, 29.813486213138582 ], [ -95.230846970300561, 29.81384721285734 ], [ -95.230966970246484, 29.814770212701742 ], [ -95.230885969779578, 29.814972213373377 ], [ -95.230754969861621, 29.81510921313296 ], [ -95.230215970020694, 29.815351212716021 ], [ -95.229268969966412, 29.815551212942186 ], [ -95.228973969549287, 29.815680213205976 ], [ -95.22875696944503, 29.815862212877075 ], [ -95.228591970105839, 29.816000213038738 ], [ -95.228571969895228, 29.816175213004708 ], [ -95.228558969583105, 29.816290213328326 ], [ -95.228555970066807, 29.816318213328866 ], [ -95.228572969405121, 29.816352213696721 ], [ -95.228604969198855, 29.816416213454943 ], [ -95.228666969911629, 29.816449213067376 ], [ -95.228743969786748, 29.816492212973394 ], [ -95.229028970211658, 29.816528213752804 ], [ -95.229930969627404, 29.816522213199072 ], [ -95.230018969867331, 29.81654421378914 ], [ -95.230165970016728, 29.81658321358589 ], [ -95.230422970280301, 29.816759213249682 ], [ -95.230558970237908, 29.816894213561689 ], [ -95.230844969751701, 29.817522213411802 ], [ -95.230896970466219, 29.818023213317517 ], [ -95.23085396985968, 29.818271213292899 ], [ -95.230755969977324, 29.818428213608101 ], [ -95.230366970199796, 29.8186982140932 ], [ -95.230217970188917, 29.818871213625712 ], [ -95.230070969943085, 29.819128213544417 ], [ -95.22994797031798, 29.819470214339798 ], [ -95.229880970111736, 29.819969214050719 ], [ -95.229872970396499, 29.82054021449779 ], [ -95.229790969659064, 29.820743214381032 ], [ -95.229652969855621, 29.820861214214553 ], [ -95.229532970388505, 29.820966214151102 ], [ -95.229211969714356, 29.821061214615636 ], [ -95.228927969515397, 29.821147214469072 ], [ -95.228753969898165, 29.821243214320759 ], [ -95.228649969596333, 29.821353213952793 ], [ -95.228494969717545, 29.821518214771579 ], [ -95.228392970160485, 29.821713214053361 ], [ -95.228375969935385, 29.821855214720351 ], [ -95.228448969329236, 29.822027214907067 ], [ -95.228559969769464, 29.822290214859756 ], [ -95.229755970333088, 29.824264215107636 ], [ -95.229909970722559, 29.824518215189535 ], [ -95.229931970670336, 29.824565214591338 ], [ -95.230043970736773, 29.824515214674808 ], [ -95.234579971355174, 29.822488214588443 ], [ -95.235491971155213, 29.822080214128867 ], [ -95.235982972105177, 29.82186021433229 ], [ -95.240274972955291, 29.819939213798776 ], [ -95.24068297246167, 29.81975821340259 ], [ -95.24386197405066, 29.818486213217525 ], [ -95.244642973395941, 29.818173212731189 ], [ -95.249929974661313, 29.815886212631341 ], [ -95.258066977142022, 29.812430211303361 ], [ -95.261620977982076, 29.810921211029306 ], [ -95.262009978415932, 29.810757210756847 ], [ -95.266113978522839, 29.80890821076887 ], [ -95.266555979211986, 29.808693210112253 ], [ -95.267202979093369, 29.808353210218485 ], [ -95.267563979722368, 29.808174210028472 ], [ -95.269710979400443, 29.807051209834153 ], [ -95.279901982109266, 29.802585209158412 ], [ -95.280146982194665, 29.802478208428866 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1124, "Tract": "48201454400", "Area_SqMi": 13.046455138427222, "total_2009": 4124, "total_2010": 4300, "total_2011": 4852, "total_2012": 3960, "total_2013": 3813, "total_2014": 4484, "total_2015": 4994, "total_2016": 5511, "total_2017": 4866, "total_2018": 4858, "total_2019": 4741, "total_2020": 5378, "age1": 952, "age2": 3354, "age3": 1149, "earn1": 734, "earn2": 1039, "earn3": 3682, "naics_s01": 0, "naics_s02": 1331, "naics_s03": 0, "naics_s04": 139, "naics_s05": 28, "naics_s06": 46, "naics_s07": 922, "naics_s08": 61, "naics_s09": 174, "naics_s10": 128, "naics_s11": 240, "naics_s12": 1222, "naics_s13": 191, "naics_s14": 172, "naics_s15": 5, "naics_s16": 91, "naics_s17": 74, "naics_s18": 417, "naics_s19": 214, "naics_s20": 0, "race1": 4065, "race2": 662, "race3": 49, "race4": 589, "race5": 6, "race6": 84, "ethnicity1": 3760, "ethnicity2": 1695, "edu1": 824, "edu2": 1064, "edu3": 1284, "edu4": 1331, "Shape_Length": 86755.228970076088, "Shape_Area": 363712840.02821988, "total_2021": 5078, "total_2022": 5455 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.709560088839865, 29.72854117941689 ], [ -95.709546088582144, 29.728508178674673 ], [ -95.709464088955329, 29.728300179256003 ], [ -95.709149089100478, 29.72795117935183 ], [ -95.708876088614758, 29.727290178927571 ], [ -95.708436088864431, 29.726893178335978 ], [ -95.708244088269097, 29.726652178447342 ], [ -95.708232088344076, 29.726376178818484 ], [ -95.708454088121172, 29.725813178806366 ], [ -95.708600088336283, 29.725618178469393 ], [ -95.708786088512454, 29.725369178113439 ], [ -95.708883088543161, 29.725178178840533 ], [ -95.708856088257122, 29.725021178315231 ], [ -95.708610088020563, 29.724601178337995 ], [ -95.70839108823445, 29.724096178405954 ], [ -95.708279088517386, 29.724001177984803 ], [ -95.708248088240779, 29.723908177878489 ], [ -95.708267088287059, 29.72385817780572 ], [ -95.708317088344771, 29.723479177935303 ], [ -95.708336088488309, 29.72340717792061 ], [ -95.708336088097724, 29.723116178394438 ], [ -95.708380088059826, 29.722720177678251 ], [ -95.708304088399188, 29.722165177851053 ], [ -95.708219087668439, 29.721856177498029 ], [ -95.705809087842269, 29.720516177845322 ], [ -95.701927086800254, 29.718357176913056 ], [ -95.70170508602078, 29.718233177367761 ], [ -95.697676085170386, 29.715991176575606 ], [ -95.695740084867879, 29.714913176499667 ], [ -95.689775082454389, 29.711593176418649 ], [ -95.689448083001551, 29.711411176681029 ], [ -95.688803082909217, 29.711082176366986 ], [ -95.688724082880412, 29.711041176570468 ], [ -95.688645082551403, 29.711001175902439 ], [ -95.688624082409717, 29.710991175736133 ], [ -95.688528083054948, 29.710942176354557 ], [ -95.688356082882208, 29.710867176522008 ], [ -95.688224082775093, 29.710811176128225 ], [ -95.688001082158877, 29.710672176422086 ], [ -95.687796081895812, 29.710537175934444 ], [ -95.687746082193129, 29.710504175833737 ], [ -95.687696082522763, 29.710471175714083 ], [ -95.687627081989419, 29.71042717586138 ], [ -95.687110082055966, 29.710094175790172 ], [ -95.687089082630138, 29.710083176205217 ], [ -95.686700082500309, 29.710334175748482 ], [ -95.684114081506905, 29.711995176456497 ], [ -95.683980081036879, 29.712082176439715 ], [ -95.681567081018017, 29.713604176851089 ], [ -95.679403080639545, 29.714993177758771 ], [ -95.679216080496033, 29.715111176988444 ], [ -95.677241079701957, 29.716360177874282 ], [ -95.677082080334955, 29.716461177731798 ], [ -95.673976079193153, 29.718434178568717 ], [ -95.672118078843354, 29.719636178241579 ], [ -95.672044078646223, 29.719684178966673 ], [ -95.671719078314737, 29.719894178267499 ], [ -95.671239078568021, 29.720205179049934 ], [ -95.670610078943213, 29.720605178820524 ], [ -95.670538078367798, 29.720651178617437 ], [ -95.667526077499346, 29.722564178984666 ], [ -95.666377077537433, 29.723294179154696 ], [ -95.663841077351037, 29.724906179834299 ], [ -95.662347076863796, 29.725858179824424 ], [ -95.660647076654371, 29.726941180565341 ], [ -95.659270075994471, 29.727818180434298 ], [ -95.659087076103773, 29.727934180602283 ], [ -95.659060075693588, 29.727952180364479 ], [ -95.658978075361205, 29.728003180607594 ], [ -95.658888076204946, 29.728061180501587 ], [ -95.658222075795237, 29.72848718068537 ], [ -95.657341075880609, 29.729151181410383 ], [ -95.656347074968721, 29.730086181182738 ], [ -95.655859074905749, 29.730546181254205 ], [ -95.654244074942469, 29.732139182051636 ], [ -95.653608074265989, 29.732744181531029 ], [ -95.653213074872781, 29.733136182179969 ], [ -95.652845074488255, 29.733489182141255 ], [ -95.652688074965852, 29.733614181599144 ], [ -95.652388074816315, 29.733882182096668 ], [ -95.652089074276361, 29.734114182031664 ], [ -95.651443074626727, 29.734528182523398 ], [ -95.650867074321624, 29.734822182566482 ], [ -95.650245073668287, 29.73507018210513 ], [ -95.649826073937362, 29.73522018212222 ], [ -95.649460073346376, 29.735320182259379 ], [ -95.648441073187982, 29.735526182465236 ], [ -95.648404073403455, 29.735529182259466 ], [ -95.647679073260477, 29.735580182171208 ], [ -95.647004072666405, 29.73559418244529 ], [ -95.644059072469247, 29.735649182695195 ], [ -95.64409207192071, 29.736420183312788 ], [ -95.644099072808871, 29.737085182675393 ], [ -95.644118072624707, 29.738117183574488 ], [ -95.644136072812657, 29.738915183128803 ], [ -95.64413607205698, 29.739091183661035 ], [ -95.644160072753721, 29.74041918332129 ], [ -95.644172072855, 29.74090418358745 ], [ -95.644178073006984, 29.740980183648702 ], [ -95.644322072409764, 29.742217184316708 ], [ -95.644362073189782, 29.742589184134754 ], [ -95.644386072923552, 29.742746184572258 ], [ -95.644515073206975, 29.743898184696349 ], [ -95.644529073094702, 29.744292184901521 ], [ -95.644510073049929, 29.749182185870168 ], [ -95.644516072791305, 29.749978185384986 ], [ -95.644513072886028, 29.750178185458292 ], [ -95.644516073552623, 29.750413185398855 ], [ -95.644523073212255, 29.750668186118961 ], [ -95.644525073186486, 29.751033185804836 ], [ -95.644519073463911, 29.751213185680445 ], [ -95.64452407268243, 29.751419186149267 ], [ -95.644527073509749, 29.751576185563724 ], [ -95.64452407299737, 29.751739185936422 ], [ -95.644537073425056, 29.752548186212422 ], [ -95.644550073551315, 29.752821186055613 ], [ -95.644548073434237, 29.752872186407011 ], [ -95.644540072886102, 29.752958186640512 ], [ -95.644534073120909, 29.753148186382123 ], [ -95.644537072899567, 29.753290186204097 ], [ -95.644526073170596, 29.754124186589927 ], [ -95.644532073337459, 29.754494186336309 ], [ -95.644525072813025, 29.754702186854114 ], [ -95.644522073166058, 29.754943186582562 ], [ -95.644519073504895, 29.755184186294734 ], [ -95.644520073478461, 29.755408186308824 ], [ -95.644519073640382, 29.755469186354599 ], [ -95.644513073776551, 29.755635186617447 ], [ -95.644510073218484, 29.755877187249617 ], [ -95.644519073253974, 29.756237187068322 ], [ -95.644560073920118, 29.758325187509435 ], [ -95.644568073283864, 29.758706187258543 ], [ -95.644588073526762, 29.759170187611531 ], [ -95.644585073249914, 29.759276187341268 ], [ -95.644581073053018, 29.759389187894378 ], [ -95.644610073698857, 29.762125188499528 ], [ -95.644614073377014, 29.762473187813235 ], [ -95.64460507368284, 29.763716188120934 ], [ -95.64458507416424, 29.763832188030506 ], [ -95.644489073793522, 29.764390188272454 ], [ -95.644437073982445, 29.764648188442237 ], [ -95.644059073332116, 29.766327188616991 ], [ -95.643988074043051, 29.766635188922635 ], [ -95.643936073332171, 29.766845189320208 ], [ -95.643870073562638, 29.767124189592916 ], [ -95.643757074193758, 29.767634188932188 ], [ -95.643656073258327, 29.768107189534 ], [ -95.643492074059139, 29.768721189773455 ], [ -95.643443073150365, 29.768903189630446 ], [ -95.643339073162764, 29.769297189527521 ], [ -95.643319073478494, 29.769373189453116 ], [ -95.643312073561646, 29.769399189556772 ], [ -95.643302073626472, 29.769447189432846 ], [ -95.643122073946301, 29.770352189435105 ], [ -95.643073074079794, 29.770552189704443 ], [ -95.64293107354807, 29.771576190422472 ], [ -95.642929073785339, 29.771799190092938 ], [ -95.642924074182474, 29.772014189772126 ], [ -95.642958073924589, 29.772367190124953 ], [ -95.643038073401414, 29.772693190557295 ], [ -95.643151074270619, 29.773202190212398 ], [ -95.643365074184331, 29.773886190828087 ], [ -95.643451074141396, 29.774105190757982 ], [ -95.643591074135941, 29.774440190320142 ], [ -95.643712073465338, 29.774670191001789 ], [ -95.643779074327881, 29.774815190882112 ], [ -95.643905074313167, 29.775138190453315 ], [ -95.64405107455066, 29.775441190832105 ], [ -95.644139074529718, 29.775652190854018 ], [ -95.644298074242542, 29.776009191251013 ], [ -95.644412074534898, 29.776298191168507 ], [ -95.644461074549, 29.776477191197866 ], [ -95.644498074082023, 29.776657191389749 ], [ -95.644548074548979, 29.776893191161371 ], [ -95.644611074630163, 29.777178190795524 ], [ -95.644645074630247, 29.777448191549944 ], [ -95.644663074205383, 29.777700191023929 ], [ -95.644667073870352, 29.777874191231621 ], [ -95.64467607464762, 29.778002191136331 ], [ -95.644683074379628, 29.778164191470456 ], [ -95.644680074455451, 29.778347191333634 ], [ -95.644694074137135, 29.779616191640766 ], [ -95.644706074522389, 29.779909192007423 ], [ -95.644704074338776, 29.780283192111867 ], [ -95.644706074147479, 29.780637191457043 ], [ -95.644720074845225, 29.780984191886759 ], [ -95.644723074368827, 29.781295192058614 ], [ -95.644739074957371, 29.781791191851937 ], [ -95.64476907485853, 29.782591192044418 ], [ -95.644768074736007, 29.782923191961078 ], [ -95.644770074731341, 29.783403192702792 ], [ -95.644790074330956, 29.784264192397504 ], [ -95.644793074427099, 29.784552192307373 ], [ -95.644794074567088, 29.784647193099872 ], [ -95.644795074418241, 29.784721192259074 ], [ -95.644798074932936, 29.78504019272922 ], [ -95.645031075165392, 29.785038193223649 ], [ -95.645256075091822, 29.785037192625953 ], [ -95.646054074676613, 29.785018192768852 ], [ -95.646592074724893, 29.785015192465842 ], [ -95.651132076671189, 29.785067192169485 ], [ -95.653656077026923, 29.785098192915974 ], [ -95.656972077903404, 29.785087192587234 ], [ -95.657188078128286, 29.785086192102998 ], [ -95.657453078207553, 29.785083192773605 ], [ -95.658544078057687, 29.785075192514185 ], [ -95.659420078431907, 29.785075192503495 ], [ -95.660518078496196, 29.78506719179736 ], [ -95.660660078582239, 29.78506819245521 ], [ -95.662451079267342, 29.785098191870624 ], [ -95.663956079532994, 29.785120191839191 ], [ -95.666363080098932, 29.785135191851786 ], [ -95.666617080676303, 29.785128192090497 ], [ -95.66686708086246, 29.785128192156748 ], [ -95.667085080063728, 29.785128192113405 ], [ -95.667892081047128, 29.785127191801024 ], [ -95.668131080376696, 29.785128192294557 ], [ -95.670313081350756, 29.785105191898396 ], [ -95.670490081398682, 29.785105192261369 ], [ -95.671653081484408, 29.785095192181473 ], [ -95.674398082258989, 29.785098191942236 ], [ -95.675805082557133, 29.785135191695183 ], [ -95.677520082707375, 29.785128191711312 ], [ -95.678429083710256, 29.785135191895545 ], [ -95.680944083774023, 29.785090191470267 ], [ -95.681489084599278, 29.785076191262561 ], [ -95.681985083833112, 29.785053191909018 ], [ -95.682482084774819, 29.785043191130921 ], [ -95.683035084452854, 29.785038191891477 ], [ -95.685477085041327, 29.785015191514066 ], [ -95.688076085897237, 29.785045190963931 ], [ -95.688358085340539, 29.785045191584743 ], [ -95.688355085626299, 29.784767191010335 ], [ -95.688355085669784, 29.784717191287776 ], [ -95.688353085686842, 29.784533190974233 ], [ -95.688351086088858, 29.784369191093479 ], [ -95.688350086319176, 29.784241191236244 ], [ -95.688356085340089, 29.783407190658291 ], [ -95.688389085963038, 29.78302419055083 ], [ -95.688398086029395, 29.782913190645896 ], [ -95.688404085859318, 29.782709190686457 ], [ -95.688279086034697, 29.782707190733191 ], [ -95.686434085700469, 29.782682190976406 ], [ -95.685924085431893, 29.782688191306729 ], [ -95.685558085454971, 29.782722190991404 ], [ -95.685555084653046, 29.782401190636616 ], [ -95.685562084761784, 29.782346191213929 ], [ -95.685557084535034, 29.782183190955038 ], [ -95.685556085497865, 29.782042190944313 ], [ -95.685553084562542, 29.78139519082999 ], [ -95.685553085469024, 29.781334190294622 ], [ -95.685552084786664, 29.781273190262365 ], [ -95.685470084662512, 29.781284190421971 ], [ -95.683393084575073, 29.781281190573512 ], [ -95.683076083858893, 29.781278191075607 ], [ -95.682534084491294, 29.781281190442524 ], [ -95.6828260839862, 29.780486190627045 ], [ -95.683615084199133, 29.777559189729434 ], [ -95.683491084030578, 29.777559190169399 ], [ -95.685461084392671, 29.775602189378336 ], [ -95.685503084993499, 29.775602189211547 ], [ -95.685509084693848, 29.775129189822799 ], [ -95.685515084829362, 29.77485618908392 ], [ -95.685505085018818, 29.773724188864477 ], [ -95.685500084869147, 29.773084188793394 ], [ -95.685495084158447, 29.768411188299869 ], [ -95.685476084305463, 29.765670187774106 ], [ -95.685439084627802, 29.763300186877277 ], [ -95.685432084262558, 29.759596186361566 ], [ -95.685388083594248, 29.757754185919907 ], [ -95.685361084259597, 29.757200185868172 ], [ -95.685283084174273, 29.756708185200441 ], [ -95.685198084001627, 29.756459185729927 ], [ -95.685268083654137, 29.756406185785409 ], [ -95.685017084077217, 29.755730185770293 ], [ -95.685004084118134, 29.755263185292527 ], [ -95.685262083387244, 29.75451518478069 ], [ -95.68534408384447, 29.75421318474536 ], [ -95.685634084178261, 29.754191185465167 ], [ -95.686491084493369, 29.754076185411691 ], [ -95.687807084753274, 29.753916184919277 ], [ -95.688261084916078, 29.753900185208721 ], [ -95.688381084480582, 29.75382818507466 ], [ -95.688557084317736, 29.753669184884743 ], [ -95.688828084504934, 29.753466184744347 ], [ -95.689294084521592, 29.753251185127123 ], [ -95.68948908472224, 29.753130184918128 ], [ -95.689603085148548, 29.753009184345672 ], [ -95.689735084271433, 29.75270718505427 ], [ -95.689855084728407, 29.752487184229462 ], [ -95.690472084712098, 29.751943184505691 ], [ -95.690831085272734, 29.751646184264576 ], [ -95.691833084714688, 29.751030184593262 ], [ -95.692160085137417, 29.750860183839087 ], [ -95.692211085369848, 29.750783184281673 ], [ -95.692274085076704, 29.75059618380855 ], [ -95.692299085300732, 29.750475184403594 ], [ -95.692343085319351, 29.750332183915216 ], [ -95.692327084927712, 29.75000218372206 ], [ -95.692242085535085, 29.749675183562633 ], [ -95.69217308492685, 29.749389184241512 ], [ -95.692167085461861, 29.74931718411613 ], [ -95.692173085288246, 29.749240183792217 ], [ -95.692223085390594, 29.749175183902103 ], [ -95.692387085061313, 29.749004184031726 ], [ -95.693124085522356, 29.748289183812641 ], [ -95.693672085459923, 29.74773418359004 ], [ -95.694214086100828, 29.747223183630069 ], [ -95.694661085550194, 29.746783182846503 ], [ -95.695202085590651, 29.746239183405486 ], [ -95.695587086270081, 29.745870182943221 ], [ -95.69574408562822, 29.745700183414911 ], [ -95.69603408605235, 29.745310183046779 ], [ -95.696241086234423, 29.744870183248246 ], [ -95.696424086522597, 29.74441418314521 ], [ -95.696544085684465, 29.744183182774101 ], [ -95.696651086121932, 29.744045182991371 ], [ -95.696764086333062, 29.74393018296777 ], [ -95.698187086835873, 29.742792182440144 ], [ -95.69869108707671, 29.742341182479091 ], [ -95.698830086959902, 29.742148181848261 ], [ -95.699057086851838, 29.7417801823239 ], [ -95.699214086950121, 29.741439182068635 ], [ -95.699403086971088, 29.741219182200542 ], [ -95.700858087025892, 29.739839182065566 ], [ -95.701757087275979, 29.73905418147541 ], [ -95.702029087351633, 29.738817181059549 ], [ -95.702659086949467, 29.738311181648616 ], [ -95.703591087203037, 29.737541180934546 ], [ -95.70384908792029, 29.737299181395368 ], [ -95.704535087386247, 29.736711181111467 ], [ -95.704926087971117, 29.736299180639055 ], [ -95.705142088237949, 29.736141181017214 ], [ -95.705147087883859, 29.736122180678752 ], [ -95.705145088320123, 29.736038181055356 ], [ -95.705153088262207, 29.735915180680117 ], [ -95.705170088407201, 29.735564180249156 ], [ -95.705213088232142, 29.735472181025973 ], [ -95.705295087748723, 29.735300180754439 ], [ -95.705488087810352, 29.735132180113656 ], [ -95.705792087826993, 29.734917180140673 ], [ -95.705832087968261, 29.734856180637635 ], [ -95.70592808789084, 29.734708180386033 ], [ -95.7060410883347, 29.734534179984941 ], [ -95.706429088545761, 29.733850179931505 ], [ -95.706637087732574, 29.733611179959059 ], [ -95.706967088389092, 29.733480180368069 ], [ -95.707312088455481, 29.733397180445575 ], [ -95.707766088070102, 29.733362180415515 ], [ -95.70823508890345, 29.733303180076557 ], [ -95.708648088552408, 29.733208180483725 ], [ -95.708773088642388, 29.733028179777339 ], [ -95.708719088591607, 29.732740179621839 ], [ -95.708362089090585, 29.732295180048293 ], [ -95.708239088880191, 29.73206618017462 ], [ -95.708281088457269, 29.731839179355386 ], [ -95.708530088692697, 29.731587179293712 ], [ -95.709165088873348, 29.731181179626713 ], [ -95.709317089024154, 29.730977180018051 ], [ -95.709428089316702, 29.730761179533282 ], [ -95.709387088643538, 29.730569179423014 ], [ -95.709305088518335, 29.730461179602081 ], [ -95.709126088844371, 29.730400179760402 ], [ -95.708576088831208, 29.730327179201403 ], [ -95.708025088625547, 29.730217179618339 ], [ -95.707792088791535, 29.730037179409035 ], [ -95.707724088836756, 29.729844179373789 ], [ -95.707752088087759, 29.729628179241907 ], [ -95.707931088140683, 29.729533179756682 ], [ -95.708248088133701, 29.72943817914247 ], [ -95.708855088760828, 29.729103179031959 ], [ -95.709545088508165, 29.728625179396072 ], [ -95.709560088839865, 29.72854117941689 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1125, "Tract": "48201432402", "Area_SqMi": 0.4253921321270403, "total_2009": 9668, "total_2010": 9559, "total_2011": 9844, "total_2012": 7647, "total_2013": 8584, "total_2014": 9884, "total_2015": 9812, "total_2016": 8845, "total_2017": 9017, "total_2018": 9029, "total_2019": 9256, "total_2020": 9229, "age1": 2022, "age2": 5711, "age3": 1995, "earn1": 1040, "earn2": 1696, "earn3": 6992, "naics_s01": 0, "naics_s02": 548, "naics_s03": 0, "naics_s04": 2500, "naics_s05": 82, "naics_s06": 525, "naics_s07": 83, "naics_s08": 15, "naics_s09": 254, "naics_s10": 539, "naics_s11": 135, "naics_s12": 1319, "naics_s13": 282, "naics_s14": 2389, "naics_s15": 123, "naics_s16": 374, "naics_s17": 0, "naics_s18": 469, "naics_s19": 91, "naics_s20": 0, "race1": 7048, "race2": 1397, "race3": 78, "race4": 1029, "race5": 15, "race6": 161, "ethnicity1": 6923, "ethnicity2": 2805, "edu1": 1449, "edu2": 1728, "edu3": 2292, "edu4": 2237, "Shape_Length": 14687.32437348331, "Shape_Area": 11859204.57779135, "total_2021": 8960, "total_2022": 9728 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557628049987642, 29.72764118421426 ], [ -95.557625049601327, 29.727412183687552 ], [ -95.557620050349172, 29.726879183446687 ], [ -95.557625049873593, 29.726489183964528 ], [ -95.557618049223777, 29.723572183091694 ], [ -95.557614049673134, 29.722190183282329 ], [ -95.557620049518462, 29.722111182955285 ], [ -95.557627049718803, 29.722033183177672 ], [ -95.557611049521498, 29.721822182477847 ], [ -95.557609049676358, 29.721741183025262 ], [ -95.55761705000927, 29.721065182537046 ], [ -95.5576180500655, 29.719900182232539 ], [ -95.557618049309312, 29.719040182586113 ], [ -95.557588049790823, 29.718266181876739 ], [ -95.557242049531922, 29.718281181715476 ], [ -95.557053048870415, 29.718304182535114 ], [ -95.556658049212245, 29.71833418229118 ], [ -95.555968049004889, 29.718387182596452 ], [ -95.555426049137807, 29.718428182220588 ], [ -95.553769048886252, 29.71858318203239 ], [ -95.551762047896531, 29.7187461824176 ], [ -95.550267047861013, 29.71887018268384 ], [ -95.548864046912897, 29.71898618267447 ], [ -95.54886604684495, 29.719251182807518 ], [ -95.54890604732303, 29.720031182683265 ], [ -95.548913047005698, 29.720322182867871 ], [ -95.548896047065384, 29.720676183262757 ], [ -95.548890047011724, 29.720796182857711 ], [ -95.548886047840924, 29.720909182621401 ], [ -95.548872047490491, 29.721410182936662 ], [ -95.548869047020247, 29.721633182663922 ], [ -95.548870047644598, 29.722165183120246 ], [ -95.548872047505213, 29.722718183751017 ], [ -95.547440046735261, 29.722835183081102 ], [ -95.547238046982102, 29.722853183069017 ], [ -95.546943046832908, 29.722877183446712 ], [ -95.545534046653117, 29.722996183411805 ], [ -95.545549046479096, 29.72314918320162 ], [ -95.545575046853997, 29.723566183999484 ], [ -95.545593047138667, 29.723735183608021 ], [ -95.545621046801628, 29.72407718363792 ], [ -95.545640046215397, 29.724246183704846 ], [ -95.545655047070269, 29.724480184045454 ], [ -95.545637046918259, 29.724787184159734 ], [ -95.545615046240044, 29.724887183790827 ], [ -95.545583047182376, 29.725065183956094 ], [ -95.545548046899057, 29.725213184388949 ], [ -95.545522046228697, 29.725299183888357 ], [ -95.545429046726156, 29.725580183725047 ], [ -95.545376046799873, 29.725676184008652 ], [ -95.545316046734087, 29.725799183852082 ], [ -95.545242047022569, 29.725933184060935 ], [ -95.545087046188158, 29.726336184047057 ], [ -95.545037046532158, 29.72663018392452 ], [ -95.545031046589671, 29.72676118458482 ], [ -95.545033046331426, 29.726882184586284 ], [ -95.545073046268314, 29.727204184718317 ], [ -95.545175046542255, 29.727531184084988 ], [ -95.545288046850615, 29.727816184053328 ], [ -95.545332046784523, 29.727997184781724 ], [ -95.545352047053669, 29.728168184575047 ], [ -95.545316046299746, 29.728433184577266 ], [ -95.545258046972506, 29.728610184536617 ], [ -95.545463047114779, 29.728640184534807 ], [ -95.545759046686726, 29.728675184523826 ], [ -95.546509046791954, 29.728751184909378 ], [ -95.547317046863824, 29.728805184984321 ], [ -95.547766047527432, 29.728814184535135 ], [ -95.548462047179768, 29.7287831841704 ], [ -95.54898404724544, 29.728757184377873 ], [ -95.549255047404884, 29.728738184278487 ], [ -95.549781048455699, 29.728690184408116 ], [ -95.550215048495062, 29.728605184632823 ], [ -95.550588048371182, 29.728532184691471 ], [ -95.551109048272011, 29.72841818400012 ], [ -95.552049048245678, 29.728168184372997 ], [ -95.552646048457405, 29.727971184577974 ], [ -95.552991049197303, 29.727875184136174 ], [ -95.553149048462132, 29.727831184609826 ], [ -95.553504049303953, 29.727766183818961 ], [ -95.553649049116018, 29.727738184178055 ], [ -95.554020049173403, 29.727665183836557 ], [ -95.55454404932452, 29.727635183762064 ], [ -95.555013049447524, 29.727621184374193 ], [ -95.55552904918072, 29.727623184204884 ], [ -95.555868049176439, 29.727630183866339 ], [ -95.556989049536227, 29.727640184087416 ], [ -95.557394049839175, 29.727643184260018 ], [ -95.557628049987642, 29.72764118421426 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1126, "Tract": "48201432401", "Area_SqMi": 0.27450829883158157, "total_2009": 369, "total_2010": 538, "total_2011": 744, "total_2012": 589, "total_2013": 652, "total_2014": 717, "total_2015": 730, "total_2016": 639, "total_2017": 612, "total_2018": 572, "total_2019": 482, "total_2020": 424, "age1": 67, "age2": 268, "age3": 107, "earn1": 53, "earn2": 153, "earn3": 236, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1, "naics_s06": 65, "naics_s07": 19, "naics_s08": 0, "naics_s09": 0, "naics_s10": 19, "naics_s11": 31, "naics_s12": 148, "naics_s13": 3, "naics_s14": 2, "naics_s15": 18, "naics_s16": 56, "naics_s17": 0, "naics_s18": 71, "naics_s19": 7, "naics_s20": 0, "race1": 285, "race2": 52, "race3": 1, "race4": 99, "race5": 1, "race6": 4, "ethnicity1": 279, "ethnicity2": 163, "edu1": 86, "edu2": 74, "edu3": 107, "edu4": 108, "Shape_Length": 12529.815798264572, "Shape_Area": 7652821.5457755364, "total_2021": 433, "total_2022": 442 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.548913047005698, 29.720322182867871 ], [ -95.54890604732303, 29.720031182683265 ], [ -95.54886604684495, 29.719251182807518 ], [ -95.548864046912897, 29.71898618267447 ], [ -95.547776047016427, 29.71908818252696 ], [ -95.546592046530179, 29.719170182857756 ], [ -95.545311046499336, 29.719272182723113 ], [ -95.544447046463318, 29.719341182773103 ], [ -95.544398046571175, 29.719339182993014 ], [ -95.543406045939804, 29.71944318280698 ], [ -95.539067045112745, 29.719716183333187 ], [ -95.539068045040295, 29.719891182629787 ], [ -95.539076045023549, 29.720856183496284 ], [ -95.539081045132164, 29.721402183076879 ], [ -95.539084044642522, 29.721760183025804 ], [ -95.53908804448055, 29.722105183743246 ], [ -95.53909604457715, 29.722558183508383 ], [ -95.539101044611328, 29.722709183830151 ], [ -95.53910504542759, 29.723627184170297 ], [ -95.539085044753151, 29.72416018391106 ], [ -95.539093045546906, 29.724640183983201 ], [ -95.539107045536639, 29.725368183770396 ], [ -95.539107044636893, 29.725607184486957 ], [ -95.539123045477382, 29.726119184584331 ], [ -95.539121045463816, 29.726299184293467 ], [ -95.539134045554917, 29.726511184537948 ], [ -95.539149045010291, 29.726865184836214 ], [ -95.539158044876572, 29.727178184950134 ], [ -95.539159045335239, 29.727733185123192 ], [ -95.539681045500899, 29.727725184981015 ], [ -95.540458046017108, 29.727687184932059 ], [ -95.540866046043305, 29.727682184315213 ], [ -95.541425045677343, 29.727724184688483 ], [ -95.541587046043432, 29.72773618497515 ], [ -95.541839045621145, 29.727765184427192 ], [ -95.541992045916956, 29.727791184615004 ], [ -95.542154046196657, 29.727819184304394 ], [ -95.542950046192132, 29.728030184294649 ], [ -95.543146046081276, 29.728080184546691 ], [ -95.543337045860014, 29.728142184173233 ], [ -95.544097046037948, 29.72835918498355 ], [ -95.544414046083716, 29.728435184899407 ], [ -95.54488504707777, 29.728531184323245 ], [ -95.545258046972506, 29.728610184536617 ], [ -95.545316046299746, 29.728433184577266 ], [ -95.545352047053669, 29.728168184575047 ], [ -95.545332046784523, 29.727997184781724 ], [ -95.545288046850615, 29.727816184053328 ], [ -95.545175046542255, 29.727531184084988 ], [ -95.545073046268314, 29.727204184718317 ], [ -95.545033046331426, 29.726882184586284 ], [ -95.545031046589671, 29.72676118458482 ], [ -95.545037046532158, 29.72663018392452 ], [ -95.545087046188158, 29.726336184047057 ], [ -95.545242047022569, 29.725933184060935 ], [ -95.545316046734087, 29.725799183852082 ], [ -95.545376046799873, 29.725676184008652 ], [ -95.545429046726156, 29.725580183725047 ], [ -95.545522046228697, 29.725299183888357 ], [ -95.545548046899057, 29.725213184388949 ], [ -95.545583047182376, 29.725065183956094 ], [ -95.545615046240044, 29.724887183790827 ], [ -95.545637046918259, 29.724787184159734 ], [ -95.545655047070269, 29.724480184045454 ], [ -95.545640046215397, 29.724246183704846 ], [ -95.545621046801628, 29.72407718363792 ], [ -95.545593047138667, 29.723735183608021 ], [ -95.545575046853997, 29.723566183999484 ], [ -95.545549046479096, 29.72314918320162 ], [ -95.545534046653117, 29.722996183411805 ], [ -95.546943046832908, 29.722877183446712 ], [ -95.547238046982102, 29.722853183069017 ], [ -95.547440046735261, 29.722835183081102 ], [ -95.548872047505213, 29.722718183751017 ], [ -95.548870047644598, 29.722165183120246 ], [ -95.548869047020247, 29.721633182663922 ], [ -95.548872047490491, 29.721410182936662 ], [ -95.548886047840924, 29.720909182621401 ], [ -95.548890047011724, 29.720796182857711 ], [ -95.548896047065384, 29.720676183262757 ], [ -95.548913047005698, 29.720322182867871 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1127, "Tract": "48201452401", "Area_SqMi": 0.34051941686490145, "total_2009": 113, "total_2010": 88, "total_2011": 172, "total_2012": 124, "total_2013": 125, "total_2014": 73, "total_2015": 68, "total_2016": 102, "total_2017": 112, "total_2018": 100, "total_2019": 107, "total_2020": 108, "age1": 41, "age2": 76, "age3": 38, "earn1": 32, "earn2": 64, "earn3": 59, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 32, "naics_s06": 7, "naics_s07": 15, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 21, "naics_s12": 14, "naics_s13": 4, "naics_s14": 2, "naics_s15": 1, "naics_s16": 13, "naics_s17": 0, "naics_s18": 37, "naics_s19": 5, "naics_s20": 0, "race1": 79, "race2": 19, "race3": 2, "race4": 53, "race5": 0, "race6": 2, "ethnicity1": 110, "ethnicity2": 45, "edu1": 29, "edu2": 28, "edu3": 21, "edu4": 36, "Shape_Length": 14512.315285333283, "Shape_Area": 9493098.5373868514, "total_2021": 144, "total_2022": 155 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.588348057428433, 29.715703180700761 ], [ -95.588065056736255, 29.714955180652129 ], [ -95.588058057483025, 29.714637180160036 ], [ -95.588051057322616, 29.714116180573409 ], [ -95.588043057041858, 29.713983180454008 ], [ -95.588028057379248, 29.713285180270216 ], [ -95.58801105691019, 29.712651180333559 ], [ -95.588009056608541, 29.712435180242981 ], [ -95.588001057032031, 29.712083180039372 ], [ -95.587998056616527, 29.711901179892237 ], [ -95.587997057171521, 29.711643179807236 ], [ -95.587995056850673, 29.711551179959869 ], [ -95.587994056543948, 29.711211179695812 ], [ -95.587999056421111, 29.710983179596219 ], [ -95.587629057213519, 29.710994179719552 ], [ -95.587502057117618, 29.710999179522638 ], [ -95.586951056143562, 29.711015179802775 ], [ -95.586289056313163, 29.711023179369921 ], [ -95.586116056078112, 29.711024179270343 ], [ -95.585890056246654, 29.711028179514976 ], [ -95.585370055745543, 29.711036180055352 ], [ -95.58521105588666, 29.711045180086899 ], [ -95.584936056341505, 29.711045180006767 ], [ -95.584709055834949, 29.711048179712432 ], [ -95.584321056136133, 29.711053179491874 ], [ -95.583384055833292, 29.711066179598173 ], [ -95.583390055699752, 29.711422179664382 ], [ -95.583380055882145, 29.711486180014358 ], [ -95.583349055494622, 29.711534179902081 ], [ -95.583295055648961, 29.711553180110663 ], [ -95.583166055930008, 29.711555179536763 ], [ -95.582462055112472, 29.71156717961275 ], [ -95.581531055446987, 29.711571179975031 ], [ -95.58061305499416, 29.711580179559572 ], [ -95.579683055192802, 29.711585180088367 ], [ -95.578805054653614, 29.711615180220388 ], [ -95.578048053967109, 29.711623180252875 ], [ -95.577283053812096, 29.711636179759711 ], [ -95.576461053556557, 29.711645179721192 ], [ -95.575531054155675, 29.711652180572049 ], [ -95.573496052920319, 29.711692180350077 ], [ -95.572239053112142, 29.711705180107256 ], [ -95.571353052510901, 29.711713180539938 ], [ -95.571353052871643, 29.71192118024565 ], [ -95.571413053349886, 29.714596180588849 ], [ -95.571414052630161, 29.715478181086436 ], [ -95.57140805275013, 29.715534181053879 ], [ -95.571449052628083, 29.71673118160783 ], [ -95.57145005292746, 29.716841180979515 ], [ -95.571452053288425, 29.7169631811424 ], [ -95.571453052447239, 29.717067181597471 ], [ -95.575644054063204, 29.716727181293194 ], [ -95.582685055907831, 29.71616918097877 ], [ -95.583962055853448, 29.716067180362312 ], [ -95.585316056583949, 29.71596118060155 ], [ -95.587542057301093, 29.715757180873464 ], [ -95.588036057221586, 29.715723180362982 ], [ -95.588348057428433, 29.715703180700761 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1128, "Tract": "48201450401", "Area_SqMi": 0.16717712302745144, "total_2009": 1029, "total_2010": 1101, "total_2011": 1168, "total_2012": 840, "total_2013": 869, "total_2014": 824, "total_2015": 2898, "total_2016": 1650, "total_2017": 1252, "total_2018": 808, "total_2019": 1274, "total_2020": 656, "age1": 164, "age2": 287, "age3": 195, "earn1": 203, "earn2": 251, "earn3": 192, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 34, "naics_s06": 1, "naics_s07": 225, "naics_s08": 2, "naics_s09": 0, "naics_s10": 7, "naics_s11": 10, "naics_s12": 18, "naics_s13": 0, "naics_s14": 31, "naics_s15": 7, "naics_s16": 54, "naics_s17": 112, "naics_s18": 62, "naics_s19": 69, "naics_s20": 0, "race1": 453, "race2": 104, "race3": 1, "race4": 71, "race5": 5, "race6": 12, "ethnicity1": 446, "ethnicity2": 200, "edu1": 98, "edu2": 110, "edu3": 139, "edu4": 135, "Shape_Length": 9077.9038252166501, "Shape_Area": 4660612.0634996938, "total_2021": 778, "total_2022": 646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.614884066794787, 29.773539191564666 ], [ -95.615131066457323, 29.77341519130783 ], [ -95.614840066518539, 29.773098191308147 ], [ -95.6145140664905, 29.772804191230637 ], [ -95.614125066208516, 29.772539191591868 ], [ -95.613421066523799, 29.772143191377683 ], [ -95.613312065642774, 29.772086191118134 ], [ -95.613177066466193, 29.772005191424807 ], [ -95.612932066504044, 29.771868191096377 ], [ -95.612502065521994, 29.77164019153437 ], [ -95.612347065830207, 29.771557190695006 ], [ -95.612176066028979, 29.771466191560865 ], [ -95.611791065974401, 29.771259190879313 ], [ -95.611341065691931, 29.771016191329444 ], [ -95.611166065172668, 29.770922191412637 ], [ -95.610723065332863, 29.770683191060115 ], [ -95.610643065511752, 29.770639191124143 ], [ -95.610561065767598, 29.770596191192876 ], [ -95.61024906479112, 29.770437190591771 ], [ -95.609642065414732, 29.77024219057828 ], [ -95.609530064937204, 29.770210191100883 ], [ -95.609388064954786, 29.770175191354554 ], [ -95.608909064477103, 29.77009419081703 ], [ -95.608583065053011, 29.770069190715184 ], [ -95.608023064545321, 29.770066191312932 ], [ -95.607843064202839, 29.770070191098739 ], [ -95.607446064920069, 29.770082190605169 ], [ -95.607334064465718, 29.770082191271307 ], [ -95.607112064431362, 29.770089191264088 ], [ -95.606945064766776, 29.770092191251212 ], [ -95.606618064229238, 29.770099190998856 ], [ -95.606281064098482, 29.770101190805256 ], [ -95.606285063782408, 29.77039819093244 ], [ -95.60628606473918, 29.770477190966847 ], [ -95.606290064446725, 29.770673190916224 ], [ -95.606307064264712, 29.771404191288276 ], [ -95.606308064328658, 29.771672191243759 ], [ -95.606313064086279, 29.771909191273917 ], [ -95.606325064456868, 29.772599191955301 ], [ -95.606340064334915, 29.773378191620758 ], [ -95.60634206454678, 29.773484191339126 ], [ -95.606347063921859, 29.773775191575567 ], [ -95.606347064187105, 29.773881192087192 ], [ -95.606350064466696, 29.774091192159368 ], [ -95.606349064752663, 29.774549191714136 ], [ -95.606317064272673, 29.774987192393152 ], [ -95.606298064081159, 29.775253191809096 ], [ -95.606296064333009, 29.775517191873064 ], [ -95.606300064397701, 29.775693192464654 ], [ -95.606310064651382, 29.775855192094632 ], [ -95.606325064864137, 29.77613419247556 ], [ -95.606319064571721, 29.776326192159484 ], [ -95.606587065016043, 29.776296192362953 ], [ -95.606703065104838, 29.776276192345257 ], [ -95.606840064981938, 29.776246192275803 ], [ -95.606922064250369, 29.776226192325201 ], [ -95.607114064699616, 29.776178191911605 ], [ -95.607233065198017, 29.776150192672517 ], [ -95.607326064664008, 29.776137192664876 ], [ -95.607650064476246, 29.776129192294878 ], [ -95.60789006466625, 29.776131192563781 ], [ -95.608801065300696, 29.776140192464538 ], [ -95.609194065663104, 29.776132192256135 ], [ -95.609544065356687, 29.776136191787707 ], [ -95.60971106564736, 29.776147192281158 ], [ -95.610146065271522, 29.776140192137845 ], [ -95.61063106591439, 29.776153192312123 ], [ -95.611547066214925, 29.776149192329765 ], [ -95.612337066278002, 29.776149192321824 ], [ -95.612462065622793, 29.776146192470872 ], [ -95.612458066077281, 29.776022192419958 ], [ -95.61247506625277, 29.775893191981353 ], [ -95.612569065997647, 29.775862192203792 ], [ -95.61328006660267, 29.77575119212592 ], [ -95.613405066532906, 29.775747192238114 ], [ -95.613411065963106, 29.775697192331616 ], [ -95.613403066783135, 29.775415192030778 ], [ -95.61340206589702, 29.774606191362221 ], [ -95.613404065963252, 29.773780191729276 ], [ -95.613762066710635, 29.773735191477137 ], [ -95.614122066426049, 29.773685191597792 ], [ -95.614516066090502, 29.773616191400745 ], [ -95.614884066794787, 29.773539191564666 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1129, "Tract": "48201452204", "Area_SqMi": 0.21864178040279425, "total_2009": 4001, "total_2010": 3731, "total_2011": 3565, "total_2012": 3210, "total_2013": 3513, "total_2014": 3585, "total_2015": 3650, "total_2016": 4310, "total_2017": 4525, "total_2018": 4597, "total_2019": 4969, "total_2020": 5111, "age1": 1056, "age2": 2938, "age3": 1120, "earn1": 656, "earn2": 882, "earn3": 3576, "naics_s01": 1, "naics_s02": 294, "naics_s03": 0, "naics_s04": 17, "naics_s05": 436, "naics_s06": 144, "naics_s07": 392, "naics_s08": 10, "naics_s09": 55, "naics_s10": 280, "naics_s11": 162, "naics_s12": 1996, "naics_s13": 22, "naics_s14": 482, "naics_s15": 2, "naics_s16": 431, "naics_s17": 26, "naics_s18": 337, "naics_s19": 26, "naics_s20": 1, "race1": 3516, "race2": 679, "race3": 44, "race4": 793, "race5": 6, "race6": 76, "ethnicity1": 3877, "ethnicity2": 1237, "edu1": 632, "edu2": 818, "edu3": 1153, "edu4": 1455, "Shape_Length": 11691.380512428907, "Shape_Area": 6095358.6284828428, "total_2021": 5452, "total_2022": 5114 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.571767053866651, 29.736700185061927 ], [ -95.571762053730097, 29.73602918525977 ], [ -95.571766054160591, 29.735390185376477 ], [ -95.571747053613237, 29.734482184724129 ], [ -95.571740054114983, 29.734191184937032 ], [ -95.571734054051277, 29.733887184905281 ], [ -95.571721053276264, 29.733303184356764 ], [ -95.571712053353494, 29.733021184813865 ], [ -95.571708053216909, 29.732794184757001 ], [ -95.571706053304084, 29.732221184243773 ], [ -95.571698053315757, 29.731326184111232 ], [ -95.571674053912261, 29.730041184249284 ], [ -95.571674053842614, 29.729646183811482 ], [ -95.571666053709436, 29.729349183526118 ], [ -95.571663053881338, 29.729231183924206 ], [ -95.571661053235786, 29.728837183759214 ], [ -95.571641053482992, 29.727734183779898 ], [ -95.570387052981559, 29.727761183601217 ], [ -95.570211053407348, 29.727760183256123 ], [ -95.570069052641458, 29.727756183654687 ], [ -95.569955053038939, 29.727758183978235 ], [ -95.569214052966231, 29.727766183994724 ], [ -95.569113052348541, 29.727765184019749 ], [ -95.568023052497594, 29.727760183788394 ], [ -95.568021052667007, 29.72816318409394 ], [ -95.568041052096049, 29.728900184234032 ], [ -95.568049052608373, 29.72931718403364 ], [ -95.56805605255235, 29.729712183673371 ], [ -95.568068053008815, 29.729924184436875 ], [ -95.568067052821078, 29.73025518402758 ], [ -95.568056052346094, 29.730664184308022 ], [ -95.568045052642702, 29.730835184227335 ], [ -95.568018052299138, 29.730978184497335 ], [ -95.567976052221752, 29.731197184427252 ], [ -95.567912053037091, 29.731453184465639 ], [ -95.567866052487659, 29.73161418461638 ], [ -95.567753052500052, 29.731907184295611 ], [ -95.567526052286837, 29.732383184308333 ], [ -95.567481052175395, 29.732492184310626 ], [ -95.567206052195431, 29.732398184887138 ], [ -95.566770052008224, 29.732231184710205 ], [ -95.566375052691924, 29.732088184198759 ], [ -95.566131051959772, 29.732000184315556 ], [ -95.565621052551464, 29.731834184476263 ], [ -95.56531405164084, 29.7317431841808 ], [ -95.564870052368036, 29.731625184739517 ], [ -95.564618051435502, 29.731562184580039 ], [ -95.564179051424645, 29.731472184170922 ], [ -95.563987051967388, 29.731441184510707 ], [ -95.563885051445126, 29.731980184960641 ], [ -95.563836051607922, 29.7325761845788 ], [ -95.563841051378262, 29.733086184877148 ], [ -95.563844051687866, 29.733152185273962 ], [ -95.563849051422437, 29.733264185233285 ], [ -95.563862051763593, 29.733880184949395 ], [ -95.563873051421041, 29.734447185545523 ], [ -95.56387405227332, 29.734569185101751 ], [ -95.563880051576149, 29.734641185434498 ], [ -95.56389705186956, 29.734776185208037 ], [ -95.563969051711183, 29.735327185103223 ], [ -95.564130052032183, 29.735962185956296 ], [ -95.564197051626664, 29.736207185794942 ], [ -95.564202052366483, 29.736311185675177 ], [ -95.564211052330151, 29.736437185852402 ], [ -95.564208052005824, 29.736789185824321 ], [ -95.565145051995415, 29.736773185293846 ], [ -95.566911052632832, 29.736747185906257 ], [ -95.567681052962143, 29.736741185596358 ], [ -95.568566053556225, 29.736733185535396 ], [ -95.569607052859084, 29.73672418542256 ], [ -95.570653053944326, 29.736722185076989 ], [ -95.571767053866651, 29.736700185061927 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1130, "Tract": "48201432301", "Area_SqMi": 0.16528572450442888, "total_2009": 5382, "total_2010": 4406, "total_2011": 4669, "total_2012": 4723, "total_2013": 4506, "total_2014": 4277, "total_2015": 4326, "total_2016": 4752, "total_2017": 4536, "total_2018": 4818, "total_2019": 4692, "total_2020": 4334, "age1": 959, "age2": 3132, "age3": 1540, "earn1": 1506, "earn2": 1499, "earn3": 2626, "naics_s01": 0, "naics_s02": 142, "naics_s03": 0, "naics_s04": 254, "naics_s05": 34, "naics_s06": 53, "naics_s07": 131, "naics_s08": 29, "naics_s09": 303, "naics_s10": 492, "naics_s11": 132, "naics_s12": 706, "naics_s13": 0, "naics_s14": 1184, "naics_s15": 29, "naics_s16": 1879, "naics_s17": 8, "naics_s18": 210, "naics_s19": 45, "naics_s20": 0, "race1": 3208, "race2": 1208, "race3": 29, "race4": 1080, "race5": 12, "race6": 94, "ethnicity1": 4295, "ethnicity2": 1336, "edu1": 919, "edu2": 1087, "edu3": 1405, "edu4": 1261, "Shape_Length": 9782.0438172470313, "Shape_Area": 4607883.1098387502, "total_2021": 4805, "total_2022": 5631 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.543969045987879, 29.728743184739038 ], [ -95.544097046037948, 29.72835918498355 ], [ -95.543337045860014, 29.728142184173233 ], [ -95.543146046081276, 29.728080184546691 ], [ -95.542950046192132, 29.728030184294649 ], [ -95.542154046196657, 29.727819184304394 ], [ -95.541992045916956, 29.727791184615004 ], [ -95.541839045621145, 29.727765184427192 ], [ -95.541587046043432, 29.72773618497515 ], [ -95.541425045677343, 29.727724184688483 ], [ -95.540866046043305, 29.727682184315213 ], [ -95.540458046017108, 29.727687184932059 ], [ -95.539681045500899, 29.727725184981015 ], [ -95.539159045335239, 29.727733185123192 ], [ -95.539185045247692, 29.728589184621793 ], [ -95.539198045741784, 29.729077185137331 ], [ -95.539203045042271, 29.729261184576689 ], [ -95.53920304524631, 29.729601185354184 ], [ -95.539212045580001, 29.730345185026184 ], [ -95.539217044954185, 29.730771185156911 ], [ -95.539229045702811, 29.731157185355706 ], [ -95.539242045146977, 29.731565185033769 ], [ -95.539267045068186, 29.732356185265456 ], [ -95.539287045145031, 29.733158185621789 ], [ -95.539291045014522, 29.733715185870238 ], [ -95.539292045136364, 29.73396118564024 ], [ -95.539295045911189, 29.734455185938863 ], [ -95.539296045688786, 29.734574186053933 ], [ -95.539297045300941, 29.734750185644064 ], [ -95.53927304503587, 29.735100186284836 ], [ -95.539246045038894, 29.735328186236465 ], [ -95.539202045493852, 29.735559186047688 ], [ -95.539003045386224, 29.73615618611263 ], [ -95.538932045474226, 29.736397186262032 ], [ -95.5389050457309, 29.736607186697562 ], [ -95.538878045925216, 29.737122186731085 ], [ -95.539433045436297, 29.73711118644761 ], [ -95.540445045492888, 29.737107186824911 ], [ -95.541417046648434, 29.737089186943479 ], [ -95.542274046912482, 29.737072186172899 ], [ -95.54366604685957, 29.737063186234035 ], [ -95.543666046233213, 29.73673918657018 ], [ -95.543663046539734, 29.736400186290133 ], [ -95.543627046963294, 29.734834185640477 ], [ -95.543618046871757, 29.734721185782636 ], [ -95.54358404617382, 29.734508186340921 ], [ -95.543501046689755, 29.734171186290997 ], [ -95.543312046340944, 29.733735186166864 ], [ -95.543268046562886, 29.733632186028917 ], [ -95.543172046068364, 29.733273186087725 ], [ -95.543150045970464, 29.732892185759532 ], [ -95.54322404640493, 29.732460185247383 ], [ -95.54324804614744, 29.732352185307203 ], [ -95.543262046145145, 29.732257185200496 ], [ -95.543324046835465, 29.731834185599158 ], [ -95.543332046123282, 29.731694185117298 ], [ -95.543343046015679, 29.731527184869101 ], [ -95.543316045935711, 29.731214185226229 ], [ -95.543309045905445, 29.731045185111245 ], [ -95.543331046760457, 29.73045118466213 ], [ -95.543340046335601, 29.730349184630825 ], [ -95.543369046462857, 29.730211184651985 ], [ -95.543397046363523, 29.730089185111016 ], [ -95.543415046872852, 29.73001718527161 ], [ -95.543479046543681, 29.729828185136345 ], [ -95.54356304659288, 29.72961218514655 ], [ -95.543646046471324, 29.72940118515795 ], [ -95.543738046809509, 29.729219185172489 ], [ -95.543969045987879, 29.728743184739038 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1131, "Tract": "48201452103", "Area_SqMi": 0.24859404668641807, "total_2009": 3992, "total_2010": 3736, "total_2011": 3959, "total_2012": 3989, "total_2013": 3791, "total_2014": 3334, "total_2015": 3514, "total_2016": 3039, "total_2017": 2787, "total_2018": 2744, "total_2019": 2296, "total_2020": 2122, "age1": 445, "age2": 1356, "age3": 412, "earn1": 311, "earn2": 614, "earn3": 1288, "naics_s01": 0, "naics_s02": 8, "naics_s03": 0, "naics_s04": 46, "naics_s05": 41, "naics_s06": 119, "naics_s07": 55, "naics_s08": 0, "naics_s09": 26, "naics_s10": 24, "naics_s11": 57, "naics_s12": 698, "naics_s13": 0, "naics_s14": 749, "naics_s15": 6, "naics_s16": 280, "naics_s17": 0, "naics_s18": 96, "naics_s19": 8, "naics_s20": 0, "race1": 1449, "race2": 465, "race3": 16, "race4": 258, "race5": 3, "race6": 22, "ethnicity1": 1652, "ethnicity2": 561, "edu1": 313, "edu2": 418, "edu3": 513, "edu4": 524, "Shape_Length": 12369.60668206351, "Shape_Area": 6930376.5486541921, "total_2021": 2151, "total_2022": 2213 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.58066005637771, 29.732642184665913 ], [ -95.580667056250064, 29.732267183894351 ], [ -95.580660056244895, 29.732051184100939 ], [ -95.580613055662795, 29.731617184064344 ], [ -95.580585055619039, 29.731450184234124 ], [ -95.580236055586198, 29.729779183640417 ], [ -95.580147055419118, 29.72929618330712 ], [ -95.580117055452931, 29.728920183437282 ], [ -95.580175055989017, 29.72845718303698 ], [ -95.580286055247456, 29.728001183285606 ], [ -95.579840055592072, 29.727922182938066 ], [ -95.579228054970784, 29.727848183192236 ], [ -95.578586054966934, 29.727843183786874 ], [ -95.5773460547925, 29.727865183327911 ], [ -95.576471054577439, 29.727866183716682 ], [ -95.576080054763992, 29.727862183776381 ], [ -95.575374054721991, 29.727815183904124 ], [ -95.574969054676501, 29.727782183348669 ], [ -95.574027053991571, 29.727729183522225 ], [ -95.572901053345305, 29.727732183179622 ], [ -95.572286053537113, 29.727731183145785 ], [ -95.571641053482992, 29.727734183779898 ], [ -95.571661053235786, 29.728837183759214 ], [ -95.571663053881338, 29.729231183924206 ], [ -95.571666053709436, 29.729349183526118 ], [ -95.571674053842614, 29.729646183811482 ], [ -95.571674053912261, 29.730041184249284 ], [ -95.571698053315757, 29.731326184111232 ], [ -95.571706053304084, 29.732221184243773 ], [ -95.571708053216909, 29.732794184757001 ], [ -95.571712053353494, 29.733021184813865 ], [ -95.571721053276264, 29.733303184356764 ], [ -95.571734054051277, 29.733887184905281 ], [ -95.571740054114983, 29.734191184937032 ], [ -95.571747053613237, 29.734482184724129 ], [ -95.571766054160591, 29.735390185376477 ], [ -95.571762053730097, 29.73602918525977 ], [ -95.571767053866651, 29.736700185061927 ], [ -95.572530054039262, 29.736683185082924 ], [ -95.572742054290444, 29.736679185372555 ], [ -95.573735054336254, 29.736658184925012 ], [ -95.576172054673307, 29.736621185572542 ], [ -95.576122054504864, 29.735366184771244 ], [ -95.576117054925319, 29.735294184597617 ], [ -95.57610305515901, 29.735076185010342 ], [ -95.576061054453575, 29.73479518502743 ], [ -95.575685055012116, 29.732707184367683 ], [ -95.576304055289754, 29.732632184373614 ], [ -95.5766470550778, 29.732626183963699 ], [ -95.576751055344602, 29.732625184163695 ], [ -95.577170055430059, 29.732626184604058 ], [ -95.577271055080772, 29.732635184639786 ], [ -95.577560054984318, 29.732662184084113 ], [ -95.577978055330163, 29.732714184548811 ], [ -95.578289055525232, 29.732781184588845 ], [ -95.578404055450747, 29.732807183957664 ], [ -95.578896055796619, 29.732922184676614 ], [ -95.579818056041645, 29.733152184512122 ], [ -95.580586056411249, 29.733284184670509 ], [ -95.58066005637771, 29.732642184665913 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1132, "Tract": "48201454305", "Area_SqMi": 0.64964153825410831, "total_2009": 815, "total_2010": 1003, "total_2011": 1037, "total_2012": 882, "total_2013": 865, "total_2014": 900, "total_2015": 937, "total_2016": 790, "total_2017": 670, "total_2018": 638, "total_2019": 585, "total_2020": 516, "age1": 190, "age2": 267, "age3": 134, "earn1": 146, "earn2": 291, "earn3": 154, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 262, "naics_s08": 2, "naics_s09": 2, "naics_s10": 52, "naics_s11": 20, "naics_s12": 13, "naics_s13": 1, "naics_s14": 26, "naics_s15": 0, "naics_s16": 105, "naics_s17": 6, "naics_s18": 94, "naics_s19": 6, "naics_s20": 0, "race1": 352, "race2": 132, "race3": 4, "race4": 94, "race5": 2, "race6": 7, "ethnicity1": 409, "ethnicity2": 182, "edu1": 87, "edu2": 97, "edu3": 102, "edu4": 115, "Shape_Length": 17996.901256058998, "Shape_Area": 18110894.213919599, "total_2021": 513, "total_2022": 591 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.654771074264602, 29.723364179718235 ], [ -95.654765074329205, 29.723012179820952 ], [ -95.654741074145633, 29.722654179303298 ], [ -95.654718074410994, 29.722460180042152 ], [ -95.654698074626424, 29.722289179281137 ], [ -95.654665074389612, 29.722095179353065 ], [ -95.654636074532291, 29.721929179903764 ], [ -95.654560074012423, 29.721581179401618 ], [ -95.654474074574921, 29.721267179540746 ], [ -95.654328074735716, 29.72080317891502 ], [ -95.654204074423077, 29.720418178883634 ], [ -95.65407207463285, 29.719976179344858 ], [ -95.654033074134162, 29.719811179034153 ], [ -95.653947074320598, 29.719305178752322 ], [ -95.65393107385988, 29.719198178857283 ], [ -95.653897074199108, 29.718885178546437 ], [ -95.65389407374721, 29.718859178788843 ], [ -95.653892073779247, 29.718770179185281 ], [ -95.653889073896949, 29.71858217874632 ], [ -95.653585074492966, 29.718590178564991 ], [ -95.652353073297562, 29.718594179044818 ], [ -95.651553073705827, 29.718596179219521 ], [ -95.651265073080523, 29.718605179378471 ], [ -95.650976073409637, 29.718625179346859 ], [ -95.650796072947657, 29.718643179006776 ], [ -95.650557073412898, 29.718673179106688 ], [ -95.650155073068518, 29.718745178941848 ], [ -95.649899073321649, 29.718803178686287 ], [ -95.649687072963772, 29.718859178917899 ], [ -95.649536073060091, 29.718901178838461 ], [ -95.649184073154615, 29.719018178805484 ], [ -95.648950073172102, 29.719110178829276 ], [ -95.648198073078035, 29.719430179612907 ], [ -95.647918072992695, 29.719531179367475 ], [ -95.647624072224815, 29.719624179405418 ], [ -95.647323072801797, 29.719706179503422 ], [ -95.647017072716395, 29.719773179604296 ], [ -95.646705072629217, 29.719827179213677 ], [ -95.646388072317606, 29.71986717975599 ], [ -95.646065072011879, 29.719893179627512 ], [ -95.645740071595782, 29.71990517965838 ], [ -95.644462071558323, 29.719922179463797 ], [ -95.644148071583217, 29.719926179666171 ], [ -95.644157071937684, 29.720149179126544 ], [ -95.644206071888121, 29.721368179751661 ], [ -95.644079071913637, 29.7237831802538 ], [ -95.644073071392214, 29.723825180112414 ], [ -95.643983071358875, 29.724471180523661 ], [ -95.643950072234688, 29.725364180732104 ], [ -95.643949072116229, 29.725459180857868 ], [ -95.643941071425033, 29.72598918095364 ], [ -95.64395107219967, 29.726767181346435 ], [ -95.643948072238956, 29.727879181321168 ], [ -95.643968071812481, 29.729141181718354 ], [ -95.643975071967873, 29.729678181361944 ], [ -95.643986072298006, 29.730049181795664 ], [ -95.64399107199084, 29.730945181578601 ], [ -95.643996072097011, 29.731145181830026 ], [ -95.643990072021651, 29.731317181910761 ], [ -95.644002072574807, 29.732054182339834 ], [ -95.644033071724522, 29.733413182306226 ], [ -95.644053072319153, 29.73474518265872 ], [ -95.644072071937103, 29.73527018309181 ], [ -95.644060072420118, 29.735393182569705 ], [ -95.644052072640747, 29.735483182646174 ], [ -95.644059072469247, 29.735649182695195 ], [ -95.647004072666405, 29.73559418244529 ], [ -95.647679073260477, 29.735580182171208 ], [ -95.648404073403455, 29.735529182259466 ], [ -95.648441073187982, 29.735526182465236 ], [ -95.649460073346376, 29.735320182259379 ], [ -95.649826073937362, 29.73522018212222 ], [ -95.650245073668287, 29.73507018210513 ], [ -95.650867074321624, 29.734822182566482 ], [ -95.651443074626727, 29.734528182523398 ], [ -95.652089074276361, 29.734114182031664 ], [ -95.652388074816315, 29.733882182096668 ], [ -95.652688074965852, 29.733614181599144 ], [ -95.652845074488255, 29.733489182141255 ], [ -95.653213074872781, 29.733136182179969 ], [ -95.653608074265989, 29.732744181531029 ], [ -95.653513074227291, 29.732614181449932 ], [ -95.651788073660541, 29.731271181826472 ], [ -95.653591074479436, 29.729519181028699 ], [ -95.654133074129476, 29.729003181420214 ], [ -95.654285074335476, 29.728630181027395 ], [ -95.654336074762114, 29.728391181197757 ], [ -95.654338075101819, 29.728153180677886 ], [ -95.654340074521059, 29.728087180394951 ], [ -95.654341075035703, 29.728055180815261 ], [ -95.654340074340737, 29.727925181023704 ], [ -95.654336074929489, 29.726763180299507 ], [ -95.654337074098137, 29.726545180865209 ], [ -95.654349074934657, 29.726322180441549 ], [ -95.654399074381516, 29.725886180802064 ], [ -95.654462074521192, 29.725524180405806 ], [ -95.654534074037542, 29.725185180262645 ], [ -95.654642074313131, 29.724671180363249 ], [ -95.654663074999021, 29.724554180524994 ], [ -95.654694074378085, 29.724380179648918 ], [ -95.654733074712155, 29.724077179894859 ], [ -95.654761074733102, 29.723720180245344 ], [ -95.654771074264602, 29.723364179718235 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1133, "Tract": "48201454304", "Area_SqMi": 0.32409342213007086, "total_2009": 652, "total_2010": 691, "total_2011": 760, "total_2012": 840, "total_2013": 832, "total_2014": 877, "total_2015": 805, "total_2016": 661, "total_2017": 569, "total_2018": 409, "total_2019": 394, "total_2020": 323, "age1": 89, "age2": 117, "age3": 61, "earn1": 83, "earn2": 111, "earn3": 73, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 158, "naics_s08": 0, "naics_s09": 17, "naics_s10": 0, "naics_s11": 35, "naics_s12": 10, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 17, "naics_s19": 0, "naics_s20": 0, "race1": 148, "race2": 46, "race3": 3, "race4": 65, "race5": 2, "race6": 3, "ethnicity1": 171, "ethnicity2": 96, "edu1": 39, "edu2": 45, "edu3": 58, "edu4": 36, "Shape_Length": 15100.376352891641, "Shape_Area": 9035169.9175507315, "total_2021": 275, "total_2022": 267 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.660647076654371, 29.726941180565341 ], [ -95.66061207628556, 29.726770179995778 ], [ -95.660638076325384, 29.726635180610035 ], [ -95.660626076088491, 29.725365179886424 ], [ -95.660622076331066, 29.724976179639221 ], [ -95.660616076107488, 29.724367180033262 ], [ -95.660607075526315, 29.722879179384414 ], [ -95.660607076254834, 29.722724179788738 ], [ -95.66060307609014, 29.722569179731373 ], [ -95.660595075855682, 29.721084179195454 ], [ -95.660591075838738, 29.720601178932991 ], [ -95.660577075453531, 29.720006179002006 ], [ -95.660556076089819, 29.719676178577107 ], [ -95.660542075911351, 29.719457178651375 ], [ -95.660449075231625, 29.718319179070129 ], [ -95.660438075960059, 29.717978178553576 ], [ -95.660435075836972, 29.717518178736427 ], [ -95.660433075354476, 29.717167178639041 ], [ -95.660431075282247, 29.716879178016487 ], [ -95.660431075872651, 29.716768178614217 ], [ -95.660428076132888, 29.716137178184965 ], [ -95.660427075763209, 29.716009178406271 ], [ -95.658853074954564, 29.716770178536084 ], [ -95.658521075421959, 29.71693117850489 ], [ -95.657876074695949, 29.717244178075855 ], [ -95.657362074748491, 29.717492178497743 ], [ -95.656921074886938, 29.717706178885734 ], [ -95.656234074582429, 29.718032178834175 ], [ -95.655946074312226, 29.718150178401348 ], [ -95.655656074538939, 29.718252179203017 ], [ -95.655368074800535, 29.718340178382043 ], [ -95.655072074697628, 29.718417179226854 ], [ -95.654922074268214, 29.718451178675352 ], [ -95.654626073897944, 29.718506179197735 ], [ -95.654245074448809, 29.718556179328825 ], [ -95.653889073896949, 29.71858217874632 ], [ -95.653892073779247, 29.718770179185281 ], [ -95.65389407374721, 29.718859178788843 ], [ -95.653897074199108, 29.718885178546437 ], [ -95.65393107385988, 29.719198178857283 ], [ -95.653947074320598, 29.719305178752322 ], [ -95.654033074134162, 29.719811179034153 ], [ -95.65407207463285, 29.719976179344858 ], [ -95.654204074423077, 29.720418178883634 ], [ -95.654328074735716, 29.72080317891502 ], [ -95.654474074574921, 29.721267179540746 ], [ -95.654560074012423, 29.721581179401618 ], [ -95.654636074532291, 29.721929179903764 ], [ -95.654665074389612, 29.722095179353065 ], [ -95.654698074626424, 29.722289179281137 ], [ -95.654718074410994, 29.722460180042152 ], [ -95.654741074145633, 29.722654179303298 ], [ -95.654765074329205, 29.723012179820952 ], [ -95.654771074264602, 29.723364179718235 ], [ -95.654761074733102, 29.723720180245344 ], [ -95.654733074712155, 29.724077179894859 ], [ -95.654694074378085, 29.724380179648918 ], [ -95.654663074999021, 29.724554180524994 ], [ -95.654642074313131, 29.724671180363249 ], [ -95.654534074037542, 29.725185180262645 ], [ -95.654462074521192, 29.725524180405806 ], [ -95.654399074381516, 29.725886180802064 ], [ -95.654349074934657, 29.726322180441549 ], [ -95.654337074098137, 29.726545180865209 ], [ -95.654336074929489, 29.726763180299507 ], [ -95.654340074340737, 29.727925181023704 ], [ -95.654341075035703, 29.728055180815261 ], [ -95.654340074521059, 29.728087180394951 ], [ -95.654338075101819, 29.728153180677886 ], [ -95.654336074762114, 29.728391181197757 ], [ -95.654285074335476, 29.728630181027395 ], [ -95.654133074129476, 29.729003181420214 ], [ -95.653591074479436, 29.729519181028699 ], [ -95.651788073660541, 29.731271181826472 ], [ -95.653513074227291, 29.732614181449932 ], [ -95.653608074265989, 29.732744181531029 ], [ -95.654244074942469, 29.732139182051636 ], [ -95.655859074905749, 29.730546181254205 ], [ -95.656347074968721, 29.730086181182738 ], [ -95.657341075880609, 29.729151181410383 ], [ -95.658222075795237, 29.72848718068537 ], [ -95.658888076204946, 29.728061180501587 ], [ -95.658978075361205, 29.728003180607594 ], [ -95.659060075693588, 29.727952180364479 ], [ -95.659087076103773, 29.727934180602283 ], [ -95.659270075994471, 29.727818180434298 ], [ -95.660647076654371, 29.726941180565341 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1134, "Tract": "48201452702", "Area_SqMi": 0.68242509700695075, "total_2009": 207, "total_2010": 193, "total_2011": 162, "total_2012": 186, "total_2013": 128, "total_2014": 207, "total_2015": 224, "total_2016": 213, "total_2017": 231, "total_2018": 398, "total_2019": 426, "total_2020": 397, "age1": 90, "age2": 109, "age3": 72, "earn1": 94, "earn2": 82, "earn3": 95, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 35, "naics_s06": 6, "naics_s07": 18, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 31, "naics_s12": 42, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 29, "naics_s17": 106, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 98, "race2": 65, "race3": 1, "race4": 102, "race5": 1, "race6": 4, "ethnicity1": 208, "ethnicity2": 63, "edu1": 51, "edu2": 36, "edu3": 54, "edu4": 40, "Shape_Length": 17928.396845172454, "Shape_Area": 19024843.722327273, "total_2021": 212, "total_2022": 271 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.634402068651383, 29.70268817623726 ], [ -95.634402068361354, 29.701783176370153 ], [ -95.634388068350816, 29.70039917588544 ], [ -95.63436506802411, 29.6981481757423 ], [ -95.634346067956685, 29.696206175200341 ], [ -95.634310068362396, 29.693084174193526 ], [ -95.634299068106145, 29.692150174127747 ], [ -95.634299067956903, 29.69213017382453 ], [ -95.63427906738761, 29.690346173464249 ], [ -95.634277067413265, 29.690182173552632 ], [ -95.633922067587136, 29.690179174134496 ], [ -95.633684067238818, 29.690168173514447 ], [ -95.633280067519308, 29.690133173763964 ], [ -95.632987067462167, 29.690090173909901 ], [ -95.632681067363222, 29.690030174151897 ], [ -95.632527067034616, 29.689992174178311 ], [ -95.632373067201357, 29.689947174195446 ], [ -95.632216067304171, 29.689911173551319 ], [ -95.631755067285923, 29.689761173845454 ], [ -95.631449067414934, 29.689647173598971 ], [ -95.631153067464496, 29.689516174179481 ], [ -95.631008066736186, 29.689444174063354 ], [ -95.630724067307014, 29.689292173671234 ], [ -95.630090066611473, 29.688934174056161 ], [ -95.629906066523318, 29.688828173236956 ], [ -95.629646066788865, 29.688689173814023 ], [ -95.629359066029537, 29.688550173872734 ], [ -95.629113066787795, 29.688444173701434 ], [ -95.628828066404921, 29.688336173917744 ], [ -95.628536066594506, 29.688238173462345 ], [ -95.628235066054955, 29.688153173670948 ], [ -95.627926066431385, 29.688081173534158 ], [ -95.627617065685854, 29.688021173939354 ], [ -95.627312065628431, 29.687978173326215 ], [ -95.627017065886662, 29.687951173813886 ], [ -95.626660065302644, 29.687932173221331 ], [ -95.626267066014407, 29.687931173769762 ], [ -95.625939065281557, 29.687943173236803 ], [ -95.625698065171733, 29.687962173488085 ], [ -95.62543006574856, 29.687995174083312 ], [ -95.625119065592628, 29.688049173995978 ], [ -95.623642064921057, 29.688352173610081 ], [ -95.623220065029514, 29.688424173993763 ], [ -95.622937064666104, 29.688454173741036 ], [ -95.622656064446957, 29.688472174194334 ], [ -95.622350064805744, 29.688480174214654 ], [ -95.622358064785999, 29.688534173395034 ], [ -95.622362064534599, 29.688695173605847 ], [ -95.622362064912366, 29.689374173600452 ], [ -95.622362064962218, 29.689547174384433 ], [ -95.622365064799638, 29.690516173979727 ], [ -95.622367065173336, 29.690887174446743 ], [ -95.622376064393919, 29.691245173991973 ], [ -95.622394064562997, 29.691463174155018 ], [ -95.622435065295917, 29.691748174090453 ], [ -95.622480065168645, 29.691987174200211 ], [ -95.622549064656766, 29.692267174754353 ], [ -95.622638065446594, 29.692546175026155 ], [ -95.622933065230612, 29.693300174685444 ], [ -95.623229064883574, 29.694049174644991 ], [ -95.623553065111921, 29.694862175290666 ], [ -95.62362706547556, 29.695071175200077 ], [ -95.623726064859, 29.69538417560295 ], [ -95.623784065623497, 29.695621174847339 ], [ -95.623870064934493, 29.696092175597308 ], [ -95.62389106524013, 29.696314175425385 ], [ -95.623898065642791, 29.696455175599429 ], [ -95.623915065856409, 29.697508175697831 ], [ -95.623938065529657, 29.699998175680904 ], [ -95.623941065451319, 29.700382176356946 ], [ -95.623944065638412, 29.700684176468982 ], [ -95.623948065777242, 29.701108176721085 ], [ -95.623970066027397, 29.703380176810764 ], [ -95.623972065849074, 29.703712177170846 ], [ -95.624545066169347, 29.703723176861299 ], [ -95.625344065981068, 29.703725177088089 ], [ -95.627503067195292, 29.703790176399316 ], [ -95.632880067789671, 29.703940176489567 ], [ -95.633731068099536, 29.703988176864517 ], [ -95.634390068359167, 29.704008176661073 ], [ -95.634392068642043, 29.703498176623732 ], [ -95.634402068651383, 29.70268817623726 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1135, "Tract": "48201451004", "Area_SqMi": 0.14001845491159748, "total_2009": 139, "total_2010": 148, "total_2011": 169, "total_2012": 189, "total_2013": 203, "total_2014": 225, "total_2015": 259, "total_2016": 239, "total_2017": 244, "total_2018": 266, "total_2019": 249, "total_2020": 241, "age1": 83, "age2": 110, "age3": 40, "earn1": 72, "earn2": 82, "earn3": 79, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 20, "naics_s08": 0, "naics_s09": 14, "naics_s10": 17, "naics_s11": 22, "naics_s12": 35, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 14, "naics_s17": 0, "naics_s18": 96, "naics_s19": 13, "naics_s20": 0, "race1": 138, "race2": 55, "race3": 0, "race4": 31, "race5": 0, "race6": 9, "ethnicity1": 172, "ethnicity2": 61, "edu1": 31, "edu2": 43, "edu3": 39, "edu4": 37, "Shape_Length": 7920.8262412267695, "Shape_Area": 3903474.8789547193, "total_2021": 234, "total_2022": 233 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.588689058746027, 29.740657185952298 ], [ -95.588660058180878, 29.739048184914278 ], [ -95.588647058344634, 29.73799018505559 ], [ -95.588638058676025, 29.737641184835677 ], [ -95.588633057808991, 29.737285184579818 ], [ -95.588628057871205, 29.736582184999701 ], [ -95.5886240586768, 29.736403184464177 ], [ -95.585006057150224, 29.736458185277559 ], [ -95.581206056409414, 29.736562185393094 ], [ -95.5812090565407, 29.736689185225092 ], [ -95.581241056881254, 29.738527185352506 ], [ -95.581242056761795, 29.739069185253737 ], [ -95.581255056371731, 29.739391185500079 ], [ -95.581256056046072, 29.739587185705499 ], [ -95.581270056857306, 29.739889185869696 ], [ -95.581310056508499, 29.740184186176215 ], [ -95.581379056477417, 29.740460186101384 ], [ -95.581485056317746, 29.740760185743817 ], [ -95.581536056443937, 29.740885186016612 ], [ -95.581611056667114, 29.741066186232047 ], [ -95.581732057122409, 29.741328186145058 ], [ -95.582119056273982, 29.741230186358479 ], [ -95.582518057250709, 29.741175185632269 ], [ -95.582985056657449, 29.741168185533198 ], [ -95.583236057342518, 29.741204185838892 ], [ -95.583744057401489, 29.741313185706019 ], [ -95.584081056915764, 29.741376185842231 ], [ -95.584384057728229, 29.741391186165632 ], [ -95.584642057355609, 29.741375186219688 ], [ -95.58489305777735, 29.741334186182854 ], [ -95.585248057996779, 29.741257186235327 ], [ -95.585579057981306, 29.741137185709356 ], [ -95.585876057619188, 29.74103718563741 ], [ -95.586124057578914, 29.74094918591215 ], [ -95.586362057400734, 29.740870185508509 ], [ -95.586609057799777, 29.740804186094248 ], [ -95.586993057840786, 29.74072018588976 ], [ -95.587482057703994, 29.740681185747086 ], [ -95.587742057930967, 29.740675185850876 ], [ -95.588689058746027, 29.740657185952298 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1136, "Tract": "48201331501", "Area_SqMi": 0.8607970664374569, "total_2009": 230, "total_2010": 221, "total_2011": 258, "total_2012": 228, "total_2013": 246, "total_2014": 274, "total_2015": 231, "total_2016": 267, "total_2017": 243, "total_2018": 179, "total_2019": 216, "total_2020": 143, "age1": 39, "age2": 81, "age3": 36, "earn1": 38, "earn2": 82, "earn3": 36, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 12, "naics_s06": 10, "naics_s07": 94, "naics_s08": 10, "naics_s09": 3, "naics_s10": 0, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 3, "naics_s19": 8, "naics_s20": 0, "race1": 77, "race2": 42, "race3": 0, "race4": 35, "race5": 0, "race6": 2, "ethnicity1": 109, "ethnicity2": 47, "edu1": 38, "edu2": 23, "edu3": 31, "edu4": 25, "Shape_Length": 24328.783751034171, "Shape_Area": 23997548.943373024, "total_2021": 156, "total_2022": 156 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.364059997222085, 29.646487173815739 ], [ -95.36404399662284, 29.646426173729903 ], [ -95.36398699645207, 29.646377174183566 ], [ -95.363961996832813, 29.646195174297773 ], [ -95.363956996306911, 29.645678174213074 ], [ -95.363947996992991, 29.644606173209606 ], [ -95.363934996672228, 29.644386173475716 ], [ -95.36389199635984, 29.642181173089231 ], [ -95.363889996199532, 29.642061173027507 ], [ -95.363851996031528, 29.641434173288296 ], [ -95.363825995994006, 29.639317172096167 ], [ -95.363817996024792, 29.639101172343643 ], [ -95.363787996106979, 29.638327172253646 ], [ -95.363729996091536, 29.636337171495974 ], [ -95.363725996523115, 29.636145171954308 ], [ -95.363709996348078, 29.635331171276921 ], [ -95.363684996355389, 29.634737171467748 ], [ -95.363684995854399, 29.634402171337399 ], [ -95.363683996225319, 29.633610171330208 ], [ -95.36366799616826, 29.632055171440228 ], [ -95.36366499559, 29.63178517050336 ], [ -95.363631995951096, 29.629987170909892 ], [ -95.363568996338657, 29.62875817045725 ], [ -95.363563995385178, 29.628239170408225 ], [ -95.363554995817566, 29.627269169701329 ], [ -95.363548995415442, 29.626556170259509 ], [ -95.363537995492521, 29.626349169413885 ], [ -95.363503995778146, 29.625682169651501 ], [ -95.363497995926082, 29.625006169796933 ], [ -95.363464995850492, 29.624534169299199 ], [ -95.363429995700812, 29.622939169005861 ], [ -95.363389995990062, 29.621078168812428 ], [ -95.362896995772388, 29.621078168892023 ], [ -95.360074994742789, 29.621065168814454 ], [ -95.35544299305586, 29.621065168854358 ], [ -95.355461993025372, 29.622006169592439 ], [ -95.355494993158544, 29.622462169369737 ], [ -95.355477993807597, 29.623214169082363 ], [ -95.355529993617452, 29.624789169863956 ], [ -95.355522993199571, 29.624807169545079 ], [ -95.355547993856931, 29.625174169495672 ], [ -95.355582993236922, 29.625561170262579 ], [ -95.355621993696502, 29.627398169857109 ], [ -95.35562699401703, 29.627664170466016 ], [ -95.355638994295774, 29.628045170817096 ], [ -95.355661993947621, 29.628871170908514 ], [ -95.355760993716459, 29.632265171581366 ], [ -95.355777993560267, 29.632775171643264 ], [ -95.355799994386373, 29.633025171392298 ], [ -95.355839994204558, 29.634075171551252 ], [ -95.355832994119467, 29.634316171433092 ], [ -95.355835994101042, 29.63462517134937 ], [ -95.355842993944378, 29.634900171662117 ], [ -95.355852994374459, 29.63506017212794 ], [ -95.355870994144297, 29.636088172368801 ], [ -95.355878994069826, 29.636751172647724 ], [ -95.355908994576112, 29.636992172477779 ], [ -95.355957994286143, 29.637862172012955 ], [ -95.355952994196471, 29.63822517260688 ], [ -95.355965994655108, 29.639061172733413 ], [ -95.355960994460375, 29.639691172447492 ], [ -95.355992994739964, 29.640473172943413 ], [ -95.356000994346829, 29.640705172950284 ], [ -95.355993994405736, 29.640849173035384 ], [ -95.355999994190668, 29.641377172826697 ], [ -95.356022994137831, 29.64241217345797 ], [ -95.356073994901962, 29.643299173431007 ], [ -95.356080994435032, 29.644140173415643 ], [ -95.356100994410596, 29.644620173871676 ], [ -95.356128994717508, 29.64535517382069 ], [ -95.356156994907693, 29.646108174296124 ], [ -95.356228994421897, 29.646860174410808 ], [ -95.356287994764088, 29.647705174599974 ], [ -95.356291994834081, 29.648149174553009 ], [ -95.356292994875133, 29.648220174477224 ], [ -95.356378994905683, 29.648169174442909 ], [ -95.356638994648577, 29.648061174605484 ], [ -95.357609995138759, 29.647937174688451 ], [ -95.357974995636084, 29.647954174437569 ], [ -95.358852995152589, 29.648097174448075 ], [ -95.359180995166341, 29.648087174792686 ], [ -95.35936899554045, 29.648019174806109 ], [ -95.359607996120602, 29.64782717457954 ], [ -95.359849995990487, 29.647417174163017 ], [ -95.360092995745447, 29.647288174486256 ], [ -95.363284996489284, 29.646644173643967 ], [ -95.363817996618209, 29.646647173721888 ], [ -95.363944996763195, 29.646563173589264 ], [ -95.364059997222085, 29.646487173815739 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1137, "Tract": "48201451407", "Area_SqMi": 0.11100272846607327, "total_2009": 6, "total_2010": 39, "total_2011": 55, "total_2012": 39, "total_2013": 50, "total_2014": 37, "total_2015": 117, "total_2016": 12, "total_2017": 6, "total_2018": 8, "total_2019": 19, "total_2020": 47, "age1": 11, "age2": 25, "age3": 10, "earn1": 13, "earn2": 23, "earn3": 10, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 8, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 16, "naics_s19": 8, "naics_s20": 0, "race1": 11, "race2": 25, "race3": 0, "race4": 8, "race5": 0, "race6": 2, "ethnicity1": 41, "ethnicity2": 5, "edu1": 5, "edu2": 14, "edu3": 11, "edu4": 5, "Shape_Length": 8125.3723269050006, "Shape_Area": 3094566.0865656342, "total_2021": 45, "total_2022": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619275066375735, 29.742351184653568 ], [ -95.619274066647279, 29.741654184848173 ], [ -95.619123066114156, 29.74130718452356 ], [ -95.618889066158985, 29.740796184812726 ], [ -95.618805066168093, 29.740700184925231 ], [ -95.618741065867411, 29.740641184216884 ], [ -95.618452066426755, 29.740335184470336 ], [ -95.618107065465708, 29.739986184256598 ], [ -95.617951066059405, 29.739815184120811 ], [ -95.617868065619973, 29.739702184602947 ], [ -95.617801065572252, 29.739570184560254 ], [ -95.617760065415197, 29.739436184469529 ], [ -95.61773206545881, 29.739256184073035 ], [ -95.617724065946092, 29.738158184409915 ], [ -95.61778106618759, 29.737915183652728 ], [ -95.618010066270102, 29.737480183715903 ], [ -95.618080066157404, 29.737298183846097 ], [ -95.618122065766769, 29.73706718360696 ], [ -95.618115065967643, 29.736110183588323 ], [ -95.618114066184134, 29.735951183458653 ], [ -95.617520065878921, 29.73595218336208 ], [ -95.617496065396878, 29.735950183748059 ], [ -95.617085065243046, 29.735956183899908 ], [ -95.61596906489838, 29.735973183328412 ], [ -95.615435065463288, 29.735976183332074 ], [ -95.615192065297109, 29.735977183652906 ], [ -95.614892064906286, 29.735979183935363 ], [ -95.614260064279165, 29.735987183806753 ], [ -95.613544064628911, 29.736015184123353 ], [ -95.613539064189169, 29.736193183595859 ], [ -95.613534064318969, 29.736342183825847 ], [ -95.613554064772515, 29.736889183659905 ], [ -95.613578064642653, 29.737315184148926 ], [ -95.613641064628055, 29.73772918445556 ], [ -95.613735065099931, 29.738189183872073 ], [ -95.613856064578471, 29.738595184203483 ], [ -95.61402506502759, 29.739090184085082 ], [ -95.614108064623139, 29.739492184527936 ], [ -95.614166065187462, 29.739919184633177 ], [ -95.6141900652066, 29.740225184632667 ], [ -95.614189064477557, 29.740496184814848 ], [ -95.615615065712888, 29.740511184380104 ], [ -95.615623064920968, 29.74128618438737 ], [ -95.615617065441398, 29.741839184661554 ], [ -95.615637065324393, 29.74213218471532 ], [ -95.61573606534543, 29.742312185474958 ], [ -95.615868064981569, 29.742452185429588 ], [ -95.616016065284143, 29.742568185411059 ], [ -95.616249066036204, 29.742706185023234 ], [ -95.616515066019346, 29.742795185176426 ], [ -95.616869066165364, 29.742840185008472 ], [ -95.617149065338438, 29.742839184850432 ], [ -95.617267065633627, 29.742839184710462 ], [ -95.618581065900187, 29.742847185478542 ], [ -95.619197066670907, 29.743013185016064 ], [ -95.619258066488726, 29.742863185458638 ], [ -95.619271065881378, 29.742687185287469 ], [ -95.619275066375735, 29.742351184653568 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1138, "Tract": "48201450803", "Area_SqMi": 0.41811574832333848, "total_2009": 177, "total_2010": 166, "total_2011": 162, "total_2012": 210, "total_2013": 180, "total_2014": 156, "total_2015": 165, "total_2016": 135, "total_2017": 152, "total_2018": 151, "total_2019": 150, "total_2020": 116, "age1": 36, "age2": 82, "age3": 60, "earn1": 38, "earn2": 92, "earn3": 48, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 42, "naics_s06": 0, "naics_s07": 96, "naics_s08": 2, "naics_s09": 0, "naics_s10": 4, "naics_s11": 13, "naics_s12": 10, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 123, "race2": 25, "race3": 2, "race4": 28, "race5": 0, "race6": 0, "ethnicity1": 103, "ethnicity2": 75, "edu1": 54, "edu2": 35, "edu3": 34, "edu4": 19, "Shape_Length": 16095.585446241126, "Shape_Area": 11656351.450999487, "total_2021": 163, "total_2022": 178 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.576240056082426, 29.757241189355415 ], [ -95.576187055937382, 29.756989189489026 ], [ -95.576092055418428, 29.756711189633606 ], [ -95.575944055572052, 29.756398189315735 ], [ -95.575575055382643, 29.755765189216575 ], [ -95.575166055797823, 29.755284189375427 ], [ -95.574304055853062, 29.754502189354262 ], [ -95.573325055298142, 29.753101188545021 ], [ -95.57290605493499, 29.752353188852556 ], [ -95.572836054822204, 29.752231188220041 ], [ -95.572695054954707, 29.751974188776195 ], [ -95.572578054317404, 29.751746188688958 ], [ -95.572376054689471, 29.751274188234177 ], [ -95.572283054998678, 29.750981188413181 ], [ -95.572180054382443, 29.750590188622102 ], [ -95.572153055072519, 29.750431187946813 ], [ -95.57211205414373, 29.750129187698974 ], [ -95.572082054747071, 29.749492188099627 ], [ -95.572076054330722, 29.749384188388827 ], [ -95.572079054426851, 29.7491511882426 ], [ -95.572073054287429, 29.747956187495653 ], [ -95.571209054354341, 29.747948187483061 ], [ -95.570582054489705, 29.74787518754324 ], [ -95.570222053851865, 29.74779818734125 ], [ -95.569824053497626, 29.747716187609754 ], [ -95.569582053354964, 29.747648187389142 ], [ -95.569253054247056, 29.747571187584086 ], [ -95.568693053283468, 29.747470188017989 ], [ -95.568393053107485, 29.747437187861713 ], [ -95.56826105349603, 29.74741718787153 ], [ -95.567676053400589, 29.747406187864325 ], [ -95.5675310534277, 29.747408187727366 ], [ -95.567183053742625, 29.747413187689727 ], [ -95.566458053410656, 29.747427187703614 ], [ -95.566037052985465, 29.747404187445376 ], [ -95.565814053054638, 29.747397187345967 ], [ -95.56543005321987, 29.747352187945967 ], [ -95.565020052215516, 29.747257187902697 ], [ -95.564990052540722, 29.747397187546305 ], [ -95.564975053119227, 29.747468187933972 ], [ -95.564727052972955, 29.748645187804495 ], [ -95.56440205204737, 29.748609188243108 ], [ -95.564022052162855, 29.7485911883991 ], [ -95.563502052465012, 29.748588188101841 ], [ -95.563392052766929, 29.748594188067248 ], [ -95.563322052253469, 29.748613188139014 ], [ -95.563282051944711, 29.748639188505656 ], [ -95.563253052479112, 29.748670188152094 ], [ -95.563237052370297, 29.748727188258435 ], [ -95.563233052018347, 29.749422188436679 ], [ -95.56322205227481, 29.750277188591042 ], [ -95.563225052754746, 29.750758188963594 ], [ -95.563241052315803, 29.751116188194743 ], [ -95.563236052615835, 29.751258188884744 ], [ -95.563240052134873, 29.751948189244771 ], [ -95.563240052884822, 29.752104188777555 ], [ -95.56325805213433, 29.752805189083897 ], [ -95.563266052431629, 29.75364118904541 ], [ -95.563273052743753, 29.754489189707055 ], [ -95.563297052230581, 29.755323189620693 ], [ -95.563293052495922, 29.756171189360778 ], [ -95.563300052823493, 29.757009190163792 ], [ -95.56331105305668, 29.757855190395151 ], [ -95.563317052634119, 29.758703190549458 ], [ -95.563787053116499, 29.758687190510688 ], [ -95.564335052920512, 29.758690190513754 ], [ -95.564635052848388, 29.758709190144071 ], [ -95.56493905310262, 29.758750190147182 ], [ -95.56514605310312, 29.758789190431909 ], [ -95.565770053403284, 29.758885190031329 ], [ -95.56612005297869, 29.758926190121127 ], [ -95.566435053493251, 29.758940190483408 ], [ -95.566784053933631, 29.758942189858672 ], [ -95.56687405332427, 29.758938190029383 ], [ -95.566942053730799, 29.758905190353673 ], [ -95.566984053385198, 29.758855189778831 ], [ -95.56699905353409, 29.758785190409526 ], [ -95.566998053868218, 29.758090189943118 ], [ -95.566997053797891, 29.757260189679535 ], [ -95.566983053484719, 29.756419189871373 ], [ -95.567570053702468, 29.756410189250193 ], [ -95.568251054042832, 29.756401189860412 ], [ -95.569796054558125, 29.756396189522235 ], [ -95.569807054785144, 29.756585189288945 ], [ -95.56985805465203, 29.75677218922122 ], [ -95.569949054471039, 29.756921189151129 ], [ -95.570489054160831, 29.757770189629884 ], [ -95.571076054803825, 29.757485190100887 ], [ -95.57122205453372, 29.757406189229634 ], [ -95.571406054494048, 29.757355189497098 ], [ -95.571592054320959, 29.757336189830873 ], [ -95.571814054409302, 29.757336189533294 ], [ -95.572002055150293, 29.757368189790199 ], [ -95.572263054510316, 29.757458189306799 ], [ -95.57243005459253, 29.757551189661104 ], [ -95.572605054861782, 29.757679189524382 ], [ -95.572710055345581, 29.757596189503889 ], [ -95.572906055646413, 29.757463189266748 ], [ -95.573094055371556, 29.757367189228972 ], [ -95.573332055531736, 29.757299189662735 ], [ -95.573630055245317, 29.757285189605234 ], [ -95.573997055104158, 29.757277189093276 ], [ -95.574559056064686, 29.757269189321757 ], [ -95.575433055357223, 29.757254189631571 ], [ -95.575497056217287, 29.757253189653927 ], [ -95.576240056082426, 29.757241189355415 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1139, "Tract": "48201422304", "Area_SqMi": 0.20178503440131401, "total_2009": 313, "total_2010": 287, "total_2011": 263, "total_2012": 208, "total_2013": 219, "total_2014": 177, "total_2015": 183, "total_2016": 205, "total_2017": 190, "total_2018": 184, "total_2019": 169, "total_2020": 153, "age1": 49, "age2": 97, "age3": 28, "earn1": 37, "earn2": 76, "earn3": 61, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 0, "naics_s07": 38, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 63, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 57, "naics_s19": 0, "naics_s20": 0, "race1": 129, "race2": 27, "race3": 2, "race4": 13, "race5": 0, "race6": 3, "ethnicity1": 94, "ethnicity2": 80, "edu1": 38, "edu2": 34, "edu3": 36, "edu4": 17, "Shape_Length": 13400.961776638442, "Shape_Area": 5625421.4005706925, "total_2021": 145, "total_2022": 174 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.508433034030759, 29.656023170839511 ], [ -95.508420033961258, 29.655279170784937 ], [ -95.50841803385822, 29.655011170600911 ], [ -95.508415034045854, 29.654605171068464 ], [ -95.508411034566493, 29.654440170772677 ], [ -95.508399034230919, 29.653920170643225 ], [ -95.508396033987282, 29.653036170384308 ], [ -95.508392034165993, 29.652132169802247 ], [ -95.508383033953294, 29.651532169963012 ], [ -95.507571033280058, 29.651498169954905 ], [ -95.506920033078202, 29.651307170514634 ], [ -95.506394033455408, 29.651164169949233 ], [ -95.5059680337787, 29.651154169711084 ], [ -95.505545033640558, 29.651148170289769 ], [ -95.505173033396431, 29.651142169711051 ], [ -95.504835033011517, 29.651139169947431 ], [ -95.504457033177786, 29.651146170606445 ], [ -95.503235032514681, 29.651171170536671 ], [ -95.503237032159461, 29.650452170095662 ], [ -95.50321903285446, 29.649670170253305 ], [ -95.503211032107018, 29.649320169980395 ], [ -95.503205032756441, 29.648935169806418 ], [ -95.503213032078548, 29.648592169679684 ], [ -95.503205032892936, 29.648022169912085 ], [ -95.503202032375057, 29.647496169121769 ], [ -95.503212032500585, 29.646889169033848 ], [ -95.503189032536582, 29.645868169025913 ], [ -95.503186032430932, 29.645616169324995 ], [ -95.503163032404643, 29.64433116904878 ], [ -95.501773032307426, 29.644341168742717 ], [ -95.501405031582735, 29.644344169045439 ], [ -95.500376031379076, 29.644377168955369 ], [ -95.500406032135871, 29.645970168946324 ], [ -95.500435031554773, 29.646931169041668 ], [ -95.500454032176663, 29.647600169646775 ], [ -95.500449031406845, 29.648252170108005 ], [ -95.500473031339766, 29.648887169729448 ], [ -95.50048103221647, 29.649223170162404 ], [ -95.500502032304567, 29.649590170252523 ], [ -95.50052203163591, 29.650237169740208 ], [ -95.500516031775973, 29.650632170272146 ], [ -95.500516032071033, 29.651189170376572 ], [ -95.500575032046044, 29.654009171120737 ], [ -95.500580032410667, 29.654497171178988 ], [ -95.500911031920495, 29.654489170968983 ], [ -95.503272032742174, 29.654475171329896 ], [ -95.505191033390446, 29.654463171249699 ], [ -95.505575033496626, 29.654480170412324 ], [ -95.50560603289847, 29.654568171197177 ], [ -95.50559903391671, 29.655436171102309 ], [ -95.505580033524708, 29.655942170904023 ], [ -95.505581033666573, 29.656034170793792 ], [ -95.505980033951488, 29.656034171387191 ], [ -95.506448033181911, 29.65603417080392 ], [ -95.507113033593669, 29.65602317063135 ], [ -95.507677033839258, 29.65602217115849 ], [ -95.508433034030759, 29.656023170839511 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1140, "Tract": "48201412902", "Area_SqMi": 0.48068683633869219, "total_2009": 451, "total_2010": 522, "total_2011": 423, "total_2012": 345, "total_2013": 503, "total_2014": 453, "total_2015": 483, "total_2016": 345, "total_2017": 403, "total_2018": 498, "total_2019": 591, "total_2020": 654, "age1": 195, "age2": 490, "age3": 229, "earn1": 216, "earn2": 397, "earn3": 301, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 34, "naics_s06": 0, "naics_s07": 62, "naics_s08": 4, "naics_s09": 19, "naics_s10": 0, "naics_s11": 23, "naics_s12": 13, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 299, "naics_s17": 0, "naics_s18": 419, "naics_s19": 40, "naics_s20": 0, "race1": 603, "race2": 250, "race3": 5, "race4": 46, "race5": 0, "race6": 10, "ethnicity1": 642, "ethnicity2": 272, "edu1": 129, "edu2": 230, "edu3": 245, "edu4": 115, "Shape_Length": 17282.450459589167, "Shape_Area": 13400726.293380123, "total_2021": 824, "total_2022": 914 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.458172022055635, 29.681256177812724 ], [ -95.458084022811306, 29.681135177493825 ], [ -95.457808022430655, 29.680760178109161 ], [ -95.457567022719587, 29.680528178179845 ], [ -95.457127022245785, 29.68015017759134 ], [ -95.456896021987717, 29.680001177437259 ], [ -95.456760021730545, 29.679913177377536 ], [ -95.456274022122471, 29.679686177451341 ], [ -95.455798021718024, 29.679512177725194 ], [ -95.455380021315293, 29.679423177688321 ], [ -95.454921021330634, 29.679375177547755 ], [ -95.454762021801244, 29.67936417762435 ], [ -95.454482021417647, 29.679353177782851 ], [ -95.45377202140935, 29.679349177972885 ], [ -95.453686021533386, 29.679348177381776 ], [ -95.453314021562036, 29.679323177807731 ], [ -95.449802020286739, 29.679406177758437 ], [ -95.44911101978002, 29.679413177623896 ], [ -95.447053019559263, 29.679459177803938 ], [ -95.446844019717219, 29.679472177689419 ], [ -95.446171019098045, 29.67947917792155 ], [ -95.445153018473675, 29.67950517841188 ], [ -95.439955017255429, 29.679518178137879 ], [ -95.439955017980267, 29.679753178203274 ], [ -95.439977017191651, 29.680276178495003 ], [ -95.439968017544231, 29.683198179019406 ], [ -95.439993018102342, 29.684790179484139 ], [ -95.439989017929662, 29.686413179412774 ], [ -95.439989018085001, 29.686597179219042 ], [ -95.440020017818782, 29.687063179685474 ], [ -95.440035017643226, 29.687678179566557 ], [ -95.440037017644869, 29.688256180009827 ], [ -95.440068017899222, 29.689651180011595 ], [ -95.440075018433106, 29.690549180321732 ], [ -95.4400760180406, 29.690642180676363 ], [ -95.440881018388865, 29.69099818031123 ], [ -95.441449018717577, 29.691066180776648 ], [ -95.442173018269159, 29.690941180604415 ], [ -95.44256901887357, 29.690753180226306 ], [ -95.442784019229762, 29.690587180532141 ], [ -95.446113020005697, 29.687573179811221 ], [ -95.446433019393368, 29.687413179258961 ], [ -95.446790020069798, 29.687331179832103 ], [ -95.447020019584428, 29.687317179755976 ], [ -95.447654019950349, 29.687280179903105 ], [ -95.448053019960469, 29.687198179302502 ], [ -95.448918020699864, 29.686789178979563 ], [ -95.449373020750343, 29.686378179358663 ], [ -95.45036902026321, 29.684898179083245 ], [ -95.450574020326172, 29.684593178708948 ], [ -95.451023020747797, 29.68417517875384 ], [ -95.452270020823434, 29.683299178235227 ], [ -95.453172021314373, 29.682671178300847 ], [ -95.454190021272211, 29.682072178089093 ], [ -95.455087022151446, 29.681568177732171 ], [ -95.45568902156765, 29.681336178088298 ], [ -95.456363022057829, 29.681179178370162 ], [ -95.457100022197309, 29.681137178282981 ], [ -95.457797022734681, 29.681194178138846 ], [ -95.458172022055635, 29.681256177812724 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1141, "Tract": "48201554406", "Area_SqMi": 2.6280120792085913, "total_2009": 263, "total_2010": 262, "total_2011": 366, "total_2012": 381, "total_2013": 398, "total_2014": 359, "total_2015": 410, "total_2016": 458, "total_2017": 584, "total_2018": 578, "total_2019": 717, "total_2020": 698, "age1": 235, "age2": 461, "age3": 145, "earn1": 162, "earn2": 169, "earn3": 510, "naics_s01": 0, "naics_s02": 4, "naics_s03": 185, "naics_s04": 104, "naics_s05": 0, "naics_s06": 0, "naics_s07": 37, "naics_s08": 24, "naics_s09": 112, "naics_s10": 8, "naics_s11": 15, "naics_s12": 102, "naics_s13": 0, "naics_s14": 46, "naics_s15": 30, "naics_s16": 61, "naics_s17": 13, "naics_s18": 58, "naics_s19": 42, "naics_s20": 0, "race1": 636, "race2": 116, "race3": 8, "race4": 67, "race5": 2, "race6": 12, "ethnicity1": 620, "ethnicity2": 221, "edu1": 121, "edu2": 155, "edu3": 184, "edu4": 146, "Shape_Length": 41185.235855070416, "Shape_Area": 73264478.88070941, "total_2021": 759, "total_2022": 841 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.725030105827244, 30.020893238333404 ], [ -95.725028105619188, 30.02060523828548 ], [ -95.72502410573783, 30.020405237469411 ], [ -95.725018105570769, 30.020114237396438 ], [ -95.7250081057404, 30.019978238028525 ], [ -95.724987105548735, 30.01981223820647 ], [ -95.724973106218002, 30.019691237622958 ], [ -95.724964106201227, 30.019037237713754 ], [ -95.724959106146102, 30.018552237368048 ], [ -95.724926105395497, 30.016132236887394 ], [ -95.724869105338257, 30.014826236591819 ], [ -95.724846105884666, 30.014396237132292 ], [ -95.724774105150004, 30.012828236300233 ], [ -95.724762105623427, 30.01238823587228 ], [ -95.72475710515296, 30.010409236260138 ], [ -95.724741105259298, 30.010409236073102 ], [ -95.724749105460404, 30.010312235813952 ], [ -95.724745105327614, 30.009181235225551 ], [ -95.724753105354409, 30.008591235685472 ], [ -95.72473810553258, 30.005995235252463 ], [ -95.72474410563315, 30.005781234570893 ], [ -95.724726105348921, 30.004922234763814 ], [ -95.724721104824084, 30.004001234737032 ], [ -95.724726104851982, 30.00335623475786 ], [ -95.724721105525632, 30.00307923451766 ], [ -95.724702105157675, 30.001142233939277 ], [ -95.724701104446936, 30.000964234163902 ], [ -95.724696105148126, 30.000074233416008 ], [ -95.724690104758452, 29.999942233894959 ], [ -95.724669105043304, 29.999393233356102 ], [ -95.724668104495237, 29.999366233624091 ], [ -95.724651104701607, 29.998043233136325 ], [ -95.724645105224994, 29.997512233167054 ], [ -95.724639105179037, 29.997352232911961 ], [ -95.724623105174715, 29.997202233289407 ], [ -95.724592104520994, 29.997061233306255 ], [ -95.724547105005371, 29.996926233042618 ], [ -95.724524104429719, 29.996872233188817 ], [ -95.724492104957832, 29.996793233454127 ], [ -95.724338104725419, 29.996465233091875 ], [ -95.724195104562938, 29.996157233414426 ], [ -95.723752104876169, 29.995206233091743 ], [ -95.723269104349995, 29.99417123224929 ], [ -95.723222103887295, 29.994069232769746 ], [ -95.722991104384036, 29.993574232385022 ], [ -95.72269010397514, 29.992902232530305 ], [ -95.722654104066862, 29.992822232054046 ], [ -95.722643103822691, 29.992797232806311 ], [ -95.722631104237095, 29.992770232655282 ], [ -95.722371103642899, 29.992190232356542 ], [ -95.72167810348482, 29.990648232093417 ], [ -95.721581103162052, 29.990433231560729 ], [ -95.721177103314943, 29.989569231445291 ], [ -95.721154103714397, 29.989520231683468 ], [ -95.720790103484077, 29.988753231980596 ], [ -95.720752103372163, 29.988674231603955 ], [ -95.720738103524909, 29.988650232004392 ], [ -95.720733103836309, 29.988628231914813 ], [ -95.720600103696583, 29.988355231795918 ], [ -95.720531103780971, 29.988205231183546 ], [ -95.720524103544136, 29.9881912318248 ], [ -95.720516103093999, 29.988174231527243 ], [ -95.720495103739395, 29.988129231692497 ], [ -95.720365102775361, 29.987849231429458 ], [ -95.720282103370366, 29.987657231104976 ], [ -95.72025210338586, 29.987669231320893 ], [ -95.720119102893605, 29.987722231404334 ], [ -95.719729102964365, 29.987915231213179 ], [ -95.719210102643061, 29.988197231847597 ], [ -95.718629102797564, 29.988565231584843 ], [ -95.718204102211459, 29.988897231272546 ], [ -95.718010102705904, 29.989059231908527 ], [ -95.717679102736753, 29.989390231755497 ], [ -95.717248102480113, 29.989972232029423 ], [ -95.716955102573309, 29.990422232162789 ], [ -95.716754102115146, 29.990897232193465 ], [ -95.716672102802647, 29.991171232396677 ], [ -95.716517102811309, 29.9915782323543 ], [ -95.716422102088742, 29.991934232608351 ], [ -95.716247102719109, 29.992434232752416 ], [ -95.71609710218307, 29.992871232317849 ], [ -95.715928102088697, 29.993221232531777 ], [ -95.715766101971099, 29.993527232493285 ], [ -95.715610102046128, 29.993777233141163 ], [ -95.71547010179745, 29.993972232625563 ], [ -95.715422101847579, 29.994040232591075 ], [ -95.715210102182937, 29.994340233065355 ], [ -95.714691102261966, 29.994902232825225 ], [ -95.714335102461717, 29.995228233090081 ], [ -95.713991101907737, 29.995490233106754 ], [ -95.713672101992586, 29.995740233004572 ], [ -95.713416101823043, 29.995902233654903 ], [ -95.713060101451916, 29.996115233200708 ], [ -95.712666101583352, 29.996309233393863 ], [ -95.712253101845732, 29.99649623316045 ], [ -95.711791101267195, 29.9966902333747 ], [ -95.711372101258732, 29.996809233887941 ], [ -95.711100101387331, 29.996867233617301 ], [ -95.710703100912909, 29.996952233955515 ], [ -95.709997101223919, 29.997077233472826 ], [ -95.709310100884323, 29.997134234019075 ], [ -95.709142100381897, 29.99715323360936 ], [ -95.708942100323583, 29.997175234156064 ], [ -95.708893100935498, 29.997122233415791 ], [ -95.708797100427432, 29.997084233473604 ], [ -95.708730100552842, 29.997081233541522 ], [ -95.708696100405476, 29.997087233442993 ], [ -95.708156100529379, 29.997087233725587 ], [ -95.708015100711336, 29.997092233946343 ], [ -95.707715100540028, 29.997094234136682 ], [ -95.707613100705871, 29.997088234112976 ], [ -95.707064100414016, 29.997094234092625 ], [ -95.70378409989128, 29.997138233503936 ], [ -95.703508098963823, 29.99714723377053 ], [ -95.703418099275879, 29.997148233504955 ], [ -95.703205098820504, 29.99715223419344 ], [ -95.703021098837922, 29.997147234314728 ], [ -95.700670098243918, 29.997186233949186 ], [ -95.699374098093941, 29.99720023403215 ], [ -95.698500098049621, 29.997209234372647 ], [ -95.698189097501739, 29.997480234303463 ], [ -95.698041097801095, 29.997621233794703 ], [ -95.69790509780367, 29.99777823382664 ], [ -95.697826098358632, 29.997889234467181 ], [ -95.697762097498583, 29.9980062346281 ], [ -95.697691097523204, 29.998174233961709 ], [ -95.697648098282556, 29.998322234002138 ], [ -95.69762309754654, 29.998479234239877 ], [ -95.697617097978025, 29.998581234330135 ], [ -95.697621097646476, 29.999030234173016 ], [ -95.697642098126607, 30.000594235093224 ], [ -95.697651098212035, 30.000805235091647 ], [ -95.697647098140905, 30.00090923460855 ], [ -95.697653097497565, 30.001218235220634 ], [ -95.697668098267698, 30.001541234991457 ], [ -95.697719098216709, 30.002043235162024 ], [ -95.697834098586299, 30.002846235486874 ], [ -95.697845097709333, 30.00294723543011 ], [ -95.697858098542198, 30.003149235246909 ], [ -95.697874098055635, 30.00407523577044 ], [ -95.697887098338128, 30.005819236213107 ], [ -95.697893098741503, 30.006087235657578 ], [ -95.697905098582268, 30.008030236712418 ], [ -95.697918098386111, 30.008788236293597 ], [ -95.697920098547726, 30.010128236655273 ], [ -95.697928099007939, 30.011519237196524 ], [ -95.697935098924773, 30.011642236676092 ], [ -95.697929098592326, 30.011762237036407 ], [ -95.697934098931341, 30.012641237307275 ], [ -95.697925098935713, 30.012790237633951 ], [ -95.697869098786654, 30.013204237265793 ], [ -95.697789098498376, 30.013725237031434 ], [ -95.697765098193358, 30.013861237849763 ], [ -95.697749098536647, 30.013994237691872 ], [ -95.697513098725878, 30.015523238176947 ], [ -95.697486098765452, 30.01564823745608 ], [ -95.697428098182044, 30.016044238116521 ], [ -95.697617098274691, 30.016044237782118 ], [ -95.69777509856587, 30.015989237534523 ], [ -95.697883098903091, 30.015923237537375 ], [ -95.69791409925304, 30.01588423815587 ], [ -95.697946098686486, 30.015813237483098 ], [ -95.697952098774408, 30.015544237923908 ], [ -95.697996098484651, 30.015269237342668 ], [ -95.69807209891178, 30.015071238148469 ], [ -95.698135098964215, 30.014999237610436 ], [ -95.698337099213134, 30.014862237717377 ], [ -95.698495099224644, 30.014769237937021 ], [ -95.698647098435458, 30.014708237301669 ], [ -95.698855099412128, 30.014664237848638 ], [ -95.699215098622389, 30.014631237850701 ], [ -95.699354098864191, 30.014670237321777 ], [ -95.699462099335719, 30.01474623732199 ], [ -95.699525098889751, 30.014812237411618 ], [ -95.699556099106331, 30.014900237231291 ], [ -95.699575099560576, 30.014999237260994 ], [ -95.699569099002389, 30.015115237544244 ], [ -95.699575098702368, 30.015269237997813 ], [ -95.69955609873675, 30.015417238076296 ], [ -95.699569099005288, 30.015566238162425 ], [ -95.699639099222182, 30.015730237608331 ], [ -95.699721099613853, 30.015763238082403 ], [ -95.699815098907735, 30.015785238243396 ], [ -95.700037099174111, 30.015780237433493 ], [ -95.700277099203447, 30.015736237440599 ], [ -95.700327099621333, 30.015697237575175 ], [ -95.700359099046025, 30.015653237875487 ], [ -95.700365099293592, 30.015483238181115 ], [ -95.700327099582736, 30.015071238039287 ], [ -95.700340099541762, 30.014884238026571 ], [ -95.700409099214752, 30.014801237722168 ], [ -95.700485099371036, 30.014746237533917 ], [ -95.700977099642486, 30.014526237487278 ], [ -95.701243099100722, 30.014471237205576 ], [ -95.701483099168058, 30.014444237652164 ], [ -95.701704099417199, 30.014444237531311 ], [ -95.701906099687875, 30.014433237342107 ], [ -95.702013100197092, 30.014449237538134 ], [ -95.702089100003619, 30.014537237599551 ], [ -95.702203099344715, 30.01459823747043 ], [ -95.702285099533327, 30.014691237532482 ], [ -95.702272100279771, 30.014746237335295 ], [ -95.70217109997543, 30.014856237941977 ], [ -95.702102099942181, 30.015021237292004 ], [ -95.70204510023531, 30.015175237987233 ], [ -95.702032099632305, 30.015329237521634 ], [ -95.70207709944836, 30.015527237949854 ], [ -95.702127100208472, 30.015626237680877 ], [ -95.702140099960616, 30.015736237846216 ], [ -95.702197099627071, 30.015884238202908 ], [ -95.702260099838682, 30.015933238036698 ], [ -95.702374100071992, 30.015977237909237 ], [ -95.702513099611664, 30.016010237681453 ], [ -95.702664099929422, 30.01606023742222 ], [ -95.702759100368439, 30.016104238152909 ], [ -95.702841099591097, 30.016175238017528 ], [ -95.702910100145999, 30.016263238119723 ], [ -95.702974100238805, 30.016379237878592 ], [ -95.703018100364858, 30.016500237709522 ], [ -95.703068100562945, 30.016582238113205 ], [ -95.703119100288149, 30.016620238277337 ], [ -95.703195099809747, 30.016604237918095 ], [ -95.703283100599393, 30.016566238047787 ], [ -95.703460099743566, 30.016577238104865 ], [ -95.703555100718972, 30.016593237692486 ], [ -95.703675100041877, 30.016631237477601 ], [ -95.703751100523675, 30.016598237937675 ], [ -95.703770100073584, 30.0165712378077 ], [ -95.703782100466569, 30.016527237638893 ], [ -95.703782100113131, 30.01642323798195 ], [ -95.703801100386656, 30.016241237920902 ], [ -95.703833100759979, 30.0161752377218 ], [ -95.703959100009158, 30.01606523732903 ], [ -95.704092100716849, 30.016021238119254 ], [ -95.704167100163318, 30.016021237766296 ], [ -95.704294100419162, 30.016054237343369 ], [ -95.704337100403819, 30.016092237557196 ], [ -95.704344100649678, 30.016109237592165 ], [ -95.704395100574857, 30.0161862377083 ], [ -95.7044331004019, 30.016274237369526 ], [ -95.704458100080217, 30.016373237487709 ], [ -95.704553100287058, 30.016505237641166 ], [ -95.704925100113627, 30.016659238129563 ], [ -95.706562101527041, 30.017884237834991 ], [ -95.706707101390393, 30.018055237608131 ], [ -95.706865101154975, 30.018329237674873 ], [ -95.706953101580794, 30.01842823807581 ], [ -95.707023101553901, 30.018478238319016 ], [ -95.707149100729069, 30.01851623844469 ], [ -95.707238101654141, 30.018555237808798 ], [ -95.707433101425352, 30.018604238157216 ], [ -95.707566101050901, 30.018648237879574 ], [ -95.707642100849924, 30.018659238242247 ], [ -95.707787101782344, 30.018643238442355 ], [ -95.707857101585915, 30.018621238322385 ], [ -95.707958101421909, 30.018516238082398 ], [ -95.708002101313241, 30.018428238000013 ], [ -95.708115101692044, 30.017835237824251 ], [ -95.708235101685261, 30.017659238174172 ], [ -95.708292101091558, 30.017631237985778 ], [ -95.708551101751837, 30.017686237948315 ], [ -95.708646101390499, 30.01768623768168 ], [ -95.708785101380457, 30.017664237921593 ], [ -95.708861101749505, 30.017669237709768 ], [ -95.709019101335812, 30.017741237940598 ], [ -95.709259101995769, 30.017873237547825 ], [ -95.70936610182099, 30.017922237594004 ], [ -95.709663102340429, 30.017961237614461 ], [ -95.709751102008099, 30.017988238033361 ], [ -95.709834101964319, 30.018065237993845 ], [ -95.709928102273352, 30.018137238398204 ], [ -95.71027610193164, 30.018263238293763 ], [ -95.71055410204724, 30.018384238298047 ], [ -95.710661101704289, 30.018417238404801 ], [ -95.710794102285689, 30.018444237884072 ], [ -95.710964102290632, 30.018505238182112 ], [ -95.711129102153251, 30.018593238207853 ], [ -95.711293102580044, 30.018735238035269 ], [ -95.711400102368984, 30.018801237954374 ], [ -95.711501102745345, 30.018812237959736 ], [ -95.711975102666287, 30.018801238135758 ], [ -95.712531102331482, 30.018691238283992 ], [ -95.712986102258412, 30.018565238334659 ], [ -95.713169102526493, 30.018532237590531 ], [ -95.713282102529462, 30.018532237569463 ], [ -95.713390102888908, 30.01856523829613 ], [ -95.713516103099266, 30.018570238331129 ], [ -95.713617103318214, 30.018554238055611 ], [ -95.713737103233328, 30.018515237988378 ], [ -95.713946102884506, 30.018482237662042 ], [ -95.714078102784669, 30.018471237950305 ], [ -95.714261102896941, 30.018493237593248 ], [ -95.714445103155768, 30.018542237562677 ], [ -95.714615103143231, 30.018619237447762 ], [ -95.714773102945756, 30.018713237637577 ], [ -95.714950102984304, 30.018834237887351 ], [ -95.715064103432084, 30.018900238128936 ], [ -95.716624103367153, 30.019487238144499 ], [ -95.716832103663762, 30.019520237601576 ], [ -95.716940103821543, 30.019564237932794 ], [ -95.717079104175269, 30.019696237905016 ], [ -95.717129103976532, 30.019784237973663 ], [ -95.717167104043156, 30.019877238053766 ], [ -95.717155103504609, 30.020015237674905 ], [ -95.716915103934937, 30.020713237994293 ], [ -95.716896104185409, 30.020845238110347 ], [ -95.716915103569576, 30.020982237980366 ], [ -95.716966104350576, 30.021037238705464 ], [ -95.71700410366914, 30.021059238158735 ], [ -95.717060104381773, 30.021070238116625 ], [ -95.717300103501856, 30.02115323799428 ], [ -95.717439104062819, 30.021186238245608 ], [ -95.717926104292346, 30.02120723823035 ], [ -95.718084103851936, 30.021202238673318 ], [ -95.718260104177503, 30.021191238285251 ], [ -95.719082104858373, 30.020927238051012 ], [ -95.719252104869625, 30.020916237865151 ], [ -95.719517104744057, 30.020932237999912 ], [ -95.719619104621188, 30.02095423798411 ], [ -95.71970710463539, 30.020987237947754 ], [ -95.719903104778069, 30.021097237834265 ], [ -95.720054104307494, 30.021251238255644 ], [ -95.720137105153725, 30.021377237878909 ], [ -95.720250104525235, 30.021592238001741 ], [ -95.720295104892799, 30.02177923837888 ], [ -95.720339104965504, 30.021850238055404 ], [ -95.720503104983095, 30.021960238335215 ], [ -95.720560104389932, 30.022020238640085 ], [ -95.720693104884461, 30.022097238029364 ], [ -95.720775104435091, 30.022103238393989 ], [ -95.720844105010698, 30.022092238547813 ], [ -95.720920104937264, 30.02207023821137 ], [ -95.721008104780253, 30.022015237972045 ], [ -95.721040105451067, 30.021916238258719 ], [ -95.721046105418296, 30.021791238038983 ], [ -95.721040104986784, 30.021773238134386 ], [ -95.721021105102977, 30.021663238525768 ], [ -95.721015104956948, 30.021520238173796 ], [ -95.721053105091826, 30.021300238119487 ], [ -95.721160105095166, 30.021218238066581 ], [ -95.721324104527696, 30.021179238235291 ], [ -95.721450104950648, 30.021185237945591 ], [ -95.721722104882076, 30.021250238472323 ], [ -95.721842104746912, 30.021300238615062 ], [ -95.722063105106557, 30.021366237746548 ], [ -95.722183105400561, 30.021382238206474 ], [ -95.722272105359806, 30.021382237988849 ], [ -95.722309105079418, 30.02135523859112 ], [ -95.722714105138564, 30.020926237968244 ], [ -95.722935104928425, 30.020799238287601 ], [ -95.72302310522636, 30.020788237771029 ], [ -95.723093105506663, 30.020794238302347 ], [ -95.723187105410716, 30.020821238007159 ], [ -95.72359210537617, 30.021025237623142 ], [ -95.723693105540391, 30.02106323779395 ], [ -95.72378710570635, 30.021113238451669 ], [ -95.723844106040985, 30.021162238475767 ], [ -95.723895105401724, 30.021239237835275 ], [ -95.723933106119318, 30.021349238195562 ], [ -95.724059105607068, 30.021580238433298 ], [ -95.724160105243655, 30.021668238176584 ], [ -95.724445105557308, 30.021821237942959 ], [ -95.72461210565875, 30.021890238431268 ], [ -95.724697105408509, 30.021926238573201 ], [ -95.724776105943604, 30.021951237932736 ], [ -95.724789106074397, 30.021955237974513 ], [ -95.724807106079794, 30.02196123801718 ], [ -95.724892106299919, 30.021988238215226 ], [ -95.724930105865894, 30.022001238255218 ], [ -95.724982105817062, 30.022006238550237 ], [ -95.724994106435048, 30.021783238401635 ], [ -95.725007105553914, 30.021427238021193 ], [ -95.725022105947843, 30.021161237751482 ], [ -95.725030105827244, 30.020893238333404 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1142, "Tract": "48201412901", "Area_SqMi": 0.32723264950087116, "total_2009": 1837, "total_2010": 2042, "total_2011": 1806, "total_2012": 1642, "total_2013": 1608, "total_2014": 1568, "total_2015": 1574, "total_2016": 1600, "total_2017": 1426, "total_2018": 1896, "total_2019": 1399, "total_2020": 822, "age1": 223, "age2": 305, "age3": 175, "earn1": 195, "earn2": 305, "earn3": 203, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 6, "naics_s06": 4, "naics_s07": 348, "naics_s08": 7, "naics_s09": 107, "naics_s10": 9, "naics_s11": 14, "naics_s12": 18, "naics_s13": 0, "naics_s14": 0, "naics_s15": 5, "naics_s16": 36, "naics_s17": 1, "naics_s18": 119, "naics_s19": 26, "naics_s20": 0, "race1": 485, "race2": 161, "race3": 3, "race4": 38, "race5": 2, "race6": 14, "ethnicity1": 485, "ethnicity2": 218, "edu1": 103, "edu2": 130, "edu3": 157, "edu4": 90, "Shape_Length": 12989.806409134722, "Shape_Area": 9122686.2038073018, "total_2021": 750, "total_2022": 703 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.459107022990523, 29.690088179731632 ], [ -95.459103023506628, 29.689937179492162 ], [ -95.459086023210332, 29.689365179337738 ], [ -95.459082022834522, 29.689241179490335 ], [ -95.459076023107585, 29.689021179136219 ], [ -95.459065023194213, 29.688824179080715 ], [ -95.459101022375833, 29.686626178932855 ], [ -95.459051022546234, 29.685087178492722 ], [ -95.459052022873919, 29.68477817893654 ], [ -95.459056022719224, 29.683646178153229 ], [ -95.459068022871875, 29.682901178423837 ], [ -95.459063022676943, 29.682010177946744 ], [ -95.459060022440156, 29.681509177618977 ], [ -95.459059022893584, 29.681402178221074 ], [ -95.458953022673256, 29.681385177742108 ], [ -95.458848022094998, 29.681368177439566 ], [ -95.458521022266638, 29.681313177610612 ], [ -95.458331022291048, 29.681282177706219 ], [ -95.458172022055635, 29.681256177812724 ], [ -95.457797022734681, 29.681194178138846 ], [ -95.457100022197309, 29.681137178282981 ], [ -95.456363022057829, 29.681179178370162 ], [ -95.45568902156765, 29.681336178088298 ], [ -95.455087022151446, 29.681568177732171 ], [ -95.454190021272211, 29.682072178089093 ], [ -95.453172021314373, 29.682671178300847 ], [ -95.452270020823434, 29.683299178235227 ], [ -95.451023020747797, 29.68417517875384 ], [ -95.450574020326172, 29.684593178708948 ], [ -95.45036902026321, 29.684898179083245 ], [ -95.449373020750343, 29.686378179358663 ], [ -95.448918020699864, 29.686789178979563 ], [ -95.448053019960469, 29.687198179302502 ], [ -95.447654019950349, 29.687280179903105 ], [ -95.447020019584428, 29.687317179755976 ], [ -95.447022019682123, 29.68742117932414 ], [ -95.447061020382435, 29.68996217984596 ], [ -95.44723101952421, 29.689968179863786 ], [ -95.447276019949939, 29.689969179759583 ], [ -95.447387019706468, 29.689965179677127 ], [ -95.448027019849903, 29.689942180105788 ], [ -95.449086020562106, 29.689884179566825 ], [ -95.451045020786665, 29.689311180016269 ], [ -95.451070020738157, 29.689879179874072 ], [ -95.451074020491887, 29.690032180078951 ], [ -95.451077020502638, 29.690158180364801 ], [ -95.451546021043271, 29.690155179680794 ], [ -95.458556023238813, 29.690106179757468 ], [ -95.458888023429921, 29.690095180006761 ], [ -95.459107022990523, 29.690088179731632 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1143, "Tract": "48201543202", "Area_SqMi": 13.684916725433224, "total_2009": 8456, "total_2010": 11198, "total_2011": 10206, "total_2012": 11016, "total_2013": 12963, "total_2014": 15225, "total_2015": 16738, "total_2016": 14391, "total_2017": 13784, "total_2018": 14120, "total_2019": 14703, "total_2020": 12951, "age1": 1797, "age2": 8232, "age3": 2895, "earn1": 800, "earn2": 1540, "earn3": 10584, "naics_s01": 0, "naics_s02": 1945, "naics_s03": 94, "naics_s04": 134, "naics_s05": 717, "naics_s06": 2422, "naics_s07": 1094, "naics_s08": 212, "naics_s09": 1, "naics_s10": 732, "naics_s11": 131, "naics_s12": 2401, "naics_s13": 348, "naics_s14": 2185, "naics_s15": 33, "naics_s16": 66, "naics_s17": 0, "naics_s18": 313, "naics_s19": 96, "naics_s20": 0, "race1": 9105, "race2": 1755, "race3": 100, "race4": 1737, "race5": 17, "race6": 210, "ethnicity1": 10302, "ethnicity2": 2622, "edu1": 1494, "edu2": 2264, "edu3": 3129, "edu4": 4240, "Shape_Length": 78826.038652551229, "Shape_Area": 381512056.33602011, "total_2021": 11768, "total_2022": 12924 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.64565007686366, 29.830644202171026 ], [ -95.645650076966632, 29.830607201627419 ], [ -95.645551076653902, 29.824625200620382 ], [ -95.645505076180243, 29.81945719985503 ], [ -95.64550907590484, 29.817653199435476 ], [ -95.645532076114549, 29.816015199117057 ], [ -95.645540076276191, 29.814829198420181 ], [ -95.645530076282625, 29.814559198743563 ], [ -95.64546207636667, 29.813290198387342 ], [ -95.645304076256878, 29.811988197934003 ], [ -95.645225075731091, 29.811209197987825 ], [ -95.645197075968781, 29.810642198047724 ], [ -95.645102075206054, 29.804494196729017 ], [ -95.645041075261929, 29.800152195585788 ], [ -95.645067074882434, 29.797849195042289 ], [ -95.645025075087986, 29.796280195368805 ], [ -95.644936074845347, 29.792963194170213 ], [ -95.644912075424315, 29.792085194629919 ], [ -95.644881075328954, 29.790938194288387 ], [ -95.644877075051937, 29.790770194298769 ], [ -95.64486607503143, 29.790247193520756 ], [ -95.644879074881246, 29.7890971933933 ], [ -95.644863074756998, 29.788655193415387 ], [ -95.644854074441483, 29.788317193293533 ], [ -95.644868074930173, 29.787965193752207 ], [ -95.644824074585756, 29.786981193172718 ], [ -95.644820074886539, 29.78680019290282 ], [ -95.644820074984196, 29.786573193538732 ], [ -95.644797074314141, 29.785510193108941 ], [ -95.644795074531302, 29.785405192721317 ], [ -95.644792074562247, 29.785268192805333 ], [ -95.644791074823615, 29.785238192542895 ], [ -95.644798074932936, 29.78504019272922 ], [ -95.6445660748455, 29.785045192729473 ], [ -95.644348075049606, 29.785052192782924 ], [ -95.643810074927913, 29.785032193135606 ], [ -95.643027074180452, 29.785058193003238 ], [ -95.642225074436965, 29.785058193221932 ], [ -95.641826074238679, 29.785067193142925 ], [ -95.641405074046958, 29.785062192812521 ], [ -95.641211074047945, 29.785061192807841 ], [ -95.638875072793937, 29.785187193168888 ], [ -95.636190072677891, 29.785175193204545 ], [ -95.63573207210959, 29.785165192908174 ], [ -95.633738072285354, 29.785156193447236 ], [ -95.632198071181833, 29.785135193273227 ], [ -95.630494071291949, 29.785135193739357 ], [ -95.628970070885941, 29.785075193598679 ], [ -95.627590069883695, 29.785022193076923 ], [ -95.625090069191756, 29.785052193338629 ], [ -95.624319069859965, 29.785060193427856 ], [ -95.623841069276779, 29.78506119393785 ], [ -95.623775069700457, 29.785066193577638 ], [ -95.623704069203029, 29.785066193165466 ], [ -95.620445068277888, 29.78506019367742 ], [ -95.617940067713732, 29.785045193509131 ], [ -95.61774206752284, 29.785045194076769 ], [ -95.617521067577499, 29.785038193720382 ], [ -95.61706706717834, 29.785036193311651 ], [ -95.616482067665288, 29.785037193726858 ], [ -95.612167066446418, 29.784985193564825 ], [ -95.61064306642848, 29.784955194045111 ], [ -95.610276065493494, 29.784970194052001 ], [ -95.609981065702769, 29.784977193806821 ], [ -95.608302065158909, 29.784959193580352 ], [ -95.607730065198268, 29.78495319440756 ], [ -95.606745064814334, 29.784971193809113 ], [ -95.606510065444979, 29.784962194369147 ], [ -95.606268065403682, 29.784970193839928 ], [ -95.604572064342378, 29.784992193783904 ], [ -95.597923063245688, 29.784932193961321 ], [ -95.596084062057102, 29.784947194798459 ], [ -95.592302060870423, 29.784932194099699 ], [ -95.591176061074648, 29.784910194997476 ], [ -95.590530060736569, 29.784932194346357 ], [ -95.590295061308112, 29.784925194606984 ], [ -95.590080060545191, 29.784940194358661 ], [ -95.586659060005672, 29.784921194353021 ], [ -95.583150058624454, 29.784924194459894 ], [ -95.582588059358557, 29.78492419454669 ], [ -95.58101305842699, 29.784896195131775 ], [ -95.58101605845637, 29.785212194541124 ], [ -95.58101705887313, 29.785318194710914 ], [ -95.581081058560144, 29.792805196894381 ], [ -95.581114059398345, 29.796595197114382 ], [ -95.581133059420566, 29.798757197855945 ], [ -95.581768059583766, 29.798777197696584 ], [ -95.580262058616768, 29.801208198065115 ], [ -95.579761058536718, 29.802041198205941 ], [ -95.579108058385373, 29.80309319850176 ], [ -95.577965058091038, 29.804917199104661 ], [ -95.577380058088153, 29.805860199545624 ], [ -95.577132058078433, 29.806329199294019 ], [ -95.576968058216949, 29.80666019932238 ], [ -95.576636057891491, 29.807491199863048 ], [ -95.576547058107934, 29.80774120018193 ], [ -95.576373057937388, 29.808387199978487 ], [ -95.576242058752484, 29.809021199930207 ], [ -95.576191057780832, 29.809347200362701 ], [ -95.576143057897283, 29.809761200209511 ], [ -95.576115058597253, 29.810239200055999 ], [ -95.57611105790248, 29.810548200535766 ], [ -95.576093058147435, 29.811083200635537 ], [ -95.576089057941957, 29.811710200578815 ], [ -95.576072058444083, 29.812558200690457 ], [ -95.576064058376033, 29.813080201103826 ], [ -95.576025058105941, 29.815651201629265 ], [ -95.575995058338648, 29.818432202314803 ], [ -95.575891058896175, 29.830697204853085 ], [ -95.575862059197249, 29.831798204830832 ], [ -95.576295059488444, 29.831792204294501 ], [ -95.576826059453438, 29.831785204719637 ], [ -95.579031059730141, 29.831755204605695 ], [ -95.581235060998409, 29.831724204105424 ], [ -95.586386061613041, 29.831653204315248 ], [ -95.594123064329381, 29.831561204360774 ], [ -95.594540064112891, 29.831556204403789 ], [ -95.596761064185188, 29.83152320365355 ], [ -95.597334064669582, 29.83165520377803 ], [ -95.601073066099048, 29.832626204261434 ], [ -95.604846066244818, 29.83374120428892 ], [ -95.606751067140095, 29.83429920392858 ], [ -95.608128067360028, 29.834714204477578 ], [ -95.609109068300469, 29.835051203784843 ], [ -95.611663068066306, 29.835823203928012 ], [ -95.612685068871428, 29.835979204092713 ], [ -95.61321906909113, 29.836014204580589 ], [ -95.613571069529002, 29.836004204488709 ], [ -95.613656069499271, 29.836057204643982 ], [ -95.616139069263127, 29.836012204573706 ], [ -95.617282070271926, 29.836003203857153 ], [ -95.618296070219984, 29.835983204339843 ], [ -95.618806070436008, 29.835966203767164 ], [ -95.622645070915695, 29.835957203675736 ], [ -95.625616072178573, 29.835985203463267 ], [ -95.627736073053768, 29.835976204023435 ], [ -95.628011072291869, 29.835977203513259 ], [ -95.630131072867499, 29.835957203409517 ], [ -95.632403073791778, 29.835989203967227 ], [ -95.633094073825831, 29.835979203443898 ], [ -95.637676075483071, 29.836001203346527 ], [ -95.639641075348706, 29.836020203653266 ], [ -95.639934076304414, 29.836023202982027 ], [ -95.640043075835422, 29.836018203362517 ], [ -95.64017907570755, 29.836013203182173 ], [ -95.640224076251528, 29.836015203411051 ], [ -95.640492075732666, 29.836011202899698 ], [ -95.640814075628853, 29.836012203674958 ], [ -95.64097807583984, 29.836013203137391 ], [ -95.64140807600225, 29.836014203481554 ], [ -95.642721076804278, 29.836019203552514 ], [ -95.64352107662144, 29.836009202833623 ], [ -95.643893077166908, 29.836002203411905 ], [ -95.644247077174185, 29.836002203349196 ], [ -95.644789077170373, 29.836002202783764 ], [ -95.64507707751649, 29.836000203548508 ], [ -95.64526407665474, 29.836001202707521 ], [ -95.645401077132462, 29.835996203316558 ], [ -95.645633077197544, 29.835996202967412 ], [ -95.645635076782085, 29.835540203051437 ], [ -95.645635077387325, 29.835365203031593 ], [ -95.645636077008092, 29.835190202718856 ], [ -95.645637076889386, 29.834745202741054 ], [ -95.645640077523694, 29.83390120253932 ], [ -95.645641077646545, 29.833663202729618 ], [ -95.645641077542635, 29.833424202190493 ], [ -95.645649077169693, 29.832898202289307 ], [ -95.645649076713241, 29.831835202075133 ], [ -95.645650076985206, 29.831238201957472 ], [ -95.64565007686366, 29.830644202171026 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1144, "Tract": "48201554408", "Area_SqMi": 3.0077172871244362, "total_2009": 329, "total_2010": 336, "total_2011": 333, "total_2012": 483, "total_2013": 559, "total_2014": 557, "total_2015": 656, "total_2016": 796, "total_2017": 687, "total_2018": 712, "total_2019": 750, "total_2020": 721, "age1": 238, "age2": 516, "age3": 154, "earn1": 171, "earn2": 238, "earn3": 499, "naics_s01": 2, "naics_s02": 1, "naics_s03": 7, "naics_s04": 241, "naics_s05": 25, "naics_s06": 18, "naics_s07": 35, "naics_s08": 28, "naics_s09": 0, "naics_s10": 26, "naics_s11": 42, "naics_s12": 176, "naics_s13": 0, "naics_s14": 6, "naics_s15": 65, "naics_s16": 70, "naics_s17": 31, "naics_s18": 30, "naics_s19": 105, "naics_s20": 0, "race1": 735, "race2": 94, "race3": 8, "race4": 60, "race5": 1, "race6": 10, "ethnicity1": 685, "ethnicity2": 223, "edu1": 107, "edu2": 167, "edu3": 206, "edu4": 190, "Shape_Length": 51337.556717178872, "Shape_Area": 83850010.205444902, "total_2021": 821, "total_2022": 908 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.698189097501739, 29.997480234303463 ], [ -95.698500098049621, 29.997209234372647 ], [ -95.698156098143571, 29.997207233773818 ], [ -95.697591097791033, 29.99719523415142 ], [ -95.697410097287118, 29.997177234490088 ], [ -95.697240097453644, 29.997151234338858 ], [ -95.69699009805953, 29.997114234362979 ], [ -95.696050097420184, 29.996957234420595 ], [ -95.695621097689596, 29.996894234212956 ], [ -95.695477096886307, 29.996869234195103 ], [ -95.695340097664939, 29.996836233917222 ], [ -95.694028096572865, 29.996616234255328 ], [ -95.693560096828037, 29.996543234148611 ], [ -95.693401096208248, 29.996528234465327 ], [ -95.693324096361067, 29.996510234309639 ], [ -95.693238096175264, 29.99649023456594 ], [ -95.693182096383481, 29.996480234136943 ], [ -95.690164095830269, 29.995980234002051 ], [ -95.689889095768777, 29.995934233695188 ], [ -95.68758509526856, 29.995550234563272 ], [ -95.686769095114798, 29.995414233930852 ], [ -95.686014094397095, 29.995285234175721 ], [ -95.685402094250193, 29.995181233696318 ], [ -95.685240095005682, 29.995161234205096 ], [ -95.685076094327385, 29.995125233858797 ], [ -95.684628093962999, 29.995048233743866 ], [ -95.684430093839396, 29.995015234562008 ], [ -95.684111094473494, 29.9949692345801 ], [ -95.684027094562637, 29.994960234012609 ], [ -95.683799094639497, 29.994943234267769 ], [ -95.683334094309046, 29.994934234309444 ], [ -95.682381093731422, 29.99493323460073 ], [ -95.681170093386697, 29.99493223455028 ], [ -95.681012093119136, 29.994939234001276 ], [ -95.680822093002206, 29.994938234038081 ], [ -95.678254092668453, 29.994927234254202 ], [ -95.678202092279292, 29.994927234383407 ], [ -95.678114092771636, 29.994926234096926 ], [ -95.677709092727184, 29.99492423461842 ], [ -95.677255092936193, 29.994922234803305 ], [ -95.675947091808993, 29.994926234863605 ], [ -95.675353092411328, 29.994926234196402 ], [ -95.675147091863195, 29.994924234500861 ], [ -95.674655092138011, 29.994918234729976 ], [ -95.673933091549699, 29.994945234912965 ], [ -95.673835091916672, 29.994949234214012 ], [ -95.673776091734098, 29.994709234589926 ], [ -95.67367009136963, 29.994423234220754 ], [ -95.67318409120216, 29.993483234537102 ], [ -95.672632091648879, 29.992431234357472 ], [ -95.672540091621286, 29.992200234110051 ], [ -95.672233091502221, 29.991646233444406 ], [ -95.671311090839708, 29.989870233197742 ], [ -95.671103090674123, 29.989468233096531 ], [ -95.671048090843826, 29.989374233150691 ], [ -95.670906090199736, 29.989092233700106 ], [ -95.670851090389007, 29.98899523363508 ], [ -95.670547090845318, 29.988401233569437 ], [ -95.67033209023981, 29.987977233339635 ], [ -95.670074090675769, 29.98748523296517 ], [ -95.670043090810111, 29.987451233131239 ], [ -95.67000209028356, 29.987415233524242 ], [ -95.66987609069254, 29.987348232757078 ], [ -95.670656090020785, 29.987351233212479 ], [ -95.670738090327077, 29.987345233302417 ], [ -95.671264090635887, 29.987352232713775 ], [ -95.671435090547988, 29.987349233235754 ], [ -95.671853090707117, 29.987350233354935 ], [ -95.673231091168844, 29.987343233194434 ], [ -95.674108091082317, 29.987344232601842 ], [ -95.675857092045646, 29.987338233080116 ], [ -95.675964092297107, 29.987333233204453 ], [ -95.676065092193781, 29.987321232726686 ], [ -95.676160092204242, 29.987301232569944 ], [ -95.676328092127378, 29.987244232685658 ], [ -95.676404091914122, 29.987202233187134 ], [ -95.676520092353442, 29.987114233154465 ], [ -95.676535091885015, 29.987103232416196 ], [ -95.676700092267751, 29.986956233220155 ], [ -95.676256092204298, 29.986456233023421 ], [ -95.676083092007858, 29.986283232381563 ], [ -95.675915092108156, 29.986169232824007 ], [ -95.675666092148063, 29.985900232765569 ], [ -95.675360092011701, 29.985600232611041 ], [ -95.675179091357478, 29.985442232184965 ], [ -95.67494809122698, 29.985259232694727 ], [ -95.674817091223986, 29.985164232597867 ], [ -95.674315091810911, 29.984793232348945 ], [ -95.674107091100524, 29.984625232302616 ], [ -95.673856091621488, 29.98439423251622 ], [ -95.673711090887679, 29.984252232591807 ], [ -95.673469091034789, 29.983983232614946 ], [ -95.67329509142597, 29.983771231869927 ], [ -95.673170090458854, 29.983596231856534 ], [ -95.673046090654537, 29.983411232066448 ], [ -95.672908091361109, 29.9831862325222 ], [ -95.672754091148661, 29.982898232149545 ], [ -95.672640090274683, 29.982647231826352 ], [ -95.672559091158945, 29.98244123165329 ], [ -95.67245109060238, 29.982121232122918 ], [ -95.672380090451355, 29.981857231776033 ], [ -95.67234509069074, 29.9816832314579 ], [ -95.672309090220082, 29.981491231449901 ], [ -95.672269090813103, 29.981141232142587 ], [ -95.672257090185866, 29.980905231612962 ], [ -95.672252090450058, 29.980671231260999 ], [ -95.672209090477281, 29.980149231840603 ], [ -95.672176090837439, 29.979907231597291 ], [ -95.672123090098239, 29.979656231121531 ], [ -95.672056090640694, 29.979389231045509 ], [ -95.672032090023208, 29.979309231280837 ], [ -95.671974090137709, 29.979132231100625 ], [ -95.671866090187535, 29.978852230972798 ], [ -95.671655090087555, 29.978397231560955 ], [ -95.671607090173325, 29.978305231556856 ], [ -95.671263090388635, 29.978444231302241 ], [ -95.670457089601143, 29.978758230920633 ], [ -95.670354089989743, 29.978805231022832 ], [ -95.669837089861687, 29.979002231815393 ], [ -95.669614090203652, 29.979088231741326 ], [ -95.669390090255149, 29.979182231843456 ], [ -95.66930908975975, 29.979209231413094 ], [ -95.668510090063322, 29.979519231603334 ], [ -95.668343089144074, 29.979578231116179 ], [ -95.667667089802293, 29.979853231279062 ], [ -95.66694508885692, 29.980147231953364 ], [ -95.666809089667495, 29.980201231782882 ], [ -95.666413088789398, 29.980360232179361 ], [ -95.664988088539928, 29.980918232272323 ], [ -95.664926089027134, 29.980949231802704 ], [ -95.664840088203562, 29.98098223187089 ], [ -95.663789088835074, 29.981387232482184 ], [ -95.663321088016986, 29.981569232540593 ], [ -95.66318108854334, 29.981613232168147 ], [ -95.662606087883205, 29.981864232648054 ], [ -95.662210087598311, 29.982019232593256 ], [ -95.661262088337295, 29.982390232601276 ], [ -95.661199087844736, 29.982428232710589 ], [ -95.661096087751588, 29.982454232843772 ], [ -95.660621087908495, 29.982635232872827 ], [ -95.660493087519157, 29.98268923216914 ], [ -95.660384087690701, 29.98275023276571 ], [ -95.659359087225255, 29.983156233037693 ], [ -95.659262087396741, 29.983199232296869 ], [ -95.659015087307665, 29.983321232964176 ], [ -95.658824087663547, 29.983426232655358 ], [ -95.658715087075876, 29.983496232905296 ], [ -95.658506086806909, 29.983616233046959 ], [ -95.658180087563167, 29.983840232602855 ], [ -95.658091086677473, 29.983912232717199 ], [ -95.657901086894043, 29.984058232972668 ], [ -95.657805087531784, 29.984133232971018 ], [ -95.657422086713936, 29.984466233077534 ], [ -95.657055086911996, 29.984709233226624 ], [ -95.656561087090893, 29.985011233125977 ], [ -95.656164086619768, 29.985235232961283 ], [ -95.656037086229958, 29.985283233080491 ], [ -95.655941086597608, 29.985320233173432 ], [ -95.655837086423332, 29.985361233494388 ], [ -95.655459086724278, 29.985506233333687 ], [ -95.655100085982909, 29.9856322330639 ], [ -95.654779086698014, 29.98571023289043 ], [ -95.654501086170228, 29.98575223313432 ], [ -95.654454086131992, 29.986583233729565 ], [ -95.654417086523409, 29.986904233333522 ], [ -95.654373085957801, 29.987112233331423 ], [ -95.654114085961709, 29.987767234120639 ], [ -95.653792086388833, 29.988510234291994 ], [ -95.654125086257068, 29.988628234304752 ], [ -95.65489508673447, 29.988958233532308 ], [ -95.655034086725379, 29.989002233604321 ], [ -95.655103086635265, 29.989041233928084 ], [ -95.655141086251845, 29.989090233963843 ], [ -95.655148086167372, 29.98915123377185 ], [ -95.655103086483265, 29.989332233967673 ], [ -95.655078086671153, 29.989964234586431 ], [ -95.655141086239297, 29.99019523429461 ], [ -95.655242086389435, 29.990327234414742 ], [ -95.655368087155423, 29.990415233858492 ], [ -95.655577086543943, 29.99048123466606 ], [ -95.655722087283422, 29.990497234195917 ], [ -95.656297086746108, 29.990503233834584 ], [ -95.657111087400381, 29.990542233986751 ], [ -95.657427087036112, 29.99059723414512 ], [ -95.657604086846973, 29.990685234330002 ], [ -95.657774087870763, 29.990915234570899 ], [ -95.657768087333324, 29.991201234699055 ], [ -95.657831087229397, 29.991718234252989 ], [ -95.657824087533598, 29.992020234833877 ], [ -95.657471087539193, 29.992768234579732 ], [ -95.657420086913106, 29.993004234354718 ], [ -95.65745808746, 29.993153234375523 ], [ -95.657805087717591, 29.993367234344543 ], [ -95.658733088033031, 29.99372523520908 ], [ -95.659087087992532, 29.993923235142262 ], [ -95.659289087724503, 29.994071235005975 ], [ -95.659422088164703, 29.994142234631326 ], [ -95.659630087644103, 29.994434235185434 ], [ -95.659788087746236, 29.994610234957932 ], [ -95.65996508778224, 29.994786234952265 ], [ -95.660154087899826, 29.994956235193492 ], [ -95.660274088240101, 29.995011234576424 ], [ -95.660943088320565, 29.995044235123324 ], [ -95.661158087984873, 29.99502823469561 ], [ -95.661455088619661, 29.99496223477653 ], [ -95.661524088552667, 29.994962234941944 ], [ -95.661708088661968, 29.995110234869131 ], [ -95.661853089113094, 29.995352235161011 ], [ -95.661922088668021, 29.995555235336578 ], [ -95.66192908821813, 29.99572623513658 ], [ -95.661808088504586, 29.996111234708053 ], [ -95.661796088846557, 29.996270235177331 ], [ -95.661834088627515, 29.99658323534095 ], [ -95.661909088672559, 29.996825234916539 ], [ -95.662004088891308, 29.99719923569787 ], [ -95.662067088638381, 29.997386235370605 ], [ -95.662143088805109, 29.997518235579715 ], [ -95.662629089105906, 29.99810623555517 ], [ -95.662762089286645, 29.998304235745628 ], [ -95.66280008882336, 29.998452235508811 ], [ -95.662743089326085, 29.998804236062309 ], [ -95.66274308915014, 29.998881235477551 ], [ -95.662793088648243, 29.99906323564327 ], [ -95.66290708950369, 29.999222235431699 ], [ -95.662983089428423, 29.999294235678057 ], [ -95.663166089549264, 29.999392236077114 ], [ -95.663298089146622, 29.999425235365404 ], [ -95.663602088786533, 29.999414235809844 ], [ -95.663747089518509, 29.999393236070205 ], [ -95.664031089178238, 29.999382236104147 ], [ -95.664662089058467, 29.999420235724475 ], [ -95.664795089409083, 29.999437235758741 ], [ -95.664890089897995, 29.999420236122955 ], [ -95.664991089599951, 29.999382235474364 ], [ -95.665117089395025, 29.999272236038422 ], [ -95.665237089949386, 29.999206235718013 ], [ -95.665490090004837, 29.999156235524932 ], [ -95.665622090107846, 29.999167236070456 ], [ -95.665717089275319, 29.999195235975549 ], [ -95.665780089698174, 29.999228235794636 ], [ -95.665843089450661, 29.999294235674178 ], [ -95.665888090148641, 29.99937623557339 ], [ -95.665894089322535, 29.999442235772722 ], [ -95.665888089892775, 29.999519236024888 ], [ -95.665843089834453, 29.999684236028511 ], [ -95.665553089521381, 30.000003236255822 ], [ -95.665445089246916, 30.000201235518507 ], [ -95.665452090022256, 30.00030023631901 ], [ -95.665477090225153, 30.000388236241282 ], [ -95.665578089566509, 30.000497235568098 ], [ -95.665673089641501, 30.000574235623489 ], [ -95.665767089962344, 30.000767236384512 ], [ -95.6658620898707, 30.000860236328336 ], [ -95.666070090432683, 30.000921235677239 ], [ -95.666222090421002, 30.000948235596656 ], [ -95.666544089835739, 30.000937235568532 ], [ -95.666778090548675, 30.000976236357637 ], [ -95.666879089878094, 30.001020236284106 ], [ -95.666948089691104, 30.001119235598704 ], [ -95.666974090351729, 30.001278235798722 ], [ -95.66698609023328, 30.001779235906362 ], [ -95.666973090581891, 30.002026236070499 ], [ -95.666897090332199, 30.002482236597814 ], [ -95.666923090096958, 30.002515236470167 ], [ -95.666948089751159, 30.002554235901105 ], [ -95.667030090659949, 30.002636236346166 ], [ -95.667365090405525, 30.002872235897222 ], [ -95.668205090711183, 30.003510236094051 ], [ -95.671400092017464, 30.005836236525479 ], [ -95.673061091844559, 30.007111237125393 ], [ -95.676218093424509, 30.009415237540406 ], [ -95.676477092912535, 30.009662237549691 ], [ -95.676559093179591, 30.00976723696882 ], [ -95.676724092587833, 30.009943236984707 ], [ -95.67686909266645, 30.010300237854086 ], [ -95.676875093115029, 30.010399237937342 ], [ -95.676863093332074, 30.010591237384336 ], [ -95.676888093219532, 30.010657237330157 ], [ -95.676951093572086, 30.010723237712092 ], [ -95.677267093216926, 30.010883237353781 ], [ -95.678783093299288, 30.011757238024828 ], [ -95.679458094259047, 30.012086237974998 ], [ -95.67955309376832, 30.012109237535938 ], [ -95.679629094049488, 30.01210823778387 ], [ -95.679673093638073, 30.012092237775438 ], [ -95.679698094181731, 30.012058237591752 ], [ -95.679707093416823, 30.012041238064366 ], [ -95.680014094135061, 30.010993237891157 ], [ -95.680090093840306, 30.010894237407729 ], [ -95.68017209436492, 30.010828237917767 ], [ -95.680254093654, 30.010784237350652 ], [ -95.680355093778246, 30.010745237820409 ], [ -95.680456094076206, 30.010723237243393 ], [ -95.680709094102212, 30.010718237660686 ], [ -95.680943094689653, 30.010740237396661 ], [ -95.681044094651128, 30.010767237054431 ], [ -95.68119509380206, 30.010844237846417 ], [ -95.68127709421104, 30.010921237039064 ], [ -95.681341094137011, 30.010998237360653 ], [ -95.681783094587004, 30.011399237350115 ], [ -95.681871094114584, 30.01146023728602 ], [ -95.682016094188, 30.011493237160003 ], [ -95.682143094291817, 30.011493237445311 ], [ -95.682572094843394, 30.011405237423627 ], [ -95.68275509466126, 30.011383237404402 ], [ -95.682875094532221, 30.011388237408219 ], [ -95.683021094653114, 30.011416237446166 ], [ -95.683141094316127, 30.011477237813562 ], [ -95.683570094528349, 30.011966237791611 ], [ -95.683747095010531, 30.012213237510828 ], [ -95.683842095078987, 30.012312238102556 ], [ -95.684012094918415, 30.01238923798336 ], [ -95.685812095408295, 30.012307237547617 ], [ -95.686097095088826, 30.012268237571114 ], [ -95.686520095831909, 30.012235237274798 ], [ -95.687113095379431, 30.012230237269815 ], [ -95.687271095476589, 30.012252237964276 ], [ -95.687322095991902, 30.01227923725267 ], [ -95.687417096365635, 30.012345237258803 ], [ -95.687480096124574, 30.012411237870694 ], [ -95.687650096207918, 30.012543237222339 ], [ -95.68769409606459, 30.012603237718821 ], [ -95.687777096419396, 30.012669237613768 ], [ -95.690354097084153, 30.014225237792154 ], [ -95.690682096487237, 30.014412237657947 ], [ -95.690834097315701, 30.014478237529065 ], [ -95.691093097439961, 30.014549238090122 ], [ -95.691446096729365, 30.014670237678974 ], [ -95.693379097345726, 30.015159238330618 ], [ -95.697150099051001, 30.016011238318136 ], [ -95.697428098182044, 30.016044238116521 ], [ -95.697486098765452, 30.01564823745608 ], [ -95.697513098725878, 30.015523238176947 ], [ -95.697749098536647, 30.013994237691872 ], [ -95.697765098193358, 30.013861237849763 ], [ -95.697789098498376, 30.013725237031434 ], [ -95.697869098786654, 30.013204237265793 ], [ -95.697925098935713, 30.012790237633951 ], [ -95.697934098931341, 30.012641237307275 ], [ -95.697929098592326, 30.011762237036407 ], [ -95.697935098924773, 30.011642236676092 ], [ -95.697928099007939, 30.011519237196524 ], [ -95.697920098547726, 30.010128236655273 ], [ -95.697918098386111, 30.008788236293597 ], [ -95.697905098582268, 30.008030236712418 ], [ -95.697893098741503, 30.006087235657578 ], [ -95.697887098338128, 30.005819236213107 ], [ -95.697874098055635, 30.00407523577044 ], [ -95.697858098542198, 30.003149235246909 ], [ -95.697845097709333, 30.00294723543011 ], [ -95.697834098586299, 30.002846235486874 ], [ -95.697719098216709, 30.002043235162024 ], [ -95.697668098267698, 30.001541234991457 ], [ -95.697653097497565, 30.001218235220634 ], [ -95.697647098140905, 30.00090923460855 ], [ -95.697651098212035, 30.000805235091647 ], [ -95.697642098126607, 30.000594235093224 ], [ -95.697621097646476, 29.999030234173016 ], [ -95.697617097978025, 29.998581234330135 ], [ -95.69762309754654, 29.998479234239877 ], [ -95.697648098282556, 29.998322234002138 ], [ -95.697691097523204, 29.998174233961709 ], [ -95.697762097498583, 29.9980062346281 ], [ -95.697826098358632, 29.997889234467181 ], [ -95.69790509780367, 29.99777823382664 ], [ -95.698041097801095, 29.997621233794703 ], [ -95.698189097501739, 29.997480234303463 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1145, "Tract": "48201320902", "Area_SqMi": 0.49415548292951911, "total_2009": 138, "total_2010": 115, "total_2011": 121, "total_2012": 147, "total_2013": 162, "total_2014": 144, "total_2015": 165, "total_2016": 123, "total_2017": 150, "total_2018": 172, "total_2019": 165, "total_2020": 154, "age1": 34, "age2": 86, "age3": 39, "earn1": 28, "earn2": 64, "earn3": 67, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 59, "naics_s05": 2, "naics_s06": 0, "naics_s07": 48, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 6, "naics_s17": 0, "naics_s18": 31, "naics_s19": 0, "naics_s20": 0, "race1": 139, "race2": 13, "race3": 0, "race4": 6, "race5": 0, "race6": 1, "ethnicity1": 80, "ethnicity2": 79, "edu1": 38, "edu2": 21, "edu3": 39, "edu4": 27, "Shape_Length": 15803.485505985907, "Shape_Area": 13776209.108513353, "total_2021": 176, "total_2022": 159 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.23928796552687, 29.652532179259293 ], [ -95.239263964926351, 29.651716178915137 ], [ -95.23925896503053, 29.650924178591314 ], [ -95.23924896508403, 29.650219178524274 ], [ -95.239228964688678, 29.649430178641889 ], [ -95.23920696457489, 29.648643178812115 ], [ -95.239186965290415, 29.648014178527635 ], [ -95.239184964988993, 29.647840178029114 ], [ -95.239173964593604, 29.647401177899788 ], [ -95.239170964661326, 29.647051178340362 ], [ -95.239144964491373, 29.646246178107159 ], [ -95.238128964184028, 29.646257178517743 ], [ -95.238100964272732, 29.644891177493516 ], [ -95.238094964423937, 29.644424177595589 ], [ -95.237871963897504, 29.643878177339545 ], [ -95.237823964388781, 29.643791177383818 ], [ -95.236839964075187, 29.644240177890939 ], [ -95.236048964272186, 29.644587177599128 ], [ -95.235586963617166, 29.644754177469704 ], [ -95.235113963154731, 29.644898178120645 ], [ -95.234631963944906, 29.645016178192044 ], [ -95.234142963531497, 29.645110178259646 ], [ -95.233647963306353, 29.645179178213706 ], [ -95.23314996301697, 29.645221178010011 ], [ -95.23299896294894, 29.645224177820751 ], [ -95.230436962559523, 29.645248177807048 ], [ -95.229605962236718, 29.645247178235284 ], [ -95.226559961143124, 29.645290178513676 ], [ -95.225723961001577, 29.645306178378288 ], [ -95.225375961233425, 29.645353178294723 ], [ -95.225030961089033, 29.645430178366215 ], [ -95.224255961301765, 29.645695178804843 ], [ -95.223791960427377, 29.645864178321006 ], [ -95.223653960727063, 29.645919178675321 ], [ -95.223529960516771, 29.64596817897689 ], [ -95.223278961035462, 29.646086178539363 ], [ -95.2230359601635, 29.646220178566246 ], [ -95.222734960678864, 29.646410178780446 ], [ -95.222371960503381, 29.646662179131116 ], [ -95.222224960128656, 29.646763178967941 ], [ -95.221862960634709, 29.64714317898483 ], [ -95.221627960497273, 29.647373179297805 ], [ -95.22117696023254, 29.647792178787391 ], [ -95.221277959895332, 29.647900179395865 ], [ -95.222263960531222, 29.648944178815171 ], [ -95.223357960451679, 29.65010317939927 ], [ -95.224277961609843, 29.651078179381962 ], [ -95.224957961220923, 29.65179917970676 ], [ -95.225256960948215, 29.652114179709891 ], [ -95.225728962044442, 29.652605180275 ], [ -95.22578196145561, 29.652661179639605 ], [ -95.226104962069741, 29.652661179620051 ], [ -95.229081962041874, 29.652612180032541 ], [ -95.229680963096513, 29.652631179597286 ], [ -95.230124962676811, 29.652646180074225 ], [ -95.232026963683509, 29.652620179371482 ], [ -95.233458963299356, 29.652601179897019 ], [ -95.233701963617406, 29.652584179597248 ], [ -95.235400963784002, 29.652588179207278 ], [ -95.235601964578123, 29.652587179352139 ], [ -95.237228964371795, 29.652551179316788 ], [ -95.237441964878514, 29.652547179379049 ], [ -95.239031964762219, 29.652534179475381 ], [ -95.23928796552687, 29.652532179259293 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1146, "Tract": "48201342801", "Area_SqMi": 0.87913091288403666, "total_2009": 450, "total_2010": 372, "total_2011": 359, "total_2012": 198, "total_2013": 184, "total_2014": 89, "total_2015": 594, "total_2016": 814, "total_2017": 828, "total_2018": 1040, "total_2019": 1343, "total_2020": 414, "age1": 141, "age2": 194, "age3": 65, "earn1": 76, "earn2": 121, "earn3": 203, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 185, "naics_s05": 0, "naics_s06": 1, "naics_s07": 5, "naics_s08": 119, "naics_s09": 0, "naics_s10": 6, "naics_s11": 1, "naics_s12": 5, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 4, "naics_s17": 9, "naics_s18": 46, "naics_s19": 7, "naics_s20": 0, "race1": 341, "race2": 26, "race3": 10, "race4": 13, "race5": 2, "race6": 8, "ethnicity1": 147, "ethnicity2": 253, "edu1": 90, "edu2": 52, "edu3": 64, "edu4": 53, "Shape_Length": 20578.05155544174, "Shape_Area": 24508665.203611869, "total_2021": 471, "total_2022": 400 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.113364934116021, 29.689734191150347 ], [ -95.113363934367499, 29.688949190749724 ], [ -95.113327934046183, 29.688198190861172 ], [ -95.11333493398547, 29.687472190343769 ], [ -95.113293934024284, 29.686776190271434 ], [ -95.113258934254233, 29.686034190463097 ], [ -95.113261933753591, 29.685333190570553 ], [ -95.113240933793165, 29.68454819001531 ], [ -95.113179934020877, 29.68240218937764 ], [ -95.113168934061008, 29.681545189947986 ], [ -95.113124934053559, 29.679374189227818 ], [ -95.109967932943817, 29.679467188972762 ], [ -95.109404933152831, 29.679478188860532 ], [ -95.108788933031093, 29.679490188993775 ], [ -95.107991932675517, 29.679496189743777 ], [ -95.106784932465445, 29.679499189126204 ], [ -95.106568932390431, 29.679525189178243 ], [ -95.105112931391574, 29.679553189076646 ], [ -95.104305931493528, 29.679570189386595 ], [ -95.103348931665622, 29.679590189162127 ], [ -95.102224931301194, 29.679609189364459 ], [ -95.101894930757112, 29.67961418967662 ], [ -95.100655930324294, 29.679635189735301 ], [ -95.100547931136802, 29.679636189583199 ], [ -95.098500929986969, 29.679671189401351 ], [ -95.094567929344294, 29.67973618940152 ], [ -95.093178929177483, 29.679753189682842 ], [ -95.092586928964636, 29.679761190034547 ], [ -95.092594928653583, 29.67988918952156 ], [ -95.092657928813324, 29.68214919051605 ], [ -95.092645929205375, 29.682490190700452 ], [ -95.092699929367456, 29.684919191057315 ], [ -95.092792929525061, 29.689055191604496 ], [ -95.0928059286381, 29.690087192439815 ], [ -95.093875929619657, 29.690070191659398 ], [ -95.095410929842615, 29.690047191579993 ], [ -95.095437929603861, 29.690046191491213 ], [ -95.095873930050189, 29.690040192125014 ], [ -95.09715693064841, 29.690020192026115 ], [ -95.097662930015588, 29.690013192158602 ], [ -95.097888929901558, 29.69000919217379 ], [ -95.098032930821702, 29.690007192277928 ], [ -95.09861093086586, 29.689998192196164 ], [ -95.100429931182504, 29.689970191459373 ], [ -95.100737931598985, 29.689965191351181 ], [ -95.102100931840553, 29.689944191279601 ], [ -95.103630932395248, 29.689939191616769 ], [ -95.104595931857588, 29.689914191971763 ], [ -95.105560932360262, 29.689896191655524 ], [ -95.106559932641375, 29.689879191120475 ], [ -95.107117932806716, 29.689817191700001 ], [ -95.107478933049336, 29.689818191064752 ], [ -95.108432932962927, 29.689819191679728 ], [ -95.109378933208802, 29.689812191219094 ], [ -95.110443934037022, 29.689769190956579 ], [ -95.111151933649779, 29.689780191544401 ], [ -95.111276933906481, 29.689769191192106 ], [ -95.113364934116021, 29.689734191150347 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1147, "Tract": "48201222702", "Area_SqMi": 2.3255444645737469, "total_2009": 15935, "total_2010": 16670, "total_2011": 17537, "total_2012": 17541, "total_2013": 18345, "total_2014": 19588, "total_2015": 20758, "total_2016": 19141, "total_2017": 19948, "total_2018": 19924, "total_2019": 20563, "total_2020": 20837, "age1": 2960, "age2": 12695, "age3": 4809, "earn1": 1214, "earn2": 4891, "earn3": 14359, "naics_s01": 0, "naics_s02": 539, "naics_s03": 193, "naics_s04": 964, "naics_s05": 3743, "naics_s06": 969, "naics_s07": 86, "naics_s08": 1109, "naics_s09": 0, "naics_s10": 62, "naics_s11": 149, "naics_s12": 416, "naics_s13": 45, "naics_s14": 841, "naics_s15": 10674, "naics_s16": 11, "naics_s17": 114, "naics_s18": 334, "naics_s19": 214, "naics_s20": 1, "race1": 12890, "race2": 6027, "race3": 202, "race4": 1004, "race5": 55, "race6": 286, "ethnicity1": 13532, "ethnicity2": 6932, "edu1": 3466, "edu2": 4355, "edu3": 5241, "edu4": 4442, "Shape_Length": 54860.062499113577, "Shape_Area": 64832199.463186145, "total_2021": 19668, "total_2022": 20464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.381404014657306, 29.938701233575749 ], [ -95.38134801445382, 29.938479233390005 ], [ -95.381309014238667, 29.938321232774349 ], [ -95.380896014036409, 29.936669232841645 ], [ -95.380529013478039, 29.935203232485524 ], [ -95.38024501384885, 29.934014231901699 ], [ -95.379941013795573, 29.932740231964395 ], [ -95.379623013093095, 29.932793231855054 ], [ -95.378964012973356, 29.932899231785189 ], [ -95.378318013539527, 29.933006231880963 ], [ -95.377631012674414, 29.93312423193683 ], [ -95.377122012979854, 29.933204232612479 ], [ -95.376514013256426, 29.933298232090056 ], [ -95.376421012561778, 29.9333022321191 ], [ -95.37422301256079, 29.933388232391192 ], [ -95.372095011891801, 29.933449232209416 ], [ -95.369939011142279, 29.933165232094836 ], [ -95.363853009063661, 29.932288232457495 ], [ -95.361784009274388, 29.931993232473179 ], [ -95.358102008119843, 29.931464232417813 ], [ -95.357494007492534, 29.931378232656694 ], [ -95.357090008238302, 29.931365232444875 ], [ -95.356140007510547, 29.93136023263045 ], [ -95.35607600704715, 29.93136023274295 ], [ -95.355942006957491, 29.931362232691733 ], [ -95.355549007242516, 29.931371232723841 ], [ -95.354673006912506, 29.931388232942087 ], [ -95.35443000652819, 29.931393232941044 ], [ -95.353921006484967, 29.93140623271832 ], [ -95.352284006291057, 29.931403232464159 ], [ -95.352165006552312, 29.931394232548154 ], [ -95.351857006139156, 29.931366232431223 ], [ -95.351441006249146, 29.931265232554001 ], [ -95.35102600573137, 29.931092232767678 ], [ -95.350114006110999, 29.930724232949871 ], [ -95.349583006283098, 29.930552232620421 ], [ -95.349135005678974, 29.930465232175074 ], [ -95.348468005792981, 29.930389232947768 ], [ -95.347110004886872, 29.930366232452631 ], [ -95.345280004783234, 29.930335232478626 ], [ -95.343062003781782, 29.930362233048239 ], [ -95.343034004018477, 29.930364233136018 ], [ -95.342250003403819, 29.93037423250604 ], [ -95.339281002659732, 29.930201233001164 ], [ -95.338959002681307, 29.930182232971688 ], [ -95.338771003377815, 29.930171232591157 ], [ -95.337684002451311, 29.9301082325042 ], [ -95.335544002008973, 29.929978232821249 ], [ -95.334815002111924, 29.929892232630483 ], [ -95.333988002135357, 29.929922233015741 ], [ -95.333665002081105, 29.929948233171196 ], [ -95.332180001056287, 29.930135232954086 ], [ -95.331869001056376, 29.930153232689378 ], [ -95.331706001350852, 29.930162233575704 ], [ -95.331565000768876, 29.930170233348584 ], [ -95.331206001334124, 29.930161233587508 ], [ -95.330805000869532, 29.930168232866503 ], [ -95.325281999024014, 29.930266233714661 ], [ -95.322627999064537, 29.930321233211671 ], [ -95.321791998979975, 29.930327233370193 ], [ -95.321404998842297, 29.930336233762489 ], [ -95.320072998421949, 29.930335233357606 ], [ -95.319635998057549, 29.930354233697916 ], [ -95.31914599765085, 29.930376233694549 ], [ -95.318054997376592, 29.930392233890757 ], [ -95.317886997712847, 29.930394233523366 ], [ -95.317526997525874, 29.9303962332854 ], [ -95.317443997681366, 29.930397233605635 ], [ -95.317426997259986, 29.930397233846122 ], [ -95.317273997706309, 29.930397233322157 ], [ -95.316266997393924, 29.930402233327293 ], [ -95.315942997291629, 29.930409233558503 ], [ -95.315679997510586, 29.930415233816607 ], [ -95.315448997291043, 29.930419233476432 ], [ -95.315392997094193, 29.930421233642161 ], [ -95.31507499694132, 29.930428234012869 ], [ -95.314746996497007, 29.93043523346595 ], [ -95.314437997241583, 29.930439233589784 ], [ -95.31411499653295, 29.930443233940508 ], [ -95.313448996610163, 29.930452233768886 ], [ -95.313340996993531, 29.930453233630328 ], [ -95.312495995854519, 29.930473233659139 ], [ -95.310489995866234, 29.93048823420315 ], [ -95.310549995843871, 29.933880234251014 ], [ -95.31055099595639, 29.934090234859006 ], [ -95.31055599565434, 29.934672234493775 ], [ -95.310580995976977, 29.934870234387418 ], [ -95.310567995458968, 29.93506223523725 ], [ -95.310580995603914, 29.935249235252474 ], [ -95.310567995619905, 29.935403235277242 ], [ -95.31057299604683, 29.935663235109764 ], [ -95.310612995636191, 29.93767923534072 ], [ -95.31007599634232, 29.937658235140834 ], [ -95.309854996015034, 29.937674235622808 ], [ -95.309476996266298, 29.937636235870123 ], [ -95.309376995873635, 29.937636235024172 ], [ -95.30846599509448, 29.937641235423282 ], [ -95.308289995976395, 29.937669235680975 ], [ -95.307885995848409, 29.93767923503956 ], [ -95.307626994909882, 29.937652235917184 ], [ -95.307272995395522, 29.937652235616525 ], [ -95.306982995049268, 29.937691235932622 ], [ -95.303348994284278, 29.937722235391256 ], [ -95.303353994360933, 29.937836235761651 ], [ -95.303371994730071, 29.937985235394422 ], [ -95.303371994223042, 29.938237236119491 ], [ -95.303379994445578, 29.938528236071271 ], [ -95.30339499462174, 29.938780235533113 ], [ -95.303407994605223, 29.93906623622723 ], [ -95.303427994257888, 29.939565236147889 ], [ -95.303434994402949, 29.93972623563711 ], [ -95.303438994813163, 29.93983123622565 ], [ -95.303444994264936, 29.939943235811182 ], [ -95.303710994524906, 29.939943235650258 ], [ -95.30426399440627, 29.939943236010286 ], [ -95.304534994405429, 29.93993123597475 ], [ -95.307097995371777, 29.939871235950996 ], [ -95.308981996108372, 29.939653235646727 ], [ -95.309955996005215, 29.939521236121099 ], [ -95.311002995997399, 29.939452235545286 ], [ -95.311654996702586, 29.939420235361414 ], [ -95.311646996521901, 29.939291235406976 ], [ -95.311995996276508, 29.939285235805023 ], [ -95.312149996981063, 29.939283235853864 ], [ -95.312418997079718, 29.939279235456063 ], [ -95.314489997143369, 29.939215235623266 ], [ -95.314843997528186, 29.939218235167377 ], [ -95.315429997148271, 29.939225235267006 ], [ -95.315623997171087, 29.939227235711389 ], [ -95.315880997631567, 29.939225235941716 ], [ -95.318152998283821, 29.939208234999704 ], [ -95.318915998815697, 29.939235235103173 ], [ -95.320429999150846, 29.939235235654461 ], [ -95.321806998910077, 29.939218235462143 ], [ -95.323150998895684, 29.939186235377385 ], [ -95.330220000972943, 29.939114235303247 ], [ -95.331271001608783, 29.939109235090854 ], [ -95.331523001149719, 29.939108234916958 ], [ -95.331587001725552, 29.939108234643683 ], [ -95.331736001725403, 29.939107234561074 ], [ -95.332657001774876, 29.939103234620852 ], [ -95.337338003390101, 29.939083234461034 ], [ -95.338857003698863, 29.939076234290756 ], [ -95.341778003927786, 29.939028234376174 ], [ -95.345435005381546, 29.939024234628619 ], [ -95.345591004896917, 29.939022234524099 ], [ -95.34896200560037, 29.938988234640988 ], [ -95.349688006482538, 29.938980233954428 ], [ -95.353598007074865, 29.938977233883712 ], [ -95.355577007436423, 29.93895823437088 ], [ -95.355934007709052, 29.938959233899613 ], [ -95.356247008250534, 29.93896123422758 ], [ -95.356393008056429, 29.938961233777565 ], [ -95.356596007887092, 29.938954234241006 ], [ -95.360023009012806, 29.938911233842695 ], [ -95.361480009208591, 29.938880233951132 ], [ -95.364531010003688, 29.938820233655619 ], [ -95.369274011020352, 29.938783233987216 ], [ -95.371406011834168, 29.938766233166529 ], [ -95.37219801234609, 29.938760233379327 ], [ -95.372734012251769, 29.938756233165972 ], [ -95.377211012803414, 29.938721232915107 ], [ -95.380008013574596, 29.93870223301046 ], [ -95.381018014607818, 29.938701233088537 ], [ -95.381193014608442, 29.938701232927194 ], [ -95.381404014657306, 29.938701233575749 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1148, "Tract": "48201232801", "Area_SqMi": 0.3579410576298564, "total_2009": 466, "total_2010": 539, "total_2011": 488, "total_2012": 469, "total_2013": 453, "total_2014": 432, "total_2015": 460, "total_2016": 490, "total_2017": 480, "total_2018": 453, "total_2019": 420, "total_2020": 402, "age1": 94, "age2": 155, "age3": 86, "earn1": 72, "earn2": 172, "earn3": 91, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 0, "naics_s07": 192, "naics_s08": 6, "naics_s09": 0, "naics_s10": 53, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 3, "naics_s15": 4, "naics_s16": 23, "naics_s17": 0, "naics_s18": 48, "naics_s19": 4, "naics_s20": 0, "race1": 250, "race2": 55, "race3": 4, "race4": 24, "race5": 1, "race6": 1, "ethnicity1": 199, "ethnicity2": 136, "edu1": 74, "edu2": 69, "edu3": 61, "edu4": 37, "Shape_Length": 20203.688084622579, "Shape_Area": 9978784.0644776262, "total_2021": 407, "total_2022": 335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.206471961840705, 29.777491206321578 ], [ -95.20646896227953, 29.776979206208615 ], [ -95.206426962474524, 29.775964205762303 ], [ -95.206418962162431, 29.775674205441025 ], [ -95.206415962522172, 29.775546205757372 ], [ -95.206422962197266, 29.775501205580031 ], [ -95.206027962142002, 29.775506206177251 ], [ -95.205534962172507, 29.7755452060515 ], [ -95.20473796175682, 29.775355205527095 ], [ -95.204667961319529, 29.775557205991092 ], [ -95.204699961371333, 29.775618206103275 ], [ -95.204680961756125, 29.775766206004597 ], [ -95.204617962127415, 29.775832205767799 ], [ -95.204573961806844, 29.775904205848125 ], [ -95.20500296219565, 29.776657205998642 ], [ -95.205058961809783, 29.776833205682415 ], [ -95.205071961360801, 29.776926206436166 ], [ -95.205065962316681, 29.777036205998449 ], [ -95.205027961871863, 29.777267205727647 ], [ -95.204989961409836, 29.777328205784691 ], [ -95.204882961307305, 29.777416206051445 ], [ -95.204838961634152, 29.777465206260057 ], [ -95.204832961561593, 29.777531206246451 ], [ -95.204858962201854, 29.777656205879502 ], [ -95.204832961889366, 29.777952205937154 ], [ -95.204758961321033, 29.778150206028119 ], [ -95.204756961604232, 29.778295206449638 ], [ -95.204649962090073, 29.77848420631361 ], [ -95.204508961406688, 29.778651206569666 ], [ -95.204420961953517, 29.778758206672446 ], [ -95.20404496208171, 29.77920820617442 ], [ -95.203901961553328, 29.779454206933785 ], [ -95.203731961894192, 29.779749206920187 ], [ -95.203620961649236, 29.779943206462185 ], [ -95.203117961166356, 29.780816206594341 ], [ -95.203046961602425, 29.780938207407761 ], [ -95.202928961642272, 29.781098207295038 ], [ -95.203054961556163, 29.781434207050445 ], [ -95.203062961949144, 29.781491207346559 ], [ -95.203086961132087, 29.781661207071902 ], [ -95.203061961653802, 29.781826206896987 ], [ -95.203004961392111, 29.781947206906043 ], [ -95.202972961973231, 29.782055206777937 ], [ -95.202948961107097, 29.78213920744556 ], [ -95.202941961616574, 29.782189207482876 ], [ -95.202916961271612, 29.782233207287351 ], [ -95.202866961902672, 29.782288206849923 ], [ -95.202683961623777, 29.782442207040202 ], [ -95.202538961019343, 29.782678207311847 ], [ -95.202412961373611, 29.783047207386055 ], [ -95.202418960925229, 29.783212207107201 ], [ -95.202437961717422, 29.783289207041676 ], [ -95.202475961499502, 29.783393207104151 ], [ -95.202519961436025, 29.78356420777126 ], [ -95.20263996141864, 29.783811207287847 ], [ -95.202646961645229, 29.783899207789773 ], [ -95.202601961440038, 29.784113207197898 ], [ -95.202576961793255, 29.7841742075273 ], [ -95.202419961348966, 29.784399207625643 ], [ -95.202223961625833, 29.784669207918895 ], [ -95.202085961769114, 29.78483420818559 ], [ -95.201843961488862, 29.785133208077138 ], [ -95.201801961551183, 29.785186207889108 ], [ -95.201517960916519, 29.785472207797902 ], [ -95.201417961326413, 29.785554207683472 ], [ -95.201309960845137, 29.785591207643893 ], [ -95.200905961503707, 29.785854208374019 ], [ -95.200735961024364, 29.78595720808671 ], [ -95.200692961517959, 29.785983208317393 ], [ -95.200421961211944, 29.786082208004874 ], [ -95.200357961190136, 29.78609120798065 ], [ -95.200276961462933, 29.786104207887547 ], [ -95.199988961374956, 29.786109208494189 ], [ -95.199973961053573, 29.78610920836492 ], [ -95.199935960920072, 29.786110208061981 ], [ -95.199834961222464, 29.786137208437509 ], [ -95.199677960926238, 29.786165207990777 ], [ -95.199517960745254, 29.786169207925038 ], [ -95.199482960644303, 29.786170207710246 ], [ -95.199368960281518, 29.786159208160015 ], [ -95.199179960852476, 29.786115208346509 ], [ -95.199121960407339, 29.786084208551046 ], [ -95.199099960492745, 29.786072207897458 ], [ -95.198983960744485, 29.786011208433447 ], [ -95.198914960856825, 29.785983207706273 ], [ -95.198744960798962, 29.785945208348735 ], [ -95.198689960123403, 29.785940208204732 ], [ -95.198593960131106, 29.785945207982554 ], [ -95.198435960944678, 29.785978208510528 ], [ -95.198334960708166, 29.78601620807579 ], [ -95.198230960712479, 29.786080207855196 ], [ -95.198151960498535, 29.786115207889473 ], [ -95.198055960456713, 29.786231208038288 ], [ -95.198049960828868, 29.786251207818928 ], [ -95.198038960163913, 29.786291208625528 ], [ -95.19797395991074, 29.78642120796383 ], [ -95.19796396066252, 29.786434208469533 ], [ -95.197909960154277, 29.786514208624137 ], [ -95.197817960755486, 29.78664920842856 ], [ -95.197761960035933, 29.786786207959594 ], [ -95.197571960739168, 29.786929208353779 ], [ -95.197464960150981, 29.786932208105835 ], [ -95.197373960031044, 29.787018208419095 ], [ -95.197326959906505, 29.787029208538023 ], [ -95.197307960521783, 29.78703420845795 ], [ -95.197130960289996, 29.787116208674124 ], [ -95.197023960339862, 29.787237208401717 ], [ -95.196973959791777, 29.7873092082054 ], [ -95.196873959854344, 29.787416208745384 ], [ -95.196127960183475, 29.786954208305378 ], [ -95.195498959375769, 29.78658220848347 ], [ -95.195297959638154, 29.786454208180078 ], [ -95.194070959884584, 29.787942208709151 ], [ -95.193708959742068, 29.788381209194174 ], [ -95.192806959082716, 29.789514209012712 ], [ -95.192611958799944, 29.789728208851166 ], [ -95.191432959140826, 29.791131209691756 ], [ -95.190899958378054, 29.791812209348493 ], [ -95.190732958672243, 29.792027209915819 ], [ -95.190119958303896, 29.792760209727991 ], [ -95.1899979584134, 29.792907209713292 ], [ -95.190032958684, 29.792928210294075 ], [ -95.190054959111578, 29.792940209706369 ], [ -95.190259958847165, 29.79306120972943 ], [ -95.190539958557594, 29.793226210166122 ], [ -95.190822958460558, 29.793380210067465 ], [ -95.191094958841958, 29.793501209933165 ], [ -95.191269959488068, 29.793572210044033 ], [ -95.191369958904744, 29.793613209670092 ], [ -95.191626958609092, 29.793704209661922 ], [ -95.191852958689211, 29.7937762102855 ], [ -95.191997959115724, 29.793814210056354 ], [ -95.192536959593298, 29.793925210254958 ], [ -95.192709959185663, 29.793958210147402 ], [ -95.192966959007876, 29.793992210047744 ], [ -95.193258959825101, 29.794025210345669 ], [ -95.193674959902026, 29.79403920985829 ], [ -95.193861959644821, 29.794042210069847 ], [ -95.194189959890892, 29.794034209843534 ], [ -95.194538960107366, 29.794009209587699 ], [ -95.194697959565048, 29.793991210322559 ], [ -95.194873960316826, 29.793968209609261 ], [ -95.195017959524179, 29.793944209951999 ], [ -95.195239959955202, 29.793906209997761 ], [ -95.195518959708892, 29.793847209490394 ], [ -95.195846960681365, 29.79376220940728 ], [ -95.196096960263318, 29.793687210247452 ], [ -95.196158960446169, 29.79366420960535 ], [ -95.196478960485564, 29.793546210207673 ], [ -95.196772960598608, 29.793415210042898 ], [ -95.196951960311011, 29.793330209416471 ], [ -95.197051960701074, 29.793282209351123 ], [ -95.197323960143208, 29.793136210092506 ], [ -95.19760996047016, 29.792955209895339 ], [ -95.19788996059755, 29.792762209917541 ], [ -95.198268960597161, 29.792496209553175 ], [ -95.19834796096292, 29.792443209536 ], [ -95.198561960725243, 29.792315209142586 ], [ -95.198594960741204, 29.79229720913024 ], [ -95.198833960574092, 29.792166209058255 ], [ -95.198866960442444, 29.79215020936045 ], [ -95.199032960500119, 29.792068208958653 ], [ -95.199172960744932, 29.791999209272241 ], [ -95.199542960713146, 29.791841209232395 ], [ -95.199911961617957, 29.791709209228983 ], [ -95.200298961732798, 29.791601209454072 ], [ -95.200684961267925, 29.791520208861602 ], [ -95.201024961286478, 29.791463208778797 ], [ -95.201281961794336, 29.791427209276488 ], [ -95.201736961111479, 29.79139520904771 ], [ -95.202226961255064, 29.791388209024706 ], [ -95.202226962115176, 29.791232209014051 ], [ -95.202226961671101, 29.790697208671624 ], [ -95.202221961637647, 29.789950209223768 ], [ -95.202218961884725, 29.7894732088373 ], [ -95.202211961162519, 29.789206208416992 ], [ -95.20222096139284, 29.788974208608401 ], [ -95.202220961191244, 29.788960208624772 ], [ -95.202238961909401, 29.78873620900001 ], [ -95.202267961742422, 29.788469208556407 ], [ -95.202285961952327, 29.788361208592995 ], [ -95.202315961508916, 29.788180208729838 ], [ -95.202335961224932, 29.788085208328152 ], [ -95.202373961929538, 29.787946208519561 ], [ -95.202380961446906, 29.787921208866113 ], [ -95.202431961769804, 29.787757208782278 ], [ -95.202477961694143, 29.787609208184037 ], [ -95.202592962012659, 29.787304208737577 ], [ -95.202736961734956, 29.786993208188381 ], [ -95.202907961371935, 29.786686207693233 ], [ -95.203118962030331, 29.786354207908051 ], [ -95.20323896189727, 29.786192208233853 ], [ -95.203337961724415, 29.786059207712466 ], [ -95.203532961884122, 29.785806207944638 ], [ -95.203664961377683, 29.785634208272484 ], [ -95.203820962366109, 29.785411207782616 ], [ -95.204048961813328, 29.785040207529207 ], [ -95.204263962362518, 29.784652207390213 ], [ -95.204447961530761, 29.784264207281296 ], [ -95.204489961944532, 29.784160207698843 ], [ -95.204569962184308, 29.783961207965095 ], [ -95.204598961855751, 29.783888207228078 ], [ -95.204907962347775, 29.783022207693321 ], [ -95.204917961838831, 29.782995207609563 ], [ -95.204982962383056, 29.782816207382197 ], [ -95.205044962334014, 29.782652207195049 ], [ -95.205097961972101, 29.782507207646827 ], [ -95.205111961972847, 29.782479206891242 ], [ -95.205536961992706, 29.781266207037348 ], [ -95.205601961986474, 29.78107820653403 ], [ -95.205744962115517, 29.780673206789615 ], [ -95.206052961834132, 29.779803206854854 ], [ -95.206110962347466, 29.779629206523087 ], [ -95.206138962642143, 29.779547206990149 ], [ -95.206201961778888, 29.779370206717342 ], [ -95.206212962007001, 29.779300206676513 ], [ -95.206309961943433, 29.778914206730594 ], [ -95.206378962569929, 29.778557205983248 ], [ -95.206396962540595, 29.77846220603902 ], [ -95.206407962114866, 29.778366206330922 ], [ -95.206441961749078, 29.778066206114616 ], [ -95.206450962193571, 29.777991206232802 ], [ -95.206462962535483, 29.777696206183098 ], [ -95.206471961840705, 29.777491206321578 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1149, "Tract": "48201322701", "Area_SqMi": 0.30768714424514615, "total_2009": 349, "total_2010": 368, "total_2011": 54, "total_2012": 64, "total_2013": 64, "total_2014": 64, "total_2015": 63, "total_2016": 84, "total_2017": 85, "total_2018": 81, "total_2019": 89, "total_2020": 99, "age1": 26, "age2": 27, "age3": 20, "earn1": 41, "earn2": 27, "earn3": 5, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 2, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 62, "naics_s19": 3, "naics_s20": 0, "race1": 62, "race2": 4, "race3": 1, "race4": 5, "race5": 0, "race6": 1, "ethnicity1": 37, "ethnicity2": 36, "edu1": 21, "edu2": 8, "edu3": 13, "edu4": 5, "Shape_Length": 12185.396106357244, "Shape_Area": 8577790.9697442632, "total_2021": 96, "total_2022": 73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.171214949867192, 29.699412191043358 ], [ -95.171200949525527, 29.698968190836119 ], [ -95.171164949100714, 29.697823190604939 ], [ -95.171148949480454, 29.697311190798963 ], [ -95.17114494941184, 29.697181190605104 ], [ -95.171127949037327, 29.69663019028987 ], [ -95.171092949448493, 29.695787190538567 ], [ -95.171090949874511, 29.694919190611259 ], [ -95.171078949135065, 29.694529190640068 ], [ -95.171065949710524, 29.694082189773678 ], [ -95.171071949038023, 29.693688189866982 ], [ -95.171203949182711, 29.693588189962547 ], [ -95.170449948791529, 29.693206190301169 ], [ -95.170083948783272, 29.692997189715268 ], [ -95.170016948561042, 29.692958189965498 ], [ -95.169731948764337, 29.692794190007152 ], [ -95.169163949093686, 29.692467189647559 ], [ -95.167990948437719, 29.691751189709176 ], [ -95.167786948636106, 29.691626189647749 ], [ -95.166458948447044, 29.69081318925813 ], [ -95.16627594754975, 29.690701189722574 ], [ -95.165758947953393, 29.690385189763557 ], [ -95.163568947715376, 29.689047189453273 ], [ -95.163287947161933, 29.689397189401802 ], [ -95.162979946903022, 29.689278189123446 ], [ -95.162680946968592, 29.689274189074951 ], [ -95.162094946799741, 29.689265189465221 ], [ -95.162097947212203, 29.690916189678976 ], [ -95.162142947060701, 29.691752190270098 ], [ -95.162158947545777, 29.692532189761074 ], [ -95.162191946629108, 29.693316190639766 ], [ -95.16224594736228, 29.694175190272237 ], [ -95.162262947108388, 29.695020190313159 ], [ -95.162261947025797, 29.695697191042211 ], [ -95.162259947215574, 29.696459190545546 ], [ -95.162273947675885, 29.697222191010137 ], [ -95.162302947713528, 29.698848191424293 ], [ -95.162304947774516, 29.698960191209622 ], [ -95.162350947425168, 29.699325191606881 ], [ -95.162914947282573, 29.699286191637519 ], [ -95.163558947379684, 29.699242191760817 ], [ -95.164572947860648, 29.699243191894205 ], [ -95.165503947875365, 29.699237191062391 ], [ -95.165962948651242, 29.69921419123774 ], [ -95.166160947947631, 29.69921019102696 ], [ -95.166164948839096, 29.699472191625812 ], [ -95.166447947941251, 29.699456191649141 ], [ -95.167834949058488, 29.699458191034118 ], [ -95.168411949224364, 29.699458191332376 ], [ -95.169006949244803, 29.699464191806602 ], [ -95.170090949191874, 29.699439191529535 ], [ -95.170724949256254, 29.699402191494677 ], [ -95.171214949867192, 29.699412191043358 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1150, "Tract": "48201253502", "Area_SqMi": 1.3281738445541593, "total_2009": 2283, "total_2010": 2348, "total_2011": 2100, "total_2012": 2241, "total_2013": 2474, "total_2014": 2598, "total_2015": 2674, "total_2016": 2581, "total_2017": 2606, "total_2018": 2664, "total_2019": 2730, "total_2020": 2882, "age1": 345, "age2": 1797, "age3": 745, "earn1": 89, "earn2": 156, "earn3": 2642, "naics_s01": 0, "naics_s02": 0, "naics_s03": 6, "naics_s04": 77, "naics_s05": 15, "naics_s06": 212, "naics_s07": 44, "naics_s08": 2424, "naics_s09": 19, "naics_s10": 1, "naics_s11": 15, "naics_s12": 26, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 31, "naics_s19": 17, "naics_s20": 0, "race1": 2381, "race2": 293, "race3": 17, "race4": 160, "race5": 2, "race6": 34, "ethnicity1": 2317, "ethnicity2": 570, "edu1": 393, "edu2": 680, "edu3": 835, "edu4": 634, "Shape_Length": 31428.666477015391, "Shape_Area": 37027213.593916386, "total_2021": 2803, "total_2022": 2887 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.039696919989993, 29.786169213742603 ], [ -95.039840919238557, 29.785948213753954 ], [ -95.038313919512987, 29.78529021380464 ], [ -95.037598918752721, 29.785000213142261 ], [ -95.036068918873596, 29.784379213312015 ], [ -95.032711917540396, 29.782914212923295 ], [ -95.032355917358942, 29.782759212932078 ], [ -95.032036917778299, 29.782633213141331 ], [ -95.031715917927897, 29.782508213158401 ], [ -95.029578917179492, 29.781603212574172 ], [ -95.027802916513153, 29.78083621321916 ], [ -95.026162916289479, 29.780214212434991 ], [ -95.024922915609949, 29.779647213017434 ], [ -95.023910914950534, 29.779226212756392 ], [ -95.023083914758843, 29.778872212559779 ], [ -95.022536914842362, 29.778620212293578 ], [ -95.022207914493947, 29.778457212700086 ], [ -95.02197391462245, 29.778325212541588 ], [ -95.021849914648868, 29.778257212545288 ], [ -95.021722914908466, 29.778176212254788 ], [ -95.021514914280075, 29.778004212191075 ], [ -95.02125091425431, 29.777758212749646 ], [ -95.020892914821914, 29.777441212610654 ], [ -95.020361914335993, 29.776910211915034 ], [ -95.020297914782631, 29.77683821277444 ], [ -95.020018914240538, 29.776514212606671 ], [ -95.019562914179389, 29.775921212314518 ], [ -95.01923491359689, 29.775567211650387 ], [ -95.017668913830704, 29.773980211498284 ], [ -95.017410913022289, 29.773718211823855 ], [ -95.01712391361626, 29.773502211545946 ], [ -95.016809913120028, 29.773187212076568 ], [ -95.016719913605144, 29.77309721185679 ], [ -95.016616913661238, 29.772993211619447 ], [ -95.016420913270409, 29.772796211169027 ], [ -95.016074912896741, 29.77244321135375 ], [ -95.01583191304438, 29.772194211556322 ], [ -95.015531913330804, 29.77184521117762 ], [ -95.014814912965178, 29.771139211192857 ], [ -95.01466991241432, 29.770996211561936 ], [ -95.014213912232961, 29.770629211025476 ], [ -95.013878912157395, 29.770348211606706 ], [ -95.013829912648148, 29.770306211342636 ], [ -95.013546912625017, 29.770058210712822 ], [ -95.013335911881327, 29.769872211318891 ], [ -95.013271912048253, 29.769897211087333 ], [ -95.01302991246375, 29.770028210801371 ], [ -95.012898912257711, 29.770099210878119 ], [ -95.012617911603257, 29.770257210810197 ], [ -95.012415912441426, 29.770381210842739 ], [ -95.012143911620555, 29.770572211485749 ], [ -95.011840911479311, 29.77069221091422 ], [ -95.011720911482684, 29.77071721154724 ], [ -95.011373912125563, 29.770788211498253 ], [ -95.011058911999839, 29.770828211046251 ], [ -95.011023911353348, 29.770829211168966 ], [ -95.010193911785578, 29.77084121137748 ], [ -95.008843910660204, 29.770862211142894 ], [ -95.008202911060053, 29.770870211152481 ], [ -95.007311910439554, 29.770880211132972 ], [ -95.005650910218662, 29.77089321183249 ], [ -95.004158910017424, 29.770929211771708 ], [ -95.003765910175034, 29.770930211930505 ], [ -95.003352909982084, 29.770936211503798 ], [ -95.002696909780738, 29.770946211360993 ], [ -95.002550910005965, 29.770959211523522 ], [ -95.002198908942447, 29.770990211823467 ], [ -95.00130290962359, 29.771021211380354 ], [ -95.000460909361365, 29.771037211385838 ], [ -94.999733908446601, 29.771051211814598 ], [ -94.999668909199983, 29.771195212000862 ], [ -94.999630908407568, 29.771816211576734 ], [ -94.999700908804257, 29.772295212333656 ], [ -94.999769909133747, 29.772410212420475 ], [ -94.999839909065074, 29.772575212588162 ], [ -94.999864908760699, 29.772866212238917 ], [ -94.999877908464441, 29.773653212562635 ], [ -94.999941909171838, 29.7740272120501 ], [ -95.000007908972847, 29.774294212379058 ], [ -95.000102909533496, 29.7745312121552 ], [ -95.000183908856911, 29.775070212632773 ], [ -95.000145909186699, 29.775746212946089 ], [ -95.000195909180079, 29.775873212752419 ], [ -95.000586908963797, 29.776577212995992 ], [ -95.001052909815272, 29.777193213227921 ], [ -95.001114909706743, 29.777313213217539 ], [ -95.001373909783922, 29.777809212865687 ], [ -95.001486909933092, 29.777979213223535 ], [ -95.001625909191546, 29.778144213362982 ], [ -95.001896909435658, 29.778277212895407 ], [ -95.001959910155463, 29.778342213058984 ], [ -95.002009909810226, 29.778480212945304 ], [ -95.00191591005543, 29.778782213699813 ], [ -95.001776909196835, 29.779074213464327 ], [ -95.001763909360548, 29.779195213579623 ], [ -95.001832909678001, 29.780322214056792 ], [ -95.001749909569881, 29.780921213896889 ], [ -95.001768909574054, 29.781015213976342 ], [ -95.001825909246605, 29.781180213660818 ], [ -95.002171909981286, 29.781911213943353 ], [ -95.002203909579322, 29.782021213928243 ], [ -95.002155909618082, 29.782238214082721 ], [ -95.002363910367052, 29.782271214349191 ], [ -95.003019910552524, 29.78237521365768 ], [ -95.004969910416776, 29.782688213617824 ], [ -95.005547911284822, 29.782788214141089 ], [ -95.005686910657744, 29.782806214285337 ], [ -95.005739910351949, 29.782813214035333 ], [ -95.005751911214773, 29.782815213817678 ], [ -95.005778911156014, 29.782820213614745 ], [ -95.006026910720109, 29.782862214461218 ], [ -95.006308910598065, 29.782935213870985 ], [ -95.006963911601289, 29.782998214105216 ], [ -95.007174911001002, 29.783042214034719 ], [ -95.007386910743421, 29.783071214414917 ], [ -95.008011911114778, 29.783171214123094 ], [ -95.00821291114373, 29.78319821363468 ], [ -95.008416911136905, 29.783235214405043 ], [ -95.009218911275809, 29.783360214220135 ], [ -95.00935391226372, 29.783379214475421 ], [ -95.009391911320748, 29.783384214259179 ], [ -95.009611912096943, 29.783424213728242 ], [ -95.010952911857217, 29.78363521392841 ], [ -95.01126791254741, 29.783684214001234 ], [ -95.01154091210509, 29.783727213980253 ], [ -95.012414913063083, 29.783863213940812 ], [ -95.01314591294971, 29.783980214026496 ], [ -95.013884913068523, 29.784097214211702 ], [ -95.014485912801362, 29.784191213672347 ], [ -95.014660913209994, 29.784205214198103 ], [ -95.016538913625098, 29.784505214000696 ], [ -95.016789914151019, 29.784544213612218 ], [ -95.017170914086861, 29.784603213714291 ], [ -95.017293914026297, 29.784618213853591 ], [ -95.017696913716392, 29.784682213853767 ], [ -95.019268914547879, 29.784926213966795 ], [ -95.019597914941784, 29.784970214312843 ], [ -95.019763914244223, 29.785004213794839 ], [ -95.020449914276398, 29.785112214272697 ], [ -95.021553915072289, 29.785286213781106 ], [ -95.022885915440696, 29.785507213812565 ], [ -95.02307691560658, 29.785531213761924 ], [ -95.023668915222061, 29.785621214018487 ], [ -95.024266916089232, 29.785729214389484 ], [ -95.024466915806173, 29.785760213796632 ], [ -95.024664915478354, 29.785783213919601 ], [ -95.02485391565385, 29.785821214067404 ], [ -95.025242916107374, 29.785890214000172 ], [ -95.027500917102202, 29.786261213957285 ], [ -95.027738917090815, 29.786299214349469 ], [ -95.029261916915345, 29.786544214407236 ], [ -95.029555917507992, 29.786590214264326 ], [ -95.03034091719212, 29.786716213674417 ], [ -95.030691917765836, 29.786767214176617 ], [ -95.03161991802105, 29.786931213707188 ], [ -95.031892917480633, 29.786966213997545 ], [ -95.032134918096688, 29.786986214073167 ], [ -95.032454918234293, 29.787000213929769 ], [ -95.032618917719006, 29.787002214305335 ], [ -95.032944917759608, 29.786995214027215 ], [ -95.033324918515305, 29.786968213977858 ], [ -95.03395591830477, 29.786944213668985 ], [ -95.034607917973332, 29.786910213661127 ], [ -95.034749918586456, 29.78689721413884 ], [ -95.034946918759914, 29.786886213564973 ], [ -95.035141918804527, 29.786883214129769 ], [ -95.035339918296174, 29.786869213839182 ], [ -95.035530918611613, 29.786862213722557 ], [ -95.036097919163524, 29.786828213514152 ], [ -95.036278918756537, 29.786823214032498 ], [ -95.036976919037258, 29.786779213720898 ], [ -95.037307918910983, 29.78677121415399 ], [ -95.037470918758501, 29.786761214090376 ], [ -95.037625919423292, 29.786790214155076 ], [ -95.037789919763313, 29.786740213855943 ], [ -95.038089918871833, 29.786735213766889 ], [ -95.038234919601749, 29.786717214110762 ], [ -95.038374919337826, 29.786705214151564 ], [ -95.038749919017178, 29.786688214047278 ], [ -95.038942919281538, 29.786675213503141 ], [ -95.039198919497409, 29.78665921327935 ], [ -95.039314919364145, 29.786645213952347 ], [ -95.039387919675647, 29.786610213476944 ], [ -95.039436919671331, 29.786559213970111 ], [ -95.039487919784321, 29.786484213657076 ], [ -95.039623920139078, 29.786280213582245 ], [ -95.039696919989993, 29.786169213742603 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1151, "Tract": "48201533302", "Area_SqMi": 0.63200359162925268, "total_2009": 27, "total_2010": 14, "total_2011": 1, "total_2012": 35, "total_2013": 32, "total_2014": 34, "total_2015": 29, "total_2016": 43, "total_2017": 51, "total_2018": 51, "total_2019": 62, "total_2020": 57, "age1": 24, "age2": 30, "age3": 15, "earn1": 31, "earn2": 32, "earn3": 6, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 0, "naics_s07": 7, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 6, "naics_s17": 0, "naics_s18": 53, "naics_s19": 0, "naics_s20": 0, "race1": 12, "race2": 49, "race3": 1, "race4": 5, "race5": 0, "race6": 2, "ethnicity1": 61, "ethnicity2": 8, "edu1": 8, "edu2": 17, "edu3": 12, "edu4": 8, "Shape_Length": 19699.688332639969, "Shape_Area": 17619178.449665971, "total_2021": 73, "total_2022": 69 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.431154025159373, 29.886273220997186 ], [ -95.431139025123599, 29.885984220759269 ], [ -95.431133024884844, 29.885599220948972 ], [ -95.4306030247091, 29.885627220757716 ], [ -95.430471024486238, 29.885616220807698 ], [ -95.429988024432731, 29.885642221014262 ], [ -95.429990024329399, 29.885312221000909 ], [ -95.429987024376402, 29.884976220892021 ], [ -95.429975024441632, 29.884006220196721 ], [ -95.429966024478333, 29.883730219835062 ], [ -95.429942024478478, 29.883008219866273 ], [ -95.429903023751734, 29.882021219496554 ], [ -95.429872023924787, 29.881081219888831 ], [ -95.429837023887544, 29.880125219292754 ], [ -95.429811023886302, 29.879174219209727 ], [ -95.429766024081545, 29.877975219160327 ], [ -95.429740023495071, 29.876544219018328 ], [ -95.429732023443023, 29.87617421852822 ], [ -95.429727024045434, 29.875067218214539 ], [ -95.429713024027023, 29.874463218413144 ], [ -95.429707024011762, 29.874134218332017 ], [ -95.429690023473427, 29.873313217693156 ], [ -95.429672024063436, 29.872452217626254 ], [ -95.429668023432299, 29.872274217859996 ], [ -95.429657023251053, 29.871681218169929 ], [ -95.429657023670373, 29.87155221809763 ], [ -95.429647023599102, 29.870962217222566 ], [ -95.427975023227049, 29.87096721754844 ], [ -95.426929022601612, 29.870971217968211 ], [ -95.426775022703879, 29.87097621805496 ], [ -95.425894022198264, 29.870981217828326 ], [ -95.425400022777382, 29.870984217518398 ], [ -95.42367902249832, 29.870995217714714 ], [ -95.422147021326097, 29.870998218272749 ], [ -95.420696021653143, 29.871000217910463 ], [ -95.42069902144118, 29.87186621817764 ], [ -95.420723021442697, 29.872813218584348 ], [ -95.42072102156979, 29.873043218839936 ], [ -95.420726021653536, 29.873282218165098 ], [ -95.420742021323377, 29.873516218868147 ], [ -95.420761020913034, 29.873635218654499 ], [ -95.420792021783996, 29.873738218292289 ], [ -95.420855021420905, 29.873877218921706 ], [ -95.42093302163687, 29.874009218204623 ], [ -95.421090022034747, 29.874215219019767 ], [ -95.421161021396316, 29.874277218848924 ], [ -95.421217021669094, 29.874371219079627 ], [ -95.421260021367047, 29.874481218979156 ], [ -95.421261021909174, 29.874584218768888 ], [ -95.421241021536488, 29.874664219094978 ], [ -95.421202021626556, 29.874737219088772 ], [ -95.420848021430984, 29.875381219199621 ], [ -95.420806021411096, 29.87548821848269 ], [ -95.420764021435929, 29.875597218868513 ], [ -95.420723021247554, 29.875771218546554 ], [ -95.420710021153724, 29.875918218630115 ], [ -95.420704021377503, 29.876101218861475 ], [ -95.420733021451738, 29.877889219454506 ], [ -95.420734021877621, 29.878093219012477 ], [ -95.420735021986516, 29.878209219163654 ], [ -95.420748021916296, 29.879106219436856 ], [ -95.420762021231539, 29.879927220055819 ], [ -95.42077102150634, 29.880752220190278 ], [ -95.420776021873763, 29.881578220006375 ], [ -95.420787021882362, 29.882396219966182 ], [ -95.420529022095863, 29.882410220671314 ], [ -95.420310022058672, 29.882407220777878 ], [ -95.420022021306551, 29.882374220242745 ], [ -95.419803022032198, 29.882326220240291 ], [ -95.41945602198102, 29.882269220197536 ], [ -95.419151021277699, 29.882246220044621 ], [ -95.418837021052809, 29.882242220162926 ], [ -95.418473021122182, 29.88226022026851 ], [ -95.418240021572174, 29.882321220069112 ], [ -95.418080021348558, 29.882400220694716 ], [ -95.417947020643538, 29.882480220017417 ], [ -95.417559020640709, 29.882708220895839 ], [ -95.41750002143219, 29.882880220593279 ], [ -95.418324021403862, 29.883911220349564 ], [ -95.418468021806802, 29.884093220364704 ], [ -95.418828021062524, 29.88454322085699 ], [ -95.41913202137728, 29.884930221038207 ], [ -95.419223021824976, 29.885045221090277 ], [ -95.419589021469221, 29.885530220533422 ], [ -95.419785021642696, 29.885788220829337 ], [ -95.419862021548639, 29.885891221020234 ], [ -95.420099021975545, 29.886204221143387 ], [ -95.420734021834761, 29.887045220905108 ], [ -95.421182021768942, 29.887589220945941 ], [ -95.42176202244903, 29.888311221490277 ], [ -95.42383702313839, 29.887101221425652 ], [ -95.424254023243336, 29.886892221083396 ], [ -95.424627022537791, 29.886746221351519 ], [ -95.425194023434983, 29.886575220641056 ], [ -95.425867023736117, 29.8864272212268 ], [ -95.426388023656827, 29.886370221155087 ], [ -95.426670023087453, 29.886358221035263 ], [ -95.427590024232828, 29.886339220703167 ], [ -95.428068024133609, 29.88632422068325 ], [ -95.429034024515857, 29.886315221181675 ], [ -95.429669024205808, 29.886310220443342 ], [ -95.430603024433964, 29.886295220394206 ], [ -95.431154025159373, 29.886273220997186 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1152, "Tract": "48201252601", "Area_SqMi": 1.4935280127296466, "total_2009": 1016, "total_2010": 1791, "total_2011": 1856, "total_2012": 1754, "total_2013": 1688, "total_2014": 1609, "total_2015": 1245, "total_2016": 1244, "total_2017": 1361, "total_2018": 1105, "total_2019": 1111, "total_2020": 1062, "age1": 218, "age2": 487, "age3": 180, "earn1": 155, "earn2": 213, "earn3": 517, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 86, "naics_s05": 233, "naics_s06": 22, "naics_s07": 81, "naics_s08": 48, "naics_s09": 0, "naics_s10": 14, "naics_s11": 6, "naics_s12": 4, "naics_s13": 0, "naics_s14": 60, "naics_s15": 0, "naics_s16": 0, "naics_s17": 2, "naics_s18": 151, "naics_s19": 52, "naics_s20": 126, "race1": 732, "race2": 89, "race3": 12, "race4": 29, "race5": 3, "race6": 20, "ethnicity1": 513, "ethnicity2": 372, "edu1": 193, "edu2": 200, "edu3": 177, "edu4": 97, "Shape_Length": 26755.164073454096, "Shape_Area": 41637004.796161734, "total_2021": 1019, "total_2022": 885 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.124651941429832, 29.787480210750417 ], [ -95.124654941503451, 29.786903210947862 ], [ -95.124634941923304, 29.786540211149926 ], [ -95.124587941328542, 29.785897210928834 ], [ -95.12457894154106, 29.785644210551357 ], [ -95.124580941755781, 29.784961210209477 ], [ -95.124581941732103, 29.784743210344423 ], [ -95.124600940952106, 29.784431210623705 ], [ -95.12461994149254, 29.783500210449152 ], [ -95.124622941551294, 29.782851209821256 ], [ -95.124617941062041, 29.782155209520432 ], [ -95.124613941756323, 29.781708209608588 ], [ -95.124599940854665, 29.780583209109729 ], [ -95.124583940826966, 29.780154209789377 ], [ -95.12457294176555, 29.779770209492856 ], [ -95.12455394120073, 29.779435209534775 ], [ -95.124531940939477, 29.779050209460653 ], [ -95.124524941039013, 29.778509209419138 ], [ -95.124524941285856, 29.778481208775545 ], [ -95.124523941407318, 29.778437209143245 ], [ -95.124519941353043, 29.778302208646302 ], [ -95.124516941354798, 29.778201209228033 ], [ -95.124319940853184, 29.778249208759437 ], [ -95.122922940834428, 29.778590209649806 ], [ -95.122525940566376, 29.778705209634122 ], [ -95.121678940929257, 29.778973208950301 ], [ -95.120819940368477, 29.779292209774258 ], [ -95.119984940556904, 29.779643209252832 ], [ -95.116575938859157, 29.781076209802787 ], [ -95.116039938888619, 29.781300210349492 ], [ -95.114633938847547, 29.781892210380185 ], [ -95.112541938266375, 29.782771210155985 ], [ -95.109922938190351, 29.783883210378054 ], [ -95.109417938012896, 29.784097210687356 ], [ -95.108146937437539, 29.784608210778853 ], [ -95.10705993658523, 29.784986211132161 ], [ -95.106611936901757, 29.785152211425352 ], [ -95.105017936205059, 29.785676210872428 ], [ -95.104986936741511, 29.785811211715096 ], [ -95.104974936211448, 29.785865211556175 ], [ -95.104969936676397, 29.785962211281941 ], [ -95.104964936835131, 29.786056211238765 ], [ -95.104962936169883, 29.786086211152035 ], [ -95.104962936078962, 29.786096211544539 ], [ -95.105018936925958, 29.786277211535534 ], [ -95.105170936193048, 29.786558211297351 ], [ -95.105391936479847, 29.787113211610453 ], [ -95.105447936437002, 29.787190211938704 ], [ -95.10544793695081, 29.787267211710365 ], [ -95.105378937162385, 29.787393211308121 ], [ -95.105359936897187, 29.787492211719695 ], [ -95.105378936941875, 29.787536212003754 ], [ -95.105416936415864, 29.787586211423893 ], [ -95.105542936608785, 29.787663211935346 ], [ -95.105788936366892, 29.787789211730342 ], [ -95.10589593682576, 29.787872211817437 ], [ -95.105908937298949, 29.787921212115709 ], [ -95.105870936635625, 29.788070211311773 ], [ -95.10575093672449, 29.788279211672581 ], [ -95.105757936452875, 29.788345211964923 ], [ -95.105858936605145, 29.788839211699315 ], [ -95.105965936781388, 29.788977211970138 ], [ -95.106022937263717, 29.788999211851834 ], [ -95.106091937413339, 29.789048212377608 ], [ -95.106091937226793, 29.789114212374173 ], [ -95.106060936845978, 29.789246211734277 ], [ -95.106009937210246, 29.789307212104308 ], [ -95.105871936527748, 29.78935621241671 ], [ -95.105833937106979, 29.789384212195614 ], [ -95.105732936396521, 29.789499212248696 ], [ -95.105713936849483, 29.789565211769855 ], [ -95.105745937011804, 29.789758212450259 ], [ -95.105682936757859, 29.789857211754434 ], [ -95.10561993641079, 29.789906211824395 ], [ -95.105562937204169, 29.789972212121612 ], [ -95.105518936896715, 29.790071211860727 ], [ -95.105455937115977, 29.790313212561781 ], [ -95.105411937097912, 29.790407212081018 ], [ -95.105411937168554, 29.790511212256391 ], [ -95.105433937275663, 29.7905782126026 ], [ -95.105537937060447, 29.790896212202593 ], [ -95.105481937263804, 29.791149211945701 ], [ -95.105506936751951, 29.791369212767641 ], [ -95.105481936843532, 29.791545212657052 ], [ -95.105538936637259, 29.79164921251547 ], [ -95.105695936913108, 29.791820212220184 ], [ -95.105822937344215, 29.791919212676156 ], [ -95.105948936752739, 29.791974212238276 ], [ -95.106030937082494, 29.792084212812455 ], [ -95.106026937516447, 29.792157212731709 ], [ -95.106023937530281, 29.792199212364341 ], [ -95.105923937472184, 29.79233721232373 ], [ -95.105828937360272, 29.792419212572483 ], [ -95.105658936602964, 29.792678212555924 ], [ -95.105469936448245, 29.792898212366197 ], [ -95.105343936504056, 29.793096212456053 ], [ -95.105242936551434, 29.793178213094148 ], [ -95.105166936920938, 29.793206212509649 ], [ -95.10501593710633, 29.793239212676795 ], [ -95.104858936959118, 29.793299212996391 ], [ -95.104416936273239, 29.793629212802458 ], [ -95.104316936196753, 29.793657212901788 ], [ -95.104240936181625, 29.793723212859614 ], [ -95.104177937118493, 29.793822213296352 ], [ -95.104196936213825, 29.794152212772509 ], [ -95.104437936656737, 29.79462121330458 ], [ -95.104537936439854, 29.79481721310168 ], [ -95.104562936582937, 29.794921213049566 ], [ -95.104625936646812, 29.795020213139598 ], [ -95.104789936496942, 29.79511921362888 ], [ -95.104974936817996, 29.795308213636204 ], [ -95.105130936594648, 29.795466213380948 ], [ -95.105559936792233, 29.795966213234546 ], [ -95.10557893677526, 29.795993213253603 ], [ -95.10592593670637, 29.796494213523257 ], [ -95.106025937696643, 29.796648213734134 ], [ -95.106379937521424, 29.796884213252689 ], [ -95.106416937186353, 29.796983213563301 ], [ -95.106442937172574, 29.797131213676547 ], [ -95.106518937873773, 29.797369213309143 ], [ -95.106530937678087, 29.797406213300629 ], [ -95.10664493731484, 29.797472213278819 ], [ -95.106757937650258, 29.797505214005287 ], [ -95.106883937191554, 29.797560213290826 ], [ -95.106953937470735, 29.797621214020399 ], [ -95.107041937555863, 29.797681213691646 ], [ -95.107154937563394, 29.797708213667985 ], [ -95.107375937348877, 29.797725213589224 ], [ -95.107444937691483, 29.79774721359777 ], [ -95.107552937292894, 29.797813213653939 ], [ -95.107753938082084, 29.797983214057442 ], [ -95.108466937661973, 29.798725214236814 ], [ -95.108559938063593, 29.798804214055497 ], [ -95.108674938239091, 29.798901213615107 ], [ -95.108883938283938, 29.799000214253162 ], [ -95.109866938416644, 29.799539214349355 ], [ -95.110096938379982, 29.799680214013453 ], [ -95.110144938854503, 29.799709213985775 ], [ -95.110301938302143, 29.799824214230238 ], [ -95.110333938314454, 29.799929213873796 ], [ -95.110295938573614, 29.800022214399544 ], [ -95.110239938746531, 29.800116213658473 ], [ -95.110258938183094, 29.80023121372486 ], [ -95.110359938109198, 29.800325213726197 ], [ -95.110497939064715, 29.800374214250414 ], [ -95.110604938680851, 29.800374214538909 ], [ -95.111008938344696, 29.800297214317613 ], [ -95.111165938203655, 29.800297214137522 ], [ -95.11151993895281, 29.800434214070791 ], [ -95.113185938901239, 29.801617214537043 ], [ -95.113401939345565, 29.801629214374298 ], [ -95.114097939913819, 29.801653214142238 ], [ -95.114219939787588, 29.801665213801321 ], [ -95.114338939457426, 29.801668213832791 ], [ -95.114453939319532, 29.801658214208757 ], [ -95.114657939511048, 29.801675214581412 ], [ -95.114769939719167, 29.801670214562971 ], [ -95.115027940171345, 29.801686214004107 ], [ -95.115643940055435, 29.801713214018019 ], [ -95.115867940073159, 29.801722214460035 ], [ -95.115942939867011, 29.801719214175836 ], [ -95.116002940367821, 29.80172421424535 ], [ -95.116578940401482, 29.801747214594293 ], [ -95.116800940637432, 29.801755214002021 ], [ -95.117368940178125, 29.801774213939492 ], [ -95.11755194055641, 29.801780214045046 ], [ -95.118680941106248, 29.801818213720797 ], [ -95.119079940547408, 29.801831214230312 ], [ -95.119707940481447, 29.801856213934244 ], [ -95.12051694128985, 29.801882213708062 ], [ -95.121180941294114, 29.801902213721263 ], [ -95.121433941752031, 29.801911214412605 ], [ -95.121904941462319, 29.801932214315247 ], [ -95.122407941556872, 29.801952213657632 ], [ -95.122699941370641, 29.801960214200218 ], [ -95.122979941515823, 29.801974214040335 ], [ -95.123116941652199, 29.801972214000944 ], [ -95.12325994150045, 29.801976214377 ], [ -95.123838941861337, 29.801995214317163 ], [ -95.124003942122002, 29.801997214143629 ], [ -95.123995942435428, 29.801917214272965 ], [ -95.123973941603978, 29.801477214146235 ], [ -95.123973941912695, 29.801280214269198 ], [ -95.123984941660012, 29.801054214001336 ], [ -95.12400894207515, 29.800574213933746 ], [ -95.124029942141306, 29.800220214054594 ], [ -95.124073941798514, 29.799407213770149 ], [ -95.124087942116077, 29.799179213063514 ], [ -95.124103941962503, 29.798929213162598 ], [ -95.124117941858245, 29.798660213693228 ], [ -95.124145941904132, 29.79814921317865 ], [ -95.124200942253424, 29.797265213090839 ], [ -95.124285942359805, 29.795795212351123 ], [ -95.124387941890475, 29.794052212205578 ], [ -95.124413941345921, 29.79374921269028 ], [ -95.124466941814077, 29.793349212277608 ], [ -95.124487941486294, 29.79318121236301 ], [ -95.124523941918994, 29.792571211899563 ], [ -95.124563941711131, 29.791608212117325 ], [ -95.12456794174571, 29.791263211883678 ], [ -95.124573941757006, 29.790848212099771 ], [ -95.124590941710522, 29.790432211452053 ], [ -95.124626941356013, 29.789954211581062 ], [ -95.124644942032049, 29.789489211250032 ], [ -95.124643941798041, 29.78902521142814 ], [ -95.124643942156723, 29.788865211559486 ], [ -95.124651941429832, 29.787480210750417 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1153, "Tract": "48201252602", "Area_SqMi": 13.379569144701717, "total_2009": 2518, "total_2010": 1934, "total_2011": 2072, "total_2012": 2959, "total_2013": 3892, "total_2014": 3408, "total_2015": 3711, "total_2016": 3775, "total_2017": 4292, "total_2018": 4550, "total_2019": 5297, "total_2020": 4858, "age1": 328, "age2": 1289, "age3": 505, "earn1": 108, "earn2": 215, "earn3": 1799, "naics_s01": 0, "naics_s02": 96, "naics_s03": 8, "naics_s04": 349, "naics_s05": 739, "naics_s06": 239, "naics_s07": 30, "naics_s08": 518, "naics_s09": 0, "naics_s10": 2, "naics_s11": 48, "naics_s12": 32, "naics_s13": 0, "naics_s14": 38, "naics_s15": 1, "naics_s16": 1, "naics_s17": 0, "naics_s18": 18, "naics_s19": 3, "naics_s20": 0, "race1": 1685, "race2": 311, "race3": 15, "race4": 84, "race5": 3, "race6": 24, "ethnicity1": 1372, "ethnicity2": 750, "edu1": 454, "edu2": 525, "edu3": 507, "edu4": 308, "Shape_Length": 130763.87624235589, "Shape_Area": 372999488.39283311, "total_2021": 3496, "total_2022": 2122 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.128191945791031, 29.868194227267928 ], [ -95.128182946521719, 29.867928227817188 ], [ -95.128118946123649, 29.866454226687608 ], [ -95.128102946484034, 29.866148226853518 ], [ -95.12809194616969, 29.865697226466086 ], [ -95.128081945892333, 29.864411226367594 ], [ -95.128077945799973, 29.864217226596967 ], [ -95.128062945969845, 29.863534226124031 ], [ -95.128055945465093, 29.863156226528968 ], [ -95.12802794586942, 29.861769226329873 ], [ -95.128008945610517, 29.860356225768037 ], [ -95.127983945213188, 29.859052225698601 ], [ -95.127971945854895, 29.858101224964148 ], [ -95.127960945174621, 29.85769322532294 ], [ -95.127957945184079, 29.857616225025509 ], [ -95.127953945915095, 29.857478225680897 ], [ -95.127949945847263, 29.857347224944149 ], [ -95.127939945785798, 29.856797224970936 ], [ -95.127936945925001, 29.856171224602889 ], [ -95.127957945405868, 29.855605224441057 ], [ -95.127986944986233, 29.855005224720419 ], [ -95.127993945035826, 29.854639224396223 ], [ -95.127985944988325, 29.854048224135941 ], [ -95.127976944954966, 29.853374223977028 ], [ -95.127965944896957, 29.852889224184857 ], [ -95.127947945252075, 29.85249022394148 ], [ -95.127945945239659, 29.85243422395645 ], [ -95.127953945233855, 29.852293224502844 ], [ -95.127944945507835, 29.851987224018682 ], [ -95.127931945480896, 29.851584223696431 ], [ -95.127881945563217, 29.850042223720006 ], [ -95.127878945069, 29.849859223360077 ], [ -95.127875945322359, 29.849646223492392 ], [ -95.127868944800966, 29.849263223946284 ], [ -95.127849944962335, 29.848288223781385 ], [ -95.127835945480555, 29.847561222941138 ], [ -95.127829945372085, 29.847320222892744 ], [ -95.12781794558795, 29.846998223331184 ], [ -95.127788945197139, 29.846566223179448 ], [ -95.127750945315, 29.845987223193323 ], [ -95.127737945055017, 29.845637222508604 ], [ -95.127711944680485, 29.844101222179773 ], [ -95.127691944809641, 29.843142222630011 ], [ -95.127641945130236, 29.841391222278624 ], [ -95.127609944892498, 29.840015221755412 ], [ -95.127588944676063, 29.839197221763239 ], [ -95.127565944348504, 29.838196221412812 ], [ -95.127560944745895, 29.837949221249925 ], [ -95.127561944594717, 29.837471221217292 ], [ -95.127584944934881, 29.836449221224541 ], [ -95.127582944467989, 29.836119220629836 ], [ -95.1275769440917, 29.83593222049284 ], [ -95.127573944358488, 29.835840221182824 ], [ -95.127572945019566, 29.835823220536341 ], [ -95.127569944007519, 29.835740221171093 ], [ -95.127557944322604, 29.835431220266425 ], [ -95.127557945015369, 29.8353452203202 ], [ -95.127507944041639, 29.833280220560539 ], [ -95.127493944583719, 29.832716219922109 ], [ -95.127476944325181, 29.832013220253287 ], [ -95.127445944097715, 29.8307782195124 ], [ -95.127418943784861, 29.829762219812519 ], [ -95.127399943829502, 29.829005219472915 ], [ -95.127397944191699, 29.828915219453354 ], [ -95.127394943784921, 29.828777219691148 ], [ -95.127364943729617, 29.827546219377613 ], [ -95.127341944202982, 29.826697218925936 ], [ -95.127296943857843, 29.824764218495389 ], [ -95.127269943893765, 29.82386821859351 ], [ -95.127267944274607, 29.823784218740272 ], [ -95.127246944200152, 29.822809217857806 ], [ -95.127229944216097, 29.821351217780251 ], [ -95.127210943968493, 29.820970217916493 ], [ -95.127165943260323, 29.820514218073257 ], [ -95.127137943595073, 29.820323218002336 ], [ -95.127095943232092, 29.820101217888936 ], [ -95.127014943955359, 29.819663217928756 ], [ -95.126917943770493, 29.819181217832419 ], [ -95.1267769439999, 29.818402217245193 ], [ -95.12651994362858, 29.816942217040481 ], [ -95.126355943525979, 29.816121216481172 ], [ -95.125824943386618, 29.813240216509175 ], [ -95.125556943132381, 29.811773216188971 ], [ -95.125508942988333, 29.811496215997959 ], [ -95.12547594322443, 29.811292215751411 ], [ -95.125343942841923, 29.810306215374908 ], [ -95.125268942594133, 29.809804215690701 ], [ -95.124964942966514, 29.808065215520049 ], [ -95.12491394275159, 29.807754214801708 ], [ -95.124827942943128, 29.80722221514042 ], [ -95.124736942846198, 29.806702214990519 ], [ -95.124536942286881, 29.805457214274849 ], [ -95.124316942385448, 29.804156213992449 ], [ -95.124237942701129, 29.803668214487356 ], [ -95.124118942410959, 29.802886214378479 ], [ -95.124106942644119, 29.802797214345322 ], [ -95.124026942138457, 29.80220321382221 ], [ -95.124003942122002, 29.801997214143629 ], [ -95.123838941861337, 29.801995214317163 ], [ -95.12325994150045, 29.801976214377 ], [ -95.123116941652199, 29.801972214000944 ], [ -95.122979941515823, 29.801974214040335 ], [ -95.122699941370641, 29.801960214200218 ], [ -95.122407941556872, 29.801952213657632 ], [ -95.121904941462319, 29.801932214315247 ], [ -95.121433941752031, 29.801911214412605 ], [ -95.121180941294114, 29.801902213721263 ], [ -95.12051694128985, 29.801882213708062 ], [ -95.119707940481447, 29.801856213934244 ], [ -95.119079940547408, 29.801831214230312 ], [ -95.118680941106248, 29.801818213720797 ], [ -95.11755194055641, 29.801780214045046 ], [ -95.117368940178125, 29.801774213939492 ], [ -95.116800940637432, 29.801755214002021 ], [ -95.116578940401482, 29.801747214594293 ], [ -95.116002940367821, 29.80172421424535 ], [ -95.115942939867011, 29.801719214175836 ], [ -95.115867940073159, 29.801722214460035 ], [ -95.115643940055435, 29.801713214018019 ], [ -95.115027940171345, 29.801686214004107 ], [ -95.114769939719167, 29.801670214562971 ], [ -95.114657939511048, 29.801675214581412 ], [ -95.114453939319532, 29.801658214208757 ], [ -95.114338939457426, 29.801668213832791 ], [ -95.114219939787588, 29.801665213801321 ], [ -95.114097939913819, 29.801653214142238 ], [ -95.113401939345565, 29.801629214374298 ], [ -95.113185938901239, 29.801617214537043 ], [ -95.11151993895281, 29.800434214070791 ], [ -95.111165938203655, 29.800297214137522 ], [ -95.111008938344696, 29.800297214317613 ], [ -95.110604938680851, 29.800374214538909 ], [ -95.110497939064715, 29.800374214250414 ], [ -95.110359938109198, 29.800325213726197 ], [ -95.110258938183094, 29.80023121372486 ], [ -95.110239938746531, 29.800116213658473 ], [ -95.110295938573614, 29.800022214399544 ], [ -95.110333938314454, 29.799929213873796 ], [ -95.110301938302143, 29.799824214230238 ], [ -95.110144938854503, 29.799709213985775 ], [ -95.110096938379982, 29.799680214013453 ], [ -95.109866938416644, 29.799539214349355 ], [ -95.108883938283938, 29.799000214253162 ], [ -95.108674938239091, 29.798901213615107 ], [ -95.108559938063593, 29.798804214055497 ], [ -95.108466937661973, 29.798725214236814 ], [ -95.107753938082084, 29.797983214057442 ], [ -95.107552937292894, 29.797813213653939 ], [ -95.107444937691483, 29.79774721359777 ], [ -95.107375937348877, 29.797725213589224 ], [ -95.107154937563394, 29.797708213667985 ], [ -95.107041937555863, 29.797681213691646 ], [ -95.106953937470735, 29.797621214020399 ], [ -95.106883937191554, 29.797560213290826 ], [ -95.106757937650258, 29.797505214005287 ], [ -95.10664493731484, 29.797472213278819 ], [ -95.106530937678087, 29.797406213300629 ], [ -95.106518937873773, 29.797369213309143 ], [ -95.106442937172574, 29.797131213676547 ], [ -95.106416937186353, 29.796983213563301 ], [ -95.106379937521424, 29.796884213252689 ], [ -95.106025937696643, 29.796648213734134 ], [ -95.10592593670637, 29.796494213523257 ], [ -95.10557893677526, 29.795993213253603 ], [ -95.105559936792233, 29.795966213234546 ], [ -95.105130936594648, 29.795466213380948 ], [ -95.104974936817996, 29.795308213636204 ], [ -95.104789936496942, 29.79511921362888 ], [ -95.104625936646812, 29.795020213139598 ], [ -95.104562936582937, 29.794921213049566 ], [ -95.104537936439854, 29.79481721310168 ], [ -95.104437936656737, 29.79462121330458 ], [ -95.104196936213825, 29.794152212772509 ], [ -95.104177937118493, 29.793822213296352 ], [ -95.104240936181625, 29.793723212859614 ], [ -95.104316936196753, 29.793657212901788 ], [ -95.104416936273239, 29.793629212802458 ], [ -95.104858936959118, 29.793299212996391 ], [ -95.10501593710633, 29.793239212676795 ], [ -95.105166936920938, 29.793206212509649 ], [ -95.105242936551434, 29.793178213094148 ], [ -95.105343936504056, 29.793096212456053 ], [ -95.105469936448245, 29.792898212366197 ], [ -95.105658936602964, 29.792678212555924 ], [ -95.105828937360272, 29.792419212572483 ], [ -95.105923937472184, 29.79233721232373 ], [ -95.106023937530281, 29.792199212364341 ], [ -95.106026937516447, 29.792157212731709 ], [ -95.106030937082494, 29.792084212812455 ], [ -95.105948936752739, 29.791974212238276 ], [ -95.105822937344215, 29.791919212676156 ], [ -95.105695936913108, 29.791820212220184 ], [ -95.105538936637259, 29.79164921251547 ], [ -95.105481936843532, 29.791545212657052 ], [ -95.105506936751951, 29.791369212767641 ], [ -95.105481937263804, 29.791149211945701 ], [ -95.105537937060447, 29.790896212202593 ], [ -95.105433937275663, 29.7905782126026 ], [ -95.105411937168554, 29.790511212256391 ], [ -95.105411937097912, 29.790407212081018 ], [ -95.105455937115977, 29.790313212561781 ], [ -95.105518936896715, 29.790071211860727 ], [ -95.105562937204169, 29.789972212121612 ], [ -95.10561993641079, 29.789906211824395 ], [ -95.105682936757859, 29.789857211754434 ], [ -95.105745937011804, 29.789758212450259 ], [ -95.105713936849483, 29.789565211769855 ], [ -95.105732936396521, 29.789499212248696 ], [ -95.105833937106979, 29.789384212195614 ], [ -95.105871936527748, 29.78935621241671 ], [ -95.106009937210246, 29.789307212104308 ], [ -95.106060936845978, 29.789246211734277 ], [ -95.106091937226793, 29.789114212374173 ], [ -95.106091937413339, 29.789048212377608 ], [ -95.106022937263717, 29.788999211851834 ], [ -95.105965936781388, 29.788977211970138 ], [ -95.105858936605145, 29.788839211699315 ], [ -95.105757936452875, 29.788345211964923 ], [ -95.10575093672449, 29.788279211672581 ], [ -95.105870936635625, 29.788070211311773 ], [ -95.105908937298949, 29.787921212115709 ], [ -95.10589593682576, 29.787872211817437 ], [ -95.105788936366892, 29.787789211730342 ], [ -95.105542936608785, 29.787663211935346 ], [ -95.105416936415864, 29.787586211423893 ], [ -95.105378936941875, 29.787536212003754 ], [ -95.105359936897187, 29.787492211719695 ], [ -95.105378937162385, 29.787393211308121 ], [ -95.10544793695081, 29.787267211710365 ], [ -95.105447936437002, 29.787190211938704 ], [ -95.105391936479847, 29.787113211610453 ], [ -95.105170936193048, 29.786558211297351 ], [ -95.105018936925958, 29.786277211535534 ], [ -95.104962936078962, 29.786096211544539 ], [ -95.104962936169883, 29.786086211152035 ], [ -95.104964936835131, 29.786056211238765 ], [ -95.104969936676397, 29.785962211281941 ], [ -95.104974936211448, 29.785865211556175 ], [ -95.104986936741511, 29.785811211715096 ], [ -95.105017936205059, 29.785676210872428 ], [ -95.103599936236577, 29.786143211035643 ], [ -95.100122935063311, 29.787294211590151 ], [ -95.097346934202179, 29.788212211805877 ], [ -95.095551934512073, 29.788795211975582 ], [ -95.094426934370347, 29.789171212521943 ], [ -95.092185933465416, 29.789899212752111 ], [ -95.090960932958225, 29.790247212990636 ], [ -95.090043933333646, 29.790468212455885 ], [ -95.089544932528895, 29.790562212978841 ], [ -95.089323932510339, 29.790599213196487 ], [ -95.088665932998566, 29.790699212530466 ], [ -95.088566932648376, 29.790714212776052 ], [ -95.087671932657926, 29.79081521294049 ], [ -95.085792931340009, 29.790965213420513 ], [ -95.084685931749348, 29.791104212665644 ], [ -95.083751931236364, 29.791238213181813 ], [ -95.082882931306003, 29.791431212753608 ], [ -95.081147930910106, 29.791912213174037 ], [ -95.080714931006725, 29.792060212972761 ], [ -95.079687929816032, 29.792424213445997 ], [ -95.078550930040535, 29.792839213214243 ], [ -95.077205929457662, 29.793315213351743 ], [ -95.076698929828851, 29.793494213639178 ], [ -95.075996928996275, 29.793743213525364 ], [ -95.075329929538825, 29.793987214392303 ], [ -95.073780928488375, 29.794555214233689 ], [ -95.072796929047811, 29.794904214197945 ], [ -95.072462928659661, 29.795012214239417 ], [ -95.072004928177918, 29.795139214706538 ], [ -95.071523928681628, 29.795245214545911 ], [ -95.071019928113486, 29.795357214160045 ], [ -95.070552928274026, 29.795414214411462 ], [ -95.07013592834528, 29.795442214532677 ], [ -95.06973892774937, 29.795456214350285 ], [ -95.069377928111038, 29.795442214294543 ], [ -95.069197927489327, 29.795448214347548 ], [ -95.068797927970024, 29.7954312147744 ], [ -95.068377927876881, 29.79539621452291 ], [ -95.067539926897169, 29.795269214173906 ], [ -95.067283927604379, 29.795219214220879 ], [ -95.067093927130472, 29.795172214673073 ], [ -95.06669092672611, 29.79507221460209 ], [ -95.066429926531526, 29.794984214627455 ], [ -95.06596992685229, 29.794821214155188 ], [ -95.063741926621319, 29.793827214206907 ], [ -95.062209925336376, 29.793143213959826 ], [ -95.061804925795059, 29.792962214352414 ], [ -95.061627926025679, 29.792883214034699 ], [ -95.060829925875836, 29.792517214052317 ], [ -95.059543924799769, 29.793241214738039 ], [ -95.058688924878183, 29.793855214260279 ], [ -95.05813992529221, 29.794244214586406 ], [ -95.057834924371647, 29.794625214391932 ], [ -95.057529925215405, 29.795037214424312 ], [ -95.057330924237633, 29.795281214645804 ], [ -95.057224925074962, 29.795609214608877 ], [ -95.056964924764898, 29.795827214889403 ], [ -95.056827925075964, 29.796266214687812 ], [ -95.056720924943207, 29.796697214883199 ], [ -95.056674924178836, 29.797025215529381 ], [ -95.056720924146731, 29.797311215697075 ], [ -95.056720924254961, 29.797769215679811 ], [ -95.056873924820479, 29.798261215294282 ], [ -95.057071924431369, 29.798696215341845 ], [ -95.057224925245791, 29.799012215391059 ], [ -95.057483924403329, 29.799333216074753 ], [ -95.057834925483888, 29.799672216131036 ], [ -95.058383925286279, 29.800035216017289 ], [ -95.058902925265855, 29.800336215466221 ], [ -95.059497925538849, 29.800611215840217 ], [ -95.060016925660079, 29.80088121629862 ], [ -95.060825926095234, 29.801225216166245 ], [ -95.061572926257483, 29.801526215652601 ], [ -95.062289926015168, 29.801847216048099 ], [ -95.063052926831517, 29.802114216108269 ], [ -95.064014926567026, 29.802495215922626 ], [ -95.06476192681319, 29.802693216060437 ], [ -95.065418927402021, 29.802869216584792 ], [ -95.066089926792827, 29.802953216557544 ], [ -95.066791927507523, 29.803082215789942 ], [ -95.067447927755325, 29.803170216533168 ], [ -95.068012928160272, 29.803220216384577 ], [ -95.068515927494019, 29.803197215994913 ], [ -95.068973927577204, 29.803239215888315 ], [ -95.069522927986597, 29.803300215635122 ], [ -95.070132928410672, 29.803334216126235 ], [ -95.071676928411449, 29.802989215801638 ], [ -95.072025928553344, 29.802911215706807 ], [ -95.072376928883656, 29.802773215619681 ], [ -95.073444929572048, 29.80261021548214 ], [ -95.074405929283685, 29.802282215822245 ], [ -95.074863929934153, 29.802153216054332 ], [ -95.075167929388243, 29.802038215230645 ], [ -95.076128929400397, 29.801581215251762 ], [ -95.076845929869549, 29.801143215007926 ], [ -95.077547930025347, 29.800659214987189 ], [ -95.078463929986725, 29.800190215300841 ], [ -95.079272930644791, 29.799768214685141 ], [ -95.080629931348057, 29.79934421466438 ], [ -95.081864931199604, 29.79902921518077 ], [ -95.082780930960752, 29.798941214767815 ], [ -95.083223931093841, 29.798716214794176 ], [ -95.084047932110721, 29.798538214707445 ], [ -95.084948931767187, 29.798377214627155 ], [ -95.085970932152819, 29.798241214185367 ], [ -95.086671931873894, 29.798199214104802 ], [ -95.087037932607913, 29.798279214114725 ], [ -95.087541932093217, 29.798371214078351 ], [ -95.088090932811085, 29.798540214598525 ], [ -95.088639933124512, 29.798807214599606 ], [ -95.089214932780536, 29.799254214341314 ], [ -95.089668932829397, 29.799834214404019 ], [ -95.089817932756631, 29.800214215066994 ], [ -95.089817932825753, 29.801724215150109 ], [ -95.089878933195607, 29.803102215510091 ], [ -95.089924933094338, 29.803853215354376 ], [ -95.089924933661621, 29.804242215753003 ], [ -95.08987893396386, 29.804853215615069 ], [ -95.089909933831493, 29.805429215882089 ], [ -95.089924933226499, 29.805711215858246 ], [ -95.090045933621923, 29.806692215947464 ], [ -95.09007793341857, 29.806947216475809 ], [ -95.090229934028144, 29.807870216510043 ], [ -95.090123933732016, 29.80889621627513 ], [ -95.089970933566576, 29.809911216412843 ], [ -95.089893933921346, 29.81126221745486 ], [ -95.089817933983696, 29.812345217049575 ], [ -95.089680933443674, 29.813970217999017 ], [ -95.089222933634431, 29.814714217793156 ], [ -95.088565933710584, 29.815480217606666 ], [ -95.087955933070802, 29.816045218051698 ], [ -95.087039933185864, 29.81666721795262 ], [ -95.086185932765517, 29.817071217941351 ], [ -95.085685932466646, 29.817229218124169 ], [ -95.0853159324258, 29.81734621853262 ], [ -95.084460932525118, 29.817475218351934 ], [ -95.083499932656139, 29.817548218457944 ], [ -95.082690931775574, 29.817555218140395 ], [ -95.082551932417729, 29.817546218703495 ], [ -95.08198993165152, 29.81751321894096 ], [ -95.081027931999927, 29.817475218427372 ], [ -95.080203931348706, 29.817632218883187 ], [ -95.079608931748794, 29.817952218580594 ], [ -95.079150931459793, 29.818452219244012 ], [ -95.079028930886963, 29.819119218770069 ], [ -95.079089931027085, 29.81987121927429 ], [ -95.079395931627772, 29.820797219298441 ], [ -95.079501931833789, 29.821556219493505 ], [ -95.079501931550908, 29.822357219812627 ], [ -95.079395932075585, 29.823109219595413 ], [ -95.079242932064716, 29.823982219568745 ], [ -95.078830931257059, 29.824871220220984 ], [ -95.078387931225308, 29.825417220050106 ], [ -95.077716930939573, 29.825825220728127 ], [ -95.076862930749442, 29.826038220658109 ], [ -95.075900931059252, 29.826092220133052 ], [ -95.075183930635461, 29.825989220139782 ], [ -95.074329930862092, 29.825851220933039 ], [ -95.073367930541849, 29.825554220684349 ], [ -95.07315093002272, 29.825476220664989 ], [ -95.073036930223097, 29.825471220755691 ], [ -95.072557929469582, 29.825262220171531 ], [ -95.07175492930881, 29.825105220777111 ], [ -95.070908929922496, 29.82482922041142 ], [ -95.069686928832496, 29.824429220467536 ], [ -95.069278929325947, 29.824296220458503 ], [ -95.067620928943924, 29.823982220475685 ], [ -95.066970928564402, 29.823947220428035 ], [ -95.066588928474076, 29.82392722054206 ], [ -95.066301928332607, 29.823958220548807 ], [ -95.065490928561417, 29.824191220141529 ], [ -95.06516092838595, 29.824286220230132 ], [ -95.064731927857082, 29.824409220389509 ], [ -95.063665927883861, 29.82496322089797 ], [ -95.063195927205186, 29.825332220448853 ], [ -95.062928927856788, 29.825543221065018 ], [ -95.062481927595684, 29.825969220996082 ], [ -95.06209892770768, 29.826439221325945 ], [ -95.061607927701601, 29.827272220996438 ], [ -95.06147792699285, 29.827637220920135 ], [ -95.061216927133884, 29.828372221911156 ], [ -95.061233927499373, 29.829126221892363 ], [ -95.061455927513478, 29.829931221833938 ], [ -95.061823927509749, 29.830657222172835 ], [ -95.061948927793523, 29.830832221683753 ], [ -95.062002927913682, 29.830908221986689 ], [ -95.062349927342396, 29.83126622183735 ], [ -95.063083928236978, 29.831901222559484 ], [ -95.06356392828377, 29.832245222039347 ], [ -95.06391492844395, 29.83243622260434 ], [ -95.064783928394533, 29.832773222266347 ], [ -95.065932928633075, 29.832993222026669 ], [ -95.066692929246258, 29.832872222621937 ], [ -95.067032928424354, 29.832818222527724 ], [ -95.067204929367733, 29.832768222157146 ], [ -95.067659928796672, 29.832634222475711 ], [ -95.068110929342524, 29.832438222368204 ], [ -95.068696929385567, 29.83218422239139 ], [ -95.069538928918746, 29.831724222315014 ], [ -95.072164929955733, 29.830745221382568 ], [ -95.072986929979834, 29.830500221455949 ], [ -95.074545930416491, 29.83013222171612 ], [ -95.077082931735049, 29.8296102210067 ], [ -95.078994932078686, 29.829382221496463 ], [ -95.081391932340424, 29.829290221247984 ], [ -95.083082933036764, 29.829413220737514 ], [ -95.085155933506357, 29.829810220943276 ], [ -95.085629933178851, 29.829901221336765 ], [ -95.087004934105735, 29.83029422118609 ], [ -95.087654933906023, 29.830394221309753 ], [ -95.088868934335835, 29.83072022071887 ], [ -95.090027934664505, 29.831031221367223 ], [ -95.091907935164372, 29.831575221461485 ], [ -95.093519935314546, 29.83223522144716 ], [ -95.095473936407515, 29.83332522125885 ], [ -95.096320935968407, 29.833842221671713 ], [ -95.097078936951746, 29.834453221854645 ], [ -95.097488936422124, 29.834656221846867 ], [ -95.09994193696771, 29.836228221879281 ], [ -95.101187937536579, 29.837177221830448 ], [ -95.102963937903496, 29.838635222492801 ], [ -95.103366938339377, 29.839092222665894 ], [ -95.103667938712775, 29.839523222357485 ], [ -95.104095938668308, 29.840285222449936 ], [ -95.104268939100109, 29.84059122237683 ], [ -95.104565938370655, 29.841056222246689 ], [ -95.105493938938167, 29.84251322282276 ], [ -95.106384939231731, 29.844179223497182 ], [ -95.106444939212878, 29.844426223656971 ], [ -95.106440939493694, 29.844995223481064 ], [ -95.106428939765962, 29.845028222974189 ], [ -95.106352939643372, 29.845242223401286 ], [ -95.106306939808334, 29.845373223204859 ], [ -95.10609593980999, 29.845684223915129 ], [ -95.104980939436658, 29.845632223311622 ], [ -95.104112939387392, 29.845391223197016 ], [ -95.103314938479926, 29.845010223412721 ], [ -95.10309893841125, 29.844844223088458 ], [ -95.102827938841443, 29.844241223280559 ], [ -95.102564938060183, 29.843965222965469 ], [ -95.101806938096544, 29.843464223252656 ], [ -95.101301938410614, 29.8432452227818 ], [ -95.100991937797446, 29.843111223106465 ], [ -95.100691938233808, 29.84320422316328 ], [ -95.100077937777456, 29.84363022335144 ], [ -95.099513937449117, 29.843932223505746 ], [ -95.098104937109071, 29.844934223492853 ], [ -95.097545937415333, 29.845243223546031 ], [ -95.096893937418344, 29.845680223643836 ], [ -95.096428937487104, 29.845796223632018 ], [ -95.096218936880931, 29.845849223854696 ], [ -95.095599936309924, 29.845832224266314 ], [ -95.094240936055598, 29.845940224161769 ], [ -95.093849936225197, 29.846022224125136 ], [ -95.093636936031572, 29.84606622411447 ], [ -95.093019935981644, 29.846275224404199 ], [ -95.092169936232139, 29.846685224324723 ], [ -95.091643935861839, 29.847251224599471 ], [ -95.091252935949427, 29.847701224245924 ], [ -95.090317935713898, 29.848641224778987 ], [ -95.089882935416298, 29.849594224633471 ], [ -95.089567935537431, 29.850195224947385 ], [ -95.089427935352845, 29.850697224907506 ], [ -95.089344934896488, 29.851216225678922 ], [ -95.089283935409938, 29.851501225041559 ], [ -95.089489935367183, 29.851858225245802 ], [ -95.089679935859195, 29.852411225650112 ], [ -95.091011935494421, 29.85501222612487 ], [ -95.092403936696599, 29.858211226875977 ], [ -95.092633936185152, 29.858552226213209 ], [ -95.092650937023819, 29.858593226965052 ], [ -95.092926936532905, 29.859263226623355 ], [ -95.093198936924139, 29.85962322711298 ], [ -95.093446936845766, 29.860118226678789 ], [ -95.093968936767908, 29.86093822669875 ], [ -95.09403293670394, 29.861475226741138 ], [ -95.093955937355133, 29.861974227441973 ], [ -95.093896937147548, 29.862092227247544 ], [ -95.093692937007305, 29.862503227021008 ], [ -95.093377936489873, 29.86288322711551 ], [ -95.093396937113113, 29.862985227739468 ], [ -95.093724937107154, 29.863525227946297 ], [ -95.093858936760725, 29.863945228009705 ], [ -95.093908937546075, 29.864484227403548 ], [ -95.093890936942159, 29.864659228297729 ], [ -95.093874937623227, 29.864810227608583 ], [ -95.093804936906679, 29.865482227792199 ], [ -95.093788937306343, 29.865631228459943 ], [ -95.093696936674036, 29.865925228309763 ], [ -95.093593936747524, 29.866255228156341 ], [ -95.093631937016752, 29.866950228374193 ], [ -95.093642937180348, 29.86715422823028 ], [ -95.093560937125403, 29.868160228229339 ], [ -95.093638937372759, 29.869272228983476 ], [ -95.093621937134614, 29.869633228805398 ], [ -95.093754937775202, 29.869973229055127 ], [ -95.093865937923866, 29.870465228746337 ], [ -95.094005937237682, 29.871197229115225 ], [ -95.094561937971491, 29.874090230005972 ], [ -95.09443293811249, 29.875200229833251 ], [ -95.094340937380849, 29.875439230385563 ], [ -95.09424393731129, 29.876198230534449 ], [ -95.094189938212722, 29.876619230197104 ], [ -95.094036937983276, 29.876991230781158 ], [ -95.093819937403268, 29.877298230693519 ], [ -95.0937529378687, 29.877689230233084 ], [ -95.093666937959441, 29.878189230320594 ], [ -95.093749937615712, 29.878340230379433 ], [ -95.093863938107489, 29.878546231163337 ], [ -95.094014938129732, 29.878994230676536 ], [ -95.094236937637362, 29.87938123064254 ], [ -95.095281938389718, 29.880172230957516 ], [ -95.09538193815456, 29.880240230961672 ], [ -95.096627938177804, 29.87999923097545 ], [ -95.105217940219916, 29.878105230623824 ], [ -95.106597940674547, 29.87759722962814 ], [ -95.111475941918556, 29.875425229673294 ], [ -95.112368942500112, 29.875027229250435 ], [ -95.114851942923167, 29.874144228648777 ], [ -95.122663944359232, 29.870619228285186 ], [ -95.128191945791031, 29.868194227267928 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1154, "Tract": "48201252901", "Area_SqMi": 3.1372145765478763, "total_2009": 359, "total_2010": 416, "total_2011": 373, "total_2012": 444, "total_2013": 468, "total_2014": 509, "total_2015": 498, "total_2016": 565, "total_2017": 591, "total_2018": 743, "total_2019": 662, "total_2020": 513, "age1": 140, "age2": 265, "age3": 131, "earn1": 123, "earn2": 163, "earn3": 250, "naics_s01": 0, "naics_s02": 0, "naics_s03": 14, "naics_s04": 0, "naics_s05": 0, "naics_s06": 196, "naics_s07": 95, "naics_s08": 2, "naics_s09": 0, "naics_s10": 13, "naics_s11": 19, "naics_s12": 23, "naics_s13": 0, "naics_s14": 51, "naics_s15": 0, "naics_s16": 59, "naics_s17": 0, "naics_s18": 58, "naics_s19": 6, "naics_s20": 0, "race1": 422, "race2": 64, "race3": 6, "race4": 28, "race5": 0, "race6": 16, "ethnicity1": 378, "ethnicity2": 158, "edu1": 93, "edu2": 100, "edu3": 134, "edu4": 69, "Shape_Length": 51832.624991595636, "Shape_Area": 87460172.997744486, "total_2021": 497, "total_2022": 536 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.090123933732016, 29.80889621627513 ], [ -95.090229934028144, 29.807870216510043 ], [ -95.09007793341857, 29.806947216475809 ], [ -95.090045933621923, 29.806692215947464 ], [ -95.089924933226499, 29.805711215858246 ], [ -95.089909933831493, 29.805429215882089 ], [ -95.08987893396386, 29.804853215615069 ], [ -95.089924933661621, 29.804242215753003 ], [ -95.089924933094338, 29.803853215354376 ], [ -95.089878933195607, 29.803102215510091 ], [ -95.089817932825753, 29.801724215150109 ], [ -95.089817932756631, 29.800214215066994 ], [ -95.089668932829397, 29.799834214404019 ], [ -95.089214932780536, 29.799254214341314 ], [ -95.088639933124512, 29.798807214599606 ], [ -95.088090932811085, 29.798540214598525 ], [ -95.087541932093217, 29.798371214078351 ], [ -95.087037932607913, 29.798279214114725 ], [ -95.086671931873894, 29.798199214104802 ], [ -95.085970932152819, 29.798241214185367 ], [ -95.084948931767187, 29.798377214627155 ], [ -95.084047932110721, 29.798538214707445 ], [ -95.083223931093841, 29.798716214794176 ], [ -95.082780930960752, 29.798941214767815 ], [ -95.081864931199604, 29.79902921518077 ], [ -95.080629931348057, 29.79934421466438 ], [ -95.079272930644791, 29.799768214685141 ], [ -95.078463929986725, 29.800190215300841 ], [ -95.077547930025347, 29.800659214987189 ], [ -95.076845929869549, 29.801143215007926 ], [ -95.076128929400397, 29.801581215251762 ], [ -95.075167929388243, 29.802038215230645 ], [ -95.074863929934153, 29.802153216054332 ], [ -95.074405929283685, 29.802282215822245 ], [ -95.073444929572048, 29.80261021548214 ], [ -95.072376928883656, 29.802773215619681 ], [ -95.072025928553344, 29.802911215706807 ], [ -95.071676928411449, 29.802989215801638 ], [ -95.070132928410672, 29.803334216126235 ], [ -95.069522927986597, 29.803300215635122 ], [ -95.068973927577204, 29.803239215888315 ], [ -95.068515927494019, 29.803197215994913 ], [ -95.068012928160272, 29.803220216384577 ], [ -95.067447927755325, 29.803170216533168 ], [ -95.066791927507523, 29.803082215789942 ], [ -95.066089926792827, 29.802953216557544 ], [ -95.065418927402021, 29.802869216584792 ], [ -95.06476192681319, 29.802693216060437 ], [ -95.064014926567026, 29.802495215922626 ], [ -95.063052926831517, 29.802114216108269 ], [ -95.062289926015168, 29.801847216048099 ], [ -95.061572926257483, 29.801526215652601 ], [ -95.060825926095234, 29.801225216166245 ], [ -95.060016925660079, 29.80088121629862 ], [ -95.059497925538849, 29.800611215840217 ], [ -95.058902925265855, 29.800336215466221 ], [ -95.058383925286279, 29.800035216017289 ], [ -95.057834925483888, 29.799672216131036 ], [ -95.057483924403329, 29.799333216074753 ], [ -95.057224925245791, 29.799012215391059 ], [ -95.057071924431369, 29.798696215341845 ], [ -95.056873924820479, 29.798261215294282 ], [ -95.056720924254961, 29.797769215679811 ], [ -95.056720924146731, 29.797311215697075 ], [ -95.056674924178836, 29.797025215529381 ], [ -95.056720924943207, 29.796697214883199 ], [ -95.056827925075964, 29.796266214687812 ], [ -95.056964924764898, 29.795827214889403 ], [ -95.057224925074962, 29.795609214608877 ], [ -95.057330924237633, 29.795281214645804 ], [ -95.057529925215405, 29.795037214424312 ], [ -95.057834924371647, 29.794625214391932 ], [ -95.05813992529221, 29.794244214586406 ], [ -95.058688924878183, 29.793855214260279 ], [ -95.059543924799769, 29.793241214738039 ], [ -95.060829925875836, 29.792517214052317 ], [ -95.060189925615219, 29.79222421414935 ], [ -95.05985492520044, 29.792071214225892 ], [ -95.059370925491564, 29.791841213990732 ], [ -95.058956925421086, 29.791666213899919 ], [ -95.058797924650747, 29.791599213610667 ], [ -95.058014925057094, 29.791267213623236 ], [ -95.057663924850885, 29.791132213727927 ], [ -95.057369924896776, 29.79102421409921 ], [ -95.057265924897123, 29.791343214212066 ], [ -95.057152924782372, 29.791605214281471 ], [ -95.056961923917584, 29.792014214144562 ], [ -95.056925924495019, 29.792092214032806 ], [ -95.056840924055706, 29.792287214059517 ], [ -95.056785924583735, 29.792395214367144 ], [ -95.05669592438997, 29.792536214461652 ], [ -95.05661992477313, 29.792664214457936 ], [ -95.05658392445585, 29.792754214303582 ], [ -95.056576923971122, 29.792773214056268 ], [ -95.056534923874395, 29.792882214195135 ], [ -95.056336923969212, 29.793399214632903 ], [ -95.056242924040404, 29.79364621429994 ], [ -95.056006924251548, 29.794264214544665 ], [ -95.055864924018977, 29.794656214469978 ], [ -95.055825923967646, 29.794754214344735 ], [ -95.055654924236819, 29.795233214948158 ], [ -95.055364923986929, 29.79598421468059 ], [ -95.055269923880942, 29.796262214827525 ], [ -95.055244923895103, 29.796374215430976 ], [ -95.055224924234452, 29.796533215180119 ], [ -95.055218923855648, 29.796785215120391 ], [ -95.055225924639117, 29.796896215720391 ], [ -95.055248923803447, 29.797049215703769 ], [ -95.055273923826391, 29.797170215708924 ], [ -95.055319923952695, 29.797332214899871 ], [ -95.055691924871297, 29.798487215889654 ], [ -95.055816924880148, 29.798963215981683 ], [ -95.055858924810408, 29.799177215646818 ], [ -95.055914924731269, 29.799574216184627 ], [ -95.055931924008647, 29.799736215638237 ], [ -95.055956924592053, 29.800053216256241 ], [ -95.05598092421711, 29.800438215657898 ], [ -95.055983924090043, 29.800666216418513 ], [ -95.055976925023785, 29.801331216537843 ], [ -95.055969924890547, 29.801568215749914 ], [ -95.055953924776716, 29.802257216348668 ], [ -95.055925924484583, 29.803463216900841 ], [ -95.055902924346213, 29.803857216262603 ], [ -95.055904925136844, 29.804080216950588 ], [ -95.055908924857306, 29.804308217099564 ], [ -95.055945924543394, 29.804557217138207 ], [ -95.056054925222782, 29.805206217108939 ], [ -95.056118924493987, 29.805581216872397 ], [ -95.056237924946657, 29.806272216901707 ], [ -95.056303924558108, 29.80664121702949 ], [ -95.056373925051091, 29.807125217442874 ], [ -95.056386925411672, 29.807203217759131 ], [ -95.056616925448481, 29.808637217413004 ], [ -95.056680924583631, 29.809059218051804 ], [ -95.056697925008365, 29.80914321814738 ], [ -95.056802925264194, 29.809789218054675 ], [ -95.056846925187415, 29.810053218101789 ], [ -95.056917924834863, 29.810464217800934 ], [ -95.056933925279864, 29.81058521845835 ], [ -95.056992925333006, 29.810929218216877 ], [ -95.057017925201819, 29.811217218048363 ], [ -95.057047925111917, 29.811834218199106 ], [ -95.057057925429092, 29.812228218699431 ], [ -95.057095925248177, 29.813511218885008 ], [ -95.057129925092426, 29.81445021834697 ], [ -95.057137925793128, 29.81475321864038 ], [ -95.057168925211244, 29.815770219251963 ], [ -95.057174925810415, 29.815899218939627 ], [ -95.057184925322034, 29.816242219169972 ], [ -95.057201926021378, 29.81683521966854 ], [ -95.057211925604634, 29.817120219407087 ], [ -95.057218925432551, 29.81749621903629 ], [ -95.057226925147205, 29.817689219591937 ], [ -95.057238926038536, 29.818274219931379 ], [ -95.057257925188466, 29.818837219734792 ], [ -95.057287925580283, 29.819841220120828 ], [ -95.057357925348569, 29.822112220584074 ], [ -95.057378925803889, 29.823080220754601 ], [ -95.057389926118759, 29.823475220580896 ], [ -95.057398925990356, 29.823603220350527 ], [ -95.057439925827794, 29.824912221362201 ], [ -95.057487926511584, 29.826993221508229 ], [ -95.057498926598072, 29.827444221497018 ], [ -95.057522926137509, 29.828240221414404 ], [ -95.057528926384876, 29.828429222094396 ], [ -95.057559926659252, 29.829723221627532 ], [ -95.057563926502084, 29.829952221876418 ], [ -95.057568926351436, 29.830515222273601 ], [ -95.057565926713153, 29.830667221755167 ], [ -95.057539926061352, 29.831487222017611 ], [ -95.057525925990944, 29.832083222332859 ], [ -95.057528926035118, 29.832353222804198 ], [ -95.057539926761095, 29.832485222324227 ], [ -95.057556926596902, 29.83261122268064 ], [ -95.057593926569311, 29.832822222229201 ], [ -95.057991926615685, 29.832525222295104 ], [ -95.058130926251138, 29.832475222818573 ], [ -95.058312926406003, 29.832475222725012 ], [ -95.05850292622506, 29.832497222246126 ], [ -95.058647926759946, 29.832536222295413 ], [ -95.058830926835824, 29.832563222512032 ], [ -95.058956926483489, 29.832558222785053 ], [ -95.059277926842924, 29.832514222250254 ], [ -95.0594359270506, 29.83250822260133 ], [ -95.059719926557733, 29.83245322259636 ], [ -95.059902927253987, 29.832338222725863 ], [ -95.059971926950567, 29.832277222008873 ], [ -95.060009927168124, 29.83221722233511 ], [ -95.060047927012334, 29.832068222077012 ], [ -95.060078927275711, 29.83185422213495 ], [ -95.060116926919861, 29.831777222293852 ], [ -95.060211927127213, 29.831656222115953 ], [ -95.060274926939982, 29.831623222616308 ], [ -95.060318927522772, 29.831612222145417 ], [ -95.060381927422227, 29.831618222128252 ], [ -95.060589927581873, 29.831717221960336 ], [ -95.060873927142936, 29.831733222509552 ], [ -95.060993927687406, 29.831722222083723 ], [ -95.06110092726253, 29.831695222491497 ], [ -95.061352926820263, 29.831552222087133 ], [ -95.061478927246895, 29.831387222006924 ], [ -95.061510927276302, 29.831249221769458 ], [ -95.062002927913682, 29.830908221986689 ], [ -95.061948927793523, 29.830832221683753 ], [ -95.061823927509749, 29.830657222172835 ], [ -95.061455927513478, 29.829931221833938 ], [ -95.061233927499373, 29.829126221892363 ], [ -95.061216927133884, 29.828372221911156 ], [ -95.06147792699285, 29.827637220920135 ], [ -95.061607927701601, 29.827272220996438 ], [ -95.06209892770768, 29.826439221325945 ], [ -95.062481927595684, 29.825969220996082 ], [ -95.062928927856788, 29.825543221065018 ], [ -95.063195927205186, 29.825332220448853 ], [ -95.063665927883861, 29.82496322089797 ], [ -95.064731927857082, 29.824409220389509 ], [ -95.06516092838595, 29.824286220230132 ], [ -95.065490928561417, 29.824191220141529 ], [ -95.066301928332607, 29.823958220548807 ], [ -95.066588928474076, 29.82392722054206 ], [ -95.066970928564402, 29.823947220428035 ], [ -95.067620928943924, 29.823982220475685 ], [ -95.069278929325947, 29.824296220458503 ], [ -95.069686928832496, 29.824429220467536 ], [ -95.070908929922496, 29.82482922041142 ], [ -95.07175492930881, 29.825105220777111 ], [ -95.072557929469582, 29.825262220171531 ], [ -95.073036930223097, 29.825471220755691 ], [ -95.07315093002272, 29.825476220664989 ], [ -95.073367930541849, 29.825554220684349 ], [ -95.074329930862092, 29.825851220933039 ], [ -95.075183930635461, 29.825989220139782 ], [ -95.075900931059252, 29.826092220133052 ], [ -95.076862930749442, 29.826038220658109 ], [ -95.077716930939573, 29.825825220728127 ], [ -95.078387931225308, 29.825417220050106 ], [ -95.078830931257059, 29.824871220220984 ], [ -95.079242932064716, 29.823982219568745 ], [ -95.079395932075585, 29.823109219595413 ], [ -95.079501931550908, 29.822357219812627 ], [ -95.079501931833789, 29.821556219493505 ], [ -95.079395931627772, 29.820797219298441 ], [ -95.079089931027085, 29.81987121927429 ], [ -95.079028930886963, 29.819119218770069 ], [ -95.079150931459793, 29.818452219244012 ], [ -95.079608931748794, 29.817952218580594 ], [ -95.080203931348706, 29.817632218883187 ], [ -95.081027931999927, 29.817475218427372 ], [ -95.08198993165152, 29.81751321894096 ], [ -95.082551932417729, 29.817546218703495 ], [ -95.082690931775574, 29.817555218140395 ], [ -95.083499932656139, 29.817548218457944 ], [ -95.084460932525118, 29.817475218351934 ], [ -95.0853159324258, 29.81734621853262 ], [ -95.085685932466646, 29.817229218124169 ], [ -95.086185932765517, 29.817071217941351 ], [ -95.087039933185864, 29.81666721795262 ], [ -95.087955933070802, 29.816045218051698 ], [ -95.088565933710584, 29.815480217606666 ], [ -95.089222933634431, 29.814714217793156 ], [ -95.089680933443674, 29.813970217999017 ], [ -95.089817933983696, 29.812345217049575 ], [ -95.089893933921346, 29.81126221745486 ], [ -95.089970933566576, 29.809911216412843 ], [ -95.090123933732016, 29.80889621627513 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1155, "Tract": "48201533402", "Area_SqMi": 1.8243284747342781, "total_2009": 460, "total_2010": 234, "total_2011": 349, "total_2012": 374, "total_2013": 427, "total_2014": 471, "total_2015": 654, "total_2016": 659, "total_2017": 538, "total_2018": 610, "total_2019": 595, "total_2020": 522, "age1": 101, "age2": 296, "age3": 108, "earn1": 75, "earn2": 190, "earn3": 240, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 93, "naics_s05": 3, "naics_s06": 288, "naics_s07": 37, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 23, "naics_s15": 0, "naics_s16": 27, "naics_s17": 0, "naics_s18": 13, "naics_s19": 14, "naics_s20": 0, "race1": 352, "race2": 112, "race3": 9, "race4": 23, "race5": 2, "race6": 7, "ethnicity1": 307, "ethnicity2": 198, "edu1": 99, "edu2": 127, "edu3": 114, "edu4": 64, "Shape_Length": 40129.646936705467, "Shape_Area": 50859155.506201744, "total_2021": 489, "total_2022": 505 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.464573033686904, 29.898750222408736 ], [ -95.464739033584451, 29.898736222513374 ], [ -95.464337033849546, 29.898268222279349 ], [ -95.463516033734393, 29.897476221958996 ], [ -95.463226033794299, 29.897164222109996 ], [ -95.461704032689028, 29.895518221288114 ], [ -95.458535032397151, 29.892107220747633 ], [ -95.457720032147378, 29.891338220434879 ], [ -95.457645031423382, 29.891277220486312 ], [ -95.457371031332656, 29.891056221127741 ], [ -95.456692031315256, 29.890604220852641 ], [ -95.456233031081737, 29.890299220405311 ], [ -95.455882030888617, 29.889987220906395 ], [ -95.454862030532055, 29.888953220774276 ], [ -95.454400030856107, 29.888454220810967 ], [ -95.453585030800738, 29.887631220300694 ], [ -95.453387029990409, 29.887434220246789 ], [ -95.45305603061513, 29.887095219722124 ], [ -95.452162030121386, 29.886209220013402 ], [ -95.451620030111954, 29.885674219687012 ], [ -95.451578029713247, 29.885627220019803 ], [ -95.451375029906998, 29.885423220078795 ], [ -95.450992029230392, 29.88503621939374 ], [ -95.45090802939761, 29.884947220107925 ], [ -95.450852030060219, 29.884887219599335 ], [ -95.450671029666466, 29.884695219392807 ], [ -95.450366029404762, 29.884380220099558 ], [ -95.449506029516655, 29.88352821987371 ], [ -95.448468029067456, 29.882417219705175 ], [ -95.446859028794222, 29.880811219090816 ], [ -95.446808028397086, 29.880766218777616 ], [ -95.446831027995714, 29.880765219451405 ], [ -95.446036028191713, 29.879921218883119 ], [ -95.445187027494939, 29.879102218905356 ], [ -95.444902027561696, 29.878810218976032 ], [ -95.44401402784861, 29.877911218188711 ], [ -95.443867027044519, 29.877778218509892 ], [ -95.442688027416196, 29.876562218436543 ], [ -95.440505026614559, 29.874392217861441 ], [ -95.440354026738362, 29.874235218200969 ], [ -95.439934025909309, 29.873855217633384 ], [ -95.439508025851012, 29.87347721817051 ], [ -95.438939026419206, 29.87293021752793 ], [ -95.438552026468557, 29.872586217287814 ], [ -95.438292025984296, 29.872338217371297 ], [ -95.436627025753097, 29.870770217782212 ], [ -95.435864025284729, 29.870055217357166 ], [ -95.435380025278818, 29.86960421727732 ], [ -95.435022024589458, 29.869273216890921 ], [ -95.434356024209265, 29.868658217428358 ], [ -95.432735024305046, 29.867401217181946 ], [ -95.432459024207546, 29.86718221659169 ], [ -95.431856023863588, 29.866704216576597 ], [ -95.431158024124144, 29.86611021646172 ], [ -95.430640023211026, 29.865673216140369 ], [ -95.429458022842965, 29.864674216782912 ], [ -95.429511023180751, 29.865394216678677 ], [ -95.429561023412759, 29.866020216686433 ], [ -95.429574023794345, 29.867186216544908 ], [ -95.429610023925974, 29.868784217068132 ], [ -95.429626023726101, 29.869940217031584 ], [ -95.429643023755929, 29.870806217914076 ], [ -95.429644023895364, 29.870840217443106 ], [ -95.429647023599102, 29.870962217222566 ], [ -95.429657023670373, 29.87155221809763 ], [ -95.429657023251053, 29.871681218169929 ], [ -95.429668023432299, 29.872274217859996 ], [ -95.429672024063436, 29.872452217626254 ], [ -95.429690023473427, 29.873313217693156 ], [ -95.429707024011762, 29.874134218332017 ], [ -95.429713024027023, 29.874463218413144 ], [ -95.429727024045434, 29.875067218214539 ], [ -95.429732023443023, 29.87617421852822 ], [ -95.429740023495071, 29.876544219018328 ], [ -95.429766024081545, 29.877975219160327 ], [ -95.429811023886302, 29.879174219209727 ], [ -95.429837023887544, 29.880125219292754 ], [ -95.429872023924787, 29.881081219888831 ], [ -95.429903023751734, 29.882021219496554 ], [ -95.429942024478478, 29.883008219866273 ], [ -95.429966024478333, 29.883730219835062 ], [ -95.429975024441632, 29.884006220196721 ], [ -95.429987024376402, 29.884976220892021 ], [ -95.429990024329399, 29.885312221000909 ], [ -95.429988024432731, 29.885642221014262 ], [ -95.430471024486238, 29.885616220807698 ], [ -95.4306030247091, 29.885627220757716 ], [ -95.431133024884844, 29.885599220948972 ], [ -95.43120502426801, 29.885590220774123 ], [ -95.431270024879765, 29.88558222043897 ], [ -95.43136002430154, 29.885572220479943 ], [ -95.431637024678153, 29.885559220442403 ], [ -95.431833024585629, 29.885550220596802 ], [ -95.432042024654251, 29.885561220690015 ], [ -95.433373025378373, 29.885522220845065 ], [ -95.43394102543968, 29.885484220853943 ], [ -95.43425602509069, 29.885473220101538 ], [ -95.434969025290911, 29.885479220490186 ], [ -95.435354026152254, 29.885462220818546 ], [ -95.435505025280278, 29.885473220666697 ], [ -95.435758025844748, 29.885446220303631 ], [ -95.43619302610324, 29.885435220248553 ], [ -95.436912026595365, 29.885396220813156 ], [ -95.437171026529157, 29.885401220541112 ], [ -95.437341026183859, 29.885390220651715 ], [ -95.437581026381707, 29.885391220135812 ], [ -95.438338026310248, 29.885352220143858 ], [ -95.438628026391399, 29.88535221993639 ], [ -95.438744026735506, 29.885347220636021 ], [ -95.440195026822764, 29.885293220223609 ], [ -95.440672027327764, 29.885275219982407 ], [ -95.440784026893297, 29.885269220098952 ], [ -95.44082502773108, 29.889725221110073 ], [ -95.440986027943708, 29.897738223199358 ], [ -95.440989027824145, 29.897894222702487 ], [ -95.441500028240071, 29.897883222382102 ], [ -95.44290802786027, 29.897853222539329 ], [ -95.445636029049609, 29.897808222935009 ], [ -95.446978028741924, 29.897783222520438 ], [ -95.448401029136321, 29.897754222145792 ], [ -95.44988202968058, 29.897725222147791 ], [ -95.450776030638693, 29.89770622271044 ], [ -95.452765030906193, 29.89766422190516 ], [ -95.453337030425061, 29.8976522221047 ], [ -95.454320030937666, 29.897646222099446 ], [ -95.455470031901342, 29.89763922249303 ], [ -95.455867031161645, 29.897637222172296 ], [ -95.457476032289051, 29.897639222106733 ], [ -95.460105032466984, 29.897624222303499 ], [ -95.460703032966336, 29.897665221993957 ], [ -95.461131032353293, 29.897759221788046 ], [ -95.461451033161964, 29.897855221926889 ], [ -95.461613032993199, 29.897923222500445 ], [ -95.46206903270442, 29.898113222371791 ], [ -95.46220603309537, 29.89817022189008 ], [ -95.462709033552429, 29.898457222572617 ], [ -95.463123033695283, 29.898771221863228 ], [ -95.463552034041967, 29.899215222181105 ], [ -95.463711033506215, 29.899102222586244 ], [ -95.463834033255736, 29.899002222096794 ], [ -95.464051033360803, 29.8989082223314 ], [ -95.464298033252874, 29.898797222330305 ], [ -95.464573033686904, 29.898750222408736 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1156, "Tract": "48201533903", "Area_SqMi": 0.64530123820151997, "total_2009": 349, "total_2010": 230, "total_2011": 18, "total_2012": 544, "total_2013": 555, "total_2014": 515, "total_2015": 618, "total_2016": 589, "total_2017": 688, "total_2018": 781, "total_2019": 776, "total_2020": 836, "age1": 334, "age2": 370, "age3": 144, "earn1": 248, "earn2": 392, "earn3": 208, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 5, "naics_s07": 303, "naics_s08": 10, "naics_s09": 0, "naics_s10": 37, "naics_s11": 0, "naics_s12": 132, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 14, "naics_s17": 0, "naics_s18": 304, "naics_s19": 31, "naics_s20": 0, "race1": 585, "race2": 157, "race3": 14, "race4": 77, "race5": 2, "race6": 13, "ethnicity1": 508, "ethnicity2": 340, "edu1": 147, "edu2": 143, "edu3": 151, "edu4": 73, "Shape_Length": 19710.535894100791, "Shape_Area": 17989894.076951217, "total_2021": 776, "total_2022": 848 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.493724042652417, 29.920188225639034 ], [ -95.493851042421326, 29.919998225028099 ], [ -95.492562041790066, 29.919209225485606 ], [ -95.491334041631859, 29.918429225086314 ], [ -95.490487041536113, 29.917890225038242 ], [ -95.489087041094407, 29.917019224758828 ], [ -95.487456040821883, 29.916005225196439 ], [ -95.487392040241204, 29.915965225018279 ], [ -95.485114040051869, 29.91452522506502 ], [ -95.48422703933241, 29.913965224193685 ], [ -95.48338203955727, 29.913435224264273 ], [ -95.482655038834139, 29.912979223969515 ], [ -95.481596038487581, 29.912315224024841 ], [ -95.479999038001097, 29.911301224558212 ], [ -95.479976038251564, 29.911417224462699 ], [ -95.479874038169243, 29.911664224197541 ], [ -95.479795038752115, 29.911982224469629 ], [ -95.479724038382543, 29.912311224163712 ], [ -95.479688038723538, 29.912549224852658 ], [ -95.479674037919693, 29.912706224794082 ], [ -95.479666038523362, 29.912792224876551 ], [ -95.479648037991481, 29.913156224763611 ], [ -95.47964703847245, 29.913222224537837 ], [ -95.479643038140978, 29.91351722421096 ], [ -95.479649038712878, 29.913671225016053 ], [ -95.47965303874409, 29.913758224901432 ], [ -95.479676038511585, 29.913998224384862 ], [ -95.4797090383518, 29.914236225140069 ], [ -95.47975303862367, 29.91447122443584 ], [ -95.479807038444989, 29.91470322489052 ], [ -95.479873038260251, 29.914933224883526 ], [ -95.479953038018365, 29.915166224893039 ], [ -95.48004603865418, 29.915403224941343 ], [ -95.480151038556386, 29.915635225101628 ], [ -95.480268038302398, 29.915855224812525 ], [ -95.480953038640948, 29.916987224863501 ], [ -95.481067038703131, 29.917199225654372 ], [ -95.481169039287948, 29.917413225067722 ], [ -95.481258039025491, 29.917627225606644 ], [ -95.481334038612815, 29.917839225357657 ], [ -95.481347039380367, 29.917887225121344 ], [ -95.481449039092325, 29.918250225789297 ], [ -95.481484038911987, 29.918421225963364 ], [ -95.481514039029207, 29.918570226031541 ], [ -95.481530039183454, 29.918663225721755 ], [ -95.481550039370475, 29.918775225225254 ], [ -95.48158203927791, 29.919068225570047 ], [ -95.481590039482384, 29.919255225818652 ], [ -95.481591039351599, 29.919299225623192 ], [ -95.481593038802728, 29.919376226183605 ], [ -95.481597038974058, 29.919553225485263 ], [ -95.481605039460518, 29.919930225821034 ], [ -95.481610038864574, 29.920628226112505 ], [ -95.481610038808057, 29.920681225643357 ], [ -95.481618039368811, 29.921595226087412 ], [ -95.481627039491798, 29.922126226140108 ], [ -95.481636039100735, 29.922826226228516 ], [ -95.481638039467114, 29.923203226813538 ], [ -95.48163003948342, 29.92356322658059 ], [ -95.481608039111364, 29.923804226730326 ], [ -95.481562039571173, 29.92408322700766 ], [ -95.481445039335654, 29.924700227261056 ], [ -95.481394039228803, 29.924988226980645 ], [ -95.481366039289014, 29.925244226993541 ], [ -95.481354039393835, 29.92547922695481 ], [ -95.481356039766865, 29.926025227217785 ], [ -95.481372039790656, 29.927100227539416 ], [ -95.481375039765013, 29.927356227700756 ], [ -95.481375039293752, 29.927637227757518 ], [ -95.481396039766224, 29.929038227338602 ], [ -95.481405039119807, 29.929313228040836 ], [ -95.481404039752462, 29.9293902282628 ], [ -95.481412039760642, 29.929541227929615 ], [ -95.481534039175742, 29.929542228106257 ], [ -95.481669040056431, 29.929532227878443 ], [ -95.481815039983047, 29.929509227829829 ], [ -95.481981039353386, 29.929468227877802 ], [ -95.482832039800059, 29.929208228059249 ], [ -95.482950039564557, 29.929201228076785 ], [ -95.483199040435281, 29.929197227993704 ], [ -95.483506040446926, 29.92918722742758 ], [ -95.484114040269603, 29.929183227952183 ], [ -95.484988039989759, 29.929172227733932 ], [ -95.485189040038335, 29.92918122791799 ], [ -95.485480040413833, 29.929180227852633 ], [ -95.485867040489495, 29.929170227945928 ], [ -95.486151040297372, 29.929168227205189 ], [ -95.486223040873881, 29.929172227721981 ], [ -95.486443041117028, 29.929165227632073 ], [ -95.486655040598563, 29.929168227889175 ], [ -95.486734040695055, 29.929173227284487 ], [ -95.486870041251805, 29.929184227870845 ], [ -95.486937041096695, 29.929198227813895 ], [ -95.487155041321714, 29.929264227309545 ], [ -95.487246041181791, 29.929300227672794 ], [ -95.487336041442106, 29.929342227517633 ], [ -95.487508041361082, 29.929440228065531 ], [ -95.488056040923212, 29.929785228003027 ], [ -95.488331041347607, 29.929960227264203 ], [ -95.488768041000981, 29.93023022739699 ], [ -95.488854040962835, 29.930293227728512 ], [ -95.488937041076483, 29.930345228177426 ], [ -95.489022041709447, 29.930388227907812 ], [ -95.489099041571848, 29.930442227594654 ], [ -95.489259041734442, 29.930545228166174 ], [ -95.489336042061382, 29.930587227770037 ], [ -95.489494041895199, 29.930633227641742 ], [ -95.48963604169009, 29.930658228008387 ], [ -95.48975504201573, 29.930664227443565 ], [ -95.489844041456635, 29.930660227686968 ], [ -95.489842041854132, 29.930404227638338 ], [ -95.489831041606095, 29.930345227323638 ], [ -95.489847041591901, 29.930184228131523 ], [ -95.489848041895939, 29.930103227774122 ], [ -95.489838041681622, 29.929964228058601 ], [ -95.489837041725437, 29.929736227202302 ], [ -95.489845041428325, 29.929588227288775 ], [ -95.489868041668245, 29.929440227917539 ], [ -95.489903041620494, 29.929303227212223 ], [ -95.489992041994796, 29.929058227365264 ], [ -95.490083041980625, 29.929081227570169 ], [ -95.490177041467319, 29.929098227190917 ], [ -95.490277041615983, 29.929108227000899 ], [ -95.4904470412488, 29.929111227838664 ], [ -95.490595041445502, 29.929107227733383 ], [ -95.490741041568512, 29.929076227408469 ], [ -95.490805041834733, 29.929043227583772 ], [ -95.490888042127409, 29.929027227430208 ], [ -95.491147041495466, 29.928903227199026 ], [ -95.491266041810547, 29.928829227782824 ], [ -95.491297041713992, 29.928809227080677 ], [ -95.491505042242323, 29.928696226959431 ], [ -95.491558042393763, 29.928655227516312 ], [ -95.491673042319761, 29.92858922755234 ], [ -95.491752042087768, 29.928545227729675 ], [ -95.491821042548423, 29.928516227529929 ], [ -95.491872041823598, 29.928478227331656 ], [ -95.492043042422893, 29.928382227248797 ], [ -95.492246042461502, 29.928269227099875 ], [ -95.492363042528055, 29.928211227047822 ], [ -95.492541042268513, 29.928105227118614 ], [ -95.492395042015431, 29.927906227441113 ], [ -95.492209041806433, 29.927613227057087 ], [ -95.492088041732245, 29.927397227437943 ], [ -95.491944042052751, 29.92710022731908 ], [ -95.491829041915665, 29.926818226945251 ], [ -95.491739042050824, 29.926556226931748 ], [ -95.491644042325845, 29.926207227074542 ], [ -95.491592041667772, 29.925918227121738 ], [ -95.491543041580172, 29.925615226913038 ], [ -95.491517042247423, 29.925324226714498 ], [ -95.491511041462147, 29.925086226855345 ], [ -95.49152504168994, 29.924818226826158 ], [ -95.491549041500107, 29.924520226035629 ], [ -95.491585041347378, 29.924266226173021 ], [ -95.491635041887761, 29.924008226406695 ], [ -95.49170704153687, 29.923741226024049 ], [ -95.491715041461049, 29.923710226181242 ], [ -95.49181504213459, 29.923415226292441 ], [ -95.491840042092178, 29.923353226253909 ], [ -95.491950041510435, 29.923077226321325 ], [ -95.49202904182863, 29.922906226153916 ], [ -95.492119041810724, 29.922731226104485 ], [ -95.492281042101339, 29.922454226474301 ], [ -95.492626041798985, 29.921922225495901 ], [ -95.493035042277356, 29.921295225502536 ], [ -95.493087041697081, 29.921213226108712 ], [ -95.493127042235443, 29.92114922589451 ], [ -95.493293042205792, 29.920884225720073 ], [ -95.493435041891289, 29.920659225828064 ], [ -95.49351804266486, 29.920518225875725 ], [ -95.493724042652417, 29.920188225639034 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1157, "Tract": "48201541701", "Area_SqMi": 3.1193339400847022, "total_2009": 549, "total_2010": 562, "total_2011": 580, "total_2012": 991, "total_2013": 967, "total_2014": 1063, "total_2015": 1054, "total_2016": 989, "total_2017": 1110, "total_2018": 1105, "total_2019": 1267, "total_2020": 1100, "age1": 265, "age2": 582, "age3": 295, "earn1": 353, "earn2": 337, "earn3": 452, "naics_s01": 4, "naics_s02": 0, "naics_s03": 0, "naics_s04": 250, "naics_s05": 40, "naics_s06": 50, "naics_s07": 79, "naics_s08": 45, "naics_s09": 1, "naics_s10": 13, "naics_s11": 25, "naics_s12": 27, "naics_s13": 0, "naics_s14": 351, "naics_s15": 7, "naics_s16": 12, "naics_s17": 126, "naics_s18": 57, "naics_s19": 55, "naics_s20": 0, "race1": 922, "race2": 82, "race3": 16, "race4": 95, "race5": 5, "race6": 22, "ethnicity1": 630, "ethnicity2": 512, "edu1": 255, "edu2": 203, "edu3": 219, "edu4": 200, "Shape_Length": 43038.098206121744, "Shape_Area": 86961691.456166357, "total_2021": 1044, "total_2022": 1142 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.686801087427654, 29.826493199990143 ], [ -95.686853087522266, 29.825849199429634 ], [ -95.686801086924461, 29.825333199431523 ], [ -95.686657086997599, 29.824611199082248 ], [ -95.686574087634739, 29.824049199219502 ], [ -95.68656508740716, 29.823986198961094 ], [ -95.686548087299002, 29.82333719944549 ], [ -95.686575087101915, 29.823111198755178 ], [ -95.686625087162781, 29.82269819905283 ], [ -95.686645086711152, 29.822091198928227 ], [ -95.686649087293418, 29.821983198756925 ], [ -95.686630087275759, 29.821281198810059 ], [ -95.686630087219925, 29.820904198296123 ], [ -95.686630086967256, 29.820545198753372 ], [ -95.686612086529593, 29.819900198450423 ], [ -95.686602087420852, 29.818594198256108 ], [ -95.686601086512681, 29.817139198321769 ], [ -95.686591086532886, 29.816321197309751 ], [ -95.686632086301671, 29.815514197970465 ], [ -95.686616086917866, 29.814659197780696 ], [ -95.686570086299739, 29.813896196932777 ], [ -95.686644086962758, 29.812914197193688 ], [ -95.686799086163248, 29.812272197127839 ], [ -95.686379087059564, 29.812171196584231 ], [ -95.686267086893068, 29.812154196550285 ], [ -95.685789086074649, 29.812106196989411 ], [ -95.685294086145916, 29.812072196875604 ], [ -95.685086086392417, 29.812067196892556 ], [ -95.684947086224042, 29.812063196858599 ], [ -95.68466008626983, 29.812063197229783 ], [ -95.684484086414187, 29.812063197238249 ], [ -95.683421085697674, 29.812074196803568 ], [ -95.682563085539442, 29.812077196600189 ], [ -95.681992085908291, 29.812081196934685 ], [ -95.680049084794106, 29.812094197042928 ], [ -95.679997084494346, 29.812094197365834 ], [ -95.678765084362951, 29.812103197201736 ], [ -95.677856084375478, 29.812104196795524 ], [ -95.677189084110921, 29.812105196758463 ], [ -95.67644808351487, 29.812114197162618 ], [ -95.676319083506314, 29.812118197383736 ], [ -95.676142084445686, 29.812120197000237 ], [ -95.675429083286616, 29.812125197007141 ], [ -95.675126083483718, 29.812127197349547 ], [ -95.669570082035307, 29.812165197372934 ], [ -95.669475082250486, 29.812219197553112 ], [ -95.66945608245463, 29.81228219709503 ], [ -95.669459082785366, 29.81259119727957 ], [ -95.669449081811777, 29.813042197514612 ], [ -95.669450081868973, 29.813129198051691 ], [ -95.669479082711888, 29.814986198182197 ], [ -95.669505082244044, 29.81622819833192 ], [ -95.669506082937829, 29.816398198530354 ], [ -95.669507082298097, 29.816481198712985 ], [ -95.669494082033594, 29.816533198522496 ], [ -95.669462082763317, 29.816572198539539 ], [ -95.669412082599379, 29.816601198458454 ], [ -95.669341082491982, 29.816612198178277 ], [ -95.669267082527384, 29.816611198412527 ], [ -95.667184081746584, 29.816632198671648 ], [ -95.667181082005825, 29.816622198395919 ], [ -95.66544508190988, 29.816648198104676 ], [ -95.663772081406066, 29.816674198657509 ], [ -95.663712080771276, 29.816674198540451 ], [ -95.662133081072128, 29.816701198996554 ], [ -95.661531080380669, 29.81671119893792 ], [ -95.661548080294239, 29.814735198558431 ], [ -95.656955078869643, 29.814758198152113 ], [ -95.656209079451216, 29.814755198293941 ], [ -95.654186078655798, 29.814775198697873 ], [ -95.65253707777498, 29.814779198244171 ], [ -95.646937076597581, 29.814812199030783 ], [ -95.645540076276191, 29.814829198420181 ], [ -95.645532076114549, 29.816015199117057 ], [ -95.64550907590484, 29.817653199435476 ], [ -95.645505076180243, 29.81945719985503 ], [ -95.645551076653902, 29.824625200620382 ], [ -95.645650076966632, 29.830607201627419 ], [ -95.64565007686366, 29.830644202171026 ], [ -95.645650076985206, 29.831238201957472 ], [ -95.645649076713241, 29.831835202075133 ], [ -95.645649077169693, 29.832898202289307 ], [ -95.645641077542635, 29.833424202190493 ], [ -95.645641077646545, 29.833663202729618 ], [ -95.645640077523694, 29.83390120253932 ], [ -95.645637076889386, 29.834745202741054 ], [ -95.645636077008092, 29.835190202718856 ], [ -95.645635077387325, 29.835365203031593 ], [ -95.645635076782085, 29.835540203051437 ], [ -95.645633077197544, 29.835996202967412 ], [ -95.645759076981236, 29.83599520268152 ], [ -95.645980077279972, 29.835994202731616 ], [ -95.646084076970254, 29.835993203381634 ], [ -95.646452077684927, 29.835994202930038 ], [ -95.646525077337941, 29.835995203456708 ], [ -95.646599077885654, 29.835995202735358 ], [ -95.646767077829978, 29.835995203011592 ], [ -95.646935077542395, 29.835994203009971 ], [ -95.647087077743919, 29.835994202679665 ], [ -95.647364078036247, 29.835995203493596 ], [ -95.647488077893797, 29.835995203094068 ], [ -95.647681077980636, 29.835995203525716 ], [ -95.647873077798309, 29.835994202984818 ], [ -95.648317077895939, 29.835995203492644 ], [ -95.648605077655802, 29.835996203171998 ], [ -95.648716078136374, 29.835997202662597 ], [ -95.648760078194329, 29.835997202879238 ], [ -95.64882807811675, 29.835996203448641 ], [ -95.648872078454772, 29.8359972027942 ], [ -95.649030078052391, 29.836002203365435 ], [ -95.64942707866048, 29.83599820333939 ], [ -95.650182078418212, 29.836004202988661 ], [ -95.650242078433848, 29.836001203261301 ], [ -95.650435078618841, 29.835994202917735 ], [ -95.650532078331821, 29.835991202966436 ], [ -95.650856078571223, 29.835969202929938 ], [ -95.651002078876616, 29.835956202777435 ], [ -95.651247078627108, 29.835928203374042 ], [ -95.651637079022137, 29.835860203170032 ], [ -95.651951078575465, 29.835785203030021 ], [ -95.652322078951187, 29.835684202874766 ], [ -95.652578078684158, 29.835615202411304 ], [ -95.653456079262497, 29.835370202538193 ], [ -95.65387307958747, 29.83525620262618 ], [ -95.65460607960226, 29.835051202591867 ], [ -95.654714079749269, 29.835025202810961 ], [ -95.654738079824128, 29.835019202735399 ], [ -95.654805079726898, 29.834994202789428 ], [ -95.654878079742701, 29.834982202528867 ], [ -95.654942079060163, 29.834959202701715 ], [ -95.655135079121607, 29.834907202879737 ], [ -95.65531207967507, 29.834859202917833 ], [ -95.655610079932032, 29.834768202299649 ], [ -95.655832080242192, 29.834687202730564 ], [ -95.655973080094256, 29.834630202573809 ], [ -95.656152079989852, 29.834557202046287 ], [ -95.656208079888259, 29.834532202413193 ], [ -95.65627008002302, 29.834504202360584 ], [ -95.656468080193633, 29.834403202354491 ], [ -95.656749079511229, 29.834243202683496 ], [ -95.657014080027054, 29.834075202072 ], [ -95.657222079680508, 29.833927201945027 ], [ -95.657353079890967, 29.833822201865441 ], [ -95.657410079982142, 29.833775201892685 ], [ -95.657511080234499, 29.833701202170246 ], [ -95.657605079920728, 29.833614202213074 ], [ -95.657776080035504, 29.83347220184752 ], [ -95.658031080792796, 29.833262202072646 ], [ -95.658726080519926, 29.832687201896714 ], [ -95.659252081009626, 29.832257201908913 ], [ -95.659445080741165, 29.832112202197656 ], [ -95.659639080824519, 29.831981201795735 ], [ -95.659935080839276, 29.8318042018232 ], [ -95.66023508058646, 29.831649201954676 ], [ -95.660440081303051, 29.831556201377058 ], [ -95.660753080615024, 29.831432201935822 ], [ -95.661065080709207, 29.831326201438081 ], [ -95.66132308088828, 29.83125520181164 ], [ -95.661600081262435, 29.831191201273899 ], [ -95.66189008088908, 29.831137201234316 ], [ -95.662274081580293, 29.831082201672178 ], [ -95.662405081626446, 29.831067201221934 ], [ -95.662801081442367, 29.831022201553388 ], [ -95.664322081892934, 29.831030201233908 ], [ -95.665747082508773, 29.831016201712405 ], [ -95.666198081878008, 29.831012201781 ], [ -95.666343082054738, 29.8310142017644 ], [ -95.666464082348938, 29.831016201584966 ], [ -95.666827082708096, 29.831016201833616 ], [ -95.666936082127719, 29.831011201276478 ], [ -95.667558082152311, 29.83101820097184 ], [ -95.668039082421728, 29.831017201357668 ], [ -95.668598083147813, 29.831025201399047 ], [ -95.668810082421899, 29.83103520107257 ], [ -95.669168082538576, 29.831053200877548 ], [ -95.669402083494916, 29.831060201678572 ], [ -95.669726082899643, 29.831069201608273 ], [ -95.669746083277303, 29.831070201045797 ], [ -95.670711083276046, 29.831076201551451 ], [ -95.671053083494115, 29.831078201615522 ], [ -95.671926083464044, 29.831081200943132 ], [ -95.672657083565781, 29.831083201177769 ], [ -95.673181084369162, 29.831099201339367 ], [ -95.673428084415704, 29.831106200794476 ], [ -95.673690084423853, 29.831111200797164 ], [ -95.67476808400329, 29.831116201336076 ], [ -95.674903084338467, 29.831110200876076 ], [ -95.67508008431362, 29.831112201433207 ], [ -95.677452085505294, 29.831118200834148 ], [ -95.677588085228578, 29.83112320138726 ], [ -95.677715084857383, 29.831118201205708 ], [ -95.678096085646885, 29.83112420115355 ], [ -95.678228085751726, 29.831120200761919 ], [ -95.678932085802728, 29.831121201014962 ], [ -95.679375085813959, 29.83111720055869 ], [ -95.679633085254665, 29.831108201028421 ], [ -95.679990086180595, 29.831103200946732 ], [ -95.680526086385029, 29.831101201314294 ], [ -95.680830085894797, 29.831104200674989 ], [ -95.681078086030539, 29.831102201265189 ], [ -95.681213085710738, 29.83110520125847 ], [ -95.681324085834675, 29.831103200795898 ], [ -95.683174086185375, 29.831110200979964 ], [ -95.684857086810155, 29.831111200550989 ], [ -95.684872086577229, 29.831063200535258 ], [ -95.684890087037715, 29.831006201105879 ], [ -95.684898087167895, 29.830979200665219 ], [ -95.685021087427813, 29.830581200788757 ], [ -95.685155086778053, 29.830146200800534 ], [ -95.685446087254078, 29.829563200482689 ], [ -95.685493086823541, 29.82948820013047 ], [ -95.68563308730711, 29.829270200856403 ], [ -95.685779086697551, 29.829043200288918 ], [ -95.685870086670135, 29.828901200559184 ], [ -95.685902087396514, 29.828850200728898 ], [ -95.685951087312247, 29.828765200372079 ], [ -95.686031087360448, 29.828625200462394 ], [ -95.686373087412562, 29.828028200428157 ], [ -95.686553087591676, 29.827579200365705 ], [ -95.686625086990148, 29.827402199850646 ], [ -95.686733087231389, 29.827004199464504 ], [ -95.686801087427654, 29.826493199990143 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1158, "Tract": "48201541902", "Area_SqMi": 1.1599569445389941, "total_2009": 129, "total_2010": 84, "total_2011": 132, "total_2012": 131, "total_2013": 168, "total_2014": 348, "total_2015": 389, "total_2016": 395, "total_2017": 394, "total_2018": 430, "total_2019": 368, "total_2020": 370, "age1": 53, "age2": 200, "age3": 93, "earn1": 62, "earn2": 117, "earn3": 167, "naics_s01": 0, "naics_s02": 21, "naics_s03": 2, "naics_s04": 79, "naics_s05": 71, "naics_s06": 2, "naics_s07": 23, "naics_s08": 0, "naics_s09": 3, "naics_s10": 20, "naics_s11": 7, "naics_s12": 21, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 51, "naics_s17": 2, "naics_s18": 10, "naics_s19": 22, "naics_s20": 0, "race1": 239, "race2": 49, "race3": 2, "race4": 50, "race5": 1, "race6": 5, "ethnicity1": 225, "ethnicity2": 121, "edu1": 65, "edu2": 69, "edu3": 84, "edu4": 75, "Shape_Length": 24081.769604548768, "Shape_Area": 32337614.327595335, "total_2021": 335, "total_2022": 346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.703409091431183, 29.815684196859603 ], [ -95.703648091446254, 29.815050197260728 ], [ -95.702830090534505, 29.815035196862915 ], [ -95.70236109111994, 29.815017196517903 ], [ -95.701459090624638, 29.814942197090712 ], [ -95.701179090173767, 29.8149291969094 ], [ -95.700928090585521, 29.814929197413296 ], [ -95.700642090315426, 29.814942197024113 ], [ -95.700344089762439, 29.814963197182269 ], [ -95.700017090374047, 29.815008197301896 ], [ -95.699691090487121, 29.815064197469635 ], [ -95.699402089690835, 29.815129197468213 ], [ -95.699355089740777, 29.815142197370115 ], [ -95.699258090014013, 29.815169197341195 ], [ -95.698589089368937, 29.815356196664553 ], [ -95.698289089947309, 29.815424197121587 ], [ -95.697996089161464, 29.815481197177427 ], [ -95.697664089921602, 29.815529196817064 ], [ -95.6973150894095, 29.81556219752748 ], [ -95.696952089403055, 29.815580197306502 ], [ -95.696590089457771, 29.81557719701242 ], [ -95.696240088861643, 29.815560197295337 ], [ -95.696016088695643, 29.815539197483009 ], [ -95.695692088667911, 29.815498197579402 ], [ -95.695485089136383, 29.815464197229037 ], [ -95.695109088484557, 29.815386197464701 ], [ -95.694898088653744, 29.815331197502324 ], [ -95.694644089073094, 29.815260197681575 ], [ -95.694407088329086, 29.815182197277604 ], [ -95.694075088331161, 29.815055197120472 ], [ -95.693790088778357, 29.8149301972201 ], [ -95.693593088103569, 29.814836196980977 ], [ -95.693154088043897, 29.814604197045103 ], [ -95.693086088823435, 29.814564197324 ], [ -95.692769088286227, 29.814400197025822 ], [ -95.692532088722686, 29.814290196823741 ], [ -95.692362088160181, 29.814218196810003 ], [ -95.691991087593294, 29.814081197062347 ], [ -95.69166008822539, 29.813978196930144 ], [ -95.691449088186957, 29.813922196753687 ], [ -95.691014087635523, 29.813825196713204 ], [ -95.690718087764822, 29.813764196643767 ], [ -95.690347087678546, 29.81367719693861 ], [ -95.690051087591513, 29.813594196804083 ], [ -95.689659087530273, 29.813463196768961 ], [ -95.689379087354183, 29.813354196930113 ], [ -95.689038087602228, 29.813197197339562 ], [ -95.688459087541489, 29.812901197105866 ], [ -95.688115087075985, 29.812731196916975 ], [ -95.687898087395894, 29.812623196817608 ], [ -95.687755086869458, 29.812563196890022 ], [ -95.687445086718284, 29.812456196472748 ], [ -95.687151086535948, 29.812371196634373 ], [ -95.686979086375061, 29.812313196959792 ], [ -95.686799086163248, 29.812272197127839 ], [ -95.686644086962758, 29.812914197193688 ], [ -95.686570086299739, 29.813896196932777 ], [ -95.686616086917866, 29.814659197780696 ], [ -95.686632086301671, 29.815514197970465 ], [ -95.686591086532886, 29.816321197309751 ], [ -95.686601086512681, 29.817139198321769 ], [ -95.686602087420852, 29.818594198256108 ], [ -95.686612086529593, 29.819900198450423 ], [ -95.686630086967256, 29.820545198753372 ], [ -95.686630087219925, 29.820904198296123 ], [ -95.686630087275759, 29.821281198810059 ], [ -95.686649087293418, 29.821983198756925 ], [ -95.686645086711152, 29.822091198928227 ], [ -95.686625087162781, 29.82269819905283 ], [ -95.686575087101915, 29.823111198755178 ], [ -95.686548087299002, 29.82333719944549 ], [ -95.68656508740716, 29.823986198961094 ], [ -95.686574087634739, 29.824049199219502 ], [ -95.686657086997599, 29.824611199082248 ], [ -95.686801086924461, 29.825333199431523 ], [ -95.686853087522266, 29.825849199429634 ], [ -95.686801087427654, 29.826493199990143 ], [ -95.686733087231389, 29.827004199464504 ], [ -95.686625086990148, 29.827402199850646 ], [ -95.686553087591676, 29.827579200365705 ], [ -95.686373087412562, 29.828028200428157 ], [ -95.686031087360448, 29.828625200462394 ], [ -95.685951087312247, 29.828765200372079 ], [ -95.685902087396514, 29.828850200728898 ], [ -95.685870086670135, 29.828901200559184 ], [ -95.685779086697551, 29.829043200288918 ], [ -95.68563308730711, 29.829270200856403 ], [ -95.685493086823541, 29.82948820013047 ], [ -95.685446087254078, 29.829563200482689 ], [ -95.685155086778053, 29.830146200800534 ], [ -95.685021087427813, 29.830581200788757 ], [ -95.684898087167895, 29.830979200665219 ], [ -95.684890087037715, 29.831006201105879 ], [ -95.684872086577229, 29.831063200535258 ], [ -95.684857086810155, 29.831111200550989 ], [ -95.685040087546525, 29.831113200923152 ], [ -95.686292087636204, 29.831110200941179 ], [ -95.6864880874069, 29.831109200884224 ], [ -95.686609087413316, 29.831109200457266 ], [ -95.686719087489166, 29.831109200714632 ], [ -95.686783087759181, 29.83110720059036 ], [ -95.6868460876059, 29.831106201043756 ], [ -95.68787608777221, 29.831088200660599 ], [ -95.688664087523904, 29.831078200385075 ], [ -95.689665088693985, 29.831077200369631 ], [ -95.689759087785703, 29.831077200268179 ], [ -95.691692089167987, 29.831083200276254 ], [ -95.694913089661853, 29.831095200224308 ], [ -95.702175091713542, 29.831124199774635 ], [ -95.702313091830845, 29.83112519985573 ], [ -95.7023190919532, 29.831072200366176 ], [ -95.702339091885079, 29.830991199880504 ], [ -95.702365091063498, 29.830643200066572 ], [ -95.702405091542488, 29.830256199600971 ], [ -95.702492091117662, 29.829895199927968 ], [ -95.702641092005791, 29.829540199720121 ], [ -95.703132091958679, 29.828719199886869 ], [ -95.703331091817418, 29.828340199449585 ], [ -95.703468091921934, 29.828011199696686 ], [ -95.703529091593438, 29.827644199690273 ], [ -95.703527091302107, 29.82738919903657 ], [ -95.703507091076872, 29.825523199362042 ], [ -95.703506091167853, 29.825380199071912 ], [ -95.703499091948245, 29.824824198937645 ], [ -95.703502091395492, 29.824611198578342 ], [ -95.70349509187659, 29.824254198612522 ], [ -95.703494091627974, 29.82414619915647 ], [ -95.7034920916945, 29.823617198555272 ], [ -95.703465091321888, 29.821974198714972 ], [ -95.703467091750511, 29.821812197934879 ], [ -95.703463091218623, 29.821375198614675 ], [ -95.703451091746089, 29.820837197655397 ], [ -95.703453091157286, 29.820616198211201 ], [ -95.703448090975641, 29.820229197544858 ], [ -95.703419091377754, 29.817706197458417 ], [ -95.703404090688153, 29.816038196793141 ], [ -95.703409091431183, 29.815684196859603 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1159, "Tract": "48201241503", "Area_SqMi": 6.853537185267454, "total_2009": 13171, "total_2010": 13341, "total_2011": 12088, "total_2012": 11150, "total_2013": 11708, "total_2014": 12780, "total_2015": 11919, "total_2016": 13304, "total_2017": 11779, "total_2018": 12054, "total_2019": 13069, "total_2020": 11936, "age1": 1868, "age2": 7481, "age3": 2717, "earn1": 967, "earn2": 2222, "earn3": 8877, "naics_s01": 0, "naics_s02": 279, "naics_s03": 66, "naics_s04": 1110, "naics_s05": 660, "naics_s06": 1703, "naics_s07": 212, "naics_s08": 3991, "naics_s09": 267, "naics_s10": 131, "naics_s11": 344, "naics_s12": 697, "naics_s13": 109, "naics_s14": 894, "naics_s15": 0, "naics_s16": 359, "naics_s17": 14, "naics_s18": 789, "naics_s19": 342, "naics_s20": 99, "race1": 8748, "race2": 2282, "race3": 77, "race4": 759, "race5": 31, "race6": 169, "ethnicity1": 8115, "ethnicity2": 3951, "edu1": 2121, "edu2": 2763, "edu3": 3043, "edu4": 2271, "Shape_Length": 100724.9735540712, "Shape_Area": 191064886.77913323, "total_2021": 10968, "total_2022": 12066 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.384027015834562, 29.949394235556735 ], [ -95.38407401587304, 29.949393235001274 ], [ -95.384022015320923, 29.949208235358793 ], [ -95.383498015282939, 29.947100234369003 ], [ -95.383085014605641, 29.945438234376624 ], [ -95.382748015233901, 29.944085233766828 ], [ -95.382541014714477, 29.943253233985949 ], [ -95.382358014617523, 29.942516234064012 ], [ -95.38201301501023, 29.94113823381527 ], [ -95.381990015029047, 29.94104523326595 ], [ -95.381650014651854, 29.939687233306252 ], [ -95.381546014024764, 29.939271233198802 ], [ -95.381508014583716, 29.939119233175202 ], [ -95.381449014752477, 29.93888323300575 ], [ -95.381404014657306, 29.938701233575749 ], [ -95.381193014608442, 29.938701232927194 ], [ -95.381018014607818, 29.938701233088537 ], [ -95.380008013574596, 29.93870223301046 ], [ -95.377211012803414, 29.938721232915107 ], [ -95.372734012251769, 29.938756233165972 ], [ -95.37219801234609, 29.938760233379327 ], [ -95.371406011834168, 29.938766233166529 ], [ -95.369274011020352, 29.938783233987216 ], [ -95.364531010003688, 29.938820233655619 ], [ -95.361480009208591, 29.938880233951132 ], [ -95.360023009012806, 29.938911233842695 ], [ -95.356596007887092, 29.938954234241006 ], [ -95.356393008056429, 29.938961233777565 ], [ -95.356247008250534, 29.93896123422758 ], [ -95.355934007709052, 29.938959233899613 ], [ -95.355577007436423, 29.93895823437088 ], [ -95.353598007074865, 29.938977233883712 ], [ -95.349688006482538, 29.938980233954428 ], [ -95.34896200560037, 29.938988234640988 ], [ -95.345591004896917, 29.939022234524099 ], [ -95.345435005381546, 29.939024234628619 ], [ -95.341778003927786, 29.939028234376174 ], [ -95.338857003698863, 29.939076234290756 ], [ -95.337338003390101, 29.939083234461034 ], [ -95.332657001774876, 29.939103234620852 ], [ -95.331736001725403, 29.939107234561074 ], [ -95.331587001725552, 29.939108234643683 ], [ -95.331523001149719, 29.939108234916958 ], [ -95.331271001608783, 29.939109235090854 ], [ -95.330220000972943, 29.939114235303247 ], [ -95.323150998895684, 29.939186235377385 ], [ -95.321806998910077, 29.939218235462143 ], [ -95.320429999150846, 29.939235235654461 ], [ -95.318915998815697, 29.939235235103173 ], [ -95.318152998283821, 29.939208234999704 ], [ -95.315880997631567, 29.939225235941716 ], [ -95.315623997171087, 29.939227235711389 ], [ -95.315429997148271, 29.939225235267006 ], [ -95.314843997528186, 29.939218235167377 ], [ -95.314489997143369, 29.939215235623266 ], [ -95.312418997079718, 29.939279235456063 ], [ -95.312149996981063, 29.939283235853864 ], [ -95.311995996276508, 29.939285235805023 ], [ -95.311646996521901, 29.939291235406976 ], [ -95.311654996702586, 29.939420235361414 ], [ -95.311002995997399, 29.939452235545286 ], [ -95.309955996005215, 29.939521236121099 ], [ -95.308981996108372, 29.939653235646727 ], [ -95.307097995371777, 29.939871235950996 ], [ -95.304534994405429, 29.93993123597475 ], [ -95.30426399440627, 29.939943236010286 ], [ -95.303710994524906, 29.939943235650258 ], [ -95.303444994264936, 29.939943235811182 ], [ -95.303451994562664, 29.940065236139738 ], [ -95.303455994242569, 29.94016123654588 ], [ -95.303461994288583, 29.940289236197142 ], [ -95.303484993919625, 29.940783236681057 ], [ -95.30350499402816, 29.941255236761599 ], [ -95.30350899414141, 29.941340236758982 ], [ -95.303571994634424, 29.942340236509619 ], [ -95.303626994896476, 29.943494236482948 ], [ -95.303639994472277, 29.943986236988376 ], [ -95.303693994672869, 29.944970236979582 ], [ -95.303696994360934, 29.94526323686096 ], [ -95.303743994809963, 29.946158237427955 ], [ -95.303775994956041, 29.946834237389705 ], [ -95.303816994865215, 29.947679237994979 ], [ -95.30387499482255, 29.948724238115439 ], [ -95.303905994616983, 29.949227238052956 ], [ -95.303964994608933, 29.950392238043854 ], [ -95.303997995271189, 29.950790238436486 ], [ -95.30410799508482, 29.951289238817498 ], [ -95.304319994949068, 29.952241238332384 ], [ -95.305425995607152, 29.956848239678685 ], [ -95.305827995514008, 29.958588240084477 ], [ -95.30635099636207, 29.960789240267868 ], [ -95.306515996123409, 29.961519240060916 ], [ -95.306968996341752, 29.963392240628824 ], [ -95.307159996800578, 29.964193241224965 ], [ -95.30768799681951, 29.966407241094565 ], [ -95.308016996956511, 29.967788241461857 ], [ -95.308238996939778, 29.968756241454962 ], [ -95.30830699711278, 29.969156241548816 ], [ -95.308334996719239, 29.969487242056324 ], [ -95.308350996512516, 29.970680242551051 ], [ -95.308364996804684, 29.971117241901851 ], [ -95.308362997553971, 29.971728241984493 ], [ -95.308352997098027, 29.9719472427212 ], [ -95.308329997519337, 29.972067242175861 ], [ -95.308376997004061, 29.972973242513564 ], [ -95.308401996829247, 29.975936243581188 ], [ -95.317512999970631, 29.975922242806412 ], [ -95.318367000118329, 29.976261243016946 ], [ -95.319740000251869, 29.976269242637027 ], [ -95.328533002590234, 29.976267242415073 ], [ -95.329555003057351, 29.975838242278126 ], [ -95.332525003632938, 29.975838242873895 ], [ -95.332831003723484, 29.975936242749434 ], [ -95.333455004227801, 29.975925242039395 ], [ -95.336897004495384, 29.975904242188342 ], [ -95.337200004238881, 29.975813242203991 ], [ -95.337259004721872, 29.975813242121188 ], [ -95.33715400421049, 29.975722242462727 ], [ -95.336626004892381, 29.975266242206295 ], [ -95.335388004392783, 29.974255241966464 ], [ -95.335003003672526, 29.973975242135619 ], [ -95.334725003590833, 29.973529241915504 ], [ -95.334207004117985, 29.972659241771826 ], [ -95.333442003730156, 29.971374241066471 ], [ -95.33329000306027, 29.971166241144907 ], [ -95.333053003116632, 29.970896241621727 ], [ -95.333019002866791, 29.970858241796169 ], [ -95.332943003275673, 29.970786241593039 ], [ -95.331756002641228, 29.969797241233277 ], [ -95.331580003195072, 29.969665240926162 ], [ -95.331440002557201, 29.969560240905373 ], [ -95.331288003148515, 29.969385240814542 ], [ -95.330852003006143, 29.968758241292473 ], [ -95.330639002875131, 29.968388241003236 ], [ -95.330268002462034, 29.967741240630847 ], [ -95.329930002781822, 29.967153240659844 ], [ -95.329753002073005, 29.966828240499197 ], [ -95.329691002213195, 29.966745240669464 ], [ -95.329671001986299, 29.966718240949088 ], [ -95.329639001781132, 29.966647240938581 ], [ -95.329602002424636, 29.966597240872705 ], [ -95.329576001868801, 29.966537240772755 ], [ -95.329538002365425, 29.96629524090979 ], [ -95.329551001786399, 29.966147240125601 ], [ -95.329835002295965, 29.966136240413569 ], [ -95.329527002249279, 29.96562424067848 ], [ -95.328178001966947, 29.963383239660061 ], [ -95.325897001354122, 29.959622239517078 ], [ -95.324874000446187, 29.957995239275899 ], [ -95.324897000640959, 29.957614239400662 ], [ -95.324833000261933, 29.95685023849877 ], [ -95.324800000914124, 29.95199723750828 ], [ -95.326862001054636, 29.95177623750714 ], [ -95.32718200138477, 29.951770237924396 ], [ -95.328773001700412, 29.951738237674277 ], [ -95.329302001272922, 29.951728237627322 ], [ -95.331402001889685, 29.951686237803585 ], [ -95.331631002092436, 29.951688237547934 ], [ -95.33173200169584, 29.951689237117016 ], [ -95.331876001819808, 29.951690237176255 ], [ -95.332414002108578, 29.95169523770118 ], [ -95.333102002078775, 29.951702237222065 ], [ -95.335211002611146, 29.9517192376113 ], [ -95.33931600359729, 29.951760237625329 ], [ -95.339877004691061, 29.95176523695163 ], [ -95.339897004255576, 29.952338237368647 ], [ -95.339929004714776, 29.952601237815951 ], [ -95.339939004774379, 29.952654237879173 ], [ -95.340005004827319, 29.952988237337234 ], [ -95.34016000444997, 29.953461237341333 ], [ -95.340278004444798, 29.953721237481517 ], [ -95.341450004322965, 29.955669237632694 ], [ -95.342149005458921, 29.956824238399214 ], [ -95.342961005016136, 29.958138238791214 ], [ -95.343932005638052, 29.959733238350264 ], [ -95.344266005443842, 29.959905238853473 ], [ -95.344455005981629, 29.959940238797572 ], [ -95.344785005800929, 29.959976238344272 ], [ -95.345233006018319, 29.959988238870011 ], [ -95.345729006002301, 29.960047238344345 ], [ -95.346177006465979, 29.960176239128028 ], [ -95.34655400639717, 29.960341238875749 ], [ -95.34683700693445, 29.960542238835554 ], [ -95.347108006554635, 29.960789238403255 ], [ -95.347450007019972, 29.961273238805539 ], [ -95.34776900633706, 29.961780239370448 ], [ -95.348099007037888, 29.962322239254345 ], [ -95.348240007215452, 29.962700239592682 ], [ -95.348417007111166, 29.96313623962352 ], [ -95.348594007016885, 29.963478239243919 ], [ -95.34901900735197, 29.964138239669776 ], [ -95.349549007284423, 29.964976239892337 ], [ -95.349809007380557, 29.965459240129967 ], [ -95.350068007354452, 29.965801239671759 ], [ -95.350257007586663, 29.965801239410293 ], [ -95.350576007742944, 29.965663239742497 ], [ -95.353386008267208, 29.965618239684421 ], [ -95.356728009126314, 29.965578239588528 ], [ -95.356778009682472, 29.965694239685675 ], [ -95.356823009540605, 29.965749239160559 ], [ -95.356829009431038, 29.965820239823884 ], [ -95.357751009246428, 29.966204239310425 ], [ -95.358294009939598, 29.966413239938134 ], [ -95.358408010093527, 29.966496239885281 ], [ -95.358409009569172, 29.967876239949771 ], [ -95.358415009323863, 29.968046239694203 ], [ -95.358390009564729, 29.968161240280249 ], [ -95.358390009614112, 29.969124239911352 ], [ -95.358397009763394, 29.969410240396474 ], [ -95.358365010030312, 29.969910239976723 ], [ -95.358372009871729, 29.970949240864243 ], [ -95.364261010989594, 29.970908240370562 ], [ -95.364224011194111, 29.970086240327248 ], [ -95.364164011456495, 29.96849523974694 ], [ -95.364147011669175, 29.967796239315117 ], [ -95.364098010895816, 29.966652239501862 ], [ -95.364066011346154, 29.966325239341124 ], [ -95.364012010759595, 29.966054239721853 ], [ -95.363906011315336, 29.965687239316789 ], [ -95.363847010671137, 29.96548423948358 ], [ -95.363755010865248, 29.96534923949142 ], [ -95.363567010705125, 29.965020239220486 ], [ -95.363371011347652, 29.964725239028404 ], [ -95.361643010166645, 29.962128238478172 ], [ -95.361373009781374, 29.96169523838806 ], [ -95.361223010335024, 29.961438238928825 ], [ -95.361110010499957, 29.961217238095227 ], [ -95.360891010484934, 29.960756238035415 ], [ -95.360784010205037, 29.960458238719212 ], [ -95.360565009991817, 29.959772238243367 ], [ -95.360367009340607, 29.95896623809028 ], [ -95.359947010148815, 29.957179237427361 ], [ -95.359908009819208, 29.9570172377258 ], [ -95.359862009103836, 29.956822237291423 ], [ -95.35969100902139, 29.956103237119159 ], [ -95.359583009157745, 29.955651237504643 ], [ -95.358898009624752, 29.95277723665648 ], [ -95.358492008606106, 29.951104236244792 ], [ -95.35802900900147, 29.948963236477276 ], [ -95.357577008718067, 29.946989235869296 ], [ -95.357452008008408, 29.946439235409724 ], [ -95.357084008038981, 29.944727234830609 ], [ -95.356996007913281, 29.944359234974467 ], [ -95.35649200794343, 29.942286235056095 ], [ -95.356283008052273, 29.941322234362588 ], [ -95.356258007686961, 29.941145234484477 ], [ -95.356249007582505, 29.940956234407341 ], [ -95.356256008444703, 29.940676234181094 ], [ -95.356260008400469, 29.940518234488696 ], [ -95.356231007611868, 29.940262234295638 ], [ -95.356849008456791, 29.940247234692123 ], [ -95.357214007990905, 29.940238234648877 ], [ -95.358344008718376, 29.94022123410209 ], [ -95.358407008984813, 29.940210234288173 ], [ -95.358596008830915, 29.940155234205434 ], [ -95.358767008843316, 29.940149234419263 ], [ -95.358975008155809, 29.940160234184813 ], [ -95.35917700833626, 29.940210234655908 ], [ -95.359228008725822, 29.94023223459542 ], [ -95.359379008296415, 29.940331233914517 ], [ -95.359986009017646, 29.940858234726178 ], [ -95.360339008901462, 29.941210234285709 ], [ -95.360579008864079, 29.941408234376272 ], [ -95.360933009440444, 29.941748234653112 ], [ -95.361400009559389, 29.942358234277208 ], [ -95.361868009096796, 29.943029234510121 ], [ -95.362291009359737, 29.943683234770216 ], [ -95.362367009680312, 29.94381523495549 ], [ -95.362569009735353, 29.944024235040679 ], [ -95.362740009396489, 29.944134235261799 ], [ -95.362973010118807, 29.94423823466304 ], [ -95.363598010405312, 29.944436234557095 ], [ -95.363897009980619, 29.944514234801829 ], [ -95.364748009997612, 29.944738234991831 ], [ -95.367114010756964, 29.945291234801321 ], [ -95.367305010635334, 29.945336234901919 ], [ -95.367401010769527, 29.945356235050475 ], [ -95.367930011468147, 29.945468234791395 ], [ -95.368410011675351, 29.945621235017057 ], [ -95.36850401088256, 29.945675234999779 ], [ -95.368574011256058, 29.945715235158367 ], [ -95.368638011030555, 29.945781235260526 ], [ -95.368738010928382, 29.94588523527457 ], [ -95.368839011701525, 29.946000235366739 ], [ -95.368877011243427, 29.946072234893197 ], [ -95.368915011805669, 29.946171235254646 ], [ -95.369048011879443, 29.946748234800502 ], [ -95.369080011792519, 29.946825234926248 ], [ -95.369143011331815, 29.946896235245973 ], [ -95.36928801143938, 29.947012235361008 ], [ -95.36938301210877, 29.947072235242661 ], [ -95.369534011572384, 29.947094235677604 ], [ -95.370671011893322, 29.947050234884195 ], [ -95.370818011812148, 29.947062234897977 ], [ -95.371012012471681, 29.947077235584654 ], [ -95.371163011786251, 29.947126234970632 ], [ -95.37125801243063, 29.94717623523486 ], [ -95.37132101258257, 29.947242234915265 ], [ -95.371422011626876, 29.947390235122224 ], [ -95.371410012465901, 29.947637235122016 ], [ -95.371328012290306, 29.947852235460825 ], [ -95.371265011726464, 29.948050234980766 ], [ -95.371252011620882, 29.948127235782646 ], [ -95.371252012109366, 29.948237235521756 ], [ -95.371315011966857, 29.948440235656676 ], [ -95.371448011972177, 29.948770235378223 ], [ -95.371543011815589, 29.94894623566536 ], [ -95.371617011952608, 29.949031235483833 ], [ -95.371701012176345, 29.949100235914837 ], [ -95.371808012077707, 29.949171235251807 ], [ -95.371960012630495, 29.949226235970865 ], [ -95.372130012201637, 29.949248235950833 ], [ -95.372219012637501, 29.949270235798515 ], [ -95.372894012707746, 29.949248235611087 ], [ -95.372993012732806, 29.949236235595791 ], [ -95.373159012592311, 29.949215235847991 ], [ -95.37336801220178, 29.949181235488648 ], [ -95.374252012583142, 29.94918623543343 ], [ -95.374573013210039, 29.949170235938784 ], [ -95.375009013535703, 29.949170235609927 ], [ -95.379578014758707, 29.949121235122476 ], [ -95.380487014815586, 29.949127235567797 ], [ -95.381428014375032, 29.949072235530458 ], [ -95.381605014729132, 29.949045235213287 ], [ -95.38175601517419, 29.949039235413213 ], [ -95.382021014421468, 29.948984235147858 ], [ -95.38219201456144, 29.94899523565196 ], [ -95.383634015094671, 29.949318234948706 ], [ -95.383915015018232, 29.949375235437358 ], [ -95.384027015834562, 29.949394235556735 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1160, "Tract": "48201240503", "Area_SqMi": 0.083444411733772594, "total_2009": 10, "total_2010": 10, "total_2011": 45, "total_2012": 41, "total_2013": 43, "total_2014": 23, "total_2015": 14, "total_2016": 14, "total_2017": 9, "total_2018": 11, "total_2019": 8, "total_2020": 11, "age1": null, "age2": null, "age3": null, "earn1": null, "earn2": null, "earn3": null, "naics_s01": null, "naics_s02": null, "naics_s03": null, "naics_s04": null, "naics_s05": null, "naics_s06": null, "naics_s07": null, "naics_s08": null, "naics_s09": null, "naics_s10": null, "naics_s11": null, "naics_s12": null, "naics_s13": null, "naics_s14": null, "naics_s15": null, "naics_s16": null, "naics_s17": null, "naics_s18": null, "naics_s19": null, "naics_s20": null, "race1": null, "race2": null, "race3": null, "race4": null, "race5": null, "race6": null, "ethnicity1": null, "ethnicity2": null, "edu1": null, "edu2": null, "edu3": null, "edu4": null, "Shape_Length": 8246.0275229145536, "Shape_Area": 2326287.382599568, "total_2021": 7, "total_2022": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.393192017781118, 29.950659235146841 ], [ -95.393186017927476, 29.949534235000833 ], [ -95.393187017927346, 29.949373234781991 ], [ -95.393168017781719, 29.948165234821392 ], [ -95.392776017587607, 29.948163234981905 ], [ -95.391975016923695, 29.94817123459428 ], [ -95.391702017815192, 29.94817123469932 ], [ -95.3911930174811, 29.948183235109138 ], [ -95.390563017047697, 29.948190234818863 ], [ -95.390395017389963, 29.948188234384908 ], [ -95.389608017306244, 29.948196234376567 ], [ -95.389208016822764, 29.94821023518141 ], [ -95.389102016581617, 29.948223234893732 ], [ -95.389004016167348, 29.948243234612896 ], [ -95.388916016166178, 29.948278234742205 ], [ -95.388813016326438, 29.948341234652556 ], [ -95.388724016494407, 29.948428235076182 ], [ -95.388461016881351, 29.948747235167417 ], [ -95.387707016182688, 29.948217234931981 ], [ -95.38712301664367, 29.94896523522981 ], [ -95.386752016618232, 29.949389235322009 ], [ -95.386341016248494, 29.949615235394727 ], [ -95.385969016183594, 29.949721235133431 ], [ -95.38586701571306, 29.949315234817103 ], [ -95.385525015652107, 29.949310235542423 ], [ -95.38473001565022, 29.949398235650293 ], [ -95.38460301573231, 29.949403235165224 ], [ -95.384385015162223, 29.949399235370265 ], [ -95.384250015575162, 29.949397235090146 ], [ -95.38407401587304, 29.949393235001274 ], [ -95.38418401521534, 29.94978723546415 ], [ -95.384290015575573, 29.950622235324182 ], [ -95.38428901566347, 29.951073235272684 ], [ -95.38423501553109, 29.951487235915426 ], [ -95.384232015627191, 29.951564235271242 ], [ -95.38416801522915, 29.952026235349383 ], [ -95.384796016006902, 29.951615235702949 ], [ -95.384953015546742, 29.951537235553868 ], [ -95.385617015431109, 29.95119823595547 ], [ -95.386269015622588, 29.951002235483521 ], [ -95.386730016531857, 29.950905235500212 ], [ -95.387036015936303, 29.950849235621494 ], [ -95.387404016146476, 29.9508112352319 ], [ -95.388077016187466, 29.950770235699576 ], [ -95.388811017072598, 29.950750235492038 ], [ -95.390494016903077, 29.950710235021525 ], [ -95.391180017171877, 29.950689235534568 ], [ -95.391392017664103, 29.950685235523043 ], [ -95.391611017118862, 29.95068823527372 ], [ -95.393192017781118, 29.950659235146841 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1161, "Tract": "48201340400", "Area_SqMi": 0.61930023850532556, "total_2009": 2442, "total_2010": 2996, "total_2011": 2559, "total_2012": 2076, "total_2013": 2275, "total_2014": 2462, "total_2015": 2369, "total_2016": 2549, "total_2017": 3090, "total_2018": 2699, "total_2019": 2230, "total_2020": 2087, "age1": 371, "age2": 1079, "age3": 485, "earn1": 280, "earn2": 419, "earn3": 1236, "naics_s01": 0, "naics_s02": 0, "naics_s03": 13, "naics_s04": 205, "naics_s05": 4, "naics_s06": 5, "naics_s07": 234, "naics_s08": 1, "naics_s09": 7, "naics_s10": 92, "naics_s11": 12, "naics_s12": 748, "naics_s13": 162, "naics_s14": 17, "naics_s15": 67, "naics_s16": 92, "naics_s17": 0, "naics_s18": 188, "naics_s19": 88, "naics_s20": 0, "race1": 1461, "race2": 242, "race3": 13, "race4": 177, "race5": 2, "race6": 40, "ethnicity1": 1492, "ethnicity2": 443, "edu1": 218, "edu2": 367, "edu3": 481, "edu4": 498, "Shape_Length": 16598.90334733346, "Shape_Area": 17265030.706577048, "total_2021": 1873, "total_2022": 1935 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.121505931232633, 29.578438168377922 ], [ -95.122014931851524, 29.577493167613447 ], [ -95.119292930987044, 29.576369167396827 ], [ -95.118497931012811, 29.576041168113253 ], [ -95.11642792992852, 29.575210167469702 ], [ -95.115130929497653, 29.574646167290634 ], [ -95.114436929558224, 29.574355167281105 ], [ -95.113805929187293, 29.574090167738429 ], [ -95.111843928726174, 29.573284167411753 ], [ -95.110376928942259, 29.57272416764371 ], [ -95.109601927995669, 29.572382166893377 ], [ -95.107901927661473, 29.575537167596341 ], [ -95.106401927380418, 29.578321168749984 ], [ -95.105636927695514, 29.579740169013824 ], [ -95.103671927715155, 29.583386169427616 ], [ -95.103646927715573, 29.583433169855248 ], [ -95.104488927594758, 29.584102170009036 ], [ -95.105395927301259, 29.584740170023903 ], [ -95.105910928280352, 29.585038170350142 ], [ -95.106204927727745, 29.585129169774223 ], [ -95.106562928190044, 29.585208170399991 ], [ -95.10852892905217, 29.585352169627946 ], [ -95.10889192900126, 29.585288169585183 ], [ -95.109526928744202, 29.585036170091097 ], [ -95.1099249286016, 29.584947170171993 ], [ -95.110336928903848, 29.584960169577112 ], [ -95.110482929185025, 29.585011169830377 ], [ -95.110808928707897, 29.5850271701506 ], [ -95.112578929281952, 29.585363169583559 ], [ -95.112622929423154, 29.585372169792628 ], [ -95.113276929305215, 29.585367169376486 ], [ -95.113604929882456, 29.585259169533771 ], [ -95.113814929552049, 29.585191170021801 ], [ -95.115606930490188, 29.584256169225139 ], [ -95.116039930534981, 29.584142169840266 ], [ -95.116813930714287, 29.584079169165481 ], [ -95.118524930782314, 29.584224169203171 ], [ -95.118541931427316, 29.584175169144643 ], [ -95.118564930999753, 29.584118169498815 ], [ -95.118665930691748, 29.583874169603948 ], [ -95.118834931075199, 29.583494169052535 ], [ -95.119222931072485, 29.582694169217412 ], [ -95.119696931180712, 29.581793168957095 ], [ -95.120919931388983, 29.579561168377939 ], [ -95.121505931232633, 29.578438168377922 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1162, "Tract": "48201550102", "Area_SqMi": 1.0248148823947112, "total_2009": 5736, "total_2010": 4410, "total_2011": 5244, "total_2012": 3921, "total_2013": 3895, "total_2014": 6515, "total_2015": 7081, "total_2016": 5531, "total_2017": 7312, "total_2018": 7807, "total_2019": 7939, "total_2020": 7287, "age1": 1096, "age2": 4108, "age3": 1194, "earn1": 407, "earn2": 736, "earn3": 5255, "naics_s01": 0, "naics_s02": 2371, "naics_s03": 20, "naics_s04": 542, "naics_s05": 4, "naics_s06": 150, "naics_s07": 288, "naics_s08": 1149, "naics_s09": 130, "naics_s10": 298, "naics_s11": 140, "naics_s12": 78, "naics_s13": 0, "naics_s14": 74, "naics_s15": 38, "naics_s16": 1030, "naics_s17": 0, "naics_s18": 23, "naics_s19": 61, "naics_s20": 2, "race1": 4763, "race2": 1071, "race3": 56, "race4": 400, "race5": 23, "race6": 85, "ethnicity1": 4504, "ethnicity2": 1894, "edu1": 982, "edu2": 1377, "edu3": 1691, "edu4": 1252, "Shape_Length": 27108.651891498557, "Shape_Area": 28570084.932963714, "total_2021": 6301, "total_2022": 6398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.450910032513491, 29.937912230869387 ], [ -95.451073031944674, 29.937735230912935 ], [ -95.449053031521458, 29.937829230440244 ], [ -95.445123030651956, 29.937870231018017 ], [ -95.441120029408495, 29.937926230527609 ], [ -95.440361028951926, 29.937958231137866 ], [ -95.439570029371254, 29.937942231410936 ], [ -95.438876029023476, 29.937918230837777 ], [ -95.438222028444741, 29.937862231145758 ], [ -95.437810029039525, 29.937795231016928 ], [ -95.437433029044442, 29.937777231008905 ], [ -95.436568028286544, 29.937689231191968 ], [ -95.436508027938544, 29.937682230940865 ], [ -95.43582102796455, 29.937605230792386 ], [ -95.435169028126467, 29.937556231016664 ], [ -95.434568027685685, 29.937539231396183 ], [ -95.434163027654179, 29.937533231326181 ], [ -95.433508027374984, 29.937547231125283 ], [ -95.432968027239227, 29.93760323092285 ], [ -95.43258902706215, 29.937636231557349 ], [ -95.432304027646751, 29.937685231496808 ], [ -95.432089027430408, 29.937708231645264 ], [ -95.431427027038552, 29.937853231263141 ], [ -95.43020002722433, 29.938144231702012 ], [ -95.428677026004777, 29.938510231621521 ], [ -95.42709602581607, 29.938936231976488 ], [ -95.425638025694113, 29.939335232082993 ], [ -95.424991025267133, 29.939520232236703 ], [ -95.424626025724081, 29.939625232165895 ], [ -95.424348024876736, 29.939697232294627 ], [ -95.423999025477855, 29.939785231966106 ], [ -95.423752025213943, 29.939846231684545 ], [ -95.423317025315171, 29.939953231796267 ], [ -95.422270024382797, 29.940234232416898 ], [ -95.420995024183895, 29.940440231763162 ], [ -95.418895024211253, 29.940515232031537 ], [ -95.417948024045131, 29.940520231999184 ], [ -95.4177210238458, 29.940521232057989 ], [ -95.417225023462777, 29.940523232025924 ], [ -95.41642002302774, 29.940527232605973 ], [ -95.416280022917761, 29.940528232082844 ], [ -95.415087022650283, 29.940533232507747 ], [ -95.414789022555027, 29.940535232509777 ], [ -95.414563023247155, 29.940536232300399 ], [ -95.414417022441171, 29.940537232032195 ], [ -95.414148023005296, 29.940538232501101 ], [ -95.414094022891206, 29.94053823239933 ], [ -95.414013022218427, 29.940539232279839 ], [ -95.414046023101378, 29.940632232878045 ], [ -95.414085022951895, 29.94074323281141 ], [ -95.41410602320542, 29.940805232346687 ], [ -95.414167022578908, 29.940979232376794 ], [ -95.414454022632626, 29.941629233052929 ], [ -95.414621023417695, 29.942092232289042 ], [ -95.415199022794724, 29.943618232602958 ], [ -95.415450023493662, 29.944326233329626 ], [ -95.415601023379963, 29.944781233301821 ], [ -95.416288023609468, 29.946830233352873 ], [ -95.417109024048827, 29.94903723384196 ], [ -95.417205023677269, 29.949035234063679 ], [ -95.417310023840088, 29.949032234231467 ], [ -95.417434023770937, 29.949038233919119 ], [ -95.417963024400535, 29.949063233884104 ], [ -95.418329024730369, 29.949054233658323 ], [ -95.419715024380722, 29.949031234153637 ], [ -95.420300024831803, 29.949016233825756 ], [ -95.421177024854956, 29.948993234131592 ], [ -95.422181025023903, 29.948999233662406 ], [ -95.423882025359973, 29.948970234206936 ], [ -95.424191025883928, 29.948964233462515 ], [ -95.424408025517067, 29.948967233949823 ], [ -95.424473025819424, 29.948968234000962 ], [ -95.424766025952422, 29.948966233957172 ], [ -95.425504026089683, 29.948961233520709 ], [ -95.42655902650273, 29.948950233610311 ], [ -95.427460026685054, 29.948895233449075 ], [ -95.427874026662607, 29.948851233413052 ], [ -95.42795202669933, 29.948843233956037 ], [ -95.428372026716218, 29.948815233569228 ], [ -95.428803026730307, 29.948695233647339 ], [ -95.42904702686009, 29.948627233322817 ], [ -95.429112026866903, 29.948603233623615 ], [ -95.429397027496591, 29.948499233582609 ], [ -95.429655026716929, 29.948381233110599 ], [ -95.429804026857084, 29.948295233476536 ], [ -95.430027027324655, 29.948153233829348 ], [ -95.430312027125382, 29.947947233585634 ], [ -95.430826027824651, 29.947480232841389 ], [ -95.431051026976519, 29.947280233070952 ], [ -95.431253027176012, 29.947093232763297 ], [ -95.431538026992627, 29.946862233391009 ], [ -95.431730027571106, 29.94673723333549 ], [ -95.431977027668509, 29.946590232597721 ], [ -95.432248027180975, 29.946457233109161 ], [ -95.43265102782631, 29.946312233198494 ], [ -95.433467028417397, 29.946147232920893 ], [ -95.433708028439312, 29.946140232545375 ], [ -95.434169028508478, 29.946127233308175 ], [ -95.43429402779114, 29.946039232906301 ], [ -95.434349028492534, 29.946010232813357 ], [ -95.434381028634832, 29.945994233008886 ], [ -95.434546028044466, 29.945910232728423 ], [ -95.434931027878434, 29.94578923282684 ], [ -95.43498802831806, 29.94580523231965 ], [ -95.435310028640473, 29.945739232569611 ], [ -95.435556028935565, 29.945668232907913 ], [ -95.435777028284818, 29.945574232421418 ], [ -95.436068028487995, 29.945492232440948 ], [ -95.436251028743669, 29.945415232872726 ], [ -95.436333028235325, 29.945321232256383 ], [ -95.436409028959048, 29.945206232243251 ], [ -95.438025029267919, 29.944601232689902 ], [ -95.438220028814598, 29.94459623237654 ], [ -95.438631029360124, 29.944486232213794 ], [ -95.440032029990235, 29.943963232363352 ], [ -95.441105029820889, 29.943507232232889 ], [ -95.441661029786601, 29.943309231983775 ], [ -95.442967029881714, 29.942634231757914 ], [ -95.44313403051035, 29.942548231608068 ], [ -95.443402030750633, 29.942409232153583 ], [ -95.443927030066348, 29.942138231450873 ], [ -95.444735030253327, 29.941681231271215 ], [ -95.444949030631022, 29.941538231684753 ], [ -95.446003030447727, 29.940917231338716 ], [ -95.447158031004022, 29.940395231259014 ], [ -95.44745503092318, 29.940230231188579 ], [ -95.447562030862741, 29.940120230804055 ], [ -95.447653031016614, 29.940036231404445 ], [ -95.447973031439474, 29.939746231515212 ], [ -95.448079031819006, 29.939661230617595 ], [ -95.448288031415672, 29.939493230564935 ], [ -95.448528031071618, 29.939361230906023 ], [ -95.448793031763316, 29.939168231227221 ], [ -95.449084032161267, 29.939003230502664 ], [ -95.449203031244991, 29.938965230584088 ], [ -95.449418031486516, 29.938948230625648 ], [ -95.449708032082384, 29.938822230471409 ], [ -95.449809031591514, 29.938706230745105 ], [ -95.450066031471621, 29.938518230430631 ], [ -95.450213032225449, 29.938410230824925 ], [ -95.450644031775468, 29.938173230661455 ], [ -95.450693031991619, 29.938146230708842 ], [ -95.450910032513491, 29.937912230869387 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1163, "Tract": "48201250403", "Area_SqMi": 1.6424047856384365, "total_2009": 122, "total_2010": 174, "total_2011": 166, "total_2012": 157, "total_2013": 180, "total_2014": 373, "total_2015": 265, "total_2016": 234, "total_2017": 209, "total_2018": 237, "total_2019": 230, "total_2020": 195, "age1": 85, "age2": 125, "age3": 57, "earn1": 107, "earn2": 85, "earn3": 75, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 57, "naics_s05": 0, "naics_s06": 7, "naics_s07": 6, "naics_s08": 1, "naics_s09": 0, "naics_s10": 6, "naics_s11": 12, "naics_s12": 9, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 31, "naics_s17": 39, "naics_s18": 75, "naics_s19": 24, "naics_s20": 0, "race1": 223, "race2": 11, "race3": 3, "race4": 18, "race5": 0, "race6": 12, "ethnicity1": 187, "ethnicity2": 80, "edu1": 27, "edu2": 52, "edu3": 60, "edu4": 43, "Shape_Length": 29741.755450299272, "Shape_Area": 45787434.419715405, "total_2021": 244, "total_2022": 267 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.153612958345903, 30.003098254574951 ], [ -95.153411958472574, 30.00284325427646 ], [ -95.153273959140577, 30.002667254363789 ], [ -95.153081958796861, 30.002427254210357 ], [ -95.153008958380141, 30.002334253895338 ], [ -95.152968958098782, 30.002282253818638 ], [ -95.152929958265759, 30.002132253616232 ], [ -95.152918958642005, 30.002100253726642 ], [ -95.152899958056835, 30.002046253642554 ], [ -95.152859958217874, 30.001932254065707 ], [ -95.152842958432586, 30.001860253746223 ], [ -95.152801958772898, 30.00168325387202 ], [ -95.152726958286848, 30.001359253726353 ], [ -95.15256995817802, 30.0011522541175 ], [ -95.152530958876952, 30.001101253793895 ], [ -95.152296958553464, 30.000949253675365 ], [ -95.152260958146172, 30.000925253523537 ], [ -95.151624958557335, 30.000728253571872 ], [ -95.151226958466324, 30.000603253682335 ], [ -95.151114957515588, 30.000535253772732 ], [ -95.150614957486141, 30.000225253422066 ], [ -95.150016957889136, 29.999723253418573 ], [ -95.149994957861267, 29.999688253427131 ], [ -95.14965595739578, 29.999141253730382 ], [ -95.149570957380433, 29.99895225320266 ], [ -95.149556957991052, 29.998725253578641 ], [ -95.149610957525994, 29.998489253206955 ], [ -95.14975595783288, 29.998207253623988 ], [ -95.14980095711293, 29.99782525282269 ], [ -95.149851957113654, 29.997823253102627 ], [ -95.149887957539008, 29.997821253059509 ], [ -95.150004957716604, 29.997822253637754 ], [ -95.150124957655294, 29.997830253515453 ], [ -95.150560957297358, 29.997833253287279 ], [ -95.150652957481128, 29.997841253568872 ], [ -95.150710957519323, 29.997843253405968 ], [ -95.150636957664076, 29.997708253112865 ], [ -95.150580957318937, 29.997603252886925 ], [ -95.150524958159821, 29.997500252942974 ], [ -95.150438957562841, 29.997139253463398 ], [ -95.150423957241117, 29.997076253436425 ], [ -95.150410958040709, 29.996851252956468 ], [ -95.150448957912772, 29.99670225255602 ], [ -95.150517957277557, 29.996559253246499 ], [ -95.150600958120847, 29.996433253173826 ], [ -95.1507959574041, 29.996273252788843 ], [ -95.151200957636647, 29.995779252393941 ], [ -95.15134495786566, 29.9955872530345 ], [ -95.151566957531969, 29.995289252259493 ], [ -95.151800957845296, 29.995058252296722 ], [ -95.151933957631528, 29.994855252428007 ], [ -95.152072958506054, 29.994707252422558 ], [ -95.152111958218569, 29.994648252144902 ], [ -95.152318958118315, 29.994338252006283 ], [ -95.152407957819989, 29.994195252418866 ], [ -95.152470958004088, 29.994030252280819 ], [ -95.152411957525615, 29.993906252532202 ], [ -95.152398958295066, 29.993892252775179 ], [ -95.152092958215306, 29.99345725228207 ], [ -95.151914957716656, 29.993152252029073 ], [ -95.151675958129175, 29.992513252056483 ], [ -95.151664958072104, 29.992487251843599 ], [ -95.151649957570825, 29.992452252177578 ], [ -95.151299958160536, 29.991764251919822 ], [ -95.150789957524822, 29.991141251378174 ], [ -95.15025695746003, 29.990767251963156 ], [ -95.149809956950719, 29.990401251723519 ], [ -95.149414957218283, 29.990060251350254 ], [ -95.149205956655081, 29.989879251160183 ], [ -95.149038957109283, 29.989743251807091 ], [ -95.148946956593406, 29.989669251603043 ], [ -95.148923956467485, 29.989650251921457 ], [ -95.148539956399233, 29.989540251374954 ], [ -95.148070956633916, 29.989498251489668 ], [ -95.147662956177498, 29.989605251778567 ], [ -95.146917956233466, 29.990007251835728 ], [ -95.146550956308275, 29.990161252057003 ], [ -95.146302955917207, 29.990265252173817 ], [ -95.146074956463181, 29.990362251601582 ], [ -95.146016956148628, 29.990378252200312 ], [ -95.145930956371984, 29.990401251838424 ], [ -95.145249955852918, 29.990591251923036 ], [ -95.144711956299318, 29.990712252037333 ], [ -95.144337956016273, 29.9907972521369 ], [ -95.143891955541889, 29.990938251857273 ], [ -95.137326953717562, 29.991593252774639 ], [ -95.131740952988366, 29.988509251761123 ], [ -95.131547952293275, 29.987672251891603 ], [ -95.13142895288361, 29.987733251481991 ], [ -95.131308952308856, 29.987793251769254 ], [ -95.130714952139982, 29.990328252124101 ], [ -95.130162952363293, 29.991991252838329 ], [ -95.129516952233175, 29.9939342530263 ], [ -95.130224952124479, 30.000004254730378 ], [ -95.131238953654346, 30.008700256245106 ], [ -95.13170095404277, 30.012659257001282 ], [ -95.131724953541578, 30.012863257073491 ], [ -95.135148953934717, 30.011742256649889 ], [ -95.138768955448299, 30.010558256517569 ], [ -95.140933956090876, 30.009849256421507 ], [ -95.141942956081891, 30.009519256256315 ], [ -95.14202395660665, 30.009492255520044 ], [ -95.142398956574809, 30.009370256041432 ], [ -95.143912956824494, 30.008749256030459 ], [ -95.1440029568151, 30.008701255945741 ], [ -95.14623195664376, 30.007568255257354 ], [ -95.148461957617627, 30.006223255288607 ], [ -95.149495957375379, 30.005595254800237 ], [ -95.149837958125929, 30.005387254919263 ], [ -95.150616958281688, 30.004916254223417 ], [ -95.151131958113567, 30.004604254392216 ], [ -95.151296958343536, 30.004504254919766 ], [ -95.151822958250406, 30.004184254288568 ], [ -95.152044957992018, 30.00404925463479 ], [ -95.15233995870571, 30.003869254511049 ], [ -95.153103958367964, 30.0034052542679 ], [ -95.153383959063802, 30.003236254385293 ], [ -95.153612958345903, 30.003098254574951 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1164, "Tract": "48201250801", "Area_SqMi": 1.611558537344929, "total_2009": 605, "total_2010": 628, "total_2011": 397, "total_2012": 288, "total_2013": 308, "total_2014": 334, "total_2015": 414, "total_2016": 239, "total_2017": 216, "total_2018": 246, "total_2019": 247, "total_2020": 357, "age1": 123, "age2": 139, "age3": 70, "earn1": 80, "earn2": 139, "earn3": 113, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 33, "naics_s05": 0, "naics_s06": 8, "naics_s07": 62, "naics_s08": 5, "naics_s09": 0, "naics_s10": 46, "naics_s11": 1, "naics_s12": 36, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 1, "naics_s17": 29, "naics_s18": 55, "naics_s19": 49, "naics_s20": 0, "race1": 256, "race2": 36, "race3": 6, "race4": 26, "race5": 0, "race6": 8, "ethnicity1": 240, "ethnicity2": 92, "edu1": 38, "edu2": 56, "edu3": 79, "edu4": 36, "Shape_Length": 42428.736678440568, "Shape_Area": 44927493.811173998, "total_2021": 377, "total_2022": 332 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.169485963442526, 30.008370254327993 ], [ -95.169618963270352, 30.00788525497045 ], [ -95.168688962820838, 30.007671254901052 ], [ -95.167849962696181, 30.007366254550561 ], [ -95.167093962483719, 30.006984254764699 ], [ -95.16635796185686, 30.006515254724189 ], [ -95.16565596238371, 30.005938254412616 ], [ -95.165099961492189, 30.005346254303774 ], [ -95.164631961354971, 30.004699253995977 ], [ -95.16436996145174, 30.004223253791963 ], [ -95.164240961506124, 30.003923253557737 ], [ -95.16404396141597, 30.003464254165152 ], [ -95.163927961467024, 30.003163253629783 ], [ -95.163531961490776, 30.002134253322879 ], [ -95.163515961121504, 30.002093253877767 ], [ -95.163451961488363, 30.001933253949627 ], [ -95.1633239610738, 30.001615253290403 ], [ -95.163005961331052, 30.000820253412101 ], [ -95.162160960890077, 29.998810253188488 ], [ -95.162128960752639, 29.998724253285683 ], [ -95.162097960768733, 29.998637252929154 ], [ -95.161849960547258, 29.998704253085055 ], [ -95.161336961001453, 29.998862253297187 ], [ -95.160833960146107, 29.999030253505289 ], [ -95.160687960448442, 29.999091253372995 ], [ -95.16032696048228, 29.999243252890388 ], [ -95.15951696000721, 29.999567253118723 ], [ -95.158286959586647, 30.000261253162972 ], [ -95.157674959672605, 30.000606253395684 ], [ -95.156934959462333, 30.001076253286961 ], [ -95.156740959157119, 30.001199253345188 ], [ -95.156573959492803, 30.001305253466619 ], [ -95.155916959058459, 30.001702253409277 ], [ -95.155792959504637, 30.001778254227496 ], [ -95.155689959414616, 30.001840253789272 ], [ -95.155542958799586, 30.00192925406871 ], [ -95.155321958784768, 30.002062254283256 ], [ -95.154778959512328, 30.002392254121975 ], [ -95.154723958855186, 30.002425253786502 ], [ -95.154202958902033, 30.002740254477324 ], [ -95.153612958345903, 30.003098254574951 ], [ -95.153383959063802, 30.003236254385293 ], [ -95.153103958367964, 30.0034052542679 ], [ -95.15233995870571, 30.003869254511049 ], [ -95.152044957992018, 30.00404925463479 ], [ -95.151822958250406, 30.004184254288568 ], [ -95.151296958343536, 30.004504254919766 ], [ -95.151131958113567, 30.004604254392216 ], [ -95.150616958281688, 30.004916254223417 ], [ -95.149837958125929, 30.005387254919263 ], [ -95.149495957375379, 30.005595254800237 ], [ -95.148461957617627, 30.006223255288607 ], [ -95.14623195664376, 30.007568255257354 ], [ -95.1440029568151, 30.008701255945741 ], [ -95.143912956824494, 30.008749256030459 ], [ -95.142398956574809, 30.009370256041432 ], [ -95.14202395660665, 30.009492255520044 ], [ -95.141942956081891, 30.009519256256315 ], [ -95.140933956090876, 30.009849256421507 ], [ -95.138768955448299, 30.010558256517569 ], [ -95.135148953934717, 30.011742256649889 ], [ -95.131724953541578, 30.012863257073491 ], [ -95.131787953316518, 30.013078256993339 ], [ -95.132914953843667, 30.016923257284187 ], [ -95.132053953991516, 30.021161258533404 ], [ -95.133063954602093, 30.021211258313869 ], [ -95.136766955060594, 30.02182025830739 ], [ -95.141185956564016, 30.021058258157069 ], [ -95.141900956740827, 30.020935258064963 ], [ -95.1433469564885, 30.01308625640484 ], [ -95.144036956343299, 30.012426256305091 ], [ -95.144145956481026, 30.012597256227565 ], [ -95.143993956983451, 30.012748256325022 ], [ -95.143809956423524, 30.012907256711038 ], [ -95.143784956600001, 30.012956256093339 ], [ -95.143771956763274, 30.013033256226521 ], [ -95.143778956909898, 30.013088256123886 ], [ -95.143879956608572, 30.013231256541193 ], [ -95.143898957132834, 30.013297256679266 ], [ -95.144011956396767, 30.013429256930536 ], [ -95.144093957213798, 30.013567256319391 ], [ -95.144119956776976, 30.013572256790802 ], [ -95.144188956646104, 30.01356725623355 ], [ -95.14423295651298, 30.013589256624634 ], [ -95.144397957004585, 30.013891256522225 ], [ -95.144517957244375, 30.014018257059593 ], [ -95.144700957161035, 30.014293256737695 ], [ -95.144990956698791, 30.014617257086456 ], [ -95.145224956844942, 30.014870256914307 ], [ -95.145464957324194, 30.015085257251375 ], [ -95.146020957341406, 30.015531257302342 ], [ -95.146150957245538, 30.01565225703111 ], [ -95.146361957655813, 30.015850257218975 ], [ -95.147087957879648, 30.016702257490934 ], [ -95.147232957474344, 30.016900256917488 ], [ -95.147264958139957, 30.016927257575269 ], [ -95.147308957571582, 30.016944257095812 ], [ -95.147390957459322, 30.016938257446817 ], [ -95.147447958218535, 30.016928256997037 ], [ -95.147472957565483, 30.016906256998666 ], [ -95.147574957838899, 30.016642257545669 ], [ -95.147696957410375, 30.016350257303817 ], [ -95.147778957417643, 30.016436257063098 ], [ -95.147731958354953, 30.016548257469168 ], [ -95.14768195838252, 30.016779257160671 ], [ -95.147649957773936, 30.017076257326689 ], [ -95.14765595742962, 30.017109256848343 ], [ -95.147681957978833, 30.017126257315869 ], [ -95.148028957816607, 30.017126257589801 ], [ -95.148117958068354, 30.017120256929189 ], [ -95.148148957557581, 30.017186257312446 ], [ -95.148142957674295, 30.017219257558949 ], [ -95.148129957584175, 30.017236257156377 ], [ -95.148066958438321, 30.017258257197444 ], [ -95.147617958194132, 30.017345257374245 ], [ -95.14760595786251, 30.017362257610696 ], [ -95.147598957814921, 30.017411257459777 ], [ -95.14761195754059, 30.017472257442908 ], [ -95.147744958218254, 30.017714257355774 ], [ -95.147946957776242, 30.018005257163285 ], [ -95.148224958414517, 30.018357257578423 ], [ -95.148274958523459, 30.018407257156159 ], [ -95.148584958277027, 30.018610257222406 ], [ -95.148615958304646, 30.018616257643668 ], [ -95.148666958418076, 30.018616257454013 ], [ -95.148849958458598, 30.018550257752413 ], [ -95.149292958111261, 30.018296256981518 ], [ -95.149380958842457, 30.018340257790111 ], [ -95.149474958079793, 30.018388257690169 ], [ -95.149241958585151, 30.018501257439805 ], [ -95.149114958036336, 30.018578257647153 ], [ -95.149051958731206, 30.018654257165121 ], [ -95.149026958046505, 30.018715257145121 ], [ -95.149032958420932, 30.018776257582161 ], [ -95.149057958358057, 30.018814257119477 ], [ -95.149203958371103, 30.018902257398764 ], [ -95.149557958533421, 30.019045257337837 ], [ -95.150801958682649, 30.019650257533431 ], [ -95.151174958930227, 30.019348257923234 ], [ -95.151319958815535, 30.019172257493164 ], [ -95.151332958977932, 30.019150257855252 ], [ -95.151326959102079, 30.019100257223073 ], [ -95.15129095921813, 30.018937257851675 ], [ -95.151305958712555, 30.018899257426654 ], [ -95.151396959095962, 30.018863257370011 ], [ -95.151443959438993, 30.018889257784743 ], [ -95.151515958691391, 30.019117257076097 ], [ -95.151509958951209, 30.01920525742463 ], [ -95.151446959390427, 30.019310257293544 ], [ -95.151028959222216, 30.019755258065036 ], [ -95.151023959122512, 30.019773257984262 ], [ -95.151041959132357, 30.019793257293571 ], [ -95.151641959092004, 30.019991257708906 ], [ -95.151837959518332, 30.020090258013081 ], [ -95.15193895899084, 30.020129257739832 ], [ -95.152279959025535, 30.02020025747569 ], [ -95.15244995894659, 30.01992025787705 ], [ -95.152645959176596, 30.019916257965122 ], [ -95.153010959521268, 30.019911257179334 ], [ -95.153140959351688, 30.019909257872211 ], [ -95.153791959342925, 30.019964257765395 ], [ -95.154355959540879, 30.020059257893255 ], [ -95.155028959719601, 30.020140257550317 ], [ -95.154950959674835, 30.020439257393495 ], [ -95.15510496024423, 30.020770257861443 ], [ -95.156061960083122, 30.020608258013365 ], [ -95.156247960153522, 30.020559257829394 ], [ -95.156568960370137, 30.020474258012893 ], [ -95.157100960416457, 30.020157257968631 ], [ -95.156897960079277, 30.019933257578 ], [ -95.156168959879267, 30.019130257404317 ], [ -95.155877959956257, 30.018866256858999 ], [ -95.155657960476972, 30.018702257744838 ], [ -95.155327960012343, 30.018523257568255 ], [ -95.155161959367717, 30.018454257379553 ], [ -95.15518396023873, 30.018401257300809 ], [ -95.155270959642664, 30.018237257043285 ], [ -95.155319960218421, 30.018118257395049 ], [ -95.155363959706335, 30.017977257055414 ], [ -95.155376959500032, 30.01790525682279 ], [ -95.15539396015636, 30.017756257220142 ], [ -95.155391959997885, 30.017588257450946 ], [ -95.156517959907177, 30.017559257109056 ], [ -95.156667959848036, 30.017561256731177 ], [ -95.156808960042611, 30.017548256727647 ], [ -95.157185960589814, 30.017535256738419 ], [ -95.157286960828728, 30.017520257219623 ], [ -95.157382960675875, 30.017500256562716 ], [ -95.157592960937521, 30.017366256696874 ], [ -95.157651960586335, 30.017312257351222 ], [ -95.157745960780687, 30.01717425699659 ], [ -95.157774960714562, 30.017093257175748 ], [ -95.157787960100208, 30.017003257090238 ], [ -95.157786960150901, 30.016908256731195 ], [ -95.157771960223883, 30.016812256599707 ], [ -95.157769960955918, 30.016701257158218 ], [ -95.157753960269375, 30.016595256876315 ], [ -95.157720960733371, 30.01605525712263 ], [ -95.157723960308218, 30.01596525623648 ], [ -95.157758960607509, 30.015761256680403 ], [ -95.157822960599773, 30.014901256870317 ], [ -95.157849960370555, 30.014685256102098 ], [ -95.157541960371177, 30.014534256484698 ], [ -95.156691959548056, 30.014137256471706 ], [ -95.156515960348244, 30.014054255905716 ], [ -95.156407960195352, 30.013939256702887 ], [ -95.156199960288774, 30.013653256581073 ], [ -95.156062959603034, 30.013436255948207 ], [ -95.156266959906148, 30.01341425650287 ], [ -95.156397960406309, 30.013398255790516 ], [ -95.156690959897574, 30.013370255890734 ], [ -95.156856960492235, 30.013341256044654 ], [ -95.156923960070543, 30.013323255923655 ], [ -95.157042959649786, 30.01328425574782 ], [ -95.157103960040089, 30.013254256545725 ], [ -95.157165960625861, 30.013216255989612 ], [ -95.157291959956837, 30.013119255928455 ], [ -95.157361960669746, 30.013058256342735 ], [ -95.157436959761853, 30.012977256249204 ], [ -95.157472959949203, 30.012927255824856 ], [ -95.157534959749157, 30.012822256176761 ], [ -95.157559960242338, 30.012763255833182 ], [ -95.157936960610897, 30.012860256074728 ], [ -95.158173959934388, 30.012856255776356 ], [ -95.158756960667617, 30.012706256117209 ], [ -95.158969960430596, 30.012669256148861 ], [ -95.159316960766688, 30.012623255980213 ], [ -95.159615961091873, 30.012501255551616 ], [ -95.159834961124318, 30.012400255789636 ], [ -95.159751960590384, 30.012243256216799 ], [ -95.159727960282169, 30.012159255902858 ], [ -95.159709961015452, 30.012093256197932 ], [ -95.159801960780001, 30.011961255734537 ], [ -95.160379960442967, 30.01159925528351 ], [ -95.160509961146886, 30.011390255352914 ], [ -95.160830960956702, 30.010414255078956 ], [ -95.161019960912895, 30.010463255286751 ], [ -95.161125960803787, 30.010501255792974 ], [ -95.161365961221691, 30.010547255713291 ], [ -95.161450960749264, 30.010583255842711 ], [ -95.161530961394959, 30.010608255148 ], [ -95.161616961456161, 30.010629255609508 ], [ -95.161877961047182, 30.010709255228235 ], [ -95.162038961437787, 30.010751255488088 ], [ -95.162465960994282, 30.010877255643422 ], [ -95.162561961086368, 30.010897255797307 ], [ -95.162858961166364, 30.010976255446085 ], [ -95.162988961534495, 30.010985255615147 ], [ -95.163103961826607, 30.011046255555485 ], [ -95.163397961742575, 30.011101255415536 ], [ -95.163503961971671, 30.011159255715516 ], [ -95.165370962490627, 30.011684255548239 ], [ -95.165412961932461, 30.01157325574659 ], [ -95.165562962237075, 30.011182255042364 ], [ -95.165683962030812, 30.010831255692196 ], [ -95.165773961821387, 30.010581255594058 ], [ -95.165816962266504, 30.010497255244573 ], [ -95.165886962122869, 30.010388255004965 ], [ -95.165938961743521, 30.010328255544351 ], [ -95.165987962594329, 30.010284255603661 ], [ -95.166093962037166, 30.010216255464414 ], [ -95.166194962304502, 30.010154255063934 ], [ -95.166307962249718, 30.010092254951459 ], [ -95.166653962141567, 30.009887255468559 ], [ -95.16676796268456, 30.010052255341609 ], [ -95.167056962529855, 30.010411255135185 ], [ -95.167095962743289, 30.010454255165481 ], [ -95.167143962163195, 30.01048225546235 ], [ -95.167191962932208, 30.010503254869704 ], [ -95.167265963092149, 30.01050225485778 ], [ -95.167336963061899, 30.010475255188247 ], [ -95.167620962754413, 30.01031625492827 ], [ -95.167970962871749, 30.010105255347245 ], [ -95.168458963241932, 30.009829255345959 ], [ -95.16874696296216, 30.00965625492519 ], [ -95.168808962520984, 30.009613254775058 ], [ -95.168917962853314, 30.00952225473209 ], [ -95.169012963439513, 30.009425255334122 ], [ -95.169094962833626, 30.009323254527136 ], [ -95.169174962662453, 30.009197254909569 ], [ -95.16921296271677, 30.009123254842571 ], [ -95.169322962632918, 30.008850254824949 ], [ -95.169485963442526, 30.008370254327993 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1165, "Tract": "48201555001", "Area_SqMi": 0.75489980579490401, "total_2009": 548, "total_2010": 460, "total_2011": 519, "total_2012": 635, "total_2013": 758, "total_2014": 827, "total_2015": 933, "total_2016": 1153, "total_2017": 1108, "total_2018": 1076, "total_2019": 1156, "total_2020": 1145, "age1": 488, "age2": 718, "age3": 226, "earn1": 291, "earn2": 476, "earn3": 665, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 79, "naics_s05": 76, "naics_s06": 337, "naics_s07": 444, "naics_s08": 0, "naics_s09": 15, "naics_s10": 28, "naics_s11": 10, "naics_s12": 22, "naics_s13": 0, "naics_s14": 89, "naics_s15": 18, "naics_s16": 193, "naics_s17": 8, "naics_s18": 78, "naics_s19": 35, "naics_s20": 0, "race1": 1113, "race2": 228, "race3": 16, "race4": 54, "race5": 2, "race6": 19, "ethnicity1": 961, "ethnicity2": 471, "edu1": 174, "edu2": 299, "edu3": 305, "edu4": 166, "Shape_Length": 25997.42600472222, "Shape_Area": 21045314.561631627, "total_2021": 1215, "total_2022": 1432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.477399044184367, 30.060033254320548 ], [ -95.477396044338718, 30.059610254792059 ], [ -95.477367044852599, 30.059290254547545 ], [ -95.477359044676817, 30.05920025438239 ], [ -95.47726404443118, 30.059252254300144 ], [ -95.474864043857579, 30.060579254890218 ], [ -95.473076043352833, 30.061504254828069 ], [ -95.472825043137135, 30.061639255366376 ], [ -95.472782043604866, 30.061669255111109 ], [ -95.472190043346188, 30.061918254737343 ], [ -95.472072042973991, 30.061967254715007 ], [ -95.471498043416489, 30.062134254823608 ], [ -95.47055504244085, 30.062375255384197 ], [ -95.469746042175984, 30.062569254897909 ], [ -95.468577041780918, 30.062853255715517 ], [ -95.466928042379706, 30.063253255887723 ], [ -95.464356041192914, 30.063877256228011 ], [ -95.46219704030166, 30.064400256208881 ], [ -95.460506040012447, 30.064811255898064 ], [ -95.459914039900525, 30.064955256049561 ], [ -95.457647039149208, 30.06551425676874 ], [ -95.457587039561275, 30.065529256356225 ], [ -95.454465039179141, 30.066284256323179 ], [ -95.453095039023822, 30.066617256389609 ], [ -95.452069038019275, 30.066868257006966 ], [ -95.451850038558817, 30.066922257062082 ], [ -95.450615037657542, 30.067225256735473 ], [ -95.450228037315981, 30.067334256588062 ], [ -95.449972037272971, 30.067419256763351 ], [ -95.449745037651397, 30.067525256856808 ], [ -95.44929903708541, 30.067745257177762 ], [ -95.44636703682967, 30.069374257635449 ], [ -95.446256036727149, 30.069436257508357 ], [ -95.44611403640971, 30.069512257662012 ], [ -95.445785037170992, 30.069692257299664 ], [ -95.445071037026807, 30.070092257392055 ], [ -95.444484036117032, 30.070405258117177 ], [ -95.44405503592462, 30.070647257712807 ], [ -95.444125036302069, 30.070829258042615 ], [ -95.444337036872369, 30.070758257914285 ], [ -95.444785036360969, 30.070631257395362 ], [ -95.445239036179856, 30.070525257732832 ], [ -95.445699036622926, 30.070440257966581 ], [ -95.445929036720841, 30.070409257872797 ], [ -95.446164036936437, 30.070377257778475 ], [ -95.446632037080775, 30.07033725752272 ], [ -95.44680803708674, 30.070329257929316 ], [ -95.447102037373782, 30.070318257749548 ], [ -95.447573037127782, 30.070321257288384 ], [ -95.447842037763237, 30.070329257889234 ], [ -95.449781038253121, 30.070387257553026 ], [ -95.452035038807637, 30.070454257829674 ], [ -95.452199038491898, 30.070459257958692 ], [ -95.452354038360156, 30.070464257733065 ], [ -95.45528303958676, 30.070552257682738 ], [ -95.455935039454872, 30.070571257497459 ], [ -95.45643303968221, 30.07058525764878 ], [ -95.457370040154842, 30.070614257119498 ], [ -95.458196040031538, 30.07063925763622 ], [ -95.45829103994997, 30.070641257113707 ], [ -95.459939040183343, 30.070691257334012 ], [ -95.460284040086052, 30.07069525686396 ], [ -95.466991042222048, 30.070659256739404 ], [ -95.467659042927465, 30.070655256736721 ], [ -95.469347042582854, 30.070646256929432 ], [ -95.476500044404318, 30.070607256925658 ], [ -95.476506044722782, 30.069803256129685 ], [ -95.47651304454854, 30.068663256520384 ], [ -95.476533044926569, 30.067459256198003 ], [ -95.476483044726891, 30.067058256442557 ], [ -95.476440044447685, 30.066635256300007 ], [ -95.47641104402112, 30.066450255679158 ], [ -95.476384044040415, 30.066268256111062 ], [ -95.476287044856903, 30.0658052561406 ], [ -95.476163044670869, 30.064999255547349 ], [ -95.476101044490278, 30.06461725521212 ], [ -95.476104044135198, 30.064212255171896 ], [ -95.4761100438661, 30.063839255175985 ], [ -95.476129043830639, 30.063448255203038 ], [ -95.476172044367345, 30.063217255224465 ], [ -95.476269044151039, 30.06288825478461 ], [ -95.476398044552027, 30.062496254751224 ], [ -95.4765420444418, 30.062191254875408 ], [ -95.476746044170113, 30.061706254862596 ], [ -95.477060044046624, 30.061165255232886 ], [ -95.477262044198767, 30.060742254251856 ], [ -95.477337044775567, 30.06050925484395 ], [ -95.477390044788265, 30.06026725435159 ], [ -95.477399044184367, 30.060033254320548 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1166, "Tract": "48201533804", "Area_SqMi": 1.9434036336229485, "total_2009": 654, "total_2010": 603, "total_2011": 551, "total_2012": 518, "total_2013": 641, "total_2014": 578, "total_2015": 606, "total_2016": 677, "total_2017": 786, "total_2018": 806, "total_2019": 695, "total_2020": 678, "age1": 140, "age2": 300, "age3": 180, "earn1": 115, "earn2": 191, "earn3": 314, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 115, "naics_s05": 199, "naics_s06": 72, "naics_s07": 64, "naics_s08": 25, "naics_s09": 0, "naics_s10": 4, "naics_s11": 4, "naics_s12": 10, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 100, "naics_s19": 16, "naics_s20": 0, "race1": 471, "race2": 67, "race3": 5, "race4": 65, "race5": 0, "race6": 12, "ethnicity1": 334, "ethnicity2": 286, "edu1": 176, "edu2": 124, "edu3": 94, "edu4": 86, "Shape_Length": 44970.407990871994, "Shape_Area": 54178767.136846639, "total_2021": 627, "total_2022": 620 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.481597038974058, 29.919553225485263 ], [ -95.481593038802728, 29.919376226183605 ], [ -95.481591039351599, 29.919299225623192 ], [ -95.481590039482384, 29.919255225818652 ], [ -95.48158203927791, 29.919068225570047 ], [ -95.481550039370475, 29.918775225225254 ], [ -95.481530039183454, 29.918663225721755 ], [ -95.481514039029207, 29.918570226031541 ], [ -95.481484038911987, 29.918421225963364 ], [ -95.481449039092325, 29.918250225789297 ], [ -95.481347039380367, 29.917887225121344 ], [ -95.481334038612815, 29.917839225357657 ], [ -95.481258039025491, 29.917627225606644 ], [ -95.481169039287948, 29.917413225067722 ], [ -95.481067038703131, 29.917199225654372 ], [ -95.480953038640948, 29.916987224863501 ], [ -95.480268038302398, 29.915855224812525 ], [ -95.480151038556386, 29.915635225101628 ], [ -95.48004603865418, 29.915403224941343 ], [ -95.479953038018365, 29.915166224893039 ], [ -95.479873038260251, 29.914933224883526 ], [ -95.479807038444989, 29.91470322489052 ], [ -95.47975303862367, 29.91447122443584 ], [ -95.4797090383518, 29.914236225140069 ], [ -95.479676038511585, 29.913998224384862 ], [ -95.47965303874409, 29.913758224901432 ], [ -95.479649038712878, 29.913671225016053 ], [ -95.479643038140978, 29.91351722421096 ], [ -95.47964703847245, 29.913222224537837 ], [ -95.479648037991481, 29.913156224763611 ], [ -95.479666038523362, 29.912792224876551 ], [ -95.479674037919693, 29.912706224794082 ], [ -95.479688038723538, 29.912549224852658 ], [ -95.479724038382543, 29.912311224163712 ], [ -95.479795038752115, 29.911982224469629 ], [ -95.479874038169243, 29.911664224197541 ], [ -95.479976038251564, 29.911417224462699 ], [ -95.479999038001097, 29.911301224558212 ], [ -95.478742038245699, 29.910517223718905 ], [ -95.478296037506922, 29.91023922382427 ], [ -95.476645037788373, 29.909209224086219 ], [ -95.475965037564123, 29.908776223452634 ], [ -95.474566036393895, 29.907883223324475 ], [ -95.473372036455373, 29.907117223527141 ], [ -95.472350035967153, 29.906462223894074 ], [ -95.470867035677045, 29.905513222905373 ], [ -95.470457035078468, 29.9052502236366 ], [ -95.469871035402221, 29.904868223512015 ], [ -95.468757035564465, 29.904194222705343 ], [ -95.468259035434698, 29.903852223494148 ], [ -95.468119034561738, 29.903895223290743 ], [ -95.468058034708903, 29.903908222823713 ], [ -95.467973034649518, 29.903920223270614 ], [ -95.467764035128511, 29.903935222952676 ], [ -95.467609034576114, 29.903928222982888 ], [ -95.466461034163743, 29.903922222936181 ], [ -95.464662034117865, 29.903878223598586 ], [ -95.463984033431544, 29.903877223089978 ], [ -95.464141034412819, 29.910297224827094 ], [ -95.452973031658729, 29.910358224494107 ], [ -95.446593029549646, 29.910394225053494 ], [ -95.445867029584335, 29.909800224819538 ], [ -95.445741029753222, 29.909723225087227 ], [ -95.445432028989984, 29.90945422517586 ], [ -95.445236029297917, 29.909316224733757 ], [ -95.444491029103489, 29.908712224922546 ], [ -95.444131028640271, 29.908437224811323 ], [ -95.443879028932898, 29.908217224809686 ], [ -95.443557028864006, 29.907964224676476 ], [ -95.443551028827471, 29.907936224703061 ], [ -95.443248028882365, 29.907689225085413 ], [ -95.443147028302477, 29.907590224425196 ], [ -95.442655028177953, 29.907343224216635 ], [ -95.442245028209072, 29.907095224336384 ], [ -95.442131028470428, 29.906843224432237 ], [ -95.442036028576155, 29.906562224553639 ], [ -95.441879028808003, 29.906408224194593 ], [ -95.441759028033303, 29.90633722480991 ], [ -95.44153802846705, 29.906166224174903 ], [ -95.441475027802525, 29.906067224261736 ], [ -95.441216027973752, 29.905732224800932 ], [ -95.440989028521983, 29.905512224733776 ], [ -95.440143027952544, 29.904792224261985 ], [ -95.439758027332303, 29.904594224138936 ], [ -95.439462027405682, 29.904484224048073 ], [ -95.438894026983732, 29.904440224266835 ], [ -95.438326026991561, 29.904380224204616 ], [ -95.438080026979449, 29.904297223742248 ], [ -95.43787102743805, 29.904204223833723 ], [ -95.437703026672438, 29.904078223947742 ], [ -95.437657027221164, 29.904044224500478 ], [ -95.437480026622026, 29.903654224336154 ], [ -95.437322027275485, 29.903247223981957 ], [ -95.437202026782643, 29.902873223506898 ], [ -95.43696902642462, 29.90226922376489 ], [ -95.436906026996155, 29.90207122386439 ], [ -95.436818027175889, 29.901977223341913 ], [ -95.436672026803294, 29.901867223644214 ], [ -95.436635026807579, 29.90182322353251 ], [ -95.436313026491732, 29.901620223633294 ], [ -95.436041026470349, 29.901400223359897 ], [ -95.435600026715719, 29.901087223313056 ], [ -95.435461026579191, 29.901048223513545 ], [ -95.435007026547936, 29.900537223718029 ], [ -95.434798026145415, 29.900278223585172 ], [ -95.43453302641818, 29.900015223155883 ], [ -95.434463026220655, 29.899889223170142 ], [ -95.434395026450304, 29.899767223421154 ], [ -95.43409802632172, 29.899135223691907 ], [ -95.433953026434708, 29.898910223688212 ], [ -95.433820026140879, 29.898877223231011 ], [ -95.433738025824724, 29.898822222963584 ], [ -95.43360602539164, 29.898794223165826 ], [ -95.433473026317543, 29.898805222999787 ], [ -95.431984025798286, 29.898635223075715 ], [ -95.431871025448572, 29.898635223102865 ], [ -95.431763025680695, 29.898657223642807 ], [ -95.431467025277414, 29.899096223662976 ], [ -95.431278025517841, 29.899228223082677 ], [ -95.431063025174026, 29.899250223238212 ], [ -95.430893025492125, 29.899212223668396 ], [ -95.430350024594304, 29.899124223765583 ], [ -95.43022602504216, 29.899124223165419 ], [ -95.430174025231722, 29.899127223781225 ], [ -95.430317025180457, 29.899312223349504 ], [ -95.430376025134137, 29.899379223398686 ], [ -95.430621025246694, 29.899705223694564 ], [ -95.430819024921291, 29.899982223240819 ], [ -95.43126602578117, 29.900597223318798 ], [ -95.431754025036213, 29.901222223356896 ], [ -95.431826025856338, 29.901324224222002 ], [ -95.431907025731903, 29.901423223947084 ], [ -95.43205802588362, 29.90163122416045 ], [ -95.432145025967216, 29.901748224310033 ], [ -95.43237902607089, 29.902059223905429 ], [ -95.432467025228647, 29.902164223958025 ], [ -95.432966025758574, 29.902804223938812 ], [ -95.433808026449256, 29.903870224384814 ], [ -95.434025026518157, 29.904153224743059 ], [ -95.434238026115921, 29.904433224618213 ], [ -95.434285026325412, 29.904476224714355 ], [ -95.434482026444456, 29.90472422474361 ], [ -95.434510026027752, 29.904769224647193 ], [ -95.434588026564498, 29.904853224444608 ], [ -95.434612025926626, 29.904878224479692 ], [ -95.434976026841724, 29.905353224782399 ], [ -95.435173026365263, 29.905611224554249 ], [ -95.43586902702198, 29.906491225130832 ], [ -95.43618302639031, 29.906909225080483 ], [ -95.436538026731228, 29.907356225246833 ], [ -95.436835026892311, 29.907735225138651 ], [ -95.436910026703615, 29.907843225360153 ], [ -95.437292027631216, 29.908337225054591 ], [ -95.43740602731755, 29.908484224999214 ], [ -95.438897028119385, 29.910383225340961 ], [ -95.439391027530505, 29.911023225540909 ], [ -95.439936027889004, 29.911729225891492 ], [ -95.440415027949996, 29.912341225656458 ], [ -95.44085702845031, 29.912933226058207 ], [ -95.441149028874293, 29.913314225955787 ], [ -95.441678028124528, 29.913963226439087 ], [ -95.442167028788958, 29.914593225745843 ], [ -95.442920028934438, 29.915575226405743 ], [ -95.443634029255193, 29.916503226484757 ], [ -95.443687028874507, 29.916570226889515 ], [ -95.443922028938204, 29.916871226839497 ], [ -95.444162029717603, 29.917182226992477 ], [ -95.444436029300519, 29.917535226605782 ], [ -95.444621029399343, 29.91777922688367 ], [ -95.445695030135269, 29.919162226837251 ], [ -95.445755029399066, 29.91924122675961 ], [ -95.445861029697582, 29.919383227218674 ], [ -95.446845030157121, 29.920643227066222 ], [ -95.44722403012436, 29.920516227622841 ], [ -95.447335030667588, 29.920498227254143 ], [ -95.447423030516021, 29.920483227494596 ], [ -95.447815030953535, 29.920436227127635 ], [ -95.448050030996654, 29.920420227156146 ], [ -95.448424030856856, 29.920414226895808 ], [ -95.448453030135269, 29.920415227142996 ], [ -95.448674030827348, 29.92042322683778 ], [ -95.449031030930215, 29.920450227366246 ], [ -95.449475030697869, 29.920504227311746 ], [ -95.449671030884389, 29.92052822695144 ], [ -95.44994803102891, 29.920550226776438 ], [ -95.450217030930858, 29.920555226912796 ], [ -95.451012031748306, 29.920545226924428 ], [ -95.451113030850479, 29.92054422668425 ], [ -95.451418031262307, 29.920531227082058 ], [ -95.451668031054197, 29.920512227197573 ], [ -95.452043031438578, 29.920466227306825 ], [ -95.45210603207461, 29.920456226570877 ], [ -95.45228103159306, 29.920427226918722 ], [ -95.452511031306216, 29.920380226992119 ], [ -95.452810032236087, 29.920309226883223 ], [ -95.454098031688858, 29.920003226898608 ], [ -95.455343032024999, 29.91970422689711 ], [ -95.456229032627078, 29.919491226841302 ], [ -95.457488032680772, 29.919183226823328 ], [ -95.457769032481664, 29.919114226455715 ], [ -95.458370033160165, 29.918969226317728 ], [ -95.459090032920258, 29.918798226233097 ], [ -95.460121033287109, 29.918554226482652 ], [ -95.460634033555365, 29.918529226677368 ], [ -95.461286033687685, 29.918529226538144 ], [ -95.462028034016214, 29.918638226354915 ], [ -95.462607034477259, 29.918746225895244 ], [ -95.463169034149388, 29.918945226401579 ], [ -95.464431035176332, 29.919246226474542 ], [ -95.464916035301556, 29.919430226105117 ], [ -95.465566034646329, 29.919523226640631 ], [ -95.466030035277868, 29.919527225953026 ], [ -95.466630035377122, 29.919532226293594 ], [ -95.469383036011621, 29.919532225938916 ], [ -95.471374036903526, 29.919478225929264 ], [ -95.473414036824821, 29.919565226012914 ], [ -95.477416037592363, 29.919598225690681 ], [ -95.479089038045956, 29.919615225727981 ], [ -95.481397038782319, 29.919557225839661 ], [ -95.481597038974058, 29.919553225485263 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1167, "Tract": "48201333801", "Area_SqMi": 2.0153227079716562, "total_2009": 805, "total_2010": 736, "total_2011": 754, "total_2012": 1130, "total_2013": 1038, "total_2014": 1021, "total_2015": 1141, "total_2016": 1094, "total_2017": 1031, "total_2018": 938, "total_2019": 968, "total_2020": 950, "age1": 159, "age2": 531, "age3": 257, "earn1": 91, "earn2": 141, "earn3": 715, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 51, "naics_s05": 211, "naics_s06": 99, "naics_s07": 95, "naics_s08": 194, "naics_s09": 168, "naics_s10": 8, "naics_s11": 15, "naics_s12": 18, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 71, "naics_s19": 11, "naics_s20": 0, "race1": 715, "race2": 165, "race3": 7, "race4": 47, "race5": 2, "race6": 11, "ethnicity1": 593, "ethnicity2": 354, "edu1": 185, "edu2": 192, "edu3": 285, "edu4": 126, "Shape_Length": 37228.926527151365, "Shape_Area": 56183747.838962682, "total_2021": 928, "total_2022": 947 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.304192979888924, 29.620853170239187 ], [ -95.304375980157332, 29.620857170326818 ], [ -95.300312978938834, 29.607566168345237 ], [ -95.300179978952599, 29.6071241680268 ], [ -95.299446978273593, 29.604647167174338 ], [ -95.29843697750799, 29.601275166833535 ], [ -95.298363978295811, 29.60104116675539 ], [ -95.298224978162338, 29.600559166584624 ], [ -95.298186977494922, 29.60043016703521 ], [ -95.297975978259046, 29.599755166529384 ], [ -95.297672977469517, 29.598635165887231 ], [ -95.297484978022254, 29.597902166196839 ], [ -95.2974039777326, 29.597468166136881 ], [ -95.297256977893113, 29.596936165907547 ], [ -95.297163977546177, 29.59655316577976 ], [ -95.297012977206691, 29.596582165556445 ], [ -95.297005976993546, 29.596595165965883 ], [ -95.296878977040308, 29.596639166075533 ], [ -95.296732977769437, 29.596568165939519 ], [ -95.296463977752978, 29.596392166250759 ], [ -95.29635397718711, 29.596310166033636 ], [ -95.296263977308413, 29.596247165699392 ], [ -95.296181977133898, 29.596208166298936 ], [ -95.296113977198175, 29.596179165767186 ], [ -95.296069977312712, 29.596178165954274 ], [ -95.295869977448874, 29.596201165920544 ], [ -95.295481976751816, 29.596356166057106 ], [ -95.295358976474773, 29.596394165873171 ], [ -95.295209976846934, 29.596420166023758 ], [ -95.295020977132793, 29.596497166018207 ], [ -95.294862976382049, 29.596561165744365 ], [ -95.294632977219891, 29.596623165617942 ], [ -95.294558976665584, 29.596635165839277 ], [ -95.29448397691786, 29.596641165930571 ], [ -95.294408976921687, 29.596640166262915 ], [ -95.294333976601976, 29.596633166147669 ], [ -95.294259976844899, 29.596620166228934 ], [ -95.29418797650483, 29.59660116619396 ], [ -95.294118976624063, 29.59657516557624 ], [ -95.294051977056526, 29.596544165993105 ], [ -95.293916976424455, 29.596497165697606 ], [ -95.293857976934433, 29.596483165653034 ], [ -95.293803976698143, 29.596478166115524 ], [ -95.29375897670522, 29.596478166038835 ], [ -95.29369497639469, 29.596485166429201 ], [ -95.293641976956451, 29.596498165958046 ], [ -95.293579976475229, 29.596521165590662 ], [ -95.293454976498765, 29.596634166060273 ], [ -95.293438976928883, 29.596648166312406 ], [ -95.293428976475539, 29.596671165927429 ], [ -95.293349976447814, 29.596757165773624 ], [ -95.293261976122736, 29.596862165845373 ], [ -95.293179976486641, 29.596962165856578 ], [ -95.293051976436942, 29.597095166610142 ], [ -95.292934975942799, 29.597242166363749 ], [ -95.292852976776643, 29.597413166241374 ], [ -95.292776976400432, 29.597530166240393 ], [ -95.292726976327017, 29.597642166188599 ], [ -95.292614975902183, 29.597713165898604 ], [ -95.292583976711327, 29.597736166658617 ], [ -95.292483975985903, 29.597758165925732 ], [ -95.292303976662438, 29.597797165970725 ], [ -95.292060976548015, 29.597755165902694 ], [ -95.291807976175946, 29.59772516611816 ], [ -95.291610976040758, 29.597703166404571 ], [ -95.291431975731754, 29.597660166148632 ], [ -95.291184976084324, 29.597573166589477 ], [ -95.291013976184885, 29.597537166116208 ], [ -95.290841976004472, 29.597525166372016 ], [ -95.290678975963218, 29.597539166143545 ], [ -95.290512975880006, 29.597562166632486 ], [ -95.290361975504624, 29.59760116658051 ], [ -95.290177975424271, 29.597644166549099 ], [ -95.290111975885992, 29.597661166146622 ], [ -95.290042975641256, 29.597678166447174 ], [ -95.289960975575724, 29.597691166402061 ], [ -95.28990097537897, 29.597707165961186 ], [ -95.289899975177903, 29.59785216614695 ], [ -95.28960497507461, 29.597956166653805 ], [ -95.289006975129851, 29.597954166240932 ], [ -95.288752975619346, 29.598024166465247 ], [ -95.288034975345298, 29.598336167038472 ], [ -95.287662975294779, 29.598305166570341 ], [ -95.286850974754103, 29.597990166125459 ], [ -95.286783974754812, 29.597940166842985 ], [ -95.286499974307617, 29.59789116620253 ], [ -95.286431974445946, 29.599299166511891 ], [ -95.286419975184046, 29.599714166736359 ], [ -95.286395975150384, 29.600112166799509 ], [ -95.286387975280761, 29.600233166982839 ], [ -95.286362975094079, 29.600647167093587 ], [ -95.286271974587493, 29.601390166929672 ], [ -95.286152974409163, 29.602912168024911 ], [ -95.286123975111863, 29.603378167456757 ], [ -95.286045975139032, 29.604660168012259 ], [ -95.285989974600938, 29.606438168690598 ], [ -95.285934975184972, 29.6071091682767 ], [ -95.285912975382033, 29.60731516812039 ], [ -95.285878974928451, 29.607692168783014 ], [ -95.285840975340065, 29.60816816825891 ], [ -95.285730975494658, 29.609311168904387 ], [ -95.285548974753667, 29.611660169821477 ], [ -95.28461797472832, 29.611671169577171 ], [ -95.283209974625109, 29.611688169464049 ], [ -95.282913974778651, 29.611692169085607 ], [ -95.282062974459834, 29.611673169920568 ], [ -95.281289974485418, 29.61167916951004 ], [ -95.280180973532168, 29.611705169918999 ], [ -95.278774973804303, 29.61170616990568 ], [ -95.278260972904079, 29.61170716951402 ], [ -95.277681972957325, 29.611708169659853 ], [ -95.275523972135886, 29.611731169535506 ], [ -95.275535972435051, 29.612634169685645 ], [ -95.275543973112605, 29.613260170402032 ], [ -95.275562973166529, 29.614304170059448 ], [ -95.275585972393685, 29.61558417045304 ], [ -95.275596973087119, 29.616651171193105 ], [ -95.27561497294289, 29.617713171311333 ], [ -95.27562597273176, 29.618771171328991 ], [ -95.275644972937869, 29.619817171805277 ], [ -95.275656972603443, 29.62088117151681 ], [ -95.275672973325101, 29.621916172246813 ], [ -95.275691973101161, 29.622967172067504 ], [ -95.275707972694022, 29.624015172318217 ], [ -95.275716973329381, 29.624759172128602 ], [ -95.275724973137784, 29.625034172253201 ], [ -95.278418974329981, 29.625026172741659 ], [ -95.278421974281386, 29.625180172711943 ], [ -95.278441973963581, 29.625946172558656 ], [ -95.279063973849361, 29.625861172905125 ], [ -95.279417973734013, 29.625789172868245 ], [ -95.280397974129571, 29.625570172028631 ], [ -95.280456974688136, 29.625566172779759 ], [ -95.280813974202744, 29.625547172619697 ], [ -95.280940974348979, 29.625540172197883 ], [ -95.281020974934123, 29.625536172298613 ], [ -95.281582974552109, 29.625527172496874 ], [ -95.282847974549895, 29.625505172224543 ], [ -95.285138975668389, 29.625465172060419 ], [ -95.285472975688521, 29.62545417265261 ], [ -95.28542997566629, 29.623921171775102 ], [ -95.28536997548072, 29.622187171894311 ], [ -95.285352975878396, 29.621445171046698 ], [ -95.285357975104333, 29.621152171531488 ], [ -95.285347975676473, 29.620789171275241 ], [ -95.285629975573855, 29.620784171194956 ], [ -95.289314976226621, 29.620804170984425 ], [ -95.290223977074731, 29.620806170947176 ], [ -95.290600976524871, 29.620809170829418 ], [ -95.291296977181403, 29.620819171172652 ], [ -95.291402977384749, 29.620813171335492 ], [ -95.291713977174041, 29.620810170949621 ], [ -95.293122977547029, 29.620817171455165 ], [ -95.293234977467279, 29.620817170647229 ], [ -95.294361978009775, 29.620816171458483 ], [ -95.298925978770143, 29.620831171238571 ], [ -95.300457979510981, 29.620848170424139 ], [ -95.301705979451356, 29.620853171068546 ], [ -95.304192979888924, 29.620853170239187 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1168, "Tract": "48201252002", "Area_SqMi": 11.242090929768082, "total_2009": 284, "total_2010": 514, "total_2011": 835, "total_2012": 819, "total_2013": 834, "total_2014": 984, "total_2015": 718, "total_2016": 1080, "total_2017": 1127, "total_2018": 937, "total_2019": 1439, "total_2020": 1646, "age1": 544, "age2": 759, "age3": 252, "earn1": 296, "earn2": 550, "earn3": 709, "naics_s01": 0, "naics_s02": 14, "naics_s03": 8, "naics_s04": 70, "naics_s05": 342, "naics_s06": 108, "naics_s07": 557, "naics_s08": 17, "naics_s09": 0, "naics_s10": 13, "naics_s11": 21, "naics_s12": 113, "naics_s13": 0, "naics_s14": 29, "naics_s15": 0, "naics_s16": 96, "naics_s17": 1, "naics_s18": 121, "naics_s19": 45, "naics_s20": 0, "race1": 1150, "race2": 262, "race3": 16, "race4": 92, "race5": 4, "race6": 31, "ethnicity1": 927, "ethnicity2": 628, "edu1": 263, "edu2": 285, "edu3": 296, "edu4": 167, "Shape_Length": 82619.910234066454, "Shape_Area": 313410254.09101015, "total_2021": 1221, "total_2022": 1555 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.203253967353291, 29.900042231375057 ], [ -95.203249967248709, 29.899281231100957 ], [ -95.203239966753344, 29.897404230913523 ], [ -95.203198966210394, 29.896531230362843 ], [ -95.203199967185995, 29.896404230408486 ], [ -95.203190966312491, 29.895707230580388 ], [ -95.20319096707199, 29.895603230317409 ], [ -95.203190966180458, 29.895518230317492 ], [ -95.203199966631047, 29.894013229990883 ], [ -95.203199966830311, 29.892431230025004 ], [ -95.203199966878216, 29.89202422987168 ], [ -95.203190966311467, 29.891780229454923 ], [ -95.203171966039676, 29.891680229989152 ], [ -95.203119966360362, 29.891540229932584 ], [ -95.203072966227197, 29.891111229288001 ], [ -95.20302496620765, 29.890753229715802 ], [ -95.203011966322464, 29.890551229254065 ], [ -95.202860966470013, 29.889874229433353 ], [ -95.202624966712449, 29.889229228828789 ], [ -95.202269965636091, 29.888445228938469 ], [ -95.201839966364588, 29.88778922853912 ], [ -95.200689965758613, 29.886338228432923 ], [ -95.198776964923042, 29.884113228264564 ], [ -95.198164964629342, 29.883372228103408 ], [ -95.19797096425846, 29.883157228336607 ], [ -95.19781096491846, 29.882921227986614 ], [ -95.196992963956333, 29.881986227673881 ], [ -95.195165963356388, 29.87991122739173 ], [ -95.193833963734704, 29.878321227106667 ], [ -95.193209963132205, 29.877622226802863 ], [ -95.192286963119869, 29.876580226496504 ], [ -95.191609962718474, 29.875817227220033 ], [ -95.1904919627666, 29.874528226280987 ], [ -95.189749961840235, 29.873646225997831 ], [ -95.188911961624342, 29.872529226660593 ], [ -95.18838496218504, 29.87177622572808 ], [ -95.187998961211932, 29.871078226268711 ], [ -95.187879961946763, 29.870820226041758 ], [ -95.187804961324687, 29.870663226025577 ], [ -95.187707961908814, 29.870444225612065 ], [ -95.187627961646299, 29.870165225847266 ], [ -95.187441961045423, 29.869149225363984 ], [ -95.187354961313616, 29.868016225144942 ], [ -95.187364961574815, 29.866038225112849 ], [ -95.187353961172263, 29.864727224551746 ], [ -95.187250961174811, 29.859593223511961 ], [ -95.187128960792663, 29.853524222644886 ], [ -95.187153960755964, 29.853341222209863 ], [ -95.187167960861345, 29.853082222376926 ], [ -95.187139960594919, 29.851317222185251 ], [ -95.187098960506376, 29.849813221909876 ], [ -95.18705696046527, 29.848599221606985 ], [ -95.186932959929663, 29.847523221269256 ], [ -95.186896959957423, 29.847274221076905 ], [ -95.186808960604026, 29.846668221158993 ], [ -95.186615959685454, 29.845730220584215 ], [ -95.186242960223765, 29.84472322087624 ], [ -95.185939959785955, 29.844047220064471 ], [ -95.185776960223919, 29.843720220091345 ], [ -95.185689960251608, 29.843492220292614 ], [ -95.185470960091777, 29.84358622033708 ], [ -95.185172959767257, 29.843714220258899 ], [ -95.183839959038508, 29.844293220327231 ], [ -95.174035956950831, 29.848538222060473 ], [ -95.168199955973549, 29.851030222704541 ], [ -95.166774955524886, 29.851615222837204 ], [ -95.166456955554082, 29.851729222750699 ], [ -95.166446954862991, 29.851795222486899 ], [ -95.166408955308924, 29.852235222412055 ], [ -95.166187955430246, 29.853687223012784 ], [ -95.166011954795394, 29.85474322378596 ], [ -95.165777954729506, 29.855881223829044 ], [ -95.165297955371713, 29.858102223644813 ], [ -95.165007954821789, 29.859306223903157 ], [ -95.164679955576744, 29.860813225079784 ], [ -95.164615954892909, 29.861060225139237 ], [ -95.163915954924377, 29.864299224949001 ], [ -95.163586955181984, 29.865794225562283 ], [ -95.163416954757864, 29.866526225525426 ], [ -95.162570954941003, 29.870396226360885 ], [ -95.162141955437377, 29.872244227495589 ], [ -95.16190195500549, 29.873426227302534 ], [ -95.161536955121264, 29.875000227915162 ], [ -95.16140995525862, 29.875528227728942 ], [ -95.161302954571838, 29.876012227698059 ], [ -95.16118295508852, 29.876644228355929 ], [ -95.161106955451899, 29.876924227916859 ], [ -95.161081954695476, 29.877210228278074 ], [ -95.161093955172802, 29.877601228198433 ], [ -95.161068955066114, 29.878381228066047 ], [ -95.161093954762876, 29.878733228277184 ], [ -95.161093955321689, 29.87899722874393 ], [ -95.161106954711073, 29.879239228095724 ], [ -95.161111955746605, 29.882654229174388 ], [ -95.161121955281786, 29.883471229306043 ], [ -95.16112395525532, 29.883655229293403 ], [ -95.16115595580095, 29.88419322963729 ], [ -95.161132955504385, 29.884360229785955 ], [ -95.161117955152818, 29.884474229346388 ], [ -95.161047954940344, 29.884628230024301 ], [ -95.160858954848806, 29.884820229696562 ], [ -95.160780955175497, 29.884884229362982 ], [ -95.160631954831601, 29.885007229400298 ], [ -95.160321955342553, 29.885183229947057 ], [ -95.160000955089558, 29.885353229821888 ], [ -95.159703954944334, 29.885562229488663 ], [ -95.159495955109378, 29.885788230078255 ], [ -95.159419955261555, 29.886030229693731 ], [ -95.159280954603645, 29.886304230328292 ], [ -95.159105954859129, 29.886712230037407 ], [ -95.158990955198831, 29.886981230570431 ], [ -95.15859295439455, 29.887816229947521 ], [ -95.158415955250973, 29.888251230320819 ], [ -95.158207954754076, 29.888696230895668 ], [ -95.158080954293709, 29.889010230582819 ], [ -95.157556954185523, 29.890197230895382 ], [ -95.157386955159907, 29.8905652309282 ], [ -95.156912954633341, 29.891665231016972 ], [ -95.156432954972743, 29.892715231172392 ], [ -95.155908954018429, 29.893941231447847 ], [ -95.155289954365969, 29.895338232315325 ], [ -95.155024954062739, 29.895899232026032 ], [ -95.154727954372063, 29.896624232427971 ], [ -95.154399953812714, 29.897284232404527 ], [ -95.153616953627022, 29.899065233243295 ], [ -95.15342095352662, 29.899588233235249 ], [ -95.15323795350659, 29.899934233131546 ], [ -95.153136954176404, 29.900181233308405 ], [ -95.152903953972142, 29.900714233176675 ], [ -95.152820954130803, 29.900902233550223 ], [ -95.152656953867634, 29.901248233067665 ], [ -95.153005954007313, 29.901056233717227 ], [ -95.153136953953037, 29.900984233703348 ], [ -95.153944954608221, 29.90061623349035 ], [ -95.156039954349538, 29.899775233120717 ], [ -95.157901955118291, 29.899149233111235 ], [ -95.159043955025226, 29.898869232765769 ], [ -95.159108955613618, 29.898852232835182 ], [ -95.159763955965332, 29.898682232147809 ], [ -95.160129955586299, 29.898605232491121 ], [ -95.160376955648033, 29.89856523239683 ], [ -95.159752956087345, 29.898927232507813 ], [ -95.159417955392826, 29.899089232941751 ], [ -95.15873495522662, 29.899630232859014 ], [ -95.158026955450964, 29.900304233094708 ], [ -95.157416955215581, 29.901047233374914 ], [ -95.156922954674684, 29.90166023284841 ], [ -95.156721954541112, 29.901984233183175 ], [ -95.156674954839886, 29.902061233339495 ], [ -95.156054955093964, 29.90269023324301 ], [ -95.155980954372865, 29.903532234023885 ], [ -95.155937955068012, 29.903843233839613 ], [ -95.155825954880768, 29.904145234026753 ], [ -95.155706955336299, 29.904697233891547 ], [ -95.155605955215009, 29.90504223401803 ], [ -95.155592954498687, 29.905459234489758 ], [ -95.155540954729886, 29.906466234550429 ], [ -95.155719954741798, 29.907537234605527 ], [ -95.155971955387443, 29.908349234342005 ], [ -95.156310955629024, 29.90911023523768 ], [ -95.156968955131191, 29.910173234807313 ], [ -95.157570955297814, 29.910885234785656 ], [ -95.15835395576589, 29.911650235358934 ], [ -95.1588469555264, 29.912117235169337 ], [ -95.159260956353492, 29.912509235239931 ], [ -95.16035495630382, 29.913548235839968 ], [ -95.162058956569084, 29.91550323582296 ], [ -95.162279956521317, 29.915845236366366 ], [ -95.163332956971331, 29.917467236260563 ], [ -95.163416956975084, 29.917594236484526 ], [ -95.163810957700846, 29.918194236092763 ], [ -95.164367957841804, 29.91904123643306 ], [ -95.16443395808561, 29.919142236263969 ], [ -95.165359957798188, 29.920320236947624 ], [ -95.165669958473842, 29.920714236538597 ], [ -95.166527957912507, 29.921713236674293 ], [ -95.166643958860675, 29.921839236679059 ], [ -95.167497958215804, 29.92276623752068 ], [ -95.168544959054174, 29.923707237143599 ], [ -95.169543959476187, 29.92449123743696 ], [ -95.1711139602386, 29.925665237510035 ], [ -95.172428960283042, 29.926801237987661 ], [ -95.172753960536625, 29.927160237795231 ], [ -95.174125960180561, 29.928672237804939 ], [ -95.174908961087937, 29.929777238811756 ], [ -95.175181960639819, 29.929976238808802 ], [ -95.175611961328002, 29.930330238753829 ], [ -95.175968960948694, 29.930503238842327 ], [ -95.176435961127055, 29.93064423886139 ], [ -95.176502961858233, 29.930655238249138 ], [ -95.176759961874737, 29.930717238964654 ], [ -95.176865960952043, 29.930404238201181 ], [ -95.177036961889726, 29.929973238075632 ], [ -95.177193961878558, 29.929621238440152 ], [ -95.177403962048416, 29.929253238136493 ], [ -95.177614961531077, 29.928886238134133 ], [ -95.177913961243974, 29.928455237957753 ], [ -95.178217961459083, 29.928053237784738 ], [ -95.178481961895244, 29.927769237493962 ], [ -95.178844961460484, 29.927397237875049 ], [ -95.179338962382857, 29.92693623729178 ], [ -95.179568962029506, 29.926751237449892 ], [ -95.179872961983037, 29.926539237876103 ], [ -95.180347961958589, 29.926216237868697 ], [ -95.180793962595743, 29.925966237481056 ], [ -95.181170961920117, 29.925775237612999 ], [ -95.181714961991815, 29.925530237740368 ], [ -95.182140962265521, 29.92536923746837 ], [ -95.182586962438137, 29.925202236920981 ], [ -95.182797962648948, 29.925143237112572 ], [ -95.183139963323001, 29.92504523747716 ], [ -95.183654962462256, 29.924923237531296 ], [ -95.184340963421207, 29.924820236649083 ], [ -95.184663963256028, 29.924781237408276 ], [ -95.185182963837164, 29.92474223729614 ], [ -95.185623963586153, 29.924717236622616 ], [ -95.186025963772323, 29.924707237043428 ], [ -95.18729396347932, 29.924742236754092 ], [ -95.187473963597157, 29.924747237187717 ], [ -95.187798963876233, 29.924756236879404 ], [ -95.188160963690564, 29.924737237030772 ], [ -95.188621964017202, 29.924707236858485 ], [ -95.189008963908393, 29.92464923732226 ], [ -95.189483964865758, 29.924561236520169 ], [ -95.190026964898465, 29.924464236725086 ], [ -95.190301964122852, 29.924414237171241 ], [ -95.190614965180217, 29.924374236714407 ], [ -95.191075964725385, 29.924335236710039 ], [ -95.191633965235539, 29.92432523711253 ], [ -95.19202596504951, 29.924335236795852 ], [ -95.192466965263492, 29.924365236587708 ], [ -95.19289796521781, 29.924414236686601 ], [ -95.193210965878677, 29.924472237001257 ], [ -95.193779965285458, 29.924570236425325 ], [ -95.194308965326613, 29.924688236899392 ], [ -95.194660965784465, 29.924776236616296 ], [ -95.194935965577443, 29.924845236663788 ], [ -95.195336965794425, 29.924903236310644 ], [ -95.195813965893223, 29.924957236359553 ], [ -95.196032966613572, 29.924982237017876 ], [ -95.196620965837454, 29.92501123687429 ], [ -95.197178966593199, 29.925001236717602 ], [ -95.198177966273349, 29.924933237042318 ], [ -95.198912967258835, 29.924845236288089 ], [ -95.199433967367071, 29.924770236958089 ], [ -95.199657967052374, 29.924737236344232 ], [ -95.19977496734208, 29.924720236593842 ], [ -95.199931966632846, 29.924698236568084 ], [ -95.200093966856926, 29.924679236681381 ], [ -95.20004396668989, 29.924454236890963 ], [ -95.200018967320148, 29.9242722364706 ], [ -95.19998396678622, 29.923665236369693 ], [ -95.199995966956308, 29.922944236306297 ], [ -95.200019967093453, 29.922765236182954 ], [ -95.200212966844234, 29.921376236132978 ], [ -95.200297966573757, 29.920799235399482 ], [ -95.200430966790165, 29.919900235746653 ], [ -95.200499966876436, 29.919591235847385 ], [ -95.200785966550981, 29.917522234775983 ], [ -95.200984967011351, 29.916087234864708 ], [ -95.201472966841308, 29.912666233750997 ], [ -95.201883967286065, 29.910227233422248 ], [ -95.202392967153884, 29.906820232983129 ], [ -95.202422966482601, 29.906712232906393 ], [ -95.202433967332993, 29.9065532324387 ], [ -95.202773966959327, 29.904655232724114 ], [ -95.203098967142665, 29.90269423212419 ], [ -95.20315496736508, 29.902130231649515 ], [ -95.203239966791486, 29.901396231466688 ], [ -95.203253967353291, 29.900042231375057 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1169, "Tract": "48201240400", "Area_SqMi": 8.1082858707152106, "total_2009": 13088, "total_2010": 12043, "total_2011": 13114, "total_2012": 14220, "total_2013": 14674, "total_2014": 15923, "total_2015": 15033, "total_2016": 13224, "total_2017": 13155, "total_2018": 14508, "total_2019": 14723, "total_2020": 14820, "age1": 2176, "age2": 8182, "age3": 3249, "earn1": 953, "earn2": 2104, "earn3": 10550, "naics_s01": 1, "naics_s02": 276, "naics_s03": 106, "naics_s04": 2271, "naics_s05": 3384, "naics_s06": 2614, "naics_s07": 729, "naics_s08": 2224, "naics_s09": 244, "naics_s10": 17, "naics_s11": 110, "naics_s12": 642, "naics_s13": 294, "naics_s14": 182, "naics_s15": 26, "naics_s16": 36, "naics_s17": 123, "naics_s18": 106, "naics_s19": 222, "naics_s20": 0, "race1": 10417, "race2": 1935, "race3": 141, "race4": 895, "race5": 27, "race6": 192, "ethnicity1": 8830, "ethnicity2": 4777, "edu1": 2453, "edu2": 3131, "edu3": 3390, "edu4": 2457, "Shape_Length": 80523.45561376313, "Shape_Area": 226045132.60557884, "total_2021": 13375, "total_2022": 13607 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.404788024587447, 30.021840249009337 ], [ -95.404730024288341, 30.020136248966772 ], [ -95.404527023275662, 30.014220247572172 ], [ -95.40452202314053, 30.01407024763159 ], [ -95.404498023151689, 30.013063247162727 ], [ -95.40440002363917, 30.012269247185831 ], [ -95.403564023076314, 30.009124246787138 ], [ -95.403463022885589, 30.008817246388087 ], [ -95.403112022669248, 30.008174246801008 ], [ -95.402922023080052, 30.007869246619212 ], [ -95.402560022428247, 30.00740024662819 ], [ -95.402263022243574, 30.007091246144 ], [ -95.401831022663288, 30.006702246501426 ], [ -95.401686022148795, 30.006555246283366 ], [ -95.401284022924031, 30.006239246348454 ], [ -95.400757021874213, 30.005751246278443 ], [ -95.400030022468854, 30.005062246214784 ], [ -95.399388022012474, 30.004341246155771 ], [ -95.399174022137373, 30.004003245828098 ], [ -95.3990060218172, 30.003559246061009 ], [ -95.398843021438466, 30.003043245934052 ], [ -95.398246021174572, 30.000573244969747 ], [ -95.398161021768573, 30.000178244813238 ], [ -95.39731202104737, 29.996896244462931 ], [ -95.397161020594439, 29.996310244154159 ], [ -95.397068020923868, 29.995934244103243 ], [ -95.396389020145165, 29.993199243804497 ], [ -95.396310020864121, 29.992839243999914 ], [ -95.396103020681679, 29.991891243633066 ], [ -95.394639020308958, 29.986129242366115 ], [ -95.394015019619175, 29.983674241499106 ], [ -95.393996019830922, 29.983599241799499 ], [ -95.393653019298071, 29.982246241642407 ], [ -95.393085019180276, 29.98001024120197 ], [ -95.392625019105026, 29.978320241081754 ], [ -95.392441018965044, 29.977525240390822 ], [ -95.39222601887144, 29.976597240427825 ], [ -95.392139019108228, 29.976234240392873 ], [ -95.391928019166741, 29.97566624068423 ], [ -95.391699018117663, 29.975179239941777 ], [ -95.391468019012791, 29.974796240390674 ], [ -95.391174017952011, 29.974393239787879 ], [ -95.39085701868531, 29.974024240477689 ], [ -95.390624018720843, 29.973801240046438 ], [ -95.390428017795841, 29.9736132401056 ], [ -95.39029201838774, 29.973512239744995 ], [ -95.389975018460035, 29.973278240168515 ], [ -95.389325017367028, 29.972902240187675 ], [ -95.388438017903795, 29.972549240017404 ], [ -95.387598017524638, 29.972254240225016 ], [ -95.386715017199705, 29.971977239336269 ], [ -95.385541016360577, 29.971590239781349 ], [ -95.385232016419252, 29.971486239878743 ], [ -95.383572016571875, 29.97092923952717 ], [ -95.382784015974153, 29.970583239173731 ], [ -95.382089016399462, 29.970134239759584 ], [ -95.381486015821238, 29.969570239895795 ], [ -95.381029015704669, 29.968997239471051 ], [ -95.380646015141451, 29.968419239373272 ], [ -95.380443015841564, 29.967918239017873 ], [ -95.38027401495475, 29.967492238784398 ], [ -95.380180015348444, 29.967065239122107 ], [ -95.380118015000193, 29.965518238536461 ], [ -95.380126015428033, 29.965410238949914 ], [ -95.380094014923927, 29.964152238589659 ], [ -95.380066015329874, 29.961576237439605 ], [ -95.379991015031891, 29.958766237333815 ], [ -95.38003301444715, 29.958480237336623 ], [ -95.380060014626451, 29.958250236911855 ], [ -95.380161015320681, 29.957796237353627 ], [ -95.380296015294832, 29.957401237162369 ], [ -95.380380015152355, 29.957202237160494 ], [ -95.38060401530214, 29.956774236563529 ], [ -95.380710014981176, 29.956584237207597 ], [ -95.380985014862532, 29.95619823717858 ], [ -95.381538014976414, 29.955631236530564 ], [ -95.382220014797767, 29.954973236387712 ], [ -95.382559015224999, 29.95465423624232 ], [ -95.382970015260383, 29.954241236689768 ], [ -95.383210015272496, 29.953955236165537 ], [ -95.383434015420605, 29.953676236310049 ], [ -95.383696015038552, 29.95324423569668 ], [ -95.383932016093127, 29.95276623597924 ], [ -95.384108015131432, 29.952288235492297 ], [ -95.38416801522915, 29.952026235349383 ], [ -95.384232015627191, 29.951564235271242 ], [ -95.38423501553109, 29.951487235915426 ], [ -95.38428901566347, 29.951073235272684 ], [ -95.384290015575573, 29.950622235324182 ], [ -95.38418401521534, 29.94978723546415 ], [ -95.38407401587304, 29.949393235001274 ], [ -95.384027015834562, 29.949394235556735 ], [ -95.383915015018232, 29.949375235437358 ], [ -95.383634015094671, 29.949318234948706 ], [ -95.38219201456144, 29.94899523565196 ], [ -95.382021014421468, 29.948984235147858 ], [ -95.38175601517419, 29.949039235413213 ], [ -95.381605014729132, 29.949045235213287 ], [ -95.381428014375032, 29.949072235530458 ], [ -95.380487014815586, 29.949127235567797 ], [ -95.379578014758707, 29.949121235122476 ], [ -95.375009013535703, 29.949170235609927 ], [ -95.374573013210039, 29.949170235938784 ], [ -95.374252012583142, 29.94918623543343 ], [ -95.37336801220178, 29.949181235488648 ], [ -95.373159012592311, 29.949215235847991 ], [ -95.372993012732806, 29.949236235595791 ], [ -95.372894012707746, 29.949248235611087 ], [ -95.372219012637501, 29.949270235798515 ], [ -95.372130012201637, 29.949248235950833 ], [ -95.371960012630495, 29.949226235970865 ], [ -95.371808012077707, 29.949171235251807 ], [ -95.371701012176345, 29.949100235914837 ], [ -95.371617011952608, 29.949031235483833 ], [ -95.371543011815589, 29.94894623566536 ], [ -95.371448011972177, 29.948770235378223 ], [ -95.371315011966857, 29.948440235656676 ], [ -95.371252012109366, 29.948237235521756 ], [ -95.371252011620882, 29.948127235782646 ], [ -95.371265011726464, 29.948050234980766 ], [ -95.371328012290306, 29.947852235460825 ], [ -95.371410012465901, 29.947637235122016 ], [ -95.371422011626876, 29.947390235122224 ], [ -95.37132101258257, 29.947242234915265 ], [ -95.37125801243063, 29.94717623523486 ], [ -95.371163011786251, 29.947126234970632 ], [ -95.371012012471681, 29.947077235584654 ], [ -95.370818011812148, 29.947062234897977 ], [ -95.370671011893322, 29.947050234884195 ], [ -95.369534011572384, 29.947094235677604 ], [ -95.36938301210877, 29.947072235242661 ], [ -95.36928801143938, 29.947012235361008 ], [ -95.369143011331815, 29.946896235245973 ], [ -95.369080011792519, 29.946825234926248 ], [ -95.369048011879443, 29.946748234800502 ], [ -95.368915011805669, 29.946171235254646 ], [ -95.368877011243427, 29.946072234893197 ], [ -95.368839011701525, 29.946000235366739 ], [ -95.368738010928382, 29.94588523527457 ], [ -95.368638011030555, 29.945781235260526 ], [ -95.368574011256058, 29.945715235158367 ], [ -95.36850401088256, 29.945675234999779 ], [ -95.368410011675351, 29.945621235017057 ], [ -95.367930011468147, 29.945468234791395 ], [ -95.367401010769527, 29.945356235050475 ], [ -95.367305010635334, 29.945336234901919 ], [ -95.367114010756964, 29.945291234801321 ], [ -95.364748009997612, 29.944738234991831 ], [ -95.363897009980619, 29.944514234801829 ], [ -95.363598010405312, 29.944436234557095 ], [ -95.362973010118807, 29.94423823466304 ], [ -95.362740009396489, 29.944134235261799 ], [ -95.362569009735353, 29.944024235040679 ], [ -95.362367009680312, 29.94381523495549 ], [ -95.362291009359737, 29.943683234770216 ], [ -95.361868009096796, 29.943029234510121 ], [ -95.361400009559389, 29.942358234277208 ], [ -95.360933009440444, 29.941748234653112 ], [ -95.360579008864079, 29.941408234376272 ], [ -95.360339008901462, 29.941210234285709 ], [ -95.359986009017646, 29.940858234726178 ], [ -95.359379008296415, 29.940331233914517 ], [ -95.359228008725822, 29.94023223459542 ], [ -95.35917700833626, 29.940210234655908 ], [ -95.358975008155809, 29.940160234184813 ], [ -95.358767008843316, 29.940149234419263 ], [ -95.358596008830915, 29.940155234205434 ], [ -95.358407008984813, 29.940210234288173 ], [ -95.358344008718376, 29.94022123410209 ], [ -95.357214007990905, 29.940238234648877 ], [ -95.356849008456791, 29.940247234692123 ], [ -95.356231007611868, 29.940262234295638 ], [ -95.356260008400469, 29.940518234488696 ], [ -95.356256008444703, 29.940676234181094 ], [ -95.356249007582505, 29.940956234407341 ], [ -95.356258007686961, 29.941145234484477 ], [ -95.356283008052273, 29.941322234362588 ], [ -95.35649200794343, 29.942286235056095 ], [ -95.356996007913281, 29.944359234974467 ], [ -95.357084008038981, 29.944727234830609 ], [ -95.357452008008408, 29.946439235409724 ], [ -95.357577008718067, 29.946989235869296 ], [ -95.35802900900147, 29.948963236477276 ], [ -95.358492008606106, 29.951104236244792 ], [ -95.358898009624752, 29.95277723665648 ], [ -95.359583009157745, 29.955651237504643 ], [ -95.35969100902139, 29.956103237119159 ], [ -95.359862009103836, 29.956822237291423 ], [ -95.359908009819208, 29.9570172377258 ], [ -95.359947010148815, 29.957179237427361 ], [ -95.360367009340607, 29.95896623809028 ], [ -95.360565009991817, 29.959772238243367 ], [ -95.360784010205037, 29.960458238719212 ], [ -95.360891010484934, 29.960756238035415 ], [ -95.361110010499957, 29.961217238095227 ], [ -95.361223010335024, 29.961438238928825 ], [ -95.361373009781374, 29.96169523838806 ], [ -95.361643010166645, 29.962128238478172 ], [ -95.363371011347652, 29.964725239028404 ], [ -95.363567010705125, 29.965020239220486 ], [ -95.363755010865248, 29.96534923949142 ], [ -95.363847010671137, 29.96548423948358 ], [ -95.363906011315336, 29.965687239316789 ], [ -95.364012010759595, 29.966054239721853 ], [ -95.364066011346154, 29.966325239341124 ], [ -95.364098010895816, 29.966652239501862 ], [ -95.364147011669175, 29.967796239315117 ], [ -95.364164011456495, 29.96849523974694 ], [ -95.364224011194111, 29.970086240327248 ], [ -95.364261010989594, 29.970908240370562 ], [ -95.364335011376596, 29.972543240699522 ], [ -95.364337011900048, 29.972873240429113 ], [ -95.364366011818035, 29.973521241280398 ], [ -95.364411011384036, 29.974168240895494 ], [ -95.36443101166239, 29.97477324126983 ], [ -95.364427012100165, 29.975076241077922 ], [ -95.364447012047037, 29.975226241620035 ], [ -95.364469011800225, 29.97569124109847 ], [ -95.364466012074487, 29.975847241362114 ], [ -95.364499012127155, 29.976336240984846 ], [ -95.364525011678893, 29.977128241896185 ], [ -95.364549011313358, 29.977608241430186 ], [ -95.364554011508744, 29.97789924162495 ], [ -95.364607012294371, 29.978996242338564 ], [ -95.36462201155733, 29.979569242451113 ], [ -95.364638011387626, 29.979722242084662 ], [ -95.364668012352567, 29.980317242067404 ], [ -95.364692011610927, 29.980616242478643 ], [ -95.364721011745729, 29.980763242319782 ], [ -95.364732012113379, 29.980919242187102 ], [ -95.364762012166679, 29.981072242507313 ], [ -95.365039011693128, 29.982006242542948 ], [ -95.365096012420182, 29.98215624215786 ], [ -95.365626012675918, 29.983776242477074 ], [ -95.365667012164749, 29.983932243346654 ], [ -95.365845012315006, 29.984482242811946 ], [ -95.366370012418841, 29.986110243504218 ], [ -95.366429013015079, 29.986256243643371 ], [ -95.367349012750807, 29.989092243860426 ], [ -95.367617013454577, 29.989894243998211 ], [ -95.368031013215273, 29.991184244718969 ], [ -95.368490013106523, 29.992614244783347 ], [ -95.369162013535529, 29.994755244894858 ], [ -95.369217014050008, 29.99490424534849 ], [ -95.369425013874618, 29.995597245167858 ], [ -95.369513013992645, 29.995892245590902 ], [ -95.369782014195195, 29.996713245410401 ], [ -95.369977014011099, 29.997343245710915 ], [ -95.370214014390868, 29.998016245764262 ], [ -95.370408014402514, 29.998621245808359 ], [ -95.370450014052864, 29.998722245983362 ], [ -95.370498014615464, 29.99886424543881 ], [ -95.370542014593894, 29.999034245472775 ], [ -95.37078001445397, 29.999767245833663 ], [ -95.370846014072555, 30.000021246433967 ], [ -95.37089901435958, 30.000170245890928 ], [ -95.37092101438985, 30.000264246493145 ], [ -95.371077014385392, 30.000739246055744 ], [ -95.371157014526887, 30.000999245998695 ], [ -95.371268014999643, 30.001324246255912 ], [ -95.371449015045158, 30.001854245991382 ], [ -95.371512014900759, 30.002055246614944 ], [ -95.371616014401653, 30.002386246389637 ], [ -95.371677014841779, 30.002521246457885 ], [ -95.371854014668799, 30.003013246259588 ], [ -95.371974015119818, 30.003371246597354 ], [ -95.372196015389179, 30.004035246738599 ], [ -95.37228801475834, 30.004328247203432 ], [ -95.372341014743697, 30.004449247216165 ], [ -95.372372015463, 30.004572247151664 ], [ -95.37245201491983, 30.004818246521737 ], [ -95.372523014658654, 30.005055246698788 ], [ -95.372572015046089, 30.005185246655117 ], [ -95.37263801494106, 30.00542424725019 ], [ -95.372724015626659, 30.005663247211544 ], [ -95.372762014669888, 30.005790246713804 ], [ -95.372806014799039, 30.0059182467512 ], [ -95.372925015237371, 30.006305247044615 ], [ -95.37297701496432, 30.006432247194393 ], [ -95.373111014850849, 30.006821247099211 ], [ -95.373167015045439, 30.00695624743928 ], [ -95.373201015496903, 30.007074247310783 ], [ -95.373433015154092, 30.007750247798676 ], [ -95.373565015679205, 30.008167247434177 ], [ -95.373739015854653, 30.008677247552477 ], [ -95.37383801516529, 30.008980247297295 ], [ -95.373969015946898, 30.009306247747315 ], [ -95.374230015476968, 30.009790247462789 ], [ -95.374301016104397, 30.009911248384103 ], [ -95.374426015966478, 30.010136247598414 ], [ -95.37493401569256, 30.011005248084963 ], [ -95.374970015474133, 30.011059247780423 ], [ -95.375116015879442, 30.011311248016185 ], [ -95.375180015952353, 30.011421248192509 ], [ -95.375224015700397, 30.01150524832947 ], [ -95.375261016033917, 30.011552248240914 ], [ -95.375581015950146, 30.012097247927819 ], [ -95.375923016783872, 30.01267924804527 ], [ -95.376264016335, 30.013238248186386 ], [ -95.376360016181394, 30.013398248841781 ], [ -95.376424016752381, 30.013523248460213 ], [ -95.377184016668011, 30.014814249131238 ], [ -95.377241016632141, 30.014905248390164 ], [ -95.377461016708409, 30.015309248871791 ], [ -95.377528016994219, 30.015410249373566 ], [ -95.377832016496157, 30.01593524899997 ], [ -95.377887017114645, 30.016044249434525 ], [ -95.378296016677183, 30.016725249211412 ], [ -95.378351016848995, 30.016835249458346 ], [ -95.379150017817494, 30.018189249403243 ], [ -95.379433017433371, 30.018682249384373 ], [ -95.379646017571446, 30.019054249393783 ], [ -95.379768017048704, 30.019311249376198 ], [ -95.379934017814165, 30.019741249901063 ], [ -95.380043017174501, 30.020108249757627 ], [ -95.380107017348237, 30.020377249706204 ], [ -95.380367017280264, 30.020422250249258 ], [ -95.381961018360698, 30.020700250100585 ], [ -95.384778018718237, 30.021192250176771 ], [ -95.385160019410336, 30.021271250050503 ], [ -95.385706018820613, 30.021406249980583 ], [ -95.386092018959388, 30.021523249866444 ], [ -95.38615601916932, 30.021549250082558 ], [ -95.386600019347171, 30.021709249949065 ], [ -95.386716019474846, 30.021750249508251 ], [ -95.386977018990123, 30.021858250061001 ], [ -95.388140019379449, 30.022348250407628 ], [ -95.39076802025258, 30.02345425028091 ], [ -95.392626021292415, 30.024237250201164 ], [ -95.392819021631638, 30.024319250114502 ], [ -95.394202021411033, 30.024901250456828 ], [ -95.396638021731391, 30.026014250477935 ], [ -95.39687602225564, 30.026123250629372 ], [ -95.396985021953938, 30.026168250290063 ], [ -95.397210022738051, 30.026260250367109 ], [ -95.397817022538661, 30.026489250841777 ], [ -95.398221023116392, 30.026620250559795 ], [ -95.398681023175016, 30.02674125024155 ], [ -95.399150022410709, 30.026854250725631 ], [ -95.400030022741973, 30.027009250771084 ], [ -95.400516023082844, 30.027041250240362 ], [ -95.401225023643391, 30.027060250688404 ], [ -95.40207302375741, 30.027028250663236 ], [ -95.402528024246138, 30.026971250368089 ], [ -95.403599023603292, 30.026774249899933 ], [ -95.403841024335321, 30.026730250521133 ], [ -95.404113023701555, 30.026680249924809 ], [ -95.404295024470002, 30.026646250210163 ], [ -95.404551024635879, 30.026598250312951 ], [ -95.404502024268297, 30.026359250656093 ], [ -95.404404023796772, 30.025860249955315 ], [ -95.40438502368508, 30.025235249968922 ], [ -95.404560024312843, 30.023734250098872 ], [ -95.404581023906189, 30.023581249486966 ], [ -95.404624023855106, 30.023092249425435 ], [ -95.404689024590937, 30.022604249600295 ], [ -95.404788024587447, 30.021840249009337 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1170, "Tract": "48201532200", "Area_SqMi": 0.7237343848352944, "total_2009": 1750, "total_2010": 1666, "total_2011": 1574, "total_2012": 2182, "total_2013": 2277, "total_2014": 2458, "total_2015": 2928, "total_2016": 2563, "total_2017": 2738, "total_2018": 2868, "total_2019": 2928, "total_2020": 2635, "age1": 318, "age2": 1152, "age3": 535, "earn1": 111, "earn2": 336, "earn3": 1558, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 192, "naics_s05": 939, "naics_s06": 606, "naics_s07": 89, "naics_s08": 36, "naics_s09": 0, "naics_s10": 0, "naics_s11": 53, "naics_s12": 33, "naics_s13": 16, "naics_s14": 0, "naics_s15": 5, "naics_s16": 0, "naics_s17": 0, "naics_s18": 28, "naics_s19": 8, "naics_s20": 0, "race1": 1509, "race2": 359, "race3": 20, "race4": 94, "race5": 0, "race6": 23, "ethnicity1": 1085, "ethnicity2": 920, "edu1": 445, "edu2": 484, "edu3": 507, "edu4": 251, "Shape_Length": 19548.961322357256, "Shape_Area": 20176475.965428773, "total_2021": 2033, "total_2022": 2005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.488894037926812, 29.85103821150545 ], [ -95.488893038137945, 29.850841211412085 ], [ -95.488892037501813, 29.850577211116725 ], [ -95.487751037670776, 29.850557211752751 ], [ -95.486937037636054, 29.850570211119873 ], [ -95.486521037509519, 29.850566211803645 ], [ -95.485919037084628, 29.850584211494787 ], [ -95.485894037161458, 29.850585211866129 ], [ -95.485108036797271, 29.850568211451076 ], [ -95.484798036757738, 29.850566212058023 ], [ -95.483975036753364, 29.850563211452474 ], [ -95.483898036810899, 29.850565211283797 ], [ -95.482786036708376, 29.850598212139815 ], [ -95.481883036090323, 29.85057721196678 ], [ -95.481065035582716, 29.850574211825322 ], [ -95.480089035832279, 29.850530211763832 ], [ -95.479737035376644, 29.850491212153837 ], [ -95.47855803541637, 29.850229211527626 ], [ -95.477565034429233, 29.849876211266857 ], [ -95.476624034573874, 29.849447211609238 ], [ -95.475641034587611, 29.849123211371815 ], [ -95.475272034283336, 29.849062211251379 ], [ -95.474976034006062, 29.849013211933066 ], [ -95.474689033820212, 29.848984211348416 ], [ -95.473908033658134, 29.84890521142238 ], [ -95.473301033775712, 29.848882211868343 ], [ -95.472065033200238, 29.848891211750004 ], [ -95.472518033303999, 29.849707212211932 ], [ -95.472581033629439, 29.849821211783663 ], [ -95.473324033386788, 29.851056212162419 ], [ -95.473689034435836, 29.851785211897241 ], [ -95.475377034752697, 29.85470721295858 ], [ -95.475922034748635, 29.855651212973882 ], [ -95.476616034694629, 29.856884212789986 ], [ -95.481623037066967, 29.865768214776161 ], [ -95.48188003703433, 29.865765214395289 ], [ -95.483849036760617, 29.865762215006153 ], [ -95.486779037943293, 29.865757214204535 ], [ -95.486831038151124, 29.864863214171738 ], [ -95.486974038458271, 29.864373213981874 ], [ -95.487753037901157, 29.86274621357628 ], [ -95.488231038300782, 29.86182321359842 ], [ -95.488305038343199, 29.861662213338153 ], [ -95.48844403796474, 29.861303213695152 ], [ -95.488510037720303, 29.861051213781284 ], [ -95.488633038051915, 29.860490213891893 ], [ -95.488698038097922, 29.857882212962508 ], [ -95.488696038268614, 29.856781212411754 ], [ -95.48870203788961, 29.855635212621809 ], [ -95.488700037794331, 29.855117212848231 ], [ -95.488660037413069, 29.8541032123123 ], [ -95.488683038148167, 29.853262212087895 ], [ -95.488706038189733, 29.85249921192192 ], [ -95.488852037433318, 29.851634212071115 ], [ -95.488876037965994, 29.851347211526768 ], [ -95.488887037661215, 29.851221212015247 ], [ -95.488894037926812, 29.85103821150545 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1171, "Tract": "48201555200", "Area_SqMi": 7.2481485584401613, "total_2009": 447, "total_2010": 474, "total_2011": 517, "total_2012": 922, "total_2013": 1441, "total_2014": 1071, "total_2015": 1161, "total_2016": 11444, "total_2017": 10864, "total_2018": 12559, "total_2019": 14392, "total_2020": 15854, "age1": 1748, "age2": 9486, "age3": 2307, "earn1": 562, "earn2": 1150, "earn3": 11828, "naics_s01": 8, "naics_s02": 8177, "naics_s03": 0, "naics_s04": 501, "naics_s05": 132, "naics_s06": 389, "naics_s07": 218, "naics_s08": 454, "naics_s09": 133, "naics_s10": 86, "naics_s11": 279, "naics_s12": 1558, "naics_s13": 299, "naics_s14": 170, "naics_s15": 57, "naics_s16": 648, "naics_s17": 53, "naics_s18": 356, "naics_s19": 23, "naics_s20": 0, "race1": 10591, "race2": 1438, "race3": 78, "race4": 1171, "race5": 30, "race6": 232, "ethnicity1": 11327, "ethnicity2": 2213, "edu1": 1288, "edu2": 2466, "edu3": 3354, "edu4": 4685, "Shape_Length": 74937.969388038851, "Shape_Area": 202065976.47907323, "total_2021": 14170, "total_2022": 13541 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.506927052830378, 30.08476125869992 ], [ -95.506939053358195, 30.083894257995148 ], [ -95.506741052713537, 30.083861258277334 ], [ -95.506502052713955, 30.083827258757058 ], [ -95.506148053363106, 30.083795258536728 ], [ -95.505749052798407, 30.083781258555106 ], [ -95.505622052745807, 30.083760258818128 ], [ -95.505346052491504, 30.083768258122763 ], [ -95.504919052410358, 30.083751258858733 ], [ -95.504786052759712, 30.083740258615592 ], [ -95.504637052502886, 30.083743258476524 ], [ -95.504243052107384, 30.083723258489513 ], [ -95.503994052664751, 30.083698258123853 ], [ -95.503939052123371, 30.083690258276018 ], [ -95.50381605180813, 30.083672257981508 ], [ -95.503745052003723, 30.08366025799846 ], [ -95.502975052386077, 30.08349525884076 ], [ -95.502611051805786, 30.083413258294723 ], [ -95.502484052334367, 30.083388258232446 ], [ -95.502364051871353, 30.08335625863625 ], [ -95.502235051945561, 30.083329258610334 ], [ -95.502106052133854, 30.083295258368175 ], [ -95.501789052011844, 30.083251258711162 ], [ -95.501686052065367, 30.083213258542379 ], [ -95.501418051369214, 30.083148258370144 ], [ -95.501165051797074, 30.083093258307855 ], [ -95.501038052027781, 30.083074258736843 ], [ -95.500941051064572, 30.083042258059116 ], [ -95.500738051893464, 30.083013258346092 ], [ -95.500564051325568, 30.083019258223828 ], [ -95.500479051181159, 30.08301425858799 ], [ -95.500341051685766, 30.083021258486699 ], [ -95.500306051214935, 30.08302525807461 ], [ -95.499573051258722, 30.083105258091898 ], [ -95.499039050636142, 30.08317925856521 ], [ -95.498914051246999, 30.083192258083916 ], [ -95.498802051097329, 30.083195258337735 ], [ -95.497062050779917, 30.083421258926389 ], [ -95.496978050535859, 30.083443258259404 ], [ -95.496715050409406, 30.083471258477797 ], [ -95.496668050074803, 30.083472258464823 ], [ -95.496579049923497, 30.083492259000177 ], [ -95.496419050168257, 30.083508258430999 ], [ -95.495660050429535, 30.083610258589875 ], [ -95.495346050081849, 30.083640258923221 ], [ -95.494861049555411, 30.083704258407327 ], [ -95.49420804930655, 30.08376625889942 ], [ -95.493743049895841, 30.083778258906726 ], [ -95.492941049274137, 30.08377925887191 ], [ -95.491744049295662, 30.083786258521254 ], [ -95.490921049358889, 30.083790258976826 ], [ -95.489870049060841, 30.083773258942418 ], [ -95.488975048421182, 30.083719259234165 ], [ -95.487711047758907, 30.083645258818933 ], [ -95.48526604743094, 30.083487259305357 ], [ -95.484454047441019, 30.083439259485576 ], [ -95.482588047051053, 30.083322259026911 ], [ -95.482472046836293, 30.083302258849837 ], [ -95.482350047023473, 30.083306259072568 ], [ -95.4816600467949, 30.083272259564779 ], [ -95.479476046520674, 30.083125259066232 ], [ -95.479226046448389, 30.083097259482113 ], [ -95.479002045648713, 30.083088259315502 ], [ -95.478873045582176, 30.083071259459508 ], [ -95.478719045786733, 30.083065259228334 ], [ -95.478573045964822, 30.083071259213689 ], [ -95.478297045304629, 30.083053259353896 ], [ -95.47815604563084, 30.083051258844254 ], [ -95.477242044966147, 30.082985259449259 ], [ -95.476478045507832, 30.082942258829046 ], [ -95.476413045189688, 30.082933259015906 ], [ -95.475769044590862, 30.08290025880196 ], [ -95.473999044254455, 30.082788259048684 ], [ -95.473288044754526, 30.082735259120309 ], [ -95.472922044388383, 30.082714258991512 ], [ -95.472784044178042, 30.082717259429511 ], [ -95.472540044433316, 30.082702259732621 ], [ -95.472435044045611, 30.082687259761364 ], [ -95.47231504413817, 30.082691259124125 ], [ -95.472051044229232, 30.082680259087702 ], [ -95.471975043999549, 30.082668259004624 ], [ -95.471894043662033, 30.082672259770433 ], [ -95.471562044396762, 30.082662259462026 ], [ -95.469795043354267, 30.082670259309889 ], [ -95.468882042931185, 30.082677259615625 ], [ -95.467792042956916, 30.0826832595471 ], [ -95.467206043153382, 30.082681259931775 ], [ -95.467152042589248, 30.082684259738141 ], [ -95.46695904265836, 30.082693259386758 ], [ -95.466225042317902, 30.082693259544563 ], [ -95.466106042399915, 30.082699259848585 ], [ -95.465842042763612, 30.082692259437717 ], [ -95.465475042547695, 30.082700259408064 ], [ -95.465237042509415, 30.082696260017411 ], [ -95.465037042806884, 30.082706259716755 ], [ -95.464580042302813, 30.082711259809262 ], [ -95.464516042377596, 30.082706259856113 ], [ -95.464352041976355, 30.082716259392726 ], [ -95.463246041850667, 30.082744259803803 ], [ -95.46224604181613, 30.082796259528884 ], [ -95.46223304169186, 30.082797259514372 ], [ -95.461836041165796, 30.082802259680403 ], [ -95.461707041759823, 30.08281525934941 ], [ -95.460987041071704, 30.082816260068302 ], [ -95.460859040853634, 30.082818259693628 ], [ -95.460665041147848, 30.082809259676857 ], [ -95.46035504151358, 30.08282225997095 ], [ -95.459923040987576, 30.082828259900481 ], [ -95.457880040908336, 30.082838259626303 ], [ -95.457552040088927, 30.082840259960118 ], [ -95.456479040324695, 30.08284925978661 ], [ -95.456295039702241, 30.082868259595031 ], [ -95.456009039565913, 30.082867260294719 ], [ -95.455703040372782, 30.082877259597186 ], [ -95.455150040065959, 30.082882259936252 ], [ -95.45507903987351, 30.082876260408096 ], [ -95.455022039583014, 30.082872260014227 ], [ -95.454868039982344, 30.082882259916538 ], [ -95.45422503930088, 30.082894259682273 ], [ -95.454158039475459, 30.082887260455013 ], [ -95.454123039766145, 30.082883259615759 ], [ -95.454003039921062, 30.082896260045757 ], [ -95.453702038925357, 30.082887259788116 ], [ -95.45360503966036, 30.082894259924359 ], [ -95.452926039477106, 30.082897260292356 ], [ -95.452419038855083, 30.082895259805532 ], [ -95.452254038702023, 30.082904259735855 ], [ -95.451627039121092, 30.082916260499612 ], [ -95.450788038196364, 30.082917259767733 ], [ -95.450722038625855, 30.082920260226004 ], [ -95.450636039123552, 30.082925259762899 ], [ -95.45047003871197, 30.082916260402982 ], [ -95.450087037977084, 30.082929260013408 ], [ -95.44949903854328, 30.082935259745451 ], [ -95.449307037917379, 30.082929260098634 ], [ -95.449097038564489, 30.082946260139927 ], [ -95.448723038110103, 30.082941260250763 ], [ -95.446095037324611, 30.082961260642929 ], [ -95.445933037189064, 30.082975260077717 ], [ -95.44574803770368, 30.082963260657536 ], [ -95.445526037416073, 30.082971260717887 ], [ -95.444981037005789, 30.082972260086724 ], [ -95.444793036750056, 30.082981260015501 ], [ -95.444621037395976, 30.082980260174203 ], [ -95.444449037008496, 30.082979260085505 ], [ -95.442564036683976, 30.083003260348065 ], [ -95.441654036742477, 30.083003260716939 ], [ -95.440754035823474, 30.083021260247282 ], [ -95.440685036241874, 30.083027260388107 ], [ -95.440393036312045, 30.083023260287884 ], [ -95.439003035890707, 30.083033260521201 ], [ -95.438303035487507, 30.083027260541709 ], [ -95.437752035548328, 30.083034260488489 ], [ -95.437494035381221, 30.083055260419883 ], [ -95.437413034868456, 30.083135260795462 ], [ -95.437389035033732, 30.08315926091489 ], [ -95.437347035182242, 30.083313260868369 ], [ -95.437312035353926, 30.08354326085767 ], [ -95.43720803529736, 30.083704260544462 ], [ -95.43707603474104, 30.083739260710207 ], [ -95.436734034862468, 30.083711260837298 ], [ -95.436653034618544, 30.084078261259016 ], [ -95.436616035362007, 30.084244261196499 ], [ -95.436559035509248, 30.084482261120911 ], [ -95.43599903488149, 30.086913261216424 ], [ -95.435611035398438, 30.088518261570428 ], [ -95.435415034788136, 30.089460261611571 ], [ -95.435356035064288, 30.090149261852332 ], [ -95.435333035380211, 30.090405262100976 ], [ -95.435332034732255, 30.090464262485746 ], [ -95.435356034989255, 30.091049262499173 ], [ -95.43536103533043, 30.091162261908405 ], [ -95.4353770354993, 30.091673262428021 ], [ -95.435383035052226, 30.091853262151677 ], [ -95.435390035536187, 30.092053262770321 ], [ -95.435392034908304, 30.092123262628867 ], [ -95.435396035492531, 30.09223026239529 ], [ -95.435405035412003, 30.092509262173543 ], [ -95.435413035659352, 30.092769262883404 ], [ -95.435423035429167, 30.093081262917796 ], [ -95.435426035673231, 30.093175262849169 ], [ -95.43543503472354, 30.093445263159367 ], [ -95.435493035667164, 30.09519326293335 ], [ -95.43563803546742, 30.097566263972283 ], [ -95.435663035341662, 30.100176264212379 ], [ -95.435708036214479, 30.10339126520093 ], [ -95.435715035927302, 30.10373926460402 ], [ -95.435718035328463, 30.103881265190832 ], [ -95.435782035684667, 30.105379264853269 ], [ -95.435788035753916, 30.105528265610577 ], [ -95.435789035983646, 30.105553265594907 ], [ -95.435789036210323, 30.106636265662129 ], [ -95.435778036294209, 30.107024265818595 ], [ -95.435800035938314, 30.107576265890586 ], [ -95.435855036356926, 30.107981265584609 ], [ -95.435904035800405, 30.10828226551774 ], [ -95.436013035600539, 30.108753266154135 ], [ -95.436144036321735, 30.109108266060748 ], [ -95.436352036288937, 30.109688265722898 ], [ -95.436632035967179, 30.110304266419959 ], [ -95.436649036311479, 30.110371266059506 ], [ -95.436707036755067, 30.110306266450941 ], [ -95.436880036021606, 30.110180265762654 ], [ -95.43699503640913, 30.110096266001499 ], [ -95.43717603608674, 30.109964266507639 ], [ -95.437377036458031, 30.109934266181924 ], [ -95.438399036737081, 30.110401266547402 ], [ -95.438905037107929, 30.110537266157845 ], [ -95.439079036887492, 30.110388266204581 ], [ -95.439079036608021, 30.109930266387153 ], [ -95.439150037285458, 30.109802265825007 ], [ -95.439272037138593, 30.109706266062183 ], [ -95.439467036677485, 30.109647265639261 ], [ -95.43996003697994, 30.109666266010429 ], [ -95.440329037033791, 30.109622266237793 ], [ -95.441532037396158, 30.109079265487349 ], [ -95.441898037870033, 30.109029265921297 ], [ -95.442183037554599, 30.109060265571305 ], [ -95.442481037342915, 30.109301265903042 ], [ -95.442994037931754, 30.109509266137284 ], [ -95.44353003771289, 30.109698265757302 ], [ -95.443776038491407, 30.109725265679305 ], [ -95.444147038668291, 30.109719265734288 ], [ -95.444628038674139, 30.109612266018022 ], [ -95.44523203867405, 30.109721265440005 ], [ -95.446132039228559, 30.109618265394097 ], [ -95.446560038357802, 30.109438265692503 ], [ -95.446876038379528, 30.109606265517517 ], [ -95.446974039308714, 30.109720265704592 ], [ -95.44721703935042, 30.109755265903246 ], [ -95.448423038923437, 30.10938226588793 ], [ -95.448792039612528, 30.109170265431253 ], [ -95.449082039150923, 30.109171265494602 ], [ -95.449541039594564, 30.109006265766197 ], [ -95.450041039541745, 30.108749264957176 ], [ -95.451199039979372, 30.108478265692522 ], [ -95.451543039702173, 30.108290265438892 ], [ -95.451749039660314, 30.108282265103036 ], [ -95.451866040209552, 30.108185264893581 ], [ -95.451927040506249, 30.108135265256195 ], [ -95.452130040022382, 30.107658264855321 ], [ -95.452059039938234, 30.107322264967486 ], [ -95.452034039733817, 30.107201264845138 ], [ -95.452092039705661, 30.107067264859051 ], [ -95.452388040420217, 30.10672126504841 ], [ -95.452604039952845, 30.106559264723561 ], [ -95.45305504028552, 30.106553265186875 ], [ -95.453377040514937, 30.106490265242673 ], [ -95.453504040823091, 30.106400264859531 ], [ -95.453587040465791, 30.106237265145715 ], [ -95.4536440403472, 30.105848264451797 ], [ -95.453375040450751, 30.105173264679546 ], [ -95.453356039903667, 30.104995264929176 ], [ -95.453398040562448, 30.104858264688993 ], [ -95.453512040470656, 30.104755264142231 ], [ -95.453772040118452, 30.104646264520138 ], [ -95.454494040936609, 30.104504264702001 ], [ -95.455148040327984, 30.104288264064802 ], [ -95.455334040613735, 30.104293263931268 ], [ -95.455499040571837, 30.104513264237109 ], [ -95.455717040898321, 30.104973264642243 ], [ -95.455915040762306, 30.105103264372516 ], [ -95.456343041139149, 30.105235264724147 ], [ -95.4567110415869, 30.10523126436588 ], [ -95.457086040823356, 30.104811264500718 ], [ -95.457248041089315, 30.104702264634856 ], [ -95.457368041099059, 30.104684264282028 ], [ -95.457799041056859, 30.104755264029571 ], [ -95.457945040995455, 30.104761264335373 ], [ -95.458039041585309, 30.104739264385131 ], [ -95.458299041192063, 30.104623264147509 ], [ -95.458368041620105, 30.104601264347671 ], [ -95.458476041709986, 30.104590263861805 ], [ -95.458602041892576, 30.104601263879289 ], [ -95.458653041692628, 30.104629264509867 ], [ -95.458684042043345, 30.104678264037496 ], [ -95.458722041464696, 30.10478326467549 ], [ -95.458729041745841, 30.104887263896718 ], [ -95.458697041489174, 30.105090264700546 ], [ -95.458741041829157, 30.105206264680668 ], [ -95.458792042121104, 30.105266263965248 ], [ -95.458925042058297, 30.105321264579562 ], [ -95.459032041661672, 30.105327264632912 ], [ -95.459121041493191, 30.105310264088232 ], [ -95.45950704174237, 30.105195264386836 ], [ -95.459658041934176, 30.105184264232673 ], [ -95.459753041926817, 30.105206263924366 ], [ -95.459804041622917, 30.105228263997969 ], [ -95.459974041945756, 30.105354264059635 ], [ -95.460025041670818, 30.1054092645639 ], [ -95.460145041988369, 30.105508264470771 ], [ -95.460221042365575, 30.105557264082275 ], [ -95.460430042264974, 30.105618264764065 ], [ -95.460651042593199, 30.105634264394471 ], [ -95.460740041844772, 30.105629264755532 ], [ -95.460822041865029, 30.105618263962729 ], [ -95.460904041924579, 30.105579264495383 ], [ -95.461049042726401, 30.105486264261408 ], [ -95.461119042740833, 30.105464264094163 ], [ -95.461334042436846, 30.105436264663851 ], [ -95.46142904236045, 30.105403264114496 ], [ -95.461757042292064, 30.105227264186915 ], [ -95.46189004279654, 30.105178263865515 ], [ -95.461979042778268, 30.105167264248088 ], [ -95.462206042127846, 30.105183263951137 ], [ -95.462396042712527, 30.105222264090767 ], [ -95.462526042885301, 30.105259264036409 ], [ -95.46260504264005, 30.105282264078014 ], [ -95.462769042903147, 30.105315264633926 ], [ -95.462851042662635, 30.105315264578444 ], [ -95.462927042279432, 30.105304264423513 ], [ -95.462978042657582, 30.105276264347967 ], [ -95.463205042615527, 30.105106264101572 ], [ -95.463313042793899, 30.104990264480488 ], [ -95.463401042541534, 30.104869263950079 ], [ -95.463433042912413, 30.104809264416964 ], [ -95.463483043387711, 30.104606264099797 ], [ -95.463610043421468, 30.10444626417134 ], [ -95.463717042469895, 30.104358263593035 ], [ -95.46382504271439, 30.104292264322886 ], [ -95.464059042578285, 30.104226264203319 ], [ -95.46417904307512, 30.104221264343941 ], [ -95.46424804261207, 30.10423726391895 ], [ -95.464312043411965, 30.104270264046271 ], [ -95.464419043209531, 30.104347263613779 ], [ -95.464463043312165, 30.104396264196222 ], [ -95.464565043445518, 30.104627264433571 ], [ -95.464577043233703, 30.104704264282972 ], [ -95.464565042800459, 30.104979264194419 ], [ -95.464584042745841, 30.105138264260027 ], [ -95.464609042995662, 30.105205264590662 ], [ -95.464672043754916, 30.105270263959113 ], [ -95.464780043505272, 30.10532526387501 ], [ -95.464830043102708, 30.105336264440758 ], [ -95.464944043472684, 30.105320263908958 ], [ -95.465026043190619, 30.10529826401379 ], [ -95.465248043687339, 30.105188264325101 ], [ -95.465355043112694, 30.105116264531652 ], [ -95.465469043501074, 30.105061263903139 ], [ -95.46553804361217, 30.10504526415021 ], [ -95.465602043422962, 30.105017264530307 ], [ -95.465772043661403, 30.105006264153847 ], [ -95.465905043372786, 30.105023264452072 ], [ -95.466107043640108, 30.105072264368935 ], [ -95.466247043291361, 30.105072263928097 ], [ -95.466367043274843, 30.105045264476885 ], [ -95.466424043877481, 30.105012263685783 ], [ -95.466518043465484, 30.104902263799403 ], [ -95.466518043948739, 30.104792264051746 ], [ -95.466506043684845, 30.104748263973157 ], [ -95.466455043667779, 30.104671263868099 ], [ -95.466284043849825, 30.104544263915557 ], [ -95.466133043134278, 30.104374264320057 ], [ -95.466095043839402, 30.104297263659742 ], [ -95.466082043334865, 30.104220263836289 ], [ -95.46608204331028, 30.104116264121696 ], [ -95.46609404340785, 30.10406626377911 ], [ -95.46610704357586, 30.104011263470642 ], [ -95.466145043496084, 30.103962264114834 ], [ -95.46641004402349, 30.10369826399538 ], [ -95.466467043825716, 30.103665264070603 ], [ -95.466499043230101, 30.103654263630336 ], [ -95.466720044143315, 30.10367626341959 ], [ -95.466809043933807, 30.103676263511549 ], [ -95.466979043700718, 30.103659263371522 ], [ -95.467125043731102, 30.103610263775749 ], [ -95.467213044239102, 30.103555263623768 ], [ -95.46732104389946, 30.103467263980274 ], [ -95.46747904347022, 30.103461263996362 ], [ -95.467549044375644, 30.10348826398026 ], [ -95.467656043783819, 30.103571263737258 ], [ -95.467719043524767, 30.103604263915233 ], [ -95.467858043742851, 30.103648263304446 ], [ -95.467966044058954, 30.103708263490656 ], [ -95.468004044096958, 30.1037522640598 ], [ -95.468016044261745, 30.103774263691523 ], [ -95.468029044557269, 30.103956263887891 ], [ -95.468074044565, 30.104120264068381 ], [ -95.468156043675535, 30.104219263985168 ], [ -95.46820604461918, 30.104263263803578 ], [ -95.468327044473881, 30.104307263715405 ], [ -95.468409044170997, 30.104318264054996 ], [ -95.468592044700827, 30.104280263660655 ], [ -95.468839044680337, 30.104192264281153 ], [ -95.468921044220693, 30.104186264070346 ], [ -95.468990044003988, 30.104192263769672 ], [ -95.469047044767208, 30.104225263710614 ], [ -95.469104043950523, 30.104296264108299 ], [ -95.469193044130563, 30.104472264130838 ], [ -95.469237044726086, 30.104527264084759 ], [ -95.469332044303371, 30.10460926410158 ], [ -95.469382043953985, 30.104631264027923 ], [ -95.469465044776499, 30.104620263526641 ], [ -95.469541044416573, 30.104582263811711 ], [ -95.469623044672574, 30.104494263879371 ], [ -95.469673044511097, 30.104406264016141 ], [ -95.469781044720193, 30.104279263747621 ], [ -95.470078044362751, 30.104016263719171 ], [ -95.470154044828263, 30.103977263674878 ], [ -95.470204044951757, 30.10396026368851 ], [ -95.470280044791636, 30.103971263335996 ], [ -95.47050804489524, 30.104043263462916 ], [ -95.470577045077277, 30.104048264150663 ], [ -95.470628044424004, 30.104043263320989 ], [ -95.470697044596477, 30.10401026343494 ], [ -95.470773044599639, 30.103949263641134 ], [ -95.47083604481665, 30.103878263640858 ], [ -95.470938044963518, 30.103790263464486 ], [ -95.471089044513505, 30.103718263258294 ], [ -95.471721044588293, 30.103454263891599 ], [ -95.471898044667441, 30.103372263479226 ], [ -95.471987044697556, 30.103366263688134 ], [ -95.472139045007523, 30.103383263600392 ], [ -95.472253044863308, 30.103432263216401 ], [ -95.472297045469659, 30.103471263752887 ], [ -95.472366045443906, 30.103564263788449 ], [ -95.47237304474605, 30.103657263618441 ], [ -95.472354045259209, 30.103872263495695 ], [ -95.472373045267361, 30.103960263997465 ], [ -95.472398044889104, 30.104009263435277 ], [ -95.472487045478402, 30.104103263712684 ], [ -95.472708044802104, 30.104306264011864 ], [ -95.472771045538238, 30.104339263590415 ], [ -95.47283504507385, 30.104388263368222 ], [ -95.472885045274353, 30.104443263314948 ], [ -95.472911045057813, 30.10451526389458 ], [ -95.472999045312207, 30.104608263712823 ], [ -95.473037045208457, 30.104625263336604 ], [ -95.473094045359815, 30.104625263791505 ], [ -95.473170045537046, 30.104592263943907 ], [ -95.473208045588692, 30.104559263795228 ], [ -95.473328045932718, 30.104416263959116 ], [ -95.473334044964844, 30.104394263976548 ], [ -95.473321045136814, 30.104322263275975 ], [ -95.473264045823242, 30.104157263542877 ], [ -95.473258045733019, 30.104108263492925 ], [ -95.473283045900047, 30.103998263440864 ], [ -95.473334045089999, 30.103860263489274 ], [ -95.473378044951616, 30.103800263261213 ], [ -95.473498044939575, 30.103679263535394 ], [ -95.473757045896207, 30.103509263879271 ], [ -95.473808045800752, 30.103492263519307 ], [ -95.473852045199138, 30.103492263899447 ], [ -95.473903045341729, 30.103508263934195 ], [ -95.473934045046605, 30.103536263108229 ], [ -95.474067045614788, 30.103783263727681 ], [ -95.47411804529014, 30.10384426332957 ], [ -95.474175045744403, 30.103893263964814 ], [ -95.474244045475871, 30.103904263735991 ], [ -95.47431404544416, 30.103882264011055 ], [ -95.474377045606332, 30.10384426373319 ], [ -95.474428045171294, 30.1037892635538 ], [ -95.474466045560021, 30.103717263477723 ], [ -95.474466045248036, 30.103596263745217 ], [ -95.474447045804624, 30.103398263090234 ], [ -95.474491045871176, 30.103294263758666 ], [ -95.474598045904827, 30.10323926333475 ], [ -95.474661045507162, 30.103228263257446 ], [ -95.474756045416015, 30.103233263846679 ], [ -95.474851046014322, 30.103261263776069 ], [ -95.47511004616851, 30.10345326341502 ], [ -95.475174045663763, 30.103486263685397 ], [ -95.475408046372522, 30.10354626368699 ], [ -95.475465046253447, 30.103590263692251 ], [ -95.475509046262673, 30.103651263398145 ], [ -95.475572045956255, 30.103805263123402 ], [ -95.475589046201094, 30.103831263174545 ], [ -95.475635046202484, 30.103898263878342 ], [ -95.475680046470956, 30.103948263423835 ], [ -95.475768045731499, 30.104008263677564 ], [ -95.475996046396773, 30.104085263497293 ], [ -95.476272046217133, 30.104140263260781 ], [ -95.476571045816016, 30.104200263182218 ], [ -95.47665304653718, 30.10422826321647 ], [ -95.476687045951167, 30.104251263547344 ], [ -95.476837046459664, 30.104354263562897 ], [ -95.476919046681161, 30.104376263344665 ], [ -95.476995046364891, 30.104387263677605 ], [ -95.477134046595452, 30.104365263395152 ], [ -95.477229046510999, 30.104365263951465 ], [ -95.477463046092566, 30.104420263795593 ], [ -95.477558046527989, 30.104508263341433 ], [ -95.477640046767021, 30.104612263615817 ], [ -95.477729046371323, 30.104914263500152 ], [ -95.477760046085322, 30.10496426379202 ], [ -95.477805047089831, 30.105008263420519 ], [ -95.477931046451872, 30.105079263963109 ], [ -95.478020046659097, 30.105107263246218 ], [ -95.47815204696991, 30.105096263698162 ], [ -95.478683046372154, 30.104859263882258 ], [ -95.479113046921952, 30.104738263209232 ], [ -95.479170047042857, 30.104738263794498 ], [ -95.479214046919751, 30.104749263442528 ], [ -95.479240047365963, 30.104782263163006 ], [ -95.479214046600276, 30.104892263197257 ], [ -95.479221047180715, 30.104919263574864 ], [ -95.479215046766853, 30.105183263670337 ], [ -95.47922704704888, 30.105277263904888 ], [ -95.479272046722642, 30.105425264098901 ], [ -95.479417046714318, 30.105672263448518 ], [ -95.479487046563037, 30.105821263746073 ], [ -95.479500047175719, 30.10588126358434 ], [ -95.479500047028566, 30.105953263431729 ], [ -95.479455047164507, 30.106123263973302 ], [ -95.47945504699689, 30.106261263595393 ], [ -95.479462046695929, 30.106299264032614 ], [ -95.479506047326552, 30.106387263470229 ], [ -95.479576046600485, 30.106426264328565 ], [ -95.479652047250269, 30.106453264195324 ], [ -95.479740047478629, 30.106453263795871 ], [ -95.479803047146589, 30.106426263832557 ], [ -95.479866046906039, 30.106382263669534 ], [ -95.479911046821258, 30.106316264087528 ], [ -95.479923047559524, 30.106255263532102 ], [ -95.479930047217636, 30.106107263838293 ], [ -95.479917047685646, 30.106035263958795 ], [ -95.479917047327717, 30.105958264056564 ], [ -95.479942046874513, 30.105876264199072 ], [ -95.480094046776728, 30.105700263792034 ], [ -95.480163047141303, 30.105672263691972 ], [ -95.480283047156433, 30.10566126381017 ], [ -95.48034004694253, 30.10568326410494 ], [ -95.48039104712899, 30.105727263705731 ], [ -95.480429046848627, 30.105777263330573 ], [ -95.48052404699277, 30.105941264110992 ], [ -95.480581047369313, 30.106013263916896 ], [ -95.48065704719356, 30.106062263422174 ], [ -95.480745047597338, 30.10610626372485 ], [ -95.481024047338607, 30.106211263901923 ], [ -95.481295047201229, 30.106282264101331 ], [ -95.481397047818263, 30.106298263604259 ], [ -95.481479047286854, 30.106326264172004 ], [ -95.481801047824817, 30.106485263804466 ], [ -95.481852047721375, 30.106518263599693 ], [ -95.481928047398142, 30.106623263786577 ], [ -95.481972047818005, 30.106815264232516 ], [ -95.482017047401186, 30.106947264047179 ], [ -95.482055047909526, 30.107134263557466 ], [ -95.482124047983802, 30.107238263676653 ], [ -95.482150047585804, 30.107266263595569 ], [ -95.482289048016256, 30.107337264214436 ], [ -95.482339047566413, 30.107332264357165 ], [ -95.482440047760988, 30.10728826428894 ], [ -95.48256004771153, 30.107222263638491 ], [ -95.482649047803761, 30.107145264203236 ], [ -95.48273704781576, 30.107090264024915 ], [ -95.482801048075885, 30.107062263566359 ], [ -95.482971048053784, 30.107051263977379 ], [ -95.483079047889845, 30.107078263944491 ], [ -95.483117048195155, 30.10709526425692 ], [ -95.483167048513678, 30.107133263602822 ], [ -95.483231048472319, 30.107194263738371 ], [ -95.483288048272129, 30.10731526362029 ], [ -95.483319047817631, 30.107452264166941 ], [ -95.483383047832902, 30.107529264358135 ], [ -95.483433048508587, 30.10757326365281 ], [ -95.483598048369842, 30.10765026413285 ], [ -95.483895048232597, 30.107710263608915 ], [ -95.483990048020573, 30.107738264058902 ], [ -95.484268048363404, 30.107881263918834 ], [ -95.484344048751225, 30.107903263716793 ], [ -95.48462204889907, 30.107935263684571 ], [ -95.484894048615828, 30.107924263807821 ], [ -95.485160048726044, 30.107847263962906 ], [ -95.485280048947487, 30.107825264006831 ], [ -95.485318048857437, 30.107803264246733 ], [ -95.485400048874439, 30.107781263756291 ], [ -95.485444048966713, 30.107781263924235 ], [ -95.485823049218638, 30.107825264009971 ], [ -95.486095048962412, 30.107819263561275 ], [ -95.4861780490603, 30.107825263687591 ], [ -95.486443049430434, 30.107902264412846 ], [ -95.486595049080819, 30.107929264025739 ], [ -95.486848049117768, 30.107907263706853 ], [ -95.486936049149065, 30.107918264062302 ], [ -95.487132049546418, 30.107995264033036 ], [ -95.487215049081996, 30.108000264393851 ], [ -95.487273049476627, 30.107983264031365 ], [ -95.487341049612212, 30.107962263993969 ], [ -95.487493049061968, 30.107841264154732 ], [ -95.487537049512468, 30.107819263478181 ], [ -95.487632049157739, 30.107802263686107 ], [ -95.48775204888527, 30.107797263461414 ], [ -95.487885049243744, 30.107813263486413 ], [ -95.48830804893106, 30.107934263669211 ], [ -95.488422049830163, 30.108033263993828 ], [ -95.488448049758432, 30.108088263745174 ], [ -95.488486049854288, 30.108297263891831 ], [ -95.488536049159137, 30.108412264391397 ], [ -95.488587049534132, 30.108472264439055 ], [ -95.488815049350535, 30.108593263829853 ], [ -95.488928049827294, 30.108615264084612 ], [ -95.489200049991808, 30.108632263796693 ], [ -95.489270049426054, 30.108648263797132 ], [ -95.48940904960503, 30.108725264095806 ], [ -95.489517050257064, 30.108802263658383 ], [ -95.489795049986398, 30.109071264309101 ], [ -95.490073050320746, 30.109252263767736 ], [ -95.490162050453733, 30.109362264337761 ], [ -95.490238049651296, 30.109500264142909 ], [ -95.490333050125329, 30.109599264077676 ], [ -95.490409050162626, 30.109643264104264 ], [ -95.490485049805159, 30.109681264038091 ], [ -95.490693049853419, 30.109747263944477 ], [ -95.490765050158075, 30.109757263868655 ], [ -95.490972050509669, 30.109785264092363 ], [ -95.491066049716053, 30.109807263961436 ], [ -95.491168050667937, 30.109840264133343 ], [ -95.491243050507777, 30.109884264648411 ], [ -95.491288050302146, 30.109923263924525 ], [ -95.491307050669832, 30.109961264414061 ], [ -95.491313050680148, 30.110021264275929 ], [ -95.491300050497443, 30.110082263882457 ], [ -95.491282050648081, 30.110120264671657 ], [ -95.491180050572623, 30.110225264522008 ], [ -95.49113004997254, 30.110373263972146 ], [ -95.491155050722398, 30.110505264540368 ], [ -95.491187050715837, 30.11058826423341 ], [ -95.491314050153804, 30.11074226468093 ], [ -95.491351050017386, 30.110824264806251 ], [ -95.491389050490014, 30.110791264218182 ], [ -95.491415050623829, 30.110786264756904 ], [ -95.491737050390185, 30.11084626427138 ], [ -95.491800050700419, 30.110818264173982 ], [ -95.491832050245677, 30.110763264736253 ], [ -95.491832050387274, 30.110730264560861 ], [ -95.491800050339791, 30.110637264082044 ], [ -95.491813050145808, 30.110609264617683 ], [ -95.491864050087742, 30.110593264671035 ], [ -95.492022050225984, 30.110631264757945 ], [ -95.492123050506351, 30.110615263970772 ], [ -95.492414050902426, 30.11060426422949 ], [ -95.492534050395093, 30.11062026428192 ], [ -95.492622050537562, 30.110642264499649 ], [ -95.492787050321652, 30.110741264247181 ], [ -95.492913050362404, 30.110790264484518 ], [ -95.493097050267693, 30.110763264121644 ], [ -95.493179050357568, 30.11073026425715 ], [ -95.493470050362518, 30.110548264060153 ], [ -95.4935140509088, 30.110477263915527 ], [ -95.493634050490414, 30.11019626417599 ], [ -95.493710051040111, 30.110053264031205 ], [ -95.493760050747298, 30.109993264143693 ], [ -95.493874050765413, 30.109916264048589 ], [ -95.494082051239275, 30.109822264139066 ], [ -95.494266050619302, 30.109806264069096 ], [ -95.494405050902614, 30.109806264054484 ], [ -95.494620051208315, 30.109772263800014 ], [ -95.494797050774153, 30.109728263614031 ], [ -95.49505005160799, 30.109712264109618 ], [ -95.495176051665823, 30.109690263704547 ], [ -95.495258051485564, 30.109651264367333 ], [ -95.495303050976986, 30.10961826370632 ], [ -95.496017051356958, 30.109228263565765 ], [ -95.496244051168702, 30.10909026424746 ], [ -95.496314051880034, 30.109062263969097 ], [ -95.496554051473765, 30.10902926400906 ], [ -95.496655051565043, 30.109062263712158 ], [ -95.496769052066824, 30.109167263912941 ], [ -95.49683905169708, 30.109189263574287 ], [ -95.497060052203167, 30.109199263456297 ], [ -95.497231051487177, 30.10916626360747 ], [ -95.497465051851961, 30.109144263750313 ], [ -95.49756605148103, 30.109150263524274 ], [ -95.497705051621224, 30.109177263851876 ], [ -95.497756051538843, 30.109205263708443 ], [ -95.497806051740341, 30.109265263824916 ], [ -95.497832051811585, 30.109320263404378 ], [ -95.497927052171022, 30.109413264082797 ], [ -95.498097052114034, 30.109523263899789 ], [ -95.498559051680772, 30.109600263832654 ], [ -95.498622052241785, 30.109633263561712 ], [ -95.498692052634553, 30.109682264171209 ], [ -95.498723052553032, 30.109743263794993 ], [ -95.498749052234231, 30.109759263906117 ], [ -95.498749052321401, 30.109858264306119 ], [ -95.498679051969731, 30.110144264162102 ], [ -95.498673051805696, 30.11023826443925 ], [ -95.498711051767529, 30.110348264184587 ], [ -95.498743051854319, 30.110518264060353 ], [ -95.498750052098316, 30.110897264497865 ], [ -95.498769052237421, 30.110941263857097 ], [ -95.498794052479198, 30.110974264156223 ], [ -95.498895052132326, 30.111040263992674 ], [ -95.499091052228309, 30.111062263905517 ], [ -95.499154052853143, 30.111106264280359 ], [ -95.49923705275242, 30.111210263796188 ], [ -95.49926805251971, 30.111276264152661 ], [ -95.499319052155982, 30.111342264375157 ], [ -95.499376052767914, 30.111381264563921 ], [ -95.499528052590989, 30.111458263905405 ], [ -95.49958505245074, 30.111502263996211 ], [ -95.499680052348893, 30.111612264205913 ], [ -95.499831052778504, 30.111831264669252 ], [ -95.499895052863835, 30.111969264776537 ], [ -95.499914053088986, 30.112040264016944 ], [ -95.500013053027033, 30.112627264646523 ], [ -95.500044052404661, 30.112748264893785 ], [ -95.500089052160604, 30.112825264765824 ], [ -95.500120052499327, 30.11285826479045 ], [ -95.500183052443077, 30.112891264567395 ], [ -95.50030405305958, 30.112902264661074 ], [ -95.500481052648439, 30.112880264244989 ], [ -95.500759052491333, 30.112771264274112 ], [ -95.500784052387758, 30.112732264876037 ], [ -95.500791052351772, 30.112639264487225 ], [ -95.500772053125743, 30.112595264594958 ], [ -95.500664052638427, 30.112457264434223 ], [ -95.500658052375826, 30.112402264297284 ], [ -95.500671053128499, 30.112386264108665 ], [ -95.500740053252471, 30.112369264407292 ], [ -95.501025053054249, 30.112375264026845 ], [ -95.501164052994227, 30.112397264200549 ], [ -95.50124005303212, 30.112424264160978 ], [ -95.501467053117665, 30.11257326408732 ], [ -95.501758052933539, 30.112820264410402 ], [ -95.501960053220344, 30.112947264691972 ], [ -95.502080052732552, 30.113002264301521 ], [ -95.502125053649252, 30.113035264291327 ], [ -95.502163053209685, 30.113084264498688 ], [ -95.50221905342913, 30.113134264478152 ], [ -95.502409053306494, 30.113398264419558 ], [ -95.502396053350779, 30.113519264961273 ], [ -95.502396053504185, 30.113607264205786 ], [ -95.502415052960174, 30.113662264754034 ], [ -95.502491053129489, 30.113772264994477 ], [ -95.502586053094092, 30.113937264803852 ], [ -95.502598053534896, 30.114305265121555 ], [ -95.502617053369576, 30.114387264761262 ], [ -95.502800053704917, 30.114635265095838 ], [ -95.502883052984217, 30.114717264715679 ], [ -95.503091053478244, 30.114866264790795 ], [ -95.503148053380201, 30.114926265044307 ], [ -95.503180053456504, 30.114970265028795 ], [ -95.503230053566384, 30.115130264722371 ], [ -95.503350053101542, 30.115251264921646 ], [ -95.503489053152776, 30.1154872644973 ], [ -95.503628053676266, 30.115531264708579 ], [ -95.50380505355362, 30.115526265272258 ], [ -95.503881053517631, 30.115515264511082 ], [ -95.504463053821354, 30.115290265163459 ], [ -95.504899053961182, 30.115136265029037 ], [ -95.505311053746055, 30.114878264340412 ], [ -95.505817054513187, 30.114609264409278 ], [ -95.50606305457282, 30.114504264191282 ], [ -95.506297053976752, 30.114449264957621 ], [ -95.506411054186714, 30.114438264438899 ], [ -95.506639054673443, 30.114433264923704 ], [ -95.506745054573742, 30.114436264788466 ], [ -95.506740054093456, 30.114102264780886 ], [ -95.506758053883146, 30.113522264592472 ], [ -95.506784053880921, 30.113221264700229 ], [ -95.506841054830943, 30.112755263955968 ], [ -95.506898054196711, 30.112125263813738 ], [ -95.506907054387028, 30.111643264201525 ], [ -95.506897054490508, 30.11098726349384 ], [ -95.50689905440781, 30.110644263469815 ], [ -95.506892053812109, 30.110478263662518 ], [ -95.506888053892425, 30.109969263551367 ], [ -95.506882054068029, 30.109803263521073 ], [ -95.506887054661163, 30.109560263872442 ], [ -95.506878054208059, 30.108485263224154 ], [ -95.506882054137989, 30.108299263776964 ], [ -95.506873054662606, 30.108006263001034 ], [ -95.506874053745705, 30.107366262817287 ], [ -95.50688405385587, 30.107042263508749 ], [ -95.506880054597517, 30.106885262934497 ], [ -95.506886054482237, 30.10672126304836 ], [ -95.506878054195568, 30.106221262996993 ], [ -95.506870053699842, 30.106051263080452 ], [ -95.506854054018049, 30.105892262974834 ], [ -95.50685805381292, 30.105707262440525 ], [ -95.506834054288618, 30.104625262198557 ], [ -95.506832053727322, 30.103428262072995 ], [ -95.506832054167631, 30.102992261925387 ], [ -95.506817053523676, 30.10246926238101 ], [ -95.506823054053058, 30.102288262156002 ], [ -95.506815053819267, 30.102148262121972 ], [ -95.506815053417341, 30.102056261657285 ], [ -95.50681505433117, 30.101942262016255 ], [ -95.506789053767321, 30.101817261922825 ], [ -95.506803053830211, 30.10160026170475 ], [ -95.506801054273197, 30.101326261586806 ], [ -95.506794053743391, 30.100468261905696 ], [ -95.506777053246992, 30.099183261320668 ], [ -95.506783053464403, 30.099013261833381 ], [ -95.506789054022235, 30.09775926081333 ], [ -95.506787053557431, 30.096987261380928 ], [ -95.506788053515052, 30.096945260895783 ], [ -95.506797053242224, 30.09627726075319 ], [ -95.506800053248696, 30.094942260170445 ], [ -95.506801054033488, 30.094566260687657 ], [ -95.50680105366213, 30.09434926077294 ], [ -95.506802053878147, 30.093988260408594 ], [ -95.506802054021307, 30.093843260142023 ], [ -95.506810053619958, 30.092755260365845 ], [ -95.506813053221734, 30.091670260225744 ], [ -95.506818053195019, 30.091368260155683 ], [ -95.506833053296518, 30.091026259571265 ], [ -95.506846053517862, 30.090855260015129 ], [ -95.506889053441512, 30.09051125937129 ], [ -95.506919052894006, 30.090165259343905 ], [ -95.506916053432377, 30.089826259402621 ], [ -95.506934053188346, 30.089622259375613 ], [ -95.506934053759991, 30.089568259768772 ], [ -95.506939053149793, 30.088733259569032 ], [ -95.506933053122268, 30.087968259250214 ], [ -95.506916053088929, 30.087833259310813 ], [ -95.50693005310589, 30.087615258863622 ], [ -95.506930052892358, 30.087549259069139 ], [ -95.506928053103579, 30.087111259340151 ], [ -95.506922052701881, 30.086099258524733 ], [ -95.506927052830378, 30.08476125869992 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1172, "Tract": "48201431600", "Area_SqMi": 1.1383337690035265, "total_2009": 1938, "total_2010": 1744, "total_2011": 1746, "total_2012": 1800, "total_2013": 1708, "total_2014": 1638, "total_2015": 1519, "total_2016": 1647, "total_2017": 1666, "total_2018": 1634, "total_2019": 1463, "total_2020": 1465, "age1": 291, "age2": 760, "age3": 534, "earn1": 358, "earn2": 642, "earn3": 585, "naics_s01": 2, "naics_s02": 14, "naics_s03": 0, "naics_s04": 2, "naics_s05": 3, "naics_s06": 11, "naics_s07": 71, "naics_s08": 6, "naics_s09": 0, "naics_s10": 67, "naics_s11": 30, "naics_s12": 46, "naics_s13": 3, "naics_s14": 219, "naics_s15": 3, "naics_s16": 205, "naics_s17": 303, "naics_s18": 412, "naics_s19": 188, "naics_s20": 0, "race1": 1217, "race2": 251, "race3": 16, "race4": 76, "race5": 3, "race6": 22, "ethnicity1": 966, "ethnicity2": 619, "edu1": 359, "edu2": 294, "edu3": 370, "edu4": 271, "Shape_Length": 36563.21478941197, "Shape_Area": 31734797.20210129, "total_2021": 1401, "total_2022": 1585 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.501110036981245, 29.755693191964507 ], [ -95.501143036914939, 29.754161191066082 ], [ -95.500912036955086, 29.754314191746541 ], [ -95.500533036977856, 29.75460119105653 ], [ -95.500280036298562, 29.754809191452054 ], [ -95.499783036209706, 29.755109191592638 ], [ -95.499519036100466, 29.755218191752387 ], [ -95.499126036179845, 29.755345191855355 ], [ -95.497980035874832, 29.755657191835926 ], [ -95.497026035389851, 29.755941191417225 ], [ -95.49574003534768, 29.756304191542128 ], [ -95.495659035338292, 29.756325192420967 ], [ -95.494698035391522, 29.75657819193577 ], [ -95.493652034626095, 29.756882192574157 ], [ -95.492877034676766, 29.757111192638792 ], [ -95.492640034883792, 29.757170192237471 ], [ -95.491597034152534, 29.757485192003259 ], [ -95.490083034383204, 29.757913192899228 ], [ -95.489477033827058, 29.758068192653347 ], [ -95.489259034046029, 29.758117192773422 ], [ -95.488892033431142, 29.758176192572041 ], [ -95.487539033205721, 29.758351193013912 ], [ -95.48680203317069, 29.758450192462998 ], [ -95.486509033078519, 29.758498192963632 ], [ -95.486183033388073, 29.758545192980336 ], [ -95.485076032639313, 29.758722192947868 ], [ -95.484651033116748, 29.758860192449763 ], [ -95.484380032651373, 29.759026192623878 ], [ -95.484095032948616, 29.759209192636153 ], [ -95.482913032626769, 29.760262193222399 ], [ -95.482653032070445, 29.760497193090252 ], [ -95.481542031471307, 29.761524193782584 ], [ -95.479786031598422, 29.76308819394735 ], [ -95.479455031491753, 29.763351193696181 ], [ -95.478864031818532, 29.763653194325762 ], [ -95.478370031661555, 29.763748193752946 ], [ -95.477943030848238, 29.763797193688053 ], [ -95.474779030486559, 29.763838194093513 ], [ -95.473934030422512, 29.763858194667076 ], [ -95.472598030055153, 29.763881194030759 ], [ -95.472276029377952, 29.763878194717474 ], [ -95.471965029872223, 29.76384119472646 ], [ -95.471795029843193, 29.763797193966553 ], [ -95.471654029231615, 29.76375419395335 ], [ -95.471406029565344, 29.763651193945652 ], [ -95.471057029828955, 29.763470194668475 ], [ -95.470614029706326, 29.763327194023038 ], [ -95.47034202938292, 29.763271194062614 ], [ -95.469925029568145, 29.763232194162995 ], [ -95.469406029400545, 29.763210193982236 ], [ -95.468652028574212, 29.763213194328966 ], [ -95.468261028990128, 29.76314819410441 ], [ -95.467945028053393, 29.763059194240899 ], [ -95.467689028274322, 29.762958194115669 ], [ -95.467710028922284, 29.763433194719511 ], [ -95.467712028691039, 29.764259194177757 ], [ -95.467724028654004, 29.7652571946374 ], [ -95.467698028580557, 29.765461195115538 ], [ -95.467718028345374, 29.766229194528023 ], [ -95.467711028986827, 29.767132195168866 ], [ -95.467715028572044, 29.768162195590904 ], [ -95.467726028294848, 29.768602195509203 ], [ -95.467737028553472, 29.769262195198866 ], [ -95.467736028849771, 29.769477196000707 ], [ -95.467923028521938, 29.769655195421436 ], [ -95.468012028451, 29.769837195565852 ], [ -95.468068028747851, 29.770001195594968 ], [ -95.46809402901502, 29.770144195705726 ], [ -95.468150028585285, 29.770293195575761 ], [ -95.468289029057843, 29.770507195786823 ], [ -95.468396028931764, 29.770579195780289 ], [ -95.468466028573957, 29.770612196004528 ], [ -95.468548028730225, 29.770639195748547 ], [ -95.468623029016527, 29.770650195821062 ], [ -95.468787029049153, 29.770655196118184 ], [ -95.469045029239695, 29.770595196090557 ], [ -95.46973802891965, 29.770342195701861 ], [ -95.47000302947491, 29.770281195812775 ], [ -95.470135029396943, 29.770265195596668 ], [ -95.47034302975915, 29.770276195635521 ], [ -95.4705890292541, 29.770320195623679 ], [ -95.470697029821878, 29.770329195963772 ], [ -95.470772029827444, 29.770336196131829 ], [ -95.471478030268798, 29.770297195884069 ], [ -95.471723029822726, 29.77029719534633 ], [ -95.471766029894084, 29.770304195517188 ], [ -95.471963030218447, 29.770336195797942 ], [ -95.472089030120827, 29.770385195466147 ], [ -95.472240029565413, 29.770479195287365 ], [ -95.472354029513426, 29.770616195778647 ], [ -95.472417030513995, 29.770770195364367 ], [ -95.472486029743067, 29.771083195690572 ], [ -95.472606030353788, 29.77143019587059 ], [ -95.472852029906704, 29.771842195822419 ], [ -95.473047029866422, 29.772056195954221 ], [ -95.473249030455918, 29.772183195899217 ], [ -95.473407030207298, 29.772221196425416 ], [ -95.473520030590507, 29.772227195645605 ], [ -95.473615030156012, 29.77222119621096 ], [ -95.473904030170416, 29.77212719588367 ], [ -95.474093030242301, 29.772133195821795 ], [ -95.474226030107118, 29.772149195634192 ], [ -95.474421030185098, 29.772199195933439 ], [ -95.474686030635269, 29.772325196352295 ], [ -95.474932030750807, 29.772413196327285 ], [ -95.475039031033788, 29.772430195754382 ], [ -95.475133030607068, 29.772413195562173 ], [ -95.475215031113379, 29.772364196195088 ], [ -95.475297030690371, 29.772232195529543 ], [ -95.475373031298503, 29.771924195818219 ], [ -95.475486030529254, 29.771605195607933 ], [ -95.47561803048346, 29.771429195467274 ], [ -95.475814030750257, 29.771275195753429 ], [ -95.476059030708271, 29.771126195899242 ], [ -95.476280031428885, 29.771093195416594 ], [ -95.476357031390691, 29.771120196041451 ], [ -95.476456031140543, 29.771154195523842 ], [ -95.476639030670952, 29.771341195499652 ], [ -95.476809031219403, 29.771698195758614 ], [ -95.477446031494893, 29.772506196168226 ], [ -95.477642031712833, 29.772687196183643 ], [ -95.477956031307301, 29.77285519582729 ], [ -95.478524031261941, 29.773160195665891 ], [ -95.478883032102942, 29.773341196453522 ], [ -95.479057031788358, 29.773364196247524 ], [ -95.479129031779891, 29.773374196251151 ], [ -95.47948203167995, 29.773390196294912 ], [ -95.479718031974159, 29.773383196427869 ], [ -95.480585031948948, 29.77335719554592 ], [ -95.48090003186347, 29.773313195761041 ], [ -95.481158032814619, 29.773230195873413 ], [ -95.481303032839691, 29.773170195658388 ], [ -95.481429032380007, 29.773060195824765 ], [ -95.481568032961832, 29.772862196130252 ], [ -95.481587032162452, 29.772768196067243 ], [ -95.481624032823674, 29.772675195745766 ], [ -95.481631032103707, 29.772581195651263 ], [ -95.481675032150832, 29.77240519565542 ], [ -95.481788032266763, 29.772185195548715 ], [ -95.481700032694221, 29.77207619540383 ], [ -95.481674032724001, 29.771971195946278 ], [ -95.481674031937146, 29.771867195877395 ], [ -95.48171203212614, 29.771619195624449 ], [ -95.481668032213378, 29.771300195712023 ], [ -95.481567032614166, 29.770943195699605 ], [ -95.481510032315569, 29.770674195330596 ], [ -95.481523031879888, 29.770602195652678 ], [ -95.48154803230149, 29.770547195405676 ], [ -95.481604032582908, 29.770476195610808 ], [ -95.481649032030944, 29.770454195499955 ], [ -95.481970032016036, 29.77023919552348 ], [ -95.482033032659601, 29.770223195600725 ], [ -95.482140032696918, 29.770195195622431 ], [ -95.482291032055471, 29.770179195710497 ], [ -95.482480032734699, 29.770173195094852 ], [ -95.482650032280475, 29.770195195370519 ], [ -95.482852032579032, 29.770239194921302 ], [ -95.482972032311977, 29.770343195039011 ], [ -95.483041032863596, 29.77049219532956 ], [ -95.48300303303057, 29.770618195512384 ], [ -95.482928032580887, 29.770772195669078 ], [ -95.482896033017724, 29.770954195840034 ], [ -95.482865032542605, 29.771207195668449 ], [ -95.482884032518641, 29.7713171959257 ], [ -95.482834033014129, 29.771591195206817 ], [ -95.482840032371655, 29.771745195393709 ], [ -95.48298503281238, 29.771751195139561 ], [ -95.483187032707974, 29.771707196004282 ], [ -95.483420033377442, 29.771641195903459 ], [ -95.483936033012412, 29.771454195314298 ], [ -95.484428033142876, 29.771239195254562 ], [ -95.484881033742496, 29.770953195385026 ], [ -95.485115033171667, 29.770733195386033 ], [ -95.485203032875646, 29.770584195343325 ], [ -95.485265033105094, 29.770150195418406 ], [ -95.485253032896523, 29.769529195085866 ], [ -95.485372033466732, 29.76929819465343 ], [ -95.485479033061381, 29.76916619472221 ], [ -95.48561803329342, 29.769089194849169 ], [ -95.485756032935328, 29.769045195179974 ], [ -95.485927033046607, 29.769039195213523 ], [ -95.4861980337989, 29.769089194562167 ], [ -95.486412033755173, 29.769177194645579 ], [ -95.486677033659873, 29.769308195346809 ], [ -95.48685903339161, 29.769446194941491 ], [ -95.487042033366222, 29.769628195136427 ], [ -95.487213034178382, 29.769633194858418 ], [ -95.487392034186996, 29.769643195226422 ], [ -95.487591034178806, 29.76962919492389 ], [ -95.487791033522655, 29.769615195244899 ], [ -95.487808034180276, 29.769612194539064 ], [ -95.487871033733171, 29.769602195309538 ], [ -95.487950034038036, 29.769587195056499 ], [ -95.48802903431968, 29.769572194756861 ], [ -95.488135034082035, 29.769549195129926 ], [ -95.488160033544062, 29.76953819451872 ], [ -95.488196034526581, 29.769518194978644 ], [ -95.488218033983941, 29.769502194567469 ], [ -95.48823403413725, 29.769488195143477 ], [ -95.488251033848641, 29.769470195250776 ], [ -95.488262034485629, 29.769457194911485 ], [ -95.488272033616468, 29.769444194503446 ], [ -95.488239034119772, 29.769330195124347 ], [ -95.48745803344535, 29.76869219500373 ], [ -95.487306033229331, 29.768489194764985 ], [ -95.487250034193849, 29.768192194577772 ], [ -95.487306033836958, 29.767972194211069 ], [ -95.48752003359958, 29.767604194891206 ], [ -95.487829033962512, 29.76721919447678 ], [ -95.488169033815268, 29.766955194572507 ], [ -95.488673033969079, 29.766707194761299 ], [ -95.489051033812572, 29.766597194349064 ], [ -95.489334034400656, 29.766603194185652 ], [ -95.489901034319885, 29.766652194732785 ], [ -95.490500033986876, 29.766789193998644 ], [ -95.490733035065517, 29.766805194162387 ], [ -95.490897035097518, 29.766767193935728 ], [ -95.491004034806977, 29.766684193886661 ], [ -95.491023034175953, 29.766591194510617 ], [ -95.490979034945425, 29.766497194493276 ], [ -95.490172034003407, 29.766069194197872 ], [ -95.489800033789251, 29.765805193859478 ], [ -95.489712034212786, 29.765613194173664 ], [ -95.489617034630086, 29.76530519368724 ], [ -95.489598034011749, 29.765008194118412 ], [ -95.489642034152538, 29.764860194089977 ], [ -95.489693033814078, 29.76482719374561 ], [ -95.489787034106769, 29.764794194194248 ], [ -95.489907034716424, 29.764793193527073 ], [ -95.490121034526879, 29.764859194291411 ], [ -95.49042403400037, 29.765145193815808 ], [ -95.490663034233563, 29.765349193648547 ], [ -95.49124903493184, 29.765607194416884 ], [ -95.49185403506435, 29.765623193945956 ], [ -95.492232034759695, 29.765524194176525 ], [ -95.492321034496229, 29.765408193628108 ], [ -95.492352034892292, 29.765326193612509 ], [ -95.492352034843847, 29.765183194344466 ], [ -95.492182034849421, 29.764985193859225 ], [ -95.491879035238611, 29.764798194177832 ], [ -95.491173034306414, 29.764513193626552 ], [ -95.49097203416288, 29.764370193402833 ], [ -95.490858034160212, 29.764166193593329 ], [ -95.490795034771011, 29.764023193561862 ], [ -95.490782034082571, 29.763886193851928 ], [ -95.49078803415064, 29.763721193660754 ], [ -95.490946034159521, 29.763463193653852 ], [ -95.491166034751416, 29.763270193822279 ], [ -95.49155103458753, 29.763028193187527 ], [ -95.49165803508383, 29.763006193785785 ], [ -95.491815034721924, 29.763023193807868 ], [ -95.492086034501938, 29.763110193382648 ], [ -95.492351035245804, 29.763248193213283 ], [ -95.492414035272475, 29.763391193419377 ], [ -95.492295034461506, 29.763830193576524 ], [ -95.492276035297223, 29.764017193755969 ], [ -95.492282034961605, 29.764188193755537 ], [ -95.492402034777569, 29.764364193381724 ], [ -95.492849035008547, 29.764726193613832 ], [ -95.493234035404654, 29.76491919393732 ], [ -95.493593035553744, 29.765023193442019 ], [ -95.493814035640085, 29.76507219423765 ], [ -95.494091035620599, 29.76510519376955 ], [ -95.494444035168087, 29.765078194172542 ], [ -95.494608035803665, 29.765055194028513 ], [ -95.49475303576871, 29.764989193354896 ], [ -95.494853035800048, 29.764896193769502 ], [ -95.49494103577662, 29.764648193712034 ], [ -95.494973035997631, 29.764511193694865 ], [ -95.494985035278688, 29.764368193326487 ], [ -95.495036035032513, 29.76409919319855 ], [ -95.495149036023207, 29.763917193238775 ], [ -95.495464035303115, 29.763653193938836 ], [ -95.495798035303352, 29.763400193870737 ], [ -95.495949035998706, 29.763224192976146 ], [ -95.496037036231911, 29.762955193269782 ], [ -95.495992035378592, 29.762498193401381 ], [ -95.496024035577236, 29.762366192806617 ], [ -95.496125035918354, 29.762196192893828 ], [ -95.496282035328107, 29.762086193090767 ], [ -95.4964300355132, 29.762084192930395 ], [ -95.496473036206609, 29.761942193406377 ], [ -95.496676035603087, 29.761948193123452 ], [ -95.496647035679416, 29.761805193009252 ], [ -95.496773035641596, 29.761657192666718 ], [ -95.496912036231123, 29.761591192679223 ], [ -95.497069036197303, 29.761552193363659 ], [ -95.497246035930644, 29.761569192682622 ], [ -95.497775036309719, 29.76200319314113 ], [ -95.498015035907272, 29.762091192893138 ], [ -95.4981850361265, 29.762118193357676 ], [ -95.498311036349349, 29.762113193523103 ], [ -95.498431036304368, 29.762080193171688 ], [ -95.498538036357985, 29.762035192776324 ], [ -95.498626036540685, 29.761931193308445 ], [ -95.498733036655011, 29.761777193174705 ], [ -95.498815036837044, 29.76141419335092 ], [ -95.498903036789386, 29.761079192923805 ], [ -95.499003036095985, 29.760787192489364 ], [ -95.499211036737492, 29.760529192464759 ], [ -95.499583036459498, 29.760270192319997 ], [ -95.499698036726087, 29.760221192840696 ], [ -95.499778036452241, 29.760188192598005 ], [ -95.499910036920156, 29.760144192612682 ], [ -95.500005036707321, 29.760149192370228 ], [ -95.500121036560913, 29.760121192291781 ], [ -95.500272036339325, 29.760159192602266 ], [ -95.500461036297708, 29.760258192396588 ], [ -95.500487036256871, 29.760280192576452 ], [ -95.500864036887521, 29.760383192541767 ], [ -95.500731037044758, 29.759290192845118 ], [ -95.500675036519382, 29.758651192241004 ], [ -95.500673036779176, 29.758437192680848 ], [ -95.500671036684125, 29.758238192204853 ], [ -95.500697036276009, 29.758089192434518 ], [ -95.500774036947746, 29.757632191968057 ], [ -95.5009210371705, 29.756761191894039 ], [ -95.501110036981245, 29.755693191964507 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1173, "Tract": "48201310900", "Area_SqMi": 0.67643891711388193, "total_2009": 1552, "total_2010": 1539, "total_2011": 1535, "total_2012": 1388, "total_2013": 1369, "total_2014": 1292, "total_2015": 1257, "total_2016": 1337, "total_2017": 1341, "total_2018": 1306, "total_2019": 1286, "total_2020": 1246, "age1": 382, "age2": 500, "age3": 271, "earn1": 354, "earn2": 460, "earn3": 339, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 33, "naics_s05": 92, "naics_s06": 16, "naics_s07": 323, "naics_s08": 63, "naics_s09": 12, "naics_s10": 76, "naics_s11": 5, "naics_s12": 22, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 101, "naics_s17": 0, "naics_s18": 319, "naics_s19": 91, "naics_s20": 0, "race1": 870, "race2": 188, "race3": 13, "race4": 62, "race5": 6, "race6": 14, "ethnicity1": 517, "ethnicity2": 636, "edu1": 239, "edu2": 208, "edu3": 196, "edu4": 128, "Shape_Length": 21117.255025418486, "Shape_Area": 18857959.272357795, "total_2021": 1189, "total_2022": 1153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.314253987987044, 29.737268194391284 ], [ -95.31399098778347, 29.737200193864432 ], [ -95.313719988060456, 29.737128194043141 ], [ -95.312991987454765, 29.736915194112488 ], [ -95.312270987283469, 29.736672194301743 ], [ -95.310974987651704, 29.736277194374949 ], [ -95.309012986629256, 29.735660194052432 ], [ -95.308530986893473, 29.735496193721691 ], [ -95.307051986441635, 29.735005194088281 ], [ -95.305610985367593, 29.734561194152803 ], [ -95.305091986023996, 29.73441519389824 ], [ -95.304099985592501, 29.734097194205706 ], [ -95.303149985137992, 29.73380219384401 ], [ -95.302917985424742, 29.733722193960094 ], [ -95.301469984848154, 29.733272194197646 ], [ -95.300746984618357, 29.733048193526141 ], [ -95.299492983952717, 29.732656193799059 ], [ -95.299534983659271, 29.732590193855966 ], [ -95.299559984279355, 29.732484193693644 ], [ -95.299661984562533, 29.732234193921116 ], [ -95.299797984001259, 29.731909193475683 ], [ -95.30031998458746, 29.730570193093776 ], [ -95.300728983823447, 29.729539193180141 ], [ -95.300015983672253, 29.729317193284661 ], [ -95.299280983662669, 29.729081192982974 ], [ -95.299342983904694, 29.728902193377703 ], [ -95.29952998432843, 29.728431192488269 ], [ -95.299609984235957, 29.728229192943697 ], [ -95.297959983668264, 29.727590192401351 ], [ -95.297635983175994, 29.727537192355648 ], [ -95.297305983002261, 29.727547192460875 ], [ -95.295460982832267, 29.72793819268945 ], [ -95.294905982688562, 29.72795019304413 ], [ -95.294873982728035, 29.728037193169495 ], [ -95.294815982736012, 29.728189192838364 ], [ -95.294625982264748, 29.728686193499659 ], [ -95.294124982961804, 29.72925019341497 ], [ -95.293625982028829, 29.729784193474369 ], [ -95.293250982121108, 29.730128193297002 ], [ -95.293240982559553, 29.730138193742974 ], [ -95.293154982473041, 29.730232193492661 ], [ -95.292989982230338, 29.730456193654081 ], [ -95.292703982739326, 29.731185193475429 ], [ -95.292641982338424, 29.731344193811417 ], [ -95.292503982099234, 29.7317071933977 ], [ -95.292470981952491, 29.73177019427192 ], [ -95.292456981777903, 29.731809193957837 ], [ -95.292448982340218, 29.731834193777193 ], [ -95.292155982131916, 29.732556194113933 ], [ -95.292065981985786, 29.732698194157994 ], [ -95.291889982145207, 29.733147194172478 ], [ -95.29188298257526, 29.733165194174934 ], [ -95.291763982519541, 29.733440194604231 ], [ -95.291638982421404, 29.733747194452199 ], [ -95.291381982173036, 29.734408194530843 ], [ -95.291100981794017, 29.735080194190584 ], [ -95.290834982201872, 29.735748194428403 ], [ -95.290514981876314, 29.736556194820476 ], [ -95.292459982074391, 29.737161195237103 ], [ -95.294453982592017, 29.737802195330922 ], [ -95.295104983535737, 29.738015194770885 ], [ -95.295281983088628, 29.738073195018067 ], [ -95.296375983737136, 29.738426195210462 ], [ -95.298342984156008, 29.739052195514521 ], [ -95.298948983757498, 29.739256195354709 ], [ -95.300634984938256, 29.739788195370995 ], [ -95.302597984969992, 29.740411195660407 ], [ -95.304569985250168, 29.741037194971714 ], [ -95.30656498641045, 29.741677195382668 ], [ -95.308516986430348, 29.742281195419174 ], [ -95.309976987520628, 29.742749195392083 ], [ -95.310396987006698, 29.742888195117494 ], [ -95.310669987042587, 29.742505195508372 ], [ -95.31102498731218, 29.741975195229703 ], [ -95.311172987732618, 29.741778195533016 ], [ -95.311441987655272, 29.741386195510241 ], [ -95.311694987348019, 29.741003194740131 ], [ -95.311920987720626, 29.740633195415171 ], [ -95.312832987582922, 29.739243194724139 ], [ -95.312890987459042, 29.739155195003669 ], [ -95.313012987342162, 29.73898119488203 ], [ -95.313289987943818, 29.738575194143475 ], [ -95.313537988204175, 29.738238194074953 ], [ -95.313768987605826, 29.73790419477703 ], [ -95.314253987987044, 29.737268194391284 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1174, "Tract": "48201311200", "Area_SqMi": 1.1811536439731112, "total_2009": 1162, "total_2010": 1175, "total_2011": 879, "total_2012": 991, "total_2013": 918, "total_2014": 890, "total_2015": 878, "total_2016": 907, "total_2017": 920, "total_2018": 685, "total_2019": 667, "total_2020": 587, "age1": 151, "age2": 283, "age3": 161, "earn1": 138, "earn2": 261, "earn3": 196, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 8, "naics_s05": 2, "naics_s06": 40, "naics_s07": 217, "naics_s08": 10, "naics_s09": 5, "naics_s10": 24, "naics_s11": 19, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 65, "naics_s17": 0, "naics_s18": 64, "naics_s19": 138, "naics_s20": 0, "race1": 460, "race2": 97, "race3": 4, "race4": 29, "race5": 1, "race6": 4, "ethnicity1": 294, "ethnicity2": 301, "edu1": 102, "edu2": 118, "edu3": 138, "edu4": 86, "Shape_Length": 25983.447858950713, "Shape_Area": 32928542.029304866, "total_2021": 615, "total_2022": 595 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.310697986202442, 29.712205188974476 ], [ -95.310628986130126, 29.712158188803041 ], [ -95.310560986024996, 29.712110188876277 ], [ -95.310110985777072, 29.711800189131559 ], [ -95.308669985910797, 29.710844189447851 ], [ -95.307494984720705, 29.710044189288006 ], [ -95.306238984578513, 29.709188188695418 ], [ -95.306031985170662, 29.709047188873175 ], [ -95.305291984613348, 29.70855318871337 ], [ -95.305106984801114, 29.708430188321454 ], [ -95.304943984002975, 29.708523188480488 ], [ -95.302333983933138, 29.709981189251017 ], [ -95.299865982896492, 29.711365189235114 ], [ -95.298604983222205, 29.712076189671595 ], [ -95.296609982205425, 29.713201190095774 ], [ -95.294857982522927, 29.714177190111464 ], [ -95.290502981388954, 29.716635191013999 ], [ -95.290284980662591, 29.716744190853806 ], [ -95.286081979821105, 29.7191121914049 ], [ -95.286005980107248, 29.719156191065643 ], [ -95.285848980274082, 29.719244191516569 ], [ -95.28569797971744, 29.719325191646217 ], [ -95.285117979878564, 29.719655191178237 ], [ -95.285278980247654, 29.719994191554036 ], [ -95.28567498042645, 29.720041191422489 ], [ -95.285867980057247, 29.720087191887426 ], [ -95.285990980454898, 29.720126191456313 ], [ -95.286043980157771, 29.720149191300397 ], [ -95.28609797990255, 29.720172191771319 ], [ -95.286268979726657, 29.720262191994031 ], [ -95.286423980592787, 29.72036619155104 ], [ -95.286565979917157, 29.720498191374148 ], [ -95.286713979897371, 29.720754192001415 ], [ -95.286915980253497, 29.72110819218452 ], [ -95.286711979760369, 29.721532192209089 ], [ -95.286316980644457, 29.722359192216967 ], [ -95.286182980419142, 29.722638192265382 ], [ -95.286437980763097, 29.722664191943817 ], [ -95.287272980927114, 29.723281192618696 ], [ -95.287812980916542, 29.723461192199522 ], [ -95.288059981063014, 29.723469192018271 ], [ -95.288415980473786, 29.723385192277675 ], [ -95.288616980395446, 29.723338192482267 ], [ -95.289314981524797, 29.723272192284671 ], [ -95.289841981040794, 29.723360191761842 ], [ -95.290132981609133, 29.723495192570962 ], [ -95.290318981162088, 29.723638191939369 ], [ -95.290493981166819, 29.723923192624671 ], [ -95.291069981991058, 29.725578192711129 ], [ -95.291278981946206, 29.725845192280829 ], [ -95.29169398129369, 29.726077193123118 ], [ -95.292898982362487, 29.726329192977154 ], [ -95.293267982248977, 29.726490192543746 ], [ -95.293605982790197, 29.726754192674615 ], [ -95.294049982330336, 29.727403193059097 ], [ -95.294340982939076, 29.727708192780579 ], [ -95.294601983050882, 29.727884193075909 ], [ -95.294801982882547, 29.727952192682324 ], [ -95.294905982688562, 29.72795019304413 ], [ -95.295460982832267, 29.72793819268945 ], [ -95.297305983002261, 29.727547192460875 ], [ -95.297635983175994, 29.727537192355648 ], [ -95.297959983668264, 29.727590192401351 ], [ -95.299609984235957, 29.728229192943697 ], [ -95.299733984267078, 29.728277193302532 ], [ -95.30089198381242, 29.728545192864548 ], [ -95.30154198464578, 29.728776192639572 ], [ -95.301796984904072, 29.729006193194248 ], [ -95.302207984486927, 29.72982919297127 ], [ -95.302396984555344, 29.72996619309825 ], [ -95.302755984747137, 29.730087192864588 ], [ -95.303192984952588, 29.730001192790059 ], [ -95.303663985136907, 29.729330193343806 ], [ -95.303836984821217, 29.729004192490478 ], [ -95.304043984790781, 29.728086192873889 ], [ -95.30424398517728, 29.727654192428844 ], [ -95.304467984643196, 29.727496192995222 ], [ -95.305168985233763, 29.727287192843516 ], [ -95.305315985468894, 29.727161192482573 ], [ -95.305458984921373, 29.726903192237174 ], [ -95.305443984915541, 29.726582192520606 ], [ -95.305097985522025, 29.725969191924705 ], [ -95.304990985490193, 29.725585191975902 ], [ -95.305230985048468, 29.724272191925323 ], [ -95.304951984622477, 29.722637191382471 ], [ -95.30503598551006, 29.722382191927593 ], [ -95.305439984738044, 29.72115119090963 ], [ -95.305627985262163, 29.720956191054249 ], [ -95.30616698544047, 29.720624191156546 ], [ -95.308444985563952, 29.719532190998184 ], [ -95.308625985424712, 29.719387191007922 ], [ -95.308702985673392, 29.719221190459479 ], [ -95.308852985453484, 29.71836819074014 ], [ -95.308827985716192, 29.718191190750744 ], [ -95.308661985484477, 29.717987190477906 ], [ -95.307983985599748, 29.717646190382062 ], [ -95.307682985111356, 29.717404190347658 ], [ -95.307535985305876, 29.717109190177712 ], [ -95.307437985854548, 29.716314189891907 ], [ -95.307537985495827, 29.715892190303169 ], [ -95.307717985556707, 29.715612189776749 ], [ -95.308705985528562, 29.714908190134004 ], [ -95.309200985726108, 29.714475189559121 ], [ -95.309297986126481, 29.714278189722222 ], [ -95.309328985905367, 29.71384818971914 ], [ -95.309399985797029, 29.713604189553035 ], [ -95.309915986280942, 29.712826189102792 ], [ -95.310500985713162, 29.712362189025527 ], [ -95.310697986202442, 29.712205188974476 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1175, "Tract": "48201252500", "Area_SqMi": 15.618802925420058, "total_2009": 8249, "total_2010": 8354, "total_2011": 9339, "total_2012": 10243, "total_2013": 10277, "total_2014": 11389, "total_2015": 11763, "total_2016": 12198, "total_2017": 11305, "total_2018": 11853, "total_2019": 11026, "total_2020": 10539, "age1": 1841, "age2": 5645, "age3": 2373, "earn1": 837, "earn2": 1847, "earn3": 7175, "naics_s01": 13, "naics_s02": 113, "naics_s03": 5, "naics_s04": 511, "naics_s05": 2067, "naics_s06": 1104, "naics_s07": 957, "naics_s08": 3300, "naics_s09": 16, "naics_s10": 44, "naics_s11": 308, "naics_s12": 105, "naics_s13": 264, "naics_s14": 397, "naics_s15": 0, "naics_s16": 43, "naics_s17": 0, "naics_s18": 559, "naics_s19": 53, "naics_s20": 0, "race1": 7771, "race2": 1532, "race3": 78, "race4": 346, "race5": 10, "race6": 122, "ethnicity1": 6118, "ethnicity2": 3741, "edu1": 1897, "edu2": 2290, "edu3": 2509, "edu4": 1322, "Shape_Length": 112877.86853853308, "Shape_Area": 435425493.71234232, "total_2021": 9964, "total_2022": 9859 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.197033959342477, 29.77153920557279 ], [ -95.197012959279846, 29.771270205301303 ], [ -95.197006959570274, 29.771197205605901 ], [ -95.197001959419552, 29.771124205388801 ], [ -95.196979959551385, 29.770839205120208 ], [ -95.196840959446021, 29.770500205481678 ], [ -95.196640958931042, 29.770226205091049 ], [ -95.196234959329132, 29.769924204712595 ], [ -95.195692959416974, 29.769750204991912 ], [ -95.195320958745711, 29.769731205040568 ], [ -95.194826959256332, 29.769763204657814 ], [ -95.193562958906, 29.770099205295029 ], [ -95.192866958375973, 29.770182204783328 ], [ -95.191423958079824, 29.770121204723864 ], [ -95.190862958025789, 29.769895205355972 ], [ -95.190202957853018, 29.769464204877959 ], [ -95.190103957599902, 29.769330205016001 ], [ -95.189597957611383, 29.768648205203686 ], [ -95.188813957728442, 29.767383204233582 ], [ -95.188724957320062, 29.767099204540376 ], [ -95.188716956935394, 29.767075205044403 ], [ -95.18869395663171, 29.76700120482565 ], [ -95.188673957022232, 29.766961204737743 ], [ -95.188395957172716, 29.766407204180705 ], [ -95.188209956504437, 29.765782203986618 ], [ -95.188191957389094, 29.765253204126459 ], [ -95.188180957345963, 29.764947203842297 ], [ -95.188201956960853, 29.764430204445468 ], [ -95.188482956916303, 29.763753204186845 ], [ -95.189193956621693, 29.762827203304553 ], [ -95.189341957179906, 29.762586203771182 ], [ -95.189666957195385, 29.76230920387259 ], [ -95.189891956957126, 29.762220203514687 ], [ -95.190096956898955, 29.762202203695466 ], [ -95.19036395754695, 29.762031203922991 ], [ -95.190877957630107, 29.761425203567025 ], [ -95.191295957773605, 29.760603203645392 ], [ -95.191503957077359, 29.760385203100402 ], [ -95.191704957457659, 29.759874202909703 ], [ -95.191766957196052, 29.759410202603867 ], [ -95.191595957031652, 29.758559202816596 ], [ -95.191554957631084, 29.758465202697742 ], [ -95.191508957347565, 29.758357202903174 ], [ -95.191415956982553, 29.758285202345519 ], [ -95.191029957012873, 29.758158202585143 ], [ -95.190575957197723, 29.758165203136489 ], [ -95.190298956921566, 29.758240202634386 ], [ -95.189976957267817, 29.758401202432591 ], [ -95.189508957370066, 29.758755202499707 ], [ -95.188430956664021, 29.759798203319729 ], [ -95.18760395696377, 29.760397203199517 ], [ -95.187050956588777, 29.760643203483298 ], [ -95.18683095670778, 29.76074120328899 ], [ -95.185748955844034, 29.760972203294855 ], [ -95.184633956106737, 29.760959203516283 ], [ -95.184183955657971, 29.761012203173699 ], [ -95.183620955847061, 29.760932203602504 ], [ -95.182748955853825, 29.760705203626802 ], [ -95.182098955592707, 29.760323203471245 ], [ -95.181466954696234, 29.759805203789199 ], [ -95.180789954986011, 29.75912420347343 ], [ -95.180351954447858, 29.758585203181106 ], [ -95.180125954178209, 29.758306203098581 ], [ -95.179972954335668, 29.7582202033078 ], [ -95.179882954610576, 29.758170203365541 ], [ -95.178930954270655, 29.757319202738493 ], [ -95.178756954218443, 29.757102202783589 ], [ -95.178435954480364, 29.756701202724003 ], [ -95.177728953319829, 29.755818202796405 ], [ -95.177631953710176, 29.755581202719302 ], [ -95.177623954134731, 29.75548220303877 ], [ -95.177608954253571, 29.755294202662583 ], [ -95.177301953273002, 29.754981202761286 ], [ -95.17611395315393, 29.753535202371967 ], [ -95.175928953052605, 29.753517202093036 ], [ -95.174803953084421, 29.753098202589555 ], [ -95.17448095286295, 29.752997202160522 ], [ -95.173623952843499, 29.752878202614895 ], [ -95.172802952120875, 29.752782202509938 ], [ -95.172100951887174, 29.752752202538399 ], [ -95.171749952493428, 29.752651202482088 ], [ -95.168387951346958, 29.752264202260527 ], [ -95.166656950443326, 29.752364202514443 ], [ -95.166040950532306, 29.752305202172128 ], [ -95.165539950791924, 29.752137202004668 ], [ -95.165116950697183, 29.751797202318226 ], [ -95.165004950491891, 29.751565202312143 ], [ -95.164922949821801, 29.75092020201933 ], [ -95.165030950593547, 29.750611201716968 ], [ -95.165301950225214, 29.750352202262121 ], [ -95.167238950776309, 29.749649201749524 ], [ -95.170191951451898, 29.746827200806226 ], [ -95.169979951306772, 29.746815201288928 ], [ -95.168950950711121, 29.746903201306026 ], [ -95.168156951382031, 29.7463372010954 ], [ -95.166284950557312, 29.745491201189608 ], [ -95.166017950786085, 29.74539520123508 ], [ -95.165087950607912, 29.745225201250506 ], [ -95.163872950115604, 29.744144201082936 ], [ -95.163371949208994, 29.743484200678743 ], [ -95.162649949208458, 29.743170200330077 ], [ -95.162056949706056, 29.74301420027502 ], [ -95.161774949285714, 29.742864200541085 ], [ -95.159954948350048, 29.742262200141596 ], [ -95.159262948199597, 29.742033200782718 ], [ -95.158920948519764, 29.741721200651913 ], [ -95.158683948436234, 29.741254200387402 ], [ -95.158402948441363, 29.740700199854984 ], [ -95.15811094780517, 29.740264200373076 ], [ -95.157552947698207, 29.739685200039915 ], [ -95.156843947358084, 29.739190199507313 ], [ -95.156799947222993, 29.739120200158851 ], [ -95.156345947808958, 29.73839420009342 ], [ -95.156331948035884, 29.73837119959558 ], [ -95.155828947685066, 29.738032199690728 ], [ -95.155732946883973, 29.737967200089308 ], [ -95.154533946917468, 29.737159199971867 ], [ -95.152863946849592, 29.736294199907281 ], [ -95.152095946646043, 29.736128199942755 ], [ -95.151695946142397, 29.736041199033522 ], [ -95.1507879464056, 29.736005199119024 ], [ -95.150656946444101, 29.736033199962669 ], [ -95.149987946036617, 29.736176199572427 ], [ -95.148446945436532, 29.736262199275036 ], [ -95.146154944838258, 29.736107199589235 ], [ -95.146070944718247, 29.736101200016556 ], [ -95.145805944493645, 29.736083199777926 ], [ -95.145237944617534, 29.735986200117996 ], [ -95.143926944580699, 29.735834199923239 ], [ -95.143174943853921, 29.73563819953478 ], [ -95.142148943395341, 29.73539019946535 ], [ -95.140485943161153, 29.735271199495379 ], [ -95.139335943129126, 29.735108199652942 ], [ -95.138488942916752, 29.735062199945848 ], [ -95.137718942482422, 29.735029199904766 ], [ -95.137058942202657, 29.735005200141728 ], [ -95.1342379415388, 29.73443820000988 ], [ -95.133952941981505, 29.734400200187459 ], [ -95.133583941180873, 29.7344271993042 ], [ -95.132519941148956, 29.734289199909181 ], [ -95.132011941014795, 29.7341352000001 ], [ -95.131867941010626, 29.734074199532394 ], [ -95.131194941374133, 29.73378719952559 ], [ -95.130467940676937, 29.733977199800048 ], [ -95.129143939895101, 29.73432519988781 ], [ -95.128472939997607, 29.73466819964797 ], [ -95.128041939821557, 29.734888199591204 ], [ -95.127005940253738, 29.734433200050805 ], [ -95.126671939397198, 29.734346200170293 ], [ -95.126292939535304, 29.734246199636679 ], [ -95.125466939948808, 29.734240200167985 ], [ -95.124685939153437, 29.734306200444859 ], [ -95.124094938685332, 29.734565199850159 ], [ -95.122793939308053, 29.735031200473692 ], [ -95.122007939115335, 29.735481200083843 ], [ -95.121791938629585, 29.735604200214972 ], [ -95.121208938311781, 29.736062200920216 ], [ -95.119788938331993, 29.736931200652542 ], [ -95.118188938146943, 29.738016201308824 ], [ -95.117420937825017, 29.738618201528169 ], [ -95.116885937327368, 29.738811200878114 ], [ -95.11528293671212, 29.739566200993917 ], [ -95.11428993632768, 29.739548201751539 ], [ -95.113885936843374, 29.739540201887223 ], [ -95.113452936593291, 29.739659201184097 ], [ -95.112213935896435, 29.740157201667298 ], [ -95.111556936561797, 29.74009420124175 ], [ -95.110951936507362, 29.740140201347529 ], [ -95.110731936175597, 29.74015720150523 ], [ -95.110236936015625, 29.740142202004396 ], [ -95.109542935877045, 29.740354201993586 ], [ -95.108855935380149, 29.740486201783945 ], [ -95.108470935698364, 29.740662201581863 ], [ -95.1077199349144, 29.74110820213037 ], [ -95.106620935059951, 29.741606202470049 ], [ -95.105640934315673, 29.742270201986006 ], [ -95.105286934613702, 29.742518202643726 ], [ -95.104615934715014, 29.743106202560696 ], [ -95.104402934731112, 29.743371202732259 ], [ -95.104368934381, 29.743430202690249 ], [ -95.104221934720343, 29.743695202589805 ], [ -95.103418934055156, 29.744612202496278 ], [ -95.102642934281292, 29.745151203100825 ], [ -95.101952934393665, 29.745914203507823 ], [ -95.100694934114713, 29.747009203663502 ], [ -95.100691933919975, 29.747481203395079 ], [ -95.100620933455261, 29.747718203191827 ], [ -95.100406933818007, 29.748029204115365 ], [ -95.099984933913987, 29.748476203589657 ], [ -95.099548933701698, 29.748862204314811 ], [ -95.098806932870346, 29.749179203798295 ], [ -95.098073932911262, 29.749862204319864 ], [ -95.09665793245027, 29.75067720449324 ], [ -95.096114932317164, 29.750934204785686 ], [ -95.095863932530023, 29.751265204056757 ], [ -95.095780932999133, 29.751351204855958 ], [ -95.095222932529012, 29.751926204994255 ], [ -95.094869932374081, 29.752166204652475 ], [ -95.094702931946017, 29.752280204770582 ], [ -95.094015931764062, 29.752853204674878 ], [ -95.093611932159575, 29.75356620549876 ], [ -95.093338932440162, 29.754048205038345 ], [ -95.093097931672247, 29.754624205685698 ], [ -95.093083931883115, 29.754673205136303 ], [ -95.092999931554189, 29.754974205188358 ], [ -95.093049932081954, 29.755657205922116 ], [ -95.092460931998218, 29.756944205511424 ], [ -95.091047932095123, 29.758408206502413 ], [ -95.090526931895354, 29.759530206108892 ], [ -95.090014931780303, 29.760632206201695 ], [ -95.089449931512604, 29.761152206371111 ], [ -95.0880959311624, 29.762397207476468 ], [ -95.087514930708792, 29.762931207145854 ], [ -95.086537930385504, 29.763456207469435 ], [ -95.084812930545752, 29.76376220733956 ], [ -95.083805930577526, 29.763891207269658 ], [ -95.082646929854548, 29.764074207304262 ], [ -95.08269192969307, 29.764143207405294 ], [ -95.081318929436335, 29.764521207632807 ], [ -95.080578929289871, 29.764945207688754 ], [ -95.080052929638654, 29.765247207997934 ], [ -95.079090928569499, 29.766364207809083 ], [ -95.078678928393003, 29.766891208553506 ], [ -95.078282928377007, 29.767383208706875 ], [ -95.077869928603917, 29.768142208377622 ], [ -95.077518928276533, 29.768836208288167 ], [ -95.077221928238913, 29.769580209130392 ], [ -95.076993929110046, 29.770152208749671 ], [ -95.076953928539126, 29.770881209240528 ], [ -95.077167928463595, 29.771770209758827 ], [ -95.077319928891484, 29.772655209199371 ], [ -95.077365928610035, 29.773631210163217 ], [ -95.077258928720397, 29.774547210345844 ], [ -95.077258928620083, 29.775031210314921 ], [ -95.077319929069816, 29.775375210375309 ], [ -95.077060928935637, 29.77551920975063 ], [ -95.076862929155155, 29.776706210485262 ], [ -95.076495928805102, 29.777827210906551 ], [ -95.07594692861484, 29.779124210842191 ], [ -95.075687929066376, 29.780082211050168 ], [ -95.07498592844118, 29.780715211146987 ], [ -95.074313928330824, 29.781501211763022 ], [ -95.073611928567928, 29.782184211962839 ], [ -95.072955928079821, 29.782745211349329 ], [ -95.071933928018325, 29.783668211896611 ], [ -95.070834927688466, 29.784602212296143 ], [ -95.06871492728952, 29.786235212855367 ], [ -95.068042926778631, 29.786754212920911 ], [ -95.067142926891876, 29.787360212511874 ], [ -95.06618092692139, 29.788077213051562 ], [ -95.065311926356756, 29.788741213167302 ], [ -95.064609926198045, 29.7894042130619 ], [ -95.0631909256998, 29.790640213919861 ], [ -95.06248892531454, 29.79129621414998 ], [ -95.061832925545701, 29.791887214134633 ], [ -95.061033925149644, 29.792403214227974 ], [ -95.060829925875836, 29.792517214052317 ], [ -95.061627926025679, 29.792883214034699 ], [ -95.061804925795059, 29.792962214352414 ], [ -95.062209925336376, 29.793143213959826 ], [ -95.063741926621319, 29.793827214206907 ], [ -95.06596992685229, 29.794821214155188 ], [ -95.066429926531526, 29.794984214627455 ], [ -95.06669092672611, 29.79507221460209 ], [ -95.067093927130472, 29.795172214673073 ], [ -95.067283927604379, 29.795219214220879 ], [ -95.067539926897169, 29.795269214173906 ], [ -95.068377927876881, 29.79539621452291 ], [ -95.068797927970024, 29.7954312147744 ], [ -95.069197927489327, 29.795448214347548 ], [ -95.069377928111038, 29.795442214294543 ], [ -95.06973892774937, 29.795456214350285 ], [ -95.07013592834528, 29.795442214532677 ], [ -95.070552928274026, 29.795414214411462 ], [ -95.071019928113486, 29.795357214160045 ], [ -95.071523928681628, 29.795245214545911 ], [ -95.072004928177918, 29.795139214706538 ], [ -95.072462928659661, 29.795012214239417 ], [ -95.072796929047811, 29.794904214197945 ], [ -95.073780928488375, 29.794555214233689 ], [ -95.075329929538825, 29.793987214392303 ], [ -95.075996928996275, 29.793743213525364 ], [ -95.076698929828851, 29.793494213639178 ], [ -95.077205929457662, 29.793315213351743 ], [ -95.078550930040535, 29.792839213214243 ], [ -95.079687929816032, 29.792424213445997 ], [ -95.080714931006725, 29.792060212972761 ], [ -95.081147930910106, 29.791912213174037 ], [ -95.082882931306003, 29.791431212753608 ], [ -95.083751931236364, 29.791238213181813 ], [ -95.084685931749348, 29.791104212665644 ], [ -95.085792931340009, 29.790965213420513 ], [ -95.087671932657926, 29.79081521294049 ], [ -95.088566932648376, 29.790714212776052 ], [ -95.088665932998566, 29.790699212530466 ], [ -95.089323932510339, 29.790599213196487 ], [ -95.089544932528895, 29.790562212978841 ], [ -95.090043933333646, 29.790468212455885 ], [ -95.090960932958225, 29.790247212990636 ], [ -95.092185933465416, 29.789899212752111 ], [ -95.094426934370347, 29.789171212521943 ], [ -95.095551934512073, 29.788795211975582 ], [ -95.097346934202179, 29.788212211805877 ], [ -95.100122935063311, 29.787294211590151 ], [ -95.103599936236577, 29.786143211035643 ], [ -95.105017936205059, 29.785676210872428 ], [ -95.106611936901757, 29.785152211425352 ], [ -95.10705993658523, 29.784986211132161 ], [ -95.108146937437539, 29.784608210778853 ], [ -95.109417938012896, 29.784097210687356 ], [ -95.109922938190351, 29.783883210378054 ], [ -95.112541938266375, 29.782771210155985 ], [ -95.114633938847547, 29.781892210380185 ], [ -95.116039938888619, 29.781300210349492 ], [ -95.116575938859157, 29.781076209802787 ], [ -95.119984940556904, 29.779643209252832 ], [ -95.120819940368477, 29.779292209774258 ], [ -95.121678940929257, 29.778973208950301 ], [ -95.122525940566376, 29.778705209634122 ], [ -95.122922940834428, 29.778590209649806 ], [ -95.124319940853184, 29.778249208759437 ], [ -95.124516941354798, 29.778201209228033 ], [ -95.124712941333485, 29.778154208680665 ], [ -95.126422941337083, 29.777750208697306 ], [ -95.126944942046947, 29.77762620892819 ], [ -95.129750942668451, 29.776945208899644 ], [ -95.133049942916799, 29.776144208101694 ], [ -95.134481943646236, 29.775796207859607 ], [ -95.138247945000671, 29.774888207494776 ], [ -95.138382944187271, 29.774855208049896 ], [ -95.138466944208488, 29.774835207714784 ], [ -95.138732944320708, 29.77477020791277 ], [ -95.139117944799764, 29.774678208136901 ], [ -95.13943094441747, 29.77460220822941 ], [ -95.142276945749913, 29.773909207242696 ], [ -95.143252946030344, 29.77366720739445 ], [ -95.1472719466162, 29.772672206973088 ], [ -95.149174947283882, 29.77220220681026 ], [ -95.149342947439834, 29.77216020680472 ], [ -95.149603946994702, 29.772096206597617 ], [ -95.150636947672311, 29.771840207131845 ], [ -95.150992947591021, 29.771752206393067 ], [ -95.151124948203261, 29.771720206804925 ], [ -95.15235594783428, 29.771476206377709 ], [ -95.152566947984795, 29.771444206932202 ], [ -95.15283994788787, 29.771403206879082 ], [ -95.153449948732941, 29.771299206916304 ], [ -95.153645948199909, 29.771266206490413 ], [ -95.15367094830512, 29.771259206740528 ], [ -95.153718947922542, 29.771255206975621 ], [ -95.153771948598376, 29.771246207053245 ], [ -95.153841948673204, 29.771235206231182 ], [ -95.154131948587036, 29.771188206383975 ], [ -95.154569948079228, 29.771161206341759 ], [ -95.154781948375344, 29.771152206288964 ], [ -95.155577948757852, 29.771133206669962 ], [ -95.15599194923189, 29.771127206676205 ], [ -95.156744949254772, 29.771117206151697 ], [ -95.156939948723732, 29.771115206751599 ], [ -95.157154948790648, 29.771112206288482 ], [ -95.157325948871048, 29.771110206868492 ], [ -95.158677949690812, 29.771093206098495 ], [ -95.159618949611939, 29.771082206168291 ], [ -95.159955949582482, 29.771078206492334 ], [ -95.16051595026785, 29.771072206606028 ], [ -95.161669950368321, 29.771051206781792 ], [ -95.165205951803642, 29.770988206393628 ], [ -95.169458952357715, 29.770912206280737 ], [ -95.171704953149131, 29.770873205966172 ], [ -95.172015953140487, 29.77086720553709 ], [ -95.173754953299522, 29.770837206235676 ], [ -95.177623954069659, 29.770739205955401 ], [ -95.177891954500922, 29.770732205501872 ], [ -95.178070954418729, 29.770728206109435 ], [ -95.178232955069561, 29.770724205519365 ], [ -95.180108954660142, 29.770676205281255 ], [ -95.18226795585376, 29.770618205579623 ], [ -95.182841956000331, 29.770636205702004 ], [ -95.182929955518276, 29.770639205241626 ], [ -95.186324957130068, 29.770783205478129 ], [ -95.186522956425321, 29.770789205831374 ], [ -95.186699956324901, 29.770795205016494 ], [ -95.18738495737216, 29.770827205664379 ], [ -95.187914957370992, 29.770856205362161 ], [ -95.188267956997535, 29.770875205265053 ], [ -95.191526958217707, 29.771099205311657 ], [ -95.192698958805238, 29.771181205290379 ], [ -95.194006958619227, 29.771323205110068 ], [ -95.19520795861304, 29.771427204903684 ], [ -95.196511959263034, 29.771507204984214 ], [ -95.196774959369989, 29.771523205427158 ], [ -95.197033959342477, 29.77153920557279 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1176, "Tract": "48201452300", "Area_SqMi": 0.77759208118243039, "total_2009": 8153, "total_2010": 7699, "total_2011": 8171, "total_2012": 9017, "total_2013": 9471, "total_2014": 10163, "total_2015": 9852, "total_2016": 6686, "total_2017": 7753, "total_2018": 7681, "total_2019": 7727, "total_2020": 8462, "age1": 795, "age2": 4167, "age3": 1658, "earn1": 528, "earn2": 892, "earn3": 5200, "naics_s01": 0, "naics_s02": 142, "naics_s03": 0, "naics_s04": 325, "naics_s05": 325, "naics_s06": 268, "naics_s07": 124, "naics_s08": 35, "naics_s09": 38, "naics_s10": 326, "naics_s11": 47, "naics_s12": 2524, "naics_s13": 17, "naics_s14": 917, "naics_s15": 0, "naics_s16": 1237, "naics_s17": 0, "naics_s18": 261, "naics_s19": 34, "naics_s20": 0, "race1": 3968, "race2": 1194, "race3": 41, "race4": 1310, "race5": 11, "race6": 96, "ethnicity1": 5089, "ethnicity2": 1531, "edu1": 924, "edu2": 1232, "edu3": 1752, "edu4": 1917, "Shape_Length": 18601.796703829368, "Shape_Area": 21677936.361218382, "total_2021": 7241, "total_2022": 6620 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.571453052447239, 29.717067181597471 ], [ -95.571452053288425, 29.7169631811424 ], [ -95.57145005292746, 29.716841180979515 ], [ -95.571449052628083, 29.71673118160783 ], [ -95.57140805275013, 29.715534181053879 ], [ -95.571414052630161, 29.715478181086436 ], [ -95.571413053349886, 29.714596180588849 ], [ -95.571353052871643, 29.71192118024565 ], [ -95.571353052510901, 29.711713180539938 ], [ -95.571278052606957, 29.708790179459587 ], [ -95.571269052405995, 29.706172179221717 ], [ -95.571256052548577, 29.705496178699221 ], [ -95.571247052560324, 29.705009179013906 ], [ -95.571237052805799, 29.70461617916876 ], [ -95.571219052673612, 29.703931178352409 ], [ -95.570051052309964, 29.703931178331938 ], [ -95.568922051695324, 29.703946178879086 ], [ -95.568206051219207, 29.703963178647296 ], [ -95.567628051101266, 29.70397417879563 ], [ -95.567492051132092, 29.703976178453264 ], [ -95.567264051700477, 29.703992179218485 ], [ -95.566728050871646, 29.704021179112605 ], [ -95.566293050878457, 29.704045178946473 ], [ -95.565820051152116, 29.704068178588866 ], [ -95.565319051154844, 29.704093179001475 ], [ -95.563242050697056, 29.704212179246944 ], [ -95.56020104933927, 29.704373179558072 ], [ -95.557825048443391, 29.704488179142231 ], [ -95.557386048354076, 29.704507179425033 ], [ -95.557390048915124, 29.704724179468673 ], [ -95.55741604912896, 29.70656917987284 ], [ -95.557471049510397, 29.710374180300423 ], [ -95.557474049135422, 29.710977180524885 ], [ -95.557478049347225, 29.711766180707929 ], [ -95.557496049384326, 29.715090181530492 ], [ -95.557504049734618, 29.715903181780899 ], [ -95.557512049078909, 29.716650182168191 ], [ -95.557580048962635, 29.717995181804 ], [ -95.557588049790823, 29.718266181876739 ], [ -95.557983049145435, 29.718242181893707 ], [ -95.559517050342066, 29.718135181797432 ], [ -95.561499050745269, 29.717971182140971 ], [ -95.563366050424037, 29.717840181639364 ], [ -95.56500805102884, 29.717692181794735 ], [ -95.566131051326252, 29.717592182125752 ], [ -95.569052052054928, 29.71727818159496 ], [ -95.571453052447239, 29.717067181597471 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1177, "Tract": "48201412500", "Area_SqMi": 0.24928405880555674, "total_2009": 1130, "total_2010": 1135, "total_2011": 1574, "total_2012": 1659, "total_2013": 2025, "total_2014": 2184, "total_2015": 2218, "total_2016": 1917, "total_2017": 1709, "total_2018": 1495, "total_2019": 1504, "total_2020": 1467, "age1": 249, "age2": 544, "age3": 242, "earn1": 226, "earn2": 299, "earn3": 510, "naics_s01": 0, "naics_s02": 69, "naics_s03": 0, "naics_s04": 24, "naics_s05": 22, "naics_s06": 9, "naics_s07": 89, "naics_s08": 0, "naics_s09": 8, "naics_s10": 16, "naics_s11": 71, "naics_s12": 154, "naics_s13": 0, "naics_s14": 3, "naics_s15": 49, "naics_s16": 122, "naics_s17": 111, "naics_s18": 167, "naics_s19": 85, "naics_s20": 36, "race1": 707, "race2": 139, "race3": 6, "race4": 166, "race5": 0, "race6": 17, "ethnicity1": 755, "ethnicity2": 280, "edu1": 151, "edu2": 172, "edu3": 204, "edu4": 259, "Shape_Length": 15780.614174240958, "Shape_Area": 6949612.9055682337, "total_2021": 1502, "total_2022": 1035 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.446194019953879, 29.705939183266263 ], [ -95.446195020550064, 29.705757183557271 ], [ -95.446167020707364, 29.704581182817833 ], [ -95.446000020499611, 29.70458118316537 ], [ -95.445744020484767, 29.704584183113322 ], [ -95.445701020182867, 29.704585183003068 ], [ -95.44560802031836, 29.704586182774246 ], [ -95.445521020552263, 29.704587182863641 ], [ -95.445395020168931, 29.704590183386479 ], [ -95.445303020518963, 29.704589183017372 ], [ -95.445266020310982, 29.704590183159841 ], [ -95.445097019996894, 29.704592182849407 ], [ -95.444860020189566, 29.7045891826812 ], [ -95.444642019937945, 29.704597183556434 ], [ -95.444419019881849, 29.704600183275996 ], [ -95.444351020260726, 29.704601183366645 ], [ -95.444199020379642, 29.704603182859049 ], [ -95.443978019934505, 29.704606183485655 ], [ -95.443809019505863, 29.704608183353976 ], [ -95.443758020067676, 29.704608183087981 ], [ -95.443538019432978, 29.704611183361717 ], [ -95.443326019620272, 29.704614183633424 ], [ -95.443098019858581, 29.704616183623617 ], [ -95.442881019398996, 29.70461118276743 ], [ -95.442788019281025, 29.704615182832196 ], [ -95.440166018978843, 29.704645183154945 ], [ -95.440164019245003, 29.704563183499491 ], [ -95.437174018423093, 29.704584183123533 ], [ -95.43558401795552, 29.704594183026604 ], [ -95.435582017410781, 29.704697183382667 ], [ -95.435583017169321, 29.704741183294956 ], [ -95.435128017501327, 29.704744183919477 ], [ -95.434717017213131, 29.704746183454386 ], [ -95.434357017512781, 29.704748183816612 ], [ -95.434129017774268, 29.704750183900437 ], [ -95.433967017459409, 29.704747183677135 ], [ -95.433788016823911, 29.70475018370805 ], [ -95.433124017144337, 29.70475918315589 ], [ -95.433126016841456, 29.704868183579634 ], [ -95.433132017518076, 29.705237184070434 ], [ -95.433142017597405, 29.706046183996726 ], [ -95.433201016619705, 29.706045183644243 ], [ -95.433099017646242, 29.706772183927221 ], [ -95.433094017279984, 29.707035183800389 ], [ -95.433087017158755, 29.707447183772636 ], [ -95.43311701719918, 29.707896184545959 ], [ -95.433187017599892, 29.708930184022755 ], [ -95.433128017560819, 29.709058184711022 ], [ -95.433090017617559, 29.709138184052971 ], [ -95.433009017754401, 29.709745184149529 ], [ -95.433035017435841, 29.710950184471422 ], [ -95.433048017401788, 29.711572185174163 ], [ -95.433042017392779, 29.71186318489471 ], [ -95.433073017782903, 29.712731185628449 ], [ -95.433140017910333, 29.714908185464321 ], [ -95.433228017717809, 29.714908185661407 ], [ -95.433833018169551, 29.714909185197762 ], [ -95.437356018703923, 29.714851185810726 ], [ -95.437684018213744, 29.714674185656527 ], [ -95.437945018917418, 29.714597185199302 ], [ -95.437917018622812, 29.713781185331797 ], [ -95.437928019103424, 29.712989185355624 ], [ -95.437908018711454, 29.712286184627157 ], [ -95.437919018299382, 29.711584185169151 ], [ -95.437899018530771, 29.710870184339061 ], [ -95.437876018287525, 29.710144184801141 ], [ -95.437871018006646, 29.709440184248098 ], [ -95.437893018922352, 29.708732184406845 ], [ -95.437886018295217, 29.708026184246386 ], [ -95.437840018839722, 29.707224183764556 ], [ -95.437772018765386, 29.706019184106776 ], [ -95.439611018459502, 29.705994183168407 ], [ -95.440209018469588, 29.705990183289067 ], [ -95.44099201908881, 29.705977183594914 ], [ -95.441583019586005, 29.705969183240295 ], [ -95.441966019698043, 29.705964183625632 ], [ -95.442793019629605, 29.705951183347384 ], [ -95.443780019788107, 29.705942183005153 ], [ -95.44510602064976, 29.705949183489324 ], [ -95.445432019975016, 29.705938183718178 ], [ -95.44552602024315, 29.705938183658112 ], [ -95.446072020185809, 29.705938183517901 ], [ -95.446194019953879, 29.705939183266263 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1178, "Tract": "48201531000", "Area_SqMi": 0.92114762033654918, "total_2009": 1180, "total_2010": 973, "total_2011": 1127, "total_2012": 979, "total_2013": 1001, "total_2014": 1233, "total_2015": 1086, "total_2016": 1194, "total_2017": 1324, "total_2018": 1230, "total_2019": 858, "total_2020": 751, "age1": 238, "age2": 527, "age3": 237, "earn1": 162, "earn2": 302, "earn3": 538, "naics_s01": 0, "naics_s02": 20, "naics_s03": 0, "naics_s04": 125, "naics_s05": 83, "naics_s06": 4, "naics_s07": 37, "naics_s08": 4, "naics_s09": 7, "naics_s10": 32, "naics_s11": 23, "naics_s12": 218, "naics_s13": 0, "naics_s14": 73, "naics_s15": 55, "naics_s16": 89, "naics_s17": 7, "naics_s18": 140, "naics_s19": 85, "naics_s20": 0, "race1": 779, "race2": 129, "race3": 10, "race4": 67, "race5": 1, "race6": 16, "ethnicity1": 714, "ethnicity2": 288, "edu1": 125, "edu2": 210, "edu3": 191, "edu4": 238, "Shape_Length": 21944.392056238037, "Shape_Area": 25680019.095074411, "total_2021": 851, "total_2022": 1002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.429679021677828, 29.832283209336108 ], [ -95.429675021481586, 29.831462209153091 ], [ -95.429653021443727, 29.830635208991264 ], [ -95.429646021651891, 29.830078209440117 ], [ -95.429648021462327, 29.829814208849562 ], [ -95.429628021188577, 29.828290209350929 ], [ -95.429608022064514, 29.826793208777747 ], [ -95.429595021702042, 29.825961208147245 ], [ -95.429581021020056, 29.825138207920787 ], [ -95.42956602140184, 29.82385920819311 ], [ -95.429567021527234, 29.822914207651881 ], [ -95.42954802093054, 29.822087207518443 ], [ -95.429528021177816, 29.821269207828443 ], [ -95.429521021315679, 29.820716207150394 ], [ -95.429508021392962, 29.819446206775879 ], [ -95.424681019990032, 29.819461206989978 ], [ -95.420274018354377, 29.819281207798618 ], [ -95.415892017817015, 29.819269207555664 ], [ -95.411898016619205, 29.819175207303932 ], [ -95.410446016457655, 29.819095208032344 ], [ -95.410468016199459, 29.819823207711245 ], [ -95.410487016698198, 29.820966208196246 ], [ -95.41050901648147, 29.821963207915285 ], [ -95.410534016370377, 29.823279208527747 ], [ -95.410537016856665, 29.823467208631858 ], [ -95.410557016515241, 29.824623209114886 ], [ -95.410568016159331, 29.825730209464837 ], [ -95.410615016400683, 29.8273442089688 ], [ -95.410632016454528, 29.828018209726405 ], [ -95.41064601695463, 29.828750209436901 ], [ -95.410652017185171, 29.829242209775845 ], [ -95.410650017351841, 29.829632209857255 ], [ -95.410689016650664, 29.830937209700171 ], [ -95.410696016544918, 29.831402210575369 ], [ -95.412773017008632, 29.831377210074116 ], [ -95.416219018853809, 29.831334210021215 ], [ -95.416229018493183, 29.830917209928792 ], [ -95.416239018723331, 29.830860210301676 ], [ -95.416264018421856, 29.830819210018177 ], [ -95.416281017925186, 29.830809210005054 ], [ -95.416316018024901, 29.830789209648341 ], [ -95.416394018000616, 29.830783210206796 ], [ -95.417840019126643, 29.83077720964296 ], [ -95.419510019655974, 29.830773209585402 ], [ -95.421374019798677, 29.830771209799906 ], [ -95.42365401994482, 29.830761209863024 ], [ -95.424957020997965, 29.830761209658089 ], [ -95.428339021606646, 29.830742209180904 ], [ -95.428439021293272, 29.830765209071103 ], [ -95.428471021904073, 29.830784209768442 ], [ -95.428509021472564, 29.830807209140332 ], [ -95.428537021605891, 29.83085620972431 ], [ -95.428547021039464, 29.830919209114978 ], [ -95.428540021262094, 29.831546209719239 ], [ -95.428546021529598, 29.832340209694383 ], [ -95.428675021943633, 29.832333210073934 ], [ -95.428953022094817, 29.832307209997541 ], [ -95.429299022190051, 29.832285209879419 ], [ -95.429679021677828, 29.832283209336108 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1179, "Tract": "48201552200", "Area_SqMi": 3.8728933069067111, "total_2009": 3582, "total_2010": 4081, "total_2011": 4222, "total_2012": 4755, "total_2013": 5064, "total_2014": 5996, "total_2015": 5985, "total_2016": 6273, "total_2017": 5940, "total_2018": 6147, "total_2019": 5995, "total_2020": 5461, "age1": 1684, "age2": 2946, "age3": 1199, "earn1": 1208, "earn2": 1929, "earn3": 2692, "naics_s01": 11, "naics_s02": 0, "naics_s03": 0, "naics_s04": 355, "naics_s05": 135, "naics_s06": 313, "naics_s07": 683, "naics_s08": 57, "naics_s09": 10, "naics_s10": 165, "naics_s11": 78, "naics_s12": 281, "naics_s13": 0, "naics_s14": 578, "naics_s15": 339, "naics_s16": 1891, "naics_s17": 244, "naics_s18": 546, "naics_s19": 143, "naics_s20": 0, "race1": 4195, "race2": 946, "race3": 48, "race4": 544, "race5": 6, "race6": 90, "ethnicity1": 4065, "ethnicity2": 1764, "edu1": 830, "edu2": 1044, "edu3": 1225, "edu4": 1046, "Shape_Length": 57591.313049024327, "Shape_Area": 107969636.8734179, "total_2021": 5195, "total_2022": 5829 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.678272091374751, 29.956524226329979 ], [ -95.678352090710447, 29.956338226067267 ], [ -95.676788090479278, 29.955309226397386 ], [ -95.675702090421083, 29.954594225857463 ], [ -95.673477089506989, 29.953080226063005 ], [ -95.672701089732854, 29.952551225963404 ], [ -95.670252088567963, 29.950756225633697 ], [ -95.669157088022502, 29.949890225949009 ], [ -95.6685800879293, 29.949436225207471 ], [ -95.668565088454969, 29.949425225550669 ], [ -95.668241088178092, 29.949171225771394 ], [ -95.668030088372035, 29.949007225404593 ], [ -95.667655087988024, 29.948734225181802 ], [ -95.667634088361098, 29.948719225325135 ], [ -95.666943087986994, 29.948217224926999 ], [ -95.66610408709299, 29.947629225278469 ], [ -95.664425086855644, 29.946471225385814 ], [ -95.663917087197049, 29.946121224715348 ], [ -95.663374086328943, 29.945746225215469 ], [ -95.663090086244679, 29.945549224618489 ], [ -95.662697086686521, 29.945275225193054 ], [ -95.658466085208644, 29.942338224615728 ], [ -95.656067085143164, 29.940667223711362 ], [ -95.655588084931097, 29.94033322443163 ], [ -95.654191083710273, 29.939360224146871 ], [ -95.651659083180263, 29.937648223170822 ], [ -95.650197082937808, 29.936642223401741 ], [ -95.649996082594555, 29.936503223559988 ], [ -95.649764082836569, 29.936344223562635 ], [ -95.649161082231032, 29.935929223776451 ], [ -95.645778081908716, 29.933487223055916 ], [ -95.643682081409594, 29.932008223028543 ], [ -95.643649081342716, 29.931985223017023 ], [ -95.643248080576512, 29.931697223144752 ], [ -95.641421080761972, 29.93041322211219 ], [ -95.638862079409762, 29.928616222151515 ], [ -95.638780079415511, 29.928528221851394 ], [ -95.638656079283194, 29.928410222001617 ], [ -95.637867079162248, 29.927768221802392 ], [ -95.637700079645668, 29.927615222185018 ], [ -95.637608079610857, 29.927508221754337 ], [ -95.637546079558788, 29.927411222184066 ], [ -95.634538078204955, 29.925302221540633 ], [ -95.633664077749245, 29.924689221633596 ], [ -95.633349078221954, 29.924451221466093 ], [ -95.633341078533377, 29.924445221864676 ], [ -95.6330890777961, 29.924266221175067 ], [ -95.631656078064992, 29.923251221016947 ], [ -95.629035076546643, 29.92139022131018 ], [ -95.628949077208489, 29.92132922154661 ], [ -95.62880307627519, 29.9212292213337 ], [ -95.628734076531458, 29.921182221133865 ], [ -95.628555076444485, 29.921781221444093 ], [ -95.628535076818835, 29.921892221611085 ], [ -95.62852407624635, 29.92195022102068 ], [ -95.628518076493066, 29.922077221463919 ], [ -95.628532077147824, 29.922617221312237 ], [ -95.628534077316374, 29.923195221639716 ], [ -95.62853407681591, 29.923421221287288 ], [ -95.628535077156883, 29.923607221960381 ], [ -95.628535077314766, 29.923767221775528 ], [ -95.628535076705546, 29.923873221303261 ], [ -95.628535076825401, 29.924445221466968 ], [ -95.628546077126046, 29.924808221843961 ], [ -95.628592077128047, 29.925448221821206 ], [ -95.628606077072561, 29.925785222420846 ], [ -95.628623077236156, 29.926690222093935 ], [ -95.628634077494752, 29.927177222272004 ], [ -95.628658077149439, 29.928401222212095 ], [ -95.62866107705797, 29.92853822225743 ], [ -95.62867807684799, 29.929324223051548 ], [ -95.628705076942836, 29.930617223206511 ], [ -95.62871007764268, 29.931092223241809 ], [ -95.628716077081918, 29.931182222802359 ], [ -95.628712076978658, 29.931253223257205 ], [ -95.628753077747234, 29.933099223598685 ], [ -95.628760077343088, 29.933190223877496 ], [ -95.628762077080495, 29.933224223846651 ], [ -95.628764076808977, 29.933390223928686 ], [ -95.628768077174087, 29.933700223319221 ], [ -95.62876607704176, 29.934999223584978 ], [ -95.628783077808862, 29.936014224159777 ], [ -95.628791077927204, 29.936505224277155 ], [ -95.628802077597427, 29.93706122421634 ], [ -95.628817077713506, 29.937753224380216 ], [ -95.628835077271617, 29.938542224407851 ], [ -95.62883607762771, 29.938660224572605 ], [ -95.628845077386799, 29.939024224380578 ], [ -95.628859077705329, 29.939673224625032 ], [ -95.628867077777187, 29.940022224881957 ], [ -95.628865077251021, 29.940107225265805 ], [ -95.628887077919302, 29.941287224972555 ], [ -95.628897077319721, 29.941766225272115 ], [ -95.628909077400991, 29.942198225486894 ], [ -95.628909077286934, 29.942417225271942 ], [ -95.628924077379921, 29.942972225205903 ], [ -95.628941077869186, 29.944079225854285 ], [ -95.628950078113235, 29.944455225357892 ], [ -95.628951078164647, 29.944473225760394 ], [ -95.62895307747965, 29.944531225427585 ], [ -95.628957077495272, 29.944617225662078 ], [ -95.628959077500681, 29.944724225968962 ], [ -95.628967077594282, 29.945152226255892 ], [ -95.628985077908681, 29.946003226162929 ], [ -95.62898707811145, 29.946076226281445 ], [ -95.629011078189023, 29.947432226710625 ], [ -95.629308077789332, 29.947428226667586 ], [ -95.62966307854731, 29.947423226189791 ], [ -95.629755078326269, 29.947422226051255 ], [ -95.630702078609218, 29.947409226372969 ], [ -95.630831078654353, 29.947413226383357 ], [ -95.630832078948544, 29.948258226910252 ], [ -95.630833078731726, 29.948709226468772 ], [ -95.6308380786827, 29.950177226810514 ], [ -95.630838079104294, 29.950376227143796 ], [ -95.630839078382408, 29.950544227269532 ], [ -95.630845079016964, 29.951879227286387 ], [ -95.630848078410764, 29.952623226932548 ], [ -95.630848079042082, 29.952742227574586 ], [ -95.630828078764438, 29.952823227068869 ], [ -95.630858078806, 29.953516227499843 ], [ -95.630863078998104, 29.953576227375347 ], [ -95.630869078864194, 29.953657227644367 ], [ -95.630861078547312, 29.953726227359695 ], [ -95.630870079156082, 29.954030227846058 ], [ -95.630877079236541, 29.954111227928596 ], [ -95.630879078426943, 29.95427422752066 ], [ -95.630873078592089, 29.954359227317784 ], [ -95.630870078704433, 29.954533228112005 ], [ -95.630883078615298, 29.954624227378766 ], [ -95.630885079133023, 29.954901228278864 ], [ -95.630892079224836, 29.955118227521446 ], [ -95.630889079169975, 29.955413227935249 ], [ -95.630893079200717, 29.956240227835064 ], [ -95.63090707883606, 29.956678227996747 ], [ -95.630911078897554, 29.957038228727171 ], [ -95.630905079300248, 29.957128228587507 ], [ -95.630911078488339, 29.957580228598363 ], [ -95.630903078588887, 29.957987228089465 ], [ -95.630920078915437, 29.958039228213558 ], [ -95.630928079368914, 29.958610229040996 ], [ -95.631035079378535, 29.960338228827883 ], [ -95.631087079049323, 29.960750228911373 ], [ -95.631153079047195, 29.961037228648134 ], [ -95.631224079291556, 29.961294229366423 ], [ -95.631859079316172, 29.961049229475361 ], [ -95.63215007972417, 29.961000229417948 ], [ -95.632358079853702, 29.960945229111665 ], [ -95.632611079197687, 29.960923228739382 ], [ -95.632920079716214, 29.960566228568855 ], [ -95.633407079387084, 29.960104228649456 ], [ -95.633766079883571, 29.959807228955032 ], [ -95.63402507942132, 29.95960922853768 ], [ -95.63441108014861, 29.959489228786932 ], [ -95.634537079876935, 29.959489228954414 ], [ -95.634669079664803, 29.959505229057157 ], [ -95.634834080151435, 29.959615228985815 ], [ -95.635162080078558, 29.959874228645965 ], [ -95.635319080580118, 29.959973228458189 ], [ -95.635540080798989, 29.960055228387688 ], [ -95.635692080228281, 29.960099228353741 ], [ -95.635799080577684, 29.960193229195287 ], [ -95.635837080646667, 29.960297228902068 ], [ -95.635780079878984, 29.960517228488065 ], [ -95.635395080607751, 29.960951228757541 ], [ -95.635464080637007, 29.961105228536351 ], [ -95.635622080431574, 29.961221228975255 ], [ -95.635906080792438, 29.961331228821287 ], [ -95.636234080944007, 29.961358229039497 ], [ -95.63639208082526, 29.961353229278775 ], [ -95.636544080992323, 29.961314228966 ], [ -95.636840080955238, 29.961150228487465 ], [ -95.636986080754511, 29.960985228748108 ], [ -95.637200080535294, 29.960644229118962 ], [ -95.637308080305829, 29.960441228622997 ], [ -95.63739608053946, 29.960204229097666 ], [ -95.637422081270188, 29.960017228643501 ], [ -95.637523080391276, 29.959534228239264 ], [ -95.637573080912105, 29.959457228477348 ], [ -95.637801080566135, 29.959303228228016 ], [ -95.637927080931902, 29.959231228922153 ], [ -95.638047081079961, 29.959182228737784 ], [ -95.638243081102061, 29.95914422807061 ], [ -95.638318080539392, 29.959111228623488 ], [ -95.638350080986882, 29.959045228557098 ], [ -95.638325080950906, 29.958489228250833 ], [ -95.638186080765351, 29.95834122833616 ], [ -95.638054081050811, 29.958176228034034 ], [ -95.637953081192364, 29.957797227788888 ], [ -95.637972081187655, 29.957698228173815 ], [ -95.638073080606219, 29.957478228171169 ], [ -95.638130080903366, 29.957258228441034 ], [ -95.638206080811813, 29.95706022838484 ], [ -95.63827508065053, 29.956824228072275 ], [ -95.638389081326679, 29.956522228172734 ], [ -95.638547081273856, 29.956362227625629 ], [ -95.638755080589036, 29.95621922807765 ], [ -95.639728080722378, 29.955626227990088 ], [ -95.639904081227854, 29.955439228046966 ], [ -95.640031081330164, 29.955346227860193 ], [ -95.640127081535852, 29.95530222742368 ], [ -95.640214080809287, 29.955263227448409 ], [ -95.640384080819118, 29.955230227677482 ], [ -95.640548080892898, 29.95524122758065 ], [ -95.640612081138713, 29.955258227301751 ], [ -95.640946080929979, 29.955253227761151 ], [ -95.64136908196113, 29.955192227603408 ], [ -95.641451081728803, 29.955170227650033 ], [ -95.64165308148074, 29.955055227765357 ], [ -95.641773082089856, 29.95497222713734 ], [ -95.641843081768727, 29.954912227323909 ], [ -95.641925081622944, 29.954819227151312 ], [ -95.642007082199413, 29.954714227555126 ], [ -95.642057082171164, 29.954615227391606 ], [ -95.642089081912317, 29.954527227674955 ], [ -95.642165081629543, 29.954236227649861 ], [ -95.642165082113152, 29.954066227067631 ], [ -95.642146081218641, 29.953884227514187 ], [ -95.642096081529374, 29.953714227364049 ], [ -95.642058081908843, 29.953527227233032 ], [ -95.642045081310954, 29.953362227392205 ], [ -95.642064081564925, 29.953268227300679 ], [ -95.642140081912643, 29.953180226883301 ], [ -95.642254081205181, 29.953126227200119 ], [ -95.642418082144061, 29.95308222716282 ], [ -95.642601081964969, 29.953082227473907 ], [ -95.643043081805899, 29.953115226737307 ], [ -95.643251081555832, 29.953120226787082 ], [ -95.644110082111197, 29.953060227001437 ], [ -95.645044082404894, 29.952967226771548 ], [ -95.645902082709242, 29.952956226971981 ], [ -95.647386082545779, 29.95295722732234 ], [ -95.648831083780777, 29.952908226805651 ], [ -95.649019083232346, 29.952918226974596 ], [ -95.649431083589576, 29.952941226984713 ], [ -95.649829083533817, 29.953018226926062 ], [ -95.650037083258667, 29.953122226878659 ], [ -95.650157084045048, 29.953216226639217 ], [ -95.650207083668121, 29.953309227127225 ], [ -95.650346083616057, 29.953826226643269 ], [ -95.650390083610858, 29.953903226810304 ], [ -95.650428084181229, 29.953947227262429 ], [ -95.650523084306457, 29.954007226719479 ], [ -95.650643084336309, 29.954062226882144 ], [ -95.651028083908926, 29.954161226923127 ], [ -95.651703083997333, 29.954310227184585 ], [ -95.652214084089024, 29.954360226658775 ], [ -95.652473084845781, 29.954365226757737 ], [ -95.652656084049553, 29.954360226722667 ], [ -95.652732084851849, 29.954371227262463 ], [ -95.65285808438864, 29.954426226950254 ], [ -95.652915084778215, 29.954475226583419 ], [ -95.652959084767858, 29.954541227399829 ], [ -95.653218084892288, 29.955140227241891 ], [ -95.653407084567135, 29.955415227432173 ], [ -95.653855085086349, 29.9558772276288 ], [ -95.653994084375157, 29.955987227286844 ], [ -95.654070084899757, 29.95602022748859 ], [ -95.654190084746304, 29.956047227351284 ], [ -95.6542530850584, 29.956053226937325 ], [ -95.654360085159553, 29.956048226952319 ], [ -95.654594085029416, 29.955971227229288 ], [ -95.654720085419498, 29.955949227078023 ], [ -95.654821084973889, 29.955943227026314 ], [ -95.654960085154158, 29.955976227672231 ], [ -95.655067084922834, 29.956020227242025 ], [ -95.655175084964057, 29.956130226846405 ], [ -95.655200085226042, 29.9561852271292 ], [ -95.655212085467326, 29.956251226898846 ], [ -95.655326084751437, 29.956449226911865 ], [ -95.655446085716022, 29.956608227480295 ], [ -95.655547084862562, 29.956762227445438 ], [ -95.655578084981656, 29.956828227488888 ], [ -95.6556160853916, 29.956949227017812 ], [ -95.655667085186863, 29.957037227431417 ], [ -95.655818085219195, 29.957241227150782 ], [ -95.655907085515906, 29.957296227375011 ], [ -95.656872085329113, 29.957780227548753 ], [ -95.657466085743181, 29.958000227618552 ], [ -95.657844085971291, 29.958181227955382 ], [ -95.657990086293637, 29.958241227721118 ], [ -95.658104085883991, 29.958315227168075 ], [ -95.658457086166592, 29.958544228054116 ], [ -95.658595086365438, 29.958621227825553 ], [ -95.658728086297657, 29.958676228051782 ], [ -95.658823086045501, 29.958703227890183 ], [ -95.659006086684968, 29.958714227487295 ], [ -95.659416086648804, 29.958621227240517 ], [ -95.659593086800854, 29.958594227659219 ], [ -95.659656086775655, 29.958594227244074 ], [ -95.659770086177843, 29.958643227458847 ], [ -95.659826086249467, 29.958682227755016 ], [ -95.659871086681832, 29.95873722726957 ], [ -95.660061086017237, 29.959012227571861 ], [ -95.660218086843244, 29.959237228066765 ], [ -95.660312086298575, 29.959341227739021 ], [ -95.660376086671135, 29.959380227307179 ], [ -95.660458086907298, 29.959402227453783 ], [ -95.660596086271283, 29.95938522784077 ], [ -95.660843087075165, 29.959220227584535 ], [ -95.660912086798788, 29.959198227353582 ], [ -95.661051087201628, 29.959187227916242 ], [ -95.66125308670432, 29.959220227947657 ], [ -95.661480086586067, 29.959308227528751 ], [ -95.661625086543935, 29.959391227653203 ], [ -95.661903087388154, 29.959611227917588 ], [ -95.662086087010664, 29.95971522761965 ], [ -95.662263086601826, 29.959781227956562 ], [ -95.662396087486371, 29.959792228192843 ], [ -95.662635087476559, 29.959798227443414 ], [ -95.662724087605056, 29.95978722809614 ], [ -95.662989087198824, 29.95973222742327 ], [ -95.663273087805038, 29.959617228033729 ], [ -95.663418087529664, 29.95959522791701 ], [ -95.663582087613875, 29.95960022731327 ], [ -95.663690087129979, 29.959661227763913 ], [ -95.663930087891501, 29.95984822747748 ], [ -95.66400508775591, 29.959935227724895 ], [ -95.664125087937379, 29.960139227890675 ], [ -95.664624087577238, 29.961480227834137 ], [ -95.66468708809299, 29.961579228486698 ], [ -95.664819087511091, 29.96170022847669 ], [ -95.665002088282023, 29.961821227883696 ], [ -95.666300087847674, 29.962457227812752 ], [ -95.666764088210826, 29.96268422856097 ], [ -95.667635088877631, 29.962915228534683 ], [ -95.668083088896978, 29.963064227917961 ], [ -95.668329088649585, 29.963102228551968 ], [ -95.668651088847682, 29.963097228219873 ], [ -95.668721088597977, 29.963075228034679 ], [ -95.668847088972484, 29.962981227888637 ], [ -95.669175089324156, 29.962602227787251 ], [ -95.669390089073588, 29.962476228506549 ], [ -95.669712089260017, 29.962437227872027 ], [ -95.669952088662143, 29.9623602284389 ], [ -95.670078089641649, 29.962256227931299 ], [ -95.670211089208848, 29.962184228056294 ], [ -95.670279089342415, 29.962110228147569 ], [ -95.670387089311291, 29.96183822788948 ], [ -95.670457088764962, 29.961492228189439 ], [ -95.670520089319453, 29.961376228092291 ], [ -95.670589089160032, 29.961327227926059 ], [ -95.670703089708368, 29.96129922738692 ], [ -95.670823088904925, 29.961283227648142 ], [ -95.670956089213334, 29.961327227942352 ], [ -95.671063089654453, 29.961404227530398 ], [ -95.671214089365506, 29.961536227469644 ], [ -95.672117089436526, 29.962569228230663 ], [ -95.672388090052351, 29.962718228014833 ], [ -95.672483089753072, 29.962756228055376 ], [ -95.672616089923039, 29.962773228032678 ], [ -95.672729090333036, 29.962756228211802 ], [ -95.672948089530479, 29.96269722773523 ], [ -95.672976089991096, 29.962690228264073 ], [ -95.673020089468238, 29.962677227992604 ], [ -95.673062089467493, 29.962664227806165 ], [ -95.673354089533262, 29.962577228093618 ], [ -95.673935089946738, 29.962404228317123 ], [ -95.674087090066465, 29.962300228252357 ], [ -95.674383089933698, 29.96199822760385 ], [ -95.674585090473258, 29.961684227683865 ], [ -95.67469909067465, 29.961536227471566 ], [ -95.674731090521774, 29.961410227513419 ], [ -95.674800090717198, 29.961239228008864 ], [ -95.674832090019407, 29.96119022730641 ], [ -95.674952090518858, 29.961162227367797 ], [ -95.675387090664586, 29.961311227965759 ], [ -95.675697090090608, 29.961371227848158 ], [ -95.675741090669916, 29.961366227744495 ], [ -95.675905090602768, 29.961371227344358 ], [ -95.676094090701511, 29.961355227979961 ], [ -95.676208090587295, 29.961305227896833 ], [ -95.676382091125802, 29.961154227701428 ], [ -95.676454090612367, 29.961091227343886 ], [ -95.676612091281527, 29.960931227821629 ], [ -95.676694091223965, 29.960794227425357 ], [ -95.677060091340664, 29.960321227264039 ], [ -95.677231090447265, 29.960184227723659 ], [ -95.677590091254174, 29.960019226957147 ], [ -95.677679090589521, 29.9599092271534 ], [ -95.677713091219587, 29.959838227160731 ], [ -95.677774090537667, 29.959711227403599 ], [ -95.677827090963149, 29.959207227414595 ], [ -95.677849090693869, 29.958991227112492 ], [ -95.677835090898711, 29.958568226611447 ], [ -95.677831091352715, 29.958526227226045 ], [ -95.677830090756828, 29.958419227086146 ], [ -95.677799091447525, 29.958150226927181 ], [ -95.677674090710212, 29.957836226921177 ], [ -95.6777170910146, 29.957650226749468 ], [ -95.677856091353291, 29.957485226676177 ], [ -95.678013090769767, 29.957120226549034 ], [ -95.678119091229703, 29.956877226272628 ], [ -95.678172090950028, 29.956754226967597 ], [ -95.678272091374751, 29.956524226329979 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1180, "Tract": "48201341700", "Area_SqMi": 1.1281054749363628, "total_2009": 186, "total_2010": 136, "total_2011": 84, "total_2012": 124, "total_2013": 119, "total_2014": 132, "total_2015": 143, "total_2016": 141, "total_2017": 128, "total_2018": 123, "total_2019": 111, "total_2020": 99, "age1": 31, "age2": 56, "age3": 31, "earn1": 22, "earn2": 28, "earn3": 68, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 4, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 26, "naics_s17": 43, "naics_s18": 0, "naics_s19": 17, "naics_s20": 12, "race1": 101, "race2": 15, "race3": 0, "race4": 0, "race5": 0, "race6": 2, "ethnicity1": 83, "ethnicity2": 35, "edu1": 14, "edu2": 28, "edu3": 29, "edu4": 16, "Shape_Length": 39958.449677737895, "Shape_Area": 31449649.869409021, "total_2021": 118, "total_2022": 118 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.018847908162059, 29.645957185393506 ], [ -95.018856907950251, 29.644715185390226 ], [ -95.018824908428073, 29.643436184488813 ], [ -95.01879290793147, 29.642133184454373 ], [ -95.018755908384392, 29.640855184080234 ], [ -95.018743907645458, 29.640086184008048 ], [ -95.018735907965365, 29.639535184152795 ], [ -95.018726908186309, 29.63898118430998 ], [ -95.018711907322086, 29.638275183840651 ], [ -95.018705907605593, 29.637991183722384 ], [ -95.018691907363575, 29.63733218377951 ], [ -95.018684908177477, 29.636899183685813 ], [ -95.018681907801408, 29.636717183465166 ], [ -95.018657907828739, 29.635809183223898 ], [ -95.018622907490837, 29.634440182665763 ], [ -95.018589907095375, 29.633109182455819 ], [ -95.01856890712321, 29.632243182407073 ], [ -95.0185579069732, 29.631833182126485 ], [ -95.018545907227789, 29.63134918236128 ], [ -95.018536906952676, 29.630965182119699 ], [ -95.018524907791445, 29.630555182672158 ], [ -95.018511907835233, 29.629932181807419 ], [ -95.018490906967074, 29.629538181697786 ], [ -95.018475907406355, 29.627332181884178 ], [ -95.018445907162985, 29.625304181098286 ], [ -95.01845490742096, 29.625287181316899 ], [ -95.018406907604771, 29.624600181415019 ], [ -95.01839190748052, 29.624239181019814 ], [ -95.018391907241153, 29.623972180932878 ], [ -95.018393907108702, 29.623682180462879 ], [ -95.018394906541772, 29.623508180886006 ], [ -95.01839890749504, 29.622692180540781 ], [ -95.01836390702023, 29.621857180361676 ], [ -95.018337906693631, 29.62097118032991 ], [ -95.018335906615903, 29.62011018020366 ], [ -95.018317907021185, 29.619194179899161 ], [ -95.018311906703389, 29.618341180033617 ], [ -95.018311906624561, 29.618326179305914 ], [ -95.018307906780421, 29.61814617976 ], [ -95.01830190707571, 29.617876179524639 ], [ -95.018294907241156, 29.617584179254539 ], [ -95.018291906975691, 29.617431179316686 ], [ -95.018289907153388, 29.61714017914348 ], [ -95.018287906703776, 29.616770179535866 ], [ -95.018285906414675, 29.616448179354393 ], [ -95.018197906789794, 29.615387178994322 ], [ -95.018228906742806, 29.614937179399291 ], [ -95.018230906697028, 29.614903179409193 ], [ -95.018241906973955, 29.61472717860196 ], [ -95.018224906480967, 29.613937179264767 ], [ -95.018221906899015, 29.613815179175884 ], [ -95.018196906965713, 29.613058178664033 ], [ -95.016980906308191, 29.613125178638199 ], [ -95.00433990329519, 29.613639179265657 ], [ -94.996592901283961, 29.61374917924952 ], [ -94.995973900885133, 29.613758179662266 ], [ -94.995383901071236, 29.613741179901108 ], [ -94.995322901163078, 29.61373917977463 ], [ -94.994752900776064, 29.61372417971031 ], [ -94.997001901573867, 29.615223179593894 ], [ -94.997096901017883, 29.615286179623073 ], [ -94.997188901701278, 29.615369179741627 ], [ -94.99770790088769, 29.615836180100111 ], [ -94.998015901240223, 29.616083180256453 ], [ -94.998091901355338, 29.616144180286913 ], [ -94.998601901386493, 29.616523179613498 ], [ -94.998747901673184, 29.616753180315143 ], [ -94.998834902083445, 29.616891180402785 ], [ -94.998992901733089, 29.617106180409696 ], [ -94.999073901304669, 29.617216180381938 ], [ -94.999130902077624, 29.617342180581883 ], [ -94.999092901668092, 29.617452179895476 ], [ -94.999174902119222, 29.617479179824187 ], [ -94.999338901890937, 29.617595180618494 ], [ -94.999338901417502, 29.617622180439088 ], [ -94.999093901597575, 29.617996180611719 ], [ -94.999030902124673, 29.61829318080704 ], [ -94.99850890140884, 29.619113180893635 ], [ -94.9978799012043, 29.620043180644672 ], [ -94.997867901202028, 29.620081180474479 ], [ -94.997886901324918, 29.62014218086362 ], [ -94.998043901913121, 29.62033418118812 ], [ -94.998176901906547, 29.620466180664671 ], [ -94.998220901653468, 29.620455180767234 ], [ -94.998245902188543, 29.620433180838791 ], [ -94.998250901542633, 29.62041518061708 ], [ -94.998125901545009, 29.620230180989644 ], [ -94.9984779013989, 29.619696180268789 ], [ -94.998628901344503, 29.61949818079956 ], [ -94.999238901639231, 29.618579180674196 ], [ -94.999515902171581, 29.618299180740294 ], [ -94.999722902311632, 29.61804617986397 ], [ -94.999829901964418, 29.61811217994951 ], [ -95.000005902513351, 29.617941180584062 ], [ -95.000171902183638, 29.617752180055124 ], [ -95.000268901679362, 29.617812180602137 ], [ -95.00060590205122, 29.618022179938087 ], [ -95.00070690219215, 29.617956180498226 ], [ -95.001146902341361, 29.618264180394771 ], [ -95.001083902189905, 29.618368180556114 ], [ -95.001039902180651, 29.618484180640927 ], [ -95.000680902637185, 29.618869180237308 ], [ -95.000800901933886, 29.618946180389536 ], [ -95.000776902608123, 29.618969180301406 ], [ -95.000699902420834, 29.61904518060761 ], [ -95.000586902703859, 29.618973180718736 ], [ -95.000202902421421, 29.619336180937783 ], [ -94.999996902421103, 29.619392180650973 ], [ -94.999748902349893, 29.619459180653376 ], [ -94.999799902622684, 29.619651180247633 ], [ -94.999497901699698, 29.619728180628709 ], [ -94.999415901712297, 29.619778181072721 ], [ -94.999283901907575, 29.619899180665847 ], [ -94.999170902034948, 29.62005318110231 ], [ -94.998975902292855, 29.620246181109291 ], [ -94.998840901588167, 29.620398180922798 ], [ -94.998560902250503, 29.620713180511206 ], [ -94.998560902144163, 29.620735180663083 ], [ -94.998667901916647, 29.620779180520451 ], [ -94.999325901696707, 29.620280180879998 ], [ -94.999449902149124, 29.620186181119866 ], [ -94.999667902430119, 29.620020180924357 ], [ -94.999711901824469, 29.620009180535593 ], [ -94.999818902211587, 29.620113180901487 ], [ -94.99986290248664, 29.620141181123888 ], [ -94.999900902474337, 29.620146181154631 ], [ -95.000290902488857, 29.619858180929231 ], [ -95.000434901774, 29.619715180520981 ], [ -95.001033901887652, 29.619072180513928 ], [ -95.001348902575131, 29.618710179959738 ], [ -95.001455902161723, 29.618726180235139 ], [ -95.001606902660413, 29.618776180062074 ], [ -95.001887902911605, 29.618844180516557 ], [ -95.002380902370362, 29.618963180392885 ], [ -95.002694903280087, 29.6191061805225 ], [ -95.002921902509797, 29.619238180315374 ], [ -95.003097902454087, 29.619497180354077 ], [ -95.003160903301861, 29.619524180735695 ], [ -95.003437903359512, 29.619717180742057 ], [ -95.004185903676486, 29.620256181052454 ], [ -95.004689903819127, 29.620658180779472 ], [ -95.005393903647857, 29.621406180385435 ], [ -95.005506903160722, 29.621472180553862 ], [ -95.00568390335431, 29.621472180629343 ], [ -95.00575290330886, 29.62149418040589 ], [ -95.006312903651732, 29.622016181221927 ], [ -95.007186903689899, 29.622693180901447 ], [ -95.00760890375669, 29.622935181246337 ], [ -95.007941904146037, 29.623194181294974 ], [ -95.008564904921599, 29.623623180969958 ], [ -95.008766905009892, 29.623860180789613 ], [ -95.008926904411382, 29.624168181306164 ], [ -95.008954904367243, 29.624223181128652 ], [ -95.009024904476547, 29.624318181408022 ], [ -95.009148904451237, 29.624485180928346 ], [ -95.009206904369364, 29.624564181452318 ], [ -95.009484904357535, 29.625004180973356 ], [ -95.009500904374363, 29.625044181343863 ], [ -95.009584904692701, 29.625255181059551 ], [ -95.009719904406595, 29.625445181532474 ], [ -95.009767905209614, 29.625514181305356 ], [ -95.009778904503946, 29.625524181795964 ], [ -95.009836904886285, 29.625574181728652 ], [ -95.010061904860578, 29.625838181437018 ], [ -95.010572905366814, 29.626438181975566 ], [ -95.011434905744323, 29.627582182091132 ], [ -95.011509905407451, 29.627648181575687 ], [ -95.011597905634659, 29.627692182094105 ], [ -95.011635905652781, 29.627725182257041 ], [ -95.011717905068139, 29.627852182172063 ], [ -95.011899906002583, 29.628050182197541 ], [ -95.01192490548263, 29.628099182192877 ], [ -95.011950905500342, 29.628182182092576 ], [ -95.011950905554528, 29.62821518168732 ], [ -95.011924905930968, 29.628270181905595 ], [ -95.011931905400289, 29.628330182137894 ], [ -95.011950905381198, 29.628369181886725 ], [ -95.012006905246054, 29.628407181777153 ], [ -95.012082905265103, 29.628418182206101 ], [ -95.01218290585777, 29.628418182394256 ], [ -95.012359905300642, 29.628473181901665 ], [ -95.012579906027682, 29.628512182333669 ], [ -95.01268090606186, 29.628567181744405 ], [ -95.012761905595568, 29.62866018196528 ], [ -95.013107905485484, 29.629227181712032 ], [ -95.01319590578882, 29.629356182109465 ], [ -95.013246905670186, 29.629431182152977 ], [ -95.013428905582614, 29.629640182085282 ], [ -95.013556905676936, 29.629724181913783 ], [ -95.013579906019956, 29.629739182620675 ], [ -95.013692906109284, 29.629865182663067 ], [ -95.013730906141788, 29.629931182635548 ], [ -95.013745906429975, 29.629976182021288 ], [ -95.013849906304216, 29.630278181975697 ], [ -95.013899905971499, 29.630371182383353 ], [ -95.013958906632411, 29.63047918256397 ], [ -95.014000906117474, 29.630558182533196 ], [ -95.014164906023595, 29.630756182724593 ], [ -95.014226906063996, 29.630907182442634 ], [ -95.014280905936914, 29.631036182165253 ], [ -95.014392906453139, 29.631308182827585 ], [ -95.014503906346008, 29.631576182201787 ], [ -95.014617906251047, 29.631658182214192 ], [ -95.014758906730478, 29.631723182415143 ], [ -95.014831906061247, 29.631757182383453 ], [ -95.01491990634652, 29.631823182325324 ], [ -95.014974906606326, 29.631881183001745 ], [ -95.015045906280676, 29.631955182615588 ], [ -95.015072906101253, 29.632018182293223 ], [ -95.015145906851899, 29.632192182539786 ], [ -95.015147907083048, 29.632203182966311 ], [ -95.015157906287271, 29.632254182990227 ], [ -95.015168906273132, 29.632311182937126 ], [ -95.015195906265802, 29.632456182616703 ], [ -95.0152109062889, 29.632660183105038 ], [ -95.015218906438761, 29.632770182925473 ], [ -95.015220906832667, 29.632802183051577 ], [ -95.015170906445704, 29.632929183087565 ], [ -95.015132907150061, 29.632989182743561 ], [ -95.015120907043766, 29.633044183307042 ], [ -95.015123906208757, 29.633111182577661 ], [ -95.015126907005381, 29.633160183058443 ], [ -95.01515990701445, 29.633285183223453 ], [ -95.01516490686285, 29.633303182891481 ], [ -95.015206907066116, 29.633393182829639 ], [ -95.015226907167246, 29.633435182849709 ], [ -95.015252906238047, 29.633523183284655 ], [ -95.015253907144739, 29.633554183146625 ], [ -95.015259906676789, 29.633684183256843 ], [ -95.015277906887349, 29.634084182857801 ], [ -95.015339906928318, 29.634392183420196 ], [ -95.015368906280912, 29.634480182862688 ], [ -95.015421906935728, 29.634641182981355 ], [ -95.015440906990491, 29.634699183023542 ], [ -95.015490906738037, 29.635139183449347 ], [ -95.015559906690584, 29.635453183584662 ], [ -95.015641906610284, 29.635656183301862 ], [ -95.015685906901496, 29.63582718353523 ], [ -95.015685907327068, 29.63605818362835 ], [ -95.015641907146545, 29.636311183540194 ], [ -95.015640907430523, 29.636789183719685 ], [ -95.015653906764712, 29.636850183725365 ], [ -95.015666906679186, 29.636877183972022 ], [ -95.01571090643921, 29.636899184022056 ], [ -95.015898906829349, 29.636888183610285 ], [ -95.01592490730647, 29.636916183872639 ], [ -95.015949907526718, 29.636976183341609 ], [ -95.015980907412086, 29.637592184172064 ], [ -95.015967907033556, 29.638153183670969 ], [ -95.015980907465178, 29.638197184217908 ], [ -95.016011906947725, 29.638225184309867 ], [ -95.016049907050075, 29.638230184027751 ], [ -95.016100906996357, 29.638217183734962 ], [ -95.016108907271573, 29.6382471839927 ], [ -95.016112906766779, 29.638307183834545 ], [ -95.016049907360184, 29.638505183855873 ], [ -95.015753907249589, 29.638945184353691 ], [ -95.015589907078294, 29.639330184264377 ], [ -95.015438907325674, 29.639638184402958 ], [ -95.015184906881728, 29.640195184672518 ], [ -95.015129907250341, 29.640314184202385 ], [ -95.014875906893934, 29.641022184450115 ], [ -95.014814906527363, 29.641188184647831 ], [ -95.014574906536751, 29.641700184330297 ], [ -95.014398906385935, 29.642035184949076 ], [ -95.014303906449143, 29.642216185023671 ], [ -95.014282906382647, 29.642262184765961 ], [ -95.014266906819628, 29.642298185239781 ], [ -95.014221906317388, 29.642398185195905 ], [ -95.014196906421049, 29.642541184574359 ], [ -95.014209906724602, 29.642645185162664 ], [ -95.014232906684924, 29.642680184978591 ], [ -95.014253906978183, 29.642711184583408 ], [ -95.014404907033637, 29.642849185325431 ], [ -95.01461890727947, 29.643019185207152 ], [ -95.014718907220811, 29.643080185044401 ], [ -95.014863906547944, 29.643195185061753 ], [ -95.014958907443898, 29.643250184907032 ], [ -95.015115907103137, 29.643300184961642 ], [ -95.015379907192909, 29.643366184804414 ], [ -95.015486907007414, 29.643449184738543 ], [ -95.015587906878125, 29.643537185215369 ], [ -95.015662907303906, 29.643647185170575 ], [ -95.01575090712177, 29.643834184967641 ], [ -95.015788907450869, 29.643900184849592 ], [ -95.01615390738327, 29.644367185370815 ], [ -95.016260907871484, 29.644466185559427 ], [ -95.016361907568424, 29.644543184966977 ], [ -95.016411907019176, 29.644565185382795 ], [ -95.016871908017308, 29.644527185401493 ], [ -95.016927907546844, 29.644532185147366 ], [ -95.017022907889753, 29.644565185319266 ], [ -95.017324908026112, 29.644736185352166 ], [ -95.017469907796624, 29.644830185442135 ], [ -95.017620907911265, 29.644934185285472 ], [ -95.017727907950004, 29.645028185508696 ], [ -95.017840908212563, 29.645154185445552 ], [ -95.0178789079457, 29.645215185032214 ], [ -95.0179349081574, 29.645336185561035 ], [ -95.017947907568882, 29.645407185264379 ], [ -95.017966907511322, 29.645693185032382 ], [ -95.017997908091473, 29.645726185072103 ], [ -95.018217907830163, 29.645792185211882 ], [ -95.018589907728781, 29.64587518520511 ], [ -95.018771908003302, 29.645957185141022 ], [ -95.018847908162059, 29.645957185393506 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1181, "Tract": "48201321800", "Area_SqMi": 0.50510887878242594, "total_2009": 53, "total_2010": 50, "total_2011": 64, "total_2012": 59, "total_2013": 58, "total_2014": 66, "total_2015": 74, "total_2016": 103, "total_2017": 85, "total_2018": 261, "total_2019": 237, "total_2020": 83, "age1": 23, "age2": 40, "age3": 13, "earn1": 21, "earn2": 35, "earn3": 20, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 0, "naics_s06": 9, "naics_s07": 22, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 30, "naics_s19": 0, "naics_s20": 0, "race1": 61, "race2": 4, "race3": 0, "race4": 8, "race5": 0, "race6": 3, "ethnicity1": 44, "ethnicity2": 32, "edu1": 12, "edu2": 20, "edu3": 14, "edu4": 7, "Shape_Length": 16665.841153859863, "Shape_Area": 14081571.037968032, "total_2021": 91, "total_2022": 76 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.247198968660456, 29.686928186026286 ], [ -95.247236969128664, 29.686911185991558 ], [ -95.246748968125559, 29.686075186005841 ], [ -95.246570967893305, 29.685901186366909 ], [ -95.245336968102649, 29.685160186048549 ], [ -95.245204968315647, 29.684940185677032 ], [ -95.245210968347124, 29.684584185842393 ], [ -95.24541996827746, 29.683185185192063 ], [ -95.245341968268733, 29.683196185615646 ], [ -95.24499796835515, 29.683244185732523 ], [ -95.242864967452007, 29.683303185138204 ], [ -95.2418769672325, 29.683290185250431 ], [ -95.241401966775172, 29.683309185983784 ], [ -95.241128967141094, 29.683307185532747 ], [ -95.240518966560217, 29.683313185278845 ], [ -95.238931966374537, 29.683338185631953 ], [ -95.236183965871248, 29.683316185948783 ], [ -95.234532965539984, 29.683353185450827 ], [ -95.234013965087769, 29.683358186115068 ], [ -95.232930964826537, 29.683367186139243 ], [ -95.232144964345622, 29.683378186123061 ], [ -95.231094964655867, 29.683384185813342 ], [ -95.230328964645125, 29.683388186004429 ], [ -95.230089963830665, 29.683374186135087 ], [ -95.229851963747137, 29.683349186397084 ], [ -95.229520963849367, 29.68332318583424 ], [ -95.23102196461295, 29.685454186535001 ], [ -95.231159964006622, 29.685659186849932 ], [ -95.23150896469437, 29.686147186478749 ], [ -95.231893965153034, 29.686686187097219 ], [ -95.231979964517365, 29.686797186253845 ], [ -95.232425964722481, 29.687428187068679 ], [ -95.233049964991153, 29.68832718724726 ], [ -95.233796965062353, 29.689397187142514 ], [ -95.234380965344997, 29.690239187552788 ], [ -95.234548965291893, 29.69049618711027 ], [ -95.235069965322978, 29.691252187015991 ], [ -95.235632965634636, 29.692071187801346 ], [ -95.236382966335796, 29.693159187504438 ], [ -95.236845965876114, 29.693831187951346 ], [ -95.237825966827074, 29.695258188473531 ], [ -95.238355967054972, 29.695998188139928 ], [ -95.238570966463698, 29.696308188714578 ], [ -95.239062967022207, 29.696049188105317 ], [ -95.239124967181823, 29.696030188699826 ], [ -95.240088967471976, 29.694753187792124 ], [ -95.241584967682556, 29.692783187128949 ], [ -95.242919967314364, 29.691004187174961 ], [ -95.24461496751762, 29.68876918682065 ], [ -95.244890968080384, 29.68846018672248 ], [ -95.245151968444944, 29.68821918666584 ], [ -95.245546968019141, 29.68787818647791 ], [ -95.246142968554651, 29.687422186348655 ], [ -95.247198968660456, 29.686928186026286 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1182, "Tract": "48201211000", "Area_SqMi": 0.43221433583956809, "total_2009": 55, "total_2010": 101, "total_2011": 110, "total_2012": 91, "total_2013": 112, "total_2014": 112, "total_2015": 128, "total_2016": 132, "total_2017": 140, "total_2018": 102, "total_2019": 119, "total_2020": 120, "age1": 40, "age2": 80, "age3": 39, "earn1": 99, "earn2": 42, "earn3": 18, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 12, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 54, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 12, "naics_s17": 0, "naics_s18": 81, "naics_s19": 0, "naics_s20": 0, "race1": 99, "race2": 38, "race3": 2, "race4": 17, "race5": 1, "race6": 2, "ethnicity1": 103, "ethnicity2": 56, "edu1": 32, "edu2": 23, "edu3": 38, "edu4": 26, "Shape_Length": 15290.202484039615, "Shape_Area": 12049395.940978276, "total_2021": 152, "total_2022": 159 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.340125997317074, 29.801319206896693 ], [ -95.340118997411452, 29.800299205883469 ], [ -95.340053996978028, 29.799133205615924 ], [ -95.339963996899399, 29.797898205962415 ], [ -95.339944997564345, 29.794079205183561 ], [ -95.339944996746993, 29.793910204606846 ], [ -95.339737997304965, 29.793915205436559 ], [ -95.339538996546793, 29.793907204850502 ], [ -95.339242997086544, 29.79390420496534 ], [ -95.338398997186431, 29.793907204605045 ], [ -95.33722199625366, 29.793923205133463 ], [ -95.336022996560189, 29.793935205398373 ], [ -95.332049995618348, 29.794010205701142 ], [ -95.331445994956738, 29.794018205172961 ], [ -95.331253994841319, 29.794008204841461 ], [ -95.33099499508188, 29.793977204874366 ], [ -95.330633995207549, 29.793846205732891 ], [ -95.330175994875489, 29.793653204910591 ], [ -95.329848994916119, 29.793559205049679 ], [ -95.328713994713553, 29.793534205690982 ], [ -95.327693994443464, 29.793521205324005 ], [ -95.326805993417793, 29.793527205043546 ], [ -95.326336993689281, 29.793538205721699 ], [ -95.325794993795697, 29.793532205002411 ], [ -95.325373993272351, 29.79359120495965 ], [ -95.32503799307473, 29.79366220528523 ], [ -95.324478993365432, 29.793844205913263 ], [ -95.32400399324878, 29.793956205971664 ], [ -95.324044992740625, 29.796934206448594 ], [ -95.324099992891206, 29.800170206718278 ], [ -95.325860994281882, 29.800148206823575 ], [ -95.327134994282034, 29.800133207022323 ], [ -95.328216994723533, 29.800119206925103 ], [ -95.329563994429122, 29.800103206626673 ], [ -95.3306029949959, 29.800090206975565 ], [ -95.331368995388218, 29.800080206227573 ], [ -95.332244995790447, 29.800070206845554 ], [ -95.333094995183643, 29.800059206147441 ], [ -95.333389995805618, 29.800079206127091 ], [ -95.333900995942187, 29.800114206467835 ], [ -95.334224996092274, 29.800136206377307 ], [ -95.334751995687228, 29.800169206503195 ], [ -95.334870996322707, 29.800177206463559 ], [ -95.335376996555809, 29.800282206889968 ], [ -95.335973996927521, 29.800421206578637 ], [ -95.336223996363202, 29.8005152063871 ], [ -95.336979996313332, 29.80079820640276 ], [ -95.337404996830543, 29.800888206587992 ], [ -95.338629997396083, 29.801147206325588 ], [ -95.339334997350363, 29.801328206918136 ], [ -95.339571997443841, 29.80138420607738 ], [ -95.339699997051312, 29.801415206274925 ], [ -95.339873997233838, 29.801455206308681 ], [ -95.340114998046957, 29.801511206309158 ], [ -95.340125997317074, 29.801319206896693 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1183, "Tract": "48201211200", "Area_SqMi": 0.65734334911207848, "total_2009": 19, "total_2010": 42, "total_2011": 49, "total_2012": 84, "total_2013": 100, "total_2014": 75, "total_2015": 98, "total_2016": 84, "total_2017": 98, "total_2018": 111, "total_2019": 96, "total_2020": 93, "age1": 20, "age2": 39, "age3": 26, "earn1": 41, "earn2": 23, "earn3": 21, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1, "naics_s06": 8, "naics_s07": 39, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 16, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 14, "naics_s19": 0, "naics_s20": 0, "race1": 37, "race2": 26, "race3": 0, "race4": 22, "race5": 0, "race6": 0, "ethnicity1": 68, "ethnicity2": 17, "edu1": 20, "edu2": 6, "edu3": 21, "edu4": 18, "Shape_Length": 20378.838456027184, "Shape_Area": 18325607.518858783, "total_2021": 75, "total_2022": 85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.324233993935621, 29.809077208294468 ], [ -95.324228993386171, 29.80876920830552 ], [ -95.324183993353657, 29.806195207842833 ], [ -95.324177994077573, 29.805874207988321 ], [ -95.324152993961107, 29.803876207944988 ], [ -95.324152993480382, 29.80356520780844 ], [ -95.324101993042916, 29.800316206605732 ], [ -95.324099992891206, 29.800170206718278 ], [ -95.324044992740625, 29.796934206448594 ], [ -95.32400399324878, 29.793956205971664 ], [ -95.324004993277924, 29.793229205748464 ], [ -95.324003992884556, 29.792526204840819 ], [ -95.323991993110383, 29.7917122050637 ], [ -95.323987993350926, 29.791001205171067 ], [ -95.323981993451497, 29.790907204496502 ], [ -95.32397199245429, 29.790291204718315 ], [ -95.32397699256758, 29.789565204359043 ], [ -95.323971992386603, 29.789094204709681 ], [ -95.32396999270685, 29.788374204439567 ], [ -95.323949992465245, 29.78766920466137 ], [ -95.32300199216759, 29.787686203895362 ], [ -95.322095992169508, 29.787681204473561 ], [ -95.322003992471281, 29.78767420446578 ], [ -95.321811992222678, 29.787677204047451 ], [ -95.321564992449865, 29.787648204401492 ], [ -95.321265991872863, 29.787569204308557 ], [ -95.320427991767403, 29.78758420455193 ], [ -95.319303991232815, 29.787629204811289 ], [ -95.318386991150319, 29.787663204031666 ], [ -95.317506990690958, 29.787703204437708 ], [ -95.316474991356216, 29.787755204955282 ], [ -95.315946990267477, 29.787931204790443 ], [ -95.315954990574397, 29.789432204815288 ], [ -95.315960990748081, 29.789805204854719 ], [ -95.316004990396081, 29.790691204989162 ], [ -95.316102991263591, 29.791514204919601 ], [ -95.31610399088953, 29.791751205303406 ], [ -95.316165990922372, 29.793683205593826 ], [ -95.316239991361485, 29.793827205998767 ], [ -95.31627399140632, 29.793893205819906 ], [ -95.316593990851132, 29.794404206015844 ], [ -95.316862991126357, 29.795040205784048 ], [ -95.316885991562032, 29.795474206167288 ], [ -95.316916991231906, 29.797016206309106 ], [ -95.316953991919846, 29.79868220691656 ], [ -95.316977991255669, 29.800257207050823 ], [ -95.316979991143498, 29.800389206918755 ], [ -95.316995991809634, 29.802202207900987 ], [ -95.317020991197808, 29.803370207277748 ], [ -95.317026991403736, 29.803956208184534 ], [ -95.317070992080545, 29.805947208002646 ], [ -95.317082992335699, 29.807492208863422 ], [ -95.317078992175126, 29.807888208174965 ], [ -95.317077992218344, 29.8079562083871 ], [ -95.317079991525105, 29.808080208497625 ], [ -95.317226992502341, 29.808942209006155 ], [ -95.317220991568689, 29.809256209113048 ], [ -95.317366992375725, 29.809255209131905 ], [ -95.31989199277551, 29.809236208562886 ], [ -95.321005993178815, 29.809227208951381 ], [ -95.321757993633156, 29.809239208967025 ], [ -95.322692993647252, 29.809209208389756 ], [ -95.323915993455429, 29.809119208568415 ], [ -95.324233993935621, 29.809077208294468 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1184, "Tract": "48201540700", "Area_SqMi": 2.9141628169033629, "total_2009": 1432, "total_2010": 1297, "total_2011": 1445, "total_2012": 1554, "total_2013": 1642, "total_2014": 1622, "total_2015": 3087, "total_2016": 3000, "total_2017": 2888, "total_2018": 3060, "total_2019": 2744, "total_2020": 2657, "age1": 458, "age2": 1444, "age3": 734, "earn1": 211, "earn2": 630, "earn3": 1795, "naics_s01": 0, "naics_s02": 43, "naics_s03": 0, "naics_s04": 215, "naics_s05": 1008, "naics_s06": 387, "naics_s07": 311, "naics_s08": 7, "naics_s09": 4, "naics_s10": 32, "naics_s11": 175, "naics_s12": 36, "naics_s13": 0, "naics_s14": 166, "naics_s15": 1, "naics_s16": 96, "naics_s17": 26, "naics_s18": 63, "naics_s19": 66, "naics_s20": 0, "race1": 2022, "race2": 318, "race3": 36, "race4": 216, "race5": 4, "race6": 40, "ethnicity1": 1729, "ethnicity2": 907, "edu1": 512, "edu2": 611, "edu3": 630, "edu4": 425, "Shape_Length": 48855.10419193103, "Shape_Area": 81241871.695757419, "total_2021": 2755, "total_2022": 2636 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.62617007231519, 29.840351205077205 ], [ -95.626202072380025, 29.840252204845143 ], [ -95.626107072112859, 29.840027204641899 ], [ -95.625830072312525, 29.839807204516653 ], [ -95.625597072547151, 29.839675204699368 ], [ -95.625269072100394, 29.839444204621696 ], [ -95.62520607251497, 29.839383204704625 ], [ -95.625212072484672, 29.839208204250276 ], [ -95.625256072586666, 29.839037204468983 ], [ -95.625206072521777, 29.838889204594977 ], [ -95.625067072433438, 29.838784204408206 ], [ -95.625030071943613, 29.838647204682307 ], [ -95.625093072464395, 29.838366204654733 ], [ -95.625288071647361, 29.838251204067372 ], [ -95.625553071794215, 29.838064204317767 ], [ -95.625711072605938, 29.837921204478821 ], [ -95.625755072019814, 29.837855204222024 ], [ -95.625680072103975, 29.837707204553258 ], [ -95.625289071874207, 29.837498204539582 ], [ -95.625007071547941, 29.837306203816297 ], [ -95.624919072498216, 29.83722920437204 ], [ -95.624925072255579, 29.837136203854133 ], [ -95.625007072432808, 29.837081204188856 ], [ -95.625239072296637, 29.836998203728985 ], [ -95.625440072014939, 29.836877203717599 ], [ -95.625718072005554, 29.836882204195664 ], [ -95.626065071984911, 29.836844204256082 ], [ -95.626134072252171, 29.836778203761181 ], [ -95.626122072619836, 29.836712204358975 ], [ -95.626014071874494, 29.836448203531685 ], [ -95.625977072155777, 29.836316203430417 ], [ -95.625882072674841, 29.836157203508218 ], [ -95.625624072579456, 29.836025203462459 ], [ -95.625616072178573, 29.835985203463267 ], [ -95.622645070915695, 29.835957203675736 ], [ -95.618806070436008, 29.835966203767164 ], [ -95.618296070219984, 29.835983204339843 ], [ -95.617282070271926, 29.836003203857153 ], [ -95.616139069263127, 29.836012204573706 ], [ -95.613656069499271, 29.836057204643982 ], [ -95.613571069529002, 29.836004204488709 ], [ -95.61321906909113, 29.836014204580589 ], [ -95.612685068871428, 29.835979204092713 ], [ -95.611663068066306, 29.835823203928012 ], [ -95.609109068300469, 29.835051203784843 ], [ -95.608128067360028, 29.834714204477578 ], [ -95.606751067140095, 29.83429920392858 ], [ -95.604846066244818, 29.83374120428892 ], [ -95.604861066799359, 29.834321203760112 ], [ -95.604873066678664, 29.834632204265802 ], [ -95.604993067589916, 29.841245205920256 ], [ -95.604995066622919, 29.841386205969773 ], [ -95.604996067232136, 29.841430205510811 ], [ -95.605006066783872, 29.841544205812319 ], [ -95.605124067070889, 29.842389205919506 ], [ -95.60513206734079, 29.842446205731175 ], [ -95.60551506699592, 29.84515520599771 ], [ -95.605774067732369, 29.846836206462765 ], [ -95.605860067492827, 29.847455206635733 ], [ -95.605940068072641, 29.848112207207414 ], [ -95.606049067784795, 29.848924207274237 ], [ -95.606226067762464, 29.850075207629516 ], [ -95.606293067919125, 29.850563207320437 ], [ -95.60630706752309, 29.85065820779873 ], [ -95.606457068350835, 29.851741208068663 ], [ -95.606561067608183, 29.852547207859569 ], [ -95.606849067988762, 29.854609208432301 ], [ -95.606900068622636, 29.854976208578595 ], [ -95.607021067945595, 29.855819208068528 ], [ -95.607067068196528, 29.856155208539569 ], [ -95.607071068801858, 29.856184208735286 ], [ -95.607086068041923, 29.856286208497359 ], [ -95.607090068816788, 29.85631420863022 ], [ -95.607094068718126, 29.85634120867531 ], [ -95.607210068303232, 29.857161208663598 ], [ -95.607249068319348, 29.857441208722854 ], [ -95.607288068625479, 29.85768720925568 ], [ -95.607367068828694, 29.858194209389989 ], [ -95.607472068171347, 29.858915209196713 ], [ -95.607544068308883, 29.859401209306125 ], [ -95.607621068766079, 29.859981209078459 ], [ -95.607895069089267, 29.86190820993577 ], [ -95.60806706862779, 29.863112209888239 ], [ -95.608088069317233, 29.863238209993565 ], [ -95.608101069228027, 29.863359209645186 ], [ -95.608125068470841, 29.863615209764198 ], [ -95.608164068973835, 29.86429321029394 ], [ -95.608185068666771, 29.864570209794479 ], [ -95.608270068936449, 29.865364210628908 ], [ -95.608272068996484, 29.865404210430146 ], [ -95.608287069456466, 29.865736210453424 ], [ -95.608297069243548, 29.866596210488993 ], [ -95.608298069279002, 29.866641210569703 ], [ -95.608308069556116, 29.867299210593373 ], [ -95.608323069556178, 29.867694210649031 ], [ -95.60839606914206, 29.868616210979585 ], [ -95.608401069548592, 29.869093211238066 ], [ -95.608399068813256, 29.869301211220847 ], [ -95.608399069546223, 29.869540211325766 ], [ -95.608405069461, 29.869801210981709 ], [ -95.608402069039769, 29.869925211240389 ], [ -95.608406068841575, 29.870282211236464 ], [ -95.60840906930774, 29.870524211471249 ], [ -95.608404069142054, 29.870734211466747 ], [ -95.608411068882489, 29.870942211442337 ], [ -95.608409068873925, 29.871152211443636 ], [ -95.608446069132114, 29.871830211948431 ], [ -95.608468069400587, 29.872468211567163 ], [ -95.608473069338714, 29.874445211899264 ], [ -95.608468069850758, 29.875176212629846 ], [ -95.60842806992838, 29.875829212826606 ], [ -95.608420069131597, 29.875975212289486 ], [ -95.608415069890683, 29.876464212961174 ], [ -95.608425069368806, 29.876758213083917 ], [ -95.608443069315896, 29.876931212505664 ], [ -95.608467070034422, 29.877147212683401 ], [ -95.608471069290715, 29.877201213137091 ], [ -95.608489069271073, 29.877418213283086 ], [ -95.608503069899498, 29.878030212881949 ], [ -95.608526069837922, 29.878562213188342 ], [ -95.608528070077753, 29.879298213292788 ], [ -95.608529069404483, 29.879545213067566 ], [ -95.611851070700553, 29.879512212981343 ], [ -95.611888071016025, 29.879512213217442 ], [ -95.612508070853096, 29.879504213480367 ], [ -95.613672071328466, 29.879490213395798 ], [ -95.620679072394125, 29.879455212944826 ], [ -95.620709072318505, 29.87945621318611 ], [ -95.620726073276956, 29.879456212682353 ], [ -95.620741073237014, 29.879456213222539 ], [ -95.620777072963293, 29.879457212937552 ], [ -95.621244073468148, 29.879444212542882 ], [ -95.622329073024318, 29.879418213176749 ], [ -95.623544073179033, 29.879402212753526 ], [ -95.623969073407991, 29.879403212561474 ], [ -95.624173074075003, 29.879404212935665 ], [ -95.625313074396558, 29.879431212445613 ], [ -95.625386074286368, 29.879433212913611 ], [ -95.62536707415623, 29.879277212245679 ], [ -95.625355073796669, 29.878958212831524 ], [ -95.625292074237095, 29.878782212665733 ], [ -95.625235074371574, 29.878694212857834 ], [ -95.625197074273373, 29.878606212592487 ], [ -95.625172074404134, 29.878479212309465 ], [ -95.625166074252562, 29.878304212617749 ], [ -95.625204074405758, 29.878199212444873 ], [ -95.625248073725814, 29.878023212220075 ], [ -95.625324073465791, 29.877809212478933 ], [ -95.625507074208642, 29.877529212666374 ], [ -95.625766073984778, 29.87734221202204 ], [ -95.625961074024048, 29.877100212181215 ], [ -95.626005074406663, 29.876952212329609 ], [ -95.625999074178822, 29.876858212491477 ], [ -95.625949073643909, 29.876726212370482 ], [ -95.6258800739745, 29.876594211853782 ], [ -95.625829073875366, 29.876446211837241 ], [ -95.625760073959029, 29.87629221184234 ], [ -95.625628073941925, 29.875885211909587 ], [ -95.625577074247005, 29.875682212366033 ], [ -95.625546073970497, 29.875335211544119 ], [ -95.625546074360827, 29.875005211544043 ], [ -95.6254830737806, 29.874829212071475 ], [ -95.625483074343862, 29.874675211757456 ], [ -95.625376073651466, 29.874263211644756 ], [ -95.625326073948983, 29.874027211736511 ], [ -95.625200073891435, 29.873873211617216 ], [ -95.625086074032353, 29.873768211791553 ], [ -95.625007073553192, 29.873709211282691 ], [ -95.62452107360842, 29.873280211640765 ], [ -95.62442007304081, 29.873154211273995 ], [ -95.624401073904963, 29.873115211217176 ], [ -95.62439507352623, 29.873038211190945 ], [ -95.624414073146724, 29.872956211744196 ], [ -95.624471073409637, 29.87282421164792 ], [ -95.624590073429644, 29.872626210879471 ], [ -95.624767073265005, 29.872444211595937 ], [ -95.625006073406638, 29.872224211021408 ], [ -95.625074073664578, 29.872189211213076 ], [ -95.625365073568403, 29.872042210808864 ], [ -95.625573073941993, 29.871976211536904 ], [ -95.625813074080256, 29.871927210849623 ], [ -95.625945073886925, 29.871889210842291 ], [ -95.626008073706657, 29.871784210878825 ], [ -95.626021073539675, 29.871630210641793 ], [ -95.626084074326684, 29.871460210650397 ], [ -95.626072073451184, 29.87124021064734 ], [ -95.625927074077794, 29.870926210716586 ], [ -95.62573807346736, 29.870679210537798 ], [ -95.625358073746597, 29.870260211043121 ], [ -95.625177073058751, 29.870085210379067 ], [ -95.625145073956787, 29.870080211089952 ], [ -95.625050073591254, 29.870150210562826 ], [ -95.624703073646671, 29.8700562110098 ], [ -95.624207072778589, 29.869800211154775 ], [ -95.623971073134541, 29.86959921052167 ], [ -95.623835073595387, 29.869299210495218 ], [ -95.623794073628844, 29.869013210204265 ], [ -95.624130072945732, 29.867940210772268 ], [ -95.624106072643315, 29.867333210037344 ], [ -95.624178072862946, 29.86694520980037 ], [ -95.624680073000121, 29.86618021040875 ], [ -95.624685073446017, 29.866161209672764 ], [ -95.624865072951707, 29.86548220995995 ], [ -95.624722072949638, 29.864927209861722 ], [ -95.624301073318975, 29.863954209686298 ], [ -95.624285072566465, 29.863542209787401 ], [ -95.624281073337769, 29.863452209462938 ], [ -95.624326073188087, 29.863003208942072 ], [ -95.624393072714241, 29.862342208818589 ], [ -95.624377072777065, 29.861840208835282 ], [ -95.624239072607878, 29.861463209303725 ], [ -95.623938072712733, 29.86091120890816 ], [ -95.622892072272734, 29.859442208632672 ], [ -95.622185072447948, 29.858773208416007 ], [ -95.621069072362488, 29.857717208027626 ], [ -95.620989072104692, 29.857642208103485 ], [ -95.620913071581228, 29.857489208425743 ], [ -95.620711071816501, 29.857082208459637 ], [ -95.620693072102412, 29.856957208496361 ], [ -95.620655071353625, 29.85670320842058 ], [ -95.620590071658086, 29.856258208547366 ], [ -95.620213071522059, 29.855875208045884 ], [ -95.619256071559818, 29.85469820783263 ], [ -95.61913307172351, 29.854576207481401 ], [ -95.618358071090881, 29.853802207708295 ], [ -95.618063071007555, 29.853368207591156 ], [ -95.617938070554089, 29.853062207974386 ], [ -95.617798071235441, 29.852206207401586 ], [ -95.617782071135849, 29.8497922067613 ], [ -95.617834071116292, 29.849382207186313 ], [ -95.617841071124445, 29.849327206852319 ], [ -95.617961070498822, 29.848982206706445 ], [ -95.618186071234689, 29.848597206890812 ], [ -95.618831071367524, 29.847895206621615 ], [ -95.619617070614481, 29.847398206190032 ], [ -95.61980307135002, 29.847281206603164 ], [ -95.621459071782155, 29.846325205700179 ], [ -95.622325071607079, 29.845905206302447 ], [ -95.622654071408675, 29.845795205995827 ], [ -95.62289407168889, 29.845652205581967 ], [ -95.622957071857186, 29.845592205828662 ], [ -95.623045071542748, 29.845432206275611 ], [ -95.623070072139754, 29.845350205883594 ], [ -95.623077072141285, 29.845229205532249 ], [ -95.623064072309759, 29.845190206031479 ], [ -95.623026071988505, 29.845152206197582 ], [ -95.62282407191816, 29.845086206089363 ], [ -95.622711071449118, 29.84501420536888 ], [ -95.622679072170456, 29.844976205815474 ], [ -95.622660071895567, 29.844888205424986 ], [ -95.622641072200594, 29.844668205499605 ], [ -95.622553072037647, 29.844514206076642 ], [ -95.622515071663599, 29.844382205378938 ], [ -95.622515071230978, 29.844272205430375 ], [ -95.622534072033616, 29.84421720559628 ], [ -95.622552071549507, 29.844179206020168 ], [ -95.622590071672505, 29.844146205898916 ], [ -95.622647072213368, 29.844124205691735 ], [ -95.622723072143657, 29.844113205348581 ], [ -95.622786071361745, 29.844091205410322 ], [ -95.622893071449354, 29.843975205252267 ], [ -95.622943071920744, 29.843942205748036 ], [ -95.622975072052753, 29.84393720518721 ], [ -95.623019071667358, 29.843948205439776 ], [ -95.623145071870468, 29.844008205752218 ], [ -95.623366072402874, 29.844025205885561 ], [ -95.623492071572215, 29.844008205351194 ], [ -95.62368707223844, 29.843931205865896 ], [ -95.623794072221415, 29.843826205724952 ], [ -95.623807071676964, 29.843799205388127 ], [ -95.623801072298463, 29.843706205370424 ], [ -95.623782071509382, 29.843651205449092 ], [ -95.623744072318885, 29.843579205416745 ], [ -95.623643071994778, 29.843447205763599 ], [ -95.623691071748752, 29.843418205521623 ], [ -95.623710071820355, 29.843371205126182 ], [ -95.623649071954077, 29.843304205801086 ], [ -95.62367407160508, 29.843057205325277 ], [ -95.623693071556076, 29.843002205306618 ], [ -95.623687071625284, 29.842964205219747 ], [ -95.623643072140212, 29.842914205341366 ], [ -95.623573071605151, 29.842865205286408 ], [ -95.623548071439672, 29.842821205720131 ], [ -95.623535071697276, 29.842766205190493 ], [ -95.623548071889303, 29.842694205561436 ], [ -95.623705071887059, 29.842315205322222 ], [ -95.623806072010581, 29.842133205225423 ], [ -95.6239260719572, 29.841963204859397 ], [ -95.624014071732162, 29.841759205341404 ], [ -95.624102071670535, 29.84160520543179 ], [ -95.62418407168208, 29.841539204615437 ], [ -95.624272072467576, 29.841495204603635 ], [ -95.624386071908063, 29.841457204950228 ], [ -95.624896072126177, 29.841341204803026 ], [ -95.625010072280475, 29.841308204972602 ], [ -95.625104072191419, 29.84126920499304 ], [ -95.625236072602306, 29.841165204723097 ], [ -95.625293072633966, 29.84108220484282 ], [ -95.625268072588696, 29.840912204561409 ], [ -95.625205071981085, 29.840796204677051 ], [ -95.625237071936468, 29.840593205064302 ], [ -95.625344072083067, 29.840494205008259 ], [ -95.62548307205887, 29.840483204407164 ], [ -95.625596072737082, 29.840522204424584 ], [ -95.625735072397745, 29.840659205113901 ], [ -95.625867072433081, 29.840632204752495 ], [ -95.625987072141598, 29.840566204876904 ], [ -95.626082072783703, 29.840445205092138 ], [ -95.62617007231519, 29.840351205077205 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1185, "Tract": "48201211400", "Area_SqMi": 1.4385847708664286, "total_2009": 2937, "total_2010": 2650, "total_2011": 2377, "total_2012": 2172, "total_2013": 2144, "total_2014": 1776, "total_2015": 1741, "total_2016": 1534, "total_2017": 1340, "total_2018": 1295, "total_2019": 1350, "total_2020": 1281, "age1": 181, "age2": 691, "age3": 362, "earn1": 113, "earn2": 246, "earn3": 875, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 555, "naics_s06": 301, "naics_s07": 8, "naics_s08": 64, "naics_s09": 5, "naics_s10": 10, "naics_s11": 6, "naics_s12": 18, "naics_s13": 0, "naics_s14": 120, "naics_s15": 0, "naics_s16": 41, "naics_s17": 0, "naics_s18": 36, "naics_s19": 36, "naics_s20": 0, "race1": 972, "race2": 146, "race3": 10, "race4": 86, "race5": 1, "race6": 19, "ethnicity1": 684, "ethnicity2": 550, "edu1": 312, "edu2": 256, "edu3": 269, "edu4": 216, "Shape_Length": 29874.402815424684, "Shape_Area": 40105281.249313474, "total_2021": 1065, "total_2022": 1234 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.347589998062062, 29.766591199224049 ], [ -95.347684998145013, 29.766517198760347 ], [ -95.347504997522464, 29.766478198784945 ], [ -95.347482997358028, 29.766473199513939 ], [ -95.347430998270553, 29.766460199100912 ], [ -95.347223997899547, 29.766394198699654 ], [ -95.34705799819973, 29.766306199174284 ], [ -95.346896997205889, 29.766221198976147 ], [ -95.346786997701599, 29.766164198826111 ], [ -95.34676499780447, 29.766115198764272 ], [ -95.346716997627979, 29.766005198684329 ], [ -95.346667998089899, 29.765895199317903 ], [ -95.346635998058971, 29.765716199272806 ], [ -95.346610997814665, 29.76557519931584 ], [ -95.346619997767888, 29.765318198859706 ], [ -95.34666999755413, 29.763888198452882 ], [ -95.346612997552796, 29.762631198272366 ], [ -95.346573997627317, 29.762528198062672 ], [ -95.346457997435792, 29.762405198412321 ], [ -95.346363996934869, 29.762306198462543 ], [ -95.345849997521398, 29.762008198366132 ], [ -95.345446997077445, 29.761979198573332 ], [ -95.345151996842262, 29.761957198180649 ], [ -95.343890996529765, 29.762149198728352 ], [ -95.343437996916165, 29.762163198619191 ], [ -95.343296996489755, 29.762138198552169 ], [ -95.34266799692503, 29.762029198646385 ], [ -95.341482996388166, 29.761521198041834 ], [ -95.341015995697035, 29.761373198223797 ], [ -95.340646996390888, 29.761340198188648 ], [ -95.340450995517358, 29.761370198574259 ], [ -95.339866995996545, 29.761460198150949 ], [ -95.338575995041253, 29.762098198836913 ], [ -95.33793399557311, 29.762220198292795 ], [ -95.337647995375193, 29.762191198715673 ], [ -95.337304994621107, 29.762099198170819 ], [ -95.336029994419945, 29.761757198886929 ], [ -95.335503994864354, 29.761728198928033 ], [ -95.334627994362748, 29.761681198669251 ], [ -95.333943994082077, 29.761542198846772 ], [ -95.333826994350545, 29.761482198738982 ], [ -95.333548994184028, 29.761340198417688 ], [ -95.333482993664319, 29.761216198252267 ], [ -95.333377993875644, 29.761017198182653 ], [ -95.333386994475148, 29.760880198136338 ], [ -95.333465994101942, 29.759687197919934 ], [ -95.333465994190249, 29.759291197802373 ], [ -95.333412994125723, 29.759081197869506 ], [ -95.333279993907269, 29.758817197831085 ], [ -95.333109994115489, 29.758613197838802 ], [ -95.332871993771036, 29.758470198004545 ], [ -95.332565993523744, 29.758363198383957 ], [ -95.332241993744304, 29.758414198109005 ], [ -95.331933993498254, 29.758517197715804 ], [ -95.331554993244112, 29.758735198109338 ], [ -95.331384993551879, 29.758858198399139 ], [ -95.330472993578326, 29.759514198056962 ], [ -95.329920993104622, 29.759729198251659 ], [ -95.329643993201486, 29.759837198649677 ], [ -95.3288739928703, 29.759843198413442 ], [ -95.327745992639763, 29.759851198863998 ], [ -95.326217992079663, 29.759930198197758 ], [ -95.325728991517522, 29.759904198653171 ], [ -95.325494992380015, 29.759832198787812 ], [ -95.325186992238599, 29.759652198303918 ], [ -95.325114991703714, 29.759588198871157 ], [ -95.324581992048905, 29.759111198526206 ], [ -95.323666991347096, 29.757911198182178 ], [ -95.322982991059021, 29.757336198008797 ], [ -95.322474990839623, 29.757096198446032 ], [ -95.321761991333588, 29.756890197964648 ], [ -95.321336990966074, 29.756768197653223 ], [ -95.320523990952779, 29.756413198198818 ], [ -95.320140990526653, 29.756177197930331 ], [ -95.320052990707765, 29.756123198353933 ], [ -95.320044990287201, 29.75613519819829 ], [ -95.319893990642129, 29.75636419774154 ], [ -95.319340990200558, 29.757202198186288 ], [ -95.318960989642406, 29.757675198192288 ], [ -95.318108990144523, 29.759062198635416 ], [ -95.317310989974416, 29.760474198996121 ], [ -95.316639990158407, 29.761647199115512 ], [ -95.315486989560654, 29.763632199373269 ], [ -95.315488989523956, 29.764644199566707 ], [ -95.315486990015486, 29.764683199876469 ], [ -95.315466989744976, 29.764992200056582 ], [ -95.315458990043595, 29.765337199519021 ], [ -95.315438989396725, 29.766199200167268 ], [ -95.315424989945967, 29.767647200841456 ], [ -95.315427989542087, 29.767834200801033 ], [ -95.315424990034998, 29.769199200586623 ], [ -95.31543398929773, 29.769359201157606 ], [ -95.315422989722521, 29.769821201278379 ], [ -95.315423989439438, 29.77041420099528 ], [ -95.315420990282107, 29.771032201329128 ], [ -95.315420990059465, 29.771632201590286 ], [ -95.315510989614509, 29.771721201268697 ], [ -95.315532989607277, 29.772185201517992 ], [ -95.315547989940427, 29.77264720118955 ], [ -95.315579990014484, 29.773867201302867 ], [ -95.315587990031702, 29.774205201743403 ], [ -95.315597989743466, 29.774424201385603 ], [ -95.317477990138585, 29.774420201346 ], [ -95.320301991059821, 29.774415201384752 ], [ -95.321192991261341, 29.774384202034469 ], [ -95.321844991621589, 29.77432520153307 ], [ -95.322417992029841, 29.774245201103479 ], [ -95.322944992047582, 29.774162201153551 ], [ -95.323545992046576, 29.773980201064429 ], [ -95.324109991926392, 29.773792201583262 ], [ -95.32483099213826, 29.773531201371142 ], [ -95.326419993123153, 29.772913201227457 ], [ -95.32708999332543, 29.772652201059536 ], [ -95.327910993275964, 29.772362200881997 ], [ -95.328272993144111, 29.772229201242805 ], [ -95.328575992991915, 29.772118200905489 ], [ -95.328656992853738, 29.772088200878436 ], [ -95.328813993728602, 29.772032200690429 ], [ -95.329261992975617, 29.771872201215245 ], [ -95.3295999932174, 29.771722200488465 ], [ -95.331238993406799, 29.77109920060327 ], [ -95.331417993695339, 29.771031200196266 ], [ -95.333796994670138, 29.77011720032867 ], [ -95.335329994622853, 29.769471200453925 ], [ -95.33572299530573, 29.769318199740042 ], [ -95.335896995421194, 29.769273200377881 ], [ -95.336246994598881, 29.76919519979867 ], [ -95.336555995481021, 29.769181199908573 ], [ -95.33724999518499, 29.769136199977297 ], [ -95.337716995891256, 29.769111200243596 ], [ -95.338629996184125, 29.769061199825039 ], [ -95.339507995926198, 29.769169200319535 ], [ -95.339529996388421, 29.769171199515583 ], [ -95.340048996343228, 29.769282200357175 ], [ -95.340552996564185, 29.769441199802834 ], [ -95.34067099599433, 29.769485200238197 ], [ -95.340805995820546, 29.769550199645764 ], [ -95.340840996409469, 29.769557199652397 ], [ -95.341031996472836, 29.769608200191435 ], [ -95.341170996716613, 29.769646200333316 ], [ -95.3413049962668, 29.769481200222828 ], [ -95.341408996315991, 29.769366199527955 ], [ -95.341492995940143, 29.769274199803338 ], [ -95.341608996806812, 29.769169199614272 ], [ -95.341744996858168, 29.769066199492464 ], [ -95.341958996059788, 29.768908200200542 ], [ -95.342265996699965, 29.768726199682011 ], [ -95.342508996266105, 29.768617200058799 ], [ -95.34260399673704, 29.768563199966788 ], [ -95.343254996817279, 29.768289199329669 ], [ -95.343687996887965, 29.768150199727192 ], [ -95.343775996728084, 29.768118199976382 ], [ -95.343887996598184, 29.768082199899595 ], [ -95.343992997208844, 29.768038199768537 ], [ -95.344659996981477, 29.767803199188631 ], [ -95.344798996927821, 29.767764199611275 ], [ -95.345062996813354, 29.767664199225617 ], [ -95.346506997296629, 29.767142199141286 ], [ -95.346551997178295, 29.767123198975938 ], [ -95.346814997514613, 29.767016199347303 ], [ -95.347062997607409, 29.766902199010367 ], [ -95.347287997393607, 29.766788199536489 ], [ -95.347411997808209, 29.766710199286418 ], [ -95.347589998062062, 29.766591199224049 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1186, "Tract": "48201232600", "Area_SqMi": 2.363053258531695, "total_2009": 4205, "total_2010": 3684, "total_2011": 3752, "total_2012": 4369, "total_2013": 4359, "total_2014": 4897, "total_2015": 4995, "total_2016": 4701, "total_2017": 4018, "total_2018": 4046, "total_2019": 4250, "total_2020": 4129, "age1": 1064, "age2": 2953, "age3": 1256, "earn1": 816, "earn2": 1283, "earn3": 3174, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 60, "naics_s05": 443, "naics_s06": 787, "naics_s07": 102, "naics_s08": 1825, "naics_s09": 75, "naics_s10": 28, "naics_s11": 263, "naics_s12": 332, "naics_s13": 0, "naics_s14": 337, "naics_s15": 88, "naics_s16": 347, "naics_s17": 4, "naics_s18": 544, "naics_s19": 38, "naics_s20": 0, "race1": 3507, "race2": 1422, "race3": 41, "race4": 228, "race5": 7, "race6": 68, "ethnicity1": 3428, "ethnicity2": 1845, "edu1": 1045, "edu2": 1245, "edu3": 1286, "edu4": 633, "Shape_Length": 36755.420210223754, "Shape_Area": 65877880.441791289, "total_2021": 4937, "total_2022": 5273 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.268025979101623, 29.791811207151607 ], [ -95.267960978093953, 29.791676207301325 ], [ -95.267912978478904, 29.791577206800422 ], [ -95.267641978442654, 29.791019207165448 ], [ -95.267225978299422, 29.790161206690957 ], [ -95.266959978747352, 29.789475206703429 ], [ -95.266571977864558, 29.788571206212868 ], [ -95.266108978298291, 29.787365205951602 ], [ -95.265588977680736, 29.786012206109081 ], [ -95.264953977115837, 29.784523205350325 ], [ -95.264899977736633, 29.784393205856137 ], [ -95.264703977688754, 29.783936205507413 ], [ -95.264067977078611, 29.782315205515584 ], [ -95.263865976707933, 29.781736205071333 ], [ -95.263793977213965, 29.781528204781274 ], [ -95.263670976597311, 29.781185204787953 ], [ -95.263544977112986, 29.780691205271925 ], [ -95.263466977081663, 29.780205204720176 ], [ -95.263426976664519, 29.779599204995908 ], [ -95.263462976930214, 29.779007204399115 ], [ -95.263491976628359, 29.77861720425096 ], [ -95.263555976571524, 29.778228204256724 ], [ -95.263738976507639, 29.777358204545216 ], [ -95.264041977053822, 29.77592120342532 ], [ -95.264053976512329, 29.775867204230238 ], [ -95.264083977155778, 29.775726203865656 ], [ -95.263973976810163, 29.775707203973113 ], [ -95.263948977105997, 29.775713204074311 ], [ -95.263911976976999, 29.775698203471748 ], [ -95.263482976723225, 29.775626204214543 ], [ -95.262022975935452, 29.775388203639732 ], [ -95.258775975775535, 29.774860203946133 ], [ -95.257701974863679, 29.774685204070451 ], [ -95.255061974513069, 29.77425520340142 ], [ -95.254698974819377, 29.774198203829435 ], [ -95.253730974562544, 29.774045203504237 ], [ -95.252833974298539, 29.773914203999453 ], [ -95.252148973874924, 29.773844203481453 ], [ -95.251521973458367, 29.773803204050971 ], [ -95.251307973803819, 29.773798203729932 ], [ -95.251238973361353, 29.773796204049226 ], [ -95.250533973320046, 29.773779204220048 ], [ -95.250390973747045, 29.773775204079033 ], [ -95.250318973557313, 29.773777203770489 ], [ -95.250233973353318, 29.773771203795683 ], [ -95.247559972879571, 29.773762204285916 ], [ -95.247374972522564, 29.773764203966195 ], [ -95.24714597202761, 29.773767203570646 ], [ -95.24485997236583, 29.773803203898954 ], [ -95.24167997111482, 29.773837204091929 ], [ -95.240474970616319, 29.773850204659407 ], [ -95.237571969819996, 29.773882203980371 ], [ -95.236707970028135, 29.773890204379047 ], [ -95.236161969309634, 29.773861204515782 ], [ -95.235789969646888, 29.773811204336756 ], [ -95.235249969209249, 29.773725204255502 ], [ -95.23312796844823, 29.773253204184499 ], [ -95.232909968701065, 29.773206203953251 ], [ -95.23271096857043, 29.773162204552555 ], [ -95.231152968171884, 29.772824204143546 ], [ -95.227978967568944, 29.772121204729597 ], [ -95.227986967069938, 29.772137204547739 ], [ -95.228060967842154, 29.772416204564049 ], [ -95.228081967884634, 29.772495204004542 ], [ -95.228131967547498, 29.772588204487036 ], [ -95.228283967431906, 29.772814204233789 ], [ -95.228327967990097, 29.772918204859351 ], [ -95.228346967120615, 29.773012204020116 ], [ -95.228384967711065, 29.773094204905465 ], [ -95.228441967459815, 29.773578204469452 ], [ -95.228516967878619, 29.773792204563048 ], [ -95.228403967311323, 29.774216204269155 ], [ -95.228409967604222, 29.77441420471197 ], [ -95.228428967504726, 29.774502204505595 ], [ -95.228542967869203, 29.774716204426088 ], [ -95.228886967884733, 29.775092205061704 ], [ -95.22909196775953, 29.775315204977499 ], [ -95.229318968069435, 29.77554120487854 ], [ -95.22974096818686, 29.7761182049342 ], [ -95.229967967915314, 29.776349205419141 ], [ -95.230118968073526, 29.776437205411575 ], [ -95.230301968409378, 29.776486205280865 ], [ -95.230471968337994, 29.776546205071504 ], [ -95.230698968609943, 29.776541205113261 ], [ -95.230900968693092, 29.776552205143002 ], [ -95.231032968732805, 29.776574205262008 ], [ -95.231133968393621, 29.776651204910632 ], [ -95.231247968638684, 29.776876205132144 ], [ -95.231379968685815, 29.77698620512307 ], [ -95.231480968819127, 29.777035205573178 ], [ -95.231587968260428, 29.777052205264052 ], [ -95.231858968257427, 29.777134204787927 ], [ -95.231934968938404, 29.777261205306587 ], [ -95.232041968963941, 29.777569204875967 ], [ -95.23223196877052, 29.777992205071463 ], [ -95.232231968334887, 29.778118205112722 ], [ -95.232269969128367, 29.778228205354257 ], [ -95.232514968494215, 29.778465205451127 ], [ -95.232603969299348, 29.77851420525942 ], [ -95.23265396891118, 29.778591205226022 ], [ -95.232735969086008, 29.778767205131523 ], [ -95.232760969010457, 29.778921205396838 ], [ -95.232855968916951, 29.77910820527412 ], [ -95.232906969438091, 29.779168205716733 ], [ -95.232981969569295, 29.779306205589879 ], [ -95.233032969066514, 29.779421205350157 ], [ -95.233082969040439, 29.779487205786918 ], [ -95.233183968930774, 29.779564205514184 ], [ -95.233341968681287, 29.779646205832528 ], [ -95.233454969152575, 29.779674205838095 ], [ -95.23348696952101, 29.779663205872815 ], [ -95.233612968890469, 29.779729205319228 ], [ -95.23363196905035, 29.779756205398211 ], [ -95.233618969410259, 29.779844205758032 ], [ -95.233524969711112, 29.780026205708786 ], [ -95.233524968895551, 29.780075205761552 ], [ -95.233536969036237, 29.780119205455136 ], [ -95.233593969728602, 29.780229205676427 ], [ -95.233782969054815, 29.780477205632117 ], [ -95.233745969421662, 29.780581206107886 ], [ -95.233782968885293, 29.780697205825469 ], [ -95.233833969127019, 29.780752205817919 ], [ -95.233991969643242, 29.780845205531559 ], [ -95.234381969000808, 29.781125205810582 ], [ -95.234735969648369, 29.781461205857532 ], [ -95.2349879697407, 29.781878206023908 ], [ -95.235107970086617, 29.781994206211838 ], [ -95.235208969785688, 29.7820712060456 ], [ -95.235372969380165, 29.782137205955522 ], [ -95.235472970342698, 29.782164206205714 ], [ -95.235573969810758, 29.78223020641946 ], [ -95.235592969818214, 29.782290205940789 ], [ -95.235586969477566, 29.782428206397299 ], [ -95.235498969751603, 29.782543205759627 ], [ -95.235372969354401, 29.782637206174062 ], [ -95.235309969525545, 29.782725205789557 ], [ -95.235277970062938, 29.782796206465267 ], [ -95.235258970333945, 29.782868205991857 ], [ -95.235246969477814, 29.782978206019969 ], [ -95.235221969427243, 29.783049206509471 ], [ -95.235214969993038, 29.783132206640087 ], [ -95.23518396933477, 29.783247206450568 ], [ -95.235170969588125, 29.783335205941963 ], [ -95.235120969583377, 29.783429206158949 ], [ -95.235070969817528, 29.78348420639594 ], [ -95.234944970110902, 29.783594206687493 ], [ -95.234868970212517, 29.783643206516146 ], [ -95.234843969572069, 29.783698206675371 ], [ -95.234843969279424, 29.783759206177393 ], [ -95.234893969485526, 29.783819206469914 ], [ -95.235108969520468, 29.784006206479834 ], [ -95.235164970153974, 29.784039206858004 ], [ -95.235265970305122, 29.784050206140609 ], [ -95.235391970237004, 29.78399520666213 ], [ -95.235454969597413, 29.783940206764285 ], [ -95.235606970156326, 29.783863206689478 ], [ -95.235763969626646, 29.78385220644158 ], [ -95.235877970513187, 29.783885206158768 ], [ -95.236060970197869, 29.784000206120357 ], [ -95.236230970410546, 29.784132206764522 ], [ -95.236362969999149, 29.784193206630142 ], [ -95.236400969924503, 29.784237206707896 ], [ -95.236476970439256, 29.784297206214283 ], [ -95.236507970511227, 29.7843462064988 ], [ -95.236514970325615, 29.784506206774402 ], [ -95.236482970436754, 29.784566206564023 ], [ -95.23635097056858, 29.784654206216885 ], [ -95.236255969833906, 29.784792206832325 ], [ -95.236249970431942, 29.784874206871219 ], [ -95.23629396999128, 29.784946206369927 ], [ -95.236356970251222, 29.785006206435455 ], [ -95.236476970083913, 29.785023206823883 ], [ -95.23681697031968, 29.785012206732276 ], [ -95.237018970636683, 29.785028206977721 ], [ -95.237289970600926, 29.785138206970178 ], [ -95.237535970792266, 29.785209206958882 ], [ -95.237825970559257, 29.785325206814051 ], [ -95.23785797087001, 29.785336207104301 ], [ -95.23793997017961, 29.78539120709241 ], [ -95.237995970833154, 29.785479206362954 ], [ -95.238002971048843, 29.785693206400275 ], [ -95.238084971189906, 29.785902206482778 ], [ -95.23815397072363, 29.785995206746104 ], [ -95.238172971084666, 29.786050206676009 ], [ -95.238172970426106, 29.786226207225081 ], [ -95.238135971105223, 29.786358206575759 ], [ -95.238103970794597, 29.786430207084557 ], [ -95.238053970991004, 29.786490206586809 ], [ -95.237977970840177, 29.786523207031035 ], [ -95.237857970203123, 29.786606207341194 ], [ -95.237775970772745, 29.786710206606177 ], [ -95.23776997094545, 29.786765207108903 ], [ -95.237794970361207, 29.786974206815231 ], [ -95.237914970310854, 29.787260207094551 ], [ -95.238034970332208, 29.78760120732623 ], [ -95.238432971152548, 29.788090206846295 ], [ -95.238507970881599, 29.788167207109147 ], [ -95.238602970681171, 29.788244207132028 ], [ -95.238715970573821, 29.788222207654023 ], [ -95.238778970466427, 29.788183207359573 ], [ -95.238905971292198, 29.788145206848974 ], [ -95.238980970492577, 29.788145207254903 ], [ -95.239024971109274, 29.7881782076579 ], [ -95.239106971040911, 29.788271207414969 ], [ -95.239239971194763, 29.788667207386979 ], [ -95.239239971246278, 29.788733207645876 ], [ -95.239264971073979, 29.788816207455469 ], [ -95.239296970637355, 29.788871207203275 ], [ -95.239466971332348, 29.789024207039493 ], [ -95.239479970871102, 29.789096207515147 ], [ -95.239481970841368, 29.789152206994071 ], [ -95.239486970837419, 29.789355207191228 ], [ -95.239491970759701, 29.789536207896482 ], [ -95.239567971577983, 29.79004720772997 ], [ -95.239668971656485, 29.790272207960552 ], [ -95.239675971787648, 29.790492207687681 ], [ -95.239574971224613, 29.790745207371572 ], [ -95.239581970813418, 29.790839207730603 ], [ -95.239896971237997, 29.791125207891891 ], [ -95.240236971413623, 29.79163020785272 ], [ -95.24053997128054, 29.792004207829567 ], [ -95.241517971783125, 29.792675208063233 ], [ -95.24225597245885, 29.793208207915747 ], [ -95.242765971926318, 29.793543208602753 ], [ -95.243276972819956, 29.793735207872373 ], [ -95.243591972824575, 29.793790208664408 ], [ -95.243907972467994, 29.793817208238625 ], [ -95.244115972324252, 29.793861207878265 ], [ -95.244222972727115, 29.793932208337345 ], [ -95.24487897319348, 29.794218208049202 ], [ -95.245035972838977, 29.794317208073466 ], [ -95.245168972782466, 29.794421208090569 ], [ -95.245218973177899, 29.794482208727761 ], [ -95.245250973288734, 29.794553207887986 ], [ -95.245285973429532, 29.794953208005538 ], [ -95.246196973503629, 29.79494020803067 ], [ -95.247284973170267, 29.794897208125974 ], [ -95.24943797346242, 29.794479208015947 ], [ -95.250339974203101, 29.794300208450352 ], [ -95.253684975330714, 29.793647207439648 ], [ -95.254245974739192, 29.793522207845069 ], [ -95.257691975591882, 29.792835207562121 ], [ -95.258756976540965, 29.792637207892039 ], [ -95.25890697666452, 29.792608207415309 ], [ -95.260969976547827, 29.792212207239157 ], [ -95.261602976869568, 29.792104207358644 ], [ -95.262278976766183, 29.792059206815495 ], [ -95.264436977600454, 29.791997207269254 ], [ -95.266552978711474, 29.791886207015281 ], [ -95.267394978357501, 29.791879207352334 ], [ -95.267810978115179, 29.791834206724545 ], [ -95.268025979101623, 29.791811207151607 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1187, "Tract": "48201413000", "Area_SqMi": 0.62180905647596207, "total_2009": 518, "total_2010": 548, "total_2011": 627, "total_2012": 464, "total_2013": 586, "total_2014": 573, "total_2015": 595, "total_2016": 600, "total_2017": 659, "total_2018": 567, "total_2019": 689, "total_2020": 730, "age1": 184, "age2": 512, "age3": 184, "earn1": 139, "earn2": 190, "earn3": 551, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 9, "naics_s05": 1, "naics_s06": 14, "naics_s07": 28, "naics_s08": 3, "naics_s09": 0, "naics_s10": 261, "naics_s11": 63, "naics_s12": 107, "naics_s13": 0, "naics_s14": 8, "naics_s15": 37, "naics_s16": 207, "naics_s17": 4, "naics_s18": 12, "naics_s19": 122, "naics_s20": 0, "race1": 533, "race2": 231, "race3": 7, "race4": 95, "race5": 0, "race6": 14, "ethnicity1": 642, "ethnicity2": 238, "edu1": 147, "edu2": 141, "edu3": 201, "edu4": 207, "Shape_Length": 20237.361014060818, "Shape_Area": 17334972.257713523, "total_2021": 533, "total_2022": 880 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.447397021143274, 29.70592318296384 ], [ -95.447353021137118, 29.704227182688808 ], [ -95.447341020302062, 29.7033161830796 ], [ -95.447328020745402, 29.701926182424209 ], [ -95.447294020507769, 29.701286182732616 ], [ -95.447282020792002, 29.700584182257014 ], [ -95.447264020647651, 29.699865182377653 ], [ -95.447252020620709, 29.699173182224452 ], [ -95.44722802088252, 29.698465181615749 ], [ -95.447210020171369, 29.697778181617551 ], [ -95.44719302014181, 29.697075181243523 ], [ -95.447187020487007, 29.696362181315706 ], [ -95.447181020608468, 29.69567518157945 ], [ -95.447170020143744, 29.695263181057477 ], [ -95.447163020324453, 29.694972181343008 ], [ -95.447141020022499, 29.694340181316619 ], [ -95.44713902009353, 29.69426418078918 ], [ -95.447127020140059, 29.693562180761081 ], [ -95.447126020333101, 29.693511180771203 ], [ -95.447121020163834, 29.692885180222461 ], [ -95.447119019686625, 29.692652180991168 ], [ -95.447115020526937, 29.692167180536622 ], [ -95.447109020379415, 29.691815180635608 ], [ -95.447103019611873, 29.691464179934737 ], [ -95.44709101972542, 29.690976180514131 ], [ -95.447086019576261, 29.690756180287721 ], [ -95.447061020382435, 29.68996217984596 ], [ -95.447022019682123, 29.68742117932414 ], [ -95.447020019584428, 29.687317179755976 ], [ -95.446790020069798, 29.687331179832103 ], [ -95.446433019393368, 29.687413179258961 ], [ -95.446113020005697, 29.687573179811221 ], [ -95.442784019229762, 29.690587180532141 ], [ -95.44256901887357, 29.690753180226306 ], [ -95.442173018269159, 29.690941180604415 ], [ -95.441449018717577, 29.691066180776648 ], [ -95.440881018388865, 29.69099818031123 ], [ -95.4400760180406, 29.690642180676363 ], [ -95.440077017901189, 29.690747180184935 ], [ -95.440078018446059, 29.690765180686096 ], [ -95.4400920184341, 29.691119180701453 ], [ -95.440086017902985, 29.69166718082721 ], [ -95.439046017704555, 29.691670180620516 ], [ -95.439057017594649, 29.691499180378838 ], [ -95.439056018337311, 29.691036180467322 ], [ -95.439056017764656, 29.690786180513268 ], [ -95.438950017580623, 29.690671180810188 ], [ -95.438659018012231, 29.690527180361279 ], [ -95.438443017597777, 29.690488180176494 ], [ -95.43818501761146, 29.690567180234947 ], [ -95.437212017873961, 29.690989180439814 ], [ -95.436077017622594, 29.691553180912997 ], [ -95.435904017119981, 29.691811181252827 ], [ -95.435943016860449, 29.691969180529757 ], [ -95.436127016832629, 29.692220181052914 ], [ -95.436537017545575, 29.692867181372204 ], [ -95.436799017895567, 29.693457181479907 ], [ -95.437083017265039, 29.694304181347785 ], [ -95.437237017156278, 29.695140181644966 ], [ -95.437320017304231, 29.695991181470259 ], [ -95.437302017608303, 29.696853181991493 ], [ -95.437177017386873, 29.697699181905776 ], [ -95.43712501786959, 29.698539182180056 ], [ -95.43714901762867, 29.699404182534838 ], [ -95.437139017698897, 29.700142182097828 ], [ -95.437141017428658, 29.700255182192681 ], [ -95.437158017847736, 29.70110718259528 ], [ -95.437166018234763, 29.701968183033241 ], [ -95.437171018120637, 29.702816182704954 ], [ -95.437179017873021, 29.703736183585775 ], [ -95.437174018423093, 29.704584183123533 ], [ -95.440164019245003, 29.704563183499491 ], [ -95.440166018978843, 29.704645183154945 ], [ -95.442788019281025, 29.704615182832196 ], [ -95.442881019398996, 29.70461118276743 ], [ -95.443098019858581, 29.704616183623617 ], [ -95.443326019620272, 29.704614183633424 ], [ -95.443538019432978, 29.704611183361717 ], [ -95.443758020067676, 29.704608183087981 ], [ -95.443809019505863, 29.704608183353976 ], [ -95.443978019934505, 29.704606183485655 ], [ -95.444199020379642, 29.704603182859049 ], [ -95.444351020260726, 29.704601183366645 ], [ -95.444419019881849, 29.704600183275996 ], [ -95.444642019937945, 29.704597183556434 ], [ -95.444860020189566, 29.7045891826812 ], [ -95.445097019996894, 29.704592182849407 ], [ -95.445266020310982, 29.704590183159841 ], [ -95.445303020518963, 29.704589183017372 ], [ -95.445395020168931, 29.704590183386479 ], [ -95.445521020552263, 29.704587182863641 ], [ -95.44560802031836, 29.704586182774246 ], [ -95.445701020182867, 29.704585183003068 ], [ -95.445744020484767, 29.704584183113322 ], [ -95.446000020499611, 29.70458118316537 ], [ -95.446167020707364, 29.704581182817833 ], [ -95.446195020550064, 29.705757183557271 ], [ -95.446194019953879, 29.705939183266263 ], [ -95.446431020106729, 29.705940183408014 ], [ -95.446844020718927, 29.705933182988872 ], [ -95.447150020418164, 29.705931183241756 ], [ -95.447254020947398, 29.705927183091994 ], [ -95.447277020472455, 29.705926182876219 ], [ -95.447397021143274, 29.70592318296384 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1188, "Tract": "48201420800", "Area_SqMi": 0.81717462017786235, "total_2009": 1991, "total_2010": 2235, "total_2011": 2425, "total_2012": 2821, "total_2013": 2804, "total_2014": 2599, "total_2015": 2827, "total_2016": 2803, "total_2017": 2780, "total_2018": 2292, "total_2019": 2338, "total_2020": 2082, "age1": 846, "age2": 894, "age3": 378, "earn1": 755, "earn2": 849, "earn3": 514, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 2, "naics_s07": 1052, "naics_s08": 0, "naics_s09": 39, "naics_s10": 20, "naics_s11": 1, "naics_s12": 132, "naics_s13": 0, "naics_s14": 24, "naics_s15": 17, "naics_s16": 125, "naics_s17": 0, "naics_s18": 593, "naics_s19": 108, "naics_s20": 0, "race1": 1484, "race2": 388, "race3": 22, "race4": 168, "race5": 1, "race6": 55, "ethnicity1": 1272, "ethnicity2": 846, "edu1": 332, "edu2": 321, "edu3": 349, "edu4": 270, "Shape_Length": 19121.924248490082, "Shape_Area": 22781429.802218471, "total_2021": 1965, "total_2022": 2118 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.477067027531447, 29.686553178728733 ], [ -95.477066027367655, 29.686143178164585 ], [ -95.477065027118343, 29.685762178192658 ], [ -95.477052027626499, 29.685340177808396 ], [ -95.477040027779978, 29.684968177613303 ], [ -95.477030027807899, 29.684168177973692 ], [ -95.477027027823311, 29.683286177873082 ], [ -95.47701702733174, 29.682768177886757 ], [ -95.477012027299239, 29.682485177946351 ], [ -95.477003027763885, 29.681985177052653 ], [ -95.476997027041648, 29.681684176951414 ], [ -95.476984027535565, 29.681026177345156 ], [ -95.47698102753381, 29.680812176910532 ], [ -95.47696602716087, 29.679981177431433 ], [ -95.47694402725412, 29.679068176405792 ], [ -95.476917027344683, 29.677968176486189 ], [ -95.476888027322545, 29.67748517656559 ], [ -95.476882026662366, 29.677394176638561 ], [ -95.476623027156435, 29.677458176580693 ], [ -95.476430027443314, 29.677485176196146 ], [ -95.468887024949879, 29.678529176947439 ], [ -95.467816024820308, 29.678707176751736 ], [ -95.467583024390095, 29.678746177196309 ], [ -95.467357024715071, 29.678792177062796 ], [ -95.46381302416367, 29.67950617773171 ], [ -95.462858023359985, 29.679699177643034 ], [ -95.462624023392436, 29.67974717701572 ], [ -95.462143022903675, 29.679944177642057 ], [ -95.461627023365935, 29.680237177918734 ], [ -95.460677022987042, 29.681055177566758 ], [ -95.45998102339243, 29.681356177944124 ], [ -95.459537022272585, 29.681435177444225 ], [ -95.459406022525414, 29.681432178243519 ], [ -95.459208022793604, 29.681427177817934 ], [ -95.459059022893584, 29.681402178221074 ], [ -95.459060022440156, 29.681509177618977 ], [ -95.459063022676943, 29.682010177946744 ], [ -95.459068022871875, 29.682901178423837 ], [ -95.459056022719224, 29.683646178153229 ], [ -95.459052022873919, 29.68477817893654 ], [ -95.459051022546234, 29.685087178492722 ], [ -95.459101022375833, 29.686626178932855 ], [ -95.459065023194213, 29.688824179080715 ], [ -95.459076023107585, 29.689021179136219 ], [ -95.459082022834522, 29.689241179490335 ], [ -95.459086023210332, 29.689365179337738 ], [ -95.459103023506628, 29.689937179492162 ], [ -95.459107022990523, 29.690088179731632 ], [ -95.459457023191476, 29.690080179307419 ], [ -95.459881023688197, 29.690076179843064 ], [ -95.460189023136351, 29.690073179914908 ], [ -95.460490023686319, 29.690068179923241 ], [ -95.460900023022845, 29.690064179935412 ], [ -95.461357023160062, 29.690061179779814 ], [ -95.461719023298784, 29.690057179752522 ], [ -95.462205023920831, 29.690052179970852 ], [ -95.462520024075388, 29.690049179116997 ], [ -95.462835023654762, 29.69004517916381 ], [ -95.463161024509361, 29.690042179447751 ], [ -95.463464023954771, 29.690039179838948 ], [ -95.463793024278601, 29.690045179710499 ], [ -95.464094024336333, 29.690032179450313 ], [ -95.464409024186224, 29.690029179564998 ], [ -95.464734024614188, 29.690025179246827 ], [ -95.46505902492666, 29.690013179657686 ], [ -95.465254025122505, 29.69001117921562 ], [ -95.465462024466675, 29.690011179808273 ], [ -95.465671025077242, 29.690010179278033 ], [ -95.465886024356067, 29.690010179830839 ], [ -95.466100024976328, 29.690010179859563 ], [ -95.466312025126157, 29.690008179714752 ], [ -95.466524024737282, 29.690005179072294 ], [ -95.466748025358157, 29.690003178978987 ], [ -95.466946025514986, 29.690001179410544 ], [ -95.467158025567073, 29.689999179730371 ], [ -95.467395024815772, 29.689998179545825 ], [ -95.467590024940918, 29.690000179002361 ], [ -95.467727024981784, 29.690002179092783 ], [ -95.46788002578225, 29.690001179130146 ], [ -95.468091025029494, 29.689999179556718 ], [ -95.468297025780942, 29.689997179603669 ], [ -95.468502025250487, 29.689994178956155 ], [ -95.468707025780276, 29.689993179220931 ], [ -95.468911026029858, 29.689991179726416 ], [ -95.469116025993827, 29.689989179203092 ], [ -95.469321025443449, 29.68998817940275 ], [ -95.469526025362185, 29.689986179153781 ], [ -95.469764025596405, 29.689984179359676 ], [ -95.469934026294695, 29.68998317932515 ], [ -95.470140025851308, 29.689981179215884 ], [ -95.470371026096132, 29.689979178859698 ], [ -95.470550025495868, 29.689977179504584 ], [ -95.470755025877835, 29.689976179340395 ], [ -95.471003026073717, 29.689974179140979 ], [ -95.471178025624226, 29.689972179142632 ], [ -95.471383026369395, 29.689954179140969 ], [ -95.471571026253301, 29.689970179042387 ], [ -95.471800026356462, 29.689967179336207 ], [ -95.471876026776869, 29.689970179285481 ], [ -95.471986026642483, 29.689965179289342 ], [ -95.472204025928207, 29.689962178801395 ], [ -95.472410026131968, 29.689958179440417 ], [ -95.472615026216957, 29.689955178837977 ], [ -95.472818026253933, 29.689951179251274 ], [ -95.473024027005422, 29.689948179108015 ], [ -95.473229026989998, 29.689945179369584 ], [ -95.473434026364501, 29.689941179155245 ], [ -95.473638027034028, 29.689937179406268 ], [ -95.473842027256623, 29.689934179481504 ], [ -95.474048026848564, 29.689931179539855 ], [ -95.474253027164593, 29.689927179001071 ], [ -95.474467026745273, 29.689923179497331 ], [ -95.474661027241183, 29.689919179375945 ], [ -95.474864027032993, 29.689915179393875 ], [ -95.475068027532259, 29.689911179270606 ], [ -95.475275027503514, 29.689906179115006 ], [ -95.475478027214294, 29.689902179104148 ], [ -95.475679027115717, 29.689899178651089 ], [ -95.475914027749511, 29.689894178816978 ], [ -95.476095027249414, 29.689889179127469 ], [ -95.476242027874264, 29.689889178851036 ], [ -95.476247027195456, 29.689833178591428 ], [ -95.476295027687797, 29.689348178672674 ], [ -95.476391027359796, 29.689022178693776 ], [ -95.476734027632261, 29.68805717864392 ], [ -95.477008027495387, 29.687323178717012 ], [ -95.477042027643876, 29.687014178722375 ], [ -95.477067027531447, 29.686553178728733 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1189, "Tract": "48201251800", "Area_SqMi": 14.057875837713839, "total_2009": 372, "total_2010": 359, "total_2011": 371, "total_2012": 400, "total_2013": 432, "total_2014": 448, "total_2015": 467, "total_2016": 476, "total_2017": 474, "total_2018": 505, "total_2019": 464, "total_2020": 315, "age1": 45, "age2": 187, "age3": 69, "earn1": 16, "earn2": 41, "earn3": 244, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 71, "naics_s05": 172, "naics_s06": 33, "naics_s07": 0, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 250, "race2": 26, "race3": 7, "race4": 12, "race5": 1, "race6": 5, "ethnicity1": 205, "ethnicity2": 96, "edu1": 56, "edu2": 70, "edu3": 85, "edu4": 45, "Shape_Length": 96083.860440583769, "Shape_Area": 391909518.06050342, "total_2021": 284, "total_2022": 301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.063971932064149, 29.925102241464117 ], [ -95.063995931694961, 29.924982241117291 ], [ -95.063967932397347, 29.92487524109438 ], [ -95.063977932232021, 29.924759241649667 ], [ -95.063980931702076, 29.924566240808392 ], [ -95.063958931925228, 29.923086240941753 ], [ -95.06394593167802, 29.922632240347511 ], [ -95.063943932522363, 29.922545241051061 ], [ -95.063945932244536, 29.922146240281009 ], [ -95.063939931705448, 29.922013240363611 ], [ -95.063935932312859, 29.921473240811729 ], [ -95.063924931838542, 29.921219240036578 ], [ -95.063918931699476, 29.920628240564547 ], [ -95.063912931953226, 29.920429240678693 ], [ -95.063908932029136, 29.92023424061496 ], [ -95.063910932043342, 29.920103240032464 ], [ -95.063895931839738, 29.91997324022558 ], [ -95.063899932041394, 29.919838239761035 ], [ -95.063899932324574, 29.919555240011832 ], [ -95.063892932413751, 29.919414239828193 ], [ -95.063890931764234, 29.919114240396574 ], [ -95.063874931870416, 29.918316239878685 ], [ -95.063867932241934, 29.918151239569479 ], [ -95.063859932006267, 29.917760239823458 ], [ -95.063857931566361, 29.917604239787082 ], [ -95.063828931385387, 29.915959239557651 ], [ -95.063825931588241, 29.915855239045349 ], [ -95.063820931636144, 29.915611239659885 ], [ -95.063820931482226, 29.915233239311654 ], [ -95.063810932077473, 29.914831238904778 ], [ -95.063800931324181, 29.914621239207658 ], [ -95.063796931792709, 29.914560239255067 ], [ -95.063801932159734, 29.914434238930703 ], [ -95.063795931833155, 29.91390423900457 ], [ -95.063799932129299, 29.913862239029758 ], [ -95.063802931922467, 29.913785239078639 ], [ -95.063791931941637, 29.913533238918639 ], [ -95.06378893169159, 29.913250239027423 ], [ -95.056127929776878, 29.919233240364878 ], [ -95.055265929934833, 29.919876240482459 ], [ -95.053873929826196, 29.920914240573303 ], [ -95.052984929641937, 29.921577240786835 ], [ -95.047770927656899, 29.925663241497489 ], [ -95.044747927851262, 29.927930242452554 ], [ -95.041529926424886, 29.930343242947721 ], [ -95.03907692633247, 29.932248243264855 ], [ -95.033659925226232, 29.936456244797004 ], [ -95.031793924292288, 29.937794244899969 ], [ -95.028063923213139, 29.940708245434248 ], [ -95.025791923205048, 29.94234624640994 ], [ -95.02322692235856, 29.944363246351784 ], [ -95.011596920488259, 29.953230249298777 ], [ -95.007946918949543, 29.955987249543213 ], [ -95.006124918960694, 29.957363250125002 ], [ -95.000888917819466, 29.96140225046376 ], [ -95.000311917561689, 29.961848251021962 ], [ -94.997040917126554, 29.96437125140335 ], [ -94.989600915555172, 29.970119252692314 ], [ -94.986073913811424, 29.972904253930498 ], [ -94.985917914139421, 29.973017253326056 ], [ -94.985966914406404, 29.973073254072172 ], [ -94.985986914119962, 29.973091253355925 ], [ -94.987848914916526, 29.974519253757393 ], [ -94.988275914670112, 29.974712254250221 ], [ -94.989656915794725, 29.975338254153264 ], [ -94.989787915247206, 29.97539225381546 ], [ -94.989979915778619, 29.975498254434225 ], [ -94.990104915336275, 29.975546253976503 ], [ -94.992141915557994, 29.976463254034339 ], [ -94.992186915692884, 29.976485254550962 ], [ -94.99229091574658, 29.976530254714486 ], [ -94.992395915616143, 29.976582254383626 ], [ -94.992489916442835, 29.976629254231597 ], [ -94.992581916034737, 29.976670254517792 ], [ -94.992688915789259, 29.976704254208734 ], [ -94.992716916538626, 29.976716254429416 ], [ -94.992810916069686, 29.976710254666571 ], [ -94.99287691652259, 29.976714254414834 ], [ -94.99290491611346, 29.97672125450439 ], [ -94.99297991639547, 29.976754253910933 ], [ -94.993036915921266, 29.976793254382898 ], [ -94.993081916334219, 29.976845254029506 ], [ -94.993165916714261, 29.97691125469785 ], [ -94.99319791644848, 29.976945254688651 ], [ -94.993220916656853, 29.976960254205476 ], [ -94.993294916329958, 29.976985254531986 ], [ -94.993480916683239, 29.977088254429976 ], [ -94.993533916814172, 29.977110253953686 ], [ -94.993645916817073, 29.977138254657756 ], [ -94.993680916720379, 29.977152254450026 ], [ -94.993805916023405, 29.977207254448711 ], [ -94.993855916441149, 29.977225254752593 ], [ -94.994177917108161, 29.97739625466248 ], [ -94.994469917000202, 29.977498254685681 ], [ -94.994708916981949, 29.977581254710149 ], [ -94.995426916713257, 29.977831254170976 ], [ -94.995517916701644, 29.977906254310074 ], [ -94.995567916547301, 29.978032254665777 ], [ -94.995574917115036, 29.978209254338662 ], [ -94.995552916753979, 29.978284254373619 ], [ -94.995536916781134, 29.97834125479039 ], [ -94.995435917079888, 29.978555254364718 ], [ -94.995429917055276, 29.978638254629193 ], [ -94.995410916584589, 29.978682254243754 ], [ -94.995322917425511, 29.978775254600222 ], [ -94.995277916767918, 29.978891254385047 ], [ -94.995268917205735, 29.978980254788603 ], [ -94.995265916682413, 29.979023254732585 ], [ -94.995240916893394, 29.979072255089328 ], [ -94.995227917284311, 29.979166254493979 ], [ -94.995232917346726, 29.979229254921862 ], [ -94.995233916871271, 29.979248254946782 ], [ -94.995240916896179, 29.979287254483683 ], [ -94.995272916732503, 29.979452254460405 ], [ -94.995275916927923, 29.979461254474263 ], [ -94.995298916991274, 29.979516254880544 ], [ -94.995520916627626, 29.980070254589901 ], [ -94.99560791701974, 29.980287255213064 ], [ -94.995999917133602, 29.981360255358265 ], [ -94.99607591762809, 29.981519255070033 ], [ -94.996164917731704, 29.981739254861292 ], [ -94.996389917296057, 29.982293255205509 ], [ -94.996465917832253, 29.982481255569382 ], [ -94.996543917156529, 29.982674255018509 ], [ -94.996638917798222, 29.982987255794161 ], [ -94.996668917433325, 29.983055255741117 ], [ -94.996752917774174, 29.983241255656118 ], [ -94.996831917679017, 29.983417255300751 ], [ -94.996967917256455, 29.983718255182229 ], [ -94.997047917641424, 29.983955255326503 ], [ -94.997110917155752, 29.984139255914794 ], [ -94.997129917801814, 29.984195255986979 ], [ -94.997170917691051, 29.984317255302813 ], [ -94.997188918208707, 29.984365255640924 ], [ -94.997210917827999, 29.984422255906384 ], [ -94.997241917793048, 29.984503255429434 ], [ -94.997336918236769, 29.984747255976458 ], [ -94.997368918079133, 29.984829255655995 ], [ -94.997395917968916, 29.984899255699155 ], [ -94.997477917713155, 29.985112255457111 ], [ -94.997505917435873, 29.985183255665067 ], [ -94.997625917804584, 29.985494256214352 ], [ -94.997644917363388, 29.98554225554232 ], [ -94.997935917618847, 29.986264256462444 ], [ -94.998068917561184, 29.986610255883217 ], [ -94.998229917601066, 29.986971256374822 ], [ -94.998264918537529, 29.987050256138968 ], [ -94.998286918504363, 29.987122256241513 ], [ -94.998397918213897, 29.987479256104105 ], [ -94.998442918017147, 29.987584256180977 ], [ -94.998506917984628, 29.987734256645339 ], [ -94.998519918034887, 29.987765256200216 ], [ -94.99856091867251, 29.98786025615771 ], [ -94.998574918439814, 29.987892256792492 ], [ -94.99869591841383, 29.988176256283293 ], [ -94.998922917954019, 29.988705256498775 ], [ -94.998973918289465, 29.988804256147269 ], [ -94.99899291825669, 29.98882025647832 ], [ -94.999024917967574, 29.988941256492204 ], [ -94.999024917953236, 29.989033256432563 ], [ -94.999024917979426, 29.989045256857182 ], [ -94.999125918698567, 29.989210256202188 ], [ -94.999174918477735, 29.989302256228335 ], [ -94.999182918211844, 29.989318256497452 ], [ -94.999207918156756, 29.989366256422048 ], [ -94.999216918593334, 29.989382256711046 ], [ -94.999245918777675, 29.989436256850638 ], [ -94.999249918409461, 29.98944725708078 ], [ -94.999333918923028, 29.989651257108843 ], [ -94.999361918823809, 29.989719257092968 ], [ -94.999403918227202, 29.989821257039836 ], [ -94.999445918197452, 29.989950256571902 ], [ -94.999561918869517, 29.990304257084887 ], [ -94.999704919110215, 29.990641256917371 ], [ -94.999739918453585, 29.990722257348942 ], [ -94.9997879184249, 29.990874257334966 ], [ -94.999796918418582, 29.990904256534396 ], [ -94.999796919075507, 29.990964256814028 ], [ -94.999796918759813, 29.991014257020357 ], [ -94.99982791889596, 29.991236257325074 ], [ -94.99984091840696, 29.99132725692434 ], [ -94.999834918958229, 29.991355256718368 ], [ -94.999816918666085, 29.991441257311774 ], [ -94.999830918561159, 29.991465257178056 ], [ -94.999853918972534, 29.991492256675542 ], [ -94.999970918678571, 29.991557257342297 ], [ -95.000008918874244, 29.991578257431307 ], [ -95.000036918864922, 29.991585256776197 ], [ -95.000122919275043, 29.991607256766336 ], [ -95.000151919018194, 29.991615257160788 ], [ -95.000216918375273, 29.991631256978415 ], [ -95.000412918704598, 29.991683257035323 ], [ -95.000478919377144, 29.991694256735133 ], [ -95.000665918719861, 29.991727257472085 ], [ -95.000860918801166, 29.991722257192595 ], [ -95.000930919015218, 29.991721257105858 ], [ -95.001259918692853, 29.991755257249856 ], [ -95.001455919609668, 29.99181525725006 ], [ -95.00173991931085, 29.991953257083107 ], [ -95.001941918911172, 29.992074257488852 ], [ -95.001985919546485, 29.992101257093246 ], [ -95.002194919132961, 29.992184257195277 ], [ -95.002302919597625, 29.992205256907113 ], [ -95.002578919838939, 29.992260256989113 ], [ -95.002636919580041, 29.992272256861018 ], [ -95.003154919122878, 29.992333256943965 ], [ -95.003412919950065, 29.992391257269865 ], [ -95.003687919364708, 29.992453257228227 ], [ -95.003851919468332, 29.992490256757875 ], [ -95.004346919452601, 29.992601256707182 ], [ -95.004511919651847, 29.992638257185703 ], [ -95.00459792032909, 29.992657257318179 ], [ -95.004858919829331, 29.992716257544824 ], [ -95.004891920053609, 29.992724256741248 ], [ -95.004945919607763, 29.992737256844752 ], [ -95.005848920166727, 29.992954257262923 ], [ -95.007379920508072, 29.993324257353041 ], [ -95.008554921498146, 29.993621256912672 ], [ -95.009455921733306, 29.993849257246165 ], [ -95.009488921579546, 29.993857257082727 ], [ -95.009589920888089, 29.993883257646782 ], [ -95.009623921679164, 29.993892257581617 ], [ -95.009914921635641, 29.993965257032833 ], [ -95.010789921727053, 29.994187257311673 ], [ -95.011081922126422, 29.99426125699356 ], [ -95.01110092142298, 29.994265256920766 ], [ -95.011158921703284, 29.994280257209365 ], [ -95.01117892194884, 29.994285257245185 ], [ -95.011213921445886, 29.99429325736314 ], [ -95.011296921982122, 29.994315257532698 ], [ -95.011318922296809, 29.994323257007956 ], [ -95.011352921298808, 29.994337257343236 ], [ -95.012635922257502, 29.994679257528169 ], [ -95.013148922595121, 29.99480925758051 ], [ -95.017063922972824, 29.995802257790249 ], [ -95.017511923136638, 29.996011257168487 ], [ -95.018481924200742, 29.996387257548506 ], [ -95.018673923673433, 29.996462257527433 ], [ -95.020006924220894, 29.996594257542917 ], [ -95.020314924323529, 29.996646257387589 ], [ -95.021599924416975, 29.996861257323822 ], [ -95.021914924350185, 29.996914257864606 ], [ -95.022438925220555, 29.996864257609364 ], [ -95.023178924615337, 29.996738257592334 ], [ -95.024738925366336, 29.996584257464292 ], [ -95.025482925180484, 29.996623256833789 ], [ -95.025591925741949, 29.996629257253879 ], [ -95.0265139262997, 29.996744257046949 ], [ -95.026778925855112, 29.996744256945579 ], [ -95.026741926117467, 29.996616257506211 ], [ -95.02662092551185, 29.995980256639495 ], [ -95.026228925416405, 29.994030257062796 ], [ -95.025823925926389, 29.991951255984695 ], [ -95.025804924956262, 29.991869256024337 ], [ -95.025779925353206, 29.991797256341396 ], [ -95.025740924957674, 29.991736255910602 ], [ -95.025684925778364, 29.991689255899011 ], [ -95.02561292542299, 29.991656256019727 ], [ -95.025523925262775, 29.991640256112003 ], [ -95.025408925443699, 29.991636256105849 ], [ -95.02526992490364, 29.991637256083305 ], [ -95.025110924701423, 29.991629256363961 ], [ -95.024934925607909, 29.991647256213312 ], [ -95.024751924989175, 29.991642256644756 ], [ -95.022202924163267, 29.991685256406324 ], [ -95.022102924886596, 29.991682256625015 ], [ -95.022018924703048, 29.991673256584345 ], [ -95.021898923995181, 29.991628256110296 ], [ -95.021844924126086, 29.991539256530292 ], [ -95.021836924522361, 29.991479256214053 ], [ -95.021817924191211, 29.99010025605855 ], [ -95.021819924485882, 29.989776255575745 ], [ -95.022779924910765, 29.989758255846645 ], [ -95.024038924449158, 29.989746256325539 ], [ -95.024754925482782, 29.989743256288492 ], [ -95.025944925795272, 29.989730256272722 ], [ -95.026404925502675, 29.989719255671062 ], [ -95.027097925573855, 29.989719255498169 ], [ -95.027768926089593, 29.989700255750446 ], [ -95.029562926011536, 29.989690256097951 ], [ -95.030221925934285, 29.989680255601886 ], [ -95.030666927003722, 29.989678255422724 ], [ -95.031118926262138, 29.989665255543169 ], [ -95.031558926579066, 29.989665255726834 ], [ -95.032930927272773, 29.989647255874061 ], [ -95.034331927789495, 29.989640255371036 ], [ -95.035055927843302, 29.989625255835655 ], [ -95.035135927834148, 29.989623255906771 ], [ -95.035250927957804, 29.98962125563153 ], [ -95.035687927580383, 29.989621255715345 ], [ -95.037126928363577, 29.989618255340282 ], [ -95.038335928666015, 29.989617255252238 ], [ -95.038971928793401, 29.989599255062981 ], [ -95.039167928374155, 29.989587255602611 ], [ -95.039370928752604, 29.989569255464982 ], [ -95.039571928967817, 29.989543255127963 ], [ -95.039771928596522, 29.989509255191503 ], [ -95.039964929203251, 29.989468254983493 ], [ -95.040153929170188, 29.989419255209409 ], [ -95.040335928930006, 29.989367254973036 ], [ -95.040691929225915, 29.989258255386325 ], [ -95.041228929116102, 29.989118255593201 ], [ -95.041410929091555, 29.989083255076132 ], [ -95.041597929107795, 29.989056255037827 ], [ -95.041787929405487, 29.989040254808508 ], [ -95.042173929582091, 29.989028255092535 ], [ -95.043104929351131, 29.989016255179166 ], [ -95.043771929605754, 29.989016255223081 ], [ -95.044432930365545, 29.989017255055053 ], [ -95.04525693031556, 29.98902025514688 ], [ -95.045904930021791, 29.989011254928684 ], [ -95.046541930910976, 29.989003254748994 ], [ -95.048003930780112, 29.988995254661809 ], [ -95.049404931603007, 29.988986254907083 ], [ -95.049724931677261, 29.988977254954033 ], [ -95.04943393155942, 29.985371254197062 ], [ -95.049251931240804, 29.982989253766878 ], [ -95.049206930922836, 29.982296253088727 ], [ -95.049126930651497, 29.98123425328594 ], [ -95.049108930753746, 29.980875253407664 ], [ -95.049110931062401, 29.980706253050972 ], [ -95.049100930844503, 29.980584253526185 ], [ -95.049079931263492, 29.980533253267321 ], [ -95.049032931076198, 29.980527253208898 ], [ -95.048717931216444, 29.980525253347231 ], [ -95.0486439310815, 29.980509253119536 ], [ -95.049177930808099, 29.980511253139294 ], [ -95.049255931191027, 29.980509252983396 ], [ -95.049741930784577, 29.980501253146485 ], [ -95.052150932136072, 29.980475252778884 ], [ -95.054586932535756, 29.980445252580889 ], [ -95.05563293215009, 29.980436252601471 ], [ -95.05630393285341, 29.980426252798225 ], [ -95.057379933210512, 29.980410252500196 ], [ -95.059286933007854, 29.980396253023965 ], [ -95.061638934471134, 29.980381252395535 ], [ -95.061720933746145, 29.980375252385009 ], [ -95.061782934580023, 29.980357252333736 ], [ -95.061828933665439, 29.980322253083052 ], [ -95.061843934094441, 29.980294252223338 ], [ -95.061853933762549, 29.980275252476908 ], [ -95.06186393423836, 29.98015625284388 ], [ -95.061855934181736, 29.979491252220388 ], [ -95.061808934204194, 29.976943251743133 ], [ -95.061805933999963, 29.976392252307665 ], [ -95.061800933591201, 29.976162252050777 ], [ -95.061780934405547, 29.97536725168273 ], [ -95.061761934027572, 29.974302251818617 ], [ -95.061746933486603, 29.973361251303317 ], [ -95.061736933618718, 29.972765251111195 ], [ -95.061712933439452, 29.971538250602389 ], [ -95.061686934014716, 29.970179250977349 ], [ -95.061676933773356, 29.969921250328181 ], [ -95.062084933643433, 29.969913250226991 ], [ -95.063632934215562, 29.969900250687335 ], [ -95.063633933921153, 29.969557250195152 ], [ -95.063596934199055, 29.966967249666645 ], [ -95.063581933885445, 29.965994249969899 ], [ -95.063566933557269, 29.96404724957392 ], [ -95.063568933549931, 29.963884248875605 ], [ -95.063568934148492, 29.963620249420906 ], [ -95.063553934271113, 29.963185249452071 ], [ -95.063556934137225, 29.962974248807946 ], [ -95.063547933317437, 29.962547249107672 ], [ -95.063527934047002, 29.960670248491315 ], [ -95.063517933806594, 29.960443248217857 ], [ -95.063523933605268, 29.960418248197318 ], [ -95.063519933545976, 29.959711248542934 ], [ -95.063498934056327, 29.95855524829528 ], [ -95.063456933844421, 29.956972248126913 ], [ -95.06344993314994, 29.956725247982895 ], [ -95.063434933064869, 29.956269247691445 ], [ -95.063422933657847, 29.956082247926485 ], [ -95.063396933021792, 29.955887247798284 ], [ -95.063407933674924, 29.955732247504908 ], [ -95.063411933395585, 29.955384247551425 ], [ -95.063408933000929, 29.955217247073236 ], [ -95.063397933309446, 29.955049247449047 ], [ -95.06337793322281, 29.954886247474775 ], [ -95.063372932947473, 29.954598247007699 ], [ -95.063342932973825, 29.953904246805514 ], [ -95.063320933002402, 29.953351247240782 ], [ -95.063315933092227, 29.953237247166012 ], [ -95.063288933650711, 29.952606246619801 ], [ -95.063233932931738, 29.951365246560922 ], [ -95.06321893294303, 29.950924246264275 ], [ -95.063170933418078, 29.949750246193929 ], [ -95.063151932994927, 29.949328246394824 ], [ -95.063141932835151, 29.948930245813855 ], [ -95.063138932884755, 29.94869824582776 ], [ -95.063084933350723, 29.94759724635977 ], [ -95.062940932696307, 29.944137245165358 ], [ -95.06292093287, 29.943839245049425 ], [ -95.062920933226579, 29.943685244893956 ], [ -95.062931932944466, 29.94354424474346 ], [ -95.062913932701818, 29.943415244758992 ], [ -95.062905932838959, 29.943152245454897 ], [ -95.062882932304916, 29.942228244729009 ], [ -95.062860932248157, 29.940723244831013 ], [ -95.062845933125757, 29.940565244342629 ], [ -95.062817932094262, 29.940509244125774 ], [ -95.062782932169966, 29.940468244478996 ], [ -95.062706932401397, 29.940418244757989 ], [ -95.062565932544189, 29.940365244291694 ], [ -95.062490932810206, 29.940345244092455 ], [ -95.062336932175739, 29.929025242332074 ], [ -95.062335932266649, 29.928887242129111 ], [ -95.062321931995712, 29.92869924197937 ], [ -95.062333932129349, 29.928353241917758 ], [ -95.062329932004204, 29.927534242094609 ], [ -95.062320931432012, 29.926607241960589 ], [ -95.062319931334144, 29.925936241191799 ], [ -95.062324931736583, 29.925667241382282 ], [ -95.062321931880689, 29.925615241031267 ], [ -95.062329931888996, 29.925517241474669 ], [ -95.062320932260633, 29.925326241011504 ], [ -95.062327932050763, 29.925270241709391 ], [ -95.062360931920381, 29.925243241614012 ], [ -95.062369931479196, 29.925236241643521 ], [ -95.06250493196417, 29.925234240941467 ], [ -95.062909931843691, 29.925239240957087 ], [ -95.063378932085683, 29.925232241627747 ], [ -95.063744932041743, 29.925231241387909 ], [ -95.063811932415717, 29.925226241196402 ], [ -95.063876932361836, 29.925212241085912 ], [ -95.063921931980857, 29.925186241584029 ], [ -95.063953932350643, 29.925149241504077 ], [ -95.063971932064149, 29.925102241464117 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1190, "Tract": "48339694402", "Area_SqMi": 8.2702402722146253, "total_2009": 422, "total_2010": 553, "total_2011": 491, "total_2012": 387, "total_2013": 460, "total_2014": 556, "total_2015": 622, "total_2016": 685, "total_2017": 783, "total_2018": 680, "total_2019": 711, "total_2020": 739, "age1": 257, "age2": 384, "age3": 180, "earn1": 157, "earn2": 228, "earn3": 436, "naics_s01": 19, "naics_s02": 5, "naics_s03": 31, "naics_s04": 289, "naics_s05": 8, "naics_s06": 66, "naics_s07": 44, "naics_s08": 5, "naics_s09": 0, "naics_s10": 14, "naics_s11": 45, "naics_s12": 110, "naics_s13": 1, "naics_s14": 21, "naics_s15": 0, "naics_s16": 13, "naics_s17": 0, "naics_s18": 121, "naics_s19": 29, "naics_s20": 0, "race1": 713, "race2": 43, "race3": 12, "race4": 34, "race5": 3, "race6": 16, "ethnicity1": 641, "ethnicity2": 180, "edu1": 114, "edu2": 148, "edu3": 172, "edu4": 130, "Shape_Length": 73240.800614954715, "Shape_Area": 230560144.13165414, "total_2021": 878, "total_2022": 821 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.65249810210338, 30.339334304786782 ], [ -95.652499102269786, 30.339053305252836 ], [ -95.652487101733342, 30.338775304587095 ], [ -95.652456102500636, 30.338499304661237 ], [ -95.652389101676405, 30.338132305083068 ], [ -95.652351102474029, 30.33798230509414 ], [ -95.652291102014985, 30.337774304996248 ], [ -95.652222102274337, 30.337572304348157 ], [ -95.652140101936808, 30.337372304445982 ], [ -95.652044102153866, 30.337177304428664 ], [ -95.651898102327493, 30.336923304567623 ], [ -95.651827101831714, 30.33681730456129 ], [ -95.651777102085205, 30.336741304275446 ], [ -95.651664101756268, 30.336590304518197 ], [ -95.649821101165315, 30.33440330420715 ], [ -95.649762101808491, 30.334334304038048 ], [ -95.649601100861403, 30.33412130379736 ], [ -95.649372101351346, 30.333804303937608 ], [ -95.64915610108676, 30.33348330422222 ], [ -95.649056101468616, 30.333318303798084 ], [ -95.648577100800736, 30.332464303559536 ], [ -95.648213100715708, 30.331737303997055 ], [ -95.648001100333531, 30.331330303122389 ], [ -95.647900100204922, 30.331119303286663 ], [ -95.647617100182458, 30.330474303083502 ], [ -95.647533101032948, 30.330254303610605 ], [ -95.647421100549252, 30.329926303403418 ], [ -95.647405100607244, 30.329880302869061 ], [ -95.647184100865246, 30.329151302746126 ], [ -95.647027100742463, 30.328517302959419 ], [ -95.646922100016326, 30.328000303062218 ], [ -95.646878099946534, 30.327741302949679 ], [ -95.646841100245325, 30.327410302750675 ], [ -95.646752099915858, 30.326601302789552 ], [ -95.646657099798347, 30.324767302669787 ], [ -95.646642100291331, 30.324632302604044 ], [ -95.646598099591657, 30.324356302226846 ], [ -95.646541099852271, 30.324082302072835 ], [ -95.646441099948547, 30.323675302285736 ], [ -95.646314099963192, 30.323273302148291 ], [ -95.646216100121492, 30.323007301986618 ], [ -95.64604809994114, 30.322615301453087 ], [ -95.645979099897247, 30.322470302199363 ], [ -95.645533099991454, 30.321653301335349 ], [ -95.644800099826412, 30.320306301050692 ], [ -95.644694099738828, 30.320122301322286 ], [ -95.644520098769121, 30.319856301328784 ], [ -95.644333099724605, 30.319596301555585 ], [ -95.644060099325117, 30.319262301245868 ], [ -95.643837099341397, 30.31902530110856 ], [ -95.64367909887217, 30.318873301032603 ], [ -95.643434099450246, 30.318655301348272 ], [ -95.643174099205794, 30.318445301068035 ], [ -95.642923099008911, 30.318265300652229 ], [ -95.642827098819879, 30.318205301487861 ], [ -95.642728099035622, 30.318151300805425 ], [ -95.642633099063346, 30.318093300904593 ], [ -95.642330098868214, 30.317937301359972 ], [ -95.642016098074876, 30.317794300682102 ], [ -95.6417170982144, 30.317674301227889 ], [ -95.641280098552755, 30.317523301014258 ], [ -95.640833098351891, 30.317399301339769 ], [ -95.640375097746713, 30.317302300654237 ], [ -95.640132098172188, 30.317266301158256 ], [ -95.639995097694609, 30.317246300796715 ], [ -95.639912098198664, 30.317233301279284 ], [ -95.639709097813835, 30.317214300924348 ], [ -95.639418097412019, 30.317218300526708 ], [ -95.639125097460465, 30.317227301383507 ], [ -95.638833097979756, 30.317242300579988 ], [ -95.638250097579629, 30.317282300956222 ], [ -95.637705097235155, 30.317340300849704 ], [ -95.637333097659948, 30.317381301136518 ], [ -95.633774096891443, 30.317778301195279 ], [ -95.633519096679194, 30.317806301050013 ], [ -95.631371095988314, 30.318046301138288 ], [ -95.629949095688801, 30.318178301615664 ], [ -95.628955095114847, 30.318288301853425 ], [ -95.627790094560538, 30.318416301346073 ], [ -95.626226094662627, 30.318492301290206 ], [ -95.624770094176725, 30.318455301941334 ], [ -95.621524093742366, 30.318372302109175 ], [ -95.619895092799013, 30.318315301870967 ], [ -95.619551092792037, 30.318304301860607 ], [ -95.617091092023927, 30.318219302008814 ], [ -95.614327091611969, 30.31816630163414 ], [ -95.613334091331694, 30.318189302337743 ], [ -95.612892091642607, 30.318199301835428 ], [ -95.603592088345877, 30.318691302278758 ], [ -95.602018088336564, 30.318778302913373 ], [ -95.600256087786661, 30.318871302316349 ], [ -95.600026088210925, 30.318884302903101 ], [ -95.599487087866478, 30.31891430253572 ], [ -95.598716087104023, 30.318956303042981 ], [ -95.597523087694711, 30.319022303261267 ], [ -95.595878086455556, 30.319112303034359 ], [ -95.594465086093535, 30.319190302823493 ], [ -95.593183086009475, 30.319257303243987 ], [ -95.592741085673367, 30.31928130298872 ], [ -95.591998086173604, 30.319320302970159 ], [ -95.591114085206044, 30.319367303297987 ], [ -95.588861085036967, 30.319486303498952 ], [ -95.588266084713126, 30.31951730279766 ], [ -95.588262084827363, 30.321657304048351 ], [ -95.588222084896302, 30.322310303882773 ], [ -95.588212084821606, 30.322561304246037 ], [ -95.588203085333802, 30.322607304269908 ], [ -95.588104084692446, 30.323426303726407 ], [ -95.588086084937117, 30.323884304552092 ], [ -95.588097084690261, 30.325603304287782 ], [ -95.588149085616948, 30.326424304233164 ], [ -95.588151085243354, 30.32673830497988 ], [ -95.588152084900443, 30.326946304678938 ], [ -95.588155084939814, 30.327362304985229 ], [ -95.588150085574156, 30.32997730527471 ], [ -95.588159085435322, 30.332046305886546 ], [ -95.588187085748856, 30.333606306216836 ], [ -95.588178085845456, 30.333790305736272 ], [ -95.588156085732734, 30.333974306454799 ], [ -95.588139085136206, 30.334064306298718 ], [ -95.588095085790002, 30.334242305790895 ], [ -95.58803608581664, 30.334419306473912 ], [ -95.587964085134303, 30.334591306167859 ], [ -95.587876084986689, 30.334759306436478 ], [ -95.587777085616736, 30.334922306706712 ], [ -95.587668085096425, 30.335073306849832 ], [ -95.587470085555708, 30.335324306485226 ], [ -95.587329085498666, 30.335502306202713 ], [ -95.586994085057228, 30.335897306952354 ], [ -95.58683708555526, 30.336081306433496 ], [ -95.586528085261037, 30.336425306929343 ], [ -95.586060085178289, 30.336922306898774 ], [ -95.585191084963327, 30.337876307381322 ], [ -95.584343084409198, 30.338808307191567 ], [ -95.584186084286074, 30.338980307643556 ], [ -95.583960084447469, 30.339229307475289 ], [ -95.583814085056758, 30.339428307041345 ], [ -95.583749084696237, 30.339529307637022 ], [ -95.583627084941796, 30.339740307436369 ], [ -95.583524084119986, 30.339960307538185 ], [ -95.583404084481373, 30.340293307682519 ], [ -95.583372085044402, 30.340407307396038 ], [ -95.583323084623757, 30.340640307362094 ], [ -95.583307084941708, 30.340758307846347 ], [ -95.583287084798926, 30.340991307365321 ], [ -95.583284084577002, 30.341225308091865 ], [ -95.583291084218033, 30.341338308222237 ], [ -95.58329108444417, 30.3420713082619 ], [ -95.583292084795346, 30.342276308054149 ], [ -95.583294084369854, 30.345516308241649 ], [ -95.583296084771476, 30.347942309120324 ], [ -95.583287085121626, 30.34837930891889 ], [ -95.583284084491837, 30.348817308951837 ], [ -95.583318085128667, 30.350968310019859 ], [ -95.583278084927841, 30.351152310130132 ], [ -95.583180085162638, 30.351650309516302 ], [ -95.583080084646383, 30.352659310126363 ], [ -95.583107085544071, 30.353898310360201 ], [ -95.584649085750627, 30.354441310755966 ], [ -95.586665086575991, 30.355151310070735 ], [ -95.58691708652222, 30.355240310810274 ], [ -95.587495086474391, 30.355444310955097 ], [ -95.588767087049021, 30.355892310891068 ], [ -95.590212087199973, 30.356432310269224 ], [ -95.590923087718664, 30.356681310876777 ], [ -95.591685087392875, 30.356946310793287 ], [ -95.59253508744753, 30.357242311148415 ], [ -95.592709087582463, 30.357302311022924 ], [ -95.592866087380926, 30.357357310309744 ], [ -95.594704088632042, 30.35799631098946 ], [ -95.594761088447143, 30.358016310617518 ], [ -95.595152088363804, 30.358157310935258 ], [ -95.595859088229915, 30.358410310406377 ], [ -95.597578089084394, 30.359028310628823 ], [ -95.598937089977795, 30.359515311303046 ], [ -95.599220089797967, 30.359616310772044 ], [ -95.599300089640209, 30.359645310782355 ], [ -95.600360090339365, 30.360025311420916 ], [ -95.600669089992792, 30.360137311299024 ], [ -95.601553089977216, 30.360457311260621 ], [ -95.60303509092536, 30.360981311144911 ], [ -95.60328609058466, 30.361070311073838 ], [ -95.603593091287195, 30.361108311103539 ], [ -95.603740090754044, 30.361231310921205 ], [ -95.606109091302244, 30.362014311585927 ], [ -95.60622509174722, 30.362052310891134 ], [ -95.606255091291473, 30.362062311202351 ], [ -95.606293091716623, 30.362075311267514 ], [ -95.606634091775149, 30.362192311362019 ], [ -95.609299092319844, 30.363106311309416 ], [ -95.609641092860215, 30.363223311584925 ], [ -95.610793092536412, 30.363624311097247 ], [ -95.612232093003868, 30.36411131114356 ], [ -95.614574093643199, 30.364905311759255 ], [ -95.614663093950995, 30.364935311648562 ], [ -95.616124094628319, 30.36546031174743 ], [ -95.616755094606816, 30.365682311880764 ], [ -95.616748093999902, 30.365322311164761 ], [ -95.616650094165536, 30.358976310558031 ], [ -95.614800093304879, 30.358989310185322 ], [ -95.614502093160922, 30.358991309972094 ], [ -95.614411092988902, 30.354470308942471 ], [ -95.614399093289123, 30.353827309031331 ], [ -95.614352092640672, 30.351504308772149 ], [ -95.614318092516029, 30.349791308632092 ], [ -95.614294092516502, 30.348660307780229 ], [ -95.614264092580072, 30.347105308304027 ], [ -95.614256092964325, 30.346698307476338 ], [ -95.614207093268874, 30.346697307813521 ], [ -95.614178092671878, 30.345201307443318 ], [ -95.614184092958837, 30.344172307659473 ], [ -95.614149092698327, 30.340796306439955 ], [ -95.61572509287052, 30.341136306757956 ], [ -95.616373092738556, 30.341276307060937 ], [ -95.616876093119174, 30.341384306701844 ], [ -95.617299092983416, 30.341475306853471 ], [ -95.618753093407818, 30.341786306645059 ], [ -95.61984209387353, 30.342023306224291 ], [ -95.623359095182195, 30.342779306782131 ], [ -95.624755095500674, 30.343079307109285 ], [ -95.625439095941701, 30.34322630632315 ], [ -95.627069096381035, 30.343577306639947 ], [ -95.628414096023207, 30.343866306716297 ], [ -95.628996096038165, 30.343977306510705 ], [ -95.629484096326067, 30.344060306930636 ], [ -95.629877096217058, 30.344128306694948 ], [ -95.629952096186472, 30.344146306906254 ], [ -95.630113096679651, 30.344164306572289 ], [ -95.630192097217133, 30.344166306740505 ], [ -95.630354097043991, 30.34415930633596 ], [ -95.630435097264495, 30.34414530696662 ], [ -95.630511096882842, 30.344127306698944 ], [ -95.630614096967264, 30.344111306914549 ], [ -95.630813096774162, 30.344061306821665 ], [ -95.630909096885219, 30.34403330666461 ], [ -95.631003096629584, 30.343997307107653 ], [ -95.63109709694524, 30.343955306467109 ], [ -95.631683097393179, 30.343788306700684 ], [ -95.632242097765143, 30.343659306306282 ], [ -95.632427097738116, 30.343620306430537 ], [ -95.632805097232719, 30.343555306445069 ], [ -95.633182097099919, 30.343498306484399 ], [ -95.633561097565149, 30.34345530670997 ], [ -95.634135097643181, 30.343409306886329 ], [ -95.63422709756199, 30.343409306482659 ], [ -95.634412097726852, 30.343394306229683 ], [ -95.634502097762635, 30.343383306760607 ], [ -95.634771098084002, 30.343332306117532 ], [ -95.63494709774649, 30.343284306699339 ], [ -95.63511809781825, 30.343225306404427 ], [ -95.635364097840636, 30.343121306729532 ], [ -95.635521097882204, 30.343039305986441 ], [ -95.635671098546666, 30.342947306734068 ], [ -95.635882098006078, 30.342795306004419 ], [ -95.636011098472906, 30.342680305951838 ], [ -95.636765098208087, 30.341852306395101 ], [ -95.636809098210762, 30.341795306091907 ], [ -95.636859098721658, 30.341742306069776 ], [ -95.636978098001904, 30.341640305669074 ], [ -95.637041098264461, 30.341595305809822 ], [ -95.637181098133766, 30.341519306014476 ], [ -95.637252098613345, 30.341487306335814 ], [ -95.637330098440756, 30.341459305642857 ], [ -95.6374880982805, 30.341416306318227 ], [ -95.637750098210617, 30.341381305452174 ], [ -95.638291098851411, 30.341334306302596 ], [ -95.638697099161874, 30.341323305460978 ], [ -95.639107099266795, 30.341330306044153 ], [ -95.639515099284907, 30.341354305656559 ], [ -95.639786099516868, 30.341383305777285 ], [ -95.640933099442861, 30.341431305699793 ], [ -95.641134099767697, 30.34142530583102 ], [ -95.643484100346043, 30.341359305990402 ], [ -95.64505610014551, 30.341338305412997 ], [ -95.645316100207609, 30.341347305672489 ], [ -95.645542100181387, 30.341367305260853 ], [ -95.646760100945116, 30.341523305368757 ], [ -95.647114101410438, 30.341551305241619 ], [ -95.649332101257997, 30.341670305927568 ], [ -95.64942410127199, 30.341678305871692 ], [ -95.649608101409299, 30.341682305353316 ], [ -95.649885101983756, 30.341664305967775 ], [ -95.650070101670863, 30.341639305519255 ], [ -95.651906101665119, 30.341277305405551 ], [ -95.651989102492664, 30.341257305785472 ], [ -95.652152102087541, 30.341234305384724 ], [ -95.652235101924902, 30.341233305779891 ], [ -95.65238710196374, 30.34124230561795 ], [ -95.652407102611861, 30.340896304907872 ], [ -95.652479102098525, 30.339611305399064 ], [ -95.65249810210338, 30.339334304786782 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1191, "Tract": "48201252800", "Area_SqMi": 24.815504864545542, "total_2009": 264, "total_2010": 414, "total_2011": 482, "total_2012": 1925, "total_2013": 1916, "total_2014": 2062, "total_2015": 1156, "total_2016": 1889, "total_2017": 2122, "total_2018": 2259, "total_2019": 937, "total_2020": 997, "age1": 149, "age2": 569, "age3": 177, "earn1": 90, "earn2": 137, "earn3": 668, "naics_s01": 0, "naics_s02": 16, "naics_s03": 3, "naics_s04": 134, "naics_s05": 451, "naics_s06": 44, "naics_s07": 90, "naics_s08": 64, "naics_s09": 0, "naics_s10": 9, "naics_s11": 2, "naics_s12": 4, "naics_s13": 0, "naics_s14": 28, "naics_s15": 0, "naics_s16": 30, "naics_s17": 0, "naics_s18": 15, "naics_s19": 5, "naics_s20": 0, "race1": 712, "race2": 117, "race3": 8, "race4": 49, "race5": 1, "race6": 8, "ethnicity1": 656, "ethnicity2": 239, "edu1": 127, "edu2": 206, "edu3": 244, "edu4": 169, "Shape_Length": 134273.90541218544, "Shape_Area": 691813803.46248102, "total_2021": 905, "total_2022": 895 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.106440939493694, 29.844995223481064 ], [ -95.106444939212878, 29.844426223656971 ], [ -95.106384939231731, 29.844179223497182 ], [ -95.105493938938167, 29.84251322282276 ], [ -95.104565938370655, 29.841056222246689 ], [ -95.104268939100109, 29.84059122237683 ], [ -95.104095938668308, 29.840285222449936 ], [ -95.103667938712775, 29.839523222357485 ], [ -95.103366938339377, 29.839092222665894 ], [ -95.102963937903496, 29.838635222492801 ], [ -95.101187937536579, 29.837177221830448 ], [ -95.09994193696771, 29.836228221879281 ], [ -95.097488936422124, 29.834656221846867 ], [ -95.097078936951746, 29.834453221854645 ], [ -95.096320935968407, 29.833842221671713 ], [ -95.095473936407515, 29.83332522125885 ], [ -95.093519935314546, 29.83223522144716 ], [ -95.091907935164372, 29.831575221461485 ], [ -95.090027934664505, 29.831031221367223 ], [ -95.088868934335835, 29.83072022071887 ], [ -95.087654933906023, 29.830394221309753 ], [ -95.087004934105735, 29.83029422118609 ], [ -95.085629933178851, 29.829901221336765 ], [ -95.085155933506357, 29.829810220943276 ], [ -95.083082933036764, 29.829413220737514 ], [ -95.081391932340424, 29.829290221247984 ], [ -95.078994932078686, 29.829382221496463 ], [ -95.077082931735049, 29.8296102210067 ], [ -95.074545930416491, 29.83013222171612 ], [ -95.072986929979834, 29.830500221455949 ], [ -95.072164929955733, 29.830745221382568 ], [ -95.069538928918746, 29.831724222315014 ], [ -95.068696929385567, 29.83218422239139 ], [ -95.068110929342524, 29.832438222368204 ], [ -95.067659928796672, 29.832634222475711 ], [ -95.067204929367733, 29.832768222157146 ], [ -95.067032928424354, 29.832818222527724 ], [ -95.066692929246258, 29.832872222621937 ], [ -95.065932928633075, 29.832993222026669 ], [ -95.064783928394533, 29.832773222266347 ], [ -95.06391492844395, 29.83243622260434 ], [ -95.06356392828377, 29.832245222039347 ], [ -95.063083928236978, 29.831901222559484 ], [ -95.062349927342396, 29.83126622183735 ], [ -95.062002927913682, 29.830908221986689 ], [ -95.061510927276302, 29.831249221769458 ], [ -95.061478927246895, 29.831387222006924 ], [ -95.061352926820263, 29.831552222087133 ], [ -95.06110092726253, 29.831695222491497 ], [ -95.060993927687406, 29.831722222083723 ], [ -95.060873927142936, 29.831733222509552 ], [ -95.060589927581873, 29.831717221960336 ], [ -95.060381927422227, 29.831618222128252 ], [ -95.060318927522772, 29.831612222145417 ], [ -95.060274926939982, 29.831623222616308 ], [ -95.060211927127213, 29.831656222115953 ], [ -95.060116926919861, 29.831777222293852 ], [ -95.060078927275711, 29.83185422213495 ], [ -95.060047927012334, 29.832068222077012 ], [ -95.060009927168124, 29.83221722233511 ], [ -95.059971926950567, 29.832277222008873 ], [ -95.059902927253987, 29.832338222725863 ], [ -95.059719926557733, 29.83245322259636 ], [ -95.0594359270506, 29.83250822260133 ], [ -95.059277926842924, 29.832514222250254 ], [ -95.058956926483489, 29.832558222785053 ], [ -95.058830926835824, 29.832563222512032 ], [ -95.058647926759946, 29.832536222295413 ], [ -95.05850292622506, 29.832497222246126 ], [ -95.058312926406003, 29.832475222725012 ], [ -95.058130926251138, 29.832475222818573 ], [ -95.057991926615685, 29.832525222295104 ], [ -95.057593926569311, 29.832822222229201 ], [ -95.057615926724012, 29.832933222751471 ], [ -95.057743926080207, 29.833503222383371 ], [ -95.057816926269439, 29.833911223032036 ], [ -95.057849926494896, 29.83420122323729 ], [ -95.057877926206174, 29.834643222551115 ], [ -95.057896927070544, 29.83523322345529 ], [ -95.057883926197803, 29.835576223267203 ], [ -95.057868926446929, 29.835810223478862 ], [ -95.057839927101909, 29.836416222952465 ], [ -95.057829926123873, 29.836681223379305 ], [ -95.057824926232314, 29.836785223693148 ], [ -95.057799927002534, 29.837431223849922 ], [ -95.057781927059054, 29.837950223208463 ], [ -95.057780926932395, 29.838488223593505 ], [ -95.057778926426366, 29.838784223892223 ], [ -95.05775692691239, 29.839470223977731 ], [ -95.057717926791838, 29.840604224172921 ], [ -95.057699927211459, 29.84112222464611 ], [ -95.057699927063567, 29.841592224714734 ], [ -95.057700926926188, 29.841669224787996 ], [ -95.05755492634438, 29.841668224710222 ], [ -95.05739192699636, 29.841674224516968 ], [ -95.057131926341683, 29.841668224742378 ], [ -95.056886926185797, 29.841674224018551 ], [ -95.055321926523845, 29.841685224149462 ], [ -95.055241925815579, 29.841686224406121 ], [ -95.054504925657767, 29.841694224462888 ], [ -95.05381192577434, 29.841696224910038 ], [ -95.0535189261076, 29.841699224847705 ], [ -95.052898925551801, 29.8417012249542 ], [ -95.052679926034159, 29.841703224513704 ], [ -95.052203925569074, 29.84170622477976 ], [ -95.052060925314692, 29.841708224656895 ], [ -95.05121392556039, 29.841722224663286 ], [ -95.04968992428725, 29.841729224485903 ], [ -95.04910992444384, 29.841737224952514 ], [ -95.047280924010323, 29.841761224783163 ], [ -95.046745924240483, 29.84177522481632 ], [ -95.046498923766094, 29.841788224449317 ], [ -95.045931923918403, 29.841818224680381 ], [ -95.045358923870964, 29.841840225257211 ], [ -95.044127923594687, 29.841868224882461 ], [ -95.040832922743959, 29.841927225120131 ], [ -95.036723921418115, 29.841973225143256 ], [ -95.036249921229, 29.841984225240846 ], [ -95.036011921489091, 29.841983224805574 ], [ -95.034995920802785, 29.841996225077168 ], [ -95.033432920336352, 29.842015225052524 ], [ -95.032805920278619, 29.84202222524322 ], [ -95.032521920134457, 29.84202622556942 ], [ -95.032414920807895, 29.842028225207741 ], [ -95.029653919889171, 29.842063225539814 ], [ -95.028654919487451, 29.842079225070339 ], [ -95.02789691931612, 29.842092225613762 ], [ -95.027414918941787, 29.842099225674996 ], [ -95.02640191832873, 29.842103225198077 ], [ -95.025183918166121, 29.842120225431177 ], [ -95.025011918381452, 29.842123225435635 ], [ -95.024446918177077, 29.842130225268185 ], [ -95.022914917729722, 29.842153225656247 ], [ -95.022163918157361, 29.842160225877496 ], [ -95.020214916797627, 29.842179225815759 ], [ -95.019961917092758, 29.842169225428925 ], [ -95.019734916595766, 29.842174226049213 ], [ -95.019522916684281, 29.842188225852997 ], [ -95.018326916853823, 29.842197225625156 ], [ -95.017111916394938, 29.842218225472873 ], [ -95.016145916230499, 29.84222322580851 ], [ -95.014115915427297, 29.842255226227802 ], [ -95.014046915532987, 29.842254226052933 ], [ -95.013586915327437, 29.842251225997966 ], [ -95.013321915802422, 29.84225222628686 ], [ -95.012621915147662, 29.842275226041608 ], [ -95.012340914769709, 29.842279225943358 ], [ -95.011575914774596, 29.842287225676039 ], [ -95.010861914523119, 29.84229622635328 ], [ -95.010579914432597, 29.842299226001106 ], [ -95.01022191461125, 29.842302226123532 ], [ -95.009915914709012, 29.842304225949793 ], [ -95.009546914734514, 29.842312225807699 ], [ -95.009026914460222, 29.842320226324297 ], [ -95.008458914429681, 29.84232522621771 ], [ -95.007892913769638, 29.842330226357134 ], [ -95.007436913540403, 29.842338226641413 ], [ -95.006944914058963, 29.842344226311962 ], [ -95.006737913743294, 29.842346226587114 ], [ -95.006458914081051, 29.842350225914487 ], [ -95.005844913153027, 29.842358226673728 ], [ -95.005260913648229, 29.842368226024991 ], [ -95.004637912855486, 29.842376226689982 ], [ -95.003672913023593, 29.842392226505893 ], [ -95.003387912661296, 29.842392226558303 ], [ -95.002941912404538, 29.842403225955032 ], [ -95.002867912525403, 29.842399226469727 ], [ -95.002808912294668, 29.842391226269847 ], [ -95.002810913074498, 29.842698226473065 ], [ -95.00280691277915, 29.842769226666775 ], [ -95.002790912917675, 29.842838226193074 ], [ -95.002751912417224, 29.842898226800134 ], [ -95.002690912776359, 29.842942226903659 ], [ -95.002615912466936, 29.842964226088373 ], [ -95.002528912773144, 29.842970226706829 ], [ -95.000982911858543, 29.842992226679538 ], [ -94.999398911479631, 29.843020226696684 ], [ -94.997953911634383, 29.843045226639475 ], [ -94.997412911023304, 29.84305022646889 ], [ -94.996308911321108, 29.843078226915402 ], [ -94.99533991060288, 29.843098226348435 ], [ -94.994923910697466, 29.843103227082576 ], [ -94.992042909538611, 29.843168226953036 ], [ -94.989279909413128, 29.843216227455596 ], [ -94.98913590909892, 29.843224226650616 ], [ -94.989017909284655, 29.843219226666115 ], [ -94.988662909314442, 29.843231226923571 ], [ -94.988322908552462, 29.843241226728296 ], [ -94.987930908895478, 29.843243227070204 ], [ -94.987779908393989, 29.843247227474659 ], [ -94.98623090861777, 29.843253226831106 ], [ -94.985694908527222, 29.843271227498018 ], [ -94.985523908451597, 29.843291227179868 ], [ -94.98535690803638, 29.843321226894417 ], [ -94.984673908354978, 29.843476227084892 ], [ -94.984276907553493, 29.843582227181376 ], [ -94.984080908332402, 29.843640227511937 ], [ -94.983843907628554, 29.843666226937899 ], [ -94.98366190825945, 29.843686227062008 ], [ -94.983295907643409, 29.843726227096244 ], [ -94.983175907624187, 29.843739227743161 ], [ -94.983072907744969, 29.84375022699879 ], [ -94.982799907606761, 29.843780227761236 ], [ -94.982089907256281, 29.843858227311312 ], [ -94.980693907047794, 29.844038227156826 ], [ -94.979333906720186, 29.844244227559841 ], [ -94.976574906431424, 29.84471522763296 ], [ -94.975741905849446, 29.844842228187986 ], [ -94.975249906043516, 29.844917227890956 ], [ -94.973912905590652, 29.845131227940701 ], [ -94.973202905437446, 29.845256228335813 ], [ -94.972566904656802, 29.845368228092742 ], [ -94.971250904730411, 29.845570228513264 ], [ -94.968663903852061, 29.845988228294154 ], [ -94.966087903899989, 29.846434228501618 ], [ -94.965806903705626, 29.846479228835161 ], [ -94.963739902650644, 29.846809228419357 ], [ -94.96307690236479, 29.846915229048921 ], [ -94.961223902624866, 29.847209228486438 ], [ -94.960037902410662, 29.847400228467357 ], [ -94.956703901065637, 29.847931229514341 ], [ -94.955826900605587, 29.848095229236595 ], [ -94.95362789995221, 29.848446229273648 ], [ -94.952932899741469, 29.848562229245363 ], [ -94.950942900029204, 29.848895229791179 ], [ -94.949525899490169, 29.84912722997263 ], [ -94.94817689889075, 29.849340229527137 ], [ -94.947091898989214, 29.849516229431309 ], [ -94.947247898840871, 29.850158230301034 ], [ -94.947266898623425, 29.85023823021422 ], [ -94.947349899022512, 29.850395229658009 ], [ -94.947412898871505, 29.850513229792099 ], [ -94.947456898865426, 29.850656229731655 ], [ -94.947595899421302, 29.850821229636846 ], [ -94.947630899001908, 29.850847230206508 ], [ -94.947891898994442, 29.851036229886638 ], [ -94.948200898750287, 29.851299230493598 ], [ -94.948371898706512, 29.851486230346225 ], [ -94.948648899534135, 29.851701229841591 ], [ -94.948711899072279, 29.851761230325977 ], [ -94.949843899431201, 29.852672230231459 ], [ -94.949914899487794, 29.852729229941811 ], [ -94.950125899650118, 29.852899230475124 ], [ -94.951016900022893, 29.853638230651772 ], [ -94.951054900404515, 29.853670230235068 ], [ -94.951172900466815, 29.85376823006531 ], [ -94.951696899682773, 29.854246230972755 ], [ -94.951958899870675, 29.85447323082526 ], [ -94.952056900188424, 29.854558230503716 ], [ -94.95207390007198, 29.854572230658277 ], [ -94.95211490021228, 29.854607230910659 ], [ -94.952358900494531, 29.854818230679875 ], [ -94.952642900664173, 29.855033231113389 ], [ -94.953096900055684, 29.855308230624829 ], [ -94.95311090044332, 29.85531223067451 ], [ -94.953639900252185, 29.85546123093523 ], [ -94.95384190024518, 29.855527230708422 ], [ -94.954566900988638, 29.855632231120506 ], [ -94.954977900720721, 29.855670230733484 ], [ -94.955178900911804, 29.855753230407103 ], [ -94.95570590146454, 29.855850230680794 ], [ -94.955858900768462, 29.855879231155381 ], [ -94.956030900864448, 29.85591223030811 ], [ -94.956320901576248, 29.855928230697302 ], [ -94.956710901697107, 29.855961230618032 ], [ -94.957040901545923, 29.855989230364653 ], [ -94.957374901271891, 29.856082231081881 ], [ -94.957916901979104, 29.856154230820081 ], [ -94.958301901932003, 29.856208230302496 ], [ -94.958399901598852, 29.85622623055098 ], [ -94.958544902078501, 29.856254230371 ], [ -94.958608902349383, 29.856266230884472 ], [ -94.958939901666582, 29.856329231078455 ], [ -94.959197902151786, 29.856401230506883 ], [ -94.959671902382567, 29.856478230987605 ], [ -94.959722902575251, 29.856486231051697 ], [ -94.959833902159744, 29.856497231092032 ], [ -94.95990190282771, 29.856504231121175 ], [ -94.960323902189785, 29.856584230666158 ], [ -94.96033990211059, 29.856587230351714 ], [ -94.960459902514756, 29.856631230883913 ], [ -94.96061490225496, 29.856677230617628 ], [ -94.960774902708366, 29.85672523049961 ], [ -94.960995902848353, 29.856818231071088 ], [ -94.961496902746049, 29.856924230807586 ], [ -94.96179690320065, 29.856988230377134 ], [ -94.962213902469145, 29.857076230502472 ], [ -94.963216903641623, 29.857362230583981 ], [ -94.963664903745951, 29.857527230675103 ], [ -94.964421903834122, 29.857736230629779 ], [ -94.964686903691728, 29.857818230939412 ], [ -94.965437903371054, 29.857956230623799 ], [ -94.965954903800963, 29.858087231244816 ], [ -94.966516903783216, 29.858324230866085 ], [ -94.966718904249902, 29.85839623117435 ], [ -94.966881904261854, 29.858485230577507 ], [ -94.967633904193491, 29.858950230852219 ], [ -94.968005904658469, 29.859159230767151 ], [ -94.968150904858774, 29.859341231310292 ], [ -94.968911904877316, 29.860438231009503 ], [ -94.970230904996569, 29.861369231339566 ], [ -94.970919905624228, 29.861600231528946 ], [ -94.971008905333164, 29.861723231326703 ], [ -94.97110190519173, 29.861857231038954 ], [ -94.971234905243961, 29.862007231720327 ], [ -94.971462905193079, 29.862425231268311 ], [ -94.971605905712721, 29.862543231858815 ], [ -94.971774905481467, 29.862640231830941 ], [ -94.972094905374021, 29.862684231166604 ], [ -94.97214790611595, 29.862705231735305 ], [ -94.972259905349404, 29.862772231940035 ], [ -94.972420905806388, 29.862884231794244 ], [ -94.972500905384521, 29.862931231192249 ], [ -94.972611905954793, 29.863033231900388 ], [ -94.972650906265059, 29.863085231709995 ], [ -94.972726905816558, 29.863215231484372 ], [ -94.972776906316639, 29.86338723137737 ], [ -94.972770905676569, 29.863591231868529 ], [ -94.972756906095768, 29.863727231664686 ], [ -94.972732906020426, 29.863798231861793 ], [ -94.972730905732647, 29.86383123191559 ], [ -94.972697905725809, 29.863930232052205 ], [ -94.972674906155589, 29.864044231759269 ], [ -94.972664905892543, 29.864350231766146 ], [ -94.972676905720519, 29.864369231833809 ], [ -94.972683906376915, 29.864405232029924 ], [ -94.972765906302484, 29.864495231856935 ], [ -94.972773906371287, 29.864513231648022 ], [ -94.972864905817232, 29.864597232099975 ], [ -94.972965906222058, 29.86463823198007 ], [ -94.973137905956861, 29.864678231799129 ], [ -94.973237905925188, 29.86472623196159 ], [ -94.973301905740783, 29.864783232153513 ], [ -94.973428906302075, 29.864883231659498 ], [ -94.973602906704741, 29.865060231858926 ], [ -94.973608906096317, 29.865103232458715 ], [ -94.973646906473917, 29.865166232451614 ], [ -94.973645906534443, 29.865202231633273 ], [ -94.973685905779348, 29.865312232212716 ], [ -94.973700906744682, 29.865428232143557 ], [ -94.973736906203172, 29.865617232235106 ], [ -94.973777906308499, 29.865720232282424 ], [ -94.97386590593625, 29.865865232026472 ], [ -94.973925906418629, 29.865911232018597 ], [ -94.973994906525292, 29.865950232363872 ], [ -94.974014906844033, 29.865969232303687 ], [ -94.974168906475796, 29.866019232591313 ], [ -94.97426290673566, 29.866056232519313 ], [ -94.974351906697933, 29.866078232261419 ], [ -94.974412906587816, 29.86610623253269 ], [ -94.974644906991031, 29.866179232422716 ], [ -94.974823906351929, 29.866226232230179 ], [ -94.975013906644051, 29.866315232294159 ], [ -94.975131906728279, 29.866453232415719 ], [ -94.975275907059398, 29.866550232083462 ], [ -94.975461906275896, 29.866631232322266 ], [ -94.975602907008621, 29.866710232202735 ], [ -94.975676906596846, 29.866803232645609 ], [ -94.975718906944877, 29.866888232524953 ], [ -94.975756906676523, 29.866932232793111 ], [ -94.975787906457512, 29.867070232716763 ], [ -94.975851906437796, 29.867185232447703 ], [ -94.975863906677077, 29.867246232055336 ], [ -94.975945907082334, 29.867400232894664 ], [ -94.976072906929744, 29.867587232727075 ], [ -94.976154906737762, 29.867680232727107 ], [ -94.976343907370946, 29.867823232285957 ], [ -94.976595907341746, 29.867911232620429 ], [ -94.976841907261928, 29.867977232445568 ], [ -94.977050907409989, 29.868065232157662 ], [ -94.977144907415081, 29.868186232314375 ], [ -94.977157907027319, 29.868356232891554 ], [ -94.977094907105851, 29.868554232782468 ], [ -94.976955906820109, 29.868741232737733 ], [ -94.97681090749893, 29.868972232549563 ], [ -94.976609906893216, 29.870215233434035 ], [ -94.976533907215824, 29.870457233334168 ], [ -94.976491907541401, 29.870646233313732 ], [ -94.976365907583542, 29.871213233106051 ], [ -94.976324907714343, 29.871403233439189 ], [ -94.976238906992222, 29.871793233698661 ], [ -94.976225907430603, 29.872085233602458 ], [ -94.976203907709277, 29.87215823330321 ], [ -94.976099907432683, 29.872519233820331 ], [ -94.975986907369744, 29.872772233571112 ], [ -94.97593590712124, 29.873003233890156 ], [ -94.975986907593423, 29.873278234099299 ], [ -94.97613190678598, 29.873614233542234 ], [ -94.976163907806352, 29.874218234296787 ], [ -94.976208907006153, 29.874375233765537 ], [ -94.97622690751011, 29.874438233977401 ], [ -94.976384907340233, 29.874658234188875 ], [ -94.976561907534304, 29.874834234245597 ], [ -94.976624907501659, 29.875005234115509 ], [ -94.976657907286778, 29.875108233849289 ], [ -94.976682907970527, 29.875182234322462 ], [ -94.976701907844713, 29.875380234112537 ], [ -94.976683907860888, 29.875512233767747 ], [ -94.976456907948517, 29.876034234563836 ], [ -94.976336907863669, 29.876452233928585 ], [ -94.976336907230973, 29.876512234167365 ], [ -94.976336907554071, 29.876991234163022 ], [ -94.976507907912918, 29.877239234009462 ], [ -94.976923907817707, 29.877684234233801 ], [ -94.977233908172366, 29.878063234856327 ], [ -94.977555908352471, 29.878415234416774 ], [ -94.977769908334253, 29.878728234879524 ], [ -94.978154907651941, 29.879201234717403 ], [ -94.978293908409029, 29.879339234947103 ], [ -94.978407908223076, 29.879416234389609 ], [ -94.978741907854726, 29.879778235233662 ], [ -94.979013908050504, 29.880289235155839 ], [ -94.97905190813232, 29.880361235089385 ], [ -94.979133908610677, 29.880482235294728 ], [ -94.979152908315243, 29.880537235047473 ], [ -94.979265908763722, 29.880691234799414 ], [ -94.97934890853432, 29.880851234859509 ], [ -94.97943090879906, 29.880971235510916 ], [ -94.979613908595738, 29.881312235011499 ], [ -94.979802908853131, 29.881532234843334 ], [ -94.979859908804102, 29.881620235179678 ], [ -94.9799229082099, 29.881714235186834 ], [ -94.979962908258344, 29.881780235589328 ], [ -94.980105908411119, 29.88201623493158 ], [ -94.980222908869223, 29.882287235698861 ], [ -94.980238909125916, 29.882324235159828 ], [ -94.980295908861649, 29.88241223525787 ], [ -94.98031190859318, 29.882455235150353 ], [ -94.980333909163647, 29.882511235445278 ], [ -94.980497909030618, 29.882747235183501 ], [ -94.980535908612126, 29.88282323547363 ], [ -94.980642908639723, 29.883033235533311 ], [ -94.980737909156034, 29.883160235410497 ], [ -94.981072908862984, 29.88372023557331 ], [ -94.981208909164721, 29.883933236092023 ], [ -94.981255909017548, 29.884006236046563 ], [ -94.981466909026949, 29.884281235626698 ], [ -94.981477909331062, 29.884296235419466 ], [ -94.981513909155922, 29.884342235477408 ], [ -94.981525909045288, 29.884358235643248 ], [ -94.981533909633711, 29.884369235848279 ], [ -94.981644909206125, 29.88457523553722 ], [ -94.981779909202928, 29.884826235630353 ], [ -94.98198190898853, 29.885128236152848 ], [ -94.982030909716343, 29.88520923612105 ], [ -94.982158909321669, 29.88542223596032 ], [ -94.98218590962928, 29.885468236188121 ], [ -94.982269909753853, 29.885606236378532 ], [ -94.982297909869601, 29.88565223582787 ], [ -94.982518909435768, 29.886019235842387 ], [ -94.982701909402522, 29.886365236549238 ], [ -94.982739909385813, 29.886403236529709 ], [ -94.982751909610329, 29.886436235882659 ], [ -94.98280290919557, 29.886497235788354 ], [ -94.982878909441325, 29.886618235867825 ], [ -94.98310590929502, 29.886920236348953 ], [ -94.983553910185506, 29.887618236324958 ], [ -94.983850910350085, 29.888020236488828 ], [ -94.984185910233521, 29.888531236822338 ], [ -94.984551909643315, 29.88898223698715 ], [ -94.984741909713094, 29.889279236892854 ], [ -94.984905910266832, 29.88948223629497 ], [ -94.984993909985661, 29.889664236629738 ], [ -94.985353909993123, 29.890026237036974 ], [ -94.985530910246311, 29.890131237105226 ], [ -94.985631910469081, 29.890202236501988 ], [ -94.985864910138773, 29.890422236576647 ], [ -94.985984910623088, 29.890554237301529 ], [ -94.986149911090109, 29.890790237019136 ], [ -94.986161911051624, 29.890994236999372 ], [ -94.986155910939587, 29.891043237200641 ], [ -94.986123910202011, 29.891131237318199 ], [ -94.986016910480132, 29.891313237001263 ], [ -94.985859910540526, 29.891538236969545 ], [ -94.985594910825654, 29.891874237343984 ], [ -94.985322910074103, 29.892187237451193 ], [ -94.984944910703859, 29.892545237182496 ], [ -94.984648910413853, 29.892892237563562 ], [ -94.984370910382538, 29.893249237557519 ], [ -94.984320909932109, 29.89343123756775 ], [ -94.984332910791679, 29.893750237935251 ], [ -94.984396910260685, 29.893920237704766 ], [ -94.984484910414267, 29.894090238084114 ], [ -94.984504910394918, 29.894260237972592 ], [ -94.984572910467634, 29.894248237527535 ], [ -94.991382912359512, 29.893023237607565 ], [ -94.991768912595504, 29.892954236937136 ], [ -94.992067912077488, 29.892915237259352 ], [ -94.992178912613682, 29.892895237536177 ], [ -94.992792912296849, 29.892800236850068 ], [ -94.99298591199755, 29.892765236783156 ], [ -94.994003913191293, 29.892609236636304 ], [ -94.99422791327585, 29.892571237187855 ], [ -94.994678912945929, 29.892511237260166 ], [ -94.996002913672882, 29.892311237023339 ], [ -94.99621091323732, 29.892272236815639 ], [ -94.996406913545172, 29.892247236962561 ], [ -94.996779913087821, 29.892189236415884 ], [ -94.997484913286016, 29.892088236515573 ], [ -94.997532913735398, 29.892082236367244 ], [ -94.997608913604097, 29.892070236954869 ], [ -94.99772691356479, 29.892054236558032 ], [ -94.998415913319903, 29.891935237141251 ], [ -94.99922891424842, 29.89178823644842 ], [ -95.003033915011642, 29.891160236227492 ], [ -95.003954914961142, 29.890999235943898 ], [ -95.005733915450293, 29.890709236497454 ], [ -95.005920915880139, 29.890680236640012 ], [ -95.006275915981291, 29.890625236298355 ], [ -95.007492916427992, 29.890423236011671 ], [ -95.007585915629676, 29.890408236135347 ], [ -95.008518916663874, 29.890264236220425 ], [ -95.009854917031362, 29.890051235708672 ], [ -95.010577917080397, 29.889936236110131 ], [ -95.011028916701349, 29.889869236284394 ], [ -95.011490917126338, 29.88980923582379 ], [ -95.012242917132454, 29.889740235489871 ], [ -95.01241391748205, 29.8897172353524 ], [ -95.01322991716907, 29.889590235275552 ], [ -95.013651917228813, 29.889522235876804 ], [ -95.015890918493923, 29.889164235899859 ], [ -95.017198918866185, 29.888953235641349 ], [ -95.017494918728374, 29.888904235862547 ], [ -95.018756918829922, 29.888698235516099 ], [ -95.019564919057046, 29.888568235564406 ], [ -95.020520919004767, 29.888405235647088 ], [ -95.021673920172447, 29.888221234902741 ], [ -95.02317691996106, 29.887988235033653 ], [ -95.02361691992941, 29.88792423535487 ], [ -95.023731920649041, 29.887912235326809 ], [ -95.02381192006581, 29.8879072347513 ], [ -95.024052920146033, 29.88790823513591 ], [ -95.024961920930863, 29.887939235191908 ], [ -95.025897920629816, 29.887978235243605 ], [ -95.026092920985647, 29.8879862348297 ], [ -95.027390921368621, 29.8880352353221 ], [ -95.02796092132759, 29.888059234827622 ], [ -95.028554921202826, 29.888091234511602 ], [ -95.029262921591936, 29.888124235143806 ], [ -95.029452921518583, 29.888134234814377 ], [ -95.030094922093156, 29.888154234781894 ], [ -95.030728921601209, 29.888188234407743 ], [ -95.030816921854466, 29.888192234463258 ], [ -95.03123692167074, 29.888216235208564 ], [ -95.03159092248363, 29.888225234557112 ], [ -95.032102922256868, 29.888247234472278 ], [ -95.032554922062019, 29.888264234496212 ], [ -95.033330922421044, 29.888301234847535 ], [ -95.034819922540905, 29.888355234408909 ], [ -95.035854922812234, 29.888404234853834 ], [ -95.03732192350661, 29.888472234684091 ], [ -95.040260923958655, 29.888574234478035 ], [ -95.040973924331098, 29.888615234783945 ], [ -95.041145924510388, 29.888624234413783 ], [ -95.042762924789798, 29.888666234318642 ], [ -95.047543926119815, 29.888798234181351 ], [ -95.04858392621297, 29.888834234738344 ], [ -95.049095927111367, 29.888840234084363 ], [ -95.04979492714331, 29.8888672343951 ], [ -95.05015792745283, 29.888873234172895 ], [ -95.050331926560332, 29.888866234241807 ], [ -95.050502926618918, 29.888873234418107 ], [ -95.05065992691847, 29.888887234427223 ], [ -95.050841926951989, 29.888884234569357 ], [ -95.050993926709182, 29.888891234508318 ], [ -95.051302927152648, 29.888897234087363 ], [ -95.052026927298684, 29.88891923446322 ], [ -95.052272927788948, 29.888922234156993 ], [ -95.052591927333509, 29.888913233966264 ], [ -95.053738928318339, 29.888910233960644 ], [ -95.055370928406603, 29.888879234540646 ], [ -95.055434928660404, 29.888878233909786 ], [ -95.057132929239131, 29.888858233953759 ], [ -95.058767928927907, 29.888839234211531 ], [ -95.059259928983039, 29.888839234278997 ], [ -95.059333929453913, 29.888834234047412 ], [ -95.059393929140327, 29.888823233871154 ], [ -95.059445928903926, 29.888807234198197 ], [ -95.059595929738393, 29.888748233593901 ], [ -95.059650929186049, 29.888733233681872 ], [ -95.059708929049606, 29.888723233509964 ], [ -95.059768929599528, 29.8887212341075 ], [ -95.05990292977998, 29.88872823422772 ], [ -95.060059929961895, 29.888226233735967 ], [ -95.060279929619739, 29.888334233780007 ], [ -95.060405929600847, 29.888396233447946 ], [ -95.060787929822609, 29.888583233817521 ], [ -95.061646929729321, 29.888731233805775 ], [ -95.062547929614453, 29.887179233259889 ], [ -95.063157929972206, 29.886233233064331 ], [ -95.063394930213121, 29.885718233077224 ], [ -95.063693930377411, 29.885393233273248 ], [ -95.06411093004327, 29.884942232714767 ], [ -95.064323930082139, 29.884740232869579 ], [ -95.064524930253853, 29.884566232970936 ], [ -95.065352930952628, 29.884194232409662 ], [ -95.065946930449883, 29.883966233017365 ], [ -95.066447930592105, 29.883820232515731 ], [ -95.066756930855817, 29.883770232609084 ], [ -95.070695931647691, 29.882680232474684 ], [ -95.073343932385569, 29.881973231944233 ], [ -95.079911934650426, 29.8802062311198 ], [ -95.08017193468983, 29.880136231834651 ], [ -95.082135935102443, 29.87961523119311 ], [ -95.083549935306678, 29.879082231064196 ], [ -95.085352935286096, 29.878471231370249 ], [ -95.088359936298431, 29.877577230453657 ], [ -95.089459936606133, 29.877332230412918 ], [ -95.091776937270723, 29.876815230102732 ], [ -95.092738937358959, 29.876534230001432 ], [ -95.092961937659709, 29.876469230067119 ], [ -95.093706937585807, 29.876312230684952 ], [ -95.094022937837892, 29.876245230425738 ], [ -95.094132937836278, 29.876221230319555 ], [ -95.09424393731129, 29.876198230534449 ], [ -95.094340937380849, 29.875439230385563 ], [ -95.09443293811249, 29.875200229833251 ], [ -95.094561937971491, 29.874090230005972 ], [ -95.094005937237682, 29.871197229115225 ], [ -95.093865937923866, 29.870465228746337 ], [ -95.093754937775202, 29.869973229055127 ], [ -95.093621937134614, 29.869633228805398 ], [ -95.093638937372759, 29.869272228983476 ], [ -95.093560937125403, 29.868160228229339 ], [ -95.093642937180348, 29.86715422823028 ], [ -95.093631937016752, 29.866950228374193 ], [ -95.093593936747524, 29.866255228156341 ], [ -95.093696936674036, 29.865925228309763 ], [ -95.093788937306343, 29.865631228459943 ], [ -95.093804936906679, 29.865482227792199 ], [ -95.093874937623227, 29.864810227608583 ], [ -95.093890936942159, 29.864659228297729 ], [ -95.093908937546075, 29.864484227403548 ], [ -95.093858936760725, 29.863945228009705 ], [ -95.093724937107154, 29.863525227946297 ], [ -95.093396937113113, 29.862985227739468 ], [ -95.093377936489873, 29.86288322711551 ], [ -95.093692937007305, 29.862503227021008 ], [ -95.093896937147548, 29.862092227247544 ], [ -95.093955937355133, 29.861974227441973 ], [ -95.09403293670394, 29.861475226741138 ], [ -95.093968936767908, 29.86093822669875 ], [ -95.093446936845766, 29.860118226678789 ], [ -95.093198936924139, 29.85962322711298 ], [ -95.092926936532905, 29.859263226623355 ], [ -95.092650937023819, 29.858593226965052 ], [ -95.092633936185152, 29.858552226213209 ], [ -95.092403936696599, 29.858211226875977 ], [ -95.091011935494421, 29.85501222612487 ], [ -95.089679935859195, 29.852411225650112 ], [ -95.089489935367183, 29.851858225245802 ], [ -95.089283935409938, 29.851501225041559 ], [ -95.089344934896488, 29.851216225678922 ], [ -95.089427935352845, 29.850697224907506 ], [ -95.089567935537431, 29.850195224947385 ], [ -95.089882935416298, 29.849594224633471 ], [ -95.090317935713898, 29.848641224778987 ], [ -95.091252935949427, 29.847701224245924 ], [ -95.091643935861839, 29.847251224599471 ], [ -95.092169936232139, 29.846685224324723 ], [ -95.093019935981644, 29.846275224404199 ], [ -95.093636936031572, 29.84606622411447 ], [ -95.093849936225197, 29.846022224125136 ], [ -95.094240936055598, 29.845940224161769 ], [ -95.095599936309924, 29.845832224266314 ], [ -95.096218936880931, 29.845849223854696 ], [ -95.096428937487104, 29.845796223632018 ], [ -95.096893937418344, 29.845680223643836 ], [ -95.097545937415333, 29.845243223546031 ], [ -95.098104937109071, 29.844934223492853 ], [ -95.099513937449117, 29.843932223505746 ], [ -95.100077937777456, 29.84363022335144 ], [ -95.100691938233808, 29.84320422316328 ], [ -95.100991937797446, 29.843111223106465 ], [ -95.101301938410614, 29.8432452227818 ], [ -95.101806938096544, 29.843464223252656 ], [ -95.102564938060183, 29.843965222965469 ], [ -95.102827938841443, 29.844241223280559 ], [ -95.10309893841125, 29.844844223088458 ], [ -95.103314938479926, 29.845010223412721 ], [ -95.104112939387392, 29.845391223197016 ], [ -95.104980939436658, 29.845632223311622 ], [ -95.10609593980999, 29.845684223915129 ], [ -95.106306939808334, 29.845373223204859 ], [ -95.106352939643372, 29.845242223401286 ], [ -95.106428939765962, 29.845028222974189 ], [ -95.106440939493694, 29.844995223481064 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1192, "Tract": "48201411600", "Area_SqMi": 0.52680111016171449, "total_2009": 529, "total_2010": 554, "total_2011": 702, "total_2012": 733, "total_2013": 785, "total_2014": 792, "total_2015": 770, "total_2016": 947, "total_2017": 1081, "total_2018": 817, "total_2019": 845, "total_2020": 841, "age1": 245, "age2": 525, "age3": 210, "earn1": 292, "earn2": 330, "earn3": 358, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 11, "naics_s06": 37, "naics_s07": 134, "naics_s08": 0, "naics_s09": 2, "naics_s10": 95, "naics_s11": 67, "naics_s12": 48, "naics_s13": 0, "naics_s14": 238, "naics_s15": 24, "naics_s16": 46, "naics_s17": 3, "naics_s18": 179, "naics_s19": 70, "naics_s20": 0, "race1": 664, "race2": 183, "race3": 9, "race4": 98, "race5": 3, "race6": 23, "ethnicity1": 687, "ethnicity2": 293, "edu1": 168, "edu2": 173, "edu3": 203, "edu4": 191, "Shape_Length": 15946.391719578338, "Shape_Area": 14686313.322197543, "total_2021": 935, "total_2022": 980 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.460449025642163, 29.729757188105694 ], [ -95.460445025502722, 29.729271188055577 ], [ -95.460444024752846, 29.729161187810924 ], [ -95.46044202512843, 29.728958187925127 ], [ -95.46024202522932, 29.729034187881069 ], [ -95.459906024477647, 29.729157188060842 ], [ -95.459733024550175, 29.729232187574873 ], [ -95.459226025088427, 29.72943018772521 ], [ -95.459096025059409, 29.729481187743829 ], [ -95.458131024446644, 29.729788188211153 ], [ -95.457546024052604, 29.729935187794272 ], [ -95.45584002430266, 29.730266187875184 ], [ -95.452998022929648, 29.730289187765731 ], [ -95.452504022680102, 29.730299188135064 ], [ -95.451585023103121, 29.730300187880275 ], [ -95.451413023353595, 29.730301188363683 ], [ -95.450500023042224, 29.730302187946062 ], [ -95.449639022238145, 29.730244188126623 ], [ -95.448599021687372, 29.730132188421194 ], [ -95.44818402208324, 29.730094187943408 ], [ -95.448096022149443, 29.730083188224683 ], [ -95.448030021561962, 29.73007018838155 ], [ -95.44793202201889, 29.730051188549979 ], [ -95.447933022275564, 29.73030018822028 ], [ -95.447968021851821, 29.732498188940419 ], [ -95.448101022851063, 29.73814219031788 ], [ -95.448166022627262, 29.741635190607202 ], [ -95.448273022152932, 29.741629190343787 ], [ -95.450150022898441, 29.741528190890595 ], [ -95.45093902325894, 29.741491190478374 ], [ -95.451725023736955, 29.741434190775728 ], [ -95.452622023556529, 29.741383190137725 ], [ -95.45344602432499, 29.741323190536804 ], [ -95.453937023769498, 29.741289190139682 ], [ -95.454597023843647, 29.741247190339884 ], [ -95.455688024126346, 29.741189190446367 ], [ -95.457729025215855, 29.741083189771647 ], [ -95.457749025021471, 29.740984190523214 ], [ -95.458098024835337, 29.740962190564186 ], [ -95.458314025409564, 29.740948189788948 ], [ -95.458343025546569, 29.740779190459595 ], [ -95.458821025394272, 29.737962189430558 ], [ -95.458837024832604, 29.737865189218908 ], [ -95.459357024927385, 29.735448189342389 ], [ -95.459371025570647, 29.735385188725772 ], [ -95.459916025181982, 29.732852188613069 ], [ -95.46011702465799, 29.731921188148903 ], [ -95.460158024710751, 29.731728187804194 ], [ -95.460314024699542, 29.731002187937996 ], [ -95.460420024893025, 29.730404187879344 ], [ -95.460449025642163, 29.729757188105694 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1193, "Tract": "48201332900", "Area_SqMi": 0.71267084037631401, "total_2009": 2875, "total_2010": 3220, "total_2011": 3255, "total_2012": 3726, "total_2013": 3826, "total_2014": 3374, "total_2015": 3140, "total_2016": 4138, "total_2017": 2396, "total_2018": 3102, "total_2019": 3648, "total_2020": 3583, "age1": 700, "age2": 1832, "age3": 1033, "earn1": 505, "earn2": 748, "earn3": 2312, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 552, "naics_s05": 12, "naics_s06": 34, "naics_s07": 361, "naics_s08": 47, "naics_s09": 0, "naics_s10": 45, "naics_s11": 12, "naics_s12": 811, "naics_s13": 0, "naics_s14": 1018, "naics_s15": 48, "naics_s16": 147, "naics_s17": 0, "naics_s18": 466, "naics_s19": 12, "naics_s20": 0, "race1": 2830, "race2": 426, "race3": 27, "race4": 232, "race5": 2, "race6": 48, "ethnicity1": 2365, "ethnicity2": 1200, "edu1": 525, "edu2": 651, "edu3": 881, "edu4": 808, "Shape_Length": 19276.300657915905, "Shape_Area": 19868043.281357985, "total_2021": 3127, "total_2022": 3565 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.300390982406057, 29.695877186122413 ], [ -95.300307982663497, 29.695678185799423 ], [ -95.300174982782025, 29.695362186197638 ], [ -95.29976598286342, 29.694449185659586 ], [ -95.299371982398327, 29.693525186055698 ], [ -95.299006982237685, 29.692719185795909 ], [ -95.29887598158939, 29.692315185805825 ], [ -95.298804982045013, 29.691372185250877 ], [ -95.298777981624042, 29.690490185580057 ], [ -95.298777982401774, 29.689615185069801 ], [ -95.298721981705128, 29.689289184693262 ], [ -95.298693982078902, 29.689188184717569 ], [ -95.298668982138182, 29.689053185270847 ], [ -95.298602981369882, 29.688842185087523 ], [ -95.298562981378893, 29.688751184747176 ], [ -95.298432981763455, 29.68846018445678 ], [ -95.298064981558113, 29.687853185042286 ], [ -95.297921982145013, 29.687661185062982 ], [ -95.297479981547966, 29.686988184869172 ], [ -95.296903981148276, 29.686104184063382 ], [ -95.296693981202324, 29.685770184067405 ], [ -95.296316980673765, 29.685154184553863 ], [ -95.295805980644346, 29.685147184322723 ], [ -95.295411981398374, 29.685158184027649 ], [ -95.295211980939385, 29.685160184134638 ], [ -95.293001980153448, 29.685227184717593 ], [ -95.290921979523873, 29.685259184020087 ], [ -95.290427979346092, 29.685254184146277 ], [ -95.290239979094594, 29.68526118441396 ], [ -95.289272979841286, 29.685305184588703 ], [ -95.288910979114945, 29.685311184439779 ], [ -95.286940978228145, 29.685366184685797 ], [ -95.284333977786389, 29.685408184951616 ], [ -95.283496977511405, 29.685430184662966 ], [ -95.28235497710611, 29.685449184892772 ], [ -95.281708977112643, 29.685461184777811 ], [ -95.280298977468689, 29.685492185226011 ], [ -95.278924977105163, 29.685504184505472 ], [ -95.278504976876292, 29.685536185241368 ], [ -95.278320976083279, 29.685632184870073 ], [ -95.278118976626189, 29.685756185100288 ], [ -95.278233976467462, 29.685875184604015 ], [ -95.279097977066002, 29.686767184713347 ], [ -95.280264976635891, 29.687971185575552 ], [ -95.28362197801404, 29.691364185405927 ], [ -95.284128978418266, 29.69189418580541 ], [ -95.284556978225154, 29.692342185785119 ], [ -95.284772978273253, 29.692582186056516 ], [ -95.285110979052718, 29.693060186035883 ], [ -95.285271979010489, 29.69331818586836 ], [ -95.285812979244767, 29.693954186136359 ], [ -95.286417978895287, 29.694665186088187 ], [ -95.28665997886786, 29.695017186437404 ], [ -95.286801979027217, 29.695287186730919 ], [ -95.286869979158354, 29.695481186398034 ], [ -95.28693097888528, 29.695653186221389 ], [ -95.286952978727172, 29.695751187005207 ], [ -95.287018978799694, 29.69604418642578 ], [ -95.28764997907605, 29.696582186627314 ], [ -95.288155979619091, 29.697023187107483 ], [ -95.288339979541803, 29.697153186956012 ], [ -95.288517979300735, 29.697281186843487 ], [ -95.288738979449619, 29.697454187244343 ], [ -95.288761979405564, 29.697448187119299 ], [ -95.288919979401626, 29.697413186501514 ], [ -95.289319980088962, 29.697306187164624 ], [ -95.289975979748618, 29.697131186520455 ], [ -95.290264979634529, 29.697054186689204 ], [ -95.29104498068763, 29.696815187056071 ], [ -95.291548980465521, 29.696695186784787 ], [ -95.291806980900787, 29.696616186872969 ], [ -95.291967980074972, 29.696565186861648 ], [ -95.292221981014379, 29.696483186772852 ], [ -95.292436980200719, 29.696413186490307 ], [ -95.292655980362326, 29.696343186510834 ], [ -95.292835981046096, 29.696277186901259 ], [ -95.293791980681348, 29.695926186594544 ], [ -95.29469598160189, 29.695651186158173 ], [ -95.295298981100245, 29.695557186620242 ], [ -95.295396981304691, 29.695544186397104 ], [ -95.296109981846755, 29.695534186019088 ], [ -95.29673398153497, 29.695535186076437 ], [ -95.297625981814079, 29.695607185938393 ], [ -95.297864982013579, 29.695633186537382 ], [ -95.298053981546659, 29.695653186196825 ], [ -95.298456981732969, 29.695696185819667 ], [ -95.299844982173042, 29.695826186087189 ], [ -95.300390982406057, 29.695877186122413 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1194, "Tract": "48201254800", "Area_SqMi": 8.1803348757072012, "total_2009": 3921, "total_2010": 4072, "total_2011": 4337, "total_2012": 4962, "total_2013": 5070, "total_2014": 4595, "total_2015": 4744, "total_2016": 4738, "total_2017": 4791, "total_2018": 4836, "total_2019": 4884, "total_2020": 5224, "age1": 569, "age2": 2921, "age3": 805, "earn1": 150, "earn2": 350, "earn3": 3795, "naics_s01": 0, "naics_s02": 1102, "naics_s03": 30, "naics_s04": 152, "naics_s05": 1491, "naics_s06": 51, "naics_s07": 23, "naics_s08": 251, "naics_s09": 0, "naics_s10": 0, "naics_s11": 82, "naics_s12": 156, "naics_s13": 10, "naics_s14": 37, "naics_s15": 8, "naics_s16": 205, "naics_s17": 356, "naics_s18": 8, "naics_s19": 224, "naics_s20": 109, "race1": 3401, "race2": 564, "race3": 30, "race4": 214, "race5": 5, "race6": 81, "ethnicity1": 3285, "ethnicity2": 1010, "edu1": 544, "edu2": 967, "edu3": 1205, "edu4": 1010, "Shape_Length": 70818.432851218313, "Shape_Area": 228053735.55165109, "total_2021": 4743, "total_2022": 4295 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.036286916942117, 29.752850207044464 ], [ -95.036339917607421, 29.752332206948378 ], [ -95.03627791778726, 29.752006207013316 ], [ -95.035981916762992, 29.751538206627227 ], [ -95.035666916804502, 29.751235206285291 ], [ -95.035398917514044, 29.751105206564965 ], [ -95.035242917476992, 29.7510302060717 ], [ -95.03445991640568, 29.750759206577591 ], [ -95.033955916300371, 29.75051820658155 ], [ -95.033879916691589, 29.750462206805182 ], [ -95.033787916841987, 29.750394206048725 ], [ -95.033820916270841, 29.750302206608691 ], [ -95.03405291707972, 29.750056206200906 ], [ -95.034287916599837, 29.749637206571652 ], [ -95.034445916358365, 29.749530206515075 ], [ -95.034397916790937, 29.749464206366866 ], [ -95.034473916991317, 29.749426205803275 ], [ -95.034605916676881, 29.74929920642337 ], [ -95.034668916464639, 29.749195206137191 ], [ -95.034668916680374, 29.749151205945314 ], [ -95.034643916704709, 29.749129206146282 ], [ -95.034594916240295, 29.749111206525846 ], [ -95.034555916978405, 29.749096205757457 ], [ -95.034505916529156, 29.749046206395143 ], [ -95.034196916990865, 29.748936205995307 ], [ -95.034070917020969, 29.748865206522215 ], [ -95.033925916083234, 29.748749206374875 ], [ -95.033676916852372, 29.748570205962334 ], [ -95.033776916318416, 29.748555206204887 ], [ -95.034399916450269, 29.748463205842661 ], [ -95.0345819160367, 29.737309204079367 ], [ -95.034660915676014, 29.732491202693012 ], [ -95.034686916078883, 29.7309302025199 ], [ -95.034628915737542, 29.730726202723947 ], [ -95.034572916416764, 29.730286202637437 ], [ -95.033665915614037, 29.730333201943502 ], [ -95.031860914838717, 29.729841201809236 ], [ -95.029805914689476, 29.729708202406261 ], [ -95.028307914374821, 29.7294492022105 ], [ -95.026252914071605, 29.728444202183187 ], [ -95.024887913391979, 29.727685201694044 ], [ -95.023817913095442, 29.726752201784837 ], [ -95.023394912869676, 29.726407201873233 ], [ -95.023066913181722, 29.726027201867044 ], [ -95.022692912702595, 29.725677201449777 ], [ -95.022254913001248, 29.725271202100259 ], [ -95.021922912125746, 29.724780201897264 ], [ -95.021600911924608, 29.724151201705897 ], [ -95.021148912395077, 29.723417201235765 ], [ -95.020999912197851, 29.722535201229572 ], [ -95.020935912163324, 29.721209201049565 ], [ -95.020897912164159, 29.720336200724311 ], [ -95.019964911708342, 29.720322200305098 ], [ -95.018664911782921, 29.720317201100229 ], [ -95.01856591152756, 29.720259200328893 ], [ -95.018481910892774, 29.720175200699654 ], [ -95.018488911843136, 29.720201200810738 ], [ -95.018360911116034, 29.72016020076364 ], [ -95.01803391140723, 29.720298201197249 ], [ -95.017362910725481, 29.720511201184159 ], [ -95.017049910495302, 29.720608201220809 ], [ -95.016893911137757, 29.720631201014609 ], [ -95.016119911042153, 29.721160201408729 ], [ -95.015383910935441, 29.721591200790481 ], [ -95.01518291036426, 29.721723201208214 ], [ -95.015119910939589, 29.721833201112378 ], [ -95.014986910185968, 29.721943200907415 ], [ -95.014740910793165, 29.722118201126783 ], [ -95.014564910772791, 29.722267201544007 ], [ -95.014041910126622, 29.722575201615602 ], [ -95.013663910656547, 29.722734201530898 ], [ -95.013568909957343, 29.722745201643921 ], [ -95.0135129102202, 29.722723200981076 ], [ -95.01340591060054, 29.722640201784536 ], [ -95.013222910450679, 29.722569201241921 ], [ -95.01301490998614, 29.722547201327053 ], [ -95.012838909818015, 29.722497201118948 ], [ -95.012777909853241, 29.722467201737793 ], [ -95.012517910339511, 29.722338200963225 ], [ -95.012415909691569, 29.722325201264592 ], [ -95.012038909470505, 29.722277201420983 ], [ -95.01187490935591, 29.722310200930309 ], [ -95.011162909602987, 29.722425201173365 ], [ -95.010815909348537, 29.722381201364161 ], [ -95.010116909248893, 29.722315201264948 ], [ -95.009892909377044, 29.72224020140791 ], [ -95.009606909471685, 29.722144201785895 ], [ -95.009272909162206, 29.722056201621044 ], [ -95.009133908578036, 29.722056201771835 ], [ -95.008800909164705, 29.722122201627844 ], [ -95.008529908551878, 29.722182201494789 ], [ -95.00842190896347, 29.722193201471278 ], [ -95.008377909099679, 29.722171201453985 ], [ -95.008297908752979, 29.722106201287247 ], [ -95.008283908731912, 29.722094201539168 ], [ -95.008283908941351, 29.72206720159128 ], [ -95.008189908505955, 29.722017201556834 ], [ -95.008053908765504, 29.721985201168984 ], [ -95.007955908673708, 29.721962201778656 ], [ -95.007880908544607, 29.721984201091065 ], [ -95.007754908658271, 29.721995201145926 ], [ -95.007648908484555, 29.721960201816746 ], [ -95.007643908114744, 29.722020201431189 ], [ -95.007685909091038, 29.72205120138247 ], [ -95.007700908243763, 29.722116201740164 ], [ -95.007653908611545, 29.722388201981314 ], [ -95.007604909048567, 29.722675201635163 ], [ -95.007588908571449, 29.722773201217276 ], [ -95.007579908480324, 29.722856201454736 ], [ -95.007549908897587, 29.723188201608853 ], [ -95.007496909084637, 29.723575201487829 ], [ -95.007419909097067, 29.724044201890727 ], [ -95.007343908742087, 29.724508201794443 ], [ -95.007268908191236, 29.724962201685841 ], [ -95.007193908841728, 29.725415202172979 ], [ -95.007117909159149, 29.725889202703549 ], [ -95.007041908642037, 29.726356202174319 ], [ -95.006971908739928, 29.726776202796824 ], [ -95.006869908865824, 29.727168202485565 ], [ -95.005391908153257, 29.726965203002628 ], [ -95.00393590810711, 29.726759202552447 ], [ -95.004003908281888, 29.726372202810925 ], [ -95.004040907751289, 29.726146202058118 ], [ -95.004066908380139, 29.725965201989681 ], [ -95.004142908389213, 29.725502202100703 ], [ -95.0042169082692, 29.725031202623079 ], [ -95.004275907540105, 29.724656201810287 ], [ -95.003052907686694, 29.725394202487387 ], [ -95.002620907772041, 29.725678202527728 ], [ -95.002181907192877, 29.725953202022076 ], [ -95.001780907118828, 29.726273202667684 ], [ -95.001437907052235, 29.72658520272919 ], [ -95.000611906721772, 29.725873202735681 ], [ -95.000406907066207, 29.725772202239032 ], [ -95.000126906865958, 29.725700202866975 ], [ -94.999115906923265, 29.725553202532755 ], [ -94.997324906585078, 29.725332202790568 ], [ -94.996673905923544, 29.725254202785418 ], [ -94.996485905748116, 29.725228202549886 ], [ -94.996385906085592, 29.72521320211068 ], [ -94.996286905610816, 29.725183202159371 ], [ -94.995820905692142, 29.725046202452539 ], [ -94.995619906053264, 29.724988202779546 ], [ -94.993355905371217, 29.724212202609714 ], [ -94.992704904550578, 29.723992202452362 ], [ -94.992479904519868, 29.723999202468086 ], [ -94.992302904796517, 29.723961202577023 ], [ -94.992099904449589, 29.7238952022619 ], [ -94.991777905007723, 29.72378820257634 ], [ -94.991610905036353, 29.723732202740745 ], [ -94.991227904636034, 29.723591202214688 ], [ -94.990679904366857, 29.723381202612565 ], [ -94.990470904200151, 29.723209202706833 ], [ -94.990280904294224, 29.723143202339706 ], [ -94.989337904098008, 29.722815202444323 ], [ -94.988795904066095, 29.722628202020086 ], [ -94.988494904020811, 29.723184202254529 ], [ -94.988388903865243, 29.72348320231422 ], [ -94.988441903323775, 29.723736202653026 ], [ -94.988710903772869, 29.724035202726299 ], [ -94.988691903602387, 29.724306202738624 ], [ -94.989247903806131, 29.725432203083976 ], [ -94.989706904620633, 29.726210203025278 ], [ -94.989954904103769, 29.727032202661409 ], [ -94.989994904696658, 29.727296203056383 ], [ -94.989614903898627, 29.729966203482203 ], [ -94.989565904549949, 29.730508203892448 ], [ -94.98936290424767, 29.73098120404152 ], [ -94.988703903979712, 29.731839203873804 ], [ -94.988619903787054, 29.732147204084082 ], [ -94.98813390379074, 29.732655204428731 ], [ -94.987559903986082, 29.732979204251972 ], [ -94.987446903952588, 29.733258204767026 ], [ -94.987232904157608, 29.733541204896873 ], [ -94.986935904192421, 29.733830205025399 ], [ -94.986436903863492, 29.733962204500145 ], [ -94.985990903496258, 29.734069204707975 ], [ -94.985408903587782, 29.734123204605591 ], [ -94.984545902978084, 29.733992204935355 ], [ -94.983561902576824, 29.734623204917781 ], [ -94.983472903128018, 29.73480320466814 ], [ -94.983268903022761, 29.735219204957534 ], [ -94.983336902786945, 29.736108204926445 ], [ -94.983408902512465, 29.736159205531411 ], [ -94.983442902580137, 29.736423205547478 ], [ -94.983408903275034, 29.736628205418956 ], [ -94.983481903462874, 29.736701204870624 ], [ -94.983406902730081, 29.736920205049351 ], [ -94.983625903134069, 29.738600205848165 ], [ -94.983946903591431, 29.738996206156965 ], [ -94.98432190343236, 29.739623206216319 ], [ -94.984577903170873, 29.740108205621915 ], [ -94.984708903375221, 29.740470205591432 ], [ -94.984743903688482, 29.740617206198912 ], [ -94.98380890342635, 29.742077206606556 ], [ -94.983768903001788, 29.742172206389395 ], [ -94.983724903196162, 29.742249206022407 ], [ -94.983585902952029, 29.74239220612036 ], [ -94.98355490351716, 29.742464206849146 ], [ -94.98354890348125, 29.742535206639353 ], [ -94.983560902898262, 29.742651206531995 ], [ -94.98352990299729, 29.742695206070234 ], [ -94.98346390295626, 29.74274420656246 ], [ -94.983887903563541, 29.743213206534268 ], [ -94.984104903450131, 29.743467206660696 ], [ -94.984762904049873, 29.744267207032376 ], [ -94.98540090380601, 29.745258206749433 ], [ -94.985527903609608, 29.745439206801191 ], [ -94.985920903997027, 29.745954207069467 ], [ -94.985987903965437, 29.746060207030776 ], [ -94.986011904589716, 29.746096207189634 ], [ -94.98605390395052, 29.746158207363305 ], [ -94.986319903966958, 29.746548207209916 ], [ -94.986422903801284, 29.746699206873551 ], [ -94.986740904024401, 29.747167207176592 ], [ -94.987049904943831, 29.747622207101379 ], [ -94.987311904369022, 29.747838207486616 ], [ -94.987405904771791, 29.747921207579555 ], [ -94.987711904712683, 29.748193207337909 ], [ -94.987887904617693, 29.748460207275883 ], [ -94.988102904673639, 29.748729207197737 ], [ -94.988194904278629, 29.748839208060559 ], [ -94.988980904893666, 29.749989208068389 ], [ -94.989068904844757, 29.750114207994159 ], [ -94.989205904707717, 29.750292208235784 ], [ -94.989967905588685, 29.751357207952683 ], [ -94.990478905552848, 29.752071208164413 ], [ -94.990632905365501, 29.752237208566619 ], [ -94.990930905557121, 29.752596208231321 ], [ -94.991209905681288, 29.7529002082806 ], [ -94.991595905885205, 29.753262208586911 ], [ -94.992022905802045, 29.753631208269411 ], [ -94.992441905807297, 29.753952208281682 ], [ -94.992909906518335, 29.754256208216429 ], [ -94.993435906785649, 29.7545352082611 ], [ -94.994107906208001, 29.754909208881937 ], [ -94.995250906489474, 29.755546208506882 ], [ -94.995617907168807, 29.75573520891713 ], [ -94.995713906576597, 29.755763209196175 ], [ -94.995882906901727, 29.755849208894606 ], [ -94.996134907308701, 29.75598020885263 ], [ -94.998084907938889, 29.756997208941133 ], [ -94.998383907568865, 29.757175209437065 ], [ -94.998840907492053, 29.757386209432216 ], [ -94.999330907604332, 29.757638208941785 ], [ -95.00168590878927, 29.758904209363813 ], [ -95.002251908881505, 29.759219209568602 ], [ -95.00236790852955, 29.759294208899583 ], [ -95.002851909402438, 29.759617209261247 ], [ -95.003004909521877, 29.759727209524499 ], [ -95.003256909626074, 29.759913209510401 ], [ -95.003695908883302, 29.76029120989589 ], [ -95.004134908954981, 29.760790209961772 ], [ -95.00525490973925, 29.761907209861263 ], [ -95.005616909505264, 29.762377209648015 ], [ -95.005998910203516, 29.762772210290262 ], [ -95.006239909826931, 29.763021210060153 ], [ -95.006384910474651, 29.763171209873711 ], [ -95.00714191012213, 29.763948209733257 ], [ -95.008340911221438, 29.765179210413738 ], [ -95.008547910720651, 29.765392209955007 ], [ -95.009140910831391, 29.76598321076397 ], [ -95.010606911210672, 29.767454210384908 ], [ -95.010806911624471, 29.767642210700217 ], [ -95.011173911342894, 29.767962210478117 ], [ -95.011551911487189, 29.768229210869794 ], [ -95.012107911860582, 29.768676210521804 ], [ -95.012988912430473, 29.76955921094687 ], [ -95.013335911881327, 29.769872211318891 ], [ -95.013546912625017, 29.770058210712822 ], [ -95.013829912648148, 29.770306211342636 ], [ -95.013878912157395, 29.770348211606706 ], [ -95.014213912232961, 29.770629211025476 ], [ -95.01466991241432, 29.770996211561936 ], [ -95.014814912965178, 29.771139211192857 ], [ -95.015531913330804, 29.77184521117762 ], [ -95.01583191304438, 29.772194211556322 ], [ -95.016074912896741, 29.77244321135375 ], [ -95.016420913270409, 29.772796211169027 ], [ -95.016616913661238, 29.772993211619447 ], [ -95.016719913605144, 29.77309721185679 ], [ -95.016809913120028, 29.773187212076568 ], [ -95.01712391361626, 29.773502211545946 ], [ -95.017410913022289, 29.773718211823855 ], [ -95.017668913830704, 29.773980211498284 ], [ -95.01923491359689, 29.775567211650387 ], [ -95.019562914179389, 29.775921212314518 ], [ -95.020018914240538, 29.776514212606671 ], [ -95.020297914782631, 29.77683821277444 ], [ -95.020361914335993, 29.776910211915034 ], [ -95.020892914821914, 29.777441212610654 ], [ -95.02125091425431, 29.777758212749646 ], [ -95.021514914280075, 29.778004212191075 ], [ -95.021722914908466, 29.778176212254788 ], [ -95.021849914648868, 29.778257212545288 ], [ -95.02197391462245, 29.778325212541588 ], [ -95.022207914493947, 29.778457212700086 ], [ -95.022536914842362, 29.778620212293578 ], [ -95.023083914758843, 29.778872212559779 ], [ -95.023910914950534, 29.779226212756392 ], [ -95.024922915609949, 29.779647213017434 ], [ -95.026162916289479, 29.780214212434991 ], [ -95.027802916513153, 29.78083621321916 ], [ -95.029578917179492, 29.781603212574172 ], [ -95.031715917927897, 29.782508213158401 ], [ -95.032036917778299, 29.782633213141331 ], [ -95.032032917867625, 29.781538213183811 ], [ -95.032018917975222, 29.781072212908608 ], [ -95.032024917361937, 29.779500212124816 ], [ -95.032021917608176, 29.778886212415802 ], [ -95.032016916963784, 29.77750921228694 ], [ -95.031955916792413, 29.775594211430548 ], [ -95.031845916646134, 29.772330211095401 ], [ -95.031856916790517, 29.769866210274483 ], [ -95.031865916553073, 29.769363210515507 ], [ -95.031863916953895, 29.76880021053524 ], [ -95.031901917027355, 29.767601210133286 ], [ -95.031943917110695, 29.764248209248116 ], [ -95.031950916792454, 29.763650209027666 ], [ -95.031953916453261, 29.763441209123339 ], [ -95.031958916968009, 29.763082208753282 ], [ -95.031957916609599, 29.76279620940749 ], [ -95.031966916566688, 29.76261520902225 ], [ -95.031990916308075, 29.76243220909047 ], [ -95.032031916630586, 29.762244208532792 ], [ -95.032094916654756, 29.762043208954889 ], [ -95.032155916624205, 29.761892208550453 ], [ -95.032599916676176, 29.761058208413068 ], [ -95.032971917072842, 29.76040320848201 ], [ -95.033674916705991, 29.758766207913077 ], [ -95.03435891700741, 29.757217207463881 ], [ -95.034583917399232, 29.756755207987702 ], [ -95.035271917573439, 29.755166207429365 ], [ -95.03598091715854, 29.753637206699572 ], [ -95.036286916942117, 29.752850207044464 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1195, "Tract": "48201221800", "Area_SqMi": 1.2134586915978023, "total_2009": 747, "total_2010": 901, "total_2011": 845, "total_2012": 876, "total_2013": 1103, "total_2014": 1087, "total_2015": 1184, "total_2016": 1020, "total_2017": 1029, "total_2018": 932, "total_2019": 915, "total_2020": 988, "age1": 226, "age2": 579, "age3": 221, "earn1": 131, "earn2": 273, "earn3": 622, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 538, "naics_s05": 121, "naics_s06": 16, "naics_s07": 96, "naics_s08": 62, "naics_s09": 0, "naics_s10": 18, "naics_s11": 46, "naics_s12": 0, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 24, "naics_s17": 0, "naics_s18": 45, "naics_s19": 54, "naics_s20": 0, "race1": 822, "race2": 121, "race3": 13, "race4": 50, "race5": 1, "race6": 19, "ethnicity1": 522, "ethnicity2": 504, "edu1": 263, "edu2": 211, "edu3": 208, "edu4": 118, "Shape_Length": 26796.278342416495, "Shape_Area": 33829151.466439657, "total_2021": 907, "total_2022": 1026 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.370542009128897, 29.892552224054924 ], [ -95.370431009885635, 29.892100224144965 ], [ -95.369935009206628, 29.890087223602784 ], [ -95.369774009544088, 29.889451223268274 ], [ -95.368892008477076, 29.885977223237084 ], [ -95.368780008876087, 29.885534222580972 ], [ -95.368609009020915, 29.884862222654558 ], [ -95.368237008794097, 29.883395222621079 ], [ -95.368234008667542, 29.883384222248786 ], [ -95.367326007970703, 29.879694221916083 ], [ -95.367042007459048, 29.878536221415583 ], [ -95.366537007583929, 29.876482220859963 ], [ -95.366334007854121, 29.875664220914562 ], [ -95.365556007018952, 29.872519220182138 ], [ -95.36547600731447, 29.872196220181003 ], [ -95.365092006847448, 29.870737220116933 ], [ -95.364773006685795, 29.870739219726342 ], [ -95.364664006623769, 29.870740219412568 ], [ -95.364510006674124, 29.87074521942095 ], [ -95.364386006900446, 29.870746219459658 ], [ -95.36281300658527, 29.870759219840419 ], [ -95.361965006137112, 29.870817220131002 ], [ -95.360899006319542, 29.870841220247048 ], [ -95.359990005476234, 29.87084822041988 ], [ -95.358968005127807, 29.870862219943483 ], [ -95.358228005430988, 29.870871219975776 ], [ -95.356996004541159, 29.87089521998297 ], [ -95.3561900049217, 29.870903219743813 ], [ -95.353118003811545, 29.870955219890277 ], [ -95.352053003440219, 29.870981220578258 ], [ -95.351898003343138, 29.870997220046501 ], [ -95.352581003925209, 29.872248220443115 ], [ -95.352655003646518, 29.872386220673544 ], [ -95.352824003782047, 29.872699220704678 ], [ -95.352852004211741, 29.87275222048012 ], [ -95.353218003835863, 29.873452221010979 ], [ -95.353336004643964, 29.873672221247546 ], [ -95.353986004010437, 29.874885221411091 ], [ -95.354148004094867, 29.875177221410667 ], [ -95.354416004414077, 29.875678221248673 ], [ -95.354562004607928, 29.875943221141068 ], [ -95.354838004611537, 29.87646122095358 ], [ -95.354933004848704, 29.876647221156698 ], [ -95.355226005082812, 29.877219221867691 ], [ -95.355229004936646, 29.877237221646936 ], [ -95.355259004718093, 29.877478221573615 ], [ -95.355269004708859, 29.877642221935119 ], [ -95.355261004793093, 29.877971222066968 ], [ -95.355225005340202, 29.878776221390051 ], [ -95.355196004893031, 29.879583222258965 ], [ -95.355185004858086, 29.87998122226108 ], [ -95.355175005050626, 29.880372222354854 ], [ -95.355172005141696, 29.880471222480605 ], [ -95.355161004773123, 29.880873221951333 ], [ -95.355151004694193, 29.881149222315816 ], [ -95.355140005291261, 29.8813412222522 ], [ -95.355131004726061, 29.881602222626444 ], [ -95.355127004857465, 29.881826222539267 ], [ -95.355111005465886, 29.882252222543887 ], [ -95.355093004663118, 29.882706222977664 ], [ -95.355081004579745, 29.88366022239396 ], [ -95.355038005243372, 29.884905223349481 ], [ -95.355020004859796, 29.88559422295128 ], [ -95.354986005112067, 29.886447223634399 ], [ -95.354994004757089, 29.886638222993835 ], [ -95.354995004753917, 29.886665223629052 ], [ -95.354964004755018, 29.887221223757976 ], [ -95.354926004778491, 29.887602223792129 ], [ -95.354936004935013, 29.888081223577689 ], [ -95.354933005508826, 29.888219223649575 ], [ -95.354920005612755, 29.888818223947808 ], [ -95.354897004921696, 29.889414223768728 ], [ -95.354847005407223, 29.89062622425849 ], [ -95.354829005766561, 29.891459224457257 ], [ -95.354742005806543, 29.894257224552813 ], [ -95.354746005776661, 29.894544225409174 ], [ -95.354794005592396, 29.894545225249583 ], [ -95.354856005724571, 29.894537225247664 ], [ -95.354950005108861, 29.894524224687032 ], [ -95.355634005733947, 29.894429225244799 ], [ -95.355936005404843, 29.894413225191055 ], [ -95.356138005642563, 29.894435224778491 ], [ -95.356347005386723, 29.894484225051613 ], [ -95.356504006253758, 29.89455622471889 ], [ -95.3567690062049, 29.894731225289949 ], [ -95.356902005657915, 29.894770225109387 ], [ -95.357047006039508, 29.894775225294811 ], [ -95.357117005782925, 29.894753224971893 ], [ -95.357344006414749, 29.89465422474068 ], [ -95.357596006089693, 29.894478224882842 ], [ -95.357836006371926, 29.894379224705276 ], [ -95.35827700660505, 29.894324224784089 ], [ -95.358448006565979, 29.894231224426086 ], [ -95.358712006252702, 29.893972224366934 ], [ -95.358984007046345, 29.893900224540545 ], [ -95.359224006586871, 29.893741224817344 ], [ -95.35941900617722, 29.893653224255214 ], [ -95.359589007170925, 29.893653224318889 ], [ -95.359735007013938, 29.893625225038843 ], [ -95.359842006275414, 29.893576224763258 ], [ -95.360801006773443, 29.893015224380296 ], [ -95.361192006673178, 29.892860224631111 ], [ -95.361246006872832, 29.892794224537646 ], [ -95.361324006695, 29.892701224023519 ], [ -95.361665007189103, 29.892470224693167 ], [ -95.361936006712284, 29.892437224402418 ], [ -95.362239007395317, 29.892437224008663 ], [ -95.362390007344416, 29.89245322449338 ], [ -95.362523007454485, 29.892448224509689 ], [ -95.362693007101001, 29.89236522451791 ], [ -95.362952007381949, 29.892310224702992 ], [ -95.363198007444396, 29.892282224488493 ], [ -95.363640007977196, 29.892282224503834 ], [ -95.363974007455184, 29.89233222398709 ], [ -95.364107008052173, 29.892365224164188 ], [ -95.364208007492337, 29.892348224090025 ], [ -95.364422008211903, 29.892194224464973 ], [ -95.364971007885984, 29.891913224430997 ], [ -95.365122008059629, 29.891842224390782 ], [ -95.365267007980549, 29.891803224219299 ], [ -95.365324007569512, 29.891765224012477 ], [ -95.365362008197394, 29.891715224029713 ], [ -95.365324007542526, 29.891600223797958 ], [ -95.365318007661827, 29.891539223870041 ], [ -95.365336008289248, 29.891462224152392 ], [ -95.365381008341316, 29.891396224165248 ], [ -95.365494008435192, 29.891347224082228 ], [ -95.365538008003838, 29.891303223871251 ], [ -95.365709008554887, 29.891303224410208 ], [ -95.365986008660315, 29.891352223827784 ], [ -95.366497008666485, 29.891555223993517 ], [ -95.366718008481897, 29.891742224191852 ], [ -95.36689500868394, 29.891847224510041 ], [ -95.366996008682548, 29.891885224225639 ], [ -95.367539008316641, 29.891923223692782 ], [ -95.36783500894667, 29.891934223752187 ], [ -95.367980008654825, 29.891989224295031 ], [ -95.368460009011983, 29.892418224117478 ], [ -95.368504008421183, 29.892484223892989 ], [ -95.368580009233824, 29.892561224509766 ], [ -95.368700008808503, 29.892643224067385 ], [ -95.368908008561363, 29.892687224043804 ], [ -95.369300009509871, 29.892687224251627 ], [ -95.3698230097135, 29.892670223770892 ], [ -95.370003009065456, 29.892640224122161 ], [ -95.37013000881943, 29.892620224049761 ], [ -95.370355009123557, 29.892583223804039 ], [ -95.370542009128897, 29.892552224054924 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1196, "Tract": "48201221900", "Area_SqMi": 1.0284113902178134, "total_2009": 256, "total_2010": 285, "total_2011": 359, "total_2012": 438, "total_2013": 534, "total_2014": 388, "total_2015": 256, "total_2016": 234, "total_2017": 218, "total_2018": 195, "total_2019": 213, "total_2020": 197, "age1": 26, "age2": 107, "age3": 66, "earn1": 46, "earn2": 86, "earn3": 67, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 37, "naics_s05": 50, "naics_s06": 6, "naics_s07": 74, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 7, "naics_s15": 7, "naics_s16": 3, "naics_s17": 0, "naics_s18": 5, "naics_s19": 9, "naics_s20": 0, "race1": 173, "race2": 9, "race3": 0, "race4": 14, "race5": 0, "race6": 3, "ethnicity1": 99, "ethnicity2": 100, "edu1": 70, "edu2": 35, "edu3": 38, "edu4": 30, "Shape_Length": 24063.337548987169, "Shape_Area": 28670349.415587146, "total_2021": 209, "total_2022": 199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355261004793093, 29.877971222066968 ], [ -95.355269004708859, 29.877642221935119 ], [ -95.355259004718093, 29.877478221573615 ], [ -95.355229004936646, 29.877237221646936 ], [ -95.355226005082812, 29.877219221867691 ], [ -95.354933004848704, 29.876647221156698 ], [ -95.354838004611537, 29.87646122095358 ], [ -95.354562004607928, 29.875943221141068 ], [ -95.354416004414077, 29.875678221248673 ], [ -95.354148004094867, 29.875177221410667 ], [ -95.353986004010437, 29.874885221411091 ], [ -95.353336004643964, 29.873672221247546 ], [ -95.353218003835863, 29.873452221010979 ], [ -95.352852004211741, 29.87275222048012 ], [ -95.352824003782047, 29.872699220704678 ], [ -95.352655003646518, 29.872386220673544 ], [ -95.352581003925209, 29.872248220443115 ], [ -95.351898003343138, 29.870997220046501 ], [ -95.351785003270379, 29.870997220425579 ], [ -95.351743003307746, 29.870997220024766 ], [ -95.351348003219456, 29.870998220218134 ], [ -95.349816002720786, 29.871001220071268 ], [ -95.348928002538841, 29.871020220078364 ], [ -95.345630002208793, 29.871040220216209 ], [ -95.344219001401314, 29.871048220689275 ], [ -95.342610001006108, 29.87107122048852 ], [ -95.341272001084704, 29.871077220409209 ], [ -95.341104000887825, 29.871078221033301 ], [ -95.341050000703689, 29.871378221173149 ], [ -95.340968001125859, 29.871989220677559 ], [ -95.340880000439626, 29.872544220639952 ], [ -95.34085500093471, 29.872934220780142 ], [ -95.341310000779117, 29.873759220976684 ], [ -95.341535001549218, 29.87431722136704 ], [ -95.341650001537928, 29.874572221012709 ], [ -95.341758000746125, 29.874705221623891 ], [ -95.341821001082153, 29.874781221678376 ], [ -95.342036001402505, 29.875003221241869 ], [ -95.342087001378502, 29.875047221115331 ], [ -95.342276001847537, 29.875157221831358 ], [ -95.34238300092116, 29.875240221627941 ], [ -95.34256600109812, 29.8754262214463 ], [ -95.342838001508625, 29.875723221587553 ], [ -95.343387001347324, 29.876377222162507 ], [ -95.343835002036542, 29.876889221632215 ], [ -95.344037002434874, 29.877213221916925 ], [ -95.344031001847, 29.877279221988026 ], [ -95.344100002010364, 29.877735222024096 ], [ -95.344132002312094, 29.878395222356147 ], [ -95.344075002396266, 29.878664222079497 ], [ -95.34386700166128, 29.879264221921982 ], [ -95.343873001572391, 29.879407222000445 ], [ -95.343914002167651, 29.879578222652881 ], [ -95.343937001518611, 29.879671222062601 ], [ -95.344006001753584, 29.879770222061421 ], [ -95.344132002491364, 29.880011222573305 ], [ -95.344373002444897, 29.880548222708981 ], [ -95.344448002396632, 29.880715222925467 ], [ -95.344492002109249, 29.880875222395368 ], [ -95.344492001770291, 29.880974223043225 ], [ -95.344480001721877, 29.881067222727602 ], [ -95.344442002396178, 29.881149222982593 ], [ -95.344424001930449, 29.881178222654437 ], [ -95.344354002396571, 29.881292222372672 ], [ -95.344196002469744, 29.881463222309876 ], [ -95.344120002335117, 29.881628222732303 ], [ -95.344127002664749, 29.881688222414574 ], [ -95.34408900231206, 29.881749222622226 ], [ -95.343672002290205, 29.882216223362729 ], [ -95.343452001862886, 29.882398222914297 ], [ -95.343275001866132, 29.882557223269004 ], [ -95.342808002206127, 29.883107222913324 ], [ -95.342723002125751, 29.88332622316037 ], [ -95.342676002163159, 29.883448223556819 ], [ -95.342654001484107, 29.88378022306858 ], [ -95.342607001775463, 29.884493223077175 ], [ -95.342601001391188, 29.884724223656715 ], [ -95.342563001754073, 29.884971223122747 ], [ -95.342563001671778, 29.885076223543134 ], [ -95.34263900166134, 29.885389223889806 ], [ -95.342651001775039, 29.885526223225899 ], [ -95.342670002211634, 29.885614224064138 ], [ -95.342727001638423, 29.885741223934122 ], [ -95.342752001759706, 29.88582922402027 ], [ -95.342746001692419, 29.886159224146926 ], [ -95.342860002455424, 29.886549223466304 ], [ -95.34296800257772, 29.886746223833985 ], [ -95.343037002225202, 29.886873223839181 ], [ -95.343125001817029, 29.88697222370347 ], [ -95.343251001709092, 29.887077223730177 ], [ -95.343384002171675, 29.887165223673438 ], [ -95.343605002752952, 29.887203223578339 ], [ -95.34379400278273, 29.887263223920741 ], [ -95.343952001902593, 29.887373223931945 ], [ -95.344110002877343, 29.887560224251857 ], [ -95.344198002474783, 29.887719224413264 ], [ -95.344229002519867, 29.887775223902466 ], [ -95.344324002642892, 29.887967223797098 ], [ -95.344340002424843, 29.888031224416991 ], [ -95.344371002416793, 29.888156224218289 ], [ -95.344381002698526, 29.888198223840909 ], [ -95.344450002215723, 29.888434223730663 ], [ -95.344476002696609, 29.888621223954157 ], [ -95.344419002098988, 29.888929224232456 ], [ -95.344432002638669, 29.88908322453754 ], [ -95.344470002978113, 29.889265224298903 ], [ -95.344495002268047, 29.889583224053396 ], [ -95.344470002310132, 29.889699224164868 ], [ -95.344565002701501, 29.88991922443272 ], [ -95.344685002533723, 29.890007224314783 ], [ -95.345076002608536, 29.890139224827404 ], [ -95.345259003122507, 29.89025422411747 ], [ -95.345713002477993, 29.89069422425441 ], [ -95.345852003413825, 29.890793224658122 ], [ -95.345959002554181, 29.8908482244819 ], [ -95.3460540033917, 29.890853224457214 ], [ -95.346231003493784, 29.890820224169776 ], [ -95.346653003208843, 29.890671224819311 ], [ -95.346868002854876, 29.890627224434585 ], [ -95.346944003095956, 29.890660224349432 ], [ -95.347032002970508, 29.890737224093325 ], [ -95.347240002869029, 29.891078224544454 ], [ -95.347316003078561, 29.891177225005386 ], [ -95.347549003823062, 29.891402224411873 ], [ -95.347701003647572, 29.891639225068865 ], [ -95.347802003988519, 29.891881224370277 ], [ -95.347853003754921, 29.892112225132575 ], [ -95.3479100035389, 29.892452224492136 ], [ -95.347935004025885, 29.892727225040812 ], [ -95.347998003819129, 29.892931224994125 ], [ -95.348093003254661, 29.893057225354053 ], [ -95.348238004122763, 29.89314022467347 ], [ -95.348421003827838, 29.893184225184498 ], [ -95.348623004148706, 29.893200224650869 ], [ -95.349203003709462, 29.893178224741124 ], [ -95.349266003830877, 29.893211225156126 ], [ -95.349431004010228, 29.893348224976794 ], [ -95.349614004534146, 29.893524225226713 ], [ -95.349740004577583, 29.893695224637032 ], [ -95.349923004103246, 29.893815224911716 ], [ -95.350093004631304, 29.893909224750622 ], [ -95.350238004727771, 29.894008225504795 ], [ -95.350497004593052, 29.894162224747941 ], [ -95.350611003961205, 29.894305224761514 ], [ -95.350794004019093, 29.89443122539944 ], [ -95.351021004351679, 29.894453224835406 ], [ -95.351684005178541, 29.894469225506878 ], [ -95.351898004574522, 29.894453224682756 ], [ -95.352207004974701, 29.894398225546212 ], [ -95.352542005372641, 29.894441224727625 ], [ -95.353362004932634, 29.894617225331821 ], [ -95.353608004876889, 29.894545224643931 ], [ -95.353797005173618, 29.894529224711739 ], [ -95.354132005332829, 29.894512225429047 ], [ -95.354523005628252, 29.894540224864432 ], [ -95.354746005776661, 29.894544225409174 ], [ -95.354742005806543, 29.894257224552813 ], [ -95.354829005766561, 29.891459224457257 ], [ -95.354847005407223, 29.89062622425849 ], [ -95.354897004921696, 29.889414223768728 ], [ -95.354920005612755, 29.888818223947808 ], [ -95.354933005508826, 29.888219223649575 ], [ -95.354936004935013, 29.888081223577689 ], [ -95.354926004778491, 29.887602223792129 ], [ -95.354964004755018, 29.887221223757976 ], [ -95.354995004753917, 29.886665223629052 ], [ -95.354994004757089, 29.886638222993835 ], [ -95.354986005112067, 29.886447223634399 ], [ -95.355020004859796, 29.88559422295128 ], [ -95.355038005243372, 29.884905223349481 ], [ -95.355081004579745, 29.88366022239396 ], [ -95.355093004663118, 29.882706222977664 ], [ -95.355111005465886, 29.882252222543887 ], [ -95.355127004857465, 29.881826222539267 ], [ -95.355131004726061, 29.881602222626444 ], [ -95.355140005291261, 29.8813412222522 ], [ -95.355151004694193, 29.881149222315816 ], [ -95.355161004773123, 29.880873221951333 ], [ -95.355172005141696, 29.880471222480605 ], [ -95.355175005050626, 29.880372222354854 ], [ -95.355185004858086, 29.87998122226108 ], [ -95.355196004893031, 29.879583222258965 ], [ -95.355225005340202, 29.878776221390051 ], [ -95.355261004793093, 29.877971222066968 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1197, "Tract": "48201222000", "Area_SqMi": 0.43886746113930353, "total_2009": 468, "total_2010": 625, "total_2011": 640, "total_2012": 641, "total_2013": 732, "total_2014": 785, "total_2015": 872, "total_2016": 972, "total_2017": 1000, "total_2018": 1046, "total_2019": 1045, "total_2020": 1022, "age1": 441, "age2": 384, "age3": 198, "earn1": 243, "earn2": 569, "earn3": 211, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 0, "naics_s06": 2, "naics_s07": 647, "naics_s08": 2, "naics_s09": 44, "naics_s10": 55, "naics_s11": 0, "naics_s12": 48, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 133, "naics_s17": 0, "naics_s18": 83, "naics_s19": 0, "naics_s20": 0, "race1": 734, "race2": 193, "race3": 15, "race4": 64, "race5": 0, "race6": 17, "ethnicity1": 472, "ethnicity2": 551, "edu1": 194, "edu2": 133, "edu3": 156, "edu4": 99, "Shape_Length": 16288.000871129441, "Shape_Area": 12234873.687397147, "total_2021": 1018, "total_2022": 1023 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.342708001273522, 29.867562219939188 ], [ -95.342726001394539, 29.867331220353407 ], [ -95.342632000707113, 29.867100219787996 ], [ -95.342581000802738, 29.866710220026821 ], [ -95.34258100065955, 29.866336220063495 ], [ -95.342524001118349, 29.866122219442747 ], [ -95.342221001392403, 29.865880219273215 ], [ -95.342044000456042, 29.86546821932474 ], [ -95.341918000816605, 29.86502221902203 ], [ -95.341874001214521, 29.86498921979825 ], [ -95.341672000947042, 29.864531219170672 ], [ -95.341615001193901, 29.864401219045511 ], [ -95.34139400074568, 29.864115219585493 ], [ -95.341066000298611, 29.863863219204674 ], [ -95.340744000080221, 29.863769219202648 ], [ -95.340593000924372, 29.863615219053109 ], [ -95.340453000468358, 29.863514218871092 ], [ -95.340328000218136, 29.863423219310299 ], [ -95.3395839998432, 29.863247218938806 ], [ -95.339054000197606, 29.863110219442287 ], [ -95.338814000410224, 29.862939219298084 ], [ -95.33854200034088, 29.862571219015475 ], [ -95.338157999578243, 29.862230218634313 ], [ -95.337993999844727, 29.862181219155286 ], [ -95.335924998869075, 29.86209921943987 ], [ -95.335595999029991, 29.862115218878944 ], [ -95.335148999068366, 29.862028219331538 ], [ -95.334848998502423, 29.861916219489625 ], [ -95.334764998839603, 29.861884218940531 ], [ -95.334662998922553, 29.86184621940254 ], [ -95.334521998843982, 29.861786218904108 ], [ -95.334353998775285, 29.861714218944329 ], [ -95.333928998450602, 29.861508219203277 ], [ -95.333822998353014, 29.861457218952538 ], [ -95.333718998328095, 29.861407219258734 ], [ -95.333669998219804, 29.861383218921265 ], [ -95.333600998229826, 29.861349219349258 ], [ -95.333553998620516, 29.862121218849541 ], [ -95.33345099858613, 29.86311021933707 ], [ -95.333356998078074, 29.863711219630503 ], [ -95.333278998321276, 29.86409021955312 ], [ -95.333158998674179, 29.864545219638178 ], [ -95.333120998280577, 29.864761219686358 ], [ -95.332920998388047, 29.865317219547265 ], [ -95.332848998440269, 29.865517220296809 ], [ -95.332548998376467, 29.866282220478041 ], [ -95.332429998737155, 29.866523220463133 ], [ -95.332266998751777, 29.866852220440283 ], [ -95.33213499869737, 29.867078220144709 ], [ -95.331585998306153, 29.868018220416211 ], [ -95.330307997900334, 29.870187220769985 ], [ -95.330206998244151, 29.870359220932009 ], [ -95.330530997695675, 29.870487220960033 ], [ -95.331341998252796, 29.870837220863457 ], [ -95.331634998018558, 29.870922221269502 ], [ -95.332108998731456, 29.871010221415624 ], [ -95.332295998588705, 29.871036220719649 ], [ -95.333079999020597, 29.871044220976586 ], [ -95.33326699899888, 29.871046221186873 ], [ -95.333396999185709, 29.87104522073118 ], [ -95.334834999580465, 29.871028221162966 ], [ -95.334891999316824, 29.871027221334121 ], [ -95.334989999824302, 29.871026220599582 ], [ -95.335426999320248, 29.871019220918377 ], [ -95.335455999330591, 29.871858220958838 ], [ -95.335457999946698, 29.872104221038715 ], [ -95.335445999827812, 29.87240422116929 ], [ -95.335383999659612, 29.872874221549814 ], [ -95.335362999838196, 29.873210221444008 ], [ -95.335369999723639, 29.873697221417537 ], [ -95.335411999786686, 29.874035221152916 ], [ -95.335493999158714, 29.874455221987894 ], [ -95.33550299989075, 29.87463422206682 ], [ -95.335508999150022, 29.874755221994349 ], [ -95.335513999959176, 29.87483622195812 ], [ -95.335503999315492, 29.874906221412314 ], [ -95.335501999322076, 29.87524022174226 ], [ -95.335833999759899, 29.875246221395809 ], [ -95.336606000041058, 29.875219221696398 ], [ -95.336712999509146, 29.875224221497898 ], [ -95.338133000254999, 29.875204222054055 ], [ -95.339453001147504, 29.875170221184725 ], [ -95.341193001006005, 29.875157221132508 ], [ -95.341349001386931, 29.875158221764366 ], [ -95.341423001567549, 29.875181221859307 ], [ -95.341517001314813, 29.875221221600849 ], [ -95.342276001847537, 29.875157221831358 ], [ -95.342087001378502, 29.875047221115331 ], [ -95.342036001402505, 29.875003221241869 ], [ -95.341821001082153, 29.874781221678376 ], [ -95.341758000746125, 29.874705221623891 ], [ -95.341650001537928, 29.874572221012709 ], [ -95.341535001549218, 29.87431722136704 ], [ -95.341310000779117, 29.873759220976684 ], [ -95.34085500093471, 29.872934220780142 ], [ -95.340880000439626, 29.872544220639952 ], [ -95.340968001125859, 29.871989220677559 ], [ -95.341050000703689, 29.871378221173149 ], [ -95.341104000887825, 29.871078221033301 ], [ -95.341138001241745, 29.870889220448102 ], [ -95.34129600046316, 29.87057022094309 ], [ -95.341497000721418, 29.87022922044882 ], [ -95.341535000799482, 29.870097220661673 ], [ -95.34155400095959, 29.87008122046581 ], [ -95.341592001260594, 29.869839220871366 ], [ -95.341554000541024, 29.869569220064555 ], [ -95.341415000710654, 29.869124220257426 ], [ -95.341346000678229, 29.868943220329324 ], [ -95.341188001137411, 29.868640220457504 ], [ -95.341169000992835, 29.86846422002272 ], [ -95.34118200107288, 29.868429219836507 ], [ -95.341251000686896, 29.868244220152114 ], [ -95.341503001145298, 29.868101220068365 ], [ -95.342184001420719, 29.867887219951427 ], [ -95.342581001005357, 29.86773822008114 ], [ -95.342629001344406, 29.867671220326642 ], [ -95.342708001273522, 29.867562219939188 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1198, "Tract": "48201520400", "Area_SqMi": 0.78875615599934468, "total_2009": 3259, "total_2010": 3131, "total_2011": 3282, "total_2012": 2725, "total_2013": 2909, "total_2014": 3317, "total_2015": 3623, "total_2016": 3641, "total_2017": 3516, "total_2018": 3743, "total_2019": 3573, "total_2020": 3538, "age1": 445, "age2": 1482, "age3": 768, "earn1": 291, "earn2": 833, "earn3": 1571, "naics_s01": 8, "naics_s02": 0, "naics_s03": 0, "naics_s04": 246, "naics_s05": 163, "naics_s06": 403, "naics_s07": 120, "naics_s08": 219, "naics_s09": 0, "naics_s10": 59, "naics_s11": 55, "naics_s12": 144, "naics_s13": 0, "naics_s14": 876, "naics_s15": 24, "naics_s16": 144, "naics_s17": 0, "naics_s18": 162, "naics_s19": 72, "naics_s20": 0, "race1": 2130, "race2": 340, "race3": 34, "race4": 136, "race5": 11, "race6": 44, "ethnicity1": 1517, "ethnicity2": 1178, "edu1": 599, "edu2": 578, "edu3": 661, "edu4": 412, "Shape_Length": 21680.814614208313, "Shape_Area": 21989171.659608942, "total_2021": 3202, "total_2022": 2695 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.485322035892025, 29.817049205080238 ], [ -95.48519903496161, 29.816187204636023 ], [ -95.48515303529237, 29.814745204453711 ], [ -95.485145035249346, 29.813906204051886 ], [ -95.485137035667918, 29.81334020434662 ], [ -95.485129035535479, 29.812763204230183 ], [ -95.485077034622947, 29.811492203808022 ], [ -95.484996035318844, 29.810576203696108 ], [ -95.484940034717155, 29.809185203367011 ], [ -95.484933035241895, 29.807880203263572 ], [ -95.484948035107649, 29.807690202728025 ], [ -95.484924035061596, 29.806712202420275 ], [ -95.4848950344484, 29.805546202299894 ], [ -95.48487903469821, 29.804746202628294 ], [ -95.484840034159632, 29.802843201756804 ], [ -95.482901034237997, 29.802826202382665 ], [ -95.481998034220894, 29.80283220187151 ], [ -95.480778033425736, 29.802830202308847 ], [ -95.478887032600383, 29.802843202432932 ], [ -95.478407032721464, 29.802852201896048 ], [ -95.477477032704073, 29.802849201701029 ], [ -95.47651403279859, 29.802867202037895 ], [ -95.475468031899524, 29.802850201740117 ], [ -95.475280032417302, 29.802852201828994 ], [ -95.472110031528558, 29.802884202314704 ], [ -95.47197703142173, 29.802886202761545 ], [ -95.470640031123864, 29.802880202249099 ], [ -95.46991503122112, 29.802902202338604 ], [ -95.469654030980877, 29.802903202804849 ], [ -95.469177030448492, 29.802905202300099 ], [ -95.468236030330715, 29.802911202271311 ], [ -95.466879030450485, 29.802921202472096 ], [ -95.46648302996492, 29.802924202498442 ], [ -95.466166029877513, 29.80292520220717 ], [ -95.464939029583448, 29.802930202525449 ], [ -95.464583029974008, 29.802939202710778 ], [ -95.462894029217907, 29.802936202814568 ], [ -95.462692029078113, 29.803030203095947 ], [ -95.462539029009562, 29.803239202648893 ], [ -95.463427028922482, 29.803890202415896 ], [ -95.463949028863468, 29.804279203211848 ], [ -95.466965030484843, 29.806622203173308 ], [ -95.468260031056829, 29.80744120293852 ], [ -95.468977030943321, 29.807992203282723 ], [ -95.469353031335402, 29.808255203730809 ], [ -95.470675031029145, 29.809221203376353 ], [ -95.471150031836487, 29.809564203366278 ], [ -95.471695031948741, 29.809957203607819 ], [ -95.472790032274503, 29.8107482036277 ], [ -95.47322603198144, 29.811063203595296 ], [ -95.47368903248946, 29.811397204010529 ], [ -95.474407032526187, 29.81191620401323 ], [ -95.476398032481967, 29.813360204680837 ], [ -95.47954703390306, 29.815646204500098 ], [ -95.481309034355576, 29.816937205105546 ], [ -95.48327303510996, 29.818341204911643 ], [ -95.483479035468491, 29.81815220522752 ], [ -95.483511034794006, 29.818121205315506 ], [ -95.483651035201206, 29.817984204875831 ], [ -95.483954034982901, 29.817697205055875 ], [ -95.484186035230977, 29.817528205020164 ], [ -95.484767035173519, 29.817208204392575 ], [ -95.485004035447758, 29.817127204571804 ], [ -95.485322035892025, 29.817049205080238 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1199, "Tract": "48201350700", "Area_SqMi": 0.56321810200426659, "total_2009": 43, "total_2010": 21, "total_2011": 11, "total_2012": 16, "total_2013": 15, "total_2014": 15, "total_2015": 21, "total_2016": 17, "total_2017": 17, "total_2018": 20, "total_2019": 16, "total_2020": 19, "age1": 10, "age2": 14, "age3": 5, "earn1": 4, "earn2": 16, "earn3": 9, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 1, "naics_s19": 6, "naics_s20": 0, "race1": 26, "race2": 1, "race3": 0, "race4": 1, "race5": 0, "race6": 1, "ethnicity1": 27, "ethnicity2": 2, "edu1": 2, "edu2": 8, "edu3": 5, "edu4": 4, "Shape_Length": 30003.515109928427, "Shape_Area": 15701556.726463441, "total_2021": 20, "total_2022": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.197197949098225, 29.542072158015337 ], [ -95.19724194900634, 29.541997158093952 ], [ -95.197166949180215, 29.542016158412245 ], [ -95.197139949836242, 29.542023157780019 ], [ -95.197057949290766, 29.542043157773833 ], [ -95.197030949898632, 29.542050158021343 ], [ -95.19690194914979, 29.542083157709012 ], [ -95.19666294928561, 29.542212158160613 ], [ -95.196608949806588, 29.542241157792876 ], [ -95.196590949591339, 29.542251158341525 ], [ -95.196473949203565, 29.542227157646817 ], [ -95.196403949152653, 29.542241157673924 ], [ -95.196361948899863, 29.542249158286545 ], [ -95.196110949668352, 29.542277158010418 ], [ -95.195986949031678, 29.542291157916832 ], [ -95.195835949430929, 29.542366157995833 ], [ -95.195692949509478, 29.542400158390929 ], [ -95.195654949270391, 29.542439157753975 ], [ -95.195541948771279, 29.542554158454475 ], [ -95.195516949450436, 29.542592158243448 ], [ -95.195510948503156, 29.542647158625144 ], [ -95.195529949215725, 29.542702158168289 ], [ -95.19564294865593, 29.542829157922309 ], [ -95.195705949475084, 29.542926158114309 ], [ -95.195806949471645, 29.54308115835363 ], [ -95.195869949518126, 29.543202158244252 ], [ -95.195872949193628, 29.543258158595894 ], [ -95.195875948719987, 29.543318158158694 ], [ -95.195835949337891, 29.543404158738273 ], [ -95.195825949462559, 29.543426158782506 ], [ -95.195822949381039, 29.54349215798554 ], [ -95.195799948907322, 29.543569158756437 ], [ -95.195738949011798, 29.543658158358664 ], [ -95.195655949062754, 29.543710158031114 ], [ -95.195566949584816, 29.543742158769479 ], [ -95.195478949359085, 29.54375515865619 ], [ -95.195390948515538, 29.543759158877069 ], [ -95.195283949309299, 29.543742158303484 ], [ -95.195204949031975, 29.543726158454135 ], [ -95.195148949247027, 29.543702158371516 ], [ -95.195115948704341, 29.543674158168436 ], [ -95.195087949213672, 29.543645158290957 ], [ -95.195068949354734, 29.543614158533771 ], [ -95.195026949277917, 29.543587158829908 ], [ -95.195025949113855, 29.543487158066046 ], [ -95.195007948462077, 29.543345158355724 ], [ -95.195043949085971, 29.543141158472068 ], [ -95.195001949200062, 29.543038158279479 ], [ -95.194831948505708, 29.542944158262632 ], [ -95.194699948366946, 29.5429661579692 ], [ -95.194638949225336, 29.542995158018531 ], [ -95.194591948553395, 29.543039158583259 ], [ -95.194462948980373, 29.543208158301855 ], [ -95.194447949002083, 29.543263157983215 ], [ -95.194391948259295, 29.543296158584504 ], [ -95.194359949063085, 29.543292158521119 ], [ -95.19425294920255, 29.543279158107303 ], [ -95.194177948257206, 29.543241158417022 ], [ -95.194108948777526, 29.543153158740235 ], [ -95.194020948925967, 29.542856158649887 ], [ -95.194064948950341, 29.542757158081969 ], [ -95.194202948872999, 29.542625158088654 ], [ -95.19442894836483, 29.542504158651109 ], [ -95.194491948878877, 29.542444158079054 ], [ -95.194529948446146, 29.542372157788325 ], [ -95.194542949190136, 29.542323157792381 ], [ -95.194617948757994, 29.542196158352027 ], [ -95.194671949045031, 29.542145158412286 ], [ -95.194313948466785, 29.541909157941241 ], [ -95.194206948993511, 29.541729157999178 ], [ -95.194183948722497, 29.541690157714175 ], [ -95.194627948257761, 29.541341158081028 ], [ -95.194643949224755, 29.541269158128216 ], [ -95.194650948519964, 29.541238158018444 ], [ -95.194616948532399, 29.541174157895341 ], [ -95.194608948465728, 29.541158158099634 ], [ -95.194588949005208, 29.541142158007361 ], [ -95.194528948436854, 29.541114158260942 ], [ -95.194449948486948, 29.541094157782311 ], [ -95.194384948523762, 29.541094158256811 ], [ -95.194291948376446, 29.541126157981346 ], [ -95.194216949056468, 29.541171157909609 ], [ -95.19415194838443, 29.54124815813184 ], [ -95.194091948322509, 29.54132815790544 ], [ -95.194049948450328, 29.541349158423355 ], [ -95.194016948477497, 29.54136115824593 ], [ -95.193943948084424, 29.541366157732103 ], [ -95.193849948516004, 29.541361158038239 ], [ -95.193770948969217, 29.541349158321559 ], [ -95.19362394808303, 29.541293157625077 ], [ -95.19353094888821, 29.541244157745751 ], [ -95.193423948062346, 29.541083158318585 ], [ -95.193342948596168, 29.541004158231491 ], [ -95.193286948015995, 29.540960157561134 ], [ -95.193217948204961, 29.54095215798144 ], [ -95.193138948062241, 29.540968157828022 ], [ -95.193106947959933, 29.540987157902681 ], [ -95.193090948803984, 29.541034157658874 ], [ -95.193082948131305, 29.541058158084798 ], [ -95.193087948329705, 29.541522157746666 ], [ -95.193020948117606, 29.541539158235825 ], [ -95.192944948407018, 29.541558158423641 ], [ -95.192651948159224, 29.541315158055976 ], [ -95.192451948178032, 29.540815157671691 ], [ -95.192257948592442, 29.540502158281633 ], [ -95.192245947587537, 29.540395158207389 ], [ -95.192330948425095, 29.540279157842441 ], [ -95.192375947993057, 29.540275157387097 ], [ -95.192775948096269, 29.540239157491236 ], [ -95.192790948011989, 29.540232157642649 ], [ -95.192949948589089, 29.540159158233752 ], [ -95.192928948618345, 29.539984158043595 ], [ -95.192818948449514, 29.539830157468909 ], [ -95.192761947963405, 29.539750157633364 ], [ -95.192715948383224, 29.539685158035969 ], [ -95.192963948357132, 29.53950615796165 ], [ -95.193039948703657, 29.539387157388045 ], [ -95.19296894830299, 29.539336157331338 ], [ -95.192915948363577, 29.539298157685234 ], [ -95.192693948680102, 29.539279157470528 ], [ -95.192312948207203, 29.539246157693544 ], [ -95.192300948094228, 29.539232157174354 ], [ -95.192199947585053, 29.539105157481231 ], [ -95.192151947511661, 29.539045157943487 ], [ -95.192142948404609, 29.538730157272873 ], [ -95.1922319483417, 29.538665157612019 ], [ -95.192349948341757, 29.538637157403468 ], [ -95.192695948148355, 29.538553157635405 ], [ -95.19319994831352, 29.538432157073121 ], [ -95.193327948452207, 29.538459156996048 ], [ -95.193443948734981, 29.538423157325507 ], [ -95.193821948703714, 29.538215157346535 ], [ -95.193981948510867, 29.538244157291796 ], [ -95.194299948217889, 29.538395156967525 ], [ -95.194390948462555, 29.538377157221255 ], [ -95.194417949023489, 29.538372157167977 ], [ -95.194441948376195, 29.538352157199881 ], [ -95.194533948412868, 29.538272157251718 ], [ -95.194534948328936, 29.538262156964645 ], [ -95.194547948105864, 29.538167157733934 ], [ -95.194450948155719, 29.537887157582436 ], [ -95.194442948856107, 29.537863157528832 ], [ -95.194382948657065, 29.537776156931447 ], [ -95.194102948771828, 29.537373156936706 ], [ -95.194137948081305, 29.537130157327194 ], [ -95.194173948354944, 29.537041157204726 ], [ -95.194254948145741, 29.536838156614493 ], [ -95.194250948904028, 29.536803157442435 ], [ -95.194245948846913, 29.536760156609819 ], [ -95.194210948142199, 29.536713157437308 ], [ -95.194086947957501, 29.536625157162696 ], [ -95.193986948210323, 29.536579156621265 ], [ -95.193841948097329, 29.536545157151789 ], [ -95.193573948162765, 29.536510157081182 ], [ -95.193305948468947, 29.536503157368657 ], [ -95.193143948461199, 29.536522157070131 ], [ -95.192996948398999, 29.536525157105636 ], [ -95.192855947964745, 29.536491156703367 ], [ -95.192793947921245, 29.536462156638819 ], [ -95.192604948244792, 29.536372156732398 ], [ -95.192430948330184, 29.536052157005411 ], [ -95.192381948137708, 29.536019156718908 ], [ -95.192207947542798, 29.535901157292304 ], [ -95.191810947291785, 29.535965156545757 ], [ -95.19152694820086, 29.535954156849488 ], [ -95.191497947745631, 29.535944156849588 ], [ -95.1914549472461, 29.535929156642666 ], [ -95.191076947106964, 29.535795157264353 ], [ -95.190918947791459, 29.535783157310679 ], [ -95.190816947367566, 29.535836157214835 ], [ -95.190816947426484, 29.535890156727774 ], [ -95.190815947433805, 29.536191157263502 ], [ -95.190789947616551, 29.536239157385634 ], [ -95.190780947234543, 29.536255156942616 ], [ -95.190705947085476, 29.536275157435412 ], [ -95.190527947811134, 29.536187157032099 ], [ -95.190162946965032, 29.535717156928261 ], [ -95.189996947445863, 29.535613156863004 ], [ -95.189875947408368, 29.535599156965223 ], [ -95.189831947501972, 29.535618157302864 ], [ -95.189744947459531, 29.535622156868296 ], [ -95.189671946740035, 29.53565615690005 ], [ -95.189648947594279, 29.53567415693918 ], [ -95.189602947215917, 29.535710156946578 ], [ -95.189530947452809, 29.535766156822039 ], [ -95.189416947212251, 29.535869157006257 ], [ -95.189320946829383, 29.535922157094411 ], [ -95.189214946957421, 29.535930157443101 ], [ -95.189202947141453, 29.535930156634564 ], [ -95.189162947310166, 29.535930156627014 ], [ -95.189113947436084, 29.535922157078392 ], [ -95.188986947546667, 29.535905157005651 ], [ -95.188946947362567, 29.535899157175091 ], [ -95.18881594698432, 29.53585715739251 ], [ -95.188674946780623, 29.535804156623868 ], [ -95.188610946806392, 29.535764156995288 ], [ -95.18850994668621, 29.535701157247164 ], [ -95.188390946803821, 29.535596156945086 ], [ -95.188345947385727, 29.535545157105425 ], [ -95.188299947017669, 29.53546515730315 ], [ -95.188283946627294, 29.535416156934271 ], [ -95.188260946717023, 29.535301156543792 ], [ -95.188185947262113, 29.535188157265345 ], [ -95.188130947082101, 29.535085156617555 ], [ -95.18811594650721, 29.53502415724158 ], [ -95.188115947112294, 29.534985157073802 ], [ -95.18812094722135, 29.534955156447623 ], [ -95.188150946592643, 29.534852157274333 ], [ -95.188194946453365, 29.534782156895698 ], [ -95.188207946965264, 29.534761156509234 ], [ -95.188392946663683, 29.534549156454784 ], [ -95.188487947354872, 29.534361156714702 ], [ -95.188517947269133, 29.534293156626152 ], [ -95.188526946683098, 29.534243156486934 ], [ -95.188517947277688, 29.534205156366816 ], [ -95.188500946387222, 29.534167156517452 ], [ -95.188453946460555, 29.53414615708224 ], [ -95.18838194643142, 29.534121156985631 ], [ -95.188289947032686, 29.534125156570941 ], [ -95.188129946305665, 29.534151156588017 ], [ -95.188084946679496, 29.534159156584384 ], [ -95.187905946897359, 29.534178157149636 ], [ -95.187819947042129, 29.534167156585351 ], [ -95.18775694719173, 29.534156156434154 ], [ -95.187664946452244, 29.534137156802373 ], [ -95.187594946450403, 29.534110156820187 ], [ -95.187519946131189, 29.53404915703446 ], [ -95.187466946725692, 29.533987156956425 ], [ -95.18744994667405, 29.533954156476796 ], [ -95.187440946493339, 29.533893156591812 ], [ -95.18744494680017, 29.533868156751446 ], [ -95.187454946338462, 29.533807157052955 ], [ -95.18746394691911, 29.533776156519689 ], [ -95.187468946373059, 29.533760156816825 ], [ -95.187484946390896, 29.533718156234922 ], [ -95.187519946564507, 29.533680156882436 ], [ -95.18757694660944, 29.533648156338973 ], [ -95.187856946883329, 29.533520156224782 ], [ -95.18818594718158, 29.533382156235014 ], [ -95.188284946499479, 29.533322156716807 ], [ -95.188344946727497, 29.533275156255058 ], [ -95.188407947255328, 29.533215156686619 ], [ -95.188486947139594, 29.53310515610649 ], [ -95.188587947075874, 29.532926156332781 ], [ -95.188758946455266, 29.532725156723771 ], [ -95.18883594682859, 29.532644156125649 ], [ -95.188877946393688, 29.532613156477929 ], [ -95.188932947334621, 29.532595156188219 ], [ -95.189069947370555, 29.532573156046681 ], [ -95.189270946592885, 29.53253415661975 ], [ -95.189347947139026, 29.532503156083401 ], [ -95.1893699474941, 29.53248415626155 ], [ -95.189400947143795, 29.53245815655988 ], [ -95.189426947325813, 29.53240415603414 ], [ -95.189432946527219, 29.532380156504331 ], [ -95.189443947178702, 29.532328155951248 ], [ -95.189448947054231, 29.532295156293525 ], [ -95.189448946557036, 29.532252155950864 ], [ -95.189426947248961, 29.532176156431014 ], [ -95.189346947293075, 29.532026156319112 ], [ -95.189339946773273, 29.53201215625619 ], [ -95.189320947335972, 29.531956156236955 ], [ -95.189313946469582, 29.531898156472185 ], [ -95.189325946955933, 29.531803156104015 ], [ -95.189327946700743, 29.531754156145784 ], [ -95.189326947014521, 29.531739156253305 ], [ -95.189308947356636, 29.531547155719604 ], [ -95.189432947333515, 29.531172156089823 ], [ -95.189608947327514, 29.531061156166651 ], [ -95.189683947098871, 29.531030156210072 ], [ -95.189776946974803, 29.530997155963441 ], [ -95.189868946603482, 29.530973155662988 ], [ -95.190355947331739, 29.530896155723838 ], [ -95.190430947729524, 29.530876155522233 ], [ -95.190487946899523, 29.530848155705804 ], [ -95.190557946955536, 29.530795156039432 ], [ -95.190607947117314, 29.53072515617006 ], [ -95.190635947558491, 29.530620155847984 ], [ -95.190640947424242, 29.530529155534239 ], [ -95.190637947185053, 29.530512155903306 ], [ -95.190646947152231, 29.53047415604361 ], [ -95.190618947643131, 29.530410155852973 ], [ -95.190542947184099, 29.530241156211975 ], [ -95.190403947452637, 29.530102155565405 ], [ -95.190240946782723, 29.529962155701011 ], [ -95.18993094652312, 29.529726156087214 ], [ -95.189627946793991, 29.529555155485674 ], [ -95.189371946722261, 29.529407155688233 ], [ -95.189189946952595, 29.529301155252714 ], [ -95.188669946845962, 29.529023155671009 ], [ -95.188364947009916, 29.528848155383848 ], [ -95.18771194600869, 29.528518155667541 ], [ -95.187559946499135, 29.528317155827061 ], [ -95.187531946521545, 29.528252155517698 ], [ -95.187529946104732, 29.528235155418372 ], [ -95.187524946125336, 29.528184155690017 ], [ -95.187524946391193, 29.5281251556471 ], [ -95.187528946153165, 29.528070155157923 ], [ -95.187537946541354, 29.528028155331921 ], [ -95.187567945886158, 29.527963155264974 ], [ -95.187617946668226, 29.527910155491302 ], [ -95.187681945992523, 29.527880155580473 ], [ -95.187781946745318, 29.527845155481923 ], [ -95.187903946591661, 29.52782015513835 ], [ -95.187986945962734, 29.527819155592489 ], [ -95.18837994642405, 29.527833155056264 ], [ -95.188539947079704, 29.527837155587854 ], [ -95.188926946423464, 29.527848155786561 ], [ -95.189014946738595, 29.527850155417752 ], [ -95.189454946386292, 29.527801155334195 ], [ -95.1896099467304, 29.527699155062045 ], [ -95.189678947092503, 29.527654155637769 ], [ -95.18983194741466, 29.527553155244476 ], [ -95.189869946590619, 29.527503155515046 ], [ -95.189918946836215, 29.527439155130438 ], [ -95.189919947207287, 29.527388155012446 ], [ -95.189900947281302, 29.52732215509544 ], [ -95.189812946688107, 29.527179155403157 ], [ -95.189749946964923, 29.527108154871986 ], [ -95.189674946670635, 29.527064155109787 ], [ -95.189567946451731, 29.527053155427232 ], [ -95.189334946285328, 29.527053155264674 ], [ -95.188837946655468, 29.527179155004273 ], [ -95.188629947101461, 29.527206154832413 ], [ -95.188548946491196, 29.52721715568148 ], [ -95.188370946384907, 29.527240155400715 ], [ -95.18821994600944, 29.527234155276073 ], [ -95.188126946894201, 29.5272421551016 ], [ -95.187688946087434, 29.527284155392685 ], [ -95.187338945768531, 29.527344155580149 ], [ -95.187246945804489, 29.52735915533269 ], [ -95.187200946123198, 29.527380155109576 ], [ -95.18716894653484, 29.527395155406239 ], [ -95.187014946604236, 29.527394155439683 ], [ -95.186936946030073, 29.527408155011706 ], [ -95.186852945797426, 29.527261155280041 ], [ -95.186834945651768, 29.52708215565692 ], [ -95.186956946322283, 29.526859155017185 ], [ -95.186956946015968, 29.526573155167984 ], [ -95.186707946380992, 29.525920155131441 ], [ -95.186751945705552, 29.525495155240804 ], [ -95.186816945928584, 29.525289154497969 ], [ -95.186997945813161, 29.525008155099179 ], [ -95.187225945647114, 29.524840155230756 ], [ -95.187424945804949, 29.524694155155089 ], [ -95.187779946605431, 29.52443315470709 ], [ -95.187852946539309, 29.524346154586233 ], [ -95.18784794675372, 29.524302154859562 ], [ -95.187804945829782, 29.524234154751888 ], [ -95.187755945769339, 29.524174154449167 ], [ -95.187711945857785, 29.524130154667706 ], [ -95.187655946137156, 29.524097154957598 ], [ -95.187528946616652, 29.524056154884136 ], [ -95.187267946508996, 29.523981154214905 ], [ -95.187019946057134, 29.523901154197166 ], [ -95.186866945553135, 29.5238061541734 ], [ -95.186714946439409, 29.523689154195278 ], [ -95.186566945960195, 29.523568154210764 ], [ -95.186401945416335, 29.523469154187151 ], [ -95.186294945882054, 29.523430154365627 ], [ -95.186262945764639, 29.523479154301981 ], [ -95.186248946063685, 29.523500154900557 ], [ -95.186068946068787, 29.523780154539736 ], [ -95.185860946127335, 29.524104154675967 ], [ -95.18528994597105, 29.524571154733206 ], [ -95.184734945893396, 29.52483915516871 ], [ -95.184576945514237, 29.524919155058758 ], [ -95.182135944606216, 29.526995155151003 ], [ -95.181630944289381, 29.527459155687648 ], [ -95.180359944898939, 29.52867315559563 ], [ -95.17981494456285, 29.529140155758419 ], [ -95.178513944147497, 29.530364156273798 ], [ -95.177938944166883, 29.530860156797541 ], [ -95.177848943590803, 29.530938156234807 ], [ -95.179783945022351, 29.532596156544447 ], [ -95.180689944778848, 29.533350156576699 ], [ -95.18140794471698, 29.534038156886108 ], [ -95.183062945954163, 29.53548615760371 ], [ -95.184364945579148, 29.536569157050366 ], [ -95.184895945559774, 29.537017157405987 ], [ -95.185313946248442, 29.537359157290663 ], [ -95.185989946830091, 29.537898157562367 ], [ -95.186582946703922, 29.538443157990386 ], [ -95.188152947129794, 29.539780157543923 ], [ -95.188838947146905, 29.54040615820978 ], [ -95.189304947334676, 29.541010157668492 ], [ -95.190180947443295, 29.542358158459233 ], [ -95.190740947988843, 29.542931158730678 ], [ -95.1914859476, 29.543591158502085 ], [ -95.192175947880202, 29.544195158267733 ], [ -95.192704948650771, 29.54474815882827 ], [ -95.192945948345127, 29.545076158559425 ], [ -95.193308948484102, 29.545477159069474 ], [ -95.19342694902285, 29.545654158700795 ], [ -95.194900948617104, 29.544907158308032 ], [ -95.195469948728274, 29.54453015822968 ], [ -95.196299949043492, 29.543609158186943 ], [ -95.196733949696323, 29.542866158435519 ], [ -95.197161949603483, 29.542133158024281 ], [ -95.197197949098225, 29.542072158015337 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1200, "Tract": "48201341400", "Area_SqMi": 6.0074751335290557, "total_2009": 866, "total_2010": 839, "total_2011": 732, "total_2012": 839, "total_2013": 919, "total_2014": 1031, "total_2015": 1106, "total_2016": 1038, "total_2017": 1082, "total_2018": 1451, "total_2019": 1073, "total_2020": 1319, "age1": 212, "age2": 768, "age3": 329, "earn1": 154, "earn2": 167, "earn3": 988, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 230, "naics_s06": 444, "naics_s07": 68, "naics_s08": 21, "naics_s09": 2, "naics_s10": 12, "naics_s11": 12, "naics_s12": 168, "naics_s13": 6, "naics_s14": 69, "naics_s15": 13, "naics_s16": 35, "naics_s17": 29, "naics_s18": 119, "naics_s19": 60, "naics_s20": 3, "race1": 1043, "race2": 131, "race3": 6, "race4": 100, "race5": 3, "race6": 26, "ethnicity1": 943, "ethnicity2": 366, "edu1": 209, "edu2": 237, "edu3": 324, "edu4": 327, "Shape_Length": 74435.01553437041, "Shape_Area": 167478124.82634026, "total_2021": 1309, "total_2022": 1309 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.092326925023144, 29.598401172904836 ], [ -95.09235892512622, 29.598118172949313 ], [ -95.092247925137997, 29.597773173045031 ], [ -95.092127925079666, 29.597628173148365 ], [ -95.091693925049356, 29.597102173292228 ], [ -95.091409925081678, 29.596828172925807 ], [ -95.09119892427087, 29.596625173085904 ], [ -95.091069924571386, 29.596455173144772 ], [ -95.090805924119394, 29.596109172762048 ], [ -95.090558924173237, 29.59592417280599 ], [ -95.09044192432728, 29.595777172575005 ], [ -95.089941924142593, 29.594998172220148 ], [ -95.089883923907166, 29.594679172426183 ], [ -95.090021924254685, 29.593860172134818 ], [ -95.090018924387152, 29.593609171819963 ], [ -95.089860924114987, 29.593278172313937 ], [ -95.089662923949447, 29.59315317198844 ], [ -95.088203923572181, 29.593330172381943 ], [ -95.087625923574947, 29.593334171820796 ], [ -95.086975923740255, 29.593238171912958 ], [ -95.086349923114341, 29.593071172545191 ], [ -95.086106923014341, 29.592878172088565 ], [ -95.085954922727908, 29.592822172386036 ], [ -95.085749922959536, 29.59247617209952 ], [ -95.085440922717964, 29.592297172064857 ], [ -95.08519592328598, 29.59227617229601 ], [ -95.085011922309491, 29.592355172223261 ], [ -95.084738923027714, 29.592623172131468 ], [ -95.084397922394004, 29.593394172208239 ], [ -95.08404992242906, 29.593750172557627 ], [ -95.083560922085667, 29.593727172363401 ], [ -95.082436921696015, 29.593085172213023 ], [ -95.081463922169235, 29.592265172418948 ], [ -95.080842922193156, 29.591914171892565 ], [ -95.080530921662941, 29.591824171898168 ], [ -95.080408921671733, 29.59184317186023 ], [ -95.080183921109963, 29.591932171814655 ], [ -95.079878921719938, 29.592167172213465 ], [ -95.079650921303198, 29.592091172116348 ], [ -95.079395921348009, 29.591812172515628 ], [ -95.079371921402469, 29.591493172227423 ], [ -95.079480921555145, 29.591040171801161 ], [ -95.079724921448673, 29.590667171631097 ], [ -95.080094921804815, 29.590279171604237 ], [ -95.080832922100186, 29.589715171594822 ], [ -95.08175292164556, 29.58940017150822 ], [ -95.082236922313257, 29.589317171929942 ], [ -95.082506921581199, 29.5890021717845 ], [ -95.082621921921486, 29.588812171260976 ], [ -95.082653922343411, 29.588562171539966 ], [ -95.082498922185124, 29.587603171248833 ], [ -95.081911921551125, 29.587407171643001 ], [ -95.081426921701677, 29.587325171411631 ], [ -95.081184922048962, 29.587356171455848 ], [ -95.080846921611965, 29.58756017153307 ], [ -95.080653921235751, 29.587496171579502 ], [ -95.08009492089279, 29.587264170849778 ], [ -95.079798921156637, 29.58706917135002 ], [ -95.079070921430159, 29.586290170976916 ], [ -95.078802920626629, 29.586067171352891 ], [ -95.078050920893844, 29.585777171124775 ], [ -95.077436920355311, 29.585722170844129 ], [ -95.076866920055707, 29.585798171479514 ], [ -95.076523920451407, 29.585918171234184 ], [ -95.076518920738394, 29.586133171390092 ], [ -95.076790920549257, 29.586732171542685 ], [ -95.076863920259981, 29.587158171193622 ], [ -95.076673920369487, 29.58738817125446 ], [ -95.076477920170163, 29.587335171452654 ], [ -95.075787920115246, 29.586880171654364 ], [ -95.075398920344611, 29.586762171597005 ], [ -95.075158920289795, 29.586565170939167 ], [ -95.07474592040677, 29.586165171064586 ], [ -95.074526919326146, 29.585549171407472 ], [ -95.07444391947125, 29.585470170656084 ], [ -95.074082919705845, 29.585299170866612 ], [ -95.073464919806369, 29.585309171333417 ], [ -95.073099919321223, 29.585261170788566 ], [ -95.072925919467465, 29.585166171363692 ], [ -95.072352919001929, 29.584653170807776 ], [ -95.072066918669464, 29.584346170895994 ], [ -95.071976918931696, 29.58418417068884 ], [ -95.07196691921969, 29.58411817079897 ], [ -95.071913918725116, 29.583759170683621 ], [ -95.071668918608012, 29.58357617109008 ], [ -95.071324918691232, 29.583318170587262 ], [ -95.07120791917815, 29.583050171040675 ], [ -95.071173918710244, 29.582763170187143 ], [ -95.071235918613013, 29.582445170165485 ], [ -95.071010919037093, 29.581947170348467 ], [ -95.070615919034964, 29.581753170870162 ], [ -95.07037791868467, 29.581697170006979 ], [ -95.070012918887585, 29.581733170798348 ], [ -95.069899918451071, 29.581777170623639 ], [ -95.069758918076744, 29.581954170579976 ], [ -95.069561918152843, 29.582504170313896 ], [ -95.069037918520294, 29.582541170843971 ], [ -95.068583918388001, 29.5822291709664 ], [ -95.068395918483532, 29.582038170792227 ], [ -95.068322918059849, 29.581910170679315 ], [ -95.068299918147346, 29.581727170407913 ], [ -95.067386918057323, 29.581255170660821 ], [ -95.067176918240904, 29.58097516997659 ], [ -95.067079918020269, 29.580742170256979 ], [ -95.067111917274573, 29.580608170421463 ], [ -95.067249917711976, 29.580459170491409 ], [ -95.067548917678579, 29.58029016984927 ], [ -95.067702918289299, 29.580219170021735 ], [ -95.067854917363277, 29.580108170250281 ], [ -95.068166917621667, 29.579796170489765 ], [ -95.068533917995566, 29.579385169822856 ], [ -95.068625918382011, 29.579309170455563 ], [ -95.069064918215673, 29.579109169793917 ], [ -95.069521918685084, 29.578147170180394 ], [ -95.069759918510755, 29.577898169439287 ], [ -95.070001918400081, 29.577703169340026 ], [ -95.070943918249171, 29.577254169111999 ], [ -95.071271918417864, 29.577036169811056 ], [ -95.07138391865945, 29.576888169692772 ], [ -95.071476918693392, 29.57653716955523 ], [ -95.071442918668026, 29.576106169033512 ], [ -95.071062917974757, 29.575350169486583 ], [ -95.071058918901272, 29.575267169286629 ], [ -95.071037918011058, 29.574811168608818 ], [ -95.071184918004064, 29.574323168666826 ], [ -95.071321918903749, 29.57406116920539 ], [ -95.071579918240516, 29.573650168854876 ], [ -95.071876918103612, 29.573303168952705 ], [ -95.071894918659694, 29.572979168705821 ], [ -95.071850918809872, 29.572476168858255 ], [ -95.071731918171565, 29.572019168234416 ], [ -95.07160891837556, 29.571713168732639 ], [ -95.071352918669419, 29.571389168699749 ], [ -95.071347918368559, 29.570776167832904 ], [ -95.071506918322143, 29.570329167685962 ], [ -95.071613917961869, 29.570121167705281 ], [ -95.071492918746898, 29.569740168279274 ], [ -95.071720918521919, 29.565278167110353 ], [ -95.072170918465744, 29.56368916672276 ], [ -95.072105918541084, 29.563185166231428 ], [ -95.07188891822878, 29.563069166796765 ], [ -95.071807917987428, 29.563164166336946 ], [ -95.071768917993822, 29.563101166340168 ], [ -95.071730917865111, 29.563037166526627 ], [ -95.071705917658321, 29.562996166075948 ], [ -95.071673917817378, 29.562943166907189 ], [ -95.071567917588155, 29.562770166751697 ], [ -95.071386917761899, 29.562353166418088 ], [ -95.06997191754526, 29.559057165561782 ], [ -95.069679917169324, 29.558197165814121 ], [ -95.069366917630276, 29.557272165573558 ], [ -95.069013917278227, 29.556385165654131 ], [ -95.068335917369922, 29.557490165508042 ], [ -95.066858916758719, 29.558203165539418 ], [ -95.064831916117384, 29.558774165903426 ], [ -95.064271916302673, 29.558849165776213 ], [ -95.06324291611925, 29.558986166191332 ], [ -95.060730915258787, 29.559120166055454 ], [ -95.058623914349184, 29.559149166602083 ], [ -95.058176914025339, 29.559139166333384 ], [ -95.057219914136212, 29.559119166184249 ], [ -95.056887913962655, 29.560086166301275 ], [ -95.0564739140151, 29.561294166555225 ], [ -95.056136914130747, 29.562103167253685 ], [ -95.055762914306285, 29.562791167261533 ], [ -95.055360913716498, 29.563603167200764 ], [ -95.055974914622141, 29.563908167244932 ], [ -95.056591914375204, 29.564371167748106 ], [ -95.056766914037155, 29.56460616747642 ], [ -95.056607914114963, 29.564804167613897 ], [ -95.056507914064326, 29.564911167559988 ], [ -95.056427914151527, 29.564997167043852 ], [ -95.056074914353545, 29.565210167069043 ], [ -95.055788913644022, 29.565310167629281 ], [ -95.055496914429654, 29.565357167555767 ], [ -95.055169913943203, 29.565350167691083 ], [ -95.054877913637625, 29.565317167371461 ], [ -95.054703913663616, 29.565323167168547 ], [ -95.054630913773138, 29.565332167398957 ], [ -95.054424913438581, 29.565356167745005 ], [ -95.054277913451855, 29.565396167319435 ], [ -95.054226914066049, 29.565432168003166 ], [ -95.054124913568657, 29.565503168070194 ], [ -95.053991913545829, 29.565622167365923 ], [ -95.053871913831358, 29.565789167797714 ], [ -95.053845913404729, 29.565868167419953 ], [ -95.053827913788439, 29.565940168180518 ], [ -95.053799914156002, 29.56605216804725 ], [ -95.053822913960246, 29.566129167679463 ], [ -95.053865913255734, 29.56622516805675 ], [ -95.053978914002954, 29.566514167679891 ], [ -95.054025913928101, 29.566701168035245 ], [ -95.054052913966657, 29.566821168136286 ], [ -95.054075913843903, 29.56694016816822 ], [ -95.054085913474125, 29.567043168144654 ], [ -95.054088914130517, 29.567173168054413 ], [ -95.054124913633331, 29.567292167958868 ], [ -95.054124913557757, 29.567530168455423 ], [ -95.054111913906269, 29.567918168358034 ], [ -95.054071913499399, 29.568504168364555 ], [ -95.053991914102369, 29.569249168062811 ], [ -95.053925913774847, 29.56947516842218 ], [ -95.053805913634378, 29.569688168573403 ], [ -95.053572913518565, 29.569992168237704 ], [ -95.053499913500389, 29.57008716850202 ], [ -95.053384913554339, 29.570195168946022 ], [ -95.053046913517036, 29.570513168727608 ], [ -95.05268791373291, 29.570819169108464 ], [ -95.051254913560683, 29.57192716936666 ], [ -95.050902913303673, 29.572164169448701 ], [ -95.050183912549613, 29.572621169471415 ], [ -95.049523912523995, 29.573245169614271 ], [ -95.048707912932926, 29.574281169638681 ], [ -95.048479912914814, 29.574713169734693 ], [ -95.048356912616512, 29.574946169999663 ], [ -95.048005912795688, 29.575854169615091 ], [ -95.047882913072669, 29.576114170088768 ], [ -95.047654912802315, 29.576597170076958 ], [ -95.047396912412324, 29.577383169942493 ], [ -95.047350912822353, 29.577833170587166 ], [ -95.047386912513602, 29.578258170592282 ], [ -95.047442912497914, 29.578928170865218 ], [ -95.047472912397041, 29.579255170857149 ], [ -95.047510912532317, 29.57967817052176 ], [ -95.047513912651254, 29.579714171202674 ], [ -95.047548912629964, 29.58009517109652 ], [ -95.047548912778652, 29.580983170748667 ], [ -95.047540912669433, 29.581056171211333 ], [ -95.047500912658734, 29.581135171158124 ], [ -95.04767691264199, 29.581804171478634 ], [ -95.047742913059636, 29.582231171501508 ], [ -95.047221912935299, 29.583213171321596 ], [ -95.047178912856239, 29.583386171944714 ], [ -95.0470309122137, 29.58398917176914 ], [ -95.046674912782905, 29.584431172114869 ], [ -95.045928912355322, 29.584741171878534 ], [ -95.045231912744114, 29.585081171642098 ], [ -95.044847911685238, 29.585268172103913 ], [ -95.044497911779203, 29.585377172245369 ], [ -95.044007911590356, 29.585439171805419 ], [ -95.043519911562825, 29.585634172448504 ], [ -95.04291091153766, 29.585937172638026 ], [ -95.042317912033255, 29.58638317221239 ], [ -95.042181911866663, 29.586837172246728 ], [ -95.042156911154478, 29.58716017235384 ], [ -95.042558911680814, 29.589512172861138 ], [ -95.04254391183882, 29.589872173355598 ], [ -95.042200912190339, 29.589967173274545 ], [ -95.041382911296424, 29.590232173038974 ], [ -95.041463911172002, 29.590315172930044 ], [ -95.041352911359212, 29.590503173275305 ], [ -95.041344912036109, 29.590606173024035 ], [ -95.041298911328312, 29.590693172861609 ], [ -95.041482911069522, 29.59079817326376 ], [ -95.041498911708359, 29.591328173274107 ], [ -95.041672911900719, 29.591334172962856 ], [ -95.041717911244675, 29.591335173287952 ], [ -95.041821911927087, 29.59133817324199 ], [ -95.042074911634415, 29.591339173156907 ], [ -95.042312911527574, 29.5913351733147 ], [ -95.042271911266823, 29.591461173767613 ], [ -95.042495911516298, 29.591808173824059 ], [ -95.042592912351935, 29.591916173271127 ], [ -95.042944912433157, 29.59230917369187 ], [ -95.042978912132895, 29.592347173905431 ], [ -95.04407491186447, 29.592539173135911 ], [ -95.044146912171755, 29.592552173842947 ], [ -95.044698912715845, 29.592820173620566 ], [ -95.044723912495158, 29.592832173309478 ], [ -95.045080913105167, 29.593123173413968 ], [ -95.045075912707404, 29.593165173951512 ], [ -95.044920912846266, 29.594523174318116 ], [ -95.044141912755506, 29.595266173758191 ], [ -95.0438259127219, 29.595727174422525 ], [ -95.044381912401192, 29.596774174255366 ], [ -95.044492912121555, 29.597268174727692 ], [ -95.04341491232951, 29.598049174960327 ], [ -95.043047912248369, 29.598530175145523 ], [ -95.042795912348595, 29.599061174554031 ], [ -95.043391912405042, 29.600210174777263 ], [ -95.043530912834001, 29.600736175229077 ], [ -95.043793912851328, 29.601343175204018 ], [ -95.043892912251351, 29.601865175358583 ], [ -95.043706912253185, 29.602095175084635 ], [ -95.043065912610018, 29.602887175385405 ], [ -95.042740912749281, 29.603108175519054 ], [ -95.041963911812616, 29.603440176255162 ], [ -95.041656911805006, 29.603679176202192 ], [ -95.041460911706736, 29.604242176236248 ], [ -95.042206912047504, 29.604386176099105 ], [ -95.042978912569495, 29.604534176380565 ], [ -95.043382912954542, 29.604620175719159 ], [ -95.043578912848204, 29.604670176407367 ], [ -95.043771912532108, 29.604729176405343 ], [ -95.043960913061824, 29.604797175975804 ], [ -95.044324913031573, 29.604957176087947 ], [ -95.044675912501788, 29.605145176126214 ], [ -95.044843913376326, 29.605250176133858 ], [ -95.04516391324519, 29.605478176086383 ], [ -95.045314913262104, 29.605601176328811 ], [ -95.0454559131352, 29.605731176174491 ], [ -95.04558991291789, 29.605868175860959 ], [ -95.045841913718604, 29.606160176467451 ], [ -95.045956913120904, 29.606314175985919 ], [ -95.046064913497005, 29.606477176016924 ], [ -95.046167913256369, 29.606646176106615 ], [ -95.046569913218889, 29.607370176197193 ], [ -95.048535914539713, 29.610959177518154 ], [ -95.04860991397851, 29.611095177019546 ], [ -95.051137915044578, 29.610033176624253 ], [ -95.055562916405577, 29.608174176511575 ], [ -95.058453916714086, 29.606971175986519 ], [ -95.058513917133766, 29.606946176318438 ], [ -95.058572917149291, 29.606922176319582 ], [ -95.062206917254997, 29.605409175421432 ], [ -95.0679929193047, 29.603002174520768 ], [ -95.068530918938222, 29.602777174995548 ], [ -95.069074919159974, 29.602552174550571 ], [ -95.069300919099547, 29.602460175011149 ], [ -95.069717919616323, 29.602292174747873 ], [ -95.069843919527756, 29.602241174508482 ], [ -95.074363920301906, 29.60561717491926 ], [ -95.075546920759322, 29.606502175531904 ], [ -95.075999921201671, 29.606840175546537 ], [ -95.077967921702125, 29.608336175982501 ], [ -95.08209692311847, 29.611476175856005 ], [ -95.082237923329302, 29.611584176122108 ], [ -95.084129923957647, 29.61302317612942 ], [ -95.084249923139197, 29.613115176202538 ], [ -95.084393923202839, 29.612195176081187 ], [ -95.08447292353155, 29.61119617571525 ], [ -95.084529923491132, 29.610476175833455 ], [ -95.084596923267867, 29.610232175421164 ], [ -95.084756923085749, 29.609940176181912 ], [ -95.085071923404243, 29.609436175386509 ], [ -95.085533923997474, 29.608839175196749 ], [ -95.085599923756206, 29.608669175084906 ], [ -95.085675923276497, 29.608390175167386 ], [ -95.085859923270874, 29.605912175195883 ], [ -95.086220923860623, 29.604694174647332 ], [ -95.086901924105135, 29.603389174359961 ], [ -95.088556924416494, 29.601424173703847 ], [ -95.088834923744827, 29.600943173891391 ], [ -95.089502924031564, 29.599533173790274 ], [ -95.089516924063332, 29.59951917387945 ], [ -95.089746924442679, 29.599343173111912 ], [ -95.089836924380961, 29.598922172909663 ], [ -95.090015924141525, 29.598780173477891 ], [ -95.090623924930469, 29.598701173221379 ], [ -95.091817924463172, 29.598684173105337 ], [ -95.092009924968252, 29.598625173598631 ], [ -95.092326925023144, 29.598401172904836 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1201, "Tract": "48201310600", "Area_SqMi": 0.6854934122188816, "total_2009": 344, "total_2010": 474, "total_2011": 459, "total_2012": 367, "total_2013": 351, "total_2014": 375, "total_2015": 377, "total_2016": 348, "total_2017": 334, "total_2018": 347, "total_2019": 345, "total_2020": 281, "age1": 57, "age2": 165, "age3": 74, "earn1": 56, "earn2": 93, "earn3": 147, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 2, "naics_s06": 21, "naics_s07": 57, "naics_s08": 0, "naics_s09": 0, "naics_s10": 5, "naics_s11": 5, "naics_s12": 5, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 7, "naics_s17": 9, "naics_s18": 45, "naics_s19": 27, "naics_s20": 95, "race1": 229, "race2": 37, "race3": 3, "race4": 20, "race5": 2, "race6": 5, "ethnicity1": 177, "ethnicity2": 119, "edu1": 50, "edu2": 64, "edu3": 77, "edu4": 48, "Shape_Length": 18645.936276572284, "Shape_Area": 19110383.098961934, "total_2021": 287, "total_2022": 296 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.333102992567504, 29.72609419140495 ], [ -95.333193992463904, 29.725895190865167 ], [ -95.332394991683842, 29.725394191065213 ], [ -95.331898991670158, 29.725042191014804 ], [ -95.330671991873615, 29.72425819143713 ], [ -95.328661990703566, 29.7229841906973 ], [ -95.328375991436815, 29.722801190530699 ], [ -95.328248990870634, 29.722913190668351 ], [ -95.327545990512121, 29.7236001909185 ], [ -95.32608399052971, 29.72505819143419 ], [ -95.325530990464031, 29.725617191191507 ], [ -95.324935990134819, 29.726212191866662 ], [ -95.324848990401179, 29.726319191438115 ], [ -95.32407599003929, 29.727060192058698 ], [ -95.323500989629252, 29.727621192361593 ], [ -95.322884989465066, 29.728225191691223 ], [ -95.322307989615268, 29.728823191936836 ], [ -95.321721989568431, 29.729404192407451 ], [ -95.321123989579831, 29.730014192715061 ], [ -95.320515989183704, 29.730601192446215 ], [ -95.320000988951449, 29.731122192680488 ], [ -95.319969989021729, 29.731201192633968 ], [ -95.319399988793791, 29.731782193183665 ], [ -95.318822989333256, 29.732364193306879 ], [ -95.318242988569907, 29.732934193092351 ], [ -95.317644988569, 29.73351319373878 ], [ -95.316970988669212, 29.734222193224056 ], [ -95.31669598842565, 29.734518193658456 ], [ -95.316408988306392, 29.734811193434567 ], [ -95.31569998839268, 29.735476194199268 ], [ -95.315516988466371, 29.735665194262889 ], [ -95.315289988440867, 29.735860193584077 ], [ -95.315113987876643, 29.736091193531966 ], [ -95.314857988620005, 29.736370193664023 ], [ -95.314548987861968, 29.736827194544826 ], [ -95.314347987665968, 29.737142193917009 ], [ -95.314253987987044, 29.737268194391284 ], [ -95.31463798796544, 29.737384194387889 ], [ -95.315503988385913, 29.737669193968337 ], [ -95.316335988557469, 29.737924194547798 ], [ -95.317291988511286, 29.738225194558662 ], [ -95.31852598919869, 29.738615194641451 ], [ -95.319730989646885, 29.738998193962903 ], [ -95.321058990260838, 29.739414194217353 ], [ -95.321546990050976, 29.739578194747537 ], [ -95.321978990258501, 29.739722194327154 ], [ -95.322863990628832, 29.739991194533772 ], [ -95.323757990972226, 29.740258194358994 ], [ -95.324636990566319, 29.740544194131811 ], [ -95.325530991405472, 29.740837194431343 ], [ -95.325572991178788, 29.740773194412714 ], [ -95.325935990782924, 29.740327194626158 ], [ -95.326169991087838, 29.7400281948368 ], [ -95.326468991030822, 29.739661194296367 ], [ -95.326624991367908, 29.73945319450122 ], [ -95.327037991082562, 29.738950194500642 ], [ -95.327077991192766, 29.738888193703744 ], [ -95.327334991923706, 29.738555193851816 ], [ -95.32758999117388, 29.738230194191463 ], [ -95.327764991508303, 29.738015193717288 ], [ -95.328010991638791, 29.737701194017518 ], [ -95.328222991667829, 29.737425193765691 ], [ -95.328475991174415, 29.737134194059848 ], [ -95.328556991276301, 29.737000193834962 ], [ -95.328642992077491, 29.736795193828872 ], [ -95.328914991261797, 29.736163193177866 ], [ -95.329191991912836, 29.735475192989497 ], [ -95.329476991674269, 29.734780193528891 ], [ -95.329684991566637, 29.734289193295648 ], [ -95.329724991417038, 29.734223192832406 ], [ -95.32978399161253, 29.734190193259494 ], [ -95.329842991467459, 29.734187193407774 ], [ -95.329884991713755, 29.734180192882789 ], [ -95.329937992298483, 29.734131193108762 ], [ -95.330119991783377, 29.733614193022259 ], [ -95.330261991917368, 29.733253192594223 ], [ -95.330384992339845, 29.732910192779379 ], [ -95.330440992293092, 29.732751192803885 ], [ -95.330506991918824, 29.732585192906317 ], [ -95.330707991579104, 29.732016192531628 ], [ -95.33081699227219, 29.731768192615988 ], [ -95.331086991946009, 29.731093192021774 ], [ -95.331137991611541, 29.730957192354158 ], [ -95.331264991975488, 29.730635192025048 ], [ -95.331488991820905, 29.730067192233712 ], [ -95.331623992083834, 29.729708192100272 ], [ -95.3320139920651, 29.72877219175183 ], [ -95.332218992201007, 29.728254191801295 ], [ -95.332309992703344, 29.728039191828408 ], [ -95.332573991794092, 29.727393191308487 ], [ -95.332837991897634, 29.726748191351124 ], [ -95.332903992248859, 29.726587191103828 ], [ -95.333102992567504, 29.72609419140495 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1202, "Tract": "48201254700", "Area_SqMi": 11.551280555799472, "total_2009": 415, "total_2010": 451, "total_2011": 466, "total_2012": 427, "total_2013": 472, "total_2014": 439, "total_2015": 525, "total_2016": 494, "total_2017": 539, "total_2018": 658, "total_2019": 888, "total_2020": 777, "age1": 188, "age2": 362, "age3": 108, "earn1": 119, "earn2": 179, "earn3": 360, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 216, "naics_s05": 0, "naics_s06": 0, "naics_s07": 35, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 5, "naics_s12": 277, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 28, "naics_s17": 0, "naics_s18": 87, "naics_s19": 4, "naics_s20": 0, "race1": 521, "race2": 93, "race3": 7, "race4": 20, "race5": 0, "race6": 17, "ethnicity1": 408, "ethnicity2": 250, "edu1": 120, "edu2": 115, "edu3": 156, "edu4": 79, "Shape_Length": 101472.27617594166, "Shape_Area": 322029931.68143159, "total_2021": 841, "total_2022": 658 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.016437909756689, 29.703801197834537 ], [ -95.017147910236929, 29.703220197145995 ], [ -95.016285909586614, 29.702691197038124 ], [ -95.015161909334836, 29.702249197288136 ], [ -95.014939909719757, 29.702166197543036 ], [ -95.013777909414287, 29.701732197249758 ], [ -95.012133909175915, 29.701303197441209 ], [ -95.011124909061181, 29.701340197121322 ], [ -95.01059190813217, 29.701202197304099 ], [ -95.00871790765288, 29.70096219664218 ], [ -95.006007907568446, 29.70063419713383 ], [ -95.003469906928814, 29.700116197340051 ], [ -95.000572905322088, 29.699182197266353 ], [ -95.000007905931398, 29.69894119696195 ], [ -94.999361905492279, 29.698664197216953 ], [ -94.998280905587023, 29.697919196981307 ], [ -94.996607904307638, 29.696644196936209 ], [ -94.994618903866638, 29.695344196066994 ], [ -94.993320903676846, 29.694385196095222 ], [ -94.989961902788764, 29.691857195828913 ], [ -94.989629903116295, 29.691454195710683 ], [ -94.988704902751351, 29.69048519562244 ], [ -94.98822290209884, 29.690037195252341 ], [ -94.987507901668792, 29.689265195635553 ], [ -94.986154901752528, 29.687620194859548 ], [ -94.984732901528716, 29.685815194498552 ], [ -94.98387090106786, 29.68480419433963 ], [ -94.983140900563882, 29.683944194445516 ], [ -94.982713900838988, 29.683347194497021 ], [ -94.981987899799222, 29.682330194215176 ], [ -94.981706899819557, 29.681937193773091 ], [ -94.980500899735375, 29.679725194054843 ], [ -94.979658899772502, 29.678277193023149 ], [ -94.979447899899796, 29.67791319376251 ], [ -94.979277899342719, 29.677608192871499 ], [ -94.978984899594437, 29.677080192765885 ], [ -94.978851898976941, 29.676736192658403 ], [ -94.978790899550958, 29.676765193233045 ], [ -94.978729898976809, 29.676795193129784 ], [ -94.978210899079343, 29.677100193320989 ], [ -94.977524898608294, 29.677505193093282 ], [ -94.976635898651764, 29.67798419300907 ], [ -94.976105898947807, 29.678270193254409 ], [ -94.97583389810103, 29.678415193095262 ], [ -94.975016897992433, 29.678852193395194 ], [ -94.974745898701954, 29.678998193510314 ], [ -94.974496898516534, 29.679132193913695 ], [ -94.974124898015049, 29.679334193476059 ], [ -94.973751897577031, 29.679534193892675 ], [ -94.973503897565337, 29.679668193700401 ], [ -94.972813897828459, 29.680039193582406 ], [ -94.970744897367567, 29.681152194526767 ], [ -94.970055897239277, 29.681524194784078 ], [ -94.970058896708323, 29.681637194796469 ], [ -94.969920897468427, 29.681708194147728 ], [ -94.969728897220818, 29.681691194522266 ], [ -94.969605897320321, 29.681681194767677 ], [ -94.969372896663799, 29.681681194806153 ], [ -94.969234896851944, 29.681752194351475 ], [ -94.969139896696717, 29.682077194691171 ], [ -94.969246896642559, 29.682385194304551 ], [ -94.969385897483278, 29.682522194416993 ], [ -94.9695878968096, 29.682571195048595 ], [ -94.969662896846458, 29.682671194860838 ], [ -94.969706897271649, 29.682802194791439 ], [ -94.96964989749371, 29.682790194337215 ], [ -94.969477897383726, 29.682754194295253 ], [ -94.96942189737652, 29.682742194951469 ], [ -94.969253897064661, 29.682703195002738 ], [ -94.968749897289086, 29.682589194765033 ], [ -94.968582897020482, 29.682551194565825 ], [ -94.966768895833482, 29.682176194884597 ], [ -94.961326894821923, 29.681052194225874 ], [ -94.959513894910529, 29.680678194542704 ], [ -94.956564893889606, 29.680069194933381 ], [ -94.947718890783875, 29.678242194550382 ], [ -94.944770890627609, 29.677633194733318 ], [ -94.932601887315826, 29.675120194078168 ], [ -94.931485886737235, 29.674037194430618 ], [ -94.930963886638324, 29.673783193914247 ], [ -94.930813886383319, 29.673764194157982 ], [ -94.930779886432035, 29.673759193755291 ], [ -94.930455886927234, 29.673720194157319 ], [ -94.930274887079122, 29.673703194531818 ], [ -94.929737886793248, 29.673990194132909 ], [ -94.92954988617744, 29.674608194706028 ], [ -94.929544886957117, 29.675365194066497 ], [ -94.929569886269505, 29.676069194783498 ], [ -94.92947488678999, 29.676479194917018 ], [ -94.928852886595024, 29.677502194491655 ], [ -94.928627886017438, 29.678016195393322 ], [ -94.928588886734261, 29.67810719500223 ], [ -94.92863488660015, 29.678548195444431 ], [ -94.928639886683158, 29.678596194921635 ], [ -94.928649886365761, 29.678691195363491 ], [ -94.928642886191128, 29.678743194919367 ], [ -94.928637886225673, 29.678792194817788 ], [ -94.928615886545956, 29.678978195582353 ], [ -94.928557886186738, 29.67947719493776 ], [ -94.928537886634928, 29.679535195466126 ], [ -94.928483885902565, 29.679696194980085 ], [ -94.928477886549203, 29.679713195482218 ], [ -94.928468886288869, 29.679738195595874 ], [ -94.928442886733279, 29.679814195085676 ], [ -94.92843488663901, 29.679840195220208 ], [ -94.928417885858238, 29.679864195465129 ], [ -94.928365886840794, 29.67993619566764 ], [ -94.928349886247645, 29.679961195026042 ], [ -94.928201886604953, 29.680172195286772 ], [ -94.928080886433918, 29.680346195671863 ], [ -94.927732886481579, 29.680698196064604 ], [ -94.927685885831778, 29.680747195795615 ], [ -94.927505886013108, 29.680931196060239 ], [ -94.927479886292943, 29.680963195689749 ], [ -94.927168885843301, 29.681220195659304 ], [ -94.926665885720823, 29.681438195365288 ], [ -94.92566688591954, 29.68198919584934 ], [ -94.924192885608889, 29.682803196158904 ], [ -94.922423884698134, 29.683905196423918 ], [ -94.921615884442048, 29.684694196452885 ], [ -94.920614884398361, 29.685642196713317 ], [ -94.920440884174354, 29.685808197364185 ], [ -94.919875884048039, 29.686861196848565 ], [ -94.919724884079997, 29.687500197657634 ], [ -94.919631884000665, 29.687891197597899 ], [ -94.919644884761723, 29.688062197487643 ], [ -94.919677884855801, 29.688459197758906 ], [ -94.920135884932492, 29.689348197623538 ], [ -94.920291884536354, 29.689630197783686 ], [ -94.920569884960656, 29.690133197687206 ], [ -94.920791884451106, 29.690535198296644 ], [ -94.921112885487091, 29.690827197778624 ], [ -94.921462885541914, 29.691145198309375 ], [ -94.921813885633782, 29.691778198005501 ], [ -94.921859885478682, 29.692320198544106 ], [ -94.921767885271436, 29.692762198126246 ], [ -94.921618884710128, 29.69322919864074 ], [ -94.92161588565061, 29.693239198753808 ], [ -94.921248884629634, 29.693686198834175 ], [ -94.921033884566498, 29.693903198901104 ], [ -94.920943884858346, 29.693993198737658 ], [ -94.920852885143276, 29.69408619874023 ], [ -94.920620884814809, 29.694184198986431 ], [ -94.920503885462907, 29.694234199062567 ], [ -94.920287884745974, 29.694326198722422 ], [ -94.919675884741281, 29.694558198989235 ], [ -94.91908288509029, 29.694784198753545 ], [ -94.91816688467047, 29.694861198746043 ], [ -94.917663884302158, 29.695078198703037 ], [ -94.917205884336582, 29.695345199091413 ], [ -94.917178884470772, 29.695366199130095 ], [ -94.916793883823289, 29.695673198927011 ], [ -94.916507884427276, 29.695948199248626 ], [ -94.916288883913651, 29.696158198828332 ], [ -94.91615788437025, 29.696385199569114 ], [ -94.915831883695461, 29.696955199026807 ], [ -94.915586884202341, 29.697817199346623 ], [ -94.915586883665142, 29.697962199436073 ], [ -94.915586884131855, 29.698187200039438 ], [ -94.915816884121895, 29.698439199610746 ], [ -94.915832883692971, 29.698580199889584 ], [ -94.915930884476992, 29.698662200027933 ], [ -94.916323884193801, 29.698994199790501 ], [ -94.916615883778377, 29.699051199483502 ], [ -94.916881883889275, 29.699104199885689 ], [ -94.91706988470952, 29.699141200016474 ], [ -94.917117884768402, 29.699134199909281 ], [ -94.91781188474522, 29.699043199517416 ], [ -94.917831884991173, 29.699035200186195 ], [ -94.918056885059244, 29.698949199593699 ], [ -94.918570884554697, 29.698751199308404 ], [ -94.919297884454977, 29.698899199563702 ], [ -94.920175885282362, 29.699606200059023 ], [ -94.921805885342664, 29.699670199532907 ], [ -94.922224885955586, 29.699604199409663 ], [ -94.923048885642729, 29.699476199887656 ], [ -94.923866885663713, 29.699166199755158 ], [ -94.924662886395453, 29.69766219912497 ], [ -94.925370886489901, 29.696809199252971 ], [ -94.926955887168631, 29.696663198956813 ], [ -94.928589887025879, 29.696920198523774 ], [ -94.929915887833445, 29.697375198662971 ], [ -94.930204888054007, 29.697810199050622 ], [ -94.930317887535921, 29.698440199273474 ], [ -94.930291887854793, 29.699195199605978 ], [ -94.92968388808346, 29.699976199462792 ], [ -94.928926886997047, 29.700356199618309 ], [ -94.928423887645877, 29.700420200097032 ], [ -94.927522886569491, 29.700535199934706 ], [ -94.926504886766864, 29.700918199493398 ], [ -94.925673886790548, 29.701632199671952 ], [ -94.925217886289317, 29.702517199921651 ], [ -94.925151886632136, 29.702900200558481 ], [ -94.925108886173689, 29.703150199994255 ], [ -94.925124886318429, 29.70320020060699 ], [ -94.925280886723783, 29.703692200722532 ], [ -94.925645886431681, 29.703866200624233 ], [ -94.925923886775379, 29.703998200757241 ], [ -94.926031887045895, 29.704050200375377 ], [ -94.927403886989424, 29.704311200279903 ], [ -94.927616887481477, 29.704318200863526 ], [ -94.930985887761167, 29.704434200471269 ], [ -94.93217688878741, 29.704680200485846 ], [ -94.932677888312043, 29.705016200218889 ], [ -94.932970889037307, 29.705213200421909 ], [ -94.93367788930594, 29.706396200744127 ], [ -94.933711889043181, 29.706518200780696 ], [ -94.933813888742534, 29.706884200814997 ], [ -94.933847889281495, 29.707007201107547 ], [ -94.933877889205306, 29.7071162013143 ], [ -94.933969888825402, 29.707446201167919 ], [ -94.934000889518032, 29.707556201309853 ], [ -94.934182888946566, 29.708210201343523 ], [ -94.934378888960282, 29.708914200896494 ], [ -94.934541889046827, 29.710210201737734 ], [ -94.934568889397084, 29.710421201620139 ], [ -94.934436889783257, 29.710869202005739 ], [ -94.934209889363217, 29.711637201496568 ], [ -94.934130889719384, 29.711706201921718 ], [ -94.932884888815465, 29.712798202148285 ], [ -94.932497888428983, 29.713576202239796 ], [ -94.93251588866022, 29.713767202249009 ], [ -94.932572889205275, 29.714347202345639 ], [ -94.932807889298715, 29.714569202305825 ], [ -94.932830889438151, 29.714591202114487 ], [ -94.932900888947941, 29.714657202063584 ], [ -94.93292488862717, 29.714680202707349 ], [ -94.932956889305572, 29.714710202796727 ], [ -94.932977888933848, 29.71472920234449 ], [ -94.933052889423578, 29.714800202053077 ], [ -94.933084889613525, 29.714831202383653 ], [ -94.933147889315848, 29.714853202565418 ], [ -94.933338888792832, 29.71491920227999 ], [ -94.933402889180314, 29.714942202319367 ], [ -94.933642889311457, 29.715025202106929 ], [ -94.933941888978111, 29.715129202285659 ], [ -94.933955889602501, 29.71513420269061 ], [ -94.934386889272588, 29.715149202378523 ], [ -94.934640889788696, 29.71515920249135 ], [ -94.934712889184027, 29.715161202100106 ], [ -94.934928889358602, 29.715169202235376 ], [ -94.935001889324695, 29.715172202556641 ], [ -94.935042889701407, 29.715159202849907 ], [ -94.935167889929176, 29.715122202618492 ], [ -94.935209889827135, 29.715110202793483 ], [ -94.936589890185104, 29.714701202515226 ], [ -94.940180891274224, 29.71363920198219 ], [ -94.94072989063838, 29.71347020183023 ], [ -94.941500891646641, 29.713233201980952 ], [ -94.942130891589528, 29.713299201545283 ], [ -94.942528891604482, 29.713341201443974 ], [ -94.943803891473991, 29.714288201645214 ], [ -94.944481892052266, 29.715002202574322 ], [ -94.944796892381788, 29.715336202259749 ], [ -94.945247891994811, 29.716004201886253 ], [ -94.945405892465132, 29.716242201940855 ], [ -94.945490892444838, 29.716794202109096 ], [ -94.945536892884647, 29.717097202515681 ], [ -94.945229892481748, 29.718306202587513 ], [ -94.943550892268803, 29.719419203207998 ], [ -94.943417891614658, 29.719542202966917 ], [ -94.9433188916136, 29.719634203471355 ], [ -94.943199891531179, 29.719745202970042 ], [ -94.942957892278145, 29.719971203541093 ], [ -94.942873891785084, 29.720103203684829 ], [ -94.942786892071481, 29.720241203107538 ], [ -94.942352891814181, 29.720927203229135 ], [ -94.942251891377396, 29.721414203673895 ], [ -94.942002891914569, 29.722618203628937 ], [ -94.942002891517561, 29.723654203688138 ], [ -94.941479891753872, 29.724680203973051 ], [ -94.941081891685727, 29.725001204696078 ], [ -94.940063891850855, 29.725824204908708 ], [ -94.939883891318829, 29.726025204513849 ], [ -94.939344891276093, 29.72662920460472 ], [ -94.939334891112537, 29.726642204855107 ], [ -94.939189891384018, 29.726850205012493 ], [ -94.939798890931385, 29.727127204912435 ], [ -94.940280891176485, 29.727298204463832 ], [ -94.940685891415626, 29.727382204662938 ], [ -94.941413891496978, 29.727654204430742 ], [ -94.941454892350507, 29.727730204492339 ], [ -94.941483891387293, 29.727721204936348 ], [ -94.941509891956457, 29.72772520487695 ], [ -94.941719892098178, 29.72775220458206 ], [ -94.941847891856725, 29.727769204752988 ], [ -94.942222891882494, 29.727817204581235 ], [ -94.942395892491547, 29.727869205227776 ], [ -94.944860892801884, 29.728610204484966 ], [ -94.946368893076794, 29.729055204882119 ], [ -94.951483894051293, 29.73055820486459 ], [ -94.953225894965172, 29.731070205455904 ], [ -94.955989895442073, 29.731877205120995 ], [ -94.956145895924465, 29.731922204972498 ], [ -94.957201896074125, 29.732220205120498 ], [ -94.957422896660489, 29.732284205203815 ], [ -94.957736896683414, 29.731580205225718 ], [ -94.958046896730494, 29.730862205395802 ], [ -94.958088896766384, 29.73076720504228 ], [ -94.958280896203988, 29.730334205140853 ], [ -94.958364895878006, 29.730132204532676 ], [ -94.958533896346353, 29.729725204540696 ], [ -94.958782896334668, 29.729172204883817 ], [ -94.959090896159779, 29.728487204717883 ], [ -94.959378896381921, 29.727839203946395 ], [ -94.959601896108026, 29.727329204066461 ], [ -94.959647896726253, 29.727200204286472 ], [ -94.959850896832577, 29.726566204381747 ], [ -94.960007896760828, 29.726169203506029 ], [ -94.960040896758329, 29.725969204211626 ], [ -94.96003889651638, 29.725650203849906 ], [ -94.960032896748558, 29.725520204176721 ], [ -94.960018896176138, 29.725327203781926 ], [ -94.960038896356323, 29.725128203517492 ], [ -94.960046896247334, 29.724983203923273 ], [ -94.960179896405393, 29.724329203338776 ], [ -94.960290896628436, 29.723858203130924 ], [ -94.960473897015191, 29.723381203312638 ], [ -94.960701896703355, 29.722904203487243 ], [ -94.960824897013651, 29.72269020320762 ], [ -94.961010896749528, 29.722430203009996 ], [ -94.961270896179713, 29.722160203169324 ], [ -94.961482896975511, 29.72194420334969 ], [ -94.961629896868686, 29.721810202693884 ], [ -94.961818896799826, 29.721663202504015 ], [ -94.962029896352618, 29.721508203163921 ], [ -94.962307897325147, 29.721343202920593 ], [ -94.962676897101062, 29.721146202708006 ], [ -94.962975897068958, 29.72101620293304 ], [ -94.963354897073373, 29.720866203107025 ], [ -94.963718897088953, 29.720736202645078 ], [ -94.965096897102086, 29.720223202193587 ], [ -94.965376897868339, 29.720128202427013 ], [ -94.966350897970031, 29.719787202464218 ], [ -94.967340897767073, 29.719454201998687 ], [ -94.967548898285941, 29.719380202354216 ], [ -94.968319898594487, 29.719092201877402 ], [ -94.969907898619084, 29.718535201577268 ], [ -94.971081898555354, 29.718126201666749 ], [ -94.971992899501586, 29.717798202006357 ], [ -94.97290689996963, 29.717463201494777 ], [ -94.974759900403313, 29.716805201154106 ], [ -94.975513900212675, 29.716531201178011 ], [ -94.976450900339444, 29.716190201197481 ], [ -94.976841900524349, 29.716056201401969 ], [ -94.977392900616195, 29.715866201651668 ], [ -94.978331901292464, 29.715536201400532 ], [ -94.979917901143949, 29.714948200778633 ], [ -94.980071901733155, 29.71489120081478 ], [ -94.980835901377674, 29.714608201153261 ], [ -94.980981901472163, 29.714216200782655 ], [ -94.981205901828247, 29.713819200449059 ], [ -94.981299901157826, 29.713557200827246 ], [ -94.98174490160244, 29.71235820003313 ], [ -94.982349901307146, 29.710873200004492 ], [ -94.982438901857662, 29.710673200329552 ], [ -94.982702901511161, 29.710071199716531 ], [ -94.982887902194264, 29.709648199415096 ], [ -94.982915901814664, 29.709584200090074 ], [ -94.982993901456965, 29.709360199247001 ], [ -94.983169901268596, 29.709440199485059 ], [ -94.983244901500669, 29.709547200065437 ], [ -94.983253901908299, 29.709561199452676 ], [ -94.983399901542342, 29.709572199486637 ], [ -94.983683902078582, 29.709588199470428 ], [ -94.983824901916591, 29.709557199984996 ], [ -94.983896902387926, 29.70956019974393 ], [ -94.983993902179392, 29.709586199893778 ], [ -94.984096901529625, 29.70956619926444 ], [ -94.984189902130112, 29.709496199981263 ], [ -94.984279902112434, 29.709455199917063 ], [ -94.984417902455405, 29.709426199799854 ], [ -94.98445590231988, 29.709404199280808 ], [ -94.984558902266883, 29.70930119977707 ], [ -94.984676901791374, 29.70925319929642 ], [ -94.984792902444411, 29.709244199203205 ], [ -94.984909902442851, 29.709272199464429 ], [ -94.985000901717399, 29.709329199966927 ], [ -94.985133902639163, 29.7093952000331 ], [ -94.985313901937928, 29.709379199641148 ], [ -94.985462902573431, 29.709285199748273 ], [ -94.985697901915032, 29.709179199601945 ], [ -94.985936902491915, 29.709055199372511 ], [ -94.986041902448179, 29.709019199562928 ], [ -94.98628190251641, 29.708984199068933 ], [ -94.986393902577689, 29.708975199571913 ], [ -94.986585902207509, 29.708991199451738 ], [ -94.987267902707615, 29.708920199311024 ], [ -94.987507902977939, 29.708836199400849 ], [ -94.987919903080154, 29.708693199196109 ], [ -94.988103903446003, 29.708619199701818 ], [ -94.988337902972617, 29.708557199761159 ], [ -94.988531903549273, 29.708523199717515 ], [ -94.988717903603373, 29.708529199158626 ], [ -94.988938903445529, 29.708461198948171 ], [ -94.989006903479293, 29.708395198914459 ], [ -94.989076903307378, 29.708356199365472 ], [ -94.989538903754976, 29.70878319916681 ], [ -94.989489903042369, 29.708823199780213 ], [ -94.989465903696143, 29.708921199506698 ], [ -94.989876903984594, 29.708998199474138 ], [ -94.990171903059334, 29.709093199126702 ], [ -94.990461903921499, 29.709112199130658 ], [ -94.990506903691823, 29.709118199341017 ], [ -94.990892903932505, 29.709270199452899 ], [ -94.991314903475129, 29.709396199106774 ], [ -94.991461903598179, 29.709418199827894 ], [ -94.991683904137972, 29.709434199325003 ], [ -94.991867903742531, 29.709441199733725 ], [ -94.992272904464699, 29.709443199757004 ], [ -94.992601904413462, 29.709434198984887 ], [ -94.993086904613335, 29.709321199144714 ], [ -94.993126904309293, 29.70859019920864 ], [ -94.994175904069053, 29.708021199346586 ], [ -94.995687904761979, 29.70794719912838 ], [ -94.996373905109593, 29.707914199030721 ], [ -94.997977905914681, 29.708301199114011 ], [ -94.999276906030289, 29.708561199413744 ], [ -95.002294906512361, 29.710545199603345 ], [ -95.002750906547234, 29.711742199589946 ], [ -95.004941907692341, 29.711381199063485 ], [ -95.005082907051616, 29.711304199228259 ], [ -95.005321907865209, 29.711150199391913 ], [ -95.005798907380139, 29.710901198942572 ], [ -95.005818907487807, 29.711047199244693 ], [ -95.008335907838529, 29.709724199141775 ], [ -95.008454907837915, 29.709657199140604 ], [ -95.008942908467958, 29.709389199166598 ], [ -95.010385908261966, 29.708440198628768 ], [ -95.011365909300693, 29.707749198563167 ], [ -95.012143909466289, 29.707195198510593 ], [ -95.012822908853906, 29.706701198402445 ], [ -95.013676909224216, 29.706004197907333 ], [ -95.014614909195203, 29.705237197956951 ], [ -95.015372909689205, 29.704646197642635 ], [ -95.015718909974112, 29.704367197570853 ], [ -95.016437909756689, 29.703801197834537 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1203, "Tract": "48201322600", "Area_SqMi": 0.96175156486457247, "total_2009": 1983, "total_2010": 1205, "total_2011": 2233, "total_2012": 947, "total_2013": 1044, "total_2014": 872, "total_2015": 856, "total_2016": 910, "total_2017": 927, "total_2018": 777, "total_2019": 836, "total_2020": 525, "age1": 353, "age2": 800, "age3": 206, "earn1": 114, "earn2": 190, "earn3": 1055, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 59, "naics_s05": 5, "naics_s06": 380, "naics_s07": 6, "naics_s08": 25, "naics_s09": 0, "naics_s10": 0, "naics_s11": 7, "naics_s12": 737, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 26, "naics_s17": 0, "naics_s18": 102, "naics_s19": 4, "naics_s20": 0, "race1": 1103, "race2": 139, "race3": 11, "race4": 78, "race5": 1, "race6": 27, "ethnicity1": 911, "ethnicity2": 448, "edu1": 184, "edu2": 289, "edu3": 335, "edu4": 198, "Shape_Length": 25924.970320944187, "Shape_Area": 26811987.574170105, "total_2021": 344, "total_2022": 1359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.163287947161933, 29.689397189401802 ], [ -95.163568947715376, 29.689047189453273 ], [ -95.163085947429678, 29.688784189079794 ], [ -95.16142894642303, 29.687810188889525 ], [ -95.161162946744568, 29.687654189039417 ], [ -95.160974946134942, 29.687544188810048 ], [ -95.160318945931095, 29.68715818927944 ], [ -95.160268945961491, 29.687129189448111 ], [ -95.160055946607713, 29.687005188987676 ], [ -95.159655945907033, 29.686770189137174 ], [ -95.158926945646243, 29.686342189417989 ], [ -95.157847945204367, 29.685708188743241 ], [ -95.157026945512456, 29.685225189202249 ], [ -95.156856945158239, 29.685126188427969 ], [ -95.156379945624877, 29.684845188897871 ], [ -95.156101945144727, 29.684683189100447 ], [ -95.15568994521665, 29.68444018876577 ], [ -95.154974945025359, 29.684011188925538 ], [ -95.154783945210568, 29.683891188544163 ], [ -95.154547945137253, 29.683743188792278 ], [ -95.154496945206333, 29.683907188670556 ], [ -95.153952944347381, 29.685950189274696 ], [ -95.153822944634442, 29.68641018952486 ], [ -95.153665945072618, 29.68702118947872 ], [ -95.15356894436394, 29.687561189223 ], [ -95.15351994458625, 29.687940189736892 ], [ -95.153491945074293, 29.688316189780725 ], [ -95.153480944158545, 29.688478189538532 ], [ -95.153475944132282, 29.688720189844549 ], [ -95.15348094433881, 29.688961190120999 ], [ -95.153492944285645, 29.689150189787998 ], [ -95.153487945100693, 29.689276190154853 ], [ -95.153484944583269, 29.689677190069617 ], [ -95.153487944780366, 29.690087190195769 ], [ -95.153461944646452, 29.695513191518256 ], [ -95.153424945192356, 29.697827191968102 ], [ -95.153424944828046, 29.700036191576746 ], [ -95.153422944650472, 29.700124192276938 ], [ -95.153417944829698, 29.700402192026537 ], [ -95.153430945480835, 29.700708192575988 ], [ -95.153420945337217, 29.701484191932238 ], [ -95.153417945207948, 29.701686192759777 ], [ -95.153430945040327, 29.701907192626134 ], [ -95.153403945667705, 29.703980192952933 ], [ -95.15340394555669, 29.705115192700891 ], [ -95.153410945064465, 29.705258192647289 ], [ -95.153410945655821, 29.705422193148099 ], [ -95.153413945108824, 29.705492193297321 ], [ -95.153417945372311, 29.705578193350906 ], [ -95.153410945011913, 29.705687193219426 ], [ -95.153417945423811, 29.705817192906107 ], [ -95.153396945239351, 29.707111193908702 ], [ -95.153390945739289, 29.707479193999028 ], [ -95.153380944984818, 29.707975194063703 ], [ -95.153382945598594, 29.709793194269469 ], [ -95.15337894539266, 29.711450194125934 ], [ -95.153374945494861, 29.711586194066463 ], [ -95.153374945272247, 29.71191919470655 ], [ -95.153374945930125, 29.712085194472799 ], [ -95.153549945523494, 29.71209019456046 ], [ -95.153788946237682, 29.712097194081007 ], [ -95.153983945380148, 29.712103194058329 ], [ -95.161213948168424, 29.712314194209902 ], [ -95.161232947229536, 29.712129194416224 ], [ -95.161239947646337, 29.712061193834462 ], [ -95.1612589473676, 29.711874194499636 ], [ -95.161265947980027, 29.711800194375627 ], [ -95.161266947432722, 29.710695193914059 ], [ -95.161253947679185, 29.710178194205604 ], [ -95.161278947674489, 29.71010719339397 ], [ -95.161316947571635, 29.710046193721897 ], [ -95.161411947666309, 29.70999719388843 ], [ -95.161486948138759, 29.709975193750338 ], [ -95.161795948163558, 29.709980193562661 ], [ -95.161914947419277, 29.709969193738399 ], [ -95.162859947795866, 29.709937194045065 ], [ -95.162998948380164, 29.709915193341672 ], [ -95.163074948430278, 29.709876193673377 ], [ -95.163143947960606, 29.709805193836253 ], [ -95.163162948217519, 29.709651193539237 ], [ -95.163124947697284, 29.708688193603169 ], [ -95.162547948039659, 29.708708193696527 ], [ -95.162527947528545, 29.707881193467614 ], [ -95.16250194819834, 29.705924193012251 ], [ -95.162481948130718, 29.704819192466662 ], [ -95.162466947707827, 29.704251192861381 ], [ -95.162453947842423, 29.70371219206687 ], [ -95.16243694752437, 29.703065191991229 ], [ -95.162407947795757, 29.701090191857261 ], [ -95.162384947609411, 29.700383191682068 ], [ -95.162350947425168, 29.699325191606881 ], [ -95.162304947774516, 29.698960191209622 ], [ -95.162302947713528, 29.698848191424293 ], [ -95.162273947675885, 29.697222191010137 ], [ -95.162259947215574, 29.696459190545546 ], [ -95.162261947025797, 29.695697191042211 ], [ -95.162262947108388, 29.695020190313159 ], [ -95.16224594736228, 29.694175190272237 ], [ -95.162191946629108, 29.693316190639766 ], [ -95.162158947545777, 29.692532189761074 ], [ -95.162142947060701, 29.691752190270098 ], [ -95.162097947212203, 29.690916189678976 ], [ -95.162094946799741, 29.689265189465221 ], [ -95.162680946968592, 29.689274189074951 ], [ -95.162979946903022, 29.689278189123446 ], [ -95.163287947161933, 29.689397189401802 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1204, "Tract": "48201310700", "Area_SqMi": 0.7622517899442437, "total_2009": 1350, "total_2010": 1382, "total_2011": 1494, "total_2012": 1572, "total_2013": 1619, "total_2014": 1528, "total_2015": 1783, "total_2016": 1972, "total_2017": 2010, "total_2018": 1934, "total_2019": 2015, "total_2020": 1998, "age1": 423, "age2": 726, "age3": 347, "earn1": 207, "earn2": 675, "earn3": 614, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 166, "naics_s06": 72, "naics_s07": 442, "naics_s08": 60, "naics_s09": 46, "naics_s10": 8, "naics_s11": 6, "naics_s12": 44, "naics_s13": 0, "naics_s14": 2, "naics_s15": 250, "naics_s16": 106, "naics_s17": 2, "naics_s18": 258, "naics_s19": 17, "naics_s20": 2, "race1": 1098, "race2": 277, "race3": 19, "race4": 76, "race5": 2, "race6": 24, "ethnicity1": 757, "ethnicity2": 739, "edu1": 313, "edu2": 280, "edu3": 286, "edu4": 194, "Shape_Length": 20387.336914630188, "Shape_Area": 21250275.296668589, "total_2021": 1416, "total_2022": 1496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.328248990870634, 29.722913190668351 ], [ -95.328375991436815, 29.722801190530699 ], [ -95.327605991001576, 29.722308190423274 ], [ -95.326589990261368, 29.721653190674271 ], [ -95.325775990769316, 29.721167190781479 ], [ -95.325486989880915, 29.720994190167218 ], [ -95.325075990309244, 29.720775190622117 ], [ -95.322038989455706, 29.719203190217144 ], [ -95.32113698940941, 29.718739189859246 ], [ -95.320845988531929, 29.718589190186822 ], [ -95.32069798874187, 29.718513190321413 ], [ -95.320594988953971, 29.718460190314786 ], [ -95.320177988289501, 29.718245190523454 ], [ -95.319476988106317, 29.717878189946251 ], [ -95.318789988622569, 29.717451190341261 ], [ -95.316230988068654, 29.715858189683075 ], [ -95.315421987228717, 29.715333189828954 ], [ -95.31532498709187, 29.715270189928486 ], [ -95.31516298741461, 29.715164189317473 ], [ -95.313288986577248, 29.713948189927137 ], [ -95.311690985898949, 29.712888188969124 ], [ -95.310819985740693, 29.712289188941018 ], [ -95.310697986202442, 29.712205188974476 ], [ -95.310500985713162, 29.712362189025527 ], [ -95.309915986280942, 29.712826189102792 ], [ -95.309399985797029, 29.713604189553035 ], [ -95.309328985905367, 29.71384818971914 ], [ -95.309297986126481, 29.714278189722222 ], [ -95.309200985726108, 29.714475189559121 ], [ -95.308705985528562, 29.714908190134004 ], [ -95.307717985556707, 29.715612189776749 ], [ -95.307537985495827, 29.715892190303169 ], [ -95.307437985854548, 29.716314189891907 ], [ -95.307535985305876, 29.717109190177712 ], [ -95.307682985111356, 29.717404190347658 ], [ -95.307983985599748, 29.717646190382062 ], [ -95.308661985484477, 29.717987190477906 ], [ -95.308827985716192, 29.718191190750744 ], [ -95.308852985453484, 29.71836819074014 ], [ -95.308702985673392, 29.719221190459479 ], [ -95.308625985424712, 29.719387191007922 ], [ -95.308444985563952, 29.719532190998184 ], [ -95.30616698544047, 29.720624191156546 ], [ -95.305627985262163, 29.720956191054249 ], [ -95.305439984738044, 29.72115119090963 ], [ -95.30503598551006, 29.722382191927593 ], [ -95.305186985326202, 29.722448191721405 ], [ -95.306333985665887, 29.722948191782454 ], [ -95.308200986056747, 29.723791191600466 ], [ -95.308281986011735, 29.723812191945811 ], [ -95.311099986997277, 29.724702191791366 ], [ -95.311211986276518, 29.72473919208154 ], [ -95.311315987023747, 29.724775192083609 ], [ -95.311422987067218, 29.724811191549229 ], [ -95.313087987468293, 29.725300191425656 ], [ -95.313346987044198, 29.725381191736457 ], [ -95.315356987356225, 29.725986192219903 ], [ -95.316008987864123, 29.726185191586779 ], [ -95.316873988729981, 29.726440191674179 ], [ -95.317809988037993, 29.726712191893949 ], [ -95.317872988602588, 29.726736192132005 ], [ -95.318514989023967, 29.72692619227087 ], [ -95.319732989004677, 29.727283191800094 ], [ -95.320163989411157, 29.727411192383567 ], [ -95.32031798933815, 29.727460191689872 ], [ -95.320944989157724, 29.72765419188913 ], [ -95.32115798964567, 29.727716191764106 ], [ -95.321517989539387, 29.727813192149782 ], [ -95.321663989913816, 29.727856192094617 ], [ -95.322884989465066, 29.728225191691223 ], [ -95.323500989629252, 29.727621192361593 ], [ -95.32407599003929, 29.727060192058698 ], [ -95.324848990401179, 29.726319191438115 ], [ -95.324935990134819, 29.726212191866662 ], [ -95.325530990464031, 29.725617191191507 ], [ -95.32608399052971, 29.72505819143419 ], [ -95.327545990512121, 29.7236001909185 ], [ -95.328248990870634, 29.722913190668351 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1205, "Tract": "48201231200", "Area_SqMi": 5.3926291253551435, "total_2009": 343, "total_2010": 279, "total_2011": 358, "total_2012": 471, "total_2013": 375, "total_2014": 306, "total_2015": 324, "total_2016": 310, "total_2017": 354, "total_2018": 260, "total_2019": 268, "total_2020": 385, "age1": 114, "age2": 258, "age3": 113, "earn1": 87, "earn2": 135, "earn3": 263, "naics_s01": 0, "naics_s02": 289, "naics_s03": 0, "naics_s04": 2, "naics_s05": 27, "naics_s06": 29, "naics_s07": 36, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 22, "naics_s12": 4, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 53, "naics_s19": 0, "naics_s20": 0, "race1": 377, "race2": 69, "race3": 8, "race4": 23, "race5": 1, "race6": 7, "ethnicity1": 262, "ethnicity2": 223, "edu1": 110, "edu2": 99, "edu3": 102, "edu4": 60, "Shape_Length": 60804.743161250524, "Shape_Area": 150337270.4379116, "total_2021": 313, "total_2022": 485 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.262767980896413, 29.877249224645738 ], [ -95.262724980689882, 29.877223224305322 ], [ -95.262736981558419, 29.877176224892818 ], [ -95.2625619815487, 29.876766224355165 ], [ -95.262584981183693, 29.876630224779092 ], [ -95.26259198089673, 29.876471224641847 ], [ -95.262604980700957, 29.875640223914928 ], [ -95.26261498137363, 29.87547522430005 ], [ -95.262605981391289, 29.874912224491755 ], [ -95.26260398052321, 29.874820224523237 ], [ -95.262557981167532, 29.872064223813641 ], [ -95.262555981092774, 29.871891223352399 ], [ -95.262518981079452, 29.867856223141331 ], [ -95.262491980163659, 29.865880222515752 ], [ -95.262476980379688, 29.864742222534584 ], [ -95.262470980855426, 29.863082221614764 ], [ -95.262457979837336, 29.86228422191088 ], [ -95.262455980426992, 29.861822221751641 ], [ -95.262462980499862, 29.86101422148332 ], [ -95.262442979759257, 29.86049822122903 ], [ -95.262436979880249, 29.859628220722549 ], [ -95.262436979673126, 29.859057221165703 ], [ -95.262423980061115, 29.858728220678355 ], [ -95.262429979937068, 29.857862220706572 ], [ -95.262426980494141, 29.856982220302729 ], [ -95.262421979717971, 29.856502220504311 ], [ -95.262403980062444, 29.854951220080476 ], [ -95.262392979437649, 29.853519219473803 ], [ -95.262379979733922, 29.852969220000961 ], [ -95.262384979832859, 29.851754219067971 ], [ -95.262377979958316, 29.851178219037596 ], [ -95.262402979855452, 29.850058219238452 ], [ -95.262404980004817, 29.849543219348487 ], [ -95.262400979433309, 29.849369218611212 ], [ -95.262373979946119, 29.8491802190504 ], [ -95.262354979672608, 29.848828219065311 ], [ -95.262337979208922, 29.848351218969974 ], [ -95.262322979784315, 29.848175219120993 ], [ -95.262323979257587, 29.848105218791151 ], [ -95.262164979466363, 29.848059218559001 ], [ -95.261691979942626, 29.847850218597859 ], [ -95.261035978954595, 29.847624218724807 ], [ -95.260556978904319, 29.84747521839784 ], [ -95.260177978936724, 29.847409218940143 ], [ -95.259818978571786, 29.847277218679395 ], [ -95.259452978532309, 29.847239218550204 ], [ -95.259288979122644, 29.847271218645226 ], [ -95.259118979221569, 29.847325218943254 ], [ -95.259099979301254, 29.84733221903354 ], [ -95.258992978336025, 29.847332218514925 ], [ -95.258708979042154, 29.847161218707022 ], [ -95.258431978921649, 29.847013218604811 ], [ -95.258204978435558, 29.846980218570852 ], [ -95.258071978345285, 29.846980218554275 ], [ -95.25776897886665, 29.846952218404386 ], [ -95.257585977925899, 29.846875218560857 ], [ -95.257346978101864, 29.846803219006411 ], [ -95.257049977943254, 29.846567218761898 ], [ -95.256854978580208, 29.846451218890902 ], [ -95.256677977655926, 29.84641021855963 ], [ -95.256640978416925, 29.846402218996243 ], [ -95.256324978232414, 29.846396219024189 ], [ -95.256053978339807, 29.846446218905786 ], [ -95.255864978121906, 29.846561218873315 ], [ -95.255750978117391, 29.846682218419794 ], [ -95.255719977975147, 29.846808218858929 ], [ -95.255756978426092, 29.846968218626632 ], [ -95.255857977462867, 29.847127218582152 ], [ -95.255895977578064, 29.847270219109234 ], [ -95.255838978225341, 29.847364218855223 ], [ -95.255693978163052, 29.847523219183735 ], [ -95.255548978293859, 29.847660218561849 ], [ -95.255428977585439, 29.847836218847668 ], [ -95.255327978134872, 29.848023218764588 ], [ -95.255276977864042, 29.848085219098824 ], [ -95.255119978284625, 29.848276219252114 ], [ -95.254955977457172, 29.848325218603428 ], [ -95.254683977363257, 29.848353218708542 ], [ -95.254469977173159, 29.848298219016023 ], [ -95.254286977873619, 29.848171219394548 ], [ -95.253996977525659, 29.848001218975238 ], [ -95.253719977539077, 29.847913218662654 ], [ -95.253384977296733, 29.847918219090772 ], [ -95.253056977761474, 29.847846218695448 ], [ -95.252861976956467, 29.847758219262253 ], [ -95.252855977250292, 29.847571219322376 ], [ -95.252867976712238, 29.847373218630235 ], [ -95.252786976664623, 29.847175219123876 ], [ -95.252590977541345, 29.846994218828311 ], [ -95.252199977021476, 29.846812219060272 ], [ -95.251833977402597, 29.846697219032283 ], [ -95.251632977315978, 29.846713218413569 ], [ -95.251442976346553, 29.846801218791288 ], [ -95.251234976744342, 29.846927219284613 ], [ -95.250994976577488, 29.847114219345134 ], [ -95.250868976763371, 29.847175219120675 ], [ -95.25059197666252, 29.847285218816612 ], [ -95.25044697657421, 29.847312218612299 ], [ -95.250319976299679, 29.847312218896768 ], [ -95.250193976924095, 29.847262219127135 ], [ -95.25016297628315, 29.847224219082666 ], [ -95.250149976919502, 29.84719621938353 ], [ -95.250124976267827, 29.847009218633008 ], [ -95.250099975987411, 29.846542218711132 ], [ -95.250005976613096, 29.845932218713084 ], [ -95.249930976575939, 29.845543218678507 ], [ -95.249886976427007, 29.845378219007049 ], [ -95.249803976428097, 29.845224218219951 ], [ -95.249683976801677, 29.844955218360887 ], [ -95.249595976311795, 29.844812218362581 ], [ -95.249494976157564, 29.844680218493966 ], [ -95.249267976284926, 29.844432218757554 ], [ -95.249216976548496, 29.844388218670186 ], [ -95.249172975942713, 29.844367218565399 ], [ -95.248863976264673, 29.844394218743115 ], [ -95.248680976519111, 29.844400218093664 ], [ -95.248459975673399, 29.844383218266422 ], [ -95.248207975516536, 29.844334218511122 ], [ -95.247993975773227, 29.844246218074144 ], [ -95.247747976162287, 29.844158218292883 ], [ -95.247576975593674, 29.84414221880192 ], [ -95.247528975845768, 29.844142217985738 ], [ -95.247412975771425, 29.844142218104679 ], [ -95.247280975623497, 29.84417521807848 ], [ -95.246857975975274, 29.844346218070854 ], [ -95.246555974971514, 29.844555218243659 ], [ -95.246366975682179, 29.844643218774685 ], [ -95.2461899758231, 29.844703218174661 ], [ -95.245741975774052, 29.844781218290976 ], [ -95.24554097502039, 29.844830218357206 ], [ -95.245350975362243, 29.84490221846308 ], [ -95.24522497557426, 29.844984218232316 ], [ -95.245123975447612, 29.845078218438793 ], [ -95.244985974910335, 29.845166218754553 ], [ -95.244852974803109, 29.845188219088776 ], [ -95.244669974533565, 29.845161218438722 ], [ -95.24449997534289, 29.845100218599342 ], [ -95.244228975105813, 29.844809218330095 ], [ -95.244032975115957, 29.84466621826607 ], [ -95.243748975051673, 29.844672218324103 ], [ -95.243591975101182, 29.844727218561367 ], [ -95.243465974600113, 29.844793218588642 ], [ -95.243282974273683, 29.84485321853397 ], [ -95.243111974309357, 29.844875218710737 ], [ -95.24297997460576, 29.844865218306023 ], [ -95.242859974113031, 29.844821218890008 ], [ -95.242783974608855, 29.844683219002405 ], [ -95.242758974268298, 29.844518219056063 ], [ -95.242518974125332, 29.844128218845494 ], [ -95.242335973852207, 29.844029218443424 ], [ -95.242140974683196, 29.84390321832085 ], [ -95.241912973865411, 29.843842218187795 ], [ -95.241761974558671, 29.843776218298562 ], [ -95.241433974118053, 29.843601218737319 ], [ -95.241162973828978, 29.843430218030267 ], [ -95.240909974338891, 29.843425218839478 ], [ -95.240777974235343, 29.843430218668594 ], [ -95.240607974325044, 29.843463218379974 ], [ -95.240525973608698, 29.843464218888524 ], [ -95.240455973948883, 29.843442218905853 ], [ -95.240367973489526, 29.84335921868686 ], [ -95.240316973502601, 29.843282218648689 ], [ -95.240304973725074, 29.843057218767377 ], [ -95.24033597409661, 29.842853218289061 ], [ -95.240650973781015, 29.841902218022931 ], [ -95.240694973937494, 29.841627218049041 ], [ -95.240624973301905, 29.84129721761515 ], [ -95.240536973785254, 29.841143218300893 ], [ -95.240391973577459, 29.840995217806913 ], [ -95.240201973929885, 29.840863218286344 ], [ -95.24002597389844, 29.840759217572675 ], [ -95.239829973242394, 29.840682218140348 ], [ -95.239514973800041, 29.840621217719235 ], [ -95.238820972892654, 29.840589218212529 ], [ -95.238315973612302, 29.84054521804633 ], [ -95.238246972772075, 29.840490217678536 ], [ -95.238196973018248, 29.840292218258146 ], [ -95.238057973398696, 29.840028217825679 ], [ -95.237855972943095, 29.839682217942066 ], [ -95.237728973476749, 29.83953921738766 ], [ -95.237508973325504, 29.839396217903388 ], [ -95.237299972548243, 29.839319218156039 ], [ -95.237123972712169, 29.839270218120159 ], [ -95.236934972829431, 29.839198217486899 ], [ -95.236833972337891, 29.839127217446023 ], [ -95.236788972689823, 29.839055218059844 ], [ -95.236763972831227, 29.838907217457027 ], [ -95.23676397312795, 29.838764217885984 ], [ -95.236744972634412, 29.838555217434646 ], [ -95.236668973048793, 29.83840121799221 ], [ -95.236574972828492, 29.83828621722629 ], [ -95.236428972998567, 29.838198217527168 ], [ -95.236233972809572, 29.838148217194387 ], [ -95.235754972201462, 29.838149217600044 ], [ -95.2356599722184, 29.838171217422012 ], [ -95.235609971888408, 29.838193217570208 ], [ -95.234877972420009, 29.838336217812493 ], [ -95.234713972514285, 29.838325217529476 ], [ -95.234612971844825, 29.838287217666569 ], [ -95.234391972213558, 29.838166217341971 ], [ -95.234272971881794, 29.838138218042364 ], [ -95.234183971715879, 29.838094218035511 ], [ -95.234076972244296, 29.83878221755819 ], [ -95.233850971946197, 29.839117217665734 ], [ -95.233686972264408, 29.839271217749094 ], [ -95.233503971946831, 29.839381218166952 ], [ -95.233301971833029, 29.83947521815972 ], [ -95.233157971557347, 29.839515217686188 ], [ -95.233122972013078, 29.83951821806766 ], [ -95.232639972006311, 29.839552218093541 ], [ -95.2324379717586, 29.839596218315666 ], [ -95.232279971722789, 29.839701218173637 ], [ -95.231876971675177, 29.839943218062135 ], [ -95.231794971210462, 29.840042217943925 ], [ -95.231624971627156, 29.840322218067616 ], [ -95.231585971631404, 29.84046121791275 ], [ -95.231460970964662, 29.840911218334291 ], [ -95.231443971222504, 29.841020218411717 ], [ -95.231435971879733, 29.841076218775655 ], [ -95.231429971614318, 29.841262218655746 ], [ -95.231473971015234, 29.841405218144597 ], [ -95.231536971998111, 29.841543218162403 ], [ -95.231593971723967, 29.841636218861129 ], [ -95.231826971540556, 29.841939218504027 ], [ -95.231890971364734, 29.842131218430442 ], [ -95.231909971325891, 29.842389218780077 ], [ -95.231839971660392, 29.84260421877028 ], [ -95.231619971975817, 29.842890218501303 ], [ -95.231486971830094, 29.843044218703433 ], [ -95.231424971921598, 29.84309121832834 ], [ -95.231335971026667, 29.84315921909759 ], [ -95.231196971315754, 29.843280219102528 ], [ -95.231102971342892, 29.843335218771127 ], [ -95.230913971903661, 29.843396218617372 ], [ -95.230673971572088, 29.843495219122456 ], [ -95.230547970813831, 29.843578219104973 ], [ -95.230380971170916, 29.843777218842046 ], [ -95.23025797139465, 29.84392421887167 ], [ -95.230144970905513, 29.844040219367503 ], [ -95.230049971513722, 29.844106219151726 ], [ -95.229866970761051, 29.844183219181051 ], [ -95.229708971480619, 29.84419421934345 ], [ -95.229475970931503, 29.844161219089841 ], [ -95.229286970865701, 29.844166219012696 ], [ -95.229128970481355, 29.844177219364724 ], [ -95.229002971409855, 29.844199219473044 ], [ -95.22889597075465, 29.844244218674596 ], [ -95.22878197040896, 29.844376218813906 ], [ -95.228599970779669, 29.844705219031365 ], [ -95.228580971125496, 29.844826219559273 ], [ -95.22858097040158, 29.844964219239024 ], [ -95.228618971403819, 29.845222219118767 ], [ -95.228599971125817, 29.845360219758479 ], [ -95.228574971023505, 29.845470219376832 ], [ -95.228523971207281, 29.845613219092829 ], [ -95.228473971371969, 29.845706219570086 ], [ -95.22839797134877, 29.845800219244047 ], [ -95.228360971200672, 29.846394219699121 ], [ -95.228379970562656, 29.846427219757761 ], [ -95.228410970669714, 29.846696219508928 ], [ -95.228493970981333, 29.847086219662074 ], [ -95.228523970560545, 29.8471962196626 ], [ -95.228517971485388, 29.847312219290206 ], [ -95.22850997047631, 29.847404219985293 ], [ -95.228481970738031, 29.847471220063856 ], [ -95.228534970996947, 29.848383219969381 ], [ -95.228556971445158, 29.848560220064996 ], [ -95.228544971507446, 29.8486262203816 ], [ -95.228399971398133, 29.849462220358983 ], [ -95.2284129706577, 29.849583219735113 ], [ -95.228456970830365, 29.849693219811375 ], [ -95.228491971515226, 29.849883220208948 ], [ -95.228507971075231, 29.849967220144169 ], [ -95.228507970904928, 29.850077220383355 ], [ -95.228481971495313, 29.850264219907515 ], [ -95.228475970628324, 29.850424220375274 ], [ -95.228456971117481, 29.850550220639313 ], [ -95.228311971069544, 29.850869220029157 ], [ -95.228292971076328, 29.850952220325926 ], [ -95.228305970964556, 29.85105622046019 ], [ -95.228343970850318, 29.851166220564195 ], [ -95.22843297125506, 29.851820220515371 ], [ -95.228413971492472, 29.851996220885056 ], [ -95.228394971140105, 29.852304220531703 ], [ -95.228350970987933, 29.852574221218564 ], [ -95.228338971348776, 29.852601220418698 ], [ -95.228300971152038, 29.852684220736641 ], [ -95.228249971450808, 29.852750220938571 ], [ -95.228262971652725, 29.852816221051086 ], [ -95.228338971425273, 29.852893220918716 ], [ -95.228420970866893, 29.852942220538043 ], [ -95.228485971149581, 29.852999220911247 ], [ -95.228533971557511, 29.853107221030456 ], [ -95.228527971137311, 29.853288221236355 ], [ -95.228505970811639, 29.853401220629934 ], [ -95.228483971438337, 29.853514220946703 ], [ -95.22848397106911, 29.85354722097399 ], [ -95.22854097157483, 29.853712220892845 ], [ -95.228540971128353, 29.854179221264179 ], [ -95.228559971654931, 29.854245221238262 ], [ -95.228503971453065, 29.85527922154365 ], [ -95.228503971119082, 29.855438221542951 ], [ -95.228339971216386, 29.856038221888454 ], [ -95.22834697139271, 29.856417222007067 ], [ -95.228403971794521, 29.856879221847016 ], [ -95.22847597092877, 29.857020221462854 ], [ -95.228573971387874, 29.857214221572942 ], [ -95.228794971887424, 29.857423221695292 ], [ -95.229002971089216, 29.857544221479078 ], [ -95.229412971227873, 29.857736221941348 ], [ -95.230296971585886, 29.858079221947985 ], [ -95.23064297169779, 29.85821422205623 ], [ -95.231027972615522, 29.858390221709396 ], [ -95.231387971874653, 29.858764221560556 ], [ -95.231633972647714, 29.859204221896729 ], [ -95.231690972618225, 29.859566222172578 ], [ -95.231690972013311, 29.859759221920253 ], [ -95.231457972650531, 29.860226222689718 ], [ -95.231054972557118, 29.860815222183756 ], [ -95.230909972641285, 29.860914222154424 ], [ -95.230726972594795, 29.860974222852317 ], [ -95.230556972420388, 29.861002222379746 ], [ -95.23047497246759, 29.861073222208123 ], [ -95.230436971919843, 29.861156222040236 ], [ -95.23041797179809, 29.861282222133816 ], [ -95.230423971887745, 29.861431222674884 ], [ -95.230531971653448, 29.861777222334069 ], [ -95.230676972183431, 29.862124222836169 ], [ -95.231042972584575, 29.862635223183609 ], [ -95.231566972396763, 29.863415223096691 ], [ -95.231617972796414, 29.863509223222302 ], [ -95.231844972783009, 29.863861222999045 ], [ -95.232608973213516, 29.864911223626667 ], [ -95.233492973226731, 29.866059223026806 ], [ -95.233687973018576, 29.866444223029141 ], [ -95.233959973605877, 29.86666422341608 ], [ -95.234268973201765, 29.866873223894281 ], [ -95.234615973416581, 29.866999223697757 ], [ -95.2351649737396, 29.867252223878396 ], [ -95.2354739734552, 29.867571223569879 ], [ -95.235575973358792, 29.8680212239409 ], [ -95.235581973735393, 29.868412224218215 ], [ -95.235594973824789, 29.868461224019399 ], [ -95.235657973296014, 29.868566224070321 ], [ -95.23570797341911, 29.868621224163444 ], [ -95.235859973449251, 29.868736223761182 ], [ -95.236218973776204, 29.868879223654215 ], [ -95.236439974279776, 29.868978223460125 ], [ -95.236660974318639, 29.86910422353353 ], [ -95.236900974013096, 29.869351223823649 ], [ -95.237310974201918, 29.86990722443722 ], [ -95.237626974343243, 29.870605224499787 ], [ -95.237645974018321, 29.870621223730634 ], [ -95.237892974520292, 29.871138224267771 ], [ -95.238302974173806, 29.872259224912231 ], [ -95.238340975060012, 29.872600224647041 ], [ -95.238414975146711, 29.873312224868961 ], [ -95.238655975151175, 29.874188224774585 ], [ -95.238655975136538, 29.874484224902783 ], [ -95.238403974653153, 29.876478225692775 ], [ -95.238278975229576, 29.876820225533145 ], [ -95.238285975138126, 29.877503225406418 ], [ -95.23822397429457, 29.877675225859587 ], [ -95.237916974936923, 29.878102225879513 ], [ -95.237667974779015, 29.878290226099939 ], [ -95.237191974820774, 29.87840422576182 ], [ -95.236821974369548, 29.878424225531656 ], [ -95.23670097436262, 29.878450225688528 ], [ -95.236479974754005, 29.878496226261134 ], [ -95.236341974532365, 29.878526225498462 ], [ -95.236086974777962, 29.878644226019571 ], [ -95.235899973769406, 29.878833225975303 ], [ -95.235883973885905, 29.879047225498436 ], [ -95.235999974540391, 29.879314226030981 ], [ -95.236504974503887, 29.879796226478806 ], [ -95.236584974816637, 29.879873226000107 ], [ -95.236702974760561, 29.880062226470322 ], [ -95.237030975001716, 29.881066226047977 ], [ -95.237036975116311, 29.881459226578038 ], [ -95.236776974212574, 29.881780226916199 ], [ -95.236650974470123, 29.882045226600976 ], [ -95.236552974520521, 29.882650226302275 ], [ -95.236759974464988, 29.883101226885628 ], [ -95.236813974525703, 29.883218226868074 ], [ -95.236836974258907, 29.883306226588694 ], [ -95.236903974452986, 29.883567226944351 ], [ -95.236909975062275, 29.883854227177729 ], [ -95.236856974623137, 29.884014226499264 ], [ -95.236715974970096, 29.884446227258859 ], [ -95.236660975075679, 29.884613227442085 ], [ -95.236541974817243, 29.884783227243176 ], [ -95.235121974898206, 29.886824227581151 ], [ -95.235025974058672, 29.887210227495164 ], [ -95.235066974861013, 29.887490227538297 ], [ -95.235114974951898, 29.887590227665591 ], [ -95.23532497426811, 29.887777227502358 ], [ -95.235853974839159, 29.88827922751484 ], [ -95.236615974709011, 29.889126227648024 ], [ -95.236812975204401, 29.889272227763435 ], [ -95.236835975038872, 29.889289228242784 ], [ -95.237511974910248, 29.889629227740521 ], [ -95.237929975470166, 29.890163228506079 ], [ -95.23821497554259, 29.890836227902653 ], [ -95.238232975243491, 29.891194228700989 ], [ -95.238107975029138, 29.891792228822318 ], [ -95.238170975949146, 29.892033228891865 ], [ -95.238180975835746, 29.892070228687412 ], [ -95.238463975305919, 29.892277228125455 ], [ -95.238905975732806, 29.892470228297856 ], [ -95.23997697577947, 29.892510228881079 ], [ -95.240211975893757, 29.892650228705733 ], [ -95.240340975586363, 29.893025228480933 ], [ -95.240319975583219, 29.893848228779536 ], [ -95.240207976164882, 29.894341228496028 ], [ -95.240081975918315, 29.894646229251038 ], [ -95.239751975729874, 29.894957229477075 ], [ -95.238951975454228, 29.895529228773142 ], [ -95.238731975747967, 29.895873229552528 ], [ -95.238711975299907, 29.896015228945572 ], [ -95.239086975719971, 29.897300229766174 ], [ -95.239349975688555, 29.897703229406556 ], [ -95.239713975972336, 29.89799422965611 ], [ -95.240691976013281, 29.898645229725457 ], [ -95.240801976666219, 29.898539229580347 ], [ -95.242301976339135, 29.897087229145999 ], [ -95.243870977367237, 29.895576228979841 ], [ -95.245394977411848, 29.894096229109461 ], [ -95.247780977433109, 29.891866228170326 ], [ -95.251318979072707, 29.888411227726085 ], [ -95.251357978542785, 29.888370227225948 ], [ -95.251929979104418, 29.887820227061443 ], [ -95.254058979061654, 29.885680226898561 ], [ -95.254922979060467, 29.884847226373655 ], [ -95.256526980114529, 29.883291226347581 ], [ -95.256988979491567, 29.882844225588663 ], [ -95.257291980156012, 29.882547225731585 ], [ -95.259926980453415, 29.880022224943161 ], [ -95.26207998059509, 29.877898225022985 ], [ -95.262767980896413, 29.877249224645738 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1206, "Tract": "48201222100", "Area_SqMi": 0.87933246881013738, "total_2009": 349, "total_2010": 279, "total_2011": 383, "total_2012": 340, "total_2013": 465, "total_2014": 497, "total_2015": 457, "total_2016": 471, "total_2017": 362, "total_2018": 378, "total_2019": 351, "total_2020": 290, "age1": 63, "age2": 167, "age3": 75, "earn1": 55, "earn2": 114, "earn3": 136, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 19, "naics_s05": 28, "naics_s06": 8, "naics_s07": 26, "naics_s08": 4, "naics_s09": 0, "naics_s10": 62, "naics_s11": 12, "naics_s12": 23, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 40, "naics_s19": 79, "naics_s20": 0, "race1": 242, "race2": 34, "race3": 3, "race4": 21, "race5": 0, "race6": 5, "ethnicity1": 179, "ethnicity2": 126, "edu1": 59, "edu2": 68, "edu3": 67, "edu4": 48, "Shape_Length": 22588.016300040064, "Shape_Area": 24514284.237865143, "total_2021": 305, "total_2022": 305 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.344492001770291, 29.880974223043225 ], [ -95.344492002109249, 29.880875222395368 ], [ -95.344448002396632, 29.880715222925467 ], [ -95.344373002444897, 29.880548222708981 ], [ -95.344132002491364, 29.880011222573305 ], [ -95.344006001753584, 29.879770222061421 ], [ -95.343937001518611, 29.879671222062601 ], [ -95.343914002167651, 29.879578222652881 ], [ -95.343873001572391, 29.879407222000445 ], [ -95.34386700166128, 29.879264221921982 ], [ -95.344075002396266, 29.878664222079497 ], [ -95.344132002312094, 29.878395222356147 ], [ -95.344100002010364, 29.877735222024096 ], [ -95.344031001847, 29.877279221988026 ], [ -95.344037002434874, 29.877213221916925 ], [ -95.343835002036542, 29.876889221632215 ], [ -95.343387001347324, 29.876377222162507 ], [ -95.342838001508625, 29.875723221587553 ], [ -95.34256600109812, 29.8754262214463 ], [ -95.34238300092116, 29.875240221627941 ], [ -95.342276001847537, 29.875157221831358 ], [ -95.341517001314813, 29.875221221600849 ], [ -95.341423001567549, 29.875181221859307 ], [ -95.341349001386931, 29.875158221764366 ], [ -95.341193001006005, 29.875157221132508 ], [ -95.339453001147504, 29.875170221184725 ], [ -95.338133000254999, 29.875204222054055 ], [ -95.336712999509146, 29.875224221497898 ], [ -95.336606000041058, 29.875219221696398 ], [ -95.335833999759899, 29.875246221395809 ], [ -95.335501999322076, 29.87524022174226 ], [ -95.335503999315492, 29.874906221412314 ], [ -95.335513999959176, 29.87483622195812 ], [ -95.335508999150022, 29.874755221994349 ], [ -95.33550299989075, 29.87463422206682 ], [ -95.335493999158714, 29.874455221987894 ], [ -95.335411999786686, 29.874035221152916 ], [ -95.335369999723639, 29.873697221417537 ], [ -95.335362999838196, 29.873210221444008 ], [ -95.335383999659612, 29.872874221549814 ], [ -95.335445999827812, 29.87240422116929 ], [ -95.335457999946698, 29.872104221038715 ], [ -95.335455999330591, 29.871858220958838 ], [ -95.335426999320248, 29.871019220918377 ], [ -95.334989999824302, 29.871026220599582 ], [ -95.334891999316824, 29.871027221334121 ], [ -95.334834999580465, 29.871028221162966 ], [ -95.333396999185709, 29.87104522073118 ], [ -95.33326699899888, 29.871046221186873 ], [ -95.333079999020597, 29.871044220976586 ], [ -95.332295998588705, 29.871036220719649 ], [ -95.332108998731456, 29.871010221415624 ], [ -95.331634998018558, 29.870922221269502 ], [ -95.331341998252796, 29.870837220863457 ], [ -95.330530997695675, 29.870487220960033 ], [ -95.330206998244151, 29.870359220932009 ], [ -95.330067998119446, 29.870585221170121 ], [ -95.32977999804298, 29.871053221431687 ], [ -95.327175997825762, 29.875506222449065 ], [ -95.326643997007139, 29.87641322218829 ], [ -95.326183997599969, 29.877188222775693 ], [ -95.325765997238747, 29.878033222256366 ], [ -95.325690997092522, 29.87816622282066 ], [ -95.324990997324662, 29.879365222964605 ], [ -95.324819997369758, 29.879658222807876 ], [ -95.324679996724186, 29.8799192235291 ], [ -95.324635996944309, 29.879995223154634 ], [ -95.323616997391184, 29.881721223339476 ], [ -95.323932996867782, 29.881741223206919 ], [ -95.326221997696052, 29.881729223260038 ], [ -95.327667997733371, 29.881716223514101 ], [ -95.328214998225562, 29.881713222919011 ], [ -95.328708998390908, 29.881698223249337 ], [ -95.329540997961985, 29.881700223247361 ], [ -95.32979999896402, 29.881710223657734 ], [ -95.32992499860724, 29.881691223375753 ], [ -95.330032998965393, 29.881691223460397 ], [ -95.330029998774805, 29.882221223146292 ], [ -95.330036999095483, 29.882737223717385 ], [ -95.33004699863001, 29.883027223985739 ], [ -95.330060998296943, 29.883173224006423 ], [ -95.330086998254416, 29.883316223333939 ], [ -95.330128998563296, 29.883455223836329 ], [ -95.33022999868696, 29.883730223620539 ], [ -95.330432999065621, 29.884236223812209 ], [ -95.330462998430477, 29.88434122372573 ], [ -95.330477999070339, 29.884437223848067 ], [ -95.3304939990348, 29.884703224270936 ], [ -95.330493999241853, 29.885068223933331 ], [ -95.330512998467754, 29.885853224429042 ], [ -95.330510999108142, 29.886181224133153 ], [ -95.330520998381076, 29.886682224637781 ], [ -95.330534999260621, 29.886907224544554 ], [ -95.332308999118311, 29.88688922455216 ], [ -95.332513998970754, 29.886858224565721 ], [ -95.332750999155749, 29.886791224262875 ], [ -95.332929999666476, 29.886755224539726 ], [ -95.333056999344535, 29.886742224288636 ], [ -95.333336999956558, 29.88673422411842 ], [ -95.335247000091158, 29.886744223767433 ], [ -95.335953999850247, 29.886758224346771 ], [ -95.337038000624972, 29.886747223988895 ], [ -95.338822001045585, 29.886756223959498 ], [ -95.339462000905669, 29.886753224191132 ], [ -95.339856000888972, 29.886759223688525 ], [ -95.341298001315295, 29.886748223593479 ], [ -95.34185700213321, 29.886752223998617 ], [ -95.342636001587579, 29.886750224249635 ], [ -95.34296800257772, 29.886746223833985 ], [ -95.342860002455424, 29.886549223466304 ], [ -95.342746001692419, 29.886159224146926 ], [ -95.342752001759706, 29.88582922402027 ], [ -95.342727001638423, 29.885741223934122 ], [ -95.342670002211634, 29.885614224064138 ], [ -95.342651001775039, 29.885526223225899 ], [ -95.34263900166134, 29.885389223889806 ], [ -95.342563001671778, 29.885076223543134 ], [ -95.342563001754073, 29.884971223122747 ], [ -95.342601001391188, 29.884724223656715 ], [ -95.342607001775463, 29.884493223077175 ], [ -95.342654001484107, 29.88378022306858 ], [ -95.342676002163159, 29.883448223556819 ], [ -95.342723002125751, 29.88332622316037 ], [ -95.342808002206127, 29.883107222913324 ], [ -95.343275001866132, 29.882557223269004 ], [ -95.343452001862886, 29.882398222914297 ], [ -95.343672002290205, 29.882216223362729 ], [ -95.34408900231206, 29.881749222622226 ], [ -95.344127002664749, 29.881688222414574 ], [ -95.344120002335117, 29.881628222732303 ], [ -95.344196002469744, 29.881463222309876 ], [ -95.344354002396571, 29.881292222372672 ], [ -95.344424001930449, 29.881178222654437 ], [ -95.344442002396178, 29.881149222982593 ], [ -95.344480001721877, 29.881067222727602 ], [ -95.344492001770291, 29.880974223043225 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1207, "Tract": "48201222200", "Area_SqMi": 1.1603481917882394, "total_2009": 1620, "total_2010": 1556, "total_2011": 1538, "total_2012": 1477, "total_2013": 1656, "total_2014": 1811, "total_2015": 1930, "total_2016": 1897, "total_2017": 2013, "total_2018": 1867, "total_2019": 2048, "total_2020": 1769, "age1": 409, "age2": 961, "age3": 647, "earn1": 349, "earn2": 813, "earn3": 855, "naics_s01": 10, "naics_s02": 5, "naics_s03": 0, "naics_s04": 123, "naics_s05": 1148, "naics_s06": 41, "naics_s07": 198, "naics_s08": 0, "naics_s09": 18, "naics_s10": 17, "naics_s11": 19, "naics_s12": 7, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 153, "naics_s17": 0, "naics_s18": 256, "naics_s19": 7, "naics_s20": 0, "race1": 1351, "race2": 244, "race3": 25, "race4": 373, "race5": 0, "race6": 24, "ethnicity1": 1145, "ethnicity2": 872, "edu1": 543, "edu2": 415, "edu3": 398, "edu4": 252, "Shape_Length": 24477.462479924132, "Shape_Area": 32348521.631277934, "total_2021": 1920, "total_2022": 2017 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.331182999868687, 29.902512227309664 ], [ -95.331195000205028, 29.902031227802642 ], [ -95.331179999936694, 29.900447227051252 ], [ -95.331151999455017, 29.899003226625933 ], [ -95.3311459991303, 29.898691226378922 ], [ -95.331140999328554, 29.897570226835189 ], [ -95.331114999382194, 29.896288225773194 ], [ -95.331089999008256, 29.894155225970454 ], [ -95.331045999597663, 29.890891224946074 ], [ -95.330922999125704, 29.890921224801783 ], [ -95.330591999617226, 29.890918225017948 ], [ -95.330596998764989, 29.890507225200619 ], [ -95.330581999159293, 29.890389225272468 ], [ -95.330585998895486, 29.890311224648723 ], [ -95.330572998922065, 29.89014222513557 ], [ -95.33057699865779, 29.889618225154578 ], [ -95.330557999284949, 29.889437225189916 ], [ -95.330560999259333, 29.888934224771404 ], [ -95.330544999233737, 29.888483224810361 ], [ -95.330537999283763, 29.887508224901612 ], [ -95.330544999023104, 29.887326224466836 ], [ -95.330530999282956, 29.887093224511716 ], [ -95.330534999260621, 29.886907224544554 ], [ -95.330520998381076, 29.886682224637781 ], [ -95.330510999108142, 29.886181224133153 ], [ -95.330512998467754, 29.885853224429042 ], [ -95.330493999241853, 29.885068223933331 ], [ -95.3304939990348, 29.884703224270936 ], [ -95.330477999070339, 29.884437223848067 ], [ -95.330462998430477, 29.88434122372573 ], [ -95.330432999065621, 29.884236223812209 ], [ -95.33022999868696, 29.883730223620539 ], [ -95.330128998563296, 29.883455223836329 ], [ -95.330086998254416, 29.883316223333939 ], [ -95.330060998296943, 29.883173224006423 ], [ -95.33004699863001, 29.883027223985739 ], [ -95.330036999095483, 29.882737223717385 ], [ -95.330029998774805, 29.882221223146292 ], [ -95.330032998965393, 29.881691223460397 ], [ -95.32992499860724, 29.881691223375753 ], [ -95.32979999896402, 29.881710223657734 ], [ -95.329540997961985, 29.881700223247361 ], [ -95.328708998390908, 29.881698223249337 ], [ -95.328214998225562, 29.881713222919011 ], [ -95.327667997733371, 29.881716223514101 ], [ -95.326221997696052, 29.881729223260038 ], [ -95.323932996867782, 29.881741223206919 ], [ -95.323616997391184, 29.881721223339476 ], [ -95.322361996658614, 29.883810224417196 ], [ -95.321140996008808, 29.885933224386324 ], [ -95.320152996181335, 29.887598224373015 ], [ -95.319266995621291, 29.889174225486901 ], [ -95.318942996433833, 29.889754225031584 ], [ -95.318647996448036, 29.89024922499917 ], [ -95.318374995966252, 29.890736225790096 ], [ -95.318301996336942, 29.890866225263434 ], [ -95.318252996284926, 29.890962225363658 ], [ -95.318045996393479, 29.891295225855295 ], [ -95.317521995768459, 29.892186225407535 ], [ -95.317105995392595, 29.892907225634168 ], [ -95.316762995462867, 29.893463226008823 ], [ -95.316721995562801, 29.89353222595312 ], [ -95.314908995635847, 29.896653226527526 ], [ -95.314479995655375, 29.897419227479144 ], [ -95.313867995626737, 29.898467227565263 ], [ -95.31339699545758, 29.899316227280799 ], [ -95.313061995250706, 29.899977227518431 ], [ -95.312893994782542, 29.900293227966152 ], [ -95.31271699462836, 29.900676227726919 ], [ -95.312246995269973, 29.901640227562631 ], [ -95.311831994624768, 29.902556228371285 ], [ -95.311750995217096, 29.902760228595223 ], [ -95.312023994910234, 29.902824228292886 ], [ -95.312358994835776, 29.902862228317762 ], [ -95.312990995566722, 29.902926228204208 ], [ -95.313278994953691, 29.902946228406456 ], [ -95.313547994914828, 29.902951228566931 ], [ -95.314484995668494, 29.902932228488758 ], [ -95.315687996002211, 29.902925228315148 ], [ -95.316130996186303, 29.902913228026179 ], [ -95.316260995461846, 29.902903228365187 ], [ -95.316393995831618, 29.902912228501833 ], [ -95.316533995797855, 29.902913228281776 ], [ -95.317166996138539, 29.902905227735737 ], [ -95.318144996644818, 29.902899227796254 ], [ -95.318783996331561, 29.902885228237501 ], [ -95.319681997215639, 29.902879227570324 ], [ -95.320205997076314, 29.902860227555337 ], [ -95.321766996966232, 29.902846227798989 ], [ -95.322405997610375, 29.902834227542378 ], [ -95.322943997988915, 29.902821227613348 ], [ -95.323374998095346, 29.902810227676788 ], [ -95.323471997982651, 29.902817227955591 ], [ -95.324226998464297, 29.902789227872013 ], [ -95.325601998625459, 29.902735227579548 ], [ -95.326181998455269, 29.902711227872931 ], [ -95.331182999868687, 29.902512227309664 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1208, "Tract": "48201222300", "Area_SqMi": 1.9289432548042591, "total_2009": 728, "total_2010": 693, "total_2011": 561, "total_2012": 553, "total_2013": 664, "total_2014": 648, "total_2015": 703, "total_2016": 757, "total_2017": 763, "total_2018": 809, "total_2019": 878, "total_2020": 820, "age1": 233, "age2": 507, "age3": 157, "earn1": 251, "earn2": 272, "earn3": 374, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 85, "naics_s05": 293, "naics_s06": 19, "naics_s07": 179, "naics_s08": 0, "naics_s09": 6, "naics_s10": 20, "naics_s11": 0, "naics_s12": 16, "naics_s13": 0, "naics_s14": 150, "naics_s15": 0, "naics_s16": 59, "naics_s17": 0, "naics_s18": 64, "naics_s19": 6, "naics_s20": 0, "race1": 654, "race2": 177, "race3": 12, "race4": 39, "race5": 4, "race6": 11, "ethnicity1": 465, "ethnicity2": 432, "edu1": 207, "edu2": 204, "edu3": 173, "edu4": 80, "Shape_Length": 37868.639988735522, "Shape_Area": 53775636.524567276, "total_2021": 873, "total_2022": 897 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.372978010657476, 29.902212226044952 ], [ -95.372879010492241, 29.90183922565349 ], [ -95.372102010290035, 29.898904225166863 ], [ -95.371947009731798, 29.89826222542618 ], [ -95.371485009883344, 29.896387225205959 ], [ -95.371309009380894, 29.895670224391772 ], [ -95.370542009128897, 29.892552224054924 ], [ -95.370355009123557, 29.892583223804039 ], [ -95.37013000881943, 29.892620224049761 ], [ -95.370003009065456, 29.892640224122161 ], [ -95.3698230097135, 29.892670223770892 ], [ -95.369300009509871, 29.892687224251627 ], [ -95.368908008561363, 29.892687224043804 ], [ -95.368700008808503, 29.892643224067385 ], [ -95.368580009233824, 29.892561224509766 ], [ -95.368504008421183, 29.892484223892989 ], [ -95.368460009011983, 29.892418224117478 ], [ -95.367980008654825, 29.891989224295031 ], [ -95.36783500894667, 29.891934223752187 ], [ -95.367539008316641, 29.891923223692782 ], [ -95.366996008682548, 29.891885224225639 ], [ -95.36689500868394, 29.891847224510041 ], [ -95.366718008481897, 29.891742224191852 ], [ -95.366497008666485, 29.891555223993517 ], [ -95.365986008660315, 29.891352223827784 ], [ -95.365709008554887, 29.891303224410208 ], [ -95.365538008003838, 29.891303223871251 ], [ -95.365494008435192, 29.891347224082228 ], [ -95.365381008341316, 29.891396224165248 ], [ -95.365336008289248, 29.891462224152392 ], [ -95.365318007661827, 29.891539223870041 ], [ -95.365324007542526, 29.891600223797958 ], [ -95.365362008197394, 29.891715224029713 ], [ -95.365324007569512, 29.891765224012477 ], [ -95.365267007980549, 29.891803224219299 ], [ -95.365122008059629, 29.891842224390782 ], [ -95.364971007885984, 29.891913224430997 ], [ -95.364422008211903, 29.892194224464973 ], [ -95.364208007492337, 29.892348224090025 ], [ -95.364107008052173, 29.892365224164188 ], [ -95.363974007455184, 29.89233222398709 ], [ -95.363640007977196, 29.892282224503834 ], [ -95.363198007444396, 29.892282224488493 ], [ -95.362952007381949, 29.892310224702992 ], [ -95.362693007101001, 29.89236522451791 ], [ -95.362523007454485, 29.892448224509689 ], [ -95.362390007344416, 29.89245322449338 ], [ -95.362239007395317, 29.892437224008663 ], [ -95.361936006712284, 29.892437224402418 ], [ -95.361665007189103, 29.892470224693167 ], [ -95.361324006695, 29.892701224023519 ], [ -95.361246006872832, 29.892794224537646 ], [ -95.361192006673178, 29.892860224631111 ], [ -95.360801006773443, 29.893015224380296 ], [ -95.359842006275414, 29.893576224763258 ], [ -95.359735007013938, 29.893625225038843 ], [ -95.359589007170925, 29.893653224318889 ], [ -95.35941900617722, 29.893653224255214 ], [ -95.359224006586871, 29.893741224817344 ], [ -95.358984007046345, 29.893900224540545 ], [ -95.358712006252702, 29.893972224366934 ], [ -95.358448006565979, 29.894231224426086 ], [ -95.35827700660505, 29.894324224784089 ], [ -95.357836006371926, 29.894379224705276 ], [ -95.357596006089693, 29.894478224882842 ], [ -95.357344006414749, 29.89465422474068 ], [ -95.357117005782925, 29.894753224971893 ], [ -95.357047006039508, 29.894775225294811 ], [ -95.356902005657915, 29.894770225109387 ], [ -95.3567690062049, 29.894731225289949 ], [ -95.356504006253758, 29.89455622471889 ], [ -95.356347005386723, 29.894484225051613 ], [ -95.356138005642563, 29.894435224778491 ], [ -95.355936005404843, 29.894413225191055 ], [ -95.355634005733947, 29.894429225244799 ], [ -95.354950005108861, 29.894524224687032 ], [ -95.354856005724571, 29.894537225247664 ], [ -95.354794005592396, 29.894545225249583 ], [ -95.354746005776661, 29.894544225409174 ], [ -95.354523005628252, 29.894540224864432 ], [ -95.354132005332829, 29.894512225429047 ], [ -95.353797005173618, 29.894529224711739 ], [ -95.353608004876889, 29.894545224643931 ], [ -95.353362004932634, 29.894617225331821 ], [ -95.352542005372641, 29.894441224727625 ], [ -95.352207004974701, 29.894398225546212 ], [ -95.351898004574522, 29.894453224682756 ], [ -95.351684005178541, 29.894469225506878 ], [ -95.351021004351679, 29.894453224835406 ], [ -95.350794004019093, 29.89443122539944 ], [ -95.350611003961205, 29.894305224761514 ], [ -95.350497004593052, 29.894162224747941 ], [ -95.350238004727771, 29.894008225504795 ], [ -95.350093004631304, 29.893909224750622 ], [ -95.349923004103246, 29.893815224911716 ], [ -95.349740004577583, 29.893695224637032 ], [ -95.349614004534146, 29.893524225226713 ], [ -95.349431004010228, 29.893348224976794 ], [ -95.349266003830877, 29.893211225156126 ], [ -95.349203003709462, 29.893178224741124 ], [ -95.348623004148706, 29.893200224650869 ], [ -95.348421003827838, 29.893184225184498 ], [ -95.348238004122763, 29.89314022467347 ], [ -95.348093003254661, 29.893057225354053 ], [ -95.347998003819129, 29.892931224994125 ], [ -95.347935004025885, 29.892727225040812 ], [ -95.3479100035389, 29.892452224492136 ], [ -95.347853003754921, 29.892112225132575 ], [ -95.347802003988519, 29.891881224370277 ], [ -95.347701003647572, 29.891639225068865 ], [ -95.347549003823062, 29.891402224411873 ], [ -95.347316003078561, 29.891177225005386 ], [ -95.347240002869029, 29.891078224544454 ], [ -95.347032002970508, 29.890737224093325 ], [ -95.346944003095956, 29.890660224349432 ], [ -95.346868002854876, 29.890627224434585 ], [ -95.346653003208843, 29.890671224819311 ], [ -95.346231003493784, 29.890820224169776 ], [ -95.3460540033917, 29.890853224457214 ], [ -95.345959002554181, 29.8908482244819 ], [ -95.345852003413825, 29.890793224658122 ], [ -95.345713002477993, 29.89069422425441 ], [ -95.345259003122507, 29.89025422411747 ], [ -95.345076002608536, 29.890139224827404 ], [ -95.344685002533723, 29.890007224314783 ], [ -95.344565002701501, 29.88991922443272 ], [ -95.344470002310132, 29.889699224164868 ], [ -95.344495002268047, 29.889583224053396 ], [ -95.344470002978113, 29.889265224298903 ], [ -95.344432002638669, 29.88908322453754 ], [ -95.344419002098988, 29.888929224232456 ], [ -95.344476002696609, 29.888621223954157 ], [ -95.344450002215723, 29.888434223730663 ], [ -95.344381002698526, 29.888198223840909 ], [ -95.344371002416793, 29.888156224218289 ], [ -95.344340002424843, 29.888031224416991 ], [ -95.344324002642892, 29.887967223797098 ], [ -95.344229002519867, 29.887775223902466 ], [ -95.344198002474783, 29.887719224413264 ], [ -95.344110002877343, 29.887560224251857 ], [ -95.343952001902593, 29.887373223931945 ], [ -95.34379400278273, 29.887263223920741 ], [ -95.343605002752952, 29.887203223578339 ], [ -95.343384002171675, 29.887165223673438 ], [ -95.343251001709092, 29.887077223730177 ], [ -95.343125001817029, 29.88697222370347 ], [ -95.343037002225202, 29.886873223839181 ], [ -95.34296800257772, 29.886746223833985 ], [ -95.342636001587579, 29.886750224249635 ], [ -95.34185700213321, 29.886752223998617 ], [ -95.341298001315295, 29.886748223593479 ], [ -95.339856000888972, 29.886759223688525 ], [ -95.339462000905669, 29.886753224191132 ], [ -95.338822001045585, 29.886756223959498 ], [ -95.337038000624972, 29.886747223988895 ], [ -95.335953999850247, 29.886758224346771 ], [ -95.335247000091158, 29.886744223767433 ], [ -95.333336999956558, 29.88673422411842 ], [ -95.333056999344535, 29.886742224288636 ], [ -95.332929999666476, 29.886755224539726 ], [ -95.332750999155749, 29.886791224262875 ], [ -95.332513998970754, 29.886858224565721 ], [ -95.332308999118311, 29.88688922455216 ], [ -95.330534999260621, 29.886907224544554 ], [ -95.330530999282956, 29.887093224511716 ], [ -95.330544999023104, 29.887326224466836 ], [ -95.330537999283763, 29.887508224901612 ], [ -95.330544999233737, 29.888483224810361 ], [ -95.330560999259333, 29.888934224771404 ], [ -95.330557999284949, 29.889437225189916 ], [ -95.33057699865779, 29.889618225154578 ], [ -95.330572998922065, 29.89014222513557 ], [ -95.330585998895486, 29.890311224648723 ], [ -95.330581999159293, 29.890389225272468 ], [ -95.330596998764989, 29.890507225200619 ], [ -95.330591999617226, 29.890918225017948 ], [ -95.330922999125704, 29.890921224801783 ], [ -95.331045999597663, 29.890891224946074 ], [ -95.331089999008256, 29.894155225970454 ], [ -95.331114999382194, 29.896288225773194 ], [ -95.331140999328554, 29.897570226835189 ], [ -95.3311459991303, 29.898691226378922 ], [ -95.331151999455017, 29.899003226625933 ], [ -95.331179999936694, 29.900447227051252 ], [ -95.331195000205028, 29.902031227802642 ], [ -95.331182999868687, 29.902512227309664 ], [ -95.332468999751541, 29.902505227689527 ], [ -95.334439000941316, 29.902485227798287 ], [ -95.334943001074265, 29.902488226963936 ], [ -95.33635800087751, 29.902479227194672 ], [ -95.339668002083769, 29.902462226992707 ], [ -95.340083001917165, 29.902460227348534 ], [ -95.340968002328623, 29.902436226842418 ], [ -95.344064002933095, 29.902417227251412 ], [ -95.346224003130303, 29.902400227054141 ], [ -95.34739600421284, 29.90240622687466 ], [ -95.348213003892511, 29.902405226780722 ], [ -95.350477004326791, 29.902382226548717 ], [ -95.351493005303467, 29.902374226391419 ], [ -95.352820004924141, 29.902362226283774 ], [ -95.354537005516903, 29.902352226546849 ], [ -95.354953006366188, 29.902349226983826 ], [ -95.355057006017034, 29.902340226600863 ], [ -95.355165006255191, 29.902341226738866 ], [ -95.356619006311035, 29.902326226365862 ], [ -95.35904600698035, 29.902315226586317 ], [ -95.360603007549685, 29.902302226802075 ], [ -95.361723007257581, 29.90228922618002 ], [ -95.362789008134726, 29.902291226460186 ], [ -95.36344900824507, 29.902282225992455 ], [ -95.364327008234596, 29.902278226310347 ], [ -95.36478000859168, 29.90227622584483 ], [ -95.364960007942969, 29.902273226573264 ], [ -95.365790008332766, 29.90227022596881 ], [ -95.367594009577033, 29.902252226636868 ], [ -95.368437009405469, 29.902250225894935 ], [ -95.369219009073234, 29.902242225916989 ], [ -95.369824010174369, 29.902236226341646 ], [ -95.371765010626063, 29.90221922613771 ], [ -95.372413010047794, 29.902218226306651 ], [ -95.37258001080373, 29.902216225684356 ], [ -95.372673010180804, 29.902215225724049 ], [ -95.372804010801147, 29.902214225717685 ], [ -95.372978010657476, 29.902212226044952 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1209, "Tract": "48201211900", "Area_SqMi": 0.4815687260181139, "total_2009": 228, "total_2010": 245, "total_2011": 70, "total_2012": 72, "total_2013": 73, "total_2014": 86, "total_2015": 69, "total_2016": 64, "total_2017": 65, "total_2018": 57, "total_2019": 81, "total_2020": 113, "age1": 10, "age2": 36, "age3": 23, "earn1": 20, "earn2": 37, "earn3": 12, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1, "naics_s06": 0, "naics_s07": 27, "naics_s08": 17, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 2, "naics_s14": 3, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 9, "naics_s19": 10, "naics_s20": 0, "race1": 51, "race2": 3, "race3": 0, "race4": 14, "race5": 0, "race6": 1, "ethnicity1": 36, "ethnicity2": 33, "edu1": 26, "edu2": 16, "edu3": 11, "edu4": 6, "Shape_Length": 15360.370033162944, "Shape_Area": 13425311.868273128, "total_2021": 69, "total_2022": 69 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.30738898788519, 29.781955203779297 ], [ -95.307390987962322, 29.780855203510516 ], [ -95.307388988550443, 29.78014220284053 ], [ -95.30681698776624, 29.78015220301803 ], [ -95.306311988228046, 29.78015420367915 ], [ -95.305787988177983, 29.780152203393921 ], [ -95.30528198788285, 29.78015420328142 ], [ -95.304761987120528, 29.780150203293079 ], [ -95.304258987580127, 29.780149203024884 ], [ -95.303736987480235, 29.780147203835369 ], [ -95.303230987169272, 29.780140203508093 ], [ -95.302707987042794, 29.780149203446925 ], [ -95.302197986949054, 29.780149203781402 ], [ -95.301678986341017, 29.780149203846893 ], [ -95.301179986809117, 29.78014920327924 ], [ -95.301173986431266, 29.780000203214104 ], [ -95.298911985937977, 29.780040203728355 ], [ -95.297862986212451, 29.780053203319966 ], [ -95.296404985451602, 29.780088203423905 ], [ -95.294816984490424, 29.780113203650362 ], [ -95.293218984740918, 29.780141203320454 ], [ -95.291668984462888, 29.78017720368728 ], [ -95.291670984447194, 29.780330203766763 ], [ -95.291677984571152, 29.780843203789427 ], [ -95.291687984082088, 29.781540204169701 ], [ -95.29169698393369, 29.782231204616579 ], [ -95.29170598394002, 29.782922204023944 ], [ -95.291715984652868, 29.783606204521341 ], [ -95.291724984429209, 29.784300205049519 ], [ -95.291734984519707, 29.784983205081307 ], [ -95.291743984373483, 29.785671205221398 ], [ -95.291752984885932, 29.786348205196301 ], [ -95.291762984356637, 29.787038205066992 ], [ -95.291770984253404, 29.787629205090528 ], [ -95.293387985118713, 29.787594204892986 ], [ -95.294974985652402, 29.787580205234676 ], [ -95.296564985586159, 29.787572204783878 ], [ -95.298034985606009, 29.78756320542195 ], [ -95.299071985909137, 29.78754920487043 ], [ -95.301157987218275, 29.78753520541283 ], [ -95.303204987881458, 29.787511204655313 ], [ -95.30525998779126, 29.787493204604914 ], [ -95.305894988041004, 29.787489205159158 ], [ -95.306036988605015, 29.787480205189734 ], [ -95.307368988086537, 29.787463204664263 ], [ -95.307355988182053, 29.787035204374224 ], [ -95.307371988980506, 29.786338204334243 ], [ -95.307372988880857, 29.785659204536351 ], [ -95.307364988751729, 29.784962204630723 ], [ -95.307370987880944, 29.784283204189911 ], [ -95.307370988821802, 29.783769203622427 ], [ -95.307367988122948, 29.78359120358472 ], [ -95.307377988683058, 29.782912203901912 ], [ -95.307374987901596, 29.78222420365605 ], [ -95.30738898788519, 29.781955203779297 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1210, "Tract": "48201422000", "Area_SqMi": 0.56449465386327324, "total_2009": 1513, "total_2010": 1490, "total_2011": 64, "total_2012": 49, "total_2013": 77, "total_2014": 87, "total_2015": 106, "total_2016": 100, "total_2017": 80, "total_2018": 103, "total_2019": 102, "total_2020": 104, "age1": 22, "age2": 75, "age3": 29, "earn1": 19, "earn2": 24, "earn3": 83, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 3, "naics_s10": 2, "naics_s11": 6, "naics_s12": 80, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 11, "naics_s17": 3, "naics_s18": 15, "naics_s19": 6, "naics_s20": 0, "race1": 83, "race2": 17, "race3": 0, "race4": 26, "race5": 0, "race6": 0, "ethnicity1": 108, "ethnicity2": 18, "edu1": 12, "edu2": 16, "edu3": 32, "edu4": 44, "Shape_Length": 15869.867389565152, "Shape_Area": 15737144.807452202, "total_2021": 164, "total_2022": 126 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.49222803025657, 29.666358173642472 ], [ -95.492196030437327, 29.66423617329411 ], [ -95.492178030418088, 29.663073172836054 ], [ -95.492130029840936, 29.660607172227795 ], [ -95.492072030375283, 29.657711172194876 ], [ -95.49206202993139, 29.657195172221531 ], [ -95.48952102917147, 29.657230171819709 ], [ -95.48704302841297, 29.657270172429349 ], [ -95.485952028243275, 29.657254171609914 ], [ -95.483006027812422, 29.657325172179348 ], [ -95.482186027578081, 29.657456171816648 ], [ -95.481513027087715, 29.657547172671627 ], [ -95.481355027211919, 29.657568172314299 ], [ -95.480996026855181, 29.657663172524305 ], [ -95.480631027479902, 29.657758172030544 ], [ -95.479728027033644, 29.657996172648392 ], [ -95.479440027223021, 29.658091172818558 ], [ -95.479220026913893, 29.658165172232049 ], [ -95.478869026535833, 29.658285172556255 ], [ -95.478622027002856, 29.658382172914081 ], [ -95.477893026920412, 29.65870417221959 ], [ -95.477291026719598, 29.658986172890053 ], [ -95.476713026475707, 29.659301173096519 ], [ -95.476716026006343, 29.659425172661585 ], [ -95.476762025998269, 29.661296173069765 ], [ -95.47678902641016, 29.662372173267322 ], [ -95.476822026807298, 29.664840173539577 ], [ -95.476841026988851, 29.666536174377711 ], [ -95.480237027012095, 29.666499174129623 ], [ -95.481781027915787, 29.666482173994552 ], [ -95.482289028199958, 29.666477174246587 ], [ -95.483054028089626, 29.666478174360492 ], [ -95.486039028598526, 29.666434173693929 ], [ -95.489813029629573, 29.666396173817915 ], [ -95.49222803025657, 29.666358173642472 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1211, "Tract": "48201211600", "Area_SqMi": 0.45490634054399431, "total_2009": 596, "total_2010": 573, "total_2011": 699, "total_2012": 646, "total_2013": 639, "total_2014": 652, "total_2015": 592, "total_2016": 636, "total_2017": 497, "total_2018": 517, "total_2019": 519, "total_2020": 507, "age1": 181, "age2": 243, "age3": 88, "earn1": 127, "earn2": 215, "earn3": 170, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 28, "naics_s06": 8, "naics_s07": 130, "naics_s08": 24, "naics_s09": 0, "naics_s10": 23, "naics_s11": 16, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 142, "naics_s17": 0, "naics_s18": 118, "naics_s19": 22, "naics_s20": 0, "race1": 364, "race2": 111, "race3": 5, "race4": 20, "race5": 0, "race6": 12, "ethnicity1": 271, "ethnicity2": 241, "edu1": 98, "edu2": 97, "edu3": 77, "edu4": 59, "Shape_Length": 14616.424044444944, "Shape_Area": 12682010.194383478, "total_2021": 491, "total_2022": 512 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.315939990715478, 29.783179203415038 ], [ -95.315925990077801, 29.782203203322556 ], [ -95.315928990469047, 29.781242203335459 ], [ -95.315907990252441, 29.780291203018379 ], [ -95.315892990622729, 29.779678203285307 ], [ -95.315899990219179, 29.779319202511321 ], [ -95.315878990168429, 29.778352202641727 ], [ -95.315935989984197, 29.778040202826219 ], [ -95.315849990510316, 29.777137202748708 ], [ -95.315737990423528, 29.776431202367572 ], [ -95.315674990258401, 29.775737202196964 ], [ -95.315608990560705, 29.774660201551061 ], [ -95.315597989743466, 29.774424201385603 ], [ -95.315177990231689, 29.774424201674403 ], [ -95.312819988862799, 29.774426202049131 ], [ -95.312517989644974, 29.774426201761617 ], [ -95.31244098942139, 29.774425202331592 ], [ -95.312400989492133, 29.774424201867372 ], [ -95.312085988920927, 29.774421201618679 ], [ -95.310552988950917, 29.774405201774865 ], [ -95.310116989020869, 29.774400201626634 ], [ -95.307413988453717, 29.774364201841756 ], [ -95.307406988126601, 29.774704202102875 ], [ -95.307405988389107, 29.77652020229468 ], [ -95.307369987935502, 29.778325203010954 ], [ -95.307366988324091, 29.779443202995822 ], [ -95.307388988550443, 29.78014220284053 ], [ -95.307390987962322, 29.780855203510516 ], [ -95.30738898788519, 29.781955203779297 ], [ -95.307374987901596, 29.78222420365605 ], [ -95.307377988683058, 29.782912203901912 ], [ -95.307367988122948, 29.78359120358472 ], [ -95.307370988821802, 29.783769203622427 ], [ -95.307370987880944, 29.784283204189911 ], [ -95.307364988751729, 29.784962204630723 ], [ -95.307372988880857, 29.785659204536351 ], [ -95.307371988980506, 29.786338204334243 ], [ -95.307355988182053, 29.787035204374224 ], [ -95.307368988086537, 29.787463204664263 ], [ -95.308403988364219, 29.787454204988894 ], [ -95.308923988577874, 29.787452205067783 ], [ -95.309443989485203, 29.787441204391197 ], [ -95.309960988687962, 29.787447204873533 ], [ -95.310465988933615, 29.787429204950023 ], [ -95.311166989272394, 29.787430204556873 ], [ -95.311614989780878, 29.787430204207475 ], [ -95.311909989328797, 29.7874252043197 ], [ -95.311962989815058, 29.787424204732325 ], [ -95.312517989966764, 29.787425204819584 ], [ -95.313492989642612, 29.787413204436366 ], [ -95.314340990630996, 29.78735920483355 ], [ -95.314554990667133, 29.787331204840218 ], [ -95.314888990592536, 29.787214204706981 ], [ -95.31506499093868, 29.78713920404493 ], [ -95.31591999038821, 29.786768204013338 ], [ -95.315891990384088, 29.785395203648342 ], [ -95.315874990428796, 29.784678204310744 ], [ -95.315905990643898, 29.784141203943136 ], [ -95.315939990715478, 29.783179203415038 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1212, "Tract": "48201211700", "Area_SqMi": 1.7163461181929573, "total_2009": 2017, "total_2010": 2091, "total_2011": 2365, "total_2012": 3378, "total_2013": 3682, "total_2014": 3718, "total_2015": 3762, "total_2016": 2855, "total_2017": 2751, "total_2018": 2814, "total_2019": 2664, "total_2020": 2590, "age1": 408, "age2": 1857, "age3": 827, "earn1": 177, "earn2": 531, "earn3": 2384, "naics_s01": 0, "naics_s02": 7, "naics_s03": 12, "naics_s04": 33, "naics_s05": 392, "naics_s06": 1688, "naics_s07": 298, "naics_s08": 295, "naics_s09": 0, "naics_s10": 0, "naics_s11": 88, "naics_s12": 2, "naics_s13": 0, "naics_s14": 124, "naics_s15": 0, "naics_s16": 23, "naics_s17": 8, "naics_s18": 36, "naics_s19": 86, "naics_s20": 0, "race1": 2117, "race2": 821, "race3": 23, "race4": 94, "race5": 2, "race6": 35, "ethnicity1": 2025, "ethnicity2": 1067, "edu1": 629, "edu2": 775, "edu3": 883, "edu4": 397, "Shape_Length": 32916.282379151678, "Shape_Area": 47848792.21948, "total_2021": 2594, "total_2022": 3092 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.317220991568689, 29.809256209113048 ], [ -95.317226992502341, 29.808942209006155 ], [ -95.317079991525105, 29.808080208497625 ], [ -95.317077992218344, 29.8079562083871 ], [ -95.317078992175126, 29.807888208174965 ], [ -95.317082992335699, 29.807492208863422 ], [ -95.317070992080545, 29.805947208002646 ], [ -95.317026991403736, 29.803956208184534 ], [ -95.317020991197808, 29.803370207277748 ], [ -95.316995991809634, 29.802202207900987 ], [ -95.316979991143498, 29.800389206918755 ], [ -95.316977991255669, 29.800257207050823 ], [ -95.316953991919846, 29.79868220691656 ], [ -95.316916991231906, 29.797016206309106 ], [ -95.316885991562032, 29.795474206167288 ], [ -95.316862991126357, 29.795040205784048 ], [ -95.316593990851132, 29.794404206015844 ], [ -95.31627399140632, 29.793893205819906 ], [ -95.316239991361485, 29.793827205998767 ], [ -95.316165990922372, 29.793683205593826 ], [ -95.31610399088953, 29.791751205303406 ], [ -95.316102991263591, 29.791514204919601 ], [ -95.316004990396081, 29.790691204989162 ], [ -95.315960990748081, 29.789805204854719 ], [ -95.315954990574397, 29.789432204815288 ], [ -95.315946990267477, 29.787931204790443 ], [ -95.315925990753797, 29.787619204682908 ], [ -95.315811990913673, 29.787660204614376 ], [ -95.314098990487153, 29.788375204295281 ], [ -95.310392989755428, 29.789993204825173 ], [ -95.30716598844306, 29.791342205942573 ], [ -95.302926987629505, 29.793158205826725 ], [ -95.301821987088559, 29.793622206104548 ], [ -95.300120986653539, 29.79435520657848 ], [ -95.299459987304431, 29.794642206142704 ], [ -95.297955986812994, 29.795272206255714 ], [ -95.296944986679861, 29.795657206757095 ], [ -95.292290984828739, 29.797718207702854 ], [ -95.292028985020508, 29.797838207008759 ], [ -95.289948984330621, 29.798794207671072 ], [ -95.288776984516403, 29.799286207532393 ], [ -95.288752983872357, 29.799296208161845 ], [ -95.288549983892338, 29.799378207739746 ], [ -95.284342983587337, 29.801029208558308 ], [ -95.280146982194665, 29.802478208428866 ], [ -95.280824982576831, 29.802931208718942 ], [ -95.281577982126223, 29.803434208868158 ], [ -95.28191298264781, 29.803618208594543 ], [ -95.2820509823717, 29.803679208938355 ], [ -95.282406982912008, 29.803872209070526 ], [ -95.28279598276437, 29.804027208893302 ], [ -95.283036982765537, 29.804101208565445 ], [ -95.28332398351813, 29.804189209123642 ], [ -95.283701982794611, 29.804259208563231 ], [ -95.284073983435746, 29.804282208912078 ], [ -95.284466983372624, 29.804278209003215 ], [ -95.284630983719609, 29.804278208618705 ], [ -95.285177983265058, 29.804290208631304 ], [ -95.286805984113485, 29.804257209344126 ], [ -95.287007983641459, 29.804243209205882 ], [ -95.287348984344106, 29.804257208708322 ], [ -95.288456984252704, 29.804255208435976 ], [ -95.288579984062494, 29.804255209008314 ], [ -95.289038984973274, 29.804254209126629 ], [ -95.290173984719246, 29.804227208656116 ], [ -95.291931985514609, 29.804208208609829 ], [ -95.292527985741444, 29.804225208824107 ], [ -95.293500985274761, 29.804213208304756 ], [ -95.294284985903531, 29.804252208277425 ], [ -95.29458998606529, 29.804273208982476 ], [ -95.29493598586474, 29.804319208857923 ], [ -95.295336986199445, 29.804391208320983 ], [ -95.296366986081551, 29.804662208375131 ], [ -95.296838986381616, 29.804819208920261 ], [ -95.297146986758094, 29.804935208960032 ], [ -95.297699987067517, 29.805171208818908 ], [ -95.299561987088936, 29.806151208796727 ], [ -95.301742987628629, 29.807348208654087 ], [ -95.301888988100728, 29.807428208688524 ], [ -95.303386988209866, 29.808205209448094 ], [ -95.304236988773752, 29.808682208824031 ], [ -95.304543988345756, 29.808839208891364 ], [ -95.305112988554882, 29.809077209307596 ], [ -95.305347988930521, 29.809163209435525 ], [ -95.305650989520345, 29.809239209355912 ], [ -95.306270989213218, 29.809370209470352 ], [ -95.306752989440255, 29.809404208913946 ], [ -95.307103989457559, 29.809422208946032 ], [ -95.307170989448394, 29.80942620921855 ], [ -95.308134989854366, 29.809428209367606 ], [ -95.308539989912347, 29.809413208976057 ], [ -95.30974998974169, 29.809370209383687 ], [ -95.312940990413864, 29.809293209421917 ], [ -95.313166991416523, 29.809288209297407 ], [ -95.316839992234932, 29.809260209144565 ], [ -95.317017991954984, 29.809258209323279 ], [ -95.317220991568689, 29.809256209113048 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1213, "Tract": "48339694207", "Area_SqMi": 3.6864141097113343, "total_2009": 73, "total_2010": 44, "total_2011": 43, "total_2012": 81, "total_2013": 93, "total_2014": 96, "total_2015": 89, "total_2016": 76, "total_2017": 71, "total_2018": 58, "total_2019": 62, "total_2020": 51, "age1": 7, "age2": 35, "age3": 22, "earn1": 16, "earn2": 15, "earn3": 33, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 5, "naics_s06": 8, "naics_s07": 19, "naics_s08": 0, "naics_s09": 0, "naics_s10": 11, "naics_s11": 4, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 15, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 62, "race2": 0, "race3": 0, "race4": 1, "race5": 0, "race6": 1, "ethnicity1": 55, "ethnicity2": 9, "edu1": 14, "edu2": 8, "edu3": 17, "edu4": 18, "Shape_Length": 50369.794006501994, "Shape_Area": 102770916.01794654, "total_2021": 53, "total_2022": 64 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.576616084975484, 30.393216318487209 ], [ -95.576834084665535, 30.379225316108492 ], [ -95.576255084084963, 30.378340315869519 ], [ -95.57640208456138, 30.378089315198483 ], [ -95.570447082664217, 30.372771314947247 ], [ -95.57001308296384, 30.372139314737517 ], [ -95.568886082325491, 30.369175314420527 ], [ -95.568717082045453, 30.368731314118662 ], [ -95.568733082430697, 30.365619313483545 ], [ -95.568742082474287, 30.363890312517945 ], [ -95.568752082006654, 30.362050312988988 ], [ -95.568176081615192, 30.360661311841938 ], [ -95.56527208052087, 30.358002311454083 ], [ -95.56510008049969, 30.362918312775378 ], [ -95.560410079900478, 30.366933314088818 ], [ -95.559388080124918, 30.367181313763872 ], [ -95.554990078461444, 30.370945314576701 ], [ -95.554249078827539, 30.372959315616157 ], [ -95.554095078483073, 30.374471315156583 ], [ -95.552770078006716, 30.376609316487272 ], [ -95.551450078628903, 30.377864316501952 ], [ -95.550706078132478, 30.380508316630699 ], [ -95.549087077357726, 30.383022317316119 ], [ -95.548931077588193, 30.384913317804603 ], [ -95.547600077716908, 30.388058318147607 ], [ -95.547153078121383, 30.389695319311592 ], [ -95.545646077544703, 30.391948319792963 ], [ -95.544799077009401, 30.393215320081488 ], [ -95.544787077356759, 30.395358320235008 ], [ -95.54449307681665, 30.395735320617337 ], [ -95.544473077508258, 30.3992643212916 ], [ -95.545486077277843, 30.40078132136194 ], [ -95.545484077358466, 30.401285321720124 ], [ -95.546010077625496, 30.402204321496821 ], [ -95.54624707764296, 30.402618321772234 ], [ -95.546351078087213, 30.402801321414643 ], [ -95.546348077784444, 30.403305321744398 ], [ -95.546054077776873, 30.403682321845178 ], [ -95.545903077658267, 30.404564322329641 ], [ -95.545169078050094, 30.405317321825532 ], [ -95.545021077805359, 30.40582132199755 ], [ -95.544727077331657, 30.406072322685553 ], [ -95.544653077364018, 30.406060321941137 ], [ -95.544522077712969, 30.40604132200497 ], [ -95.544375077594609, 30.406083322438906 ], [ -95.543714077935363, 30.40626632255232 ], [ -95.542763077787512, 30.406174322128475 ], [ -95.542393077290882, 30.40638032249684 ], [ -95.542258077287556, 30.406509322259332 ], [ -95.543829077629113, 30.40688232287426 ], [ -95.544403077460572, 30.407019322846139 ], [ -95.545721078660023, 30.407335322602968 ], [ -95.547576078603313, 30.4077763226874 ], [ -95.547648079061716, 30.407795322879434 ], [ -95.550331078978772, 30.408487322824705 ], [ -95.551951079975879, 30.408861322184354 ], [ -95.552058079787031, 30.408641322966048 ], [ -95.552132080308937, 30.408338322835792 ], [ -95.552323079607319, 30.407762322593111 ], [ -95.552599079788706, 30.406900322293936 ], [ -95.553034079978573, 30.405448322161565 ], [ -95.553224080352862, 30.404850321983545 ], [ -95.553386079757047, 30.404357321531602 ], [ -95.553660079864272, 30.403431321820154 ], [ -95.554436080191891, 30.401077321111842 ], [ -95.554515080245736, 30.400805320569265 ], [ -95.554700080276007, 30.400174320516282 ], [ -95.55482708018404, 30.399811320966123 ], [ -95.556457080707233, 30.400175321026076 ], [ -95.556990080370014, 30.400303321106378 ], [ -95.557623080893364, 30.400455320538335 ], [ -95.559479081073647, 30.400884321054146 ], [ -95.55959408138348, 30.400912320503462 ], [ -95.560226081095664, 30.401038320728556 ], [ -95.560424081306579, 30.40108532100437 ], [ -95.560294081142985, 30.401373320325838 ], [ -95.560265081980788, 30.401587321015114 ], [ -95.560308081506477, 30.401708320712149 ], [ -95.56045108162121, 30.401823321151678 ], [ -95.560758081449464, 30.401980321134332 ], [ -95.56087308213823, 30.402087321150464 ], [ -95.56086508173982, 30.402330320850133 ], [ -95.560965081924294, 30.402515320917452 ], [ -95.561194082184798, 30.40257332102161 ], [ -95.561458082314743, 30.40247332077729 ], [ -95.561701082054199, 30.402658320873503 ], [ -95.562194081752324, 30.40283032075498 ], [ -95.562630082230271, 30.402936321044493 ], [ -95.563837082907128, 30.400958320285941 ], [ -95.566459083516065, 30.398594320449373 ], [ -95.576616084975484, 30.393216318487209 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1214, "Tract": "48339690404", "Area_SqMi": 4.8754857366602122, "total_2009": 411, "total_2010": 480, "total_2011": 480, "total_2012": 570, "total_2013": 652, "total_2014": 752, "total_2015": 862, "total_2016": 865, "total_2017": 873, "total_2018": 1061, "total_2019": 1165, "total_2020": 1238, "age1": 464, "age2": 599, "age3": 231, "earn1": 293, "earn2": 444, "earn3": 557, "naics_s01": 0, "naics_s02": 1, "naics_s03": 2, "naics_s04": 238, "naics_s05": 0, "naics_s06": 17, "naics_s07": 389, "naics_s08": 5, "naics_s09": 96, "naics_s10": 34, "naics_s11": 0, "naics_s12": 132, "naics_s13": 1, "naics_s14": 17, "naics_s15": 5, "naics_s16": 126, "naics_s17": 19, "naics_s18": 151, "naics_s19": 61, "naics_s20": 0, "race1": 1077, "race2": 106, "race3": 13, "race4": 61, "race5": 2, "race6": 35, "ethnicity1": 967, "ethnicity2": 327, "edu1": 174, "edu2": 178, "edu3": 278, "edu4": 200, "Shape_Length": 53699.121224728391, "Shape_Area": 135920197.86085248, "total_2021": 1258, "total_2022": 1294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.61724508825678, 30.237351285621937 ], [ -95.617246088150125, 30.237200285487571 ], [ -95.61716308821444, 30.234477284847081 ], [ -95.617106088676039, 30.233238284795796 ], [ -95.617100087825236, 30.232779284399879 ], [ -95.617082087703778, 30.231466284225267 ], [ -95.617091087658125, 30.230768283927187 ], [ -95.617103088071303, 30.229739284238335 ], [ -95.61712908834852, 30.228739283548776 ], [ -95.617071087664058, 30.22739828347186 ], [ -95.617053088350474, 30.226839283787076 ], [ -95.616913087985907, 30.22383728258129 ], [ -95.616820087663285, 30.221851282533056 ], [ -95.614286087146652, 30.221776282522658 ], [ -95.611867085871722, 30.221705282203992 ], [ -95.611776085806667, 30.221700282868401 ], [ -95.610344086341001, 30.221658283014548 ], [ -95.605794084835424, 30.221524283116207 ], [ -95.602019083594797, 30.221415282629103 ], [ -95.599719083416076, 30.221343283064769 ], [ -95.597505082340106, 30.221274283070329 ], [ -95.594329081431241, 30.221170282856654 ], [ -95.592831081327205, 30.221121283628388 ], [ -95.592248081680822, 30.221102282814964 ], [ -95.587068079874683, 30.220913283659868 ], [ -95.584808079597593, 30.220831283619532 ], [ -95.583769079609297, 30.220805283037013 ], [ -95.582482079227219, 30.22076128323107 ], [ -95.580383077790799, 30.220697283859071 ], [ -95.578673077789063, 30.220634283795739 ], [ -95.577893078056903, 30.22063128330419 ], [ -95.577006077565656, 30.220639283503701 ], [ -95.575559077194981, 30.220684283519223 ], [ -95.575192076559375, 30.220698284089995 ], [ -95.573711076726156, 30.220756283925695 ], [ -95.573038076497141, 30.220788284240793 ], [ -95.572294076226797, 30.220816284136639 ], [ -95.569946075523589, 30.220847284244837 ], [ -95.569016075692957, 30.220864283763749 ], [ -95.568621075367588, 30.220887284277364 ], [ -95.568198074685583, 30.220918284180055 ], [ -95.568210074686164, 30.221581283974679 ], [ -95.568217074717182, 30.221850284102011 ], [ -95.56819907546911, 30.222190284416971 ], [ -95.568163075145279, 30.222543284415028 ], [ -95.568124075327333, 30.222740283948252 ], [ -95.567935075511087, 30.223366284140543 ], [ -95.567709074819547, 30.224255284268391 ], [ -95.567635075329534, 30.224554284934911 ], [ -95.567573075567992, 30.224832284979456 ], [ -95.567510074681636, 30.22546628491008 ], [ -95.567460075592237, 30.226193284707886 ], [ -95.567387075010799, 30.2276362858297 ], [ -95.567426075663718, 30.231167285917284 ], [ -95.56746007522716, 30.232452286514221 ], [ -95.567484075420197, 30.234100287111698 ], [ -95.567548076037511, 30.236333287271311 ], [ -95.567681075383518, 30.236397287339521 ], [ -95.568837075623776, 30.237337287209481 ], [ -95.569757076675586, 30.238227287226536 ], [ -95.56988907664747, 30.238368287780034 ], [ -95.570028076120067, 30.23850928779316 ], [ -95.570661076722516, 30.23920728722192 ], [ -95.570786076390633, 30.239359287344051 ], [ -95.57079507689636, 30.239694287383962 ], [ -95.570795076379085, 30.239975287405535 ], [ -95.570811077195486, 30.240094287976927 ], [ -95.570878076281247, 30.240392288253325 ], [ -95.570938076612407, 30.240760287780187 ], [ -95.570981077238187, 30.240995288409675 ], [ -95.571010076666013, 30.241125287949856 ], [ -95.571108076326425, 30.241336288207201 ], [ -95.571155076797368, 30.241453288496217 ], [ -95.57146907725388, 30.242039288387009 ], [ -95.571575076482674, 30.242182288041835 ], [ -95.571694077401034, 30.242322288513311 ], [ -95.571959077415684, 30.242601287877374 ], [ -95.572230077147694, 30.242870288448533 ], [ -95.57237707677082, 30.242997287984387 ], [ -95.572555076834064, 30.243125288466981 ], [ -95.572738077704813, 30.243237288028318 ], [ -95.572965077345813, 30.243364288785695 ], [ -95.573174077380003, 30.243490288707672 ], [ -95.5734470777914, 30.243638288167265 ], [ -95.573722077830936, 30.243788288146849 ], [ -95.573917078143197, 30.24388328837777 ], [ -95.574797078159165, 30.244332288241363 ], [ -95.574885078452965, 30.244375288127134 ], [ -95.575511078525111, 30.244683288515287 ], [ -95.5766140781475, 30.245256288476959 ], [ -95.577612079125061, 30.245845288790441 ], [ -95.577699078381485, 30.245905288966252 ], [ -95.577847078998332, 30.24600828848536 ], [ -95.578032078418175, 30.246147288672645 ], [ -95.578164078729614, 30.246261288351441 ], [ -95.578388079333337, 30.246500289040036 ], [ -95.578516078971575, 30.246660288952363 ], [ -95.5786330791057, 30.246828288448889 ], [ -95.578729079344484, 30.247001289104844 ], [ -95.578800078805017, 30.247179288594317 ], [ -95.578846079073529, 30.24733228917594 ], [ -95.578876078634067, 30.247453288964181 ], [ -95.578894078882058, 30.247602288705899 ], [ -95.578962079143864, 30.250285289904145 ], [ -95.578981078796616, 30.251052289811089 ], [ -95.579011079728772, 30.252243289997605 ], [ -95.579041079187505, 30.253619290021906 ], [ -95.579104079614567, 30.253602290638838 ], [ -95.579579079198524, 30.253923290494644 ], [ -95.580133079568853, 30.25415229007001 ], [ -95.580476080117293, 30.254152289947111 ], [ -95.580845080107579, 30.254061289929322 ], [ -95.581057080363948, 30.253924290268756 ], [ -95.581188080291852, 30.253695290527524 ], [ -95.581136079704081, 30.253030289666846 ], [ -95.58137407980557, 30.252618289863442 ], [ -95.582007080300471, 30.252412289662384 ], [ -95.582245080284451, 30.251656289886178 ], [ -95.582482080051676, 30.251336290067272 ], [ -95.582957079904631, 30.251084289907201 ], [ -95.583670080107595, 30.251061289248316 ], [ -95.585015080704892, 30.251543289888744 ], [ -95.585094080830729, 30.251611289926078 ], [ -95.585358081426151, 30.251634289597224 ], [ -95.585912081153225, 30.251864289893259 ], [ -95.586176081651814, 30.251864289691046 ], [ -95.586545081658556, 30.25163528936179 ], [ -95.587389081222312, 30.251521289601691 ], [ -95.587732081183589, 30.25106328909758 ], [ -95.588155081589505, 30.250902289286039 ], [ -95.588419081805213, 30.250673289614213 ], [ -95.588707081606913, 30.25022328882152 ], [ -95.588892081998196, 30.249879289375343 ], [ -95.58907708144946, 30.24978828932613 ], [ -95.58957808212746, 30.249788289207558 ], [ -95.59005308256377, 30.250108289371884 ], [ -95.590739082517132, 30.250131288977961 ], [ -95.590923082777309, 30.250040289114811 ], [ -95.591161082828961, 30.24946728861164 ], [ -95.591425081942234, 30.249421288988952 ], [ -95.591742082446217, 30.248643289236192 ], [ -95.591794082497202, 30.248299288655463 ], [ -95.592217082229695, 30.248047288685438 ], [ -95.5923540829763, 30.247815288729353 ], [ -95.592744082194145, 30.24715428817186 ], [ -95.593061082251083, 30.246856288304208 ], [ -95.594037082630962, 30.246925288423306 ], [ -95.594090082856241, 30.24676528829168 ], [ -95.594011082734241, 30.24621528854739 ], [ -95.594116083386908, 30.246078287845485 ], [ -95.595172083156754, 30.245688287730101 ], [ -95.595383083445142, 30.245528288449734 ], [ -95.595449083712879, 30.24542228835087 ], [ -95.595752082967778, 30.244933287511945 ], [ -95.595884083332933, 30.244864287804067 ], [ -95.596095083469663, 30.244406287406722 ], [ -95.59633208386758, 30.244246287779745 ], [ -95.596939084023759, 30.244177287618275 ], [ -95.597625083807316, 30.244452288193308 ], [ -95.597968083802883, 30.24447528771989 ], [ -95.598258084148782, 30.244200287815147 ], [ -95.598733083907206, 30.2441542877987 ], [ -95.599234084474944, 30.243925287972136 ], [ -95.600342083997489, 30.244177287531333 ], [ -95.60047408411171, 30.2440632877477 ], [ -95.600632084969163, 30.243788287790032 ], [ -95.600632084503118, 30.243284287456735 ], [ -95.600421084553162, 30.242780287583848 ], [ -95.600421083902788, 30.242368287248979 ], [ -95.600527084229697, 30.242093287550937 ], [ -95.601134084221812, 30.241772287008381 ], [ -95.60184608499948, 30.241703287392625 ], [ -95.602084084844194, 30.241864286816963 ], [ -95.602426085122445, 30.241887286986852 ], [ -95.603244085364864, 30.2415892870528 ], [ -95.603772085616754, 30.241131286916573 ], [ -95.60440508575148, 30.240833286965948 ], [ -95.604669085778411, 30.240513286424942 ], [ -95.605012085024654, 30.240467286218305 ], [ -95.605223085444848, 30.240238287011863 ], [ -95.605592085771136, 30.240238286676487 ], [ -95.605908085950475, 30.240627286975322 ], [ -95.606225085839426, 30.240879286905844 ], [ -95.606779085838355, 30.240971286440491 ], [ -95.607649086645509, 30.240650286258859 ], [ -95.60788708625968, 30.240719286920331 ], [ -95.607676085820074, 30.241200286953568 ], [ -95.608573086349253, 30.2413602867238 ], [ -95.60857308626376, 30.241635287080602 ], [ -95.608467085884485, 30.241726287019755 ], [ -95.608441086073242, 30.242001286789851 ], [ -95.608546085949541, 30.242162287223803 ], [ -95.60881008637962, 30.242322286797013 ], [ -95.610050086327846, 30.242230287061016 ], [ -95.610446086551107, 30.242528287062143 ], [ -95.610815086637828, 30.242551286642438 ], [ -95.611211087573963, 30.242299286886613 ], [ -95.611501087139587, 30.241887287139022 ], [ -95.611765087038862, 30.241887287061289 ], [ -95.611923087406296, 30.241978286357583 ], [ -95.612002086949687, 30.242413286882094 ], [ -95.613374087596952, 30.242436287205578 ], [ -95.613664087298545, 30.242596286547315 ], [ -95.613849087704267, 30.242894287248426 ], [ -95.614324087986006, 30.242963286603 ], [ -95.614456088099573, 30.242825287132984 ], [ -95.614667088366232, 30.242299286517216 ], [ -95.614904088231157, 30.242207286524078 ], [ -95.615141088131026, 30.242322286834753 ], [ -95.615273088356332, 30.242642287164117 ], [ -95.615564088574558, 30.242917286553659 ], [ -95.615880088115631, 30.24284828670552 ], [ -95.616170088386099, 30.242711287098953 ], [ -95.616434088139684, 30.242207286453166 ], [ -95.616029087900131, 30.241598286152353 ], [ -95.616818088516609, 30.241478286749771 ], [ -95.616921088554278, 30.241387286266253 ], [ -95.61694008850219, 30.241324286702675 ], [ -95.616939088836105, 30.237833285463264 ], [ -95.616936088561133, 30.237764285853512 ], [ -95.616946088231671, 30.237699285853516 ], [ -95.616968088493408, 30.237630285342931 ], [ -95.616999088816613, 30.237571285452894 ], [ -95.617158088707342, 30.2373682853218 ], [ -95.61724508825678, 30.237351285621937 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1215, "Tract": "48339694002", "Area_SqMi": 30.586586420577639, "total_2009": 1130, "total_2010": 661, "total_2011": 434, "total_2012": 274, "total_2013": 300, "total_2014": 359, "total_2015": 444, "total_2016": 260, "total_2017": 232, "total_2018": 301, "total_2019": 315, "total_2020": 234, "age1": 56, "age2": 140, "age3": 71, "earn1": 57, "earn2": 84, "earn3": 126, "naics_s01": 10, "naics_s02": 0, "naics_s03": 0, "naics_s04": 48, "naics_s05": 62, "naics_s06": 2, "naics_s07": 43, "naics_s08": 2, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 34, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 1, "naics_s18": 32, "naics_s19": 22, "naics_s20": 0, "race1": 230, "race2": 14, "race3": 3, "race4": 10, "race5": 2, "race6": 8, "ethnicity1": 202, "ethnicity2": 65, "edu1": 41, "edu2": 57, "edu3": 79, "edu4": 34, "Shape_Length": 156675.09720037319, "Shape_Area": 852701679.93985748, "total_2021": 197, "total_2022": 267 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.360501026742867, 30.332258313793169 ], [ -95.360506027643879, 30.331981313928143 ], [ -95.358636026253222, 30.332367314408749 ], [ -95.357312026253084, 30.332590313848314 ], [ -95.355371026281276, 30.332832313947225 ], [ -95.354774025509855, 30.332862314461952 ], [ -95.353068025350183, 30.333003314318312 ], [ -95.35087202495319, 30.333098314763799 ], [ -95.341103021763061, 30.333055315189821 ], [ -95.340837022168344, 30.333054314574113 ], [ -95.33995602234954, 30.333055315265621 ], [ -95.337500021181611, 30.333040314996659 ], [ -95.332834019832021, 30.333020314944356 ], [ -95.329956019589659, 30.333008314751503 ], [ -95.328109018800745, 30.333002314779939 ], [ -95.327216018750477, 30.332942315065448 ], [ -95.325485018648095, 30.332826315231657 ], [ -95.324913018046928, 30.332787315198082 ], [ -95.319502016746128, 30.332423315289081 ], [ -95.318247016133199, 30.332340315427878 ], [ -95.315262015879469, 30.332143315739881 ], [ -95.314789015047481, 30.332113315467812 ], [ -95.313694014965691, 30.332045315224605 ], [ -95.313602015292346, 30.332039315292931 ], [ -95.311263014194793, 30.33188131577322 ], [ -95.309392013773916, 30.331756315506336 ], [ -95.305968012974247, 30.331534315947593 ], [ -95.302446011957684, 30.331305315848923 ], [ -95.293114010112475, 30.330700316003409 ], [ -95.292893009269605, 30.330686316157113 ], [ -95.291195009716702, 30.33057631562944 ], [ -95.290665008719259, 30.33054131617773 ], [ -95.288049007981641, 30.330372315941528 ], [ -95.287281008116068, 30.33032331589532 ], [ -95.284291007933518, 30.330129315885003 ], [ -95.28013300648341, 30.329858316596052 ], [ -95.27681600530012, 30.329642316700085 ], [ -95.274530004916798, 30.329485316781891 ], [ -95.267088002928546, 30.329037316617004 ], [ -95.260477001664029, 30.329005317082796 ], [ -95.254078999242779, 30.32895431673909 ], [ -95.248562997730332, 30.328589317580072 ], [ -95.247863998390883, 30.328556317450644 ], [ -95.245650997872545, 30.328395316814966 ], [ -95.244544997699691, 30.328321317048896 ], [ -95.244344996935396, 30.328308317027478 ], [ -95.24108799679712, 30.328091317686777 ], [ -95.239893995513214, 30.328012317000063 ], [ -95.239505996050539, 30.328001317004855 ], [ -95.237470994992961, 30.327872317140336 ], [ -95.235851994914654, 30.327769317355738 ], [ -95.233947994482733, 30.327639317348162 ], [ -95.230895994144518, 30.327430317869297 ], [ -95.229173992741352, 30.327321317124547 ], [ -95.228560993554552, 30.327276317901077 ], [ -95.226577992601264, 30.327150317323518 ], [ -95.226389992913454, 30.32733631756949 ], [ -95.226237992888386, 30.327540318133209 ], [ -95.226123992947507, 30.327726317937483 ], [ -95.225960992421165, 30.327902317428844 ], [ -95.22588399193144, 30.327985317741742 ], [ -95.225611992193137, 30.328391317589482 ], [ -95.225471991974899, 30.328507318079133 ], [ -95.225224992172329, 30.32900831817286 ], [ -95.22490199217934, 30.329433318272045 ], [ -95.224819992116167, 30.329541318328857 ], [ -95.224825992255191, 30.329750317921604 ], [ -95.224820992390292, 30.329774318276911 ], [ -95.224813992406681, 30.329805318449374 ], [ -95.224793992048561, 30.329838318138961 ], [ -95.224743992126804, 30.329882318443342 ], [ -95.224718991955029, 30.329894318291355 ], [ -95.224686991840684, 30.329910317830187 ], [ -95.224578992320843, 30.32992131839584 ], [ -95.224376992100574, 30.329921318298968 ], [ -95.224198991867013, 30.329921317916948 ], [ -95.224096992346517, 30.3299373182486 ], [ -95.224039991817364, 30.329965318262683 ], [ -95.223982992013859, 30.330020318748904 ], [ -95.223906991979788, 30.330130318469909 ], [ -95.223634991467748, 30.330658318659157 ], [ -95.223583992213108, 30.330718318262189 ], [ -95.22345099167768, 30.330806318325717 ], [ -95.223381991403215, 30.330834318455643 ], [ -95.22308399212308, 30.330861318120608 ], [ -95.223026991544018, 30.330878318793662 ], [ -95.222981992150679, 30.330905318979006 ], [ -95.222937992252852, 30.330960318735912 ], [ -95.222950991831254, 30.331032318187557 ], [ -95.222984991980141, 30.331113318493934 ], [ -95.223146991802551, 30.331494318927081 ], [ -95.223172991971182, 30.331592318518251 ], [ -95.223159991680745, 30.331664318548075 ], [ -95.223121992172821, 30.33174631909657 ], [ -95.223058991755792, 30.331840319160793 ], [ -95.222975991448379, 30.331950318903445 ], [ -95.222836991626892, 30.33208731911045 ], [ -95.222665991886871, 30.332198318944876 ], [ -95.222633991730703, 30.332219318828056 ], [ -95.222570991227201, 30.33224131894562 ], [ -95.222084991159534, 30.332280318549035 ], [ -95.222012991858534, 30.332297318947685 ], [ -95.221980991818796, 30.332335319307777 ], [ -95.221936991832564, 30.332473319178991 ], [ -95.221930991279464, 30.332533318756148 ], [ -95.221936991213369, 30.332594318980952 ], [ -95.221981991234671, 30.332725319258564 ], [ -95.221987991326088, 30.332802319214291 ], [ -95.221968991137047, 30.332901319251839 ], [ -95.221875991869496, 30.333201319158725 ], [ -95.221860991951743, 30.33324831936126 ], [ -95.221867991292896, 30.333369319504158 ], [ -95.221892991584824, 30.333424319048881 ], [ -95.221908991885911, 30.333447319539946 ], [ -95.22200699136431, 30.333594318716848 ], [ -95.222032992029042, 30.333682319535718 ], [ -95.222184991908648, 30.33387531884107 ], [ -95.222304992021435, 30.334122318994677 ], [ -95.222323991750059, 30.334270319205459 ], [ -95.222311991734017, 30.334369319584649 ], [ -95.222209992108574, 30.334408319090596 ], [ -95.221816991582557, 30.334391319206244 ], [ -95.221709991406016, 30.334441319666194 ], [ -95.221696991747621, 30.334518319431965 ], [ -95.221798991647887, 30.334765318969421 ], [ -95.221785991559898, 30.334892319652806 ], [ -95.22157699123612, 30.334980319134509 ], [ -95.221389991430456, 30.335028319377923 ], [ -95.221259991118629, 30.33506231933935 ], [ -95.22113299129613, 30.335117319005107 ], [ -95.221088991786814, 30.335189319652333 ], [ -95.221120991396845, 30.335277319118081 ], [ -95.22131099155439, 30.335299319099786 ], [ -95.221377991818343, 30.335299319379676 ], [ -95.221481991786632, 30.335299319924339 ], [ -95.221513991441284, 30.335359319775698 ], [ -95.221481991789162, 30.335447319127031 ], [ -95.221342991726502, 30.335634319583569 ], [ -95.221202991757409, 30.335700319271204 ], [ -95.220911991269446, 30.335695319945589 ], [ -95.220771991857561, 30.335711319184846 ], [ -95.220682991740404, 30.33571131994465 ], [ -95.220581991035559, 30.335739319377904 ], [ -95.220499990938023, 30.33578831960525 ], [ -95.220486991349276, 30.335849319519905 ], [ -95.220486991205064, 30.3359153192606 ], [ -95.220575991261413, 30.336047319908758 ], [ -95.220676991248169, 30.336085319288738 ], [ -95.220733991170292, 30.336146319961586 ], [ -95.220740991391295, 30.336437319736142 ], [ -95.220714991080186, 30.336536319949769 ], [ -95.220657991984766, 30.336613319547165 ], [ -95.220404990885754, 30.336663319676259 ], [ -95.220302991201251, 30.336668320194352 ], [ -95.220258991681604, 30.336679319838989 ], [ -95.22039199125031, 30.336915319743259 ], [ -95.220759991606499, 30.337075320255625 ], [ -95.220620991895871, 30.337399320146343 ], [ -95.220525991083761, 30.3373613202386 ], [ -95.219922990779054, 30.337212320311419 ], [ -95.219529991466914, 30.337532319791901 ], [ -95.219295991251926, 30.337543319968265 ], [ -95.218877991171681, 30.337493319679464 ], [ -95.218674991197844, 30.337345320337409 ], [ -95.218407990728281, 30.337114319759657 ], [ -95.218249990365067, 30.337103319966634 ], [ -95.218090991243812, 30.337169320402079 ], [ -95.217995990975851, 30.337230319670461 ], [ -95.217907990976457, 30.337356320129526 ], [ -95.21781299050393, 30.33745031959052 ], [ -95.217348990927661, 30.337642320011447 ], [ -95.217254990376233, 30.337681320135385 ], [ -95.216842990329553, 30.337813319917572 ], [ -95.216608990936152, 30.337879319938285 ], [ -95.216367990263521, 30.337934319958109 ], [ -95.215993990693462, 30.338088320394771 ], [ -95.215942990359594, 30.338192319952142 ], [ -95.215910990601998, 30.338291320541117 ], [ -95.215410990629294, 30.338247320398683 ], [ -95.215074989825794, 30.338242320355402 ], [ -95.215048989830237, 30.338170320694946 ], [ -95.214985990234737, 30.338083320145103 ], [ -95.21481499002563, 30.338050319896837 ], [ -95.214465990206577, 30.338055320411687 ], [ -95.214250989687187, 30.338094320673921 ], [ -95.213724989785533, 30.33839132010332 ], [ -95.213109990142229, 30.338561320012328 ], [ -95.212982989591112, 30.338589320713439 ], [ -95.212805989481097, 30.338583320379453 ], [ -95.212678989055249, 30.338594320180775 ], [ -95.212652989231756, 30.338699320696961 ], [ -95.212557989462411, 30.338886320450914 ], [ -95.21253298977534, 30.339062320772374 ], [ -95.212462989443196, 30.33916132045087 ], [ -95.21237498995076, 30.339188320913149 ], [ -95.212241989883339, 30.339117320966569 ], [ -95.212304989033697, 30.338666320032686 ], [ -95.212202989592342, 30.338540320264354 ], [ -95.212069989337181, 30.338518320192883 ], [ -95.211987989691181, 30.338534320426305 ], [ -95.211816988932057, 30.338721320877234 ], [ -95.211633989051677, 30.338725320793454 ], [ -95.211543989493208, 30.338727320863846 ], [ -95.211410988911751, 30.338628320491026 ], [ -95.211309989627409, 30.338644320549864 ], [ -95.211169988988246, 30.338732320482023 ], [ -95.211055989612106, 30.338859320432658 ], [ -95.211043989459213, 30.338947321003044 ], [ -95.211048988870928, 30.339078320411808 ], [ -95.211049988875644, 30.339101320167984 ], [ -95.211093989467869, 30.339222320440349 ], [ -95.211093988830299, 30.339359320868745 ], [ -95.211055989193085, 30.339398320595464 ], [ -95.210897988993906, 30.339343320226241 ], [ -95.210790988945007, 30.339366320775714 ], [ -95.210719989531938, 30.339381320862795 ], [ -95.210523989136007, 30.3394533209248 ], [ -95.210320989319172, 30.33969732053675 ], [ -95.21022398880109, 30.339814320468623 ], [ -95.210117988577196, 30.339942320703095 ], [ -95.210048989240676, 30.340090321235078 ], [ -95.210047988671619, 30.340107320796715 ], [ -95.210022989423479, 30.340481320998894 ], [ -95.209997988791272, 30.340541320973561 ], [ -95.210016988845567, 30.341416321422017 ], [ -95.210067988806387, 30.341586321122222 ], [ -95.20998598874499, 30.342081320887324 ], [ -95.209592988705495, 30.342213321536608 ], [ -95.209433989320189, 30.342389321798187 ], [ -95.209338988596954, 30.342565321202006 ], [ -95.209275988940561, 30.342983321853332 ], [ -95.209307989055191, 30.343219321409041 ], [ -95.209275989328773, 30.343302321610107 ], [ -95.209212989358974, 30.343422321133598 ], [ -95.209174989066938, 30.343455321311911 ], [ -95.208927989011244, 30.343560321969694 ], [ -95.20859198822393, 30.343318321298511 ], [ -95.20843298874054, 30.343483321482154 ], [ -95.208404988201124, 30.343491321594772 ], [ -95.208299988829992, 30.343522321346061 ], [ -95.208229988745288, 30.343483321272167 ], [ -95.207887988299206, 30.343164321923886 ], [ -95.207760988783463, 30.343142321454632 ], [ -95.207716988583911, 30.343230321149885 ], [ -95.207481988359248, 30.343571321475039 ], [ -95.207323988679931, 30.34373632144916 ], [ -95.207291988210869, 30.344187321925737 ], [ -95.207266987958093, 30.344391321524171 ], [ -95.207171988843584, 30.34464332169533 ], [ -95.207158988701522, 30.344748322237685 ], [ -95.207121988491053, 30.34488032204067 ], [ -95.20702598818572, 30.345067322151692 ], [ -95.20716598790986, 30.34541332214641 ], [ -95.207330988627007, 30.345875321971693 ], [ -95.207248988838415, 30.345991322115932 ], [ -95.207140988551103, 30.346040321979252 ], [ -95.207000988243493, 30.345969322424725 ], [ -95.206912988717733, 30.345881322462805 ], [ -95.206556987861333, 30.345441321915466 ], [ -95.20644298842582, 30.345501321866355 ], [ -95.20643698861933, 30.345784322062933 ], [ -95.206430988567917, 30.346106322403642 ], [ -95.206316988289643, 30.346343322584907 ], [ -95.205676987943718, 30.346684322064799 ], [ -95.205435987623574, 30.346871322319316 ], [ -95.205274987869387, 30.347069322360383 ], [ -95.205257988248277, 30.34708032282111 ], [ -95.205073988054139, 30.347047322871411 ], [ -95.204731987801566, 30.347008322735547 ], [ -95.20472298738197, 30.346994322280782 ], [ -95.204706987668629, 30.346970322586248 ], [ -95.204666987834173, 30.347009322870949 ], [ -95.204611987966274, 30.347047322285245 ], [ -95.20450398800449, 30.3470853220952 ], [ -95.204242987920196, 30.34709032271175 ], [ -95.204192987907447, 30.347091322633354 ], [ -95.20410498810763, 30.347102322649789 ], [ -95.203964987836017, 30.34714032249838 ], [ -95.203837987325628, 30.347217322084049 ], [ -95.203768987691589, 30.347289322481572 ], [ -95.203742987854838, 30.347349322902204 ], [ -95.203742987683157, 30.34738832218812 ], [ -95.203731987306398, 30.347421322247556 ], [ -95.20372398774586, 30.347443322182432 ], [ -95.203330987140291, 30.347866322309688 ], [ -95.203216987996669, 30.347916322495234 ], [ -95.203115987021079, 30.347982322902993 ], [ -95.203096987356361, 30.348015322314481 ], [ -95.20309098793237, 30.348059323093896 ], [ -95.203096987821723, 30.348114322318331 ], [ -95.203197987193775, 30.34832832304194 ], [ -95.203216987773573, 30.348410322421877 ], [ -95.203204987791366, 30.348614322687535 ], [ -95.203164987097324, 30.348742322653596 ], [ -95.203147987621449, 30.34879532297666 ], [ -95.202938987605847, 30.349070323266993 ], [ -95.202919987957046, 30.349125323134569 ], [ -95.202919987746171, 30.349186322885433 ], [ -95.202931987364039, 30.349215322812721 ], [ -95.2031099875948, 30.349653323060963 ], [ -95.203236987970357, 30.349851323394851 ], [ -95.203261987993599, 30.349933322912605 ], [ -95.203267987366004, 30.350010323442682 ], [ -95.203255988055275, 30.350071322737577 ], [ -95.203179988021702, 30.350214322813116 ], [ -95.202980988001016, 30.35044432311776 ], [ -95.202951987470072, 30.350478323249568 ], [ -95.202913987937364, 30.350533323087127 ], [ -95.202925987079666, 30.350593323278872 ], [ -95.202976987893635, 30.350670323375397 ], [ -95.203090987512667, 30.350714323348686 ], [ -95.203135987223362, 30.350723323541686 ], [ -95.20337598754432, 30.350769323502277 ], [ -95.203420987667187, 30.350797323236321 ], [ -95.203445988082791, 30.350824322866007 ], [ -95.20345198743442, 30.350890323567224 ], [ -95.203368988150984, 30.350992323231889 ], [ -95.203344987718069, 30.351022323554044 ], [ -95.203306987713859, 30.351110323724598 ], [ -95.203306987430508, 30.351154323747775 ], [ -95.203318987554482, 30.351192323440337 ], [ -95.203350987388077, 30.351225323353042 ], [ -95.203471987858251, 30.351258323619863 ], [ -95.203525988047588, 30.35125832373479 ], [ -95.203578988201784, 30.351258323641915 ], [ -95.203737988079553, 30.351280323684481 ], [ -95.203794987810056, 30.351346322909293 ], [ -95.203826987582445, 30.351462323740058 ], [ -95.20380798769088, 30.351880323550148 ], [ -95.203807987607362, 30.3520173234715 ], [ -95.203819987983337, 30.352100323088465 ], [ -95.203896987818482, 30.352106323512785 ], [ -95.203919987996002, 30.352108323164249 ], [ -95.203972987594625, 30.352111323729495 ], [ -95.204035987507098, 30.352105323576207 ], [ -95.204168988006074, 30.352066323213663 ], [ -95.204244988369979, 30.352055323622128 ], [ -95.204327987588712, 30.352066323858832 ], [ -95.204606988058188, 30.352138323445111 ], [ -95.204720987621457, 30.35214032371325 ], [ -95.204935988168742, 30.35214332355185 ], [ -95.204986988004038, 30.352154323207941 ], [ -95.205043987847077, 30.352187323432855 ], [ -95.20524698828595, 30.35240232347245 ], [ -95.205354988331621, 30.352473323433745 ], [ -95.205514988597102, 30.35255432385442 ], [ -95.205614988794991, 30.352605323557448 ], [ -95.206038988298303, 30.352775323569844 ], [ -95.206102988634882, 30.352818323382049 ], [ -95.206127988777482, 30.352836323542331 ], [ -95.206203988812007, 30.352924323418669 ], [ -95.206210988586392, 30.352933323474144 ], [ -95.206311988448192, 30.353072323601062 ], [ -95.206362988099656, 30.353111323910806 ], [ -95.206413988785641, 30.353127323822736 ], [ -95.206457988293664, 30.353127323786172 ], [ -95.206495988982326, 30.35311632393006 ], [ -95.206533988900134, 30.353089323484905 ], [ -95.206556988992247, 30.353063323280484 ], [ -95.206641988196139, 30.35296832376989 ], [ -95.206742988948648, 30.352929323819236 ], [ -95.206784989150322, 30.352926323440006 ], [ -95.206818988922265, 30.352924323532914 ], [ -95.206913988424375, 30.352929323309894 ], [ -95.20700298892433, 30.352940323766401 ], [ -95.207066988618237, 30.352962323540915 ], [ -95.207116988729965, 30.353006323306307 ], [ -95.20726898852395, 30.35321532380318 ], [ -95.207459989376602, 30.353407323360582 ], [ -95.20754798859609, 30.353495323356185 ], [ -95.207662988730092, 30.353567323324185 ], [ -95.207757989129476, 30.353594323829441 ], [ -95.207833989166559, 30.353600323620114 ], [ -95.20786898895021, 30.353594323685464 ], [ -95.207903988792978, 30.353589323721206 ], [ -95.207960988576474, 30.353561323996335 ], [ -95.208023989481177, 30.353545324020452 ], [ -95.208099988783701, 30.353556323530007 ], [ -95.208188988907054, 30.353583323716769 ], [ -95.208277989576544, 30.353649323889719 ], [ -95.208303988993151, 30.353662323864182 ], [ -95.208397988945066, 30.353710323277419 ], [ -95.208422988770891, 30.353699323628355 ], [ -95.2084359891969, 30.353693323902071 ], [ -95.208480988737506, 30.353567323462229 ], [ -95.208511989386238, 30.353396323770639 ], [ -95.208606989282103, 30.353220323675679 ], [ -95.208746989013378, 30.353171323669493 ], [ -95.208885989130323, 30.353231323663216 ], [ -95.208960989438467, 30.353302323941858 ], [ -95.209399989744298, 30.353715323322767 ], [ -95.209576989630776, 30.354056323308647 ], [ -95.210007989139342, 30.35411132393023 ], [ -95.210388989140057, 30.354242323746789 ], [ -95.210680989912333, 30.354314323885902 ], [ -95.210825990009198, 30.354363323721525 ], [ -95.210951989812003, 30.35437732354962 ], [ -95.210978989927611, 30.354380323372844 ], [ -95.211098990119567, 30.354347323398692 ], [ -95.212226990569718, 30.353676323529815 ], [ -95.212353989794181, 30.353632323537198 ], [ -95.212600990156446, 30.353626323208648 ], [ -95.212645990520713, 30.353613323399841 ], [ -95.212657989918469, 30.353610323056699 ], [ -95.212695989929813, 30.353560323271214 ], [ -95.212714990529207, 30.35331832307001 ], [ -95.212778989775956, 30.353192323541538 ], [ -95.212809989726992, 30.353175323033817 ], [ -95.212847990349459, 30.353170323069609 ], [ -95.212892990391353, 30.353175323654412 ], [ -95.21315898982003, 30.353298323277617 ], [ -95.213462990108042, 30.353439323479268 ], [ -95.213634990480131, 30.353494323181167 ], [ -95.213683990254765, 30.353502323857608 ], [ -95.213717990860516, 30.353507323871934 ], [ -95.213817990382267, 30.353521323604891 ], [ -95.213835990444281, 30.353521323757477 ], [ -95.213881990170691, 30.353521323322102 ], [ -95.214071990490325, 30.353488323795425 ], [ -95.214185990839823, 30.353510323679266 ], [ -95.214242990555533, 30.353538323615762 ], [ -95.214280991119949, 30.35358232387571 ], [ -95.214296990707666, 30.353612323022766 ], [ -95.214306990574244, 30.353631323614035 ], [ -95.214318990678194, 30.353692323411561 ], [ -95.214312990937032, 30.353813323486719 ], [ -95.214274991157254, 30.353884323202365 ], [ -95.214084990677421, 30.354132323250418 ], [ -95.214046990288324, 30.354209323639285 ], [ -95.214046990828606, 30.354264323224921 ], [ -95.214052990397903, 30.354308323689445 ], [ -95.214078990687824, 30.354338323937913 ], [ -95.214090990128852, 30.354352323958 ], [ -95.214166990414498, 30.354412323357121 ], [ -95.214268990169188, 30.354461323893116 ], [ -95.214363991077605, 30.354489323260335 ], [ -95.214387990801086, 30.354490323926772 ], [ -95.214477990437942, 30.354494323241823 ], [ -95.214604990461652, 30.354489323822357 ], [ -95.214724990903946, 30.354467324000183 ], [ -95.214749990360914, 30.35445732316121 ], [ -95.214857990648142, 30.354417323342783 ], [ -95.214933991134558, 30.354412323895843 ], [ -95.215010990321716, 30.354428323953435 ], [ -95.215054990515824, 30.354461323913657 ], [ -95.215149990731959, 30.354599323598276 ], [ -95.215206990565846, 30.354637323747131 ], [ -95.215301990466344, 30.354670323189769 ], [ -95.215371990785684, 30.354681323408482 ], [ -95.215434990730301, 30.354670323450943 ], [ -95.215644991417946, 30.354588323931118 ], [ -95.215980991375631, 30.354521323667157 ], [ -95.216049991380075, 30.354516323832719 ], [ -95.216125991246201, 30.354521323447205 ], [ -95.216366990705936, 30.354593323572121 ], [ -95.216380991375104, 30.354605323640634 ], [ -95.216461990799715, 30.354675323672819 ], [ -95.216522991698568, 30.354750323606595 ], [ -95.216772990828119, 30.355060324056453 ], [ -95.216893991680507, 30.355170323560706 ], [ -95.217013991826676, 30.355247323681052 ], [ -95.217343991745295, 30.355423324100183 ], [ -95.217414991094358, 30.35547632401353 ], [ -95.217438991676232, 30.355494323715668 ], [ -95.217520991181303, 30.35558832340935 ], [ -95.217716991222233, 30.355894323928592 ], [ -95.217749991740121, 30.35594532341895 ], [ -95.217759991360438, 30.355957323884414 ], [ -95.217990991244676, 30.356247323469411 ], [ -95.218028991733576, 30.356313323768511 ], [ -95.21807299168141, 30.35650032401529 ], [ -95.218085992205829, 30.356726323559087 ], [ -95.218066991694826, 30.356836323692026 ], [ -95.217946991283853, 30.357270323682155 ], [ -95.217933991422242, 30.357369323647706 ], [ -95.217935991895899, 30.35740332380804 ], [ -95.217940992228549, 30.357473324133078 ], [ -95.218003991274912, 30.357512324290006 ], [ -95.21821299137271, 30.357506324052174 ], [ -95.21830799218391, 30.357523324394233 ], [ -95.218472992402127, 30.357594323816542 ], [ -95.218529991651167, 30.357655324494942 ], [ -95.218567991752209, 30.357732324265459 ], [ -95.218630992267094, 30.357963324352596 ], [ -95.218637992343943, 30.357990324122177 ], [ -95.218670991887976, 30.35815232385881 ], [ -95.2186889922868, 30.35824832433503 ], [ -95.218694992372505, 30.358331324296973 ], [ -95.218682991615793, 30.35840232418122 ], [ -95.218656991592866, 30.358468324123056 ], [ -95.218612992074569, 30.358518324124194 ], [ -95.218416991792807, 30.35867732449147 ], [ -95.218371991708921, 30.358738324023395 ], [ -95.218335992146862, 30.358847324702161 ], [ -95.218346992270185, 30.358903323972896 ], [ -95.218378991733729, 30.358947324194229 ], [ -95.218435992034969, 30.358985324617073 ], [ -95.218574991875798, 30.359057324567111 ], [ -95.218676991991728, 30.3591613244675 ], [ -95.218773992501127, 30.359380324341885 ], [ -95.218785992422355, 30.359408324401478 ], [ -95.219056992417009, 30.360019324164309 ], [ -95.219088992337021, 30.360074324779525 ], [ -95.219164992293571, 30.360145324287767 ], [ -95.219323992700012, 30.360194324478584 ], [ -95.219437992667693, 30.360266324492436 ], [ -95.219494992318474, 30.360347324971354 ], [ -95.21962799277442, 30.360535324533455 ], [ -95.219684992489306, 30.36066732435124 ], [ -95.219722992859701, 30.360717324417504 ], [ -95.219913992403733, 30.360772324777034 ], [ -95.220027992228509, 30.360826324759763 ], [ -95.220042992491244, 30.360828324715726 ], [ -95.220111992146443, 30.360839324937245 ], [ -95.220211992485588, 30.360854325062565 ], [ -95.220414992805715, 30.360969324583579 ], [ -95.220521992956364, 30.361200324883132 ], [ -95.220579992437436, 30.361272325145023 ], [ -95.220610992302881, 30.361343324805425 ], [ -95.220661992965105, 30.361514324459076 ], [ -95.220725992299094, 30.361607325253267 ], [ -95.220769992290869, 30.361635325046134 ], [ -95.220889992356305, 30.361662324470494 ], [ -95.220997992841944, 30.361651325186781 ], [ -95.221213992931354, 30.361560324770799 ], [ -95.221232992965625, 30.361552325086279 ], [ -95.2214039926928, 30.361392324981104 ], [ -95.22152399320025, 30.361348325059843 ], [ -95.2215999932735, 30.361359324860409 ], [ -95.22165699243574, 30.361431324572028 ], [ -95.221739993015674, 30.361607325152875 ], [ -95.221802993059967, 30.361772325030568 ], [ -95.221701992458648, 30.361893324714149 ], [ -95.221725992406192, 30.361949325088542 ], [ -95.221752992556446, 30.362014324432543 ], [ -95.221784993283663, 30.362047324980875 ], [ -95.221898993155492, 30.362079324846565 ], [ -95.221980993405012, 30.362063324604676 ], [ -95.22210799273094, 30.362052325262489 ], [ -95.222318992632808, 30.362046324820334 ], [ -95.222525993360037, 30.362052324444889 ], [ -95.222686992676643, 30.362073325008115 ], [ -95.222811993584386, 30.362101324689124 ], [ -95.222880992741977, 30.362134324578598 ], [ -95.222925992856617, 30.362178324999846 ], [ -95.222976993313708, 30.362239325127327 ], [ -95.223102993274082, 30.362447325368034 ], [ -95.223138993755256, 30.362483324720699 ], [ -95.223217993304289, 30.362519324711549 ], [ -95.223267993653167, 30.362530325299382 ], [ -95.223388993330687, 30.36251332471744 ], [ -95.223772993024113, 30.36224832508119 ], [ -95.223787993011527, 30.362238324971198 ], [ -95.223869993813025, 30.362216324688557 ], [ -95.22390899348062, 30.362222324826636 ], [ -95.223946993077192, 30.362233324766777 ], [ -95.22397799311311, 30.362260324903048 ], [ -95.223996993028976, 30.362299325192563 ], [ -95.22402199398222, 30.362395324840595 ], [ -95.224060993606258, 30.362546324974769 ], [ -95.224104993603149, 30.362601324601449 ], [ -95.224199993928508, 30.362656324817198 ], [ -95.224275993793285, 30.362684325242633 ], [ -95.224352993255337, 30.362700325110023 ], [ -95.224434994054107, 30.362700324701517 ], [ -95.224580993757044, 30.362667325135586 ], [ -95.224656993609599, 30.362667325310369 ], [ -95.224827993906047, 30.362689325331097 ], [ -95.224935994241889, 30.362738324616068 ], [ -95.225245993986306, 30.362940325284466 ], [ -95.225290994043206, 30.3629693253305 ], [ -95.225334994305612, 30.362986324819968 ], [ -95.225417994177221, 30.362985324735945 ], [ -95.225645994373835, 30.36296332530986 ], [ -95.225873994283901, 30.362914324539133 ], [ -95.225884994414074, 30.362912324789392 ], [ -95.225943993853733, 30.362903325124456 ], [ -95.225994994427381, 30.362908324897539 ], [ -95.226038993878944, 30.362930324877169 ], [ -95.2260829938689, 30.362980324874282 ], [ -95.226127993895958, 30.36306832457009 ], [ -95.226197993678198, 30.363332325323519 ], [ -95.226229994035506, 30.363403325329354 ], [ -95.226311994179298, 30.363475325059298 ], [ -95.226393994006145, 30.363507325100372 ], [ -95.226717994338173, 30.36360632476265 ], [ -95.22686999391604, 30.363667325170169 ], [ -95.226996994100574, 30.363733325053225 ], [ -95.227078994426677, 30.363815324867851 ], [ -95.227078994844305, 30.363854325425372 ], [ -95.227053994576778, 30.363931325447158 ], [ -95.226749994148534, 30.36436532496074 ], [ -95.226470993826183, 30.364475325576382 ], [ -95.226502994313918, 30.364612325129453 ], [ -95.226603994680005, 30.364777325413982 ], [ -95.226629994020911, 30.364942325703296 ], [ -95.226724994064028, 30.365074325061098 ], [ -95.226756994387841, 30.365179325546759 ], [ -95.226825994776803, 30.365212325115362 ], [ -95.226914993911379, 30.365201325325273 ], [ -95.226895994395164, 30.365091325181453 ], [ -95.22689599464357, 30.364992325727957 ], [ -95.226913994414659, 30.364987325136138 ], [ -95.227041994226553, 30.364953325461698 ], [ -95.227085994053184, 30.365030325057258 ], [ -95.227085994055628, 30.365146325756601 ], [ -95.227161994562479, 30.365261325209556 ], [ -95.227162993986298, 30.36571232562336 ], [ -95.227117994127909, 30.365827325123799 ], [ -95.227086994050353, 30.365882325790089 ], [ -95.227092994847595, 30.365976325434151 ], [ -95.227149994582859, 30.366157325184002 ], [ -95.227092994028368, 30.366399325727969 ], [ -95.226953994158947, 30.366652325272032 ], [ -95.227143994466516, 30.366768325412465 ], [ -95.227327994487425, 30.366652325833908 ], [ -95.227460994842701, 30.366723325842884 ], [ -95.227346994780248, 30.366844325777397 ], [ -95.227264994339663, 30.366883325841464 ], [ -95.227289994739436, 30.367026325662245 ], [ -95.227416994904999, 30.367103325449936 ], [ -95.227404994328836, 30.367118325777643 ], [ -95.227283994143576, 30.367213325597433 ], [ -95.227308994154328, 30.367510325553067 ], [ -95.227537994738327, 30.367630325990206 ], [ -95.227835994579607, 30.367652325823549 ], [ -95.228023994680683, 30.367638325437895 ], [ -95.228057994605493, 30.367636325482689 ], [ -95.22813399434574, 30.367729325808881 ], [ -95.228100994443466, 30.36783032598683 ], [ -95.228076994686361, 30.367905326142917 ], [ -95.22812799491625, 30.368026325524486 ], [ -95.228139994478781, 30.368043325810319 ], [ -95.228158994598189, 30.368164326112549 ], [ -95.228273994654245, 30.368329325567323 ], [ -95.228399994582574, 30.368405326151624 ], [ -95.228431994741129, 30.368664326037205 ], [ -95.228412995127101, 30.368944326253395 ], [ -95.228463995441658, 30.369109325685201 ], [ -95.22853999456774, 30.369296325959326 ], [ -95.228673995178724, 30.36943332584428 ], [ -95.228806995321449, 30.369560325925345 ], [ -95.228888995444635, 30.369692326072091 ], [ -95.229053995401259, 30.369725326266707 ], [ -95.229351995355216, 30.369747326160589 ], [ -95.229499994838008, 30.369772326259735 ], [ -95.229522995088473, 30.369785326425571 ], [ -95.22956099578488, 30.369950326387269 ], [ -95.229630995069613, 30.370065325857414 ], [ -95.229865995584674, 30.370247325962357 ], [ -95.230081995161257, 30.370549326073469 ], [ -95.230345995569451, 30.370877326657254 ], [ -95.230373995238224, 30.370912326651183 ], [ -95.230506995958322, 30.371005326114375 ], [ -95.23060199555016, 30.371033326768128 ], [ -95.230759995447187, 30.371044326629974 ], [ -95.230817995406568, 30.371077325949443 ], [ -95.230855995385539, 30.371126326008604 ], [ -95.230899995885849, 30.371280326581427 ], [ -95.23094699590095, 30.37137932636351 ], [ -95.23096999566377, 30.371428326720302 ], [ -95.231007995514872, 30.37148332649755 ], [ -95.231089996270498, 30.371527326533261 ], [ -95.231565996244171, 30.371632326460887 ], [ -95.2317749962166, 30.371736326524815 ], [ -95.231958995896917, 30.371840326110814 ], [ -95.232142996282946, 30.371928326951849 ], [ -95.232269995642909, 30.371967326731994 ], [ -95.232662996129164, 30.371989326741392 ], [ -95.232960996112411, 30.371988326518739 ], [ -95.233188996220818, 30.37202132627268 ], [ -95.233290996000079, 30.372049326501678 ], [ -95.233366996524509, 30.372109326537821 ], [ -95.233449996531121, 30.372291327001243 ], [ -95.233468996691315, 30.372406326344716 ], [ -95.233449996160871, 30.372472326422812 ], [ -95.233404996890286, 30.372549326298738 ], [ -95.233392996370966, 30.372736326871021 ], [ -95.23341799596632, 30.372934326364042 ], [ -95.233417996548269, 30.372989326980981 ], [ -95.233417996625974, 30.373165326549376 ], [ -95.233373996232316, 30.373335326360163 ], [ -95.233177996200666, 30.373627326773207 ], [ -95.233221996846126, 30.373720326833954 ], [ -95.23360899608717, 30.373731327216117 ], [ -95.233659996150635, 30.3737693271223 ], [ -95.233697997042881, 30.374116327334033 ], [ -95.233729996567888, 30.374154327124838 ], [ -95.233824997072105, 30.374209327039893 ], [ -95.233883996956664, 30.374252327183139 ], [ -95.233938996994922, 30.374292326702193 ], [ -95.234001996540385, 30.3743633273047 ], [ -95.233995996413057, 30.374462327315687 ], [ -95.233939996373508, 30.375004326676244 ], [ -95.233973996311249, 30.375171327527951 ], [ -95.234016996901246, 30.37538432703073 ], [ -95.23420099708683, 30.375540327396966 ], [ -95.234307996322158, 30.375631327549335 ], [ -95.234415996661156, 30.375785326880063 ], [ -95.234625997004144, 30.376203327425248 ], [ -95.234721996740049, 30.376477327624372 ], [ -95.234745997319607, 30.376544327283032 ], [ -95.234822997159526, 30.37690632749581 ], [ -95.235069996642309, 30.377302327708239 ], [ -95.235063996730588, 30.377522327178319 ], [ -95.235102996921128, 30.377611327690367 ], [ -95.235106997224136, 30.377621327968654 ], [ -95.235552997412171, 30.378633327324781 ], [ -95.235742996904591, 30.378918327483333 ], [ -95.235894997578839, 30.37907832771948 ], [ -95.236078997688622, 30.379215327585285 ], [ -95.236637997341973, 30.379528328291169 ], [ -95.236802998140362, 30.37958932800391 ], [ -95.237150998240324, 30.379594327737117 ], [ -95.237613997618936, 30.379748327880382 ], [ -95.23776999757294, 30.379777327492899 ], [ -95.23869899774968, 30.379951328230238 ], [ -95.238894998049588, 30.379962327588807 ], [ -95.239097998778476, 30.379940327495696 ], [ -95.239598998653832, 30.379824328200765 ], [ -95.239883998601584, 30.379824327606734 ], [ -95.241006998769166, 30.380153328205076 ], [ -95.241570998509133, 30.380230327578825 ], [ -95.242287998852547, 30.380489327803115 ], [ -95.242376999554253, 30.380521328334694 ], [ -95.243322999652179, 30.381190327754592 ], [ -95.243378998988533, 30.381230328362562 ], [ -95.243499999844573, 30.381285327813057 ], [ -95.24384099919304, 30.381368328161713 ], [ -95.244019999899137, 30.381411327824853 ], [ -95.244412999833784, 30.381559328194655 ], [ -95.244430999582036, 30.38156932817472 ], [ -95.245054000254598, 30.381927328489439 ], [ -95.245150999602387, 30.381969328275531 ], [ -95.245286000283485, 30.38202832853651 ], [ -95.24554799980713, 30.38214232803843 ], [ -95.246075000090528, 30.382229327969107 ], [ -95.247001000809874, 30.382471328040182 ], [ -95.247350000923916, 30.382526328470519 ], [ -95.247772000534852, 30.382543327768321 ], [ -95.248536001114246, 30.382575327862604 ], [ -95.249106001384106, 30.382497327662787 ], [ -95.249232000837665, 30.382505327695124 ], [ -95.249563001298455, 30.382525327840305 ], [ -95.249664001381561, 30.38257432784599 ], [ -95.249842000734802, 30.382805327992184 ], [ -95.24994000088509, 30.383052327883878 ], [ -95.250113001585632, 30.383491328437248 ], [ -95.250252001208182, 30.383650327977886 ], [ -95.250379000904559, 30.38367232786203 ], [ -95.2505570009331, 30.383606328515842 ], [ -95.250825001752801, 30.383439328117589 ], [ -95.250944001776361, 30.383365328073463 ], [ -95.251079001365369, 30.383356328298259 ], [ -95.25152100191923, 30.383326328058402 ], [ -95.251548001261469, 30.383310328486647 ], [ -95.251851001388545, 30.383156328197238 ], [ -95.252612002352862, 30.382920328468018 ], [ -95.252847001611428, 30.38289832777572 ], [ -95.253075001646707, 30.382981328364274 ], [ -95.253195001513518, 30.383025327686749 ], [ -95.253278002231696, 30.383030327800618 ], [ -95.25344300172587, 30.382992327636117 ], [ -95.25383000209095, 30.382805328197904 ], [ -95.254096001854265, 30.38278332830259 ], [ -95.254242001890205, 30.382800328275458 ], [ -95.254616002021436, 30.382926328388361 ], [ -95.255174002860372, 30.382976327684826 ], [ -95.256264003287527, 30.383389328323222 ], [ -95.256524002481072, 30.383422327576287 ], [ -95.256816002912259, 30.383389328067292 ], [ -95.256930002532059, 30.383406327547146 ], [ -95.257063002770821, 30.383475328301166 ], [ -95.257361002975102, 30.383631327692548 ], [ -95.257564003367179, 30.383708328189904 ], [ -95.257885002808436, 30.383720328409581 ], [ -95.258027002855002, 30.383725328437823 ], [ -95.258503003102348, 30.383813327761441 ], [ -95.258959003705755, 30.383863328384408 ], [ -95.25911800366454, 30.383868327782242 ], [ -95.259238003810225, 30.383824327868069 ], [ -95.259384003872924, 30.383724328114614 ], [ -95.259574003799344, 30.38359432824193 ], [ -95.259657003298102, 30.383583327889554 ], [ -95.260056003322035, 30.383660328049476 ], [ -95.260209004007805, 30.383665327643627 ], [ -95.260399004079616, 30.383523328152449 ], [ -95.260716003710428, 30.383451327794383 ], [ -95.260893004351843, 30.383494327778575 ], [ -95.261147004299758, 30.383556328033563 ], [ -95.261648003963884, 30.383589328084124 ], [ -95.262174003860338, 30.383787327608154 ], [ -95.262561004828541, 30.384007327771094 ], [ -95.262954004906092, 30.384018327821899 ], [ -95.263106004359415, 30.384079327763708 ], [ -95.263258004224923, 30.384238327879018 ], [ -95.263345004787638, 30.384264327718611 ], [ -95.263620004881702, 30.384348328185048 ], [ -95.26375900493754, 30.384343327985214 ], [ -95.264076004616513, 30.384398327581639 ], [ -95.264273005282789, 30.384558327713673 ], [ -95.264425004671025, 30.384566327976451 ], [ -95.264571005087248, 30.384574327947579 ], [ -95.264666005073437, 30.384684328410795 ], [ -95.264767005225167, 30.384859328234814 ], [ -95.26481800497595, 30.384948328333746 ], [ -95.26492000539622, 30.385042328391553 ], [ -95.265037005529734, 30.385080328013807 ], [ -95.265103005498915, 30.385102328230968 ], [ -95.265236004829532, 30.385355328056573 ], [ -95.265407005520331, 30.385564328364964 ], [ -95.265496005256239, 30.385575327864345 ], [ -95.265788005035589, 30.385504328023913 ], [ -95.265921005454359, 30.385509327651484 ], [ -95.266403005408279, 30.385773328097784 ], [ -95.267291005839837, 30.385961328299011 ], [ -95.267379006298782, 30.386005327788695 ], [ -95.267665005452244, 30.386258328062784 ], [ -95.26779800612222, 30.386340327972583 ], [ -95.267832005700342, 30.386344328352585 ], [ -95.268077006182068, 30.386373327790498 ], [ -95.268495005995348, 30.386373327902099 ], [ -95.268635005707083, 30.386439328369342 ], [ -95.268640005668956, 30.386455327770257 ], [ -95.268749006229285, 30.386802328658042 ], [ -95.268958005835074, 30.387044328568951 ], [ -95.269116005938031, 30.387649328533154 ], [ -95.269211006701056, 30.38784732871239 ], [ -95.269471006911033, 30.38816632823611 ], [ -95.269934007062702, 30.388408328629446 ], [ -95.270181006959646, 30.388721328336388 ], [ -95.270606006875909, 30.388870328217369 ], [ -95.270879006359507, 30.389024328839781 ], [ -95.271094007297762, 30.389404328770439 ], [ -95.271183006491071, 30.389486328487646 ], [ -95.271223006478465, 30.389496328395062 ], [ -95.271329006746996, 30.389524329142766 ], [ -95.27146200750272, 30.389558328733269 ], [ -95.271843007359863, 30.389519328860249 ], [ -95.272039006797542, 30.389552328665559 ], [ -95.272705007319516, 30.389904328979465 ], [ -95.273091007013363, 30.390047328803472 ], [ -95.27347200781368, 30.390190328329517 ], [ -95.273967007295653, 30.390498329083382 ], [ -95.274359008315045, 30.390618328922461 ], [ -95.274582008324884, 30.390686328802705 ], [ -95.274792008002777, 30.390788329113057 ], [ -95.274943008230949, 30.390862329102696 ], [ -95.275628008017989, 30.391434328903056 ], [ -95.27604600806869, 30.391895329374346 ], [ -95.276433008503773, 30.392478328867963 ], [ -95.276477008812591, 30.39274232956863 ], [ -95.27652200807006, 30.392819329220977 ], [ -95.276954008476991, 30.393426329582031 ], [ -95.277035008998539, 30.393540329743391 ], [ -95.277168008362622, 30.393655329372432 ], [ -95.27737800875687, 30.393752329202268 ], [ -95.277396009137647, 30.393760329225994 ], [ -95.277688008984313, 30.393831329221271 ], [ -95.278018008898371, 30.393853328893201 ], [ -95.278250009319095, 30.393864329614296 ], [ -95.278563008709099, 30.393991328933115 ], [ -95.279096008770651, 30.394035328957976 ], [ -95.279204009001631, 30.39406832940837 ], [ -95.279952009159643, 30.394535329562942 ], [ -95.280688009664416, 30.394942329254423 ], [ -95.280833009860785, 30.394997329387575 ], [ -95.281391009655778, 30.395069329177929 ], [ -95.281937009652083, 30.395234329369725 ], [ -95.282357010112676, 30.395280329691289 ], [ -95.282455010358078, 30.395291329323122 ], [ -95.282495009861051, 30.395295329737163 ], [ -95.282851010000513, 30.395275329180791 ], [ -95.283180009912243, 30.395256329855993 ], [ -95.283234010131267, 30.395262329521969 ], [ -95.283751010491756, 30.395317329519898 ], [ -95.284043010307656, 30.395302328978463 ], [ -95.28469601054131, 30.395268329234771 ], [ -95.285298010548928, 30.395328328946931 ], [ -95.285685011395515, 30.39528432980017 ], [ -95.286066010851428, 30.395312329393864 ], [ -95.286769010832231, 30.395263329334714 ], [ -95.28754301134785, 30.395303329611945 ], [ -95.287613011093498, 30.395307329466213 ], [ -95.288241012032898, 30.395461328993836 ], [ -95.288412011778206, 30.39547232896399 ], [ -95.288507011465171, 30.395516329731695 ], [ -95.288957011583733, 30.395879329456104 ], [ -95.289116011600541, 30.395967329077997 ], [ -95.290067012096799, 30.396357329398359 ], [ -95.290549012167119, 30.396797329569047 ], [ -95.290822012342346, 30.396935329505563 ], [ -95.291006012257242, 30.397078329358123 ], [ -95.291278012611912, 30.397353329731629 ], [ -95.29286401282782, 30.397969329911877 ], [ -95.293092012705614, 30.398073329424069 ], [ -95.293308012530105, 30.398298329992858 ], [ -95.293331012811237, 30.398316330097167 ], [ -95.293379013190417, 30.398353330136889 ], [ -95.293536013254595, 30.398474329334448 ], [ -95.29356101265158, 30.398483329886187 ], [ -95.293971012793762, 30.398628329676615 ], [ -95.294050013077921, 30.398656329966641 ], [ -95.294474013527505, 30.399013329506765 ], [ -95.294554013348332, 30.399052330033982 ], [ -95.294873013759343, 30.399209329405004 ], [ -95.295191013691635, 30.399365329446976 ], [ -95.295692013577508, 30.399508330075026 ], [ -95.295952014018937, 30.399805330227611 ], [ -95.296024013525951, 30.399850329911072 ], [ -95.29604101358548, 30.399860329526824 ], [ -95.296051013447482, 30.399878329477648 ], [ -95.296256013648645, 30.400240330166529 ], [ -95.296472014419635, 30.400476329803691 ], [ -95.296770014151065, 30.4006683301007 ], [ -95.297233013968878, 30.40087233026911 ], [ -95.297531014618315, 30.401092330476562 ], [ -95.297772013857823, 30.401174329818357 ], [ -95.29808301392822, 30.40120733031781 ], [ -95.298279014474971, 30.401317329864696 ], [ -95.298413014612294, 30.401455330339463 ], [ -95.298552014447239, 30.401680330050681 ], [ -95.298717014631393, 30.401807329770634 ], [ -95.299009014731851, 30.401900330402761 ], [ -95.299434014968142, 30.401889330092736 ], [ -95.299567014628465, 30.401988329873749 ], [ -95.299668015016664, 30.402208330228699 ], [ -95.299802014801173, 30.402378330529398 ], [ -95.299985014710145, 30.4024293304876 ], [ -95.300026014466297, 30.402440329979015 ], [ -95.300182014590277, 30.402483330472617 ], [ -95.300423015017458, 30.402439330193463 ], [ -95.30071501540678, 30.40231833040599 ], [ -95.300893014824268, 30.402357329995791 ], [ -95.301057014868732, 30.402439330432454 ], [ -95.301463015416786, 30.402335329919154 ], [ -95.301964015398113, 30.402351329864402 ], [ -95.302491015957116, 30.402445330365115 ], [ -95.303201015608792, 30.402362329729883 ], [ -95.303315016025223, 30.402373330117872 ], [ -95.303677015421826, 30.402703330485025 ], [ -95.303999015506307, 30.40291433058399 ], [ -95.304297016169457, 30.403110330328897 ], [ -95.304330016240556, 30.403132330505301 ], [ -95.304552015974551, 30.403390330076213 ], [ -95.304841016321063, 30.403676330796507 ], [ -95.305154016091691, 30.403985330500092 ], [ -95.305275015999584, 30.404105330695693 ], [ -95.305625016796029, 30.404324330420298 ], [ -95.306119016676149, 30.404633330707018 ], [ -95.30689201668001, 30.405062330403616 ], [ -95.307247016424427, 30.405315330948778 ], [ -95.307336017252737, 30.405342330770772 ], [ -95.307749017448089, 30.405370330776947 ], [ -95.307996016946376, 30.40545833059873 ], [ -95.308154016985526, 30.405551330213196 ], [ -95.308402017058711, 30.405755330885317 ], [ -95.308613017006195, 30.406075330484374 ], [ -95.308669016981824, 30.406160330674684 ], [ -95.308713017415499, 30.406227330477776 ], [ -95.308820017537272, 30.406425330784081 ], [ -95.308998017001855, 30.406612330806031 ], [ -95.309074017787708, 30.406777330633442 ], [ -95.309049017692189, 30.406970330545825 ], [ -95.308820017753575, 30.407222330623856 ], [ -95.308801017410147, 30.407288330931006 ], [ -95.308839017551577, 30.40744833090757 ], [ -95.309277017959616, 30.407838331216329 ], [ -95.309421017173321, 30.40813533126229 ], [ -95.309467017578811, 30.408229331051906 ], [ -95.309677017240944, 30.408514330738921 ], [ -95.309695018228339, 30.408555330983134 ], [ -95.309844017318497, 30.40889133157247 ], [ -95.309867017486653, 30.408943331439868 ], [ -95.30996701829504, 30.409014330944004 ], [ -95.310108017919404, 30.409114331573281 ], [ -95.310273017986148, 30.409306331760519 ], [ -95.310888018313918, 30.409894331590603 ], [ -95.310939017637182, 30.410103331350857 ], [ -95.310850018018414, 30.410395331195847 ], [ -95.310895018400601, 30.410499331989922 ], [ -95.311098018487598, 30.410598331468307 ], [ -95.311465018170779, 30.410670331336696 ], [ -95.311586018789754, 30.410840332033324 ], [ -95.311766018310308, 30.4108343314644 ], [ -95.311909018527217, 30.410829331502814 ], [ -95.31194701871199, 30.410902331513384 ], [ -95.311960018382891, 30.410928331161831 ], [ -95.311871018548857, 30.411054331784509 ], [ -95.311859018914163, 30.411197331880885 ], [ -95.31197301796476, 30.411241331928061 ], [ -95.312031017951995, 30.411248331558323 ], [ -95.312385018510327, 30.411291331241106 ], [ -95.312550018336864, 30.411351331318407 ], [ -95.312715018373083, 30.411450331752324 ], [ -95.312994018544359, 30.411720332028647 ], [ -95.313069018778506, 30.411997331577385 ], [ -95.313089018625575, 30.41207133184669 ], [ -95.313165018342815, 30.412214332150036 ], [ -95.313235019103004, 30.412275331919499 ], [ -95.313292018967886, 30.412297332249892 ], [ -95.313375019314307, 30.412286331928662 ], [ -95.313514018989281, 30.412231332211064 ], [ -95.313628018496246, 30.412187331419759 ], [ -95.313806019244382, 30.412170332071597 ], [ -95.313965018732361, 30.412231331426661 ], [ -95.314110019528357, 30.412374331450803 ], [ -95.314113019111389, 30.412387332069159 ], [ -95.314161019571216, 30.412616331447797 ], [ -95.314180019426814, 30.412989331918745 ], [ -95.314268019146425, 30.413337331727483 ], [ -95.314275019058343, 30.413363332310347 ], [ -95.3142640190691, 30.41338733216157 ], [ -95.314206019569866, 30.413512332069459 ], [ -95.314111018768784, 30.413594332362681 ], [ -95.314092018924214, 30.413649332235867 ], [ -95.314123019325834, 30.413996332221732 ], [ -95.314212018769751, 30.414155331895259 ], [ -95.314379018695689, 30.414369332113726 ], [ -95.314479019377814, 30.414496332388627 ], [ -95.315291019349928, 30.415782332150407 ], [ -95.315513019676345, 30.416255332855648 ], [ -95.31579201956329, 30.416563332978306 ], [ -95.31582701967416, 30.416625332642692 ], [ -95.315832019571502, 30.416634332192118 ], [ -95.316312019491548, 30.417498333168389 ], [ -95.316375019360876, 30.417690333013727 ], [ -95.31638501946469, 30.417767332628042 ], [ -95.316401020269254, 30.417888332742567 ], [ -95.316420019573613, 30.417970333107732 ], [ -95.31645001962643, 30.418013332943527 ], [ -95.316623020109901, 30.418262332717916 ], [ -95.316756019648253, 30.4186243325851 ], [ -95.316965019871361, 30.419400333298249 ], [ -95.317067019648988, 30.419570333387842 ], [ -95.317168020079976, 30.419697333144605 ], [ -95.31738402038097, 30.419873333019925 ], [ -95.317568020703476, 30.42013633341303 ], [ -95.317739020001838, 30.420316333023983 ], [ -95.317809020872076, 30.42038933346242 ], [ -95.31836802061791, 30.420681333490897 ], [ -95.318710021153251, 30.42099433333324 ], [ -95.318790020977033, 30.421096333781794 ], [ -95.318831020214319, 30.421148333644823 ], [ -95.318875020285546, 30.421252333368329 ], [ -95.319042020606659, 30.42177833342738 ], [ -95.319047020807446, 30.421794333136777 ], [ -95.319065020485453, 30.421852333830305 ], [ -95.319440021364414, 30.422148333619688 ], [ -95.320004021366458, 30.42284733396216 ], [ -95.320087020855809, 30.422924333517315 ], [ -95.320158021164943, 30.42296033410824 ], [ -95.320271021077531, 30.423017334163685 ], [ -95.320613020786254, 30.423418333487977 ], [ -95.321051021355032, 30.423990334179866 ], [ -95.321127021360326, 30.42405033401441 ], [ -95.321426021168449, 30.424182334054276 ], [ -95.321477022006547, 30.424227333752476 ], [ -95.321494021938307, 30.424242333938391 ], [ -95.321535021816743, 30.424398333742673 ], [ -95.321629021874728, 30.424765334410392 ], [ -95.321717021340902, 30.424957333682421 ], [ -95.321927022064145, 30.425166333929322 ], [ -95.322231021751406, 30.425342334508947 ], [ -95.322447021294693, 30.425397334005957 ], [ -95.32255102233556, 30.425397334421287 ], [ -95.322764021908938, 30.425397334058207 ], [ -95.322847021460547, 30.425414334263511 ], [ -95.322929021761226, 30.425474334091628 ], [ -95.323012021548024, 30.425579334594392 ], [ -95.323278021691095, 30.426095334649059 ], [ -95.323576022286616, 30.42637033391145 ], [ -95.323634021704407, 30.42645833460638 ], [ -95.323754022735855, 30.42687633417928 ], [ -95.323927022443144, 30.427080334715203 ], [ -95.324109021981769, 30.427294334755583 ], [ -95.324268022840783, 30.427442334657417 ], [ -95.324547021927501, 30.427822334967697 ], [ -95.324814022940259, 30.428080334511243 ], [ -95.325061022659341, 30.428393335091933 ], [ -95.325264022306399, 30.428525334240966 ], [ -95.325294022366094, 30.428571335043397 ], [ -95.32556202324848, 30.428970334800372 ], [ -95.325778023018543, 30.429465334887244 ], [ -95.326058022495019, 30.429811334648853 ], [ -95.326082023017051, 30.429836335291952 ], [ -95.326103022574543, 30.429857334890368 ], [ -95.326273022779844, 30.429736334733803 ], [ -95.326477023172927, 30.424414333810187 ], [ -95.326559022677202, 30.422994333316179 ], [ -95.32665502241791, 30.421346333085154 ], [ -95.326872022591061, 30.417603332774302 ], [ -95.326894022941914, 30.41719733277322 ], [ -95.327028022918526, 30.414768331689956 ], [ -95.32703502284545, 30.414633331431094 ], [ -95.327334022462708, 30.409176330644311 ], [ -95.327578022280008, 30.404757330236329 ], [ -95.327742021657173, 30.401849329600399 ], [ -95.327862022329711, 30.399654328729255 ], [ -95.328136022195721, 30.394873327394809 ], [ -95.328197022072956, 30.393744327464663 ], [ -95.328309021849236, 30.39178532685284 ], [ -95.32875102192402, 30.3831383255967 ], [ -95.328935020974129, 30.379193324242099 ], [ -95.329006020776632, 30.377669324023518 ], [ -95.329225020618381, 30.374018323290233 ], [ -95.329361020908948, 30.371761322831087 ], [ -95.3294840211462, 30.371300322732086 ], [ -95.329702021468151, 30.370871322709252 ], [ -95.329758021052584, 30.370800322804509 ], [ -95.330002021533474, 30.370433323052634 ], [ -95.330681021756291, 30.369572322817159 ], [ -95.331430021774366, 30.36866332258791 ], [ -95.331998021984575, 30.367944322382918 ], [ -95.332520021155375, 30.367217321607232 ], [ -95.333028021523191, 30.366317321530936 ], [ -95.333424021792453, 30.365547321297043 ], [ -95.334001021420022, 30.36442732115427 ], [ -95.335003022191458, 30.362483321397605 ], [ -95.33512302190195, 30.362318321156369 ], [ -95.335194021968377, 30.362221321276699 ], [ -95.335470021710137, 30.361854321035754 ], [ -95.335965021836742, 30.361318320810465 ], [ -95.337200022190274, 30.360201320271582 ], [ -95.337450022309866, 30.359848319902344 ], [ -95.337626022142473, 30.359459319885882 ], [ -95.337727022412878, 30.359162319922124 ], [ -95.33780802212766, 30.358640319810682 ], [ -95.337923022868068, 30.356814319838275 ], [ -95.337866022864645, 30.356355319228275 ], [ -95.337757022785567, 30.355779319692413 ], [ -95.337488022217684, 30.35492931912222 ], [ -95.336950022170086, 30.35369331910853 ], [ -95.336779022123551, 30.353390318695997 ], [ -95.33670102227984, 30.353173318819721 ], [ -95.33663402219355, 30.352946318733309 ], [ -95.336613021611072, 30.352849318520555 ], [ -95.336598022047554, 30.352755318761766 ], [ -95.336591021470468, 30.352664318704207 ], [ -95.336587021990667, 30.35250531922847 ], [ -95.33660602226179, 30.352315318402027 ], [ -95.336639021523553, 30.352157318935014 ], [ -95.336686022187379, 30.35200731863916 ], [ -95.336736022130793, 30.351887318709874 ], [ -95.336778022155627, 30.3518003188045 ], [ -95.336827022187407, 30.351713318679074 ], [ -95.336920021972389, 30.351578318375243 ], [ -95.337025022298164, 30.351449318859672 ], [ -95.337142021984675, 30.351329319002517 ], [ -95.337318022154335, 30.351179318304741 ], [ -95.337705022296873, 30.350887318140245 ], [ -95.33790902175852, 30.350747318709971 ], [ -95.338119022201468, 30.350612318361353 ], [ -95.338550022097806, 30.350368317975406 ], [ -95.338885022598831, 30.35020431809513 ], [ -95.338951022788493, 30.350156318254452 ], [ -95.339069022026266, 30.350050317844445 ], [ -95.339167022320524, 30.349928318415763 ], [ -95.339209022545006, 30.349864318269237 ], [ -95.339283022183608, 30.349714318332701 ], [ -95.339342022351317, 30.349556318496447 ], [ -95.33938502264121, 30.349395318404273 ], [ -95.339419023033443, 30.349231317732599 ], [ -95.339438022362842, 30.349047317823739 ], [ -95.339439022313499, 30.348838317856867 ], [ -95.33942402249663, 30.348632318217415 ], [ -95.33941102264275, 30.348527317604233 ], [ -95.339371022893957, 30.348319317810624 ], [ -95.339314022531909, 30.34811731804237 ], [ -95.339225022171931, 30.347826317800457 ], [ -95.339106022598557, 30.347490317441761 ], [ -95.339019022027458, 30.347281318014108 ], [ -95.340010022263655, 30.346084317729296 ], [ -95.341104022560046, 30.344386317514289 ], [ -95.341366022613627, 30.344121317430119 ], [ -95.341679022532958, 30.343937316708825 ], [ -95.34226002339868, 30.343729317070153 ], [ -95.342892022841227, 30.34349931722759 ], [ -95.343945022948262, 30.343022316735688 ], [ -95.345177024033902, 30.342348316298306 ], [ -95.345953024156643, 30.341805316114019 ], [ -95.346510024525301, 30.341394315939965 ], [ -95.347378024267542, 30.340884315909939 ], [ -95.351255025249699, 30.339118315572627 ], [ -95.353208025095228, 30.338231314979705 ], [ -95.353821025733296, 30.337846315298513 ], [ -95.35649102600982, 30.335420314904329 ], [ -95.358718027007455, 30.333496314073678 ], [ -95.358966026535839, 30.333281313769543 ], [ -95.359751026642684, 30.332736313875355 ], [ -95.360432027329239, 30.332367313710829 ], [ -95.360501026742867, 30.332258313793169 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1216, "Tract": "48339694106", "Area_SqMi": 8.8605318031677722, "total_2009": 155, "total_2010": 135, "total_2011": 429, "total_2012": 242, "total_2013": 229, "total_2014": 372, "total_2015": 310, "total_2016": 282, "total_2017": 285, "total_2018": 223, "total_2019": 228, "total_2020": 407, "age1": 61, "age2": 236, "age3": 94, "earn1": 23, "earn2": 69, "earn3": 299, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 50, "naics_s05": 228, "naics_s06": 0, "naics_s07": 17, "naics_s08": 68, "naics_s09": 4, "naics_s10": 4, "naics_s11": 0, "naics_s12": 12, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 344, "race2": 28, "race3": 4, "race4": 8, "race5": 0, "race6": 7, "ethnicity1": 278, "ethnicity2": 113, "edu1": 80, "edu2": 108, "edu3": 90, "edu4": 52, "Shape_Length": 85565.79250655901, "Shape_Area": 247016461.7205756, "total_2021": 464, "total_2022": 391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.496568069009243, 30.469513336697151 ], [ -95.496597068266468, 30.468502336287216 ], [ -95.496498068547467, 30.467529336861915 ], [ -95.496462068819142, 30.467213336278238 ], [ -95.496379068276696, 30.466466335905004 ], [ -95.496232068640026, 30.465043335543264 ], [ -95.49609206771504, 30.463205335883444 ], [ -95.496061067864787, 30.461243334993561 ], [ -95.496017067675709, 30.459529334658583 ], [ -95.495985068133947, 30.458642335065857 ], [ -95.495955067870995, 30.457836334290558 ], [ -95.495949067417811, 30.457674334383828 ], [ -95.495949067774418, 30.457663334227032 ], [ -95.495942067539701, 30.457472334321967 ], [ -95.495894067813197, 30.456153334335955 ], [ -95.495899067280703, 30.45577433439022 ], [ -95.495643067580318, 30.455737334178853 ], [ -95.494946067281447, 30.455612333992921 ], [ -95.494909067524389, 30.455605334203096 ], [ -95.494778067630364, 30.455582334459415 ], [ -95.493387067326495, 30.455302334263582 ], [ -95.492983066436608, 30.455195334100775 ], [ -95.492829066542257, 30.45567233439137 ], [ -95.492698067329556, 30.455960334680174 ], [ -95.492406066551467, 30.456545334272782 ], [ -95.49138206686942, 30.456457334060634 ], [ -95.490907066094408, 30.457053334814066 ], [ -95.490564066647124, 30.457076334367517 ], [ -95.490352066475921, 30.457214334439612 ], [ -95.490273066829971, 30.457443334361102 ], [ -95.490221066795456, 30.457947334355168 ], [ -95.489349065783315, 30.458337334731564 ], [ -95.489165066620785, 30.45870433449123 ], [ -95.48871506599076, 30.459025335383963 ], [ -95.488637066344822, 30.459460335232475 ], [ -95.48847806590345, 30.459621335383769 ], [ -95.488240065748272, 30.45964433505733 ], [ -95.488134066225129, 30.45948433473627 ], [ -95.488134065387143, 30.458911334537014 ], [ -95.488371065649375, 30.458590334993954 ], [ -95.488767066129512, 30.458338335052773 ], [ -95.488979065853158, 30.458063335053669 ], [ -95.489690066456774, 30.456527334530126 ], [ -95.489822065792751, 30.456390334539826 ], [ -95.489928066003145, 30.456000334207069 ], [ -95.489477066197949, 30.45540533393017 ], [ -95.488313066172168, 30.454673334550687 ], [ -95.488048065877479, 30.454399333885558 ], [ -95.487783065928085, 30.453987333706916 ], [ -95.487202065071557, 30.453896334373258 ], [ -95.486964065796556, 30.45371333429183 ], [ -95.486990064944152, 30.453438333470007 ], [ -95.486355065650613, 30.453072334199618 ], [ -95.485852065021533, 30.453210334188384 ], [ -95.485456065406481, 30.453004334145788 ], [ -95.484980064260256, 30.452844334257314 ], [ -95.484845064373658, 30.452722333994284 ], [ -95.484477064874426, 30.452387333393954 ], [ -95.483551064775142, 30.452181333470929 ], [ -95.483313064425374, 30.451998333711863 ], [ -95.483339064332142, 30.451495334093888 ], [ -95.482862064067348, 30.451014333386876 ], [ -95.482837063832406, 30.450923333649104 ], [ -95.482756064450356, 30.450625333183297 ], [ -95.482518064196256, 30.450350333078163 ], [ -95.482174063775773, 30.450190333263844 ], [ -95.481512063273641, 30.449504333190848 ], [ -95.481432063368402, 30.449298332939669 ], [ -95.481511063524849, 30.448587333551181 ], [ -95.481827064084499, 30.447969333004622 ], [ -95.48185306421459, 30.44735033254365 ], [ -95.481959063281138, 30.447098333051024 ], [ -95.482107064266131, 30.446853332852196 ], [ -95.481829063588052, 30.446788332406445 ], [ -95.480249063537173, 30.446463332561525 ], [ -95.479668063039156, 30.446327332507646 ], [ -95.479288062496636, 30.44624033266896 ], [ -95.478047062377954, 30.445996333159115 ], [ -95.477894062910352, 30.445938332812911 ], [ -95.47774306291781, 30.445881332902832 ], [ -95.47773806252512, 30.4457203329568 ], [ -95.477738062709676, 30.444493332750717 ], [ -95.478456061898981, 30.436628330391997 ], [ -95.478599062051288, 30.436092330761014 ], [ -95.478376062529151, 30.436071330301559 ], [ -95.478134062726468, 30.436049330883787 ], [ -95.47806006251183, 30.436159331075199 ], [ -95.475357061271652, 30.435428330764591 ], [ -95.472575060469609, 30.434727330940554 ], [ -95.472975060406895, 30.434273330952596 ], [ -95.473360061154466, 30.434043330595355 ], [ -95.4741360610832, 30.433585330629523 ], [ -95.472575060089184, 30.43164433028663 ], [ -95.472526060406139, 30.431579330058771 ], [ -95.472833060399864, 30.431277329772531 ], [ -95.472992060355139, 30.431121330313676 ], [ -95.472111060079598, 30.430075329907499 ], [ -95.471316059801254, 30.429108329342526 ], [ -95.471079060497843, 30.428769329409114 ], [ -95.470937060270103, 30.428515329535561 ], [ -95.470909060183132, 30.428527329240325 ], [ -95.470237060227078, 30.42882132965515 ], [ -95.470011059316263, 30.428924329612538 ], [ -95.469741059606648, 30.429047329540509 ], [ -95.469461060119329, 30.429183330001322 ], [ -95.469146059975088, 30.429319329854685 ], [ -95.468241059240825, 30.429712330001163 ], [ -95.46795005910738, 30.429850329737533 ], [ -95.467154058627926, 30.430173329975485 ], [ -95.465399058502825, 30.430910330293834 ], [ -95.465335058360964, 30.430937330439281 ], [ -95.464710058184224, 30.431201330648893 ], [ -95.464518058120703, 30.431281330170382 ], [ -95.464033058433515, 30.431483330074009 ], [ -95.463803058100424, 30.431579330507212 ], [ -95.462698058362548, 30.432059330910125 ], [ -95.462361057849293, 30.432203330270113 ], [ -95.46203305819904, 30.432343330713699 ], [ -95.459313057153381, 30.433508331208607 ], [ -95.456475056444475, 30.434742331224445 ], [ -95.455553055917321, 30.435147331332477 ], [ -95.45513505675595, 30.435326331110907 ], [ -95.45497705589537, 30.43539433132992 ], [ -95.453719056087081, 30.435919331633386 ], [ -95.452999055960547, 30.43626633211078 ], [ -95.45238505557829, 30.436526331313004 ], [ -95.452306055980742, 30.436559331818486 ], [ -95.451669054980158, 30.436830331681595 ], [ -95.450775055205739, 30.43721133166698 ], [ -95.449846055227141, 30.437627331769988 ], [ -95.447807054796741, 30.438672332752752 ], [ -95.446930054338267, 30.439121332408472 ], [ -95.446265054680936, 30.439462332608464 ], [ -95.446027054443107, 30.439584332939425 ], [ -95.444688053624517, 30.440320332725548 ], [ -95.44430805404339, 30.440527332590754 ], [ -95.442790052978566, 30.441355332694577 ], [ -95.440091052678156, 30.442802333465135 ], [ -95.43939405248102, 30.443207333311829 ], [ -95.439089052795623, 30.443419333510192 ], [ -95.438890052935974, 30.443552334080113 ], [ -95.43857505290255, 30.443761334004652 ], [ -95.438011052504478, 30.444136334138566 ], [ -95.437251051854332, 30.444628333777274 ], [ -95.436470052276292, 30.445176334240024 ], [ -95.434473051042033, 30.446579334720312 ], [ -95.433536051671595, 30.447363334520837 ], [ -95.431613051361921, 30.449012335254082 ], [ -95.430454050929981, 30.449992335242374 ], [ -95.429282050267915, 30.450983335545974 ], [ -95.428668050710371, 30.451520335959028 ], [ -95.428301050451481, 30.451826335922409 ], [ -95.427384049995126, 30.45245133615699 ], [ -95.426881049425774, 30.452781335627019 ], [ -95.425802049900369, 30.453479336371601 ], [ -95.424794049830098, 30.454071336345926 ], [ -95.423464049250569, 30.454963336087197 ], [ -95.423404049070498, 30.455001336490863 ], [ -95.424120049509838, 30.455202336759786 ], [ -95.424253049548994, 30.455454336859521 ], [ -95.424227048975766, 30.456118337134107 ], [ -95.423672048813344, 30.456576337251349 ], [ -95.423619048992165, 30.45692033644336 ], [ -95.423698049121995, 30.457011337199667 ], [ -95.424254049497478, 30.457034337091365 ], [ -95.424492049679273, 30.457103336929901 ], [ -95.42446604911558, 30.457721337266932 ], [ -95.424360049492194, 30.458385337037949 ], [ -95.424572050045057, 30.458591337298348 ], [ -95.425365049766896, 30.458706337133513 ], [ -95.425577050102632, 30.458889336921956 ], [ -95.425604049850676, 30.459209337666078 ], [ -95.425313050069263, 30.459851337015103 ], [ -95.42531305012055, 30.460080337509037 ], [ -95.42563105036372, 30.460309337466864 ], [ -95.42634504961471, 30.460354337058277 ], [ -95.426504050064082, 30.460515337839055 ], [ -95.426583050141076, 30.46090433770755 ], [ -95.426954049926067, 30.461224337606904 ], [ -95.426927050755324, 30.461797337997183 ], [ -95.426505050740147, 30.462003338208984 ], [ -95.426188049970804, 30.462370337463373 ], [ -95.425923049985116, 30.462874337567907 ], [ -95.425976050469785, 30.463126338519945 ], [ -95.426109049818791, 30.463195338191625 ], [ -95.426902050403172, 30.463309337818117 ], [ -95.427193050674163, 30.463790338251645 ], [ -95.427431050080159, 30.463767338221963 ], [ -95.427801050972832, 30.463583338387089 ], [ -95.429282051191052, 30.463720338197223 ], [ -95.429547050751367, 30.46390333789147 ], [ -95.429547050804928, 30.464567338454248 ], [ -95.429442050999029, 30.464796337990869 ], [ -95.429495051081915, 30.46498033813927 ], [ -95.429733050772455, 30.465071338418944 ], [ -95.43023505103379, 30.465071338082755 ], [ -95.430420051828307, 30.465231338220271 ], [ -95.430367051731352, 30.465437338795411 ], [ -95.430103051665554, 30.465735338194143 ], [ -95.430103050866606, 30.466079338301402 ], [ -95.430262050937714, 30.466285338489314 ], [ -95.430236051175086, 30.466583338434639 ], [ -95.429998051704473, 30.466880338639214 ], [ -95.430025051804932, 30.467384338728824 ], [ -95.430528051068293, 30.467796338569716 ], [ -95.430581051614311, 30.468415338669335 ], [ -95.431401051483164, 30.469193339064574 ], [ -95.431402052259543, 30.469743339173448 ], [ -95.430715051642991, 30.470476339443387 ], [ -95.430636051539253, 30.470682339717087 ], [ -95.430874051267097, 30.471003339730988 ], [ -95.431059051517408, 30.471071339238101 ], [ -95.431482051919318, 30.471003339467682 ], [ -95.431746051875493, 30.470636339355618 ], [ -95.431984051826433, 30.470659339044289 ], [ -95.432487052167048, 30.470910339175411 ], [ -95.43254005242018, 30.471002339322041 ], [ -95.433677052244292, 30.471024339519698 ], [ -95.433942052245342, 30.471276339431004 ], [ -95.434180052266697, 30.471642339551728 ], [ -95.434709053196173, 30.471940339920433 ], [ -95.434736052396943, 30.472306339355161 ], [ -95.435397052690519, 30.472306339606163 ], [ -95.435661052917283, 30.472443340005089 ], [ -95.436058052699678, 30.472328339833037 ], [ -95.436746053606498, 30.472351339289965 ], [ -95.436878053501019, 30.472259339180944 ], [ -95.43711505309868, 30.471274339608311 ], [ -95.437326053540104, 30.47118233894421 ], [ -95.437511053923458, 30.471297339117921 ], [ -95.437644053473548, 30.471480339489997 ], [ -95.438358053983549, 30.471594339182754 ], [ -95.438755053993447, 30.471502339692773 ], [ -95.439045053552022, 30.471204339055834 ], [ -95.439495054163075, 30.47115833951797 ], [ -95.439971054141338, 30.471341339456686 ], [ -95.440156054497535, 30.472028339757269 ], [ -95.440632054030416, 30.471913339701782 ], [ -95.440844053939131, 30.471547339247614 ], [ -95.441055054601406, 30.471478339516722 ], [ -95.441822054855933, 30.472027338957432 ], [ -95.441981055127798, 30.472073339403003 ], [ -95.442854054537975, 30.471843339208309 ], [ -95.443461054602849, 30.471362338705426 ], [ -95.444017055228002, 30.47163633911191 ], [ -95.445021055459208, 30.471452338813794 ], [ -95.445498055652905, 30.471544339336393 ], [ -95.445815055472053, 30.471773338647917 ], [ -95.446001055469324, 30.472253338807025 ], [ -95.44634505616223, 30.472505339574294 ], [ -95.447006056233008, 30.472596339354599 ], [ -95.447350055849938, 30.472871339495743 ], [ -95.447430055710811, 30.473306339374847 ], [ -95.447588056367422, 30.473581339574018 ], [ -95.448197056222028, 30.473443339657116 ], [ -95.448461056870286, 30.473603339074369 ], [ -95.448911056436586, 30.473466339232086 ], [ -95.44909605687846, 30.473511339398367 ], [ -95.449546056571094, 30.474129339880157 ], [ -95.449784056617489, 30.474702339750024 ], [ -95.450023056406096, 30.475045339244481 ], [ -95.450870057162902, 30.475892339555752 ], [ -95.451346057766159, 30.47664834007298 ], [ -95.451664057265219, 30.476877339751365 ], [ -95.452431058085651, 30.476853339510583 ], [ -95.453278058035878, 30.477517340143226 ], [ -95.453542057606668, 30.477333339964733 ], [ -95.453674057844296, 30.476921339602942 ], [ -95.454282057712717, 30.476943339846592 ], [ -95.455234057968369, 30.476576339287412 ], [ -95.455472058156744, 30.476416339416094 ], [ -95.455788058470588, 30.475866339552805 ], [ -95.455841058237894, 30.475408339586007 ], [ -95.456158058499426, 30.474972339151957 ], [ -95.456157058372483, 30.474170338856965 ], [ -95.456236058668154, 30.474010339310222 ], [ -95.456278058677484, 30.473974339128311 ], [ -95.456340058660473, 30.474094339354249 ], [ -95.456976058243256, 30.475293339039528 ], [ -95.457207058310715, 30.475827339463724 ], [ -95.457233059266187, 30.476243339417394 ], [ -95.457166058296664, 30.476676339478015 ], [ -95.456902059090709, 30.477299340018412 ], [ -95.456643058917678, 30.477795340273559 ], [ -95.45659805861294, 30.477888339921183 ], [ -95.457589059381334, 30.478132339643526 ], [ -95.458144058748942, 30.478109339504979 ], [ -95.458857059593328, 30.477909339564562 ], [ -95.458964059145487, 30.477879340053573 ], [ -95.459598059413608, 30.477901339486365 ], [ -95.463937060521872, 30.475660339483515 ], [ -95.466942060966559, 30.476385339365653 ], [ -95.473448062555292, 30.47712633942815 ], [ -95.477332063063557, 30.467217337167586 ], [ -95.477517063682726, 30.466657337125991 ], [ -95.477747063379226, 30.46576633654827 ], [ -95.4777650632616, 30.465587336515693 ], [ -95.478171064005522, 30.465668336883102 ], [ -95.478909063537031, 30.465770337047722 ], [ -95.479252063807465, 30.465828336297118 ], [ -95.47955406416996, 30.465913336879094 ], [ -95.479853063997083, 30.466014336440093 ], [ -95.480044064048755, 30.466129336631528 ], [ -95.480254064511243, 30.466308336996835 ], [ -95.481177064205838, 30.467091336474358 ], [ -95.482700065249716, 30.468369337003676 ], [ -95.483505065421298, 30.469031337409923 ], [ -95.483618065609733, 30.469111337418731 ], [ -95.484086065257586, 30.469453337454372 ], [ -95.484514065215635, 30.469739337468287 ], [ -95.484817065819499, 30.469852337557899 ], [ -95.485074066151157, 30.469891336944976 ], [ -95.485392065809719, 30.4698613375059 ], [ -95.485634066226652, 30.469796337378625 ], [ -95.485914065801737, 30.469734337577208 ], [ -95.486128065795612, 30.469732337025661 ], [ -95.486354066405596, 30.469771337275901 ], [ -95.486551065839038, 30.469842337155249 ], [ -95.486715066019045, 30.46994833693558 ], [ -95.486933065645488, 30.470171337139973 ], [ -95.487404066409013, 30.470851337849535 ], [ -95.487446065918334, 30.470908337425982 ], [ -95.487697066881779, 30.471250337506696 ], [ -95.487786066350679, 30.471370337477179 ], [ -95.487965066852027, 30.471628337935048 ], [ -95.488083066672488, 30.471854337768594 ], [ -95.488342066294322, 30.47230333757339 ], [ -95.488547066827707, 30.472688337829471 ], [ -95.488680066622621, 30.472890337450615 ], [ -95.488827067235718, 30.473072337835912 ], [ -95.489324066786921, 30.473572337775718 ], [ -95.489468067316849, 30.473702337778228 ], [ -95.490042067118537, 30.474220337556748 ], [ -95.490963067328053, 30.474971338023551 ], [ -95.491168067329255, 30.475058338496162 ], [ -95.49156906772339, 30.475206337829032 ], [ -95.491915067385463, 30.475282338146531 ], [ -95.49197106731441, 30.475294337914551 ], [ -95.492103067539475, 30.475324338240213 ], [ -95.492184067579473, 30.475342337862369 ], [ -95.492208067746702, 30.475347338131407 ], [ -95.492220067704778, 30.475350338182626 ], [ -95.492243067468763, 30.475356338460127 ], [ -95.492254067558321, 30.475358337948364 ], [ -95.49296206837154, 30.475515338478154 ], [ -95.495335068373151, 30.476041338045558 ], [ -95.495075068375385, 30.476645338123536 ], [ -95.494945068920444, 30.47704333854039 ], [ -95.494861068155004, 30.477368338319074 ], [ -95.494825068072274, 30.477508338733966 ], [ -95.494755068732459, 30.477932338832993 ], [ -95.495046068983285, 30.477973338344519 ], [ -95.495355068790474, 30.478003338862273 ], [ -95.495598069194429, 30.478045338773281 ], [ -95.495652068500831, 30.477654338242598 ], [ -95.495680069006141, 30.477450338656773 ], [ -95.495904068390459, 30.476112337831903 ], [ -95.496001068433998, 30.475539337640491 ], [ -95.49630606906544, 30.473533337341145 ], [ -95.496349068922854, 30.473248337745403 ], [ -95.496505068818465, 30.472125336938198 ], [ -95.496538068830432, 30.471259336954251 ], [ -95.496568069009243, 30.469513336697151 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1217, "Tract": "48339692501", "Area_SqMi": 13.950691028903449, "total_2009": 839, "total_2010": 657, "total_2011": 598, "total_2012": 2148, "total_2013": 2238, "total_2014": 2202, "total_2015": 2375, "total_2016": 2486, "total_2017": 2631, "total_2018": 2656, "total_2019": 2800, "total_2020": 2742, "age1": 592, "age2": 2163, "age3": 776, "earn1": 324, "earn2": 1074, "earn3": 2133, "naics_s01": 5, "naics_s02": 4, "naics_s03": 0, "naics_s04": 209, "naics_s05": 63, "naics_s06": 27, "naics_s07": 139, "naics_s08": 2, "naics_s09": 2, "naics_s10": 35, "naics_s11": 38, "naics_s12": 12, "naics_s13": 0, "naics_s14": 8, "naics_s15": 2879, "naics_s16": 39, "naics_s17": 0, "naics_s18": 43, "naics_s19": 26, "naics_s20": 0, "race1": 3149, "race2": 223, "race3": 28, "race4": 65, "race5": 8, "race6": 58, "ethnicity1": 2478, "ethnicity2": 1053, "edu1": 513, "edu2": 736, "edu3": 877, "edu4": 813, "Shape_Length": 93373.444480051476, "Shape_Area": 388921389.03950346, "total_2021": 3299, "total_2022": 3531 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.230708984058751, 30.123355276241611 ], [ -95.230537984344863, 30.123293276409917 ], [ -95.230454984266558, 30.123262275623141 ], [ -95.230393983894388, 30.123240275590035 ], [ -95.230207983777206, 30.123172275957366 ], [ -95.229891983514221, 30.122898276386689 ], [ -95.229917984073197, 30.122600275740151 ], [ -95.229574983449623, 30.122302275758603 ], [ -95.229441983676395, 30.121776276154151 ], [ -95.229230983829012, 30.121409275829649 ], [ -95.22843998372835, 30.120906275254949 ], [ -95.228333983473718, 30.120700275274491 ], [ -95.227964983228205, 30.120311275957473 ], [ -95.227885983213156, 30.119990275407257 ], [ -95.227674983412626, 30.119807275492995 ], [ -95.227333983385279, 30.119754275182231 ], [ -95.22709498304674, 30.119716275520592 ], [ -95.226935983077212, 30.119395275455727 ], [ -95.226698983192975, 30.119166275776539 ], [ -95.226065982223417, 30.118869275491448 ], [ -95.225538982687553, 30.118732275029672 ], [ -95.225380982776485, 30.118503275149255 ], [ -95.224554981970314, 30.118081275427151 ], [ -95.224483982418334, 30.118045275107843 ], [ -95.224050982462941, 30.117992275538629 ], [ -95.223930982217794, 30.117977275257733 ], [ -95.2234299817042, 30.117611275288446 ], [ -95.223033982048264, 30.117542274979876 ], [ -95.222928981843538, 30.117382275402608 ], [ -95.222242981294031, 30.116970275451049 ], [ -95.221846981213432, 30.116490274979313 ], [ -95.221741981422753, 30.116261274562792 ], [ -95.221135981245666, 30.116284275314893 ], [ -95.220449980719181, 30.116032275040322 ], [ -95.220396980590579, 30.115849275288681 ], [ -95.220818981086794, 30.115803274540568 ], [ -95.221108981176428, 30.115642275020491 ], [ -95.22116098134029, 30.115459274646625 ], [ -95.220896980721093, 30.115299274764833 ], [ -95.220685981008174, 30.115024274891166 ], [ -95.220579980615028, 30.114976274318945 ], [ -95.2201329806648, 30.11477327464516 ], [ -95.220157980909448, 30.11406327414505 ], [ -95.219129980294369, 30.113743274756537 ], [ -95.218918981091662, 30.11349127441003 ], [ -95.218918980879906, 30.113353274590462 ], [ -95.218707980049984, 30.113078274720849 ], [ -95.218338980715686, 30.112964274597857 ], [ -95.217810980574001, 30.112483274160383 ], [ -95.217757980552221, 30.112254273862987 ], [ -95.217415979712214, 30.112094274079404 ], [ -95.217309980067171, 30.111957273742096 ], [ -95.217388979741756, 30.111774273937602 ], [ -95.217414979761145, 30.111430274359286 ], [ -95.217545980446502, 30.111201274094885 ], [ -95.217492979765751, 30.110766273595797 ], [ -95.217624980436653, 30.110513274193568 ], [ -95.217518980212631, 30.11042227389181 ], [ -95.217044980339978, 30.110376273939771 ], [ -95.217070979467096, 30.109895274202714 ], [ -95.216938979408638, 30.109781273937966 ], [ -95.216938979427937, 30.10934627379244 ], [ -95.216863979368327, 30.109244274051054 ], [ -95.216700979867923, 30.109025273936851 ], [ -95.216726979960441, 30.108223273694275 ], [ -95.216488979562499, 30.107971273307669 ], [ -95.216014979487539, 30.107765273674595 ], [ -95.215750979473043, 30.107445273061519 ], [ -95.215170978945551, 30.107079273513822 ], [ -95.215091979656606, 30.106919273588748 ], [ -95.214564979511934, 30.106759273300153 ], [ -95.214669979275016, 30.106392273279873 ], [ -95.214221979460405, 30.10630127345955 ], [ -95.213904978479491, 30.106163273409326 ], [ -95.213904979333279, 30.105797273422329 ], [ -95.213640979387293, 30.105637273035782 ], [ -95.213166979002679, 30.105774272695704 ], [ -95.212718978875017, 30.105637272984531 ], [ -95.212665978769621, 30.105523272753668 ], [ -95.21216497886499, 30.10515727314273 ], [ -95.212138978306115, 30.104790273190222 ], [ -95.211821978583899, 30.104584273193566 ], [ -95.211742977870983, 30.104172272638284 ], [ -95.211320978122572, 30.104012272864814 ], [ -95.211109977653905, 30.103783272715408 ], [ -95.210872977593127, 30.10408127288407 ], [ -95.210082978345696, 30.103990273125767 ], [ -95.20963497811529, 30.104173273134087 ], [ -95.209449977992662, 30.103944273029455 ], [ -95.209107977645431, 30.103807273148117 ], [ -95.208975977389684, 30.103624272988704 ], [ -95.208579977484177, 30.103418272411755 ], [ -95.208447977612934, 30.103235272579074 ], [ -95.208289977083311, 30.103212273105573 ], [ -95.208079977860294, 30.103418273140282 ], [ -95.207420977016469, 30.103465272656781 ], [ -95.207341977329435, 30.103533273185764 ], [ -95.206867976983006, 30.10362527310706 ], [ -95.206762977111353, 30.103831272636874 ], [ -95.206577977144335, 30.103923272851752 ], [ -95.206129977134552, 30.103924273097022 ], [ -95.205444977188989, 30.104153273235301 ], [ -95.204575976984671, 30.104131272974701 ], [ -95.204443976707438, 30.103970272745574 ], [ -95.204206976426704, 30.103764273090658 ], [ -95.204048975891311, 30.103742273234072 ], [ -95.203099976634846, 30.1039482726489 ], [ -95.202862976049218, 30.103811272814301 ], [ -95.202414975845031, 30.103880272794733 ], [ -95.202256975727749, 30.103789273065644 ], [ -95.201518976072933, 30.103881272858324 ], [ -95.201334975897865, 30.103995273560507 ], [ -95.200781975536458, 30.103996273567837 ], [ -95.200307975873898, 30.104179272861526 ], [ -95.200070975418399, 30.104409273392665 ], [ -95.199753975609028, 30.104409273645576 ], [ -95.199543975188035, 30.104592273247579 ], [ -95.198963974830718, 30.104524273026037 ], [ -95.198858974892104, 30.104570272871733 ], [ -95.198832975524425, 30.104799273357923 ], [ -95.198621975145912, 30.104891273372164 ], [ -95.198278975234842, 30.104822273834134 ], [ -95.198226974810311, 30.105349273259929 ], [ -95.198121974743415, 30.105532273495179 ], [ -95.197620974678387, 30.105601273765856 ], [ -95.197489975142503, 30.105513273155324 ], [ -95.197383975034285, 30.105441273140404 ], [ -95.197172974473432, 30.105441273824944 ], [ -95.197014974350878, 30.10557927324993 ], [ -95.196672974010767, 30.105693274026535 ], [ -95.196540974485842, 30.105854273809083 ], [ -95.196224974440184, 30.105946274115837 ], [ -95.195723974121989, 30.105992273531786 ], [ -95.195328974128103, 30.105901273690613 ], [ -95.19485497382658, 30.106199274036037 ], [ -95.194854974348175, 30.106542273951455 ], [ -95.195276974627475, 30.106908273947941 ], [ -95.195276974198094, 30.107023273920362 ], [ -95.194091973831704, 30.107597273745043 ], [ -95.193169973599936, 30.107528274136115 ], [ -95.192800973526673, 30.107643274514025 ], [ -95.192615974082045, 30.107574274497075 ], [ -95.192105973621224, 30.107547273892575 ], [ -95.191772973556482, 30.107529273900639 ], [ -95.191561973065191, 30.107369274545277 ], [ -95.19137797330896, 30.107346274415018 ], [ -95.190955973638594, 30.10748427432873 ], [ -95.190086972980026, 30.107392274357164 ], [ -95.189822972480954, 30.107278274622669 ], [ -95.189769972854421, 30.106980273892354 ], [ -95.189506973082459, 30.106797274111287 ], [ -95.188846972885983, 30.105927273688078 ], [ -95.188504972453302, 30.105836273741247 ], [ -95.188161972733084, 30.105194274193888 ], [ -95.187713971717727, 30.105126273887379 ], [ -95.187423971906298, 30.10496527422136 ], [ -95.187317972537002, 30.104759273959747 ], [ -95.186816972131112, 30.104714273550545 ], [ -95.18638297212479, 30.10425827355208 ], [ -95.186315971840699, 30.104187274072089 ], [ -95.186052972176157, 30.104141273861366 ], [ -95.185657971377111, 30.104302274071806 ], [ -95.185375971347284, 30.104329273547151 ], [ -95.185184971136167, 30.104351274160123 ], [ -95.184633971567223, 30.104590273417703 ], [ -95.183862971466539, 30.104307273522938 ], [ -95.183576971495725, 30.104541273725179 ], [ -95.183314971439813, 30.104638274264996 ], [ -95.182863970800724, 30.104509273464483 ], [ -95.182362971153822, 30.104541274211257 ], [ -95.182037970492772, 30.104112273444827 ], [ -95.182134971095152, 30.103628274030978 ], [ -95.182025970571473, 30.103469273969825 ], [ -95.182019970592805, 30.103170273969219 ], [ -95.182172971047876, 30.102870273791151 ], [ -95.182115971049669, 30.102640273397139 ], [ -95.181928970630892, 30.102460273232055 ], [ -95.181837970407813, 30.101889273240676 ], [ -95.181465970929978, 30.101734273343425 ], [ -95.181033969992399, 30.101215272978585 ], [ -95.180942970246193, 30.100573273491772 ], [ -95.18056196971925, 30.099915272607674 ], [ -95.180533970564895, 30.099457273102782 ], [ -95.177477969605846, 30.101932273925041 ], [ -95.175145969202816, 30.103820273899828 ], [ -95.173130968819677, 30.105452274773988 ], [ -95.17310296855517, 30.105475274295387 ], [ -95.17292096793642, 30.105619274176608 ], [ -95.172881968442482, 30.105654274007502 ], [ -95.172859968459491, 30.105673274200775 ], [ -95.172721967989105, 30.10581727425939 ], [ -95.17266996823497, 30.105862274090192 ], [ -95.166569967283237, 30.110737275921871 ], [ -95.165215966805093, 30.111821276065665 ], [ -95.154684964847434, 30.120279278073642 ], [ -95.135686959920591, 30.135539281944215 ], [ -95.13564596004943, 30.135570282024585 ], [ -95.134619959996371, 30.136339282292401 ], [ -95.134587959754043, 30.136362281813707 ], [ -95.134191960057706, 30.13664028198545 ], [ -95.133030960157399, 30.137573282048724 ], [ -95.131725959270227, 30.138545282138271 ], [ -95.131577959004758, 30.138646282615568 ], [ -95.130956959382061, 30.139348283037133 ], [ -95.130692959450926, 30.139646282744138 ], [ -95.130654959616834, 30.139686282721172 ], [ -95.130511959151107, 30.139839282616684 ], [ -95.130184958695395, 30.140057283087156 ], [ -95.129872959120618, 30.140279283317543 ], [ -95.129112958845198, 30.140811283333655 ], [ -95.129037959292134, 30.140863283355813 ], [ -95.128962958948847, 30.140916283406114 ], [ -95.128325958676157, 30.14136228361097 ], [ -95.128269958132037, 30.141409283541858 ], [ -95.127016958194488, 30.142437283391221 ], [ -95.1260739578818, 30.143235283968338 ], [ -95.126042957856129, 30.143262283605956 ], [ -95.125733958090422, 30.143551283976183 ], [ -95.125140958166526, 30.144044283779024 ], [ -95.124476957875444, 30.144510283695531 ], [ -95.124312957326254, 30.144622283964129 ], [ -95.124012957179957, 30.145021284461738 ], [ -95.123608957254604, 30.145360283911355 ], [ -95.124091958106561, 30.145323284004188 ], [ -95.124764958288466, 30.145267283772434 ], [ -95.124971958382403, 30.14525028381972 ], [ -95.125861957988789, 30.14517628420073 ], [ -95.126074958335153, 30.145166284512786 ], [ -95.126284958630933, 30.145164284566263 ], [ -95.126734958311843, 30.14518028370869 ], [ -95.12705095864662, 30.145200284103538 ], [ -95.127462958595544, 30.145250283733876 ], [ -95.127653958671345, 30.145287284240673 ], [ -95.127863958191639, 30.14532828386838 ], [ -95.128059959188221, 30.14537528422812 ], [ -95.128286958995801, 30.145439284479778 ], [ -95.129059958613155, 30.145676284375952 ], [ -95.13018795906639, 30.146013284431927 ], [ -95.130391959786849, 30.146074284339889 ], [ -95.130606958971228, 30.146138283757121 ], [ -95.130895959091376, 30.146229284493824 ], [ -95.131109959077463, 30.14628528432344 ], [ -95.131305960129851, 30.146326283823594 ], [ -95.131492959438845, 30.146359284299368 ], [ -95.13167195992412, 30.14638628411987 ], [ -95.132117959694483, 30.146449284176313 ], [ -95.132972960489823, 30.146570284426122 ], [ -95.133575960581766, 30.146669283928489 ], [ -95.134465960308958, 30.146797283784579 ], [ -95.135328961066094, 30.146926283749252 ], [ -95.135998960615495, 30.14703928392186 ], [ -95.136126960903439, 30.147061284465174 ], [ -95.137450961503646, 30.147292283771435 ], [ -95.138711961230953, 30.147513283852803 ], [ -95.138987961831077, 30.147565283874503 ], [ -95.140069962271014, 30.147767284502812 ], [ -95.1403209622286, 30.147801284004018 ], [ -95.140512962416622, 30.147818283909345 ], [ -95.140557961928693, 30.147822284609017 ], [ -95.140846962563032, 30.14783628404037 ], [ -95.141125961715915, 30.147838283750218 ], [ -95.141664962195406, 30.147832284459557 ], [ -95.141853962144566, 30.147826283789374 ], [ -95.144388963002854, 30.147745284103522 ], [ -95.145586963631573, 30.147707284406803 ], [ -95.14593596371742, 30.147706283996023 ], [ -95.146403963209266, 30.147714284282461 ], [ -95.154774965369555, 30.148057284079481 ], [ -95.154895965755287, 30.148062283561963 ], [ -95.154921966217586, 30.148064284082142 ], [ -95.155201965460435, 30.148084283728213 ], [ -95.155538965785126, 30.148121284038083 ], [ -95.155874966185394, 30.14817228403647 ], [ -95.156171965659098, 30.148228283871621 ], [ -95.156825965966533, 30.148398283709295 ], [ -95.157464966194951, 30.14857328366487 ], [ -95.157637966403342, 30.148616283390524 ], [ -95.157751966018367, 30.148644283440195 ], [ -95.157985966764258, 30.148689284081623 ], [ -95.158101966517151, 30.148708283369444 ], [ -95.158243966738098, 30.148732283570038 ], [ -95.158494967211965, 30.148767283310789 ], [ -95.158956967165125, 30.148822283402172 ], [ -95.159176967385775, 30.148833283826431 ], [ -95.159585967359376, 30.148818283771998 ], [ -95.159845967549529, 30.148797283425985 ], [ -95.16161396769327, 30.148636284044404 ], [ -95.16305796788933, 30.148507283615501 ], [ -95.164990968411047, 30.148336283688511 ], [ -95.166220968692357, 30.148259282963181 ], [ -95.16653696834662, 30.148218283719302 ], [ -95.167073968589079, 30.148165283545474 ], [ -95.167516968697342, 30.148086283689992 ], [ -95.167746968800145, 30.14804128350363 ], [ -95.168365969640874, 30.147885282989691 ], [ -95.168857969623829, 30.147750282844161 ], [ -95.169755969959468, 30.147515282704262 ], [ -95.170295969857307, 30.147387282636664 ], [ -95.171406969983224, 30.147110283086516 ], [ -95.171455970448477, 30.147100283327688 ], [ -95.171913969692369, 30.14700428319302 ], [ -95.172214969893957, 30.146957283021987 ], [ -95.17247597047367, 30.1469242833046 ], [ -95.172719970718489, 30.146903283205742 ], [ -95.173208970575246, 30.146870282828544 ], [ -95.173609970084243, 30.146868282791825 ], [ -95.175141971224122, 30.146898282575759 ], [ -95.177403971614879, 30.146926283014086 ], [ -95.177980971255863, 30.146934282436412 ], [ -95.178509971381914, 30.146938282914039 ], [ -95.178833971588759, 30.14694728298495 ], [ -95.179048972074625, 30.146959282332553 ], [ -95.179199972073718, 30.146963282535538 ], [ -95.1795359718122, 30.146981283039867 ], [ -95.179720971986328, 30.147003282963073 ], [ -95.180079972122272, 30.147038282194153 ], [ -95.180344972282086, 30.147076282356245 ], [ -95.180881972840851, 30.147168282460306 ], [ -95.183862973171316, 30.147730282804396 ], [ -95.184558973244435, 30.147861282863378 ], [ -95.18471097375955, 30.147890282670993 ], [ -95.184828973360993, 30.147912282353051 ], [ -95.185056973193284, 30.14795328267903 ], [ -95.187139974554853, 30.148333282829245 ], [ -95.187330973948107, 30.148363283022839 ], [ -95.187656974402117, 30.148406282926345 ], [ -95.187830974520182, 30.148424282659015 ], [ -95.187989974439347, 30.148429283084059 ], [ -95.188155973988032, 30.148428282665154 ], [ -95.189019974996341, 30.148378282657085 ], [ -95.189304974651279, 30.148353282776636 ], [ -95.18968197426284, 30.148347282923744 ], [ -95.189867974295666, 30.148353282392037 ], [ -95.190052975152966, 30.148369282900067 ], [ -95.190346974911776, 30.148399282407055 ], [ -95.19063997499056, 30.148446282147574 ], [ -95.191127975600878, 30.148573282732571 ], [ -95.192174975265175, 30.14895328251907 ], [ -95.195119976155382, 30.150020282409852 ], [ -95.195496976247114, 30.150135282609693 ], [ -95.195806976784695, 30.15021328264303 ], [ -95.196110976728875, 30.150274282589194 ], [ -95.196710976130007, 30.150357282576902 ], [ -95.199412977594264, 30.15031028252946 ], [ -95.200125977940317, 30.150298282463194 ], [ -95.200657978108524, 30.150289282822527 ], [ -95.202903978083029, 30.150243282633479 ], [ -95.204607978942931, 30.15021228214626 ], [ -95.208278979268542, 30.150147282516926 ], [ -95.210693979992783, 30.150103282163894 ], [ -95.21100497982485, 30.150098282265677 ], [ -95.212043980656247, 30.150079282538513 ], [ -95.212672980501594, 30.150067282299283 ], [ -95.212878980906268, 30.150078282515814 ], [ -95.212920981143185, 30.150084282004709 ], [ -95.213066980531281, 30.150103282028187 ], [ -95.213260980422916, 30.150149281840932 ], [ -95.211752980758533, 30.154470282875725 ], [ -95.212883980893565, 30.154729283082869 ], [ -95.213494980698457, 30.15486928280048 ], [ -95.213807981081686, 30.154927282997644 ], [ -95.214114981638446, 30.15497628273835 ], [ -95.214263981108957, 30.155000282921069 ], [ -95.21463998182972, 30.155029283143431 ], [ -95.214926980980223, 30.155052283432035 ], [ -95.215382981561831, 30.155053283223662 ], [ -95.215558981709719, 30.154793283018321 ], [ -95.217372981642811, 30.152125282225558 ], [ -95.219425982121919, 30.149071281260373 ], [ -95.220573982932052, 30.147387281689838 ], [ -95.222716982789564, 30.144217280974708 ], [ -95.223825983390583, 30.142591280323781 ], [ -95.224478983797951, 30.141631280307074 ], [ -95.22481498303695, 30.141174280022813 ], [ -95.225151983021277, 30.140636280083985 ], [ -95.225398983030018, 30.140179279916957 ], [ -95.225630983500636, 30.139692279749426 ], [ -95.225950983917883, 30.138991279324046 ], [ -95.226317983236655, 30.138069278878742 ], [ -95.226549983735254, 30.137282278962765 ], [ -95.226934983560696, 30.136039278368916 ], [ -95.227175984015176, 30.135082278107696 ], [ -95.227841983629347, 30.132902278038372 ], [ -95.228279983440842, 30.131409277925933 ], [ -95.228575983879423, 30.130433277136891 ], [ -95.22863298340323, 30.130244277688458 ], [ -95.228654984121363, 30.130171277692746 ], [ -95.228677984206996, 30.130096277598806 ], [ -95.228898983794096, 30.129365277104444 ], [ -95.228942984436358, 30.129219276969692 ], [ -95.22896798382169, 30.129136277264266 ], [ -95.229522984147479, 30.127271276541226 ], [ -95.229872984415991, 30.126094276382442 ], [ -95.230708984058751, 30.123355276241611 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1218, "Tract": "48339692605", "Area_SqMi": 3.0335096297195276, "total_2009": 306, "total_2010": 262, "total_2011": 362, "total_2012": 321, "total_2013": 335, "total_2014": 395, "total_2015": 474, "total_2016": 480, "total_2017": 598, "total_2018": 850, "total_2019": 969, "total_2020": 1167, "age1": 932, "age2": 635, "age3": 268, "earn1": 644, "earn2": 795, "earn3": 396, "naics_s01": 0, "naics_s02": 0, "naics_s03": 26, "naics_s04": 66, "naics_s05": 110, "naics_s06": 4, "naics_s07": 681, "naics_s08": 1, "naics_s09": 3, "naics_s10": 17, "naics_s11": 9, "naics_s12": 21, "naics_s13": 0, "naics_s14": 18, "naics_s15": 2, "naics_s16": 58, "naics_s17": 7, "naics_s18": 781, "naics_s19": 31, "naics_s20": 0, "race1": 1404, "race2": 291, "race3": 13, "race4": 89, "race5": 5, "race6": 33, "ethnicity1": 1205, "ethnicity2": 630, "edu1": 215, "edu2": 280, "edu3": 247, "edu4": 161, "Shape_Length": 51312.226356398867, "Shape_Area": 84569056.572960511, "total_2021": 1381, "total_2022": 1835 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.256872991314111, 30.141465279192815 ], [ -95.256826991773906, 30.141342278460893 ], [ -95.256589991646962, 30.141090278574396 ], [ -95.25600999124535, 30.140861278539521 ], [ -95.25601099178752, 30.140494278541638 ], [ -95.255878991062644, 30.140311278370323 ], [ -95.255536990919438, 30.14024227843003 ], [ -95.255037991345844, 30.139807278693404 ], [ -95.254904991203404, 30.139691278702912 ], [ -95.254904990539472, 30.139267277991163 ], [ -95.254904991155499, 30.13916427844644 ], [ -95.254457991290991, 30.138591278224339 ], [ -95.254532991185329, 30.138197277999151 ], [ -95.254589990482671, 30.13790427779896 ], [ -95.254300991194938, 30.137515278552186 ], [ -95.254327990927351, 30.136942277819522 ], [ -95.2541959905477, 30.136781277720008 ], [ -95.25335299098505, 30.136551277576149 ], [ -95.253089990082728, 30.136391278218792 ], [ -95.252905990637061, 30.136001277797448 ], [ -95.252193989656263, 30.135611277962543 ], [ -95.252062990216203, 30.13519927769077 ], [ -95.251852990294481, 30.134901277617995 ], [ -95.251114990287661, 30.134854277951113 ], [ -95.250224989521499, 30.13426527779335 ], [ -95.249618989790761, 30.134059277414977 ], [ -95.248985988811725, 30.134197277715788 ], [ -95.248511988748376, 30.133991277215593 ], [ -95.247825989430737, 30.133969277870943 ], [ -95.247509989421701, 30.133740277137729 ], [ -95.246824988672657, 30.133718277928644 ], [ -95.246191988073519, 30.133627277218473 ], [ -95.24579698854113, 30.133742277496477 ], [ -95.24550698810431, 30.133674277365365 ], [ -95.245057988325215, 30.133445277567859 ], [ -95.24445198806967, 30.133377277348124 ], [ -95.244134988143415, 30.133011277924354 ], [ -95.243496987856986, 30.132960277944793 ], [ -95.244005988149951, 30.1320792771158 ], [ -95.244339988166473, 30.131552276852126 ], [ -95.244551988280108, 30.131243276795061 ], [ -95.244684988411663, 30.131045277268697 ], [ -95.244842987679775, 30.130707277165332 ], [ -95.245018987680169, 30.130412276694088 ], [ -95.245211987791421, 30.130060276728457 ], [ -95.245425987681031, 30.129621276820483 ], [ -95.245605988397088, 30.129156277145039 ], [ -95.24570798864211, 30.128807276205677 ], [ -95.245765988030271, 30.128589276497724 ], [ -95.24587798861721, 30.128295276437431 ], [ -95.246066988197512, 30.127884276138392 ], [ -95.246217988686823, 30.12758327624541 ], [ -95.246438988783837, 30.127240276633646 ], [ -95.247338988973596, 30.126012276223602 ], [ -95.247041988065163, 30.125800276163361 ], [ -95.24672298835516, 30.12549227623148 ], [ -95.246405988091553, 30.125235275900717 ], [ -95.245998987653365, 30.124978275407859 ], [ -95.245658988061649, 30.124813276226938 ], [ -95.245392988109757, 30.124706276222653 ], [ -95.245104987414777, 30.124621275716954 ], [ -95.244613987625925, 30.124503275987074 ], [ -95.244003987185408, 30.124469275378328 ], [ -95.243546987458146, 30.124469275903401 ], [ -95.242970987166842, 30.124518276233697 ], [ -95.242541987162554, 30.124524276101308 ], [ -95.242493987240636, 30.124525275438458 ], [ -95.242303987168782, 30.124529276136556 ], [ -95.241774987261607, 30.12441427575525 ], [ -95.241685986439492, 30.124374276210592 ], [ -95.240956986546976, 30.124128276057867 ], [ -95.240212986451496, 30.123681275824886 ], [ -95.23966598632741, 30.123383275753731 ], [ -95.239042986162531, 30.123191275358003 ], [ -95.238971985758852, 30.123181275713637 ], [ -95.238706986034842, 30.12314727607923 ], [ -95.238178986371778, 30.123132276103437 ], [ -95.237752985751143, 30.123161275610663 ], [ -95.237094986028453, 30.123317275567278 ], [ -95.236825985775042, 30.122542275615949 ], [ -95.236476985332004, 30.121924275340813 ], [ -95.235841984973092, 30.121352275623103 ], [ -95.2350459854391, 30.121075275454373 ], [ -95.233919984433754, 30.121010275095266 ], [ -95.232037984065627, 30.120592275342631 ], [ -95.231699984327946, 30.121712275317023 ], [ -95.231262983979775, 30.123375276315645 ], [ -95.231199984356209, 30.123373276183159 ], [ -95.230980984669671, 30.123365275907165 ], [ -95.230904984379407, 30.123362275865819 ], [ -95.230833983721027, 30.123360276071139 ], [ -95.230708984058751, 30.123355276241611 ], [ -95.229872984415991, 30.126094276382442 ], [ -95.229522984147479, 30.127271276541226 ], [ -95.22896798382169, 30.129136277264266 ], [ -95.228942984436358, 30.129219276969692 ], [ -95.228898983794096, 30.129365277104444 ], [ -95.228677984206996, 30.130096277598806 ], [ -95.228654984121363, 30.130171277692746 ], [ -95.22863298340323, 30.130244277688458 ], [ -95.228575983879423, 30.130433277136891 ], [ -95.228279983440842, 30.131409277925933 ], [ -95.227841983629347, 30.132902278038372 ], [ -95.227175984015176, 30.135082278107696 ], [ -95.226934983560696, 30.136039278368916 ], [ -95.226549983735254, 30.137282278962765 ], [ -95.226317983236655, 30.138069278878742 ], [ -95.225950983917883, 30.138991279324046 ], [ -95.225630983500636, 30.139692279749426 ], [ -95.225398983030018, 30.140179279916957 ], [ -95.225151983021277, 30.140636280083985 ], [ -95.22481498303695, 30.141174280022813 ], [ -95.224478983797951, 30.141631280307074 ], [ -95.223825983390583, 30.142591280323781 ], [ -95.222716982789564, 30.144217280974708 ], [ -95.220573982932052, 30.147387281689838 ], [ -95.219425982121919, 30.149071281260373 ], [ -95.217372981642811, 30.152125282225558 ], [ -95.215558981709719, 30.154793283018321 ], [ -95.215382981561831, 30.155053283223662 ], [ -95.215445981829376, 30.155053282868241 ], [ -95.215544981775793, 30.155055282617823 ], [ -95.21564198133332, 30.155057282885902 ], [ -95.215809981739781, 30.155060282928389 ], [ -95.21614098179468, 30.155067282593993 ], [ -95.216582981485132, 30.155073282866095 ], [ -95.222399983051943, 30.155155282617997 ], [ -95.222948983074318, 30.15518728318888 ], [ -95.22326298406567, 30.155226282758001 ], [ -95.223600983785104, 30.155290282510329 ], [ -95.223833983857745, 30.155353282858218 ], [ -95.22388598418425, 30.155367282907861 ], [ -95.224097984029754, 30.155431282778682 ], [ -95.224341984007793, 30.155523283086943 ], [ -95.224647983498897, 30.155655283220796 ], [ -95.224865983628078, 30.155760282953338 ], [ -95.225082983817316, 30.155882283234231 ], [ -95.225329984283192, 30.15604028308557 ], [ -95.225511984337345, 30.156172283187274 ], [ -95.225674984603089, 30.156314283085639 ], [ -95.22587198434374, 30.156493282901732 ], [ -95.226059984812892, 30.156688282695743 ], [ -95.226263984248021, 30.156922282844715 ], [ -95.226385984936144, 30.156788282776244 ], [ -95.226376984385013, 30.155189282900164 ], [ -95.226679984421253, 30.155195282560722 ], [ -95.226842984268686, 30.155191282490549 ], [ -95.226973984440235, 30.155187282835197 ], [ -95.227132984370428, 30.155166282966437 ], [ -95.227458985019581, 30.15509028301496 ], [ -95.227825985179081, 30.154938283004011 ], [ -95.228142985203291, 30.154804282908643 ], [ -95.228205984479956, 30.154790282962256 ], [ -95.228307985214499, 30.154767282892433 ], [ -95.228709984866427, 30.154707282396696 ], [ -95.228728984841439, 30.15494428271905 ], [ -95.228744985399615, 30.155250282352771 ], [ -95.22874098507954, 30.155643282279797 ], [ -95.228705985043945, 30.156286283164683 ], [ -95.228713985322528, 30.156385282962518 ], [ -95.228769985066904, 30.156478283105269 ], [ -95.22888498520301, 30.156495282816742 ], [ -95.229053985716419, 30.156505282948377 ], [ -95.229360985068439, 30.156503282496704 ], [ -95.229530985271353, 30.156485283174295 ], [ -95.229531985463581, 30.156041283082502 ], [ -95.229534984996093, 30.154463282497048 ], [ -95.229529984829043, 30.154320282086672 ], [ -95.229506985636249, 30.154188282385093 ], [ -95.229428984906207, 30.153927282423233 ], [ -95.229410984794427, 30.153814282194471 ], [ -95.229445985573761, 30.152340282440942 ], [ -95.231416985277107, 30.1523242819686 ], [ -95.233882985755471, 30.152351281707819 ], [ -95.23389898627353, 30.152261282195628 ], [ -95.233939986221472, 30.152180281753527 ], [ -95.234062986347482, 30.152145281524248 ], [ -95.236843987513993, 30.152104281472379 ], [ -95.237843987459584, 30.152096281541276 ], [ -95.237847986841473, 30.153315281601877 ], [ -95.237864987695346, 30.154523282104748 ], [ -95.247709989610939, 30.154438281359621 ], [ -95.247719989904169, 30.15321128197742 ], [ -95.247715990006682, 30.151984281409732 ], [ -95.248279990288225, 30.150743281225338 ], [ -95.247844989572627, 30.150753281004462 ], [ -95.247809989246875, 30.147420280050106 ], [ -95.248237990032891, 30.146477279850735 ], [ -95.247790989262398, 30.146479280491224 ], [ -95.246657989519321, 30.146488280253692 ], [ -95.246657989152055, 30.145286279794494 ], [ -95.246657989232631, 30.145184280305774 ], [ -95.246642989316342, 30.144392279545542 ], [ -95.246621988757411, 30.142476278947466 ], [ -95.24616498904669, 30.141625278872613 ], [ -95.247599989753013, 30.141607279194663 ], [ -95.250544989612919, 30.141587279301305 ], [ -95.25114998997168, 30.141560279359197 ], [ -95.255553991480312, 30.141501279152184 ], [ -95.256702991845074, 30.141469279075547 ], [ -95.256872991314111, 30.141465279192815 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1219, "Tract": "48339693901", "Area_SqMi": 11.607914563656934, "total_2009": 1442, "total_2010": 1618, "total_2011": 1554, "total_2012": 3673, "total_2013": 3837, "total_2014": 4187, "total_2015": 4428, "total_2016": 3701, "total_2017": 4007, "total_2018": 4504, "total_2019": 4782, "total_2020": 4318, "age1": 807, "age2": 2692, "age3": 979, "earn1": 258, "earn2": 790, "earn3": 3430, "naics_s01": 0, "naics_s02": 507, "naics_s03": 13, "naics_s04": 236, "naics_s05": 1932, "naics_s06": 881, "naics_s07": 82, "naics_s08": 308, "naics_s09": 0, "naics_s10": 25, "naics_s11": 29, "naics_s12": 111, "naics_s13": 0, "naics_s14": 123, "naics_s15": 19, "naics_s16": 17, "naics_s17": 57, "naics_s18": 41, "naics_s19": 92, "naics_s20": 5, "race1": 3680, "race2": 496, "race3": 35, "race4": 204, "race5": 6, "race6": 57, "ethnicity1": 3225, "ethnicity2": 1253, "edu1": 702, "edu2": 1051, "edu3": 1170, "edu4": 748, "Shape_Length": 111786.44835778853, "Shape_Area": 323608790.89042443, "total_2021": 4128, "total_2022": 4478 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.470833058670834, 30.397704323271554 ], [ -95.471044058504717, 30.397637323614553 ], [ -95.469347058422926, 30.394917323043398 ], [ -95.467787056988826, 30.392344322484796 ], [ -95.467138057482344, 30.391272322350218 ], [ -95.467062057548247, 30.391157322138262 ], [ -95.465198056856153, 30.388115321458422 ], [ -95.464943056315789, 30.387593321656738 ], [ -95.464690056078808, 30.386984321529951 ], [ -95.464451056199565, 30.38635932123184 ], [ -95.464244055898689, 30.385548320730837 ], [ -95.463600055864831, 30.381357319923595 ], [ -95.4625620549416, 30.374285318921658 ], [ -95.462360055279319, 30.372904318222041 ], [ -95.462273055220592, 30.37263931805607 ], [ -95.461961054993012, 30.370531318267158 ], [ -95.461508054790585, 30.367476317440069 ], [ -95.459890054265159, 30.356558315056514 ], [ -95.459365053985238, 30.353118314604835 ], [ -95.459142053347648, 30.35162131413956 ], [ -95.459051052972654, 30.350981314268882 ], [ -95.458897053093636, 30.349917313719249 ], [ -95.458835053059701, 30.349306314311903 ], [ -95.458019052635009, 30.344072312660415 ], [ -95.457893052360689, 30.343216312247293 ], [ -95.457132052443754, 30.33825431133911 ], [ -95.456754051467286, 30.335470310967128 ], [ -95.4567090519988, 30.335462310872565 ], [ -95.456472052086454, 30.335406310867583 ], [ -95.456241052018882, 30.335400310745587 ], [ -95.455890052219701, 30.335463311607459 ], [ -95.454261050850221, 30.335841311638529 ], [ -95.453313050826097, 30.336058311652803 ], [ -95.452945050926289, 30.336153311689436 ], [ -95.451585050357423, 30.336466311109078 ], [ -95.450346050337956, 30.336758311354586 ], [ -95.450014050269374, 30.336836311650135 ], [ -95.447418049971759, 30.337451312176306 ], [ -95.446415049823599, 30.337689311997458 ], [ -95.444513049144732, 30.338139312244554 ], [ -95.441636047787838, 30.338832312482179 ], [ -95.441980048001781, 30.339267312181516 ], [ -95.442112048306612, 30.339611312124354 ], [ -95.442149048415004, 30.339922312162326 ], [ -95.441886048857526, 30.33989931257145 ], [ -95.44160204843547, 30.339870312637789 ], [ -95.440918048047749, 30.339827312579544 ], [ -95.440612047564841, 30.339827312164228 ], [ -95.440223048027207, 30.339828312904885 ], [ -95.437092047642551, 30.340078313247684 ], [ -95.433484046545175, 30.340379312790891 ], [ -95.430375045586345, 30.340621312915431 ], [ -95.42975204522476, 30.34064331358476 ], [ -95.42950404521541, 30.340634313340228 ], [ -95.429225045340061, 30.340634312882443 ], [ -95.428804044868215, 30.340612312856976 ], [ -95.428523044590165, 30.340588313006222 ], [ -95.428070045370632, 30.340526313258263 ], [ -95.427972045156466, 30.340513313612973 ], [ -95.427833045026318, 30.340487313084679 ], [ -95.427718044326625, 30.340449313121685 ], [ -95.427368044318428, 30.34039931342004 ], [ -95.426220044812396, 30.34011531333282 ], [ -95.425617044658537, 30.339878312887013 ], [ -95.42474104353218, 30.33950031327306 ], [ -95.423617043414026, 30.338932312597443 ], [ -95.422883042932327, 30.338600313089515 ], [ -95.422185043226548, 30.338304312999199 ], [ -95.420236042650856, 30.337418312804413 ], [ -95.418597042581808, 30.336686312517642 ], [ -95.410211039642192, 30.33283831241566 ], [ -95.409921039343971, 30.332710311939515 ], [ -95.409621040168261, 30.332564311889183 ], [ -95.409223039786653, 30.332347312223082 ], [ -95.408838040019376, 30.332116312097732 ], [ -95.408592039045885, 30.331951312017654 ], [ -95.408350039525246, 30.331775312325423 ], [ -95.408002039067057, 30.331503311923612 ], [ -95.407780039014071, 30.331315312458099 ], [ -95.407672039491828, 30.331215312172521 ], [ -95.407296039204908, 30.330846311672662 ], [ -95.406885038596911, 30.330407311914708 ], [ -95.406779038468244, 30.330287312184836 ], [ -95.406685039244181, 30.330182311866448 ], [ -95.406297039247193, 30.32971831210963 ], [ -95.406107038626118, 30.329486311894975 ], [ -95.404412038447262, 30.327415311468485 ], [ -95.403983037623647, 30.326812311679912 ], [ -95.403373037774557, 30.325649310682934 ], [ -95.402994037259816, 30.324450310780836 ], [ -95.402863037482604, 30.32387131083502 ], [ -95.402761037075081, 30.323421310562615 ], [ -95.402322037518189, 30.323506310829799 ], [ -95.3990340363775, 30.324144310715145 ], [ -95.398812037102573, 30.324187310855731 ], [ -95.397760036729224, 30.32438531141409 ], [ -95.397608035823396, 30.324414310581698 ], [ -95.395814036000942, 30.324776311207838 ], [ -95.395127035505084, 30.324917310802963 ], [ -95.389327034003344, 30.326109311764107 ], [ -95.388354034293485, 30.326301311617588 ], [ -95.383504032326684, 30.327301311780154 ], [ -95.378888031594414, 30.328244312302441 ], [ -95.378796032072358, 30.32826331212171 ], [ -95.377622031514903, 30.328502312705464 ], [ -95.37016002980144, 30.330026313435202 ], [ -95.364393027648191, 30.331191313619456 ], [ -95.362493027975177, 30.33157531412828 ], [ -95.361557026932658, 30.331764313870416 ], [ -95.361518027347927, 30.331774313693369 ], [ -95.361540027761009, 30.332897314308426 ], [ -95.361778027122128, 30.333470313673303 ], [ -95.362121027867133, 30.333882314394277 ], [ -95.363230027485798, 30.3343173142487 ], [ -95.364207028565517, 30.334249314332975 ], [ -95.365343028121984, 30.333951314070774 ], [ -95.3662140286566, 30.333951314442778 ], [ -95.366874028480112, 30.334363313811885 ], [ -95.367719028857096, 30.33459231429164 ], [ -95.368115029315405, 30.334936314083805 ], [ -95.368512029303332, 30.335715314512584 ], [ -95.368749029860794, 30.335852314130136 ], [ -95.369832029373967, 30.335806314604046 ], [ -95.370043029773086, 30.33601231424603 ], [ -95.370070030294087, 30.336539314904478 ], [ -95.370255029516869, 30.336677314534228 ], [ -95.370704029637551, 30.336585314817718 ], [ -95.371020030222311, 30.336287314128903 ], [ -95.371364030324926, 30.33637931447451 ], [ -95.371469029715215, 30.336516314726499 ], [ -95.371469029929969, 30.337295314866775 ], [ -95.371707030183373, 30.337616315060469 ], [ -95.372394030974903, 30.337868314303993 ], [ -95.372526030177383, 30.338051314592231 ], [ -95.372579031049582, 30.338990314729749 ], [ -95.372816030248146, 30.339036314793823 ], [ -95.373688030422642, 30.338967314829205 ], [ -95.374058031266728, 30.339059315195847 ], [ -95.375111031630496, 30.338830314992016 ], [ -95.375219031607131, 30.338807314850982 ], [ -95.375827031355826, 30.338646314745862 ], [ -95.37619703199384, 30.33883031444531 ], [ -95.376566031893063, 30.339219315127664 ], [ -95.376725032016708, 30.339219315215104 ], [ -95.377121031730908, 30.338875314350872 ], [ -95.377385031757441, 30.33896731448781 ], [ -95.377464031504687, 30.339104314770466 ], [ -95.377491032129598, 30.33958531497937 ], [ -95.378019032429037, 30.339700314666771 ], [ -95.3783620317257, 30.339929315280379 ], [ -95.37933903281187, 30.340227314519616 ], [ -95.379788032431193, 30.340227314825814 ], [ -95.380026033012399, 30.340066314820138 ], [ -95.380132032517295, 30.339883314874619 ], [ -95.380554032244532, 30.339562314301588 ], [ -95.38105603285122, 30.339448314905503 ], [ -95.381346033265871, 30.339173314344489 ], [ -95.381293033095091, 30.338188314669768 ], [ -95.38150503269577, 30.33791331420327 ], [ -95.38158403315208, 30.337638314118482 ], [ -95.381689032952011, 30.33754631381019 ], [ -95.382508033329287, 30.337638314462758 ], [ -95.383063033037686, 30.337546313777334 ], [ -95.383327032952337, 30.337730314588772 ], [ -95.383327033000327, 30.338371314186595 ], [ -95.383168033669463, 30.338646314542295 ], [ -95.383248033451096, 30.338783314623235 ], [ -95.383459033830732, 30.338806314448362 ], [ -95.383855033902108, 30.338669314767422 ], [ -95.384066033722078, 30.338760314756644 ], [ -95.384172033530703, 30.339127314024246 ], [ -95.384410033186711, 30.339379314548456 ], [ -95.384938033326179, 30.339493314103827 ], [ -95.38604703443923, 30.339424314742494 ], [ -95.386681033803399, 30.339607314833394 ], [ -95.387130033968631, 30.339905314916383 ], [ -95.387817034972869, 30.340020314932975 ], [ -95.388292034705628, 30.339951314935863 ], [ -95.388477034669222, 30.340042314144629 ], [ -95.388793034905703, 30.33997031467463 ], [ -95.388979034995003, 30.339928314321856 ], [ -95.389745034691401, 30.339928314710647 ], [ -95.390193035039218, 30.339721314064601 ], [ -95.390801035179535, 30.339607314331491 ], [ -95.39119703534486, 30.339813314212851 ], [ -95.391514035417927, 30.340592314473827 ], [ -95.391963035888224, 30.340798314753563 ], [ -95.392254036206495, 30.341095314782532 ], [ -95.392729036334273, 30.341233314263903 ], [ -95.393099035651019, 30.34155331493459 ], [ -95.393125035794597, 30.341668314403332 ], [ -95.393495035650062, 30.341989314697233 ], [ -95.394367036069028, 30.342446315009855 ], [ -95.394367035991095, 30.34315731472115 ], [ -95.394833036248059, 30.343493314725951 ], [ -95.395159036129868, 30.343729314777534 ], [ -95.395133036159208, 30.343844314619894 ], [ -95.395239036491745, 30.343912315483657 ], [ -95.395133036283681, 30.344874315265656 ], [ -95.395794036947436, 30.345401315607628 ], [ -95.395926036728085, 30.345607315550332 ], [ -95.396032036728826, 30.346111315125679 ], [ -95.395794036904491, 30.346867315570677 ], [ -95.395808036670402, 30.347215315368661 ], [ -95.395847037320394, 30.348173316104589 ], [ -95.395768037443133, 30.348723315600839 ], [ -95.396059037265431, 30.349158316369866 ], [ -95.396152037584685, 30.349452316240722 ], [ -95.39627003697619, 30.349822316464515 ], [ -95.396693037327523, 30.35021131616724 ], [ -95.397380037632516, 30.350509316542436 ], [ -95.397829038099061, 30.35103531683767 ], [ -95.398041037837316, 30.351654316091892 ], [ -95.398516037915286, 30.352295316710144 ], [ -95.398622038017507, 30.352685316919946 ], [ -95.399152038508461, 30.353109316428636 ], [ -95.39930903777848, 30.353234316883626 ], [ -95.399626038540035, 30.35378431649432 ], [ -95.399996038047178, 30.354196316619532 ], [ -95.400128037850706, 30.354242316683205 ], [ -95.400999038309337, 30.354150316560535 ], [ -95.402083038732016, 30.35449331731116 ], [ -95.403033039526605, 30.354676316959523 ], [ -95.40461803924272, 30.354286316556468 ], [ -95.405648039444301, 30.354378316514964 ], [ -95.406371039688921, 30.354703317146221 ], [ -95.407022040329338, 30.354996316806368 ], [ -95.408316040796507, 30.354927316892809 ], [ -95.408554040375634, 30.354995317040935 ], [ -95.409003040947255, 30.35492631662121 ], [ -95.409742041141001, 30.354995316950315 ], [ -95.410429040610609, 30.355270316845584 ], [ -95.4107990407079, 30.355728316454723 ], [ -95.410905041569507, 30.356163316876877 ], [ -95.41077304101043, 30.357010317172758 ], [ -95.410800041133115, 30.357972317660963 ], [ -95.410906041810094, 30.358133317598018 ], [ -95.411910041239807, 30.358751317663337 ], [ -95.412676042229691, 30.359392317743385 ], [ -95.413099042150108, 30.359438317952893 ], [ -95.413416042086936, 30.35968931775578 ], [ -95.413575041893409, 30.360193317705367 ], [ -95.413892042341573, 30.360628317557453 ], [ -95.414051042085887, 30.361613318054829 ], [ -95.414183042442403, 30.361911318403561 ], [ -95.414210042129071, 30.362209318139715 ], [ -95.414673042189051, 30.362610318031972 ], [ -95.414976042169073, 30.362873318268647 ], [ -95.41534604280784, 30.363079317924143 ], [ -95.415954042402092, 30.363766318027466 ], [ -95.416007042886946, 30.364018318014864 ], [ -95.416377043047532, 30.364499318676227 ], [ -95.416652042999985, 30.364672318856837 ], [ -95.416675043370134, 30.364692318421383 ], [ -95.417117043610105, 30.36532331894141 ], [ -95.417413042967311, 30.365286318270091 ], [ -95.417487043273468, 30.365277318895359 ], [ -95.417988043132624, 30.364956318118224 ], [ -95.418386043801078, 30.364846318627549 ], [ -95.418569043735019, 30.364795318140768 ], [ -95.418807043275052, 30.364566318691363 ], [ -95.419124043852719, 30.364475318086349 ], [ -95.41967904339613, 30.364726318148413 ], [ -95.420445044571622, 30.36477231849754 ], [ -95.420577043766784, 30.365138318370704 ], [ -95.420788044034211, 30.365344318061041 ], [ -95.421185044132983, 30.365436318044502 ], [ -95.421357043974552, 30.365734318723572 ], [ -95.421396044344206, 30.365802318381331 ], [ -95.421633044192092, 30.365955318141665 ], [ -95.422215044661272, 30.366329318376621 ], [ -95.42229104482719, 30.366324318548887 ], [ -95.422585044304867, 30.366306318596294 ], [ -95.422652044617095, 30.366262318663466 ], [ -95.423113044973846, 30.365962318226558 ], [ -95.423536044449406, 30.365870318229895 ], [ -95.423721045042768, 30.365641318713298 ], [ -95.42411704548563, 30.365549318225643 ], [ -95.424667044702616, 30.36559331865579 ], [ -95.424698045664826, 30.365595318431502 ], [ -95.424962045708597, 30.365755318288535 ], [ -95.424936045063887, 30.366121318282897 ], [ -95.424755045086044, 30.366396318588038 ], [ -95.424725045554439, 30.366442318669947 ], [ -95.424823045287496, 30.367444318765362 ], [ -95.424831045009554, 30.367519318595779 ], [ -95.424330044934806, 30.368069318776509 ], [ -95.423802044590289, 30.368344318954303 ], [ -95.423802045159562, 30.36871031948958 ], [ -95.423934044755526, 30.368916319045169 ], [ -95.423908044774308, 30.369329318826274 ], [ -95.423591045181993, 30.369604319150188 ], [ -95.423538044757166, 30.369856318847557 ], [ -95.423248044649839, 30.370108319106446 ], [ -95.423010045369111, 30.370612319720212 ], [ -95.423037045520857, 30.370955319888857 ], [ -95.423724045678824, 30.371665319522148 ], [ -95.423777045338255, 30.371963319814054 ], [ -95.424006045720517, 30.372161319407777 ], [ -95.424147045517614, 30.372283319916889 ], [ -95.425046045353696, 30.372649320004484 ], [ -95.425389045708883, 30.372970319731284 ], [ -95.425627045270488, 30.37335932022086 ], [ -95.426103045464657, 30.37372631979721 ], [ -95.426394046237178, 30.373840319799861 ], [ -95.426368046083354, 30.374573320499536 ], [ -95.426606045849525, 30.37487131984307 ], [ -95.426712046307884, 30.375214319931512 ], [ -95.42676504626904, 30.375558320391004 ], [ -95.427690046517483, 30.376680320585937 ], [ -95.428641047220211, 30.37725232020594 ], [ -95.429064046712071, 30.377664320404051 ], [ -95.429514046999842, 30.378397320921131 ], [ -95.429488047279449, 30.378488320663294 ], [ -95.429805047089246, 30.378832320671751 ], [ -95.430519047832448, 30.379289320608137 ], [ -95.430756047390673, 30.379587320972789 ], [ -95.430851047005845, 30.379627321111929 ], [ -95.431629047247583, 30.379953320877249 ], [ -95.4330290483434, 30.379998321405161 ], [ -95.433505047715116, 30.380342321425413 ], [ -95.434192048147807, 30.380456320795016 ], [ -95.434377048353227, 30.380639321066155 ], [ -95.434430048439253, 30.381005321080217 ], [ -95.434192048283236, 30.381601321052784 ], [ -95.434166048612468, 30.381991321552416 ], [ -95.434510048024066, 30.382426321301562 ], [ -95.435409048987424, 30.383318321539264 ], [ -95.43596404944374, 30.383707321756482 ], [ -95.436387049376719, 30.383913321833141 ], [ -95.437655048881282, 30.383936321439663 ], [ -95.437943049964829, 30.383989321786444 ], [ -95.439267049831187, 30.384232321596738 ], [ -95.440113049806769, 30.384575321257532 ], [ -95.440509050267892, 30.384942321972002 ], [ -95.441144050500725, 30.385743321718415 ], [ -95.441726050287699, 30.386270322298582 ], [ -95.442519051162236, 30.386658322443466 ], [ -95.443179051280566, 30.386796322176124 ], [ -95.444526051574485, 30.386749321808725 ], [ -95.445372051310756, 30.387023322042022 ], [ -95.446298051856388, 30.387847322060672 ], [ -95.446700051443869, 30.388065322153491 ], [ -95.446932052033489, 30.388191322302305 ], [ -95.447615052131084, 30.388407321999047 ], [ -95.447725051976974, 30.388442321801342 ], [ -95.448465051940843, 30.388327322101304 ], [ -95.448781052585616, 30.388189322116453 ], [ -95.449125052049695, 30.388189322441754 ], [ -95.449336052643432, 30.388303321661059 ], [ -95.449706053090281, 30.388212322306458 ], [ -95.450022052568116, 30.387938321754582 ], [ -95.450207052859952, 30.387936322199849 ], [ -95.450525052981618, 30.387936322265631 ], [ -95.450842053275878, 30.387799322082234 ], [ -95.451264052671249, 30.387523321812182 ], [ -95.451846052943608, 30.38752332228119 ], [ -95.452163053404234, 30.387408322187113 ], [ -95.452691053409936, 30.387064321987204 ], [ -95.45329805314293, 30.387018321649414 ], [ -95.454038053709496, 30.387109321787534 ], [ -95.454382053976531, 30.38754432217274 ], [ -95.454646053911162, 30.38770432179852 ], [ -95.454673053436636, 30.387842321409892 ], [ -95.455043054261949, 30.388185321725629 ], [ -95.455202054247295, 30.388208322303097 ], [ -95.455651053783839, 30.388757321687304 ], [ -95.455942054269897, 30.388887322014604 ], [ -95.456365054645588, 30.389078322066286 ], [ -95.456841054850472, 30.389146322011765 ], [ -95.45694705506223, 30.389260321669244 ], [ -95.457053054339468, 30.3902453218037 ], [ -95.457185054680224, 30.390520322006282 ], [ -95.457503054980208, 30.390772321881997 ], [ -95.45763505478368, 30.391253322067321 ], [ -95.457847054891602, 30.391459321994361 ], [ -95.458878055386947, 30.391893322591038 ], [ -95.459565055791288, 30.39182432271646 ], [ -95.459882054988839, 30.391984322764795 ], [ -95.46033205539328, 30.392510322410835 ], [ -95.460886055658193, 30.392418322556093 ], [ -95.461150055825016, 30.392235322179374 ], [ -95.461308056219764, 30.391525322312937 ], [ -95.461625055343134, 30.39102132223395 ], [ -95.461889056283411, 30.390792321787565 ], [ -95.462549056447884, 30.390676321982834 ], [ -95.46294505585881, 30.390470322090408 ], [ -95.463712056154264, 30.390492322224333 ], [ -95.464161056579883, 30.390973322074515 ], [ -95.464716057078633, 30.391110322534519 ], [ -95.465060056995256, 30.391659322387561 ], [ -95.465325056505677, 30.391842321963864 ], [ -95.465959056646113, 30.392071322680206 ], [ -95.465959056563108, 30.392392322727598 ], [ -95.465880057310656, 30.392621322024286 ], [ -95.465899057390615, 30.392794322651767 ], [ -95.465907057131602, 30.392873322369233 ], [ -95.466039057052797, 30.393056322044458 ], [ -95.466674057554769, 30.393262322505937 ], [ -95.466832057122403, 30.393422322777205 ], [ -95.466792056912979, 30.393720322189775 ], [ -95.466727057681695, 30.394201322311062 ], [ -95.466754057731578, 30.394521322826751 ], [ -95.466887056904028, 30.394773322811055 ], [ -95.467891057147511, 30.395230322663352 ], [ -95.46812905802993, 30.395482323211539 ], [ -95.468396058163805, 30.395997323157495 ], [ -95.468473057343786, 30.396146322917371 ], [ -95.468580058298642, 30.396604322700547 ], [ -95.468818057618435, 30.39699332343714 ], [ -95.468977058520636, 30.397566322900119 ], [ -95.469109058201894, 30.397726323252996 ], [ -95.470404058320526, 30.397840323175124 ], [ -95.470833058670834, 30.397704323271554 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1220, "Tract": "48339694105", "Area_SqMi": 6.4150378886569204, "total_2009": 1497, "total_2010": 1389, "total_2011": 1453, "total_2012": 2542, "total_2013": 2458, "total_2014": 2563, "total_2015": 2695, "total_2016": 2602, "total_2017": 2350, "total_2018": 2633, "total_2019": 2626, "total_2020": 2597, "age1": 825, "age2": 1953, "age3": 785, "earn1": 535, "earn2": 1244, "earn3": 1784, "naics_s01": 0, "naics_s02": 2, "naics_s03": 25, "naics_s04": 120, "naics_s05": 433, "naics_s06": 224, "naics_s07": 466, "naics_s08": 18, "naics_s09": 10, "naics_s10": 36, "naics_s11": 8, "naics_s12": 44, "naics_s13": 0, "naics_s14": 75, "naics_s15": 1400, "naics_s16": 118, "naics_s17": 35, "naics_s18": 339, "naics_s19": 59, "naics_s20": 151, "race1": 3042, "race2": 367, "race3": 29, "race4": 78, "race5": 2, "race6": 45, "ethnicity1": 2674, "ethnicity2": 889, "edu1": 556, "edu2": 797, "edu3": 792, "edu4": 593, "Shape_Length": 85711.228816173592, "Shape_Area": 178840276.88867828, "total_2021": 2956, "total_2022": 3563 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.495899067280703, 30.45577433439022 ], [ -95.495908067235433, 30.455232334198332 ], [ -95.495896067760569, 30.454049333336595 ], [ -95.495835067498916, 30.452367333574351 ], [ -95.495776067608602, 30.450084332651425 ], [ -95.495702067760746, 30.447173332193334 ], [ -95.495616067537995, 30.443051331170288 ], [ -95.495485067268433, 30.438544330909483 ], [ -95.495455067074474, 30.437499330634267 ], [ -95.495443066237584, 30.436035330060896 ], [ -95.495391066277506, 30.435138329530936 ], [ -95.495371066737945, 30.434781330248285 ], [ -95.495366066148023, 30.434702329440157 ], [ -95.49527406699228, 30.43365232994212 ], [ -95.495162066273252, 30.4326643296641 ], [ -95.495108066814993, 30.432299329400479 ], [ -95.495004065856079, 30.431587328927524 ], [ -95.494825066153879, 30.430741328961346 ], [ -95.494610066154053, 30.429715328708546 ], [ -95.494075065944358, 30.42789932837038 ], [ -95.493219065849658, 30.425059328062499 ], [ -95.493100065445859, 30.424679327940684 ], [ -95.492759065184345, 30.423587327264872 ], [ -95.4922770647227, 30.42204432747014 ], [ -95.49207206524278, 30.421400327676015 ], [ -95.491966064967627, 30.421065327563728 ], [ -95.491841065078205, 30.420668326763728 ], [ -95.491300065276576, 30.41878132679135 ], [ -95.490980064146484, 30.417719326485088 ], [ -95.490957064340492, 30.417646326843837 ], [ -95.490621064135638, 30.416571326412789 ], [ -95.489995064242649, 30.414525326063103 ], [ -95.487997063512083, 30.407992324514655 ], [ -95.487897062995572, 30.407537324995424 ], [ -95.487428062757701, 30.405411324113008 ], [ -95.487413063647779, 30.405339323968445 ], [ -95.487361062821989, 30.404980324486399 ], [ -95.487224063224048, 30.404050324387349 ], [ -95.487037062738153, 30.401655323074024 ], [ -95.486969062495675, 30.39953132324807 ], [ -95.486853062901972, 30.395894322649323 ], [ -95.486783062386678, 30.393672321933813 ], [ -95.486782062344389, 30.393577322198308 ], [ -95.486699062071111, 30.391252321428599 ], [ -95.485980062002895, 30.391274321760328 ], [ -95.484578062061544, 30.391312321441099 ], [ -95.484118061350856, 30.391311321608736 ], [ -95.482441061513214, 30.391385321482538 ], [ -95.48044106086401, 30.391391321439162 ], [ -95.480362060312686, 30.391388321208254 ], [ -95.479786060212788, 30.391368321657644 ], [ -95.478821060177737, 30.39123632140446 ], [ -95.477878059908477, 30.391010321702183 ], [ -95.476568059315781, 30.390654321274464 ], [ -95.476124059907519, 30.390541321237951 ], [ -95.47616605910838, 30.390411321321352 ], [ -95.4765190595852, 30.389306321656235 ], [ -95.476646059740645, 30.388910321117624 ], [ -95.476449059641041, 30.388894321572828 ], [ -95.475857059072098, 30.38902132085143 ], [ -95.474427058989619, 30.38936432169211 ], [ -95.467995057118827, 30.39090632190133 ], [ -95.467062057548247, 30.391157322138262 ], [ -95.467138057482344, 30.391272322350218 ], [ -95.467787056988826, 30.392344322484796 ], [ -95.469347058422926, 30.394917323043398 ], [ -95.471044058504717, 30.397637323614553 ], [ -95.470833058670834, 30.397704323271554 ], [ -95.470404058320526, 30.397840323175124 ], [ -95.469109058201894, 30.397726323252996 ], [ -95.468977058520636, 30.397566322900119 ], [ -95.468818057618435, 30.39699332343714 ], [ -95.468580058298642, 30.396604322700547 ], [ -95.468473057343786, 30.396146322917371 ], [ -95.468396058163805, 30.395997323157495 ], [ -95.46812905802993, 30.395482323211539 ], [ -95.467891057147511, 30.395230322663352 ], [ -95.466887056904028, 30.394773322811055 ], [ -95.466754057731578, 30.394521322826751 ], [ -95.466727057681695, 30.394201322311062 ], [ -95.466792056912979, 30.393720322189775 ], [ -95.466832057122403, 30.393422322777205 ], [ -95.466674057554769, 30.393262322505937 ], [ -95.466039057052797, 30.393056322044458 ], [ -95.465907057131602, 30.392873322369233 ], [ -95.465899057390615, 30.392794322651767 ], [ -95.465880057310656, 30.392621322024286 ], [ -95.465959056563108, 30.392392322727598 ], [ -95.465959056646113, 30.392071322680206 ], [ -95.465325056505677, 30.391842321963864 ], [ -95.465060056995256, 30.391659322387561 ], [ -95.464716057078633, 30.391110322534519 ], [ -95.464161056579883, 30.390973322074515 ], [ -95.463712056154264, 30.390492322224333 ], [ -95.46294505585881, 30.390470322090408 ], [ -95.462549056447884, 30.390676321982834 ], [ -95.461889056283411, 30.390792321787565 ], [ -95.461625055343134, 30.39102132223395 ], [ -95.461308056219764, 30.391525322312937 ], [ -95.461150055825016, 30.392235322179374 ], [ -95.460886055658193, 30.392418322556093 ], [ -95.46033205539328, 30.392510322410835 ], [ -95.459882054988839, 30.391984322764795 ], [ -95.459565055791288, 30.39182432271646 ], [ -95.458878055386947, 30.391893322591038 ], [ -95.457847054891602, 30.391459321994361 ], [ -95.45763505478368, 30.391253322067321 ], [ -95.457503054980208, 30.390772321881997 ], [ -95.457185054680224, 30.390520322006282 ], [ -95.457053054339468, 30.3902453218037 ], [ -95.45694705506223, 30.389260321669244 ], [ -95.456841054850472, 30.389146322011765 ], [ -95.456365054645588, 30.389078322066286 ], [ -95.455942054269897, 30.388887322014604 ], [ -95.455651053783839, 30.388757321687304 ], [ -95.455202054247295, 30.388208322303097 ], [ -95.455043054261949, 30.388185321725629 ], [ -95.454673053436636, 30.387842321409892 ], [ -95.454646053911162, 30.38770432179852 ], [ -95.454382053976531, 30.38754432217274 ], [ -95.454038053709496, 30.387109321787534 ], [ -95.45329805314293, 30.387018321649414 ], [ -95.452691053409936, 30.387064321987204 ], [ -95.452163053404234, 30.387408322187113 ], [ -95.451846052943608, 30.38752332228119 ], [ -95.451264052671249, 30.387523321812182 ], [ -95.450842053275878, 30.387799322082234 ], [ -95.450525052981618, 30.387936322265631 ], [ -95.450207052859952, 30.387936322199849 ], [ -95.450022052568116, 30.387938321754582 ], [ -95.449706053090281, 30.388212322306458 ], [ -95.449336052643432, 30.388303321661059 ], [ -95.449125052049695, 30.388189322441754 ], [ -95.448781052585616, 30.388189322116453 ], [ -95.448465051940843, 30.388327322101304 ], [ -95.447725051976974, 30.388442321801342 ], [ -95.447751051921088, 30.388648322143151 ], [ -95.447831051760105, 30.388694321932526 ], [ -95.447970052318638, 30.389737322383823 ], [ -95.447990052641529, 30.389885322135605 ], [ -95.448123051943398, 30.390045322336206 ], [ -95.449391052177674, 30.390296322895782 ], [ -95.449735052716406, 30.390479322252595 ], [ -95.449867053298775, 30.390617322774954 ], [ -95.449867053031539, 30.390656322299801 ], [ -95.44986805285285, 30.391487322923258 ], [ -95.450211052479659, 30.391830322778809 ], [ -95.450133052565718, 30.392426323121246 ], [ -95.449816053238536, 30.393251323097832 ], [ -95.449870052550779, 30.393686323179583 ], [ -95.450187053127621, 30.393938322846623 ], [ -95.451006052838196, 30.393846323345667 ], [ -95.451217053465143, 30.393891323591316 ], [ -95.451588053250958, 30.394349323573692 ], [ -95.451984053672433, 30.394532323634873 ], [ -95.452080053685449, 30.394631323441757 ], [ -95.452275053787275, 30.394830323120729 ], [ -95.452408054103373, 30.395265323168218 ], [ -95.452384053368206, 30.396241323169068 ], [ -95.452382053761895, 30.396364324078533 ], [ -95.45272605346004, 30.396799323411464 ], [ -95.452806053813092, 30.398173323642794 ], [ -95.452543053662637, 30.398861324329403 ], [ -95.452517054229304, 30.399319324115414 ], [ -95.452200054270776, 30.399800324120299 ], [ -95.452307053820959, 30.401312324708464 ], [ -95.452626054233008, 30.402777324513959 ], [ -95.452547054012911, 30.403579325173347 ], [ -95.45249205361138, 30.403615324798853 ], [ -95.451967053846076, 30.403960324993403 ], [ -95.45146405359587, 30.40429032517693 ], [ -95.451016053551385, 30.405367325478245 ], [ -95.451043053967283, 30.405825325831081 ], [ -95.451334054253294, 30.406237325689897 ], [ -95.452018054514269, 30.406522325351919 ], [ -95.45210105401587, 30.406557326133839 ], [ -95.452736054392446, 30.407290326158211 ], [ -95.453661054179008, 30.407999325608596 ], [ -95.453662055124752, 30.408663325864492 ], [ -95.453583054315203, 30.408824325870579 ], [ -95.453716054258877, 30.409717326359562 ], [ -95.454509054646394, 30.410701326772607 ], [ -95.45511705522172, 30.41093032674511 ], [ -95.455431055145922, 30.410903326860502 ], [ -95.455502055511104, 30.411130326225447 ], [ -95.456627055958393, 30.410875326582737 ], [ -95.456835055440592, 30.41095232617549 ], [ -95.457338056057907, 30.411524326286145 ], [ -95.457655055973973, 30.411707326772248 ], [ -95.458025055603088, 30.411707326317362 ], [ -95.458368055725799, 30.41159232607189 ], [ -95.459056056182021, 30.411591326181476 ], [ -95.459478056663457, 30.411408326589047 ], [ -95.460377056148388, 30.411384326109776 ], [ -95.46067105685114, 30.411302326317657 ], [ -95.460734056318529, 30.411285326259634 ], [ -95.461037056378842, 30.411201326508213 ], [ -95.46164505680953, 30.411177326266785 ], [ -95.46217305676781, 30.410925326578443 ], [ -95.462852057082031, 30.410915326041106 ], [ -95.462815056840114, 30.410965326342723 ], [ -95.462888057222287, 30.410965326545657 ], [ -95.46315805706702, 30.410911325863417 ], [ -95.463237057140219, 30.410910326287038 ], [ -95.463360056957896, 30.410907326319951 ], [ -95.463371056893436, 30.410907325947083 ], [ -95.463838057560082, 30.410901325838335 ], [ -95.464092057784654, 30.411015326243096 ], [ -95.464101057028117, 30.411059325928999 ], [ -95.464448057451804, 30.411198326634139 ], [ -95.464473057597985, 30.411189325996915 ], [ -95.464568057958203, 30.411193326594304 ], [ -95.464658058078484, 30.411267325867879 ], [ -95.464972057725731, 30.411634326646517 ], [ -95.465108057757249, 30.411793326183332 ], [ -95.465348058157332, 30.411964326748478 ], [ -95.466456058415602, 30.412754326296383 ], [ -95.46717105887619, 30.41396732672191 ], [ -95.467273058487322, 30.414259326903313 ], [ -95.467300058394031, 30.414260326374098 ], [ -95.467731058447995, 30.414290326337163 ], [ -95.4685960588548, 30.415021326738277 ], [ -95.468677058712359, 30.415648327173216 ], [ -95.468629059002097, 30.415945326824122 ], [ -95.468635059288886, 30.416243326736467 ], [ -95.468785059387571, 30.416938327048044 ], [ -95.468843058452251, 30.417293327342819 ], [ -95.468884059441109, 30.417606327223293 ], [ -95.469137059079671, 30.41775732705808 ], [ -95.469433059526196, 30.41871132797197 ], [ -95.470069058960746, 30.420617327944619 ], [ -95.470148059302886, 30.421376327979299 ], [ -95.470114059096005, 30.421721328447269 ], [ -95.470518059159474, 30.421821327976723 ], [ -95.470634059343354, 30.421850327948171 ], [ -95.470937060061388, 30.421911328286527 ], [ -95.471023059335522, 30.421924328405275 ], [ -95.471233059725776, 30.421956328192948 ], [ -95.471695059846851, 30.422004328084711 ], [ -95.471830060190811, 30.422041328409041 ], [ -95.471989059704796, 30.421999328107688 ], [ -95.472246060389239, 30.422767328656985 ], [ -95.472301060281652, 30.422934328156391 ], [ -95.472478059795549, 30.423458328649883 ], [ -95.472532060138704, 30.423608328355186 ], [ -95.472600060640815, 30.423800328710318 ], [ -95.472652060653658, 30.423960328911928 ], [ -95.472920060428706, 30.424774328278062 ], [ -95.473045060880366, 30.425154329034648 ], [ -95.473807060891389, 30.427462329600303 ], [ -95.473497060773809, 30.42753132891804 ], [ -95.473169060126793, 30.427627329082021 ], [ -95.472783060934646, 30.427743329248013 ], [ -95.472371060316803, 30.427892329163729 ], [ -95.472119060015174, 30.427996329456526 ], [ -95.47196806034124, 30.428058329109938 ], [ -95.471222059831959, 30.428376329090103 ], [ -95.470937060270103, 30.428515329535561 ], [ -95.471079060497843, 30.428769329409114 ], [ -95.471316059801254, 30.429108329342526 ], [ -95.472111060079598, 30.430075329907499 ], [ -95.472992060355139, 30.431121330313676 ], [ -95.472833060399864, 30.431277329772531 ], [ -95.472526060406139, 30.431579330058771 ], [ -95.472575060089184, 30.43164433028663 ], [ -95.4741360610832, 30.433585330629523 ], [ -95.473360061154466, 30.434043330595355 ], [ -95.472975060406895, 30.434273330952596 ], [ -95.472575060469609, 30.434727330940554 ], [ -95.475357061271652, 30.435428330764591 ], [ -95.47806006251183, 30.436159331075199 ], [ -95.478134062726468, 30.436049330883787 ], [ -95.478376062529151, 30.436071330301559 ], [ -95.478599062051288, 30.436092330761014 ], [ -95.478456061898981, 30.436628330391997 ], [ -95.477738062709676, 30.444493332750717 ], [ -95.47773806252512, 30.4457203329568 ], [ -95.47774306291781, 30.445881332902832 ], [ -95.477894062910352, 30.445938332812911 ], [ -95.478047062377954, 30.445996333159115 ], [ -95.479288062496636, 30.44624033266896 ], [ -95.479668063039156, 30.446327332507646 ], [ -95.480249063537173, 30.446463332561525 ], [ -95.481829063588052, 30.446788332406445 ], [ -95.482107064266131, 30.446853332852196 ], [ -95.481959063281138, 30.447098333051024 ], [ -95.48185306421459, 30.44735033254365 ], [ -95.481827064084499, 30.447969333004622 ], [ -95.481511063524849, 30.448587333551181 ], [ -95.481432063368402, 30.449298332939669 ], [ -95.481512063273641, 30.449504333190848 ], [ -95.482174063775773, 30.450190333263844 ], [ -95.482518064196256, 30.450350333078163 ], [ -95.482756064450356, 30.450625333183297 ], [ -95.482837063832406, 30.450923333649104 ], [ -95.482862064067348, 30.451014333386876 ], [ -95.483339064332142, 30.451495334093888 ], [ -95.483313064425374, 30.451998333711863 ], [ -95.483551064775142, 30.452181333470929 ], [ -95.484477064874426, 30.452387333393954 ], [ -95.484845064373658, 30.452722333994284 ], [ -95.484980064260256, 30.452844334257314 ], [ -95.485456065406481, 30.453004334145788 ], [ -95.485852065021533, 30.453210334188384 ], [ -95.486355065650613, 30.453072334199618 ], [ -95.486990064944152, 30.453438333470007 ], [ -95.486964065796556, 30.45371333429183 ], [ -95.487202065071557, 30.453896334373258 ], [ -95.487783065928085, 30.453987333706916 ], [ -95.488048065877479, 30.454399333885558 ], [ -95.488313066172168, 30.454673334550687 ], [ -95.489477066197949, 30.45540533393017 ], [ -95.489928066003145, 30.456000334207069 ], [ -95.489822065792751, 30.456390334539826 ], [ -95.489690066456774, 30.456527334530126 ], [ -95.488979065853158, 30.458063335053669 ], [ -95.488767066129512, 30.458338335052773 ], [ -95.488371065649375, 30.458590334993954 ], [ -95.488134065387143, 30.458911334537014 ], [ -95.488134066225129, 30.45948433473627 ], [ -95.488240065748272, 30.45964433505733 ], [ -95.48847806590345, 30.459621335383769 ], [ -95.488637066344822, 30.459460335232475 ], [ -95.48871506599076, 30.459025335383963 ], [ -95.489165066620785, 30.45870433449123 ], [ -95.489349065783315, 30.458337334731564 ], [ -95.490221066795456, 30.457947334355168 ], [ -95.490273066829971, 30.457443334361102 ], [ -95.490352066475921, 30.457214334439612 ], [ -95.490564066647124, 30.457076334367517 ], [ -95.490907066094408, 30.457053334814066 ], [ -95.49138206686942, 30.456457334060634 ], [ -95.492406066551467, 30.456545334272782 ], [ -95.492698067329556, 30.455960334680174 ], [ -95.492829066542257, 30.45567233439137 ], [ -95.492983066436608, 30.455195334100775 ], [ -95.493387067326495, 30.455302334263582 ], [ -95.494778067630364, 30.455582334459415 ], [ -95.494909067524389, 30.455605334203096 ], [ -95.494946067281447, 30.455612333992921 ], [ -95.495643067580318, 30.455737334178853 ], [ -95.495899067280703, 30.45577433439022 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1221, "Tract": "48339694001", "Area_SqMi": 17.809163849575473, "total_2009": 404, "total_2010": 437, "total_2011": 1113, "total_2012": 268, "total_2013": 330, "total_2014": 371, "total_2015": 342, "total_2016": 414, "total_2017": 452, "total_2018": 249, "total_2019": 281, "total_2020": 343, "age1": 66, "age2": 169, "age3": 72, "earn1": 53, "earn2": 93, "earn3": 161, "naics_s01": 0, "naics_s02": 0, "naics_s03": 2, "naics_s04": 122, "naics_s05": 22, "naics_s06": 2, "naics_s07": 20, "naics_s08": 19, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 54, "naics_s13": 0, "naics_s14": 34, "naics_s15": 0, "naics_s16": 21, "naics_s17": 0, "naics_s18": 2, "naics_s19": 6, "naics_s20": 0, "race1": 274, "race2": 18, "race3": 1, "race4": 8, "race5": 0, "race6": 6, "ethnicity1": 220, "ethnicity2": 87, "edu1": 60, "edu2": 62, "edu3": 72, "edu4": 47, "Shape_Length": 93202.585833142788, "Shape_Area": 496489007.43760711, "total_2021": 300, "total_2022": 307 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.416515043283809, 30.364965318880405 ], [ -95.416652042999985, 30.364672318856837 ], [ -95.416377043047532, 30.364499318676227 ], [ -95.416007042886946, 30.364018318014864 ], [ -95.415954042402092, 30.363766318027466 ], [ -95.41534604280784, 30.363079317924143 ], [ -95.414976042169073, 30.362873318268647 ], [ -95.414673042189051, 30.362610318031972 ], [ -95.414210042129071, 30.362209318139715 ], [ -95.414183042442403, 30.361911318403561 ], [ -95.414051042085887, 30.361613318054829 ], [ -95.413892042341573, 30.360628317557453 ], [ -95.413575041893409, 30.360193317705367 ], [ -95.413416042086936, 30.35968931775578 ], [ -95.413099042150108, 30.359438317952893 ], [ -95.412676042229691, 30.359392317743385 ], [ -95.411910041239807, 30.358751317663337 ], [ -95.410906041810094, 30.358133317598018 ], [ -95.410800041133115, 30.357972317660963 ], [ -95.41077304101043, 30.357010317172758 ], [ -95.410905041569507, 30.356163316876877 ], [ -95.4107990407079, 30.355728316454723 ], [ -95.410429040610609, 30.355270316845584 ], [ -95.409742041141001, 30.354995316950315 ], [ -95.409003040947255, 30.35492631662121 ], [ -95.408554040375634, 30.354995317040935 ], [ -95.408316040796507, 30.354927316892809 ], [ -95.407022040329338, 30.354996316806368 ], [ -95.406371039688921, 30.354703317146221 ], [ -95.405648039444301, 30.354378316514964 ], [ -95.40461803924272, 30.354286316556468 ], [ -95.403033039526605, 30.354676316959523 ], [ -95.402083038732016, 30.35449331731116 ], [ -95.400999038309337, 30.354150316560535 ], [ -95.400128037850706, 30.354242316683205 ], [ -95.399996038047178, 30.354196316619532 ], [ -95.399626038540035, 30.35378431649432 ], [ -95.39930903777848, 30.353234316883626 ], [ -95.399152038508461, 30.353109316428636 ], [ -95.398622038017507, 30.352685316919946 ], [ -95.398516037915286, 30.352295316710144 ], [ -95.398041037837316, 30.351654316091892 ], [ -95.397829038099061, 30.35103531683767 ], [ -95.397380037632516, 30.350509316542436 ], [ -95.396693037327523, 30.35021131616724 ], [ -95.39627003697619, 30.349822316464515 ], [ -95.396152037584685, 30.349452316240722 ], [ -95.396059037265431, 30.349158316369866 ], [ -95.395768037443133, 30.348723315600839 ], [ -95.395847037320394, 30.348173316104589 ], [ -95.395808036670402, 30.347215315368661 ], [ -95.395794036904491, 30.346867315570677 ], [ -95.396032036728826, 30.346111315125679 ], [ -95.395926036728085, 30.345607315550332 ], [ -95.395794036947436, 30.345401315607628 ], [ -95.395133036283681, 30.344874315265656 ], [ -95.395239036491745, 30.343912315483657 ], [ -95.395133036159208, 30.343844314619894 ], [ -95.395159036129868, 30.343729314777534 ], [ -95.394833036248059, 30.343493314725951 ], [ -95.394367035991095, 30.34315731472115 ], [ -95.394367036069028, 30.342446315009855 ], [ -95.393495035650062, 30.341989314697233 ], [ -95.393125035794597, 30.341668314403332 ], [ -95.393099035651019, 30.34155331493459 ], [ -95.392729036334273, 30.341233314263903 ], [ -95.392254036206495, 30.341095314782532 ], [ -95.391963035888224, 30.340798314753563 ], [ -95.391514035417927, 30.340592314473827 ], [ -95.39119703534486, 30.339813314212851 ], [ -95.390801035179535, 30.339607314331491 ], [ -95.390193035039218, 30.339721314064601 ], [ -95.389745034691401, 30.339928314710647 ], [ -95.388979034995003, 30.339928314321856 ], [ -95.388793034905703, 30.33997031467463 ], [ -95.388477034669222, 30.340042314144629 ], [ -95.388292034705628, 30.339951314935863 ], [ -95.387817034972869, 30.340020314932975 ], [ -95.387130033968631, 30.339905314916383 ], [ -95.386681033803399, 30.339607314833394 ], [ -95.38604703443923, 30.339424314742494 ], [ -95.384938033326179, 30.339493314103827 ], [ -95.384410033186711, 30.339379314548456 ], [ -95.384172033530703, 30.339127314024246 ], [ -95.384066033722078, 30.338760314756644 ], [ -95.383855033902108, 30.338669314767422 ], [ -95.383459033830732, 30.338806314448362 ], [ -95.383248033451096, 30.338783314623235 ], [ -95.383168033669463, 30.338646314542295 ], [ -95.383327033000327, 30.338371314186595 ], [ -95.383327032952337, 30.337730314588772 ], [ -95.383063033037686, 30.337546313777334 ], [ -95.382508033329287, 30.337638314462758 ], [ -95.381689032952011, 30.33754631381019 ], [ -95.38158403315208, 30.337638314118482 ], [ -95.38150503269577, 30.33791331420327 ], [ -95.381293033095091, 30.338188314669768 ], [ -95.381346033265871, 30.339173314344489 ], [ -95.38105603285122, 30.339448314905503 ], [ -95.380554032244532, 30.339562314301588 ], [ -95.380132032517295, 30.339883314874619 ], [ -95.380026033012399, 30.340066314820138 ], [ -95.379788032431193, 30.340227314825814 ], [ -95.37933903281187, 30.340227314519616 ], [ -95.3783620317257, 30.339929315280379 ], [ -95.378019032429037, 30.339700314666771 ], [ -95.377491032129598, 30.33958531497937 ], [ -95.377464031504687, 30.339104314770466 ], [ -95.377385031757441, 30.33896731448781 ], [ -95.377121031730908, 30.338875314350872 ], [ -95.376725032016708, 30.339219315215104 ], [ -95.376566031893063, 30.339219315127664 ], [ -95.37619703199384, 30.33883031444531 ], [ -95.375827031355826, 30.338646314745862 ], [ -95.375219031607131, 30.338807314850982 ], [ -95.375111031630496, 30.338830314992016 ], [ -95.374058031266728, 30.339059315195847 ], [ -95.373688030422642, 30.338967314829205 ], [ -95.372816030248146, 30.339036314793823 ], [ -95.372579031049582, 30.338990314729749 ], [ -95.372526030177383, 30.338051314592231 ], [ -95.372394030974903, 30.337868314303993 ], [ -95.371707030183373, 30.337616315060469 ], [ -95.371469029929969, 30.337295314866775 ], [ -95.371469029715215, 30.336516314726499 ], [ -95.371364030324926, 30.33637931447451 ], [ -95.371020030222311, 30.336287314128903 ], [ -95.370704029637551, 30.336585314817718 ], [ -95.370255029516869, 30.336677314534228 ], [ -95.370070030294087, 30.336539314904478 ], [ -95.370043029773086, 30.33601231424603 ], [ -95.369832029373967, 30.335806314604046 ], [ -95.368749029860794, 30.335852314130136 ], [ -95.368512029303332, 30.335715314512584 ], [ -95.368115029315405, 30.334936314083805 ], [ -95.367719028857096, 30.33459231429164 ], [ -95.366874028480112, 30.334363313811885 ], [ -95.3662140286566, 30.333951314442778 ], [ -95.365343028121984, 30.333951314070774 ], [ -95.364207028565517, 30.334249314332975 ], [ -95.363230027485798, 30.3343173142487 ], [ -95.362121027867133, 30.333882314394277 ], [ -95.361778027122128, 30.333470313673303 ], [ -95.361540027761009, 30.332897314308426 ], [ -95.361518027347927, 30.331774313693369 ], [ -95.360506027643879, 30.331981313928143 ], [ -95.360501026742867, 30.332258313793169 ], [ -95.360432027329239, 30.332367313710829 ], [ -95.359751026642684, 30.332736313875355 ], [ -95.358966026535839, 30.333281313769543 ], [ -95.358718027007455, 30.333496314073678 ], [ -95.35649102600982, 30.335420314904329 ], [ -95.353821025733296, 30.337846315298513 ], [ -95.353208025095228, 30.338231314979705 ], [ -95.351255025249699, 30.339118315572627 ], [ -95.347378024267542, 30.340884315909939 ], [ -95.346510024525301, 30.341394315939965 ], [ -95.345953024156643, 30.341805316114019 ], [ -95.345177024033902, 30.342348316298306 ], [ -95.343945022948262, 30.343022316735688 ], [ -95.342892022841227, 30.34349931722759 ], [ -95.34226002339868, 30.343729317070153 ], [ -95.341679022532958, 30.343937316708825 ], [ -95.341366022613627, 30.344121317430119 ], [ -95.341104022560046, 30.344386317514289 ], [ -95.340010022263655, 30.346084317729296 ], [ -95.339019022027458, 30.347281318014108 ], [ -95.339106022598557, 30.347490317441761 ], [ -95.339225022171931, 30.347826317800457 ], [ -95.339314022531909, 30.34811731804237 ], [ -95.339371022893957, 30.348319317810624 ], [ -95.33941102264275, 30.348527317604233 ], [ -95.33942402249663, 30.348632318217415 ], [ -95.339439022313499, 30.348838317856867 ], [ -95.339438022362842, 30.349047317823739 ], [ -95.339419023033443, 30.349231317732599 ], [ -95.33938502264121, 30.349395318404273 ], [ -95.339342022351317, 30.349556318496447 ], [ -95.339283022183608, 30.349714318332701 ], [ -95.339209022545006, 30.349864318269237 ], [ -95.339167022320524, 30.349928318415763 ], [ -95.339069022026266, 30.350050317844445 ], [ -95.338951022788493, 30.350156318254452 ], [ -95.338885022598831, 30.35020431809513 ], [ -95.338550022097806, 30.350368317975406 ], [ -95.338119022201468, 30.350612318361353 ], [ -95.33790902175852, 30.350747318709971 ], [ -95.337705022296873, 30.350887318140245 ], [ -95.337318022154335, 30.351179318304741 ], [ -95.337142021984675, 30.351329319002517 ], [ -95.337025022298164, 30.351449318859672 ], [ -95.336920021972389, 30.351578318375243 ], [ -95.336827022187407, 30.351713318679074 ], [ -95.336778022155627, 30.3518003188045 ], [ -95.336736022130793, 30.351887318709874 ], [ -95.336686022187379, 30.35200731863916 ], [ -95.336639021523553, 30.352157318935014 ], [ -95.33660602226179, 30.352315318402027 ], [ -95.336587021990667, 30.35250531922847 ], [ -95.336591021470468, 30.352664318704207 ], [ -95.336598022047554, 30.352755318761766 ], [ -95.336613021611072, 30.352849318520555 ], [ -95.33663402219355, 30.352946318733309 ], [ -95.33670102227984, 30.353173318819721 ], [ -95.336779022123551, 30.353390318695997 ], [ -95.336950022170086, 30.35369331910853 ], [ -95.337488022217684, 30.35492931912222 ], [ -95.337757022785567, 30.355779319692413 ], [ -95.337866022864645, 30.356355319228275 ], [ -95.337923022868068, 30.356814319838275 ], [ -95.33780802212766, 30.358640319810682 ], [ -95.337727022412878, 30.359162319922124 ], [ -95.337626022142473, 30.359459319885882 ], [ -95.337450022309866, 30.359848319902344 ], [ -95.337200022190274, 30.360201320271582 ], [ -95.335965021836742, 30.361318320810465 ], [ -95.335470021710137, 30.361854321035754 ], [ -95.335194021968377, 30.362221321276699 ], [ -95.33512302190195, 30.362318321156369 ], [ -95.335003022191458, 30.362483321397605 ], [ -95.334001021420022, 30.36442732115427 ], [ -95.333424021792453, 30.365547321297043 ], [ -95.333028021523191, 30.366317321530936 ], [ -95.332520021155375, 30.367217321607232 ], [ -95.331998021984575, 30.367944322382918 ], [ -95.331430021774366, 30.36866332258791 ], [ -95.330681021756291, 30.369572322817159 ], [ -95.330002021533474, 30.370433323052634 ], [ -95.329758021052584, 30.370800322804509 ], [ -95.329702021468151, 30.370871322709252 ], [ -95.3294840211462, 30.371300322732086 ], [ -95.329361020908948, 30.371761322831087 ], [ -95.329225020618381, 30.374018323290233 ], [ -95.329006020776632, 30.377669324023518 ], [ -95.328935020974129, 30.379193324242099 ], [ -95.32875102192402, 30.3831383255967 ], [ -95.328309021849236, 30.39178532685284 ], [ -95.328197022072956, 30.393744327464663 ], [ -95.329060021495337, 30.393698327710108 ], [ -95.329988022426235, 30.393688327063749 ], [ -95.330105022608578, 30.393694327488635 ], [ -95.330326022444822, 30.393714327454511 ], [ -95.330547022568837, 30.393753327452263 ], [ -95.331146022198695, 30.39389532766026 ], [ -95.33256802244469, 30.394253327849786 ], [ -95.333044023293567, 30.394448327770057 ], [ -95.336605024258361, 30.396863327636854 ], [ -95.337345023907261, 30.397167328110772 ], [ -95.338082024863553, 30.397288327660583 ], [ -95.338712024676269, 30.397264327573762 ], [ -95.339325025221882, 30.397127327765865 ], [ -95.341461025124389, 30.396264327406701 ], [ -95.343752025510469, 30.395338327146327 ], [ -95.346499026481879, 30.394453327110931 ], [ -95.346743026979311, 30.394410327084788 ], [ -95.347551026790185, 30.394379327166895 ], [ -95.347910026449739, 30.394449326907552 ], [ -95.348340027091325, 30.394535327347334 ], [ -95.348779027173975, 30.394710327388019 ], [ -95.350114027179856, 30.39540932695828 ], [ -95.350598027643656, 30.395567327129903 ], [ -95.351174027844067, 30.395666326797038 ], [ -95.351767027887519, 30.395679326945039 ], [ -95.352561028115701, 30.395632327320261 ], [ -95.355334028880364, 30.395467327063027 ], [ -95.356454029073163, 30.395382326442128 ], [ -95.357463029590804, 30.39530532680342 ], [ -95.357794029025825, 30.395268326832422 ], [ -95.359565029630829, 30.395067326852445 ], [ -95.360697029674768, 30.395021326697201 ], [ -95.362219030523477, 30.395111326732707 ], [ -95.364856031545685, 30.395268326406342 ], [ -95.365525031855626, 30.395363326739687 ], [ -95.366088031522821, 30.395509326780953 ], [ -95.366176031075426, 30.39553232696267 ], [ -95.366585031433829, 30.395677326824497 ], [ -95.367083032175444, 30.395991326846215 ], [ -95.367278031999348, 30.396173326922675 ], [ -95.367880031955323, 30.396735326880897 ], [ -95.37155303366653, 30.399709326924697 ], [ -95.372497033299581, 30.400295327041928 ], [ -95.373080033850698, 30.400567326912441 ], [ -95.374024033778525, 30.400928327702754 ], [ -95.374226033691571, 30.401055327545954 ], [ -95.374602033547973, 30.40129332771356 ], [ -95.37479103441018, 30.401471327310354 ], [ -95.374938033919022, 30.401610327511762 ], [ -95.375189033736831, 30.401916327080691 ], [ -95.375729034343991, 30.40294932737126 ], [ -95.376084034554822, 30.40345332816694 ], [ -95.376518034337991, 30.403910328282198 ], [ -95.377054035112408, 30.404357327740875 ], [ -95.377682035383089, 30.40468732829499 ], [ -95.378384035366992, 30.404874327954357 ], [ -95.379064035512314, 30.404914328101828 ], [ -95.379764035561521, 30.404831327973337 ], [ -95.380065035239397, 30.404784327762535 ], [ -95.38028903575406, 30.404738327926076 ], [ -95.381148035372931, 30.404530327955793 ], [ -95.381285036287338, 30.404498328268367 ], [ -95.382122035979037, 30.404300327521533 ], [ -95.382860036210033, 30.40413832740883 ], [ -95.383362036174105, 30.404028327520603 ], [ -95.383574035988943, 30.403973328038894 ], [ -95.384008037005216, 30.403793327525847 ], [ -95.38427703652566, 30.403658327491929 ], [ -95.384508036814026, 30.403523327206088 ], [ -95.384758036831357, 30.403331327640529 ], [ -95.38497003652185, 30.403158327115847 ], [ -95.385220037161375, 30.402888327699582 ], [ -95.385355037284356, 30.402676327755728 ], [ -95.385662036749594, 30.402177326918427 ], [ -95.386037037425808, 30.401555326921223 ], [ -95.386369037221442, 30.401179326760769 ], [ -95.386767036863461, 30.400869327103948 ], [ -95.387210037671039, 30.400626327045732 ], [ -95.387667037308873, 30.400448327157491 ], [ -95.388424037128843, 30.400154326613993 ], [ -95.391173038023794, 30.399193326804678 ], [ -95.392008038713385, 30.398885326480073 ], [ -95.392887039024245, 30.398490326476839 ], [ -95.39610103922962, 30.396761325825583 ], [ -95.396718039823043, 30.396428325245616 ], [ -95.397482039761286, 30.396016325769256 ], [ -95.398273039746059, 30.395589325260563 ], [ -95.400533040265671, 30.394370325104308 ], [ -95.401454040571295, 30.393873325131274 ], [ -95.40196504041667, 30.393597324431301 ], [ -95.402472040448401, 30.39318232468483 ], [ -95.403069041404891, 30.392422324481139 ], [ -95.404586041700497, 30.390292324285699 ], [ -95.40585904112298, 30.388464323303594 ], [ -95.406015041527439, 30.388223323780085 ], [ -95.406660041952691, 30.387066323452672 ], [ -95.407566041347863, 30.385584323014307 ], [ -95.408457041389084, 30.384281322787395 ], [ -95.409541042529426, 30.383019322156141 ], [ -95.409920042545863, 30.382567322684036 ], [ -95.410831041892919, 30.381263321860278 ], [ -95.411571042879672, 30.379630321333913 ], [ -95.412134042556346, 30.378135321430427 ], [ -95.412272042606858, 30.377444321052995 ], [ -95.412525042315707, 30.376566320931715 ], [ -95.412809042687499, 30.37581032098695 ], [ -95.413062043140158, 30.375259320567011 ], [ -95.413642042846917, 30.374472320305422 ], [ -95.413691042532164, 30.374431320400664 ], [ -95.413407043067068, 30.374119320224349 ], [ -95.413307042613894, 30.373918320144451 ], [ -95.413964043034539, 30.370327319756996 ], [ -95.41421104229353, 30.369646319396814 ], [ -95.414678042755767, 30.368998319845687 ], [ -95.415286042391401, 30.368154319071383 ], [ -95.415456043109245, 30.367809318795889 ], [ -95.415530043357577, 30.367651319549413 ], [ -95.416515043283809, 30.364965318880405 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1222, "Tract": "48339694107", "Area_SqMi": 44.271799238534285, "total_2009": 236, "total_2010": 103, "total_2011": 137, "total_2012": 180, "total_2013": 200, "total_2014": 331, "total_2015": 327, "total_2016": 321, "total_2017": 379, "total_2018": 340, "total_2019": 367, "total_2020": 367, "age1": 84, "age2": 226, "age3": 76, "earn1": 60, "earn2": 88, "earn3": 238, "naics_s01": 4, "naics_s02": 26, "naics_s03": 0, "naics_s04": 124, "naics_s05": 48, "naics_s06": 17, "naics_s07": 2, "naics_s08": 62, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 3, "naics_s17": 0, "naics_s18": 37, "naics_s19": 32, "naics_s20": 0, "race1": 361, "race2": 14, "race3": 6, "race4": 3, "race5": 0, "race6": 2, "ethnicity1": 296, "ethnicity2": 90, "edu1": 56, "edu2": 96, "edu3": 88, "edu4": 62, "Shape_Length": 191581.7828099076, "Shape_Area": 1234221990.8286631, "total_2021": 358, "total_2022": 386 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.495441068691619, 30.479048338790879 ], [ -95.495598069194429, 30.478045338773281 ], [ -95.495355068790474, 30.478003338862273 ], [ -95.495046068983285, 30.477973338344519 ], [ -95.494755068732459, 30.477932338832993 ], [ -95.494825068072274, 30.477508338733966 ], [ -95.494861068155004, 30.477368338319074 ], [ -95.494945068920444, 30.47704333854039 ], [ -95.495075068375385, 30.476645338123536 ], [ -95.495335068373151, 30.476041338045558 ], [ -95.49296206837154, 30.475515338478154 ], [ -95.492254067558321, 30.475358337948364 ], [ -95.492243067468763, 30.475356338460127 ], [ -95.492220067704778, 30.475350338182626 ], [ -95.492208067746702, 30.475347338131407 ], [ -95.492184067579473, 30.475342337862369 ], [ -95.492103067539475, 30.475324338240213 ], [ -95.49197106731441, 30.475294337914551 ], [ -95.491915067385463, 30.475282338146531 ], [ -95.49156906772339, 30.475206337829032 ], [ -95.491168067329255, 30.475058338496162 ], [ -95.490963067328053, 30.474971338023551 ], [ -95.490042067118537, 30.474220337556748 ], [ -95.489468067316849, 30.473702337778228 ], [ -95.489324066786921, 30.473572337775718 ], [ -95.488827067235718, 30.473072337835912 ], [ -95.488680066622621, 30.472890337450615 ], [ -95.488547066827707, 30.472688337829471 ], [ -95.488342066294322, 30.47230333757339 ], [ -95.488083066672488, 30.471854337768594 ], [ -95.487965066852027, 30.471628337935048 ], [ -95.487786066350679, 30.471370337477179 ], [ -95.487697066881779, 30.471250337506696 ], [ -95.487446065918334, 30.470908337425982 ], [ -95.487404066409013, 30.470851337849535 ], [ -95.486933065645488, 30.470171337139973 ], [ -95.486715066019045, 30.46994833693558 ], [ -95.486551065839038, 30.469842337155249 ], [ -95.486354066405596, 30.469771337275901 ], [ -95.486128065795612, 30.469732337025661 ], [ -95.485914065801737, 30.469734337577208 ], [ -95.485634066226652, 30.469796337378625 ], [ -95.485392065809719, 30.4698613375059 ], [ -95.485074066151157, 30.469891336944976 ], [ -95.484817065819499, 30.469852337557899 ], [ -95.484514065215635, 30.469739337468287 ], [ -95.484086065257586, 30.469453337454372 ], [ -95.483618065609733, 30.469111337418731 ], [ -95.483505065421298, 30.469031337409923 ], [ -95.482700065249716, 30.468369337003676 ], [ -95.481177064205838, 30.467091336474358 ], [ -95.480254064511243, 30.466308336996835 ], [ -95.480044064048755, 30.466129336631528 ], [ -95.479853063997083, 30.466014336440093 ], [ -95.47955406416996, 30.465913336879094 ], [ -95.479252063807465, 30.465828336297118 ], [ -95.478909063537031, 30.465770337047722 ], [ -95.478171064005522, 30.465668336883102 ], [ -95.4777650632616, 30.465587336515693 ], [ -95.477747063379226, 30.46576633654827 ], [ -95.477517063682726, 30.466657337125991 ], [ -95.477332063063557, 30.467217337167586 ], [ -95.473448062555292, 30.47712633942815 ], [ -95.466942060966559, 30.476385339365653 ], [ -95.463937060521872, 30.475660339483515 ], [ -95.459598059413608, 30.477901339486365 ], [ -95.458964059145487, 30.477879340053573 ], [ -95.458857059593328, 30.477909339564562 ], [ -95.458144058748942, 30.478109339504979 ], [ -95.457589059381334, 30.478132339643526 ], [ -95.45659805861294, 30.477888339921183 ], [ -95.456643058917678, 30.477795340273559 ], [ -95.456902059090709, 30.477299340018412 ], [ -95.457166058296664, 30.476676339478015 ], [ -95.457233059266187, 30.476243339417394 ], [ -95.457207058310715, 30.475827339463724 ], [ -95.456976058243256, 30.475293339039528 ], [ -95.456340058660473, 30.474094339354249 ], [ -95.456278058677484, 30.473974339128311 ], [ -95.456236058668154, 30.474010339310222 ], [ -95.456157058372483, 30.474170338856965 ], [ -95.456158058499426, 30.474972339151957 ], [ -95.455841058237894, 30.475408339586007 ], [ -95.455788058470588, 30.475866339552805 ], [ -95.455472058156744, 30.476416339416094 ], [ -95.455234057968369, 30.476576339287412 ], [ -95.454282057712717, 30.476943339846592 ], [ -95.453674057844296, 30.476921339602942 ], [ -95.453542057606668, 30.477333339964733 ], [ -95.453278058035878, 30.477517340143226 ], [ -95.452431058085651, 30.476853339510583 ], [ -95.451664057265219, 30.476877339751365 ], [ -95.451346057766159, 30.47664834007298 ], [ -95.450870057162902, 30.475892339555752 ], [ -95.450023056406096, 30.475045339244481 ], [ -95.449784056617489, 30.474702339750024 ], [ -95.449546056571094, 30.474129339880157 ], [ -95.44909605687846, 30.473511339398367 ], [ -95.448911056436586, 30.473466339232086 ], [ -95.448461056870286, 30.473603339074369 ], [ -95.448197056222028, 30.473443339657116 ], [ -95.447588056367422, 30.473581339574018 ], [ -95.447430055710811, 30.473306339374847 ], [ -95.447350055849938, 30.472871339495743 ], [ -95.447006056233008, 30.472596339354599 ], [ -95.44634505616223, 30.472505339574294 ], [ -95.446001055469324, 30.472253338807025 ], [ -95.445815055472053, 30.471773338647917 ], [ -95.445498055652905, 30.471544339336393 ], [ -95.445021055459208, 30.471452338813794 ], [ -95.444017055228002, 30.47163633911191 ], [ -95.443461054602849, 30.471362338705426 ], [ -95.442854054537975, 30.471843339208309 ], [ -95.441981055127798, 30.472073339403003 ], [ -95.441822054855933, 30.472027338957432 ], [ -95.441055054601406, 30.471478339516722 ], [ -95.440844053939131, 30.471547339247614 ], [ -95.440632054030416, 30.471913339701782 ], [ -95.440156054497535, 30.472028339757269 ], [ -95.439971054141338, 30.471341339456686 ], [ -95.439495054163075, 30.47115833951797 ], [ -95.439045053552022, 30.471204339055834 ], [ -95.438755053993447, 30.471502339692773 ], [ -95.438358053983549, 30.471594339182754 ], [ -95.437644053473548, 30.471480339489997 ], [ -95.437511053923458, 30.471297339117921 ], [ -95.437326053540104, 30.47118233894421 ], [ -95.43711505309868, 30.471274339608311 ], [ -95.436878053501019, 30.472259339180944 ], [ -95.436746053606498, 30.472351339289965 ], [ -95.436058052699678, 30.472328339833037 ], [ -95.435661052917283, 30.472443340005089 ], [ -95.435397052690519, 30.472306339606163 ], [ -95.434736052396943, 30.472306339355161 ], [ -95.434709053196173, 30.471940339920433 ], [ -95.434180052266697, 30.471642339551728 ], [ -95.433942052245342, 30.471276339431004 ], [ -95.433677052244292, 30.471024339519698 ], [ -95.43254005242018, 30.471002339322041 ], [ -95.432487052167048, 30.470910339175411 ], [ -95.431984051826433, 30.470659339044289 ], [ -95.431746051875493, 30.470636339355618 ], [ -95.431482051919318, 30.471003339467682 ], [ -95.431059051517408, 30.471071339238101 ], [ -95.430874051267097, 30.471003339730988 ], [ -95.430636051539253, 30.470682339717087 ], [ -95.430715051642991, 30.470476339443387 ], [ -95.431402052259543, 30.469743339173448 ], [ -95.431401051483164, 30.469193339064574 ], [ -95.430581051614311, 30.468415338669335 ], [ -95.430528051068293, 30.467796338569716 ], [ -95.430025051804932, 30.467384338728824 ], [ -95.429998051704473, 30.466880338639214 ], [ -95.430236051175086, 30.466583338434639 ], [ -95.430262050937714, 30.466285338489314 ], [ -95.430103050866606, 30.466079338301402 ], [ -95.430103051665554, 30.465735338194143 ], [ -95.430367051731352, 30.465437338795411 ], [ -95.430420051828307, 30.465231338220271 ], [ -95.43023505103379, 30.465071338082755 ], [ -95.429733050772455, 30.465071338418944 ], [ -95.429495051081915, 30.46498033813927 ], [ -95.429442050999029, 30.464796337990869 ], [ -95.429547050804928, 30.464567338454248 ], [ -95.429547050751367, 30.46390333789147 ], [ -95.429282051191052, 30.463720338197223 ], [ -95.427801050972832, 30.463583338387089 ], [ -95.427431050080159, 30.463767338221963 ], [ -95.427193050674163, 30.463790338251645 ], [ -95.426902050403172, 30.463309337818117 ], [ -95.426109049818791, 30.463195338191625 ], [ -95.425976050469785, 30.463126338519945 ], [ -95.425923049985116, 30.462874337567907 ], [ -95.426188049970804, 30.462370337463373 ], [ -95.426505050740147, 30.462003338208984 ], [ -95.426927050755324, 30.461797337997183 ], [ -95.426954049926067, 30.461224337606904 ], [ -95.426583050141076, 30.46090433770755 ], [ -95.426504050064082, 30.460515337839055 ], [ -95.42634504961471, 30.460354337058277 ], [ -95.42563105036372, 30.460309337466864 ], [ -95.42531305012055, 30.460080337509037 ], [ -95.425313050069263, 30.459851337015103 ], [ -95.425604049850676, 30.459209337666078 ], [ -95.425577050102632, 30.458889336921956 ], [ -95.425365049766896, 30.458706337133513 ], [ -95.424572050045057, 30.458591337298348 ], [ -95.424360049492194, 30.458385337037949 ], [ -95.42446604911558, 30.457721337266932 ], [ -95.424492049679273, 30.457103336929901 ], [ -95.424254049497478, 30.457034337091365 ], [ -95.423698049121995, 30.457011337199667 ], [ -95.423619048992165, 30.45692033644336 ], [ -95.423672048813344, 30.456576337251349 ], [ -95.424227048975766, 30.456118337134107 ], [ -95.424253049548994, 30.455454336859521 ], [ -95.424120049509838, 30.455202336759786 ], [ -95.423404049070498, 30.455001336490863 ], [ -95.423142048609449, 30.454927336137576 ], [ -95.422957049386824, 30.454744336429858 ], [ -95.423406049266958, 30.45389633668254 ], [ -95.423405048977543, 30.45332433656748 ], [ -95.423273049134707, 30.45311833601005 ], [ -95.422612048522979, 30.452660336038978 ], [ -95.422453048687771, 30.452225335581382 ], [ -95.422215048531726, 30.452019335520983 ], [ -95.421025048035048, 30.451653336329152 ], [ -95.420839048706398, 30.4514243359177 ], [ -95.420786048131674, 30.450508335322464 ], [ -95.420495047708243, 30.450187335686952 ], [ -95.419913048285849, 30.450142336107817 ], [ -95.419702048423517, 30.449981335222521 ], [ -95.419675048209029, 30.449729335380578 ], [ -95.419384048134049, 30.449615335160694 ], [ -95.418036047543211, 30.449616335604539 ], [ -95.417719047196712, 30.449364335584171 ], [ -95.41711004730908, 30.449341335190098 ], [ -95.416925046872038, 30.449181335893954 ], [ -95.416872047297602, 30.448837335790795 ], [ -95.416687046930988, 30.448562335010745 ], [ -95.416158047420623, 30.448448335177503 ], [ -95.416026047307824, 30.448334335853136 ], [ -95.416131046804111, 30.447807335301121 ], [ -95.415946046845988, 30.447624335470163 ], [ -95.415074046992274, 30.447235335408983 ], [ -95.414756046028614, 30.446891334999972 ], [ -95.414730046016686, 30.44657033507141 ], [ -95.415020046339819, 30.445975334794614 ], [ -95.414993046026893, 30.445517334856305 ], [ -95.414755046122195, 30.445150335243049 ], [ -95.414332046615556, 30.444715334851317 ], [ -95.413935045987145, 30.444463334835834 ], [ -95.413776046383632, 30.443868335005696 ], [ -95.41353804600071, 30.443593334251243 ], [ -95.413142045629655, 30.443456334401226 ], [ -95.412666046139279, 30.442929334402031 ], [ -95.41232204535693, 30.442861334488278 ], [ -95.411952046055035, 30.44313633488413 ], [ -95.411793045698104, 30.443456335027001 ], [ -95.411476045605781, 30.443571335077593 ], [ -95.411370045584988, 30.44348033437673 ], [ -95.411291045564866, 30.44320533465979 ], [ -95.411185045706233, 30.443136334760755 ], [ -95.410683045317128, 30.443090334555041 ], [ -95.410445045166512, 30.442564334484555 ], [ -95.41023304510928, 30.442541334776781 ], [ -95.409995044886642, 30.442747334900719 ], [ -95.409652044983545, 30.442816334797111 ], [ -95.40930804461685, 30.442587334588566 ], [ -95.409123045154246, 30.442266334458065 ], [ -95.408964044389677, 30.441488334685399 ], [ -95.408805044614382, 30.441327334582937 ], [ -95.408329044335389, 30.441236334071039 ], [ -95.408012044730711, 30.4408923341825 ], [ -95.407879044582245, 30.440182334264946 ], [ -95.407324044109828, 30.439793333718093 ], [ -95.407218043746909, 30.439221334202191 ], [ -95.406742043917035, 30.438786333530288 ], [ -95.406742043777029, 30.438144333330996 ], [ -95.406605043590446, 30.438026333467509 ], [ -95.406424043469499, 30.437869333845331 ], [ -95.406450043932281, 30.437480333228589 ], [ -95.406926043578096, 30.437091333474182 ], [ -95.406926044177212, 30.436793333666692 ], [ -95.406741044319745, 30.436518333485083 ], [ -95.406555043981399, 30.435831333016878 ], [ -95.405894043215852, 30.434869333376021 ], [ -95.405841043538786, 30.434571332707524 ], [ -95.405947043812262, 30.434388332833667 ], [ -95.406369043386718, 30.434021333179576 ], [ -95.4064750442123, 30.43383833289738 ], [ -95.406449043446997, 30.433517333024486 ], [ -95.405735043896058, 30.43294533269642 ], [ -95.405682043747845, 30.43280833234645 ], [ -95.405734043593753, 30.432624332498108 ], [ -95.406157043930918, 30.432555332595339 ], [ -95.406316043254606, 30.432395332755235 ], [ -95.406560043534213, 30.431706332779399 ], [ -95.4067380438469, 30.431204332049461 ], [ -95.406764043657148, 30.430723332404366 ], [ -95.406659043915241, 30.430654332175227 ], [ -95.4066590431989, 30.430425331741539 ], [ -95.40684404317301, 30.430150331843933 ], [ -95.406870043253349, 30.429990332046398 ], [ -95.406843043186868, 30.429959332072368 ], [ -95.40671104312112, 30.42980733226549 ], [ -95.406738043998786, 30.429509332163374 ], [ -95.406949044151119, 30.429142331826711 ], [ -95.40694904389774, 30.428821331606809 ], [ -95.406420043662791, 30.428638331438528 ], [ -95.406314043809473, 30.428547331887181 ], [ -95.406261042910756, 30.42808933192746 ], [ -95.406182043604943, 30.427974331273006 ], [ -95.405706042974558, 30.427860331652187 ], [ -95.405547043382953, 30.427745331669314 ], [ -95.405494042858436, 30.427379331789709 ], [ -95.404913042511012, 30.42712733178962 ], [ -95.404939042950872, 30.42666933152967 ], [ -95.405573042801947, 30.426165331626663 ], [ -95.405546042659878, 30.425936331414729 ], [ -95.40538804304272, 30.425661331043742 ], [ -95.40456804320273, 30.425089330862601 ], [ -95.404409042430061, 30.42479133112414 ], [ -95.404436042976073, 30.42431033067772 ], [ -95.404515043258684, 30.424035330942054 ], [ -95.404409043221094, 30.423760330548596 ], [ -95.404065042893492, 30.423554331072129 ], [ -95.403774042167598, 30.423211330665708 ], [ -95.403166042395597, 30.423005330863813 ], [ -95.402823042315035, 30.422547330365045 ], [ -95.402399042235814, 30.422409330926008 ], [ -95.402294041942454, 30.422295330625687 ], [ -95.402258041874759, 30.421926330599177 ], [ -95.402214042555116, 30.421470330407814 ], [ -95.401950041575518, 30.421287330806098 ], [ -95.401791041672055, 30.421058330568478 ], [ -95.401764041816079, 30.420783330063347 ], [ -95.402108042402844, 30.420508330446573 ], [ -95.402161042302609, 30.42030233010075 ], [ -95.401156041256897, 30.419844330465651 ], [ -95.400707041457153, 30.41943232969389 ], [ -95.400707041689842, 30.41879133045413 ], [ -95.40052104159362, 30.418447330155004 ], [ -95.400812041574142, 30.418104329860842 ], [ -95.400838041145889, 30.417897329616864 ], [ -95.400521041186749, 30.417623329855751 ], [ -95.400653041617716, 30.417119330068925 ], [ -95.400309041421224, 30.416638329237031 ], [ -95.399765041631269, 30.416204329960252 ], [ -95.399648041431121, 30.416111329443897 ], [ -95.399093040791115, 30.415859329730885 ], [ -95.398697040478041, 30.415814329597239 ], [ -95.398353040887102, 30.415951329824136 ], [ -95.398168041205253, 30.415974329677425 ], [ -95.397983040914909, 30.41572232963118 ], [ -95.397983040448239, 30.415104329109091 ], [ -95.397428040635063, 30.415012329257152 ], [ -95.397428040736855, 30.414440329160353 ], [ -95.397190040564539, 30.414325329529046 ], [ -95.396529039960114, 30.41437132957104 ], [ -95.396397040568345, 30.414234329599516 ], [ -95.39639704018569, 30.413959329608844 ], [ -95.396529040646612, 30.413684329137219 ], [ -95.396502040291026, 30.413409328859849 ], [ -95.396291040672452, 30.413386329232392 ], [ -95.395974039837043, 30.413570328813794 ], [ -95.395710039934343, 30.413592329004722 ], [ -95.395524039470757, 30.413386328832946 ], [ -95.395498039987501, 30.41308932923296 ], [ -95.395736039780786, 30.412676328546585 ], [ -95.395736040119161, 30.412401329223215 ], [ -95.394943039417043, 30.412127328675293 ], [ -95.394388039326856, 30.411714328884003 ], [ -95.39362103890744, 30.411852328824857 ], [ -95.393515039810993, 30.411738329047676 ], [ -95.393515039753581, 30.41150832854796 ], [ -95.394097039072719, 30.411325328325233 ], [ -95.394176039631105, 30.411096328758969 ], [ -95.393489039329822, 30.410844328536218 ], [ -95.392986039683521, 30.41045532869062 ], [ -95.392749039189368, 30.41043232831322 ], [ -95.392352039101795, 30.410799328792042 ], [ -95.391929039033471, 30.410845328676629 ], [ -95.391744038632339, 30.410707328265893 ], [ -95.391744038871082, 30.409676328049045 ], [ -95.391850038622465, 30.409585328890959 ], [ -95.391850039246961, 30.409264327990861 ], [ -95.3917440387049, 30.409104328325217 ], [ -95.391480038504682, 30.409058328468134 ], [ -95.391216038774118, 30.409447328747291 ], [ -95.390872038983602, 30.409447328869295 ], [ -95.390766038704001, 30.4086923279865 ], [ -95.390317038494203, 30.408417327863127 ], [ -95.39026403828818, 30.408027328211109 ], [ -95.390052037936968, 30.40777632823621 ], [ -95.390026037875415, 30.407615328451353 ], [ -95.390211037995741, 30.407363327955405 ], [ -95.390211037978375, 30.407157328058428 ], [ -95.389550038566924, 30.406928327627494 ], [ -95.389470037588993, 30.40658532828585 ], [ -95.388836038230281, 30.40610432746896 ], [ -95.388810037969208, 30.405623328127852 ], [ -95.388651038338551, 30.405439327495053 ], [ -95.388651037845818, 30.405279327429312 ], [ -95.388775037338448, 30.405050327501225 ], [ -95.38886203824363, 30.404890327513016 ], [ -95.388809038001696, 30.404752327695618 ], [ -95.388466037605426, 30.404592327144805 ], [ -95.388492037723282, 30.404317327511848 ], [ -95.38883603787346, 30.404088327724104 ], [ -95.388836037325348, 30.403905327036732 ], [ -95.38865003748522, 30.403767327201912 ], [ -95.388598037470913, 30.403424327366256 ], [ -95.388730037308747, 30.403263327553251 ], [ -95.389390038212881, 30.402943326782243 ], [ -95.389364037836671, 30.402599327470242 ], [ -95.38883503751191, 30.402370327167304 ], [ -95.388544037788023, 30.402187327453809 ], [ -95.388465037468862, 30.401660327277561 ], [ -95.388042037770191, 30.4015233268312 ], [ -95.38798903716102, 30.401202327236856 ], [ -95.388359038058681, 30.401087326574604 ], [ -95.388597037487543, 30.400790327046817 ], [ -95.38854403734581, 30.400492326366297 ], [ -95.388438037158465, 30.400377326987254 ], [ -95.388428037116896, 30.400214327068383 ], [ -95.388424037128843, 30.400154326613993 ], [ -95.387667037308873, 30.400448327157491 ], [ -95.387210037671039, 30.400626327045732 ], [ -95.386767036863461, 30.400869327103948 ], [ -95.386369037221442, 30.401179326760769 ], [ -95.386037037425808, 30.401555326921223 ], [ -95.385662036749594, 30.402177326918427 ], [ -95.385355037284356, 30.402676327755728 ], [ -95.385220037161375, 30.402888327699582 ], [ -95.38497003652185, 30.403158327115847 ], [ -95.384758036831357, 30.403331327640529 ], [ -95.384508036814026, 30.403523327206088 ], [ -95.38427703652566, 30.403658327491929 ], [ -95.384008037005216, 30.403793327525847 ], [ -95.383574035988943, 30.403973328038894 ], [ -95.383362036174105, 30.404028327520603 ], [ -95.382860036210033, 30.40413832740883 ], [ -95.382122035979037, 30.404300327521533 ], [ -95.381285036287338, 30.404498328268367 ], [ -95.381148035372931, 30.404530327955793 ], [ -95.38028903575406, 30.404738327926076 ], [ -95.380065035239397, 30.404784327762535 ], [ -95.379764035561521, 30.404831327973337 ], [ -95.379064035512314, 30.404914328101828 ], [ -95.378384035366992, 30.404874327954357 ], [ -95.377682035383089, 30.40468732829499 ], [ -95.377054035112408, 30.404357327740875 ], [ -95.376518034337991, 30.403910328282198 ], [ -95.376084034554822, 30.40345332816694 ], [ -95.375729034343991, 30.40294932737126 ], [ -95.375189033736831, 30.401916327080691 ], [ -95.374938033919022, 30.401610327511762 ], [ -95.37479103441018, 30.401471327310354 ], [ -95.374602033547973, 30.40129332771356 ], [ -95.374226033691571, 30.401055327545954 ], [ -95.374024033778525, 30.400928327702754 ], [ -95.373080033850698, 30.400567326912441 ], [ -95.372497033299581, 30.400295327041928 ], [ -95.37155303366653, 30.399709326924697 ], [ -95.367880031955323, 30.396735326880897 ], [ -95.367278031999348, 30.396173326922675 ], [ -95.367083032175444, 30.395991326846215 ], [ -95.366585031433829, 30.395677326824497 ], [ -95.366176031075426, 30.39553232696267 ], [ -95.366088031522821, 30.395509326780953 ], [ -95.365525031855626, 30.395363326739687 ], [ -95.364856031545685, 30.395268326406342 ], [ -95.362219030523477, 30.395111326732707 ], [ -95.360697029674768, 30.395021326697201 ], [ -95.359565029630829, 30.395067326852445 ], [ -95.357794029025825, 30.395268326832422 ], [ -95.357463029590804, 30.39530532680342 ], [ -95.356454029073163, 30.395382326442128 ], [ -95.355334028880364, 30.395467327063027 ], [ -95.352561028115701, 30.395632327320261 ], [ -95.351767027887519, 30.395679326945039 ], [ -95.351174027844067, 30.395666326797038 ], [ -95.350598027643656, 30.395567327129903 ], [ -95.350114027179856, 30.39540932695828 ], [ -95.348779027173975, 30.394710327388019 ], [ -95.348340027091325, 30.394535327347334 ], [ -95.347910026449739, 30.394449326907552 ], [ -95.347551026790185, 30.394379327166895 ], [ -95.346743026979311, 30.394410327084788 ], [ -95.346499026481879, 30.394453327110931 ], [ -95.343752025510469, 30.395338327146327 ], [ -95.341461025124389, 30.396264327406701 ], [ -95.339325025221882, 30.397127327765865 ], [ -95.338712024676269, 30.397264327573762 ], [ -95.338082024863553, 30.397288327660583 ], [ -95.337345023907261, 30.397167328110772 ], [ -95.336605024258361, 30.396863327636854 ], [ -95.333044023293567, 30.394448327770057 ], [ -95.33256802244469, 30.394253327849786 ], [ -95.331146022198695, 30.39389532766026 ], [ -95.330547022568837, 30.393753327452263 ], [ -95.330326022444822, 30.393714327454511 ], [ -95.330105022608578, 30.393694327488635 ], [ -95.329988022426235, 30.393688327063749 ], [ -95.329060021495337, 30.393698327710108 ], [ -95.328197022072956, 30.393744327464663 ], [ -95.328136022195721, 30.394873327394809 ], [ -95.327862022329711, 30.399654328729255 ], [ -95.327742021657173, 30.401849329600399 ], [ -95.327578022280008, 30.404757330236329 ], [ -95.327334022462708, 30.409176330644311 ], [ -95.32703502284545, 30.414633331431094 ], [ -95.327028022918526, 30.414768331689956 ], [ -95.326894022941914, 30.41719733277322 ], [ -95.326872022591061, 30.417603332774302 ], [ -95.32665502241791, 30.421346333085154 ], [ -95.326559022677202, 30.422994333316179 ], [ -95.326477023172927, 30.424414333810187 ], [ -95.326273022779844, 30.429736334733803 ], [ -95.326103022574543, 30.429857334890368 ], [ -95.326330022905239, 30.430086335340228 ], [ -95.326565023529696, 30.430267334653106 ], [ -95.327136023490269, 30.430707335463929 ], [ -95.327390023621859, 30.430916335284881 ], [ -95.327752023061976, 30.431340335079877 ], [ -95.327883023348818, 30.431416335354541 ], [ -95.328056023636051, 30.431515334882384 ], [ -95.328278023821014, 30.431719335040661 ], [ -95.328313023545192, 30.431763335017337 ], [ -95.328443023840208, 30.431928335370927 ], [ -95.328545023855696, 30.432197335584473 ], [ -95.32856102413065, 30.432226335136409 ], [ -95.328742023868671, 30.432538335800178 ], [ -95.329243023497582, 30.432994335305366 ], [ -95.329535023895886, 30.433198335235165 ], [ -95.329605023739632, 30.43336833578395 ], [ -95.329727023991438, 30.433863335215094 ], [ -95.329732023598339, 30.433885335599086 ], [ -95.329903024122387, 30.434143335356545 ], [ -95.330000024633364, 30.434415335808914 ], [ -95.330093024043876, 30.434676335735944 ], [ -95.330182024574412, 30.434858336208826 ], [ -95.330283024499607, 30.434978335819199 ], [ -95.330385023842851, 30.435100336163057 ], [ -95.330477024518316, 30.435345336214578 ], [ -95.330500024679154, 30.435407335914405 ], [ -95.330569023878979, 30.435451335752195 ], [ -95.330634024064679, 30.435464336217688 ], [ -95.330734024022917, 30.435484335752189 ], [ -95.330836024524686, 30.435611336156331 ], [ -95.330861024550003, 30.435825336034597 ], [ -95.330842024863884, 30.435913336214043 ], [ -95.330728024181099, 30.436073336002202 ], [ -95.330709023972787, 30.436281336465182 ], [ -95.330773024553011, 30.436804335982721 ], [ -95.330855024352232, 30.437040336027671 ], [ -95.33084902439488, 30.437353336066732 ], [ -95.330989024651089, 30.437936336750763 ], [ -95.330984024547504, 30.437985335957741 ], [ -95.330963024463969, 30.438178336560544 ], [ -95.330848024520066, 30.438364336444501 ], [ -95.330830025016937, 30.438393336911943 ], [ -95.3308180248723, 30.438464336751668 ], [ -95.330830024606868, 30.438624336330978 ], [ -95.33085502466848, 30.438683336372254 ], [ -95.330919024507196, 30.438832336922221 ], [ -95.33091302496409, 30.439008336385875 ], [ -95.33086602500218, 30.439171336667023 ], [ -95.330729024987022, 30.439657336325205 ], [ -95.330715024818218, 30.439732336390154 ], [ -95.330666025039335, 30.439992336853134 ], [ -95.330533025058372, 30.440245336712302 ], [ -95.330550024419324, 30.440639336615654 ], [ -95.330558024869944, 30.440823336858902 ], [ -95.330317024609869, 30.441812337161387 ], [ -95.330247024884059, 30.442615337431711 ], [ -95.330231024790592, 30.442711337759395 ], [ -95.330216024564521, 30.442807337299612 ], [ -95.33028602455137, 30.443104337539641 ], [ -95.330321025087983, 30.443181337907681 ], [ -95.330482024573996, 30.443527337086646 ], [ -95.330705025071211, 30.443824337490298 ], [ -95.330971024981835, 30.444050337814961 ], [ -95.331009025180109, 30.444110337267063 ], [ -95.331098025002802, 30.44449533752892 ], [ -95.331168025208584, 30.44462733802219 ], [ -95.331187025288855, 30.444632337935904 ], [ -95.331409024815528, 30.444687337359206 ], [ -95.331568025392016, 30.444764337939301 ], [ -95.331663025100355, 30.44490233765378 ], [ -95.331790024893394, 30.445170337832621 ], [ -95.331803025079793, 30.445198337399411 ], [ -95.332170024808676, 30.445421337551274 ], [ -95.332183025383557, 30.445429338182201 ], [ -95.332279025642734, 30.445644337916356 ], [ -95.33228902580521, 30.445940338221664 ], [ -95.332291025698822, 30.446012337531119 ], [ -95.332360024983203, 30.44612133760792 ], [ -95.332368025064028, 30.446133338166309 ], [ -95.332482025279418, 30.446204337805611 ], [ -95.332856025306725, 30.446287338047647 ], [ -95.333085025918223, 30.446397337884779 ], [ -95.333109025575382, 30.446417338303917 ], [ -95.333307026100016, 30.446578338466164 ], [ -95.333404025423263, 30.446744337694433 ], [ -95.333520025587973, 30.446943338098261 ], [ -95.333567025414368, 30.447023338234846 ], [ -95.3337260257466, 30.447095338344567 ], [ -95.33384302600642, 30.447108338399087 ], [ -95.334068026105143, 30.447133338344258 ], [ -95.33434802549489, 30.447337338354888 ], [ -95.334532026210027, 30.447798338136067 ], [ -95.33477502642296, 30.447984338321771 ], [ -95.334855026428556, 30.448046338187208 ], [ -95.334995026532866, 30.448194338083233 ], [ -95.335236026242498, 30.44871133848655 ], [ -95.335344026475198, 30.448876338874541 ], [ -95.335425026554105, 30.448946338514528 ], [ -95.335695026771774, 30.449179338761923 ], [ -95.335808026755515, 30.449277338781442 ], [ -95.335858026097824, 30.449331338147449 ], [ -95.335985026367638, 30.449469338627175 ], [ -95.336136026957121, 30.449744338462892 ], [ -95.336157026306353, 30.449783338772413 ], [ -95.336335026112721, 30.450283338788722 ], [ -95.336420026917622, 30.450390338741073 ], [ -95.33658202680256, 30.450519338500435 ], [ -95.336658026588083, 30.450745338763831 ], [ -95.336703026531097, 30.450789338429367 ], [ -95.337045027276616, 30.450893338938481 ], [ -95.337103027262856, 30.451052339154963 ], [ -95.33705502696688, 30.45122733917718 ], [ -95.33700802663769, 30.451399338652543 ], [ -95.337020026787812, 30.45147633870636 ], [ -95.337055026893424, 30.45152833848665 ], [ -95.337382026462478, 30.452009339032188 ], [ -95.337387026968798, 30.452064339048025 ], [ -95.33742002642397, 30.452410339339512 ], [ -95.337471026630126, 30.452564339292852 ], [ -95.337477027331701, 30.452574338668899 ], [ -95.337617027244121, 30.452789339026314 ], [ -95.337712026945013, 30.453059339476859 ], [ -95.337916026980096, 30.453356339505437 ], [ -95.337928027583175, 30.453459339356186 ], [ -95.337966026760185, 30.453790339305701 ], [ -95.338094027318419, 30.454268339253655 ], [ -95.338122027247678, 30.454338339000927 ], [ -95.338368027316321, 30.454941339738394 ], [ -95.338454027557717, 30.455152339608983 ], [ -95.338513027538738, 30.455296339514174 ], [ -95.338563026965971, 30.455505340023826 ], [ -95.33850602723092, 30.455873339797339 ], [ -95.338513026984998, 30.455994339907864 ], [ -95.338672027562268, 30.456236339574676 ], [ -95.339033027080688, 30.456594339615812 ], [ -95.339087027915625, 30.45688534022041 ], [ -95.33917302795426, 30.457347340286375 ], [ -95.339274027882794, 30.457449340103398 ], [ -95.339561028093499, 30.457737340180813 ], [ -95.339700027448657, 30.458188339879211 ], [ -95.339988028080626, 30.458748340061241 ], [ -95.340062028171019, 30.458891340641038 ], [ -95.340179028335811, 30.45930634059593 ], [ -95.340253027909284, 30.459567340758777 ], [ -95.340304027733694, 30.460073340100717 ], [ -95.340390027818231, 30.460357340801878 ], [ -95.340546028026509, 30.460872340705439 ], [ -95.340552028614098, 30.460892340585083 ], [ -95.340583028253761, 30.461096341127124 ], [ -95.340583028299392, 30.461112341173511 ], [ -95.340577027955518, 30.461448340925649 ], [ -95.340452027767626, 30.461938341112152 ], [ -95.340438028550011, 30.461981341197397 ], [ -95.34046302868181, 30.462289340743535 ], [ -95.340494027859364, 30.462370341215028 ], [ -95.340502027932743, 30.462391341040767 ], [ -95.340914028670099, 30.463465340782033 ], [ -95.341070028117997, 30.463768341039888 ], [ -95.341321028405943, 30.464257340903767 ], [ -95.34140302850291, 30.464520341499245 ], [ -95.341683028948466, 30.464817341315857 ], [ -95.341911028402407, 30.465147341419481 ], [ -95.342337029001129, 30.465521341851698 ], [ -95.342904029218786, 30.466129341229585 ], [ -95.343029029091795, 30.466263341618195 ], [ -95.343365029154342, 30.466581341716154 ], [ -95.343644029609919, 30.466966342166376 ], [ -95.343721029088982, 30.467032341433892 ], [ -95.343841028908386, 30.467092342067627 ], [ -95.344184029400367, 30.467263341403868 ], [ -95.344367029133252, 30.467448341687337 ], [ -95.344526029532133, 30.467609341468897 ], [ -95.344635029983763, 30.467719341838773 ], [ -95.345016029725102, 30.467999342141976 ], [ -95.345043029467945, 30.468032342167678 ], [ -95.34519402936678, 30.468214342188229 ], [ -95.345320029249407, 30.468258342384562 ], [ -95.345517030154767, 30.468263341849301 ], [ -95.345619029695115, 30.468313341867674 ], [ -95.345636030196218, 30.468422342037957 ], [ -95.34567002998088, 30.468631342451875 ], [ -95.345727029587408, 30.468774342360796 ], [ -95.345952029635939, 30.469022342057244 ], [ -95.34642503032704, 30.469544342494739 ], [ -95.346835030617896, 30.470117342705795 ], [ -95.346991030717817, 30.47033534245989 ], [ -95.34713703042685, 30.47058334218459 ], [ -95.347331030502275, 30.470966342626088 ], [ -95.347429030557763, 30.471165342715594 ], [ -95.347473030138218, 30.471550342313332 ], [ -95.347523030372756, 30.471608342168171 ], [ -95.347530030395944, 30.471616342954043 ], [ -95.347740030962484, 30.471693343021375 ], [ -95.347816031007156, 30.47174834275134 ], [ -95.347842030982179, 30.471858343021289 ], [ -95.347841030420184, 30.471883342795294 ], [ -95.347823030872746, 30.472188342460075 ], [ -95.347855030713873, 30.472256343033663 ], [ -95.347924030152782, 30.472402342890408 ], [ -95.348032030855407, 30.472792343168557 ], [ -95.348109030463476, 30.473842343357003 ], [ -95.348255031179903, 30.474161342765257 ], [ -95.348617030844721, 30.474568343400325 ], [ -95.348810031404241, 30.474745343493076 ], [ -95.348842031347772, 30.474774342936026 ], [ -95.348947031319994, 30.474870343546659 ], [ -95.349315031086221, 30.475018343009701 ], [ -95.349333030764939, 30.475042343278844 ], [ -95.34948403109486, 30.475247343661589 ], [ -95.349510031104501, 30.475283343161372 ], [ -95.349538031272402, 30.475321343267275 ], [ -95.349608030930128, 30.475359343073812 ], [ -95.349722031651069, 30.475365343617057 ], [ -95.349861031374303, 30.475216342863721 ], [ -95.349939030766876, 30.475173342908263 ], [ -95.349969031195243, 30.475156343125541 ], [ -95.35005203078849, 30.475156343232314 ], [ -95.35018503149432, 30.475233343324234 ], [ -95.350233031191721, 30.475300343658422 ], [ -95.350350031393248, 30.475463343714559 ], [ -95.350369031644036, 30.475519343589685 ], [ -95.3504130309922, 30.475650343518435 ], [ -95.35045203144918, 30.475766343618751 ], [ -95.350712031380652, 30.476062343036876 ], [ -95.350703031888116, 30.476094343144496 ], [ -95.350674031769003, 30.476192343249711 ], [ -95.350649030961819, 30.476277343842781 ], [ -95.350351031476251, 30.476601343337773 ], [ -95.350313031540949, 30.476722343604223 ], [ -95.350389031345742, 30.47686034333519 ], [ -95.350598031132876, 30.477025343145286 ], [ -95.350605031043145, 30.477102343528472 ], [ -95.350459031146073, 30.477321343958494 ], [ -95.350473031810438, 30.477465343240919 ], [ -95.350548031825312, 30.477717343505503 ], [ -95.350478031744984, 30.477915343700953 ], [ -95.350471031103893, 30.477961343778233 ], [ -95.350409031271937, 30.47839434404419 ], [ -95.350455031871789, 30.479033344268956 ], [ -95.350460031545055, 30.479103343692394 ], [ -95.350409031027979, 30.479202344271496 ], [ -95.350206031198994, 30.479339343635917 ], [ -95.350149031036679, 30.479438344327189 ], [ -95.350193031399058, 30.479504343851787 ], [ -95.350511031470589, 30.479548343641817 ], [ -95.350543031495931, 30.479619343757459 ], [ -95.350504031476561, 30.479674343878361 ], [ -95.350370032088122, 30.479713343906752 ], [ -95.350257031732625, 30.479746343791703 ], [ -95.350232031324794, 30.479916343761555 ], [ -95.350295031494269, 30.480010344572936 ], [ -95.350390031147413, 30.480004343780166 ], [ -95.35060003110388, 30.479922344408127 ], [ -95.350689031902789, 30.479966343871368 ], [ -95.350736031605663, 30.480047343930249 ], [ -95.350809031529707, 30.480175344450814 ], [ -95.350892031564499, 30.480559343879595 ], [ -95.351152031790946, 30.480851344576752 ], [ -95.351140031869903, 30.481065344076253 ], [ -95.351165031758157, 30.481164344420105 ], [ -95.351248031885817, 30.481202344418527 ], [ -95.35132803221704, 30.481206344163677 ], [ -95.351553032074989, 30.48121934452691 ], [ -95.351591031859357, 30.481257344477907 ], [ -95.351596031835342, 30.481278344378623 ], [ -95.351648031909377, 30.48151634434323 ], [ -95.351610031590326, 30.481818344927326 ], [ -95.351686032096126, 30.482340344759848 ], [ -95.35172603161584, 30.482475344280452 ], [ -95.351756031885259, 30.482577344731887 ], [ -95.351826032217474, 30.482703344852602 ], [ -95.352068032328503, 30.483027344630194 ], [ -95.352129032689135, 30.48324434451813 ], [ -95.352157031902706, 30.483341344612004 ], [ -95.352430032204666, 30.484011344976892 ], [ -95.352450032623381, 30.484077344755608 ], [ -95.352506032017615, 30.484259345308605 ], [ -95.352483032464875, 30.484426344628041 ], [ -95.352462031886375, 30.484578344771201 ], [ -95.35248703217961, 30.484797344990103 ], [ -95.352684032044948, 30.485105344760818 ], [ -95.352856032598922, 30.486040345326963 ], [ -95.353082032214388, 30.486607345169347 ], [ -95.353123032534015, 30.486710345184541 ], [ -95.353126032468097, 30.486784345600398 ], [ -95.353136032293747, 30.487079345673312 ], [ -95.353288032813879, 30.487331345601444 ], [ -95.353341032960046, 30.487475345915794 ], [ -95.353371032469653, 30.487557345472609 ], [ -95.353384032817246, 30.487854345875181 ], [ -95.353377032630732, 30.487895345599799 ], [ -95.353321032493739, 30.488222345326985 ], [ -95.353327032620427, 30.488310345530927 ], [ -95.353467032520314, 30.488557345466372 ], [ -95.353543032569974, 30.489574345694706 ], [ -95.353499033008816, 30.489954345852404 ], [ -95.353569032542012, 30.490405346079619 ], [ -95.353511032388965, 30.490614346310551 ], [ -95.353487032700897, 30.490701346555849 ], [ -95.353481032735047, 30.490916346406582 ], [ -95.353417033208672, 30.491180346190255 ], [ -95.35342403311482, 30.491729346433907 ], [ -95.353361032936917, 30.491834346655505 ], [ -95.353215032496024, 30.491922346765563 ], [ -95.353164033237903, 30.492032346463375 ], [ -95.353173032654965, 30.492238346432689 ], [ -95.353189032594742, 30.49258734646612 ], [ -95.353177032958769, 30.492664346266917 ], [ -95.353048032715549, 30.492846346581619 ], [ -95.353037032860883, 30.492862346964653 ], [ -95.353031033224553, 30.49292334665904 ], [ -95.353048033383089, 30.492963346816502 ], [ -95.35312003296815, 30.493131347015886 ], [ -95.353114033422699, 30.493176346973193 ], [ -95.353048032600441, 30.493220346938724 ], [ -95.352891033084859, 30.49332434710033 ], [ -95.35289203245334, 30.493491347060662 ], [ -95.352892032569585, 30.493577346751966 ], [ -95.353146033323867, 30.494017347045638 ], [ -95.353158033332406, 30.494104346763585 ], [ -95.353156032924076, 30.494114347377433 ], [ -95.353121032459057, 30.494363346863615 ], [ -95.353167033437828, 30.494431347039367 ], [ -95.353292032649676, 30.494616347001919 ], [ -95.353316033248475, 30.494857346651891 ], [ -95.353337033495151, 30.495072347123529 ], [ -95.353368033341297, 30.495149346905418 ], [ -95.353484032737725, 30.495266347003174 ], [ -95.353623033399742, 30.495407346941988 ], [ -95.353656032957744, 30.495554347275213 ], [ -95.353724032716201, 30.49586334760648 ], [ -95.353830033083909, 30.495997347577024 ], [ -95.354061033460539, 30.49628734756508 ], [ -95.35420103348342, 30.496545347562918 ], [ -95.354220032916714, 30.496629347847765 ], [ -95.354271033817852, 30.496853347411502 ], [ -95.354348033539736, 30.497009347736356 ], [ -95.354366033464018, 30.497045347161354 ], [ -95.354468033339685, 30.497177347924399 ], [ -95.354697033987662, 30.497375347991301 ], [ -95.354722033479874, 30.497397347787849 ], [ -95.354773033575952, 30.497556347477509 ], [ -95.354747033983571, 30.497831347320048 ], [ -95.354843033528752, 30.498007347729718 ], [ -95.354862033819657, 30.498200347869133 ], [ -95.354919034066867, 30.498315347402531 ], [ -95.355025033679922, 30.498421348043884 ], [ -95.35506903396994, 30.498465347953836 ], [ -95.355249033847954, 30.498645347462034 ], [ -95.355554033902536, 30.498820347530021 ], [ -95.355811033434094, 30.499062348122539 ], [ -95.355846033636979, 30.499095348130471 ], [ -95.356066034271265, 30.499243347470792 ], [ -95.356132033606357, 30.499288347726061 ], [ -95.356282034487535, 30.499414348192659 ], [ -95.356405034531818, 30.499518348274197 ], [ -95.35681803465198, 30.500002347952535 ], [ -95.356820034306253, 30.50002334766247 ], [ -95.356864034085234, 30.500417347822665 ], [ -95.356813033885274, 30.500626347758534 ], [ -95.356788033887995, 30.500802347998871 ], [ -95.356775034184636, 30.500983348304615 ], [ -95.356782034618163, 30.501407348436796 ], [ -95.356813034754168, 30.501533348589078 ], [ -95.356883033787454, 30.501715348505709 ], [ -95.356966034206906, 30.501879348757864 ], [ -95.357004034834048, 30.501918348216815 ], [ -95.357042034227334, 30.501929348700816 ], [ -95.357112034182094, 30.501929348669787 ], [ -95.357233034388571, 30.501896348389607 ], [ -95.357283034786178, 30.501896348312492 ], [ -95.357309034089084, 30.501907348019309 ], [ -95.357423034551047, 30.502248348237767 ], [ -95.357468034707111, 30.502336348379924 ], [ -95.357519034442646, 30.502407348420483 ], [ -95.357576034400012, 30.502456348146438 ], [ -95.357690034189034, 30.502522348237822 ], [ -95.357830034767716, 30.502572348813374 ], [ -95.357861034239718, 30.502616348870085 ], [ -95.357906035062996, 30.502863348953539 ], [ -95.358001035119628, 30.503056348706178 ], [ -95.358090034209397, 30.503204348725099 ], [ -95.358325034965063, 30.503528349012022 ], [ -95.358395034268227, 30.503688349047799 ], [ -95.358440035228497, 30.50375434907285 ], [ -95.358942035267063, 30.504259348413932 ], [ -95.359049035026544, 30.504336349157356 ], [ -95.359163035001203, 30.504374348985493 ], [ -95.359392035125367, 30.504451349005816 ], [ -95.359545034593182, 30.504545349219196 ], [ -95.359577035441859, 30.504578348430442 ], [ -95.359583034844306, 30.504721348922288 ], [ -95.359592034754542, 30.504751349233562 ], [ -95.359621035435964, 30.504853349222614 ], [ -95.359710035603754, 30.504935348892836 ], [ -95.359793035330995, 30.504957349265762 ], [ -95.359919035141857, 30.505022348781964 ], [ -95.359983035315949, 30.505056348633044 ], [ -95.360104035046206, 30.505105348922509 ], [ -95.360193035765505, 30.50513334936511 ], [ -95.360421035171413, 30.505171348488414 ], [ -95.360644035599179, 30.505352348919779 ], [ -95.360694035341481, 30.505407348969669 ], [ -95.360701035226512, 30.505440349009078 ], [ -95.360625034905965, 30.505594349408039 ], [ -95.360637035552884, 30.505721349463261 ], [ -95.360828035641518, 30.505825349444773 ], [ -95.360860035668708, 30.506001349311433 ], [ -95.360828035272462, 30.506314348713797 ], [ -95.360841035808207, 30.506380348881667 ], [ -95.360828035065978, 30.506523349601075 ], [ -95.360875035496136, 30.506567349626842 ], [ -95.360905035844908, 30.506595349378628 ], [ -95.360923035936338, 30.506608349026685 ], [ -95.361260035142493, 30.5068423496059 ], [ -95.361292035484681, 30.506903348955674 ], [ -95.361292036131658, 30.506963349681218 ], [ -95.36127303613624, 30.507057348915954 ], [ -95.361229035727007, 30.507111349533684 ], [ -95.361171035866974, 30.507134348945417 ], [ -95.361073035250016, 30.507087349352499 ], [ -95.361044035335965, 30.50707334940493 ], [ -95.360987035716349, 30.507068348894681 ], [ -95.36097503574922, 30.507101349382911 ], [ -95.36098103589643, 30.507139349710908 ], [ -95.361032035261559, 30.507271349575859 ], [ -95.361114035588287, 30.507397349196104 ], [ -95.361277036016801, 30.507527349069797 ], [ -95.361445035232023, 30.507661349320344 ], [ -95.361559035984371, 30.507727349380328 ], [ -95.361762035750303, 30.507793349776481 ], [ -95.361813036303602, 30.507820349477537 ], [ -95.361826035592287, 30.507886349443787 ], [ -95.361585036195578, 30.508073349407002 ], [ -95.361432035736172, 30.508178349403995 ], [ -95.36142003534917, 30.508216349204908 ], [ -95.361439035952571, 30.508244349270818 ], [ -95.361475035678239, 30.508262349482905 ], [ -95.361515035384812, 30.508282349807274 ], [ -95.36167403544755, 30.508326349842015 ], [ -95.361718036257315, 30.508381349259338 ], [ -95.361737035570314, 30.50845334942267 ], [ -95.361731035635799, 30.508519349099718 ], [ -95.361718036176228, 30.508546349702979 ], [ -95.361652035616714, 30.508600349602691 ], [ -95.361617035344381, 30.508629349965016 ], [ -95.361629035675421, 30.508766349189585 ], [ -95.36166803583545, 30.508766349681292 ], [ -95.361706035976823, 30.508728349277369 ], [ -95.361833036214392, 30.50865634949805 ], [ -95.361940036054335, 30.508618349218679 ], [ -95.361985036090587, 30.508618349748648 ], [ -95.362061035606715, 30.508661349261303 ], [ -95.362118035603331, 30.508744349229101 ], [ -95.362106036241855, 30.508799349433716 ], [ -95.362074036202586, 30.508837349171245 ], [ -95.361873035601221, 30.508921349760573 ], [ -95.363012035909335, 30.50893834925736 ], [ -95.36402103629726, 30.508931349554068 ], [ -95.364052036574307, 30.508931349607717 ], [ -95.364352036372537, 30.508933349954425 ], [ -95.364364036308729, 30.508933349097873 ], [ -95.364387036639698, 30.508933349345355 ], [ -95.365302036395519, 30.508939349275757 ], [ -95.36568803706264, 30.508942349557309 ], [ -95.365717037348105, 30.508942349541584 ], [ -95.366055036903219, 30.508937349252893 ], [ -95.366747037105483, 30.508933349015429 ], [ -95.367740036922541, 30.508927349274074 ], [ -95.367753037311275, 30.508927349761926 ], [ -95.367771037165966, 30.508927349375728 ], [ -95.367795036939924, 30.508927349758594 ], [ -95.367828037178, 30.508927349503296 ], [ -95.367875037281536, 30.508927349529529 ], [ -95.36794203720207, 30.508927349686164 ], [ -95.368041037883955, 30.50892734968976 ], [ -95.368128037653833, 30.508927348981754 ], [ -95.368196037018791, 30.5089273497255 ], [ -95.368264037457251, 30.508927349561556 ], [ -95.375366039273629, 30.508943349149433 ], [ -95.380907040510479, 30.50892534857535 ], [ -95.381120040778271, 30.508924349024991 ], [ -95.381180041075055, 30.508924349030735 ], [ -95.392403043679963, 30.508853348934448 ], [ -95.395859044208848, 30.508795348606167 ], [ -95.39880804502107, 30.508824348564719 ], [ -95.402225046738693, 30.508865347795435 ], [ -95.403226046139707, 30.508877348213701 ], [ -95.41107604857838, 30.508876347709865 ], [ -95.411318048760663, 30.508876347476541 ], [ -95.411519048188694, 30.508876348164392 ], [ -95.411584048415676, 30.508876347525717 ], [ -95.41161404881376, 30.508876347991752 ], [ -95.411661048347042, 30.50887634810795 ], [ -95.411803048499735, 30.50887734774906 ], [ -95.414841049061437, 30.508867348064008 ], [ -95.415889049894716, 30.508864347993853 ], [ -95.416877049655213, 30.50886134752896 ], [ -95.417255050473926, 30.50886034789103 ], [ -95.417288050272319, 30.508860347271597 ], [ -95.417318050633767, 30.508860347372249 ], [ -95.417340050141618, 30.508860347241249 ], [ -95.41736805049274, 30.508859347659818 ], [ -95.417471049745131, 30.50885934714184 ], [ -95.417781049952893, 30.508858347501334 ], [ -95.417867050072161, 30.508858347794785 ], [ -95.420987051050275, 30.508848347681383 ], [ -95.426090052395764, 30.508823347405283 ], [ -95.426134052341027, 30.50882334701436 ], [ -95.426192051912949, 30.50882334716507 ], [ -95.430430053462587, 30.508850347225433 ], [ -95.435135054507157, 30.508879346516412 ], [ -95.435719055199655, 30.508883346548515 ], [ -95.435931054870693, 30.508884346646987 ], [ -95.439828056360511, 30.508898347138484 ], [ -95.439843055441969, 30.508898346462111 ], [ -95.44729205794448, 30.508869346183413 ], [ -95.448658058050157, 30.508881346255233 ], [ -95.44868105785747, 30.508881346573396 ], [ -95.448698057875603, 30.508881346104062 ], [ -95.448723058653883, 30.508881346703735 ], [ -95.448756058173061, 30.508881346510083 ], [ -95.448792058467006, 30.508882346558714 ], [ -95.448888057980412, 30.508883346277383 ], [ -95.453111059477393, 30.508899346286373 ], [ -95.456135060232782, 30.508890345810251 ], [ -95.46072506076969, 30.508894345707848 ], [ -95.461402061448183, 30.50889434572936 ], [ -95.46606706232447, 30.508894346220259 ], [ -95.466259062924834, 30.508894345763284 ], [ -95.469366063443061, 30.508893345635283 ], [ -95.47332406431758, 30.508889345917215 ], [ -95.478282065603381, 30.508877345434207 ], [ -95.478423065931864, 30.50887734566744 ], [ -95.481082066034006, 30.508871345016125 ], [ -95.483033067040878, 30.508874344911998 ], [ -95.483337067521845, 30.508865344933657 ], [ -95.483348066550334, 30.508865345338705 ], [ -95.484352066912564, 30.50886634499869 ], [ -95.485722067727735, 30.508858344826098 ], [ -95.485947067808581, 30.508857345222381 ], [ -95.491272069282388, 30.508838344574961 ], [ -95.491453068976185, 30.508836344940939 ], [ -95.49152106924204, 30.508836344985003 ], [ -95.491636069335527, 30.506687344540591 ], [ -95.491725068863104, 30.505035344326618 ], [ -95.491796069418399, 30.503996344134379 ], [ -95.492018068865079, 30.501642343364097 ], [ -95.49225806860845, 30.499652343349702 ], [ -95.492676068780781, 30.497164342213026 ], [ -95.492717068383286, 30.496896342361499 ], [ -95.492801068941404, 30.496322342231167 ], [ -95.493169069108589, 30.493817342123407 ], [ -95.493289068800394, 30.493000341792033 ], [ -95.494002068716952, 30.488509340534968 ], [ -95.494327068536975, 30.486340340422284 ], [ -95.494701068648013, 30.484199340210594 ], [ -95.495026069174301, 30.481969339770139 ], [ -95.495441068691619, 30.479048338790879 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1223, "Tract": "48339692401", "Area_SqMi": 3.7324416556295703, "total_2009": 1050, "total_2010": 1040, "total_2011": 985, "total_2012": 1164, "total_2013": 1219, "total_2014": 1134, "total_2015": 1174, "total_2016": 1084, "total_2017": 1172, "total_2018": 1200, "total_2019": 1129, "total_2020": 1236, "age1": 335, "age2": 685, "age3": 327, "earn1": 309, "earn2": 392, "earn3": 646, "naics_s01": 0, "naics_s02": 2, "naics_s03": 27, "naics_s04": 342, "naics_s05": 215, "naics_s06": 57, "naics_s07": 150, "naics_s08": 1, "naics_s09": 10, "naics_s10": 22, "naics_s11": 14, "naics_s12": 40, "naics_s13": 15, "naics_s14": 93, "naics_s15": 2, "naics_s16": 85, "naics_s17": 0, "naics_s18": 246, "naics_s19": 26, "naics_s20": 0, "race1": 1116, "race2": 118, "race3": 18, "race4": 79, "race5": 2, "race6": 14, "ethnicity1": 923, "ethnicity2": 424, "edu1": 250, "edu2": 292, "edu3": 286, "edu4": 184, "Shape_Length": 50621.914778067054, "Shape_Area": 104054085.22121482, "total_2021": 1147, "total_2022": 1347 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.245419985292571, 30.074351265276423 ], [ -95.245133985375332, 30.074258265668309 ], [ -95.245006985490107, 30.074281265387818 ], [ -95.243374985227121, 30.07430826586463 ], [ -95.242699984866519, 30.074564265510364 ], [ -95.242137984642625, 30.074640265359683 ], [ -95.241426984333529, 30.074297265983052 ], [ -95.241241984587347, 30.074114265419876 ], [ -95.240556984004115, 30.073862265865959 ], [ -95.239712983606296, 30.073724265561207 ], [ -95.239581984378276, 30.073703265434467 ], [ -95.239409984489029, 30.073607266050271 ], [ -95.238683983420657, 30.07568626642718 ], [ -95.227439981366558, 30.075458266534181 ], [ -95.227404981100221, 30.078890267419343 ], [ -95.220175979531788, 30.078961267407315 ], [ -95.219868978883596, 30.078181267256973 ], [ -95.216333978659705, 30.0781112674097 ], [ -95.216329978445415, 30.078247267432356 ], [ -95.213295977074679, 30.078231267833061 ], [ -95.213261977168884, 30.077339267463355 ], [ -95.212922977033813, 30.077366267621841 ], [ -95.211405976416003, 30.074626266704634 ], [ -95.211324977298617, 30.074478266944766 ], [ -95.209057976176283, 30.076277267209797 ], [ -95.20730997641634, 30.077644267640022 ], [ -95.204006974869287, 30.080227268433294 ], [ -95.203770975493214, 30.080433268396124 ], [ -95.203752975358171, 30.080449267939684 ], [ -95.20284397455535, 30.081249268787488 ], [ -95.201150974295032, 30.082740269013268 ], [ -95.200342974131743, 30.083451268582937 ], [ -95.195810973494204, 30.087254269759608 ], [ -95.195730973476984, 30.087326270122134 ], [ -95.195609973823494, 30.087690270305661 ], [ -95.19551597325956, 30.088089270461559 ], [ -95.19547797392201, 30.088322270201953 ], [ -95.195459973493286, 30.088591270588768 ], [ -95.195446973312031, 30.088943270347166 ], [ -95.195428973819133, 30.090024270258674 ], [ -95.195430973599457, 30.092285270951479 ], [ -95.195434973701325, 30.092715271051393 ], [ -95.195440973569603, 30.092987270788363 ], [ -95.195427973351741, 30.093697271078636 ], [ -95.195415973866886, 30.094420271798143 ], [ -95.195424974112711, 30.095144271842837 ], [ -95.195419974176403, 30.095768271734467 ], [ -95.195432973388762, 30.09595027153172 ], [ -95.195465973981342, 30.09608027208343 ], [ -95.19551797425963, 30.096197272026391 ], [ -95.195596974120789, 30.096304271422735 ], [ -95.195694973731577, 30.096378271956326 ], [ -95.195792974347128, 30.096436271901499 ], [ -95.195949973607839, 30.096484272148658 ], [ -95.196113974008711, 30.096500271540659 ], [ -95.197339974448468, 30.096485271994343 ], [ -95.198300974597814, 30.096474272095588 ], [ -95.200057974992816, 30.096458271675047 ], [ -95.202585976140313, 30.096430271179802 ], [ -95.203585976316376, 30.096420271887695 ], [ -95.205644975928465, 30.096393271817693 ], [ -95.205998976140009, 30.096389271375536 ], [ -95.207441977268743, 30.096374271046436 ], [ -95.207722976468503, 30.096369271000782 ], [ -95.2088949768752, 30.096349270947041 ], [ -95.210721977779016, 30.096328271511876 ], [ -95.210797978078261, 30.096327271495117 ], [ -95.212421978096927, 30.096308271072733 ], [ -95.213437978313991, 30.096296270966079 ], [ -95.213949978332948, 30.096291271092309 ], [ -95.215769979434882, 30.096306270832585 ], [ -95.216565979643107, 30.096260270839561 ], [ -95.217685979594819, 30.096256271232992 ], [ -95.218100979939663, 30.096254270912052 ], [ -95.218724980244971, 30.096236271044091 ], [ -95.21923397960343, 30.096228271130517 ], [ -95.221074980137274, 30.09619727039161 ], [ -95.221440980636743, 30.096196270825352 ], [ -95.221597980664171, 30.096195271057955 ], [ -95.221753980050934, 30.096194270968443 ], [ -95.223100980672115, 30.096188270572267 ], [ -95.223289980939157, 30.096180270904178 ], [ -95.223480980484467, 30.096196270440426 ], [ -95.223527981279062, 30.096204270782248 ], [ -95.223623980871224, 30.096219270588847 ], [ -95.223803981005076, 30.096213270297756 ], [ -95.224008981504156, 30.096313271186538 ], [ -95.224222980947388, 30.096390270749723 ], [ -95.224472981718918, 30.096488270840659 ], [ -95.225359981311286, 30.09689227113596 ], [ -95.225501981752771, 30.096947270861314 ], [ -95.22571898121582, 30.097032270693408 ], [ -95.225770982002516, 30.097050270602299 ], [ -95.225859981729585, 30.097080271172061 ], [ -95.226010982076929, 30.097117270585997 ], [ -95.226190982180754, 30.097152271301958 ], [ -95.226401982196919, 30.097180271167922 ], [ -95.226817981998281, 30.097200270980455 ], [ -95.22711698234545, 30.09720327046449 ], [ -95.227352982370277, 30.097215270452015 ], [ -95.22759798256277, 30.097233271210133 ], [ -95.227802982256321, 30.097261271096919 ], [ -95.229118982216306, 30.097537270999158 ], [ -95.230973983263524, 30.09793327123678 ], [ -95.231279982839908, 30.097999271277587 ], [ -95.23043698311379, 30.100384270976821 ], [ -95.229747983326547, 30.102336272160667 ], [ -95.232270983567091, 30.103199271527835 ], [ -95.233097984005141, 30.103496271545847 ], [ -95.234189984232927, 30.103889271901586 ], [ -95.234734983826797, 30.104069271859494 ], [ -95.235113984310289, 30.104168272000987 ], [ -95.235439984710624, 30.104239271635226 ], [ -95.235543984096836, 30.10426227239055 ], [ -95.235650984006071, 30.104283272070219 ], [ -95.235981984921537, 30.104346271655967 ], [ -95.236414985185306, 30.104404271950006 ], [ -95.236486984399832, 30.104157271929797 ], [ -95.237028984789433, 30.102303271085948 ], [ -95.237637984602827, 30.100318270849893 ], [ -95.238727985181953, 30.096772269995963 ], [ -95.239501985069708, 30.094226269828162 ], [ -95.240650984935669, 30.090318268841614 ], [ -95.240885985520052, 30.089538268731093 ], [ -95.241224985224164, 30.088416268971038 ], [ -95.241815985601178, 30.086501267995221 ], [ -95.242339984899616, 30.084738268065518 ], [ -95.242780985707924, 30.083273267345621 ], [ -95.243738985779331, 30.080044266732141 ], [ -95.244145985319193, 30.078690266057627 ], [ -95.244969985645923, 30.075940265801457 ], [ -95.245419985292571, 30.074351265276423 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1224, "Tract": "48339692402", "Area_SqMi": 2.7984338853456658, "total_2009": 3242, "total_2010": 3240, "total_2011": 4218, "total_2012": 4395, "total_2013": 3455, "total_2014": 3602, "total_2015": 3861, "total_2016": 4114, "total_2017": 4354, "total_2018": 4536, "total_2019": 4913, "total_2020": 4658, "age1": 1413, "age2": 3105, "age3": 1204, "earn1": 924, "earn2": 1368, "earn3": 3430, "naics_s01": 0, "naics_s02": 141, "naics_s03": 59, "naics_s04": 92, "naics_s05": 139, "naics_s06": 176, "naics_s07": 491, "naics_s08": 53, "naics_s09": 22, "naics_s10": 424, "naics_s11": 51, "naics_s12": 328, "naics_s13": 1470, "naics_s14": 487, "naics_s15": 13, "naics_s16": 634, "naics_s17": 64, "naics_s18": 870, "naics_s19": 208, "naics_s20": 0, "race1": 4546, "race2": 734, "race3": 30, "race4": 341, "race5": 5, "race6": 66, "ethnicity1": 4373, "ethnicity2": 1349, "edu1": 686, "edu2": 1076, "edu3": 1341, "edu4": 1206, "Shape_Length": 45658.382346664992, "Shape_Area": 78015547.155974746, "total_2021": 4817, "total_2022": 5722 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.254834986009897, 30.039605257919785 ], [ -95.254720985939414, 30.039718258536748 ], [ -95.254674986810556, 30.039756258140564 ], [ -95.254500986558568, 30.039912258316551 ], [ -95.250616985961102, 30.042967258514025 ], [ -95.250540985405451, 30.043026259260429 ], [ -95.250509985804001, 30.043051258661489 ], [ -95.250478985672501, 30.043075258848379 ], [ -95.250425985485805, 30.043119259027407 ], [ -95.250371985363287, 30.043157258694713 ], [ -95.25020898508231, 30.043272258646116 ], [ -95.250086985291702, 30.043351259141119 ], [ -95.249887984981953, 30.043502259421924 ], [ -95.249860985691271, 30.043523258913428 ], [ -95.249729984820888, 30.043614259060412 ], [ -95.249715984831838, 30.043624259221808 ], [ -95.249532985035842, 30.043770259174874 ], [ -95.24607998451998, 30.046533259611699 ], [ -95.245714984152173, 30.046823260222656 ], [ -95.244051983663212, 30.04813326032334 ], [ -95.243736983836413, 30.048368260647699 ], [ -95.241953983320016, 30.049731260252059 ], [ -95.241921983690546, 30.04976726059224 ], [ -95.241641983993702, 30.050082260460819 ], [ -95.241514983639064, 30.05022626051862 ], [ -95.240640983336192, 30.050842261029469 ], [ -95.24010398366228, 30.051222260987505 ], [ -95.23972998360513, 30.051488260701053 ], [ -95.239641983425244, 30.051550261169389 ], [ -95.239436983283795, 30.051721260941701 ], [ -95.239398982811068, 30.051751260996301 ], [ -95.239335983023622, 30.051799260903039 ], [ -95.239320983469071, 30.051811261113844 ], [ -95.239028982785754, 30.052042261194856 ], [ -95.238987983235617, 30.052074261337975 ], [ -95.238725982978352, 30.052302261555013 ], [ -95.23841998324157, 30.052554261368847 ], [ -95.23812498307322, 30.052797261568166 ], [ -95.238060982586973, 30.052850261337333 ], [ -95.237963982719549, 30.052930261446093 ], [ -95.237730982230374, 30.053121261128457 ], [ -95.237477982918136, 30.053330261842142 ], [ -95.237302982057784, 30.053475261850991 ], [ -95.237106982774918, 30.053636261909226 ], [ -95.236831982324006, 30.053863261802913 ], [ -95.236556982340886, 30.054089261970155 ], [ -95.236523982259612, 30.05411626197586 ], [ -95.235866982431389, 30.054658261659892 ], [ -95.235672982432064, 30.054817262237332 ], [ -95.235352982577893, 30.055081262306942 ], [ -95.235175981657818, 30.055227262360631 ], [ -95.234602981659009, 30.055726261877535 ], [ -95.234060981344243, 30.056199262317637 ], [ -95.23386698173627, 30.056358262175586 ], [ -95.232891982073113, 30.057009262404648 ], [ -95.231948981481494, 30.05779826246966 ], [ -95.231381981644191, 30.058246263094475 ], [ -95.231304980860941, 30.058309262602517 ], [ -95.23100898114653, 30.058671262440395 ], [ -95.230665981524965, 30.058871263119528 ], [ -95.230211981503814, 30.059221263280801 ], [ -95.229721980648378, 30.059641263264034 ], [ -95.229280981302324, 30.060117263311728 ], [ -95.228822980805788, 30.060489263385428 ], [ -95.228276980187559, 30.060935263533096 ], [ -95.227618980550716, 30.061472263167357 ], [ -95.227528980854601, 30.061545263123715 ], [ -95.227431979933698, 30.061622263649792 ], [ -95.227335980234272, 30.061699263328478 ], [ -95.227222980847586, 30.061802263881074 ], [ -95.227049980459398, 30.061953263399037 ], [ -95.222746979357652, 30.065416264527734 ], [ -95.222480979811621, 30.065631264737291 ], [ -95.222115979649374, 30.065923264597149 ], [ -95.220830978594122, 30.067011265320822 ], [ -95.220805978779708, 30.067031264715137 ], [ -95.220140978746613, 30.067515265203536 ], [ -95.219716978466067, 30.067823265446858 ], [ -95.219672978964411, 30.067868265169395 ], [ -95.219066978737189, 30.068484265187834 ], [ -95.21901897889289, 30.068533265376832 ], [ -95.218716978125528, 30.068727265400923 ], [ -95.218691979006053, 30.068744265052224 ], [ -95.218656978723487, 30.068770264901708 ], [ -95.218470978697027, 30.068916265687093 ], [ -95.218307978437281, 30.069043265263375 ], [ -95.215136977711111, 30.071523266395502 ], [ -95.214855977398102, 30.071742265876246 ], [ -95.214124977806534, 30.072311266108407 ], [ -95.212812977449076, 30.073332266756907 ], [ -95.212345977415865, 30.073700266984886 ], [ -95.212055976631845, 30.073929266245734 ], [ -95.211898976581566, 30.074051266216077 ], [ -95.211879977295638, 30.074066266547543 ], [ -95.211324977298617, 30.074478266944766 ], [ -95.211405976416003, 30.074626266704634 ], [ -95.212922977033813, 30.077366267621841 ], [ -95.213261977168884, 30.077339267463355 ], [ -95.213295977074679, 30.078231267833061 ], [ -95.216329978445415, 30.078247267432356 ], [ -95.216333978659705, 30.0781112674097 ], [ -95.219868978883596, 30.078181267256973 ], [ -95.220175979531788, 30.078961267407315 ], [ -95.227404981100221, 30.078890267419343 ], [ -95.227439981366558, 30.075458266534181 ], [ -95.238683983420657, 30.07568626642718 ], [ -95.239409984489029, 30.073607266050271 ], [ -95.239581984378276, 30.073703265434467 ], [ -95.239712983606296, 30.073724265561207 ], [ -95.240556984004115, 30.073862265865959 ], [ -95.241241984587347, 30.074114265419876 ], [ -95.241426984333529, 30.074297265983052 ], [ -95.242137984642625, 30.074640265359683 ], [ -95.242699984866519, 30.074564265510364 ], [ -95.243374985227121, 30.07430826586463 ], [ -95.245006985490107, 30.074281265387818 ], [ -95.245133985375332, 30.074258265668309 ], [ -95.245419985292571, 30.074351265276423 ], [ -95.246082985850606, 30.072211264950404 ], [ -95.246274986221394, 30.071590264676473 ], [ -95.24675098623041, 30.070048264455352 ], [ -95.246818986186483, 30.069792264650079 ], [ -95.246892986266758, 30.069532264102499 ], [ -95.24757498558327, 30.067260264244489 ], [ -95.248323985724653, 30.06479626378604 ], [ -95.24883998553085, 30.063123263213797 ], [ -95.249040986442083, 30.062451262623302 ], [ -95.24963898619265, 30.060435262391678 ], [ -95.249743986109252, 30.06007126256727 ], [ -95.250641986402016, 30.05696126179711 ], [ -95.250855986180696, 30.056141261228657 ], [ -95.251170986245796, 30.055125261737587 ], [ -95.251757986722652, 30.052827261255274 ], [ -95.251796986027415, 30.052674260918135 ], [ -95.251824986054132, 30.052573260908613 ], [ -95.251854986394179, 30.052474260900564 ], [ -95.251890986182573, 30.052330260728592 ], [ -95.252560986494601, 30.049640260403045 ], [ -95.252884986342622, 30.048317259647245 ], [ -95.253767985997882, 30.044522259465161 ], [ -95.254834986009897, 30.039605257919785 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1225, "Tract": "48339692202", "Area_SqMi": 28.859866575120169, "total_2009": 405, "total_2010": 360, "total_2011": 433, "total_2012": 411, "total_2013": 505, "total_2014": 511, "total_2015": 387, "total_2016": 332, "total_2017": 349, "total_2018": 344, "total_2019": 370, "total_2020": 358, "age1": 74, "age2": 189, "age3": 83, "earn1": 49, "earn2": 91, "earn3": 206, "naics_s01": 0, "naics_s02": 55, "naics_s03": 0, "naics_s04": 64, "naics_s05": 93, "naics_s06": 10, "naics_s07": 15, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 27, "naics_s13": 0, "naics_s14": 41, "naics_s15": 0, "naics_s16": 18, "naics_s17": 10, "naics_s18": 2, "naics_s19": 9, "naics_s20": 0, "race1": 298, "race2": 23, "race3": 6, "race4": 13, "race5": 0, "race6": 6, "ethnicity1": 269, "ethnicity2": 77, "edu1": 59, "edu2": 79, "edu3": 85, "edu4": 49, "Shape_Length": 185961.27024263362, "Shape_Area": 804563685.95905447, "total_2021": 342, "total_2022": 346 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.430212040230927, 30.234028291416884 ], [ -95.430211040546794, 30.233684291060065 ], [ -95.430053040236842, 30.233455291578164 ], [ -95.429525040411647, 30.233364291496962 ], [ -95.429446040491911, 30.233180291056993 ], [ -95.42968304035621, 30.23281429117079 ], [ -95.429709040110552, 30.232333291075289 ], [ -95.429392040576104, 30.231875290856369 ], [ -95.428744040122822, 30.231538291287318 ], [ -95.427679039846936, 30.23197429135795 ], [ -95.427330039217026, 30.232044291653548 ], [ -95.427138039447343, 30.232044291487551 ], [ -95.426946039518896, 30.231992291552967 ], [ -95.426772038949409, 30.231939291625331 ], [ -95.426580039026888, 30.231817291240439 ], [ -95.4264230397864, 30.231608291395709 ], [ -95.426336039666339, 30.231416291479754 ], [ -95.426318039632008, 30.231189290880316 ], [ -95.426371038857042, 30.230980290741918 ], [ -95.426405038884539, 30.230892291198323 ], [ -95.426702039264384, 30.230508290714198 ], [ -95.426859039654644, 30.230264290653643 ], [ -95.426894039773757, 30.230124290910716 ], [ -95.426929039110178, 30.229950291122947 ], [ -95.426824038885385, 30.229636290683295 ], [ -95.426580039508266, 30.229234290904557 ], [ -95.426318039036857, 30.228816290594846 ], [ -95.426161038959819, 30.228501290913254 ], [ -95.426109039329901, 30.228292290427401 ], [ -95.42607403939526, 30.227995290320191 ], [ -95.426091039138569, 30.227437290794306 ], [ -95.426091038736985, 30.227070289994852 ], [ -95.426091039283833, 30.226896289809705 ], [ -95.426048039339477, 30.226311289983805 ], [ -95.426065038569661, 30.22566529038059 ], [ -95.426065039195791, 30.225212289593113 ], [ -95.42604803903609, 30.224950289521487 ], [ -95.425995039249088, 30.224723289575586 ], [ -95.425908039013706, 30.224566289615868 ], [ -95.425821039047364, 30.224409289589598 ], [ -95.425734039146874, 30.224322289647713 ], [ -95.42555903864212, 30.224234289867503 ], [ -95.425350039121795, 30.224147289608364 ], [ -95.424948038462659, 30.223990289240376 ], [ -95.424582038888971, 30.223885289481437 ], [ -95.424233038069644, 30.223833289525682 ], [ -95.423496037911818, 30.223860289372563 ], [ -95.422889037716999, 30.223973289824826 ], [ -95.422592038014344, 30.224007289895766 ], [ -95.421632037784548, 30.224304289869881 ], [ -95.420969037329925, 30.224496289716612 ], [ -95.420707037892399, 30.224531290129555 ], [ -95.420166037783389, 30.224583289933946 ], [ -95.418753037080009, 30.224810289899398 ], [ -95.418142036971062, 30.224932289859375 ], [ -95.417322036845221, 30.225194290076427 ], [ -95.41685103633418, 30.225264289798623 ], [ -95.416432036714497, 30.225264289997611 ], [ -95.415908036203618, 30.225212289837803 ], [ -95.415437036568846, 30.225107290187651 ], [ -95.414896035696216, 30.224880290150271 ], [ -95.414608035923081, 30.224697290398122 ], [ -95.413980035536653, 30.224121289869785 ], [ -95.413386035811456, 30.223493290417291 ], [ -95.413107035586208, 30.22319629001753 ], [ -95.412898035653825, 30.222864290198245 ], [ -95.412636034962219, 30.222288289425023 ], [ -95.412479034823576, 30.221870289733214 ], [ -95.412357035453596, 30.2214332896482 ], [ -95.412147035478625, 30.220788289078925 ], [ -95.411973035576864, 30.220421289291647 ], [ -95.411746035095774, 30.220107289807618 ], [ -95.410934034462144, 30.219025289561703 ], [ -95.410542034615077, 30.218702289478156 ], [ -95.410123034267585, 30.218388289096044 ], [ -95.410062034586701, 30.218356289313931 ], [ -95.40979203470836, 30.218213288955901 ], [ -95.40958603399811, 30.218104288610441 ], [ -95.409316034303274, 30.217895289247586 ], [ -95.40904503398275, 30.217685288793408 ], [ -95.408818033719555, 30.217494288837536 ], [ -95.408609033938674, 30.217310289329497 ], [ -95.408399034495346, 30.217066289020735 ], [ -95.408216033896423, 30.21683028925996 ], [ -95.407797034047789, 30.216394288319641 ], [ -95.407186033186235, 30.215774289013229 ], [ -95.406707033135561, 30.215329288600394 ], [ -95.406493033199339, 30.21517228873881 ], [ -95.406353033458089, 30.215085288263502 ], [ -95.406152033860522, 30.215024288711533 ], [ -95.405908033127801, 30.214937288259168 ], [ -95.405742033332487, 30.214893288171993 ], [ -95.405603033575744, 30.214893288870119 ], [ -95.405524033168021, 30.214884288771525 ], [ -95.405411032928953, 30.214893288429479 ], [ -95.405254033268605, 30.214928288669629 ], [ -95.40496603326541, 30.215033288406886 ], [ -95.404643033294292, 30.215164288306166 ], [ -95.404407033379258, 30.215295289045507 ], [ -95.404041032329388, 30.215556288747536 ], [ -95.403683032265903, 30.215827288989324 ], [ -95.403168033157712, 30.216281288583055 ], [ -95.402418032302506, 30.216970288904843 ], [ -95.402025032844136, 30.217293289174009 ], [ -95.401920032595584, 30.217380289283049 ], [ -95.401807031924548, 30.217432288970542 ], [ -95.401710032423125, 30.21746728961811 ], [ -95.401513031917162, 30.217519289252543 ], [ -95.401269031755774, 30.217519289242514 ], [ -95.400693031743899, 30.217484289359803 ], [ -95.400100031944888, 30.217362289391467 ], [ -95.399716031787236, 30.217257289613162 ], [ -95.399559031366337, 30.217170289492778 ], [ -95.399349032064109, 30.217100289261079 ], [ -95.398878031611304, 30.217030288949267 ], [ -95.398651031611649, 30.217030289469591 ], [ -95.398232031455635, 30.216943289229778 ], [ -95.397866031059948, 30.216768289132958 ], [ -95.39763903150822, 30.216576289529737 ], [ -95.397360031589997, 30.216245289540009 ], [ -95.396697030821514, 30.215302289092332 ], [ -95.396191030566669, 30.214587288466067 ], [ -95.396034030877743, 30.214307288909701 ], [ -95.395981030256323, 30.214133288909078 ], [ -95.395981030749184, 30.213976288910633 ], [ -95.395981030784256, 30.213732288970672 ], [ -95.395999030985678, 30.213470288273705 ], [ -95.396034030763659, 30.213278288829219 ], [ -95.39606803033216, 30.213121288372257 ], [ -95.396138030666762, 30.212981288534671 ], [ -95.396278030598509, 30.212702288710474 ], [ -95.396400030545692, 30.212562288205856 ], [ -95.396540031164122, 30.212423288398618 ], [ -95.396732030764241, 30.212248288149159 ], [ -95.39715003066668, 30.211899288014823 ], [ -95.397342030687582, 30.211742288533536 ], [ -95.397517030771226, 30.211550288178461 ], [ -95.397639031378489, 30.211341288227235 ], [ -95.397709031163259, 30.211131288291064 ], [ -95.397826030579949, 30.210481288013739 ], [ -95.39789703076994, 30.210128288197268 ], [ -95.397940030568421, 30.209875288014185 ], [ -95.398001030522025, 30.209639287344192 ], [ -95.398062031193788, 30.209447288013855 ], [ -95.398080031433224, 30.209303287362715 ], [ -95.398080030986748, 30.209137287197034 ], [ -95.39808003131769, 30.208980287854487 ], [ -95.398045031009474, 30.208832287757502 ], [ -95.397966031173965, 30.20866628730656 ], [ -95.397835031261579, 30.208465287278312 ], [ -95.397652031183028, 30.208247287328199 ], [ -95.397495030663364, 30.208090287410627 ], [ -95.397356031011512, 30.207968287699227 ], [ -95.39707603096609, 30.207837287373231 ], [ -95.396911030420029, 30.207785287331404 ], [ -95.396701030828424, 30.207759287139247 ], [ -95.396457030660031, 30.207741286967838 ], [ -95.395933030787106, 30.207750287622446 ], [ -95.395549030105997, 30.207759286987866 ], [ -95.395165029715685, 30.207741287304049 ], [ -95.394572029782438, 30.207645287647168 ], [ -95.394075030234873, 30.207532287758575 ], [ -95.393630030149936, 30.207392287706941 ], [ -95.393228029983348, 30.207209287052837 ], [ -95.39300102952599, 30.207069287557093 ], [ -95.392818029991219, 30.206903287405236 ], [ -95.392705029149795, 30.206755287317211 ], [ -95.39260002959351, 30.206554287141739 ], [ -95.39253002967024, 30.20637128701474 ], [ -95.392495029146701, 30.206153287376655 ], [ -95.392505029347376, 30.205570286950927 ], [ -95.392696029822091, 30.20425528650232 ], [ -95.39276602891546, 30.203679287050004 ], [ -95.392870029312107, 30.203103286191858 ], [ -95.393150029830537, 30.201969286324172 ], [ -95.393272029660466, 30.201393286138135 ], [ -95.393272029482503, 30.200782285751774 ], [ -95.393307029788843, 30.200398286056931 ], [ -95.393289029634417, 30.200067286396241 ], [ -95.393219029359116, 30.199683286084181 ], [ -95.393080029358515, 30.199229286189308 ], [ -95.39292302870895, 30.19877528557123 ], [ -95.392783029083972, 30.198566285324723 ], [ -95.392486029187182, 30.198339285463167 ], [ -95.391685029029389, 30.197919285593297 ], [ -95.390964028259191, 30.197689285374931 ], [ -95.39045802858567, 30.197497285478324 ], [ -95.389952028623611, 30.197357285262765 ], [ -95.38942802839837, 30.197235285736994 ], [ -95.389201028265475, 30.197113285697665 ], [ -95.388887028074677, 30.196607284993885 ], [ -95.388660028078874, 30.19629328526759 ], [ -95.38846802779149, 30.195996285588709 ], [ -95.388137027313391, 30.195752285482289 ], [ -95.388102027430037, 30.195664284996727 ], [ -95.388014027856556, 30.195560285467174 ], [ -95.387840027992098, 30.195263284939774 ], [ -95.387508027566739, 30.194443284895847 ], [ -95.387159027432901, 30.193867284703991 ], [ -95.386426027008341, 30.19296828517199 ], [ -95.385711027297219, 30.19213028425942 ], [ -95.385100026521869, 30.191450284604901 ], [ -95.384856026692518, 30.191170284492443 ], [ -95.384524026375686, 30.190769284306917 ], [ -95.384332026312677, 30.19031528443433 ], [ -95.384140026463072, 30.18984428413199 ], [ -95.383791026127042, 30.188849283979714 ], [ -95.38361602625325, 30.188465283738388 ], [ -95.383320026131656, 30.188064284149561 ], [ -95.383041026623772, 30.187732284216292 ], [ -95.382622026303991, 30.187314283836518 ], [ -95.382039025398953, 30.186695283981532 ], [ -95.381496025734904, 30.185894283863604 ], [ -95.381499025491138, 30.18568428332236 ], [ -95.381525025549266, 30.185578283405896 ], [ -95.381693026033957, 30.185182283430841 ], [ -95.381781025883711, 30.18491728364123 ], [ -95.381860026132202, 30.184740283190322 ], [ -95.38191302557702, 30.184652283515444 ], [ -95.382019026030633, 30.18452928348168 ], [ -95.382107025423309, 30.184449283379855 ], [ -95.382502025940624, 30.184226282679898 ], [ -95.383045026248766, 30.184003283078667 ], [ -95.38322302562409, 30.183914283249944 ], [ -95.383463025983147, 30.183763283071059 ], [ -95.383641026507746, 30.18361228335792 ], [ -95.383811025687493, 30.183452283168076 ], [ -95.383926026566485, 30.183265283158526 ], [ -95.384104025921886, 30.182926282848722 ], [ -95.384158026213512, 30.182740282561273 ], [ -95.384211026339827, 30.182410282656924 ], [ -95.384211025836677, 30.182232282679426 ], [ -95.384176026058753, 30.182019282554339 ], [ -95.384122025887905, 30.181885282197044 ], [ -95.384006026584657, 30.181685282506002 ], [ -95.383677026150849, 30.181156282742222 ], [ -95.383392025773745, 30.180448282038469 ], [ -95.383348025682594, 30.180261282526974 ], [ -95.383321026142383, 30.179816282544795 ], [ -95.38327702534859, 30.179575281693005 ], [ -95.383214025925071, 30.179406282363459 ], [ -95.383018026074325, 30.179130282430961 ], [ -95.382734025139527, 30.178752282401099 ], [ -95.382484025328552, 30.178360282245013 ], [ -95.382342025342439, 30.178200282309813 ], [ -95.382128025590973, 30.177987282023622 ], [ -95.382013025698839, 30.17789828157548 ], [ -95.381425024894668, 30.1776222813807 ], [ -95.380508024801117, 30.177221281526119 ], [ -95.380135024994473, 30.177008281692938 ], [ -95.379432025225896, 30.176589281421087 ], [ -95.379227024810916, 30.176429281353151 ], [ -95.379022024691665, 30.17625128169853 ], [ -95.378915024427556, 30.176113281150347 ], [ -95.378862024903214, 30.176024281948585 ], [ -95.378835025014226, 30.175882281548539 ], [ -95.378853024674299, 30.175650281894139 ], [ -95.379004024664539, 30.175223281826174 ], [ -95.379138024056303, 30.174894281677918 ], [ -95.37973602427391, 30.173495280827968 ], [ -95.380153024461478, 30.172834280785107 ], [ -95.380533025278538, 30.172296280900266 ], [ -95.380903024975026, 30.171846280779292 ], [ -95.381106024528961, 30.17160728054052 ], [ -95.381265024835301, 30.171387280116349 ], [ -95.381503025348934, 30.171016280606114 ], [ -95.381785024863504, 30.170513280127608 ], [ -95.381944025184296, 30.170244280185166 ], [ -95.382085025281683, 30.169980279869943 ], [ -95.382112025554392, 30.169883280098336 ], [ -95.382130025464676, 30.169583279856127 ], [ -95.382112025078129, 30.169459280107073 ], [ -95.382059025448953, 30.169230280395958 ], [ -95.381909025096178, 30.168762279871768 ], [ -95.381812024663049, 30.168533280023688 ], [ -95.381680025280616, 30.168250279639107 ], [ -95.381530024881968, 30.168039279559732 ], [ -95.381371024859874, 30.16788927982612 ], [ -95.380788024847561, 30.16749227992355 ], [ -95.380347024940662, 30.167196280022999 ], [ -95.380144024428247, 30.167090279671861 ], [ -95.379712024792909, 30.166931279496708 ], [ -95.379527023923529, 30.166905279712083 ], [ -95.378927023780875, 30.166887279791759 ], [ -95.378150024238138, 30.166834279565503 ], [ -95.377453024071812, 30.166781279764447 ], [ -95.377259023705179, 30.166746279913522 ], [ -95.377012023112044, 30.166667279906129 ], [ -95.376598023856857, 30.166473279919007 ], [ -95.376126023232985, 30.166217279698241 ], [ -95.3757290229631, 30.165978279248776 ], [ -95.375393022866717, 30.16580228001208 ], [ -95.375199022908561, 30.165696279733993 ], [ -95.375058023531608, 30.165608279524509 ], [ -95.374934022930546, 30.165493279177102 ], [ -95.374811023494786, 30.165334279777991 ], [ -95.374740023316122, 30.165184279809331 ], [ -95.374696023188605, 30.165052279200836 ], [ -95.374567022817772, 30.164612279802476 ], [ -95.374524023412377, 30.16430727914004 ], [ -95.374507022593662, 30.16409527909218 ], [ -95.374515022926346, 30.163954279569392 ], [ -95.374577022769557, 30.163733279005054 ], [ -95.374718022638888, 30.163433279474017 ], [ -95.374930022694912, 30.163001279185607 ], [ -95.375089023198299, 30.162727279057613 ], [ -95.375265023113414, 30.162357278554882 ], [ -95.37530902312929, 30.1621892790324 ], [ -95.375336023464186, 30.161933278636212 ], [ -95.375318022593575, 30.161774278580904 ], [ -95.375274023230986, 30.16154527916709 ], [ -95.375221022476211, 30.161324278306651 ], [ -95.375159022478144, 30.16121027852256 ], [ -95.375098022804494, 30.161130279117238 ], [ -95.37497402243288, 30.160998279089064 ], [ -95.374868023036285, 30.160874278516214 ], [ -95.374630022347176, 30.16072027833075 ], [ -95.3742640228147, 30.160517278855288 ], [ -95.37397302288413, 30.16038527824492 ], [ -95.373770022136327, 30.160332278243565 ], [ -95.373390021949774, 30.160305278225582 ], [ -95.372799022370671, 30.160297278739165 ], [ -95.372270021904683, 30.160314278215846 ], [ -95.371979022024419, 30.160341278624013 ], [ -95.371308021765529, 30.160447278831761 ], [ -95.371149021610179, 30.160455278486829 ], [ -95.370982021749228, 30.160420278946415 ], [ -95.370647021263963, 30.16033227899965 ], [ -95.370401021845012, 30.160252278645164 ], [ -95.370205021856094, 30.16015527898232 ], [ -95.370064022045511, 30.160049279007598 ], [ -95.369976021899461, 30.159944278348323 ], [ -95.369861021302214, 30.159776278138526 ], [ -95.36976402118799, 30.159591278538322 ], [ -95.369632021836992, 30.15930827853785 ], [ -95.369553021429027, 30.159035278155976 ], [ -95.369517020954163, 30.158779278573807 ], [ -95.369508021328414, 30.158523278309559 ], [ -95.369500021001542, 30.158311278722707 ], [ -95.369508020799955, 30.158135278327716 ], [ -95.369530021273746, 30.157963278537437 ], [ -95.369654020849495, 30.15751327854494 ], [ -95.369760021060713, 30.157151278136759 ], [ -95.369839021512377, 30.156878278231943 ], [ -95.369892020882943, 30.156639277716327 ], [ -95.3699100214791, 30.156428278319805 ], [ -95.369919020802513, 30.156234278239264 ], [ -95.369892021306697, 30.156004278150863 ], [ -95.369839021088126, 30.155722277622729 ], [ -95.369785021468758, 30.155548277453757 ], [ -95.369672021192926, 30.155343277542322 ], [ -95.369504021537935, 30.155104277332164 ], [ -95.369398021619872, 30.155016277928198 ], [ -95.369160020810796, 30.154901277817256 ], [ -95.368745021140995, 30.154707277305565 ], [ -95.368286020749338, 30.154540277770895 ], [ -95.368092021292455, 30.154496277196554 ], [ -95.367898020967885, 30.154478277749607 ], [ -95.367731020717102, 30.154504277746152 ], [ -95.367272020843515, 30.154681277276996 ], [ -95.366989020857304, 30.154778277335506 ], [ -95.366751020506229, 30.154831277257138 ], [ -95.366557020568735, 30.154848277528412 ], [ -95.366345019870707, 30.154831278003556 ], [ -95.366142020287086, 30.154778277735424 ], [ -95.36600102026712, 30.154716277483519 ], [ -95.365816019861413, 30.154619277310438 ], [ -95.365521019812846, 30.154394277302114 ], [ -95.365269019612128, 30.154169277672178 ], [ -95.364969020122714, 30.153940277470884 ], [ -95.36483701990565, 30.15381627768577 ], [ -95.364704020301971, 30.153649277797847 ], [ -95.364396020124801, 30.153216277560297 ], [ -95.364246019984492, 30.15304027781049 ], [ -95.363990019480468, 30.152810277385644 ], [ -95.363575019270655, 30.152440277066113 ], [ -95.363152019187893, 30.152016277154129 ], [ -95.362640019126502, 30.151496277001137 ], [ -95.362428019550052, 30.15131027711443 ], [ -95.362190018671953, 30.151152277493047 ], [ -95.361775019423632, 30.150940277476064 ], [ -95.36140401938097, 30.150769276688258 ], [ -95.36096301854883, 30.150596276597394 ], [ -95.360734018332622, 30.150534277240943 ], [ -95.360461018490838, 30.150455277166866 ], [ -95.360293018955858, 30.1504192772232 ], [ -95.360125018664704, 30.150411276820865 ], [ -95.359834018560292, 30.150437277442492 ], [ -95.359446018320682, 30.150508277277883 ], [ -95.359102018300533, 30.150596276804926 ], [ -95.358696018400408, 30.150755276882656 ], [ -95.358467017872073, 30.150852277531655 ], [ -95.358255017708657, 30.15094927680688 ], [ -95.358087018291116, 30.151002277205929 ], [ -95.35793701782201, 30.151037276865502 ], [ -95.357661018273745, 30.151068277441546 ], [ -95.35719101771349, 30.150972277658475 ], [ -95.356841017486872, 30.150788277337789 ], [ -95.356376017785763, 30.150446277529504 ], [ -95.356023017876652, 30.150128276951566 ], [ -95.355652017077489, 30.149669276874018 ], [ -95.35544001695898, 30.149281277302563 ], [ -95.355317016942465, 30.148928276995981 ], [ -95.355229017505948, 30.148540277110182 ], [ -95.35515801704112, 30.148187276484716 ], [ -95.355140017234362, 30.147887276346303 ], [ -95.355123016862009, 30.147675276709496 ], [ -95.355070017021646, 30.147570276547384 ], [ -95.354960016700701, 30.147398276158597 ], [ -95.354774017219142, 30.147212276441397 ], [ -95.35449801746374, 30.147057276124062 ], [ -95.354104017259246, 30.146912276963487 ], [ -95.353654016329131, 30.146753276378178 ], [ -95.3533800169659, 30.146692276314479 ], [ -95.353168016726741, 30.14665627660538 ], [ -95.352939016321415, 30.14665627605568 ], [ -95.352471016766344, 30.14670927671445 ], [ -95.352127016442196, 30.146701276441807 ], [ -95.351863015932949, 30.146683276640655 ], [ -95.351572015951888, 30.146630276851841 ], [ -95.351183015818364, 30.14652427659815 ], [ -95.35083001641317, 30.146427276386895 ], [ -95.350513015491941, 30.14635627692946 ], [ -95.34987301535719, 30.146206276106394 ], [ -95.348920015875933, 30.146074276278149 ], [ -95.348585015530318, 30.146004276495564 ], [ -95.348250014923806, 30.145889276349958 ], [ -95.347694015102007, 30.145659276583331 ], [ -95.346979015196283, 30.145421276107875 ], [ -95.346379014670205, 30.145227276397772 ], [ -95.346088015041246, 30.145139276121803 ], [ -95.345325014966917, 30.144702276268163 ], [ -95.34532201472976, 30.145863276754277 ], [ -95.345307014578239, 30.146654276397342 ], [ -95.345148014625821, 30.147021277150419 ], [ -95.345148014228684, 30.147273276451763 ], [ -95.345702014366907, 30.14747927661158 ], [ -95.346334014621732, 30.148166276793212 ], [ -95.346308014816628, 30.148602277212177 ], [ -95.346097015344895, 30.148876277212899 ], [ -95.345675014902682, 30.149060277533557 ], [ -95.345280014891856, 30.149037277606805 ], [ -95.344726014812906, 30.14878527742292 ], [ -95.343909014738472, 30.148258277400998 ], [ -95.343277014315589, 30.148028277208986 ], [ -95.34290801394657, 30.148097277476108 ], [ -95.342723013601542, 30.148280277077131 ], [ -95.342618014290807, 30.148578277030868 ], [ -95.342591013648658, 30.149426277324942 ], [ -95.342196013956411, 30.150182277613503 ], [ -95.342116014342608, 30.150640277283504 ], [ -95.342380014509104, 30.15164827826095 ], [ -95.343091014053627, 30.152495277703995 ], [ -95.344067014024915, 30.152977278429216 ], [ -95.344409014850243, 30.153412278605018 ], [ -95.344356015139255, 30.154008277907888 ], [ -95.343776014800639, 30.154924278718443 ], [ -95.343855015053649, 30.155932279095623 ], [ -95.343802014732347, 30.156596278555167 ], [ -95.343591014962215, 30.156894278608291 ], [ -95.343143014190147, 30.157260278927144 ], [ -95.34190401375642, 30.157649279155603 ], [ -95.341561013878106, 30.157878279084361 ], [ -95.341324013992846, 30.158474279510742 ], [ -95.340307014039809, 30.158383279746054 ], [ -95.336786013223758, 30.15842227943234 ], [ -95.33261001166386, 30.158420279957149 ], [ -95.332471011699553, 30.158420279769555 ], [ -95.331740011272785, 30.158420279786405 ], [ -95.327773011130716, 30.161734280110934 ], [ -95.327102010459356, 30.162321280762033 ], [ -95.326883010875875, 30.162532280243514 ], [ -95.326683010294573, 30.162747281039618 ], [ -95.326572010304233, 30.162884280580236 ], [ -95.326472010367482, 30.162999281007636 ], [ -95.326295010872386, 30.163217281152363 ], [ -95.32618901074045, 30.163358280726303 ], [ -95.325467010439993, 30.164328281438927 ], [ -95.325312010519667, 30.164544280863591 ], [ -95.324944009975098, 30.16499628127093 ], [ -95.324777010419979, 30.165179280833833 ], [ -95.32382200985208, 30.166198281413607 ], [ -95.323323010378829, 30.166614281219005 ], [ -95.323101009504512, 30.166762282058478 ], [ -95.322602009627445, 30.167059281383068 ], [ -95.322269009875001, 30.167272281464612 ], [ -95.322101009256116, 30.167411281690708 ], [ -95.321953009932884, 30.16758028144346 ], [ -95.321252008973801, 30.168829281853561 ], [ -95.320843009534045, 30.169789282212147 ], [ -95.320756009532161, 30.169935282734667 ], [ -95.320555009803229, 30.170065282836283 ], [ -95.320048009521173, 30.170331282579411 ], [ -95.319715008778417, 30.170542282735507 ], [ -95.319551009407149, 30.170670282481531 ], [ -95.318906008879154, 30.171486282542418 ], [ -95.31848400872336, 30.17209628249887 ], [ -95.318387008775147, 30.172264282856322 ], [ -95.318350009110873, 30.172337283293192 ], [ -95.318334009354757, 30.172367283147164 ], [ -95.318310008407451, 30.172465283390157 ], [ -95.318301008691265, 30.172567282628691 ], [ -95.3183270089731, 30.172815283054391 ], [ -95.318397009190619, 30.173087283052705 ], [ -95.31843800912435, 30.173357282806382 ], [ -95.31845400851563, 30.173586283366113 ], [ -95.31837600885504, 30.175485283706269 ], [ -95.318307008670331, 30.175978283721495 ], [ -95.318259008649548, 30.17621628414803 ], [ -95.318137009477454, 30.176540283660721 ], [ -95.315604008197553, 30.182447284703173 ], [ -95.315572008226951, 30.182522284876384 ], [ -95.315607008245365, 30.182529284799777 ], [ -95.315830008193601, 30.182576285460222 ], [ -95.315973009104752, 30.182597284684288 ], [ -95.316190009162952, 30.182602284688542 ], [ -95.318313009747726, 30.182578284840719 ], [ -95.318514009007941, 30.182564285157767 ], [ -95.318667009251811, 30.182530284876261 ], [ -95.318786009440046, 30.182470285195745 ], [ -95.318893009629022, 30.182393285307295 ], [ -95.319011009529987, 30.182267284578959 ], [ -95.319295009231823, 30.18186528455859 ], [ -95.319720009910583, 30.18118928466858 ], [ -95.319828009297723, 30.18106228498057 ], [ -95.319927009502834, 30.180972284529936 ], [ -95.320048010121184, 30.180873284341324 ], [ -95.320169009349556, 30.180797284527767 ], [ -95.32034500984193, 30.180711284715329 ], [ -95.320522010130958, 30.180638284329437 ], [ -95.321309009577291, 30.180376284604801 ], [ -95.321495010442803, 30.18068728488204 ], [ -95.321709010301674, 30.181018284337647 ], [ -95.321999010625802, 30.181431284743887 ], [ -95.322351010147216, 30.181891284810188 ], [ -95.326256011806805, 30.185807285239473 ], [ -95.326470011611221, 30.186014285122649 ], [ -95.326824011840841, 30.186318285462015 ], [ -95.327278011714199, 30.186652285158143 ], [ -95.327554011561716, 30.186841285278039 ], [ -95.327791012020484, 30.186991285818532 ], [ -95.328035012536503, 30.187132285411884 ], [ -95.328512012429783, 30.187385285806968 ], [ -95.328708012505274, 30.187481286077244 ], [ -95.329216012466674, 30.187695285881187 ], [ -95.33728401428678, 30.191087286227901 ], [ -95.339015014550313, 30.191819286444229 ], [ -95.340641015899152, 30.192496286146216 ], [ -95.341931016117101, 30.193263286043432 ], [ -95.342783016081498, 30.193897286178874 ], [ -95.343503016246871, 30.194530286426591 ], [ -95.345149016335895, 30.195931286556103 ], [ -95.345851017166368, 30.196528286523147 ], [ -95.346070017155441, 30.196712287094822 ], [ -95.346272016868028, 30.196883286850092 ], [ -95.347393017848944, 30.197860286851054 ], [ -95.347659017572994, 30.198084286912163 ], [ -95.348700018360631, 30.19897928743854 ], [ -95.34885801827474, 30.199126287655982 ], [ -95.349241018180038, 30.199527286957707 ], [ -95.349607018321279, 30.199980287318876 ], [ -95.349715018471002, 30.200132287771268 ], [ -95.349935018580439, 30.200457287760333 ], [ -95.350323018637994, 30.201017287417169 ], [ -95.352370019477675, 30.203972288362422 ], [ -95.35299901922707, 30.204900288341843 ], [ -95.353977019334621, 30.206305288752048 ], [ -95.355052019572454, 30.207866289249711 ], [ -95.355329019976296, 30.208270288675198 ], [ -95.355419020435548, 30.208412288951937 ], [ -95.355698020117771, 30.208890289337493 ], [ -95.357518020690947, 30.212243289791861 ], [ -95.357845021241843, 30.212962289735895 ], [ -95.358198020739778, 30.213863290412515 ], [ -95.358307021480385, 30.214168290236557 ], [ -95.360186021995091, 30.221465291873624 ], [ -95.360666022339075, 30.223255292102266 ], [ -95.360866022625402, 30.223781291863244 ], [ -95.361140022167831, 30.224261291595138 ], [ -95.361343021840469, 30.224616292201443 ], [ -95.36192002272773, 30.22528129176337 ], [ -95.362690023073142, 30.225970292392365 ], [ -95.364499023642267, 30.227345292238347 ], [ -95.368137024474251, 30.230238293024474 ], [ -95.371011024995241, 30.232466293335715 ], [ -95.373376026072407, 30.234299294030464 ], [ -95.371448025196869, 30.235298293477939 ], [ -95.370033025554591, 30.236036294045125 ], [ -95.369477024476055, 30.236337294562659 ], [ -95.368928024741592, 30.236611294294249 ], [ -95.364510023993475, 30.2389132949342 ], [ -95.361676022695406, 30.240426295611897 ], [ -95.360998023455309, 30.240772295081012 ], [ -95.351209021153892, 30.245915296863235 ], [ -95.353328021304705, 30.248995297031946 ], [ -95.355977021902277, 30.252871298390733 ], [ -95.35770402260323, 30.255391297980399 ], [ -95.357740022858223, 30.255474298050284 ], [ -95.35774102244973, 30.255606298209582 ], [ -95.357672023346282, 30.255717298172183 ], [ -95.357612022469752, 30.255773298837816 ], [ -95.357515022430164, 30.255834298653749 ], [ -95.35202302145926, 30.258637299509953 ], [ -95.351356021067346, 30.258272299549549 ], [ -95.351118021539335, 30.258153299367955 ], [ -95.349025021117455, 30.257021299430395 ], [ -95.348844020427833, 30.256966299437035 ], [ -95.348660020377835, 30.256923298893977 ], [ -95.34842102072534, 30.256878298720547 ], [ -95.347730019892694, 30.256793299480218 ], [ -95.346768020233299, 30.256658299265162 ], [ -95.345918020144211, 30.256538299241551 ], [ -95.345593019256057, 30.256493298903148 ], [ -95.344638019612233, 30.256429298845116 ], [ -95.34273801852602, 30.256385299451576 ], [ -95.342163019061402, 30.256364298807004 ], [ -95.341760019151337, 30.256320299627809 ], [ -95.340873018766302, 30.256238298866357 ], [ -95.340331018442953, 30.256185299361395 ], [ -95.338359018394129, 30.255991298891317 ], [ -95.338331018162691, 30.256898299059866 ], [ -95.338316018196196, 30.256998299521943 ], [ -95.338305018230173, 30.257073299893818 ], [ -95.33825501837147, 30.257234299080384 ], [ -95.338188018197897, 30.257354299589043 ], [ -95.338075018398001, 30.25752129949645 ], [ -95.337503017587764, 30.25813030003204 ], [ -95.338808018365484, 30.259142299843102 ], [ -95.340237018267871, 30.26024330029389 ], [ -95.341197018862374, 30.260986299770675 ], [ -95.342841019106061, 30.262258300210455 ], [ -95.344023019247402, 30.263173300050617 ], [ -95.344099019862412, 30.263232300640837 ], [ -95.345731020329751, 30.26449530076038 ], [ -95.346074020281549, 30.264759301032417 ], [ -95.346435020262874, 30.265039300958524 ], [ -95.347005020648368, 30.265480301149399 ], [ -95.347941020427911, 30.266206300643944 ], [ -95.349459021209512, 30.26738430103121 ], [ -95.350053021804555, 30.267931300821299 ], [ -95.350720022116121, 30.268755301772032 ], [ -95.351392021668943, 30.269992301805338 ], [ -95.351814022258083, 30.270674301340385 ], [ -95.352296021817509, 30.271328302045454 ], [ -95.35357602292369, 30.272668302009961 ], [ -95.353723022847618, 30.272822301995138 ], [ -95.355538023557358, 30.274456302296173 ], [ -95.355824023185434, 30.274669302678742 ], [ -95.35695202348613, 30.275508302102136 ], [ -95.358195023956455, 30.276434302448216 ], [ -95.358661024565222, 30.276775302720463 ], [ -95.361385025349321, 30.278768302627718 ], [ -95.362131025488225, 30.279176303299888 ], [ -95.362308025631123, 30.279266302694545 ], [ -95.363029025502598, 30.27960430292158 ], [ -95.363333024924088, 30.279728302806024 ], [ -95.365537025819791, 30.280660303651626 ], [ -95.367079026071465, 30.281306303139058 ], [ -95.36733102653119, 30.281418303181898 ], [ -95.367575026819338, 30.281537303376663 ], [ -95.367937026835051, 30.281731303627549 ], [ -95.368167026569736, 30.281867303689918 ], [ -95.368394026966882, 30.282010303467189 ], [ -95.36872502685695, 30.282239303890165 ], [ -95.369040027056684, 30.282484303938677 ], [ -95.369143027310969, 30.282570303878121 ], [ -95.369437027576254, 30.282831304019442 ], [ -95.373286028061628, 30.285803303614777 ], [ -95.376165029461831, 30.287988304168294 ], [ -95.376746029372924, 30.288457304898809 ], [ -95.377073028874847, 30.288711304492296 ], [ -95.379850029818641, 30.290832305251946 ], [ -95.380082030677713, 30.290998305319562 ], [ -95.380166030469567, 30.291056304655282 ], [ -95.380318029812287, 30.291161305105373 ], [ -95.380803030904147, 30.291477304697342 ], [ -95.381049030763236, 30.291629305080544 ], [ -95.381551030448151, 30.29192130454636 ], [ -95.381995030677984, 30.292161305222503 ], [ -95.382968031360676, 30.292748305256787 ], [ -95.384477031902506, 30.293617305235809 ], [ -95.384448031380884, 30.292271305263345 ], [ -95.390817033146504, 30.290714304753209 ], [ -95.392499033145711, 30.290303304287765 ], [ -95.394304033715642, 30.289863304036803 ], [ -95.395628033849633, 30.289541304138623 ], [ -95.397294034378277, 30.289134303760409 ], [ -95.398958035443073, 30.288728303584048 ], [ -95.40379403622282, 30.287550303078167 ], [ -95.40538103686319, 30.287164303560861 ], [ -95.407262036724589, 30.286704302671101 ], [ -95.40761503741254, 30.286619302783578 ], [ -95.407872037139128, 30.28654330305617 ], [ -95.408026037309909, 30.286484302971779 ], [ -95.408115037387645, 30.286417302799272 ], [ -95.408166037056191, 30.286353302752978 ], [ -95.408185037440418, 30.286273303104871 ], [ -95.408193037701807, 30.286194302526049 ], [ -95.408189037130825, 30.286147302701167 ], [ -95.408185036770135, 30.28609530310937 ], [ -95.408147037271746, 30.285962303204897 ], [ -95.407983037207714, 30.285467302960466 ], [ -95.407086036301848, 30.282764302387971 ], [ -95.406505036569314, 30.280962301469575 ], [ -95.406298035930959, 30.280319302132295 ], [ -95.406191036129243, 30.279987301839714 ], [ -95.406126036139653, 30.279784301885233 ], [ -95.405544035802322, 30.278055301728546 ], [ -95.405525036084626, 30.277967301073534 ], [ -95.405523036355476, 30.277879300993575 ], [ -95.405559036275974, 30.277767301489924 ], [ -95.405659036380797, 30.2776763013417 ], [ -95.405753036020371, 30.277640301187446 ], [ -95.406121036257062, 30.277552300812602 ], [ -95.406630036394176, 30.277430301580338 ], [ -95.410594037519601, 30.27647930087765 ], [ -95.415137038755844, 30.275377300333037 ], [ -95.415973038977739, 30.27517429995352 ], [ -95.416695038968342, 30.274999300248162 ], [ -95.416723039058368, 30.274992299949307 ], [ -95.415722038656611, 30.273988300603285 ], [ -95.415079038262988, 30.273432300272866 ], [ -95.413950037726536, 30.27245929954881 ], [ -95.413420038003764, 30.272002299396796 ], [ -95.411839037822162, 30.270637299887579 ], [ -95.410682037565223, 30.269638299289571 ], [ -95.41000903665271, 30.269058299479131 ], [ -95.408273036477084, 30.267656298842461 ], [ -95.405346035362356, 30.265427298464353 ], [ -95.404376034908992, 30.264567299083826 ], [ -95.40392503503449, 30.264021298633338 ], [ -95.400301033511212, 30.258869297919244 ], [ -95.400233033952617, 30.258773297458497 ], [ -95.399732033213084, 30.25802129770128 ], [ -95.399553033219291, 30.257752297725006 ], [ -95.397574033158904, 30.254779296644525 ], [ -95.39691903314592, 30.253832296360308 ], [ -95.396235032797705, 30.252997296356778 ], [ -95.394473031539249, 30.251440296646706 ], [ -95.400459033207085, 30.249999295524486 ], [ -95.403657034377957, 30.249225295422441 ], [ -95.40847703570887, 30.248059295518519 ], [ -95.410551036322673, 30.247600295150477 ], [ -95.410317035570969, 30.246609294918525 ], [ -95.410163036008356, 30.245895294958341 ], [ -95.410132035588489, 30.244763294026324 ], [ -95.413851036887834, 30.243867294553446 ], [ -95.41465803681406, 30.243745294334026 ], [ -95.414752036413063, 30.243731293971528 ], [ -95.414887036458055, 30.243710294224549 ], [ -95.4149810369547, 30.243693293814665 ], [ -95.415072037296568, 30.24366829402279 ], [ -95.415755037224116, 30.243444293966043 ], [ -95.416659037719754, 30.24322129370379 ], [ -95.419202038155689, 30.242607293738537 ], [ -95.419863038335407, 30.24244829360639 ], [ -95.420518038128932, 30.242295293942849 ], [ -95.42143403884937, 30.242058293593381 ], [ -95.42169203807147, 30.241993293732691 ], [ -95.422854038597549, 30.241701293778991 ], [ -95.422778039021637, 30.241591293405484 ], [ -95.422751038800513, 30.24122429290621 ], [ -95.423225038517543, 30.240720293454689 ], [ -95.42314603862026, 30.240216292942829 ], [ -95.423594038962662, 30.239666293282284 ], [ -95.423594039279024, 30.239460293049415 ], [ -95.423277038840084, 30.239231292829963 ], [ -95.423251038815451, 30.239025293209874 ], [ -95.423831038650633, 30.238887292400754 ], [ -95.424200038997228, 30.238566292238293 ], [ -95.424516038786692, 30.238062292440983 ], [ -95.4249910396953, 30.237879292238141 ], [ -95.425176039727859, 30.237604292431257 ], [ -95.425202039216543, 30.237214292758949 ], [ -95.425412038946945, 30.236710292353045 ], [ -95.426203039659327, 30.235862291706329 ], [ -95.426546039227887, 30.235266291517419 ], [ -95.427311039524753, 30.235197291483356 ], [ -95.427522039835239, 30.235106291678818 ], [ -95.427607039944292, 30.235100291733048 ], [ -95.428735040181365, 30.235013291368873 ], [ -95.428935040504854, 30.234918291960234 ], [ -95.429315040099866, 30.234738291338449 ], [ -95.429351039906166, 30.234608291322395 ], [ -95.429447040633633, 30.234257291366884 ], [ -95.430133040489139, 30.234142291918694 ], [ -95.430212040230927, 30.234028291416884 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1226, "Tract": "48339690609", "Area_SqMi": 1.1938610679240156, "total_2009": 418, "total_2010": 361, "total_2011": 492, "total_2012": 518, "total_2013": 570, "total_2014": 577, "total_2015": 631, "total_2016": 725, "total_2017": 689, "total_2018": 775, "total_2019": 795, "total_2020": 813, "age1": 283, "age2": 379, "age3": 172, "earn1": 240, "earn2": 302, "earn3": 292, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 23, "naics_s05": 0, "naics_s06": 56, "naics_s07": 211, "naics_s08": 10, "naics_s09": 1, "naics_s10": 33, "naics_s11": 2, "naics_s12": 112, "naics_s13": 0, "naics_s14": 15, "naics_s15": 15, "naics_s16": 65, "naics_s17": 19, "naics_s18": 222, "naics_s19": 49, "naics_s20": 0, "race1": 681, "race2": 84, "race3": 6, "race4": 46, "race5": 1, "race6": 16, "ethnicity1": 619, "ethnicity2": 215, "edu1": 99, "edu2": 136, "edu3": 165, "edu4": 151, "Shape_Length": 35137.278235013007, "Shape_Area": 33282803.260082625, "total_2021": 756, "total_2022": 834 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.542621068853308, 30.215622283580757 ], [ -95.542759068410945, 30.215261283567013 ], [ -95.542328068609351, 30.215131283324229 ], [ -95.541906067972491, 30.215002283554799 ], [ -95.540366067216056, 30.21453028375516 ], [ -95.540083067701943, 30.2144442833686 ], [ -95.539014067805425, 30.214113283821245 ], [ -95.53883206705288, 30.214040283854779 ], [ -95.537886067006923, 30.21367728391505 ], [ -95.537321067017785, 30.213509283785289 ], [ -95.537169066347971, 30.213466283715018 ], [ -95.535867066123416, 30.213059283415848 ], [ -95.535228066376575, 30.212822283815083 ], [ -95.534694066507001, 30.212583283883468 ], [ -95.534105066213485, 30.212301283688408 ], [ -95.533586065392029, 30.212018283818381 ], [ -95.53303106597069, 30.211682283098661 ], [ -95.531655065524802, 30.210741283134791 ], [ -95.531050065416906, 30.210275283626977 ], [ -95.5299090645604, 30.20950528295311 ], [ -95.529815065250105, 30.209446282848003 ], [ -95.529436065080517, 30.209210282823772 ], [ -95.528991064606942, 30.208967283142286 ], [ -95.528459064153992, 30.208692283243312 ], [ -95.526723064237117, 30.207916283075861 ], [ -95.526045063200158, 30.207585282537448 ], [ -95.524884063030143, 30.207049282914188 ], [ -95.523722063073095, 30.206482282600042 ], [ -95.523386063064876, 30.206330282321709 ], [ -95.523217062745942, 30.206263282722514 ], [ -95.523046063212504, 30.206190282951521 ], [ -95.522874062666006, 30.206125282941628 ], [ -95.52234906263601, 30.205943282286846 ], [ -95.521813062785839, 30.205784282255131 ], [ -95.521269062636378, 30.205651282510978 ], [ -95.520719061987037, 30.205544282317412 ], [ -95.520348061875026, 30.205484282772215 ], [ -95.520255061889642, 30.205474282379875 ], [ -95.520161062257813, 30.205460282412286 ], [ -95.519788061845659, 30.20541828302574 ], [ -95.519412062189261, 30.205389283044205 ], [ -95.518997062276256, 30.205370282935576 ], [ -95.517650061212791, 30.205321282809301 ], [ -95.517005061047129, 30.205288282198484 ], [ -95.51645106096089, 30.205235282439514 ], [ -95.516030061392428, 30.205164282353394 ], [ -95.515703061453706, 30.205092282881736 ], [ -95.51529306130918, 30.204977282590619 ], [ -95.515019060310095, 30.204887282363732 ], [ -95.514868060359305, 30.204828282910089 ], [ -95.514527060647453, 30.205416282582888 ], [ -95.514377060761134, 30.20562228294779 ], [ -95.514264060321551, 30.205729283038583 ], [ -95.514158060560334, 30.205814282874453 ], [ -95.514045060639759, 30.205896282860778 ], [ -95.513924060352494, 30.205965282732855 ], [ -95.513813060538723, 30.206014283257083 ], [ -95.513658060685572, 30.206068282847735 ], [ -95.513498060198671, 30.206110283162268 ], [ -95.513333059976105, 30.206145283110221 ], [ -95.513091060268493, 30.206185282583391 ], [ -95.512609060019145, 30.206252282893722 ], [ -95.508958059007682, 30.206843283310924 ], [ -95.508376059656428, 30.206927283579677 ], [ -95.508113059010341, 30.206961282898785 ], [ -95.50778805886479, 30.20703028288106 ], [ -95.507490059394655, 30.207099283208169 ], [ -95.507166058475377, 30.2071922832708 ], [ -95.506883058498971, 30.207295283038974 ], [ -95.50642305903925, 30.207487283470286 ], [ -95.505683058536448, 30.207821283841344 ], [ -95.505698058406097, 30.207857283805236 ], [ -95.506199058209674, 30.208224283942972 ], [ -95.506304058240332, 30.208430284005967 ], [ -95.506298058815318, 30.208600283428186 ], [ -95.506707058617849, 30.208948284135428 ], [ -95.507663058962265, 30.209347283987636 ], [ -95.509216059996064, 30.209943284091825 ], [ -95.509845059947352, 30.210216284144032 ], [ -95.510203059473142, 30.210222284165543 ], [ -95.510481059329166, 30.210068284289395 ], [ -95.510915059578835, 30.209868284230488 ], [ -95.511136060485839, 30.209893284067181 ], [ -95.512127060569085, 30.210173284219749 ], [ -95.513108060177373, 30.210501283968618 ], [ -95.513615060338964, 30.210888284243225 ], [ -95.513824061046321, 30.211021283876331 ], [ -95.513517060712232, 30.211569284162852 ], [ -95.513464060911346, 30.211663283933632 ], [ -95.513365060401611, 30.211875284112562 ], [ -95.513313060556001, 30.212023284041447 ], [ -95.513273060166782, 30.212173284208191 ], [ -95.513237060675863, 30.212403284520445 ], [ -95.513228060950439, 30.212557284234684 ], [ -95.513231061095098, 30.212708284420955 ], [ -95.513247060492802, 30.212863284501509 ], [ -95.513275061075475, 30.213012284302149 ], [ -95.513315060516675, 30.213161284408521 ], [ -95.513325060784737, 30.213190284107281 ], [ -95.513366060244152, 30.213311284173493 ], [ -95.513462060982548, 30.213523284430266 ], [ -95.513504060424523, 30.213596284353901 ], [ -95.513590060463557, 30.213727284259697 ], [ -95.513686060384401, 30.213856284141876 ], [ -95.514564061022838, 30.214877285066883 ], [ -95.514683061542115, 30.215040284334926 ], [ -95.514835060794098, 30.215294284650078 ], [ -95.514920060798943, 30.215472284507598 ], [ -95.514981061333756, 30.21563428460129 ], [ -95.515004060981028, 30.21570028513932 ], [ -95.515065060796999, 30.215933284803395 ], [ -95.51508306145567, 30.216027284658715 ], [ -95.515108061307188, 30.216215284744806 ], [ -95.51511806182441, 30.216410285199562 ], [ -95.515111061516095, 30.216613284711233 ], [ -95.515066061409385, 30.21723728485329 ], [ -95.515064061041073, 30.217308285023385 ], [ -95.515071061886786, 30.217454284789493 ], [ -95.515096061238594, 30.217598284865637 ], [ -95.515137060959262, 30.2177362851337 ], [ -95.515197060991738, 30.217876285268225 ], [ -95.515257061075673, 30.217982285055889 ], [ -95.515298061064598, 30.218046284899444 ], [ -95.515345061353798, 30.218108284901508 ], [ -95.515411061643277, 30.218184285107025 ], [ -95.515503061842509, 30.218277285131762 ], [ -95.515578061917978, 30.218342284928241 ], [ -95.51574206139955, 30.218459285383002 ], [ -95.515850061995735, 30.218522285442159 ], [ -95.516007062047422, 30.218592285183064 ], [ -95.516188061330027, 30.21865228531918 ], [ -95.516274061503154, 30.218676285096414 ], [ -95.516427061892358, 30.218700285764367 ], [ -95.516509061555453, 30.218707285512945 ], [ -95.516749061596158, 30.218711285229599 ], [ -95.516910062179704, 30.218696285608491 ], [ -95.516996061850179, 30.21868428561401 ], [ -95.51851406214648, 30.218404285179755 ], [ -95.518606062611482, 30.21839328498119 ], [ -95.518886062697575, 30.21837028497734 ], [ -95.519125062104592, 30.218368285559265 ], [ -95.519595062890033, 30.21839928557139 ], [ -95.520128063027116, 30.218429285262804 ], [ -95.520487062891092, 30.218439285540708 ], [ -95.520469062952927, 30.219277285611209 ], [ -95.520472063357857, 30.221332286058008 ], [ -95.520462062921453, 30.22201128636345 ], [ -95.520520062538097, 30.223600285971116 ], [ -95.520607063361197, 30.224472286071435 ], [ -95.520703062848, 30.225125286145506 ], [ -95.520732062899171, 30.225314286386862 ], [ -95.520949063246562, 30.226356286611495 ], [ -95.52100906298827, 30.22664428686431 ], [ -95.521215063556681, 30.227832286850198 ], [ -95.522538064084159, 30.227571286673403 ], [ -95.52254906359704, 30.22645428692022 ], [ -95.52255606348352, 30.225352286388741 ], [ -95.522558064003647, 30.225050286045072 ], [ -95.522526063353723, 30.21940728515434 ], [ -95.525990064196932, 30.219367285217107 ], [ -95.526320064741697, 30.219364285632079 ], [ -95.526680064368293, 30.219396285021826 ], [ -95.527042064973202, 30.219409285427435 ], [ -95.52824306489552, 30.219451285228558 ], [ -95.529558064908926, 30.219481285090104 ], [ -95.530216064877607, 30.219496285412522 ], [ -95.53156406519031, 30.219467285164495 ], [ -95.532126066314078, 30.219446284642419 ], [ -95.532226065994706, 30.216391284326775 ], [ -95.533357065566804, 30.216378284475553 ], [ -95.540335067581765, 30.216300284288618 ], [ -95.542531068243633, 30.216317283788097 ], [ -95.542553067965414, 30.215904283794128 ], [ -95.542621068853308, 30.215622283580757 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1227, "Tract": "48339692007", "Area_SqMi": 2.25581472176107, "total_2009": 100, "total_2010": 127, "total_2011": 211, "total_2012": 105, "total_2013": 115, "total_2014": 132, "total_2015": 151, "total_2016": 129, "total_2017": 133, "total_2018": 143, "total_2019": 180, "total_2020": 149, "age1": 79, "age2": 84, "age3": 47, "earn1": 64, "earn2": 70, "earn3": 76, "naics_s01": 2, "naics_s02": 0, "naics_s03": 15, "naics_s04": 7, "naics_s05": 25, "naics_s06": 21, "naics_s07": 2, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 11, "naics_s15": 17, "naics_s16": 4, "naics_s17": 0, "naics_s18": 59, "naics_s19": 40, "naics_s20": 0, "race1": 177, "race2": 23, "race3": 2, "race4": 5, "race5": 0, "race6": 3, "ethnicity1": 166, "ethnicity2": 44, "edu1": 26, "edu2": 44, "edu3": 38, "edu4": 23, "Shape_Length": 35758.861758071078, "Shape_Area": 62888253.577216282, "total_2021": 214, "total_2022": 210 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.422025032486516, 30.110250266523956 ], [ -95.422018032818372, 30.109656266494927 ], [ -95.421187032496604, 30.109433266429868 ], [ -95.421076032320045, 30.10926226664996 ], [ -95.420823032007007, 30.10887426634438 ], [ -95.420466032228873, 30.108703266069927 ], [ -95.41993503147684, 30.108685266319537 ], [ -95.419394032065313, 30.108831266774462 ], [ -95.419071032210027, 30.108804266402235 ], [ -95.418845031696733, 30.10872226673898 ], [ -95.418792031733446, 30.108518266228177 ], [ -95.418851031670272, 30.107916266248729 ], [ -95.418811031598935, 30.107384265928602 ], [ -95.418950031709713, 30.106536266142207 ], [ -95.418813031598674, 30.106199265948842 ], [ -95.418809031079135, 30.105878265624924 ], [ -95.419062031952734, 30.105052265779719 ], [ -95.418946031648133, 30.104788265284633 ], [ -95.418769031491209, 30.104639265909494 ], [ -95.418424031836281, 30.104449265350979 ], [ -95.417994031711928, 30.10393026596455 ], [ -95.417368031462559, 30.103670265908988 ], [ -95.416393030520183, 30.103145265374309 ], [ -95.416253030790145, 30.103015265268819 ], [ -95.415350030948872, 30.102473265416162 ], [ -95.414286029994258, 30.101629264908635 ], [ -95.413857030474347, 30.101350265621956 ], [ -95.413149029362557, 30.101069264955168 ], [ -95.412005029072716, 30.100950265511464 ], [ -95.411745029708527, 30.100854265090412 ], [ -95.4116200293265, 30.100631264668991 ], [ -95.411607029373528, 30.10031326463271 ], [ -95.411731029015414, 30.100089264589204 ], [ -95.412184029193256, 30.099678265170017 ], [ -95.41221402944899, 30.099398264715379 ], [ -95.412146029663305, 30.099368265266051 ], [ -95.411754029032153, 30.09945826528584 ], [ -95.411388029284424, 30.099439265235297 ], [ -95.411027029718468, 30.099500264728348 ], [ -95.410794029428018, 30.099439264694276 ], [ -95.410621029535776, 30.099242265154011 ], [ -95.410713028676611, 30.09883126509478 ], [ -95.410543028701611, 30.098513264961873 ], [ -95.410546028837118, 30.098062265032379 ], [ -95.41064402922764, 30.097948264740072 ], [ -95.411288028993525, 30.097203264085806 ], [ -95.411516029210119, 30.097052264114694 ], [ -95.411986029316395, 30.096509264384718 ], [ -95.412768029953767, 30.095825264274811 ], [ -95.412860029365049, 30.0957062636855 ], [ -95.412926029119944, 30.095465264092262 ], [ -95.41279702901754, 30.095168264332088 ], [ -95.4127030299545, 30.095050263530926 ], [ -95.412564029020459, 30.094974263672949 ], [ -95.412329029832748, 30.094908263890346 ], [ -95.411228029583597, 30.094828263509481 ], [ -95.411068028800472, 30.094792264226509 ], [ -95.410914028562189, 30.094673264275141 ], [ -95.410704028429592, 30.094364263905732 ], [ -95.410498028737564, 30.093934263957536 ], [ -95.410380028568085, 30.093676264000038 ], [ -95.410303028591244, 30.09350926408997 ], [ -95.410269028495719, 30.093434263596549 ], [ -95.410134029068416, 30.092987263453761 ], [ -95.410040028475194, 30.092835263887409 ], [ -95.409879028301461, 30.092723263610527 ], [ -95.409402028971826, 30.092647263635655 ], [ -95.408095028650934, 30.092758263582152 ], [ -95.40741502793864, 30.093011263266053 ], [ -95.407292027879564, 30.09300126333185 ], [ -95.405947027865381, 30.092239263681858 ], [ -95.40591602793458, 30.092229263192159 ], [ -95.405450027679407, 30.092081263464664 ], [ -95.405013027726753, 30.092448264066711 ], [ -95.404498027518045, 30.092898263394311 ], [ -95.404107027394616, 30.093335263519151 ], [ -95.403747027380945, 30.093854264216478 ], [ -95.403340027470904, 30.094743264128379 ], [ -95.40301502683532, 30.095749264519405 ], [ -95.402811027361452, 30.096214264274472 ], [ -95.402770026493059, 30.096307264403272 ], [ -95.402564027246569, 30.096668264464981 ], [ -95.40250802685874, 30.096766264991956 ], [ -95.40226002677899, 30.09709126505442 ], [ -95.40189702719907, 30.097567264683772 ], [ -95.401077026362984, 30.098394265194454 ], [ -95.40001302686656, 30.099470265664081 ], [ -95.399525026776715, 30.099970265056619 ], [ -95.399302025839845, 30.100199265247952 ], [ -95.397028025996391, 30.102517266179024 ], [ -95.396667025873953, 30.102885265761412 ], [ -95.396395025715364, 30.103163266588393 ], [ -95.395815025882371, 30.103764266209641 ], [ -95.395597025233812, 30.103991266168531 ], [ -95.394961025294108, 30.104435266737362 ], [ -95.394417025497461, 30.10481926625404 ], [ -95.393687024839579, 30.105470267134187 ], [ -95.392913025270332, 30.106216266643692 ], [ -95.392370024964123, 30.106739266898909 ], [ -95.391435024620236, 30.107637267644158 ], [ -95.390770024849473, 30.108276267661633 ], [ -95.390038024067763, 30.108987267831836 ], [ -95.390400024485402, 30.109256267370995 ], [ -95.391072024732779, 30.109756267268661 ], [ -95.391417024651389, 30.11001326750981 ], [ -95.391754025044207, 30.110319267602435 ], [ -95.392070024427312, 30.110630267556644 ], [ -95.392328025450226, 30.110940267582379 ], [ -95.392658025384307, 30.111380268319998 ], [ -95.393942025715702, 30.113412268382547 ], [ -95.394887026266872, 30.114912268894809 ], [ -95.395215026400464, 30.115421269076258 ], [ -95.395944026394275, 30.116559268601073 ], [ -95.396026025863975, 30.116808269080387 ], [ -95.395999025979535, 30.117029269213916 ], [ -95.396275026676236, 30.117195269191587 ], [ -95.396413026477589, 30.117360269405083 ], [ -95.39683402675746, 30.117945269558014 ], [ -95.397418026671701, 30.118856269685569 ], [ -95.397569026425387, 30.119116269084358 ], [ -95.397611026601666, 30.119188269665692 ], [ -95.397664027070206, 30.119271269141631 ], [ -95.397753027124821, 30.119412269572038 ], [ -95.397889026958751, 30.119603269253346 ], [ -95.398045026336717, 30.119778269690507 ], [ -95.398229026783042, 30.119967269284398 ], [ -95.398347026716607, 30.120075269756519 ], [ -95.398386027193609, 30.120111269097929 ], [ -95.398577027137918, 30.120271269832216 ], [ -95.39878802709309, 30.120436269833878 ], [ -95.399126026878264, 30.120673269173395 ], [ -95.39963002765559, 30.120989269571979 ], [ -95.400055027855245, 30.121240269961483 ], [ -95.4017960284271, 30.12223026991952 ], [ -95.401831028408679, 30.122247269891744 ], [ -95.402475028337761, 30.122565269797445 ], [ -95.402874028399793, 30.122721269702982 ], [ -95.403117028535959, 30.122801269708788 ], [ -95.403137028502883, 30.122807269529186 ], [ -95.403185028665149, 30.122823270213324 ], [ -95.403393028131617, 30.122882269988832 ], [ -95.403547028517792, 30.122926270063964 ], [ -95.403600028354191, 30.122937269696266 ], [ -95.403889028158702, 30.122996269475934 ], [ -95.404262028679113, 30.12304226955149 ], [ -95.40458902877846, 30.123056270069881 ], [ -95.405140029142487, 30.123054269507925 ], [ -95.407176029373247, 30.122952270085371 ], [ -95.407412029334026, 30.122944269985119 ], [ -95.407807029979864, 30.12294427011188 ], [ -95.407946029167945, 30.122953269780634 ], [ -95.408089029461891, 30.122968269798676 ], [ -95.408312029865868, 30.123007269464161 ], [ -95.408700030034922, 30.123090269581425 ], [ -95.408895029621959, 30.123132269738537 ], [ -95.408928030126731, 30.123031269580924 ], [ -95.409028029842503, 30.12273326963615 ], [ -95.409713029512332, 30.121931269720793 ], [ -95.41018703031942, 30.120740269267625 ], [ -95.410371030043791, 30.119480268900485 ], [ -95.410739029575709, 30.118495268984432 ], [ -95.411951030537693, 30.117578268133194 ], [ -95.412344029997158, 30.117427268062595 ], [ -95.412610030759794, 30.117326268515818 ], [ -95.412735030929468, 30.117309268481421 ], [ -95.414138031239631, 30.117119268706659 ], [ -95.41428903044347, 30.117084268712674 ], [ -95.414638031440177, 30.117004268374263 ], [ -95.415086030577328, 30.116546268368793 ], [ -95.415140030916504, 30.116516268504022 ], [ -95.415613030692697, 30.116248267909025 ], [ -95.416034031758656, 30.116179268101259 ], [ -95.416701031447474, 30.115917267728644 ], [ -95.416851031188457, 30.115858268420105 ], [ -95.417800031298185, 30.115720267914597 ], [ -95.417879031912165, 30.115400267457982 ], [ -95.41819503138926, 30.115354267889714 ], [ -95.418853031501882, 30.115560267993185 ], [ -95.419328032383618, 30.115468267624429 ], [ -95.419644031775917, 30.115285267919663 ], [ -95.419986032052734, 30.114780267414446 ], [ -95.419986032666372, 30.114322267924781 ], [ -95.420144032335585, 30.11402426768969 ], [ -95.420328032713883, 30.113956267841452 ], [ -95.420776031978818, 30.114162267128918 ], [ -95.421250032786148, 30.114116267951438 ], [ -95.421382032430046, 30.113841267198513 ], [ -95.421197032037412, 30.113658267783247 ], [ -95.421540032193136, 30.113016266997072 ], [ -95.42159203270981, 30.112695267022811 ], [ -95.421434032492982, 30.11251226694559 ], [ -95.421012032430127, 30.112375267245564 ], [ -95.420854032319809, 30.11223726747243 ], [ -95.420801032378193, 30.111917267283967 ], [ -95.421091032628624, 30.111275267317421 ], [ -95.421328032055342, 30.111229266518411 ], [ -95.421539032945446, 30.111367267329918 ], [ -95.421575032774442, 30.111358266586294 ], [ -95.42174103296361, 30.111315266635632 ], [ -95.421765032747459, 30.110900266441973 ], [ -95.422025032486516, 30.110250266523956 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1228, "Tract": "48339692201", "Area_SqMi": 13.152794544286248, "total_2009": 153, "total_2010": 151, "total_2011": 90, "total_2012": 31, "total_2013": 31, "total_2014": 45, "total_2015": 53, "total_2016": 63, "total_2017": 60, "total_2018": 144, "total_2019": 128, "total_2020": 91, "age1": 17, "age2": 47, "age3": 22, "earn1": 18, "earn2": 36, "earn3": 32, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 43, "naics_s05": 1, "naics_s06": 3, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 13, "naics_s19": 3, "naics_s20": 0, "race1": 74, "race2": 4, "race3": 3, "race4": 3, "race5": 0, "race6": 2, "ethnicity1": 44, "ethnicity2": 42, "edu1": 25, "edu2": 16, "edu3": 20, "edu4": 8, "Shape_Length": 84028.726555485657, "Shape_Area": 366677400.66185749, "total_2021": 100, "total_2022": 86 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.371448025196869, 30.235298293477939 ], [ -95.373376026072407, 30.234299294030464 ], [ -95.371011024995241, 30.232466293335715 ], [ -95.368137024474251, 30.230238293024474 ], [ -95.364499023642267, 30.227345292238347 ], [ -95.362690023073142, 30.225970292392365 ], [ -95.36192002272773, 30.22528129176337 ], [ -95.361343021840469, 30.224616292201443 ], [ -95.361140022167831, 30.224261291595138 ], [ -95.360866022625402, 30.223781291863244 ], [ -95.360666022339075, 30.223255292102266 ], [ -95.360186021995091, 30.221465291873624 ], [ -95.358307021480385, 30.214168290236557 ], [ -95.358198020739778, 30.213863290412515 ], [ -95.357845021241843, 30.212962289735895 ], [ -95.357518020690947, 30.212243289791861 ], [ -95.355698020117771, 30.208890289337493 ], [ -95.355419020435548, 30.208412288951937 ], [ -95.355329019976296, 30.208270288675198 ], [ -95.355052019572454, 30.207866289249711 ], [ -95.353977019334621, 30.206305288752048 ], [ -95.35299901922707, 30.204900288341843 ], [ -95.352370019477675, 30.203972288362422 ], [ -95.350323018637994, 30.201017287417169 ], [ -95.349935018580439, 30.200457287760333 ], [ -95.349715018471002, 30.200132287771268 ], [ -95.349607018321279, 30.199980287318876 ], [ -95.349241018180038, 30.199527286957707 ], [ -95.34885801827474, 30.199126287655982 ], [ -95.348700018360631, 30.19897928743854 ], [ -95.347659017572994, 30.198084286912163 ], [ -95.347393017848944, 30.197860286851054 ], [ -95.346272016868028, 30.196883286850092 ], [ -95.346070017155441, 30.196712287094822 ], [ -95.345851017166368, 30.196528286523147 ], [ -95.345149016335895, 30.195931286556103 ], [ -95.343503016246871, 30.194530286426591 ], [ -95.342783016081498, 30.193897286178874 ], [ -95.341931016117101, 30.193263286043432 ], [ -95.340641015899152, 30.192496286146216 ], [ -95.339015014550313, 30.191819286444229 ], [ -95.33728401428678, 30.191087286227901 ], [ -95.329216012466674, 30.187695285881187 ], [ -95.328708012505274, 30.187481286077244 ], [ -95.328512012429783, 30.187385285806968 ], [ -95.328035012536503, 30.187132285411884 ], [ -95.327791012020484, 30.186991285818532 ], [ -95.327554011561716, 30.186841285278039 ], [ -95.327278011714199, 30.186652285158143 ], [ -95.326824011840841, 30.186318285462015 ], [ -95.326470011611221, 30.186014285122649 ], [ -95.326256011806805, 30.185807285239473 ], [ -95.322351010147216, 30.181891284810188 ], [ -95.321999010625802, 30.181431284743887 ], [ -95.321709010301674, 30.181018284337647 ], [ -95.321495010442803, 30.18068728488204 ], [ -95.321309009577291, 30.180376284604801 ], [ -95.320522010130958, 30.180638284329437 ], [ -95.32034500984193, 30.180711284715329 ], [ -95.320169009349556, 30.180797284527767 ], [ -95.320048010121184, 30.180873284341324 ], [ -95.319927009502834, 30.180972284529936 ], [ -95.319828009297723, 30.18106228498057 ], [ -95.319720009910583, 30.18118928466858 ], [ -95.319295009231823, 30.18186528455859 ], [ -95.319011009529987, 30.182267284578959 ], [ -95.318893009629022, 30.182393285307295 ], [ -95.318786009440046, 30.182470285195745 ], [ -95.318667009251811, 30.182530284876261 ], [ -95.318514009007941, 30.182564285157767 ], [ -95.318313009747726, 30.182578284840719 ], [ -95.316190009162952, 30.182602284688542 ], [ -95.315973009104752, 30.182597284684288 ], [ -95.315830008193601, 30.182576285460222 ], [ -95.315607008245365, 30.182529284799777 ], [ -95.315572008226951, 30.182522284876384 ], [ -95.315478008210391, 30.182812284737434 ], [ -95.315446009089655, 30.182912285473115 ], [ -95.315407008218799, 30.183040285569234 ], [ -95.315339008788627, 30.183275285634156 ], [ -95.315209008379625, 30.183819285476041 ], [ -95.315139008529542, 30.18418628504153 ], [ -95.315099008845621, 30.184460285305533 ], [ -95.315091009090878, 30.184584285645787 ], [ -95.314984009119158, 30.186363285804447 ], [ -95.314980009099159, 30.186425285923484 ], [ -95.314978008243457, 30.186465286154107 ], [ -95.314952008695784, 30.186896285695376 ], [ -95.314910008700622, 30.187486286338874 ], [ -95.314879008272442, 30.187799286167401 ], [ -95.314838008439253, 30.188144286282917 ], [ -95.314752008836038, 30.188764286380696 ], [ -95.314698009162129, 30.189057286692353 ], [ -95.314635009203329, 30.189327286411991 ], [ -95.314520008524923, 30.189770286193816 ], [ -95.314427008589874, 30.190088286503254 ], [ -95.314337008568458, 30.190392286464387 ], [ -95.314144008455827, 30.19097028690571 ], [ -95.313952008532453, 30.19144128699109 ], [ -95.31382100869584, 30.191718286707548 ], [ -95.313317008743226, 30.192829286944612 ], [ -95.313191007991705, 30.19310628754355 ], [ -95.312943008676541, 30.193677287305096 ], [ -95.311464008718019, 30.197034288377331 ], [ -95.310368008553013, 30.199466288965723 ], [ -95.309424007923639, 30.201470289441552 ], [ -95.308496007973574, 30.203343289726767 ], [ -95.30792600716407, 30.204521289797022 ], [ -95.307830008046153, 30.204703290351048 ], [ -95.307701007282972, 30.204933289764391 ], [ -95.305912007264482, 30.207388290790551 ], [ -95.304831007243436, 30.208871290761856 ], [ -95.304424007188302, 30.209923291188456 ], [ -95.304114006964454, 30.210725290956731 ], [ -95.304012007124868, 30.211211291639444 ], [ -95.303965006604315, 30.211436291371555 ], [ -95.303954007122627, 30.212803291830756 ], [ -95.303985006968645, 30.21312829180194 ], [ -95.304035007279239, 30.213498291430593 ], [ -95.304082007444478, 30.213805291706244 ], [ -95.304167006893337, 30.21415629153438 ], [ -95.30433600740065, 30.214750291825943 ], [ -95.304556007802589, 30.215708291904576 ], [ -95.304583007567302, 30.215887292495029 ], [ -95.304601007663322, 30.21607529251343 ], [ -95.30460800759775, 30.216270292077315 ], [ -95.304602007708027, 30.216430292652788 ], [ -95.304548007848794, 30.216976292410305 ], [ -95.304404007496075, 30.21780529303475 ], [ -95.304247007885195, 30.218881292941425 ], [ -95.304197007183092, 30.219221293134769 ], [ -95.304189007684599, 30.219277292544728 ], [ -95.304167007119716, 30.219499292949447 ], [ -95.304161007191951, 30.219666293385838 ], [ -95.304160007503938, 30.21970229340274 ], [ -95.304236007629129, 30.220664293350808 ], [ -95.304248007296565, 30.221128293559723 ], [ -95.304258007876641, 30.221498293820193 ], [ -95.304262007363818, 30.221925293192005 ], [ -95.304255008060395, 30.222117293343857 ], [ -95.304224007149159, 30.22244729384979 ], [ -95.304067007844992, 30.223146293641722 ], [ -95.304038007323626, 30.22323129340031 ], [ -95.303313007835769, 30.225604294473015 ], [ -95.303230007324203, 30.225866294700317 ], [ -95.303166007638424, 30.226115294834656 ], [ -95.303104007464768, 30.226443294514091 ], [ -95.303083007938554, 30.226583294828998 ], [ -95.303055007091984, 30.22687129449875 ], [ -95.303055007280676, 30.227003294650292 ], [ -95.30309100779084, 30.227381294283635 ], [ -95.303124008050929, 30.227618294318408 ], [ -95.303173007423126, 30.227898294420566 ], [ -95.303239007876741, 30.228455294891489 ], [ -95.303273007173928, 30.228792294927583 ], [ -95.30326000772429, 30.22891829538553 ], [ -95.30322700748242, 30.229148295222558 ], [ -95.303168007583821, 30.229383295069574 ], [ -95.303102007904812, 30.229604294814894 ], [ -95.303036007209172, 30.229789295147214 ], [ -95.302973007934369, 30.229947295545866 ], [ -95.302873007906584, 30.230170295647518 ], [ -95.302758007647583, 30.230362295097166 ], [ -95.30261800797561, 30.230559295676684 ], [ -95.302368007328383, 30.230882295803788 ], [ -95.301222006832319, 30.232306295283834 ], [ -95.301024006725527, 30.232598296165296 ], [ -95.300935007573827, 30.232738295950018 ], [ -95.300882006863787, 30.232850296266879 ], [ -95.300848007142122, 30.232961296031565 ], [ -95.300794007263079, 30.233213295859361 ], [ -95.300772007272272, 30.233355296039527 ], [ -95.30075200745722, 30.233558296461243 ], [ -95.300720007343415, 30.234160296101781 ], [ -95.300694007077794, 30.236716296603703 ], [ -95.300676007466066, 30.238489296612162 ], [ -95.300838007369109, 30.238548297163256 ], [ -95.301041007046308, 30.238612296598532 ], [ -95.301305007737, 30.238677297206713 ], [ -95.301564007436639, 30.238733297076369 ], [ -95.301823008042689, 30.238776297324303 ], [ -95.302879007686428, 30.238939297192072 ], [ -95.303599008277487, 30.239050296994513 ], [ -95.304510008490098, 30.239185296889428 ], [ -95.305423008712566, 30.239321296691536 ], [ -95.307056009150017, 30.239561296574138 ], [ -95.307236009108763, 30.239593297332064 ], [ -95.309062009634019, 30.239872296597344 ], [ -95.310811009964652, 30.240123297417007 ], [ -95.312508011011602, 30.240395297075771 ], [ -95.314471011559576, 30.240754296912272 ], [ -95.31519201078433, 30.240997297221938 ], [ -95.315492011601833, 30.241143297000367 ], [ -95.315785011777265, 30.241329296705953 ], [ -95.320571013153085, 30.245031297256858 ], [ -95.323765014251521, 30.247501297607513 ], [ -95.323970014186116, 30.247660298194173 ], [ -95.324553013479786, 30.248112298306047 ], [ -95.328101015269482, 30.250864298379305 ], [ -95.328570015390028, 30.251228298189019 ], [ -95.328864015123358, 30.251455298563972 ], [ -95.329994015697309, 30.252328298877831 ], [ -95.330287015401879, 30.252555298395642 ], [ -95.330522015771308, 30.252736298538387 ], [ -95.331279015578559, 30.253322299061633 ], [ -95.331330015624218, 30.2533612990227 ], [ -95.331418016396171, 30.25342929939503 ], [ -95.333180016587249, 30.254791298956125 ], [ -95.334563016664674, 30.255859299753105 ], [ -95.335471017119659, 30.256561299865325 ], [ -95.335841017631282, 30.256847299419874 ], [ -95.337503017587764, 30.25813030003204 ], [ -95.338075018398001, 30.25752129949645 ], [ -95.338188018197897, 30.257354299589043 ], [ -95.33825501837147, 30.257234299080384 ], [ -95.338305018230173, 30.257073299893818 ], [ -95.338316018196196, 30.256998299521943 ], [ -95.338331018162691, 30.256898299059866 ], [ -95.338359018394129, 30.255991298891317 ], [ -95.340331018442953, 30.256185299361395 ], [ -95.340873018766302, 30.256238298866357 ], [ -95.341760019151337, 30.256320299627809 ], [ -95.342163019061402, 30.256364298807004 ], [ -95.34273801852602, 30.256385299451576 ], [ -95.344638019612233, 30.256429298845116 ], [ -95.345593019256057, 30.256493298903148 ], [ -95.345918020144211, 30.256538299241551 ], [ -95.346768020233299, 30.256658299265162 ], [ -95.347730019892694, 30.256793299480218 ], [ -95.34842102072534, 30.256878298720547 ], [ -95.348660020377835, 30.256923298893977 ], [ -95.348844020427833, 30.256966299437035 ], [ -95.349025021117455, 30.257021299430395 ], [ -95.351118021539335, 30.258153299367955 ], [ -95.351356021067346, 30.258272299549549 ], [ -95.35202302145926, 30.258637299509953 ], [ -95.357515022430164, 30.255834298653749 ], [ -95.357612022469752, 30.255773298837816 ], [ -95.357672023346282, 30.255717298172183 ], [ -95.35774102244973, 30.255606298209582 ], [ -95.357740022858223, 30.255474298050284 ], [ -95.35770402260323, 30.255391297980399 ], [ -95.355977021902277, 30.252871298390733 ], [ -95.353328021304705, 30.248995297031946 ], [ -95.351209021153892, 30.245915296863235 ], [ -95.360998023455309, 30.240772295081012 ], [ -95.361676022695406, 30.240426295611897 ], [ -95.364510023993475, 30.2389132949342 ], [ -95.368928024741592, 30.236611294294249 ], [ -95.369477024476055, 30.236337294562659 ], [ -95.370033025554591, 30.236036294045125 ], [ -95.371448025196869, 30.235298293477939 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1229, "Tract": "48339693304", "Area_SqMi": 4.6641917997928424, "total_2009": 215, "total_2010": 213, "total_2011": 129, "total_2012": 241, "total_2013": 277, "total_2014": 432, "total_2015": 169, "total_2016": 133, "total_2017": 137, "total_2018": 254, "total_2019": 318, "total_2020": 486, "age1": 440, "age2": 361, "age3": 126, "earn1": 296, "earn2": 350, "earn3": 281, "naics_s01": 0, "naics_s02": 18, "naics_s03": 0, "naics_s04": 26, "naics_s05": 58, "naics_s06": 10, "naics_s07": 241, "naics_s08": 119, "naics_s09": 0, "naics_s10": 13, "naics_s11": 0, "naics_s12": 8, "naics_s13": 0, "naics_s14": 0, "naics_s15": 1, "naics_s16": 113, "naics_s17": 0, "naics_s18": 265, "naics_s19": 55, "naics_s20": 0, "race1": 702, "race2": 152, "race3": 9, "race4": 38, "race5": 1, "race6": 25, "ethnicity1": 643, "ethnicity2": 284, "edu1": 110, "edu2": 138, "edu3": 160, "edu4": 79, "Shape_Length": 52227.714189082581, "Shape_Area": 130029684.53417738, "total_2021": 555, "total_2022": 927 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.502853061422215, 30.277123297965524 ], [ -95.502906061031823, 30.276596297325803 ], [ -95.502749060564426, 30.275840297029514 ], [ -95.502538060610974, 30.275428297594026 ], [ -95.502328060702368, 30.275176296987986 ], [ -95.501985060369577, 30.274992296984628 ], [ -95.500229060031003, 30.274904296914094 ], [ -95.499675060370933, 30.27479029745022 ], [ -95.499516060474875, 30.274561297447104 ], [ -95.498776060234078, 30.273889297315726 ], [ -95.498433059799339, 30.273577296931542 ], [ -95.498273059311387, 30.272478297184026 ], [ -95.49769205993347, 30.271952297083129 ], [ -95.496554059502941, 30.271526297178564 ], [ -95.495923058736864, 30.271289297063312 ], [ -95.495104058777486, 30.270580296446777 ], [ -95.494787059066894, 30.270099296690898 ], [ -95.494608058969803, 30.269662296564032 ], [ -95.49446905841711, 30.269321296137825 ], [ -95.493914058644023, 30.268703296028072 ], [ -95.493649058464413, 30.267901295744121 ], [ -95.493042057609358, 30.267879296401155 ], [ -95.492540057931222, 30.267421295720631 ], [ -95.492197057766688, 30.267238296051552 ], [ -95.491221058028813, 30.267102296030412 ], [ -95.490085057286393, 30.266507295913659 ], [ -95.489636056737851, 30.266050295607606 ], [ -95.489002056630085, 30.265065295632787 ], [ -95.488209056991053, 30.264447295774787 ], [ -95.487971056251823, 30.264104296006533 ], [ -95.487786056924108, 30.263348295123752 ], [ -95.487732056641178, 30.262638295030253 ], [ -95.487547056466354, 30.262363295231882 ], [ -95.487177056712994, 30.261814295558263 ], [ -95.486675056214168, 30.261357295535088 ], [ -95.486279056400065, 30.261174294891976 ], [ -95.484748055762864, 30.260763294973053 ], [ -95.484352055736579, 30.260397294785395 ], [ -95.484193054960258, 30.259732294588112 ], [ -95.4842450553746, 30.258976294736069 ], [ -95.484903055818066, 30.257487294082598 ], [ -95.484876055000967, 30.256754294202711 ], [ -95.484347055365745, 30.256319294297718 ], [ -95.48379305465798, 30.256068293996702 ], [ -95.48255305462358, 30.255840293747966 ], [ -95.481919054153082, 30.255657294420427 ], [ -95.481629054136349, 30.255291293817319 ], [ -95.481549054142079, 30.25439829356138 ], [ -95.481474054656729, 30.254244294022161 ], [ -95.481337054556747, 30.253963293696824 ], [ -95.480941054608294, 30.253665293304405 ], [ -95.480686054134239, 30.253572293875248 ], [ -95.480439054427549, 30.253482293515258 ], [ -95.479094053735651, 30.253438293684603 ], [ -95.478381053624972, 30.253301293998661 ], [ -95.477616053424285, 30.253004293834778 ], [ -95.47706105336195, 30.252683293316757 ], [ -95.476599053285241, 30.252312293820069 ], [ -95.475635053159323, 30.251539293899675 ], [ -95.474691052310263, 30.251343293301808 ], [ -95.474316052592926, 30.251265293544321 ], [ -95.474026052709263, 30.251059293409092 ], [ -95.473867051911654, 30.250785293791264 ], [ -95.47386305216844, 30.250746293793274 ], [ -95.473810052567231, 30.250213293072534 ], [ -95.473703052562158, 30.249412293190645 ], [ -95.473413052527292, 30.249091293139728 ], [ -95.473175051782093, 30.248931293024373 ], [ -95.472442051931196, 30.248782293300543 ], [ -95.471275051813421, 30.24854429322599 ], [ -95.470034051216956, 30.247949293302362 ], [ -95.469427050636583, 30.247423292485049 ], [ -95.469400051561379, 30.24728529293818 ], [ -95.468582050429305, 30.247103292620096 ], [ -95.467949050891946, 30.247172293113547 ], [ -95.467527050097729, 30.247424292584757 ], [ -95.467185050231294, 30.247768292606864 ], [ -95.466790050322743, 30.248456292891824 ], [ -95.466632050004833, 30.248570292802832 ], [ -95.466632050821573, 30.248708292988976 ], [ -95.46536604983514, 30.248823293116214 ], [ -95.464838049605632, 30.248664293594768 ], [ -95.462515048853206, 30.247703293331977 ], [ -95.461011048794347, 30.247590293040254 ], [ -95.460589049320518, 30.247384293472116 ], [ -95.458925048018358, 30.245851292926186 ], [ -95.458674048433181, 30.245749292877115 ], [ -95.458476048067098, 30.245668292801859 ], [ -95.457941048000706, 30.245167292860767 ], [ -95.457874047932663, 30.245104292924232 ], [ -95.457816047516729, 30.245050292863926 ], [ -95.457592047950783, 30.244962292783789 ], [ -95.457551048255723, 30.245161292727168 ], [ -95.457153047726806, 30.247017293361207 ], [ -95.457059047605014, 30.247864293069256 ], [ -95.457011047956129, 30.249180293421116 ], [ -95.457019048015297, 30.250396294170319 ], [ -95.457022048179695, 30.25057429417015 ], [ -95.457041048426021, 30.251192294525183 ], [ -95.45704304778323, 30.25140629455057 ], [ -95.457049048070672, 30.252105293885304 ], [ -95.45705204863296, 30.252215294022516 ], [ -95.457001048530188, 30.25482829520789 ], [ -95.45699104853162, 30.255394294615161 ], [ -95.456985048320519, 30.255525295114701 ], [ -95.456975048449578, 30.25575029534183 ], [ -95.456976048704846, 30.255888294663283 ], [ -95.456967047968092, 30.256092295017901 ], [ -95.456995048904588, 30.257987295227721 ], [ -95.45698804860794, 30.258320295132584 ], [ -95.45696704858041, 30.260879296104733 ], [ -95.456928048598698, 30.26231129657085 ], [ -95.456922048736985, 30.26276029673631 ], [ -95.456955048777161, 30.264179296415449 ], [ -95.456965048425388, 30.265388297065531 ], [ -95.456901048939855, 30.269768297504719 ], [ -95.456858048671037, 30.270619297661185 ], [ -95.456892048630792, 30.272160297927332 ], [ -95.456901049065337, 30.272708298384799 ], [ -95.45682604907114, 30.273912298924873 ], [ -95.456802048698563, 30.275086299056756 ], [ -95.45681604893015, 30.275519299342569 ], [ -95.456884049751167, 30.276412298942201 ], [ -95.456926049567812, 30.276687299456739 ], [ -95.456944049491, 30.276768299214179 ], [ -95.45706404911995, 30.277686299040226 ], [ -95.457352049544852, 30.278928300093174 ], [ -95.457493049132353, 30.279350299914519 ], [ -95.457531049053472, 30.279462299362798 ], [ -95.457854049428036, 30.279360300113506 ], [ -95.458166050166923, 30.279270299918341 ], [ -95.459156049946429, 30.278994299678722 ], [ -95.459432050180226, 30.27893629972241 ], [ -95.459808050093727, 30.27885629962099 ], [ -95.460586049879524, 30.278756299233617 ], [ -95.461506050609643, 30.27868629925533 ], [ -95.462430051224459, 30.278701299402471 ], [ -95.462479050712915, 30.278702299193654 ], [ -95.462575051050607, 30.278708299257364 ], [ -95.462917050957074, 30.278729299872133 ], [ -95.463540051339962, 30.278791299643938 ], [ -95.464205051650751, 30.27888029907982 ], [ -95.4648760508978, 30.279024299664432 ], [ -95.465054051186101, 30.279078299200165 ], [ -95.465194051641703, 30.279120299286649 ], [ -95.465870051918515, 30.279325299798437 ], [ -95.466575051904897, 30.279545299454142 ], [ -95.46704805236385, 30.279682299363056 ], [ -95.467726052453628, 30.279880299855567 ], [ -95.468295052357092, 30.280072299495668 ], [ -95.468719052249028, 30.280216299740015 ], [ -95.469274052967251, 30.28043529926823 ], [ -95.469757052737165, 30.280611299191786 ], [ -95.469887052575388, 30.28065829992584 ], [ -95.47016505287236, 30.280757299487412 ], [ -95.470794053238521, 30.280984299777948 ], [ -95.471412052774895, 30.281202300018823 ], [ -95.472034052854042, 30.28148030011906 ], [ -95.473582053665638, 30.281969299351832 ], [ -95.475808054697993, 30.282674300154245 ], [ -95.476952054670519, 30.283058299599062 ], [ -95.479060055630114, 30.283738299485503 ], [ -95.479491055256005, 30.283887300330235 ], [ -95.480122055148939, 30.284104299577233 ], [ -95.480944055931516, 30.284334300109752 ], [ -95.481644056087461, 30.284474299863685 ], [ -95.48218005617511, 30.284536299823692 ], [ -95.483130056145896, 30.284647299490274 ], [ -95.484009056442702, 30.284750299881392 ], [ -95.484261056722943, 30.284778299480575 ], [ -95.484380056222832, 30.284630300198465 ], [ -95.48469605627507, 30.284584299878954 ], [ -95.485356057232323, 30.284881300101883 ], [ -95.486096057246272, 30.28495029944337 ], [ -95.487521057566028, 30.285017299568075 ], [ -95.487996057239116, 30.285223299755003 ], [ -95.488550057281373, 30.285131299656481 ], [ -95.489079057923206, 30.285497299457752 ], [ -95.489633057952858, 30.285588299862603 ], [ -95.489897057939814, 30.285794299920934 ], [ -95.49005605812809, 30.286366299900621 ], [ -95.49029405780027, 30.286503300403989 ], [ -95.490611057832069, 30.286549299712814 ], [ -95.490848058335089, 30.286434300076486 ], [ -95.491402058782938, 30.286457300304814 ], [ -95.491772059126433, 30.286273300231731 ], [ -95.492484058881985, 30.286112299518031 ], [ -95.49272105910957, 30.285906300084157 ], [ -95.493143058864476, 30.285837299430689 ], [ -95.494911059114017, 30.285216299457677 ], [ -95.496415059298585, 30.284894299070672 ], [ -95.496626059522569, 30.284711299253797 ], [ -95.496625059840326, 30.284344299103562 ], [ -95.496176060032496, 30.283612299550335 ], [ -95.496149060049888, 30.283108299057936 ], [ -95.496386059609264, 30.282535298940548 ], [ -95.496411059984979, 30.282031298807187 ], [ -95.496517059976128, 30.281756298885561 ], [ -95.497123059549892, 30.28097729863174 ], [ -95.497175059363528, 30.280587298620237 ], [ -95.497096059690406, 30.280473298752685 ], [ -95.497042059696071, 30.279992298148215 ], [ -95.497174059658292, 30.279832298242415 ], [ -95.497543059666143, 30.279762298777388 ], [ -95.498177060308379, 30.28024329838885 ], [ -95.498389060521589, 30.280563298212197 ], [ -95.499181060670537, 30.280677298980603 ], [ -95.499286060641595, 30.280425298301832 ], [ -95.49997206007879, 30.280424298177341 ], [ -95.500236059983479, 30.280149298778753 ], [ -95.500580060334585, 30.279984298580409 ], [ -95.500607060417494, 30.279457297896741 ], [ -95.500634060364135, 30.279183298293212 ], [ -95.500898060099047, 30.279045298374285 ], [ -95.501901061384302, 30.278794297935281 ], [ -95.501928060377139, 30.278405297605648 ], [ -95.502483061389185, 30.27774129811452 ], [ -95.502853061422215, 30.277123297965524 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1230, "Tract": "48339693104", "Area_SqMi": 0.74864574905216152, "total_2009": 943, "total_2010": 749, "total_2011": 975, "total_2012": 652, "total_2013": 685, "total_2014": 598, "total_2015": 537, "total_2016": 457, "total_2017": 480, "total_2018": 507, "total_2019": 486, "total_2020": 451, "age1": 124, "age2": 295, "age3": 131, "earn1": 53, "earn2": 146, "earn3": 351, "naics_s01": 0, "naics_s02": 37, "naics_s03": 0, "naics_s04": 23, "naics_s05": 178, "naics_s06": 134, "naics_s07": 10, "naics_s08": 81, "naics_s09": 0, "naics_s10": 0, "naics_s11": 7, "naics_s12": 28, "naics_s13": 0, "naics_s14": 51, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 449, "race2": 82, "race3": 0, "race4": 9, "race5": 0, "race6": 10, "ethnicity1": 370, "ethnicity2": 180, "edu1": 97, "edu2": 122, "edu3": 139, "edu4": 68, "Shape_Length": 20546.370502278896, "Shape_Area": 20870962.163569059, "total_2021": 458, "total_2022": 550 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.440414046994903, 30.312141307387751 ], [ -95.440428046397628, 30.311644307327885 ], [ -95.440313047085382, 30.311553306841066 ], [ -95.440111046254188, 30.311392306509116 ], [ -95.439425046103636, 30.311072307167404 ], [ -95.439107046273364, 30.310728306822202 ], [ -95.438896045971987, 30.310224306348601 ], [ -95.438763046184818, 30.309308306769399 ], [ -95.43931604607296, 30.307705306504857 ], [ -95.439263045753606, 30.306628306114035 ], [ -95.439447045886141, 30.306124305948302 ], [ -95.439485046142778, 30.305572305951131 ], [ -95.43949704634646, 30.305402306084645 ], [ -95.439502045698433, 30.30533030551312 ], [ -95.439552046447233, 30.304612305151501 ], [ -95.438839045969758, 30.30410930507362 ], [ -95.438755045501267, 30.303937305716151 ], [ -95.438627045603454, 30.303674304998772 ], [ -95.438125045646586, 30.303193305205852 ], [ -95.438072045877604, 30.302895304929606 ], [ -95.43817804592527, 30.302758305122385 ], [ -95.438178046147456, 30.302322305501704 ], [ -95.438154045462397, 30.302292305498671 ], [ -95.437913046020185, 30.301979305005919 ], [ -95.437913046017229, 30.30157530507007 ], [ -95.436985045619252, 30.301818305347794 ], [ -95.435293045322524, 30.302068305544839 ], [ -95.433471044846542, 30.302322305311947 ], [ -95.431800044052594, 30.302690305528056 ], [ -95.431940043883529, 30.303365305163663 ], [ -95.432126044105914, 30.304143306076348 ], [ -95.432175043864191, 30.304426305934619 ], [ -95.432490044094479, 30.305512305982674 ], [ -95.432593044673112, 30.305866305871756 ], [ -95.432705044119047, 30.306216305839921 ], [ -95.43285104464762, 30.306646306511883 ], [ -95.431191044232605, 30.307037305941218 ], [ -95.430655044210681, 30.307163306744336 ], [ -95.430373043826009, 30.307244306638445 ], [ -95.42997804372672, 30.307335306825248 ], [ -95.429711043971139, 30.307386306623286 ], [ -95.429309043836255, 30.307446306288885 ], [ -95.429041043879451, 30.307478306496911 ], [ -95.428205043177442, 30.307550306366213 ], [ -95.425661042280936, 30.307771306226634 ], [ -95.425129042333694, 30.307820306670333 ], [ -95.423364041647233, 30.307981306817695 ], [ -95.42337104240454, 30.308262307153424 ], [ -95.423451042628557, 30.308331306575621 ], [ -95.423477041861872, 30.308605307058233 ], [ -95.423768042305454, 30.309132307220363 ], [ -95.424455042146306, 30.309750307341744 ], [ -95.424640042723254, 30.310025307194095 ], [ -95.425089042464606, 30.311880307400134 ], [ -95.426041043254742, 30.313529307411692 ], [ -95.42654304278274, 30.314124307744041 ], [ -95.42707004386773, 30.314595307921671 ], [ -95.427287043543643, 30.31478830843027 ], [ -95.427467043916167, 30.314949307980438 ], [ -95.427712043470564, 30.315320307668429 ], [ -95.427784043366373, 30.315429307831106 ], [ -95.428004044177797, 30.316041308241616 ], [ -95.428155043883862, 30.3164603082963 ], [ -95.428894044197406, 30.317147308136672 ], [ -95.429096043752295, 30.317809308536397 ], [ -95.429132044020406, 30.317926309032096 ], [ -95.429925044117937, 30.318796308723812 ], [ -95.430024044718678, 30.319019308509617 ], [ -95.430156044363812, 30.319316309252827 ], [ -95.431707045132754, 30.319209308494496 ], [ -95.432438044566879, 30.319151309078947 ], [ -95.433058044737109, 30.319014308807731 ], [ -95.433363045471722, 30.31893130893685 ], [ -95.433662045463677, 30.318837308251602 ], [ -95.433963045585443, 30.318735308936947 ], [ -95.434254045572487, 30.318624308485891 ], [ -95.434400045819046, 30.318562308615547 ], [ -95.435621046104544, 30.318077308107227 ], [ -95.437193046435539, 30.317423308301187 ], [ -95.438735046286268, 30.316782308130072 ], [ -95.440226047060392, 30.316157307818298 ], [ -95.440025046786587, 30.315952307545611 ], [ -95.439956047148002, 30.315882307912734 ], [ -95.439771046366189, 30.315538307840875 ], [ -95.439816046169142, 30.314557307940134 ], [ -95.439833046375611, 30.31421030730608 ], [ -95.439875046728844, 30.313293307280794 ], [ -95.440007047125945, 30.312995307300085 ], [ -95.44040204710663, 30.312560307545464 ], [ -95.440414046994903, 30.312141307387751 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1231, "Tract": "48339694208", "Area_SqMi": 3.2704760671914066, "total_2009": 203, "total_2010": 196, "total_2011": 154, "total_2012": 250, "total_2013": 236, "total_2014": 144, "total_2015": 183, "total_2016": 216, "total_2017": 148, "total_2018": 283, "total_2019": 494, "total_2020": 447, "age1": 108, "age2": 336, "age3": 108, "earn1": 91, "earn2": 210, "earn3": 251, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 0, "naics_s06": 0, "naics_s07": 5, "naics_s08": 1, "naics_s09": 21, "naics_s10": 14, "naics_s11": 1, "naics_s12": 5, "naics_s13": 0, "naics_s14": 26, "naics_s15": 84, "naics_s16": 260, "naics_s17": 0, "naics_s18": 89, "naics_s19": 4, "naics_s20": 15, "race1": 437, "race2": 83, "race3": 8, "race4": 17, "race5": 0, "race6": 7, "ethnicity1": 402, "ethnicity2": 150, "edu1": 82, "edu2": 106, "edu3": 142, "edu4": 114, "Shape_Length": 43375.272281556121, "Shape_Area": 91175275.27756542, "total_2021": 465, "total_2022": 552 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.529609072863082, 30.377787317182101 ], [ -95.529735072320378, 30.377183317029992 ], [ -95.529566072660657, 30.377142316805653 ], [ -95.524896070971593, 30.376010316857347 ], [ -95.524614071475028, 30.375942316973674 ], [ -95.522740071208787, 30.375510317063032 ], [ -95.517803069319768, 30.374372317293666 ], [ -95.516345068948866, 30.374036316780852 ], [ -95.515692068365468, 30.373886317223324 ], [ -95.515450068508301, 30.373830316611112 ], [ -95.515206068502948, 30.373774317107795 ], [ -95.514296068842626, 30.373564317210466 ], [ -95.511419067897151, 30.372901316697742 ], [ -95.510739067595679, 30.372744316880741 ], [ -95.510394067364714, 30.372665317168174 ], [ -95.510017067012384, 30.372578316727747 ], [ -95.50984606751507, 30.372546317049348 ], [ -95.508967066707768, 30.372361316645531 ], [ -95.508017067182251, 30.372137317005734 ], [ -95.505898065950419, 30.371640316615824 ], [ -95.505431066229832, 30.371531316906129 ], [ -95.505189065694012, 30.371474316572687 ], [ -95.504606066021239, 30.37133831626884 ], [ -95.504199065978767, 30.371244316466864 ], [ -95.503923065448873, 30.371180316564548 ], [ -95.503669065924313, 30.371121316600259 ], [ -95.503245066065091, 30.371047316673174 ], [ -95.502092064737326, 30.370758316858186 ], [ -95.499519064762055, 30.370163317080721 ], [ -95.499214064827882, 30.370158317013754 ], [ -95.49884506466509, 30.37001731688153 ], [ -95.49613906396857, 30.369392316875373 ], [ -95.495527063240075, 30.369251316695905 ], [ -95.494506063237637, 30.369015317033778 ], [ -95.493200063084117, 30.368715316685762 ], [ -95.492949062436495, 30.368659316970081 ], [ -95.492699062455188, 30.368602316742841 ], [ -95.492624063041887, 30.368584316963087 ], [ -95.492011062802931, 30.368444316831518 ], [ -95.485959060703308, 30.367061316169966 ], [ -95.485656061337025, 30.366992316814297 ], [ -95.485302060924965, 30.366886316768237 ], [ -95.485559061249134, 30.369547316839746 ], [ -95.485569060736808, 30.369663317258894 ], [ -95.485611061282015, 30.370137316770755 ], [ -95.485766061637733, 30.371894317751625 ], [ -95.485925061697969, 30.373707317812176 ], [ -95.486007061223162, 30.375198318243083 ], [ -95.486172061349677, 30.37699231813415 ], [ -95.486241061101438, 30.378136318843179 ], [ -95.486337061243432, 30.380512318807639 ], [ -95.486472062395109, 30.384511320337101 ], [ -95.486630062320984, 30.389176320570908 ], [ -95.486699062071111, 30.391252321428599 ], [ -95.487942062736124, 30.391221321338346 ], [ -95.488490062708806, 30.391202321316555 ], [ -95.490135063044136, 30.391165320828904 ], [ -95.492459063880119, 30.39110932131036 ], [ -95.493351063556773, 30.391092320894824 ], [ -95.494608064184021, 30.391092321196645 ], [ -95.495751064908006, 30.391066320609163 ], [ -95.496213064910023, 30.391053320840776 ], [ -95.496670064612019, 30.391042321121457 ], [ -95.497072064775281, 30.391034321307615 ], [ -95.49782606472256, 30.391018320971259 ], [ -95.49828206482411, 30.391027320886824 ], [ -95.498738065840655, 30.391053320897328 ], [ -95.49904106536853, 30.39108632109291 ], [ -95.499552065547775, 30.391157321260511 ], [ -95.499989065398168, 30.391237321025791 ], [ -95.500426065511462, 30.391325321125315 ], [ -95.500856065604481, 30.39142732060682 ], [ -95.501072066171545, 30.391488320685106 ], [ -95.501224066192634, 30.391528321198095 ], [ -95.501649066498032, 30.391640320764591 ], [ -95.501893066047231, 30.391711320853791 ], [ -95.502049065981907, 30.39175832136176 ], [ -95.503246066718802, 30.392196321078941 ], [ -95.509431068549176, 30.394405321482743 ], [ -95.509814068346103, 30.394558321598605 ], [ -95.510314068533063, 30.394783321500981 ], [ -95.510639068460989, 30.394945321673262 ], [ -95.510957069149597, 30.395116321141622 ], [ -95.511420068895461, 30.395392321592897 ], [ -95.511869068520895, 30.395687321415533 ], [ -95.512297069357658, 30.396003321797519 ], [ -95.513935069545155, 30.39741032187645 ], [ -95.514178070113232, 30.397623321360719 ], [ -95.514428069418656, 30.397835321773442 ], [ -95.514938069686863, 30.398242321728475 ], [ -95.515198070360285, 30.398444322159342 ], [ -95.515308069978389, 30.398524321524164 ], [ -95.515641070385939, 30.398389321723418 ], [ -95.515877070373847, 30.398129321704872 ], [ -95.516205070036463, 30.397722321932505 ], [ -95.516413070285182, 30.397444321911088 ], [ -95.516698070111957, 30.397016321068456 ], [ -95.51678807063557, 30.396870320994545 ], [ -95.517038069841618, 30.396431321055609 ], [ -95.517211070418426, 30.396092321409665 ], [ -95.517370070556382, 30.395749321462485 ], [ -95.517551070640948, 30.395311320902561 ], [ -95.517587070893754, 30.395210320870593 ], [ -95.517651070011269, 30.395030320803393 ], [ -95.517742070530147, 30.39474732133267 ], [ -95.517855070270443, 30.39431532074633 ], [ -95.517941070249123, 30.393880320856489 ], [ -95.517983070322686, 30.393587320615886 ], [ -95.518025070353204, 30.393203320720243 ], [ -95.518059069960955, 30.392959320754073 ], [ -95.518104070322636, 30.39271232087394 ], [ -95.518213069955152, 30.392297320790735 ], [ -95.518291070064734, 30.391933320775365 ], [ -95.518662070527554, 30.39043831977672 ], [ -95.518819070810792, 30.389928319692704 ], [ -95.518912070125239, 30.38944631987934 ], [ -95.519105070414625, 30.388849319690429 ], [ -95.519364070405274, 30.388008319467804 ], [ -95.519574070994508, 30.387282319690957 ], [ -95.519657070026412, 30.386913319717276 ], [ -95.519765070587511, 30.386592319248063 ], [ -95.519879071044556, 30.386259318821391 ], [ -95.520244070925358, 30.385498319402167 ], [ -95.520688070564802, 30.38461531873071 ], [ -95.520803070243403, 30.38424431880135 ], [ -95.521052070760632, 30.383822318341405 ], [ -95.521414070761892, 30.383391318549197 ], [ -95.521830070637733, 30.383014318002196 ], [ -95.522013071007976, 30.382840318246469 ], [ -95.522288071244063, 30.382663318753874 ], [ -95.522731071494135, 30.382512317902734 ], [ -95.523214071540721, 30.382340317951193 ], [ -95.523327070773902, 30.382291317798181 ], [ -95.523594071596492, 30.382179318272815 ], [ -95.523858071706471, 30.381985318357223 ], [ -95.52461107184979, 30.381457318322472 ], [ -95.524755071839309, 30.38135631809908 ], [ -95.525348071434095, 30.380973318051737 ], [ -95.525501071351044, 30.380889317700113 ], [ -95.525676071692629, 30.380811317472535 ], [ -95.52584207209128, 30.380837318195329 ], [ -95.526239072261134, 30.380910317831216 ], [ -95.526355071891047, 30.380935317751291 ], [ -95.526928072624017, 30.381077317667526 ], [ -95.527443072675453, 30.381195317914006 ], [ -95.528790072893216, 30.381488317878087 ], [ -95.528786072737034, 30.381386317439169 ], [ -95.528762072055684, 30.381107317983613 ], [ -95.528875072504079, 30.38066331745933 ], [ -95.528997072270414, 30.380192317925797 ], [ -95.529448072278271, 30.378418317270942 ], [ -95.529508073083335, 30.378183317485853 ], [ -95.529609072863082, 30.377787317182101 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1232, "Tract": "48339690610", "Area_SqMi": 3.7916037138032999, "total_2009": 765, "total_2010": 650, "total_2011": 992, "total_2012": 1163, "total_2013": 1453, "total_2014": 1615, "total_2015": 1558, "total_2016": 1552, "total_2017": 1570, "total_2018": 1728, "total_2019": 1606, "total_2020": 2018, "age1": 851, "age2": 949, "age3": 353, "earn1": 654, "earn2": 767, "earn3": 732, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 42, "naics_s06": 35, "naics_s07": 770, "naics_s08": 2, "naics_s09": 7, "naics_s10": 31, "naics_s11": 27, "naics_s12": 62, "naics_s13": 2, "naics_s14": 14, "naics_s15": 189, "naics_s16": 108, "naics_s17": 164, "naics_s18": 586, "naics_s19": 100, "naics_s20": 0, "race1": 1718, "race2": 258, "race3": 17, "race4": 111, "race5": 4, "race6": 45, "ethnicity1": 1541, "ethnicity2": 612, "edu1": 246, "edu2": 332, "edu3": 405, "edu4": 319, "Shape_Length": 44517.305062547828, "Shape_Area": 105703422.14622386, "total_2021": 2022, "total_2022": 2153 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.521215063556681, 30.227832286850198 ], [ -95.52100906298827, 30.22664428686431 ], [ -95.520949063246562, 30.226356286611495 ], [ -95.520732062899171, 30.225314286386862 ], [ -95.520703062848, 30.225125286145506 ], [ -95.520607063361197, 30.224472286071435 ], [ -95.520520062538097, 30.223600285971116 ], [ -95.520462062921453, 30.22201128636345 ], [ -95.520472063357857, 30.221332286058008 ], [ -95.520469062952927, 30.219277285611209 ], [ -95.520487062891092, 30.218439285540708 ], [ -95.520128063027116, 30.218429285262804 ], [ -95.519595062890033, 30.21839928557139 ], [ -95.519125062104592, 30.218368285559265 ], [ -95.518886062697575, 30.21837028497734 ], [ -95.518606062611482, 30.21839328498119 ], [ -95.51851406214648, 30.218404285179755 ], [ -95.516996061850179, 30.21868428561401 ], [ -95.516910062179704, 30.218696285608491 ], [ -95.516749061596158, 30.218711285229599 ], [ -95.516509061555453, 30.218707285512945 ], [ -95.516427061892358, 30.218700285764367 ], [ -95.516274061503154, 30.218676285096414 ], [ -95.516188061330027, 30.21865228531918 ], [ -95.516007062047422, 30.218592285183064 ], [ -95.515850061995735, 30.218522285442159 ], [ -95.51574206139955, 30.218459285383002 ], [ -95.515578061917978, 30.218342284928241 ], [ -95.515503061842509, 30.218277285131762 ], [ -95.515411061643277, 30.218184285107025 ], [ -95.515345061353798, 30.218108284901508 ], [ -95.515298061064598, 30.218046284899444 ], [ -95.515257061075673, 30.217982285055889 ], [ -95.515197060991738, 30.217876285268225 ], [ -95.515137060959262, 30.2177362851337 ], [ -95.515096061238594, 30.217598284865637 ], [ -95.515071061886786, 30.217454284789493 ], [ -95.515064061041073, 30.217308285023385 ], [ -95.515066061409385, 30.21723728485329 ], [ -95.515111061516095, 30.216613284711233 ], [ -95.51511806182441, 30.216410285199562 ], [ -95.515108061307188, 30.216215284744806 ], [ -95.51508306145567, 30.216027284658715 ], [ -95.515065060796999, 30.215933284803395 ], [ -95.515004060981028, 30.21570028513932 ], [ -95.514981061333756, 30.21563428460129 ], [ -95.514920060798943, 30.215472284507598 ], [ -95.514835060794098, 30.215294284650078 ], [ -95.514683061542115, 30.215040284334926 ], [ -95.514564061022838, 30.214877285066883 ], [ -95.513686060384401, 30.213856284141876 ], [ -95.513590060463557, 30.213727284259697 ], [ -95.513504060424523, 30.213596284353901 ], [ -95.513462060982548, 30.213523284430266 ], [ -95.513366060244152, 30.213311284173493 ], [ -95.513325060784737, 30.213190284107281 ], [ -95.513315060516675, 30.213161284408521 ], [ -95.513275061075475, 30.213012284302149 ], [ -95.513247060492802, 30.212863284501509 ], [ -95.513231061095098, 30.212708284420955 ], [ -95.513228060950439, 30.212557284234684 ], [ -95.513237060675863, 30.212403284520445 ], [ -95.513273060166782, 30.212173284208191 ], [ -95.513313060556001, 30.212023284041447 ], [ -95.513365060401611, 30.211875284112562 ], [ -95.513464060911346, 30.211663283933632 ], [ -95.513517060712232, 30.211569284162852 ], [ -95.513824061046321, 30.211021283876331 ], [ -95.513615060338964, 30.210888284243225 ], [ -95.513108060177373, 30.210501283968618 ], [ -95.512127060569085, 30.210173284219749 ], [ -95.511136060485839, 30.209893284067181 ], [ -95.510915059578835, 30.209868284230488 ], [ -95.510481059329166, 30.210068284289395 ], [ -95.510203059473142, 30.210222284165543 ], [ -95.509845059947352, 30.210216284144032 ], [ -95.509216059996064, 30.209943284091825 ], [ -95.507663058962265, 30.209347283987636 ], [ -95.506707058617849, 30.208948284135428 ], [ -95.506298058815318, 30.208600283428186 ], [ -95.506304058240332, 30.208430284005967 ], [ -95.506199058209674, 30.208224283942972 ], [ -95.505698058406097, 30.207857283805236 ], [ -95.505683058536448, 30.207821283841344 ], [ -95.50509105844381, 30.208087283486027 ], [ -95.504532058026484, 30.208340283317035 ], [ -95.502485057671777, 30.20925128383022 ], [ -95.502450057532684, 30.209268283526701 ], [ -95.500797057426652, 30.209964284457325 ], [ -95.500427057006519, 30.21012028437352 ], [ -95.500197057596736, 30.210222284582329 ], [ -95.499523056776027, 30.20912628444739 ], [ -95.499173056868912, 30.208630283980106 ], [ -95.498805056984025, 30.208174283910399 ], [ -95.498756057249452, 30.20811328411569 ], [ -95.49856705706415, 30.207891283692945 ], [ -95.498137056240424, 30.207444283891672 ], [ -95.498076056572359, 30.207380284000443 ], [ -95.49764705636666, 30.206970283703221 ], [ -95.496904055982654, 30.206359283271702 ], [ -95.496173056042451, 30.205850283115172 ], [ -95.496108056169362, 30.205805283053223 ], [ -95.495582056136698, 30.2054802836706 ], [ -95.494863055543433, 30.205098283510221 ], [ -95.494482055939116, 30.204915283550712 ], [ -95.494114055808225, 30.204751283785157 ], [ -95.493694055204202, 30.204581283275054 ], [ -95.492819054987493, 30.204253283718607 ], [ -95.491536054841049, 30.203751283157953 ], [ -95.491360054836065, 30.203683283345885 ], [ -95.490441054003711, 30.203324283356753 ], [ -95.489665054576008, 30.203010283006421 ], [ -95.489391053768955, 30.202909283418901 ], [ -95.488929053816719, 30.202751282710654 ], [ -95.488456054193747, 30.202621283152155 ], [ -95.488226053358048, 30.202565283251065 ], [ -95.487789053698364, 30.20250428343849 ], [ -95.487562053350686, 30.202482282930291 ], [ -95.487341053089338, 30.202468283146196 ], [ -95.487134053360577, 30.202462283534604 ], [ -95.486906053298412, 30.202465283044944 ], [ -95.486743053595703, 30.20247128287733 ], [ -95.486187053437249, 30.202517283044109 ], [ -95.485782053668203, 30.202581283408286 ], [ -95.485591052753549, 30.202617283622214 ], [ -95.485246052759138, 30.202707283235373 ], [ -95.484708052584949, 30.202880283296668 ], [ -95.484363053020516, 30.203023283625313 ], [ -95.484183052960361, 30.203106283508877 ], [ -95.483849052357698, 30.203273283030569 ], [ -95.482108052005728, 30.204306283374638 ], [ -95.480016051924949, 30.205539283853511 ], [ -95.480379052264695, 30.207466284710975 ], [ -95.480403052235033, 30.208965284611089 ], [ -95.480409052025806, 30.209920285070737 ], [ -95.480432052577854, 30.211511284977533 ], [ -95.480432052019225, 30.21230828521638 ], [ -95.480455052200099, 30.214161285566153 ], [ -95.480466052015601, 30.214638285485446 ], [ -95.480466052177874, 30.215127286119472 ], [ -95.480464052932504, 30.215515285652781 ], [ -95.480496051957175, 30.215520286357989 ], [ -95.480500052771191, 30.21603828571595 ], [ -95.480536052931853, 30.219675287174688 ], [ -95.480592053073124, 30.226149288351159 ], [ -95.480590052934645, 30.229203288674935 ], [ -95.480584053549009, 30.230045288562707 ], [ -95.480593053213951, 30.230236288690673 ], [ -95.480619052923657, 30.233484290021035 ], [ -95.480626053583379, 30.233564290073577 ], [ -95.48062405364449, 30.233624289443505 ], [ -95.480643053217733, 30.234829289595801 ], [ -95.480625053550469, 30.235072289866217 ], [ -95.480815053718104, 30.235046289725446 ], [ -95.481333053385598, 30.234974289500546 ], [ -95.481379054073017, 30.234966289834496 ], [ -95.482413053713699, 30.234779289560993 ], [ -95.48520905408472, 30.23422828950968 ], [ -95.485862055135726, 30.234110289158266 ], [ -95.488731055479462, 30.233462289717369 ], [ -95.488952055648582, 30.233411289021561 ], [ -95.490200055687495, 30.23312028936509 ], [ -95.492299056139657, 30.232644288672205 ], [ -95.493332056583299, 30.232412288896629 ], [ -95.493731056379929, 30.232357289308059 ], [ -95.494088056302161, 30.232303288709215 ], [ -95.494446057000928, 30.232243289130032 ], [ -95.494801057279162, 30.232176289327903 ], [ -95.495265056883184, 30.232083288722613 ], [ -95.496296057617741, 30.23190128889059 ], [ -95.496571056832039, 30.231853288338801 ], [ -95.49723505699076, 30.231749288900993 ], [ -95.498863058280136, 30.231508288355503 ], [ -95.499071057760361, 30.231481288583918 ], [ -95.500830058209061, 30.231222288913401 ], [ -95.501395058493586, 30.231139288117514 ], [ -95.502195059072307, 30.231020288308631 ], [ -95.504327059487792, 30.230706287850065 ], [ -95.504410059169686, 30.230694288157217 ], [ -95.505756059074542, 30.230496288047295 ], [ -95.507564060320576, 30.23023228815547 ], [ -95.511497060797183, 30.229658288130047 ], [ -95.511702060767064, 30.229624288200629 ], [ -95.514958061909056, 30.229040287790909 ], [ -95.515467061880585, 30.228941287786697 ], [ -95.516383061894103, 30.228765287090859 ], [ -95.516950062477761, 30.228655287349039 ], [ -95.518764062328941, 30.228305287089338 ], [ -95.521215063556681, 30.227832286850198 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1233, "Tract": "48339692304", "Area_SqMi": 3.2898016122198617, "total_2009": 604, "total_2010": 357, "total_2011": 167, "total_2012": 324, "total_2013": 334, "total_2014": 482, "total_2015": 430, "total_2016": 591, "total_2017": 599, "total_2018": 658, "total_2019": 809, "total_2020": 914, "age1": 212, "age2": 465, "age3": 210, "earn1": 250, "earn2": 358, "earn3": 279, "naics_s01": 0, "naics_s02": 10, "naics_s03": 0, "naics_s04": 211, "naics_s05": 122, "naics_s06": 9, "naics_s07": 83, "naics_s08": 5, "naics_s09": 0, "naics_s10": 11, "naics_s11": 7, "naics_s12": 63, "naics_s13": 1, "naics_s14": 32, "naics_s15": 0, "naics_s16": 49, "naics_s17": 7, "naics_s18": 181, "naics_s19": 96, "naics_s20": 0, "race1": 740, "race2": 91, "race3": 9, "race4": 33, "race5": 5, "race6": 9, "ethnicity1": 556, "ethnicity2": 331, "edu1": 181, "edu2": 193, "edu3": 173, "edu4": 128, "Shape_Length": 52540.772605500191, "Shape_Area": 91714038.396957859, "total_2021": 1006, "total_2022": 887 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.275227994419566, 30.095483268433586 ], [ -95.275215994280771, 30.094789268260687 ], [ -95.274994994202174, 30.091734268326139 ], [ -95.274987993608661, 30.091633267654341 ], [ -95.274851993398627, 30.089753267825039 ], [ -95.274767993477781, 30.089324267408269 ], [ -95.274581994070829, 30.088821267481652 ], [ -95.274439994066441, 30.088533267091208 ], [ -95.274166993228235, 30.087976267719295 ], [ -95.273962993147805, 30.087539267027889 ], [ -95.273921993329793, 30.087450266961572 ], [ -95.273867993873708, 30.087335267544255 ], [ -95.273842993959306, 30.087280267471794 ], [ -95.273652993679818, 30.086872267223846 ], [ -95.27322299292014, 30.085949267157254 ], [ -95.272652992799166, 30.084731266602635 ], [ -95.272109992692947, 30.083605266363385 ], [ -95.270922992722362, 30.081088265778124 ], [ -95.269962992455433, 30.079135265509322 ], [ -95.268912991982702, 30.076911265109452 ], [ -95.268734991957089, 30.076587265372876 ], [ -95.268528991557403, 30.07625426540443 ], [ -95.26817499177713, 30.075793264945695 ], [ -95.267067990989972, 30.074505264841889 ], [ -95.26554799065309, 30.07273526491845 ], [ -95.265131990380496, 30.072219264769011 ], [ -95.264897990089224, 30.071929264322154 ], [ -95.263949990702201, 30.070753264172737 ], [ -95.26353398960228, 30.070218263895217 ], [ -95.263101989644937, 30.069662264187563 ], [ -95.262959989781436, 30.069392263859378 ], [ -95.26291099002313, 30.06924126382383 ], [ -95.262880989394247, 30.069147264135573 ], [ -95.262826989607547, 30.068860263700603 ], [ -95.262824989625599, 30.069152263643598 ], [ -95.262811989491723, 30.071406263876913 ], [ -95.258337989006819, 30.071425264881757 ], [ -95.255359987626846, 30.071439264523256 ], [ -95.255359987999256, 30.071500264191236 ], [ -95.255361987990128, 30.071878264664136 ], [ -95.250402986396594, 30.071897264625463 ], [ -95.250482986658582, 30.076571266081825 ], [ -95.250380987475523, 30.080474266856498 ], [ -95.25121598783187, 30.080314266681487 ], [ -95.251316987719918, 30.080300266873945 ], [ -95.251554987546413, 30.080271266202747 ], [ -95.252012988028795, 30.080237266460422 ], [ -95.252452987540082, 30.08022726622027 ], [ -95.252782987595992, 30.080242266470052 ], [ -95.253073988143797, 30.080278266393787 ], [ -95.253452988272571, 30.080338266040137 ], [ -95.253838988488823, 30.080409266501881 ], [ -95.254294988594879, 30.080504266830363 ], [ -95.254453988181652, 30.080534266823104 ], [ -95.254151987734389, 30.081904266991053 ], [ -95.253823988622202, 30.083424267321856 ], [ -95.253536988654872, 30.084946267201218 ], [ -95.254166988535104, 30.085066267599231 ], [ -95.255015988278146, 30.085203267478345 ], [ -95.255359988487768, 30.085281267714134 ], [ -95.255727988308877, 30.085386267862841 ], [ -95.256069989061686, 30.085511267459538 ], [ -95.256338989034234, 30.08562426773215 ], [ -95.256600989273849, 30.085747267368475 ], [ -95.25714798955471, 30.086050267131643 ], [ -95.257472989701824, 30.086264267710693 ], [ -95.258014989154276, 30.086702267557921 ], [ -95.258715989479754, 30.087364268084663 ], [ -95.258277989590127, 30.087701268237065 ], [ -95.258202989836093, 30.087760267592078 ], [ -95.257579988938673, 30.088284268144008 ], [ -95.257075989189332, 30.088027268310356 ], [ -95.25646298898279, 30.08785026748976 ], [ -95.255582988650502, 30.087567267568396 ], [ -95.254928988988951, 30.087414267593413 ], [ -95.254314988104042, 30.087265268033164 ], [ -95.253760988306254, 30.087176267957865 ], [ -95.253345988257337, 30.08708726820208 ], [ -95.253018988402047, 30.087068267556148 ], [ -95.252768987716323, 30.087163267652979 ], [ -95.252662988466511, 30.087000268080626 ], [ -95.252412987577074, 30.086850268238965 ], [ -95.251998988363425, 30.086817267645785 ], [ -95.251515988091612, 30.086857268295759 ], [ -95.251240987193384, 30.086840268259351 ], [ -95.250874987271985, 30.086843267817965 ], [ -95.250554987825822, 30.086800267642619 ], [ -95.250525987819444, 30.086437267853032 ], [ -95.249581987641321, 30.086461267692982 ], [ -95.249009987076818, 30.086467267616143 ], [ -95.249046986922565, 30.088361267819522 ], [ -95.249054987334759, 30.089932268185244 ], [ -95.249049986815407, 30.090078268206984 ], [ -95.248978987658859, 30.09021326907504 ], [ -95.249060987514056, 30.090304268677603 ], [ -95.249063987328782, 30.090507268862325 ], [ -95.249077987243965, 30.091943268752903 ], [ -95.249097987791941, 30.092291268686381 ], [ -95.249139987207968, 30.092406268684623 ], [ -95.249342987665884, 30.09256726886592 ], [ -95.249497987630818, 30.092616268675798 ], [ -95.249952987807589, 30.092623268899469 ], [ -95.249933987651914, 30.093209269363442 ], [ -95.249656987339506, 30.093164269163971 ], [ -95.247472987143723, 30.093173269467737 ], [ -95.247443987209493, 30.093173269673933 ], [ -95.246447986338381, 30.093177269292099 ], [ -95.245807986147128, 30.093181269706108 ], [ -95.245593986882213, 30.093254269371744 ], [ -95.245537986389905, 30.093288269673987 ], [ -95.245514986538197, 30.093356268996175 ], [ -95.245405986614202, 30.093697269781281 ], [ -95.244532986151327, 30.093505269522147 ], [ -95.244594986695844, 30.093289269623586 ], [ -95.24457998585585, 30.093165269690839 ], [ -95.24445798605754, 30.093037269117321 ], [ -95.243885985635046, 30.092929269154194 ], [ -95.243537986333223, 30.092905269056228 ], [ -95.243079985970112, 30.092916269429221 ], [ -95.242953985928878, 30.092927269436416 ], [ -95.242850986010936, 30.093069269774769 ], [ -95.242534985891126, 30.094075269867339 ], [ -95.242264985926766, 30.094923269727364 ], [ -95.242063985537825, 30.095554269851846 ], [ -95.242057986144545, 30.095632269786119 ], [ -95.242086985967973, 30.095715269939362 ], [ -95.242189985458793, 30.095807270314001 ], [ -95.24228398532297, 30.095834270372929 ], [ -95.243145985576632, 30.095837269534623 ], [ -95.243162986448311, 30.096303269668446 ], [ -95.243162985950136, 30.096430270413556 ], [ -95.243321986545766, 30.096677270620109 ], [ -95.243185985643123, 30.096803270243274 ], [ -95.24314698583342, 30.097025269849684 ], [ -95.243195985743284, 30.097571270115061 ], [ -95.24327498622074, 30.097611270101023 ], [ -95.245893986348875, 30.097583270147723 ], [ -95.245955986625091, 30.097544269852182 ], [ -95.245950986905527, 30.097208269928917 ], [ -95.246895986619776, 30.097235270472481 ], [ -95.24687798718665, 30.098234270384506 ], [ -95.248042987233589, 30.098241270682635 ], [ -95.248031987134297, 30.099022270383283 ], [ -95.246978986923054, 30.099017270113119 ], [ -95.24684398760175, 30.099010270505929 ], [ -95.246760987055168, 30.099076270091135 ], [ -95.246769986848648, 30.100416270382503 ], [ -95.247844987009685, 30.100402270646441 ], [ -95.248396987863828, 30.100404271175368 ], [ -95.248371988162873, 30.101977270923708 ], [ -95.248344988147423, 30.103241271721753 ], [ -95.248315987784054, 30.104614271840493 ], [ -95.249336988322284, 30.10461027116791 ], [ -95.24987098764484, 30.104608271645009 ], [ -95.250525988609596, 30.104606271215392 ], [ -95.250963988414199, 30.104604271060936 ], [ -95.251902988822863, 30.104601271671967 ], [ -95.252271989135494, 30.10460827156572 ], [ -95.252505989078486, 30.104623271476839 ], [ -95.252726988975795, 30.104648271336316 ], [ -95.253142988962978, 30.104712271234241 ], [ -95.253733989407024, 30.104836271412935 ], [ -95.25418998902208, 30.104981271681886 ], [ -95.254608989233972, 30.105138271367867 ], [ -95.254821989025857, 30.105224271229456 ], [ -95.255192989131061, 30.105427271140957 ], [ -95.255755989671329, 30.105759271397609 ], [ -95.255919990229785, 30.105872271606366 ], [ -95.255963989674413, 30.105902271319835 ], [ -95.256084990205593, 30.105980272000558 ], [ -95.256408990186742, 30.106206271867354 ], [ -95.256846990459863, 30.106499271965028 ], [ -95.258456990802003, 30.107576271716788 ], [ -95.259883991341226, 30.108504272100152 ], [ -95.260406991155079, 30.108852271922615 ], [ -95.260547990776232, 30.108946272279514 ], [ -95.261007991490089, 30.109253272194586 ], [ -95.261642991070289, 30.109692272333632 ], [ -95.262274991266651, 30.110139272154292 ], [ -95.262822991633968, 30.110544271913454 ], [ -95.262892992150626, 30.110596272098213 ], [ -95.263505992224921, 30.111061272244115 ], [ -95.264641992594989, 30.11190727258812 ], [ -95.26510599197124, 30.11129027224829 ], [ -95.265596992872801, 30.110658271862665 ], [ -95.266789992948205, 30.109120271516538 ], [ -95.267526992767174, 30.108180271426153 ], [ -95.268376992543409, 30.107067271644237 ], [ -95.269262992810994, 30.105950271363437 ], [ -95.269533993461252, 30.105589271101579 ], [ -95.269951992956237, 30.105004270774614 ], [ -95.270859993574476, 30.103084270722324 ], [ -95.271373993701857, 30.101973270195245 ], [ -95.271739993616208, 30.101342270462485 ], [ -95.271915993289582, 30.10109526982307 ], [ -95.272155993866292, 30.100759270140713 ], [ -95.27326099427718, 30.099414269595496 ], [ -95.27398599421619, 30.098334269377052 ], [ -95.274828993804491, 30.096883269054878 ], [ -95.275075994757174, 30.096353268864036 ], [ -95.275138994097944, 30.096182268671445 ], [ -95.275179993833788, 30.09599826913033 ], [ -95.275203994025048, 30.095798268669995 ], [ -95.275227994419566, 30.095483268433586 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1234, "Tract": "48339692101", "Area_SqMi": 3.8326189757859814, "total_2009": 306, "total_2010": 440, "total_2011": 701, "total_2012": 559, "total_2013": 503, "total_2014": 611, "total_2015": 669, "total_2016": 674, "total_2017": 791, "total_2018": 771, "total_2019": 767, "total_2020": 677, "age1": 342, "age2": 429, "age3": 172, "earn1": 248, "earn2": 404, "earn3": 291, "naics_s01": 0, "naics_s02": 8, "naics_s03": 0, "naics_s04": 33, "naics_s05": 5, "naics_s06": 92, "naics_s07": 582, "naics_s08": 62, "naics_s09": 0, "naics_s10": 5, "naics_s11": 1, "naics_s12": 9, "naics_s13": 4, "naics_s14": 52, "naics_s15": 0, "naics_s16": 10, "naics_s17": 2, "naics_s18": 52, "naics_s19": 26, "naics_s20": 0, "race1": 672, "race2": 163, "race3": 7, "race4": 83, "race5": 3, "race6": 15, "ethnicity1": 646, "ethnicity2": 297, "edu1": 132, "edu2": 154, "edu3": 205, "edu4": 110, "Shape_Length": 66226.772978910769, "Shape_Area": 106846857.45197856, "total_2021": 908, "total_2022": 943 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.458846047850045, 30.236038291163734 ], [ -95.45886504763908, 30.235326291047343 ], [ -95.458770048086905, 30.234402290243615 ], [ -95.458692047241101, 30.233534290005476 ], [ -95.458336047312869, 30.229710289618758 ], [ -95.458256047579582, 30.228846289537106 ], [ -95.458078047677489, 30.227095289200697 ], [ -95.45806104703523, 30.226919289104256 ], [ -95.458010046779918, 30.226387288889125 ], [ -95.45777604706862, 30.226386289440118 ], [ -95.457429046587237, 30.226382289219607 ], [ -95.453889045664184, 30.226412289029486 ], [ -95.453652046076073, 30.226418288917401 ], [ -95.453402046118512, 30.226424288877361 ], [ -95.453420045689171, 30.226497289612155 ], [ -95.452023045835148, 30.226501289543673 ], [ -95.446285043879726, 30.226501289250027 ], [ -95.441887042809213, 30.226401289893211 ], [ -95.439881042298012, 30.226434289422301 ], [ -95.439441041950673, 30.226435289724705 ], [ -95.434644041179126, 30.226452289933221 ], [ -95.434396041301923, 30.224105289013487 ], [ -95.434359041252762, 30.221950288607587 ], [ -95.434235040779555, 30.213287287076838 ], [ -95.434179040484807, 30.208596286194631 ], [ -95.433628040405381, 30.208609285925753 ], [ -95.431787039890963, 30.208640286494475 ], [ -95.431402039869951, 30.208649286709033 ], [ -95.430478039739427, 30.208669286737983 ], [ -95.42715703879999, 30.208685286110914 ], [ -95.42340203772757, 30.208704286286924 ], [ -95.422296037413389, 30.208702286281287 ], [ -95.4206980369447, 30.20871028642263 ], [ -95.420484036376308, 30.208711287132573 ], [ -95.418800035848435, 30.208727287229717 ], [ -95.418309036153431, 30.208722286607301 ], [ -95.41689503599865, 30.208723286499612 ], [ -95.415946035857687, 30.208703287341425 ], [ -95.415815035621577, 30.208700286664769 ], [ -95.412287034754414, 30.208577287444367 ], [ -95.409412034135173, 30.20855828676077 ], [ -95.409306033807184, 30.20855828681702 ], [ -95.407249033394677, 30.208549287056336 ], [ -95.405602032523362, 30.208562287450814 ], [ -95.405003032905128, 30.208585287203064 ], [ -95.404552032697765, 30.208614287118735 ], [ -95.404324032479664, 30.208640287738834 ], [ -95.403727032348939, 30.208710286884205 ], [ -95.403182032460634, 30.208792287390267 ], [ -95.402549031982886, 30.208910287273888 ], [ -95.402227032108698, 30.208980287012977 ], [ -95.402064032206511, 30.209015287291884 ], [ -95.401473031448518, 30.209176287893012 ], [ -95.401193031714797, 30.20925828782887 ], [ -95.401017031919196, 30.209309287502105 ], [ -95.400593031350184, 30.209446287410614 ], [ -95.400181031376633, 30.209592287347593 ], [ -95.398242030643175, 30.210324287674808 ], [ -95.397826030579949, 30.210481288013739 ], [ -95.397709031163259, 30.211131288291064 ], [ -95.397639031378489, 30.211341288227235 ], [ -95.397517030771226, 30.211550288178461 ], [ -95.397342030687582, 30.211742288533536 ], [ -95.39715003066668, 30.211899288014823 ], [ -95.396732030764241, 30.212248288149159 ], [ -95.396540031164122, 30.212423288398618 ], [ -95.396400030545692, 30.212562288205856 ], [ -95.396278030598509, 30.212702288710474 ], [ -95.396138030666762, 30.212981288534671 ], [ -95.39606803033216, 30.213121288372257 ], [ -95.396034030763659, 30.213278288829219 ], [ -95.395999030985678, 30.213470288273705 ], [ -95.395981030784256, 30.213732288970672 ], [ -95.395981030749184, 30.213976288910633 ], [ -95.395981030256323, 30.214133288909078 ], [ -95.396034030877743, 30.214307288909701 ], [ -95.396191030566669, 30.214587288466067 ], [ -95.396697030821514, 30.215302289092332 ], [ -95.397360031589997, 30.216245289540009 ], [ -95.39763903150822, 30.216576289529737 ], [ -95.397866031059948, 30.216768289132958 ], [ -95.398232031455635, 30.216943289229778 ], [ -95.398651031611649, 30.217030289469591 ], [ -95.398878031611304, 30.217030288949267 ], [ -95.399349032064109, 30.217100289261079 ], [ -95.399559031366337, 30.217170289492778 ], [ -95.399716031787236, 30.217257289613162 ], [ -95.400100031944888, 30.217362289391467 ], [ -95.400693031743899, 30.217484289359803 ], [ -95.401269031755774, 30.217519289242514 ], [ -95.401513031917162, 30.217519289252543 ], [ -95.401710032423125, 30.21746728961811 ], [ -95.401807031924548, 30.217432288970542 ], [ -95.401920032595584, 30.217380289283049 ], [ -95.402025032844136, 30.217293289174009 ], [ -95.402418032302506, 30.216970288904843 ], [ -95.403168033157712, 30.216281288583055 ], [ -95.403683032265903, 30.215827288989324 ], [ -95.404041032329388, 30.215556288747536 ], [ -95.404407033379258, 30.215295289045507 ], [ -95.404643033294292, 30.215164288306166 ], [ -95.40496603326541, 30.215033288406886 ], [ -95.405254033268605, 30.214928288669629 ], [ -95.405411032928953, 30.214893288429479 ], [ -95.405524033168021, 30.214884288771525 ], [ -95.405603033575744, 30.214893288870119 ], [ -95.405742033332487, 30.214893288171993 ], [ -95.405908033127801, 30.214937288259168 ], [ -95.406152033860522, 30.215024288711533 ], [ -95.406353033458089, 30.215085288263502 ], [ -95.406493033199339, 30.21517228873881 ], [ -95.406707033135561, 30.215329288600394 ], [ -95.407186033186235, 30.215774289013229 ], [ -95.407797034047789, 30.216394288319641 ], [ -95.408216033896423, 30.21683028925996 ], [ -95.408399034495346, 30.217066289020735 ], [ -95.408609033938674, 30.217310289329497 ], [ -95.408818033719555, 30.217494288837536 ], [ -95.40904503398275, 30.217685288793408 ], [ -95.409316034303274, 30.217895289247586 ], [ -95.40958603399811, 30.218104288610441 ], [ -95.40979203470836, 30.218213288955901 ], [ -95.410062034586701, 30.218356289313931 ], [ -95.410123034267585, 30.218388289096044 ], [ -95.410542034615077, 30.218702289478156 ], [ -95.410934034462144, 30.219025289561703 ], [ -95.411746035095774, 30.220107289807618 ], [ -95.411973035576864, 30.220421289291647 ], [ -95.412147035478625, 30.220788289078925 ], [ -95.412357035453596, 30.2214332896482 ], [ -95.412479034823576, 30.221870289733214 ], [ -95.412636034962219, 30.222288289425023 ], [ -95.412898035653825, 30.222864290198245 ], [ -95.413107035586208, 30.22319629001753 ], [ -95.413386035811456, 30.223493290417291 ], [ -95.413980035536653, 30.224121289869785 ], [ -95.414608035923081, 30.224697290398122 ], [ -95.414896035696216, 30.224880290150271 ], [ -95.415437036568846, 30.225107290187651 ], [ -95.415908036203618, 30.225212289837803 ], [ -95.416432036714497, 30.225264289997611 ], [ -95.41685103633418, 30.225264289798623 ], [ -95.417322036845221, 30.225194290076427 ], [ -95.418142036971062, 30.224932289859375 ], [ -95.418753037080009, 30.224810289899398 ], [ -95.420166037783389, 30.224583289933946 ], [ -95.420707037892399, 30.224531290129555 ], [ -95.420969037329925, 30.224496289716612 ], [ -95.421632037784548, 30.224304289869881 ], [ -95.422592038014344, 30.224007289895766 ], [ -95.422889037716999, 30.223973289824826 ], [ -95.423496037911818, 30.223860289372563 ], [ -95.424233038069644, 30.223833289525682 ], [ -95.424582038888971, 30.223885289481437 ], [ -95.424948038462659, 30.223990289240376 ], [ -95.425350039121795, 30.224147289608364 ], [ -95.42555903864212, 30.224234289867503 ], [ -95.425734039146874, 30.224322289647713 ], [ -95.425821039047364, 30.224409289589598 ], [ -95.425908039013706, 30.224566289615868 ], [ -95.425995039249088, 30.224723289575586 ], [ -95.42604803903609, 30.224950289521487 ], [ -95.426065039195791, 30.225212289593113 ], [ -95.426065038569661, 30.22566529038059 ], [ -95.426048039339477, 30.226311289983805 ], [ -95.426091039283833, 30.226896289809705 ], [ -95.426091038736985, 30.227070289994852 ], [ -95.426091039138569, 30.227437290794306 ], [ -95.42607403939526, 30.227995290320191 ], [ -95.426109039329901, 30.228292290427401 ], [ -95.426161038959819, 30.228501290913254 ], [ -95.426318039036857, 30.228816290594846 ], [ -95.426580039508266, 30.229234290904557 ], [ -95.426824038885385, 30.229636290683295 ], [ -95.426929039110178, 30.229950291122947 ], [ -95.426894039773757, 30.230124290910716 ], [ -95.426859039654644, 30.230264290653643 ], [ -95.426702039264384, 30.230508290714198 ], [ -95.426405038884539, 30.230892291198323 ], [ -95.426371038857042, 30.230980290741918 ], [ -95.426318039632008, 30.231189290880316 ], [ -95.426336039666339, 30.231416291479754 ], [ -95.4264230397864, 30.231608291395709 ], [ -95.426580039026888, 30.231817291240439 ], [ -95.426772038949409, 30.231939291625331 ], [ -95.426946039518896, 30.231992291552967 ], [ -95.427138039447343, 30.232044291487551 ], [ -95.427330039217026, 30.232044291653548 ], [ -95.427679039846936, 30.23197429135795 ], [ -95.428744040122822, 30.231538291287318 ], [ -95.429392040576104, 30.231875290856369 ], [ -95.42947103985513, 30.231646291166705 ], [ -95.429972039766739, 30.231325291238168 ], [ -95.430948040609351, 30.231049290538852 ], [ -95.432267041285186, 30.231163291142842 ], [ -95.432505040636883, 30.231277291204513 ], [ -95.432742041209849, 30.231529291125792 ], [ -95.432874040602982, 30.231827290755042 ], [ -95.432901041058756, 30.232377290844404 ], [ -95.432427040414382, 30.232766291039155 ], [ -95.432084040568199, 30.232904290983321 ], [ -95.432084040526448, 30.23343129105135 ], [ -95.432164041187036, 30.233637291300479 ], [ -95.432639041293427, 30.234026291193214 ], [ -95.433747041564729, 30.234621291906986 ], [ -95.434222041763519, 30.235010291188523 ], [ -95.434460041660188, 30.235445291974035 ], [ -95.43440804171064, 30.235926291870303 ], [ -95.434144041253262, 30.236637291994576 ], [ -95.434198041895598, 30.23757629208319 ], [ -95.434014041510963, 30.238286292006165 ], [ -95.434040041755338, 30.238744292759336 ], [ -95.4341730421785, 30.239088292321938 ], [ -95.43451604187662, 30.239408292055085 ], [ -95.435076042269031, 30.239682292287743 ], [ -95.435123041582798, 30.239705292198067 ], [ -95.435677042191699, 30.239591292585992 ], [ -95.436072042296772, 30.23899529206394 ], [ -95.436282042508793, 30.238147292055181 ], [ -95.436414042050473, 30.237872291811691 ], [ -95.436678041772225, 30.237735292120107 ], [ -95.437390042863456, 30.237803292364408 ], [ -95.438737043127034, 30.239428292188148 ], [ -95.439370042640689, 30.239978292235104 ], [ -95.440057042812725, 30.240344292496282 ], [ -95.440716043604823, 30.240527292601755 ], [ -95.442299044276467, 30.240388292633099 ], [ -95.442721044283516, 30.240525292015825 ], [ -95.442985044491479, 30.240777292734393 ], [ -95.443223044599264, 30.241602292494242 ], [ -95.443725043922171, 30.242128292965802 ], [ -95.444174043902066, 30.242311293112692 ], [ -95.444860044793259, 30.24226529229912 ], [ -95.445730045034182, 30.24205829256092 ], [ -95.447656044978274, 30.242057292989664 ], [ -95.448210045899785, 30.242171292215907 ], [ -95.448448045690029, 30.242377292399624 ], [ -95.448633045999784, 30.24274329265009 ], [ -95.448580045957797, 30.243156292677568 ], [ -95.448080045901889, 30.244118292904162 ], [ -95.448081045512239, 30.244965293390148 ], [ -95.448292045610586, 30.245423293583659 ], [ -95.448636045688204, 30.245767292841634 ], [ -95.449586045608186, 30.246385293244821 ], [ -95.45022004593676, 30.247003293244312 ], [ -95.45093304625064, 30.248239293946448 ], [ -95.451250046428598, 30.248514293420847 ], [ -95.451699046098625, 30.248628294048956 ], [ -95.452464046772079, 30.248627293681967 ], [ -95.453150046894024, 30.248535294033964 ], [ -95.453703047598069, 30.248077293507372 ], [ -95.453888047418516, 30.247802293129148 ], [ -95.453861046824116, 30.247137293320769 ], [ -95.453755046797099, 30.246886293586986 ], [ -95.453701047454729, 30.245969292902746 ], [ -95.453912047031352, 30.245465293085658 ], [ -95.454334047612406, 30.245076293009582 ], [ -95.454676047474123, 30.244984292605515 ], [ -95.455758047438479, 30.245074292493452 ], [ -95.456122047757319, 30.244872292531049 ], [ -95.456412047234423, 30.24471129291512 ], [ -95.456760047696633, 30.244638292809771 ], [ -95.456945047277301, 30.244707292385442 ], [ -95.457062047664422, 30.244753293205523 ], [ -95.457340047982655, 30.244863292558584 ], [ -95.457427047552514, 30.244897293042321 ], [ -95.457592047950783, 30.244962292783789 ], [ -95.457955047959103, 30.243383292878228 ], [ -95.458215047656708, 30.242416292405657 ], [ -95.45841904759574, 30.24143629169394 ], [ -95.458549047513259, 30.240058291868156 ], [ -95.458681048119914, 30.238644291041332 ], [ -95.458710048029999, 30.238182291602349 ], [ -95.458751048029868, 30.23763029159441 ], [ -95.458799048228855, 30.236974290843733 ], [ -95.458811047805881, 30.236746290982264 ], [ -95.458846047850045, 30.236038291163734 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1235, "Tract": "48339691403", "Area_SqMi": 1.5977288777107757, "total_2009": 2550, "total_2010": 1750, "total_2011": 2716, "total_2012": 2542, "total_2013": 2478, "total_2014": 2493, "total_2015": 2917, "total_2016": 2934, "total_2017": 3045, "total_2018": 3270, "total_2019": 3400, "total_2020": 3692, "age1": 1447, "age2": 2986, "age3": 1016, "earn1": 1162, "earn2": 1848, "earn3": 2439, "naics_s01": 0, "naics_s02": 561, "naics_s03": 0, "naics_s04": 896, "naics_s05": 22, "naics_s06": 68, "naics_s07": 946, "naics_s08": 90, "naics_s09": 58, "naics_s10": 171, "naics_s11": 39, "naics_s12": 449, "naics_s13": 98, "naics_s14": 1306, "naics_s15": 59, "naics_s16": 140, "naics_s17": 62, "naics_s18": 312, "naics_s19": 171, "naics_s20": 1, "race1": 4119, "race2": 973, "race3": 45, "race4": 207, "race5": 10, "race6": 95, "ethnicity1": 3795, "ethnicity2": 1654, "edu1": 840, "edu2": 1059, "edu3": 1249, "edu4": 854, "Shape_Length": 28987.355351192182, "Shape_Area": 44541946.570272826, "total_2021": 4164, "total_2022": 5449 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.465702044228863, 30.126329268030663 ], [ -95.465655044731378, 30.12606626873032 ], [ -95.465526044302919, 30.12555426812937 ], [ -95.465389044312843, 30.125157268086561 ], [ -95.46517204402916, 30.124596267923248 ], [ -95.464911043926719, 30.124047267851704 ], [ -95.464527043657412, 30.123319268009919 ], [ -95.464336044399872, 30.122948267630214 ], [ -95.464245043735886, 30.12274526811488 ], [ -95.464184043833441, 30.122581267836765 ], [ -95.464072044321767, 30.122234267279453 ], [ -95.464025043945298, 30.122043267393217 ], [ -95.463922043359588, 30.121540267239489 ], [ -95.463883044201594, 30.12115126743404 ], [ -95.463836044213167, 30.12057226761117 ], [ -95.463799043701812, 30.119856267574001 ], [ -95.463669043708123, 30.117825266810986 ], [ -95.4633650433328, 30.117346266996083 ], [ -95.463067043305813, 30.116811266512016 ], [ -95.463335043307907, 30.115571266210608 ], [ -95.463593043240323, 30.115149266513548 ], [ -95.463908043585434, 30.114434266351154 ], [ -95.463433043811349, 30.114640266341702 ], [ -95.463220043553193, 30.114691266409924 ], [ -95.462744043568676, 30.114801266406694 ], [ -95.462644042648279, 30.114825266301953 ], [ -95.461774042757284, 30.11482626660991 ], [ -95.461635042453125, 30.114774265874448 ], [ -95.461221042411736, 30.114620265954333 ], [ -95.460799042961952, 30.114299266088331 ], [ -95.460535042648019, 30.113910266358719 ], [ -95.460455042593949, 30.1135442663643 ], [ -95.460271042758279, 30.113269265560003 ], [ -95.459902042036447, 30.113109266042844 ], [ -95.459743042728647, 30.112884266136323 ], [ -95.45969104270867, 30.112811266289135 ], [ -95.459682042569867, 30.112707266273468 ], [ -95.459664042094687, 30.11251426551399 ], [ -95.459769042132535, 30.112330265602218 ], [ -95.459804042505908, 30.111909265401799 ], [ -95.459657042081261, 30.111792265762119 ], [ -95.459046042005014, 30.111553265886577 ], [ -95.4587730422882, 30.11122026579714 ], [ -95.458668042388851, 30.110830265215295 ], [ -95.458139042156205, 30.11051126572703 ], [ -95.45790304194152, 30.110503265302395 ], [ -95.457283041274906, 30.110481265833137 ], [ -95.45687104168691, 30.110207265576641 ], [ -95.456088041300532, 30.109901265699754 ], [ -95.455818040960125, 30.109643265201491 ], [ -95.455745041221761, 30.109350265469605 ], [ -95.455515040595131, 30.109288265546386 ], [ -95.454919041045542, 30.109319265659099 ], [ -95.454593041035849, 30.1090642655133 ], [ -95.454533040595507, 30.108473265404275 ], [ -95.453985040626137, 30.108304265451004 ], [ -95.453777040755128, 30.108142265154125 ], [ -95.45376904019669, 30.107994264755973 ], [ -95.453453040488128, 30.107936264953167 ], [ -95.452914040101675, 30.107939265123676 ], [ -95.45259104029526, 30.107758265206595 ], [ -95.452130040022382, 30.107658264855321 ], [ -95.451927040506249, 30.108135265256195 ], [ -95.451866040209552, 30.108185264893581 ], [ -95.451749039660314, 30.108282265103036 ], [ -95.451543039702173, 30.108290265438892 ], [ -95.451199039979372, 30.108478265692522 ], [ -95.450041039541745, 30.108749264957176 ], [ -95.449541039594564, 30.109006265766197 ], [ -95.449082039150923, 30.109171265494602 ], [ -95.448792039612528, 30.109170265431253 ], [ -95.448423038923437, 30.10938226588793 ], [ -95.44721703935042, 30.109755265903246 ], [ -95.446974039308714, 30.109720265704592 ], [ -95.446876038379528, 30.109606265517517 ], [ -95.446560038357802, 30.109438265692503 ], [ -95.446132039228559, 30.109618265394097 ], [ -95.44523203867405, 30.109721265440005 ], [ -95.444628038674139, 30.109612266018022 ], [ -95.444147038668291, 30.109719265734288 ], [ -95.443776038491407, 30.109725265679305 ], [ -95.44353003771289, 30.109698265757302 ], [ -95.442994037931754, 30.109509266137284 ], [ -95.442481037342915, 30.109301265903042 ], [ -95.442183037554599, 30.109060265571305 ], [ -95.441898037870033, 30.109029265921297 ], [ -95.441532037396158, 30.109079265487349 ], [ -95.440329037033791, 30.109622266237793 ], [ -95.43996003697994, 30.109666266010429 ], [ -95.439467036677485, 30.109647265639261 ], [ -95.439272037138593, 30.109706266062183 ], [ -95.439150037285458, 30.109802265825007 ], [ -95.439079036608021, 30.109930266387153 ], [ -95.439079036887492, 30.110388266204581 ], [ -95.438905037107929, 30.110537266157845 ], [ -95.438399036737081, 30.110401266547402 ], [ -95.437377036458031, 30.109934266181924 ], [ -95.43717603608674, 30.109964266507639 ], [ -95.43699503640913, 30.110096266001499 ], [ -95.436880036021606, 30.110180265762654 ], [ -95.436707036755067, 30.110306266450941 ], [ -95.436649036311479, 30.110371266059506 ], [ -95.436718036057954, 30.110594266673747 ], [ -95.437136036733449, 30.11192826669587 ], [ -95.437622036991172, 30.113207266909154 ], [ -95.43785503624035, 30.113692267233834 ], [ -95.438071036799457, 30.114118266973293 ], [ -95.438487036896859, 30.114715267312015 ], [ -95.439120037113796, 30.115540266892072 ], [ -95.440038037363138, 30.116690267801967 ], [ -95.44049603732762, 30.117290267869667 ], [ -95.440790038023309, 30.117703267719339 ], [ -95.441217038101172, 30.118385267915503 ], [ -95.441573037593486, 30.119104267454805 ], [ -95.441654037662502, 30.119280267966879 ], [ -95.441796038254026, 30.119608268177576 ], [ -95.441911037688044, 30.119969268208493 ], [ -95.44200603790334, 30.120244268412247 ], [ -95.442192038644905, 30.120914268188905 ], [ -95.442570038322131, 30.122625268396089 ], [ -95.442672038258678, 30.123084268510564 ], [ -95.443063038211463, 30.125344268649638 ], [ -95.443321038510916, 30.126583268908547 ], [ -95.443361038565754, 30.12677726937568 ], [ -95.443833038549101, 30.126757269631597 ], [ -95.444725038926009, 30.126731268979007 ], [ -95.445334039340352, 30.126719268996684 ], [ -95.445881039849596, 30.126726268928742 ], [ -95.446224039973174, 30.126721269056564 ], [ -95.447972040412168, 30.126701268952434 ], [ -95.449542039919905, 30.126734269085148 ], [ -95.450406040644367, 30.126708268753365 ], [ -95.45157504039949, 30.126703268626173 ], [ -95.451986041303101, 30.126711269345449 ], [ -95.452394041513614, 30.126708268978664 ], [ -95.452749041255615, 30.1267042693609 ], [ -95.452876040701526, 30.126750269029866 ], [ -95.453009041559795, 30.126742269309453 ], [ -95.45403204120332, 30.126677268727221 ], [ -95.455467041517309, 30.126654269007368 ], [ -95.455965042448227, 30.126644268582812 ], [ -95.456118042421096, 30.12664026844179 ], [ -95.457128041863797, 30.126621268654489 ], [ -95.457264042172696, 30.126619268889606 ], [ -95.458302042536317, 30.126602268628542 ], [ -95.458423042545817, 30.12660826896526 ], [ -95.458795042441565, 30.126615268828989 ], [ -95.45927104296058, 30.12663926834195 ], [ -95.459563042753729, 30.126674268520979 ], [ -95.460493043310336, 30.126806268675185 ], [ -95.460799043600048, 30.126858268282994 ], [ -95.461017043202077, 30.126877269152569 ], [ -95.461243042867324, 30.126864268739766 ], [ -95.462652044163264, 30.126708268243117 ], [ -95.46283004373683, 30.126685268927339 ], [ -95.463342043394391, 30.126620268751815 ], [ -95.463868043723679, 30.126554268309032 ], [ -95.463905044559894, 30.126549268151525 ], [ -95.464397044340387, 30.126487268877444 ], [ -95.464430044228365, 30.126483268101275 ], [ -95.464773044704557, 30.12644126859643 ], [ -95.465248044569378, 30.126384268885495 ], [ -95.465702044228863, 30.126329268030663 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1236, "Tract": "48339694204", "Area_SqMi": 9.5843927314017918, "total_2009": 120, "total_2010": 106, "total_2011": 116, "total_2012": 184, "total_2013": 189, "total_2014": 127, "total_2015": 196, "total_2016": 245, "total_2017": 203, "total_2018": 105, "total_2019": 191, "total_2020": 245, "age1": 82, "age2": 152, "age3": 74, "earn1": 66, "earn2": 112, "earn3": 130, "naics_s01": 0, "naics_s02": 0, "naics_s03": 5, "naics_s04": 44, "naics_s05": 1, "naics_s06": 5, "naics_s07": 80, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 9, "naics_s12": 31, "naics_s13": 0, "naics_s14": 34, "naics_s15": 0, "naics_s16": 59, "naics_s17": 0, "naics_s18": 26, "naics_s19": 10, "naics_s20": 0, "race1": 218, "race2": 63, "race3": 5, "race4": 17, "race5": 0, "race6": 5, "ethnicity1": 252, "ethnicity2": 56, "edu1": 49, "edu2": 52, "edu3": 77, "edu4": 48, "Shape_Length": 86821.324575688253, "Shape_Area": 267196465.49937966, "total_2021": 273, "total_2022": 308 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.598865092932826, 30.439810326721602 ], [ -95.59887809278041, 30.437164326213836 ], [ -95.59714709265576, 30.437167326661598 ], [ -95.595873092431503, 30.437168326604997 ], [ -95.593800092347166, 30.437182326433103 ], [ -95.592668091312049, 30.437203326568419 ], [ -95.591853091889391, 30.4371933264412 ], [ -95.590411091184805, 30.437195327352356 ], [ -95.58982809096068, 30.437167327323728 ], [ -95.589741091158132, 30.43716732669855 ], [ -95.58838809078091, 30.437174326583467 ], [ -95.587780090546687, 30.437159326872202 ], [ -95.58732009021891, 30.437136326860085 ], [ -95.586852090591449, 30.437080326791708 ], [ -95.586372089774216, 30.436986327199492 ], [ -95.585724089777983, 30.436851327237537 ], [ -95.584416089261879, 30.436568327457785 ], [ -95.584036089401437, 30.436470326570138 ], [ -95.583603089652399, 30.436353326638127 ], [ -95.58329408966263, 30.436270326767694 ], [ -95.582632088897185, 30.436102327013717 ], [ -95.582367089349148, 30.436034327040268 ], [ -95.581871088401257, 30.435926326835865 ], [ -95.581031088903558, 30.43573932739038 ], [ -95.58034308866587, 30.435568326517814 ], [ -95.579837087882566, 30.43546132679343 ], [ -95.579148087891184, 30.435296326799268 ], [ -95.577879087630564, 30.434991327097617 ], [ -95.574958086901162, 30.434312326957471 ], [ -95.572188085815867, 30.433661326814633 ], [ -95.571314085766772, 30.433438327108679 ], [ -95.57072508623493, 30.433305327032606 ], [ -95.5701580859442, 30.433178326766718 ], [ -95.569132085684089, 30.432921326971172 ], [ -95.568185085091756, 30.432660326833428 ], [ -95.567164084855008, 30.432414327136325 ], [ -95.566250085006814, 30.432226326621102 ], [ -95.564640084062859, 30.437512327579217 ], [ -95.564348084620264, 30.438547327930785 ], [ -95.563515084052327, 30.442030328546892 ], [ -95.563419084805517, 30.442429329054864 ], [ -95.563303083894965, 30.442660328554478 ], [ -95.563025084757712, 30.443013328899838 ], [ -95.562716084080961, 30.443292329474126 ], [ -95.562394084112569, 30.443377329493178 ], [ -95.561389084267617, 30.443258328965538 ], [ -95.560680083232043, 30.443174328833649 ], [ -95.560073083177272, 30.443235329636188 ], [ -95.558896082796721, 30.443585329154043 ], [ -95.558413083497058, 30.443696329271283 ], [ -95.556962083146828, 30.444031329331768 ], [ -95.556105082374813, 30.444317329171859 ], [ -95.555831082859754, 30.444406329838337 ], [ -95.55553708198542, 30.444398329198158 ], [ -95.554458082536385, 30.444167329736604 ], [ -95.554112082544748, 30.444178329858438 ], [ -95.553836082307896, 30.444289329721808 ], [ -95.553627082406962, 30.444460329820313 ], [ -95.55351008206047, 30.444641329804551 ], [ -95.553427082411943, 30.444917329517935 ], [ -95.552253082011447, 30.448770330987244 ], [ -95.55222408204483, 30.44892433080819 ], [ -95.552166081368952, 30.449062330351168 ], [ -95.552087081997172, 30.44923133074494 ], [ -95.550388081548988, 30.44884633074485 ], [ -95.549444080811213, 30.448619330977284 ], [ -95.549106080914981, 30.448536330511271 ], [ -95.546392080241503, 30.447903330832332 ], [ -95.545716079936966, 30.447753330774987 ], [ -95.545592080294483, 30.447714330977675 ], [ -95.543846079972141, 30.44732633028012 ], [ -95.543404079371825, 30.447218331035089 ], [ -95.542830079326237, 30.447099330677499 ], [ -95.542412078822082, 30.447002330360185 ], [ -95.541546078907629, 30.446802330301438 ], [ -95.541179079286294, 30.446732330462513 ], [ -95.540475078614762, 30.446585330877475 ], [ -95.539430078538146, 30.446357330740465 ], [ -95.53894807802331, 30.446260330482879 ], [ -95.538430078567885, 30.446147330632833 ], [ -95.538000078334306, 30.446040330464069 ], [ -95.537518077853747, 30.445929330774415 ], [ -95.536856077888885, 30.445771330154358 ], [ -95.535796077860212, 30.445530330788365 ], [ -95.535431077339283, 30.445452330604304 ], [ -95.534879077505991, 30.445308330289819 ], [ -95.534602077210849, 30.445265330731988 ], [ -95.533964076856364, 30.445109330684033 ], [ -95.533180076684033, 30.444929330656063 ], [ -95.532432076372174, 30.44476433017488 ], [ -95.531751076863515, 30.444601330911979 ], [ -95.53061207631022, 30.444340330853841 ], [ -95.530143076188594, 30.44421833071106 ], [ -95.529465075468067, 30.444061330916863 ], [ -95.529001075381927, 30.443963330782786 ], [ -95.528346075974341, 30.443805330512596 ], [ -95.527128074639833, 30.443519330062138 ], [ -95.526656075021052, 30.443419330904494 ], [ -95.525037074765692, 30.443036330253992 ], [ -95.524610074660572, 30.442926330881615 ], [ -95.524193074286956, 30.442827330695287 ], [ -95.523475074207738, 30.442666330792441 ], [ -95.522755073958109, 30.442491330773169 ], [ -95.522377073593333, 30.442409330206107 ], [ -95.521383074024399, 30.442175330802002 ], [ -95.520791073720133, 30.442027330237305 ], [ -95.520156072747682, 30.441879330736654 ], [ -95.51843107275549, 30.441518330564715 ], [ -95.517449072100192, 30.441284330576366 ], [ -95.515275072416117, 30.440777330012875 ], [ -95.510367070689043, 30.439659330561348 ], [ -95.508443070286773, 30.439282330527963 ], [ -95.507099069977272, 30.439157330312405 ], [ -95.506686069193435, 30.439086330339368 ], [ -95.506411069255407, 30.43901833010592 ], [ -95.506068069280758, 30.438979330375581 ], [ -95.505487069112689, 30.43875533053264 ], [ -95.505042068974149, 30.438625329867726 ], [ -95.503777068464217, 30.438202329816541 ], [ -95.50228206887553, 30.437796330671421 ], [ -95.500908068217868, 30.437423330061055 ], [ -95.500214067807079, 30.437234330416249 ], [ -95.497329067290337, 30.436450330274802 ], [ -95.496614067111437, 30.436294330471455 ], [ -95.496241066777472, 30.436202329673154 ], [ -95.495771066371162, 30.436096330078339 ], [ -95.495443066237584, 30.436035330060896 ], [ -95.495455067074474, 30.437499330634267 ], [ -95.495485067268433, 30.438544330909483 ], [ -95.495616067537995, 30.443051331170288 ], [ -95.495702067760746, 30.447173332193334 ], [ -95.495776067608602, 30.450084332651425 ], [ -95.495835067498916, 30.452367333574351 ], [ -95.495896067760569, 30.454049333336595 ], [ -95.495908067235433, 30.455232334198332 ], [ -95.495899067280703, 30.45577433439022 ], [ -95.496762068445705, 30.455992334175765 ], [ -95.496997068145006, 30.456038334459027 ], [ -95.497255068110832, 30.456089334075312 ], [ -95.498422068566072, 30.456337334251273 ], [ -95.499402068575776, 30.456566334116172 ], [ -95.50194306950462, 30.45718833422055 ], [ -95.51274507242195, 30.459829334648031 ], [ -95.514406072291479, 30.460236333894208 ], [ -95.51937307355783, 30.46145133443304 ], [ -95.523835075626451, 30.462542334294547 ], [ -95.525800075712368, 30.463024334202156 ], [ -95.529011076822215, 30.463811334419397 ], [ -95.535269077968948, 30.465266334798351 ], [ -95.535819077926064, 30.465394334710272 ], [ -95.536876078850881, 30.465655334403685 ], [ -95.540277079652341, 30.466495334416528 ], [ -95.542370079954807, 30.467012335034603 ], [ -95.543563080779208, 30.467298334733371 ], [ -95.544111080779274, 30.467326335056754 ], [ -95.545450081155565, 30.46717033503673 ], [ -95.545974081258393, 30.467109334740716 ], [ -95.546308080713629, 30.467107334668828 ], [ -95.546472080843287, 30.467125334719679 ], [ -95.546713081734168, 30.467183334446297 ], [ -95.546866080944056, 30.467240334810647 ], [ -95.550341082689656, 30.468804334438719 ], [ -95.550506082051157, 30.46887833476486 ], [ -95.550634082244059, 30.468926334900068 ], [ -95.551018082712986, 30.469048334649802 ], [ -95.551241082800004, 30.469112335205555 ], [ -95.552896082523105, 30.46951433485707 ], [ -95.556675083536021, 30.470433334416644 ], [ -95.559191084623933, 30.471051334761707 ], [ -95.559437084653581, 30.471113335116968 ], [ -95.56181308574682, 30.471714334723906 ], [ -95.562281085673419, 30.471833334760646 ], [ -95.564034085739223, 30.472276334996018 ], [ -95.565407086708205, 30.472579334789213 ], [ -95.566372087075123, 30.472792335172713 ], [ -95.568716087174806, 30.47341033489672 ], [ -95.568837086740672, 30.473439334875746 ], [ -95.569156086853113, 30.473517335445667 ], [ -95.569189087161519, 30.473475335165919 ], [ -95.569341086822391, 30.472341334642476 ], [ -95.569489086870234, 30.471963334398705 ], [ -95.572279088202748, 30.469328334199044 ], [ -95.573310088335418, 30.467567333598701 ], [ -95.573608087902855, 30.466560333803002 ], [ -95.575809088318337, 30.464678333168084 ], [ -95.577420089379572, 30.463802332884029 ], [ -95.582244090305011, 30.463190332107516 ], [ -95.583489090394423, 30.462125331771151 ], [ -95.590459092248551, 30.456163330568362 ], [ -95.591046092239267, 30.455661330322812 ], [ -95.591195091956664, 30.45503233087598 ], [ -95.592222092144553, 30.454027330188289 ], [ -95.592519092100332, 30.45314633018009 ], [ -95.593106092201026, 30.452644329953419 ], [ -95.59296209196873, 30.452140329713355 ], [ -95.593843093082796, 30.45113532919768 ], [ -95.594430092452555, 30.450633329472812 ], [ -95.594579093069456, 30.45000332924721 ], [ -95.595167092704116, 30.449375329638322 ], [ -95.595319093287628, 30.448115328569862 ], [ -95.595759092455211, 30.447739328536368 ], [ -95.59577309318982, 30.444966328092022 ], [ -95.596660093356988, 30.444017328048385 ], [ -95.596947093003564, 30.443710328277469 ], [ -95.597096092614592, 30.443080328264188 ], [ -95.597830092696654, 30.442327327398822 ], [ -95.598565093644012, 30.441321327725483 ], [ -95.598571093569845, 30.440061326923466 ], [ -95.598865092932826, 30.439810326721602 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1237, "Tract": "48339693702", "Area_SqMi": 5.3901027018016832, "total_2009": 528, "total_2010": 711, "total_2011": 734, "total_2012": 623, "total_2013": 654, "total_2014": 451, "total_2015": 894, "total_2016": 765, "total_2017": 766, "total_2018": 690, "total_2019": 732, "total_2020": 677, "age1": 223, "age2": 316, "age3": 149, "earn1": 215, "earn2": 236, "earn3": 237, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 5, "naics_s06": 9, "naics_s07": 260, "naics_s08": 3, "naics_s09": 0, "naics_s10": 20, "naics_s11": 19, "naics_s12": 22, "naics_s13": 0, "naics_s14": 16, "naics_s15": 4, "naics_s16": 96, "naics_s17": 0, "naics_s18": 164, "naics_s19": 64, "naics_s20": 0, "race1": 531, "race2": 106, "race3": 4, "race4": 37, "race5": 0, "race6": 10, "ethnicity1": 513, "ethnicity2": 175, "edu1": 88, "edu2": 112, "edu3": 167, "edu4": 98, "Shape_Length": 54012.297370970198, "Shape_Area": 150266838.07325825, "total_2021": 626, "total_2022": 688 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.530788073079933, 30.373125315711306 ], [ -95.530777073209848, 30.37303231611714 ], [ -95.530747072239336, 30.372745315975152 ], [ -95.530569072629746, 30.372223316383334 ], [ -95.530545072737553, 30.372153316150985 ], [ -95.530502072490691, 30.372062315869591 ], [ -95.530057072173165, 30.371101315461914 ], [ -95.529222072298609, 30.369377315218195 ], [ -95.52899007252833, 30.3688103154097 ], [ -95.528827072389419, 30.368462315607974 ], [ -95.528503072000817, 30.367832314906142 ], [ -95.528334072237726, 30.367525314857264 ], [ -95.528287072259403, 30.367444315031111 ], [ -95.528159072060262, 30.367221314894763 ], [ -95.527656072049282, 30.36642431452464 ], [ -95.526842071797361, 30.365107315108872 ], [ -95.526213070716665, 30.364065314821573 ], [ -95.526051070969984, 30.363797314674304 ], [ -95.525830071147581, 30.363439314667858 ], [ -95.525634070966305, 30.363115313926773 ], [ -95.524779070272118, 30.361616314375819 ], [ -95.524442070985742, 30.361239314154489 ], [ -95.523817070421913, 30.360216313979429 ], [ -95.523773070502557, 30.36014031402841 ], [ -95.523689070389111, 30.35999531356077 ], [ -95.523628070506234, 30.359891314137865 ], [ -95.52321207003456, 30.359182313581279 ], [ -95.523048070484776, 30.358920313442109 ], [ -95.522584069957375, 30.358175313617924 ], [ -95.521722069680948, 30.356792313519627 ], [ -95.521528069059087, 30.356463313043495 ], [ -95.521425069160685, 30.356298312686462 ], [ -95.521228069128796, 30.355996312601576 ], [ -95.520691069363181, 30.355254312940588 ], [ -95.520269069036729, 30.354670313179536 ], [ -95.520061068634291, 30.354438312953373 ], [ -95.520026069365898, 30.354399312452951 ], [ -95.519691069275737, 30.35414131272325 ], [ -95.519486069362401, 30.35401031244384 ], [ -95.519391069004655, 30.353949312662092 ], [ -95.518251068382483, 30.353319312657209 ], [ -95.517689068364874, 30.35300831247687 ], [ -95.517284068287438, 30.35271731275623 ], [ -95.517027068671808, 30.352474312366169 ], [ -95.516805068268994, 30.35221831284349 ], [ -95.516433067597177, 30.351740312348578 ], [ -95.516220067589288, 30.35139131202174 ], [ -95.515235067302299, 30.34960231167657 ], [ -95.514958067012074, 30.349128312227904 ], [ -95.514842067186535, 30.348962311859239 ], [ -95.51447306754244, 30.348540311619733 ], [ -95.513863066909352, 30.347933311745251 ], [ -95.513547066647178, 30.347581311240607 ], [ -95.513325066673985, 30.347306311340546 ], [ -95.512865066432028, 30.346598311051107 ], [ -95.512662066794135, 30.346320311618335 ], [ -95.512372066899403, 30.345969311686449 ], [ -95.511119066555693, 30.344674310799405 ], [ -95.510704066622523, 30.344232311130757 ], [ -95.510439066116618, 30.343922310531287 ], [ -95.510279065865674, 30.34370131071196 ], [ -95.510083066313939, 30.34341531091729 ], [ -95.509814066091266, 30.342979310581789 ], [ -95.509663065855548, 30.342741310818433 ], [ -95.509561065511534, 30.342538311029909 ], [ -95.509341065724954, 30.342100310543337 ], [ -95.508771065374631, 30.340993310541155 ], [ -95.508196064892971, 30.339862309968186 ], [ -95.508019065701376, 30.339550310087972 ], [ -95.507974064973183, 30.339471310565422 ], [ -95.50780506530856, 30.339236309862521 ], [ -95.507667065424357, 30.339083310115591 ], [ -95.507490064843509, 30.338911310424816 ], [ -95.507436065185658, 30.338862310195591 ], [ -95.507351065359941, 30.338784309909574 ], [ -95.506993065419024, 30.338497310396978 ], [ -95.506778065360578, 30.338331309831176 ], [ -95.506590065084794, 30.338206309894623 ], [ -95.50645006470144, 30.338097309589724 ], [ -95.506309064751619, 30.338006309492314 ], [ -95.505935064673253, 30.337798309801983 ], [ -95.505725064224293, 30.337696310064363 ], [ -95.505253064311304, 30.337508309918363 ], [ -95.504700064354338, 30.337307309727919 ], [ -95.504348064612088, 30.337171309664011 ], [ -95.503237064199908, 30.336798309423354 ], [ -95.502805064047749, 30.336688310177713 ], [ -95.502227063399772, 30.336571309969042 ], [ -95.501789063624983, 30.336510309610247 ], [ -95.501426063819665, 30.336520309520818 ], [ -95.501392063945929, 30.336519309694314 ], [ -95.501212063861388, 30.336517309561412 ], [ -95.501035063105689, 30.336491309852505 ], [ -95.50079506361304, 30.336410310222792 ], [ -95.500271063603975, 30.336218309725947 ], [ -95.499681063473233, 30.336002310020053 ], [ -95.499624062566213, 30.335980309964974 ], [ -95.49926706299641, 30.335840309366322 ], [ -95.499048063298702, 30.3357543100275 ], [ -95.498895062285769, 30.335704309426813 ], [ -95.498513062418567, 30.335600309256975 ], [ -95.498286062947599, 30.335553309334561 ], [ -95.498029062830469, 30.335513309537713 ], [ -95.49750906201713, 30.335475309337088 ], [ -95.497239062614838, 30.335471309878191 ], [ -95.49700806218992, 30.3354763100733 ], [ -95.496344061850792, 30.335518309759941 ], [ -95.494751061257105, 30.335802309907802 ], [ -95.494587061200335, 30.335823309706569 ], [ -95.493991061066367, 30.335865310192958 ], [ -95.493514060935823, 30.335809310134533 ], [ -95.493100061814218, 30.335724309523123 ], [ -95.492726061127499, 30.335601309515226 ], [ -95.492303061205916, 30.335417310309104 ], [ -95.491979061170355, 30.335238309454052 ], [ -95.491719061214965, 30.335047309681205 ], [ -95.491454060727094, 30.334822309478476 ], [ -95.491210060247226, 30.334566309459188 ], [ -95.49094306021334, 30.334210309244053 ], [ -95.490755060179993, 30.333866309328315 ], [ -95.49067406030214, 30.333666309977318 ], [ -95.490579060199266, 30.33339130911877 ], [ -95.490326060592807, 30.332018309187355 ], [ -95.49025106000515, 30.331688309100059 ], [ -95.490148060254882, 30.331350308753571 ], [ -95.489910060578183, 30.330612308974189 ], [ -95.489084060554262, 30.33081130902119 ], [ -95.488524060401858, 30.33101430879076 ], [ -95.486974059398435, 30.331402309676506 ], [ -95.486863059468988, 30.331427309335762 ], [ -95.486755059818066, 30.331452309500673 ], [ -95.484115058845632, 30.332099309299924 ], [ -95.482687058808253, 30.332391309926191 ], [ -95.481212058406399, 30.332725309443305 ], [ -95.47924405758107, 30.333253309800838 ], [ -95.478584057423006, 30.333431310255456 ], [ -95.478271057628334, 30.333516310273673 ], [ -95.478304057463177, 30.333605310303135 ], [ -95.478934057538055, 30.335258310669417 ], [ -95.479384057549979, 30.336461310608779 ], [ -95.479677057958085, 30.337244310955771 ], [ -95.480204058096348, 30.338611310547932 ], [ -95.481562058277063, 30.342134311280674 ], [ -95.482447059387411, 30.344523311958316 ], [ -95.482969059267177, 30.345912312408089 ], [ -95.483373059501318, 30.347075312517536 ], [ -95.48360705908091, 30.348176312935554 ], [ -95.483853059990466, 30.349698313150469 ], [ -95.483898059260824, 30.350063313574857 ], [ -95.483994059482185, 30.3508493128857 ], [ -95.484017060212466, 30.351116313517878 ], [ -95.484024060118699, 30.351199313136703 ], [ -95.484126059340895, 30.352390313303477 ], [ -95.484236059857679, 30.353876314301253 ], [ -95.484270060136438, 30.354338313618822 ], [ -95.484659060158393, 30.35943831502567 ], [ -95.48471806068008, 30.360217315187064 ], [ -95.484969061012279, 30.363195315851623 ], [ -95.48503406051951, 30.363964315680185 ], [ -95.485132060161831, 30.365138315832457 ], [ -95.485302060924965, 30.366886316768237 ], [ -95.485656061337025, 30.366992316814297 ], [ -95.485959060703308, 30.367061316169966 ], [ -95.492011062802931, 30.368444316831518 ], [ -95.492624063041887, 30.368584316963087 ], [ -95.492699062455188, 30.368602316742841 ], [ -95.492949062436495, 30.368659316970081 ], [ -95.493200063084117, 30.368715316685762 ], [ -95.494506063237637, 30.369015317033778 ], [ -95.495527063240075, 30.369251316695905 ], [ -95.49613906396857, 30.369392316875373 ], [ -95.49884506466509, 30.37001731688153 ], [ -95.499214064827882, 30.370158317013754 ], [ -95.499519064762055, 30.370163317080721 ], [ -95.502092064737326, 30.370758316858186 ], [ -95.503245066065091, 30.371047316673174 ], [ -95.503669065924313, 30.371121316600259 ], [ -95.503923065448873, 30.371180316564548 ], [ -95.504199065978767, 30.371244316466864 ], [ -95.504606066021239, 30.37133831626884 ], [ -95.505189065694012, 30.371474316572687 ], [ -95.505431066229832, 30.371531316906129 ], [ -95.505898065950419, 30.371640316615824 ], [ -95.508017067182251, 30.372137317005734 ], [ -95.508967066707768, 30.372361316645531 ], [ -95.50984606751507, 30.372546317049348 ], [ -95.510017067012384, 30.372578316727747 ], [ -95.510394067364714, 30.372665317168174 ], [ -95.510739067595679, 30.372744316880741 ], [ -95.511419067897151, 30.372901316697742 ], [ -95.514296068842626, 30.373564317210466 ], [ -95.515206068502948, 30.373774317107795 ], [ -95.515450068508301, 30.373830316611112 ], [ -95.515692068365468, 30.373886317223324 ], [ -95.516345068948866, 30.374036316780852 ], [ -95.517803069319768, 30.374372317293666 ], [ -95.522740071208787, 30.375510317063032 ], [ -95.524614071475028, 30.375942316973674 ], [ -95.524896070971593, 30.376010316857347 ], [ -95.529566072660657, 30.377142316805653 ], [ -95.529735072320378, 30.377183317029992 ], [ -95.529788072426044, 30.376976316725017 ], [ -95.530134073048274, 30.375629317008023 ], [ -95.530667073127617, 30.373557315808235 ], [ -95.530788073079933, 30.373125315711306 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1238, "Tract": "48339690101", "Area_SqMi": 12.034989180978156, "total_2009": 150, "total_2010": 213, "total_2011": 207, "total_2012": 307, "total_2013": 256, "total_2014": 292, "total_2015": 290, "total_2016": 225, "total_2017": 244, "total_2018": 200, "total_2019": 216, "total_2020": 288, "age1": 63, "age2": 140, "age3": 41, "earn1": 50, "earn2": 90, "earn3": 104, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 50, "naics_s05": 49, "naics_s06": 3, "naics_s07": 30, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 30, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 0, "naics_s17": 3, "naics_s18": 41, "naics_s19": 5, "naics_s20": 0, "race1": 210, "race2": 20, "race3": 3, "race4": 8, "race5": 0, "race6": 3, "ethnicity1": 171, "ethnicity2": 73, "edu1": 48, "edu2": 60, "edu3": 38, "edu4": 35, "Shape_Length": 111328.18853511101, "Shape_Area": 335514900.27582741, "total_2021": 388, "total_2022": 244 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.803893133769549, 30.178697266932193 ], [ -95.803889133319927, 30.178344267018865 ], [ -95.803876132724284, 30.171920265535135 ], [ -95.803873132541739, 30.17020926577807 ], [ -95.803865132809449, 30.166255264783793 ], [ -95.803858132261723, 30.16230226392954 ], [ -95.803856132505246, 30.161365264084271 ], [ -95.803854132785631, 30.160428263884228 ], [ -95.803851132086805, 30.158765263536907 ], [ -95.803847132150452, 30.157103262611621 ], [ -95.803836132407781, 30.151589261626448 ], [ -95.803835131916657, 30.15095826120476 ], [ -95.80382313191339, 30.144812260056739 ], [ -95.803821131741984, 30.144593259903626 ], [ -95.803815131390962, 30.143939259982162 ], [ -95.80381413190679, 30.143721259978975 ], [ -95.803808131315066, 30.142178260134532 ], [ -95.803791131849437, 30.137551258688276 ], [ -95.803786131396762, 30.136009258870953 ], [ -95.803788131147769, 30.132484258112243 ], [ -95.803747131155433, 30.126281256206934 ], [ -95.803744131070729, 30.126095256105621 ], [ -95.803733130922822, 30.12543925633021 ], [ -95.803701131046196, 30.123471256277696 ], [ -95.803691130868174, 30.12281625603358 ], [ -95.803690131004146, 30.122772255458454 ], [ -95.803688131067773, 30.122640255825679 ], [ -95.803688130613068, 30.122597255458359 ], [ -95.803675130928241, 30.121293256012116 ], [ -95.803675131017926, 30.121190255629138 ], [ -95.803693130640212, 30.116972254862333 ], [ -95.803699130845658, 30.115566253979825 ], [ -95.803699129870338, 30.115480254810212 ], [ -95.803699130582388, 30.115464254188051 ], [ -95.803699130277749, 30.115225254437583 ], [ -95.803700130438187, 30.115141254537889 ], [ -95.803697130692527, 30.114890254735116 ], [ -95.803691130471719, 30.114137254256608 ], [ -95.803689130427315, 30.113886253747374 ], [ -95.80368913008482, 30.113822253849929 ], [ -95.803690130390308, 30.113806254412996 ], [ -95.803337128571044, 30.090101249266802 ], [ -95.802863128757807, 30.090266249528408 ], [ -95.802636129336534, 30.09035924974927 ], [ -95.802465129303968, 30.090458249834526 ], [ -95.80226912931397, 30.090590249592612 ], [ -95.801858128521232, 30.090887249085235 ], [ -95.801390128902227, 30.09128324969404 ], [ -95.8011751281839, 30.091420249499567 ], [ -95.800961128482356, 30.09150325001395 ], [ -95.800796128023578, 30.091519249787691 ], [ -95.800645128246799, 30.09150824938628 ], [ -95.80050612827938, 30.091464249449242 ], [ -95.800291128384799, 30.091294250019512 ], [ -95.799861128549949, 30.090689249446463 ], [ -95.799760128209471, 30.090453249066485 ], [ -95.799696128108323, 30.090277249238742 ], [ -95.799614128232619, 30.090172249693843 ], [ -95.799273128323478, 30.090057249247522 ], [ -95.79882412769345, 30.090079249183251 ], [ -95.798180127474524, 30.090216249276889 ], [ -95.798041128157308, 30.090288249476746 ], [ -95.797876127286088, 30.090436249202178 ], [ -95.797794127215042, 30.090486249756591 ], [ -95.797655127287598, 30.090535249168084 ], [ -95.797269127999726, 30.090639249428651 ], [ -95.797004127889068, 30.090722249906424 ], [ -95.796783127020973, 30.090738249955425 ], [ -95.796599127525781, 30.090716250032575 ], [ -95.796119127006477, 30.090617249906575 ], [ -95.795872126757345, 30.090645249988683 ], [ -95.795632127514125, 30.090689249433169 ], [ -95.79519012670265, 30.090892249540367 ], [ -95.794254127180849, 30.091409249747276 ], [ -95.793888126449318, 30.091563250305629 ], [ -95.79366012636757, 30.091607249934231 ], [ -95.793256126668112, 30.091612249726861 ], [ -95.792655126245549, 30.091551249643643 ], [ -95.792150126609826, 30.091409249931907 ], [ -95.791922126305181, 30.091425250129173 ], [ -95.791606126469134, 30.091491249840384 ], [ -95.7912141261465, 30.091513249924425 ], [ -95.790607125899442, 30.091716250228171 ], [ -95.790304125730458, 30.091859250214767 ], [ -95.789975126137591, 30.092057249999385 ], [ -95.789849126090033, 30.092101249788637 ], [ -95.789501125274043, 30.092095250246896 ], [ -95.789362125444157, 30.092073250013875 ], [ -95.789090125900515, 30.09199125029772 ], [ -95.788913125306962, 30.091958249753468 ], [ -95.788629125508649, 30.092057250306468 ], [ -95.788553125779814, 30.092145250082783 ], [ -95.78851512589064, 30.092205250342928 ], [ -95.78851512516033, 30.092310250306895 ], [ -95.788597125154908, 30.092771250575712 ], [ -95.788610125878449, 30.092815250678161 ], [ -95.788686125188363, 30.092865250632457 ], [ -95.788799125503502, 30.092986250008273 ], [ -95.788989125688346, 30.093244250503158 ], [ -95.789147126115537, 30.09353525072121 ], [ -95.789261125312223, 30.093959250471141 ], [ -95.789298125885367, 30.094404250291902 ], [ -95.789286125648559, 30.094492250744231 ], [ -95.789248125638068, 30.094591250575583 ], [ -95.789166126100284, 30.094662251011357 ], [ -95.789083125174656, 30.094679250655474 ], [ -95.789039125735258, 30.094679250415783 ], [ -95.788881125977426, 30.094536251108313 ], [ -95.788736125569429, 30.094354250384008 ], [ -95.788382125205786, 30.09403525030406 ], [ -95.788199124896224, 30.093942250962996 ], [ -95.788117124945416, 30.093936250949461 ], [ -95.787990125099284, 30.093942250934962 ], [ -95.787927125714688, 30.093975250184801 ], [ -95.787851125475399, 30.094046250571239 ], [ -95.787819125511547, 30.094162250658812 ], [ -95.787731124860713, 30.094239250912761 ], [ -95.78757312510804, 30.094277250700991 ], [ -95.78752912502749, 30.094272250252221 ], [ -95.787288125002291, 30.094305250601238 ], [ -95.787175125576837, 30.094310250493074 ], [ -95.787029124899107, 30.094277250980053 ], [ -95.786960124789545, 30.094222250721423 ], [ -95.786897125271281, 30.094101250719376 ], [ -95.786827124714065, 30.094002250803729 ], [ -95.78674512489556, 30.093936250883655 ], [ -95.786574125420913, 30.093870251069539 ], [ -95.786157124842944, 30.093810250571501 ], [ -95.785980125162922, 30.093953250983269 ], [ -95.785879125194342, 30.094013250810484 ], [ -95.785797124482912, 30.094013250805212 ], [ -95.785582124739463, 30.093920250908521 ], [ -95.785493124641832, 30.093843250471096 ], [ -95.785278124713642, 30.093683250482254 ], [ -95.785083124451987, 30.093568250917404 ], [ -95.784887124826895, 30.093375250784501 ], [ -95.784843124604819, 30.093216250538017 ], [ -95.784754124422605, 30.093150250707843 ], [ -95.784659124237763, 30.093051250091619 ], [ -95.784526124330441, 30.092941250111917 ], [ -95.784090123825635, 30.092749250490332 ], [ -95.783629124342923, 30.092589250548748 ], [ -95.783212123960752, 30.092408250595405 ], [ -95.783117124454904, 30.09235325073751 ], [ -95.782953123567751, 30.092023250485862 ], [ -95.782953124260587, 30.091995250347843 ], [ -95.783003124469616, 30.091886250085437 ], [ -95.78311112363653, 30.091825250230311 ], [ -95.783174124068509, 30.091770250012271 ], [ -95.783180124138795, 30.091660250228482 ], [ -95.783079124259132, 30.091534249909198 ], [ -95.782972124364036, 30.091358250567435 ], [ -95.78280112430167, 30.091012250383848 ], [ -95.782713123586092, 30.090940249871021 ], [ -95.781866123126434, 30.090561249828305 ], [ -95.781765123330985, 30.090462250448383 ], [ -95.781638123144774, 30.090418249949771 ], [ -95.781544123550617, 30.090423250377022 ], [ -95.78125912371577, 30.090489250470213 ], [ -95.781025123562458, 30.090517250309201 ], [ -95.780981123764121, 30.090517250089018 ], [ -95.780905123475904, 30.090489249721401 ], [ -95.780810123842073, 30.090434249922659 ], [ -95.780766122961282, 30.090385249730843 ], [ -95.780728123556557, 30.090187250206583 ], [ -95.780678122789624, 30.090137249871518 ], [ -95.780482123362944, 30.090077250394202 ], [ -95.780248123222094, 30.090044249672289 ], [ -95.779546123340538, 30.090005249732872 ], [ -95.779129122807703, 30.089967249984952 ], [ -95.778927123346548, 30.089912250390089 ], [ -95.778586122473627, 30.089736249993237 ], [ -95.778371122956628, 30.089659249771127 ], [ -95.777657122194483, 30.089653250079106 ], [ -95.777385122205516, 30.08965825016789 ], [ -95.776848122180553, 30.089818250073762 ], [ -95.776658122121574, 30.089900249866243 ], [ -95.776443122023423, 30.090186250332586 ], [ -95.776456122345266, 30.090241250251065 ], [ -95.776500122181318, 30.090290250076965 ], [ -95.776569122300458, 30.09029625064478 ], [ -95.776664122189089, 30.090257249821434 ], [ -95.776791122361274, 30.090180250217994 ], [ -95.776879122243869, 30.090159250079964 ], [ -95.776955122861736, 30.09019725039326 ], [ -95.776961122441847, 30.09025225029874 ], [ -95.776936122102299, 30.090323249821001 ], [ -95.776689121970549, 30.090560250732075 ], [ -95.776677122058928, 30.090587250309664 ], [ -95.776721122802755, 30.090697250207857 ], [ -95.776689122701598, 30.09072525037892 ], [ -95.776607122645473, 30.090730250755144 ], [ -95.776519121761524, 30.090719250716901 ], [ -95.776392122220145, 30.090697250303215 ], [ -95.776304122233341, 30.090670250151707 ], [ -95.776165122370031, 30.090681250520646 ], [ -95.776038122578498, 30.090768250790241 ], [ -95.775823121649893, 30.090889250594181 ], [ -95.775621121953478, 30.090983250221214 ], [ -95.775438121766044, 30.09104925014493 ], [ -95.77511512167807, 30.091120250747977 ], [ -95.774761121711862, 30.091175250623238 ], [ -95.774483121634404, 30.091191250201799 ], [ -95.774098121773761, 30.090999250534683 ], [ -95.77363612143651, 30.090867250542104 ], [ -95.773188121827417, 30.090641250880889 ], [ -95.772821121390962, 30.090366250837175 ], [ -95.772467121585251, 30.090169250603349 ], [ -95.772410121021807, 30.090081249948138 ], [ -95.772378121086035, 30.089937250583937 ], [ -95.772354121100548, 30.089833250600343 ], [ -95.772303121292452, 30.08974025071808 ], [ -95.771924121149212, 30.08950924989448 ], [ -95.771873121427419, 30.089410250158423 ], [ -95.771873120527189, 30.089344250178168 ], [ -95.771943120585021, 30.089184250231739 ], [ -95.771949120660224, 30.089102249908969 ], [ -95.77194312133247, 30.088992250023868 ], [ -95.771823120714274, 30.088877250509569 ], [ -95.771608120746762, 30.088756249816853 ], [ -95.771513121083899, 30.088096250275214 ], [ -95.771463120572193, 30.087860250200595 ], [ -95.77141912092921, 30.087761249527944 ], [ -95.771343120409227, 30.087662250190149 ], [ -95.771248120866744, 30.087579250333107 ], [ -95.771122120837816, 30.087508249805936 ], [ -95.770957120691122, 30.087453250212661 ], [ -95.770799120233733, 30.08742525010447 ], [ -95.770635120566908, 30.087425249491844 ], [ -95.770452120956861, 30.087409249814538 ], [ -95.770117119982956, 30.087425249945902 ], [ -95.770050120955858, 30.087445250254113 ], [ -95.76982612048829, 30.087513250207962 ], [ -95.769472119900342, 30.087551249543118 ], [ -95.769200120130861, 30.08752924976152 ], [ -95.769036120512354, 30.087535249587805 ], [ -95.768777120345419, 30.087617249794221 ], [ -95.768644119716257, 30.087694250278709 ], [ -95.768524120216313, 30.087787249993315 ], [ -95.76842911995702, 30.087897250309769 ], [ -95.768366119653436, 30.08800225016542 ], [ -95.768334120405214, 30.088095250338522 ], [ -95.768334120281239, 30.088183250094687 ], [ -95.768353120027285, 30.088282250181738 ], [ -95.768429120150685, 30.088485250115991 ], [ -95.768416120164659, 30.088518249931901 ], [ -95.768366120277562, 30.088568250256905 ], [ -95.768290120284789, 30.088601250153953 ], [ -95.768100120104592, 30.088623250276097 ], [ -95.767955120233282, 30.088612249800136 ], [ -95.767493120263453, 30.088518250457852 ], [ -95.767380119909035, 30.088513250359615 ], [ -95.766653119688186, 30.088600249917302 ], [ -95.76628611909517, 30.088611250169336 ], [ -95.766059119761763, 30.088595250325678 ], [ -95.765534119670605, 30.088496250704932 ], [ -95.765066119518167, 30.088495250677887 ], [ -95.764953118710253, 30.088468250601981 ], [ -95.764845119298286, 30.088424249844262 ], [ -95.764744119338019, 30.088358249830897 ], [ -95.764630118640213, 30.088264250640144 ], [ -95.764504119121753, 30.088122250331317 ], [ -95.764415119233476, 30.087951250187405 ], [ -95.764346119362827, 30.087764250207758 ], [ -95.764214118526382, 30.087506250257551 ], [ -95.76401811844859, 30.087187249926142 ], [ -95.763853118763677, 30.087061249760325 ], [ -95.763790119050711, 30.087038249834411 ], [ -95.763360118274491, 30.08699425000497 ], [ -95.76324011877594, 30.086961249921323 ], [ -95.763174118387383, 30.086936249765106 ], [ -95.762969118338162, 30.086857250464256 ], [ -95.76243111886896, 30.086659250031232 ], [ -95.762059118831758, 30.086538249609013 ], [ -95.76153411774753, 30.086389250046761 ], [ -95.76140111859489, 30.086373250147783 ], [ -95.761256117773343, 30.086367250186001 ], [ -95.761092117722839, 30.086378249952379 ], [ -95.760934117646258, 30.086411250341303 ], [ -95.760794118430567, 30.086460250219162 ], [ -95.760403117812572, 30.086669250487567 ], [ -95.760276117777593, 30.086774249714765 ], [ -95.760143117539712, 30.086911249688487 ], [ -95.760004118293338, 30.087081250366694 ], [ -95.759827117766505, 30.087372250270221 ], [ -95.759732117452899, 30.08768025067128 ], [ -95.759663117928355, 30.087757250644447 ], [ -95.759612117331883, 30.087895250731016 ], [ -95.759586117491338, 30.088362250537951 ], [ -95.759637117761542, 30.088538250373009 ], [ -95.759678117922519, 30.088621250468272 ], [ -95.759713118143367, 30.088692250971036 ], [ -95.75959211743816, 30.089258250902926 ], [ -95.759687117922709, 30.089901250492563 ], [ -95.759611117742736, 30.090060250652606 ], [ -95.759390117501809, 30.090231250707681 ], [ -95.759004117350074, 30.090395250791357 ], [ -95.758732117562076, 30.09048925096096 ], [ -95.758068117770947, 30.090664251239836 ], [ -95.757986117262575, 30.090697250533768 ], [ -95.757936117223451, 30.090725250948438 ], [ -95.757638117890508, 30.09101625061939 ], [ -95.757537116939261, 30.091065250872894 ], [ -95.757430117650699, 30.091093250991513 ], [ -95.757171117252682, 30.091131251338528 ], [ -95.756892117425565, 30.091186250731667 ], [ -95.756684117492185, 30.091241251128118 ], [ -95.756450116781053, 30.091334251010966 ], [ -95.756342117330874, 30.091400251230194 ], [ -95.756260117080771, 30.091477250799898 ], [ -95.756026117472103, 30.091823251153187 ], [ -95.755976117180495, 30.091862251172259 ], [ -95.755900116698115, 30.091895251390213 ], [ -95.755590116783182, 30.091972251684464 ], [ -95.755501117337346, 30.092005251176108 ], [ -95.755192116898954, 30.092153251106584 ], [ -95.755065117209611, 30.09223525121477 ], [ -95.75493911636265, 30.09227925113256 ], [ -95.754857116921499, 30.092285251800082 ], [ -95.754642117073544, 30.09225225171723 ], [ -95.754534117018906, 30.092246251558866 ], [ -95.75437611642964, 30.092273251059115 ], [ -95.754332116345267, 30.09230125149768 ], [ -95.754300116880742, 30.092334251653554 ], [ -95.754275116381493, 30.09238325115405 ], [ -95.754186116864275, 30.092653251821961 ], [ -95.754142117050421, 30.092708251693875 ], [ -95.754066116413213, 30.092779251606807 ], [ -95.753756116947685, 30.092977251345509 ], [ -95.753649116643658, 30.09306525165761 ], [ -95.753301116384208, 30.093455251448503 ], [ -95.753225116103721, 30.093515251479559 ], [ -95.753118116632777, 30.09357625191074 ], [ -95.753088116023136, 30.093586251620497 ], [ -95.752966116431949, 30.093625251853087 ], [ -95.752498115941762, 30.093685251482995 ], [ -95.751872116162787, 30.093707252247164 ], [ -95.751733116082534, 30.093723251616204 ], [ -95.751582115706512, 30.093778252194305 ], [ -95.751487116230166, 30.093828252141506 ], [ -95.751392116417549, 30.093905251507877 ], [ -95.751353115836679, 30.093955251506657 ], [ -95.751282115758755, 30.094045251483088 ], [ -95.751208116438988, 30.094141251741551 ], [ -95.751145115776481, 30.094207252148337 ], [ -95.751050115743325, 30.094262251518792 ], [ -95.750646116064814, 30.094394252357301 ], [ -95.750507115817314, 30.094449252052687 ], [ -95.750235116196734, 30.094591251794345 ], [ -95.75000611592462, 30.095042252579901 ], [ -95.74992411535942, 30.095251252278256 ], [ -95.749861115249757, 30.095312252367535 ], [ -95.749798115722214, 30.095361252167894 ], [ -95.749729115247689, 30.095400251800864 ], [ -95.749640115941204, 30.095433252004831 ], [ -95.749577115580252, 30.095438252182955 ], [ -95.749656115242772, 30.095706252625845 ], [ -95.749784115909335, 30.096013252251137 ], [ -95.749705116141243, 30.096311252828954 ], [ -95.749495115150566, 30.096700252161163 ], [ -95.749522115904782, 30.096907252271084 ], [ -95.749680115514678, 30.096975252358988 ], [ -95.749890115357388, 30.096883252375626 ], [ -95.75023211616454, 30.096539252872176 ], [ -95.750656116086844, 30.096216252041163 ], [ -95.750920116388329, 30.096376252429955 ], [ -95.751261116356972, 30.097155252170985 ], [ -95.752419116360798, 30.098302252687098 ], [ -95.753103116209857, 30.098623252541842 ], [ -95.753946117112946, 30.098532252560908 ], [ -95.754315117129565, 30.098349252540686 ], [ -95.754337117289126, 30.098324252479063 ], [ -95.754684116932538, 30.097937252288162 ], [ -95.755396117573056, 30.0978692525314 ], [ -95.756028116969034, 30.097618252201741 ], [ -95.757067117768912, 30.097940252918651 ], [ -95.757213117305085, 30.097985252741385 ], [ -95.758003117784725, 30.097802252184426 ], [ -95.758346117998784, 30.097849252381707 ], [ -95.758582117941003, 30.098032252223085 ], [ -95.758661118242614, 30.098307252431525 ], [ -95.758898118500696, 30.098674252861592 ], [ -95.759161118637721, 30.098880252191552 ], [ -95.759240118624632, 30.099063252554597 ], [ -95.759160118327443, 30.099544253112288 ], [ -95.759186117844038, 30.099865252499793 ], [ -95.759423118165543, 30.100117252737856 ], [ -95.759923118365748, 30.100323252628929 ], [ -95.760292118576004, 30.100644252936771 ], [ -95.760608119001049, 30.100599252481146 ], [ -95.760769118922227, 30.10042025328352 ], [ -95.760909119173107, 30.100808252699871 ], [ -95.76092711867166, 30.100963253252569 ], [ -95.760918118308922, 30.101037253325622 ], [ -95.760888118632792, 30.101160252849699 ], [ -95.760668119008571, 30.101867253577211 ], [ -95.760061118117619, 30.102812253234539 ], [ -95.759484118145991, 30.103792253552736 ], [ -95.759448118386345, 30.103890253940865 ], [ -95.75939311866459, 30.104136253535692 ], [ -95.759127118827209, 30.105466254375344 ], [ -95.758866118432408, 30.10668425401915 ], [ -95.758765118234734, 30.107204254569851 ], [ -95.758604118133405, 30.107951254604 ], [ -95.758525118990875, 30.108208254723543 ], [ -95.758374118673629, 30.108625254159438 ], [ -95.757683118863412, 30.11053725488221 ], [ -95.757669118581276, 30.110726255226492 ], [ -95.757670118667377, 30.111095255298938 ], [ -95.757696118758645, 30.112408255700334 ], [ -95.757694118243947, 30.112587255232839 ], [ -95.757683118508126, 30.112669255782972 ], [ -95.757616118600708, 30.112791255655658 ], [ -95.757550118932841, 30.112853255292119 ], [ -95.75705711807781, 30.113262255732568 ], [ -95.75700811834804, 30.113326255194547 ], [ -95.756967117890966, 30.11340225547994 ], [ -95.756943117939116, 30.113476255210706 ], [ -95.7569321184545, 30.113701255975933 ], [ -95.756941118728264, 30.113823255272347 ], [ -95.757017118664407, 30.113948255497071 ], [ -95.757143118744423, 30.113995255898917 ], [ -95.757267118828054, 30.113998255779055 ], [ -95.758093118503012, 30.113974255516716 ], [ -95.758081118818623, 30.114268255884589 ], [ -95.758082119059665, 30.114433255377573 ], [ -95.758095118673197, 30.114607255669615 ], [ -95.758142119126546, 30.114977255707188 ], [ -95.758172118449124, 30.115159255513877 ], [ -95.758252118710644, 30.115447256383906 ], [ -95.758296118624926, 30.115553256288131 ], [ -95.758358118717496, 30.11565925595178 ], [ -95.758425118421542, 30.115762256243425 ], [ -95.758477119145837, 30.115854255752922 ], [ -95.758614118622063, 30.116058256382725 ], [ -95.758743118938185, 30.11622925654666 ], [ -95.758988118764108, 30.116507255798592 ], [ -95.758154119084452, 30.117882256857371 ], [ -95.757766118665828, 30.118461256505721 ], [ -95.757606118405945, 30.119291257073019 ], [ -95.757408118406758, 30.120191257147585 ], [ -95.757269118502307, 30.120878257042946 ], [ -95.757254119105554, 30.121092257114235 ], [ -95.757251118978388, 30.12130125710318 ], [ -95.75728811907409, 30.126528258549659 ], [ -95.756310118428431, 30.126538258285041 ], [ -95.755762118262084, 30.126547258502846 ], [ -95.755292118900158, 30.126582258430396 ], [ -95.755114118445007, 30.126572257991299 ], [ -95.754960118847038, 30.12664025817001 ], [ -95.754930118770162, 30.126653258208847 ], [ -95.754805118876135, 30.126686258047474 ], [ -95.754628118054825, 30.126742258701203 ], [ -95.754445118103419, 30.126809258039444 ], [ -95.75431611793627, 30.126872258204649 ], [ -95.754184118201152, 30.126943258437823 ], [ -95.753910118592984, 30.127107258500853 ], [ -95.753786118207415, 30.127198258768242 ], [ -95.753561117721773, 30.127401258615098 ], [ -95.753435118044806, 30.127539258659834 ], [ -95.753300117791383, 30.127711258393095 ], [ -95.75311811811693, 30.128023258567922 ], [ -95.752967117945218, 30.128322258641418 ], [ -95.752876117951942, 30.128521258840678 ], [ -95.752792117519007, 30.128788259210395 ], [ -95.752776117548578, 30.129137258671712 ], [ -95.752817118650825, 30.133806259896602 ], [ -95.752849118035257, 30.134833260113215 ], [ -95.752864117862927, 30.137205260973911 ], [ -95.752864118454795, 30.138272260674579 ], [ -95.752893118707092, 30.14304026206997 ], [ -95.752885118407193, 30.144140262327536 ], [ -95.753658119309563, 30.143878261589482 ], [ -95.753738118924176, 30.143603261724664 ], [ -95.754133119291851, 30.143122261520116 ], [ -95.754160118617563, 30.142733261423601 ], [ -95.754371118935808, 30.142527261881369 ], [ -95.754767119464461, 30.142321261442337 ], [ -95.75501911932254, 30.141956261453949 ], [ -95.755083119505755, 30.141864261421354 ], [ -95.755347119362284, 30.141772261732875 ], [ -95.755550119186481, 30.141773260996992 ], [ -95.755681119471106, 30.141820261102463 ], [ -95.756001118893153, 30.14202826154154 ], [ -95.75605811947149, 30.142071261229226 ], [ -95.756031119930213, 30.143032261729843 ], [ -95.755952119788063, 30.14314726157119 ], [ -95.755477119028228, 30.14333026148504 ], [ -95.755319118907181, 30.143536261326531 ], [ -95.755292119262691, 30.143719261947062 ], [ -95.755477119816959, 30.143811261784975 ], [ -95.756214119059109, 30.143880262028159 ], [ -95.75689911988313, 30.144087261639498 ], [ -95.757241119694982, 30.144476262304693 ], [ -95.757109119924309, 30.145072262037807 ], [ -95.757346120041944, 30.145232262218684 ], [ -95.757741119511351, 30.145209262444546 ], [ -95.758084119594741, 30.145049262133846 ], [ -95.758269119674949, 30.144683261966343 ], [ -95.758506119658037, 30.144500261934461 ], [ -95.758954120599341, 30.144271262219824 ], [ -95.758981120511478, 30.143942261884693 ], [ -95.758808120707869, 30.143700262075793 ], [ -95.758808119805749, 30.143336261682336 ], [ -95.7590801203079, 30.143086261414727 ], [ -95.759634120784611, 30.143072261446388 ], [ -95.759895119936317, 30.143203261711491 ], [ -95.759983120615601, 30.143127261495785 ], [ -95.760747120912157, 30.14315126158472 ], [ -95.760886120779205, 30.143060261648827 ], [ -95.76095812048888, 30.143013261461913 ], [ -95.76164312100255, 30.143174261051438 ], [ -95.762135121135159, 30.14313026128962 ], [ -95.762408121503626, 30.143106261825785 ], [ -95.76275012137603, 30.143221261333338 ], [ -95.762961121559172, 30.143450261587351 ], [ -95.76325012110479, 30.14354226132733 ], [ -95.763303121686036, 30.143656261885667 ], [ -95.763118121650564, 30.143931261891712 ], [ -95.763144121133138, 30.144092261786319 ], [ -95.763513121700541, 30.144367261571333 ], [ -95.763670121744866, 30.145329261818393 ], [ -95.76388112166444, 30.145466261793651 ], [ -95.764434121462642, 30.145604262186694 ], [ -95.764829121770703, 30.145833262276604 ], [ -95.76538312152843, 30.145765262244606 ], [ -95.765751121903037, 30.145903261632082 ], [ -95.766120122459881, 30.146292262204483 ], [ -95.766489122191103, 30.1465222620334 ], [ -95.767648122238242, 30.146729261920701 ], [ -95.768754123371039, 30.14705026228151 ], [ -95.770626123497337, 30.146754261703993 ], [ -95.77131112386104, 30.146502261855684 ], [ -95.771688123426358, 30.146459261753506 ], [ -95.773111124251898, 30.146302261323115 ], [ -95.775523124511238, 30.146294261217978 ], [ -95.775868124429437, 30.14622826130098 ], [ -95.776581124898271, 30.146555261240163 ], [ -95.777559125324501, 30.146929261589257 ], [ -95.778327125291966, 30.147003261904477 ], [ -95.778692125819589, 30.147903261528906 ], [ -95.778688125146445, 30.148479262288848 ], [ -95.778979125146918, 30.148664262408374 ], [ -95.779349125719691, 30.148759261560102 ], [ -95.779428126068311, 30.148943261756852 ], [ -95.779320125697907, 30.149196262275971 ], [ -95.779397125680447, 30.149634261772498 ], [ -95.779581126232245, 30.149865261794805 ], [ -95.779872125734798, 30.14998226253066 ], [ -95.78026912552221, 30.149962262035981 ], [ -95.780562126462144, 30.149779262171638 ], [ -95.780804126375187, 30.149275262150219 ], [ -95.780860125974755, 30.148745262357085 ], [ -95.781127126605128, 30.148470262034643 ], [ -95.78139112625432, 30.148518261716827 ], [ -95.781999125912847, 30.148822262024876 ], [ -95.782633126098887, 30.149009261750376 ], [ -95.782683126226971, 30.149585261827777 ], [ -95.782920126921496, 30.149794262015018 ], [ -95.783238126637144, 30.149888262162463 ], [ -95.783390127027587, 30.150856262370294 ], [ -95.783549126897356, 30.15094926220187 ], [ -95.784371126591751, 30.150793261832305 ], [ -95.78455612729816, 30.150909261835782 ], [ -95.784657127592894, 30.151670261982645 ], [ -95.784868126784275, 30.151855262521401 ], [ -95.785452127571787, 30.151790262741702 ], [ -95.786010127142504, 30.151471262323135 ], [ -95.786805127200864, 30.151429262254361 ], [ -95.787339127594862, 30.150949262463222 ], [ -95.787577127774853, 30.150858262228219 ], [ -95.787974128283054, 30.150907262120711 ], [ -95.78866112828544, 30.151302262380586 ], [ -95.789218128011612, 30.151214261685769 ], [ -95.78948212871218, 30.151330262075319 ], [ -95.789854128011513, 30.151241262403417 ], [ -95.790121128712187, 30.150874261662441 ], [ -95.790838128421044, 30.150510262027506 ], [ -95.790946128222288, 30.150303261822774 ], [ -95.791213129189444, 30.150098261637904 ], [ -95.791372128531989, 30.150098261687024 ], [ -95.792138129261858, 30.150425262264946 ], [ -95.792375129025572, 30.150634262343377 ], [ -95.792479128776549, 30.150957261796545 ], [ -95.792611128799919, 30.151004261554014 ], [ -95.793487129560702, 30.150802261636485 ], [ -95.793910129929415, 30.150942262113631 ], [ -95.794886129366432, 30.15177726213134 ], [ -95.794961129786955, 30.152377262250809 ], [ -95.794880130064513, 30.152744262283658 ], [ -95.794928129955167, 30.153367262223984 ], [ -95.795033130209362, 30.153575262123457 ], [ -95.795797130557517, 30.154246262443486 ], [ -95.796695130568395, 30.154804262676784 ], [ -95.796958130074771, 30.155105262934239 ], [ -95.797062130112351, 30.155383262639983 ], [ -95.797086131011994, 30.155913262542313 ], [ -95.796869130962591, 30.156786263418208 ], [ -95.796973130690972, 30.156948263214613 ], [ -95.796972130209966, 30.157247262782317 ], [ -95.796838130740724, 30.157384263459917 ], [ -95.796863130295648, 30.15766126301655 ], [ -95.796995130423056, 30.157801263441133 ], [ -95.796993131051551, 30.158215263272993 ], [ -95.796858130227136, 30.158537263479872 ], [ -95.796883130487629, 30.158813263001214 ], [ -95.797093130975099, 30.159113263138217 ], [ -95.79761913037801, 30.159600263802325 ], [ -95.797614130393043, 30.16052226386163 ], [ -95.797797130826225, 30.161052263549063 ], [ -95.797742130510798, 30.161328263662 ], [ -95.797155130815142, 30.161969264089628 ], [ -95.79715413050981, 30.162153264359095 ], [ -95.797786131337034, 30.162779264303424 ], [ -95.797864131523269, 30.163056264497005 ], [ -95.797835131295329, 30.163378264464381 ], [ -95.797648131314887, 30.16374626409252 ], [ -95.797302131369946, 30.163996264644052 ], [ -95.797326131460537, 30.164296264502326 ], [ -95.797932130805492, 30.165037264316943 ], [ -95.797955131321373, 30.165497264283552 ], [ -95.79784813096046, 30.165704264698341 ], [ -95.797103131193708, 30.166091264531566 ], [ -95.796862130966275, 30.166504264749467 ], [ -95.796834130734666, 30.16673426480304 ], [ -95.797360131465567, 30.167475265091348 ], [ -95.797490131358344, 30.167774265059808 ], [ -95.798362131233574, 30.168287265138755 ], [ -95.798467131921925, 30.168425265268169 ], [ -95.798466131898635, 30.168679265740394 ], [ -95.798677131380913, 30.168956264957114 ], [ -95.798940131445264, 30.16914226572349 ], [ -95.799919131840909, 30.169378265080432 ], [ -95.800393131533355, 30.169888265103758 ], [ -95.80062713187678, 30.170649265989248 ], [ -95.800650132687778, 30.171248265457546 ], [ -95.800383132303907, 30.171477265889525 ], [ -95.800091131814511, 30.171590266145568 ], [ -95.799478131699615, 30.172185265802245 ], [ -95.799502132019427, 30.17266826571085 ], [ -95.799685132490424, 30.172969265856647 ], [ -95.800239131779023, 30.173341265984696 ], [ -95.801591132891147, 30.173395265866592 ], [ -95.802384133203461, 30.173722266046685 ], [ -95.802912133281552, 30.174140266030125 ], [ -95.80320113292926, 30.174579266124013 ], [ -95.803328132573881, 30.175431266930957 ], [ -95.803247133340435, 30.175707266285055 ], [ -95.802632133079769, 30.17651026682762 ], [ -95.80255213337297, 30.176763266419719 ], [ -95.802602132622553, 30.177155266588993 ], [ -95.802837133160295, 30.177663266617909 ], [ -95.803101132799171, 30.177941267224313 ], [ -95.803258132797652, 30.178357266889538 ], [ -95.803547133502605, 30.178612266995511 ], [ -95.803893133769549, 30.178697266932193 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1239, "Tract": "48201531200", "Area_SqMi": 0.75187370137121468, "total_2009": 164, "total_2010": 196, "total_2011": 194, "total_2012": 315, "total_2013": 442, "total_2014": 251, "total_2015": 275, "total_2016": 245, "total_2017": 279, "total_2018": 320, "total_2019": 316, "total_2020": 139, "age1": 38, "age2": 113, "age3": 42, "earn1": 30, "earn2": 78, "earn3": 85, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 4, "naics_s06": 0, "naics_s07": 13, "naics_s08": 0, "naics_s09": 8, "naics_s10": 3, "naics_s11": 59, "naics_s12": 8, "naics_s13": 1, "naics_s14": 24, "naics_s15": 2, "naics_s16": 7, "naics_s17": 6, "naics_s18": 25, "naics_s19": 29, "naics_s20": 0, "race1": 153, "race2": 20, "race3": 1, "race4": 15, "race5": 1, "race6": 3, "ethnicity1": 135, "ethnicity2": 58, "edu1": 25, "edu2": 38, "edu3": 48, "edu4": 44, "Shape_Length": 18752.230706862771, "Shape_Area": 20960951.949528653, "total_2021": 198, "total_2022": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.462456030073696, 29.832528208630091 ], [ -95.462797030699122, 29.832535208375631 ], [ -95.462403029944156, 29.831890208394757 ], [ -95.461598029602058, 29.830397208084005 ], [ -95.460613029860653, 29.828645207623772 ], [ -95.45977402937288, 29.827173207349492 ], [ -95.459629028789507, 29.826918207410991 ], [ -95.458914028673135, 29.825619207206135 ], [ -95.458143028905553, 29.8242332070114 ], [ -95.456917028373596, 29.822582206879233 ], [ -95.455131028262656, 29.821249206217214 ], [ -95.453716027180448, 29.820576206154144 ], [ -95.453383026982351, 29.820463206536672 ], [ -95.452199027434972, 29.820060206818294 ], [ -95.451056026679538, 29.81986920674326 ], [ -95.450947026326489, 29.819851206065291 ], [ -95.450868027187141, 29.819849206091366 ], [ -95.448727025769287, 29.819784206420227 ], [ -95.446999026210918, 29.819747207068474 ], [ -95.444487024770538, 29.819718206608883 ], [ -95.444484024918935, 29.819906206941333 ], [ -95.444495025136291, 29.820424206596879 ], [ -95.444499024713039, 29.820553206853361 ], [ -95.44451202526092, 29.82104620687177 ], [ -95.444531025105817, 29.821874207436444 ], [ -95.444555025199065, 29.822699207339703 ], [ -95.444580025015057, 29.823535207736121 ], [ -95.444593024814054, 29.824353208053509 ], [ -95.44461502533278, 29.825176208208724 ], [ -95.444635025337973, 29.826006208265472 ], [ -95.444656025118633, 29.826831207858945 ], [ -95.444663025940912, 29.827243208161015 ], [ -95.444670025332016, 29.827660208045696 ], [ -95.444690025425587, 29.828481208221742 ], [ -95.444715025851508, 29.829308208764054 ], [ -95.444722025274416, 29.830133209072972 ], [ -95.444750025692571, 29.830951209162471 ], [ -95.444771025689391, 29.831774209038866 ], [ -95.444785025589127, 29.832430209010155 ], [ -95.444800025286284, 29.832757209709445 ], [ -95.445420025768499, 29.832740209049337 ], [ -95.446047026043985, 29.832722209504411 ], [ -95.446313026076936, 29.832724208891037 ], [ -95.446904025948129, 29.832713208865083 ], [ -95.447262026173874, 29.832707209660686 ], [ -95.447854026410198, 29.832689209504892 ], [ -95.448230026570414, 29.832680209412249 ], [ -95.449107026681247, 29.832668209619378 ], [ -95.449239026358356, 29.832663209420122 ], [ -95.449392027186491, 29.83266320880826 ], [ -95.449948026685149, 29.832652209172707 ], [ -95.450741027244547, 29.832617208999 ], [ -95.451176027042479, 29.832618209060133 ], [ -95.451306027653985, 29.832611208762184 ], [ -95.452118027401681, 29.832592209507993 ], [ -95.453044027453259, 29.832590208846685 ], [ -95.45313002781667, 29.832590208997988 ], [ -95.453225028367385, 29.832589208741545 ], [ -95.455682028710299, 29.832546209008701 ], [ -95.458027029122363, 29.832522208442917 ], [ -95.460194029658652, 29.832505208693263 ], [ -95.461500030334619, 29.832541208630754 ], [ -95.462456030073696, 29.832528208630091 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1240, "Tract": "48201342900", "Area_SqMi": 2.2951092022698565, "total_2009": 2327, "total_2010": 1939, "total_2011": 2018, "total_2012": 3430, "total_2013": 3294, "total_2014": 3690, "total_2015": 3337, "total_2016": 3365, "total_2017": 3451, "total_2018": 3427, "total_2019": 3333, "total_2020": 3233, "age1": 1093, "age2": 1576, "age3": 517, "earn1": 698, "earn2": 1119, "earn3": 1369, "naics_s01": 0, "naics_s02": 149, "naics_s03": 26, "naics_s04": 263, "naics_s05": 19, "naics_s06": 5, "naics_s07": 924, "naics_s08": 3, "naics_s09": 0, "naics_s10": 48, "naics_s11": 3, "naics_s12": 603, "naics_s13": 0, "naics_s14": 144, "naics_s15": 6, "naics_s16": 184, "naics_s17": 13, "naics_s18": 699, "naics_s19": 96, "naics_s20": 1, "race1": 2472, "race2": 476, "race3": 30, "race4": 148, "race5": 7, "race6": 53, "ethnicity1": 1961, "ethnicity2": 1225, "edu1": 492, "edu2": 601, "edu3": 645, "edu4": 355, "Shape_Length": 33981.675574221044, "Shape_Area": 63983716.44062572, "total_2021": 3064, "total_2022": 3186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.123284936898557, 29.679209188852621 ], [ -95.123261936897535, 29.678681188431103 ], [ -95.123247935932056, 29.677987188605083 ], [ -95.123263936437837, 29.677229188676058 ], [ -95.123226935849999, 29.676451188108391 ], [ -95.123235936730424, 29.675727187607578 ], [ -95.123209936329417, 29.674920187610031 ], [ -95.123187936692901, 29.674296187475971 ], [ -95.123162936674674, 29.674109187687229 ], [ -95.123145936586027, 29.673308187634863 ], [ -95.123154935871213, 29.672487187051033 ], [ -95.123122936363842, 29.671662186915313 ], [ -95.12308693577468, 29.670833187083989 ], [ -95.12308393585343, 29.67001918685558 ], [ -95.123044935690004, 29.669180186678414 ], [ -95.123058935852512, 29.668391186297796 ], [ -95.123023935558123, 29.667536186599289 ], [ -95.122988935400258, 29.66670218646879 ], [ -95.12301993618108, 29.665901185721008 ], [ -95.122982936120309, 29.665561186397277 ], [ -95.122969936287831, 29.6653361857094 ], [ -95.12297293538515, 29.665262185645069 ], [ -95.122976935489746, 29.665148185710812 ], [ -95.123002935274556, 29.665058186133464 ], [ -95.12298593590225, 29.664469186145446 ], [ -95.12295493518603, 29.66373718562334 ], [ -95.122774936103113, 29.663740185303745 ], [ -95.121597935302347, 29.663757185849704 ], [ -95.119065934421187, 29.663791185301154 ], [ -95.118132933954982, 29.663804186062755 ], [ -95.116974934545624, 29.663820185842955 ], [ -95.116841934559346, 29.663822185632494 ], [ -95.116806934219682, 29.663822185888968 ], [ -95.116763933690407, 29.663823185406233 ], [ -95.116289933837308, 29.663857185882609 ], [ -95.114939933214075, 29.663886185924358 ], [ -95.11398393374516, 29.663905186024156 ], [ -95.112891933060567, 29.663887185680693 ], [ -95.112762932968664, 29.663889185634456 ], [ -95.112637933233046, 29.66389218633573 ], [ -95.112016932682465, 29.663907185961293 ], [ -95.110859932547896, 29.663928185771862 ], [ -95.109716932386149, 29.663935186253568 ], [ -95.106599931945794, 29.664025186082302 ], [ -95.105818930928763, 29.664024186235046 ], [ -95.105636931591363, 29.664024186109231 ], [ -95.103564930756789, 29.664022186557407 ], [ -95.102715930399285, 29.664037186577332 ], [ -95.102349930638312, 29.664043185898979 ], [ -95.102130930677987, 29.664047186152285 ], [ -95.100628930364806, 29.664073186703259 ], [ -95.098342929253576, 29.664140186594864 ], [ -95.096780929478655, 29.664165186921441 ], [ -95.095484928575402, 29.664186186930127 ], [ -95.094347928049146, 29.664208186434177 ], [ -95.094166928247304, 29.664222186324356 ], [ -95.093198927691901, 29.664244186250087 ], [ -95.090283927120538, 29.664304186937223 ], [ -95.08712992654003, 29.664381186828638 ], [ -95.086926926350188, 29.66438618695036 ], [ -95.087010926732631, 29.66742018777467 ], [ -95.087053926999104, 29.668981187604796 ], [ -95.087067926605386, 29.669495188053361 ], [ -95.087070926391419, 29.670408187730512 ], [ -95.0870869270789, 29.670690187896916 ], [ -95.087081927296964, 29.670884188088877 ], [ -95.087168926857686, 29.671138188065715 ], [ -95.087343927021934, 29.671726188758754 ], [ -95.087613926757484, 29.672459188701954 ], [ -95.087687927440641, 29.673058188970874 ], [ -95.087695927488085, 29.673476188359761 ], [ -95.08771892711836, 29.67460218933736 ], [ -95.087820927516304, 29.679822190000365 ], [ -95.087982927921047, 29.679820190149844 ], [ -95.092586928964636, 29.679761190034547 ], [ -95.093178929177483, 29.679753189682842 ], [ -95.094567929344294, 29.67973618940152 ], [ -95.098500929986969, 29.679671189401351 ], [ -95.100547931136802, 29.679636189583199 ], [ -95.100655930324294, 29.679635189735301 ], [ -95.101894930757112, 29.67961418967662 ], [ -95.102224931301194, 29.679609189364459 ], [ -95.103348931665622, 29.679590189162127 ], [ -95.104305931493528, 29.679570189386595 ], [ -95.105112931391574, 29.679553189076646 ], [ -95.106568932390431, 29.679525189178243 ], [ -95.106784932465445, 29.679499189126204 ], [ -95.107991932675517, 29.679496189743777 ], [ -95.108788933031093, 29.679490188993775 ], [ -95.109404933152831, 29.679478188860532 ], [ -95.109967932943817, 29.679467188972762 ], [ -95.113124934053559, 29.679374189227818 ], [ -95.114230934427667, 29.679363189280672 ], [ -95.11483993397033, 29.679365189235536 ], [ -95.114966933848933, 29.679365188752886 ], [ -95.11539793480425, 29.679367188987964 ], [ -95.11623193499041, 29.679351188668317 ], [ -95.118179935322615, 29.679286189162649 ], [ -95.1190059350387, 29.679309189318925 ], [ -95.119831936054069, 29.679264188518651 ], [ -95.120440936161827, 29.679245188589384 ], [ -95.120666936151679, 29.679280189309846 ], [ -95.121863936321105, 29.67924718858422 ], [ -95.122276936172, 29.679236189138738 ], [ -95.122635936110527, 29.679228188805283 ], [ -95.123284936898557, 29.679209188852621 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1241, "Tract": "48201312300", "Area_SqMi": 0.54484855819127664, "total_2009": 354, "total_2010": 312, "total_2011": 298, "total_2012": 260, "total_2013": 264, "total_2014": 267, "total_2015": 236, "total_2016": 231, "total_2017": 199, "total_2018": 166, "total_2019": 170, "total_2020": 181, "age1": 24, "age2": 116, "age3": 46, "earn1": 20, "earn2": 58, "earn3": 108, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 8, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 3, "naics_s12": 29, "naics_s13": 0, "naics_s14": 1, "naics_s15": 80, "naics_s16": 6, "naics_s17": 0, "naics_s18": 0, "naics_s19": 58, "naics_s20": 0, "race1": 97, "race2": 73, "race3": 2, "race4": 12, "race5": 0, "race6": 2, "ethnicity1": 125, "ethnicity2": 61, "edu1": 50, "edu2": 49, "edu3": 32, "edu4": 31, "Shape_Length": 15509.986218259113, "Shape_Area": 15189445.28474573, "total_2021": 177, "total_2022": 186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.369092002533904, 29.736831192008204 ], [ -95.368863001821055, 29.736699192199591 ], [ -95.368663002450646, 29.736580192185201 ], [ -95.368390002313959, 29.73642119231565 ], [ -95.3680620016586, 29.736228191858725 ], [ -95.367603001667675, 29.735957192407255 ], [ -95.366742001895943, 29.735469192446107 ], [ -95.365882000752165, 29.734977192343816 ], [ -95.365017000588338, 29.734474191614655 ], [ -95.364155000381118, 29.733950191684141 ], [ -95.363293000084425, 29.733427191470934 ], [ -95.362457999813657, 29.732900191259066 ], [ -95.361616999841758, 29.732413191635171 ], [ -95.360741999220082, 29.731880191241419 ], [ -95.359888999719658, 29.731370191601943 ], [ -95.359465998834651, 29.731102191853953 ], [ -95.359088998758068, 29.730890191036266 ], [ -95.358610999060929, 29.730642191703431 ], [ -95.358204998658152, 29.730446191529929 ], [ -95.35814099922365, 29.730428191660511 ], [ -95.357818998769488, 29.730833191508271 ], [ -95.357650998753357, 29.731091191462188 ], [ -95.357222998887238, 29.731658191510789 ], [ -95.356764998986662, 29.732216191561847 ], [ -95.356306998367515, 29.732785191902167 ], [ -95.355797998494765, 29.733412192254988 ], [ -95.355532998585176, 29.733781192384562 ], [ -95.355377998312022, 29.73403519233721 ], [ -95.355266998151819, 29.734108192129426 ], [ -95.354787998245712, 29.734652192383386 ], [ -95.354326998471578, 29.735282192294786 ], [ -95.353884998545638, 29.735868192308828 ], [ -95.353369998352903, 29.736442193090109 ], [ -95.353089998256507, 29.736797193128229 ], [ -95.35260699749405, 29.737372193088152 ], [ -95.352228997710256, 29.73784419275723 ], [ -95.352163997387464, 29.737927193160107 ], [ -95.351999997822361, 29.73813219342783 ], [ -95.351862997634768, 29.738304193028167 ], [ -95.351796998151599, 29.738386192964462 ], [ -95.351728997417638, 29.738471193026022 ], [ -95.352722997940461, 29.7391151937045 ], [ -95.354955998687586, 29.74055419362228 ], [ -95.355371998911153, 29.740822193545284 ], [ -95.355429998775875, 29.740859193287569 ], [ -95.355556999303843, 29.74094019341247 ], [ -95.356553998593839, 29.741583193888694 ], [ -95.357556999185832, 29.742228193821184 ], [ -95.358434999844832, 29.74276719386804 ], [ -95.359225000046592, 29.743274194122982 ], [ -95.359282000315105, 29.743305193748764 ], [ -95.359550999954067, 29.743420194318915 ], [ -95.36004900031449, 29.743707194048717 ], [ -95.360163000251006, 29.743768194167153 ], [ -95.360288999778675, 29.743830193577754 ], [ -95.360755000664398, 29.744062194226291 ], [ -95.361069000091874, 29.744212193807172 ], [ -95.361215000045689, 29.744271194366974 ], [ -95.362028000685072, 29.744601193898692 ], [ -95.362338000651064, 29.744727194370753 ], [ -95.362691000350097, 29.744870194389442 ], [ -95.362848001053976, 29.744668194381806 ], [ -95.363024000918088, 29.744440193972636 ], [ -95.363439001248437, 29.743922193788372 ], [ -95.363490001052938, 29.743858193962083 ], [ -95.363723000976208, 29.743551193500046 ], [ -95.3640350008952, 29.74313919403011 ], [ -95.364329000945318, 29.742752193235464 ], [ -95.365609001339294, 29.741169193171494 ], [ -95.366089001433252, 29.740587193206707 ], [ -95.367620001776061, 29.738728192628006 ], [ -95.368578001509334, 29.737505192795716 ], [ -95.369092002533904, 29.736831192008204 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1242, "Tract": "48339694304", "Area_SqMi": 6.5009065145403797, "total_2009": 372, "total_2010": 369, "total_2011": 406, "total_2012": 327, "total_2013": 467, "total_2014": 430, "total_2015": 440, "total_2016": 520, "total_2017": 513, "total_2018": 421, "total_2019": 440, "total_2020": 450, "age1": 104, "age2": 227, "age3": 134, "earn1": 86, "earn2": 202, "earn3": 177, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 1, "naics_s06": 19, "naics_s07": 0, "naics_s08": 2, "naics_s09": 0, "naics_s10": 4, "naics_s11": 13, "naics_s12": 53, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 92, "naics_s17": 184, "naics_s18": 2, "naics_s19": 62, "naics_s20": 0, "race1": 372, "race2": 75, "race3": 2, "race4": 8, "race5": 0, "race6": 8, "ethnicity1": 367, "ethnicity2": 98, "edu1": 61, "edu2": 109, "edu3": 118, "edu4": 73, "Shape_Length": 64521.656874481945, "Shape_Area": 181234147.21268713, "total_2021": 430, "total_2022": 465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.670041111015081, 30.425339322011233 ], [ -95.6699771111968, 30.425280322001605 ], [ -95.669895110803864, 30.425243321343764 ], [ -95.669681111164735, 30.425075321366833 ], [ -95.668069110140621, 30.423922321472876 ], [ -95.667042110220976, 30.423791321753633 ], [ -95.664551109314687, 30.423022321043121 ], [ -95.663525108617193, 30.42301732132448 ], [ -95.661328108703231, 30.421998321172744 ], [ -95.659865107730354, 30.420982320985189 ], [ -95.658546107825288, 30.420724321465421 ], [ -95.657079107498404, 30.420716321109357 ], [ -95.655908107252088, 30.420080321219441 ], [ -95.651807106205666, 30.418547321252454 ], [ -95.650491105250637, 30.417658320943225 ], [ -95.64639710418767, 30.413981320550409 ], [ -95.645373104079525, 30.413472320598956 ], [ -95.644700104003576, 30.413468319968796 ], [ -95.638626102577305, 30.413438320624145 ], [ -95.636576101414164, 30.41292332050234 ], [ -95.633791100947974, 30.412531320109991 ], [ -95.630418099882633, 30.412513320524035 ], [ -95.629536100013055, 30.413013320580188 ], [ -95.62557709865294, 30.41299232110967 ], [ -95.620608096999547, 30.408680319855076 ], [ -95.618562096328972, 30.407282320094694 ], [ -95.614748095469167, 30.4072633199333 ], [ -95.609897094670472, 30.410262320538706 ], [ -95.607550094104639, 30.41037632080852 ], [ -95.60578809362697, 30.410871320646386 ], [ -95.596555091545156, 30.410822321024028 ], [ -95.591583089539199, 30.406508320293778 ], [ -95.591435089908273, 30.406885320953126 ], [ -95.59157808971473, 30.40739032114854 ], [ -95.592160089785679, 30.407896321163893 ], [ -95.59215508959727, 30.40890532128725 ], [ -95.592590090564158, 30.40941032118446 ], [ -95.592586090184923, 30.410293321360335 ], [ -95.595928091471279, 30.413330322228479 ], [ -95.595927090968786, 30.413708322300927 ], [ -95.596217091332448, 30.413961321744974 ], [ -95.596210091516156, 30.415348322379003 ], [ -95.596501091943409, 30.415727322216156 ], [ -95.596494091315293, 30.416988322985386 ], [ -95.597073091657535, 30.41812432265305 ], [ -95.597165092752306, 30.429090325077023 ], [ -95.598325092964501, 30.430733325624846 ], [ -95.598322092393275, 30.431363325848295 ], [ -95.59890309341246, 30.431995325772437 ], [ -95.59887809278041, 30.437164326213836 ], [ -95.599995093844797, 30.437162326972604 ], [ -95.602113094461018, 30.437168326918592 ], [ -95.606359095568848, 30.437163326213927 ], [ -95.610087095813171, 30.437133326318843 ], [ -95.610595096056414, 30.437129326401045 ], [ -95.611098095808828, 30.43712232581683 ], [ -95.612977096508473, 30.437096326411361 ], [ -95.614747097665713, 30.43707132644154 ], [ -95.61536609707062, 30.437067325786696 ], [ -95.616020097276632, 30.437067325922108 ], [ -95.616815097435975, 30.437076325807151 ], [ -95.617520098237407, 30.437084325526616 ], [ -95.620666098821005, 30.437066326133891 ], [ -95.622583098949605, 30.437070325709175 ], [ -95.622849098831608, 30.437075325951877 ], [ -95.625037099770296, 30.437076325768558 ], [ -95.626900100074465, 30.437051326019329 ], [ -95.62751810029431, 30.437044325496 ], [ -95.62858410047393, 30.437033325283668 ], [ -95.631132101011644, 30.437005325779889 ], [ -95.635914102207451, 30.436951325516503 ], [ -95.638152102861284, 30.436906325152624 ], [ -95.639844103175975, 30.436873325518885 ], [ -95.642259104696137, 30.436903324816363 ], [ -95.64640810583812, 30.436874324839231 ], [ -95.647028106000263, 30.436870324826007 ], [ -95.647102105803043, 30.436861324422601 ], [ -95.647317105812505, 30.436820324782065 ], [ -95.647478105277557, 30.4367773243779 ], [ -95.648010105652844, 30.436537324533564 ], [ -95.648458105909981, 30.436160324988546 ], [ -95.648946105401194, 30.435254324252622 ], [ -95.649256105788751, 30.434879324193627 ], [ -95.649706105706073, 30.434579324109421 ], [ -95.650267105894216, 30.434401324437893 ], [ -95.653709107465531, 30.434288323960292 ], [ -95.65562710781073, 30.434374324134133 ], [ -95.659472108762074, 30.434380323463014 ], [ -95.661315108862198, 30.434383323563029 ], [ -95.661438108597494, 30.434383323356027 ], [ -95.661543108610601, 30.434389324179705 ], [ -95.661662109035177, 30.434396323725149 ], [ -95.661800109043696, 30.434367324124985 ], [ -95.661945109198527, 30.434333323401933 ], [ -95.662082109453607, 30.434285323841582 ], [ -95.662260109293641, 30.434222324085837 ], [ -95.662413109156773, 30.434159323819603 ], [ -95.662580108867772, 30.434069323482071 ], [ -95.662784109147395, 30.433921323555548 ], [ -95.662906109061453, 30.433779323618147 ], [ -95.663582109267182, 30.432682323418931 ], [ -95.664389109446205, 30.431893323397819 ], [ -95.664601110031029, 30.431700323520367 ], [ -95.664880110037799, 30.431446322758728 ], [ -95.665251110168001, 30.431120323357455 ], [ -95.665485109714737, 30.430892322517504 ], [ -95.665820109924098, 30.430534322767901 ], [ -95.666032110500282, 30.430292323060261 ], [ -95.666488110529428, 30.429720323076968 ], [ -95.669458110266902, 30.426068321570728 ], [ -95.669959111165667, 30.425443321773205 ], [ -95.670041111015081, 30.425339322011233 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1243, "Tract": "48339693202", "Area_SqMi": 3.5777437414999511, "total_2009": 283, "total_2010": 249, "total_2011": 317, "total_2012": 314, "total_2013": 396, "total_2014": 466, "total_2015": 352, "total_2016": 329, "total_2017": 311, "total_2018": 286, "total_2019": 313, "total_2020": 311, "age1": 93, "age2": 180, "age3": 86, "earn1": 53, "earn2": 108, "earn3": 198, "naics_s01": 0, "naics_s02": 3, "naics_s03": 8, "naics_s04": 81, "naics_s05": 12, "naics_s06": 16, "naics_s07": 10, "naics_s08": 2, "naics_s09": 7, "naics_s10": 27, "naics_s11": 15, "naics_s12": 68, "naics_s13": 0, "naics_s14": 5, "naics_s15": 1, "naics_s16": 55, "naics_s17": 10, "naics_s18": 33, "naics_s19": 6, "naics_s20": 0, "race1": 321, "race2": 13, "race3": 3, "race4": 11, "race5": 0, "race6": 11, "ethnicity1": 293, "ethnicity2": 66, "edu1": 42, "edu2": 81, "edu3": 82, "edu4": 61, "Shape_Length": 50875.574595377897, "Shape_Area": 99741372.143407196, "total_2021": 321, "total_2022": 359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.457551048255723, 30.245161292727168 ], [ -95.457592047950783, 30.244962292783789 ], [ -95.457427047552514, 30.244897293042321 ], [ -95.457340047982655, 30.244863292558584 ], [ -95.457062047664422, 30.244753293205523 ], [ -95.456945047277301, 30.244707292385442 ], [ -95.456760047696633, 30.244638292809771 ], [ -95.456412047234423, 30.24471129291512 ], [ -95.456122047757319, 30.244872292531049 ], [ -95.455758047438479, 30.245074292493452 ], [ -95.454676047474123, 30.244984292605515 ], [ -95.454334047612406, 30.245076293009582 ], [ -95.453912047031352, 30.245465293085658 ], [ -95.453701047454729, 30.245969292902746 ], [ -95.453755046797099, 30.246886293586986 ], [ -95.453861046824116, 30.247137293320769 ], [ -95.453888047418516, 30.247802293129148 ], [ -95.453703047598069, 30.248077293507372 ], [ -95.453150046894024, 30.248535294033964 ], [ -95.452464046772079, 30.248627293681967 ], [ -95.451699046098625, 30.248628294048956 ], [ -95.451250046428598, 30.248514293420847 ], [ -95.45093304625064, 30.248239293946448 ], [ -95.45022004593676, 30.247003293244312 ], [ -95.449586045608186, 30.246385293244821 ], [ -95.448636045688204, 30.245767292841634 ], [ -95.448292045610586, 30.245423293583659 ], [ -95.448081045512239, 30.244965293390148 ], [ -95.448080045901889, 30.244118292904162 ], [ -95.448580045957797, 30.243156292677568 ], [ -95.448633045999784, 30.24274329265009 ], [ -95.448448045690029, 30.242377292399624 ], [ -95.448210045899785, 30.242171292215907 ], [ -95.447656044978274, 30.242057292989664 ], [ -95.445730045034182, 30.24205829256092 ], [ -95.444860044793259, 30.24226529229912 ], [ -95.444174043902066, 30.242311293112692 ], [ -95.443725043922171, 30.242128292965802 ], [ -95.443223044599264, 30.241602292494242 ], [ -95.442985044491479, 30.240777292734393 ], [ -95.442721044283516, 30.240525292015825 ], [ -95.442299044276467, 30.240388292633099 ], [ -95.440716043604823, 30.240527292601755 ], [ -95.440057042812725, 30.240344292496282 ], [ -95.439370042640689, 30.239978292235104 ], [ -95.438737043127034, 30.239428292188148 ], [ -95.437390042863456, 30.237803292364408 ], [ -95.436678041772225, 30.237735292120107 ], [ -95.436414042050473, 30.237872291811691 ], [ -95.436282042508793, 30.238147292055181 ], [ -95.436072042296772, 30.23899529206394 ], [ -95.435677042191699, 30.239591292585992 ], [ -95.435123041582798, 30.239705292198067 ], [ -95.435076042269031, 30.239682292287743 ], [ -95.43451604187662, 30.239408292055085 ], [ -95.4341730421785, 30.239088292321938 ], [ -95.434040041755338, 30.238744292759336 ], [ -95.434014041510963, 30.238286292006165 ], [ -95.434198041895598, 30.23757629208319 ], [ -95.434144041253262, 30.236637291994576 ], [ -95.43440804171064, 30.235926291870303 ], [ -95.434460041660188, 30.235445291974035 ], [ -95.434222041763519, 30.235010291188523 ], [ -95.433747041564729, 30.234621291906986 ], [ -95.432639041293427, 30.234026291193214 ], [ -95.432164041187036, 30.233637291300479 ], [ -95.432084040526448, 30.23343129105135 ], [ -95.432084040568199, 30.232904290983321 ], [ -95.432427040414382, 30.232766291039155 ], [ -95.432901041058756, 30.232377290844404 ], [ -95.432874040602982, 30.231827290755042 ], [ -95.432742041209849, 30.231529291125792 ], [ -95.432505040636883, 30.231277291204513 ], [ -95.432267041285186, 30.231163291142842 ], [ -95.430948040609351, 30.231049290538852 ], [ -95.429972039766739, 30.231325291238168 ], [ -95.42947103985513, 30.231646291166705 ], [ -95.429392040576104, 30.231875290856369 ], [ -95.429709040110552, 30.232333291075289 ], [ -95.42968304035621, 30.23281429117079 ], [ -95.429446040491911, 30.233180291056993 ], [ -95.429525040411647, 30.233364291496962 ], [ -95.430053040236842, 30.233455291578164 ], [ -95.430211040546794, 30.233684291060065 ], [ -95.430212040230927, 30.234028291416884 ], [ -95.430133040489139, 30.234142291918694 ], [ -95.429447040633633, 30.234257291366884 ], [ -95.429351039906166, 30.234608291322395 ], [ -95.429315040099866, 30.234738291338449 ], [ -95.428935040504854, 30.234918291960234 ], [ -95.428735040181365, 30.235013291368873 ], [ -95.427607039944292, 30.235100291733048 ], [ -95.427522039835239, 30.235106291678818 ], [ -95.427311039524753, 30.235197291483356 ], [ -95.426546039227887, 30.235266291517419 ], [ -95.426203039659327, 30.235862291706329 ], [ -95.425412038946945, 30.236710292353045 ], [ -95.425202039216543, 30.237214292758949 ], [ -95.425176039727859, 30.237604292431257 ], [ -95.4249910396953, 30.237879292238141 ], [ -95.424516038786692, 30.238062292440983 ], [ -95.424200038997228, 30.238566292238293 ], [ -95.423831038650633, 30.238887292400754 ], [ -95.423251038815451, 30.239025293209874 ], [ -95.423277038840084, 30.239231292829963 ], [ -95.423594039279024, 30.239460293049415 ], [ -95.423594038962662, 30.239666293282284 ], [ -95.42314603862026, 30.240216292942829 ], [ -95.423225038517543, 30.240720293454689 ], [ -95.422751038800513, 30.24122429290621 ], [ -95.422778039021637, 30.241591293405484 ], [ -95.422854038597549, 30.241701293778991 ], [ -95.422856039062736, 30.241727293791168 ], [ -95.422778039193162, 30.243171293969702 ], [ -95.42309503917609, 30.24353729402522 ], [ -95.423175039070998, 30.243812294114832 ], [ -95.423123038750447, 30.244912294299457 ], [ -95.422885039557698, 30.245278294385653 ], [ -95.422200039192887, 30.245622294131099 ], [ -95.421303038919561, 30.245485294326766 ], [ -95.420907038570874, 30.245554294293751 ], [ -95.420276038511588, 30.245920293950903 ], [ -95.419957037930971, 30.246105294781358 ], [ -95.419905038402831, 30.246586294274525 ], [ -95.420327038360725, 30.247112294340432 ], [ -95.420433038809776, 30.247387294702513 ], [ -95.420328038803888, 30.247616294883667 ], [ -95.419800038405, 30.24784529473154 ], [ -95.419668038771306, 30.24800629444572 ], [ -95.419695038024102, 30.248418295068358 ], [ -95.419774038610612, 30.24848729489349 ], [ -95.419748038854479, 30.249105294762305 ], [ -95.420039038146882, 30.249266295006606 ], [ -95.42059303860907, 30.249494295173022 ], [ -95.420778038909177, 30.249769295474298 ], [ -95.420804038913417, 30.249952295444601 ], [ -95.420989038542444, 30.250227295346537 ], [ -95.421362038596968, 30.25060829481356 ], [ -95.421481039133084, 30.251065295532999 ], [ -95.42357003945493, 30.251297294988124 ], [ -95.424221039170675, 30.251262295267765 ], [ -95.425123040384349, 30.251044295345235 ], [ -95.427975041511957, 30.259960296675711 ], [ -95.429397042100561, 30.264416297473584 ], [ -95.429677041925402, 30.265291298287714 ], [ -95.430534042131868, 30.267961298118209 ], [ -95.431614042781703, 30.271327299460818 ], [ -95.435537043929799, 30.270372298431734 ], [ -95.437303043463046, 30.269937298700398 ], [ -95.439274044359706, 30.269461298000092 ], [ -95.439665044652855, 30.269334298164953 ], [ -95.439914044462071, 30.269227298371757 ], [ -95.440155044759962, 30.269107298493381 ], [ -95.440354044418953, 30.268992298035432 ], [ -95.44086904447029, 30.268639298156085 ], [ -95.441388045103949, 30.268298297700785 ], [ -95.441580044697872, 30.268133297862917 ], [ -95.44168904524463, 30.268045298160569 ], [ -95.441837045406203, 30.267908297569697 ], [ -95.442026044692341, 30.267792297694552 ], [ -95.442259045299991, 30.267628297848052 ], [ -95.442619045673823, 30.267401297600852 ], [ -95.442900044892767, 30.267243297908646 ], [ -95.443047045194021, 30.267165297550111 ], [ -95.443196045037695, 30.26709229816278 ], [ -95.443648045660197, 30.266881298043284 ], [ -95.44395504590733, 30.266751297336739 ], [ -95.444111045942137, 30.266692297918123 ], [ -95.446335046189489, 30.265890297507749 ], [ -95.447715046692394, 30.265436296930528 ], [ -95.448366047006459, 30.265293297387377 ], [ -95.448962046568283, 30.265260296978401 ], [ -95.450311046616491, 30.265300296725385 ], [ -95.45156604698046, 30.265359297342044 ], [ -95.455355048464753, 30.265389297267948 ], [ -95.455917048237239, 30.265391297383079 ], [ -95.456073048936943, 30.265392296730923 ], [ -95.456217048626016, 30.26539329691148 ], [ -95.45636304821106, 30.265393297260367 ], [ -95.456675048692873, 30.265393296621482 ], [ -95.456965048425388, 30.265388297065531 ], [ -95.456955048777161, 30.264179296415449 ], [ -95.456922048736985, 30.26276029673631 ], [ -95.456928048598698, 30.26231129657085 ], [ -95.45696704858041, 30.260879296104733 ], [ -95.45698804860794, 30.258320295132584 ], [ -95.456995048904588, 30.257987295227721 ], [ -95.456967047968092, 30.256092295017901 ], [ -95.456976048704846, 30.255888294663283 ], [ -95.456975048449578, 30.25575029534183 ], [ -95.456985048320519, 30.255525295114701 ], [ -95.45699104853162, 30.255394294615161 ], [ -95.457001048530188, 30.25482829520789 ], [ -95.45705204863296, 30.252215294022516 ], [ -95.457049048070672, 30.252105293885304 ], [ -95.45704304778323, 30.25140629455057 ], [ -95.457041048426021, 30.251192294525183 ], [ -95.457022048179695, 30.25057429417015 ], [ -95.457019048015297, 30.250396294170319 ], [ -95.457011047956129, 30.249180293421116 ], [ -95.457059047605014, 30.247864293069256 ], [ -95.457153047726806, 30.247017293361207 ], [ -95.457551048255723, 30.245161292727168 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1244, "Tract": "48339693103", "Area_SqMi": 1.0764666947973554, "total_2009": 418, "total_2010": 488, "total_2011": 912, "total_2012": 345, "total_2013": 333, "total_2014": 327, "total_2015": 295, "total_2016": 238, "total_2017": 270, "total_2018": 260, "total_2019": 244, "total_2020": 309, "age1": 64, "age2": 181, "age3": 65, "earn1": 37, "earn2": 73, "earn3": 200, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 114, "naics_s06": 32, "naics_s07": 50, "naics_s08": 0, "naics_s09": 45, "naics_s10": 7, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 21, "naics_s17": 0, "naics_s18": 9, "naics_s19": 8, "naics_s20": 2, "race1": 254, "race2": 28, "race3": 3, "race4": 20, "race5": 1, "race6": 4, "ethnicity1": 195, "ethnicity2": 115, "edu1": 64, "edu2": 55, "edu3": 68, "edu4": 59, "Shape_Length": 23717.994236847739, "Shape_Area": 30010049.059788991, "total_2021": 301, "total_2022": 310 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.455894050188576, 30.297109303654658 ], [ -95.455905050064885, 30.295041302815363 ], [ -95.455688049676425, 30.295077302984783 ], [ -95.453610049684329, 30.295605302798887 ], [ -95.453008049124207, 30.295771303476684 ], [ -95.452700048677855, 30.295898303515809 ], [ -95.452598049391995, 30.295958303616825 ], [ -95.452483048644922, 30.296046303422848 ], [ -95.452366049318101, 30.296175303027699 ], [ -95.452259049208095, 30.296304303212157 ], [ -95.452144049197045, 30.296505302989971 ], [ -95.452079048813772, 30.2966933034246 ], [ -95.452027049008692, 30.296843303780904 ], [ -95.451931048753181, 30.297170303121259 ], [ -95.45187804898849, 30.297387303588678 ], [ -95.451783049288949, 30.297593303258811 ], [ -95.451691048390387, 30.297750303657732 ], [ -95.451486049248089, 30.29795930378376 ], [ -95.451407048483546, 30.298031303315454 ], [ -95.451153048451374, 30.298173303452124 ], [ -95.450911048509923, 30.298274304105039 ], [ -95.450003048218903, 30.298544304228773 ], [ -95.448802048323074, 30.298840304107493 ], [ -95.447504048334096, 30.299172303918876 ], [ -95.44631304743595, 30.299462304068548 ], [ -95.445234047592791, 30.299723304047244 ], [ -95.444804047734664, 30.299827304369241 ], [ -95.443801047296986, 30.300067304285552 ], [ -95.441646046171314, 30.300596305022236 ], [ -95.437913046017229, 30.30157530507007 ], [ -95.437913046020185, 30.301979305005919 ], [ -95.438154045462397, 30.302292305498671 ], [ -95.438178046147456, 30.302322305501704 ], [ -95.43817804592527, 30.302758305122385 ], [ -95.438072045877604, 30.302895304929606 ], [ -95.438125045646586, 30.303193305205852 ], [ -95.438627045603454, 30.303674304998772 ], [ -95.438755045501267, 30.303937305716151 ], [ -95.438839045969758, 30.30410930507362 ], [ -95.439552046447233, 30.304612305151501 ], [ -95.439502045698433, 30.30533030551312 ], [ -95.43949704634646, 30.305402306084645 ], [ -95.439485046142778, 30.305572305951131 ], [ -95.439447045886141, 30.306124305948302 ], [ -95.439263045753606, 30.306628306114035 ], [ -95.43931604607296, 30.307705306504857 ], [ -95.438763046184818, 30.309308306769399 ], [ -95.438896045971987, 30.310224306348601 ], [ -95.439107046273364, 30.310728306822202 ], [ -95.439425046103636, 30.311072307167404 ], [ -95.440111046254188, 30.311392306509116 ], [ -95.440313047085382, 30.311553306841066 ], [ -95.440428046397628, 30.311644307327885 ], [ -95.440414046994903, 30.312141307387751 ], [ -95.44040204710663, 30.312560307545464 ], [ -95.440007047125945, 30.312995307300085 ], [ -95.439875046728844, 30.313293307280794 ], [ -95.439833046375611, 30.31421030730608 ], [ -95.439816046169142, 30.314557307940134 ], [ -95.439771046366189, 30.315538307840875 ], [ -95.439956047148002, 30.315882307912734 ], [ -95.440025046786587, 30.315952307545611 ], [ -95.440226047060392, 30.316157307818298 ], [ -95.440274046833736, 30.316137308254554 ], [ -95.441146047569916, 30.315797307598739 ], [ -95.441349046927414, 30.315723307449787 ], [ -95.441717047360157, 30.315600307466749 ], [ -95.442647046954846, 30.315328307972344 ], [ -95.442859047362987, 30.315276307968372 ], [ -95.443183047876246, 30.315210307414127 ], [ -95.443401047497829, 30.315175307632373 ], [ -95.443838048194223, 30.315126307654481 ], [ -95.444467048070038, 30.315046307032365 ], [ -95.444850048480646, 30.3150043071266 ], [ -95.445146047628072, 30.314976307815517 ], [ -95.446904048253145, 30.31478830722331 ], [ -95.449257048655809, 30.314537306917927 ], [ -95.449531048780614, 30.314522306787406 ], [ -95.450479049875199, 30.314079306899284 ], [ -95.451545049313424, 30.313648306933061 ], [ -95.452688049442614, 30.313186306331218 ], [ -95.453834049872043, 30.312721306791737 ], [ -95.454969050621301, 30.312247306753559 ], [ -95.45520705001536, 30.312193306584298 ], [ -95.455540050811464, 30.312191306853634 ], [ -95.455827050981668, 30.312175306715083 ], [ -95.455854050160639, 30.310067305628362 ], [ -95.455818050931228, 30.309527305581941 ], [ -95.455848050772076, 30.307113305043366 ], [ -95.45588404999927, 30.304764304687126 ], [ -95.455875049571461, 30.300246304163363 ], [ -95.455891050441082, 30.298180304057372 ], [ -95.455894050188576, 30.297109303654658 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1245, "Tract": "48339690701", "Area_SqMi": 4.04274275715761, "total_2009": 1697, "total_2010": 1570, "total_2011": 2062, "total_2012": 2258, "total_2013": 2391, "total_2014": 2381, "total_2015": 2553, "total_2016": 2498, "total_2017": 2687, "total_2018": 2853, "total_2019": 2794, "total_2020": 2486, "age1": 1015, "age2": 1380, "age3": 540, "earn1": 729, "earn2": 1207, "earn3": 999, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 39, "naics_s06": 23, "naics_s07": 949, "naics_s08": 0, "naics_s09": 0, "naics_s10": 49, "naics_s11": 16, "naics_s12": 89, "naics_s13": 0, "naics_s14": 123, "naics_s15": 99, "naics_s16": 712, "naics_s17": 13, "naics_s18": 691, "naics_s19": 109, "naics_s20": 0, "race1": 2186, "race2": 465, "race3": 24, "race4": 195, "race5": 7, "race6": 58, "ethnicity1": 2076, "ethnicity2": 859, "edu1": 407, "edu2": 482, "edu3": 594, "edu4": 437, "Shape_Length": 50001.612993549024, "Shape_Area": 112704748.84617355, "total_2021": 2572, "total_2022": 2935 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.480625053550469, 30.235072289866217 ], [ -95.480643053217733, 30.234829289595801 ], [ -95.48062405364449, 30.233624289443505 ], [ -95.480626053583379, 30.233564290073577 ], [ -95.480619052923657, 30.233484290021035 ], [ -95.480593053213951, 30.230236288690673 ], [ -95.480584053549009, 30.230045288562707 ], [ -95.480590052934645, 30.229203288674935 ], [ -95.480592053073124, 30.226149288351159 ], [ -95.480536052931853, 30.219675287174688 ], [ -95.480500052771191, 30.21603828571595 ], [ -95.480496051957175, 30.215520286357989 ], [ -95.480464052932504, 30.215515285652781 ], [ -95.480466052177874, 30.215127286119472 ], [ -95.480466052015601, 30.214638285485446 ], [ -95.480455052200099, 30.214161285566153 ], [ -95.480432052019225, 30.21230828521638 ], [ -95.480432052577854, 30.211511284977533 ], [ -95.480409052025806, 30.209920285070737 ], [ -95.480403052235033, 30.208965284611089 ], [ -95.480379052264695, 30.207466284710975 ], [ -95.480016051924949, 30.205539283853511 ], [ -95.480015051707397, 30.205271283704512 ], [ -95.479994051143947, 30.201322283286345 ], [ -95.479992051813184, 30.200878283093445 ], [ -95.479887051450149, 30.199717282898174 ], [ -95.479783051955181, 30.198567282609513 ], [ -95.479352050928583, 30.193798281566906 ], [ -95.479950050910318, 30.19138928071245 ], [ -95.479542050928288, 30.19127228123202 ], [ -95.479147050788072, 30.190997281331889 ], [ -95.478487050998012, 30.190906280760551 ], [ -95.477775050954904, 30.190678281073119 ], [ -95.477142050254173, 30.190610281334195 ], [ -95.476853050737006, 30.19049228105758 ], [ -95.475418049988875, 30.19051228092512 ], [ -95.473514049971143, 30.190525281347409 ], [ -95.473552049205608, 30.192248281211235 ], [ -95.473170049074511, 30.192252281155497 ], [ -95.472888049784871, 30.192255281705904 ], [ -95.469009048164665, 30.192303281902358 ], [ -95.466247047202003, 30.192337282100343 ], [ -95.466266047930731, 30.193485282216137 ], [ -95.466266047804737, 30.193763281721854 ], [ -95.466269047550782, 30.194959282362152 ], [ -95.466332047763217, 30.197046282641459 ], [ -95.466303048201297, 30.197166282975125 ], [ -95.466297047719038, 30.197271282791217 ], [ -95.466302048349206, 30.197369282788607 ], [ -95.464124047220011, 30.197307282562306 ], [ -95.463460047488397, 30.197394282585279 ], [ -95.462798047097507, 30.197457282792556 ], [ -95.462019047014337, 30.197513282941877 ], [ -95.460619046336106, 30.197556282789005 ], [ -95.460148046728079, 30.197632283375778 ], [ -95.45983904598161, 30.197709283523885 ], [ -95.459498046663825, 30.197805282894443 ], [ -95.458889045846831, 30.197976283146243 ], [ -95.458404045788924, 30.198080283312006 ], [ -95.458206045707215, 30.198109283674899 ], [ -95.458002045472909, 30.198122283221952 ], [ -95.457819045561223, 30.198108283363947 ], [ -95.457624045247528, 30.198082283549148 ], [ -95.456283045573315, 30.197824283123289 ], [ -95.45605404566183, 30.197789283111188 ], [ -95.455776045591307, 30.197757282940913 ], [ -95.45519404507489, 30.197759283385416 ], [ -95.455164045600455, 30.197626282944785 ], [ -95.454434045237733, 30.194422282863613 ], [ -95.454642045262489, 30.197059283139055 ], [ -95.454780044646995, 30.197755283459099 ], [ -95.45522204567655, 30.199978283883016 ], [ -95.455623045048952, 30.201837284408917 ], [ -95.455867045080254, 30.203026284155637 ], [ -95.455973045543089, 30.20382828448539 ], [ -95.456062045813468, 30.20449528489041 ], [ -95.456075045798229, 30.204612285110422 ], [ -95.456133045826505, 30.205124284914969 ], [ -95.456287045892168, 30.20687628507169 ], [ -95.456308045839975, 30.207117285162912 ], [ -95.45631904605149, 30.207236284865377 ], [ -95.456342045827341, 30.207495285675549 ], [ -95.456353046058652, 30.207597284868751 ], [ -95.45636604555115, 30.207752284846183 ], [ -95.456545045497734, 30.209809285846383 ], [ -95.456721046674389, 30.21182628618698 ], [ -95.456723045935163, 30.211845285964852 ], [ -95.456778046236948, 30.212486286189439 ], [ -95.456931046372119, 30.214187286285647 ], [ -95.457420046380449, 30.219620288097527 ], [ -95.457449046803703, 30.219942288009122 ], [ -95.457517047193477, 30.22079628811764 ], [ -95.457564047290319, 30.221384287641513 ], [ -95.45774404741195, 30.223633288818522 ], [ -95.458010046779918, 30.226387288889125 ], [ -95.45806104703523, 30.226919289104256 ], [ -95.458078047677489, 30.227095289200697 ], [ -95.458256047579582, 30.228846289537106 ], [ -95.458336047312869, 30.229710289618758 ], [ -95.458692047241101, 30.233534290005476 ], [ -95.458770048086905, 30.234402290243615 ], [ -95.45886504763908, 30.235326291047343 ], [ -95.458846047850045, 30.236038291163734 ], [ -95.458811047805881, 30.236746290982264 ], [ -95.459028047632174, 30.236741291510263 ], [ -95.459194048474075, 30.236739290687389 ], [ -95.460024048180074, 30.236729290608153 ], [ -95.460811048319258, 30.236719291436813 ], [ -95.461259048805331, 30.23671329071362 ], [ -95.461578048424968, 30.236709290953947 ], [ -95.461772048353836, 30.236708290779418 ], [ -95.463897049289002, 30.2366922906163 ], [ -95.464950049132014, 30.236684290715075 ], [ -95.466427050218371, 30.236673290792023 ], [ -95.467217049837302, 30.236667290357261 ], [ -95.468339050330883, 30.23665329034262 ], [ -95.468475050825106, 30.236651290823708 ], [ -95.468747050634306, 30.236658290903524 ], [ -95.468803050761949, 30.236657290316625 ], [ -95.469240050206636, 30.236648290553578 ], [ -95.469350050617336, 30.236646290658268 ], [ -95.469556050785144, 30.236649290539475 ], [ -95.469661050572597, 30.236643290297682 ], [ -95.469762051071598, 30.236643290470603 ], [ -95.46996905045502, 30.236632290309458 ], [ -95.470281050379157, 30.236602290554757 ], [ -95.470744051106252, 30.236540290995364 ], [ -95.47093905079106, 30.236515290364562 ], [ -95.47117405096391, 30.236485290190281 ], [ -95.475520052183228, 30.23585929003276 ], [ -95.478108052510507, 30.235454289911377 ], [ -95.478726052760976, 30.235360289922774 ], [ -95.479440052868725, 30.235251289840871 ], [ -95.480280053031052, 30.235122290126185 ], [ -95.480398052992314, 30.235104289788886 ], [ -95.480625053550469, 30.235072289866217 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1246, "Tract": "48339691402", "Area_SqMi": 2.9137858005731609, "total_2009": 571, "total_2010": 147, "total_2011": 167, "total_2012": 424, "total_2013": 448, "total_2014": 455, "total_2015": 763, "total_2016": 958, "total_2017": 1055, "total_2018": 1193, "total_2019": 1244, "total_2020": 1333, "age1": 209, "age2": 930, "age3": 271, "earn1": 82, "earn2": 198, "earn3": 1130, "naics_s01": 0, "naics_s02": 36, "naics_s03": 0, "naics_s04": 41, "naics_s05": 407, "naics_s06": 47, "naics_s07": 27, "naics_s08": 0, "naics_s09": 10, "naics_s10": 35, "naics_s11": 51, "naics_s12": 354, "naics_s13": 0, "naics_s14": 165, "naics_s15": 7, "naics_s16": 70, "naics_s17": 2, "naics_s18": 4, "naics_s19": 154, "naics_s20": 0, "race1": 1088, "race2": 184, "race3": 19, "race4": 94, "race5": 5, "race6": 20, "ethnicity1": 1062, "ethnicity2": 348, "edu1": 170, "edu2": 294, "edu3": 379, "edu4": 358, "Shape_Length": 45841.131545248187, "Shape_Area": 81231361.125741288, "total_2021": 1172, "total_2022": 1410 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.489090050009153, 30.115767265542647 ], [ -95.489152049855448, 30.11350026540423 ], [ -95.488862049541197, 30.113362264693759 ], [ -95.488594049243773, 30.113117265004483 ], [ -95.488406049359384, 30.11291726465733 ], [ -95.487666049781268, 30.110198264620323 ], [ -95.487230049416127, 30.10858526445465 ], [ -95.487273049476627, 30.107983264031365 ], [ -95.487215049081996, 30.108000264393851 ], [ -95.487132049546418, 30.107995264033036 ], [ -95.486936049149065, 30.107918264062302 ], [ -95.486848049117768, 30.107907263706853 ], [ -95.486595049080819, 30.107929264025739 ], [ -95.486443049430434, 30.107902264412846 ], [ -95.4861780490603, 30.107825263687591 ], [ -95.486095048962412, 30.107819263561275 ], [ -95.485823049218638, 30.107825264009971 ], [ -95.485444048966713, 30.107781263924235 ], [ -95.485400048874439, 30.107781263756291 ], [ -95.485318048857437, 30.107803264246733 ], [ -95.485280048947487, 30.107825264006831 ], [ -95.485160048726044, 30.107847263962906 ], [ -95.484894048615828, 30.107924263807821 ], [ -95.48462204889907, 30.107935263684571 ], [ -95.484344048751225, 30.107903263716793 ], [ -95.484268048363404, 30.107881263918834 ], [ -95.483990048020573, 30.107738264058902 ], [ -95.483895048232597, 30.107710263608915 ], [ -95.483598048369842, 30.10765026413285 ], [ -95.483433048508587, 30.10757326365281 ], [ -95.483383047832902, 30.107529264358135 ], [ -95.483319047817631, 30.107452264166941 ], [ -95.483288048272129, 30.10731526362029 ], [ -95.483231048472319, 30.107194263738371 ], [ -95.483167048513678, 30.107133263602822 ], [ -95.483117048195155, 30.10709526425692 ], [ -95.483079047889845, 30.107078263944491 ], [ -95.482971048053784, 30.107051263977379 ], [ -95.482801048075885, 30.107062263566359 ], [ -95.48273704781576, 30.107090264024915 ], [ -95.482649047803761, 30.107145264203236 ], [ -95.48256004771153, 30.107222263638491 ], [ -95.482440047760988, 30.10728826428894 ], [ -95.482339047566413, 30.107332264357165 ], [ -95.482289048016256, 30.107337264214436 ], [ -95.482150047585804, 30.107266263595569 ], [ -95.482124047983802, 30.107238263676653 ], [ -95.482055047909526, 30.107134263557466 ], [ -95.482017047401186, 30.106947264047179 ], [ -95.481972047818005, 30.106815264232516 ], [ -95.481928047398142, 30.106623263786577 ], [ -95.481852047721375, 30.106518263599693 ], [ -95.481801047824817, 30.106485263804466 ], [ -95.481479047286854, 30.106326264172004 ], [ -95.481397047818263, 30.106298263604259 ], [ -95.481295047201229, 30.106282264101331 ], [ -95.481024047338607, 30.106211263901923 ], [ -95.480745047597338, 30.10610626372485 ], [ -95.48065704719356, 30.106062263422174 ], [ -95.480581047369313, 30.106013263916896 ], [ -95.48052404699277, 30.105941264110992 ], [ -95.480429046848627, 30.105777263330573 ], [ -95.48039104712899, 30.105727263705731 ], [ -95.48034004694253, 30.10568326410494 ], [ -95.480283047156433, 30.10566126381017 ], [ -95.480163047141303, 30.105672263691972 ], [ -95.480094046776728, 30.105700263792034 ], [ -95.479942046874513, 30.105876264199072 ], [ -95.479917047327717, 30.105958264056564 ], [ -95.479917047685646, 30.106035263958795 ], [ -95.479930047217636, 30.106107263838293 ], [ -95.479923047559524, 30.106255263532102 ], [ -95.479911046821258, 30.106316264087528 ], [ -95.479866046906039, 30.106382263669534 ], [ -95.479803047146589, 30.106426263832557 ], [ -95.479740047478629, 30.106453263795871 ], [ -95.479652047250269, 30.106453264195324 ], [ -95.479576046600485, 30.106426264328565 ], [ -95.479506047326552, 30.106387263470229 ], [ -95.479462046695929, 30.106299264032614 ], [ -95.47945504699689, 30.106261263595393 ], [ -95.479455047164507, 30.106123263973302 ], [ -95.479500047028566, 30.105953263431729 ], [ -95.479500047175719, 30.10588126358434 ], [ -95.479487046563037, 30.105821263746073 ], [ -95.479417046714318, 30.105672263448518 ], [ -95.479272046722642, 30.105425264098901 ], [ -95.47922704704888, 30.105277263904888 ], [ -95.479215046766853, 30.105183263670337 ], [ -95.479221047180715, 30.104919263574864 ], [ -95.479214046600276, 30.104892263197257 ], [ -95.479240047365963, 30.104782263163006 ], [ -95.479214046919751, 30.104749263442528 ], [ -95.479170047042857, 30.104738263794498 ], [ -95.479113046921952, 30.104738263209232 ], [ -95.478683046372154, 30.104859263882258 ], [ -95.47815204696991, 30.105096263698162 ], [ -95.478020046659097, 30.105107263246218 ], [ -95.477931046451872, 30.105079263963109 ], [ -95.477805047089831, 30.105008263420519 ], [ -95.477760046085322, 30.10496426379202 ], [ -95.477729046371323, 30.104914263500152 ], [ -95.477640046767021, 30.104612263615817 ], [ -95.477558046527989, 30.104508263341433 ], [ -95.477463046092566, 30.104420263795593 ], [ -95.477229046510999, 30.104365263951465 ], [ -95.477134046595452, 30.104365263395152 ], [ -95.476995046364891, 30.104387263677605 ], [ -95.476919046681161, 30.104376263344665 ], [ -95.476837046459664, 30.104354263562897 ], [ -95.476687045951167, 30.104251263547344 ], [ -95.47665304653718, 30.10422826321647 ], [ -95.476571045816016, 30.104200263182218 ], [ -95.476272046217133, 30.104140263260781 ], [ -95.475996046396773, 30.104085263497293 ], [ -95.475768045731499, 30.104008263677564 ], [ -95.475680046470956, 30.103948263423835 ], [ -95.475635046202484, 30.103898263878342 ], [ -95.475589046201094, 30.103831263174545 ], [ -95.475572045956255, 30.103805263123402 ], [ -95.475509046262673, 30.103651263398145 ], [ -95.475465046253447, 30.103590263692251 ], [ -95.475408046372522, 30.10354626368699 ], [ -95.475174045663763, 30.103486263685397 ], [ -95.47511004616851, 30.10345326341502 ], [ -95.474851046014322, 30.103261263776069 ], [ -95.474756045416015, 30.103233263846679 ], [ -95.474661045507162, 30.103228263257446 ], [ -95.474598045904827, 30.10323926333475 ], [ -95.474491045871176, 30.103294263758666 ], [ -95.474447045804624, 30.103398263090234 ], [ -95.474466045248036, 30.103596263745217 ], [ -95.474466045560021, 30.103717263477723 ], [ -95.474428045171294, 30.1037892635538 ], [ -95.474377045606332, 30.10384426373319 ], [ -95.47431404544416, 30.103882264011055 ], [ -95.474244045475871, 30.103904263735991 ], [ -95.474175045744403, 30.103893263964814 ], [ -95.47411804529014, 30.10384426332957 ], [ -95.474067045614788, 30.103783263727681 ], [ -95.473934045046605, 30.103536263108229 ], [ -95.473903045341729, 30.103508263934195 ], [ -95.473852045199138, 30.103492263899447 ], [ -95.473808045800752, 30.103492263519307 ], [ -95.473757045896207, 30.103509263879271 ], [ -95.473498044939575, 30.103679263535394 ], [ -95.473378044951616, 30.103800263261213 ], [ -95.473334045089999, 30.103860263489274 ], [ -95.473283045900047, 30.103998263440864 ], [ -95.473258045733019, 30.104108263492925 ], [ -95.473264045823242, 30.104157263542877 ], [ -95.473321045136814, 30.104322263275975 ], [ -95.473334044964844, 30.104394263976548 ], [ -95.473328045932718, 30.104416263959116 ], [ -95.473208045588692, 30.104559263795228 ], [ -95.473170045537046, 30.104592263943907 ], [ -95.473094045359815, 30.104625263791505 ], [ -95.473037045208457, 30.104625263336604 ], [ -95.472999045312207, 30.104608263712823 ], [ -95.472911045057813, 30.10451526389458 ], [ -95.472885045274353, 30.104443263314948 ], [ -95.47283504507385, 30.104388263368222 ], [ -95.472771045538238, 30.104339263590415 ], [ -95.472708044802104, 30.104306264011864 ], [ -95.472487045478402, 30.104103263712684 ], [ -95.472398044889104, 30.104009263435277 ], [ -95.472373045267361, 30.103960263997465 ], [ -95.472354045259209, 30.103872263495695 ], [ -95.47237304474605, 30.103657263618441 ], [ -95.472366045443906, 30.103564263788449 ], [ -95.472297045469659, 30.103471263752887 ], [ -95.472253044863308, 30.103432263216401 ], [ -95.472139045007523, 30.103383263600392 ], [ -95.471987044697556, 30.103366263688134 ], [ -95.471898044667441, 30.103372263479226 ], [ -95.471721044588293, 30.103454263891599 ], [ -95.471089044513505, 30.103718263258294 ], [ -95.470938044963518, 30.103790263464486 ], [ -95.47083604481665, 30.103878263640858 ], [ -95.470773044599639, 30.103949263641134 ], [ -95.470697044596477, 30.10401026343494 ], [ -95.470628044424004, 30.104043263320989 ], [ -95.470577045077277, 30.104048264150663 ], [ -95.47050804489524, 30.104043263462916 ], [ -95.470280044791636, 30.103971263335996 ], [ -95.470204044951757, 30.10396026368851 ], [ -95.470154044828263, 30.103977263674878 ], [ -95.470078044362751, 30.104016263719171 ], [ -95.469781044720193, 30.104279263747621 ], [ -95.469673044511097, 30.104406264016141 ], [ -95.469623044672574, 30.104494263879371 ], [ -95.469541044416573, 30.104582263811711 ], [ -95.469465044776499, 30.104620263526641 ], [ -95.469382043953985, 30.104631264027923 ], [ -95.469332044303371, 30.10460926410158 ], [ -95.469237044726086, 30.104527264084759 ], [ -95.469193044130563, 30.104472264130838 ], [ -95.469104043950523, 30.104296264108299 ], [ -95.469047044767208, 30.104225263710614 ], [ -95.468990044003988, 30.104192263769672 ], [ -95.468921044220693, 30.104186264070346 ], [ -95.468839044680337, 30.104192264281153 ], [ -95.468592044700827, 30.104280263660655 ], [ -95.468409044170997, 30.104318264054996 ], [ -95.468327044473881, 30.104307263715405 ], [ -95.46820604461918, 30.104263263803578 ], [ -95.468156043675535, 30.104219263985168 ], [ -95.468074044565, 30.104120264068381 ], [ -95.468029044557269, 30.103956263887891 ], [ -95.468016044261745, 30.103774263691523 ], [ -95.468004044096958, 30.1037522640598 ], [ -95.467966044058954, 30.103708263490656 ], [ -95.467858043742851, 30.103648263304446 ], [ -95.467719043524767, 30.103604263915233 ], [ -95.467656043783819, 30.103571263737258 ], [ -95.467549044375644, 30.10348826398026 ], [ -95.46747904347022, 30.103461263996362 ], [ -95.46732104389946, 30.103467263980274 ], [ -95.467213044239102, 30.103555263623768 ], [ -95.467125043731102, 30.103610263775749 ], [ -95.466979043700718, 30.103659263371522 ], [ -95.466809043933807, 30.103676263511549 ], [ -95.466720044143315, 30.10367626341959 ], [ -95.466499043230101, 30.103654263630336 ], [ -95.466467043825716, 30.103665264070603 ], [ -95.46641004402349, 30.10369826399538 ], [ -95.466145043496084, 30.103962264114834 ], [ -95.46610704357586, 30.104011263470642 ], [ -95.46609404340785, 30.10406626377911 ], [ -95.46608204331028, 30.104116264121696 ], [ -95.466082043334865, 30.104220263836289 ], [ -95.466095043839402, 30.104297263659742 ], [ -95.466133043134278, 30.104374264320057 ], [ -95.466284043849825, 30.104544263915557 ], [ -95.466455043667779, 30.104671263868099 ], [ -95.466506043684845, 30.104748263973157 ], [ -95.466518043948739, 30.104792264051746 ], [ -95.466518043465484, 30.104902263799403 ], [ -95.466424043877481, 30.105012263685783 ], [ -95.466367043274843, 30.105045264476885 ], [ -95.466247043291361, 30.105072263928097 ], [ -95.466107043640108, 30.105072264368935 ], [ -95.465905043372786, 30.105023264452072 ], [ -95.465772043661403, 30.105006264153847 ], [ -95.465602043422962, 30.105017264530307 ], [ -95.46553804361217, 30.10504526415021 ], [ -95.465469043501074, 30.105061263903139 ], [ -95.465355043112694, 30.105116264531652 ], [ -95.465248043687339, 30.105188264325101 ], [ -95.465026043190619, 30.10529826401379 ], [ -95.464944043472684, 30.105320263908958 ], [ -95.464830043102708, 30.105336264440758 ], [ -95.464780043505272, 30.10532526387501 ], [ -95.464672043754916, 30.105270263959113 ], [ -95.464609042995662, 30.105205264590662 ], [ -95.464584042745841, 30.105138264260027 ], [ -95.464565042800459, 30.104979264194419 ], [ -95.464577043233703, 30.104704264282972 ], [ -95.464565043445518, 30.104627264433571 ], [ -95.464463043312165, 30.104396264196222 ], [ -95.464419043209531, 30.104347263613779 ], [ -95.464312043411965, 30.104270264046271 ], [ -95.46424804261207, 30.10423726391895 ], [ -95.46417904307512, 30.104221264343941 ], [ -95.464059042578285, 30.104226264203319 ], [ -95.46382504271439, 30.104292264322886 ], [ -95.463717042469895, 30.104358263593035 ], [ -95.463610043421468, 30.10444626417134 ], [ -95.463483043387711, 30.104606264099797 ], [ -95.463433042912413, 30.104809264416964 ], [ -95.463401042541534, 30.104869263950079 ], [ -95.463313042793899, 30.104990264480488 ], [ -95.463205042615527, 30.105106264101572 ], [ -95.462978042657582, 30.105276264347967 ], [ -95.462927042279432, 30.105304264423513 ], [ -95.462851042662635, 30.105315264578444 ], [ -95.462769042903147, 30.105315264633926 ], [ -95.46260504264005, 30.105282264078014 ], [ -95.462526042885301, 30.105259264036409 ], [ -95.462396042712527, 30.105222264090767 ], [ -95.462206042127846, 30.105183263951137 ], [ -95.461979042778268, 30.105167264248088 ], [ -95.46189004279654, 30.105178263865515 ], [ -95.461757042292064, 30.105227264186915 ], [ -95.46142904236045, 30.105403264114496 ], [ -95.461334042436846, 30.105436264663851 ], [ -95.461119042740833, 30.105464264094163 ], [ -95.461049042726401, 30.105486264261408 ], [ -95.460904041924579, 30.105579264495383 ], [ -95.460822041865029, 30.105618263962729 ], [ -95.460740041844772, 30.105629264755532 ], [ -95.460651042593199, 30.105634264394471 ], [ -95.460430042264974, 30.105618264764065 ], [ -95.460221042365575, 30.105557264082275 ], [ -95.460145041988369, 30.105508264470771 ], [ -95.460025041670818, 30.1054092645639 ], [ -95.459974041945756, 30.105354264059635 ], [ -95.459804041622917, 30.105228263997969 ], [ -95.459753041926817, 30.105206263924366 ], [ -95.459658041934176, 30.105184264232673 ], [ -95.45950704174237, 30.105195264386836 ], [ -95.459121041493191, 30.105310264088232 ], [ -95.459032041661672, 30.105327264632912 ], [ -95.458925042058297, 30.105321264579562 ], [ -95.458792042121104, 30.105266263965248 ], [ -95.458741041829157, 30.105206264680668 ], [ -95.458697041489174, 30.105090264700546 ], [ -95.458729041745841, 30.104887263896718 ], [ -95.458722041464696, 30.10478326467549 ], [ -95.458684042043345, 30.104678264037496 ], [ -95.458653041692628, 30.104629264509867 ], [ -95.458602041892576, 30.104601263879289 ], [ -95.458476041709986, 30.104590263861805 ], [ -95.458368041620105, 30.104601264347671 ], [ -95.458299041192063, 30.104623264147509 ], [ -95.458039041585309, 30.104739264385131 ], [ -95.457945040995455, 30.104761264335373 ], [ -95.457799041056859, 30.104755264029571 ], [ -95.457368041099059, 30.104684264282028 ], [ -95.457248041089315, 30.104702264634856 ], [ -95.457086040823356, 30.104811264500718 ], [ -95.4567110415869, 30.10523126436588 ], [ -95.456343041139149, 30.105235264724147 ], [ -95.455915040762306, 30.105103264372516 ], [ -95.455717040898321, 30.104973264642243 ], [ -95.455499040571837, 30.104513264237109 ], [ -95.455334040613735, 30.104293263931268 ], [ -95.455148040327984, 30.104288264064802 ], [ -95.454494040936609, 30.104504264702001 ], [ -95.453772040118452, 30.104646264520138 ], [ -95.453512040470656, 30.104755264142231 ], [ -95.453398040562448, 30.104858264688993 ], [ -95.453356039903667, 30.104995264929176 ], [ -95.453375040450751, 30.105173264679546 ], [ -95.4536440403472, 30.105848264451797 ], [ -95.453587040465791, 30.106237265145715 ], [ -95.453504040823091, 30.106400264859531 ], [ -95.453377040514937, 30.106490265242673 ], [ -95.45305504028552, 30.106553265186875 ], [ -95.452604039952845, 30.106559264723561 ], [ -95.452388040420217, 30.10672126504841 ], [ -95.452092039705661, 30.107067264859051 ], [ -95.452034039733817, 30.107201264845138 ], [ -95.452059039938234, 30.107322264967486 ], [ -95.452130040022382, 30.107658264855321 ], [ -95.45259104029526, 30.107758265206595 ], [ -95.452914040101675, 30.107939265123676 ], [ -95.453453040488128, 30.107936264953167 ], [ -95.45376904019669, 30.107994264755973 ], [ -95.453777040755128, 30.108142265154125 ], [ -95.453985040626137, 30.108304265451004 ], [ -95.454533040595507, 30.108473265404275 ], [ -95.454593041035849, 30.1090642655133 ], [ -95.454919041045542, 30.109319265659099 ], [ -95.455515040595131, 30.109288265546386 ], [ -95.455745041221761, 30.109350265469605 ], [ -95.455818040960125, 30.109643265201491 ], [ -95.456088041300532, 30.109901265699754 ], [ -95.45687104168691, 30.110207265576641 ], [ -95.457283041274906, 30.110481265833137 ], [ -95.45790304194152, 30.110503265302395 ], [ -95.458139042156205, 30.11051126572703 ], [ -95.458668042388851, 30.110830265215295 ], [ -95.4587730422882, 30.11122026579714 ], [ -95.459046042005014, 30.111553265886577 ], [ -95.459657042081261, 30.111792265762119 ], [ -95.459804042505908, 30.111909265401799 ], [ -95.459769042132535, 30.112330265602218 ], [ -95.459664042094687, 30.11251426551399 ], [ -95.459682042569867, 30.112707266273468 ], [ -95.45969104270867, 30.112811266289135 ], [ -95.459743042728647, 30.112884266136323 ], [ -95.459902042036447, 30.113109266042844 ], [ -95.460271042758279, 30.113269265560003 ], [ -95.460455042593949, 30.1135442663643 ], [ -95.460535042648019, 30.113910266358719 ], [ -95.460799042961952, 30.114299266088331 ], [ -95.461221042411736, 30.114620265954333 ], [ -95.461635042453125, 30.114774265874448 ], [ -95.461774042757284, 30.11482626660991 ], [ -95.462644042648279, 30.114825266301953 ], [ -95.462744043568676, 30.114801266406694 ], [ -95.463220043553193, 30.114691266409924 ], [ -95.463433043811349, 30.114640266341702 ], [ -95.463908043585434, 30.114434266351154 ], [ -95.463593043240323, 30.115149266513548 ], [ -95.463335043307907, 30.115571266210608 ], [ -95.463067043305813, 30.116811266512016 ], [ -95.4633650433328, 30.117346266996083 ], [ -95.463669043708123, 30.117825266810986 ], [ -95.463799043701812, 30.119856267574001 ], [ -95.463836044213167, 30.12057226761117 ], [ -95.463883044201594, 30.12115126743404 ], [ -95.463922043359588, 30.121540267239489 ], [ -95.464025043945298, 30.122043267393217 ], [ -95.464072044321767, 30.122234267279453 ], [ -95.464184043833441, 30.122581267836765 ], [ -95.464245043735886, 30.12274526811488 ], [ -95.464336044399872, 30.122948267630214 ], [ -95.464527043657412, 30.123319268009919 ], [ -95.464911043926719, 30.124047267851704 ], [ -95.46517204402916, 30.124596267923248 ], [ -95.465389044312843, 30.125157268086561 ], [ -95.465526044302919, 30.12555426812937 ], [ -95.465655044731378, 30.12606626873032 ], [ -95.465702044228863, 30.126329268030663 ], [ -95.465902044389594, 30.126305268795416 ], [ -95.465966044199547, 30.126297268103148 ], [ -95.466106044911101, 30.126287268814295 ], [ -95.466225044482798, 30.126282268170243 ], [ -95.466525044195166, 30.126271268181529 ], [ -95.467646045283416, 30.126264268260915 ], [ -95.468287045018869, 30.126260268511462 ], [ -95.469473044976979, 30.126253267902058 ], [ -95.470553045948904, 30.126247268605994 ], [ -95.4706450455175, 30.126253268577425 ], [ -95.471738046439057, 30.126237267825232 ], [ -95.471915045806611, 30.12624226835478 ], [ -95.47202204559423, 30.126272268370368 ], [ -95.472095046206064, 30.126329268309981 ], [ -95.4721430465206, 30.126396268633403 ], [ -95.472172046572851, 30.126480267932557 ], [ -95.472178045716461, 30.127256268784933 ], [ -95.472181045961847, 30.12780926841906 ], [ -95.472194046719679, 30.129504268734046 ], [ -95.472090045953038, 30.129968268843314 ], [ -95.472060046080003, 30.130193268724749 ], [ -95.472048045830675, 30.130402268640552 ], [ -95.472035046042564, 30.130746268861706 ], [ -95.472017046646187, 30.131256269184941 ], [ -95.472005045985185, 30.131592269307298 ], [ -95.471985046331966, 30.132199269552903 ], [ -95.471999046112799, 30.132447269044821 ], [ -95.472019046142648, 30.132654269674862 ], [ -95.472046046078844, 30.13282326969745 ], [ -95.47208504651212, 30.132970269437113 ], [ -95.472156046423763, 30.133139270033681 ], [ -95.472243046675956, 30.133309269647789 ], [ -95.472348046860475, 30.133469269227717 ], [ -95.472522046616987, 30.13364426961299 ], [ -95.47266204652955, 30.133736269718629 ], [ -95.472845046288782, 30.133834270003224 ], [ -95.473072046243729, 30.133928269429411 ], [ -95.473398047076429, 30.134036269412579 ], [ -95.473702046939934, 30.134126269400422 ], [ -95.474935046716666, 30.134516270128508 ], [ -95.475424047540514, 30.134642269586116 ], [ -95.47563704750641, 30.134686269528366 ], [ -95.475829047301374, 30.134710269455447 ], [ -95.476021047708954, 30.13471527002282 ], [ -95.476235047844355, 30.134701269937189 ], [ -95.476472047725579, 30.13467527002188 ], [ -95.47664904790237, 30.134635269354124 ], [ -95.476832047274229, 30.134585269456938 ], [ -95.477021047582483, 30.134518269450577 ], [ -95.477210047541817, 30.134433270078777 ], [ -95.477747047842882, 30.134179270027342 ], [ -95.479197048519609, 30.133492269601916 ], [ -95.479401048599058, 30.133401269060659 ], [ -95.479634048205085, 30.133286269092945 ], [ -95.479793048331317, 30.13321326889708 ], [ -95.480036047999008, 30.133115269126819 ], [ -95.480284048849938, 30.133028268925717 ], [ -95.480454048162883, 30.132977269678474 ], [ -95.48070704913242, 30.132909269575133 ], [ -95.48088004857982, 30.132870268867919 ], [ -95.481231048280165, 30.132810269451873 ], [ -95.481390049199334, 30.132793269201233 ], [ -95.481674048469273, 30.132764269514915 ], [ -95.481941048541131, 30.132752269546589 ], [ -95.482032048670291, 30.13275426879984 ], [ -95.482098048639784, 30.132752269369306 ], [ -95.482214049268649, 30.132748268942553 ], [ -95.482359049207474, 30.132746269598172 ], [ -95.484950050218274, 30.1327182690498 ], [ -95.485490050273526, 30.132707268859559 ], [ -95.488381051078534, 30.132698268978849 ], [ -95.488887050978235, 30.132697269099726 ], [ -95.488875051191016, 30.131747268444492 ], [ -95.488879050486617, 30.129217268441536 ], [ -95.488875050262322, 30.126609267380672 ], [ -95.488880050194368, 30.124898267395508 ], [ -95.48888605031928, 30.123910267058719 ], [ -95.488888050009663, 30.119679266219219 ], [ -95.488898050034948, 30.11920426603837 ], [ -95.488907050046038, 30.119138266155595 ], [ -95.489050050289279, 30.118825265645963 ], [ -95.489070050303354, 30.118727265813956 ], [ -95.48907905049856, 30.118535266431419 ], [ -95.489044049684182, 30.117634265799829 ], [ -95.489065050520509, 30.116897265377613 ], [ -95.489090050009153, 30.115767265542647 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1247, "Tract": "48339693503", "Area_SqMi": 1.0067320774969748, "total_2009": 3132, "total_2010": 3197, "total_2011": 4055, "total_2012": 9335, "total_2013": 9628, "total_2014": 3214, "total_2015": 3274, "total_2016": 2918, "total_2017": 2876, "total_2018": 2755, "total_2019": 2927, "total_2020": 3212, "age1": 1056, "age2": 2684, "age3": 1108, "earn1": 750, "earn2": 1151, "earn3": 2947, "naics_s01": 0, "naics_s02": 0, "naics_s03": 49, "naics_s04": 468, "naics_s05": 75, "naics_s06": 96, "naics_s07": 214, "naics_s08": 19, "naics_s09": 185, "naics_s10": 172, "naics_s11": 24, "naics_s12": 885, "naics_s13": 16, "naics_s14": 573, "naics_s15": 0, "naics_s16": 426, "naics_s17": 214, "naics_s18": 480, "naics_s19": 76, "naics_s20": 876, "race1": 4073, "race2": 489, "race3": 39, "race4": 158, "race5": 11, "race6": 78, "ethnicity1": 3769, "ethnicity2": 1079, "edu1": 597, "edu2": 1094, "edu3": 1192, "edu4": 909, "Shape_Length": 23856.263991522123, "Shape_Area": 28065967.281444713, "total_2021": 4189, "total_2022": 4848 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.475033056680189, 30.32529030855515 ], [ -95.475108056343558, 30.325272308770657 ], [ -95.474134056160764, 30.322523308097068 ], [ -95.474064056074525, 30.322308307653604 ], [ -95.473170055724594, 30.319566307203139 ], [ -95.472180055414711, 30.316643306556966 ], [ -95.471981054511858, 30.316055306221816 ], [ -95.471612055092294, 30.314964306170054 ], [ -95.47116405458884, 30.31363030588512 ], [ -95.470710054536994, 30.312223305567588 ], [ -95.470027054605893, 30.310158305159501 ], [ -95.469851054410682, 30.309626305774298 ], [ -95.469340053587388, 30.308111305328463 ], [ -95.469098053722973, 30.308151304789327 ], [ -95.468841053990417, 30.308155304977152 ], [ -95.468609053413005, 30.308212305385489 ], [ -95.467167053465616, 30.308568305364926 ], [ -95.46404105271634, 30.309303305476988 ], [ -95.46252205258341, 30.309662305878589 ], [ -95.461028051604998, 30.310033306159518 ], [ -95.461172052238524, 30.310460305529581 ], [ -95.461341052479412, 30.310960306207637 ], [ -95.461469052273372, 30.311340305994516 ], [ -95.461529052161353, 30.311515306071406 ], [ -95.461768051758483, 30.312225306023631 ], [ -95.460510051618527, 30.312192306619963 ], [ -95.459851052149219, 30.312189306694794 ], [ -95.45919205193492, 30.312180306658679 ], [ -95.458126051164854, 30.312179306295302 ], [ -95.457072051455029, 30.312171306686366 ], [ -95.456020050650281, 30.312165306139331 ], [ -95.455827050981668, 30.312175306715083 ], [ -95.455797050524879, 30.313061306676843 ], [ -95.455822050298522, 30.315633307469099 ], [ -95.45577905093154, 30.320326307779624 ], [ -95.4557650515261, 30.322175308371211 ], [ -95.455976050756689, 30.322174308116246 ], [ -95.457362051259466, 30.322183308102726 ], [ -95.458090052078731, 30.322196308251982 ], [ -95.458088052084236, 30.322364308073862 ], [ -95.458289051296461, 30.32251530881981 ], [ -95.459308052133977, 30.322278308285959 ], [ -95.459345052250086, 30.322274308724133 ], [ -95.459620052492284, 30.322242307965357 ], [ -95.459898051805212, 30.322186308725374 ], [ -95.459980051868413, 30.322152308387327 ], [ -95.460116052477602, 30.322060308523447 ], [ -95.460258052059828, 30.321915308546068 ], [ -95.460327051885386, 30.321972308031295 ], [ -95.460371051891826, 30.322028307929962 ], [ -95.460428052335516, 30.322120308121256 ], [ -95.46045605224883, 30.322187308369948 ], [ -95.460484052062768, 30.322322307980297 ], [ -95.460484052305091, 30.322446308536893 ], [ -95.460553052065734, 30.323422308517632 ], [ -95.46055805275418, 30.324098308880487 ], [ -95.460593052729195, 30.324663308535325 ], [ -95.460610052083808, 30.324760308943581 ], [ -95.460630052018601, 30.324827309228258 ], [ -95.460669052822183, 30.324916308659489 ], [ -95.460900052458342, 30.325345308979486 ], [ -95.460939052636164, 30.325410309232069 ], [ -95.4623090526146, 30.325077309284652 ], [ -95.462363052603521, 30.325032308860902 ], [ -95.462657052630547, 30.324962308896996 ], [ -95.463342052918875, 30.324779309182276 ], [ -95.463960053585055, 30.324625308402982 ], [ -95.464583053960823, 30.324465308302862 ], [ -95.464708053993192, 30.324447308322199 ], [ -95.464747053111282, 30.324844308672912 ], [ -95.464891053927957, 30.325879308652564 ], [ -95.464948053462649, 30.326169309099715 ], [ -95.464992053389821, 30.326418309248293 ], [ -95.465072053768324, 30.326811309112173 ], [ -95.465123053529155, 30.327032309029612 ], [ -95.465242053495004, 30.327033309357891 ], [ -95.465599053347276, 30.326998309104898 ], [ -95.466035053778612, 30.326908309049578 ], [ -95.46964405523542, 30.325982308399766 ], [ -95.469888054969957, 30.325936308593604 ], [ -95.471280054834907, 30.325868308443241 ], [ -95.47143505560669, 30.325867308445488 ], [ -95.471589055032567, 30.325865308305083 ], [ -95.47275605594416, 30.325788308581533 ], [ -95.473267055388192, 30.325735308589739 ], [ -95.4737340553542, 30.325646308980385 ], [ -95.474552055802661, 30.325419308631382 ], [ -95.474768056271728, 30.325359308791558 ], [ -95.474877056644814, 30.325329308732421 ], [ -95.474957056658923, 30.32530730838538 ], [ -95.475033056680189, 30.32529030855515 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1248, "Tract": "48339693902", "Area_SqMi": 2.7524991071381426, "total_2009": 628, "total_2010": 637, "total_2011": 993, "total_2012": 1314, "total_2013": 1389, "total_2014": 1639, "total_2015": 1501, "total_2016": 1148, "total_2017": 1275, "total_2018": 1679, "total_2019": 1736, "total_2020": 1594, "age1": 261, "age2": 825, "age3": 311, "earn1": 141, "earn2": 292, "earn3": 964, "naics_s01": 0, "naics_s02": 48, "naics_s03": 0, "naics_s04": 47, "naics_s05": 383, "naics_s06": 430, "naics_s07": 128, "naics_s08": 42, "naics_s09": 0, "naics_s10": 6, "naics_s11": 18, "naics_s12": 0, "naics_s13": 0, "naics_s14": 80, "naics_s15": 1, "naics_s16": 62, "naics_s17": 0, "naics_s18": 137, "naics_s19": 15, "naics_s20": 0, "race1": 1158, "race2": 168, "race3": 24, "race4": 24, "race5": 2, "race6": 21, "ethnicity1": 1018, "ethnicity2": 379, "edu1": 227, "edu2": 343, "edu3": 359, "edu4": 207, "Shape_Length": 37945.33232555724, "Shape_Area": 76734964.157707632, "total_2021": 1472, "total_2022": 1397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.445298048751653, 30.327171309985388 ], [ -95.445324048689429, 30.326782309689342 ], [ -95.445086048475417, 30.326507310057718 ], [ -95.4449530481549, 30.325866309766013 ], [ -95.444821048903876, 30.325591309729461 ], [ -95.444635048363878, 30.324102309564488 ], [ -95.444669048213598, 30.324057309109058 ], [ -95.444917048781235, 30.323730309566429 ], [ -95.445295048357025, 30.323231308938063 ], [ -95.445294048360182, 30.32263630911503 ], [ -95.445135048879834, 30.322269309030631 ], [ -95.445029048345276, 30.321055308650454 ], [ -95.444903048598363, 30.320746308867566 ], [ -95.444870048405733, 30.320666308542567 ], [ -95.444632047985237, 30.320529308913596 ], [ -95.443524047767411, 30.320690308705988 ], [ -95.443048047425606, 30.320484308422593 ], [ -95.442335047425289, 30.319866308486368 ], [ -95.44217604760027, 30.319568308268774 ], [ -95.441384047273417, 30.318927308742584 ], [ -95.441119047614208, 30.318263308153682 ], [ -95.440617046945022, 30.317645307998152 ], [ -95.440485046686973, 30.316729307763467 ], [ -95.440247046378218, 30.316179307836407 ], [ -95.440226047060392, 30.316157307818298 ], [ -95.438735046286268, 30.316782308130072 ], [ -95.437193046435539, 30.317423308301187 ], [ -95.435621046104544, 30.318077308107227 ], [ -95.434400045819046, 30.318562308615547 ], [ -95.434254045572487, 30.318624308485891 ], [ -95.433963045585443, 30.318735308936947 ], [ -95.433662045463677, 30.318837308251602 ], [ -95.433363045471722, 30.31893130893685 ], [ -95.433058044737109, 30.319014308807731 ], [ -95.432438044566879, 30.319151309078947 ], [ -95.431707045132754, 30.319209308494496 ], [ -95.430156044363812, 30.319316309252827 ], [ -95.428804044018662, 30.319408309101053 ], [ -95.428483044064478, 30.319431309196624 ], [ -95.427819044130658, 30.319480308549874 ], [ -95.424831043405092, 30.319706309197766 ], [ -95.42240104256534, 30.31988430893696 ], [ -95.421465042432672, 30.31995030894241 ], [ -95.419296042098765, 30.320126309432606 ], [ -95.418793041664017, 30.32015130940162 ], [ -95.418342040973172, 30.320216309812078 ], [ -95.417458040827142, 30.32037930970138 ], [ -95.416373041141441, 30.32059530914449 ], [ -95.415028040252551, 30.320892309566052 ], [ -95.414300040561969, 30.321044309778301 ], [ -95.413573040170277, 30.321181310179178 ], [ -95.413121039791079, 30.321282309562481 ], [ -95.406480038081355, 30.32265331027336 ], [ -95.403263037199551, 30.323317310141793 ], [ -95.40316003776671, 30.323338310656169 ], [ -95.402761037075081, 30.323421310562615 ], [ -95.402863037482604, 30.32387131083502 ], [ -95.402994037259816, 30.324450310780836 ], [ -95.403373037774557, 30.325649310682934 ], [ -95.403983037623647, 30.326812311679912 ], [ -95.404412038447262, 30.327415311468485 ], [ -95.406107038626118, 30.329486311894975 ], [ -95.406297039247193, 30.32971831210963 ], [ -95.406685039244181, 30.330182311866448 ], [ -95.406779038468244, 30.330287312184836 ], [ -95.406885038596911, 30.330407311914708 ], [ -95.407296039204908, 30.330846311672662 ], [ -95.407672039491828, 30.331215312172521 ], [ -95.407780039014071, 30.331315312458099 ], [ -95.408002039067057, 30.331503311923612 ], [ -95.408350039525246, 30.331775312325423 ], [ -95.408592039045885, 30.331951312017654 ], [ -95.408838040019376, 30.332116312097732 ], [ -95.409223039786653, 30.332347312223082 ], [ -95.409621040168261, 30.332564311889183 ], [ -95.409921039343971, 30.332710311939515 ], [ -95.410211039642192, 30.33283831241566 ], [ -95.418597042581808, 30.336686312517642 ], [ -95.420236042650856, 30.337418312804413 ], [ -95.422185043226548, 30.338304312999199 ], [ -95.422883042932327, 30.338600313089515 ], [ -95.423617043414026, 30.338932312597443 ], [ -95.42474104353218, 30.33950031327306 ], [ -95.425617044658537, 30.339878312887013 ], [ -95.426220044812396, 30.34011531333282 ], [ -95.427368044318428, 30.34039931342004 ], [ -95.427718044326625, 30.340449313121685 ], [ -95.427833045026318, 30.340487313084679 ], [ -95.427972045156466, 30.340513313612973 ], [ -95.428070045370632, 30.340526313258263 ], [ -95.428523044590165, 30.340588313006222 ], [ -95.428804044868215, 30.340612312856976 ], [ -95.429225045340061, 30.340634312882443 ], [ -95.42950404521541, 30.340634313340228 ], [ -95.42975204522476, 30.34064331358476 ], [ -95.430375045586345, 30.340621312915431 ], [ -95.433484046545175, 30.340379312790891 ], [ -95.437092047642551, 30.340078313247684 ], [ -95.440223048027207, 30.339828312904885 ], [ -95.440612047564841, 30.339827312164228 ], [ -95.440918048047749, 30.339827312579544 ], [ -95.44160204843547, 30.339870312637789 ], [ -95.441886048857526, 30.33989931257145 ], [ -95.442149048415004, 30.339922312162326 ], [ -95.442112048306612, 30.339611312124354 ], [ -95.441980048001781, 30.339267312181516 ], [ -95.441636047787838, 30.338832312482179 ], [ -95.441556047697134, 30.338076312595298 ], [ -95.440790048030351, 30.33711531240322 ], [ -95.440842047908404, 30.336359311569012 ], [ -95.440789047419798, 30.335718312197418 ], [ -95.441000048415205, 30.335076311523427 ], [ -95.440946047558683, 30.333931311062145 ], [ -95.440735047838956, 30.333793311583815 ], [ -95.440655047918838, 30.333564311795847 ], [ -95.440734048044703, 30.333335311678095 ], [ -95.441315048246821, 30.33262531084225 ], [ -95.441604048288056, 30.331686311019734 ], [ -95.441551048405998, 30.33120531043901 ], [ -95.440864047443554, 30.330518310460377 ], [ -95.440864047273095, 30.330140310505421 ], [ -95.440864047176476, 30.330106310313095 ], [ -95.441260047661402, 30.329808310701846 ], [ -95.442791048370893, 30.329417310045145 ], [ -95.44321304826758, 30.329073310382793 ], [ -95.443398048374362, 30.328730310317603 ], [ -95.444190047906901, 30.328134309770775 ], [ -95.444400048754346, 30.327790310098251 ], [ -95.44508704899593, 30.327400310340437 ], [ -95.445298048751653, 30.327171309985388 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1249, "Tract": "48339692006", "Area_SqMi": 0.97938146210745569, "total_2009": 22, "total_2010": 25, "total_2011": 142, "total_2012": 96, "total_2013": 116, "total_2014": 111, "total_2015": 129, "total_2016": 179, "total_2017": 349, "total_2018": 454, "total_2019": 577, "total_2020": 543, "age1": 293, "age2": 412, "age3": 125, "earn1": 156, "earn2": 342, "earn3": 332, "naics_s01": 0, "naics_s02": 2, "naics_s03": 10, "naics_s04": 13, "naics_s05": 37, "naics_s06": 62, "naics_s07": 375, "naics_s08": 8, "naics_s09": 10, "naics_s10": 61, "naics_s11": 4, "naics_s12": 62, "naics_s13": 0, "naics_s14": 2, "naics_s15": 1, "naics_s16": 43, "naics_s17": 2, "naics_s18": 125, "naics_s19": 13, "naics_s20": 0, "race1": 635, "race2": 117, "race3": 10, "race4": 56, "race5": 0, "race6": 12, "ethnicity1": 537, "ethnicity2": 293, "edu1": 113, "edu2": 143, "edu3": 165, "edu4": 116, "Shape_Length": 29307.809438624277, "Shape_Area": 27303478.935430996, "total_2021": 691, "total_2022": 830 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.398195027963538, 30.135303272663506 ], [ -95.398395028164259, 30.134936272192526 ], [ -95.398072027848869, 30.134214272687569 ], [ -95.397410027628112, 30.132799272058318 ], [ -95.396804027565949, 30.131651272036706 ], [ -95.395706027171215, 30.131921272183813 ], [ -95.395010026847203, 30.132087271640493 ], [ -95.394525026035694, 30.132012272021569 ], [ -95.394183025982798, 30.131864272293544 ], [ -95.393952025962562, 30.131630271807158 ], [ -95.393847025994077, 30.13125527219778 ], [ -95.393898026246816, 30.130722271693362 ], [ -95.393995025987067, 30.130461271461023 ], [ -95.394004026722456, 30.130440272209366 ], [ -95.395243026694274, 30.130307272148851 ], [ -95.3952340269107, 30.130293271604117 ], [ -95.395170026922045, 30.129730271728274 ], [ -95.395122027051784, 30.129534271334894 ], [ -95.394965026475617, 30.128894271328779 ], [ -95.394923026892855, 30.12881827107719 ], [ -95.394832026486071, 30.128649271087884 ], [ -95.394520025833543, 30.128124271705175 ], [ -95.394494026713005, 30.128067271046479 ], [ -95.394295026197256, 30.127634271591418 ], [ -95.394269025955822, 30.12714027104812 ], [ -95.394406025999942, 30.126903271000518 ], [ -95.394783026370177, 30.126649270570475 ], [ -95.394829026172133, 30.126624271020756 ], [ -95.394239026440403, 30.125887270750898 ], [ -95.39425002600629, 30.125775270429703 ], [ -95.393917026200285, 30.125782270577862 ], [ -95.393566026171172, 30.125872271276254 ], [ -95.393399026053757, 30.126024270852341 ], [ -95.393127025681437, 30.125838270853951 ], [ -95.392274025860956, 30.125854270581627 ], [ -95.391658025525004, 30.125834270504164 ], [ -95.391665025736245, 30.125705270887032 ], [ -95.391624025075231, 30.125162270630788 ], [ -95.391502025025545, 30.124819271050207 ], [ -95.391284024926392, 30.124571271099246 ], [ -95.391107025122736, 30.124369271029703 ], [ -95.390433024588134, 30.123553270573584 ], [ -95.391180025594636, 30.123065270096504 ], [ -95.391909025774837, 30.122597270559073 ], [ -95.393625025433138, 30.121505269856552 ], [ -95.395107026415886, 30.120569269755393 ], [ -95.395637026245154, 30.120251269627271 ], [ -95.397500027089933, 30.119350269133349 ], [ -95.397601026983594, 30.11930126926541 ], [ -95.397664027070206, 30.119271269141631 ], [ -95.397611026601666, 30.119188269665692 ], [ -95.397569026425387, 30.119116269084358 ], [ -95.397418026671701, 30.118856269685569 ], [ -95.39683402675746, 30.117945269558014 ], [ -95.396413026477589, 30.117360269405083 ], [ -95.396275026676236, 30.117195269191587 ], [ -95.395999025979535, 30.117029269213916 ], [ -95.396026025863975, 30.116808269080387 ], [ -95.395944026394275, 30.116559268601073 ], [ -95.395215026400464, 30.115421269076258 ], [ -95.394887026266872, 30.114912268894809 ], [ -95.393942025715702, 30.113412268382547 ], [ -95.392658025384307, 30.111380268319998 ], [ -95.392328025450226, 30.110940267582379 ], [ -95.392070024427312, 30.110630267556644 ], [ -95.391754025044207, 30.110319267602435 ], [ -95.391417024651389, 30.11001326750981 ], [ -95.391072024732779, 30.109756267268661 ], [ -95.390400024485402, 30.109256267370995 ], [ -95.390038024067763, 30.108987267831836 ], [ -95.388930023828266, 30.11009126739873 ], [ -95.388837024155961, 30.110194267999631 ], [ -95.388726023517052, 30.110297267988603 ], [ -95.388548024052341, 30.110458268332724 ], [ -95.388406024172681, 30.110586267598066 ], [ -95.388269024438472, 30.110723267725888 ], [ -95.388068023498249, 30.110930267600207 ], [ -95.387995024166145, 30.110861267656684 ], [ -95.387883023583257, 30.110755267622345 ], [ -95.387870023519994, 30.110741268161039 ], [ -95.387707024217889, 30.11058226822205 ], [ -95.387339024133496, 30.110933267707221 ], [ -95.387253024131326, 30.111015267777898 ], [ -95.386579023237658, 30.111659268522352 ], [ -95.386303023537863, 30.11192426783284 ], [ -95.385018023061306, 30.113167268279668 ], [ -95.384808023203092, 30.113359268302144 ], [ -95.384672022751147, 30.113477268536425 ], [ -95.38461102268387, 30.113530268424704 ], [ -95.384455022753116, 30.113664268298137 ], [ -95.384314023021233, 30.113785268345854 ], [ -95.38416002311547, 30.113914269150026 ], [ -95.38396802291679, 30.114075268900191 ], [ -95.383734022755149, 30.114258268768861 ], [ -95.383563022811373, 30.114394268672896 ], [ -95.383486022445766, 30.114455268552735 ], [ -95.383614023397456, 30.114551268842817 ], [ -95.383663022951282, 30.114585268985092 ], [ -95.38392802257529, 30.114769268873239 ], [ -95.384620023018783, 30.115389269167029 ], [ -95.386069023823637, 30.116686269041118 ], [ -95.384581023750727, 30.117997269213188 ], [ -95.384755023233467, 30.118276269298335 ], [ -95.385082023137244, 30.118796269835912 ], [ -95.385429023212779, 30.119689270170017 ], [ -95.385588024133881, 30.120326269786901 ], [ -95.385660024004721, 30.120992270240873 ], [ -95.385521023884792, 30.121825269967768 ], [ -95.385357023238257, 30.122676270324629 ], [ -95.38499602398683, 30.123428270434367 ], [ -95.384562023334212, 30.12413727072207 ], [ -95.384285023323471, 30.124566271345472 ], [ -95.384085023419303, 30.124928271081096 ], [ -95.384066023662697, 30.124979270725095 ], [ -95.383912023749545, 30.12540327124433 ], [ -95.383681023796285, 30.126287271692856 ], [ -95.38366402331728, 30.126828271667634 ], [ -95.383672023730099, 30.127206271444475 ], [ -95.383752024001424, 30.12777327167727 ], [ -95.383861023321828, 30.128178271775049 ], [ -95.384042023303934, 30.12872827170747 ], [ -95.384291023675388, 30.129248271738316 ], [ -95.384391023551245, 30.129498271500012 ], [ -95.385043023974063, 30.130556272318213 ], [ -95.38519402438834, 30.13092927233021 ], [ -95.385331024141706, 30.131341272267019 ], [ -95.38547402383746, 30.131952272084639 ], [ -95.385556024338655, 30.132609272525308 ], [ -95.386848024249971, 30.132781272333823 ], [ -95.387083024669735, 30.132854272440103 ], [ -95.388292025152325, 30.133231272798291 ], [ -95.389715025348494, 30.134143272854644 ], [ -95.391046025277433, 30.135266273275487 ], [ -95.391748025813868, 30.13568727258486 ], [ -95.392386026223306, 30.135968273261255 ], [ -95.392692026300438, 30.136103273394365 ], [ -95.393533026319915, 30.136256272797919 ], [ -95.3946410271422, 30.136418273113115 ], [ -95.395799026841146, 30.136382273178608 ], [ -95.396176027322994, 30.136313272707181 ], [ -95.396905027063539, 30.136180273224173 ], [ -95.39833102718849, 30.135666272631926 ], [ -95.398251027270959, 30.135457272545167 ], [ -95.398195027963538, 30.135303272663506 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1250, "Tract": "48339693301", "Area_SqMi": 3.2504162144582134, "total_2009": 226, "total_2010": 287, "total_2011": 322, "total_2012": 236, "total_2013": 248, "total_2014": 356, "total_2015": 130, "total_2016": 97, "total_2017": 121, "total_2018": 88, "total_2019": 93, "total_2020": 76, "age1": 26, "age2": 41, "age3": 15, "earn1": 16, "earn2": 30, "earn3": 36, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 3, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 3, "naics_s11": 0, "naics_s12": 8, "naics_s13": 0, "naics_s14": 5, "naics_s15": 2, "naics_s16": 21, "naics_s17": 0, "naics_s18": 0, "naics_s19": 19, "naics_s20": 0, "race1": 70, "race2": 5, "race3": 3, "race4": 3, "race5": 0, "race6": 1, "ethnicity1": 62, "ethnicity2": 20, "edu1": 5, "edu2": 12, "edu3": 21, "edu4": 18, "Shape_Length": 46224.033567624538, "Shape_Area": 90616040.916145071, "total_2021": 81, "total_2022": 82 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.519958065994672, 30.299058301332341 ], [ -95.52001106645848, 30.298325301373222 ], [ -95.519800066781102, 30.298073301662519 ], [ -95.519036066144594, 30.297454300806844 ], [ -95.517295065170572, 30.295780301189943 ], [ -95.516082065543031, 30.294703300817599 ], [ -95.515686065076338, 30.294496301117071 ], [ -95.515079065413985, 30.294496301004536 ], [ -95.513627064801128, 30.295067300914642 ], [ -95.512888063933488, 30.295066301022036 ], [ -95.512360064445218, 30.294883300665742 ], [ -95.510224063768419, 30.293804300624352 ], [ -95.509749063730098, 30.29323130110275 ], [ -95.509274063745551, 30.292910300611624 ], [ -95.508113063059895, 30.292543300241981 ], [ -95.507295062644957, 30.292153300890359 ], [ -95.506821062942095, 30.291534300370753 ], [ -95.506838062323638, 30.291031300737842 ], [ -95.506848062687411, 30.290755300524669 ], [ -95.506981062910739, 30.290343300107885 ], [ -95.506981062852475, 30.289793299685616 ], [ -95.506850063072605, 30.289633299936881 ], [ -95.505953062622496, 30.288968299588642 ], [ -95.505558061829049, 30.288509299940337 ], [ -95.505189062469327, 30.28777630000091 ], [ -95.504609061773891, 30.287501299369456 ], [ -95.503395061316553, 30.28766029954884 ], [ -95.503183061520957, 30.287591299724738 ], [ -95.503052061948523, 30.287362299892649 ], [ -95.503000061845043, 30.286652299848654 ], [ -95.503185061927439, 30.285965299559063 ], [ -95.503213061639741, 30.285163299225605 ], [ -95.503055061082549, 30.284659299652798 ], [ -95.503056060924195, 30.28417829950569 ], [ -95.503188061527268, 30.283560298801667 ], [ -95.50337306107015, 30.283216299067938 ], [ -95.503639061130443, 30.281819298881299 ], [ -95.503614061825942, 30.280628298131507 ], [ -95.503430061802106, 30.280101298740821 ], [ -95.503061060897934, 30.27966629781054 ], [ -95.502086060711534, 30.27884029767759 ], [ -95.501901061384302, 30.278794297935281 ], [ -95.500898060099047, 30.279045298374285 ], [ -95.500634060364135, 30.279183298293212 ], [ -95.500607060417494, 30.279457297896741 ], [ -95.500580060334585, 30.279984298580409 ], [ -95.500236059983479, 30.280149298778753 ], [ -95.49997206007879, 30.280424298177341 ], [ -95.499286060641595, 30.280425298301832 ], [ -95.499181060670537, 30.280677298980603 ], [ -95.498389060521589, 30.280563298212197 ], [ -95.498177060308379, 30.28024329838885 ], [ -95.497543059666143, 30.279762298777388 ], [ -95.497174059658292, 30.279832298242415 ], [ -95.497042059696071, 30.279992298148215 ], [ -95.497096059690406, 30.280473298752685 ], [ -95.497175059363528, 30.280587298620237 ], [ -95.497123059549892, 30.28097729863174 ], [ -95.496517059976128, 30.281756298885561 ], [ -95.496411059984979, 30.282031298807187 ], [ -95.496386059609264, 30.282535298940548 ], [ -95.496149060049888, 30.283108299057936 ], [ -95.496176060032496, 30.283612299550335 ], [ -95.496625059840326, 30.284344299103562 ], [ -95.496626059522569, 30.284711299253797 ], [ -95.496415059298585, 30.284894299070672 ], [ -95.494911059114017, 30.285216299457677 ], [ -95.493143058864476, 30.285837299430689 ], [ -95.49272105910957, 30.285906300084157 ], [ -95.492484058881985, 30.286112299518031 ], [ -95.491772059126433, 30.286273300231731 ], [ -95.491402058782938, 30.286457300304814 ], [ -95.490848058335089, 30.286434300076486 ], [ -95.490611057832069, 30.286549299712814 ], [ -95.49029405780027, 30.286503300403989 ], [ -95.49005605812809, 30.286366299900621 ], [ -95.489897057939814, 30.285794299920934 ], [ -95.489633057952858, 30.285588299862603 ], [ -95.489079057923206, 30.285497299457752 ], [ -95.488550057281373, 30.285131299656481 ], [ -95.487996057239116, 30.285223299755003 ], [ -95.487521057566028, 30.285017299568075 ], [ -95.486096057246272, 30.28495029944337 ], [ -95.485356057232323, 30.284881300101883 ], [ -95.48469605627507, 30.284584299878954 ], [ -95.484380056222832, 30.284630300198465 ], [ -95.484261056722943, 30.284778299480575 ], [ -95.484009056442702, 30.284750299881392 ], [ -95.483130056145896, 30.284647299490274 ], [ -95.482936056601687, 30.285671299970605 ], [ -95.482162055867136, 30.287436300369592 ], [ -95.481441055905094, 30.288773301209094 ], [ -95.480899055683864, 30.289865300699461 ], [ -95.480711055651085, 30.290814301141072 ], [ -95.4807590559316, 30.291421301532793 ], [ -95.480936056587183, 30.292036301860335 ], [ -95.481383055779119, 30.293350302034977 ], [ -95.481784056685584, 30.294526301934198 ], [ -95.481828055949833, 30.294656302153744 ], [ -95.483271056836742, 30.29889230238857 ], [ -95.483157056791882, 30.299753303309284 ], [ -95.483213056766886, 30.2998953027972 ], [ -95.483381057460079, 30.300929303478757 ], [ -95.483587056914658, 30.30176630307902 ], [ -95.483708057439912, 30.302232303712554 ], [ -95.483827057795438, 30.302751304010332 ], [ -95.484079057281207, 30.303671304144025 ], [ -95.484247057338905, 30.304487304123942 ], [ -95.485737057762407, 30.308710304386707 ], [ -95.485726057853867, 30.30892430446967 ], [ -95.485698058579004, 30.309202304833988 ], [ -95.494020060434323, 30.309811304454747 ], [ -95.496615060601528, 30.310000304316233 ], [ -95.498061060848315, 30.310200304953387 ], [ -95.49893706176006, 30.310368304306365 ], [ -95.500296061942549, 30.310712304499461 ], [ -95.50153506227656, 30.311115304740309 ], [ -95.502518062700588, 30.311509304532834 ], [ -95.504905063362202, 30.312581304742498 ], [ -95.505572063620363, 30.312873304834078 ], [ -95.50634006413101, 30.313220304672662 ], [ -95.507961063882831, 30.313931305237141 ], [ -95.508237064536871, 30.314042304898329 ], [ -95.508586064489535, 30.314162304836195 ], [ -95.508933064811316, 30.314261305251712 ], [ -95.509283064068114, 30.314342305443898 ], [ -95.510409064943104, 30.314514304585465 ], [ -95.511671065271344, 30.314629304561723 ], [ -95.511683064950162, 30.314182304906897 ], [ -95.511706065046084, 30.313344304503833 ], [ -95.511575065172735, 30.312748304628514 ], [ -95.511523064588602, 30.312629304138369 ], [ -95.511127065239947, 30.311717304770628 ], [ -95.511154065046554, 30.311521304588101 ], [ -95.511207064800843, 30.311144304096317 ], [ -95.511710064769332, 30.310183304402972 ], [ -95.511763065001915, 30.309953303961166 ], [ -95.511816064844623, 30.309725304207166 ], [ -95.511804064641609, 30.309431304053284 ], [ -95.511782064514577, 30.308877303856953 ], [ -95.511765064837817, 30.308465303928045 ], [ -95.512082064511574, 30.307847303192148 ], [ -95.513324065194467, 30.307000303008891 ], [ -95.513403065244816, 30.306771302985322 ], [ -95.513404065317346, 30.306222303513515 ], [ -95.513167064948505, 30.305832303330153 ], [ -95.512507064958442, 30.305167302597649 ], [ -95.512402065028212, 30.304961302685985 ], [ -95.512350064858396, 30.304503303304195 ], [ -95.512456064876361, 30.304297302971055 ], [ -95.512773064495406, 30.30402230290289 ], [ -95.51335406527447, 30.303794302869527 ], [ -95.513856064766756, 30.303428302614691 ], [ -95.51388206538391, 30.303244302505188 ], [ -95.514120064678124, 30.302878302241723 ], [ -95.514411065168147, 30.302672302449736 ], [ -95.515255065543954, 30.302673302585283 ], [ -95.515440065443755, 30.302581302418531 ], [ -95.515705065079786, 30.302261302699058 ], [ -95.516312066097129, 30.302101302737881 ], [ -95.516603065276129, 30.301735302177804 ], [ -95.517131065818361, 30.3017123018261 ], [ -95.517447066021049, 30.302010301798845 ], [ -95.51744706583338, 30.302194302212332 ], [ -95.517763065699185, 30.302973302732724 ], [ -95.518053066395055, 30.303087302872662 ], [ -95.518370066137251, 30.303133302554983 ], [ -95.518713066357819, 30.303019302291762 ], [ -95.519400066265035, 30.302241302306179 ], [ -95.519506066541354, 30.301920302428812 ], [ -95.519375066119252, 30.300752301923556 ], [ -95.519614066127431, 30.299767301267881 ], [ -95.519958065994672, 30.299058301332341 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1251, "Tract": "48339690603", "Area_SqMi": 5.4266229288467791, "total_2009": 1004, "total_2010": 951, "total_2011": 666, "total_2012": 674, "total_2013": 724, "total_2014": 875, "total_2015": 1039, "total_2016": 1300, "total_2017": 1391, "total_2018": 1469, "total_2019": 1463, "total_2020": 1451, "age1": 557, "age2": 799, "age3": 300, "earn1": 401, "earn2": 570, "earn3": 685, "naics_s01": 10, "naics_s02": 12, "naics_s03": 0, "naics_s04": 271, "naics_s05": 113, "naics_s06": 42, "naics_s07": 341, "naics_s08": 9, "naics_s09": 10, "naics_s10": 117, "naics_s11": 30, "naics_s12": 74, "naics_s13": 0, "naics_s14": 75, "naics_s15": 32, "naics_s16": 189, "naics_s17": 0, "naics_s18": 204, "naics_s19": 127, "naics_s20": 0, "race1": 1362, "race2": 172, "race3": 14, "race4": 87, "race5": 1, "race6": 20, "ethnicity1": 1165, "ethnicity2": 491, "edu1": 252, "edu2": 287, "edu3": 320, "edu4": 240, "Shape_Length": 86365.690017231987, "Shape_Area": 151284959.49828225, "total_2021": 1623, "total_2022": 1656 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.6009820814254, 30.175474273470257 ], [ -95.600980081746954, 30.175240273874671 ], [ -95.600965080870452, 30.174981273750724 ], [ -95.60093708092613, 30.174730273371047 ], [ -95.600894081121538, 30.174423273059343 ], [ -95.600445081298204, 30.173314273023948 ], [ -95.599919080636042, 30.172413272979668 ], [ -95.598940080480773, 30.171120272993072 ], [ -95.598445080196825, 30.170224272939162 ], [ -95.598233080712262, 30.169721272656169 ], [ -95.598033080204047, 30.168822272513555 ], [ -95.598012079948688, 30.167092271871653 ], [ -95.598009080695832, 30.166871271588192 ], [ -95.598005080538329, 30.16651627167176 ], [ -95.597995080303889, 30.164731271895199 ], [ -95.597974079580197, 30.162147270753422 ], [ -95.597907079792762, 30.158523270384563 ], [ -95.597931079890188, 30.157802269943488 ], [ -95.597992080200285, 30.156833269816889 ], [ -95.598042079313075, 30.155536269325356 ], [ -95.598007079842063, 30.154704269583014 ], [ -95.59798407917441, 30.154409269772209 ], [ -95.597943079785111, 30.154133269813212 ], [ -95.597491079402701, 30.15221526923095 ], [ -95.597423079343343, 30.151908269387143 ], [ -95.5973460798199, 30.151530269218593 ], [ -95.597307079493632, 30.151245269029577 ], [ -95.597262079242455, 30.150774269228688 ], [ -95.597217079535852, 30.14924026852313 ], [ -95.597181079242802, 30.148369268501945 ], [ -95.59717107952234, 30.148098268086802 ], [ -95.597119079521477, 30.147076268094786 ], [ -95.597083079207636, 30.146079268067059 ], [ -95.596997079011118, 30.143342267362982 ], [ -95.59695807888987, 30.142115267069229 ], [ -95.596867078167293, 30.139788266382087 ], [ -95.596853078655457, 30.139174266032171 ], [ -95.596855078841855, 30.138410266275841 ], [ -95.596873079006542, 30.137907266597498 ], [ -95.596883078833258, 30.137137265973127 ], [ -95.596885078347327, 30.136983266350526 ], [ -95.596898078666541, 30.136631266043686 ], [ -95.596933078588037, 30.135937266123495 ], [ -95.596937078506244, 30.135593266055618 ], [ -95.596934078222219, 30.135428265635618 ], [ -95.59690907878246, 30.13506626521081 ], [ -95.596870078178711, 30.134743265793066 ], [ -95.59684607863916, 30.134585265387589 ], [ -95.596769077953056, 30.134491265880193 ], [ -95.596764078097095, 30.13446526561745 ], [ -95.596758078348856, 30.134447265082976 ], [ -95.596713078426504, 30.134451265369549 ], [ -95.596618077887797, 30.134452265933025 ], [ -95.596536078530605, 30.134435265624266 ], [ -95.59644707793224, 30.134375265400692 ], [ -95.596416077872021, 30.134303265640867 ], [ -95.596397078046479, 30.134221265680637 ], [ -95.596397078685811, 30.134078265499685 ], [ -95.596416078422706, 30.133957265265035 ], [ -95.596403078556278, 30.133896265764275 ], [ -95.596302078291984, 30.133819265531827 ], [ -95.596232078477414, 30.133808265240845 ], [ -95.596169078127758, 30.133819265390624 ], [ -95.59609307856303, 30.13389126503931 ], [ -95.596042077743775, 30.13397926504506 ], [ -95.596005078220685, 30.134094265667873 ], [ -95.595954078290518, 30.134155265569699 ], [ -95.595878078641888, 30.134199265034983 ], [ -95.595815078120225, 30.134221265591965 ], [ -95.595771077654433, 30.134265265286601 ], [ -95.595752078333319, 30.134309265056626 ], [ -95.595771078636631, 30.134353265371509 ], [ -95.595815078561756, 30.134380265330986 ], [ -95.595935078170612, 30.134402265547454 ], [ -95.595973078447997, 30.134419265541457 ], [ -95.596011077686114, 30.134463265585079 ], [ -95.596030078614049, 30.134644265338135 ], [ -95.595866078294961, 30.134738265460655 ], [ -95.595828077973493, 30.134782265398357 ], [ -95.595783078287312, 30.134815265408353 ], [ -95.595259077664721, 30.135051265270704 ], [ -95.595012077778833, 30.135134265725608 ], [ -95.594879077946089, 30.135145265834058 ], [ -95.59482907785457, 30.135128265904903 ], [ -95.594803077561679, 30.135095265718032 ], [ -95.594797077505447, 30.135057265687806 ], [ -95.594803077752871, 30.134980265578051 ], [ -95.594892077714434, 30.134793265280898 ], [ -95.594911077446355, 30.134727265397828 ], [ -95.594841077554889, 30.134600265168611 ], [ -95.594544077495044, 30.134392265767914 ], [ -95.59447407815226, 30.134353265415843 ], [ -95.594335077966875, 30.134342265323436 ], [ -95.594291077249295, 30.134359265346138 ], [ -95.59422807790456, 30.134397265626401 ], [ -95.59416407779996, 30.134474265550956 ], [ -95.594107078119549, 30.134568265304168 ], [ -95.594089078086938, 30.134694266052591 ], [ -95.594095077685111, 30.134765266033224 ], [ -95.594127078114937, 30.134859265754859 ], [ -95.594247078159341, 30.135376266151603 ], [ -95.594253078148256, 30.135486265838242 ], [ -95.59422807819962, 30.135524266166151 ], [ -95.594184077557969, 30.135557265678365 ], [ -95.59413907807496, 30.135579265487753 ], [ -95.594089078088544, 30.135590266251821 ], [ -95.594032077888428, 30.135590266065307 ], [ -95.593962077475084, 30.135574265663706 ], [ -95.593893077812211, 30.135530266138879 ], [ -95.593690077337882, 30.135332265883868 ], [ -95.593627077325763, 30.135288265620897 ], [ -95.593570077399022, 30.13527726557043 ], [ -95.593488077569575, 30.135282265451444 ], [ -95.593317078039831, 30.135315265791647 ], [ -95.593001077997116, 30.135530265588674 ], [ -95.592735077568292, 30.135728265484147 ], [ -95.592641077067242, 30.135755266165067 ], [ -95.592552077775963, 30.135766265794064 ], [ -95.592451077518149, 30.135750266297489 ], [ -95.592160076877661, 30.135651266034792 ], [ -95.592059077632143, 30.135629265539997 ], [ -95.591939076701493, 30.135629265719576 ], [ -95.591863076994443, 30.135657266143603 ], [ -95.5918060775914, 30.135701265536127 ], [ -95.591762077695932, 30.135772265875275 ], [ -95.591686077640745, 30.136223266247505 ], [ -95.591604076748666, 30.136338266204607 ], [ -95.591515076860389, 30.136415265883485 ], [ -95.591174076988779, 30.136630266065168 ], [ -95.591104076634707, 30.136652265765033 ], [ -95.591041077397094, 30.13665226572142 ], [ -95.590965076495053, 30.136635266061564 ], [ -95.590946076546615, 30.136569265730003 ], [ -95.590933076748371, 30.13646526606728 ], [ -95.59092007690181, 30.136069266024204 ], [ -95.590864076554155, 30.135932265910927 ], [ -95.590826077337383, 30.135893266054914 ], [ -95.590756077159455, 30.135877265790775 ], [ -95.590674076594183, 30.135866266228696 ], [ -95.59061707679264, 30.135877266090869 ], [ -95.59054707698138, 30.135921265766545 ], [ -95.590465076628831, 30.136031266133106 ], [ -95.590408076527638, 30.136602266503434 ], [ -95.590352076758762, 30.136707266258718 ], [ -95.590326077095099, 30.136723266470213 ], [ -95.590282076594704, 30.13673426629504 ], [ -95.590004077146872, 30.136745266441128 ], [ -95.589833077016337, 30.13677826602019 ], [ -95.58973207712512, 30.136806265919777 ], [ -95.589637076409289, 30.136844265927905 ], [ -95.589561077052011, 30.136888266418278 ], [ -95.589289076577586, 30.137174266474535 ], [ -95.589061076554515, 30.137317265965351 ], [ -95.588853076207599, 30.137405266672456 ], [ -95.588258076132504, 30.13771326652882 ], [ -95.588176076016268, 30.13776326639951 ], [ -95.588107076776978, 30.137834266850184 ], [ -95.587987076075066, 30.13804926624136 ], [ -95.587955076187782, 30.138175266678715 ], [ -95.587911075830107, 30.138290266270939 ], [ -95.587854076015361, 30.138400266564698 ], [ -95.587462075975765, 30.139016266844884 ], [ -95.587241075884251, 30.139302266950011 ], [ -95.586969076594571, 30.139852267107333 ], [ -95.58690607605881, 30.1400062668266 ], [ -95.586887076080131, 30.140116266971877 ], [ -95.586906075752481, 30.140764267328141 ], [ -95.586899076385919, 30.140902266934965 ], [ -95.586817075722436, 30.141028267274219 ], [ -95.586710076052526, 30.141111267207201 ], [ -95.586621075610012, 30.141133267172698 ], [ -95.586413075743863, 30.141138266768106 ], [ -95.586337076529773, 30.141166266872755 ], [ -95.586248076181178, 30.141281267374037 ], [ -95.585464076047359, 30.142018267720381 ], [ -95.585432075805016, 30.142111267568566 ], [ -95.585420075721274, 30.14224326758 ], [ -95.585439075661668, 30.142419267936756 ], [ -95.585439075946766, 30.142535267084426 ], [ -95.58541407586344, 30.142793267133058 ], [ -95.585357075754729, 30.143178267712209 ], [ -95.585313075480514, 30.143387267950292 ], [ -95.585268076354964, 30.144107267447101 ], [ -95.585193075872098, 30.144805267584442 ], [ -95.58516107635667, 30.144882267818154 ], [ -95.58508507539716, 30.144986268414225 ], [ -95.584769075916853, 30.145234268079982 ], [ -95.584503075438477, 30.145355267964096 ], [ -95.584364076204949, 30.145388268338319 ], [ -95.584225075688011, 30.145443267842388 ], [ -95.584143075797058, 30.145487268213166 ], [ -95.58406707558828, 30.145553268566061 ], [ -95.584023075199653, 30.145635267785948 ], [ -95.583991075204054, 30.145745268492249 ], [ -95.583972075222277, 30.146042268458348 ], [ -95.584093075543123, 30.146355267901953 ], [ -95.584238076067194, 30.146570268721675 ], [ -95.584244075662355, 30.146625268574116 ], [ -95.584238075364865, 30.146658268586449 ], [ -95.584206075960338, 30.146691268180952 ], [ -95.584143075512515, 30.146718268680246 ], [ -95.583897075907686, 30.14672926888133 ], [ -95.583783075948176, 30.146751268497429 ], [ -95.583682075564894, 30.146806268576132 ], [ -95.58343507586676, 30.146988268654336 ], [ -95.583112075409531, 30.147356268752681 ], [ -95.58301807541541, 30.14749426839564 ], [ -95.582948075510203, 30.147559268938579 ], [ -95.582885075955062, 30.147592268691536 ], [ -95.582809075210704, 30.147604268256611 ], [ -95.582720075204392, 30.147598268466208 ], [ -95.58260607502767, 30.14757626851506 ], [ -95.582366075645908, 30.147455268288866 ], [ -95.582265075566283, 30.147444268539882 ], [ -95.582221075337429, 30.147461268344557 ], [ -95.582195075435038, 30.147488268466343 ], [ -95.582170075230778, 30.147549268527747 ], [ -95.582164075016351, 30.147626268853912 ], [ -95.582176075097365, 30.147703268926659 ], [ -95.582297075235246, 30.147977268410092 ], [ -95.582309075102089, 30.148137268485016 ], [ -95.582284074864475, 30.148203268392006 ], [ -95.582227074946942, 30.148274269224274 ], [ -95.582158075666015, 30.14833526874035 ], [ -95.581816074760113, 30.148516269200542 ], [ -95.581468075340311, 30.148846268607922 ], [ -95.581260075033953, 30.149143269234301 ], [ -95.580621074619273, 30.149913269099766 ], [ -95.580501074792892, 30.149995269504632 ], [ -95.580374075057122, 30.150061269286038 ], [ -95.580349075059345, 30.150066269011614 ], [ -95.580197075237962, 30.150100269550222 ], [ -95.580102075011084, 30.150111269335362 ], [ -95.579931074771281, 30.150122269250847 ], [ -95.57979907507611, 30.150116269171125 ], [ -95.579622074451592, 30.150067268804779 ], [ -95.579280075020975, 30.149814268859451 ], [ -95.579122074580752, 30.149775269572544 ], [ -95.578932074513332, 30.149830269211158 ], [ -95.578723074395569, 30.150067269615995 ], [ -95.578685074829565, 30.150138269344509 ], [ -95.578628074193574, 30.150193269184708 ], [ -95.578439074586484, 30.150254269027961 ], [ -95.578331074322989, 30.150270268898144 ], [ -95.578217074641728, 30.150270269124256 ], [ -95.578034073971722, 30.150254269126204 ], [ -95.577743074420979, 30.150133269466764 ], [ -95.577623073986416, 30.150116269600598 ], [ -95.577503074233917, 30.150116269102803 ], [ -95.577401074595699, 30.150193269128405 ], [ -95.577344074641005, 30.15027026956389 ], [ -95.577053074437799, 30.150573269332106 ], [ -95.576699073777732, 30.15074926957373 ], [ -95.576579074020586, 30.150727269873734 ], [ -95.576446073574516, 30.15072126993563 ], [ -95.576351074083306, 30.150699269064617 ], [ -95.576250074391979, 30.150688269403165 ], [ -95.576155074378534, 30.150694269295617 ], [ -95.576079073776228, 30.150721269164677 ], [ -95.576010073889165, 30.150776269389532 ], [ -95.575953073780411, 30.150837269756629 ], [ -95.575947073562389, 30.150908269116844 ], [ -95.575966073695653, 30.151112269691382 ], [ -95.575909073503126, 30.151266269779388 ], [ -95.575858073817287, 30.151315269780962 ], [ -95.575618073349688, 30.151463269888367 ], [ -95.575517073305363, 30.151557269951354 ], [ -95.575428073494336, 30.15165626930083 ], [ -95.575359073374472, 30.15169426973311 ], [ -95.575232073572906, 30.151722269576318 ], [ -95.575106073274142, 30.15172726930648 ], [ -95.574840073901413, 30.151700269676741 ], [ -95.574796073110036, 30.151705270177629 ], [ -95.574720073995195, 30.151733270205266 ], [ -95.574637073941062, 30.15178826977743 ], [ -95.574536073026934, 30.151892269685739 ], [ -95.574422073515862, 30.151991269919101 ], [ -95.574359073843965, 30.152019269528214 ], [ -95.574290073790209, 30.152019269730275 ], [ -95.57423907373267, 30.152002269415306 ], [ -95.574150073137147, 30.151870269837698 ], [ -95.574036073612177, 30.151744269654209 ], [ -95.573923073385146, 30.151667269798917 ], [ -95.573815073635373, 30.15160726940216 ], [ -95.573663073201828, 30.151552269949782 ], [ -95.573562072892969, 30.151541270078141 ], [ -95.573417073026405, 30.151541270023515 ], [ -95.573265073336586, 30.151563269524363 ], [ -95.572759073442512, 30.15165126959517 ], [ -95.572601073459637, 30.151695270038633 ], [ -95.572487072792384, 30.151766269527958 ], [ -95.572379073301263, 30.151959269997004 ], [ -95.572348072816354, 30.151981270073815 ], [ -95.572278072704094, 30.151981269936655 ], [ -95.572221072686119, 30.151970270117726 ], [ -95.572171072799776, 30.151937269721984 ], [ -95.57210107321994, 30.151827270227002 ], [ -95.572031072639163, 30.151783269511185 ], [ -95.571974072758962, 30.151772269586829 ], [ -95.571911072811275, 30.15178326949006 ], [ -95.571835073060925, 30.15188227019808 ], [ -95.571797072567435, 30.151997270286152 ], [ -95.571772072555177, 30.152184269983117 ], [ -95.571772072472896, 30.152272269940397 ], [ -95.571867072644196, 30.152431269746067 ], [ -95.57188007260082, 30.152574269812231 ], [ -95.571854072648634, 30.152640270367822 ], [ -95.571804073193249, 30.152712270172877 ], [ -95.571728072776651, 30.152772270208242 ], [ -95.571532072478007, 30.152860269895463 ], [ -95.571468072550545, 30.15291026997135 ], [ -95.571374072616578, 30.153053270575835 ], [ -95.571266072630124, 30.153135270013316 ], [ -95.571203073248171, 30.153135269962981 ], [ -95.571159072506589, 30.153108270299409 ], [ -95.571076072373529, 30.153020270405978 ], [ -95.571000072232138, 30.152893270492189 ], [ -95.570804072152981, 30.152640269860964 ], [ -95.570703072522718, 30.152574270498924 ], [ -95.570608072413947, 30.152536269693808 ], [ -95.570399072406715, 30.152547269986545 ], [ -95.570330072360122, 30.15257427003792 ], [ -95.570292072243916, 30.152613270281865 ], [ -95.570286072160471, 30.152668269942513 ], [ -95.570336072667388, 30.152761270089428 ], [ -95.570722073062086, 30.153168270584768 ], [ -95.570728073035951, 30.153229269989552 ], [ -95.570716072167698, 30.153261269936959 ], [ -95.570684072378953, 30.153278270495626 ], [ -95.570640072252615, 30.153278269830896 ], [ -95.57050107233232, 30.153262270324081 ], [ -95.570279072671482, 30.153218270218282 ], [ -95.570191072910333, 30.153223270269635 ], [ -95.570121072671412, 30.153273270175294 ], [ -95.570020072372557, 30.153366269854477 ], [ -95.569919072028227, 30.153437270145542 ], [ -95.569862072753963, 30.153520270039692 ], [ -95.569843072835909, 30.153586269999025 ], [ -95.569843072349911, 30.153646269913501 ], [ -95.56988707191887, 30.15374027058165 ], [ -95.56996907244735, 30.153850270287844 ], [ -95.57007707283887, 30.153927270487905 ], [ -95.570153072862766, 30.154004270649168 ], [ -95.570191072446789, 30.154092270040589 ], [ -95.570223072855441, 30.154356270648865 ], [ -95.57026107247566, 30.154476270793158 ], [ -95.570368072579868, 30.15509227043065 ], [ -95.570488072205691, 30.155367271014384 ], [ -95.570514072920247, 30.15548827107289 ], [ -95.570514072786352, 30.155576270939743 ], [ -95.570463073049865, 30.155829270463947 ], [ -95.570381072946731, 30.156098270679799 ], [ -95.57031807296255, 30.156181271164463 ], [ -95.570267072281524, 30.156214270478415 ], [ -95.569989072532721, 30.156307271254374 ], [ -95.56975507275574, 30.156345270567019 ], [ -95.569590072209422, 30.156384270688473 ], [ -95.569438072048996, 30.156450270912568 ], [ -95.56929907279013, 30.156538270556048 ], [ -95.569223072176484, 30.156631270829923 ], [ -95.56918507190592, 30.156725270767499 ], [ -95.569179072477525, 30.15681827089923 ], [ -95.569211072552903, 30.156912270703405 ], [ -95.569261072401162, 30.156983270858916 ], [ -95.569325072399423, 30.157049270757259 ], [ -95.569407072226269, 30.157088271098896 ], [ -95.569641072839545, 30.157154270786069 ], [ -95.56973607251463, 30.157165271169497 ], [ -95.569793072530246, 30.157187270688031 ], [ -95.56985607253786, 30.157230270844511 ], [ -95.569932072621953, 30.15732927115177 ], [ -95.569926072896962, 30.157412270696057 ], [ -95.569843072820547, 30.157522270977207 ], [ -95.569698072974461, 30.157643271279678 ], [ -95.569559072927973, 30.157863271333149 ], [ -95.569476072681738, 30.157923271225759 ], [ -95.569337072388592, 30.157978271064827 ], [ -95.569122072392261, 30.158011271152915 ], [ -95.568907072517035, 30.158028271429231 ], [ -95.568736072718124, 30.158072271725622 ], [ -95.568167072689647, 30.158418271771794 ], [ -95.568041072667711, 30.158511271239565 ], [ -95.567965071763737, 30.15863227167404 ], [ -95.567965072382307, 30.158726271307643 ], [ -95.568022072673713, 30.158836271366614 ], [ -95.568173072157663, 30.159039271678502 ], [ -95.568174071966496, 30.159116271168497 ], [ -95.568142072312568, 30.159182271326742 ], [ -95.568060071779371, 30.159243271462433 ], [ -95.567990072394764, 30.159259271418744 ], [ -95.567870071919117, 30.159259271612857 ], [ -95.56752807201363, 30.159204271444644 ], [ -95.567402072503938, 30.15919927176235 ], [ -95.567256072106105, 30.159204271244644 ], [ -95.567193072415336, 30.159237271929669 ], [ -95.567117072441221, 30.159391271728758 ], [ -95.567073072327176, 30.159446271763745 ], [ -95.566991072187875, 30.159501271471207 ], [ -95.566883072436482, 30.159545271409097 ], [ -95.566655071926519, 30.159583271475409 ], [ -95.566592071571279, 30.159622271670699 ], [ -95.566541071516156, 30.159693271977055 ], [ -95.566459071509286, 30.159908271513018 ], [ -95.565953071710354, 30.160507271563297 ], [ -95.565795071581192, 30.160622271859779 ], [ -95.565669071238318, 30.160694271641326 ], [ -95.565580071738054, 30.160721271466794 ], [ -95.565479071924202, 30.160738272086185 ], [ -95.565327071157682, 30.160727272119875 ], [ -95.565200071491901, 30.160688272186793 ], [ -95.564049071030851, 30.160254272241701 ], [ -95.563486071261408, 30.160084272151447 ], [ -95.563410071064609, 30.160073271681316 ], [ -95.563366071152274, 30.160078272167528 ], [ -95.563322071153365, 30.160106271894939 ], [ -95.563277071221378, 30.160216272298491 ], [ -95.563277070777261, 30.160315271793792 ], [ -95.563397071135952, 30.160546271779175 ], [ -95.563404071245856, 30.160595272096113 ], [ -95.563391071373729, 30.160639271641998 ], [ -95.563334070722348, 30.160689271612789 ], [ -95.563233070966803, 30.160700271654623 ], [ -95.563106071009145, 30.160661272423845 ], [ -95.563037070595698, 30.160606272389877 ], [ -95.562986071486222, 30.160529271702952 ], [ -95.562898070432524, 30.160441271919851 ], [ -95.562689071271592, 30.160265272102158 ], [ -95.562613070755077, 30.16013327145426 ], [ -95.562506071106213, 30.159705271589612 ], [ -95.5623090710002, 30.159133271614134 ], [ -95.562202070855818, 30.158913271936328 ], [ -95.562139071122203, 30.158842271765835 ], [ -95.562063070395965, 30.158825271579694 ], [ -95.561980070632188, 30.158853271587564 ], [ -95.561721070839653, 30.158995272037927 ], [ -95.561601070654973, 30.159034271734498 ], [ -95.561468070688221, 30.159056271744547 ], [ -95.561240070934133, 30.15906727165634 ], [ -95.561095070829538, 30.159105271843615 ], [ -95.560994070737081, 30.159171272057794 ], [ -95.560772069879093, 30.159358271902502 ], [ -95.560639070108977, 30.159419271694457 ], [ -95.560449070029463, 30.159424271671192 ], [ -95.560355070182652, 30.159408271535014 ], [ -95.560291069715177, 30.159408271567877 ], [ -95.560197069858944, 30.159347271821272 ], [ -95.560171070608888, 30.159215271854166 ], [ -95.560348069764515, 30.158902271680663 ], [ -95.560443070504775, 30.158710271389435 ], [ -95.560450069963281, 30.15852327200713 ], [ -95.560393069951687, 30.158374271528839 ], [ -95.56025307060527, 30.158336271931361 ], [ -95.560032070114417, 30.158495271774775 ], [ -95.559804069561878, 30.158688271727257 ], [ -95.559235069543618, 30.159243271658909 ], [ -95.558906070311323, 30.159523271962701 ], [ -95.558691069942867, 30.159793271659019 ], [ -95.558545069325106, 30.159908271847492 ], [ -95.558368069300769, 30.160073271575005 ], [ -95.558248070225773, 30.160221272196821 ], [ -95.558179069602033, 30.160326271835505 ], [ -95.558103070002574, 30.160392272300236 ], [ -95.557774069361528, 30.160551271802326 ], [ -95.557540069619435, 30.160705271847654 ], [ -95.557432070025726, 30.160804272540055 ], [ -95.557394069803834, 30.160853272514277 ], [ -95.557369069723407, 30.160908271903875 ], [ -95.557362069344578, 30.160974272133796 ], [ -95.557381069059602, 30.161046272296204 ], [ -95.557445070067615, 30.161090272262328 ], [ -95.557546069443831, 30.16112327244873 ], [ -95.557641069282369, 30.161178272699019 ], [ -95.557685069908189, 30.161255272420838 ], [ -95.557710069741574, 30.161348271947965 ], [ -95.557717069685467, 30.161414272075561 ], [ -95.557717069650394, 30.161634272377547 ], [ -95.557742069185409, 30.161673272673251 ], [ -95.557799069285494, 30.16169527272293 ], [ -95.55787507005742, 30.161695272188208 ], [ -95.558103069608578, 30.161612271975358 ], [ -95.558235070256742, 30.161579272556359 ], [ -95.55842507033671, 30.161579272738056 ], [ -95.558526070263426, 30.161601272524475 ], [ -95.558590069780735, 30.161634272225271 ], [ -95.558697070240299, 30.161766272051498 ], [ -95.558723070366241, 30.161849271977005 ], [ -95.558729069443586, 30.161909272785671 ], [ -95.558672069538886, 30.162085272249946 ], [ -95.558564069574871, 30.162228272390468 ], [ -95.558349069782622, 30.1624042726304 ], [ -95.558273069721935, 30.162475272098458 ], [ -95.558235069590594, 30.162530272093065 ], [ -95.558204069629241, 30.162690272697507 ], [ -95.558210069926503, 30.162772272841213 ], [ -95.558242070348598, 30.162843272376293 ], [ -95.558362069789169, 30.162970272937557 ], [ -95.558469069859044, 30.16304127299799 ], [ -95.558590069603113, 30.163058272689497 ], [ -95.558716069896988, 30.163025272725427 ], [ -95.558881070068267, 30.163019272849187 ], [ -95.55912706997114, 30.163047272798295 ], [ -95.559216070398151, 30.163074272734374 ], [ -95.559260070000704, 30.163113273038821 ], [ -95.559267070635443, 30.163206273052278 ], [ -95.559248069965008, 30.163261272721158 ], [ -95.559178070274072, 30.163338272499697 ], [ -95.558741070341824, 30.163690272360533 ], [ -95.558507070375086, 30.163954273154754 ], [ -95.558463070066338, 30.164080272632372 ], [ -95.558457070041868, 30.164278273333206 ], [ -95.558564070469316, 30.164702273382471 ], [ -95.558596069978591, 30.164971273415244 ], [ -95.55858307010017, 30.165141272828418 ], [ -95.558552069706565, 30.165246273358413 ], [ -95.558501070144516, 30.165350273199916 ], [ -95.558438070026895, 30.165438273453006 ], [ -95.558362070233656, 30.165510272914236 ], [ -95.558331070204034, 30.165528273579522 ], [ -95.55828007036844, 30.165559273046195 ], [ -95.55819706992007, 30.16558127279886 ], [ -95.558115070064417, 30.165570273019082 ], [ -95.558052069574813, 30.165532272753584 ], [ -95.558008070129844, 30.16546627300551 ], [ -95.557963070204565, 30.165328273491266 ], [ -95.557944069992573, 30.165147272637224 ], [ -95.557868069829354, 30.16488327295102 ], [ -95.557767069371195, 30.164767273140559 ], [ -95.557704069808452, 30.164751272889635 ], [ -95.557628069620719, 30.1647452726951 ], [ -95.557527069620789, 30.164789272885063 ], [ -95.557438069588329, 30.164894272985418 ], [ -95.557305069511415, 30.165174273228001 ], [ -95.557280070141772, 30.165400273249045 ], [ -95.557356070292059, 30.165889273019612 ], [ -95.557350069621819, 30.165960273267473 ], [ -95.557318070071517, 30.166010273242382 ], [ -95.557261070001047, 30.166037273268369 ], [ -95.557185070085637, 30.166010273553319 ], [ -95.557090069817761, 30.165938272846777 ], [ -95.557008069229255, 30.165850273118043 ], [ -95.556945069836047, 30.165817273098103 ], [ -95.556900070133963, 30.165817273186892 ], [ -95.556863070085456, 30.165839273277847 ], [ -95.55680606954472, 30.165911273422566 ], [ -95.556629069539468, 30.166103273521166 ], [ -95.556572069649107, 30.166213273230582 ], [ -95.556565069810787, 30.166422273092124 ], [ -95.556590069101503, 30.16648327367405 ], [ -95.556641069481245, 30.166647273788257 ], [ -95.556616069810701, 30.166697273132726 ], [ -95.556591069858527, 30.166730273030513 ], [ -95.55639407002451, 30.16676327347432 ], [ -95.556331069034428, 30.166790273862478 ], [ -95.55626806945466, 30.16685127312812 ], [ -95.556205069527465, 30.166950273799799 ], [ -95.5560400694702, 30.167082273587344 ], [ -95.55601506996166, 30.167153273931724 ], [ -95.556059068997413, 30.167247273356676 ], [ -95.556059069739263, 30.167285273913372 ], [ -95.556034069594844, 30.167335274038503 ], [ -95.555989069966827, 30.167373273476294 ], [ -95.555952069179384, 30.167384273670681 ], [ -95.555882069597814, 30.167384273412551 ], [ -95.555755069123322, 30.167373273766358 ], [ -95.555521068920072, 30.167313273855623 ], [ -95.555414069798204, 30.167302273279759 ], [ -95.555338069638864, 30.167318273821806 ], [ -95.554806068791123, 30.167521273421922 ], [ -95.554718068705768, 30.167571273896503 ], [ -95.55467406953278, 30.167620273790892 ], [ -95.554623068695463, 30.1676862734225 ], [ -95.554585069485654, 30.167769274173001 ], [ -95.554541069039146, 30.167835273426842 ], [ -95.554433069147251, 30.167873273713134 ], [ -95.554313068682589, 30.16786227417716 ], [ -95.554275069239992, 30.167890273952931 ], [ -95.554262068602412, 30.167934273494939 ], [ -95.554269068760348, 30.167994273876172 ], [ -95.554250069133531, 30.168033273382836 ], [ -95.554205069505926, 30.168071274043395 ], [ -95.554129069500988, 30.168110274060222 ], [ -95.553990069487782, 30.168148273402185 ], [ -95.553535068940164, 30.168302274238179 ], [ -95.55342706932602, 30.168373273548685 ], [ -95.553307069265628, 30.168472274009616 ], [ -95.552978069238705, 30.168846273965848 ], [ -95.552826068401032, 30.169182273926044 ], [ -95.552782068372977, 30.169533273937414 ], [ -95.552807068769553, 30.169665273736484 ], [ -95.552934069202308, 30.169819273994808 ], [ -95.552953069203099, 30.169863274608492 ], [ -95.552953069159685, 30.169902274198297 ], [ -95.55276306882736, 30.170111274094623 ], [ -95.552510069240256, 30.170358274749269 ], [ -95.552212068484906, 30.170506274103591 ], [ -95.552067068992514, 30.170556274431608 ], [ -95.551833068099583, 30.170594274031618 ], [ -95.551428068257707, 30.170611274101816 ], [ -95.551074068098586, 30.170528273972337 ], [ -95.550903067914334, 30.170473274370416 ], [ -95.550808068069045, 30.170418274212921 ], [ -95.550745068524066, 30.170352274272243 ], [ -95.550713068600359, 30.170248274206447 ], [ -95.550656068682542, 30.170121274803094 ], [ -95.550599068625672, 30.170077274419626 ], [ -95.550504068447722, 30.170055274729989 ], [ -95.550409068098887, 30.170055274240472 ], [ -95.550087067951736, 30.170149274602796 ], [ -95.549872068154087, 30.170182274383087 ], [ -95.549777067845397, 30.170176274551785 ], [ -95.549669067687674, 30.170154273959799 ], [ -95.549448067864631, 30.169978274085345 ], [ -95.549359067867925, 30.169830274532561 ], [ -95.549321067789663, 30.16959427432457 ], [ -95.549277067754034, 30.169517273878927 ], [ -95.549214067878523, 30.169445274246776 ], [ -95.54900006806642, 30.169324274373004 ], [ -95.548923067528847, 30.169280273802848 ], [ -95.548834067269809, 30.169253274421838 ], [ -95.548651068155777, 30.169231274388633 ], [ -95.5485680676762, 30.169236274263479 ], [ -95.548467067743303, 30.169264274624627 ], [ -95.548404067922903, 30.169297273912658 ], [ -95.548353068116114, 30.169352274338127 ], [ -95.548322067848346, 30.169407274253299 ], [ -95.54830906798351, 30.169456274025062 ], [ -95.548309067967068, 30.169522274600482 ], [ -95.548410068150687, 30.169660274402805 ], [ -95.548625067886164, 30.169907274185405 ], [ -95.548625067885808, 30.169962274199602 ], [ -95.54860606739544, 30.170017274204852 ], [ -95.548404068063618, 30.170132274827978 ], [ -95.548359068161233, 30.170138274617074 ], [ -95.548271068023411, 30.170116274208119 ], [ -95.548138067810243, 30.170061274718559 ], [ -95.54808706718282, 30.170017274623923 ], [ -95.548043068025194, 30.169951274337258 ], [ -95.547967067213847, 30.169758273917896 ], [ -95.547923067064772, 30.169681273909877 ], [ -95.547853067560567, 30.169599273967627 ], [ -95.547752067506678, 30.169533274118159 ], [ -95.547664067792752, 30.169489274008082 ], [ -95.547442067575247, 30.169396273928488 ], [ -95.547328067167953, 30.169302274089311 ], [ -95.547271067534624, 30.169192274351293 ], [ -95.547183066869223, 30.169060273979287 ], [ -95.547132066867022, 30.169044274411569 ], [ -95.547094067288583, 30.169044273998523 ], [ -95.547044067357774, 30.16906027467487 ], [ -95.546841067244983, 30.169264274262638 ], [ -95.5467530675201, 30.169313274186987 ], [ -95.546556067291888, 30.169357274487037 ], [ -95.546405066966074, 30.169362274122804 ], [ -95.54596206732333, 30.169434274241592 ], [ -95.545759066873956, 30.169515274325533 ], [ -95.54570206674282, 30.169538274184585 ], [ -95.545626067155226, 30.169538274343715 ], [ -95.545525066544201, 30.169522274798567 ], [ -95.54531006727558, 30.169439274586814 ], [ -95.545202066844311, 30.169379274255629 ], [ -95.545165066792308, 30.16934627473222 ], [ -95.545139066461317, 30.169302274584854 ], [ -95.545127066829608, 30.169186274269045 ], [ -95.545101067071855, 30.169109274256439 ], [ -95.545051067256509, 30.169049274778555 ], [ -95.545000066933682, 30.16901127417146 ], [ -95.544956067131366, 30.169000274661247 ], [ -95.544899066280834, 30.169016274382553 ], [ -95.544829067122507, 30.169054274448758 ], [ -95.544785066309885, 30.16909827404125 ], [ -95.544747066226165, 30.169175274156462 ], [ -95.544728067031372, 30.169329274225628 ], [ -95.544690066818092, 30.169406274317534 ], [ -95.544640066421692, 30.169450274125552 ], [ -95.544557066648039, 30.169511274311233 ], [ -95.543880066007318, 30.169890274661814 ], [ -95.543792066920759, 30.170027274457713 ], [ -95.543621066917467, 30.170148274398016 ], [ -95.543526066308232, 30.170181274328428 ], [ -95.543437066211212, 30.170198274509445 ], [ -95.543361066099308, 30.170198274291391 ], [ -95.543304066216649, 30.170176274568203 ], [ -95.54326006616941, 30.170132274640814 ], [ -95.543127066245077, 30.169846274633823 ], [ -95.543077065987674, 30.169802274813573 ], [ -95.543026066196248, 30.169769274221668 ], [ -95.542963065975144, 30.169763274918402 ], [ -95.542900066234409, 30.169763274509023 ], [ -95.542849066070616, 30.1697962744975 ], [ -95.542792066024433, 30.16989527439458 ], [ -95.542798065977053, 30.16996127487992 ], [ -95.542824066722162, 30.17002727481524 ], [ -95.542906066380681, 30.170121274931198 ], [ -95.543077066667308, 30.17034627499778 ], [ -95.543083065866796, 30.170429274900453 ], [ -95.543051066618659, 30.170456275045439 ], [ -95.54299406655413, 30.170484274525595 ], [ -95.542944066671453, 30.170489274952907 ], [ -95.542830066161955, 30.170472274272882 ], [ -95.542716066324644, 30.170445274727737 ], [ -95.542634066118708, 30.170379274524912 ], [ -95.542564065991058, 30.170352274539283 ], [ -95.54246306634694, 30.170346275130843 ], [ -95.542229065783062, 30.170379274526191 ], [ -95.542185065953532, 30.17041727440326 ], [ -95.542147065804926, 30.170478274303047 ], [ -95.542090065728985, 30.170516274900123 ], [ -95.542039066301925, 30.170533275105221 ], [ -95.541982066525961, 30.170533275043265 ], [ -95.541837066161435, 30.170439274348247 ], [ -95.541735065495146, 30.170390274369609 ], [ -95.541501065435781, 30.170324274680794 ], [ -95.541406065750607, 30.170284274510752 ], [ -95.541253066027821, 30.170519274891596 ], [ -95.540320066222662, 30.171928274937589 ], [ -95.539459065299567, 30.17326227493615 ], [ -95.538596065793541, 30.174468276106307 ], [ -95.538013065005984, 30.175222275453947 ], [ -95.537756064786535, 30.175614276002786 ], [ -95.537558065238102, 30.175980276102489 ], [ -95.536101064459146, 30.177866276651901 ], [ -95.534752064650107, 30.17968827661333 ], [ -95.535291064299912, 30.180008276484077 ], [ -95.5362640646144, 30.180533277336647 ], [ -95.537068065283378, 30.180930277390264 ], [ -95.537933065494983, 30.181288277226887 ], [ -95.538634065858588, 30.181511277046305 ], [ -95.539237066154598, 30.181661277076103 ], [ -95.539720065604641, 30.181760277182043 ], [ -95.540269066202768, 30.181822276957114 ], [ -95.540922066002295, 30.1818672769034 ], [ -95.541367066415248, 30.181871276892437 ], [ -95.541576066091039, 30.181874277262914 ], [ -95.54228006627666, 30.181823276965794 ], [ -95.542938066717952, 30.181747277207801 ], [ -95.543619066584441, 30.181673276471564 ], [ -95.544261067632604, 30.181602277040597 ], [ -95.546831068249091, 30.181305277149036 ], [ -95.548605068578667, 30.181111276201698 ], [ -95.549544068821945, 30.181053276246743 ], [ -95.550287068466474, 30.181028276624144 ], [ -95.551166069024973, 30.18104227690192 ], [ -95.551946069031217, 30.181087276924881 ], [ -95.552910069620197, 30.181197276695055 ], [ -95.553420069965213, 30.181259276941478 ], [ -95.554025069341876, 30.181371276424908 ], [ -95.554739070212136, 30.18154327633593 ], [ -95.555549070282069, 30.181757276713657 ], [ -95.556055069840411, 30.181915276194708 ], [ -95.556630070044932, 30.18210927616828 ], [ -95.557244070536072, 30.18235327660657 ], [ -95.557692070448851, 30.1825552769394 ], [ -95.557980071160998, 30.182685276540493 ], [ -95.55833507079717, 30.182853276297084 ], [ -95.558893071491667, 30.183118276294486 ], [ -95.560038070891252, 30.183629276419587 ], [ -95.560426071010738, 30.183810276807261 ], [ -95.561252072137478, 30.184193276525459 ], [ -95.562272071692561, 30.184671277022026 ], [ -95.562967072341948, 30.185013276550208 ], [ -95.563442072620958, 30.185279276832269 ], [ -95.563998072311108, 30.185617277212337 ], [ -95.565348072471238, 30.186499277523417 ], [ -95.567249073327588, 30.184561276755634 ], [ -95.567768073769258, 30.184055276597284 ], [ -95.568122072859111, 30.183694276129504 ], [ -95.568671073431773, 30.183134276386252 ], [ -95.568880073395135, 30.18291427636435 ], [ -95.569058073028842, 30.182666276570068 ], [ -95.569924073447282, 30.18137327560575 ], [ -95.570349073610473, 30.18074827621593 ], [ -95.570538074244752, 30.180505275715024 ], [ -95.570747073993047, 30.18027727583879 ], [ -95.571084074095666, 30.179953276006422 ], [ -95.571351074317334, 30.179739275980676 ], [ -95.571554074032989, 30.179596275438172 ], [ -95.571667074064194, 30.179521275772476 ], [ -95.57178207407658, 30.179445275563658 ], [ -95.572029074405066, 30.179325275167336 ], [ -95.572254074287002, 30.179248275278429 ], [ -95.572652074485148, 30.179167275418052 ], [ -95.573175074648319, 30.179115275032931 ], [ -95.573369074779706, 30.179111274991403 ], [ -95.573570074337425, 30.179136275668299 ], [ -95.57383107508457, 30.179197275126668 ], [ -95.574188074293161, 30.179314275221394 ], [ -95.574615074733543, 30.17943527538349 ], [ -95.574884075033637, 30.179477275037307 ], [ -95.575181074538804, 30.179510275045491 ], [ -95.575481075009009, 30.179506275647871 ], [ -95.575597075562925, 30.179496275005704 ], [ -95.576506075361209, 30.17941927544436 ], [ -95.578222075669075, 30.179180275503839 ], [ -95.578211075956318, 30.179127275195007 ], [ -95.57820007548743, 30.179078275592225 ], [ -95.578187075450799, 30.179022275086115 ], [ -95.578172075791628, 30.178959275479041 ], [ -95.578157075288885, 30.178891275162421 ], [ -95.578142075545742, 30.178819275035519 ], [ -95.578124075581528, 30.178743275500484 ], [ -95.578101076136974, 30.178667275180729 ], [ -95.578075075303929, 30.178592275201307 ], [ -95.578040075794192, 30.178517274718985 ], [ -95.578001075164224, 30.178444275276433 ], [ -95.577959075579429, 30.178369275453427 ], [ -95.577916075152416, 30.178293275475344 ], [ -95.57787007607277, 30.178219274946208 ], [ -95.577833075210037, 30.178167274846459 ], [ -95.577820075896341, 30.178147275445163 ], [ -95.577765076006315, 30.178078274993538 ], [ -95.577708075540386, 30.178009275080324 ], [ -95.577652075740374, 30.17794427514546 ], [ -95.577595075391827, 30.177882274878105 ], [ -95.577520075465983, 30.177809274841398 ], [ -95.576867075765463, 30.177418274679223 ], [ -95.576789075507278, 30.174176274162921 ], [ -95.583288077213098, 30.174212274400382 ], [ -95.583219076881093, 30.169783272827626 ], [ -95.583324076383491, 30.168650272526595 ], [ -95.583425077051686, 30.16872927260204 ], [ -95.583900076780125, 30.168775272508878 ], [ -95.584005077166523, 30.168591272535032 ], [ -95.58392607685785, 30.168408272526289 ], [ -95.583478076095375, 30.167996272717623 ], [ -95.584100076449388, 30.168009273067288 ], [ -95.584064077099583, 30.167615272240866 ], [ -95.584691077138942, 30.167620272625861 ], [ -95.584205076923197, 30.167061272252155 ], [ -95.584928076830877, 30.167126272171917 ], [ -95.585139076526431, 30.167080272851489 ], [ -95.585588077194245, 30.166736272813807 ], [ -95.58627307766416, 30.166507272596427 ], [ -95.58674707778205, 30.166508272593259 ], [ -95.587011077493145, 30.166691272495868 ], [ -95.589696078169638, 30.166622272570173 ], [ -95.591279078755321, 30.166642272563177 ], [ -95.591447078589013, 30.166644272227416 ], [ -95.591539078585399, 30.16663027220385 ], [ -95.591606078258422, 30.166591272534454 ], [ -95.591741078444869, 30.166454272045595 ], [ -95.591810078532887, 30.16640127209271 ], [ -95.592295078327325, 30.16641027182623 ], [ -95.595533079545106, 30.166470272173925 ], [ -95.595640079518134, 30.168152272255799 ], [ -95.597540080329352, 30.168188272547969 ], [ -95.597575080697965, 30.168905272085837 ], [ -95.596249079657369, 30.169263272366155 ], [ -95.595676080125671, 30.169192272906209 ], [ -95.595683079340574, 30.170082272536106 ], [ -95.595920080055819, 30.170517272713958 ], [ -95.597132080615594, 30.171685272993848 ], [ -95.59797608035467, 30.172808273566535 ], [ -95.598266080124588, 30.173037273458274 ], [ -95.598793080908777, 30.173747273612381 ], [ -95.599636081509459, 30.174457273349798 ], [ -95.599926081049247, 30.174938273591902 ], [ -95.600164081582321, 30.17519027340305 ], [ -95.600849081632063, 30.175396274051732 ], [ -95.600979081126226, 30.175509273621817 ], [ -95.6009820814254, 30.175474273470257 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1252, "Tract": "48339690605", "Area_SqMi": 2.214342938361987, "total_2009": 890, "total_2010": 735, "total_2011": 1128, "total_2012": 867, "total_2013": 961, "total_2014": 1030, "total_2015": 1008, "total_2016": 1259, "total_2017": 1239, "total_2018": 1257, "total_2019": 1364, "total_2020": 1332, "age1": 401, "age2": 821, "age3": 274, "earn1": 243, "earn2": 444, "earn3": 809, "naics_s01": 3, "naics_s02": 2, "naics_s03": 2, "naics_s04": 18, "naics_s05": 59, "naics_s06": 31, "naics_s07": 208, "naics_s08": 2, "naics_s09": 11, "naics_s10": 48, "naics_s11": 24, "naics_s12": 78, "naics_s13": 4, "naics_s14": 39, "naics_s15": 1, "naics_s16": 351, "naics_s17": 318, "naics_s18": 222, "naics_s19": 75, "naics_s20": 0, "race1": 1206, "race2": 134, "race3": 11, "race4": 122, "race5": 4, "race6": 19, "ethnicity1": 1144, "ethnicity2": 352, "edu1": 174, "edu2": 244, "edu3": 355, "edu4": 322, "Shape_Length": 32530.612495656012, "Shape_Area": 61732091.235716514, "total_2021": 1392, "total_2022": 1496 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.564812072285179, 30.187088277664305 ], [ -95.565348072471238, 30.186499277523417 ], [ -95.563998072311108, 30.185617277212337 ], [ -95.563442072620958, 30.185279276832269 ], [ -95.562967072341948, 30.185013276550208 ], [ -95.562272071692561, 30.184671277022026 ], [ -95.561252072137478, 30.184193276525459 ], [ -95.560426071010738, 30.183810276807261 ], [ -95.560038070891252, 30.183629276419587 ], [ -95.558893071491667, 30.183118276294486 ], [ -95.55833507079717, 30.182853276297084 ], [ -95.557980071160998, 30.182685276540493 ], [ -95.557692070448851, 30.1825552769394 ], [ -95.557244070536072, 30.18235327660657 ], [ -95.556630070044932, 30.18210927616828 ], [ -95.556055069840411, 30.181915276194708 ], [ -95.555549070282069, 30.181757276713657 ], [ -95.554739070212136, 30.18154327633593 ], [ -95.554025069341876, 30.181371276424908 ], [ -95.553420069965213, 30.181259276941478 ], [ -95.552910069620197, 30.181197276695055 ], [ -95.551946069031217, 30.181087276924881 ], [ -95.551166069024973, 30.18104227690192 ], [ -95.550287068466474, 30.181028276624144 ], [ -95.549544068821945, 30.181053276246743 ], [ -95.548605068578667, 30.181111276201698 ], [ -95.546831068249091, 30.181305277149036 ], [ -95.544261067632604, 30.181602277040597 ], [ -95.543619066584441, 30.181673276471564 ], [ -95.542938066717952, 30.181747277207801 ], [ -95.54228006627666, 30.181823276965794 ], [ -95.541576066091039, 30.181874277262914 ], [ -95.541367066415248, 30.181871276892437 ], [ -95.540922066002295, 30.1818672769034 ], [ -95.540269066202768, 30.181822276957114 ], [ -95.539720065604641, 30.181760277182043 ], [ -95.539237066154598, 30.181661277076103 ], [ -95.538634065858588, 30.181511277046305 ], [ -95.537933065494983, 30.181288277226887 ], [ -95.537068065283378, 30.180930277390264 ], [ -95.5362640646144, 30.180533277336647 ], [ -95.535291064299912, 30.180008276484077 ], [ -95.534752064650107, 30.17968827661333 ], [ -95.53467006500486, 30.179798276899518 ], [ -95.53373306472551, 30.180923276829486 ], [ -95.533288063910803, 30.181642277029038 ], [ -95.533007064307938, 30.182206277003342 ], [ -95.532809064380359, 30.182840277985996 ], [ -95.532718064744117, 30.183534278044178 ], [ -95.532711064489234, 30.184215277436284 ], [ -95.532723064377222, 30.184368278100226 ], [ -95.533230064251143, 30.186078278455298 ], [ -95.533967064839786, 30.187463278507611 ], [ -95.535832065273226, 30.19039027928244 ], [ -95.536031065474504, 30.190783279194367 ], [ -95.536193065057418, 30.191148278742961 ], [ -95.536357065673585, 30.191559279011511 ], [ -95.536521065212227, 30.192224279074509 ], [ -95.53658406600556, 30.192697279149602 ], [ -95.53658406530667, 30.193390279182186 ], [ -95.536517065720304, 30.194011279720712 ], [ -95.536400065901503, 30.194484279882108 ], [ -95.536233065457793, 30.195010279764471 ], [ -95.535898065815402, 30.195678280081619 ], [ -95.535685065358351, 30.196036279693363 ], [ -95.535473065438865, 30.19637928003964 ], [ -95.535560065421436, 30.196448280288632 ], [ -95.535698065332596, 30.196528280496008 ], [ -95.536192065631994, 30.196814280421613 ], [ -95.537326066398649, 30.197090280289611 ], [ -95.537642066520775, 30.197250280523981 ], [ -95.538011066814292, 30.197525280240409 ], [ -95.538245066448326, 30.197910280425539 ], [ -95.538485066577081, 30.198304280616728 ], [ -95.538907066216339, 30.198557280566298 ], [ -95.539434066860139, 30.198694280694387 ], [ -95.539519067151716, 30.198787280826728 ], [ -95.539200067104645, 30.199869281158318 ], [ -95.539169066975361, 30.200755281084344 ], [ -95.539860066532711, 30.200698281329313 ], [ -95.540260066617989, 30.201090280683651 ], [ -95.541480067244464, 30.200888280924158 ], [ -95.543319067622647, 30.201208281282451 ], [ -95.543679068385586, 30.201693281030153 ], [ -95.543801067777551, 30.202183280995669 ], [ -95.544116067574933, 30.202378281094369 ], [ -95.544448068380177, 30.202356280776385 ], [ -95.54488606809791, 30.202309280687835 ], [ -95.545074067886617, 30.202289280708335 ], [ -95.546450068415965, 30.20261528115071 ], [ -95.546653069256635, 30.202752281262374 ], [ -95.547174068748902, 30.202886281212091 ], [ -95.54863706944279, 30.202891280716951 ], [ -95.549128069551344, 30.203259280820781 ], [ -95.549961069324084, 30.203472281153832 ], [ -95.550361069984334, 30.20355328141925 ], [ -95.550717070000303, 30.203831280828233 ], [ -95.550928069450435, 30.204037280988576 ], [ -95.550980070054067, 30.204266281360528 ], [ -95.55127007052026, 30.204587281718602 ], [ -95.551587070032156, 30.204770281096302 ], [ -95.552536070153778, 30.2048162808589 ], [ -95.552984070513247, 30.205023281624651 ], [ -95.553472071018106, 30.205125281258614 ], [ -95.553487070440838, 30.205110281574537 ], [ -95.553661070482988, 30.204922281093015 ], [ -95.553803071002591, 30.204755281388355 ], [ -95.553936070979972, 30.204585281389171 ], [ -95.554229070566834, 30.204166281046522 ], [ -95.554518071017512, 30.203676281270194 ], [ -95.554640071027109, 30.203456281163945 ], [ -95.554759070807393, 30.203187280495303 ], [ -95.555069071289395, 30.202375280887722 ], [ -95.555172071330105, 30.202081280319359 ], [ -95.555324071063183, 30.201776280604065 ], [ -95.555583070629595, 30.201319280655042 ], [ -95.556190071320316, 30.200250280342917 ], [ -95.556334070640901, 30.200023280429487 ], [ -95.556470071012143, 30.199820280359216 ], [ -95.556602070701288, 30.199655279808738 ], [ -95.556807071312051, 30.199430280347272 ], [ -95.556975070916295, 30.199272280384477 ], [ -95.557148071740187, 30.199144280390044 ], [ -95.55762507188453, 30.19881228002907 ], [ -95.558553071497315, 30.198243280169823 ], [ -95.559148071548989, 30.197880279590088 ], [ -95.559393071409559, 30.197697279739415 ], [ -95.559639072334107, 30.197477279691221 ], [ -95.559846071393054, 30.197268279089656 ], [ -95.5598670713741, 30.197242279158093 ], [ -95.560161071455767, 30.196894279036577 ], [ -95.56028107176661, 30.196724278949933 ], [ -95.560529072147517, 30.196295279436566 ], [ -95.560753071557912, 30.195855279453649 ], [ -95.561004071661458, 30.195336279497322 ], [ -95.561152071660317, 30.195109279173462 ], [ -95.56133407210578, 30.194880279251116 ], [ -95.561503072461491, 30.194711279028613 ], [ -95.562889072400111, 30.193654278757322 ], [ -95.563093072419875, 30.19346727863412 ], [ -95.563239072789415, 30.193311278570185 ], [ -95.56338507305496, 30.193100278157804 ], [ -95.563633072657353, 30.192677278866739 ], [ -95.563690073100616, 30.192580278401614 ], [ -95.564043072316451, 30.191893278110459 ], [ -95.564122072890612, 30.19162327838395 ], [ -95.564167072543896, 30.191349278075222 ], [ -95.564188072382734, 30.191022278428022 ], [ -95.564192072528556, 30.18994127746603 ], [ -95.564198072874106, 30.188706277939374 ], [ -95.564225072270602, 30.188456277903306 ], [ -95.564253072890281, 30.18826527733918 ], [ -95.564290073035693, 30.188106277667764 ], [ -95.564339072185007, 30.187975277118237 ], [ -95.564458072809785, 30.187700277481884 ], [ -95.564616072295252, 30.187355277229369 ], [ -95.564812072285179, 30.187088277664305 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1253, "Tract": "48339690606", "Area_SqMi": 2.0082575515703947, "total_2009": 350, "total_2010": 328, "total_2011": 146, "total_2012": 255, "total_2013": 302, "total_2014": 290, "total_2015": 359, "total_2016": 421, "total_2017": 474, "total_2018": 457, "total_2019": 377, "total_2020": 409, "age1": 138, "age2": 314, "age3": 127, "earn1": 162, "earn2": 156, "earn3": 261, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 76, "naics_s05": 5, "naics_s06": 29, "naics_s07": 27, "naics_s08": 1, "naics_s09": 0, "naics_s10": 24, "naics_s11": 10, "naics_s12": 59, "naics_s13": 0, "naics_s14": 3, "naics_s15": 20, "naics_s16": 138, "naics_s17": 99, "naics_s18": 31, "naics_s19": 57, "naics_s20": 0, "race1": 437, "race2": 51, "race3": 1, "race4": 80, "race5": 2, "race6": 8, "ethnicity1": 439, "ethnicity2": 140, "edu1": 85, "edu2": 85, "edu3": 116, "edu4": 155, "Shape_Length": 32036.318792624435, "Shape_Area": 55986783.370631538, "total_2021": 495, "total_2022": 579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.589629078871752, 30.193779277671482 ], [ -95.590189079225837, 30.192803277177397 ], [ -95.589176079391947, 30.192381277122848 ], [ -95.588184079167149, 30.191960277102829 ], [ -95.587649079108047, 30.191745277512997 ], [ -95.587396078733121, 30.191643277401553 ], [ -95.586612078512744, 30.191229277325245 ], [ -95.585950078494591, 30.190836276987927 ], [ -95.585886077896603, 30.19079827716936 ], [ -95.585273078252953, 30.190387277178477 ], [ -95.585003077656779, 30.190152277270929 ], [ -95.584609077580822, 30.189809277022043 ], [ -95.583177077880805, 30.188336277277102 ], [ -95.582607077023269, 30.187777277201718 ], [ -95.582457076873084, 30.187648276667684 ], [ -95.582016076706893, 30.187267276633335 ], [ -95.581457077269008, 30.186923276745844 ], [ -95.580878076901072, 30.186628276545125 ], [ -95.580297076344578, 30.186415276793358 ], [ -95.579601076801765, 30.186232276242112 ], [ -95.578658075819831, 30.186105277038688 ], [ -95.578541075681102, 30.186090276987716 ], [ -95.577611076258279, 30.186066276652191 ], [ -95.576850075412466, 30.186096276547701 ], [ -95.575824074941707, 30.186312276523164 ], [ -95.57286407447117, 30.187728276708516 ], [ -95.572000074123082, 30.188019277005761 ], [ -95.571445074639612, 30.188121277608023 ], [ -95.570738073799205, 30.188235277700663 ], [ -95.569826073938714, 30.18824427778473 ], [ -95.569050073787622, 30.188175277678457 ], [ -95.568124073223217, 30.188003277521815 ], [ -95.567387073826694, 30.187743277140569 ], [ -95.567168073075635, 30.187665277502436 ], [ -95.566384073001828, 30.187249277093994 ], [ -95.565348072471238, 30.186499277523417 ], [ -95.564812072285179, 30.187088277664305 ], [ -95.564616072295252, 30.187355277229369 ], [ -95.564458072809785, 30.187700277481884 ], [ -95.564339072185007, 30.187975277118237 ], [ -95.564290073035693, 30.188106277667764 ], [ -95.564253072890281, 30.18826527733918 ], [ -95.564225072270602, 30.188456277903306 ], [ -95.564198072874106, 30.188706277939374 ], [ -95.564192072528556, 30.18994127746603 ], [ -95.564188072382734, 30.191022278428022 ], [ -95.564167072543896, 30.191349278075222 ], [ -95.564122072890612, 30.19162327838395 ], [ -95.564043072316451, 30.191893278110459 ], [ -95.563690073100616, 30.192580278401614 ], [ -95.563633072657353, 30.192677278866739 ], [ -95.56338507305496, 30.193100278157804 ], [ -95.563239072789415, 30.193311278570185 ], [ -95.563093072419875, 30.19346727863412 ], [ -95.562889072400111, 30.193654278757322 ], [ -95.561503072461491, 30.194711279028613 ], [ -95.56133407210578, 30.194880279251116 ], [ -95.561152071660317, 30.195109279173462 ], [ -95.561004071661458, 30.195336279497322 ], [ -95.560753071557912, 30.195855279453649 ], [ -95.560529072147517, 30.196295279436566 ], [ -95.56028107176661, 30.196724278949933 ], [ -95.560161071455767, 30.196894279036577 ], [ -95.5598670713741, 30.197242279158093 ], [ -95.559846071393054, 30.197268279089656 ], [ -95.559639072334107, 30.197477279691221 ], [ -95.559393071409559, 30.197697279739415 ], [ -95.559148071548989, 30.197880279590088 ], [ -95.558553071497315, 30.198243280169823 ], [ -95.55762507188453, 30.19881228002907 ], [ -95.557148071740187, 30.199144280390044 ], [ -95.556975070916295, 30.199272280384477 ], [ -95.556807071312051, 30.199430280347272 ], [ -95.556602070701288, 30.199655279808738 ], [ -95.556470071012143, 30.199820280359216 ], [ -95.556334070640901, 30.200023280429487 ], [ -95.556190071320316, 30.200250280342917 ], [ -95.555583070629595, 30.201319280655042 ], [ -95.555324071063183, 30.201776280604065 ], [ -95.555172071330105, 30.202081280319359 ], [ -95.555069071289395, 30.202375280887722 ], [ -95.554759070807393, 30.203187280495303 ], [ -95.554640071027109, 30.203456281163945 ], [ -95.554518071017512, 30.203676281270194 ], [ -95.554229070566834, 30.204166281046522 ], [ -95.553936070979972, 30.204585281389171 ], [ -95.553803071002591, 30.204755281388355 ], [ -95.553661070482988, 30.204922281093015 ], [ -95.553487070440838, 30.205110281574537 ], [ -95.553472071018106, 30.205125281258614 ], [ -95.553749070655556, 30.205183281555303 ], [ -95.55417107116358, 30.205367281533476 ], [ -95.554724071276553, 30.205917281471528 ], [ -95.555252070702295, 30.206054281207944 ], [ -95.555594071206841, 30.206261281221682 ], [ -95.556728071319768, 30.206307281871723 ], [ -95.557730072196833, 30.206720281501664 ], [ -95.558257071494225, 30.206697281433311 ], [ -95.558706072431661, 30.206949281292079 ], [ -95.559391071724107, 30.207087281823956 ], [ -95.559787072595199, 30.207293282006901 ], [ -95.560209071933443, 30.20704128183862 ], [ -95.560657072278659, 30.207041281214856 ], [ -95.560894072270472, 30.207247281135164 ], [ -95.56110507294305, 30.207316281310291 ], [ -95.561527072556757, 30.207179281147223 ], [ -95.561949072701111, 30.207202281423061 ], [ -95.562318072912106, 30.207408281104179 ], [ -95.563136073285136, 30.207202281501704 ], [ -95.563848073102918, 30.207409281620599 ], [ -95.564744073314969, 30.207272281557234 ], [ -95.566670073889483, 30.206356281157856 ], [ -95.567408074022737, 30.206494281284261 ], [ -95.567672074186447, 30.206700281558287 ], [ -95.568226074645921, 30.206654281538601 ], [ -95.568331074022097, 30.206448280733394 ], [ -95.568780074339927, 30.206242281365 ], [ -95.569439074878545, 30.206243280848064 ], [ -95.570045074690128, 30.206426280619525 ], [ -95.57078307523858, 30.206884281165756 ], [ -95.571126075082617, 30.206930281168763 ], [ -95.572234075962456, 30.206770281189264 ], [ -95.572788075717071, 30.206908281397379 ], [ -95.573183076161513, 30.207091281371415 ], [ -95.573526075994323, 30.207022281437389 ], [ -95.573948076188685, 30.206312280990861 ], [ -95.574766076348524, 30.2059692811331 ], [ -95.575109075691259, 30.2055572804164 ], [ -95.575452076037877, 30.205374280956249 ], [ -95.576981077075928, 30.205122280161387 ], [ -95.577429077193514, 30.205237280869689 ], [ -95.577930076922755, 30.205489280697613 ], [ -95.578367077403115, 30.205868281011 ], [ -95.578411077138895, 30.205906280987858 ], [ -95.578749077109848, 30.20566128043437 ], [ -95.579033076808415, 30.205445280467803 ], [ -95.579218076981917, 30.205288280564634 ], [ -95.579594077678749, 30.204934280345949 ], [ -95.579769077636598, 30.204755280389858 ], [ -95.581161078043536, 30.203244280433037 ], [ -95.581379077883909, 30.203007279905183 ], [ -95.582083078291177, 30.202242279917222 ], [ -95.582701077820758, 30.20157127994068 ], [ -95.585454078702071, 30.198580279325878 ], [ -95.588103079375699, 30.195701278081923 ], [ -95.588836079325191, 30.194903277769274 ], [ -95.588978079032259, 30.194722278016425 ], [ -95.589246079405228, 30.194361277785234 ], [ -95.589564078919238, 30.193893277994025 ], [ -95.589629078871752, 30.193779277671482 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1254, "Tract": "48339690607", "Area_SqMi": 1.0992178980165563, "total_2009": 159, "total_2010": 154, "total_2011": 216, "total_2012": 229, "total_2013": 288, "total_2014": 273, "total_2015": 299, "total_2016": 342, "total_2017": 414, "total_2018": 428, "total_2019": 531, "total_2020": 494, "age1": 139, "age2": 289, "age3": 122, "earn1": 124, "earn2": 185, "earn3": 241, "naics_s01": 0, "naics_s02": 15, "naics_s03": 0, "naics_s04": 2, "naics_s05": 97, "naics_s06": 23, "naics_s07": 6, "naics_s08": 0, "naics_s09": 4, "naics_s10": 21, "naics_s11": 45, "naics_s12": 48, "naics_s13": 9, "naics_s14": 47, "naics_s15": 15, "naics_s16": 106, "naics_s17": 0, "naics_s18": 92, "naics_s19": 20, "naics_s20": 0, "race1": 436, "race2": 52, "race3": 2, "race4": 53, "race5": 0, "race6": 7, "ethnicity1": 384, "ethnicity2": 166, "edu1": 81, "edu2": 85, "edu3": 138, "edu4": 107, "Shape_Length": 24277.81822846043, "Shape_Area": 30644313.666466843, "total_2021": 556, "total_2022": 550 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.553472071018106, 30.205125281258614 ], [ -95.552984070513247, 30.205023281624651 ], [ -95.552536070153778, 30.2048162808589 ], [ -95.551587070032156, 30.204770281096302 ], [ -95.55127007052026, 30.204587281718602 ], [ -95.550980070054067, 30.204266281360528 ], [ -95.550928069450435, 30.204037280988576 ], [ -95.550717070000303, 30.203831280828233 ], [ -95.550361069984334, 30.20355328141925 ], [ -95.549961069324084, 30.203472281153832 ], [ -95.549128069551344, 30.203259280820781 ], [ -95.54863706944279, 30.202891280716951 ], [ -95.547174068748902, 30.202886281212091 ], [ -95.546653069256635, 30.202752281262374 ], [ -95.546450068415965, 30.20261528115071 ], [ -95.545074067886617, 30.202289280708335 ], [ -95.54488606809791, 30.202309280687835 ], [ -95.544448068380177, 30.202356280776385 ], [ -95.544116067574933, 30.202378281094369 ], [ -95.543801067777551, 30.202183280995669 ], [ -95.543679068385586, 30.201693281030153 ], [ -95.543319067622647, 30.201208281282451 ], [ -95.541480067244464, 30.200888280924158 ], [ -95.540260066617989, 30.201090280683651 ], [ -95.539860066532711, 30.200698281329313 ], [ -95.539169066975361, 30.200755281084344 ], [ -95.539200067104645, 30.199869281158318 ], [ -95.539519067151716, 30.198787280826728 ], [ -95.539434066860139, 30.198694280694387 ], [ -95.538907066216339, 30.198557280566298 ], [ -95.538485066577081, 30.198304280616728 ], [ -95.538245066448326, 30.197910280425539 ], [ -95.538011066814292, 30.197525280240409 ], [ -95.537642066520775, 30.197250280523981 ], [ -95.537326066398649, 30.197090280289611 ], [ -95.536192065631994, 30.196814280421613 ], [ -95.535698065332596, 30.196528280496008 ], [ -95.535560065421436, 30.196448280288632 ], [ -95.535473065438865, 30.19637928003964 ], [ -95.534295064870307, 30.198265280839991 ], [ -95.53246606473347, 30.201159281704559 ], [ -95.532162065071148, 30.201633281023994 ], [ -95.531709064881809, 30.202086281399914 ], [ -95.531068065092427, 30.202630281554196 ], [ -95.530602064968903, 30.202969281896749 ], [ -95.528078064281885, 30.204757281848703 ], [ -95.527448063479625, 30.205415282309225 ], [ -95.527311063817763, 30.205587282135642 ], [ -95.527116063845583, 30.205860282028784 ], [ -95.526990063705568, 30.206047282205422 ], [ -95.526587063318985, 30.206699282879274 ], [ -95.526045063200158, 30.207585282537448 ], [ -95.526723064237117, 30.207916283075861 ], [ -95.528459064153992, 30.208692283243312 ], [ -95.528991064606942, 30.208967283142286 ], [ -95.529436065080517, 30.209210282823772 ], [ -95.529815065250105, 30.209446282848003 ], [ -95.5299090645604, 30.20950528295311 ], [ -95.531050065416906, 30.210275283626977 ], [ -95.531655065524802, 30.210741283134791 ], [ -95.53303106597069, 30.211682283098661 ], [ -95.533586065392029, 30.212018283818381 ], [ -95.534105066213485, 30.212301283688408 ], [ -95.534694066507001, 30.212583283883468 ], [ -95.535228066376575, 30.212822283815083 ], [ -95.535867066123416, 30.213059283415848 ], [ -95.537169066347971, 30.213466283715018 ], [ -95.537321067017785, 30.213509283785289 ], [ -95.537886067006923, 30.21367728391505 ], [ -95.53883206705288, 30.214040283854779 ], [ -95.539014067805425, 30.214113283821245 ], [ -95.540083067701943, 30.2144442833686 ], [ -95.540366067216056, 30.21453028375516 ], [ -95.541906067972491, 30.215002283554799 ], [ -95.542328068609351, 30.215131283324229 ], [ -95.542759068410945, 30.215261283567013 ], [ -95.543803069079502, 30.215576283939036 ], [ -95.5439540690531, 30.215617284131632 ], [ -95.54446106909684, 30.215753283820199 ], [ -95.54508106884262, 30.215876283504656 ], [ -95.545183069389552, 30.215403283568193 ], [ -95.545413069143436, 30.214597283687915 ], [ -95.545442069388628, 30.214513283942356 ], [ -95.545474068710277, 30.214422283886897 ], [ -95.545549068895781, 30.214257283630243 ], [ -95.545657068949112, 30.214075283530434 ], [ -95.545821069265756, 30.213829283097176 ], [ -95.54596406957522, 30.213626282985722 ], [ -95.546400068915759, 30.212851282715871 ], [ -95.546497069215192, 30.21265528288647 ], [ -95.546775069135606, 30.212065282550491 ], [ -95.546851069582303, 30.211916282907428 ], [ -95.546958069123079, 30.211737282970212 ], [ -95.547158069388601, 30.211484283188657 ], [ -95.547365069443046, 30.211261282469732 ], [ -95.547495069572136, 30.211124282432703 ], [ -95.547640069719961, 30.211012283080585 ], [ -95.547890069857047, 30.210829283150261 ], [ -95.548733069686818, 30.210264282331387 ], [ -95.548976070011932, 30.210092282721853 ], [ -95.549100069969342, 30.209996282353053 ], [ -95.549601069638285, 30.209549281955926 ], [ -95.549898069524588, 30.2092412825798 ], [ -95.550253069986638, 30.208790282367236 ], [ -95.550560070454551, 30.208416282046564 ], [ -95.551452070468471, 30.207256282106734 ], [ -95.551719070126694, 30.206927281899674 ], [ -95.552076070279512, 30.20654828127255 ], [ -95.553472071018106, 30.205125281258614 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1255, "Tract": "48339690604", "Area_SqMi": 1.9449000141026367, "total_2009": 148, "total_2010": 186, "total_2011": 462, "total_2012": 891, "total_2013": 810, "total_2014": 822, "total_2015": 882, "total_2016": 916, "total_2017": 962, "total_2018": 1036, "total_2019": 980, "total_2020": 886, "age1": 376, "age2": 415, "age3": 160, "earn1": 231, "earn2": 458, "earn3": 262, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 42, "naics_s06": 32, "naics_s07": 338, "naics_s08": 1, "naics_s09": 2, "naics_s10": 32, "naics_s11": 7, "naics_s12": 89, "naics_s13": 0, "naics_s14": 26, "naics_s15": 37, "naics_s16": 71, "naics_s17": 18, "naics_s18": 200, "naics_s19": 44, "naics_s20": 0, "race1": 752, "race2": 120, "race3": 2, "race4": 62, "race5": 2, "race6": 13, "ethnicity1": 707, "ethnicity2": 244, "edu1": 113, "edu2": 152, "edu3": 164, "edu4": 146, "Shape_Length": 37780.764272354056, "Shape_Area": 54220483.663539559, "total_2021": 1008, "total_2022": 951 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.600964081810076, 30.175707273322494 ], [ -95.600979081126226, 30.175509273621817 ], [ -95.600849081632063, 30.175396274051732 ], [ -95.600164081582321, 30.17519027340305 ], [ -95.599926081049247, 30.174938273591902 ], [ -95.599636081509459, 30.174457273349798 ], [ -95.598793080908777, 30.173747273612381 ], [ -95.598266080124588, 30.173037273458274 ], [ -95.59797608035467, 30.172808273566535 ], [ -95.597132080615594, 30.171685272993848 ], [ -95.595920080055819, 30.170517272713958 ], [ -95.595683079340574, 30.170082272536106 ], [ -95.595676080125671, 30.169192272906209 ], [ -95.596249079657369, 30.169263272366155 ], [ -95.597575080697965, 30.168905272085837 ], [ -95.597540080329352, 30.168188272547969 ], [ -95.595640079518134, 30.168152272255799 ], [ -95.595533079545106, 30.166470272173925 ], [ -95.592295078327325, 30.16641027182623 ], [ -95.591810078532887, 30.16640127209271 ], [ -95.591741078444869, 30.166454272045595 ], [ -95.591606078258422, 30.166591272534454 ], [ -95.591539078585399, 30.16663027220385 ], [ -95.591447078589013, 30.166644272227416 ], [ -95.591279078755321, 30.166642272563177 ], [ -95.589696078169638, 30.166622272570173 ], [ -95.587011077493145, 30.166691272495868 ], [ -95.58674707778205, 30.166508272593259 ], [ -95.58627307766416, 30.166507272596427 ], [ -95.585588077194245, 30.166736272813807 ], [ -95.585139076526431, 30.167080272851489 ], [ -95.584928076830877, 30.167126272171917 ], [ -95.584205076923197, 30.167061272252155 ], [ -95.584691077138942, 30.167620272625861 ], [ -95.584064077099583, 30.167615272240866 ], [ -95.584100076449388, 30.168009273067288 ], [ -95.583478076095375, 30.167996272717623 ], [ -95.58392607685785, 30.168408272526289 ], [ -95.584005077166523, 30.168591272535032 ], [ -95.583900076780125, 30.168775272508878 ], [ -95.583425077051686, 30.16872927260204 ], [ -95.583324076383491, 30.168650272526595 ], [ -95.583219076881093, 30.169783272827626 ], [ -95.583288077213098, 30.174212274400382 ], [ -95.576789075507278, 30.174176274162921 ], [ -95.576867075765463, 30.177418274679223 ], [ -95.577520075465983, 30.177809274841398 ], [ -95.577595075391827, 30.177882274878105 ], [ -95.577652075740374, 30.17794427514546 ], [ -95.577708075540386, 30.178009275080324 ], [ -95.577765076006315, 30.178078274993538 ], [ -95.577820075896341, 30.178147275445163 ], [ -95.577833075210037, 30.178167274846459 ], [ -95.57787007607277, 30.178219274946208 ], [ -95.577916075152416, 30.178293275475344 ], [ -95.577959075579429, 30.178369275453427 ], [ -95.578001075164224, 30.178444275276433 ], [ -95.578040075794192, 30.178517274718985 ], [ -95.578075075303929, 30.178592275201307 ], [ -95.578101076136974, 30.178667275180729 ], [ -95.578124075581528, 30.178743275500484 ], [ -95.578142075545742, 30.178819275035519 ], [ -95.578157075288885, 30.178891275162421 ], [ -95.578172075791628, 30.178959275479041 ], [ -95.578187075450799, 30.179022275086115 ], [ -95.57820007548743, 30.179078275592225 ], [ -95.578211075956318, 30.179127275195007 ], [ -95.578222075669075, 30.179180275503839 ], [ -95.576506075361209, 30.17941927544436 ], [ -95.575597075562925, 30.179496275005704 ], [ -95.575481075009009, 30.179506275647871 ], [ -95.575181074538804, 30.179510275045491 ], [ -95.574884075033637, 30.179477275037307 ], [ -95.574615074733543, 30.17943527538349 ], [ -95.574188074293161, 30.179314275221394 ], [ -95.57383107508457, 30.179197275126668 ], [ -95.573570074337425, 30.179136275668299 ], [ -95.573369074779706, 30.179111274991403 ], [ -95.573175074648319, 30.179115275032931 ], [ -95.572652074485148, 30.179167275418052 ], [ -95.572254074287002, 30.179248275278429 ], [ -95.572029074405066, 30.179325275167336 ], [ -95.57178207407658, 30.179445275563658 ], [ -95.571667074064194, 30.179521275772476 ], [ -95.571554074032989, 30.179596275438172 ], [ -95.571351074317334, 30.179739275980676 ], [ -95.571084074095666, 30.179953276006422 ], [ -95.570747073993047, 30.18027727583879 ], [ -95.570538074244752, 30.180505275715024 ], [ -95.570349073610473, 30.18074827621593 ], [ -95.569924073447282, 30.18137327560575 ], [ -95.569058073028842, 30.182666276570068 ], [ -95.568880073395135, 30.18291427636435 ], [ -95.568671073431773, 30.183134276386252 ], [ -95.568122072859111, 30.183694276129504 ], [ -95.567768073769258, 30.184055276597284 ], [ -95.567249073327588, 30.184561276755634 ], [ -95.565348072471238, 30.186499277523417 ], [ -95.566384073001828, 30.187249277093994 ], [ -95.567168073075635, 30.187665277502436 ], [ -95.567387073826694, 30.187743277140569 ], [ -95.568124073223217, 30.188003277521815 ], [ -95.569050073787622, 30.188175277678457 ], [ -95.569826073938714, 30.18824427778473 ], [ -95.570738073799205, 30.188235277700663 ], [ -95.571445074639612, 30.188121277608023 ], [ -95.572000074123082, 30.188019277005761 ], [ -95.57286407447117, 30.187728276708516 ], [ -95.575824074941707, 30.186312276523164 ], [ -95.576850075412466, 30.186096276547701 ], [ -95.577611076258279, 30.186066276652191 ], [ -95.578541075681102, 30.186090276987716 ], [ -95.578658075819831, 30.186105277038688 ], [ -95.579601076801765, 30.186232276242112 ], [ -95.580297076344578, 30.186415276793358 ], [ -95.580878076901072, 30.186628276545125 ], [ -95.581457077269008, 30.186923276745844 ], [ -95.582016076706893, 30.187267276633335 ], [ -95.582457076873084, 30.187648276667684 ], [ -95.582607077023269, 30.187777277201718 ], [ -95.583177077880805, 30.188336277277102 ], [ -95.584609077580822, 30.189809277022043 ], [ -95.585003077656779, 30.190152277270929 ], [ -95.585273078252953, 30.190387277178477 ], [ -95.585886077896603, 30.19079827716936 ], [ -95.585950078494591, 30.190836276987927 ], [ -95.586612078512744, 30.191229277325245 ], [ -95.587396078733121, 30.191643277401553 ], [ -95.587649079108047, 30.191745277512997 ], [ -95.588184079167149, 30.191960277102829 ], [ -95.589176079391947, 30.192381277122848 ], [ -95.590189079225837, 30.192803277177397 ], [ -95.590665079083053, 30.191974277630571 ], [ -95.590970079910804, 30.191443276914825 ], [ -95.591019080046323, 30.191358277035707 ], [ -95.591226079543986, 30.190998277175634 ], [ -95.592286079574009, 30.189152276548903 ], [ -95.592436079578405, 30.188890276744551 ], [ -95.592817080184574, 30.18823027656471 ], [ -95.593133079893008, 30.187680276665901 ], [ -95.593658079721465, 30.186767276058674 ], [ -95.594234079669192, 30.185792275616016 ], [ -95.595298079909199, 30.184116276015484 ], [ -95.595724080494861, 30.183469275128171 ], [ -95.595801080874708, 30.183342275362406 ], [ -95.59617308061901, 30.18274527540661 ], [ -95.596635080236084, 30.182004275223751 ], [ -95.596877080895467, 30.181647274975322 ], [ -95.597588080564407, 30.180749274526253 ], [ -95.599230080995852, 30.17900527475113 ], [ -95.599756081115913, 30.178449274642581 ], [ -95.599901081477583, 30.178277274518344 ], [ -95.600055081487213, 30.178085274262539 ], [ -95.600191081323217, 30.17788527431404 ], [ -95.600355080818986, 30.177617273735059 ], [ -95.6004750816154, 30.177395273785873 ], [ -95.600572081203694, 30.17718227434522 ], [ -95.600711081738851, 30.176820273573426 ], [ -95.600770081396959, 30.176640273609458 ], [ -95.600826081730204, 30.176452274044411 ], [ -95.600869081340406, 30.176282273691442 ], [ -95.600936081293227, 30.175954273463265 ], [ -95.600964081810076, 30.175707273322494 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1256, "Tract": "48339692005", "Area_SqMi": 1.329937327046979, "total_2009": 40, "total_2010": 42, "total_2011": 294, "total_2012": 192, "total_2013": 186, "total_2014": 314, "total_2015": 396, "total_2016": 231, "total_2017": 275, "total_2018": 282, "total_2019": 330, "total_2020": 431, "age1": 127, "age2": 203, "age3": 83, "earn1": 123, "earn2": 184, "earn3": 106, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 21, "naics_s06": 6, "naics_s07": 26, "naics_s08": 0, "naics_s09": 2, "naics_s10": 5, "naics_s11": 11, "naics_s12": 43, "naics_s13": 0, "naics_s14": 31, "naics_s15": 1, "naics_s16": 80, "naics_s17": 18, "naics_s18": 86, "naics_s19": 74, "naics_s20": 0, "race1": 280, "race2": 67, "race3": 0, "race4": 51, "race5": 5, "race6": 10, "ethnicity1": 317, "ethnicity2": 96, "edu1": 73, "edu2": 71, "edu3": 72, "edu4": 70, "Shape_Length": 34598.881550178106, "Shape_Area": 37076376.46758575, "total_2021": 444, "total_2022": 413 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.410660030416452, 30.13796927248913 ], [ -95.410660031445445, 30.137843272327121 ], [ -95.410162030572295, 30.13781127289031 ], [ -95.409876030599918, 30.137772272870915 ], [ -95.409723031076567, 30.137732272551549 ], [ -95.409597030115336, 30.137672273061028 ], [ -95.409464030519658, 30.137579272919915 ], [ -95.409331030907552, 30.137459273098059 ], [ -95.407544029584713, 30.135333272528143 ], [ -95.407099029719348, 30.134803271773993 ], [ -95.406690030171177, 30.134341271998927 ], [ -95.40627802979337, 30.133906272350995 ], [ -95.406022029931179, 30.133590272184954 ], [ -95.405757028975245, 30.133230271969811 ], [ -95.405654029087529, 30.132943272265599 ], [ -95.405634029407054, 30.132853272203469 ], [ -95.405620029089008, 30.132750271554197 ], [ -95.405621029110776, 30.132575271446601 ], [ -95.405577028892807, 30.129863271145489 ], [ -95.405597029017059, 30.12889927139063 ], [ -95.405604029434528, 30.128565271021237 ], [ -95.405584028716135, 30.128426270622565 ], [ -95.405567029348632, 30.128261271355594 ], [ -95.405581029341661, 30.12748127070979 ], [ -95.405574028917968, 30.126499270116355 ], [ -95.405571029046754, 30.126143270652804 ], [ -95.40554702907319, 30.12599427040459 ], [ -95.405501029396206, 30.12586127008819 ], [ -95.405458029274413, 30.125791270069548 ], [ -95.405375029416263, 30.125702270067091 ], [ -95.405208029484996, 30.125595269996666 ], [ -95.405062028754955, 30.125516270239341 ], [ -95.404943028465155, 30.125476269974222 ], [ -95.404491029256533, 30.125374269983215 ], [ -95.404122029140211, 30.125311269986749 ], [ -95.403763028545882, 30.125215270246635 ], [ -95.403541028950045, 30.125138270102418 ], [ -95.40344102816529, 30.125092270069452 ], [ -95.403375028164916, 30.125035270097101 ], [ -95.403282028109459, 30.124923270620641 ], [ -95.403242028889679, 30.124859269879757 ], [ -95.403185028766998, 30.124697270702328 ], [ -95.403155028378663, 30.124560270297746 ], [ -95.403135028745183, 30.124374269951961 ], [ -95.403135028435472, 30.124032270126637 ], [ -95.403149027989926, 30.123457270061472 ], [ -95.403130028635687, 30.122969270286365 ], [ -95.403137028502883, 30.122807269529186 ], [ -95.403117028535959, 30.122801269708788 ], [ -95.402874028399793, 30.122721269702982 ], [ -95.402475028337761, 30.122565269797445 ], [ -95.401831028408679, 30.122247269891744 ], [ -95.4017960284271, 30.12223026991952 ], [ -95.400055027855245, 30.121240269961483 ], [ -95.39963002765559, 30.120989269571979 ], [ -95.399126026878264, 30.120673269173395 ], [ -95.39878802709309, 30.120436269833878 ], [ -95.398577027137918, 30.120271269832216 ], [ -95.398386027193609, 30.120111269097929 ], [ -95.398347026716607, 30.120075269756519 ], [ -95.398229026783042, 30.119967269284398 ], [ -95.398045026336717, 30.119778269690507 ], [ -95.397889026958751, 30.119603269253346 ], [ -95.397753027124821, 30.119412269572038 ], [ -95.397664027070206, 30.119271269141631 ], [ -95.397601026983594, 30.11930126926541 ], [ -95.397500027089933, 30.119350269133349 ], [ -95.395637026245154, 30.120251269627271 ], [ -95.395107026415886, 30.120569269755393 ], [ -95.393625025433138, 30.121505269856552 ], [ -95.391909025774837, 30.122597270559073 ], [ -95.391180025594636, 30.123065270096504 ], [ -95.390433024588134, 30.123553270573584 ], [ -95.391107025122736, 30.124369271029703 ], [ -95.391284024926392, 30.124571271099246 ], [ -95.391502025025545, 30.124819271050207 ], [ -95.391624025075231, 30.125162270630788 ], [ -95.391665025736245, 30.125705270887032 ], [ -95.391658025525004, 30.125834270504164 ], [ -95.392274025860956, 30.125854270581627 ], [ -95.393127025681437, 30.125838270853951 ], [ -95.393399026053757, 30.126024270852341 ], [ -95.393566026171172, 30.125872271276254 ], [ -95.393917026200285, 30.125782270577862 ], [ -95.39425002600629, 30.125775270429703 ], [ -95.394239026440403, 30.125887270750898 ], [ -95.394829026172133, 30.126624271020756 ], [ -95.394783026370177, 30.126649270570475 ], [ -95.394406025999942, 30.126903271000518 ], [ -95.394269025955822, 30.12714027104812 ], [ -95.394295026197256, 30.127634271591418 ], [ -95.394494026713005, 30.128067271046479 ], [ -95.394520025833543, 30.128124271705175 ], [ -95.394832026486071, 30.128649271087884 ], [ -95.394923026892855, 30.12881827107719 ], [ -95.394965026475617, 30.128894271328779 ], [ -95.395122027051784, 30.129534271334894 ], [ -95.395170026922045, 30.129730271728274 ], [ -95.3952340269107, 30.130293271604117 ], [ -95.395243026694274, 30.130307272148851 ], [ -95.394004026722456, 30.130440272209366 ], [ -95.393995025987067, 30.130461271461023 ], [ -95.393898026246816, 30.130722271693362 ], [ -95.393847025994077, 30.13125527219778 ], [ -95.393952025962562, 30.131630271807158 ], [ -95.394183025982798, 30.131864272293544 ], [ -95.394525026035694, 30.132012272021569 ], [ -95.395010026847203, 30.132087271640493 ], [ -95.395706027171215, 30.131921272183813 ], [ -95.396804027565949, 30.131651272036706 ], [ -95.397410027628112, 30.132799272058318 ], [ -95.398072027848869, 30.134214272687569 ], [ -95.398395028164259, 30.134936272192526 ], [ -95.398195027963538, 30.135303272663506 ], [ -95.398251027270959, 30.135457272545167 ], [ -95.39833102718849, 30.135666272631926 ], [ -95.396905027063539, 30.136180273224173 ], [ -95.396176027322994, 30.136313272707181 ], [ -95.396189027149717, 30.13635627259066 ], [ -95.396205026940322, 30.136431273168402 ], [ -95.396227027034513, 30.136529272508046 ], [ -95.396265027147052, 30.136675272765288 ], [ -95.396297026996379, 30.136825272977859 ], [ -95.396320027564585, 30.136980273148961 ], [ -95.396342027160586, 30.1373072733711 ], [ -95.396344027574202, 30.137654273351842 ], [ -95.396350027411941, 30.138004273087969 ], [ -95.396360027045787, 30.138315273575895 ], [ -95.3963730275389, 30.138647273593559 ], [ -95.396362027146111, 30.138962273761042 ], [ -95.39627002776453, 30.138938273416976 ], [ -95.396083027645631, 30.138945273508011 ], [ -95.395928027451532, 30.13894827324356 ], [ -95.395752027360615, 30.138953273337844 ], [ -95.394942027441658, 30.138964273408874 ], [ -95.394555026871259, 30.138967273868619 ], [ -95.394556027370982, 30.13917827323316 ], [ -95.394557027163827, 30.139286273260304 ], [ -95.394557026812279, 30.139484273497565 ], [ -95.394556026728154, 30.139645273282543 ], [ -95.394555026506751, 30.139777273395879 ], [ -95.394554026570702, 30.139836273907175 ], [ -95.39455402726, 30.139850273293309 ], [ -95.393953026611783, 30.139901273472926 ], [ -95.393634026578056, 30.140046273951874 ], [ -95.393399027021658, 30.140330274091877 ], [ -95.393231026371581, 30.140683273763965 ], [ -95.393158026254696, 30.141021274188628 ], [ -95.393157026943143, 30.1410782737583 ], [ -95.393152026719605, 30.141426273592074 ], [ -95.39330702649896, 30.141857274320039 ], [ -95.393526026454253, 30.142231273861253 ], [ -95.393901027007857, 30.142434274034571 ], [ -95.394304027041443, 30.142469274151459 ], [ -95.39443302692699, 30.142444273797466 ], [ -95.394721027339429, 30.142391274377594 ], [ -95.395057027327226, 30.142287274557042 ], [ -95.395281027671516, 30.142269274257085 ], [ -95.395539027415865, 30.142250273941286 ], [ -95.395943027804762, 30.142313273900648 ], [ -95.396320027357945, 30.142369273905754 ], [ -95.39627002755077, 30.142502274350864 ], [ -95.396262027462825, 30.143034274312466 ], [ -95.39560002770709, 30.143047274695153 ], [ -95.39514502703544, 30.143259273925995 ], [ -95.395005027097099, 30.143345274596207 ], [ -95.39457602712416, 30.143577274141304 ], [ -95.394295026945386, 30.14373327416164 ], [ -95.394183026683478, 30.143794274051288 ], [ -95.394021027149307, 30.143883274330882 ], [ -95.393491026922135, 30.144176274423373 ], [ -95.393387026475864, 30.144234274186775 ], [ -95.393435026330266, 30.144293274229483 ], [ -95.393545026429777, 30.144519274255401 ], [ -95.393646026696175, 30.144728274464025 ], [ -95.394279027422868, 30.14532427478407 ], [ -95.394279027597918, 30.146194275150162 ], [ -95.394595027170752, 30.146721275097772 ], [ -95.394227027424762, 30.148302275200763 ], [ -95.39430602703203, 30.148599275517448 ], [ -95.394491027421893, 30.148828275405911 ], [ -95.39562402791023, 30.149011275499699 ], [ -95.3959150276918, 30.149145275169943 ], [ -95.396072027430833, 30.149217275597927 ], [ -95.396547028099917, 30.149675275511129 ], [ -95.396758027876714, 30.15004227548339 ], [ -95.396863027619347, 30.150431275725467 ], [ -95.397064028249417, 30.150645275797334 ], [ -95.397645028548013, 30.150305275663836 ], [ -95.398357028166203, 30.149902275769843 ], [ -95.402066029366338, 30.147597275273117 ], [ -95.40588603040608, 30.144992274426695 ], [ -95.409200030749915, 30.143170273904563 ], [ -95.409039030643925, 30.142932274234287 ], [ -95.408454030451864, 30.142124273884246 ], [ -95.408344030331904, 30.141951273895856 ], [ -95.408257030788747, 30.141775273264464 ], [ -95.408209030041945, 30.141636273816129 ], [ -95.408179029978257, 30.141484273741529 ], [ -95.408172030649141, 30.141341273319796 ], [ -95.408176030921297, 30.141207273410597 ], [ -95.408178029992328, 30.141179273114741 ], [ -95.408212030549876, 30.141034273537358 ], [ -95.408258030402166, 30.140903273253148 ], [ -95.408328030887759, 30.140748273521176 ], [ -95.408415030893281, 30.140596273710226 ], [ -95.408537030951919, 30.140454273448071 ], [ -95.408669030083402, 30.140325273084819 ], [ -95.408837030588387, 30.140223272946869 ], [ -95.409199030550639, 30.140040273262432 ], [ -95.409465030973763, 30.139887272948862 ], [ -95.409777030984742, 30.139684273458879 ], [ -95.40990603102901, 30.139583273523321 ], [ -95.410037030379357, 30.139454273145088 ], [ -95.410133030778255, 30.139344273021457 ], [ -95.410230030356061, 30.139212272982366 ], [ -95.410337031117209, 30.139047273009659 ], [ -95.410414030599881, 30.138919272567591 ], [ -95.410486031304245, 30.138776272931693 ], [ -95.410576030753319, 30.138544272911737 ], [ -95.410600030755589, 30.138441272737158 ], [ -95.41061603142748, 30.138372272629422 ], [ -95.410646031214398, 30.13820227264387 ], [ -95.410660030416452, 30.13796927248913 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1257, "Tract": "48339693904", "Area_SqMi": 0.36157410259725392, "total_2009": 728, "total_2010": 784, "total_2011": 1010, "total_2012": 1143, "total_2013": 1246, "total_2014": 1257, "total_2015": 1325, "total_2016": 1634, "total_2017": 1584, "total_2018": 1620, "total_2019": 1629, "total_2020": 2205, "age1": 429, "age2": 1465, "age3": 640, "earn1": 257, "earn2": 508, "earn3": 1769, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 1, "naics_s07": 0, "naics_s08": 0, "naics_s09": 2, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 466, "naics_s15": 0, "naics_s16": 275, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 1788, "race1": 1940, "race2": 487, "race3": 22, "race4": 53, "race5": 3, "race6": 29, "ethnicity1": 2110, "ethnicity2": 424, "edu1": 300, "edu2": 602, "edu3": 751, "edu4": 452, "Shape_Length": 16104.58764964168, "Shape_Area": 10080067.140150063, "total_2021": 2422, "total_2022": 2534 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.4567090519988, 30.335462310872565 ], [ -95.456754051467286, 30.335470310967128 ], [ -95.456469051583696, 30.333627310422397 ], [ -95.456354051613019, 30.332886310427043 ], [ -95.456286051321783, 30.332449310655281 ], [ -95.45603305157087, 30.332512310902882 ], [ -95.455103051769171, 30.332741310648586 ], [ -95.452680051022014, 30.333341310822931 ], [ -95.452668051251706, 30.333375310897146 ], [ -95.450209050153603, 30.334011311467499 ], [ -95.449259050083143, 30.334186311152923 ], [ -95.447440048764477, 30.328503309986598 ], [ -95.440864047273095, 30.330140310505421 ], [ -95.440864047443554, 30.330518310460377 ], [ -95.441551048405998, 30.33120531043901 ], [ -95.441604048288056, 30.331686311019734 ], [ -95.441315048246821, 30.33262531084225 ], [ -95.440734048044703, 30.333335311678095 ], [ -95.440655047918838, 30.333564311795847 ], [ -95.440735047838956, 30.333793311583815 ], [ -95.440946047558683, 30.333931311062145 ], [ -95.441000048415205, 30.335076311523427 ], [ -95.440789047419798, 30.335718312197418 ], [ -95.440842047908404, 30.336359311569012 ], [ -95.440790048030351, 30.33711531240322 ], [ -95.441556047697134, 30.338076312595298 ], [ -95.441636047787838, 30.338832312482179 ], [ -95.444513049144732, 30.338139312244554 ], [ -95.446415049823599, 30.337689311997458 ], [ -95.447418049971759, 30.337451312176306 ], [ -95.450014050269374, 30.336836311650135 ], [ -95.450346050337956, 30.336758311354586 ], [ -95.451585050357423, 30.336466311109078 ], [ -95.452945050926289, 30.336153311689436 ], [ -95.453313050826097, 30.336058311652803 ], [ -95.454261050850221, 30.335841311638529 ], [ -95.455890052219701, 30.335463311607459 ], [ -95.456241052018882, 30.335400310745587 ], [ -95.456472052086454, 30.335406310867583 ], [ -95.4567090519988, 30.335462310872565 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1258, "Tract": "48339692301", "Area_SqMi": 7.9589938721116988, "total_2009": 168, "total_2010": 92, "total_2011": 59, "total_2012": 72, "total_2013": 80, "total_2014": 124, "total_2015": 115, "total_2016": 104, "total_2017": 123, "total_2018": 102, "total_2019": 106, "total_2020": 84, "age1": 26, "age2": 56, "age3": 11, "earn1": 27, "earn2": 41, "earn3": 25, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 17, "naics_s06": 5, "naics_s07": 14, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 11, "naics_s12": 4, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 7, "naics_s19": 5, "naics_s20": 0, "race1": 68, "race2": 9, "race3": 2, "race4": 9, "race5": 0, "race6": 5, "ethnicity1": 71, "ethnicity2": 22, "edu1": 14, "edu2": 14, "edu3": 25, "edu4": 14, "Shape_Length": 74409.053408207285, "Shape_Area": 221883127.20032221, "total_2021": 72, "total_2022": 93 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.346308014816628, 30.148602277212177 ], [ -95.346334014621732, 30.148166276793212 ], [ -95.345702014366907, 30.14747927661158 ], [ -95.345148014228684, 30.147273276451763 ], [ -95.345148014625821, 30.147021277150419 ], [ -95.345307014578239, 30.146654276397342 ], [ -95.34532201472976, 30.145863276754277 ], [ -95.345325014966917, 30.144702276268163 ], [ -95.344928014663239, 30.144517275977936 ], [ -95.344743014521185, 30.144473276808526 ], [ -95.34454001402969, 30.144508276235058 ], [ -95.344249014426751, 30.144605276653191 ], [ -95.343843014517077, 30.144755276227777 ], [ -95.3434550142521, 30.144905276494796 ], [ -95.342978013528764, 30.145108276628445 ], [ -95.342621013718897, 30.145324276363322 ], [ -95.342171013962698, 30.145554276673835 ], [ -95.341915013725071, 30.14567727695599 ], [ -95.341774013973165, 30.145756276388923 ], [ -95.341677013785926, 30.145854276968681 ], [ -95.341518013476659, 30.146021276710922 ], [ -95.34139401326911, 30.146101276906993 ], [ -95.341191013784183, 30.146171277001994 ], [ -95.340953013396927, 30.146215277048821 ], [ -95.340724013779493, 30.146198276839506 ], [ -95.3404860133829, 30.146127276999021 ], [ -95.340150013468133, 30.146012277106056 ], [ -95.339842013603032, 30.145880276813973 ], [ -95.339630012686285, 30.145792276495399 ], [ -95.339427013300636, 30.145677277139196 ], [ -95.339268012823922, 30.145536276305211 ], [ -95.339127013235654, 30.145377276292436 ], [ -95.33898601329237, 30.145209276715377 ], [ -95.338880013148611, 30.145033277084195 ], [ -95.338800013212719, 30.144839276814444 ], [ -95.338712012820039, 30.144548276718627 ], [ -95.338668012879367, 30.144310276353359 ], [ -95.338650013213368, 30.144168276434915 ], [ -95.338624012854368, 30.143912276157085 ], [ -95.338615012971758, 30.143665276761038 ], [ -95.338615012668242, 30.143286276085963 ], [ -95.338624012488154, 30.142943276016904 ], [ -95.338677012853793, 30.142042276295502 ], [ -95.338668012664883, 30.141764275674831 ], [ -95.338650012420842, 30.141632275918735 ], [ -95.338606012620488, 30.141526276037052 ], [ -95.338453012212099, 30.141294276110884 ], [ -95.338381012455457, 30.141185275611377 ], [ -95.338350012943366, 30.141138275878735 ], [ -95.338130012622074, 30.140838276140816 ], [ -95.337936012456893, 30.140564276196212 ], [ -95.337795011874064, 30.140335275419211 ], [ -95.337653012777736, 30.140150275856293 ], [ -95.337441011941834, 30.139948275713234 ], [ -95.337314012165876, 30.139850275577189 ], [ -95.337214012646541, 30.139797275603563 ], [ -95.337111012181623, 30.139664275903833 ], [ -95.337040011606916, 30.139453275648854 ], [ -95.337005011811897, 30.139272275668443 ], [ -95.337040011926092, 30.1390602755123 ], [ -95.337084011997419, 30.138866275548395 ], [ -95.337173011910281, 30.138663275861511 ], [ -95.337331012235424, 30.13838927517374 ], [ -95.337517012617738, 30.138116274968741 ], [ -95.337914012665308, 30.137525274994349 ], [ -95.338325012811765, 30.136703274915643 ], [ -95.33849601269344, 30.136206274885939 ], [ -95.338681012487356, 30.135729274603552 ], [ -95.338902012655623, 30.135129274734911 ], [ -95.338990012555271, 30.134856274679031 ], [ -95.339025012692829, 30.134662274440039 ], [ -95.33904301278011, 30.13445927416095 ], [ -95.339025012647568, 30.134194274645193 ], [ -95.338981012273734, 30.133956274192084 ], [ -95.338928012377039, 30.133691274150753 ], [ -95.338833012794581, 30.133418274082793 ], [ -95.338798011973367, 30.133323274588125 ], [ -95.338763011830693, 30.133243273843508 ], [ -95.338675012027608, 30.133107274224553 ], [ -95.338578012372082, 30.132992274007279 ], [ -95.338339012324127, 30.132798274355192 ], [ -95.338154012402299, 30.132674274034361 ], [ -95.33785401225127, 30.132498274081399 ], [ -95.337740011995351, 30.132454274166339 ], [ -95.337510011533084, 30.132454274314931 ], [ -95.336433011482612, 30.132430273786987 ], [ -95.336244012005437, 30.132404273808493 ], [ -95.335005011635388, 30.132426274131799 ], [ -95.33308101079848, 30.132724274291757 ], [ -95.332211010834342, 30.132357274099856 ], [ -95.331658010918417, 30.13189927400872 ], [ -95.331000010058219, 30.131234274546848 ], [ -95.33039401042619, 30.130432274046978 ], [ -95.329841009992293, 30.129493274106711 ], [ -95.329551009935557, 30.128714273751314 ], [ -95.329209009640849, 30.12685827322548 ], [ -95.329130009736545, 30.126102273103271 ], [ -95.328973009276339, 30.125232273356904 ], [ -95.328288009400282, 30.123720272574978 ], [ -95.32794600857757, 30.122528272544599 ], [ -95.328020008761584, 30.121982272548539 ], [ -95.327902008975457, 30.121991272341642 ], [ -95.327770009245398, 30.122004272623148 ], [ -95.327555009407703, 30.121983272064032 ], [ -95.307204004247296, 30.124322273759393 ], [ -95.304705003103351, 30.121437273372475 ], [ -95.306343003841192, 30.120160273055518 ], [ -95.305246002536521, 30.117986272681556 ], [ -95.305235003130562, 30.117958272297489 ], [ -95.305167002720196, 30.11780727264928 ], [ -95.304135003100342, 30.116585271908377 ], [ -95.303102002204028, 30.115364271518978 ], [ -95.299834001558779, 30.115397272056285 ], [ -95.299306001604023, 30.115408272400852 ], [ -95.299172001049314, 30.115407271735481 ], [ -95.2971310007173, 30.115441272357103 ], [ -95.294403999575593, 30.115471272035631 ], [ -95.293592999735409, 30.115487272592734 ], [ -95.293001000147598, 30.115487272570139 ], [ -95.291321999418997, 30.115510272459165 ], [ -95.288757998943652, 30.115550272441336 ], [ -95.286038997463208, 30.11556727216778 ], [ -95.28542299815183, 30.115583272807001 ], [ -95.281413996371327, 30.11561327311863 ], [ -95.279622996452645, 30.115649272901113 ], [ -95.278170995852236, 30.115663273147298 ], [ -95.277826995587375, 30.115681272677506 ], [ -95.277598995342899, 30.115722273220296 ], [ -95.277189995604843, 30.115843272431636 ], [ -95.277057996102172, 30.115911273196364 ], [ -95.276945996070452, 30.11596227322082 ], [ -95.276718995315335, 30.116099273256875 ], [ -95.275899995810619, 30.116687272820787 ], [ -95.275036995315773, 30.117299273188067 ], [ -95.274329995505369, 30.117822273135513 ], [ -95.273018994739857, 30.118759273311145 ], [ -95.272855995107221, 30.118781273731173 ], [ -95.27307199486323, 30.119017273801212 ], [ -95.273245995306453, 30.119211274121167 ], [ -95.277091995922945, 30.123309274501334 ], [ -95.27886399632844, 30.125193274682317 ], [ -95.279571996960925, 30.12593327495405 ], [ -95.28158799748401, 30.128091274851258 ], [ -95.283728998461257, 30.13039827594082 ], [ -95.285416998542459, 30.132194275643197 ], [ -95.286381998560344, 30.133252276422418 ], [ -95.286703998935621, 30.133597276526437 ], [ -95.28722999914234, 30.134142276037998 ], [ -95.288167999636983, 30.135148276072531 ], [ -95.290110000257599, 30.137233277055792 ], [ -95.290402999597248, 30.137547277100239 ], [ -95.290517000018738, 30.137669276962349 ], [ -95.290587000108445, 30.137744276806909 ], [ -95.290880000286762, 30.138058276593338 ], [ -95.293976001609352, 30.14138227747458 ], [ -95.294906001576777, 30.14236227765452 ], [ -95.295345001723263, 30.142881277786884 ], [ -95.297982002415083, 30.145706278669405 ], [ -95.298991002205597, 30.14678827882593 ], [ -95.299538002798784, 30.147373278715875 ], [ -95.300621003453571, 30.14853327845444 ], [ -95.304499004602093, 30.152706279538087 ], [ -95.304931004915431, 30.153163279194843 ], [ -95.305810004439735, 30.154106279670266 ], [ -95.306544005540076, 30.154880279599855 ], [ -95.309230005730583, 30.157897280139839 ], [ -95.310199006304373, 30.158970280827621 ], [ -95.310945005929355, 30.159772281007058 ], [ -95.311799007092631, 30.160703281078302 ], [ -95.313446007229516, 30.162469281282142 ], [ -95.314510007130394, 30.163631280902599 ], [ -95.315114007545858, 30.164334281615311 ], [ -95.318976008690399, 30.169848282264986 ], [ -95.319551009407149, 30.170670282481531 ], [ -95.319715008778417, 30.170542282735507 ], [ -95.320048009521173, 30.170331282579411 ], [ -95.320555009803229, 30.170065282836283 ], [ -95.320756009532161, 30.169935282734667 ], [ -95.320843009534045, 30.169789282212147 ], [ -95.321252008973801, 30.168829281853561 ], [ -95.321953009932884, 30.16758028144346 ], [ -95.322101009256116, 30.167411281690708 ], [ -95.322269009875001, 30.167272281464612 ], [ -95.322602009627445, 30.167059281383068 ], [ -95.323101009504512, 30.166762282058478 ], [ -95.323323010378829, 30.166614281219005 ], [ -95.32382200985208, 30.166198281413607 ], [ -95.324777010419979, 30.165179280833833 ], [ -95.324944009975098, 30.16499628127093 ], [ -95.325312010519667, 30.164544280863591 ], [ -95.325467010439993, 30.164328281438927 ], [ -95.32618901074045, 30.163358280726303 ], [ -95.326295010872386, 30.163217281152363 ], [ -95.326472010367482, 30.162999281007636 ], [ -95.326572010304233, 30.162884280580236 ], [ -95.326683010294573, 30.162747281039618 ], [ -95.326883010875875, 30.162532280243514 ], [ -95.327102010459356, 30.162321280762033 ], [ -95.327773011130716, 30.161734280110934 ], [ -95.331740011272785, 30.158420279786405 ], [ -95.332471011699553, 30.158420279769555 ], [ -95.33261001166386, 30.158420279957149 ], [ -95.336786013223758, 30.15842227943234 ], [ -95.340307014039809, 30.158383279746054 ], [ -95.341324013992846, 30.158474279510742 ], [ -95.341561013878106, 30.157878279084361 ], [ -95.34190401375642, 30.157649279155603 ], [ -95.343143014190147, 30.157260278927144 ], [ -95.343591014962215, 30.156894278608291 ], [ -95.343802014732347, 30.156596278555167 ], [ -95.343855015053649, 30.155932279095623 ], [ -95.343776014800639, 30.154924278718443 ], [ -95.344356015139255, 30.154008277907888 ], [ -95.344409014850243, 30.153412278605018 ], [ -95.344067014024915, 30.152977278429216 ], [ -95.343091014053627, 30.152495277703995 ], [ -95.342380014509104, 30.15164827826095 ], [ -95.342116014342608, 30.150640277283504 ], [ -95.342196013956411, 30.150182277613503 ], [ -95.342591013648658, 30.149426277324942 ], [ -95.342618014290807, 30.148578277030868 ], [ -95.342723013601542, 30.148280277077131 ], [ -95.34290801394657, 30.148097277476108 ], [ -95.343277014315589, 30.148028277208986 ], [ -95.343909014738472, 30.148258277400998 ], [ -95.344726014812906, 30.14878527742292 ], [ -95.345280014891856, 30.149037277606805 ], [ -95.345675014902682, 30.149060277533557 ], [ -95.346097015344895, 30.148876277212899 ], [ -95.346308014816628, 30.148602277212177 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1259, "Tract": "48339694602", "Area_SqMi": 23.578533833344075, "total_2009": 202, "total_2010": 140, "total_2011": 141, "total_2012": 177, "total_2013": 153, "total_2014": 156, "total_2015": 127, "total_2016": 90, "total_2017": 87, "total_2018": 103, "total_2019": 78, "total_2020": 86, "age1": 15, "age2": 62, "age3": 23, "earn1": 15, "earn2": 34, "earn3": 51, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 34, "naics_s06": 10, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 15, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 72, "race2": 26, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 85, "ethnicity2": 15, "edu1": 17, "edu2": 21, "edu3": 29, "edu4": 18, "Shape_Length": 110758.32480031757, "Shape_Area": 657329168.20966256, "total_2021": 93, "total_2022": 100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.776976135283633, 30.361882304904547 ], [ -95.776979135460991, 30.361816304957479 ], [ -95.776969135086276, 30.36141930470156 ], [ -95.776810134513468, 30.357195304113535 ], [ -95.776799134721301, 30.35689930434819 ], [ -95.776783134407609, 30.356830304409925 ], [ -95.776771134661118, 30.356627303719485 ], [ -95.776692134615487, 30.356558303654932 ], [ -95.776657134700642, 30.356483304356871 ], [ -95.77661813435185, 30.356422303584008 ], [ -95.776532134993857, 30.356304304088233 ], [ -95.776480134331067, 30.356245304322833 ], [ -95.776368134854806, 30.356143303884618 ], [ -95.776306134506456, 30.356101303906794 ], [ -95.776239134275215, 30.356063303683641 ], [ -95.776072134210096, 30.356024303666885 ], [ -95.775863134516399, 30.355944304016028 ], [ -95.775209134658269, 30.355738303902704 ], [ -95.775135133944175, 30.355715303681521 ], [ -95.77495713417872, 30.355650304316153 ], [ -95.774867134210979, 30.355610303991789 ], [ -95.77469613463758, 30.355520303586442 ], [ -95.774616134511149, 30.355469304134097 ], [ -95.774463134253978, 30.355358303517544 ], [ -95.774393134341025, 30.355299303588016 ], [ -95.774255133990451, 30.355196303806341 ], [ -95.773521133930316, 30.354673304065688 ], [ -95.772961133622587, 30.354252303320234 ], [ -95.772666133224035, 30.354044303454234 ], [ -95.772180133814814, 30.353714303905917 ], [ -95.771889133104295, 30.353506303223831 ], [ -95.771463132996303, 30.353182303544099 ], [ -95.771053132981805, 30.352845303369406 ], [ -95.770852133029678, 30.352670303558391 ], [ -95.770619132600359, 30.352439303282626 ], [ -95.770469132770515, 30.352262302991555 ], [ -95.77039713283402, 30.352166303243312 ], [ -95.770269132874404, 30.35197430340413 ], [ -95.770211133240835, 30.351876303581829 ], [ -95.770106133386392, 30.351670302820303 ], [ -95.770027133322031, 30.351539303344886 ], [ -95.769952132348806, 30.351388302771603 ], [ -95.769889132875718, 30.351233303398878 ], [ -95.769839133062561, 30.351080302901202 ], [ -95.769803133097312, 30.350917302878766 ], [ -95.769778133238859, 30.350757303313895 ], [ -95.769767133229081, 30.350595302921327 ], [ -95.769771132210167, 30.350432302921362 ], [ -95.769750132323907, 30.350270302929239 ], [ -95.769725132380643, 30.349950302599765 ], [ -95.769711132552104, 30.349628302627799 ], [ -95.769710132253763, 30.349306302772362 ], [ -95.769722132662409, 30.348982302491198 ], [ -95.769723132481019, 30.348888303092146 ], [ -95.769727132860581, 30.348139302599712 ], [ -95.769745132142504, 30.344689301474631 ], [ -95.769747132250103, 30.344307302204495 ], [ -95.769739132560304, 30.343822301917321 ], [ -95.769725132862376, 30.34357430167816 ], [ -95.769716132718287, 30.343460301175831 ], [ -95.769703132180084, 30.343291301230913 ], [ -95.769675132129649, 30.343158301479463 ], [ -95.769611131976063, 30.342898301456099 ], [ -95.769534132259622, 30.342640301737983 ], [ -95.769279132498298, 30.341923301536422 ], [ -95.768994131597907, 30.341120300913406 ], [ -95.768796131647633, 30.340686300700781 ], [ -95.768623131604102, 30.340371300984909 ], [ -95.768350131519284, 30.339914300496414 ], [ -95.766819131507518, 30.337209300482691 ], [ -95.766389131658869, 30.336429300584264 ], [ -95.766334131572776, 30.336323300020243 ], [ -95.766227131053881, 30.336097299877768 ], [ -95.766165130885668, 30.335945300056331 ], [ -95.766083131510001, 30.335709300131203 ], [ -95.766037130754981, 30.335554300122666 ], [ -95.76597813120965, 30.335318300534073 ], [ -95.765898130808338, 30.335196299779486 ], [ -95.765912130847752, 30.334904299830626 ], [ -95.765862131226896, 30.33449130015337 ], [ -95.76583513109648, 30.334185299448833 ], [ -95.765796130586651, 30.33354829984588 ], [ -95.765808130545722, 30.333433299842813 ], [ -95.765600130610281, 30.325746297994389 ], [ -95.759771129162004, 30.325925298841391 ], [ -95.759381129198971, 30.325927298707025 ], [ -95.75914712849206, 30.325918298166645 ], [ -95.759004128579363, 30.325907298430078 ], [ -95.758654128458971, 30.325860298094181 ], [ -95.758444128995933, 30.325819298137088 ], [ -95.758306129074043, 30.325788298203889 ], [ -95.75817112881208, 30.325752298841227 ], [ -95.757967128891764, 30.325686298215835 ], [ -95.757768128295055, 30.32561229872557 ], [ -95.757706128139375, 30.325589298746788 ], [ -95.757451128409599, 30.325479298000101 ], [ -95.757209128203215, 30.3253522980513 ], [ -95.757031128128219, 30.325246298574719 ], [ -95.75687112787125, 30.325131298376419 ], [ -95.75560212780492, 30.324221298296813 ], [ -95.755461128156639, 30.324111298129846 ], [ -95.755384128006526, 30.324045297902131 ], [ -95.754991127975899, 30.323766297960809 ], [ -95.754729127313993, 30.323559298326128 ], [ -95.751400126284935, 30.321042297424064 ], [ -95.750677126497166, 30.320513297870438 ], [ -95.750603126141783, 30.320459297547416 ], [ -95.749013125788323, 30.319200297833095 ], [ -95.748450125502927, 30.318747297664924 ], [ -95.747547125690843, 30.318020297233602 ], [ -95.747190125146318, 30.317717297629336 ], [ -95.746837125691997, 30.317406297266714 ], [ -95.745629125020898, 30.316392296965201 ], [ -95.744823125220634, 30.315718296654794 ], [ -95.744406124559077, 30.315370297167089 ], [ -95.740926123107315, 30.312432296423765 ], [ -95.740824123658598, 30.312346296235397 ], [ -95.739414123029604, 30.311156295746414 ], [ -95.735984122521913, 30.308251295305528 ], [ -95.735911122323657, 30.308194295511207 ], [ -95.735795121766827, 30.308090295589125 ], [ -95.735754121688387, 30.308048295427604 ], [ -95.735686121577956, 30.307980295407223 ], [ -95.735587121941904, 30.307859295254246 ], [ -95.735501122007193, 30.307739295770748 ], [ -95.735421121578426, 30.307608295986501 ], [ -95.735352121823141, 30.307477295543709 ], [ -95.735313121711414, 30.307393295298713 ], [ -95.735156122218029, 30.307054295631623 ], [ -95.73392012144123, 30.304653294657271 ], [ -95.733816121349051, 30.304436294797892 ], [ -95.733680121496604, 30.304210294633204 ], [ -95.733564120854766, 30.30399529482273 ], [ -95.733502120938354, 30.303889295168361 ], [ -95.733399121235806, 30.303730295043579 ], [ -95.733238121140289, 30.30346229491817 ], [ -95.733000120965158, 30.303112294966809 ], [ -95.732640120491212, 30.302639294647388 ], [ -95.732496120806445, 30.302443294403357 ], [ -95.731967120482125, 30.301833294599572 ], [ -95.731749121124551, 30.301616294545795 ], [ -95.731529120421214, 30.301385294345454 ], [ -95.731315120131342, 30.301146294176736 ], [ -95.731104120521053, 30.300929293996781 ], [ -95.730903120502632, 30.300740294085955 ], [ -95.730782120751968, 30.300633294618386 ], [ -95.730673120268236, 30.300517294089524 ], [ -95.730577120510432, 30.300396294637245 ], [ -95.730304119825647, 30.300120294465277 ], [ -95.730147120705396, 30.299962293866841 ], [ -95.72940511980471, 30.299243294184954 ], [ -95.728235119200207, 30.298087294262874 ], [ -95.727864119139625, 30.297713294167373 ], [ -95.727409119626387, 30.297252293631523 ], [ -95.727261119341065, 30.297103293674766 ], [ -95.725498119245202, 30.295228293167764 ], [ -95.72498011836241, 30.294677293438625 ], [ -95.720768117517409, 30.290429292431725 ], [ -95.718102116125536, 30.287705292154904 ], [ -95.717707116559851, 30.287300292494351 ], [ -95.716294115502251, 30.285855292315965 ], [ -95.715638115319067, 30.2851832917531 ], [ -95.71541711595016, 30.284968291448141 ], [ -95.715179115281344, 30.284710292064553 ], [ -95.715032115485428, 30.28453329124515 ], [ -95.714841115753941, 30.284283291970308 ], [ -95.714689115503901, 30.284071291260574 ], [ -95.714507114969692, 30.283777291530434 ], [ -95.714395115601349, 30.283582291958986 ], [ -95.714242114947325, 30.28327829184532 ], [ -95.714196115052459, 30.283176291366257 ], [ -95.713384114512621, 30.280940291347182 ], [ -95.713283114841033, 30.280659291215748 ], [ -95.71182711405983, 30.276442290591639 ], [ -95.711072113942819, 30.274267289915233 ], [ -95.710893114211402, 30.273751289526736 ], [ -95.710636114077204, 30.273950289845729 ], [ -95.710446114340755, 30.274098289396573 ], [ -95.710122114361141, 30.274362290124429 ], [ -95.709556113843647, 30.274827289923604 ], [ -95.709270114002891, 30.275084289967261 ], [ -95.709129113881161, 30.275226289666335 ], [ -95.708986113164258, 30.275372290411525 ], [ -95.708842113888167, 30.275539290328034 ], [ -95.708771113117649, 30.275636290496237 ], [ -95.708646113462464, 30.275795290591088 ], [ -95.708565113654004, 30.275906290163537 ], [ -95.708457113257623, 30.276088290339448 ], [ -95.708381113546352, 30.276232289897035 ], [ -95.708367113354598, 30.276259290271543 ], [ -95.708168113027511, 30.276705289938121 ], [ -95.708095113300772, 30.276898290106754 ], [ -95.708036113264328, 30.27707629027854 ], [ -95.707956113719561, 30.277283290918835 ], [ -95.707836113318763, 30.277544290334347 ], [ -95.707749113178579, 30.277718290565613 ], [ -95.707551113204559, 30.278054290452467 ], [ -95.707441112884439, 30.278219290689858 ], [ -95.707204113340651, 30.278535290335029 ], [ -95.707077113397474, 30.278689291149515 ], [ -95.707010113041818, 30.278761290911017 ], [ -95.705262113090228, 30.280456290897853 ], [ -95.702576112454736, 30.283059291684424 ], [ -95.702253112085344, 30.283393291620065 ], [ -95.701947111982946, 30.28374029211659 ], [ -95.701840112474684, 30.283875291669819 ], [ -95.701649111764013, 30.284142291737375 ], [ -95.701474112234067, 30.284422291915057 ], [ -95.701367111656452, 30.284609292094661 ], [ -95.701304112316905, 30.284728292060151 ], [ -95.700598112021922, 30.286491292168691 ], [ -95.700527112175877, 30.286717292348673 ], [ -95.700484112535477, 30.286947292817075 ], [ -95.700472111978428, 30.287145292844464 ], [ -95.700447111924959, 30.287936293140497 ], [ -95.70042611196817, 30.288095293045103 ], [ -95.700409111747561, 30.288175293010518 ], [ -95.700361112319229, 30.288333293231744 ], [ -95.699719112402462, 30.289731293079242 ], [ -95.699546112400142, 30.290170293108773 ], [ -95.699447111642655, 30.290462293400864 ], [ -95.699378111627723, 30.290694293144774 ], [ -95.699113111963797, 30.291504293893791 ], [ -95.698780111934497, 30.292522293589268 ], [ -95.698159111689023, 30.294418294176481 ], [ -95.697846111862376, 30.295426294763061 ], [ -95.697495111265255, 30.296556294494255 ], [ -95.69685911128532, 30.298636295274775 ], [ -95.69681111182976, 30.298924295660083 ], [ -95.696771111491785, 30.299212295373895 ], [ -95.696745111933097, 30.299500295364869 ], [ -95.696731111413627, 30.299791295823351 ], [ -95.696727111886361, 30.300005295640958 ], [ -95.696749112205154, 30.301001295502083 ], [ -95.696815111953057, 30.303919296645937 ], [ -95.696984112008593, 30.313837297893883 ], [ -95.696995112284441, 30.314518298668975 ], [ -95.697021112075092, 30.316534298634416 ], [ -95.697031112514949, 30.317306299001789 ], [ -95.697039112454831, 30.317922298759232 ], [ -95.697048112505314, 30.318635299115424 ], [ -95.69709011231825, 30.321810299827376 ], [ -95.697101113059531, 30.322583300138469 ], [ -95.697135112790136, 30.325119300660063 ], [ -95.697151113253128, 30.326416301130951 ], [ -95.697159113572837, 30.326966301029152 ], [ -95.697167112600923, 30.327550300603537 ], [ -95.697217113103278, 30.331321301404117 ], [ -95.697240113115257, 30.331828301794001 ], [ -95.697273113657147, 30.332332302069084 ], [ -95.697322113437892, 30.332892301997568 ], [ -95.697363113063943, 30.333239302465785 ], [ -95.697376113478256, 30.333611301849515 ], [ -95.697376113185641, 30.333751302091088 ], [ -95.697361113634273, 30.333987302166992 ], [ -95.697368113499522, 30.33428330222446 ], [ -95.697387113090755, 30.335064302489165 ], [ -95.697408113651704, 30.335954302728108 ], [ -95.697465113226983, 30.338376303121962 ], [ -95.697507113616979, 30.340138303888992 ], [ -95.69754211419783, 30.341715303581346 ], [ -95.697623114323122, 30.3453043044255 ], [ -95.697640113645974, 30.345929305019837 ], [ -95.697707114097369, 30.348436305342918 ], [ -95.697745114593005, 30.353201306282148 ], [ -95.697746114685643, 30.353244306319301 ], [ -95.697789114835416, 30.355785306855527 ], [ -95.697786115089272, 30.356666306521841 ], [ -95.697816114873774, 30.358837306915774 ], [ -95.697839114957247, 30.360514307406543 ], [ -95.697860114455565, 30.361332307872871 ], [ -95.697869115061948, 30.361710308049258 ], [ -95.697871115156445, 30.361777307974037 ], [ -95.697925115304969, 30.363987308247854 ], [ -95.698018115558909, 30.366259308634657 ], [ -95.698130115519064, 30.369485309221929 ], [ -95.698143114975963, 30.369948309456895 ], [ -95.698158114872612, 30.370475309706634 ], [ -95.698164115605806, 30.37069530924224 ], [ -95.69816811587971, 30.370831309991857 ], [ -95.698596115974425, 30.371308310059483 ], [ -95.698818115333125, 30.371607309900501 ], [ -95.698930115739117, 30.371763310117096 ], [ -95.70044911599345, 30.373575310190656 ], [ -95.702940117249653, 30.376921310919709 ], [ -95.703007116443914, 30.377011311120505 ], [ -95.703925117222397, 30.37822531141866 ], [ -95.704806117842637, 30.379294310802084 ], [ -95.705557117794825, 30.379925311570535 ], [ -95.706387117647893, 30.380359311355107 ], [ -95.707355118278457, 30.380595311284136 ], [ -95.708093118757276, 30.38064431172527 ], [ -95.708860118524882, 30.380615311295333 ], [ -95.710045118584418, 30.38032631114076 ], [ -95.711099119493525, 30.379851311085588 ], [ -95.712044119761657, 30.379469310971324 ], [ -95.712370119072474, 30.379380311135925 ], [ -95.713435119848256, 30.379301310970494 ], [ -95.713943120002227, 30.379369310651192 ], [ -95.714654120321867, 30.379466310634044 ], [ -95.714835119829303, 30.379540310578257 ], [ -95.715809120462438, 30.379929310866626 ], [ -95.721442122212295, 30.384337311434773 ], [ -95.721651121978837, 30.384506311214221 ], [ -95.721710121877436, 30.38455431155996 ], [ -95.726261123277311, 30.388240312316373 ], [ -95.726461123071331, 30.388402312274216 ], [ -95.728104124034218, 30.389528312717438 ], [ -95.729904124040075, 30.39032431277283 ], [ -95.73101612441566, 30.390712312087878 ], [ -95.731712124667638, 30.390893312079321 ], [ -95.732224124881668, 30.390980312784212 ], [ -95.7332651249056, 30.391002312668299 ], [ -95.73400712518378, 30.39092131211348 ], [ -95.734287125714999, 30.39087531278679 ], [ -95.734609125558336, 30.390822312216304 ], [ -95.737838126158024, 30.389794311929929 ], [ -95.738193126608223, 30.389681312175039 ], [ -95.739441126510201, 30.389250311856976 ], [ -95.740786127628127, 30.38838831180086 ], [ -95.745349128091803, 30.385099310749311 ], [ -95.74584712814351, 30.384742310880604 ], [ -95.746363128574345, 30.384421310342802 ], [ -95.747549128679452, 30.384022310436119 ], [ -95.747598128228262, 30.384247310271427 ], [ -95.747800128511543, 30.38419131066032 ], [ -95.748071128598866, 30.384107310124303 ], [ -95.748512128636506, 30.383983310939612 ], [ -95.748946128558458, 30.383856310850543 ], [ -95.750401129645539, 30.383443310424674 ], [ -95.751866129224425, 30.383013310022065 ], [ -95.751991129484324, 30.382983310227811 ], [ -95.752383130047662, 30.382869310484406 ], [ -95.752632129856764, 30.382792310388496 ], [ -95.752947129537034, 30.382701309661091 ], [ -95.753046129959031, 30.38267631005327 ], [ -95.753163130129238, 30.382634309985054 ], [ -95.753295129661012, 30.382594309628239 ], [ -95.753565129696199, 30.382523309736708 ], [ -95.753980129813996, 30.382407309891295 ], [ -95.754150130008057, 30.382353309943039 ], [ -95.754498130008002, 30.382260309791661 ], [ -95.754946130680466, 30.382116310254567 ], [ -95.755358130229752, 30.3819973094486 ], [ -95.755807130438313, 30.381832309578186 ], [ -95.756250130460387, 30.381653309857398 ], [ -95.756657131180518, 30.381451309633942 ], [ -95.756855131084521, 30.381345309416922 ], [ -95.757345130589755, 30.381063309501638 ], [ -95.757462131510025, 30.381011309347059 ], [ -95.757681130838435, 30.380865309171483 ], [ -95.758003131188531, 30.380630309146515 ], [ -95.758399130899477, 30.380310309139162 ], [ -95.761155131440745, 30.377978308571549 ], [ -95.761784131921971, 30.37743730909807 ], [ -95.762019132128799, 30.377217308479032 ], [ -95.763318132646233, 30.376140308180027 ], [ -95.763685132677239, 30.375819307979732 ], [ -95.764171132669091, 30.375415308300866 ], [ -95.764550133074053, 30.375127308209006 ], [ -95.766031133019851, 30.373942308285486 ], [ -95.769108133855298, 30.371499306894105 ], [ -95.77096613417072, 30.370024306584849 ], [ -95.7712291336519, 30.369815307112095 ], [ -95.771789134115707, 30.369370306939064 ], [ -95.771818133928249, 30.369347306798154 ], [ -95.772659134236022, 30.368683306864295 ], [ -95.772987134369785, 30.368424306470715 ], [ -95.773027134621032, 30.368392306512607 ], [ -95.77330613474696, 30.368166306317796 ], [ -95.773731134386011, 30.367822306581047 ], [ -95.775195134687522, 30.36666930642324 ], [ -95.775703134728232, 30.366271306155628 ], [ -95.775950134782533, 30.366076305984258 ], [ -95.776676135289435, 30.36548330564279 ], [ -95.776454135481899, 30.364867305585189 ], [ -95.776258135068787, 30.364301305188544 ], [ -95.776154135275519, 30.363969305181868 ], [ -95.776128134659686, 30.363899305602189 ], [ -95.776095134919174, 30.363786305808802 ], [ -95.776080134739004, 30.363714305188289 ], [ -95.776076135391691, 30.363675305630132 ], [ -95.776071135140356, 30.363634305043316 ], [ -95.776069135306926, 30.36356030519249 ], [ -95.776085135258185, 30.363406305565011 ], [ -95.776101134770485, 30.363330305094301 ], [ -95.776149135031375, 30.363185305630179 ], [ -95.776223135242347, 30.363044305373919 ], [ -95.776317134646931, 30.362917305273843 ], [ -95.776488135034313, 30.36274230536932 ], [ -95.776715135324281, 30.362505305641502 ], [ -95.776806135005373, 30.362381305156209 ], [ -95.776886134785485, 30.362229305456996 ], [ -95.776938135191969, 30.362090305518816 ], [ -95.776965134950871, 30.361961305383037 ], [ -95.776976135283633, 30.361882304904547 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1260, "Tract": "48339694306", "Area_SqMi": 2.4878922602701734, "total_2009": 1405, "total_2010": 1387, "total_2011": 1909, "total_2012": 1755, "total_2013": 1503, "total_2014": 1765, "total_2015": 1739, "total_2016": 1727, "total_2017": 1850, "total_2018": 1902, "total_2019": 2046, "total_2020": 1805, "age1": 174, "age2": 1175, "age3": 503, "earn1": 342, "earn2": 452, "earn3": 1058, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 26, "naics_s05": 0, "naics_s06": 24, "naics_s07": 5, "naics_s08": 42, "naics_s09": 5, "naics_s10": 21, "naics_s11": 7, "naics_s12": 15, "naics_s13": 0, "naics_s14": 31, "naics_s15": 1534, "naics_s16": 5, "naics_s17": 44, "naics_s18": 6, "naics_s19": 86, "naics_s20": 0, "race1": 1730, "race2": 88, "race3": 7, "race4": 9, "race5": 0, "race6": 18, "ethnicity1": 1679, "ethnicity2": 173, "edu1": 172, "edu2": 371, "edu3": 479, "edu4": 656, "Shape_Length": 59680.209807647065, "Shape_Area": 69358178.146173194, "total_2021": 1725, "total_2022": 1852 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.653255105124416, 30.402786317852375 ], [ -95.653242105621558, 30.402470317977386 ], [ -95.653116105232286, 30.40184231764777 ], [ -95.653106105688764, 30.401797317712596 ], [ -95.651598104651399, 30.401798317634274 ], [ -95.651579105221302, 30.401780317209255 ], [ -95.648255103801773, 30.398636317312558 ], [ -95.646796103758803, 30.39838031690174 ], [ -95.644615102738982, 30.396482316922178 ], [ -95.644181102619811, 30.395598316322811 ], [ -95.643309102888708, 30.394713316371043 ], [ -95.643166102206862, 30.394082316769627 ], [ -95.642152102216386, 30.392314316396117 ], [ -95.641367101858336, 30.391631315799408 ], [ -95.640262101820525, 30.390669316182017 ], [ -95.639243101168049, 30.390036315987611 ], [ -95.634429099862373, 30.389516316133395 ], [ -95.632390099321228, 30.388626315578172 ], [ -95.630203098940513, 30.388115315859594 ], [ -95.625261097294214, 30.383686314923978 ], [ -95.622202096579556, 30.382415314909174 ], [ -95.620894096529994, 30.381276314394295 ], [ -95.620020095498219, 30.381021314527185 ], [ -95.616226094702597, 30.380882314362665 ], [ -95.615498094649894, 30.380627314257872 ], [ -95.613893093841924, 30.380496314260807 ], [ -95.61322309394177, 30.380261314928806 ], [ -95.612436093699699, 30.379986314215095 ], [ -95.612134093656579, 30.379984314159245 ], [ -95.610314093737117, 30.379978314270005 ], [ -95.610805093977248, 30.383839315632745 ], [ -95.61080509378219, 30.3846863159592 ], [ -95.611941094187813, 30.386427315719427 ], [ -95.61265409474619, 30.387160315614242 ], [ -95.613790094746889, 30.387824316220581 ], [ -95.614187095030502, 30.3881453163145 ], [ -95.61490009528967, 30.389152316359073 ], [ -95.614979095522358, 30.389381316693719 ], [ -95.614900095257013, 30.39013731699357 ], [ -95.614689094974253, 30.390252316343854 ], [ -95.614477095159529, 30.390183316264501 ], [ -95.614477094795433, 30.38949631633983 ], [ -95.613817095119046, 30.388557316675417 ], [ -95.61328809474773, 30.388213315929548 ], [ -95.612601094374924, 30.388213315823748 ], [ -95.612377093825472, 30.388316316205334 ], [ -95.612152094595075, 30.388419316400842 ], [ -95.611888093883707, 30.388900316747453 ], [ -95.611915094342265, 30.389633316646755 ], [ -95.611254094384165, 30.390045316757003 ], [ -95.611069094168869, 30.390068316653682 ], [ -95.610990094083817, 30.389771316543186 ], [ -95.611281094175695, 30.389450316272828 ], [ -95.61141309388951, 30.388877316620185 ], [ -95.611756093801574, 30.387938316025128 ], [ -95.611545094401038, 30.387320316090694 ], [ -95.610779094021638, 30.386610315932622 ], [ -95.609537093776197, 30.386221316124157 ], [ -95.607926093444291, 30.384686316165357 ], [ -95.60686909302855, 30.38470931571451 ], [ -95.606367092486849, 30.384892316072079 ], [ -95.60628809281603, 30.385075316302643 ], [ -95.606341093097953, 30.385465316068746 ], [ -95.60655209285278, 30.386106316002479 ], [ -95.606446093012423, 30.38617531630991 ], [ -95.606182092340475, 30.386106316179795 ], [ -95.60586509289989, 30.38585431611552 ], [ -95.605284092103105, 30.3857393156635 ], [ -95.604861091808104, 30.385900316059043 ], [ -95.60446509192937, 30.386266316202235 ], [ -95.604227091829245, 30.386701316073562 ], [ -95.604147091874694, 30.388350316739437 ], [ -95.604623092000182, 30.389221316874142 ], [ -95.605521092638782, 30.390114317079117 ], [ -95.605627092737791, 30.390320316746717 ], [ -95.605574092749038, 30.390503317265019 ], [ -95.605310092722192, 30.390503316751079 ], [ -95.605046092052035, 30.390343317064985 ], [ -95.604729092368444, 30.390435317094472 ], [ -95.604755092280826, 30.39064131665247 ], [ -95.604966092852365, 30.391007317441115 ], [ -95.604940092720767, 30.391236317540319 ], [ -95.604755092457182, 30.391305317562303 ], [ -95.604491092429143, 30.391168317193678 ], [ -95.604332092147899, 30.390961317039078 ], [ -95.604306092825283, 30.390572316668582 ], [ -95.60375109212157, 30.389496316897439 ], [ -95.603091091771518, 30.388763316801004 ], [ -95.602430091510385, 30.388236316264855 ], [ -95.601876091678022, 30.388304316850711 ], [ -95.601453092002117, 30.388671316318 ], [ -95.601241091558222, 30.388671316841805 ], [ -95.60110909146438, 30.388579316841778 ], [ -95.601189090967992, 30.38835031707935 ], [ -95.601506091490833, 30.387961316987816 ], [ -95.601558091904081, 30.387228316249711 ], [ -95.602272091742293, 30.38642631639588 ], [ -95.60229809168986, 30.385533315951061 ], [ -95.6021660910869, 30.385258316343371 ], [ -95.60177009134442, 30.384961316373587 ], [ -95.601057091010929, 30.385098316185168 ], [ -95.599868091115098, 30.38484631595043 ], [ -95.599287090760328, 30.384433315587888 ], [ -95.598864091125918, 30.384479316151264 ], [ -95.598732091129136, 30.384594316164034 ], [ -95.598653090785263, 30.385052316278518 ], [ -95.598124090318464, 30.38560131583132 ], [ -95.59804509038689, 30.386609316877923 ], [ -95.597966090484107, 30.386724316622956 ], [ -95.597728091000647, 30.386678316352128 ], [ -95.596830089781776, 30.385601316668762 ], [ -95.595958089431718, 30.384960316455484 ], [ -95.595641089656212, 30.384822316269176 ], [ -95.594796089482813, 30.384822316006176 ], [ -95.594680089272387, 30.384913316117256 ], [ -95.595439090071011, 30.385452316267799 ], [ -95.595449089961974, 30.385533316507761 ], [ -95.59553409036856, 30.385616316614612 ], [ -95.595620089626038, 30.385671315996682 ], [ -95.595743090097457, 30.38566531664523 ], [ -95.595997090253888, 30.385702315965265 ], [ -95.596065090331095, 30.385729316736803 ], [ -95.596107090467115, 30.385779316771504 ], [ -95.596124089787068, 30.385879316789136 ], [ -95.59618809017168, 30.385932316687651 ], [ -95.596338089576392, 30.386082316798408 ], [ -95.596452089822307, 30.386185316253503 ], [ -95.596558090464214, 30.386306316044724 ], [ -95.596905090462215, 30.386725316822375 ], [ -95.597149090161167, 30.386982316735875 ], [ -95.597279090110518, 30.38709531613933 ], [ -95.597351090006384, 30.387144316585641 ], [ -95.597430090469132, 30.387187316686589 ], [ -95.597510090514589, 30.387225316490582 ], [ -95.59759709083248, 30.387254316346592 ], [ -95.597431090891675, 30.387671316313568 ], [ -95.597399090710979, 30.387791316853129 ], [ -95.597374090966682, 30.388041316878702 ], [ -95.59738209044707, 30.388308316853784 ], [ -95.597405090135297, 30.388460317123901 ], [ -95.597469090323571, 30.388703316546177 ], [ -95.597479090822148, 30.388733316458811 ], [ -95.597534090499053, 30.38889231717631 ], [ -95.597640090625234, 30.389164317055133 ], [ -95.597924090880326, 30.389898317203038 ], [ -95.597973090481688, 30.390006316982493 ], [ -95.598082090351326, 30.390292316897543 ], [ -95.598206090434118, 30.390504317523298 ], [ -95.598294090841122, 30.390641317646075 ], [ -95.598468091065726, 30.390901317038256 ], [ -95.598772090934602, 30.391214317756898 ], [ -95.598970090592303, 30.391365317239295 ], [ -95.599123090858129, 30.391471317013927 ], [ -95.599302091496412, 30.391574317496925 ], [ -95.599443091080957, 30.391647317696279 ], [ -95.599686090910083, 30.391755317109695 ], [ -95.600684091602673, 30.392173317846929 ], [ -95.60174609152368, 30.392618317857576 ], [ -95.602172091503732, 30.39280531711049 ], [ -95.603673092789649, 30.393423317412307 ], [ -95.604399092723625, 30.393744317377461 ], [ -95.605336092321181, 30.394141317924785 ], [ -95.60566209320811, 30.394273318022282 ], [ -95.606509092947391, 30.394649317594055 ], [ -95.607287093411614, 30.394966318108047 ], [ -95.607966093001764, 30.395211318097882 ], [ -95.60844509329371, 30.39533931816635 ], [ -95.60870109368841, 30.395400317779831 ], [ -95.608958093393269, 30.395456317492258 ], [ -95.60943809392748, 30.395535317453977 ], [ -95.609974093991113, 30.395600317576314 ], [ -95.61024109424018, 30.39561831820938 ], [ -95.610516094478854, 30.395628317502084 ], [ -95.610783094575297, 30.395632318220496 ], [ -95.611411094162989, 30.395617318002444 ], [ -95.61172109497258, 30.395592317738085 ], [ -95.611997094415486, 30.395558317651833 ], [ -95.612299094262966, 30.395521318093294 ], [ -95.61258109465453, 30.395476317578535 ], [ -95.612879094894097, 30.39541731789971 ], [ -95.613550095372545, 30.395253317861478 ], [ -95.61387509495988, 30.39515131718484 ], [ -95.614216095533166, 30.395027317314543 ], [ -95.614353094968052, 30.394979317314434 ], [ -95.615133095218425, 30.394632317798816 ], [ -95.615757095330864, 30.394340317670444 ], [ -95.616349095465253, 30.394055317591445 ], [ -95.616740095963607, 30.393878317575176 ], [ -95.616996095727842, 30.393774316913717 ], [ -95.617254095559218, 30.393687317393713 ], [ -95.617566095429609, 30.393596316875119 ], [ -95.617907095806885, 30.393517317383214 ], [ -95.618394095790265, 30.393435317216952 ], [ -95.61851409585438, 30.393419317028268 ], [ -95.61872409607696, 30.393402317292285 ], [ -95.618984096545958, 30.393395316674084 ], [ -95.61930409605948, 30.393386317339502 ], [ -95.619524096482678, 30.393392317254289 ], [ -95.619831096549703, 30.39341131694847 ], [ -95.620140096917794, 30.393443317206941 ], [ -95.620506096464482, 30.393510316722768 ], [ -95.620794097205277, 30.393578317212118 ], [ -95.621029096464156, 30.393644316931191 ], [ -95.62127209651382, 30.393719316793238 ], [ -95.621475097416194, 30.393793316934861 ], [ -95.621594096457855, 30.393848317118291 ], [ -95.622113096947359, 30.394114316690839 ], [ -95.622241097599584, 30.394183316735365 ], [ -95.622581097108664, 30.394409316786117 ], [ -95.62275309702629, 30.394529316771262 ], [ -95.622940097292599, 30.394677317023849 ], [ -95.623239097406568, 30.394935317115145 ], [ -95.623389097040871, 30.395092317505707 ], [ -95.623519097166579, 30.395236317107308 ], [ -95.623817097920295, 30.39561731730473 ], [ -95.623939097422337, 30.395788316923017 ], [ -95.624051097731353, 30.395956317440838 ], [ -95.6241670979975, 30.396168317453508 ], [ -95.624251097988022, 30.396346317463294 ], [ -95.624322097610289, 30.396540317164632 ], [ -95.62438509758357, 30.396737317368675 ], [ -95.624483097795533, 30.397114317900872 ], [ -95.624559097785365, 30.397526317340919 ], [ -95.624606097662976, 30.397840317799542 ], [ -95.624706097957485, 30.398393317678671 ], [ -95.624762097725906, 30.398664317803686 ], [ -95.624835098366489, 30.398935318266542 ], [ -95.624928098196591, 30.399210317650791 ], [ -95.624969098372745, 30.399324318185567 ], [ -95.625068097870027, 30.399571318415049 ], [ -95.625144097824872, 30.399741317947065 ], [ -95.625224098500198, 30.399902317830009 ], [ -95.625302098301972, 30.400044318327076 ], [ -95.625410098682025, 30.400212318190214 ], [ -95.625676097957268, 30.40057631791846 ], [ -95.625810098649566, 30.400728317876798 ], [ -95.626040098265491, 30.400965318260141 ], [ -95.626232097959175, 30.401138318774663 ], [ -95.626550098618722, 30.40142131851761 ], [ -95.626845098999254, 30.401653318623396 ], [ -95.626968099018427, 30.401734318451368 ], [ -95.627074098443899, 30.401791318163124 ], [ -95.62719609833637, 30.401871318181144 ], [ -95.627356098656421, 30.401966318434212 ], [ -95.627531099092721, 30.402050318944827 ], [ -95.627998098840663, 30.402252318824715 ], [ -95.628508098684762, 30.402462318568684 ], [ -95.629055099313547, 30.40267731891019 ], [ -95.629441099020426, 30.40281631860314 ], [ -95.629643099181195, 30.402906318634361 ], [ -95.629960099641337, 30.403035318693799 ], [ -95.630479099324077, 30.40325431849034 ], [ -95.630971100067768, 30.403495318812453 ], [ -95.631237099642192, 30.40360631886859 ], [ -95.631642099633254, 30.403759318747081 ], [ -95.631824099714393, 30.403822318283453 ], [ -95.632046099848125, 30.403893318849057 ], [ -95.632321099811023, 30.403972319047931 ], [ -95.632422099826016, 30.404001318471177 ], [ -95.632724100349577, 30.404072319106412 ], [ -95.632963099963533, 30.404120318386937 ], [ -95.633180100335437, 30.404169318421825 ], [ -95.633754100809043, 30.404260318447616 ], [ -95.634307100556626, 30.404296318632504 ], [ -95.634664100946452, 30.40430831858766 ], [ -95.634967100499054, 30.404307318840416 ], [ -95.63613410141464, 30.404289318370544 ], [ -95.637343101660676, 30.404270318174135 ], [ -95.638291101479055, 30.404247318421362 ], [ -95.638817101597184, 30.404235318806933 ], [ -95.639440101976746, 30.404226318605783 ], [ -95.639719102090396, 30.404222318949415 ], [ -95.640091102272848, 30.404217318157894 ], [ -95.640878102678684, 30.404199318114301 ], [ -95.641228102587618, 30.404191318139777 ], [ -95.641675102480363, 30.404190318271976 ], [ -95.642595102316221, 30.404188318761772 ], [ -95.645249103663929, 30.404181318463124 ], [ -95.646555103616251, 30.404178318434315 ], [ -95.647984104049655, 30.404175317847351 ], [ -95.648343104455137, 30.404192317842487 ], [ -95.648629104511599, 30.404226317787447 ], [ -95.649065104067901, 30.404330318111338 ], [ -95.649458104464131, 30.404424318046861 ], [ -95.649695104879243, 30.40448131846539 ], [ -95.650385104956044, 30.404642317948486 ], [ -95.65086110479956, 30.404682318007218 ], [ -95.65131610499968, 30.404642317853096 ], [ -95.651755105044117, 30.404531318540815 ], [ -95.652253105616282, 30.404290317930212 ], [ -95.652655105323817, 30.403989317961827 ], [ -95.652966104967916, 30.403579317937968 ], [ -95.653157105659702, 30.403179317779323 ], [ -95.653255105124416, 30.402786317852375 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1261, "Tract": "48201332000", "Area_SqMi": 0.85341977113119827, "total_2009": 174, "total_2010": 197, "total_2011": 227, "total_2012": 206, "total_2013": 226, "total_2014": 235, "total_2015": 189, "total_2016": 144, "total_2017": 144, "total_2018": 160, "total_2019": 156, "total_2020": 147, "age1": 106, "age2": 270, "age3": 74, "earn1": 34, "earn2": 85, "earn3": 331, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 18, "naics_s07": 36, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 80, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 274, "naics_s17": 0, "naics_s18": 20, "naics_s19": 18, "naics_s20": 0, "race1": 322, "race2": 86, "race3": 3, "race4": 29, "race5": 0, "race6": 10, "ethnicity1": 159, "ethnicity2": 291, "edu1": 92, "edu2": 87, "edu3": 98, "edu4": 67, "Shape_Length": 20042.564923788501, "Shape_Area": 23791882.576601639, "total_2021": 260, "total_2022": 450 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355962996659912, 29.680369181183224 ], [ -95.355936996182308, 29.679894180726457 ], [ -95.355937996142629, 29.679039180535888 ], [ -95.355942996074006, 29.678822180975104 ], [ -95.355948996338554, 29.678685180608785 ], [ -95.355917995705681, 29.677113180912198 ], [ -95.355898996206207, 29.676376180631301 ], [ -95.355880996210686, 29.675549180297242 ], [ -95.35585899623689, 29.674954179707449 ], [ -95.355855995683214, 29.674559179962042 ], [ -95.355839995651849, 29.67411117960874 ], [ -95.35582299573214, 29.673328179671081 ], [ -95.355807995370782, 29.672539179648822 ], [ -95.355786995773514, 29.671786179771718 ], [ -95.355778995262057, 29.671047179575503 ], [ -95.355750995869343, 29.670244179232256 ], [ -95.355721995166633, 29.669462178752266 ], [ -95.355721995949182, 29.669099178418843 ], [ -95.355589995192162, 29.669057179087002 ], [ -95.355108995056497, 29.66890317909894 ], [ -95.354647994958398, 29.6687011787701 ], [ -95.35407899501665, 29.668305178860777 ], [ -95.353607994943317, 29.667998178371093 ], [ -95.353115994695841, 29.66777717859555 ], [ -95.352162994247095, 29.667500178292517 ], [ -95.351515994078511, 29.667295179004178 ], [ -95.350490994028164, 29.666991178848882 ], [ -95.349803994026118, 29.666875178474392 ], [ -95.348940993801847, 29.666874178256457 ], [ -95.34849599341031, 29.666893178372518 ], [ -95.347606993736491, 29.666781178215547 ], [ -95.346833993085795, 29.666566178988038 ], [ -95.346037992818921, 29.666317178403929 ], [ -95.345347992965515, 29.666207178834867 ], [ -95.344468993140325, 29.666209178291318 ], [ -95.344170992782423, 29.666214178288062 ], [ -95.343585992444631, 29.666218178648823 ], [ -95.342700992506508, 29.666236178924446 ], [ -95.342007991492963, 29.666241179169202 ], [ -95.341822991657665, 29.666254178666986 ], [ -95.34074799207319, 29.666282178852512 ], [ -95.338272991461011, 29.666312178578593 ], [ -95.33792599081147, 29.666314178749651 ], [ -95.337650991130502, 29.666332178456514 ], [ -95.337201990538773, 29.666344179227405 ], [ -95.337216990923309, 29.666935179077623 ], [ -95.33723399040214, 29.667604179580149 ], [ -95.337258990845129, 29.668407179389497 ], [ -95.337293990534192, 29.669198179540405 ], [ -95.337309991109208, 29.669985179811409 ], [ -95.337241990880599, 29.670782180029509 ], [ -95.336964991377656, 29.671885179682583 ], [ -95.336826990863187, 29.672244179962906 ], [ -95.336788990494725, 29.672349179834313 ], [ -95.336563991316183, 29.672968180410251 ], [ -95.336442990488308, 29.673762180488616 ], [ -95.336412990761318, 29.673877180783069 ], [ -95.336416990831651, 29.674229180756853 ], [ -95.33641099070968, 29.674685180980859 ], [ -95.336443991023401, 29.675424180821214 ], [ -95.337507991097723, 29.675405180548655 ], [ -95.337675991318946, 29.675425180829315 ], [ -95.338136991772828, 29.675516180819059 ], [ -95.338991991328157, 29.675566180692964 ], [ -95.339984992010429, 29.675882180461752 ], [ -95.340925992131005, 29.676166180842475 ], [ -95.341868992314488, 29.676447180700976 ], [ -95.342808992898682, 29.676712180948595 ], [ -95.343737993285401, 29.677011180882108 ], [ -95.344679992882476, 29.677283181134523 ], [ -95.345602992909818, 29.677578181070462 ], [ -95.346562993409364, 29.677848181210507 ], [ -95.347497994347606, 29.678142180918115 ], [ -95.34842599441113, 29.678435181397031 ], [ -95.349385994352417, 29.678698181195905 ], [ -95.350303995125572, 29.678999181485896 ], [ -95.351089994961967, 29.679213180954633 ], [ -95.351230994854333, 29.679256181500474 ], [ -95.351789994948987, 29.679406180966076 ], [ -95.352062995173398, 29.679363180854327 ], [ -95.352195994842177, 29.679347180997503 ], [ -95.352422995484105, 29.679336181070735 ], [ -95.354699995770289, 29.679988181500924 ], [ -95.355732996210719, 29.6803391811879 ], [ -95.355800996280209, 29.680348181359648 ], [ -95.355962996659912, 29.680369181183224 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1262, "Tract": "48201412600", "Area_SqMi": 0.46782833275381358, "total_2009": 507, "total_2010": 574, "total_2011": 668, "total_2012": 832, "total_2013": 896, "total_2014": 833, "total_2015": 882, "total_2016": 823, "total_2017": 881, "total_2018": 781, "total_2019": 809, "total_2020": 782, "age1": 199, "age2": 441, "age3": 163, "earn1": 112, "earn2": 277, "earn3": 414, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 115, "naics_s05": 0, "naics_s06": 15, "naics_s07": 245, "naics_s08": 9, "naics_s09": 21, "naics_s10": 36, "naics_s11": 2, "naics_s12": 29, "naics_s13": 0, "naics_s14": 5, "naics_s15": 19, "naics_s16": 94, "naics_s17": 4, "naics_s18": 73, "naics_s19": 136, "naics_s20": 0, "race1": 604, "race2": 123, "race3": 7, "race4": 59, "race5": 1, "race6": 9, "ethnicity1": 495, "ethnicity2": 308, "edu1": 154, "edu2": 130, "edu3": 167, "edu4": 153, "Shape_Length": 18041.244341607282, "Shape_Area": 13042253.220982539, "total_2021": 745, "total_2022": 803 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.447825022189022, 29.724534186825295 ], [ -95.447807022154393, 29.7238671866636 ], [ -95.447781021435532, 29.722831186346784 ], [ -95.447778021517962, 29.722714186487661 ], [ -95.447698021430142, 29.719323186082281 ], [ -95.447650021464156, 29.717984185995093 ], [ -95.447603020841228, 29.715846185395225 ], [ -95.44760302162878, 29.715211185479308 ], [ -95.447597021727304, 29.714992184736154 ], [ -95.447579020915924, 29.71412818543293 ], [ -95.447537021337197, 29.712384184523597 ], [ -95.447484021025261, 29.710042184443619 ], [ -95.447397021143274, 29.70592318296384 ], [ -95.447277020472455, 29.705926182876219 ], [ -95.447254020947398, 29.705927183091994 ], [ -95.447150020418164, 29.705931183241756 ], [ -95.446844020718927, 29.705933182988872 ], [ -95.446431020106729, 29.705940183408014 ], [ -95.446194019953879, 29.705939183266263 ], [ -95.446072020185809, 29.705938183517901 ], [ -95.44552602024315, 29.705938183658112 ], [ -95.445432019975016, 29.705938183718178 ], [ -95.44510602064976, 29.705949183489324 ], [ -95.443780019788107, 29.705942183005153 ], [ -95.442793019629605, 29.705951183347384 ], [ -95.441966019698043, 29.705964183625632 ], [ -95.441583019586005, 29.705969183240295 ], [ -95.44099201908881, 29.705977183594914 ], [ -95.441011018831844, 29.706712183487475 ], [ -95.441029019626995, 29.707612184163963 ], [ -95.44107001920564, 29.7081911843926 ], [ -95.441063019754452, 29.70843918361108 ], [ -95.441048019576797, 29.708696183678864 ], [ -95.441063019479088, 29.709391184471279 ], [ -95.441083018885791, 29.710114184058636 ], [ -95.441104019754093, 29.710838184983306 ], [ -95.441105019592584, 29.711537184929554 ], [ -95.441114018935139, 29.712240184878716 ], [ -95.441128019922004, 29.712946185351409 ], [ -95.441141019117737, 29.713742185066504 ], [ -95.441153019178529, 29.714533185299064 ], [ -95.441173019429058, 29.715293185731145 ], [ -95.441184019420092, 29.716039185795253 ], [ -95.441198019382355, 29.716702185461244 ], [ -95.441211020087621, 29.717349185880977 ], [ -95.441218019614624, 29.718210186429559 ], [ -95.441232020164591, 29.71878018647206 ], [ -95.4412310197728, 29.719037185954335 ], [ -95.441247019352119, 29.719499186103718 ], [ -95.441257019902196, 29.719867186313106 ], [ -95.4412570200913, 29.720212186401351 ], [ -95.44126601949263, 29.720694186578633 ], [ -95.441276019824159, 29.721247186672436 ], [ -95.442230020495401, 29.720760186857813 ], [ -95.443036020790288, 29.720350186261378 ], [ -95.443049020020027, 29.721027186280157 ], [ -95.443072020417333, 29.721744186788847 ], [ -95.443080020812431, 29.722461186896595 ], [ -95.443095020521199, 29.723168187130089 ], [ -95.443105020561092, 29.72387618729514 ], [ -95.443114020368256, 29.723962186927192 ], [ -95.443123020218749, 29.724598186940952 ], [ -95.444638021018704, 29.72456518681809 ], [ -95.447189021663831, 29.724525186839891 ], [ -95.447391021448482, 29.724536186967786 ], [ -95.447652021222794, 29.724534187123933 ], [ -95.447825022189022, 29.724534186825295 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1263, "Tract": "48201231400", "Area_SqMi": 1.2982237669075236, "total_2009": 1080, "total_2010": 1138, "total_2011": 1244, "total_2012": 983, "total_2013": 897, "total_2014": 21, "total_2015": 14, "total_2016": 22, "total_2017": 32, "total_2018": 52, "total_2019": 69, "total_2020": 34, "age1": 8, "age2": 12, "age3": 2, "earn1": 11, "earn2": 6, "earn3": 5, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 3, "naics_s07": 16, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 2, "naics_s20": 0, "race1": 10, "race2": 8, "race3": 0, "race4": 4, "race5": 0, "race6": 0, "ethnicity1": 15, "ethnicity2": 7, "edu1": 3, "edu2": 3, "edu3": 4, "edu4": 4, "Shape_Length": 30715.816974816102, "Shape_Area": 36192256.689198375, "total_2021": 17, "total_2022": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.300610990890505, 29.871381222438199 ], [ -95.300608990552021, 29.871243221969699 ], [ -95.300568990820324, 29.866875221005845 ], [ -95.300431990014403, 29.866882221149393 ], [ -95.300100989722708, 29.866902221219149 ], [ -95.299730989706092, 29.866937220936716 ], [ -95.298175990168758, 29.866955221271425 ], [ -95.296433988782297, 29.866979221783183 ], [ -95.296258988957277, 29.866978221676234 ], [ -95.295637989315409, 29.866975221779011 ], [ -95.294697989263653, 29.866978221103906 ], [ -95.292970988306919, 29.867012221490988 ], [ -95.292950987895637, 29.865795221508968 ], [ -95.292949988807194, 29.865087221077658 ], [ -95.292948987924476, 29.864620220895997 ], [ -95.292922987828632, 29.863716221258986 ], [ -95.292914988210669, 29.862460221049485 ], [ -95.292907988407578, 29.861632220754835 ], [ -95.292891987755439, 29.860426219789016 ], [ -95.292876988199652, 29.859100219491875 ], [ -95.292865988206572, 29.858282219338648 ], [ -95.292856988270216, 29.857431219773442 ], [ -95.292841988195661, 29.856489219510074 ], [ -95.292826988022782, 29.855542219126974 ], [ -95.292812987721732, 29.854577219069775 ], [ -95.292795987497698, 29.853684218637373 ], [ -95.292792987474286, 29.853258219027737 ], [ -95.292785988193359, 29.852965218749574 ], [ -95.292492988148709, 29.853126218554543 ], [ -95.292244987152216, 29.853201218705816 ], [ -95.292217987163212, 29.852925218561357 ], [ -95.29213598709147, 29.852805218470181 ], [ -95.291668987226885, 29.85266221903618 ], [ -95.291542987648796, 29.852524218793519 ], [ -95.291523987757913, 29.852491218399724 ], [ -95.291277987691885, 29.852513219084731 ], [ -95.291006987656601, 29.852491218279905 ], [ -95.290703987592238, 29.852447218660927 ], [ -95.290432987110492, 29.852436218310807 ], [ -95.290255987368013, 29.852469218993775 ], [ -95.290060987377672, 29.852469218500783 ], [ -95.289776986652726, 29.85239721822785 ], [ -95.289536987055129, 29.852194218227538 ], [ -95.289183987149428, 29.851952218590714 ], [ -95.289044987191559, 29.851751218648559 ], [ -95.288102986221674, 29.85259121860723 ], [ -95.286673986522999, 29.853941219338715 ], [ -95.286071986336253, 29.854560219541671 ], [ -95.284072985136376, 29.856567219960851 ], [ -95.283321985110121, 29.857299220258334 ], [ -95.282420984856813, 29.858179219753602 ], [ -95.281540985204941, 29.859032220191324 ], [ -95.2814619847221, 29.8591222206345 ], [ -95.281310984792384, 29.859269220111084 ], [ -95.280458984729862, 29.860095220484041 ], [ -95.279974984846007, 29.860567220219924 ], [ -95.278809984287392, 29.861708220837169 ], [ -95.276889984499988, 29.863547221714409 ], [ -95.276189984238556, 29.864241221231623 ], [ -95.272178983137749, 29.868183222057507 ], [ -95.270125982958675, 29.870205223356905 ], [ -95.269897982992205, 29.870427223414961 ], [ -95.26848298197136, 29.871804223087306 ], [ -95.26833198225755, 29.871951223767514 ], [ -95.269531982291198, 29.871928222935875 ], [ -95.26981898307983, 29.871921223393972 ], [ -95.273042983949011, 29.871847223630475 ], [ -95.274519983758466, 29.871832223251815 ], [ -95.281302985428951, 29.87176222255097 ], [ -95.281515985593543, 29.871760222522742 ], [ -95.284209986116394, 29.871715222460956 ], [ -95.28453698687332, 29.871710222895683 ], [ -95.28786598744955, 29.871607222409228 ], [ -95.288298987483515, 29.871597222519135 ], [ -95.291974988348187, 29.871538222478417 ], [ -95.292399988953164, 29.871532222609378 ], [ -95.292850988587944, 29.871527222427403 ], [ -95.296263989688626, 29.871464222485862 ], [ -95.297397990087546, 29.871443222389129 ], [ -95.300437990552041, 29.871385222453412 ], [ -95.300610990890505, 29.871381222438199 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1264, "Tract": "48201252700", "Area_SqMi": 18.300612909513976, "total_2009": 1599, "total_2010": 1611, "total_2011": 1830, "total_2012": 1882, "total_2013": 1919, "total_2014": 1930, "total_2015": 1978, "total_2016": 1975, "total_2017": 2120, "total_2018": 2045, "total_2019": 2065, "total_2020": 1990, "age1": 812, "age2": 963, "age3": 455, "earn1": 602, "earn2": 884, "earn3": 744, "naics_s01": 71, "naics_s02": 1, "naics_s03": 7, "naics_s04": 171, "naics_s05": 38, "naics_s06": 11, "naics_s07": 672, "naics_s08": 12, "naics_s09": 0, "naics_s10": 54, "naics_s11": 54, "naics_s12": 131, "naics_s13": 4, "naics_s14": 39, "naics_s15": 6, "naics_s16": 194, "naics_s17": 18, "naics_s18": 431, "naics_s19": 316, "naics_s20": 0, "race1": 1760, "race2": 306, "race3": 18, "race4": 103, "race5": 5, "race6": 38, "ethnicity1": 1485, "ethnicity2": 745, "edu1": 340, "edu2": 413, "edu3": 435, "edu4": 230, "Shape_Length": 121300.51282187566, "Shape_Area": 510189766.1052202, "total_2021": 1890, "total_2022": 2230 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.095300937900248, 29.8802552313973 ], [ -95.09538193815456, 29.880240230961672 ], [ -95.095281938389718, 29.880172230957516 ], [ -95.094236937637362, 29.87938123064254 ], [ -95.094014938129732, 29.878994230676536 ], [ -95.093863938107489, 29.878546231163337 ], [ -95.093749937615712, 29.878340230379433 ], [ -95.093666937959441, 29.878189230320594 ], [ -95.0937529378687, 29.877689230233084 ], [ -95.093819937403268, 29.877298230693519 ], [ -95.094036937983276, 29.876991230781158 ], [ -95.094189938212722, 29.876619230197104 ], [ -95.09424393731129, 29.876198230534449 ], [ -95.094132937836278, 29.876221230319555 ], [ -95.094022937837892, 29.876245230425738 ], [ -95.093706937585807, 29.876312230684952 ], [ -95.092961937659709, 29.876469230067119 ], [ -95.092738937358959, 29.876534230001432 ], [ -95.091776937270723, 29.876815230102732 ], [ -95.089459936606133, 29.877332230412918 ], [ -95.088359936298431, 29.877577230453657 ], [ -95.085352935286096, 29.878471231370249 ], [ -95.083549935306678, 29.879082231064196 ], [ -95.082135935102443, 29.87961523119311 ], [ -95.08017193468983, 29.880136231834651 ], [ -95.079911934650426, 29.8802062311198 ], [ -95.073343932385569, 29.881973231944233 ], [ -95.070695931647691, 29.882680232474684 ], [ -95.066756930855817, 29.883770232609084 ], [ -95.066447930592105, 29.883820232515731 ], [ -95.065946930449883, 29.883966233017365 ], [ -95.065352930952628, 29.884194232409662 ], [ -95.064524930253853, 29.884566232970936 ], [ -95.064323930082139, 29.884740232869579 ], [ -95.06411093004327, 29.884942232714767 ], [ -95.063693930377411, 29.885393233273248 ], [ -95.063394930213121, 29.885718233077224 ], [ -95.063157929972206, 29.886233233064331 ], [ -95.062547929614453, 29.887179233259889 ], [ -95.061646929729321, 29.888731233805775 ], [ -95.060787929822609, 29.888583233817521 ], [ -95.060405929600847, 29.888396233447946 ], [ -95.060279929619739, 29.888334233780007 ], [ -95.060059929961895, 29.888226233735967 ], [ -95.05990292977998, 29.88872823422772 ], [ -95.059768929599528, 29.8887212341075 ], [ -95.059708929049606, 29.888723233509964 ], [ -95.059650929186049, 29.888733233681872 ], [ -95.059595929738393, 29.888748233593901 ], [ -95.059445928903926, 29.888807234198197 ], [ -95.059393929140327, 29.888823233871154 ], [ -95.059333929453913, 29.888834234047412 ], [ -95.059259928983039, 29.888839234278997 ], [ -95.058767928927907, 29.888839234211531 ], [ -95.057132929239131, 29.888858233953759 ], [ -95.055434928660404, 29.888878233909786 ], [ -95.055370928406603, 29.888879234540646 ], [ -95.053738928318339, 29.888910233960644 ], [ -95.052591927333509, 29.888913233966264 ], [ -95.052272927788948, 29.888922234156993 ], [ -95.052026927298684, 29.88891923446322 ], [ -95.051302927152648, 29.888897234087363 ], [ -95.050993926709182, 29.888891234508318 ], [ -95.050841926951989, 29.888884234569357 ], [ -95.05065992691847, 29.888887234427223 ], [ -95.050502926618918, 29.888873234418107 ], [ -95.050331926560332, 29.888866234241807 ], [ -95.05015792745283, 29.888873234172895 ], [ -95.04979492714331, 29.8888672343951 ], [ -95.049095927111367, 29.888840234084363 ], [ -95.04858392621297, 29.888834234738344 ], [ -95.047543926119815, 29.888798234181351 ], [ -95.042762924789798, 29.888666234318642 ], [ -95.041145924510388, 29.888624234413783 ], [ -95.040973924331098, 29.888615234783945 ], [ -95.040260923958655, 29.888574234478035 ], [ -95.03732192350661, 29.888472234684091 ], [ -95.035854922812234, 29.888404234853834 ], [ -95.034819922540905, 29.888355234408909 ], [ -95.033330922421044, 29.888301234847535 ], [ -95.032554922062019, 29.888264234496212 ], [ -95.032102922256868, 29.888247234472278 ], [ -95.03159092248363, 29.888225234557112 ], [ -95.03123692167074, 29.888216235208564 ], [ -95.030816921854466, 29.888192234463258 ], [ -95.030728921601209, 29.888188234407743 ], [ -95.030094922093156, 29.888154234781894 ], [ -95.029452921518583, 29.888134234814377 ], [ -95.029262921591936, 29.888124235143806 ], [ -95.028554921202826, 29.888091234511602 ], [ -95.02796092132759, 29.888059234827622 ], [ -95.027390921368621, 29.8880352353221 ], [ -95.026092920985647, 29.8879862348297 ], [ -95.025897920629816, 29.887978235243605 ], [ -95.024961920930863, 29.887939235191908 ], [ -95.024052920146033, 29.88790823513591 ], [ -95.02381192006581, 29.8879072347513 ], [ -95.023731920649041, 29.887912235326809 ], [ -95.02361691992941, 29.88792423535487 ], [ -95.02317691996106, 29.887988235033653 ], [ -95.021673920172447, 29.888221234902741 ], [ -95.020520919004767, 29.888405235647088 ], [ -95.019564919057046, 29.888568235564406 ], [ -95.018756918829922, 29.888698235516099 ], [ -95.017494918728374, 29.888904235862547 ], [ -95.017198918866185, 29.888953235641349 ], [ -95.015890918493923, 29.889164235899859 ], [ -95.013651917228813, 29.889522235876804 ], [ -95.01322991716907, 29.889590235275552 ], [ -95.01241391748205, 29.8897172353524 ], [ -95.012242917132454, 29.889740235489871 ], [ -95.011490917126338, 29.88980923582379 ], [ -95.011028916701349, 29.889869236284394 ], [ -95.010577917080397, 29.889936236110131 ], [ -95.009854917031362, 29.890051235708672 ], [ -95.008518916663874, 29.890264236220425 ], [ -95.007585915629676, 29.890408236135347 ], [ -95.007492916427992, 29.890423236011671 ], [ -95.006275915981291, 29.890625236298355 ], [ -95.005920915880139, 29.890680236640012 ], [ -95.005733915450293, 29.890709236497454 ], [ -95.003954914961142, 29.890999235943898 ], [ -95.003033915011642, 29.891160236227492 ], [ -94.99922891424842, 29.89178823644842 ], [ -94.998415913319903, 29.891935237141251 ], [ -94.99772691356479, 29.892054236558032 ], [ -94.997608913604097, 29.892070236954869 ], [ -94.997532913735398, 29.892082236367244 ], [ -94.997484913286016, 29.892088236515573 ], [ -94.996779913087821, 29.892189236415884 ], [ -94.996406913545172, 29.892247236962561 ], [ -94.99621091323732, 29.892272236815639 ], [ -94.996002913672882, 29.892311237023339 ], [ -94.994678912945929, 29.892511237260166 ], [ -94.99422791327585, 29.892571237187855 ], [ -94.994003913191293, 29.892609236636304 ], [ -94.99298591199755, 29.892765236783156 ], [ -94.992792912296849, 29.892800236850068 ], [ -94.992178912613682, 29.892895237536177 ], [ -94.992067912077488, 29.892915237259352 ], [ -94.991768912595504, 29.892954236937136 ], [ -94.991382912359512, 29.893023237607565 ], [ -94.984572910467634, 29.894248237527535 ], [ -94.984504910394918, 29.894260237972592 ], [ -94.98451190988736, 29.894339237502614 ], [ -94.984631910105378, 29.894597237331819 ], [ -94.984631910374048, 29.894695237405337 ], [ -94.984649910267166, 29.89471723754027 ], [ -94.984712910042404, 29.894866237705379 ], [ -94.984782910867779, 29.895135237419872 ], [ -94.984914910433872, 29.895646237638164 ], [ -94.985034910868904, 29.895976238411823 ], [ -94.98515491028175, 29.896416238027061 ], [ -94.985198910688254, 29.896543237670375 ], [ -94.985224910656996, 29.896675237795524 ], [ -94.98533791098491, 29.897021238013298 ], [ -94.985369911073448, 29.897104237990707 ], [ -94.985420910391255, 29.897186238404476 ], [ -94.985445910440532, 29.897307238598092 ], [ -94.985552910974306, 29.897587238533106 ], [ -94.985810910574202, 29.898380238063162 ], [ -94.986153910801633, 29.899429238742176 ], [ -94.98626791068007, 29.899721238573999 ], [ -94.986273910807, 29.899776238764122 ], [ -94.986298911093598, 29.899847238509746 ], [ -94.986368911249997, 29.899957238829241 ], [ -94.986475911112578, 29.900293239062588 ], [ -94.986519911508339, 29.900524239156848 ], [ -94.986677911062216, 29.901062239048649 ], [ -94.986971911006847, 29.901962239209677 ], [ -94.987145911803296, 29.902492239244896 ], [ -94.987234911565153, 29.902860239709241 ], [ -94.987360911225949, 29.903157239655062 ], [ -94.987537911805873, 29.903625239219835 ], [ -94.987581911281353, 29.903883239943482 ], [ -94.987654911359868, 29.904078239219018 ], [ -94.987815911499439, 29.904510239372776 ], [ -94.987923911211041, 29.904741239313488 ], [ -94.988074911830253, 29.904977239539519 ], [ -94.988175911946001, 29.905109239512537 ], [ -94.988277911695292, 29.90520224004722 ], [ -94.988978912054165, 29.906208240345638 ], [ -94.989085911944599, 29.906313239682344 ], [ -94.98911691210192, 29.906357239720119 ], [ -94.989142911688077, 29.9064232403822 ], [ -94.989148911639589, 29.906489239935048 ], [ -94.989176912284108, 29.906525239738944 ], [ -94.989388912241154, 29.906797240340335 ], [ -94.989578912714748, 29.907072239973331 ], [ -94.989622911884766, 29.907094239960422 ], [ -94.98972391191505, 29.907171240203276 ], [ -94.989729912290741, 29.90720423980223 ], [ -94.989717912548087, 29.90728624013061 ], [ -94.98979091284005, 29.907415239827543 ], [ -94.989953912176929, 29.907700240151584 ], [ -94.99003091250519, 29.907789240453038 ], [ -94.990048912742452, 29.907810240363755 ], [ -94.990127912006884, 29.907902240501848 ], [ -94.990159912012118, 29.907957240002375 ], [ -94.990268912708061, 29.908083240277197 ], [ -94.990506912057924, 29.908358240002372 ], [ -94.990550912373195, 29.908435240710183 ], [ -94.990576912485551, 29.908512240684409 ], [ -94.990605913033576, 29.908669240113948 ], [ -94.990614912553795, 29.908715239980904 ], [ -94.990664912208018, 29.908754240187715 ], [ -94.990734912622159, 29.908853240643506 ], [ -94.990930912562192, 29.909210240768054 ], [ -94.991018912958836, 29.909309240798237 ], [ -94.991062912489795, 29.909342240830497 ], [ -94.991094912259143, 29.909386240389164 ], [ -94.991138912814151, 29.90949024034564 ], [ -94.991170912730823, 29.909540240273316 ], [ -94.991347913056359, 29.909771240742057 ], [ -94.991612912785101, 29.910161240726062 ], [ -94.991650912754821, 29.910216240272707 ], [ -94.991833912537302, 29.910436240800561 ], [ -94.992237912883709, 29.911057241175293 ], [ -94.992875913427156, 29.911876240665094 ], [ -94.993058912846536, 29.912041241016684 ], [ -94.99328691311149, 29.912206241492395 ], [ -94.993368913849025, 29.912256241518325 ], [ -94.993601913925943, 29.912343241358084 ], [ -94.99370991396512, 29.91240924085352 ], [ -94.994012913505799, 29.912992240955855 ], [ -94.994107914033862, 29.913201240854018 ], [ -94.994208913840666, 29.913487241143073 ], [ -94.994317913530537, 29.913905240975804 ], [ -94.994379914050569, 29.914141241617838 ], [ -94.994777913808278, 29.915422241424675 ], [ -94.994787913585668, 29.91544524144048 ], [ -94.994817913980071, 29.915514241513161 ], [ -94.994828913783877, 29.915538241793367 ], [ -94.994836913691231, 29.915562241908027 ], [ -94.994847913866238, 29.915593241875186 ], [ -94.994872914465176, 29.915620241784072 ], [ -94.994885913677749, 29.915653241350451 ], [ -94.994910913512598, 29.915685241384928 ], [ -94.994979913959639, 29.915774241478253 ], [ -94.99498891405436, 29.915781241650397 ], [ -94.995021914493634, 29.915808241959244 ], [ -94.995088914351356, 29.915861241459343 ], [ -94.995213914158285, 29.915961241314978 ], [ -94.995282914009593, 29.916031241705312 ], [ -94.995327914247014, 29.916076241849584 ], [ -94.995333914276642, 29.916098241401968 ], [ -94.995377914288468, 29.916307241862956 ], [ -94.995480914693545, 29.916542241778462 ], [ -94.995498914477238, 29.916582242113915 ], [ -94.995719914189721, 29.917028241716967 ], [ -94.995776914413184, 29.917171242193035 ], [ -94.995820914517594, 29.917236241790018 ], [ -94.995870913860358, 29.917341241950833 ], [ -94.996054914552076, 29.917577241714664 ], [ -94.996197914352109, 29.917747241651071 ], [ -94.996376914109348, 29.91796224253892 ], [ -94.996420914430772, 29.918067242209524 ], [ -94.996452914008387, 29.918111242013985 ], [ -94.996470914871935, 29.91812624236173 ], [ -94.996534914923643, 29.918179241811558 ], [ -94.996597914954407, 29.918231241877653 ], [ -94.99673391493738, 29.918332242590665 ], [ -94.996801915078095, 29.918383242549599 ], [ -94.9970209144564, 29.918545241936982 ], [ -94.997683914843961, 29.919155242417357 ], [ -94.99808191485873, 29.919429242249496 ], [ -94.998662915643237, 29.919776242071318 ], [ -94.998744915264169, 29.919869242885838 ], [ -94.998751915557648, 29.919930242303717 ], [ -94.998744915262833, 29.919963242707031 ], [ -94.998725914878179, 29.920067242317977 ], [ -94.99870091480993, 29.92011724221188 ], [ -94.998492914683425, 29.920353242775249 ], [ -94.998448915616251, 29.920469242407577 ], [ -94.998360914914073, 29.920650242612364 ], [ -94.998309914611809, 29.920843242725514 ], [ -94.998120915316207, 29.921189242825175 ], [ -94.998051914851274, 29.921382243190532 ], [ -94.997937915236406, 29.921591242792502 ], [ -94.997754914641959, 29.921992243178458 ], [ -94.997660914543147, 29.922069242667604 ], [ -94.997382914636333, 29.922399242635723 ], [ -94.997275914674987, 29.92256424265063 ], [ -94.997212915040038, 29.922630243361205 ], [ -94.997180915410993, 29.922680242731335 ], [ -94.997149915206307, 29.922751242889461 ], [ -94.997099914752084, 29.922988242702768 ], [ -94.996947914527126, 29.923428243137696 ], [ -94.996777914860132, 29.923637243234115 ], [ -94.996651914324843, 29.92371924362741 ], [ -94.996518914578672, 29.923774243423996 ], [ -94.996354914835919, 29.923791242884445 ], [ -94.996247914307929, 29.923769243657105 ], [ -94.996152914827391, 29.923703242929431 ], [ -94.996038914420211, 29.923703243311358 ], [ -94.995925914732297, 29.923731243194691 ], [ -94.99569891438567, 29.923846243199137 ], [ -94.995578914103064, 29.923929243111452 ], [ -94.995515914994598, 29.923984243479048 ], [ -94.995464914661511, 29.924044243605419 ], [ -94.995382914417874, 29.924193243638342 ], [ -94.99533891403766, 29.924248243016297 ], [ -94.995250914848313, 29.924314243416482 ], [ -94.99519391417688, 29.924380243482727 ], [ -94.994897914505401, 29.924880243298112 ], [ -94.994575914118826, 29.925376243794695 ], [ -94.994330914605158, 29.925608243379543 ], [ -94.994297914802146, 29.925640243679776 ], [ -94.994171914317448, 29.92573324412297 ], [ -94.994108913989237, 29.925755244148593 ], [ -94.994032914148718, 29.925761243665733 ], [ -94.993066913602505, 29.926036243556197 ], [ -94.993010913680735, 29.92603624346556 ], [ -94.992820914391487, 29.926141243671037 ], [ -94.992789913942104, 29.926168243587927 ], [ -94.992732914241259, 29.926289244243378 ], [ -94.992719913420657, 29.926366244077936 ], [ -94.99269491339642, 29.926432244423143 ], [ -94.99268891439533, 29.926482243657926 ], [ -94.992701914174859, 29.926548243890629 ], [ -94.992701914124751, 29.926619244280211 ], [ -94.992682914158351, 29.927036244316259 ], [ -94.992676914326665, 29.927169244595472 ], [ -94.992688914020547, 29.927340244087368 ], [ -94.992722914176667, 29.927424244080353 ], [ -94.99281591433207, 29.927647244542428 ], [ -94.992884914485344, 29.92775724412715 ], [ -94.993207914385152, 29.928065244622367 ], [ -94.993512914033872, 29.928275244399007 ], [ -94.993718914129857, 29.928417244122304 ], [ -94.993854913795175, 29.928472244736721 ], [ -94.994381914104892, 29.928686244528329 ], [ -94.994526914570571, 29.928768244245813 ], [ -94.994602914329718, 29.928801244360503 ], [ -94.994912915028863, 29.928862244437788 ], [ -94.995017914346931, 29.928907244662362 ], [ -94.995133914430625, 29.928983244579918 ], [ -94.995170914272791, 29.929027244701441 ], [ -94.99520891440919, 29.929054244051759 ], [ -94.995392914888711, 29.929307244934684 ], [ -94.995568914272241, 29.929466244601674 ], [ -94.995644915291265, 29.929560244125707 ], [ -94.995714914831993, 29.929620244369797 ], [ -94.995834914457134, 29.929659244256488 ], [ -94.995897914892296, 29.9296922448457 ], [ -94.99595491535878, 29.929752244413027 ], [ -94.996150915035898, 29.930087244404302 ], [ -94.996162915344271, 29.93020324452279 ], [ -94.996150915261239, 29.930472244551169 ], [ -94.996081914614834, 29.930758244760796 ], [ -94.99602491462565, 29.931308244882441 ], [ -94.995898914820401, 29.932089245345555 ], [ -94.995888915226018, 29.932135245383115 ], [ -94.995653914708583, 29.933239244943525 ], [ -94.995623915053471, 29.93335624513012 ], [ -94.995440914998824, 29.934072245123197 ], [ -94.995382914625978, 29.934300245086259 ], [ -94.995364914904513, 29.934905245811219 ], [ -94.995225914814213, 29.935240245824232 ], [ -94.995105915043041, 29.935856245587249 ], [ -94.995118914566433, 29.936241245709972 ], [ -94.994931915393806, 29.936958246426034 ], [ -94.994904914688789, 29.937061246320013 ], [ -94.994740914548018, 29.937347246198406 ], [ -94.994567914647547, 29.937561246028263 ], [ -94.994084914585756, 29.938161246616119 ], [ -94.993383914296999, 29.938992246511241 ], [ -94.993209914692926, 29.939206246396505 ], [ -94.992898914398225, 29.939591246247797 ], [ -94.992753914038488, 29.939751247154252 ], [ -94.99266391458336, 29.939844246839893 ], [ -94.992396914785999, 29.940123246607339 ], [ -94.992380914976749, 29.940141246516426 ], [ -94.992317914076381, 29.940224246596078 ], [ -94.992197914530195, 29.940400246482191 ], [ -94.991977914595793, 29.940763246849926 ], [ -94.991794914229075, 29.94124324720589 ], [ -94.991731914819724, 29.941412247475803 ], [ -94.991504913938741, 29.942044247291172 ], [ -94.991056913855445, 29.943513247280936 ], [ -94.990855913892389, 29.943969248076105 ], [ -94.990661914627864, 29.944505247354407 ], [ -94.99054691461663, 29.944827247851023 ], [ -94.990281914124779, 29.945592247697878 ], [ -94.990062914561776, 29.946219248012699 ], [ -94.990014914236397, 29.946360248307769 ], [ -94.989751914559889, 29.947121248134316 ], [ -94.98944291403248, 29.947935248699647 ], [ -94.989197913575069, 29.948657249038011 ], [ -94.988936913701977, 29.949427249028073 ], [ -94.988907913488703, 29.949513248471881 ], [ -94.988799913901119, 29.949813248869866 ], [ -94.988383913878423, 29.950969249258158 ], [ -94.988245913694712, 29.951355249255467 ], [ -94.988100914338872, 29.951740249149914 ], [ -94.987917913475059, 29.952307249377242 ], [ -94.987702913943025, 29.952840249290382 ], [ -94.987633913965396, 29.95296124975075 ], [ -94.987595913738616, 29.953000249343507 ], [ -94.987519913795893, 29.953049249889446 ], [ -94.987220914009484, 29.953165249576188 ], [ -94.985118912720026, 29.953987249930325 ], [ -94.985026913023205, 29.954024250235257 ], [ -94.982298912247231, 29.955147250171549 ], [ -94.981679912013277, 29.955422249964876 ], [ -94.98118191211293, 29.955565250578505 ], [ -94.981138912747809, 29.955604250417739 ], [ -94.981035912145714, 29.955702250654213 ], [ -94.980966911794681, 29.955796250510613 ], [ -94.980953912512931, 29.95584025030734 ], [ -94.980928911802422, 29.955873250575095 ], [ -94.980833912090006, 29.956142250389352 ], [ -94.98076491225072, 29.956516250867818 ], [ -94.98069591200688, 29.956808250927882 ], [ -94.980651912670297, 29.957088250464508 ], [ -94.980664912083839, 29.957138250761567 ], [ -94.980664912220078, 29.957275250478638 ], [ -94.980689912290231, 29.95746225047537 ], [ -94.980746912750021, 29.957668250930297 ], [ -94.980795911795738, 29.957846250779447 ], [ -94.980834912598311, 29.957985251229282 ], [ -94.980866912127269, 29.958215250896277 ], [ -94.980915912086815, 29.958388250575865 ], [ -94.980967912847888, 29.958567250992857 ], [ -94.981069912110499, 29.95898525080743 ], [ -94.981160912585594, 29.959212251076544 ], [ -94.981182912716463, 29.95926625069345 ], [ -94.981220912637468, 29.959546251150023 ], [ -94.981296912905677, 29.95979925160821 ], [ -94.981391912860573, 29.960255251256559 ], [ -94.981442912834027, 29.960750251413064 ], [ -94.981513912645482, 29.961204251474552 ], [ -94.981619912827568, 29.961872251376633 ], [ -94.981664912613368, 29.961921251256644 ], [ -94.981697913159579, 29.96211725181184 ], [ -94.981797912695242, 29.96270825219769 ], [ -94.981823912799001, 29.96290425166718 ], [ -94.98185991309802, 29.963168251649023 ], [ -94.981885912539028, 29.963362251552002 ], [ -94.981897912301548, 29.963433252034982 ], [ -94.981956912603252, 29.963754252036271 ], [ -94.981999912676855, 29.963989252472242 ], [ -94.982030912533105, 29.964227251818805 ], [ -94.982066912633016, 29.964493251987918 ], [ -94.982068913194681, 29.964511252253608 ], [ -94.982075913129165, 29.964567252629664 ], [ -94.982078913058672, 29.964586252308731 ], [ -94.982101912470668, 29.964759251973344 ], [ -94.982158912993512, 29.964973252701146 ], [ -94.982234913051087, 29.965078252300163 ], [ -94.9826109126181, 29.965326252590248 ], [ -94.98266991266091, 29.96537425186979 ], [ -94.983496913690175, 29.96613225238465 ], [ -94.983789913886582, 29.966489252131904 ], [ -94.984023913599785, 29.966888252287376 ], [ -94.984288913499441, 29.967552252929174 ], [ -94.984768914176541, 29.968030252840226 ], [ -94.984799913505142, 29.968475252959156 ], [ -94.985280913588738, 29.970378252815248 ], [ -94.985346913941441, 29.971674253324842 ], [ -94.985324914378978, 29.97180225341129 ], [ -94.985291914100799, 29.972001253514868 ], [ -94.985370914236285, 29.972284253490855 ], [ -94.985403914312883, 29.972326253587759 ], [ -94.985537913989674, 29.972541253335592 ], [ -94.985675913827023, 29.972741254031231 ], [ -94.985917914139421, 29.973017253326056 ], [ -94.986073913811424, 29.972904253930498 ], [ -94.989600915555172, 29.970119252692314 ], [ -94.997040917126554, 29.96437125140335 ], [ -95.000311917561689, 29.961848251021962 ], [ -95.000888917819466, 29.96140225046376 ], [ -95.006124918960694, 29.957363250125002 ], [ -95.007946918949543, 29.955987249543213 ], [ -95.011596920488259, 29.953230249298777 ], [ -95.02322692235856, 29.944363246351784 ], [ -95.025791923205048, 29.94234624640994 ], [ -95.028063923213139, 29.940708245434248 ], [ -95.031793924292288, 29.937794244899969 ], [ -95.033659925226232, 29.936456244797004 ], [ -95.03907692633247, 29.932248243264855 ], [ -95.041529926424886, 29.930343242947721 ], [ -95.044747927851262, 29.927930242452554 ], [ -95.047770927656899, 29.925663241497489 ], [ -95.052984929641937, 29.921577240786835 ], [ -95.053873929826196, 29.920914240573303 ], [ -95.055265929934833, 29.919876240482459 ], [ -95.056127929776878, 29.919233240364878 ], [ -95.06378893169159, 29.913250239027423 ], [ -95.06590093179399, 29.911696238121873 ], [ -95.066508931991521, 29.911170238241105 ], [ -95.068367932238147, 29.909759237628563 ], [ -95.069365933358313, 29.908998237441534 ], [ -95.070336933272827, 29.908240237928915 ], [ -95.071422933203294, 29.907465237191943 ], [ -95.07191593308211, 29.907010237426231 ], [ -95.072257933593022, 29.906723237373214 ], [ -95.072289933722814, 29.906698237641987 ], [ -95.077613934740398, 29.902693235856763 ], [ -95.083668935647822, 29.897877234970657 ], [ -95.08384193637599, 29.897471235339893 ], [ -95.08452793656609, 29.895864234969537 ], [ -95.086211936210333, 29.890406233227633 ], [ -95.086493936310333, 29.889545233210093 ], [ -95.086578936063404, 29.889286233219934 ], [ -95.086650936162101, 29.889091232894824 ], [ -95.087202936322782, 29.887382232821523 ], [ -95.088136936331296, 29.884225232075902 ], [ -95.088673936854903, 29.883399231591635 ], [ -95.089262936796999, 29.882781231902964 ], [ -95.089760936796992, 29.882256231377077 ], [ -95.090192936789521, 29.881934231834371 ], [ -95.090853937419681, 29.88156923106207 ], [ -95.09211593723677, 29.880918231616008 ], [ -95.094077938013584, 29.880533230801372 ], [ -95.095220938269293, 29.880271231315248 ], [ -95.095300937900248, 29.8802552313973 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1265, "Tract": "48201532700", "Area_SqMi": 1.0381296582624411, "total_2009": 259, "total_2010": 138, "total_2011": 209, "total_2012": 204, "total_2013": 248, "total_2014": 272, "total_2015": 264, "total_2016": 230, "total_2017": 289, "total_2018": 362, "total_2019": 401, "total_2020": 376, "age1": 56, "age2": 212, "age3": 83, "earn1": 49, "earn2": 79, "earn3": 223, "naics_s01": 9, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 178, "naics_s06": 7, "naics_s07": 11, "naics_s08": 10, "naics_s09": 0, "naics_s10": 2, "naics_s11": 7, "naics_s12": 15, "naics_s13": 0, "naics_s14": 88, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 6, "naics_s19": 7, "naics_s20": 0, "race1": 209, "race2": 88, "race3": 6, "race4": 41, "race5": 2, "race6": 5, "ethnicity1": 242, "ethnicity2": 109, "edu1": 71, "edu2": 82, "edu3": 91, "edu4": 51, "Shape_Length": 22998.104037852605, "Shape_Area": 28941278.095689371, "total_2021": 323, "total_2022": 351 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.492313039901461, 29.884706218757024 ], [ -95.490510039697284, 29.881580217411159 ], [ -95.489601039390791, 29.879957217376671 ], [ -95.488568039238729, 29.878109217087246 ], [ -95.487785038652916, 29.876726217059783 ], [ -95.487484039066786, 29.876205216793082 ], [ -95.486255038544016, 29.873940216695026 ], [ -95.486229037882723, 29.873893216515302 ], [ -95.486184038044428, 29.873815215935224 ], [ -95.485012037725454, 29.871807215760533 ], [ -95.484609037488113, 29.871091215759083 ], [ -95.484219038018409, 29.870353215370855 ], [ -95.483842037120837, 29.869659215305777 ], [ -95.483327037241025, 29.868767215456586 ], [ -95.483301037167124, 29.868723215758838 ], [ -95.481623037066967, 29.865768214776161 ], [ -95.480957036090373, 29.86575621440867 ], [ -95.480383036678077, 29.865663215233759 ], [ -95.479109035651192, 29.865597215320786 ], [ -95.477709036033147, 29.865670215204506 ], [ -95.476695035092959, 29.865691214588598 ], [ -95.476649035692176, 29.865692215064609 ], [ -95.475655035023493, 29.865767215376124 ], [ -95.474730034591872, 29.866056215319457 ], [ -95.474581034768363, 29.866103214991341 ], [ -95.473973035185622, 29.866379215541407 ], [ -95.473888034398144, 29.86641721518891 ], [ -95.473823034258388, 29.866445215166269 ], [ -95.472797034029242, 29.866892214943935 ], [ -95.472948034127938, 29.867864215691085 ], [ -95.473141034184167, 29.869042215992291 ], [ -95.4738790348203, 29.873247216447599 ], [ -95.474004035195833, 29.874151217014845 ], [ -95.473990034992738, 29.875045216643635 ], [ -95.473930035557487, 29.875490217248757 ], [ -95.473802035095531, 29.876552217002835 ], [ -95.473804034776421, 29.878203218004778 ], [ -95.473804035556228, 29.878568217308807 ], [ -95.473838035572868, 29.880755218213682 ], [ -95.473863035175626, 29.882408218731744 ], [ -95.473882035776825, 29.883098218301818 ], [ -95.473908035680864, 29.884312218754651 ], [ -95.474823035950351, 29.884347219171932 ], [ -95.475413035792855, 29.884417218558891 ], [ -95.47612803604396, 29.884596219171854 ], [ -95.476843036593763, 29.884731219203356 ], [ -95.476976036568033, 29.884742218652335 ], [ -95.47788403700055, 29.884817219098366 ], [ -95.477968036387821, 29.88482221868167 ], [ -95.478271036604326, 29.884840218476494 ], [ -95.478916036321579, 29.884817218850067 ], [ -95.479155037410791, 29.884813218442126 ], [ -95.479828037409646, 29.884803218367701 ], [ -95.480368037176007, 29.884801218843464 ], [ -95.480614036812639, 29.884800219177876 ], [ -95.480648037288645, 29.884795218839638 ], [ -95.480860036944591, 29.884743218650552 ], [ -95.481152037774251, 29.884739218443258 ], [ -95.482072038030481, 29.884736218539111 ], [ -95.482683037393628, 29.884724218319558 ], [ -95.48304403766987, 29.884702218793354 ], [ -95.48341603766859, 29.88466521826815 ], [ -95.483789038343417, 29.884611218892122 ], [ -95.484153038347941, 29.884536218175562 ], [ -95.484389038170676, 29.884476218800533 ], [ -95.484610038463572, 29.884410218112841 ], [ -95.48490103837382, 29.884309218412856 ], [ -95.485057038034626, 29.884261218782115 ], [ -95.485240038828593, 29.884221218480096 ], [ -95.485256038576225, 29.884675218660689 ], [ -95.485292038560488, 29.88476921857826 ], [ -95.485820038139792, 29.884769218703234 ], [ -95.486684038895191, 29.884769218977805 ], [ -95.488391039198362, 29.884755218795792 ], [ -95.488489039353851, 29.884746218689088 ], [ -95.48920903939765, 29.884739218663423 ], [ -95.49034003933626, 29.884727218091779 ], [ -95.492313039901461, 29.884706218757024 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1266, "Tract": "48201530200", "Area_SqMi": 1.3708987191930939, "total_2009": 5839, "total_2010": 5456, "total_2011": 5490, "total_2012": 4327, "total_2013": 4283, "total_2014": 4240, "total_2015": 4280, "total_2016": 4541, "total_2017": 4940, "total_2018": 4822, "total_2019": 4285, "total_2020": 3991, "age1": 1170, "age2": 2076, "age3": 1058, "earn1": 872, "earn2": 1379, "earn3": 2053, "naics_s01": 0, "naics_s02": 33, "naics_s03": 32, "naics_s04": 459, "naics_s05": 211, "naics_s06": 188, "naics_s07": 133, "naics_s08": 37, "naics_s09": 0, "naics_s10": 152, "naics_s11": 208, "naics_s12": 334, "naics_s13": 8, "naics_s14": 490, "naics_s15": 27, "naics_s16": 571, "naics_s17": 48, "naics_s18": 773, "naics_s19": 600, "naics_s20": 0, "race1": 3290, "race2": 639, "race3": 44, "race4": 241, "race5": 13, "race6": 77, "ethnicity1": 2688, "ethnicity2": 1616, "edu1": 677, "edu2": 838, "edu3": 950, "edu4": 669, "Shape_Length": 37831.273811853156, "Shape_Area": 38218309.974496126, "total_2021": 4105, "total_2022": 4304 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.450947026326489, 29.819851206065291 ], [ -95.450928026917708, 29.819292206041322 ], [ -95.45068902630716, 29.818879206667219 ], [ -95.450413026084107, 29.81861120631952 ], [ -95.450093026752143, 29.818449206315066 ], [ -95.449695026848872, 29.818362205942996 ], [ -95.447042025349191, 29.818315206553361 ], [ -95.446876025542295, 29.818313206709004 ], [ -95.446383025799861, 29.818304206319318 ], [ -95.44588502588735, 29.818141205981391 ], [ -95.445606024787267, 29.817933205863358 ], [ -95.445384024922859, 29.817553205809922 ], [ -95.445339025308769, 29.817224205990023 ], [ -95.445281025363911, 29.81680120595195 ], [ -95.444003024907374, 29.814931205887007 ], [ -95.443788025101583, 29.814504205657503 ], [ -95.443670024904321, 29.814149205999097 ], [ -95.442696023845244, 29.811216205305417 ], [ -95.442525024077526, 29.810701204617263 ], [ -95.442052024367044, 29.809790204383628 ], [ -95.441520023491719, 29.80929420462882 ], [ -95.441370024226458, 29.809195204297506 ], [ -95.441217023365084, 29.809095204321572 ], [ -95.441065023379991, 29.808994204432022 ], [ -95.441024023406555, 29.808967204912001 ], [ -95.44088902366471, 29.808879204575252 ], [ -95.440838023542213, 29.808900204414087 ], [ -95.440230023717447, 29.809148204770992 ], [ -95.437521022637853, 29.810252205217321 ], [ -95.433988022010183, 29.811774205428019 ], [ -95.433613022365918, 29.811913205319151 ], [ -95.433255022304976, 29.812046205291843 ], [ -95.43290602155335, 29.812166205682566 ], [ -95.432360021669879, 29.81234320532355 ], [ -95.431312021642086, 29.812549205595296 ], [ -95.430453021285246, 29.812628205607798 ], [ -95.429539020872099, 29.812634205810149 ], [ -95.429366020949303, 29.812635205586329 ], [ -95.429194020717361, 29.812635205465348 ], [ -95.428974020579147, 29.812637205891633 ], [ -95.428220020665819, 29.812651205648582 ], [ -95.427268019955463, 29.812657206091572 ], [ -95.425820020181817, 29.812639205471992 ], [ -95.42518201995783, 29.812642205752486 ], [ -95.41901001793596, 29.812676205735247 ], [ -95.412044016282366, 29.812742206039125 ], [ -95.411875016780513, 29.812744206504604 ], [ -95.410324016119631, 29.812759206110314 ], [ -95.410172015521695, 29.812760206323855 ], [ -95.408185015338205, 29.812779206605047 ], [ -95.406044014671181, 29.81280220643777 ], [ -95.402471014273047, 29.812842206863486 ], [ -95.399406013669264, 29.812907207274385 ], [ -95.399411013286496, 29.813108207299077 ], [ -95.399418012767399, 29.81331720700987 ], [ -95.399437013624976, 29.81385120700573 ], [ -95.399441013706692, 29.814109207459069 ], [ -95.399452013049029, 29.814918207158211 ], [ -95.399455013837667, 29.81512120689386 ], [ -95.399466013839756, 29.81579920730541 ], [ -95.399470013270246, 29.816072207739683 ], [ -95.399473013512818, 29.816458207790749 ], [ -95.399482013791882, 29.817188207929505 ], [ -95.39950201305237, 29.818117207795929 ], [ -95.399507014012272, 29.818370207962886 ], [ -95.399485013483456, 29.818835208248448 ], [ -95.399554013989672, 29.818833207813874 ], [ -95.3995660132626, 29.819192208298787 ], [ -95.40398101474868, 29.81910420805303 ], [ -95.404769014627533, 29.819107208253879 ], [ -95.406347014930944, 29.819114207892145 ], [ -95.406749015836752, 29.819105208000263 ], [ -95.408829015799697, 29.819059207552836 ], [ -95.409943016683954, 29.819059207843264 ], [ -95.410446016457655, 29.819095208032344 ], [ -95.411898016619205, 29.819175207303932 ], [ -95.415892017817015, 29.819269207555664 ], [ -95.420274018354377, 29.819281207798618 ], [ -95.424681019990032, 29.819461206989978 ], [ -95.429508021392962, 29.819446206775879 ], [ -95.43027402154533, 29.819448206701946 ], [ -95.432772022553962, 29.819503207201532 ], [ -95.436360023450973, 29.819596207282583 ], [ -95.440859023731164, 29.819689206776371 ], [ -95.444487024770538, 29.819718206608883 ], [ -95.446999026210918, 29.819747207068474 ], [ -95.448727025769287, 29.819784206420227 ], [ -95.450868027187141, 29.819849206091366 ], [ -95.450947026326489, 29.819851206065291 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1267, "Tract": "48201555600", "Area_SqMi": 21.200385638269196, "total_2009": 624, "total_2010": 613, "total_2011": 676, "total_2012": 1756, "total_2013": 1813, "total_2014": 1896, "total_2015": 1961, "total_2016": 2000, "total_2017": 2045, "total_2018": 2186, "total_2019": 2339, "total_2020": 2392, "age1": 314, "age2": 892, "age3": 377, "earn1": 237, "earn2": 433, "earn3": 913, "naics_s01": 0, "naics_s02": 35, "naics_s03": 0, "naics_s04": 470, "naics_s05": 39, "naics_s06": 58, "naics_s07": 76, "naics_s08": 52, "naics_s09": 0, "naics_s10": 10, "naics_s11": 38, "naics_s12": 79, "naics_s13": 0, "naics_s14": 312, "naics_s15": 142, "naics_s16": 67, "naics_s17": 2, "naics_s18": 176, "naics_s19": 27, "naics_s20": 0, "race1": 1356, "race2": 137, "race3": 20, "race4": 48, "race5": 2, "race6": 20, "ethnicity1": 1079, "ethnicity2": 504, "edu1": 293, "edu2": 324, "edu3": 400, "edu4": 252, "Shape_Length": 122097.3322035412, "Shape_Area": 591030466.7722894, "total_2021": 2529, "total_2022": 1583 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.781547122386769, 30.066884245700411 ], [ -95.781547122335439, 30.066453245163352 ], [ -95.781487121840627, 30.063262244266539 ], [ -95.781473122423833, 30.062696244658461 ], [ -95.77999112154265, 30.062713244608556 ], [ -95.779066122108233, 30.062727244223929 ], [ -95.777912121097714, 30.06273424473887 ], [ -95.777137121383603, 30.062752244505578 ], [ -95.775596121017642, 30.062765244530709 ], [ -95.773872120393719, 30.062790244725328 ], [ -95.772924120409058, 30.06280924459206 ], [ -95.772206120164, 30.062813244850737 ], [ -95.770788119111373, 30.062841244829642 ], [ -95.770685119745721, 30.06281824508342 ], [ -95.770636119541606, 30.06277024505227 ], [ -95.770618119075394, 30.062693244730159 ], [ -95.770659119151389, 30.061322244163254 ], [ -95.770680119506196, 30.060209244718823 ], [ -95.770697119517422, 30.059842244216142 ], [ -95.770702118887741, 30.059599244124708 ], [ -95.770695119428737, 30.059363244223611 ], [ -95.770563119288568, 30.057790243800778 ], [ -95.770486119102955, 30.056659243561796 ], [ -95.770422118796901, 30.055820243156813 ], [ -95.770391119143497, 30.055323243069061 ], [ -95.770302118924022, 30.053597243328731 ], [ -95.770293118486606, 30.053292242744554 ], [ -95.770293118631187, 30.052686242481244 ], [ -95.770282119118647, 30.051438242207343 ], [ -95.770225118715146, 30.046858241601619 ], [ -95.770214118660078, 30.045077241012422 ], [ -95.770201118497155, 30.043836241181179 ], [ -95.770190117980306, 30.042522241022414 ], [ -95.770191118009279, 30.041580240533726 ], [ -95.770175117959951, 30.038312240357257 ], [ -95.77018311861579, 30.038200239915831 ], [ -95.770184118202309, 30.03790324025784 ], [ -95.770172118352235, 30.037393239837677 ], [ -95.770173118408678, 30.037166239430302 ], [ -95.770362118622216, 30.037152240132496 ], [ -95.773015118720778, 30.037127239649898 ], [ -95.77706211947239, 30.037079239414641 ], [ -95.777053119795468, 30.036903239453817 ], [ -95.776996119727499, 30.036700239010699 ], [ -95.776839119710857, 30.036320239027742 ], [ -95.776656119792435, 30.035968239532483 ], [ -95.776542120086987, 30.035787238916726 ], [ -95.776378119789257, 30.035556239051626 ], [ -95.776131119138256, 30.035265238981314 ], [ -95.776068119894902, 30.035336239374448 ], [ -95.775973119476049, 30.035380239159192 ], [ -95.775860119423683, 30.035419239490135 ], [ -95.775784119769199, 30.035424238870259 ], [ -95.77571411938554, 30.035413239234998 ], [ -95.775620119532704, 30.035380239385667 ], [ -95.775474119187706, 30.03530323870833 ], [ -95.775298119140999, 30.035188239514572 ], [ -95.775083119372525, 30.035023239102877 ], [ -95.77492511942971, 30.03488523899119 ], [ -95.774704119212302, 30.034616239303773 ], [ -95.774224119050061, 30.034594238723358 ], [ -95.774098118562407, 30.034610239478923 ], [ -95.773769119446925, 30.034539239468362 ], [ -95.773693118892211, 30.034489238670066 ], [ -95.773592119194205, 30.03435723883765 ], [ -95.773548119147492, 30.034214238817892 ], [ -95.773517118867545, 30.034038238898926 ], [ -95.773434119118122, 30.033890239365697 ], [ -95.773296118883948, 30.033719239332566 ], [ -95.772651119146403, 30.033247238485963 ], [ -95.772588118400407, 30.033175238622253 ], [ -95.771868118170445, 30.032169238423606 ], [ -95.771622118421035, 30.031900238964528 ], [ -95.771338117826119, 30.031795238249455 ], [ -95.771205118057921, 30.031801238970345 ], [ -95.770757118462058, 30.032042238460633 ], [ -95.770586118390483, 30.032284238857887 ], [ -95.770428117655086, 30.032779238766885 ], [ -95.770308117750659, 30.033026238762314 ], [ -95.77013111785827, 30.033092239312321 ], [ -95.77001711781854, 30.033097238947562 ], [ -95.769638117527251, 30.032894238704593 ], [ -95.769442117608264, 30.032817238561133 ], [ -95.768944117455206, 30.032514238663602 ], [ -95.767611117561273, 30.031211238748597 ], [ -95.767346117329026, 30.031041238254183 ], [ -95.767194117538381, 30.030953238513437 ], [ -95.766860117374918, 30.030887238699101 ], [ -95.766588116775608, 30.030870238355718 ], [ -95.766373117231524, 30.030821238419357 ], [ -95.766266116409099, 30.030733238380048 ], [ -95.766209117269128, 30.030513238287671 ], [ -95.766020116473456, 30.029980238103327 ], [ -95.765654116633996, 30.029441238063491 ], [ -95.765565116371334, 30.029029238604274 ], [ -95.76554711646429, 30.028754238104653 ], [ -95.765641116601643, 30.028578238302853 ], [ -95.765736116265742, 30.028259238063061 ], [ -95.765749116181524, 30.027973237663126 ], [ -95.765705117083485, 30.027583237555596 ], [ -95.765648116463979, 30.027497238155636 ], [ -95.765560116461614, 30.027363237660367 ], [ -95.765219116314299, 30.027055237432997 ], [ -95.76492811612421, 30.026863238043834 ], [ -95.764821116221057, 30.026736237803085 ], [ -95.764796116068325, 30.026626237557061 ], [ -95.764790116160825, 30.0264502374053 ], [ -95.764859116317652, 30.026319237591728 ], [ -95.765327116895307, 30.025791237775145 ], [ -95.765333115919987, 30.02567023782591 ], [ -95.765305116895291, 30.025354237505862 ], [ -95.765302115977505, 30.025318237637318 ], [ -95.765245116328501, 30.025236237860835 ], [ -95.765081116806172, 30.025142237188412 ], [ -95.764898116401142, 30.025005237666551 ], [ -95.764822116031525, 30.024818237277248 ], [ -95.764746116682346, 30.024351236990629 ], [ -95.764664115944129, 30.024175236948892 ], [ -95.764507115699459, 30.024059236801516 ], [ -95.764216116484647, 30.023922237452886 ], [ -95.763837115492862, 30.023878237002467 ], [ -95.763711116345377, 30.023889237005505 ], [ -95.763610115648078, 30.023938236862055 ], [ -95.763464115455463, 30.024053237395695 ], [ -95.763167115990726, 30.024218237683755 ], [ -95.762801115761732, 30.024289237342522 ], [ -95.762510115646378, 30.024317237606191 ], [ -95.762239115262531, 30.024218237297578 ], [ -95.761689115879477, 30.02397623751234 ], [ -95.761513115121929, 30.023948237206127 ], [ -95.76136111516557, 30.023954237510377 ], [ -95.761184115303962, 30.024042237361279 ], [ -95.760919115108109, 30.024096237436527 ], [ -95.760489115174209, 30.024107237467643 ], [ -95.759990115200452, 30.024096237117327 ], [ -95.759757114493055, 30.024118237615856 ], [ -95.759567114486231, 30.024206237740767 ], [ -95.759434114583968, 30.024382237156189 ], [ -95.759358114485764, 30.024552237763654 ], [ -95.759384115076472, 30.024668237946813 ], [ -95.759466115192723, 30.024750237723516 ], [ -95.759548115032061, 30.024865237402953 ], [ -95.759585114411507, 30.025014237411551 ], [ -95.759592114806324, 30.025085237252014 ], [ -95.75947211462892, 30.025162238034781 ], [ -95.758707115192152, 30.025525238149232 ], [ -95.758259115093836, 30.02593723772496 ], [ -95.757835114302253, 30.026706237939209 ], [ -95.757588114636292, 30.027014238092494 ], [ -95.7575311142175, 30.027047237965633 ], [ -95.757456114193289, 30.027052238356188 ], [ -95.757178114574216, 30.026920237828286 ], [ -95.756944114466776, 30.026827238029512 ], [ -95.756736113931098, 30.026865238021347 ], [ -95.756616114519872, 30.026953237817473 ], [ -95.756565114489405, 30.027019237689906 ], [ -95.756527114022532, 30.027134238579499 ], [ -95.756470113972057, 30.027189238295001 ], [ -95.756357114269605, 30.027206238284609 ], [ -95.756199114355297, 30.027178237908775 ], [ -95.755264113663117, 30.026908238014858 ], [ -95.755011113973822, 30.026914238006079 ], [ -95.754740113673989, 30.026991238489828 ], [ -95.754588113637155, 30.027095238425488 ], [ -95.75407611371557, 30.027540238070028 ], [ -95.753558113468827, 30.027738238553713 ], [ -95.753179113859758, 30.027848238363671 ], [ -95.752964112871936, 30.027886238516629 ], [ -95.752787113116852, 30.027842238431159 ], [ -95.75231411364885, 30.027545238002265 ], [ -95.751802113146979, 30.027303238215961 ], [ -95.75154911267029, 30.027242238046661 ], [ -95.751392112654756, 30.027275238250169 ], [ -95.75108811241185, 30.027335238195484 ], [ -95.750005112188049, 30.02775923839706 ], [ -95.749740112234534, 30.027929238857958 ], [ -95.74953811260896, 30.028089238792333 ], [ -95.749468112019514, 30.028122238507155 ], [ -95.749367112520957, 30.028105238700167 ], [ -95.749241112610932, 30.02805023878992 ], [ -95.749152112478171, 30.028039238349695 ], [ -95.748957112132345, 30.028034238859867 ], [ -95.748868112216783, 30.028045238543605 ], [ -95.748458112137769, 30.028161238451887 ], [ -95.748173111654154, 30.028271239061283 ], [ -95.748009111934792, 30.028309239112428 ], [ -95.747869112561929, 30.028320238463138 ], [ -95.74780111210174, 30.028326238626477 ], [ -95.747314112039916, 30.028337238774931 ], [ -95.74716911154978, 30.028321238895462 ], [ -95.746721111357928, 30.028326238959004 ], [ -95.746569111671761, 30.028266238904429 ], [ -95.746506112205623, 30.028217239123688 ], [ -95.746462111843627, 30.028162238329646 ], [ -95.746360112017641, 30.027887238703407 ], [ -95.746284111373001, 30.027865238248662 ], [ -95.746114112053704, 30.02788223837452 ], [ -95.746101111677689, 30.027904238850098 ], [ -95.746032111329356, 30.027964238652824 ], [ -95.745956111642712, 30.02799723839393 ], [ -95.745899111816712, 30.028085238310265 ], [ -95.745887111359636, 30.028145238514607 ], [ -95.745830111428901, 30.02828323888351 ], [ -95.745622111729801, 30.029234239144216 ], [ -95.745635111338714, 30.029300239058024 ], [ -95.745679111052596, 30.029382239360867 ], [ -95.745736111562536, 30.029586238969749 ], [ -95.745723111227207, 30.029685239139702 ], [ -95.745692111712515, 30.029767238848788 ], [ -95.745648111887562, 30.029811238785776 ], [ -95.74559111203169, 30.029850238960272 ], [ -95.745477111865426, 30.029888239400922 ], [ -95.745326111458326, 30.029905239391375 ], [ -95.745174111903026, 30.029888239388377 ], [ -95.744858110933947, 30.029850238829187 ], [ -95.744005110935873, 30.02965223920782 ], [ -95.743266111144976, 30.029603238812626 ], [ -95.743165111397019, 30.02958123900234 ], [ -95.743058110949548, 30.029488239023678 ], [ -95.742925110779296, 30.029263239412902 ], [ -95.742836110542285, 30.029142239468499 ], [ -95.742653110747057, 30.028971239082249 ], [ -95.74256411111142, 30.028927238760843 ], [ -95.74235611102408, 30.028906238994018 ], [ -95.74184411085551, 30.028812238717801 ], [ -95.741749110318821, 30.028799238647537 ], [ -95.741592110160028, 30.028779238799419 ], [ -95.741472110688846, 30.028785239211363 ], [ -95.741251110887333, 30.028780238840021 ], [ -95.740992110378372, 30.02880723888082 ], [ -95.740903110036299, 30.028829239351932 ], [ -95.740846110243353, 30.028862238615325 ], [ -95.740537109969267, 30.029423238832777 ], [ -95.740493110070631, 30.029621239513965 ], [ -95.740436109920324, 30.029747238923534 ], [ -95.740405109818383, 30.02978023966056 ], [ -95.740354109966461, 30.029808239094265 ], [ -95.74029711041851, 30.029813238854633 ], [ -95.740063110527785, 30.029792239303482 ], [ -95.740000109943423, 30.029742239153215 ], [ -95.739918109707077, 30.029698239029685 ], [ -95.73919110953311, 30.029358239410485 ], [ -95.738958110276897, 30.029270239500111 ], [ -95.738907109909832, 30.029242238884311 ], [ -95.738894110290445, 30.02913223931483 ], [ -95.739059110340264, 30.028945239483996 ], [ -95.739179110318787, 30.028736239088722 ], [ -95.739210109915888, 30.028616238973992 ], [ -95.739204110172523, 30.028528239066375 ], [ -95.738875109899908, 30.028006239354557 ], [ -95.738780109663736, 30.027879239062564 ], [ -95.738736109853917, 30.027797239011115 ], [ -95.738647109642727, 30.027709238879563 ], [ -95.73854010945152, 30.027643238952262 ], [ -95.738312109116606, 30.027627239114153 ], [ -95.738167109567812, 30.027632238899319 ], [ -95.738072109086275, 30.027649239068243 ], [ -95.737952109526617, 30.027654239042285 ], [ -95.737675109890617, 30.027720238772737 ], [ -95.737548109420558, 30.02777523867649 ], [ -95.737422108935363, 30.02785823859946 ], [ -95.737220109462314, 30.02803423905895 ], [ -95.737030109255414, 30.028336238746583 ], [ -95.736974108952225, 30.028391239376344 ], [ -95.736898109287779, 30.028402239117295 ], [ -95.736791108742025, 30.028380239435378 ], [ -95.736544109280032, 30.028287239175203 ], [ -95.736424109556637, 30.028232239248812 ], [ -95.736285108722498, 30.028133239023582 ], [ -95.736121109160521, 30.028007239444829 ], [ -95.735773108815437, 30.027595238585437 ], [ -95.735691109228128, 30.02754023874645 ], [ -95.735552109090023, 30.027490239263589 ], [ -95.735400108992579, 30.027485238598455 ], [ -95.735312108969666, 30.027501239066972 ], [ -95.734630108204868, 30.027826239180314 ], [ -95.73449110877128, 30.027936239365744 ], [ -95.734377108136613, 30.028007238702564 ], [ -95.734169108733283, 30.028117239350994 ], [ -95.733935108049138, 30.028211238904237 ], [ -95.733815108869564, 30.028244239068059 ], [ -95.733695108283428, 30.028249238847422 ], [ -95.733645108636097, 30.028244239205591 ], [ -95.733556108429227, 30.028184239476325 ], [ -95.733531108350121, 30.028074238982683 ], [ -95.733550108899351, 30.027793239041994 ], [ -95.733455108384959, 30.027672239176454 ], [ -95.73341510873226, 30.02762723889553 ], [ -95.733196108009295, 30.027381238760274 ], [ -95.733082107907677, 30.027200239221152 ], [ -95.733063108348986, 30.027134239066786 ], [ -95.733069108507152, 30.027062238591906 ], [ -95.73309410774317, 30.026996238731716 ], [ -95.733322108484444, 30.026760238822025 ], [ -95.733423108500332, 30.026639238617648 ], [ -95.733505107955125, 30.026507238760047 ], [ -95.733543108154365, 30.026408238845455 ], [ -95.733530108758032, 30.026304238363355 ], [ -95.733530108595517, 30.026166238787358 ], [ -95.733492108563908, 30.026018238895592 ], [ -95.733422107893801, 30.025886238608837 ], [ -95.733340108254197, 30.025771238586859 ], [ -95.733239107975336, 30.025677239064375 ], [ -95.733075107735971, 30.025551239062306 ], [ -95.732942108056434, 30.025468238976778 ], [ -95.732816108447764, 30.025441238950343 ], [ -95.732569108004441, 30.025458238487079 ], [ -95.732500107881279, 30.025447238545972 ], [ -95.732399108171307, 30.025397238296769 ], [ -95.732178107699568, 30.025150238960311 ], [ -95.732095107751604, 30.024958238924942 ], [ -95.731975108087113, 30.024771238593228 ], [ -95.731444107736294, 30.024243238725454 ], [ -95.730705107023411, 30.02360623827105 ], [ -95.730610107695171, 30.023496238538691 ], [ -95.730490107617456, 30.02333123800819 ], [ -95.730339107687641, 30.02321023835988 ], [ -95.730237107348415, 30.023166238063148 ], [ -95.729770106853607, 30.02256723836943 ], [ -95.729681106853121, 30.022419238480317 ], [ -95.729384107289121, 30.022089237748823 ], [ -95.729195107519232, 30.02201223766377 ], [ -95.729087107106025, 30.02200723849877 ], [ -95.728866106443263, 30.022023237692366 ], [ -95.728620106874459, 30.02206723829056 ], [ -95.728298106792437, 30.022139238308963 ], [ -95.727932107105801, 30.022244238471611 ], [ -95.727635106810553, 30.022315238372787 ], [ -95.727344106724502, 30.02232623785692 ], [ -95.727243106707988, 30.022315238175114 ], [ -95.727117106397671, 30.022271238377002 ], [ -95.72700910667217, 30.02221623854933 ], [ -95.726542105929667, 30.021914238234469 ], [ -95.726466106248878, 30.021854237905757 ], [ -95.726390105883326, 30.021826237795121 ], [ -95.726289106291418, 30.021821238176322 ], [ -95.726169106026433, 30.021843237970838 ], [ -95.725875105683571, 30.021922238346576 ], [ -95.725639106254278, 30.02198623855471 ], [ -95.725481106244303, 30.022019238339926 ], [ -95.725316106316498, 30.022030238333091 ], [ -95.725115105561443, 30.022020238283645 ], [ -95.724982105817062, 30.022006238550237 ], [ -95.724930105865894, 30.022001238255218 ], [ -95.724892106299919, 30.021988238215226 ], [ -95.724807106079794, 30.02196123801718 ], [ -95.724789106074397, 30.021955237974513 ], [ -95.724776105943604, 30.021951237932736 ], [ -95.724697105408509, 30.021926238573201 ], [ -95.72461210565875, 30.021890238431268 ], [ -95.724445105557308, 30.021821237942959 ], [ -95.724160105243655, 30.021668238176584 ], [ -95.724059105607068, 30.021580238433298 ], [ -95.723933106119318, 30.021349238195562 ], [ -95.723895105401724, 30.021239237835275 ], [ -95.723844106040985, 30.021162238475767 ], [ -95.72378710570635, 30.021113238451669 ], [ -95.723693105540391, 30.02106323779395 ], [ -95.72359210537617, 30.021025237623142 ], [ -95.723187105410716, 30.020821238007159 ], [ -95.723093105506663, 30.020794238302347 ], [ -95.72302310522636, 30.020788237771029 ], [ -95.722935104928425, 30.020799238287601 ], [ -95.722714105138564, 30.020926237968244 ], [ -95.722309105079418, 30.02135523859112 ], [ -95.722272105359806, 30.021382237988849 ], [ -95.722183105400561, 30.021382238206474 ], [ -95.722063105106557, 30.021366237746548 ], [ -95.721842104746912, 30.021300238615062 ], [ -95.721722104882076, 30.021250238472323 ], [ -95.721450104950648, 30.021185237945591 ], [ -95.721324104527696, 30.021179238235291 ], [ -95.721160105095166, 30.021218238066581 ], [ -95.721053105091826, 30.021300238119487 ], [ -95.721015104956948, 30.021520238173796 ], [ -95.721021105102977, 30.021663238525768 ], [ -95.721040104986784, 30.021773238134386 ], [ -95.721046105418296, 30.021791238038983 ], [ -95.721040105451067, 30.021916238258719 ], [ -95.721008104780253, 30.022015237972045 ], [ -95.720920104937264, 30.02207023821137 ], [ -95.720844105010698, 30.022092238547813 ], [ -95.720775104435091, 30.022103238393989 ], [ -95.720693104884461, 30.022097238029364 ], [ -95.720560104389932, 30.022020238640085 ], [ -95.720503104983095, 30.021960238335215 ], [ -95.720339104965504, 30.021850238055404 ], [ -95.720295104892799, 30.02177923837888 ], [ -95.720250104525235, 30.021592238001741 ], [ -95.720137105153725, 30.021377237878909 ], [ -95.720054104307494, 30.021251238255644 ], [ -95.719903104778069, 30.021097237834265 ], [ -95.71970710463539, 30.020987237947754 ], [ -95.719619104621188, 30.02095423798411 ], [ -95.719517104744057, 30.020932237999912 ], [ -95.719252104869625, 30.020916237865151 ], [ -95.719082104858373, 30.020927238051012 ], [ -95.718260104177503, 30.021191238285251 ], [ -95.718084103851936, 30.021202238673318 ], [ -95.717926104292346, 30.02120723823035 ], [ -95.717439104062819, 30.021186238245608 ], [ -95.717300103501856, 30.02115323799428 ], [ -95.717060104381773, 30.021070238116625 ], [ -95.71700410366914, 30.021059238158735 ], [ -95.716966104350576, 30.021037238705464 ], [ -95.716915103569576, 30.020982237980366 ], [ -95.716896104185409, 30.020845238110347 ], [ -95.716915103934937, 30.020713237994293 ], [ -95.717155103504609, 30.020015237674905 ], [ -95.717167104043156, 30.019877238053766 ], [ -95.717129103976532, 30.019784237973663 ], [ -95.717079104175269, 30.019696237905016 ], [ -95.716940103821543, 30.019564237932794 ], [ -95.716832103663762, 30.019520237601576 ], [ -95.716624103367153, 30.019487238144499 ], [ -95.715064103432084, 30.018900238128936 ], [ -95.714950102984304, 30.018834237887351 ], [ -95.714773102945756, 30.018713237637577 ], [ -95.714615103143231, 30.018619237447762 ], [ -95.714445103155768, 30.018542237562677 ], [ -95.714261102896941, 30.018493237593248 ], [ -95.714078102784669, 30.018471237950305 ], [ -95.713946102884506, 30.018482237662042 ], [ -95.713737103233328, 30.018515237988378 ], [ -95.713617103318214, 30.018554238055611 ], [ -95.713516103099266, 30.018570238331129 ], [ -95.713390102888908, 30.01856523829613 ], [ -95.713282102529462, 30.018532237569463 ], [ -95.713169102526493, 30.018532237590531 ], [ -95.712986102258412, 30.018565238334659 ], [ -95.712531102331482, 30.018691238283992 ], [ -95.711975102666287, 30.018801238135758 ], [ -95.711501102745345, 30.018812237959736 ], [ -95.711400102368984, 30.018801237954374 ], [ -95.711293102580044, 30.018735238035269 ], [ -95.711129102153251, 30.018593238207853 ], [ -95.710964102290632, 30.018505238182112 ], [ -95.710794102285689, 30.018444237884072 ], [ -95.710661101704289, 30.018417238404801 ], [ -95.71055410204724, 30.018384238298047 ], [ -95.71027610193164, 30.018263238293763 ], [ -95.709928102273352, 30.018137238398204 ], [ -95.709834101964319, 30.018065237993845 ], [ -95.709751102008099, 30.017988238033361 ], [ -95.709663102340429, 30.017961237614461 ], [ -95.70936610182099, 30.017922237594004 ], [ -95.709259101995769, 30.017873237547825 ], [ -95.709019101335812, 30.017741237940598 ], [ -95.708861101749505, 30.017669237709768 ], [ -95.708785101380457, 30.017664237921593 ], [ -95.708646101390499, 30.01768623768168 ], [ -95.708551101751837, 30.017686237948315 ], [ -95.708292101091558, 30.017631237985778 ], [ -95.708235101685261, 30.017659238174172 ], [ -95.708115101692044, 30.017835237824251 ], [ -95.708002101313241, 30.018428238000013 ], [ -95.707958101421909, 30.018516238082398 ], [ -95.707857101585915, 30.018621238322385 ], [ -95.707787101782344, 30.018643238442355 ], [ -95.707642100849924, 30.018659238242247 ], [ -95.707566101050901, 30.018648237879574 ], [ -95.707433101425352, 30.018604238157216 ], [ -95.707238101654141, 30.018555237808798 ], [ -95.707149100729069, 30.01851623844469 ], [ -95.707023101553901, 30.018478238319016 ], [ -95.706953101580794, 30.01842823807581 ], [ -95.706865101154975, 30.018329237674873 ], [ -95.706707101390393, 30.018055237608131 ], [ -95.706562101527041, 30.017884237834991 ], [ -95.704925100113627, 30.016659238129563 ], [ -95.704553100287058, 30.016505237641166 ], [ -95.704458100080217, 30.016373237487709 ], [ -95.7044331004019, 30.016274237369526 ], [ -95.704395100574857, 30.0161862377083 ], [ -95.704344100649678, 30.016109237592165 ], [ -95.704337100403819, 30.016092237557196 ], [ -95.704294100419162, 30.016054237343369 ], [ -95.704167100163318, 30.016021237766296 ], [ -95.704092100716849, 30.016021238119254 ], [ -95.703959100009158, 30.01606523732903 ], [ -95.703833100759979, 30.0161752377218 ], [ -95.703801100386656, 30.016241237920902 ], [ -95.703782100113131, 30.01642323798195 ], [ -95.703782100466569, 30.016527237638893 ], [ -95.703770100073584, 30.0165712378077 ], [ -95.703751100523675, 30.016598237937675 ], [ -95.703675100041877, 30.016631237477601 ], [ -95.703555100718972, 30.016593237692486 ], [ -95.703460099743566, 30.016577238104865 ], [ -95.703283100599393, 30.016566238047787 ], [ -95.703195099809747, 30.016604237918095 ], [ -95.703119100288149, 30.016620238277337 ], [ -95.703068100562945, 30.016582238113205 ], [ -95.703018100364858, 30.016500237709522 ], [ -95.702974100238805, 30.016379237878592 ], [ -95.702910100145999, 30.016263238119723 ], [ -95.702841099591097, 30.016175238017528 ], [ -95.702759100368439, 30.016104238152909 ], [ -95.702664099929422, 30.01606023742222 ], [ -95.702513099611664, 30.016010237681453 ], [ -95.702374100071992, 30.015977237909237 ], [ -95.702260099838682, 30.015933238036698 ], [ -95.702197099627071, 30.015884238202908 ], [ -95.702140099960616, 30.015736237846216 ], [ -95.702127100208472, 30.015626237680877 ], [ -95.70207709944836, 30.015527237949854 ], [ -95.702032099632305, 30.015329237521634 ], [ -95.70204510023531, 30.015175237987233 ], [ -95.702102099942181, 30.015021237292004 ], [ -95.70217109997543, 30.014856237941977 ], [ -95.702272100279771, 30.014746237335295 ], [ -95.702285099533327, 30.014691237532482 ], [ -95.702203099344715, 30.01459823747043 ], [ -95.702089100003619, 30.014537237599551 ], [ -95.702013100197092, 30.014449237538134 ], [ -95.701906099687875, 30.014433237342107 ], [ -95.701704099417199, 30.014444237531311 ], [ -95.701483099168058, 30.014444237652164 ], [ -95.701243099100722, 30.014471237205576 ], [ -95.700977099642486, 30.014526237487278 ], [ -95.700485099371036, 30.014746237533917 ], [ -95.700409099214752, 30.014801237722168 ], [ -95.700340099541762, 30.014884238026571 ], [ -95.700327099582736, 30.015071238039287 ], [ -95.700365099293592, 30.015483238181115 ], [ -95.700359099046025, 30.015653237875487 ], [ -95.700327099621333, 30.015697237575175 ], [ -95.700277099203447, 30.015736237440599 ], [ -95.700037099174111, 30.015780237433493 ], [ -95.699815098907735, 30.015785238243396 ], [ -95.699721099613853, 30.015763238082403 ], [ -95.699639099222182, 30.015730237608331 ], [ -95.699569099005288, 30.015566238162425 ], [ -95.69955609873675, 30.015417238076296 ], [ -95.699575098702368, 30.015269237997813 ], [ -95.699569099002389, 30.015115237544244 ], [ -95.699575099560576, 30.014999237260994 ], [ -95.699556099106331, 30.014900237231291 ], [ -95.699525098889751, 30.014812237411618 ], [ -95.699462099335719, 30.01474623732199 ], [ -95.699354098864191, 30.014670237321777 ], [ -95.699215098622389, 30.014631237850701 ], [ -95.698855099412128, 30.014664237848638 ], [ -95.698647098435458, 30.014708237301669 ], [ -95.698495099224644, 30.014769237937021 ], [ -95.698337099213134, 30.014862237717377 ], [ -95.698135098964215, 30.014999237610436 ], [ -95.69807209891178, 30.015071238148469 ], [ -95.697996098484651, 30.015269237342668 ], [ -95.697952098774408, 30.015544237923908 ], [ -95.697946098686486, 30.015813237483098 ], [ -95.69791409925304, 30.01588423815587 ], [ -95.697883098903091, 30.015923237537375 ], [ -95.69777509856587, 30.015989237534523 ], [ -95.697617098274691, 30.016044237782118 ], [ -95.697428098182044, 30.016044238116521 ], [ -95.697335098192909, 30.016651238025158 ], [ -95.697292098859279, 30.017000237746391 ], [ -95.697283098896179, 30.017091238452345 ], [ -95.697275098156112, 30.01726423846846 ], [ -95.697271098321565, 30.017404237907225 ], [ -95.69728409854774, 30.01867123842975 ], [ -95.69732709877978, 30.02150523946144 ], [ -95.697363099035755, 30.024136239640917 ], [ -95.697371099408485, 30.024603239622046 ], [ -95.697428099310414, 30.029493241123507 ], [ -95.6974520996541, 30.031442241065516 ], [ -95.697503099828253, 30.035777242337119 ], [ -95.697508099260531, 30.0365492423505 ], [ -95.697513100094255, 30.036680241976672 ], [ -95.697517099101461, 30.036807242317185 ], [ -95.697530100091882, 30.038001242339469 ], [ -95.697533099652475, 30.038403242761742 ], [ -95.697538100004408, 30.038718242472729 ], [ -95.697556099843581, 30.040598243025293 ], [ -95.697564100134969, 30.040981242676615 ], [ -95.697569100267316, 30.041159242951355 ], [ -95.697570100311339, 30.041503242737996 ], [ -95.697600100331272, 30.043970243537967 ], [ -95.697611100153935, 30.044839244028662 ], [ -95.697611099871722, 30.044894243774824 ], [ -95.697627100456231, 30.046495243807808 ], [ -95.697676099961242, 30.050208244506862 ], [ -95.697672100266388, 30.050355244844035 ], [ -95.697681099770065, 30.050494245277552 ], [ -95.697590099975031, 30.05173524486344 ], [ -95.697547100205782, 30.052016244838345 ], [ -95.697527100384121, 30.052148244869038 ], [ -95.697500100010799, 30.052357245237612 ], [ -95.69747710035071, 30.052541245210929 ], [ -95.697451100766571, 30.052784245862288 ], [ -95.69742610021261, 30.052963245490176 ], [ -95.697383099965293, 30.053286245193711 ], [ -95.697346100404033, 30.053514245677555 ], [ -95.697225099970524, 30.054047245823732 ], [ -95.697208100072956, 30.054211245568119 ], [ -95.697201100263726, 30.054378245488611 ], [ -95.697252100514021, 30.0578972466129 ], [ -95.697270100089511, 30.058735246724837 ], [ -95.697299100435657, 30.060483247333686 ], [ -95.697300100938961, 30.060950246814951 ], [ -95.6973091003333, 30.061094247481389 ], [ -95.697353100831776, 30.063528247753162 ], [ -95.69735710118303, 30.063794247493153 ], [ -95.69735310130234, 30.063945247888824 ], [ -95.697360100333924, 30.064090247939895 ], [ -95.697378100868207, 30.065618248126082 ], [ -95.697393100469768, 30.066126248328434 ], [ -95.697407101323478, 30.066291248233128 ], [ -95.697434100965481, 30.066436248586363 ], [ -95.697456100521606, 30.066504248336845 ], [ -95.697484101236199, 30.066566248587989 ], [ -95.697517101271657, 30.066624248129973 ], [ -95.697596100715359, 30.066725248402459 ], [ -95.697640101139797, 30.066770248692858 ], [ -95.697732100805666, 30.06684724856667 ], [ -95.697811101211514, 30.066902248254095 ], [ -95.69788810135401, 30.06694324789764 ], [ -95.697960101326814, 30.066974248600079 ], [ -95.698032101111593, 30.066999248530777 ], [ -95.698131100985634, 30.067024248310776 ], [ -95.698193101697967, 30.067035248427675 ], [ -95.698341101480921, 30.067057248696461 ], [ -95.698510101387981, 30.067064247892812 ], [ -95.699078101433699, 30.067058248441008 ], [ -95.699218101729116, 30.067069248367378 ], [ -95.699355101157465, 30.067095248023371 ], [ -95.699487101367282, 30.067136247986905 ], [ -95.699610101184916, 30.067193248374032 ], [ -95.699724101538948, 30.067263248416776 ], [ -95.699824101747708, 30.067348248044777 ], [ -95.699909101375212, 30.067445248085917 ], [ -95.699978101780133, 30.067552248478513 ], [ -95.700029101270943, 30.067666248028566 ], [ -95.700061101861337, 30.067786248459644 ], [ -95.700078101658434, 30.067911248690812 ], [ -95.700085101818033, 30.068041248761883 ], [ -95.700093102150433, 30.068461248371577 ], [ -95.700117102210015, 30.071028248675439 ], [ -95.700134101465167, 30.072875249329979 ], [ -95.700166101558864, 30.075013249999408 ], [ -95.700194102467577, 30.076909250004089 ], [ -95.700204101658841, 30.077376250533288 ], [ -95.700194102623769, 30.077530249903582 ], [ -95.700214102155911, 30.077824250749355 ], [ -95.700236102154307, 30.079110250555413 ], [ -95.700248102782268, 30.080099251062531 ], [ -95.700256102723884, 30.080338250493401 ], [ -95.700250102376756, 30.080862250995303 ], [ -95.700238102191207, 30.080928251067011 ], [ -95.700308102413075, 30.080960250607198 ], [ -95.700430102442795, 30.081028250772881 ], [ -95.700580102772562, 30.081129250952294 ], [ -95.701216102778403, 30.081602250814978 ], [ -95.701222102658846, 30.081767251382715 ], [ -95.701319102905046, 30.082915251078532 ], [ -95.701409102641009, 30.083882251950197 ], [ -95.701530103028418, 30.085112251466633 ], [ -95.701561102625334, 30.085346251579253 ], [ -95.701646103215978, 30.085788252009309 ], [ -95.701828102815384, 30.086530252472734 ], [ -95.70190810293542, 30.086880252413909 ], [ -95.701932103382703, 30.087003252608842 ], [ -95.701999102811513, 30.087243252636306 ], [ -95.701963102922534, 30.087380252424271 ], [ -95.701983103556941, 30.087912252634961 ], [ -95.701983102861917, 30.088048251947139 ], [ -95.702031102751619, 30.089149252701411 ], [ -95.702071103242218, 30.090458252579019 ], [ -95.702087103261889, 30.090903253072042 ], [ -95.702098103396224, 30.091044252917872 ], [ -95.702114103770455, 30.091843252847596 ], [ -95.702118103009141, 30.091861252758264 ], [ -95.702144103318275, 30.092510253699093 ], [ -95.702199103022323, 30.094394253437812 ], [ -95.702221103642984, 30.094908254077552 ], [ -95.702276103820381, 30.096622254543561 ], [ -95.702277103154543, 30.096797253736195 ], [ -95.702269103421813, 30.096974254140108 ], [ -95.70230310405303, 30.097147254129037 ], [ -95.702342103304289, 30.097312254281135 ], [ -95.7023011035254, 30.097490253914987 ], [ -95.702310103540214, 30.097651254011115 ], [ -95.702315103811287, 30.098164254021192 ], [ -95.702300103348833, 30.098345254850052 ], [ -95.702256103705892, 30.098554254437918 ], [ -95.702171103506601, 30.098869254738432 ], [ -95.702136103405621, 30.098998254550139 ], [ -95.702121103321815, 30.099046254644275 ], [ -95.702569103288539, 30.099430254572049 ], [ -95.70301610395758, 30.099814254538085 ], [ -95.703136104079135, 30.100006254553985 ], [ -95.703193103759375, 30.100116254802121 ], [ -95.703319104216902, 30.10026525467514 ], [ -95.703433103584842, 30.100364254762027 ], [ -95.703522103955493, 30.100462254720476 ], [ -95.703699104013808, 30.100853254830962 ], [ -95.703895104453139, 30.101199254836427 ], [ -95.704293104647775, 30.101633255099923 ], [ -95.704470104681278, 30.101803255510003 ], [ -95.704913104118802, 30.102155255529784 ], [ -95.705027104124596, 30.102227255315622 ], [ -95.705076104194731, 30.102272255488987 ], [ -95.705128104322256, 30.102320255015638 ], [ -95.705280104523979, 30.10238025484847 ], [ -95.705476104190396, 30.102441254894696 ], [ -95.706108105333072, 30.102540255519525 ], [ -95.706272104405159, 30.102589255305936 ], [ -95.706563104492375, 30.102639255456356 ], [ -95.706677105295427, 30.102677255334182 ], [ -95.706734105214267, 30.102715255273267 ], [ -95.706835105320366, 30.102765255554981 ], [ -95.706886104670929, 30.102814255081885 ], [ -95.706930104647171, 30.102875255012336 ], [ -95.706980105120209, 30.102902255395396 ], [ -95.707044104785567, 30.102913255451963 ], [ -95.707145105610593, 30.102908255278869 ], [ -95.707423105459739, 30.102836255658783 ], [ -95.707556105314183, 30.102825255605662 ], [ -95.707764104789788, 30.102831255242322 ], [ -95.708074104861709, 30.102891254735571 ], [ -95.708365105133552, 30.102907255193742 ], [ -95.708517105777602, 30.102885255022059 ], [ -95.708833105077147, 30.102775254805817 ], [ -95.708921105374316, 30.102775255268682 ], [ -95.709016105533635, 30.102786255014884 ], [ -95.709275105238888, 30.102858254744962 ], [ -95.709496106175877, 30.102918255143667 ], [ -95.709566105451344, 30.102918255104544 ], [ -95.709808106029286, 30.102881255243894 ], [ -95.709888106090702, 30.102869254808333 ], [ -95.710040106268011, 30.102808254697482 ], [ -95.710091105558121, 30.102759254745003 ], [ -95.710129105570289, 30.102693255191891 ], [ -95.710154106245824, 30.102588255246314 ], [ -95.710192106197056, 30.102550255295725 ], [ -95.710274105817888, 30.102511255152876 ], [ -95.710356105464825, 30.102500254584687 ], [ -95.710653106202457, 30.102412255464614 ], [ -95.710773105744266, 30.102390255125751 ], [ -95.710868105958866, 30.102341255414576 ], [ -95.711165106329631, 30.102137255066911 ], [ -95.711393106671551, 30.102016254969609 ], [ -95.711734106575506, 30.101890254629232 ], [ -95.711841106084762, 30.101868254932707 ], [ -95.712082106384528, 30.101846254778856 ], [ -95.712373106339797, 30.101835255082314 ], [ -95.712632106350839, 30.101774254500175 ], [ -95.712764106277561, 30.101752255183076 ], [ -95.712916106863389, 30.101752254496837 ], [ -95.713144106688603, 30.101802254425074 ], [ -95.713251106904053, 30.101840254475292 ], [ -95.713491106251482, 30.101961255025142 ], [ -95.713922106321704, 30.102324254778672 ], [ -95.714225106516579, 30.102395255298973 ], [ -95.714370106789829, 30.102455255078645 ], [ -95.714427106983493, 30.102466254765403 ], [ -95.714490106995186, 30.10246625533328 ], [ -95.714585106995798, 30.102450255104298 ], [ -95.714851107391837, 30.102356254974445 ], [ -95.715142107487949, 30.102290254544727 ], [ -95.715217107308874, 30.102257255243554 ], [ -95.715306106956561, 30.102169254798898 ], [ -95.715404106790146, 30.102039254993525 ], [ -95.715502107149547, 30.101911255035787 ], [ -95.715559107066426, 30.101812254868054 ], [ -95.715672107466048, 30.101531254672697 ], [ -95.715729106865894, 30.101465254682676 ], [ -95.715856107289426, 30.101400254987688 ], [ -95.716071107360023, 30.101361254274703 ], [ -95.716121107279704, 30.101339254408963 ], [ -95.716191107051458, 30.101284254428585 ], [ -95.71622210692864, 30.101234254808748 ], [ -95.716241107515359, 30.101174254122537 ], [ -95.71624110702956, 30.101053254331848 ], [ -95.716228107194041, 30.100993254628573 ], [ -95.716241107879384, 30.100938254289066 ], [ -95.71632910756496, 30.10077825466195 ], [ -95.716468107632977, 30.100608254490115 ], [ -95.716519107416872, 30.10052025398414 ], [ -95.716544107566904, 30.100454254725108 ], [ -95.716538107822998, 30.100382254153061 ], [ -95.716557107122938, 30.100338254442857 ], [ -95.716607107616142, 30.100289254765745 ], [ -95.716696107031183, 30.100256254461133 ], [ -95.717113107696591, 30.100151254373127 ], [ -95.717157107853126, 30.100118254365452 ], [ -95.717189108048856, 30.100063253904658 ], [ -95.717202107710506, 30.100020254691504 ], [ -95.717195107770692, 30.099959254488706 ], [ -95.717151107411667, 30.099833254651269 ], [ -95.717113107390418, 30.099662254455687 ], [ -95.717132107843767, 30.099596253901264 ], [ -95.71715610775621, 30.099540254005394 ], [ -95.717195107995593, 30.099453254440142 ], [ -95.717246107490951, 30.099393254154489 ], [ -95.717309107743802, 30.099365253844592 ], [ -95.717441107096363, 30.099393254011794 ], [ -95.717587108038487, 30.099448254353433 ], [ -95.717871107527586, 30.099420254233028 ], [ -95.717922107753864, 30.099426254271179 ], [ -95.718010107528144, 30.099470254025434 ], [ -95.718226107413997, 30.099607254455723 ], [ -95.718371108338459, 30.099684253763222 ], [ -95.718497108266988, 30.09971125451154 ], [ -95.718725108294876, 30.099717254340565 ], [ -95.718788108199846, 30.099711254116663 ], [ -95.71902810848691, 30.099750254118096 ], [ -95.719149108071278, 30.099744253813292 ], [ -95.719256108139092, 30.099728254344502 ], [ -95.719389108019413, 30.099689253946188 ], [ -95.719435107963037, 30.099682253854255 ], [ -95.719465108177985, 30.099678254040256 ], [ -95.719547108531231, 30.09967825375648 ], [ -95.719585108623178, 30.099689254345812 ], [ -95.719648108578568, 30.099727254367842 ], [ -95.719951108680775, 30.099964254202579 ], [ -95.720021108285664, 30.100030253796771 ], [ -95.720078108681051, 30.10004125382963 ], [ -95.720110108599059, 30.100030254242995 ], [ -95.720160108321366, 30.099980254215495 ], [ -95.720293108357978, 30.099804253965381 ], [ -95.720343108517156, 30.099771253983814 ], [ -95.720394107866923, 30.099766254474655 ], [ -95.720476107995736, 30.099782253766541 ], [ -95.720590108232344, 30.099821254418988 ], [ -95.720742108187849, 30.099815254251581 ], [ -95.720874108643443, 30.099821253877639 ], [ -95.720938108782647, 30.09983125372306 ], [ -95.721222108494445, 30.09993625377998 ], [ -95.721310108378034, 30.099947253788766 ], [ -95.721525108985858, 30.099925254499123 ], [ -95.721709108301027, 30.099870254196212 ], [ -95.721785108225333, 30.099875254023324 ], [ -95.721936108689164, 30.099974253837711 ], [ -95.722069108989601, 30.100040253950691 ], [ -95.722139108836757, 30.100045254412585 ], [ -95.722196108428278, 30.10004025428395 ], [ -95.722347109109791, 30.100001253877384 ], [ -95.722417109255673, 30.100001254440382 ], [ -95.72263210871202, 30.100029253679857 ], [ -95.722689109338006, 30.100023254318518 ], [ -95.722828109322947, 30.099968254054367 ], [ -95.722922108919349, 30.099902253992102 ], [ -95.722986108911485, 30.099847254149896 ], [ -95.723055108999958, 30.099765253778305 ], [ -95.72311810935112, 30.099655253794747 ], [ -95.723156109192459, 30.099622253652548 ], [ -95.723182109006302, 30.099583253759903 ], [ -95.72317510953188, 30.099561253903317 ], [ -95.723030109497174, 30.099484253559933 ], [ -95.72298610880776, 30.099440253678512 ], [ -95.722979108776983, 30.099375254034637 ], [ -95.723011109444499, 30.099342253929084 ], [ -95.7231061090678, 30.099309253980078 ], [ -95.723308108667368, 30.099276254144186 ], [ -95.723428108972058, 30.099210253782321 ], [ -95.723478108797337, 30.099100253605805 ], [ -95.723485109400258, 30.098946253717653 ], [ -95.723466109168484, 30.098759253556544 ], [ -95.72347810941227, 30.098720253608366 ], [ -95.723668109157529, 30.098594254055868 ], [ -95.723958109678193, 30.098264253697241 ], [ -95.724015108993797, 30.098220253757795 ], [ -95.724072108789997, 30.098187253285722 ], [ -95.724256109660061, 30.09813225412222 ], [ -95.724414109208141, 30.098049253472709 ], [ -95.724470109176451, 30.097994253887972 ], [ -95.724489109502542, 30.097956253754894 ], [ -95.724502109506531, 30.097780253865359 ], [ -95.72454010978673, 30.097758253729495 ], [ -95.724704109245664, 30.097708253846779 ], [ -95.724780109149663, 30.097676253771546 ], [ -95.724887109486872, 30.097599253679988 ], [ -95.72496310964668, 30.09745025362685 ], [ -95.724982109557587, 30.097362253067587 ], [ -95.724963109726986, 30.097208253322325 ], [ -95.724976109698744, 30.097170253171399 ], [ -95.725007109075278, 30.097148253861032 ], [ -95.725058109391298, 30.0971312532055 ], [ -95.725127109263326, 30.097126253549153 ], [ -95.72527310938375, 30.097164253576203 ], [ -95.725608110037726, 30.097290253745651 ], [ -95.725829109483229, 30.097290253769575 ], [ -95.725937109268472, 30.09727925331066 ], [ -95.726031109582109, 30.09724625317914 ], [ -95.726120109710109, 30.097197253833297 ], [ -95.72643610996974, 30.096977253355814 ], [ -95.726518109290737, 30.096878253545825 ], [ -95.726562109675726, 30.096773253044471 ], [ -95.726625110158224, 30.096680253334632 ], [ -95.726689110340971, 30.09662025290433 ], [ -95.72675810966409, 30.096570253636077 ], [ -95.726815109450982, 30.096548253308637 ], [ -95.726891110259629, 30.096548253277167 ], [ -95.726979109782647, 30.096559253248834 ], [ -95.72713711043852, 30.096614252872403 ], [ -95.727220109700752, 30.09661425333266 ], [ -95.727276110020298, 30.096586253137072 ], [ -95.727327110055711, 30.096542252908804 ], [ -95.727403109751478, 30.096405253649465 ], [ -95.727466110433966, 30.096157252785321 ], [ -95.727510110195396, 30.09607525357972 ], [ -95.727567110274663, 30.095998252843263 ], [ -95.727624109811799, 30.095954253215353 ], [ -95.727832109783563, 30.095877253165209 ], [ -95.728155109841722, 30.095789253079925 ], [ -95.728407109891691, 30.095651252645869 ], [ -95.728502110576841, 30.095580252597205 ], [ -95.728875110482122, 30.095376252671382 ], [ -95.728964110651361, 30.095310253190881 ], [ -95.729014110848652, 30.09523925275538 ], [ -95.729071110371351, 30.095195252526619 ], [ -95.729185110465266, 30.095173252506076 ], [ -95.729305110619251, 30.095211252901841 ], [ -95.7293491100518, 30.095250252777216 ], [ -95.729469110447326, 30.095305253122469 ], [ -95.729507110957442, 30.095316252755811 ], [ -95.729589110701198, 30.095316252737906 ], [ -95.729665110462321, 30.095305252561552 ], [ -95.729798110588163, 30.095266252877767 ], [ -95.729842110567787, 30.095228252653641 ], [ -95.72998111110148, 30.095156253191636 ], [ -95.73010811105145, 30.095118252536302 ], [ -95.730544110724409, 30.095068253009945 ], [ -95.730834110455248, 30.095007252396694 ], [ -95.731068111357331, 30.094919252888449 ], [ -95.731290111350205, 30.094798252511158 ], [ -95.731479110609541, 30.094743252339356 ], [ -95.731675111167576, 30.09465525309615 ], [ -95.731858111028473, 30.094633253000431 ], [ -95.731934110820447, 30.094650252925838 ], [ -95.732073111087772, 30.094644252687335 ], [ -95.732414110720143, 30.094545252732459 ], [ -95.732661111512385, 30.094517253083819 ], [ -95.73300211143588, 30.094451252787227 ], [ -95.733027110934273, 30.094441252414519 ], [ -95.733186111884791, 30.094374252584021 ], [ -95.733268111808357, 30.094325252700745 ], [ -95.733445111110996, 30.094193252558203 ], [ -95.733609111121481, 30.094022252333183 ], [ -95.733792111497934, 30.093742252107344 ], [ -95.733950111112136, 30.093544252302124 ], [ -95.733982111790965, 30.093517252063844 ], [ -95.734045111830753, 30.093489252169345 ], [ -95.73415911144933, 30.093478251964562 ], [ -95.734336111797219, 30.093494252623287 ], [ -95.734494111989903, 30.093522252193413 ], [ -95.734709111933668, 30.093588252292893 ], [ -95.734949111852146, 30.093637252567991 ], [ -95.735101112158389, 30.093726252587285 ], [ -95.735119112185785, 30.093736252377745 ], [ -95.735176111785464, 30.093785252352806 ], [ -95.735227111931593, 30.09383925258938 ], [ -95.735259111998019, 30.093873252702743 ], [ -95.735335112091434, 30.093978252777475 ], [ -95.735423111947313, 30.09406625256937 ], [ -95.735537111701746, 30.094082252588375 ], [ -95.735840111803029, 30.094054252093478 ], [ -95.736005111705424, 30.094071252451677 ], [ -95.736075112374749, 30.094095252071135 ], [ -95.73616911180703, 30.094126252659947 ], [ -95.736473111756013, 30.09435625249931 ], [ -95.736618112335591, 30.094422252520193 ], [ -95.736713111871396, 30.0944282520374 ], [ -95.73691511226896, 30.09446125229929 ], [ -95.737143112829088, 30.094477252287732 ], [ -95.737186111993097, 30.094487252866308 ], [ -95.737219112235096, 30.094494252809664 ], [ -95.737294112009295, 30.094521252907604 ], [ -95.737377112925415, 30.094576252602483 ], [ -95.737434112791092, 30.094647252296788 ], [ -95.737503112641917, 30.094708252119837 ], [ -95.737604112121133, 30.094724252593892 ], [ -95.73768011302829, 30.09471925216241 ], [ -95.737914112545894, 30.094741252584516 ], [ -95.738040112807766, 30.094823252246165 ], [ -95.738300112939584, 30.095136252857387 ], [ -95.738388113239168, 30.095191252231416 ], [ -95.738509113026112, 30.09521925283078 ], [ -95.738844112391632, 30.095240252150425 ], [ -95.738951113063791, 30.095262252447306 ], [ -95.739008113220208, 30.09529025266573 ], [ -95.73912811302425, 30.095372252831265 ], [ -95.739191113209856, 30.095400252276299 ], [ -95.739368112498369, 30.095438252296258 ], [ -95.739596112966865, 30.095509252525293 ], [ -95.739697113488816, 30.095603252931145 ], [ -95.739805112745444, 30.095757252980206 ], [ -95.739862113468988, 30.095795252330849 ], [ -95.739925113289488, 30.095806252260971 ], [ -95.740140113165708, 30.095883252790578 ], [ -95.740519113696692, 30.096053253016279 ], [ -95.740759113751636, 30.096130252989195 ], [ -95.741056113552276, 30.096124252932704 ], [ -95.741164113432575, 30.096141252433842 ], [ -95.741221113220689, 30.096157252277074 ], [ -95.741271114025963, 30.096185252433152 ], [ -95.741316113948173, 30.09621825295423 ], [ -95.741442113725739, 30.09634425244095 ], [ -95.741537114035594, 30.096399252342518 ], [ -95.741670113464536, 30.096432252675267 ], [ -95.742005114189212, 30.096470253093155 ], [ -95.742144113951909, 30.096520253073749 ], [ -95.742346113847816, 30.09656925230178 ], [ -95.742498113601826, 30.096629252287382 ], [ -95.742593113905485, 30.096624252681597 ], [ -95.742631113459296, 30.096607252671728 ], [ -95.742738114131583, 30.096552252927562 ], [ -95.742801113560219, 30.096547252297768 ], [ -95.743054113790492, 30.096580253002781 ], [ -95.743098114246337, 30.096563252917793 ], [ -95.743168113716465, 30.096481252339665 ], [ -95.743181113963644, 30.096354252442694 ], [ -95.743143113575115, 30.096156252751737 ], [ -95.743149114497385, 30.096074252480843 ], [ -95.743193113614623, 30.095953252230053 ], [ -95.743237113609922, 30.095898252225961 ], [ -95.743332114401454, 30.095821252190621 ], [ -95.743452113685137, 30.0957772520951 ], [ -95.743572113873256, 30.095661252882934 ], [ -95.743622114166371, 30.095568252906347 ], [ -95.743673113765297, 30.095403252803024 ], [ -95.743755113988271, 30.095244252256354 ], [ -95.743793114615471, 30.095211252766777 ], [ -95.743856114219554, 30.095178252188727 ], [ -95.743989114357873, 30.095145252740391 ], [ -95.744210113984877, 30.095018252613791 ], [ -95.744374114663827, 30.094985252566303 ], [ -95.744494114045253, 30.094985252028909 ], [ -95.744627113892832, 30.095007252755785 ], [ -95.744842114852602, 30.095067252056982 ], [ -95.744886114229772, 30.095089252088549 ], [ -95.744962114556529, 30.095095252383341 ], [ -95.745070114634117, 30.095084252007567 ], [ -95.745196114181169, 30.095040252139423 ], [ -95.745310114291357, 30.095050252243048 ], [ -95.745398114664269, 30.095122252390183 ], [ -95.74543011490195, 30.095166252173513 ], [ -95.745443114981583, 30.095248252177655 ], [ -95.745437114466171, 30.09539125211613 ], [ -95.745506114309578, 30.09557325229494 ], [ -95.745525114226709, 30.095584252240833 ], [ -95.745955114209224, 30.095479252746088 ], [ -95.74605611519587, 30.095468252758028 ], [ -95.746372115267746, 30.095369252573921 ], [ -95.746524114580907, 30.095358252579764 ], [ -95.746650115082801, 30.095363252464399 ], [ -95.746707114512589, 30.095369252289885 ], [ -95.746796114776501, 30.095401252473696 ], [ -95.746884114658798, 30.095451252732161 ], [ -95.747118114757185, 30.095528252260173 ], [ -95.747314115275088, 30.095533251893759 ], [ -95.747472114858411, 30.095478252056946 ], [ -95.74755411553582, 30.095473252194729 ], [ -95.74766811515272, 30.095505252736288 ], [ -95.747991114864035, 30.095676252429232 ], [ -95.748281115350011, 30.095753252368585 ], [ -95.748585114908664, 30.095851252460889 ], [ -95.748711115224083, 30.095857252144672 ], [ -95.748958114991012, 30.095851252119552 ], [ -95.749008115167896, 30.095840252285011 ], [ -95.749040115657408, 30.095824252498797 ], [ -95.749097115916626, 30.095780252135125 ], [ -95.749160115668062, 30.095703252323325 ], [ -95.749173115170777, 30.095626252065827 ], [ -95.749153115201779, 30.095494251942949 ], [ -95.749160115234957, 30.095461252338861 ], [ -95.749191115805246, 30.095433252434574 ], [ -95.749229116028729, 30.095417252359095 ], [ -95.749349115498987, 30.095395252240117 ], [ -95.749514115433911, 30.095439252546228 ], [ -95.749577115580252, 30.095438252182955 ], [ -95.749640115941204, 30.095433252004831 ], [ -95.749729115247689, 30.095400251800864 ], [ -95.749798115722214, 30.095361252167894 ], [ -95.749861115249757, 30.095312252367535 ], [ -95.74992411535942, 30.095251252278256 ], [ -95.75000611592462, 30.095042252579901 ], [ -95.750235116196734, 30.094591251794345 ], [ -95.750507115817314, 30.094449252052687 ], [ -95.750646116064814, 30.094394252357301 ], [ -95.751050115743325, 30.094262251518792 ], [ -95.751145115776481, 30.094207252148337 ], [ -95.751208116438988, 30.094141251741551 ], [ -95.751282115758755, 30.094045251483088 ], [ -95.751353115836679, 30.093955251506657 ], [ -95.751392116417549, 30.093905251507877 ], [ -95.751487116230166, 30.093828252141506 ], [ -95.751582115706512, 30.093778252194305 ], [ -95.751733116082534, 30.093723251616204 ], [ -95.751872116162787, 30.093707252247164 ], [ -95.752498115941762, 30.093685251482995 ], [ -95.752966116431949, 30.093625251853087 ], [ -95.753088116023136, 30.093586251620497 ], [ -95.753118116632777, 30.09357625191074 ], [ -95.753225116103721, 30.093515251479559 ], [ -95.753301116384208, 30.093455251448503 ], [ -95.753649116643658, 30.09306525165761 ], [ -95.753756116947685, 30.092977251345509 ], [ -95.754066116413213, 30.092779251606807 ], [ -95.754142117050421, 30.092708251693875 ], [ -95.754186116864275, 30.092653251821961 ], [ -95.754275116381493, 30.09238325115405 ], [ -95.754300116880742, 30.092334251653554 ], [ -95.754332116345267, 30.09230125149768 ], [ -95.75437611642964, 30.092273251059115 ], [ -95.754534117018906, 30.092246251558866 ], [ -95.754642117073544, 30.09225225171723 ], [ -95.754857116921499, 30.092285251800082 ], [ -95.75493911636265, 30.09227925113256 ], [ -95.755065117209611, 30.09223525121477 ], [ -95.755192116898954, 30.092153251106584 ], [ -95.755501117337346, 30.092005251176108 ], [ -95.755590116783182, 30.091972251684464 ], [ -95.755900116698115, 30.091895251390213 ], [ -95.755976117180495, 30.091862251172259 ], [ -95.756026117472103, 30.091823251153187 ], [ -95.756260117080771, 30.091477250799898 ], [ -95.756342117330874, 30.091400251230194 ], [ -95.756450116781053, 30.091334251010966 ], [ -95.756684117492185, 30.091241251128118 ], [ -95.756892117425565, 30.091186250731667 ], [ -95.757171117252682, 30.091131251338528 ], [ -95.757430117650699, 30.091093250991513 ], [ -95.757537116939261, 30.091065250872894 ], [ -95.757638117890508, 30.09101625061939 ], [ -95.757936117223451, 30.090725250948438 ], [ -95.757986117262575, 30.090697250533768 ], [ -95.758068117770947, 30.090664251239836 ], [ -95.758732117562076, 30.09048925096096 ], [ -95.759004117350074, 30.090395250791357 ], [ -95.759390117501809, 30.090231250707681 ], [ -95.759611117742736, 30.090060250652606 ], [ -95.759687117922709, 30.089901250492563 ], [ -95.75959211743816, 30.089258250902926 ], [ -95.759713118143367, 30.088692250971036 ], [ -95.759678117922519, 30.088621250468272 ], [ -95.759637117761542, 30.088538250373009 ], [ -95.759586117491338, 30.088362250537951 ], [ -95.759612117331883, 30.087895250731016 ], [ -95.759663117928355, 30.087757250644447 ], [ -95.759732117452899, 30.08768025067128 ], [ -95.759827117766505, 30.087372250270221 ], [ -95.760004118293338, 30.087081250366694 ], [ -95.760143117539712, 30.086911249688487 ], [ -95.760276117777593, 30.086774249714765 ], [ -95.760403117812572, 30.086669250487567 ], [ -95.760794118430567, 30.086460250219162 ], [ -95.760934117646258, 30.086411250341303 ], [ -95.761092117722839, 30.086378249952379 ], [ -95.761256117773343, 30.086367250186001 ], [ -95.76140111859489, 30.086373250147783 ], [ -95.76153411774753, 30.086389250046761 ], [ -95.762059118831758, 30.086538249609013 ], [ -95.76243111886896, 30.086659250031232 ], [ -95.762969118338162, 30.086857250464256 ], [ -95.763174118387383, 30.086936249765106 ], [ -95.763174118751664, 30.086894250166655 ], [ -95.763174118494604, 30.086653250123593 ], [ -95.763170118280556, 30.086497249502266 ], [ -95.763169119140059, 30.086433249542957 ], [ -95.763172119112411, 30.086340249903838 ], [ -95.763168118922906, 30.086218250201728 ], [ -95.76317311852425, 30.086103250204239 ], [ -95.763173118438772, 30.085961249462475 ], [ -95.763185119098537, 30.085844250246794 ], [ -95.763155118185409, 30.085458250113383 ], [ -95.763128118105811, 30.083738248983384 ], [ -95.763123118865181, 30.08360124933267 ], [ -95.76313111854995, 30.08329524906458 ], [ -95.763130118712255, 30.083090248964226 ], [ -95.763136118028854, 30.082995249324664 ], [ -95.763117118620301, 30.08269424938937 ], [ -95.763121118676978, 30.08240624927873 ], [ -95.763142118981094, 30.082313248786058 ], [ -95.763110118427761, 30.081936249134344 ], [ -95.763111118046936, 30.081471248773695 ], [ -95.763115118443466, 30.081326248585295 ], [ -95.763110118542485, 30.081017249284674 ], [ -95.763113118127947, 30.080883248792347 ], [ -95.763106118010256, 30.08052924864942 ], [ -95.763095118416757, 30.079983248344792 ], [ -95.763082118592834, 30.079012248728311 ], [ -95.763072118557275, 30.078852248676974 ], [ -95.763045118163618, 30.077870247790621 ], [ -95.763033118603602, 30.076773247784427 ], [ -95.763040117756262, 30.07662824825098 ], [ -95.763012118245371, 30.07478724731304 ], [ -95.763355118135706, 30.074594247509189 ], [ -95.764193117898358, 30.074261247411037 ], [ -95.768435119783248, 30.0729062472249 ], [ -95.776272121149091, 30.070324245988751 ], [ -95.777753121147555, 30.069708245766954 ], [ -95.778197121991141, 30.06950324605787 ], [ -95.779798121929048, 30.068768245629606 ], [ -95.781029122065604, 30.068210245692448 ], [ -95.781044122669186, 30.0681502459752 ], [ -95.781136122144105, 30.067915245920336 ], [ -95.781467122085942, 30.067177245348255 ], [ -95.781510122112365, 30.06705924556525 ], [ -95.781528122908071, 30.066991245807486 ], [ -95.781547122386769, 30.066884245700411 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1268, "Tract": "48201220100", "Area_SqMi": 0.67977784589784473, "total_2009": 628, "total_2010": 845, "total_2011": 333, "total_2012": 434, "total_2013": 575, "total_2014": 603, "total_2015": 665, "total_2016": 547, "total_2017": 590, "total_2018": 584, "total_2019": 594, "total_2020": 624, "age1": 115, "age2": 413, "age3": 238, "earn1": 47, "earn2": 135, "earn3": 584, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 39, "naics_s05": 3, "naics_s06": 432, "naics_s07": 58, "naics_s08": 90, "naics_s09": 0, "naics_s10": 12, "naics_s11": 41, "naics_s12": 0, "naics_s13": 0, "naics_s14": 22, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 69, "naics_s20": 0, "race1": 608, "race2": 113, "race3": 12, "race4": 26, "race5": 2, "race6": 5, "ethnicity1": 363, "ethnicity2": 403, "edu1": 179, "edu2": 180, "edu3": 195, "edu4": 97, "Shape_Length": 18566.825994249873, "Shape_Area": 18951042.892220952, "total_2021": 719, "total_2022": 766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355593002401349, 29.819701209926599 ], [ -95.355430002129225, 29.819402209632461 ], [ -95.355066002193894, 29.818863209912102 ], [ -95.354128001837836, 29.81774620928249 ], [ -95.353762001913452, 29.817351209422895 ], [ -95.35338900147481, 29.816894209589304 ], [ -95.35283200099731, 29.81618220909964 ], [ -95.35264000177456, 29.815910208635419 ], [ -95.352557000920143, 29.815776208816484 ], [ -95.352360001143467, 29.815462209342872 ], [ -95.352187001013462, 29.815128208831073 ], [ -95.351943001006703, 29.814540208349769 ], [ -95.351811001432267, 29.814202208369654 ], [ -95.351705000685271, 29.813930208479299 ], [ -95.351649001035852, 29.813826208651211 ], [ -95.351512000554266, 29.813525208377573 ], [ -95.351422000585714, 29.813358208316338 ], [ -95.351334001074562, 29.813213208925394 ], [ -95.351275000606933, 29.813107208180277 ], [ -95.351125000986585, 29.812904208050199 ], [ -95.351066001323247, 29.812825208403577 ], [ -95.35094300041402, 29.81269720810165 ], [ -95.350753001052553, 29.812551208378448 ], [ -95.350300000988824, 29.812414208251035 ], [ -95.349902000740173, 29.812312208858906 ], [ -95.349326999972774, 29.812132208259523 ], [ -95.349053999866513, 29.812046208463769 ], [ -95.348871999956415, 29.811986208802949 ], [ -95.347355999807789, 29.811481208635207 ], [ -95.346833999471031, 29.811272207929608 ], [ -95.346367999982803, 29.811127207960375 ], [ -95.344028999072691, 29.810383208373871 ], [ -95.342344998523231, 29.809882207763749 ], [ -95.341587998329743, 29.8096562085851 ], [ -95.339822998026321, 29.809103207712432 ], [ -95.339557997733223, 29.809036208011737 ], [ -95.339386997828385, 29.808993208246438 ], [ -95.339234997172738, 29.808936207763654 ], [ -95.338919997293942, 29.808830207678792 ], [ -95.337905997627672, 29.808582207788678 ], [ -95.337791997760576, 29.808554208140883 ], [ -95.337265997482575, 29.808442207877199 ], [ -95.336867996536768, 29.808368208273841 ], [ -95.336607996561156, 29.808320207600531 ], [ -95.336490996561352, 29.808302207578571 ], [ -95.336260996365127, 29.808267208366473 ], [ -95.336136997217679, 29.80844320826133 ], [ -95.336068996799526, 29.808540208437186 ], [ -95.335928996405059, 29.808767208115931 ], [ -95.335795996712591, 29.808984207942672 ], [ -95.335642996762544, 29.809337208449396 ], [ -95.335519996544491, 29.809623208198882 ], [ -95.335474996717906, 29.809759208037637 ], [ -95.335404996240058, 29.810031208234488 ], [ -95.33534599624241, 29.810318208032069 ], [ -95.335298996356499, 29.810816208940018 ], [ -95.335281996426048, 29.81110120827141 ], [ -95.335252996518406, 29.811590208717455 ], [ -95.335285997187285, 29.812791208963031 ], [ -95.335314996627091, 29.813273209388147 ], [ -95.33532299705675, 29.8134122094995 ], [ -95.335378996623191, 29.813916209122791 ], [ -95.33543999681288, 29.815841209655876 ], [ -95.335462997273197, 29.816559209470736 ], [ -95.335493996953076, 29.81767721038813 ], [ -95.335501997358108, 29.819712210460054 ], [ -95.335500997187367, 29.819896210063789 ], [ -95.335569997248328, 29.819896210279712 ], [ -95.335659996768982, 29.819889210174733 ], [ -95.335762997663949, 29.819881210443153 ], [ -95.335844997064683, 29.81988020999189 ], [ -95.337611997547398, 29.819876210540382 ], [ -95.338770997766531, 29.819875210140371 ], [ -95.339546998293429, 29.819850210249246 ], [ -95.339610998250961, 29.819840210335578 ], [ -95.340583998556454, 29.819816210135354 ], [ -95.341650998302072, 29.81982821034007 ], [ -95.342103998663291, 29.819840209897354 ], [ -95.342493998698885, 29.819863210470345 ], [ -95.344425999649062, 29.819837210544172 ], [ -95.347750000338394, 29.819821210132581 ], [ -95.348074000237361, 29.819809210413631 ], [ -95.348354000698848, 29.819800209815135 ], [ -95.349260000191492, 29.819775210115136 ], [ -95.350631000937582, 29.819734209803023 ], [ -95.352090001197709, 29.81974420953927 ], [ -95.352380001331511, 29.819737210231164 ], [ -95.354679001847003, 29.81972420964248 ], [ -95.355333002277575, 29.819707210132314 ], [ -95.355593002401349, 29.819701209926599 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1269, "Tract": "48201220200", "Area_SqMi": 0.57498510217654697, "total_2009": 1834, "total_2010": 1885, "total_2011": 2063, "total_2012": 1751, "total_2013": 1706, "total_2014": 1710, "total_2015": 2159, "total_2016": 2134, "total_2017": 1861, "total_2018": 1861, "total_2019": 1747, "total_2020": 1763, "age1": 189, "age2": 921, "age3": 490, "earn1": 260, "earn2": 456, "earn3": 884, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 63, "naics_s05": 40, "naics_s06": 18, "naics_s07": 9, "naics_s08": 81, "naics_s09": 0, "naics_s10": 0, "naics_s11": 39, "naics_s12": 18, "naics_s13": 0, "naics_s14": 165, "naics_s15": 1077, "naics_s16": 32, "naics_s17": 2, "naics_s18": 10, "naics_s19": 42, "naics_s20": 0, "race1": 936, "race2": 537, "race3": 18, "race4": 88, "race5": 2, "race6": 19, "ethnicity1": 1077, "ethnicity2": 523, "edu1": 250, "edu2": 304, "edu3": 452, "edu4": 405, "Shape_Length": 20452.831685496803, "Shape_Area": 16029600.551844547, "total_2021": 1585, "total_2022": 1600 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.378054008080568, 29.819394208818025 ], [ -95.377955008448893, 29.81919520909446 ], [ -95.377911008127185, 29.819106208897875 ], [ -95.377064007737701, 29.817409208766392 ], [ -95.376309007058538, 29.815742208299127 ], [ -95.375959007335013, 29.814832207650973 ], [ -95.375688007460212, 29.814151208243775 ], [ -95.375662007207097, 29.814086207725566 ], [ -95.375635006737156, 29.814019207867826 ], [ -95.375622007650577, 29.813988207836591 ], [ -95.375554007591177, 29.813821207819373 ], [ -95.375341006995797, 29.813290207333246 ], [ -95.375291007396513, 29.813214208060636 ], [ -95.37514100711671, 29.813204207623048 ], [ -95.375037006772288, 29.813198207489695 ], [ -95.374858006447297, 29.813188207921371 ], [ -95.37432200720643, 29.813221207457719 ], [ -95.374086006909479, 29.813241207611807 ], [ -95.373621006781576, 29.813299208064922 ], [ -95.372917006404464, 29.81342620828071 ], [ -95.372799006279365, 29.813439207598378 ], [ -95.372509006337438, 29.813470207840645 ], [ -95.371975006307693, 29.813556208039909 ], [ -95.371112006309687, 29.813644208036866 ], [ -95.369793005856707, 29.813670208265357 ], [ -95.366940004753488, 29.813725207850233 ], [ -95.366566004811133, 29.813735207886804 ], [ -95.366113005151377, 29.813752208602178 ], [ -95.365709005112677, 29.813759207776027 ], [ -95.3651640045763, 29.813765208310308 ], [ -95.361375003199697, 29.813804208171724 ], [ -95.361225003589396, 29.813805208172894 ], [ -95.361077003780707, 29.813806208126657 ], [ -95.360912002992478, 29.813808208749169 ], [ -95.359389003233048, 29.813822208314019 ], [ -95.357585002252378, 29.81385520830235 ], [ -95.356239002238468, 29.81388020825645 ], [ -95.355377002237546, 29.813846208350995 ], [ -95.354912001982825, 29.81377820840742 ], [ -95.354367001287713, 29.813672208619533 ], [ -95.354079001386253, 29.813596208231829 ], [ -95.353779001289723, 29.813494208389532 ], [ -95.353588001038332, 29.813429208101365 ], [ -95.353153001349696, 29.813306208475158 ], [ -95.352750001402612, 29.813169208489452 ], [ -95.352414001012306, 29.813062208397312 ], [ -95.352314000792589, 29.813030208134894 ], [ -95.351698001009353, 29.812863208275527 ], [ -95.351411001073132, 29.812785208185979 ], [ -95.351233000957777, 29.812729208415227 ], [ -95.350753001052553, 29.812551208378448 ], [ -95.35094300041402, 29.81269720810165 ], [ -95.351066001323247, 29.812825208403577 ], [ -95.351125000986585, 29.812904208050199 ], [ -95.351275000606933, 29.813107208180277 ], [ -95.351334001074562, 29.813213208925394 ], [ -95.351422000585714, 29.813358208316338 ], [ -95.351512000554266, 29.813525208377573 ], [ -95.351649001035852, 29.813826208651211 ], [ -95.351705000685271, 29.813930208479299 ], [ -95.351811001432267, 29.814202208369654 ], [ -95.351943001006703, 29.814540208349769 ], [ -95.352187001013462, 29.815128208831073 ], [ -95.352360001143467, 29.815462209342872 ], [ -95.352557000920143, 29.815776208816484 ], [ -95.35264000177456, 29.815910208635419 ], [ -95.35283200099731, 29.81618220909964 ], [ -95.35338900147481, 29.816894209589304 ], [ -95.353762001913452, 29.817351209422895 ], [ -95.354128001837836, 29.81774620928249 ], [ -95.355066002193894, 29.818863209912102 ], [ -95.355430002129225, 29.819402209632461 ], [ -95.355593002401349, 29.819701209926599 ], [ -95.3577690033094, 29.81968220974473 ], [ -95.361026003647552, 29.819640209574647 ], [ -95.36116900328841, 29.819638209904596 ], [ -95.365564004743135, 29.819586209345172 ], [ -95.367030005097902, 29.819564209346083 ], [ -95.368081005255789, 29.819553208868175 ], [ -95.369340006046144, 29.819521209125615 ], [ -95.37093000598891, 29.819515209252863 ], [ -95.37480100687722, 29.819468209245763 ], [ -95.375236007539186, 29.819468208780435 ], [ -95.37710300808827, 29.819453208670833 ], [ -95.377746008402852, 29.819413208566498 ], [ -95.377863007522564, 29.819406209208218 ], [ -95.378054008080568, 29.819394208818025 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1270, "Tract": "48339693001", "Area_SqMi": 24.427243303528613, "total_2009": 87, "total_2010": 75, "total_2011": 91, "total_2012": 98, "total_2013": 166, "total_2014": 178, "total_2015": 168, "total_2016": 156, "total_2017": 161, "total_2018": 215, "total_2019": 284, "total_2020": 297, "age1": 50, "age2": 183, "age3": 114, "earn1": 171, "earn2": 90, "earn3": 86, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 20, "naics_s05": 34, "naics_s06": 13, "naics_s07": 37, "naics_s08": 5, "naics_s09": 11, "naics_s10": 0, "naics_s11": 7, "naics_s12": 8, "naics_s13": 0, "naics_s14": 30, "naics_s15": 0, "naics_s16": 177, "naics_s17": 1, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 236, "race2": 100, "race3": 5, "race4": 4, "race5": 0, "race6": 2, "ethnicity1": 271, "ethnicity2": 76, "edu1": 69, "edu2": 104, "edu3": 83, "edu4": 41, "Shape_Length": 106946.76836015742, "Shape_Area": 680989735.65763199, "total_2021": 291, "total_2022": 347 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.320490016259143, 30.326666314104628 ], [ -95.320491016325676, 30.326401314250049 ], [ -95.320484016151141, 30.326112314407649 ], [ -95.320461016138466, 30.325779314459766 ], [ -95.320093016061065, 30.321427312774308 ], [ -95.320076016024828, 30.321227312837081 ], [ -95.319901016514464, 30.318749312528922 ], [ -95.319853016518451, 30.318062312059197 ], [ -95.319789016089914, 30.317168312346158 ], [ -95.319770015760227, 30.316892312401379 ], [ -95.319675015603693, 30.315896312054733 ], [ -95.319450015698933, 30.313411311989334 ], [ -95.319241015741014, 30.309995310493193 ], [ -95.319115015641302, 30.309199310440977 ], [ -95.318869015677464, 30.308356310143473 ], [ -95.318709015651649, 30.307837310883535 ], [ -95.318655014812279, 30.307660310388822 ], [ -95.318319015058151, 30.306677310298628 ], [ -95.31775501497917, 30.305649310306766 ], [ -95.308334011519875, 30.290215307006918 ], [ -95.307546011325357, 30.288914307037025 ], [ -95.307135011873754, 30.288235306459061 ], [ -95.306717011767972, 30.28754630657961 ], [ -95.305848010966585, 30.286141306212883 ], [ -95.305809011407675, 30.286060306816328 ], [ -95.305780010790755, 30.285985306227602 ], [ -95.305718010673047, 30.285788306323848 ], [ -95.305698010970033, 30.285694306500755 ], [ -95.305674010910749, 30.285507306053351 ], [ -95.305669010559043, 30.285377306656304 ], [ -95.305673010663497, 30.285254306664463 ], [ -95.305689011081796, 30.285078306393768 ], [ -95.305796010550083, 30.284275306478943 ], [ -95.306182011135135, 30.280855305159701 ], [ -95.306539011011552, 30.277985304443618 ], [ -95.30659501087294, 30.277442304740305 ], [ -95.306613010327993, 30.277211304401025 ], [ -95.306609010674507, 30.277046304558844 ], [ -95.30656201046088, 30.275952304153414 ], [ -95.306517010830689, 30.275305304043265 ], [ -95.306377010407061, 30.273603303852514 ], [ -95.306336010022576, 30.273105304213217 ], [ -95.30631401008317, 30.272936304162982 ], [ -95.306246010287538, 30.272557303405105 ], [ -95.306180010325093, 30.272327304081283 ], [ -95.306120010256706, 30.272096304088329 ], [ -95.306084009992375, 30.271954303198033 ], [ -95.305456010456027, 30.269512303059578 ], [ -95.305360010155439, 30.26914130283895 ], [ -95.30532900969159, 30.269021303038457 ], [ -95.305309010263755, 30.268942303112524 ], [ -95.305237010060793, 30.268720303321658 ], [ -95.305120010285364, 30.268359303307147 ], [ -95.305045009876338, 30.268155302973337 ], [ -95.305024010173028, 30.268098303274787 ], [ -95.304892009378136, 30.267792302381718 ], [ -95.304781010163211, 30.267574302605261 ], [ -95.30433100927813, 30.26662930245368 ], [ -95.303874009471528, 30.265668302294696 ], [ -95.303248009585872, 30.26435230238113 ], [ -95.302860009404682, 30.263480302394889 ], [ -95.302730008796587, 30.263177301864076 ], [ -95.302433009197998, 30.262459301524238 ], [ -95.302184009261495, 30.261814301725099 ], [ -95.301572008446243, 30.260001301540385 ], [ -95.300965007967932, 30.260130301712696 ], [ -95.30059100830745, 30.260197301077447 ], [ -95.300216008524757, 30.260239301863763 ], [ -95.29979300829973, 30.260263301514463 ], [ -95.299280008202274, 30.260257301697504 ], [ -95.294386007213944, 30.260103302002776 ], [ -95.294044006752557, 30.260088301261902 ], [ -95.293618006497482, 30.260057302088935 ], [ -95.29285500608627, 30.259981301947601 ], [ -95.291636006096809, 30.259818301939386 ], [ -95.29135800567721, 30.259767301284786 ], [ -95.29036500609061, 30.259538301907554 ], [ -95.28044700308412, 30.257174301791437 ], [ -95.280347003269341, 30.257150301547799 ], [ -95.279505003208754, 30.256945301676641 ], [ -95.276064002332731, 30.256107301101331 ], [ -95.270752000018661, 30.254824301340616 ], [ -95.268100999829997, 30.254175301129823 ], [ -95.267735000133285, 30.254099301237865 ], [ -95.267292999110893, 30.254015301127708 ], [ -95.266787999723519, 30.25393830139155 ], [ -95.266407999478631, 30.25390330167658 ], [ -95.266088999707137, 30.253886301014983 ], [ -95.265693998889233, 30.25387530138406 ], [ -95.264793998736778, 30.25389730128526 ], [ -95.264383998685631, 30.253915301662396 ], [ -95.263419999025842, 30.253988301745576 ], [ -95.263157998143086, 30.254019301077292 ], [ -95.262873998475769, 30.254058301400072 ], [ -95.262370998185474, 30.254148301115507 ], [ -95.262121997847103, 30.254205301158198 ], [ -95.260732998291132, 30.254586301605936 ], [ -95.259528997976318, 30.254914301487389 ], [ -95.259029997298697, 30.255060302049944 ], [ -95.258770997719822, 30.25514130180748 ], [ -95.258515997473154, 30.255230302142301 ], [ -95.258164997536056, 30.255371302061391 ], [ -95.257877997334887, 30.255501302306484 ], [ -95.25759099673202, 30.255641302022141 ], [ -95.257469996647941, 30.255704301885469 ], [ -95.257267997172576, 30.255821301899385 ], [ -95.256944996650375, 30.256009301959992 ], [ -95.256046997005157, 30.256586302297446 ], [ -95.255847997042636, 30.256702302384092 ], [ -95.255658996754647, 30.256804302116795 ], [ -95.255364997056446, 30.256941302035258 ], [ -95.255204996399726, 30.257011302177197 ], [ -95.254808996785272, 30.25716230225834 ], [ -95.25446299617451, 30.257266302408219 ], [ -95.254035996233583, 30.257375302350546 ], [ -95.253672995911387, 30.25744730211769 ], [ -95.253443995979623, 30.257477302829624 ], [ -95.253207996005258, 30.257503302415465 ], [ -95.252954996150677, 30.257518302335583 ], [ -95.25249799629951, 30.257530302193576 ], [ -95.251435995665446, 30.257542302272341 ], [ -95.251322995807669, 30.257544302264645 ], [ -95.249736995234201, 30.257574302617833 ], [ -95.249550995187747, 30.257594302733036 ], [ -95.249162995407289, 30.257649302578262 ], [ -95.248871994509358, 30.257712302815278 ], [ -95.248481994906086, 30.257817302355043 ], [ -95.248231994653835, 30.257904302784297 ], [ -95.247925994545582, 30.258022302459906 ], [ -95.246377994032954, 30.258707303397134 ], [ -95.246039994039535, 30.258824303182838 ], [ -95.245718994751087, 30.258912302847556 ], [ -95.245423994440472, 30.258975303406768 ], [ -95.24484699402521, 30.25908730304338 ], [ -95.243597993791681, 30.259275302865674 ], [ -95.240618992655413, 30.25970030308126 ], [ -95.240108993052033, 30.259740303734667 ], [ -95.239644992592659, 30.25973630385139 ], [ -95.239266992991631, 30.259709303817939 ], [ -95.23895499285139, 30.259661303569565 ], [ -95.237734991967031, 30.263033304453504 ], [ -95.237255991907489, 30.264516304261829 ], [ -95.237034991841597, 30.26515130473841 ], [ -95.236854992697118, 30.265561304738718 ], [ -95.236652992534417, 30.265987304488174 ], [ -95.235466992543692, 30.268441305211212 ], [ -95.231976991988375, 30.275587307279061 ], [ -95.230424991405158, 30.278817307660031 ], [ -95.227222990365973, 30.285431309366501 ], [ -95.22741099166339, 30.293019310280922 ], [ -95.227457991654219, 30.294949311272102 ], [ -95.22746699120205, 30.295278311125838 ], [ -95.227464991075095, 30.295647311531347 ], [ -95.227445991574612, 30.295875311695248 ], [ -95.227356991411909, 30.296956311439175 ], [ -95.227354991679846, 30.297630311859116 ], [ -95.227414990987967, 30.297926311690105 ], [ -95.227835991848195, 30.300485312306495 ], [ -95.227870991200518, 30.300821312643162 ], [ -95.227904991650007, 30.302033312069131 ], [ -95.227919992182422, 30.302540312845927 ], [ -95.227927991951447, 30.302844312499392 ], [ -95.227931991818579, 30.302974312864059 ], [ -95.227973991479601, 30.303402312452071 ], [ -95.228244992187129, 30.304969313134979 ], [ -95.228350992218637, 30.306540313307998 ], [ -95.228416991696776, 30.309351314212279 ], [ -95.228420992673463, 30.309521313878761 ], [ -95.228669992400086, 30.311023314422837 ], [ -95.228753992665716, 30.311528314512827 ], [ -95.228889992110595, 30.312345314705244 ], [ -95.222284990270197, 30.31269931459563 ], [ -95.222290991113184, 30.312835314839965 ], [ -95.222302990920753, 30.313128315087209 ], [ -95.222514990587769, 30.313448314553447 ], [ -95.22306899080499, 30.313654315314292 ], [ -95.223069990802941, 30.313998315242042 ], [ -95.223201991067768, 30.314067315027017 ], [ -95.223755990825254, 30.314112315044728 ], [ -95.223835991079042, 30.314181315401271 ], [ -95.223730991644899, 30.314776315366966 ], [ -95.223941991015309, 30.314959315113803 ], [ -95.223677991121676, 30.31550931534283 ], [ -95.22436499119101, 30.3156463151042 ], [ -95.224312991776372, 30.316219315645601 ], [ -95.224735991134978, 30.316310315255318 ], [ -95.22481499181481, 30.316677315519502 ], [ -95.225105992013624, 30.316974315846149 ], [ -95.225053991666499, 30.317707315428521 ], [ -95.225925992033481, 30.318119315451593 ], [ -95.225767991719295, 30.318600316342231 ], [ -95.225133991250232, 30.318807316262486 ], [ -95.225054991392042, 30.318944315621028 ], [ -95.22508199128518, 30.319151316056811 ], [ -95.225504991520907, 30.319517315974839 ], [ -95.225587991431809, 30.319539316498794 ], [ -95.225778992373591, 30.319455316026755 ], [ -95.226145992463671, 30.319545316257962 ], [ -95.226180991634436, 30.31956031608647 ], [ -95.226247991633102, 30.319589315695477 ], [ -95.226342991787746, 30.319646316555922 ], [ -95.226367991706795, 30.319661316102096 ], [ -95.226418992619472, 30.319705315971447 ], [ -95.226462992572763, 30.319771316264656 ], [ -95.22650099197439, 30.319870315988016 ], [ -95.226526992214332, 30.319980316204177 ], [ -95.226526992673442, 30.320062316136816 ], [ -95.226500992056913, 30.320128316512733 ], [ -95.226431992065201, 30.320200315786256 ], [ -95.226355991931598, 30.320260315893702 ], [ -95.226250992223839, 30.32032031613166 ], [ -95.226076992501277, 30.320420316672593 ], [ -95.226000991992962, 30.320480316573921 ], [ -95.225949991846136, 30.320535316300049 ], [ -95.225813991712528, 30.320726316451498 ], [ -95.225804992024436, 30.320739316043131 ], [ -95.225734992121389, 30.320810316756173 ], [ -95.225710991958906, 30.320822316801365 ], [ -95.225423991982197, 30.320964316226181 ], [ -95.225354992296772, 30.321030316844812 ], [ -95.225334991765877, 30.321063316688136 ], [ -95.225316991601787, 30.321091316664162 ], [ -95.225310991635922, 30.321111316227814 ], [ -95.225297991925189, 30.32115131623009 ], [ -95.225290992343986, 30.321256316540044 ], [ -95.225373992124915, 30.321497316250657 ], [ -95.225500991562569, 30.321800316453622 ], [ -95.225486991922907, 30.321945316920853 ], [ -95.225482992386205, 30.32199131623145 ], [ -95.225443992195892, 30.322394317128257 ], [ -95.225437991672152, 30.322531316979401 ], [ -95.225443991562386, 30.32262531685792 ], [ -95.225538992473659, 30.322811316490437 ], [ -95.225570991903425, 30.322960316402327 ], [ -95.225589992528839, 30.323004316413574 ], [ -95.225640992165737, 30.323037316581448 ], [ -95.225671992093325, 30.323042316521214 ], [ -95.225779991858644, 30.323033317039553 ], [ -95.225805992368166, 30.323031316914388 ], [ -95.225862992492807, 30.323037316631734 ], [ -95.226007992474109, 30.323092317152277 ], [ -95.226121991973216, 30.323152316632822 ], [ -95.226229991790959, 30.323224316612574 ], [ -95.226318991895411, 30.323295316961513 ], [ -95.226426991959713, 30.32340531716763 ], [ -95.226450992336993, 30.323451317119442 ], [ -95.226477992705668, 30.323504317039767 ], [ -95.22648999196754, 30.323559316549908 ], [ -95.226489992578038, 30.323608316803551 ], [ -95.226477992528942, 30.323647316897347 ], [ -95.226422992731855, 30.323705316637305 ], [ -95.226401991918934, 30.323707316995101 ], [ -95.226331992393852, 30.323735316759652 ], [ -95.226280992688515, 30.32376831688261 ], [ -95.226221991837619, 30.323840317126507 ], [ -95.22620499260313, 30.323861317339198 ], [ -95.22620499232913, 30.323894316881209 ], [ -95.22622299254742, 30.323925316913332 ], [ -95.226762992949801, 30.324350317058581 ], [ -95.226895992474994, 30.324466317208056 ], [ -95.226971991985494, 30.324554317430167 ], [ -95.227009992986467, 30.32464231693228 ], [ -95.227022992020537, 30.324741317545037 ], [ -95.226988992084415, 30.324752316748377 ], [ -95.226807992736966, 30.324812316866467 ], [ -95.226680992590289, 30.324906317397584 ], [ -95.226667992656331, 30.324928316809299 ], [ -95.226655992110523, 30.324999317329919 ], [ -95.226686992451675, 30.325087317642559 ], [ -95.226819992694303, 30.325219317592833 ], [ -95.226883992357472, 30.325270317216148 ], [ -95.226991992221031, 30.325356317138233 ], [ -95.227327993115011, 30.325527316944921 ], [ -95.227549992313527, 30.325664317420802 ], [ -95.227599993147294, 30.32575831766918 ], [ -95.22760999312996, 30.325924317137503 ], [ -95.227611993090008, 30.325966317438077 ], [ -95.227612992848236, 30.325978317265534 ], [ -95.227568993200236, 30.326121317212227 ], [ -95.22747399234197, 30.32629131774824 ], [ -95.227067993097805, 30.326665317177575 ], [ -95.22670699302914, 30.327022317470476 ], [ -95.226577992601264, 30.327150317323518 ], [ -95.228560993554552, 30.327276317901077 ], [ -95.229173992741352, 30.327321317124547 ], [ -95.230895994144518, 30.327430317869297 ], [ -95.233947994482733, 30.327639317348162 ], [ -95.235851994914654, 30.327769317355738 ], [ -95.237470994992961, 30.327872317140336 ], [ -95.239505996050539, 30.328001317004855 ], [ -95.239893995513214, 30.328012317000063 ], [ -95.24108799679712, 30.328091317686777 ], [ -95.244344996935396, 30.328308317027478 ], [ -95.244544997699691, 30.328321317048896 ], [ -95.245650997872545, 30.328395316814966 ], [ -95.247863998390883, 30.328556317450644 ], [ -95.248562997730332, 30.328589317580072 ], [ -95.254078999242779, 30.32895431673909 ], [ -95.260477001664029, 30.329005317082796 ], [ -95.267088002928546, 30.329037316617004 ], [ -95.274530004916798, 30.329485316781891 ], [ -95.27681600530012, 30.329642316700085 ], [ -95.28013300648341, 30.329858316596052 ], [ -95.284291007933518, 30.330129315885003 ], [ -95.287281008116068, 30.33032331589532 ], [ -95.288049007981641, 30.330372315941528 ], [ -95.290665008719259, 30.33054131617773 ], [ -95.291195009716702, 30.33057631562944 ], [ -95.292893009269605, 30.330686316157113 ], [ -95.293114010112475, 30.330700316003409 ], [ -95.302446011957684, 30.331305315848923 ], [ -95.305968012974247, 30.331534315947593 ], [ -95.309392013773916, 30.331756315506336 ], [ -95.311263014194793, 30.33188131577322 ], [ -95.313602015292346, 30.332039315292931 ], [ -95.313694014965691, 30.332045315224605 ], [ -95.314789015047481, 30.332113315467812 ], [ -95.315262015879469, 30.332143315739881 ], [ -95.318247016133199, 30.332340315427878 ], [ -95.319502016746128, 30.332423315289081 ], [ -95.32013801669487, 30.329120315112288 ], [ -95.320353016322116, 30.327806314847368 ], [ -95.320429016925729, 30.327385314251117 ], [ -95.320454016616992, 30.327173314158959 ], [ -95.320490016259143, 30.326666314104628 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1271, "Tract": "48201222800", "Area_SqMi": 2.618257730501838, "total_2009": 6587, "total_2010": 5929, "total_2011": 5549, "total_2012": 5622, "total_2013": 6054, "total_2014": 6456, "total_2015": 6480, "total_2016": 5990, "total_2017": 5618, "total_2018": 5738, "total_2019": 5873, "total_2020": 6130, "age1": 1065, "age2": 3212, "age3": 1382, "earn1": 325, "earn2": 1008, "earn3": 4326, "naics_s01": 0, "naics_s02": 35, "naics_s03": 6, "naics_s04": 2829, "naics_s05": 1377, "naics_s06": 638, "naics_s07": 117, "naics_s08": 27, "naics_s09": 51, "naics_s10": 27, "naics_s11": 70, "naics_s12": 16, "naics_s13": 0, "naics_s14": 110, "naics_s15": 125, "naics_s16": 47, "naics_s17": 9, "naics_s18": 100, "naics_s19": 75, "naics_s20": 0, "race1": 4597, "race2": 637, "race3": 91, "race4": 253, "race5": 12, "race6": 69, "ethnicity1": 2701, "ethnicity2": 2958, "edu1": 1470, "edu2": 1209, "edu3": 1209, "edu4": 706, "Shape_Length": 35269.375890733827, "Shape_Area": 72992544.333499789, "total_2021": 5914, "total_2022": 5659 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.379941013795573, 29.932740231964395 ], [ -95.379903013399968, 29.93260323157963 ], [ -95.379120013180938, 29.929792231441922 ], [ -95.378882012710989, 29.928850231531985 ], [ -95.378623013139006, 29.927825230823988 ], [ -95.378464013403914, 29.927075231064773 ], [ -95.378364013406468, 29.926277231181054 ], [ -95.378163013062405, 29.925039230908006 ], [ -95.377447012016148, 29.922106230143608 ], [ -95.377194011977878, 29.921106230098143 ], [ -95.376994011949634, 29.92032622945262 ], [ -95.376847012475949, 29.919916229848255 ], [ -95.376687012369231, 29.919509229546438 ], [ -95.376475012211529, 29.919026229712376 ], [ -95.376245011711248, 29.918452229417372 ], [ -95.376107012015524, 29.918053229040179 ], [ -95.376033011873602, 29.917602228942698 ], [ -95.376035011487602, 29.917362228865461 ], [ -95.37603301243432, 29.917228229413691 ], [ -95.376058011853388, 29.916828228782364 ], [ -95.376073012189593, 29.916672229292484 ], [ -95.376099012088844, 29.916384228586068 ], [ -95.376130012362168, 29.916069229146686 ], [ -95.376160012110574, 29.915829228619369 ], [ -95.376186011983989, 29.915631228299766 ], [ -95.376291012103735, 29.914692228410235 ], [ -95.37629001217384, 29.914645228029681 ], [ -95.376292011590081, 29.914061228289423 ], [ -95.376235011758098, 29.913572228636976 ], [ -95.376119011916671, 29.913144228095856 ], [ -95.375884011320707, 29.912633228237834 ], [ -95.37541601108245, 29.911774227921939 ], [ -95.375351011546599, 29.911643227477555 ], [ -95.375199011237726, 29.911236227736779 ], [ -95.375068011247421, 29.910818227862602 ], [ -95.374727010787936, 29.909391227503772 ], [ -95.374301011496897, 29.907618227306685 ], [ -95.373946010716097, 29.906069226652114 ], [ -95.373504011014333, 29.904314226853781 ], [ -95.373063010373983, 29.902549225714399 ], [ -95.372978010657476, 29.902212226044952 ], [ -95.372804010801147, 29.902214225717685 ], [ -95.372673010180804, 29.902215225724049 ], [ -95.37258001080373, 29.902216225684356 ], [ -95.372413010047794, 29.902218226306651 ], [ -95.371765010626063, 29.90221922613771 ], [ -95.369824010174369, 29.902236226341646 ], [ -95.369219009073234, 29.902242225916989 ], [ -95.368437009405469, 29.902250225894935 ], [ -95.367594009577033, 29.902252226636868 ], [ -95.365790008332766, 29.90227022596881 ], [ -95.364960007942969, 29.902273226573264 ], [ -95.36478000859168, 29.90227622584483 ], [ -95.364327008234596, 29.902278226310347 ], [ -95.36344900824507, 29.902282225992455 ], [ -95.362789008134726, 29.902291226460186 ], [ -95.361723007257581, 29.90228922618002 ], [ -95.360603007549685, 29.902302226802075 ], [ -95.35904600698035, 29.902315226586317 ], [ -95.356619006311035, 29.902326226365862 ], [ -95.355165006255191, 29.902341226738866 ], [ -95.355057006017034, 29.902340226600863 ], [ -95.355133005508847, 29.904508227050187 ], [ -95.355170006178668, 29.905954227815055 ], [ -95.355188006030332, 29.907171227297862 ], [ -95.355237006647485, 29.908140227756565 ], [ -95.355308005914821, 29.9095802278229 ], [ -95.355316006734853, 29.909801228189327 ], [ -95.355373006527515, 29.911500228319337 ], [ -95.355429006326744, 29.913197228932844 ], [ -95.355486006675648, 29.914631229134908 ], [ -95.355571006869539, 29.916774229821787 ], [ -95.355582006724134, 29.917202229231336 ], [ -95.355610007037754, 29.918232229446335 ], [ -95.355628006964295, 29.920478230002317 ], [ -95.355846007515282, 29.924107230987669 ], [ -95.355971007049632, 29.927717231790957 ], [ -95.35607600704715, 29.93136023274295 ], [ -95.356140007510547, 29.93136023263045 ], [ -95.357090008238302, 29.931365232444875 ], [ -95.357494007492534, 29.931378232656694 ], [ -95.358102008119843, 29.931464232417813 ], [ -95.361784009274388, 29.931993232473179 ], [ -95.363853009063661, 29.932288232457495 ], [ -95.369939011142279, 29.933165232094836 ], [ -95.372095011891801, 29.933449232209416 ], [ -95.37422301256079, 29.933388232391192 ], [ -95.376421012561778, 29.9333022321191 ], [ -95.376514013256426, 29.933298232090056 ], [ -95.377122012979854, 29.933204232612479 ], [ -95.377631012674414, 29.93312423193683 ], [ -95.378318013539527, 29.933006231880963 ], [ -95.378964012973356, 29.932899231785189 ], [ -95.379623013093095, 29.932793231855054 ], [ -95.379941013795573, 29.932740231964395 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1272, "Tract": "48201222900", "Area_SqMi": 2.2482266204016002, "total_2009": 689, "total_2010": 737, "total_2011": 582, "total_2012": 676, "total_2013": 718, "total_2014": 698, "total_2015": 1051, "total_2016": 961, "total_2017": 642, "total_2018": 549, "total_2019": 629, "total_2020": 596, "age1": 142, "age2": 367, "age3": 136, "earn1": 141, "earn2": 224, "earn3": 280, "naics_s01": 15, "naics_s02": 0, "naics_s03": 0, "naics_s04": 50, "naics_s05": 95, "naics_s06": 63, "naics_s07": 46, "naics_s08": 156, "naics_s09": 0, "naics_s10": 2, "naics_s11": 0, "naics_s12": 26, "naics_s13": 0, "naics_s14": 54, "naics_s15": 0, "naics_s16": 22, "naics_s17": 0, "naics_s18": 114, "naics_s19": 2, "naics_s20": 0, "race1": 431, "race2": 130, "race3": 7, "race4": 63, "race5": 3, "race6": 11, "ethnicity1": 367, "ethnicity2": 278, "edu1": 137, "edu2": 145, "edu3": 119, "edu4": 102, "Shape_Length": 34919.075889628446, "Shape_Area": 62676710.298479527, "total_2021": 515, "total_2022": 645 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.35607600704715, 29.93136023274295 ], [ -95.355971007049632, 29.927717231790957 ], [ -95.355846007515282, 29.924107230987669 ], [ -95.355628006964295, 29.920478230002317 ], [ -95.355610007037754, 29.918232229446335 ], [ -95.355582006724134, 29.917202229231336 ], [ -95.355571006869539, 29.916774229821787 ], [ -95.355486006675648, 29.914631229134908 ], [ -95.355429006326744, 29.913197228932844 ], [ -95.355373006527515, 29.911500228319337 ], [ -95.355316006734853, 29.909801228189327 ], [ -95.355308005914821, 29.9095802278229 ], [ -95.355237006647485, 29.908140227756565 ], [ -95.355188006030332, 29.907171227297862 ], [ -95.355170006178668, 29.905954227815055 ], [ -95.355133005508847, 29.904508227050187 ], [ -95.355057006017034, 29.902340226600863 ], [ -95.354953006366188, 29.902349226983826 ], [ -95.354537005516903, 29.902352226546849 ], [ -95.352820004924141, 29.902362226283774 ], [ -95.351493005303467, 29.902374226391419 ], [ -95.350477004326791, 29.902382226548717 ], [ -95.348213003892511, 29.902405226780722 ], [ -95.34739600421284, 29.90240622687466 ], [ -95.346224003130303, 29.902400227054141 ], [ -95.344064002933095, 29.902417227251412 ], [ -95.340968002328623, 29.902436226842418 ], [ -95.340083001917165, 29.902460227348534 ], [ -95.339668002083769, 29.902462226992707 ], [ -95.33635800087751, 29.902479227194672 ], [ -95.334943001074265, 29.902488226963936 ], [ -95.334439000941316, 29.902485227798287 ], [ -95.332468999751541, 29.902505227689527 ], [ -95.332422999942949, 29.903521227398489 ], [ -95.332384000271645, 29.90365622759111 ], [ -95.33237599999093, 29.903684228050011 ], [ -95.332243999947295, 29.904143227623944 ], [ -95.332069999781851, 29.904753228266532 ], [ -95.3318699997088, 29.905182228098305 ], [ -95.331700999556801, 29.905545227630544 ], [ -95.331572000484044, 29.905970228529537 ], [ -95.331376000147941, 29.906619228023043 ], [ -95.331367999661694, 29.907178228206963 ], [ -95.331407000292955, 29.909537228581222 ], [ -95.331423000225016, 29.9099212289129 ], [ -95.33138500032328, 29.911232229041936 ], [ -95.331587000005413, 29.914789229629811 ], [ -95.331459000159342, 29.916199229827235 ], [ -95.331313000680964, 29.916878230404379 ], [ -95.330977999943741, 29.917757230446473 ], [ -95.330924000601996, 29.919537230828727 ], [ -95.330977000961155, 29.920583231538668 ], [ -95.330977000840292, 29.920604231262285 ], [ -95.330977000300194, 29.920662230750349 ], [ -95.330978000915238, 29.920721231546011 ], [ -95.332476001098229, 29.920676230757337 ], [ -95.333008000650253, 29.920661231421963 ], [ -95.333493001367458, 29.920669231328628 ], [ -95.334217001043186, 29.920808231268467 ], [ -95.335673002060915, 29.921306230929943 ], [ -95.336573001772138, 29.92141323091823 ], [ -95.337096002463312, 29.921408230766904 ], [ -95.337304002533983, 29.921408231549364 ], [ -95.337677002594845, 29.921364230812618 ], [ -95.337898002071881, 29.921325230736564 ], [ -95.338409002456984, 29.921193231114884 ], [ -95.338674002456656, 29.921099230662179 ], [ -95.338876002522142, 29.920989230659462 ], [ -95.339261003093441, 29.920725230966212 ], [ -95.339362002349205, 29.920676230781705 ], [ -95.339463002542089, 29.9206432305619 ], [ -95.339602002785284, 29.920610231342074 ], [ -95.339759003078257, 29.920588231294566 ], [ -95.339961002440418, 29.920593231005721 ], [ -95.340933002894516, 29.920681230640529 ], [ -95.341451003346677, 29.920763230665337 ], [ -95.341634003453748, 29.920813230424233 ], [ -95.341836003005739, 29.920901231263052 ], [ -95.342145003238656, 29.921066231312174 ], [ -95.34237200367852, 29.921209231082202 ], [ -95.342979003556636, 29.921676231428354 ], [ -95.343875003444154, 29.922407231509883 ], [ -95.345138003966966, 29.923462230952378 ], [ -95.345397004314719, 29.923731231460575 ], [ -95.345460004564998, 29.923829231044895 ], [ -95.345548004944746, 29.923968231656158 ], [ -95.345687004989827, 29.924281231051218 ], [ -95.345795004528156, 29.924539231321766 ], [ -95.345845004309894, 29.924710231407463 ], [ -95.345877004224107, 29.924847231388323 ], [ -95.345953004716264, 29.925067231619526 ], [ -95.346066004157649, 29.925452231858291 ], [ -95.346237004332338, 29.926117231393832 ], [ -95.347046005192894, 29.928399231929159 ], [ -95.347115004778587, 29.9286742325022 ], [ -95.34714700555314, 29.928959232710799 ], [ -95.347153005325239, 29.929179232183468 ], [ -95.347109005317222, 29.929707232138419 ], [ -95.347110004886872, 29.930366232452631 ], [ -95.348468005792981, 29.930389232947768 ], [ -95.349135005678974, 29.930465232175074 ], [ -95.349583006283098, 29.930552232620421 ], [ -95.350114006110999, 29.930724232949871 ], [ -95.35102600573137, 29.931092232767678 ], [ -95.351441006249146, 29.931265232554001 ], [ -95.351857006139156, 29.931366232431223 ], [ -95.352165006552312, 29.931394232548154 ], [ -95.352284006291057, 29.931403232464159 ], [ -95.353921006484967, 29.93140623271832 ], [ -95.35443000652819, 29.931393232941044 ], [ -95.354673006912506, 29.931388232942087 ], [ -95.355549007242516, 29.931371232723841 ], [ -95.355942006957491, 29.931362232691733 ], [ -95.35607600704715, 29.93136023274295 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1273, "Tract": "48201223100", "Area_SqMi": 1.8460728306054066, "total_2009": 3194, "total_2010": 2819, "total_2011": 3189, "total_2012": 3030, "total_2013": 3088, "total_2014": 2822, "total_2015": 3719, "total_2016": 5322, "total_2017": 4335, "total_2018": 4369, "total_2019": 4408, "total_2020": 4429, "age1": 711, "age2": 2576, "age3": 1007, "earn1": 516, "earn2": 1022, "earn3": 2756, "naics_s01": 0, "naics_s02": 0, "naics_s03": 3, "naics_s04": 178, "naics_s05": 475, "naics_s06": 401, "naics_s07": 111, "naics_s08": 240, "naics_s09": 0, "naics_s10": 629, "naics_s11": 91, "naics_s12": 813, "naics_s13": 36, "naics_s14": 86, "naics_s15": 0, "naics_s16": 1087, "naics_s17": 22, "naics_s18": 77, "naics_s19": 45, "naics_s20": 0, "race1": 2869, "race2": 1069, "race3": 43, "race4": 240, "race5": 14, "race6": 59, "ethnicity1": 2961, "ethnicity2": 1333, "edu1": 777, "edu2": 888, "edu3": 1179, "edu4": 739, "Shape_Length": 35274.33101754127, "Shape_Area": 51465350.932051793, "total_2021": 3805, "total_2022": 4294 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.347153005325239, 29.929179232183468 ], [ -95.34714700555314, 29.928959232710799 ], [ -95.347115004778587, 29.9286742325022 ], [ -95.347046005192894, 29.928399231929159 ], [ -95.346237004332338, 29.926117231393832 ], [ -95.346066004157649, 29.925452231858291 ], [ -95.345953004716264, 29.925067231619526 ], [ -95.345877004224107, 29.924847231388323 ], [ -95.345845004309894, 29.924710231407463 ], [ -95.345795004528156, 29.924539231321766 ], [ -95.345687004989827, 29.924281231051218 ], [ -95.345548004944746, 29.923968231656158 ], [ -95.345460004564998, 29.923829231044895 ], [ -95.345397004314719, 29.923731231460575 ], [ -95.345138003966966, 29.923462230952378 ], [ -95.343875003444154, 29.922407231509883 ], [ -95.342979003556636, 29.921676231428354 ], [ -95.34237200367852, 29.921209231082202 ], [ -95.342145003238656, 29.921066231312174 ], [ -95.341836003005739, 29.920901231263052 ], [ -95.341634003453748, 29.920813230424233 ], [ -95.341451003346677, 29.920763230665337 ], [ -95.340933002894516, 29.920681230640529 ], [ -95.339961002440418, 29.920593231005721 ], [ -95.339759003078257, 29.920588231294566 ], [ -95.339602002785284, 29.920610231342074 ], [ -95.339463002542089, 29.9206432305619 ], [ -95.339362002349205, 29.920676230781705 ], [ -95.339261003093441, 29.920725230966212 ], [ -95.338876002522142, 29.920989230659462 ], [ -95.338674002456656, 29.921099230662179 ], [ -95.338409002456984, 29.921193231114884 ], [ -95.337898002071881, 29.921325230736564 ], [ -95.337677002594845, 29.921364230812618 ], [ -95.337304002533983, 29.921408231549364 ], [ -95.337096002463312, 29.921408230766904 ], [ -95.336573001772138, 29.92141323091823 ], [ -95.335673002060915, 29.921306230929943 ], [ -95.334217001043186, 29.920808231268467 ], [ -95.333493001367458, 29.920669231328628 ], [ -95.333008000650253, 29.920661231421963 ], [ -95.332476001098229, 29.920676230757337 ], [ -95.330978000915238, 29.920721231546011 ], [ -95.33045200025397, 29.920737230832984 ], [ -95.329722999829016, 29.920617231139222 ], [ -95.329313000385469, 29.920450231205049 ], [ -95.327808999959458, 29.919558230665888 ], [ -95.327320999793926, 29.91936523084869 ], [ -95.326712999074957, 29.919279231289231 ], [ -95.325893999109965, 29.919263230701223 ], [ -95.325559999118923, 29.919257231529148 ], [ -95.317460997279014, 29.919552231287085 ], [ -95.317138997047735, 29.919505231325761 ], [ -95.317095997069458, 29.919491231223546 ], [ -95.316130996474726, 29.919311231042279 ], [ -95.315164996071033, 29.919132231693279 ], [ -95.314676996809865, 29.919137231693664 ], [ -95.312213995579981, 29.919162231908263 ], [ -95.311727995754424, 29.919092231814297 ], [ -95.310609995750241, 29.918639231095117 ], [ -95.310043994837372, 29.91850323164142 ], [ -95.309470994441668, 29.918454231167221 ], [ -95.307432994334988, 29.918439231987541 ], [ -95.307128993816647, 29.918437231960535 ], [ -95.307033994746774, 29.918549231317172 ], [ -95.306208993743567, 29.919691232236403 ], [ -95.305710994402247, 29.920480232084945 ], [ -95.303827993296935, 29.923173232698151 ], [ -95.302794993892661, 29.924808233372488 ], [ -95.30246599308056, 29.92539223354229 ], [ -95.302029993598055, 29.926227233751316 ], [ -95.301686993234398, 29.926964233176978 ], [ -95.300715992832778, 29.929216233602734 ], [ -95.300184993453371, 29.93046423453373 ], [ -95.30007899335591, 29.930712234707475 ], [ -95.300385992888422, 29.930711234498403 ], [ -95.300495993359704, 29.930710234301607 ], [ -95.301037993641359, 29.93069823445515 ], [ -95.301412993650118, 29.930645233819018 ], [ -95.301630993721517, 29.930633233992051 ], [ -95.303058994262912, 29.930594234057462 ], [ -95.303931993616757, 29.930589233883797 ], [ -95.30665099483943, 29.930548233738911 ], [ -95.306953995210691, 29.930547233952481 ], [ -95.308403994913874, 29.930547233856856 ], [ -95.309969995375226, 29.930492234231924 ], [ -95.310489995866234, 29.93048823420315 ], [ -95.312495995854519, 29.930473233659139 ], [ -95.313340996993531, 29.930453233630328 ], [ -95.313448996610163, 29.930452233768886 ], [ -95.31411499653295, 29.930443233940508 ], [ -95.314437997241583, 29.930439233589784 ], [ -95.314746996497007, 29.93043523346595 ], [ -95.31507499694132, 29.930428234012869 ], [ -95.315392997094193, 29.930421233642161 ], [ -95.315448997291043, 29.930419233476432 ], [ -95.315679997510586, 29.930415233816607 ], [ -95.315942997291629, 29.930409233558503 ], [ -95.316266997393924, 29.930402233327293 ], [ -95.317273997706309, 29.930397233322157 ], [ -95.317426997259986, 29.930397233846122 ], [ -95.317443997681366, 29.930397233605635 ], [ -95.317526997525874, 29.9303962332854 ], [ -95.317886997712847, 29.930394233523366 ], [ -95.318054997376592, 29.930392233890757 ], [ -95.31914599765085, 29.930376233694549 ], [ -95.319635998057549, 29.930354233697916 ], [ -95.320072998421949, 29.930335233357606 ], [ -95.321404998842297, 29.930336233762489 ], [ -95.321791998979975, 29.930327233370193 ], [ -95.322627999064537, 29.930321233211671 ], [ -95.325281999024014, 29.930266233714661 ], [ -95.330805000869532, 29.930168232866503 ], [ -95.331206001334124, 29.930161233587508 ], [ -95.331565000768876, 29.930170233348584 ], [ -95.331706001350852, 29.930162233575704 ], [ -95.331869001056376, 29.930153232689378 ], [ -95.332180001056287, 29.930135232954086 ], [ -95.333665002081105, 29.929948233171196 ], [ -95.333988002135357, 29.929922233015741 ], [ -95.334815002111924, 29.929892232630483 ], [ -95.335544002008973, 29.929978232821249 ], [ -95.337684002451311, 29.9301082325042 ], [ -95.338771003377815, 29.930171232591157 ], [ -95.338959002681307, 29.930182232971688 ], [ -95.339281002659732, 29.930201233001164 ], [ -95.342250003403819, 29.93037423250604 ], [ -95.343034004018477, 29.930364233136018 ], [ -95.343062003781782, 29.930362233048239 ], [ -95.345280004783234, 29.930335232478626 ], [ -95.347110004886872, 29.930366232452631 ], [ -95.347109005317222, 29.929707232138419 ], [ -95.347153005325239, 29.929179232183468 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1274, "Tract": "48201230200", "Area_SqMi": 3.0046265017802511, "total_2009": 867, "total_2010": 839, "total_2011": 1221, "total_2012": 1467, "total_2013": 1541, "total_2014": 1520, "total_2015": 1619, "total_2016": 1833, "total_2017": 2066, "total_2018": 1617, "total_2019": 1874, "total_2020": 1541, "age1": 353, "age2": 1005, "age3": 426, "earn1": 291, "earn2": 360, "earn3": 1133, "naics_s01": 0, "naics_s02": 28, "naics_s03": 0, "naics_s04": 6, "naics_s05": 130, "naics_s06": 564, "naics_s07": 119, "naics_s08": 131, "naics_s09": 0, "naics_s10": 0, "naics_s11": 25, "naics_s12": 61, "naics_s13": 0, "naics_s14": 187, "naics_s15": 2, "naics_s16": 276, "naics_s17": 2, "naics_s18": 204, "naics_s19": 49, "naics_s20": 0, "race1": 1293, "race2": 338, "race3": 11, "race4": 122, "race5": 3, "race6": 17, "ethnicity1": 1122, "ethnicity2": 662, "edu1": 333, "edu2": 373, "edu3": 405, "edu4": 320, "Shape_Length": 44285.173748398382, "Shape_Area": 83763844.399981007, "total_2021": 1683, "total_2022": 1784 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.328746995692669, 29.820034210294271 ], [ -95.329773996153236, 29.819999211015503 ], [ -95.328743994951395, 29.819903210717115 ], [ -95.328715995935838, 29.819904210548938 ], [ -95.327765995684857, 29.819904210451373 ], [ -95.327195994902013, 29.819866210344166 ], [ -95.326567994959817, 29.819713211062364 ], [ -95.324376993912253, 29.818919210458191 ], [ -95.324367993952308, 29.818513210742413 ], [ -95.32436499457323, 29.818381210739954 ], [ -95.324355994741012, 29.817975210056456 ], [ -95.324331994516413, 29.815501210106913 ], [ -95.32432299425497, 29.815402210204724 ], [ -95.324294994474187, 29.813456209285629 ], [ -95.324291994051208, 29.813258209889614 ], [ -95.324238993733331, 29.809711208297781 ], [ -95.324224993862728, 29.809560208520288 ], [ -95.324229994205567, 29.809294208466547 ], [ -95.324233993935621, 29.809077208294468 ], [ -95.323915993455429, 29.809119208568415 ], [ -95.322692993647252, 29.809209208389756 ], [ -95.321757993633156, 29.809239208967025 ], [ -95.321005993178815, 29.809227208951381 ], [ -95.31989199277551, 29.809236208562886 ], [ -95.317366992375725, 29.809255209131905 ], [ -95.317220991568689, 29.809256209113048 ], [ -95.317017991954984, 29.809258209323279 ], [ -95.316839992234932, 29.809260209144565 ], [ -95.313166991416523, 29.809288209297407 ], [ -95.312940990413864, 29.809293209421917 ], [ -95.30974998974169, 29.809370209383687 ], [ -95.308539989912347, 29.809413208976057 ], [ -95.308134989854366, 29.809428209367606 ], [ -95.307170989448394, 29.80942620921855 ], [ -95.307103989457559, 29.809422208946032 ], [ -95.306752989440255, 29.809404208913946 ], [ -95.306270989213218, 29.809370209470352 ], [ -95.305650989520345, 29.809239209355912 ], [ -95.305347988930521, 29.809163209435525 ], [ -95.305112988554882, 29.809077209307596 ], [ -95.304543988345756, 29.808839208891364 ], [ -95.304236988773752, 29.808682208824031 ], [ -95.303386988209866, 29.808205209448094 ], [ -95.301888988100728, 29.807428208688524 ], [ -95.301742987628629, 29.807348208654087 ], [ -95.299561987088936, 29.806151208796727 ], [ -95.297699987067517, 29.805171208818908 ], [ -95.297146986758094, 29.804935208960032 ], [ -95.296838986381616, 29.804819208920261 ], [ -95.296366986081551, 29.804662208375131 ], [ -95.295336986199445, 29.804391208320983 ], [ -95.29493598586474, 29.804319208857923 ], [ -95.29458998606529, 29.804273208982476 ], [ -95.294284985903531, 29.804252208277425 ], [ -95.293500985274761, 29.804213208304756 ], [ -95.292527985741444, 29.804225208824107 ], [ -95.291931985514609, 29.804208208609829 ], [ -95.290173984719246, 29.804227208656116 ], [ -95.290212984498964, 29.804422208580224 ], [ -95.291004985356054, 29.804595209174373 ], [ -95.291200984773937, 29.804720209187799 ], [ -95.291290985402497, 29.80481120906018 ], [ -95.291353985151872, 29.806425209469197 ], [ -95.291379984814014, 29.806810209487811 ], [ -95.291448985733908, 29.807231209740785 ], [ -95.291520985636936, 29.80741820982993 ], [ -95.291567985234934, 29.807540209135002 ], [ -95.291627985746629, 29.807816209340814 ], [ -95.291728985467202, 29.808329209343281 ], [ -95.291776985309411, 29.809083210070607 ], [ -95.291868985426603, 29.8106502099732 ], [ -95.291878985931078, 29.810814209671658 ], [ -95.291960985506876, 29.811166209951278 ], [ -95.292006985180876, 29.811429210219149 ], [ -95.292027985782667, 29.81167521043627 ], [ -95.292014985703972, 29.814512210405219 ], [ -95.292008986247296, 29.815026211380768 ], [ -95.292001986163356, 29.817273211285809 ], [ -95.292001986237054, 29.817390211823554 ], [ -95.291992986200469, 29.818319211465898 ], [ -95.291982986438441, 29.819377211749735 ], [ -95.291980986053929, 29.819571211497909 ], [ -95.291980986129659, 29.819930212315686 ], [ -95.291973986331001, 29.820025211570936 ], [ -95.291944986388771, 29.826002212796965 ], [ -95.291951986496429, 29.826340213671269 ], [ -95.291932986187021, 29.829049214070967 ], [ -95.291970986052959, 29.83134221405221 ], [ -95.293743986630943, 29.831356214641616 ], [ -95.293749986715582, 29.832673214108254 ], [ -95.293760986616775, 29.833997215105256 ], [ -95.298035987697915, 29.834001214336041 ], [ -95.302031989133624, 29.834012214235429 ], [ -95.302032989744305, 29.834899215105427 ], [ -95.302032989523894, 29.835779215064484 ], [ -95.302033989637053, 29.8366542154454 ], [ -95.302034989448813, 29.83753721498007 ], [ -95.302068989235138, 29.8384732151241 ], [ -95.302070989426596, 29.838672215231938 ], [ -95.302055989835495, 29.83901921550709 ], [ -95.303277990022323, 29.837876214794111 ], [ -95.304087989694196, 29.837106214805733 ], [ -95.30818699098613, 29.833055214520424 ], [ -95.308788990576033, 29.832494213541924 ], [ -95.309139990793938, 29.832179213837762 ], [ -95.309674990718889, 29.831701214177397 ], [ -95.310772991240199, 29.830579213101199 ], [ -95.313771992042248, 29.827715212802911 ], [ -95.313856991768446, 29.827635212314743 ], [ -95.315034991756491, 29.826395212493885 ], [ -95.315140992081808, 29.826313212169921 ], [ -95.316600992805419, 29.824935212007016 ], [ -95.316653992179084, 29.824854212457804 ], [ -95.318453992576039, 29.823412211919692 ], [ -95.318576993399688, 29.823322211500589 ], [ -95.320588993426227, 29.822326211535753 ], [ -95.321692993905415, 29.821788211720559 ], [ -95.322108994156778, 29.821600211251461 ], [ -95.323784993940279, 29.820844211057238 ], [ -95.325838995158875, 29.820381210829996 ], [ -95.327329995437054, 29.820128210930989 ], [ -95.328746995692669, 29.820034210294271 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1275, "Tract": "48201220300", "Area_SqMi": 0.76831963669233339, "total_2009": 963, "total_2010": 740, "total_2011": 751, "total_2012": 824, "total_2013": 1198, "total_2014": 740, "total_2015": 745, "total_2016": 773, "total_2017": 786, "total_2018": 908, "total_2019": 902, "total_2020": 934, "age1": 241, "age2": 468, "age3": 302, "earn1": 146, "earn2": 310, "earn3": 555, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 232, "naics_s05": 269, "naics_s06": 160, "naics_s07": 98, "naics_s08": 20, "naics_s09": 0, "naics_s10": 8, "naics_s11": 38, "naics_s12": 1, "naics_s13": 18, "naics_s14": 0, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 155, "naics_s19": 8, "naics_s20": 0, "race1": 822, "race2": 131, "race3": 12, "race4": 37, "race5": 0, "race6": 9, "ethnicity1": 502, "ethnicity2": 509, "edu1": 263, "edu2": 185, "edu3": 202, "edu4": 120, "Shape_Length": 19633.637028399713, "Shape_Area": 21419436.478781831, "total_2021": 982, "total_2022": 1011 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.376484007425304, 29.824442210106394 ], [ -95.376485008103501, 29.82431820968679 ], [ -95.376470007458821, 29.824147210114624 ], [ -95.376201007799835, 29.823536210168708 ], [ -95.376083007793156, 29.82324320939264 ], [ -95.375897007319622, 29.822829210020142 ], [ -95.375842007357349, 29.822699209684519 ], [ -95.37570900733985, 29.822386209203213 ], [ -95.375608007158476, 29.82213520996785 ], [ -95.375460007110661, 29.821772209420516 ], [ -95.37535600795907, 29.821542209313531 ], [ -95.375307006975078, 29.821006209368662 ], [ -95.375280007746738, 29.820453208771589 ], [ -95.375129007102231, 29.819944209535716 ], [ -95.374876007064032, 29.819524209258798 ], [ -95.37480100687722, 29.819468209245763 ], [ -95.37093000598891, 29.819515209252863 ], [ -95.369340006046144, 29.819521209125615 ], [ -95.368081005255789, 29.819553208868175 ], [ -95.367030005097902, 29.819564209346083 ], [ -95.365564004743135, 29.819586209345172 ], [ -95.36116900328841, 29.819638209904596 ], [ -95.361026003647552, 29.819640209574647 ], [ -95.3577690033094, 29.81968220974473 ], [ -95.355593002401349, 29.819701209926599 ], [ -95.355642002721495, 29.819791209573577 ], [ -95.355704001864055, 29.819905209353653 ], [ -95.355838002098778, 29.820250210093594 ], [ -95.35594700258433, 29.820622210160195 ], [ -95.356043002887901, 29.821121210392658 ], [ -95.356044002392281, 29.821137210018094 ], [ -95.356101002514592, 29.821541210077303 ], [ -95.356109002380791, 29.821906209723526 ], [ -95.35605400290153, 29.822273210685331 ], [ -95.355982002859733, 29.822701210327704 ], [ -95.355606002783389, 29.824715210758718 ], [ -95.35551300228164, 29.825174211227242 ], [ -95.355073002061076, 29.827563211463346 ], [ -95.355043002596972, 29.827738210988684 ], [ -95.355028002512796, 29.827826211708903 ], [ -95.354986002113364, 29.828070211384738 ], [ -95.354933002310347, 29.828319211494897 ], [ -95.354882002134175, 29.828598211417166 ], [ -95.35484100224248, 29.828901211176593 ], [ -95.355173002392263, 29.82894621134492 ], [ -95.355319002411463, 29.828964211619596 ], [ -95.355663002716156, 29.829005211234229 ], [ -95.356074002786727, 29.829012211709902 ], [ -95.356463003360076, 29.82901421181025 ], [ -95.356896003160585, 29.828995211830186 ], [ -95.359042003118589, 29.828954211509451 ], [ -95.361222004631898, 29.828920211460868 ], [ -95.361345004298045, 29.828917211768594 ], [ -95.36501400477492, 29.828897211214304 ], [ -95.365337005459693, 29.828891211426424 ], [ -95.365735005151393, 29.828859210942777 ], [ -95.365918005494223, 29.828849211175648 ], [ -95.366242005347829, 29.828782210877588 ], [ -95.366405005763184, 29.828739210989546 ], [ -95.366659005641964, 29.8286372108217 ], [ -95.366914005210148, 29.828558211499534 ], [ -95.367154006028088, 29.828502211034309 ], [ -95.367711005493234, 29.82845621123316 ], [ -95.368789005947221, 29.828443210871651 ], [ -95.369586006444109, 29.828445210846724 ], [ -95.370530006400358, 29.828439210601669 ], [ -95.371399006727287, 29.828433211415696 ], [ -95.375343007936721, 29.828346210776886 ], [ -95.375501007875712, 29.828374210535038 ], [ -95.376203007620788, 29.828370211071359 ], [ -95.376206007702791, 29.828249211065483 ], [ -95.376297007706896, 29.827167210086198 ], [ -95.376303007898514, 29.827084210433213 ], [ -95.376351008002914, 29.826370210028912 ], [ -95.376375007582496, 29.826070210153627 ], [ -95.376411008298547, 29.825654210360135 ], [ -95.376460007595554, 29.824959210312027 ], [ -95.376475007732026, 29.824706209894913 ], [ -95.376484007425304, 29.824442210106394 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1276, "Tract": "48201220400", "Area_SqMi": 0.74209452196188652, "total_2009": 1093, "total_2010": 930, "total_2011": 809, "total_2012": 908, "total_2013": 975, "total_2014": 1003, "total_2015": 1021, "total_2016": 808, "total_2017": 755, "total_2018": 843, "total_2019": 763, "total_2020": 706, "age1": 104, "age2": 371, "age3": 177, "earn1": 52, "earn2": 178, "earn3": 422, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 200, "naics_s05": 257, "naics_s06": 7, "naics_s07": 78, "naics_s08": 0, "naics_s09": 2, "naics_s10": 3, "naics_s11": 2, "naics_s12": 11, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 56, "naics_s19": 36, "naics_s20": 0, "race1": 553, "race2": 47, "race3": 6, "race4": 38, "race5": 1, "race6": 7, "ethnicity1": 360, "ethnicity2": 292, "edu1": 148, "edu2": 159, "edu3": 144, "edu4": 97, "Shape_Length": 19319.392475869849, "Shape_Area": 20688325.164829418, "total_2021": 602, "total_2022": 652 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.376196007569121, 29.828644210867196 ], [ -95.376203007620788, 29.828370211071359 ], [ -95.375501007875712, 29.828374210535038 ], [ -95.375343007936721, 29.828346210776886 ], [ -95.371399006727287, 29.828433211415696 ], [ -95.370530006400358, 29.828439210601669 ], [ -95.369586006444109, 29.828445210846724 ], [ -95.368789005947221, 29.828443210871651 ], [ -95.367711005493234, 29.82845621123316 ], [ -95.367154006028088, 29.828502211034309 ], [ -95.366914005210148, 29.828558211499534 ], [ -95.366659005641964, 29.8286372108217 ], [ -95.366405005763184, 29.828739210989546 ], [ -95.366242005347829, 29.828782210877588 ], [ -95.365918005494223, 29.828849211175648 ], [ -95.365735005151393, 29.828859210942777 ], [ -95.365337005459693, 29.828891211426424 ], [ -95.36501400477492, 29.828897211214304 ], [ -95.361345004298045, 29.828917211768594 ], [ -95.361222004631898, 29.828920211460868 ], [ -95.359042003118589, 29.828954211509451 ], [ -95.356896003160585, 29.828995211830186 ], [ -95.356463003360076, 29.82901421181025 ], [ -95.356074002786727, 29.829012211709902 ], [ -95.355663002716156, 29.829005211234229 ], [ -95.355319002411463, 29.828964211619596 ], [ -95.355173002392263, 29.82894621134492 ], [ -95.35484100224248, 29.828901211176593 ], [ -95.354821002541485, 29.829063211654418 ], [ -95.354842002673379, 29.82957721188556 ], [ -95.354886002207124, 29.829899212263939 ], [ -95.354971002323069, 29.830420211851273 ], [ -95.355085002169602, 29.83082821222354 ], [ -95.355500003135546, 29.832323212625475 ], [ -95.355562002898495, 29.832543211960164 ], [ -95.356804003574268, 29.837434213349599 ], [ -95.356935003475172, 29.837433212994785 ], [ -95.357792004021263, 29.837431213622779 ], [ -95.359068004178127, 29.837460212881453 ], [ -95.359791003835085, 29.837561213043998 ], [ -95.360268004645363, 29.837642213118571 ], [ -95.361430005029646, 29.837627212852052 ], [ -95.3615770045418, 29.837625213188208 ], [ -95.364477005885377, 29.83762721334033 ], [ -95.365999006076564, 29.837609212732659 ], [ -95.366089005534278, 29.837603212771342 ], [ -95.366979005734891, 29.8375962132998 ], [ -95.36819600596364, 29.837588212930356 ], [ -95.369329006818646, 29.837592212599002 ], [ -95.371491007262946, 29.837571213203631 ], [ -95.372611006982297, 29.837619212830724 ], [ -95.373221007924968, 29.837615212822751 ], [ -95.375691007914313, 29.837579212378525 ], [ -95.375778007851196, 29.835814211993135 ], [ -95.375840008638306, 29.834762211742987 ], [ -95.375854008375612, 29.834489212188654 ], [ -95.375890007919111, 29.833640211580814 ], [ -95.375917008063084, 29.833175212170801 ], [ -95.375933007637769, 29.832893212095609 ], [ -95.375980007580722, 29.832033211772583 ], [ -95.376030007648154, 29.831121211421088 ], [ -95.376089007965859, 29.830222211169215 ], [ -95.376160007541031, 29.829321210648285 ], [ -95.376196007569121, 29.828644210867196 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1277, "Tract": "48201220500", "Area_SqMi": 0.92791385729692277, "total_2009": 2536, "total_2010": 3054, "total_2011": 2995, "total_2012": 2808, "total_2013": 3186, "total_2014": 3288, "total_2015": 3398, "total_2016": 3551, "total_2017": 3429, "total_2018": 3421, "total_2019": 3289, "total_2020": 3026, "age1": 1092, "age2": 1510, "age3": 646, "earn1": 792, "earn2": 1309, "earn3": 1147, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 83, "naics_s05": 368, "naics_s06": 240, "naics_s07": 1142, "naics_s08": 18, "naics_s09": 3, "naics_s10": 162, "naics_s11": 144, "naics_s12": 22, "naics_s13": 9, "naics_s14": 88, "naics_s15": 56, "naics_s16": 192, "naics_s17": 0, "naics_s18": 623, "naics_s19": 93, "naics_s20": 0, "race1": 2461, "race2": 542, "race3": 36, "race4": 154, "race5": 6, "race6": 49, "ethnicity1": 1730, "ethnicity2": 1518, "edu1": 628, "edu2": 593, "edu3": 579, "edu4": 356, "Shape_Length": 26319.830353433885, "Shape_Area": 25868650.200999334, "total_2021": 3140, "total_2022": 3248 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.392962013423016, 29.8455292135985 ], [ -95.392866012792638, 29.84539321345795 ], [ -95.392818013400046, 29.845326213956788 ], [ -95.391974013047502, 29.844132213538419 ], [ -95.391159011991903, 29.842911212998068 ], [ -95.390409012171958, 29.841671213443405 ], [ -95.389831011977734, 29.84084221244574 ], [ -95.388116011569693, 29.838214212617423 ], [ -95.387345011146621, 29.837015212212872 ], [ -95.386808011538207, 29.836220212343711 ], [ -95.386689011160996, 29.836023212174556 ], [ -95.385938010396615, 29.83496321173936 ], [ -95.385073010330828, 29.833906211604592 ], [ -95.384521010092868, 29.833207211517315 ], [ -95.384321009931597, 29.832955211195689 ], [ -95.38420100987787, 29.832803211637643 ], [ -95.382727009522924, 29.830937210724269 ], [ -95.382136009621604, 29.830249211102842 ], [ -95.381778009670981, 29.829721211018313 ], [ -95.381558009441434, 29.829285210779314 ], [ -95.381353009104927, 29.828889210332974 ], [ -95.381329009641817, 29.828842210894774 ], [ -95.381298009681686, 29.828782210371283 ], [ -95.381228009340148, 29.828628210958573 ], [ -95.38120600966765, 29.828579211039944 ], [ -95.381138008812272, 29.828380210857627 ], [ -95.38106300913401, 29.828160210321759 ], [ -95.380759008889768, 29.827024210109201 ], [ -95.380499009373949, 29.825779210318213 ], [ -95.380311009185476, 29.825005210054616 ], [ -95.380250008980127, 29.824694209880022 ], [ -95.380183009147558, 29.824353209759629 ], [ -95.380002009165693, 29.82377620993357 ], [ -95.379808008282396, 29.82321220974416 ], [ -95.379565008226763, 29.822589209559595 ], [ -95.379498008061475, 29.822394209372959 ], [ -95.379288008615433, 29.821866209631157 ], [ -95.378532008408499, 29.820351209338909 ], [ -95.378054008080568, 29.819394208818025 ], [ -95.377863007522564, 29.819406209208218 ], [ -95.377746008402852, 29.819413208566498 ], [ -95.37710300808827, 29.819453208670833 ], [ -95.375236007539186, 29.819468208780435 ], [ -95.37480100687722, 29.819468209245763 ], [ -95.374876007064032, 29.819524209258798 ], [ -95.375129007102231, 29.819944209535716 ], [ -95.375280007746738, 29.820453208771589 ], [ -95.375307006975078, 29.821006209368662 ], [ -95.37535600795907, 29.821542209313531 ], [ -95.375460007110661, 29.821772209420516 ], [ -95.375608007158476, 29.82213520996785 ], [ -95.37570900733985, 29.822386209203213 ], [ -95.375842007357349, 29.822699209684519 ], [ -95.375897007319622, 29.822829210020142 ], [ -95.376083007793156, 29.82324320939264 ], [ -95.376201007799835, 29.823536210168708 ], [ -95.376470007458821, 29.824147210114624 ], [ -95.376485008103501, 29.82431820968679 ], [ -95.376484007425304, 29.824442210106394 ], [ -95.376475007732026, 29.824706209894913 ], [ -95.376460007595554, 29.824959210312027 ], [ -95.376411008298547, 29.825654210360135 ], [ -95.376375007582496, 29.826070210153627 ], [ -95.376351008002914, 29.826370210028912 ], [ -95.376303007898514, 29.827084210433213 ], [ -95.376297007706896, 29.827167210086198 ], [ -95.376206007702791, 29.828249211065483 ], [ -95.376203007620788, 29.828370211071359 ], [ -95.376196007569121, 29.828644210867196 ], [ -95.376160007541031, 29.829321210648285 ], [ -95.376089007965859, 29.830222211169215 ], [ -95.376030007648154, 29.831121211421088 ], [ -95.375980007580722, 29.832033211772583 ], [ -95.375933007637769, 29.832893212095609 ], [ -95.375917008063084, 29.833175212170801 ], [ -95.375890007919111, 29.833640211580814 ], [ -95.375854008375612, 29.834489212188654 ], [ -95.375840008638306, 29.834762211742987 ], [ -95.375778007851196, 29.835814211993135 ], [ -95.375691007914313, 29.837579212378525 ], [ -95.375539008361983, 29.839736212850294 ], [ -95.375509008072598, 29.840251213467564 ], [ -95.375512008794743, 29.840456213711022 ], [ -95.375538008479253, 29.840663212975706 ], [ -95.375580008223778, 29.840831213558094 ], [ -95.375705008166435, 29.841169213633194 ], [ -95.376046008318312, 29.841876213988066 ], [ -95.376383008220856, 29.842607213803721 ], [ -95.376804009263466, 29.843500213642969 ], [ -95.377059009301789, 29.844057213798742 ], [ -95.377150008807945, 29.844305214353852 ], [ -95.377198008604879, 29.844440214035242 ], [ -95.377277009036433, 29.844598213698227 ], [ -95.377341009342729, 29.844748214178296 ], [ -95.37746900913389, 29.844994214417039 ], [ -95.377522009035417, 29.845088213784308 ], [ -95.377711009114748, 29.845497214101322 ], [ -95.377750008651333, 29.845600214558317 ], [ -95.377923009525162, 29.845611214609477 ], [ -95.378412009823862, 29.845604214128411 ], [ -95.378847009682417, 29.845585214557111 ], [ -95.382346010110638, 29.845551213712319 ], [ -95.382539009919142, 29.845563213936487 ], [ -95.38274201042303, 29.845562213899374 ], [ -95.383715010957388, 29.845524214225922 ], [ -95.384307010813984, 29.845516213722274 ], [ -95.384348010573788, 29.84551821360499 ], [ -95.384485011204319, 29.845526213590272 ], [ -95.384596010949792, 29.845544214202331 ], [ -95.385043011135508, 29.845541214097693 ], [ -95.385089011193244, 29.845538214318175 ], [ -95.385264010631516, 29.845514213747908 ], [ -95.385398011459273, 29.845507214009679 ], [ -95.385538011209817, 29.845509213566757 ], [ -95.385702011551487, 29.845524214232423 ], [ -95.387353011573794, 29.845515213569165 ], [ -95.389572012003654, 29.845509213657852 ], [ -95.390047012357755, 29.845504213880719 ], [ -95.390571012964458, 29.845536213432396 ], [ -95.390844012109497, 29.845549213802975 ], [ -95.391283013063401, 29.845550213721953 ], [ -95.391846012846102, 29.845535213830502 ], [ -95.392415013289394, 29.845538213648897 ], [ -95.392679013068516, 29.845533213297511 ], [ -95.392831012839665, 29.845531213403191 ], [ -95.392962013423016, 29.8455292135985 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1278, "Tract": "48201220600", "Area_SqMi": 0.64115290914110112, "total_2009": 913, "total_2010": 933, "total_2011": 881, "total_2012": 974, "total_2013": 1170, "total_2014": 484, "total_2015": 488, "total_2016": 521, "total_2017": 658, "total_2018": 704, "total_2019": 745, "total_2020": 673, "age1": 164, "age2": 433, "age3": 156, "earn1": 87, "earn2": 175, "earn3": 491, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 58, "naics_s05": 31, "naics_s06": 105, "naics_s07": 108, "naics_s08": 346, "naics_s09": 0, "naics_s10": 4, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 88, "naics_s19": 4, "naics_s20": 0, "race1": 573, "race2": 136, "race3": 6, "race4": 26, "race5": 2, "race6": 10, "ethnicity1": 405, "ethnicity2": 348, "edu1": 142, "edu2": 181, "edu3": 180, "edu4": 86, "Shape_Length": 18381.012160194397, "Shape_Area": 17874245.762682885, "total_2021": 706, "total_2022": 753 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.377750008651333, 29.845600214558317 ], [ -95.377711009114748, 29.845497214101322 ], [ -95.377522009035417, 29.845088213784308 ], [ -95.37746900913389, 29.844994214417039 ], [ -95.377341009342729, 29.844748214178296 ], [ -95.377277009036433, 29.844598213698227 ], [ -95.377198008604879, 29.844440214035242 ], [ -95.377150008807945, 29.844305214353852 ], [ -95.377059009301789, 29.844057213798742 ], [ -95.376804009263466, 29.843500213642969 ], [ -95.376383008220856, 29.842607213803721 ], [ -95.376046008318312, 29.841876213988066 ], [ -95.375705008166435, 29.841169213633194 ], [ -95.375580008223778, 29.840831213558094 ], [ -95.375538008479253, 29.840663212975706 ], [ -95.375512008794743, 29.840456213711022 ], [ -95.375509008072598, 29.840251213467564 ], [ -95.375539008361983, 29.839736212850294 ], [ -95.375691007914313, 29.837579212378525 ], [ -95.373221007924968, 29.837615212822751 ], [ -95.372611006982297, 29.837619212830724 ], [ -95.371491007262946, 29.837571213203631 ], [ -95.369329006818646, 29.837592212599002 ], [ -95.36819600596364, 29.837588212930356 ], [ -95.366979005734891, 29.8375962132998 ], [ -95.366089005534278, 29.837603212771342 ], [ -95.365999006076564, 29.837609212732659 ], [ -95.364477005885377, 29.83762721334033 ], [ -95.3615770045418, 29.837625213188208 ], [ -95.361430005029646, 29.837627212852052 ], [ -95.360268004645363, 29.837642213118571 ], [ -95.359791003835085, 29.837561213043998 ], [ -95.359068004178127, 29.837460212881453 ], [ -95.357792004021263, 29.837431213622779 ], [ -95.356935003475172, 29.837433212994785 ], [ -95.356804003574268, 29.837434213349599 ], [ -95.357080003996188, 29.838558213380281 ], [ -95.358234003851706, 29.843332214254328 ], [ -95.358764004143865, 29.845373214963086 ], [ -95.359058004868785, 29.846503215429085 ], [ -95.359356004714513, 29.846451215311376 ], [ -95.359522004207861, 29.846428215156106 ], [ -95.360301005005326, 29.846306214666889 ], [ -95.360553005110788, 29.846288215442719 ], [ -95.360916004600796, 29.846275215363363 ], [ -95.361367004653872, 29.84627321495881 ], [ -95.361807005132263, 29.846286215387288 ], [ -95.362566005307173, 29.846252215102467 ], [ -95.362691005472044, 29.846247215268452 ], [ -95.362764005144456, 29.846247214708175 ], [ -95.364453006154221, 29.846236215217548 ], [ -95.365783006236441, 29.846214214605869 ], [ -95.366806006345271, 29.846205214675305 ], [ -95.367820006711497, 29.846185214518989 ], [ -95.368217006337218, 29.84618221510577 ], [ -95.368336006891511, 29.846196214294881 ], [ -95.368490007151522, 29.84620221500878 ], [ -95.368699006881542, 29.846194214488417 ], [ -95.36886800673301, 29.846177214446136 ], [ -95.369197007088502, 29.846119214305556 ], [ -95.369359007476604, 29.846094214478242 ], [ -95.369956007100626, 29.845937214550858 ], [ -95.370039007668836, 29.84591921483689 ], [ -95.370185007038529, 29.845869214575174 ], [ -95.370411007321167, 29.845813214918735 ], [ -95.370849007301672, 29.845724214084104 ], [ -95.370989007841743, 29.845715214787962 ], [ -95.371273007045758, 29.845683214718342 ], [ -95.37164600793335, 29.845663214404105 ], [ -95.371773008002862, 29.845674214468097 ], [ -95.371885007738683, 29.845683214538266 ], [ -95.372637008288308, 29.845640214285869 ], [ -95.374382008211313, 29.845625214124066 ], [ -95.374459008782736, 29.845623214021817 ], [ -95.37469600843788, 29.845626214265376 ], [ -95.374763008632698, 29.845622214193391 ], [ -95.37570700902296, 29.84561221427597 ], [ -95.375782008369612, 29.845615214130898 ], [ -95.376040008314405, 29.845615214072961 ], [ -95.376107008706057, 29.845619214358869 ], [ -95.376463008385343, 29.84562621410327 ], [ -95.376605008526738, 29.845623214110873 ], [ -95.376733009126795, 29.845616214343597 ], [ -95.376884009398324, 29.845600214548202 ], [ -95.37714200921657, 29.845591213928984 ], [ -95.377604009039288, 29.845587214012408 ], [ -95.377750008651333, 29.845600214558317 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1279, "Tract": "48201230100", "Area_SqMi": 0.52679879786573069, "total_2009": 664, "total_2010": 715, "total_2011": 710, "total_2012": 710, "total_2013": 715, "total_2014": 714, "total_2015": 709, "total_2016": 715, "total_2017": 713, "total_2018": 745, "total_2019": 749, "total_2020": 542, "age1": 35, "age2": 273, "age3": 167, "earn1": 37, "earn2": 59, "earn3": 379, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 3, "naics_s07": 3, "naics_s08": 430, "naics_s09": 0, "naics_s10": 3, "naics_s11": 12, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 6, "naics_s19": 4, "naics_s20": 0, "race1": 161, "race2": 279, "race3": 2, "race4": 30, "race5": 0, "race6": 3, "ethnicity1": 369, "ethnicity2": 106, "edu1": 81, "edu2": 142, "edu3": 154, "edu4": 63, "Shape_Length": 15316.837284542777, "Shape_Area": 14686248.859343048, "total_2021": 448, "total_2022": 475 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.336136997217679, 29.80844320826133 ], [ -95.336260996365127, 29.808267208366473 ], [ -95.336037997102466, 29.808238207825905 ], [ -95.335768996598986, 29.80820320788542 ], [ -95.335651996660047, 29.808188208476938 ], [ -95.335235996984522, 29.808146207836838 ], [ -95.334104996024564, 29.808031208264481 ], [ -95.333988996460349, 29.808024207967826 ], [ -95.33295199555802, 29.808028208127208 ], [ -95.332469995639499, 29.808035207985956 ], [ -95.332083995952857, 29.808041208567669 ], [ -95.331155995019003, 29.808104208118941 ], [ -95.33068299531007, 29.8081552081042 ], [ -95.330390994867955, 29.808187207980087 ], [ -95.328736994484998, 29.808434207981051 ], [ -95.328516995095995, 29.808467207910795 ], [ -95.328254994382661, 29.808506208022688 ], [ -95.32762499491335, 29.80860120864849 ], [ -95.325784994358685, 29.808863208467514 ], [ -95.325108994386781, 29.808943208908101 ], [ -95.324999994000379, 29.808963208172123 ], [ -95.324708993513383, 29.809015208189436 ], [ -95.324233993935621, 29.809077208294468 ], [ -95.324229994205567, 29.809294208466547 ], [ -95.324224993862728, 29.809560208520288 ], [ -95.324238993733331, 29.809711208297781 ], [ -95.324291994051208, 29.813258209889614 ], [ -95.324294994474187, 29.813456209285629 ], [ -95.32432299425497, 29.815402210204724 ], [ -95.324331994516413, 29.815501210106913 ], [ -95.324355994741012, 29.817975210056456 ], [ -95.32436499457323, 29.818381210739954 ], [ -95.324367993952308, 29.818513210742413 ], [ -95.324376993912253, 29.818919210458191 ], [ -95.326567994959817, 29.819713211062364 ], [ -95.327195994902013, 29.819866210344166 ], [ -95.327765995684857, 29.819904210451373 ], [ -95.328715995935838, 29.819904210548938 ], [ -95.328743994951395, 29.819903210717115 ], [ -95.329773996153236, 29.819999211015503 ], [ -95.33478799706306, 29.819896210882956 ], [ -95.335049996772668, 29.819896210315708 ], [ -95.335301996732738, 29.819896210320454 ], [ -95.335500997187367, 29.819896210063789 ], [ -95.335501997358108, 29.819712210460054 ], [ -95.335493996953076, 29.81767721038813 ], [ -95.335462997273197, 29.816559209470736 ], [ -95.33543999681288, 29.815841209655876 ], [ -95.335378996623191, 29.813916209122791 ], [ -95.33532299705675, 29.8134122094995 ], [ -95.335314996627091, 29.813273209388147 ], [ -95.335285997187285, 29.812791208963031 ], [ -95.335252996518406, 29.811590208717455 ], [ -95.335281996426048, 29.81110120827141 ], [ -95.335298996356499, 29.810816208940018 ], [ -95.33534599624241, 29.810318208032069 ], [ -95.335404996240058, 29.810031208234488 ], [ -95.335474996717906, 29.809759208037637 ], [ -95.335519996544491, 29.809623208198882 ], [ -95.335642996762544, 29.809337208449396 ], [ -95.335795996712591, 29.808984207942672 ], [ -95.335928996405059, 29.808767208115931 ], [ -95.336068996799526, 29.808540208437186 ], [ -95.336136997217679, 29.80844320826133 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1280, "Tract": "48201230800", "Area_SqMi": 0.714876239550438, "total_2009": 16, "total_2010": 20, "total_2011": 14, "total_2012": 19, "total_2013": 18, "total_2014": 11, "total_2015": 7, "total_2016": 10, "total_2017": 8, "total_2018": 8, "total_2019": 12, "total_2020": 19, "age1": 2, "age2": 5, "age3": 7, "earn1": 4, "earn2": 4, "earn3": 6, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 10, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 7, "race2": 0, "race3": 0, "race4": 7, "race5": 0, "race6": 0, "ethnicity1": 10, "ethnicity2": 4, "edu1": 6, "edu2": 3, "edu3": 2, "edu4": 1, "Shape_Length": 20866.226447705969, "Shape_Area": 19929526.035754152, "total_2021": 20, "total_2022": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.302070989426596, 29.838672215231938 ], [ -95.302068989235138, 29.8384732151241 ], [ -95.302034989448813, 29.83753721498007 ], [ -95.302033989637053, 29.8366542154454 ], [ -95.302032989523894, 29.835779215064484 ], [ -95.302032989744305, 29.834899215105427 ], [ -95.302031989133624, 29.834012214235429 ], [ -95.298035987697915, 29.834001214336041 ], [ -95.293760986616775, 29.833997215105256 ], [ -95.293749986715582, 29.832673214108254 ], [ -95.293743986630943, 29.831356214641616 ], [ -95.291970986052959, 29.83134221405221 ], [ -95.289644986053816, 29.83133521401448 ], [ -95.288591985383079, 29.831319214498929 ], [ -95.288480985989565, 29.831320214077785 ], [ -95.288475986052347, 29.832933214401958 ], [ -95.288460985269026, 29.834507215440361 ], [ -95.288426985843287, 29.835432215288474 ], [ -95.288436985919304, 29.836110215766876 ], [ -95.288426985661545, 29.838626215852585 ], [ -95.288485985950587, 29.840869216251377 ], [ -95.288485986549816, 29.840895216628262 ], [ -95.28848598641342, 29.8426772165943 ], [ -95.288425985771639, 29.845531217640524 ], [ -95.288430986011434, 29.84632421776616 ], [ -95.288416986432196, 29.848076218207801 ], [ -95.288415986463505, 29.848233217775693 ], [ -95.288399986818092, 29.849363218357013 ], [ -95.288358986363875, 29.850040217899679 ], [ -95.288302986127505, 29.850595218087925 ], [ -95.288256986513403, 29.850909218767477 ], [ -95.288179986888679, 29.851235218069323 ], [ -95.288345986554745, 29.851270218362714 ], [ -95.288628986380616, 29.851364218156796 ], [ -95.288849986325062, 29.851529218386212 ], [ -95.288944986565838, 29.851606218318484 ], [ -95.289044987191559, 29.851751218648559 ], [ -95.289936986587463, 29.850888218473166 ], [ -95.292077987738352, 29.848700217804424 ], [ -95.292265987777384, 29.848529217658388 ], [ -95.293579987547787, 29.847329217849275 ], [ -95.294819988013643, 29.846101216841912 ], [ -95.29526398851344, 29.845683217433802 ], [ -95.297025987980803, 29.843965216454517 ], [ -95.300119989077913, 29.840956216411062 ], [ -95.300476988985963, 29.840609216149208 ], [ -95.301967989862263, 29.839108215828279 ], [ -95.302055989835495, 29.83901921550709 ], [ -95.302070989426596, 29.838672215231938 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1281, "Tract": "48201230500", "Area_SqMi": 1.3358044875108979, "total_2009": 503, "total_2010": 396, "total_2011": 363, "total_2012": 507, "total_2013": 484, "total_2014": 508, "total_2015": 574, "total_2016": 401, "total_2017": 421, "total_2018": 396, "total_2019": 434, "total_2020": 434, "age1": 56, "age2": 160, "age3": 81, "earn1": 36, "earn2": 140, "earn3": 121, "naics_s01": 0, "naics_s02": 8, "naics_s03": 0, "naics_s04": 72, "naics_s05": 5, "naics_s06": 35, "naics_s07": 83, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 13, "naics_s12": 13, "naics_s13": 10, "naics_s14": 6, "naics_s15": 6, "naics_s16": 19, "naics_s17": 0, "naics_s18": 13, "naics_s19": 11, "naics_s20": 0, "race1": 208, "race2": 36, "race3": 7, "race4": 38, "race5": 3, "race6": 5, "ethnicity1": 140, "ethnicity2": 157, "edu1": 80, "edu2": 70, "edu3": 56, "edu4": 35, "Shape_Length": 37361.405245079972, "Shape_Area": 37239942.859574318, "total_2021": 311, "total_2022": 297 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.335606997118703, 29.82702221144033 ], [ -95.335596997095905, 29.825557211267235 ], [ -95.335569997416897, 29.824581211225539 ], [ -95.335582997186506, 29.822296211019285 ], [ -95.33557699722499, 29.82207221118459 ], [ -95.335506997471839, 29.82008621050559 ], [ -95.335307997532652, 29.820534210450116 ], [ -95.33504099737435, 29.821134210457743 ], [ -95.334815997442377, 29.821566210606164 ], [ -95.334546996673808, 29.822083210492444 ], [ -95.334316997100714, 29.822713211222631 ], [ -95.332497996846811, 29.827142212318829 ], [ -95.331641996849427, 29.829237212374267 ], [ -95.33069199655246, 29.831543213002721 ], [ -95.329659996423516, 29.834151213341094 ], [ -95.328356995733728, 29.837369213917686 ], [ -95.327146995456559, 29.840417214504871 ], [ -95.325893995779637, 29.843462215458931 ], [ -95.325702996114416, 29.843927215272249 ], [ -95.324824995154458, 29.846124215926075 ], [ -95.324023995167664, 29.848099216295328 ], [ -95.322506995259886, 29.851825217240801 ], [ -95.322059994768097, 29.852996217649657 ], [ -95.321409995245688, 29.854602217604242 ], [ -95.321343995204487, 29.854765218300614 ], [ -95.320937995191002, 29.855776218330426 ], [ -95.320357994470584, 29.857239218272127 ], [ -95.319886994635823, 29.85841721863202 ], [ -95.319430994323611, 29.859537219083585 ], [ -95.318569994596345, 29.861656219726534 ], [ -95.318071994441482, 29.862906219563616 ], [ -95.318293994790992, 29.862987219786511 ], [ -95.319479995422185, 29.86321821953139 ], [ -95.320488995494514, 29.86337721957517 ], [ -95.32073699512938, 29.863425220273946 ], [ -95.321403995170527, 29.863553219739952 ], [ -95.321637995134367, 29.863691219909786 ], [ -95.321693995330406, 29.863707219663095 ], [ -95.321845995300365, 29.863800219441359 ], [ -95.322091995192736, 29.863811219978064 ], [ -95.322614995632108, 29.863718219862808 ], [ -95.322848995781513, 29.863723219584649 ], [ -95.323340995975627, 29.863861219709516 ], [ -95.323674995938134, 29.864015219841839 ], [ -95.324078996730861, 29.864278219715796 ], [ -95.3245009961812, 29.864416219727353 ], [ -95.324753995957877, 29.864413220197243 ], [ -95.325043996407189, 29.864410220242771 ], [ -95.325339996884907, 29.864355219926285 ], [ -95.325472996606791, 29.864289219504034 ], [ -95.325838997161242, 29.863816219589367 ], [ -95.326475997203715, 29.863118219444807 ], [ -95.32684799673207, 29.862678219531386 ], [ -95.327036996540784, 29.862530219045059 ], [ -95.327761996913523, 29.862161219294922 ], [ -95.328334997696913, 29.861888219334745 ], [ -95.328486996902171, 29.861815218833982 ], [ -95.328625997555903, 29.861787219602803 ], [ -95.328796997606659, 29.861809219137459 ], [ -95.329420997641989, 29.862161219162928 ], [ -95.329685997649705, 29.862265219346032 ], [ -95.330146997905217, 29.862227218845412 ], [ -95.330505997597086, 29.862062219173534 ], [ -95.330638997711105, 29.86186421943551 ], [ -95.330827997747676, 29.86147921880514 ], [ -95.331142998101996, 29.861226218775879 ], [ -95.331533997995322, 29.860967218829803 ], [ -95.331566997635221, 29.860949218994719 ], [ -95.331823998347346, 29.860819219235264 ], [ -95.331988997895991, 29.860778219057355 ], [ -95.332113998371128, 29.86074721933981 ], [ -95.33226599855017, 29.860753219009776 ], [ -95.332404998670469, 29.860798218523115 ], [ -95.332586997804881, 29.860857219313772 ], [ -95.332655997905803, 29.86089021929919 ], [ -95.332931998231899, 29.861024219137281 ], [ -95.333264998068742, 29.861186218769689 ], [ -95.333437998516217, 29.861270218539666 ], [ -95.333600998229826, 29.861349219349258 ], [ -95.333606998480477, 29.861062219354601 ], [ -95.333623998356259, 29.860735218558055 ], [ -95.333623998875453, 29.860450219061839 ], [ -95.33364099841377, 29.860258218312843 ], [ -95.333657998458605, 29.86004521834915 ], [ -95.333686998478115, 29.859576218529433 ], [ -95.333700998352739, 29.859344218800345 ], [ -95.333692998045535, 29.859106218953197 ], [ -95.33382899832921, 29.857241218102587 ], [ -95.333846998543123, 29.856773217931906 ], [ -95.333847998422627, 29.856279217955613 ], [ -95.333909997954905, 29.855254218078517 ], [ -95.333966998330823, 29.851539217002564 ], [ -95.333967998120954, 29.851384216745167 ], [ -95.33395999832176, 29.851282216959252 ], [ -95.333942997666369, 29.85077621712378 ], [ -95.333813998530715, 29.848928216643785 ], [ -95.333795998381632, 29.848725216485359 ], [ -95.333752997914445, 29.848463216161313 ], [ -95.333771997626656, 29.846925215756539 ], [ -95.33372699764648, 29.844559215504283 ], [ -95.333720997704518, 29.844228215637397 ], [ -95.3337269974501, 29.843813215228533 ], [ -95.333669997309116, 29.841028214767128 ], [ -95.333654997540506, 29.840764214391719 ], [ -95.333639997256668, 29.840525214785654 ], [ -95.333621997764183, 29.839279214243753 ], [ -95.333623997768058, 29.838902214828725 ], [ -95.33361599773032, 29.838484214189112 ], [ -95.33365399726658, 29.837725214261553 ], [ -95.33368499799569, 29.837386214098455 ], [ -95.333712997090871, 29.837163214161585 ], [ -95.333811997748384, 29.83662121368365 ], [ -95.333880997968166, 29.836330213812388 ], [ -95.333992997161729, 29.83584421356586 ], [ -95.334035997140148, 29.835671213664416 ], [ -95.334727997854529, 29.832396212651762 ], [ -95.334877997601296, 29.831667212427945 ], [ -95.33498299729726, 29.83116521320505 ], [ -95.335339998028275, 29.829538212476308 ], [ -95.335393997171863, 29.829217212381423 ], [ -95.335439997140341, 29.828909212134246 ], [ -95.335578998041115, 29.827716212435014 ], [ -95.335591997062735, 29.827201211847228 ], [ -95.335606997118703, 29.82702221144033 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1282, "Tract": "48201230600", "Area_SqMi": 0.83633185231653262, "total_2009": 742, "total_2010": 719, "total_2011": 789, "total_2012": 491, "total_2013": 575, "total_2014": 626, "total_2015": 209, "total_2016": 563, "total_2017": 574, "total_2018": 563, "total_2019": 518, "total_2020": 508, "age1": 99, "age2": 312, "age3": 186, "earn1": 378, "earn2": 175, "earn3": 44, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 56, "naics_s08": 3, "naics_s09": 0, "naics_s10": 6, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 419, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 76, "naics_s19": 25, "naics_s20": 0, "race1": 131, "race2": 443, "race3": 5, "race4": 16, "race5": 0, "race6": 2, "ethnicity1": 514, "ethnicity2": 83, "edu1": 116, "edu2": 171, "edu3": 153, "edu4": 58, "Shape_Length": 25757.049625275413, "Shape_Area": 23315500.646314103, "total_2021": 587, "total_2022": 597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.325702996114416, 29.843927215272249 ], [ -95.325515995579394, 29.843879215554779 ], [ -95.32508599596693, 29.843767215766015 ], [ -95.324738995470142, 29.843728215875316 ], [ -95.324453995309426, 29.843728215701482 ], [ -95.321583995137374, 29.843781215592113 ], [ -95.319037993553849, 29.843808215928444 ], [ -95.319011993499075, 29.842798215531467 ], [ -95.31899399354225, 29.841781215846886 ], [ -95.318948994251059, 29.840537215481657 ], [ -95.318012994099732, 29.840553215040426 ], [ -95.31661799321256, 29.840580215076873 ], [ -95.316085993323696, 29.840592215616585 ], [ -95.315322992681999, 29.840598215573319 ], [ -95.314828992927019, 29.840609215233375 ], [ -95.314110992330029, 29.840624214992374 ], [ -95.31321899192082, 29.840637215697377 ], [ -95.312704992540048, 29.840640215287134 ], [ -95.312180992487271, 29.84064721559238 ], [ -95.311761991841735, 29.840658215584472 ], [ -95.310822991648337, 29.840684215781788 ], [ -95.309680991115584, 29.840679215217474 ], [ -95.308622991639339, 29.840698215353303 ], [ -95.307138991191181, 29.84070821546867 ], [ -95.305773990981578, 29.840711215971233 ], [ -95.304551990310344, 29.840728216078759 ], [ -95.303330990216523, 29.840740215656034 ], [ -95.302105989869915, 29.840748215985993 ], [ -95.302093989395473, 29.839452215147105 ], [ -95.302055989835495, 29.83901921550709 ], [ -95.301967989862263, 29.839108215828279 ], [ -95.300476988985963, 29.840609216149208 ], [ -95.300119989077913, 29.840956216411062 ], [ -95.297025987980803, 29.843965216454517 ], [ -95.29526398851344, 29.845683217433802 ], [ -95.294819988013643, 29.846101216841912 ], [ -95.293579987547787, 29.847329217849275 ], [ -95.292265987777384, 29.848529217658388 ], [ -95.292077987738352, 29.848700217804424 ], [ -95.294163987637234, 29.848664218183416 ], [ -95.294477987946408, 29.84858321763387 ], [ -95.295581988249126, 29.848548217559582 ], [ -95.296638988173214, 29.848539217867135 ], [ -95.297712988441091, 29.848524217915834 ], [ -95.298800989446775, 29.848512217991161 ], [ -95.299866988895801, 29.848507217076115 ], [ -95.300936989411611, 29.848493217434108 ], [ -95.302020990265973, 29.848494217488007 ], [ -95.302157989717386, 29.848494217355977 ], [ -95.30344999020987, 29.84846921773217 ], [ -95.304671990366813, 29.848430217401301 ], [ -95.305895990603332, 29.848418217149799 ], [ -95.306750991101566, 29.848405217423732 ], [ -95.307272991247473, 29.848394216793277 ], [ -95.308750991920959, 29.848372216771093 ], [ -95.30996699202079, 29.848369216874659 ], [ -95.31094299182044, 29.848359217229351 ], [ -95.311876991902309, 29.848351217506945 ], [ -95.312820992652107, 29.848335216995423 ], [ -95.313835992973409, 29.848299216840044 ], [ -95.314834992926663, 29.848245217212177 ], [ -95.316240993359344, 29.848223217094795 ], [ -95.319123994502149, 29.848181217083241 ], [ -95.321674994492028, 29.848146216327109 ], [ -95.323812995743722, 29.848103216602517 ], [ -95.324023995167664, 29.848099216295328 ], [ -95.324824995154458, 29.846124215926075 ], [ -95.325702996114416, 29.843927215272249 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1283, "Tract": "48201230700", "Area_SqMi": 1.0416506707520665, "total_2009": 176, "total_2010": 232, "total_2011": 275, "total_2012": 182, "total_2013": 215, "total_2014": 232, "total_2015": 201, "total_2016": 235, "total_2017": 223, "total_2018": 229, "total_2019": 219, "total_2020": 201, "age1": 70, "age2": 78, "age3": 37, "earn1": 69, "earn2": 97, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 2, "naics_s06": 0, "naics_s07": 31, "naics_s08": 2, "naics_s09": 0, "naics_s10": 3, "naics_s11": 5, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 107, "naics_s19": 6, "naics_s20": 0, "race1": 126, "race2": 33, "race3": 2, "race4": 20, "race5": 0, "race6": 4, "ethnicity1": 107, "ethnicity2": 78, "edu1": 34, "edu2": 38, "edu3": 22, "edu4": 21, "Shape_Length": 29374.076896613922, "Shape_Area": 29039437.89762703, "total_2021": 190, "total_2022": 185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.324023995167664, 29.848099216295328 ], [ -95.323812995743722, 29.848103216602517 ], [ -95.321674994492028, 29.848146216327109 ], [ -95.319123994502149, 29.848181217083241 ], [ -95.316240993359344, 29.848223217094795 ], [ -95.314834992926663, 29.848245217212177 ], [ -95.313835992973409, 29.848299216840044 ], [ -95.312820992652107, 29.848335216995423 ], [ -95.311876991902309, 29.848351217506945 ], [ -95.31094299182044, 29.848359217229351 ], [ -95.30996699202079, 29.848369216874659 ], [ -95.308750991920959, 29.848372216771093 ], [ -95.307272991247473, 29.848394216793277 ], [ -95.306750991101566, 29.848405217423732 ], [ -95.305895990603332, 29.848418217149799 ], [ -95.304671990366813, 29.848430217401301 ], [ -95.30344999020987, 29.84846921773217 ], [ -95.302157989717386, 29.848494217355977 ], [ -95.302020990265973, 29.848494217488007 ], [ -95.300936989411611, 29.848493217434108 ], [ -95.299866988895801, 29.848507217076115 ], [ -95.298800989446775, 29.848512217991161 ], [ -95.297712988441091, 29.848524217915834 ], [ -95.296638988173214, 29.848539217867135 ], [ -95.295581988249126, 29.848548217559582 ], [ -95.294477987946408, 29.84858321763387 ], [ -95.294163987637234, 29.848664218183416 ], [ -95.292077987738352, 29.848700217804424 ], [ -95.289936986587463, 29.850888218473166 ], [ -95.289044987191559, 29.851751218648559 ], [ -95.289183987149428, 29.851952218590714 ], [ -95.289536987055129, 29.852194218227538 ], [ -95.289776986652726, 29.85239721822785 ], [ -95.290060987377672, 29.852469218500783 ], [ -95.290255987368013, 29.852469218993775 ], [ -95.290432987110492, 29.852436218310807 ], [ -95.290703987592238, 29.852447218660927 ], [ -95.291006987656601, 29.852491218279905 ], [ -95.291277987691885, 29.852513219084731 ], [ -95.291523987757913, 29.852491218399724 ], [ -95.291832987744243, 29.852348218915846 ], [ -95.291996987447419, 29.852238218137014 ], [ -95.292242987985773, 29.851930218894282 ], [ -95.292570988019222, 29.851678218666073 ], [ -95.292974987351741, 29.851540218485749 ], [ -95.293340987933419, 29.851491218173209 ], [ -95.293662987822955, 29.851524218107098 ], [ -95.294021987558665, 29.851683218437024 ], [ -95.29429998829049, 29.851903218353169 ], [ -95.294576988005701, 29.852068217975621 ], [ -95.294936988647166, 29.852398218059488 ], [ -95.295301988510133, 29.852656218195992 ], [ -95.295730988100402, 29.852893218927566 ], [ -95.29621698900938, 29.853250218586389 ], [ -95.296802988689137, 29.853591218398321 ], [ -95.297225989238115, 29.853877218989677 ], [ -95.297503989428108, 29.853987219129394 ], [ -95.297963988884263, 29.853971218740966 ], [ -95.298285988836241, 29.853855218933273 ], [ -95.298575989349033, 29.853767218536131 ], [ -95.298833989732813, 29.85373421896481 ], [ -95.299344989071017, 29.853569218454716 ], [ -95.299704989338764, 29.85328321810967 ], [ -95.299931989238914, 29.853146218876198 ], [ -95.300227989430283, 29.853086218495488 ], [ -95.300366989454346, 29.853087218487588 ], [ -95.300498989344135, 29.85308921856106 ], [ -95.300745990253134, 29.853091218550183 ], [ -95.301019990118533, 29.853132218280653 ], [ -95.30118098947672, 29.853157218360366 ], [ -95.301508989474357, 29.853223218759947 ], [ -95.301848989769525, 29.853212218506158 ], [ -95.302681989975056, 29.853086218141915 ], [ -95.30309799001617, 29.853042218100168 ], [ -95.303400990921602, 29.853053218161826 ], [ -95.303860990538695, 29.853168218471779 ], [ -95.304075990365732, 29.853289218700851 ], [ -95.304119990721162, 29.853415218210667 ], [ -95.304157990642267, 29.853668218745664 ], [ -95.304056990826282, 29.854053218104823 ], [ -95.303974990160086, 29.854433218473087 ], [ -95.303955991128745, 29.854702218460538 ], [ -95.304056990967126, 29.854993218368161 ], [ -95.304365990663428, 29.855505218844023 ], [ -95.304712991348495, 29.855846219047159 ], [ -95.305248991151402, 29.856302218541646 ], [ -95.30546999095678, 29.856406219267893 ], [ -95.305765991544476, 29.856544218687144 ], [ -95.30622099093695, 29.856714218525497 ], [ -95.306377991482606, 29.856797218635265 ], [ -95.306478991872766, 29.856984218588863 ], [ -95.306529991300806, 29.857484219464222 ], [ -95.306674991104998, 29.857929219242305 ], [ -95.306939992005027, 29.858292219290476 ], [ -95.30723599161928, 29.858430219666758 ], [ -95.307500991329377, 29.858474219128599 ], [ -95.307664991595118, 29.858452219346098 ], [ -95.30779699161225, 29.858419219708189 ], [ -95.30798699177538, 29.858336218904281 ], [ -95.308206991383472, 29.858226219218697 ], [ -95.308534992095986, 29.858100218755343 ], [ -95.308607991654711, 29.858086219262429 ], [ -95.308837992085842, 29.858045219265083 ], [ -95.309165991827584, 29.858050218696537 ], [ -95.309348992020446, 29.858155218834128 ], [ -95.309764992307706, 29.858292218828716 ], [ -95.309928991950542, 29.858248219485954 ], [ -95.310023992656198, 29.858166219138219 ], [ -95.310301992594447, 29.858061219251546 ], [ -95.310553992556905, 29.858017219024163 ], [ -95.310893992224052, 29.858023219501941 ], [ -95.311341992787931, 29.857990219509063 ], [ -95.311859992850756, 29.858056218834005 ], [ -95.31234499344545, 29.858303218969926 ], [ -95.312931992986947, 29.858820219417279 ], [ -95.313537993335771, 29.859447219435165 ], [ -95.313846992898547, 29.859826219486063 ], [ -95.314180993891853, 29.86019421909759 ], [ -95.314483993154539, 29.860579219505976 ], [ -95.314716993761806, 29.860821219366784 ], [ -95.315063993645325, 29.861019219586431 ], [ -95.315707994042768, 29.861464219954236 ], [ -95.315845993936506, 29.861651220015176 ], [ -95.315927993900189, 29.861844219869983 ], [ -95.315991994309201, 29.862157219439482 ], [ -95.316092994090468, 29.862328219810088 ], [ -95.316672993940443, 29.862514219487519 ], [ -95.316975993944141, 29.862531219540799 ], [ -95.317303994389576, 29.862624219874366 ], [ -95.317769994515331, 29.86279522025454 ], [ -95.318071994441482, 29.862906219563616 ], [ -95.318569994596345, 29.861656219726534 ], [ -95.319430994323611, 29.859537219083585 ], [ -95.319886994635823, 29.85841721863202 ], [ -95.320357994470584, 29.857239218272127 ], [ -95.320937995191002, 29.855776218330426 ], [ -95.321343995204487, 29.854765218300614 ], [ -95.321409995245688, 29.854602217604242 ], [ -95.322059994768097, 29.852996217649657 ], [ -95.322506995259886, 29.851825217240801 ], [ -95.324023995167664, 29.848099216295328 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1284, "Tract": "48167725200", "Area_SqMi": 0.23896118397052959, "total_2009": 231, "total_2010": 265, "total_2011": 312, "total_2012": 306, "total_2013": 332, "total_2014": 293, "total_2015": 284, "total_2016": 229, "total_2017": 210, "total_2018": 202, "total_2019": 226, "total_2020": 242, "age1": 60, "age2": 110, "age3": 51, "earn1": 88, "earn2": 82, "earn3": 51, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 6, "naics_s06": 3, "naics_s07": 47, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 49, "naics_s17": 0, "naics_s18": 109, "naics_s19": 5, "naics_s20": 0, "race1": 153, "race2": 42, "race3": 3, "race4": 17, "race5": 0, "race6": 6, "ethnicity1": 154, "ethnicity2": 67, "edu1": 23, "edu2": 49, "edu3": 50, "edu4": 39, "Shape_Length": 18912.69580973273, "Shape_Area": 6661828.8229445312, "total_2021": 227, "total_2022": 221 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.830927844325373, 29.289880118103397 ], [ -94.830752843948389, 29.289335117288228 ], [ -94.830700844571709, 29.289173117715176 ], [ -94.830586843869483, 29.28889211758284 ], [ -94.830434844232968, 29.288471117370339 ], [ -94.830275844356748, 29.288030117428388 ], [ -94.830131843768157, 29.287603117028642 ], [ -94.829984843691491, 29.287167117366987 ], [ -94.829836843810497, 29.286729116999492 ], [ -94.82979084422017, 29.286593117405385 ], [ -94.829674844131844, 29.286307117576857 ], [ -94.828916844200421, 29.286503117585823 ], [ -94.828581844004106, 29.286593117202607 ], [ -94.828156843964123, 29.286707117256622 ], [ -94.827423843734763, 29.286899117462248 ], [ -94.827072843097369, 29.286994117655894 ], [ -94.826455843287647, 29.287144117513634 ], [ -94.8262888426937, 29.287187117026505 ], [ -94.825695842940988, 29.287341117742827 ], [ -94.82515584337574, 29.287491117636677 ], [ -94.823995842809211, 29.287769117604729 ], [ -94.822856842511854, 29.28808511740764 ], [ -94.822573841766953, 29.287228117533999 ], [ -94.822348841786578, 29.287270117761508 ], [ -94.821741842459829, 29.287444117637076 ], [ -94.821419842280264, 29.287507117509662 ], [ -94.821723842479713, 29.28840111782722 ], [ -94.82186584174471, 29.288817117994348 ], [ -94.822012842119221, 29.289251117673537 ], [ -94.822090842502746, 29.289482117875099 ], [ -94.822167842346985, 29.289704118199154 ], [ -94.822306842194536, 29.290109118562729 ], [ -94.822466842669186, 29.290572118625096 ], [ -94.822608842775992, 29.29098811861909 ], [ -94.822107842487583, 29.291130118061179 ], [ -94.821461842498067, 29.291290118557907 ], [ -94.821200842441371, 29.291354118586021 ], [ -94.820313841512487, 29.291583118931669 ], [ -94.82010284156766, 29.291637118767134 ], [ -94.819188841562053, 29.291884118905067 ], [ -94.818036841040623, 29.292194118893914 ], [ -94.817884841430399, 29.291750118964089 ], [ -94.817740840623131, 29.291329118144699 ], [ -94.817139841297376, 29.291479118301393 ], [ -94.816608840789698, 29.291612118806295 ], [ -94.816301840397927, 29.290747118711518 ], [ -94.816157840752595, 29.290322118785827 ], [ -94.815717840941346, 29.289016118462619 ], [ -94.815277840358505, 29.289133117998176 ], [ -94.813414839637986, 29.289624118322447 ], [ -94.813639839585974, 29.290331118799184 ], [ -94.813694840226347, 29.290482118903771 ], [ -94.81401383972451, 29.291346118250729 ], [ -94.81409684051178, 29.291570118748073 ], [ -94.814169840098842, 29.291787118390261 ], [ -94.814316840313879, 29.292224118557854 ], [ -94.813156840117557, 29.29251011939126 ], [ -94.812008839880164, 29.292818118826776 ], [ -94.810902839428763, 29.29311811902755 ], [ -94.811189839251895, 29.293980119697856 ], [ -94.81133783936815, 29.294423119271364 ], [ -94.811517839446353, 29.294964119326441 ], [ -94.812666839732714, 29.294668119109904 ], [ -94.813806840612855, 29.29437411915762 ], [ -94.814945840952007, 29.294081119299879 ], [ -94.816086840590529, 29.293779119283922 ], [ -94.817223841598505, 29.293479118739945 ], [ -94.818407841698502, 29.293166118920833 ], [ -94.819530841742278, 29.292868118684936 ], [ -94.820652842354619, 29.292571118906434 ], [ -94.821773842175432, 29.292274118255033 ], [ -94.822024842697147, 29.292207118560654 ], [ -94.822939842614673, 29.291968118366206 ], [ -94.824078842833728, 29.291671118109875 ], [ -94.825225842756183, 29.291371118269179 ], [ -94.826371843707861, 29.291071118130553 ], [ -94.827509843862458, 29.29077311795664 ], [ -94.828651843589526, 29.290475117807389 ], [ -94.829791844317398, 29.290177117797544 ], [ -94.830927844325373, 29.289880118103397 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1285, "Tract": "48167723700", "Area_SqMi": 2.4354844818799664, "total_2009": 126, "total_2010": 105, "total_2011": 124, "total_2012": 88, "total_2013": 116, "total_2014": 128, "total_2015": 108, "total_2016": 102, "total_2017": 113, "total_2018": 112, "total_2019": 111, "total_2020": 79, "age1": 22, "age2": 48, "age3": 26, "earn1": 36, "earn2": 41, "earn3": 19, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 10, "naics_s05": 0, "naics_s06": 3, "naics_s07": 30, "naics_s08": 10, "naics_s09": 1, "naics_s10": 0, "naics_s11": 4, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 30, "naics_s19": 5, "naics_s20": 0, "race1": 75, "race2": 21, "race3": 0, "race4": 0, "race5": 0, "race6": 0, "ethnicity1": 74, "ethnicity2": 22, "edu1": 21, "edu2": 14, "edu3": 29, "edu4": 10, "Shape_Length": 57260.638976550887, "Shape_Area": 67897138.981463388, "total_2021": 101, "total_2022": 96 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.015840894453106, 29.349317123927079 ], [ -95.016180894639376, 29.348384123830172 ], [ -95.015266893876685, 29.348112124170306 ], [ -95.014719894464392, 29.347944124296834 ], [ -95.013842893574122, 29.347689124075131 ], [ -95.013725894081318, 29.347655123793494 ], [ -95.012957894022691, 29.3474161237543 ], [ -95.011959893205926, 29.347102123388737 ], [ -95.011713893287805, 29.347037123703558 ], [ -95.011082893262596, 29.346842123652703 ], [ -95.010048893153524, 29.346528123979351 ], [ -95.009928893325153, 29.346489123644485 ], [ -95.007826892416276, 29.345854123551284 ], [ -95.00729889190589, 29.345702123836165 ], [ -95.006491892465377, 29.345447123821319 ], [ -95.004671891456098, 29.344915123747452 ], [ -95.004570891245734, 29.344885123507996 ], [ -95.003761891682572, 29.34464312340355 ], [ -95.002374891315739, 29.344205123945631 ], [ -95.00048088993708, 29.343640123625327 ], [ -94.99907989031145, 29.343222123278974 ], [ -94.998616889752029, 29.343092123826302 ], [ -94.998226890199163, 29.34296212370435 ], [ -94.997384889399484, 29.342719123087956 ], [ -94.996542889058162, 29.342459123749336 ], [ -94.995445888757828, 29.342126123555769 ], [ -94.994514888262756, 29.34183712293752 ], [ -94.992964887972448, 29.341381123425556 ], [ -94.992117887741543, 29.341130123604799 ], [ -94.991217887774184, 29.340848122986078 ], [ -94.989207887614938, 29.340250122867609 ], [ -94.987165886804007, 29.339634123287315 ], [ -94.986228886698569, 29.339343123293048 ], [ -94.977277884172679, 29.336656122437063 ], [ -94.972347882288588, 29.33515712303387 ], [ -94.971844882341529, 29.335003122367471 ], [ -94.970748882298309, 29.334669122605959 ], [ -94.969348882488248, 29.334243122135184 ], [ -94.966200880968898, 29.333296122643379 ], [ -94.965168880621349, 29.332969122841181 ], [ -94.964825880422239, 29.332861122797713 ], [ -94.964758880709851, 29.332839122547139 ], [ -94.964138880634394, 29.332649122803684 ], [ -94.963856880298678, 29.332562122196208 ], [ -94.963110880697698, 29.332393122358969 ], [ -94.962633879676218, 29.332331122278138 ], [ -94.962158880511282, 29.332244122385053 ], [ -94.961495879910387, 29.332194122275691 ], [ -94.960383879948338, 29.332169122213852 ], [ -94.958108879120047, 29.33210612260849 ], [ -94.952824877319685, 29.332026122794609 ], [ -94.951866877534201, 29.332004122518363 ], [ -94.950990876704964, 29.332000122294385 ], [ -94.950170877129864, 29.331991122513827 ], [ -94.949141876984569, 29.331964122327587 ], [ -94.948268876388269, 29.331921122402346 ], [ -94.946969875908209, 29.331836122624647 ], [ -94.946239875709239, 29.331781122732401 ], [ -94.945775876138498, 29.331760122641491 ], [ -94.945116875678323, 29.331730122756429 ], [ -94.945074875204796, 29.332006122714521 ], [ -94.945009875263978, 29.332372122840557 ], [ -94.944980875357729, 29.33272912318985 ], [ -94.944972875908547, 29.332991123057024 ], [ -94.944966875864964, 29.333099122844512 ], [ -94.944983876139148, 29.333380122970283 ], [ -94.945063875645118, 29.333720122806952 ], [ -94.94513287561314, 29.334117123286919 ], [ -94.945278876068045, 29.33445912344169 ], [ -94.945463875542956, 29.334786123067659 ], [ -94.945777875437216, 29.335158123358585 ], [ -94.946083876504687, 29.335496123772934 ], [ -94.946455875832172, 29.335837123557841 ], [ -94.946772876501058, 29.336135124024963 ], [ -94.946982876136929, 29.336289123339203 ], [ -94.947230876723793, 29.336437123309313 ], [ -94.947660876373575, 29.336584124056326 ], [ -94.947853876083499, 29.336650123354129 ], [ -94.948018876890188, 29.336706123390289 ], [ -94.949588876521361, 29.337255124226466 ], [ -94.949680876870602, 29.337285123829506 ], [ -94.950644876945105, 29.33759412406117 ], [ -94.951514877615224, 29.33780712366022 ], [ -94.951658877231708, 29.337818123653673 ], [ -94.951797877610346, 29.337831124211021 ], [ -94.952088877961657, 29.337849123645277 ], [ -94.952445877258597, 29.337875124128182 ], [ -94.952615877408334, 29.337880124195166 ], [ -94.952664878180187, 29.337878123829515 ], [ -94.952847877748056, 29.337872123917066 ], [ -94.953010877730804, 29.337867124196666 ], [ -94.953167878017155, 29.337861123409361 ], [ -94.953428877895135, 29.337874123632567 ], [ -94.953671877951535, 29.337892123685307 ], [ -94.953846878355819, 29.337892123947487 ], [ -94.954056877941596, 29.337873123908906 ], [ -94.954219878507558, 29.337863123628459 ], [ -94.954393878628466, 29.337853123528639 ], [ -94.954528878745876, 29.337831123586042 ], [ -94.954673878282705, 29.337820123706759 ], [ -94.954935878122228, 29.337813124194639 ], [ -94.955075878685633, 29.337797123995557 ], [ -94.955346878594298, 29.337782123686303 ], [ -94.955567878476941, 29.337781123607765 ], [ -94.955714879101151, 29.337766124032832 ], [ -94.95579187827316, 29.337785123814466 ], [ -94.955908878555604, 29.337805123856381 ], [ -94.956043879051123, 29.337825124056486 ], [ -94.956276878345577, 29.337852123751013 ], [ -94.956392879017002, 29.337905123961743 ], [ -94.956486878711459, 29.337993123618844 ], [ -94.956569878896175, 29.338039124072001 ], [ -94.95671587936269, 29.338121123632888 ], [ -94.956809879281394, 29.338226123780231 ], [ -94.956845878468712, 29.338279124247205 ], [ -94.956893879234514, 29.338331124180339 ], [ -94.956939878701149, 29.338384123398701 ], [ -94.957019878833847, 29.338430123831202 ], [ -94.957035879360504, 29.33843912349338 ], [ -94.957131879007235, 29.338458124018722 ], [ -94.95724587881142, 29.338547123678293 ], [ -94.957418878789184, 29.33862112416449 ], [ -94.957514878898436, 29.338676123881541 ], [ -94.957689878822237, 29.338698124286864 ], [ -94.95784387949675, 29.338752123693084 ], [ -94.957976879758476, 29.338842123577592 ], [ -94.958147879069386, 29.338935123504143 ], [ -94.958242879602025, 29.339023124167287 ], [ -94.958450879744433, 29.339092123572598 ], [ -94.958606879152981, 29.339188123730015 ], [ -94.958719879396128, 29.339277124283168 ], [ -94.958813879580433, 29.339381124359512 ], [ -94.958869879402528, 29.33943512366179 ], [ -94.95892087901791, 29.339641123821831 ], [ -94.958958879395382, 29.339678124329687 ], [ -94.959070879831543, 29.339799123867632 ], [ -94.95918487916768, 29.339872124099777 ], [ -94.959242879139893, 29.339906124227678 ], [ -94.959394879200261, 29.339999123977503 ], [ -94.959536879505436, 29.340155124214288 ], [ -94.95997987955225, 29.340155124266836 ], [ -94.960431880111059, 29.339822123741698 ], [ -94.960706879853987, 29.339056123747721 ], [ -94.960979880241595, 29.33908812351001 ], [ -94.961209879659194, 29.339232123555799 ], [ -94.961160880036203, 29.339763124342632 ], [ -94.961360879702696, 29.339917124194098 ], [ -94.961575880408489, 29.339901123863296 ], [ -94.961607880297592, 29.339901123664905 ], [ -94.961681880316135, 29.33990112437009 ], [ -94.961787880349604, 29.339866123941754 ], [ -94.961874880439524, 29.339842123851149 ], [ -94.961889880369412, 29.339838124063728 ], [ -94.961941880402975, 29.339824123664918 ], [ -94.961959880435202, 29.339818123663406 ], [ -94.962048880660149, 29.339770123900124 ], [ -94.962060880290664, 29.339761123584406 ], [ -94.962259880547492, 29.339657123607555 ], [ -94.962461880319765, 29.339587124318349 ], [ -94.962575879950208, 29.33954812376103 ], [ -94.96269488034072, 29.339520123996802 ], [ -94.962746880588014, 29.339508124017431 ], [ -94.962911880699977, 29.339473123960431 ], [ -94.962981880114867, 29.339514124179253 ], [ -94.963016880748967, 29.339537124298005 ], [ -94.963025880221878, 29.339542123925863 ], [ -94.963021880391878, 29.339553124227589 ], [ -94.963008880150042, 29.339595124270044 ], [ -94.962996880958741, 29.339635124087224 ], [ -94.962980880882597, 29.339678124005047 ], [ -94.962977880146966, 29.339747123920453 ], [ -94.962855880575844, 29.339881123659971 ], [ -94.962751880920564, 29.340048123659844 ], [ -94.962730880227724, 29.34013812365599 ], [ -94.962682880631093, 29.340286123844429 ], [ -94.962562880161727, 29.340384123938886 ], [ -94.962535880882854, 29.340554123726289 ], [ -94.962606880328252, 29.340762124113937 ], [ -94.962621880717435, 29.340848124097139 ], [ -94.962772880879015, 29.341003124512465 ], [ -94.962903880174977, 29.341132124164513 ], [ -94.962995880807483, 29.341289123862456 ], [ -94.963155880424779, 29.341349124522996 ], [ -94.963187880782428, 29.341361124644493 ], [ -94.963300880232197, 29.341376124294687 ], [ -94.963316881169064, 29.3413791246386 ], [ -94.963362880582466, 29.341385124461727 ], [ -94.963390880347802, 29.341403123927591 ], [ -94.963413881171377, 29.341422124189695 ], [ -94.963446880722401, 29.341456124455654 ], [ -94.963492881158572, 29.341491123841021 ], [ -94.963542880913622, 29.3415171245002 ], [ -94.963612881226268, 29.341528124417586 ], [ -94.963673880568734, 29.341531124502762 ], [ -94.963744881152437, 29.341535124108997 ], [ -94.963886880517819, 29.341521124285972 ], [ -94.963898881299428, 29.341520124003541 ], [ -94.963977880682307, 29.341526124201852 ], [ -94.964117880750123, 29.341538124449105 ], [ -94.964238881302649, 29.341530124125843 ], [ -94.964292880490902, 29.34152612455863 ], [ -94.964396881134547, 29.34150812454607 ], [ -94.9645028809731, 29.341485124441046 ], [ -94.964676880832911, 29.341448124567869 ], [ -94.964814880783422, 29.341421124543157 ], [ -94.964961880857061, 29.341397124071246 ], [ -94.965033880806843, 29.341397123793264 ], [ -94.965232880906839, 29.341298123901453 ], [ -94.965416880958159, 29.341206124078596 ], [ -94.965544881306741, 29.341142123674292 ], [ -94.965683881717496, 29.34107212406542 ], [ -94.965841881576978, 29.341009124362252 ], [ -94.966038880882095, 29.340847124202739 ], [ -94.966240881239656, 29.340584124107814 ], [ -94.966286881678315, 29.340483124343766 ], [ -94.966317881215261, 29.340432124149068 ], [ -94.966395881398583, 29.340299124178824 ], [ -94.966482881278623, 29.340328123840969 ], [ -94.966521881680762, 29.340348123670736 ], [ -94.966597881690333, 29.340396124362005 ], [ -94.966793881144369, 29.340460124219984 ], [ -94.966931881411497, 29.340522124151072 ], [ -94.966984881171726, 29.340524124343318 ], [ -94.967116881293208, 29.34055812408771 ], [ -94.967220881824147, 29.34061012440629 ], [ -94.967297881435655, 29.340665123995141 ], [ -94.967372881284547, 29.340714124147308 ], [ -94.96740088153544, 29.340732123675576 ], [ -94.967519881423101, 29.340774123888355 ], [ -94.967617881654903, 29.340799124277215 ], [ -94.967710882131684, 29.340815123756339 ], [ -94.967764882166065, 29.340824123865843 ], [ -94.967776881957008, 29.340832123720482 ], [ -94.967912881591573, 29.340872123787399 ], [ -94.968207881431383, 29.340912124367364 ], [ -94.968628881634942, 29.340759123675021 ], [ -94.968643882084592, 29.340726123612182 ], [ -94.968770882052269, 29.340668123707868 ], [ -94.968964882161558, 29.340539123626023 ], [ -94.96908888226794, 29.340370124025025 ], [ -94.969122882024791, 29.340282123890585 ], [ -94.96914188238803, 29.34023312423534 ], [ -94.969179882449396, 29.340133124182039 ], [ -94.9692368823994, 29.339843123676744 ], [ -94.969272882658501, 29.33962412355541 ], [ -94.969378881745584, 29.339338124005607 ], [ -94.969444881948135, 29.33929612375108 ], [ -94.969537881886239, 29.339164123226791 ], [ -94.96960688183438, 29.33910912399719 ], [ -94.969654882407667, 29.33904612314387 ], [ -94.969731882159351, 29.338992123900169 ], [ -94.969831881830459, 29.338992123604498 ], [ -94.97011988211348, 29.338912123100112 ], [ -94.970402882807278, 29.33893612372178 ], [ -94.970623882421805, 29.338944123519713 ], [ -94.970740882589325, 29.339071123372275 ], [ -94.970783882630883, 29.339118123273686 ], [ -94.970815882267914, 29.339152123081551 ], [ -94.970800882481043, 29.339370123561995 ], [ -94.970790882051261, 29.339440123738825 ], [ -94.970751882600524, 29.339664123868108 ], [ -94.970743882279464, 29.339699124090192 ], [ -94.970738882396574, 29.339712124002848 ], [ -94.970654882671667, 29.339853124067762 ], [ -94.97062988226449, 29.339940123315834 ], [ -94.970626882040222, 29.34000612399468 ], [ -94.97065488206087, 29.340067123734702 ], [ -94.970575882325889, 29.34036812423469 ], [ -94.970767882295547, 29.34070412430059 ], [ -94.971106882690648, 29.340740124003371 ], [ -94.971360882722067, 29.34080112394836 ], [ -94.971625882559309, 29.340864123973024 ], [ -94.971675883282273, 29.340858123692563 ], [ -94.972143882834544, 29.340816124277008 ], [ -94.972671883411209, 29.340784124074389 ], [ -94.973199883148752, 29.340880124031969 ], [ -94.973679882951473, 29.340848123839205 ], [ -94.974143883482199, 29.340896123596728 ], [ -94.974447883304165, 29.341120124126167 ], [ -94.974607883372897, 29.341392124006966 ], [ -94.974624884039784, 29.341743124357336 ], [ -94.974512883593903, 29.342223123882636 ], [ -94.974384883272009, 29.342639124319152 ], [ -94.974544883353531, 29.34299112460117 ], [ -94.974683883861061, 29.343074124097196 ], [ -94.974754883518798, 29.343013124461834 ], [ -94.974972884241353, 29.343094124479553 ], [ -94.975003883508691, 29.34317512415398 ], [ -94.974962883721915, 29.343205124073712 ], [ -94.975504884354223, 29.343407123921395 ], [ -94.975776884130639, 29.343695124737454 ], [ -94.975797884192644, 29.343740124027338 ], [ -94.97584488422892, 29.343742124777314 ], [ -94.975875884436903, 29.343688124165709 ], [ -94.975969884393294, 29.343661124518128 ], [ -94.976031884307815, 29.343715124751959 ], [ -94.976093884369803, 29.343849124463866 ], [ -94.976093884559816, 29.344443124916022 ], [ -94.975969883671624, 29.344767124304596 ], [ -94.975875883639162, 29.344929124933103 ], [ -94.975846883751473, 29.344979124866548 ], [ -94.975743884030237, 29.345166124682084 ], [ -94.975905884451549, 29.345765124622716 ], [ -94.975938883694965, 29.345899124566937 ], [ -94.976062884290599, 29.345926125103727 ], [ -94.976476884492499, 29.346118124471058 ], [ -94.976634883993896, 29.346164124446865 ], [ -94.976748884021546, 29.34641312445779 ], [ -94.977246884147348, 29.346926125112507 ], [ -94.977371884815483, 29.346980125269546 ], [ -94.977402885061025, 29.347061125178332 ], [ -94.977682884625978, 29.347115124548242 ], [ -94.97827488528057, 29.347196124886203 ], [ -94.978274885298191, 29.347331124796021 ], [ -94.978399885129292, 29.34741212535544 ], [ -94.978430884524244, 29.347520124584484 ], [ -94.978617884933513, 29.347628125178367 ], [ -94.978711885010483, 29.347547125203501 ], [ -94.978804884639359, 29.347169124516725 ], [ -94.978991884869217, 29.347142124712541 ], [ -94.979116884938804, 29.347088124721882 ], [ -94.979552884931962, 29.347061124629366 ], [ -94.97967688524966, 29.347115124946313 ], [ -94.979832885417537, 29.347520125341845 ], [ -94.980331885855193, 29.347951124890532 ], [ -94.980549885663734, 29.348032125193015 ], [ -94.980736885559296, 29.348059124808728 ], [ -94.980860885614817, 29.348113124857267 ], [ -94.981110885516884, 29.348140124650257 ], [ -94.981421886168476, 29.348221124809669 ], [ -94.981670885805116, 29.34824812501623 ], [ -94.981795886245536, 29.348329124996425 ], [ -94.981883885843885, 29.348348125479099 ], [ -94.982294886386441, 29.348437124838842 ], [ -94.982323885424748, 29.348489125208321 ], [ -94.982357885708979, 29.348477125397544 ], [ -94.982429886164311, 29.348461125311864 ], [ -94.982445886016933, 29.348458124773689 ], [ -94.982605885608407, 29.348455125221413 ], [ -94.982765886270059, 29.348468124826329 ], [ -94.982852886216506, 29.348476124998442 ], [ -94.98297988588493, 29.348491124659443 ], [ -94.9830068857855, 29.348497125226704 ], [ -94.983161885949599, 29.348502125385281 ], [ -94.983298886275804, 29.348525125253712 ], [ -94.983433886544503, 29.348546125464736 ], [ -94.983477886041868, 29.348547124872869 ], [ -94.983501886459351, 29.348548125381356 ], [ -94.983579886061619, 29.348575125380425 ], [ -94.983652886386864, 29.348627125402817 ], [ -94.983720885760391, 29.348640125450132 ], [ -94.983805886730821, 29.348648125317517 ], [ -94.9838518858718, 29.348680125274807 ], [ -94.984038886669339, 29.348869124861984 ], [ -94.984288886325984, 29.349166125102357 ], [ -94.984817886309614, 29.349624125459258 ], [ -94.985191886439239, 29.349786124889722 ], [ -94.985409886415709, 29.349813125120264 ], [ -94.985690886432025, 29.349894125230058 ], [ -94.986210887384487, 29.350106125588532 ], [ -94.986257887350121, 29.350108125282432 ], [ -94.986305886590657, 29.350121125472789 ], [ -94.98639188748659, 29.350129125737485 ], [ -94.986441887003565, 29.350143125001082 ], [ -94.986481887396948, 29.350155125244012 ], [ -94.986515886894082, 29.350174125298583 ], [ -94.986600887061286, 29.350188125420619 ], [ -94.986709887296385, 29.350194124947063 ], [ -94.986787886654781, 29.350185125713057 ], [ -94.986852887184241, 29.350170125222505 ], [ -94.986889887088537, 29.350168124988741 ], [ -94.986936887097087, 29.350168125547786 ], [ -94.987018887430509, 29.350184125266662 ], [ -94.987102887723097, 29.350165124953207 ], [ -94.98715288684744, 29.350150125501191 ], [ -94.987196886999186, 29.350151125486793 ], [ -94.987217887077364, 29.350146125072492 ], [ -94.987274886902725, 29.350110125598814 ], [ -94.987326887592801, 29.350078125238969 ], [ -94.987376887117733, 29.350095125201598 ], [ -94.98742788680002, 29.350082124838398 ], [ -94.987465887670666, 29.350056125365239 ], [ -94.98759088713075, 29.35002912513372 ], [ -94.987902887713261, 29.349921125123899 ], [ -94.988369887886591, 29.349921125629656 ], [ -94.988556887719611, 29.349948124949169 ], [ -94.988712887636524, 29.350164125043957 ], [ -94.988798887275493, 29.350267125385752 ], [ -94.988899887374785, 29.350380125044286 ], [ -94.988961887413495, 29.350515125586295 ], [ -94.989241888195053, 29.350704124934584 ], [ -94.98986288781964, 29.350934125436385 ], [ -94.990017887628653, 29.350947125715862 ], [ -94.990202888033025, 29.351045125318635 ], [ -94.990270888436712, 29.351136125781913 ], [ -94.990425888224465, 29.35137912562875 ], [ -94.990457888610891, 29.351487125476439 ], [ -94.990519888261986, 29.351541125758494 ], [ -94.990643887880282, 29.351729125304388 ], [ -94.990977888379817, 29.351946125212418 ], [ -94.99101788814545, 29.351972125315818 ], [ -94.991516887944258, 29.352188125689377 ], [ -94.991765888191125, 29.35218812526114 ], [ -94.99223288834088, 29.352134125602074 ], [ -94.992482888705382, 29.352026125229528 ], [ -94.992762889219549, 29.351999125449968 ], [ -94.992856888940722, 29.351918125705609 ], [ -94.99297788847764, 29.351918125275734 ], [ -94.993105888425603, 29.351918125483301 ], [ -94.993167888668438, 29.351972125402767 ], [ -94.993229888917725, 29.351972125423529 ], [ -94.993321889199962, 29.351999125550243 ], [ -94.993416888406756, 29.352026125371534 ], [ -94.99363488942825, 29.35221512510671 ], [ -94.993884888958732, 29.352323125156644 ], [ -94.993946889229434, 29.352431125447811 ], [ -94.994195889199062, 29.352566125949927 ], [ -94.994600888810197, 29.352647125702635 ], [ -94.995161889224462, 29.352647125672526 ], [ -94.995255889666936, 29.352566125210615 ], [ -94.995384889734197, 29.352528125556514 ], [ -94.995442889780861, 29.352512125322502 ], [ -94.995691889141156, 29.352458125821897 ], [ -94.995878889857451, 29.352404125352997 ], [ -94.996127889973351, 29.352323125617627 ], [ -94.996439889824998, 29.352215125594288 ], [ -94.997342889412124, 29.352188125690265 ], [ -94.997654889857301, 29.352134125398784 ], [ -94.997996890213585, 29.351891125163359 ], [ -94.998246890271446, 29.35183712570991 ], [ -94.998246889787623, 29.351621125630253 ], [ -94.99833989033398, 29.351541125045745 ], [ -94.998962890151944, 29.351541124881546 ], [ -94.999087889969758, 29.351567125106641 ], [ -94.999149889959185, 29.351621124863382 ], [ -94.999367890424807, 29.351648125552654 ], [ -94.99971089072146, 29.35191812492813 ], [ -95.000008891054279, 29.351971124812255 ], [ -95.000614890336465, 29.352323125555962 ], [ -95.000722890846063, 29.352433125025239 ], [ -95.000987891025204, 29.352701125364582 ], [ -95.001268891314638, 29.35340312552308 ], [ -95.001548891082194, 29.353672125701337 ], [ -95.002016891057792, 29.353807125703792 ], [ -95.002701891787183, 29.353807125242728 ], [ -95.003107891988307, 29.354159125807431 ], [ -95.003160891460141, 29.354477125733752 ], [ -95.003296891914346, 29.354646126052504 ], [ -95.003394891505309, 29.354902125925157 ], [ -95.003394891682674, 29.355082125772853 ], [ -95.003525891512581, 29.355196125888458 ], [ -95.003825891570031, 29.3553761257904 ], [ -95.003945891823932, 29.355518126233466 ], [ -95.004044891939117, 29.355692126296422 ], [ -95.004049891456745, 29.355793125757902 ], [ -95.00404489174683, 29.355890125964564 ], [ -95.003953891803562, 29.356139125861635 ], [ -95.003851891550354, 29.356327126455213 ], [ -95.003826891272126, 29.356439126055868 ], [ -95.003780891670075, 29.356637125943582 ], [ -95.003765891432096, 29.357384126603186 ], [ -95.003766891452983, 29.357459126428207 ], [ -95.004149891570009, 29.357388126392763 ], [ -95.004396892239143, 29.357370126234052 ], [ -95.005193892049661, 29.357312125928711 ], [ -95.005844892000766, 29.357301126186897 ], [ -95.007568892773563, 29.357273125721562 ], [ -95.007955892583865, 29.357262126031948 ], [ -95.008872892775486, 29.357234125929811 ], [ -95.009285893274296, 29.35715712620804 ], [ -95.009762892896035, 29.357067125838739 ], [ -95.010369893208022, 29.356796125775755 ], [ -95.010808894008065, 29.356576125653167 ], [ -95.011453893926927, 29.356086125387471 ], [ -95.011789893969507, 29.355698126055909 ], [ -95.012550894142663, 29.354769125552085 ], [ -95.012606893566215, 29.354705125648692 ], [ -95.012652893888543, 29.354652125040388 ], [ -95.013311894219825, 29.35389912494097 ], [ -95.013817894428286, 29.353318125441504 ], [ -95.014500894389499, 29.352537124754718 ], [ -95.014706894154912, 29.352299125062668 ], [ -95.015018894085799, 29.351478124339138 ], [ -95.015084894761387, 29.35130512480082 ], [ -95.015315894273542, 29.350699124565111 ], [ -95.015369894829291, 29.35055512407412 ], [ -95.015476894546978, 29.350254124790627 ], [ -95.015840894453106, 29.349317123927079 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1286, "Tract": "48201210400", "Area_SqMi": 0.69945147486613157, "total_2009": 1115, "total_2010": 1015, "total_2011": 1021, "total_2012": 1064, "total_2013": 1049, "total_2014": 983, "total_2015": 917, "total_2016": 934, "total_2017": 857, "total_2018": 854, "total_2019": 786, "total_2020": 698, "age1": 152, "age2": 305, "age3": 193, "earn1": 132, "earn2": 229, "earn3": 289, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 253, "naics_s06": 0, "naics_s07": 73, "naics_s08": 0, "naics_s09": 4, "naics_s10": 19, "naics_s11": 4, "naics_s12": 6, "naics_s13": 0, "naics_s14": 12, "naics_s15": 1, "naics_s16": 61, "naics_s17": 70, "naics_s18": 68, "naics_s19": 73, "naics_s20": 0, "race1": 550, "race2": 49, "race3": 7, "race4": 32, "race5": 2, "race6": 10, "ethnicity1": 306, "ethnicity2": 344, "edu1": 160, "edu2": 126, "edu3": 127, "edu4": 85, "Shape_Length": 20547.448327195198, "Shape_Area": 19499509.996104289, "total_2021": 679, "total_2022": 650 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.371929004887093, 29.790768203655865 ], [ -95.371899005555647, 29.790002202804221 ], [ -95.371882004742929, 29.78956220302657 ], [ -95.371832005090639, 29.789127202502062 ], [ -95.371757004864506, 29.788811203243917 ], [ -95.371665004680253, 29.788540202508845 ], [ -95.371495005075872, 29.788157203130503 ], [ -95.371302004873712, 29.787768202717036 ], [ -95.370919004365675, 29.787238202841571 ], [ -95.370209004514393, 29.786184202089146 ], [ -95.369996004823506, 29.785868201929574 ], [ -95.369715003909249, 29.785452202459759 ], [ -95.369295003772265, 29.784829202135825 ], [ -95.369117003705512, 29.784505202140959 ], [ -95.368965004487762, 29.784229202062932 ], [ -95.368908003897232, 29.784079201730243 ], [ -95.368814003622845, 29.783828202185298 ], [ -95.368805004437561, 29.783805202293774 ], [ -95.36877700438275, 29.78369420172773 ], [ -95.3687290042717, 29.783504201805297 ], [ -95.368659004348459, 29.783149201444299 ], [ -95.368634003819722, 29.782915201555227 ], [ -95.368582004490818, 29.782609201410242 ], [ -95.368559003964691, 29.782269201991557 ], [ -95.368532003735666, 29.781767201853107 ], [ -95.368577003946555, 29.781272201115616 ], [ -95.368582003802828, 29.780970201349515 ], [ -95.368651003530303, 29.780624201398915 ], [ -95.36873200440894, 29.780333201676122 ], [ -95.3687650040509, 29.780215200798661 ], [ -95.368812003789515, 29.780048200927506 ], [ -95.368855003948312, 29.779869201006942 ], [ -95.368942003789101, 29.77962820142319 ], [ -95.369053003740845, 29.779324200801085 ], [ -95.368911004213317, 29.779310201382181 ], [ -95.368849004175701, 29.779303201283962 ], [ -95.368466004101137, 29.779299201072522 ], [ -95.368278004067108, 29.77931420090556 ], [ -95.368191003530896, 29.779324200765082 ], [ -95.36801800376854, 29.77934720082056 ], [ -95.36772100328227, 29.779398201195907 ], [ -95.36764200409155, 29.779418201511987 ], [ -95.3673410039342, 29.779495201253933 ], [ -95.366555003015492, 29.779791200874278 ], [ -95.36591100360782, 29.780028201359965 ], [ -95.365169002850394, 29.780298201531433 ], [ -95.364691002825197, 29.780471201527924 ], [ -95.363861002928573, 29.780775201188082 ], [ -95.363074002572461, 29.781075201257302 ], [ -95.362276001949127, 29.781358201676827 ], [ -95.36151200229439, 29.781635201595819 ], [ -95.360748002034057, 29.781917201599665 ], [ -95.359992001775183, 29.782186202333769 ], [ -95.359240002023554, 29.782461201957133 ], [ -95.358489001225195, 29.782743202181504 ], [ -95.357731001176631, 29.783011201838608 ], [ -95.356867000965849, 29.7833242023239 ], [ -95.356597000929341, 29.783329202251409 ], [ -95.356524001149467, 29.783330201991166 ], [ -95.356108001123999, 29.783347202702533 ], [ -95.354699000730818, 29.78334520256368 ], [ -95.353883999769465, 29.783343202451853 ], [ -95.353055000542739, 29.783358202706118 ], [ -95.352237999357754, 29.783357202404588 ], [ -95.351433000061348, 29.783376202849926 ], [ -95.35146399985058, 29.784329202940938 ], [ -95.351528999965524, 29.784502202461461 ], [ -95.351598999565724, 29.784631202240405 ], [ -95.351679000245511, 29.784745202929376 ], [ -95.351094999879095, 29.784746202690272 ], [ -95.350757999746023, 29.78474120317345 ], [ -95.350859999066813, 29.78495820252849 ], [ -95.350924999349431, 29.785121202612682 ], [ -95.350974999754584, 29.785290203189259 ], [ -95.351010999606245, 29.785573202801384 ], [ -95.35102999994605, 29.786421202838984 ], [ -95.351050999412394, 29.787275202931536 ], [ -95.351079999704893, 29.788127203674186 ], [ -95.351092000012073, 29.788979203547662 ], [ -95.351103000084009, 29.789834203507716 ], [ -95.351617999574927, 29.789838203953998 ], [ -95.351913999764321, 29.7898312033292 ], [ -95.352088000486958, 29.789810204147088 ], [ -95.353057000263647, 29.789804203607588 ], [ -95.354053000814773, 29.789804203888039 ], [ -95.355017000443254, 29.789800203318482 ], [ -95.355542001133955, 29.789793203566191 ], [ -95.35595400088377, 29.789795203625989 ], [ -95.356086001588437, 29.789788203174652 ], [ -95.356926001446922, 29.789787203161989 ], [ -95.35701300182599, 29.789781203742887 ], [ -95.357837001061696, 29.789775203791514 ], [ -95.357945001609423, 29.789777203317275 ], [ -95.358662001279995, 29.789760203869793 ], [ -95.358955002187116, 29.789771203699289 ], [ -95.359359002076417, 29.789757203777658 ], [ -95.359863002496951, 29.78976420371804 ], [ -95.36043700231113, 29.78975520366469 ], [ -95.361414002119091, 29.789756203059785 ], [ -95.361820002535666, 29.789753202927677 ], [ -95.361810002699187, 29.789791203413849 ], [ -95.3618920022503, 29.789973203076805 ], [ -95.362441002660091, 29.790280203500899 ], [ -95.36275000255479, 29.790335203305062 ], [ -95.363084003379328, 29.790456203586078 ], [ -95.363418002803115, 29.790599203509679 ], [ -95.36391000365748, 29.790703203611852 ], [ -95.364723003451218, 29.791022203945403 ], [ -95.365019003248477, 29.791170203413873 ], [ -95.365259003860317, 29.791384203498644 ], [ -95.365770003632903, 29.791956203609622 ], [ -95.366028003456933, 29.792137203342847 ], [ -95.366268003310367, 29.792286203646949 ], [ -95.366359003900371, 29.792361203779617 ], [ -95.366426003885536, 29.792417203976122 ], [ -95.366754004056915, 29.792505204170212 ], [ -95.367056004271205, 29.792511203589946 ], [ -95.367510003957094, 29.792428203365905 ], [ -95.367686004155075, 29.792439203965085 ], [ -95.367894004661991, 29.792549204000796 ], [ -95.368168004025506, 29.792722203961183 ], [ -95.368493004118704, 29.792419203317042 ], [ -95.368744004751662, 29.792245203644722 ], [ -95.369573004804224, 29.792246203459101 ], [ -95.369885004788529, 29.792243203384945 ], [ -95.37040200525071, 29.792238203169692 ], [ -95.370853004729611, 29.79223720362317 ], [ -95.371266005431977, 29.792239203314818 ], [ -95.37163500546761, 29.792222203930262 ], [ -95.371720004921102, 29.792217203203606 ], [ -95.371852005270597, 29.792212203708029 ], [ -95.371929004887093, 29.790768203655865 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1287, "Tract": "48201220800", "Area_SqMi": 0.66962197814807489, "total_2009": 720, "total_2010": 714, "total_2011": 598, "total_2012": 370, "total_2013": 394, "total_2014": 356, "total_2015": 376, "total_2016": 374, "total_2017": 367, "total_2018": 395, "total_2019": 349, "total_2020": 290, "age1": 64, "age2": 171, "age3": 109, "earn1": 63, "earn2": 114, "earn3": 167, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 50, "naics_s06": 22, "naics_s07": 84, "naics_s08": 20, "naics_s09": 0, "naics_s10": 0, "naics_s11": 11, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 15, "naics_s16": 31, "naics_s17": 0, "naics_s18": 16, "naics_s19": 61, "naics_s20": 0, "race1": 227, "race2": 77, "race3": 6, "race4": 32, "race5": 0, "race6": 2, "ethnicity1": 196, "ethnicity2": 148, "edu1": 92, "edu2": 77, "edu3": 61, "edu4": 50, "Shape_Length": 20253.774844127463, "Shape_Area": 18667914.68129874, "total_2021": 294, "total_2022": 344 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.342812999505327, 29.840447214367547 ], [ -95.342809999717048, 29.8395682140407 ], [ -95.342801000316797, 29.839281214089453 ], [ -95.342778000294203, 29.83804421401695 ], [ -95.34278199962705, 29.837910214199379 ], [ -95.342769999415395, 29.83742421379074 ], [ -95.342770000058522, 29.837214213464144 ], [ -95.342764999503345, 29.83702021345152 ], [ -95.342758999689778, 29.836634213574648 ], [ -95.342741000107779, 29.835800213790936 ], [ -95.342724999905457, 29.83504721375418 ], [ -95.342729999710912, 29.834856213269173 ], [ -95.342720000125809, 29.834506212888286 ], [ -95.342725999652515, 29.833922213437031 ], [ -95.342708999442451, 29.833232212585603 ], [ -95.342688999162363, 29.831949212381328 ], [ -95.34267699934837, 29.831147212533406 ], [ -95.342674999469878, 29.831014212334903 ], [ -95.342656999963268, 29.829873211888184 ], [ -95.342637999032604, 29.828928212414215 ], [ -95.342638999377357, 29.828725211818146 ], [ -95.342630999758242, 29.828279211964265 ], [ -95.342615999069437, 29.828119211553048 ], [ -95.34262999914921, 29.827733211823841 ], [ -95.34261599948826, 29.826996211663918 ], [ -95.342611999689964, 29.82656321149787 ], [ -95.342597998860356, 29.8257872117895 ], [ -95.3425909994791, 29.824912210896763 ], [ -95.342577998802483, 29.824628211014115 ], [ -95.342566998993746, 29.823553211021025 ], [ -95.342546998769251, 29.822193210325288 ], [ -95.342529999241947, 29.821905210659203 ], [ -95.342530998671521, 29.821165210786091 ], [ -95.342500999473828, 29.820374209878143 ], [ -95.342493998698885, 29.819863210470345 ], [ -95.342103998663291, 29.819840209897354 ], [ -95.341650998302072, 29.81982821034007 ], [ -95.340583998556454, 29.819816210135354 ], [ -95.339610998250961, 29.819840210335578 ], [ -95.339546998293429, 29.819850210249246 ], [ -95.338770997766531, 29.819875210140371 ], [ -95.337611997547398, 29.819876210540382 ], [ -95.335844997064683, 29.81988020999189 ], [ -95.335762997663949, 29.819881210443153 ], [ -95.335659996768982, 29.819889210174733 ], [ -95.335569997248328, 29.819896210279712 ], [ -95.335500997187367, 29.819896210063789 ], [ -95.335506997471839, 29.82008621050559 ], [ -95.33557699722499, 29.82207221118459 ], [ -95.335582997186506, 29.822296211019285 ], [ -95.335569997416897, 29.824581211225539 ], [ -95.335596997095905, 29.825557211267235 ], [ -95.335606997118703, 29.82702221144033 ], [ -95.335591997062735, 29.827201211847228 ], [ -95.335578998041115, 29.827716212435014 ], [ -95.335439997140341, 29.828909212134246 ], [ -95.335393997171863, 29.829217212381423 ], [ -95.335339998028275, 29.829538212476308 ], [ -95.33498299729726, 29.83116521320505 ], [ -95.334877997601296, 29.831667212427945 ], [ -95.334727997854529, 29.832396212651762 ], [ -95.334035997140148, 29.835671213664416 ], [ -95.333992997161729, 29.83584421356586 ], [ -95.333880997968166, 29.836330213812388 ], [ -95.333811997748384, 29.83662121368365 ], [ -95.333712997090871, 29.837163214161585 ], [ -95.33368499799569, 29.837386214098455 ], [ -95.33365399726658, 29.837725214261553 ], [ -95.33361599773032, 29.838484214189112 ], [ -95.333623997768058, 29.838902214828725 ], [ -95.333621997764183, 29.839279214243753 ], [ -95.333639997256668, 29.840525214785654 ], [ -95.333654997540506, 29.840764214391719 ], [ -95.333852997877116, 29.840755214841391 ], [ -95.333977997817499, 29.840750214812864 ], [ -95.33461199823688, 29.840719214382599 ], [ -95.335898998092375, 29.840676214530642 ], [ -95.336371998329071, 29.840660214656186 ], [ -95.337019998243647, 29.84064921443354 ], [ -95.337859998912364, 29.840607214736799 ], [ -95.338517999270209, 29.840591214310308 ], [ -95.339526999577942, 29.840555214778156 ], [ -95.342812999505327, 29.840447214367547 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1288, "Tract": "48201220900", "Area_SqMi": 0.57801734376585756, "total_2009": 491, "total_2010": 712, "total_2011": 535, "total_2012": 545, "total_2013": 534, "total_2014": 598, "total_2015": 472, "total_2016": 649, "total_2017": 634, "total_2018": 604, "total_2019": 611, "total_2020": 560, "age1": 128, "age2": 269, "age3": 137, "earn1": 132, "earn2": 129, "earn3": 273, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 227, "naics_s06": 0, "naics_s07": 86, "naics_s08": 26, "naics_s09": 0, "naics_s10": 30, "naics_s11": 4, "naics_s12": 16, "naics_s13": 0, "naics_s14": 3, "naics_s15": 2, "naics_s16": 21, "naics_s17": 0, "naics_s18": 107, "naics_s19": 11, "naics_s20": 0, "race1": 406, "race2": 69, "race3": 5, "race4": 43, "race5": 2, "race6": 9, "ethnicity1": 310, "ethnicity2": 224, "edu1": 124, "edu2": 91, "edu3": 103, "edu4": 88, "Shape_Length": 19272.628991572103, "Shape_Area": 16114134.257621177, "total_2021": 560, "total_2022": 534 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.342957000589109, 29.847688216322492 ], [ -95.342954000815311, 29.847321215487771 ], [ -95.342937999866919, 29.847017215283387 ], [ -95.342930000611759, 29.846877215482749 ], [ -95.342913000218829, 29.846176215974719 ], [ -95.342905000422505, 29.845427215083333 ], [ -95.342884999818878, 29.844593215418829 ], [ -95.34286600013148, 29.843407215273949 ], [ -95.342859999978728, 29.842886214760728 ], [ -95.342844000341913, 29.842499214456808 ], [ -95.342844999961343, 29.842066214609321 ], [ -95.342826999911381, 29.841157214927538 ], [ -95.342812999505327, 29.840447214367547 ], [ -95.339526999577942, 29.840555214778156 ], [ -95.338517999270209, 29.840591214310308 ], [ -95.337859998912364, 29.840607214736799 ], [ -95.337019998243647, 29.84064921443354 ], [ -95.336371998329071, 29.840660214656186 ], [ -95.335898998092375, 29.840676214530642 ], [ -95.33461199823688, 29.840719214382599 ], [ -95.333977997817499, 29.840750214812864 ], [ -95.333852997877116, 29.840755214841391 ], [ -95.333654997540506, 29.840764214391719 ], [ -95.333669997309116, 29.841028214767128 ], [ -95.3337269974501, 29.843813215228533 ], [ -95.333720997704518, 29.844228215637397 ], [ -95.33372699764648, 29.844559215504283 ], [ -95.333771997626656, 29.846925215756539 ], [ -95.333752997914445, 29.848463216161313 ], [ -95.333795998381632, 29.848725216485359 ], [ -95.333813998530715, 29.848928216643785 ], [ -95.333942997666369, 29.85077621712378 ], [ -95.33395999832176, 29.851282216959252 ], [ -95.333967998120954, 29.851384216745167 ], [ -95.333966998330823, 29.851539217002564 ], [ -95.333909997954905, 29.855254218078517 ], [ -95.333847998422627, 29.856279217955613 ], [ -95.333846998543123, 29.856773217931906 ], [ -95.33382899832921, 29.857241218102587 ], [ -95.333692998045535, 29.859106218953197 ], [ -95.333700998352739, 29.859344218800345 ], [ -95.333686998478115, 29.859576218529433 ], [ -95.333657998458605, 29.86004521834915 ], [ -95.33364099841377, 29.860258218312843 ], [ -95.333623998875453, 29.860450219061839 ], [ -95.333623998356259, 29.860735218558055 ], [ -95.333606998480477, 29.861062219354601 ], [ -95.333600998229826, 29.861349219349258 ], [ -95.333669998219804, 29.861383218921265 ], [ -95.333718998328095, 29.861407219258734 ], [ -95.333822998353014, 29.861457218952538 ], [ -95.333928998450602, 29.861508219203277 ], [ -95.334353998775285, 29.861714218944329 ], [ -95.334521998843982, 29.861786218904108 ], [ -95.334662998922553, 29.86184621940254 ], [ -95.334764998839603, 29.861884218940531 ], [ -95.334848998502423, 29.861916219489625 ], [ -95.3352199992012, 29.86128721874509 ], [ -95.335702999017883, 29.860487219116209 ], [ -95.336290998674656, 29.859516218678785 ], [ -95.337160999558733, 29.858064217876123 ], [ -95.337419999107951, 29.857626218179693 ], [ -95.337523998966546, 29.857462217953206 ], [ -95.337780999309203, 29.857022217763902 ], [ -95.338026999257465, 29.856623217424538 ], [ -95.33842899917498, 29.855946217299294 ], [ -95.338737999794333, 29.855440217857559 ], [ -95.339042999430291, 29.854925217409516 ], [ -95.339314000137662, 29.854494217639012 ], [ -95.339720999363649, 29.853815217149727 ], [ -95.340127999771823, 29.853153216856501 ], [ -95.340420999986236, 29.852686217286621 ], [ -95.340538999796792, 29.852490216917008 ], [ -95.34122300045027, 29.851355216919711 ], [ -95.341445000259881, 29.850940216900035 ], [ -95.342129999758185, 29.849789216612756 ], [ -95.342369000605387, 29.849420216506562 ], [ -95.342532999990908, 29.849135216589179 ], [ -95.342587000023627, 29.849032216569491 ], [ -95.342622000003402, 29.848966216111869 ], [ -95.342698000306697, 29.848805215997324 ], [ -95.342779000640448, 29.848589215642637 ], [ -95.342910000527141, 29.848156215976569 ], [ -95.342943000788637, 29.84790321582927 ], [ -95.342957000589109, 29.847688216322492 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1289, "Tract": "48201221000", "Area_SqMi": 0.96181404495781742, "total_2009": 443, "total_2010": 277, "total_2011": 447, "total_2012": 316, "total_2013": 349, "total_2014": 457, "total_2015": 431, "total_2016": 476, "total_2017": 489, "total_2018": 524, "total_2019": 338, "total_2020": 310, "age1": 119, "age2": 251, "age3": 127, "earn1": 99, "earn2": 162, "earn3": 236, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 64, "naics_s06": 19, "naics_s07": 56, "naics_s08": 75, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 3, "naics_s13": 0, "naics_s14": 12, "naics_s15": 0, "naics_s16": 115, "naics_s17": 0, "naics_s18": 143, "naics_s19": 4, "naics_s20": 0, "race1": 349, "race2": 114, "race3": 7, "race4": 21, "race5": 0, "race6": 6, "ethnicity1": 314, "ethnicity2": 183, "edu1": 86, "edu2": 94, "edu3": 109, "edu4": 89, "Shape_Length": 24739.04626515495, "Shape_Area": 26813729.412234027, "total_2021": 363, "total_2022": 497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.351785003270379, 29.870997220425579 ], [ -95.351898003343138, 29.870997220046501 ], [ -95.351301003125215, 29.869860220256349 ], [ -95.351176003834752, 29.869619219665882 ], [ -95.350461002733653, 29.86831021941088 ], [ -95.350080003318737, 29.867561219949959 ], [ -95.350028003140693, 29.867427219476177 ], [ -95.350006003487493, 29.86734621977811 ], [ -95.349999002745335, 29.867269219816411 ], [ -95.349989002547332, 29.866954219682949 ], [ -95.349981003118913, 29.865323219604125 ], [ -95.34997600319106, 29.864979218912882 ], [ -95.349965002802776, 29.864453219198815 ], [ -95.349951002942731, 29.863538219330618 ], [ -95.349953003287752, 29.863423219189201 ], [ -95.349951003007192, 29.863286219263326 ], [ -95.349940002675623, 29.862609218670169 ], [ -95.349938002267976, 29.861698218556512 ], [ -95.349932002789302, 29.860778218309694 ], [ -95.349911002992513, 29.859445217887504 ], [ -95.349911002582189, 29.858209217951153 ], [ -95.349898002035957, 29.857524217647093 ], [ -95.349895002449671, 29.857071217422121 ], [ -95.34988800229975, 29.856525216997746 ], [ -95.349880002908577, 29.85538921722306 ], [ -95.349862002270328, 29.85356721703366 ], [ -95.349845002226886, 29.851788216247844 ], [ -95.34984100248144, 29.851332216471924 ], [ -95.349830002537985, 29.850841216423483 ], [ -95.349819002402484, 29.850658215815042 ], [ -95.349790002086365, 29.850481216228349 ], [ -95.34973100256245, 29.850222216023635 ], [ -95.349548001823436, 29.849684216335277 ], [ -95.349415002142678, 29.849342216130925 ], [ -95.349237002137144, 29.848970216170379 ], [ -95.348977001493452, 29.848553216133002 ], [ -95.348847001810668, 29.84840521544368 ], [ -95.348636002214775, 29.848077215613714 ], [ -95.347799001164077, 29.848098215974876 ], [ -95.34723100120182, 29.848106215776951 ], [ -95.346279001464211, 29.848096216019506 ], [ -95.345310001034889, 29.848125215456115 ], [ -95.34504100129935, 29.848125216068748 ], [ -95.344531000684185, 29.848134215505009 ], [ -95.343780000092352, 29.848147215784188 ], [ -95.342910000527141, 29.848156215976569 ], [ -95.342779000640448, 29.848589215642637 ], [ -95.342698000306697, 29.848805215997324 ], [ -95.342622000003402, 29.848966216111869 ], [ -95.342587000023627, 29.849032216569491 ], [ -95.342532999990908, 29.849135216589179 ], [ -95.342369000605387, 29.849420216506562 ], [ -95.342129999758185, 29.849789216612756 ], [ -95.341445000259881, 29.850940216900035 ], [ -95.34122300045027, 29.851355216919711 ], [ -95.340538999796792, 29.852490216917008 ], [ -95.340420999986236, 29.852686217286621 ], [ -95.340127999771823, 29.853153216856501 ], [ -95.339720999363649, 29.853815217149727 ], [ -95.339314000137662, 29.854494217639012 ], [ -95.339042999430291, 29.854925217409516 ], [ -95.338737999794333, 29.855440217857559 ], [ -95.33842899917498, 29.855946217299294 ], [ -95.338026999257465, 29.856623217424538 ], [ -95.337780999309203, 29.857022217763902 ], [ -95.337523998966546, 29.857462217953206 ], [ -95.337419999107951, 29.857626218179693 ], [ -95.337160999558733, 29.858064217876123 ], [ -95.336290998674656, 29.859516218678785 ], [ -95.335702999017883, 29.860487219116209 ], [ -95.3352199992012, 29.86128721874509 ], [ -95.334848998502423, 29.861916219489625 ], [ -95.335148999068366, 29.862028219331538 ], [ -95.335595999029991, 29.862115218878944 ], [ -95.335924998869075, 29.86209921943987 ], [ -95.337993999844727, 29.862181219155286 ], [ -95.338157999578243, 29.862230218634313 ], [ -95.33854200034088, 29.862571219015475 ], [ -95.338814000410224, 29.862939219298084 ], [ -95.339054000197606, 29.863110219442287 ], [ -95.3395839998432, 29.863247218938806 ], [ -95.340328000218136, 29.863423219310299 ], [ -95.340453000468358, 29.863514218871092 ], [ -95.340593000924372, 29.863615219053109 ], [ -95.340744000080221, 29.863769219202648 ], [ -95.341066000298611, 29.863863219204674 ], [ -95.34139400074568, 29.864115219585493 ], [ -95.341615001193901, 29.864401219045511 ], [ -95.341672000947042, 29.864531219170672 ], [ -95.341874001214521, 29.86498921979825 ], [ -95.341918000816605, 29.86502221902203 ], [ -95.342044000456042, 29.86546821932474 ], [ -95.342221001392403, 29.865880219273215 ], [ -95.342524001118349, 29.866122219442747 ], [ -95.34258100065955, 29.866336220063495 ], [ -95.342581000802738, 29.866710220026821 ], [ -95.342632000707113, 29.867100219787996 ], [ -95.342726001394539, 29.867331220353407 ], [ -95.342708001273522, 29.867562219939188 ], [ -95.342629001344406, 29.867671220326642 ], [ -95.342581001005357, 29.86773822008114 ], [ -95.342184001420719, 29.867887219951427 ], [ -95.341503001145298, 29.868101220068365 ], [ -95.341251000686896, 29.868244220152114 ], [ -95.34118200107288, 29.868429219836507 ], [ -95.341169000992835, 29.86846422002272 ], [ -95.341188001137411, 29.868640220457504 ], [ -95.341346000678229, 29.868943220329324 ], [ -95.341415000710654, 29.869124220257426 ], [ -95.341554000541024, 29.869569220064555 ], [ -95.341592001260594, 29.869839220871366 ], [ -95.34155400095959, 29.87008122046581 ], [ -95.341535000799482, 29.870097220661673 ], [ -95.341497000721418, 29.87022922044882 ], [ -95.34129600046316, 29.87057022094309 ], [ -95.341138001241745, 29.870889220448102 ], [ -95.341104000887825, 29.871078221033301 ], [ -95.341272001084704, 29.871077220409209 ], [ -95.342610001006108, 29.87107122048852 ], [ -95.344219001401314, 29.871048220689275 ], [ -95.345630002208793, 29.871040220216209 ], [ -95.348928002538841, 29.871020220078364 ], [ -95.349816002720786, 29.871001220071268 ], [ -95.351348003219456, 29.870998220218134 ], [ -95.351743003307746, 29.870997220024766 ], [ -95.351785003270379, 29.870997220425579 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1290, "Tract": "48201221100", "Area_SqMi": 1.1827638381185999, "total_2009": 2220, "total_2010": 1620, "total_2011": 1619, "total_2012": 1848, "total_2013": 1962, "total_2014": 1701, "total_2015": 1755, "total_2016": 1614, "total_2017": 1146, "total_2018": 1284, "total_2019": 1364, "total_2020": 1292, "age1": 290, "age2": 796, "age3": 378, "earn1": 93, "earn2": 194, "earn3": 1177, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 830, "naics_s05": 43, "naics_s06": 189, "naics_s07": 153, "naics_s08": 0, "naics_s09": 10, "naics_s10": 8, "naics_s11": 3, "naics_s12": 0, "naics_s13": 0, "naics_s14": 113, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 111, "naics_s20": 0, "race1": 1269, "race2": 124, "race3": 26, "race4": 28, "race5": 5, "race6": 12, "ethnicity1": 747, "ethnicity2": 717, "edu1": 349, "edu2": 341, "edu3": 309, "edu4": 175, "Shape_Length": 25129.732196779987, "Shape_Area": 32973431.486206267, "total_2021": 1417, "total_2022": 1464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.365092006847448, 29.870737220116933 ], [ -95.364953007115233, 29.870209219426236 ], [ -95.364661006612167, 29.868997219298453 ], [ -95.36335400623328, 29.863788218531724 ], [ -95.36252900579899, 29.8605352179721 ], [ -95.362265005650357, 29.859360217775766 ], [ -95.362225006090341, 29.859203217794025 ], [ -95.361437005310663, 29.856094216752112 ], [ -95.360368004825332, 29.85187721578373 ], [ -95.360341004786491, 29.851762216408261 ], [ -95.359413004294595, 29.847871215710292 ], [ -95.359210004713333, 29.847090214822003 ], [ -95.359058004868785, 29.846503215429085 ], [ -95.358830004531526, 29.846542215433654 ], [ -95.358652004530725, 29.846572214786352 ], [ -95.358501004333149, 29.846596215089381 ], [ -95.357567003907633, 29.846745215424662 ], [ -95.356493003387641, 29.846938215517113 ], [ -95.355780003771727, 29.847086215528766 ], [ -95.355180003127515, 29.847218215341933 ], [ -95.354711003491616, 29.84737821515866 ], [ -95.353779003609787, 29.847708215544031 ], [ -95.353441003262802, 29.847806215949902 ], [ -95.35313000279784, 29.847891215935505 ], [ -95.35284000321964, 29.847943215966957 ], [ -95.352406002950318, 29.848014215366664 ], [ -95.352081002273181, 29.84804521582274 ], [ -95.350691002748945, 29.84805821578837 ], [ -95.349802001771877, 29.84807021608384 ], [ -95.348636002214775, 29.848077215613714 ], [ -95.348847001810668, 29.84840521544368 ], [ -95.348977001493452, 29.848553216133002 ], [ -95.349237002137144, 29.848970216170379 ], [ -95.349415002142678, 29.849342216130925 ], [ -95.349548001823436, 29.849684216335277 ], [ -95.34973100256245, 29.850222216023635 ], [ -95.349790002086365, 29.850481216228349 ], [ -95.349819002402484, 29.850658215815042 ], [ -95.349830002537985, 29.850841216423483 ], [ -95.34984100248144, 29.851332216471924 ], [ -95.349845002226886, 29.851788216247844 ], [ -95.349862002270328, 29.85356721703366 ], [ -95.349880002908577, 29.85538921722306 ], [ -95.34988800229975, 29.856525216997746 ], [ -95.349895002449671, 29.857071217422121 ], [ -95.349898002035957, 29.857524217647093 ], [ -95.349911002582189, 29.858209217951153 ], [ -95.349911002992513, 29.859445217887504 ], [ -95.349932002789302, 29.860778218309694 ], [ -95.349938002267976, 29.861698218556512 ], [ -95.349940002675623, 29.862609218670169 ], [ -95.349951003007192, 29.863286219263326 ], [ -95.349953003287752, 29.863423219189201 ], [ -95.349951002942731, 29.863538219330618 ], [ -95.349965002802776, 29.864453219198815 ], [ -95.34997600319106, 29.864979218912882 ], [ -95.349981003118913, 29.865323219604125 ], [ -95.349989002547332, 29.866954219682949 ], [ -95.349999002745335, 29.867269219816411 ], [ -95.350006003487493, 29.86734621977811 ], [ -95.350028003140693, 29.867427219476177 ], [ -95.350080003318737, 29.867561219949959 ], [ -95.350461002733653, 29.86831021941088 ], [ -95.351176003834752, 29.869619219665882 ], [ -95.351301003125215, 29.869860220256349 ], [ -95.351898003343138, 29.870997220046501 ], [ -95.352053003440219, 29.870981220578258 ], [ -95.353118003811545, 29.870955219890277 ], [ -95.3561900049217, 29.870903219743813 ], [ -95.356996004541159, 29.87089521998297 ], [ -95.358228005430988, 29.870871219975776 ], [ -95.358968005127807, 29.870862219943483 ], [ -95.359990005476234, 29.87084822041988 ], [ -95.360899006319542, 29.870841220247048 ], [ -95.361965006137112, 29.870817220131002 ], [ -95.36281300658527, 29.870759219840419 ], [ -95.364386006900446, 29.870746219459658 ], [ -95.364510006674124, 29.87074521942095 ], [ -95.364664006623769, 29.870740219412568 ], [ -95.364773006685795, 29.870739219726342 ], [ -95.365092006847448, 29.870737220116933 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1291, "Tract": "48201221200", "Area_SqMi": 0.96530967084613817, "total_2009": 714, "total_2010": 919, "total_2011": 995, "total_2012": 969, "total_2013": 1064, "total_2014": 1017, "total_2015": 937, "total_2016": 978, "total_2017": 943, "total_2018": 1090, "total_2019": 1069, "total_2020": 754, "age1": 264, "age2": 359, "age3": 154, "earn1": 202, "earn2": 311, "earn3": 264, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 46, "naics_s05": 41, "naics_s06": 5, "naics_s07": 315, "naics_s08": 37, "naics_s09": 0, "naics_s10": 17, "naics_s11": 5, "naics_s12": 36, "naics_s13": 16, "naics_s14": 0, "naics_s15": 56, "naics_s16": 79, "naics_s17": 0, "naics_s18": 123, "naics_s19": 1, "naics_s20": 0, "race1": 580, "race2": 113, "race3": 5, "race4": 68, "race5": 2, "race6": 9, "ethnicity1": 382, "ethnicity2": 395, "edu1": 168, "edu2": 118, "edu3": 144, "edu4": 83, "Shape_Length": 21611.644471123789, "Shape_Area": 26911181.479176909, "total_2021": 711, "total_2022": 777 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.384920012086042, 29.870055218876249 ], [ -95.384891012154327, 29.869047219216014 ], [ -95.384879012344399, 29.868450218764572 ], [ -95.38485501161054, 29.867215218028612 ], [ -95.384807011937625, 29.864453218101783 ], [ -95.384784011442463, 29.863625217527098 ], [ -95.38477101187452, 29.862906217746072 ], [ -95.384750011248315, 29.861723217059026 ], [ -95.384731011575951, 29.860688217332211 ], [ -95.384724011341845, 29.860141217054814 ], [ -95.384714011158565, 29.859443216811432 ], [ -95.384584011458557, 29.859421216860479 ], [ -95.384184011733737, 29.859342216764801 ], [ -95.383931011589937, 29.859300216884886 ], [ -95.383588011490176, 29.859270216810398 ], [ -95.383428010877708, 29.859264216641304 ], [ -95.383303011317992, 29.859264216632607 ], [ -95.38319901108116, 29.859270216629412 ], [ -95.382986011063281, 29.859296216856173 ], [ -95.382781011266772, 29.859316216940151 ], [ -95.38254401064664, 29.859329216630421 ], [ -95.3797720100753, 29.859366217392221 ], [ -95.376310008987716, 29.85941221708784 ], [ -95.376078009540223, 29.859396216864749 ], [ -95.375857008949296, 29.859362216940134 ], [ -95.375690009684732, 29.859322217323189 ], [ -95.375519009071013, 29.859291216993636 ], [ -95.375344008661301, 29.859276216845828 ], [ -95.375226008862001, 29.859274216793082 ], [ -95.373056008623479, 29.859288216802536 ], [ -95.372820008154818, 29.859286217305552 ], [ -95.372579008352844, 29.859243216995299 ], [ -95.372342008567358, 29.859172217138696 ], [ -95.372128008150042, 29.859084217602874 ], [ -95.372019008317366, 29.859043216794159 ], [ -95.371280008390059, 29.859039217126071 ], [ -95.368051006816287, 29.859020217620046 ], [ -95.364717006621234, 29.859039217695358 ], [ -95.362812006305333, 29.859164217377398 ], [ -95.362225006090341, 29.859203217794025 ], [ -95.362265005650357, 29.859360217775766 ], [ -95.36252900579899, 29.8605352179721 ], [ -95.36335400623328, 29.863788218531724 ], [ -95.364661006612167, 29.868997219298453 ], [ -95.364953007115233, 29.870209219426236 ], [ -95.365092006847448, 29.870737220116933 ], [ -95.36549200663589, 29.870702219617723 ], [ -95.36568700736288, 29.870675219969957 ], [ -95.365804006892802, 29.8706582193822 ], [ -95.366847007006825, 29.870480220092723 ], [ -95.367442007214535, 29.870379220084395 ], [ -95.368147008311936, 29.870267219265646 ], [ -95.368452007517348, 29.870248219604221 ], [ -95.368830008391427, 29.87025221959313 ], [ -95.369544008628921, 29.870230219644029 ], [ -95.370202008769866, 29.87024121925327 ], [ -95.371945008452812, 29.870214219125295 ], [ -95.37286200913492, 29.870214219902483 ], [ -95.372981009046242, 29.870196219229079 ], [ -95.374038008890736, 29.870190218971203 ], [ -95.375230009244234, 29.870176219781495 ], [ -95.376851010026897, 29.870149218961309 ], [ -95.377711010267831, 29.870133219340499 ], [ -95.378608010001528, 29.870124219201035 ], [ -95.379518011025269, 29.870112218803939 ], [ -95.380017010705458, 29.870112219206714 ], [ -95.38283001132443, 29.87006321938734 ], [ -95.384192012116046, 29.870046219176569 ], [ -95.384820012156666, 29.870053218949394 ], [ -95.384920012086042, 29.870055218876249 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1292, "Tract": "48201230900", "Area_SqMi": 2.4551175379438086, "total_2009": 478, "total_2010": 469, "total_2011": 493, "total_2012": 236, "total_2013": 505, "total_2014": 640, "total_2015": 857, "total_2016": 915, "total_2017": 259, "total_2018": 249, "total_2019": 250, "total_2020": 257, "age1": 46, "age2": 122, "age3": 53, "earn1": 26, "earn2": 62, "earn3": 133, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 2, "naics_s06": 59, "naics_s07": 36, "naics_s08": 28, "naics_s09": 0, "naics_s10": 0, "naics_s11": 9, "naics_s12": 0, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 5, "naics_s19": 64, "naics_s20": 0, "race1": 148, "race2": 38, "race3": 3, "race4": 31, "race5": 0, "race6": 1, "ethnicity1": 144, "ethnicity2": 77, "edu1": 42, "edu2": 47, "edu3": 46, "edu4": 40, "Shape_Length": 33002.009027296241, "Shape_Area": 68444474.982212022, "total_2021": 215, "total_2022": 221 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.292014985703972, 29.814512210405219 ], [ -95.292027985782667, 29.81167521043627 ], [ -95.292006985180876, 29.811429210219149 ], [ -95.291960985506876, 29.811166209951278 ], [ -95.291878985931078, 29.810814209671658 ], [ -95.291868985426603, 29.8106502099732 ], [ -95.291776985309411, 29.809083210070607 ], [ -95.291728985467202, 29.808329209343281 ], [ -95.291627985746629, 29.807816209340814 ], [ -95.291567985234934, 29.807540209135002 ], [ -95.291520985636936, 29.80741820982993 ], [ -95.291448985733908, 29.807231209740785 ], [ -95.291379984814014, 29.806810209487811 ], [ -95.291353985151872, 29.806425209469197 ], [ -95.291290985402497, 29.80481120906018 ], [ -95.291200984773937, 29.804720209187799 ], [ -95.291004985356054, 29.804595209174373 ], [ -95.290212984498964, 29.804422208580224 ], [ -95.290173984719246, 29.804227208656116 ], [ -95.289038984973274, 29.804254209126629 ], [ -95.288579984062494, 29.804255209008314 ], [ -95.288456984252704, 29.804255208435976 ], [ -95.287348984344106, 29.804257208708322 ], [ -95.287007983641459, 29.804243209205882 ], [ -95.286805984113485, 29.804257209344126 ], [ -95.285177983265058, 29.804290208631304 ], [ -95.284630983719609, 29.804278208618705 ], [ -95.284466983372624, 29.804278209003215 ], [ -95.284073983435746, 29.804282208912078 ], [ -95.283701982794611, 29.804259208563231 ], [ -95.28332398351813, 29.804189209123642 ], [ -95.283036982765537, 29.804101208565445 ], [ -95.28279598276437, 29.804027208893302 ], [ -95.282406982912008, 29.803872209070526 ], [ -95.2820509823717, 29.803679208938355 ], [ -95.28191298264781, 29.803618208594543 ], [ -95.281577982126223, 29.803434208868158 ], [ -95.280824982576831, 29.802931208718942 ], [ -95.280146982194665, 29.802478208428866 ], [ -95.279901982109266, 29.802585209158412 ], [ -95.269710979400443, 29.807051209834153 ], [ -95.269752979806441, 29.807729210565391 ], [ -95.269715979433116, 29.807879209938356 ], [ -95.269723980117959, 29.808197210577081 ], [ -95.26974098002276, 29.808895210208302 ], [ -95.269771980312242, 29.810122211058111 ], [ -95.269784980204591, 29.811409210738059 ], [ -95.269801979825402, 29.812480211258638 ], [ -95.269815979868056, 29.813745211626649 ], [ -95.269818980065352, 29.814995211688185 ], [ -95.26981298061753, 29.81609821190882 ], [ -95.26984597973977, 29.816920212373574 ], [ -95.269855980139894, 29.817369211731275 ], [ -95.269861980598208, 29.818634212418822 ], [ -95.269900979941681, 29.820634213176731 ], [ -95.269899980044215, 29.820877212541831 ], [ -95.269913979944278, 29.822027213431646 ], [ -95.269921980235935, 29.822264212966218 ], [ -95.269937980031813, 29.822665213579292 ], [ -95.269939980310852, 29.823273213191719 ], [ -95.2699429810542, 29.823987213562507 ], [ -95.269976980484472, 29.825732213747003 ], [ -95.269975980932244, 29.825896213465704 ], [ -95.269992980575779, 29.826529214053963 ], [ -95.27001098107813, 29.827172214186888 ], [ -95.270030980256621, 29.828575214776702 ], [ -95.270038981035427, 29.828714214257772 ], [ -95.270062981149906, 29.829873214859649 ], [ -95.270098980916359, 29.831454214938297 ], [ -95.27245598122451, 29.83143321514369 ], [ -95.273831982192192, 29.83142121503214 ], [ -95.276870982538, 29.831396215102668 ], [ -95.280367983835077, 29.831362215085207 ], [ -95.283473984335643, 29.831331214519167 ], [ -95.284278984739672, 29.831341214439355 ], [ -95.284419984319783, 29.831344214392377 ], [ -95.286701985202242, 29.831330214357433 ], [ -95.28692698519049, 29.831335214690604 ], [ -95.288480985989565, 29.831320214077785 ], [ -95.288591985383079, 29.831319214498929 ], [ -95.289644986053816, 29.83133521401448 ], [ -95.291970986052959, 29.83134221405221 ], [ -95.291932986187021, 29.829049214070967 ], [ -95.291951986496429, 29.826340213671269 ], [ -95.291944986388771, 29.826002212796965 ], [ -95.291973986331001, 29.820025211570936 ], [ -95.291980986129659, 29.819930212315686 ], [ -95.291980986053929, 29.819571211497909 ], [ -95.291982986438441, 29.819377211749735 ], [ -95.291992986200469, 29.818319211465898 ], [ -95.292001986237054, 29.817390211823554 ], [ -95.292001986163356, 29.817273211285809 ], [ -95.292008986247296, 29.815026211380768 ], [ -95.292014985703972, 29.814512210405219 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1293, "Tract": "48201231000", "Area_SqMi": 1.5930991562982899, "total_2009": 123, "total_2010": 112, "total_2011": 158, "total_2012": 164, "total_2013": 167, "total_2014": 166, "total_2015": 168, "total_2016": 168, "total_2017": 170, "total_2018": 188, "total_2019": 196, "total_2020": 178, "age1": 38, "age2": 78, "age3": 33, "earn1": 56, "earn2": 52, "earn3": 41, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 80, "naics_s08": 41, "naics_s09": 0, "naics_s10": 0, "naics_s11": 15, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 4, "naics_s17": 0, "naics_s18": 9, "naics_s19": 0, "naics_s20": 0, "race1": 82, "race2": 42, "race3": 1, "race4": 23, "race5": 0, "race6": 1, "ethnicity1": 94, "ethnicity2": 55, "edu1": 36, "edu2": 31, "edu3": 28, "edu4": 16, "Shape_Length": 31264.251578025174, "Shape_Area": 44412877.86114011, "total_2021": 174, "total_2022": 149 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.28848598641342, 29.8426772165943 ], [ -95.288485986549816, 29.840895216628262 ], [ -95.288485985950587, 29.840869216251377 ], [ -95.288426985661545, 29.838626215852585 ], [ -95.288436985919304, 29.836110215766876 ], [ -95.288426985843287, 29.835432215288474 ], [ -95.288460985269026, 29.834507215440361 ], [ -95.288475986052347, 29.832933214401958 ], [ -95.288480985989565, 29.831320214077785 ], [ -95.28692698519049, 29.831335214690604 ], [ -95.286701985202242, 29.831330214357433 ], [ -95.284419984319783, 29.831344214392377 ], [ -95.284278984739672, 29.831341214439355 ], [ -95.283473984335643, 29.831331214519167 ], [ -95.280367983835077, 29.831362215085207 ], [ -95.276870982538, 29.831396215102668 ], [ -95.273831982192192, 29.83142121503214 ], [ -95.27245598122451, 29.83143321514369 ], [ -95.270098980916359, 29.831454214938297 ], [ -95.2701149806106, 29.833512215364514 ], [ -95.270131981025514, 29.834574215256801 ], [ -95.270146981260467, 29.835386215906567 ], [ -95.270142980900445, 29.835636215786394 ], [ -95.270152981334263, 29.836175216000097 ], [ -95.270028981455567, 29.836338215776152 ], [ -95.269837981026569, 29.836499216295369 ], [ -95.269591980921248, 29.836571215933166 ], [ -95.268875980392835, 29.836574216276851 ], [ -95.267431980247466, 29.836585216224652 ], [ -95.267176980816259, 29.836587216088109 ], [ -95.265742979641686, 29.83659421649714 ], [ -95.265335979799431, 29.836590216103041 ], [ -95.265137980230051, 29.836593216438452 ], [ -95.26361397976379, 29.836590215971395 ], [ -95.262730979500404, 29.836594216151315 ], [ -95.262684978833803, 29.836649216628533 ], [ -95.262475979131111, 29.836763216807611 ], [ -95.262243978807462, 29.837046216599251 ], [ -95.262220979661649, 29.837191216305492 ], [ -95.262225979357282, 29.838071216504847 ], [ -95.262223979341172, 29.838950217080772 ], [ -95.262240978779701, 29.83976921744113 ], [ -95.262260978837034, 29.840591216850751 ], [ -95.26226097984933, 29.841426217649349 ], [ -95.262267979350739, 29.841708217655654 ], [ -95.262271978905986, 29.842247217437215 ], [ -95.262280979308812, 29.843081217537186 ], [ -95.262294979945139, 29.843575217875149 ], [ -95.262303979851637, 29.844145218108082 ], [ -95.262316979771612, 29.844921217977955 ], [ -95.262315979493394, 29.845254218531981 ], [ -95.262319980052396, 29.845988217926557 ], [ -95.262320979455453, 29.846069217981213 ], [ -95.262312979835471, 29.846418218142539 ], [ -95.262333979391272, 29.846932218491386 ], [ -95.262323979257587, 29.848105218791151 ], [ -95.262542979255358, 29.848169218426897 ], [ -95.262700979295545, 29.848130218473411 ], [ -95.262889979884335, 29.848053218671147 ], [ -95.263230979754198, 29.847801218980432 ], [ -95.263533979494014, 29.847630218681683 ], [ -95.263842980484753, 29.847487218708775 ], [ -95.264258979774766, 29.847125218719327 ], [ -95.264580980254976, 29.846932218393075 ], [ -95.264732980111063, 29.846817218457456 ], [ -95.265041979914471, 29.846789218516435 ], [ -95.26531298047226, 29.846817218280243 ], [ -95.265589980934976, 29.846883218126329 ], [ -95.266239980899144, 29.846872217940707 ], [ -95.266567980335083, 29.846790218662374 ], [ -95.266762980493908, 29.846685218183115 ], [ -95.267355981326219, 29.846246217926133 ], [ -95.26754598144278, 29.846141217993306 ], [ -95.267929980803004, 29.846070217730503 ], [ -95.2681199808667, 29.846004217698912 ], [ -95.268384980671883, 29.845790217626039 ], [ -95.268624981620675, 29.845548217573775 ], [ -95.268825981708829, 29.845235217636535 ], [ -95.26892698099914, 29.845026218250801 ], [ -95.269185981067864, 29.844773217827615 ], [ -95.269343981642606, 29.844602217529424 ], [ -95.269538981297643, 29.844487217877475 ], [ -95.269702981749276, 29.84448721770535 ], [ -95.269816980966667, 29.844493217606765 ], [ -95.269955981338271, 29.844564217993305 ], [ -95.270068981681518, 29.844767218033915 ], [ -95.270126981827929, 29.844854218191891 ], [ -95.270238981903816, 29.845021218000358 ], [ -95.270453982087673, 29.845158217833298 ], [ -95.270648982104234, 29.845186218190694 ], [ -95.271203982224449, 29.845092217674065 ], [ -95.271493981778832, 29.845081218109687 ], [ -95.271865981704821, 29.845092218103812 ], [ -95.272124982190064, 29.84501021812645 ], [ -95.272458982570413, 29.844933217931647 ], [ -95.27270498213116, 29.844961217447246 ], [ -95.27295098217364, 29.845032217800028 ], [ -95.273134982100416, 29.845101217597616 ], [ -95.273303982751926, 29.845164217325138 ], [ -95.273606981983107, 29.845324217386086 ], [ -95.273966982968332, 29.845472218030473 ], [ -95.27431298310546, 29.845566217509901 ], [ -95.274420982733034, 29.845643217565041 ], [ -95.27452098249816, 29.845747217925915 ], [ -95.274672982356023, 29.8459952181707 ], [ -95.274836982352298, 29.846385217860878 ], [ -95.27513298250858, 29.846792217789876 ], [ -95.275189983332567, 29.847056217848142 ], [ -95.275182982811813, 29.847309217740367 ], [ -95.27518898250166, 29.847518218048258 ], [ -95.275277983049477, 29.847639218137143 ], [ -95.275479983110998, 29.847815218192366 ], [ -95.276261982970894, 29.848019217836416 ], [ -95.276639983504737, 29.848134218073863 ], [ -95.27701198387733, 29.848272218470214 ], [ -95.277944983568389, 29.848558218576972 ], [ -95.278298983267817, 29.84859121867246 ], [ -95.279086984423785, 29.848613218332936 ], [ -95.279622984561598, 29.848619217926839 ], [ -95.280291984411434, 29.84866821804145 ], [ -95.280947984884079, 29.848657217976758 ], [ -95.281495985005975, 29.848668217745654 ], [ -95.281987984247849, 29.848646218457926 ], [ -95.28241698519075, 29.848641218518033 ], [ -95.28257498469452, 29.848691217891076 ], [ -95.28295998483145, 29.848900217855849 ], [ -95.283129984758418, 29.849015217805903 ], [ -95.283160984858014, 29.849065217977984 ], [ -95.283272985420325, 29.849137218659237 ], [ -95.283385985652401, 29.849208217907542 ], [ -95.283464984757273, 29.84925721838632 ], [ -95.28354298552739, 29.849307218382027 ], [ -95.284270984896636, 29.849769218704807 ], [ -95.284497985318765, 29.849863218615834 ], [ -95.284705985420146, 29.849950218776826 ], [ -95.284983985469225, 29.850093218141172 ], [ -95.285323985157447, 29.850401218692838 ], [ -95.285639985974484, 29.850522218743816 ], [ -95.285954986239645, 29.850555218601293 ], [ -95.286093986379157, 29.850561217988453 ], [ -95.286200986090122, 29.850638218270912 ], [ -95.286339986385499, 29.850791218735797 ], [ -95.286579986264798, 29.850880218532044 ], [ -95.287013986504562, 29.850959218364864 ], [ -95.28720998661305, 29.850995218540522 ], [ -95.287316986497075, 29.851017218672027 ], [ -95.287701986436588, 29.851105218732602 ], [ -95.287853986284674, 29.851166218757296 ], [ -95.288179986888679, 29.851235218069323 ], [ -95.288256986513403, 29.850909218767477 ], [ -95.288302986127505, 29.850595218087925 ], [ -95.288358986363875, 29.850040217899679 ], [ -95.288399986818092, 29.849363218357013 ], [ -95.288415986463505, 29.848233217775693 ], [ -95.288416986432196, 29.848076218207801 ], [ -95.288430986011434, 29.84632421776616 ], [ -95.288425985771639, 29.845531217640524 ], [ -95.28848598641342, 29.8426772165943 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1294, "Tract": "48201251600", "Area_SqMi": 23.273298887625174, "total_2009": 285, "total_2010": 130, "total_2011": 208, "total_2012": 240, "total_2013": 258, "total_2014": 151, "total_2015": 208, "total_2016": 186, "total_2017": 169, "total_2018": 228, "total_2019": 244, "total_2020": 233, "age1": 51, "age2": 191, "age3": 105, "earn1": 71, "earn2": 109, "earn3": 167, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 81, "naics_s05": 13, "naics_s06": 33, "naics_s07": 24, "naics_s08": 30, "naics_s09": 0, "naics_s10": 16, "naics_s11": 1, "naics_s12": 57, "naics_s13": 6, "naics_s14": 31, "naics_s15": 5, "naics_s16": 2, "naics_s17": 16, "naics_s18": 6, "naics_s19": 25, "naics_s20": 0, "race1": 290, "race2": 37, "race3": 3, "race4": 11, "race5": 0, "race6": 6, "ethnicity1": 260, "ethnicity2": 87, "edu1": 57, "edu2": 73, "edu3": 103, "edu4": 63, "Shape_Length": 132332.90706246212, "Shape_Area": 648819740.33785033, "total_2021": 293, "total_2022": 347 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.155780962534948, 30.083036270478146 ], [ -95.155783963434544, 30.082842270649991 ], [ -95.155775962957236, 30.082808270216251 ], [ -95.155717962653625, 30.082712270310893 ], [ -95.155588962529563, 30.082611270302586 ], [ -95.15542796272905, 30.082537270427945 ], [ -95.15527596255869, 30.082491269877508 ], [ -95.155162962433508, 30.082417270487717 ], [ -95.155105962381683, 30.082328269851462 ], [ -95.155012963092858, 30.082102270104638 ], [ -95.154871962672786, 30.081950269957066 ], [ -95.154782962758233, 30.081791270621427 ], [ -95.154765962582317, 30.081599270126226 ], [ -95.154773962327994, 30.081406269740437 ], [ -95.154768962721406, 30.081149269727415 ], [ -95.154718963040153, 30.080835269795404 ], [ -95.154523962814153, 30.080650269814136 ], [ -95.154272962090886, 30.080397269483289 ], [ -95.154070962083537, 30.080176269521285 ], [ -95.153804962327882, 30.079827270077427 ], [ -95.153539961960817, 30.079542269438406 ], [ -95.153397962615102, 30.079255269331977 ], [ -95.153265961703909, 30.078818269852775 ], [ -95.15323296178066, 30.078455269867668 ], [ -95.153284961606303, 30.07801526939884 ], [ -95.153409962559465, 30.077531269790239 ], [ -95.15357496191568, 30.077175269578209 ], [ -95.154252962173871, 30.076393268822248 ], [ -95.155008962185704, 30.076038268868796 ], [ -95.155250962998167, 30.075852269122279 ], [ -95.155392962823626, 30.075571268765035 ], [ -95.155571963057113, 30.075311269095558 ], [ -95.155697962410315, 30.074881268345351 ], [ -95.155663962425749, 30.074475268707264 ], [ -95.155504962943894, 30.073931268485914 ], [ -95.155143962742855, 30.073445268711055 ], [ -95.154689962200649, 30.072970268551941 ], [ -95.154186962595517, 30.072497268533525 ], [ -95.153513961672118, 30.072080268535064 ], [ -95.152758961480913, 30.071681268603211 ], [ -95.15239296111173, 30.071488268313075 ], [ -95.151451961037154, 30.071235268228751 ], [ -95.150672961568802, 30.071077268443855 ], [ -95.150050961101101, 30.071055268625678 ], [ -95.149205961042867, 30.071272267879976 ], [ -95.148231960254691, 30.071770268020401 ], [ -95.147667960221114, 30.071865268109846 ], [ -95.147027959829074, 30.071886268745182 ], [ -95.146653959824164, 30.071667268525715 ], [ -95.146336959982705, 30.071233268530825 ], [ -95.146017960110271, 30.07083726787328 ], [ -95.145157959101425, 30.068787268270015 ], [ -95.143914958749903, 30.065822267360268 ], [ -95.142787959241545, 30.063985266839403 ], [ -95.141881958303657, 30.062509266887911 ], [ -95.141214958412704, 30.061422266185456 ], [ -95.13953195823747, 30.060113265934696 ], [ -95.139330957240503, 30.059957266622181 ], [ -95.138514957371527, 30.059322265820807 ], [ -95.136762957367793, 30.057457265688491 ], [ -95.135882956958781, 30.056520265327659 ], [ -95.132314955731601, 30.052722264865448 ], [ -95.130711955268524, 30.051171264509772 ], [ -95.130259954890406, 30.050733264710566 ], [ -95.129861954438368, 30.050347264255691 ], [ -95.129463955193302, 30.049962264446719 ], [ -95.12929795441147, 30.049801264872361 ], [ -95.127805954429718, 30.048358264611192 ], [ -95.126088953349651, 30.046697264055094 ], [ -95.124372953365267, 30.045035264068101 ], [ -95.122914953036315, 30.043623263306497 ], [ -95.123425952588832, 30.042693263723447 ], [ -95.124339952736932, 30.041028262530332 ], [ -95.123434952565987, 30.041573263082405 ], [ -95.122360952146309, 30.042212263014743 ], [ -95.121867952153181, 30.042474263014899 ], [ -95.121590952632758, 30.04264226337461 ], [ -95.119508952342144, 30.043907263856759 ], [ -95.118868951996447, 30.044484263809146 ], [ -95.118589951207952, 30.044951263972482 ], [ -95.11854995213254, 30.045585264056786 ], [ -95.118537951674568, 30.045771264024264 ], [ -95.118670951392701, 30.046360264255359 ], [ -95.118446951303667, 30.046761264329028 ], [ -95.117824951618005, 30.046901264629216 ], [ -95.117090950917998, 30.046978264422808 ], [ -95.116677951517573, 30.047115264755618 ], [ -95.115679951317588, 30.047446264731647 ], [ -95.115038950462065, 30.047546264708775 ], [ -95.114247950563737, 30.047615264708256 ], [ -95.113529950047294, 30.047554264615538 ], [ -95.113333950728673, 30.047527264541152 ], [ -95.11294095026993, 30.047474264465837 ], [ -95.111574949772361, 30.047463264667449 ], [ -95.111037949363151, 30.047594265037457 ], [ -95.110659949896601, 30.047858265000539 ], [ -95.110633949486385, 30.047876264954791 ], [ -95.110276949632734, 30.048173264939319 ], [ -95.109825949257882, 30.048456265163267 ], [ -95.109307949394477, 30.048627265323308 ], [ -95.108888948942734, 30.048674264974988 ], [ -95.108514949040739, 30.048607265091462 ], [ -95.108066948954814, 30.048549265063311 ], [ -95.107667948582588, 30.048661264785324 ], [ -95.107392949239738, 30.048844265006878 ], [ -95.107019949296017, 30.049085264996979 ], [ -95.106682948401854, 30.049415265394131 ], [ -95.106467949196229, 30.049823265506287 ], [ -95.106187948302434, 30.050241265173657 ], [ -95.105885949142049, 30.050514265591104 ], [ -95.105473948841606, 30.050869265700531 ], [ -95.104473948474961, 30.051412265371621 ], [ -95.104143948238573, 30.05165226552063 ], [ -95.103727948036777, 30.051821266001568 ], [ -95.103464947988698, 30.051883266192558 ], [ -95.103430947708787, 30.051891266194353 ], [ -95.103238948349173, 30.05205626584608 ], [ -95.103134948174372, 30.052390266030905 ], [ -95.10294894833396, 30.05293226634593 ], [ -95.102804947512212, 30.053352265819338 ], [ -95.102793947957338, 30.053717265994926 ], [ -95.102622948459967, 30.053971266340707 ], [ -95.102400947665515, 30.054064266200125 ], [ -95.10189994828616, 30.054049266560817 ], [ -95.101682948167209, 30.054043266293544 ], [ -95.101378948135732, 30.054218266175564 ], [ -95.100729947389453, 30.054812266586829 ], [ -95.100483947037702, 30.055059266228856 ], [ -95.100208947115746, 30.055290266669321 ], [ -95.10000794698621, 30.055480266632923 ], [ -95.099822947699877, 30.055775267086226 ], [ -95.099787946855187, 30.055963266429064 ], [ -95.099772946995259, 30.05604326685441 ], [ -95.099890947757245, 30.056349266597156 ], [ -95.100083947904878, 30.0566302666345 ], [ -95.100228947311791, 30.056725266967383 ], [ -95.100480947184778, 30.056891267135992 ], [ -95.100864947597813, 30.056990266871775 ], [ -95.101184947333053, 30.057139266707935 ], [ -95.101506947962903, 30.057402267466852 ], [ -95.101653947748915, 30.057764267182847 ], [ -95.101763947491918, 30.05807126759796 ], [ -95.101762948109027, 30.058289267184502 ], [ -95.101713948485056, 30.058574266982347 ], [ -95.101797947557046, 30.059051267340514 ], [ -95.101815948137968, 30.05944026710419 ], [ -95.101803947689149, 30.059612267339329 ], [ -95.10179394769338, 30.059748267634113 ], [ -95.101834948428404, 30.059918267693217 ], [ -95.102184948214784, 30.060172267517725 ], [ -95.102163948041721, 30.060496267495459 ], [ -95.102095948456309, 30.060813267315769 ], [ -95.101766948567942, 30.061054267512588 ], [ -95.101664948340002, 30.061128267503314 ], [ -95.101588948548383, 30.061276267582954 ], [ -95.101502947944994, 30.062055267954367 ], [ -95.101454948269463, 30.062413267886289 ], [ -95.101448948137858, 30.062607267909097 ], [ -95.101387948314979, 30.062779268263029 ], [ -95.101183947538985, 30.06284726807889 ], [ -95.100906947460686, 30.062965268492935 ], [ -95.100816947521892, 30.063053268490872 ], [ -95.100687948092116, 30.063179268382374 ], [ -95.100626948399992, 30.063407268433981 ], [ -95.100612948124436, 30.063626268793524 ], [ -95.100617947596959, 30.063829268595324 ], [ -95.100657947456881, 30.06397426808725 ], [ -95.100834947639882, 30.064190268869769 ], [ -95.100894948473467, 30.064266268230405 ], [ -95.101035948089716, 30.064446268521596 ], [ -95.101170948512731, 30.064671268299815 ], [ -95.101177948434042, 30.064979268204873 ], [ -95.101162948016679, 30.065166268733805 ], [ -95.101110948435377, 30.065337268945552 ], [ -95.101085948266601, 30.065467269008664 ], [ -95.100909948164414, 30.065534269163464 ], [ -95.100848948036472, 30.06553226844709 ], [ -95.100741948198021, 30.065529268975766 ], [ -95.100543948020658, 30.065411269136618 ], [ -95.100273948251072, 30.065423269153943 ], [ -95.100134947634757, 30.065458268989889 ], [ -95.100043947640785, 30.065548268596352 ], [ -95.0999159481579, 30.065664268396791 ], [ -95.099832947320195, 30.065746268775577 ], [ -95.09972194727338, 30.065780269114097 ], [ -95.099554947846372, 30.065816269276592 ], [ -95.09942594796766, 30.065874269127814 ], [ -95.099362947398348, 30.065997269122519 ], [ -95.099272947949487, 30.066152268625164 ], [ -95.099172947534228, 30.066251269372476 ], [ -95.099089948122412, 30.066285268580533 ], [ -95.098885947420357, 30.066337269328201 ], [ -95.098719947592613, 30.066421269380179 ], [ -95.098583947944647, 30.06658526938671 ], [ -95.098465947353731, 30.066741268978422 ], [ -95.098478947037705, 30.066951268991815 ], [ -95.098460947023753, 30.066978268984119 ], [ -95.098370947675889, 30.067107269060962 ], [ -95.098204947372452, 30.067199269517644 ], [ -95.098001946991459, 30.067300269117435 ], [ -95.09773194763541, 30.067443269324922 ], [ -95.097797947229992, 30.068170269709817 ], [ -95.097775947053066, 30.068422269024389 ], [ -95.097684947835077, 30.068582269761269 ], [ -95.097558947359488, 30.068678269589654 ], [ -95.097390946807138, 30.06869826946231 ], [ -95.097194947702718, 30.068684269565505 ], [ -95.096667946728175, 30.068669269329824 ], [ -95.096311946618584, 30.068751269809542 ], [ -95.09587994673403, 30.069063269527618 ], [ -95.095606946642889, 30.069232269337522 ], [ -95.0954689466096, 30.069381269421704 ], [ -95.095456946704374, 30.069492269991663 ], [ -95.095459946834112, 30.069598269682462 ], [ -95.095529946904463, 30.069708270083801 ], [ -95.095559947020107, 30.069855269536202 ], [ -95.095553946588467, 30.06990426941778 ], [ -95.095536946685201, 30.070049269906878 ], [ -95.095497946843906, 30.070131269514778 ], [ -95.095280947313682, 30.070258269813181 ], [ -95.094912946367273, 30.07039926958749 ], [ -95.094509946398162, 30.070505269633099 ], [ -95.094127946102134, 30.070617270213642 ], [ -95.094116946843911, 30.07074627045872 ], [ -95.094182946907139, 30.07099227025347 ], [ -95.094191946487101, 30.071080270472297 ], [ -95.094252946376429, 30.071120269957067 ], [ -95.094627947127947, 30.071272270078406 ], [ -95.095120946404762, 30.071640270434354 ], [ -95.095143946686335, 30.071745270560001 ], [ -95.095138947250632, 30.07183927002815 ], [ -95.09505294658905, 30.071893270670422 ], [ -95.094850946721223, 30.071950270182136 ], [ -95.094602946883427, 30.072030269911728 ], [ -95.094210946875975, 30.071989270300524 ], [ -95.094020946776666, 30.07195127022192 ], [ -95.093756946502168, 30.071908270588843 ], [ -95.093521946279708, 30.071941270024084 ], [ -95.093245946709587, 30.072010269896559 ], [ -95.093051946204241, 30.072054270108367 ], [ -95.092763946602958, 30.072171270275174 ], [ -95.092516946198202, 30.072450270272029 ], [ -95.092269946553373, 30.072566270586655 ], [ -95.092127945714338, 30.072680270183895 ], [ -95.092030946282577, 30.072757270756853 ], [ -95.092026946019161, 30.072893270299083 ], [ -95.092108945891255, 30.072944270696645 ], [ -95.092218945915889, 30.073030270875236 ], [ -95.092416946640341, 30.073145270382653 ], [ -95.092625945894866, 30.073282270779671 ], [ -95.092669946348195, 30.073311270904306 ], [ -95.09277294631103, 30.07339127033557 ], [ -95.092875946487979, 30.073507270680018 ], [ -95.092945945901334, 30.073600270978485 ], [ -95.09295594660199, 30.073752270583821 ], [ -95.092931946348159, 30.073899270530834 ], [ -95.092846946828857, 30.074012270333888 ], [ -95.092713945990511, 30.074114270643406 ], [ -95.092587945863912, 30.074222271102105 ], [ -95.092515946198944, 30.074346270894875 ], [ -95.092457945945611, 30.074629270957026 ], [ -95.092410946650801, 30.074970271415655 ], [ -95.092233946526179, 30.07519027090466 ], [ -95.092171946211934, 30.075473270941707 ], [ -95.092235946584651, 30.075630271345311 ], [ -95.092311946653467, 30.075723271210805 ], [ -95.092296946009427, 30.07594027161376 ], [ -95.092178946208648, 30.07613627084077 ], [ -95.092056945963108, 30.076425271080549 ], [ -95.09205194628322, 30.076496271040693 ], [ -95.092073946247439, 30.076566271432068 ], [ -95.092141946051356, 30.076629271440492 ], [ -95.092439946890522, 30.076830271302196 ], [ -95.09252394674543, 30.076958271468445 ], [ -95.092522946339102, 30.077234271015207 ], [ -95.092532946556489, 30.077740271869608 ], [ -95.092522946931041, 30.077874271621535 ], [ -95.092386946030445, 30.078157271352186 ], [ -95.092290946877242, 30.078376271261693 ], [ -95.092172946210979, 30.078542271991154 ], [ -95.091953946617579, 30.078745271859773 ], [ -95.091739946621828, 30.078837271855594 ], [ -95.091605945950434, 30.078863272154582 ], [ -95.091511945799041, 30.078917271810678 ], [ -95.091493945817632, 30.078999271487362 ], [ -95.091573946068507, 30.079133272125688 ], [ -95.091691946264291, 30.079296271857277 ], [ -95.091815946343786, 30.079387271652852 ], [ -95.092012946199389, 30.079437271763084 ], [ -95.092316946361436, 30.079485272275541 ], [ -95.092570946634183, 30.07965127233399 ], [ -95.092487946597728, 30.079746271711986 ], [ -95.092438946381463, 30.079806272014071 ], [ -95.092274946517477, 30.08003227184831 ], [ -95.092086946008308, 30.080070272254357 ], [ -95.091817946486998, 30.080115272461232 ], [ -95.091744946450206, 30.080181272349087 ], [ -95.09175294651142, 30.080263272436646 ], [ -95.091795946602574, 30.080391272287233 ], [ -95.091832946055703, 30.080538272445366 ], [ -95.091868946861922, 30.080637271826856 ], [ -95.09185294669841, 30.080837272227054 ], [ -95.091794946320078, 30.080973271998037 ], [ -95.091701946543367, 30.081009272448718 ], [ -95.09165494668035, 30.081033271954428 ], [ -95.091566946889756, 30.081029271858377 ], [ -95.091484946389471, 30.080966272652027 ], [ -95.091402946150069, 30.080926271772 ], [ -95.091245946611735, 30.080840272285627 ], [ -95.090812946681098, 30.08080627215524 ], [ -95.09061794629082, 30.080809272002757 ], [ -95.090563946611184, 30.080834272588092 ], [ -95.090524946375936, 30.080905271969705 ], [ -95.090499945964481, 30.080981272036848 ], [ -95.090504946132583, 30.081093272671026 ], [ -95.090493945995107, 30.081187272366016 ], [ -95.090552946337453, 30.081438272275815 ], [ -95.090665945685487, 30.081671272376294 ], [ -95.090747946194767, 30.081735272189007 ], [ -95.090905945968629, 30.081826272125667 ], [ -95.091070946647974, 30.081988272210268 ], [ -95.091409946337421, 30.082053272586748 ], [ -95.091633946681455, 30.082114272393923 ], [ -95.091723946123665, 30.082236272181142 ], [ -95.09173294658909, 30.082353272259521 ], [ -95.091683946688676, 30.082577272896721 ], [ -95.091727946235366, 30.082758272192734 ], [ -95.091907946054263, 30.082961272708445 ], [ -95.091963946122021, 30.08303627268614 ], [ -95.091964946479209, 30.083100272728746 ], [ -95.091952946267384, 30.083183272685336 ], [ -95.091920946248294, 30.083271272227968 ], [ -95.091868946843249, 30.083349273099845 ], [ -95.091775946298171, 30.083432273139358 ], [ -95.091701946088605, 30.083479273141091 ], [ -95.091642946221313, 30.083516272905392 ], [ -95.091468946162834, 30.083595273137 ], [ -95.091302946954627, 30.08370427302723 ], [ -95.091231946834426, 30.083851273163145 ], [ -95.091206946628944, 30.084087273329938 ], [ -95.091111946054212, 30.084236272618281 ], [ -95.090972946786522, 30.084329272628736 ], [ -95.090845946662569, 30.084379273080586 ], [ -95.090776946729818, 30.08439027270645 ], [ -95.090687946187785, 30.08435127296864 ], [ -95.090656946683964, 30.084302272533602 ], [ -95.090637945917351, 30.084247272764138 ], [ -95.090637946492933, 30.08419227315698 ], [ -95.090693946813531, 30.083889272619782 ], [ -95.090681946386425, 30.08382327285997 ], [ -95.090643946555375, 30.083746272948609 ], [ -95.090542946482415, 30.083680272788691 ], [ -95.090289946613979, 30.083664272935263 ], [ -95.090188946126062, 30.08363127299457 ], [ -95.089947946444738, 30.083604272623031 ], [ -95.08987894646728, 30.083604273111558 ], [ -95.089802946162905, 30.083615272605492 ], [ -95.08972694558048, 30.083648272992164 ], [ -95.089682945530825, 30.08369227313241 ], [ -95.089650946463138, 30.083780273109912 ], [ -95.089774945684226, 30.084042273276872 ], [ -95.09008494576986, 30.084509273126525 ], [ -95.090432946311182, 30.084752273464986 ], [ -95.090409945791365, 30.085017272939179 ], [ -95.090397946538431, 30.085072272900977 ], [ -95.090359946372118, 30.085138273555625 ], [ -95.090302946753923, 30.085204273145806 ], [ -95.090232946272735, 30.085242272937379 ], [ -95.090125945980674, 30.085248273057221 ], [ -95.090087945908763, 30.085231273259907 ], [ -95.090017946508112, 30.085171273433748 ], [ -95.089897946464703, 30.085022273156024 ], [ -95.089726945675139, 30.084857273019658 ], [ -95.08967694580771, 30.084830273029272 ], [ -95.089606946137778, 30.084819272740656 ], [ -95.089549945614266, 30.084824273432709 ], [ -95.089492946211564, 30.08486327295207 ], [ -95.089454946176104, 30.084901273498634 ], [ -95.089423946283844, 30.084951273361298 ], [ -95.089429945962266, 30.085116273462372 ], [ -95.089461946403475, 30.085171273348745 ], [ -95.089512946033878, 30.085231273202208 ], [ -95.089682946199005, 30.085402273200479 ], [ -95.08981594633471, 30.085611272897804 ], [ -95.089872946140559, 30.085737272976154 ], [ -95.089853946170322, 30.085781273696529 ], [ -95.089784945846205, 30.085853273175175 ], [ -95.089480946177588, 30.086067273031496 ], [ -95.089297946021929, 30.086249273364622 ], [ -95.089259946476446, 30.086320273448145 ], [ -95.089164945738233, 30.086425273137166 ], [ -95.089063945566295, 30.086463273149384 ], [ -95.088943946350312, 30.086474273023821 ], [ -95.088810945736086, 30.086469273456885 ], [ -95.088633945863123, 30.086381273153492 ], [ -95.08846994549468, 30.086249273491624 ], [ -95.08829894615927, 30.086139273077844 ], [ -95.088197945863712, 30.086106273536462 ], [ -95.088108945368759, 30.086101273657672 ], [ -95.088001945690905, 30.086112273658564 ], [ -95.087893945830928, 30.086145273384396 ], [ -95.087760945233214, 30.086200273015905 ], [ -95.08765394521545, 30.086200273168895 ], [ -95.087539945112653, 30.086189273037871 ], [ -95.087362945246142, 30.086145273783664 ], [ -95.087248945844976, 30.086101273821498 ], [ -95.087147945034445, 30.086079273032034 ], [ -95.087033945811811, 30.086084273585509 ], [ -95.086856945859893, 30.08616727325391 ], [ -95.086629945474755, 30.086321273869451 ], [ -95.086496945299103, 30.086442273302151 ], [ -95.086351945782567, 30.08662327376824 ], [ -95.086091945062194, 30.08687627380754 ], [ -95.08587094543438, 30.087052273713919 ], [ -95.085200944578631, 30.08749227397352 ], [ -95.08486594469008, 30.08774527386117 ], [ -95.084422944564366, 30.088103273500639 ], [ -95.084309944400772, 30.088240274051493 ], [ -95.084214945293539, 30.088416273853856 ], [ -95.083885945272954, 30.08893327413918 ], [ -95.083847944690703, 30.089016274224626 ], [ -95.083841944382812, 30.089104273772634 ], [ -95.083873945060958, 30.089241274340157 ], [ -95.083923944885882, 30.089329274085021 ], [ -95.084233944961781, 30.089769274414696 ], [ -95.084379944558691, 30.08992327471174 ], [ -95.084638944824377, 30.09011027446811 ], [ -95.085473945369685, 30.0908242740324 ], [ -95.085530944984427, 30.090896274520802 ], [ -95.08554294507212, 30.090940274619708 ], [ -95.085536945176969, 30.091006274146071 ], [ -95.085492945245846, 30.091050274746106 ], [ -95.08521494535745, 30.091193274274417 ], [ -95.085094945076051, 30.091215274903202 ], [ -95.084853945434034, 30.091204274259649 ], [ -95.084765945304255, 30.091209274688943 ], [ -95.084676944820117, 30.091231274203075 ], [ -95.084632945456406, 30.091275274548142 ], [ -95.084600944914669, 30.091352274573183 ], [ -95.084531945445192, 30.091776274260265 ], [ -95.084468945129501, 30.091886274491817 ], [ -95.084272944698469, 30.092117274667107 ], [ -95.084044944647857, 30.09226527461183 ], [ -95.083956945317254, 30.092309274855964 ], [ -95.083861945221727, 30.092320274655826 ], [ -95.08377994493685, 30.092315274697949 ], [ -95.083671944627525, 30.092265274474201 ], [ -95.08358394461969, 30.092199274423979 ], [ -95.083475944514717, 30.092018275011242 ], [ -95.083469944871055, 30.09191327500465 ], [ -95.083481945193554, 30.091809275062609 ], [ -95.083519944339841, 30.091732274927352 ], [ -95.083595945338004, 30.091677274305482 ], [ -95.083652945015459, 30.091600274325216 ], [ -95.083665944663707, 30.091523274316273 ], [ -95.083646944560186, 30.091474274401243 ], [ -95.083500944694777, 30.09139127499137 ], [ -95.083450944396276, 30.091380274766902 ], [ -95.083266944372227, 30.091402275047244 ], [ -95.083133945192372, 30.09145227510346 ], [ -95.082609944797738, 30.091694274854291 ], [ -95.0823819440715, 30.091771274962589 ], [ -95.082267944445434, 30.091672274998874 ], [ -95.082166944797962, 30.091622274426729 ], [ -95.081989944815163, 30.091578274714976 ], [ -95.081818944561405, 30.091573274842915 ], [ -95.081736944166792, 30.091589274417089 ], [ -95.08167394415409, 30.091622274710353 ], [ -95.081464944453884, 30.091842274370599 ], [ -95.08136994378431, 30.091969275060453 ], [ -95.081363944063398, 30.092051274641111 ], [ -95.08137694435834, 30.092101275252215 ], [ -95.081426944750319, 30.092150274639945 ], [ -95.081521944126777, 30.092183274771767 ], [ -95.081629944791231, 30.092200274481197 ], [ -95.081724944859189, 30.092183274606391 ], [ -95.081888944734644, 30.09213427507428 ], [ -95.081932944100558, 30.092156274749055 ], [ -95.082090944184287, 30.092271274783176 ], [ -95.082103944864784, 30.092321275319776 ], [ -95.08203394474269, 30.092420274923992 ], [ -95.081743944480891, 30.092634274938064 ], [ -95.081597944725587, 30.092700274806987 ], [ -95.08143394418093, 30.092761274568151 ], [ -95.081104944413852, 30.093003275502525 ], [ -95.080813944384317, 30.093250274689126 ], [ -95.08071294381233, 30.093349275257811 ], [ -95.080598944021673, 30.093426274975176 ], [ -95.080377944284251, 30.093740275061478 ], [ -95.080339944388314, 30.093877275424372 ], [ -95.0803399444398, 30.09411927556685 ], [ -95.080358944447028, 30.094196275778792 ], [ -95.080403943646303, 30.094311275038546 ], [ -95.080472944641485, 30.094438275054237 ], [ -95.080573943690382, 30.094548275147762 ], [ -95.080649944132276, 30.094614275708665 ], [ -95.08070694419672, 30.094696275810232 ], [ -95.080731944624176, 30.094779275589886 ], [ -95.080738944297792, 30.094927275831004 ], [ -95.080681943996098, 30.095037275032968 ], [ -95.080536944431884, 30.095197275732222 ], [ -95.080403944010556, 30.09526827575009 ], [ -95.080257944520326, 30.095301275591666 ], [ -95.080150944183956, 30.095307275297419 ], [ -95.080017943954246, 30.095279275383259 ], [ -95.079713944277799, 30.095175275968323 ], [ -95.079555943539944, 30.095131275751978 ], [ -95.079043944211008, 30.094944275571844 ], [ -95.078955944077222, 30.094933275731542 ], [ -95.078809943491621, 30.09496627577845 ], [ -95.07877794414695, 30.094983275206463 ], [ -95.078746944072009, 30.095027275520749 ], [ -95.078714943996815, 30.095142275302692 ], [ -95.078727943967436, 30.09543927597371 ], [ -95.078714944193337, 30.095560275529849 ], [ -95.078613943308568, 30.095846275981586 ], [ -95.078563943893329, 30.096055275914445 ], [ -95.078569943642378, 30.096143275825106 ], [ -95.078626943447489, 30.096253275715629 ], [ -95.078696943466298, 30.096291275788484 ], [ -95.079043944255503, 30.096456276193017 ], [ -95.079315943768975, 30.096528275902951 ], [ -95.079606944482222, 30.096638275956614 ], [ -95.079796943940849, 30.096747275574774 ], [ -95.079853943605826, 30.096808276074892 ], [ -95.079891943920686, 30.096868275772085 ], [ -95.079904944107511, 30.096945276134591 ], [ -95.079891944147349, 30.097028275547256 ], [ -95.079847944333636, 30.097132276290804 ], [ -95.079796943799778, 30.097209276286101 ], [ -95.079587944452626, 30.097413275573619 ], [ -95.079436944215786, 30.097512275872479 ], [ -95.079196943962671, 30.097611275672939 ], [ -95.079018943477493, 30.097649275865983 ], [ -95.078949943714207, 30.097715276418402 ], [ -95.078943944032048, 30.097770276078226 ], [ -95.078968944256772, 30.097831276112643 ], [ -95.079025944234871, 30.097891275918958 ], [ -95.079234943934566, 30.098034275770512 ], [ -95.079271943699084, 30.098100276052772 ], [ -95.079303944059518, 30.098199276284454 ], [ -95.079297943586567, 30.098260275753365 ], [ -95.079253943749819, 30.098370276117141 ], [ -95.079221943515009, 30.098425275765699 ], [ -95.079113944384787, 30.09850727656864 ], [ -95.078974943827902, 30.098590275934995 ], [ -95.078874943457649, 30.098636276151723 ], [ -95.078538944065699, 30.098788276089525 ], [ -95.078127944056305, 30.09900227673392 ], [ -95.078020943980604, 30.099079276330503 ], [ -95.078001943270706, 30.099167276222921 ], [ -95.078026943626497, 30.099250276393079 ], [ -95.07807094427244, 30.099332276456366 ], [ -95.078184943336979, 30.099437276661476 ], [ -95.078380944244941, 30.099530276047094 ], [ -95.078456944090078, 30.099558276608374 ], [ -95.078760944167556, 30.09974427662047 ], [ -95.078861943870308, 30.099827276210029 ], [ -95.078911944282581, 30.099898276284684 ], [ -95.078924943567799, 30.099953276664863 ], [ -95.078918944311823, 30.100036276994317 ], [ -95.07886794397669, 30.100124276153895 ], [ -95.078747944455969, 30.100206276913568 ], [ -95.078671943776754, 30.100217276751472 ], [ -95.078595943684064, 30.10021227642078 ], [ -95.078507943976931, 30.100184276187999 ], [ -95.078292943756551, 30.100151276284357 ], [ -95.078178943458269, 30.100157276186451 ], [ -95.078102943958186, 30.100179276176895 ], [ -95.078039943782599, 30.100217276356236 ], [ -95.078007943826293, 30.100371276958416 ], [ -95.077995944132695, 30.100553276758092 ], [ -95.077950944077017, 30.100718276755728 ], [ -95.077862943445808, 30.100789276409877 ], [ -95.077761944000571, 30.100822276702715 ], [ -95.07767294345976, 30.100828277060778 ], [ -95.077552944147286, 30.100811276463411 ], [ -95.077463943299819, 30.100778276434113 ], [ -95.077312944072006, 30.100745276415122 ], [ -95.077211943420281, 30.100778277166842 ], [ -95.076983943923452, 30.100883276533636 ], [ -95.076667943920754, 30.100938276807355 ], [ -95.076565943187475, 30.100982277225281 ], [ -95.076515943198714, 30.101169277090019 ], [ -95.076547943174134, 30.101455277230954 ], [ -95.076553943819775, 30.101647277150388 ], [ -95.076534943621198, 30.101950276813081 ], [ -95.076452943161271, 30.102049277151302 ], [ -95.07637094360993, 30.102093277092738 ], [ -95.076300943695244, 30.102098276709253 ], [ -95.076199943434659, 30.102082277097338 ], [ -95.076092943221141, 30.102032276886717 ], [ -95.075800942826035, 30.101834276827322 ], [ -95.075642942919529, 30.101746276963389 ], [ -95.075554943463828, 30.101719276764833 ], [ -95.075440943625097, 30.10170227701942 ], [ -95.075370943602024, 30.101719276705929 ], [ -95.07530794343873, 30.101752276835711 ], [ -95.075250943422546, 30.101801277121076 ], [ -95.075212942734396, 30.101856276696211 ], [ -95.075187942898836, 30.101944277078672 ], [ -95.075206943216386, 30.102142277288099 ], [ -95.075250943397847, 30.102346276828335 ], [ -95.07523894334193, 30.102566277403156 ], [ -95.075194942707441, 30.102659277052904 ], [ -95.07511194283282, 30.102747277680255 ], [ -95.074953942956768, 30.102890277225885 ], [ -95.074858943353078, 30.102956277652311 ], [ -95.074789942759963, 30.102995277320012 ], [ -95.074694942852659, 30.103006277243768 ], [ -95.074568943070432, 30.102984276992544 ], [ -95.074485943409428, 30.102912277608123 ], [ -95.07439794250908, 30.102769276935781 ], [ -95.074296942791733, 30.102560277639331 ], [ -95.074251943379267, 30.102417276789687 ], [ -95.074213942623572, 30.102192277070763 ], [ -95.074099942826166, 30.101741277239007 ], [ -95.074068942495217, 30.101703277259848 ], [ -95.074011942420398, 30.101686277073618 ], [ -95.073954942888022, 30.101686277156453 ], [ -95.073878943064344, 30.10171427733837 ], [ -95.073695943020041, 30.101824277049165 ], [ -95.073606942526197, 30.101901277132818 ], [ -95.073429942274529, 30.102115277600937 ], [ -95.073145942482412, 30.102555277491511 ], [ -95.072993942112362, 30.10283527725343 ], [ -95.072885942694398, 30.10296727750417 ], [ -95.072791942079775, 30.103039277537896 ], [ -95.072696942116949, 30.10307227694318 ], [ -95.072609942883474, 30.103059277789868 ], [ -95.072770942220927, 30.103227277487036 ], [ -95.073291942692521, 30.103714277306253 ], [ -95.073309942859112, 30.103766277677508 ], [ -95.073561942914651, 30.104476277492829 ], [ -95.074320943316039, 30.106607277895389 ], [ -95.074573943418855, 30.107318277763575 ], [ -95.074938943162309, 30.108346278784207 ], [ -95.075042943614676, 30.108639278879632 ], [ -95.076036943944374, 30.111432278741113 ], [ -95.076402943602517, 30.112461279112924 ], [ -95.076814944244163, 30.113619279316406 ], [ -95.078050944950903, 30.117093280179894 ], [ -95.078462944446372, 30.118251280239971 ], [ -95.07864694451375, 30.118770280556436 ], [ -95.079201944699435, 30.120330281092883 ], [ -95.079386944720071, 30.120850281041431 ], [ -95.080215945159551, 30.123182281531076 ], [ -95.082705946327209, 30.130180282567132 ], [ -95.083535947168841, 30.132513283364048 ], [ -95.083560947180089, 30.132583283255631 ], [ -95.083635946261154, 30.132794282964738 ], [ -95.083660946288504, 30.132865282934016 ], [ -95.083844947150382, 30.133383283265786 ], [ -95.084513947355489, 30.135267283964769 ], [ -95.084597946867689, 30.135503283904828 ], [ -95.084677947269242, 30.135666283253094 ], [ -95.084880946764372, 30.136231283307193 ], [ -95.085217947737107, 30.137051283657872 ], [ -95.085241947175604, 30.137138283696586 ], [ -95.085255946848676, 30.137188283937075 ], [ -95.08533294715896, 30.137394283871618 ], [ -95.085364947380981, 30.13747928364501 ], [ -95.085368947388986, 30.137491283985668 ], [ -95.085383947296435, 30.137530284174989 ], [ -95.085388947279711, 30.137543283937017 ], [ -95.085436947202624, 30.137671283601712 ], [ -95.08558094752415, 30.138056284359187 ], [ -95.085628947828539, 30.138185284031287 ], [ -95.085815948024731, 30.138688284485017 ], [ -95.086033948150956, 30.139277283925932 ], [ -95.08637694798675, 30.140200284556897 ], [ -95.086564948180836, 30.140705284673476 ], [ -95.086574947644294, 30.140720284709513 ], [ -95.086591948019972, 30.140766284944434 ], [ -95.086643948218395, 30.14090528501276 ], [ -95.086661947635946, 30.140952284616876 ], [ -95.086740947972601, 30.141165284416232 ], [ -95.086980947982283, 30.141805284968846 ], [ -95.087060947572368, 30.142019284757911 ], [ -95.08829194888898, 30.145315285747611 ], [ -95.09198594973455, 30.15520328774813 ], [ -95.092991950715302, 30.157895287747074 ], [ -95.093067950801213, 30.158098288312566 ], [ -95.093234950816452, 30.158493287828147 ], [ -95.093272950058235, 30.158580288423547 ], [ -95.093698950456314, 30.159588288474669 ], [ -95.095477951285915, 30.163794288653563 ], [ -95.095567951437346, 30.16404328868877 ], [ -95.095680950814341, 30.164355289385071 ], [ -95.095842950904895, 30.164803289136799 ], [ -95.096003951037687, 30.165251289340954 ], [ -95.096080951513301, 30.165467289497389 ], [ -95.096314951720828, 30.166115289889774 ], [ -95.096393951082945, 30.166331289080389 ], [ -95.096403951607982, 30.16638428978175 ], [ -95.0964649520634, 30.166527289908764 ], [ -95.096482951166251, 30.166577289519083 ], [ -95.096714951567535, 30.167219289787049 ], [ -95.106097953433903, 30.15964428761913 ], [ -95.11545295600861, 30.152092286357878 ], [ -95.115511955908332, 30.152041285800674 ], [ -95.115912956287971, 30.151699285422374 ], [ -95.116313956174281, 30.151358285762115 ], [ -95.11724495584869, 30.150606285791245 ], [ -95.117863956746262, 30.150107285320409 ], [ -95.118438956645193, 30.149644285688993 ], [ -95.119085956286909, 30.149123285027525 ], [ -95.1221739568864, 30.146554284896556 ], [ -95.123608957254604, 30.145360283911355 ], [ -95.124012957179957, 30.145021284461738 ], [ -95.124312957326254, 30.144622283964129 ], [ -95.124476957875444, 30.144510283695531 ], [ -95.124429957585676, 30.144347283904843 ], [ -95.124359957989242, 30.144176284105036 ], [ -95.124340957875432, 30.144039283742849 ], [ -95.124334957826392, 30.143868283848867 ], [ -95.124378958194868, 30.143736283984676 ], [ -95.124542957653873, 30.143483284218547 ], [ -95.1245749582407, 30.143412283530822 ], [ -95.124580957635857, 30.14331328392322 ], [ -95.124555957642428, 30.143241283636566 ], [ -95.124529957786365, 30.143060283333003 ], [ -95.124497957862374, 30.142928283430468 ], [ -95.124497957775731, 30.142774283704043 ], [ -95.124510957852721, 30.142686283700929 ], [ -95.124554957480925, 30.142554283717001 ], [ -95.12458695800089, 30.142389283373259 ], [ -95.124649957502427, 30.142219283884597 ], [ -95.124655957651711, 30.141861283819019 ], [ -95.124668958181445, 30.141790283553931 ], [ -95.12481995729442, 30.141542283858385 ], [ -95.124838957298593, 30.14142128300535 ], [ -95.124819957307082, 30.141361283372131 ], [ -95.12474995732741, 30.141289283657276 ], [ -95.124680957882561, 30.141240283265383 ], [ -95.124465957339936, 30.141119282969406 ], [ -95.124344957442773, 30.141026283787294 ], [ -95.124268957639643, 30.140943283200681 ], [ -95.124243957637717, 30.140894283094855 ], [ -95.124142957323144, 30.140663283025383 ], [ -95.124104957277893, 30.14050928303292 ], [ -95.124078957708363, 30.140294282854907 ], [ -95.124085957426558, 30.140206283201401 ], [ -95.124078957263251, 30.140129282816019 ], [ -95.124116957070854, 30.139975283022711 ], [ -95.124116957276243, 30.139909283192342 ], [ -95.124103957682195, 30.139854283471028 ], [ -95.124065957657976, 30.139799282720272 ], [ -95.124147957774568, 30.13942628294043 ], [ -95.124242957632703, 30.139277283263773 ], [ -95.124293957437388, 30.139233282846636 ], [ -95.124362957111487, 30.139200283084538 ], [ -95.124470957836635, 30.139123282780638 ], [ -95.124508957770658, 30.139079283203433 ], [ -95.124558957231244, 30.13898028302269 ], [ -95.125007957782231, 30.139123282675691 ], [ -95.125263957883078, 30.139215282781027 ], [ -95.12542195771691, 30.139231282935395 ], [ -95.125528957958409, 30.139226283160085 ], [ -95.125718957462055, 30.139154283082071 ], [ -95.125845958224602, 30.139088283018225 ], [ -95.126047957464436, 30.138973282922699 ], [ -95.126149958087481, 30.138902283258787 ], [ -95.126180958166501, 30.138852283254369 ], [ -95.126193957691839, 30.138786283235497 ], [ -95.126168957589158, 30.138731282894955 ], [ -95.126123957572744, 30.138676282399118 ], [ -95.126003957747074, 30.138599282379584 ], [ -95.125896957997583, 30.138544282346594 ], [ -95.125788957997031, 30.138467282950867 ], [ -95.125643958087423, 30.138297283115993 ], [ -95.125573957946258, 30.138198282973562 ], [ -95.125535957818158, 30.138115282691768 ], [ -95.125517957632781, 30.138011282480207 ], [ -95.125523958202294, 30.137945283070035 ], [ -95.125687957690005, 30.1377302825302 ], [ -95.125833957558044, 30.137598282901479 ], [ -95.125909958185105, 30.137510283002069 ], [ -95.125915957696932, 30.137389282896162 ], [ -95.1259099574483, 30.137340282389115 ], [ -95.125852957839399, 30.137219282855224 ], [ -95.125802957722527, 30.13715828293223 ], [ -95.125802958203082, 30.137016282247881 ], [ -95.125840957775409, 30.136867282349339 ], [ -95.125922957862088, 30.136768282708623 ], [ -95.125966957409489, 30.136741282019965 ], [ -95.126011957839864, 30.136724282201545 ], [ -95.126087957568387, 30.136719282748587 ], [ -95.126175957755208, 30.136735282444718 ], [ -95.126295957804956, 30.13676828281605 ], [ -95.126694958508082, 30.136972282545109 ], [ -95.126789958177326, 30.137005282801407 ], [ -95.126858958117808, 30.137011282749075 ], [ -95.126953957578735, 30.136989282245072 ], [ -95.127124957596365, 30.136884282479873 ], [ -95.127377958531724, 30.136642282091582 ], [ -95.127706957769107, 30.136379282048679 ], [ -95.127782958751155, 30.136274282247498 ], [ -95.127814958209015, 30.136214282617008 ], [ -95.127852958120044, 30.136060282640095 ], [ -95.127840957750621, 30.135653281686842 ], [ -95.127852958223301, 30.135444281693033 ], [ -95.127871958290683, 30.135345282325726 ], [ -95.12793595844758, 30.135169282272042 ], [ -95.128144958560767, 30.134845282304571 ], [ -95.128175958140432, 30.134729281913597 ], [ -95.128163958495364, 30.134685281648355 ], [ -95.12799895830905, 30.134487281532436 ], [ -95.127960957807687, 30.134421281618629 ], [ -95.127935958078766, 30.134344282149968 ], [ -95.127929958523723, 30.134267281780907 ], [ -95.128011958644095, 30.133992281407657 ], [ -95.128233958605804, 30.133569281451251 ], [ -95.12837995842419, 30.133437281815972 ], [ -95.128961958597714, 30.133031281773281 ], [ -95.12919595809943, 30.132915281889463 ], [ -95.129106958480662, 30.132794281465014 ], [ -95.128942958371027, 30.13264028187989 ], [ -95.128885958706391, 30.132547281574503 ], [ -95.128753957958352, 30.13193128149312 ], [ -95.128538958523848, 30.131953281520929 ], [ -95.128449958020767, 30.131953281233102 ], [ -95.12834195801706, 30.131931281556742 ], [ -95.128234957814882, 30.131892280973137 ], [ -95.12805195821241, 30.131782281694711 ], [ -95.128006957644047, 30.131722281125182 ], [ -95.127962958336411, 30.131617281600061 ], [ -95.127956958103397, 30.131557280943689 ], [ -95.128076958090091, 30.13083628099114 ], [ -95.128134957651554, 30.130385280992009 ], [ -95.128254958418722, 30.129775280484495 ], [ -95.128387958005277, 30.129374280540553 ], [ -95.128533958437387, 30.129138280634571 ], [ -95.128691958670586, 30.129017280521069 ], [ -95.128862958306613, 30.128929280279394 ], [ -95.128938958601296, 30.128868280316727 ], [ -95.129096957853562, 30.128709280566945 ], [ -95.129318958076709, 30.128511280227713 ], [ -95.129564958463604, 30.128429280960269 ], [ -95.129748958288815, 30.128352280219818 ], [ -95.130045958809717, 30.12806628028731 ], [ -95.130229958053448, 30.127841280888667 ], [ -95.130343958730336, 30.127753280597126 ], [ -95.130431958873302, 30.127802280043507 ], [ -95.130488958117141, 30.127846280592511 ], [ -95.130539958074408, 30.127912280316085 ], [ -95.13056495815681, 30.127995280072241 ], [ -95.130545958887168, 30.12824828037073 ], [ -95.130595958472583, 30.128297280330589 ], [ -95.130665958795092, 30.128330280097483 ], [ -95.130836958934353, 30.128336280121761 ], [ -95.130931958606723, 30.128308280935325 ], [ -95.130981958614541, 30.128259280383464 ], [ -95.131007959163, 30.128193280080659 ], [ -95.131007958303456, 30.128116280790291 ], [ -95.130975958801812, 30.127945280727975 ], [ -95.13102695854603, 30.127550280171469 ], [ -95.130950959136641, 30.127341280593093 ], [ -95.130824958840904, 30.127143280484219 ], [ -95.130754958636871, 30.127060280456249 ], [ -95.130824958854902, 30.126846279813623 ], [ -95.130945958741918, 30.126191280270998 ], [ -95.130976958362339, 30.126092279750438 ], [ -95.131040958435307, 30.125972279708751 ], [ -95.131122959068904, 30.12575728009455 ], [ -95.131230958732672, 30.125312280327641 ], [ -95.1312299586059, 30.125000279938241 ], [ -95.13118595829917, 30.124813279519437 ], [ -95.131109958509825, 30.124714279618182 ], [ -95.131109958745029, 30.124560279982479 ], [ -95.131147958082522, 30.124351279580303 ], [ -95.131261958923545, 30.124043279653481 ], [ -95.131741958600472, 30.123263279397918 ], [ -95.131910958601466, 30.122998279155382 ], [ -95.132648959372233, 30.122130278914113 ], [ -95.132778958586073, 30.121953279368292 ], [ -95.132885958764845, 30.121608278851351 ], [ -95.132989958503799, 30.121455279374597 ], [ -95.133274958841824, 30.121334279263493 ], [ -95.133405959327675, 30.121186279157925 ], [ -95.133645958836894, 30.120518279258491 ], [ -95.133771959306884, 30.120306278588867 ], [ -95.133936959544272, 30.120164278492773 ], [ -95.134180958995884, 30.120014278306545 ], [ -95.134360958893538, 30.119953279080928 ], [ -95.134632959470309, 30.11983827858603 ], [ -95.135060959419533, 30.119185278180929 ], [ -95.135316959253586, 30.118918278118471 ], [ -95.135619959026755, 30.118704278573233 ], [ -95.136476959676656, 30.118346278524761 ], [ -95.136872959342455, 30.118206278187458 ], [ -95.1373169595185, 30.117977278368105 ], [ -95.137605959863379, 30.11771627843066 ], [ -95.137792960001775, 30.117393277660927 ], [ -95.13807595983954, 30.116852278147388 ], [ -95.138201960088296, 30.116472277630507 ], [ -95.138213959612386, 30.11623327824466 ], [ -95.138215959763627, 30.116192277484316 ], [ -95.138200959618999, 30.116111277397838 ], [ -95.138122960055171, 30.115431277306453 ], [ -95.138044960234694, 30.11493727734895 ], [ -95.138030960099982, 30.114582277819459 ], [ -95.137933959970923, 30.114158277748082 ], [ -95.137887959302532, 30.113935277484678 ], [ -95.137881959641021, 30.113908277588905 ], [ -95.137866960059128, 30.113682277382594 ], [ -95.138021959484888, 30.1133942774781 ], [ -95.138501960018218, 30.112996277421303 ], [ -95.138873959497104, 30.112856277393753 ], [ -95.139093960382525, 30.112805277157207 ], [ -95.139597959930384, 30.112541277090109 ], [ -95.140132960020594, 30.112200277318038 ], [ -95.140593960490321, 30.112146276980077 ], [ -95.140969960963318, 30.112187276842985 ], [ -95.140988960576877, 30.112200277306137 ], [ -95.141241960513426, 30.112386276547571 ], [ -95.141434960255836, 30.112447276939672 ], [ -95.14170796097963, 30.112396276891591 ], [ -95.141898961121754, 30.112324276464957 ], [ -95.141915960316638, 30.112312276493483 ], [ -95.142098960359604, 30.112180276798028 ], [ -95.142262960549488, 30.112020276895027 ], [ -95.142318961318949, 30.111838276826859 ], [ -95.14232896033586, 30.111687277017815 ], [ -95.142438960568583, 30.111499276542762 ], [ -95.142487960621338, 30.111462276787975 ], [ -95.142728960709363, 30.111278276835847 ], [ -95.143067960770736, 30.111139276631906 ], [ -95.143173960808767, 30.111075276939992 ], [ -95.143464960844724, 30.110900276438787 ], [ -95.143660961436055, 30.110704276526782 ], [ -95.144064960773591, 30.110162276478277 ], [ -95.144635961404077, 30.109442276424058 ], [ -95.144765961725483, 30.109259275749924 ], [ -95.144963961651342, 30.109128276387455 ], [ -95.145128961029698, 30.109044275879366 ], [ -95.145282961609468, 30.109000276153267 ], [ -95.145509961084969, 30.108991276418358 ], [ -95.145690961406515, 30.108988276203519 ], [ -95.145831961550755, 30.109015275819441 ], [ -95.14598096181912, 30.109065275795725 ], [ -95.146069961817616, 30.109168276161828 ], [ -95.14625996151662, 30.109299276496124 ], [ -95.14636296166951, 30.109379275749312 ], [ -95.14657796208823, 30.109433275925479 ], [ -95.146863962043085, 30.109347276384501 ], [ -95.146929961737996, 30.109290276405023 ], [ -95.147028961927973, 30.109205275993347 ], [ -95.14707696157771, 30.108959275826859 ], [ -95.147123961747155, 30.10867327552138 ], [ -95.147145962436142, 30.108417275800981 ], [ -95.147420961940298, 30.108156275658008 ], [ -95.147774961583707, 30.107934275650152 ], [ -95.148038962291878, 30.107750275503143 ], [ -95.14813796195692, 30.107715275624624 ], [ -95.148264962520642, 30.107670276159372 ], [ -95.148677962070579, 30.107588275424408 ], [ -95.149152962894561, 30.107533275410528 ], [ -95.149358961979914, 30.107524275313732 ], [ -95.14937996214897, 30.107525275654115 ], [ -95.14972296223614, 30.107582275659865 ], [ -95.150136963112416, 30.107814275953203 ], [ -95.150279962469625, 30.107917276080943 ], [ -95.150568962929498, 30.10798227570805 ], [ -95.150776963238954, 30.107996276105109 ], [ -95.150800963155476, 30.107992275852734 ], [ -95.151000962777317, 30.107957275837101 ], [ -95.151159963055804, 30.107902275224429 ], [ -95.151285962440156, 30.107813276069056 ], [ -95.151357962657329, 30.107736275883571 ], [ -95.151421963483727, 30.107613275963256 ], [ -95.151411962472139, 30.107438275798746 ], [ -95.151346962918538, 30.107218275685831 ], [ -95.151114962524233, 30.106750275514401 ], [ -95.150223963018959, 30.105792275173727 ], [ -95.149950962192648, 30.105443274806394 ], [ -95.149916962892462, 30.105401275544871 ], [ -95.149826962592982, 30.105257275554219 ], [ -95.149810962006313, 30.10514627478781 ], [ -95.149781962655624, 30.105042275276485 ], [ -95.149858962640593, 30.104889275128663 ], [ -95.149864962298736, 30.104843275352469 ], [ -95.149929962591415, 30.104772275511564 ], [ -95.150137962561971, 30.104757275106628 ], [ -95.150370963011142, 30.104718274700598 ], [ -95.150598963008875, 30.104720274727367 ], [ -95.150725962738491, 30.104694274892303 ], [ -95.15093696270111, 30.104582274572156 ], [ -95.1509539631178, 30.104571275429947 ], [ -95.151075962381867, 30.104462274602788 ], [ -95.151213962665906, 30.104366275354113 ], [ -95.151194962565128, 30.103015274512885 ], [ -95.15104196284841, 30.102651274874702 ], [ -95.150912962762916, 30.102344274536513 ], [ -95.149983962721407, 30.101696274735193 ], [ -95.149686962006157, 30.101488274230785 ], [ -95.149559961862963, 30.1012952743142 ], [ -95.14952296219316, 30.101132274150597 ], [ -95.149525962213048, 30.100946274428829 ], [ -95.149535962536461, 30.100806274034955 ], [ -95.149659962388441, 30.10062327456378 ], [ -95.149796961793712, 30.100487273804685 ], [ -95.150123962140199, 30.100412274138513 ], [ -95.150436962444942, 30.100308274285656 ], [ -95.150580961966497, 30.100189274517078 ], [ -95.150698962029423, 30.100065274405981 ], [ -95.150735962219031, 30.09991827446358 ], [ -95.150745962669276, 30.099726274118684 ], [ -95.150667962894516, 30.099547273988414 ], [ -95.150557962508117, 30.099490273518889 ], [ -95.150226962355319, 30.099319273626595 ], [ -95.150068962026126, 30.099240273496541 ], [ -95.149492961650822, 30.098966274263688 ], [ -95.149468962494069, 30.098944274311616 ], [ -95.149246961759289, 30.098743273637854 ], [ -95.149196962284421, 30.098569273418832 ], [ -95.149198962424776, 30.098354273489743 ], [ -95.149216961783935, 30.098233273854124 ], [ -95.14922796240532, 30.098155274037893 ], [ -95.149422962197363, 30.097866273620628 ], [ -95.149625962295133, 30.097677274001146 ], [ -95.149767961976266, 30.097412273214921 ], [ -95.149790962219697, 30.097323273754618 ], [ -95.149791961615549, 30.09730527344777 ], [ -95.149787962421968, 30.09710927328365 ], [ -95.149719961584893, 30.096930273429916 ], [ -95.149652962522907, 30.096862273917651 ], [ -95.149583962213953, 30.096792273713902 ], [ -95.149385962049067, 30.096626273420608 ], [ -95.148943961398075, 30.096348273157069 ], [ -95.148658961891755, 30.096155273564531 ], [ -95.148589961645513, 30.096063273231671 ], [ -95.148612961936479, 30.095899273364104 ], [ -95.148719961375576, 30.095572273575399 ], [ -95.148721961489798, 30.095373273231971 ], [ -95.148572961201594, 30.09498627299379 ], [ -95.148352961194803, 30.094594273377275 ], [ -95.147976961129942, 30.093924272502296 ], [ -95.147880961621269, 30.093867272591726 ], [ -95.147862961352985, 30.093685273067898 ], [ -95.14828796149321, 30.092777273044646 ], [ -95.148517962033793, 30.09242427220369 ], [ -95.148636961641088, 30.09179327258299 ], [ -95.148808961543409, 30.091010272131996 ], [ -95.148981962100024, 30.090675272321167 ], [ -95.14937796216168, 30.090243272372703 ], [ -95.149573961871241, 30.089990272154044 ], [ -95.149692962036468, 30.089924272306391 ], [ -95.150032961680495, 30.089877272384509 ], [ -95.15035296200152, 30.089779272139385 ], [ -95.150537961606702, 30.089671272336858 ], [ -95.15063296196081, 30.089442272240106 ], [ -95.150637962452848, 30.089029271649473 ], [ -95.150538962440535, 30.088809271394545 ], [ -95.15045396160744, 30.088583271400463 ], [ -95.150222961358438, 30.088447271967954 ], [ -95.148755961885655, 30.08797027134478 ], [ -95.148584961603547, 30.087816271792583 ], [ -95.148556961670224, 30.087403271308911 ], [ -95.148606961731645, 30.087310271285752 ], [ -95.148820961160794, 30.086915271522891 ], [ -95.149132961447378, 30.086496271659627 ], [ -95.149918961604172, 30.086320271269937 ], [ -95.150211961966164, 30.086246271686811 ], [ -95.151378962415677, 30.085950271028526 ], [ -95.152473962400862, 30.085673271477773 ], [ -95.152953962267162, 30.085560271110836 ], [ -95.153292962169331, 30.08514127101191 ], [ -95.154173962834761, 30.084230270601829 ], [ -95.154316962967528, 30.084083270508838 ], [ -95.154519962549998, 30.083921270926734 ], [ -95.154683963058829, 30.083780270673667 ], [ -95.154801963239635, 30.083737270985228 ], [ -95.155006962662938, 30.08365027088464 ], [ -95.155242962843289, 30.083556270898153 ], [ -95.155431962468398, 30.083457270721851 ], [ -95.155571962578989, 30.083330270510537 ], [ -95.155665962593588, 30.083252270506449 ], [ -95.155743962864562, 30.083161270047786 ], [ -95.155780962534948, 30.083036270478146 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1295, "Tract": "48201332300", "Area_SqMi": 0.46457335969829006, "total_2009": 13, "total_2010": 7, "total_2011": 16, "total_2012": 13, "total_2013": 10, "total_2014": 13, "total_2015": 8, "total_2016": 12, "total_2017": 9, "total_2018": 17, "total_2019": 12, "total_2020": 11, "age1": 0, "age2": 7, "age3": 3, "earn1": 5, "earn2": 3, "earn3": 2, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 4, "naics_s06": 0, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 5, "race2": 1, "race3": 0, "race4": 4, "race5": 0, "race6": 0, "ethnicity1": 6, "ethnicity2": 4, "edu1": 4, "edu2": 1, "edu3": 2, "edu4": 3, "Shape_Length": 14868.114513528531, "Shape_Area": 12951510.143136604, "total_2021": 9, "total_2022": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.328735988274133, 29.668571179307303 ], [ -95.32871898856726, 29.66810917959641 ], [ -95.328703988240065, 29.667507179147162 ], [ -95.328684988181593, 29.66648817907987 ], [ -95.328681988216886, 29.666458179556951 ], [ -95.328663988979542, 29.6663081791155 ], [ -95.328652988062302, 29.665597178808977 ], [ -95.32864598889779, 29.665279178959686 ], [ -95.328633988054875, 29.664838179113403 ], [ -95.328619988652008, 29.664064179041354 ], [ -95.328602988313349, 29.663320178974356 ], [ -95.328581988307519, 29.662576178288532 ], [ -95.32856098850533, 29.661860178310501 ], [ -95.328555987979826, 29.66171317818004 ], [ -95.328553987929254, 29.661415178126624 ], [ -95.328553988401723, 29.661370178537297 ], [ -95.32511098773449, 29.661440178591299 ], [ -95.324778987876201, 29.661448178088506 ], [ -95.324273987578735, 29.661460178096849 ], [ -95.32420898691089, 29.661461178043044 ], [ -95.323623986790821, 29.661475178170218 ], [ -95.321876986801101, 29.661497178801117 ], [ -95.321071986831527, 29.661508178282464 ], [ -95.320863986757203, 29.661514178685376 ], [ -95.318687985555655, 29.661541178756249 ], [ -95.316854985829508, 29.661569178259622 ], [ -95.316590984819854, 29.661579178284335 ], [ -95.317976985540668, 29.666183179394658 ], [ -95.3187079862671, 29.668685180113961 ], [ -95.319548986438761, 29.671421180412182 ], [ -95.319990986621434, 29.672895181154047 ], [ -95.320150986506135, 29.672664180377417 ], [ -95.320518987113601, 29.672064180303053 ], [ -95.320877987153324, 29.672204180799998 ], [ -95.321099986686548, 29.672236180890259 ], [ -95.323864987844914, 29.672168180311981 ], [ -95.324411987768926, 29.672157180985899 ], [ -95.325346988052488, 29.672137180906134 ], [ -95.326487988337277, 29.672113180829889 ], [ -95.327810988393637, 29.672085180660257 ], [ -95.328598988658669, 29.672062179985161 ], [ -95.328621988598869, 29.670954180445612 ], [ -95.328666988642325, 29.670144179656901 ], [ -95.328716989251149, 29.669360179953653 ], [ -95.328735988274133, 29.668571179307303 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1296, "Tract": "48201254200", "Area_SqMi": 0.48646224652544551, "total_2009": 256, "total_2010": 252, "total_2011": 223, "total_2012": 230, "total_2013": 542, "total_2014": 552, "total_2015": 606, "total_2016": 565, "total_2017": 612, "total_2018": 620, "total_2019": 722, "total_2020": 408, "age1": 83, "age2": 201, "age3": 75, "earn1": 60, "earn2": 112, "earn3": 187, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 17, "naics_s06": 20, "naics_s07": 5, "naics_s08": 11, "naics_s09": 0, "naics_s10": 16, "naics_s11": 5, "naics_s12": 220, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 4, "naics_s19": 10, "naics_s20": 0, "race1": 329, "race2": 16, "race3": 4, "race4": 7, "race5": 0, "race6": 3, "ethnicity1": 175, "ethnicity2": 184, "edu1": 71, "edu2": 86, "edu3": 74, "edu4": 45, "Shape_Length": 15104.551116095878, "Shape_Area": 13561734.844673481, "total_2021": 340, "total_2022": 359 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.97159489979596, 29.723216203168594 ], [ -94.971592899016386, 29.723154202598806 ], [ -94.9715888991512, 29.723020203257715 ], [ -94.971555899538984, 29.722765202812578 ], [ -94.970901899488368, 29.722863202833743 ], [ -94.970724899482562, 29.722886202726329 ], [ -94.97055589919978, 29.722900203140149 ], [ -94.970373898620139, 29.722910202908125 ], [ -94.970182899475873, 29.722910203359106 ], [ -94.969164898774508, 29.722864202910227 ], [ -94.96882689915131, 29.722844202576457 ], [ -94.968512899045592, 29.722825202741387 ], [ -94.968474898628656, 29.722823203075311 ], [ -94.96844489844824, 29.72282120317147 ], [ -94.966528897750365, 29.722703203290212 ], [ -94.965716898260993, 29.722695203084495 ], [ -94.964909897182906, 29.722748203022416 ], [ -94.964555898025708, 29.722795203369856 ], [ -94.964096897287845, 29.722892203402921 ], [ -94.963809897238079, 29.722965203007497 ], [ -94.96345089720154, 29.72309620317689 ], [ -94.962992897097337, 29.723253203043342 ], [ -94.962529897320593, 29.723490202974112 ], [ -94.962200897067333, 29.723681203727928 ], [ -94.961655896481403, 29.724045203340161 ], [ -94.961395896945007, 29.724283203099979 ], [ -94.960951897242367, 29.724645203397881 ], [ -94.960679896680887, 29.724926203999971 ], [ -94.960272896563723, 29.725619204212585 ], [ -94.960007896760828, 29.726169203506029 ], [ -94.959850896832577, 29.726566204381747 ], [ -94.959647896726253, 29.727200204286472 ], [ -94.959601896108026, 29.727329204066461 ], [ -94.959378896381921, 29.727839203946395 ], [ -94.959090896159779, 29.728487204717883 ], [ -94.958782896334668, 29.729172204883817 ], [ -94.958533896346353, 29.729725204540696 ], [ -94.958364895878006, 29.730132204532676 ], [ -94.958280896203988, 29.730334205140853 ], [ -94.958088896766384, 29.73076720504228 ], [ -94.958046896730494, 29.730862205395802 ], [ -94.957736896683414, 29.731580205225718 ], [ -94.957422896660489, 29.732284205203815 ], [ -94.959399897079734, 29.732864205463372 ], [ -94.959450896580975, 29.732949205634323 ], [ -94.959120896189233, 29.733718205780299 ], [ -94.959924897013408, 29.733970205917469 ], [ -94.96097089703413, 29.734318205206865 ], [ -94.961997897374644, 29.734659205494374 ], [ -94.963017897389335, 29.735003205996911 ], [ -94.964051898336265, 29.735344206047259 ], [ -94.965069898151157, 29.735681205900864 ], [ -94.966115898653484, 29.736033205547287 ], [ -94.966384898852922, 29.73538420519839 ], [ -94.966666898839208, 29.734741205572632 ], [ -94.966941898401188, 29.734094205627414 ], [ -94.967224898382469, 29.733434204974319 ], [ -94.967496898449937, 29.732796205415013 ], [ -94.967823898841573, 29.732098205029359 ], [ -94.968102898735239, 29.731429205097797 ], [ -94.96839689911171, 29.730757204761705 ], [ -94.968680898517476, 29.7301102048649 ], [ -94.96895389897314, 29.729474204083246 ], [ -94.969062899353503, 29.729263204314673 ], [ -94.969513899062605, 29.728606204342508 ], [ -94.969743898883394, 29.728082203658996 ], [ -94.970038899157188, 29.727347203423228 ], [ -94.97019589879605, 29.726959203351448 ], [ -94.970211898985823, 29.726920203644877 ], [ -94.970233899229797, 29.726865204004088 ], [ -94.970472899319716, 29.726280203240261 ], [ -94.970754899308616, 29.72553820375645 ], [ -94.971026899576486, 29.724842203533257 ], [ -94.971303899377787, 29.724121202677068 ], [ -94.97150689963928, 29.723664203339368 ], [ -94.971560899849166, 29.72354320342853 ], [ -94.971587899760067, 29.723351203250633 ], [ -94.97159489979596, 29.723216203168594 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1297, "Tract": "48201252400", "Area_SqMi": 2.0556101939783638, "total_2009": 2704, "total_2010": 2268, "total_2011": 2131, "total_2012": 2413, "total_2013": 2679, "total_2014": 2218, "total_2015": 1936, "total_2016": 1795, "total_2017": 1984, "total_2018": 2430, "total_2019": 2625, "total_2020": 2661, "age1": 483, "age2": 1185, "age3": 499, "earn1": 298, "earn2": 531, "earn3": 1338, "naics_s01": 0, "naics_s02": 333, "naics_s03": 13, "naics_s04": 96, "naics_s05": 111, "naics_s06": 26, "naics_s07": 367, "naics_s08": 201, "naics_s09": 1, "naics_s10": 30, "naics_s11": 8, "naics_s12": 241, "naics_s13": 0, "naics_s14": 95, "naics_s15": 6, "naics_s16": 377, "naics_s17": 0, "naics_s18": 148, "naics_s19": 56, "naics_s20": 58, "race1": 1708, "race2": 300, "race3": 28, "race4": 95, "race5": 4, "race6": 32, "ethnicity1": 1152, "ethnicity2": 1015, "edu1": 465, "edu2": 417, "edu3": 477, "edu4": 325, "Shape_Length": 32759.872659679801, "Shape_Area": 57306893.996108256, "total_2021": 2101, "total_2022": 2167 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.161053950657177, 29.7906622106164 ], [ -95.160997951003623, 29.790527210457853 ], [ -95.160927950960655, 29.790358210374706 ], [ -95.160836951345914, 29.790137210209156 ], [ -95.16049195111249, 29.789301210219715 ], [ -95.160441951283815, 29.789179210030703 ], [ -95.160409951030729, 29.789103210344898 ], [ -95.159495950355222, 29.786888209510611 ], [ -95.159202950210656, 29.786129209402546 ], [ -95.158812949840211, 29.785119209568407 ], [ -95.158796950540903, 29.78507720910687 ], [ -95.15859095058839, 29.784456209310779 ], [ -95.158454949808501, 29.783894209121648 ], [ -95.158400950311645, 29.783298208742053 ], [ -95.158375950308837, 29.782409209118175 ], [ -95.158314949579648, 29.780260208029137 ], [ -95.158296949797588, 29.779594207930067 ], [ -95.1582889499863, 29.778994208318554 ], [ -95.158155949505272, 29.778197207886532 ], [ -95.157926949744564, 29.777457207349315 ], [ -95.157674949737853, 29.776762207833066 ], [ -95.157230949256061, 29.775853207483816 ], [ -95.156701949678563, 29.774971206873637 ], [ -95.156695948832706, 29.774962207120584 ], [ -95.156310948905002, 29.774459206764313 ], [ -95.15616594880791, 29.774290207363745 ], [ -95.155952948881534, 29.774042206821747 ], [ -95.155699948646728, 29.773747206760671 ], [ -95.155676948748663, 29.773720207514298 ], [ -95.155405949213701, 29.77342620703573 ], [ -95.155049948910886, 29.773040206833471 ], [ -95.154344948318339, 29.772290206529632 ], [ -95.154110948978968, 29.772030206849102 ], [ -95.153766948067528, 29.77165020631492 ], [ -95.153712947919004, 29.77159120657651 ], [ -95.153632948618593, 29.771502207111681 ], [ -95.1535189479049, 29.771376206890071 ], [ -95.153449948732941, 29.771299206916304 ], [ -95.15283994788787, 29.771403206879082 ], [ -95.152566947984795, 29.771444206932202 ], [ -95.15235594783428, 29.771476206377709 ], [ -95.151124948203261, 29.771720206804925 ], [ -95.150992947591021, 29.771752206393067 ], [ -95.150636947672311, 29.771840207131845 ], [ -95.149603946994702, 29.772096206597617 ], [ -95.149342947439834, 29.77216020680472 ], [ -95.149174947283882, 29.77220220681026 ], [ -95.1472719466162, 29.772672206973088 ], [ -95.143252946030344, 29.77366720739445 ], [ -95.142276945749913, 29.773909207242696 ], [ -95.13943094441747, 29.77460220822941 ], [ -95.139117944799764, 29.774678208136901 ], [ -95.138732944320708, 29.77477020791277 ], [ -95.138466944208488, 29.774835207714784 ], [ -95.138382944187271, 29.774855208049896 ], [ -95.138247945000671, 29.774888207494776 ], [ -95.134481943646236, 29.775796207859607 ], [ -95.133049942916799, 29.776144208101694 ], [ -95.129750942668451, 29.776945208899644 ], [ -95.126944942046947, 29.77762620892819 ], [ -95.126422941337083, 29.777750208697306 ], [ -95.124712941333485, 29.778154208680665 ], [ -95.124516941354798, 29.778201209228033 ], [ -95.124519941353043, 29.778302208646302 ], [ -95.124523941407318, 29.778437209143245 ], [ -95.124524941285856, 29.778481208775545 ], [ -95.124524941039013, 29.778509209419138 ], [ -95.124531940939477, 29.779050209460653 ], [ -95.12455394120073, 29.779435209534775 ], [ -95.12457294176555, 29.779770209492856 ], [ -95.124583940826966, 29.780154209789377 ], [ -95.124599940854665, 29.780583209109729 ], [ -95.124613941756323, 29.781708209608588 ], [ -95.124617941062041, 29.782155209520432 ], [ -95.124622941551294, 29.782851209821256 ], [ -95.12461994149254, 29.783500210449152 ], [ -95.124600940952106, 29.784431210623705 ], [ -95.124581941732103, 29.784743210344423 ], [ -95.124580941755781, 29.784961210209477 ], [ -95.12457894154106, 29.785644210551357 ], [ -95.124587941328542, 29.785897210928834 ], [ -95.124634941923304, 29.786540211149926 ], [ -95.124654941503451, 29.786903210947862 ], [ -95.124651941429832, 29.787480210750417 ], [ -95.124643942156723, 29.788865211559486 ], [ -95.124643941798041, 29.78902521142814 ], [ -95.12483294144134, 29.789045211720698 ], [ -95.125164941883554, 29.789056211488528 ], [ -95.125435941459287, 29.789081211190805 ], [ -95.125811941533655, 29.789127211426418 ], [ -95.126006942554611, 29.789142210942881 ], [ -95.126100942087646, 29.789150211517239 ], [ -95.126320942012995, 29.789153211105525 ], [ -95.126832942270283, 29.789147211084128 ], [ -95.127657942481989, 29.789140210812704 ], [ -95.128466942656658, 29.7891302111668 ], [ -95.128861942254318, 29.789127211318252 ], [ -95.12913094320534, 29.789121211429531 ], [ -95.129294942456113, 29.789123210744613 ], [ -95.130108942657344, 29.789110211360608 ], [ -95.130922942874477, 29.789104211231937 ], [ -95.131285943229301, 29.789100210992686 ], [ -95.131440943779253, 29.789102211529446 ], [ -95.131491943584237, 29.78910321144301 ], [ -95.13214494390408, 29.789082210756071 ], [ -95.132427943431949, 29.789070210676918 ], [ -95.132543943508423, 29.78906721095915 ], [ -95.132731943434223, 29.789064210595445 ], [ -95.133299944283536, 29.789053210995828 ], [ -95.133397943810792, 29.789052210710686 ], [ -95.133677944376899, 29.789047211425885 ], [ -95.13387794397687, 29.789044210773937 ], [ -95.134282943985994, 29.789044210545185 ], [ -95.134639944648697, 29.789033210867675 ], [ -95.135145944795909, 29.789031210946895 ], [ -95.13561194477748, 29.78902721087066 ], [ -95.136001944742503, 29.789025211259798 ], [ -95.136822945016391, 29.789017210630075 ], [ -95.137619945184468, 29.789006210522878 ], [ -95.13776294462258, 29.789003210722989 ], [ -95.138082945234004, 29.788999210472006 ], [ -95.138448945426447, 29.788995210495184 ], [ -95.138973945260986, 29.788992210730214 ], [ -95.138989944968998, 29.788992210353211 ], [ -95.139420945884922, 29.788984210750737 ], [ -95.139808945638478, 29.78897721092104 ], [ -95.139843945829654, 29.788976210424043 ], [ -95.14028294561426, 29.788978210329326 ], [ -95.140601945327106, 29.788977211081029 ], [ -95.140770945559112, 29.788974211133329 ], [ -95.14109294632317, 29.788968210326971 ], [ -95.14117494578332, 29.788967210395857 ], [ -95.141225945593348, 29.788966210701862 ], [ -95.141338946433862, 29.788962210708988 ], [ -95.142058946138178, 29.788957210983199 ], [ -95.142439946046181, 29.788954210519627 ], [ -95.142867946667792, 29.788952210434132 ], [ -95.143117946817554, 29.788949210456892 ], [ -95.143325946732048, 29.788947210406015 ], [ -95.143413946180004, 29.788941211004278 ], [ -95.143688946344426, 29.788942210690465 ], [ -95.144080946605769, 29.788936210913668 ], [ -95.144301946930895, 29.788934210542127 ], [ -95.144430946345835, 29.788939210580505 ], [ -95.144496946575103, 29.788937210353719 ], [ -95.144650946562422, 29.788932210516155 ], [ -95.14488294731872, 29.788931210776614 ], [ -95.145316946523394, 29.788922210571247 ], [ -95.145760946847162, 29.788917210331935 ], [ -95.14614094739683, 29.788914210339819 ], [ -95.146389946947025, 29.788908210079171 ], [ -95.146961947692304, 29.788910210791276 ], [ -95.147784947225901, 29.788900210078765 ], [ -95.14823394764808, 29.788895210863384 ], [ -95.148612947564757, 29.788891210111927 ], [ -95.148665947642314, 29.788892210418169 ], [ -95.148919947435289, 29.788882210205198 ], [ -95.149427948553836, 29.788877210580928 ], [ -95.150279948387706, 29.788856210308076 ], [ -95.151033948164013, 29.788859209957099 ], [ -95.151090948604974, 29.788859210236886 ], [ -95.151490948207652, 29.788855210420078 ], [ -95.151708949142744, 29.788854210325656 ], [ -95.152150948692267, 29.788851210443692 ], [ -95.152263949290031, 29.788850209994123 ], [ -95.152436948319234, 29.78884720995519 ], [ -95.152709948923146, 29.788842210140899 ], [ -95.152786949309899, 29.78884121036868 ], [ -95.153032949163006, 29.788845210329416 ], [ -95.153135948695692, 29.788850210384812 ], [ -95.153248948634499, 29.788857209828407 ], [ -95.15346594881261, 29.788878210660467 ], [ -95.154102949253712, 29.78897621007577 ], [ -95.154519949585449, 29.789074209865884 ], [ -95.154788949107683, 29.789155210650765 ], [ -95.154913949562285, 29.789198210093002 ], [ -95.155037949151122, 29.789246210614454 ], [ -95.155265949431623, 29.789332210597632 ], [ -95.155609950090749, 29.789476210234753 ], [ -95.155952950073186, 29.789629210080999 ], [ -95.156280949376509, 29.789762210744097 ], [ -95.156608949867532, 29.789911210267775 ], [ -95.157097950027236, 29.790120210166958 ], [ -95.157360949689476, 29.790230210131547 ], [ -95.157607949835423, 29.790321210103389 ], [ -95.157882950694244, 29.790413210870891 ], [ -95.158216950521009, 29.79049821088115 ], [ -95.158508950355525, 29.790559210120801 ], [ -95.158616950194116, 29.790577210141496 ], [ -95.158981950918388, 29.790622210227014 ], [ -95.159161950704089, 29.790644210351363 ], [ -95.159238950453997, 29.790650210048003 ], [ -95.159398950227086, 29.790665210337945 ], [ -95.159498950901238, 29.790674210594293 ], [ -95.159556950762919, 29.79067721031436 ], [ -95.159806950373564, 29.790692210739781 ], [ -95.159868950787171, 29.790691210391696 ], [ -95.160358950415102, 29.790688210727506 ], [ -95.16085795148939, 29.790667210696412 ], [ -95.160923950936166, 29.790663210057797 ], [ -95.161053950657177, 29.7906622106164 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1298, "Tract": "48201313400", "Area_SqMi": 0.72130037433358329, "total_2009": 962, "total_2010": 860, "total_2011": 1040, "total_2012": 943, "total_2013": 852, "total_2014": 883, "total_2015": 906, "total_2016": 813, "total_2017": 806, "total_2018": 750, "total_2019": 683, "total_2020": 597, "age1": 211, "age2": 449, "age3": 130, "earn1": 83, "earn2": 213, "earn3": 494, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 7, "naics_s06": 69, "naics_s07": 138, "naics_s08": 34, "naics_s09": 0, "naics_s10": 31, "naics_s11": 3, "naics_s12": 11, "naics_s13": 6, "naics_s14": 54, "naics_s15": 338, "naics_s16": 67, "naics_s17": 0, "naics_s18": 0, "naics_s19": 23, "naics_s20": 0, "race1": 453, "race2": 267, "race3": 4, "race4": 51, "race5": 1, "race6": 14, "ethnicity1": 498, "ethnicity2": 292, "edu1": 146, "edu2": 144, "edu3": 182, "edu4": 107, "Shape_Length": 23020.619696768892, "Shape_Area": 20108619.918491676, "total_2021": 444, "total_2022": 790 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.350895995824061, 29.696151184699154 ], [ -95.350761995726671, 29.696112184715385 ], [ -95.350488995158358, 29.696030184557099 ], [ -95.350033995446935, 29.695878184555632 ], [ -95.349276994874344, 29.695643184792161 ], [ -95.348553994595804, 29.69542618482313 ], [ -95.347795995255595, 29.69520318477835 ], [ -95.347039994144907, 29.694961184526147 ], [ -95.346322993904636, 29.694740184433215 ], [ -95.345593994177392, 29.694511184591565 ], [ -95.345268994296774, 29.694406184672626 ], [ -95.344883994107974, 29.694287184759219 ], [ -95.344252993569071, 29.694158184813968 ], [ -95.343549993887137, 29.693948184515914 ], [ -95.342940993920564, 29.693776184555706 ], [ -95.342323993707524, 29.69365118471984 ], [ -95.3413739930036, 29.693465184718132 ], [ -95.34049299291722, 29.693289184229627 ], [ -95.338777992615107, 29.692780184679123 ], [ -95.339083992291393, 29.692073184206482 ], [ -95.339369992222984, 29.691342184362338 ], [ -95.339653992280461, 29.690597183542398 ], [ -95.339939992687988, 29.689880184076802 ], [ -95.340207992577589, 29.689115183353408 ], [ -95.340436992306422, 29.688563183007638 ], [ -95.340887993025632, 29.687494183068413 ], [ -95.34104299301012, 29.687127183449221 ], [ -95.341136992907252, 29.686794182990546 ], [ -95.341137992908273, 29.686426183065624 ], [ -95.341042992646166, 29.68599518320568 ], [ -95.34094799286116, 29.685712183118849 ], [ -95.337418991545633, 29.686771182870594 ], [ -95.336864991225269, 29.686941183297879 ], [ -95.335867991393499, 29.687270183595157 ], [ -95.335064991029299, 29.687586182903338 ], [ -95.332649990673971, 29.688670183887666 ], [ -95.332118990007572, 29.688910184145389 ], [ -95.33006699042862, 29.689925184015795 ], [ -95.329224990057085, 29.690323183993925 ], [ -95.325948989055107, 29.691860184936143 ], [ -95.325721988915305, 29.69196718472509 ], [ -95.325819988972398, 29.692362184509751 ], [ -95.326504989665466, 29.69470918517116 ], [ -95.326670989070422, 29.69547118495014 ], [ -95.326950989649632, 29.695312185225902 ], [ -95.327264989315609, 29.695133184911814 ], [ -95.327520989160874, 29.695029184872716 ], [ -95.327952989378346, 29.695138185290652 ], [ -95.32952798979953, 29.695537185100129 ], [ -95.329860990560078, 29.695639184998303 ], [ -95.330400989855988, 29.69581518515308 ], [ -95.331348990824608, 29.69611618564473 ], [ -95.331705991111292, 29.69623418500327 ], [ -95.332150990298643, 29.696391185263018 ], [ -95.334039991150334, 29.696989185401783 ], [ -95.335008991134302, 29.697312185714729 ], [ -95.335206992142005, 29.697390185498964 ], [ -95.335924992277199, 29.697612185067431 ], [ -95.336622991672755, 29.697847185612741 ], [ -95.336772992504365, 29.697897185451836 ], [ -95.337768992831386, 29.698224185137757 ], [ -95.338946992717695, 29.698616185529655 ], [ -95.340459992877399, 29.69923418524526 ], [ -95.34074899350378, 29.699324185838808 ], [ -95.341172992763447, 29.699454185904383 ], [ -95.341530992873373, 29.69957418602031 ], [ -95.34180199294407, 29.699657185933784 ], [ -95.342234994069528, 29.699801185426864 ], [ -95.342981993723114, 29.700033185383482 ], [ -95.343440994383073, 29.700185185506943 ], [ -95.344240993815887, 29.700426185438687 ], [ -95.34480499392204, 29.700608185527788 ], [ -95.345679994117887, 29.700872185979211 ], [ -95.348350994816457, 29.701709185912403 ], [ -95.348552994984615, 29.70177318619891 ], [ -95.349000994884264, 29.700754185115656 ], [ -95.349090995266081, 29.700549185310393 ], [ -95.34933199576993, 29.699982185119207 ], [ -95.349572995828225, 29.699413185020891 ], [ -95.349649995638956, 29.699231185640642 ], [ -95.349947995924182, 29.698471184792066 ], [ -95.350297995642052, 29.697691185160217 ], [ -95.350585995522081, 29.696928185067801 ], [ -95.350895995824061, 29.696151184699154 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1299, "Tract": "48201313500", "Area_SqMi": 0.62826425714732315, "total_2009": 303, "total_2010": 312, "total_2011": 333, "total_2012": 346, "total_2013": 394, "total_2014": 385, "total_2015": 382, "total_2016": 340, "total_2017": 283, "total_2018": 254, "total_2019": 261, "total_2020": 200, "age1": 37, "age2": 98, "age3": 67, "earn1": 45, "earn2": 77, "earn3": 80, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 49, "naics_s07": 47, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 10, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 49, "naics_s17": 0, "naics_s18": 30, "naics_s19": 9, "naics_s20": 0, "race1": 100, "race2": 83, "race3": 2, "race4": 14, "race5": 0, "race6": 3, "ethnicity1": 140, "ethnicity2": 62, "edu1": 39, "edu2": 63, "edu3": 40, "edu4": 23, "Shape_Length": 17641.391045156204, "Shape_Area": 17514932.204244703, "total_2021": 230, "total_2022": 202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.355987995986297, 29.681744181266151 ], [ -95.355976995901614, 29.681233181103877 ], [ -95.355971995945652, 29.680926181301995 ], [ -95.355773995960931, 29.680966181203338 ], [ -95.355621996577298, 29.680997181100896 ], [ -95.354873996473628, 29.681151181308323 ], [ -95.354505996013671, 29.681227181009945 ], [ -95.354288995378027, 29.681289181690641 ], [ -95.353551995330065, 29.68149918181944 ], [ -95.352763995373536, 29.681781181878865 ], [ -95.351495995582738, 29.682318181736257 ], [ -95.350021994974711, 29.682960181632883 ], [ -95.349202994762905, 29.683256181613046 ], [ -95.343920993113329, 29.684843182110036 ], [ -95.34094799286116, 29.685712183118849 ], [ -95.341042992646166, 29.68599518320568 ], [ -95.341137992908273, 29.686426183065624 ], [ -95.341136992907252, 29.686794182990546 ], [ -95.34104299301012, 29.687127183449221 ], [ -95.340887993025632, 29.687494183068413 ], [ -95.340436992306422, 29.688563183007638 ], [ -95.340207992577589, 29.689115183353408 ], [ -95.339939992687988, 29.689880184076802 ], [ -95.339653992280461, 29.690597183542398 ], [ -95.339369992222984, 29.691342184362338 ], [ -95.339083992291393, 29.692073184206482 ], [ -95.338777992615107, 29.692780184679123 ], [ -95.34049299291722, 29.693289184229627 ], [ -95.3413739930036, 29.693465184718132 ], [ -95.342323993707524, 29.69365118471984 ], [ -95.342940993920564, 29.693776184555706 ], [ -95.343549993887137, 29.693948184515914 ], [ -95.344252993569071, 29.694158184813968 ], [ -95.344883994107974, 29.694287184759219 ], [ -95.345268994296774, 29.694406184672626 ], [ -95.345593994177392, 29.694511184591565 ], [ -95.346322993904636, 29.694740184433215 ], [ -95.347039994144907, 29.694961184526147 ], [ -95.347795995255595, 29.69520318477835 ], [ -95.348553994595804, 29.69542618482313 ], [ -95.349276994874344, 29.695643184792161 ], [ -95.350033995446935, 29.695878184555632 ], [ -95.350488995158358, 29.696030184557099 ], [ -95.350761995726671, 29.696112184715385 ], [ -95.350895995824061, 29.696151184699154 ], [ -95.350980996090627, 29.695900184527794 ], [ -95.351283995915139, 29.695116184389381 ], [ -95.351446995383739, 29.694734184564808 ], [ -95.351767996117317, 29.693924184408004 ], [ -95.351910995730378, 29.693547184311523 ], [ -95.352243996200187, 29.692787183861732 ], [ -95.352395995428807, 29.692417184103391 ], [ -95.352892996228064, 29.691209183693445 ], [ -95.353561995797762, 29.689507182915506 ], [ -95.354113996515423, 29.688115183209632 ], [ -95.354426995707925, 29.687327182735761 ], [ -95.354772996185616, 29.686434181999683 ], [ -95.355042995731594, 29.685746182656597 ], [ -95.355436995970962, 29.684772182406032 ], [ -95.355748996206884, 29.684045182291857 ], [ -95.355827996547362, 29.683842182103611 ], [ -95.355901996540837, 29.683593181978388 ], [ -95.355954996584813, 29.683222181506242 ], [ -95.355957996277979, 29.682956181249775 ], [ -95.355959996555555, 29.682733181332075 ], [ -95.355987995986297, 29.681744181266151 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1300, "Tract": "48201313600", "Area_SqMi": 0.89420128967441059, "total_2009": 1350, "total_2010": 1469, "total_2011": 1388, "total_2012": 1071, "total_2013": 905, "total_2014": 1063, "total_2015": 1017, "total_2016": 893, "total_2017": 760, "total_2018": 793, "total_2019": 772, "total_2020": 766, "age1": 122, "age2": 474, "age3": 219, "earn1": 109, "earn2": 194, "earn3": 512, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 42, "naics_s05": 402, "naics_s06": 16, "naics_s07": 184, "naics_s08": 40, "naics_s09": 0, "naics_s10": 2, "naics_s11": 27, "naics_s12": 22, "naics_s13": 0, "naics_s14": 8, "naics_s15": 7, "naics_s16": 13, "naics_s17": 0, "naics_s18": 26, "naics_s19": 26, "naics_s20": 0, "race1": 528, "race2": 172, "race3": 4, "race4": 103, "race5": 0, "race6": 8, "ethnicity1": 503, "ethnicity2": 312, "edu1": 194, "edu2": 207, "edu3": 200, "edu4": 92, "Shape_Length": 23117.407141727919, "Shape_Area": 24928801.515319839, "total_2021": 761, "total_2022": 815 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.366533999146341, 29.681290181374386 ], [ -95.366655998511163, 29.680979181225464 ], [ -95.363875998364222, 29.680826181077332 ], [ -95.363211998343814, 29.680772180773101 ], [ -95.362594998399203, 29.680722181061647 ], [ -95.362234998186139, 29.680693181128547 ], [ -95.36055099761748, 29.680556181114646 ], [ -95.359685997527663, 29.680551181064502 ], [ -95.358862996905174, 29.68057518091284 ], [ -95.358283997072363, 29.680592181211427 ], [ -95.357478996893576, 29.680669181515398 ], [ -95.356480996503805, 29.680818181625138 ], [ -95.355971995945652, 29.680926181301995 ], [ -95.355976995901614, 29.681233181103877 ], [ -95.355987995986297, 29.681744181266151 ], [ -95.355959996555555, 29.682733181332075 ], [ -95.355957996277979, 29.682956181249775 ], [ -95.355954996584813, 29.683222181506242 ], [ -95.355901996540837, 29.683593181978388 ], [ -95.355827996547362, 29.683842182103611 ], [ -95.355748996206884, 29.684045182291857 ], [ -95.355436995970962, 29.684772182406032 ], [ -95.355042995731594, 29.685746182656597 ], [ -95.354772996185616, 29.686434181999683 ], [ -95.354426995707925, 29.687327182735761 ], [ -95.354113996515423, 29.688115183209632 ], [ -95.353561995797762, 29.689507182915506 ], [ -95.352892996228064, 29.691209183693445 ], [ -95.352395995428807, 29.692417184103391 ], [ -95.352243996200187, 29.692787183861732 ], [ -95.351910995730378, 29.693547184311523 ], [ -95.351767996117317, 29.693924184408004 ], [ -95.351446995383739, 29.694734184564808 ], [ -95.351283995915139, 29.695116184389381 ], [ -95.350980996090627, 29.695900184527794 ], [ -95.350895995824061, 29.696151184699154 ], [ -95.350585995522081, 29.696928185067801 ], [ -95.350297995642052, 29.697691185160217 ], [ -95.349947995924182, 29.698471184792066 ], [ -95.349649995638956, 29.699231185640642 ], [ -95.349572995828225, 29.699413185020891 ], [ -95.34933199576993, 29.699982185119207 ], [ -95.349090995266081, 29.700549185310393 ], [ -95.349000994884264, 29.700754185115656 ], [ -95.348552994984615, 29.70177318619891 ], [ -95.349331994980901, 29.702011185741419 ], [ -95.350088995575106, 29.702237185543744 ], [ -95.350264995832489, 29.702297186065664 ], [ -95.350847996145347, 29.702454186042079 ], [ -95.351611996159662, 29.70269718568467 ], [ -95.351986995830288, 29.70280818627834 ], [ -95.352205996454956, 29.702869185835496 ], [ -95.352373996050602, 29.702920186069672 ], [ -95.352409996262537, 29.702932185706786 ], [ -95.352903996600901, 29.702834185701157 ], [ -95.353305996550276, 29.702773185564148 ], [ -95.354031996610971, 29.702672185819424 ], [ -95.354154997028104, 29.702661185445137 ], [ -95.354607997044141, 29.702637186198249 ], [ -95.354766996526962, 29.702629185407062 ], [ -95.35492399726067, 29.702621185990548 ], [ -95.355219997225731, 29.702605185922224 ], [ -95.357325997360434, 29.70249418592639 ], [ -95.358090997667688, 29.702453185758344 ], [ -95.358533997413133, 29.702430185842214 ], [ -95.359422997751594, 29.702380185790016 ], [ -95.359465997878658, 29.702246185166459 ], [ -95.359497997651332, 29.702144185296955 ], [ -95.359538997964592, 29.701925185077769 ], [ -95.359550997737983, 29.701748185469455 ], [ -95.359551998263683, 29.701579185211461 ], [ -95.359548998274661, 29.701390185564474 ], [ -95.359490998082634, 29.701102185567901 ], [ -95.359372997536028, 29.70069218510239 ], [ -95.359313997608169, 29.700490185334427 ], [ -95.359275998446634, 29.700294185213203 ], [ -95.359258997445338, 29.699936185304153 ], [ -95.359281998007901, 29.699710184622411 ], [ -95.359322997838859, 29.699511185097922 ], [ -95.359433997534765, 29.699146184868123 ], [ -95.359570997756691, 29.69878518525962 ], [ -95.359865997502297, 29.698069184268917 ], [ -95.360152997692836, 29.697347184379492 ], [ -95.360442998430841, 29.696631184303218 ], [ -95.36072999841565, 29.695922184485369 ], [ -95.361012998579525, 29.69519618430034 ], [ -95.361301998402041, 29.694489183743837 ], [ -95.3614739979365, 29.694053183970691 ], [ -95.361649997756487, 29.693601183347507 ], [ -95.362235998736665, 29.692156183072957 ], [ -95.362819998035775, 29.690711182640587 ], [ -95.363123998555523, 29.689971182517933 ], [ -95.363338998543256, 29.68942618267382 ], [ -95.363595998190448, 29.688812182636973 ], [ -95.363864998550511, 29.688178182216696 ], [ -95.364093998662355, 29.687554182749484 ], [ -95.36411099909985, 29.687509182433043 ], [ -95.364302998953903, 29.687059182423269 ], [ -95.364353998633106, 29.686924182242905 ], [ -95.364381998610085, 29.686850182089259 ], [ -95.364607998331223, 29.686361181732522 ], [ -95.364615998226711, 29.686320182306851 ], [ -95.364981999095747, 29.685409181913663 ], [ -95.365062998437153, 29.685164182175445 ], [ -95.365232998909946, 29.684748181699931 ], [ -95.36533899831737, 29.6844801820973 ], [ -95.365599999262542, 29.683824181827269 ], [ -95.365713998922416, 29.683465181742196 ], [ -95.365754998678426, 29.683359181875737 ], [ -95.365819998866996, 29.68311218121401 ], [ -95.366038999074974, 29.682434181632775 ], [ -95.366325999051639, 29.681756181150387 ], [ -95.366533999146341, 29.681290181374386 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1301, "Tract": "48201313700", "Area_SqMi": 0.51629211526235186, "total_2009": 467, "total_2010": 451, "total_2011": 521, "total_2012": 482, "total_2013": 527, "total_2014": 404, "total_2015": 391, "total_2016": 401, "total_2017": 442, "total_2018": 485, "total_2019": 380, "total_2020": 347, "age1": 151, "age2": 212, "age3": 84, "earn1": 131, "earn2": 136, "earn3": 180, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 52, "naics_s05": 18, "naics_s06": 0, "naics_s07": 104, "naics_s08": 1, "naics_s09": 0, "naics_s10": 32, "naics_s11": 45, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 23, "naics_s17": 0, "naics_s18": 74, "naics_s19": 95, "naics_s20": 0, "race1": 295, "race2": 103, "race3": 8, "race4": 31, "race5": 0, "race6": 10, "ethnicity1": 279, "ethnicity2": 168, "edu1": 83, "edu2": 82, "edu3": 78, "edu4": 53, "Shape_Length": 17480.400751939211, "Shape_Area": 14393340.530727841, "total_2021": 360, "total_2022": 447 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.376283001783392, 29.698065183829133 ], [ -95.375696001739882, 29.697875184503129 ], [ -95.375330001949948, 29.697756183874727 ], [ -95.374493001739552, 29.697500184385856 ], [ -95.373410001085034, 29.697171184002404 ], [ -95.372577001504581, 29.696919183782622 ], [ -95.371768000629572, 29.696670183589941 ], [ -95.371114000308154, 29.696486183579093 ], [ -95.37096700074801, 29.696434183514835 ], [ -95.370177000488113, 29.696184183630454 ], [ -95.369386000389738, 29.695948184054469 ], [ -95.368588999614872, 29.69570318421448 ], [ -95.367791999670786, 29.6954671837969 ], [ -95.368382999737889, 29.694015183664089 ], [ -95.368948000391242, 29.692564182785475 ], [ -95.369220000175986, 29.691885183217337 ], [ -95.368875000483399, 29.691781182650374 ], [ -95.368553999521808, 29.691701182639228 ], [ -95.365155999124042, 29.690647183393363 ], [ -95.36493899891056, 29.690520183002068 ], [ -95.364510998698577, 29.690377182882479 ], [ -95.363577998897568, 29.690100183131968 ], [ -95.363123998555523, 29.689971182517933 ], [ -95.362819998035775, 29.690711182640587 ], [ -95.362235998736665, 29.692156183072957 ], [ -95.361649997756487, 29.693601183347507 ], [ -95.3614739979365, 29.694053183970691 ], [ -95.361301998402041, 29.694489183743837 ], [ -95.361012998579525, 29.69519618430034 ], [ -95.36072999841565, 29.695922184485369 ], [ -95.360442998430841, 29.696631184303218 ], [ -95.360152997692836, 29.697347184379492 ], [ -95.359865997502297, 29.698069184268917 ], [ -95.359570997756691, 29.69878518525962 ], [ -95.359433997534765, 29.699146184868123 ], [ -95.359322997838859, 29.699511185097922 ], [ -95.359281998007901, 29.699710184622411 ], [ -95.359258997445338, 29.699936185304153 ], [ -95.359275998446634, 29.700294185213203 ], [ -95.359313997608169, 29.700490185334427 ], [ -95.359372997536028, 29.70069218510239 ], [ -95.359490998082634, 29.701102185567901 ], [ -95.359548998274661, 29.701390185564474 ], [ -95.359551998263683, 29.701579185211461 ], [ -95.359550997737983, 29.701748185469455 ], [ -95.359538997964592, 29.701925185077769 ], [ -95.359497997651332, 29.702144185296955 ], [ -95.359465997878658, 29.702246185166459 ], [ -95.359422997751594, 29.702380185790016 ], [ -95.36030599807394, 29.702342185857898 ], [ -95.361305998513046, 29.702272185281672 ], [ -95.362224998485956, 29.702219185149858 ], [ -95.36326199925584, 29.702145185099535 ], [ -95.36482499906964, 29.702081184880598 ], [ -95.365360999125173, 29.702062185389771 ], [ -95.366504000273409, 29.701990185135397 ], [ -95.367714999744322, 29.701909185560055 ], [ -95.36792100063775, 29.701898185198331 ], [ -95.368233999970087, 29.701882185154485 ], [ -95.368524999962631, 29.701870185172282 ], [ -95.368850999974498, 29.701842184851436 ], [ -95.368941000477236, 29.701836185120889 ], [ -95.369800000562236, 29.701780184832579 ], [ -95.37067200088218, 29.701741184942403 ], [ -95.371785001635629, 29.701649185424657 ], [ -95.372333001026007, 29.701615184605917 ], [ -95.372977001643989, 29.701614184883823 ], [ -95.373362001935547, 29.70163018493038 ], [ -95.374039002269413, 29.701710184807915 ], [ -95.374195002050286, 29.701709184807935 ], [ -95.374620001445038, 29.701759184928378 ], [ -95.375216002046628, 29.701862185163364 ], [ -95.375259002387935, 29.701651185069178 ], [ -95.37529700233226, 29.701469184496137 ], [ -95.375426001628938, 29.70099918447589 ], [ -95.375456002260606, 29.700887184980594 ], [ -95.375552002210455, 29.700538185005609 ], [ -95.375652001752343, 29.700198184591816 ], [ -95.376283001783392, 29.698065183829133 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1302, "Tract": "48201250500", "Area_SqMi": 1.7614124911727984, "total_2009": 2119, "total_2010": 1727, "total_2011": 1918, "total_2012": 2013, "total_2013": 2074, "total_2014": 2083, "total_2015": 2112, "total_2016": 2227, "total_2017": 2213, "total_2018": 2264, "total_2019": 2146, "total_2020": 2023, "age1": 707, "age2": 843, "age3": 377, "earn1": 671, "earn2": 792, "earn3": 464, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 18, "naics_s06": 22, "naics_s07": 689, "naics_s08": 17, "naics_s09": 19, "naics_s10": 31, "naics_s11": 5, "naics_s12": 19, "naics_s13": 0, "naics_s14": 144, "naics_s15": 87, "naics_s16": 71, "naics_s17": 98, "naics_s18": 581, "naics_s19": 98, "naics_s20": 0, "race1": 1458, "race2": 326, "race3": 21, "race4": 89, "race5": 4, "race6": 29, "ethnicity1": 1357, "ethnicity2": 570, "edu1": 262, "edu2": 349, "edu3": 397, "edu4": 212, "Shape_Length": 37638.822465551566, "Shape_Area": 49105165.566289745, "total_2021": 1991, "total_2022": 1927 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.212430974172392, 29.999453251272914 ], [ -95.212430974196025, 29.999296251180578 ], [ -95.212416973749413, 29.994330250379321 ], [ -95.212409972912894, 29.991116249376041 ], [ -95.212400972834331, 29.985464248103728 ], [ -95.212392973316199, 29.981853247681311 ], [ -95.211952972608188, 29.982010247700167 ], [ -95.209782971869373, 29.982755247788294 ], [ -95.20577297080952, 29.98409724820252 ], [ -95.204331971437313, 29.984575248360219 ], [ -95.203534971036603, 29.984833248947105 ], [ -95.203137970692666, 29.984962248384221 ], [ -95.202189970240411, 29.985273249192868 ], [ -95.201395970684288, 29.985540249342829 ], [ -95.199418969763968, 29.986197248770072 ], [ -95.198143969554465, 29.986620249189009 ], [ -95.19792496980125, 29.986692249030575 ], [ -95.197702968839096, 29.98676624956218 ], [ -95.195862968467907, 29.987385249681953 ], [ -95.192605967931257, 29.9884662501291 ], [ -95.19250796801893, 29.988497249702789 ], [ -95.190522967646814, 29.989165250183898 ], [ -95.190199967351418, 29.989273250345967 ], [ -95.188351966969677, 29.989889249957908 ], [ -95.188075967276006, 29.989981250039911 ], [ -95.185145966538315, 29.99095925088028 ], [ -95.185067966324993, 29.990985250205966 ], [ -95.18447296581077, 29.991184250849678 ], [ -95.18395296593971, 29.991357250785594 ], [ -95.182128965523987, 29.991964250569787 ], [ -95.181197965307277, 29.992273250659231 ], [ -95.178358964298923, 29.99321925154354 ], [ -95.178085964625936, 29.993310251749048 ], [ -95.178020964389347, 29.993331251663172 ], [ -95.176915963935315, 29.993694251801656 ], [ -95.176003963629213, 29.993994251663306 ], [ -95.174007963261857, 29.994658251671687 ], [ -95.169236962743241, 29.996240251782616 ], [ -95.168610961852067, 29.99643925258199 ], [ -95.16803996229487, 29.996610252583682 ], [ -95.167029961547229, 29.996922252485739 ], [ -95.165976961601771, 29.997231252828186 ], [ -95.165736962029499, 29.997307252223123 ], [ -95.16563196135759, 29.997347252374976 ], [ -95.165539961347804, 29.997394252655013 ], [ -95.165501961406775, 29.997419252547811 ], [ -95.165456961192518, 29.997448252602613 ], [ -95.165383961620392, 29.997506252417441 ], [ -95.165320961248625, 29.997569252211068 ], [ -95.165265961393118, 29.997635252432186 ], [ -95.165178961635931, 29.997767252362571 ], [ -95.165116961267188, 29.997890252611683 ], [ -95.16508696125554, 29.997972252908696 ], [ -95.16506796173816, 29.998040253079452 ], [ -95.165035961460887, 29.998227252847098 ], [ -95.165705962010762, 29.998250252702796 ], [ -95.166939961976055, 29.998261252750027 ], [ -95.167772962071169, 29.99823925274389 ], [ -95.170063963168786, 29.99829425278816 ], [ -95.17095596253256, 29.998315252137246 ], [ -95.17160896334272, 29.998329252986 ], [ -95.171894963683528, 29.998338252224968 ], [ -95.172857963140586, 29.998360252430167 ], [ -95.173963963376906, 29.998387252619157 ], [ -95.174747963951745, 29.998405252277241 ], [ -95.17476096412291, 29.998405252435262 ], [ -95.174827963875146, 29.998407252628699 ], [ -95.175499964021938, 29.998423252350342 ], [ -95.176849964534, 29.998456252847419 ], [ -95.178151965023531, 29.998487252023274 ], [ -95.178304965281768, 29.998490252419767 ], [ -95.179658965318893, 29.998523252690148 ], [ -95.183534966656879, 29.998615251882889 ], [ -95.184218966302382, 29.998631251905895 ], [ -95.184583966201245, 29.998640252384835 ], [ -95.184771966291734, 29.998643252132933 ], [ -95.184907966722932, 29.998646252249841 ], [ -95.187156967295863, 29.998694252167599 ], [ -95.187410967702391, 29.99869925175777 ], [ -95.188053967214856, 29.998712252292489 ], [ -95.188640967612329, 29.998723251811878 ], [ -95.189531967662333, 29.998739252073328 ], [ -95.190177967469225, 29.99875225172379 ], [ -95.19319196895853, 29.998805252348305 ], [ -95.193323968770429, 29.998807252275988 ], [ -95.196378969789649, 29.998859251873814 ], [ -95.196542969937539, 29.998866251922887 ], [ -95.197024969438203, 29.998886251906679 ], [ -95.199615970224244, 29.998996251362069 ], [ -95.20003897102491, 29.999012251365443 ], [ -95.200887970896389, 29.999045251961189 ], [ -95.201462971035156, 29.999067251764583 ], [ -95.201795970730203, 29.999080251383496 ], [ -95.202718971527972, 29.999116251854144 ], [ -95.203419971213421, 29.999150251363005 ], [ -95.203497971280555, 29.999154251444619 ], [ -95.20360797194796, 29.99915925165072 ], [ -95.20414697159012, 29.999186252012432 ], [ -95.206076972174827, 29.999280251748417 ], [ -95.2063419726516, 29.999291251626445 ], [ -95.206801972178056, 29.999311251266228 ], [ -95.207355972388413, 29.999335251265826 ], [ -95.208494972245518, 29.999384251236492 ], [ -95.209169972750757, 29.999413251549953 ], [ -95.210504973016299, 29.999472251237282 ], [ -95.212430974172392, 29.999453251272914 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1303, "Tract": "48167724000", "Area_SqMi": 24.638817917786426, "total_2009": 2821, "total_2010": 2967, "total_2011": 3348, "total_2012": 3841, "total_2013": 3860, "total_2014": 4049, "total_2015": 4044, "total_2016": 3748, "total_2017": 3401, "total_2018": 3721, "total_2019": 3993, "total_2020": 4355, "age1": 1006, "age2": 2110, "age3": 1114, "earn1": 900, "earn2": 894, "earn3": 2436, "naics_s01": 0, "naics_s02": 44, "naics_s03": 10, "naics_s04": 441, "naics_s05": 226, "naics_s06": 124, "naics_s07": 418, "naics_s08": 891, "naics_s09": 1, "naics_s10": 11, "naics_s11": 55, "naics_s12": 97, "naics_s13": 0, "naics_s14": 207, "naics_s15": 639, "naics_s16": 343, "naics_s17": 19, "naics_s18": 246, "naics_s19": 129, "naics_s20": 329, "race1": 3395, "race2": 566, "race3": 32, "race4": 162, "race5": 10, "race6": 65, "ethnicity1": 3170, "ethnicity2": 1060, "edu1": 607, "edu2": 906, "edu3": 1041, "edu4": 670, "Shape_Length": 112183.77414330964, "Shape_Area": 686888073.78956842, "total_2021": 4751, "total_2022": 4230 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.886527858553109, 29.296070116896985 ], [ -94.886640859113115, 29.295876117607019 ], [ -94.884004858091487, 29.29459911726903 ], [ -94.880502857429846, 29.292851116660575 ], [ -94.877843856930838, 29.29156111702623 ], [ -94.877270856384541, 29.291270116385991 ], [ -94.874196855127408, 29.289747116062106 ], [ -94.873907855505863, 29.289595116473347 ], [ -94.873650855192679, 29.289442116427718 ], [ -94.873009855655809, 29.289095116677924 ], [ -94.87203685502044, 29.288549116461517 ], [ -94.870713854543268, 29.287829115929572 ], [ -94.869541853891661, 29.287266116042915 ], [ -94.868962853939607, 29.287010116449707 ], [ -94.867996853620426, 29.286559115847929 ], [ -94.867596853564876, 29.286362116226673 ], [ -94.866908853577328, 29.28605811618668 ], [ -94.866041853281132, 29.285745116177601 ], [ -94.865259852807384, 29.285504115516968 ], [ -94.864584852637535, 29.285375115993862 ], [ -94.864078852928955, 29.285314116163423 ], [ -94.863584852979585, 29.285270115964902 ], [ -94.863097852130181, 29.285249116276699 ], [ -94.862951852316939, 29.285255116258568 ], [ -94.862818851978162, 29.285256115624961 ], [ -94.862297852533217, 29.285252115900427 ], [ -94.861568851974468, 29.285310115852354 ], [ -94.86099685201637, 29.285367116317932 ], [ -94.860440852050786, 29.285433116229051 ], [ -94.859936851499057, 29.285539116292277 ], [ -94.859353851197952, 29.28569411606199 ], [ -94.858882851765898, 29.285838116458812 ], [ -94.858390851337717, 29.285989115843755 ], [ -94.857518851034868, 29.286346116371789 ], [ -94.85676585096067, 29.286617116002752 ], [ -94.854580850491004, 29.287341116686235 ], [ -94.85454085028779, 29.287351116871427 ], [ -94.853339850649107, 29.287662116642405 ], [ -94.852602849936702, 29.287925116374261 ], [ -94.85150685013538, 29.288205117223455 ], [ -94.850320849686554, 29.288434116942739 ], [ -94.849044849373101, 29.288631117130489 ], [ -94.848222848913636, 29.288741117190177 ], [ -94.846905848569648, 29.288778117073324 ], [ -94.846379848094671, 29.288761116860272 ], [ -94.845962848678809, 29.288748116822315 ], [ -94.845687848719024, 29.28872811678141 ], [ -94.845427848610655, 29.288709117096531 ], [ -94.844316847974881, 29.288656117507379 ], [ -94.842533847741748, 29.288580117348346 ], [ -94.841198846921756, 29.288532117305007 ], [ -94.840667847208053, 29.288535117307877 ], [ -94.839508846554722, 29.288542116956197 ], [ -94.838233846533115, 29.288558116938788 ], [ -94.837963846330794, 29.288561117270888 ], [ -94.83770284570106, 29.288578117403812 ], [ -94.836788846416312, 29.288601117439221 ], [ -94.836056845296497, 29.288645117260405 ], [ -94.835428845262925, 29.288736117047101 ], [ -94.835351845457154, 29.288744117267928 ], [ -94.834690845540663, 29.28889311775859 ], [ -94.833922845668354, 29.289106117266613 ], [ -94.833454844949912, 29.289227117388894 ], [ -94.832706845243763, 29.289420117369612 ], [ -94.830927844325373, 29.289880118103397 ], [ -94.829791844317398, 29.290177117797544 ], [ -94.828651843589526, 29.290475117807389 ], [ -94.827509843862458, 29.29077311795664 ], [ -94.826371843707861, 29.291071118130553 ], [ -94.825225842756183, 29.291371118269179 ], [ -94.824078842833728, 29.291671118109875 ], [ -94.822939842614673, 29.291968118366206 ], [ -94.822024842697147, 29.292207118560654 ], [ -94.821773842175432, 29.292274118255033 ], [ -94.820652842354619, 29.292571118906434 ], [ -94.819530841742278, 29.292868118684936 ], [ -94.818407841698502, 29.293166118920833 ], [ -94.818573841808174, 29.29368411871652 ], [ -94.818722841574484, 29.294146119357457 ], [ -94.8190018411794, 29.294995119274994 ], [ -94.818538841062349, 29.295132119732848 ], [ -94.817858841042792, 29.295304119669638 ], [ -94.817599841666549, 29.295370119685995 ], [ -94.816707841089382, 29.295606119409545 ], [ -94.815580840385508, 29.295904119517463 ], [ -94.813779840544171, 29.296377119613954 ], [ -94.813283840608307, 29.296511119710836 ], [ -94.813579840481708, 29.297400120414281 ], [ -94.813719840141516, 29.297820119720786 ], [ -94.813806840262231, 29.298074119760695 ], [ -94.81386384066704, 29.298252120211639 ], [ -94.812996839860958, 29.298479120471505 ], [ -94.810469839592642, 29.299160120388176 ], [ -94.809325838997324, 29.299468120858251 ], [ -94.808173838975222, 29.299773120897896 ], [ -94.807029838656462, 29.300075120389483 ], [ -94.805879837937184, 29.300361120832452 ], [ -94.804733838206658, 29.300646120524192 ], [ -94.803597837532038, 29.300946120780949 ], [ -94.803030837593894, 29.301095121337475 ], [ -94.802477837199632, 29.301241120998494 ], [ -94.801306837575225, 29.301550121218259 ], [ -94.800176837162823, 29.301848121199075 ], [ -94.800326837304866, 29.302283121080659 ], [ -94.800477836712446, 29.302722121342484 ], [ -94.800598837345518, 29.303085121398222 ], [ -94.800769837603738, 29.303598121550557 ], [ -94.800859837642818, 29.303858121977488 ], [ -94.800907837329547, 29.303994122020523 ], [ -94.801073837080324, 29.304460121725004 ], [ -94.801131837644178, 29.304664121517586 ], [ -94.801190837169443, 29.304834121514084 ], [ -94.801352837578392, 29.305296122289175 ], [ -94.801372837707675, 29.305351121827787 ], [ -94.801524837399896, 29.305787121789315 ], [ -94.80141383706453, 29.30589812249336 ], [ -94.801034837565453, 29.306229122467528 ], [ -94.800742837424082, 29.30639412213155 ], [ -94.800489837060184, 29.306501122523105 ], [ -94.800305836864609, 29.306588122619488 ], [ -94.799751837255599, 29.306734121995177 ], [ -94.797030836559671, 29.307435122781961 ], [ -94.795836835802191, 29.307748122683368 ], [ -94.794684836388186, 29.308050122638875 ], [ -94.793558835128877, 29.308345122681178 ], [ -94.79240983560571, 29.308646122647136 ], [ -94.791287834877522, 29.308940123157651 ], [ -94.790098834815083, 29.309256123448758 ], [ -94.78897183462081, 29.309556122934037 ], [ -94.787840834439265, 29.309856123113342 ], [ -94.786694834124859, 29.310158123952917 ], [ -94.785566833954007, 29.310455123826468 ], [ -94.784416833685114, 29.310757123576558 ], [ -94.783240832948437, 29.311049123536257 ], [ -94.782831833328075, 29.31115512403505 ], [ -94.782606832582616, 29.311213123719558 ], [ -94.782015833000642, 29.311364123713634 ], [ -94.781411832213394, 29.31166012364563 ], [ -94.781034832494498, 29.311845123770713 ], [ -94.779622831925977, 29.312522123896649 ], [ -94.779443832132401, 29.312580123841727 ], [ -94.779005832237942, 29.312721124570576 ], [ -94.778926831867963, 29.312747124720921 ], [ -94.778537832336326, 29.312852124601562 ], [ -94.778458831712442, 29.312872124667081 ], [ -94.777248831448958, 29.313198124498374 ], [ -94.776908831718742, 29.313285124895071 ], [ -94.776832831445773, 29.313304124690706 ], [ -94.77596483167595, 29.313524124941189 ], [ -94.775608831299778, 29.313615124488102 ], [ -94.77539583094115, 29.313669125000352 ], [ -94.774268830736503, 29.313974124297459 ], [ -94.773192830595036, 29.31426512458453 ], [ -94.773312830231248, 29.31462812510782 ], [ -94.773556830979203, 29.31536512528228 ], [ -94.773749831083279, 29.315948125425081 ], [ -94.77378183065089, 29.316043125525347 ], [ -94.774296830720957, 29.317597125030915 ], [ -94.774383830647977, 29.317869125852518 ], [ -94.774638831365777, 29.318672125562955 ], [ -94.774969831515861, 29.318571125685278 ], [ -94.775021831541551, 29.318633125655367 ], [ -94.775706831528581, 29.320780125797 ], [ -94.77602183201455, 29.322255126404631 ], [ -94.77614483186187, 29.322830126477076 ], [ -94.776516831468427, 29.323938126807075 ], [ -94.77658983193696, 29.324159126922517 ], [ -94.776841832106143, 29.327114127349724 ], [ -94.776389832230365, 29.328839127331747 ], [ -94.77656783196521, 29.329434127762628 ], [ -94.775928831602712, 29.332098128735502 ], [ -94.77586183196108, 29.332226128362866 ], [ -94.774733831469874, 29.334494129163811 ], [ -94.772890831911752, 29.336407129099221 ], [ -94.772815831379219, 29.336493129870306 ], [ -94.771987831455888, 29.337452129371208 ], [ -94.769397831216168, 29.339332129744587 ], [ -94.76750183002477, 29.34044013074816 ], [ -94.763501829624218, 29.342040130522694 ], [ -94.765328829386092, 29.342697131357681 ], [ -94.765349829413594, 29.342704130852152 ], [ -94.7821068342827, 29.348731131693302 ], [ -94.785073835658423, 29.34997513156635 ], [ -94.795923838165464, 29.354679132916299 ], [ -94.804769840767975, 29.35851413319434 ], [ -94.80521784054946, 29.358708133280469 ], [ -94.810293842142883, 29.360908133127385 ], [ -94.81083384197531, 29.361142133380202 ], [ -94.823008845431644, 29.366426134114228 ], [ -94.830031847441361, 29.369474134527902 ], [ -94.838579850264608, 29.371495134574499 ], [ -94.857458853038949, 29.341776127327655 ], [ -94.860121853832013, 29.337584126435136 ], [ -94.861073854419274, 29.336084126780918 ], [ -94.862867854986703, 29.333260125894295 ], [ -94.881057858358915, 29.30461111901711 ], [ -94.882104858017172, 29.303841119071521 ], [ -94.88379085901218, 29.300970118635469 ], [ -94.884970858782594, 29.298960118083571 ], [ -94.885700859254428, 29.297717118035614 ], [ -94.885751859020431, 29.297575117540834 ], [ -94.885833859307454, 29.297343117455455 ], [ -94.885865859073135, 29.297254117489508 ], [ -94.885876859343725, 29.297193118024587 ], [ -94.885904859348656, 29.297144117649093 ], [ -94.886433859293007, 29.296232117332348 ], [ -94.886527858553109, 29.296070116896985 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1304, "Tract": "48167724300", "Area_SqMi": 0.615965063839787, "total_2009": 10269, "total_2010": 12128, "total_2011": 12523, "total_2012": 12371, "total_2013": 12143, "total_2014": 10589, "total_2015": 13540, "total_2016": 15018, "total_2017": 15081, "total_2018": 14246, "total_2019": 14619, "total_2020": 14606, "age1": 2432, "age2": 10524, "age3": 4471, "earn1": 2211, "earn2": 3729, "earn3": 11486, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 31, "naics_s06": 2, "naics_s07": 81, "naics_s08": 538, "naics_s09": 4, "naics_s10": 24, "naics_s11": 6, "naics_s12": 23, "naics_s13": 1, "naics_s14": 338, "naics_s15": 14722, "naics_s16": 662, "naics_s17": 20, "naics_s18": 800, "naics_s19": 156, "naics_s20": 0, "race1": 12185, "race2": 3044, "race3": 109, "race4": 1778, "race5": 23, "race6": 287, "ethnicity1": 13202, "ethnicity2": 4224, "edu1": 2074, "edu2": 3368, "edu3": 4925, "edu4": 4628, "Shape_Length": 17646.798128539092, "Shape_Area": 17172051.745110322, "total_2021": 16999, "total_2022": 17427 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.790098834815083, 29.309256123448758 ], [ -94.789811834633866, 29.308365123423041 ], [ -94.789654834251806, 29.307907123291468 ], [ -94.789510834118587, 29.30748912288913 ], [ -94.78936383495018, 29.307058122396807 ], [ -94.789214834847712, 29.30660312254226 ], [ -94.789080834523929, 29.306192122286198 ], [ -94.788927834284735, 29.305722122154961 ], [ -94.788791834253459, 29.305307122590513 ], [ -94.788650834250973, 29.304874122672906 ], [ -94.788491834261222, 29.304443122011968 ], [ -94.788433833960056, 29.304289122347988 ], [ -94.788327833848399, 29.304007121817076 ], [ -94.788162833723604, 29.303573122215621 ], [ -94.78802183437422, 29.303148122021067 ], [ -94.787887833846128, 29.302714122198108 ], [ -94.787862833810166, 29.302635122185322 ], [ -94.787743834036789, 29.30225612138501 ], [ -94.787597834060037, 29.30184312202508 ], [ -94.78741083386744, 29.301300122003905 ], [ -94.786278833474242, 29.301594122116533 ], [ -94.785154832971088, 29.301885121502121 ], [ -94.783976833056954, 29.302197121695528 ], [ -94.782860833079752, 29.302494121914513 ], [ -94.782270832162141, 29.302627122175387 ], [ -94.781703832554086, 29.302777122252671 ], [ -94.78055883167869, 29.303079122044718 ], [ -94.779419831231749, 29.303379122483307 ], [ -94.778301831972186, 29.303674122362008 ], [ -94.77711783099241, 29.303983122116598 ], [ -94.775983831172809, 29.30427912225829 ], [ -94.775531830730301, 29.304397122672508 ], [ -94.774846830615985, 29.304582122874024 ], [ -94.773701829964011, 29.304890122639804 ], [ -94.772562829812685, 29.305197122879093 ], [ -94.772647829817615, 29.305406123399052 ], [ -94.772766830646503, 29.305723122951644 ], [ -94.772923830323194, 29.30613912333499 ], [ -94.773069830244623, 29.306578123151599 ], [ -94.773216830508559, 29.307020123203632 ], [ -94.772062829790912, 29.30732512309584 ], [ -94.770895829590046, 29.307642123232174 ], [ -94.771192829356906, 29.308507123239224 ], [ -94.771342829703798, 29.308944123608498 ], [ -94.77150382988394, 29.309359123698353 ], [ -94.771793829699561, 29.310217123596235 ], [ -94.771948830137447, 29.310677124179161 ], [ -94.772090830192056, 29.311096124024658 ], [ -94.772237830030761, 29.311531124546388 ], [ -94.772387830489976, 29.311977124356382 ], [ -94.772412830140127, 29.31207712456326 ], [ -94.772706830551684, 29.312885124481419 ], [ -94.773011830684993, 29.313723124459898 ], [ -94.773192830595036, 29.31426512458453 ], [ -94.774268830736503, 29.313974124297459 ], [ -94.77539583094115, 29.313669125000352 ], [ -94.775608831299778, 29.313615124488102 ], [ -94.77596483167595, 29.313524124941189 ], [ -94.776832831445773, 29.313304124690706 ], [ -94.776908831718742, 29.313285124895071 ], [ -94.777248831448958, 29.313198124498374 ], [ -94.778458831712442, 29.312872124667081 ], [ -94.778537832336326, 29.312852124601562 ], [ -94.778926831867963, 29.312747124720921 ], [ -94.779005832237942, 29.312721124570576 ], [ -94.779443832132401, 29.312580123841727 ], [ -94.779622831925977, 29.312522123896649 ], [ -94.781034832494498, 29.311845123770713 ], [ -94.781411832213394, 29.31166012364563 ], [ -94.782015833000642, 29.311364123713634 ], [ -94.782606832582616, 29.311213123719558 ], [ -94.782831833328075, 29.31115512403505 ], [ -94.783240832948437, 29.311049123536257 ], [ -94.784416833685114, 29.310757123576558 ], [ -94.785566833954007, 29.310455123826468 ], [ -94.786694834124859, 29.310158123952917 ], [ -94.787840834439265, 29.309856123113342 ], [ -94.78897183462081, 29.309556122934037 ], [ -94.790098834815083, 29.309256123448758 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1305, "Tract": "48167724400", "Area_SqMi": 0.45754277371124674, "total_2009": 1712, "total_2010": 1651, "total_2011": 1851, "total_2012": 438, "total_2013": 429, "total_2014": 555, "total_2015": 660, "total_2016": 582, "total_2017": 879, "total_2018": 706, "total_2019": 698, "total_2020": 772, "age1": 240, "age2": 535, "age3": 334, "earn1": 342, "earn2": 355, "earn3": 412, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 43, "naics_s05": 15, "naics_s06": 12, "naics_s07": 44, "naics_s08": 274, "naics_s09": 0, "naics_s10": 7, "naics_s11": 7, "naics_s12": 121, "naics_s13": 11, "naics_s14": 37, "naics_s15": 124, "naics_s16": 189, "naics_s17": 72, "naics_s18": 81, "naics_s19": 37, "naics_s20": 35, "race1": 830, "race2": 205, "race3": 10, "race4": 40, "race5": 1, "race6": 23, "ethnicity1": 799, "ethnicity2": 310, "edu1": 157, "edu2": 275, "edu3": 255, "edu4": 182, "Shape_Length": 19728.785613319695, "Shape_Area": 12755509.438786013, "total_2021": 810, "total_2022": 1109 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.794319835816353, 29.299486120860681 ], [ -94.794132835524238, 29.29893612092992 ], [ -94.793983834931907, 29.298497121087681 ], [ -94.793836835317677, 29.298067121054746 ], [ -94.793692835155852, 29.297642120871362 ], [ -94.793542835196803, 29.297204120836909 ], [ -94.793395835424747, 29.296769120743882 ], [ -94.792797834571346, 29.295013120030131 ], [ -94.792162835106197, 29.295170119806045 ], [ -94.791607834699647, 29.295317120577376 ], [ -94.790981834527059, 29.295488120263297 ], [ -94.790455834765297, 29.295631120742211 ], [ -94.789891833871451, 29.295778120251715 ], [ -94.78931383449509, 29.295929120440743 ], [ -94.788174834144215, 29.296230120785147 ], [ -94.788095833413408, 29.296003120271784 ], [ -94.7879968335982, 29.295700120774232 ], [ -94.787888833137245, 29.29536712048273 ], [ -94.787743833521702, 29.294924120667048 ], [ -94.787666833269597, 29.294689120041024 ], [ -94.787591833549939, 29.294486120104118 ], [ -94.787434833230904, 29.294061120288902 ], [ -94.787343833226998, 29.293814119986376 ], [ -94.787286833315534, 29.293623120096399 ], [ -94.787140833736686, 29.293183119726862 ], [ -94.786999833187494, 29.292757119506003 ], [ -94.78622083255118, 29.292957120139796 ], [ -94.785846833324285, 29.293052120317054 ], [ -94.784716832230671, 29.293338120353368 ], [ -94.784862832470822, 29.293784119907674 ], [ -94.785011833138014, 29.294242120687976 ], [ -94.784307832810057, 29.294413120427119 ], [ -94.783858832503043, 29.29453112048018 ], [ -94.782717832549395, 29.29483212034507 ], [ -94.782869832136299, 29.295251120890544 ], [ -94.783031831909028, 29.295698120521429 ], [ -94.781866832567118, 29.295994120935664 ], [ -94.780711831886535, 29.296287120369673 ], [ -94.780858832064766, 29.296714121098454 ], [ -94.781008832303073, 29.297152120913928 ], [ -94.779879831124916, 29.297458120824466 ], [ -94.779557831780764, 29.297545120892305 ], [ -94.778724831248667, 29.297756121180299 ], [ -94.778877831785877, 29.298197121381918 ], [ -94.779026831677697, 29.298624121552276 ], [ -94.777882831480184, 29.298925121363556 ], [ -94.77803683141002, 29.299368121591399 ], [ -94.778183831200636, 29.299794121252809 ], [ -94.777044830708022, 29.300086121625359 ], [ -94.776540830524979, 29.300229121344387 ], [ -94.776191830680062, 29.300279121489478 ], [ -94.775962830953745, 29.300556122070301 ], [ -94.776050830456626, 29.300822122115225 ], [ -94.776191831034538, 29.301250121820438 ], [ -94.776007830426153, 29.30129512167213 ], [ -94.775417830728259, 29.301456121619363 ], [ -94.775192830776106, 29.301488121778039 ], [ -94.775071830221037, 29.301635122124324 ], [ -94.775199830479977, 29.302008122195424 ], [ -94.775348830780587, 29.302445122658824 ], [ -94.774379829927938, 29.302684122267745 ], [ -94.774198829962259, 29.302693121955006 ], [ -94.774294829992968, 29.302951122278369 ], [ -94.774368830690065, 29.303170122339537 ], [ -94.774516830989484, 29.303607122734906 ], [ -94.774151830292809, 29.303703122457367 ], [ -94.773380830138038, 29.303912122538115 ], [ -94.773504829901512, 29.304340122675534 ], [ -94.773701829964011, 29.304890122639804 ], [ -94.774846830615985, 29.304582122874024 ], [ -94.775531830730301, 29.304397122672508 ], [ -94.775983831172809, 29.30427912225829 ], [ -94.77711783099241, 29.303983122116598 ], [ -94.778301831972186, 29.303674122362008 ], [ -94.779419831231749, 29.303379122483307 ], [ -94.78055883167869, 29.303079122044718 ], [ -94.781703832554086, 29.302777122252671 ], [ -94.782270832162141, 29.302627122175387 ], [ -94.782860833079752, 29.302494121914513 ], [ -94.783976833056954, 29.302197121695528 ], [ -94.785154832971088, 29.301885121502121 ], [ -94.786278833474242, 29.301594122116533 ], [ -94.78741083386744, 29.301300122003905 ], [ -94.788562834405752, 29.301002121172584 ], [ -94.789707834667311, 29.300705121161371 ], [ -94.790838834732085, 29.300412120978049 ], [ -94.791988835290539, 29.300114121036813 ], [ -94.793130835515342, 29.299810121072849 ], [ -94.794319835816353, 29.299486120860681 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1306, "Tract": "48167724500", "Area_SqMi": 0.41471664719531409, "total_2009": 4931, "total_2010": 5057, "total_2011": 4543, "total_2012": 4045, "total_2013": 4056, "total_2014": 4230, "total_2015": 4296, "total_2016": 4589, "total_2017": 4683, "total_2018": 4368, "total_2019": 4542, "total_2020": 3375, "age1": 1115, "age2": 2670, "age3": 1694, "earn1": 1398, "earn2": 1306, "earn3": 2775, "naics_s01": 0, "naics_s02": 4, "naics_s03": 36, "naics_s04": 115, "naics_s05": 126, "naics_s06": 41, "naics_s07": 227, "naics_s08": 75, "naics_s09": 47, "naics_s10": 1231, "naics_s11": 148, "naics_s12": 179, "naics_s13": 13, "naics_s14": 1130, "naics_s15": 43, "naics_s16": 427, "naics_s17": 129, "naics_s18": 1029, "naics_s19": 144, "naics_s20": 335, "race1": 4176, "race2": 1039, "race3": 37, "race4": 131, "race5": 10, "race6": 86, "ethnicity1": 4044, "ethnicity2": 1435, "edu1": 725, "edu2": 1264, "edu3": 1460, "edu4": 915, "Shape_Length": 13597.986455685337, "Shape_Area": 11561590.32916989, "total_2021": 3950, "total_2022": 5479 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.80141383706453, 29.30589812249336 ], [ -94.801524837399896, 29.305787121789315 ], [ -94.801372837707675, 29.305351121827787 ], [ -94.801352837578392, 29.305296122289175 ], [ -94.801190837169443, 29.304834121514084 ], [ -94.801131837644178, 29.304664121517586 ], [ -94.801073837080324, 29.304460121725004 ], [ -94.800907837329547, 29.303994122020523 ], [ -94.800859837642818, 29.303858121977488 ], [ -94.800769837603738, 29.303598121550557 ], [ -94.800598837345518, 29.303085121398222 ], [ -94.800477836712446, 29.302722121342484 ], [ -94.800326837304866, 29.302283121080659 ], [ -94.800176837162823, 29.301848121199075 ], [ -94.800026836729259, 29.301401121520989 ], [ -94.799882837183418, 29.300975121553812 ], [ -94.799733837112541, 29.30053612101721 ], [ -94.799593836935031, 29.300121121108006 ], [ -94.79943583679777, 29.299654121191598 ], [ -94.799293837185033, 29.299237121141744 ], [ -94.799151836462187, 29.29882912096642 ], [ -94.798955836661449, 29.298268120383199 ], [ -94.797803836014111, 29.29857212043532 ], [ -94.796670836322107, 29.298867120788486 ], [ -94.795528835340278, 29.299163120895081 ], [ -94.794319835816353, 29.299486120860681 ], [ -94.793130835515342, 29.299810121072849 ], [ -94.791988835290539, 29.300114121036813 ], [ -94.790838834732085, 29.300412120978049 ], [ -94.789707834667311, 29.300705121161371 ], [ -94.788562834405752, 29.301002121172584 ], [ -94.78741083386744, 29.301300122003905 ], [ -94.787597834060037, 29.30184312202508 ], [ -94.787743834036789, 29.30225612138501 ], [ -94.787862833810166, 29.302635122185322 ], [ -94.787887833846128, 29.302714122198108 ], [ -94.78802183437422, 29.303148122021067 ], [ -94.788162833723604, 29.303573122215621 ], [ -94.788327833848399, 29.304007121817076 ], [ -94.788433833960056, 29.304289122347988 ], [ -94.788491834261222, 29.304443122011968 ], [ -94.788650834250973, 29.304874122672906 ], [ -94.788791834253459, 29.305307122590513 ], [ -94.788927834284735, 29.305722122154961 ], [ -94.789080834523929, 29.306192122286198 ], [ -94.789214834847712, 29.30660312254226 ], [ -94.78936383495018, 29.307058122396807 ], [ -94.789510834118587, 29.30748912288913 ], [ -94.789654834251806, 29.307907123291468 ], [ -94.789811834633866, 29.308365123423041 ], [ -94.790098834815083, 29.309256123448758 ], [ -94.791287834877522, 29.308940123157651 ], [ -94.79240983560571, 29.308646122647136 ], [ -94.793558835128877, 29.308345122681178 ], [ -94.794684836388186, 29.308050122638875 ], [ -94.795836835802191, 29.307748122683368 ], [ -94.797030836559671, 29.307435122781961 ], [ -94.799751837255599, 29.306734121995177 ], [ -94.800305836864609, 29.306588122619488 ], [ -94.800489837060184, 29.306501122523105 ], [ -94.800742837424082, 29.30639412213155 ], [ -94.801034837565453, 29.306229122467528 ], [ -94.80141383706453, 29.30589812249336 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1307, "Tract": "48167724600", "Area_SqMi": 0.27001186444175479, "total_2009": 194, "total_2010": 200, "total_2011": 187, "total_2012": 195, "total_2013": 190, "total_2014": 213, "total_2015": 223, "total_2016": 195, "total_2017": 172, "total_2018": 184, "total_2019": 192, "total_2020": 169, "age1": 43, "age2": 103, "age3": 75, "earn1": 56, "earn2": 77, "earn3": 88, "naics_s01": 0, "naics_s02": 0, "naics_s03": 53, "naics_s04": 5, "naics_s05": 2, "naics_s06": 4, "naics_s07": 59, "naics_s08": 0, "naics_s09": 0, "naics_s10": 10, "naics_s11": 18, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 1, "naics_s16": 18, "naics_s17": 0, "naics_s18": 38, "naics_s19": 13, "naics_s20": 0, "race1": 172, "race2": 33, "race3": 1, "race4": 15, "race5": 0, "race6": 0, "ethnicity1": 167, "ethnicity2": 54, "edu1": 36, "edu2": 59, "edu3": 57, "edu4": 26, "Shape_Length": 15639.120095096219, "Shape_Area": 7527468.6507115373, "total_2021": 202, "total_2022": 221 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.8190018411794, 29.294995119274994 ], [ -94.818722841574484, 29.294146119357457 ], [ -94.818573841808174, 29.29368411871652 ], [ -94.818407841698502, 29.293166118920833 ], [ -94.817223841598505, 29.293479118739945 ], [ -94.816086840590529, 29.293779119283922 ], [ -94.814945840952007, 29.294081119299879 ], [ -94.813806840612855, 29.29437411915762 ], [ -94.812666839732714, 29.294668119109904 ], [ -94.811517839446353, 29.294964119326441 ], [ -94.810369839720508, 29.29526411944941 ], [ -94.809221839431274, 29.295572119492491 ], [ -94.808103838706572, 29.295866119780648 ], [ -94.806939838105947, 29.29617112009926 ], [ -94.805807838772225, 29.296469119919205 ], [ -94.804658837822743, 29.296771119785198 ], [ -94.803512838194408, 29.297072120014931 ], [ -94.802947838016394, 29.297220120743532 ], [ -94.802364837239452, 29.297373120743075 ], [ -94.801795837232177, 29.297522120324601 ], [ -94.801230837189635, 29.297671120667754 ], [ -94.80065683738934, 29.297827120792057 ], [ -94.800093836816501, 29.29796912049639 ], [ -94.799498836741307, 29.298125120735616 ], [ -94.798955836661449, 29.298268120383199 ], [ -94.799151836462187, 29.29882912096642 ], [ -94.799293837185033, 29.299237121141744 ], [ -94.79943583679777, 29.299654121191598 ], [ -94.799593836935031, 29.300121121108006 ], [ -94.799733837112541, 29.30053612101721 ], [ -94.799882837183418, 29.300975121553812 ], [ -94.800026836729259, 29.301401121520989 ], [ -94.800176837162823, 29.301848121199075 ], [ -94.801306837575225, 29.301550121218259 ], [ -94.802477837199632, 29.301241120998494 ], [ -94.803030837593894, 29.301095121337475 ], [ -94.803597837532038, 29.300946120780949 ], [ -94.804733838206658, 29.300646120524192 ], [ -94.805879837937184, 29.300361120832452 ], [ -94.807029838656462, 29.300075120389483 ], [ -94.808173838975222, 29.299773120897896 ], [ -94.809325838997324, 29.299468120858251 ], [ -94.810469839592642, 29.299160120388176 ], [ -94.812996839860958, 29.298479120471505 ], [ -94.81386384066704, 29.298252120211639 ], [ -94.813806840262231, 29.298074119760695 ], [ -94.813719840141516, 29.297820119720786 ], [ -94.813579840481708, 29.297400120414281 ], [ -94.813283840608307, 29.296511119710836 ], [ -94.813779840544171, 29.296377119613954 ], [ -94.815580840385508, 29.295904119517463 ], [ -94.816707841089382, 29.295606119409545 ], [ -94.817599841666549, 29.295370119685995 ], [ -94.817858841042792, 29.295304119669638 ], [ -94.818538841062349, 29.295132119732848 ], [ -94.8190018411794, 29.294995119274994 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1308, "Tract": "48167724700", "Area_SqMi": 0.2936416361716126, "total_2009": 295, "total_2010": 338, "total_2011": 339, "total_2012": 280, "total_2013": 293, "total_2014": 252, "total_2015": 240, "total_2016": 276, "total_2017": 301, "total_2018": 304, "total_2019": 246, "total_2020": 256, "age1": 25, "age2": 82, "age3": 65, "earn1": 61, "earn2": 64, "earn3": 47, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 1, "naics_s06": 0, "naics_s07": 37, "naics_s08": 4, "naics_s09": 2, "naics_s10": 0, "naics_s11": 5, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 51, "naics_s17": 4, "naics_s18": 61, "naics_s19": 0, "naics_s20": 0, "race1": 111, "race2": 44, "race3": 4, "race4": 8, "race5": 1, "race6": 4, "ethnicity1": 125, "ethnicity2": 47, "edu1": 36, "edu2": 40, "edu3": 43, "edu4": 28, "Shape_Length": 13851.884668200702, "Shape_Area": 8186226.243781466, "total_2021": 215, "total_2022": 172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.807161838052224, 29.293161119225854 ], [ -94.806985837930199, 29.292643119396995 ], [ -94.806950838773986, 29.292538119531478 ], [ -94.806861837920593, 29.292279118693315 ], [ -94.806715837790222, 29.291855119053075 ], [ -94.806563838044681, 29.291412118601727 ], [ -94.806418838231593, 29.290991118700777 ], [ -94.806269837919217, 29.290558118728615 ], [ -94.806150838575419, 29.290210118461761 ], [ -94.806117837872293, 29.290115118462996 ], [ -94.805971837916744, 29.289688118259164 ], [ -94.804877838251727, 29.289968118556803 ], [ -94.804546838046562, 29.290052118939812 ], [ -94.803694837471227, 29.290278119067608 ], [ -94.802590837647912, 29.290570119033767 ], [ -94.801410837196912, 29.290881118711098 ], [ -94.800317836562385, 29.291170119361599 ], [ -94.7991318362199, 29.291481118909228 ], [ -94.797994835647799, 29.291778119477947 ], [ -94.796837835759476, 29.292080119737811 ], [ -94.797150836303658, 29.292990120003424 ], [ -94.797280835615112, 29.293369119298621 ], [ -94.797428836289981, 29.293802119474755 ], [ -94.796921835515988, 29.293935120092311 ], [ -94.796318836029243, 29.294098120093508 ], [ -94.795157835897882, 29.294413119620053 ], [ -94.79400083478393, 29.294707120081782 ], [ -94.793435834760004, 29.294851120469328 ], [ -94.792797834571346, 29.295013120030131 ], [ -94.793395835424747, 29.296769120743882 ], [ -94.793542835196803, 29.297204120836909 ], [ -94.793692835155852, 29.297642120871362 ], [ -94.793836835317677, 29.298067121054746 ], [ -94.793983834931907, 29.298497121087681 ], [ -94.794132835524238, 29.29893612092992 ], [ -94.794319835816353, 29.299486120860681 ], [ -94.795528835340278, 29.299163120895081 ], [ -94.796670836322107, 29.298867120788486 ], [ -94.797803836014111, 29.29857212043532 ], [ -94.798955836661449, 29.298268120383199 ], [ -94.799498836741307, 29.298125120735616 ], [ -94.800093836816501, 29.29796912049639 ], [ -94.80065683738934, 29.297827120792057 ], [ -94.801230837189635, 29.297671120667754 ], [ -94.801795837232177, 29.297522120324601 ], [ -94.802364837239452, 29.297373120743075 ], [ -94.802947838016394, 29.297220120743532 ], [ -94.803512838194408, 29.297072120014931 ], [ -94.803179837100032, 29.296078119659771 ], [ -94.802893837304907, 29.295224119511001 ], [ -94.802738837664606, 29.294762119706153 ], [ -94.802601837374198, 29.294362119554073 ], [ -94.803044837577886, 29.29424812005449 ], [ -94.803739837323349, 29.294069119671725 ], [ -94.803990837382187, 29.294004119917417 ], [ -94.804885838156395, 29.293766119460969 ], [ -94.806021838385576, 29.29346211972814 ], [ -94.806378838179697, 29.29336611905531 ], [ -94.807161838052224, 29.293161119225854 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1309, "Tract": "48167724800", "Area_SqMi": 0.25043368714168146, "total_2009": 335, "total_2010": 414, "total_2011": 387, "total_2012": 387, "total_2013": 367, "total_2014": 321, "total_2015": 445, "total_2016": 464, "total_2017": 402, "total_2018": 412, "total_2019": 378, "total_2020": 249, "age1": 63, "age2": 128, "age3": 44, "earn1": 54, "earn2": 76, "earn3": 105, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 13, "naics_s08": 104, "naics_s09": 0, "naics_s10": 4, "naics_s11": 2, "naics_s12": 5, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 51, "naics_s17": 0, "naics_s18": 51, "naics_s19": 5, "naics_s20": 0, "race1": 182, "race2": 29, "race3": 2, "race4": 16, "race5": 0, "race6": 6, "ethnicity1": 173, "ethnicity2": 62, "edu1": 34, "edu2": 46, "edu3": 56, "edu4": 36, "Shape_Length": 12334.184884079179, "Shape_Area": 6981662.5759708285, "total_2021": 231, "total_2022": 235 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.7991318362199, 29.291481118909228 ], [ -94.798955836469162, 29.29096611909452 ], [ -94.798832835859727, 29.290607119069399 ], [ -94.798683836104061, 29.290170118764031 ], [ -94.798536836102016, 29.28974011913564 ], [ -94.798385835576497, 29.289303118532228 ], [ -94.798235835551353, 29.288867118933744 ], [ -94.798087836116309, 29.288437118726733 ], [ -94.797939835719788, 29.288001118470103 ], [ -94.796804835716358, 29.2882961186716 ], [ -94.795651835016884, 29.288595118697049 ], [ -94.794517834872948, 29.288892118647968 ], [ -94.79336483485956, 29.289194118638573 ], [ -94.792222834372836, 29.289492119294113 ], [ -94.791030834574826, 29.289803118692333 ], [ -94.789847833862979, 29.290111119642535 ], [ -94.7898568343211, 29.290044119314349 ], [ -94.789726833554909, 29.28966611921026 ], [ -94.789580834126397, 29.289242119105769 ], [ -94.789502833709975, 29.289015119118535 ], [ -94.788475833290008, 29.28981611965645 ], [ -94.788673833152714, 29.290402119248203 ], [ -94.78897083415761, 29.291282119223045 ], [ -94.787795833074355, 29.291514119338881 ], [ -94.786690833023144, 29.291855119346394 ], [ -94.786791833346328, 29.292129119785439 ], [ -94.786843833155189, 29.292287119721824 ], [ -94.786999833187494, 29.292757119506003 ], [ -94.787140833736686, 29.293183119726862 ], [ -94.787286833315534, 29.293623120096399 ], [ -94.787343833226998, 29.293814119986376 ], [ -94.787434833230904, 29.294061120288902 ], [ -94.787591833549939, 29.294486120104118 ], [ -94.787666833269597, 29.294689120041024 ], [ -94.787743833521702, 29.294924120667048 ], [ -94.787888833137245, 29.29536712048273 ], [ -94.7879968335982, 29.295700120774232 ], [ -94.788095833413408, 29.296003120271784 ], [ -94.788174834144215, 29.296230120785147 ], [ -94.78931383449509, 29.295929120440743 ], [ -94.789891833871451, 29.295778120251715 ], [ -94.790455834765297, 29.295631120742211 ], [ -94.790981834527059, 29.295488120263297 ], [ -94.791607834699647, 29.295317120577376 ], [ -94.792162835106197, 29.295170119806045 ], [ -94.792797834571346, 29.295013120030131 ], [ -94.793435834760004, 29.294851120469328 ], [ -94.79400083478393, 29.294707120081782 ], [ -94.795157835897882, 29.294413119620053 ], [ -94.796318836029243, 29.294098120093508 ], [ -94.796921835515988, 29.293935120092311 ], [ -94.797428836289981, 29.293802119474755 ], [ -94.797280835615112, 29.293369119298621 ], [ -94.797150836303658, 29.292990120003424 ], [ -94.796837835759476, 29.292080119737811 ], [ -94.797994835647799, 29.291778119477947 ], [ -94.7991318362199, 29.291481118909228 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1310, "Tract": "48167725000", "Area_SqMi": 0.27887071937089658, "total_2009": 331, "total_2010": 357, "total_2011": 365, "total_2012": 341, "total_2013": 357, "total_2014": 349, "total_2015": 371, "total_2016": 378, "total_2017": 400, "total_2018": 400, "total_2019": 421, "total_2020": 383, "age1": 53, "age2": 219, "age3": 165, "earn1": 118, "earn2": 102, "earn3": 217, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 45, "naics_s05": 0, "naics_s06": 4, "naics_s07": 19, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 6, "naics_s15": 344, "naics_s16": 0, "naics_s17": 0, "naics_s18": 8, "naics_s19": 11, "naics_s20": 0, "race1": 359, "race2": 61, "race3": 1, "race4": 13, "race5": 0, "race6": 3, "ethnicity1": 316, "ethnicity2": 121, "edu1": 58, "edu2": 91, "edu3": 112, "edu4": 123, "Shape_Length": 13280.411640003254, "Shape_Area": 7774438.3640542664, "total_2021": 428, "total_2022": 437 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.813930839830036, 29.283804117288081 ], [ -94.81378583964883, 29.283369117079499 ], [ -94.813636839471641, 29.282925117373832 ], [ -94.813492840084223, 29.282494117283463 ], [ -94.81343983995778, 29.282337116628671 ], [ -94.813341840026283, 29.282064116987438 ], [ -94.813239839518872, 29.281779116700172 ], [ -94.813192839885843, 29.281636116873855 ], [ -94.813045838976649, 29.281190116797546 ], [ -94.812973839012344, 29.280973116608457 ], [ -94.812894839305969, 29.280744116428792 ], [ -94.812739839800088, 29.28031311649784 ], [ -94.812595839172985, 29.279890116516167 ], [ -94.812445838841612, 29.279452115819957 ], [ -94.810161838205516, 29.28004711640234 ], [ -94.810087838357774, 29.279825116309411 ], [ -94.810017838662702, 29.27961911665826 ], [ -94.809867838389948, 29.279178115962864 ], [ -94.809795838329265, 29.278968116640947 ], [ -94.809725838501194, 29.278751115827095 ], [ -94.809706838630973, 29.278721115769375 ], [ -94.809558838025126, 29.278314115676537 ], [ -94.809463838278575, 29.278053116147859 ], [ -94.809427838243096, 29.277937115847596 ], [ -94.809407838898466, 29.27787111635546 ], [ -94.809276838209342, 29.277440115576525 ], [ -94.808672837867888, 29.27759511618029 ], [ -94.808140837815827, 29.277737115928456 ], [ -94.807799838026568, 29.277828116009736 ], [ -94.807433838398339, 29.278003116142553 ], [ -94.80703483733771, 29.278227116354572 ], [ -94.807274838291718, 29.278918116458801 ], [ -94.807428837612022, 29.279363116025284 ], [ -94.807574838201063, 29.279783116227701 ], [ -94.806518837533119, 29.280057116483057 ], [ -94.806422837943671, 29.280083116567688 ], [ -94.805287837729637, 29.280390116668848 ], [ -94.803016836865922, 29.280981116970384 ], [ -94.803294836904143, 29.281814117445894 ], [ -94.803311836792105, 29.281866117015745 ], [ -94.803448836963938, 29.282276117194083 ], [ -94.803598836776132, 29.282728117567029 ], [ -94.803842836808101, 29.283476117157043 ], [ -94.803889837296396, 29.283605117546045 ], [ -94.804038837211877, 29.284022117269938 ], [ -94.804198837522847, 29.284466117463491 ], [ -94.804343837898358, 29.28489211740245 ], [ -94.804494837261984, 29.285336117407876 ], [ -94.804641837106089, 29.285770118114677 ], [ -94.804794837867348, 29.286209118045939 ], [ -94.804946838022744, 29.286645118419475 ], [ -94.805093837195471, 29.287066118439537 ], [ -94.805247837265455, 29.287507118316018 ], [ -94.805310838256204, 29.287689117817123 ], [ -94.805396838212317, 29.287948118704662 ], [ -94.805539837792779, 29.288381118192824 ], [ -94.805685838175421, 29.28882311806252 ], [ -94.806785837996713, 29.288528117950491 ], [ -94.807964838200633, 29.288213118354481 ], [ -94.809095839246012, 29.287905118015374 ], [ -94.810240839094817, 29.287593118495035 ], [ -94.81010183943458, 29.287185117935131 ], [ -94.810062838645976, 29.287070118101084 ], [ -94.809949839221474, 29.286745118012611 ], [ -94.809837838824151, 29.286421117995303 ], [ -94.809661838541416, 29.285875117831537 ], [ -94.809596839166375, 29.285673118103269 ], [ -94.809507838615403, 29.285444117679827 ], [ -94.809363838677072, 29.285007117569069 ], [ -94.810521838474145, 29.284697117818141 ], [ -94.811634839197808, 29.284400117739317 ], [ -94.812773839406162, 29.284100117458827 ], [ -94.812898839832897, 29.284067117603552 ], [ -94.813930839830036, 29.283804117288081 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1311, "Tract": "48167725100", "Area_SqMi": 0.30952342692308987, "total_2009": 274, "total_2010": 300, "total_2011": 316, "total_2012": 286, "total_2013": 320, "total_2014": 298, "total_2015": 329, "total_2016": 395, "total_2017": 433, "total_2018": 422, "total_2019": 378, "total_2020": 388, "age1": 72, "age2": 212, "age3": 110, "earn1": 53, "earn2": 116, "earn3": 225, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 3, "naics_s06": 0, "naics_s07": 73, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 15, "naics_s16": 87, "naics_s17": 124, "naics_s18": 73, "naics_s19": 8, "naics_s20": 0, "race1": 289, "race2": 74, "race3": 6, "race4": 17, "race5": 0, "race6": 8, "ethnicity1": 289, "ethnicity2": 105, "edu1": 47, "edu2": 89, "edu3": 111, "edu4": 75, "Shape_Length": 16439.822274424991, "Shape_Area": 8628983.3879761212, "total_2021": 427, "total_2022": 394 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.815119840030448, 29.287278117477111 ], [ -94.814973839753449, 29.286839117645407 ], [ -94.814831839825899, 29.286414117983075 ], [ -94.814684839854891, 29.285972117599908 ], [ -94.814537840461881, 29.285531117418603 ], [ -94.814389839726019, 29.285109117783879 ], [ -94.814234840021996, 29.28466711751344 ], [ -94.81408483992611, 29.284240117600312 ], [ -94.813930839830036, 29.283804117288081 ], [ -94.812898839832897, 29.284067117603552 ], [ -94.812773839406162, 29.284100117458827 ], [ -94.811634839197808, 29.284400117739317 ], [ -94.810521838474145, 29.284697117818141 ], [ -94.809363838677072, 29.285007117569069 ], [ -94.809507838615403, 29.285444117679827 ], [ -94.809596839166375, 29.285673118103269 ], [ -94.809661838541416, 29.285875117831537 ], [ -94.809837838824151, 29.286421117995303 ], [ -94.809949839221474, 29.286745118012611 ], [ -94.810062838645976, 29.287070118101084 ], [ -94.81010183943458, 29.287185117935131 ], [ -94.810240839094817, 29.287593118495035 ], [ -94.809095839246012, 29.287905118015374 ], [ -94.807964838200633, 29.288213118354481 ], [ -94.806785837996713, 29.288528117950491 ], [ -94.805685838175421, 29.28882311806252 ], [ -94.805826837544927, 29.28925111894695 ], [ -94.805971837916744, 29.289688118259164 ], [ -94.806117837872293, 29.290115118462996 ], [ -94.806150838575419, 29.290210118461761 ], [ -94.806269837919217, 29.290558118728615 ], [ -94.806418838231593, 29.290991118700777 ], [ -94.806563838044681, 29.291412118601727 ], [ -94.806715837790222, 29.291855119053075 ], [ -94.806861837920593, 29.292279118693315 ], [ -94.806950838773986, 29.292538119531478 ], [ -94.806985837930199, 29.292643119396995 ], [ -94.807161838052224, 29.293161119225854 ], [ -94.806378838179697, 29.29336611905531 ], [ -94.806021838385576, 29.29346211972814 ], [ -94.804885838156395, 29.293766119460969 ], [ -94.803990837382187, 29.294004119917417 ], [ -94.803739837323349, 29.294069119671725 ], [ -94.803044837577886, 29.29424812005449 ], [ -94.802601837374198, 29.294362119554073 ], [ -94.802738837664606, 29.294762119706153 ], [ -94.802893837304907, 29.295224119511001 ], [ -94.803179837100032, 29.296078119659771 ], [ -94.803512838194408, 29.297072120014931 ], [ -94.804658837822743, 29.296771119785198 ], [ -94.805807838772225, 29.296469119919205 ], [ -94.806939838105947, 29.29617112009926 ], [ -94.808103838706572, 29.295866119780648 ], [ -94.809221839431274, 29.295572119492491 ], [ -94.810369839720508, 29.29526411944941 ], [ -94.811517839446353, 29.294964119326441 ], [ -94.81133783936815, 29.294423119271364 ], [ -94.811189839251895, 29.293980119697856 ], [ -94.810902839428763, 29.29311811902755 ], [ -94.812008839880164, 29.292818118826776 ], [ -94.813156840117557, 29.29251011939126 ], [ -94.814316840313879, 29.292224118557854 ], [ -94.814169840098842, 29.291787118390261 ], [ -94.81409684051178, 29.291570118748073 ], [ -94.81401383972451, 29.291346118250729 ], [ -94.813694840226347, 29.290482118903771 ], [ -94.813639839585974, 29.290331118799184 ], [ -94.813414839637986, 29.289624118322447 ], [ -94.813268840161314, 29.289185118471185 ], [ -94.813129839821713, 29.288768117872575 ], [ -94.812976839471872, 29.288309117959461 ], [ -94.812832840080702, 29.287877118110622 ], [ -94.813964839810552, 29.287581117869045 ], [ -94.815119840030448, 29.287278117477111 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1312, "Tract": "48201253700", "Area_SqMi": 1.5776989507242252, "total_2009": 2940, "total_2010": 2928, "total_2011": 3247, "total_2012": 2967, "total_2013": 2958, "total_2014": 2874, "total_2015": 2949, "total_2016": 2707, "total_2017": 2652, "total_2018": 2619, "total_2019": 2493, "total_2020": 2189, "age1": 679, "age2": 1027, "age3": 441, "earn1": 521, "earn2": 964, "earn3": 662, "naics_s01": 0, "naics_s02": 0, "naics_s03": 24, "naics_s04": 0, "naics_s05": 21, "naics_s06": 5, "naics_s07": 905, "naics_s08": 0, "naics_s09": 2, "naics_s10": 114, "naics_s11": 33, "naics_s12": 78, "naics_s13": 0, "naics_s14": 46, "naics_s15": 12, "naics_s16": 613, "naics_s17": 0, "naics_s18": 220, "naics_s19": 74, "naics_s20": 0, "race1": 1593, "race2": 404, "race3": 14, "race4": 108, "race5": 4, "race6": 24, "ethnicity1": 1382, "ethnicity2": 765, "edu1": 302, "edu2": 394, "edu3": 516, "edu4": 256, "Shape_Length": 30614.431238269248, "Shape_Area": 43983546.487450451, "total_2021": 2134, "total_2022": 2147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.980750902591325, 29.751406208246333 ], [ -94.980724902504363, 29.75138420869424 ], [ -94.980636903424028, 29.751351208591352 ], [ -94.980162902975238, 29.75123620856499 ], [ -94.979527902509318, 29.750993208119596 ], [ -94.979341902157202, 29.750817208067676 ], [ -94.979292902727479, 29.750654208044697 ], [ -94.979322902209375, 29.750426208033026 ], [ -94.979351902826281, 29.750336208494144 ], [ -94.979419902380471, 29.750079208163616 ], [ -94.97947690292024, 29.74985620815853 ], [ -94.979392902376873, 29.749861208208344 ], [ -94.977322901700674, 29.749939208065022 ], [ -94.977108901712725, 29.749947208488809 ], [ -94.976845901432725, 29.749941208485545 ], [ -94.974833901154753, 29.750007208610903 ], [ -94.972872901231881, 29.749971208247924 ], [ -94.969985900418877, 29.749966208531763 ], [ -94.969446899673471, 29.749983208398916 ], [ -94.966973899099358, 29.7500602084185 ], [ -94.964948898380356, 29.75017320899558 ], [ -94.964067898844746, 29.750273208501469 ], [ -94.963841898475337, 29.750293208695403 ], [ -94.963739898071339, 29.750306208642701 ], [ -94.963744899050454, 29.750466208596251 ], [ -94.963755898307596, 29.750778209274962 ], [ -94.963786899045459, 29.751459209206473 ], [ -94.963797898221827, 29.751715209068955 ], [ -94.963803898274833, 29.752172209300351 ], [ -94.963811899214264, 29.752367208803761 ], [ -94.963833898226937, 29.752890209553772 ], [ -94.963843898458293, 29.753219209775221 ], [ -94.963844898404957, 29.753529209032756 ], [ -94.963850898295433, 29.754070209135268 ], [ -94.963852899163086, 29.754255209234483 ], [ -94.963865899327672, 29.754681209422635 ], [ -94.963865899301766, 29.754948210157323 ], [ -94.963866899256146, 29.755250209813415 ], [ -94.96388489848205, 29.755764209964113 ], [ -94.963899899086613, 29.756251209924613 ], [ -94.963898899249926, 29.756343210010165 ], [ -94.963895898652964, 29.756611209870901 ], [ -94.963893898517739, 29.756805209992393 ], [ -94.963897899296597, 29.75689621057629 ], [ -94.963907899242685, 29.757138210450911 ], [ -94.96393089918368, 29.757653210457292 ], [ -94.963930899036896, 29.75780621008748 ], [ -94.963930899071173, 29.758267210393672 ], [ -94.963931898930412, 29.758566210758698 ], [ -94.963931899143915, 29.758804210634615 ], [ -94.963935899390464, 29.758910210663728 ], [ -94.963948898568134, 29.759220210671678 ], [ -94.96402089961947, 29.760773210821977 ], [ -94.964020898752111, 29.760983211130256 ], [ -94.964020899152715, 29.761188211026834 ], [ -94.96402189939684, 29.761276210576554 ], [ -94.964026898750348, 29.761500210850532 ], [ -94.964017899102345, 29.761818210925551 ], [ -94.963999898972489, 29.763311211872661 ], [ -94.963995898808022, 29.76415321175006 ], [ -94.964007899803804, 29.767062211861955 ], [ -94.96400789989427, 29.767173212543145 ], [ -94.964017899154797, 29.769694212921632 ], [ -94.964049899947554, 29.76977421310492 ], [ -94.964047899070181, 29.769909213068363 ], [ -94.96403489996456, 29.770398213174555 ], [ -94.964039899820207, 29.770655212601469 ], [ -94.964058899328862, 29.771176213488047 ], [ -94.964058899945172, 29.771306212773005 ], [ -94.964057899461068, 29.77184321305101 ], [ -94.96406889951794, 29.772479213620077 ], [ -94.964088899961212, 29.773415213349665 ], [ -94.964080899577098, 29.775138213855449 ], [ -94.964077899499173, 29.776020213663976 ], [ -94.96407190035896, 29.777324214269239 ], [ -94.964102899815572, 29.777669214109558 ], [ -94.96411290043568, 29.778320214522182 ], [ -94.964961900342743, 29.77817721470829 ], [ -94.965801900602671, 29.777919214479937 ], [ -94.966295900109984, 29.777787214205944 ], [ -94.967103900302504, 29.777613214527904 ], [ -94.970187901555065, 29.777558213856036 ], [ -94.971292901435774, 29.777521213951935 ], [ -94.971545901361594, 29.7775122142443 ], [ -94.972918902564842, 29.777466213879546 ], [ -94.973291901927325, 29.777453213861257 ], [ -94.973892902003854, 29.777430213824569 ], [ -94.974478903001113, 29.777419214143173 ], [ -94.974869902963974, 29.777434214293432 ], [ -94.975214902295406, 29.777493213572392 ], [ -94.975332902432527, 29.777513213954634 ], [ -94.976410902936507, 29.777720214355256 ], [ -94.977034902855536, 29.777839213536733 ], [ -94.97760890332313, 29.77795921416611 ], [ -94.977619903467584, 29.777776214326998 ], [ -94.977618902927645, 29.777625213743214 ], [ -94.977618903860133, 29.777564214198776 ], [ -94.977626903434199, 29.777456214147907 ], [ -94.97764790329326, 29.777201214088606 ], [ -94.977674903249195, 29.776882214095558 ], [ -94.977671902995681, 29.776539213739568 ], [ -94.977687903311661, 29.776142213537515 ], [ -94.97768090291234, 29.775511213183186 ], [ -94.977675903236474, 29.775249213462754 ], [ -94.977670903720607, 29.775039213710368 ], [ -94.977666903145732, 29.774800212912734 ], [ -94.977647903329895, 29.774381213351724 ], [ -94.977620903349134, 29.773585213030017 ], [ -94.977610903413776, 29.772947213316634 ], [ -94.977604903284018, 29.772598213033085 ], [ -94.977595903441156, 29.77208121244135 ], [ -94.977591903077666, 29.771851212884343 ], [ -94.97758090330413, 29.77121821302508 ], [ -94.977573902617337, 29.770791212699624 ], [ -94.977569902876738, 29.770548212383488 ], [ -94.977568903116946, 29.770277212631822 ], [ -94.977558903389024, 29.769950212416319 ], [ -94.977555902679129, 29.76975621241963 ], [ -94.977553903484178, 29.769607212724406 ], [ -94.977548902969176, 29.769296212328609 ], [ -94.977542903217184, 29.768956212230449 ], [ -94.977534902500636, 29.768509212470551 ], [ -94.977524902426467, 29.767846211561618 ], [ -94.977521902476198, 29.767664211906091 ], [ -94.977518902804164, 29.767506212224564 ], [ -94.977512902846726, 29.767152211878347 ], [ -94.977497902979735, 29.766954211564602 ], [ -94.977491902709545, 29.766647211752829 ], [ -94.977485903085793, 29.766361212030787 ], [ -94.977481902750569, 29.766135211329772 ], [ -94.977475902557302, 29.765837211102284 ], [ -94.977471903316612, 29.765628211256026 ], [ -94.977473902323098, 29.765332211515069 ], [ -94.977461902592708, 29.764845211601404 ], [ -94.977454903235568, 29.764545211432424 ], [ -94.977423902986217, 29.763280210639916 ], [ -94.977415902921067, 29.762983210869187 ], [ -94.977401902360555, 29.762403210875021 ], [ -94.977395902396609, 29.762176211000298 ], [ -94.977373902117776, 29.761283210340537 ], [ -94.97736890294901, 29.761124210550104 ], [ -94.977350902428086, 29.760539210693771 ], [ -94.977340902475362, 29.760210210784241 ], [ -94.977329902987137, 29.759865210003024 ], [ -94.97732490298506, 29.759714210429202 ], [ -94.97730590208991, 29.759089210321932 ], [ -94.977282902167559, 29.758338210120151 ], [ -94.977277902680527, 29.75816720970548 ], [ -94.977271902647459, 29.758005209612261 ], [ -94.977246902340056, 29.757193209655945 ], [ -94.977222902744089, 29.756408209699945 ], [ -94.977213901807858, 29.756115209210673 ], [ -94.977216902556677, 29.755394209774888 ], [ -94.9771969022501, 29.754721209412182 ], [ -94.977241902066723, 29.754717208959644 ], [ -94.977341902364188, 29.754673208916088 ], [ -94.977448902185074, 29.754651209042592 ], [ -94.977562902130686, 29.754585208943283 ], [ -94.977833902676977, 29.754365209422989 ], [ -94.97814890229651, 29.754195209190772 ], [ -94.978469903048307, 29.754030209150667 ], [ -94.978614902844384, 29.753931209099413 ], [ -94.978683902981771, 29.753771209116039 ], [ -94.978910902187991, 29.753040208909884 ], [ -94.978954902815076, 29.752946209050723 ], [ -94.979042902954774, 29.75284720855068 ], [ -94.979219903059601, 29.752721208691227 ], [ -94.979313903101854, 29.752583208897157 ], [ -94.979382902405206, 29.752380208828523 ], [ -94.979470902800685, 29.752154208591016 ], [ -94.979666902240112, 29.752039208903177 ], [ -94.980101902394338, 29.751884208083823 ], [ -94.980460902763042, 29.751802208374201 ], [ -94.980586902585074, 29.75162020819289 ], [ -94.980623902614028, 29.751532208821704 ], [ -94.980750902591325, 29.751406208246333 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1313, "Tract": "48167990000", "Area_SqMi": 203.02141261912138, "total_2009": null, "total_2010": null, "total_2011": null, "total_2012": null, "total_2013": null, "total_2014": null, "total_2015": null, "total_2016": null, "total_2017": null, "total_2018": null, "total_2019": null, "total_2020": null, "age1": null, "age2": null, "age3": null, "earn1": null, "earn2": null, "earn3": null, "naics_s01": null, "naics_s02": null, "naics_s03": null, "naics_s04": null, "naics_s05": null, "naics_s06": null, "naics_s07": null, "naics_s08": null, "naics_s09": null, "naics_s10": null, "naics_s11": null, "naics_s12": null, "naics_s13": null, "naics_s14": null, "naics_s15": null, "naics_s16": null, "naics_s17": null, "naics_s18": null, "naics_s19": null, "naics_s20": null, "race1": null, "race2": null, "race3": null, "race4": null, "race5": null, "race6": null, "ethnicity1": null, "ethnicity2": null, "edu1": null, "edu2": null, "edu3": null, "edu4": null, "Shape_Length": 649929.73031890066, "Shape_Area": 5659889509.2006941, "total_2021": null, "total_2022": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.123979911540943, 29.080296064505546 ], [ -95.120825909960999, 29.078658064901333 ], [ -95.120106909823164, 29.078285064931919 ], [ -95.119776909409254, 29.078114064388245 ], [ -95.118529909672333, 29.077451064815495 ], [ -95.116722909385487, 29.076461064315495 ], [ -95.106434906116903, 29.070877063350903 ], [ -95.091651902036787, 29.062744061802956 ], [ -95.091628902094158, 29.062744062472049 ], [ -95.088363901702905, 29.06520506279244 ], [ -95.088071901359044, 29.065658063161877 ], [ -95.087740901371617, 29.066173063183104 ], [ -95.087103901356869, 29.067161063525994 ], [ -95.086899900603271, 29.067477062892959 ], [ -95.086404900812553, 29.068245063759168 ], [ -95.081332899505014, 29.070376064134106 ], [ -95.05154389278124, 29.082890067319664 ], [ -95.01636588433847, 29.097669071508751 ], [ -95.000208880679565, 29.104457074124646 ], [ -95.000208880372597, 29.104530073549697 ], [ -94.964246871629157, 29.125246079109694 ], [ -94.963667871554691, 29.125246079146169 ], [ -94.912177859431608, 29.159323088263033 ], [ -94.912130860091779, 29.159322088118312 ], [ -94.902126857984854, 29.164747089821862 ], [ -94.840157842743523, 29.198351098438113 ], [ -94.839396842356294, 29.198528098109382 ], [ -94.81197283645308, 29.212204102128318 ], [ -94.809120835394154, 29.213626102408686 ], [ -94.803984834771882, 29.216187103830027 ], [ -94.803234834639198, 29.216561103361631 ], [ -94.800536834017052, 29.217906104096862 ], [ -94.795969832876054, 29.220184104411906 ], [ -94.794458831739547, 29.220937104543623 ], [ -94.79364183161475, 29.221345104703715 ], [ -94.783930829808483, 29.226187106118157 ], [ -94.773918827209116, 29.231180107851085 ], [ -94.772798827299383, 29.231676107462061 ], [ -94.772692826780585, 29.23172310729591 ], [ -94.772264826666984, 29.232019107776118 ], [ -94.758604823689666, 29.241487109791262 ], [ -94.75074682175746, 29.246933111136943 ], [ -94.750200821951637, 29.247414111385076 ], [ -94.750200822279709, 29.247466111527121 ], [ -94.747938820881274, 29.250245112450841 ], [ -94.748089821439962, 29.250243112018989 ], [ -94.741172819753999, 29.259588114651738 ], [ -94.713317813383327, 29.282526120162956 ], [ -94.70756781245322, 29.280790120080823 ], [ -94.692315807721229, 29.277056119495899 ], [ -94.680301805327133, 29.277608120344059 ], [ -94.666226801442875, 29.281052121792683 ], [ -94.659650799961483, 29.285150122304646 ], [ -94.650366797649852, 29.291895124198856 ], [ -94.6424277957518, 29.300141126290413 ], [ -94.638024795537646, 29.307970127429538 ], [ -94.635457794548387, 29.311645129044066 ], [ -94.63520879516777, 29.312001128955146 ], [ -94.633498794835646, 29.314454129239014 ], [ -94.629032794127554, 29.32164513063179 ], [ -94.62731279315517, 29.327904132492215 ], [ -94.625197793602382, 29.332799133801316 ], [ -94.624175792829121, 29.335203134018002 ], [ -94.623969792875982, 29.337850134656115 ], [ -94.623922792949486, 29.340265135010558 ], [ -94.623904793762676, 29.34314813599488 ], [ -94.625111793538537, 29.347452136528116 ], [ -94.625198794297702, 29.347763136972194 ], [ -94.625198793452782, 29.349522137011679 ], [ -94.626208793994238, 29.352130137808192 ], [ -94.628591794776568, 29.358284139005814 ], [ -94.630568795766166, 29.361558139268748 ], [ -94.63605279774842, 29.370641141066308 ], [ -94.640827799057533, 29.375240141744136 ], [ -94.643561800319148, 29.378491142688116 ], [ -94.646148800522781, 29.380395142359962 ], [ -94.646987800613616, 29.381013142521365 ], [ -94.650317801514532, 29.382825143219229 ], [ -94.64956780130855, 29.383268142908523 ], [ -94.645352800472835, 29.385759143840708 ], [ -94.625198795446792, 29.397667146877463 ], [ -94.613031792652194, 29.402915148178636 ], [ -94.566269782114048, 29.423090154516675 ], [ -94.564590781769198, 29.42381415408725 ], [ -94.52658777202565, 29.440209158972419 ], [ -94.50019676631274, 29.451595162037961 ], [ -94.499458765885265, 29.452342162743154 ], [ -94.437334750350416, 29.476354169918814 ], [ -94.435256750400512, 29.47715716995976 ], [ -94.419960746839564, 29.483069171063388 ], [ -94.419725746025549, 29.483161171407971 ], [ -94.419255746572162, 29.483457171652383 ], [ -94.375872735861947, 29.499782176717787 ], [ -94.375636735496514, 29.499872176477592 ], [ -94.375193735486874, 29.50013617635798 ], [ -94.374544735883077, 29.49995417612357 ], [ -94.373673735417313, 29.499916176890874 ], [ -94.372500734905131, 29.49974617661632 ], [ -94.371557734987917, 29.499946176467912 ], [ -94.370357734189952, 29.500235176373618 ], [ -94.369367733824902, 29.500625177192983 ], [ -94.370837737061919, 29.553876187945733 ], [ -94.370841736939539, 29.553988188263546 ], [ -94.397482742920673, 29.544080184545528 ], [ -94.411097746309693, 29.538669183487166 ], [ -94.416333747404749, 29.536749182497616 ], [ -94.42095974951711, 29.535396182127048 ], [ -94.429500751183156, 29.53250918143581 ], [ -94.431697751545727, 29.531585181471829 ], [ -94.433861751723086, 29.53074118095828 ], [ -94.438514752938858, 29.52913318031997 ], [ -94.441100754346294, 29.528241180430008 ], [ -94.452519756229535, 29.524020178702855 ], [ -94.454446757340008, 29.52310117834158 ], [ -94.456051757600832, 29.522337178137033 ], [ -94.456064757200011, 29.522331178347113 ], [ -94.457332758317406, 29.521714178643254 ], [ -94.459422758789103, 29.520838178256664 ], [ -94.461773758875495, 29.520026177542757 ], [ -94.464496759274269, 29.519182177631279 ], [ -94.46554175985132, 29.518630177189731 ], [ -94.466959759733655, 29.51827317699863 ], [ -94.471921761807479, 29.51629217711714 ], [ -94.486361764921526, 29.510805175385521 ], [ -94.487107765298802, 29.510415175010305 ], [ -94.494122766674423, 29.50791617452748 ], [ -94.49733076804948, 29.506714173574466 ], [ -94.498076768092702, 29.506260173960733 ], [ -94.499371768245567, 29.505877173889612 ], [ -94.499741767840717, 29.505767173268371 ], [ -94.49994276816301, 29.505708173604418 ], [ -94.499982767739397, 29.505711173910207 ], [ -94.500315768593921, 29.505740173733898 ], [ -94.500800768226014, 29.505773173486439 ], [ -94.503299769330653, 29.504734173034336 ], [ -94.517439772596362, 29.499116171205074 ], [ -94.536577776755593, 29.491389169130596 ], [ -94.540083777794266, 29.490025168619798 ], [ -94.543126778435877, 29.488692168458197 ], [ -94.546014779013774, 29.487428168104177 ], [ -94.552074781072491, 29.485082167526262 ], [ -94.552094780425691, 29.485090167949949 ], [ -94.552872781479707, 29.484790167114131 ], [ -94.553698780888681, 29.484473167660237 ], [ -94.568059784375123, 29.47879116611891 ], [ -94.568069784955483, 29.478786166016075 ], [ -94.570826785774415, 29.477650165635215 ], [ -94.571155785844908, 29.477492165310064 ], [ -94.580032788011906, 29.473952164620854 ], [ -94.584582788619812, 29.471972163911847 ], [ -94.60061979253058, 29.464908162102979 ], [ -94.600655792247295, 29.464893161756493 ], [ -94.610836795010087, 29.460379160241914 ], [ -94.615310795877861, 29.458366159815306 ], [ -94.622134797540042, 29.455217159235588 ], [ -94.625826798081306, 29.453463158448983 ], [ -94.630076799159625, 29.451418157719548 ], [ -94.63470080099053, 29.449112157521711 ], [ -94.642018802347877, 29.445453156231782 ], [ -94.652820805366858, 29.440054154850817 ], [ -94.655243805341485, 29.438820154439245 ], [ -94.663034807131197, 29.434437153191595 ], [ -94.673100809623662, 29.428657152208874 ], [ -94.67988581159581, 29.42437115113416 ], [ -94.680951810978542, 29.423713150234303 ], [ -94.685626812619063, 29.420832150180509 ], [ -94.693613814465735, 29.415087148772024 ], [ -94.695796814583943, 29.41325914778632 ], [ -94.696993814924156, 29.411946147605917 ], [ -94.697569815367771, 29.411405147658787 ], [ -94.702311815867802, 29.407544146756599 ], [ -94.703242816714123, 29.406617146463514 ], [ -94.70386381614864, 29.405961145746023 ], [ -94.708649817539126, 29.400980144689058 ], [ -94.711264818619739, 29.397891143833039 ], [ -94.715805818635687, 29.392071143118045 ], [ -94.716181819427021, 29.39157914259405 ], [ -94.717607819177488, 29.389449142364445 ], [ -94.721869820228207, 29.38205014027729 ], [ -94.722633819937457, 29.38035114049779 ], [ -94.724538820904797, 29.376335139163004 ], [ -94.724682820257442, 29.375756138752674 ], [ -94.724738820451478, 29.375398139425759 ], [ -94.72487982090361, 29.375031139429836 ], [ -94.725255821118751, 29.3742661389321 ], [ -94.725568821351501, 29.373229138257052 ], [ -94.725819820425343, 29.372574138024195 ], [ -94.726759820909123, 29.371099138434801 ], [ -94.727197820639617, 29.370389137964324 ], [ -94.727761820750843, 29.368970137591866 ], [ -94.728517821426323, 29.367826137021847 ], [ -94.729170821837357, 29.367553137465684 ], [ -94.729703821783957, 29.367331136986468 ], [ -94.729698822113576, 29.367013136767394 ], [ -94.72962682134164, 29.361354135699901 ], [ -94.729604821339905, 29.359650135822378 ], [ -94.729604821535887, 29.359630135408999 ], [ -94.729517821018504, 29.352932134127599 ], [ -94.729482820645259, 29.350279133297011 ], [ -94.729412821010911, 29.344871132240797 ], [ -94.729327819901698, 29.338226131183692 ], [ -94.728889819741141, 29.337953130999914 ], [ -94.728199820107875, 29.337461131377996 ], [ -94.727612819752594, 29.336876131269207 ], [ -94.72721981921832, 29.336411130837163 ], [ -94.726102819401859, 29.334853130595722 ], [ -94.725022818891219, 29.334365130265095 ], [ -94.724239818351137, 29.33384613061725 ], [ -94.723681818210238, 29.333099130179519 ], [ -94.72133481751483, 29.332158130152582 ], [ -94.721148817634599, 29.331800130012482 ], [ -94.721185818263308, 29.331151130212987 ], [ -94.721632818017895, 29.33076113032805 ], [ -94.722973818409741, 29.330567129478414 ], [ -94.726139819277066, 29.33105412982307 ], [ -94.727219819344185, 29.330437129323393 ], [ -94.728374819836816, 29.32946312935152 ], [ -94.731529820504619, 29.327568129300111 ], [ -94.734110821206997, 29.32596112873691 ], [ -94.74303682305424, 29.320473127424638 ], [ -94.743405823440909, 29.32008312686078 ], [ -94.744511823067469, 29.319280126581305 ], [ -94.755070825910053, 29.312277125406254 ], [ -94.759572827118546, 29.3093381241884 ], [ -94.76094182732156, 29.308465123715887 ], [ -94.764364828213715, 29.306284123722104 ], [ -94.76723382863382, 29.30433312328562 ], [ -94.772209829585023, 29.301049121635138 ], [ -94.77239482955828, 29.300613121585215 ], [ -94.773131830082406, 29.299810121993282 ], [ -94.773973829938555, 29.299396121354011 ], [ -94.774079830226242, 29.298799121113472 ], [ -94.774684830018444, 29.298294121515166 ], [ -94.776843830527611, 29.296985121310147 ], [ -94.779686831204486, 29.295057120827096 ], [ -94.780265831856525, 29.294460120553961 ], [ -94.780554832005691, 29.293909120166987 ], [ -94.780897831706469, 29.293725120393962 ], [ -94.781370832155261, 29.293496120468106 ], [ -94.782002831764984, 29.293036120085123 ], [ -94.782502832211492, 29.292807119759743 ], [ -94.783266831805392, 29.292210119649091 ], [ -94.783950832624882, 29.291521119934657 ], [ -94.784608832494513, 29.290786119917822 ], [ -94.785951833088632, 29.2902581191845 ], [ -94.786135832511661, 29.289822119037098 ], [ -94.786635832549081, 29.289317118925837 ], [ -94.787793832989166, 29.288261119085352 ], [ -94.788609833503955, 29.287779118626215 ], [ -94.78871583312241, 29.2874801183128 ], [ -94.787925833089375, 29.284702117928699 ], [ -94.788004832844138, 29.28449511830199 ], [ -94.790136834086951, 29.284036117755594 ], [ -94.790400834289585, 29.284243117734771 ], [ -94.791031833981762, 29.285942118013139 ], [ -94.792058834349035, 29.285230118447593 ], [ -94.792568834473698, 29.284801117952529 ], [ -94.792742834841192, 29.284656118156754 ], [ -94.79271683423876, 29.284289118368743 ], [ -94.792663833991156, 29.283853118088924 ], [ -94.792690834462036, 29.283531117347522 ], [ -94.792900834723, 29.28307211773177 ], [ -94.793558834136135, 29.28277311725061 ], [ -94.79421683521285, 29.282705117357253 ], [ -94.794980834813458, 29.28337011759567 ], [ -94.795427834895264, 29.283187118042939 ], [ -94.796036835261816, 29.282839117408653 ], [ -94.796796835198407, 29.28240611717133 ], [ -94.797454834985075, 29.281626117399263 ], [ -94.797875836009439, 29.281557117364056 ], [ -94.798796836054834, 29.281166116758012 ], [ -94.800086836242926, 29.280592116807178 ], [ -94.801007836315293, 29.279904116700735 ], [ -94.801350836842147, 29.279467116531727 ], [ -94.801350836254315, 29.279261116443511 ], [ -94.802192836463846, 29.278847116136859 ], [ -94.803219837107861, 29.278273116491132 ], [ -94.804350837058621, 29.277332115896119 ], [ -94.804877837467714, 29.277263116176783 ], [ -94.805877837439638, 29.276827115567741 ], [ -94.806930837333084, 29.276092116190622 ], [ -94.807535838129454, 29.27554111523563 ], [ -94.808667838590168, 29.275174115751852 ], [ -94.809543838425441, 29.274791115006458 ], [ -94.809724838586391, 29.274712115800035 ], [ -94.809878838674209, 29.274646115653361 ], [ -94.810536838124023, 29.274256114906802 ], [ -94.81082683905484, 29.273865115124192 ], [ -94.811167838999651, 29.273589115054641 ], [ -94.811536838927722, 29.273176115340124 ], [ -94.812088838392455, 29.273061114703751 ], [ -94.813062838604594, 29.272671115163281 ], [ -94.813799839064046, 29.27202811494011 ], [ -94.814589839478884, 29.271729114767819 ], [ -94.815115839201752, 29.271178114893264 ], [ -94.815536839816872, 29.271064114359167 ], [ -94.816641839467763, 29.270627113923897 ], [ -94.817484840495368, 29.270145114397298 ], [ -94.818484840175273, 29.269456114224607 ], [ -94.818749840187678, 29.269290114074515 ], [ -94.819326840077935, 29.268928113673688 ], [ -94.819984840985526, 29.268882113614023 ], [ -94.821063840598626, 29.268354113546117 ], [ -94.821782841486268, 29.26791111329436 ], [ -94.822221841415285, 29.267643113474332 ], [ -94.822695841065283, 29.267092113613955 ], [ -94.825037842245109, 29.265645113319248 ], [ -94.825116842058776, 29.265393112525608 ], [ -94.825458842011216, 29.265140113061936 ], [ -94.826169841935865, 29.265002113188118 ], [ -94.827011842664916, 29.264497112698681 ], [ -94.828143842694814, 29.264061112873918 ], [ -94.83311984387268, 29.261448111689528 ], [ -94.835955844647572, 29.259959111478139 ], [ -94.838859845599004, 29.258433111121551 ], [ -94.841091845455338, 29.257058110242792 ], [ -94.844308846375, 29.25514310975711 ], [ -94.850038847569522, 29.251731109623712 ], [ -94.851354847575223, 29.250859108743189 ], [ -94.851696847754184, 29.250537109219064 ], [ -94.852062848228343, 29.250415108729804 ], [ -94.852591848478227, 29.250239108816345 ], [ -94.853538848594411, 29.249688108959237 ], [ -94.854091848236607, 29.249183108174744 ], [ -94.854765848916315, 29.248959108274299 ], [ -94.85811484914916, 29.246913108043444 ], [ -94.86764085137834, 29.241166106924577 ], [ -94.868644851651339, 29.240939106464104 ], [ -94.869351851992164, 29.241133106102129 ], [ -94.870970852837615, 29.240286106437406 ], [ -94.873445853212544, 29.238990105922184 ], [ -94.874040853383363, 29.238406105317392 ], [ -94.874933854056266, 29.237399105772401 ], [ -94.876421853518082, 29.236782105234546 ], [ -94.876459853797911, 29.236880105625676 ], [ -94.877687854057456, 29.236425105235934 ], [ -94.882524855069491, 29.233406104443745 ], [ -94.883045855984534, 29.232886103956481 ], [ -94.883603855395378, 29.232626104388 ], [ -94.894652858193297, 29.226003102490562 ], [ -94.898037858975613, 29.223860102319549 ], [ -94.905329860816195, 29.21941110082312 ], [ -94.925552865152753, 29.207519097813933 ], [ -94.93486586764476, 29.202040096497146 ], [ -94.939811869147434, 29.199020095770585 ], [ -94.951787871631424, 29.191942093896309 ], [ -94.968760875340251, 29.181825091168825 ], [ -94.978862877359774, 29.175804089479723 ], [ -94.981811878903841, 29.174010088695034 ], [ -94.98878988003753, 29.1697650878986 ], [ -95.008208884799274, 29.158050084658832 ], [ -95.017448886691255, 29.152451083451048 ], [ -95.028191888767438, 29.145810081140951 ], [ -95.036768890945751, 29.140597080193729 ], [ -95.053563894604878, 29.129862077003484 ], [ -95.053753894754706, 29.129749077414225 ], [ -95.056568895314214, 29.128086077209741 ], [ -95.065319897222437, 29.122294075385948 ], [ -95.069650898891425, 29.119436074478042 ], [ -95.074070900174675, 29.116463073646447 ], [ -95.078357900337537, 29.113413073363876 ], [ -95.084633901909982, 29.108934072252957 ], [ -95.084898902113352, 29.108856071568283 ], [ -95.09117390344548, 29.10399107064638 ], [ -95.094443904391184, 29.101173070440691 ], [ -95.096166904443848, 29.099705069344036 ], [ -95.100143905234788, 29.095805069123248 ], [ -95.102617906578075, 29.092832068509846 ], [ -95.10491590681886, 29.089280066945975 ], [ -95.105931907012106, 29.0885460669626 ], [ -95.106815907340433, 29.087156066731151 ], [ -95.108185906819301, 29.085805066185433 ], [ -95.109880907476253, 29.085198065912351 ], [ -95.112026908468039, 29.084428065740042 ], [ -95.113575908903044, 29.083874065769123 ], [ -95.114415908226903, 29.083526065958395 ], [ -95.115343908492463, 29.083372065504577 ], [ -95.115809909017287, 29.083372066038574 ], [ -95.116138909018048, 29.083372065705358 ], [ -95.11741990989637, 29.083758066130738 ], [ -95.117472909504826, 29.08377906567712 ], [ -95.117905909452531, 29.083951066132705 ], [ -95.11861290945474, 29.084608065433315 ], [ -95.118891910007264, 29.085198066333493 ], [ -95.119249910446243, 29.084854066325335 ], [ -95.120686910530196, 29.083473065831797 ], [ -95.123979911540943, 29.080296064505546 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1314, "Tract": "48167723501", "Area_SqMi": 3.3771150385934141, "total_2009": 450, "total_2010": 261, "total_2011": 302, "total_2012": 151, "total_2013": 159, "total_2014": 209, "total_2015": 256, "total_2016": 380, "total_2017": 349, "total_2018": 305, "total_2019": 333, "total_2020": 365, "age1": 159, "age2": 217, "age3": 97, "earn1": 173, "earn2": 136, "earn3": 164, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 243, "naics_s05": 4, "naics_s06": 5, "naics_s07": 63, "naics_s08": 0, "naics_s09": 0, "naics_s10": 8, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 13, "naics_s16": 11, "naics_s17": 0, "naics_s18": 88, "naics_s19": 38, "naics_s20": 0, "race1": 399, "race2": 38, "race3": 13, "race4": 12, "race5": 1, "race6": 10, "ethnicity1": 304, "ethnicity2": 169, "edu1": 86, "edu2": 99, "edu3": 84, "edu4": 45, "Shape_Length": 46428.873968600892, "Shape_Area": 94148187.285829753, "total_2021": 341, "total_2022": 473 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.098030917281335, 29.374865126428414 ], [ -95.098027916775862, 29.372792126287106 ], [ -95.098016916075323, 29.365376124490158 ], [ -95.097939916171001, 29.361709124175146 ], [ -95.098005916261613, 29.35897312389498 ], [ -95.097995916470097, 29.357081122967212 ], [ -95.098021915937338, 29.356442123199926 ], [ -95.097984916155454, 29.3543521222396 ], [ -95.095981915678493, 29.354365122738962 ], [ -95.093752914801669, 29.354378122589278 ], [ -95.092108914536695, 29.354389122512682 ], [ -95.089501914086597, 29.354392122505253 ], [ -95.085238912423279, 29.354397123265965 ], [ -95.083054912556818, 29.354399122694709 ], [ -95.081019911879508, 29.354404123354534 ], [ -95.081018911521525, 29.353636123165238 ], [ -95.081018911472711, 29.352702123005983 ], [ -95.081017911836696, 29.350780122409617 ], [ -95.081014910960036, 29.348958121917718 ], [ -95.08101191077813, 29.347009121317296 ], [ -95.080988911534178, 29.343411120910723 ], [ -95.079045910837152, 29.34341012101406 ], [ -95.078790910253531, 29.343410120821801 ], [ -95.077757909884369, 29.343410121313667 ], [ -95.07557890958887, 29.343410120714083 ], [ -95.074843909941578, 29.343410120997287 ], [ -95.07453490932221, 29.343416121379331 ], [ -95.07434690907688, 29.343420121465019 ], [ -95.072399908958658, 29.343422121210029 ], [ -95.070247908224971, 29.343423120850169 ], [ -95.068109907303167, 29.343425121287328 ], [ -95.065987907576613, 29.343427121386011 ], [ -95.065526907514297, 29.34342712157148 ], [ -95.063835906135452, 29.3434201215325 ], [ -95.061176906291351, 29.343408121202437 ], [ -95.060960906037636, 29.343446121335692 ], [ -95.060923906280877, 29.34354912118085 ], [ -95.060900906241429, 29.343651121390707 ], [ -95.060900905940983, 29.347676122321598 ], [ -95.060900906124118, 29.349949122786047 ], [ -95.060900906387147, 29.350188122946726 ], [ -95.060900906508735, 29.350742122968427 ], [ -95.060900906302919, 29.351462123390757 ], [ -95.06090190577558, 29.351805123109152 ], [ -95.060911906467169, 29.354417123358218 ], [ -95.058669905792044, 29.354390123852628 ], [ -95.058629906124807, 29.354446123722294 ], [ -95.057841905392081, 29.355577123661167 ], [ -95.057399905294503, 29.356210124149651 ], [ -95.057182905987119, 29.356522124592242 ], [ -95.056798904935704, 29.357073124261113 ], [ -95.056415905529164, 29.357624124512149 ], [ -95.05555390569539, 29.358865124475169 ], [ -95.05530690526507, 29.358978124936918 ], [ -95.053436904229102, 29.359615125043071 ], [ -95.053398904543485, 29.359675125225866 ], [ -95.05335090503803, 29.359750125327398 ], [ -95.053170904746409, 29.360080125561414 ], [ -95.053103904371781, 29.36029012549276 ], [ -95.053643904228323, 29.360478125578336 ], [ -95.05594190525666, 29.36126512535678 ], [ -95.05815590638602, 29.362029125533244 ], [ -95.058855905799703, 29.362271125667949 ], [ -95.060966907105481, 29.362995125973619 ], [ -95.064280907910984, 29.364143125222459 ], [ -95.064574907456119, 29.364239125849306 ], [ -95.068138908465713, 29.365460125548736 ], [ -95.071882910120237, 29.366742125910601 ], [ -95.072332910316987, 29.366895126178964 ], [ -95.072409909480342, 29.366922125802507 ], [ -95.072455909696004, 29.366938125945246 ], [ -95.072603910322229, 29.366989126294222 ], [ -95.073299910321083, 29.367229126076612 ], [ -95.075373910664496, 29.367939125993569 ], [ -95.077576911189638, 29.368707126221526 ], [ -95.079648912156969, 29.369418126669871 ], [ -95.081729912632952, 29.370131125956487 ], [ -95.083137913111997, 29.370615126386561 ], [ -95.08377091265865, 29.370833126244381 ], [ -95.085524913860354, 29.37143812660111 ], [ -95.085805912998453, 29.371534126712735 ], [ -95.086407913534487, 29.371739126747812 ], [ -95.089495915009678, 29.372791126389597 ], [ -95.092369914898924, 29.373782126652159 ], [ -95.093233915599001, 29.374080127163868 ], [ -95.093778915493203, 29.374268126416602 ], [ -95.094965916302428, 29.374674127095354 ], [ -95.096086916349478, 29.375063126702731 ], [ -95.097777916341556, 29.375638127071273 ], [ -95.098003917272251, 29.375102126711848 ], [ -95.098019916827596, 29.375017127127141 ], [ -95.098026916631227, 29.374920126993278 ], [ -95.098030917281335, 29.374865126428414 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1315, "Tract": "48339694206", "Area_SqMi": 3.7058766245712502, "total_2009": 144, "total_2010": 162, "total_2011": 143, "total_2012": 168, "total_2013": 191, "total_2014": 202, "total_2015": 269, "total_2016": 166, "total_2017": 198, "total_2018": 249, "total_2019": 244, "total_2020": 255, "age1": 74, "age2": 111, "age3": 42, "earn1": 45, "earn2": 70, "earn3": 112, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 47, "naics_s05": 34, "naics_s06": 0, "naics_s07": 11, "naics_s08": 5, "naics_s09": 4, "naics_s10": 3, "naics_s11": 8, "naics_s12": 15, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 12, "naics_s18": 51, "naics_s19": 37, "naics_s20": 0, "race1": 211, "race2": 12, "race3": 0, "race4": 2, "race5": 0, "race6": 2, "ethnicity1": 182, "ethnicity2": 45, "edu1": 36, "edu2": 50, "edu3": 41, "edu4": 26, "Shape_Length": 45449.746184499643, "Shape_Area": 103313497.62181391, "total_2021": 286, "total_2022": 227 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.587482088850592, 30.40913832125441 ], [ -95.587660089006022, 30.402838320418702 ], [ -95.576616084975484, 30.393216318487209 ], [ -95.566459083516065, 30.398594320449373 ], [ -95.563837082907128, 30.400958320285941 ], [ -95.562630082230271, 30.402936321044493 ], [ -95.562194081752324, 30.40283032075498 ], [ -95.561701082054199, 30.402658320873503 ], [ -95.561458082314743, 30.40247332077729 ], [ -95.561194082184798, 30.40257332102161 ], [ -95.560965081924294, 30.402515320917452 ], [ -95.56086508173982, 30.402330320850133 ], [ -95.56087308213823, 30.402087321150464 ], [ -95.560758081449464, 30.401980321134332 ], [ -95.56045108162121, 30.401823321151678 ], [ -95.560308081506477, 30.401708320712149 ], [ -95.560265081980788, 30.401587321015114 ], [ -95.560294081142985, 30.401373320325838 ], [ -95.560424081306579, 30.40108532100437 ], [ -95.560226081095664, 30.401038320728556 ], [ -95.55959408138348, 30.400912320503462 ], [ -95.559479081073647, 30.400884321054146 ], [ -95.557623080893364, 30.400455320538335 ], [ -95.556990080370014, 30.400303321106378 ], [ -95.556457080707233, 30.400175321026076 ], [ -95.55482708018404, 30.399811320966123 ], [ -95.554700080276007, 30.400174320516282 ], [ -95.554515080245736, 30.400805320569265 ], [ -95.554436080191891, 30.401077321111842 ], [ -95.553660079864272, 30.403431321820154 ], [ -95.553386079757047, 30.404357321531602 ], [ -95.553224080352862, 30.404850321983545 ], [ -95.553034079978573, 30.405448322161565 ], [ -95.552599079788706, 30.406900322293936 ], [ -95.552323079607319, 30.407762322593111 ], [ -95.552132080308937, 30.408338322835792 ], [ -95.552058079787031, 30.408641322966048 ], [ -95.551951079975879, 30.408861322184354 ], [ -95.550968080015025, 30.411969323288385 ], [ -95.550447079753681, 30.413625323659311 ], [ -95.550094079813121, 30.414796324300351 ], [ -95.549880079944316, 30.415156323802009 ], [ -95.548511079115613, 30.416948324141291 ], [ -95.548460079514143, 30.417010324353438 ], [ -95.548316079256452, 30.417160324718974 ], [ -95.548240079253063, 30.417230324730699 ], [ -95.548127078815469, 30.417318324693777 ], [ -95.548068079714454, 30.41735732457807 ], [ -95.547933078721726, 30.417461324039714 ], [ -95.546626078884785, 30.418454324443896 ], [ -95.543620077960895, 30.420739325411848 ], [ -95.543562078601241, 30.420798325355296 ], [ -95.54350907820394, 30.420857325213738 ], [ -95.543430077757549, 30.420979325764808 ], [ -95.543397078389532, 30.421050325567144 ], [ -95.54272307839031, 30.423275325759771 ], [ -95.541704078345191, 30.42666232683246 ], [ -95.542027078273932, 30.426733326991112 ], [ -95.543919078440993, 30.427175326404516 ], [ -95.545404079155588, 30.427512326850611 ], [ -95.545746079332361, 30.427589326205364 ], [ -95.545970079199833, 30.427640326998166 ], [ -95.547063079140486, 30.427916326934184 ], [ -95.547704079766106, 30.428064326732621 ], [ -95.548483079566168, 30.428252326812299 ], [ -95.549147079578759, 30.428403326418959 ], [ -95.549916080359921, 30.428591326711732 ], [ -95.550474080021658, 30.428714326652468 ], [ -95.551386080580414, 30.42891532689746 ], [ -95.551968081219698, 30.429048327035247 ], [ -95.553269080988898, 30.429301326554565 ], [ -95.554076081178749, 30.429489326836531 ], [ -95.554190080939961, 30.429512326567032 ], [ -95.55524308175886, 30.429725326972239 ], [ -95.557269081818234, 30.430179326316924 ], [ -95.557930081992708, 30.430322326594027 ], [ -95.558745082441405, 30.430519327011222 ], [ -95.559853082612662, 30.430759326908742 ], [ -95.560610083588344, 30.430943327003391 ], [ -95.561521083155782, 30.431145326597623 ], [ -95.561644083552125, 30.431173326553118 ], [ -95.561964083684629, 30.431248326489264 ], [ -95.561975083717741, 30.429208326310935 ], [ -95.562269082941157, 30.428831326451913 ], [ -95.565496083913033, 30.425945325583282 ], [ -95.566674084565861, 30.424059325341837 ], [ -95.566971083859912, 30.423178324592207 ], [ -95.571663085314228, 30.419289323905662 ], [ -95.571959085086874, 30.41853332351684 ], [ -95.574306086016222, 30.416526323241396 ], [ -95.575328086212281, 30.41640432305616 ], [ -95.57727408648023, 30.415032322959721 ], [ -95.577819087194413, 30.414649322637054 ], [ -95.580598087329108, 30.413777322733786 ], [ -95.581769087799273, 30.41315132284284 ], [ -95.583084088297383, 30.41290432248238 ], [ -95.587482088850592, 30.40913832125441 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1316, "Tract": "48339694309", "Area_SqMi": 1.6662854186594569, "total_2009": 391, "total_2010": 344, "total_2011": 335, "total_2012": 248, "total_2013": 238, "total_2014": 214, "total_2015": 238, "total_2016": 194, "total_2017": 178, "total_2018": 193, "total_2019": 173, "total_2020": 170, "age1": 54, "age2": 107, "age3": 66, "earn1": 57, "earn2": 77, "earn3": 93, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 21, "naics_s05": 1, "naics_s06": 17, "naics_s07": 0, "naics_s08": 3, "naics_s09": 0, "naics_s10": 6, "naics_s11": 2, "naics_s12": 28, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 2, "naics_s17": 86, "naics_s18": 0, "naics_s19": 49, "naics_s20": 0, "race1": 207, "race2": 8, "race3": 1, "race4": 4, "race5": 0, "race6": 7, "ethnicity1": 174, "ethnicity2": 53, "edu1": 38, "edu2": 36, "edu3": 52, "edu4": 47, "Shape_Length": 28873.17166552183, "Shape_Area": 46453185.596229553, "total_2021": 197, "total_2022": 227 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.629040098213736, 30.370779311875545 ], [ -95.62908909787572, 30.370737311884778 ], [ -95.628849097556966, 30.370633311984179 ], [ -95.627906097085841, 30.370223311744798 ], [ -95.627165097620747, 30.369898312209759 ], [ -95.626681097316208, 30.369686311815638 ], [ -95.623353096663664, 30.368222311727575 ], [ -95.623267096631139, 30.368184311877553 ], [ -95.622817095691047, 30.367972311970682 ], [ -95.622662096019866, 30.36790031174564 ], [ -95.622620096349792, 30.367881311838868 ], [ -95.6222860953512, 30.367745312077794 ], [ -95.62194909593336, 30.367613311590539 ], [ -95.621608095779123, 30.367488311902836 ], [ -95.620994095821843, 30.367273311788736 ], [ -95.618556095168685, 30.366318311861377 ], [ -95.616755094606816, 30.365682311880764 ], [ -95.616124094628319, 30.36546031174743 ], [ -95.614663093950995, 30.364935311648562 ], [ -95.614574093643199, 30.364905311759255 ], [ -95.612232093003868, 30.36411131114356 ], [ -95.610793092536412, 30.363624311097247 ], [ -95.609641092860215, 30.363223311584925 ], [ -95.609592092286007, 30.363350311554161 ], [ -95.609474092506289, 30.36376131113505 ], [ -95.609460091907906, 30.363907311516822 ], [ -95.609460092429998, 30.363992311096602 ], [ -95.609639092498114, 30.364825311497015 ], [ -95.609765092597684, 30.365174311904742 ], [ -95.609755092473648, 30.365411311342388 ], [ -95.609760092541848, 30.365496312034718 ], [ -95.609716092331311, 30.365496312019509 ], [ -95.609515092432261, 30.36549831189657 ], [ -95.609141092615985, 30.365502311951939 ], [ -95.609050092796267, 30.365489311797333 ], [ -95.608962092006891, 30.365470312003598 ], [ -95.608538092103672, 30.365297311782459 ], [ -95.60845709210453, 30.365271311803532 ], [ -95.608392092558958, 30.365250312025456 ], [ -95.608264092662594, 30.365208312128704 ], [ -95.607985091886576, 30.365135312099632 ], [ -95.607636091749796, 30.365068311902299 ], [ -95.607378091935189, 30.365029311982191 ], [ -95.607267092018574, 30.365018311538297 ], [ -95.607169091493489, 30.36501031195014 ], [ -95.606953091644087, 30.365010311611329 ], [ -95.606865091354408, 30.365005312194157 ], [ -95.606193091926102, 30.364988311440101 ], [ -95.606078092014954, 30.364982311542885 ], [ -95.605777091974417, 30.364978311621979 ], [ -95.605399091854224, 30.364921311476706 ], [ -95.605176091727017, 30.364869312161542 ], [ -95.605064091505781, 30.364833311465276 ], [ -95.604188090774244, 30.364506311393065 ], [ -95.604017090854967, 30.364457311796908 ], [ -95.603841091018495, 30.364428311553439 ], [ -95.603658091038014, 30.364424311944024 ], [ -95.603472090405575, 30.364438311740397 ], [ -95.603110091148878, 30.364484312035003 ], [ -95.602862090785678, 30.36453631145972 ], [ -95.602595091101236, 30.364617311582961 ], [ -95.602100090605447, 30.364786312166263 ], [ -95.601844090974794, 30.364898312354224 ], [ -95.601602090455543, 30.365021311532914 ], [ -95.601299090478051, 30.365198312321176 ], [ -95.601035089845297, 30.365433312480803 ], [ -95.600881089893107, 30.365583312534465 ], [ -95.600772089827373, 30.365674312203424 ], [ -95.600616089814181, 30.365843312282671 ], [ -95.600526090685207, 30.365948312499071 ], [ -95.600394090283586, 30.366151311948038 ], [ -95.60032709018148, 30.366271312406745 ], [ -95.600259090075326, 30.366417312174018 ], [ -95.600218090553852, 30.366543312227694 ], [ -95.600164090466308, 30.366751312073362 ], [ -95.60013409027863, 30.366959312439619 ], [ -95.600101090532775, 30.367266312544039 ], [ -95.600094089655386, 30.367472312812176 ], [ -95.60011508990091, 30.368243312828664 ], [ -95.600107090082616, 30.369073312569704 ], [ -95.60011709048382, 30.369393312924753 ], [ -95.600156089909547, 30.369652312561566 ], [ -95.600204090315103, 30.369854312959191 ], [ -95.600271089905775, 30.370057313044295 ], [ -95.59983009073629, 30.370260312664978 ], [ -95.599808089922732, 30.370287312869447 ], [ -95.599116089731837, 30.370731313080892 ], [ -95.598655090304632, 30.371264313713603 ], [ -95.59862408949104, 30.371284313232035 ], [ -95.597810090289755, 30.371813313234572 ], [ -95.597678090307909, 30.372226313379549 ], [ -95.598259089704712, 30.373577313864885 ], [ -95.59823208996184, 30.374150313760648 ], [ -95.598021089563375, 30.374585313967984 ], [ -95.597651090140744, 30.374951314435283 ], [ -95.597545090287639, 30.375226314498192 ], [ -95.597413089409102, 30.375501314413253 ], [ -95.597413089547473, 30.376005314039698 ], [ -95.597756090097974, 30.376417314759902 ], [ -95.598126090071801, 30.376554314586514 ], [ -95.597898089785758, 30.380388315569927 ], [ -95.602511091580865, 30.380455314935258 ], [ -95.603827091288849, 30.379956315106188 ], [ -95.610314093737117, 30.379978314270005 ], [ -95.612134093656579, 30.379984314159245 ], [ -95.612436093699699, 30.379986314215095 ], [ -95.61322309394177, 30.380261314928806 ], [ -95.613893093841924, 30.380496314260807 ], [ -95.615498094649894, 30.380627314257872 ], [ -95.616226094702597, 30.380882314362665 ], [ -95.620020095498219, 30.381021314527185 ], [ -95.621480096389178, 30.380900314732298 ], [ -95.624227097121278, 30.378624313481229 ], [ -95.625874096750991, 30.377260313486115 ], [ -95.626315097138416, 30.376505313226804 ], [ -95.627634098015307, 30.37537531349524 ], [ -95.627356097787967, 30.372222312290191 ], [ -95.629040098213736, 30.370779311875545 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1317, "Tract": "48339694305", "Area_SqMi": 4.8283490293875087, "total_2009": 57, "total_2010": 56, "total_2011": 53, "total_2012": 146, "total_2013": 123, "total_2014": 76, "total_2015": 71, "total_2016": 59, "total_2017": 51, "total_2018": 153, "total_2019": 213, "total_2020": 104, "age1": 37, "age2": 72, "age3": 48, "earn1": 41, "earn2": 64, "earn3": 52, "naics_s01": 0, "naics_s02": 7, "naics_s03": 0, "naics_s04": 17, "naics_s05": 9, "naics_s06": 13, "naics_s07": 4, "naics_s08": 5, "naics_s09": 13, "naics_s10": 2, "naics_s11": 4, "naics_s12": 8, "naics_s13": 0, "naics_s14": 9, "naics_s15": 2, "naics_s16": 0, "naics_s17": 29, "naics_s18": 20, "naics_s19": 15, "naics_s20": 0, "race1": 144, "race2": 4, "race3": 0, "race4": 7, "race5": 0, "race6": 2, "ethnicity1": 126, "ethnicity2": 31, "edu1": 22, "edu2": 29, "edu3": 39, "edu4": 30, "Shape_Length": 86458.605066357064, "Shape_Area": 134606107.13737029, "total_2021": 143, "total_2022": 157 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.646583104223069, 30.410431319944554 ], [ -95.646555103616251, 30.404178318434315 ], [ -95.645249103663929, 30.404181318463124 ], [ -95.642595102316221, 30.404188318761772 ], [ -95.641675102480363, 30.404190318271976 ], [ -95.641228102587618, 30.404191318139777 ], [ -95.640878102678684, 30.404199318114301 ], [ -95.640091102272848, 30.404217318157894 ], [ -95.639719102090396, 30.404222318949415 ], [ -95.639440101976746, 30.404226318605783 ], [ -95.638817101597184, 30.404235318806933 ], [ -95.638291101479055, 30.404247318421362 ], [ -95.637343101660676, 30.404270318174135 ], [ -95.63613410141464, 30.404289318370544 ], [ -95.634967100499054, 30.404307318840416 ], [ -95.634664100946452, 30.40430831858766 ], [ -95.634307100556626, 30.404296318632504 ], [ -95.633754100809043, 30.404260318447616 ], [ -95.633180100335437, 30.404169318421825 ], [ -95.632963099963533, 30.404120318386937 ], [ -95.632724100349577, 30.404072319106412 ], [ -95.632422099826016, 30.404001318471177 ], [ -95.632321099811023, 30.403972319047931 ], [ -95.632046099848125, 30.403893318849057 ], [ -95.631824099714393, 30.403822318283453 ], [ -95.631642099633254, 30.403759318747081 ], [ -95.631237099642192, 30.40360631886859 ], [ -95.630971100067768, 30.403495318812453 ], [ -95.630479099324077, 30.40325431849034 ], [ -95.629960099641337, 30.403035318693799 ], [ -95.629643099181195, 30.402906318634361 ], [ -95.629441099020426, 30.40281631860314 ], [ -95.629055099313547, 30.40267731891019 ], [ -95.628508098684762, 30.402462318568684 ], [ -95.627998098840663, 30.402252318824715 ], [ -95.627531099092721, 30.402050318944827 ], [ -95.627356098656421, 30.401966318434212 ], [ -95.62719609833637, 30.401871318181144 ], [ -95.627074098443899, 30.401791318163124 ], [ -95.626968099018427, 30.401734318451368 ], [ -95.626845098999254, 30.401653318623396 ], [ -95.626550098618722, 30.40142131851761 ], [ -95.626232097959175, 30.401138318774663 ], [ -95.626040098265491, 30.400965318260141 ], [ -95.625810098649566, 30.400728317876798 ], [ -95.625676097957268, 30.40057631791846 ], [ -95.625410098682025, 30.400212318190214 ], [ -95.625302098301972, 30.400044318327076 ], [ -95.625224098500198, 30.399902317830009 ], [ -95.625144097824872, 30.399741317947065 ], [ -95.625068097870027, 30.399571318415049 ], [ -95.624969098372745, 30.399324318185567 ], [ -95.624928098196591, 30.399210317650791 ], [ -95.624835098366489, 30.398935318266542 ], [ -95.624762097725906, 30.398664317803686 ], [ -95.624706097957485, 30.398393317678671 ], [ -95.624606097662976, 30.397840317799542 ], [ -95.624559097785365, 30.397526317340919 ], [ -95.624483097795533, 30.397114317900872 ], [ -95.62438509758357, 30.396737317368675 ], [ -95.624322097610289, 30.396540317164632 ], [ -95.624251097988022, 30.396346317463294 ], [ -95.6241670979975, 30.396168317453508 ], [ -95.624051097731353, 30.395956317440838 ], [ -95.623939097422337, 30.395788316923017 ], [ -95.623817097920295, 30.39561731730473 ], [ -95.623519097166579, 30.395236317107308 ], [ -95.623389097040871, 30.395092317505707 ], [ -95.623239097406568, 30.394935317115145 ], [ -95.622940097292599, 30.394677317023849 ], [ -95.62275309702629, 30.394529316771262 ], [ -95.622581097108664, 30.394409316786117 ], [ -95.622241097599584, 30.394183316735365 ], [ -95.622113096947359, 30.394114316690839 ], [ -95.621594096457855, 30.393848317118291 ], [ -95.621475097416194, 30.393793316934861 ], [ -95.62127209651382, 30.393719316793238 ], [ -95.621029096464156, 30.393644316931191 ], [ -95.620794097205277, 30.393578317212118 ], [ -95.620506096464482, 30.393510316722768 ], [ -95.620140096917794, 30.393443317206941 ], [ -95.619831096549703, 30.39341131694847 ], [ -95.619524096482678, 30.393392317254289 ], [ -95.61930409605948, 30.393386317339502 ], [ -95.618984096545958, 30.393395316674084 ], [ -95.61872409607696, 30.393402317292285 ], [ -95.61851409585438, 30.393419317028268 ], [ -95.618394095790265, 30.393435317216952 ], [ -95.617907095806885, 30.393517317383214 ], [ -95.617566095429609, 30.393596316875119 ], [ -95.617254095559218, 30.393687317393713 ], [ -95.616996095727842, 30.393774316913717 ], [ -95.616740095963607, 30.393878317575176 ], [ -95.616349095465253, 30.394055317591445 ], [ -95.615757095330864, 30.394340317670444 ], [ -95.615133095218425, 30.394632317798816 ], [ -95.614353094968052, 30.394979317314434 ], [ -95.614216095533166, 30.395027317314543 ], [ -95.61387509495988, 30.39515131718484 ], [ -95.613550095372545, 30.395253317861478 ], [ -95.612879094894097, 30.39541731789971 ], [ -95.61258109465453, 30.395476317578535 ], [ -95.612299094262966, 30.395521318093294 ], [ -95.611997094415486, 30.395558317651833 ], [ -95.61172109497258, 30.395592317738085 ], [ -95.611411094162989, 30.395617318002444 ], [ -95.610783094575297, 30.395632318220496 ], [ -95.610516094478854, 30.395628317502084 ], [ -95.61024109424018, 30.39561831820938 ], [ -95.609974093991113, 30.395600317576314 ], [ -95.60943809392748, 30.395535317453977 ], [ -95.608958093393269, 30.395456317492258 ], [ -95.60870109368841, 30.395400317779831 ], [ -95.60844509329371, 30.39533931816635 ], [ -95.607966093001764, 30.395211318097882 ], [ -95.607287093411614, 30.394966318108047 ], [ -95.606509092947391, 30.394649317594055 ], [ -95.60566209320811, 30.394273318022282 ], [ -95.605336092321181, 30.394141317924785 ], [ -95.604399092723625, 30.393744317377461 ], [ -95.603673092789649, 30.393423317412307 ], [ -95.602172091503732, 30.39280531711049 ], [ -95.60174609152368, 30.392618317857576 ], [ -95.600684091602673, 30.392173317846929 ], [ -95.599686090910083, 30.391755317109695 ], [ -95.599443091080957, 30.391647317696279 ], [ -95.599302091496412, 30.391574317496925 ], [ -95.599123090858129, 30.391471317013927 ], [ -95.598970090592303, 30.391365317239295 ], [ -95.598772090934602, 30.391214317756898 ], [ -95.598468091065726, 30.390901317038256 ], [ -95.598294090841122, 30.390641317646075 ], [ -95.598206090434118, 30.390504317523298 ], [ -95.598082090351326, 30.390292316897543 ], [ -95.597973090481688, 30.390006316982493 ], [ -95.597924090880326, 30.389898317203038 ], [ -95.597640090625234, 30.389164317055133 ], [ -95.597534090499053, 30.38889231717631 ], [ -95.597479090822148, 30.388733316458811 ], [ -95.597469090323571, 30.388703316546177 ], [ -95.597405090135297, 30.388460317123901 ], [ -95.59738209044707, 30.388308316853784 ], [ -95.597374090966682, 30.388041316878702 ], [ -95.597399090710979, 30.387791316853129 ], [ -95.597431090891675, 30.387671316313568 ], [ -95.59759709083248, 30.387254316346592 ], [ -95.597510090514589, 30.387225316490582 ], [ -95.597430090469132, 30.387187316686589 ], [ -95.597351090006384, 30.387144316585641 ], [ -95.597279090110518, 30.38709531613933 ], [ -95.597149090161167, 30.386982316735875 ], [ -95.596905090462215, 30.386725316822375 ], [ -95.596558090464214, 30.386306316044724 ], [ -95.596452089822307, 30.386185316253503 ], [ -95.596338089576392, 30.386082316798408 ], [ -95.59618809017168, 30.385932316687651 ], [ -95.596124089787068, 30.385879316789136 ], [ -95.596107090467115, 30.385779316771504 ], [ -95.596065090331095, 30.385729316736803 ], [ -95.595997090253888, 30.385702315965265 ], [ -95.595743090097457, 30.38566531664523 ], [ -95.595620089626038, 30.385671315996682 ], [ -95.59553409036856, 30.385616316614612 ], [ -95.595449089961974, 30.385533316507761 ], [ -95.595439090071011, 30.385452316267799 ], [ -95.594680089272387, 30.384913316117256 ], [ -95.594796089482813, 30.384822316006176 ], [ -95.595641089656212, 30.384822316269176 ], [ -95.595958089431718, 30.384960316455484 ], [ -95.596830089781776, 30.385601316668762 ], [ -95.597728091000647, 30.386678316352128 ], [ -95.597966090484107, 30.386724316622956 ], [ -95.59804509038689, 30.386609316877923 ], [ -95.598124090318464, 30.38560131583132 ], [ -95.598653090785263, 30.385052316278518 ], [ -95.598732091129136, 30.384594316164034 ], [ -95.598864091125918, 30.384479316151264 ], [ -95.599287090760328, 30.384433315587888 ], [ -95.599868091115098, 30.38484631595043 ], [ -95.601057091010929, 30.385098316185168 ], [ -95.60177009134442, 30.384961316373587 ], [ -95.6021660910869, 30.385258316343371 ], [ -95.60229809168986, 30.385533315951061 ], [ -95.602272091742293, 30.38642631639588 ], [ -95.601558091904081, 30.387228316249711 ], [ -95.601506091490833, 30.387961316987816 ], [ -95.601189090967992, 30.38835031707935 ], [ -95.60110909146438, 30.388579316841778 ], [ -95.601241091558222, 30.388671316841805 ], [ -95.601453092002117, 30.388671316318 ], [ -95.601876091678022, 30.388304316850711 ], [ -95.602430091510385, 30.388236316264855 ], [ -95.603091091771518, 30.388763316801004 ], [ -95.60375109212157, 30.389496316897439 ], [ -95.604306092825283, 30.390572316668582 ], [ -95.604332092147899, 30.390961317039078 ], [ -95.604491092429143, 30.391168317193678 ], [ -95.604755092457182, 30.391305317562303 ], [ -95.604940092720767, 30.391236317540319 ], [ -95.604966092852365, 30.391007317441115 ], [ -95.604755092280826, 30.39064131665247 ], [ -95.604729092368444, 30.390435317094472 ], [ -95.605046092052035, 30.390343317064985 ], [ -95.605310092722192, 30.390503316751079 ], [ -95.605574092749038, 30.390503317265019 ], [ -95.605627092737791, 30.390320316746717 ], [ -95.605521092638782, 30.390114317079117 ], [ -95.604623092000182, 30.389221316874142 ], [ -95.604147091874694, 30.388350316739437 ], [ -95.604227091829245, 30.386701316073562 ], [ -95.60446509192937, 30.386266316202235 ], [ -95.604861091808104, 30.385900316059043 ], [ -95.605284092103105, 30.3857393156635 ], [ -95.60586509289989, 30.38585431611552 ], [ -95.606182092340475, 30.386106316179795 ], [ -95.606446093012423, 30.38617531630991 ], [ -95.60655209285278, 30.386106316002479 ], [ -95.606341093097953, 30.385465316068746 ], [ -95.60628809281603, 30.385075316302643 ], [ -95.606367092486849, 30.384892316072079 ], [ -95.60686909302855, 30.38470931571451 ], [ -95.607926093444291, 30.384686316165357 ], [ -95.609537093776197, 30.386221316124157 ], [ -95.610779094021638, 30.386610315932622 ], [ -95.611545094401038, 30.387320316090694 ], [ -95.611756093801574, 30.387938316025128 ], [ -95.61141309388951, 30.388877316620185 ], [ -95.611281094175695, 30.389450316272828 ], [ -95.610990094083817, 30.389771316543186 ], [ -95.611069094168869, 30.390068316653682 ], [ -95.611254094384165, 30.390045316757003 ], [ -95.611915094342265, 30.389633316646755 ], [ -95.611888093883707, 30.388900316747453 ], [ -95.612152094595075, 30.388419316400842 ], [ -95.612377093825472, 30.388316316205334 ], [ -95.612601094374924, 30.388213315823748 ], [ -95.61328809474773, 30.388213315929548 ], [ -95.613817095119046, 30.388557316675417 ], [ -95.614477094795433, 30.38949631633983 ], [ -95.614477095159529, 30.390183316264501 ], [ -95.614689094974253, 30.390252316343854 ], [ -95.614900095257013, 30.39013731699357 ], [ -95.614979095522358, 30.389381316693719 ], [ -95.61490009528967, 30.389152316359073 ], [ -95.614187095030502, 30.3881453163145 ], [ -95.613790094746889, 30.387824316220581 ], [ -95.61265409474619, 30.387160315614242 ], [ -95.611941094187813, 30.386427315719427 ], [ -95.61080509378219, 30.3846863159592 ], [ -95.610805093977248, 30.383839315632745 ], [ -95.610314093737117, 30.379978314270005 ], [ -95.603827091288849, 30.379956315106188 ], [ -95.602511091580865, 30.380455314935258 ], [ -95.597898089785758, 30.380388315569927 ], [ -95.579018085536049, 30.380116315819468 ], [ -95.578583085103546, 30.379736315906303 ], [ -95.578291084677915, 30.379735315847434 ], [ -95.57640208456138, 30.378089315198483 ], [ -95.576255084084963, 30.378340315869519 ], [ -95.576834084665535, 30.379225316108492 ], [ -95.576616084975484, 30.393216318487209 ], [ -95.587660089006022, 30.402838320418702 ], [ -95.591583089539199, 30.406508320293778 ], [ -95.596555091545156, 30.410822321024028 ], [ -95.60578809362697, 30.410871320646386 ], [ -95.607550094104639, 30.41037632080852 ], [ -95.609897094670472, 30.410262320538706 ], [ -95.614748095469167, 30.4072633199333 ], [ -95.618562096328972, 30.407282320094694 ], [ -95.620608096999547, 30.408680319855076 ], [ -95.62557709865294, 30.41299232110967 ], [ -95.629536100013055, 30.413013320580188 ], [ -95.630418099882633, 30.412513320524035 ], [ -95.633791100947974, 30.412531320109991 ], [ -95.636576101414164, 30.41292332050234 ], [ -95.638626102577305, 30.413438320624145 ], [ -95.644700104003576, 30.413468319968796 ], [ -95.644709103299206, 30.412986319924933 ], [ -95.644768103473865, 30.409729319026141 ], [ -95.64513010422877, 30.409876319123196 ], [ -95.645684103905538, 30.409944319338173 ], [ -95.645922103550959, 30.410150319255351 ], [ -95.646028103692842, 30.410333319780623 ], [ -95.646160103867473, 30.410402319323264 ], [ -95.646583104223069, 30.410431319944554 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1318, "Tract": "48339694307", "Area_SqMi": 3.9500008862866305, "total_2009": 253, "total_2010": 227, "total_2011": 465, "total_2012": 572, "total_2013": 618, "total_2014": 629, "total_2015": 626, "total_2016": 682, "total_2017": 677, "total_2018": 680, "total_2019": 882, "total_2020": 645, "age1": 253, "age2": 384, "age3": 171, "earn1": 223, "earn2": 263, "earn3": 322, "naics_s01": 1, "naics_s02": 1, "naics_s03": 79, "naics_s04": 30, "naics_s05": 5, "naics_s06": 8, "naics_s07": 108, "naics_s08": 0, "naics_s09": 0, "naics_s10": 8, "naics_s11": 10, "naics_s12": 53, "naics_s13": 0, "naics_s14": 20, "naics_s15": 4, "naics_s16": 7, "naics_s17": 31, "naics_s18": 378, "naics_s19": 65, "naics_s20": 0, "race1": 681, "race2": 57, "race3": 11, "race4": 39, "race5": 1, "race6": 19, "ethnicity1": 612, "ethnicity2": 196, "edu1": 104, "edu2": 143, "edu3": 173, "edu4": 135, "Shape_Length": 65172.350218492145, "Shape_Area": 110119264.215589, "total_2021": 716, "total_2022": 808 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.609755092473648, 30.365411311342388 ], [ -95.609765092597684, 30.365174311904742 ], [ -95.609639092498114, 30.364825311497015 ], [ -95.609460092429998, 30.363992311096602 ], [ -95.609460091907906, 30.363907311516822 ], [ -95.609474092506289, 30.36376131113505 ], [ -95.609592092286007, 30.363350311554161 ], [ -95.609641092860215, 30.363223311584925 ], [ -95.609299092319844, 30.363106311309416 ], [ -95.606634091775149, 30.362192311362019 ], [ -95.606293091716623, 30.362075311267514 ], [ -95.606255091291473, 30.362062311202351 ], [ -95.60622509174722, 30.362052310891134 ], [ -95.606109091302244, 30.362014311585927 ], [ -95.603740090754044, 30.361231310921205 ], [ -95.603593091287195, 30.361108311103539 ], [ -95.60328609058466, 30.361070311073838 ], [ -95.60303509092536, 30.360981311144911 ], [ -95.601553089977216, 30.360457311260621 ], [ -95.600669089992792, 30.360137311299024 ], [ -95.600360090339365, 30.360025311420916 ], [ -95.599300089640209, 30.359645310782355 ], [ -95.599220089797967, 30.359616310772044 ], [ -95.598937089977795, 30.359515311303046 ], [ -95.597578089084394, 30.359028310628823 ], [ -95.595859088229915, 30.358410310406377 ], [ -95.595152088363804, 30.358157310935258 ], [ -95.594761088447143, 30.358016310617518 ], [ -95.594704088632042, 30.35799631098946 ], [ -95.592866087380926, 30.357357310309744 ], [ -95.592709087582463, 30.357302311022924 ], [ -95.59253508744753, 30.357242311148415 ], [ -95.591685087392875, 30.356946310793287 ], [ -95.590923087718664, 30.356681310876777 ], [ -95.590212087199973, 30.356432310269224 ], [ -95.588767087049021, 30.355892310891068 ], [ -95.587495086474391, 30.355444310955097 ], [ -95.58691708652222, 30.355240310810274 ], [ -95.586665086575991, 30.355151310070735 ], [ -95.584649085750627, 30.354441310755966 ], [ -95.583107085544071, 30.353898310360201 ], [ -95.581716084918639, 30.353406310712689 ], [ -95.580001084461855, 30.352796310642084 ], [ -95.579418083893643, 30.352589310569019 ], [ -95.579347084427269, 30.352564310598687 ], [ -95.578938084332165, 30.352419310234247 ], [ -95.576992083125134, 30.351730309810183 ], [ -95.574272083004516, 30.350767310116993 ], [ -95.574187083031887, 30.350737310416864 ], [ -95.569839081819495, 30.349226310117476 ], [ -95.569193081372589, 30.349003310171984 ], [ -95.567333081292588, 30.348359309978214 ], [ -95.566254080875694, 30.347977309440939 ], [ -95.56506908008771, 30.347550309657368 ], [ -95.56411607958627, 30.347208310061834 ], [ -95.564037079515757, 30.34718030936493 ], [ -95.563691080116214, 30.347056309812121 ], [ -95.562993079786693, 30.346807309367563 ], [ -95.562274079271234, 30.3465503093027 ], [ -95.561567079020477, 30.346298309400989 ], [ -95.55954407851911, 30.345575309836054 ], [ -95.554471076944694, 30.343773309500193 ], [ -95.554273077336362, 30.343696309515344 ], [ -95.554128077756701, 30.343640309045636 ], [ -95.553782076732219, 30.343519309048165 ], [ -95.55336407668122, 30.343384309709514 ], [ -95.552989077306265, 30.343270309001568 ], [ -95.552611076971843, 30.343162309237282 ], [ -95.551852076748332, 30.342958309641279 ], [ -95.551460076106125, 30.342865309597215 ], [ -95.550329076746294, 30.342630309670184 ], [ -95.549091075585991, 30.342458309167167 ], [ -95.547970075193405, 30.342366309627685 ], [ -95.546295075293841, 30.342329309550614 ], [ -95.542931074053939, 30.342397309540846 ], [ -95.542577074693924, 30.342404309775407 ], [ -95.542466074056804, 30.342569309530461 ], [ -95.541621074326471, 30.342866309369143 ], [ -95.539508073863317, 30.343002309716596 ], [ -95.538848073079862, 30.343231310013426 ], [ -95.538530072978688, 30.343757310294333 ], [ -95.538480072980946, 30.343966310137027 ], [ -95.538398073681208, 30.344307309938397 ], [ -95.538397073382868, 30.344660310120275 ], [ -95.53839707326182, 30.34514531021275 ], [ -95.538397073050504, 30.345452310139255 ], [ -95.538555073068324, 30.345819310761591 ], [ -95.539610073376281, 30.347377310809264 ], [ -95.540402073609243, 30.347858310485389 ], [ -95.540746074462007, 30.347767310721359 ], [ -95.540746074247181, 30.347125310326664 ], [ -95.541010074257159, 30.346988310430572 ], [ -95.541459074686074, 30.347011310616395 ], [ -95.542752074088611, 30.348157310436015 ], [ -95.543201074393821, 30.348432310673747 ], [ -95.543408074689395, 30.348647310574361 ], [ -95.543861074582153, 30.349120310883237 ], [ -95.544653075508336, 30.349693311269107 ], [ -95.545366075474575, 30.349991311280903 ], [ -95.545973075960674, 30.349923311153418 ], [ -95.546132075050537, 30.349808310482356 ], [ -95.546132075616114, 30.349625310780663 ], [ -95.54586807595031, 30.349350310775161 ], [ -95.545551075714656, 30.349212310516315 ], [ -95.545393074936058, 30.349029311016459 ], [ -95.545446075739619, 30.348709310909523 ], [ -95.545789075427081, 30.348273310433196 ], [ -95.546397075386736, 30.347976310535188 ], [ -95.54695207527179, 30.347885310342569 ], [ -95.547401076184357, 30.347908310462753 ], [ -95.548985076600289, 30.348390310849862 ], [ -95.549803076445784, 30.348390310076567 ], [ -95.550332076039183, 30.348276310822303 ], [ -95.550754076221722, 30.348345310274389 ], [ -95.550860076706741, 30.348437310402591 ], [ -95.550833076471477, 30.348918310805672 ], [ -95.55096507649354, 30.349009310152528 ], [ -95.551440077139873, 30.348941310489373 ], [ -95.552708076937321, 30.348277310352884 ], [ -95.552920077699866, 30.348277310660279 ], [ -95.553685077443419, 30.34855231006965 ], [ -95.554266078009803, 30.348484310326693 ], [ -95.554583077944031, 30.348347310655377 ], [ -95.554901077308998, 30.347820309778189 ], [ -95.554928077254004, 30.346973309756844 ], [ -95.555139078012118, 30.346812309790138 ], [ -95.556354077491278, 30.346744310083029 ], [ -95.558677078865699, 30.347158309555393 ], [ -95.559021079148607, 30.347341309589375 ], [ -95.559575078491363, 30.347845309748934 ], [ -95.559945079107365, 30.348280309804192 ], [ -95.560737079163118, 30.348670310300644 ], [ -95.560789079710489, 30.348899310620546 ], [ -95.560472079313811, 30.349517310703984 ], [ -95.560389078985438, 30.349920310294682 ], [ -95.560340079522476, 30.350159310712375 ], [ -95.560153079591686, 30.350279310242858 ], [ -95.559910078664657, 30.35043531033374 ], [ -95.559626078562601, 30.350617310246175 ], [ -95.55925607903275, 30.351120310658853 ], [ -95.559124079386592, 30.351761311173352 ], [ -95.559177078781957, 30.351830310507971 ], [ -95.559467079273603, 30.351739310785707 ], [ -95.559864079374719, 30.351281310647572 ], [ -95.560233079581479, 30.351373310862382 ], [ -95.560233078825348, 30.351808310686181 ], [ -95.560103079659513, 30.352032310535932 ], [ -95.560048079043995, 30.352128311099207 ], [ -95.560074079320472, 30.352701311355489 ], [ -95.560218079643917, 30.352838310578793 ], [ -95.560364079618026, 30.352976310900917 ], [ -95.562345079938211, 30.354076311396334 ], [ -95.563110079657918, 30.354718311323452 ], [ -95.563337080479982, 30.354989310873808 ], [ -95.563532080475042, 30.355222311802123 ], [ -95.564429080574129, 30.356871311676102 ], [ -95.564538080502217, 30.356966311251576 ], [ -95.564608080196251, 30.357065311840852 ], [ -95.564884080270076, 30.357454311963888 ], [ -95.56527208052087, 30.358002311454083 ], [ -95.568176081615192, 30.360661311841938 ], [ -95.568752082006654, 30.362050312988988 ], [ -95.568742082474287, 30.363890312517945 ], [ -95.568733082430697, 30.365619313483545 ], [ -95.568717082045453, 30.368731314118662 ], [ -95.568886082325491, 30.369175314420527 ], [ -95.57001308296384, 30.372139314737517 ], [ -95.570447082664217, 30.372771314947247 ], [ -95.57640208456138, 30.378089315198483 ], [ -95.578291084677915, 30.379735315847434 ], [ -95.578583085103546, 30.379736315906303 ], [ -95.579018085536049, 30.380116315819468 ], [ -95.597898089785758, 30.380388315569927 ], [ -95.598126090071801, 30.376554314586514 ], [ -95.597756090097974, 30.376417314759902 ], [ -95.597413089547473, 30.376005314039698 ], [ -95.597413089409102, 30.375501314413253 ], [ -95.597545090287639, 30.375226314498192 ], [ -95.597651090140744, 30.374951314435283 ], [ -95.598021089563375, 30.374585313967984 ], [ -95.59823208996184, 30.374150313760648 ], [ -95.598259089704712, 30.373577313864885 ], [ -95.597678090307909, 30.372226313379549 ], [ -95.597810090289755, 30.371813313234572 ], [ -95.59862408949104, 30.371284313232035 ], [ -95.598655090304632, 30.371264313713603 ], [ -95.599116089731837, 30.370731313080892 ], [ -95.599808089922732, 30.370287312869447 ], [ -95.59983009073629, 30.370260312664978 ], [ -95.600271089905775, 30.370057313044295 ], [ -95.600204090315103, 30.369854312959191 ], [ -95.600156089909547, 30.369652312561566 ], [ -95.60011709048382, 30.369393312924753 ], [ -95.600107090082616, 30.369073312569704 ], [ -95.60011508990091, 30.368243312828664 ], [ -95.600094089655386, 30.367472312812176 ], [ -95.600101090532775, 30.367266312544039 ], [ -95.60013409027863, 30.366959312439619 ], [ -95.600164090466308, 30.366751312073362 ], [ -95.600218090553852, 30.366543312227694 ], [ -95.600259090075326, 30.366417312174018 ], [ -95.60032709018148, 30.366271312406745 ], [ -95.600394090283586, 30.366151311948038 ], [ -95.600526090685207, 30.365948312499071 ], [ -95.600616089814181, 30.365843312282671 ], [ -95.600772089827373, 30.365674312203424 ], [ -95.600881089893107, 30.365583312534465 ], [ -95.601035089845297, 30.365433312480803 ], [ -95.601299090478051, 30.365198312321176 ], [ -95.601602090455543, 30.365021311532914 ], [ -95.601844090974794, 30.364898312354224 ], [ -95.602100090605447, 30.364786312166263 ], [ -95.602595091101236, 30.364617311582961 ], [ -95.602862090785678, 30.36453631145972 ], [ -95.603110091148878, 30.364484312035003 ], [ -95.603472090405575, 30.364438311740397 ], [ -95.603658091038014, 30.364424311944024 ], [ -95.603841091018495, 30.364428311553439 ], [ -95.604017090854967, 30.364457311796908 ], [ -95.604188090774244, 30.364506311393065 ], [ -95.605064091505781, 30.364833311465276 ], [ -95.605176091727017, 30.364869312161542 ], [ -95.605399091854224, 30.364921311476706 ], [ -95.605777091974417, 30.364978311621979 ], [ -95.606078092014954, 30.364982311542885 ], [ -95.606193091926102, 30.364988311440101 ], [ -95.606865091354408, 30.365005312194157 ], [ -95.606953091644087, 30.365010311611329 ], [ -95.607169091493489, 30.36501031195014 ], [ -95.607267092018574, 30.365018311538297 ], [ -95.607378091935189, 30.365029311982191 ], [ -95.607636091749796, 30.365068311902299 ], [ -95.607985091886576, 30.365135312099632 ], [ -95.608264092662594, 30.365208312128704 ], [ -95.608392092558958, 30.365250312025456 ], [ -95.60845709210453, 30.365271311803532 ], [ -95.608538092103672, 30.365297311782459 ], [ -95.608962092006891, 30.365470312003598 ], [ -95.609050092796267, 30.365489311797333 ], [ -95.609141092615985, 30.365502311951939 ], [ -95.609515092432261, 30.36549831189657 ], [ -95.609716092331311, 30.365496312019509 ], [ -95.609760092541848, 30.365496312034718 ], [ -95.609755092473648, 30.365411311342388 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1319, "Tract": "48339694104", "Area_SqMi": 8.8194557390068589, "total_2009": 337, "total_2010": 402, "total_2011": 243, "total_2012": 224, "total_2013": 236, "total_2014": 231, "total_2015": 176, "total_2016": 188, "total_2017": 207, "total_2018": 212, "total_2019": 271, "total_2020": 288, "age1": 89, "age2": 155, "age3": 48, "earn1": 55, "earn2": 95, "earn3": 142, "naics_s01": 15, "naics_s02": 0, "naics_s03": 0, "naics_s04": 70, "naics_s05": 88, "naics_s06": 0, "naics_s07": 4, "naics_s08": 71, "naics_s09": 10, "naics_s10": 0, "naics_s11": 2, "naics_s12": 0, "naics_s13": 0, "naics_s14": 7, "naics_s15": 5, "naics_s16": 13, "naics_s17": 7, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 250, "race2": 31, "race3": 3, "race4": 5, "race5": 0, "race6": 3, "ethnicity1": 216, "ethnicity2": 76, "edu1": 44, "edu2": 71, "edu3": 54, "edu4": 34, "Shape_Length": 82268.999269497814, "Shape_Area": 245871331.35415578, "total_2021": 292, "total_2022": 292 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.463803058100424, 30.431579330507212 ], [ -95.464033058433515, 30.431483330074009 ], [ -95.463013058168684, 30.43071433037484 ], [ -95.462405058259577, 30.430486330134716 ], [ -95.461774057573479, 30.430388330052885 ], [ -95.461453057190482, 30.430338330055296 ], [ -95.461374057551438, 30.430326329730718 ], [ -95.460395057830738, 30.430052330156784 ], [ -95.459285057058509, 30.42957232967693 ], [ -95.458492056538674, 30.429343330105329 ], [ -95.457593056505786, 30.429184330459453 ], [ -95.456721056423603, 30.429184329958396 ], [ -95.455478055743015, 30.428750329651137 ], [ -95.455055055457464, 30.428705330175536 ], [ -95.454236055475803, 30.429049330542778 ], [ -95.453258055182786, 30.429049330087761 ], [ -95.452465054935416, 30.429393330171887 ], [ -95.451487055396782, 30.429394330402673 ], [ -95.450562054740246, 30.428982330338354 ], [ -95.447944054331103, 30.428251330479583 ], [ -95.4477340537656, 30.428139330628401 ], [ -95.447601054489184, 30.428068330640944 ], [ -95.447563053890562, 30.427929329729999 ], [ -95.447495054120409, 30.427683329786085 ], [ -95.447335053947739, 30.427106329764015 ], [ -95.446992053376931, 30.426786330293357 ], [ -95.445749053761986, 30.426489329786563 ], [ -95.445485052919977, 30.426352329661952 ], [ -95.445035053703918, 30.425688330157477 ], [ -95.44498105315742, 30.424978329760251 ], [ -95.444637052866454, 30.424062329597806 ], [ -95.44416105333697, 30.423512329346995 ], [ -95.443886052625345, 30.423297329226141 ], [ -95.443050052358743, 30.422643329555854 ], [ -95.442547052608973, 30.422369329233138 ], [ -95.442336052715987, 30.422254329379417 ], [ -95.441965052243845, 30.421727328795235 ], [ -95.440194051511895, 30.421064329157225 ], [ -95.43993005154897, 30.421224328658099 ], [ -95.43924305145589, 30.421225329547632 ], [ -95.43900505142156, 30.42079032923191 ], [ -95.438634051365085, 30.420675329417218 ], [ -95.438212051130108, 30.420699329482535 ], [ -95.437921050790635, 30.421019329178719 ], [ -95.43768305113079, 30.421065329259974 ], [ -95.43752505145595, 30.420974329511889 ], [ -95.437472050659906, 30.420791329084711 ], [ -95.437286051131949, 30.420607328621671 ], [ -95.43675805056391, 30.420677329534829 ], [ -95.436255050239836, 30.420356329145807 ], [ -95.435727050988646, 30.420563329221196 ], [ -95.435119049966758, 30.420494328681666 ], [ -95.434722050384892, 30.420288328997646 ], [ -95.433903050269805, 30.420357329186057 ], [ -95.433692050195447, 30.420105329213786 ], [ -95.433559049946794, 30.419785328581664 ], [ -95.433268049893883, 30.419648329416788 ], [ -95.433242049418865, 30.419235328895976 ], [ -95.433136049388096, 30.419029329170527 ], [ -95.433109049595075, 30.418640329112641 ], [ -95.433003050294786, 30.418480328510178 ], [ -95.432554049475144, 30.418388329142751 ], [ -95.432369049574191, 30.418228328810208 ], [ -95.432369049507997, 30.417953328342719 ], [ -95.432553049837367, 30.417609328594899 ], [ -95.432447050083582, 30.417426328203248 ], [ -95.432685049775941, 30.416647328017863 ], [ -95.432447049074895, 30.416327328285465 ], [ -95.432345049504647, 30.41584432811926 ], [ -95.432335049361754, 30.415816328483704 ], [ -95.432719049432819, 30.415633328478631 ], [ -95.433132049871872, 30.415619328060593 ], [ -95.433114049544542, 30.415351327944325 ], [ -95.43406605042469, 30.415385328228552 ], [ -95.435039050238089, 30.415420327940325 ], [ -95.435576050334404, 30.415439328308135 ], [ -95.435570050398866, 30.41505332784924 ], [ -95.4354740504738, 30.408959326801195 ], [ -95.435409049825282, 30.408934326435091 ], [ -95.435180049409141, 30.408846326871458 ], [ -95.434215049397437, 30.408334326386658 ], [ -95.4336940496067, 30.40796132623316 ], [ -95.432694049136273, 30.407246326734533 ], [ -95.432258049363512, 30.406934326633824 ], [ -95.431193049230501, 30.406018326558151 ], [ -95.430393048786243, 30.405330325981918 ], [ -95.429327047964634, 30.404172325829748 ], [ -95.427853047680927, 30.402262325950119 ], [ -95.427030047590563, 30.401215325620761 ], [ -95.426513047125738, 30.400681325326051 ], [ -95.425792047145322, 30.40009332532772 ], [ -95.425230046870126, 30.399723324866731 ], [ -95.425130046878721, 30.39965732527806 ], [ -95.423458045972041, 30.398603324688874 ], [ -95.42217204564497, 30.397793324614732 ], [ -95.421189046040269, 30.397082324784407 ], [ -95.417365045024894, 30.39369632423552 ], [ -95.416422044616567, 30.39294832460125 ], [ -95.416063044086528, 30.392696324594628 ], [ -95.415244043620362, 30.392243323963438 ], [ -95.413874043868532, 30.391667324211603 ], [ -95.410585042975285, 30.390461323876451 ], [ -95.407525041531912, 30.38930632420761 ], [ -95.406831041796181, 30.388897323510303 ], [ -95.406015041527439, 30.388223323780085 ], [ -95.40585904112298, 30.388464323303594 ], [ -95.404586041700497, 30.390292324285699 ], [ -95.403069041404891, 30.392422324481139 ], [ -95.402472040448401, 30.39318232468483 ], [ -95.40196504041667, 30.393597324431301 ], [ -95.401454040571295, 30.393873325131274 ], [ -95.400533040265671, 30.394370325104308 ], [ -95.398273039746059, 30.395589325260563 ], [ -95.397482039761286, 30.396016325769256 ], [ -95.396718039823043, 30.396428325245616 ], [ -95.39610103922962, 30.396761325825583 ], [ -95.392887039024245, 30.398490326476839 ], [ -95.392008038713385, 30.398885326480073 ], [ -95.391173038023794, 30.399193326804678 ], [ -95.388424037128843, 30.400154326613993 ], [ -95.388428037116896, 30.400214327068383 ], [ -95.388438037158465, 30.400377326987254 ], [ -95.38854403734581, 30.400492326366297 ], [ -95.388597037487543, 30.400790327046817 ], [ -95.388359038058681, 30.401087326574604 ], [ -95.38798903716102, 30.401202327236856 ], [ -95.388042037770191, 30.4015233268312 ], [ -95.388465037468862, 30.401660327277561 ], [ -95.388544037788023, 30.402187327453809 ], [ -95.38883503751191, 30.402370327167304 ], [ -95.389364037836671, 30.402599327470242 ], [ -95.389390038212881, 30.402943326782243 ], [ -95.388730037308747, 30.403263327553251 ], [ -95.388598037470913, 30.403424327366256 ], [ -95.38865003748522, 30.403767327201912 ], [ -95.388836037325348, 30.403905327036732 ], [ -95.38883603787346, 30.404088327724104 ], [ -95.388492037723282, 30.404317327511848 ], [ -95.388466037605426, 30.404592327144805 ], [ -95.388809038001696, 30.404752327695618 ], [ -95.38886203824363, 30.404890327513016 ], [ -95.388775037338448, 30.405050327501225 ], [ -95.388651037845818, 30.405279327429312 ], [ -95.388651038338551, 30.405439327495053 ], [ -95.388810037969208, 30.405623328127852 ], [ -95.388836038230281, 30.40610432746896 ], [ -95.389470037588993, 30.40658532828585 ], [ -95.389550038566924, 30.406928327627494 ], [ -95.390211037978375, 30.407157328058428 ], [ -95.390211037995741, 30.407363327955405 ], [ -95.390026037875415, 30.407615328451353 ], [ -95.390052037936968, 30.40777632823621 ], [ -95.39026403828818, 30.408027328211109 ], [ -95.390317038494203, 30.408417327863127 ], [ -95.390766038704001, 30.4086923279865 ], [ -95.390872038983602, 30.409447328869295 ], [ -95.391216038774118, 30.409447328747291 ], [ -95.391480038504682, 30.409058328468134 ], [ -95.3917440387049, 30.409104328325217 ], [ -95.391850039246961, 30.409264327990861 ], [ -95.391850038622465, 30.409585328890959 ], [ -95.391744038871082, 30.409676328049045 ], [ -95.391744038632339, 30.410707328265893 ], [ -95.391929039033471, 30.410845328676629 ], [ -95.392352039101795, 30.410799328792042 ], [ -95.392749039189368, 30.41043232831322 ], [ -95.392986039683521, 30.41045532869062 ], [ -95.393489039329822, 30.410844328536218 ], [ -95.394176039631105, 30.411096328758969 ], [ -95.394097039072719, 30.411325328325233 ], [ -95.393515039753581, 30.41150832854796 ], [ -95.393515039810993, 30.411738329047676 ], [ -95.39362103890744, 30.411852328824857 ], [ -95.394388039326856, 30.411714328884003 ], [ -95.394943039417043, 30.412127328675293 ], [ -95.395736040119161, 30.412401329223215 ], [ -95.395736039780786, 30.412676328546585 ], [ -95.395498039987501, 30.41308932923296 ], [ -95.395524039470757, 30.413386328832946 ], [ -95.395710039934343, 30.413592329004722 ], [ -95.395974039837043, 30.413570328813794 ], [ -95.396291040672452, 30.413386329232392 ], [ -95.396502040291026, 30.413409328859849 ], [ -95.396529040646612, 30.413684329137219 ], [ -95.39639704018569, 30.413959329608844 ], [ -95.396397040568345, 30.414234329599516 ], [ -95.396529039960114, 30.41437132957104 ], [ -95.397190040564539, 30.414325329529046 ], [ -95.397428040736855, 30.414440329160353 ], [ -95.397428040635063, 30.415012329257152 ], [ -95.397983040448239, 30.415104329109091 ], [ -95.397983040914909, 30.41572232963118 ], [ -95.398168041205253, 30.415974329677425 ], [ -95.398353040887102, 30.415951329824136 ], [ -95.398697040478041, 30.415814329597239 ], [ -95.399093040791115, 30.415859329730885 ], [ -95.399648041431121, 30.416111329443897 ], [ -95.399765041631269, 30.416204329960252 ], [ -95.400309041421224, 30.416638329237031 ], [ -95.400653041617716, 30.417119330068925 ], [ -95.400521041186749, 30.417623329855751 ], [ -95.400838041145889, 30.417897329616864 ], [ -95.400812041574142, 30.418104329860842 ], [ -95.40052104159362, 30.418447330155004 ], [ -95.400707041689842, 30.41879133045413 ], [ -95.400707041457153, 30.41943232969389 ], [ -95.401156041256897, 30.419844330465651 ], [ -95.402161042302609, 30.42030233010075 ], [ -95.402108042402844, 30.420508330446573 ], [ -95.401764041816079, 30.420783330063347 ], [ -95.401791041672055, 30.421058330568478 ], [ -95.401950041575518, 30.421287330806098 ], [ -95.402214042555116, 30.421470330407814 ], [ -95.402258041874759, 30.421926330599177 ], [ -95.402294041942454, 30.422295330625687 ], [ -95.402399042235814, 30.422409330926008 ], [ -95.402823042315035, 30.422547330365045 ], [ -95.403166042395597, 30.423005330863813 ], [ -95.403774042167598, 30.423211330665708 ], [ -95.404065042893492, 30.423554331072129 ], [ -95.404409043221094, 30.423760330548596 ], [ -95.404515043258684, 30.424035330942054 ], [ -95.404436042976073, 30.42431033067772 ], [ -95.404409042430061, 30.42479133112414 ], [ -95.40456804320273, 30.425089330862601 ], [ -95.40538804304272, 30.425661331043742 ], [ -95.405546042659878, 30.425936331414729 ], [ -95.405573042801947, 30.426165331626663 ], [ -95.404939042950872, 30.42666933152967 ], [ -95.404913042511012, 30.42712733178962 ], [ -95.405494042858436, 30.427379331789709 ], [ -95.405547043382953, 30.427745331669314 ], [ -95.405706042974558, 30.427860331652187 ], [ -95.406182043604943, 30.427974331273006 ], [ -95.406261042910756, 30.42808933192746 ], [ -95.406314043809473, 30.428547331887181 ], [ -95.406420043662791, 30.428638331438528 ], [ -95.40694904389774, 30.428821331606809 ], [ -95.406949044151119, 30.429142331826711 ], [ -95.406738043998786, 30.429509332163374 ], [ -95.40671104312112, 30.42980733226549 ], [ -95.406843043186868, 30.429959332072368 ], [ -95.406870043253349, 30.429990332046398 ], [ -95.40684404317301, 30.430150331843933 ], [ -95.4066590431989, 30.430425331741539 ], [ -95.406659043915241, 30.430654332175227 ], [ -95.406764043657148, 30.430723332404366 ], [ -95.4067380438469, 30.431204332049461 ], [ -95.406560043534213, 30.431706332779399 ], [ -95.406316043254606, 30.432395332755235 ], [ -95.406157043930918, 30.432555332595339 ], [ -95.405734043593753, 30.432624332498108 ], [ -95.405682043747845, 30.43280833234645 ], [ -95.405735043896058, 30.43294533269642 ], [ -95.406449043446997, 30.433517333024486 ], [ -95.4064750442123, 30.43383833289738 ], [ -95.406369043386718, 30.434021333179576 ], [ -95.405947043812262, 30.434388332833667 ], [ -95.405841043538786, 30.434571332707524 ], [ -95.405894043215852, 30.434869333376021 ], [ -95.406555043981399, 30.435831333016878 ], [ -95.406741044319745, 30.436518333485083 ], [ -95.406926044177212, 30.436793333666692 ], [ -95.406926043578096, 30.437091333474182 ], [ -95.406450043932281, 30.437480333228589 ], [ -95.406424043469499, 30.437869333845331 ], [ -95.406605043590446, 30.438026333467509 ], [ -95.406742043777029, 30.438144333330996 ], [ -95.406742043917035, 30.438786333530288 ], [ -95.407218043746909, 30.439221334202191 ], [ -95.407324044109828, 30.439793333718093 ], [ -95.407879044582245, 30.440182334264946 ], [ -95.408012044730711, 30.4408923341825 ], [ -95.408329044335389, 30.441236334071039 ], [ -95.408805044614382, 30.441327334582937 ], [ -95.408964044389677, 30.441488334685399 ], [ -95.409123045154246, 30.442266334458065 ], [ -95.40930804461685, 30.442587334588566 ], [ -95.409652044983545, 30.442816334797111 ], [ -95.409995044886642, 30.442747334900719 ], [ -95.41023304510928, 30.442541334776781 ], [ -95.410445045166512, 30.442564334484555 ], [ -95.410683045317128, 30.443090334555041 ], [ -95.411185045706233, 30.443136334760755 ], [ -95.411291045564866, 30.44320533465979 ], [ -95.411370045584988, 30.44348033437673 ], [ -95.411476045605781, 30.443571335077593 ], [ -95.411793045698104, 30.443456335027001 ], [ -95.411952046055035, 30.44313633488413 ], [ -95.41232204535693, 30.442861334488278 ], [ -95.412666046139279, 30.442929334402031 ], [ -95.413142045629655, 30.443456334401226 ], [ -95.41353804600071, 30.443593334251243 ], [ -95.413776046383632, 30.443868335005696 ], [ -95.413935045987145, 30.444463334835834 ], [ -95.414332046615556, 30.444715334851317 ], [ -95.414755046122195, 30.445150335243049 ], [ -95.414993046026893, 30.445517334856305 ], [ -95.415020046339819, 30.445975334794614 ], [ -95.414730046016686, 30.44657033507141 ], [ -95.414756046028614, 30.446891334999972 ], [ -95.415074046992274, 30.447235335408983 ], [ -95.415946046845988, 30.447624335470163 ], [ -95.416131046804111, 30.447807335301121 ], [ -95.416026047307824, 30.448334335853136 ], [ -95.416158047420623, 30.448448335177503 ], [ -95.416687046930988, 30.448562335010745 ], [ -95.416872047297602, 30.448837335790795 ], [ -95.416925046872038, 30.449181335893954 ], [ -95.41711004730908, 30.449341335190098 ], [ -95.417719047196712, 30.449364335584171 ], [ -95.418036047543211, 30.449616335604539 ], [ -95.419384048134049, 30.449615335160694 ], [ -95.419675048209029, 30.449729335380578 ], [ -95.419702048423517, 30.449981335222521 ], [ -95.419913048285849, 30.450142336107817 ], [ -95.420495047708243, 30.450187335686952 ], [ -95.420786048131674, 30.450508335322464 ], [ -95.420839048706398, 30.4514243359177 ], [ -95.421025048035048, 30.451653336329152 ], [ -95.422215048531726, 30.452019335520983 ], [ -95.422453048687771, 30.452225335581382 ], [ -95.422612048522979, 30.452660336038978 ], [ -95.423273049134707, 30.45311833601005 ], [ -95.423405048977543, 30.45332433656748 ], [ -95.423406049266958, 30.45389633668254 ], [ -95.422957049386824, 30.454744336429858 ], [ -95.423142048609449, 30.454927336137576 ], [ -95.423404049070498, 30.455001336490863 ], [ -95.423464049250569, 30.454963336087197 ], [ -95.424794049830098, 30.454071336345926 ], [ -95.425802049900369, 30.453479336371601 ], [ -95.426881049425774, 30.452781335627019 ], [ -95.427384049995126, 30.45245133615699 ], [ -95.428301050451481, 30.451826335922409 ], [ -95.428668050710371, 30.451520335959028 ], [ -95.429282050267915, 30.450983335545974 ], [ -95.430454050929981, 30.449992335242374 ], [ -95.431613051361921, 30.449012335254082 ], [ -95.433536051671595, 30.447363334520837 ], [ -95.434473051042033, 30.446579334720312 ], [ -95.436470052276292, 30.445176334240024 ], [ -95.437251051854332, 30.444628333777274 ], [ -95.438011052504478, 30.444136334138566 ], [ -95.43857505290255, 30.443761334004652 ], [ -95.438890052935974, 30.443552334080113 ], [ -95.439089052795623, 30.443419333510192 ], [ -95.43939405248102, 30.443207333311829 ], [ -95.440091052678156, 30.442802333465135 ], [ -95.442790052978566, 30.441355332694577 ], [ -95.44430805404339, 30.440527332590754 ], [ -95.444688053624517, 30.440320332725548 ], [ -95.446027054443107, 30.439584332939425 ], [ -95.446265054680936, 30.439462332608464 ], [ -95.446930054338267, 30.439121332408472 ], [ -95.447807054796741, 30.438672332752752 ], [ -95.449846055227141, 30.437627331769988 ], [ -95.450775055205739, 30.43721133166698 ], [ -95.451669054980158, 30.436830331681595 ], [ -95.452306055980742, 30.436559331818486 ], [ -95.45238505557829, 30.436526331313004 ], [ -95.452999055960547, 30.43626633211078 ], [ -95.453719056087081, 30.435919331633386 ], [ -95.45497705589537, 30.43539433132992 ], [ -95.45513505675595, 30.435326331110907 ], [ -95.455553055917321, 30.435147331332477 ], [ -95.456475056444475, 30.434742331224445 ], [ -95.459313057153381, 30.433508331208607 ], [ -95.46203305819904, 30.432343330713699 ], [ -95.462361057849293, 30.432203330270113 ], [ -95.462698058362548, 30.432059330910125 ], [ -95.463803058100424, 30.431579330507212 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1320, "Tract": "48339692803", "Area_SqMi": 11.325036236214327, "total_2009": 163, "total_2010": 249, "total_2011": 444, "total_2012": 412, "total_2013": 435, "total_2014": 427, "total_2015": 447, "total_2016": 351, "total_2017": 408, "total_2018": 425, "total_2019": 479, "total_2020": 807, "age1": 214, "age2": 266, "age3": 104, "earn1": 179, "earn2": 217, "earn3": 188, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 123, "naics_s05": 58, "naics_s06": 3, "naics_s07": 83, "naics_s08": 1, "naics_s09": 1, "naics_s10": 0, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 46, "naics_s15": 0, "naics_s16": 69, "naics_s17": 0, "naics_s18": 148, "naics_s19": 5, "naics_s20": 44, "race1": 519, "race2": 33, "race3": 7, "race4": 12, "race5": 2, "race6": 11, "ethnicity1": 412, "ethnicity2": 172, "edu1": 83, "edu2": 114, "edu3": 108, "edu4": 65, "Shape_Length": 88683.941367085208, "Shape_Area": 315722627.27242064, "total_2021": 566, "total_2022": 584 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.182305975148083, 30.204319294313361 ], [ -95.181953975431966, 30.204218294335568 ], [ -95.181704974944054, 30.204147294368703 ], [ -95.181582975307009, 30.204083294198597 ], [ -95.181452974774174, 30.20407129431721 ], [ -95.181360975383058, 30.20406829432747 ], [ -95.181216975247196, 30.204064294574753 ], [ -95.175989974292264, 30.204112294351091 ], [ -95.175213973068608, 30.20411929460926 ], [ -95.162315969872168, 30.204228294621846 ], [ -95.160230970163013, 30.204251294875281 ], [ -95.160112969497888, 30.2042482949483 ], [ -95.159891969856574, 30.204258294976782 ], [ -95.159788969615548, 30.204274295092571 ], [ -95.159591969919404, 30.204329295081244 ], [ -95.159472969712354, 30.204381295387272 ], [ -95.157869968820933, 30.205023295277098 ], [ -95.157771969114293, 30.205048295427879 ], [ -95.157581968630154, 30.20506429514149 ], [ -95.152733967686856, 30.20512129580683 ], [ -95.151518967077223, 30.205146295037142 ], [ -95.150421967082423, 30.205168295073893 ], [ -95.139624964690611, 30.205277296263056 ], [ -95.139741963814956, 30.200634295192483 ], [ -95.139770963833527, 30.200312294855614 ], [ -95.139804964491148, 30.200030295157518 ], [ -95.139842963847713, 30.199816294449086 ], [ -95.139849964501195, 30.199776294989501 ], [ -95.139905963941771, 30.199524294479886 ], [ -95.139944963801142, 30.199368294561459 ], [ -95.139998964388781, 30.199199294374093 ], [ -95.140139964455656, 30.198726294661576 ], [ -95.140181963957446, 30.198583294863727 ], [ -95.140392964160426, 30.197879294384268 ], [ -95.140754964308684, 30.196665293781447 ], [ -95.140902964008887, 30.196097294296848 ], [ -95.141032964026707, 30.195651293743602 ], [ -95.141543964233747, 30.193907293452188 ], [ -95.142321964482377, 30.191230292630916 ], [ -95.142406964691872, 30.190889292645014 ], [ -95.142557964591603, 30.190318292344788 ], [ -95.142597964256325, 30.190195292386253 ], [ -95.142610964501245, 30.190162292720611 ], [ -95.142647965054891, 30.190065292479822 ], [ -95.142735964122267, 30.189864292855692 ], [ -95.142762964567538, 30.189815292617237 ], [ -95.142806964646368, 30.189734292755315 ], [ -95.142988964488268, 30.189466292902125 ], [ -95.143239964891308, 30.189108292923326 ], [ -95.143621964858824, 30.188544292130143 ], [ -95.143755965260084, 30.188358292359098 ], [ -95.144025964548533, 30.187964292219029 ], [ -95.143041964395891, 30.188219291872109 ], [ -95.136026962369385, 30.190303292634216 ], [ -95.135210962565537, 30.190546293037684 ], [ -95.132131962042081, 30.191460293404614 ], [ -95.131771962073657, 30.191567292960514 ], [ -95.118398959017384, 30.195539294470745 ], [ -95.113763957116177, 30.19697729515088 ], [ -95.112969957490748, 30.197224295067723 ], [ -95.112033956773061, 30.197291295422957 ], [ -95.11074095646137, 30.19739829550641 ], [ -95.10995495689663, 30.197393295515088 ], [ -95.109462956670512, 30.197516295274202 ], [ -95.108480956120545, 30.197972295186371 ], [ -95.108613955902001, 30.198326295727149 ], [ -95.108645956294438, 30.198413295919355 ], [ -95.108964956257353, 30.199258296088257 ], [ -95.109013956268186, 30.199388296144438 ], [ -95.109109956793816, 30.199643295766801 ], [ -95.109148955878055, 30.199742295890317 ], [ -95.109350956874195, 30.200251295792583 ], [ -95.111558957554124, 30.20586529688585 ], [ -95.112458957154189, 30.208151297268508 ], [ -95.113319958347589, 30.210337298129012 ], [ -95.113631958408561, 30.211131298223897 ], [ -95.113682958228964, 30.211262298346778 ], [ -95.114780958725419, 30.214054298914657 ], [ -95.114884958764435, 30.214322299033519 ], [ -95.115208958560714, 30.215149298937149 ], [ -95.115221958340641, 30.215180298837865 ], [ -95.115851958456133, 30.216688298689871 ], [ -95.115923958874831, 30.216885299337008 ], [ -95.116580958896989, 30.2185562990805 ], [ -95.117241959263836, 30.220239299831235 ], [ -95.118856960452817, 30.224362300355782 ], [ -95.118863960196848, 30.224379300096391 ], [ -95.119064960212725, 30.224873300839587 ], [ -95.119113960158856, 30.225002300446718 ], [ -95.119157960341596, 30.225115300257002 ], [ -95.119171960330036, 30.225155300964559 ], [ -95.119518959909271, 30.226059300616122 ], [ -95.119821960578975, 30.226845300952316 ], [ -95.120037960188668, 30.227405301481664 ], [ -95.120664960465561, 30.22903730118955 ], [ -95.120688960744516, 30.229103301565111 ], [ -95.120763960727615, 30.229302301574229 ], [ -95.120788960246031, 30.229369301887786 ], [ -95.121080961002988, 30.230123302070496 ], [ -95.121406960529598, 30.230969302115358 ], [ -95.122646961071155, 30.234198302098228 ], [ -95.123294961807304, 30.235884302533488 ], [ -95.125139962635032, 30.240683303656294 ], [ -95.12516896215925, 30.240759303615064 ], [ -95.12519896203402, 30.240836303520581 ], [ -95.12557496285298, 30.241815303602426 ], [ -95.125600962813948, 30.24188030409341 ], [ -95.127081962640332, 30.245634304618548 ], [ -95.127086963408573, 30.245649304770403 ], [ -95.12828696358747, 30.248474305473902 ], [ -95.12882996410498, 30.249892305481183 ], [ -95.128853963844321, 30.249957305261141 ], [ -95.12892796343597, 30.250152305202317 ], [ -95.128952963377543, 30.250217305727109 ], [ -95.128970964097391, 30.250226305533062 ], [ -95.129024964134999, 30.250256305013046 ], [ -95.129042964120259, 30.250266305736375 ], [ -95.129453963823011, 30.250508305489738 ], [ -95.129522963722962, 30.250701305625668 ], [ -95.130218964386842, 30.252625306259567 ], [ -95.130451964215325, 30.253267306222366 ], [ -95.130749964344673, 30.254098305944204 ], [ -95.131646965152839, 30.256594306312078 ], [ -95.131945965427079, 30.257426306933819 ], [ -95.131959964786063, 30.257464307187625 ], [ -95.131983964461284, 30.257527306904453 ], [ -95.13205596502452, 30.257717307002569 ], [ -95.13208096536097, 30.257781306592378 ], [ -95.132095964705044, 30.257824306872291 ], [ -95.132140964924886, 30.257953306855207 ], [ -95.132156964508809, 30.257996306969464 ], [ -95.132174964928154, 30.258049307200569 ], [ -95.132231964795267, 30.258208307343541 ], [ -95.132250964835407, 30.258262306523843 ], [ -95.132325964766508, 30.258469306591405 ], [ -95.132553965242508, 30.259091306849371 ], [ -95.132629964854587, 30.259299307407964 ], [ -95.13264196471809, 30.259338307028557 ], [ -95.132677965007389, 30.259454306759867 ], [ -95.132690965438073, 30.259494307166882 ], [ -95.132722965209865, 30.259579307153011 ], [ -95.132821965119916, 30.259836307539288 ], [ -95.132855964849227, 30.259922307181174 ], [ -95.133108965673628, 30.260618307454877 ], [ -95.133535965774271, 30.261790307793586 ], [ -95.133870965314088, 30.262708307548152 ], [ -95.134124965979595, 30.263405308140399 ], [ -95.134171965549939, 30.263526308107181 ], [ -95.13534296630597, 30.266528308979428 ], [ -95.135959966252031, 30.268110308838718 ], [ -95.135965966577842, 30.268125309142857 ], [ -95.136917966763846, 30.270612309569501 ], [ -95.136928966508648, 30.270639309209081 ], [ -95.137051967006897, 30.270960309292651 ], [ -95.137061967142628, 30.270986309092745 ], [ -95.137074966645116, 30.271021309485384 ], [ -95.137116967409753, 30.271129309312215 ], [ -95.137171967198313, 30.271273309516793 ], [ -95.137209967391897, 30.271372309777526 ], [ -95.137261967012194, 30.271507309311684 ], [ -95.138765967267432, 30.269325309199978 ], [ -95.138588967092957, 30.269176309130074 ], [ -95.138686966867425, 30.269019308946341 ], [ -95.138795967191228, 30.268859308958049 ], [ -95.139520967427998, 30.267791308514383 ], [ -95.140173967913881, 30.266822308405775 ], [ -95.140680967820231, 30.26608130854563 ], [ -95.14125596820152, 30.265210308045464 ], [ -95.141759968269497, 30.264502307762115 ], [ -95.141893968107652, 30.264301307792323 ], [ -95.142713967502758, 30.262968307446226 ], [ -95.143955968294378, 30.261303306771541 ], [ -95.144336968454041, 30.260692306626247 ], [ -95.145650968113742, 30.258768306510163 ], [ -95.147024968297657, 30.256696305788733 ], [ -95.14748496858661, 30.256017305893231 ], [ -95.148449968604723, 30.254595306031675 ], [ -95.149222969539679, 30.253482305041068 ], [ -95.150688969835656, 30.251413305097095 ], [ -95.150928969127534, 30.251126304395633 ], [ -95.151264969822279, 30.250692304720999 ], [ -95.151355969512153, 30.250575305142405 ], [ -95.151441969928328, 30.250472304882759 ], [ -95.151581970110286, 30.250302304488812 ], [ -95.152829969632208, 30.248838304375216 ], [ -95.153527969627618, 30.248014304480446 ], [ -95.154753969978643, 30.246677304242176 ], [ -95.155414970242873, 30.245961303880197 ], [ -95.156327970673843, 30.245060303780175 ], [ -95.157767971437679, 30.243658302718593 ], [ -95.158138971012875, 30.243279303183616 ], [ -95.158564971504617, 30.242843302592433 ], [ -95.15884297076849, 30.242552303247503 ], [ -95.158916971439197, 30.242480302906763 ], [ -95.159246971370976, 30.242145302316025 ], [ -95.159617971208348, 30.24172830263506 ], [ -95.160120971815829, 30.24112630229736 ], [ -95.160356971662608, 30.240828302246101 ], [ -95.160464971752674, 30.240672302287141 ], [ -95.160890971557166, 30.240088301827758 ], [ -95.161238971496374, 30.239574302180202 ], [ -95.161488971706433, 30.239167302133456 ], [ -95.16194797183681, 30.238316301865925 ], [ -95.162561972151465, 30.236753301082139 ], [ -95.16272597176301, 30.236179301619405 ], [ -95.162828972022709, 30.235888301259063 ], [ -95.163220972138078, 30.234802300856646 ], [ -95.163889971783405, 30.233316301170678 ], [ -95.164152971691408, 30.232742300607136 ], [ -95.164247972024171, 30.232534300306849 ], [ -95.164407971601378, 30.232230300830643 ], [ -95.164880972324625, 30.231333300171787 ], [ -95.165084972649822, 30.230970300559225 ], [ -95.165584972243437, 30.230126299696234 ], [ -95.16563197268492, 30.230064299734043 ], [ -95.166311972253368, 30.229308299821017 ], [ -95.166557972746673, 30.229022299630198 ], [ -95.166809973000611, 30.228535299266461 ], [ -95.167085972700505, 30.228006299244477 ], [ -95.16765197298723, 30.226854299075221 ], [ -95.167688972856695, 30.226783299415597 ], [ -95.168048972402332, 30.226060299526011 ], [ -95.168503973081243, 30.225261299340733 ], [ -95.168973973327709, 30.224492298858355 ], [ -95.169296972531825, 30.224001298348806 ], [ -95.169556972713522, 30.223092298487042 ], [ -95.170153972851494, 30.22218029840349 ], [ -95.170429973348448, 30.221769298425137 ], [ -95.172372973754563, 30.218950297387426 ], [ -95.172740973730853, 30.218373297578538 ], [ -95.173334974140815, 30.217452297648531 ], [ -95.173735973503497, 30.21686229744742 ], [ -95.174823973583159, 30.215286296670264 ], [ -95.176000974460251, 30.213546296471648 ], [ -95.177373974662885, 30.21150129623889 ], [ -95.178118974185878, 30.210411295416215 ], [ -95.178733974691923, 30.209532295602511 ], [ -95.17949097483293, 30.208483294984802 ], [ -95.179677974677816, 30.208200294926943 ], [ -95.179900974475714, 30.20786229456904 ], [ -95.180057975492105, 30.207624295050074 ], [ -95.182305975148083, 30.204319294313361 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1321, "Tract": "48339690608", "Area_SqMi": 2.3842716056501181, "total_2009": 667, "total_2010": 690, "total_2011": 615, "total_2012": 752, "total_2013": 819, "total_2014": 900, "total_2015": 1125, "total_2016": 1235, "total_2017": 1647, "total_2018": 1635, "total_2019": 1915, "total_2020": 1806, "age1": 725, "age2": 931, "age3": 372, "earn1": 579, "earn2": 760, "earn3": 689, "naics_s01": 0, "naics_s02": 16, "naics_s03": 0, "naics_s04": 167, "naics_s05": 62, "naics_s06": 107, "naics_s07": 407, "naics_s08": 0, "naics_s09": 18, "naics_s10": 54, "naics_s11": 17, "naics_s12": 145, "naics_s13": 5, "naics_s14": 186, "naics_s15": 133, "naics_s16": 232, "naics_s17": 0, "naics_s18": 428, "naics_s19": 51, "naics_s20": 0, "race1": 1680, "race2": 172, "race3": 14, "race4": 112, "race5": 6, "race6": 44, "ethnicity1": 1502, "ethnicity2": 526, "edu1": 260, "edu2": 331, "edu3": 360, "edu4": 352, "Shape_Length": 46993.935469940334, "Shape_Area": 66469411.643888883, "total_2021": 1969, "total_2022": 2028 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.578411077138895, 30.205906280987858 ], [ -95.578367077403115, 30.205868281011 ], [ -95.577930076922755, 30.205489280697613 ], [ -95.577429077193514, 30.205237280869689 ], [ -95.576981077075928, 30.205122280161387 ], [ -95.575452076037877, 30.205374280956249 ], [ -95.575109075691259, 30.2055572804164 ], [ -95.574766076348524, 30.2059692811331 ], [ -95.573948076188685, 30.206312280990861 ], [ -95.573526075994323, 30.207022281437389 ], [ -95.573183076161513, 30.207091281371415 ], [ -95.572788075717071, 30.206908281397379 ], [ -95.572234075962456, 30.206770281189264 ], [ -95.571126075082617, 30.206930281168763 ], [ -95.57078307523858, 30.206884281165756 ], [ -95.570045074690128, 30.206426280619525 ], [ -95.569439074878545, 30.206243280848064 ], [ -95.568780074339927, 30.206242281365 ], [ -95.568331074022097, 30.206448280733394 ], [ -95.568226074645921, 30.206654281538601 ], [ -95.567672074186447, 30.206700281558287 ], [ -95.567408074022737, 30.206494281284261 ], [ -95.566670073889483, 30.206356281157856 ], [ -95.564744073314969, 30.207272281557234 ], [ -95.563848073102918, 30.207409281620599 ], [ -95.563136073285136, 30.207202281501704 ], [ -95.562318072912106, 30.207408281104179 ], [ -95.561949072701111, 30.207202281423061 ], [ -95.561527072556757, 30.207179281147223 ], [ -95.56110507294305, 30.207316281310291 ], [ -95.560894072270472, 30.207247281135164 ], [ -95.560657072278659, 30.207041281214856 ], [ -95.560209071933443, 30.20704128183862 ], [ -95.559787072595199, 30.207293282006901 ], [ -95.559391071724107, 30.207087281823956 ], [ -95.558706072431661, 30.206949281292079 ], [ -95.558257071494225, 30.206697281433311 ], [ -95.557730072196833, 30.206720281501664 ], [ -95.556728071319768, 30.206307281871723 ], [ -95.555594071206841, 30.206261281221682 ], [ -95.555252070702295, 30.206054281207944 ], [ -95.554724071276553, 30.205917281471528 ], [ -95.55417107116358, 30.205367281533476 ], [ -95.553749070655556, 30.205183281555303 ], [ -95.553472071018106, 30.205125281258614 ], [ -95.552076070279512, 30.20654828127255 ], [ -95.551719070126694, 30.206927281899674 ], [ -95.551452070468471, 30.207256282106734 ], [ -95.550560070454551, 30.208416282046564 ], [ -95.550253069986638, 30.208790282367236 ], [ -95.549898069524588, 30.2092412825798 ], [ -95.549601069638285, 30.209549281955926 ], [ -95.549100069969342, 30.209996282353053 ], [ -95.548976070011932, 30.210092282721853 ], [ -95.548733069686818, 30.210264282331387 ], [ -95.547890069857047, 30.210829283150261 ], [ -95.547640069719961, 30.211012283080585 ], [ -95.547495069572136, 30.211124282432703 ], [ -95.547365069443046, 30.211261282469732 ], [ -95.547158069388601, 30.211484283188657 ], [ -95.546958069123079, 30.211737282970212 ], [ -95.546851069582303, 30.211916282907428 ], [ -95.546775069135606, 30.212065282550491 ], [ -95.546497069215192, 30.21265528288647 ], [ -95.546400068915759, 30.212851282715871 ], [ -95.54596406957522, 30.213626282985722 ], [ -95.545821069265756, 30.213829283097176 ], [ -95.545657068949112, 30.214075283530434 ], [ -95.545549068895781, 30.214257283630243 ], [ -95.545474068710277, 30.214422283886897 ], [ -95.545442069388628, 30.214513283942356 ], [ -95.545413069143436, 30.214597283687915 ], [ -95.545183069389552, 30.215403283568193 ], [ -95.54508106884262, 30.215876283504656 ], [ -95.54446106909684, 30.215753283820199 ], [ -95.5439540690531, 30.215617284131632 ], [ -95.543803069079502, 30.215576283939036 ], [ -95.542759068410945, 30.215261283567013 ], [ -95.542621068853308, 30.215622283580757 ], [ -95.542553067965414, 30.215904283794128 ], [ -95.542531068243633, 30.216317283788097 ], [ -95.540335067581765, 30.216300284288618 ], [ -95.533357065566804, 30.216378284475553 ], [ -95.532226065994706, 30.216391284326775 ], [ -95.532126066314078, 30.219446284642419 ], [ -95.53156406519031, 30.219467285164495 ], [ -95.530216064877607, 30.219496285412522 ], [ -95.529558064908926, 30.219481285090104 ], [ -95.52824306489552, 30.219451285228558 ], [ -95.527042064973202, 30.219409285427435 ], [ -95.526680064368293, 30.219396285021826 ], [ -95.526320064741697, 30.219364285632079 ], [ -95.525990064196932, 30.219367285217107 ], [ -95.522526063353723, 30.21940728515434 ], [ -95.522558064003647, 30.225050286045072 ], [ -95.52255606348352, 30.225352286388741 ], [ -95.52254906359704, 30.22645428692022 ], [ -95.522538064084159, 30.227571286673403 ], [ -95.524437064412012, 30.227197286614548 ], [ -95.526053064720543, 30.226912286462248 ], [ -95.527376064637309, 30.226679286584968 ], [ -95.527724064802058, 30.226621287035911 ], [ -95.528370064855238, 30.22651228619624 ], [ -95.530327066059513, 30.226211286124538 ], [ -95.535822066616944, 30.225351285634392 ], [ -95.541558068102688, 30.224461285721741 ], [ -95.541883068703854, 30.224434285592174 ], [ -95.542191068917134, 30.224414285387986 ], [ -95.542383068724405, 30.224407285635767 ], [ -95.54249106905884, 30.224403285218628 ], [ -95.543232068886184, 30.224397285176966 ], [ -95.54369606901524, 30.22439428520444 ], [ -95.544566069187098, 30.224387285534018 ], [ -95.54516306954541, 30.224386285188697 ], [ -95.547362069904565, 30.22436028518867 ], [ -95.547562070172631, 30.224357285371589 ], [ -95.549185070120046, 30.224341285782504 ], [ -95.551405071226924, 30.224312285358785 ], [ -95.551965071126986, 30.224304284887992 ], [ -95.552662071090964, 30.224295284929866 ], [ -95.552773071184163, 30.224295285179711 ], [ -95.553560071281353, 30.224295284939043 ], [ -95.553682071938098, 30.224296285312381 ], [ -95.554206072051585, 30.22429328508424 ], [ -95.555353071996365, 30.22428728546101 ], [ -95.557297072923774, 30.224280285127332 ], [ -95.557437072549121, 30.224280284849186 ], [ -95.557916072414017, 30.224256284933489 ], [ -95.558178073144092, 30.224235285199779 ], [ -95.558286072728038, 30.22422728498184 ], [ -95.558613073274088, 30.224189284636143 ], [ -95.558946072526183, 30.224137285110075 ], [ -95.559292072504775, 30.224068284984785 ], [ -95.559798072839726, 30.223958284818117 ], [ -95.559975073214815, 30.22390728452087 ], [ -95.560273073421456, 30.223829285142511 ], [ -95.560578072890934, 30.223735285255685 ], [ -95.56173507324732, 30.223295284712947 ], [ -95.562544073444357, 30.222980284376419 ], [ -95.567314075151486, 30.221217283717767 ], [ -95.56813207512036, 30.220940283610283 ], [ -95.568198074685583, 30.220918284180055 ], [ -95.568135075205873, 30.218132283859322 ], [ -95.568098074871045, 30.216148283113302 ], [ -95.568097075241809, 30.21606828291246 ], [ -95.568080074809032, 30.215322283265166 ], [ -95.568088074710573, 30.214982282488798 ], [ -95.568103075096758, 30.214762282843449 ], [ -95.568163074281031, 30.214337283001317 ], [ -95.568209075285679, 30.214129282340977 ], [ -95.568326074442368, 30.213725282143642 ], [ -95.568570074432131, 30.21306328269452 ], [ -95.56863807459078, 30.212902282238868 ], [ -95.568740074888794, 30.212701282401852 ], [ -95.568895074713083, 30.212422282118876 ], [ -95.568993075348729, 30.212262282557607 ], [ -95.569062075005718, 30.212159282481274 ], [ -95.569222074894512, 30.211943282127205 ], [ -95.569510074865079, 30.211585281661396 ], [ -95.569696075530828, 30.211378282219275 ], [ -95.570058075592286, 30.211021281817089 ], [ -95.570356074890057, 30.210765281448186 ], [ -95.57066707521156, 30.210522281516283 ], [ -95.57088307561348, 30.210374281574982 ], [ -95.571164074988147, 30.210208281872529 ], [ -95.574439076123866, 30.208272280979326 ], [ -95.57813307662046, 30.206091280451545 ], [ -95.578316076587896, 30.205975281011831 ], [ -95.578411077138895, 30.205906280987858 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1322, "Tract": "48339690408", "Area_SqMi": 9.3085699885115183, "total_2009": 455, "total_2010": 507, "total_2011": 602, "total_2012": 570, "total_2013": 625, "total_2014": 651, "total_2015": 431, "total_2016": 474, "total_2017": 454, "total_2018": 480, "total_2019": 544, "total_2020": 496, "age1": 112, "age2": 246, "age3": 118, "earn1": 70, "earn2": 115, "earn3": 291, "naics_s01": 0, "naics_s02": 0, "naics_s03": 7, "naics_s04": 95, "naics_s05": 11, "naics_s06": 50, "naics_s07": 41, "naics_s08": 38, "naics_s09": 0, "naics_s10": 6, "naics_s11": 5, "naics_s12": 42, "naics_s13": 0, "naics_s14": 140, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 14, "naics_s19": 26, "naics_s20": 0, "race1": 414, "race2": 36, "race3": 6, "race4": 9, "race5": 2, "race6": 9, "ethnicity1": 347, "ethnicity2": 129, "edu1": 55, "edu2": 99, "edu3": 111, "edu4": 99, "Shape_Length": 72616.257791128693, "Shape_Area": 259506999.50294125, "total_2021": 516, "total_2022": 476 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.661311097592531, 30.191819274905363 ], [ -95.661414097098685, 30.1915402745412 ], [ -95.660308096761085, 30.191078274902107 ], [ -95.659493097104473, 30.19061527454453 ], [ -95.65872309632897, 30.190053274715694 ], [ -95.658207096238883, 30.189584274360779 ], [ -95.657545096451031, 30.188826274464699 ], [ -95.657034096344063, 30.188121274602924 ], [ -95.656607096003427, 30.187354274103097 ], [ -95.656284096212062, 30.186591273541314 ], [ -95.655580095701453, 30.185054273243832 ], [ -95.652840094944324, 30.17920927236726 ], [ -95.651498094697089, 30.176268271946508 ], [ -95.648596093034541, 30.169970270886438 ], [ -95.647131092337787, 30.166802270537385 ], [ -95.646977093170179, 30.166473269806083 ], [ -95.645837092692005, 30.16402926935675 ], [ -95.645711092371386, 30.163760270010368 ], [ -95.644254091557329, 30.160543269076303 ], [ -95.644193091339474, 30.160407269161894 ], [ -95.64412409202447, 30.160254269131698 ], [ -95.642086090780722, 30.155852268380411 ], [ -95.639463089522053, 30.150114267031828 ], [ -95.638901089368602, 30.148844267333132 ], [ -95.637430089788609, 30.145683265995697 ], [ -95.637520089207172, 30.145615265994095 ], [ -95.63731308966635, 30.145485266281881 ], [ -95.629690087338716, 30.141199265552718 ], [ -95.625944086559301, 30.139097265171998 ], [ -95.625260085958686, 30.138717265539164 ], [ -95.62513008614053, 30.138645265779349 ], [ -95.619895084154891, 30.135737264715267 ], [ -95.619850084386428, 30.135695264490138 ], [ -95.61963608432238, 30.135498264686515 ], [ -95.619607084451545, 30.135554264880689 ], [ -95.619595083948823, 30.135631264629367 ], [ -95.619601083829352, 30.13569926491731 ], [ -95.619607084719107, 30.135768265191778 ], [ -95.619595084596412, 30.135807264529767 ], [ -95.619544083956342, 30.135834265197879 ], [ -95.61950508381652, 30.135841264929887 ], [ -95.619424083796801, 30.135856264744064 ], [ -95.619146083936343, 30.135884264768951 ], [ -95.619044083711159, 30.135906265141518 ], [ -95.618924084089258, 30.135911264879436 ], [ -95.6187660843391, 30.135895264917181 ], [ -95.618678084514755, 30.135829265461322 ], [ -95.618621084251743, 30.135747265135755 ], [ -95.618608083638478, 30.135659264613988 ], [ -95.618614084536944, 30.135428264997476 ], [ -95.618595083889488, 30.135356264673099 ], [ -95.618564084047946, 30.135318264711803 ], [ -95.618361083671957, 30.13531226526019 ], [ -95.618266083461009, 30.135285264993545 ], [ -95.617981084117332, 30.135146264996159 ], [ -95.617836084008061, 30.135076265082564 ], [ -95.617634084116872, 30.135032264864623 ], [ -95.617501083550678, 30.134988264850609 ], [ -95.617431083476305, 30.134988264442232 ], [ -95.617349084160452, 30.135016264484165 ], [ -95.617248083449894, 30.135154264626966 ], [ -95.617141083670774, 30.13540126514949 ], [ -95.617077084081302, 30.135494265032335 ], [ -95.617064083561701, 30.135509265143153 ], [ -95.61697508403104, 30.135610264988845 ], [ -95.616875083599197, 30.135725264657083 ], [ -95.616742083157632, 30.135654264889901 ], [ -95.616635083683335, 30.135528264836097 ], [ -95.616489083002435, 30.135214265049051 ], [ -95.616363083672439, 30.135099264745953 ], [ -95.616242083337355, 30.135038264510733 ], [ -95.616078082912281, 30.134978264468817 ], [ -95.615894083593943, 30.134951265312626 ], [ -95.615711083066032, 30.134940265197091 ], [ -95.615458083484924, 30.134956265178026 ], [ -95.615262083209004, 30.135000264830325 ], [ -95.615200083382533, 30.135023265214283 ], [ -95.615122082833096, 30.135052265228222 ], [ -95.614740082732993, 30.135196264812983 ], [ -95.61461708341804, 30.135243264951491 ], [ -95.61445908247407, 30.135270264662473 ], [ -95.614137082775883, 30.135270265168689 ], [ -95.614023082768128, 30.135298265435956 ], [ -95.613928082764602, 30.135347264837993 ], [ -95.613637082286729, 30.135402265521897 ], [ -95.613498082752614, 30.135419265405677 ], [ -95.613163082961606, 30.135419264808458 ], [ -95.613032082342784, 30.135396264848143 ], [ -95.612967082367291, 30.135386264730805 ], [ -95.612809082898806, 30.13534226502291 ], [ -95.612536082100519, 30.135249265059379 ], [ -95.612372082213753, 30.135018265473079 ], [ -95.61229608267476, 30.134952265192826 ], [ -95.612195082000099, 30.134886265132181 ], [ -95.612100082463499, 30.134870264607699 ], [ -95.612018082160716, 30.13487526490918 ], [ -95.611930082007817, 30.13489426517593 ], [ -95.611234081811858, 30.135046264674234 ], [ -95.611107081612104, 30.135057264964164 ], [ -95.611006081705696, 30.135024264694451 ], [ -95.610886082183811, 30.134964264883877 ], [ -95.61065208165725, 30.13480426491153 ], [ -95.610538082269073, 30.134782264857826 ], [ -95.610418081825543, 30.134766264900314 ], [ -95.610285081939153, 30.134782264671486 ], [ -95.609988081621381, 30.134750265360573 ], [ -95.609855081728597, 30.134750265248012 ], [ -95.609614081190657, 30.134772264960219 ], [ -95.609520081868041, 30.134772264709721 ], [ -95.60939908146463, 30.134750265008364 ], [ -95.609305081461642, 30.134695265536138 ], [ -95.609140081596706, 30.134530265020331 ], [ -95.609039081757643, 30.134475264878049 ], [ -95.608938081671965, 30.134437264984424 ], [ -95.608748081098852, 30.134420264994954 ], [ -95.608634081455804, 30.134398265102025 ], [ -95.608387081013007, 30.134266265361813 ], [ -95.608185081004649, 30.13422326520422 ], [ -95.608090081242935, 30.1342232648873 ], [ -95.607919081361047, 30.134278264847481 ], [ -95.607610081302425, 30.134454264812035 ], [ -95.607464081551939, 30.13449826513121 ], [ -95.607401081391444, 30.134481265130013 ], [ -95.607350081400099, 30.134454264859951 ], [ -95.607312081497597, 30.134410265418161 ], [ -95.607300081235181, 30.13431626547046 ], [ -95.607312080991079, 30.134256265066618 ], [ -95.607293081558907, 30.134195265281928 ], [ -95.607249081499191, 30.134151265192006 ], [ -95.607135081344239, 30.134097265048545 ], [ -95.60700208130983, 30.134064264977599 ], [ -95.606389080825508, 30.133987264859694 ], [ -95.60628808112601, 30.133992265151704 ], [ -95.606136080302576, 30.134157264817983 ], [ -95.606130081073843, 30.134175265385238 ], [ -95.606130080827924, 30.134207265237887 ], [ -95.606256081182337, 30.134372264849432 ], [ -95.606263080611626, 30.134438265104571 ], [ -95.606237080630919, 30.134487265433211 ], [ -95.606174080278748, 30.134509265375293 ], [ -95.606098081061432, 30.134509264733481 ], [ -95.606041081251647, 30.13449326473744 ], [ -95.605978080915207, 30.134460265484776 ], [ -95.605864080992589, 30.134256265548956 ], [ -95.605794080214807, 30.134190264813675 ], [ -95.605516080826817, 30.13402026476847 ], [ -95.60546508010799, 30.133954265004256 ], [ -95.605440080237543, 30.133877264726625 ], [ -95.605453081044587, 30.133822265185795 ], [ -95.60555408097855, 30.133685265279951 ], [ -95.605554080417775, 30.133641264880261 ], [ -95.605522080846725, 30.133591264887666 ], [ -95.605440080829482, 30.133580265297347 ], [ -95.605320080994815, 30.133613265485746 ], [ -95.6047950799923, 30.133883264712033 ], [ -95.604662080252751, 30.133921265440382 ], [ -95.604536080328373, 30.133927265070163 ], [ -95.604428080172625, 30.133911264816224 ], [ -95.60420108046462, 30.133823265217433 ], [ -95.603891080559876, 30.13363626480135 ], [ -95.603758080465894, 30.133520265014237 ], [ -95.603688080221474, 30.133482264949567 ], [ -95.60366308046099, 30.133476264749735 ], [ -95.603593079975681, 30.133498265432959 ], [ -95.603543080586746, 30.133581264691628 ], [ -95.60352408016125, 30.133691265164025 ], [ -95.603499079735116, 30.1337572653383 ], [ -95.603461080266783, 30.133784265210604 ], [ -95.603397079677208, 30.133812265489677 ], [ -95.603309080309927, 30.133828264770997 ], [ -95.603157080486852, 30.133834265371785 ], [ -95.602955079892723, 30.133746265004724 ], [ -95.602891080208337, 30.133697264797171 ], [ -95.602841080024774, 30.133647265281599 ], [ -95.602518080096289, 30.133235265244718 ], [ -95.60250507942385, 30.133186265107664 ], [ -95.602626079625111, 30.132960265328094 ], [ -95.602625079399942, 30.132845265316487 ], [ -95.602587080253898, 30.132795264651655 ], [ -95.602499080251306, 30.132762264901192 ], [ -95.602069079590521, 30.132746265053644 ], [ -95.601930079807616, 30.132790264753165 ], [ -95.601867079760837, 30.132845265284434 ], [ -95.601860079937339, 30.132878265213925 ], [ -95.60187907973868, 30.132960265243064 ], [ -95.601949079360836, 30.133070264929295 ], [ -95.602113079492625, 30.133263264828756 ], [ -95.60218908001697, 30.133372265270054 ], [ -95.602227080000418, 30.133493264732962 ], [ -95.602227079514222, 30.133570265011727 ], [ -95.602208080035339, 30.133614264725018 ], [ -95.602170079587694, 30.133664265299231 ], [ -95.602139079347936, 30.133669265414941 ], [ -95.602063079853309, 30.13365826552397 ], [ -95.601816079762699, 30.133576265403466 ], [ -95.601728079646506, 30.133527264764478 ], [ -95.601633079187778, 30.133455264809669 ], [ -95.601525079913145, 30.133246265521901 ], [ -95.601456079602556, 30.13316926547132 ], [ -95.60137307990783, 30.133103265098242 ], [ -95.601310079747876, 30.133037264608074 ], [ -95.601266079024356, 30.13290526516705 ], [ -95.601228079552598, 30.132845265306134 ], [ -95.601139079772409, 30.132785264594016 ], [ -95.601057079045745, 30.132763265328816 ], [ -95.600855079060139, 30.132741265075062 ], [ -95.600735079176886, 30.132911265107698 ], [ -95.600735078995328, 30.133098264757908 ], [ -95.600583079208434, 30.133274265309634 ], [ -95.600400079442664, 30.133346265168825 ], [ -95.600336078890763, 30.133362265284749 ], [ -95.600191079206922, 30.133379264926781 ], [ -95.60012807946832, 30.133368264900206 ], [ -95.599913079505001, 30.133362265398485 ], [ -95.599691079460044, 30.133307265182918 ], [ -95.599318079492676, 30.133296265105251 ], [ -95.598964079045842, 30.133346265109978 ], [ -95.598496078715883, 30.133352265302584 ], [ -95.598325079082741, 30.1333852655893 ], [ -95.598180078295798, 30.133434264782302 ], [ -95.597965078148064, 30.13347826516182 ], [ -95.597630078881494, 30.133500265689829 ], [ -95.597503078556016, 30.133528265252437 ], [ -95.597389078695343, 30.133588264989108 ], [ -95.597345078147427, 30.133632265183294 ], [ -95.597307078216517, 30.133715265264872 ], [ -95.597307078153278, 30.133792265641837 ], [ -95.597390078317133, 30.13403926578458 ], [ -95.597402078277867, 30.13414326564444 ], [ -95.597396078692185, 30.134270265240573 ], [ -95.597371078172827, 30.134308265216571 ], [ -95.597320078381784, 30.134347265384715 ], [ -95.597162078517002, 30.134407265556167 ], [ -95.596785078036007, 30.134444265095819 ], [ -95.596764078097095, 30.13446526561745 ], [ -95.596769077953056, 30.134491265880193 ], [ -95.59684607863916, 30.134585265387589 ], [ -95.596870078178711, 30.134743265793066 ], [ -95.59690907878246, 30.13506626521081 ], [ -95.596934078222219, 30.135428265635618 ], [ -95.596937078506244, 30.135593266055618 ], [ -95.596933078588037, 30.135937266123495 ], [ -95.596898078666541, 30.136631266043686 ], [ -95.596885078347327, 30.136983266350526 ], [ -95.596883078833258, 30.137137265973127 ], [ -95.596873079006542, 30.137907266597498 ], [ -95.596855078841855, 30.138410266275841 ], [ -95.596853078655457, 30.139174266032171 ], [ -95.596867078167293, 30.139788266382087 ], [ -95.59695807888987, 30.142115267069229 ], [ -95.596997079011118, 30.143342267362982 ], [ -95.597083079207636, 30.146079268067059 ], [ -95.597119079521477, 30.147076268094786 ], [ -95.59717107952234, 30.148098268086802 ], [ -95.597181079242802, 30.148369268501945 ], [ -95.597217079535852, 30.14924026852313 ], [ -95.597262079242455, 30.150774269228688 ], [ -95.597307079493632, 30.151245269029577 ], [ -95.5973460798199, 30.151530269218593 ], [ -95.597423079343343, 30.151908269387143 ], [ -95.597491079402701, 30.15221526923095 ], [ -95.597943079785111, 30.154133269813212 ], [ -95.59798407917441, 30.154409269772209 ], [ -95.598007079842063, 30.154704269583014 ], [ -95.598042079313075, 30.155536269325356 ], [ -95.597992080200285, 30.156833269816889 ], [ -95.597931079890188, 30.157802269943488 ], [ -95.597907079792762, 30.158523270384563 ], [ -95.597974079580197, 30.162147270753422 ], [ -95.597995080303889, 30.164731271895199 ], [ -95.598005080538329, 30.16651627167176 ], [ -95.598009080695832, 30.166871271588192 ], [ -95.598012079948688, 30.167092271871653 ], [ -95.598033080204047, 30.168822272513555 ], [ -95.598233080712262, 30.169721272656169 ], [ -95.598445080196825, 30.170224272939162 ], [ -95.598940080480773, 30.171120272993072 ], [ -95.599919080636042, 30.172413272979668 ], [ -95.600445081298204, 30.173314273023948 ], [ -95.600894081121538, 30.174423273059343 ], [ -95.60093708092613, 30.174730273371047 ], [ -95.600965080870452, 30.174981273750724 ], [ -95.600980081746954, 30.175240273874671 ], [ -95.6009820814254, 30.175474273470257 ], [ -95.600979081126226, 30.175509273621817 ], [ -95.601086081831426, 30.175602273408284 ], [ -95.601534081639826, 30.176519273756004 ], [ -95.60185008135727, 30.177549274332545 ], [ -95.602140081753376, 30.177939274114912 ], [ -95.602246081593691, 30.178191273975742 ], [ -95.602140081510285, 30.178603273820908 ], [ -95.602035081443432, 30.178717273851237 ], [ -95.602088082130081, 30.17919827423195 ], [ -95.602483081744992, 30.179588274328616 ], [ -95.603327082450434, 30.180046274508914 ], [ -95.603854082685444, 30.180481274872477 ], [ -95.604276082080176, 30.18064127459186 ], [ -95.604487082768557, 30.180871274890414 ], [ -95.604618083083466, 30.181443274879804 ], [ -95.604776082705555, 30.181649275156083 ], [ -95.604592082768136, 30.182084274524822 ], [ -95.624291087672205, 30.182096274619095 ], [ -95.625496088089534, 30.18188427435058 ], [ -95.62754308897064, 30.18381427423807 ], [ -95.629670089681895, 30.185878274857831 ], [ -95.629783089251347, 30.185982274635045 ], [ -95.629887089657089, 30.186068274743022 ], [ -95.629990089219504, 30.186144274663324 ], [ -95.630191089294939, 30.186270275168837 ], [ -95.630470089097102, 30.186431275005575 ], [ -95.631203089485197, 30.186805275141424 ], [ -95.634780090594859, 30.188709274905545 ], [ -95.635451090319123, 30.189017274862078 ], [ -95.635878090787088, 30.189196274995656 ], [ -95.635968091417311, 30.189221275001078 ], [ -95.636051090842329, 30.189251275623334 ], [ -95.636269091499415, 30.189302275596663 ], [ -95.636520091226529, 30.18933527525958 ], [ -95.638124091603956, 30.189417274755844 ], [ -95.638288091940439, 30.189425275329661 ], [ -95.6401620917391, 30.189481275168106 ], [ -95.6425620927876, 30.189641275511615 ], [ -95.643072093030625, 30.189608275259058 ], [ -95.643668093083377, 30.189669274673427 ], [ -95.644396093599696, 30.18973627540856 ], [ -95.645878093856581, 30.189853275086175 ], [ -95.648379093658392, 30.190125274915985 ], [ -95.652193094742159, 30.190539275094061 ], [ -95.652592095580928, 30.190587275326852 ], [ -95.653148095077725, 30.190648274526119 ], [ -95.655255096138347, 30.190859275036097 ], [ -95.655882096140076, 30.190923274511412 ], [ -95.65648409666224, 30.190984274714499 ], [ -95.656988096403282, 30.191044274776011 ], [ -95.658900096850687, 30.191269274480156 ], [ -95.660594097130314, 30.191498275122182 ], [ -95.660795097538596, 30.191542274747015 ], [ -95.660948097449662, 30.191595274766872 ], [ -95.661084097332093, 30.191656274672283 ], [ -95.661161097513357, 30.191699274969306 ], [ -95.661233097863033, 30.191748274411268 ], [ -95.661311097592531, 30.191819274905363 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1323, "Tract": "48201253800", "Area_SqMi": 2.9158495227831294, "total_2009": 815, "total_2010": 865, "total_2011": 880, "total_2012": 1012, "total_2013": 910, "total_2014": 1550, "total_2015": 1220, "total_2016": 1391, "total_2017": 1070, "total_2018": 1169, "total_2019": 1247, "total_2020": 1143, "age1": 209, "age2": 596, "age3": 265, "earn1": 129, "earn2": 253, "earn3": 688, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 159, "naics_s05": 13, "naics_s06": 29, "naics_s07": 81, "naics_s08": 0, "naics_s09": 0, "naics_s10": 14, "naics_s11": 27, "naics_s12": 10, "naics_s13": 0, "naics_s14": 40, "naics_s15": 0, "naics_s16": 100, "naics_s17": 0, "naics_s18": 15, "naics_s19": 151, "naics_s20": 431, "race1": 868, "race2": 152, "race3": 10, "race4": 21, "race5": 1, "race6": 18, "ethnicity1": 721, "ethnicity2": 349, "edu1": 166, "edu2": 251, "edu3": 306, "edu4": 138, "Shape_Length": 44041.289971444181, "Shape_Area": 81288894.168859348, "total_2021": 1090, "total_2022": 1070 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.96411290043568, 29.778320214522182 ], [ -94.964102899815572, 29.777669214109558 ], [ -94.96407190035896, 29.777324214269239 ], [ -94.964077899499173, 29.776020213663976 ], [ -94.964080899577098, 29.775138213855449 ], [ -94.964088899961212, 29.773415213349665 ], [ -94.96406889951794, 29.772479213620077 ], [ -94.964057899461068, 29.77184321305101 ], [ -94.964058899945172, 29.771306212773005 ], [ -94.964058899328862, 29.771176213488047 ], [ -94.964039899820207, 29.770655212601469 ], [ -94.96403489996456, 29.770398213174555 ], [ -94.964047899070181, 29.769909213068363 ], [ -94.964049899947554, 29.76977421310492 ], [ -94.964017899154797, 29.769694212921632 ], [ -94.96400789989427, 29.767173212543145 ], [ -94.964007899803804, 29.767062211861955 ], [ -94.963995898808022, 29.76415321175006 ], [ -94.963999898972489, 29.763311211872661 ], [ -94.964017899102345, 29.761818210925551 ], [ -94.964026898750348, 29.761500210850532 ], [ -94.96402189939684, 29.761276210576554 ], [ -94.964020899152715, 29.761188211026834 ], [ -94.964020898752111, 29.760983211130256 ], [ -94.96402089961947, 29.760773210821977 ], [ -94.963948898568134, 29.759220210671678 ], [ -94.963935899390464, 29.758910210663728 ], [ -94.963931899143915, 29.758804210634615 ], [ -94.963931898930412, 29.758566210758698 ], [ -94.963930899071173, 29.758267210393672 ], [ -94.963930899036896, 29.75780621008748 ], [ -94.96393089918368, 29.757653210457292 ], [ -94.963907899242685, 29.757138210450911 ], [ -94.963897899296597, 29.75689621057629 ], [ -94.963893898517739, 29.756805209992393 ], [ -94.963895898652964, 29.756611209870901 ], [ -94.963898899249926, 29.756343210010165 ], [ -94.963899899086613, 29.756251209924613 ], [ -94.96388489848205, 29.755764209964113 ], [ -94.963866899256146, 29.755250209813415 ], [ -94.963865899301766, 29.754948210157323 ], [ -94.963865899327672, 29.754681209422635 ], [ -94.963852899163086, 29.754255209234483 ], [ -94.963850898295433, 29.754070209135268 ], [ -94.963844898404957, 29.753529209032756 ], [ -94.963163898348697, 29.753650209918337 ], [ -94.962786898014983, 29.753714209713923 ], [ -94.962474898868734, 29.75376420997679 ], [ -94.961909898402766, 29.753851210013021 ], [ -94.96170389819352, 29.753881209299443 ], [ -94.96017889800423, 29.754118209911081 ], [ -94.958892897199192, 29.754326209414362 ], [ -94.957448896917938, 29.754537209523512 ], [ -94.955957897178109, 29.754778210143463 ], [ -94.954078895922322, 29.755043209648829 ], [ -94.953169895728252, 29.755198210276216 ], [ -94.952979895612884, 29.755230209788355 ], [ -94.951649895824602, 29.75545521006169 ], [ -94.949991894803517, 29.755734210764942 ], [ -94.949803895712947, 29.75575521004377 ], [ -94.949177895131214, 29.755827210096552 ], [ -94.948417894383368, 29.755935210289433 ], [ -94.947910895255134, 29.756016210708882 ], [ -94.947298894521012, 29.756112210473034 ], [ -94.94524389445435, 29.756436210907172 ], [ -94.944527894142382, 29.756566210715352 ], [ -94.943941894228175, 29.756687211045755 ], [ -94.943248893157232, 29.75685421092372 ], [ -94.943084893362723, 29.756908210801502 ], [ -94.942596893066295, 29.757038210505971 ], [ -94.942346893826496, 29.757137211173596 ], [ -94.941992893203917, 29.757188210617986 ], [ -94.940355893273193, 29.757426211038396 ], [ -94.939939893160016, 29.757509211311895 ], [ -94.939013892268363, 29.757678210694252 ], [ -94.937727892122965, 29.7578912114 ], [ -94.937077892211207, 29.757984211003212 ], [ -94.936116891868906, 29.758085210915631 ], [ -94.934157891603078, 29.758401211318628 ], [ -94.933660891045662, 29.758449211703468 ], [ -94.933372890674775, 29.758493211787094 ], [ -94.932763890481553, 29.758585211567848 ], [ -94.932398890720833, 29.758640211569038 ], [ -94.931537890550146, 29.758769211884729 ], [ -94.931392890449146, 29.7587912114323 ], [ -94.930769890741274, 29.758886211302489 ], [ -94.930453890146467, 29.758929211233799 ], [ -94.930159890080247, 29.75895321168387 ], [ -94.928446889873072, 29.75923621150994 ], [ -94.928161889510477, 29.759283212179295 ], [ -94.927736889280652, 29.75929821206671 ], [ -94.927622889432953, 29.759284211681923 ], [ -94.927533889934821, 29.759223212270722 ], [ -94.927444889999023, 29.759112211448688 ], [ -94.926903889315454, 29.758507211535015 ], [ -94.926808889928836, 29.758562211517795 ], [ -94.926763889851983, 29.758593211719756 ], [ -94.926444889379084, 29.758802211652544 ], [ -94.925284888747626, 29.759568212287771 ], [ -94.924892888595139, 29.759960211892846 ], [ -94.92468788871534, 29.760165211798604 ], [ -94.924633888643044, 29.76023521209628 ], [ -94.924571888572032, 29.760316212254523 ], [ -94.923661888590971, 29.761882212093454 ], [ -94.922848888900091, 29.763348212743914 ], [ -94.922594888438582, 29.76376421295431 ], [ -94.922394888351732, 29.764101212588592 ], [ -94.922370888162277, 29.764140212622717 ], [ -94.922194888903448, 29.764471213051721 ], [ -94.922005888842804, 29.764776212946828 ], [ -94.9217388880747, 29.765105213200297 ], [ -94.92151888796036, 29.765368213189269 ], [ -94.921401888726621, 29.765493213048714 ], [ -94.921231888653679, 29.765674213015302 ], [ -94.918637887688163, 29.768171213906296 ], [ -94.918844887487595, 29.768151213603748 ], [ -94.918964887479987, 29.768228213864589 ], [ -94.919134887548367, 29.768272213613511 ], [ -94.919323888365653, 29.76827221436271 ], [ -94.920030887943682, 29.768101214111489 ], [ -94.926233890144459, 29.767022213448218 ], [ -94.926754890207093, 29.76700821368442 ], [ -94.927177890281072, 29.767029213900134 ], [ -94.927896889759424, 29.767136213714888 ], [ -94.928235889678092, 29.767203213613332 ], [ -94.928552890588008, 29.76727121342762 ], [ -94.928758890382468, 29.767319213443802 ], [ -94.929093890507531, 29.767338213546914 ], [ -94.929311890227282, 29.767350213427818 ], [ -94.92969289098707, 29.767324213106242 ], [ -94.930067890221338, 29.767262213563839 ], [ -94.930228890536483, 29.76722621334417 ], [ -94.930600891264802, 29.767166212989402 ], [ -94.931137890511295, 29.767079213246674 ], [ -94.931613891367121, 29.767003213049218 ], [ -94.931874890750336, 29.76696721284425 ], [ -94.932759891176914, 29.76681221310978 ], [ -94.933405891680351, 29.766706213514347 ], [ -94.933757891951132, 29.766661212813162 ], [ -94.934979892077621, 29.766505213424598 ], [ -94.936966892363671, 29.76619821263187 ], [ -94.938048892211597, 29.766026213230127 ], [ -94.939481893356501, 29.765800212849808 ], [ -94.940532893678196, 29.770129213537167 ], [ -94.940664893151592, 29.770707213451153 ], [ -94.940683893301966, 29.770788213454509 ], [ -94.940766893962746, 29.77111121394519 ], [ -94.940811893283694, 29.771270213843177 ], [ -94.940832893504293, 29.771393213596369 ], [ -94.940848893710537, 29.771492214239156 ], [ -94.940857893933511, 29.771521214001137 ], [ -94.941117893942007, 29.772326214245773 ], [ -94.94113989360342, 29.772383214505012 ], [ -94.941178893794287, 29.772482213886473 ], [ -94.941198894130821, 29.77263121376582 ], [ -94.941244893592128, 29.772772214440685 ], [ -94.941450893708392, 29.773457214645934 ], [ -94.941782894034006, 29.77448421477882 ], [ -94.941861894239253, 29.774732214333167 ], [ -94.941874894164854, 29.77477321467784 ], [ -94.941907893849063, 29.774901215001936 ], [ -94.942102894498106, 29.775563214550804 ], [ -94.942142893844704, 29.77572121456873 ], [ -94.942210894170259, 29.775709214835466 ], [ -94.942317894397817, 29.77585321490805 ], [ -94.943059894412869, 29.776761214695153 ], [ -94.943276894761354, 29.777028215254575 ], [ -94.943593895002465, 29.777423214739837 ], [ -94.94421689463779, 29.778188215392635 ], [ -94.944874895373729, 29.77899821504554 ], [ -94.945509894696357, 29.779775215785875 ], [ -94.945944894952291, 29.780318215605892 ], [ -94.946232894967594, 29.78066521595925 ], [ -94.946583895113037, 29.781104215645779 ], [ -94.947585895686998, 29.780944215339883 ], [ -94.948136895751091, 29.780856215305167 ], [ -94.949256895953781, 29.780679215191213 ], [ -94.949503896485709, 29.780639215235087 ], [ -94.949817896781695, 29.780589215781664 ], [ -94.950844896454498, 29.780431215323187 ], [ -94.951454896918861, 29.780335215639273 ], [ -94.951830896431403, 29.780269215151463 ], [ -94.95234589708862, 29.780188215606174 ], [ -94.952538897122082, 29.780157215499781 ], [ -94.952906896824643, 29.78009921539083 ], [ -94.953023896890031, 29.780081214989174 ], [ -94.953914897648971, 29.779942214921412 ], [ -94.954017897889784, 29.779926214906478 ], [ -94.954132897789364, 29.779909214814104 ], [ -94.954779897722332, 29.779812215561368 ], [ -94.954867897245478, 29.779799215175533 ], [ -94.954934897508039, 29.779791215048103 ], [ -94.955049898100469, 29.77977421510143 ], [ -94.955152897610219, 29.779759215370248 ], [ -94.955386898015874, 29.779723215111932 ], [ -94.955532898236072, 29.779699215039219 ], [ -94.955704897578343, 29.77966221509331 ], [ -94.955817897887627, 29.779650215037947 ], [ -94.956038897918845, 29.77960421499213 ], [ -94.956110898120954, 29.779600215461571 ], [ -94.956293897611957, 29.779576215228321 ], [ -94.960233899256068, 29.778900214720423 ], [ -94.960558898596688, 29.778840215101184 ], [ -94.960992898712405, 29.778767215004958 ], [ -94.961175899665349, 29.778731214989321 ], [ -94.961526899384594, 29.77867221512625 ], [ -94.961708898938554, 29.778641214422418 ], [ -94.961722899004528, 29.778639215087615 ], [ -94.961788898978511, 29.778628214942298 ], [ -94.961920898883747, 29.778606214554024 ], [ -94.961960899772208, 29.77860021491535 ], [ -94.962944899289738, 29.778453214878702 ], [ -94.96411290043568, 29.778320214522182 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1324, "Tract": "48201253900", "Area_SqMi": 1.7565561008786394, "total_2009": 540, "total_2010": 598, "total_2011": 626, "total_2012": 697, "total_2013": 772, "total_2014": 803, "total_2015": 946, "total_2016": 789, "total_2017": 727, "total_2018": 743, "total_2019": 675, "total_2020": 834, "age1": 153, "age2": 375, "age3": 184, "earn1": 141, "earn2": 248, "earn3": 323, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 102, "naics_s05": 13, "naics_s06": 7, "naics_s07": 166, "naics_s08": 38, "naics_s09": 0, "naics_s10": 18, "naics_s11": 22, "naics_s12": 15, "naics_s13": 0, "naics_s14": 48, "naics_s15": 9, "naics_s16": 202, "naics_s17": 3, "naics_s18": 57, "naics_s19": 12, "naics_s20": 0, "race1": 511, "race2": 141, "race3": 7, "race4": 40, "race5": 1, "race6": 12, "ethnicity1": 498, "ethnicity2": 214, "edu1": 129, "edu2": 152, "edu3": 190, "edu4": 88, "Shape_Length": 41637.624172017153, "Shape_Area": 48969777.716683649, "total_2021": 774, "total_2022": 712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.953889895901241, 29.739861207263985 ], [ -94.953717895124925, 29.739820206916239 ], [ -94.953148894933037, 29.739685207078608 ], [ -94.952685895613712, 29.739567207337828 ], [ -94.952641895529226, 29.739559207308389 ], [ -94.951857895468876, 29.739323206566521 ], [ -94.950797895030803, 29.739108206918456 ], [ -94.949804894338641, 29.738909206743724 ], [ -94.948835894658259, 29.738720207308393 ], [ -94.948251893664803, 29.738589206764406 ], [ -94.948060893928485, 29.738589207244665 ], [ -94.947711894025687, 29.738651207342869 ], [ -94.947554894181081, 29.738700206601091 ], [ -94.947149894112471, 29.738837206715413 ], [ -94.946280893184962, 29.739172207111604 ], [ -94.945382892997358, 29.739527207356659 ], [ -94.944439893191969, 29.739697206790694 ], [ -94.943549893406171, 29.739818207422534 ], [ -94.942646892605524, 29.73996520751675 ], [ -94.941754892003516, 29.740120207580457 ], [ -94.93966889154531, 29.74047020754977 ], [ -94.939103891909355, 29.740427207208853 ], [ -94.938994892037002, 29.740419207493805 ], [ -94.938304891894205, 29.740477207261105 ], [ -94.938140891743956, 29.740492207684323 ], [ -94.933859890237201, 29.741186208003704 ], [ -94.933722890102956, 29.740685207816284 ], [ -94.93369989042715, 29.740566208172435 ], [ -94.933696890488164, 29.740530208041257 ], [ -94.93279789013792, 29.740691208175221 ], [ -94.931938890031361, 29.740779207459187 ], [ -94.93089188942028, 29.74091220815151 ], [ -94.929085889252164, 29.741135208231665 ], [ -94.928602889431971, 29.741161207801245 ], [ -94.928739889120351, 29.742273208563994 ], [ -94.928897889026928, 29.743542208944216 ], [ -94.929282889919094, 29.744638209151407 ], [ -94.929588889141982, 29.74550620925914 ], [ -94.929961890059289, 29.746564209405641 ], [ -94.9299768898873, 29.746704208996579 ], [ -94.930007889252877, 29.746980209410893 ], [ -94.930024889734298, 29.747124209496846 ], [ -94.930040890115563, 29.74726420965942 ], [ -94.930101890020936, 29.74781320982364 ], [ -94.930107889375407, 29.747861209706162 ], [ -94.929902889451995, 29.749457209925321 ], [ -94.929832889333127, 29.750005210019079 ], [ -94.929799889557586, 29.750102209733946 ], [ -94.929700890254807, 29.750394210010231 ], [ -94.929668890082809, 29.750492209646502 ], [ -94.929660890052588, 29.75051620986547 ], [ -94.929652889973809, 29.75052620975671 ], [ -94.929586890048057, 29.750619209559336 ], [ -94.929565889889389, 29.750651209751592 ], [ -94.929393889952792, 29.750894209704668 ], [ -94.929338890224813, 29.750938210258589 ], [ -94.928803889836857, 29.751380210482402 ], [ -94.92841989004819, 29.751520209808525 ], [ -94.928074889771693, 29.751647209815346 ], [ -94.928014889280064, 29.751668210272225 ], [ -94.92783788888859, 29.751733210281447 ], [ -94.927778889179592, 29.751755210641367 ], [ -94.927653889473547, 29.751801210312408 ], [ -94.927613889125766, 29.751816210176319 ], [ -94.927571889486998, 29.751830210362883 ], [ -94.9269458891916, 29.752040210273716 ], [ -94.926737889203821, 29.752111210602745 ], [ -94.926590889055404, 29.752160210217355 ], [ -94.926151888996571, 29.752308210544125 ], [ -94.926005889117548, 29.75235821043767 ], [ -94.925982888653394, 29.752365210837546 ], [ -94.925947889321279, 29.752378210061721 ], [ -94.925927888726903, 29.752404210433127 ], [ -94.925913889044608, 29.752423210758604 ], [ -94.92492088880239, 29.753753210411642 ], [ -94.924269888547471, 29.754628211096225 ], [ -94.923408887932965, 29.755268211435634 ], [ -94.922608887779219, 29.755473211477053 ], [ -94.921651888097529, 29.755562211387701 ], [ -94.920632887585242, 29.755408211623184 ], [ -94.920294887975913, 29.755358210848058 ], [ -94.919557887708663, 29.755279210920026 ], [ -94.919002887074271, 29.755437211614826 ], [ -94.918934887047371, 29.755456211236872 ], [ -94.918842887198181, 29.755483211468569 ], [ -94.918774887507766, 29.755573211256984 ], [ -94.918733887709479, 29.755630211649098 ], [ -94.918718887058645, 29.75566221153133 ], [ -94.918655886929827, 29.755735211595113 ], [ -94.918636886718005, 29.755762210993733 ], [ -94.918490887227065, 29.75595921113155 ], [ -94.918374886930494, 29.756117211220353 ], [ -94.918387887142259, 29.756657211160924 ], [ -94.918394886691743, 29.756903211402008 ], [ -94.918396886881681, 29.757008211749366 ], [ -94.918405887654032, 29.757325211749798 ], [ -94.91840888767598, 29.757431212131184 ], [ -94.918473886722154, 29.757737212256544 ], [ -94.918670887592299, 29.75865621214545 ], [ -94.918736887001685, 29.758963212051011 ], [ -94.918745887406416, 29.759011211767692 ], [ -94.918760887746458, 29.759083212335643 ], [ -94.918774887606631, 29.759155212216072 ], [ -94.918784887879625, 29.759204211970808 ], [ -94.918792887516389, 29.759233211948565 ], [ -94.918750887029006, 29.75930621254312 ], [ -94.918687887248538, 29.759417212508701 ], [ -94.918624887003318, 29.759527212149187 ], [ -94.918582887671562, 29.759601212106826 ], [ -94.918508887159859, 29.759713212097392 ], [ -94.918477887064327, 29.759777212046057 ], [ -94.918307887187396, 29.760063211892376 ], [ -94.918238887643241, 29.760178212364341 ], [ -94.918095887450662, 29.760411212453352 ], [ -94.918029887402369, 29.760521212514668 ], [ -94.917789886718481, 29.761043212943353 ], [ -94.917794887168697, 29.761161212573509 ], [ -94.917807886789291, 29.76143521277692 ], [ -94.917807886994325, 29.761445212891772 ], [ -94.917808887491617, 29.761476212384231 ], [ -94.917809887543001, 29.761487212548705 ], [ -94.917810887723647, 29.761514212710001 ], [ -94.917813887591137, 29.761596212550668 ], [ -94.917815887621543, 29.76162421276079 ], [ -94.91782588771369, 29.761670212612231 ], [ -94.917858887237614, 29.761810212916959 ], [ -94.917869887217819, 29.761857212812053 ], [ -94.917884887786613, 29.761924212928765 ], [ -94.917908887760774, 29.762027212980588 ], [ -94.917931887608688, 29.762128212685152 ], [ -94.91794788707918, 29.762196212806892 ], [ -94.917968887714053, 29.76228721287313 ], [ -94.917975886995023, 29.76230121248226 ], [ -94.918116887557375, 29.762599212559874 ], [ -94.918175887029108, 29.762693212771339 ], [ -94.918357887356279, 29.763044212551666 ], [ -94.918598887028324, 29.76350721343119 ], [ -94.918910888034461, 29.764096213446891 ], [ -94.919096888073611, 29.764446213405911 ], [ -94.919157887566712, 29.764555213196672 ], [ -94.919174888135686, 29.764585213062826 ], [ -94.919210887749941, 29.764928213054812 ], [ -94.919164887699026, 29.765045213482868 ], [ -94.919152887546119, 29.765071213694064 ], [ -94.919136887481642, 29.765113213024247 ], [ -94.919119887805081, 29.765152213567024 ], [ -94.919109887454525, 29.765180212949954 ], [ -94.919022888063054, 29.765394213267665 ], [ -94.918966887697692, 29.765444213465667 ], [ -94.918518887553034, 29.765858213736067 ], [ -94.918262888036338, 29.766029213845432 ], [ -94.918008887804376, 29.766200213904661 ], [ -94.917768887331874, 29.7663602135333 ], [ -94.917050886925253, 29.766841213411386 ], [ -94.917041886843293, 29.7668482137681 ], [ -94.91677788677957, 29.766929213853594 ], [ -94.916663886939773, 29.766964213622188 ], [ -94.916281886753055, 29.76691321338151 ], [ -94.916222887118181, 29.766906213407445 ], [ -94.91616288709433, 29.766880213696105 ], [ -94.915763887175487, 29.766705213328873 ], [ -94.915274886604607, 29.76649121333261 ], [ -94.914667887133035, 29.766265213436611 ], [ -94.914544886518357, 29.766250213610892 ], [ -94.914163886560615, 29.7662072137786 ], [ -94.91411488616825, 29.766221214023378 ], [ -94.91381988609696, 29.766305213586104 ], [ -94.91344188609429, 29.76671121384674 ], [ -94.913415886862467, 29.766804213549708 ], [ -94.913352886199533, 29.767035214145537 ], [ -94.913252886599011, 29.76740721378242 ], [ -94.913378886187601, 29.768105213921558 ], [ -94.913693886640971, 29.768686213925076 ], [ -94.914260886416713, 29.769151214358317 ], [ -94.914399886868324, 29.769200214277088 ], [ -94.914732886348517, 29.769318214203462 ], [ -94.915079886551453, 29.769441214479212 ], [ -94.915298886821049, 29.769535214697534 ], [ -94.915318886682059, 29.769544214802078 ], [ -94.91538088653131, 29.769571214682276 ], [ -94.915401887045931, 29.769580214582405 ], [ -94.915657886997138, 29.769689214158053 ], [ -94.915913886726869, 29.769799214400759 ], [ -94.916026887599386, 29.769844214358216 ], [ -94.916533887522661, 29.770030214405462 ], [ -94.916624887430117, 29.770276214361946 ], [ -94.916726887809205, 29.770184214831577 ], [ -94.916831887122498, 29.770109214765331 ], [ -94.917028887225868, 29.769821213983391 ], [ -94.917481887457697, 29.769354214229843 ], [ -94.918476887961972, 29.768328214348838 ], [ -94.918567888227386, 29.768239214179115 ], [ -94.918637887688163, 29.768171213906296 ], [ -94.921231888653679, 29.765674213015302 ], [ -94.921401888726621, 29.765493213048714 ], [ -94.92151888796036, 29.765368213189269 ], [ -94.9217388880747, 29.765105213200297 ], [ -94.922005888842804, 29.764776212946828 ], [ -94.922194888903448, 29.764471213051721 ], [ -94.922370888162277, 29.764140212622717 ], [ -94.922394888351732, 29.764101212588592 ], [ -94.922594888438582, 29.76376421295431 ], [ -94.922848888900091, 29.763348212743914 ], [ -94.923661888590971, 29.761882212093454 ], [ -94.924571888572032, 29.760316212254523 ], [ -94.924633888643044, 29.76023521209628 ], [ -94.92468788871534, 29.760165211798604 ], [ -94.924892888595139, 29.759960211892846 ], [ -94.925284888747626, 29.759568212287771 ], [ -94.926444889379084, 29.758802211652544 ], [ -94.926763889851983, 29.758593211719756 ], [ -94.926808889928836, 29.758562211517795 ], [ -94.926903889315454, 29.758507211535015 ], [ -94.927444889999023, 29.759112211448688 ], [ -94.927533889934821, 29.759223212270722 ], [ -94.927622889432953, 29.759284211681923 ], [ -94.927736889280652, 29.75929821206671 ], [ -94.928161889510477, 29.759283212179295 ], [ -94.928446889873072, 29.75923621150994 ], [ -94.930159890080247, 29.75895321168387 ], [ -94.930453890146467, 29.758929211233799 ], [ -94.930769890741274, 29.758886211302489 ], [ -94.931392890449146, 29.7587912114323 ], [ -94.931537890550146, 29.758769211884729 ], [ -94.932398890720833, 29.758640211569038 ], [ -94.932763890481553, 29.758585211567848 ], [ -94.933372890674775, 29.758493211787094 ], [ -94.933660891045662, 29.758449211703468 ], [ -94.934157891603078, 29.758401211318628 ], [ -94.936116891868906, 29.758085210915631 ], [ -94.937077892211207, 29.757984211003212 ], [ -94.937727892122965, 29.7578912114 ], [ -94.939013892268363, 29.757678210694252 ], [ -94.939939893160016, 29.757509211311895 ], [ -94.940355893273193, 29.757426211038396 ], [ -94.940859892740264, 29.757193210726818 ], [ -94.941245892862824, 29.756995210513296 ], [ -94.941505893367264, 29.756855211018387 ], [ -94.941777893370357, 29.756703210980401 ], [ -94.942172893363733, 29.756362211132366 ], [ -94.942429893596142, 29.756119210696561 ], [ -94.942613893186021, 29.755869210744216 ], [ -94.942727893487188, 29.755672210670188 ], [ -94.942886893592913, 29.75533921039063 ], [ -94.942918893081384, 29.755288210184826 ], [ -94.942966892956221, 29.755219210145636 ], [ -94.943006893586798, 29.755142210308733 ], [ -94.943172893039957, 29.754823210645171 ], [ -94.943662893920731, 29.753392210241067 ], [ -94.943783893601832, 29.753036210253782 ], [ -94.944192893608587, 29.752115210118038 ], [ -94.944547893339745, 29.751534210067891 ], [ -94.94490289385601, 29.751001209765132 ], [ -94.945241893519167, 29.750593209333687 ], [ -94.945974893503234, 29.749695209151287 ], [ -94.946500894377081, 29.749071209164107 ], [ -94.947017894335985, 29.748442208856794 ], [ -94.947444893791598, 29.747925209005349 ], [ -94.94778289483402, 29.747538208711063 ], [ -94.947954894254948, 29.747330208737555 ], [ -94.94819789435995, 29.747023208864515 ], [ -94.948576894088873, 29.746580208791457 ], [ -94.949548894439801, 29.745400208499586 ], [ -94.949649894323656, 29.745288207826491 ], [ -94.950103895076097, 29.74477820837371 ], [ -94.95055089534624, 29.744237207536152 ], [ -94.95100789534176, 29.743669207538755 ], [ -94.95136589474653, 29.74324220786939 ], [ -94.951631895460864, 29.74292920758322 ], [ -94.951876894705578, 29.742626207770755 ], [ -94.952161895624087, 29.74227420741197 ], [ -94.952405895499155, 29.741988207361491 ], [ -94.952689895230918, 29.741631207694834 ], [ -94.953056895436887, 29.741124207033423 ], [ -94.953158895948178, 29.740991207479688 ], [ -94.953588895558653, 29.740362206968157 ], [ -94.953889895901241, 29.739861207263985 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1325, "Tract": "48201254000", "Area_SqMi": 1.0531272654145312, "total_2009": 118, "total_2010": 100, "total_2011": 159, "total_2012": 141, "total_2013": 151, "total_2014": 151, "total_2015": 157, "total_2016": 161, "total_2017": 148, "total_2018": 154, "total_2019": 106, "total_2020": 115, "age1": 24, "age2": 66, "age3": 19, "earn1": 25, "earn2": 42, "earn3": 42, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 4, "naics_s06": 0, "naics_s07": 58, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 14, "naics_s12": 0, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 20, "naics_s17": 0, "naics_s18": 9, "naics_s19": 0, "naics_s20": 0, "race1": 81, "race2": 14, "race3": 1, "race4": 11, "race5": 0, "race6": 2, "ethnicity1": 68, "ethnicity2": 41, "edu1": 22, "edu2": 20, "edu3": 23, "edu4": 20, "Shape_Length": 24072.046711723895, "Shape_Area": 29359385.71442847, "total_2021": 103, "total_2022": 109 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.957422896660489, 29.732284205203815 ], [ -94.957201896074125, 29.732220205120498 ], [ -94.956145895924465, 29.731922204972498 ], [ -94.955989895442073, 29.731877205120995 ], [ -94.953225894965172, 29.731070205455904 ], [ -94.951483894051293, 29.73055820486459 ], [ -94.946368893076794, 29.729055204882119 ], [ -94.944860892801884, 29.728610204484966 ], [ -94.942395892491547, 29.727869205227776 ], [ -94.942222891882494, 29.727817204581235 ], [ -94.941847891856725, 29.727769204752988 ], [ -94.941719892098178, 29.72775220458206 ], [ -94.941509891956457, 29.72772520487695 ], [ -94.941483891387293, 29.727721204936348 ], [ -94.941454892350507, 29.727730204492339 ], [ -94.941413891496978, 29.727654204430742 ], [ -94.940685891415626, 29.727382204662938 ], [ -94.940280891176485, 29.727298204463832 ], [ -94.939798890931385, 29.727127204912435 ], [ -94.939189891384018, 29.726850205012493 ], [ -94.939169891536466, 29.726877204886993 ], [ -94.939111890859039, 29.72696120456181 ], [ -94.939092891683174, 29.726989205257468 ], [ -94.939058891397252, 29.727036205225314 ], [ -94.93895889134636, 29.727180205208768 ], [ -94.938925890652641, 29.727228205041914 ], [ -94.938487890726876, 29.727853205163612 ], [ -94.937612891401301, 29.729107205683306 ], [ -94.937156890572382, 29.729716205425124 ], [ -94.936700890946184, 29.730328205472858 ], [ -94.936180890219305, 29.731024205513414 ], [ -94.935710890858573, 29.731569206299305 ], [ -94.934833890766299, 29.73258920565647 ], [ -94.932323889527197, 29.733889206875965 ], [ -94.931955889822106, 29.734357206513184 ], [ -94.931066889400086, 29.735488206992233 ], [ -94.93094788967025, 29.735580206945944 ], [ -94.930284889561108, 29.736091206655004 ], [ -94.929025888923945, 29.73706220688711 ], [ -94.928663889406508, 29.737909207497374 ], [ -94.928336889112828, 29.738680207485828 ], [ -94.928303888463702, 29.738758207947789 ], [ -94.928319888800047, 29.738892207942282 ], [ -94.928401888642824, 29.739550207333888 ], [ -94.928429888867484, 29.73976920800375 ], [ -94.928439889417106, 29.739848207636989 ], [ -94.928469889295528, 29.740088208221536 ], [ -94.928479888725377, 29.740169207475045 ], [ -94.928481888793286, 29.740189208050516 ], [ -94.928488889240882, 29.740251208246164 ], [ -94.928491889091234, 29.740272207895405 ], [ -94.928513888985989, 29.740449208275056 ], [ -94.928579889442474, 29.740983208397278 ], [ -94.928602889431971, 29.741161207801245 ], [ -94.929085889252164, 29.741135208231665 ], [ -94.93089188942028, 29.74091220815151 ], [ -94.931938890031361, 29.740779207459187 ], [ -94.93279789013792, 29.740691208175221 ], [ -94.933696890488164, 29.740530208041257 ], [ -94.93369989042715, 29.740566208172435 ], [ -94.933722890102956, 29.740685207816284 ], [ -94.933859890237201, 29.741186208003704 ], [ -94.938140891743956, 29.740492207684323 ], [ -94.938304891894205, 29.740477207261105 ], [ -94.938994892037002, 29.740419207493805 ], [ -94.939103891909355, 29.740427207208853 ], [ -94.93966889154531, 29.74047020754977 ], [ -94.941754892003516, 29.740120207580457 ], [ -94.942646892605524, 29.73996520751675 ], [ -94.943549893406171, 29.739818207422534 ], [ -94.944439893191969, 29.739697206790694 ], [ -94.945382892997358, 29.739527207356659 ], [ -94.946280893184962, 29.739172207111604 ], [ -94.947149894112471, 29.738837206715413 ], [ -94.947554894181081, 29.738700206601091 ], [ -94.947711894025687, 29.738651207342869 ], [ -94.948060893928485, 29.738589207244665 ], [ -94.948251893664803, 29.738589206764406 ], [ -94.948835894658259, 29.738720207308393 ], [ -94.949804894338641, 29.738909206743724 ], [ -94.950797895030803, 29.739108206918456 ], [ -94.951857895468876, 29.739323206566521 ], [ -94.952641895529226, 29.739559207308389 ], [ -94.952685895613712, 29.739567207337828 ], [ -94.953148894933037, 29.739685207078608 ], [ -94.953717895124925, 29.739820206916239 ], [ -94.953889895901241, 29.739861207263985 ], [ -94.95397589557102, 29.739768207045142 ], [ -94.954288895408268, 29.739284207087373 ], [ -94.954558896145798, 29.738785206417852 ], [ -94.95465089591309, 29.738605206701489 ], [ -94.954859895302903, 29.738150206252833 ], [ -94.954942895998386, 29.737971206598534 ], [ -94.955135895523952, 29.737527206794621 ], [ -94.955204896003153, 29.737370206506807 ], [ -94.95543189550321, 29.736860206211368 ], [ -94.955518896189886, 29.736666206356105 ], [ -94.955695896276211, 29.736241206401541 ], [ -94.955963895468813, 29.735586205745346 ], [ -94.956014895613677, 29.735460205548442 ], [ -94.956039896199002, 29.735398205536434 ], [ -94.956253896160391, 29.734925206231235 ], [ -94.956520895751794, 29.734294205301644 ], [ -94.956579896258489, 29.734179205693582 ], [ -94.956845896109371, 29.733608205944325 ], [ -94.956922895710136, 29.733434205863663 ], [ -94.956966896236679, 29.733336205830341 ], [ -94.957140896353195, 29.732946205266366 ], [ -94.957422896660489, 29.732284205203815 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1326, "Tract": "48201254100", "Area_SqMi": 1.2452388007003303, "total_2009": 1255, "total_2010": 1116, "total_2011": 914, "total_2012": 907, "total_2013": 988, "total_2014": 1014, "total_2015": 1558, "total_2016": 1018, "total_2017": 919, "total_2018": 951, "total_2019": 873, "total_2020": 797, "age1": 226, "age2": 363, "age3": 148, "earn1": 193, "earn2": 251, "earn3": 293, "naics_s01": 0, "naics_s02": 0, "naics_s03": 105, "naics_s04": 33, "naics_s05": 48, "naics_s06": 24, "naics_s07": 102, "naics_s08": 58, "naics_s09": 0, "naics_s10": 16, "naics_s11": 0, "naics_s12": 23, "naics_s13": 71, "naics_s14": 25, "naics_s15": 8, "naics_s16": 25, "naics_s17": 39, "naics_s18": 133, "naics_s19": 27, "naics_s20": 0, "race1": 583, "race2": 90, "race3": 4, "race4": 40, "race5": 1, "race6": 19, "ethnicity1": 503, "ethnicity2": 234, "edu1": 108, "edu2": 137, "edu3": 170, "edu4": 96, "Shape_Length": 28256.681747901093, "Shape_Area": 34715126.51601781, "total_2021": 815, "total_2022": 737 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.965829898334249, 29.736664205718 ], [ -94.966115898653484, 29.736033205547287 ], [ -94.965069898151157, 29.735681205900864 ], [ -94.964051898336265, 29.735344206047259 ], [ -94.963017897389335, 29.735003205996911 ], [ -94.961997897374644, 29.734659205494374 ], [ -94.96097089703413, 29.734318205206865 ], [ -94.959924897013408, 29.733970205917469 ], [ -94.959120896189233, 29.733718205780299 ], [ -94.959450896580975, 29.732949205634323 ], [ -94.959399897079734, 29.732864205463372 ], [ -94.957422896660489, 29.732284205203815 ], [ -94.957140896353195, 29.732946205266366 ], [ -94.956966896236679, 29.733336205830341 ], [ -94.956922895710136, 29.733434205863663 ], [ -94.956845896109371, 29.733608205944325 ], [ -94.956579896258489, 29.734179205693582 ], [ -94.956520895751794, 29.734294205301644 ], [ -94.956253896160391, 29.734925206231235 ], [ -94.956039896199002, 29.735398205536434 ], [ -94.956014895613677, 29.735460205548442 ], [ -94.955963895468813, 29.735586205745346 ], [ -94.955695896276211, 29.736241206401541 ], [ -94.955518896189886, 29.736666206356105 ], [ -94.95543189550321, 29.736860206211368 ], [ -94.955204896003153, 29.737370206506807 ], [ -94.955135895523952, 29.737527206794621 ], [ -94.954942895998386, 29.737971206598534 ], [ -94.954859895302903, 29.738150206252833 ], [ -94.95465089591309, 29.738605206701489 ], [ -94.954558896145798, 29.738785206417852 ], [ -94.954288895408268, 29.739284207087373 ], [ -94.95397589557102, 29.739768207045142 ], [ -94.953889895901241, 29.739861207263985 ], [ -94.953588895558653, 29.740362206968157 ], [ -94.953158895948178, 29.740991207479688 ], [ -94.953056895436887, 29.741124207033423 ], [ -94.952689895230918, 29.741631207694834 ], [ -94.952405895499155, 29.741988207361491 ], [ -94.952161895624087, 29.74227420741197 ], [ -94.951876894705578, 29.742626207770755 ], [ -94.951631895460864, 29.74292920758322 ], [ -94.95136589474653, 29.74324220786939 ], [ -94.95100789534176, 29.743669207538755 ], [ -94.95055089534624, 29.744237207536152 ], [ -94.950103895076097, 29.74477820837371 ], [ -94.949649894323656, 29.745288207826491 ], [ -94.949548894439801, 29.745400208499586 ], [ -94.948576894088873, 29.746580208791457 ], [ -94.94819789435995, 29.747023208864515 ], [ -94.947954894254948, 29.747330208737555 ], [ -94.94778289483402, 29.747538208711063 ], [ -94.947444893791598, 29.747925209005349 ], [ -94.947017894335985, 29.748442208856794 ], [ -94.946500894377081, 29.749071209164107 ], [ -94.945974893503234, 29.749695209151287 ], [ -94.945241893519167, 29.750593209333687 ], [ -94.94490289385601, 29.751001209765132 ], [ -94.944547893339745, 29.751534210067891 ], [ -94.944192893608587, 29.752115210118038 ], [ -94.943783893601832, 29.753036210253782 ], [ -94.943662893920731, 29.753392210241067 ], [ -94.943172893039957, 29.754823210645171 ], [ -94.943006893586798, 29.755142210308733 ], [ -94.942966892956221, 29.755219210145636 ], [ -94.942918893081384, 29.755288210184826 ], [ -94.942886893592913, 29.75533921039063 ], [ -94.942727893487188, 29.755672210670188 ], [ -94.942613893186021, 29.755869210744216 ], [ -94.942429893596142, 29.756119210696561 ], [ -94.942172893363733, 29.756362211132366 ], [ -94.941777893370357, 29.756703210980401 ], [ -94.941505893367264, 29.756855211018387 ], [ -94.941245892862824, 29.756995210513296 ], [ -94.940859892740264, 29.757193210726818 ], [ -94.940355893273193, 29.757426211038396 ], [ -94.941992893203917, 29.757188210617986 ], [ -94.942346893826496, 29.757137211173596 ], [ -94.942596893066295, 29.757038210505971 ], [ -94.943084893362723, 29.756908210801502 ], [ -94.943248893157232, 29.75685421092372 ], [ -94.943941894228175, 29.756687211045755 ], [ -94.944527894142382, 29.756566210715352 ], [ -94.94524389445435, 29.756436210907172 ], [ -94.947298894521012, 29.756112210473034 ], [ -94.947910895255134, 29.756016210708882 ], [ -94.948417894383368, 29.755935210289433 ], [ -94.949177895131214, 29.755827210096552 ], [ -94.949803895712947, 29.75575521004377 ], [ -94.949991894803517, 29.755734210764942 ], [ -94.951649895824602, 29.75545521006169 ], [ -94.952979895612884, 29.755230209788355 ], [ -94.953169895728252, 29.755198210276216 ], [ -94.954078895922322, 29.755043209648829 ], [ -94.955957897178109, 29.754778210143463 ], [ -94.957448896917938, 29.754537209523512 ], [ -94.958892897199192, 29.754326209414362 ], [ -94.96017889800423, 29.754118209911081 ], [ -94.96170389819352, 29.753881209299443 ], [ -94.961909898402766, 29.753851210013021 ], [ -94.962474898868734, 29.75376420997679 ], [ -94.962786898014983, 29.753714209713923 ], [ -94.963163898348697, 29.753650209918337 ], [ -94.963844898404957, 29.753529209032756 ], [ -94.963843898458293, 29.753219209775221 ], [ -94.963833898226937, 29.752890209553772 ], [ -94.963811899214264, 29.752367208803761 ], [ -94.963803898274833, 29.752172209300351 ], [ -94.963797898221827, 29.751715209068955 ], [ -94.963786899045459, 29.751459209206473 ], [ -94.963755898307596, 29.750778209274962 ], [ -94.963744899050454, 29.750466208596251 ], [ -94.963739898071339, 29.750306208642701 ], [ -94.963741898948001, 29.750216208408386 ], [ -94.963797898807144, 29.750004208549292 ], [ -94.963784898491781, 29.74919720818524 ], [ -94.963783898376903, 29.749118208066427 ], [ -94.963774898950788, 29.748417208779326 ], [ -94.963780899019966, 29.74814420794349 ], [ -94.963791898374254, 29.747607208298785 ], [ -94.963765898762915, 29.746897207755467 ], [ -94.963765898364471, 29.746698207757532 ], [ -94.963752898434265, 29.746207207839831 ], [ -94.963740898284428, 29.745907207849527 ], [ -94.963716898221406, 29.74550320794248 ], [ -94.963707897986907, 29.745082207509348 ], [ -94.963702898532858, 29.744811207779776 ], [ -94.963691898605973, 29.744121207226272 ], [ -94.963681898256695, 29.743406207257401 ], [ -94.96367289819193, 29.742957207049027 ], [ -94.963661898179367, 29.742493207422086 ], [ -94.96366289790214, 29.742414206922017 ], [ -94.963668898111848, 29.74172820734519 ], [ -94.963673898387, 29.741591206779717 ], [ -94.963725898603556, 29.741448206964368 ], [ -94.96401289816572, 29.740841206461901 ], [ -94.964368898706653, 29.739981207055983 ], [ -94.964464898732118, 29.739772206291391 ], [ -94.964569898527031, 29.739536206472295 ], [ -94.964988898732329, 29.73856220597154 ], [ -94.965262898711288, 29.737931206362486 ], [ -94.965541898884297, 29.737322205733069 ], [ -94.9657818989471, 29.736774205871026 ], [ -94.965829898334249, 29.736664205718 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1327, "Tract": "48201254300", "Area_SqMi": 1.195611017252896, "total_2009": 2538, "total_2010": 2445, "total_2011": 2694, "total_2012": 1828, "total_2013": 1863, "total_2014": 1745, "total_2015": 1422, "total_2016": 1404, "total_2017": 1262, "total_2018": 1423, "total_2019": 1519, "total_2020": 1437, "age1": 386, "age2": 687, "age3": 367, "earn1": 360, "earn2": 480, "earn3": 600, "naics_s01": 0, "naics_s02": 3, "naics_s03": 46, "naics_s04": 124, "naics_s05": 2, "naics_s06": 38, "naics_s07": 348, "naics_s08": 137, "naics_s09": 49, "naics_s10": 16, "naics_s11": 13, "naics_s12": 97, "naics_s13": 0, "naics_s14": 54, "naics_s15": 5, "naics_s16": 124, "naics_s17": 0, "naics_s18": 299, "naics_s19": 29, "naics_s20": 56, "race1": 1078, "race2": 251, "race3": 8, "race4": 81, "race5": 4, "race6": 18, "ethnicity1": 913, "ethnicity2": 527, "edu1": 245, "edu2": 309, "edu3": 336, "edu4": 164, "Shape_Length": 23097.934925755289, "Shape_Area": 33331588.852303598, "total_2021": 1298, "total_2022": 1440 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.984743903688482, 29.740617206198912 ], [ -94.984708903375221, 29.740470205591432 ], [ -94.984577903170873, 29.740108205621915 ], [ -94.98432190343236, 29.739623206216319 ], [ -94.983946903591431, 29.738996206156965 ], [ -94.983625903134069, 29.738600205848165 ], [ -94.983406902730081, 29.736920205049351 ], [ -94.983244903364536, 29.73684920508024 ], [ -94.982872903055679, 29.736687204973347 ], [ -94.982314902315949, 29.736463205652168 ], [ -94.98197790294418, 29.736391205420919 ], [ -94.981216902962586, 29.736443205385147 ], [ -94.980830902798644, 29.736418205514013 ], [ -94.980718902356969, 29.736410205638791 ], [ -94.980280902527667, 29.736265204884916 ], [ -94.979365901877003, 29.735961205368831 ], [ -94.977654901846762, 29.735396205294641 ], [ -94.976863901293882, 29.735128205582598 ], [ -94.976540901161457, 29.735023204776105 ], [ -94.976426901217593, 29.734988205181097 ], [ -94.975498900873973, 29.734650204845867 ], [ -94.975364900464427, 29.734607205190851 ], [ -94.973785900360951, 29.734085204803094 ], [ -94.972747900401259, 29.73373020503513 ], [ -94.971713900234306, 29.733392205453168 ], [ -94.97067489959241, 29.733046204835816 ], [ -94.969650898811722, 29.732728205345357 ], [ -94.968588899044661, 29.732353204892998 ], [ -94.968463899113416, 29.732311204780309 ], [ -94.967823898841573, 29.732098205029359 ], [ -94.967496898449937, 29.732796205415013 ], [ -94.967224898382469, 29.733434204974319 ], [ -94.966941898401188, 29.734094205627414 ], [ -94.966666898839208, 29.734741205572632 ], [ -94.966384898852922, 29.73538420519839 ], [ -94.966115898653484, 29.736033205547287 ], [ -94.965829898334249, 29.736664205718 ], [ -94.9657818989471, 29.736774205871026 ], [ -94.965541898884297, 29.737322205733069 ], [ -94.965262898711288, 29.737931206362486 ], [ -94.964988898732329, 29.73856220597154 ], [ -94.964569898527031, 29.739536206472295 ], [ -94.964464898732118, 29.739772206291391 ], [ -94.964368898706653, 29.739981207055983 ], [ -94.96401289816572, 29.740841206461901 ], [ -94.963725898603556, 29.741448206964368 ], [ -94.963673898387, 29.741591206779717 ], [ -94.963668898111848, 29.74172820734519 ], [ -94.96366289790214, 29.742414206922017 ], [ -94.963661898179367, 29.742493207422086 ], [ -94.96367289819193, 29.742957207049027 ], [ -94.963681898256695, 29.743406207257401 ], [ -94.963691898605973, 29.744121207226272 ], [ -94.963702898532858, 29.744811207779776 ], [ -94.963707897986907, 29.745082207509348 ], [ -94.963716898221406, 29.74550320794248 ], [ -94.963740898284428, 29.745907207849527 ], [ -94.963752898434265, 29.746207207839831 ], [ -94.963765898364471, 29.746698207757532 ], [ -94.963765898762915, 29.746897207755467 ], [ -94.963791898374254, 29.747607208298785 ], [ -94.963780899019966, 29.74814420794349 ], [ -94.963774898950788, 29.748417208779326 ], [ -94.963783898376903, 29.749118208066427 ], [ -94.963784898491781, 29.74919720818524 ], [ -94.963797898807144, 29.750004208549292 ], [ -94.963741898948001, 29.750216208408386 ], [ -94.963739898071339, 29.750306208642701 ], [ -94.963841898475337, 29.750293208695403 ], [ -94.964067898844746, 29.750273208501469 ], [ -94.964948898380356, 29.75017320899558 ], [ -94.966973899099358, 29.7500602084185 ], [ -94.969446899673471, 29.749983208398916 ], [ -94.969985900418877, 29.749966208531763 ], [ -94.972872901231881, 29.749971208247924 ], [ -94.974833901154753, 29.750007208610903 ], [ -94.976845901432725, 29.749941208485545 ], [ -94.977108901712725, 29.749947208488809 ], [ -94.977322901700674, 29.749939208065022 ], [ -94.979392902376873, 29.749861208208344 ], [ -94.97947690292024, 29.74985620815853 ], [ -94.979555902656585, 29.749574208004784 ], [ -94.979580902197725, 29.749484208404969 ], [ -94.979883902359816, 29.749250208203652 ], [ -94.980613902820394, 29.749050207774083 ], [ -94.981001902843744, 29.748965207647338 ], [ -94.98165790325254, 29.748772207959924 ], [ -94.982150903352178, 29.748719208175846 ], [ -94.982479903179254, 29.748655207574888 ], [ -94.982663903335862, 29.748489207644319 ], [ -94.982658903208232, 29.748247207260217 ], [ -94.982491902958884, 29.747713207411042 ], [ -94.982410903659968, 29.747716207588354 ], [ -94.982366903405321, 29.747589207470931 ], [ -94.982315903087084, 29.747265207605668 ], [ -94.982315903253777, 29.74707320788999 ], [ -94.982334902964823, 29.746963207606047 ], [ -94.982390902764777, 29.746776207666112 ], [ -94.982472902988604, 29.746561207190215 ], [ -94.982510902833525, 29.746506207243538 ], [ -94.982655903213896, 29.746363207585869 ], [ -94.982800903271354, 29.746297207537658 ], [ -94.98283190366945, 29.746236207262278 ], [ -94.982831903822216, 29.746171207085972 ], [ -94.982774903184563, 29.746055207430157 ], [ -94.982774903005506, 29.746011207424534 ], [ -94.98278790324666, 29.745973207058523 ], [ -94.982812902919662, 29.745934206945115 ], [ -94.982856903494678, 29.745896207214688 ], [ -94.982913903492843, 29.74586320680206 ], [ -94.983133903156642, 29.745796207158584 ], [ -94.9832039037329, 29.745780207364525 ], [ -94.983247903117643, 29.745758207227681 ], [ -94.983291903526677, 29.74571920708804 ], [ -94.983310902982922, 29.745659207351618 ], [ -94.983307903304322, 29.745568206892131 ], [ -94.983303903559289, 29.745455206687645 ], [ -94.983284903566727, 29.745406207125942 ], [ -94.983215903848816, 29.745335207435804 ], [ -94.983051903337454, 29.745258206676347 ], [ -94.983007903189829, 29.745230206921317 ], [ -94.982969902832195, 29.745192207446898 ], [ -94.982894902788601, 29.745082206822616 ], [ -94.982887903160488, 29.745005206578995 ], [ -94.98279990274122, 29.74486220716879 ], [ -94.982774903063913, 29.744796207227896 ], [ -94.982723903394529, 29.744603207074586 ], [ -94.982710903337775, 29.744471207170996 ], [ -94.982710903462589, 29.74420720704471 ], [ -94.982735903074101, 29.744070206924501 ], [ -94.982729903409307, 29.743971206376482 ], [ -94.982748903071226, 29.743877206635219 ], [ -94.982874903125889, 29.743652206371966 ], [ -94.98294390277232, 29.743575206465028 ], [ -94.983056903580092, 29.743399206694146 ], [ -94.983094903349368, 29.743305206981525 ], [ -94.983201903119621, 29.742970206708538 ], [ -94.983277903105346, 29.742882206862504 ], [ -94.983327903206217, 29.742845206593682 ], [ -94.98346390295626, 29.74274420656246 ], [ -94.98352990299729, 29.742695206070234 ], [ -94.983560902898262, 29.742651206531995 ], [ -94.98354890348125, 29.742535206639353 ], [ -94.98355490351716, 29.742464206849146 ], [ -94.983585902952029, 29.74239220612036 ], [ -94.983724903196162, 29.742249206022407 ], [ -94.983768903001788, 29.742172206389395 ], [ -94.98380890342635, 29.742077206606556 ], [ -94.984743903688482, 29.740617206198912 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1328, "Tract": "48201254400", "Area_SqMi": 1.1078821277132294, "total_2009": 4421, "total_2010": 4619, "total_2011": 4630, "total_2012": 4365, "total_2013": 4368, "total_2014": 1176, "total_2015": 1288, "total_2016": 1245, "total_2017": 1302, "total_2018": 1337, "total_2019": 1144, "total_2020": 1101, "age1": 153, "age2": 606, "age3": 373, "earn1": 222, "earn2": 340, "earn3": 570, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 32, "naics_s05": 56, "naics_s06": 12, "naics_s07": 26, "naics_s08": 0, "naics_s09": 15, "naics_s10": 5, "naics_s11": 15, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 837, "naics_s16": 93, "naics_s17": 0, "naics_s18": 36, "naics_s19": 5, "naics_s20": 0, "race1": 857, "race2": 188, "race3": 16, "race4": 52, "race5": 3, "race6": 16, "ethnicity1": 790, "ethnicity2": 342, "edu1": 161, "edu2": 226, "edu3": 302, "edu4": 290, "Shape_Length": 33672.252585032569, "Shape_Area": 30885857.561432756, "total_2021": 1145, "total_2022": 1132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.988619903787054, 29.732147204084082 ], [ -94.988703903979712, 29.731839203873804 ], [ -94.988471904455508, 29.731810204067934 ], [ -94.987626904425042, 29.731705203743736 ], [ -94.98680090372325, 29.731580203975888 ], [ -94.986513903947284, 29.73157120400624 ], [ -94.986250903205132, 29.731577204387669 ], [ -94.985935903116896, 29.731623204108828 ], [ -94.985653903875473, 29.731710203820874 ], [ -94.98506490301726, 29.731954204027804 ], [ -94.98396890286223, 29.732435204368059 ], [ -94.983199902716919, 29.731025204090535 ], [ -94.983114902604285, 29.730810204052396 ], [ -94.983064902446998, 29.730630204095931 ], [ -94.983034902874394, 29.730450204477211 ], [ -94.983020902234301, 29.7303132042858 ], [ -94.983013902172559, 29.72996620364507 ], [ -94.983010902868102, 29.72979920384088 ], [ -94.982999902073217, 29.729079204070374 ], [ -94.982995902927115, 29.72842320401406 ], [ -94.982979902457672, 29.727751203381303 ], [ -94.982941902795815, 29.726971203190782 ], [ -94.982938902339882, 29.72632920310371 ], [ -94.982914902165049, 29.725704203333571 ], [ -94.982913902403808, 29.7256662027253 ], [ -94.982913902898645, 29.725642203428141 ], [ -94.982912902224385, 29.724996203311427 ], [ -94.983248902291606, 29.725007202886118 ], [ -94.983232902122751, 29.724177202880934 ], [ -94.983230902444447, 29.722642202679737 ], [ -94.983199902371908, 29.721017202132352 ], [ -94.982771901881009, 29.72092920204231 ], [ -94.982360901856921, 29.720847202108747 ], [ -94.981922901711826, 29.720768202382637 ], [ -94.981494902190661, 29.720680201783306 ], [ -94.981051902030913, 29.720571202515448 ], [ -94.98060590138023, 29.720474201662604 ], [ -94.979725901354385, 29.720242202175683 ], [ -94.979492901646239, 29.720186201688691 ], [ -94.979547901513342, 29.719773201819478 ], [ -94.979602901788056, 29.719362201554617 ], [ -94.979658901482651, 29.719007201497845 ], [ -94.97970990123018, 29.718609201978062 ], [ -94.979761901079954, 29.718229201271573 ], [ -94.979813901258055, 29.717852201353463 ], [ -94.979983901131575, 29.716607201024487 ], [ -94.98047390141403, 29.7154162006461 ], [ -94.980488901632498, 29.715287200906833 ], [ -94.980835901377674, 29.714608201153261 ], [ -94.980071901733155, 29.71489120081478 ], [ -94.979917901143949, 29.714948200778633 ], [ -94.978331901292464, 29.715536201400532 ], [ -94.977392900616195, 29.715866201651668 ], [ -94.976841900524349, 29.716056201401969 ], [ -94.976450900339444, 29.716190201197481 ], [ -94.975513900212675, 29.716531201178011 ], [ -94.974759900403313, 29.716805201154106 ], [ -94.97290689996963, 29.717463201494777 ], [ -94.971992899501586, 29.717798202006357 ], [ -94.971081898555354, 29.718126201666749 ], [ -94.969907898619084, 29.718535201577268 ], [ -94.968319898594487, 29.719092201877402 ], [ -94.967548898285941, 29.719380202354216 ], [ -94.967340897767073, 29.719454201998687 ], [ -94.966350897970031, 29.719787202464218 ], [ -94.965376897868339, 29.720128202427013 ], [ -94.965096897102086, 29.720223202193587 ], [ -94.963718897088953, 29.720736202645078 ], [ -94.963354897073373, 29.720866203107025 ], [ -94.962975897068958, 29.72101620293304 ], [ -94.962676897101062, 29.721146202708006 ], [ -94.962307897325147, 29.721343202920593 ], [ -94.962029896352618, 29.721508203163921 ], [ -94.961818896799826, 29.721663202504015 ], [ -94.961629896868686, 29.721810202693884 ], [ -94.961482896975511, 29.72194420334969 ], [ -94.961270896179713, 29.722160203169324 ], [ -94.961010896749528, 29.722430203009996 ], [ -94.960824897013651, 29.72269020320762 ], [ -94.960701896703355, 29.722904203487243 ], [ -94.960473897015191, 29.723381203312638 ], [ -94.960290896628436, 29.723858203130924 ], [ -94.960179896405393, 29.724329203338776 ], [ -94.960046896247334, 29.724983203923273 ], [ -94.960038896356323, 29.725128203517492 ], [ -94.960018896176138, 29.725327203781926 ], [ -94.960032896748558, 29.725520204176721 ], [ -94.96003889651638, 29.725650203849906 ], [ -94.960040896758329, 29.725969204211626 ], [ -94.960007896760828, 29.726169203506029 ], [ -94.960272896563723, 29.725619204212585 ], [ -94.960679896680887, 29.724926203999971 ], [ -94.960951897242367, 29.724645203397881 ], [ -94.961395896945007, 29.724283203099979 ], [ -94.961655896481403, 29.724045203340161 ], [ -94.962200897067333, 29.723681203727928 ], [ -94.962529897320593, 29.723490202974112 ], [ -94.962992897097337, 29.723253203043342 ], [ -94.96345089720154, 29.72309620317689 ], [ -94.963809897238079, 29.722965203007497 ], [ -94.964096897287845, 29.722892203402921 ], [ -94.964555898025708, 29.722795203369856 ], [ -94.964909897182906, 29.722748203022416 ], [ -94.965716898260993, 29.722695203084495 ], [ -94.966528897750365, 29.722703203290212 ], [ -94.96844489844824, 29.72282120317147 ], [ -94.968474898628656, 29.722823203075311 ], [ -94.968512899045592, 29.722825202741387 ], [ -94.96882689915131, 29.722844202576457 ], [ -94.969164898774508, 29.722864202910227 ], [ -94.970182899475873, 29.722910203359106 ], [ -94.970373898620139, 29.722910202908125 ], [ -94.97055589919978, 29.722900203140149 ], [ -94.970724899482562, 29.722886202726329 ], [ -94.970901899488368, 29.722863202833743 ], [ -94.971555899538984, 29.722765202812578 ], [ -94.9715888991512, 29.723020203257715 ], [ -94.971592899016386, 29.723154202598806 ], [ -94.97159489979596, 29.723216203168594 ], [ -94.971587899760067, 29.723351203250633 ], [ -94.971560899849166, 29.72354320342853 ], [ -94.97150689963928, 29.723664203339368 ], [ -94.971303899377787, 29.724121202677068 ], [ -94.971026899576486, 29.724842203533257 ], [ -94.970754899308616, 29.72553820375645 ], [ -94.970472899319716, 29.726280203240261 ], [ -94.970233899229797, 29.726865204004088 ], [ -94.970211898985823, 29.726920203644877 ], [ -94.97019589879605, 29.726959203351448 ], [ -94.970038899157188, 29.727347203423228 ], [ -94.969743898883394, 29.728082203658996 ], [ -94.969513899062605, 29.728606204342508 ], [ -94.969062899353503, 29.729263204314673 ], [ -94.96895389897314, 29.729474204083246 ], [ -94.968680898517476, 29.7301102048649 ], [ -94.96839689911171, 29.730757204761705 ], [ -94.968102898735239, 29.731429205097797 ], [ -94.967823898841573, 29.732098205029359 ], [ -94.968463899113416, 29.732311204780309 ], [ -94.968588899044661, 29.732353204892998 ], [ -94.969650898811722, 29.732728205345357 ], [ -94.97067489959241, 29.733046204835816 ], [ -94.971713900234306, 29.733392205453168 ], [ -94.972747900401259, 29.73373020503513 ], [ -94.973785900360951, 29.734085204803094 ], [ -94.975364900464427, 29.734607205190851 ], [ -94.975498900873973, 29.734650204845867 ], [ -94.976426901217593, 29.734988205181097 ], [ -94.976540901161457, 29.735023204776105 ], [ -94.976863901293882, 29.735128205582598 ], [ -94.977654901846762, 29.735396205294641 ], [ -94.979365901877003, 29.735961205368831 ], [ -94.980280902527667, 29.736265204884916 ], [ -94.980718902356969, 29.736410205638791 ], [ -94.980830902798644, 29.736418205514013 ], [ -94.981216902962586, 29.736443205385147 ], [ -94.98197790294418, 29.736391205420919 ], [ -94.982314902315949, 29.736463205652168 ], [ -94.982872903055679, 29.736687204973347 ], [ -94.983244903364536, 29.73684920508024 ], [ -94.983406902730081, 29.736920205049351 ], [ -94.983481903462874, 29.736701204870624 ], [ -94.983408903275034, 29.736628205418956 ], [ -94.983442902580137, 29.736423205547478 ], [ -94.983408902512465, 29.736159205531411 ], [ -94.983336902786945, 29.736108204926445 ], [ -94.983268903022761, 29.735219204957534 ], [ -94.983472903128018, 29.73480320466814 ], [ -94.983561902576824, 29.734623204917781 ], [ -94.984545902978084, 29.733992204935355 ], [ -94.985408903587782, 29.734123204605591 ], [ -94.985990903496258, 29.734069204707975 ], [ -94.986436903863492, 29.733962204500145 ], [ -94.986935904192421, 29.733830205025399 ], [ -94.987232904157608, 29.733541204896873 ], [ -94.987446903952588, 29.733258204767026 ], [ -94.987559903986082, 29.732979204251972 ], [ -94.98813390379074, 29.732655204428731 ], [ -94.988619903787054, 29.732147204084082 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1329, "Tract": "48201254600", "Area_SqMi": 2.691421580141609, "total_2009": 216, "total_2010": 167, "total_2011": 427, "total_2012": 317, "total_2013": 336, "total_2014": 349, "total_2015": 243, "total_2016": 167, "total_2017": 237, "total_2018": 189, "total_2019": 191, "total_2020": 189, "age1": 31, "age2": 89, "age3": 34, "earn1": 7, "earn2": 27, "earn3": 120, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 35, "naics_s07": 7, "naics_s08": 8, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 103, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 113, "race2": 32, "race3": 4, "race4": 4, "race5": 1, "race6": 0, "ethnicity1": 104, "ethnicity2": 50, "edu1": 18, "edu2": 33, "edu3": 50, "edu4": 22, "Shape_Length": 48266.993355353276, "Shape_Area": 75032227.240276471, "total_2021": 155, "total_2022": 154 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.020897912164159, 29.720336200724311 ], [ -95.020445911586791, 29.709925198235354 ], [ -95.020449911382656, 29.709163198675061 ], [ -95.020248911131731, 29.708649197914458 ], [ -95.020155911536492, 29.708138197888406 ], [ -95.019783910664145, 29.707195197971743 ], [ -95.019123911104714, 29.706160198079626 ], [ -95.018425910360108, 29.704953197410052 ], [ -95.018278910997608, 29.704700197871766 ], [ -95.018116910614907, 29.704435197540068 ], [ -95.017699910479408, 29.703753197416962 ], [ -95.017329910779395, 29.703395197215933 ], [ -95.017147910236929, 29.703220197145995 ], [ -95.016437909756689, 29.703801197834537 ], [ -95.015718909974112, 29.704367197570853 ], [ -95.015372909689205, 29.704646197642635 ], [ -95.014614909195203, 29.705237197956951 ], [ -95.013676909224216, 29.706004197907333 ], [ -95.012822908853906, 29.706701198402445 ], [ -95.012143909466289, 29.707195198510593 ], [ -95.011365909300693, 29.707749198563167 ], [ -95.010385908261966, 29.708440198628768 ], [ -95.008942908467958, 29.709389199166598 ], [ -95.008454907837915, 29.709657199140604 ], [ -95.008335907838529, 29.709724199141775 ], [ -95.005818907487807, 29.711047199244693 ], [ -95.005798907380139, 29.710901198942572 ], [ -95.005321907865209, 29.711150199391913 ], [ -95.005082907051616, 29.711304199228259 ], [ -95.004941907692341, 29.711381199063485 ], [ -95.002750906547234, 29.711742199589946 ], [ -95.002294906512361, 29.710545199603345 ], [ -94.999276906030289, 29.708561199413744 ], [ -94.997977905914681, 29.708301199114011 ], [ -94.996373905109593, 29.707914199030721 ], [ -94.995687904761979, 29.70794719912838 ], [ -94.994175904069053, 29.708021199346586 ], [ -94.993126904309293, 29.70859019920864 ], [ -94.993086904613335, 29.709321199144714 ], [ -94.992601904413462, 29.709434198984887 ], [ -94.992272904464699, 29.709443199757004 ], [ -94.991867903742531, 29.709441199733725 ], [ -94.991683904137972, 29.709434199325003 ], [ -94.991461903598179, 29.709418199827894 ], [ -94.991314903475129, 29.709396199106774 ], [ -94.990892903932505, 29.709270199452899 ], [ -94.990506903691823, 29.709118199341017 ], [ -94.990461903921499, 29.709112199130658 ], [ -94.990171903059334, 29.709093199126702 ], [ -94.989876903984594, 29.708998199474138 ], [ -94.989465903696143, 29.708921199506698 ], [ -94.989489903042369, 29.708823199780213 ], [ -94.989538903754976, 29.70878319916681 ], [ -94.989076903307378, 29.708356199365472 ], [ -94.989006903479293, 29.708395198914459 ], [ -94.988938903445529, 29.708461198948171 ], [ -94.988717903603373, 29.708529199158626 ], [ -94.988531903549273, 29.708523199717515 ], [ -94.988337902972617, 29.708557199761159 ], [ -94.988103903446003, 29.708619199701818 ], [ -94.987919903080154, 29.708693199196109 ], [ -94.987507902977939, 29.708836199400849 ], [ -94.987267902707615, 29.708920199311024 ], [ -94.986585902207509, 29.708991199451738 ], [ -94.986393902577689, 29.708975199571913 ], [ -94.98628190251641, 29.708984199068933 ], [ -94.986041902448179, 29.709019199562928 ], [ -94.985936902491915, 29.709055199372511 ], [ -94.985697901915032, 29.709179199601945 ], [ -94.985462902573431, 29.709285199748273 ], [ -94.985313901937928, 29.709379199641148 ], [ -94.985133902639163, 29.7093952000331 ], [ -94.985000901717399, 29.709329199966927 ], [ -94.984909902442851, 29.709272199464429 ], [ -94.984792902444411, 29.709244199203205 ], [ -94.984676901791374, 29.70925319929642 ], [ -94.984558902266883, 29.70930119977707 ], [ -94.98445590231988, 29.709404199280808 ], [ -94.984417902455405, 29.709426199799854 ], [ -94.984279902112434, 29.709455199917063 ], [ -94.984189902130112, 29.709496199981263 ], [ -94.984096901529625, 29.70956619926444 ], [ -94.983993902179392, 29.709586199893778 ], [ -94.983896902387926, 29.70956019974393 ], [ -94.983824901916591, 29.709557199984996 ], [ -94.983683902078582, 29.709588199470428 ], [ -94.983399901542342, 29.709572199486637 ], [ -94.983253901908299, 29.709561199452676 ], [ -94.983244901500669, 29.709547200065437 ], [ -94.983169901268596, 29.709440199485059 ], [ -94.982993901456965, 29.709360199247001 ], [ -94.982915901814664, 29.709584200090074 ], [ -94.982887902194264, 29.709648199415096 ], [ -94.982702901511161, 29.710071199716531 ], [ -94.982438901857662, 29.710673200329552 ], [ -94.982349901307146, 29.710873200004492 ], [ -94.98174490160244, 29.71235820003313 ], [ -94.981299901157826, 29.713557200827246 ], [ -94.981205901828247, 29.713819200449059 ], [ -94.980981901472163, 29.714216200782655 ], [ -94.980835901377674, 29.714608201153261 ], [ -94.980488901632498, 29.715287200906833 ], [ -94.98047390141403, 29.7154162006461 ], [ -94.979983901131575, 29.716607201024487 ], [ -94.979813901258055, 29.717852201353463 ], [ -94.979761901079954, 29.718229201271573 ], [ -94.97970990123018, 29.718609201978062 ], [ -94.979658901482651, 29.719007201497845 ], [ -94.979602901788056, 29.719362201554617 ], [ -94.979547901513342, 29.719773201819478 ], [ -94.979492901646239, 29.720186201688691 ], [ -94.979725901354385, 29.720242202175683 ], [ -94.98060590138023, 29.720474201662604 ], [ -94.981051902030913, 29.720571202515448 ], [ -94.981494902190661, 29.720680201783306 ], [ -94.981922901711826, 29.720768202382637 ], [ -94.982360901856921, 29.720847202108747 ], [ -94.982771901881009, 29.72092920204231 ], [ -94.983199902371908, 29.721017202132352 ], [ -94.983230902444447, 29.722642202679737 ], [ -94.983232902122751, 29.724177202880934 ], [ -94.983248902291606, 29.725007202886118 ], [ -94.982912902224385, 29.724996203311427 ], [ -94.982913902898645, 29.725642203428141 ], [ -94.982913902403808, 29.7256662027253 ], [ -94.982914902165049, 29.725704203333571 ], [ -94.982938902339882, 29.72632920310371 ], [ -94.982941902795815, 29.726971203190782 ], [ -94.982979902457672, 29.727751203381303 ], [ -94.982995902927115, 29.72842320401406 ], [ -94.982999902073217, 29.729079204070374 ], [ -94.983010902868102, 29.72979920384088 ], [ -94.983013902172559, 29.72996620364507 ], [ -94.983020902234301, 29.7303132042858 ], [ -94.983034902874394, 29.730450204477211 ], [ -94.983064902446998, 29.730630204095931 ], [ -94.983114902604285, 29.730810204052396 ], [ -94.983199902716919, 29.731025204090535 ], [ -94.98396890286223, 29.732435204368059 ], [ -94.98506490301726, 29.731954204027804 ], [ -94.985653903875473, 29.731710203820874 ], [ -94.985935903116896, 29.731623204108828 ], [ -94.986250903205132, 29.731577204387669 ], [ -94.986513903947284, 29.73157120400624 ], [ -94.98680090372325, 29.731580203975888 ], [ -94.987626904425042, 29.731705203743736 ], [ -94.988471904455508, 29.731810204067934 ], [ -94.988703903979712, 29.731839203873804 ], [ -94.98936290424767, 29.73098120404152 ], [ -94.989565904549949, 29.730508203892448 ], [ -94.989614903898627, 29.729966203482203 ], [ -94.989994904696658, 29.727296203056383 ], [ -94.989954904103769, 29.727032202661409 ], [ -94.989706904620633, 29.726210203025278 ], [ -94.989247903806131, 29.725432203083976 ], [ -94.988691903602387, 29.724306202738624 ], [ -94.988710903772869, 29.724035202726299 ], [ -94.988441903323775, 29.723736202653026 ], [ -94.988388903865243, 29.72348320231422 ], [ -94.988494904020811, 29.723184202254529 ], [ -94.988795904066095, 29.722628202020086 ], [ -94.989337904098008, 29.722815202444323 ], [ -94.990280904294224, 29.723143202339706 ], [ -94.990470904200151, 29.723209202706833 ], [ -94.990679904366857, 29.723381202612565 ], [ -94.991227904636034, 29.723591202214688 ], [ -94.991610905036353, 29.723732202740745 ], [ -94.991777905007723, 29.72378820257634 ], [ -94.992099904449589, 29.7238952022619 ], [ -94.992302904796517, 29.723961202577023 ], [ -94.992479904519868, 29.723999202468086 ], [ -94.992704904550578, 29.723992202452362 ], [ -94.993355905371217, 29.724212202609714 ], [ -94.995619906053264, 29.724988202779546 ], [ -94.995820905692142, 29.725046202452539 ], [ -94.996286905610816, 29.725183202159371 ], [ -94.996385906085592, 29.72521320211068 ], [ -94.996485905748116, 29.725228202549886 ], [ -94.996673905923544, 29.725254202785418 ], [ -94.997324906585078, 29.725332202790568 ], [ -94.999115906923265, 29.725553202532755 ], [ -95.000126906865958, 29.725700202866975 ], [ -95.000406907066207, 29.725772202239032 ], [ -95.000611906721772, 29.725873202735681 ], [ -95.001437907052235, 29.72658520272919 ], [ -95.001780907118828, 29.726273202667684 ], [ -95.002181907192877, 29.725953202022076 ], [ -95.002620907772041, 29.725678202527728 ], [ -95.003052907686694, 29.725394202487387 ], [ -95.004275907540105, 29.724656201810287 ], [ -95.0042169082692, 29.725031202623079 ], [ -95.004142908389213, 29.725502202100703 ], [ -95.004066908380139, 29.725965201989681 ], [ -95.004040907751289, 29.726146202058118 ], [ -95.004003908281888, 29.726372202810925 ], [ -95.00393590810711, 29.726759202552447 ], [ -95.005391908153257, 29.726965203002628 ], [ -95.006869908865824, 29.727168202485565 ], [ -95.006971908739928, 29.726776202796824 ], [ -95.007041908642037, 29.726356202174319 ], [ -95.007117909159149, 29.725889202703549 ], [ -95.007193908841728, 29.725415202172979 ], [ -95.007268908191236, 29.724962201685841 ], [ -95.007343908742087, 29.724508201794443 ], [ -95.007419909097067, 29.724044201890727 ], [ -95.007496909084637, 29.723575201487829 ], [ -95.007549908897587, 29.723188201608853 ], [ -95.007579908480324, 29.722856201454736 ], [ -95.007588908571449, 29.722773201217276 ], [ -95.007604909048567, 29.722675201635163 ], [ -95.007653908611545, 29.722388201981314 ], [ -95.007700908243763, 29.722116201740164 ], [ -95.007685909091038, 29.72205120138247 ], [ -95.007643908114744, 29.722020201431189 ], [ -95.007648908484555, 29.721960201816746 ], [ -95.007754908658271, 29.721995201145926 ], [ -95.007880908544607, 29.721984201091065 ], [ -95.007955908673708, 29.721962201778656 ], [ -95.008053908765504, 29.721985201168984 ], [ -95.008189908505955, 29.722017201556834 ], [ -95.008283908941351, 29.72206720159128 ], [ -95.008283908731912, 29.722094201539168 ], [ -95.008297908752979, 29.722106201287247 ], [ -95.008377909099679, 29.722171201453985 ], [ -95.00842190896347, 29.722193201471278 ], [ -95.008529908551878, 29.722182201494789 ], [ -95.008800909164705, 29.722122201627844 ], [ -95.009133908578036, 29.722056201771835 ], [ -95.009272909162206, 29.722056201621044 ], [ -95.009606909471685, 29.722144201785895 ], [ -95.009892909377044, 29.72224020140791 ], [ -95.010116909248893, 29.722315201264948 ], [ -95.010815909348537, 29.722381201364161 ], [ -95.011162909602987, 29.722425201173365 ], [ -95.01187490935591, 29.722310200930309 ], [ -95.012038909470505, 29.722277201420983 ], [ -95.012415909691569, 29.722325201264592 ], [ -95.012517910339511, 29.722338200963225 ], [ -95.012777909853241, 29.722467201737793 ], [ -95.012838909818015, 29.722497201118948 ], [ -95.01301490998614, 29.722547201327053 ], [ -95.013222910450679, 29.722569201241921 ], [ -95.01340591060054, 29.722640201784536 ], [ -95.0135129102202, 29.722723200981076 ], [ -95.013568909957343, 29.722745201643921 ], [ -95.013663910656547, 29.722734201530898 ], [ -95.014041910126622, 29.722575201615602 ], [ -95.014564910772791, 29.722267201544007 ], [ -95.014740910793165, 29.722118201126783 ], [ -95.014986910185968, 29.721943200907415 ], [ -95.015119910939589, 29.721833201112378 ], [ -95.01518291036426, 29.721723201208214 ], [ -95.015383910935441, 29.721591200790481 ], [ -95.016119911042153, 29.721160201408729 ], [ -95.016893911137757, 29.720631201014609 ], [ -95.017049910495302, 29.720608201220809 ], [ -95.017362910725481, 29.720511201184159 ], [ -95.01803391140723, 29.720298201197249 ], [ -95.018360911116034, 29.72016020076364 ], [ -95.018488911843136, 29.720201200810738 ], [ -95.018481910892774, 29.720175200699654 ], [ -95.01856591152756, 29.720259200328893 ], [ -95.018664911782921, 29.720317201100229 ], [ -95.019964911708342, 29.720322200305098 ], [ -95.020897912164159, 29.720336200724311 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1330, "Tract": "48201310200", "Area_SqMi": 0.72059618293735184, "total_2009": 2898, "total_2010": 2591, "total_2011": 2584, "total_2012": 2511, "total_2013": 3255, "total_2014": 2842, "total_2015": 2636, "total_2016": 2826, "total_2017": 2577, "total_2018": 2720, "total_2019": 2412, "total_2020": 2328, "age1": 442, "age2": 1340, "age3": 679, "earn1": 436, "earn2": 797, "earn3": 1228, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 395, "naics_s06": 651, "naics_s07": 202, "naics_s08": 142, "naics_s09": 4, "naics_s10": 15, "naics_s11": 8, "naics_s12": 53, "naics_s13": 0, "naics_s14": 511, "naics_s15": 0, "naics_s16": 93, "naics_s17": 0, "naics_s18": 259, "naics_s19": 88, "naics_s20": 0, "race1": 1577, "race2": 511, "race3": 26, "race4": 307, "race5": 3, "race6": 37, "ethnicity1": 1587, "ethnicity2": 874, "edu1": 527, "edu2": 517, "edu3": 597, "edu4": 378, "Shape_Length": 19497.464198856498, "Shape_Area": 20088988.267600361, "total_2021": 2277, "total_2022": 2461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.362621001146422, 29.744961194245761 ], [ -95.362691000350097, 29.744870194389442 ], [ -95.362338000651064, 29.744727194370753 ], [ -95.362028000685072, 29.744601193898692 ], [ -95.361215000045689, 29.744271194366974 ], [ -95.361069000091874, 29.744212193807172 ], [ -95.360755000664398, 29.744062194226291 ], [ -95.360288999778675, 29.743830193577754 ], [ -95.360163000251006, 29.743768194167153 ], [ -95.36004900031449, 29.743707194048717 ], [ -95.359550999954067, 29.743420194318915 ], [ -95.359282000315105, 29.743305193748764 ], [ -95.359225000046592, 29.743274194122982 ], [ -95.358434999844832, 29.74276719386804 ], [ -95.357556999185832, 29.742228193821184 ], [ -95.356553998593839, 29.741583193888694 ], [ -95.355556999303843, 29.74094019341247 ], [ -95.355429998775875, 29.740859193287569 ], [ -95.355371998911153, 29.740822193545284 ], [ -95.354955998687586, 29.74055419362228 ], [ -95.352722997940461, 29.7391151937045 ], [ -95.351728997417638, 29.738471193026022 ], [ -95.351683998121928, 29.738442193107044 ], [ -95.351564998012108, 29.738368193294285 ], [ -95.35092299723128, 29.737968192757027 ], [ -95.34968599756769, 29.737197192896613 ], [ -95.349030997110134, 29.736789192793299 ], [ -95.347427996326715, 29.735753192725273 ], [ -95.347298996521459, 29.735669192601637 ], [ -95.346995996447717, 29.735474192478293 ], [ -95.345970996430566, 29.73481119252391 ], [ -95.345555995602965, 29.73451019238021 ], [ -95.345193995854459, 29.734248192852174 ], [ -95.345114995777806, 29.73440419224238 ], [ -95.345056995636057, 29.734516192970737 ], [ -95.344825995801202, 29.735048192832878 ], [ -95.344573995733512, 29.73570619286329 ], [ -95.344180995836751, 29.736733193287318 ], [ -95.343898995826081, 29.737396192850269 ], [ -95.343434995597732, 29.738550193630786 ], [ -95.343181995537108, 29.739229193293738 ], [ -95.342852995129945, 29.740044194092889 ], [ -95.34279999582678, 29.740174193439639 ], [ -95.34251299530905, 29.740903194475337 ], [ -95.342455995291687, 29.741039193779677 ], [ -95.342693995280769, 29.741114193741627 ], [ -95.342072995021141, 29.741898194305683 ], [ -95.34242399525364, 29.742929194298696 ], [ -95.342709995883979, 29.743722194195641 ], [ -95.342743995373596, 29.743783194602351 ], [ -95.342909995445638, 29.744154194910493 ], [ -95.343107996254403, 29.744483194885376 ], [ -95.343137996248004, 29.744524194609046 ], [ -95.343235996027204, 29.744666194984703 ], [ -95.343304996326466, 29.744753194411675 ], [ -95.343787996483769, 29.745292194763586 ], [ -95.345036996729661, 29.746016195420928 ], [ -95.345103996120201, 29.746055195404079 ], [ -95.345241995863617, 29.74614319502864 ], [ -95.346066997110881, 29.746668194933473 ], [ -95.346365996340097, 29.746852194911192 ], [ -95.347199997092474, 29.747385194949768 ], [ -95.348065997579695, 29.747886195334015 ], [ -95.348924997224316, 29.748385195496599 ], [ -95.349771997895971, 29.748900195032142 ], [ -95.3506359980599, 29.749423195588836 ], [ -95.351487997657046, 29.74994319516172 ], [ -95.352342998833862, 29.750464195965197 ], [ -95.35318099834673, 29.75097719543475 ], [ -95.353778999147707, 29.750225195224672 ], [ -95.353825998317205, 29.750260195422005 ], [ -95.353870999266661, 29.750289195316512 ], [ -95.35419799846872, 29.750504195630487 ], [ -95.354270999197283, 29.750546195723906 ], [ -95.354624999507664, 29.750748195485478 ], [ -95.355219998885019, 29.750014195214742 ], [ -95.355808998981814, 29.749252195297316 ], [ -95.356407999386704, 29.748511194709515 ], [ -95.35724899973377, 29.749019195544328 ], [ -95.35775000020206, 29.749324195196834 ], [ -95.358112999747121, 29.749543195712988 ], [ -95.358313999638952, 29.7496621954609 ], [ -95.358495999819112, 29.749770194861977 ], [ -95.358951999956503, 29.749274194949859 ], [ -95.359610000658009, 29.748558194861452 ], [ -95.360214000683044, 29.747859195099416 ], [ -95.360419999973033, 29.747621194470916 ], [ -95.361041000629797, 29.74688519475562 ], [ -95.361459000869104, 29.746391194674409 ], [ -95.361652000674439, 29.746162194465114 ], [ -95.362132000199253, 29.745594194208575 ], [ -95.362262001088297, 29.745426194745274 ], [ -95.362621001146422, 29.744961194245761 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1331, "Tract": "48201310300", "Area_SqMi": 0.86819313889042371, "total_2009": 1954, "total_2010": 1476, "total_2011": 2028, "total_2012": 2006, "total_2013": 1536, "total_2014": 1430, "total_2015": 1653, "total_2016": 1713, "total_2017": 1724, "total_2018": 1845, "total_2019": 1805, "total_2020": 1234, "age1": 459, "age2": 885, "age3": 481, "earn1": 676, "earn2": 620, "earn3": 529, "naics_s01": 20, "naics_s02": 0, "naics_s03": 0, "naics_s04": 85, "naics_s05": 239, "naics_s06": 48, "naics_s07": 127, "naics_s08": 337, "naics_s09": 0, "naics_s10": 3, "naics_s11": 22, "naics_s12": 21, "naics_s13": 0, "naics_s14": 721, "naics_s15": 0, "naics_s16": 113, "naics_s17": 3, "naics_s18": 58, "naics_s19": 28, "naics_s20": 0, "race1": 1169, "race2": 531, "race3": 20, "race4": 82, "race5": 1, "race6": 22, "ethnicity1": 1112, "ethnicity2": 713, "edu1": 344, "edu2": 379, "edu3": 397, "edu4": 246, "Shape_Length": 20086.987252587242, "Shape_Area": 24203738.784857225, "total_2021": 1602, "total_2022": 1825 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.345114995777806, 29.73440419224238 ], [ -95.345193995854459, 29.734248192852174 ], [ -95.344949995385832, 29.73407119283323 ], [ -95.343100994919411, 29.732622192607209 ], [ -95.34274999559436, 29.732347192520077 ], [ -95.34228899486088, 29.731993192132652 ], [ -95.342073995322664, 29.731828192356293 ], [ -95.341905994917042, 29.731699191861971 ], [ -95.341341994276945, 29.731237192153841 ], [ -95.340492994334866, 29.730537191756177 ], [ -95.338650994363974, 29.729296191479992 ], [ -95.338460994302423, 29.729176191363067 ], [ -95.338206993413706, 29.729016192074688 ], [ -95.338001994037853, 29.728887191316669 ], [ -95.337529993437414, 29.728590192046159 ], [ -95.336945993514561, 29.72822319170087 ], [ -95.336514993056142, 29.727951191198571 ], [ -95.335726993116637, 29.727455191905943 ], [ -95.335247993017575, 29.727182191772069 ], [ -95.333427992239336, 29.726041191005077 ], [ -95.333379992513827, 29.726011191610784 ], [ -95.333193992463904, 29.725895190865167 ], [ -95.333102992567504, 29.72609419140495 ], [ -95.332903992248859, 29.726587191103828 ], [ -95.332837991897634, 29.726748191351124 ], [ -95.332573991794092, 29.727393191308487 ], [ -95.332309992703344, 29.728039191828408 ], [ -95.332218992201007, 29.728254191801295 ], [ -95.3320139920651, 29.72877219175183 ], [ -95.331623992083834, 29.729708192100272 ], [ -95.331488991820905, 29.730067192233712 ], [ -95.331264991975488, 29.730635192025048 ], [ -95.331137991611541, 29.730957192354158 ], [ -95.331086991946009, 29.731093192021774 ], [ -95.33081699227219, 29.731768192615988 ], [ -95.330707991579104, 29.732016192531628 ], [ -95.330506991918824, 29.732585192906317 ], [ -95.330440992293092, 29.732751192803885 ], [ -95.330384992339845, 29.732910192779379 ], [ -95.330261991917368, 29.733253192594223 ], [ -95.330119991783377, 29.733614193022259 ], [ -95.329937992298483, 29.734131193108762 ], [ -95.329884991713755, 29.734180192882789 ], [ -95.329842991467459, 29.734187193407774 ], [ -95.32978399161253, 29.734190193259494 ], [ -95.329724991417038, 29.734223192832406 ], [ -95.329684991566637, 29.734289193295648 ], [ -95.329476991674269, 29.734780193528891 ], [ -95.329191991912836, 29.735475192989497 ], [ -95.328914991261797, 29.736163193177866 ], [ -95.328642992077491, 29.736795193828872 ], [ -95.328556991276301, 29.737000193834962 ], [ -95.328475991174415, 29.737134194059848 ], [ -95.328222991667829, 29.737425193765691 ], [ -95.328010991638791, 29.737701194017518 ], [ -95.327764991508303, 29.738015193717288 ], [ -95.32758999117388, 29.738230194191463 ], [ -95.327334991923706, 29.738555193851816 ], [ -95.327077991192766, 29.738888193703744 ], [ -95.327037991082562, 29.738950194500642 ], [ -95.326624991367908, 29.73945319450122 ], [ -95.326468991030822, 29.739661194296367 ], [ -95.326169991087838, 29.7400281948368 ], [ -95.325935990782924, 29.740327194626158 ], [ -95.325572991178788, 29.740773194412714 ], [ -95.325530991405472, 29.740837194431343 ], [ -95.3257229912859, 29.740889195017228 ], [ -95.328135992029246, 29.741656194351251 ], [ -95.329464991733389, 29.742064194711126 ], [ -95.329653991791673, 29.742129194405013 ], [ -95.330596992458752, 29.74241319472457 ], [ -95.333018992818282, 29.743185195001306 ], [ -95.333115993606668, 29.743220194830077 ], [ -95.333605993077754, 29.743370194490957 ], [ -95.334060993533129, 29.743510195192044 ], [ -95.334216993102316, 29.743562194771986 ], [ -95.335262993743683, 29.743901195173592 ], [ -95.336300994222782, 29.744231195279017 ], [ -95.337401994671168, 29.744522195056014 ], [ -95.338421994141285, 29.744870194707776 ], [ -95.339468994805344, 29.745169194707788 ], [ -95.33972399503709, 29.744838194747707 ], [ -95.339925995221094, 29.744586194834721 ], [ -95.340400994981763, 29.743978194409024 ], [ -95.340885995263946, 29.743381194720374 ], [ -95.341266995503176, 29.742900194280868 ], [ -95.341740994923242, 29.742317194094223 ], [ -95.342072995021141, 29.741898194305683 ], [ -95.342693995280769, 29.741114193741627 ], [ -95.342455995291687, 29.741039193779677 ], [ -95.34251299530905, 29.740903194475337 ], [ -95.34279999582678, 29.740174193439639 ], [ -95.342852995129945, 29.740044194092889 ], [ -95.343181995537108, 29.739229193293738 ], [ -95.343434995597732, 29.738550193630786 ], [ -95.343898995826081, 29.737396192850269 ], [ -95.344180995836751, 29.736733193287318 ], [ -95.344573995733512, 29.73570619286329 ], [ -95.344825995801202, 29.735048192832878 ], [ -95.345056995636057, 29.734516192970737 ], [ -95.345114995777806, 29.73440419224238 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1332, "Tract": "48201310500", "Area_SqMi": 1.2194393188481067, "total_2009": 2259, "total_2010": 2075, "total_2011": 1822, "total_2012": 1766, "total_2013": 1876, "total_2014": 2165, "total_2015": 2177, "total_2016": 1875, "total_2017": 1786, "total_2018": 1809, "total_2019": 1750, "total_2020": 1668, "age1": 201, "age2": 838, "age3": 331, "earn1": 79, "earn2": 190, "earn3": 1101, "naics_s01": 5, "naics_s02": 0, "naics_s03": 340, "naics_s04": 108, "naics_s05": 397, "naics_s06": 149, "naics_s07": 22, "naics_s08": 46, "naics_s09": 0, "naics_s10": 20, "naics_s11": 10, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 3, "naics_s17": 0, "naics_s18": 28, "naics_s19": 240, "naics_s20": 0, "race1": 1056, "race2": 212, "race3": 8, "race4": 78, "race5": 3, "race6": 13, "ethnicity1": 811, "ethnicity2": 559, "edu1": 260, "edu2": 329, "edu3": 331, "edu4": 249, "Shape_Length": 24356.635750819052, "Shape_Area": 33995881.11823231, "total_2021": 1504, "total_2022": 1370 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.329653991791673, 29.742129194405013 ], [ -95.329464991733389, 29.742064194711126 ], [ -95.328135992029246, 29.741656194351251 ], [ -95.3257229912859, 29.740889195017228 ], [ -95.325530991405472, 29.740837194431343 ], [ -95.324636990566319, 29.740544194131811 ], [ -95.323757990972226, 29.740258194358994 ], [ -95.322863990628832, 29.739991194533772 ], [ -95.321978990258501, 29.739722194327154 ], [ -95.321546990050976, 29.739578194747537 ], [ -95.321058990260838, 29.739414194217353 ], [ -95.319730989646885, 29.738998193962903 ], [ -95.31852598919869, 29.738615194641451 ], [ -95.317291988511286, 29.738225194558662 ], [ -95.316335988557469, 29.737924194547798 ], [ -95.315503988385913, 29.737669193968337 ], [ -95.31463798796544, 29.737384194387889 ], [ -95.314253987987044, 29.737268194391284 ], [ -95.313768987605826, 29.73790419477703 ], [ -95.313537988204175, 29.738238194074953 ], [ -95.313289987943818, 29.738575194143475 ], [ -95.313012987342162, 29.73898119488203 ], [ -95.312890987459042, 29.739155195003669 ], [ -95.312832987582922, 29.739243194724139 ], [ -95.311920987720626, 29.740633195415171 ], [ -95.311694987348019, 29.741003194740131 ], [ -95.311441987655272, 29.741386195510241 ], [ -95.311172987732618, 29.741778195533016 ], [ -95.31102498731218, 29.741975195229703 ], [ -95.310669987042587, 29.742505195508372 ], [ -95.310396987006698, 29.742888195117494 ], [ -95.310094987326494, 29.743346195746366 ], [ -95.309916987093175, 29.743604195596813 ], [ -95.309690987265938, 29.743945195584047 ], [ -95.309565987279285, 29.744152196239817 ], [ -95.309119986830396, 29.74478719557009 ], [ -95.308365987223681, 29.745905196360344 ], [ -95.307806986607318, 29.746732196667491 ], [ -95.307538987189062, 29.747090196775975 ], [ -95.307184986598841, 29.747555197031833 ], [ -95.306732986422247, 29.748204196323464 ], [ -95.306183986715553, 29.749010196675155 ], [ -95.305461986833649, 29.750079196786434 ], [ -95.305124985863927, 29.750586197561695 ], [ -95.304345986387617, 29.751702197861857 ], [ -95.303892986064881, 29.752360197923196 ], [ -95.303731986270051, 29.752649197476554 ], [ -95.303608985555869, 29.752864197800942 ], [ -95.303132985887643, 29.753609197951182 ], [ -95.302914985974439, 29.753955198078987 ], [ -95.303160986257865, 29.754200197844387 ], [ -95.30392598584676, 29.755193198368627 ], [ -95.304196986439806, 29.755544198121683 ], [ -95.304348986536496, 29.755664198668665 ], [ -95.304809986658071, 29.755821198124114 ], [ -95.305301986978236, 29.755840198239401 ], [ -95.305511986727268, 29.755781198711261 ], [ -95.305772986297356, 29.755708198010961 ], [ -95.306058986916668, 29.755563198419939 ], [ -95.306094986305254, 29.755531197825992 ], [ -95.306348987160689, 29.755306197960206 ], [ -95.306807987432421, 29.755000198009927 ], [ -95.307461987433669, 29.754777197821152 ], [ -95.308188987197752, 29.75463019795011 ], [ -95.308266987044988, 29.75461419776936 ], [ -95.309459987749293, 29.754700197919902 ], [ -95.310508988156258, 29.754942198285161 ], [ -95.310713987580002, 29.754989197623683 ], [ -95.31107498849444, 29.755092198297902 ], [ -95.312205988605683, 29.755414197917165 ], [ -95.313017988813499, 29.755541197785433 ], [ -95.313843989222761, 29.755518198366811 ], [ -95.314673988459745, 29.755305198320311 ], [ -95.315024989301477, 29.75514219816467 ], [ -95.315439989592747, 29.754949198051623 ], [ -95.31574898876147, 29.754752197876115 ], [ -95.316192989584096, 29.75483719809549 ], [ -95.316521989356232, 29.754838197566141 ], [ -95.316975989354646, 29.754841197933519 ], [ -95.31759098998883, 29.754915198001083 ], [ -95.318109989678248, 29.755034197958171 ], [ -95.318768989702846, 29.755334197868461 ], [ -95.320052990707765, 29.756123198353933 ], [ -95.32025399029601, 29.755895198095317 ], [ -95.32027799059739, 29.755868198213712 ], [ -95.320562990740385, 29.755645197989306 ], [ -95.322092990367892, 29.753581197397093 ], [ -95.322533990419842, 29.752976196944037 ], [ -95.32289999054025, 29.752494196741264 ], [ -95.323990990706179, 29.751092197074176 ], [ -95.324421991534535, 29.750507196757155 ], [ -95.324598990765111, 29.750242196202226 ], [ -95.325510991617463, 29.749065196568463 ], [ -95.326051992068457, 29.748500196398236 ], [ -95.326601991470739, 29.747931196452278 ], [ -95.326902991912291, 29.747513196220726 ], [ -95.327014991330572, 29.747320195598498 ], [ -95.327173991849008, 29.746976195825788 ], [ -95.327598991556812, 29.74597719545557 ], [ -95.328115992036089, 29.744734195011493 ], [ -95.328205991782141, 29.744523194875413 ], [ -95.328313992263304, 29.74418019526772 ], [ -95.328423991481145, 29.743894195040784 ], [ -95.328595991487575, 29.743503195163303 ], [ -95.328943992327765, 29.742971195273963 ], [ -95.32917399176057, 29.742681195267348 ], [ -95.329414991862052, 29.742415194358749 ], [ -95.329653991791673, 29.742129194405013 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1333, "Tract": "48339692702", "Area_SqMi": 24.25929527038484, "total_2009": 505, "total_2010": 333, "total_2011": 386, "total_2012": 561, "total_2013": 628, "total_2014": 909, "total_2015": 981, "total_2016": 794, "total_2017": 981, "total_2018": 897, "total_2019": 932, "total_2020": 791, "age1": 181, "age2": 484, "age3": 166, "earn1": 159, "earn2": 193, "earn3": 479, "naics_s01": 0, "naics_s02": 28, "naics_s03": 0, "naics_s04": 47, "naics_s05": 226, "naics_s06": 23, "naics_s07": 285, "naics_s08": 18, "naics_s09": 0, "naics_s10": 0, "naics_s11": 9, "naics_s12": 9, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 101, "naics_s17": 38, "naics_s18": 40, "naics_s19": 6, "naics_s20": 0, "race1": 664, "race2": 102, "race3": 7, "race4": 45, "race5": 0, "race6": 13, "ethnicity1": 620, "ethnicity2": 211, "edu1": 133, "edu2": 198, "edu3": 181, "edu4": 138, "Shape_Length": 133166.63737542124, "Shape_Area": 676307631.93951511, "total_2021": 771, "total_2022": 831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.270752000018661, 30.254824301340616 ], [ -95.270758000805913, 30.253237301466264 ], [ -95.270714000170415, 30.250124300350983 ], [ -95.270707000556015, 30.249539300104587 ], [ -95.270642000384797, 30.243831299151005 ], [ -95.270602000260524, 30.240190298118225 ], [ -95.270506999771754, 30.238930297804821 ], [ -95.270484999702049, 30.237664297865493 ], [ -95.270467999132308, 30.236620297732394 ], [ -95.270457999194377, 30.23603429754014 ], [ -95.270449999736528, 30.235542297889424 ], [ -95.270452999205759, 30.235430297368488 ], [ -95.270499999864043, 30.234105297121204 ], [ -95.270559999123265, 30.233427297117181 ], [ -95.270676999140292, 30.232093296806294 ], [ -95.27063699973138, 30.231900297068581 ], [ -95.270654999493289, 30.231732296786074 ], [ -95.270649999637513, 30.231055296255551 ], [ -95.270637999139623, 30.230234296160369 ], [ -95.27062599889102, 30.229311295980295 ], [ -95.270615999020464, 30.228218295745069 ], [ -95.270603998988292, 30.226903295443954 ], [ -95.270518998612701, 30.2250162955992 ], [ -95.270478999233191, 30.224762294972372 ], [ -95.270422998468334, 30.224535295548318 ], [ -95.270308999271691, 30.224199294772806 ], [ -95.270023998639189, 30.223773294669211 ], [ -95.269696998825211, 30.223490295204378 ], [ -95.269632998220786, 30.223435295201366 ], [ -95.269395999064756, 30.223302295087443 ], [ -95.268552998917471, 30.222998295019345 ], [ -95.264504997679083, 30.221496294749574 ], [ -95.263699997164977, 30.22137529440699 ], [ -95.261950996388009, 30.221367294742372 ], [ -95.261171996157898, 30.221340294656446 ], [ -95.259427996116742, 30.221374294614076 ], [ -95.259207995710952, 30.221313294990253 ], [ -95.259047995972352, 30.221182294671916 ], [ -95.258967995920344, 30.220963295047081 ], [ -95.259002995314404, 30.217836294613715 ], [ -95.257914995219735, 30.217817294375706 ], [ -95.257303995431769, 30.217841294148151 ], [ -95.256774994810129, 30.217867294194086 ], [ -95.25633099473842, 30.217918294669545 ], [ -95.255896995210819, 30.217989294342363 ], [ -95.255389995173033, 30.218101294677311 ], [ -95.25480999419959, 30.218239294484803 ], [ -95.253926994722889, 30.218495294181213 ], [ -95.252982994507093, 30.218761294551634 ], [ -95.25224899383457, 30.218979295086328 ], [ -95.251627993676692, 30.219138294879954 ], [ -95.25090499406852, 30.219286294908962 ], [ -95.250241994011972, 30.219380294887703 ], [ -95.249777993602962, 30.219406294794304 ], [ -95.249366993302147, 30.219430294933289 ], [ -95.247616992719571, 30.219475294670758 ], [ -95.245703992272809, 30.219510295393047 ], [ -95.243262991282378, 30.219554295153046 ], [ -95.242706991285473, 30.219564295057275 ], [ -95.242575991068151, 30.207936292700655 ], [ -95.242562991351662, 30.204650292083713 ], [ -95.242171990291794, 30.204489291905119 ], [ -95.240957990638535, 30.203459291917778 ], [ -95.240865990616243, 30.203184291535912 ], [ -95.240718989907364, 30.20274929174921 ], [ -95.240349989911167, 30.202406291919466 ], [ -95.239795990425705, 30.202223291984517 ], [ -95.239161989484856, 30.201834291613473 ], [ -95.238449989616697, 30.201835292098156 ], [ -95.238159989367048, 30.201767291435829 ], [ -95.237869989434273, 30.201904292170202 ], [ -95.237368989751943, 30.202042292200879 ], [ -95.236893989203679, 30.201585291567387 ], [ -95.236655988726099, 30.201539291844963 ], [ -95.236023988929432, 30.201654292051231 ], [ -95.235653989416377, 30.201380292058833 ], [ -95.235336988467338, 30.201219291964332 ], [ -95.234624989067925, 30.201312291803838 ], [ -95.23401798891291, 30.201106292123846 ], [ -95.233885988028931, 30.200946291295132 ], [ -95.233885988665264, 30.200556291902842 ], [ -95.234543988986402, 30.199754291039248 ], [ -95.234543988358752, 30.199479291369233 ], [ -95.234200988839831, 30.199342291085394 ], [ -95.234139988729453, 30.19933929095118 ], [ -95.233356988513606, 30.199297291176666 ], [ -95.232828988246638, 30.198908291558343 ], [ -95.232617987783343, 30.198702291093369 ], [ -95.232590987688283, 30.198519290834181 ], [ -95.232695988082853, 30.198290291249037 ], [ -95.232668987903281, 30.197740290975645 ], [ -95.232932988445143, 30.197556291128684 ], [ -95.233486988757292, 30.197487290992655 ], [ -95.233644988469123, 30.197372290909808 ], [ -95.233643988643564, 30.197097290917117 ], [ -95.233564988720758, 30.197052290547525 ], [ -95.233537988283885, 30.196502291183471 ], [ -95.233379988164344, 30.196365291050238 ], [ -95.233352988424656, 30.196090290737246 ], [ -95.233695987847071, 30.195906290846196 ], [ -95.23385398800734, 30.195723290524096 ], [ -95.233879988482457, 30.195402290428824 ], [ -95.233509987876914, 30.195127290183407 ], [ -95.233482988515561, 30.19448629029926 ], [ -95.233350987702707, 30.194280289983976 ], [ -95.233349988124814, 30.19377629019942 ], [ -95.23356098791956, 30.19359229049428 ], [ -95.23427298875086, 30.19350029033037 ], [ -95.235037988769761, 30.19356828995712 ], [ -95.235210988024704, 30.193441290208941 ], [ -95.235379988403253, 30.193316290384704 ], [ -95.235879988391829, 30.193109290196684 ], [ -95.236038988879812, 30.192880289978625 ], [ -95.236407988296008, 30.192788290396255 ], [ -95.236496989201015, 30.192724290119919 ], [ -95.237013989189265, 30.192352289717856 ], [ -95.236985988362932, 30.191367289879508 ], [ -95.236853989297813, 30.191207289336884 ], [ -95.236878988869762, 30.189901289188754 ], [ -95.236773988874205, 30.189832288995525 ], [ -95.236192988496171, 30.189764289038681 ], [ -95.235981988919534, 30.189558289139672 ], [ -95.235981988517736, 30.189283289325715 ], [ -95.234951988711799, 30.188391288926045 ], [ -95.234001987559694, 30.188048289441408 ], [ -95.233869988131261, 30.187911289191796 ], [ -95.23379098833496, 30.187682288758729 ], [ -95.232840987215383, 30.186995289105404 ], [ -95.232892987515996, 30.186262289181464 ], [ -95.232654987893369, 30.186010289100594 ], [ -95.232601987561821, 30.185644288285552 ], [ -95.232495987169415, 30.185552288795261 ], [ -95.231862987105444, 30.185369288533828 ], [ -95.231096986906593, 30.184637288490801 ], [ -95.231070987333055, 30.184202288820845 ], [ -95.230911986499805, 30.183813288270375 ], [ -95.231227986946919, 30.183331288522652 ], [ -95.231095987440057, 30.183079287855207 ], [ -95.231067987243776, 30.18239228792681 ], [ -95.230777986692146, 30.182049287957355 ], [ -95.230697987179298, 30.181270288038693 ], [ -95.230512986521745, 30.181041287667266 ], [ -95.230485986615619, 30.180674287597647 ], [ -95.230695986533817, 30.180101287170544 ], [ -95.230959986339073, 30.179689287455297 ], [ -95.230906986543417, 30.179414287290133 ], [ -95.230403986757949, 30.178269286897041 ], [ -95.230381986104291, 30.177903287458662 ], [ -95.230350986845139, 30.177376287110487 ], [ -95.229875986145743, 30.177124287305098 ], [ -95.229690986328691, 30.176872286759782 ], [ -95.229663986238037, 30.176620286898398 ], [ -95.22979598662296, 30.176414286552841 ], [ -95.230243986697062, 30.17611628692865 ], [ -95.231587986972272, 30.175565287088709 ], [ -95.231797986846516, 30.175335286563637 ], [ -95.231929986890194, 30.174969286269466 ], [ -95.231849986528246, 30.174602286184463 ], [ -95.231691986358044, 30.174396286539292 ], [ -95.23184798638259, 30.172999286213255 ], [ -95.232215986547573, 30.172196286362507 ], [ -95.23321898723934, 30.172402286335362 ], [ -95.233666987098729, 30.172791286173752 ], [ -95.233997987363978, 30.172827285879954 ], [ -95.234299987629143, 30.172859286185236 ], [ -95.234457987289545, 30.17295028618183 ], [ -95.234458987734669, 30.173157286431589 ], [ -95.234194987264303, 30.173409286284546 ], [ -95.234195987720454, 30.173592286240932 ], [ -95.234379987734968, 30.173706285783883 ], [ -95.234748987058765, 30.173798286454289 ], [ -95.234749987072362, 30.174027285865659 ], [ -95.234459987193986, 30.174210286388771 ], [ -95.23445998728549, 30.1744172865168 ], [ -95.234591987918179, 30.174577286756957 ], [ -95.234592987885705, 30.17503528633133 ], [ -95.234671987072431, 30.175081286096951 ], [ -95.235040987232125, 30.174966286665661 ], [ -95.235435987736139, 30.174668286410789 ], [ -95.235910987279311, 30.17446128623104 ], [ -95.236225987401752, 30.174140285747153 ], [ -95.236463987579796, 30.174140286329813 ], [ -95.236779988405161, 30.174369286635397 ], [ -95.237122988487997, 30.174322286071146 ], [ -95.237412987905415, 30.174002286011191 ], [ -95.237702988334775, 30.173887286156216 ], [ -95.237939988150785, 30.173909286108195 ], [ -95.238308987992838, 30.174115285953505 ], [ -95.238809988165116, 30.174161286248733 ], [ -95.238942988806315, 30.174527286355655 ], [ -95.239232989001863, 30.174504285765806 ], [ -95.239390988511033, 30.174297286417694 ], [ -95.239891988557687, 30.174435286065325 ], [ -95.24028698863971, 30.174434285906166 ], [ -95.240392988904219, 30.174503285947083 ], [ -95.240366988453289, 30.174732285937324 ], [ -95.240155988730919, 30.174938286496772 ], [ -95.240103989209047, 30.175213285949184 ], [ -95.240709989507152, 30.175281285986468 ], [ -95.24081598869445, 30.175419286100258 ], [ -95.240816989441043, 30.176541286399985 ], [ -95.24094898874506, 30.176724286342097 ], [ -95.24138198949808, 30.176828286765566 ], [ -95.241423989183659, 30.176838286130423 ], [ -95.241582989761994, 30.176999286747414 ], [ -95.241714989158282, 30.1775482870971 ], [ -95.24216398955528, 30.177777286966851 ], [ -95.243165989626831, 30.1780512864275 ], [ -95.243719990112737, 30.177959286388958 ], [ -95.2438129902729, 30.177922286811988 ], [ -95.242905990046808, 30.176587286608431 ], [ -95.240864989153252, 30.173925285613947 ], [ -95.240669989481333, 30.173667286132165 ], [ -95.240520989362395, 30.173470285556526 ], [ -95.238786988428231, 30.171436285161004 ], [ -95.238629988505082, 30.171251285626866 ], [ -95.238081987972947, 30.170609285795752 ], [ -95.237527987808363, 30.169963285089388 ], [ -95.2370539878128, 30.169411285421187 ], [ -95.236272987691109, 30.168531285125962 ], [ -95.233346987216549, 30.165121284093125 ], [ -95.232073985818971, 30.1636432838852 ], [ -95.231197985934742, 30.162656283769557 ], [ -95.230909986011042, 30.162318283725703 ], [ -95.230360985812766, 30.161674284288992 ], [ -95.229633985901813, 30.160821283645195 ], [ -95.229219985604288, 30.16036728353523 ], [ -95.227773985442482, 30.158643283596643 ], [ -95.226714984648552, 30.157441283432455 ], [ -95.226609984628311, 30.157336282923165 ], [ -95.226263984248021, 30.156922282844715 ], [ -95.226059984812892, 30.156688282695743 ], [ -95.22587198434374, 30.156493282901732 ], [ -95.225674984603089, 30.156314283085639 ], [ -95.225511984337345, 30.156172283187274 ], [ -95.225329984283192, 30.15604028308557 ], [ -95.225082983817316, 30.155882283234231 ], [ -95.224865983628078, 30.155760282953338 ], [ -95.224647983498897, 30.155655283220796 ], [ -95.224341984007793, 30.155523283086943 ], [ -95.224097984029754, 30.155431282778682 ], [ -95.22388598418425, 30.155367282907861 ], [ -95.223833983857745, 30.155353282858218 ], [ -95.223600983785104, 30.155290282510329 ], [ -95.22326298406567, 30.155226282758001 ], [ -95.222948983074318, 30.15518728318888 ], [ -95.222399983051943, 30.155155282617997 ], [ -95.216582981485132, 30.155073282866095 ], [ -95.21614098179468, 30.155067282593993 ], [ -95.215809981739781, 30.155060282928389 ], [ -95.21564198133332, 30.155057282885902 ], [ -95.215544981775793, 30.155055282617823 ], [ -95.215445981829376, 30.155053282868241 ], [ -95.215382981561831, 30.155053283223662 ], [ -95.215255982071781, 30.155250283228352 ], [ -95.21399898096486, 30.157243283532019 ], [ -95.212265981008585, 30.159976284436301 ], [ -95.211275980692875, 30.161518284058797 ], [ -95.211069980480275, 30.161340284664345 ], [ -95.210960981281403, 30.161512284160729 ], [ -95.210465980612526, 30.162275284576918 ], [ -95.210313980422427, 30.162526284741201 ], [ -95.209166980390847, 30.164308285227417 ], [ -95.208462980187392, 30.165383285505939 ], [ -95.207617980642425, 30.166687285511781 ], [ -95.207083979920057, 30.167459285640962 ], [ -95.206766980110288, 30.167952285563544 ], [ -95.206435979620395, 30.168438285803408 ], [ -95.205789979785479, 30.169416285909893 ], [ -95.203495979411727, 30.172765287405923 ], [ -95.203314979310804, 30.173030287043993 ], [ -95.20307397951828, 30.173383287152134 ], [ -95.201946979408106, 30.175036287640697 ], [ -95.201587978738473, 30.17560328802627 ], [ -95.201122978538308, 30.176278287678674 ], [ -95.201016978508378, 30.176436287965732 ], [ -95.200639978628047, 30.177067287600682 ], [ -95.200349978484908, 30.177494287985024 ], [ -95.199991978864887, 30.178002288210077 ], [ -95.198680978547188, 30.179901288407478 ], [ -95.197819978018757, 30.181159288729265 ], [ -95.195777978052874, 30.184215289699289 ], [ -95.195270978260822, 30.184927289531608 ], [ -95.19388297719911, 30.186948289890317 ], [ -95.19333597712523, 30.187744290190363 ], [ -95.193007977597375, 30.188247290570615 ], [ -95.192208977196955, 30.189568290745282 ], [ -95.192096976760141, 30.189753290708087 ], [ -95.19206497712527, 30.189801291334298 ], [ -95.191722977217808, 30.190321291327368 ], [ -95.191600976748731, 30.190497290813486 ], [ -95.191278976870436, 30.190963291333283 ], [ -95.191152977132077, 30.191146291327161 ], [ -95.19021397669006, 30.192523291439944 ], [ -95.189160976973056, 30.194069291760353 ], [ -95.18872997622222, 30.194753291665002 ], [ -95.187846976098101, 30.196071292754844 ], [ -95.18615197623933, 30.198515292754191 ], [ -95.185540976109579, 30.199430293094739 ], [ -95.184956975626704, 30.200379293214969 ], [ -95.184650976222585, 30.2008412933044 ], [ -95.183490976039494, 30.202572293797633 ], [ -95.183358975815878, 30.202749293775007 ], [ -95.18312897600677, 30.203079294173449 ], [ -95.182423975784673, 30.204149293986205 ], [ -95.182389974958141, 30.204197294191438 ], [ -95.182305975148083, 30.204319294313361 ], [ -95.180057975492105, 30.207624295050074 ], [ -95.179900974475714, 30.20786229456904 ], [ -95.179677974677816, 30.208200294926943 ], [ -95.17949097483293, 30.208483294984802 ], [ -95.178733974691923, 30.209532295602511 ], [ -95.178118974185878, 30.210411295416215 ], [ -95.177373974662885, 30.21150129623889 ], [ -95.176000974460251, 30.213546296471648 ], [ -95.174823973583159, 30.215286296670264 ], [ -95.173735973503497, 30.21686229744742 ], [ -95.173334974140815, 30.217452297648531 ], [ -95.172740973730853, 30.218373297578538 ], [ -95.172372973754563, 30.218950297387426 ], [ -95.170429973348448, 30.221769298425137 ], [ -95.170153972851494, 30.22218029840349 ], [ -95.169556972713522, 30.223092298487042 ], [ -95.169296972531825, 30.224001298348806 ], [ -95.168973973327709, 30.224492298858355 ], [ -95.168503973081243, 30.225261299340733 ], [ -95.168048972402332, 30.226060299526011 ], [ -95.167688972856695, 30.226783299415597 ], [ -95.16765197298723, 30.226854299075221 ], [ -95.167085972700505, 30.228006299244477 ], [ -95.166809973000611, 30.228535299266461 ], [ -95.166557972746673, 30.229022299630198 ], [ -95.166311972253368, 30.229308299821017 ], [ -95.16563197268492, 30.230064299734043 ], [ -95.165584972243437, 30.230126299696234 ], [ -95.165084972649822, 30.230970300559225 ], [ -95.164880972324625, 30.231333300171787 ], [ -95.164407971601378, 30.232230300830643 ], [ -95.164247972024171, 30.232534300306849 ], [ -95.164903971956605, 30.232530300233311 ], [ -95.165082972055032, 30.232529300286462 ], [ -95.165770972409931, 30.232525300397665 ], [ -95.166022972346568, 30.232526300489681 ], [ -95.166870973270846, 30.23252930073329 ], [ -95.167063973278246, 30.232537300896581 ], [ -95.16729997324498, 30.232557300609582 ], [ -95.167379972774881, 30.23257130046979 ], [ -95.167455972875175, 30.232578300759769 ], [ -95.167689972704665, 30.232615300437573 ], [ -95.167919973532548, 30.232663300075 ], [ -95.167996972885021, 30.232685300255934 ], [ -95.168072972557511, 30.2327003005229 ], [ -95.168352973162456, 30.232770300953742 ], [ -95.170267973983186, 30.23324430080368 ], [ -95.170667974049863, 30.2333663001078 ], [ -95.171057974324157, 30.233503300542246 ], [ -95.171136973579507, 30.233550300834938 ], [ -95.171699974173137, 30.233800300253716 ], [ -95.172027974594428, 30.233957301081706 ], [ -95.172657973899121, 30.234245301030825 ], [ -95.173941974993738, 30.234876300849713 ], [ -95.175307975098761, 30.235555301268725 ], [ -95.175715975438848, 30.235765300933739 ], [ -95.176043975115306, 30.235949300649398 ], [ -95.176101975632776, 30.235982301128789 ], [ -95.176467975620952, 30.236210301228319 ], [ -95.176902975365294, 30.236520301402223 ], [ -95.17717497567962, 30.236725301009777 ], [ -95.178910975657288, 30.237982301595867 ], [ -95.179056976657563, 30.238092300853758 ], [ -95.180905976553902, 30.239491301216134 ], [ -95.182305976884805, 30.240538301984486 ], [ -95.183307977541361, 30.241271301444964 ], [ -95.183827977848196, 30.241654301983356 ], [ -95.184838977693545, 30.242423301657166 ], [ -95.186054978220952, 30.243324301618834 ], [ -95.186810978409127, 30.243895302212181 ], [ -95.186915978351877, 30.243975302525747 ], [ -95.186972978030894, 30.244026301813648 ], [ -95.187149978994071, 30.24416130191176 ], [ -95.187400978560959, 30.244327302263436 ], [ -95.187542979084583, 30.244411301949381 ], [ -95.187666978374111, 30.244478302121173 ], [ -95.187809978313197, 30.244562301824512 ], [ -95.18794697904066, 30.244632302565385 ], [ -95.188103979275468, 30.244705302617607 ], [ -95.188497978973402, 30.244837302576574 ], [ -95.188675979168536, 30.244889302714466 ], [ -95.189030978957831, 30.244968302039805 ], [ -95.189613979441532, 30.245042302675905 ], [ -95.195795980950351, 30.245605302265663 ], [ -95.196356981259271, 30.245689302044322 ], [ -95.19696198084786, 30.245830301868608 ], [ -95.197443981729521, 30.245965302050454 ], [ -95.197952981160952, 30.246155302597597 ], [ -95.198430981170716, 30.246372302228284 ], [ -95.198875981461981, 30.246630302048732 ], [ -95.199286981259291, 30.246928302068479 ], [ -95.199649982018101, 30.247265302795707 ], [ -95.199734982388065, 30.247357302532258 ], [ -95.199996981593799, 30.24764130231938 ], [ -95.200670982260093, 30.248463302718207 ], [ -95.200713981786819, 30.248519302587816 ], [ -95.200939981877127, 30.248812302866504 ], [ -95.201196982600791, 30.249064302485152 ], [ -95.201544982432566, 30.249385302512376 ], [ -95.20186398275068, 30.249638303153684 ], [ -95.202352982953769, 30.24996630311847 ], [ -95.209012984276825, 30.253688303676324 ], [ -95.209658984284786, 30.254020303236111 ], [ -95.210272985131468, 30.254230303453429 ], [ -95.210788984567046, 30.254352303199347 ], [ -95.211349985346743, 30.254450303804038 ], [ -95.211833984833589, 30.254489303603108 ], [ -95.212240985412706, 30.25450030327108 ], [ -95.21266498602553, 30.254473303375718 ], [ -95.213088985555515, 30.254430303593999 ], [ -95.21356298614613, 30.254347303187348 ], [ -95.217179986391997, 30.253539303018211 ], [ -95.217553986808937, 30.253473303168253 ], [ -95.217715987215144, 30.253444302965843 ], [ -95.21784298700122, 30.253430302736721 ], [ -95.218109986857556, 30.253402303290201 ], [ -95.218454986900397, 30.253385302497239 ], [ -95.219080987422387, 30.253416303264498 ], [ -95.219657987342046, 30.253473303364046 ], [ -95.219984986889386, 30.253545303191601 ], [ -95.220434987417931, 30.25364430271393 ], [ -95.221096987552926, 30.253808303293003 ], [ -95.223003988507273, 30.254310303393577 ], [ -95.226484989485598, 30.255227303149283 ], [ -95.232887991247679, 30.256878302784266 ], [ -95.23334599130223, 30.25700930288254 ], [ -95.233641991158194, 30.257109302943579 ], [ -95.23393599079094, 30.257227303506518 ], [ -95.237117991684954, 30.258911303244091 ], [ -95.237711992166709, 30.259206303655848 ], [ -95.238138992344474, 30.259399303346328 ], [ -95.238551992354175, 30.259554303668967 ], [ -95.238765992456109, 30.259620303733829 ], [ -95.23895499285139, 30.259661303569565 ], [ -95.239266992991631, 30.259709303817939 ], [ -95.239644992592659, 30.25973630385139 ], [ -95.240108993052033, 30.259740303734667 ], [ -95.240618992655413, 30.25970030308126 ], [ -95.243597993791681, 30.259275302865674 ], [ -95.24484699402521, 30.25908730304338 ], [ -95.245423994440472, 30.258975303406768 ], [ -95.245718994751087, 30.258912302847556 ], [ -95.246039994039535, 30.258824303182838 ], [ -95.246377994032954, 30.258707303397134 ], [ -95.247925994545582, 30.258022302459906 ], [ -95.248231994653835, 30.257904302784297 ], [ -95.248481994906086, 30.257817302355043 ], [ -95.248871994509358, 30.257712302815278 ], [ -95.249162995407289, 30.257649302578262 ], [ -95.249550995187747, 30.257594302733036 ], [ -95.249736995234201, 30.257574302617833 ], [ -95.251322995807669, 30.257544302264645 ], [ -95.251435995665446, 30.257542302272341 ], [ -95.25249799629951, 30.257530302193576 ], [ -95.252954996150677, 30.257518302335583 ], [ -95.253207996005258, 30.257503302415465 ], [ -95.253443995979623, 30.257477302829624 ], [ -95.253672995911387, 30.25744730211769 ], [ -95.254035996233583, 30.257375302350546 ], [ -95.25446299617451, 30.257266302408219 ], [ -95.254808996785272, 30.25716230225834 ], [ -95.255204996399726, 30.257011302177197 ], [ -95.255364997056446, 30.256941302035258 ], [ -95.255658996754647, 30.256804302116795 ], [ -95.255847997042636, 30.256702302384092 ], [ -95.256046997005157, 30.256586302297446 ], [ -95.256944996650375, 30.256009301959992 ], [ -95.257267997172576, 30.255821301899385 ], [ -95.257469996647941, 30.255704301885469 ], [ -95.25759099673202, 30.255641302022141 ], [ -95.257877997334887, 30.255501302306484 ], [ -95.258164997536056, 30.255371302061391 ], [ -95.258515997473154, 30.255230302142301 ], [ -95.258770997719822, 30.25514130180748 ], [ -95.259029997298697, 30.255060302049944 ], [ -95.259528997976318, 30.254914301487389 ], [ -95.260732998291132, 30.254586301605936 ], [ -95.262121997847103, 30.254205301158198 ], [ -95.262370998185474, 30.254148301115507 ], [ -95.262873998475769, 30.254058301400072 ], [ -95.263157998143086, 30.254019301077292 ], [ -95.263419999025842, 30.253988301745576 ], [ -95.264383998685631, 30.253915301662396 ], [ -95.264793998736778, 30.25389730128526 ], [ -95.265693998889233, 30.25387530138406 ], [ -95.266088999707137, 30.253886301014983 ], [ -95.266407999478631, 30.25390330167658 ], [ -95.266787999723519, 30.25393830139155 ], [ -95.267292999110893, 30.254015301127708 ], [ -95.267735000133285, 30.254099301237865 ], [ -95.268100999829997, 30.254175301129823 ], [ -95.270752000018661, 30.254824301340616 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1334, "Tract": "48339694601", "Area_SqMi": 28.340155831342393, "total_2009": 279, "total_2010": 286, "total_2011": 218, "total_2012": 345, "total_2013": 382, "total_2014": 420, "total_2015": 430, "total_2016": 372, "total_2017": 401, "total_2018": 457, "total_2019": 485, "total_2020": 540, "age1": 163, "age2": 362, "age3": 118, "earn1": 109, "earn2": 159, "earn3": 375, "naics_s01": 21, "naics_s02": 0, "naics_s03": 15, "naics_s04": 143, "naics_s05": 125, "naics_s06": 1, "naics_s07": 20, "naics_s08": 12, "naics_s09": 2, "naics_s10": 3, "naics_s11": 5, "naics_s12": 84, "naics_s13": 0, "naics_s14": 54, "naics_s15": 0, "naics_s16": 16, "naics_s17": 15, "naics_s18": 70, "naics_s19": 17, "naics_s20": 40, "race1": 573, "race2": 49, "race3": 4, "race4": 10, "race5": 0, "race6": 7, "ethnicity1": 529, "ethnicity2": 114, "edu1": 62, "edu2": 147, "edu3": 151, "edu4": 120, "Shape_Length": 145743.54224285216, "Shape_Area": 790075039.91635787, "total_2021": 543, "total_2022": 643 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.813955149131246, 30.45578532248874 ], [ -95.81395514866351, 30.455747322937661 ], [ -95.813948149039163, 30.455659322839129 ], [ -95.813941149226807, 30.455572322505997 ], [ -95.813927149198378, 30.455395322493821 ], [ -95.813912148512529, 30.455217322526412 ], [ -95.813865148710278, 30.454635322254408 ], [ -95.813858148824934, 30.454559322097712 ], [ -95.813407148663856, 30.449025321572947 ], [ -95.81340014835331, 30.448930320866843 ], [ -95.813362148023259, 30.44846732138387 ], [ -95.813151148212427, 30.445889321023721 ], [ -95.812639147425017, 30.439622319800094 ], [ -95.812403147854724, 30.436731318411681 ], [ -95.812211147766831, 30.434383318331591 ], [ -95.812170147998074, 30.433882318115106 ], [ -95.811946146944962, 30.431632317668114 ], [ -95.811936147101278, 30.431537318231474 ], [ -95.81170514758027, 30.428737317321094 ], [ -95.811396146386201, 30.424914316884138 ], [ -95.811344146956401, 30.424273316132584 ], [ -95.810748145883537, 30.416976315148013 ], [ -95.810743146441681, 30.416910315231998 ], [ -95.810394146190802, 30.412707314110889 ], [ -95.810322146213096, 30.411826314357885 ], [ -95.810321146333408, 30.411815313708438 ], [ -95.809875146055973, 30.406435313096384 ], [ -95.809830145648547, 30.405798312404752 ], [ -95.809528145445739, 30.4015313118236 ], [ -95.809280145378509, 30.398541311597693 ], [ -95.809017145372451, 30.395364311003199 ], [ -95.808984144503199, 30.394967310683032 ], [ -95.808973144817941, 30.39483831022136 ], [ -95.808574144234242, 30.39001730968544 ], [ -95.808451143988592, 30.388492309128313 ], [ -95.80841914436553, 30.388108309519858 ], [ -95.807477143303146, 30.376256306425894 ], [ -95.80735714376884, 30.375181307102835 ], [ -95.807309143328169, 30.374375306187936 ], [ -95.807305143901644, 30.374306306374699 ], [ -95.80730014333308, 30.374237306316861 ], [ -95.807263143891831, 30.373607306493128 ], [ -95.80712814319368, 30.371366306316887 ], [ -95.807047142815392, 30.370495305806241 ], [ -95.807034143215688, 30.370357305689833 ], [ -95.80702114287979, 30.370218305728049 ], [ -95.807011142904912, 30.37010930544232 ], [ -95.807001142923113, 30.370000306051978 ], [ -95.806962143421615, 30.369560305772399 ], [ -95.806847143091304, 30.368292305130833 ], [ -95.806742142807693, 30.367231305213647 ], [ -95.806216142789367, 30.3606833037129 ], [ -95.806205142492473, 30.360552303820331 ], [ -95.806193142325014, 30.360406303660781 ], [ -95.805908142652996, 30.356962302733894 ], [ -95.805717142119192, 30.354683302452184 ], [ -95.803584141821176, 30.355152302852286 ], [ -95.802664141816763, 30.35534730268704 ], [ -95.802113140793509, 30.355471303308299 ], [ -95.799849140313896, 30.355960302666023 ], [ -95.795510139397976, 30.356873303075975 ], [ -95.795161139056034, 30.356946303851842 ], [ -95.791729138569337, 30.357678304144319 ], [ -95.789522137833927, 30.358149303936791 ], [ -95.789022138399531, 30.358252303879429 ], [ -95.787330137865681, 30.35861130394925 ], [ -95.786902137853019, 30.358722303962296 ], [ -95.786690137918498, 30.358783304161893 ], [ -95.786281137026066, 30.358911304521655 ], [ -95.785829137348756, 30.359065304611853 ], [ -95.78560613719543, 30.359150303845485 ], [ -95.785021137445284, 30.359392304110351 ], [ -95.78486113692388, 30.359463304336867 ], [ -95.784543136876792, 30.359612304720567 ], [ -95.784081136822223, 30.359851304838887 ], [ -95.783337136441943, 30.360298304962029 ], [ -95.78319613632992, 30.36039130426861 ], [ -95.783147136434522, 30.360423304544987 ], [ -95.78277313700849, 30.360681304853955 ], [ -95.782412136051505, 30.360944304865427 ], [ -95.781019136382341, 30.362066305321914 ], [ -95.780932136094634, 30.362135305260022 ], [ -95.779065135974648, 30.363618305312112 ], [ -95.778122135241489, 30.364351305722042 ], [ -95.777252135542781, 30.365038305471767 ], [ -95.776676135289435, 30.36548330564279 ], [ -95.775950134782533, 30.366076305984258 ], [ -95.775703134728232, 30.366271306155628 ], [ -95.775195134687522, 30.36666930642324 ], [ -95.773731134386011, 30.367822306581047 ], [ -95.77330613474696, 30.368166306317796 ], [ -95.773027134621032, 30.368392306512607 ], [ -95.772987134369785, 30.368424306470715 ], [ -95.772659134236022, 30.368683306864295 ], [ -95.771818133928249, 30.369347306798154 ], [ -95.771789134115707, 30.369370306939064 ], [ -95.7712291336519, 30.369815307112095 ], [ -95.77096613417072, 30.370024306584849 ], [ -95.769108133855298, 30.371499306894105 ], [ -95.766031133019851, 30.373942308285486 ], [ -95.764550133074053, 30.375127308209006 ], [ -95.764171132669091, 30.375415308300866 ], [ -95.763685132677239, 30.375819307979732 ], [ -95.763318132646233, 30.376140308180027 ], [ -95.762019132128799, 30.377217308479032 ], [ -95.761784131921971, 30.37743730909807 ], [ -95.761155131440745, 30.377978308571549 ], [ -95.758399130899477, 30.380310309139162 ], [ -95.758003131188531, 30.380630309146515 ], [ -95.757681130838435, 30.380865309171483 ], [ -95.757462131510025, 30.381011309347059 ], [ -95.757345130589755, 30.381063309501638 ], [ -95.756855131084521, 30.381345309416922 ], [ -95.756657131180518, 30.381451309633942 ], [ -95.756250130460387, 30.381653309857398 ], [ -95.755807130438313, 30.381832309578186 ], [ -95.755358130229752, 30.3819973094486 ], [ -95.754946130680466, 30.382116310254567 ], [ -95.754498130008002, 30.382260309791661 ], [ -95.754150130008057, 30.382353309943039 ], [ -95.753980129813996, 30.382407309891295 ], [ -95.753565129696199, 30.382523309736708 ], [ -95.753295129661012, 30.382594309628239 ], [ -95.753163130129238, 30.382634309985054 ], [ -95.753046129959031, 30.38267631005327 ], [ -95.752947129537034, 30.382701309661091 ], [ -95.752632129856764, 30.382792310388496 ], [ -95.752383130047662, 30.382869310484406 ], [ -95.751991129484324, 30.382983310227811 ], [ -95.751866129224425, 30.383013310022065 ], [ -95.750401129645539, 30.383443310424674 ], [ -95.748946128558458, 30.383856310850543 ], [ -95.748512128636506, 30.383983310939612 ], [ -95.748071128598866, 30.384107310124303 ], [ -95.747800128511543, 30.38419131066032 ], [ -95.747598128228262, 30.384247310271427 ], [ -95.747549128679452, 30.384022310436119 ], [ -95.746363128574345, 30.384421310342802 ], [ -95.74584712814351, 30.384742310880604 ], [ -95.745349128091803, 30.385099310749311 ], [ -95.740786127628127, 30.38838831180086 ], [ -95.739441126510201, 30.389250311856976 ], [ -95.738193126608223, 30.389681312175039 ], [ -95.737838126158024, 30.389794311929929 ], [ -95.734609125558336, 30.390822312216304 ], [ -95.734287125714999, 30.39087531278679 ], [ -95.73400712518378, 30.39092131211348 ], [ -95.7332651249056, 30.391002312668299 ], [ -95.732224124881668, 30.390980312784212 ], [ -95.731712124667638, 30.390893312079321 ], [ -95.73101612441566, 30.390712312087878 ], [ -95.729904124040075, 30.39032431277283 ], [ -95.728104124034218, 30.389528312717438 ], [ -95.726461123071331, 30.388402312274216 ], [ -95.726261123277311, 30.388240312316373 ], [ -95.721710121877436, 30.38455431155996 ], [ -95.721651121978837, 30.384506311214221 ], [ -95.721442122212295, 30.384337311434773 ], [ -95.715809120462438, 30.379929310866626 ], [ -95.714835119829303, 30.379540310578257 ], [ -95.714654120321867, 30.379466310634044 ], [ -95.713943120002227, 30.379369310651192 ], [ -95.713435119848256, 30.379301310970494 ], [ -95.712370119072474, 30.379380311135925 ], [ -95.712044119761657, 30.379469310971324 ], [ -95.711099119493525, 30.379851311085588 ], [ -95.710045118584418, 30.38032631114076 ], [ -95.708860118524882, 30.380615311295333 ], [ -95.708093118757276, 30.38064431172527 ], [ -95.707355118278457, 30.380595311284136 ], [ -95.706387117647893, 30.380359311355107 ], [ -95.705557117794825, 30.379925311570535 ], [ -95.704806117842637, 30.379294310802084 ], [ -95.703925117222397, 30.37822531141866 ], [ -95.703007116443914, 30.377011311120505 ], [ -95.702940117249653, 30.376921310919709 ], [ -95.70044911599345, 30.373575310190656 ], [ -95.698930115739117, 30.371763310117096 ], [ -95.698818115333125, 30.371607309900501 ], [ -95.698596115974425, 30.371308310059483 ], [ -95.69816811587971, 30.370831309991857 ], [ -95.698194115799282, 30.371753309502267 ], [ -95.698244115576486, 30.373638310450101 ], [ -95.698257115768072, 30.37396631046699 ], [ -95.698259115368614, 30.374128310216111 ], [ -95.698249115820772, 30.374455310241991 ], [ -95.698243115986031, 30.375002310832869 ], [ -95.69825311588113, 30.376166311169513 ], [ -95.698248115363668, 30.376403310533068 ], [ -95.698247115189687, 30.376916311256331 ], [ -95.698245115416498, 30.377682310818646 ], [ -95.698227115290877, 30.378633310862423 ], [ -95.698195116072412, 30.379025311522252 ], [ -95.698141115546349, 30.379417311226565 ], [ -95.698063115364775, 30.379798311530994 ], [ -95.698030115875312, 30.379934311725883 ], [ -95.697973115729098, 30.380208311913705 ], [ -95.69792211601532, 30.38041331132947 ], [ -95.697858115497823, 30.380618311806309 ], [ -95.697752115455913, 30.380920312116526 ], [ -95.697626115305354, 30.381217311545708 ], [ -95.697534115795207, 30.381413311631022 ], [ -95.697433115986144, 30.381606311897443 ], [ -95.697315115470005, 30.381795312371281 ], [ -95.697184115412398, 30.382038312248262 ], [ -95.697159115496888, 30.382083311683644 ], [ -95.697018115452209, 30.382382311836398 ], [ -95.696935115774863, 30.382581312122337 ], [ -95.696858115285835, 30.382802312230304 ], [ -95.696815115475943, 30.382966312454808 ], [ -95.696765115791621, 30.383215312341665 ], [ -95.696759115829892, 30.38325631210181 ], [ -95.696727115590534, 30.38346731234601 ], [ -95.696710115839579, 30.383632312109043 ], [ -95.696698115209912, 30.383884312729268 ], [ -95.69670311566442, 30.384116312511768 ], [ -95.696667115688072, 30.385395312417938 ], [ -95.696666115695919, 30.385462313035223 ], [ -95.696652115811517, 30.385777312788342 ], [ -95.69664011600193, 30.386064312844105 ], [ -95.696599116199891, 30.387053312701273 ], [ -95.696586115556158, 30.387460313408358 ], [ -95.696574116037098, 30.388167313383356 ], [ -95.696577115588994, 30.388519313332111 ], [ -95.69657711548696, 30.388906313362309 ], [ -95.696597115982982, 30.389812313767226 ], [ -95.696621115871594, 30.391028314092246 ], [ -95.696628116253976, 30.391411314337425 ], [ -95.696634116042972, 30.391482314093558 ], [ -95.696646116355268, 30.391554313563905 ], [ -95.696665115718787, 30.391626313908276 ], [ -95.696722116364469, 30.391757313821124 ], [ -95.696757115981057, 30.391815314026601 ], [ -95.696802116468405, 30.391877313948065 ], [ -95.696853115622289, 30.391933313780036 ], [ -95.69703311594688, 30.392097313673816 ], [ -95.697139115700395, 30.392210314388361 ], [ -95.697187115799721, 30.39227131379041 ], [ -95.697269115785048, 30.392403313630208 ], [ -95.697336116035132, 30.392536314100724 ], [ -95.69736411648762, 30.392606313964777 ], [ -95.697405116489151, 30.39274731433936 ], [ -95.697420116377145, 30.392819314038885 ], [ -95.69817511710967, 30.395593314560479 ], [ -95.698350116865228, 30.396183314358773 ], [ -95.698613116576439, 30.397067315258976 ], [ -95.698772116954544, 30.397583314850845 ], [ -95.69893811723432, 30.398096315370157 ], [ -95.699205117237426, 30.399032315544101 ], [ -95.699334116779525, 30.399486315782084 ], [ -95.699393117006053, 30.399785315073728 ], [ -95.699433116610038, 30.400030315204852 ], [ -95.699484116924879, 30.40033431536575 ], [ -95.699525117301221, 30.400742315478112 ], [ -95.699599116936625, 30.401522316230071 ], [ -95.699642117740737, 30.401892315607267 ], [ -95.69964111714593, 30.402024316177979 ], [ -95.699635117187356, 30.402090315895602 ], [ -95.699611116989843, 30.402188316326008 ], [ -95.69958511690858, 30.402265315656468 ], [ -95.699557117365956, 30.402330315953574 ], [ -95.69952511760232, 30.402390315779765 ], [ -95.698975117544123, 30.40300631659564 ], [ -95.698841117499143, 30.403146316543516 ], [ -95.698784117389778, 30.403211316176481 ], [ -95.698650117022169, 30.403364316384906 ], [ -95.698474117341235, 30.403591316102805 ], [ -95.698364116545434, 30.403742316346776 ], [ -95.698131116717349, 30.404108316658142 ], [ -95.698013117315099, 30.404297316356313 ], [ -95.697626116957707, 30.404912316950657 ], [ -95.697526116734068, 30.405080316534306 ], [ -95.697376116890595, 30.405297316884898 ], [ -95.697250116312631, 30.405453317006511 ], [ -95.697073116733705, 30.405647316838401 ], [ -95.696977116756486, 30.405743316364688 ], [ -95.69686511669795, 30.405881316470776 ], [ -95.696846117127606, 30.405908316656152 ], [ -95.696714116325424, 30.40610331686478 ], [ -95.696631116930092, 30.406255317068215 ], [ -95.696560116692325, 30.406413316760929 ], [ -95.696493116737614, 30.406604316595228 ], [ -95.696426117188963, 30.406825316587256 ], [ -95.696306116613684, 30.407276317507545 ], [ -95.696251116692366, 30.407500317457693 ], [ -95.696143116765825, 30.408022317207184 ], [ -95.696123116424289, 30.408264317482253 ], [ -95.696099116176782, 30.408544317791772 ], [ -95.696048117077382, 30.409335317190575 ], [ -95.695916117209009, 30.41048731817969 ], [ -95.695916116490963, 30.41050531770636 ], [ -95.695916116424542, 30.411029317604363 ], [ -95.696608117202544, 30.411010317729609 ], [ -95.697601117170407, 30.410974317682903 ], [ -95.697982116772437, 30.410972317891488 ], [ -95.698362116887751, 30.410987317534072 ], [ -95.698477117305487, 30.410984318210712 ], [ -95.698749117458249, 30.411002317777516 ], [ -95.699122117457406, 30.411041317487992 ], [ -95.699200117590053, 30.411057317480275 ], [ -95.699289117903575, 30.411070318210033 ], [ -95.699380117500809, 30.411089318009772 ], [ -95.69969511762659, 30.411129318030241 ], [ -95.700051118177711, 30.411193318033664 ], [ -95.700406117377412, 30.411276318101248 ], [ -95.700754117978448, 30.411373317723438 ], [ -95.701205117970844, 30.411505317734722 ], [ -95.702111118411494, 30.411741317545211 ], [ -95.7026101188913, 30.411858317628788 ], [ -95.703881118550314, 30.41217831805205 ], [ -95.707045119207976, 30.413006317789524 ], [ -95.707229119939953, 30.413060317462616 ], [ -95.707603119742785, 30.41315431786683 ], [ -95.707980119720517, 30.413238318233557 ], [ -95.708484119551784, 30.413330317994653 ], [ -95.709110119968116, 30.413436318104058 ], [ -95.709741120177341, 30.413520317565997 ], [ -95.710348120117757, 30.413582317490661 ], [ -95.711019120920724, 30.413639317597465 ], [ -95.711354120907615, 30.413658317642639 ], [ -95.711690121347075, 30.413672317781216 ], [ -95.712352121270982, 30.41368831762157 ], [ -95.713221121538538, 30.413726317746875 ], [ -95.714382121461995, 30.413753317665705 ], [ -95.714594121805874, 30.413759317444249 ], [ -95.714689121702676, 30.413767317758857 ], [ -95.714778121422924, 30.41376931735347 ], [ -95.715233121608549, 30.413805317731679 ], [ -95.715597121623858, 30.41384431758982 ], [ -95.715956122190505, 30.413900317984968 ], [ -95.716047121870147, 30.413919318113066 ], [ -95.716135121845909, 30.413932317537551 ], [ -95.71666612220713, 30.414046317967923 ], [ -95.717018121921171, 30.41414031774098 ], [ -95.717106122567756, 30.414167317592856 ], [ -95.717190121853221, 30.414188317661459 ], [ -95.7173621219182, 30.414245317521448 ], [ -95.718067122890233, 30.414499317486698 ], [ -95.71815512212271, 30.414525317686365 ], [ -95.71823912298116, 30.414555318183808 ], [ -95.71832412301913, 30.414579317863719 ], [ -95.718411122455166, 30.414609318104336 ], [ -95.718844123192198, 30.41473231814409 ], [ -95.719196122526725, 30.414820317700432 ], [ -95.719286123324721, 30.414836318026943 ], [ -95.719462123134704, 30.414876318071837 ], [ -95.719534122914411, 30.414890317591809 ], [ -95.719909122666621, 30.414961318218911 ], [ -95.720088123473559, 30.414990317526275 ], [ -95.720540123531805, 30.415051317920895 ], [ -95.721175122951294, 30.415108317737207 ], [ -95.721267123368875, 30.41511031737182 ], [ -95.721359123293723, 30.415118317631936 ], [ -95.721631123207786, 30.415127317437669 ], [ -95.722181123456181, 30.415127317429164 ], [ -95.722366123711282, 30.415117317760632 ], [ -95.72254712345557, 30.415113317898374 ], [ -95.722767123923603, 30.415100317633577 ], [ -95.726981124572035, 30.414888317580822 ], [ -95.727567125142883, 30.414903317188902 ], [ -95.731307125577132, 30.415122317521302 ], [ -95.73157812580834, 30.415159317439581 ], [ -95.731933126433347, 30.41523431708076 ], [ -95.732193126383123, 30.41530631704445 ], [ -95.732362126263254, 30.415365317397477 ], [ -95.732615126025337, 30.415465317694728 ], [ -95.732853126852703, 30.415575317835636 ], [ -95.732934126229068, 30.415616317311265 ], [ -95.733086126108745, 30.415702317761038 ], [ -95.733308126731856, 30.415842317399051 ], [ -95.733449126087336, 30.415944317844275 ], [ -95.733642126969315, 30.416095317371486 ], [ -95.73376412622585, 30.416202317585775 ], [ -95.733946126508883, 30.416383317176599 ], [ -95.734111126718133, 30.416571317806653 ], [ -95.734264126534839, 30.416767317659989 ], [ -95.734441126573628, 30.417044317251381 ], [ -95.734555126877055, 30.41726131798687 ], [ -95.734643127192257, 30.417467317580591 ], [ -95.734724126993527, 30.417692318220709 ], [ -95.734805126526879, 30.418002318077303 ], [ -95.734832127125358, 30.418156318086186 ], [ -95.734850127036509, 30.41831331803737 ], [ -95.735006126907791, 30.420375318382394 ], [ -95.735094127119297, 30.424376319181267 ], [ -95.735108127084303, 30.424552319208704 ], [ -95.735152127505387, 30.424897318838205 ], [ -95.735206127089569, 30.425239319100033 ], [ -95.735275127294841, 30.425582319321386 ], [ -95.73536112722671, 30.42592231989137 ], [ -95.737466128891924, 30.433443320627237 ], [ -95.737543128338089, 30.433632320672761 ], [ -95.737632128983137, 30.433816321249168 ], [ -95.737797128960722, 30.434081321396857 ], [ -95.73792612890901, 30.434249321008394 ], [ -95.738065128539304, 30.434409321063281 ], [ -95.738219128466469, 30.434562321304252 ], [ -95.738470128252544, 30.434769321009494 ], [ -95.738744128954266, 30.434951320721574 ], [ -95.738939128430928, 30.435060320812994 ], [ -95.739041128759226, 30.435112321277877 ], [ -95.739144129446544, 30.435159321561795 ], [ -95.739176129044438, 30.435171321003644 ], [ -95.73935312903437, 30.435241320916848 ], [ -95.739572128905621, 30.435312321029315 ], [ -95.739728129127599, 30.435357321468295 ], [ -95.739948128788981, 30.43540432099725 ], [ -95.741161129331914, 30.435725320995548 ], [ -95.741385129372759, 30.435774321414886 ], [ -95.741601129584822, 30.435837321296528 ], [ -95.741711129730902, 30.435873321132114 ], [ -95.74201912970149, 30.43600432119522 ], [ -95.742217129546134, 30.436105320918433 ], [ -95.742409130218547, 30.436220321598888 ], [ -95.742586129837093, 30.436345321500315 ], [ -95.7427551301964, 30.436478321361943 ], [ -95.742913129468207, 30.436622321243476 ], [ -95.74298912964278, 30.436698321448507 ], [ -95.743128130188111, 30.436859321059671 ], [ -95.743193130421616, 30.436940321723291 ], [ -95.743339129867167, 30.437141321392208 ], [ -95.743455130003952, 30.437318321734359 ], [ -95.743508130184168, 30.437407321554826 ], [ -95.743604130023598, 30.437596321201067 ], [ -95.743680130078857, 30.437788321164302 ], [ -95.743744129916408, 30.43798232162478 ], [ -95.743771130062825, 30.43808132169417 ], [ -95.743810130700581, 30.438280321475311 ], [ -95.743824130264841, 30.438385321506704 ], [ -95.743832130822909, 30.438485321243967 ], [ -95.743843130137122, 30.438933321612122 ], [ -95.744044130941788, 30.446756323755555 ], [ -95.744096131389597, 30.44880732331805 ], [ -95.744144130873266, 30.450396324277246 ], [ -95.749606132246043, 30.450351323462744 ], [ -95.752320132570119, 30.450323323572103 ], [ -95.752403132959031, 30.450311323904213 ], [ -95.752484132890473, 30.450291323734852 ], [ -95.752574133552613, 30.450258323551228 ], [ -95.752645133228498, 30.45022132350698 ], [ -95.752777133272772, 30.450130323566878 ], [ -95.752833132949732, 30.45007432378382 ], [ -95.752884132719913, 30.450015323407893 ], [ -95.75293213280068, 30.449942323237419 ], [ -95.75296413293556, 30.449876323723 ], [ -95.752990133462845, 30.44980332387534 ], [ -95.75300613298927, 30.449732323900236 ], [ -95.753087133370997, 30.448548323026184 ], [ -95.753089133485616, 30.448452323433042 ], [ -95.753110133508486, 30.44826832373035 ], [ -95.753140133653829, 30.448123323107566 ], [ -95.753181133254074, 30.447976323142466 ], [ -95.753260132641586, 30.447859323418413 ], [ -95.753313133583575, 30.447808323314813 ], [ -95.753376133684839, 30.447766322763997 ], [ -95.753441133465842, 30.44772932323459 ], [ -95.753515132934197, 30.447698323276853 ], [ -95.753672133196901, 30.447671323168251 ], [ -95.755682133980514, 30.447684323403713 ], [ -95.755806133609951, 30.447681322830171 ], [ -95.75599013378671, 30.447688323186828 ], [ -95.756208134382192, 30.447713322913337 ], [ -95.756315133694926, 30.447732322821704 ], [ -95.756984134099611, 30.447825323219195 ], [ -95.75764813439072, 30.447940322770339 ], [ -95.758986135030995, 30.448148323007846 ], [ -95.759131134789101, 30.44815432284182 ], [ -95.759278134657777, 30.448144323367341 ], [ -95.759425134244808, 30.448126322693462 ], [ -95.75952213520452, 30.448106322706234 ], [ -95.759614134527595, 30.448081322706368 ], [ -95.759695134968567, 30.448053322658264 ], [ -95.760434135237716, 30.44775132326378 ], [ -95.760614134628653, 30.44769832315421 ], [ -95.760854135422008, 30.447657323085277 ], [ -95.761100134774949, 30.447649322499878 ], [ -95.76118213518231, 30.447654323321785 ], [ -95.763606136001727, 30.447649322888516 ], [ -95.765993135935091, 30.447609322681341 ], [ -95.766702136139102, 30.447580322383864 ], [ -95.767537137045906, 30.447528323091568 ], [ -95.767719136648282, 30.447502322431806 ], [ -95.7678381366606, 30.447478322726916 ], [ -95.767928136406894, 30.447455322942066 ], [ -95.768015136889559, 30.447427322703216 ], [ -95.768742136943715, 30.447144322693195 ], [ -95.768789137304836, 30.447126322153498 ], [ -95.769450137459557, 30.446842322778256 ], [ -95.769973136975679, 30.446602322179039 ], [ -95.77006613776156, 30.446563322204202 ], [ -95.770330137223112, 30.446489321920986 ], [ -95.770449137615728, 30.446468322028597 ], [ -95.77054213757782, 30.446456322329475 ], [ -95.77069413766948, 30.446446321881499 ], [ -95.770753137380282, 30.446447322273873 ], [ -95.770786137249402, 30.446448322190943 ], [ -95.774694138981147, 30.446363322402195 ], [ -95.777759139796231, 30.446301322252648 ], [ -95.778036138908959, 30.446283322196802 ], [ -95.778316139031546, 30.446260322096919 ], [ -95.778591139848928, 30.446228322198799 ], [ -95.778866139222373, 30.446187321820741 ], [ -95.780093139837859, 30.445961322027902 ], [ -95.781103140666843, 30.445790321861608 ], [ -95.78118914001918, 30.445778322031884 ], [ -95.781278139841945, 30.445758321428908 ], [ -95.781362140195995, 30.445733321698874 ], [ -95.781457139798661, 30.445693322167607 ], [ -95.781664139914326, 30.445594321852607 ], [ -95.781803140167483, 30.445548321505797 ], [ -95.781964140649421, 30.445516322022044 ], [ -95.782125140513884, 30.445517321611142 ], [ -95.782203140205624, 30.44553532159664 ], [ -95.782279140372822, 30.445559321304696 ], [ -95.782425140024401, 30.445623322080731 ], [ -95.782558140660754, 30.445701321984682 ], [ -95.782675140825987, 30.445791322107674 ], [ -95.784438140896185, 30.446983322233805 ], [ -95.784499140579186, 30.447034321951001 ], [ -95.784635140606227, 30.447123322006224 ], [ -95.784777140776725, 30.447195322344449 ], [ -95.784930140823207, 30.447259321926484 ], [ -95.785169141552132, 30.447325322291729 ], [ -95.785332141352114, 30.447348322099835 ], [ -95.787637142042257, 30.447737321847132 ], [ -95.787711141647932, 30.4477493220935 ], [ -95.787882141972673, 30.447761322112523 ], [ -95.788041142498088, 30.447762322010998 ], [ -95.78820114234702, 30.447755321967382 ], [ -95.788357141767889, 30.447737321843832 ], [ -95.790659142606813, 30.447410321405179 ], [ -95.792012143481386, 30.447218321641891 ], [ -95.792254143074445, 30.447169321628206 ], [ -95.792618143563161, 30.447095321694853 ], [ -95.79311214371549, 30.446981321998521 ], [ -95.793180143458372, 30.447026322014398 ], [ -95.793252143471051, 30.447066321584888 ], [ -95.793329143703602, 30.447098321654547 ], [ -95.793408143743335, 30.447122321302974 ], [ -95.793489143350541, 30.447141321675836 ], [ -95.793574143777633, 30.447151321559442 ], [ -95.793660143104958, 30.447153321591898 ], [ -95.793842143089194, 30.447141321654776 ], [ -95.7940391438445, 30.44714032174587 ], [ -95.794337143396191, 30.447158321870667 ], [ -95.79452914364478, 30.447187321373622 ], [ -95.794721143531135, 30.447225321344934 ], [ -95.794815144018955, 30.447249321828757 ], [ -95.795003143697514, 30.447306321512677 ], [ -95.795093143934267, 30.447341321855934 ], [ -95.79537614397627, 30.447474321937808 ], [ -95.7957581443181, 30.447670321359229 ], [ -95.796317144369439, 30.447989321630526 ], [ -95.796496143930042, 30.448106321616358 ], [ -95.797737144604213, 30.448793322085738 ], [ -95.798686144285483, 30.449343322276484 ], [ -95.798968145414889, 30.449496321562314 ], [ -95.799400144653333, 30.449707321571381 ], [ -95.799695144788188, 30.449838321980334 ], [ -95.80015714566396, 30.450019321969059 ], [ -95.800757145129921, 30.450171321854931 ], [ -95.800859145080778, 30.450192322414122 ], [ -95.80136114556386, 30.450298321902924 ], [ -95.801864145245787, 30.45037732205267 ], [ -95.806258147298564, 30.451118321673757 ], [ -95.806645146950899, 30.451207321978405 ], [ -95.806901147383414, 30.451284322061124 ], [ -95.807153147035024, 30.451379322252258 ], [ -95.807276146818523, 30.451431322378159 ], [ -95.807452147248895, 30.451518322311507 ], [ -95.807682147399518, 30.451644322018254 ], [ -95.807901147434947, 30.451787321727121 ], [ -95.808110147805479, 30.451937322109018 ], [ -95.808506147829519, 30.452280322532349 ], [ -95.809151147757248, 30.452872321822838 ], [ -95.809467148153033, 30.453177321968798 ], [ -95.809774147367946, 30.453487322143236 ], [ -95.809944148008753, 30.453650322185787 ], [ -95.810147148055037, 30.453858322198421 ], [ -95.810341147978406, 30.45407532279166 ], [ -95.810524148583212, 30.454299322319613 ], [ -95.810700148119082, 30.454526322366313 ], [ -95.810867148451834, 30.45475832221415 ], [ -95.81102414838233, 30.454996322376427 ], [ -95.813720149361828, 30.458888322975834 ], [ -95.813871149075339, 30.459152323053125 ], [ -95.813955149131246, 30.45578532248874 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1335, "Tract": "48339692009", "Area_SqMi": 3.8098530405588895, "total_2009": 32, "total_2010": 44, "total_2011": 36, "total_2012": 49, "total_2013": 63, "total_2014": 85, "total_2015": 101, "total_2016": 353, "total_2017": 418, "total_2018": 615, "total_2019": 750, "total_2020": 767, "age1": 544, "age2": 466, "age3": 122, "earn1": 343, "earn2": 509, "earn3": 280, "naics_s01": 1, "naics_s02": 3, "naics_s03": 0, "naics_s04": 23, "naics_s05": 12, "naics_s06": 15, "naics_s07": 328, "naics_s08": 7, "naics_s09": 0, "naics_s10": 24, "naics_s11": 13, "naics_s12": 83, "naics_s13": 0, "naics_s14": 11, "naics_s15": 9, "naics_s16": 224, "naics_s17": 39, "naics_s18": 259, "naics_s19": 81, "naics_s20": 0, "race1": 854, "race2": 161, "race3": 10, "race4": 83, "race5": 2, "race6": 22, "ethnicity1": 781, "ethnicity2": 351, "edu1": 126, "edu2": 168, "edu3": 171, "edu4": 123, "Shape_Length": 55285.582467220469, "Shape_Area": 106212182.1421348, "total_2021": 1010, "total_2022": 1132 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.405450027679407, 30.092081263464664 ], [ -95.405169026968849, 30.091992263825947 ], [ -95.40457202747811, 30.091855263319079 ], [ -95.403298026875902, 30.091824263607073 ], [ -95.402565026931327, 30.091747263366482 ], [ -95.40224902688837, 30.091668263667376 ], [ -95.401372026450645, 30.091135263292369 ], [ -95.400268026257521, 30.090324263002056 ], [ -95.399882025568829, 30.089906263296623 ], [ -95.399595026226393, 30.089231263046557 ], [ -95.399353026201567, 30.088399263413631 ], [ -95.399022025543275, 30.087780262879885 ], [ -95.398799025101511, 30.086614262896628 ], [ -95.398502025715857, 30.085832262237044 ], [ -95.398294025159075, 30.08556526268007 ], [ -95.398067025716671, 30.085410262684814 ], [ -95.39787402473047, 30.085344262464975 ], [ -95.397504024769731, 30.085314262599979 ], [ -95.396958025244373, 30.084994262765598 ], [ -95.395631024342592, 30.084030262248749 ], [ -95.395235024664387, 30.083937262133475 ], [ -95.394981024108318, 30.083822262610788 ], [ -95.394452024536832, 30.083744262031455 ], [ -95.392649023736922, 30.083230262556782 ], [ -95.392309023839715, 30.083099261853572 ], [ -95.391749023623717, 30.082732261972392 ], [ -95.391633023781068, 30.082701261911989 ], [ -95.391291023903278, 30.082746261944827 ], [ -95.390903023273793, 30.08286926238052 ], [ -95.390660023354926, 30.083005262586333 ], [ -95.390457023070425, 30.083232262541053 ], [ -95.390281023063224, 30.08374826200378 ], [ -95.390113023634754, 30.084633262265122 ], [ -95.389980022930558, 30.084935262364581 ], [ -95.389730023006706, 30.085168262968409 ], [ -95.389533022886766, 30.085216262621447 ], [ -95.388917022529029, 30.085161262340591 ], [ -95.388400023166852, 30.085036262362266 ], [ -95.387411022469337, 30.084673262990801 ], [ -95.386550022125192, 30.084752262367648 ], [ -95.386047021828773, 30.084953262581859 ], [ -95.385875021743956, 30.085022262868648 ], [ -95.385616022223303, 30.085195262476152 ], [ -95.385162021687918, 30.085538263352969 ], [ -95.384950021958005, 30.08575826297178 ], [ -95.384699021906215, 30.08640226325392 ], [ -95.384703021781107, 30.086544263153048 ], [ -95.384991022070452, 30.087328263465878 ], [ -95.384950021586533, 30.087646263812321 ], [ -95.384767022302526, 30.087775263757884 ], [ -95.384015022051329, 30.087971263769663 ], [ -95.383604022188564, 30.087948263324325 ], [ -95.382610021553916, 30.0873662632766 ], [ -95.382231020795388, 30.087224263310013 ], [ -95.38178702108921, 30.087141263751064 ], [ -95.381581021312073, 30.087153263583964 ], [ -95.380474020676445, 30.087445263716535 ], [ -95.379692020406196, 30.087520263457712 ], [ -95.379241020236222, 30.08748026380389 ], [ -95.378410020284278, 30.08716226308653 ], [ -95.377137019712706, 30.086146262955317 ], [ -95.376860019647225, 30.086030263425219 ], [ -95.375870019515318, 30.086031263675494 ], [ -95.375588019991298, 30.086084263417213 ], [ -95.374978018927223, 30.08637926313132 ], [ -95.374745019203914, 30.086307263451584 ], [ -95.374576019604945, 30.08620226385916 ], [ -95.374325018841091, 30.085910263471973 ], [ -95.374235019532094, 30.085635263325631 ], [ -95.374132018979211, 30.084741263023975 ], [ -95.374331019145302, 30.083938263263065 ], [ -95.374381019212024, 30.083509263219348 ], [ -95.374165019233502, 30.081582262651175 ], [ -95.373994019155049, 30.080916262531236 ], [ -95.373746019165267, 30.080305262573066 ], [ -95.37341401825006, 30.07980626217039 ], [ -95.373161019017843, 30.079568262140086 ], [ -95.372622018274953, 30.079174262097951 ], [ -95.371858018419204, 30.07874026239864 ], [ -95.371024017658698, 30.078340261880843 ], [ -95.369862017873828, 30.0780062618798 ], [ -95.369565017379671, 30.077962262010896 ], [ -95.368764017860386, 30.077988262420742 ], [ -95.367577017464995, 30.078027261845303 ], [ -95.366970016567336, 30.077858262310887 ], [ -95.366906017248326, 30.077840261974817 ], [ -95.366658016344843, 30.077652262061982 ], [ -95.366179016846033, 30.077343261660285 ], [ -95.365912017114653, 30.076817261883676 ], [ -95.365707016998641, 30.076639261412002 ], [ -95.365551016708437, 30.07659726202105 ], [ -95.365223016764972, 30.076633262279213 ], [ -95.364685016313345, 30.076822261584322 ], [ -95.364036015955548, 30.077266261712136 ], [ -95.363756015853909, 30.077578262268133 ], [ -95.363270016245053, 30.077969262365034 ], [ -95.36254301543201, 30.078313262053374 ], [ -95.362143015861818, 30.078398262419331 ], [ -95.361413015837869, 30.078275262658899 ], [ -95.361109014981835, 30.078160262065214 ], [ -95.360521015122998, 30.077653262271916 ], [ -95.359944014966757, 30.076864261906476 ], [ -95.359723015170715, 30.076700261789984 ], [ -95.359418015166398, 30.076589261871259 ], [ -95.359010015248685, 30.076523261919064 ], [ -95.358680014566204, 30.076540262373356 ], [ -95.357240014147862, 30.077093262518364 ], [ -95.356679014765831, 30.077221262597639 ], [ -95.356012013764726, 30.077323262067761 ], [ -95.355528014381605, 30.077234262473123 ], [ -95.354611013621493, 30.076812262118356 ], [ -95.354100013847017, 30.076505262310334 ], [ -95.353640013190912, 30.076342261755279 ], [ -95.357860015078217, 30.080833262733712 ], [ -95.358394015179215, 30.081403263419002 ], [ -95.358973014965798, 30.082017263367977 ], [ -95.359362015214558, 30.082433263330284 ], [ -95.359416015156512, 30.082490262830838 ], [ -95.359846014883061, 30.082996263193387 ], [ -95.360145015252684, 30.083295263621178 ], [ -95.36226401559837, 30.085520263387018 ], [ -95.362568015828003, 30.08532926348261 ], [ -95.362851016440331, 30.085154263274788 ], [ -95.363328016249724, 30.085769263574544 ], [ -95.363375016256427, 30.08579026335191 ], [ -95.363460015975932, 30.085992263635656 ], [ -95.363588016946025, 30.086205264098506 ], [ -95.363791016574254, 30.086515264120134 ], [ -95.363908016772655, 30.08665326360779 ], [ -95.364207016662832, 30.086941264264777 ], [ -95.364398016530657, 30.087090264025733 ], [ -95.364729016462519, 30.087208264116857 ], [ -95.364889017257369, 30.087272263867124 ], [ -95.365347016868625, 30.087378264114005 ], [ -95.365870017169911, 30.087506263586953 ], [ -95.366275017596337, 30.087634264076552 ], [ -95.366744017526642, 30.087805263796479 ], [ -95.366968017683249, 30.088668264239971 ], [ -95.36704201790667, 30.088849264121571 ], [ -95.367096017734667, 30.088935264240863 ], [ -95.367309017311641, 30.089244263910867 ], [ -95.367394017935823, 30.08946826399707 ], [ -95.367437017430163, 30.090075264148229 ], [ -95.367437017887553, 30.09051226431448 ], [ -95.367426017711111, 30.090640264478061 ], [ -95.367362018065819, 30.09073626444733 ], [ -95.36727701746301, 30.090918264968106 ], [ -95.367128017612487, 30.091205264803524 ], [ -95.367032017802558, 30.091365264795286 ], [ -95.367010017994147, 30.091547265263397 ], [ -95.367000017748779, 30.09171726449971 ], [ -95.366990017795004, 30.092117265116176 ], [ -95.367000017728486, 30.092517264563725 ], [ -95.366914017200159, 30.093540265558232 ], [ -95.366786017823372, 30.094137265790234 ], [ -95.366584017704341, 30.094596265402853 ], [ -95.366275017959026, 30.094926265341392 ], [ -95.365966016990981, 30.095065265110364 ], [ -95.365624017320968, 30.095161265633241 ], [ -95.363801016489106, 30.095139265445123 ], [ -95.363172017199403, 30.095299265332891 ], [ -95.362853017105493, 30.095502265769934 ], [ -95.362597016260324, 30.095811266044535 ], [ -95.362447016737292, 30.096088265705784 ], [ -95.362373016349068, 30.096387266309726 ], [ -95.362341016322603, 30.096781265680974 ], [ -95.362320016621595, 30.097122266011432 ], [ -95.36221301656002, 30.097421266263375 ], [ -95.362106016926546, 30.097741266453369 ], [ -95.362021016533802, 30.098028266426688 ], [ -95.36191401643346, 30.098380266018367 ], [ -95.361859016780855, 30.098783266787219 ], [ -95.361958017095958, 30.098812266172079 ], [ -95.362614016661183, 30.098937266227693 ], [ -95.363060017355878, 30.098977266266672 ], [ -95.363732016773398, 30.099039266636751 ], [ -95.366131017344273, 30.099128266024803 ], [ -95.366151017447379, 30.09954726664245 ], [ -95.36621201809254, 30.100218266742811 ], [ -95.366355018349836, 30.100828266962065 ], [ -95.366568017877, 30.101333266758701 ], [ -95.366924017999736, 30.102048266668032 ], [ -95.367170018198962, 30.102386267198494 ], [ -95.367249018266349, 30.102495266983688 ], [ -95.367615017789817, 30.102963267340712 ], [ -95.368144018220079, 30.1034102675487 ], [ -95.369079019003792, 30.104244266964862 ], [ -95.370347018860357, 30.105402267939191 ], [ -95.375556020905748, 30.109999268378573 ], [ -95.378151021693512, 30.112459268302846 ], [ -95.379735021964635, 30.113794268836248 ], [ -95.380651022601612, 30.114593268672348 ], [ -95.381197022240741, 30.115119268997901 ], [ -95.381467022443829, 30.115373268909273 ], [ -95.381522022316801, 30.115424269373726 ], [ -95.381563022162467, 30.115456268867604 ], [ -95.381821022813568, 30.11565526916845 ], [ -95.382102022943272, 30.115459269386658 ], [ -95.382572023162581, 30.115132269374989 ], [ -95.382898023140797, 30.114894268563948 ], [ -95.383144022836191, 30.114716268991213 ], [ -95.383339023115155, 30.114572268586262 ], [ -95.383486022445766, 30.114455268552735 ], [ -95.383563022811373, 30.114394268672896 ], [ -95.383734022755149, 30.114258268768861 ], [ -95.38396802291679, 30.114075268900191 ], [ -95.38416002311547, 30.113914269150026 ], [ -95.384314023021233, 30.113785268345854 ], [ -95.384455022753116, 30.113664268298137 ], [ -95.38461102268387, 30.113530268424704 ], [ -95.384672022751147, 30.113477268536425 ], [ -95.384808023203092, 30.113359268302144 ], [ -95.385018023061306, 30.113167268279668 ], [ -95.386303023537863, 30.11192426783284 ], [ -95.386579023237658, 30.111659268522352 ], [ -95.387253024131326, 30.111015267777898 ], [ -95.387339024133496, 30.110933267707221 ], [ -95.387707024217889, 30.11058226822205 ], [ -95.387870023519994, 30.110741268161039 ], [ -95.387883023583257, 30.110755267622345 ], [ -95.387995024166145, 30.110861267656684 ], [ -95.388068023498249, 30.110930267600207 ], [ -95.388269024438472, 30.110723267725888 ], [ -95.388406024172681, 30.110586267598066 ], [ -95.388548024052341, 30.110458268332724 ], [ -95.388726023517052, 30.110297267988603 ], [ -95.388837024155961, 30.110194267999631 ], [ -95.388930023828266, 30.11009126739873 ], [ -95.390038024067763, 30.108987267831836 ], [ -95.390770024849473, 30.108276267661633 ], [ -95.391435024620236, 30.107637267644158 ], [ -95.392370024964123, 30.106739266898909 ], [ -95.392913025270332, 30.106216266643692 ], [ -95.393687024839579, 30.105470267134187 ], [ -95.394417025497461, 30.10481926625404 ], [ -95.394961025294108, 30.104435266737362 ], [ -95.395597025233812, 30.103991266168531 ], [ -95.395815025882371, 30.103764266209641 ], [ -95.396395025715364, 30.103163266588393 ], [ -95.396667025873953, 30.102885265761412 ], [ -95.397028025996391, 30.102517266179024 ], [ -95.399302025839845, 30.100199265247952 ], [ -95.399525026776715, 30.099970265056619 ], [ -95.40001302686656, 30.099470265664081 ], [ -95.401077026362984, 30.098394265194454 ], [ -95.40189702719907, 30.097567264683772 ], [ -95.40226002677899, 30.09709126505442 ], [ -95.40250802685874, 30.096766264991956 ], [ -95.402564027246569, 30.096668264464981 ], [ -95.402770026493059, 30.096307264403272 ], [ -95.402811027361452, 30.096214264274472 ], [ -95.40301502683532, 30.095749264519405 ], [ -95.403340027470904, 30.094743264128379 ], [ -95.403747027380945, 30.093854264216478 ], [ -95.404107027394616, 30.093335263519151 ], [ -95.404498027518045, 30.092898263394311 ], [ -95.405013027726753, 30.092448264066711 ], [ -95.405450027679407, 30.092081263464664 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1336, "Tract": "48339694401", "Area_SqMi": 6.7430057692739744, "total_2009": 573, "total_2010": 429, "total_2011": 555, "total_2012": 623, "total_2013": 581, "total_2014": 648, "total_2015": 700, "total_2016": 554, "total_2017": 678, "total_2018": 961, "total_2019": 1099, "total_2020": 1025, "age1": 250, "age2": 614, "age3": 236, "earn1": 163, "earn2": 311, "earn3": 626, "naics_s01": 2, "naics_s02": 104, "naics_s03": 0, "naics_s04": 100, "naics_s05": 178, "naics_s06": 84, "naics_s07": 91, "naics_s08": 17, "naics_s09": 0, "naics_s10": 5, "naics_s11": 28, "naics_s12": 128, "naics_s13": 0, "naics_s14": 97, "naics_s15": 0, "naics_s16": 123, "naics_s17": 0, "naics_s18": 84, "naics_s19": 50, "naics_s20": 9, "race1": 936, "race2": 122, "race3": 8, "race4": 24, "race5": 0, "race6": 10, "ethnicity1": 843, "ethnicity2": 257, "edu1": 164, "edu2": 261, "edu3": 263, "edu4": 162, "Shape_Length": 71912.982577997114, "Shape_Area": 187983460.07764414, "total_2021": 984, "total_2022": 1100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.588262084827363, 30.321657304048351 ], [ -95.588266084713126, 30.31951730279766 ], [ -95.588103084991687, 30.319526302969891 ], [ -95.585771083735608, 30.319622303460452 ], [ -95.585566083860158, 30.319630303298975 ], [ -95.582888083137988, 30.319791303588914 ], [ -95.580198082334988, 30.319953303630541 ], [ -95.579831082391365, 30.319953303353255 ], [ -95.578727082824429, 30.319952303502113 ], [ -95.577296082035147, 30.319882304164118 ], [ -95.576784082168643, 30.319839303820661 ], [ -95.575915081457609, 30.319767303947675 ], [ -95.575760082016771, 30.319754303466954 ], [ -95.575210081961302, 30.319708303800393 ], [ -95.57519408104379, 30.319707303370169 ], [ -95.572111081161083, 30.31945230372142 ], [ -95.570306080410944, 30.31930230385014 ], [ -95.568857079510764, 30.319182303889232 ], [ -95.567596079328155, 30.319077303975476 ], [ -95.566683079161535, 30.31900130346904 ], [ -95.566080078927286, 30.318951303516762 ], [ -95.565928078854881, 30.318939303914867 ], [ -95.564143078546877, 30.318793304319431 ], [ -95.563273078229898, 30.318722304265282 ], [ -95.562974078005297, 30.318697304310692 ], [ -95.560559077498112, 30.318501304236968 ], [ -95.558266076820132, 30.318314303660173 ], [ -95.556403076500644, 30.31816230405504 ], [ -95.555800076819338, 30.318113303783431 ], [ -95.555196076578298, 30.318063304198219 ], [ -95.553612075723763, 30.317934304523831 ], [ -95.550097075074675, 30.317637304269414 ], [ -95.547844074882548, 30.317456304089959 ], [ -95.54604307372648, 30.317310304163158 ], [ -95.541678072952962, 30.316957304430112 ], [ -95.538277071964785, 30.316677304492107 ], [ -95.536932071899145, 30.316565304475724 ], [ -95.536291070991567, 30.316512304211674 ], [ -95.533105070582877, 30.316247304505271 ], [ -95.528856069578197, 30.315895304644862 ], [ -95.526367068994062, 30.315820304580694 ], [ -95.523578067841839, 30.315630304411307 ], [ -95.522542067714397, 30.31554630519312 ], [ -95.518815067234826, 30.315243305114226 ], [ -95.51749306688464, 30.315135304936973 ], [ -95.515571065750066, 30.314972304903939 ], [ -95.515514065703925, 30.314967305181433 ], [ -95.515427066245678, 30.314960305092065 ], [ -95.513962065271485, 30.314837305220244 ], [ -95.511671065271344, 30.314629304561723 ], [ -95.511651064655211, 30.315382305481464 ], [ -95.51194106553875, 30.316207305068733 ], [ -95.511913065261922, 30.317421305791729 ], [ -95.512018065632873, 30.317765305296081 ], [ -95.512994066018877, 30.319163305985043 ], [ -95.513258065404713, 30.319208305709378 ], [ -95.513865065883209, 30.319667305927151 ], [ -95.513899065942198, 30.319802306294466 ], [ -95.513917066035518, 30.31987330631193 ], [ -95.513864065496406, 30.3200793059818 ], [ -95.513705065874774, 30.320217305764288 ], [ -95.513045065678767, 30.32042230647955 ], [ -95.512807065185626, 30.320743306158192 ], [ -95.512807065406463, 30.320897306094139 ], [ -95.512807065524115, 30.321132306069668 ], [ -95.512939065805369, 30.321293306026419 ], [ -95.513731065795511, 30.321087306642475 ], [ -95.514127065797751, 30.321202306173358 ], [ -95.514180065756193, 30.321385306210406 ], [ -95.514074066186694, 30.321637306209027 ], [ -95.513970065887278, 30.321726306468417 ], [ -95.513730065632913, 30.321935306454211 ], [ -95.513527065463379, 30.322037306234947 ], [ -95.512911065572112, 30.322346306503501 ], [ -95.512805065890035, 30.322461306880246 ], [ -95.512831065506418, 30.322804306496554 ], [ -95.513253065870771, 30.323354306854377 ], [ -95.513426066458194, 30.324381307082007 ], [ -95.513489065545812, 30.324752306969543 ], [ -95.513648065668079, 30.324981306868292 ], [ -95.513832065941386, 30.325073306843151 ], [ -95.514318066415839, 30.325073307214407 ], [ -95.515294066002056, 30.325074306730528 ], [ -95.515522066480173, 30.325074306996434 ], [ -95.515813066403155, 30.324868306458487 ], [ -95.515840066076407, 30.324479307028067 ], [ -95.515391066492214, 30.32395230664283 ], [ -95.515286066874339, 30.323654307059456 ], [ -95.515313065884683, 30.323425306573501 ], [ -95.515471065914042, 30.323310306884117 ], [ -95.515814066595794, 30.323311306433904 ], [ -95.516342066488477, 30.323861306955468 ], [ -95.516902067095629, 30.32384930697993 ], [ -95.517398066631046, 30.323839306654712 ], [ -95.518031066780324, 30.323977306627967 ], [ -95.518401067350368, 30.323977306828755 ], [ -95.518438067269798, 30.3239623065333 ], [ -95.519167067770695, 30.323680306129862 ], [ -95.519511067130082, 30.323382306914944 ], [ -95.519960067269565, 30.323314306137021 ], [ -95.520382068170463, 30.323016306433079 ], [ -95.520488067376192, 30.322650306066251 ], [ -95.520409068092391, 30.322467306364608 ], [ -95.520410067913645, 30.322054306567598 ], [ -95.520595067437441, 30.321848306072283 ], [ -95.520885067444709, 30.321871305928742 ], [ -95.521360067399172, 30.322284306237979 ], [ -95.521492067776251, 30.32253630618472 ], [ -95.521703067940265, 30.322720306186746 ], [ -95.522416068360045, 30.322606305990703 ], [ -95.522970067943547, 30.32299530590867 ], [ -95.522993067986462, 30.32302030590338 ], [ -95.523181068722891, 30.323225306465183 ], [ -95.523629068752328, 30.323408305960211 ], [ -95.52442206859476, 30.323340305867351 ], [ -95.525029068845555, 30.323157306185426 ], [ -95.52542506906056, 30.32320330625609 ], [ -95.52566206870668, 30.323478306468278 ], [ -95.526005069607265, 30.323982306379083 ], [ -95.52655906948533, 30.324212306521719 ], [ -95.527034069295908, 30.32467030656894 ], [ -95.527245069841712, 30.325083306532132 ], [ -95.527667069302865, 30.325449306944986 ], [ -95.528301069906078, 30.325839306860118 ], [ -95.528987069957083, 30.326389306447307 ], [ -95.529435069775289, 30.327283307291417 ], [ -95.529804070780884, 30.327696307179714 ], [ -95.530332070944937, 30.328040306981094 ], [ -95.530814070494472, 30.328560307401997 ], [ -95.530991070913288, 30.328750307477225 ], [ -95.53125407082311, 30.329575307720926 ], [ -95.53167607070624, 30.329964307096855 ], [ -95.53180807075212, 30.330377307414718 ], [ -95.532310070843593, 30.330744307664645 ], [ -95.532626071471384, 30.331202307640147 ], [ -95.532837071637928, 30.331385307555262 ], [ -95.533655071761018, 30.331500307606873 ], [ -95.533655071479927, 30.331798308002931 ], [ -95.533523071937807, 30.332027308096677 ], [ -95.533523070983179, 30.33237130747548 ], [ -95.533681071076202, 30.332577307670118 ], [ -95.534314071343417, 30.332852308019628 ], [ -95.534657071583069, 30.33344830785434 ], [ -95.534683072097394, 30.333723308176051 ], [ -95.534657071751553, 30.333929307699758 ], [ -95.534472071304194, 30.334020307873637 ], [ -95.534234072150596, 30.333951308351306 ], [ -95.533627072038541, 30.333997308423577 ], [ -95.533468071527196, 30.334180307951748 ], [ -95.533495071928826, 30.334455308033746 ], [ -95.53362607138115, 30.33459230814713 ], [ -95.533996071426913, 30.334730308487021 ], [ -95.534075071440185, 30.335074308381248 ], [ -95.534233072148254, 30.335349308747169 ], [ -95.534311071783094, 30.335361308803424 ], [ -95.534972071508577, 30.335464308787859 ], [ -95.535210072116371, 30.335716308301315 ], [ -95.535210072250706, 30.335853308022589 ], [ -95.535447071876121, 30.336059308513228 ], [ -95.535949072380873, 30.336243308138567 ], [ -95.53610407221656, 30.336377308137621 ], [ -95.536212072789084, 30.336907308925639 ], [ -95.536740072997247, 30.337228308907818 ], [ -95.53679307299123, 30.337457309002346 ], [ -95.537215072639796, 30.337710308472015 ], [ -95.537400073254872, 30.338191309184428 ], [ -95.537663072992146, 30.33830530853405 ], [ -95.538508072859955, 30.338375308463799 ], [ -95.538640073453905, 30.338466309236171 ], [ -95.538693072625648, 30.338718308642129 ], [ -95.538111073383462, 30.339795309171617 ], [ -95.538137072937943, 30.340184309446514 ], [ -95.538427072664959, 30.340482309063638 ], [ -95.539166073009142, 30.340940309526879 ], [ -95.539747073774407, 30.34139930980049 ], [ -95.540302073599875, 30.341422309290419 ], [ -95.541173074039264, 30.341010309304956 ], [ -95.541543074425263, 30.341056309055233 ], [ -95.541730073988745, 30.341169309333686 ], [ -95.542071073867533, 30.341377309103517 ], [ -95.542176073830447, 30.341538309081248 ], [ -95.542704074366014, 30.341927309240244 ], [ -95.542651074571552, 30.342294309872074 ], [ -95.542577074693924, 30.342404309775407 ], [ -95.542931074053939, 30.342397309540846 ], [ -95.546295075293841, 30.342329309550614 ], [ -95.547970075193405, 30.342366309627685 ], [ -95.549091075585991, 30.342458309167167 ], [ -95.550329076746294, 30.342630309670184 ], [ -95.551460076106125, 30.342865309597215 ], [ -95.551852076748332, 30.342958309641279 ], [ -95.552611076971843, 30.343162309237282 ], [ -95.552989077306265, 30.343270309001568 ], [ -95.55336407668122, 30.343384309709514 ], [ -95.553782076732219, 30.343519309048165 ], [ -95.554128077756701, 30.343640309045636 ], [ -95.554273077336362, 30.343696309515344 ], [ -95.554471076944694, 30.343773309500193 ], [ -95.55954407851911, 30.345575309836054 ], [ -95.561567079020477, 30.346298309400989 ], [ -95.562274079271234, 30.3465503093027 ], [ -95.562993079786693, 30.346807309367563 ], [ -95.563691080116214, 30.347056309812121 ], [ -95.564037079515757, 30.34718030936493 ], [ -95.56411607958627, 30.347208310061834 ], [ -95.56506908008771, 30.347550309657368 ], [ -95.566254080875694, 30.347977309440939 ], [ -95.567333081292588, 30.348359309978214 ], [ -95.569193081372589, 30.349003310171984 ], [ -95.569839081819495, 30.349226310117476 ], [ -95.574187083031887, 30.350737310416864 ], [ -95.574272083004516, 30.350767310116993 ], [ -95.576992083125134, 30.351730309810183 ], [ -95.578938084332165, 30.352419310234247 ], [ -95.579347084427269, 30.352564310598687 ], [ -95.579418083893643, 30.352589310569019 ], [ -95.580001084461855, 30.352796310642084 ], [ -95.581716084918639, 30.353406310712689 ], [ -95.583107085544071, 30.353898310360201 ], [ -95.583080084646383, 30.352659310126363 ], [ -95.583180085162638, 30.351650309516302 ], [ -95.583278084927841, 30.351152310130132 ], [ -95.583318085128667, 30.350968310019859 ], [ -95.583284084491837, 30.348817308951837 ], [ -95.583287085121626, 30.34837930891889 ], [ -95.583296084771476, 30.347942309120324 ], [ -95.583294084369854, 30.345516308241649 ], [ -95.583292084795346, 30.342276308054149 ], [ -95.58329108444417, 30.3420713082619 ], [ -95.583291084218033, 30.341338308222237 ], [ -95.583284084577002, 30.341225308091865 ], [ -95.583287084798926, 30.340991307365321 ], [ -95.583307084941708, 30.340758307846347 ], [ -95.583323084623757, 30.340640307362094 ], [ -95.583372085044402, 30.340407307396038 ], [ -95.583404084481373, 30.340293307682519 ], [ -95.583524084119986, 30.339960307538185 ], [ -95.583627084941796, 30.339740307436369 ], [ -95.583749084696237, 30.339529307637022 ], [ -95.583814085056758, 30.339428307041345 ], [ -95.583960084447469, 30.339229307475289 ], [ -95.584186084286074, 30.338980307643556 ], [ -95.584343084409198, 30.338808307191567 ], [ -95.585191084963327, 30.337876307381322 ], [ -95.586060085178289, 30.336922306898774 ], [ -95.586528085261037, 30.336425306929343 ], [ -95.58683708555526, 30.336081306433496 ], [ -95.586994085057228, 30.335897306952354 ], [ -95.587329085498666, 30.335502306202713 ], [ -95.587470085555708, 30.335324306485226 ], [ -95.587668085096425, 30.335073306849832 ], [ -95.587777085616736, 30.334922306706712 ], [ -95.587876084986689, 30.334759306436478 ], [ -95.587964085134303, 30.334591306167859 ], [ -95.58803608581664, 30.334419306473912 ], [ -95.588095085790002, 30.334242305790895 ], [ -95.588139085136206, 30.334064306298718 ], [ -95.588156085732734, 30.333974306454799 ], [ -95.588178085845456, 30.333790305736272 ], [ -95.588187085748856, 30.333606306216836 ], [ -95.588159085435322, 30.332046305886546 ], [ -95.588150085574156, 30.32997730527471 ], [ -95.588155084939814, 30.327362304985229 ], [ -95.588152084900443, 30.326946304678938 ], [ -95.588151085243354, 30.32673830497988 ], [ -95.588149085616948, 30.326424304233164 ], [ -95.588097084690261, 30.325603304287782 ], [ -95.588086084937117, 30.323884304552092 ], [ -95.588104084692446, 30.323426303726407 ], [ -95.588203085333802, 30.322607304269908 ], [ -95.588212084821606, 30.322561304246037 ], [ -95.588222084896302, 30.322310303882773 ], [ -95.588262084827363, 30.321657304048351 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1337, "Tract": "48339694502", "Area_SqMi": 21.103934666859896, "total_2009": 147, "total_2010": 87, "total_2011": 177, "total_2012": 160, "total_2013": 207, "total_2014": 298, "total_2015": 369, "total_2016": 380, "total_2017": 379, "total_2018": 454, "total_2019": 463, "total_2020": 467, "age1": 111, "age2": 227, "age3": 99, "earn1": 63, "earn2": 112, "earn3": 262, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 80, "naics_s05": 10, "naics_s06": 27, "naics_s07": 17, "naics_s08": 22, "naics_s09": 7, "naics_s10": 1, "naics_s11": 13, "naics_s12": 31, "naics_s13": 0, "naics_s14": 88, "naics_s15": 15, "naics_s16": 73, "naics_s17": 2, "naics_s18": 0, "naics_s19": 49, "naics_s20": 0, "race1": 378, "race2": 36, "race3": 1, "race4": 15, "race5": 1, "race6": 6, "ethnicity1": 366, "ethnicity2": 71, "edu1": 47, "edu2": 88, "edu3": 112, "edu4": 79, "Shape_Length": 118416.61764669808, "Shape_Area": 588341578.76688552, "total_2021": 447, "total_2022": 437 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.666779102668528, 30.264815289781513 ], [ -95.666648102356049, 30.263784289466525 ], [ -95.666700101797787, 30.263555289215972 ], [ -95.666701102236573, 30.262662288732585 ], [ -95.666437102200263, 30.262020289187937 ], [ -95.666411102466398, 30.260554288953127 ], [ -95.666305101804895, 30.260006288317864 ], [ -95.666543101888379, 30.259433288103452 ], [ -95.6665431023184, 30.258746288650148 ], [ -95.666280102422448, 30.257509287871756 ], [ -95.665989102319656, 30.257189287741824 ], [ -95.665277101838953, 30.256891288149404 ], [ -95.665202101526944, 30.256825287579478 ], [ -95.664724101414478, 30.256410287474157 ], [ -95.664513101678267, 30.25602028730453 ], [ -95.664173101761563, 30.255286287167149 ], [ -95.663593101063029, 30.254691287619373 ], [ -95.66356710081601, 30.254530287163796 ], [ -95.663409101436045, 30.254416287845732 ], [ -95.663172101375764, 30.254026287004905 ], [ -95.66296310077287, 30.253362287376067 ], [ -95.662130100450682, 30.252072287384902 ], [ -95.661470100433846, 30.251795286534929 ], [ -95.660826100152804, 30.251999286933536 ], [ -95.660309100439633, 30.252162287210314 ], [ -95.660019100206881, 30.252162286962346 ], [ -95.659306099618107, 30.251498287038757 ], [ -95.65843609931153, 30.251544287023648 ], [ -95.657829099708678, 30.251178287308452 ], [ -95.657328099522829, 30.251109287096831 ], [ -95.656985099262116, 30.251201287235478 ], [ -95.656721099096828, 30.25108728701959 ], [ -95.656325099322927, 30.250537286723372 ], [ -95.655982098656523, 30.250400286643181 ], [ -95.655796099266169, 30.250237286498173 ], [ -95.655690098784859, 30.249916286644755 ], [ -95.655479098308533, 30.24980228689595 ], [ -95.655294098854057, 30.249756286443894 ], [ -95.655110098686336, 30.249848286961008 ], [ -95.654899098221279, 30.250237286672519 ], [ -95.654663099060116, 30.250973287115389 ], [ -95.654399098371044, 30.251087287253132 ], [ -95.653529097812381, 30.250652287409718 ], [ -95.652658098431345, 30.250515287155451 ], [ -95.652551098256282, 30.250238287319032 ], [ -95.652551097690022, 30.250032287306883 ], [ -95.652181097971294, 30.249551286661529 ], [ -95.651680097384116, 30.249643286449935 ], [ -95.65117909783703, 30.249643286518616 ], [ -95.650994097667166, 30.249506286594642 ], [ -95.650915097445207, 30.249139286707099 ], [ -95.651020097669829, 30.249025286687164 ], [ -95.651046097466391, 30.248498286346994 ], [ -95.650545097101471, 30.248384287026745 ], [ -95.650334097029116, 30.248132286925667 ], [ -95.650070097317027, 30.24799428615249 ], [ -95.649358097299995, 30.247926286934199 ], [ -95.648962097304974, 30.247743286757871 ], [ -95.647986097152923, 30.247743286995274 ], [ -95.647748097146817, 30.247606286969624 ], [ -95.647616097061686, 30.247285286765944 ], [ -95.647959096476583, 30.247102286089678 ], [ -95.648038096817956, 30.246804286564291 ], [ -95.647616097114494, 30.24655228642683 ], [ -95.646956096880558, 30.246530286687701 ], [ -95.645954095706927, 30.247080286716248 ], [ -95.645348095714965, 30.247148286801139 ], [ -95.645057096414163, 30.246942286205194 ], [ -95.644952095521475, 30.246690286277978 ], [ -95.644582096338638, 30.246530286837761 ], [ -95.643791095416859, 30.247332287115583 ], [ -95.643448095908383, 30.247447287001577 ], [ -95.643211095800453, 30.247378286846423 ], [ -95.643000095829208, 30.247218286367659 ], [ -95.642841095281781, 30.246920286385766 ], [ -95.641997094776031, 30.246623286583358 ], [ -95.641179095210418, 30.246050286188829 ], [ -95.640836095194643, 30.246027286988348 ], [ -95.640520095081015, 30.246325286284339 ], [ -95.640071094776971, 30.246486286906208 ], [ -95.639465094904693, 30.246875286671585 ], [ -95.639254094768077, 30.247081286948369 ], [ -95.638911094403511, 30.24717328641422 ], [ -95.638515094742544, 30.24712728720122 ], [ -95.637961094630583, 30.246761286815925 ], [ -95.636615093956848, 30.246601286525486 ], [ -95.636431093610511, 30.246762286637054 ], [ -95.636431093698249, 30.246968286840076 ], [ -95.636721093397313, 30.247242286461191 ], [ -95.636721094205598, 30.247449286538018 ], [ -95.636616094055384, 30.247517287071471 ], [ -95.636220093387777, 30.247517287032355 ], [ -95.636062093860133, 30.247334287315368 ], [ -95.635982093781067, 30.246693286497781 ], [ -95.635771093434016, 30.246487286412197 ], [ -95.635191093686814, 30.246350287214781 ], [ -95.635006093428032, 30.246029286585177 ], [ -95.635112093412459, 30.245708287056065 ], [ -95.635745093696158, 30.245296286258522 ], [ -95.63579709339605, 30.245067286490752 ], [ -95.635665093304937, 30.244998286826021 ], [ -95.634795093336692, 30.245250286994199 ], [ -95.634478093404667, 30.245067286929235 ], [ -95.634293092928957, 30.244632286611459 ], [ -95.634056092554744, 30.244472286703029 ], [ -95.633792092597275, 30.244472286416482 ], [ -95.633106092529118, 30.244609286859717 ], [ -95.632843093112612, 30.244518286768532 ], [ -95.632605092301063, 30.244266286857552 ], [ -95.632315092599924, 30.243671286553301 ], [ -95.631972092165952, 30.243304286203092 ], [ -95.63165509252886, 30.243144286165457 ], [ -95.631233091848401, 30.243098286036506 ], [ -95.630310092034321, 30.243808286469548 ], [ -95.630050091997873, 30.243887286545842 ], [ -95.629782092407979, 30.243969286917444 ], [ -95.629360091841221, 30.243992286964289 ], [ -95.629255091629432, 30.243900286250202 ], [ -95.629149091774295, 30.243602286646251 ], [ -95.628964092010051, 30.243488286577914 ], [ -95.628674091346809, 30.243465286014732 ], [ -95.628403091587273, 30.243649286689642 ], [ -95.628305091065869, 30.243717286488558 ], [ -95.628120091789498, 30.243877286815888 ], [ -95.627936091312847, 30.244702287075434 ], [ -95.627804091190839, 30.244748287084953 ], [ -95.627540091263143, 30.244565287137192 ], [ -95.627276090996375, 30.244290287069155 ], [ -95.627141091168554, 30.24427228702093 ], [ -95.62674909096387, 30.244221286551678 ], [ -95.626379090590973, 30.244519286370153 ], [ -95.626142091194225, 30.244611286494134 ], [ -95.625641091344946, 30.244450286435534 ], [ -95.625482090625184, 30.244336286887268 ], [ -95.625482091346313, 30.244153286719115 ], [ -95.625746091384158, 30.243878286372873 ], [ -95.625746090489045, 30.24374028693288 ], [ -95.625614090803651, 30.243695286924687 ], [ -95.624981090589358, 30.24369528691831 ], [ -95.624823090370469, 30.243557286485551 ], [ -95.624638090778149, 30.243008286317533 ], [ -95.62405809002756, 30.242870286894206 ], [ -95.623530089799189, 30.242962286704348 ], [ -95.623293089710316, 30.242870286943909 ], [ -95.622686089720077, 30.242871286267185 ], [ -95.622554090005067, 30.242756286176 ], [ -95.622264089645569, 30.242138286674312 ], [ -95.622053089481113, 30.241863286501022 ], [ -95.622079089716706, 30.24151928608967 ], [ -95.622184089396583, 30.241313286100375 ], [ -95.6221580900866, 30.240947286138816 ], [ -95.621657089866048, 30.240695285823577 ], [ -95.621525089241018, 30.240305285794477 ], [ -95.62112908917635, 30.240351285750279 ], [ -95.620997089187725, 30.240443286260216 ], [ -95.620628089155829, 30.240420286443332 ], [ -95.620259089009863, 30.240214285779111 ], [ -95.619731088950346, 30.24026028594432 ], [ -95.619204089017515, 30.24062628638179 ], [ -95.61909808890465, 30.241359286512239 ], [ -95.618887089049124, 30.241565286811348 ], [ -95.618280088935833, 30.241565286016183 ], [ -95.616724088879067, 30.241978286707869 ], [ -95.616434088139684, 30.242207286453166 ], [ -95.616170088386099, 30.242711287098953 ], [ -95.615880088115631, 30.24284828670552 ], [ -95.615564088574558, 30.242917286553659 ], [ -95.615273088356332, 30.242642287164117 ], [ -95.615141088131026, 30.242322286834753 ], [ -95.614904088231157, 30.242207286524078 ], [ -95.614667088366232, 30.242299286517216 ], [ -95.614456088099573, 30.242825287132984 ], [ -95.614324087986006, 30.242963286603 ], [ -95.613849087704267, 30.242894287248426 ], [ -95.613664087298545, 30.242596286547315 ], [ -95.613374087596952, 30.242436287205578 ], [ -95.612002086949687, 30.242413286882094 ], [ -95.611923087406296, 30.241978286357583 ], [ -95.611765087038862, 30.241887287061289 ], [ -95.611501087139587, 30.241887287139022 ], [ -95.611211087573963, 30.242299286886613 ], [ -95.610815086637828, 30.242551286642438 ], [ -95.610446086551107, 30.242528287062143 ], [ -95.610050086327846, 30.242230287061016 ], [ -95.60881008637962, 30.242322286797013 ], [ -95.608546085949541, 30.242162287223803 ], [ -95.608441086073242, 30.242001286789851 ], [ -95.608467085884485, 30.241726287019755 ], [ -95.60857308626376, 30.241635287080602 ], [ -95.608573086349253, 30.2413602867238 ], [ -95.607676085820074, 30.241200286953568 ], [ -95.60788708625968, 30.240719286920331 ], [ -95.607649086645509, 30.240650286258859 ], [ -95.606779085838355, 30.240971286440491 ], [ -95.606225085839426, 30.240879286905844 ], [ -95.605908085950475, 30.240627286975322 ], [ -95.605592085771136, 30.240238286676487 ], [ -95.605223085444848, 30.240238287011863 ], [ -95.605012085024654, 30.240467286218305 ], [ -95.604669085778411, 30.240513286424942 ], [ -95.60440508575148, 30.240833286965948 ], [ -95.603772085616754, 30.241131286916573 ], [ -95.603244085364864, 30.2415892870528 ], [ -95.602426085122445, 30.241887286986852 ], [ -95.602084084844194, 30.241864286816963 ], [ -95.60184608499948, 30.241703287392625 ], [ -95.601134084221812, 30.241772287008381 ], [ -95.600527084229697, 30.242093287550937 ], [ -95.600421083902788, 30.242368287248979 ], [ -95.600421084553162, 30.242780287583848 ], [ -95.600632084503118, 30.243284287456735 ], [ -95.600632084969163, 30.243788287790032 ], [ -95.60047408411171, 30.2440632877477 ], [ -95.600342083997489, 30.244177287531333 ], [ -95.599234084474944, 30.243925287972136 ], [ -95.598733083907206, 30.2441542877987 ], [ -95.598258084148782, 30.244200287815147 ], [ -95.597968083802883, 30.24447528771989 ], [ -95.597625083807316, 30.244452288193308 ], [ -95.596939084023759, 30.244177287618275 ], [ -95.59633208386758, 30.244246287779745 ], [ -95.596095083469663, 30.244406287406722 ], [ -95.595884083332933, 30.244864287804067 ], [ -95.595752082967778, 30.244933287511945 ], [ -95.595449083712879, 30.24542228835087 ], [ -95.595383083445142, 30.245528288449734 ], [ -95.595172083156754, 30.245688287730101 ], [ -95.594116083386908, 30.246078287845485 ], [ -95.594011082734241, 30.24621528854739 ], [ -95.594090082856241, 30.24676528829168 ], [ -95.594037082630962, 30.246925288423306 ], [ -95.593061082251083, 30.246856288304208 ], [ -95.592744082194145, 30.24715428817186 ], [ -95.5923540829763, 30.247815288729353 ], [ -95.592217082229695, 30.248047288685438 ], [ -95.591794082497202, 30.248299288655463 ], [ -95.591742082446217, 30.248643289236192 ], [ -95.591425081942234, 30.249421288988952 ], [ -95.591161082828961, 30.24946728861164 ], [ -95.590923082777309, 30.250040289114811 ], [ -95.590739082517132, 30.250131288977961 ], [ -95.59005308256377, 30.250108289371884 ], [ -95.58957808212746, 30.249788289207558 ], [ -95.58907708144946, 30.24978828932613 ], [ -95.588892081998196, 30.249879289375343 ], [ -95.588707081606913, 30.25022328882152 ], [ -95.588419081805213, 30.250673289614213 ], [ -95.588155081589505, 30.250902289286039 ], [ -95.587732081183589, 30.25106328909758 ], [ -95.587389081222312, 30.251521289601691 ], [ -95.586545081658556, 30.25163528936179 ], [ -95.586176081651814, 30.251864289691046 ], [ -95.585912081153225, 30.251864289893259 ], [ -95.585358081426151, 30.251634289597224 ], [ -95.585094080830729, 30.251611289926078 ], [ -95.585015080704892, 30.251543289888744 ], [ -95.583670080107595, 30.251061289248316 ], [ -95.582957079904631, 30.251084289907201 ], [ -95.582482080051676, 30.251336290067272 ], [ -95.582245080284451, 30.251656289886178 ], [ -95.582007080300471, 30.252412289662384 ], [ -95.58137407980557, 30.252618289863442 ], [ -95.581136079704081, 30.253030289666846 ], [ -95.581188080291852, 30.253695290527524 ], [ -95.581057080363948, 30.253924290268756 ], [ -95.580845080107579, 30.254061289929322 ], [ -95.580476080117293, 30.254152289947111 ], [ -95.580133079568853, 30.25415229007001 ], [ -95.579579079198524, 30.253923290494644 ], [ -95.579104079614567, 30.253602290638838 ], [ -95.579041079187505, 30.253619290021906 ], [ -95.578603079192106, 30.253739290713575 ], [ -95.578260078962629, 30.253946290323771 ], [ -95.577891079211085, 30.253877289933303 ], [ -95.57744207926666, 30.253556290440006 ], [ -95.576994079322446, 30.253624290194846 ], [ -95.576914079411821, 30.253853290076645 ], [ -95.576914078829134, 30.254311290913758 ], [ -95.576993079077027, 30.25444929044609 ], [ -95.576993078654453, 30.254724290505031 ], [ -95.576703078689889, 30.255021290883228 ], [ -95.576518078896584, 30.255502290860456 ], [ -95.576095078494106, 30.255731291146464 ], [ -95.575515078165409, 30.255594291141357 ], [ -95.575014078589632, 30.255639290478669 ], [ -95.574697078766988, 30.255937291208465 ], [ -95.574433078151088, 30.256807291158786 ], [ -95.574301077903058, 30.256945291215494 ], [ -95.574011078420313, 30.256922291114069 ], [ -95.573773077731417, 30.2567382906396 ], [ -95.573721078164994, 30.256486290787731 ], [ -95.573457078094336, 30.256257291318359 ], [ -95.573087077882462, 30.256326290901534 ], [ -95.572850077700537, 30.256509291138009 ], [ -95.572269077786913, 30.256623290734428 ], [ -95.572137078085106, 30.256738291390704 ], [ -95.572005078213493, 30.257219291525516 ], [ -95.571847077742447, 30.25731029159752 ], [ -95.571557077617086, 30.257218291389453 ], [ -95.571425077374528, 30.256898291448969 ], [ -95.571109077250085, 30.256577290682358 ], [ -95.570898077607069, 30.256485291394757 ], [ -95.570634077532773, 30.256531291035813 ], [ -95.570396077824199, 30.256874291201001 ], [ -95.570132076767209, 30.256874291479473 ], [ -95.56955207731491, 30.256553291247599 ], [ -95.569236077488824, 30.256118290691649 ], [ -95.568972076549258, 30.256158291109159 ], [ -95.568787077415266, 30.256186291273934 ], [ -95.568418076359592, 30.256415290849922 ], [ -95.5683910768321, 30.256576291316136 ], [ -95.568444076978381, 30.25666729125415 ], [ -95.569182076605543, 30.257011291010635 ], [ -95.569472077006381, 30.25724029163008 ], [ -95.569974077373715, 30.257378291109422 ], [ -95.570343077372726, 30.257676291247662 ], [ -95.570686077631649, 30.257699291454681 ], [ -95.570870077893289, 30.257859291513824 ], [ -95.570844077289095, 30.25804329161987 ], [ -95.570316077558644, 30.258546291924183 ], [ -95.569999077479366, 30.258706291286316 ], [ -95.569946077525771, 30.258913291336622 ], [ -95.569656077760754, 30.258844291769286 ], [ -95.569630077694526, 30.258729291573914 ], [ -95.569445076769838, 30.258752291250957 ], [ -95.569234076818617, 30.258981291571917 ], [ -95.569234077034494, 30.259233291568471 ], [ -95.569630077717093, 30.259302291745655 ], [ -95.569629077802347, 30.259554291477563 ], [ -95.569445076786749, 30.259783292066075 ], [ -95.56944507733445, 30.259897291582458 ], [ -95.569550076778398, 30.259989292282963 ], [ -95.569946076923728, 30.259943292010032 ], [ -95.5705260777506, 30.26024129223531 ], [ -95.570605077377934, 30.260516292031202 ], [ -95.570843077185074, 30.260470291780667 ], [ -95.570975077760536, 30.260173291865424 ], [ -95.571186078115645, 30.260196291453092 ], [ -95.571291077643821, 30.260471292116129 ], [ -95.571502077684727, 30.26042529193947 ], [ -95.571529078316942, 30.260242292022873 ], [ -95.571845077783308, 30.260059291564183 ], [ -95.571977077689752, 30.259875291997535 ], [ -95.572848078486189, 30.260357292214149 ], [ -95.572874077917533, 30.260471291664274 ], [ -95.573138077782758, 30.260655291457432 ], [ -95.573085078758865, 30.261525291865876 ], [ -95.573005078201405, 30.261800291766846 ], [ -95.573084078449597, 30.26193729230484 ], [ -95.573058078147085, 30.262189292587351 ], [ -95.572768078137415, 30.262395292328279 ], [ -95.572741077759318, 30.263220291993644 ], [ -95.57271407864593, 30.263494292040775 ], [ -95.572186078208333, 30.263723292358357 ], [ -95.57210707853487, 30.264021292683722 ], [ -95.572292078674792, 30.264410293024607 ], [ -95.572212078238792, 30.264754293130359 ], [ -95.572217078142401, 30.264850292815602 ], [ -95.572265078049043, 30.26571629289225 ], [ -95.572528077859246, 30.266243292902953 ], [ -95.573399078133392, 30.266152292582493 ], [ -95.57355707859422, 30.266358293309931 ], [ -95.574032078528674, 30.266587292849284 ], [ -95.574322078316058, 30.266587293046605 ], [ -95.57453407938057, 30.266358292816204 ], [ -95.574560078713048, 30.266221292613256 ], [ -95.574850078879678, 30.265969292840708 ], [ -95.575273078826029, 30.265946292534476 ], [ -95.575457079194948, 30.266152293251714 ], [ -95.575747079580381, 30.266267292964592 ], [ -95.575879078770228, 30.266542292997052 ], [ -95.576381079111584, 30.266588292991941 ], [ -95.576407079607122, 30.266886292789728 ], [ -95.576169079191033, 30.267390293254767 ], [ -95.576327079424601, 30.26755029323477 ], [ -95.576327079760631, 30.268123292958279 ], [ -95.576696079862131, 30.268443293612219 ], [ -95.576775079319077, 30.268856293233284 ], [ -95.577118079786061, 30.269131293318118 ], [ -95.577171079248984, 30.269291293235291 ], [ -95.577435079739487, 30.269497293969771 ], [ -95.578015080079126, 30.270184293565677 ], [ -95.57793507948675, 30.271398293455409 ], [ -95.577645079947388, 30.27167329397059 ], [ -95.577618079853124, 30.272017294194342 ], [ -95.57741908005201, 30.272305293984623 ], [ -95.577381079428548, 30.272360293997391 ], [ -95.577301079512765, 30.272841294188318 ], [ -95.577407079721326, 30.272933294201589 ], [ -95.577407079526182, 30.27313929416961 ], [ -95.577195079476951, 30.273322294178687 ], [ -95.577195079393789, 30.27362029456085 ], [ -95.577459079707651, 30.273849294444897 ], [ -95.577538079671811, 30.274215294607298 ], [ -95.57764408050592, 30.274284294479287 ], [ -95.578198080352465, 30.274307294739007 ], [ -95.57806508044078, 30.274926294226542 ], [ -95.577749080616599, 30.275475294305522 ], [ -95.577907080682678, 30.275888294418646 ], [ -95.577933080358548, 30.276323295319038 ], [ -95.577801079871776, 30.276575294774794 ], [ -95.577854080147219, 30.276781295295017 ], [ -95.578012079833755, 30.27691829505039 ], [ -95.578619080926757, 30.277193295052037 ], [ -95.578935080397557, 30.277102294803395 ], [ -95.57964808066022, 30.27726229533943 ], [ -95.580097080759515, 30.277217294735895 ], [ -95.580466080700106, 30.277515295367184 ], [ -95.581521081484212, 30.277675295359924 ], [ -95.582075081041822, 30.277882294792761 ], [ -95.58273508126436, 30.278546295169367 ], [ -95.582735081633373, 30.278638295283844 ], [ -95.583342081784707, 30.278935295634135 ], [ -95.583632081519497, 30.279279295301976 ], [ -95.583711082247689, 30.27955429560344 ], [ -95.583948082264968, 30.279806294954433 ], [ -95.584291081963983, 30.27992129532927 ], [ -95.58495108231665, 30.279715295469806 ], [ -95.585241082057877, 30.279738295353777 ], [ -95.585499082149823, 30.279853295719118 ], [ -95.586218082754655, 30.280173295567046 ], [ -95.586323082269999, 30.28037929570586 ], [ -95.586270082407125, 30.280677295176535 ], [ -95.585901082179447, 30.281250295495703 ], [ -95.585821082378658, 30.281547295491961 ], [ -95.585900082904885, 30.281776295437385 ], [ -95.585689082986107, 30.282212295566115 ], [ -95.58579508255265, 30.282441295726539 ], [ -95.585794082046434, 30.282899296066958 ], [ -95.586111082768838, 30.283265295690683 ], [ -95.586084082831292, 30.283838296204106 ], [ -95.586348082976542, 30.284204296545994 ], [ -95.587272083161992, 30.284571296677814 ], [ -95.587377083366462, 30.284686296505587 ], [ -95.587403082956868, 30.285075296094256 ], [ -95.587060083281031, 30.285396296287903 ], [ -95.587034083014785, 30.285739296657479 ], [ -95.587139082874899, 30.286060296682876 ], [ -95.58708608269994, 30.286747297045842 ], [ -95.587218083611717, 30.287228296514893 ], [ -95.587456083550293, 30.287526296619102 ], [ -95.588274083609164, 30.287778297044504 ], [ -95.589039083369414, 30.288786296991528 ], [ -95.589144083519287, 30.28924429733166 ], [ -95.589513084140805, 30.289496296711132 ], [ -95.589592084290871, 30.289862297604845 ], [ -95.589830083820175, 30.290091297506862 ], [ -95.589909084190339, 30.290527296904138 ], [ -95.590384084408427, 30.290664297202927 ], [ -95.590384084515208, 30.291054297360972 ], [ -95.59025208392498, 30.291283297516852 ], [ -95.590331084023035, 30.29135129784143 ], [ -95.590964084220019, 30.291558297246066 ], [ -95.591730084661677, 30.291535297759946 ], [ -95.592046084999865, 30.291901297905028 ], [ -95.592733084311803, 30.291947297446402 ], [ -95.593049084720931, 30.292177297243793 ], [ -95.593181085056997, 30.292406297633541 ], [ -95.593313084601604, 30.292932297281695 ], [ -95.593761084953812, 30.293391297860833 ], [ -95.59381408485747, 30.293642297808116 ], [ -95.593154084728184, 30.293780297671567 ], [ -95.592837085240959, 30.294032297984636 ], [ -95.59275808452125, 30.294398298000122 ], [ -95.593312084570258, 30.294559298207098 ], [ -95.593999084859604, 30.295177298386598 ], [ -95.594394084918619, 30.295177297794396 ], [ -95.594553085185453, 30.294513297770926 ], [ -95.594843084874782, 30.29462829835364 ], [ -95.594896085402638, 30.295017297762087 ], [ -95.595292085255636, 30.295292298394287 ], [ -95.595107085692419, 30.295612298275689 ], [ -95.595186085163789, 30.295750298518662 ], [ -95.595503085445444, 30.295864298588022 ], [ -95.595635085321121, 30.296162298179254 ], [ -95.596321085854171, 30.29616229846911 ], [ -95.596453085535273, 30.29627729801182 ], [ -95.596505085923056, 30.296827298498869 ], [ -95.59674308583412, 30.29719329821647 ], [ -95.597115086159334, 30.297468298537968 ], [ -95.597962086718994, 30.298095298922458 ], [ -95.597930086450063, 30.298207298283391 ], [ -95.597965085946186, 30.298465298970267 ], [ -95.5980920865874, 30.299416298902045 ], [ -95.598171086636114, 30.300652299419728 ], [ -95.598206086987616, 30.301182299358612 ], [ -95.59831008659819, 30.301960299559372 ], [ -95.598629086295915, 30.303589299433973 ], [ -95.59889608668415, 30.304949300081528 ], [ -95.59916908736821, 30.305756300267646 ], [ -95.599445087038674, 30.306566299969163 ], [ -95.599519087068288, 30.306851300489679 ], [ -95.599656087595491, 30.30737730081907 ], [ -95.599681087536183, 30.307545300517198 ], [ -95.599710087439703, 30.307736300366326 ], [ -95.599778087816119, 30.308189300355732 ], [ -95.599823087747055, 30.308490300678983 ], [ -95.599830087632895, 30.308693300824402 ], [ -95.599844087561223, 30.30905030078933 ], [ -95.599857087368207, 30.30941030041015 ], [ -95.599879087484993, 30.310922300791823 ], [ -95.599879087745094, 30.310943301283562 ], [ -95.599909087893906, 30.312882301715032 ], [ -95.600014087938376, 30.318227302974648 ], [ -95.600169087877973, 30.318538302573213 ], [ -95.600208087891176, 30.31861730228826 ], [ -95.600256087786661, 30.318871302316349 ], [ -95.602018088336564, 30.318778302913373 ], [ -95.603592088345877, 30.318691302278758 ], [ -95.612892091642607, 30.318199301835428 ], [ -95.613334091331694, 30.318189302337743 ], [ -95.614327091611969, 30.31816630163414 ], [ -95.617091092023927, 30.318219302008814 ], [ -95.619551092792037, 30.318304301860607 ], [ -95.619895092799013, 30.318315301870967 ], [ -95.621524093742366, 30.318372302109175 ], [ -95.624770094176725, 30.318455301941334 ], [ -95.626226094662627, 30.318492301290206 ], [ -95.627790094560538, 30.318416301346073 ], [ -95.628955095114847, 30.318288301853425 ], [ -95.629949095688801, 30.318178301615664 ], [ -95.631371095988314, 30.318046301138288 ], [ -95.633519096679194, 30.317806301050013 ], [ -95.633774096891443, 30.317778301195279 ], [ -95.637333097659948, 30.317381301136518 ], [ -95.637705097235155, 30.317340300849704 ], [ -95.638250097579629, 30.317282300956222 ], [ -95.638833097979756, 30.317242300579988 ], [ -95.639125097460465, 30.317227301383507 ], [ -95.639418097412019, 30.317218300526708 ], [ -95.639709097813835, 30.317214300924348 ], [ -95.639912098198664, 30.317233301279284 ], [ -95.639995097694609, 30.317246300796715 ], [ -95.640132098172188, 30.317266301158256 ], [ -95.640375097746713, 30.317302300654237 ], [ -95.640833098351891, 30.317399301339769 ], [ -95.641280098552755, 30.317523301014258 ], [ -95.6417170982144, 30.317674301227889 ], [ -95.642016098074876, 30.317794300682102 ], [ -95.642330098868214, 30.317937301359972 ], [ -95.642633099063346, 30.318093300904593 ], [ -95.642728099035622, 30.318151300805425 ], [ -95.642827098819879, 30.318205301487861 ], [ -95.642923099008911, 30.318265300652229 ], [ -95.643248099295846, 30.31796130087244 ], [ -95.643381098841303, 30.317837301197745 ], [ -95.64344009845405, 30.317786301345414 ], [ -95.643489098881872, 30.317756300784133 ], [ -95.643571098847332, 30.3177073013557 ], [ -95.643717099392759, 30.317650301289159 ], [ -95.643791099268498, 30.317627300617076 ], [ -95.643865098594148, 30.31761230073861 ], [ -95.644007098787185, 30.317552301267334 ], [ -95.644144099255172, 30.31748430083476 ], [ -95.644268098831446, 30.317402301276953 ], [ -95.64432209874002, 30.317351301083651 ], [ -95.644356098873331, 30.317292301065301 ], [ -95.64437209867377, 30.317226300366631 ], [ -95.644385099527625, 30.317083300979473 ], [ -95.644375099423954, 30.316945300397055 ], [ -95.644266098977354, 30.315430300744712 ], [ -95.644329098535025, 30.314972300413828 ], [ -95.644393098955788, 30.314839299919758 ], [ -95.644419098593971, 30.314765300032782 ], [ -95.644448099003654, 30.31468130024049 ], [ -95.644471099073328, 30.314593300405555 ], [ -95.644499099014141, 30.314429300501946 ], [ -95.644503098559952, 30.314344300057648 ], [ -95.64450209927297, 30.314097299888097 ], [ -95.644500099035938, 30.313752299880225 ], [ -95.644528098837711, 30.313690300503414 ], [ -95.644554098711552, 30.313619300213492 ], [ -95.644570098813432, 30.313553300309412 ], [ -95.644577098764046, 30.313477300381965 ], [ -95.644577098701035, 30.313411300045626 ], [ -95.644557098548574, 30.31328130017911 ], [ -95.644536099383558, 30.313209300174517 ], [ -95.64447509942967, 30.313086300104491 ], [ -95.644430099289011, 30.313022299804764 ], [ -95.644411098986239, 30.312999299554054 ], [ -95.644385099145225, 30.312968300114317 ], [ -95.644324098582644, 30.312917299588783 ], [ -95.644263098842075, 30.312875299799469 ], [ -95.644147098359568, 30.312778299445423 ], [ -95.644048099198713, 30.312668299765299 ], [ -95.644006098283782, 30.312610300191004 ], [ -95.643968098990541, 30.312548299656548 ], [ -95.643908098663545, 30.312420299480138 ], [ -95.643886098651237, 30.312354299870943 ], [ -95.643870098276125, 30.312284299441064 ], [ -95.643854098529431, 30.312144300009503 ], [ -95.643973098593591, 30.30840929903859 ], [ -95.644022098193673, 30.307714299203521 ], [ -95.644079098346154, 30.307009298311552 ], [ -95.644261098824089, 30.30561329838303 ], [ -95.644296098336071, 30.305276297977507 ], [ -95.644356098429057, 30.30495229866624 ], [ -95.644567098167471, 30.304251297861274 ], [ -95.64481909856039, 30.303734297612838 ], [ -95.645025098338309, 30.303275298205044 ], [ -95.645104098215313, 30.30313429765053 ], [ -95.64529209918652, 30.30279729784667 ], [ -95.645504098621146, 30.302390297613893 ], [ -95.645623098373079, 30.302151297428296 ], [ -95.645741098370323, 30.301722297327355 ], [ -95.646139098369829, 30.300337297733684 ], [ -95.646457099265362, 30.299776297502472 ], [ -95.647874099090814, 30.298258297144312 ], [ -95.651026099566295, 30.294641296011619 ], [ -95.652459099921899, 30.29425429575392 ], [ -95.653047100180004, 30.293882296142531 ], [ -95.653559100299731, 30.293337295424799 ], [ -95.655723100776626, 30.292684295540298 ], [ -95.655878100847389, 30.292466295732467 ], [ -95.656141100957285, 30.289744294549397 ], [ -95.656359101003943, 30.289070294312097 ], [ -95.656655101356748, 30.288870294746914 ], [ -95.658498101250501, 30.288085294620526 ], [ -95.660496101456104, 30.286919294210936 ], [ -95.660770101525273, 30.286582294245143 ], [ -95.660975101985116, 30.286139293618401 ], [ -95.661166102401253, 30.285755293854628 ], [ -95.661547102344258, 30.285462294203732 ], [ -95.661924102521198, 30.28505229384033 ], [ -95.662193102015976, 30.28447829314204 ], [ -95.662844102223573, 30.283659293658893 ], [ -95.663090102176909, 30.283204293105296 ], [ -95.663518102073681, 30.282746293304967 ], [ -95.663566102226966, 30.28260329292717 ], [ -95.663772102341369, 30.280935292870666 ], [ -95.66387110236731, 30.280742292806 ], [ -95.664355102885182, 30.280517292771364 ], [ -95.664427102379861, 30.280326292221627 ], [ -95.662976101670452, 30.28038929304175 ], [ -95.662581101858308, 30.279404292218366 ], [ -95.663558101974161, 30.2779382919338 ], [ -95.664112102550675, 30.277526292169284 ], [ -95.664824102143783, 30.276541291550402 ], [ -95.665458102476393, 30.276243292042356 ], [ -95.665827102849363, 30.275969291628112 ], [ -95.666065103019818, 30.275556291785698 ], [ -95.666012102521421, 30.275144291738538 ], [ -95.665880102828723, 30.275007291580877 ], [ -95.665880102451737, 30.274182291409669 ], [ -95.666012102337902, 30.273610290759507 ], [ -95.666383102885604, 30.26951029012826 ], [ -95.66648910231757, 30.267220290242001 ], [ -95.666700102804867, 30.266670290198022 ], [ -95.666700101998174, 30.26616628951124 ], [ -95.666515102475373, 30.265456289598188 ], [ -95.666779102668528, 30.264815289781513 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1338, "Tract": "48339694503", "Area_SqMi": 18.217440586157203, "total_2009": 318, "total_2010": 264, "total_2011": 254, "total_2012": 301, "total_2013": 341, "total_2014": 363, "total_2015": 475, "total_2016": 574, "total_2017": 513, "total_2018": 587, "total_2019": 661, "total_2020": 609, "age1": 346, "age2": 581, "age3": 214, "earn1": 275, "earn2": 346, "earn3": 520, "naics_s01": 0, "naics_s02": 6, "naics_s03": 0, "naics_s04": 28, "naics_s05": 0, "naics_s06": 13, "naics_s07": 84, "naics_s08": 11, "naics_s09": 2, "naics_s10": 25, "naics_s11": 26, "naics_s12": 99, "naics_s13": 0, "naics_s14": 82, "naics_s15": 3, "naics_s16": 473, "naics_s17": 111, "naics_s18": 125, "naics_s19": 53, "naics_s20": 0, "race1": 932, "race2": 120, "race3": 10, "race4": 59, "race5": 0, "race6": 20, "ethnicity1": 931, "ethnicity2": 210, "edu1": 118, "edu2": 195, "edu3": 277, "edu4": 205, "Shape_Length": 122748.65788466993, "Shape_Area": 507871064.08088744, "total_2021": 810, "total_2022": 1141 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.600256087786661, 30.318871302316349 ], [ -95.600208087891176, 30.31861730228826 ], [ -95.600169087877973, 30.318538302573213 ], [ -95.600014087938376, 30.318227302974648 ], [ -95.599909087893906, 30.312882301715032 ], [ -95.599879087745094, 30.310943301283562 ], [ -95.599879087484993, 30.310922300791823 ], [ -95.599857087368207, 30.30941030041015 ], [ -95.599844087561223, 30.30905030078933 ], [ -95.599830087632895, 30.308693300824402 ], [ -95.599823087747055, 30.308490300678983 ], [ -95.599778087816119, 30.308189300355732 ], [ -95.599710087439703, 30.307736300366326 ], [ -95.599681087536183, 30.307545300517198 ], [ -95.599656087595491, 30.30737730081907 ], [ -95.599519087068288, 30.306851300489679 ], [ -95.599445087038674, 30.306566299969163 ], [ -95.59916908736821, 30.305756300267646 ], [ -95.59889608668415, 30.304949300081528 ], [ -95.598629086295915, 30.303589299433973 ], [ -95.59831008659819, 30.301960299559372 ], [ -95.598206086987616, 30.301182299358612 ], [ -95.598171086636114, 30.300652299419728 ], [ -95.5980920865874, 30.299416298902045 ], [ -95.597965085946186, 30.298465298970267 ], [ -95.597930086450063, 30.298207298283391 ], [ -95.597962086718994, 30.298095298922458 ], [ -95.597115086159334, 30.297468298537968 ], [ -95.59674308583412, 30.29719329821647 ], [ -95.596505085923056, 30.296827298498869 ], [ -95.596453085535273, 30.29627729801182 ], [ -95.596321085854171, 30.29616229846911 ], [ -95.595635085321121, 30.296162298179254 ], [ -95.595503085445444, 30.295864298588022 ], [ -95.595186085163789, 30.295750298518662 ], [ -95.595107085692419, 30.295612298275689 ], [ -95.595292085255636, 30.295292298394287 ], [ -95.594896085402638, 30.295017297762087 ], [ -95.594843084874782, 30.29462829835364 ], [ -95.594553085185453, 30.294513297770926 ], [ -95.594394084918619, 30.295177297794396 ], [ -95.593999084859604, 30.295177298386598 ], [ -95.593312084570258, 30.294559298207098 ], [ -95.59275808452125, 30.294398298000122 ], [ -95.592837085240959, 30.294032297984636 ], [ -95.593154084728184, 30.293780297671567 ], [ -95.59381408485747, 30.293642297808116 ], [ -95.593761084953812, 30.293391297860833 ], [ -95.593313084601604, 30.292932297281695 ], [ -95.593181085056997, 30.292406297633541 ], [ -95.593049084720931, 30.292177297243793 ], [ -95.592733084311803, 30.291947297446402 ], [ -95.592046084999865, 30.291901297905028 ], [ -95.591730084661677, 30.291535297759946 ], [ -95.590964084220019, 30.291558297246066 ], [ -95.590331084023035, 30.29135129784143 ], [ -95.59025208392498, 30.291283297516852 ], [ -95.590384084515208, 30.291054297360972 ], [ -95.590384084408427, 30.290664297202927 ], [ -95.589909084190339, 30.290527296904138 ], [ -95.589830083820175, 30.290091297506862 ], [ -95.589592084290871, 30.289862297604845 ], [ -95.589513084140805, 30.289496296711132 ], [ -95.589144083519287, 30.28924429733166 ], [ -95.589039083369414, 30.288786296991528 ], [ -95.588274083609164, 30.287778297044504 ], [ -95.587456083550293, 30.287526296619102 ], [ -95.587218083611717, 30.287228296514893 ], [ -95.58708608269994, 30.286747297045842 ], [ -95.587139082874899, 30.286060296682876 ], [ -95.587034083014785, 30.285739296657479 ], [ -95.587060083281031, 30.285396296287903 ], [ -95.587403082956868, 30.285075296094256 ], [ -95.587377083366462, 30.284686296505587 ], [ -95.587272083161992, 30.284571296677814 ], [ -95.586348082976542, 30.284204296545994 ], [ -95.586084082831292, 30.283838296204106 ], [ -95.586111082768838, 30.283265295690683 ], [ -95.585794082046434, 30.282899296066958 ], [ -95.58579508255265, 30.282441295726539 ], [ -95.585689082986107, 30.282212295566115 ], [ -95.585900082904885, 30.281776295437385 ], [ -95.585821082378658, 30.281547295491961 ], [ -95.585901082179447, 30.281250295495703 ], [ -95.586270082407125, 30.280677295176535 ], [ -95.586323082269999, 30.28037929570586 ], [ -95.586218082754655, 30.280173295567046 ], [ -95.585499082149823, 30.279853295719118 ], [ -95.585241082057877, 30.279738295353777 ], [ -95.58495108231665, 30.279715295469806 ], [ -95.584291081963983, 30.27992129532927 ], [ -95.583948082264968, 30.279806294954433 ], [ -95.583711082247689, 30.27955429560344 ], [ -95.583632081519497, 30.279279295301976 ], [ -95.583342081784707, 30.278935295634135 ], [ -95.582735081633373, 30.278638295283844 ], [ -95.58273508126436, 30.278546295169367 ], [ -95.582075081041822, 30.277882294792761 ], [ -95.581521081484212, 30.277675295359924 ], [ -95.580466080700106, 30.277515295367184 ], [ -95.580097080759515, 30.277217294735895 ], [ -95.57964808066022, 30.27726229533943 ], [ -95.578935080397557, 30.277102294803395 ], [ -95.578619080926757, 30.277193295052037 ], [ -95.578012079833755, 30.27691829505039 ], [ -95.577854080147219, 30.276781295295017 ], [ -95.577801079871776, 30.276575294774794 ], [ -95.577933080358548, 30.276323295319038 ], [ -95.577907080682678, 30.275888294418646 ], [ -95.577749080616599, 30.275475294305522 ], [ -95.57806508044078, 30.274926294226542 ], [ -95.578198080352465, 30.274307294739007 ], [ -95.57764408050592, 30.274284294479287 ], [ -95.577538079671811, 30.274215294607298 ], [ -95.577459079707651, 30.273849294444897 ], [ -95.577195079393789, 30.27362029456085 ], [ -95.577195079476951, 30.273322294178687 ], [ -95.577407079526182, 30.27313929416961 ], [ -95.577407079721326, 30.272933294201589 ], [ -95.577301079512765, 30.272841294188318 ], [ -95.577381079428548, 30.272360293997391 ], [ -95.57741908005201, 30.272305293984623 ], [ -95.577618079853124, 30.272017294194342 ], [ -95.577645079947388, 30.27167329397059 ], [ -95.57793507948675, 30.271398293455409 ], [ -95.578015080079126, 30.270184293565677 ], [ -95.577435079739487, 30.269497293969771 ], [ -95.577171079248984, 30.269291293235291 ], [ -95.577118079786061, 30.269131293318118 ], [ -95.576775079319077, 30.268856293233284 ], [ -95.576696079862131, 30.268443293612219 ], [ -95.576327079760631, 30.268123292958279 ], [ -95.576327079424601, 30.26755029323477 ], [ -95.576169079191033, 30.267390293254767 ], [ -95.576407079607122, 30.266886292789728 ], [ -95.576381079111584, 30.266588292991941 ], [ -95.575879078770228, 30.266542292997052 ], [ -95.575747079580381, 30.266267292964592 ], [ -95.575457079194948, 30.266152293251714 ], [ -95.575273078826029, 30.265946292534476 ], [ -95.574850078879678, 30.265969292840708 ], [ -95.574560078713048, 30.266221292613256 ], [ -95.57453407938057, 30.266358292816204 ], [ -95.574322078316058, 30.266587293046605 ], [ -95.574032078528674, 30.266587292849284 ], [ -95.57355707859422, 30.266358293309931 ], [ -95.573399078133392, 30.266152292582493 ], [ -95.572528077859246, 30.266243292902953 ], [ -95.572265078049043, 30.26571629289225 ], [ -95.572217078142401, 30.264850292815602 ], [ -95.572212078238792, 30.264754293130359 ], [ -95.572292078674792, 30.264410293024607 ], [ -95.57210707853487, 30.264021292683722 ], [ -95.572186078208333, 30.263723292358357 ], [ -95.57271407864593, 30.263494292040775 ], [ -95.572741077759318, 30.263220291993644 ], [ -95.572768078137415, 30.262395292328279 ], [ -95.573058078147085, 30.262189292587351 ], [ -95.573084078449597, 30.26193729230484 ], [ -95.573005078201405, 30.261800291766846 ], [ -95.573085078758865, 30.261525291865876 ], [ -95.573138077782758, 30.260655291457432 ], [ -95.572874077917533, 30.260471291664274 ], [ -95.572848078486189, 30.260357292214149 ], [ -95.571977077689752, 30.259875291997535 ], [ -95.571845077783308, 30.260059291564183 ], [ -95.571529078316942, 30.260242292022873 ], [ -95.571502077684727, 30.26042529193947 ], [ -95.571291077643821, 30.260471292116129 ], [ -95.571186078115645, 30.260196291453092 ], [ -95.570975077760536, 30.260173291865424 ], [ -95.570843077185074, 30.260470291780667 ], [ -95.570605077377934, 30.260516292031202 ], [ -95.5705260777506, 30.26024129223531 ], [ -95.569946076923728, 30.259943292010032 ], [ -95.569550076778398, 30.259989292282963 ], [ -95.56944507733445, 30.259897291582458 ], [ -95.569445076786749, 30.259783292066075 ], [ -95.569629077802347, 30.259554291477563 ], [ -95.569630077717093, 30.259302291745655 ], [ -95.569234077034494, 30.259233291568471 ], [ -95.569234076818617, 30.258981291571917 ], [ -95.569445076769838, 30.258752291250957 ], [ -95.569630077694526, 30.258729291573914 ], [ -95.569656077760754, 30.258844291769286 ], [ -95.569946077525771, 30.258913291336622 ], [ -95.569999077479366, 30.258706291286316 ], [ -95.570316077558644, 30.258546291924183 ], [ -95.570844077289095, 30.25804329161987 ], [ -95.570870077893289, 30.257859291513824 ], [ -95.570686077631649, 30.257699291454681 ], [ -95.570343077372726, 30.257676291247662 ], [ -95.569974077373715, 30.257378291109422 ], [ -95.569472077006381, 30.25724029163008 ], [ -95.569182076605543, 30.257011291010635 ], [ -95.568444076978381, 30.25666729125415 ], [ -95.5683910768321, 30.256576291316136 ], [ -95.567547076491408, 30.256575291070337 ], [ -95.567283076401026, 30.256415291232177 ], [ -95.566966076389448, 30.256438290927345 ], [ -95.566755076746773, 30.256598290892974 ], [ -95.566649076642904, 30.256918291473781 ], [ -95.566675076562831, 30.257720291331296 ], [ -95.566438076004289, 30.258041291985311 ], [ -95.565435076352699, 30.257949292064389 ], [ -95.565066076342504, 30.257605291486549 ], [ -95.564037075913348, 30.257788291694631 ], [ -95.563793075572022, 30.257719291352011 ], [ -95.563377076107002, 30.257604292001197 ], [ -95.562823075674359, 30.257627291634524 ], [ -95.562639075387935, 30.257535291521993 ], [ -95.562323074938561, 30.25671029170725 ], [ -95.562138074784116, 30.256458291312565 ], [ -95.561742075156999, 30.256573291452174 ], [ -95.561399074846548, 30.256801291698604 ], [ -95.560792075150317, 30.257007291852268 ], [ -95.560502074715444, 30.257007291598288 ], [ -95.560502074874279, 30.256801291111181 ], [ -95.560740075347795, 30.25650329171301 ], [ -95.560740075262345, 30.255771291036581 ], [ -95.56066107451521, 30.255679291746546 ], [ -95.560344074805286, 30.255747291586665 ], [ -95.55994807480252, 30.256434291516452 ], [ -95.559658075100359, 30.256503291695605 ], [ -95.55955207433243, 30.256388291382216 ], [ -95.559500074947451, 30.256022291447088 ], [ -95.559236074546831, 30.255838291583864 ], [ -95.558577073949365, 30.25565529132518 ], [ -95.558550073880014, 30.255426290884554 ], [ -95.558709074138761, 30.255334291111151 ], [ -95.559237074271223, 30.255335291572067 ], [ -95.559342074607201, 30.255266291484201 ], [ -95.559342073973141, 30.25506029166382 ], [ -95.558340074535252, 30.254487291080707 ], [ -95.557997073770395, 30.254510291003555 ], [ -95.557654073663613, 30.254807291538988 ], [ -95.556678073471446, 30.254967291227437 ], [ -95.556519073315386, 30.255425291777346 ], [ -95.556176073569063, 30.255516291410377 ], [ -95.556044074072432, 30.255425291283647 ], [ -95.555754073480884, 30.255447291778108 ], [ -95.555410073212499, 30.255974291896141 ], [ -95.555489073095828, 30.256180291726249 ], [ -95.555436073786197, 30.25659329143345 ], [ -95.554988073183793, 30.256592292075162 ], [ -95.554460073413139, 30.256432291745217 ], [ -95.553985073012726, 30.256431291372476 ], [ -95.553669072620451, 30.256592291990113 ], [ -95.553378072692396, 30.256523291732606 ], [ -95.55308807265817, 30.256591291485375 ], [ -95.552851072642056, 30.256797291943617 ], [ -95.552534073220286, 30.25677429171003 ], [ -95.552534073083876, 30.256339291443979 ], [ -95.552429072580026, 30.256247292160126 ], [ -95.551136072261585, 30.256682291510078 ], [ -95.550977072272843, 30.256842292231322 ], [ -95.550898071919676, 30.257392291923615 ], [ -95.550634071844556, 30.257643292467257 ], [ -95.550396072382412, 30.257643291946582 ], [ -95.549763072459385, 30.257368291958045 ], [ -95.54928807160853, 30.257368292201374 ], [ -95.548971072338404, 30.257551291879125 ], [ -95.548602071749684, 30.257894291767872 ], [ -95.547414071922475, 30.258146292712876 ], [ -95.546517071539284, 30.258695292155579 ], [ -95.546147071349353, 30.258740292230737 ], [ -95.545409071264189, 30.258144292317269 ], [ -95.545538071212263, 30.26162629307824 ], [ -95.545248071408125, 30.261511292790033 ], [ -95.544960071586686, 30.261534292868081 ], [ -95.544668071164651, 30.261557293481999 ], [ -95.544456070729495, 30.261763292706028 ], [ -95.544456071006749, 30.262060293516804 ], [ -95.544324071052699, 30.26219829308641 ], [ -95.542899070312316, 30.262678293276121 ], [ -95.542793070837689, 30.262907293566094 ], [ -95.542819070375856, 30.263800293383703 ], [ -95.542370070423644, 30.264075293484787 ], [ -95.541261070560239, 30.264372293796203 ], [ -95.540707070625416, 30.264669293409135 ], [ -95.539968070108657, 30.264783293773938 ], [ -95.539546070309726, 30.264760293475689 ], [ -95.538887069774916, 30.264439293574409 ], [ -95.53867506970316, 30.264439293796119 ], [ -95.538095069675734, 30.264164293517922 ], [ -95.537356069762083, 30.264072293875575 ], [ -95.537357069000436, 30.263865294205466 ], [ -95.537832069045294, 30.263660293491174 ], [ -95.537832069587353, 30.2634762936156 ], [ -95.537621069346159, 30.263270293262277 ], [ -95.537120068867949, 30.263018293398726 ], [ -95.537041069574869, 30.262674293891237 ], [ -95.536646068908553, 30.262170293895988 ], [ -95.536435069404831, 30.262101293838057 ], [ -95.535907069277229, 30.262192293398311 ], [ -95.535722069157615, 30.262536293801208 ], [ -95.535299068225797, 30.262902293493482 ], [ -95.534904069028144, 30.262925293888127 ], [ -95.534007068288616, 30.262489294073106 ], [ -95.533426068327074, 30.262557293408378 ], [ -95.532555068227239, 30.263015294144051 ], [ -95.532053068361662, 30.26347229434705 ], [ -95.531862067665415, 30.263542293610605 ], [ -95.531182067296768, 30.263792293899424 ], [ -95.530786067256457, 30.264113294146021 ], [ -95.530153067754043, 30.264319294528001 ], [ -95.529651067613457, 30.264891294412742 ], [ -95.528410067138509, 30.26537129433207 ], [ -95.527671066349654, 30.265783294186491 ], [ -95.526403066682391, 30.266744294617943 ], [ -95.526192066458449, 30.26713329459286 ], [ -95.525980066759146, 30.26807229505151 ], [ -95.525399066632772, 30.268484294866511 ], [ -95.524949066036172, 30.269354295226741 ], [ -95.524236066072731, 30.269903295485321 ], [ -95.523946065982599, 30.270017295420093 ], [ -95.5234710658804, 30.269971295967277 ], [ -95.523366066297882, 30.269696295813869 ], [ -95.523524065741682, 30.269330295307871 ], [ -95.523578065872783, 30.268895295458716 ], [ -95.523182066122232, 30.268459295361517 ], [ -95.522338065963012, 30.268459295030983 ], [ -95.52117706484384, 30.268549295274326 ], [ -95.520675065256029, 30.268572294905962 ], [ -95.520385065231991, 30.268755295254842 ], [ -95.520226064980804, 30.269098295205673 ], [ -95.520173064760797, 30.269419295971876 ], [ -95.519988064608697, 30.269579295922359 ], [ -95.519619065139722, 30.269716295357664 ], [ -95.519539064584933, 30.270106295651907 ], [ -95.519724065328859, 30.270197295626701 ], [ -95.520832065465626, 30.270198295912166 ], [ -95.520937065304295, 30.270336295729276 ], [ -95.520911065484299, 30.270565295390295 ], [ -95.520382065443641, 30.271114295601283 ], [ -95.520382064955655, 30.271549295690793 ], [ -95.520593065262787, 30.271893296156755 ], [ -95.520539065452525, 30.272465296031235 ], [ -95.52027506524351, 30.272992296074214 ], [ -95.520037065634739, 30.273221296553743 ], [ -95.519219064668476, 30.273426296339441 ], [ -95.519008065009231, 30.27367829625944 ], [ -95.518928064964101, 30.274411296322182 ], [ -95.518822064835831, 30.274617297010266 ], [ -95.518584064993632, 30.27477729701117 ], [ -95.518004064636401, 30.274594296399151 ], [ -95.517661064275288, 30.274639296785157 ], [ -95.517423065172409, 30.274868296357099 ], [ -95.517106064180453, 30.274868296496358 ], [ -95.51684306402835, 30.274776297065873 ], [ -95.516236064145843, 30.274134296185132 ], [ -95.515842063723838, 30.272897296520828 ], [ -95.515526063972587, 30.272393295880338 ], [ -95.515104063847104, 30.272003295892695 ], [ -95.514756064300911, 30.271860296553012 ], [ -95.514655063557086, 30.271819295862631 ], [ -95.513890063101996, 30.271796296330862 ], [ -95.513547063659601, 30.271704296163406 ], [ -95.513310063764749, 30.27152129610343 ], [ -95.512861063799804, 30.271452295833242 ], [ -95.512545063577349, 30.271268295989309 ], [ -95.512255063293921, 30.270855296016791 ], [ -95.511991063124611, 30.270741296419462 ], [ -95.511358062953832, 30.270763296032506 ], [ -95.5109880623706, 30.27101529644894 ], [ -95.510513063034978, 30.271541295878656 ], [ -95.51009006240642, 30.271861296242442 ], [ -95.509403062996952, 30.272571296361896 ], [ -95.508875062634772, 30.272754296536903 ], [ -95.508163062591834, 30.27268429670513 ], [ -95.507398062232923, 30.272363296200126 ], [ -95.50708106218579, 30.272294296933971 ], [ -95.506342062019542, 30.272362296583648 ], [ -95.506105061398429, 30.272499297072059 ], [ -95.505867062077272, 30.272843296566819 ], [ -95.505576061105828, 30.272842296853526 ], [ -95.504996061492548, 30.272567296626413 ], [ -95.504521060870999, 30.272475296640948 ], [ -95.504337060894287, 30.272314297104735 ], [ -95.504179061180736, 30.27171929698406 ], [ -95.503942061455547, 30.271398296079621 ], [ -95.502676060747078, 30.270984296684766 ], [ -95.502386060853169, 30.270755296103477 ], [ -95.502175060741749, 30.270228296708442 ], [ -95.501832060272392, 30.269930296325519 ], [ -95.501463060740278, 30.269861296620682 ], [ -95.50122606036517, 30.26974629638131 ], [ -95.500989060554531, 30.269402296491975 ], [ -95.500221059970571, 30.268903295853271 ], [ -95.499984060287787, 30.268880295729041 ], [ -95.49911205960646, 30.268079295661202 ], [ -95.498478059371607, 30.267897295822188 ], [ -95.498029059348738, 30.267462295605956 ], [ -95.497528059396899, 30.267417295975378 ], [ -95.497237059579518, 30.267509295699174 ], [ -95.496446058588347, 30.267944296348855 ], [ -95.495892058949778, 30.268059295814286 ], [ -95.495470058552328, 30.267945295733576 ], [ -95.494124058352043, 30.267878295913242 ], [ -95.493649058464413, 30.267901295744121 ], [ -95.493914058644023, 30.268703296028072 ], [ -95.49446905841711, 30.269321296137825 ], [ -95.494608058969803, 30.269662296564032 ], [ -95.494787059066894, 30.270099296690898 ], [ -95.495104058777486, 30.270580296446777 ], [ -95.495923058736864, 30.271289297063312 ], [ -95.496554059502941, 30.271526297178564 ], [ -95.49769205993347, 30.271952297083129 ], [ -95.498273059311387, 30.272478297184026 ], [ -95.498433059799339, 30.273577296931542 ], [ -95.498776060234078, 30.273889297315726 ], [ -95.499516060474875, 30.274561297447104 ], [ -95.499675060370933, 30.27479029745022 ], [ -95.500229060031003, 30.274904296914094 ], [ -95.501985060369577, 30.274992296984628 ], [ -95.502328060702368, 30.275176296987986 ], [ -95.502538060610974, 30.275428297594026 ], [ -95.502749060564426, 30.275840297029514 ], [ -95.502906061031823, 30.276596297325803 ], [ -95.502853061422215, 30.277123297965524 ], [ -95.502483061389185, 30.27774129811452 ], [ -95.501928060377139, 30.278405297605648 ], [ -95.501901061384302, 30.278794297935281 ], [ -95.502086060711534, 30.27884029767759 ], [ -95.503061060897934, 30.27966629781054 ], [ -95.503430061802106, 30.280101298740821 ], [ -95.503614061825942, 30.280628298131507 ], [ -95.503639061130443, 30.281819298881299 ], [ -95.50337306107015, 30.283216299067938 ], [ -95.503188061527268, 30.283560298801667 ], [ -95.503056060924195, 30.28417829950569 ], [ -95.503055061082549, 30.284659299652798 ], [ -95.503213061639741, 30.285163299225605 ], [ -95.503185061927439, 30.285965299559063 ], [ -95.503000061845043, 30.286652299848654 ], [ -95.503052061948523, 30.287362299892649 ], [ -95.503183061520957, 30.287591299724738 ], [ -95.503395061316553, 30.28766029954884 ], [ -95.504609061773891, 30.287501299369456 ], [ -95.505189062469327, 30.28777630000091 ], [ -95.505558061829049, 30.288509299940337 ], [ -95.505953062622496, 30.288968299588642 ], [ -95.506850063072605, 30.289633299936881 ], [ -95.506981062852475, 30.289793299685616 ], [ -95.506981062910739, 30.290343300107885 ], [ -95.506848062687411, 30.290755300524669 ], [ -95.506838062323638, 30.291031300737842 ], [ -95.506821062942095, 30.291534300370753 ], [ -95.507295062644957, 30.292153300890359 ], [ -95.508113063059895, 30.292543300241981 ], [ -95.509274063745551, 30.292910300611624 ], [ -95.509749063730098, 30.29323130110275 ], [ -95.510224063768419, 30.293804300624352 ], [ -95.512360064445218, 30.294883300665742 ], [ -95.512888063933488, 30.295066301022036 ], [ -95.513627064801128, 30.295067300914642 ], [ -95.515079065413985, 30.294496301004536 ], [ -95.515686065076338, 30.294496301117071 ], [ -95.516082065543031, 30.294703300817599 ], [ -95.517295065170572, 30.295780301189943 ], [ -95.519036066144594, 30.297454300806844 ], [ -95.519800066781102, 30.298073301662519 ], [ -95.52001106645848, 30.298325301373222 ], [ -95.519958065994672, 30.299058301332341 ], [ -95.519614066127431, 30.299767301267881 ], [ -95.519375066119252, 30.300752301923556 ], [ -95.519506066541354, 30.301920302428812 ], [ -95.519400066265035, 30.302241302306179 ], [ -95.518713066357819, 30.303019302291762 ], [ -95.518370066137251, 30.303133302554983 ], [ -95.518053066395055, 30.303087302872662 ], [ -95.517763065699185, 30.302973302732724 ], [ -95.51744706583338, 30.302194302212332 ], [ -95.517447066021049, 30.302010301798845 ], [ -95.517131065818361, 30.3017123018261 ], [ -95.516603065276129, 30.301735302177804 ], [ -95.516312066097129, 30.302101302737881 ], [ -95.515705065079786, 30.302261302699058 ], [ -95.515440065443755, 30.302581302418531 ], [ -95.515255065543954, 30.302673302585283 ], [ -95.514411065168147, 30.302672302449736 ], [ -95.514120064678124, 30.302878302241723 ], [ -95.51388206538391, 30.303244302505188 ], [ -95.513856064766756, 30.303428302614691 ], [ -95.51335406527447, 30.303794302869527 ], [ -95.512773064495406, 30.30402230290289 ], [ -95.512456064876361, 30.304297302971055 ], [ -95.512350064858396, 30.304503303304195 ], [ -95.512402065028212, 30.304961302685985 ], [ -95.512507064958442, 30.305167302597649 ], [ -95.513167064948505, 30.305832303330153 ], [ -95.513404065317346, 30.306222303513515 ], [ -95.513403065244816, 30.306771302985322 ], [ -95.513324065194467, 30.307000303008891 ], [ -95.512082064511574, 30.307847303192148 ], [ -95.511765064837817, 30.308465303928045 ], [ -95.511782064514577, 30.308877303856953 ], [ -95.511804064641609, 30.309431304053284 ], [ -95.511816064844623, 30.309725304207166 ], [ -95.511763065001915, 30.309953303961166 ], [ -95.511710064769332, 30.310183304402972 ], [ -95.511207064800843, 30.311144304096317 ], [ -95.511154065046554, 30.311521304588101 ], [ -95.511127065239947, 30.311717304770628 ], [ -95.511523064588602, 30.312629304138369 ], [ -95.511575065172735, 30.312748304628514 ], [ -95.511706065046084, 30.313344304503833 ], [ -95.511683064950162, 30.314182304906897 ], [ -95.511671065271344, 30.314629304561723 ], [ -95.513962065271485, 30.314837305220244 ], [ -95.515427066245678, 30.314960305092065 ], [ -95.515514065703925, 30.314967305181433 ], [ -95.515571065750066, 30.314972304903939 ], [ -95.51749306688464, 30.315135304936973 ], [ -95.518815067234826, 30.315243305114226 ], [ -95.522542067714397, 30.31554630519312 ], [ -95.523578067841839, 30.315630304411307 ], [ -95.526367068994062, 30.315820304580694 ], [ -95.528856069578197, 30.315895304644862 ], [ -95.533105070582877, 30.316247304505271 ], [ -95.536291070991567, 30.316512304211674 ], [ -95.536932071899145, 30.316565304475724 ], [ -95.538277071964785, 30.316677304492107 ], [ -95.541678072952962, 30.316957304430112 ], [ -95.54604307372648, 30.317310304163158 ], [ -95.547844074882548, 30.317456304089959 ], [ -95.550097075074675, 30.317637304269414 ], [ -95.553612075723763, 30.317934304523831 ], [ -95.555196076578298, 30.318063304198219 ], [ -95.555800076819338, 30.318113303783431 ], [ -95.556403076500644, 30.31816230405504 ], [ -95.558266076820132, 30.318314303660173 ], [ -95.560559077498112, 30.318501304236968 ], [ -95.562974078005297, 30.318697304310692 ], [ -95.563273078229898, 30.318722304265282 ], [ -95.564143078546877, 30.318793304319431 ], [ -95.565928078854881, 30.318939303914867 ], [ -95.566080078927286, 30.318951303516762 ], [ -95.566683079161535, 30.31900130346904 ], [ -95.567596079328155, 30.319077303975476 ], [ -95.568857079510764, 30.319182303889232 ], [ -95.570306080410944, 30.31930230385014 ], [ -95.572111081161083, 30.31945230372142 ], [ -95.57519408104379, 30.319707303370169 ], [ -95.575210081961302, 30.319708303800393 ], [ -95.575760082016771, 30.319754303466954 ], [ -95.575915081457609, 30.319767303947675 ], [ -95.576784082168643, 30.319839303820661 ], [ -95.577296082035147, 30.319882304164118 ], [ -95.578727082824429, 30.319952303502113 ], [ -95.579831082391365, 30.319953303353255 ], [ -95.580198082334988, 30.319953303630541 ], [ -95.582888083137988, 30.319791303588914 ], [ -95.585566083860158, 30.319630303298975 ], [ -95.585771083735608, 30.319622303460452 ], [ -95.588103084991687, 30.319526302969891 ], [ -95.588266084713126, 30.31951730279766 ], [ -95.588861085036967, 30.319486303498952 ], [ -95.591114085206044, 30.319367303297987 ], [ -95.591998086173604, 30.319320302970159 ], [ -95.592741085673367, 30.31928130298872 ], [ -95.593183086009475, 30.319257303243987 ], [ -95.594465086093535, 30.319190302823493 ], [ -95.595878086455556, 30.319112303034359 ], [ -95.597523087694711, 30.319022303261267 ], [ -95.598716087104023, 30.318956303042981 ], [ -95.599487087866478, 30.31891430253572 ], [ -95.600026088210925, 30.318884302903101 ], [ -95.600256087786661, 30.318871302316349 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1339, "Tract": "48339690102", "Area_SqMi": 10.277587074244373, "total_2009": 224, "total_2010": 260, "total_2011": 166, "total_2012": 225, "total_2013": 189, "total_2014": 182, "total_2015": 197, "total_2016": 232, "total_2017": 223, "total_2018": 264, "total_2019": 257, "total_2020": 233, "age1": 56, "age2": 157, "age3": 65, "earn1": 43, "earn2": 83, "earn3": 152, "naics_s01": 4, "naics_s02": 51, "naics_s03": 0, "naics_s04": 56, "naics_s05": 4, "naics_s06": 67, "naics_s07": 4, "naics_s08": 23, "naics_s09": 0, "naics_s10": 8, "naics_s11": 3, "naics_s12": 19, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 0, "naics_s19": 21, "naics_s20": 0, "race1": 239, "race2": 15, "race3": 4, "race4": 17, "race5": 0, "race6": 3, "ethnicity1": 202, "ethnicity2": 76, "edu1": 45, "edu2": 53, "edu3": 62, "edu4": 62, "Shape_Length": 84835.808865918021, "Shape_Area": 286521537.36385584, "total_2021": 234, "total_2022": 278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.760918118308922, 30.101037253325622 ], [ -95.76092711867166, 30.100963253252569 ], [ -95.760909119173107, 30.100808252699871 ], [ -95.760769118922227, 30.10042025328352 ], [ -95.760608119001049, 30.100599252481146 ], [ -95.760292118576004, 30.100644252936771 ], [ -95.759923118365748, 30.100323252628929 ], [ -95.759423118165543, 30.100117252737856 ], [ -95.759186117844038, 30.099865252499793 ], [ -95.759160118327443, 30.099544253112288 ], [ -95.759240118624632, 30.099063252554597 ], [ -95.759161118637721, 30.098880252191552 ], [ -95.758898118500696, 30.098674252861592 ], [ -95.758661118242614, 30.098307252431525 ], [ -95.758582117941003, 30.098032252223085 ], [ -95.758346117998784, 30.097849252381707 ], [ -95.758003117784725, 30.097802252184426 ], [ -95.757213117305085, 30.097985252741385 ], [ -95.757067117768912, 30.097940252918651 ], [ -95.756028116969034, 30.097618252201741 ], [ -95.755396117573056, 30.0978692525314 ], [ -95.754684116932538, 30.097937252288162 ], [ -95.754337117289126, 30.098324252479063 ], [ -95.754315117129565, 30.098349252540686 ], [ -95.753946117112946, 30.098532252560908 ], [ -95.753103116209857, 30.098623252541842 ], [ -95.752419116360798, 30.098302252687098 ], [ -95.751261116356972, 30.097155252170985 ], [ -95.750920116388329, 30.096376252429955 ], [ -95.750656116086844, 30.096216252041163 ], [ -95.75023211616454, 30.096539252872176 ], [ -95.749890115357388, 30.096883252375626 ], [ -95.749680115514678, 30.096975252358988 ], [ -95.749522115904782, 30.096907252271084 ], [ -95.749495115150566, 30.096700252161163 ], [ -95.749705116141243, 30.096311252828954 ], [ -95.749784115909335, 30.096013252251137 ], [ -95.749656115242772, 30.095706252625845 ], [ -95.749577115580252, 30.095438252182955 ], [ -95.749514115433911, 30.095439252546228 ], [ -95.749349115498987, 30.095395252240117 ], [ -95.749229116028729, 30.095417252359095 ], [ -95.749191115805246, 30.095433252434574 ], [ -95.749160115234957, 30.095461252338861 ], [ -95.749153115201779, 30.095494251942949 ], [ -95.749173115170777, 30.095626252065827 ], [ -95.749160115668062, 30.095703252323325 ], [ -95.749097115916626, 30.095780252135125 ], [ -95.749040115657408, 30.095824252498797 ], [ -95.749008115167896, 30.095840252285011 ], [ -95.748958114991012, 30.095851252119552 ], [ -95.748711115224083, 30.095857252144672 ], [ -95.748585114908664, 30.095851252460889 ], [ -95.748281115350011, 30.095753252368585 ], [ -95.747991114864035, 30.095676252429232 ], [ -95.74766811515272, 30.095505252736288 ], [ -95.74755411553582, 30.095473252194729 ], [ -95.747472114858411, 30.095478252056946 ], [ -95.747314115275088, 30.095533251893759 ], [ -95.747118114757185, 30.095528252260173 ], [ -95.746884114658798, 30.095451252732161 ], [ -95.746796114776501, 30.095401252473696 ], [ -95.746707114512589, 30.095369252289885 ], [ -95.746650115082801, 30.095363252464399 ], [ -95.746524114580907, 30.095358252579764 ], [ -95.746372115267746, 30.095369252573921 ], [ -95.74605611519587, 30.095468252758028 ], [ -95.745955114209224, 30.095479252746088 ], [ -95.745525114226709, 30.095584252240833 ], [ -95.745506114309578, 30.09557325229494 ], [ -95.745437114466171, 30.09539125211613 ], [ -95.745443114981583, 30.095248252177655 ], [ -95.74543011490195, 30.095166252173513 ], [ -95.745398114664269, 30.095122252390183 ], [ -95.745310114291357, 30.095050252243048 ], [ -95.745196114181169, 30.095040252139423 ], [ -95.745070114634117, 30.095084252007567 ], [ -95.744962114556529, 30.095095252383341 ], [ -95.744886114229772, 30.095089252088549 ], [ -95.744842114852602, 30.095067252056982 ], [ -95.744627113892832, 30.095007252755785 ], [ -95.744494114045253, 30.094985252028909 ], [ -95.744374114663827, 30.094985252566303 ], [ -95.744210113984877, 30.095018252613791 ], [ -95.743989114357873, 30.095145252740391 ], [ -95.743856114219554, 30.095178252188727 ], [ -95.743793114615471, 30.095211252766777 ], [ -95.743755113988271, 30.095244252256354 ], [ -95.743673113765297, 30.095403252803024 ], [ -95.743622114166371, 30.095568252906347 ], [ -95.743572113873256, 30.095661252882934 ], [ -95.743452113685137, 30.0957772520951 ], [ -95.743332114401454, 30.095821252190621 ], [ -95.743237113609922, 30.095898252225961 ], [ -95.743193113614623, 30.095953252230053 ], [ -95.743149114497385, 30.096074252480843 ], [ -95.743143113575115, 30.096156252751737 ], [ -95.743181113963644, 30.096354252442694 ], [ -95.743168113716465, 30.096481252339665 ], [ -95.743098114246337, 30.096563252917793 ], [ -95.743054113790492, 30.096580253002781 ], [ -95.742801113560219, 30.096547252297768 ], [ -95.742738114131583, 30.096552252927562 ], [ -95.742631113459296, 30.096607252671728 ], [ -95.742593113905485, 30.096624252681597 ], [ -95.742498113601826, 30.096629252287382 ], [ -95.742346113847816, 30.09656925230178 ], [ -95.742144113951909, 30.096520253073749 ], [ -95.742005114189212, 30.096470253093155 ], [ -95.741670113464536, 30.096432252675267 ], [ -95.741537114035594, 30.096399252342518 ], [ -95.741442113725739, 30.09634425244095 ], [ -95.741316113948173, 30.09621825295423 ], [ -95.741271114025963, 30.096185252433152 ], [ -95.741221113220689, 30.096157252277074 ], [ -95.741164113432575, 30.096141252433842 ], [ -95.741056113552276, 30.096124252932704 ], [ -95.740759113751636, 30.096130252989195 ], [ -95.740519113696692, 30.096053253016279 ], [ -95.740140113165708, 30.095883252790578 ], [ -95.739925113289488, 30.095806252260971 ], [ -95.739862113468988, 30.095795252330849 ], [ -95.739805112745444, 30.095757252980206 ], [ -95.739697113488816, 30.095603252931145 ], [ -95.739596112966865, 30.095509252525293 ], [ -95.739368112498369, 30.095438252296258 ], [ -95.739191113209856, 30.095400252276299 ], [ -95.73912811302425, 30.095372252831265 ], [ -95.739008113220208, 30.09529025266573 ], [ -95.738951113063791, 30.095262252447306 ], [ -95.738844112391632, 30.095240252150425 ], [ -95.738509113026112, 30.09521925283078 ], [ -95.738388113239168, 30.095191252231416 ], [ -95.738300112939584, 30.095136252857387 ], [ -95.738040112807766, 30.094823252246165 ], [ -95.737914112545894, 30.094741252584516 ], [ -95.73768011302829, 30.09471925216241 ], [ -95.737604112121133, 30.094724252593892 ], [ -95.737503112641917, 30.094708252119837 ], [ -95.737434112791092, 30.094647252296788 ], [ -95.737377112925415, 30.094576252602483 ], [ -95.737294112009295, 30.094521252907604 ], [ -95.737219112235096, 30.094494252809664 ], [ -95.737186111993097, 30.094487252866308 ], [ -95.737143112829088, 30.094477252287732 ], [ -95.73691511226896, 30.09446125229929 ], [ -95.736713111871396, 30.0944282520374 ], [ -95.736618112335591, 30.094422252520193 ], [ -95.736473111756013, 30.09435625249931 ], [ -95.73616911180703, 30.094126252659947 ], [ -95.736075112374749, 30.094095252071135 ], [ -95.736005111705424, 30.094071252451677 ], [ -95.735840111803029, 30.094054252093478 ], [ -95.735537111701746, 30.094082252588375 ], [ -95.735423111947313, 30.09406625256937 ], [ -95.735335112091434, 30.093978252777475 ], [ -95.735259111998019, 30.093873252702743 ], [ -95.735227111931593, 30.09383925258938 ], [ -95.735176111785464, 30.093785252352806 ], [ -95.735119112185785, 30.093736252377745 ], [ -95.735101112158389, 30.093726252587285 ], [ -95.734949111852146, 30.093637252567991 ], [ -95.734709111933668, 30.093588252292893 ], [ -95.734494111989903, 30.093522252193413 ], [ -95.734336111797219, 30.093494252623287 ], [ -95.73415911144933, 30.093478251964562 ], [ -95.734045111830753, 30.093489252169345 ], [ -95.733982111790965, 30.093517252063844 ], [ -95.733950111112136, 30.093544252302124 ], [ -95.733792111497934, 30.093742252107344 ], [ -95.733609111121481, 30.094022252333183 ], [ -95.733445111110996, 30.094193252558203 ], [ -95.733268111808357, 30.094325252700745 ], [ -95.733186111884791, 30.094374252584021 ], [ -95.733027110934273, 30.094441252414519 ], [ -95.73300211143588, 30.094451252787227 ], [ -95.732661111512385, 30.094517253083819 ], [ -95.732414110720143, 30.094545252732459 ], [ -95.732073111087772, 30.094644252687335 ], [ -95.731934110820447, 30.094650252925838 ], [ -95.731858111028473, 30.094633253000431 ], [ -95.731675111167576, 30.09465525309615 ], [ -95.731479110609541, 30.094743252339356 ], [ -95.731290111350205, 30.094798252511158 ], [ -95.731068111357331, 30.094919252888449 ], [ -95.730834110455248, 30.095007252396694 ], [ -95.730544110724409, 30.095068253009945 ], [ -95.73010811105145, 30.095118252536302 ], [ -95.72998111110148, 30.095156253191636 ], [ -95.729842110567787, 30.095228252653641 ], [ -95.729798110588163, 30.095266252877767 ], [ -95.729665110462321, 30.095305252561552 ], [ -95.729589110701198, 30.095316252737906 ], [ -95.729507110957442, 30.095316252755811 ], [ -95.729469110447326, 30.095305253122469 ], [ -95.7293491100518, 30.095250252777216 ], [ -95.729305110619251, 30.095211252901841 ], [ -95.729185110465266, 30.095173252506076 ], [ -95.729071110371351, 30.095195252526619 ], [ -95.729014110848652, 30.09523925275538 ], [ -95.728964110651361, 30.095310253190881 ], [ -95.728875110482122, 30.095376252671382 ], [ -95.728502110576841, 30.095580252597205 ], [ -95.728407109891691, 30.095651252645869 ], [ -95.728155109841722, 30.095789253079925 ], [ -95.727832109783563, 30.095877253165209 ], [ -95.727624109811799, 30.095954253215353 ], [ -95.727567110274663, 30.095998252843263 ], [ -95.727510110195396, 30.09607525357972 ], [ -95.727466110433966, 30.096157252785321 ], [ -95.727403109751478, 30.096405253649465 ], [ -95.727327110055711, 30.096542252908804 ], [ -95.727276110020298, 30.096586253137072 ], [ -95.727220109700752, 30.09661425333266 ], [ -95.72713711043852, 30.096614252872403 ], [ -95.726979109782647, 30.096559253248834 ], [ -95.726891110259629, 30.096548253277167 ], [ -95.726815109450982, 30.096548253308637 ], [ -95.72675810966409, 30.096570253636077 ], [ -95.726689110340971, 30.09662025290433 ], [ -95.726625110158224, 30.096680253334632 ], [ -95.726562109675726, 30.096773253044471 ], [ -95.726518109290737, 30.096878253545825 ], [ -95.72643610996974, 30.096977253355814 ], [ -95.726120109710109, 30.097197253833297 ], [ -95.726031109582109, 30.09724625317914 ], [ -95.725937109268472, 30.09727925331066 ], [ -95.725829109483229, 30.097290253769575 ], [ -95.725608110037726, 30.097290253745651 ], [ -95.72527310938375, 30.097164253576203 ], [ -95.725127109263326, 30.097126253549153 ], [ -95.725058109391298, 30.0971312532055 ], [ -95.725007109075278, 30.097148253861032 ], [ -95.724976109698744, 30.097170253171399 ], [ -95.724963109726986, 30.097208253322325 ], [ -95.724982109557587, 30.097362253067587 ], [ -95.72496310964668, 30.09745025362685 ], [ -95.724887109486872, 30.097599253679988 ], [ -95.724780109149663, 30.097676253771546 ], [ -95.724704109245664, 30.097708253846779 ], [ -95.72454010978673, 30.097758253729495 ], [ -95.724502109506531, 30.097780253865359 ], [ -95.724489109502542, 30.097956253754894 ], [ -95.724470109176451, 30.097994253887972 ], [ -95.724414109208141, 30.098049253472709 ], [ -95.724256109660061, 30.09813225412222 ], [ -95.724072108789997, 30.098187253285722 ], [ -95.724015108993797, 30.098220253757795 ], [ -95.723958109678193, 30.098264253697241 ], [ -95.723668109157529, 30.098594254055868 ], [ -95.72347810941227, 30.098720253608366 ], [ -95.723466109168484, 30.098759253556544 ], [ -95.723485109400258, 30.098946253717653 ], [ -95.723478108797337, 30.099100253605805 ], [ -95.723428108972058, 30.099210253782321 ], [ -95.723308108667368, 30.099276254144186 ], [ -95.7231061090678, 30.099309253980078 ], [ -95.723011109444499, 30.099342253929084 ], [ -95.722979108776983, 30.099375254034637 ], [ -95.72298610880776, 30.099440253678512 ], [ -95.723030109497174, 30.099484253559933 ], [ -95.72317510953188, 30.099561253903317 ], [ -95.723182109006302, 30.099583253759903 ], [ -95.723156109192459, 30.099622253652548 ], [ -95.72311810935112, 30.099655253794747 ], [ -95.723055108999958, 30.099765253778305 ], [ -95.722986108911485, 30.099847254149896 ], [ -95.722922108919349, 30.099902253992102 ], [ -95.722828109322947, 30.099968254054367 ], [ -95.722689109338006, 30.100023254318518 ], [ -95.72263210871202, 30.100029253679857 ], [ -95.722417109255673, 30.100001254440382 ], [ -95.722347109109791, 30.100001253877384 ], [ -95.722196108428278, 30.10004025428395 ], [ -95.722139108836757, 30.100045254412585 ], [ -95.722069108989601, 30.100040253950691 ], [ -95.721936108689164, 30.099974253837711 ], [ -95.721785108225333, 30.099875254023324 ], [ -95.721709108301027, 30.099870254196212 ], [ -95.721525108985858, 30.099925254499123 ], [ -95.721310108378034, 30.099947253788766 ], [ -95.721222108494445, 30.09993625377998 ], [ -95.720938108782647, 30.09983125372306 ], [ -95.720874108643443, 30.099821253877639 ], [ -95.720742108187849, 30.099815254251581 ], [ -95.720590108232344, 30.099821254418988 ], [ -95.720476107995736, 30.099782253766541 ], [ -95.720394107866923, 30.099766254474655 ], [ -95.720343108517156, 30.099771253983814 ], [ -95.720293108357978, 30.099804253965381 ], [ -95.720160108321366, 30.099980254215495 ], [ -95.720110108599059, 30.100030254242995 ], [ -95.720078108681051, 30.10004125382963 ], [ -95.720021108285664, 30.100030253796771 ], [ -95.719951108680775, 30.099964254202579 ], [ -95.719648108578568, 30.099727254367842 ], [ -95.719585108623178, 30.099689254345812 ], [ -95.719547108531231, 30.09967825375648 ], [ -95.719465108177985, 30.099678254040256 ], [ -95.719435107963037, 30.099682253854255 ], [ -95.719389108019413, 30.099689253946188 ], [ -95.719256108139092, 30.099728254344502 ], [ -95.719149108071278, 30.099744253813292 ], [ -95.71902810848691, 30.099750254118096 ], [ -95.718788108199846, 30.099711254116663 ], [ -95.718725108294876, 30.099717254340565 ], [ -95.718497108266988, 30.09971125451154 ], [ -95.718371108338459, 30.099684253763222 ], [ -95.718226107413997, 30.099607254455723 ], [ -95.718010107528144, 30.099470254025434 ], [ -95.717922107753864, 30.099426254271179 ], [ -95.717871107527586, 30.099420254233028 ], [ -95.717587108038487, 30.099448254353433 ], [ -95.717441107096363, 30.099393254011794 ], [ -95.717309107743802, 30.099365253844592 ], [ -95.717246107490951, 30.099393254154489 ], [ -95.717195107995593, 30.099453254440142 ], [ -95.71715610775621, 30.099540254005394 ], [ -95.717132107843767, 30.099596253901264 ], [ -95.717113107390418, 30.099662254455687 ], [ -95.717151107411667, 30.099833254651269 ], [ -95.717195107770692, 30.099959254488706 ], [ -95.717202107710506, 30.100020254691504 ], [ -95.717189108048856, 30.100063253904658 ], [ -95.717157107853126, 30.100118254365452 ], [ -95.717113107696591, 30.100151254373127 ], [ -95.716696107031183, 30.100256254461133 ], [ -95.716607107616142, 30.100289254765745 ], [ -95.716557107122938, 30.100338254442857 ], [ -95.716538107822998, 30.100382254153061 ], [ -95.716544107566904, 30.100454254725108 ], [ -95.716519107416872, 30.10052025398414 ], [ -95.716468107632977, 30.100608254490115 ], [ -95.71632910756496, 30.10077825466195 ], [ -95.716241107879384, 30.100938254289066 ], [ -95.716228107194041, 30.100993254628573 ], [ -95.71624110702956, 30.101053254331848 ], [ -95.716241107515359, 30.101174254122537 ], [ -95.71622210692864, 30.101234254808748 ], [ -95.716191107051458, 30.101284254428585 ], [ -95.716121107279704, 30.101339254408963 ], [ -95.716071107360023, 30.101361254274703 ], [ -95.715856107289426, 30.101400254987688 ], [ -95.715729106865894, 30.101465254682676 ], [ -95.715672107466048, 30.101531254672697 ], [ -95.715559107066426, 30.101812254868054 ], [ -95.715502107149547, 30.101911255035787 ], [ -95.715404106790146, 30.102039254993525 ], [ -95.715306106956561, 30.102169254798898 ], [ -95.715217107308874, 30.102257255243554 ], [ -95.715142107487949, 30.102290254544727 ], [ -95.714851107391837, 30.102356254974445 ], [ -95.714585106995798, 30.102450255104298 ], [ -95.714490106995186, 30.10246625533328 ], [ -95.714427106983493, 30.102466254765403 ], [ -95.714370106789829, 30.102455255078645 ], [ -95.714225106516579, 30.102395255298973 ], [ -95.713922106321704, 30.102324254778672 ], [ -95.713491106251482, 30.101961255025142 ], [ -95.713251106904053, 30.101840254475292 ], [ -95.713144106688603, 30.101802254425074 ], [ -95.712916106863389, 30.101752254496837 ], [ -95.712764106277561, 30.101752255183076 ], [ -95.712632106350839, 30.101774254500175 ], [ -95.712373106339797, 30.101835255082314 ], [ -95.712082106384528, 30.101846254778856 ], [ -95.711841106084762, 30.101868254932707 ], [ -95.711734106575506, 30.101890254629232 ], [ -95.711393106671551, 30.102016254969609 ], [ -95.711165106329631, 30.102137255066911 ], [ -95.710868105958866, 30.102341255414576 ], [ -95.710773105744266, 30.102390255125751 ], [ -95.710653106202457, 30.102412255464614 ], [ -95.710356105464825, 30.102500254584687 ], [ -95.710274105817888, 30.102511255152876 ], [ -95.710192106197056, 30.102550255295725 ], [ -95.710154106245824, 30.102588255246314 ], [ -95.710129105570289, 30.102693255191891 ], [ -95.710091105558121, 30.102759254745003 ], [ -95.710040106268011, 30.102808254697482 ], [ -95.709888106090702, 30.102869254808333 ], [ -95.709808106029286, 30.102881255243894 ], [ -95.709566105451344, 30.102918255104544 ], [ -95.709496106175877, 30.102918255143667 ], [ -95.709275105238888, 30.102858254744962 ], [ -95.709016105533635, 30.102786255014884 ], [ -95.708921105374316, 30.102775255268682 ], [ -95.708833105077147, 30.102775254805817 ], [ -95.708517105777602, 30.102885255022059 ], [ -95.708365105133552, 30.102907255193742 ], [ -95.708074104861709, 30.102891254735571 ], [ -95.707764104789788, 30.102831255242322 ], [ -95.707556105314183, 30.102825255605662 ], [ -95.707423105459739, 30.102836255658783 ], [ -95.707145105610593, 30.102908255278869 ], [ -95.707044104785567, 30.102913255451963 ], [ -95.706980105120209, 30.102902255395396 ], [ -95.706930104647171, 30.102875255012336 ], [ -95.706886104670929, 30.102814255081885 ], [ -95.706835105320366, 30.102765255554981 ], [ -95.706734105214267, 30.102715255273267 ], [ -95.706677105295427, 30.102677255334182 ], [ -95.706563104492375, 30.102639255456356 ], [ -95.706272104405159, 30.102589255305936 ], [ -95.706108105333072, 30.102540255519525 ], [ -95.705476104190396, 30.102441254894696 ], [ -95.705280104523979, 30.10238025484847 ], [ -95.705128104322256, 30.102320255015638 ], [ -95.705076104194731, 30.102272255488987 ], [ -95.705027104124596, 30.102227255315622 ], [ -95.704913104118802, 30.102155255529784 ], [ -95.704470104681278, 30.101803255510003 ], [ -95.704293104647775, 30.101633255099923 ], [ -95.703895104453139, 30.101199254836427 ], [ -95.703699104013808, 30.100853254830962 ], [ -95.703522103955493, 30.100462254720476 ], [ -95.703433103584842, 30.100364254762027 ], [ -95.703319104216902, 30.10026525467514 ], [ -95.703193103759375, 30.100116254802121 ], [ -95.703136104079135, 30.100006254553985 ], [ -95.70301610395758, 30.099814254538085 ], [ -95.702569103288539, 30.099430254572049 ], [ -95.702121103321815, 30.099046254644275 ], [ -95.702045103624201, 30.099359254546886 ], [ -95.701884103715912, 30.100072255290819 ], [ -95.701791104004499, 30.100441255252864 ], [ -95.701720104092729, 30.100649254745637 ], [ -95.701684103497016, 30.100719254934958 ], [ -95.701632103259044, 30.100781254679003 ], [ -95.701576104105058, 30.100838254896892 ], [ -95.70151010321861, 30.100888254623214 ], [ -95.701430103181266, 30.100936254843116 ], [ -95.701259103043071, 30.101020254746995 ], [ -95.701129103028222, 30.101066254751306 ], [ -95.700945103543177, 30.101119255259228 ], [ -95.699493103461037, 30.101361255295551 ], [ -95.699314103362553, 30.10139625524133 ], [ -95.699174103157077, 30.101436255451734 ], [ -95.699025102780581, 30.101487255219595 ], [ -95.698875103012938, 30.101558255611309 ], [ -95.69870810250373, 30.101661254948386 ], [ -95.698580102775622, 30.101776255377942 ], [ -95.698489102749789, 30.101879254925919 ], [ -95.698426102882564, 30.10199325553819 ], [ -95.698378103262158, 30.102069255121449 ], [ -95.698342103224761, 30.102145255106947 ], [ -95.698319102838113, 30.10224025578302 ], [ -95.698306102378552, 30.102320255346562 ], [ -95.698286103332578, 30.102454255839124 ], [ -95.698331102402861, 30.103679255726057 ], [ -95.698392102798948, 30.105796255815882 ], [ -95.698405103321122, 30.106094255905511 ], [ -95.698422102606457, 30.106972256160311 ], [ -95.69841310294548, 30.10796225624091 ], [ -95.698394103341869, 30.1083492569912 ], [ -95.698374103619372, 30.10894825692565 ], [ -95.698311103037994, 30.109887256733721 ], [ -95.698294103458721, 30.110355257467543 ], [ -95.698286103611437, 30.110709256893085 ], [ -95.698251103237865, 30.111115256997607 ], [ -95.69822710358963, 30.111274256966425 ], [ -95.698195102726501, 30.111395257169288 ], [ -95.698116103393659, 30.111602257338721 ], [ -95.698076103213509, 30.111692257470999 ], [ -95.698001102994823, 30.111841257360574 ], [ -95.69792410304224, 30.112018257343912 ], [ -95.697731103010156, 30.11242925709848 ], [ -95.697357103070004, 30.113302257409472 ], [ -95.697302103145489, 30.113417257771243 ], [ -95.697244103543071, 30.11351425748153 ], [ -95.697189103202788, 30.113593257664331 ], [ -95.697125103429968, 30.1136602575708 ], [ -95.69695710295062, 30.113807257944522 ], [ -95.695890102358916, 30.114606257862665 ], [ -95.695772102971901, 30.114691258048627 ], [ -95.695488102828932, 30.114868257880961 ], [ -95.695349103012447, 30.114939257666407 ], [ -95.695105102110375, 30.115049258111714 ], [ -95.695001102707081, 30.115101258471633 ], [ -95.694758102335697, 30.115200258133402 ], [ -95.694613102607292, 30.115246257990535 ], [ -95.694342102941604, 30.115322258420829 ], [ -95.693292102111585, 30.115565257834085 ], [ -95.692834102504989, 30.115661258094878 ], [ -95.692400102374862, 30.115766258224912 ], [ -95.692144102048672, 30.115856258829783 ], [ -95.692034102107883, 30.115914257978559 ], [ -95.691596101966766, 30.116198258049049 ], [ -95.691361101755675, 30.11634625848772 ], [ -95.69124810188724, 30.116412258640036 ], [ -95.691101101540838, 30.116480258677708 ], [ -95.69093910167301, 30.116545258753394 ], [ -95.690726101757392, 30.116611259028399 ], [ -95.690474101795544, 30.116676258640748 ], [ -95.68920510093642, 30.11694225828402 ], [ -95.689536100817506, 30.11733725842047 ], [ -95.689510101210132, 30.117635258883826 ], [ -95.689010101128531, 30.118093258791717 ], [ -95.689063101472598, 30.118414258952679 ], [ -95.689406101123922, 30.11873425928998 ], [ -95.689827101731126, 30.118917259038383 ], [ -95.690645101563049, 30.118942259404218 ], [ -95.691303101603296, 30.118962259122789 ], [ -95.691566101943835, 30.118870259032686 ], [ -95.691829102275733, 30.118916259090565 ], [ -95.69209310171172, 30.119076258810054 ], [ -95.692832102160509, 30.120381259062516 ], [ -95.69304310275038, 30.120518259560708 ], [ -95.693411102499255, 30.12040425933964 ], [ -95.693807102577765, 30.120426259361935 ], [ -95.694149102136294, 30.120770258966392 ], [ -95.694176102549704, 30.121090258981067 ], [ -95.69391310217614, 30.12148025948488 ], [ -95.693939102218494, 30.121755259658897 ], [ -95.694493103195995, 30.122441259324603 ], [ -95.694862103372188, 30.122647259248208 ], [ -95.695152102541243, 30.122968259633566 ], [ -95.695240103329411, 30.123017259861086 ], [ -95.695442102624483, 30.123128259284503 ], [ -95.696101103220727, 30.12308226000815 ], [ -95.696417102840783, 30.123196259537213 ], [ -95.696496103570468, 30.12372326008251 ], [ -95.696681103569603, 30.12386026015448 ], [ -95.697735103798166, 30.123859259480987 ], [ -95.697919103527838, 30.123378259307508 ], [ -95.698393104039823, 30.122714259515547 ], [ -95.698366103450837, 30.122004259809934 ], [ -95.698497103501296, 30.121843259113344 ], [ -95.699077103864539, 30.121683259515926 ], [ -95.699498104394976, 30.121682259024514 ], [ -95.699916104494534, 30.121765259660346 ], [ -95.700069104576329, 30.121796259610988 ], [ -95.700386104210736, 30.122061259497656 ], [ -95.700618104272451, 30.122265259477679 ], [ -95.701080104406742, 30.12266625906015 ], [ -95.701923105077526, 30.12298625915048 ], [ -95.702451105211935, 30.123765259570256 ], [ -95.702914104608453, 30.124153259404196 ], [ -95.703242105279571, 30.124428259386637 ], [ -95.703252105307087, 30.124447259832905 ], [ -95.703638105499735, 30.125230260130731 ], [ -95.704007105230602, 30.125619259504131 ], [ -95.704043105819551, 30.125642259664055 ], [ -95.704534105747129, 30.125962259886332 ], [ -95.705299105861158, 30.126717260395267 ], [ -95.705774105910592, 30.127633260137522 ], [ -95.707910106522945, 30.129464260594602 ], [ -95.708121106190603, 30.130036260425317 ], [ -95.708280106213763, 30.13079226107773 ], [ -95.708570106431779, 30.13113526117624 ], [ -95.70874910671445, 30.131308260731259 ], [ -95.709256107137691, 30.131799260967416 ], [ -95.709414106653071, 30.132325260785034 ], [ -95.70967810741044, 30.132577260801956 ], [ -95.710205107729237, 30.132783260798238 ], [ -95.71034010713727, 30.13293926126639 ], [ -95.710443107380996, 30.13305826089573 ], [ -95.710443107603737, 30.133296261607295 ], [ -95.71044310692966, 30.133653261705543 ], [ -95.710312107433666, 30.134020261267302 ], [ -95.710444107091419, 30.134432261703903 ], [ -95.710445107019453, 30.135463262041238 ], [ -95.710710108024713, 30.136882261991111 ], [ -95.711475107837131, 30.137706261989205 ], [ -95.711581107537612, 30.138050262471619 ], [ -95.712279107856119, 30.138123261889337 ], [ -95.712450107954055, 30.138141262514356 ], [ -95.713051108521881, 30.138320262471204 ], [ -95.71321510814154, 30.138369262456628 ], [ -95.713662108199799, 30.138277262001687 ], [ -95.713814108970013, 30.138196262067964 ], [ -95.714007108959606, 30.138095262058407 ], [ -95.714515108576677, 30.138134261789322 ], [ -95.714585108463893, 30.138139261867487 ], [ -95.715059109112048, 30.13829926199622 ], [ -95.715375108950056, 30.138253262293812 ], [ -95.715454109133972, 30.138093262500984 ], [ -95.715874108887363, 30.138169262108207 ], [ -95.715955109462826, 30.138184262299404 ], [ -95.716403108878609, 30.138252262016803 ], [ -95.716746108861358, 30.138458261990532 ], [ -95.717019109389554, 30.138354262060773 ], [ -95.717167109279984, 30.138297262170607 ], [ -95.717694109872426, 30.138297262000652 ], [ -95.718247109483414, 30.137816262123746 ], [ -95.718282109121617, 30.137821261938846 ], [ -95.720118109575139, 30.138112261913726 ], [ -95.721252110796883, 30.138477262127218 ], [ -95.722359110399168, 30.139095261891921 ], [ -95.722676111056487, 30.139850262217358 ], [ -95.722678110909897, 30.141224262414863 ], [ -95.722783110449384, 30.141568262504389 ], [ -95.722994110720165, 30.141865262116074 ], [ -95.723416111186054, 30.142071262584256 ], [ -95.723338111102365, 30.142644262495534 ], [ -95.723339110787322, 30.143285262529563 ], [ -95.723576111658886, 30.143697263113481 ], [ -95.723866110805744, 30.143857262602786 ], [ -95.724525111310442, 30.143925262971855 ], [ -95.724762111324324, 30.144108262656037 ], [ -95.72534411176477, 30.14536726324468 ], [ -95.725581111889582, 30.145596263632822 ], [ -95.72613511218789, 30.145733262967941 ], [ -95.727189111874736, 30.145641263125746 ], [ -95.730218113090004, 30.144951263027188 ], [ -95.731087112691597, 30.144194262556436 ], [ -95.731772112873472, 30.144125262675939 ], [ -95.732193113879987, 30.143942262830279 ], [ -95.732773113230493, 30.144147262651902 ], [ -95.733011113302837, 30.144376262281028 ], [ -95.73377511367319, 30.144696262691298 ], [ -95.734198113617367, 30.145291263060489 ], [ -95.734304113792916, 30.145543263277752 ], [ -95.734331113801872, 30.146413263465771 ], [ -95.73446311375848, 30.146802263308672 ], [ -95.734833113996899, 30.147123263091505 ], [ -95.73554411465625, 30.147282263298223 ], [ -95.736572115201, 30.147373262778931 ], [ -95.737020115213909, 30.147670262954819 ], [ -95.737363115394615, 30.148128263264692 ], [ -95.737654114633287, 30.148860263768185 ], [ -95.737839115298584, 30.149044263287671 ], [ -95.738762115629314, 30.149226263188527 ], [ -95.73894611566773, 30.149409263983109 ], [ -95.739158115213641, 30.14991326330923 ], [ -95.739474115773348, 30.150050263969305 ], [ -95.739659115479697, 30.150233263522249 ], [ -95.739765116153563, 30.15073626397449 ], [ -95.740213115853919, 30.150965263735774 ], [ -95.740582115838322, 30.15094226406903 ], [ -95.740793116397299, 30.150804263380429 ], [ -95.74110811596762, 30.15030026388062 ], [ -95.741740115756144, 30.14991026310404 ], [ -95.742109116409054, 30.149612263782622 ], [ -95.74247711578046, 30.149039263461951 ], [ -95.742950116768952, 30.147870263067826 ], [ -95.74313311682117, 30.147115262838717 ], [ -95.74313211622983, 30.145947262690978 ], [ -95.743579116356443, 30.145603262901634 ], [ -95.743714116196742, 30.145098262332006 ], [ -95.743763116257782, 30.144915262785375 ], [ -95.744000116626879, 30.1446402625667 ], [ -95.744163116567037, 30.144628261951532 ], [ -95.744316116065647, 30.144617262716185 ], [ -95.744685117053166, 30.14473126254617 ], [ -95.745344117150793, 30.144753262067113 ], [ -95.745555117311753, 30.14505126199391 ], [ -95.746082116785587, 30.145302262801625 ], [ -95.746135117370883, 30.145554262473098 ], [ -95.746505117198623, 30.145920262415906 ], [ -95.746558117231928, 30.146149262554111 ], [ -95.747297117448255, 30.147019262429552 ], [ -95.74845711751469, 30.14738426242139 ], [ -95.748713117453377, 30.147607263216017 ], [ -95.748773117776707, 30.147659262830715 ], [ -95.749432117531796, 30.147749263037699 ], [ -95.749538118105249, 30.148093263181444 ], [ -95.749644118347987, 30.148161262585685 ], [ -95.750223118730972, 30.148069262434188 ], [ -95.75080811868186, 30.147860262568592 ], [ -95.751230117949092, 30.147517262273226 ], [ -95.751494118479485, 30.146876262215198 ], [ -95.751390118755694, 30.1458682626754 ], [ -95.751812118453259, 30.145411262484338 ], [ -95.751892118416464, 30.144792262441413 ], [ -95.752076119024309, 30.144541262162154 ], [ -95.752446118995692, 30.144289262184973 ], [ -95.752885118407193, 30.144140262327536 ], [ -95.752893118707092, 30.14304026206997 ], [ -95.752864118454795, 30.138272260674579 ], [ -95.752864117862927, 30.137205260973911 ], [ -95.752849118035257, 30.134833260113215 ], [ -95.752817118650825, 30.133806259896602 ], [ -95.752776117548578, 30.129137258671712 ], [ -95.752792117519007, 30.128788259210395 ], [ -95.752876117951942, 30.128521258840678 ], [ -95.752967117945218, 30.128322258641418 ], [ -95.75311811811693, 30.128023258567922 ], [ -95.753300117791383, 30.127711258393095 ], [ -95.753435118044806, 30.127539258659834 ], [ -95.753561117721773, 30.127401258615098 ], [ -95.753786118207415, 30.127198258768242 ], [ -95.753910118592984, 30.127107258500853 ], [ -95.754184118201152, 30.126943258437823 ], [ -95.75431611793627, 30.126872258204649 ], [ -95.754445118103419, 30.126809258039444 ], [ -95.754628118054825, 30.126742258701203 ], [ -95.754805118876135, 30.126686258047474 ], [ -95.754930118770162, 30.126653258208847 ], [ -95.754960118847038, 30.12664025817001 ], [ -95.755114118445007, 30.126572257991299 ], [ -95.755292118900158, 30.126582258430396 ], [ -95.755762118262084, 30.126547258502846 ], [ -95.756310118428431, 30.126538258285041 ], [ -95.75728811907409, 30.126528258549659 ], [ -95.757251118978388, 30.12130125710318 ], [ -95.757254119105554, 30.121092257114235 ], [ -95.757269118502307, 30.120878257042946 ], [ -95.757408118406758, 30.120191257147585 ], [ -95.757606118405945, 30.119291257073019 ], [ -95.757766118665828, 30.118461256505721 ], [ -95.758154119084452, 30.117882256857371 ], [ -95.758988118764108, 30.116507255798592 ], [ -95.758743118938185, 30.11622925654666 ], [ -95.758614118622063, 30.116058256382725 ], [ -95.758477119145837, 30.115854255752922 ], [ -95.758425118421542, 30.115762256243425 ], [ -95.758358118717496, 30.11565925595178 ], [ -95.758296118624926, 30.115553256288131 ], [ -95.758252118710644, 30.115447256383906 ], [ -95.758172118449124, 30.115159255513877 ], [ -95.758142119126546, 30.114977255707188 ], [ -95.758095118673197, 30.114607255669615 ], [ -95.758082119059665, 30.114433255377573 ], [ -95.758081118818623, 30.114268255884589 ], [ -95.758093118503012, 30.113974255516716 ], [ -95.757267118828054, 30.113998255779055 ], [ -95.757143118744423, 30.113995255898917 ], [ -95.757017118664407, 30.113948255497071 ], [ -95.756941118728264, 30.113823255272347 ], [ -95.7569321184545, 30.113701255975933 ], [ -95.756943117939116, 30.113476255210706 ], [ -95.756967117890966, 30.11340225547994 ], [ -95.75700811834804, 30.113326255194547 ], [ -95.75705711807781, 30.113262255732568 ], [ -95.757550118932841, 30.112853255292119 ], [ -95.757616118600708, 30.112791255655658 ], [ -95.757683118508126, 30.112669255782972 ], [ -95.757694118243947, 30.112587255232839 ], [ -95.757696118758645, 30.112408255700334 ], [ -95.757670118667377, 30.111095255298938 ], [ -95.757669118581276, 30.110726255226492 ], [ -95.757683118863412, 30.11053725488221 ], [ -95.758374118673629, 30.108625254159438 ], [ -95.758525118990875, 30.108208254723543 ], [ -95.758604118133405, 30.107951254604 ], [ -95.758765118234734, 30.107204254569851 ], [ -95.758866118432408, 30.10668425401915 ], [ -95.759127118827209, 30.105466254375344 ], [ -95.75939311866459, 30.104136253535692 ], [ -95.759448118386345, 30.103890253940865 ], [ -95.759484118145991, 30.103792253552736 ], [ -95.760061118117619, 30.102812253234539 ], [ -95.760668119008571, 30.101867253577211 ], [ -95.760888118632792, 30.101160252849699 ], [ -95.760918118308922, 30.101037253325622 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1340, "Tract": "48201251000", "Area_SqMi": 3.6410507307414441, "total_2009": 1197, "total_2010": 1062, "total_2011": 1007, "total_2012": 953, "total_2013": 999, "total_2014": 1045, "total_2015": 941, "total_2016": 876, "total_2017": 928, "total_2018": 705, "total_2019": 826, "total_2020": 766, "age1": 323, "age2": 328, "age3": 197, "earn1": 332, "earn2": 305, "earn3": 211, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 2, "naics_s05": 11, "naics_s06": 20, "naics_s07": 40, "naics_s08": 0, "naics_s09": 0, "naics_s10": 48, "naics_s11": 21, "naics_s12": 10, "naics_s13": 0, "naics_s14": 3, "naics_s15": 15, "naics_s16": 124, "naics_s17": 344, "naics_s18": 118, "naics_s19": 88, "naics_s20": 0, "race1": 693, "race2": 83, "race3": 5, "race4": 38, "race5": 1, "race6": 28, "ethnicity1": 632, "ethnicity2": 216, "edu1": 106, "edu2": 119, "edu3": 153, "edu4": 147, "Shape_Length": 43221.661993895577, "Shape_Area": 101506262.65246506, "total_2021": 824, "total_2022": 848 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.218969976767298, 30.039961259734064 ], [ -95.218966976738528, 30.039172259430355 ], [ -95.218758977374108, 30.038499259424221 ], [ -95.218583977321799, 30.037654258578524 ], [ -95.218494976915736, 30.037360259123773 ], [ -95.218253977382645, 30.036565258338836 ], [ -95.218126976918413, 30.036148259004786 ], [ -95.217915976760693, 30.035482258655758 ], [ -95.217885976956453, 30.035385258648684 ], [ -95.21749297625837, 30.034503258765071 ], [ -95.217121976265858, 30.033756258467704 ], [ -95.217082976041851, 30.033696257895244 ], [ -95.214695975471216, 30.029965257193815 ], [ -95.214464976058125, 30.02960425789405 ], [ -95.21438897590393, 30.029486257255972 ], [ -95.214353975592189, 30.029433257251416 ], [ -95.213383975562266, 30.02796225720223 ], [ -95.212034974667688, 30.025624256563262 ], [ -95.212001974380385, 30.025568256792738 ], [ -95.211801975123961, 30.024049256344025 ], [ -95.211051974168541, 30.024091256590651 ], [ -95.210946974129584, 30.024097256633691 ], [ -95.206729973488834, 30.025304256518766 ], [ -95.205338973234177, 30.025816257161537 ], [ -95.204603972926094, 30.026086257198209 ], [ -95.200848971595363, 30.026042257600402 ], [ -95.198739971235256, 30.025066256756304 ], [ -95.197776971600035, 30.024620256744573 ], [ -95.196478970993027, 30.024236257076488 ], [ -95.192888970294561, 30.023174256781182 ], [ -95.187794968054206, 30.022240256937863 ], [ -95.187029967851672, 30.022100256858408 ], [ -95.184307967148442, 30.021756257316529 ], [ -95.183305967465571, 30.021629256712039 ], [ -95.180903966707262, 30.021805256607077 ], [ -95.179100966378442, 30.023158257565079 ], [ -95.177557965927619, 30.026612258251461 ], [ -95.177118965415758, 30.026920257765624 ], [ -95.176817966293598, 30.027132258371996 ], [ -95.176537965960932, 30.027329258353173 ], [ -95.176504965730331, 30.027419258048891 ], [ -95.176295965961643, 30.027986258597551 ], [ -95.175885965743404, 30.029044258627479 ], [ -95.175782965289741, 30.029311258463824 ], [ -95.175579965228181, 30.029835259036986 ], [ -95.175473965554261, 30.030080259039291 ], [ -95.175387965645768, 30.030271259411847 ], [ -95.174817965601449, 30.031530259367155 ], [ -95.174717965522504, 30.031751259658986 ], [ -95.174611965625786, 30.032037259332469 ], [ -95.174439965443966, 30.032509259691832 ], [ -95.174396965974722, 30.032712259348319 ], [ -95.174361965895997, 30.032886259415893 ], [ -95.174205965802742, 30.033637260040059 ], [ -95.174129965697986, 30.033951260181123 ], [ -95.17412396588027, 30.034067259363823 ], [ -95.174103965833922, 30.034424259663538 ], [ -95.174146965774966, 30.035138260375415 ], [ -95.174283965987414, 30.035722260007141 ], [ -95.174298965882187, 30.035785260412272 ], [ -95.174449965920104, 30.036368260112592 ], [ -95.174645965797509, 30.036863260180056 ], [ -95.17491496588616, 30.037338260444596 ], [ -95.175086965825372, 30.037642260602961 ], [ -95.175624965814208, 30.038652260697056 ], [ -95.17614096583705, 30.039819260426658 ], [ -95.176177965862138, 30.039902260648805 ], [ -95.17623596621884, 30.04001426069258 ], [ -95.176639965970551, 30.040793261171739 ], [ -95.177120966158697, 30.041507261503089 ], [ -95.177936967242829, 30.042320261154927 ], [ -95.178437966539221, 30.042810261002181 ], [ -95.17859096671458, 30.042960261596189 ], [ -95.178746967084422, 30.043113261906804 ], [ -95.178775966898314, 30.043141261178171 ], [ -95.179833966897164, 30.044132261876719 ], [ -95.181244967693104, 30.04551426174428 ], [ -95.181359968089708, 30.045631261956377 ], [ -95.181568968073435, 30.045856261826575 ], [ -95.181913968441521, 30.046266262410438 ], [ -95.182477967723287, 30.0469822618495 ], [ -95.182512967706742, 30.047026261870482 ], [ -95.1831609685795, 30.047994262464755 ], [ -95.183466968376223, 30.048462262816226 ], [ -95.183533968307032, 30.048582262739782 ], [ -95.184218968306126, 30.050029262513544 ], [ -95.184476968604159, 30.049935262727484 ], [ -95.184666968616114, 30.049866262650013 ], [ -95.185148969232358, 30.049681262781764 ], [ -95.18556396875907, 30.049522262350482 ], [ -95.185891969126772, 30.049396262903407 ], [ -95.186714969605234, 30.049081262031276 ], [ -95.186741969273953, 30.049068262212472 ], [ -95.187308969065697, 30.048780262428092 ], [ -95.187357969235322, 30.048754262431629 ], [ -95.18799796926659, 30.04841926231985 ], [ -95.188350970180466, 30.048138262186594 ], [ -95.189034970083526, 30.047536261781147 ], [ -95.1896229700492, 30.046515261587917 ], [ -95.190331970167747, 30.04560426148014 ], [ -95.191134970332953, 30.044849261296996 ], [ -95.191819970500134, 30.0444312615275 ], [ -95.191839970832675, 30.044413261285278 ], [ -95.192673970386863, 30.044015261261983 ], [ -95.193020970800077, 30.043879261326516 ], [ -95.193161970429358, 30.043824261069272 ], [ -95.193373971024727, 30.043771261172864 ], [ -95.193524971279871, 30.04373526071095 ], [ -95.193622970499362, 30.043713261390256 ], [ -95.194422970762005, 30.043512260818371 ], [ -95.196043971028004, 30.043323260571999 ], [ -95.196889971974585, 30.043170260418339 ], [ -95.197080971916535, 30.043134260701112 ], [ -95.198487971813179, 30.043016260798765 ], [ -95.199268972046895, 30.043058260566166 ], [ -95.199708972325453, 30.043081261170023 ], [ -95.200674972271599, 30.04328226034632 ], [ -95.200994972779768, 30.04333226060303 ], [ -95.201558972457008, 30.043506260432014 ], [ -95.201624972887501, 30.043531260336891 ], [ -95.20185697266912, 30.043620261039663 ], [ -95.202910972843057, 30.044022260665788 ], [ -95.205006973919808, 30.044831260563882 ], [ -95.206644974796447, 30.045412261352528 ], [ -95.207531974896369, 30.045724260939544 ], [ -95.208184974721121, 30.045862261449983 ], [ -95.209325974929371, 30.046102261253186 ], [ -95.211025975823958, 30.046597260925001 ], [ -95.211986975638737, 30.047039261505272 ], [ -95.212619975843268, 30.047317261248995 ], [ -95.213167975803358, 30.047632261134265 ], [ -95.213693975900043, 30.04793526126738 ], [ -95.213845976406134, 30.048022260906997 ], [ -95.214883976173411, 30.04842526147732 ], [ -95.215955977341153, 30.048841261142151 ], [ -95.216220976547561, 30.048943261395451 ], [ -95.216441976481121, 30.048453261504783 ], [ -95.216746977397349, 30.047776261015702 ], [ -95.217069976758324, 30.046978261177696 ], [ -95.217436977606511, 30.046205260512071 ], [ -95.217780976947637, 30.04550926019353 ], [ -95.218047977592292, 30.044733260770098 ], [ -95.218316976859427, 30.043953260578171 ], [ -95.218548977311244, 30.042898259610929 ], [ -95.218812976782843, 30.041768259692347 ], [ -95.218928977580802, 30.040436259764164 ], [ -95.218969976767298, 30.039961259734064 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1341, "Tract": "48201251100", "Area_SqMi": 4.3196988637488705, "total_2009": 1608, "total_2010": 1616, "total_2011": 1836, "total_2012": 2028, "total_2013": 3836, "total_2014": 3738, "total_2015": 4157, "total_2016": 4160, "total_2017": 3776, "total_2018": 2770, "total_2019": 2729, "total_2020": 2014, "age1": 984, "age2": 1826, "age3": 844, "earn1": 870, "earn2": 1722, "earn3": 1062, "naics_s01": 0, "naics_s02": 20, "naics_s03": 0, "naics_s04": 74, "naics_s05": 4, "naics_s06": 23, "naics_s07": 186, "naics_s08": 9, "naics_s09": 3, "naics_s10": 86, "naics_s11": 36, "naics_s12": 224, "naics_s13": 0, "naics_s14": 1948, "naics_s15": 36, "naics_s16": 436, "naics_s17": 45, "naics_s18": 296, "naics_s19": 227, "naics_s20": 1, "race1": 2626, "race2": 624, "race3": 47, "race4": 257, "race5": 18, "race6": 82, "ethnicity1": 2713, "ethnicity2": 941, "edu1": 573, "edu2": 752, "edu3": 737, "edu4": 608, "Shape_Length": 46710.868745686552, "Shape_Area": 120425811.0828241, "total_2021": 3146, "total_2022": 3654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.263776988258286, 30.032439256714792 ], [ -95.26385398854373, 30.032370256580808 ], [ -95.263638988063661, 30.032389256029788 ], [ -95.263133987847809, 30.032113256490195 ], [ -95.262543988161369, 30.031495256036813 ], [ -95.262202988280848, 30.031061256459829 ], [ -95.26168598762743, 30.029884256157512 ], [ -95.261449987463351, 30.029000256134253 ], [ -95.261258987547095, 30.027916255932798 ], [ -95.259361987252419, 30.026703255689174 ], [ -95.258999986421955, 30.026620255103907 ], [ -95.258799986752521, 30.026575255333608 ], [ -95.25857798663327, 30.026525254989256 ], [ -95.258398986955868, 30.0264852550028 ], [ -95.258099986863868, 30.026503255418831 ], [ -95.258019986599919, 30.026508255465622 ], [ -95.256588986450055, 30.026595255083716 ], [ -95.254709986310473, 30.026488255296172 ], [ -95.254612986075358, 30.026482255808506 ], [ -95.254470985609487, 30.02647325517837 ], [ -95.253797985177215, 30.026333255623737 ], [ -95.253074985661044, 30.02618225530205 ], [ -95.252220985305613, 30.026211255236099 ], [ -95.250226984318786, 30.026278255115368 ], [ -95.250008984587225, 30.026285255905705 ], [ -95.24990498471584, 30.026289255422114 ], [ -95.247008983318437, 30.026249256057682 ], [ -95.245292983866989, 30.026225255710887 ], [ -95.245235983011341, 30.026178255541623 ], [ -95.242226982006727, 30.024155255040906 ], [ -95.239324982057326, 30.022023255075677 ], [ -95.236062980237307, 30.020176254368536 ], [ -95.234661979940441, 30.019731254900613 ], [ -95.233368979527086, 30.019321254789684 ], [ -95.231399979701294, 30.018754254579044 ], [ -95.230709978857902, 30.018820254598968 ], [ -95.227611978410991, 30.019118254457975 ], [ -95.226183977943236, 30.019568254870244 ], [ -95.223215977461962, 30.022275255226813 ], [ -95.222773977569631, 30.02267925576562 ], [ -95.219666977177781, 30.023933256471068 ], [ -95.217767976691505, 30.024337256070396 ], [ -95.215274975272209, 30.024202256703568 ], [ -95.213939975246518, 30.024093256201571 ], [ -95.212740975307881, 30.023996256719432 ], [ -95.211801975123961, 30.024049256344025 ], [ -95.212001974380385, 30.025568256792738 ], [ -95.212034974667688, 30.025624256563262 ], [ -95.213383975562266, 30.02796225720223 ], [ -95.214353975592189, 30.029433257251416 ], [ -95.21438897590393, 30.029486257255972 ], [ -95.214464976058125, 30.02960425789405 ], [ -95.214695975471216, 30.029965257193815 ], [ -95.217082976041851, 30.033696257895244 ], [ -95.217121976265858, 30.033756258467704 ], [ -95.21749297625837, 30.034503258765071 ], [ -95.217885976956453, 30.035385258648684 ], [ -95.217915976760693, 30.035482258655758 ], [ -95.218126976918413, 30.036148259004786 ], [ -95.218253977382645, 30.036565258338836 ], [ -95.218494976915736, 30.037360259123773 ], [ -95.218583977321799, 30.037654258578524 ], [ -95.218758977374108, 30.038499259424221 ], [ -95.218966976738528, 30.039172259430355 ], [ -95.218969976767298, 30.039961259734064 ], [ -95.218928977580802, 30.040436259764164 ], [ -95.218812976782843, 30.041768259692347 ], [ -95.218548977311244, 30.042898259610929 ], [ -95.218316976859427, 30.043953260578171 ], [ -95.218047977592292, 30.044733260770098 ], [ -95.217780976947637, 30.04550926019353 ], [ -95.217436977606511, 30.046205260512071 ], [ -95.217069976758324, 30.046978261177696 ], [ -95.216746977397349, 30.047776261015702 ], [ -95.216441976481121, 30.048453261504783 ], [ -95.216220976547561, 30.048943261395451 ], [ -95.218210977435433, 30.049701261723303 ], [ -95.219536978052091, 30.050236261730369 ], [ -95.22165997817423, 30.050673261936687 ], [ -95.22311497890324, 30.050905261382077 ], [ -95.224135979182705, 30.050981261068866 ], [ -95.224326979275361, 30.050989261277291 ], [ -95.226647979768416, 30.05107826180355 ], [ -95.226944979948641, 30.051060261453514 ], [ -95.228624980399303, 30.050961261602794 ], [ -95.229518980292312, 30.050683260813152 ], [ -95.230275980138629, 30.050405260877319 ], [ -95.230552980766191, 30.050272260735582 ], [ -95.230592980408701, 30.050252261491195 ], [ -95.231335980572993, 30.049890260996698 ], [ -95.232133981525763, 30.049611260535713 ], [ -95.23261398116945, 30.049526260515584 ], [ -95.232970980993301, 30.049462261020786 ], [ -95.235806982479886, 30.049378260543644 ], [ -95.236559982542119, 30.049365260361093 ], [ -95.237388982579844, 30.049350260744863 ], [ -95.239142982423871, 30.049319261011085 ], [ -95.240185982599058, 30.049358260978678 ], [ -95.240577983176891, 30.049432260827672 ], [ -95.241299983403024, 30.049586261024121 ], [ -95.24176198322057, 30.049685260700635 ], [ -95.241871983306453, 30.049742260813179 ], [ -95.241921983690546, 30.04976726059224 ], [ -95.241953983320016, 30.049731260252059 ], [ -95.243736983836413, 30.048368260647699 ], [ -95.244051983663212, 30.04813326032334 ], [ -95.245714984152173, 30.046823260222656 ], [ -95.24607998451998, 30.046533259611699 ], [ -95.249532985035842, 30.043770259174874 ], [ -95.249715984831838, 30.043624259221808 ], [ -95.249729984820888, 30.043614259060412 ], [ -95.249860985691271, 30.043523258913428 ], [ -95.249887984981953, 30.043502259421924 ], [ -95.250086985291702, 30.043351259141119 ], [ -95.25020898508231, 30.043272258646116 ], [ -95.250371985363287, 30.043157258694713 ], [ -95.250425985485805, 30.043119259027407 ], [ -95.250478985672501, 30.043075258848379 ], [ -95.250509985804001, 30.043051258661489 ], [ -95.250540985405451, 30.043026259260429 ], [ -95.250616985961102, 30.042967258514025 ], [ -95.254500986558568, 30.039912258316551 ], [ -95.254674986810556, 30.039756258140564 ], [ -95.254720985939414, 30.039718258536748 ], [ -95.254834986009897, 30.039605257919785 ], [ -95.254958986361075, 30.03947425801065 ], [ -95.254993986011414, 30.03943725783385 ], [ -95.2550289862927, 30.039413258000273 ], [ -95.255127986316054, 30.039317257711712 ], [ -95.255142986317168, 30.039313258364487 ], [ -95.255149986178168, 30.039302258337024 ], [ -95.255276986634826, 30.039217257674455 ], [ -95.255417986154981, 30.039123258032351 ], [ -95.255470986230421, 30.039083258121607 ], [ -95.259864987691529, 30.035569257140789 ], [ -95.260161987562213, 30.035336257217196 ], [ -95.260420987260574, 30.035132256987172 ], [ -95.260680987995102, 30.034928257051611 ], [ -95.260831987916731, 30.034809257026325 ], [ -95.260982988069983, 30.034691256937752 ], [ -95.262459988103487, 30.033535256462333 ], [ -95.262734987980835, 30.033319256247587 ], [ -95.263010988315713, 30.033104256327757 ], [ -95.263111988117899, 30.033027256298364 ], [ -95.263328988601842, 30.032836256273608 ], [ -95.263486988041322, 30.03269625645521 ], [ -95.263567987940604, 30.032624256398858 ], [ -95.263618988187972, 30.032580256040159 ], [ -95.263668988346495, 30.032536256735973 ], [ -95.263683988120377, 30.032522256406065 ], [ -95.263730988442674, 30.032480255989487 ], [ -95.263776988258286, 30.032439256714792 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1342, "Tract": "48201251200", "Area_SqMi": 1.3455569746670006, "total_2009": 2083, "total_2010": 2143, "total_2011": 2352, "total_2012": 1824, "total_2013": 1951, "total_2014": 2002, "total_2015": 1896, "total_2016": 1872, "total_2017": 1836, "total_2018": 1778, "total_2019": 1750, "total_2020": 1867, "age1": 502, "age2": 1043, "age3": 503, "earn1": 460, "earn2": 658, "earn3": 930, "naics_s01": 0, "naics_s02": 0, "naics_s03": 5, "naics_s04": 126, "naics_s05": 13, "naics_s06": 68, "naics_s07": 119, "naics_s08": 87, "naics_s09": 87, "naics_s10": 141, "naics_s11": 10, "naics_s12": 251, "naics_s13": 1, "naics_s14": 95, "naics_s15": 48, "naics_s16": 565, "naics_s17": 25, "naics_s18": 154, "naics_s19": 253, "naics_s20": 0, "race1": 1648, "race2": 251, "race3": 17, "race4": 103, "race5": 3, "race6": 26, "ethnicity1": 1586, "ethnicity2": 462, "edu1": 227, "edu2": 395, "edu3": 516, "edu4": 408, "Shape_Length": 28139.125124201542, "Shape_Area": 37511825.509937875, "total_2021": 1929, "total_2022": 2048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.241921983690546, 30.04976726059224 ], [ -95.241871983306453, 30.049742260813179 ], [ -95.24176198322057, 30.049685260700635 ], [ -95.241299983403024, 30.049586261024121 ], [ -95.240577983176891, 30.049432260827672 ], [ -95.240185982599058, 30.049358260978678 ], [ -95.239142982423871, 30.049319261011085 ], [ -95.237388982579844, 30.049350260744863 ], [ -95.236559982542119, 30.049365260361093 ], [ -95.235806982479886, 30.049378260543644 ], [ -95.232970980993301, 30.049462261020786 ], [ -95.23261398116945, 30.049526260515584 ], [ -95.232133981525763, 30.049611260535713 ], [ -95.231335980572993, 30.049890260996698 ], [ -95.230592980408701, 30.050252261491195 ], [ -95.230552980766191, 30.050272260735582 ], [ -95.230275980138629, 30.050405260877319 ], [ -95.229518980292312, 30.050683260813152 ], [ -95.228624980399303, 30.050961261602794 ], [ -95.226944979948641, 30.051060261453514 ], [ -95.226647979768416, 30.05107826180355 ], [ -95.224326979275361, 30.050989261277291 ], [ -95.224135979182705, 30.050981261068866 ], [ -95.22311497890324, 30.050905261382077 ], [ -95.22165997817423, 30.050673261936687 ], [ -95.219536978052091, 30.050236261730369 ], [ -95.218210977435433, 30.049701261723303 ], [ -95.216220976547561, 30.048943261395451 ], [ -95.216168977461138, 30.04905426095177 ], [ -95.216096976667998, 30.049172261245172 ], [ -95.215768977204803, 30.049704261135766 ], [ -95.21574497635487, 30.04975126163173 ], [ -95.215397976464999, 30.050436261987016 ], [ -95.215001977112649, 30.051292261720448 ], [ -95.214698977139449, 30.051946262372606 ], [ -95.214311976555223, 30.052701262144002 ], [ -95.213951977072711, 30.053479261949789 ], [ -95.213600976508943, 30.054285262554021 ], [ -95.213261976011651, 30.055062262482945 ], [ -95.212935976288477, 30.055952262811694 ], [ -95.212521976572759, 30.057308263381692 ], [ -95.212335976510374, 30.05791926373227 ], [ -95.212319976040419, 30.05801026328098 ], [ -95.212168976259122, 30.058844263748156 ], [ -95.212025976727162, 30.059566263368694 ], [ -95.211743976491121, 30.061205263795529 ], [ -95.211728975869264, 30.061292263899329 ], [ -95.211605976614081, 30.062001264518724 ], [ -95.211586976160945, 30.062114264530589 ], [ -95.21156097627032, 30.062264264052665 ], [ -95.211523976791867, 30.062868264528632 ], [ -95.211514976528647, 30.063015264499178 ], [ -95.211471975937016, 30.063714264742472 ], [ -95.211460976619023, 30.063878264143657 ], [ -95.211414976509957, 30.064630265134308 ], [ -95.211426976277963, 30.06518126459396 ], [ -95.21141897659443, 30.065989264995665 ], [ -95.211415976441813, 30.066264264949115 ], [ -95.21140897669639, 30.066916265450448 ], [ -95.211406976972725, 30.067059265372308 ], [ -95.211405976107017, 30.067136265383827 ], [ -95.211399976850871, 30.06769826531696 ], [ -95.211394976688609, 30.068248265058166 ], [ -95.211358976128963, 30.068478265373702 ], [ -95.212685977204558, 30.068490265246311 ], [ -95.213870976972728, 30.068501265077987 ], [ -95.214151977201325, 30.068504265350445 ], [ -95.21461697759888, 30.068508265302111 ], [ -95.215979978294968, 30.068521265440815 ], [ -95.216194977653302, 30.068523265324458 ], [ -95.216320977992879, 30.068524265125394 ], [ -95.216877978390471, 30.068502264891197 ], [ -95.21776097812041, 30.0684932650387 ], [ -95.21837097839547, 30.068487264912861 ], [ -95.218436978846583, 30.06848626503772 ], [ -95.218626978443893, 30.068484264950623 ], [ -95.218689978967802, 30.068484265494739 ], [ -95.218968978713519, 30.068484265026957 ], [ -95.219066978737189, 30.068484265187834 ], [ -95.219672978964411, 30.067868265169395 ], [ -95.219716978466067, 30.067823265446858 ], [ -95.220140978746613, 30.067515265203536 ], [ -95.220805978779708, 30.067031264715137 ], [ -95.220830978594122, 30.067011265320822 ], [ -95.222115979649374, 30.065923264597149 ], [ -95.222480979811621, 30.065631264737291 ], [ -95.222746979357652, 30.065416264527734 ], [ -95.227049980459398, 30.061953263399037 ], [ -95.227222980847586, 30.061802263881074 ], [ -95.227335980234272, 30.061699263328478 ], [ -95.227431979933698, 30.061622263649792 ], [ -95.227528980854601, 30.061545263123715 ], [ -95.227618980550716, 30.061472263167357 ], [ -95.228276980187559, 30.060935263533096 ], [ -95.228822980805788, 30.060489263385428 ], [ -95.229280981302324, 30.060117263311728 ], [ -95.229721980648378, 30.059641263264034 ], [ -95.230211981503814, 30.059221263280801 ], [ -95.230665981524965, 30.058871263119528 ], [ -95.23100898114653, 30.058671262440395 ], [ -95.231304980860941, 30.058309262602517 ], [ -95.231381981644191, 30.058246263094475 ], [ -95.231948981481494, 30.05779826246966 ], [ -95.232891982073113, 30.057009262404648 ], [ -95.23386698173627, 30.056358262175586 ], [ -95.234060981344243, 30.056199262317637 ], [ -95.234602981659009, 30.055726261877535 ], [ -95.235175981657818, 30.055227262360631 ], [ -95.235352982577893, 30.055081262306942 ], [ -95.235672982432064, 30.054817262237332 ], [ -95.235866982431389, 30.054658261659892 ], [ -95.236523982259612, 30.05411626197586 ], [ -95.236556982340886, 30.054089261970155 ], [ -95.236831982324006, 30.053863261802913 ], [ -95.237106982774918, 30.053636261909226 ], [ -95.237302982057784, 30.053475261850991 ], [ -95.237477982918136, 30.053330261842142 ], [ -95.237730982230374, 30.053121261128457 ], [ -95.237963982719549, 30.052930261446093 ], [ -95.238060982586973, 30.052850261337333 ], [ -95.23812498307322, 30.052797261568166 ], [ -95.23841998324157, 30.052554261368847 ], [ -95.238725982978352, 30.052302261555013 ], [ -95.238987983235617, 30.052074261337975 ], [ -95.239028982785754, 30.052042261194856 ], [ -95.239320983469071, 30.051811261113844 ], [ -95.239335983023622, 30.051799260903039 ], [ -95.239398982811068, 30.051751260996301 ], [ -95.239436983283795, 30.051721260941701 ], [ -95.239641983425244, 30.051550261169389 ], [ -95.23972998360513, 30.051488260701053 ], [ -95.24010398366228, 30.051222260987505 ], [ -95.240640983336192, 30.050842261029469 ], [ -95.241514983639064, 30.05022626051862 ], [ -95.241641983993702, 30.050082260460819 ], [ -95.241921983690546, 30.04976726059224 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1343, "Tract": "48201251300", "Area_SqMi": 2.5238025429714264, "total_2009": 598, "total_2010": 634, "total_2011": 657, "total_2012": 667, "total_2013": 676, "total_2014": 695, "total_2015": 917, "total_2016": 751, "total_2017": 739, "total_2018": 652, "total_2019": 662, "total_2020": 848, "age1": 272, "age2": 545, "age3": 186, "earn1": 344, "earn2": 281, "earn3": 378, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 27, "naics_s05": 1, "naics_s06": 1, "naics_s07": 44, "naics_s08": 38, "naics_s09": 4, "naics_s10": 22, "naics_s11": 15, "naics_s12": 101, "naics_s13": 6, "naics_s14": 189, "naics_s15": 252, "naics_s16": 165, "naics_s17": 8, "naics_s18": 69, "naics_s19": 60, "naics_s20": 0, "race1": 837, "race2": 94, "race3": 5, "race4": 51, "race5": 0, "race6": 16, "ethnicity1": 766, "ethnicity2": 237, "edu1": 107, "edu2": 189, "edu3": 240, "edu4": 195, "Shape_Length": 32892.01204610437, "Shape_Area": 70359295.366821036, "total_2021": 821, "total_2022": 1003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.216168977461138, 30.04905426095177 ], [ -95.216220976547561, 30.048943261395451 ], [ -95.215955977341153, 30.048841261142151 ], [ -95.214883976173411, 30.04842526147732 ], [ -95.213845976406134, 30.048022260906997 ], [ -95.213693975900043, 30.04793526126738 ], [ -95.213167975803358, 30.047632261134265 ], [ -95.212619975843268, 30.047317261248995 ], [ -95.211986975638737, 30.047039261505272 ], [ -95.211025975823958, 30.046597260925001 ], [ -95.209325974929371, 30.046102261253186 ], [ -95.208184974721121, 30.045862261449983 ], [ -95.207531974896369, 30.045724260939544 ], [ -95.206644974796447, 30.045412261352528 ], [ -95.205006973919808, 30.044831260563882 ], [ -95.202910972843057, 30.044022260665788 ], [ -95.20185697266912, 30.043620261039663 ], [ -95.201624972887501, 30.043531260336891 ], [ -95.201558972457008, 30.043506260432014 ], [ -95.200994972779768, 30.04333226060303 ], [ -95.200674972271599, 30.04328226034632 ], [ -95.199708972325453, 30.043081261170023 ], [ -95.199268972046895, 30.043058260566166 ], [ -95.198487971813179, 30.043016260798765 ], [ -95.197080971916535, 30.043134260701112 ], [ -95.196889971974585, 30.043170260418339 ], [ -95.196043971028004, 30.043323260571999 ], [ -95.194422970762005, 30.043512260818371 ], [ -95.193622970499362, 30.043713261390256 ], [ -95.193524971279871, 30.04373526071095 ], [ -95.193373971024727, 30.043771261172864 ], [ -95.193161970429358, 30.043824261069272 ], [ -95.193020970800077, 30.043879261326516 ], [ -95.192673970386863, 30.044015261261983 ], [ -95.191839970832675, 30.044413261285278 ], [ -95.191819970500134, 30.0444312615275 ], [ -95.191134970332953, 30.044849261296996 ], [ -95.190331970167747, 30.04560426148014 ], [ -95.1896229700492, 30.046515261587917 ], [ -95.189034970083526, 30.047536261781147 ], [ -95.188350970180466, 30.048138262186594 ], [ -95.18799796926659, 30.04841926231985 ], [ -95.187357969235322, 30.048754262431629 ], [ -95.187308969065697, 30.048780262428092 ], [ -95.186741969273953, 30.049068262212472 ], [ -95.186714969605234, 30.049081262031276 ], [ -95.185891969126772, 30.049396262903407 ], [ -95.18556396875907, 30.049522262350482 ], [ -95.185148969232358, 30.049681262781764 ], [ -95.184666968616114, 30.049866262650013 ], [ -95.184476968604159, 30.049935262727484 ], [ -95.184218968306126, 30.050029262513544 ], [ -95.184297968586279, 30.050154262937625 ], [ -95.184809969288494, 30.051303263287455 ], [ -95.185036969153344, 30.051970263052588 ], [ -95.185140969235533, 30.052465263029038 ], [ -95.185180968922893, 30.053088263537738 ], [ -95.185326969227901, 30.053543263109468 ], [ -95.185438969122231, 30.053963263845798 ], [ -95.185722969850531, 30.054755263756903 ], [ -95.186125969246262, 30.05559326352607 ], [ -95.186236969139912, 30.055907263903858 ], [ -95.186352969731971, 30.056237264247354 ], [ -95.186579969327568, 30.057562264426817 ], [ -95.186607970211043, 30.057748263835101 ], [ -95.186612970253847, 30.057779264614613 ], [ -95.186752969628614, 30.058704264246369 ], [ -95.18678397005722, 30.058911264218544 ], [ -95.187079969468911, 30.060282264868007 ], [ -95.187169970213645, 30.060731264460848 ], [ -95.187173969651454, 30.06151726528352 ], [ -95.187238970205954, 30.062050264649638 ], [ -95.187283969934882, 30.062195264857269 ], [ -95.187341969767473, 30.062532265018522 ], [ -95.18733996971136, 30.063149265069082 ], [ -95.187290969763495, 30.064452265433211 ], [ -95.187328970545693, 30.064672265215254 ], [ -95.187356970281286, 30.064837265264167 ], [ -95.187397970056708, 30.065074266083307 ], [ -95.187462970119427, 30.065605266117519 ], [ -95.187953970465628, 30.066776265940824 ], [ -95.188185970724291, 30.067804266157442 ], [ -95.188346970944679, 30.067776266351807 ], [ -95.188448970765236, 30.067766265852899 ], [ -95.190316970729285, 30.067588266470057 ], [ -95.190385971061318, 30.067581266399898 ], [ -95.19075697076191, 30.067546265788106 ], [ -95.192209971946625, 30.067451265984772 ], [ -95.192495971530946, 30.067474265738664 ], [ -95.192815972068672, 30.067500266087119 ], [ -95.193458971997714, 30.067560266284094 ], [ -95.193958972458773, 30.067653265769522 ], [ -95.195102972303758, 30.067961266203831 ], [ -95.196406972380515, 30.068313265925262 ], [ -95.19648397230786, 30.068334266263335 ], [ -95.19662497228407, 30.068359266411949 ], [ -95.197134972680558, 30.068448265643969 ], [ -95.198569973687015, 30.068555265681258 ], [ -95.200179973608755, 30.068563265861229 ], [ -95.200929973992842, 30.068551265480632 ], [ -95.202154974517569, 30.068568265899845 ], [ -95.202316974321619, 30.068571265414135 ], [ -95.20391097471412, 30.068554265532992 ], [ -95.204688974515093, 30.06852926556461 ], [ -95.20621897487824, 30.068308266100747 ], [ -95.206859975197972, 30.068273265176529 ], [ -95.207056975785449, 30.068236265286526 ], [ -95.208144976160042, 30.068352265794811 ], [ -95.209774976533552, 30.068491265936583 ], [ -95.21123897691372, 30.068477265803352 ], [ -95.211358976128963, 30.068478265373702 ], [ -95.211394976688609, 30.068248265058166 ], [ -95.211399976850871, 30.06769826531696 ], [ -95.211405976107017, 30.067136265383827 ], [ -95.211406976972725, 30.067059265372308 ], [ -95.21140897669639, 30.066916265450448 ], [ -95.211415976441813, 30.066264264949115 ], [ -95.21141897659443, 30.065989264995665 ], [ -95.211426976277963, 30.06518126459396 ], [ -95.211414976509957, 30.064630265134308 ], [ -95.211460976619023, 30.063878264143657 ], [ -95.211471975937016, 30.063714264742472 ], [ -95.211514976528647, 30.063015264499178 ], [ -95.211523976791867, 30.062868264528632 ], [ -95.21156097627032, 30.062264264052665 ], [ -95.211586976160945, 30.062114264530589 ], [ -95.211605976614081, 30.062001264518724 ], [ -95.211728975869264, 30.061292263899329 ], [ -95.211743976491121, 30.061205263795529 ], [ -95.212025976727162, 30.059566263368694 ], [ -95.212168976259122, 30.058844263748156 ], [ -95.212319976040419, 30.05801026328098 ], [ -95.212335976510374, 30.05791926373227 ], [ -95.212521976572759, 30.057308263381692 ], [ -95.212935976288477, 30.055952262811694 ], [ -95.213261976011651, 30.055062262482945 ], [ -95.213600976508943, 30.054285262554021 ], [ -95.213951977072711, 30.053479261949789 ], [ -95.214311976555223, 30.052701262144002 ], [ -95.214698977139449, 30.051946262372606 ], [ -95.215001977112649, 30.051292261720448 ], [ -95.215397976464999, 30.050436261987016 ], [ -95.21574497635487, 30.04975126163173 ], [ -95.215768977204803, 30.049704261135766 ], [ -95.216096976667998, 30.049172261245172 ], [ -95.216168977461138, 30.04905426095177 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1344, "Tract": "48339694403", "Area_SqMi": 7.5549290078387079, "total_2009": 360, "total_2010": 319, "total_2011": 301, "total_2012": 305, "total_2013": 381, "total_2014": 485, "total_2015": 487, "total_2016": 430, "total_2017": 402, "total_2018": 566, "total_2019": 713, "total_2020": 614, "age1": 195, "age2": 393, "age3": 133, "earn1": 70, "earn2": 204, "earn3": 447, "naics_s01": 10, "naics_s02": 8, "naics_s03": 0, "naics_s04": 53, "naics_s05": 31, "naics_s06": 106, "naics_s07": 53, "naics_s08": 4, "naics_s09": 14, "naics_s10": 41, "naics_s11": 32, "naics_s12": 97, "naics_s13": 134, "naics_s14": 53, "naics_s15": 2, "naics_s16": 51, "naics_s17": 4, "naics_s18": 7, "naics_s19": 21, "naics_s20": 0, "race1": 623, "race2": 52, "race3": 7, "race4": 15, "race5": 0, "race6": 24, "ethnicity1": 593, "ethnicity2": 128, "edu1": 84, "edu2": 125, "edu3": 171, "edu4": 146, "Shape_Length": 63099.332845511926, "Shape_Area": 210618490.34831804, "total_2021": 673, "total_2022": 721 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.678450110594255, 30.380320312710079 ], [ -95.678450111109996, 30.379987312675279 ], [ -95.678438110301443, 30.379654312062289 ], [ -95.678422110644334, 30.379450311802668 ], [ -95.678441110687785, 30.375306311555587 ], [ -95.678422110193921, 30.37479331087594 ], [ -95.678401110607098, 30.374620311221083 ], [ -95.678387110332963, 30.374320311347578 ], [ -95.678395110915076, 30.374089311232641 ], [ -95.678394110428812, 30.373957311444904 ], [ -95.678390110327356, 30.373668310666357 ], [ -95.678381110771866, 30.372933311202765 ], [ -95.678398110446508, 30.372650310489831 ], [ -95.678399110044637, 30.372367310852066 ], [ -95.67838911009396, 30.372182310357598 ], [ -95.678355110397973, 30.371827310474529 ], [ -95.678350110283645, 30.37173931086431 ], [ -95.67833010985683, 30.371557310752188 ], [ -95.678295110341281, 30.371374310358284 ], [ -95.678270110545071, 30.371283310304534 ], [ -95.678181110596014, 30.371025310308593 ], [ -95.677952110255575, 30.370516310385138 ], [ -95.677780110470906, 30.370190310328457 ], [ -95.677655110002007, 30.369975310525458 ], [ -95.677453109709376, 30.369662310512343 ], [ -95.677287110069997, 30.369430310561494 ], [ -95.67529810898759, 30.366845309617087 ], [ -95.675272109526517, 30.366815310115864 ], [ -95.674986109369073, 30.366485309654351 ], [ -95.674877108898045, 30.366369309190269 ], [ -95.674535109344163, 30.366028309831965 ], [ -95.674172108798089, 30.365706309324413 ], [ -95.673919109338627, 30.365499309639386 ], [ -95.673528108553498, 30.365206309734749 ], [ -95.673393108943941, 30.365112309333067 ], [ -95.673085108350776, 30.364909309341545 ], [ -95.67232910847234, 30.364363309013381 ], [ -95.672263108741191, 30.36431630956319 ], [ -95.672220107997404, 30.364284309701251 ], [ -95.671672108126629, 30.363889309007536 ], [ -95.669951107743316, 30.362646308698988 ], [ -95.667042106604512, 30.36054430885488 ], [ -95.666934107386183, 30.360466308778292 ], [ -95.663252106009011, 30.357971308435179 ], [ -95.663038106191536, 30.357820307992792 ], [ -95.662772105778913, 30.357618308705316 ], [ -95.662384106111759, 30.357295308211008 ], [ -95.662260106018039, 30.357182308213154 ], [ -95.656524103350463, 30.351506307430235 ], [ -95.654669103542446, 30.349661306875834 ], [ -95.653007103005862, 30.347746307064838 ], [ -95.652911102969952, 30.347626306825379 ], [ -95.652759102808105, 30.347421306431222 ], [ -95.652620102870131, 30.347209306527187 ], [ -95.652535102228924, 30.34706630606799 ], [ -95.652424102923177, 30.346850306894108 ], [ -95.652333102315112, 30.346673306251159 ], [ -95.652266102121658, 30.346529306020216 ], [ -95.652213102651174, 30.346382306418569 ], [ -95.652170102298655, 30.346232306447558 ], [ -95.65213010219712, 30.346002306008195 ], [ -95.652118102710389, 30.345846306043981 ], [ -95.65211910211768, 30.345692306468607 ], [ -95.652133102969586, 30.345538305811157 ], [ -95.652147102234295, 30.345464306080448 ], [ -95.652239102613933, 30.343832305532601 ], [ -95.65226410213549, 30.343385305698028 ], [ -95.65238710196374, 30.34124230561795 ], [ -95.652235101924902, 30.341233305779891 ], [ -95.652152102087541, 30.341234305384724 ], [ -95.651989102492664, 30.341257305785472 ], [ -95.651906101665119, 30.341277305405551 ], [ -95.650070101670863, 30.341639305519255 ], [ -95.649885101983756, 30.341664305967775 ], [ -95.649608101409299, 30.341682305353316 ], [ -95.64942410127199, 30.341678305871692 ], [ -95.649332101257997, 30.341670305927568 ], [ -95.647114101410438, 30.341551305241619 ], [ -95.646760100945116, 30.341523305368757 ], [ -95.645542100181387, 30.341367305260853 ], [ -95.645316100207609, 30.341347305672489 ], [ -95.64505610014551, 30.341338305412997 ], [ -95.643484100346043, 30.341359305990402 ], [ -95.641134099767697, 30.34142530583102 ], [ -95.640933099442861, 30.341431305699793 ], [ -95.639786099516868, 30.341383305777285 ], [ -95.639515099284907, 30.341354305656559 ], [ -95.639107099266795, 30.341330306044153 ], [ -95.638697099161874, 30.341323305460978 ], [ -95.638291098851411, 30.341334306302596 ], [ -95.637750098210617, 30.341381305452174 ], [ -95.6374880982805, 30.341416306318227 ], [ -95.637330098440756, 30.341459305642857 ], [ -95.637252098613345, 30.341487306335814 ], [ -95.637181098133766, 30.341519306014476 ], [ -95.637041098264461, 30.341595305809822 ], [ -95.636978098001904, 30.341640305669074 ], [ -95.636859098721658, 30.341742306069776 ], [ -95.636809098210762, 30.341795306091907 ], [ -95.636765098208087, 30.341852306395101 ], [ -95.636011098472906, 30.342680305951838 ], [ -95.635882098006078, 30.342795306004419 ], [ -95.635671098546666, 30.342947306734068 ], [ -95.635521097882204, 30.343039305986441 ], [ -95.635364097840636, 30.343121306729532 ], [ -95.63511809781825, 30.343225306404427 ], [ -95.63494709774649, 30.343284306699339 ], [ -95.634771098084002, 30.343332306117532 ], [ -95.634502097762635, 30.343383306760607 ], [ -95.634412097726852, 30.343394306229683 ], [ -95.63422709756199, 30.343409306482659 ], [ -95.634135097643181, 30.343409306886329 ], [ -95.633561097565149, 30.34345530670997 ], [ -95.633182097099919, 30.343498306484399 ], [ -95.632805097232719, 30.343555306445069 ], [ -95.632427097738116, 30.343620306430537 ], [ -95.632242097765143, 30.343659306306282 ], [ -95.631683097393179, 30.343788306700684 ], [ -95.63109709694524, 30.343955306467109 ], [ -95.631003096629584, 30.343997307107653 ], [ -95.630909096885219, 30.34403330666461 ], [ -95.630813096774162, 30.344061306821665 ], [ -95.630614096967264, 30.344111306914549 ], [ -95.630511096882842, 30.344127306698944 ], [ -95.630435097264495, 30.34414530696662 ], [ -95.630354097043991, 30.34415930633596 ], [ -95.630192097217133, 30.344166306740505 ], [ -95.630113096679651, 30.344164306572289 ], [ -95.629952096186472, 30.344146306906254 ], [ -95.629877096217058, 30.344128306694948 ], [ -95.629484096326067, 30.344060306930636 ], [ -95.628996096038165, 30.343977306510705 ], [ -95.628414096023207, 30.343866306716297 ], [ -95.627069096381035, 30.343577306639947 ], [ -95.625439095941701, 30.34322630632315 ], [ -95.624755095500674, 30.343079307109285 ], [ -95.623359095182195, 30.342779306782131 ], [ -95.61984209387353, 30.342023306224291 ], [ -95.618753093407818, 30.341786306645059 ], [ -95.617299092983416, 30.341475306853471 ], [ -95.616876093119174, 30.341384306701844 ], [ -95.616373092738556, 30.341276307060937 ], [ -95.61572509287052, 30.341136306757956 ], [ -95.614149092698327, 30.340796306439955 ], [ -95.614184092958837, 30.344172307659473 ], [ -95.614178092671878, 30.345201307443318 ], [ -95.614207093268874, 30.346697307813521 ], [ -95.614256092964325, 30.346698307476338 ], [ -95.614264092580072, 30.347105308304027 ], [ -95.614294092516502, 30.348660307780229 ], [ -95.614318092516029, 30.349791308632092 ], [ -95.614352092640672, 30.351504308772149 ], [ -95.614399093289123, 30.353827309031331 ], [ -95.614411092988902, 30.354470308942471 ], [ -95.614502093160922, 30.358991309972094 ], [ -95.614800093304879, 30.358989310185322 ], [ -95.616650094165536, 30.358976310558031 ], [ -95.616748093999902, 30.365322311164761 ], [ -95.616755094606816, 30.365682311880764 ], [ -95.618556095168685, 30.366318311861377 ], [ -95.620994095821843, 30.367273311788736 ], [ -95.621608095779123, 30.367488311902836 ], [ -95.62194909593336, 30.367613311590539 ], [ -95.6222860953512, 30.367745312077794 ], [ -95.622620096349792, 30.367881311838868 ], [ -95.622662096019866, 30.36790031174564 ], [ -95.622817095691047, 30.367972311970682 ], [ -95.623267096631139, 30.368184311877553 ], [ -95.623353096663664, 30.368222311727575 ], [ -95.626681097316208, 30.369686311815638 ], [ -95.627165097620747, 30.369898312209759 ], [ -95.627906097085841, 30.370223311744798 ], [ -95.628849097556966, 30.370633311984179 ], [ -95.62908909787572, 30.370737311884778 ], [ -95.629373097925424, 30.370861312001054 ], [ -95.629865097775451, 30.371075312490483 ], [ -95.630382098323963, 30.371299311811509 ], [ -95.631105098139557, 30.371616311810278 ], [ -95.631754098078204, 30.371899312244363 ], [ -95.632713098465189, 30.37231831277261 ], [ -95.633280099123525, 30.372538312526203 ], [ -95.633647099203642, 30.372687312767223 ], [ -95.633889099297406, 30.372795312528385 ], [ -95.634350099325601, 30.372997312537077 ], [ -95.63454209910131, 30.37308831260335 ], [ -95.634663098785396, 30.373145312167892 ], [ -95.635280099429707, 30.373454312865981 ], [ -95.635585099473147, 30.373621312765568 ], [ -95.636210099480408, 30.373971312285459 ], [ -95.636336099307769, 30.374041312217539 ], [ -95.636703099647349, 30.374247312732567 ], [ -95.639131100607742, 30.375608312695775 ], [ -95.640729101258955, 30.376502312840639 ], [ -95.642311101950099, 30.377387312809464 ], [ -95.645152102627478, 30.378975313010503 ], [ -95.649759103613874, 30.381552313682267 ], [ -95.650327103876776, 30.381822313653551 ], [ -95.651054104055461, 30.38213131403749 ], [ -95.651491104365988, 30.38230231378877 ], [ -95.651787104018254, 30.382411313911629 ], [ -95.652345104741329, 30.382604313893914 ], [ -95.652721104144376, 30.382724313572119 ], [ -95.652970104214319, 30.382803313969724 ], [ -95.653610104197512, 30.38297331412895 ], [ -95.654232104580785, 30.383124313297046 ], [ -95.654543104686269, 30.383192313829255 ], [ -95.655172104928312, 30.383312313708021 ], [ -95.655628105438439, 30.383389313353835 ], [ -95.656091104872203, 30.383475313956133 ], [ -95.656379105424648, 30.383529314148529 ], [ -95.656747105578162, 30.383598313974062 ], [ -95.65682810515456, 30.383613313705983 ], [ -95.661737106873531, 30.384531313638171 ], [ -95.661841106752519, 30.384550314145269 ], [ -95.662108106799167, 30.38460731404238 ], [ -95.662215106370184, 30.384631313730615 ], [ -95.662465106933766, 30.384675313794762 ], [ -95.662632107080171, 30.384696314090519 ], [ -95.662944106753457, 30.384761313830612 ], [ -95.663832106808542, 30.384918313807958 ], [ -95.66467710778636, 30.385093313646131 ], [ -95.668636108209327, 30.385835314045309 ], [ -95.670314109441264, 30.386151313635473 ], [ -95.6709111091522, 30.386263313799365 ], [ -95.671398108860132, 30.386355313880291 ], [ -95.67141910905552, 30.386359313597186 ], [ -95.671713109259557, 30.386414313892654 ], [ -95.674131110038275, 30.386870313509611 ], [ -95.674428109990089, 30.386934313569657 ], [ -95.674780110412144, 30.387012314186926 ], [ -95.675150110639464, 30.387085313554376 ], [ -95.675435110680354, 30.387141313678299 ], [ -95.676032110216994, 30.387248314197315 ], [ -95.676261110413179, 30.387290313384742 ], [ -95.676420110792705, 30.3873193136411 ], [ -95.676484110825285, 30.38710931367746 ], [ -95.676598111083351, 30.386840313578599 ], [ -95.676644110394221, 30.386753314098563 ], [ -95.676696110227596, 30.386666313574768 ], [ -95.676802111183946, 30.386504313840717 ], [ -95.676996110767263, 30.386244313316588 ], [ -95.677174110777287, 30.385971313806898 ], [ -95.67725811090412, 30.385825313204858 ], [ -95.677337110594692, 30.385689313184404 ], [ -95.677438111004832, 30.385491313670837 ], [ -95.677612110549916, 30.385063313656239 ], [ -95.677692110590215, 30.384845313194152 ], [ -95.677837110605225, 30.384408312705062 ], [ -95.677897110651315, 30.384203312732232 ], [ -95.677958110649158, 30.383996313304348 ], [ -95.678063110796955, 30.383457313335224 ], [ -95.67815911139175, 30.382917312736698 ], [ -95.678241110644663, 30.382361312512579 ], [ -95.67827811097284, 30.38210631306584 ], [ -95.678356110517839, 30.381338312456862 ], [ -95.678426111256968, 30.380817312112224 ], [ -95.678437111012684, 30.380652312116045 ], [ -95.678450110594255, 30.380320312710079 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1345, "Tract": "48339692302", "Area_SqMi": 4.5742108791354941, "total_2009": 65, "total_2010": 77, "total_2011": 135, "total_2012": 159, "total_2013": 183, "total_2014": 190, "total_2015": 132, "total_2016": 150, "total_2017": 166, "total_2018": 166, "total_2019": 183, "total_2020": 122, "age1": 38, "age2": 80, "age3": 36, "earn1": 24, "earn2": 68, "earn3": 62, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 36, "naics_s05": 0, "naics_s06": 1, "naics_s07": 3, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 2, "naics_s12": 19, "naics_s13": 0, "naics_s14": 32, "naics_s15": 0, "naics_s16": 28, "naics_s17": 5, "naics_s18": 20, "naics_s19": 1, "naics_s20": 0, "race1": 126, "race2": 14, "race3": 5, "race4": 7, "race5": 0, "race6": 2, "ethnicity1": 100, "ethnicity2": 54, "edu1": 23, "edu2": 30, "edu3": 40, "edu4": 23, "Shape_Length": 57495.959343232615, "Shape_Area": 127521170.47013536, "total_2021": 127, "total_2022": 154 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.32857900892219, 30.119367271952132 ], [ -95.328474008992174, 30.118955271451231 ], [ -95.32818400893234, 30.118359271238024 ], [ -95.327658008420016, 30.11780927135365 ], [ -95.327078008150465, 30.117511271705521 ], [ -95.325524008334853, 30.117121271496867 ], [ -95.324917007607539, 30.117121271269088 ], [ -95.324469007807721, 30.11737327191727 ], [ -95.323072007701157, 30.118632271935251 ], [ -95.322387007458588, 30.118884271577251 ], [ -95.321834007311168, 30.11893027172145 ], [ -95.321333007235083, 30.118792271754103 ], [ -95.320622007132997, 30.118403271940871 ], [ -95.320227007044963, 30.117944271484905 ], [ -95.320043006865376, 30.117142271526152 ], [ -95.319937006527141, 30.117051271857633 ], [ -95.319833006282622, 30.115310271106125 ], [ -95.31975400668226, 30.114966271120821 ], [ -95.319306006084943, 30.113866271231036 ], [ -95.318753006481586, 30.113385270670989 ], [ -95.318121005609683, 30.113064270680628 ], [ -95.317120005419071, 30.112743271019998 ], [ -95.314828005635192, 30.112169270454032 ], [ -95.314301004566602, 30.111642270970282 ], [ -95.314117004952308, 30.111024270752765 ], [ -95.314197004406452, 30.110199270514027 ], [ -95.314381004479912, 30.109512270256644 ], [ -95.314672004440368, 30.107840269884566 ], [ -95.314806005058813, 30.104472269175954 ], [ -95.314754004865051, 30.101540268557581 ], [ -95.314492004099506, 30.100486268100703 ], [ -95.314097004016446, 30.099799267941201 ], [ -95.313386003703698, 30.099088268399107 ], [ -95.312043003343049, 30.098354268177321 ], [ -95.311569003531716, 30.097988268160581 ], [ -95.311147003140363, 30.097254268089912 ], [ -95.31104200381499, 30.096773268248896 ], [ -95.311175003113462, 30.095765267781378 ], [ -95.311386003506925, 30.095078267721416 ], [ -95.311620003508224, 30.094672267645215 ], [ -95.311113003496374, 30.094640267617482 ], [ -95.306939002625697, 30.094379267417739 ], [ -95.301853001435177, 30.094226267719073 ], [ -95.294620998918361, 30.094033267678775 ], [ -95.294255998664042, 30.094039267492747 ], [ -95.294099998723254, 30.094018268005637 ], [ -95.293958998839187, 30.093978268111883 ], [ -95.293818998954322, 30.093919268238615 ], [ -95.293422998574087, 30.093738267493702 ], [ -95.292569998588661, 30.093362268120121 ], [ -95.292436998561314, 30.09332326791445 ], [ -95.292305998907807, 30.093305268139702 ], [ -95.292178998835226, 30.093307267913957 ], [ -95.292013998796037, 30.093339267595351 ], [ -95.29180499814926, 30.093415267625772 ], [ -95.290733997818464, 30.093884268213397 ], [ -95.289903998210818, 30.094279267745279 ], [ -95.289835998080136, 30.094307267760083 ], [ -95.289638998289291, 30.094368267951751 ], [ -95.289540997443424, 30.094390268072711 ], [ -95.289356997338587, 30.094418267946381 ], [ -95.289172997459559, 30.094438267957891 ], [ -95.289059998058761, 30.094446268042162 ], [ -95.287051997177429, 30.094515268472225 ], [ -95.283404996640229, 30.094639268790846 ], [ -95.280852995772136, 30.094708268837842 ], [ -95.279657995853483, 30.094752268349634 ], [ -95.278288994548817, 30.094789268274059 ], [ -95.277185995087308, 30.094805268789099 ], [ -95.275215994280771, 30.094789268260687 ], [ -95.275227994419566, 30.095483268433586 ], [ -95.275203994025048, 30.095798268669995 ], [ -95.275179993833788, 30.09599826913033 ], [ -95.275138994097944, 30.096182268671445 ], [ -95.275075994757174, 30.096353268864036 ], [ -95.274828993804491, 30.096883269054878 ], [ -95.27398599421619, 30.098334269377052 ], [ -95.27326099427718, 30.099414269595496 ], [ -95.272155993866292, 30.100759270140713 ], [ -95.271915993289582, 30.10109526982307 ], [ -95.271739993616208, 30.101342270462485 ], [ -95.271373993701857, 30.101973270195245 ], [ -95.270859993574476, 30.103084270722324 ], [ -95.269951992956237, 30.105004270774614 ], [ -95.269533993461252, 30.105589271101579 ], [ -95.269262992810994, 30.105950271363437 ], [ -95.268376992543409, 30.107067271644237 ], [ -95.267526992767174, 30.108180271426153 ], [ -95.266789992948205, 30.109120271516538 ], [ -95.265596992872801, 30.110658271862665 ], [ -95.26510599197124, 30.11129027224829 ], [ -95.264641992594989, 30.11190727258812 ], [ -95.267152993102201, 30.113768272384839 ], [ -95.267258993310591, 30.113845272744971 ], [ -95.267530993023698, 30.114044272522648 ], [ -95.267541993585127, 30.114052273287157 ], [ -95.268249993656525, 30.114569272564118 ], [ -95.268530993736093, 30.114791273156751 ], [ -95.26874999372825, 30.114948272686384 ], [ -95.269403993916839, 30.115445273117324 ], [ -95.269626993549394, 30.115625273377624 ], [ -95.269827993616488, 30.11577927333877 ], [ -95.270027993857639, 30.11595227349915 ], [ -95.27020699379591, 30.116120272738076 ], [ -95.270562993892298, 30.116435273233197 ], [ -95.270765994147041, 30.116625273390223 ], [ -95.27151199442882, 30.11740827347462 ], [ -95.272130994554246, 30.118013273931023 ], [ -95.272855995107221, 30.118781273731173 ], [ -95.273018994739857, 30.118759273311145 ], [ -95.274329995505369, 30.117822273135513 ], [ -95.275036995315773, 30.117299273188067 ], [ -95.275899995810619, 30.116687272820787 ], [ -95.276718995315335, 30.116099273256875 ], [ -95.276945996070452, 30.11596227322082 ], [ -95.277057996102172, 30.115911273196364 ], [ -95.277189995604843, 30.115843272431636 ], [ -95.277598995342899, 30.115722273220296 ], [ -95.277826995587375, 30.115681272677506 ], [ -95.278170995852236, 30.115663273147298 ], [ -95.279622996452645, 30.115649272901113 ], [ -95.281413996371327, 30.11561327311863 ], [ -95.28542299815183, 30.115583272807001 ], [ -95.286038997463208, 30.11556727216778 ], [ -95.288757998943652, 30.115550272441336 ], [ -95.291321999418997, 30.115510272459165 ], [ -95.293001000147598, 30.115487272570139 ], [ -95.293592999735409, 30.115487272592734 ], [ -95.294403999575593, 30.115471272035631 ], [ -95.2971310007173, 30.115441272357103 ], [ -95.299172001049314, 30.115407271735481 ], [ -95.299306001604023, 30.115408272400852 ], [ -95.299834001558779, 30.115397272056285 ], [ -95.303102002204028, 30.115364271518978 ], [ -95.304135003100342, 30.116585271908377 ], [ -95.305167002720196, 30.11780727264928 ], [ -95.305235003130562, 30.117958272297489 ], [ -95.305246002536521, 30.117986272681556 ], [ -95.306343003841192, 30.120160273055518 ], [ -95.304705003103351, 30.121437273372475 ], [ -95.307204004247296, 30.124322273759393 ], [ -95.327555009407703, 30.121983272064032 ], [ -95.327770009245398, 30.122004272623148 ], [ -95.327902008975457, 30.121991272341642 ], [ -95.328020008761584, 30.121982272548539 ], [ -95.32807800919467, 30.121566271846135 ], [ -95.328421008771315, 30.120696271658133 ], [ -95.32857900892219, 30.119367271952132 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1346, "Tract": "48339693800", "Area_SqMi": 5.3047665637453543, "total_2009": 3197, "total_2010": 3560, "total_2011": 3555, "total_2012": 3376, "total_2013": 3307, "total_2014": 3384, "total_2015": 3403, "total_2016": 4264, "total_2017": 4416, "total_2018": 3844, "total_2019": 3979, "total_2020": 3634, "age1": 1289, "age2": 1987, "age3": 788, "earn1": 1113, "earn2": 1157, "earn3": 1794, "naics_s01": 2, "naics_s02": 30, "naics_s03": 112, "naics_s04": 97, "naics_s05": 487, "naics_s06": 274, "naics_s07": 614, "naics_s08": 22, "naics_s09": 236, "naics_s10": 117, "naics_s11": 38, "naics_s12": 205, "naics_s13": 0, "naics_s14": 32, "naics_s15": 0, "naics_s16": 236, "naics_s17": 19, "naics_s18": 1270, "naics_s19": 272, "naics_s20": 1, "race1": 3193, "race2": 591, "race3": 25, "race4": 175, "race5": 7, "race6": 73, "ethnicity1": 2982, "ethnicity2": 1082, "edu1": 565, "edu2": 787, "edu3": 888, "edu4": 535, "Shape_Length": 54904.486700657078, "Shape_Area": 147887812.59850776, "total_2021": 3846, "total_2022": 4064 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.486699062071111, 30.391252321428599 ], [ -95.486630062320984, 30.389176320570908 ], [ -95.486472062395109, 30.384511320337101 ], [ -95.486337061243432, 30.380512318807639 ], [ -95.486241061101438, 30.378136318843179 ], [ -95.486172061349677, 30.37699231813415 ], [ -95.486007061223162, 30.375198318243083 ], [ -95.485925061697969, 30.373707317812176 ], [ -95.485766061637733, 30.371894317751625 ], [ -95.485611061282015, 30.370137316770755 ], [ -95.485569060736808, 30.369663317258894 ], [ -95.485559061249134, 30.369547316839746 ], [ -95.485302060924965, 30.366886316768237 ], [ -95.485132060161831, 30.365138315832457 ], [ -95.48503406051951, 30.363964315680185 ], [ -95.484969061012279, 30.363195315851623 ], [ -95.48471806068008, 30.360217315187064 ], [ -95.484659060158393, 30.35943831502567 ], [ -95.484270060136438, 30.354338313618822 ], [ -95.484236059857679, 30.353876314301253 ], [ -95.484126059340895, 30.352390313303477 ], [ -95.484024060118699, 30.351199313136703 ], [ -95.484017060212466, 30.351116313517878 ], [ -95.483994059482185, 30.3508493128857 ], [ -95.483898059260824, 30.350063313574857 ], [ -95.483853059990466, 30.349698313150469 ], [ -95.48360705908091, 30.348176312935554 ], [ -95.483373059501318, 30.347075312517536 ], [ -95.482969059267177, 30.345912312408089 ], [ -95.482447059387411, 30.344523311958316 ], [ -95.481562058277063, 30.342134311280674 ], [ -95.480204058096348, 30.338611310547932 ], [ -95.479677057958085, 30.337244310955771 ], [ -95.479384057549979, 30.336461310608779 ], [ -95.478934057538055, 30.335258310669417 ], [ -95.478304057463177, 30.333605310303135 ], [ -95.478271057628334, 30.333516310273673 ], [ -95.478189056871642, 30.333545310317348 ], [ -95.478108057551339, 30.33357531022321 ], [ -95.478047057127, 30.333592310350348 ], [ -95.477747057373961, 30.333673309886279 ], [ -95.477634057708713, 30.333704309740092 ], [ -95.477323057458733, 30.333821310191862 ], [ -95.477004057254064, 30.333917310186873 ], [ -95.475930056365428, 30.334175310334821 ], [ -95.474397055915418, 30.334531310763964 ], [ -95.474161056744848, 30.334585310156811 ], [ -95.473926056633999, 30.334640310827236 ], [ -95.471899055387595, 30.335121310201746 ], [ -95.471121055626867, 30.335298310228776 ], [ -95.470068055244269, 30.335538310252861 ], [ -95.467652054504924, 30.336085311081852 ], [ -95.464862054285788, 30.336713311342844 ], [ -95.463589053646814, 30.33700731110067 ], [ -95.462316053504523, 30.337301311640655 ], [ -95.461999053597452, 30.337367311771306 ], [ -95.460886052863771, 30.337616311381883 ], [ -95.460348053260233, 30.337742311596116 ], [ -95.459955052893562, 30.337825311367087 ], [ -95.459581052649114, 30.33791431132568 ], [ -95.459060052338899, 30.338013311193293 ], [ -95.458635052909344, 30.338076311975744 ], [ -95.458281052237552, 30.338125311888746 ], [ -95.457357052197494, 30.338233311291745 ], [ -95.457132052443754, 30.33825431133911 ], [ -95.457893052360689, 30.343216312247293 ], [ -95.458019052635009, 30.344072312660415 ], [ -95.458835053059701, 30.349306314311903 ], [ -95.458897053093636, 30.349917313719249 ], [ -95.459051052972654, 30.350981314268882 ], [ -95.459142053347648, 30.35162131413956 ], [ -95.459365053985238, 30.353118314604835 ], [ -95.459890054265159, 30.356558315056514 ], [ -95.461508054790585, 30.367476317440069 ], [ -95.461961054993012, 30.370531318267158 ], [ -95.462273055220592, 30.37263931805607 ], [ -95.462360055279319, 30.372904318222041 ], [ -95.4625620549416, 30.374285318921658 ], [ -95.463600055864831, 30.381357319923595 ], [ -95.464244055898689, 30.385548320730837 ], [ -95.464451056199565, 30.38635932123184 ], [ -95.464690056078808, 30.386984321529951 ], [ -95.464943056315789, 30.387593321656738 ], [ -95.465198056856153, 30.388115321458422 ], [ -95.467062057548247, 30.391157322138262 ], [ -95.467995057118827, 30.39090632190133 ], [ -95.474427058989619, 30.38936432169211 ], [ -95.475857059072098, 30.38902132085143 ], [ -95.476449059641041, 30.388894321572828 ], [ -95.476646059740645, 30.388910321117624 ], [ -95.4765190595852, 30.389306321656235 ], [ -95.47616605910838, 30.390411321321352 ], [ -95.476124059907519, 30.390541321237951 ], [ -95.476568059315781, 30.390654321274464 ], [ -95.477878059908477, 30.391010321702183 ], [ -95.478821060177737, 30.39123632140446 ], [ -95.479786060212788, 30.391368321657644 ], [ -95.480362060312686, 30.391388321208254 ], [ -95.48044106086401, 30.391391321439162 ], [ -95.482441061513214, 30.391385321482538 ], [ -95.484118061350856, 30.391311321608736 ], [ -95.484578062061544, 30.391312321441099 ], [ -95.485980062002895, 30.391274321760328 ], [ -95.486699062071111, 30.391252321428599 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1347, "Tract": "48339693903", "Area_SqMi": 0.90120091033454319, "total_2009": 698, "total_2010": 681, "total_2011": 595, "total_2012": 665, "total_2013": 691, "total_2014": 729, "total_2015": 967, "total_2016": 937, "total_2017": 887, "total_2018": 881, "total_2019": 911, "total_2020": 322, "age1": 67, "age2": 152, "age3": 67, "earn1": 40, "earn2": 127, "earn3": 119, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 7, "naics_s06": 16, "naics_s07": 81, "naics_s08": 0, "naics_s09": 0, "naics_s10": 15, "naics_s11": 1, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 3, "naics_s19": 67, "naics_s20": 46, "race1": 223, "race2": 38, "race3": 4, "race4": 15, "race5": 0, "race6": 6, "ethnicity1": 187, "ethnicity2": 99, "edu1": 54, "edu2": 56, "edu3": 66, "edu4": 43, "Shape_Length": 26004.597065186448, "Shape_Area": 25123938.959353846, "total_2021": 367, "total_2022": 286 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.456286051321783, 30.332449310655281 ], [ -95.456236051341619, 30.332122310579539 ], [ -95.456074052034822, 30.331071310319704 ], [ -95.455834051484871, 30.329512310136401 ], [ -95.455726050950631, 30.32794930994201 ], [ -95.455739051122478, 30.326479309558874 ], [ -95.455739051469735, 30.325704308964038 ], [ -95.45575605138805, 30.323281308693701 ], [ -95.4557650515261, 30.322175308371211 ], [ -95.45577905093154, 30.320326307779624 ], [ -95.455822050298522, 30.315633307469099 ], [ -95.455797050524879, 30.313061306676843 ], [ -95.455827050981668, 30.312175306715083 ], [ -95.455540050811464, 30.312191306853634 ], [ -95.45520705001536, 30.312193306584298 ], [ -95.454969050621301, 30.312247306753559 ], [ -95.453834049872043, 30.312721306791737 ], [ -95.452688049442614, 30.313186306331218 ], [ -95.451545049313424, 30.313648306933061 ], [ -95.450479049875199, 30.314079306899284 ], [ -95.449531048780614, 30.314522306787406 ], [ -95.449257048655809, 30.314537306917927 ], [ -95.446904048253145, 30.31478830722331 ], [ -95.445146047628072, 30.314976307815517 ], [ -95.444850048480646, 30.3150043071266 ], [ -95.444467048070038, 30.315046307032365 ], [ -95.443838048194223, 30.315126307654481 ], [ -95.443401047497829, 30.315175307632373 ], [ -95.443183047876246, 30.315210307414127 ], [ -95.442859047362987, 30.315276307968372 ], [ -95.442647046954846, 30.315328307972344 ], [ -95.441717047360157, 30.315600307466749 ], [ -95.441349046927414, 30.315723307449787 ], [ -95.441146047569916, 30.315797307598739 ], [ -95.440274046833736, 30.316137308254554 ], [ -95.440226047060392, 30.316157307818298 ], [ -95.440247046378218, 30.316179307836407 ], [ -95.440485046686973, 30.316729307763467 ], [ -95.440617046945022, 30.317645307998152 ], [ -95.441119047614208, 30.318263308153682 ], [ -95.441384047273417, 30.318927308742584 ], [ -95.44217604760027, 30.319568308268774 ], [ -95.442335047425289, 30.319866308486368 ], [ -95.443048047425606, 30.320484308422593 ], [ -95.443524047767411, 30.320690308705988 ], [ -95.444632047985237, 30.320529308913596 ], [ -95.444870048405733, 30.320666308542567 ], [ -95.444903048598363, 30.320746308867566 ], [ -95.445029048345276, 30.321055308650454 ], [ -95.445135048879834, 30.322269309030631 ], [ -95.445294048360182, 30.32263630911503 ], [ -95.445295048357025, 30.323231308938063 ], [ -95.444917048781235, 30.323730309566429 ], [ -95.444669048213598, 30.324057309109058 ], [ -95.444635048363878, 30.324102309564488 ], [ -95.444821048903876, 30.325591309729461 ], [ -95.4449530481549, 30.325866309766013 ], [ -95.445086048475417, 30.326507310057718 ], [ -95.445324048689429, 30.326782309689342 ], [ -95.445298048751653, 30.327171309985388 ], [ -95.44508704899593, 30.327400310340437 ], [ -95.444400048754346, 30.327790310098251 ], [ -95.444190047906901, 30.328134309770775 ], [ -95.443398048374362, 30.328730310317603 ], [ -95.44321304826758, 30.329073310382793 ], [ -95.442791048370893, 30.329417310045145 ], [ -95.441260047661402, 30.329808310701846 ], [ -95.440864047176476, 30.330106310313095 ], [ -95.440864047273095, 30.330140310505421 ], [ -95.447440048764477, 30.328503309986598 ], [ -95.449259050083143, 30.334186311152923 ], [ -95.450209050153603, 30.334011311467499 ], [ -95.452668051251706, 30.333375310897146 ], [ -95.452680051022014, 30.333341310822931 ], [ -95.455103051769171, 30.332741310648586 ], [ -95.45603305157087, 30.332512310902882 ], [ -95.456286051321783, 30.332449310655281 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1348, "Tract": "48339693701", "Area_SqMi": 4.662635956744384, "total_2009": 364, "total_2010": 318, "total_2011": 375, "total_2012": 287, "total_2013": 287, "total_2014": 338, "total_2015": 406, "total_2016": 404, "total_2017": 386, "total_2018": 603, "total_2019": 382, "total_2020": 342, "age1": 96, "age2": 193, "age3": 83, "earn1": 53, "earn2": 76, "earn3": 243, "naics_s01": 0, "naics_s02": 0, "naics_s03": 34, "naics_s04": 145, "naics_s05": 21, "naics_s06": 12, "naics_s07": 0, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 10, "naics_s13": 0, "naics_s14": 101, "naics_s15": 0, "naics_s16": 5, "naics_s17": 0, "naics_s18": 40, "naics_s19": 0, "naics_s20": 0, "race1": 312, "race2": 42, "race3": 1, "race4": 5, "race5": 0, "race6": 12, "ethnicity1": 299, "ethnicity2": 73, "edu1": 54, "edu2": 72, "edu3": 96, "edu4": 54, "Shape_Length": 60309.534162912183, "Shape_Area": 129986310.29283835, "total_2021": 331, "total_2022": 372 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.56510008049969, 30.362918312775378 ], [ -95.56527208052087, 30.358002311454083 ], [ -95.564884080270076, 30.357454311963888 ], [ -95.564608080196251, 30.357065311840852 ], [ -95.564538080502217, 30.356966311251576 ], [ -95.564429080574129, 30.356871311676102 ], [ -95.563532080475042, 30.355222311802123 ], [ -95.563337080479982, 30.354989310873808 ], [ -95.563110079657918, 30.354718311323452 ], [ -95.562345079938211, 30.354076311396334 ], [ -95.560364079618026, 30.352976310900917 ], [ -95.560218079643917, 30.352838310578793 ], [ -95.560074079320472, 30.352701311355489 ], [ -95.560048079043995, 30.352128311099207 ], [ -95.560103079659513, 30.352032310535932 ], [ -95.560233078825348, 30.351808310686181 ], [ -95.560233079581479, 30.351373310862382 ], [ -95.559864079374719, 30.351281310647572 ], [ -95.559467079273603, 30.351739310785707 ], [ -95.559177078781957, 30.351830310507971 ], [ -95.559124079386592, 30.351761311173352 ], [ -95.55925607903275, 30.351120310658853 ], [ -95.559626078562601, 30.350617310246175 ], [ -95.559910078664657, 30.35043531033374 ], [ -95.560153079591686, 30.350279310242858 ], [ -95.560340079522476, 30.350159310712375 ], [ -95.560389078985438, 30.349920310294682 ], [ -95.560472079313811, 30.349517310703984 ], [ -95.560789079710489, 30.348899310620546 ], [ -95.560737079163118, 30.348670310300644 ], [ -95.559945079107365, 30.348280309804192 ], [ -95.559575078491363, 30.347845309748934 ], [ -95.559021079148607, 30.347341309589375 ], [ -95.558677078865699, 30.347158309555393 ], [ -95.556354077491278, 30.346744310083029 ], [ -95.555139078012118, 30.346812309790138 ], [ -95.554928077254004, 30.346973309756844 ], [ -95.554901077308998, 30.347820309778189 ], [ -95.554583077944031, 30.348347310655377 ], [ -95.554266078009803, 30.348484310326693 ], [ -95.553685077443419, 30.34855231006965 ], [ -95.552920077699866, 30.348277310660279 ], [ -95.552708076937321, 30.348277310352884 ], [ -95.551440077139873, 30.348941310489373 ], [ -95.55096507649354, 30.349009310152528 ], [ -95.550833076471477, 30.348918310805672 ], [ -95.550860076706741, 30.348437310402591 ], [ -95.550754076221722, 30.348345310274389 ], [ -95.550332076039183, 30.348276310822303 ], [ -95.549803076445784, 30.348390310076567 ], [ -95.548985076600289, 30.348390310849862 ], [ -95.547401076184357, 30.347908310462753 ], [ -95.54695207527179, 30.347885310342569 ], [ -95.546397075386736, 30.347976310535188 ], [ -95.545789075427081, 30.348273310433196 ], [ -95.545446075739619, 30.348709310909523 ], [ -95.545393074936058, 30.349029311016459 ], [ -95.545551075714656, 30.349212310516315 ], [ -95.54586807595031, 30.349350310775161 ], [ -95.546132075616114, 30.349625310780663 ], [ -95.546132075050537, 30.349808310482356 ], [ -95.545973075960674, 30.349923311153418 ], [ -95.545366075474575, 30.349991311280903 ], [ -95.544653075508336, 30.349693311269107 ], [ -95.543861074582153, 30.349120310883237 ], [ -95.543408074689395, 30.348647310574361 ], [ -95.543201074393821, 30.348432310673747 ], [ -95.542752074088611, 30.348157310436015 ], [ -95.541459074686074, 30.347011310616395 ], [ -95.541010074257159, 30.346988310430572 ], [ -95.540746074247181, 30.347125310326664 ], [ -95.540746074462007, 30.347767310721359 ], [ -95.540402073609243, 30.347858310485389 ], [ -95.539610073376281, 30.347377310809264 ], [ -95.538555073068324, 30.345819310761591 ], [ -95.538397073050504, 30.345452310139255 ], [ -95.53839707326182, 30.34514531021275 ], [ -95.538397073382868, 30.344660310120275 ], [ -95.538398073681208, 30.344307309938397 ], [ -95.538480072980946, 30.343966310137027 ], [ -95.538530072978688, 30.343757310294333 ], [ -95.538848073079862, 30.343231310013426 ], [ -95.539508073863317, 30.343002309716596 ], [ -95.541621074326471, 30.342866309369143 ], [ -95.542466074056804, 30.342569309530461 ], [ -95.542577074693924, 30.342404309775407 ], [ -95.536194072673325, 30.342534309537257 ], [ -95.533827072357838, 30.342545309829855 ], [ -95.533831071844901, 30.342707310148906 ], [ -95.533835072249204, 30.342841309774681 ], [ -95.533905072260183, 30.345383310306232 ], [ -95.533950072396294, 30.345695310172051 ], [ -95.534086071976887, 30.346012310973716 ], [ -95.53434907287965, 30.346335310186795 ], [ -95.534703072131478, 30.346625310647187 ], [ -95.53671507346256, 30.34777431069427 ], [ -95.53701907275638, 30.348093310999623 ], [ -95.537308073561391, 30.348669311010429 ], [ -95.537609073459237, 30.349684311141385 ], [ -95.537706073102328, 30.350011311630322 ], [ -95.537678073122095, 30.350945311697522 ], [ -95.537887073698826, 30.351264311335484 ], [ -95.537950073229212, 30.351469311460825 ], [ -95.537886073479086, 30.351729311773262 ], [ -95.537543073304306, 30.352449311268312 ], [ -95.537276073489295, 30.352716311638154 ], [ -95.53720007350023, 30.352792312183691 ], [ -95.537036073045087, 30.353014312186477 ], [ -95.536933073194362, 30.353314311964795 ], [ -95.536702072869289, 30.353553312211609 ], [ -95.536434072942868, 30.353657312081047 ], [ -95.536257073095129, 30.353688312095272 ], [ -95.53604707317885, 30.353928311942759 ], [ -95.53574407327234, 30.354297312549154 ], [ -95.535554073055366, 30.3545943121348 ], [ -95.535452072779691, 30.35466431199626 ], [ -95.535426073313914, 30.35470231198401 ], [ -95.534473072396494, 30.355086312524918 ], [ -95.534049072566361, 30.355525312733239 ], [ -95.534040072978371, 30.35553431230046 ], [ -95.533997072996527, 30.355580312652759 ], [ -95.533425072875474, 30.356691312449247 ], [ -95.533256073017924, 30.357185312648163 ], [ -95.53248707272617, 30.357018313143634 ], [ -95.529658071128495, 30.356334312640506 ], [ -95.529559071877244, 30.356355313116641 ], [ -95.529407071327114, 30.356386312495832 ], [ -95.528501071154224, 30.356624312456756 ], [ -95.524784070419116, 30.357601313242345 ], [ -95.524146070075034, 30.357770313376534 ], [ -95.522725069831409, 30.358138313087 ], [ -95.522584069957375, 30.358175313617924 ], [ -95.523048070484776, 30.358920313442109 ], [ -95.52321207003456, 30.359182313581279 ], [ -95.523628070506234, 30.359891314137865 ], [ -95.523689070389111, 30.35999531356077 ], [ -95.523773070502557, 30.36014031402841 ], [ -95.523817070421913, 30.360216313979429 ], [ -95.524442070985742, 30.361239314154489 ], [ -95.524779070272118, 30.361616314375819 ], [ -95.525634070966305, 30.363115313926773 ], [ -95.525830071147581, 30.363439314667858 ], [ -95.526051070969984, 30.363797314674304 ], [ -95.526213070716665, 30.364065314821573 ], [ -95.526842071797361, 30.365107315108872 ], [ -95.527656072049282, 30.36642431452464 ], [ -95.528159072060262, 30.367221314894763 ], [ -95.528287072259403, 30.367444315031111 ], [ -95.528334072237726, 30.367525314857264 ], [ -95.528503072000817, 30.367832314906142 ], [ -95.528827072389419, 30.368462315607974 ], [ -95.52899007252833, 30.3688103154097 ], [ -95.529222072298609, 30.369377315218195 ], [ -95.530057072173165, 30.371101315461914 ], [ -95.530502072490691, 30.372062315869591 ], [ -95.530545072737553, 30.372153316150985 ], [ -95.530569072629746, 30.372223316383334 ], [ -95.530747072239336, 30.372745315975152 ], [ -95.530777073209848, 30.37303231611714 ], [ -95.530788073079933, 30.373125315711306 ], [ -95.530667073127617, 30.373557315808235 ], [ -95.530134073048274, 30.375629317008023 ], [ -95.529788072426044, 30.376976316725017 ], [ -95.529735072320378, 30.377183317029992 ], [ -95.529609072863082, 30.377787317182101 ], [ -95.529508073083335, 30.378183317485853 ], [ -95.529448072278271, 30.378418317270942 ], [ -95.528997072270414, 30.380192317925797 ], [ -95.528875072504079, 30.38066331745933 ], [ -95.528762072055684, 30.381107317983613 ], [ -95.528786072737034, 30.381386317439169 ], [ -95.528790072893216, 30.381488317878087 ], [ -95.528813072515035, 30.381618317596136 ], [ -95.528856072523737, 30.381762317859135 ], [ -95.528919072820941, 30.381898317685994 ], [ -95.528963072427146, 30.381974317539569 ], [ -95.529043072445305, 30.382083317735109 ], [ -95.529111072364046, 30.382170317589107 ], [ -95.530726073719151, 30.384238318227855 ], [ -95.531273073284396, 30.384937318751067 ], [ -95.533451074035156, 30.387724319199947 ], [ -95.533490074023092, 30.387774319182601 ], [ -95.533510073661319, 30.387799319378093 ], [ -95.533537073929892, 30.387834318687872 ], [ -95.53355907406781, 30.3878583189829 ], [ -95.533643074372094, 30.387953319399941 ], [ -95.533725073837502, 30.388025319028714 ], [ -95.533761074532705, 30.388057318977491 ], [ -95.53389007391084, 30.388152318902748 ], [ -95.533961074016219, 30.388195319046254 ], [ -95.534181074536718, 30.388302318699594 ], [ -95.534259074014273, 30.388332318796735 ], [ -95.534421074141179, 30.388380319352432 ], [ -95.535661074808544, 30.388660318767926 ], [ -95.537341075381278, 30.389041318857863 ], [ -95.538434075340717, 30.38928531889583 ], [ -95.538578075928257, 30.389317319115072 ], [ -95.539581075469087, 30.389555318731649 ], [ -95.539807076087186, 30.389608319030625 ], [ -95.540072075579545, 30.389672319101216 ], [ -95.541102075989301, 30.389960319413365 ], [ -95.542853076455927, 30.39016431903601 ], [ -95.543417076922353, 30.390657318885548 ], [ -95.543516076689315, 30.39059631926165 ], [ -95.545646077544703, 30.391948319792963 ], [ -95.547153078121383, 30.389695319311592 ], [ -95.547600077716908, 30.388058318147607 ], [ -95.548931077588193, 30.384913317804603 ], [ -95.549087077357726, 30.383022317316119 ], [ -95.550706078132478, 30.380508316630699 ], [ -95.551450078628903, 30.377864316501952 ], [ -95.552770078006716, 30.376609316487272 ], [ -95.554095078483073, 30.374471315156583 ], [ -95.554249078827539, 30.372959315616157 ], [ -95.554990078461444, 30.370945314576701 ], [ -95.559388080124918, 30.367181313763872 ], [ -95.560410079900478, 30.366933314088818 ], [ -95.56510008049969, 30.362918312775378 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1349, "Tract": "48339690503", "Area_SqMi": 4.2746159439768752, "total_2009": 107, "total_2010": 634, "total_2011": 162, "total_2012": 135, "total_2013": 138, "total_2014": 167, "total_2015": 667, "total_2016": 636, "total_2017": 767, "total_2018": 1122, "total_2019": 1300, "total_2020": 1275, "age1": 540, "age2": 689, "age3": 191, "earn1": 315, "earn2": 286, "earn3": 819, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 372, "naics_s05": 4, "naics_s06": 82, "naics_s07": 79, "naics_s08": 44, "naics_s09": 0, "naics_s10": 169, "naics_s11": 9, "naics_s12": 58, "naics_s13": 0, "naics_s14": 22, "naics_s15": 304, "naics_s16": 55, "naics_s17": 66, "naics_s18": 103, "naics_s19": 53, "naics_s20": 0, "race1": 1208, "race2": 122, "race3": 9, "race4": 54, "race5": 3, "race6": 24, "ethnicity1": 1169, "ethnicity2": 251, "edu1": 114, "edu2": 205, "edu3": 290, "edu4": 271, "Shape_Length": 57739.401459958135, "Shape_Area": 119168976.43976919, "total_2021": 1232, "total_2022": 1420 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.516336062750042, 30.238494289603569 ], [ -95.516383061894103, 30.228765287090859 ], [ -95.515467061880585, 30.228941287786697 ], [ -95.514958061909056, 30.229040287790909 ], [ -95.511702060767064, 30.229624288200629 ], [ -95.511497060797183, 30.229658288130047 ], [ -95.507564060320576, 30.23023228815547 ], [ -95.505756059074542, 30.230496288047295 ], [ -95.504410059169686, 30.230694288157217 ], [ -95.504327059487792, 30.230706287850065 ], [ -95.502195059072307, 30.231020288308631 ], [ -95.501395058493586, 30.231139288117514 ], [ -95.500830058209061, 30.231222288913401 ], [ -95.499071057760361, 30.231481288583918 ], [ -95.498863058280136, 30.231508288355503 ], [ -95.49723505699076, 30.231749288900993 ], [ -95.496571056832039, 30.231853288338801 ], [ -95.496296057617741, 30.23190128889059 ], [ -95.495265056883184, 30.232083288722613 ], [ -95.494801057279162, 30.232176289327903 ], [ -95.494446057000928, 30.232243289130032 ], [ -95.494088056302161, 30.232303288709215 ], [ -95.493731056379929, 30.232357289308059 ], [ -95.493332056583299, 30.232412288896629 ], [ -95.492299056139657, 30.232644288672205 ], [ -95.490200055687495, 30.23312028936509 ], [ -95.488952055648582, 30.233411289021561 ], [ -95.488731055479462, 30.233462289717369 ], [ -95.485862055135726, 30.234110289158266 ], [ -95.48520905408472, 30.23422828950968 ], [ -95.482413053713699, 30.234779289560993 ], [ -95.481379054073017, 30.234966289834496 ], [ -95.481333053385598, 30.234974289500546 ], [ -95.480815053718104, 30.235046289725446 ], [ -95.480625053550469, 30.235072289866217 ], [ -95.480398052992314, 30.235104289788886 ], [ -95.480280053031052, 30.235122290126185 ], [ -95.479440052868725, 30.235251289840871 ], [ -95.478726052760976, 30.235360289922774 ], [ -95.478108052510507, 30.235454289911377 ], [ -95.475520052183228, 30.23585929003276 ], [ -95.47117405096391, 30.236485290190281 ], [ -95.47093905079106, 30.236515290364562 ], [ -95.470744051106252, 30.236540290995364 ], [ -95.470281050379157, 30.236602290554757 ], [ -95.46996905045502, 30.236632290309458 ], [ -95.469762051071598, 30.236643290470603 ], [ -95.469661050572597, 30.236643290297682 ], [ -95.469556050785144, 30.236649290539475 ], [ -95.469350050617336, 30.236646290658268 ], [ -95.469240050206636, 30.236648290553578 ], [ -95.468803050761949, 30.236657290316625 ], [ -95.468747050634306, 30.236658290903524 ], [ -95.468475050825106, 30.236651290823708 ], [ -95.468339050330883, 30.23665329034262 ], [ -95.467217049837302, 30.236667290357261 ], [ -95.466427050218371, 30.236673290792023 ], [ -95.464950049132014, 30.236684290715075 ], [ -95.463897049289002, 30.2366922906163 ], [ -95.461772048353836, 30.236708290779418 ], [ -95.461578048424968, 30.236709290953947 ], [ -95.461259048805331, 30.23671329071362 ], [ -95.460811048319258, 30.236719291436813 ], [ -95.460024048180074, 30.236729290608153 ], [ -95.459194048474075, 30.236739290687389 ], [ -95.459028047632174, 30.236741291510263 ], [ -95.458811047805881, 30.236746290982264 ], [ -95.458799048228855, 30.236974290843733 ], [ -95.458751048029868, 30.23763029159441 ], [ -95.458710048029999, 30.238182291602349 ], [ -95.458681048119914, 30.238644291041332 ], [ -95.458549047513259, 30.240058291868156 ], [ -95.45841904759574, 30.24143629169394 ], [ -95.458215047656708, 30.242416292405657 ], [ -95.457955047959103, 30.243383292878228 ], [ -95.457592047950783, 30.244962292783789 ], [ -95.457816047516729, 30.245050292863926 ], [ -95.457874047932663, 30.245104292924232 ], [ -95.457941048000706, 30.245167292860767 ], [ -95.458476048067098, 30.245668292801859 ], [ -95.458674048433181, 30.245749292877115 ], [ -95.458925048018358, 30.245851292926186 ], [ -95.460589049320518, 30.247384293472116 ], [ -95.461011048794347, 30.247590293040254 ], [ -95.462515048853206, 30.247703293331977 ], [ -95.464838049605632, 30.248664293594768 ], [ -95.46536604983514, 30.248823293116214 ], [ -95.466632050821573, 30.248708292988976 ], [ -95.466632050004833, 30.248570292802832 ], [ -95.466790050322743, 30.248456292891824 ], [ -95.467185050231294, 30.247768292606864 ], [ -95.467527050097729, 30.247424292584757 ], [ -95.467949050891946, 30.247172293113547 ], [ -95.468582050429305, 30.247103292620096 ], [ -95.469400051561379, 30.24728529293818 ], [ -95.469427050636583, 30.247423292485049 ], [ -95.470034051216956, 30.247949293302362 ], [ -95.471275051813421, 30.24854429322599 ], [ -95.472442051931196, 30.248782293300543 ], [ -95.473175051782093, 30.248931293024373 ], [ -95.473413052527292, 30.249091293139728 ], [ -95.473703052562158, 30.249412293190645 ], [ -95.473810052567231, 30.250213293072534 ], [ -95.47386305216844, 30.250746293793274 ], [ -95.473867051911654, 30.250785293791264 ], [ -95.474026052709263, 30.251059293409092 ], [ -95.474316052592926, 30.251265293544321 ], [ -95.474691052310263, 30.251343293301808 ], [ -95.475635053159323, 30.251539293899675 ], [ -95.476599053285241, 30.252312293820069 ], [ -95.47706105336195, 30.252683293316757 ], [ -95.477616053424285, 30.253004293834778 ], [ -95.478381053624972, 30.253301293998661 ], [ -95.479094053735651, 30.253438293684603 ], [ -95.480439054427549, 30.253482293515258 ], [ -95.480686054134239, 30.253572293875248 ], [ -95.480941054608294, 30.253665293304405 ], [ -95.481337054556747, 30.253963293696824 ], [ -95.481474054656729, 30.254244294022161 ], [ -95.481549054142079, 30.25439829356138 ], [ -95.481629054136349, 30.255291293817319 ], [ -95.481919054153082, 30.255657294420427 ], [ -95.48255305462358, 30.255840293747966 ], [ -95.48379305465798, 30.256068293996702 ], [ -95.484347055365745, 30.256319294297718 ], [ -95.484876055000967, 30.256754294202711 ], [ -95.484903055818066, 30.257487294082598 ], [ -95.4842450553746, 30.258976294736069 ], [ -95.484193054960258, 30.259732294588112 ], [ -95.484352055736579, 30.260397294785395 ], [ -95.484748055762864, 30.260763294973053 ], [ -95.486279056400065, 30.261174294891976 ], [ -95.486675056214168, 30.261357295535088 ], [ -95.487177056712994, 30.261814295558263 ], [ -95.487547056466354, 30.262363295231882 ], [ -95.488630056673998, 30.26207029530908 ], [ -95.49126505768136, 30.261933295295403 ], [ -95.491296056925407, 30.261927294591917 ], [ -95.491788057481401, 30.261865294809596 ], [ -95.491953057965446, 30.26177329481078 ], [ -95.492164057412069, 30.261604294936959 ], [ -95.492563057370802, 30.2612592949184 ], [ -95.493000057944727, 30.260918294799925 ], [ -95.493175057448141, 30.260777294758363 ], [ -95.494350058343358, 30.259779294284986 ], [ -95.494562058405137, 30.25960829431714 ], [ -95.49531005876031, 30.25897929403089 ], [ -95.495696058705747, 30.25864529433041 ], [ -95.496264058734795, 30.259163294605646 ], [ -95.496378058995219, 30.259262294546335 ], [ -95.496503058269354, 30.259362294360102 ], [ -95.496766058627472, 30.25955329479001 ], [ -95.497050059008245, 30.259739294245467 ], [ -95.499500058971847, 30.261335294166678 ], [ -95.499566059946787, 30.261372294488048 ], [ -95.499731059219329, 30.261443294515495 ], [ -95.499805059525841, 30.261461294347381 ], [ -95.499955059640271, 30.26148429426781 ], [ -95.500151059589712, 30.261492294466155 ], [ -95.501797060312285, 30.261469294442222 ], [ -95.503068060071826, 30.261455294430984 ], [ -95.503035060354051, 30.260197294563589 ], [ -95.503018059966578, 30.258931293829644 ], [ -95.502996060299083, 30.257674293818493 ], [ -95.502974060416207, 30.256408293614108 ], [ -95.5029480598009, 30.255128293390825 ], [ -95.502937059570215, 30.253868292763521 ], [ -95.50292406027954, 30.252547292559615 ], [ -95.501844059607876, 30.251848293022789 ], [ -95.501751059594042, 30.251796292436307 ], [ -95.501645059898365, 30.25176029254057 ], [ -95.50128205978983, 30.251674292532044 ], [ -95.501241059326517, 30.250264292381193 ], [ -95.501215059505654, 30.249465291773976 ], [ -95.501208059404249, 30.24924629225162 ], [ -95.501219059452637, 30.248938292245228 ], [ -95.501249059302836, 30.248699292095434 ], [ -95.501289059777775, 30.248480291661451 ], [ -95.501427058851846, 30.247937291438561 ], [ -95.50149905922062, 30.247615292013592 ], [ -95.501515059700992, 30.247508291917466 ], [ -95.501516058915243, 30.247238291577059 ], [ -95.501513059673783, 30.247157291949584 ], [ -95.503032059699748, 30.247100291776437 ], [ -95.503490059545982, 30.247082291569928 ], [ -95.506840060917, 30.246957291825648 ], [ -95.506869060255966, 30.246039291329879 ], [ -95.506853060928151, 30.244140290857224 ], [ -95.506835060471502, 30.240220290009489 ], [ -95.506833060740334, 30.239257290039561 ], [ -95.506833060593451, 30.23903228974136 ], [ -95.506795060163668, 30.238677289387695 ], [ -95.509424060680217, 30.238622289310953 ], [ -95.516336062750042, 30.238494289603569 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1350, "Tract": "48339692804", "Area_SqMi": 5.6649678930262528, "total_2009": 55, "total_2010": 95, "total_2011": 82, "total_2012": 60, "total_2013": 109, "total_2014": 142, "total_2015": 188, "total_2016": 208, "total_2017": 201, "total_2018": 139, "total_2019": 107, "total_2020": 133, "age1": 28, "age2": 82, "age3": 36, "earn1": 21, "earn2": 56, "earn3": 69, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 4, "naics_s06": 0, "naics_s07": 14, "naics_s08": 2, "naics_s09": 25, "naics_s10": 0, "naics_s11": 0, "naics_s12": 11, "naics_s13": 0, "naics_s14": 0, "naics_s15": 8, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 5, "naics_s20": 49, "race1": 117, "race2": 13, "race3": 6, "race4": 7, "race5": 0, "race6": 3, "ethnicity1": 123, "ethnicity2": 23, "edu1": 20, "edu2": 22, "edu3": 56, "edu4": 20, "Shape_Length": 54792.423476606622, "Shape_Area": 157929609.16812286, "total_2021": 145, "total_2022": 146 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.203314979310804, 30.173030287043993 ], [ -95.203172979055807, 30.172961287266695 ], [ -95.203035979099951, 30.172912286984051 ], [ -95.202939978743188, 30.172871286909611 ], [ -95.202844978925384, 30.172838287482623 ], [ -95.200383978698511, 30.17286828732562 ], [ -95.2002059781518, 30.172868287199059 ], [ -95.196264977630918, 30.172886287629233 ], [ -95.193322976850141, 30.172825287374494 ], [ -95.193084977110601, 30.172822287876656 ], [ -95.190653976497657, 30.172794287195039 ], [ -95.187490974785632, 30.172803287982084 ], [ -95.186818975388988, 30.172806287554597 ], [ -95.184114974000039, 30.172826288152194 ], [ -95.182257974041832, 30.172825288198233 ], [ -95.181664974076526, 30.172825287467877 ], [ -95.18056997301133, 30.172836287819944 ], [ -95.180441973199336, 30.172837288238266 ], [ -95.179836972863455, 30.172806287914298 ], [ -95.1797239728336, 30.172800287944384 ], [ -95.178941973505346, 30.17274228824057 ], [ -95.178147972705105, 30.172720287492499 ], [ -95.177805972540156, 30.172722287556596 ], [ -95.177506972871356, 30.172723287987377 ], [ -95.176482972633494, 30.172755287780177 ], [ -95.176226971870193, 30.17272328839201 ], [ -95.175886972561585, 30.172628288057567 ], [ -95.175037972037273, 30.172296288358439 ], [ -95.174506971980236, 30.172157288060241 ], [ -95.173842971674929, 30.172014287945736 ], [ -95.173750971384081, 30.171995288018049 ], [ -95.172712970995462, 30.171850287697684 ], [ -95.172469970873294, 30.171807288179302 ], [ -95.17212097112855, 30.171742287641983 ], [ -95.171545971202988, 30.171652287875425 ], [ -95.170929971088199, 30.171565287897007 ], [ -95.170480970763947, 30.171536288192137 ], [ -95.16991197030022, 30.171550287659489 ], [ -95.169443970507089, 30.171611287693054 ], [ -95.169127970358034, 30.171671287662072 ], [ -95.16858697056054, 30.171840287795781 ], [ -95.168032970384999, 30.172082287866235 ], [ -95.167446970044892, 30.172440288313858 ], [ -95.16722197037322, 30.172634288247114 ], [ -95.167091970541719, 30.172743288613091 ], [ -95.166700970281468, 30.173164288509117 ], [ -95.166257970145622, 30.173804288163105 ], [ -95.165921969355139, 30.174460288315572 ], [ -95.165353969878481, 30.175486289099787 ], [ -95.165150969850259, 30.175877288604237 ], [ -95.164770969771936, 30.176609289646692 ], [ -95.164153969849565, 30.177722289725491 ], [ -95.16369196891381, 30.1785672898021 ], [ -95.163546969031501, 30.178832289228172 ], [ -95.163248969821453, 30.17925628985358 ], [ -95.16291896898467, 30.179709289919504 ], [ -95.162859969758998, 30.179789289839562 ], [ -95.162503968820218, 30.180208289865043 ], [ -95.161997969027155, 30.180750289984701 ], [ -95.161695969140453, 30.18104929028453 ], [ -95.161501969209141, 30.181242290385473 ], [ -95.161060969002676, 30.181606289945186 ], [ -95.160633968493016, 30.181927290261832 ], [ -95.160215968580076, 30.182209290789519 ], [ -95.159117968632984, 30.18280529110125 ], [ -95.158610968687114, 30.183014290536924 ], [ -95.157994967773945, 30.183244290498831 ], [ -95.156712967689856, 30.183625291281114 ], [ -95.156116967532057, 30.183784290621357 ], [ -95.155857967855781, 30.183851290608875 ], [ -95.154569967122555, 30.184241290964863 ], [ -95.154363966996002, 30.184304291430294 ], [ -95.153811967437349, 30.184453291014385 ], [ -95.152646966658239, 30.184813291041124 ], [ -95.151882966962063, 30.185033291735248 ], [ -95.151092966599236, 30.185261291490928 ], [ -95.149857966581024, 30.185605291839874 ], [ -95.148586965513047, 30.185987291255952 ], [ -95.147900966031614, 30.18618229175323 ], [ -95.146871965456143, 30.186480291807399 ], [ -95.146217965480062, 30.186684291805964 ], [ -95.145941964957345, 30.186761292304904 ], [ -95.145763965307552, 30.186803292365529 ], [ -95.145597965327667, 30.186815291761103 ], [ -95.145411965050826, 30.186801292157071 ], [ -95.145220965278426, 30.186774291708801 ], [ -95.144599965389489, 30.186643291977539 ], [ -95.144466965003488, 30.187069291662581 ], [ -95.144428965264296, 30.187191291699712 ], [ -95.144382964921689, 30.187325291674298 ], [ -95.144262964853098, 30.187602292355571 ], [ -95.144201965347136, 30.187716292579658 ], [ -95.144130964779436, 30.18782629206714 ], [ -95.14403696484149, 30.187948292221222 ], [ -95.144025964548533, 30.187964292219029 ], [ -95.143755965260084, 30.188358292359098 ], [ -95.143621964858824, 30.188544292130143 ], [ -95.143239964891308, 30.189108292923326 ], [ -95.142988964488268, 30.189466292902125 ], [ -95.142806964646368, 30.189734292755315 ], [ -95.142762964567538, 30.189815292617237 ], [ -95.142735964122267, 30.189864292855692 ], [ -95.142647965054891, 30.190065292479822 ], [ -95.142610964501245, 30.190162292720611 ], [ -95.142597964256325, 30.190195292386253 ], [ -95.142557964591603, 30.190318292344788 ], [ -95.142406964691872, 30.190889292645014 ], [ -95.142321964482377, 30.191230292630916 ], [ -95.141543964233747, 30.193907293452188 ], [ -95.141032964026707, 30.195651293743602 ], [ -95.140902964008887, 30.196097294296848 ], [ -95.140754964308684, 30.196665293781447 ], [ -95.140392964160426, 30.197879294384268 ], [ -95.140181963957446, 30.198583294863727 ], [ -95.140139964455656, 30.198726294661576 ], [ -95.139998964388781, 30.199199294374093 ], [ -95.139944963801142, 30.199368294561459 ], [ -95.139905963941771, 30.199524294479886 ], [ -95.139849964501195, 30.199776294989501 ], [ -95.139842963847713, 30.199816294449086 ], [ -95.139804964491148, 30.200030295157518 ], [ -95.139770963833527, 30.200312294855614 ], [ -95.139741963814956, 30.200634295192483 ], [ -95.139624964690611, 30.205277296263056 ], [ -95.150421967082423, 30.205168295073893 ], [ -95.151518967077223, 30.205146295037142 ], [ -95.152733967686856, 30.20512129580683 ], [ -95.157581968630154, 30.20506429514149 ], [ -95.157771969114293, 30.205048295427879 ], [ -95.157869968820933, 30.205023295277098 ], [ -95.159472969712354, 30.204381295387272 ], [ -95.159591969919404, 30.204329295081244 ], [ -95.159788969615548, 30.204274295092571 ], [ -95.159891969856574, 30.204258294976782 ], [ -95.160112969497888, 30.2042482949483 ], [ -95.160230970163013, 30.204251294875281 ], [ -95.162315969872168, 30.204228294621846 ], [ -95.175213973068608, 30.20411929460926 ], [ -95.175989974292264, 30.204112294351091 ], [ -95.181216975247196, 30.204064294574753 ], [ -95.181360975383058, 30.20406829432747 ], [ -95.181452974774174, 30.20407129431721 ], [ -95.181582975307009, 30.204083294198597 ], [ -95.181704974944054, 30.204147294368703 ], [ -95.181953975431966, 30.204218294335568 ], [ -95.182305975148083, 30.204319294313361 ], [ -95.182389974958141, 30.204197294191438 ], [ -95.182423975784673, 30.204149293986205 ], [ -95.18312897600677, 30.203079294173449 ], [ -95.183358975815878, 30.202749293775007 ], [ -95.183490976039494, 30.202572293797633 ], [ -95.184650976222585, 30.2008412933044 ], [ -95.184956975626704, 30.200379293214969 ], [ -95.185540976109579, 30.199430293094739 ], [ -95.18615197623933, 30.198515292754191 ], [ -95.187846976098101, 30.196071292754844 ], [ -95.18872997622222, 30.194753291665002 ], [ -95.189160976973056, 30.194069291760353 ], [ -95.19021397669006, 30.192523291439944 ], [ -95.191152977132077, 30.191146291327161 ], [ -95.191278976870436, 30.190963291333283 ], [ -95.191600976748731, 30.190497290813486 ], [ -95.191722977217808, 30.190321291327368 ], [ -95.19206497712527, 30.189801291334298 ], [ -95.192096976760141, 30.189753290708087 ], [ -95.192208977196955, 30.189568290745282 ], [ -95.193007977597375, 30.188247290570615 ], [ -95.19333597712523, 30.187744290190363 ], [ -95.19388297719911, 30.186948289890317 ], [ -95.195270978260822, 30.184927289531608 ], [ -95.195777978052874, 30.184215289699289 ], [ -95.197819978018757, 30.181159288729265 ], [ -95.198680978547188, 30.179901288407478 ], [ -95.199991978864887, 30.178002288210077 ], [ -95.200349978484908, 30.177494287985024 ], [ -95.200639978628047, 30.177067287600682 ], [ -95.201016978508378, 30.176436287965732 ], [ -95.201122978538308, 30.176278287678674 ], [ -95.201587978738473, 30.17560328802627 ], [ -95.201946979408106, 30.175036287640697 ], [ -95.20307397951828, 30.173383287152134 ], [ -95.203314979310804, 30.173030287043993 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1351, "Tract": "48339693201", "Area_SqMi": 6.1129335547659753, "total_2009": 161, "total_2010": 175, "total_2011": 136, "total_2012": 125, "total_2013": 137, "total_2014": 164, "total_2015": 192, "total_2016": 154, "total_2017": 166, "total_2018": 180, "total_2019": 197, "total_2020": 247, "age1": 48, "age2": 151, "age3": 73, "earn1": 53, "earn2": 85, "earn3": 134, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 34, "naics_s06": 1, "naics_s07": 17, "naics_s08": 24, "naics_s09": 3, "naics_s10": 0, "naics_s11": 20, "naics_s12": 5, "naics_s13": 0, "naics_s14": 91, "naics_s15": 8, "naics_s16": 7, "naics_s17": 1, "naics_s18": 0, "naics_s19": 16, "naics_s20": 0, "race1": 237, "race2": 18, "race3": 1, "race4": 13, "race5": 0, "race6": 3, "ethnicity1": 201, "ethnicity2": 71, "edu1": 53, "edu2": 59, "edu3": 64, "edu4": 48, "Shape_Length": 70030.008673999531, "Shape_Area": 170418125.11653373, "total_2021": 297, "total_2022": 272 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.457531049053472, 30.279462299362798 ], [ -95.457493049132353, 30.279350299914519 ], [ -95.457352049544852, 30.278928300093174 ], [ -95.45706404911995, 30.277686299040226 ], [ -95.456944049491, 30.276768299214179 ], [ -95.456926049567812, 30.276687299456739 ], [ -95.456884049751167, 30.276412298942201 ], [ -95.45681604893015, 30.275519299342569 ], [ -95.456802048698563, 30.275086299056756 ], [ -95.45682604907114, 30.273912298924873 ], [ -95.456901049065337, 30.272708298384799 ], [ -95.456892048630792, 30.272160297927332 ], [ -95.456858048671037, 30.270619297661185 ], [ -95.456901048939855, 30.269768297504719 ], [ -95.456965048425388, 30.265388297065531 ], [ -95.456675048692873, 30.265393296621482 ], [ -95.45636304821106, 30.265393297260367 ], [ -95.456217048626016, 30.26539329691148 ], [ -95.456073048936943, 30.265392296730923 ], [ -95.455917048237239, 30.265391297383079 ], [ -95.455355048464753, 30.265389297267948 ], [ -95.45156604698046, 30.265359297342044 ], [ -95.450311046616491, 30.265300296725385 ], [ -95.448962046568283, 30.265260296978401 ], [ -95.448366047006459, 30.265293297387377 ], [ -95.447715046692394, 30.265436296930528 ], [ -95.446335046189489, 30.265890297507749 ], [ -95.444111045942137, 30.266692297918123 ], [ -95.44395504590733, 30.266751297336739 ], [ -95.443648045660197, 30.266881298043284 ], [ -95.443196045037695, 30.26709229816278 ], [ -95.443047045194021, 30.267165297550111 ], [ -95.442900044892767, 30.267243297908646 ], [ -95.442619045673823, 30.267401297600852 ], [ -95.442259045299991, 30.267628297848052 ], [ -95.442026044692341, 30.267792297694552 ], [ -95.441837045406203, 30.267908297569697 ], [ -95.44168904524463, 30.268045298160569 ], [ -95.441580044697872, 30.268133297862917 ], [ -95.441388045103949, 30.268298297700785 ], [ -95.44086904447029, 30.268639298156085 ], [ -95.440354044418953, 30.268992298035432 ], [ -95.440155044759962, 30.269107298493381 ], [ -95.439914044462071, 30.269227298371757 ], [ -95.439665044652855, 30.269334298164953 ], [ -95.439274044359706, 30.269461298000092 ], [ -95.437303043463046, 30.269937298700398 ], [ -95.435537043929799, 30.270372298431734 ], [ -95.431614042781703, 30.271327299460818 ], [ -95.430534042131868, 30.267961298118209 ], [ -95.429677041925402, 30.265291298287714 ], [ -95.429397042100561, 30.264416297473584 ], [ -95.427975041511957, 30.259960296675711 ], [ -95.425123040384349, 30.251044295345235 ], [ -95.424221039170675, 30.251262295267765 ], [ -95.42357003945493, 30.251297294988124 ], [ -95.421481039133084, 30.251065295532999 ], [ -95.421362038596968, 30.25060829481356 ], [ -95.420989038542444, 30.250227295346537 ], [ -95.420804038913417, 30.249952295444601 ], [ -95.420778038909177, 30.249769295474298 ], [ -95.42059303860907, 30.249494295173022 ], [ -95.420039038146882, 30.249266295006606 ], [ -95.419748038854479, 30.249105294762305 ], [ -95.419774038610612, 30.24848729489349 ], [ -95.419695038024102, 30.248418295068358 ], [ -95.419668038771306, 30.24800629444572 ], [ -95.419800038405, 30.24784529473154 ], [ -95.420328038803888, 30.247616294883667 ], [ -95.420433038809776, 30.247387294702513 ], [ -95.420327038360725, 30.247112294340432 ], [ -95.419905038402831, 30.246586294274525 ], [ -95.419957037930971, 30.246105294781358 ], [ -95.420276038511588, 30.245920293950903 ], [ -95.420907038570874, 30.245554294293751 ], [ -95.421303038919561, 30.245485294326766 ], [ -95.422200039192887, 30.245622294131099 ], [ -95.422885039557698, 30.245278294385653 ], [ -95.423123038750447, 30.244912294299457 ], [ -95.423175039070998, 30.243812294114832 ], [ -95.42309503917609, 30.24353729402522 ], [ -95.422778039193162, 30.243171293969702 ], [ -95.422856039062736, 30.241727293791168 ], [ -95.422854038597549, 30.241701293778991 ], [ -95.42169203807147, 30.241993293732691 ], [ -95.42143403884937, 30.242058293593381 ], [ -95.420518038128932, 30.242295293942849 ], [ -95.419863038335407, 30.24244829360639 ], [ -95.419202038155689, 30.242607293738537 ], [ -95.416659037719754, 30.24322129370379 ], [ -95.415755037224116, 30.243444293966043 ], [ -95.415072037296568, 30.24366829402279 ], [ -95.4149810369547, 30.243693293814665 ], [ -95.414887036458055, 30.243710294224549 ], [ -95.414752036413063, 30.243731293971528 ], [ -95.41465803681406, 30.243745294334026 ], [ -95.413851036887834, 30.243867294553446 ], [ -95.410132035588489, 30.244763294026324 ], [ -95.410163036008356, 30.245895294958341 ], [ -95.410317035570969, 30.246609294918525 ], [ -95.410551036322673, 30.247600295150477 ], [ -95.40847703570887, 30.248059295518519 ], [ -95.403657034377957, 30.249225295422441 ], [ -95.400459033207085, 30.249999295524486 ], [ -95.394473031539249, 30.251440296646706 ], [ -95.396235032797705, 30.252997296356778 ], [ -95.39691903314592, 30.253832296360308 ], [ -95.397574033158904, 30.254779296644525 ], [ -95.399553033219291, 30.257752297725006 ], [ -95.399732033213084, 30.25802129770128 ], [ -95.400233033952617, 30.258773297458497 ], [ -95.400301033511212, 30.258869297919244 ], [ -95.40392503503449, 30.264021298633338 ], [ -95.404376034908992, 30.264567299083826 ], [ -95.405346035362356, 30.265427298464353 ], [ -95.408273036477084, 30.267656298842461 ], [ -95.41000903665271, 30.269058299479131 ], [ -95.410682037565223, 30.269638299289571 ], [ -95.411839037822162, 30.270637299887579 ], [ -95.413420038003764, 30.272002299396796 ], [ -95.413950037726536, 30.27245929954881 ], [ -95.415079038262988, 30.273432300272866 ], [ -95.415722038656611, 30.273988300603285 ], [ -95.416723039058368, 30.274992299949307 ], [ -95.416854038725447, 30.275146300780193 ], [ -95.416999039326313, 30.275318300376753 ], [ -95.417901039208317, 30.27652530069474 ], [ -95.419278039408312, 30.278391300783227 ], [ -95.420405040357522, 30.279901301493922 ], [ -95.420602040156112, 30.280164301382726 ], [ -95.421178039778269, 30.28094330164836 ], [ -95.421919040413869, 30.281946301243423 ], [ -95.422308040677393, 30.282454301522208 ], [ -95.422558040897101, 30.282794302127641 ], [ -95.422797041230837, 30.283136301484188 ], [ -95.42303104051264, 30.283480301904738 ], [ -95.423257041216772, 30.283830302149894 ], [ -95.423477041294944, 30.284180302349032 ], [ -95.423690041225044, 30.284538301777616 ], [ -95.423792041556169, 30.284721302164186 ], [ -95.424666041616803, 30.28629430206173 ], [ -95.424988041458477, 30.286858302341518 ], [ -95.425131041603052, 30.287108302142201 ], [ -95.425407042128896, 30.287592302863835 ], [ -95.425665042030118, 30.288042302606417 ], [ -95.426847042629106, 30.290175303327977 ], [ -95.42767304259354, 30.291658303304516 ], [ -95.42904004272809, 30.294087303785204 ], [ -95.429182043001916, 30.294352304016964 ], [ -95.429320043484879, 30.29462530409447 ], [ -95.429581043264818, 30.295174303951356 ], [ -95.429700042665743, 30.295450304256953 ], [ -95.429929043458941, 30.296009303834413 ], [ -95.431239043872722, 30.295744303661259 ], [ -95.43382004386676, 30.295218304260143 ], [ -95.43633904467913, 30.294704303957442 ], [ -95.438258045739587, 30.294304303353425 ], [ -95.43935004546546, 30.294041303528161 ], [ -95.440262045488055, 30.29381730290428 ], [ -95.441001045790188, 30.293631303247967 ], [ -95.44258004647206, 30.293213302836257 ], [ -95.442796046286915, 30.293151303324965 ], [ -95.443970046919688, 30.292819303090667 ], [ -95.444500046846713, 30.292670303332219 ], [ -95.445404047412964, 30.292407303229002 ], [ -95.446409047176346, 30.292112302581398 ], [ -95.447720047839098, 30.291775302967565 ], [ -95.448504047435819, 30.291579302784061 ], [ -95.449423047735053, 30.291347302405129 ], [ -95.45047604787915, 30.291086302107612 ], [ -95.452756049303233, 30.290524301785783 ], [ -95.454153048971691, 30.290192302441628 ], [ -95.454974049439599, 30.289984302021519 ], [ -95.455746049549731, 30.289789301854039 ], [ -95.455927049157538, 30.289761301871327 ], [ -95.455991049170237, 30.287212301778425 ], [ -95.455991049285515, 30.284535301169882 ], [ -95.455992049651556, 30.283573300473844 ], [ -95.455993048960522, 30.281399299993883 ], [ -95.45598004934935, 30.280851300033675 ], [ -95.455980049280825, 30.28082930035848 ], [ -95.455987049225556, 30.280107300019182 ], [ -95.456312049279163, 30.279970300293616 ], [ -95.456944049070103, 30.279688300244928 ], [ -95.457288049464097, 30.279547300005706 ], [ -95.457531049053472, 30.279462299362798 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1352, "Tract": "48339690502", "Area_SqMi": 6.4300509491978586, "total_2009": 175, "total_2010": 292, "total_2011": 308, "total_2012": 164, "total_2013": 190, "total_2014": 273, "total_2015": 349, "total_2016": 428, "total_2017": 455, "total_2018": 850, "total_2019": 1075, "total_2020": 495, "age1": 242, "age2": 400, "age3": 120, "earn1": 132, "earn2": 208, "earn3": 422, "naics_s01": 0, "naics_s02": 144, "naics_s03": 0, "naics_s04": 139, "naics_s05": 6, "naics_s06": 36, "naics_s07": 67, "naics_s08": 22, "naics_s09": 33, "naics_s10": 5, "naics_s11": 3, "naics_s12": 53, "naics_s13": 0, "naics_s14": 60, "naics_s15": 16, "naics_s16": 113, "naics_s17": 3, "naics_s18": 7, "naics_s19": 55, "naics_s20": 0, "race1": 632, "race2": 88, "race3": 9, "race4": 19, "race5": 0, "race6": 14, "ethnicity1": 569, "ethnicity2": 193, "edu1": 96, "edu2": 137, "edu3": 173, "edu4": 114, "Shape_Length": 76759.710424005156, "Shape_Area": 179258815.32144973, "total_2021": 503, "total_2022": 762 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.548590071042284, 30.246300290063179 ], [ -95.548577070973437, 30.245859289410809 ], [ -95.5485430712435, 30.244713289190138 ], [ -95.548140071291442, 30.244724289339 ], [ -95.547521070846642, 30.244733289187984 ], [ -95.545525070791129, 30.244732289695438 ], [ -95.544016070199163, 30.244737290143611 ], [ -95.5439730701804, 30.242628288852213 ], [ -95.54351906967608, 30.242422288898762 ], [ -95.54328506955963, 30.242183289362032 ], [ -95.543071069633612, 30.241964288982437 ], [ -95.542755069461876, 30.241482289147353 ], [ -95.54230606947651, 30.241162289260728 ], [ -95.541997069434558, 30.241208288905693 ], [ -95.541858069710514, 30.241230289052663 ], [ -95.541198069216961, 30.241573288992132 ], [ -95.540882068958965, 30.241619289510666 ], [ -95.540460069448528, 30.241275288907477 ], [ -95.538640068120301, 30.240404289152007 ], [ -95.538323068508049, 30.240358288670087 ], [ -95.537849067836405, 30.240289288968505 ], [ -95.53724306774042, 30.239716289109708 ], [ -95.536425067674415, 30.239693289078524 ], [ -95.53624006767447, 30.239532288634582 ], [ -95.536135068136872, 30.239326289060056 ], [ -95.535924068136296, 30.239166288873147 ], [ -95.535851068021543, 30.239149289004303 ], [ -95.535528067982099, 30.239074288840442 ], [ -95.535317067662263, 30.238867288558897 ], [ -95.535054067707236, 30.238386288692887 ], [ -95.534875067109468, 30.238324288643273 ], [ -95.534944067457786, 30.23823828863927 ], [ -95.534995067366168, 30.238162288692784 ], [ -95.535107067159657, 30.237969288507784 ], [ -95.535388067251148, 30.237435288340283 ], [ -95.536432067378811, 30.23523628835132 ], [ -95.537723067841327, 30.232549287708988 ], [ -95.538059068317196, 30.231851287102405 ], [ -95.538512068115395, 30.230866287027322 ], [ -95.539973068296163, 30.227823286371521 ], [ -95.540838068579816, 30.225989286094336 ], [ -95.54106806880381, 30.225530286152214 ], [ -95.541397068833831, 30.224826285412153 ], [ -95.541558068102688, 30.224461285721741 ], [ -95.535822066616944, 30.225351285634392 ], [ -95.530327066059513, 30.226211286124538 ], [ -95.528370064855238, 30.22651228619624 ], [ -95.527724064802058, 30.226621287035911 ], [ -95.527376064637309, 30.226679286584968 ], [ -95.526053064720543, 30.226912286462248 ], [ -95.524437064412012, 30.227197286614548 ], [ -95.522538064084159, 30.227571286673403 ], [ -95.521215063556681, 30.227832286850198 ], [ -95.518764062328941, 30.228305287089338 ], [ -95.516950062477761, 30.228655287349039 ], [ -95.516383061894103, 30.228765287090859 ], [ -95.516336062750042, 30.238494289603569 ], [ -95.509424060680217, 30.238622289310953 ], [ -95.506795060163668, 30.238677289387695 ], [ -95.506833060593451, 30.23903228974136 ], [ -95.506833060740334, 30.239257290039561 ], [ -95.506835060471502, 30.240220290009489 ], [ -95.506853060928151, 30.244140290857224 ], [ -95.506869060255966, 30.246039291329879 ], [ -95.506840060917, 30.246957291825648 ], [ -95.503490059545982, 30.247082291569928 ], [ -95.503032059699748, 30.247100291776437 ], [ -95.501513059673783, 30.247157291949584 ], [ -95.501516058915243, 30.247238291577059 ], [ -95.501515059700992, 30.247508291917466 ], [ -95.50149905922062, 30.247615292013592 ], [ -95.501427058851846, 30.247937291438561 ], [ -95.501289059777775, 30.248480291661451 ], [ -95.501249059302836, 30.248699292095434 ], [ -95.501219059452637, 30.248938292245228 ], [ -95.501208059404249, 30.24924629225162 ], [ -95.501215059505654, 30.249465291773976 ], [ -95.501241059326517, 30.250264292381193 ], [ -95.50128205978983, 30.251674292532044 ], [ -95.501645059898365, 30.25176029254057 ], [ -95.501751059594042, 30.251796292436307 ], [ -95.501844059607876, 30.251848293022789 ], [ -95.50292406027954, 30.252547292559615 ], [ -95.502937059570215, 30.253868292763521 ], [ -95.5029480598009, 30.255128293390825 ], [ -95.502974060416207, 30.256408293614108 ], [ -95.502996060299083, 30.257674293818493 ], [ -95.503018059966578, 30.258931293829644 ], [ -95.503035060354051, 30.260197294563589 ], [ -95.503068060071826, 30.261455294430984 ], [ -95.501797060312285, 30.261469294442222 ], [ -95.500151059589712, 30.261492294466155 ], [ -95.499955059640271, 30.26148429426781 ], [ -95.499805059525841, 30.261461294347381 ], [ -95.499731059219329, 30.261443294515495 ], [ -95.499566059946787, 30.261372294488048 ], [ -95.499500058971847, 30.261335294166678 ], [ -95.497050059008245, 30.259739294245467 ], [ -95.496766058627472, 30.25955329479001 ], [ -95.496503058269354, 30.259362294360102 ], [ -95.496378058995219, 30.259262294546335 ], [ -95.496264058734795, 30.259163294605646 ], [ -95.495696058705747, 30.25864529433041 ], [ -95.49531005876031, 30.25897929403089 ], [ -95.494562058405137, 30.25960829431714 ], [ -95.494350058343358, 30.259779294284986 ], [ -95.493175057448141, 30.260777294758363 ], [ -95.493000057944727, 30.260918294799925 ], [ -95.492563057370802, 30.2612592949184 ], [ -95.492164057412069, 30.261604294936959 ], [ -95.491953057965446, 30.26177329481078 ], [ -95.491788057481401, 30.261865294809596 ], [ -95.491296056925407, 30.261927294591917 ], [ -95.49126505768136, 30.261933295295403 ], [ -95.488630056673998, 30.26207029530908 ], [ -95.487547056466354, 30.262363295231882 ], [ -95.487732056641178, 30.262638295030253 ], [ -95.487786056924108, 30.263348295123752 ], [ -95.487971056251823, 30.264104296006533 ], [ -95.488209056991053, 30.264447295774787 ], [ -95.489002056630085, 30.265065295632787 ], [ -95.489636056737851, 30.266050295607606 ], [ -95.490085057286393, 30.266507295913659 ], [ -95.491221058028813, 30.267102296030412 ], [ -95.492197057766688, 30.267238296051552 ], [ -95.492540057931222, 30.267421295720631 ], [ -95.493042057609358, 30.267879296401155 ], [ -95.493649058464413, 30.267901295744121 ], [ -95.494124058352043, 30.267878295913242 ], [ -95.495470058552328, 30.267945295733576 ], [ -95.495892058949778, 30.268059295814286 ], [ -95.496446058588347, 30.267944296348855 ], [ -95.497237059579518, 30.267509295699174 ], [ -95.497528059396899, 30.267417295975378 ], [ -95.498029059348738, 30.267462295605956 ], [ -95.498478059371607, 30.267897295822188 ], [ -95.49911205960646, 30.268079295661202 ], [ -95.499984060287787, 30.268880295729041 ], [ -95.500221059970571, 30.268903295853271 ], [ -95.500989060554531, 30.269402296491975 ], [ -95.50122606036517, 30.26974629638131 ], [ -95.501463060740278, 30.269861296620682 ], [ -95.501832060272392, 30.269930296325519 ], [ -95.502175060741749, 30.270228296708442 ], [ -95.502386060853169, 30.270755296103477 ], [ -95.502676060747078, 30.270984296684766 ], [ -95.503942061455547, 30.271398296079621 ], [ -95.504179061180736, 30.27171929698406 ], [ -95.504337060894287, 30.272314297104735 ], [ -95.504521060870999, 30.272475296640948 ], [ -95.504996061492548, 30.272567296626413 ], [ -95.505576061105828, 30.272842296853526 ], [ -95.505867062077272, 30.272843296566819 ], [ -95.506105061398429, 30.272499297072059 ], [ -95.506342062019542, 30.272362296583648 ], [ -95.50708106218579, 30.272294296933971 ], [ -95.507398062232923, 30.272363296200126 ], [ -95.508163062591834, 30.27268429670513 ], [ -95.508875062634772, 30.272754296536903 ], [ -95.509403062996952, 30.272571296361896 ], [ -95.51009006240642, 30.271861296242442 ], [ -95.510513063034978, 30.271541295878656 ], [ -95.5109880623706, 30.27101529644894 ], [ -95.511358062953832, 30.270763296032506 ], [ -95.511991063124611, 30.270741296419462 ], [ -95.512255063293921, 30.270855296016791 ], [ -95.512545063577349, 30.271268295989309 ], [ -95.512861063799804, 30.271452295833242 ], [ -95.513310063764749, 30.27152129610343 ], [ -95.513547063659601, 30.271704296163406 ], [ -95.513890063101996, 30.271796296330862 ], [ -95.514655063557086, 30.271819295862631 ], [ -95.514756064300911, 30.271860296553012 ], [ -95.515104063847104, 30.272003295892695 ], [ -95.515526063972587, 30.272393295880338 ], [ -95.515842063723838, 30.272897296520828 ], [ -95.516236064145843, 30.274134296185132 ], [ -95.51684306402835, 30.274776297065873 ], [ -95.517106064180453, 30.274868296496358 ], [ -95.517423065172409, 30.274868296357099 ], [ -95.517661064275288, 30.274639296785157 ], [ -95.518004064636401, 30.274594296399151 ], [ -95.518584064993632, 30.27477729701117 ], [ -95.518822064835831, 30.274617297010266 ], [ -95.518928064964101, 30.274411296322182 ], [ -95.519008065009231, 30.27367829625944 ], [ -95.519219064668476, 30.273426296339441 ], [ -95.520037065634739, 30.273221296553743 ], [ -95.52027506524351, 30.272992296074214 ], [ -95.520539065452525, 30.272465296031235 ], [ -95.520593065262787, 30.271893296156755 ], [ -95.520382064955655, 30.271549295690793 ], [ -95.520382065443641, 30.271114295601283 ], [ -95.520911065484299, 30.270565295390295 ], [ -95.520937065304295, 30.270336295729276 ], [ -95.520832065465626, 30.270198295912166 ], [ -95.519724065328859, 30.270197295626701 ], [ -95.519539064584933, 30.270106295651907 ], [ -95.519619065139722, 30.269716295357664 ], [ -95.519988064608697, 30.269579295922359 ], [ -95.520173064760797, 30.269419295971876 ], [ -95.520226064980804, 30.269098295205673 ], [ -95.520385065231991, 30.268755295254842 ], [ -95.520675065256029, 30.268572294905962 ], [ -95.52117706484384, 30.268549295274326 ], [ -95.522338065963012, 30.268459295030983 ], [ -95.523182066122232, 30.268459295361517 ], [ -95.523578065872783, 30.268895295458716 ], [ -95.523524065741682, 30.269330295307871 ], [ -95.523366066297882, 30.269696295813869 ], [ -95.5234710658804, 30.269971295967277 ], [ -95.523946065982599, 30.270017295420093 ], [ -95.524236066072731, 30.269903295485321 ], [ -95.524949066036172, 30.269354295226741 ], [ -95.525399066632772, 30.268484294866511 ], [ -95.525980066759146, 30.26807229505151 ], [ -95.526192066458449, 30.26713329459286 ], [ -95.526403066682391, 30.266744294617943 ], [ -95.527671066349654, 30.265783294186491 ], [ -95.528410067138509, 30.26537129433207 ], [ -95.529651067613457, 30.264891294412742 ], [ -95.530153067754043, 30.264319294528001 ], [ -95.530786067256457, 30.264113294146021 ], [ -95.531182067296768, 30.263792293899424 ], [ -95.531862067665415, 30.263542293610605 ], [ -95.532053068361662, 30.26347229434705 ], [ -95.532555068227239, 30.263015294144051 ], [ -95.533426068327074, 30.262557293408378 ], [ -95.534007068288616, 30.262489294073106 ], [ -95.534904069028144, 30.262925293888127 ], [ -95.535299068225797, 30.262902293493482 ], [ -95.535722069157615, 30.262536293801208 ], [ -95.535907069277229, 30.262192293398311 ], [ -95.536435069404831, 30.262101293838057 ], [ -95.536646068908553, 30.262170293895988 ], [ -95.537041069574869, 30.262674293891237 ], [ -95.537120068867949, 30.263018293398726 ], [ -95.537621069346159, 30.263270293262277 ], [ -95.537832069587353, 30.2634762936156 ], [ -95.537832069045294, 30.263660293491174 ], [ -95.537357069000436, 30.263865294205466 ], [ -95.537356069762083, 30.264072293875575 ], [ -95.538095069675734, 30.264164293517922 ], [ -95.53867506970316, 30.264439293796119 ], [ -95.538887069774916, 30.264439293574409 ], [ -95.539546070309726, 30.264760293475689 ], [ -95.539968070108657, 30.264783293773938 ], [ -95.540707070625416, 30.264669293409135 ], [ -95.541261070560239, 30.264372293796203 ], [ -95.542370070423644, 30.264075293484787 ], [ -95.542819070375856, 30.263800293383703 ], [ -95.542793070837689, 30.262907293566094 ], [ -95.542899070312316, 30.262678293276121 ], [ -95.544324071052699, 30.26219829308641 ], [ -95.544456071006749, 30.262060293516804 ], [ -95.544456070729495, 30.261763292706028 ], [ -95.544668071164651, 30.261557293481999 ], [ -95.544960071586686, 30.261534292868081 ], [ -95.545248071408125, 30.261511292790033 ], [ -95.545538071212263, 30.26162629307824 ], [ -95.545409071264189, 30.258144292317269 ], [ -95.544904070829233, 30.24637129007748 ], [ -95.548590071042284, 30.246300290063179 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1353, "Tract": "48339693302", "Area_SqMi": 1.2021017451748808, "total_2009": 415, "total_2010": 387, "total_2011": 412, "total_2012": 327, "total_2013": 452, "total_2014": 533, "total_2015": 532, "total_2016": 548, "total_2017": 390, "total_2018": 864, "total_2019": 850, "total_2020": 801, "age1": 195, "age2": 483, "age3": 227, "earn1": 52, "earn2": 164, "earn3": 689, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 84, "naics_s06": 0, "naics_s07": 371, "naics_s08": 13, "naics_s09": 128, "naics_s10": 0, "naics_s11": 16, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 282, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 751, "race2": 105, "race3": 6, "race4": 27, "race5": 2, "race6": 14, "ethnicity1": 701, "ethnicity2": 204, "edu1": 112, "edu2": 215, "edu3": 243, "edu4": 140, "Shape_Length": 24171.783296704391, "Shape_Area": 33512539.237776671, "total_2021": 881, "total_2022": 905 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.485726057853867, 30.30892430446967 ], [ -95.485737057762407, 30.308710304386707 ], [ -95.484247057338905, 30.304487304123942 ], [ -95.484079057281207, 30.303671304144025 ], [ -95.483827057795438, 30.302751304010332 ], [ -95.483708057439912, 30.302232303712554 ], [ -95.483587056914658, 30.30176630307902 ], [ -95.483381057460079, 30.300929303478757 ], [ -95.483213056766886, 30.2998953027972 ], [ -95.483157056791882, 30.299753303309284 ], [ -95.483271056836742, 30.29889230238857 ], [ -95.481828055949833, 30.294656302153744 ], [ -95.481784056685584, 30.294526301934198 ], [ -95.481383055779119, 30.293350302034977 ], [ -95.480936056587183, 30.292036301860335 ], [ -95.4807590559316, 30.291421301532793 ], [ -95.480711055651085, 30.290814301141072 ], [ -95.480899055683864, 30.289865300699461 ], [ -95.481441055905094, 30.288773301209094 ], [ -95.476602054751439, 30.289981300809462 ], [ -95.476468054502263, 30.290014301082401 ], [ -95.475759054740436, 30.290189301256284 ], [ -95.474878054570979, 30.290406301558555 ], [ -95.472529053834648, 30.290988301742999 ], [ -95.469755053662908, 30.291678302259236 ], [ -95.466888053022544, 30.292421302253643 ], [ -95.466409052362323, 30.292545302482136 ], [ -95.464596052080481, 30.293022302311623 ], [ -95.464376052373865, 30.293077302276668 ], [ -95.464538052028189, 30.29356930227506 ], [ -95.46599605262783, 30.298011303111156 ], [ -95.46660705258617, 30.299872303363436 ], [ -95.467604053173062, 30.302922303918638 ], [ -95.467754052816119, 30.303382304150777 ], [ -95.468366053091003, 30.30519430457035 ], [ -95.468599053102849, 30.305882304817477 ], [ -95.469113053796207, 30.307439305476997 ], [ -95.469198054279019, 30.307689304862659 ], [ -95.469340053587388, 30.308111305328463 ], [ -95.469675053905448, 30.308053304868764 ], [ -95.470004054231126, 30.308070305281031 ], [ -95.47203805446037, 30.308177305505772 ], [ -95.47245005419262, 30.308210305016193 ], [ -95.47387605488565, 30.308328304970402 ], [ -95.477665055849741, 30.30861230460286 ], [ -95.479643056880761, 30.3087573049004 ], [ -95.480440056452508, 30.308816304752725 ], [ -95.485698058579004, 30.309202304833988 ], [ -95.485726057853867, 30.30892430446967 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1354, "Tract": "48339694103", "Area_SqMi": 6.7245591951527919, "total_2009": 182, "total_2010": 154, "total_2011": 130, "total_2012": 191, "total_2013": 170, "total_2014": 177, "total_2015": 213, "total_2016": 193, "total_2017": 180, "total_2018": 133, "total_2019": 165, "total_2020": 178, "age1": 30, "age2": 72, "age3": 55, "earn1": 40, "earn2": 51, "earn3": 66, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 67, "naics_s05": 4, "naics_s06": 6, "naics_s07": 12, "naics_s08": 10, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 7, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 0, "naics_s17": 10, "naics_s18": 1, "naics_s19": 26, "naics_s20": 0, "race1": 136, "race2": 7, "race3": 6, "race4": 5, "race5": 0, "race6": 3, "ethnicity1": 109, "ethnicity2": 48, "edu1": 31, "edu2": 46, "edu3": 27, "edu4": 23, "Shape_Length": 79125.670480079207, "Shape_Area": 187469201.16277272, "total_2021": 228, "total_2022": 157 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.473497060773809, 30.42753132891804 ], [ -95.473807060891389, 30.427462329600303 ], [ -95.473045060880366, 30.425154329034648 ], [ -95.472920060428706, 30.424774328278062 ], [ -95.472652060653658, 30.423960328911928 ], [ -95.472600060640815, 30.423800328710318 ], [ -95.472532060138704, 30.423608328355186 ], [ -95.472478059795549, 30.423458328649883 ], [ -95.472301060281652, 30.422934328156391 ], [ -95.472246060389239, 30.422767328656985 ], [ -95.471989059704796, 30.421999328107688 ], [ -95.471830060190811, 30.422041328409041 ], [ -95.471695059846851, 30.422004328084711 ], [ -95.471233059725776, 30.421956328192948 ], [ -95.471023059335522, 30.421924328405275 ], [ -95.470937060061388, 30.421911328286527 ], [ -95.470634059343354, 30.421850327948171 ], [ -95.470518059159474, 30.421821327976723 ], [ -95.470114059096005, 30.421721328447269 ], [ -95.470148059302886, 30.421376327979299 ], [ -95.470069058960746, 30.420617327944619 ], [ -95.469433059526196, 30.41871132797197 ], [ -95.469137059079671, 30.41775732705808 ], [ -95.468884059441109, 30.417606327223293 ], [ -95.468843058452251, 30.417293327342819 ], [ -95.468785059387571, 30.416938327048044 ], [ -95.468635059288886, 30.416243326736467 ], [ -95.468629059002097, 30.415945326824122 ], [ -95.468677058712359, 30.415648327173216 ], [ -95.4685960588548, 30.415021326738277 ], [ -95.467731058447995, 30.414290326337163 ], [ -95.467300058394031, 30.414260326374098 ], [ -95.467273058487322, 30.414259326903313 ], [ -95.46717105887619, 30.41396732672191 ], [ -95.466456058415602, 30.412754326296383 ], [ -95.465348058157332, 30.411964326748478 ], [ -95.465108057757249, 30.411793326183332 ], [ -95.464972057725731, 30.411634326646517 ], [ -95.464658058078484, 30.411267325867879 ], [ -95.464568057958203, 30.411193326594304 ], [ -95.464473057597985, 30.411189325996915 ], [ -95.464448057451804, 30.411198326634139 ], [ -95.464101057028117, 30.411059325928999 ], [ -95.464092057784654, 30.411015326243096 ], [ -95.463838057560082, 30.410901325838335 ], [ -95.463371056893436, 30.410907325947083 ], [ -95.463360056957896, 30.410907326319951 ], [ -95.463237057140219, 30.410910326287038 ], [ -95.46315805706702, 30.410911325863417 ], [ -95.462888057222287, 30.410965326545657 ], [ -95.462815056840114, 30.410965326342723 ], [ -95.462852057082031, 30.410915326041106 ], [ -95.46217305676781, 30.410925326578443 ], [ -95.46164505680953, 30.411177326266785 ], [ -95.461037056378842, 30.411201326508213 ], [ -95.460734056318529, 30.411285326259634 ], [ -95.46067105685114, 30.411302326317657 ], [ -95.460377056148388, 30.411384326109776 ], [ -95.459478056663457, 30.411408326589047 ], [ -95.459056056182021, 30.411591326181476 ], [ -95.458368055725799, 30.41159232607189 ], [ -95.458025055603088, 30.411707326317362 ], [ -95.457655055973973, 30.411707326772248 ], [ -95.457338056057907, 30.411524326286145 ], [ -95.456835055440592, 30.41095232617549 ], [ -95.456627055958393, 30.410875326582737 ], [ -95.455502055511104, 30.411130326225447 ], [ -95.455431055145922, 30.410903326860502 ], [ -95.45511705522172, 30.41093032674511 ], [ -95.454509054646394, 30.410701326772607 ], [ -95.453716054258877, 30.409717326359562 ], [ -95.453583054315203, 30.408824325870579 ], [ -95.453662055124752, 30.408663325864492 ], [ -95.453661054179008, 30.407999325608596 ], [ -95.452736054392446, 30.407290326158211 ], [ -95.45210105401587, 30.406557326133839 ], [ -95.452018054514269, 30.406522325351919 ], [ -95.451334054253294, 30.406237325689897 ], [ -95.451043053967283, 30.405825325831081 ], [ -95.451016053551385, 30.405367325478245 ], [ -95.45146405359587, 30.40429032517693 ], [ -95.451967053846076, 30.403960324993403 ], [ -95.45249205361138, 30.403615324798853 ], [ -95.452547054012911, 30.403579325173347 ], [ -95.452626054233008, 30.402777324513959 ], [ -95.452307053820959, 30.401312324708464 ], [ -95.452200054270776, 30.399800324120299 ], [ -95.452517054229304, 30.399319324115414 ], [ -95.452543053662637, 30.398861324329403 ], [ -95.452806053813092, 30.398173323642794 ], [ -95.45272605346004, 30.396799323411464 ], [ -95.452382053761895, 30.396364324078533 ], [ -95.452384053368206, 30.396241323169068 ], [ -95.452408054103373, 30.395265323168218 ], [ -95.452275053787275, 30.394830323120729 ], [ -95.452080053685449, 30.394631323441757 ], [ -95.451984053672433, 30.394532323634873 ], [ -95.451588053250958, 30.394349323573692 ], [ -95.451217053465143, 30.393891323591316 ], [ -95.451006052838196, 30.393846323345667 ], [ -95.450187053127621, 30.393938322846623 ], [ -95.449870052550779, 30.393686323179583 ], [ -95.449816053238536, 30.393251323097832 ], [ -95.450133052565718, 30.392426323121246 ], [ -95.450211052479659, 30.391830322778809 ], [ -95.44986805285285, 30.391487322923258 ], [ -95.449867053031539, 30.390656322299801 ], [ -95.449867053298775, 30.390617322774954 ], [ -95.449735052716406, 30.390479322252595 ], [ -95.449391052177674, 30.390296322895782 ], [ -95.448123051943398, 30.390045322336206 ], [ -95.447990052641529, 30.389885322135605 ], [ -95.447970052318638, 30.389737322383823 ], [ -95.447831051760105, 30.388694321932526 ], [ -95.447751051921088, 30.388648322143151 ], [ -95.447725051976974, 30.388442321801342 ], [ -95.447615052131084, 30.388407321999047 ], [ -95.446932052033489, 30.388191322302305 ], [ -95.446700051443869, 30.388065322153491 ], [ -95.446298051856388, 30.387847322060672 ], [ -95.445372051310756, 30.387023322042022 ], [ -95.444526051574485, 30.386749321808725 ], [ -95.443179051280566, 30.386796322176124 ], [ -95.442519051162236, 30.386658322443466 ], [ -95.441726050287699, 30.386270322298582 ], [ -95.441144050500725, 30.385743321718415 ], [ -95.440509050267892, 30.384942321972002 ], [ -95.440113049806769, 30.384575321257532 ], [ -95.439267049831187, 30.384232321596738 ], [ -95.437943049964829, 30.383989321786444 ], [ -95.437655048881282, 30.383936321439663 ], [ -95.436387049376719, 30.383913321833141 ], [ -95.43596404944374, 30.383707321756482 ], [ -95.435409048987424, 30.383318321539264 ], [ -95.434510048024066, 30.382426321301562 ], [ -95.434166048612468, 30.381991321552416 ], [ -95.434192048283236, 30.381601321052784 ], [ -95.434430048439253, 30.381005321080217 ], [ -95.434377048353227, 30.380639321066155 ], [ -95.434192048147807, 30.380456320795016 ], [ -95.433505047715116, 30.380342321425413 ], [ -95.4330290483434, 30.379998321405161 ], [ -95.431629047247583, 30.379953320877249 ], [ -95.430851047005845, 30.379627321111929 ], [ -95.430756047390673, 30.379587320972789 ], [ -95.430519047832448, 30.379289320608137 ], [ -95.429805047089246, 30.378832320671751 ], [ -95.429488047279449, 30.378488320663294 ], [ -95.429514046999842, 30.378397320921131 ], [ -95.429064046712071, 30.377664320404051 ], [ -95.428641047220211, 30.37725232020594 ], [ -95.427690046517483, 30.376680320585937 ], [ -95.42676504626904, 30.375558320391004 ], [ -95.426712046307884, 30.375214319931512 ], [ -95.426606045849525, 30.37487131984307 ], [ -95.426368046083354, 30.374573320499536 ], [ -95.426394046237178, 30.373840319799861 ], [ -95.426103045464657, 30.37372631979721 ], [ -95.425627045270488, 30.37335932022086 ], [ -95.425389045708883, 30.372970319731284 ], [ -95.425046045353696, 30.372649320004484 ], [ -95.424147045517614, 30.372283319916889 ], [ -95.424006045720517, 30.372161319407777 ], [ -95.423777045338255, 30.371963319814054 ], [ -95.423724045678824, 30.371665319522148 ], [ -95.423037045520857, 30.370955319888857 ], [ -95.423010045369111, 30.370612319720212 ], [ -95.423248044649839, 30.370108319106446 ], [ -95.423538044757166, 30.369856318847557 ], [ -95.423591045181993, 30.369604319150188 ], [ -95.423908044774308, 30.369329318826274 ], [ -95.423934044755526, 30.368916319045169 ], [ -95.423802045159562, 30.36871031948958 ], [ -95.423802044590289, 30.368344318954303 ], [ -95.424330044934806, 30.368069318776509 ], [ -95.424831045009554, 30.367519318595779 ], [ -95.424823045287496, 30.367444318765362 ], [ -95.424725045554439, 30.366442318669947 ], [ -95.424755045086044, 30.366396318588038 ], [ -95.424936045063887, 30.366121318282897 ], [ -95.424962045708597, 30.365755318288535 ], [ -95.424698045664826, 30.365595318431502 ], [ -95.424667044702616, 30.36559331865579 ], [ -95.42411704548563, 30.365549318225643 ], [ -95.423721045042768, 30.365641318713298 ], [ -95.423536044449406, 30.365870318229895 ], [ -95.423113044973846, 30.365962318226558 ], [ -95.422652044617095, 30.366262318663466 ], [ -95.422585044304867, 30.366306318596294 ], [ -95.42229104482719, 30.366324318548887 ], [ -95.422215044661272, 30.366329318376621 ], [ -95.421633044192092, 30.365955318141665 ], [ -95.421396044344206, 30.365802318381331 ], [ -95.421357043974552, 30.365734318723572 ], [ -95.421185044132983, 30.365436318044502 ], [ -95.420788044034211, 30.365344318061041 ], [ -95.420577043766784, 30.365138318370704 ], [ -95.420445044571622, 30.36477231849754 ], [ -95.41967904339613, 30.364726318148413 ], [ -95.419124043852719, 30.364475318086349 ], [ -95.418807043275052, 30.364566318691363 ], [ -95.418569043735019, 30.364795318140768 ], [ -95.418386043801078, 30.364846318627549 ], [ -95.417988043132624, 30.364956318118224 ], [ -95.417487043273468, 30.365277318895359 ], [ -95.417413042967311, 30.365286318270091 ], [ -95.417117043610105, 30.36532331894141 ], [ -95.416675043370134, 30.364692318421383 ], [ -95.416652042999985, 30.364672318856837 ], [ -95.416515043283809, 30.364965318880405 ], [ -95.415530043357577, 30.367651319549413 ], [ -95.415456043109245, 30.367809318795889 ], [ -95.415286042391401, 30.368154319071383 ], [ -95.414678042755767, 30.368998319845687 ], [ -95.41421104229353, 30.369646319396814 ], [ -95.413964043034539, 30.370327319756996 ], [ -95.413307042613894, 30.373918320144451 ], [ -95.413407043067068, 30.374119320224349 ], [ -95.413691042532164, 30.374431320400664 ], [ -95.413642042846917, 30.374472320305422 ], [ -95.413062043140158, 30.375259320567011 ], [ -95.412809042687499, 30.37581032098695 ], [ -95.412525042315707, 30.376566320931715 ], [ -95.412272042606858, 30.377444321052995 ], [ -95.412134042556346, 30.378135321430427 ], [ -95.411571042879672, 30.379630321333913 ], [ -95.410831041892919, 30.381263321860278 ], [ -95.409920042545863, 30.382567322684036 ], [ -95.409541042529426, 30.383019322156141 ], [ -95.408457041389084, 30.384281322787395 ], [ -95.407566041347863, 30.385584323014307 ], [ -95.406660041952691, 30.387066323452672 ], [ -95.406015041527439, 30.388223323780085 ], [ -95.406831041796181, 30.388897323510303 ], [ -95.407525041531912, 30.38930632420761 ], [ -95.410585042975285, 30.390461323876451 ], [ -95.413874043868532, 30.391667324211603 ], [ -95.415244043620362, 30.392243323963438 ], [ -95.416063044086528, 30.392696324594628 ], [ -95.416422044616567, 30.39294832460125 ], [ -95.417365045024894, 30.39369632423552 ], [ -95.421189046040269, 30.397082324784407 ], [ -95.42217204564497, 30.397793324614732 ], [ -95.423458045972041, 30.398603324688874 ], [ -95.425130046878721, 30.39965732527806 ], [ -95.425230046870126, 30.399723324866731 ], [ -95.425792047145322, 30.40009332532772 ], [ -95.426513047125738, 30.400681325326051 ], [ -95.427030047590563, 30.401215325620761 ], [ -95.427853047680927, 30.402262325950119 ], [ -95.429327047964634, 30.404172325829748 ], [ -95.430393048786243, 30.405330325981918 ], [ -95.431193049230501, 30.406018326558151 ], [ -95.432258049363512, 30.406934326633824 ], [ -95.432694049136273, 30.407246326734533 ], [ -95.4336940496067, 30.40796132623316 ], [ -95.434215049397437, 30.408334326386658 ], [ -95.435180049409141, 30.408846326871458 ], [ -95.435409049825282, 30.408934326435091 ], [ -95.4354740504738, 30.408959326801195 ], [ -95.435570050398866, 30.41505332784924 ], [ -95.435576050334404, 30.415439328308135 ], [ -95.435039050238089, 30.415420327940325 ], [ -95.43406605042469, 30.415385328228552 ], [ -95.433114049544542, 30.415351327944325 ], [ -95.433132049871872, 30.415619328060593 ], [ -95.432719049432819, 30.415633328478631 ], [ -95.432335049361754, 30.415816328483704 ], [ -95.432345049504647, 30.41584432811926 ], [ -95.432447049074895, 30.416327328285465 ], [ -95.432685049775941, 30.416647328017863 ], [ -95.432447050083582, 30.417426328203248 ], [ -95.432553049837367, 30.417609328594899 ], [ -95.432369049507997, 30.417953328342719 ], [ -95.432369049574191, 30.418228328810208 ], [ -95.432554049475144, 30.418388329142751 ], [ -95.433003050294786, 30.418480328510178 ], [ -95.433109049595075, 30.418640329112641 ], [ -95.433136049388096, 30.419029329170527 ], [ -95.433242049418865, 30.419235328895976 ], [ -95.433268049893883, 30.419648329416788 ], [ -95.433559049946794, 30.419785328581664 ], [ -95.433692050195447, 30.420105329213786 ], [ -95.433903050269805, 30.420357329186057 ], [ -95.434722050384892, 30.420288328997646 ], [ -95.435119049966758, 30.420494328681666 ], [ -95.435727050988646, 30.420563329221196 ], [ -95.436255050239836, 30.420356329145807 ], [ -95.43675805056391, 30.420677329534829 ], [ -95.437286051131949, 30.420607328621671 ], [ -95.437472050659906, 30.420791329084711 ], [ -95.43752505145595, 30.420974329511889 ], [ -95.43768305113079, 30.421065329259974 ], [ -95.437921050790635, 30.421019329178719 ], [ -95.438212051130108, 30.420699329482535 ], [ -95.438634051365085, 30.420675329417218 ], [ -95.43900505142156, 30.42079032923191 ], [ -95.43924305145589, 30.421225329547632 ], [ -95.43993005154897, 30.421224328658099 ], [ -95.440194051511895, 30.421064329157225 ], [ -95.441965052243845, 30.421727328795235 ], [ -95.442336052715987, 30.422254329379417 ], [ -95.442547052608973, 30.422369329233138 ], [ -95.443050052358743, 30.422643329555854 ], [ -95.443886052625345, 30.423297329226141 ], [ -95.44416105333697, 30.423512329346995 ], [ -95.444637052866454, 30.424062329597806 ], [ -95.44498105315742, 30.424978329760251 ], [ -95.445035053703918, 30.425688330157477 ], [ -95.445485052919977, 30.426352329661952 ], [ -95.445749053761986, 30.426489329786563 ], [ -95.446992053376931, 30.426786330293357 ], [ -95.447335053947739, 30.427106329764015 ], [ -95.447495054120409, 30.427683329786085 ], [ -95.447563053890562, 30.427929329729999 ], [ -95.447601054489184, 30.428068330640944 ], [ -95.4477340537656, 30.428139330628401 ], [ -95.447944054331103, 30.428251330479583 ], [ -95.450562054740246, 30.428982330338354 ], [ -95.451487055396782, 30.429394330402673 ], [ -95.452465054935416, 30.429393330171887 ], [ -95.453258055182786, 30.429049330087761 ], [ -95.454236055475803, 30.429049330542778 ], [ -95.455055055457464, 30.428705330175536 ], [ -95.455478055743015, 30.428750329651137 ], [ -95.456721056423603, 30.429184329958396 ], [ -95.457593056505786, 30.429184330459453 ], [ -95.458492056538674, 30.429343330105329 ], [ -95.459285057058509, 30.42957232967693 ], [ -95.460395057830738, 30.430052330156784 ], [ -95.461374057551438, 30.430326329730718 ], [ -95.461453057190482, 30.430338330055296 ], [ -95.461774057573479, 30.430388330052885 ], [ -95.462405058259577, 30.430486330134716 ], [ -95.463013058168684, 30.43071433037484 ], [ -95.464033058433515, 30.431483330074009 ], [ -95.464518058120703, 30.431281330170382 ], [ -95.464710058184224, 30.431201330648893 ], [ -95.465335058360964, 30.430937330439281 ], [ -95.465399058502825, 30.430910330293834 ], [ -95.467154058627926, 30.430173329975485 ], [ -95.46795005910738, 30.429850329737533 ], [ -95.468241059240825, 30.429712330001163 ], [ -95.469146059975088, 30.429319329854685 ], [ -95.469461060119329, 30.429183330001322 ], [ -95.469741059606648, 30.429047329540509 ], [ -95.470011059316263, 30.428924329612538 ], [ -95.470237060227078, 30.42882132965515 ], [ -95.470909060183132, 30.428527329240325 ], [ -95.470937060270103, 30.428515329535561 ], [ -95.471222059831959, 30.428376329090103 ], [ -95.47196806034124, 30.428058329109938 ], [ -95.472119060015174, 30.427996329456526 ], [ -95.472371060316803, 30.427892329163729 ], [ -95.472783060934646, 30.427743329248013 ], [ -95.473169060126793, 30.427627329082021 ], [ -95.473497060773809, 30.42753132891804 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1355, "Tract": "48339691401", "Area_SqMi": 1.2433288526929662, "total_2009": 51, "total_2010": 51, "total_2011": 40, "total_2012": 47, "total_2013": 46, "total_2014": 42, "total_2015": 48, "total_2016": 66, "total_2017": 76, "total_2018": 106, "total_2019": 114, "total_2020": 124, "age1": 22, "age2": 51, "age3": 25, "earn1": 28, "earn2": 19, "earn3": 51, "naics_s01": 0, "naics_s02": 0, "naics_s03": 13, "naics_s04": 27, "naics_s05": 0, "naics_s06": 0, "naics_s07": 5, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 14, "naics_s13": 0, "naics_s14": 34, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 88, "race2": 10, "race3": 0, "race4": 0, "race5": 0, "race6": 0, "ethnicity1": 75, "ethnicity2": 23, "edu1": 14, "edu2": 16, "edu3": 30, "edu4": 16, "Shape_Length": 39145.707829406929, "Shape_Area": 34661880.434481181, "total_2021": 96, "total_2022": 98 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.502302054858077, 30.147982271548717 ], [ -95.502263054725844, 30.147169271604994 ], [ -95.5016900550348, 30.144408271196923 ], [ -95.501601054573072, 30.144052270767784 ], [ -95.501450054793878, 30.14394727076867 ], [ -95.501102054828721, 30.143777271005931 ], [ -95.500963054338882, 30.143694270939864 ], [ -95.500887054713573, 30.143606270567474 ], [ -95.500868054195308, 30.14353527070541 ], [ -95.500900054528458, 30.143408270402066 ], [ -95.500868054105283, 30.143337270828955 ], [ -95.500830054636296, 30.143298271023099 ], [ -95.500760054441585, 30.143271270790756 ], [ -95.500621054090601, 30.143254270601727 ], [ -95.500564054075596, 30.143238270799568 ], [ -95.500526053940618, 30.143216270722199 ], [ -95.500514054657742, 30.143194271049207 ], [ -95.500507053732704, 30.143139270854945 ], [ -95.500571053711724, 30.142935270762308 ], [ -95.500577053685561, 30.142880270328899 ], [ -95.500552053993758, 30.142831270257297 ], [ -95.500482054136882, 30.142792270889132 ], [ -95.500400053659789, 30.14277027049096 ], [ -95.500223053770327, 30.142787270129919 ], [ -95.500141053649784, 30.142781270335188 ], [ -95.500004053551933, 30.142678270878374 ], [ -95.499903053883571, 30.142595270980767 ], [ -95.499846054263983, 30.142480270869331 ], [ -95.499833053894946, 30.142068270253493 ], [ -95.499858054312242, 30.141776270833901 ], [ -95.499833054151665, 30.141622270598916 ], [ -95.499757053999161, 30.141452270149099 ], [ -95.499719054399137, 30.141298270057259 ], [ -95.499694053749778, 30.141073270351182 ], [ -95.499675053789417, 30.141012270144714 ], [ -95.499592053897928, 30.140886270240408 ], [ -95.499491053990369, 30.140638270383125 ], [ -95.499408053329304, 30.140045269593028 ], [ -95.499389053580217, 30.13966527004402 ], [ -95.499326054095746, 30.139523269727359 ], [ -95.499110053896445, 30.139237269582541 ], [ -95.49902205360786, 30.139193270187921 ], [ -95.498946053840797, 30.139127270065785 ], [ -95.498826053283878, 30.139088269739428 ], [ -95.498699053067867, 30.139165269452885 ], [ -95.498655053944987, 30.139171270344509 ], [ -95.498560053106104, 30.139155269617415 ], [ -95.498510053556146, 30.139083270083002 ], [ -95.498497053232853, 30.138979269988759 ], [ -95.498509053620978, 30.138429269577713 ], [ -95.49856605393397, 30.138220269264721 ], [ -95.498591053616082, 30.138165269684553 ], [ -95.498654053129883, 30.138072269432005 ], [ -95.498661053864865, 30.138044269547109 ], [ -95.498654053342463, 30.137604269986976 ], [ -95.498616053744371, 30.137439269342057 ], [ -95.498584053619581, 30.137412269579556 ], [ -95.498502053813269, 30.137264269620459 ], [ -95.498369053471052, 30.1371542693132 ], [ -95.498255052883721, 30.13711026937148 ], [ -95.498160053158969, 30.137093269235159 ], [ -95.498072052777431, 30.13709326973661 ], [ -95.497926053200359, 30.137077269280418 ], [ -95.49788205325639, 30.137060269126543 ], [ -95.497844052956296, 30.137027269131536 ], [ -95.497831053008369, 30.136989269353457 ], [ -95.497850053284324, 30.136923269886644 ], [ -95.497964053160629, 30.136725269004842 ], [ -95.497945053709643, 30.136676269240613 ], [ -95.49743905341353, 30.136313268908982 ], [ -95.497363052786497, 30.136241269553068 ], [ -95.497262053503221, 30.135906269634237 ], [ -95.497249053398733, 30.13575826950466 ], [ -95.497268052691439, 30.135708269063766 ], [ -95.497331052786507, 30.135626269300193 ], [ -95.497382052515746, 30.135576269109098 ], [ -95.497755052652096, 30.135406269501225 ], [ -95.497824053390076, 30.135389269240619 ], [ -95.497906052741712, 30.13538426886242 ], [ -95.497989053364449, 30.135340269458766 ], [ -95.498014052674307, 30.135301268928437 ], [ -95.498013053151126, 30.135283269182978 ], [ -95.49797605344591, 30.135186269431184 ], [ -95.497843053425086, 30.135054269463009 ], [ -95.497273052940912, 30.13468026870585 ], [ -95.497223053181202, 30.134614269349555 ], [ -95.497159052929462, 30.134389269021717 ], [ -95.497121053158125, 30.134334268883244 ], [ -95.497001052507301, 30.134230268824997 ], [ -95.496792053115925, 30.134087268613445 ], [ -95.496691052702829, 30.133971268582229 ], [ -95.496634053154864, 30.133861269181057 ], [ -95.496602052643794, 30.133680268695116 ], [ -95.496609052467349, 30.133598269095113 ], [ -95.49665905252786, 30.133504268596877 ], [ -95.49674105293785, 30.133427268429092 ], [ -95.496906052677375, 30.13330126855962 ], [ -95.496932053032339, 30.133271268959348 ], [ -95.496963053068001, 30.133235268726203 ], [ -95.496988052615521, 30.133174268466696 ], [ -95.496988052482436, 30.133119268720325 ], [ -95.496937052292594, 30.133020268560607 ], [ -95.49693705303811, 30.132976268782507 ], [ -95.497000052635997, 30.13283926845811 ], [ -95.497013052486821, 30.132767268899126 ], [ -95.497007052709606, 30.132668268325183 ], [ -95.496950052308733, 30.132443268573414 ], [ -95.496823052542922, 30.132300268408969 ], [ -95.496753053212274, 30.132240268620084 ], [ -95.496633052640746, 30.132174268818584 ], [ -95.49647505246088, 30.132113268259399 ], [ -95.496298052873698, 30.132031268167545 ], [ -95.49614605293381, 30.131982268224824 ], [ -95.495842052719979, 30.131921268559807 ], [ -95.495779052320628, 30.131866268242284 ], [ -95.495779052577348, 30.131817268437565 ], [ -95.496133052738685, 30.130805267931713 ], [ -95.496303052172522, 30.13042626811707 ], [ -95.496404052188197, 30.130299267727814 ], [ -95.49650605271178, 30.130222267884051 ], [ -95.496569052096461, 30.130140268353507 ], [ -95.496550052920895, 30.130074268279248 ], [ -95.496398052309004, 30.129958267809855 ], [ -95.496208052891291, 30.129838268271254 ], [ -95.496037052767846, 30.129832268470036 ], [ -95.496012052682303, 30.129805267985027 ], [ -95.496012052396608, 30.129787268033414 ], [ -95.49603705227544, 30.12972826787724 ], [ -95.496107052522916, 30.129667267650522 ], [ -95.49626505205616, 30.129590268315674 ], [ -95.496341052280528, 30.129524268146437 ], [ -95.496391052203421, 30.129442267602073 ], [ -95.496429052036419, 30.129304267799071 ], [ -95.496435052544427, 30.129194268296438 ], [ -95.496473052433473, 30.12913426824344 ], [ -95.496587052902413, 30.129068267704234 ], [ -95.496688052591139, 30.129024267727061 ], [ -95.496897052572649, 30.128952267524397 ], [ -95.496973052539715, 30.128903267849601 ], [ -95.497049052986455, 30.128831268214125 ], [ -95.497080052547759, 30.12876026801899 ], [ -95.49708605235196, 30.128721268255898 ], [ -95.497074052435437, 30.128633267360122 ], [ -95.496979052947594, 30.12845226749792 ], [ -95.496808052823908, 30.128392267860448 ], [ -95.49647305250312, 30.128359267712231 ], [ -95.496372052792381, 30.128337267697859 ], [ -95.496201052391356, 30.128271268182363 ], [ -95.496112052112792, 30.128205267494206 ], [ -95.496017052383607, 30.128117267538105 ], [ -95.495878052418291, 30.127952267562929 ], [ -95.495701052571818, 30.127573267900338 ], [ -95.495682051971855, 30.127485267618905 ], [ -95.495688051842833, 30.127424267934259 ], [ -95.495922052017434, 30.127133267662245 ], [ -95.49608005279201, 30.126897267113367 ], [ -95.496073052804761, 30.126820267211674 ], [ -95.496023051854905, 30.126699267156948 ], [ -95.495833052669823, 30.126402267080984 ], [ -95.495814052564896, 30.126336267653368 ], [ -95.495808051920591, 30.126248267596477 ], [ -95.495814052335504, 30.126160267035875 ], [ -95.49585205262828, 30.126061267179391 ], [ -95.495896052068801, 30.126028267368 ], [ -95.495940051969086, 30.126012267527564 ], [ -95.495991052339775, 30.126017267710726 ], [ -95.496073052716696, 30.126050267687752 ], [ -95.496193051924024, 30.12612126739922 ], [ -95.496731052008727, 30.126539267557288 ], [ -95.496788052085819, 30.126572267510568 ], [ -95.496820052299043, 30.126605267004571 ], [ -95.496921052438381, 30.126632267643135 ], [ -95.497009052259799, 30.126616267246934 ], [ -95.497072052498837, 30.126588267342012 ], [ -95.497123052823071, 30.126544267188407 ], [ -95.497237052178875, 30.126385267185753 ], [ -95.497414052253305, 30.126187267060168 ], [ -95.497490052305466, 30.126126267126971 ], [ -95.497686052243282, 30.126022267561851 ], [ -95.497724053166181, 30.125989267102621 ], [ -95.497749052321765, 30.125950267433435 ], [ -95.497755052593121, 30.125917267608482 ], [ -95.497742052402586, 30.125851266764286 ], [ -95.497388052780281, 30.125423267406365 ], [ -95.497204052168371, 30.125258267225107 ], [ -95.497173052771544, 30.125186266848893 ], [ -95.497198052756403, 30.125005267510726 ], [ -95.497210052581252, 30.124949266942171 ], [ -95.49730505221774, 30.124812267456804 ], [ -95.497317052651098, 30.12476826687498 ], [ -95.497324052125435, 30.124543267171653 ], [ -95.497279052274138, 30.124405266885766 ], [ -95.497165052575511, 30.124174266568616 ], [ -95.497070051885458, 30.123932267285969 ], [ -95.497051052303107, 30.123867267087888 ], [ -95.497064052038937, 30.123795266394751 ], [ -95.497121052516661, 30.123707266412939 ], [ -95.49717105241352, 30.123674267238361 ], [ -95.497228052862681, 30.123657267140594 ], [ -95.497310052321666, 30.123646266454465 ], [ -95.497399052111035, 30.123652266602498 ], [ -95.497728052722223, 30.123712266578483 ], [ -95.497778052087426, 30.123707267137277 ], [ -95.497842053087624, 30.123685266771904 ], [ -95.497861052654116, 30.123668266947035 ], [ -95.497873052539987, 30.123630267186968 ], [ -95.49787305282635, 30.123597266329707 ], [ -95.497816052538028, 30.123498266830325 ], [ -95.497595052011789, 30.123306266529589 ], [ -95.497525052762384, 30.123212266813404 ], [ -95.497500052336733, 30.123141266532091 ], [ -95.497500052340314, 30.12305826660263 ], [ -95.497588052991347, 30.122855266964159 ], [ -95.497613051982825, 30.122756266429452 ], [ -95.497613052478542, 30.122717266471078 ], [ -95.497537052721199, 30.122613266610262 ], [ -95.497316052394595, 30.122432266622553 ], [ -95.497272052323311, 30.12235526693313 ], [ -95.497265052840049, 30.122283266079755 ], [ -95.497278052753217, 30.122239266225055 ], [ -95.497309052787003, 30.122201266749968 ], [ -95.497341052212263, 30.122129266234662 ], [ -95.497354052325207, 30.122058266387526 ], [ -95.49732805193689, 30.121959266172372 ], [ -95.497303052871573, 30.121909266739056 ], [ -95.497252052177743, 30.121849266099051 ], [ -95.497246051863499, 30.121816265970548 ], [ -95.497157051827543, 30.121717266593034 ], [ -95.49713205223749, 30.121701266196439 ], [ -95.497018052690606, 30.121673266302967 ], [ -95.496639052209957, 30.121723266062371 ], [ -95.496493051992857, 30.1217172660639 ], [ -95.496348052318467, 30.121673266701229 ], [ -95.496278051771498, 30.121635266185688 ], [ -95.496209052333995, 30.12158626644143 ], [ -95.49617705233365, 30.12153626669458 ], [ -95.496158051638005, 30.121481266255124 ], [ -95.496158052224601, 30.121415266261007 ], [ -95.496208051676788, 30.121278266503428 ], [ -95.496215051970282, 30.121162266541905 ], [ -95.496202052319134, 30.121096266300476 ], [ -95.496094051819284, 30.120920266598439 ], [ -95.496012051534947, 30.120756266406882 ], [ -95.495974052018155, 30.120596266356721 ], [ -95.495917051979077, 30.120233266587512 ], [ -95.495936051882424, 30.120189266107563 ], [ -95.495974052230395, 30.120156266094181 ], [ -95.496037051928965, 30.120123265779775 ], [ -95.496258051796744, 30.12010126628261 ], [ -95.496334052224, 30.120079266089579 ], [ -95.496378052277862, 30.120035266123601 ], [ -95.496397051872464, 30.119942266443445 ], [ -95.496385052274093, 30.119865266058916 ], [ -95.496334052500472, 30.119700265828616 ], [ -95.49628905249206, 30.119628265812327 ], [ -95.4960930519713, 30.119436265748451 ], [ -95.495809051441356, 30.119288265846713 ], [ -95.495581051700725, 30.119206266166575 ], [ -95.495322052247147, 30.119074265951784 ], [ -95.49525205139436, 30.119019265679199 ], [ -95.495208051510843, 30.118964266069991 ], [ -95.49517605120748, 30.118898265969332 ], [ -95.495144051455028, 30.118760265768859 ], [ -95.495087051196222, 30.118694265738597 ], [ -95.494942051337901, 30.11858526547649 ], [ -95.494834051925466, 30.118453265467686 ], [ -95.494271051452444, 30.118030265827262 ], [ -95.493955051698123, 30.117848265986378 ], [ -95.493866051158847, 30.117810266027909 ], [ -95.493689051763525, 30.117766265941192 ], [ -95.493601051575794, 30.117761265783781 ], [ -95.493474050900204, 30.117739265800182 ], [ -95.493417050871827, 30.11772226601467 ], [ -95.493367050870859, 30.117689265475956 ], [ -95.49320205081375, 30.117354265527428 ], [ -95.493145050675224, 30.117283265477575 ], [ -95.493069051238251, 30.117217265461175 ], [ -95.492911050893554, 30.117107265879309 ], [ -95.4927850510268, 30.116975265741935 ], [ -95.492746050682868, 30.116854265459544 ], [ -95.492772051360646, 30.116634265110346 ], [ -95.492765051204245, 30.116579265605527 ], [ -95.492746050535416, 30.116535265440834 ], [ -95.492696051165993, 30.116469265437519 ], [ -95.492645050762647, 30.11644226559574 ], [ -95.492537051072887, 30.116332265360779 ], [ -95.492506050968302, 30.116216265149959 ], [ -95.492575050764216, 30.116079265563716 ], [ -95.492657050582523, 30.115952265664411 ], [ -95.492702051355536, 30.115832265614156 ], [ -95.49272005126447, 30.115678265233203 ], [ -95.492701050642992, 30.115601264933915 ], [ -95.492644050508076, 30.115485265339633 ], [ -95.492537051017663, 30.11534826485623 ], [ -95.492467051124166, 30.115276265621411 ], [ -95.492379050652431, 30.11522726534162 ], [ -95.492309051229796, 30.115216265344031 ], [ -95.492151050849017, 30.115249265197875 ], [ -95.492069050963295, 30.11524926527029 ], [ -95.491980050890291, 30.115233264942727 ], [ -95.491879051135044, 30.115172265444617 ], [ -95.491809050620148, 30.115117264991916 ], [ -95.491778050525667, 30.115046265599737 ], [ -95.491771050332915, 30.114925264837765 ], [ -95.49184105087447, 30.114683265082682 ], [ -95.491872050476815, 30.114589264720109 ], [ -95.492030050189655, 30.114375265383867 ], [ -95.492062050991194, 30.114315265051943 ], [ -95.492093050686421, 30.114166265317127 ], [ -95.492106050211603, 30.114034265423975 ], [ -95.492131050797411, 30.114007264917987 ], [ -95.492151050622624, 30.114001264917867 ], [ -95.492372050719624, 30.11397926486282 ], [ -95.49241605060287, 30.113957265293813 ], [ -95.492460051012898, 30.113908264713174 ], [ -95.492466050675631, 30.113869264902199 ], [ -95.492441050523539, 30.11382026517143 ], [ -95.492384050394577, 30.113759264677181 ], [ -95.492213050567258, 30.113534264671831 ], [ -95.492099050438995, 30.113336264912554 ], [ -95.491903050853622, 30.113100264797325 ], [ -95.491890050424843, 30.113056264813263 ], [ -95.491890050431692, 30.112995264537382 ], [ -95.491922050850462, 30.112935265108302 ], [ -95.491960050310837, 30.112896265219049 ], [ -95.492010050352775, 30.112869264339174 ], [ -95.492168050192504, 30.112836264701475 ], [ -95.49223805074017, 30.112803264656524 ], [ -95.492257050499035, 30.112781264659191 ], [ -95.492257050630243, 30.112731264435826 ], [ -95.492232050505137, 30.112704264735772 ], [ -95.492073050663265, 30.112440264956785 ], [ -95.491959050573186, 30.112154264531455 ], [ -95.491902050362938, 30.111923264728347 ], [ -95.491864050791861, 30.111720264298476 ], [ -95.491858050008815, 30.111637264375084 ], [ -95.491820050936013, 30.111522264370883 ], [ -95.4917950503919, 30.111478264467696 ], [ -95.491491050812243, 30.111115264764393 ], [ -95.49137105075863, 30.110912264567979 ], [ -95.491351050017386, 30.110824264806251 ], [ -95.491314050153804, 30.11074226468093 ], [ -95.491187050715837, 30.11058826423341 ], [ -95.491155050722398, 30.110505264540368 ], [ -95.49113004997254, 30.110373263972146 ], [ -95.491180050572623, 30.110225264522008 ], [ -95.491282050648081, 30.110120264671657 ], [ -95.491300050497443, 30.110082263882457 ], [ -95.491313050680148, 30.110021264275929 ], [ -95.491307050669832, 30.109961264414061 ], [ -95.491288050302146, 30.109923263924525 ], [ -95.491243050507777, 30.109884264648411 ], [ -95.491168050667937, 30.109840264133343 ], [ -95.491066049716053, 30.109807263961436 ], [ -95.490972050509669, 30.109785264092363 ], [ -95.490765050158075, 30.109757263868655 ], [ -95.490693049853419, 30.109747263944477 ], [ -95.490485049805159, 30.109681264038091 ], [ -95.490409050162626, 30.109643264104264 ], [ -95.490333050125329, 30.109599264077676 ], [ -95.490238049651296, 30.109500264142909 ], [ -95.490162050453733, 30.109362264337761 ], [ -95.490073050320746, 30.109252263767736 ], [ -95.489795049986398, 30.109071264309101 ], [ -95.489517050257064, 30.108802263658383 ], [ -95.48940904960503, 30.108725264095806 ], [ -95.489270049426054, 30.108648263797132 ], [ -95.489200049991808, 30.108632263796693 ], [ -95.488928049827294, 30.108615264084612 ], [ -95.488815049350535, 30.108593263829853 ], [ -95.488587049534132, 30.108472264439055 ], [ -95.488536049159137, 30.108412264391397 ], [ -95.488486049854288, 30.108297263891831 ], [ -95.488448049758432, 30.108088263745174 ], [ -95.488422049830163, 30.108033263993828 ], [ -95.48830804893106, 30.107934263669211 ], [ -95.487885049243744, 30.107813263486413 ], [ -95.48775204888527, 30.107797263461414 ], [ -95.487632049157739, 30.107802263686107 ], [ -95.487537049512468, 30.107819263478181 ], [ -95.487493049061968, 30.107841264154732 ], [ -95.487341049612212, 30.107962263993969 ], [ -95.487273049476627, 30.107983264031365 ], [ -95.487230049416127, 30.10858526445465 ], [ -95.487666049781268, 30.110198264620323 ], [ -95.488406049359384, 30.11291726465733 ], [ -95.488594049243773, 30.113117265004483 ], [ -95.488862049541197, 30.113362264693759 ], [ -95.489152049855448, 30.11350026540423 ], [ -95.489090050009153, 30.115767265542647 ], [ -95.489065050520509, 30.116897265377613 ], [ -95.489044049684182, 30.117634265799829 ], [ -95.48907905049856, 30.118535266431419 ], [ -95.489070050303354, 30.118727265813956 ], [ -95.489050050289279, 30.118825265645963 ], [ -95.488907050046038, 30.119138266155595 ], [ -95.488898050034948, 30.11920426603837 ], [ -95.488888050009663, 30.119679266219219 ], [ -95.48888605031928, 30.123910267058719 ], [ -95.488880050194368, 30.124898267395508 ], [ -95.488875050262322, 30.126609267380672 ], [ -95.488879050486617, 30.129217268441536 ], [ -95.488875051191016, 30.131747268444492 ], [ -95.488887050978235, 30.132697269099726 ], [ -95.488916050452431, 30.135473269640457 ], [ -95.488936051062367, 30.136461269982213 ], [ -95.488952051058803, 30.137457270157849 ], [ -95.488958051439596, 30.138429269865131 ], [ -95.488972051156125, 30.139428270270066 ], [ -95.488987051588708, 30.140429270205331 ], [ -95.489001050991405, 30.141420270740117 ], [ -95.489028050704761, 30.142403270888675 ], [ -95.489034051060784, 30.143393271240811 ], [ -95.489054051372364, 30.144307271608369 ], [ -95.489059051465759, 30.145149271463673 ], [ -95.489081051169507, 30.146005271458431 ], [ -95.489093051746863, 30.146847272029714 ], [ -95.489103051593531, 30.147703272324016 ], [ -95.492157051976548, 30.147667271968174 ], [ -95.492583052646339, 30.147664272195819 ], [ -95.493619052554052, 30.147658272210947 ], [ -95.495042052627454, 30.14763227130662 ], [ -95.497885053363916, 30.147594271628392 ], [ -95.499438054132099, 30.147576271826253 ], [ -95.500299054702424, 30.147560271369088 ], [ -95.500824054628552, 30.147975271960711 ], [ -95.502302054858077, 30.147982271548717 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1356, "Tract": "48339693502", "Area_SqMi": 0.564374336672824, "total_2009": 1243, "total_2010": 1270, "total_2011": 629, "total_2012": 612, "total_2013": 661, "total_2014": 648, "total_2015": 703, "total_2016": 690, "total_2017": 718, "total_2018": 787, "total_2019": 863, "total_2020": 805, "age1": 356, "age2": 468, "age3": 189, "earn1": 329, "earn2": 381, "earn3": 303, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 40, "naics_s05": 47, "naics_s06": 4, "naics_s07": 309, "naics_s08": 0, "naics_s09": 0, "naics_s10": 7, "naics_s11": 0, "naics_s12": 49, "naics_s13": 0, "naics_s14": 0, "naics_s15": 21, "naics_s16": 237, "naics_s17": 10, "naics_s18": 205, "naics_s19": 67, "naics_s20": 17, "race1": 787, "race2": 147, "race3": 9, "race4": 55, "race5": 0, "race6": 15, "ethnicity1": 704, "ethnicity2": 309, "edu1": 148, "edu2": 166, "edu3": 209, "edu4": 134, "Shape_Length": 17739.477241051209, "Shape_Area": 15733790.570107406, "total_2021": 948, "total_2022": 1013 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.467652054504924, 30.336085311081852 ], [ -95.467393054487431, 30.335192311088097 ], [ -95.467083054616268, 30.334123310884042 ], [ -95.466421054325593, 30.331720309658373 ], [ -95.466362053886598, 30.331508309718252 ], [ -95.465899054181364, 30.329864310083934 ], [ -95.465812054443546, 30.329553309898163 ], [ -95.465297053290598, 30.327746309243349 ], [ -95.465204054212634, 30.327364309058051 ], [ -95.465123053529155, 30.327032309029612 ], [ -95.465072053768324, 30.326811309112173 ], [ -95.464992053389821, 30.326418309248293 ], [ -95.464948053462649, 30.326169309099715 ], [ -95.464891053927957, 30.325879308652564 ], [ -95.464747053111282, 30.324844308672912 ], [ -95.464708053993192, 30.324447308322199 ], [ -95.464583053960823, 30.324465308302862 ], [ -95.463960053585055, 30.324625308402982 ], [ -95.463342052918875, 30.324779309182276 ], [ -95.462657052630547, 30.324962308896996 ], [ -95.462363052603521, 30.325032308860902 ], [ -95.4623090526146, 30.325077309284652 ], [ -95.460939052636164, 30.325410309232069 ], [ -95.460900052458342, 30.325345308979486 ], [ -95.460669052822183, 30.324916308659489 ], [ -95.460630052018601, 30.324827309228258 ], [ -95.460610052083808, 30.324760308943581 ], [ -95.460593052729195, 30.324663308535325 ], [ -95.46055805275418, 30.324098308880487 ], [ -95.460553052065734, 30.323422308517632 ], [ -95.460484052305091, 30.322446308536893 ], [ -95.460484052062768, 30.322322307980297 ], [ -95.46045605224883, 30.322187308369948 ], [ -95.460428052335516, 30.322120308121256 ], [ -95.460371051891826, 30.322028307929962 ], [ -95.460327051885386, 30.321972308031295 ], [ -95.460258052059828, 30.321915308546068 ], [ -95.460116052477602, 30.322060308523447 ], [ -95.459980051868413, 30.322152308387327 ], [ -95.459898051805212, 30.322186308725374 ], [ -95.459620052492284, 30.322242307965357 ], [ -95.459345052250086, 30.322274308724133 ], [ -95.459308052133977, 30.322278308285959 ], [ -95.458289051296461, 30.32251530881981 ], [ -95.458088052084236, 30.322364308073862 ], [ -95.458090052078731, 30.322196308251982 ], [ -95.457362051259466, 30.322183308102726 ], [ -95.455976050756689, 30.322174308116246 ], [ -95.4557650515261, 30.322175308371211 ], [ -95.45575605138805, 30.323281308693701 ], [ -95.455739051469735, 30.325704308964038 ], [ -95.455739051122478, 30.326479309558874 ], [ -95.455726050950631, 30.32794930994201 ], [ -95.455834051484871, 30.329512310136401 ], [ -95.456074052034822, 30.331071310319704 ], [ -95.456236051341619, 30.332122310579539 ], [ -95.456286051321783, 30.332449310655281 ], [ -95.456354051613019, 30.332886310427043 ], [ -95.456469051583696, 30.333627310422397 ], [ -95.456754051467286, 30.335470310967128 ], [ -95.457132052443754, 30.33825431133911 ], [ -95.457357052197494, 30.338233311291745 ], [ -95.458281052237552, 30.338125311888746 ], [ -95.458635052909344, 30.338076311975744 ], [ -95.459060052338899, 30.338013311193293 ], [ -95.459581052649114, 30.33791431132568 ], [ -95.459955052893562, 30.337825311367087 ], [ -95.460348053260233, 30.337742311596116 ], [ -95.460886052863771, 30.337616311381883 ], [ -95.461999053597452, 30.337367311771306 ], [ -95.462316053504523, 30.337301311640655 ], [ -95.463589053646814, 30.33700731110067 ], [ -95.464862054285788, 30.336713311342844 ], [ -95.467652054504924, 30.336085311081852 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1357, "Tract": "48339693401", "Area_SqMi": 0.7656191014154512, "total_2009": 1614, "total_2010": 1629, "total_2011": 1566, "total_2012": 2518, "total_2013": 2641, "total_2014": 2563, "total_2015": 2736, "total_2016": 2857, "total_2017": 2840, "total_2018": 2837, "total_2019": 2850, "total_2020": 2952, "age1": 494, "age2": 1039, "age3": 525, "earn1": 262, "earn2": 594, "earn3": 1202, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 76, "naics_s05": 26, "naics_s06": 163, "naics_s07": 645, "naics_s08": 4, "naics_s09": 0, "naics_s10": 66, "naics_s11": 36, "naics_s12": 109, "naics_s13": 0, "naics_s14": 163, "naics_s15": 0, "naics_s16": 13, "naics_s17": 35, "naics_s18": 159, "naics_s19": 83, "naics_s20": 478, "race1": 1781, "race2": 162, "race3": 25, "race4": 55, "race5": 0, "race6": 35, "ethnicity1": 1515, "ethnicity2": 543, "edu1": 315, "edu2": 435, "edu3": 523, "edu4": 291, "Shape_Length": 20111.475746305394, "Shape_Area": 21344150.177274674, "total_2021": 2029, "total_2022": 2058 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.469340053587388, 30.308111305328463 ], [ -95.469198054279019, 30.307689304862659 ], [ -95.469113053796207, 30.307439305476997 ], [ -95.468599053102849, 30.305882304817477 ], [ -95.468366053091003, 30.30519430457035 ], [ -95.467754052816119, 30.303382304150777 ], [ -95.467604053173062, 30.302922303918638 ], [ -95.46660705258617, 30.299872303363436 ], [ -95.46599605262783, 30.298011303111156 ], [ -95.464538052028189, 30.29356930227506 ], [ -95.464376052373865, 30.293077302276668 ], [ -95.464169051409243, 30.293129302089362 ], [ -95.464040051522375, 30.293159302469316 ], [ -95.462333051791958, 30.293565302616337 ], [ -95.461399050904546, 30.29378830216881 ], [ -95.457700050585416, 30.294665302452845 ], [ -95.457071050124895, 30.294811302778768 ], [ -95.456441049988527, 30.294956302855592 ], [ -95.456160049572745, 30.294999303149247 ], [ -95.455905050064885, 30.295041302815363 ], [ -95.455894050188576, 30.297109303654658 ], [ -95.455891050441082, 30.298180304057372 ], [ -95.455875049571461, 30.300246304163363 ], [ -95.45588404999927, 30.304764304687126 ], [ -95.455848050772076, 30.307113305043366 ], [ -95.455818050931228, 30.309527305581941 ], [ -95.455854050160639, 30.310067305628362 ], [ -95.455827050981668, 30.312175306715083 ], [ -95.456020050650281, 30.312165306139331 ], [ -95.457072051455029, 30.312171306686366 ], [ -95.458126051164854, 30.312179306295302 ], [ -95.45919205193492, 30.312180306658679 ], [ -95.459851052149219, 30.312189306694794 ], [ -95.460510051618527, 30.312192306619963 ], [ -95.461768051758483, 30.312225306023631 ], [ -95.461529052161353, 30.311515306071406 ], [ -95.461469052273372, 30.311340305994516 ], [ -95.461341052479412, 30.310960306207637 ], [ -95.461172052238524, 30.310460305529581 ], [ -95.461028051604998, 30.310033306159518 ], [ -95.46252205258341, 30.309662305878589 ], [ -95.46404105271634, 30.309303305476988 ], [ -95.467167053465616, 30.308568305364926 ], [ -95.468609053413005, 30.308212305385489 ], [ -95.468841053990417, 30.308155304977152 ], [ -95.469098053722973, 30.308151304789327 ], [ -95.469340053587388, 30.308111305328463 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1358, "Tract": "48339691201", "Area_SqMi": 1.2197917051791864, "total_2009": 2070, "total_2010": 2408, "total_2011": 2346, "total_2012": 2787, "total_2013": 2972, "total_2014": 3851, "total_2015": 3299, "total_2016": 3293, "total_2017": 3269, "total_2018": 4124, "total_2019": 4358, "total_2020": 3939, "age1": 904, "age2": 2749, "age3": 951, "earn1": 631, "earn2": 926, "earn3": 3047, "naics_s01": 0, "naics_s02": 601, "naics_s03": 0, "naics_s04": 269, "naics_s05": 226, "naics_s06": 223, "naics_s07": 86, "naics_s08": 89, "naics_s09": 22, "naics_s10": 156, "naics_s11": 276, "naics_s12": 698, "naics_s13": 282, "naics_s14": 331, "naics_s15": 92, "naics_s16": 612, "naics_s17": 332, "naics_s18": 250, "naics_s19": 59, "naics_s20": 0, "race1": 3708, "race2": 477, "race3": 26, "race4": 310, "race5": 9, "race6": 74, "ethnicity1": 3637, "ethnicity2": 967, "edu1": 534, "edu2": 831, "edu3": 1131, "edu4": 1204, "Shape_Length": 33165.130018586722, "Shape_Area": 34005705.046027578, "total_2021": 4538, "total_2022": 4604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.505870056522994, 30.1689722757407 ], [ -95.506778056577247, 30.168442275775092 ], [ -95.505662056742651, 30.167049275300776 ], [ -95.504793056538546, 30.166099274707541 ], [ -95.504030056297466, 30.165329274795443 ], [ -95.502545055463756, 30.166433275284842 ], [ -95.501664055129794, 30.16708827532128 ], [ -95.501245055953291, 30.167407275172337 ], [ -95.500703054968909, 30.167888275694253 ], [ -95.500482055499276, 30.168108275478286 ], [ -95.500284055377691, 30.168334275529958 ], [ -95.500138055101445, 30.168515275870792 ], [ -95.499974055079548, 30.168755275992449 ], [ -95.499833054941263, 30.169029276068549 ], [ -95.499603054724119, 30.169631276364321 ], [ -95.499476054993082, 30.170019276039913 ], [ -95.499082055496586, 30.171134276240124 ], [ -95.498970054860521, 30.171461276010067 ], [ -95.498670054952839, 30.172330276936712 ], [ -95.498397055138071, 30.173088277109603 ], [ -95.498194055212096, 30.173520276718957 ], [ -95.498099054816436, 30.173710276876573 ], [ -95.497981055331849, 30.173933276970683 ], [ -95.497715055311716, 30.174399277136615 ], [ -95.497528054499, 30.174713276740828 ], [ -95.497436055278826, 30.174859276945291 ], [ -95.497257055027021, 30.175133276789605 ], [ -95.497059055194143, 30.175422276953217 ], [ -95.496896055160278, 30.175649277782302 ], [ -95.496688054317389, 30.175913277505511 ], [ -95.49654305497603, 30.176107277050111 ], [ -95.496096054902054, 30.176621277791195 ], [ -95.495935055033684, 30.176793277492653 ], [ -95.495771054471049, 30.176942277886912 ], [ -95.4955980541108, 30.177084277615354 ], [ -95.495516054955957, 30.177142278027656 ], [ -95.495016054750423, 30.176595277316775 ], [ -95.494473054597194, 30.175899277493013 ], [ -95.494224053947647, 30.175502277183316 ], [ -95.493973054262696, 30.175080277078237 ], [ -95.493749053581695, 30.17465327692701 ], [ -95.493382053995077, 30.173901277511327 ], [ -95.493102054010578, 30.173344276753394 ], [ -95.492909053976859, 30.173006276751547 ], [ -95.492780053931185, 30.172793276948703 ], [ -95.492649053433126, 30.17261127659172 ], [ -95.492339052955742, 30.17226727649701 ], [ -95.492147053402405, 30.172073276814594 ], [ -95.491905052856183, 30.171860276846523 ], [ -95.491661052783172, 30.171655276460815 ], [ -95.49140405269867, 30.171448276902399 ], [ -95.491139052734027, 30.171260276326972 ], [ -95.490850053151931, 30.171081276387117 ], [ -95.490719052679864, 30.171009276384503 ], [ -95.490437053292951, 30.170853276245214 ], [ -95.489822052331917, 30.170513276231254 ], [ -95.48870805282057, 30.169873276680306 ], [ -95.487885052679715, 30.169414276351805 ], [ -95.487642051629336, 30.169287276635753 ], [ -95.487152051548449, 30.169029276202608 ], [ -95.486582051276272, 30.168742276601485 ], [ -95.486198051792883, 30.168592275950729 ], [ -95.485868051352682, 30.168487276717116 ], [ -95.485456051288352, 30.168382276527826 ], [ -95.485084051871965, 30.168298276341801 ], [ -95.484786050900169, 30.16824727643138 ], [ -95.48406005145084, 30.168167276329527 ], [ -95.483666051127173, 30.168143276675451 ], [ -95.483167050579297, 30.168152276472192 ], [ -95.482915050361626, 30.168180276763547 ], [ -95.482740051112785, 30.168199276043644 ], [ -95.482081050434715, 30.168338275945711 ], [ -95.48155705050111, 30.168487276559123 ], [ -95.481113050598879, 30.168629276328559 ], [ -95.480890050709277, 30.168722276722196 ], [ -95.480553050226803, 30.168868276111123 ], [ -95.480285050195022, 30.168984276829057 ], [ -95.479549050447773, 30.169304276542398 ], [ -95.479409050344955, 30.169358276996554 ], [ -95.479060049435802, 30.16947227688874 ], [ -95.478691049636453, 30.169573277076594 ], [ -95.478579049887458, 30.169597277038388 ], [ -95.478336049990702, 30.16964927662843 ], [ -95.477989049773925, 30.16971727717786 ], [ -95.477632049515165, 30.169759277169579 ], [ -95.477291049686187, 30.169781276635128 ], [ -95.476965049234394, 30.169788276485306 ], [ -95.476904049146, 30.169790276755677 ], [ -95.4765350488059, 30.169769276425935 ], [ -95.476147049052713, 30.16971227710706 ], [ -95.475526048993359, 30.169594276558303 ], [ -95.475303048999038, 30.169533277178964 ], [ -95.474590048414967, 30.169336276649769 ], [ -95.474495049004688, 30.169506277159801 ], [ -95.474411048247902, 30.16965627724738 ], [ -95.474298048976863, 30.169944277302672 ], [ -95.474087048282072, 30.17031827664988 ], [ -95.473733048933454, 30.170840277065263 ], [ -95.473418048844863, 30.171259277537629 ], [ -95.472982048827546, 30.171748277074901 ], [ -95.472424048377462, 30.17230627719454 ], [ -95.471743048220063, 30.173022277831951 ], [ -95.471377047875109, 30.17342327768398 ], [ -95.471097048259892, 30.173807277719618 ], [ -95.470993047987449, 30.174104277900653 ], [ -95.470940048407073, 30.174331278129959 ], [ -95.470993048563685, 30.174575278288305 ], [ -95.471115048203146, 30.174802277711326 ], [ -95.471516048749606, 30.175256278475995 ], [ -95.471813048536077, 30.175692277852558 ], [ -95.471763048784666, 30.176022278585428 ], [ -95.471663048343487, 30.176244278563633 ], [ -95.471359048368242, 30.176742278661855 ], [ -95.472511048129164, 30.176699278171604 ], [ -95.474707048668037, 30.176618278406931 ], [ -95.475551049418755, 30.176588278129444 ], [ -95.47600804985062, 30.176600278345788 ], [ -95.476246049610907, 30.176611277900889 ], [ -95.476439050057863, 30.176630278199262 ], [ -95.477004050122176, 30.176703277912889 ], [ -95.477544049569005, 30.176824277912363 ], [ -95.478029049639446, 30.176961278168619 ], [ -95.478489049971046, 30.177138278737264 ], [ -95.478883050183256, 30.177335278671578 ], [ -95.478916050550325, 30.17735227815789 ], [ -95.479309050466597, 30.177575278120795 ], [ -95.479711050332369, 30.177877278022954 ], [ -95.480159050422287, 30.17822727861358 ], [ -95.480609050868509, 30.178640278175283 ], [ -95.484468052263779, 30.182017278969166 ], [ -95.486348052804672, 30.183667279594822 ], [ -95.487664052746922, 30.184824279345111 ], [ -95.488681053443798, 30.183931279031654 ], [ -95.488989053443589, 30.183667279656898 ], [ -95.489238053072242, 30.183464279601036 ], [ -95.489381052917992, 30.183361278749945 ], [ -95.489585053459251, 30.18323927919343 ], [ -95.490010053022715, 30.183004279191113 ], [ -95.490512053784371, 30.182763278924764 ], [ -95.49083105332636, 30.182629278604477 ], [ -95.491177053415882, 30.1825052791628 ], [ -95.491595054093807, 30.182397279269448 ], [ -95.492063053949067, 30.182302278812791 ], [ -95.49322405421637, 30.182110279189768 ], [ -95.493569053998314, 30.182026279180128 ], [ -95.493846054298956, 30.181961278747181 ], [ -95.494333054204418, 30.181797278884073 ], [ -95.494917054536103, 30.181568278308252 ], [ -95.49516505458142, 30.181460278985369 ], [ -95.495433054505071, 30.181332278880841 ], [ -95.495686054292392, 30.181200278526457 ], [ -95.495890054851571, 30.181079278619031 ], [ -95.496078054997099, 30.180945278163502 ], [ -95.496536055071985, 30.180585278147415 ], [ -95.497161054749995, 30.180051278575277 ], [ -95.497632054950813, 30.17963727792986 ], [ -95.498049055472947, 30.179254277610962 ], [ -95.498415055735123, 30.178894277825563 ], [ -95.499132055198487, 30.178093277727868 ], [ -95.499333055019548, 30.177862277536423 ], [ -95.499506055217637, 30.177647277553607 ], [ -95.499969056058873, 30.177031277535647 ], [ -95.500108055404525, 30.176837277299654 ], [ -95.500375055332142, 30.176430277784423 ], [ -95.500679055870521, 30.175935277146735 ], [ -95.502396056191756, 30.172971276623805 ], [ -95.5025350563876, 30.172772276664524 ], [ -95.503233056354375, 30.17151027629064 ], [ -95.50353005576784, 30.171033276166366 ], [ -95.503849056021238, 30.170646276492675 ], [ -95.504189056717195, 30.170201275978727 ], [ -95.504726056731897, 30.169714275700468 ], [ -95.5052010568387, 30.169402275692811 ], [ -95.505743057126892, 30.16905427560625 ], [ -95.505870056522994, 30.1689722757407 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1359, "Tract": "48339692102", "Area_SqMi": 1.7149808547464416, "total_2009": 1639, "total_2010": 1336, "total_2011": 1368, "total_2012": 1413, "total_2013": 1524, "total_2014": 1518, "total_2015": 1737, "total_2016": 2025, "total_2017": 1725, "total_2018": 1854, "total_2019": 1888, "total_2020": 1856, "age1": 310, "age2": 1111, "age3": 337, "earn1": 184, "earn2": 278, "earn3": 1296, "naics_s01": 4, "naics_s02": 51, "naics_s03": 0, "naics_s04": 188, "naics_s05": 558, "naics_s06": 504, "naics_s07": 11, "naics_s08": 73, "naics_s09": 2, "naics_s10": 1, "naics_s11": 8, "naics_s12": 107, "naics_s13": 4, "naics_s14": 24, "naics_s15": 4, "naics_s16": 87, "naics_s17": 0, "naics_s18": 24, "naics_s19": 108, "naics_s20": 0, "race1": 1340, "race2": 290, "race3": 21, "race4": 79, "race5": 4, "race6": 24, "ethnicity1": 1273, "ethnicity2": 485, "edu1": 289, "edu2": 398, "edu3": 450, "edu4": 311, "Shape_Length": 27826.098594809118, "Shape_Area": 47810731.011262879, "total_2021": 2815, "total_2022": 1758 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.45777604706862, 30.226386289440118 ], [ -95.458010046779918, 30.226387288889125 ], [ -95.45774404741195, 30.223633288818522 ], [ -95.457564047290319, 30.221384287641513 ], [ -95.457517047193477, 30.22079628811764 ], [ -95.457449046803703, 30.219942288009122 ], [ -95.457420046380449, 30.219620288097527 ], [ -95.456931046372119, 30.214187286285647 ], [ -95.456778046236948, 30.212486286189439 ], [ -95.456723045935163, 30.211845285964852 ], [ -95.456721046674389, 30.21182628618698 ], [ -95.456545045497734, 30.209809285846383 ], [ -95.45636604555115, 30.207752284846183 ], [ -95.456353046058652, 30.207597284868751 ], [ -95.456100046291681, 30.207613285255182 ], [ -95.455796045229889, 30.20762728530304 ], [ -95.455619045186936, 30.207641285016301 ], [ -95.455415046083829, 30.207654285647003 ], [ -95.454227044860559, 30.207731285286982 ], [ -95.453731045447356, 30.207790285030608 ], [ -95.453038044822478, 30.207909285483439 ], [ -95.451814045090558, 30.208037285278671 ], [ -95.450961044325837, 30.208102285255826 ], [ -95.450279044418224, 30.208175285670812 ], [ -95.449154044100368, 30.208286285890079 ], [ -95.449123044398632, 30.208164285902015 ], [ -95.449078044180837, 30.20816928550634 ], [ -95.448949044172466, 30.208181285561977 ], [ -95.447251043542266, 30.208354285428022 ], [ -95.446716043338398, 30.208377285981417 ], [ -95.446481043711657, 30.208380285345307 ], [ -95.446059043394541, 30.208399285416039 ], [ -95.444348042438975, 30.208411285498411 ], [ -95.44338104226243, 30.208456286286825 ], [ -95.443176043034128, 30.208449285779029 ], [ -95.442130042610813, 30.208449285806683 ], [ -95.441584041628815, 30.208459285985214 ], [ -95.439979041860965, 30.208483286128676 ], [ -95.437909040963604, 30.208511285661832 ], [ -95.436561041084488, 30.208542285782592 ], [ -95.43475904082473, 30.208584286062514 ], [ -95.434423039936547, 30.208591285882303 ], [ -95.434179040484807, 30.208596286194631 ], [ -95.434235040779555, 30.213287287076838 ], [ -95.434359041252762, 30.221950288607587 ], [ -95.434396041301923, 30.224105289013487 ], [ -95.434644041179126, 30.226452289933221 ], [ -95.439441041950673, 30.226435289724705 ], [ -95.439881042298012, 30.226434289422301 ], [ -95.441887042809213, 30.226401289893211 ], [ -95.446285043879726, 30.226501289250027 ], [ -95.452023045835148, 30.226501289543673 ], [ -95.453420045689171, 30.226497289612155 ], [ -95.453402046118512, 30.226424288877361 ], [ -95.453652046076073, 30.226418288917401 ], [ -95.453889045664184, 30.226412289029486 ], [ -95.457429046587237, 30.226382289219607 ], [ -95.45777604706862, 30.226386289440118 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1360, "Tract": "48339693501", "Area_SqMi": 0.39674739926799868, "total_2009": 1086, "total_2010": 1205, "total_2011": 1242, "total_2012": 1051, "total_2013": 1126, "total_2014": 1022, "total_2015": 1288, "total_2016": 1237, "total_2017": 1227, "total_2018": 1368, "total_2019": 1327, "total_2020": 1067, "age1": 452, "age2": 709, "age3": 271, "earn1": 522, "earn2": 562, "earn3": 348, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 5, "naics_s06": 12, "naics_s07": 248, "naics_s08": 0, "naics_s09": 3, "naics_s10": 11, "naics_s11": 28, "naics_s12": 44, "naics_s13": 0, "naics_s14": 392, "naics_s15": 5, "naics_s16": 249, "naics_s17": 37, "naics_s18": 344, "naics_s19": 29, "naics_s20": 0, "race1": 1065, "race2": 279, "race3": 13, "race4": 57, "race5": 4, "race6": 14, "ethnicity1": 1082, "ethnicity2": 350, "edu1": 202, "edu2": 298, "edu3": 303, "edu4": 177, "Shape_Length": 13261.248065721751, "Shape_Area": 11060638.451631531, "total_2021": 1187, "total_2022": 1432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.478189056871642, 30.333545310317348 ], [ -95.478271057628334, 30.333516310273673 ], [ -95.477448057575486, 30.331352309861416 ], [ -95.477173057068427, 30.330648309796192 ], [ -95.476617056517426, 30.329222309585383 ], [ -95.476567056515677, 30.329095308907512 ], [ -95.476110056539412, 30.327904309223179 ], [ -95.47580705656037, 30.327114308897393 ], [ -95.475392055952057, 30.326030308247031 ], [ -95.47516205609665, 30.325430308630967 ], [ -95.475108056343558, 30.325272308770657 ], [ -95.475033056680189, 30.32529030855515 ], [ -95.474957056658923, 30.32530730838538 ], [ -95.474877056644814, 30.325329308732421 ], [ -95.474768056271728, 30.325359308791558 ], [ -95.474552055802661, 30.325419308631382 ], [ -95.4737340553542, 30.325646308980385 ], [ -95.473267055388192, 30.325735308589739 ], [ -95.47275605594416, 30.325788308581533 ], [ -95.471589055032567, 30.325865308305083 ], [ -95.47143505560669, 30.325867308445488 ], [ -95.471280054834907, 30.325868308443241 ], [ -95.469888054969957, 30.325936308593604 ], [ -95.46964405523542, 30.325982308399766 ], [ -95.466035053778612, 30.326908309049578 ], [ -95.465599053347276, 30.326998309104898 ], [ -95.465242053495004, 30.327033309357891 ], [ -95.465123053529155, 30.327032309029612 ], [ -95.465204054212634, 30.327364309058051 ], [ -95.465297053290598, 30.327746309243349 ], [ -95.465812054443546, 30.329553309898163 ], [ -95.465899054181364, 30.329864310083934 ], [ -95.466362053886598, 30.331508309718252 ], [ -95.466421054325593, 30.331720309658373 ], [ -95.467083054616268, 30.334123310884042 ], [ -95.467393054487431, 30.335192311088097 ], [ -95.467652054504924, 30.336085311081852 ], [ -95.470068055244269, 30.335538310252861 ], [ -95.471121055626867, 30.335298310228776 ], [ -95.471899055387595, 30.335121310201746 ], [ -95.473926056633999, 30.334640310827236 ], [ -95.474161056744848, 30.334585310156811 ], [ -95.474397055915418, 30.334531310763964 ], [ -95.475930056365428, 30.334175310334821 ], [ -95.477004057254064, 30.333917310186873 ], [ -95.477323057458733, 30.333821310191862 ], [ -95.477634057708713, 30.333704309740092 ], [ -95.477747057373961, 30.333673309886279 ], [ -95.478047057127, 30.333592310350348 ], [ -95.478108057551339, 30.33357531022321 ], [ -95.478189056871642, 30.333545310317348 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1361, "Tract": "48339692701", "Area_SqMi": 9.8277420245733218, "total_2009": 178, "total_2010": 182, "total_2011": 150, "total_2012": 173, "total_2013": 201, "total_2014": 213, "total_2015": 224, "total_2016": 279, "total_2017": 289, "total_2018": 315, "total_2019": 258, "total_2020": 295, "age1": 83, "age2": 144, "age3": 60, "earn1": 46, "earn2": 97, "earn3": 144, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 132, "naics_s05": 0, "naics_s06": 16, "naics_s07": 44, "naics_s08": 7, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 29, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 17, "naics_s17": 0, "naics_s18": 19, "naics_s19": 19, "naics_s20": 0, "race1": 242, "race2": 22, "race3": 3, "race4": 16, "race5": 0, "race6": 4, "ethnicity1": 191, "ethnicity2": 96, "edu1": 54, "edu2": 63, "edu3": 55, "edu4": 32, "Shape_Length": 110573.44977189085, "Shape_Area": 273980627.29652411, "total_2021": 303, "total_2022": 287 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.329994015697309, 30.252328298877831 ], [ -95.328864015123358, 30.251455298563972 ], [ -95.328570015390028, 30.251228298189019 ], [ -95.328101015269482, 30.250864298379305 ], [ -95.324553013479786, 30.248112298306047 ], [ -95.323970014186116, 30.247660298194173 ], [ -95.323765014251521, 30.247501297607513 ], [ -95.320571013153085, 30.245031297256858 ], [ -95.315785011777265, 30.241329296705953 ], [ -95.315492011601833, 30.241143297000367 ], [ -95.31519201078433, 30.240997297221938 ], [ -95.314471011559576, 30.240754296912272 ], [ -95.312508011011602, 30.240395297075771 ], [ -95.310811009964652, 30.240123297417007 ], [ -95.309062009634019, 30.239872296597344 ], [ -95.307236009108763, 30.239593297332064 ], [ -95.307056009150017, 30.239561296574138 ], [ -95.305423008712566, 30.239321296691536 ], [ -95.304510008490098, 30.239185296889428 ], [ -95.303599008277487, 30.239050296994513 ], [ -95.302879007686428, 30.238939297192072 ], [ -95.301823008042689, 30.238776297324303 ], [ -95.301564007436639, 30.238733297076369 ], [ -95.301305007737, 30.238677297206713 ], [ -95.301041007046308, 30.238612296598532 ], [ -95.300838007369109, 30.238548297163256 ], [ -95.300676007466066, 30.238489296612162 ], [ -95.300488007377922, 30.238409297119766 ], [ -95.300316007675775, 30.238330296564818 ], [ -95.29999700752586, 30.238157296649767 ], [ -95.299822007390816, 30.238053296816734 ], [ -95.299505007538514, 30.237840297218998 ], [ -95.299307007397104, 30.237686297016435 ], [ -95.299085006528131, 30.237502296422857 ], [ -95.29853100643551, 30.237057296881535 ], [ -95.298081006162022, 30.236701296393647 ], [ -95.29778300700255, 30.236458296595085 ], [ -95.295759005907001, 30.234805296773313 ], [ -95.29530800577443, 30.234445296507594 ], [ -95.294347005909913, 30.233678295933593 ], [ -95.292913005098143, 30.232534295735775 ], [ -95.292714005155645, 30.232366296095432 ], [ -95.292591004505979, 30.23225629638814 ], [ -95.292452005105829, 30.232123296237067 ], [ -95.292217004473329, 30.23188529570157 ], [ -95.29198800519633, 30.231626295533776 ], [ -95.291836004976432, 30.231415296017779 ], [ -95.29178000477259, 30.231323296152635 ], [ -95.291409005171275, 30.230702295557972 ], [ -95.289593003959808, 30.227785295618521 ], [ -95.287952003937207, 30.225146294829365 ], [ -95.287491003331681, 30.224390294487357 ], [ -95.287137003756527, 30.223811294266799 ], [ -95.285941002848062, 30.221891293719064 ], [ -95.285696003074648, 30.221470294431096 ], [ -95.285504003021885, 30.221142294428397 ], [ -95.285216002107617, 30.220677293704163 ], [ -95.284939002144455, 30.220251294046736 ], [ -95.284660002413375, 30.219870293357708 ], [ -95.284382002591244, 30.219474294056145 ], [ -95.283832002046353, 30.218818293345965 ], [ -95.283505002236978, 30.218465293771452 ], [ -95.283101002349355, 30.218005293658464 ], [ -95.282716002005131, 30.217629292972951 ], [ -95.282520001527075, 30.217433293290096 ], [ -95.282288001668718, 30.217199293030394 ], [ -95.281504000982466, 30.216446292854741 ], [ -95.280684001450851, 30.215606293129451 ], [ -95.280110000714302, 30.215018292719588 ], [ -95.278863001021449, 30.213778293037702 ], [ -95.2786270004611, 30.21354329236506 ], [ -95.273432999401876, 30.208377292182142 ], [ -95.272797998879753, 30.207798291799644 ], [ -95.272483998251815, 30.207566291651403 ], [ -95.271985998068217, 30.20720629188569 ], [ -95.271781998817517, 30.207074292008414 ], [ -95.271685998830165, 30.20701129123001 ], [ -95.271329997941095, 30.206816291840799 ], [ -95.270945997845516, 30.206613291755442 ], [ -95.270853998159168, 30.206574291665838 ], [ -95.270320997886898, 30.206348291987371 ], [ -95.269934997740592, 30.206203291805188 ], [ -95.269788997971133, 30.206152291530486 ], [ -95.269727997802093, 30.206131291862388 ], [ -95.269464997949157, 30.206056291854452 ], [ -95.269321997973165, 30.206015291422677 ], [ -95.267158997311469, 30.205522291073073 ], [ -95.266647997329969, 30.20540529104424 ], [ -95.266481997602654, 30.20536129122695 ], [ -95.265135996950647, 30.205052291317898 ], [ -95.26489799671991, 30.204997291381638 ], [ -95.26305999573718, 30.204575291635734 ], [ -95.257512994372448, 30.203302291567866 ], [ -95.256565994488156, 30.202984290936083 ], [ -95.256256994769814, 30.202833291535121 ], [ -95.256003993793513, 30.202696291707884 ], [ -95.255807993951549, 30.202573291686779 ], [ -95.255548993968745, 30.20239829166761 ], [ -95.255124994322472, 30.202011291373335 ], [ -95.254939994469694, 30.201825290792542 ], [ -95.25474799361875, 30.201591291250729 ], [ -95.254584993722389, 30.201350291301441 ], [ -95.254450993555523, 30.201096290826438 ], [ -95.254310993326555, 30.200812291006308 ], [ -95.254232994116904, 30.200598291268228 ], [ -95.254067993768686, 30.200021290704726 ], [ -95.253902993728175, 30.199425290937366 ], [ -95.253816993547389, 30.199056290415033 ], [ -95.253757993058969, 30.198714290349169 ], [ -95.253690993489684, 30.198195290880118 ], [ -95.253632993647244, 30.197819290244666 ], [ -95.253522993335679, 30.197293290062746 ], [ -95.253459993834227, 30.197069290561053 ], [ -95.253395992840538, 30.196871290182788 ], [ -95.252736993301497, 30.195056290311371 ], [ -95.252365993154072, 30.194037289982219 ], [ -95.251931992366394, 30.192842289818905 ], [ -95.250966992610373, 30.190047289339233 ], [ -95.250411992126914, 30.18847728890043 ], [ -95.250149992441408, 30.187733288887202 ], [ -95.249769992179367, 30.186831287892058 ], [ -95.249168991947229, 30.1858272880242 ], [ -95.249059991294146, 30.185645287901682 ], [ -95.248595991417517, 30.184963288392037 ], [ -95.247907991789191, 30.183949288197041 ], [ -95.247202990805704, 30.182912287862941 ], [ -95.24639799088186, 30.181727287192487 ], [ -95.246133990889476, 30.181338287652792 ], [ -95.245873990449994, 30.180956287436981 ], [ -95.245529990273127, 30.180450287037075 ], [ -95.245238990536208, 30.180020287516832 ], [ -95.244945989916857, 30.179589287303649 ], [ -95.244825989951664, 30.179413286694345 ], [ -95.244581990720278, 30.179054286885794 ], [ -95.244394989887297, 30.178779287112043 ], [ -95.2438129902729, 30.177922286811988 ], [ -95.243719990112737, 30.177959286388958 ], [ -95.243165989626831, 30.1780512864275 ], [ -95.24216398955528, 30.177777286966851 ], [ -95.241714989158282, 30.1775482870971 ], [ -95.241582989761994, 30.176999286747414 ], [ -95.241423989183659, 30.176838286130423 ], [ -95.24138198949808, 30.176828286765566 ], [ -95.24094898874506, 30.176724286342097 ], [ -95.240816989441043, 30.176541286399985 ], [ -95.24081598869445, 30.175419286100258 ], [ -95.240709989507152, 30.175281285986468 ], [ -95.240103989209047, 30.175213285949184 ], [ -95.240155988730919, 30.174938286496772 ], [ -95.240366988453289, 30.174732285937324 ], [ -95.240392988904219, 30.174503285947083 ], [ -95.24028698863971, 30.174434285906166 ], [ -95.239891988557687, 30.174435286065325 ], [ -95.239390988511033, 30.174297286417694 ], [ -95.239232989001863, 30.174504285765806 ], [ -95.238942988806315, 30.174527286355655 ], [ -95.238809988165116, 30.174161286248733 ], [ -95.238308987992838, 30.174115285953505 ], [ -95.237939988150785, 30.173909286108195 ], [ -95.237702988334775, 30.173887286156216 ], [ -95.237412987905415, 30.174002286011191 ], [ -95.237122988487997, 30.174322286071146 ], [ -95.236779988405161, 30.174369286635397 ], [ -95.236463987579796, 30.174140286329813 ], [ -95.236225987401752, 30.174140285747153 ], [ -95.235910987279311, 30.17446128623104 ], [ -95.235435987736139, 30.174668286410789 ], [ -95.235040987232125, 30.174966286665661 ], [ -95.234671987072431, 30.175081286096951 ], [ -95.234592987885705, 30.17503528633133 ], [ -95.234591987918179, 30.174577286756957 ], [ -95.23445998728549, 30.1744172865168 ], [ -95.234459987193986, 30.174210286388771 ], [ -95.234749987072362, 30.174027285865659 ], [ -95.234748987058765, 30.173798286454289 ], [ -95.234379987734968, 30.173706285783883 ], [ -95.234195987720454, 30.173592286240932 ], [ -95.234194987264303, 30.173409286284546 ], [ -95.234458987734669, 30.173157286431589 ], [ -95.234457987289545, 30.17295028618183 ], [ -95.234299987629143, 30.172859286185236 ], [ -95.233997987363978, 30.172827285879954 ], [ -95.233666987098729, 30.172791286173752 ], [ -95.23321898723934, 30.172402286335362 ], [ -95.232215986547573, 30.172196286362507 ], [ -95.23184798638259, 30.172999286213255 ], [ -95.231691986358044, 30.174396286539292 ], [ -95.231849986528246, 30.174602286184463 ], [ -95.231929986890194, 30.174969286269466 ], [ -95.231797986846516, 30.175335286563637 ], [ -95.231587986972272, 30.175565287088709 ], [ -95.230243986697062, 30.17611628692865 ], [ -95.22979598662296, 30.176414286552841 ], [ -95.229663986238037, 30.176620286898398 ], [ -95.229690986328691, 30.176872286759782 ], [ -95.229875986145743, 30.177124287305098 ], [ -95.230350986845139, 30.177376287110487 ], [ -95.230381986104291, 30.177903287458662 ], [ -95.230403986757949, 30.178269286897041 ], [ -95.230906986543417, 30.179414287290133 ], [ -95.230959986339073, 30.179689287455297 ], [ -95.230695986533817, 30.180101287170544 ], [ -95.230485986615619, 30.180674287597647 ], [ -95.230512986521745, 30.181041287667266 ], [ -95.230697987179298, 30.181270288038693 ], [ -95.230777986692146, 30.182049287957355 ], [ -95.231067987243776, 30.18239228792681 ], [ -95.231095987440057, 30.183079287855207 ], [ -95.231227986946919, 30.183331288522652 ], [ -95.230911986499805, 30.183813288270375 ], [ -95.231070987333055, 30.184202288820845 ], [ -95.231096986906593, 30.184637288490801 ], [ -95.231862987105444, 30.185369288533828 ], [ -95.232495987169415, 30.185552288795261 ], [ -95.232601987561821, 30.185644288285552 ], [ -95.232654987893369, 30.186010289100594 ], [ -95.232892987515996, 30.186262289181464 ], [ -95.232840987215383, 30.186995289105404 ], [ -95.23379098833496, 30.187682288758729 ], [ -95.233869988131261, 30.187911289191796 ], [ -95.234001987559694, 30.188048289441408 ], [ -95.234951988711799, 30.188391288926045 ], [ -95.235981988517736, 30.189283289325715 ], [ -95.235981988919534, 30.189558289139672 ], [ -95.236192988496171, 30.189764289038681 ], [ -95.236773988874205, 30.189832288995525 ], [ -95.236878988869762, 30.189901289188754 ], [ -95.236853989297813, 30.191207289336884 ], [ -95.236985988362932, 30.191367289879508 ], [ -95.237013989189265, 30.192352289717856 ], [ -95.236496989201015, 30.192724290119919 ], [ -95.236407988296008, 30.192788290396255 ], [ -95.236038988879812, 30.192880289978625 ], [ -95.235879988391829, 30.193109290196684 ], [ -95.235379988403253, 30.193316290384704 ], [ -95.235210988024704, 30.193441290208941 ], [ -95.235037988769761, 30.19356828995712 ], [ -95.23427298875086, 30.19350029033037 ], [ -95.23356098791956, 30.19359229049428 ], [ -95.233349988124814, 30.19377629019942 ], [ -95.233350987702707, 30.194280289983976 ], [ -95.233482988515561, 30.19448629029926 ], [ -95.233509987876914, 30.195127290183407 ], [ -95.233879988482457, 30.195402290428824 ], [ -95.23385398800734, 30.195723290524096 ], [ -95.233695987847071, 30.195906290846196 ], [ -95.233352988424656, 30.196090290737246 ], [ -95.233379988164344, 30.196365291050238 ], [ -95.233537988283885, 30.196502291183471 ], [ -95.233564988720758, 30.197052290547525 ], [ -95.233643988643564, 30.197097290917117 ], [ -95.233644988469123, 30.197372290909808 ], [ -95.233486988757292, 30.197487290992655 ], [ -95.232932988445143, 30.197556291128684 ], [ -95.232668987903281, 30.197740290975645 ], [ -95.232695988082853, 30.198290291249037 ], [ -95.232590987688283, 30.198519290834181 ], [ -95.232617987783343, 30.198702291093369 ], [ -95.232828988246638, 30.198908291558343 ], [ -95.233356988513606, 30.199297291176666 ], [ -95.234139988729453, 30.19933929095118 ], [ -95.234200988839831, 30.199342291085394 ], [ -95.234543988358752, 30.199479291369233 ], [ -95.234543988986402, 30.199754291039248 ], [ -95.233885988665264, 30.200556291902842 ], [ -95.233885988028931, 30.200946291295132 ], [ -95.23401798891291, 30.201106292123846 ], [ -95.234624989067925, 30.201312291803838 ], [ -95.235336988467338, 30.201219291964332 ], [ -95.235653989416377, 30.201380292058833 ], [ -95.236023988929432, 30.201654292051231 ], [ -95.236655988726099, 30.201539291844963 ], [ -95.236893989203679, 30.201585291567387 ], [ -95.237368989751943, 30.202042292200879 ], [ -95.237869989434273, 30.201904292170202 ], [ -95.238159989367048, 30.201767291435829 ], [ -95.238449989616697, 30.201835292098156 ], [ -95.239161989484856, 30.201834291613473 ], [ -95.239795990425705, 30.202223291984517 ], [ -95.240349989911167, 30.202406291919466 ], [ -95.240718989907364, 30.20274929174921 ], [ -95.240865990616243, 30.203184291535912 ], [ -95.240957990638535, 30.203459291917778 ], [ -95.242171990291794, 30.204489291905119 ], [ -95.242562991351662, 30.204650292083713 ], [ -95.242575991068151, 30.207936292700655 ], [ -95.242706991285473, 30.219564295057275 ], [ -95.243262991282378, 30.219554295153046 ], [ -95.245703992272809, 30.219510295393047 ], [ -95.247616992719571, 30.219475294670758 ], [ -95.249366993302147, 30.219430294933289 ], [ -95.249777993602962, 30.219406294794304 ], [ -95.250241994011972, 30.219380294887703 ], [ -95.25090499406852, 30.219286294908962 ], [ -95.251627993676692, 30.219138294879954 ], [ -95.25224899383457, 30.218979295086328 ], [ -95.252982994507093, 30.218761294551634 ], [ -95.253926994722889, 30.218495294181213 ], [ -95.25480999419959, 30.218239294484803 ], [ -95.255389995173033, 30.218101294677311 ], [ -95.255896995210819, 30.217989294342363 ], [ -95.25633099473842, 30.217918294669545 ], [ -95.256774994810129, 30.217867294194086 ], [ -95.257303995431769, 30.217841294148151 ], [ -95.257914995219735, 30.217817294375706 ], [ -95.259002995314404, 30.217836294613715 ], [ -95.258967995920344, 30.220963295047081 ], [ -95.259047995972352, 30.221182294671916 ], [ -95.259207995710952, 30.221313294990253 ], [ -95.259427996116742, 30.221374294614076 ], [ -95.261171996157898, 30.221340294656446 ], [ -95.261950996388009, 30.221367294742372 ], [ -95.263699997164977, 30.22137529440699 ], [ -95.264504997679083, 30.221496294749574 ], [ -95.268552998917471, 30.222998295019345 ], [ -95.269395999064756, 30.223302295087443 ], [ -95.269632998220786, 30.223435295201366 ], [ -95.269696998825211, 30.223490295204378 ], [ -95.270023998639189, 30.223773294669211 ], [ -95.270308999271691, 30.224199294772806 ], [ -95.270422998468334, 30.224535295548318 ], [ -95.270478999233191, 30.224762294972372 ], [ -95.270518998612701, 30.2250162955992 ], [ -95.270603998988292, 30.226903295443954 ], [ -95.270615999020464, 30.228218295745069 ], [ -95.27062599889102, 30.229311295980295 ], [ -95.270637999139623, 30.230234296160369 ], [ -95.270649999637513, 30.231055296255551 ], [ -95.270654999493289, 30.231732296786074 ], [ -95.27063699973138, 30.231900297068581 ], [ -95.270676999140292, 30.232093296806294 ], [ -95.270559999123265, 30.233427297117181 ], [ -95.270499999864043, 30.234105297121204 ], [ -95.270452999205759, 30.235430297368488 ], [ -95.270449999736528, 30.235542297889424 ], [ -95.270457999194377, 30.23603429754014 ], [ -95.270467999132308, 30.236620297732394 ], [ -95.270484999702049, 30.237664297865493 ], [ -95.270506999771754, 30.238930297804821 ], [ -95.270602000260524, 30.240190298118225 ], [ -95.270642000384797, 30.243831299151005 ], [ -95.270707000556015, 30.249539300104587 ], [ -95.270714000170415, 30.250124300350983 ], [ -95.270758000805913, 30.253237301466264 ], [ -95.270752000018661, 30.254824301340616 ], [ -95.276064002332731, 30.256107301101331 ], [ -95.279505003208754, 30.256945301676641 ], [ -95.280347003269341, 30.257150301547799 ], [ -95.28044700308412, 30.257174301791437 ], [ -95.29036500609061, 30.259538301907554 ], [ -95.29135800567721, 30.259767301284786 ], [ -95.291636006096809, 30.259818301939386 ], [ -95.29285500608627, 30.259981301947601 ], [ -95.293618006497482, 30.260057302088935 ], [ -95.294044006752557, 30.260088301261902 ], [ -95.294386007213944, 30.260103302002776 ], [ -95.299280008202274, 30.260257301697504 ], [ -95.29979300829973, 30.260263301514463 ], [ -95.300216008524757, 30.260239301863763 ], [ -95.30059100830745, 30.260197301077447 ], [ -95.300965007967932, 30.260130301712696 ], [ -95.301572008446243, 30.260001301540385 ], [ -95.302629008636444, 30.259715301677371 ], [ -95.305510010036301, 30.258934301070845 ], [ -95.305841009938618, 30.258845301126094 ], [ -95.307970010623677, 30.258269300989941 ], [ -95.308053010360737, 30.258247300344227 ], [ -95.30811801071242, 30.258228300787682 ], [ -95.309461010129823, 30.257849300819572 ], [ -95.312222011660083, 30.257110300617661 ], [ -95.315301011550815, 30.256275300271692 ], [ -95.315714012271499, 30.25616429997508 ], [ -95.316778012377384, 30.255876300197517 ], [ -95.320368013205481, 30.254926299676175 ], [ -95.324386014391806, 30.253831299404666 ], [ -95.326845014757993, 30.253202298723142 ], [ -95.327737015148941, 30.252958298814459 ], [ -95.328648015603946, 30.252709298497042 ], [ -95.329994015697309, 30.252328298877831 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1362, "Tract": "48339692008", "Area_SqMi": 5.7126057566904116, "total_2009": 138, "total_2010": 141, "total_2011": 83, "total_2012": 81, "total_2013": 77, "total_2014": 87, "total_2015": 94, "total_2016": 114, "total_2017": 151, "total_2018": 257, "total_2019": 236, "total_2020": 256, "age1": 357, "age2": 254, "age3": 90, "earn1": 300, "earn2": 222, "earn3": 179, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 33, "naics_s05": 0, "naics_s06": 5, "naics_s07": 132, "naics_s08": 2, "naics_s09": 157, "naics_s10": 7, "naics_s11": 12, "naics_s12": 39, "naics_s13": 0, "naics_s14": 35, "naics_s15": 5, "naics_s16": 37, "naics_s17": 12, "naics_s18": 201, "naics_s19": 20, "naics_s20": 0, "race1": 533, "race2": 104, "race3": 2, "race4": 44, "race5": 3, "race6": 15, "ethnicity1": 511, "ethnicity2": 190, "edu1": 65, "edu2": 100, "edu3": 107, "edu4": 72, "Shape_Length": 66778.044171684334, "Shape_Area": 159257671.27406108, "total_2021": 394, "total_2022": 701 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.397064028249417, 30.150645275797334 ], [ -95.396863027619347, 30.150431275725467 ], [ -95.396758027876714, 30.15004227548339 ], [ -95.396547028099917, 30.149675275511129 ], [ -95.396072027430833, 30.149217275597927 ], [ -95.3959150276918, 30.149145275169943 ], [ -95.39562402791023, 30.149011275499699 ], [ -95.394491027421893, 30.148828275405911 ], [ -95.39430602703203, 30.148599275517448 ], [ -95.394227027424762, 30.148302275200763 ], [ -95.394595027170752, 30.146721275097772 ], [ -95.394279027597918, 30.146194275150162 ], [ -95.394279027422868, 30.14532427478407 ], [ -95.393646026696175, 30.144728274464025 ], [ -95.393545026429777, 30.144519274255401 ], [ -95.393435026330266, 30.144293274229483 ], [ -95.393387026475864, 30.144234274186775 ], [ -95.393491026922135, 30.144176274423373 ], [ -95.394021027149307, 30.143883274330882 ], [ -95.394183026683478, 30.143794274051288 ], [ -95.394295026945386, 30.14373327416164 ], [ -95.39457602712416, 30.143577274141304 ], [ -95.395005027097099, 30.143345274596207 ], [ -95.39514502703544, 30.143259273925995 ], [ -95.39560002770709, 30.143047274695153 ], [ -95.396262027462825, 30.143034274312466 ], [ -95.39627002755077, 30.142502274350864 ], [ -95.396320027357945, 30.142369273905754 ], [ -95.395943027804762, 30.142313273900648 ], [ -95.395539027415865, 30.142250273941286 ], [ -95.395281027671516, 30.142269274257085 ], [ -95.395057027327226, 30.142287274557042 ], [ -95.394721027339429, 30.142391274377594 ], [ -95.39443302692699, 30.142444273797466 ], [ -95.394304027041443, 30.142469274151459 ], [ -95.393901027007857, 30.142434274034571 ], [ -95.393526026454253, 30.142231273861253 ], [ -95.39330702649896, 30.141857274320039 ], [ -95.393152026719605, 30.141426273592074 ], [ -95.393157026943143, 30.1410782737583 ], [ -95.393158026254696, 30.141021274188628 ], [ -95.393231026371581, 30.140683273763965 ], [ -95.393399027021658, 30.140330274091877 ], [ -95.393634026578056, 30.140046273951874 ], [ -95.393953026611783, 30.139901273472926 ], [ -95.39455402726, 30.139850273293309 ], [ -95.394554026570702, 30.139836273907175 ], [ -95.394555026506751, 30.139777273395879 ], [ -95.394556026728154, 30.139645273282543 ], [ -95.394557026812279, 30.139484273497565 ], [ -95.394557027163827, 30.139286273260304 ], [ -95.394556027370982, 30.13917827323316 ], [ -95.394555026871259, 30.138967273868619 ], [ -95.394942027441658, 30.138964273408874 ], [ -95.395752027360615, 30.138953273337844 ], [ -95.395928027451532, 30.13894827324356 ], [ -95.396083027645631, 30.138945273508011 ], [ -95.39627002776453, 30.138938273416976 ], [ -95.396362027146111, 30.138962273761042 ], [ -95.3963730275389, 30.138647273593559 ], [ -95.396360027045787, 30.138315273575895 ], [ -95.396350027411941, 30.138004273087969 ], [ -95.396344027574202, 30.137654273351842 ], [ -95.396342027160586, 30.1373072733711 ], [ -95.396320027564585, 30.136980273148961 ], [ -95.396297026996379, 30.136825272977859 ], [ -95.396265027147052, 30.136675272765288 ], [ -95.396227027034513, 30.136529272508046 ], [ -95.396205026940322, 30.136431273168402 ], [ -95.396189027149717, 30.13635627259066 ], [ -95.396176027322994, 30.136313272707181 ], [ -95.395799026841146, 30.136382273178608 ], [ -95.3946410271422, 30.136418273113115 ], [ -95.393533026319915, 30.136256272797919 ], [ -95.392692026300438, 30.136103273394365 ], [ -95.392386026223306, 30.135968273261255 ], [ -95.391748025813868, 30.13568727258486 ], [ -95.391046025277433, 30.135266273275487 ], [ -95.389715025348494, 30.134143272854644 ], [ -95.388292025152325, 30.133231272798291 ], [ -95.387083024669735, 30.132854272440103 ], [ -95.386848024249971, 30.132781272333823 ], [ -95.385556024338655, 30.132609272525308 ], [ -95.38547402383746, 30.131952272084639 ], [ -95.385331024141706, 30.131341272267019 ], [ -95.38519402438834, 30.13092927233021 ], [ -95.385043023974063, 30.130556272318213 ], [ -95.384391023551245, 30.129498271500012 ], [ -95.384291023675388, 30.129248271738316 ], [ -95.384042023303934, 30.12872827170747 ], [ -95.383861023321828, 30.128178271775049 ], [ -95.383752024001424, 30.12777327167727 ], [ -95.383672023730099, 30.127206271444475 ], [ -95.38366402331728, 30.126828271667634 ], [ -95.383681023796285, 30.126287271692856 ], [ -95.383912023749545, 30.12540327124433 ], [ -95.384066023662697, 30.124979270725095 ], [ -95.384085023419303, 30.124928271081096 ], [ -95.384285023323471, 30.124566271345472 ], [ -95.384562023334212, 30.12413727072207 ], [ -95.38499602398683, 30.123428270434367 ], [ -95.385357023238257, 30.122676270324629 ], [ -95.385521023884792, 30.121825269967768 ], [ -95.385660024004721, 30.120992270240873 ], [ -95.385588024133881, 30.120326269786901 ], [ -95.385429023212779, 30.119689270170017 ], [ -95.385082023137244, 30.118796269835912 ], [ -95.384755023233467, 30.118276269298335 ], [ -95.384581023750727, 30.117997269213188 ], [ -95.386069023823637, 30.116686269041118 ], [ -95.384620023018783, 30.115389269167029 ], [ -95.38392802257529, 30.114769268873239 ], [ -95.383663022951282, 30.114585268985092 ], [ -95.383614023397456, 30.114551268842817 ], [ -95.383486022445766, 30.114455268552735 ], [ -95.383339023115155, 30.114572268586262 ], [ -95.383144022836191, 30.114716268991213 ], [ -95.382898023140797, 30.114894268563948 ], [ -95.382572023162581, 30.115132269374989 ], [ -95.382102022943272, 30.115459269386658 ], [ -95.381821022813568, 30.11565526916845 ], [ -95.38201402206866, 30.11580426953801 ], [ -95.379904021804137, 30.117291269342967 ], [ -95.379078021535236, 30.117846269747286 ], [ -95.378097021500054, 30.118508269503696 ], [ -95.377546021130712, 30.118891270182345 ], [ -95.374912020552486, 30.120679270573891 ], [ -95.372524020686143, 30.122348270818733 ], [ -95.37224202039944, 30.122540270902622 ], [ -95.371781019870582, 30.122858270609779 ], [ -95.371299020529349, 30.123190271262462 ], [ -95.37093201996818, 30.123419270713164 ], [ -95.369136019471767, 30.124494271488629 ], [ -95.366561018923676, 30.125869272134043 ], [ -95.364310018973384, 30.127155271793072 ], [ -95.362228018354443, 30.128303272251532 ], [ -95.361539018328799, 30.128671272941762 ], [ -95.360865018262416, 30.129034272437853 ], [ -95.359831017328872, 30.129614273225449 ], [ -95.358944017381674, 30.130114272872884 ], [ -95.358575017663313, 30.13032027300078 ], [ -95.352368015871789, 30.133781274181462 ], [ -95.350469015092955, 30.134800274517389 ], [ -95.350086015289847, 30.135006274585447 ], [ -95.347733014544971, 30.136323274549337 ], [ -95.347669014319891, 30.136273274312845 ], [ -95.34762401430801, 30.136238274206381 ], [ -95.347259015072694, 30.13595727416125 ], [ -95.346758014422448, 30.135223274400765 ], [ -95.346258013936605, 30.134880274082274 ], [ -95.345889014209888, 30.134513273840145 ], [ -95.345757014143231, 30.13403227415035 ], [ -95.345283014361726, 30.133734273760012 ], [ -95.344940013377169, 30.133688274277091 ], [ -95.344255013281185, 30.133917274142338 ], [ -95.343781013528542, 30.133780273983572 ], [ -95.34285801294692, 30.133848274438279 ], [ -95.342357012916494, 30.13368827434175 ], [ -95.341725013148704, 30.133779274478091 ], [ -95.340539013092638, 30.133390274441822 ], [ -95.339907012557447, 30.133275273871394 ], [ -95.339248012405022, 30.13329827427955 ], [ -95.338909012611879, 30.133396274198208 ], [ -95.338833012794581, 30.133418274082793 ], [ -95.338928012377039, 30.133691274150753 ], [ -95.338981012273734, 30.133956274192084 ], [ -95.339025012647568, 30.134194274645193 ], [ -95.33904301278011, 30.13445927416095 ], [ -95.339025012692829, 30.134662274440039 ], [ -95.338990012555271, 30.134856274679031 ], [ -95.338902012655623, 30.135129274734911 ], [ -95.338681012487356, 30.135729274603552 ], [ -95.33849601269344, 30.136206274885939 ], [ -95.338325012811765, 30.136703274915643 ], [ -95.337914012665308, 30.137525274994349 ], [ -95.337517012617738, 30.138116274968741 ], [ -95.337331012235424, 30.13838927517374 ], [ -95.337173011910281, 30.138663275861511 ], [ -95.337084011997419, 30.138866275548395 ], [ -95.337040011926092, 30.1390602755123 ], [ -95.337005011811897, 30.139272275668443 ], [ -95.337040011606916, 30.139453275648854 ], [ -95.337111012181623, 30.139664275903833 ], [ -95.337214012646541, 30.139797275603563 ], [ -95.337314012165876, 30.139850275577189 ], [ -95.337441011941834, 30.139948275713234 ], [ -95.337653012777736, 30.140150275856293 ], [ -95.337795011874064, 30.140335275419211 ], [ -95.337936012456893, 30.140564276196212 ], [ -95.338130012622074, 30.140838276140816 ], [ -95.338350012943366, 30.141138275878735 ], [ -95.338381012455457, 30.141185275611377 ], [ -95.338453012212099, 30.141294276110884 ], [ -95.338606012620488, 30.141526276037052 ], [ -95.338650012420842, 30.141632275918735 ], [ -95.338668012664883, 30.141764275674831 ], [ -95.338677012853793, 30.142042276295502 ], [ -95.338624012488154, 30.142943276016904 ], [ -95.338615012668242, 30.143286276085963 ], [ -95.338615012971758, 30.143665276761038 ], [ -95.338624012854368, 30.143912276157085 ], [ -95.338650013213368, 30.144168276434915 ], [ -95.338668012879367, 30.144310276353359 ], [ -95.338712012820039, 30.144548276718627 ], [ -95.338800013212719, 30.144839276814444 ], [ -95.338880013148611, 30.145033277084195 ], [ -95.33898601329237, 30.145209276715377 ], [ -95.339127013235654, 30.145377276292436 ], [ -95.339268012823922, 30.145536276305211 ], [ -95.339427013300636, 30.145677277139196 ], [ -95.339630012686285, 30.145792276495399 ], [ -95.339842013603032, 30.145880276813973 ], [ -95.340150013468133, 30.146012277106056 ], [ -95.3404860133829, 30.146127276999021 ], [ -95.340724013779493, 30.146198276839506 ], [ -95.340953013396927, 30.146215277048821 ], [ -95.341191013784183, 30.146171277001994 ], [ -95.34139401326911, 30.146101276906993 ], [ -95.341518013476659, 30.146021276710922 ], [ -95.341677013785926, 30.145854276968681 ], [ -95.341774013973165, 30.145756276388923 ], [ -95.341915013725071, 30.14567727695599 ], [ -95.342171013962698, 30.145554276673835 ], [ -95.342621013718897, 30.145324276363322 ], [ -95.342978013528764, 30.145108276628445 ], [ -95.3434550142521, 30.144905276494796 ], [ -95.343843014517077, 30.144755276227777 ], [ -95.344249014426751, 30.144605276653191 ], [ -95.34454001402969, 30.144508276235058 ], [ -95.344743014521185, 30.144473276808526 ], [ -95.344928014663239, 30.144517275977936 ], [ -95.345325014966917, 30.144702276268163 ], [ -95.346088015041246, 30.145139276121803 ], [ -95.346379014670205, 30.145227276397772 ], [ -95.346979015196283, 30.145421276107875 ], [ -95.347694015102007, 30.145659276583331 ], [ -95.348250014923806, 30.145889276349958 ], [ -95.348585015530318, 30.146004276495564 ], [ -95.348920015875933, 30.146074276278149 ], [ -95.34987301535719, 30.146206276106394 ], [ -95.350513015491941, 30.14635627692946 ], [ -95.35083001641317, 30.146427276386895 ], [ -95.351183015818364, 30.14652427659815 ], [ -95.351572015951888, 30.146630276851841 ], [ -95.351863015932949, 30.146683276640655 ], [ -95.352127016442196, 30.146701276441807 ], [ -95.352471016766344, 30.14670927671445 ], [ -95.352939016321415, 30.14665627605568 ], [ -95.353168016726741, 30.14665627660538 ], [ -95.3533800169659, 30.146692276314479 ], [ -95.353654016329131, 30.146753276378178 ], [ -95.354104017259246, 30.146912276963487 ], [ -95.35449801746374, 30.147057276124062 ], [ -95.354774017219142, 30.147212276441397 ], [ -95.354960016700701, 30.147398276158597 ], [ -95.355070017021646, 30.147570276547384 ], [ -95.355123016862009, 30.147675276709496 ], [ -95.355140017234362, 30.147887276346303 ], [ -95.35515801704112, 30.148187276484716 ], [ -95.355229017505948, 30.148540277110182 ], [ -95.355317016942465, 30.148928276995981 ], [ -95.35544001695898, 30.149281277302563 ], [ -95.355652017077489, 30.149669276874018 ], [ -95.356023017876652, 30.150128276951566 ], [ -95.356376017785763, 30.150446277529504 ], [ -95.356841017486872, 30.150788277337789 ], [ -95.35719101771349, 30.150972277658475 ], [ -95.357661018273745, 30.151068277441546 ], [ -95.35793701782201, 30.151037276865502 ], [ -95.358087018291116, 30.151002277205929 ], [ -95.358255017708657, 30.15094927680688 ], [ -95.358467017872073, 30.150852277531655 ], [ -95.358696018400408, 30.150755276882656 ], [ -95.359102018300533, 30.150596276804926 ], [ -95.359446018320682, 30.150508277277883 ], [ -95.359834018560292, 30.150437277442492 ], [ -95.360125018664704, 30.150411276820865 ], [ -95.360293018955858, 30.1504192772232 ], [ -95.360461018490838, 30.150455277166866 ], [ -95.360734018332622, 30.150534277240943 ], [ -95.36096301854883, 30.150596276597394 ], [ -95.36140401938097, 30.150769276688258 ], [ -95.361775019423632, 30.150940277476064 ], [ -95.362190018671953, 30.151152277493047 ], [ -95.362428019550052, 30.15131027711443 ], [ -95.362640019126502, 30.151496277001137 ], [ -95.363152019187893, 30.152016277154129 ], [ -95.363575019270655, 30.152440277066113 ], [ -95.363990019480468, 30.152810277385644 ], [ -95.364246019984492, 30.15304027781049 ], [ -95.364396020124801, 30.153216277560297 ], [ -95.364704020301971, 30.153649277797847 ], [ -95.36483701990565, 30.15381627768577 ], [ -95.364969020122714, 30.153940277470884 ], [ -95.365269019612128, 30.154169277672178 ], [ -95.365521019812846, 30.154394277302114 ], [ -95.365816019861413, 30.154619277310438 ], [ -95.36600102026712, 30.154716277483519 ], [ -95.366142020287086, 30.154778277735424 ], [ -95.366345019870707, 30.154831278003556 ], [ -95.366557020568735, 30.154848277528412 ], [ -95.366751020506229, 30.154831277257138 ], [ -95.366989020857304, 30.154778277335506 ], [ -95.367272020843515, 30.154681277276996 ], [ -95.367731020717102, 30.154504277746152 ], [ -95.367898020967885, 30.154478277749607 ], [ -95.368092021292455, 30.154496277196554 ], [ -95.368286020749338, 30.154540277770895 ], [ -95.368745021140995, 30.154707277305565 ], [ -95.369160020810796, 30.154901277817256 ], [ -95.369398021619872, 30.155016277928198 ], [ -95.369504021537935, 30.155104277332164 ], [ -95.369672021192926, 30.155343277542322 ], [ -95.369785021468758, 30.155548277453757 ], [ -95.369839021088126, 30.155722277622729 ], [ -95.369892021306697, 30.156004278150863 ], [ -95.369919020802513, 30.156234278239264 ], [ -95.3699100214791, 30.156428278319805 ], [ -95.369892020882943, 30.156639277716327 ], [ -95.369839021512377, 30.156878278231943 ], [ -95.369760021060713, 30.157151278136759 ], [ -95.369654020849495, 30.15751327854494 ], [ -95.369530021273746, 30.157963278537437 ], [ -95.369508020799955, 30.158135278327716 ], [ -95.369500021001542, 30.158311278722707 ], [ -95.369508021328414, 30.158523278309559 ], [ -95.369517020954163, 30.158779278573807 ], [ -95.369553021429027, 30.159035278155976 ], [ -95.369632021836992, 30.15930827853785 ], [ -95.36976402118799, 30.159591278538322 ], [ -95.369861021302214, 30.159776278138526 ], [ -95.369976021899461, 30.159944278348323 ], [ -95.370064022045511, 30.160049279007598 ], [ -95.370205021856094, 30.16015527898232 ], [ -95.370401021845012, 30.160252278645164 ], [ -95.370647021263963, 30.16033227899965 ], [ -95.370982021749228, 30.160420278946415 ], [ -95.371149021610179, 30.160455278486829 ], [ -95.371308021765529, 30.160447278831761 ], [ -95.371979022024419, 30.160341278624013 ], [ -95.372270021904683, 30.160314278215846 ], [ -95.372799022370671, 30.160297278739165 ], [ -95.373390021949774, 30.160305278225582 ], [ -95.373770022136327, 30.160332278243565 ], [ -95.37397302288413, 30.16038527824492 ], [ -95.3742640228147, 30.160517278855288 ], [ -95.374630022347176, 30.16072027833075 ], [ -95.374868023036285, 30.160874278516214 ], [ -95.37497402243288, 30.160998279089064 ], [ -95.375098022804494, 30.161130279117238 ], [ -95.375159022478144, 30.16121027852256 ], [ -95.375221022476211, 30.161324278306651 ], [ -95.375274023230986, 30.16154527916709 ], [ -95.375318022593575, 30.161774278580904 ], [ -95.375336023464186, 30.161933278636212 ], [ -95.37530902312929, 30.1621892790324 ], [ -95.375265023113414, 30.162357278554882 ], [ -95.375089023198299, 30.162727279057613 ], [ -95.374930022694912, 30.163001279185607 ], [ -95.374718022638888, 30.163433279474017 ], [ -95.374577022769557, 30.163733279005054 ], [ -95.374515022926346, 30.163954279569392 ], [ -95.374507022593662, 30.16409527909218 ], [ -95.374524023412377, 30.16430727914004 ], [ -95.374567022817772, 30.164612279802476 ], [ -95.377262023522007, 30.163023278547847 ], [ -95.3800710239437, 30.160710278498048 ], [ -95.38027102463515, 30.160546278831617 ], [ -95.38087202393109, 30.160108278636578 ], [ -95.397064028249417, 30.150645275797334 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1363, "Tract": "48339692103", "Area_SqMi": 7.442707345227773, "total_2009": 750, "total_2010": 846, "total_2011": 1019, "total_2012": 1051, "total_2013": 1137, "total_2014": 1172, "total_2015": 1057, "total_2016": 1160, "total_2017": 1282, "total_2018": 1641, "total_2019": 1608, "total_2020": 1789, "age1": 776, "age2": 1526, "age3": 447, "earn1": 482, "earn2": 799, "earn3": 1468, "naics_s01": 0, "naics_s02": 0, "naics_s03": 4, "naics_s04": 80, "naics_s05": 181, "naics_s06": 36, "naics_s07": 311, "naics_s08": 8, "naics_s09": 30, "naics_s10": 14, "naics_s11": 4, "naics_s12": 58, "naics_s13": 0, "naics_s14": 11, "naics_s15": 9, "naics_s16": 1476, "naics_s17": 145, "naics_s18": 264, "naics_s19": 49, "naics_s20": 69, "race1": 1875, "race2": 440, "race3": 26, "race4": 347, "race5": 8, "race6": 53, "ethnicity1": 2008, "ethnicity2": 741, "edu1": 399, "edu2": 451, "edu3": 594, "edu4": 529, "Shape_Length": 83740.934482948665, "Shape_Area": 207489942.46402028, "total_2021": 2262, "total_2022": 2749 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.456353046058652, 30.207597284868751 ], [ -95.456342045827341, 30.207495285675549 ], [ -95.45631904605149, 30.207236284865377 ], [ -95.456308045839975, 30.207117285162912 ], [ -95.456287045892168, 30.20687628507169 ], [ -95.456133045826505, 30.205124284914969 ], [ -95.456075045798229, 30.204612285110422 ], [ -95.456062045813468, 30.20449528489041 ], [ -95.455973045543089, 30.20382828448539 ], [ -95.455867045080254, 30.203026284155637 ], [ -95.455623045048952, 30.201837284408917 ], [ -95.45522204567655, 30.199978283883016 ], [ -95.454780044646995, 30.197755283459099 ], [ -95.454642045262489, 30.197059283139055 ], [ -95.454457044510235, 30.196129283433269 ], [ -95.454097044363678, 30.194339282396996 ], [ -95.454026044838642, 30.193987282854959 ], [ -95.454006044480948, 30.193889282957127 ], [ -95.453958044118281, 30.193650282529457 ], [ -95.453618044167868, 30.191955282479782 ], [ -95.453478043984134, 30.191259282110742 ], [ -95.453367044288839, 30.190590281606806 ], [ -95.453234044143272, 30.189797281532464 ], [ -95.452957044046627, 30.189801281652421 ], [ -95.452653044252727, 30.189806281615848 ], [ -95.451895044226532, 30.189810281734637 ], [ -95.450151043304672, 30.189820281544161 ], [ -95.449417043655657, 30.189842282263378 ], [ -95.449213043544873, 30.189834281991054 ], [ -95.448960042885588, 30.189830281760397 ], [ -95.448269042762689, 30.189822282187055 ], [ -95.447867042756982, 30.189819281689502 ], [ -95.447696042837293, 30.189815281823197 ], [ -95.447658042363841, 30.189670281839934 ], [ -95.445962042611086, 30.189748282167997 ], [ -95.44478804224056, 30.189534282381928 ], [ -95.44468704197935, 30.189494281761217 ], [ -95.444420041979711, 30.189395281713285 ], [ -95.444688042114464, 30.190477282543227 ], [ -95.444918041677724, 30.191402282544502 ], [ -95.445306042671149, 30.192955282828901 ], [ -95.4398540411228, 30.192975282494206 ], [ -95.432432038893666, 30.19308228323932 ], [ -95.432384038500047, 30.190878282270496 ], [ -95.43237603941661, 30.19050628288737 ], [ -95.425580037285911, 30.190544283004325 ], [ -95.418464035200969, 30.190591282927869 ], [ -95.418492035145491, 30.194266283587858 ], [ -95.413229034164786, 30.194266284364687 ], [ -95.422112036376689, 30.18234228130969 ], [ -95.424434036151411, 30.179224280569951 ], [ -95.426227036631261, 30.176627279639533 ], [ -95.428642037021575, 30.173086279110411 ], [ -95.428190036801794, 30.173091279056276 ], [ -95.426631037040252, 30.173108278914537 ], [ -95.421152035415389, 30.173163279721916 ], [ -95.420516034701024, 30.17316427966351 ], [ -95.419981034905945, 30.173165279692828 ], [ -95.419152034450292, 30.173179279905103 ], [ -95.418741035019991, 30.173192279661823 ], [ -95.418468034968924, 30.173213279832414 ], [ -95.418139034110567, 30.173253279742493 ], [ -95.417845034763062, 30.173298279233325 ], [ -95.41771503470747, 30.173314279595417 ], [ -95.417453034290517, 30.173334279941084 ], [ -95.41708603437651, 30.173355280042074 ], [ -95.415639034139559, 30.173404280206416 ], [ -95.415112034167507, 30.173418279975269 ], [ -95.411748033079817, 30.173449280169852 ], [ -95.409033032620087, 30.173484280209593 ], [ -95.406783031547988, 30.173504279629647 ], [ -95.406719032071507, 30.173505280001827 ], [ -95.405127031255532, 30.173536279803326 ], [ -95.401917030520721, 30.173572280404578 ], [ -95.399178030029589, 30.173603280325214 ], [ -95.396135028906585, 30.173612280557659 ], [ -95.39319202763626, 30.173660280797211 ], [ -95.392086027467229, 30.173685280675972 ], [ -95.390305027331749, 30.173725280529467 ], [ -95.38995202746699, 30.173746280949651 ], [ -95.389804026802295, 30.173712281139998 ], [ -95.38975902694888, 30.173609280676828 ], [ -95.389725027065495, 30.173513280245309 ], [ -95.381266024545212, 30.17347928124817 ], [ -95.37973602427391, 30.173495280827968 ], [ -95.379138024056303, 30.174894281677918 ], [ -95.379004024664539, 30.175223281826174 ], [ -95.378853024674299, 30.175650281894139 ], [ -95.378835025014226, 30.175882281548539 ], [ -95.378862024903214, 30.176024281948585 ], [ -95.378915024427556, 30.176113281150347 ], [ -95.379022024691665, 30.17625128169853 ], [ -95.379227024810916, 30.176429281353151 ], [ -95.379432025225896, 30.176589281421087 ], [ -95.380135024994473, 30.177008281692938 ], [ -95.380508024801117, 30.177221281526119 ], [ -95.381425024894668, 30.1776222813807 ], [ -95.382013025698839, 30.17789828157548 ], [ -95.382128025590973, 30.177987282023622 ], [ -95.382342025342439, 30.178200282309813 ], [ -95.382484025328552, 30.178360282245013 ], [ -95.382734025139527, 30.178752282401099 ], [ -95.383018026074325, 30.179130282430961 ], [ -95.383214025925071, 30.179406282363459 ], [ -95.38327702534859, 30.179575281693005 ], [ -95.383321026142383, 30.179816282544795 ], [ -95.383348025682594, 30.180261282526974 ], [ -95.383392025773745, 30.180448282038469 ], [ -95.383677026150849, 30.181156282742222 ], [ -95.384006026584657, 30.181685282506002 ], [ -95.384122025887905, 30.181885282197044 ], [ -95.384176026058753, 30.182019282554339 ], [ -95.384211025836677, 30.182232282679426 ], [ -95.384211026339827, 30.182410282656924 ], [ -95.384158026213512, 30.182740282561273 ], [ -95.384104025921886, 30.182926282848722 ], [ -95.383926026566485, 30.183265283158526 ], [ -95.383811025687493, 30.183452283168076 ], [ -95.383641026507746, 30.18361228335792 ], [ -95.383463025983147, 30.183763283071059 ], [ -95.38322302562409, 30.183914283249944 ], [ -95.383045026248766, 30.184003283078667 ], [ -95.382502025940624, 30.184226282679898 ], [ -95.382107025423309, 30.184449283379855 ], [ -95.382019026030633, 30.18452928348168 ], [ -95.38191302557702, 30.184652283515444 ], [ -95.381860026132202, 30.184740283190322 ], [ -95.381781025883711, 30.18491728364123 ], [ -95.381693026033957, 30.185182283430841 ], [ -95.381525025549266, 30.185578283405896 ], [ -95.381499025491138, 30.18568428332236 ], [ -95.381496025734904, 30.185894283863604 ], [ -95.382039025398953, 30.186695283981532 ], [ -95.382622026303991, 30.187314283836518 ], [ -95.383041026623772, 30.187732284216292 ], [ -95.383320026131656, 30.188064284149561 ], [ -95.38361602625325, 30.188465283738388 ], [ -95.383791026127042, 30.188849283979714 ], [ -95.384140026463072, 30.18984428413199 ], [ -95.384332026312677, 30.19031528443433 ], [ -95.384524026375686, 30.190769284306917 ], [ -95.384856026692518, 30.191170284492443 ], [ -95.385100026521869, 30.191450284604901 ], [ -95.385711027297219, 30.19213028425942 ], [ -95.386426027008341, 30.19296828517199 ], [ -95.387159027432901, 30.193867284703991 ], [ -95.387508027566739, 30.194443284895847 ], [ -95.387840027992098, 30.195263284939774 ], [ -95.388014027856556, 30.195560285467174 ], [ -95.388102027430037, 30.195664284996727 ], [ -95.388137027313391, 30.195752285482289 ], [ -95.38846802779149, 30.195996285588709 ], [ -95.388660028078874, 30.19629328526759 ], [ -95.388887028074677, 30.196607284993885 ], [ -95.389201028265475, 30.197113285697665 ], [ -95.38942802839837, 30.197235285736994 ], [ -95.389952028623611, 30.197357285262765 ], [ -95.39045802858567, 30.197497285478324 ], [ -95.390964028259191, 30.197689285374931 ], [ -95.391685029029389, 30.197919285593297 ], [ -95.392486029187182, 30.198339285463167 ], [ -95.392783029083972, 30.198566285324723 ], [ -95.39292302870895, 30.19877528557123 ], [ -95.393080029358515, 30.199229286189308 ], [ -95.393219029359116, 30.199683286084181 ], [ -95.393289029634417, 30.200067286396241 ], [ -95.393307029788843, 30.200398286056931 ], [ -95.393272029482503, 30.200782285751774 ], [ -95.393272029660466, 30.201393286138135 ], [ -95.393150029830537, 30.201969286324172 ], [ -95.392870029312107, 30.203103286191858 ], [ -95.39276602891546, 30.203679287050004 ], [ -95.392696029822091, 30.20425528650232 ], [ -95.392505029347376, 30.205570286950927 ], [ -95.392495029146701, 30.206153287376655 ], [ -95.39253002967024, 30.20637128701474 ], [ -95.39260002959351, 30.206554287141739 ], [ -95.392705029149795, 30.206755287317211 ], [ -95.392818029991219, 30.206903287405236 ], [ -95.39300102952599, 30.207069287557093 ], [ -95.393228029983348, 30.207209287052837 ], [ -95.393630030149936, 30.207392287706941 ], [ -95.394075030234873, 30.207532287758575 ], [ -95.394572029782438, 30.207645287647168 ], [ -95.395165029715685, 30.207741287304049 ], [ -95.395549030105997, 30.207759286987866 ], [ -95.395933030787106, 30.207750287622446 ], [ -95.396457030660031, 30.207741286967838 ], [ -95.396701030828424, 30.207759287139247 ], [ -95.396911030420029, 30.207785287331404 ], [ -95.39707603096609, 30.207837287373231 ], [ -95.397356031011512, 30.207968287699227 ], [ -95.397495030663364, 30.208090287410627 ], [ -95.397652031183028, 30.208247287328199 ], [ -95.397835031261579, 30.208465287278312 ], [ -95.397966031173965, 30.20866628730656 ], [ -95.398045031009474, 30.208832287757502 ], [ -95.39808003131769, 30.208980287854487 ], [ -95.398080030986748, 30.209137287197034 ], [ -95.398080031433224, 30.209303287362715 ], [ -95.398062031193788, 30.209447288013855 ], [ -95.398001030522025, 30.209639287344192 ], [ -95.397940030568421, 30.209875288014185 ], [ -95.39789703076994, 30.210128288197268 ], [ -95.397826030579949, 30.210481288013739 ], [ -95.398242030643175, 30.210324287674808 ], [ -95.400181031376633, 30.209592287347593 ], [ -95.400593031350184, 30.209446287410614 ], [ -95.401017031919196, 30.209309287502105 ], [ -95.401193031714797, 30.20925828782887 ], [ -95.401473031448518, 30.209176287893012 ], [ -95.402064032206511, 30.209015287291884 ], [ -95.402227032108698, 30.208980287012977 ], [ -95.402549031982886, 30.208910287273888 ], [ -95.403182032460634, 30.208792287390267 ], [ -95.403727032348939, 30.208710286884205 ], [ -95.404324032479664, 30.208640287738834 ], [ -95.404552032697765, 30.208614287118735 ], [ -95.405003032905128, 30.208585287203064 ], [ -95.405602032523362, 30.208562287450814 ], [ -95.407249033394677, 30.208549287056336 ], [ -95.409306033807184, 30.20855828681702 ], [ -95.409412034135173, 30.20855828676077 ], [ -95.412287034754414, 30.208577287444367 ], [ -95.415815035621577, 30.208700286664769 ], [ -95.415946035857687, 30.208703287341425 ], [ -95.41689503599865, 30.208723286499612 ], [ -95.418309036153431, 30.208722286607301 ], [ -95.418800035848435, 30.208727287229717 ], [ -95.420484036376308, 30.208711287132573 ], [ -95.4206980369447, 30.20871028642263 ], [ -95.422296037413389, 30.208702286281287 ], [ -95.42340203772757, 30.208704286286924 ], [ -95.42715703879999, 30.208685286110914 ], [ -95.430478039739427, 30.208669286737983 ], [ -95.431402039869951, 30.208649286709033 ], [ -95.431787039890963, 30.208640286494475 ], [ -95.433628040405381, 30.208609285925753 ], [ -95.434179040484807, 30.208596286194631 ], [ -95.434423039936547, 30.208591285882303 ], [ -95.43475904082473, 30.208584286062514 ], [ -95.436561041084488, 30.208542285782592 ], [ -95.437909040963604, 30.208511285661832 ], [ -95.439979041860965, 30.208483286128676 ], [ -95.441584041628815, 30.208459285985214 ], [ -95.442130042610813, 30.208449285806683 ], [ -95.443176043034128, 30.208449285779029 ], [ -95.44338104226243, 30.208456286286825 ], [ -95.444348042438975, 30.208411285498411 ], [ -95.446059043394541, 30.208399285416039 ], [ -95.446481043711657, 30.208380285345307 ], [ -95.446716043338398, 30.208377285981417 ], [ -95.447251043542266, 30.208354285428022 ], [ -95.448949044172466, 30.208181285561977 ], [ -95.449078044180837, 30.20816928550634 ], [ -95.449123044398632, 30.208164285902015 ], [ -95.449154044100368, 30.208286285890079 ], [ -95.450279044418224, 30.208175285670812 ], [ -95.450961044325837, 30.208102285255826 ], [ -95.451814045090558, 30.208037285278671 ], [ -95.453038044822478, 30.207909285483439 ], [ -95.453731045447356, 30.207790285030608 ], [ -95.454227044860559, 30.207731285286982 ], [ -95.455415046083829, 30.207654285647003 ], [ -95.455619045186936, 30.207641285016301 ], [ -95.455796045229889, 30.20762728530304 ], [ -95.456100046291681, 30.207613285255182 ], [ -95.456353046058652, 30.207597284868751 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1364, "Tract": "48339694210", "Area_SqMi": 2.8826238200554668, "total_2009": 102, "total_2010": 124, "total_2011": 167, "total_2012": 341, "total_2013": 378, "total_2014": 383, "total_2015": 262, "total_2016": 289, "total_2017": 299, "total_2018": 329, "total_2019": 312, "total_2020": 304, "age1": 90, "age2": 183, "age3": 81, "earn1": 81, "earn2": 102, "earn3": 171, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 17, "naics_s06": 1, "naics_s07": 14, "naics_s08": 1, "naics_s09": 0, "naics_s10": 1, "naics_s11": 4, "naics_s12": 140, "naics_s13": 0, "naics_s14": 62, "naics_s15": 22, "naics_s16": 5, "naics_s17": 7, "naics_s18": 64, "naics_s19": 1, "naics_s20": 0, "race1": 266, "race2": 66, "race3": 3, "race4": 14, "race5": 1, "race6": 4, "ethnicity1": 299, "ethnicity2": 55, "edu1": 44, "edu2": 55, "edu3": 79, "edu4": 86, "Shape_Length": 39945.279503246522, "Shape_Area": 80362618.443170667, "total_2021": 337, "total_2022": 354 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.59887809278041, 30.437164326213836 ], [ -95.59890309341246, 30.431995325772437 ], [ -95.598322092393275, 30.431363325848295 ], [ -95.598325092964501, 30.430733325624846 ], [ -95.597165092752306, 30.429090325077023 ], [ -95.597073091657535, 30.41812432265305 ], [ -95.596494091315293, 30.416988322985386 ], [ -95.596501091943409, 30.415727322216156 ], [ -95.596210091516156, 30.415348322379003 ], [ -95.596217091332448, 30.413961321744974 ], [ -95.595927090968786, 30.413708322300927 ], [ -95.595928091471279, 30.413330322228479 ], [ -95.592586090184923, 30.410293321360335 ], [ -95.592590090564158, 30.40941032118446 ], [ -95.59215508959727, 30.40890532128725 ], [ -95.592160089785679, 30.407896321163893 ], [ -95.59157808971473, 30.40739032114854 ], [ -95.591435089908273, 30.406885320953126 ], [ -95.591583089539199, 30.406508320293778 ], [ -95.587660089006022, 30.402838320418702 ], [ -95.587482088850592, 30.40913832125441 ], [ -95.583084088297383, 30.41290432248238 ], [ -95.581769087799273, 30.41315132284284 ], [ -95.580598087329108, 30.413777322733786 ], [ -95.577819087194413, 30.414649322637054 ], [ -95.57727408648023, 30.415032322959721 ], [ -95.575328086212281, 30.41640432305616 ], [ -95.574306086016222, 30.416526323241396 ], [ -95.571959085086874, 30.41853332351684 ], [ -95.571663085314228, 30.419289323905662 ], [ -95.566971083859912, 30.423178324592207 ], [ -95.566674084565861, 30.424059325341837 ], [ -95.565496083913033, 30.425945325583282 ], [ -95.562269082941157, 30.428831326451913 ], [ -95.561975083717741, 30.429208326310935 ], [ -95.561964083684629, 30.431248326489264 ], [ -95.5622380836746, 30.431311326724892 ], [ -95.562281083245409, 30.431321327110357 ], [ -95.563018083459625, 30.431464327167976 ], [ -95.564050084484904, 30.431691326974782 ], [ -95.565366083843699, 30.432005326937535 ], [ -95.565991084709438, 30.432153326358762 ], [ -95.566250085006814, 30.432226326621102 ], [ -95.567164084855008, 30.432414327136325 ], [ -95.568185085091756, 30.432660326833428 ], [ -95.569132085684089, 30.432921326971172 ], [ -95.5701580859442, 30.433178326766718 ], [ -95.57072508623493, 30.433305327032606 ], [ -95.571314085766772, 30.433438327108679 ], [ -95.572188085815867, 30.433661326814633 ], [ -95.574958086901162, 30.434312326957471 ], [ -95.577879087630564, 30.434991327097617 ], [ -95.579148087891184, 30.435296326799268 ], [ -95.579837087882566, 30.43546132679343 ], [ -95.58034308866587, 30.435568326517814 ], [ -95.581031088903558, 30.43573932739038 ], [ -95.581871088401257, 30.435926326835865 ], [ -95.582367089349148, 30.436034327040268 ], [ -95.582632088897185, 30.436102327013717 ], [ -95.58329408966263, 30.436270326767694 ], [ -95.583603089652399, 30.436353326638127 ], [ -95.584036089401437, 30.436470326570138 ], [ -95.584416089261879, 30.436568327457785 ], [ -95.585724089777983, 30.436851327237537 ], [ -95.586372089774216, 30.436986327199492 ], [ -95.586852090591449, 30.437080326791708 ], [ -95.58732009021891, 30.437136326860085 ], [ -95.587780090546687, 30.437159326872202 ], [ -95.58838809078091, 30.437174326583467 ], [ -95.589741091158132, 30.43716732669855 ], [ -95.58982809096068, 30.437167327323728 ], [ -95.590411091184805, 30.437195327352356 ], [ -95.591853091889391, 30.4371933264412 ], [ -95.592668091312049, 30.437203326568419 ], [ -95.593800092347166, 30.437182326433103 ], [ -95.595873092431503, 30.437168326604997 ], [ -95.59714709265576, 30.437167326661598 ], [ -95.59887809278041, 30.437164326213836 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1365, "Tract": "48201421401", "Area_SqMi": 0.11025399114057929, "total_2009": 476, "total_2010": 449, "total_2011": 438, "total_2012": 442, "total_2013": 490, "total_2014": 494, "total_2015": 552, "total_2016": 366, "total_2017": 383, "total_2018": 352, "total_2019": 362, "total_2020": 352, "age1": 102, "age2": 177, "age3": 89, "earn1": 98, "earn2": 169, "earn3": 101, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 10, "naics_s06": 8, "naics_s07": 8, "naics_s08": 0, "naics_s09": 18, "naics_s10": 3, "naics_s11": 39, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 164, "naics_s17": 0, "naics_s18": 67, "naics_s19": 46, "naics_s20": 0, "race1": 211, "race2": 108, "race3": 1, "race4": 44, "race5": 2, "race6": 2, "ethnicity1": 231, "ethnicity2": 137, "edu1": 76, "edu2": 70, "edu3": 71, "edu4": 49, "Shape_Length": 8044.1826884668699, "Shape_Area": 3073692.5714076022, "total_2021": 360, "total_2022": 368 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.497122033911921, 29.714956183311518 ], [ -95.497135034211496, 29.714945183346426 ], [ -95.496393033848975, 29.714312183580013 ], [ -95.496178033419667, 29.71412918348393 ], [ -95.49589803365636, 29.713891182904405 ], [ -95.495726033521038, 29.71374318340311 ], [ -95.495454032862511, 29.713511183399355 ], [ -95.494769032772979, 29.712915182742918 ], [ -95.494408032905881, 29.712595183489988 ], [ -95.494305033369031, 29.712482182927243 ], [ -95.494078032552082, 29.712234183035338 ], [ -95.49379103329305, 29.711865183420162 ], [ -95.49344203286762, 29.711280183291144 ], [ -95.493287033027414, 29.710837182820299 ], [ -95.493192032934431, 29.710936183013374 ], [ -95.493060032375183, 29.711139182525898 ], [ -95.493054032756731, 29.711678182505473 ], [ -95.493076032622383, 29.712460183015658 ], [ -95.493083033083792, 29.712703183474957 ], [ -95.492258032491378, 29.712721182911174 ], [ -95.491867031945816, 29.71272918364226 ], [ -95.490989032074353, 29.71274718345283 ], [ -95.490743032604215, 29.712750183473858 ], [ -95.48992203192671, 29.712743183291554 ], [ -95.488900031636163, 29.712751183411097 ], [ -95.488906031513167, 29.713339183450728 ], [ -95.488937031762376, 29.714450183265427 ], [ -95.488936032067656, 29.714642184054533 ], [ -95.4889680322744, 29.716387183639792 ], [ -95.490134032643482, 29.716372184343729 ], [ -95.491436032547227, 29.7163581839302 ], [ -95.491625032117824, 29.716355184163024 ], [ -95.492797033291197, 29.716342183766621 ], [ -95.493116032457181, 29.716343183441971 ], [ -95.493325032636207, 29.716350183657259 ], [ -95.493997033174338, 29.716321183738295 ], [ -95.494281032708727, 29.716291183734128 ], [ -95.494544033432021, 29.716255184265044 ], [ -95.494929033517963, 29.716178184226923 ], [ -95.4952390333805, 29.716070184213645 ], [ -95.495700033119192, 29.715901183344119 ], [ -95.496223033522909, 29.715644183468992 ], [ -95.496610033889439, 29.715384183977648 ], [ -95.497122033911921, 29.714956183311518 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1366, "Tract": "48201554902", "Area_SqMi": 4.9291764832222684, "total_2009": 1438, "total_2010": 1073, "total_2011": 1088, "total_2012": 1523, "total_2013": 1547, "total_2014": 3373, "total_2015": 2091, "total_2016": 2292, "total_2017": 2239, "total_2018": 3083, "total_2019": 3298, "total_2020": 3279, "age1": 1913, "age2": 1995, "age3": 682, "earn1": 1496, "earn2": 1936, "earn3": 1158, "naics_s01": 0, "naics_s02": 1, "naics_s03": 19, "naics_s04": 189, "naics_s05": 150, "naics_s06": 58, "naics_s07": 1143, "naics_s08": 648, "naics_s09": 52, "naics_s10": 118, "naics_s11": 64, "naics_s12": 120, "naics_s13": 3, "naics_s14": 671, "naics_s15": 94, "naics_s16": 116, "naics_s17": 41, "naics_s18": 888, "naics_s19": 215, "naics_s20": 0, "race1": 3268, "race2": 878, "race3": 43, "race4": 299, "race5": 4, "race6": 98, "ethnicity1": 2982, "ethnicity2": 1608, "edu1": 694, "edu2": 732, "edu3": 763, "edu4": 488, "Shape_Length": 61607.472215733309, "Shape_Area": 137417003.98237148, "total_2021": 3741, "total_2022": 4590 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.547310064253594, 30.104601261198738 ], [ -95.547364064820599, 30.103973260849148 ], [ -95.545530063978973, 30.103654261398816 ], [ -95.545281063555535, 30.103611260738763 ], [ -95.545179063806074, 30.1034382610788 ], [ -95.545127063659038, 30.103362261178418 ], [ -95.545060064029869, 30.103284261250469 ], [ -95.544944063896992, 30.103163260586012 ], [ -95.544723063682937, 30.102963260684085 ], [ -95.544568063828692, 30.102834261151674 ], [ -95.544423063098563, 30.102720261095769 ], [ -95.544033063407738, 30.102385260386686 ], [ -95.543976063259279, 30.102344261269199 ], [ -95.543872062920215, 30.102241261054481 ], [ -95.543740062947947, 30.102137260371581 ], [ -95.543316062866637, 30.101775260813351 ], [ -95.543259062740603, 30.101719260526952 ], [ -95.543183063201042, 30.101666260932149 ], [ -95.543056063379396, 30.101553260842575 ], [ -95.543007063508171, 30.101494260353078 ], [ -95.542900063138916, 30.101412260612616 ], [ -95.542699063206655, 30.101255260266296 ], [ -95.54166606238833, 30.100374260316329 ], [ -95.541614062549527, 30.100326260583024 ], [ -95.541387062871223, 30.100121260109145 ], [ -95.541301062966895, 30.100056260292913 ], [ -95.541234062706963, 30.099994260871618 ], [ -95.541161062094758, 30.099941260465673 ], [ -95.541090062304974, 30.099877260074617 ], [ -95.540869062108243, 30.09969126038996 ], [ -95.540805062652794, 30.099627260319728 ], [ -95.540713062293023, 30.099563260054211 ], [ -95.540634062053527, 30.09948826027864 ], [ -95.540292061871469, 30.099199260441519 ], [ -95.540199062154471, 30.099128260271989 ], [ -95.540020061897209, 30.098976260249696 ], [ -95.539859061965672, 30.098832260166706 ], [ -95.539830062651149, 30.098808260349678 ], [ -95.539686062125881, 30.098690260617865 ], [ -95.539556062474844, 30.098580260016707 ], [ -95.539050061999944, 30.098154260023762 ], [ -95.53895706241326, 30.098075259839344 ], [ -95.538591062257694, 30.097757260286521 ], [ -95.537373061343928, 30.096721259626459 ], [ -95.536035060713061, 30.095580260101521 ], [ -95.535987060722789, 30.095537259937355 ], [ -95.535487060621435, 30.095091259957869 ], [ -95.535138060932226, 30.094773259439762 ], [ -95.534665060188118, 30.094322259604603 ], [ -95.534427060758375, 30.094085259603482 ], [ -95.533719059981053, 30.093415258924047 ], [ -95.53349606027659, 30.093198259338621 ], [ -95.532629059987073, 30.092372259052286 ], [ -95.532412060325669, 30.092174258812019 ], [ -95.532195059925129, 30.091965259042261 ], [ -95.532084059757779, 30.091864259519593 ], [ -95.531877059422499, 30.091661259003612 ], [ -95.531661059603181, 30.091467258854134 ], [ -95.53134805943057, 30.091162259157109 ], [ -95.529057059430841, 30.088984258759076 ], [ -95.528234058496153, 30.088194258339556 ], [ -95.52813105870267, 30.088093258723831 ], [ -95.527522058077707, 30.087497258786854 ], [ -95.527410058082495, 30.087391258018918 ], [ -95.527151058676097, 30.087144258050948 ], [ -95.527106058357049, 30.08710125875875 ], [ -95.526947057842605, 30.086949258012041 ], [ -95.526629058233581, 30.086646258641572 ], [ -95.525521057531705, 30.085593258475608 ], [ -95.52545805747063, 30.085534258089154 ], [ -95.524759057949211, 30.084874258087435 ], [ -95.524119057747285, 30.084288257434942 ], [ -95.520755056311643, 30.081095257501413 ], [ -95.520629056947868, 30.080982257223766 ], [ -95.520390055935124, 30.080750256899826 ], [ -95.520194055969597, 30.080563256791979 ], [ -95.517381055897388, 30.077891256907858 ], [ -95.515401055039575, 30.076011256345762 ], [ -95.51342905436951, 30.074107256371228 ], [ -95.511531054050323, 30.074115255870101 ], [ -95.509228053075347, 30.074125256540448 ], [ -95.508540053247089, 30.074128256425205 ], [ -95.50746305314189, 30.074121256784508 ], [ -95.507355052843906, 30.07412025675216 ], [ -95.503975051489348, 30.074098256291489 ], [ -95.503188051292582, 30.074094256854462 ], [ -95.500933051575032, 30.074079256265378 ], [ -95.500383051037616, 30.074076256629773 ], [ -95.499899050810214, 30.074073256605317 ], [ -95.499318050904606, 30.074069256831361 ], [ -95.496831050257271, 30.074055256634189 ], [ -95.496825050390242, 30.074175256790841 ], [ -95.496811050097662, 30.074238256805543 ], [ -95.496806050498307, 30.074318257026526 ], [ -95.496830050443634, 30.074430257229629 ], [ -95.496823050361925, 30.07464525647902 ], [ -95.496801050070616, 30.074754257314222 ], [ -95.496806049932303, 30.075035257255163 ], [ -95.496790050288297, 30.075332257138395 ], [ -95.496759050533598, 30.075487257083907 ], [ -95.496756050570596, 30.075597256658366 ], [ -95.496741050418777, 30.076243257028228 ], [ -95.496719049814047, 30.077829257732752 ], [ -95.496679050453778, 30.080910258109267 ], [ -95.496721050641838, 30.081014258550059 ], [ -95.496727050159919, 30.082942258312173 ], [ -95.496751050847578, 30.083140258501537 ], [ -95.496727050038118, 30.083203258562563 ], [ -95.496739050845136, 30.083360258611616 ], [ -95.496715050409406, 30.083471258477797 ], [ -95.496978050535859, 30.083443258259404 ], [ -95.497062050779917, 30.083421258926389 ], [ -95.498802051097329, 30.083195258337735 ], [ -95.498914051246999, 30.083192258083916 ], [ -95.499039050636142, 30.08317925856521 ], [ -95.499573051258722, 30.083105258091898 ], [ -95.500306051214935, 30.08302525807461 ], [ -95.500341051685766, 30.083021258486699 ], [ -95.500479051181159, 30.08301425858799 ], [ -95.500564051325568, 30.083019258223828 ], [ -95.500738051893464, 30.083013258346092 ], [ -95.500941051064572, 30.083042258059116 ], [ -95.501038052027781, 30.083074258736843 ], [ -95.501165051797074, 30.083093258307855 ], [ -95.501418051369214, 30.083148258370144 ], [ -95.501686052065367, 30.083213258542379 ], [ -95.501789052011844, 30.083251258711162 ], [ -95.502106052133854, 30.083295258368175 ], [ -95.502235051945561, 30.083329258610334 ], [ -95.502364051871353, 30.08335625863625 ], [ -95.502484052334367, 30.083388258232446 ], [ -95.502611051805786, 30.083413258294723 ], [ -95.502975052386077, 30.08349525884076 ], [ -95.503745052003723, 30.08366025799846 ], [ -95.50381605180813, 30.083672257981508 ], [ -95.503939052123371, 30.083690258276018 ], [ -95.503994052664751, 30.083698258123853 ], [ -95.504243052107384, 30.083723258489513 ], [ -95.504637052502886, 30.083743258476524 ], [ -95.504786052759712, 30.083740258615592 ], [ -95.504919052410358, 30.083751258858733 ], [ -95.505346052491504, 30.083768258122763 ], [ -95.505622052745807, 30.083760258818128 ], [ -95.505749052798407, 30.083781258555106 ], [ -95.506148053363106, 30.083795258536728 ], [ -95.506502052713955, 30.083827258757058 ], [ -95.506741052713537, 30.083861258277334 ], [ -95.506939053358195, 30.083894257995148 ], [ -95.506927052830378, 30.08476125869992 ], [ -95.506922052701881, 30.086099258524733 ], [ -95.506928053103579, 30.087111259340151 ], [ -95.506930052892358, 30.087549259069139 ], [ -95.50693005310589, 30.087615258863622 ], [ -95.506916053088929, 30.087833259310813 ], [ -95.506933053122268, 30.087968259250214 ], [ -95.506939053149793, 30.088733259569032 ], [ -95.506934053759991, 30.089568259768772 ], [ -95.506934053188346, 30.089622259375613 ], [ -95.506916053432377, 30.089826259402621 ], [ -95.506919052894006, 30.090165259343905 ], [ -95.506889053441512, 30.09051125937129 ], [ -95.506846053517862, 30.090855260015129 ], [ -95.506833053296518, 30.091026259571265 ], [ -95.506818053195019, 30.091368260155683 ], [ -95.506813053221734, 30.091670260225744 ], [ -95.506810053619958, 30.092755260365845 ], [ -95.506802054021307, 30.093843260142023 ], [ -95.506802053878147, 30.093988260408594 ], [ -95.50680105366213, 30.09434926077294 ], [ -95.506801054033488, 30.094566260687657 ], [ -95.506800053248696, 30.094942260170445 ], [ -95.506797053242224, 30.09627726075319 ], [ -95.506788053515052, 30.096945260895783 ], [ -95.506787053557431, 30.096987261380928 ], [ -95.506789054022235, 30.09775926081333 ], [ -95.506783053464403, 30.099013261833381 ], [ -95.506777053246992, 30.099183261320668 ], [ -95.506794053743391, 30.100468261905696 ], [ -95.506801054273197, 30.101326261586806 ], [ -95.506803053830211, 30.10160026170475 ], [ -95.506789053767321, 30.101817261922825 ], [ -95.50681505433117, 30.101942262016255 ], [ -95.506815053417341, 30.102056261657285 ], [ -95.506815053819267, 30.102148262121972 ], [ -95.506823054053058, 30.102288262156002 ], [ -95.506817053523676, 30.10246926238101 ], [ -95.506832054167631, 30.102992261925387 ], [ -95.506832053727322, 30.103428262072995 ], [ -95.506834054288618, 30.104625262198557 ], [ -95.50685805381292, 30.105707262440525 ], [ -95.506854054018049, 30.105892262974834 ], [ -95.506870053699842, 30.106051263080452 ], [ -95.506878054195568, 30.106221262996993 ], [ -95.506886054482237, 30.10672126304836 ], [ -95.506880054597517, 30.106885262934497 ], [ -95.50688405385587, 30.107042263508749 ], [ -95.506874053745705, 30.107366262817287 ], [ -95.506873054662606, 30.108006263001034 ], [ -95.506882054137989, 30.108299263776964 ], [ -95.506878054208059, 30.108485263224154 ], [ -95.506887054661163, 30.109560263872442 ], [ -95.506882054068029, 30.109803263521073 ], [ -95.506888053892425, 30.109969263551367 ], [ -95.506892053812109, 30.110478263662518 ], [ -95.50689905440781, 30.110644263469815 ], [ -95.506897054490508, 30.11098726349384 ], [ -95.506907054387028, 30.111643264201525 ], [ -95.506898054196711, 30.112125263813738 ], [ -95.506841054830943, 30.112755263955968 ], [ -95.506784053880921, 30.113221264700229 ], [ -95.506758053883146, 30.113522264592472 ], [ -95.506740054093456, 30.114102264780886 ], [ -95.506745054573742, 30.114436264788466 ], [ -95.506866054266879, 30.114439264296841 ], [ -95.50706905406814, 30.114411264477958 ], [ -95.507145054434588, 30.114384264615428 ], [ -95.507417054346675, 30.11431826486962 ], [ -95.50785305523209, 30.114192264371543 ], [ -95.508523055275816, 30.11402126483209 ], [ -95.508662054601643, 30.114021264351148 ], [ -95.508827055069688, 30.114038264538795 ], [ -95.509010055360363, 30.11410426426016 ], [ -95.509263055039213, 30.114181264839207 ], [ -95.509427055101739, 30.114286264447745 ], [ -95.509680055710419, 30.114555264128818 ], [ -95.509724055105039, 30.114610264347675 ], [ -95.50980705528427, 30.114775264930049 ], [ -95.509895054769956, 30.114868264379169 ], [ -95.510009055615541, 30.114956264354088 ], [ -95.510167055465416, 30.115044264318062 ], [ -95.510306055136525, 30.115099264764538 ], [ -95.51036305500385, 30.115105264603319 ], [ -95.510508055791945, 30.115066264517651 ], [ -95.510609055623419, 30.115012264307889 ], [ -95.510761055646384, 30.114907264223852 ], [ -95.510812055551341, 30.114891264361049 ], [ -95.510938055268852, 30.114880264480576 ], [ -95.511160055482193, 30.114929264905374 ], [ -95.511216055901443, 30.11496226459748 ], [ -95.511305055781108, 30.115050264670312 ], [ -95.51138705570601, 30.115155264476872 ], [ -95.511444056017595, 30.115320264555958 ], [ -95.51149405614072, 30.115672265041958 ], [ -95.51155805603797, 30.115820264314234 ], [ -95.51164605546208, 30.115886264362928 ], [ -95.511747055419846, 30.115919264974082 ], [ -95.512025055497546, 30.115980265123319 ], [ -95.512253056325946, 30.11604026492757 ], [ -95.512443056236322, 30.116183265164285 ], [ -95.512487056334052, 30.116227264427639 ], [ -95.512550056192566, 30.116315264414727 ], [ -95.512664056564262, 30.116508264460482 ], [ -95.512696056131858, 30.116590264645851 ], [ -95.512746056304593, 30.11666726499244 ], [ -95.512847056485143, 30.116782264556829 ], [ -95.512885055974124, 30.116837265087607 ], [ -95.513220056537179, 30.117189265190714 ], [ -95.513226055806527, 30.117239264468026 ], [ -95.513214056485609, 30.11729426459198 ], [ -95.513163056621323, 30.117404265128155 ], [ -95.513106055916154, 30.117453264548164 ], [ -95.513068055801639, 30.117536264626366 ], [ -95.513068055807054, 30.117668265175826 ], [ -95.513150055989968, 30.11796426497521 ], [ -95.513321056390367, 30.118151264684755 ], [ -95.513485056244647, 30.118261265205721 ], [ -95.513605056232407, 30.118322264919904 ], [ -95.513827055938464, 30.118498264743078 ], [ -95.513915056971754, 30.118619264806679 ], [ -95.513940055985245, 30.118696265447866 ], [ -95.513997056171817, 30.118806265144137 ], [ -95.513997056604367, 30.118877264914158 ], [ -95.513972056764132, 30.119009265361047 ], [ -95.513890055994437, 30.119152265659764 ], [ -95.513852056170933, 30.11920226512499 ], [ -95.513807056600882, 30.119235265501704 ], [ -95.51377605650093, 30.119273265027051 ], [ -95.513725056939023, 30.119366265769074 ], [ -95.513700056799138, 30.119520265163409 ], [ -95.51370005630227, 30.119608265735852 ], [ -95.513687056669013, 30.119702265049408 ], [ -95.513598056157278, 30.119955265605416 ], [ -95.513548056166783, 30.120213265382848 ], [ -95.513567055933251, 30.120284265777098 ], [ -95.513567056101181, 30.120477265933236 ], [ -95.513585056775412, 30.120658265248828 ], [ -95.513617056701293, 30.120730265981251 ], [ -95.513743056847915, 30.120801265702724 ], [ -95.513996056968892, 30.120790266058155 ], [ -95.514256056346255, 30.120724265269516 ], [ -95.5144640571162, 30.120593265908106 ], [ -95.514540056386068, 30.120582265378271 ], [ -95.514591056774151, 30.12058726578864 ], [ -95.514660056409355, 30.120615265933967 ], [ -95.514762056611843, 30.120681265484777 ], [ -95.5147870569361, 30.120719265177382 ], [ -95.515172056901221, 30.121467265328508 ], [ -95.515305056511025, 30.121615265810018 ], [ -95.515438057175089, 30.121736265398667 ], [ -95.515716057442987, 30.121896265846019 ], [ -95.515786057460417, 30.121901266131037 ], [ -95.515868057125331, 30.121896265922743 ], [ -95.515956056914163, 30.121868265982876 ], [ -95.516140057378323, 30.121769265827172 ], [ -95.516304057491112, 30.121621265659183 ], [ -95.516443057677861, 30.12153926543164 ], [ -95.516507057048187, 30.121522265266016 ], [ -95.51676605770173, 30.121555265752303 ], [ -95.51686705684493, 30.121555266017776 ], [ -95.51695605778859, 30.121539266030226 ], [ -95.517228057805667, 30.121401265633484 ], [ -95.517538057030023, 30.121165265406699 ], [ -95.517873057327378, 30.12096226541551 ], [ -95.517949057410362, 30.120890265108244 ], [ -95.518025057294594, 30.12078626582225 ], [ -95.518119057618165, 30.120522265832395 ], [ -95.518145057629766, 30.120473265024646 ], [ -95.518246057212764, 30.120335264996594 ], [ -95.518278057830514, 30.120308265067528 ], [ -95.518483057496439, 30.120221265644545 ], [ -95.518588058156595, 30.12017626558108 ], [ -95.519274057727486, 30.119958264840275 ], [ -95.519315058032703, 30.119945265571687 ], [ -95.519397057790016, 30.119929265118529 ], [ -95.519511058258544, 30.119923265112856 ], [ -95.519637057549801, 30.119956264849268 ], [ -95.520238058139611, 30.120220265453256 ], [ -95.520339058511482, 30.120242264861073 ], [ -95.520447058623347, 30.120237264937906 ], [ -95.520535058149733, 30.120187264878279 ], [ -95.520573058562832, 30.120154265345601 ], [ -95.520611058545043, 30.120105264977969 ], [ -95.520649058266713, 30.119973265053552 ], [ -95.520668058185606, 30.119836265477723 ], [ -95.520668058261563, 30.119726265178137 ], [ -95.520649057958835, 30.119660264953545 ], [ -95.520523058329516, 30.11937426478908 ], [ -95.520434057749526, 30.119264265046773 ], [ -95.520352057926701, 30.119121265131223 ], [ -95.520327058255077, 30.119049264877873 ], [ -95.520321058137966, 30.118983265202406 ], [ -95.520321057738158, 30.118923264592638 ], [ -95.520340058073558, 30.118835264766194 ], [ -95.520485058451811, 30.118577264954485 ], [ -95.520586057658036, 30.118461264885301 ], [ -95.520681057919901, 30.118373264638286 ], [ -95.520783057872364, 30.118307264797341 ], [ -95.520877057818794, 30.118280264409385 ], [ -95.520915058408335, 30.118280264618527 ], [ -95.520966058201452, 30.118296265276062 ], [ -95.521086058705507, 30.118368264474768 ], [ -95.521130058308856, 30.118384264490722 ], [ -95.521181058698431, 30.11838426516012 ], [ -95.521541058673506, 30.118440265311825 ], [ -95.521592058715399, 30.118429264970082 ], [ -95.521750058870396, 30.118352265216743 ], [ -95.521902058202528, 30.118247264564896 ], [ -95.521971058015637, 30.118170265134257 ], [ -95.52199705892285, 30.11807726475265 ], [ -95.521997058430955, 30.117989265190371 ], [ -95.521952058170896, 30.1177692649729 ], [ -95.521953058087561, 30.117670264250368 ], [ -95.521959058628681, 30.117620264448995 ], [ -95.52206705821655, 30.117247264181835 ], [ -95.522130058327662, 30.11686226439484 ], [ -95.522107058798326, 30.116427264569431 ], [ -95.52209805811664, 30.116252264535568 ], [ -95.52212405883914, 30.116169264026464 ], [ -95.522174058966428, 30.11610926401654 ], [ -95.52230705818738, 30.116015264286787 ], [ -95.522345058318678, 30.115977264269723 ], [ -95.522389058649026, 30.115889264386972 ], [ -95.522408058926956, 30.115806264201918 ], [ -95.52238905805477, 30.115713264234188 ], [ -95.522282058868456, 30.115466264572095 ], [ -95.522200058790787, 30.115378264422965 ], [ -95.522175058419563, 30.115323264330005 ], [ -95.522042058505306, 30.115130264177115 ], [ -95.521928058830184, 30.115042263880358 ], [ -95.521745058143665, 30.114861264398321 ], [ -95.521663057775783, 30.114740263992914 ], [ -95.521612057795224, 30.114646263818955 ], [ -95.521606058361996, 30.114558264200618 ], [ -95.521682057827903, 30.114284264315941 ], [ -95.521764058265632, 30.114119263963101 ], [ -95.521821058157769, 30.114047263734776 ], [ -95.521890058732396, 30.113981264272748 ], [ -95.521960058783336, 30.113937264374776 ], [ -95.522358058528312, 30.113866264117895 ], [ -95.522510058911422, 30.113877264198987 ], [ -95.522909058600121, 30.113762263977808 ], [ -95.5230030586807, 30.113751263928947 ], [ -95.523737059158634, 30.113580263721179 ], [ -95.524135058865554, 30.113487263764895 ], [ -95.524350058839445, 30.113410264091399 ], [ -95.524464058908649, 30.113405263665559 ], [ -95.524995059430125, 30.113438263822193 ], [ -95.525027058546158, 30.113432263997794 ], [ -95.525059059053021, 30.113416263340234 ], [ -95.525090059209546, 30.113377263996501 ], [ -95.525318059472966, 30.113174263496031 ], [ -95.525419059531657, 30.113064263442883 ], [ -95.52545605961383, 30.11305226369382 ], [ -95.525470059131791, 30.113048263502368 ], [ -95.525546059449866, 30.113048263198959 ], [ -95.525590059084152, 30.113059263657075 ], [ -95.526045059421975, 30.113345263475448 ], [ -95.526355059854978, 30.113608263750017 ], [ -95.526462059203197, 30.113740263387022 ], [ -95.526519059661936, 30.113790263411175 ], [ -95.526620060006522, 30.113812263702901 ], [ -95.526861059151145, 30.113806263363696 ], [ -95.526949059318682, 30.113839263345181 ], [ -95.527019059141239, 30.113911263922837 ], [ -95.527187060015592, 30.114145263792153 ], [ -95.527252059231785, 30.114235264066881 ], [ -95.527265059988935, 30.114285263800792 ], [ -95.527265059250055, 30.114378264218001 ], [ -95.527233059230966, 30.114477264084446 ], [ -95.52723305972475, 30.114516263899475 ], [ -95.527259060091808, 30.114648264064805 ], [ -95.527385060269197, 30.114769263502033 ], [ -95.527550060118173, 30.114851263713803 ], [ -95.527632059563715, 30.114879263522258 ], [ -95.527872059981334, 30.114901264253053 ], [ -95.528068059959907, 30.114934263912399 ], [ -95.52817505952828, 30.114972264354105 ], [ -95.528390059877395, 30.115110264300398 ], [ -95.528725059923872, 30.115506264228468 ], [ -95.5287820604199, 30.115566264049772 ], [ -95.529029060658573, 30.115758264524079 ], [ -95.529105060393533, 30.115885264080422 ], [ -95.529244060275062, 30.116022264001607 ], [ -95.529263060061012, 30.116077263936855 ], [ -95.529275060098101, 30.116209264146587 ], [ -95.529351060386517, 30.116308264618706 ], [ -95.529414060385548, 30.116435264204242 ], [ -95.529433060412586, 30.116600264304036 ], [ -95.529712060564904, 30.116968263979981 ], [ -95.52977506078453, 30.117028264699673 ], [ -95.52989506029887, 30.11708926412518 ], [ -95.529971060709414, 30.117100263879252 ], [ -95.530059060677047, 30.117100264611317 ], [ -95.530224060386573, 30.117039264096224 ], [ -95.530628060226306, 30.116781264514987 ], [ -95.531115060455335, 30.116424264575876 ], [ -95.531160060444392, 30.116353264234991 ], [ -95.531508061117776, 30.115891263946111 ], [ -95.531602060996548, 30.115742264204091 ], [ -95.531659061375422, 30.115704264308025 ], [ -95.531723061077059, 30.11567626432759 ], [ -95.53183006076334, 30.115594263503777 ], [ -95.531862061130269, 30.115588263888718 ], [ -95.531931060639607, 30.115600264324154 ], [ -95.532285060620751, 30.115715263967726 ], [ -95.532355060738738, 30.115754263624538 ], [ -95.532443061582057, 30.115913263555584 ], [ -95.532488060824733, 30.115946263849292 ], [ -95.532538061245333, 30.115968264091094 ], [ -95.532620060875416, 30.115968263696903 ], [ -95.533000061414967, 30.115886264388831 ], [ -95.533209060790568, 30.115787263999433 ], [ -95.533259061400074, 30.115748263507964 ], [ -95.533284061341121, 30.115699263906173 ], [ -95.533297060983713, 30.115605263936335 ], [ -95.533329061366246, 30.115545263452265 ], [ -95.533474061788723, 30.115495264168729 ], [ -95.53350606165327, 30.115446263552947 ], [ -95.533487061146388, 30.115171263967671 ], [ -95.533455061268597, 30.115138263343777 ], [ -95.533367060881233, 30.115083263351163 ], [ -95.53321506163681, 30.115028264215706 ], [ -95.533171060965074, 30.115000263684284 ], [ -95.533127061142224, 30.114957264163099 ], [ -95.533126060860724, 30.114891264091337 ], [ -95.533202060754817, 30.114825263470003 ], [ -95.533361061452084, 30.114742263540684 ], [ -95.534657061470938, 30.11434726383602 ], [ -95.534739061876977, 30.114341263147896 ], [ -95.534809061605245, 30.114347263572729 ], [ -95.535201061902427, 30.114429263897019 ], [ -95.535264061760316, 30.114435263338809 ], [ -95.535384061341148, 30.114424263853305 ], [ -95.535441062307683, 30.114402263194485 ], [ -95.535574061439974, 30.114292263406405 ], [ -95.535700061599812, 30.114077263537546 ], [ -95.535745061982183, 30.113962263831674 ], [ -95.535738062236291, 30.113857263853372 ], [ -95.535694062009341, 30.113797263470559 ], [ -95.53556106198225, 30.113671263180322 ], [ -95.535530061899905, 30.113616263672114 ], [ -95.535523061523264, 30.113500263720514 ], [ -95.535599062174697, 30.113192263424445 ], [ -95.53561206144289, 30.11310426315297 ], [ -95.535637061822584, 30.113044263193657 ], [ -95.535663061522172, 30.11299426363578 ], [ -95.535700061962771, 30.112956263086989 ], [ -95.535802061920123, 30.112890262941093 ], [ -95.536124061391405, 30.112786262891746 ], [ -95.536345061448841, 30.112599263298694 ], [ -95.536390062063106, 30.112544262955282 ], [ -95.536434061897012, 30.112472263107041 ], [ -95.536497061609694, 30.112280263307358 ], [ -95.53657306187462, 30.112115263282266 ], [ -95.53658606219085, 30.112038262860729 ], [ -95.536586062440875, 30.111955263404035 ], [ -95.536655061813249, 30.111674263359433 ], [ -95.536681062277282, 30.111571263053104 ], [ -95.536700062366336, 30.111521262623825 ], [ -95.536788061826499, 30.111428263262908 ], [ -95.537010062455053, 30.111202263328035 ], [ -95.537364061745478, 30.110933262388716 ], [ -95.537547062407668, 30.110818262989863 ], [ -95.537775061926567, 30.110697263091925 ], [ -95.538227062382816, 30.110567262311278 ], [ -95.538255062716942, 30.110559262948051 ], [ -95.538306062138929, 30.110554262648161 ], [ -95.538357062565083, 30.110554262323092 ], [ -95.538413062448541, 30.11057026241086 ], [ -95.538496062493948, 30.110647263047078 ], [ -95.538711062478512, 30.111005263198141 ], [ -95.538944062621397, 30.111340262449822 ], [ -95.538995062411644, 30.111395262382977 ], [ -95.539022062835159, 30.111410263139515 ], [ -95.539096062378917, 30.111450263010429 ], [ -95.539475062204289, 30.111582262808348 ], [ -95.539583062816064, 30.111571263164933 ], [ -95.539653062828663, 30.11153326324095 ], [ -95.539849062995032, 30.111390262443091 ], [ -95.540070062343403, 30.111208263147354 ], [ -95.540108062607686, 30.111153262894607 ], [ -95.540152062830643, 30.111126262470972 ], [ -95.540291062897481, 30.111082263132836 ], [ -95.540392062461464, 30.11108226316323 ], [ -95.540424062574942, 30.111093262325987 ], [ -95.540462062580829, 30.111164262880351 ], [ -95.540513063374348, 30.111225263108313 ], [ -95.54054406244245, 30.111225262740156 ], [ -95.540582063016984, 30.111219262919484 ], [ -95.540630063329417, 30.11117126250787 ], [ -95.540715062877254, 30.111087262851541 ], [ -95.540759062879772, 30.111060263130408 ], [ -95.540822062852897, 30.1110382629338 ], [ -95.540924062736067, 30.111032263069802 ], [ -95.541031062758577, 30.111043262557345 ], [ -95.541164063082803, 30.111066262752786 ], [ -95.541208063037004, 30.111098262457158 ], [ -95.541246063598251, 30.111142262987766 ], [ -95.541309063273047, 30.111164263137379 ], [ -95.541429063485381, 30.111225262358975 ], [ -95.541916063182072, 30.110824262423609 ], [ -95.542397063300427, 30.110411262726711 ], [ -95.542656063381472, 30.110109262494632 ], [ -95.54268106359423, 30.110043262223968 ], [ -95.542691063624972, 30.109726262577112 ], [ -95.542694063843726, 30.109642262692461 ], [ -95.542688063070344, 30.109592262197783 ], [ -95.542644063396096, 30.109488262565669 ], [ -95.542631063258099, 30.109422262726795 ], [ -95.542625063735187, 30.109296261882768 ], [ -95.542631063596048, 30.109219262343167 ], [ -95.542644063619818, 30.109191261933873 ], [ -95.542732063570696, 30.109114262304388 ], [ -95.542795063328782, 30.109081262182023 ], [ -95.543036063288596, 30.109010262520059 ], [ -95.543213063457273, 30.109004262117146 ], [ -95.543263063743282, 30.10899326229762 ], [ -95.543307063771351, 30.108960261804363 ], [ -95.543345063240253, 30.108900262475249 ], [ -95.543573064001848, 30.108608262291657 ], [ -95.543674063973526, 30.108493262532821 ], [ -95.543845063987973, 30.108433261806848 ], [ -95.543902063177811, 30.108433261959469 ], [ -95.544540063974111, 30.108576262346936 ], [ -95.545185064393223, 30.108790262065494 ], [ -95.545305064294467, 30.108806261834896 ], [ -95.545457063692012, 30.108801262406608 ], [ -95.545520064623432, 30.108784261844722 ], [ -95.545577064582602, 30.108752262444472 ], [ -95.545609063851913, 30.108719262500962 ], [ -95.545622064134079, 30.108680261909939 ], [ -95.545628063907543, 30.108482262269924 ], [ -95.545615064066197, 30.108416261845282 ], [ -95.545565063642528, 30.1082952616865 ], [ -95.545558064555578, 30.108251261812143 ], [ -95.545565064095968, 30.108213262295717 ], [ -95.545590063780523, 30.108169262225726 ], [ -95.545691063646174, 30.108075261750248 ], [ -95.545875064011767, 30.108037261948724 ], [ -95.546576064194198, 30.107954261589985 ], [ -95.546621063958256, 30.107938262121184 ], [ -95.546646064160896, 30.107905261795363 ], [ -95.546722064181026, 30.107718261834627 ], [ -95.546722063967522, 30.107498261636412 ], [ -95.54667106411857, 30.107443261897838 ], [ -95.546608064641035, 30.107399261654702 ], [ -95.54650706383832, 30.107278261618177 ], [ -95.546425064237553, 30.107086261731396 ], [ -95.546393064376474, 30.106811261302131 ], [ -95.546444063890632, 30.106564261445634 ], [ -95.546450063809687, 30.10648726173406 ], [ -95.546444064519648, 30.106415261576242 ], [ -95.546381063841906, 30.106305261605158 ], [ -95.546355063753325, 30.106014261844429 ], [ -95.546368063806966, 30.105921261507017 ], [ -95.546437063831377, 30.105761261230747 ], [ -95.546513064597193, 30.105673261541508 ], [ -95.546577064156608, 30.105583261370832 ], [ -95.546659063833616, 30.105471261486851 ], [ -95.546735064260034, 30.105365261780459 ], [ -95.5467790638819, 30.105260261530752 ], [ -95.546792064198854, 30.105228261655807 ], [ -95.546811063865107, 30.105140260968668 ], [ -95.546848064024005, 30.10505726130836 ], [ -95.546918064192795, 30.104969261625179 ], [ -95.547241064066867, 30.104717261311805 ], [ -95.547310064253594, 30.104601261198738 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1367, "Tract": "48201555301", "Area_SqMi": 2.7393647844793856, "total_2009": 188, "total_2010": 214, "total_2011": 567, "total_2012": 179, "total_2013": 167, "total_2014": 209, "total_2015": 197, "total_2016": 282, "total_2017": 345, "total_2018": 319, "total_2019": 351, "total_2020": 391, "age1": 156, "age2": 293, "age3": 103, "earn1": 144, "earn2": 164, "earn3": 244, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 32, "naics_s07": 61, "naics_s08": 3, "naics_s09": 1, "naics_s10": 23, "naics_s11": 12, "naics_s12": 110, "naics_s13": 32, "naics_s14": 32, "naics_s15": 1, "naics_s16": 79, "naics_s17": 47, "naics_s18": 73, "naics_s19": 37, "naics_s20": 0, "race1": 453, "race2": 56, "race3": 3, "race4": 34, "race5": 1, "race6": 5, "ethnicity1": 397, "ethnicity2": 155, "edu1": 77, "edu2": 83, "edu3": 121, "edu4": 115, "Shape_Length": 75901.911832748214, "Shape_Area": 76368801.72159937, "total_2021": 406, "total_2022": 552 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.55345706666813, 30.111303262510194 ], [ -95.553414066693122, 30.111256262015999 ], [ -95.553266065804038, 30.111150262238308 ], [ -95.553152066573062, 30.111036262050437 ], [ -95.552949066545651, 30.110871262514529 ], [ -95.5528260665413, 30.11075026241901 ], [ -95.552748065830869, 30.110698262533081 ], [ -95.552117065829464, 30.110157262288169 ], [ -95.552061065514408, 30.110114261884405 ], [ -95.551920065771611, 30.109988262403032 ], [ -95.551818065779131, 30.109907262364413 ], [ -95.551533066138717, 30.109653262476296 ], [ -95.551344065158602, 30.109487261892244 ], [ -95.551246065304568, 30.109411261933662 ], [ -95.550778065492921, 30.109002262345356 ], [ -95.550725065493111, 30.108966261516013 ], [ -95.550633065482671, 30.108890261538562 ], [ -95.550438065222806, 30.108714261894882 ], [ -95.550393064973065, 30.108679262156993 ], [ -95.550071064920587, 30.108399262086284 ], [ -95.549766065242025, 30.108141262157886 ], [ -95.54965006556499, 30.108040261399754 ], [ -95.549202065239299, 30.107653261545309 ], [ -95.54898206460264, 30.107457261680256 ], [ -95.548285064299279, 30.106863261310917 ], [ -95.548256064317101, 30.106837261687573 ], [ -95.54806306442245, 30.106666261731522 ], [ -95.547960064734824, 30.106567261847111 ], [ -95.547386064478559, 30.106081261482963 ], [ -95.546731064416463, 30.105539261721397 ], [ -95.546659063833616, 30.105471261486851 ], [ -95.546577064156608, 30.105583261370832 ], [ -95.546513064597193, 30.105673261541508 ], [ -95.546437063831377, 30.105761261230747 ], [ -95.546368063806966, 30.105921261507017 ], [ -95.546355063753325, 30.106014261844429 ], [ -95.546381063841906, 30.106305261605158 ], [ -95.546444064519648, 30.106415261576242 ], [ -95.546450063809687, 30.10648726173406 ], [ -95.546444063890632, 30.106564261445634 ], [ -95.546393064376474, 30.106811261302131 ], [ -95.546425064237553, 30.107086261731396 ], [ -95.54650706383832, 30.107278261618177 ], [ -95.546608064641035, 30.107399261654702 ], [ -95.54667106411857, 30.107443261897838 ], [ -95.546722063967522, 30.107498261636412 ], [ -95.546722064181026, 30.107718261834627 ], [ -95.546646064160896, 30.107905261795363 ], [ -95.546621063958256, 30.107938262121184 ], [ -95.546576064194198, 30.107954261589985 ], [ -95.545875064011767, 30.108037261948724 ], [ -95.545691063646174, 30.108075261750248 ], [ -95.545590063780523, 30.108169262225726 ], [ -95.545565064095968, 30.108213262295717 ], [ -95.545558064555578, 30.108251261812143 ], [ -95.545565063642528, 30.1082952616865 ], [ -95.545615064066197, 30.108416261845282 ], [ -95.545628063907543, 30.108482262269924 ], [ -95.545622064134079, 30.108680261909939 ], [ -95.545609063851913, 30.108719262500962 ], [ -95.545577064582602, 30.108752262444472 ], [ -95.545520064623432, 30.108784261844722 ], [ -95.545457063692012, 30.108801262406608 ], [ -95.545305064294467, 30.108806261834896 ], [ -95.545185064393223, 30.108790262065494 ], [ -95.544540063974111, 30.108576262346936 ], [ -95.543902063177811, 30.108433261959469 ], [ -95.543845063987973, 30.108433261806848 ], [ -95.543674063973526, 30.108493262532821 ], [ -95.543573064001848, 30.108608262291657 ], [ -95.543345063240253, 30.108900262475249 ], [ -95.543307063771351, 30.108960261804363 ], [ -95.543263063743282, 30.10899326229762 ], [ -95.543213063457273, 30.109004262117146 ], [ -95.543036063288596, 30.109010262520059 ], [ -95.542795063328782, 30.109081262182023 ], [ -95.542732063570696, 30.109114262304388 ], [ -95.542644063619818, 30.109191261933873 ], [ -95.542631063596048, 30.109219262343167 ], [ -95.542625063735187, 30.109296261882768 ], [ -95.542631063258099, 30.109422262726795 ], [ -95.542644063396096, 30.109488262565669 ], [ -95.542688063070344, 30.109592262197783 ], [ -95.542694063843726, 30.109642262692461 ], [ -95.542691063624972, 30.109726262577112 ], [ -95.54268106359423, 30.110043262223968 ], [ -95.542656063381472, 30.110109262494632 ], [ -95.542397063300427, 30.110411262726711 ], [ -95.541916063182072, 30.110824262423609 ], [ -95.541429063485381, 30.111225262358975 ], [ -95.541309063273047, 30.111164263137379 ], [ -95.541246063598251, 30.111142262987766 ], [ -95.541208063037004, 30.111098262457158 ], [ -95.541164063082803, 30.111066262752786 ], [ -95.541031062758577, 30.111043262557345 ], [ -95.540924062736067, 30.111032263069802 ], [ -95.540822062852897, 30.1110382629338 ], [ -95.540759062879772, 30.111060263130408 ], [ -95.540715062877254, 30.111087262851541 ], [ -95.540630063329417, 30.11117126250787 ], [ -95.540582063016984, 30.111219262919484 ], [ -95.54054406244245, 30.111225262740156 ], [ -95.540513063374348, 30.111225263108313 ], [ -95.540462062580829, 30.111164262880351 ], [ -95.540424062574942, 30.111093262325987 ], [ -95.540392062461464, 30.11108226316323 ], [ -95.540291062897481, 30.111082263132836 ], [ -95.540152062830643, 30.111126262470972 ], [ -95.540108062607686, 30.111153262894607 ], [ -95.540070062343403, 30.111208263147354 ], [ -95.539849062995032, 30.111390262443091 ], [ -95.539653062828663, 30.11153326324095 ], [ -95.539583062816064, 30.111571263164933 ], [ -95.539475062204289, 30.111582262808348 ], [ -95.539096062378917, 30.111450263010429 ], [ -95.539022062835159, 30.111410263139515 ], [ -95.538995062411644, 30.111395262382977 ], [ -95.538944062621397, 30.111340262449822 ], [ -95.538711062478512, 30.111005263198141 ], [ -95.538496062493948, 30.110647263047078 ], [ -95.538413062448541, 30.11057026241086 ], [ -95.538357062565083, 30.110554262323092 ], [ -95.538306062138929, 30.110554262648161 ], [ -95.538255062716942, 30.110559262948051 ], [ -95.538227062382816, 30.110567262311278 ], [ -95.537775061926567, 30.110697263091925 ], [ -95.537547062407668, 30.110818262989863 ], [ -95.537364061745478, 30.110933262388716 ], [ -95.537010062455053, 30.111202263328035 ], [ -95.536788061826499, 30.111428263262908 ], [ -95.536700062366336, 30.111521262623825 ], [ -95.536681062277282, 30.111571263053104 ], [ -95.536655061813249, 30.111674263359433 ], [ -95.536586062440875, 30.111955263404035 ], [ -95.53658606219085, 30.112038262860729 ], [ -95.53657306187462, 30.112115263282266 ], [ -95.536497061609694, 30.112280263307358 ], [ -95.536434061897012, 30.112472263107041 ], [ -95.536390062063106, 30.112544262955282 ], [ -95.536345061448841, 30.112599263298694 ], [ -95.536124061391405, 30.112786262891746 ], [ -95.535802061920123, 30.112890262941093 ], [ -95.535700061962771, 30.112956263086989 ], [ -95.535663061522172, 30.11299426363578 ], [ -95.535637061822584, 30.113044263193657 ], [ -95.53561206144289, 30.11310426315297 ], [ -95.535599062174697, 30.113192263424445 ], [ -95.535523061523264, 30.113500263720514 ], [ -95.535530061899905, 30.113616263672114 ], [ -95.53556106198225, 30.113671263180322 ], [ -95.535694062009341, 30.113797263470559 ], [ -95.535738062236291, 30.113857263853372 ], [ -95.535745061982183, 30.113962263831674 ], [ -95.535700061599812, 30.114077263537546 ], [ -95.535574061439974, 30.114292263406405 ], [ -95.535441062307683, 30.114402263194485 ], [ -95.535384061341148, 30.114424263853305 ], [ -95.535264061760316, 30.114435263338809 ], [ -95.535201061902427, 30.114429263897019 ], [ -95.534809061605245, 30.114347263572729 ], [ -95.534739061876977, 30.114341263147896 ], [ -95.534657061470938, 30.11434726383602 ], [ -95.533361061452084, 30.114742263540684 ], [ -95.533202060754817, 30.114825263470003 ], [ -95.533126060860724, 30.114891264091337 ], [ -95.533127061142224, 30.114957264163099 ], [ -95.533171060965074, 30.115000263684284 ], [ -95.53321506163681, 30.115028264215706 ], [ -95.533367060881233, 30.115083263351163 ], [ -95.533455061268597, 30.115138263343777 ], [ -95.533487061146388, 30.115171263967671 ], [ -95.53350606165327, 30.115446263552947 ], [ -95.533474061788723, 30.115495264168729 ], [ -95.533329061366246, 30.115545263452265 ], [ -95.533297060983713, 30.115605263936335 ], [ -95.533284061341121, 30.115699263906173 ], [ -95.533259061400074, 30.115748263507964 ], [ -95.533209060790568, 30.115787263999433 ], [ -95.533000061414967, 30.115886264388831 ], [ -95.532620060875416, 30.115968263696903 ], [ -95.532538061245333, 30.115968264091094 ], [ -95.532488060824733, 30.115946263849292 ], [ -95.532443061582057, 30.115913263555584 ], [ -95.532355060738738, 30.115754263624538 ], [ -95.532285060620751, 30.115715263967726 ], [ -95.531931060639607, 30.115600264324154 ], [ -95.531862061130269, 30.115588263888718 ], [ -95.53183006076334, 30.115594263503777 ], [ -95.531723061077059, 30.11567626432759 ], [ -95.531659061375422, 30.115704264308025 ], [ -95.531602060996548, 30.115742264204091 ], [ -95.531508061117776, 30.115891263946111 ], [ -95.531160060444392, 30.116353264234991 ], [ -95.531115060455335, 30.116424264575876 ], [ -95.530628060226306, 30.116781264514987 ], [ -95.530224060386573, 30.117039264096224 ], [ -95.530059060677047, 30.117100264611317 ], [ -95.529971060709414, 30.117100263879252 ], [ -95.52989506029887, 30.11708926412518 ], [ -95.52977506078453, 30.117028264699673 ], [ -95.529712060564904, 30.116968263979981 ], [ -95.529433060412586, 30.116600264304036 ], [ -95.529414060385548, 30.116435264204242 ], [ -95.529351060386517, 30.116308264618706 ], [ -95.529275060098101, 30.116209264146587 ], [ -95.529263060061012, 30.116077263936855 ], [ -95.529244060275062, 30.116022264001607 ], [ -95.529105060393533, 30.115885264080422 ], [ -95.529029060658573, 30.115758264524079 ], [ -95.5287820604199, 30.115566264049772 ], [ -95.528725059923872, 30.115506264228468 ], [ -95.528390059877395, 30.115110264300398 ], [ -95.52817505952828, 30.114972264354105 ], [ -95.528068059959907, 30.114934263912399 ], [ -95.527872059981334, 30.114901264253053 ], [ -95.527632059563715, 30.114879263522258 ], [ -95.527550060118173, 30.114851263713803 ], [ -95.527385060269197, 30.114769263502033 ], [ -95.527259060091808, 30.114648264064805 ], [ -95.52723305972475, 30.114516263899475 ], [ -95.527233059230966, 30.114477264084446 ], [ -95.527265059250055, 30.114378264218001 ], [ -95.527265059988935, 30.114285263800792 ], [ -95.527252059231785, 30.114235264066881 ], [ -95.527187060015592, 30.114145263792153 ], [ -95.527019059141239, 30.113911263922837 ], [ -95.526949059318682, 30.113839263345181 ], [ -95.526861059151145, 30.113806263363696 ], [ -95.526620060006522, 30.113812263702901 ], [ -95.526519059661936, 30.113790263411175 ], [ -95.526462059203197, 30.113740263387022 ], [ -95.526355059854978, 30.113608263750017 ], [ -95.526045059421975, 30.113345263475448 ], [ -95.525590059084152, 30.113059263657075 ], [ -95.525546059449866, 30.113048263198959 ], [ -95.525470059131791, 30.113048263502368 ], [ -95.52545605961383, 30.11305226369382 ], [ -95.525419059531657, 30.113064263442883 ], [ -95.525318059472966, 30.113174263496031 ], [ -95.525090059209546, 30.113377263996501 ], [ -95.525059059053021, 30.113416263340234 ], [ -95.525027058546158, 30.113432263997794 ], [ -95.524995059430125, 30.113438263822193 ], [ -95.524464058908649, 30.113405263665559 ], [ -95.524350058839445, 30.113410264091399 ], [ -95.524135058865554, 30.113487263764895 ], [ -95.523737059158634, 30.113580263721179 ], [ -95.5230030586807, 30.113751263928947 ], [ -95.522909058600121, 30.113762263977808 ], [ -95.522510058911422, 30.113877264198987 ], [ -95.522358058528312, 30.113866264117895 ], [ -95.521960058783336, 30.113937264374776 ], [ -95.521890058732396, 30.113981264272748 ], [ -95.521821058157769, 30.114047263734776 ], [ -95.521764058265632, 30.114119263963101 ], [ -95.521682057827903, 30.114284264315941 ], [ -95.521606058361996, 30.114558264200618 ], [ -95.521612057795224, 30.114646263818955 ], [ -95.521663057775783, 30.114740263992914 ], [ -95.521745058143665, 30.114861264398321 ], [ -95.521928058830184, 30.115042263880358 ], [ -95.522042058505306, 30.115130264177115 ], [ -95.522175058419563, 30.115323264330005 ], [ -95.522200058790787, 30.115378264422965 ], [ -95.522282058868456, 30.115466264572095 ], [ -95.52238905805477, 30.115713264234188 ], [ -95.522408058926956, 30.115806264201918 ], [ -95.522389058649026, 30.115889264386972 ], [ -95.522345058318678, 30.115977264269723 ], [ -95.52230705818738, 30.116015264286787 ], [ -95.522174058966428, 30.11610926401654 ], [ -95.52212405883914, 30.116169264026464 ], [ -95.52209805811664, 30.116252264535568 ], [ -95.522107058798326, 30.116427264569431 ], [ -95.522130058327662, 30.11686226439484 ], [ -95.52206705821655, 30.117247264181835 ], [ -95.521959058628681, 30.117620264448995 ], [ -95.521953058087561, 30.117670264250368 ], [ -95.521952058170896, 30.1177692649729 ], [ -95.521997058430955, 30.117989265190371 ], [ -95.52199705892285, 30.11807726475265 ], [ -95.521971058015637, 30.118170265134257 ], [ -95.521902058202528, 30.118247264564896 ], [ -95.521750058870396, 30.118352265216743 ], [ -95.521592058715399, 30.118429264970082 ], [ -95.521541058673506, 30.118440265311825 ], [ -95.521181058698431, 30.11838426516012 ], [ -95.521130058308856, 30.118384264490722 ], [ -95.521086058705507, 30.118368264474768 ], [ -95.520966058201452, 30.118296265276062 ], [ -95.520915058408335, 30.118280264618527 ], [ -95.520877057818794, 30.118280264409385 ], [ -95.520783057872364, 30.118307264797341 ], [ -95.520681057919901, 30.118373264638286 ], [ -95.520586057658036, 30.118461264885301 ], [ -95.520485058451811, 30.118577264954485 ], [ -95.520340058073558, 30.118835264766194 ], [ -95.520321057738158, 30.118923264592638 ], [ -95.520321058137966, 30.118983265202406 ], [ -95.520327058255077, 30.119049264877873 ], [ -95.520352057926701, 30.119121265131223 ], [ -95.520434057749526, 30.119264265046773 ], [ -95.520523058329516, 30.11937426478908 ], [ -95.520649057958835, 30.119660264953545 ], [ -95.520668058261563, 30.119726265178137 ], [ -95.520668058185606, 30.119836265477723 ], [ -95.520649058266713, 30.119973265053552 ], [ -95.520611058545043, 30.120105264977969 ], [ -95.520573058562832, 30.120154265345601 ], [ -95.520535058149733, 30.120187264878279 ], [ -95.520447058623347, 30.120237264937906 ], [ -95.520339058511482, 30.120242264861073 ], [ -95.520238058139611, 30.120220265453256 ], [ -95.519637057549801, 30.119956264849268 ], [ -95.519511058258544, 30.119923265112856 ], [ -95.519397057790016, 30.119929265118529 ], [ -95.519315058032703, 30.119945265571687 ], [ -95.519274057727486, 30.119958264840275 ], [ -95.518588058156595, 30.12017626558108 ], [ -95.518483057496439, 30.120221265644545 ], [ -95.518278057830514, 30.120308265067528 ], [ -95.518246057212764, 30.120335264996594 ], [ -95.518145057629766, 30.120473265024646 ], [ -95.518119057618165, 30.120522265832395 ], [ -95.518025057294594, 30.12078626582225 ], [ -95.517949057410362, 30.120890265108244 ], [ -95.517873057327378, 30.12096226541551 ], [ -95.517538057030023, 30.121165265406699 ], [ -95.517228057805667, 30.121401265633484 ], [ -95.51695605778859, 30.121539266030226 ], [ -95.51686705684493, 30.121555266017776 ], [ -95.51676605770173, 30.121555265752303 ], [ -95.516507057048187, 30.121522265266016 ], [ -95.516443057677861, 30.12153926543164 ], [ -95.516304057491112, 30.121621265659183 ], [ -95.516140057378323, 30.121769265827172 ], [ -95.515956056914163, 30.121868265982876 ], [ -95.515868057125331, 30.121896265922743 ], [ -95.515786057460417, 30.121901266131037 ], [ -95.515716057442987, 30.121896265846019 ], [ -95.515438057175089, 30.121736265398667 ], [ -95.515305056511025, 30.121615265810018 ], [ -95.515172056901221, 30.121467265328508 ], [ -95.5147870569361, 30.120719265177382 ], [ -95.514762056611843, 30.120681265484777 ], [ -95.514660056409355, 30.120615265933967 ], [ -95.514591056774151, 30.12058726578864 ], [ -95.514540056386068, 30.120582265378271 ], [ -95.5144640571162, 30.120593265908106 ], [ -95.514256056346255, 30.120724265269516 ], [ -95.513996056968892, 30.120790266058155 ], [ -95.513743056847915, 30.120801265702724 ], [ -95.513617056701293, 30.120730265981251 ], [ -95.513585056775412, 30.120658265248828 ], [ -95.513567056101181, 30.120477265933236 ], [ -95.513567055933251, 30.120284265777098 ], [ -95.513548056166783, 30.120213265382848 ], [ -95.513598056157278, 30.119955265605416 ], [ -95.513687056669013, 30.119702265049408 ], [ -95.51370005630227, 30.119608265735852 ], [ -95.513700056799138, 30.119520265163409 ], [ -95.513725056939023, 30.119366265769074 ], [ -95.51377605650093, 30.119273265027051 ], [ -95.513807056600882, 30.119235265501704 ], [ -95.513852056170933, 30.11920226512499 ], [ -95.513890055994437, 30.119152265659764 ], [ -95.513972056764132, 30.119009265361047 ], [ -95.513997056604367, 30.118877264914158 ], [ -95.513997056171817, 30.118806265144137 ], [ -95.513940055985245, 30.118696265447866 ], [ -95.513915056971754, 30.118619264806679 ], [ -95.513827055938464, 30.118498264743078 ], [ -95.513605056232407, 30.118322264919904 ], [ -95.513485056244647, 30.118261265205721 ], [ -95.513321056390367, 30.118151264684755 ], [ -95.513150055989968, 30.11796426497521 ], [ -95.513068055807054, 30.117668265175826 ], [ -95.513068055801639, 30.117536264626366 ], [ -95.513106055916154, 30.117453264548164 ], [ -95.513163056621323, 30.117404265128155 ], [ -95.513214056485609, 30.11729426459198 ], [ -95.513226055806527, 30.117239264468026 ], [ -95.513220056537179, 30.117189265190714 ], [ -95.512885055974124, 30.116837265087607 ], [ -95.512847056485143, 30.116782264556829 ], [ -95.512746056304593, 30.11666726499244 ], [ -95.512696056131858, 30.116590264645851 ], [ -95.512664056564262, 30.116508264460482 ], [ -95.512550056192566, 30.116315264414727 ], [ -95.512487056334052, 30.116227264427639 ], [ -95.512443056236322, 30.116183265164285 ], [ -95.512253056325946, 30.11604026492757 ], [ -95.512025055497546, 30.115980265123319 ], [ -95.511747055419846, 30.115919264974082 ], [ -95.51164605546208, 30.115886264362928 ], [ -95.51155805603797, 30.115820264314234 ], [ -95.51149405614072, 30.115672265041958 ], [ -95.511444056017595, 30.115320264555958 ], [ -95.51138705570601, 30.115155264476872 ], [ -95.511305055781108, 30.115050264670312 ], [ -95.511216055901443, 30.11496226459748 ], [ -95.511160055482193, 30.114929264905374 ], [ -95.510938055268852, 30.114880264480576 ], [ -95.510812055551341, 30.114891264361049 ], [ -95.510761055646384, 30.114907264223852 ], [ -95.510609055623419, 30.115012264307889 ], [ -95.510508055791945, 30.115066264517651 ], [ -95.51036305500385, 30.115105264603319 ], [ -95.510306055136525, 30.115099264764538 ], [ -95.510167055465416, 30.115044264318062 ], [ -95.510009055615541, 30.114956264354088 ], [ -95.509895054769956, 30.114868264379169 ], [ -95.50980705528427, 30.114775264930049 ], [ -95.509724055105039, 30.114610264347675 ], [ -95.509680055710419, 30.114555264128818 ], [ -95.509427055101739, 30.114286264447745 ], [ -95.509263055039213, 30.114181264839207 ], [ -95.509010055360363, 30.11410426426016 ], [ -95.508827055069688, 30.114038264538795 ], [ -95.508662054601643, 30.114021264351148 ], [ -95.508523055275816, 30.11402126483209 ], [ -95.50785305523209, 30.114192264371543 ], [ -95.507417054346675, 30.11431826486962 ], [ -95.507145054434588, 30.114384264615428 ], [ -95.50706905406814, 30.114411264477958 ], [ -95.506866054266879, 30.114439264296841 ], [ -95.506745054573742, 30.114436264788466 ], [ -95.506639054673443, 30.114433264923704 ], [ -95.506411054186714, 30.114438264438899 ], [ -95.506297053976752, 30.114449264957621 ], [ -95.50606305457282, 30.114504264191282 ], [ -95.505817054513187, 30.114609264409278 ], [ -95.505311053746055, 30.114878264340412 ], [ -95.504899053961182, 30.115136265029037 ], [ -95.504463053821354, 30.115290265163459 ], [ -95.503881053517631, 30.115515264511082 ], [ -95.50380505355362, 30.115526265272258 ], [ -95.503628053676266, 30.115531264708579 ], [ -95.503489053152776, 30.1154872644973 ], [ -95.503350053101542, 30.115251264921646 ], [ -95.503230053566384, 30.115130264722371 ], [ -95.503180053456504, 30.114970265028795 ], [ -95.503148053380201, 30.114926265044307 ], [ -95.503091053478244, 30.114866264790795 ], [ -95.502883052984217, 30.114717264715679 ], [ -95.502800053704917, 30.114635265095838 ], [ -95.502617053369576, 30.114387264761262 ], [ -95.502598053534896, 30.114305265121555 ], [ -95.502586053094092, 30.113937264803852 ], [ -95.502491053129489, 30.113772264994477 ], [ -95.502415052960174, 30.113662264754034 ], [ -95.502396053504185, 30.113607264205786 ], [ -95.502396053350779, 30.113519264961273 ], [ -95.502409053306494, 30.113398264419558 ], [ -95.50221905342913, 30.113134264478152 ], [ -95.502163053209685, 30.113084264498688 ], [ -95.502125053649252, 30.113035264291327 ], [ -95.502080052732552, 30.113002264301521 ], [ -95.501960053220344, 30.112947264691972 ], [ -95.501758052933539, 30.112820264410402 ], [ -95.501467053117665, 30.11257326408732 ], [ -95.50124005303212, 30.112424264160978 ], [ -95.501164052994227, 30.112397264200549 ], [ -95.501025053054249, 30.112375264026845 ], [ -95.500740053252471, 30.112369264407292 ], [ -95.500671053128499, 30.112386264108665 ], [ -95.500658052375826, 30.112402264297284 ], [ -95.500664052638427, 30.112457264434223 ], [ -95.500772053125743, 30.112595264594958 ], [ -95.500791052351772, 30.112639264487225 ], [ -95.500784052387758, 30.112732264876037 ], [ -95.500759052491333, 30.112771264274112 ], [ -95.500481052648439, 30.112880264244989 ], [ -95.50030405305958, 30.112902264661074 ], [ -95.500183052443077, 30.112891264567395 ], [ -95.500120052499327, 30.11285826479045 ], [ -95.500089052160604, 30.112825264765824 ], [ -95.500044052404661, 30.112748264893785 ], [ -95.500013053027033, 30.112627264646523 ], [ -95.499914053088986, 30.112040264016944 ], [ -95.499895052863835, 30.111969264776537 ], [ -95.499831052778504, 30.111831264669252 ], [ -95.499680052348893, 30.111612264205913 ], [ -95.49958505245074, 30.111502263996211 ], [ -95.499528052590989, 30.111458263905405 ], [ -95.499376052767914, 30.111381264563921 ], [ -95.499319052155982, 30.111342264375157 ], [ -95.49926805251971, 30.111276264152661 ], [ -95.49923705275242, 30.111210263796188 ], [ -95.499154052853143, 30.111106264280359 ], [ -95.499091052228309, 30.111062263905517 ], [ -95.498895052132326, 30.111040263992674 ], [ -95.498794052479198, 30.110974264156223 ], [ -95.498769052237421, 30.110941263857097 ], [ -95.498750052098316, 30.110897264497865 ], [ -95.498743051854319, 30.110518264060353 ], [ -95.498711051767529, 30.110348264184587 ], [ -95.498673051805696, 30.11023826443925 ], [ -95.498679051969731, 30.110144264162102 ], [ -95.498749052321401, 30.109858264306119 ], [ -95.498749052234231, 30.109759263906117 ], [ -95.498723052553032, 30.109743263794993 ], [ -95.498692052634553, 30.109682264171209 ], [ -95.498622052241785, 30.109633263561712 ], [ -95.498559051680772, 30.109600263832654 ], [ -95.498097052114034, 30.109523263899789 ], [ -95.497927052171022, 30.109413264082797 ], [ -95.497832051811585, 30.109320263404378 ], [ -95.497806051740341, 30.109265263824916 ], [ -95.497756051538843, 30.109205263708443 ], [ -95.497705051621224, 30.109177263851876 ], [ -95.49756605148103, 30.109150263524274 ], [ -95.497465051851961, 30.109144263750313 ], [ -95.497231051487177, 30.10916626360747 ], [ -95.497060052203167, 30.109199263456297 ], [ -95.49683905169708, 30.109189263574287 ], [ -95.496769052066824, 30.109167263912941 ], [ -95.496655051565043, 30.109062263712158 ], [ -95.496554051473765, 30.10902926400906 ], [ -95.496314051880034, 30.109062263969097 ], [ -95.496244051168702, 30.10909026424746 ], [ -95.496017051356958, 30.109228263565765 ], [ -95.495303050976986, 30.10961826370632 ], [ -95.495258051485564, 30.109651264367333 ], [ -95.495176051665823, 30.109690263704547 ], [ -95.49505005160799, 30.109712264109618 ], [ -95.494797050774153, 30.109728263614031 ], [ -95.494620051208315, 30.109772263800014 ], [ -95.494405050902614, 30.109806264054484 ], [ -95.494266050619302, 30.109806264069096 ], [ -95.494082051239275, 30.109822264139066 ], [ -95.493874050765413, 30.109916264048589 ], [ -95.493760050747298, 30.109993264143693 ], [ -95.493710051040111, 30.110053264031205 ], [ -95.493634050490414, 30.11019626417599 ], [ -95.4935140509088, 30.110477263915527 ], [ -95.493470050362518, 30.110548264060153 ], [ -95.493179050357568, 30.11073026425715 ], [ -95.493097050267693, 30.110763264121644 ], [ -95.492913050362404, 30.110790264484518 ], [ -95.492787050321652, 30.110741264247181 ], [ -95.492622050537562, 30.110642264499649 ], [ -95.492534050395093, 30.11062026428192 ], [ -95.492414050902426, 30.11060426422949 ], [ -95.492123050506351, 30.110615263970772 ], [ -95.492022050225984, 30.110631264757945 ], [ -95.491864050087742, 30.110593264671035 ], [ -95.491813050145808, 30.110609264617683 ], [ -95.491800050339791, 30.110637264082044 ], [ -95.491832050387274, 30.110730264560861 ], [ -95.491832050245677, 30.110763264736253 ], [ -95.491800050700419, 30.110818264173982 ], [ -95.491737050390185, 30.11084626427138 ], [ -95.491415050623829, 30.110786264756904 ], [ -95.491389050490014, 30.110791264218182 ], [ -95.491351050017386, 30.110824264806251 ], [ -95.49137105075863, 30.110912264567979 ], [ -95.491491050812243, 30.111115264764393 ], [ -95.4917950503919, 30.111478264467696 ], [ -95.491820050936013, 30.111522264370883 ], [ -95.491858050008815, 30.111637264375084 ], [ -95.491864050791861, 30.111720264298476 ], [ -95.491902050362938, 30.111923264728347 ], [ -95.491959050573186, 30.112154264531455 ], [ -95.492073050663265, 30.112440264956785 ], [ -95.492232050505137, 30.112704264735772 ], [ -95.492257050630243, 30.112731264435826 ], [ -95.492257050499035, 30.112781264659191 ], [ -95.49223805074017, 30.112803264656524 ], [ -95.492168050192504, 30.112836264701475 ], [ -95.492010050352775, 30.112869264339174 ], [ -95.491960050310837, 30.112896265219049 ], [ -95.491922050850462, 30.112935265108302 ], [ -95.491890050431692, 30.112995264537382 ], [ -95.491890050424843, 30.113056264813263 ], [ -95.491903050853622, 30.113100264797325 ], [ -95.492099050438995, 30.113336264912554 ], [ -95.492213050567258, 30.113534264671831 ], [ -95.492384050394577, 30.113759264677181 ], [ -95.492441050523539, 30.11382026517143 ], [ -95.492466050675631, 30.113869264902199 ], [ -95.492460051012898, 30.113908264713174 ], [ -95.49241605060287, 30.113957265293813 ], [ -95.492372050719624, 30.11397926486282 ], [ -95.492151050622624, 30.114001264917867 ], [ -95.492131050797411, 30.114007264917987 ], [ -95.492106050211603, 30.114034265423975 ], [ -95.492093050686421, 30.114166265317127 ], [ -95.492062050991194, 30.114315265051943 ], [ -95.492030050189655, 30.114375265383867 ], [ -95.491872050476815, 30.114589264720109 ], [ -95.49184105087447, 30.114683265082682 ], [ -95.491771050332915, 30.114925264837765 ], [ -95.491778050525667, 30.115046265599737 ], [ -95.491809050620148, 30.115117264991916 ], [ -95.491879051135044, 30.115172265444617 ], [ -95.491980050890291, 30.115233264942727 ], [ -95.492069050963295, 30.11524926527029 ], [ -95.492151050849017, 30.115249265197875 ], [ -95.492309051229796, 30.115216265344031 ], [ -95.492379050652431, 30.11522726534162 ], [ -95.492467051124166, 30.115276265621411 ], [ -95.492537051017663, 30.11534826485623 ], [ -95.492644050508076, 30.115485265339633 ], [ -95.492701050642992, 30.115601264933915 ], [ -95.49272005126447, 30.115678265233203 ], [ -95.492702051355536, 30.115832265614156 ], [ -95.492657050582523, 30.115952265664411 ], [ -95.492575050764216, 30.116079265563716 ], [ -95.492506050968302, 30.116216265149959 ], [ -95.492537051072887, 30.116332265360779 ], [ -95.492645050762647, 30.11644226559574 ], [ -95.492696051165993, 30.116469265437519 ], [ -95.492746050535416, 30.116535265440834 ], [ -95.492765051204245, 30.116579265605527 ], [ -95.492772051360646, 30.116634265110346 ], [ -95.492746050682868, 30.116854265459544 ], [ -95.4927850510268, 30.116975265741935 ], [ -95.492911050893554, 30.117107265879309 ], [ -95.493069051238251, 30.117217265461175 ], [ -95.493145050675224, 30.117283265477575 ], [ -95.49320205081375, 30.117354265527428 ], [ -95.493367050870859, 30.117689265475956 ], [ -95.493417050871827, 30.11772226601467 ], [ -95.493474050900204, 30.117739265800182 ], [ -95.493601051575794, 30.117761265783781 ], [ -95.493689051763525, 30.117766265941192 ], [ -95.493866051158847, 30.117810266027909 ], [ -95.493955051698123, 30.117848265986378 ], [ -95.494271051452444, 30.118030265827262 ], [ -95.494834051925466, 30.118453265467686 ], [ -95.494942051337901, 30.11858526547649 ], [ -95.495087051196222, 30.118694265738597 ], [ -95.495144051455028, 30.118760265768859 ], [ -95.49517605120748, 30.118898265969332 ], [ -95.495208051510843, 30.118964266069991 ], [ -95.49525205139436, 30.119019265679199 ], [ -95.495322052247147, 30.119074265951784 ], [ -95.495581051700725, 30.119206266166575 ], [ -95.495809051441356, 30.119288265846713 ], [ -95.4960930519713, 30.119436265748451 ], [ -95.49628905249206, 30.119628265812327 ], [ -95.496334052500472, 30.119700265828616 ], [ -95.496385052274093, 30.119865266058916 ], [ -95.496397051872464, 30.119942266443445 ], [ -95.496378052277862, 30.120035266123601 ], [ -95.496334052224, 30.120079266089579 ], [ -95.496258051796744, 30.12010126628261 ], [ -95.496037051928965, 30.120123265779775 ], [ -95.495974052230395, 30.120156266094181 ], [ -95.495936051882424, 30.120189266107563 ], [ -95.495917051979077, 30.120233266587512 ], [ -95.495974052018155, 30.120596266356721 ], [ -95.496012051534947, 30.120756266406882 ], [ -95.496094051819284, 30.120920266598439 ], [ -95.496202052319134, 30.121096266300476 ], [ -95.496215051970282, 30.121162266541905 ], [ -95.496208051676788, 30.121278266503428 ], [ -95.496158052224601, 30.121415266261007 ], [ -95.496158051638005, 30.121481266255124 ], [ -95.49617705233365, 30.12153626669458 ], [ -95.496209052333995, 30.12158626644143 ], [ -95.496278051771498, 30.121635266185688 ], [ -95.496348052318467, 30.121673266701229 ], [ -95.496493051992857, 30.1217172660639 ], [ -95.496639052209957, 30.121723266062371 ], [ -95.497018052690606, 30.121673266302967 ], [ -95.49713205223749, 30.121701266196439 ], [ -95.497157051827543, 30.121717266593034 ], [ -95.497246051863499, 30.121816265970548 ], [ -95.497252052177743, 30.121849266099051 ], [ -95.497303052871573, 30.121909266739056 ], [ -95.49732805193689, 30.121959266172372 ], [ -95.497354052325207, 30.122058266387526 ], [ -95.497341052212263, 30.122129266234662 ], [ -95.497309052787003, 30.122201266749968 ], [ -95.497278052753217, 30.122239266225055 ], [ -95.497265052840049, 30.122283266079755 ], [ -95.497272052323311, 30.12235526693313 ], [ -95.497316052394595, 30.122432266622553 ], [ -95.497537052721199, 30.122613266610262 ], [ -95.497613052478542, 30.122717266471078 ], [ -95.497613051982825, 30.122756266429452 ], [ -95.497588052991347, 30.122855266964159 ], [ -95.497500052340314, 30.12305826660263 ], [ -95.497500052336733, 30.123141266532091 ], [ -95.497525052762384, 30.123212266813404 ], [ -95.497595052011789, 30.123306266529589 ], [ -95.497816052538028, 30.123498266830325 ], [ -95.49787305282635, 30.123597266329707 ], [ -95.497873052539987, 30.123630267186968 ], [ -95.497861052654116, 30.123668266947035 ], [ -95.497842053087624, 30.123685266771904 ], [ -95.497778052087426, 30.123707267137277 ], [ -95.497728052722223, 30.123712266578483 ], [ -95.497399052111035, 30.123652266602498 ], [ -95.497310052321666, 30.123646266454465 ], [ -95.497228052862681, 30.123657267140594 ], [ -95.49717105241352, 30.123674267238361 ], [ -95.497121052516661, 30.123707266412939 ], [ -95.497064052038937, 30.123795266394751 ], [ -95.497051052303107, 30.123867267087888 ], [ -95.497070051885458, 30.123932267285969 ], [ -95.497165052575511, 30.124174266568616 ], [ -95.497279052274138, 30.124405266885766 ], [ -95.497324052125435, 30.124543267171653 ], [ -95.497317052651098, 30.12476826687498 ], [ -95.49730505221774, 30.124812267456804 ], [ -95.497210052581252, 30.124949266942171 ], [ -95.497198052756403, 30.125005267510726 ], [ -95.497173052771544, 30.125186266848893 ], [ -95.497204052168371, 30.125258267225107 ], [ -95.497388052780281, 30.125423267406365 ], [ -95.497742052402586, 30.125851266764286 ], [ -95.497755052593121, 30.125917267608482 ], [ -95.497749052321765, 30.125950267433435 ], [ -95.497724053166181, 30.125989267102621 ], [ -95.497686052243282, 30.126022267561851 ], [ -95.497490052305466, 30.126126267126971 ], [ -95.497414052253305, 30.126187267060168 ], [ -95.497237052178875, 30.126385267185753 ], [ -95.497123052823071, 30.126544267188407 ], [ -95.497072052498837, 30.126588267342012 ], [ -95.497009052259799, 30.126616267246934 ], [ -95.496921052438381, 30.126632267643135 ], [ -95.496820052299043, 30.126605267004571 ], [ -95.496788052085819, 30.126572267510568 ], [ -95.496731052008727, 30.126539267557288 ], [ -95.496193051924024, 30.12612126739922 ], [ -95.496073052716696, 30.126050267687752 ], [ -95.495991052339775, 30.126017267710726 ], [ -95.495940051969086, 30.126012267527564 ], [ -95.495896052068801, 30.126028267368 ], [ -95.49585205262828, 30.126061267179391 ], [ -95.495814052335504, 30.126160267035875 ], [ -95.495808051920591, 30.126248267596477 ], [ -95.495814052564896, 30.126336267653368 ], [ -95.495833052669823, 30.126402267080984 ], [ -95.496023051854905, 30.126699267156948 ], [ -95.496073052804761, 30.126820267211674 ], [ -95.49608005279201, 30.126897267113367 ], [ -95.495922052017434, 30.127133267662245 ], [ -95.495688051842833, 30.127424267934259 ], [ -95.495682051971855, 30.127485267618905 ], [ -95.495701052571818, 30.127573267900338 ], [ -95.495878052418291, 30.127952267562929 ], [ -95.496017052383607, 30.128117267538105 ], [ -95.496112052112792, 30.128205267494206 ], [ -95.496201052391356, 30.128271268182363 ], [ -95.496372052792381, 30.128337267697859 ], [ -95.49647305250312, 30.128359267712231 ], [ -95.496808052823908, 30.128392267860448 ], [ -95.496979052947594, 30.12845226749792 ], [ -95.497074052435437, 30.128633267360122 ], [ -95.49708605235196, 30.128721268255898 ], [ -95.497080052547759, 30.12876026801899 ], [ -95.497049052986455, 30.128831268214125 ], [ -95.496973052539715, 30.128903267849601 ], [ -95.496897052572649, 30.128952267524397 ], [ -95.496688052591139, 30.129024267727061 ], [ -95.496587052902413, 30.129068267704234 ], [ -95.496473052433473, 30.12913426824344 ], [ -95.496435052544427, 30.129194268296438 ], [ -95.496429052036419, 30.129304267799071 ], [ -95.496391052203421, 30.129442267602073 ], [ -95.496341052280528, 30.129524268146437 ], [ -95.49626505205616, 30.129590268315674 ], [ -95.496107052522916, 30.129667267650522 ], [ -95.49603705227544, 30.12972826787724 ], [ -95.496012052396608, 30.129787268033414 ], [ -95.496012052682303, 30.129805267985027 ], [ -95.496037052767846, 30.129832268470036 ], [ -95.496208052891291, 30.129838268271254 ], [ -95.496398052309004, 30.129958267809855 ], [ -95.496550052920895, 30.130074268279248 ], [ -95.496569052096461, 30.130140268353507 ], [ -95.49650605271178, 30.130222267884051 ], [ -95.496404052188197, 30.130299267727814 ], [ -95.496303052172522, 30.13042626811707 ], [ -95.496133052738685, 30.130805267931713 ], [ -95.495779052577348, 30.131817268437565 ], [ -95.495779052320628, 30.131866268242284 ], [ -95.495842052719979, 30.131921268559807 ], [ -95.49614605293381, 30.131982268224824 ], [ -95.496298052873698, 30.132031268167545 ], [ -95.49647505246088, 30.132113268259399 ], [ -95.496633052640746, 30.132174268818584 ], [ -95.496753053212274, 30.132240268620084 ], [ -95.496823052542922, 30.132300268408969 ], [ -95.496950052308733, 30.132443268573414 ], [ -95.497007052709606, 30.132668268325183 ], [ -95.497013052486821, 30.132767268899126 ], [ -95.497000052635997, 30.13283926845811 ], [ -95.49693705303811, 30.132976268782507 ], [ -95.496937052292594, 30.133020268560607 ], [ -95.496988052482436, 30.133119268720325 ], [ -95.496988052615521, 30.133174268466696 ], [ -95.496963053068001, 30.133235268726203 ], [ -95.496932053032339, 30.133271268959348 ], [ -95.496906052677375, 30.13330126855962 ], [ -95.49674105293785, 30.133427268429092 ], [ -95.49665905252786, 30.133504268596877 ], [ -95.496609052467349, 30.133598269095113 ], [ -95.496602052643794, 30.133680268695116 ], [ -95.496634053154864, 30.133861269181057 ], [ -95.496691052702829, 30.133971268582229 ], [ -95.496792053115925, 30.134087268613445 ], [ -95.497001052507301, 30.134230268824997 ], [ -95.497121053158125, 30.134334268883244 ], [ -95.497159052929462, 30.134389269021717 ], [ -95.497223053181202, 30.134614269349555 ], [ -95.497273052940912, 30.13468026870585 ], [ -95.497843053425086, 30.135054269463009 ], [ -95.49797605344591, 30.135186269431184 ], [ -95.498013053151126, 30.135283269182978 ], [ -95.498014052674307, 30.135301268928437 ], [ -95.497989053364449, 30.135340269458766 ], [ -95.497906052741712, 30.13538426886242 ], [ -95.497824053390076, 30.135389269240619 ], [ -95.497755052652096, 30.135406269501225 ], [ -95.497382052515746, 30.135576269109098 ], [ -95.497331052786507, 30.135626269300193 ], [ -95.497268052691439, 30.135708269063766 ], [ -95.497249053398733, 30.13575826950466 ], [ -95.497262053503221, 30.135906269634237 ], [ -95.497363052786497, 30.136241269553068 ], [ -95.49743905341353, 30.136313268908982 ], [ -95.497945053709643, 30.136676269240613 ], [ -95.497964053160629, 30.136725269004842 ], [ -95.497850053284324, 30.136923269886644 ], [ -95.497831053008369, 30.136989269353457 ], [ -95.497844052956296, 30.137027269131536 ], [ -95.49788205325639, 30.137060269126543 ], [ -95.497926053200359, 30.137077269280418 ], [ -95.498072052777431, 30.13709326973661 ], [ -95.498160053158969, 30.137093269235159 ], [ -95.498255052883721, 30.13711026937148 ], [ -95.498369053471052, 30.1371542693132 ], [ -95.498502053813269, 30.137264269620459 ], [ -95.498584053619581, 30.137412269579556 ], [ -95.498616053744371, 30.137439269342057 ], [ -95.498654053342463, 30.137604269986976 ], [ -95.498661053864865, 30.138044269547109 ], [ -95.498654053129883, 30.138072269432005 ], [ -95.498591053616082, 30.138165269684553 ], [ -95.49856605393397, 30.138220269264721 ], [ -95.498509053620978, 30.138429269577713 ], [ -95.498497053232853, 30.138979269988759 ], [ -95.498510053556146, 30.139083270083002 ], [ -95.498560053106104, 30.139155269617415 ], [ -95.498655053944987, 30.139171270344509 ], [ -95.498699053067867, 30.139165269452885 ], [ -95.498826053283878, 30.139088269739428 ], [ -95.498946053840797, 30.139127270065785 ], [ -95.49902205360786, 30.139193270187921 ], [ -95.499110053896445, 30.139237269582541 ], [ -95.499326054095746, 30.139523269727359 ], [ -95.499389053580217, 30.13966527004402 ], [ -95.499408053329304, 30.140045269593028 ], [ -95.499491053990369, 30.140638270383125 ], [ -95.499592053897928, 30.140886270240408 ], [ -95.499675053789417, 30.141012270144714 ], [ -95.499694053749778, 30.141073270351182 ], [ -95.499719054399137, 30.141298270057259 ], [ -95.499757053999161, 30.141452270149099 ], [ -95.499833054151665, 30.141622270598916 ], [ -95.499858054312242, 30.141776270833901 ], [ -95.499833053894946, 30.142068270253493 ], [ -95.499846054263983, 30.142480270869331 ], [ -95.499903053883571, 30.142595270980767 ], [ -95.500004053551933, 30.142678270878374 ], [ -95.500141053649784, 30.142781270335188 ], [ -95.500223053770327, 30.142787270129919 ], [ -95.500400053659789, 30.14277027049096 ], [ -95.500482054136882, 30.142792270889132 ], [ -95.500552053993758, 30.142831270257297 ], [ -95.500577053685561, 30.142880270328899 ], [ -95.500571053711724, 30.142935270762308 ], [ -95.500507053732704, 30.143139270854945 ], [ -95.500514054657742, 30.143194271049207 ], [ -95.500526053940618, 30.143216270722199 ], [ -95.500564054075596, 30.143238270799568 ], [ -95.500621054090601, 30.143254270601727 ], [ -95.500760054441585, 30.143271270790756 ], [ -95.500830054636296, 30.143298271023099 ], [ -95.500868054105283, 30.143337270828955 ], [ -95.500900054528458, 30.143408270402066 ], [ -95.500868054195308, 30.14353527070541 ], [ -95.500887054713573, 30.143606270567474 ], [ -95.500963054338882, 30.143694270939864 ], [ -95.501102054828721, 30.143777271005931 ], [ -95.501450054793878, 30.14394727076867 ], [ -95.501601054573072, 30.144052270767784 ], [ -95.501696054922647, 30.144096270691247 ], [ -95.501930054809279, 30.144145270487638 ], [ -95.502113054579155, 30.144222271069861 ], [ -95.502202054170866, 30.144206270447192 ], [ -95.50224605454288, 30.144184270360487 ], [ -95.502297054494193, 30.144151270964294 ], [ -95.502360054941974, 30.144074270852968 ], [ -95.502436055189079, 30.144025270875325 ], [ -95.502575054845138, 30.144014270325343 ], [ -95.502702054265683, 30.144025270594284 ], [ -95.502847054934705, 30.144091270638977 ], [ -95.50294205478167, 30.144234270411548 ], [ -95.502980054720297, 30.144327270819122 ], [ -95.503030055029015, 30.144525270672595 ], [ -95.503056054403046, 30.144580270860693 ], [ -95.503094054616739, 30.144630270786543 ], [ -95.503132055257041, 30.144756270789152 ], [ -95.503163054847633, 30.144789271204129 ], [ -95.503226054488337, 30.144795270692114 ], [ -95.503353055255175, 30.144564271180421 ], [ -95.503416054925523, 30.144525271072229 ], [ -95.503530055497393, 30.144481270803212 ], [ -95.503612055553859, 30.144476270410678 ], [ -95.503695055228562, 30.144481270569592 ], [ -95.503751055529122, 30.144503270936479 ], [ -95.50380205486654, 30.14454727102753 ], [ -95.503827055211076, 30.144613271143015 ], [ -95.50385305529862, 30.144734270454606 ], [ -95.503846055460372, 30.144800271015789 ], [ -95.50377705524825, 30.144910270717862 ], [ -95.503555055141277, 30.145103271162885 ], [ -95.503492054809527, 30.145196270717683 ], [ -95.503485054538586, 30.145234270653102 ], [ -95.503536055165114, 30.145278270859116 ], [ -95.503713055487921, 30.145284271046815 ], [ -95.504175055302497, 30.145174270960378 ], [ -95.504599055679407, 30.145136271193309 ], [ -95.504702055252281, 30.145132270635621 ], [ -95.504438055649601, 30.143773270647948 ], [ -95.50444205523705, 30.143729270360691 ], [ -95.504580055616742, 30.14298527036572 ], [ -95.504596055423747, 30.14287427031174 ], [ -95.504596054716913, 30.142800270165448 ], [ -95.504638055271997, 30.142489269992996 ], [ -95.504669055082871, 30.142359269980211 ], [ -95.504685055076891, 30.142229270092759 ], [ -95.504736055436908, 30.14193827062881 ], [ -95.50481005484518, 30.141309270098951 ], [ -95.504873055119063, 30.140961269677639 ], [ -95.50489605536697, 30.140791269671489 ], [ -95.504888055191657, 30.14057526967229 ], [ -95.504857055453513, 30.140257269594827 ], [ -95.504857055212568, 30.140202270110827 ], [ -95.504858054852974, 30.140010269920339 ], [ -95.504844054860271, 30.139909269917535 ], [ -95.504813054892452, 30.139539269307882 ], [ -95.504815054710036, 30.139273269555101 ], [ -95.504824054984354, 30.139114269299718 ], [ -95.504834054847976, 30.13805126957331 ], [ -95.504857054751582, 30.137717268977806 ], [ -95.504843055114648, 30.137073268903787 ], [ -95.504859055520356, 30.136899269120757 ], [ -95.504872054727514, 30.136557269413473 ], [ -95.504860054801313, 30.136393269388453 ], [ -95.504872054856193, 30.136215269436526 ], [ -95.504875055071082, 30.136041269342062 ], [ -95.504871055472265, 30.135870268735694 ], [ -95.504878054562866, 30.135694268750271 ], [ -95.504890055276562, 30.13482726851851 ], [ -95.504892054715896, 30.134716268940846 ], [ -95.504913054546918, 30.133798268816651 ], [ -95.504933054568085, 30.133619268084946 ], [ -95.504924055100176, 30.133304268340019 ], [ -95.50493105487682, 30.133145268084007 ], [ -95.504946054915962, 30.132985268126138 ], [ -95.504974054882325, 30.132822268426597 ], [ -95.504992055144143, 30.132673268715632 ], [ -95.505016055214654, 30.132528268731107 ], [ -95.50511505524176, 30.132364268169567 ], [ -95.505179054792805, 30.132217268664409 ], [ -95.505391055171813, 30.131793267851453 ], [ -95.505463054874284, 30.131656268409483 ], [ -95.50573105444262, 30.131090267929977 ], [ -95.505797054875003, 30.130963267614217 ], [ -95.505835055403651, 30.130838268202108 ], [ -95.505847055027417, 30.130714267500025 ], [ -95.505820054772286, 30.130527267547233 ], [ -95.505823055095718, 30.130214267896445 ], [ -95.505819055085297, 30.130061267748793 ], [ -95.505817055282023, 30.130044268240155 ], [ -95.505791054792525, 30.129755267694939 ], [ -95.505785054546479, 30.129266267928706 ], [ -95.50577305438155, 30.128898267697849 ], [ -95.505773054673085, 30.128625267317634 ], [ -95.505790055110552, 30.12831126743221 ], [ -95.505806054505157, 30.128155267798981 ], [ -95.505821054532987, 30.128065267139029 ], [ -95.505909055349008, 30.127534267065364 ], [ -95.505943054432791, 30.127220267308154 ], [ -95.50594505503949, 30.127150267257331 ], [ -95.508864055690808, 30.12724826668779 ], [ -95.509017055682406, 30.127254266836186 ], [ -95.510331055895676, 30.127355267177464 ], [ -95.511937056359017, 30.127607267116169 ], [ -95.512869057054374, 30.127786267007838 ], [ -95.513202056313489, 30.127871266982712 ], [ -95.513914056745705, 30.128137267440856 ], [ -95.514588057333867, 30.128631266781234 ], [ -95.514964057459224, 30.12885126724731 ], [ -95.515156056886369, 30.128985267161788 ], [ -95.515672056912223, 30.129274267714948 ], [ -95.515852057125883, 30.12933326769345 ], [ -95.516059057778008, 30.129449266893911 ], [ -95.516320057678769, 30.129535267525203 ], [ -95.516477057485332, 30.129624267232352 ], [ -95.516847058244409, 30.129796266920135 ], [ -95.517159057804903, 30.129850267367033 ], [ -95.517621057959346, 30.129978267517991 ], [ -95.519016058435582, 30.130067267320737 ], [ -95.520156058081056, 30.129871267297137 ], [ -95.520483059098098, 30.129796267542524 ], [ -95.520726058383886, 30.129724267331497 ], [ -95.521745059010627, 30.129396266897505 ], [ -95.523159059387126, 30.128613267033572 ], [ -95.523779059191881, 30.128154266446661 ], [ -95.524121059564592, 30.127993266539431 ], [ -95.524848060087905, 30.127473266988886 ], [ -95.525642059772608, 30.126894266567291 ], [ -95.526134059578908, 30.126400265903349 ], [ -95.52663606011896, 30.125800266411954 ], [ -95.52687405960036, 30.125471265802595 ], [ -95.527471060736772, 30.12470726575928 ], [ -95.527511060519458, 30.124656265584417 ], [ -95.528569060923417, 30.123826265922663 ], [ -95.529631060645272, 30.122898265622343 ], [ -95.530578061218662, 30.122219265772866 ], [ -95.531355061262573, 30.121466265563985 ], [ -95.53186406162888, 30.120860264958225 ], [ -95.532495061538427, 30.11998626499571 ], [ -95.533102061746817, 30.119015264220931 ], [ -95.533530061524019, 30.118438264618 ], [ -95.534024061909193, 30.11777726405796 ], [ -95.53497106181706, 30.116806264204264 ], [ -95.536063061777341, 30.116151263671259 ], [ -95.537665062169822, 30.11547126410559 ], [ -95.538369062171967, 30.115277263374054 ], [ -95.539558063309087, 30.114767263197677 ], [ -95.540432062806403, 30.114330263547448 ], [ -95.54130606338812, 30.114039263452369 ], [ -95.542083063457255, 30.113869263474069 ], [ -95.543345063766665, 30.113748262910974 ], [ -95.543927064207296, 30.113748262849093 ], [ -95.544467063973798, 30.113851263133462 ], [ -95.544675064446636, 30.113906263284118 ], [ -95.546995064467964, 30.114191262928227 ], [ -95.5476480648516, 30.114148263299974 ], [ -95.547892064889723, 30.114147263473679 ], [ -95.549309065012267, 30.113921262731214 ], [ -95.55002606498266, 30.113729262712031 ], [ -95.551182065630854, 30.113237263206386 ], [ -95.552647066371733, 30.112261262852755 ], [ -95.55328606623813, 30.111504262147083 ], [ -95.55345706666813, 30.111303262510194 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1368, "Tract": "48201321402", "Area_SqMi": 0.75501457084361123, "total_2009": 47, "total_2010": 53, "total_2011": 78, "total_2012": 102, "total_2013": 108, "total_2014": 97, "total_2015": 113, "total_2016": 100, "total_2017": 84, "total_2018": 91, "total_2019": 100, "total_2020": 126, "age1": 14, "age2": 72, "age3": 37, "earn1": 12, "earn2": 34, "earn3": 77, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 64, "naics_s07": 13, "naics_s08": 17, "naics_s09": 0, "naics_s10": 4, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 19, "naics_s15": 0, "naics_s16": 0, "naics_s17": 1, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 92, "race2": 16, "race3": 6, "race4": 8, "race5": 0, "race6": 1, "ethnicity1": 70, "ethnicity2": 53, "edu1": 29, "edu2": 37, "edu3": 25, "edu4": 18, "Shape_Length": 23408.064085936374, "Shape_Area": 21048514.014767241, "total_2021": 102, "total_2022": 123 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.235317964206885, 29.663341181397662 ], [ -95.235636965028505, 29.663104181382455 ], [ -95.235269964042388, 29.66271518165652 ], [ -95.234846964320624, 29.66226718170094 ], [ -95.234578964794252, 29.661965181317733 ], [ -95.23409296387868, 29.661452181563334 ], [ -95.233328963811289, 29.660646181611323 ], [ -95.232593963505323, 29.659887180878957 ], [ -95.232148963744692, 29.659416180913812 ], [ -95.231869963760445, 29.659121181391711 ], [ -95.23115296370166, 29.658362181167821 ], [ -95.230430963532356, 29.657596180554076 ], [ -95.229730962396587, 29.656800180221321 ], [ -95.229281962865514, 29.65628718041042 ], [ -95.229065962138847, 29.65601818004151 ], [ -95.228331962612572, 29.655268180681514 ], [ -95.227571962207563, 29.654491180119575 ], [ -95.227100962301719, 29.654010180197993 ], [ -95.22681796211009, 29.653721180267713 ], [ -95.226747961680118, 29.653650179924913 ], [ -95.226390961512251, 29.65328518029952 ], [ -95.22616296209064, 29.653053179484946 ], [ -95.225897961776084, 29.652782179755832 ], [ -95.22578196145561, 29.652661179639605 ], [ -95.225349961434958, 29.652674179870051 ], [ -95.224976961020062, 29.652679179955168 ], [ -95.224901960963507, 29.652680179940898 ], [ -95.223125960998132, 29.652705180092937 ], [ -95.223037960436571, 29.65270617959839 ], [ -95.222373961155512, 29.652717180330072 ], [ -95.219105959777863, 29.652761180060406 ], [ -95.218764959549347, 29.652760179872654 ], [ -95.218351959409134, 29.652767180221588 ], [ -95.217305959806424, 29.65277718051259 ], [ -95.216523958781195, 29.652781180220682 ], [ -95.216505958997374, 29.652434180287802 ], [ -95.216504959660199, 29.652368180549612 ], [ -95.216466958709432, 29.652314180209462 ], [ -95.216493958660323, 29.65148118033548 ], [ -95.216464958883691, 29.651015180187766 ], [ -95.215225958841373, 29.651017180176751 ], [ -95.213592958498268, 29.650966179775985 ], [ -95.211347957724939, 29.650895179604742 ], [ -95.209242957528019, 29.650951179951733 ], [ -95.208640956867086, 29.650967180348658 ], [ -95.207980956577345, 29.650985180066336 ], [ -95.207990956854459, 29.651131179708489 ], [ -95.207996956627937, 29.651465180026811 ], [ -95.208022957508092, 29.651767180010797 ], [ -95.208041956973432, 29.652231179963479 ], [ -95.208062956596265, 29.652754180392371 ], [ -95.208090957577696, 29.653448180431869 ], [ -95.208098957516071, 29.653653180898022 ], [ -95.208118956811504, 29.654634180630872 ], [ -95.208131957228261, 29.65496718103563 ], [ -95.208366957677413, 29.655284180964621 ], [ -95.208388957640153, 29.655313180616922 ], [ -95.208634957289547, 29.655640180591377 ], [ -95.209133957849161, 29.656313181137858 ], [ -95.20942095720423, 29.656608181514063 ], [ -95.21013495829493, 29.657604181499131 ], [ -95.210877958204819, 29.658566181449835 ], [ -95.210928957829921, 29.658672181993932 ], [ -95.21143195799462, 29.659277182122935 ], [ -95.211647958547687, 29.659537181829901 ], [ -95.211925958536241, 29.659920182178027 ], [ -95.212346958528656, 29.660497182342262 ], [ -95.213144958614109, 29.660459181866326 ], [ -95.213151959132361, 29.660788181702213 ], [ -95.2145399595329, 29.660740181727487 ], [ -95.216032959901057, 29.660745181987757 ], [ -95.217511959626464, 29.660711181978897 ], [ -95.218926959779083, 29.660692182007832 ], [ -95.220418960847866, 29.660635181696907 ], [ -95.221818960579924, 29.660634181195537 ], [ -95.223288961174489, 29.660628181993935 ], [ -95.224708962174617, 29.66059018116492 ], [ -95.226194961641653, 29.660592181498004 ], [ -95.227632961974564, 29.660543181712249 ], [ -95.229089962325006, 29.660548180996184 ], [ -95.230118963368596, 29.660535181197634 ], [ -95.230522962706857, 29.660953181746006 ], [ -95.23067396318821, 29.661093181035401 ], [ -95.230717963669136, 29.661134181433518 ], [ -95.230999963583713, 29.661423181448257 ], [ -95.231255963154737, 29.661685181315402 ], [ -95.231994963171587, 29.662439181305281 ], [ -95.23257396402424, 29.663136181341748 ], [ -95.232813964200417, 29.663424181895152 ], [ -95.233562964343591, 29.664213182300823 ], [ -95.233644964541313, 29.664300182033713 ], [ -95.233715963992751, 29.664374181724011 ], [ -95.23392396409163, 29.664275181586117 ], [ -95.234072964443612, 29.664203181861822 ], [ -95.234194963891667, 29.664145181908182 ], [ -95.234944964374534, 29.663613181534394 ], [ -95.235118963968873, 29.663489181971432 ], [ -95.235317964206885, 29.663341181397662 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1369, "Tract": "48201343302", "Area_SqMi": 1.7435640587448724, "total_2009": 873, "total_2010": 1124, "total_2011": 1603, "total_2012": 501, "total_2013": 539, "total_2014": 514, "total_2015": 624, "total_2016": 591, "total_2017": 820, "total_2018": 715, "total_2019": 856, "total_2020": 868, "age1": 262, "age2": 287, "age3": 123, "earn1": 160, "earn2": 302, "earn3": 210, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 35, "naics_s05": 4, "naics_s06": 5, "naics_s07": 43, "naics_s08": 7, "naics_s09": 0, "naics_s10": 1, "naics_s11": 9, "naics_s12": 82, "naics_s13": 0, "naics_s14": 76, "naics_s15": 20, "naics_s16": 27, "naics_s17": 0, "naics_s18": 360, "naics_s19": 3, "naics_s20": 0, "race1": 580, "race2": 58, "race3": 5, "race4": 25, "race5": 1, "race6": 3, "ethnicity1": 450, "ethnicity2": 222, "edu1": 88, "edu2": 97, "edu3": 143, "edu4": 82, "Shape_Length": 33456.758250220279, "Shape_Area": 48607581.818096571, "total_2021": 840, "total_2022": 672 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.08771892711836, 29.67460218933736 ], [ -95.087695927488085, 29.673476188359761 ], [ -95.087687927440641, 29.673058188970874 ], [ -95.087613926757484, 29.672459188701954 ], [ -95.087343927021934, 29.671726188758754 ], [ -95.087168926857686, 29.671138188065715 ], [ -95.087081927296964, 29.670884188088877 ], [ -95.0870869270789, 29.670690187896916 ], [ -95.087070926391419, 29.670408187730512 ], [ -95.087067926605386, 29.669495188053361 ], [ -95.087053926999104, 29.668981187604796 ], [ -95.087010926732631, 29.66742018777467 ], [ -95.086926926350188, 29.66438618695036 ], [ -95.083217925697141, 29.664413187485945 ], [ -95.080896924454933, 29.664449186787262 ], [ -95.079143924012854, 29.664466187582843 ], [ -95.0784129241529, 29.664474186798905 ], [ -95.077456923755932, 29.664483187452458 ], [ -95.07073692238788, 29.664590187410369 ], [ -95.07057592261296, 29.664593187219896 ], [ -95.066003920876099, 29.664674187715008 ], [ -95.06382892071224, 29.664714187713418 ], [ -95.063730920745442, 29.664716188110123 ], [ -95.062069919657986, 29.664746188146996 ], [ -95.059337919754938, 29.664795187858267 ], [ -95.05783391861533, 29.664803187897515 ], [ -95.055710918765485, 29.66487018831635 ], [ -95.052728917797992, 29.664914188178379 ], [ -95.046484915962736, 29.665006188484636 ], [ -95.046391916332553, 29.665007188209586 ], [ -95.046468916453833, 29.668881188838121 ], [ -95.046475916019219, 29.670180189900506 ], [ -95.046567917023893, 29.675373190526763 ], [ -95.053617918600025, 29.675237190086289 ], [ -95.059604920286787, 29.675169190359306 ], [ -95.059634919873602, 29.675168190192611 ], [ -95.061077920370366, 29.675139189628563 ], [ -95.072450923212003, 29.674898189881031 ], [ -95.075193923883717, 29.674849189694115 ], [ -95.079229924927731, 29.674772189690927 ], [ -95.080516925395997, 29.67474718952565 ], [ -95.084205926612242, 29.674678188848446 ], [ -95.085029926917798, 29.674663189044406 ], [ -95.08582092692356, 29.674648188879505 ], [ -95.08771892711836, 29.67460218933736 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1370, "Tract": "48201410402", "Area_SqMi": 0.28052663862842797, "total_2009": 697, "total_2010": 712, "total_2011": 708, "total_2012": 975, "total_2013": 1016, "total_2014": 1178, "total_2015": 1293, "total_2016": 1396, "total_2017": 1392, "total_2018": 1264, "total_2019": 1274, "total_2020": 1246, "age1": 345, "age2": 729, "age3": 244, "earn1": 330, "earn2": 378, "earn3": 610, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 13, "naics_s06": 3, "naics_s07": 142, "naics_s08": 2, "naics_s09": 0, "naics_s10": 22, "naics_s11": 44, "naics_s12": 96, "naics_s13": 2, "naics_s14": 3, "naics_s15": 29, "naics_s16": 355, "naics_s17": 16, "naics_s18": 492, "naics_s19": 70, "naics_s20": 1, "race1": 991, "race2": 178, "race3": 7, "race4": 105, "race5": 1, "race6": 36, "ethnicity1": 820, "ethnicity2": 498, "edu1": 204, "edu2": 249, "edu3": 273, "edu4": 247, "Shape_Length": 11656.312533248523, "Shape_Area": 7820602.558820107, "total_2021": 1126, "total_2022": 1318 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.402291011413851, 29.753159194605328 ], [ -95.402282010984891, 29.752889194615868 ], [ -95.402250011329784, 29.75255319461262 ], [ -95.402213011683585, 29.752432194159585 ], [ -95.402195011099693, 29.751469194468122 ], [ -95.402186011603419, 29.7509751944913 ], [ -95.402183010703254, 29.75080019442365 ], [ -95.402162011200602, 29.749365193292423 ], [ -95.402160011219749, 29.749206193521278 ], [ -95.40215601074604, 29.748959193699203 ], [ -95.4021480107766, 29.748423193175867 ], [ -95.402146011424051, 29.748225193874354 ], [ -95.402143011463153, 29.748009193888016 ], [ -95.402129011310592, 29.747003192862525 ], [ -95.402125010571396, 29.746793193001235 ], [ -95.402122011302851, 29.746527193579858 ], [ -95.402115011121552, 29.746336192714907 ], [ -95.402113011073666, 29.746255192760483 ], [ -95.402112010998664, 29.745830193353228 ], [ -95.402112011039335, 29.745743192941671 ], [ -95.402092010858198, 29.744760192461005 ], [ -95.402093010585801, 29.743770192248505 ], [ -95.40207501101834, 29.742791192289403 ], [ -95.401258010082103, 29.742795192093904 ], [ -95.400489010160726, 29.742795192405826 ], [ -95.39931800985056, 29.742801192221282 ], [ -95.398864009903889, 29.742798192266587 ], [ -95.398181009496156, 29.742801192319504 ], [ -95.397552009584501, 29.742808192781716 ], [ -95.397146009910216, 29.742815192925818 ], [ -95.397040009713507, 29.742831192611071 ], [ -95.396948009674588, 29.742868192810686 ], [ -95.395919009378105, 29.743352193059515 ], [ -95.395853009177998, 29.74337819252375 ], [ -95.395764008921859, 29.743415192292925 ], [ -95.394810009359958, 29.743936192836934 ], [ -95.394381008835367, 29.744158192524811 ], [ -95.393828008887638, 29.74440719272069 ], [ -95.393451009078419, 29.744594192849725 ], [ -95.393295008399349, 29.744660193520588 ], [ -95.393122008960049, 29.744661193127609 ], [ -95.393193008118814, 29.744826193523043 ], [ -95.393602008446734, 29.745493193661389 ], [ -95.393774008943993, 29.745837193753314 ], [ -95.393800009103231, 29.745875193493198 ], [ -95.393976008978385, 29.74611819347631 ], [ -95.39406200926004, 29.746254193653776 ], [ -95.39411000862691, 29.746314193006768 ], [ -95.394675008711857, 29.747228193527718 ], [ -95.394915008972404, 29.747628193207284 ], [ -95.39508600871801, 29.747891193539132 ], [ -95.395159009642455, 29.748031193936434 ], [ -95.395609009602694, 29.74873419397133 ], [ -95.395897009570845, 29.749193193687379 ], [ -95.396240009084536, 29.749746194056691 ], [ -95.396632009378493, 29.750364194063994 ], [ -95.39702700977881, 29.751013194066775 ], [ -95.397480009566991, 29.751650194147825 ], [ -95.397936009832989, 29.752415194718481 ], [ -95.398046010237962, 29.752663194799389 ], [ -95.398024010398998, 29.753234194896709 ], [ -95.399224010880616, 29.753215194393551 ], [ -95.40025401075998, 29.753203194377221 ], [ -95.402291011413851, 29.753159194605328 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1371, "Tract": "48201431302", "Area_SqMi": 0.52759562653307512, "total_2009": 2357, "total_2010": 3094, "total_2011": 2744, "total_2012": 2267, "total_2013": 2256, "total_2014": 2363, "total_2015": 2151, "total_2016": 1997, "total_2017": 1907, "total_2018": 2171, "total_2019": 2114, "total_2020": 2125, "age1": 553, "age2": 1107, "age3": 620, "earn1": 621, "earn2": 911, "earn3": 748, "naics_s01": 0, "naics_s02": 2, "naics_s03": 12, "naics_s04": 20, "naics_s05": 25, "naics_s06": 15, "naics_s07": 256, "naics_s08": 10, "naics_s09": 90, "naics_s10": 56, "naics_s11": 12, "naics_s12": 84, "naics_s13": 1, "naics_s14": 1035, "naics_s15": 23, "naics_s16": 168, "naics_s17": 9, "naics_s18": 351, "naics_s19": 111, "naics_s20": 0, "race1": 1465, "race2": 621, "race3": 24, "race4": 126, "race5": 2, "race6": 42, "ethnicity1": 1564, "ethnicity2": 716, "edu1": 417, "edu2": 447, "edu3": 514, "edu4": 349, "Shape_Length": 15691.187377156437, "Shape_Area": 14708463.07880272, "total_2021": 2262, "total_2022": 2280 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.495700035263113, 29.748810190743221 ], [ -95.495697034597484, 29.748129190548799 ], [ -95.495695035331082, 29.747438189890474 ], [ -95.495690034699592, 29.746230190136927 ], [ -95.495684035214794, 29.744817189485289 ], [ -95.495677034610495, 29.742894189686425 ], [ -95.495695034611288, 29.74157518923646 ], [ -95.495676034856871, 29.740959189049253 ], [ -95.495687034582772, 29.738210187928406 ], [ -95.495636034297377, 29.737736187844977 ], [ -95.495619034470124, 29.737582188315248 ], [ -95.495119034648425, 29.737596188350238 ], [ -95.494219034392117, 29.737607188021649 ], [ -95.492862034301922, 29.737608188192958 ], [ -95.491615033466985, 29.73764218831354 ], [ -95.489859032695392, 29.737689188562648 ], [ -95.488562032860131, 29.737688188864041 ], [ -95.488114032930653, 29.737687188807353 ], [ -95.487217031910887, 29.737702188142109 ], [ -95.485316032279229, 29.737734188185378 ], [ -95.48468303118662, 29.737729188600962 ], [ -95.484292031134501, 29.737723188642534 ], [ -95.484296031978289, 29.737885188457785 ], [ -95.484315031328123, 29.738426189103077 ], [ -95.484477032034448, 29.738957188677727 ], [ -95.484525032001443, 29.739275189004314 ], [ -95.484566032001126, 29.739921189116568 ], [ -95.484589031890707, 29.740047188921018 ], [ -95.484661032085228, 29.740194189130641 ], [ -95.485076031573712, 29.741039188897609 ], [ -95.485322031807598, 29.741535189084779 ], [ -95.485440032237364, 29.742196189310043 ], [ -95.485423031921911, 29.742902189304051 ], [ -95.485484031785973, 29.746015189829166 ], [ -95.485480032463329, 29.746284190717383 ], [ -95.485564031946566, 29.74662019052057 ], [ -95.485731032652808, 29.747001190524486 ], [ -95.485831032517211, 29.747163190337972 ], [ -95.485933032801782, 29.747333190294935 ], [ -95.485979032252416, 29.747722190871396 ], [ -95.485983032251866, 29.747853190645269 ], [ -95.486002032407086, 29.748470190867256 ], [ -95.486022032458351, 29.749126190569935 ], [ -95.486038032224656, 29.749844190591922 ], [ -95.486041032617734, 29.749943190691877 ], [ -95.487018032571868, 29.749925191370245 ], [ -95.487395033370589, 29.749919190896826 ], [ -95.48873403363082, 29.749889190661136 ], [ -95.489953033639495, 29.749877191314496 ], [ -95.490146033481665, 29.7498701907179 ], [ -95.490383034028952, 29.749883190460025 ], [ -95.490754034120314, 29.749930190701118 ], [ -95.491201034132814, 29.750025190520077 ], [ -95.491524033774354, 29.750081190964373 ], [ -95.491813033798564, 29.750107191145659 ], [ -95.49222603391847, 29.750115190791874 ], [ -95.492501034412442, 29.750107190594406 ], [ -95.492855034392534, 29.750124191107108 ], [ -95.493091034479946, 29.750115190491609 ], [ -95.493229034638546, 29.750103190376876 ], [ -95.49347003499976, 29.750085190667559 ], [ -95.493815034866159, 29.750038190617349 ], [ -95.493965034232616, 29.750016191091426 ], [ -95.494288034892392, 29.749991190994812 ], [ -95.494607034475592, 29.749965190928751 ], [ -95.49503703517108, 29.749956190413091 ], [ -95.49546403470552, 29.749943190759616 ], [ -95.49566503535209, 29.749945190423389 ], [ -95.495669035426189, 29.749814190267877 ], [ -95.495700035263113, 29.748810190743221 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1372, "Tract": "48201452202", "Area_SqMi": 0.57798417582404538, "total_2009": 2947, "total_2010": 2689, "total_2011": 2879, "total_2012": 2886, "total_2013": 3104, "total_2014": 3316, "total_2015": 3619, "total_2016": 3877, "total_2017": 4674, "total_2018": 5168, "total_2019": 5261, "total_2020": 5889, "age1": 1144, "age2": 3176, "age3": 1080, "earn1": 537, "earn2": 1006, "earn3": 3857, "naics_s01": 0, "naics_s02": 414, "naics_s03": 0, "naics_s04": 260, "naics_s05": 66, "naics_s06": 609, "naics_s07": 530, "naics_s08": 144, "naics_s09": 86, "naics_s10": 198, "naics_s11": 42, "naics_s12": 2451, "naics_s13": 142, "naics_s14": 202, "naics_s15": 49, "naics_s16": 0, "naics_s17": 0, "naics_s18": 144, "naics_s19": 63, "naics_s20": 0, "race1": 3945, "race2": 654, "race3": 42, "race4": 661, "race5": 14, "race6": 84, "ethnicity1": 3698, "ethnicity2": 1702, "edu1": 865, "edu2": 923, "edu3": 1191, "edu4": 1277, "Shape_Length": 16162.673473832847, "Shape_Area": 16113209.592170954, "total_2021": 5416, "total_2022": 5400 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.571645053446218, 29.727432183906267 ], [ -95.571653053632872, 29.727315183355625 ], [ -95.57164205370691, 29.727096183401471 ], [ -95.571625052988693, 29.726648183006482 ], [ -95.571577053781695, 29.725417183422998 ], [ -95.571568053331632, 29.724522183064231 ], [ -95.571523053237627, 29.721882182695584 ], [ -95.57150005315323, 29.720492182259118 ], [ -95.571453052447239, 29.717067181597471 ], [ -95.569052052054928, 29.71727818159496 ], [ -95.566131051326252, 29.717592182125752 ], [ -95.56500805102884, 29.717692181794735 ], [ -95.563366050424037, 29.717840181639364 ], [ -95.561499050745269, 29.717971182140971 ], [ -95.559517050342066, 29.718135181797432 ], [ -95.557983049145435, 29.718242181893707 ], [ -95.557588049790823, 29.718266181876739 ], [ -95.557618049309312, 29.719040182586113 ], [ -95.5576180500655, 29.719900182232539 ], [ -95.55761705000927, 29.721065182537046 ], [ -95.557609049676358, 29.721741183025262 ], [ -95.557611049521498, 29.721822182477847 ], [ -95.557627049718803, 29.722033183177672 ], [ -95.557620049518462, 29.722111182955285 ], [ -95.557614049673134, 29.722190183282329 ], [ -95.557618049223777, 29.723572183091694 ], [ -95.557625049873593, 29.726489183964528 ], [ -95.557620050349172, 29.726879183446687 ], [ -95.557625049601327, 29.727412183687552 ], [ -95.557628049987642, 29.72764118421426 ], [ -95.558023049577443, 29.72763318418237 ], [ -95.55968505066464, 29.727619183737275 ], [ -95.560473050574302, 29.727622183512572 ], [ -95.561314051214268, 29.727653183943662 ], [ -95.561715051424883, 29.727683184271129 ], [ -95.562603050878636, 29.727745184134463 ], [ -95.562778050834439, 29.727758183728092 ], [ -95.563258051231315, 29.727793184261277 ], [ -95.563554051388209, 29.727815184014304 ], [ -95.563907051177068, 29.727810183507597 ], [ -95.565272051593368, 29.727792184085505 ], [ -95.565628051657882, 29.727788183880875 ], [ -95.565929052401188, 29.727784183597958 ], [ -95.566825051892039, 29.727774183583147 ], [ -95.56699205238408, 29.727771183858373 ], [ -95.568023052497594, 29.727760183788394 ], [ -95.569113052348541, 29.727765184019749 ], [ -95.569214052966231, 29.727766183994724 ], [ -95.569955053038939, 29.727758183978235 ], [ -95.570069052641458, 29.727756183654687 ], [ -95.570211053407348, 29.727760183256123 ], [ -95.570387052981559, 29.727761183601217 ], [ -95.571641053482992, 29.727734183779898 ], [ -95.571645053446218, 29.727432183906267 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1373, "Tract": "48201452802", "Area_SqMi": 0.50130480061764271, "total_2009": 219, "total_2010": 276, "total_2011": 301, "total_2012": 134, "total_2013": 144, "total_2014": 136, "total_2015": 141, "total_2016": 151, "total_2017": 129, "total_2018": 128, "total_2019": 126, "total_2020": 103, "age1": 44, "age2": 126, "age3": 32, "earn1": 55, "earn2": 60, "earn3": 87, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 16, "naics_s08": 1, "naics_s09": 0, "naics_s10": 8, "naics_s11": 89, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 66, "naics_s19": 2, "naics_s20": 0, "race1": 124, "race2": 40, "race3": 2, "race4": 33, "race5": 1, "race6": 2, "ethnicity1": 123, "ethnicity2": 79, "edu1": 40, "edu2": 44, "edu3": 44, "edu4": 30, "Shape_Length": 15861.850612874454, "Shape_Area": 13975519.849478725, "total_2021": 139, "total_2022": 202 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.604455060744201, 29.703498177567738 ], [ -95.604437060273412, 29.701992176751272 ], [ -95.604441060850547, 29.701613176885207 ], [ -95.604438061204007, 29.701261176675299 ], [ -95.604440060787866, 29.699931177106571 ], [ -95.604437060323988, 29.698648176462168 ], [ -95.604428061036373, 29.698206176330871 ], [ -95.60442906032182, 29.697775176351186 ], [ -95.604413060038155, 29.696939175879265 ], [ -95.60440106039303, 29.696220175982855 ], [ -95.604397060807983, 29.695996175937367 ], [ -95.604390060807717, 29.695836175544688 ], [ -95.604391060517543, 29.69555717604646 ], [ -95.604366059879538, 29.694809176037186 ], [ -95.604354060063272, 29.694060175964811 ], [ -95.604331060433537, 29.693352175815299 ], [ -95.604314060171347, 29.692656175559396 ], [ -95.604298060583162, 29.691514174625727 ], [ -95.604297060101345, 29.691439175092867 ], [ -95.604284060504511, 29.690486174660254 ], [ -95.604264060006457, 29.688947174599381 ], [ -95.60410005995962, 29.688953174651456 ], [ -95.600373059289083, 29.689085174701805 ], [ -95.598411058150262, 29.689053175118776 ], [ -95.59591205765436, 29.689093175027317 ], [ -95.59591505835219, 29.689700175162155 ], [ -95.595924058437319, 29.690130174630088 ], [ -95.595923058078526, 29.690543175115923 ], [ -95.595934058328979, 29.69089217539597 ], [ -95.595957057863728, 29.692110175197097 ], [ -95.595950058640881, 29.692444175487783 ], [ -95.595969058522925, 29.692567175225538 ], [ -95.59597305806173, 29.693124175513695 ], [ -95.59598605838616, 29.693523176141831 ], [ -95.595998057938573, 29.693954175701794 ], [ -95.596015058060203, 29.694758176083358 ], [ -95.596019058741376, 29.695410176059688 ], [ -95.596027058180312, 29.695996176191219 ], [ -95.596031058228391, 29.696180176029003 ], [ -95.596052057925476, 29.697141176248387 ], [ -95.596047058543689, 29.697281176970733 ], [ -95.596080057971463, 29.698681176809558 ], [ -95.596088058450519, 29.699053176665583 ], [ -95.596107058175761, 29.699894176762289 ], [ -95.596107058328315, 29.70027917679813 ], [ -95.596130058835612, 29.700989176929042 ], [ -95.596131058272263, 29.701573177651792 ], [ -95.596140058781799, 29.702308177421365 ], [ -95.596155058384312, 29.702849177841983 ], [ -95.596161058583974, 29.703620178233148 ], [ -95.596767058878044, 29.70361117744525 ], [ -95.597329058499326, 29.703602177946056 ], [ -95.597927059206853, 29.703592177964804 ], [ -95.598593059484045, 29.703586177913387 ], [ -95.598803059489612, 29.703577177615113 ], [ -95.599819059308942, 29.703560177600018 ], [ -95.602413060740048, 29.703515177737501 ], [ -95.603189060835717, 29.703509178000388 ], [ -95.603755060759653, 29.703500177212952 ], [ -95.604455060744201, 29.703498177567738 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1374, "Tract": "48201542302", "Area_SqMi": 1.7595167260366631, "total_2009": 305, "total_2010": 664, "total_2011": 269, "total_2012": 347, "total_2013": 356, "total_2014": 364, "total_2015": 348, "total_2016": 425, "total_2017": 526, "total_2018": 627, "total_2019": 517, "total_2020": 520, "age1": 121, "age2": 275, "age3": 104, "earn1": 136, "earn2": 182, "earn3": 182, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 42, "naics_s05": 42, "naics_s06": 55, "naics_s07": 82, "naics_s08": 6, "naics_s09": 0, "naics_s10": 7, "naics_s11": 9, "naics_s12": 21, "naics_s13": 0, "naics_s14": 6, "naics_s15": 6, "naics_s16": 150, "naics_s17": 0, "naics_s18": 43, "naics_s19": 31, "naics_s20": 0, "race1": 376, "race2": 78, "race3": 4, "race4": 36, "race5": 1, "race6": 5, "ethnicity1": 319, "ethnicity2": 181, "edu1": 76, "edu2": 107, "edu3": 114, "edu4": 82, "Shape_Length": 40202.142178004062, "Shape_Area": 49052314.878928751, "total_2021": 524, "total_2022": 500 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.75432210450532, 29.831561198915558 ], [ -95.754326104339185, 29.831421198475443 ], [ -95.754317105216032, 29.83067219830313 ], [ -95.754313104217729, 29.830302198654181 ], [ -95.754295105129842, 29.829333197737295 ], [ -95.754293104425159, 29.829186197917789 ], [ -95.754289105090962, 29.828600198073751 ], [ -95.754278104692105, 29.828296198256194 ], [ -95.754272104289001, 29.828145198000218 ], [ -95.754228104175624, 29.827554198010642 ], [ -95.754211104740477, 29.827412198083014 ], [ -95.754186104995981, 29.827184197953294 ], [ -95.754094104370594, 29.826574197603858 ], [ -95.754057104094912, 29.82638019702647 ], [ -95.754036104305371, 29.826267197877485 ], [ -95.753979104210572, 29.825967197295707 ], [ -95.753843104831532, 29.825401197227762 ], [ -95.753704104217647, 29.824907197452827 ], [ -95.753670103825542, 29.824784197138754 ], [ -95.75362110414278, 29.82465419713111 ], [ -95.753596104734385, 29.824546196870539 ], [ -95.753569104541953, 29.824455196665067 ], [ -95.753379104646768, 29.823814196811082 ], [ -95.753325103697208, 29.823652197024476 ], [ -95.753131103642943, 29.822996196614248 ], [ -95.752911103715277, 29.822266196747439 ], [ -95.752723104014905, 29.821601196781316 ], [ -95.752607103585575, 29.821132196195574 ], [ -95.752509103953273, 29.820654195987782 ], [ -95.752424103379241, 29.820171196162761 ], [ -95.752412103388892, 29.820080196029927 ], [ -95.75241310383683, 29.819985196513777 ], [ -95.752373104195527, 29.819706196438077 ], [ -95.75235310410666, 29.819525196477322 ], [ -95.752374103948682, 29.819439196139392 ], [ -95.752328104139096, 29.819350195687075 ], [ -95.752324103694562, 29.819181195621965 ], [ -95.752302103961384, 29.819004196090198 ], [ -95.752285103177542, 29.818629195710546 ], [ -95.752278103330283, 29.818215195823665 ], [ -95.752263103417647, 29.818161195792086 ], [ -95.752276104081204, 29.818101195912678 ], [ -95.752275104115284, 29.817989195916166 ], [ -95.752281103214912, 29.817940195679416 ], [ -95.752273104070341, 29.817876196019558 ], [ -95.7522691033016, 29.817522195370433 ], [ -95.752247103632541, 29.817312195255553 ], [ -95.752237103566131, 29.817220195582475 ], [ -95.752221103393325, 29.816864195647344 ], [ -95.752198103495658, 29.816083195044637 ], [ -95.752159103613295, 29.813581195326268 ], [ -95.752149103264216, 29.813033194855496 ], [ -95.752119103135882, 29.811332194035465 ], [ -95.752110103758923, 29.810774194432266 ], [ -95.752097103408232, 29.810059193798075 ], [ -95.752089103345966, 29.809552194264004 ], [ -95.752086103557559, 29.809415194064648 ], [ -95.752043102648486, 29.806949193212489 ], [ -95.752034102782758, 29.806408193616939 ], [ -95.752022103448283, 29.805613193699436 ], [ -95.751996102661991, 29.803923192550393 ], [ -95.751998102931225, 29.803787193257886 ], [ -95.752001103303897, 29.803594193008287 ], [ -95.752031103068276, 29.803244192510483 ], [ -95.752024103077858, 29.802807192317093 ], [ -95.752021102846584, 29.802676193006121 ], [ -95.752011102621907, 29.802139193035512 ], [ -95.752010102735269, 29.802102192367105 ], [ -95.751757102843726, 29.802105192880941 ], [ -95.751112102426092, 29.802111192324443 ], [ -95.750775102785241, 29.802106192894964 ], [ -95.750507102811085, 29.802102192706649 ], [ -95.749641102137957, 29.802099192510841 ], [ -95.74892910182237, 29.802108192590772 ], [ -95.748380101955945, 29.802107192435308 ], [ -95.746012101541012, 29.8021191931564 ], [ -95.745587101111937, 29.802122193148659 ], [ -95.745435100666228, 29.802125192989248 ], [ -95.744878101304792, 29.802128192980533 ], [ -95.744503100551441, 29.802109193069956 ], [ -95.744242101244524, 29.802084193200447 ], [ -95.743972101096205, 29.802048193002665 ], [ -95.743694100757267, 29.802000193210052 ], [ -95.743286100643061, 29.801918193069369 ], [ -95.743075100308303, 29.801880192738594 ], [ -95.742863100270156, 29.80184119300602 ], [ -95.742597100213686, 29.80179219269602 ], [ -95.742341100340653, 29.801758192796861 ], [ -95.742201100709366, 29.801746192831455 ], [ -95.742059100570685, 29.801741193183048 ], [ -95.741914099973982, 29.801741192913177 ], [ -95.740936100268911, 29.80174619293766 ], [ -95.739761099741372, 29.801757192515094 ], [ -95.739494099410578, 29.801737192900045 ], [ -95.739116099886246, 29.801682193402261 ], [ -95.73908609947425, 29.801678192744149 ], [ -95.738829099114241, 29.801634192861076 ], [ -95.738481099758516, 29.801563193075108 ], [ -95.738256099838793, 29.801503192700149 ], [ -95.737490098769996, 29.801273192478945 ], [ -95.737187099160835, 29.801195192838012 ], [ -95.736880099281763, 29.801131193310365 ], [ -95.736574098507106, 29.801081192823464 ], [ -95.736262098704685, 29.801043193304817 ], [ -95.735990099126482, 29.801022193051462 ], [ -95.73539909889611, 29.801001192744462 ], [ -95.735304098644619, 29.800998193303776 ], [ -95.735273098996942, 29.800996192822499 ], [ -95.735254098709802, 29.800995193076318 ], [ -95.735241098665881, 29.80099519328688 ], [ -95.735191098797458, 29.800993193088154 ], [ -95.735149098543062, 29.800992192787962 ], [ -95.734681098404408, 29.800978193113963 ], [ -95.733789098039111, 29.800952193239297 ], [ -95.731124097513472, 29.800972192969716 ], [ -95.730559097457714, 29.800978192933066 ], [ -95.730238097005255, 29.800977192803654 ], [ -95.729352097415699, 29.80100719352561 ], [ -95.727130096897881, 29.801023192948605 ], [ -95.726846096849727, 29.801025192820088 ], [ -95.72673809637935, 29.801032193541435 ], [ -95.726695096439798, 29.801030193207215 ], [ -95.726495096000704, 29.801027193318166 ], [ -95.726388096252677, 29.801034192922291 ], [ -95.726337096737552, 29.801032192987552 ], [ -95.726264095860827, 29.801028193585811 ], [ -95.725581096345877, 29.801032193537797 ], [ -95.72497309593895, 29.801037193687243 ], [ -95.724739095859746, 29.80103119348458 ], [ -95.724374096186921, 29.801005193320051 ], [ -95.724076095745744, 29.800970193458902 ], [ -95.723939096149977, 29.800949193021154 ], [ -95.723660095916856, 29.800899193624836 ], [ -95.72329909545013, 29.800817193190952 ], [ -95.722971095631252, 29.800732193211417 ], [ -95.722812095459375, 29.800688193210704 ], [ -95.722195094792283, 29.800519193205211 ], [ -95.72191209479756, 29.800451193337427 ], [ -95.721591094845806, 29.800383193221393 ], [ -95.721276095321343, 29.800331193731715 ], [ -95.720793095167252, 29.800289193163948 ], [ -95.720600095275785, 29.800281192948333 ], [ -95.720450095107466, 29.800286193604304 ], [ -95.719860094406215, 29.800304193625671 ], [ -95.719698094216284, 29.800305192941565 ], [ -95.719003094668068, 29.800299193633215 ], [ -95.718989094054038, 29.800386193301101 ], [ -95.718972094628498, 29.800547193118213 ], [ -95.718966094210543, 29.800714193485788 ], [ -95.718974094873886, 29.800889193073289 ], [ -95.719007094465539, 29.801158193152901 ], [ -95.7190540941438, 29.801426193706117 ], [ -95.719078094021711, 29.801537193219765 ], [ -95.719156094842276, 29.801829193740659 ], [ -95.719221094544324, 29.802023193821181 ], [ -95.719327094153584, 29.802302193620104 ], [ -95.719358094081912, 29.802372193346777 ], [ -95.719403094992643, 29.802477193693829 ], [ -95.719612094323097, 29.802966194165357 ], [ -95.719638094830657, 29.803027193737027 ], [ -95.719964094719799, 29.803787194375531 ], [ -95.720110094985145, 29.804143194095499 ], [ -95.720133094589613, 29.804207194288399 ], [ -95.720188094334702, 29.80436219425858 ], [ -95.720230094675614, 29.804518193932729 ], [ -95.720265095038513, 29.804648194246905 ], [ -95.720388094399766, 29.804594193911154 ], [ -95.720434095264167, 29.804592194516839 ], [ -95.720565094530656, 29.804588193812947 ], [ -95.720678095085745, 29.80467119418136 ], [ -95.72078509536297, 29.804714194483296 ], [ -95.721069094839336, 29.804670194126174 ], [ -95.721264094846219, 29.804626194486275 ], [ -95.721321095650751, 29.80462619404512 ], [ -95.721359095298098, 29.804643194615696 ], [ -95.72152909535393, 29.804681194061921 ], [ -95.721788095568485, 29.80467619394399 ], [ -95.721996094814457, 29.804615194314927 ], [ -95.722040095040825, 29.804599194354921 ], [ -95.722122095423941, 29.804659194247197 ], [ -95.722317095061371, 29.804697193789632 ], [ -95.722947095446841, 29.804780194266769 ], [ -95.723382095768429, 29.804818193690846 ], [ -95.723496095477472, 29.804879194125984 ], [ -95.72371009613245, 29.805021193902565 ], [ -95.723994095436055, 29.805082193742766 ], [ -95.724202095456789, 29.805109194414893 ], [ -95.724309095480393, 29.805153194605417 ], [ -95.724549095859516, 29.805323194301721 ], [ -95.724630095616078, 29.805351194467889 ], [ -95.724939096370903, 29.805367194218427 ], [ -95.725129095945789, 29.805422193796712 ], [ -95.725185096280654, 29.805455194244015 ], [ -95.725280096076432, 29.805565194546869 ], [ -95.725469096471514, 29.805653194391859 ], [ -95.725721096217498, 29.805730194062953 ], [ -95.726131096192418, 29.805785193886425 ], [ -95.726358096401626, 29.805895194583091 ], [ -95.726610097011545, 29.806043194403472 ], [ -95.727007097189826, 29.806411194255478 ], [ -95.727133096559953, 29.806620194122246 ], [ -95.72729109643268, 29.806834194546227 ], [ -95.727304096465417, 29.806895194579791 ], [ -95.727310097126519, 29.807213194752279 ], [ -95.727342097136045, 29.807312194778483 ], [ -95.727436096703485, 29.807362194820879 ], [ -95.72756209680405, 29.807395194312001 ], [ -95.72811709677859, 29.807477194860063 ], [ -95.728293096989262, 29.807554194925594 ], [ -95.728451096752764, 29.807653194356519 ], [ -95.728615097401857, 29.807933194774545 ], [ -95.72874709718559, 29.808054195008758 ], [ -95.728886097576463, 29.808147194822112 ], [ -95.729031097633651, 29.808202194548372 ], [ -95.72910709771277, 29.808191194328639 ], [ -95.729296097187898, 29.808037194442321 ], [ -95.729491097122562, 29.807817194765498 ], [ -95.72956709726175, 29.807740194600857 ], [ -95.729639097292889, 29.807668194546 ], [ -95.729705097753637, 29.807603194673664 ], [ -95.729819097120966, 29.807504194136342 ], [ -95.730058097673279, 29.807460194441994 ], [ -95.730146097322148, 29.807460194436757 ], [ -95.730279097417508, 29.807482194551618 ], [ -95.730405097929534, 29.807542194507207 ], [ -95.730481097401793, 29.807647194780724 ], [ -95.730550097543443, 29.807795194334741 ], [ -95.730657098036644, 29.808262194981513 ], [ -95.730784097474483, 29.808614194555343 ], [ -95.730847097366194, 29.808872194714951 ], [ -95.731061098110189, 29.809120194588328 ], [ -95.731194097440167, 29.809224195038642 ], [ -95.731249097445001, 29.809241194718137 ], [ -95.7313200979643, 29.80926219476143 ], [ -95.731408097975091, 29.809257194555666 ], [ -95.731452098295051, 29.809229194539157 ], [ -95.731540098096175, 29.809147194970357 ], [ -95.731591097536125, 29.809042194777568 ], [ -95.731597098117149, 29.808899195030136 ], [ -95.731666097733822, 29.80881119490672 ], [ -95.731736097692377, 29.808746194994765 ], [ -95.731950098105941, 29.808707194640078 ], [ -95.732065098227594, 29.808698194895424 ], [ -95.732277098045088, 29.808751194907032 ], [ -95.732568098648045, 29.808877194732673 ], [ -95.732706098604723, 29.808971195001046 ], [ -95.732738098528117, 29.809130194673532 ], [ -95.732807098687729, 29.809251194286826 ], [ -95.732839098358824, 29.809399195178536 ], [ -95.732839098576619, 29.809454195158708 ], [ -95.732814098708374, 29.809542194945895 ], [ -95.732833097977419, 29.809630194698759 ], [ -95.73296509880872, 29.809707194747631 ], [ -95.733287097955383, 29.809789195185406 ], [ -95.73364209832819, 29.809828194378827 ], [ -95.733791098177164, 29.809844195014257 ], [ -95.733848098621735, 29.809844194583881 ], [ -95.733974098137566, 29.809910194898134 ], [ -95.734100098578011, 29.810086195008203 ], [ -95.734365098673862, 29.810855194819883 ], [ -95.734376098934078, 29.810884195182108 ], [ -95.734453098893042, 29.811086194879987 ], [ -95.734687098401224, 29.811493194878668 ], [ -95.734725098432477, 29.811559194759798 ], [ -95.734832099056561, 29.81185619554844 ], [ -95.735034099005659, 29.812147195197447 ], [ -95.735122099477664, 29.8122281956888 ], [ -95.735570098783825, 29.812641195525458 ], [ -95.735961099618507, 29.812927195523493 ], [ -95.736118099015741, 29.81294919531971 ], [ -95.736181099513473, 29.81297119563791 ], [ -95.736232099269543, 29.813020195687276 ], [ -95.736289098986489, 29.813097195060113 ], [ -95.736408099205804, 29.813312195552435 ], [ -95.736535099497956, 29.813355195774641 ], [ -95.736598099431205, 29.813471195748498 ], [ -95.736951100016711, 29.813883195092483 ], [ -95.737109099316868, 29.814048195770173 ], [ -95.737619100159563, 29.814405195251609 ], [ -95.737670099632979, 29.814482195983643 ], [ -95.737802100174918, 29.814608195876552 ], [ -95.738300099526626, 29.814949195885838 ], [ -95.738508100155727, 29.815031196095887 ], [ -95.738685099807796, 29.815180195904556 ], [ -95.739511099924272, 29.81569019535107 ], [ -95.739814100787768, 29.815910195668813 ], [ -95.740016100131541, 29.816064196076251 ], [ -95.740066100342261, 29.816141195868365 ], [ -95.740066100320774, 29.816196195637787 ], [ -95.740426100820812, 29.816525196158853 ], [ -95.740539100192919, 29.816652196068208 ], [ -95.740735100161714, 29.816773195998341 ], [ -95.740833100973617, 29.816852196245232 ], [ -95.740886100595219, 29.816894195732605 ], [ -95.740974100790751, 29.81698719619564 ], [ -95.7410771004145, 29.817068195995777 ], [ -95.741453100787467, 29.817366195635678 ], [ -95.741523100903052, 29.817470196481295 ], [ -95.741908101249635, 29.817789195966945 ], [ -95.741990100722504, 29.817904196166335 ], [ -95.742103100886425, 29.818097195739309 ], [ -95.742248101463616, 29.818163196334531 ], [ -95.742696101173863, 29.818674196255046 ], [ -95.742980101288779, 29.818921195956339 ], [ -95.743592101473084, 29.819245195942106 ], [ -95.744065102108095, 29.819525195993076 ], [ -95.744891101946976, 29.820118196167883 ], [ -95.745238102420529, 29.820481196155363 ], [ -95.745389102149559, 29.820684196593859 ], [ -95.745440101773951, 29.820827196809564 ], [ -95.745534102153584, 29.820943197091438 ], [ -95.745622101814334, 29.821080196953773 ], [ -95.745812102330589, 29.82146519706945 ], [ -95.745938102564779, 29.821657197009252 ], [ -95.746067102026544, 29.821880196880532 ], [ -95.746191102600676, 29.822097196889864 ], [ -95.746456101993331, 29.822410196839094 ], [ -95.746828102360951, 29.822684196647504 ], [ -95.747111102851093, 29.822789197279366 ], [ -95.747553102728219, 29.822876196677537 ], [ -95.747937103196293, 29.822931197336587 ], [ -95.748423102508312, 29.82311219706742 ], [ -95.748656103386537, 29.82321119739494 ], [ -95.748782103316728, 29.823343197339025 ], [ -95.748864102809435, 29.823491196901799 ], [ -95.748858102824585, 29.823535196726851 ], [ -95.748814103301754, 29.823568197176225 ], [ -95.748808103074026, 29.823590196998925 ], [ -95.748845103177729, 29.823640197198021 ], [ -95.748909103269369, 29.823942197077173 ], [ -95.748940103565062, 29.824145196974168 ], [ -95.748953103315003, 29.824321197073459 ], [ -95.749021102958224, 29.824505196959333 ], [ -95.749041103509171, 29.824558197524002 ], [ -95.749136102773704, 29.824745197680919 ], [ -95.749161103018935, 29.824803196885195 ], [ -95.749237103528301, 29.824981197196625 ], [ -95.749389103181755, 29.825113197648005 ], [ -95.749521103541468, 29.82529419704893 ], [ -95.749584103362537, 29.825338197014595 ], [ -95.74974210349373, 29.825415197677174 ], [ -95.749755103325626, 29.825519197428534 ], [ -95.749887103107184, 29.825662197597499 ], [ -95.750007103707603, 29.825788197649437 ], [ -95.750155103734556, 29.826008197570268 ], [ -95.75016110325403, 29.826096197543073 ], [ -95.750142102952211, 29.826294197992631 ], [ -95.750007103928027, 29.826465197456752 ], [ -95.749768103635887, 29.826718197385503 ], [ -95.749686102861091, 29.826783197994615 ], [ -95.749566103790428, 29.826905197644258 ], [ -95.749529103363841, 29.826982197333567 ], [ -95.749535103776992, 29.827102197704264 ], [ -95.749497103835566, 29.82739919808456 ], [ -95.749485102951027, 29.827735197500992 ], [ -95.74941610358465, 29.828064197657636 ], [ -95.749403103385475, 29.82847119812741 ], [ -95.749442103449027, 29.828790198363855 ], [ -95.749454103836612, 29.828982197998489 ], [ -95.749499103173576, 29.829125197744297 ], [ -95.749589103651218, 29.829252198252131 ], [ -95.74963710385731, 29.829318198184939 ], [ -95.749808103144147, 29.829493197901435 ], [ -95.750010103846321, 29.829653198121594 ], [ -95.750077104077945, 29.82974019796211 ], [ -95.750145103533811, 29.829774198274919 ], [ -95.750166103826459, 29.829784198555235 ], [ -95.750392103297585, 29.829966198454418 ], [ -95.750462103534616, 29.830109198018707 ], [ -95.750657103417311, 29.830230198428261 ], [ -95.750934104287751, 29.830422198826497 ], [ -95.751344104442964, 29.830851198532528 ], [ -95.751520104447962, 29.830978198749726 ], [ -95.75160210421754, 29.831000198513284 ], [ -95.75176610387085, 29.831076198196609 ], [ -95.751943104179048, 29.831187198890447 ], [ -95.75197210450176, 29.831223198669516 ], [ -95.752106104664037, 29.831390198575377 ], [ -95.752214103984699, 29.831500198266628 ], [ -95.752221104114625, 29.831546198946558 ], [ -95.752225104089305, 29.831573198456375 ], [ -95.75222710429189, 29.831583198536244 ], [ -95.752231104240863, 29.83161019894748 ], [ -95.75224110403235, 29.831668198713043 ], [ -95.752245104101405, 29.831691198975886 ], [ -95.752917104327338, 29.831684198911208 ], [ -95.754134105063898, 29.831672198877918 ], [ -95.754318105165353, 29.83167019821472 ], [ -95.754321104390897, 29.831581198916666 ], [ -95.75432210450532, 29.831561198915558 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1375, "Tract": "48201555303", "Area_SqMi": 8.2202362146008969, "total_2009": 229, "total_2010": 288, "total_2011": 315, "total_2012": 409, "total_2013": 383, "total_2014": 492, "total_2015": 483, "total_2016": 651, "total_2017": 668, "total_2018": 927, "total_2019": 1002, "total_2020": 961, "age1": 380, "age2": 562, "age3": 249, "earn1": 344, "earn2": 438, "earn3": 409, "naics_s01": 2, "naics_s02": 2, "naics_s03": 0, "naics_s04": 69, "naics_s05": 45, "naics_s06": 52, "naics_s07": 115, "naics_s08": 24, "naics_s09": 1, "naics_s10": 34, "naics_s11": 19, "naics_s12": 101, "naics_s13": 1, "naics_s14": 58, "naics_s15": 18, "naics_s16": 104, "naics_s17": 37, "naics_s18": 424, "naics_s19": 85, "naics_s20": 0, "race1": 997, "race2": 90, "race3": 16, "race4": 66, "race5": 1, "race6": 21, "ethnicity1": 840, "ethnicity2": 351, "edu1": 173, "edu2": 205, "edu3": 232, "edu4": 201, "Shape_Length": 97391.904190435947, "Shape_Area": 229166116.58818328, "total_2021": 1151, "total_2022": 1191 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619607084451545, 30.135554264880689 ], [ -95.61963608432238, 30.135498264686515 ], [ -95.619500084181453, 30.135415264932732 ], [ -95.619211084462037, 30.135249264610191 ], [ -95.619038083750752, 30.135150264545839 ], [ -95.618750084328468, 30.134984264855426 ], [ -95.618728084366765, 30.134972264595749 ], [ -95.618534083470735, 30.13486126525088 ], [ -95.618185083419561, 30.134660264479177 ], [ -95.615901083418777, 30.133370264846125 ], [ -95.615055082781723, 30.132901264892251 ], [ -95.614348083176978, 30.132483264653761 ], [ -95.614293082302282, 30.132452264818671 ], [ -95.614250082259076, 30.132428264463304 ], [ -95.614225082908291, 30.132414264709329 ], [ -95.612871082169377, 30.131659264728359 ], [ -95.611925082285339, 30.131113264405283 ], [ -95.611407082047876, 30.130815264538182 ], [ -95.609565081642259, 30.129759264213387 ], [ -95.609270081551102, 30.129591264348235 ], [ -95.608035080592302, 30.128885263751386 ], [ -95.607872080766001, 30.128792264100511 ], [ -95.605931080466931, 30.127704264138959 ], [ -95.60468608044404, 30.127000263920696 ], [ -95.604534079845351, 30.126915263973519 ], [ -95.602425079350041, 30.125724263816071 ], [ -95.601167079074074, 30.125037263190794 ], [ -95.600909078598818, 30.124896263097796 ], [ -95.600265078506666, 30.124558262933309 ], [ -95.597477077680708, 30.122967262782165 ], [ -95.59647907765401, 30.122405263187662 ], [ -95.59376807696907, 30.120891263072249 ], [ -95.592997076839467, 30.120460262836804 ], [ -95.592271076536235, 30.12002626287709 ], [ -95.591863076948826, 30.119782262863612 ], [ -95.591830076607735, 30.119764262735341 ], [ -95.585758074531967, 30.116345262139458 ], [ -95.582685073721279, 30.114612261543062 ], [ -95.580881073120352, 30.113595262057618 ], [ -95.577983072726937, 30.111961261690318 ], [ -95.577893072858629, 30.111898261316824 ], [ -95.57461707207716, 30.110066261215067 ], [ -95.573084070735007, 30.109188261407276 ], [ -95.572268070507874, 30.108761260725043 ], [ -95.571956071159534, 30.108621260693969 ], [ -95.571577071165109, 30.108473261219352 ], [ -95.571291070552363, 30.108377261171487 ], [ -95.570390069977037, 30.108149260904696 ], [ -95.569288070590972, 30.107920261136474 ], [ -95.566932069569972, 30.107480261241896 ], [ -95.565331069460385, 30.107183261474631 ], [ -95.561355067595315, 30.106477261310573 ], [ -95.554824066762791, 30.105315261088773 ], [ -95.553785066237751, 30.105138261358068 ], [ -95.549998064918228, 30.104476260606425 ], [ -95.547364064820599, 30.103973260849148 ], [ -95.547310064253594, 30.104601261198738 ], [ -95.547241064066867, 30.104717261311805 ], [ -95.546918064192795, 30.104969261625179 ], [ -95.546848064024005, 30.10505726130836 ], [ -95.546811063865107, 30.105140260968668 ], [ -95.546792064198854, 30.105228261655807 ], [ -95.5467790638819, 30.105260261530752 ], [ -95.546735064260034, 30.105365261780459 ], [ -95.546659063833616, 30.105471261486851 ], [ -95.546731064416463, 30.105539261721397 ], [ -95.547386064478559, 30.106081261482963 ], [ -95.547960064734824, 30.106567261847111 ], [ -95.54806306442245, 30.106666261731522 ], [ -95.548256064317101, 30.106837261687573 ], [ -95.548285064299279, 30.106863261310917 ], [ -95.54898206460264, 30.107457261680256 ], [ -95.549202065239299, 30.107653261545309 ], [ -95.54965006556499, 30.108040261399754 ], [ -95.549766065242025, 30.108141262157886 ], [ -95.550071064920587, 30.108399262086284 ], [ -95.550393064973065, 30.108679262156993 ], [ -95.550438065222806, 30.108714261894882 ], [ -95.550633065482671, 30.108890261538562 ], [ -95.550725065493111, 30.108966261516013 ], [ -95.550778065492921, 30.109002262345356 ], [ -95.551246065304568, 30.109411261933662 ], [ -95.551344065158602, 30.109487261892244 ], [ -95.551533066138717, 30.109653262476296 ], [ -95.551818065779131, 30.109907262364413 ], [ -95.551920065771611, 30.109988262403032 ], [ -95.552061065514408, 30.110114261884405 ], [ -95.552117065829464, 30.110157262288169 ], [ -95.552748065830869, 30.110698262533081 ], [ -95.5528260665413, 30.11075026241901 ], [ -95.552949066545651, 30.110871262514529 ], [ -95.553152066573062, 30.111036262050437 ], [ -95.553266065804038, 30.111150262238308 ], [ -95.553414066693122, 30.111256262015999 ], [ -95.55345706666813, 30.111303262510194 ], [ -95.553738065872054, 30.111808262824955 ], [ -95.554028066220525, 30.112267262493816 ], [ -95.554255066219881, 30.11273126260928 ], [ -95.554399066327562, 30.113108262965675 ], [ -95.554508067027314, 30.113554262682854 ], [ -95.554576067089201, 30.113863263016565 ], [ -95.554635066574889, 30.114196262534183 ], [ -95.55463206650964, 30.114331262584841 ], [ -95.554560066779317, 30.115510262826813 ], [ -95.554447067057737, 30.117348263132417 ], [ -95.554450066468362, 30.117441263851966 ], [ -95.554435067170431, 30.117694263420205 ], [ -95.554421066668453, 30.11776026395674 ], [ -95.554421067018694, 30.117836263862284 ], [ -95.554422066292503, 30.117878263636594 ], [ -95.554402066490979, 30.118135264054104 ], [ -95.554383067177213, 30.118455263959181 ], [ -95.554367066335047, 30.118542263481832 ], [ -95.554370066785737, 30.118638264146732 ], [ -95.55435506722911, 30.118874263822637 ], [ -95.554353066389623, 30.118902263621642 ], [ -95.554349066952327, 30.11897326397343 ], [ -95.554343067144146, 30.119108263638456 ], [ -95.554331066890214, 30.119388263695381 ], [ -95.554308066940237, 30.119531263589831 ], [ -95.554243067380511, 30.12039426390773 ], [ -95.554241067233505, 30.120488264573563 ], [ -95.55422806640874, 30.120796264617105 ], [ -95.554230066892401, 30.121054264320005 ], [ -95.554220066931634, 30.12112026437433 ], [ -95.55421306645448, 30.121175264721813 ], [ -95.554202067370227, 30.121298264518057 ], [ -95.554172067152805, 30.121853264815091 ], [ -95.554158066779365, 30.122090264510788 ], [ -95.554140066610543, 30.122206264591593 ], [ -95.554077066685423, 30.123285265012107 ], [ -95.554071066850895, 30.123378265096395 ], [ -95.554040066826744, 30.123925264723777 ], [ -95.554025066546913, 30.124143265078985 ], [ -95.55401906658372, 30.124233265175803 ], [ -95.554016066598109, 30.124278265222941 ], [ -95.554004066920953, 30.124415265184172 ], [ -95.554005066717778, 30.124523264732318 ], [ -95.553997066818425, 30.124618264938658 ], [ -95.553995067308307, 30.124665265310767 ], [ -95.553993067411682, 30.124743265181003 ], [ -95.553959067006602, 30.125354265134227 ], [ -95.55395906702249, 30.125395265377602 ], [ -95.553942066707833, 30.12572426491122 ], [ -95.553941067462134, 30.125749265076085 ], [ -95.553849067288127, 30.127206265543872 ], [ -95.553832067363047, 30.127359265117793 ], [ -95.553830067089237, 30.127413265302618 ], [ -95.553644066729234, 30.129965265664694 ], [ -95.553630067216361, 30.130108266313126 ], [ -95.553627067175938, 30.130204266244842 ], [ -95.553626067569922, 30.130246266052499 ], [ -95.553630067068937, 30.13038226591113 ], [ -95.553590066712758, 30.130775266365724 ], [ -95.553589067380187, 30.131004266382607 ], [ -95.553583066714097, 30.131109265945422 ], [ -95.553572067012851, 30.131209266564213 ], [ -95.553565067480974, 30.131453266853516 ], [ -95.553558066869044, 30.131623266653392 ], [ -95.553545067345425, 30.131717266661767 ], [ -95.553547067554703, 30.131745266855027 ], [ -95.553554066703327, 30.131831266807758 ], [ -95.553520067656038, 30.133609266407856 ], [ -95.553496067706646, 30.134262266974275 ], [ -95.553498067367158, 30.134392266940342 ], [ -95.553490067643594, 30.134660267003049 ], [ -95.553524067094529, 30.135086266955199 ], [ -95.553487067349593, 30.135331267116811 ], [ -95.553473067715132, 30.135426267521733 ], [ -95.553314067394723, 30.136027267053578 ], [ -95.553309067186945, 30.136046267606179 ], [ -95.553157067069705, 30.136625267072382 ], [ -95.552978067461893, 30.137018267720791 ], [ -95.55293106769065, 30.137122267828914 ], [ -95.552703067796301, 30.137581267316484 ], [ -95.5526610674534, 30.137686267268197 ], [ -95.552594067074025, 30.137798268031187 ], [ -95.552521067106127, 30.137892267892006 ], [ -95.552459066916143, 30.137982268132596 ], [ -95.552373067240154, 30.138081267658436 ], [ -95.552291067079196, 30.138183267594542 ], [ -95.552028066619727, 30.138498267978445 ], [ -95.551698066608651, 30.138922268245565 ], [ -95.551689067555657, 30.138945268117308 ], [ -95.551614066775073, 30.139085267578917 ], [ -95.551549067195992, 30.139228267914177 ], [ -95.551155066751846, 30.140015268245932 ], [ -95.551138066664933, 30.140066268119234 ], [ -95.55112106727384, 30.140097268431543 ], [ -95.551060067419428, 30.140247268021284 ], [ -95.551033066954133, 30.140337267861479 ], [ -95.551026066649911, 30.140437268555374 ], [ -95.550921067411068, 30.140916268255936 ], [ -95.550911067248933, 30.141042268161815 ], [ -95.550845067242832, 30.141309268656556 ], [ -95.550804066669869, 30.141437268731092 ], [ -95.550718066778089, 30.141826268997928 ], [ -95.550641066777175, 30.142240268351348 ], [ -95.550631067121927, 30.14229526885158 ], [ -95.550622066957089, 30.142371268345109 ], [ -95.550602066704059, 30.142504268806086 ], [ -95.550551066572737, 30.142774269138908 ], [ -95.550539066453013, 30.142902269055156 ], [ -95.550520066772094, 30.143031269054553 ], [ -95.550476066751898, 30.143287268625858 ], [ -95.550461066977206, 30.143410269320604 ], [ -95.550400066795788, 30.143789268758717 ], [ -95.55035006713571, 30.144152268996457 ], [ -95.550348067068086, 30.144194269102947 ], [ -95.550339066812697, 30.144271269407295 ], [ -95.550084067089244, 30.145415269678569 ], [ -95.549877066546784, 30.146675269977926 ], [ -95.549789066904879, 30.147418269833903 ], [ -95.549730066735933, 30.148247270173989 ], [ -95.549799067436339, 30.148676270463085 ], [ -95.549895067619303, 30.149296269757095 ], [ -95.549924067564646, 30.149938270206967 ], [ -95.549861066790641, 30.150483269968728 ], [ -95.54956606714066, 30.152163270761211 ], [ -95.549384066868598, 30.153265271029095 ], [ -95.549270066852984, 30.153947271413088 ], [ -95.549145067147393, 30.154493270985103 ], [ -95.548946066778385, 30.155398271386055 ], [ -95.54891206662225, 30.155521271375896 ], [ -95.548867067241233, 30.155746271657211 ], [ -95.548241067277033, 30.158577271810703 ], [ -95.54820206665508, 30.158742272011622 ], [ -95.548124067024887, 30.159173272271808 ], [ -95.54809006727308, 30.159291272075812 ], [ -95.548078067093456, 30.159429272576375 ], [ -95.54786606698957, 30.160590272194813 ], [ -95.547829066658124, 30.160735272641961 ], [ -95.54772606711262, 30.161293272588306 ], [ -95.547710067071648, 30.161429272372967 ], [ -95.547676066934656, 30.161550272802412 ], [ -95.54762806710562, 30.161815272630356 ], [ -95.547553066864694, 30.162127273157704 ], [ -95.547419066583629, 30.162686273139233 ], [ -95.547317067567008, 30.1629622730295 ], [ -95.547202066933124, 30.163228273399312 ], [ -95.547138066676567, 30.163357273367822 ], [ -95.547041067354897, 30.163478273230595 ], [ -95.546973066565386, 30.163598272699573 ], [ -95.54690206748046, 30.163712272976611 ], [ -95.546853067103697, 30.163826272835603 ], [ -95.54677906707802, 30.163936272858638 ], [ -95.546534066687911, 30.164258273714907 ], [ -95.546349066816504, 30.164472273266984 ], [ -95.546246066643519, 30.164579273268462 ], [ -95.546025066678467, 30.164796273271655 ], [ -95.545549066417806, 30.165226273935534 ], [ -95.54521306716363, 30.165550273509421 ], [ -95.545074066234605, 30.165659273263827 ], [ -95.544592066263661, 30.166122273492846 ], [ -95.544122065970271, 30.166559274153261 ], [ -95.544017066590101, 30.166664273530426 ], [ -95.543907065915533, 30.166765273543689 ], [ -95.543609066416849, 30.167060274093629 ], [ -95.543436066753557, 30.167252274465334 ], [ -95.54327906611401, 30.167441274183616 ], [ -95.543098066087026, 30.167690274445643 ], [ -95.542890065952179, 30.168005274582736 ], [ -95.54284406602676, 30.168090274210151 ], [ -95.542784066049151, 30.168167274451115 ], [ -95.541434066338965, 30.170234274659975 ], [ -95.541406065750607, 30.170284274510752 ], [ -95.541501065435781, 30.170324274680794 ], [ -95.541735065495146, 30.170390274369609 ], [ -95.541837066161435, 30.170439274348247 ], [ -95.541982066525961, 30.170533275043265 ], [ -95.542039066301925, 30.170533275105221 ], [ -95.542090065728985, 30.170516274900123 ], [ -95.542147065804926, 30.170478274303047 ], [ -95.542185065953532, 30.17041727440326 ], [ -95.542229065783062, 30.170379274526191 ], [ -95.54246306634694, 30.170346275130843 ], [ -95.542564065991058, 30.170352274539283 ], [ -95.542634066118708, 30.170379274524912 ], [ -95.542716066324644, 30.170445274727737 ], [ -95.542830066161955, 30.170472274272882 ], [ -95.542944066671453, 30.170489274952907 ], [ -95.54299406655413, 30.170484274525595 ], [ -95.543051066618659, 30.170456275045439 ], [ -95.543083065866796, 30.170429274900453 ], [ -95.543077066667308, 30.17034627499778 ], [ -95.542906066380681, 30.170121274931198 ], [ -95.542824066722162, 30.17002727481524 ], [ -95.542798065977053, 30.16996127487992 ], [ -95.542792066024433, 30.16989527439458 ], [ -95.542849066070616, 30.1697962744975 ], [ -95.542900066234409, 30.169763274509023 ], [ -95.542963065975144, 30.169763274918402 ], [ -95.543026066196248, 30.169769274221668 ], [ -95.543077065987674, 30.169802274813573 ], [ -95.543127066245077, 30.169846274633823 ], [ -95.54326006616941, 30.170132274640814 ], [ -95.543304066216649, 30.170176274568203 ], [ -95.543361066099308, 30.170198274291391 ], [ -95.543437066211212, 30.170198274509445 ], [ -95.543526066308232, 30.170181274328428 ], [ -95.543621066917467, 30.170148274398016 ], [ -95.543792066920759, 30.170027274457713 ], [ -95.543880066007318, 30.169890274661814 ], [ -95.544557066648039, 30.169511274311233 ], [ -95.544640066421692, 30.169450274125552 ], [ -95.544690066818092, 30.169406274317534 ], [ -95.544728067031372, 30.169329274225628 ], [ -95.544747066226165, 30.169175274156462 ], [ -95.544785066309885, 30.16909827404125 ], [ -95.544829067122507, 30.169054274448758 ], [ -95.544899066280834, 30.169016274382553 ], [ -95.544956067131366, 30.169000274661247 ], [ -95.545000066933682, 30.16901127417146 ], [ -95.545051067256509, 30.169049274778555 ], [ -95.545101067071855, 30.169109274256439 ], [ -95.545127066829608, 30.169186274269045 ], [ -95.545139066461317, 30.169302274584854 ], [ -95.545165066792308, 30.16934627473222 ], [ -95.545202066844311, 30.169379274255629 ], [ -95.54531006727558, 30.169439274586814 ], [ -95.545525066544201, 30.169522274798567 ], [ -95.545626067155226, 30.169538274343715 ], [ -95.54570206674282, 30.169538274184585 ], [ -95.545759066873956, 30.169515274325533 ], [ -95.54596206732333, 30.169434274241592 ], [ -95.546405066966074, 30.169362274122804 ], [ -95.546556067291888, 30.169357274487037 ], [ -95.5467530675201, 30.169313274186987 ], [ -95.546841067244983, 30.169264274262638 ], [ -95.547044067357774, 30.16906027467487 ], [ -95.547094067288583, 30.169044273998523 ], [ -95.547132066867022, 30.169044274411569 ], [ -95.547183066869223, 30.169060273979287 ], [ -95.547271067534624, 30.169192274351293 ], [ -95.547328067167953, 30.169302274089311 ], [ -95.547442067575247, 30.169396273928488 ], [ -95.547664067792752, 30.169489274008082 ], [ -95.547752067506678, 30.169533274118159 ], [ -95.547853067560567, 30.169599273967627 ], [ -95.547923067064772, 30.169681273909877 ], [ -95.547967067213847, 30.169758273917896 ], [ -95.548043068025194, 30.169951274337258 ], [ -95.54808706718282, 30.170017274623923 ], [ -95.548138067810243, 30.170061274718559 ], [ -95.548271068023411, 30.170116274208119 ], [ -95.548359068161233, 30.170138274617074 ], [ -95.548404068063618, 30.170132274827978 ], [ -95.54860606739544, 30.170017274204852 ], [ -95.548625067885808, 30.169962274199602 ], [ -95.548625067886164, 30.169907274185405 ], [ -95.548410068150687, 30.169660274402805 ], [ -95.548309067967068, 30.169522274600482 ], [ -95.54830906798351, 30.169456274025062 ], [ -95.548322067848346, 30.169407274253299 ], [ -95.548353068116114, 30.169352274338127 ], [ -95.548404067922903, 30.169297273912658 ], [ -95.548467067743303, 30.169264274624627 ], [ -95.5485680676762, 30.169236274263479 ], [ -95.548651068155777, 30.169231274388633 ], [ -95.548834067269809, 30.169253274421838 ], [ -95.548923067528847, 30.169280273802848 ], [ -95.54900006806642, 30.169324274373004 ], [ -95.549214067878523, 30.169445274246776 ], [ -95.549277067754034, 30.169517273878927 ], [ -95.549321067789663, 30.16959427432457 ], [ -95.549359067867925, 30.169830274532561 ], [ -95.549448067864631, 30.169978274085345 ], [ -95.549669067687674, 30.170154273959799 ], [ -95.549777067845397, 30.170176274551785 ], [ -95.549872068154087, 30.170182274383087 ], [ -95.550087067951736, 30.170149274602796 ], [ -95.550409068098887, 30.170055274240472 ], [ -95.550504068447722, 30.170055274729989 ], [ -95.550599068625672, 30.170077274419626 ], [ -95.550656068682542, 30.170121274803094 ], [ -95.550713068600359, 30.170248274206447 ], [ -95.550745068524066, 30.170352274272243 ], [ -95.550808068069045, 30.170418274212921 ], [ -95.550903067914334, 30.170473274370416 ], [ -95.551074068098586, 30.170528273972337 ], [ -95.551428068257707, 30.170611274101816 ], [ -95.551833068099583, 30.170594274031618 ], [ -95.552067068992514, 30.170556274431608 ], [ -95.552212068484906, 30.170506274103591 ], [ -95.552510069240256, 30.170358274749269 ], [ -95.55276306882736, 30.170111274094623 ], [ -95.552953069159685, 30.169902274198297 ], [ -95.552953069203099, 30.169863274608492 ], [ -95.552934069202308, 30.169819273994808 ], [ -95.552807068769553, 30.169665273736484 ], [ -95.552782068372977, 30.169533273937414 ], [ -95.552826068401032, 30.169182273926044 ], [ -95.552978069238705, 30.168846273965848 ], [ -95.553307069265628, 30.168472274009616 ], [ -95.55342706932602, 30.168373273548685 ], [ -95.553535068940164, 30.168302274238179 ], [ -95.553990069487782, 30.168148273402185 ], [ -95.554129069500988, 30.168110274060222 ], [ -95.554205069505926, 30.168071274043395 ], [ -95.554250069133531, 30.168033273382836 ], [ -95.554269068760348, 30.167994273876172 ], [ -95.554262068602412, 30.167934273494939 ], [ -95.554275069239992, 30.167890273952931 ], [ -95.554313068682589, 30.16786227417716 ], [ -95.554433069147251, 30.167873273713134 ], [ -95.554541069039146, 30.167835273426842 ], [ -95.554585069485654, 30.167769274173001 ], [ -95.554623068695463, 30.1676862734225 ], [ -95.55467406953278, 30.167620273790892 ], [ -95.554718068705768, 30.167571273896503 ], [ -95.554806068791123, 30.167521273421922 ], [ -95.555338069638864, 30.167318273821806 ], [ -95.555414069798204, 30.167302273279759 ], [ -95.555521068920072, 30.167313273855623 ], [ -95.555755069123322, 30.167373273766358 ], [ -95.555882069597814, 30.167384273412551 ], [ -95.555952069179384, 30.167384273670681 ], [ -95.555989069966827, 30.167373273476294 ], [ -95.556034069594844, 30.167335274038503 ], [ -95.556059069739263, 30.167285273913372 ], [ -95.556059068997413, 30.167247273356676 ], [ -95.55601506996166, 30.167153273931724 ], [ -95.5560400694702, 30.167082273587344 ], [ -95.556205069527465, 30.166950273799799 ], [ -95.55626806945466, 30.16685127312812 ], [ -95.556331069034428, 30.166790273862478 ], [ -95.55639407002451, 30.16676327347432 ], [ -95.556591069858527, 30.166730273030513 ], [ -95.556616069810701, 30.166697273132726 ], [ -95.556641069481245, 30.166647273788257 ], [ -95.556590069101503, 30.16648327367405 ], [ -95.556565069810787, 30.166422273092124 ], [ -95.556572069649107, 30.166213273230582 ], [ -95.556629069539468, 30.166103273521166 ], [ -95.55680606954472, 30.165911273422566 ], [ -95.556863070085456, 30.165839273277847 ], [ -95.556900070133963, 30.165817273186892 ], [ -95.556945069836047, 30.165817273098103 ], [ -95.557008069229255, 30.165850273118043 ], [ -95.557090069817761, 30.165938272846777 ], [ -95.557185070085637, 30.166010273553319 ], [ -95.557261070001047, 30.166037273268369 ], [ -95.557318070071517, 30.166010273242382 ], [ -95.557350069621819, 30.165960273267473 ], [ -95.557356070292059, 30.165889273019612 ], [ -95.557280070141772, 30.165400273249045 ], [ -95.557305069511415, 30.165174273228001 ], [ -95.557438069588329, 30.164894272985418 ], [ -95.557527069620789, 30.164789272885063 ], [ -95.557628069620719, 30.1647452726951 ], [ -95.557704069808452, 30.164751272889635 ], [ -95.557767069371195, 30.164767273140559 ], [ -95.557868069829354, 30.16488327295102 ], [ -95.557944069992573, 30.165147272637224 ], [ -95.557963070204565, 30.165328273491266 ], [ -95.558008070129844, 30.16546627300551 ], [ -95.558052069574813, 30.165532272753584 ], [ -95.558115070064417, 30.165570273019082 ], [ -95.55819706992007, 30.16558127279886 ], [ -95.55828007036844, 30.165559273046195 ], [ -95.558331070204034, 30.165528273579522 ], [ -95.558362070233656, 30.165510272914236 ], [ -95.558438070026895, 30.165438273453006 ], [ -95.558501070144516, 30.165350273199916 ], [ -95.558552069706565, 30.165246273358413 ], [ -95.55858307010017, 30.165141272828418 ], [ -95.558596069978591, 30.164971273415244 ], [ -95.558564070469316, 30.164702273382471 ], [ -95.558457070041868, 30.164278273333206 ], [ -95.558463070066338, 30.164080272632372 ], [ -95.558507070375086, 30.163954273154754 ], [ -95.558741070341824, 30.163690272360533 ], [ -95.559178070274072, 30.163338272499697 ], [ -95.559248069965008, 30.163261272721158 ], [ -95.559267070635443, 30.163206273052278 ], [ -95.559260070000704, 30.163113273038821 ], [ -95.559216070398151, 30.163074272734374 ], [ -95.55912706997114, 30.163047272798295 ], [ -95.558881070068267, 30.163019272849187 ], [ -95.558716069896988, 30.163025272725427 ], [ -95.558590069603113, 30.163058272689497 ], [ -95.558469069859044, 30.16304127299799 ], [ -95.558362069789169, 30.162970272937557 ], [ -95.558242070348598, 30.162843272376293 ], [ -95.558210069926503, 30.162772272841213 ], [ -95.558204069629241, 30.162690272697507 ], [ -95.558235069590594, 30.162530272093065 ], [ -95.558273069721935, 30.162475272098458 ], [ -95.558349069782622, 30.1624042726304 ], [ -95.558564069574871, 30.162228272390468 ], [ -95.558672069538886, 30.162085272249946 ], [ -95.558729069443586, 30.161909272785671 ], [ -95.558723070366241, 30.161849271977005 ], [ -95.558697070240299, 30.161766272051498 ], [ -95.558590069780735, 30.161634272225271 ], [ -95.558526070263426, 30.161601272524475 ], [ -95.55842507033671, 30.161579272738056 ], [ -95.558235070256742, 30.161579272556359 ], [ -95.558103069608578, 30.161612271975358 ], [ -95.55787507005742, 30.161695272188208 ], [ -95.557799069285494, 30.16169527272293 ], [ -95.557742069185409, 30.161673272673251 ], [ -95.557717069650394, 30.161634272377547 ], [ -95.557717069685467, 30.161414272075561 ], [ -95.557710069741574, 30.161348271947965 ], [ -95.557685069908189, 30.161255272420838 ], [ -95.557641069282369, 30.161178272699019 ], [ -95.557546069443831, 30.16112327244873 ], [ -95.557445070067615, 30.161090272262328 ], [ -95.557381069059602, 30.161046272296204 ], [ -95.557362069344578, 30.160974272133796 ], [ -95.557369069723407, 30.160908271903875 ], [ -95.557394069803834, 30.160853272514277 ], [ -95.557432070025726, 30.160804272540055 ], [ -95.557540069619435, 30.160705271847654 ], [ -95.557774069361528, 30.160551271802326 ], [ -95.558103070002574, 30.160392272300236 ], [ -95.558179069602033, 30.160326271835505 ], [ -95.558248070225773, 30.160221272196821 ], [ -95.558368069300769, 30.160073271575005 ], [ -95.558545069325106, 30.159908271847492 ], [ -95.558691069942867, 30.159793271659019 ], [ -95.558906070311323, 30.159523271962701 ], [ -95.559235069543618, 30.159243271658909 ], [ -95.559804069561878, 30.158688271727257 ], [ -95.560032070114417, 30.158495271774775 ], [ -95.56025307060527, 30.158336271931361 ], [ -95.560393069951687, 30.158374271528839 ], [ -95.560450069963281, 30.15852327200713 ], [ -95.560443070504775, 30.158710271389435 ], [ -95.560348069764515, 30.158902271680663 ], [ -95.560171070608888, 30.159215271854166 ], [ -95.560197069858944, 30.159347271821272 ], [ -95.560291069715177, 30.159408271567877 ], [ -95.560355070182652, 30.159408271535014 ], [ -95.560449070029463, 30.159424271671192 ], [ -95.560639070108977, 30.159419271694457 ], [ -95.560772069879093, 30.159358271902502 ], [ -95.560994070737081, 30.159171272057794 ], [ -95.561095070829538, 30.159105271843615 ], [ -95.561240070934133, 30.15906727165634 ], [ -95.561468070688221, 30.159056271744547 ], [ -95.561601070654973, 30.159034271734498 ], [ -95.561721070839653, 30.158995272037927 ], [ -95.561980070632188, 30.158853271587564 ], [ -95.562063070395965, 30.158825271579694 ], [ -95.562139071122203, 30.158842271765835 ], [ -95.562202070855818, 30.158913271936328 ], [ -95.5623090710002, 30.159133271614134 ], [ -95.562506071106213, 30.159705271589612 ], [ -95.562613070755077, 30.16013327145426 ], [ -95.562689071271592, 30.160265272102158 ], [ -95.562898070432524, 30.160441271919851 ], [ -95.562986071486222, 30.160529271702952 ], [ -95.563037070595698, 30.160606272389877 ], [ -95.563106071009145, 30.160661272423845 ], [ -95.563233070966803, 30.160700271654623 ], [ -95.563334070722348, 30.160689271612789 ], [ -95.563391071373729, 30.160639271641998 ], [ -95.563404071245856, 30.160595272096113 ], [ -95.563397071135952, 30.160546271779175 ], [ -95.563277070777261, 30.160315271793792 ], [ -95.563277071221378, 30.160216272298491 ], [ -95.563322071153365, 30.160106271894939 ], [ -95.563366071152274, 30.160078272167528 ], [ -95.563410071064609, 30.160073271681316 ], [ -95.563486071261408, 30.160084272151447 ], [ -95.564049071030851, 30.160254272241701 ], [ -95.565200071491901, 30.160688272186793 ], [ -95.565327071157682, 30.160727272119875 ], [ -95.565479071924202, 30.160738272086185 ], [ -95.565580071738054, 30.160721271466794 ], [ -95.565669071238318, 30.160694271641326 ], [ -95.565795071581192, 30.160622271859779 ], [ -95.565953071710354, 30.160507271563297 ], [ -95.566459071509286, 30.159908271513018 ], [ -95.566541071516156, 30.159693271977055 ], [ -95.566592071571279, 30.159622271670699 ], [ -95.566655071926519, 30.159583271475409 ], [ -95.566883072436482, 30.159545271409097 ], [ -95.566991072187875, 30.159501271471207 ], [ -95.567073072327176, 30.159446271763745 ], [ -95.567117072441221, 30.159391271728758 ], [ -95.567193072415336, 30.159237271929669 ], [ -95.567256072106105, 30.159204271244644 ], [ -95.567402072503938, 30.15919927176235 ], [ -95.56752807201363, 30.159204271444644 ], [ -95.567870071919117, 30.159259271612857 ], [ -95.567990072394764, 30.159259271418744 ], [ -95.568060071779371, 30.159243271462433 ], [ -95.568142072312568, 30.159182271326742 ], [ -95.568174071966496, 30.159116271168497 ], [ -95.568173072157663, 30.159039271678502 ], [ -95.568022072673713, 30.158836271366614 ], [ -95.567965072382307, 30.158726271307643 ], [ -95.567965071763737, 30.15863227167404 ], [ -95.568041072667711, 30.158511271239565 ], [ -95.568167072689647, 30.158418271771794 ], [ -95.568736072718124, 30.158072271725622 ], [ -95.568907072517035, 30.158028271429231 ], [ -95.569122072392261, 30.158011271152915 ], [ -95.569337072388592, 30.157978271064827 ], [ -95.569476072681738, 30.157923271225759 ], [ -95.569559072927973, 30.157863271333149 ], [ -95.569698072974461, 30.157643271279678 ], [ -95.569843072820547, 30.157522270977207 ], [ -95.569926072896962, 30.157412270696057 ], [ -95.569932072621953, 30.15732927115177 ], [ -95.56985607253786, 30.157230270844511 ], [ -95.569793072530246, 30.157187270688031 ], [ -95.56973607251463, 30.157165271169497 ], [ -95.569641072839545, 30.157154270786069 ], [ -95.569407072226269, 30.157088271098896 ], [ -95.569325072399423, 30.157049270757259 ], [ -95.569261072401162, 30.156983270858916 ], [ -95.569211072552903, 30.156912270703405 ], [ -95.569179072477525, 30.15681827089923 ], [ -95.56918507190592, 30.156725270767499 ], [ -95.569223072176484, 30.156631270829923 ], [ -95.56929907279013, 30.156538270556048 ], [ -95.569438072048996, 30.156450270912568 ], [ -95.569590072209422, 30.156384270688473 ], [ -95.56975507275574, 30.156345270567019 ], [ -95.569989072532721, 30.156307271254374 ], [ -95.570267072281524, 30.156214270478415 ], [ -95.57031807296255, 30.156181271164463 ], [ -95.570381072946731, 30.156098270679799 ], [ -95.570463073049865, 30.155829270463947 ], [ -95.570514072786352, 30.155576270939743 ], [ -95.570514072920247, 30.15548827107289 ], [ -95.570488072205691, 30.155367271014384 ], [ -95.570368072579868, 30.15509227043065 ], [ -95.57026107247566, 30.154476270793158 ], [ -95.570223072855441, 30.154356270648865 ], [ -95.570191072446789, 30.154092270040589 ], [ -95.570153072862766, 30.154004270649168 ], [ -95.57007707283887, 30.153927270487905 ], [ -95.56996907244735, 30.153850270287844 ], [ -95.56988707191887, 30.15374027058165 ], [ -95.569843072349911, 30.153646269913501 ], [ -95.569843072835909, 30.153586269999025 ], [ -95.569862072753963, 30.153520270039692 ], [ -95.569919072028227, 30.153437270145542 ], [ -95.570020072372557, 30.153366269854477 ], [ -95.570121072671412, 30.153273270175294 ], [ -95.570191072910333, 30.153223270269635 ], [ -95.570279072671482, 30.153218270218282 ], [ -95.57050107233232, 30.153262270324081 ], [ -95.570640072252615, 30.153278269830896 ], [ -95.570684072378953, 30.153278270495626 ], [ -95.570716072167698, 30.153261269936959 ], [ -95.570728073035951, 30.153229269989552 ], [ -95.570722073062086, 30.153168270584768 ], [ -95.570336072667388, 30.152761270089428 ], [ -95.570286072160471, 30.152668269942513 ], [ -95.570292072243916, 30.152613270281865 ], [ -95.570330072360122, 30.15257427003792 ], [ -95.570399072406715, 30.152547269986545 ], [ -95.570608072413947, 30.152536269693808 ], [ -95.570703072522718, 30.152574270498924 ], [ -95.570804072152981, 30.152640269860964 ], [ -95.571000072232138, 30.152893270492189 ], [ -95.571076072373529, 30.153020270405978 ], [ -95.571159072506589, 30.153108270299409 ], [ -95.571203073248171, 30.153135269962981 ], [ -95.571266072630124, 30.153135270013316 ], [ -95.571374072616578, 30.153053270575835 ], [ -95.571468072550545, 30.15291026997135 ], [ -95.571532072478007, 30.152860269895463 ], [ -95.571728072776651, 30.152772270208242 ], [ -95.571804073193249, 30.152712270172877 ], [ -95.571854072648634, 30.152640270367822 ], [ -95.57188007260082, 30.152574269812231 ], [ -95.571867072644196, 30.152431269746067 ], [ -95.571772072472896, 30.152272269940397 ], [ -95.571772072555177, 30.152184269983117 ], [ -95.571797072567435, 30.151997270286152 ], [ -95.571835073060925, 30.15188227019808 ], [ -95.571911072811275, 30.15178326949006 ], [ -95.571974072758962, 30.151772269586829 ], [ -95.572031072639163, 30.151783269511185 ], [ -95.57210107321994, 30.151827270227002 ], [ -95.572171072799776, 30.151937269721984 ], [ -95.572221072686119, 30.151970270117726 ], [ -95.572278072704094, 30.151981269936655 ], [ -95.572348072816354, 30.151981270073815 ], [ -95.572379073301263, 30.151959269997004 ], [ -95.572487072792384, 30.151766269527958 ], [ -95.572601073459637, 30.151695270038633 ], [ -95.572759073442512, 30.15165126959517 ], [ -95.573265073336586, 30.151563269524363 ], [ -95.573417073026405, 30.151541270023515 ], [ -95.573562072892969, 30.151541270078141 ], [ -95.573663073201828, 30.151552269949782 ], [ -95.573815073635373, 30.15160726940216 ], [ -95.573923073385146, 30.151667269798917 ], [ -95.574036073612177, 30.151744269654209 ], [ -95.574150073137147, 30.151870269837698 ], [ -95.57423907373267, 30.152002269415306 ], [ -95.574290073790209, 30.152019269730275 ], [ -95.574359073843965, 30.152019269528214 ], [ -95.574422073515862, 30.151991269919101 ], [ -95.574536073026934, 30.151892269685739 ], [ -95.574637073941062, 30.15178826977743 ], [ -95.574720073995195, 30.151733270205266 ], [ -95.574796073110036, 30.151705270177629 ], [ -95.574840073901413, 30.151700269676741 ], [ -95.575106073274142, 30.15172726930648 ], [ -95.575232073572906, 30.151722269576318 ], [ -95.575359073374472, 30.15169426973311 ], [ -95.575428073494336, 30.15165626930083 ], [ -95.575517073305363, 30.151557269951354 ], [ -95.575618073349688, 30.151463269888367 ], [ -95.575858073817287, 30.151315269780962 ], [ -95.575909073503126, 30.151266269779388 ], [ -95.575966073695653, 30.151112269691382 ], [ -95.575947073562389, 30.150908269116844 ], [ -95.575953073780411, 30.150837269756629 ], [ -95.576010073889165, 30.150776269389532 ], [ -95.576079073776228, 30.150721269164677 ], [ -95.576155074378534, 30.150694269295617 ], [ -95.576250074391979, 30.150688269403165 ], [ -95.576351074083306, 30.150699269064617 ], [ -95.576446073574516, 30.15072126993563 ], [ -95.576579074020586, 30.150727269873734 ], [ -95.576699073777732, 30.15074926957373 ], [ -95.577053074437799, 30.150573269332106 ], [ -95.577344074641005, 30.15027026956389 ], [ -95.577401074595699, 30.150193269128405 ], [ -95.577503074233917, 30.150116269102803 ], [ -95.577623073986416, 30.150116269600598 ], [ -95.577743074420979, 30.150133269466764 ], [ -95.578034073971722, 30.150254269126204 ], [ -95.578217074641728, 30.150270269124256 ], [ -95.578331074322989, 30.150270268898144 ], [ -95.578439074586484, 30.150254269027961 ], [ -95.578628074193574, 30.150193269184708 ], [ -95.578685074829565, 30.150138269344509 ], [ -95.578723074395569, 30.150067269615995 ], [ -95.578932074513332, 30.149830269211158 ], [ -95.579122074580752, 30.149775269572544 ], [ -95.579280075020975, 30.149814268859451 ], [ -95.579622074451592, 30.150067268804779 ], [ -95.57979907507611, 30.150116269171125 ], [ -95.579931074771281, 30.150122269250847 ], [ -95.580102075011084, 30.150111269335362 ], [ -95.580197075237962, 30.150100269550222 ], [ -95.580349075059345, 30.150066269011614 ], [ -95.580374075057122, 30.150061269286038 ], [ -95.580501074792892, 30.149995269504632 ], [ -95.580621074619273, 30.149913269099766 ], [ -95.581260075033953, 30.149143269234301 ], [ -95.581468075340311, 30.148846268607922 ], [ -95.581816074760113, 30.148516269200542 ], [ -95.582158075666015, 30.14833526874035 ], [ -95.582227074946942, 30.148274269224274 ], [ -95.582284074864475, 30.148203268392006 ], [ -95.582309075102089, 30.148137268485016 ], [ -95.582297075235246, 30.147977268410092 ], [ -95.582176075097365, 30.147703268926659 ], [ -95.582164075016351, 30.147626268853912 ], [ -95.582170075230778, 30.147549268527747 ], [ -95.582195075435038, 30.147488268466343 ], [ -95.582221075337429, 30.147461268344557 ], [ -95.582265075566283, 30.147444268539882 ], [ -95.582366075645908, 30.147455268288866 ], [ -95.58260607502767, 30.14757626851506 ], [ -95.582720075204392, 30.147598268466208 ], [ -95.582809075210704, 30.147604268256611 ], [ -95.582885075955062, 30.147592268691536 ], [ -95.582948075510203, 30.147559268938579 ], [ -95.58301807541541, 30.14749426839564 ], [ -95.583112075409531, 30.147356268752681 ], [ -95.58343507586676, 30.146988268654336 ], [ -95.583682075564894, 30.146806268576132 ], [ -95.583783075948176, 30.146751268497429 ], [ -95.583897075907686, 30.14672926888133 ], [ -95.584143075512515, 30.146718268680246 ], [ -95.584206075960338, 30.146691268180952 ], [ -95.584238075364865, 30.146658268586449 ], [ -95.584244075662355, 30.146625268574116 ], [ -95.584238076067194, 30.146570268721675 ], [ -95.584093075543123, 30.146355267901953 ], [ -95.583972075222277, 30.146042268458348 ], [ -95.583991075204054, 30.145745268492249 ], [ -95.584023075199653, 30.145635267785948 ], [ -95.58406707558828, 30.145553268566061 ], [ -95.584143075797058, 30.145487268213166 ], [ -95.584225075688011, 30.145443267842388 ], [ -95.584364076204949, 30.145388268338319 ], [ -95.584503075438477, 30.145355267964096 ], [ -95.584769075916853, 30.145234268079982 ], [ -95.58508507539716, 30.144986268414225 ], [ -95.58516107635667, 30.144882267818154 ], [ -95.585193075872098, 30.144805267584442 ], [ -95.585268076354964, 30.144107267447101 ], [ -95.585313075480514, 30.143387267950292 ], [ -95.585357075754729, 30.143178267712209 ], [ -95.58541407586344, 30.142793267133058 ], [ -95.585439075946766, 30.142535267084426 ], [ -95.585439075661668, 30.142419267936756 ], [ -95.585420075721274, 30.14224326758 ], [ -95.585432075805016, 30.142111267568566 ], [ -95.585464076047359, 30.142018267720381 ], [ -95.586248076181178, 30.141281267374037 ], [ -95.586337076529773, 30.141166266872755 ], [ -95.586413075743863, 30.141138266768106 ], [ -95.586621075610012, 30.141133267172698 ], [ -95.586710076052526, 30.141111267207201 ], [ -95.586817075722436, 30.141028267274219 ], [ -95.586899076385919, 30.140902266934965 ], [ -95.586906075752481, 30.140764267328141 ], [ -95.586887076080131, 30.140116266971877 ], [ -95.58690607605881, 30.1400062668266 ], [ -95.586969076594571, 30.139852267107333 ], [ -95.587241075884251, 30.139302266950011 ], [ -95.587462075975765, 30.139016266844884 ], [ -95.587854076015361, 30.138400266564698 ], [ -95.587911075830107, 30.138290266270939 ], [ -95.587955076187782, 30.138175266678715 ], [ -95.587987076075066, 30.13804926624136 ], [ -95.588107076776978, 30.137834266850184 ], [ -95.588176076016268, 30.13776326639951 ], [ -95.588258076132504, 30.13771326652882 ], [ -95.588853076207599, 30.137405266672456 ], [ -95.589061076554515, 30.137317265965351 ], [ -95.589289076577586, 30.137174266474535 ], [ -95.589561077052011, 30.136888266418278 ], [ -95.589637076409289, 30.136844265927905 ], [ -95.58973207712512, 30.136806265919777 ], [ -95.589833077016337, 30.13677826602019 ], [ -95.590004077146872, 30.136745266441128 ], [ -95.590282076594704, 30.13673426629504 ], [ -95.590326077095099, 30.136723266470213 ], [ -95.590352076758762, 30.136707266258718 ], [ -95.590408076527638, 30.136602266503434 ], [ -95.590465076628831, 30.136031266133106 ], [ -95.59054707698138, 30.135921265766545 ], [ -95.59061707679264, 30.135877266090869 ], [ -95.590674076594183, 30.135866266228696 ], [ -95.590756077159455, 30.135877265790775 ], [ -95.590826077337383, 30.135893266054914 ], [ -95.590864076554155, 30.135932265910927 ], [ -95.59092007690181, 30.136069266024204 ], [ -95.590933076748371, 30.13646526606728 ], [ -95.590946076546615, 30.136569265730003 ], [ -95.590965076495053, 30.136635266061564 ], [ -95.591041077397094, 30.13665226572142 ], [ -95.591104076634707, 30.136652265765033 ], [ -95.591174076988779, 30.136630266065168 ], [ -95.591515076860389, 30.136415265883485 ], [ -95.591604076748666, 30.136338266204607 ], [ -95.591686077640745, 30.136223266247505 ], [ -95.591762077695932, 30.135772265875275 ], [ -95.5918060775914, 30.135701265536127 ], [ -95.591863076994443, 30.135657266143603 ], [ -95.591939076701493, 30.135629265719576 ], [ -95.592059077632143, 30.135629265539997 ], [ -95.592160076877661, 30.135651266034792 ], [ -95.592451077518149, 30.135750266297489 ], [ -95.592552077775963, 30.135766265794064 ], [ -95.592641077067242, 30.135755266165067 ], [ -95.592735077568292, 30.135728265484147 ], [ -95.593001077997116, 30.135530265588674 ], [ -95.593317078039831, 30.135315265791647 ], [ -95.593488077569575, 30.135282265451444 ], [ -95.593570077399022, 30.13527726557043 ], [ -95.593627077325763, 30.135288265620897 ], [ -95.593690077337882, 30.135332265883868 ], [ -95.593893077812211, 30.135530266138879 ], [ -95.593962077475084, 30.135574265663706 ], [ -95.594032077888428, 30.135590266065307 ], [ -95.594089078088544, 30.135590266251821 ], [ -95.59413907807496, 30.135579265487753 ], [ -95.594184077557969, 30.135557265678365 ], [ -95.59422807819962, 30.135524266166151 ], [ -95.594253078148256, 30.135486265838242 ], [ -95.594247078159341, 30.135376266151603 ], [ -95.594127078114937, 30.134859265754859 ], [ -95.594095077685111, 30.134765266033224 ], [ -95.594089078086938, 30.134694266052591 ], [ -95.594107078119549, 30.134568265304168 ], [ -95.59416407779996, 30.134474265550956 ], [ -95.59422807790456, 30.134397265626401 ], [ -95.594291077249295, 30.134359265346138 ], [ -95.594335077966875, 30.134342265323436 ], [ -95.59447407815226, 30.134353265415843 ], [ -95.594544077495044, 30.134392265767914 ], [ -95.594841077554889, 30.134600265168611 ], [ -95.594911077446355, 30.134727265397828 ], [ -95.594892077714434, 30.134793265280898 ], [ -95.594803077752871, 30.134980265578051 ], [ -95.594797077505447, 30.135057265687806 ], [ -95.594803077561679, 30.135095265718032 ], [ -95.59482907785457, 30.135128265904903 ], [ -95.594879077946089, 30.135145265834058 ], [ -95.595012077778833, 30.135134265725608 ], [ -95.595259077664721, 30.135051265270704 ], [ -95.595783078287312, 30.134815265408353 ], [ -95.595828077973493, 30.134782265398357 ], [ -95.595866078294961, 30.134738265460655 ], [ -95.596030078614049, 30.134644265338135 ], [ -95.596011077686114, 30.134463265585079 ], [ -95.595973078447997, 30.134419265541457 ], [ -95.595935078170612, 30.134402265547454 ], [ -95.595815078561756, 30.134380265330986 ], [ -95.595771078636631, 30.134353265371509 ], [ -95.595752078333319, 30.134309265056626 ], [ -95.595771077654433, 30.134265265286601 ], [ -95.595815078120225, 30.134221265591965 ], [ -95.595878078641888, 30.134199265034983 ], [ -95.595954078290518, 30.134155265569699 ], [ -95.596005078220685, 30.134094265667873 ], [ -95.596042077743775, 30.13397926504506 ], [ -95.59609307856303, 30.13389126503931 ], [ -95.596169078127758, 30.133819265390624 ], [ -95.596232078477414, 30.133808265240845 ], [ -95.596302078291984, 30.133819265531827 ], [ -95.596403078556278, 30.133896265764275 ], [ -95.596416078422706, 30.133957265265035 ], [ -95.596397078685811, 30.134078265499685 ], [ -95.596397078046479, 30.134221265680637 ], [ -95.596416077872021, 30.134303265640867 ], [ -95.59644707793224, 30.134375265400692 ], [ -95.596536078530605, 30.134435265624266 ], [ -95.596618077887797, 30.134452265933025 ], [ -95.596713078426504, 30.134451265369549 ], [ -95.596758078348856, 30.134447265082976 ], [ -95.596764078097095, 30.13446526561745 ], [ -95.596785078036007, 30.134444265095819 ], [ -95.597162078517002, 30.134407265556167 ], [ -95.597320078381784, 30.134347265384715 ], [ -95.597371078172827, 30.134308265216571 ], [ -95.597396078692185, 30.134270265240573 ], [ -95.597402078277867, 30.13414326564444 ], [ -95.597390078317133, 30.13403926578458 ], [ -95.597307078153278, 30.133792265641837 ], [ -95.597307078216517, 30.133715265264872 ], [ -95.597345078147427, 30.133632265183294 ], [ -95.597389078695343, 30.133588264989108 ], [ -95.597503078556016, 30.133528265252437 ], [ -95.597630078881494, 30.133500265689829 ], [ -95.597965078148064, 30.13347826516182 ], [ -95.598180078295798, 30.133434264782302 ], [ -95.598325079082741, 30.1333852655893 ], [ -95.598496078715883, 30.133352265302584 ], [ -95.598964079045842, 30.133346265109978 ], [ -95.599318079492676, 30.133296265105251 ], [ -95.599691079460044, 30.133307265182918 ], [ -95.599913079505001, 30.133362265398485 ], [ -95.60012807946832, 30.133368264900206 ], [ -95.600191079206922, 30.133379264926781 ], [ -95.600336078890763, 30.133362265284749 ], [ -95.600400079442664, 30.133346265168825 ], [ -95.600583079208434, 30.133274265309634 ], [ -95.600735078995328, 30.133098264757908 ], [ -95.600735079176886, 30.132911265107698 ], [ -95.600855079060139, 30.132741265075062 ], [ -95.601057079045745, 30.132763265328816 ], [ -95.601139079772409, 30.132785264594016 ], [ -95.601228079552598, 30.132845265306134 ], [ -95.601266079024356, 30.13290526516705 ], [ -95.601310079747876, 30.133037264608074 ], [ -95.60137307990783, 30.133103265098242 ], [ -95.601456079602556, 30.13316926547132 ], [ -95.601525079913145, 30.133246265521901 ], [ -95.601633079187778, 30.133455264809669 ], [ -95.601728079646506, 30.133527264764478 ], [ -95.601816079762699, 30.133576265403466 ], [ -95.602063079853309, 30.13365826552397 ], [ -95.602139079347936, 30.133669265414941 ], [ -95.602170079587694, 30.133664265299231 ], [ -95.602208080035339, 30.133614264725018 ], [ -95.602227079514222, 30.133570265011727 ], [ -95.602227080000418, 30.133493264732962 ], [ -95.60218908001697, 30.133372265270054 ], [ -95.602113079492625, 30.133263264828756 ], [ -95.601949079360836, 30.133070264929295 ], [ -95.60187907973868, 30.132960265243064 ], [ -95.601860079937339, 30.132878265213925 ], [ -95.601867079760837, 30.132845265284434 ], [ -95.601930079807616, 30.132790264753165 ], [ -95.602069079590521, 30.132746265053644 ], [ -95.602499080251306, 30.132762264901192 ], [ -95.602587080253898, 30.132795264651655 ], [ -95.602625079399942, 30.132845265316487 ], [ -95.602626079625111, 30.132960265328094 ], [ -95.60250507942385, 30.133186265107664 ], [ -95.602518080096289, 30.133235265244718 ], [ -95.602841080024774, 30.133647265281599 ], [ -95.602891080208337, 30.133697264797171 ], [ -95.602955079892723, 30.133746265004724 ], [ -95.603157080486852, 30.133834265371785 ], [ -95.603309080309927, 30.133828264770997 ], [ -95.603397079677208, 30.133812265489677 ], [ -95.603461080266783, 30.133784265210604 ], [ -95.603499079735116, 30.1337572653383 ], [ -95.60352408016125, 30.133691265164025 ], [ -95.603543080586746, 30.133581264691628 ], [ -95.603593079975681, 30.133498265432959 ], [ -95.60366308046099, 30.133476264749735 ], [ -95.603688080221474, 30.133482264949567 ], [ -95.603758080465894, 30.133520265014237 ], [ -95.603891080559876, 30.13363626480135 ], [ -95.60420108046462, 30.133823265217433 ], [ -95.604428080172625, 30.133911264816224 ], [ -95.604536080328373, 30.133927265070163 ], [ -95.604662080252751, 30.133921265440382 ], [ -95.6047950799923, 30.133883264712033 ], [ -95.605320080994815, 30.133613265485746 ], [ -95.605440080829482, 30.133580265297347 ], [ -95.605522080846725, 30.133591264887666 ], [ -95.605554080417775, 30.133641264880261 ], [ -95.60555408097855, 30.133685265279951 ], [ -95.605453081044587, 30.133822265185795 ], [ -95.605440080237543, 30.133877264726625 ], [ -95.60546508010799, 30.133954265004256 ], [ -95.605516080826817, 30.13402026476847 ], [ -95.605794080214807, 30.134190264813675 ], [ -95.605864080992589, 30.134256265548956 ], [ -95.605978080915207, 30.134460265484776 ], [ -95.606041081251647, 30.13449326473744 ], [ -95.606098081061432, 30.134509264733481 ], [ -95.606174080278748, 30.134509265375293 ], [ -95.606237080630919, 30.134487265433211 ], [ -95.606263080611626, 30.134438265104571 ], [ -95.606256081182337, 30.134372264849432 ], [ -95.606130080827924, 30.134207265237887 ], [ -95.606130081073843, 30.134175265385238 ], [ -95.606136080302576, 30.134157264817983 ], [ -95.60628808112601, 30.133992265151704 ], [ -95.606389080825508, 30.133987264859694 ], [ -95.60700208130983, 30.134064264977599 ], [ -95.607135081344239, 30.134097265048545 ], [ -95.607249081499191, 30.134151265192006 ], [ -95.607293081558907, 30.134195265281928 ], [ -95.607312080991079, 30.134256265066618 ], [ -95.607300081235181, 30.13431626547046 ], [ -95.607312081497597, 30.134410265418161 ], [ -95.607350081400099, 30.134454264859951 ], [ -95.607401081391444, 30.134481265130013 ], [ -95.607464081551939, 30.13449826513121 ], [ -95.607610081302425, 30.134454264812035 ], [ -95.607919081361047, 30.134278264847481 ], [ -95.608090081242935, 30.1342232648873 ], [ -95.608185081004649, 30.13422326520422 ], [ -95.608387081013007, 30.134266265361813 ], [ -95.608634081455804, 30.134398265102025 ], [ -95.608748081098852, 30.134420264994954 ], [ -95.608938081671965, 30.134437264984424 ], [ -95.609039081757643, 30.134475264878049 ], [ -95.609140081596706, 30.134530265020331 ], [ -95.609305081461642, 30.134695265536138 ], [ -95.60939908146463, 30.134750265008364 ], [ -95.609520081868041, 30.134772264709721 ], [ -95.609614081190657, 30.134772264960219 ], [ -95.609855081728597, 30.134750265248012 ], [ -95.609988081621381, 30.134750265360573 ], [ -95.610285081939153, 30.134782264671486 ], [ -95.610418081825543, 30.134766264900314 ], [ -95.610538082269073, 30.134782264857826 ], [ -95.61065208165725, 30.13480426491153 ], [ -95.610886082183811, 30.134964264883877 ], [ -95.611006081705696, 30.135024264694451 ], [ -95.611107081612104, 30.135057264964164 ], [ -95.611234081811858, 30.135046264674234 ], [ -95.611930082007817, 30.13489426517593 ], [ -95.612018082160716, 30.13487526490918 ], [ -95.612100082463499, 30.134870264607699 ], [ -95.612195082000099, 30.134886265132181 ], [ -95.61229608267476, 30.134952265192826 ], [ -95.612372082213753, 30.135018265473079 ], [ -95.612536082100519, 30.135249265059379 ], [ -95.612809082898806, 30.13534226502291 ], [ -95.612967082367291, 30.135386264730805 ], [ -95.613032082342784, 30.135396264848143 ], [ -95.613163082961606, 30.135419264808458 ], [ -95.613498082752614, 30.135419265405677 ], [ -95.613637082286729, 30.135402265521897 ], [ -95.613928082764602, 30.135347264837993 ], [ -95.614023082768128, 30.135298265435956 ], [ -95.614137082775883, 30.135270265168689 ], [ -95.61445908247407, 30.135270264662473 ], [ -95.61461708341804, 30.135243264951491 ], [ -95.614740082732993, 30.135196264812983 ], [ -95.615122082833096, 30.135052265228222 ], [ -95.615200083382533, 30.135023265214283 ], [ -95.615262083209004, 30.135000264830325 ], [ -95.615458083484924, 30.134956265178026 ], [ -95.615711083066032, 30.134940265197091 ], [ -95.615894083593943, 30.134951265312626 ], [ -95.616078082912281, 30.134978264468817 ], [ -95.616242083337355, 30.135038264510733 ], [ -95.616363083672439, 30.135099264745953 ], [ -95.616489083002435, 30.135214265049051 ], [ -95.616635083683335, 30.135528264836097 ], [ -95.616742083157632, 30.135654264889901 ], [ -95.616875083599197, 30.135725264657083 ], [ -95.61697508403104, 30.135610264988845 ], [ -95.617064083561701, 30.135509265143153 ], [ -95.617077084081302, 30.135494265032335 ], [ -95.617141083670774, 30.13540126514949 ], [ -95.617248083449894, 30.135154264626966 ], [ -95.617349084160452, 30.135016264484165 ], [ -95.617431083476305, 30.134988264442232 ], [ -95.617501083550678, 30.134988264850609 ], [ -95.617634084116872, 30.135032264864623 ], [ -95.617836084008061, 30.135076265082564 ], [ -95.617981084117332, 30.135146264996159 ], [ -95.618266083461009, 30.135285264993545 ], [ -95.618361083671957, 30.13531226526019 ], [ -95.618564084047946, 30.135318264711803 ], [ -95.618595083889488, 30.135356264673099 ], [ -95.618614084536944, 30.135428264997476 ], [ -95.618608083638478, 30.135659264613988 ], [ -95.618621084251743, 30.135747265135755 ], [ -95.618678084514755, 30.135829265461322 ], [ -95.6187660843391, 30.135895264917181 ], [ -95.618924084089258, 30.135911264879436 ], [ -95.619044083711159, 30.135906265141518 ], [ -95.619146083936343, 30.135884264768951 ], [ -95.619424083796801, 30.135856264744064 ], [ -95.61950508381652, 30.135841264929887 ], [ -95.619544083956342, 30.135834265197879 ], [ -95.619595084596412, 30.135807264529767 ], [ -95.619607084719107, 30.135768265191778 ], [ -95.619601083829352, 30.13569926491731 ], [ -95.619595083948823, 30.135631264629367 ], [ -95.619607084451545, 30.135554264880689 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1376, "Tract": "48201555701", "Area_SqMi": 4.1645322212277867, "total_2009": 492, "total_2010": 549, "total_2011": 545, "total_2012": 802, "total_2013": 987, "total_2014": 1236, "total_2015": 1231, "total_2016": 1135, "total_2017": 1396, "total_2018": 2038, "total_2019": 1936, "total_2020": 1878, "age1": 716, "age2": 1075, "age3": 459, "earn1": 475, "earn2": 721, "earn3": 1054, "naics_s01": 4, "naics_s02": 10, "naics_s03": 29, "naics_s04": 394, "naics_s05": 61, "naics_s06": 48, "naics_s07": 266, "naics_s08": 70, "naics_s09": 22, "naics_s10": 22, "naics_s11": 66, "naics_s12": 214, "naics_s13": 7, "naics_s14": 225, "naics_s15": 8, "naics_s16": 260, "naics_s17": 28, "naics_s18": 427, "naics_s19": 89, "naics_s20": 0, "race1": 1782, "race2": 248, "race3": 23, "race4": 164, "race5": 3, "race6": 30, "ethnicity1": 1504, "ethnicity2": 746, "edu1": 361, "edu2": 421, "edu3": 435, "edu4": 317, "Shape_Length": 81903.937702575218, "Shape_Area": 116100030.65969908, "total_2021": 2173, "total_2022": 2250 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.781532121010756, 30.027680237211609 ], [ -95.781582121123833, 30.027653237256736 ], [ -95.781237120075815, 30.027659237207761 ], [ -95.781143120380321, 30.027660237121609 ], [ -95.78018112038832, 30.027661237275481 ], [ -95.779321119796236, 30.027674237363712 ], [ -95.774052119125585, 30.02773523806929 ], [ -95.770951118207208, 30.027761237505654 ], [ -95.770011117990123, 30.027756238005129 ], [ -95.769976118070289, 30.027744238170417 ], [ -95.768851117821526, 30.027685237908621 ], [ -95.768698116995211, 30.027669237693736 ], [ -95.768609117773934, 30.027640238134058 ], [ -95.768550117579764, 30.027571237430458 ], [ -95.768536117431694, 30.027514238261439 ], [ -95.768528117442301, 30.027436237846661 ], [ -95.768511116751952, 30.025554237737232 ], [ -95.768511116883985, 30.025416237472857 ], [ -95.768509117312789, 30.025041236983103 ], [ -95.768508117489475, 30.024485237114341 ], [ -95.768528116636986, 30.023342237286666 ], [ -95.768519116822304, 30.022811237063468 ], [ -95.768478116784948, 30.021582236741125 ], [ -95.768465117308949, 30.020649236492115 ], [ -95.768455116632822, 30.02042823610692 ], [ -95.768439117378122, 30.020380236246073 ], [ -95.768392117107979, 30.020342236820763 ], [ -95.76831711708688, 30.020319236740509 ], [ -95.76822011646378, 30.020310236791214 ], [ -95.767931117072536, 30.020312236025383 ], [ -95.767670117013566, 30.020314236778294 ], [ -95.765823116744457, 30.020328236498401 ], [ -95.76466211621522, 30.020322236127143 ], [ -95.763874115666169, 30.020332236262199 ], [ -95.759339114891532, 30.020393236846694 ], [ -95.755931113821646, 30.020428237085952 ], [ -95.754441113060665, 30.020443236953472 ], [ -95.753034113320894, 30.020458237070354 ], [ -95.752152112697956, 30.020466237075759 ], [ -95.750869112795314, 30.020460236915671 ], [ -95.749915112231875, 30.020464237443406 ], [ -95.748884111902399, 30.02048323674493 ], [ -95.748380111757072, 30.020492237398919 ], [ -95.746354111640642, 30.020501236837649 ], [ -95.745136111060873, 30.020540236909785 ], [ -95.743544110757838, 30.020563236835756 ], [ -95.743170110494304, 30.020563237256951 ], [ -95.743111110993638, 30.02054923698606 ], [ -95.743063110245089, 30.020515237527338 ], [ -95.743034110866574, 30.020463236993951 ], [ -95.743021110094674, 30.020391237560798 ], [ -95.743012110584473, 30.019732237458921 ], [ -95.743011110046766, 30.019570236721318 ], [ -95.742988110346232, 30.018198236862066 ], [ -95.742975110458204, 30.017414236739402 ], [ -95.742954110213532, 30.016065235935777 ], [ -95.742910109766981, 30.012730235510674 ], [ -95.742909109930011, 30.012654235359456 ], [ -95.742926109902498, 30.01258023563939 ], [ -95.742935109839507, 30.012540235323659 ], [ -95.742952110137352, 30.011834235544491 ], [ -95.742975109534513, 30.011443235874001 ], [ -95.743216110470939, 30.010434235418249 ], [ -95.74334710977061, 30.009603234863906 ], [ -95.743377109782656, 30.009501234820068 ], [ -95.743391110052357, 30.009428235346466 ], [ -95.743413110567502, 30.009318234662366 ], [ -95.743430109815165, 30.009231235041646 ], [ -95.743472110162728, 30.008960234843482 ], [ -95.743503109846841, 30.008688235112277 ], [ -95.74344510965517, 30.007571234346511 ], [ -95.743447110053154, 30.007550234488772 ], [ -95.743473109523904, 30.007252234836493 ], [ -95.743479109671995, 30.007189234327367 ], [ -95.743456109863033, 30.006894234488925 ], [ -95.743447110311209, 30.006773234219906 ], [ -95.74322511006865, 30.006198234504989 ], [ -95.74292010976059, 30.005563234636373 ], [ -95.742837109359016, 30.005390234232024 ], [ -95.742403109429148, 30.004671233690345 ], [ -95.741112108784932, 30.003478233722337 ], [ -95.740236108987389, 30.002614233940417 ], [ -95.739228108434219, 30.001515233911675 ], [ -95.738809108074193, 30.00107723309976 ], [ -95.738351108119886, 30.000383233473869 ], [ -95.738251108165372, 30.000175233428237 ], [ -95.737985108433207, 29.999381233158363 ], [ -95.737900108502544, 29.999101233390551 ], [ -95.737779107747727, 29.998647232577664 ], [ -95.737774107958685, 29.998436233201961 ], [ -95.73773410820462, 29.998115232769887 ], [ -95.73771310808921, 29.997626232994591 ], [ -95.73774210758306, 29.997335232717777 ], [ -95.737753108035179, 29.997221232450489 ], [ -95.737976108057779, 29.995963232410663 ], [ -95.738050108082234, 29.99564323217685 ], [ -95.738131108453473, 29.99530123248034 ], [ -95.738293107785523, 29.994608232032881 ], [ -95.738441107783714, 29.994113231851088 ], [ -95.738561108377624, 29.993710231873699 ], [ -95.738797107669185, 29.993041231951015 ], [ -95.738957107932904, 29.992699231759744 ], [ -95.738995107914718, 29.992643231728621 ], [ -95.739031108132281, 29.992590231836676 ], [ -95.739359108316592, 29.99191223164128 ], [ -95.739635108638623, 29.991372231186062 ], [ -95.740195108416685, 29.990272231512801 ], [ -95.740868108249032, 29.988953231065675 ], [ -95.740908108408149, 29.988876230511941 ], [ -95.740921108559817, 29.988850231267651 ], [ -95.740941108441675, 29.988810230544669 ], [ -95.740969108443423, 29.988756230953079 ], [ -95.74101110868223, 29.988673231130839 ], [ -95.741094108045559, 29.988452231228276 ], [ -95.741156108127257, 29.988315230759593 ], [ -95.74098210831842, 29.988243230754232 ], [ -95.740810108576071, 29.988179231128044 ], [ -95.736729107046344, 29.986662230582052 ], [ -95.734713107252531, 29.985867230556455 ], [ -95.732241106588532, 29.984895230401943 ], [ -95.728966105713624, 29.983664230451588 ], [ -95.727592104501596, 29.983143230154532 ], [ -95.725380103896427, 29.982320230556333 ], [ -95.724882103871337, 29.982110230085347 ], [ -95.724486103710149, 29.981949230510761 ], [ -95.723742104129826, 29.981637229884502 ], [ -95.723086103574545, 29.981398230139032 ], [ -95.720147102691854, 29.98029423009903 ], [ -95.717194101792245, 29.979136229621332 ], [ -95.717053102356047, 29.979081229846173 ], [ -95.716964101877551, 29.979046229371107 ], [ -95.716875101602398, 29.979240230186736 ], [ -95.716837102073541, 29.979371229669653 ], [ -95.716783101466845, 29.979508229648324 ], [ -95.716769101695519, 29.979502229468604 ], [ -95.716778101923495, 29.979522230139541 ], [ -95.716738102337672, 29.979662230311817 ], [ -95.716701102347884, 29.979780229841257 ], [ -95.71666310137725, 29.979867230225558 ], [ -95.716651101484388, 29.979973229941965 ], [ -95.716670101903773, 29.980122230218647 ], [ -95.716722102071657, 29.980485229861156 ], [ -95.716769101838892, 29.980608230538071 ], [ -95.716788102142218, 29.980655230110802 ], [ -95.71695510228183, 29.980922229747161 ], [ -95.717278102122918, 29.981276230655435 ], [ -95.717350101631567, 29.981385230254716 ], [ -95.717375101848333, 29.981422230191757 ], [ -95.71739010262516, 29.981444230348302 ], [ -95.71743510180471, 29.981511229823294 ], [ -95.717454102593081, 29.981539230246547 ], [ -95.717466101693887, 29.981565230120623 ], [ -95.717545101775002, 29.981737229926047 ], [ -95.717794102399637, 29.982283230619778 ], [ -95.718342102183726, 29.983481230273256 ], [ -95.718413102119925, 29.983638230713588 ], [ -95.718441102701604, 29.983704230490339 ], [ -95.718777102938276, 29.984434230881369 ], [ -95.718835102521894, 29.984569231190907 ], [ -95.718897103035005, 29.984715230782999 ], [ -95.718938102991956, 29.984812231061991 ], [ -95.718947103204997, 29.984831230630263 ], [ -95.719002103215146, 29.984952230728588 ], [ -95.719647102591622, 29.986308230955625 ], [ -95.720200103273214, 29.987470231616879 ], [ -95.720282103370366, 29.987657231104976 ], [ -95.720365102775361, 29.987849231429458 ], [ -95.720495103739395, 29.988129231692497 ], [ -95.720516103093999, 29.988174231527243 ], [ -95.720524103544136, 29.9881912318248 ], [ -95.720531103780971, 29.988205231183546 ], [ -95.720600103696583, 29.988355231795918 ], [ -95.720733103836309, 29.988628231914813 ], [ -95.720738103524909, 29.988650232004392 ], [ -95.720752103372163, 29.988674231603955 ], [ -95.720790103484077, 29.988753231980596 ], [ -95.721154103714397, 29.989520231683468 ], [ -95.721177103314943, 29.989569231445291 ], [ -95.721581103162052, 29.990433231560729 ], [ -95.72167810348482, 29.990648232093417 ], [ -95.722371103642899, 29.992190232356542 ], [ -95.722631104237095, 29.992770232655282 ], [ -95.722643103822691, 29.992797232806311 ], [ -95.722654104066862, 29.992822232054046 ], [ -95.72269010397514, 29.992902232530305 ], [ -95.722991104384036, 29.993574232385022 ], [ -95.723222103887295, 29.994069232769746 ], [ -95.723269104349995, 29.99417123224929 ], [ -95.723752104876169, 29.995206233091743 ], [ -95.724195104562938, 29.996157233414426 ], [ -95.724338104725419, 29.996465233091875 ], [ -95.724492104957832, 29.996793233454127 ], [ -95.724524104429719, 29.996872233188817 ], [ -95.724547105005371, 29.996926233042618 ], [ -95.724592104520994, 29.997061233306255 ], [ -95.724623105174715, 29.997202233289407 ], [ -95.724639105179037, 29.997352232911961 ], [ -95.724645105224994, 29.997512233167054 ], [ -95.724651104701607, 29.998043233136325 ], [ -95.724668104495237, 29.999366233624091 ], [ -95.724669105043304, 29.999393233356102 ], [ -95.724690104758452, 29.999942233894959 ], [ -95.724696105148126, 30.000074233416008 ], [ -95.724701104446936, 30.000964234163902 ], [ -95.724702105157675, 30.001142233939277 ], [ -95.724721105525632, 30.00307923451766 ], [ -95.724726104851982, 30.00335623475786 ], [ -95.724721104824084, 30.004001234737032 ], [ -95.724726105348921, 30.004922234763814 ], [ -95.72474410563315, 30.005781234570893 ], [ -95.72473810553258, 30.005995235252463 ], [ -95.724753105354409, 30.008591235685472 ], [ -95.724745105327614, 30.009181235225551 ], [ -95.724749105460404, 30.010312235813952 ], [ -95.724741105259298, 30.010409236073102 ], [ -95.72475710515296, 30.010409236260138 ], [ -95.724762105623427, 30.01238823587228 ], [ -95.724774105150004, 30.012828236300233 ], [ -95.724846105884666, 30.014396237132292 ], [ -95.724869105338257, 30.014826236591819 ], [ -95.724926105395497, 30.016132236887394 ], [ -95.724959106146102, 30.018552237368048 ], [ -95.724964106201227, 30.019037237713754 ], [ -95.724973106218002, 30.019691237622958 ], [ -95.724987105548735, 30.01981223820647 ], [ -95.7250081057404, 30.019978238028525 ], [ -95.725018105570769, 30.020114237396438 ], [ -95.72502410573783, 30.020405237469411 ], [ -95.725028105619188, 30.02060523828548 ], [ -95.725030105827244, 30.020893238333404 ], [ -95.725022105947843, 30.021161237751482 ], [ -95.725007105553914, 30.021427238021193 ], [ -95.724994106435048, 30.021783238401635 ], [ -95.724982105817062, 30.022006238550237 ], [ -95.725115105561443, 30.022020238283645 ], [ -95.725316106316498, 30.022030238333091 ], [ -95.725481106244303, 30.022019238339926 ], [ -95.725639106254278, 30.02198623855471 ], [ -95.725875105683571, 30.021922238346576 ], [ -95.726169106026433, 30.021843237970838 ], [ -95.726289106291418, 30.021821238176322 ], [ -95.726390105883326, 30.021826237795121 ], [ -95.726466106248878, 30.021854237905757 ], [ -95.726542105929667, 30.021914238234469 ], [ -95.72700910667217, 30.02221623854933 ], [ -95.727117106397671, 30.022271238377002 ], [ -95.727243106707988, 30.022315238175114 ], [ -95.727344106724502, 30.02232623785692 ], [ -95.727635106810553, 30.022315238372787 ], [ -95.727932107105801, 30.022244238471611 ], [ -95.728298106792437, 30.022139238308963 ], [ -95.728620106874459, 30.02206723829056 ], [ -95.728866106443263, 30.022023237692366 ], [ -95.729087107106025, 30.02200723849877 ], [ -95.729195107519232, 30.02201223766377 ], [ -95.729384107289121, 30.022089237748823 ], [ -95.729681106853121, 30.022419238480317 ], [ -95.729770106853607, 30.02256723836943 ], [ -95.730237107348415, 30.023166238063148 ], [ -95.730339107687641, 30.02321023835988 ], [ -95.730490107617456, 30.02333123800819 ], [ -95.730610107695171, 30.023496238538691 ], [ -95.730705107023411, 30.02360623827105 ], [ -95.731444107736294, 30.024243238725454 ], [ -95.731975108087113, 30.024771238593228 ], [ -95.732095107751604, 30.024958238924942 ], [ -95.732178107699568, 30.025150238960311 ], [ -95.732399108171307, 30.025397238296769 ], [ -95.732500107881279, 30.025447238545972 ], [ -95.732569108004441, 30.025458238487079 ], [ -95.732816108447764, 30.025441238950343 ], [ -95.732942108056434, 30.025468238976778 ], [ -95.733075107735971, 30.025551239062306 ], [ -95.733239107975336, 30.025677239064375 ], [ -95.733340108254197, 30.025771238586859 ], [ -95.733422107893801, 30.025886238608837 ], [ -95.733492108563908, 30.026018238895592 ], [ -95.733530108595517, 30.026166238787358 ], [ -95.733530108758032, 30.026304238363355 ], [ -95.733543108154365, 30.026408238845455 ], [ -95.733505107955125, 30.026507238760047 ], [ -95.733423108500332, 30.026639238617648 ], [ -95.733322108484444, 30.026760238822025 ], [ -95.73309410774317, 30.026996238731716 ], [ -95.733069108507152, 30.027062238591906 ], [ -95.733063108348986, 30.027134239066786 ], [ -95.733082107907677, 30.027200239221152 ], [ -95.733196108009295, 30.027381238760274 ], [ -95.73341510873226, 30.02762723889553 ], [ -95.733455108384959, 30.027672239176454 ], [ -95.733550108899351, 30.027793239041994 ], [ -95.733531108350121, 30.028074238982683 ], [ -95.733556108429227, 30.028184239476325 ], [ -95.733645108636097, 30.028244239205591 ], [ -95.733695108283428, 30.028249238847422 ], [ -95.733815108869564, 30.028244239068059 ], [ -95.733935108049138, 30.028211238904237 ], [ -95.734169108733283, 30.028117239350994 ], [ -95.734377108136613, 30.028007238702564 ], [ -95.73449110877128, 30.027936239365744 ], [ -95.734630108204868, 30.027826239180314 ], [ -95.735312108969666, 30.027501239066972 ], [ -95.735400108992579, 30.027485238598455 ], [ -95.735552109090023, 30.027490239263589 ], [ -95.735691109228128, 30.02754023874645 ], [ -95.735773108815437, 30.027595238585437 ], [ -95.736121109160521, 30.028007239444829 ], [ -95.736285108722498, 30.028133239023582 ], [ -95.736424109556637, 30.028232239248812 ], [ -95.736544109280032, 30.028287239175203 ], [ -95.736791108742025, 30.028380239435378 ], [ -95.736898109287779, 30.028402239117295 ], [ -95.736974108952225, 30.028391239376344 ], [ -95.737030109255414, 30.028336238746583 ], [ -95.737220109462314, 30.02803423905895 ], [ -95.737422108935363, 30.02785823859946 ], [ -95.737548109420558, 30.02777523867649 ], [ -95.737675109890617, 30.027720238772737 ], [ -95.737952109526617, 30.027654239042285 ], [ -95.738072109086275, 30.027649239068243 ], [ -95.738167109567812, 30.027632238899319 ], [ -95.738312109116606, 30.027627239114153 ], [ -95.73854010945152, 30.027643238952262 ], [ -95.738647109642727, 30.027709238879563 ], [ -95.738736109853917, 30.027797239011115 ], [ -95.738780109663736, 30.027879239062564 ], [ -95.738875109899908, 30.028006239354557 ], [ -95.739204110172523, 30.028528239066375 ], [ -95.739210109915888, 30.028616238973992 ], [ -95.739179110318787, 30.028736239088722 ], [ -95.739059110340264, 30.028945239483996 ], [ -95.738894110290445, 30.02913223931483 ], [ -95.738907109909832, 30.029242238884311 ], [ -95.738958110276897, 30.029270239500111 ], [ -95.73919110953311, 30.029358239410485 ], [ -95.739918109707077, 30.029698239029685 ], [ -95.740000109943423, 30.029742239153215 ], [ -95.740063110527785, 30.029792239303482 ], [ -95.74029711041851, 30.029813238854633 ], [ -95.740354109966461, 30.029808239094265 ], [ -95.740405109818383, 30.02978023966056 ], [ -95.740436109920324, 30.029747238923534 ], [ -95.740493110070631, 30.029621239513965 ], [ -95.740537109969267, 30.029423238832777 ], [ -95.740846110243353, 30.028862238615325 ], [ -95.740903110036299, 30.028829239351932 ], [ -95.740992110378372, 30.02880723888082 ], [ -95.741251110887333, 30.028780238840021 ], [ -95.741472110688846, 30.028785239211363 ], [ -95.741592110160028, 30.028779238799419 ], [ -95.741749110318821, 30.028799238647537 ], [ -95.74184411085551, 30.028812238717801 ], [ -95.74235611102408, 30.028906238994018 ], [ -95.74256411111142, 30.028927238760843 ], [ -95.742653110747057, 30.028971239082249 ], [ -95.742836110542285, 30.029142239468499 ], [ -95.742925110779296, 30.029263239412902 ], [ -95.743058110949548, 30.029488239023678 ], [ -95.743165111397019, 30.02958123900234 ], [ -95.743266111144976, 30.029603238812626 ], [ -95.744005110935873, 30.02965223920782 ], [ -95.744858110933947, 30.029850238829187 ], [ -95.745174111903026, 30.029888239388377 ], [ -95.745326111458326, 30.029905239391375 ], [ -95.745477111865426, 30.029888239400922 ], [ -95.74559111203169, 30.029850238960272 ], [ -95.745648111887562, 30.029811238785776 ], [ -95.745692111712515, 30.029767238848788 ], [ -95.745723111227207, 30.029685239139702 ], [ -95.745736111562536, 30.029586238969749 ], [ -95.745679111052596, 30.029382239360867 ], [ -95.745635111338714, 30.029300239058024 ], [ -95.745622111729801, 30.029234239144216 ], [ -95.745830111428901, 30.02828323888351 ], [ -95.745887111359636, 30.028145238514607 ], [ -95.745899111816712, 30.028085238310265 ], [ -95.745956111642712, 30.02799723839393 ], [ -95.746032111329356, 30.027964238652824 ], [ -95.746101111677689, 30.027904238850098 ], [ -95.746114112053704, 30.02788223837452 ], [ -95.746284111373001, 30.027865238248662 ], [ -95.746360112017641, 30.027887238703407 ], [ -95.746462111843627, 30.028162238329646 ], [ -95.746506112205623, 30.028217239123688 ], [ -95.746569111671761, 30.028266238904429 ], [ -95.746721111357928, 30.028326238959004 ], [ -95.74716911154978, 30.028321238895462 ], [ -95.747314112039916, 30.028337238774931 ], [ -95.74780111210174, 30.028326238626477 ], [ -95.747869112561929, 30.028320238463138 ], [ -95.748009111934792, 30.028309239112428 ], [ -95.748173111654154, 30.028271239061283 ], [ -95.748458112137769, 30.028161238451887 ], [ -95.748868112216783, 30.028045238543605 ], [ -95.748957112132345, 30.028034238859867 ], [ -95.749152112478171, 30.028039238349695 ], [ -95.749241112610932, 30.02805023878992 ], [ -95.749367112520957, 30.028105238700167 ], [ -95.749468112019514, 30.028122238507155 ], [ -95.74953811260896, 30.028089238792333 ], [ -95.749740112234534, 30.027929238857958 ], [ -95.750005112188049, 30.02775923839706 ], [ -95.75108811241185, 30.027335238195484 ], [ -95.751392112654756, 30.027275238250169 ], [ -95.75154911267029, 30.027242238046661 ], [ -95.751802113146979, 30.027303238215961 ], [ -95.75231411364885, 30.027545238002265 ], [ -95.752787113116852, 30.027842238431159 ], [ -95.752964112871936, 30.027886238516629 ], [ -95.753179113859758, 30.027848238363671 ], [ -95.753558113468827, 30.027738238553713 ], [ -95.75407611371557, 30.027540238070028 ], [ -95.754588113637155, 30.027095238425488 ], [ -95.754740113673989, 30.026991238489828 ], [ -95.755011113973822, 30.026914238006079 ], [ -95.755264113663117, 30.026908238014858 ], [ -95.756199114355297, 30.027178237908775 ], [ -95.756357114269605, 30.027206238284609 ], [ -95.756470113972057, 30.027189238295001 ], [ -95.756527114022532, 30.027134238579499 ], [ -95.756565114489405, 30.027019237689906 ], [ -95.756616114519872, 30.026953237817473 ], [ -95.756736113931098, 30.026865238021347 ], [ -95.756944114466776, 30.026827238029512 ], [ -95.757178114574216, 30.026920237828286 ], [ -95.757456114193289, 30.027052238356188 ], [ -95.7575311142175, 30.027047237965633 ], [ -95.757588114636292, 30.027014238092494 ], [ -95.757835114302253, 30.026706237939209 ], [ -95.758259115093836, 30.02593723772496 ], [ -95.758707115192152, 30.025525238149232 ], [ -95.75947211462892, 30.025162238034781 ], [ -95.759592114806324, 30.025085237252014 ], [ -95.759585114411507, 30.025014237411551 ], [ -95.759548115032061, 30.024865237402953 ], [ -95.759466115192723, 30.024750237723516 ], [ -95.759384115076472, 30.024668237946813 ], [ -95.759358114485764, 30.024552237763654 ], [ -95.759434114583968, 30.024382237156189 ], [ -95.759567114486231, 30.024206237740767 ], [ -95.759757114493055, 30.024118237615856 ], [ -95.759990115200452, 30.024096237117327 ], [ -95.760489115174209, 30.024107237467643 ], [ -95.760919115108109, 30.024096237436527 ], [ -95.761184115303962, 30.024042237361279 ], [ -95.76136111516557, 30.023954237510377 ], [ -95.761513115121929, 30.023948237206127 ], [ -95.761689115879477, 30.02397623751234 ], [ -95.762239115262531, 30.024218237297578 ], [ -95.762510115646378, 30.024317237606191 ], [ -95.762801115761732, 30.024289237342522 ], [ -95.763167115990726, 30.024218237683755 ], [ -95.763464115455463, 30.024053237395695 ], [ -95.763610115648078, 30.023938236862055 ], [ -95.763711116345377, 30.023889237005505 ], [ -95.763837115492862, 30.023878237002467 ], [ -95.764216116484647, 30.023922237452886 ], [ -95.764507115699459, 30.024059236801516 ], [ -95.764664115944129, 30.024175236948892 ], [ -95.764746116682346, 30.024351236990629 ], [ -95.764822116031525, 30.024818237277248 ], [ -95.764898116401142, 30.025005237666551 ], [ -95.765081116806172, 30.025142237188412 ], [ -95.765245116328501, 30.025236237860835 ], [ -95.765302115977505, 30.025318237637318 ], [ -95.765305116895291, 30.025354237505862 ], [ -95.765333115919987, 30.02567023782591 ], [ -95.765327116895307, 30.025791237775145 ], [ -95.764859116317652, 30.026319237591728 ], [ -95.764790116160825, 30.0264502374053 ], [ -95.764796116068325, 30.026626237557061 ], [ -95.764821116221057, 30.026736237803085 ], [ -95.76492811612421, 30.026863238043834 ], [ -95.765219116314299, 30.027055237432997 ], [ -95.765560116461614, 30.027363237660367 ], [ -95.765648116463979, 30.027497238155636 ], [ -95.765705117083485, 30.027583237555596 ], [ -95.765749116181524, 30.027973237663126 ], [ -95.765736116265742, 30.028259238063061 ], [ -95.765641116601643, 30.028578238302853 ], [ -95.76554711646429, 30.028754238104653 ], [ -95.765565116371334, 30.029029238604274 ], [ -95.765654116633996, 30.029441238063491 ], [ -95.766020116473456, 30.029980238103327 ], [ -95.766209117269128, 30.030513238287671 ], [ -95.766266116409099, 30.030733238380048 ], [ -95.766373117231524, 30.030821238419357 ], [ -95.766588116775608, 30.030870238355718 ], [ -95.766860117374918, 30.030887238699101 ], [ -95.767194117538381, 30.030953238513437 ], [ -95.767346117329026, 30.031041238254183 ], [ -95.767611117561273, 30.031211238748597 ], [ -95.768944117455206, 30.032514238663602 ], [ -95.769442117608264, 30.032817238561133 ], [ -95.769638117527251, 30.032894238704593 ], [ -95.77001711781854, 30.033097238947562 ], [ -95.77013111785827, 30.033092239312321 ], [ -95.770308117750659, 30.033026238762314 ], [ -95.770428117655086, 30.032779238766885 ], [ -95.770586118390483, 30.032284238857887 ], [ -95.770757118462058, 30.032042238460633 ], [ -95.771205118057921, 30.031801238970345 ], [ -95.771338117826119, 30.031795238249455 ], [ -95.771622118421035, 30.031900238964528 ], [ -95.771868118170445, 30.032169238423606 ], [ -95.772588118400407, 30.033175238622253 ], [ -95.772651119146403, 30.033247238485963 ], [ -95.773296118883948, 30.033719239332566 ], [ -95.773434119118122, 30.033890239365697 ], [ -95.773517118867545, 30.034038238898926 ], [ -95.773548119147492, 30.034214238817892 ], [ -95.773592119194205, 30.03435723883765 ], [ -95.773693118892211, 30.034489238670066 ], [ -95.773769119446925, 30.034539239468362 ], [ -95.774098118562407, 30.034610239478923 ], [ -95.774224119050061, 30.034594238723358 ], [ -95.774704119212302, 30.034616239303773 ], [ -95.77492511942971, 30.03488523899119 ], [ -95.775083119372525, 30.035023239102877 ], [ -95.775298119140999, 30.035188239514572 ], [ -95.775474119187706, 30.03530323870833 ], [ -95.775620119532704, 30.035380239385667 ], [ -95.77571411938554, 30.035413239234998 ], [ -95.775784119769199, 30.035424238870259 ], [ -95.775860119423683, 30.035419239490135 ], [ -95.775973119476049, 30.035380239159192 ], [ -95.776068119894902, 30.035336239374448 ], [ -95.776131119138256, 30.035265238981314 ], [ -95.776378119789257, 30.035556239051626 ], [ -95.776542120086987, 30.035787238916726 ], [ -95.776656119792435, 30.035968239532483 ], [ -95.776839119710857, 30.036320239027742 ], [ -95.776996119727499, 30.036700239010699 ], [ -95.777053119795468, 30.036903239453817 ], [ -95.77706211947239, 30.037079239414641 ], [ -95.778446120001888, 30.037063239713593 ], [ -95.780423121106523, 30.03703323975579 ], [ -95.78054712080727, 30.03703223958809 ], [ -95.781152120946174, 30.037026239714436 ], [ -95.781325120745592, 30.03701923951526 ], [ -95.781572120646416, 30.037010239000413 ], [ -95.781548121259064, 30.035185239305605 ], [ -95.781539121368453, 30.034895238534617 ], [ -95.781515121410251, 30.033682238392377 ], [ -95.781504120904813, 30.032923238295712 ], [ -95.781433120751132, 30.028202237555686 ], [ -95.781432120356811, 30.027926237622058 ], [ -95.781438120481837, 30.027856237568145 ], [ -95.781451120396497, 30.027798237802426 ], [ -95.781493120487085, 30.027720237544365 ], [ -95.781532121010756, 30.027680237211609 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1377, "Tract": "48201554302", "Area_SqMi": 2.2876525281323414, "total_2009": 288, "total_2010": 338, "total_2011": 339, "total_2012": 366, "total_2013": 429, "total_2014": 442, "total_2015": 528, "total_2016": 580, "total_2017": 568, "total_2018": 594, "total_2019": 550, "total_2020": 555, "age1": 129, "age2": 300, "age3": 104, "earn1": 107, "earn2": 209, "earn3": 217, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 0, "naics_s06": 20, "naics_s07": 83, "naics_s08": 3, "naics_s09": 0, "naics_s10": 9, "naics_s11": 21, "naics_s12": 43, "naics_s13": 0, "naics_s14": 173, "naics_s15": 5, "naics_s16": 60, "naics_s17": 0, "naics_s18": 66, "naics_s19": 16, "naics_s20": 0, "race1": 381, "race2": 78, "race3": 10, "race4": 57, "race5": 2, "race6": 5, "ethnicity1": 405, "ethnicity2": 128, "edu1": 82, "edu2": 103, "edu3": 122, "edu4": 97, "Shape_Length": 41834.659836435276, "Shape_Area": 63775837.127897136, "total_2021": 472, "total_2022": 533 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.630475079894453, 29.977457232248131 ], [ -95.629894079255351, 29.977264232137109 ], [ -95.629604079225146, 29.977231232748696 ], [ -95.629257079840613, 29.977209232845684 ], [ -95.629048079292843, 29.977242232246795 ], [ -95.628808079428396, 29.977330232259433 ], [ -95.628745079539641, 29.977363232698117 ], [ -95.628518079502399, 29.97729723233088 ], [ -95.628391078924366, 29.977236232301269 ], [ -95.628183079583877, 29.976868232018926 ], [ -95.628019078695317, 29.976395231919064 ], [ -95.628051079091662, 29.976115232688745 ], [ -95.628140079242385, 29.976016232390581 ], [ -95.628392078764421, 29.975857231943838 ], [ -95.628626079473662, 29.975692232139703 ], [ -95.628676079409985, 29.975560231890267 ], [ -95.628651078822614, 29.975439231738889 ], [ -95.628588079519304, 29.975324231744917 ], [ -95.628273079588084, 29.97497223220574 ], [ -95.627459078472654, 29.974196232022081 ], [ -95.626398078478445, 29.973245231770683 ], [ -95.62610207875224, 29.973047231634389 ], [ -95.625950078873544, 29.972986231833818 ], [ -95.625855078192728, 29.972970231778312 ], [ -95.625635078305066, 29.972975232133482 ], [ -95.625376078569289, 29.973019231326987 ], [ -95.625011078189388, 29.973113231493205 ], [ -95.624581077930259, 29.97318523182911 ], [ -95.624297077745226, 29.973174232012042 ], [ -95.624076077908512, 29.97317423165353 ], [ -95.623874077845073, 29.973191231535502 ], [ -95.623754077391439, 29.973169232226269 ], [ -95.623647077469798, 29.973114232197446 ], [ -95.62300907795229, 29.972625231399242 ], [ -95.62284407720179, 29.972455231589581 ], [ -95.622769077885749, 29.972317231280645 ], [ -95.622667077089929, 29.971861231235561 ], [ -95.622541077941364, 29.971124231805764 ], [ -95.622370077345053, 29.970448231592314 ], [ -95.622350077568356, 29.970234231532928 ], [ -95.622394077481928, 29.969899230845297 ], [ -95.622451077741516, 29.969772230910937 ], [ -95.622552076989976, 29.969624231456688 ], [ -95.622596077262145, 29.9695852315444 ], [ -95.622615077598212, 29.969541230903744 ], [ -95.622628077101268, 29.969470231209662 ], [ -95.622621077749443, 29.96914023125321 ], [ -95.622596077447255, 29.968871231284478 ], [ -95.622495077821696, 29.968744231254391 ], [ -95.622381077219885, 29.968640230513095 ], [ -95.622053077296002, 29.968393231298091 ], [ -95.621585076584807, 29.968118230983247 ], [ -95.621421077074103, 29.968030230894971 ], [ -95.621326076855652, 29.967992230543896 ], [ -95.621099076866528, 29.967942230722148 ], [ -95.620960076772448, 29.967937231211202 ], [ -95.620872076553155, 29.967915231083328 ], [ -95.620770076398657, 29.967838230996538 ], [ -95.620644076331104, 29.967712231214346 ], [ -95.620360076206737, 29.967398231173075 ], [ -95.620044076964376, 29.967030230507937 ], [ -95.619785076446789, 29.966816230951338 ], [ -95.61968407637282, 29.966651230286999 ], [ -95.619652076520808, 29.96645923022896 ], [ -95.619671076549224, 29.966354230145932 ], [ -95.619665076562413, 29.96627223039668 ], [ -95.61958207636107, 29.966135230381642 ], [ -95.61953207624974, 29.965755230655638 ], [ -95.619670076718776, 29.965475230638923 ], [ -95.619935076135889, 29.965084230275888 ], [ -95.620320076404894, 29.964617230521455 ], [ -95.620446076899938, 29.96449622972748 ], [ -95.620503076289566, 29.964419229900027 ], [ -95.62037107633823, 29.964392230150299 ], [ -95.620181076457627, 29.964238230052882 ], [ -95.619859076752419, 29.964024230315996 ], [ -95.619663076495385, 29.96381523033368 ], [ -95.619366075854003, 29.963430230349822 ], [ -95.619164076152458, 29.96319423029027 ], [ -95.619006076315088, 29.963067229728953 ], [ -95.618842075770232, 29.962952229823198 ], [ -95.618602076042933, 29.96288622973708 ], [ -95.618337075670027, 29.962853229578744 ], [ -95.61805907597217, 29.962864230331412 ], [ -95.617800076245743, 29.962931229584356 ], [ -95.617516075699839, 29.962942229696516 ], [ -95.617434075818636, 29.962920230283927 ], [ -95.617339075479791, 29.962865230022089 ], [ -95.617289076231984, 29.962766230346737 ], [ -95.617251075444088, 29.962519230032107 ], [ -95.617307075392588, 29.962183229713119 ], [ -95.617301075977124, 29.96198523004405 ], [ -95.617250075506519, 29.961787229369108 ], [ -95.617117075853059, 29.961491229578709 ], [ -95.616858075934033, 29.96109022986699 ], [ -95.616587075987511, 29.960644229134164 ], [ -95.616271075496755, 29.960249229688678 ], [ -95.616106075494983, 29.960067229687468 ], [ -95.616050075413412, 29.959952229321328 ], [ -95.616018075666489, 29.959782229279746 ], [ -95.615891074989449, 29.959562229709192 ], [ -95.615784074946589, 29.959419229125377 ], [ -95.615696075377087, 29.959375229209208 ], [ -95.615531074668056, 29.959331228836355 ], [ -95.61514007508957, 29.959348229029445 ], [ -95.614723074811465, 29.959436229014724 ], [ -95.614206075095723, 29.959573229361428 ], [ -95.613682074767866, 29.959750229286669 ], [ -95.613442074429074, 29.959909229051025 ], [ -95.613373074845057, 29.960014229300427 ], [ -95.613322074556422, 29.96024422963125 ], [ -95.613316074824297, 29.96053622958453 ], [ -95.613285074655167, 29.960822229643458 ], [ -95.61318407468427, 29.960948229248334 ], [ -95.61289407415056, 29.961267229769245 ], [ -95.612698074102667, 29.961504229416086 ], [ -95.612673074309811, 29.961641230061893 ], [ -95.612680074651436, 29.96202623023996 ], [ -95.612673074645087, 29.962119229667479 ], [ -95.612553074270423, 29.962251229806984 ], [ -95.612314074505178, 29.962422229739719 ], [ -95.612219074139972, 29.962444229826207 ], [ -95.612086074204029, 29.962427230254089 ], [ -95.611897074667226, 29.962340229793362 ], [ -95.611707073870861, 29.962191229940935 ], [ -95.611512074062276, 29.962081230254842 ], [ -95.611310073667028, 29.961982229921535 ], [ -95.611082073936686, 29.961955229576795 ], [ -95.610887074370638, 29.961972230029129 ], [ -95.610781073795479, 29.96199023022157 ], [ -95.61073507427497, 29.961999230094712 ], [ -95.610514074245017, 29.96213122969893 ], [ -95.610382074025736, 29.962461229698103 ], [ -95.610129073934814, 29.962774230434217 ], [ -95.609246074241582, 29.963512229970114 ], [ -95.609000073935448, 29.963655230659658 ], [ -95.608583074053072, 29.963836230149091 ], [ -95.608160073919152, 29.964095230752971 ], [ -95.607883073208939, 29.964287230342695 ], [ -95.607700073571976, 29.964463230892768 ], [ -95.607605073553628, 29.964612230652826 ], [ -95.607536073050369, 29.964804230523448 ], [ -95.607517073748781, 29.965161230404799 ], [ -95.6074920731524, 29.965299231024765 ], [ -95.607385073616243, 29.965502230493652 ], [ -95.607031073623361, 29.965871231341207 ], [ -95.60697707360255, 29.965933230639564 ], [ -95.60682307331885, 29.966113230915475 ], [ -95.606684072725585, 29.966377230749227 ], [ -95.606571073398911, 29.966690230988366 ], [ -95.606318073394419, 29.966992231554197 ], [ -95.606053072653467, 29.96721223100565 ], [ -95.605624072538575, 29.96758623168812 ], [ -95.605441072930944, 29.967806231394437 ], [ -95.605334072510828, 29.967993231444311 ], [ -95.605284072626048, 29.968202231671878 ], [ -95.605202073334837, 29.968477231696195 ], [ -95.605120072864395, 29.968587231368627 ], [ -95.604558073289169, 29.968912231335676 ], [ -95.604438072792433, 29.969044231602233 ], [ -95.604362073071343, 29.96917623156736 ], [ -95.604324072710483, 29.969384231560813 ], [ -95.604255072938756, 29.969560231933873 ], [ -95.6041600724473, 29.969703231766619 ], [ -95.604078072881975, 29.969736232226481 ], [ -95.603453072792618, 29.969764231522475 ], [ -95.603226072413818, 29.969841232153865 ], [ -95.603094072563579, 29.969940231829259 ], [ -95.60296707260801, 29.970078231730636 ], [ -95.602904072098724, 29.970259231717943 ], [ -95.602911072363213, 29.970358232059244 ], [ -95.603094072185712, 29.970561231694582 ], [ -95.603264072614806, 29.970715232065547 ], [ -95.603448073075256, 29.970902231644573 ], [ -95.603618072351026, 29.971100231841447 ], [ -95.603669072172636, 29.971210232388188 ], [ -95.603688072335771, 29.971325232424991 ], [ -95.603650073025918, 29.971419232538629 ], [ -95.603252072187829, 29.97189123185397 ], [ -95.602994072247711, 29.972073232618808 ], [ -95.6023750723175, 29.972403232352608 ], [ -95.602242072526252, 29.972535232113945 ], [ -95.602066071985504, 29.972673232347073 ], [ -95.601788072348754, 29.972794232107564 ], [ -95.601412072425163, 29.972914232242221 ], [ -95.601062071722993, 29.973025232986981 ], [ -95.600879071905396, 29.973146232770429 ], [ -95.600456071426066, 29.97338823272981 ], [ -95.600235071620048, 29.973481232812784 ], [ -95.600077072190842, 29.973492233142153 ], [ -95.59978007160106, 29.973426232512349 ], [ -95.599522071501113, 29.973355233056406 ], [ -95.599200071764756, 29.973328232807102 ], [ -95.59897207195894, 29.973388233129658 ], [ -95.598663071725312, 29.973581232318278 ], [ -95.598391071153898, 29.973751233222966 ], [ -95.597956071283861, 29.973933232979483 ], [ -95.597823071736286, 29.973916233219228 ], [ -95.597602070753226, 29.97355423296187 ], [ -95.597495071568972, 29.973400232361303 ], [ -95.597293071255777, 29.973251232659965 ], [ -95.597072070754351, 29.973130233047769 ], [ -95.596990071349879, 29.973098232778714 ], [ -95.596459070520595, 29.972927232246224 ], [ -95.596219071007823, 29.972872232665082 ], [ -95.596124070387035, 29.972801232392946 ], [ -95.596023070652734, 29.972680232830086 ], [ -95.595916070700596, 29.972510233051665 ], [ -95.595834070597562, 29.972449232968348 ], [ -95.595739070743932, 29.97241623265182 ], [ -95.595644070426943, 29.972427232670796 ], [ -95.595550070352701, 29.97248823240324 ], [ -95.595398071084134, 29.972631232551983 ], [ -95.595373070693, 29.97272423238925 ], [ -95.595367070411967, 29.972823233049734 ], [ -95.595424071069147, 29.972966232944561 ], [ -95.595398070772632, 29.973076233205315 ], [ -95.594951070728854, 29.974390233363877 ], [ -95.594749070804411, 29.974709232819851 ], [ -95.594275070263933, 29.974896232994443 ], [ -95.594181070582437, 29.974901232862909 ], [ -95.594073070763642, 29.974891232756974 ], [ -95.59389007031173, 29.974627233494797 ], [ -95.593631070388483, 29.974346233536455 ], [ -95.593246070314606, 29.973907233254842 ], [ -95.592841070227919, 29.973572232866864 ], [ -95.592545070297405, 29.973401232911943 ], [ -95.592267069662441, 29.973319233239099 ], [ -95.59211506950588, 29.973330232950673 ], [ -95.591907069977438, 29.973429232819175 ], [ -95.591812069289844, 29.973544233326802 ], [ -95.591793069663524, 29.973654232839134 ], [ -95.592002070227167, 29.974187233516187 ], [ -95.591989069568342, 29.974325233584182 ], [ -95.591895070124622, 29.974418233606894 ], [ -95.591674070098932, 29.974528232970943 ], [ -95.591503070117881, 29.974572232776811 ], [ -95.591396069445096, 29.974561233267483 ], [ -95.591308069240156, 29.974496233260098 ], [ -95.591225069310681, 29.974364233526753 ], [ -95.591206069110655, 29.974193233409721 ], [ -95.591162069875594, 29.973979232789326 ], [ -95.590884069030039, 29.973589233457947 ], [ -95.590410069284374, 29.973110232936726 ], [ -95.59016406913031, 29.972946232789575 ], [ -95.590082069658166, 29.972940232661934 ], [ -95.589949069632283, 29.972957233302818 ], [ -95.589918069054647, 29.97296823255958 ], [ -95.589779069344488, 29.973056232721088 ], [ -95.589703069619446, 29.973199233232705 ], [ -95.589665068792414, 29.973495233214798 ], [ -95.589564069507773, 29.973616233480286 ], [ -95.589413069301713, 29.973682232887874 ], [ -95.58875006923212, 29.973721233123126 ], [ -95.588681068805982, 29.973749233085247 ], [ -95.588618069262637, 29.973842233147131 ], [ -95.588554068965024, 29.974018232910087 ], [ -95.588169068460118, 29.974441233564157 ], [ -95.588018068455241, 29.974656233373537 ], [ -95.587993068696662, 29.974777233744302 ], [ -95.588056069151264, 29.97503023299835 ], [ -95.588258069253214, 29.975348233904711 ], [ -95.588511068631604, 29.975546233867625 ], [ -95.588694068651904, 29.975794233868339 ], [ -95.588707069286116, 29.975832233129239 ], [ -95.588719068937976, 29.975942233525512 ], [ -95.588694069468744, 29.976079233551459 ], [ -95.588700068589503, 29.976211233812521 ], [ -95.588795068919964, 29.97648623374317 ], [ -95.588820068777579, 29.976673233602465 ], [ -95.588808068622285, 29.97684323356529 ], [ -95.588726069365961, 29.977124234123352 ], [ -95.588612068609407, 29.977305233716976 ], [ -95.588423068638207, 29.977476233881482 ], [ -95.58838506930438, 29.977546233684247 ], [ -95.589066068689974, 29.977875234361704 ], [ -95.589887069875317, 29.978285233721977 ], [ -95.590965070239051, 29.978803234007387 ], [ -95.59124206980006, 29.978925234172419 ], [ -95.591383069355132, 29.978981234157107 ], [ -95.591800070083806, 29.979120234484867 ], [ -95.592252069759283, 29.979241233848839 ], [ -95.592528070656584, 29.979304234045301 ], [ -95.592770070366527, 29.979347234212902 ], [ -95.593007070037743, 29.979380234071119 ], [ -95.593302070565215, 29.979408234411451 ], [ -95.593380070685328, 29.979410233753551 ], [ -95.59353407035664, 29.97942723427024 ], [ -95.593559070857197, 29.979427233910595 ], [ -95.593611070618039, 29.979427234234276 ], [ -95.593775070673388, 29.979440234397096 ], [ -95.593943070080911, 29.979447234536277 ], [ -95.594259071108112, 29.979474233742962 ], [ -95.594533070856372, 29.979511234255032 ], [ -95.59461907029818, 29.979517233657081 ], [ -95.594716070481937, 29.979541234453752 ], [ -95.594841070500721, 29.979565233912311 ], [ -95.595134071167507, 29.979634233876773 ], [ -95.595474070571512, 29.979731234038606 ], [ -95.595645071221853, 29.979790233727783 ], [ -95.595980071506304, 29.979914233851424 ], [ -95.596172071201792, 29.979990233963399 ], [ -95.596336070804028, 29.980060234307381 ], [ -95.596768070901675, 29.980260234229441 ], [ -95.596856070902589, 29.980290233880186 ], [ -95.59701007165873, 29.980358234464621 ], [ -95.597101071064543, 29.980388234136964 ], [ -95.597341071612689, 29.980498233937993 ], [ -95.597843071809734, 29.980717234400991 ], [ -95.597936071293603, 29.980765234090875 ], [ -95.599009072068583, 29.981227234518048 ], [ -95.599127071511234, 29.981270234522906 ], [ -95.599805071685807, 29.981566234698995 ], [ -95.599847072332963, 29.981583234383127 ], [ -95.600271072698249, 29.981768234487131 ], [ -95.600492072719007, 29.981838234713411 ], [ -95.601037071970197, 29.982102234697145 ], [ -95.60114107238131, 29.982148234259345 ], [ -95.601242072424114, 29.982204234776649 ], [ -95.601449072209064, 29.982296234329304 ], [ -95.601566073007035, 29.982331234625935 ], [ -95.601888072231802, 29.982449234250428 ], [ -95.602206072988409, 29.982539234115727 ], [ -95.602525072997864, 29.982612234603053 ], [ -95.602729072573581, 29.982651234341347 ], [ -95.603043073113398, 29.982687234366093 ], [ -95.603242073120114, 29.982703234458366 ], [ -95.603549073409113, 29.98270923421402 ], [ -95.604317073307456, 29.982702234043359 ], [ -95.604624073566555, 29.982708234047795 ], [ -95.605050073782792, 29.982704233989423 ], [ -95.605154073922463, 29.982706234725271 ], [ -95.605325073579834, 29.982693234452086 ], [ -95.605556073646383, 29.982700234657152 ], [ -95.60574907410431, 29.982699234221336 ], [ -95.605852073797664, 29.982707234546673 ], [ -95.605930073641474, 29.982701234454701 ], [ -95.606235073951694, 29.982701234243329 ], [ -95.606352074284729, 29.98270723412632 ], [ -95.606579073690611, 29.982707234203176 ], [ -95.606691073662518, 29.982701234421768 ], [ -95.606817074015638, 29.982707234754599 ], [ -95.606942073936764, 29.982700234658424 ], [ -95.607309074414317, 29.982703234335609 ], [ -95.607531073972709, 29.982700234591828 ], [ -95.608120074239167, 29.982705233870259 ], [ -95.608226074536205, 29.982698234696734 ], [ -95.609188074395263, 29.982701234231268 ], [ -95.609295075077569, 29.982694234202068 ], [ -95.609431074633434, 29.982687234221697 ], [ -95.609442074219899, 29.982697234158472 ], [ -95.609891075241109, 29.983071234018627 ], [ -95.610010074529015, 29.983176234664505 ], [ -95.610091075329663, 29.983230234349278 ], [ -95.610318074956496, 29.983432234441022 ], [ -95.610408074920542, 29.983496234734176 ], [ -95.610471074692299, 29.9835772344437 ], [ -95.610558075160696, 29.983644234808164 ], [ -95.610647075477104, 29.983721234358718 ], [ -95.610732075364709, 29.983804234110092 ], [ -95.611099075001761, 29.984115234633219 ], [ -95.611162075557132, 29.984197234921954 ], [ -95.611356075597612, 29.984323234514797 ], [ -95.611402075662738, 29.984360234364527 ], [ -95.611823075505953, 29.984724234394928 ], [ -95.611919075198088, 29.984807234636865 ], [ -95.612082075268233, 29.984947234786357 ], [ -95.613178075627076, 29.985892235113898 ], [ -95.613737075505369, 29.98634623464314 ], [ -95.613983075858783, 29.986547234969414 ], [ -95.614580076342264, 29.98705823497879 ], [ -95.614886076348824, 29.987320235321619 ], [ -95.615677075986653, 29.9880002354849 ], [ -95.615724076294839, 29.98790123550949 ], [ -95.615750076773708, 29.987850235309104 ], [ -95.616097076571492, 29.987530235420639 ], [ -95.616273076959544, 29.987377235102947 ], [ -95.616393076158118, 29.987291234843951 ], [ -95.616519076769407, 29.987226235353866 ], [ -95.616644076733863, 29.987177235223754 ], [ -95.6166980769584, 29.987162235093169 ], [ -95.616826076815627, 29.987136235002207 ], [ -95.616940076743916, 29.987128234497174 ], [ -95.617058076817429, 29.987133234721956 ], [ -95.617182077209321, 29.987149234558832 ], [ -95.617424076561704, 29.987209234911436 ], [ -95.617825077459443, 29.987333234630633 ], [ -95.618088076743362, 29.987415235014048 ], [ -95.618325077400186, 29.987483235253098 ], [ -95.618409076799594, 29.987498234903541 ], [ -95.618471076880908, 29.987504234613915 ], [ -95.618580077080338, 29.987507235202884 ], [ -95.618666077401087, 29.987502235046872 ], [ -95.618753077455125, 29.987491234619149 ], [ -95.618842076758156, 29.987472234673572 ], [ -95.61893007698302, 29.987443234601017 ], [ -95.619016077595418, 29.987404234488228 ], [ -95.619102077487852, 29.987355235016508 ], [ -95.619187077182374, 29.987297234512333 ], [ -95.619261076892187, 29.987226234809349 ], [ -95.619370077794329, 29.987176234681105 ], [ -95.619454077329451, 29.987100234670123 ], [ -95.619662077341602, 29.986950234960236 ], [ -95.619741077828294, 29.986852234894791 ], [ -95.619830077980751, 29.98675423463726 ], [ -95.619941077153712, 29.986667234908587 ], [ -95.620154077167797, 29.986477234975837 ], [ -95.620249077756625, 29.986370234550229 ], [ -95.62047307789453, 29.986178234714465 ], [ -95.620601078050385, 29.986091234433768 ], [ -95.620712077202668, 29.985990234718294 ], [ -95.620818078007417, 29.985882234474886 ], [ -95.620943077345686, 29.985781234824952 ], [ -95.621047077761474, 29.985672234599846 ], [ -95.621163077592612, 29.985562234703359 ], [ -95.621520077678639, 29.985243234506857 ], [ -95.621646077981282, 29.985149234259172 ], [ -95.621770078249881, 29.985046233959583 ], [ -95.621876077662805, 29.984959234167462 ], [ -95.621981077601092, 29.984860234197075 ], [ -95.622096077851879, 29.984773234082219 ], [ -95.622145077907163, 29.984734234648663 ], [ -95.622634078200178, 29.984339233959776 ], [ -95.622748077794725, 29.984259234444114 ], [ -95.622906078550045, 29.984128233752166 ], [ -95.623426077940735, 29.983670234124027 ], [ -95.624850078886567, 29.982410234018495 ], [ -95.625343078901423, 29.981975233183999 ], [ -95.625403079048468, 29.981928233561376 ], [ -95.62554907847958, 29.981789233179772 ], [ -95.625960079224498, 29.981424233470449 ], [ -95.62608207875968, 29.981316233072281 ], [ -95.626309078686575, 29.981130233313948 ], [ -95.626566079201353, 29.980900233179835 ], [ -95.626755078903017, 29.980733233430968 ], [ -95.626858078917664, 29.980629233554897 ], [ -95.62717107879422, 29.980354233547498 ], [ -95.627976078736964, 29.979648232708971 ], [ -95.628390078875483, 29.979286232503508 ], [ -95.62858907956452, 29.979114233011749 ], [ -95.628693078907673, 29.979017232613071 ], [ -95.629238079123837, 29.978555232895708 ], [ -95.629478079551902, 29.978334232215573 ], [ -95.629721079790272, 29.978124232604618 ], [ -95.629786079971467, 29.978081232978035 ], [ -95.629840079942838, 29.978025232294662 ], [ -95.630475079894453, 29.977457232248131 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1378, "Tract": "48201554502", "Area_SqMi": 1.7924596032302296, "total_2009": 466, "total_2010": 442, "total_2011": 498, "total_2012": 614, "total_2013": 624, "total_2014": 559, "total_2015": 557, "total_2016": 437, "total_2017": 480, "total_2018": 562, "total_2019": 365, "total_2020": 330, "age1": 119, "age2": 192, "age3": 92, "earn1": 125, "earn2": 102, "earn3": 176, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 35, "naics_s05": 1, "naics_s06": 17, "naics_s07": 24, "naics_s08": 1, "naics_s09": 0, "naics_s10": 18, "naics_s11": 10, "naics_s12": 48, "naics_s13": 0, "naics_s14": 51, "naics_s15": 57, "naics_s16": 25, "naics_s17": 2, "naics_s18": 52, "naics_s19": 62, "naics_s20": 0, "race1": 319, "race2": 45, "race3": 1, "race4": 30, "race5": 3, "race6": 5, "ethnicity1": 313, "ethnicity2": 90, "edu1": 40, "edu2": 88, "edu3": 78, "edu4": 78, "Shape_Length": 35122.126200284256, "Shape_Area": 49970705.912787572, "total_2021": 350, "total_2022": 403 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.653754086737337, 29.988586234191782 ], [ -95.653792086388833, 29.988510234291994 ], [ -95.653228086581052, 29.988309234011478 ], [ -95.653133085893998, 29.988287233879188 ], [ -95.652868086005228, 29.988282233971606 ], [ -95.652616085485704, 29.988331234068262 ], [ -95.652413085506723, 29.988419234271159 ], [ -95.65132108513528, 29.989298234382876 ], [ -95.650298084908101, 29.990156234326033 ], [ -95.650102085833197, 29.990271234515255 ], [ -95.649792085375154, 29.990315234087969 ], [ -95.649571084960627, 29.99027123461288 ], [ -95.649054084656569, 29.990089234308805 ], [ -95.648668084512451, 29.99001223462492 ], [ -95.647431085076448, 29.990006234209446 ], [ -95.64686208419073, 29.990083234406359 ], [ -95.646401084349606, 29.990265234166682 ], [ -95.646079083929536, 29.990369234935255 ], [ -95.645789084120736, 29.990374234230863 ], [ -95.645435084605921, 29.990341234256057 ], [ -95.644924083656633, 29.990242234209127 ], [ -95.644684083587805, 29.990154234381432 ], [ -95.644475083649439, 29.990061234147795 ], [ -95.644393084254659, 29.990072234442614 ], [ -95.644261084214421, 29.990127234192482 ], [ -95.644109084182517, 29.990209234432253 ], [ -95.643844083765813, 29.990319234435823 ], [ -95.643110083801488, 29.990449234621291 ], [ -95.643099083530529, 29.990451234991014 ], [ -95.643004084034857, 29.990462234450931 ], [ -95.64285208322319, 29.990462235001438 ], [ -95.642606083327749, 29.990440234799095 ], [ -95.642480083794339, 29.990412234701736 ], [ -95.642435083783994, 29.990368234736483 ], [ -95.642398082951104, 29.990308235063729 ], [ -95.642385083268593, 29.990236235033656 ], [ -95.642353083080565, 29.990187235032952 ], [ -95.641962083151824, 29.989906234664563 ], [ -95.641848082948513, 29.989807234323536 ], [ -95.641804083144066, 29.989747234562845 ], [ -95.641817082905305, 29.989538234762488 ], [ -95.64184208330316, 29.989395234380499 ], [ -95.641817083527854, 29.989246234697966 ], [ -95.641198082769634, 29.988823234132798 ], [ -95.641072082774343, 29.988708234200473 ], [ -95.641060083262644, 29.988592234041029 ], [ -95.641173082536838, 29.988224234672614 ], [ -95.641262082669485, 29.987641234155031 ], [ -95.641388082642308, 29.987047234377251 ], [ -95.641464082754268, 29.986437233899537 ], [ -95.641433083210188, 29.98611323403318 ], [ -95.641471083131691, 29.985899233626203 ], [ -95.641616082803694, 29.985794233374513 ], [ -95.642001083423608, 29.985651234048479 ], [ -95.642210083298366, 29.985492233256949 ], [ -95.642406083391847, 29.985272233934431 ], [ -95.642463082810693, 29.985179233368441 ], [ -95.642355082915046, 29.98506323401763 ], [ -95.642134083601348, 29.984898233720632 ], [ -95.641427082590468, 29.984403233917494 ], [ -95.640625083158071, 29.98404623331264 ], [ -95.640316082454603, 29.984051233366355 ], [ -95.640152082893749, 29.984029233395688 ], [ -95.640007082968992, 29.983963233153698 ], [ -95.639672082823694, 29.983699233357111 ], [ -95.639489082755674, 29.983595233355345 ], [ -95.639205082113875, 29.983512233160166 ], [ -95.638971082398143, 29.983457233164756 ], [ -95.638037081671399, 29.983237233022372 ], [ -95.637664081856954, 29.983083233367744 ], [ -95.637557081638917, 29.983055233746889 ], [ -95.637443082045948, 29.983039233178172 ], [ -95.637166081619142, 29.983033233590273 ], [ -95.637052081722189, 29.98302223366262 ], [ -95.636945081663058, 29.982978233294663 ], [ -95.63685008215829, 29.982912233350714 ], [ -95.636673081933708, 29.982566233087329 ], [ -95.636415081726426, 29.982253233373736 ], [ -95.6363200814382, 29.982181232894078 ], [ -95.636225081341905, 29.982126233530863 ], [ -95.636093081669557, 29.982082233556138 ], [ -95.635916081292038, 29.98204423362834 ], [ -95.635745081056612, 29.982043232757334 ], [ -95.635297081348568, 29.982109233014718 ], [ -95.635171081377948, 29.982098233167868 ], [ -95.634975081139359, 29.982043233124578 ], [ -95.634830081590053, 29.981955233048431 ], [ -95.634722080610644, 29.981834233332933 ], [ -95.634659081309039, 29.981796233514718 ], [ -95.634224080987508, 29.981675233216219 ], [ -95.634078080587543, 29.981592233465147 ], [ -95.633870081293622, 29.981394232709171 ], [ -95.63377608086725, 29.981262232696295 ], [ -95.633706081146627, 29.98092123303806 ], [ -95.633549080757874, 29.980421232936877 ], [ -95.633391080373372, 29.980097233188488 ], [ -95.633321080780973, 29.97998723280017 ], [ -95.633221080931378, 29.979888233208925 ], [ -95.633139080333308, 29.9798492327843 ], [ -95.632955080819116, 29.97983323243664 ], [ -95.632545080904052, 29.979624232388819 ], [ -95.631933080132868, 29.979431232404103 ], [ -95.631731080306281, 29.979393232494935 ], [ -95.631598079863195, 29.979381233205249 ], [ -95.631453079994785, 29.979387232789147 ], [ -95.631143080023321, 29.979453232615462 ], [ -95.631036080142422, 29.979453232671414 ], [ -95.630941080147338, 29.979398232996612 ], [ -95.630910080265139, 29.979354232485871 ], [ -95.630897080293906, 29.979304233042512 ], [ -95.630891079857506, 29.979084232690909 ], [ -95.630910080392951, 29.97898523273777 ], [ -95.63098607954359, 29.978881232938598 ], [ -95.631030079785447, 29.978738232905819 ], [ -95.631074079920865, 29.978474232349114 ], [ -95.63114408029162, 29.977985232533623 ], [ -95.631145079819902, 29.97794723250659 ], [ -95.63103007959387, 29.977789232751093 ], [ -95.630694080011196, 29.977576232663807 ], [ -95.630475079894453, 29.977457232248131 ], [ -95.629840079942838, 29.978025232294662 ], [ -95.629786079971467, 29.978081232978035 ], [ -95.629721079790272, 29.978124232604618 ], [ -95.629478079551902, 29.978334232215573 ], [ -95.629238079123837, 29.978555232895708 ], [ -95.628693078907673, 29.979017232613071 ], [ -95.62858907956452, 29.979114233011749 ], [ -95.628390078875483, 29.979286232503508 ], [ -95.627976078736964, 29.979648232708971 ], [ -95.62717107879422, 29.980354233547498 ], [ -95.626858078917664, 29.980629233554897 ], [ -95.626755078903017, 29.980733233430968 ], [ -95.626566079201353, 29.980900233179835 ], [ -95.626309078686575, 29.981130233313948 ], [ -95.62608207875968, 29.981316233072281 ], [ -95.625960079224498, 29.981424233470449 ], [ -95.62554907847958, 29.981789233179772 ], [ -95.625403079048468, 29.981928233561376 ], [ -95.625343078901423, 29.981975233183999 ], [ -95.624850078886567, 29.982410234018495 ], [ -95.623426077940735, 29.983670234124027 ], [ -95.622906078550045, 29.984128233752166 ], [ -95.622748077794725, 29.984259234444114 ], [ -95.622634078200178, 29.984339233959776 ], [ -95.622145077907163, 29.984734234648663 ], [ -95.622096077851879, 29.984773234082219 ], [ -95.621981077601092, 29.984860234197075 ], [ -95.621876077662805, 29.984959234167462 ], [ -95.621770078249881, 29.985046233959583 ], [ -95.621646077981282, 29.985149234259172 ], [ -95.621520077678639, 29.985243234506857 ], [ -95.621163077592612, 29.985562234703359 ], [ -95.621047077761474, 29.985672234599846 ], [ -95.620943077345686, 29.985781234824952 ], [ -95.620818078007417, 29.985882234474886 ], [ -95.620712077202668, 29.985990234718294 ], [ -95.620601078050385, 29.986091234433768 ], [ -95.62047307789453, 29.986178234714465 ], [ -95.620249077756625, 29.986370234550229 ], [ -95.620154077167797, 29.986477234975837 ], [ -95.619941077153712, 29.986667234908587 ], [ -95.619830077980751, 29.98675423463726 ], [ -95.619741077828294, 29.986852234894791 ], [ -95.619662077341602, 29.986950234960236 ], [ -95.619454077329451, 29.987100234670123 ], [ -95.619370077794329, 29.987176234681105 ], [ -95.619261076892187, 29.987226234809349 ], [ -95.619187077182374, 29.987297234512333 ], [ -95.619102077487852, 29.987355235016508 ], [ -95.619016077595418, 29.987404234488228 ], [ -95.61893007698302, 29.987443234601017 ], [ -95.618842076758156, 29.987472234673572 ], [ -95.618753077455125, 29.987491234619149 ], [ -95.618666077401087, 29.987502235046872 ], [ -95.618580077080338, 29.987507235202884 ], [ -95.618471076880908, 29.987504234613915 ], [ -95.618409076799594, 29.987498234903541 ], [ -95.618325077400186, 29.987483235253098 ], [ -95.618088076743362, 29.987415235014048 ], [ -95.617825077459443, 29.987333234630633 ], [ -95.617424076561704, 29.987209234911436 ], [ -95.617182077209321, 29.987149234558832 ], [ -95.617058076817429, 29.987133234721956 ], [ -95.616940076743916, 29.987128234497174 ], [ -95.616826076815627, 29.987136235002207 ], [ -95.6166980769584, 29.987162235093169 ], [ -95.616644076733863, 29.987177235223754 ], [ -95.616519076769407, 29.987226235353866 ], [ -95.616393076158118, 29.987291234843951 ], [ -95.616273076959544, 29.987377235102947 ], [ -95.616097076571492, 29.987530235420639 ], [ -95.615750076773708, 29.987850235309104 ], [ -95.615724076294839, 29.98790123550949 ], [ -95.615677075986653, 29.9880002354849 ], [ -95.616355076963075, 29.988575234811115 ], [ -95.617568077166595, 29.989621235662963 ], [ -95.617677076831839, 29.989714234966453 ], [ -95.617996077215963, 29.989985235624111 ], [ -95.618125076803437, 29.990100235813447 ], [ -95.618576077663192, 29.990485235648634 ], [ -95.618695077055136, 29.990582235866981 ], [ -95.618809077656493, 29.990690235782367 ], [ -95.61902707773028, 29.990870235617141 ], [ -95.619844077695731, 29.991577235781154 ], [ -95.620356078059046, 29.992008236072706 ], [ -95.620445078214885, 29.992090235836759 ], [ -95.620762077658298, 29.992358235791542 ], [ -95.62088007848962, 29.992461235957116 ], [ -95.620974078338577, 29.992532235481974 ], [ -95.621052078466562, 29.992614236057808 ], [ -95.621236078319626, 29.992772235507598 ], [ -95.621350078440074, 29.992843236043225 ], [ -95.621524078442476, 29.99301823561192 ], [ -95.621625078743662, 29.993105235892795 ], [ -95.621860078386646, 29.993306236247179 ], [ -95.621905078361834, 29.993345235946784 ], [ -95.622003078783536, 29.99342123610646 ], [ -95.622646078730057, 29.99398523643746 ], [ -95.623204078309158, 29.994467236075529 ], [ -95.623361078471902, 29.994608236530492 ], [ -95.623475079029774, 29.994700236362831 ], [ -95.624305079079917, 29.995428236162301 ], [ -95.624577078999494, 29.995648236377299 ], [ -95.625108079603706, 29.996076236755918 ], [ -95.62517507975619, 29.996132236815402 ], [ -95.625249079765368, 29.996177236552985 ], [ -95.625431079219894, 29.996358236662012 ], [ -95.625750079447982, 29.996606236761139 ], [ -95.625859079398907, 29.996702236091377 ], [ -95.626189079534811, 29.996970236380204 ], [ -95.627118079872702, 29.997765236268709 ], [ -95.627589079888679, 29.998172237146676 ], [ -95.628955080541687, 29.999323237250287 ], [ -95.630026080252279, 30.000218237513543 ], [ -95.630148081186206, 30.000307236920737 ], [ -95.631242080764508, 30.001214236983074 ], [ -95.632279081160817, 30.002073237412059 ], [ -95.632621081933792, 30.002358237270482 ], [ -95.632683081792678, 30.002403237759129 ], [ -95.632736081434572, 30.002452237381217 ], [ -95.634048082281495, 30.003543237542207 ], [ -95.634220081739088, 30.003676237970613 ], [ -95.634298081915617, 30.003727237883414 ], [ -95.634523081816866, 30.003840238000866 ], [ -95.63461608192803, 30.003873237895114 ], [ -95.634645081905376, 30.003886237998458 ], [ -95.635188082398031, 30.004121237714163 ], [ -95.635343082239018, 30.004184237975469 ], [ -95.635404082688211, 30.004203238029184 ], [ -95.635521082383576, 30.004258237493904 ], [ -95.63560508233472, 30.004291237800643 ], [ -95.63602308254076, 30.003918237846662 ], [ -95.636310082128318, 30.003665237299682 ], [ -95.636439082591593, 30.003546237990829 ], [ -95.636646082647218, 30.003374237949718 ], [ -95.636700082057814, 30.003312237404892 ], [ -95.637445082269593, 30.002660237743392 ], [ -95.637510082368806, 30.002595236946512 ], [ -95.637728083159914, 30.002412237070789 ], [ -95.637868082962086, 30.002276237205447 ], [ -95.638489083050075, 30.001730237532747 ], [ -95.638774082488382, 30.001471236781423 ], [ -95.639173082985153, 30.001122236696656 ], [ -95.63938608329974, 30.000930237157231 ], [ -95.640227083328725, 30.000176236837842 ], [ -95.640719082938503, 29.999749236264297 ], [ -95.640782083121294, 29.999685236258152 ], [ -95.641163083504011, 29.999349236145395 ], [ -95.641185083378687, 29.99933023643122 ], [ -95.641242083605391, 29.999267236917916 ], [ -95.641321083744913, 29.999209236063908 ], [ -95.642759084353159, 29.997940236122165 ], [ -95.642838083379559, 29.997854235910332 ], [ -95.642946084040091, 29.997778235827965 ], [ -95.643921083999729, 29.996934235972493 ], [ -95.643946084318245, 29.996888235616218 ], [ -95.643967084022918, 29.996861235662184 ], [ -95.64405308371893, 29.996818235878248 ], [ -95.644795084475774, 29.996170236050794 ], [ -95.644925084287934, 29.996045235618983 ], [ -95.645038084799509, 29.995947235824307 ], [ -95.645134084248298, 29.995867235676574 ], [ -95.645196084721988, 29.995817235882978 ], [ -95.6457280840051, 29.995345235798887 ], [ -95.646150084786356, 29.994970235393023 ], [ -95.646220084735688, 29.994879235021354 ], [ -95.64630208457136, 29.9948222358145 ], [ -95.646326085130909, 29.994805235609235 ], [ -95.646755084910325, 29.994437235775571 ], [ -95.646890084831853, 29.994316235601271 ], [ -95.647140084832955, 29.994096234937491 ], [ -95.647183084401334, 29.994035235477398 ], [ -95.647304085253182, 29.993925234844163 ], [ -95.647878085282414, 29.993433234873059 ], [ -95.648056085348301, 29.993285235107319 ], [ -95.648164085161127, 29.993208235408161 ], [ -95.648261085281661, 29.993124235443521 ], [ -95.648366085257294, 29.993043234697392 ], [ -95.648560084995438, 29.992868235236102 ], [ -95.648649085567229, 29.992777234787571 ], [ -95.648724084784305, 29.992679235057558 ], [ -95.648931085659157, 29.99251023460053 ], [ -95.649019084695226, 29.992426235166491 ], [ -95.649219085346544, 29.992267234821725 ], [ -95.649434084953128, 29.992119234797986 ], [ -95.649543085074455, 29.992050234678587 ], [ -95.649656085391626, 29.99198623502242 ], [ -95.649772085679729, 29.991928234346876 ], [ -95.649891085120103, 29.991877234438483 ], [ -95.64998008508006, 29.991843234572869 ], [ -95.650014085569865, 29.991830234976327 ], [ -95.650282085698564, 29.991748234834819 ], [ -95.650751085783327, 29.991630234240823 ], [ -95.652483085793548, 29.9912342341444 ], [ -95.652729085695469, 29.991194234530266 ], [ -95.652939086045919, 29.991144234414154 ], [ -95.65299108608454, 29.991127234016194 ], [ -95.653149086160425, 29.991094234870729 ], [ -95.653247086597233, 29.991055234175708 ], [ -95.653273086262033, 29.991035234707855 ], [ -95.653298086464275, 29.990994234505767 ], [ -95.653255086072946, 29.990564233968126 ], [ -95.653239086584676, 29.990496234486013 ], [ -95.653251086649604, 29.99043623418855 ], [ -95.653252085795728, 29.990368234071507 ], [ -95.65324308635995, 29.99029123382897 ], [ -95.653256086298796, 29.990134234048885 ], [ -95.653274086052534, 29.99005923417689 ], [ -95.653330086582812, 29.989702234388822 ], [ -95.653381086350109, 29.989496234164122 ], [ -95.65345508578676, 29.989274233705689 ], [ -95.653552086155315, 29.989034233890614 ], [ -95.653754086737337, 29.988586234191782 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1379, "Tract": "48201554301", "Area_SqMi": 2.1465338126349591, "total_2009": 1168, "total_2010": 5855, "total_2011": 6702, "total_2012": 7233, "total_2013": 6805, "total_2014": 6801, "total_2015": 6880, "total_2016": 6762, "total_2017": 7035, "total_2018": 6051, "total_2019": 5755, "total_2020": 6109, "age1": 765, "age2": 3565, "age3": 1651, "earn1": 289, "earn2": 657, "earn3": 5035, "naics_s01": 0, "naics_s02": 19, "naics_s03": 44, "naics_s04": 80, "naics_s05": 2921, "naics_s06": 1048, "naics_s07": 71, "naics_s08": 16, "naics_s09": 12, "naics_s10": 55, "naics_s11": 575, "naics_s12": 306, "naics_s13": 110, "naics_s14": 147, "naics_s15": 60, "naics_s16": 227, "naics_s17": 3, "naics_s18": 168, "naics_s19": 119, "naics_s20": 0, "race1": 4294, "race2": 629, "race3": 26, "race4": 920, "race5": 10, "race6": 102, "ethnicity1": 4796, "ethnicity2": 1185, "edu1": 629, "edu2": 926, "edu3": 1369, "edu4": 2292, "Shape_Length": 37919.797761336202, "Shape_Area": 59841688.866925538, "total_2021": 5509, "total_2022": 5981 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.615516076014472, 29.988141235535501 ], [ -95.615677075986653, 29.9880002354849 ], [ -95.614886076348824, 29.987320235321619 ], [ -95.614580076342264, 29.98705823497879 ], [ -95.613983075858783, 29.986547234969414 ], [ -95.613737075505369, 29.98634623464314 ], [ -95.613178075627076, 29.985892235113898 ], [ -95.612082075268233, 29.984947234786357 ], [ -95.611919075198088, 29.984807234636865 ], [ -95.611823075505953, 29.984724234394928 ], [ -95.611402075662738, 29.984360234364527 ], [ -95.611356075597612, 29.984323234514797 ], [ -95.611162075557132, 29.984197234921954 ], [ -95.611099075001761, 29.984115234633219 ], [ -95.610732075364709, 29.983804234110092 ], [ -95.610647075477104, 29.983721234358718 ], [ -95.610558075160696, 29.983644234808164 ], [ -95.610471074692299, 29.9835772344437 ], [ -95.610408074920542, 29.983496234734176 ], [ -95.610318074956496, 29.983432234441022 ], [ -95.610091075329663, 29.983230234349278 ], [ -95.610010074529015, 29.983176234664505 ], [ -95.609891075241109, 29.983071234018627 ], [ -95.609442074219899, 29.982697234158472 ], [ -95.609431074633434, 29.982687234221697 ], [ -95.609295075077569, 29.982694234202068 ], [ -95.609188074395263, 29.982701234231268 ], [ -95.608226074536205, 29.982698234696734 ], [ -95.608120074239167, 29.982705233870259 ], [ -95.607531073972709, 29.982700234591828 ], [ -95.607309074414317, 29.982703234335609 ], [ -95.606942073936764, 29.982700234658424 ], [ -95.606817074015638, 29.982707234754599 ], [ -95.606691073662518, 29.982701234421768 ], [ -95.606579073690611, 29.982707234203176 ], [ -95.606352074284729, 29.98270723412632 ], [ -95.606235073951694, 29.982701234243329 ], [ -95.605930073641474, 29.982701234454701 ], [ -95.605852073797664, 29.982707234546673 ], [ -95.60574907410431, 29.982699234221336 ], [ -95.605556073646383, 29.982700234657152 ], [ -95.605325073579834, 29.982693234452086 ], [ -95.605154073922463, 29.982706234725271 ], [ -95.605050073782792, 29.982704233989423 ], [ -95.604624073566555, 29.982708234047795 ], [ -95.604317073307456, 29.982702234043359 ], [ -95.603549073409113, 29.98270923421402 ], [ -95.603242073120114, 29.982703234458366 ], [ -95.603043073113398, 29.982687234366093 ], [ -95.602729072573581, 29.982651234341347 ], [ -95.602525072997864, 29.982612234603053 ], [ -95.602206072988409, 29.982539234115727 ], [ -95.601888072231802, 29.982449234250428 ], [ -95.601566073007035, 29.982331234625935 ], [ -95.601449072209064, 29.982296234329304 ], [ -95.601242072424114, 29.982204234776649 ], [ -95.60114107238131, 29.982148234259345 ], [ -95.601037071970197, 29.982102234697145 ], [ -95.600492072719007, 29.981838234713411 ], [ -95.600271072698249, 29.981768234487131 ], [ -95.599847072332963, 29.981583234383127 ], [ -95.599805071685807, 29.981566234698995 ], [ -95.599127071511234, 29.981270234522906 ], [ -95.599009072068583, 29.981227234518048 ], [ -95.597936071293603, 29.980765234090875 ], [ -95.597843071809734, 29.980717234400991 ], [ -95.597341071612689, 29.980498233937993 ], [ -95.597101071064543, 29.980388234136964 ], [ -95.59701007165873, 29.980358234464621 ], [ -95.596856070902589, 29.980290233880186 ], [ -95.596768070901675, 29.980260234229441 ], [ -95.596336070804028, 29.980060234307381 ], [ -95.596172071201792, 29.979990233963399 ], [ -95.595980071506304, 29.979914233851424 ], [ -95.595645071221853, 29.979790233727783 ], [ -95.595474070571512, 29.979731234038606 ], [ -95.595134071167507, 29.979634233876773 ], [ -95.594841070500721, 29.979565233912311 ], [ -95.594716070481937, 29.979541234453752 ], [ -95.59461907029818, 29.979517233657081 ], [ -95.594533070856372, 29.979511234255032 ], [ -95.594259071108112, 29.979474233742962 ], [ -95.593943070080911, 29.979447234536277 ], [ -95.593775070673388, 29.979440234397096 ], [ -95.593611070618039, 29.979427234234276 ], [ -95.593559070857197, 29.979427233910595 ], [ -95.59353407035664, 29.97942723427024 ], [ -95.593380070685328, 29.979410233753551 ], [ -95.593302070565215, 29.979408234411451 ], [ -95.593007070037743, 29.979380234071119 ], [ -95.592770070366527, 29.979347234212902 ], [ -95.592528070656584, 29.979304234045301 ], [ -95.592252069759283, 29.979241233848839 ], [ -95.591800070083806, 29.979120234484867 ], [ -95.591383069355132, 29.978981234157107 ], [ -95.59124206980006, 29.978925234172419 ], [ -95.590965070239051, 29.978803234007387 ], [ -95.589887069875317, 29.978285233721977 ], [ -95.589066068689974, 29.977875234361704 ], [ -95.58838506930438, 29.977546233684247 ], [ -95.588164068494123, 29.977949234378642 ], [ -95.588057068815345, 29.97852023435615 ], [ -95.58802606869682, 29.978773234086198 ], [ -95.587994069062916, 29.978900234450478 ], [ -95.587906069012675, 29.979048234156235 ], [ -95.587773068962235, 29.979169234092172 ], [ -95.587230069301214, 29.979312234457439 ], [ -95.587028068799768, 29.97942823463714 ], [ -95.586782069027905, 29.979626234266497 ], [ -95.586498068570179, 29.979955234497073 ], [ -95.58641606891166, 29.98004923434091 ], [ -95.586296069014367, 29.980214234253289 ], [ -95.586271069095517, 29.980346234477704 ], [ -95.586290068122082, 29.980472234653966 ], [ -95.586378069120059, 29.98061523466567 ], [ -95.586498069083731, 29.980764234904814 ], [ -95.586650068710313, 29.980906234917811 ], [ -95.586776068672464, 29.98102723492336 ], [ -95.586915068900822, 29.981214234966519 ], [ -95.586985068942212, 29.981440234326126 ], [ -95.587029068377703, 29.981670234563421 ], [ -95.587023068635872, 29.981819234414676 ], [ -95.586985068533849, 29.982044234617536 ], [ -95.58675806903878, 29.982407235305381 ], [ -95.586480068373504, 29.982737235357611 ], [ -95.586424068604188, 29.982790235058893 ], [ -95.586310068966625, 29.982896235000073 ], [ -95.586006068212072, 29.983182235334855 ], [ -95.585546068527833, 29.983540235131859 ], [ -95.585356068699738, 29.983650235458725 ], [ -95.585085068072885, 29.983771234994933 ], [ -95.584946068088783, 29.983831234911769 ], [ -95.584472067863189, 29.984084234931341 ], [ -95.584643068110893, 29.984238234974413 ], [ -95.584744068065049, 29.984392235483561 ], [ -95.584750068790768, 29.984513235384171 ], [ -95.584719068001903, 29.984689235482971 ], [ -95.584706068862744, 29.984859235573317 ], [ -95.584757068367594, 29.985294236049143 ], [ -95.584839068437532, 29.98555823560104 ], [ -95.584946069027481, 29.985706235731744 ], [ -95.585047068890745, 29.985799235983329 ], [ -95.585224068485687, 29.98592023599582 ], [ -95.585243068871293, 29.985975235944721 ], [ -95.585243068089525, 29.986041235956922 ], [ -95.585161068733257, 29.986190235623305 ], [ -95.585092068545947, 29.986311235547678 ], [ -95.585073068350979, 29.986344236227406 ], [ -95.585009068118637, 29.986394235812909 ], [ -95.584990068438259, 29.986409235994476 ], [ -95.584471067969062, 29.986359235986619 ], [ -95.584291068164532, 29.986449235896188 ], [ -95.584135068769726, 29.986863235857268 ], [ -95.584155068236797, 29.987080236075091 ], [ -95.584113068397116, 29.987280235737451 ], [ -95.584019067941142, 29.987398236397144 ], [ -95.583569067908584, 29.987418236250047 ], [ -95.583409068345944, 29.987336236256652 ], [ -95.58336806793109, 29.987262236361438 ], [ -95.583350068338063, 29.987248235677988 ], [ -95.58328606829555, 29.987196236135535 ], [ -95.582851068387512, 29.986369235701833 ], [ -95.582837067910958, 29.986355235602094 ], [ -95.582826068127162, 29.986330235721312 ], [ -95.582561068448499, 29.986311235513767 ], [ -95.581768067766475, 29.987010236442583 ], [ -95.581641067623991, 29.986963235752953 ], [ -95.581042067947578, 29.986756236123473 ], [ -95.580958067448378, 29.986769236288485 ], [ -95.580630067631688, 29.98683523568004 ], [ -95.580519067312423, 29.987106236100612 ], [ -95.580413067815684, 29.987365236140505 ], [ -95.580253067491782, 29.987524236484308 ], [ -95.579995066933421, 29.987780235945408 ], [ -95.579935067764481, 29.987829236649898 ], [ -95.579736067217667, 29.987986236030572 ], [ -95.579554066912479, 29.988094236152413 ], [ -95.579447066955638, 29.98809423596137 ], [ -95.579307067505425, 29.98804823600053 ], [ -95.579174067420524, 29.987981236659838 ], [ -95.579013067148395, 29.987941235979942 ], [ -95.578847066946821, 29.987945236269816 ], [ -95.578687066693519, 29.987961236105477 ], [ -95.578467066930472, 29.987921236391401 ], [ -95.578300066495046, 29.987868235952888 ], [ -95.578100067198079, 29.987781236566274 ], [ -95.577952067268853, 29.987708236324597 ], [ -95.577766067079949, 29.987701236215894 ], [ -95.577579066659652, 29.987661236475581 ], [ -95.577366066783839, 29.987581236127941 ], [ -95.577152066189711, 29.987454236528624 ], [ -95.577012066246141, 29.987267236272967 ], [ -95.576884066345713, 29.98700823630551 ], [ -95.576799066942257, 29.986902236494117 ], [ -95.576638066099548, 29.986751235891372 ], [ -95.576525066820409, 29.986522236057002 ], [ -95.576502065998284, 29.986478236016715 ], [ -95.576365066288602, 29.986342236244685 ], [ -95.575910066319551, 29.986203236081497 ], [ -95.575734065715679, 29.98614723653133 ], [ -95.575683066116284, 29.986131236341535 ], [ -95.575667065768698, 29.986130236316352 ], [ -95.575497065935323, 29.986086236374057 ], [ -95.575218065600339, 29.98609423641372 ], [ -95.575115065674623, 29.986098236461324 ], [ -95.574957065958841, 29.986054235870043 ], [ -95.574829065972281, 29.985951235708757 ], [ -95.574612066374812, 29.985778236066643 ], [ -95.574399065668644, 29.985613236297077 ], [ -95.574321065692274, 29.985575235778654 ], [ -95.574208066265967, 29.985519236351525 ], [ -95.574183065427917, 29.98552523603173 ], [ -95.573872065257063, 29.985603235970075 ], [ -95.573708066101815, 29.985648236102488 ], [ -95.573647065164579, 29.985666236449635 ], [ -95.573492065780798, 29.985646236468174 ], [ -95.573382065737945, 29.985557236024235 ], [ -95.573231065298486, 29.985303235729241 ], [ -95.573178065323418, 29.985262235996938 ], [ -95.573050065012822, 29.985161235900023 ], [ -95.572963065190251, 29.985172235702354 ], [ -95.572709065447981, 29.985206235625419 ], [ -95.572607065550642, 29.985252236194743 ], [ -95.572493064946585, 29.985279235800093 ], [ -95.572216065149462, 29.985279236135391 ], [ -95.571856065101557, 29.985247236443371 ], [ -95.571780065520997, 29.985231235622877 ], [ -95.571114064600124, 29.985111236088819 ], [ -95.570846064703645, 29.985177236205423 ], [ -95.570771064925822, 29.985215235875948 ], [ -95.570674064577418, 29.98529323640896 ], [ -95.57063006453366, 29.985329235934305 ], [ -95.570476065096486, 29.985454236405019 ], [ -95.570411065286621, 29.985507236282967 ], [ -95.57032806519031, 29.98557523634787 ], [ -95.570246064960088, 29.985642236592849 ], [ -95.570087065171549, 29.985771236322115 ], [ -95.570401064561764, 29.986248236277067 ], [ -95.570665064980773, 29.986653236279466 ], [ -95.571191065306024, 29.987462236542921 ], [ -95.571568064978422, 29.987991236598472 ], [ -95.571676065326102, 29.988143236235707 ], [ -95.57191406499237, 29.988478237151245 ], [ -95.573429066101653, 29.990574236703868 ], [ -95.573768065533059, 29.991054236910173 ], [ -95.573903065776634, 29.991244237422617 ], [ -95.574501065739909, 29.992087237416634 ], [ -95.574618065845343, 29.992253237627725 ], [ -95.574960065863223, 29.99269123739715 ], [ -95.575025065924223, 29.992769237270039 ], [ -95.575087066823301, 29.992844237264517 ], [ -95.575496066852011, 29.993388237382902 ], [ -95.57587106626525, 29.993811237821255 ], [ -95.576351067093029, 29.994319237946108 ], [ -95.57644406666212, 29.99441823736424 ], [ -95.578327067378652, 29.996429237875638 ], [ -95.578548067848729, 29.996664237968631 ], [ -95.578973067614314, 29.996662237717096 ], [ -95.57909506745527, 29.996661238271052 ], [ -95.57919306724466, 29.996660238525166 ], [ -95.579274067100201, 29.996659238097326 ], [ -95.579471067875232, 29.996658238523047 ], [ -95.579545067609502, 29.996657238376631 ], [ -95.579711067207242, 29.996656237839144 ], [ -95.57976906818466, 29.996656238162366 ], [ -95.579834067696453, 29.996650237803816 ], [ -95.579850067818583, 29.996653238233545 ], [ -95.579917068222642, 29.996655238443267 ], [ -95.579976068183328, 29.996654237913834 ], [ -95.581835068651429, 29.996624238394102 ], [ -95.58365506911278, 29.996611237942119 ], [ -95.583851068291736, 29.996609238039252 ], [ -95.584004069025966, 29.996608238255277 ], [ -95.584369068513183, 29.996607237512581 ], [ -95.584705069117931, 29.99661423782862 ], [ -95.585277069237662, 29.996644237509827 ], [ -95.585501069532711, 29.996651237854646 ], [ -95.585650069525329, 29.996651238311831 ], [ -95.586895069973409, 29.996655238070964 ], [ -95.587120069967611, 29.996656237507469 ], [ -95.587381069977795, 29.996651237681018 ], [ -95.587575069870823, 29.996640238199976 ], [ -95.587718069664589, 29.996627237960048 ], [ -95.587759069245436, 29.996622237843251 ], [ -95.587941069716521, 29.996633237681788 ], [ -95.58824406938902, 29.996633238168354 ], [ -95.588478069536038, 29.996634237395121 ], [ -95.589489070048202, 29.996643237503893 ], [ -95.590061070122431, 29.996644237774486 ], [ -95.590526070799186, 29.996645238166785 ], [ -95.590616070642071, 29.996647237391905 ], [ -95.591431070869717, 29.99663923760837 ], [ -95.592478070773097, 29.996645237859813 ], [ -95.593216071600366, 29.996669237626875 ], [ -95.593347070843862, 29.996669237807147 ], [ -95.593523071638643, 29.996668237389937 ], [ -95.593903070813525, 29.996650237875912 ], [ -95.594223070873852, 29.996636237783608 ], [ -95.594601071790407, 29.996636237471787 ], [ -95.595534071428858, 29.99662823767774 ], [ -95.596497071934749, 29.996625237165677 ], [ -95.596595072131265, 29.996624237378207 ], [ -95.598634072247108, 29.996616237172258 ], [ -95.598953072151673, 29.996617237821908 ], [ -95.599340072697728, 29.996613237162997 ], [ -95.600056072643284, 29.996606237368027 ], [ -95.600524072802088, 29.996598237383523 ], [ -95.600613072627382, 29.996597237030109 ], [ -95.601218073468132, 29.996587237738662 ], [ -95.601465072815259, 29.996586237265923 ], [ -95.60224907393291, 29.996602237341868 ], [ -95.602547073382823, 29.99659823695794 ], [ -95.60290707371486, 29.996594237157261 ], [ -95.603179073968704, 29.996585237493836 ], [ -95.603752074105827, 29.996556237582737 ], [ -95.604048073457705, 29.996550237416983 ], [ -95.604223074183054, 29.996553237497018 ], [ -95.605762074236026, 29.996523237600027 ], [ -95.605808074472051, 29.996495236984313 ], [ -95.605824074668305, 29.996471237400545 ], [ -95.6058390739462, 29.996449236929589 ], [ -95.605877073935204, 29.996394236691319 ], [ -95.605924074411149, 29.996349237521688 ], [ -95.605989073894392, 29.996312237500671 ], [ -95.606065074202064, 29.996278237483843 ], [ -95.606530074872282, 29.996025237276367 ], [ -95.606589074562834, 29.995994237134891 ], [ -95.606713074064231, 29.995927236631989 ], [ -95.606797075028425, 29.995870236622245 ], [ -95.606859074988634, 29.995815236790229 ], [ -95.60695507456991, 29.995745237187002 ], [ -95.607044074698905, 29.995671236629882 ], [ -95.607288074438657, 29.995454236794266 ], [ -95.607646074398843, 29.995137236522716 ], [ -95.608071075001988, 29.99474923636598 ], [ -95.608288074669829, 29.994558236647752 ], [ -95.608391074877176, 29.994461236304275 ], [ -95.60889707541547, 29.994017236224725 ], [ -95.609213075209396, 29.993754236627488 ], [ -95.609311075469435, 29.993661236708078 ], [ -95.609743075477908, 29.993282236757441 ], [ -95.610975075665294, 29.992177236430368 ], [ -95.611750076024819, 29.991484236327807 ], [ -95.612400076251035, 29.990894235609311 ], [ -95.612504075341562, 29.990808235925332 ], [ -95.612708076045593, 29.990626235496613 ], [ -95.613427075594061, 29.989986235253863 ], [ -95.613672076219203, 29.989758235561549 ], [ -95.613806075811311, 29.989646235334742 ], [ -95.614446075999581, 29.989078234983964 ], [ -95.61479407596957, 29.988776235070979 ], [ -95.615316075980388, 29.988325235394559 ], [ -95.61535807611375, 29.988282235185746 ], [ -95.615452076849621, 29.988188234769478 ], [ -95.615516076014472, 29.988141235535501 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1380, "Tract": "48201452801", "Area_SqMi": 0.61809565919675169, "total_2009": 177, "total_2010": 185, "total_2011": 285, "total_2012": 290, "total_2013": 295, "total_2014": 268, "total_2015": 264, "total_2016": 232, "total_2017": 251, "total_2018": 271, "total_2019": 274, "total_2020": 273, "age1": 36, "age2": 117, "age3": 75, "earn1": 107, "earn2": 76, "earn3": 45, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 15, "naics_s05": 24, "naics_s06": 11, "naics_s07": 16, "naics_s08": 3, "naics_s09": 0, "naics_s10": 3, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 135, "naics_s17": 1, "naics_s18": 0, "naics_s19": 17, "naics_s20": 0, "race1": 71, "race2": 108, "race3": 5, "race4": 41, "race5": 0, "race6": 3, "ethnicity1": 191, "ethnicity2": 37, "edu1": 43, "edu2": 46, "edu3": 55, "edu4": 48, "Shape_Length": 17198.665575134582, "Shape_Area": 17231449.097112101, "total_2021": 253, "total_2022": 228 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.614650063183547, 29.702035176867817 ], [ -95.614637063514706, 29.701278176589152 ], [ -95.614635063671784, 29.700862176885412 ], [ -95.614632062833024, 29.700538176201679 ], [ -95.614621063609675, 29.699989176455155 ], [ -95.614620063363134, 29.699830176410188 ], [ -95.614612063177006, 29.698664176514367 ], [ -95.61460206294241, 29.698141175681297 ], [ -95.614595063211837, 29.697413175990292 ], [ -95.614588063488043, 29.696737175503198 ], [ -95.614567062616302, 29.696073176075611 ], [ -95.61455806295254, 29.695419175929143 ], [ -95.614566063181158, 29.694707175763455 ], [ -95.614562062938873, 29.694283175334856 ], [ -95.614560063019454, 29.69407517509487 ], [ -95.614531062709304, 29.693405175378281 ], [ -95.614540063247773, 29.692673175364757 ], [ -95.614543062442124, 29.692596175023521 ], [ -95.614633062747174, 29.692423174755881 ], [ -95.614621062913884, 29.69226417522551 ], [ -95.614620062974282, 29.692242174603223 ], [ -95.614617062789122, 29.692205175015964 ], [ -95.614577063303756, 29.691874174367754 ], [ -95.61451606281716, 29.691427175116861 ], [ -95.61447206322093, 29.691046174212158 ], [ -95.614457062454107, 29.690666174501946 ], [ -95.614427062351112, 29.690129174402877 ], [ -95.614383062585162, 29.689365174194915 ], [ -95.61434306253075, 29.688657173741806 ], [ -95.61433506298566, 29.688513173919194 ], [ -95.613912062551449, 29.688514174244443 ], [ -95.613550062173985, 29.688527173789382 ], [ -95.613284062140366, 29.688548174168631 ], [ -95.612999061888075, 29.688586173714565 ], [ -95.612704062672123, 29.688636173794951 ], [ -95.612556062063518, 29.688656174353174 ], [ -95.612401061928296, 29.688685173784314 ], [ -95.612241061642962, 29.688721174586629 ], [ -95.612082061881864, 29.688748174236625 ], [ -95.611758062379948, 29.688790174165611 ], [ -95.611597062418866, 29.688804174436275 ], [ -95.611282061854496, 29.688824174626404 ], [ -95.610669062092839, 29.688834174629971 ], [ -95.609989061493721, 29.688846174581773 ], [ -95.609835061134618, 29.688841174513779 ], [ -95.609671061296027, 29.688843174612746 ], [ -95.609503061396865, 29.688856174654656 ], [ -95.60844506084571, 29.688868174774115 ], [ -95.60716506064071, 29.688920174159385 ], [ -95.606622060687542, 29.688924174798444 ], [ -95.604264060006457, 29.688947174599381 ], [ -95.604284060504511, 29.690486174660254 ], [ -95.604297060101345, 29.691439175092867 ], [ -95.604298060583162, 29.691514174625727 ], [ -95.604314060171347, 29.692656175559396 ], [ -95.604331060433537, 29.693352175815299 ], [ -95.604354060063272, 29.694060175964811 ], [ -95.604366059879538, 29.694809176037186 ], [ -95.604391060517543, 29.69555717604646 ], [ -95.604390060807717, 29.695836175544688 ], [ -95.604397060807983, 29.695996175937367 ], [ -95.60440106039303, 29.696220175982855 ], [ -95.604413060038155, 29.696939175879265 ], [ -95.60442906032182, 29.697775176351186 ], [ -95.604428061036373, 29.698206176330871 ], [ -95.604437060323988, 29.698648176462168 ], [ -95.604440060787866, 29.699931177106571 ], [ -95.604438061204007, 29.701261176675299 ], [ -95.604441060850547, 29.701613176885207 ], [ -95.604437060273412, 29.701992176751272 ], [ -95.604455060744201, 29.703498177567738 ], [ -95.605435060659929, 29.703481177225349 ], [ -95.605941061343671, 29.703475177580945 ], [ -95.606121060907981, 29.703467177377412 ], [ -95.607575062052192, 29.703454177153883 ], [ -95.608660062165001, 29.703446177367063 ], [ -95.608858061844515, 29.703445176948009 ], [ -95.609487061684959, 29.703435177420733 ], [ -95.609836062689965, 29.703430177080158 ], [ -95.613184062621883, 29.703486176941116 ], [ -95.614644063479503, 29.70351117727698 ], [ -95.614647063547977, 29.703248177093375 ], [ -95.614628063814649, 29.702684176988001 ], [ -95.614635063494774, 29.702466177077333 ], [ -95.614650063183547, 29.702035176867817 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1381, "Tract": "48201555501", "Area_SqMi": 16.518415479593809, "total_2009": 2995, "total_2010": 2067, "total_2011": 2412, "total_2012": 3111, "total_2013": 3351, "total_2014": 3806, "total_2015": 4118, "total_2016": 4179, "total_2017": 4393, "total_2018": 4561, "total_2019": 4946, "total_2020": 4640, "age1": 1666, "age2": 2454, "age3": 1186, "earn1": 1267, "earn2": 1776, "earn3": 2263, "naics_s01": 23, "naics_s02": 60, "naics_s03": 0, "naics_s04": 904, "naics_s05": 348, "naics_s06": 58, "naics_s07": 1468, "naics_s08": 71, "naics_s09": 44, "naics_s10": 143, "naics_s11": 50, "naics_s12": 196, "naics_s13": 169, "naics_s14": 247, "naics_s15": 1, "naics_s16": 253, "naics_s17": 47, "naics_s18": 1031, "naics_s19": 191, "naics_s20": 2, "race1": 4259, "race2": 643, "race3": 39, "race4": 261, "race5": 5, "race6": 99, "ethnicity1": 3673, "ethnicity2": 1633, "edu1": 726, "edu2": 1007, "edu3": 1123, "edu4": 784, "Shape_Length": 100168.39490992909, "Shape_Area": 460505152.02043205, "total_2021": 4991, "total_2022": 5306 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.702342103304289, 30.097312254281135 ], [ -95.70230310405303, 30.097147254129037 ], [ -95.702269103421813, 30.096974254140108 ], [ -95.702277103154543, 30.096797253736195 ], [ -95.702276103820381, 30.096622254543561 ], [ -95.702221103642984, 30.094908254077552 ], [ -95.702199103022323, 30.094394253437812 ], [ -95.702144103318275, 30.092510253699093 ], [ -95.702118103009141, 30.091861252758264 ], [ -95.702114103770455, 30.091843252847596 ], [ -95.702098103396224, 30.091044252917872 ], [ -95.702087103261889, 30.090903253072042 ], [ -95.702071103242218, 30.090458252579019 ], [ -95.702031102751619, 30.089149252701411 ], [ -95.701983102861917, 30.088048251947139 ], [ -95.701983103556941, 30.087912252634961 ], [ -95.701963102922534, 30.087380252424271 ], [ -95.701999102811513, 30.087243252636306 ], [ -95.701932103382703, 30.087003252608842 ], [ -95.70190810293542, 30.086880252413909 ], [ -95.701828102815384, 30.086530252472734 ], [ -95.701646103215978, 30.085788252009309 ], [ -95.701561102625334, 30.085346251579253 ], [ -95.701530103028418, 30.085112251466633 ], [ -95.701409102641009, 30.083882251950197 ], [ -95.701319102905046, 30.082915251078532 ], [ -95.701222102658846, 30.081767251382715 ], [ -95.701216102778403, 30.081602250814978 ], [ -95.700580102772562, 30.081129250952294 ], [ -95.700430102442795, 30.081028250772881 ], [ -95.700308102413075, 30.080960250607198 ], [ -95.700238102191207, 30.080928251067011 ], [ -95.700250102376756, 30.080862250995303 ], [ -95.700256102723884, 30.080338250493401 ], [ -95.700248102782268, 30.080099251062531 ], [ -95.700236102154307, 30.079110250555413 ], [ -95.700214102155911, 30.077824250749355 ], [ -95.700194102623769, 30.077530249903582 ], [ -95.700204101658841, 30.077376250533288 ], [ -95.700194102467577, 30.076909250004089 ], [ -95.700166101558864, 30.075013249999408 ], [ -95.700134101465167, 30.072875249329979 ], [ -95.700117102210015, 30.071028248675439 ], [ -95.700093102150433, 30.068461248371577 ], [ -95.700085101818033, 30.068041248761883 ], [ -95.700078101658434, 30.067911248690812 ], [ -95.700061101861337, 30.067786248459644 ], [ -95.700029101270943, 30.067666248028566 ], [ -95.699978101780133, 30.067552248478513 ], [ -95.699909101375212, 30.067445248085917 ], [ -95.699824101747708, 30.067348248044777 ], [ -95.699724101538948, 30.067263248416776 ], [ -95.699610101184916, 30.067193248374032 ], [ -95.699487101367282, 30.067136247986905 ], [ -95.699355101157465, 30.067095248023371 ], [ -95.699218101729116, 30.067069248367378 ], [ -95.699078101433699, 30.067058248441008 ], [ -95.698510101387981, 30.067064247892812 ], [ -95.698341101480921, 30.067057248696461 ], [ -95.698193101697967, 30.067035248427675 ], [ -95.698131100985634, 30.067024248310776 ], [ -95.698032101111593, 30.066999248530777 ], [ -95.697960101326814, 30.066974248600079 ], [ -95.69788810135401, 30.06694324789764 ], [ -95.697811101211514, 30.066902248254095 ], [ -95.697732100805666, 30.06684724856667 ], [ -95.697640101139797, 30.066770248692858 ], [ -95.697596100715359, 30.066725248402459 ], [ -95.697517101271657, 30.066624248129973 ], [ -95.697484101236199, 30.066566248587989 ], [ -95.697456100521606, 30.066504248336845 ], [ -95.697434100965481, 30.066436248586363 ], [ -95.697407101323478, 30.066291248233128 ], [ -95.697393100469768, 30.066126248328434 ], [ -95.697378100868207, 30.065618248126082 ], [ -95.697360100333924, 30.064090247939895 ], [ -95.69735310130234, 30.063945247888824 ], [ -95.69735710118303, 30.063794247493153 ], [ -95.697353100831776, 30.063528247753162 ], [ -95.6973091003333, 30.061094247481389 ], [ -95.697300100938961, 30.060950246814951 ], [ -95.697299100435657, 30.060483247333686 ], [ -95.697270100089511, 30.058735246724837 ], [ -95.697252100514021, 30.0578972466129 ], [ -95.697201100263726, 30.054378245488611 ], [ -95.697208100072956, 30.054211245568119 ], [ -95.697225099970524, 30.054047245823732 ], [ -95.697346100404033, 30.053514245677555 ], [ -95.697383099965293, 30.053286245193711 ], [ -95.69742610021261, 30.052963245490176 ], [ -95.697451100766571, 30.052784245862288 ], [ -95.69747710035071, 30.052541245210929 ], [ -95.697500100010799, 30.052357245237612 ], [ -95.697527100384121, 30.052148244869038 ], [ -95.691440099070874, 30.050674245484849 ], [ -95.690175098361507, 30.050456245592443 ], [ -95.689562098180332, 30.05035124529369 ], [ -95.688556098020129, 30.050219244883934 ], [ -95.68721009755059, 30.050067244848869 ], [ -95.686489097861198, 30.050010245006245 ], [ -95.684896096770458, 30.049934245585696 ], [ -95.682894096515128, 30.049953245733864 ], [ -95.681549096353223, 30.049974245331679 ], [ -95.679925095682407, 30.049999245398556 ], [ -95.674801094338775, 30.05004824567143 ], [ -95.671856093819628, 30.050082246136544 ], [ -95.66945609327216, 30.050181246087153 ], [ -95.667873093021427, 30.050256245953509 ], [ -95.666653091870401, 30.050310245841928 ], [ -95.665958092000494, 30.050342245762163 ], [ -95.665334092052689, 30.050367245786237 ], [ -95.663618091354465, 30.050431245896092 ], [ -95.662575091457086, 30.050483246390513 ], [ -95.662028091018044, 30.050502246188927 ], [ -95.661739090877177, 30.05051824643941 ], [ -95.659934090502432, 30.050600245901588 ], [ -95.659209090183779, 30.050626246204011 ], [ -95.658783090433772, 30.050645246026285 ], [ -95.658308090291357, 30.05066024640265 ], [ -95.657940089680281, 30.050679246147759 ], [ -95.657548089641409, 30.050703246326123 ], [ -95.657170090134002, 30.050732246064484 ], [ -95.656768090179753, 30.050757246137394 ], [ -95.65622508929188, 30.050800246655974 ], [ -95.655241089743981, 30.050907246095836 ], [ -95.654107089046832, 30.051033246599015 ], [ -95.653119089036323, 30.051139246549909 ], [ -95.651942088279824, 30.05125124668394 ], [ -95.650203088551834, 30.051385246923768 ], [ -95.647282087174119, 30.051689246699343 ], [ -95.646931087631785, 30.051726246858394 ], [ -95.646149087131619, 30.051813247000503 ], [ -95.645736086829615, 30.051859247269377 ], [ -95.644162086236378, 30.051973247320266 ], [ -95.643232086398982, 30.05203024743501 ], [ -95.642113085896739, 30.052068246757173 ], [ -95.636432084265365, 30.052258247713631 ], [ -95.634972084154839, 30.052277247107614 ], [ -95.630059083024307, 30.052087247759893 ], [ -95.62784908264922, 30.051992247942902 ], [ -95.624435081381378, 30.051821248158497 ], [ -95.621192080767187, 30.051708248162814 ], [ -95.620639081076675, 30.051709247751479 ], [ -95.620531080535116, 30.051710247773695 ], [ -95.620492080739595, 30.051710248148179 ], [ -95.618926080077316, 30.051713247976817 ], [ -95.615774079641753, 30.051721247980023 ], [ -95.61556307987928, 30.051721247844881 ], [ -95.615326079440891, 30.051722247807501 ], [ -95.615124079525032, 30.051722248004786 ], [ -95.615098078927261, 30.051722248394917 ], [ -95.61473407894654, 30.0517232481217 ], [ -95.614525079243776, 30.051724247996511 ], [ -95.614486079382885, 30.051724248432151 ], [ -95.614598079196412, 30.051957248568893 ], [ -95.614658079107883, 30.052081247787331 ], [ -95.614763078932299, 30.052314248308548 ], [ -95.61477007937431, 30.052330248589758 ], [ -95.614824078958691, 30.052455248190228 ], [ -95.614857079379846, 30.052531247899189 ], [ -95.614878079599691, 30.052581248685556 ], [ -95.614953078952951, 30.052766248044044 ], [ -95.614981079563094, 30.052835248159436 ], [ -95.615010079757866, 30.052911248145641 ], [ -95.615080079456106, 30.053090248755119 ], [ -95.615159079437575, 30.053308248395641 ], [ -95.61517307890999, 30.053348248831448 ], [ -95.615184079813275, 30.053379248691268 ], [ -95.615262079250044, 30.053608248265103 ], [ -95.615337079432479, 30.053840248936041 ], [ -95.615346079306221, 30.053869248931093 ], [ -95.615356079155418, 30.053900248828935 ], [ -95.61536207939136, 30.053920248227907 ], [ -95.615366079010755, 30.053931248725664 ], [ -95.615397079234242, 30.054031248307822 ], [ -95.615414079885667, 30.054090248389478 ], [ -95.615422079752221, 30.054118248467628 ], [ -95.615426079076514, 30.05413324893799 ], [ -95.615471079643555, 30.05413224860138 ], [ -95.615479079605919, 30.054159248681835 ], [ -95.615494079950579, 30.054206248969123 ], [ -95.61554607917877, 30.054357248200489 ], [ -95.616014079477765, 30.055838248421548 ], [ -95.616395079552007, 30.05692424920824 ], [ -95.616793080270085, 30.057830249485018 ], [ -95.617128080419917, 30.058446249118703 ], [ -95.617690079949455, 30.059315249175228 ], [ -95.618115080312251, 30.059940249638689 ], [ -95.618489080818648, 30.060491249353159 ], [ -95.619093080452743, 30.061303249754111 ], [ -95.619773080792854, 30.062454250217318 ], [ -95.620079081121517, 30.063027249941495 ], [ -95.620289080865192, 30.063450250526202 ], [ -95.620950081753321, 30.064600250353877 ], [ -95.621358081824908, 30.065315250449235 ], [ -95.621756082062674, 30.065895250830142 ], [ -95.622236082137604, 30.066466250928126 ], [ -95.622326081311385, 30.066582250442202 ], [ -95.622539081917438, 30.066853250467616 ], [ -95.622875081780961, 30.067268251291871 ], [ -95.622901081975257, 30.067312250609447 ], [ -95.623835082632837, 30.068875251110214 ], [ -95.624492082477332, 30.069761251196262 ], [ -95.624995082870626, 30.070651251915645 ], [ -95.6251830824677, 30.070983252016752 ], [ -95.626198083301475, 30.072609252256505 ], [ -95.626264082587184, 30.072714252011451 ], [ -95.627427083639915, 30.074891252225061 ], [ -95.627490083724851, 30.075024252267919 ], [ -95.627628083312203, 30.075318252294299 ], [ -95.628215083966822, 30.076560252805571 ], [ -95.628354084157237, 30.076859252460775 ], [ -95.628413084021105, 30.076988252728679 ], [ -95.628654084278878, 30.077576253134833 ], [ -95.628842083953217, 30.078012253043905 ], [ -95.628930083633819, 30.078208252579895 ], [ -95.629074083864523, 30.07856525286309 ], [ -95.629403084378438, 30.079358253206131 ], [ -95.629452084535714, 30.079456253543047 ], [ -95.629537084649442, 30.079655253068537 ], [ -95.629632083884658, 30.079925252870751 ], [ -95.629717084739127, 30.0801082534296 ], [ -95.629800084362998, 30.080311253031706 ], [ -95.630136084967688, 30.081083253352336 ], [ -95.630258084091537, 30.081322253855962 ], [ -95.630485084829772, 30.081906253349352 ], [ -95.630607084228771, 30.082298253297495 ], [ -95.630662084782514, 30.082549253444867 ], [ -95.630734084862084, 30.08282425403932 ], [ -95.630811084883717, 30.083079253885714 ], [ -95.631005085132259, 30.083675254093791 ], [ -95.631039085125437, 30.083764254228456 ], [ -95.631059085027474, 30.083818254373647 ], [ -95.631098085201302, 30.083949254427736 ], [ -95.631174085061147, 30.0841982542374 ], [ -95.631187084540443, 30.084242254216829 ], [ -95.631215084772478, 30.084362254054358 ], [ -95.631249085068518, 30.084503253996594 ], [ -95.631287084538016, 30.084664254458744 ], [ -95.63148608451165, 30.085508254668568 ], [ -95.631638085055002, 30.086151254068003 ], [ -95.631724084648795, 30.086497254547979 ], [ -95.631852084783603, 30.087017254816853 ], [ -95.632007084856525, 30.087683254873976 ], [ -95.632173085128741, 30.088246255195543 ], [ -95.632258085331983, 30.08858725531076 ], [ -95.632464085721054, 30.089421254701758 ], [ -95.632636085210407, 30.089954255047171 ], [ -95.63274208581592, 30.090271254889029 ], [ -95.63296408607016, 30.090988255412928 ], [ -95.633204086230919, 30.091752255508737 ], [ -95.633437086137207, 30.092607256173686 ], [ -95.63371908577696, 30.093798255618644 ], [ -95.63392508559987, 30.094481255966212 ], [ -95.634091086034175, 30.094949256025753 ], [ -95.634373086107345, 30.095525256109184 ], [ -95.634496085773634, 30.095706256483787 ], [ -95.634608086256833, 30.095887256685668 ], [ -95.635170086371545, 30.096631256755547 ], [ -95.635382086804398, 30.096871256304894 ], [ -95.635620086308251, 30.097245256402839 ], [ -95.635793086633768, 30.097572256336292 ], [ -95.636170086430226, 30.097908256617629 ], [ -95.636802087099142, 30.098631256819541 ], [ -95.637128087201702, 30.099151256949607 ], [ -95.637363087300415, 30.099457256861477 ], [ -95.63749408731033, 30.09980525731288 ], [ -95.637832086817497, 30.100579256948034 ], [ -95.638118087249694, 30.101262257439362 ], [ -95.638444087156287, 30.102751257807853 ], [ -95.638505087828037, 30.10313825735847 ], [ -95.638576088106873, 30.10346525760237 ], [ -95.638644087729418, 30.1036102574684 ], [ -95.638729087295147, 30.104015257780663 ], [ -95.638763087386096, 30.104139257529933 ], [ -95.639073087434127, 30.104975258016431 ], [ -95.639468087910814, 30.10586425826855 ], [ -95.639508087790716, 30.10597325827263 ], [ -95.639820088488975, 30.106656258421015 ], [ -95.640028087741854, 30.107149258589377 ], [ -95.640318087841592, 30.107747258719218 ], [ -95.640489088716336, 30.108199258920134 ], [ -95.640754088228107, 30.10897825834347 ], [ -95.640949089044867, 30.109663258672583 ], [ -95.641230088502496, 30.11054625936713 ], [ -95.641466089121124, 30.111219259336096 ], [ -95.641676089158949, 30.111815258941856 ], [ -95.641894088645742, 30.112387259110537 ], [ -95.642100088929752, 30.112928259785217 ], [ -95.642297088890828, 30.113428259546463 ], [ -95.642419089517048, 30.113689259907584 ], [ -95.642618089623156, 30.11408426010977 ], [ -95.643016089637982, 30.114736259521965 ], [ -95.643776089680372, 30.115997260421555 ], [ -95.643878089534724, 30.116169260267583 ], [ -95.644358090202616, 30.116932260223717 ], [ -95.645000090094882, 30.118014260196087 ], [ -95.645407089711142, 30.118646260301745 ], [ -95.645685090379942, 30.119148261040291 ], [ -95.645701090091961, 30.119186260700452 ], [ -95.645721090202755, 30.119141260273445 ], [ -95.645783089826267, 30.119157260913646 ], [ -95.645844089989652, 30.119174260929238 ], [ -95.646109090613507, 30.119244260881565 ], [ -95.646171090176324, 30.119018260260496 ], [ -95.64626108999623, 30.11893626036704 ], [ -95.646317090696925, 30.118908260786437 ], [ -95.646386090115655, 30.118886260199041 ], [ -95.646709090356694, 30.118842260906071 ], [ -95.64692409096881, 30.118749260396953 ], [ -95.646930090154896, 30.118699260177792 ], [ -95.646924089987095, 30.118655260201468 ], [ -95.646943090782926, 30.118507260107691 ], [ -95.646962090329836, 30.118457260910418 ], [ -95.647025090014509, 30.118386260217026 ], [ -95.647303090562332, 30.11819926014471 ], [ -95.647392090561667, 30.118150260455607 ], [ -95.647476090398584, 30.118112260208612 ], [ -95.647626091032677, 30.118045260018157 ], [ -95.648031090293998, 30.117848260294355 ], [ -95.648246090418581, 30.117699260654714 ], [ -95.648619091141342, 30.11734225994935 ], [ -95.648739090853667, 30.117139260447221 ], [ -95.648777090688426, 30.117051260224748 ], [ -95.648840090930136, 30.116825259831675 ], [ -95.648891091096928, 30.116726259916902 ], [ -95.649005090827501, 30.116562259957295 ], [ -95.64934609061271, 30.116210260210977 ], [ -95.649542091502127, 30.115941259723041 ], [ -95.649745091512145, 30.115501259876158 ], [ -95.649922091455821, 30.115314259943258 ], [ -95.650003090959643, 30.115264259660464 ], [ -95.650327090990814, 30.115067259798845 ], [ -95.650523091364988, 30.114896259759085 ], [ -95.650548091075962, 30.114863259962206 ], [ -95.650643091709924, 30.114825259215706 ], [ -95.650763090827951, 30.114808259300759 ], [ -95.650896091760899, 30.11482525965133 ], [ -95.650927091250054, 30.114841259424651 ], [ -95.651016091523502, 30.114929259673126 ], [ -95.651085091272634, 30.114968259952928 ], [ -95.651193091855504, 30.114957259376364 ], [ -95.651269091494825, 30.114924259579634 ], [ -95.651319091894365, 30.114886259630591 ], [ -95.651579091723434, 30.114627259238237 ], [ -95.651718090984701, 30.114407259655845 ], [ -95.651844091530947, 30.114297259043948 ], [ -95.651933092060503, 30.114248259136257 ], [ -95.652331091784475, 30.113968259604558 ], [ -95.652432091201447, 30.11388025893401 ], [ -95.652540091405911, 30.113753259671473 ], [ -95.652572091876195, 30.113687258966788 ], [ -95.652635091668955, 30.113435259490085 ], [ -95.652723091191817, 30.113209259462145 ], [ -95.65273009150161, 30.113132259571305 ], [ -95.652717091202959, 30.113022259415697 ], [ -95.65264009163252, 30.112820258859504 ], [ -95.6526290912077, 30.112791259541119 ], [ -95.652616091694497, 30.112676259555009 ], [ -95.65263509207702, 30.112599258716713 ], [ -95.652669091906375, 30.11252425932112 ], [ -95.652692092085204, 30.11247325873267 ], [ -95.652724091439424, 30.112423259179721 ], [ -95.652787092032696, 30.112368258878007 ], [ -95.652825091844022, 30.112302259405297 ], [ -95.652831091343799, 30.112225258943226 ], [ -95.652907091400976, 30.112088259244235 ], [ -95.652964091638509, 30.112022258819167 ], [ -95.652989091824239, 30.111978258970883 ], [ -95.653002091982799, 30.111841258867965 ], [ -95.653002091243096, 30.111621258505586 ], [ -95.65303409221255, 30.111489259098985 ], [ -95.653129091494819, 30.111379259154042 ], [ -95.653146091705551, 30.111365258565947 ], [ -95.65318509175124, 30.111335259140624 ], [ -95.653400091579385, 30.111230258883069 ], [ -95.653471091430774, 30.111179258638344 ], [ -95.653653091973155, 30.111049258946409 ], [ -95.653887091829233, 30.11095025849848 ], [ -95.653970091607974, 30.110939259147276 ], [ -95.654045092382589, 30.110956258284517 ], [ -95.654109092407509, 30.110978258762284 ], [ -95.654165091650015, 30.111022258824136 ], [ -95.654235092355023, 30.111060259057535 ], [ -95.654311092061988, 30.11108825904056 ], [ -95.65438709184545, 30.111082258381526 ], [ -95.654444092044812, 30.111055258665832 ], [ -95.65448809256138, 30.110956258465141 ], [ -95.654475091908196, 30.110857258931297 ], [ -95.654393091708727, 30.110670258865778 ], [ -95.65436209195984, 30.11063725863524 ], [ -95.654317092381277, 30.11061525897604 ], [ -95.65426009226141, 30.110604259075593 ], [ -95.654134092189366, 30.110609258419331 ], [ -95.653995091748669, 30.11060425852838 ], [ -95.653818091637802, 30.110505258474909 ], [ -95.653710092234348, 30.11039525900431 ], [ -95.653673091406574, 30.110329258440167 ], [ -95.653647091665832, 30.110186258139226 ], [ -95.653673092237725, 30.110060258830458 ], [ -95.653729091584864, 30.109884258656066 ], [ -95.653780091934564, 30.109796258252356 ], [ -95.653812092019606, 30.109708258860067 ], [ -95.653831092059619, 30.109614258382482 ], [ -95.653837092080693, 30.109483258802243 ], [ -95.653856091572493, 30.109422258059457 ], [ -95.653919091359555, 30.109307258381481 ], [ -95.654008091547325, 30.109230258100776 ], [ -95.654077092178611, 30.10920225844103 ], [ -95.65420409221737, 30.109197258800631 ], [ -95.654515092443177, 30.109221258204283 ], [ -95.654640092347407, 30.109230258446193 ], [ -95.654735091786478, 30.109224258264788 ], [ -95.654861092585378, 30.10918025797028 ], [ -95.655007092521146, 30.109038258450845 ], [ -95.655083091823741, 30.108999258569785 ], [ -95.655140092569994, 30.108988258027576 ], [ -95.655241092342706, 30.108988258523166 ], [ -95.655437092482373, 30.108999258604289 ], [ -95.655458092501604, 30.10900825803305 ], [ -95.655557092527474, 30.109049258565676 ], [ -95.655841092628179, 30.109285258266581 ], [ -95.655930092481839, 30.109335258599383 ], [ -95.656006092517913, 30.109357258785703 ], [ -95.656170092626127, 30.109505258630403 ], [ -95.656227092428594, 30.109571258494618 ], [ -95.656366092472467, 30.10967525801782 ], [ -95.656613092155453, 30.109774258668622 ], [ -95.656701092766937, 30.10979125825553 ], [ -95.656935092837244, 30.109796258838742 ], [ -95.657232092249217, 30.109742258591329 ], [ -95.657498092444598, 30.109703258298882 ], [ -95.657555092350393, 30.109714258634607 ], [ -95.657580093037936, 30.109747257928902 ], [ -95.657599093303006, 30.110022258262269 ], [ -95.65764909249863, 30.110115258501693 ], [ -95.657782092447619, 30.110258258477501 ], [ -95.657833092369899, 30.110286258768596 ], [ -95.65796509249752, 30.110308258812026 ], [ -95.658054093204413, 30.110297258086529 ], [ -95.658149093098757, 30.110269258086227 ], [ -95.65840209294177, 30.110170258181885 ], [ -95.658484092930749, 30.110159258301561 ], [ -95.65880609363623, 30.110302258594867 ], [ -95.65885709330837, 30.110379258512086 ], [ -95.658863092936002, 30.110423258870725 ], [ -95.658851092992734, 30.110467258762434 ], [ -95.658800093196319, 30.110500258463262 ], [ -95.658610092623078, 30.110539258106208 ], [ -95.658566093224536, 30.110566258596901 ], [ -95.658541092717471, 30.110610258526723 ], [ -95.65856009335586, 30.110698258150595 ], [ -95.658654092876318, 30.110781258683208 ], [ -95.658914092743331, 30.110913258168281 ], [ -95.659084093284065, 30.111023258466723 ], [ -95.659110092757089, 30.11107225820232 ], [ -95.659110093714304, 30.11112225820089 ], [ -95.659097092753711, 30.111165258540208 ], [ -95.659027092732771, 30.111220258399801 ], [ -95.658958092765431, 30.111226258691584 ], [ -95.658895092994641, 30.111215258829009 ], [ -95.658743093195113, 30.111171258205662 ], [ -95.658395093386062, 30.111011258647618 ], [ -95.658357092659656, 30.111017258176258 ], [ -95.658288092727659, 30.111044258261856 ], [ -95.658243092583575, 30.111105258716531 ], [ -95.658225092673391, 30.111165258684739 ], [ -95.658224093172407, 30.111226258700334 ], [ -95.658237092877613, 30.111260258307563 ], [ -95.65826209263588, 30.111325258957372 ], [ -95.658364093244685, 30.111506259060782 ], [ -95.658534093141412, 30.111754258549663 ], [ -95.658559093557841, 30.111820259103638 ], [ -95.658572093452733, 30.111929258619554 ], [ -95.65859109296396, 30.111962258379446 ], [ -95.658724092880874, 30.112160258807283 ], [ -95.658857092838275, 30.112303258405184 ], [ -95.658945092915246, 30.112347259040138 ], [ -95.659084093036725, 30.112347258437403 ], [ -95.659236093803926, 30.112303259191137 ], [ -95.659274093476, 30.112281259071498 ], [ -95.659350093296908, 30.112215258726351 ], [ -95.659451093847693, 30.112106259141999 ], [ -95.659529093039851, 30.11203825879921 ], [ -95.6597920932509, 30.111814258419418 ], [ -95.660039093574909, 30.111644258869845 ], [ -95.660140093203594, 30.111605258868259 ], [ -95.660229093088176, 30.111578259064583 ], [ -95.660336093336113, 30.111567258893871 ], [ -95.660671093492198, 30.11157225843175 ], [ -95.660842093638024, 30.111595258294567 ], [ -95.661089093245593, 30.111589258855524 ], [ -95.661215094058662, 30.111573258821082 ], [ -95.66131609430694, 30.111551258231916 ], [ -95.661626094190751, 30.111402258682165 ], [ -95.661664094229678, 30.111353258918019 ], [ -95.661696094193502, 30.111243258678329 ], [ -95.661733094128707, 30.111182258882256 ], [ -95.661860093891164, 30.111078258357427 ], [ -95.661936094120009, 30.110968258233541 ], [ -95.662005093528805, 30.110825258801782 ], [ -95.662031094291052, 30.110710258660504 ], [ -95.662024093459493, 30.11058925815027 ], [ -95.661986093756738, 30.110501258598031 ], [ -95.66193009440947, 30.110429258382219 ], [ -95.661866094329255, 30.110369258546502 ], [ -95.661809093462779, 30.110341257958286 ], [ -95.661721094092101, 30.110325258133599 ], [ -95.661645094229684, 30.110325258620314 ], [ -95.661424093865804, 30.110363258003332 ], [ -95.661278094103665, 30.110369258428808 ], [ -95.661247093235829, 30.11034725849894 ], [ -95.661221093566311, 30.11030825790813 ], [ -95.661203093489803, 30.110248258146665 ], [ -95.661215093887577, 30.110116258605448 ], [ -95.661241094116377, 30.11000625837077 ], [ -95.661342093629372, 30.109786257811624 ], [ -95.66134809396479, 30.109704258164687 ], [ -95.661304093399792, 30.109555257818528 ], [ -95.661298093841779, 30.109500257982333 ], [ -95.661323094153531, 30.109401257755003 ], [ -95.661418093852205, 30.109258257864255 ], [ -95.661614093414556, 30.109105258491574 ], [ -95.661759093811369, 30.108912257799872 ], [ -95.66181009386564, 30.108824258105926 ], [ -95.66188609357215, 30.108769257746395 ], [ -95.662031093466624, 30.108703257545361 ], [ -95.662088094380678, 30.108687257876571 ], [ -95.662157094293136, 30.108637257621012 ], [ -95.662214093548954, 30.108538258171162 ], [ -95.662214094065817, 30.108330257617872 ], [ -95.662259093743785, 30.108253258232494 ], [ -95.662316093754811, 30.108192258276112 ], [ -95.662361093652137, 30.108170257770034 ], [ -95.662556094485808, 30.10807725806103 ], [ -95.662676094232609, 30.108005257855428 ], [ -95.662872094288389, 30.107934258232117 ], [ -95.662942093662053, 30.107934258006559 ], [ -95.663081094106914, 30.107956258046606 ], [ -95.663176094003404, 30.107956258053324 ], [ -95.663340094547408, 30.107879258144028 ], [ -95.663422094366311, 30.107829257620605 ], [ -95.663466094047394, 30.107796257604601 ], [ -95.663567094005089, 30.107687257654106 ], [ -95.663599094281437, 30.107670258024402 ], [ -95.663662093973059, 30.107659257441927 ], [ -95.663795094556718, 30.107676257891161 ], [ -95.663890094647712, 30.107698257505579 ], [ -95.664124094787468, 30.107692257833452 ], [ -95.664225094144342, 30.107643257906997 ], [ -95.664345094488255, 30.107533257644516 ], [ -95.664434094575824, 30.107472257280776 ], [ -95.664668094672152, 30.107406257964243 ], [ -95.66474309450831, 30.107362257898487 ], [ -95.664864094856185, 30.107329257512497 ], [ -95.664933094906687, 30.107280257635253 ], [ -95.665098095026707, 30.107247258046442 ], [ -95.66519209507689, 30.107137257533079 ], [ -95.665376095116173, 30.107005257691231 ], [ -95.665496094856593, 30.106906257812394 ], [ -95.66571709516468, 30.106703257038443 ], [ -95.66587509425564, 30.106532257635386 ], [ -95.666082094780705, 30.106332257414444 ], [ -95.666482094914684, 30.105944256881934 ], [ -95.666685095079117, 30.105840256872479 ], [ -95.666735095414893, 30.10580225762909 ], [ -95.666811094853358, 30.105763257565325 ], [ -95.66715909541081, 30.105730257300699 ], [ -95.667228095542171, 30.105708257091866 ], [ -95.667260095533322, 30.105686256784246 ], [ -95.667298094900076, 30.105642257046078 ], [ -95.667311095282599, 30.105593257032634 ], [ -95.667292095588152, 30.105532256772097 ], [ -95.667178094684502, 30.105378257271465 ], [ -95.667159094586765, 30.105323256756112 ], [ -95.667159094774988, 30.105268256953376 ], [ -95.667102095087415, 30.105109256979532 ], [ -95.667279094637962, 30.105070257300937 ], [ -95.667404094907084, 30.105006257477047 ], [ -95.667462094894688, 30.104955257242388 ], [ -95.667576095596957, 30.104834256577487 ], [ -95.667684095106523, 30.104636256996944 ], [ -95.667722095117327, 30.104521257011985 ], [ -95.667722095177709, 30.104345257053648 ], [ -95.667703095178069, 30.104169256446475 ], [ -95.667677094679945, 30.104092256574436 ], [ -95.667576094844591, 30.103889257243001 ], [ -95.667538095403515, 30.103790256781092 ], [ -95.66751309459697, 30.103586256395463 ], [ -95.667519095481964, 30.103520256753633 ], [ -95.667545094534375, 30.103482257143469 ], [ -95.667680094789105, 30.103340256789327 ], [ -95.667760095509564, 30.10325625679253 ], [ -95.667779094681748, 30.103202256622385 ], [ -95.667760095416824, 30.103125256948196 ], [ -95.667743094956791, 30.10309025657045 ], [ -95.667659094932404, 30.102921256700508 ], [ -95.667642094838484, 30.102808256375372 ], [ -95.667633094802866, 30.102751256471937 ], [ -95.6676330949347, 30.102322256306017 ], [ -95.667652095404932, 30.102245256077744 ], [ -95.667690094878651, 30.102157256857318 ], [ -95.667728095223467, 30.102102256484166 ], [ -95.667817094831463, 30.102020256454786 ], [ -95.668063094840861, 30.101849256503218 ], [ -95.668310094884731, 30.10172825656581 ], [ -95.668702095342567, 30.101586256420621 ], [ -95.66902409543485, 30.101448256497928 ], [ -95.669220095891845, 30.101421256251246 ], [ -95.669625095215991, 30.101382255926904 ], [ -95.669916095760414, 30.101311256287662 ], [ -95.670276096042173, 30.101305256623085 ], [ -95.670624095971263, 30.101311256265461 ], [ -95.670832095555227, 30.101289256389869 ], [ -95.670933095749632, 30.101256256407854 ], [ -95.671098096327654, 30.101245256118162 ], [ -95.671243095673759, 30.10126725658737 ], [ -95.671427096081771, 30.101327256203842 ], [ -95.671654096107261, 30.101421256445356 ], [ -95.671875095557724, 30.101481256103575 ], [ -95.671995096196412, 30.101498256306321 ], [ -95.672204095770454, 30.101492255918288 ], [ -95.672432095774255, 30.101503256389847 ], [ -95.672545096636142, 30.101520256158658 ], [ -95.672843095914942, 30.101619256611777 ], [ -95.673051095874186, 30.101723255952717 ], [ -95.673386096610344, 30.101872256393833 ], [ -95.673740097073434, 30.102059256167966 ], [ -95.674031097139888, 30.102152256069175 ], [ -95.674417096401129, 30.102322256396032 ], [ -95.67451809693118, 30.102383256589398 ], [ -95.674625097016275, 30.102405256700496 ], [ -95.674707096437743, 30.102432256504226 ], [ -95.675080097170152, 30.102630256365941 ], [ -95.67524509648338, 30.102707256664548 ], [ -95.675359096871858, 30.102751256062366 ], [ -95.675498097053804, 30.102790256319324 ], [ -95.675681097084919, 30.102889256247273 ], [ -95.675801096986291, 30.102999256700944 ], [ -95.675839097647213, 30.103015256010121 ], [ -95.675934096780722, 30.103015256126625 ], [ -95.676003097693339, 30.102982256431051 ], [ -95.676073097570267, 30.102982256688879 ], [ -95.676301097735362, 30.103136255948126 ], [ -95.676762097489373, 30.103647256261073 ], [ -95.677021097945314, 30.103862256290192 ], [ -95.677160097871649, 30.103977256360359 ], [ -95.677255097724952, 30.104010256081388 ], [ -95.67731109728517, 30.104024256654714 ], [ -95.677723098111485, 30.104131256607506 ], [ -95.677824097966791, 30.104147256799717 ], [ -95.677988097297089, 30.104213256369757 ], [ -95.678153097494487, 30.104362256494841 ], [ -95.678248098320338, 30.104411256703081 ], [ -95.678387097379272, 30.104461256119787 ], [ -95.678532097678016, 30.104604256515699 ], [ -95.678747098330334, 30.10478525681334 ], [ -95.678926098371363, 30.10496025681655 ], [ -95.679044097901425, 30.105076256848172 ], [ -95.679247097991436, 30.105247256307226 ], [ -95.679480098099717, 30.105549256435026 ], [ -95.679506098246307, 30.10560325645541 ], [ -95.679512097708752, 30.105742256518049 ], [ -95.679544097941147, 30.105857256970047 ], [ -95.679569098101382, 30.105895256374982 ], [ -95.679626098072092, 30.105940256853312 ], [ -95.679689097737736, 30.105972257049526 ], [ -95.679961098523378, 30.106077256809264 ], [ -95.680030098145082, 30.106100256419989 ], [ -95.680094098726201, 30.106121257200638 ], [ -95.680157098346342, 30.106132257101354 ], [ -95.68047309817976, 30.106148257171078 ], [ -95.680549098685006, 30.106159256530539 ], [ -95.680566097985505, 30.106163257237952 ], [ -95.680840098133643, 30.106231256374596 ], [ -95.681358098553986, 30.106209257168238 ], [ -95.6816360991115, 30.106247257128381 ], [ -95.681775099293915, 30.10631925655974 ], [ -95.682028099227111, 30.106555257121396 ], [ -95.682515098746336, 30.106841256670016 ], [ -95.682610099008386, 30.106846257222607 ], [ -95.682762099559071, 30.106879256590876 ], [ -95.683400099770736, 30.107187256653035 ], [ -95.68357009897062, 30.107285256807863 ], [ -95.683659099302787, 30.10733625655892 ], [ -95.683817099017048, 30.107363256693208 ], [ -95.684165099123305, 30.107330256663701 ], [ -95.68425409909851, 30.107314256963047 ], [ -95.684311099101862, 30.107292257224302 ], [ -95.684386099522214, 30.107231257059709 ], [ -95.68446909989629, 30.107077256675634 ], [ -95.684665099296083, 30.106885256835302 ], [ -95.684734099460172, 30.106841256759978 ], [ -95.684842099932254, 30.106819256961945 ], [ -95.684886099501526, 30.10681925686886 ], [ -95.685115099325571, 30.106866256846942 ], [ -95.685499099951343, 30.106945257181906 ], [ -95.68559409948702, 30.106940256919728 ], [ -95.685708099963847, 30.106912256551912 ], [ -95.685815100122127, 30.106835257067683 ], [ -95.685910099437848, 30.106791256391649 ], [ -95.68618210039007, 30.106604256351929 ], [ -95.68643509976495, 30.106313256647887 ], [ -95.686574100142138, 30.106066257022775 ], [ -95.686618100335821, 30.105939256219443 ], [ -95.686656099594543, 30.105780256867074 ], [ -95.686757100307062, 30.105538256411247 ], [ -95.686865099697698, 30.105351256372749 ], [ -95.686928100389707, 30.105214256503913 ], [ -95.686985099602794, 30.105021256342432 ], [ -95.687042100367236, 30.104922255943034 ], [ -95.687225099755537, 30.104686256146284 ], [ -95.687256100233881, 30.104604256095691 ], [ -95.687402100220595, 30.104411256119899 ], [ -95.687655099848286, 30.10420225616533 ], [ -95.687781099891779, 30.104076255862427 ], [ -95.687958099937546, 30.103878256462565 ], [ -95.688122100167206, 30.103625255675851 ], [ -95.688129100624593, 30.103598255912932 ], [ -95.688123099926855, 30.103565255669643 ], [ -95.688085100738789, 30.103499255641864 ], [ -95.688021100226436, 30.103460255766208 ], [ -95.687933100403086, 30.103433256290622 ], [ -95.687781100634325, 30.103438255697586 ], [ -95.687667099846394, 30.103460256180838 ], [ -95.687591100069255, 30.103489255585814 ], [ -95.687219100164953, 30.103631256027818 ], [ -95.687168099538567, 30.103642256300848 ], [ -95.687105099783196, 30.103631256040551 ], [ -95.687048100193635, 30.103598256459637 ], [ -95.686978100309631, 30.103532256472125 ], [ -95.686902099581175, 30.103427256373614 ], [ -95.686808099889461, 30.103229256012323 ], [ -95.68672510019276, 30.103015255590599 ], [ -95.686694099995705, 30.102889255809046 ], [ -95.686687099430031, 30.102773255832076 ], [ -95.686706100398084, 30.102625256135994 ], [ -95.686833099544046, 30.102240255533918 ], [ -95.686839100183633, 30.102124255490917 ], [ -95.686814100065391, 30.10200925598231 ], [ -95.686763100141093, 30.10190525617098 ], [ -95.686738099376669, 30.101817255546475 ], [ -95.686725100364697, 30.101729255521725 ], [ -95.686732100006139, 30.101652255964595 ], [ -95.686757100049149, 30.101564255439481 ], [ -95.686820099803825, 30.101459255989504 ], [ -95.686965099961284, 30.101283255403846 ], [ -95.687218100389572, 30.100987255136324 ], [ -95.687446099820576, 30.100739255716327 ], [ -95.687585100119236, 30.100618255204946 ], [ -95.687749100457665, 30.100536255137811 ], [ -95.687964100260842, 30.100459255491305 ], [ -95.688647100434252, 30.100288255687893 ], [ -95.688729100105945, 30.100261255378943 ], [ -95.68881809996644, 30.100217255696595 ], [ -95.689380100445305, 30.099871255037652 ], [ -95.689665100751881, 30.099728255017336 ], [ -95.690006100211377, 30.099574255227807 ], [ -95.690132100909111, 30.099486254829941 ], [ -95.690246100979991, 30.099387255382808 ], [ -95.690575101049134, 30.099046255030604 ], [ -95.69073910034578, 30.098898254879675 ], [ -95.690840100620392, 30.098826255219862 ], [ -95.690916100556535, 30.098793255100297 ], [ -95.691011101325543, 30.098766254799518 ], [ -95.691220101113345, 30.098733254977983 ], [ -95.691359101239314, 30.098733254875093 ], [ -95.692250100690899, 30.098788255049609 ], [ -95.692505101609243, 30.098815255232015 ], [ -95.692648101401815, 30.098831254969884 ], [ -95.693192101629592, 30.098941255091695 ], [ -95.693299100911403, 30.098897254732488 ], [ -95.693413101116249, 30.0988642545334 ], [ -95.693533101006963, 30.098853254682869 ], [ -95.693635101747887, 30.098859254580027 ], [ -95.693830101084259, 30.098881255310772 ], [ -95.694627101703247, 30.099051254885069 ], [ -95.695487102081898, 30.099161255304729 ], [ -95.69624510223386, 30.099293254822797 ], [ -95.696435102177333, 30.099315255253575 ], [ -95.696574102776935, 30.09930925451259 ], [ -95.696631101853015, 30.099293254806209 ], [ -95.696719102113946, 30.099232255006584 ], [ -95.696814102640914, 30.099067254505528 ], [ -95.696909102310642, 30.098996254563424 ], [ -95.697073102328844, 30.098908254394132 ], [ -95.697181102819997, 30.098836255073184 ], [ -95.69735810216595, 30.098748254382045 ], [ -95.697453102348106, 30.0987102545242 ], [ -95.697725102231658, 30.098682254825103 ], [ -95.697807102219727, 30.098682254268905 ], [ -95.697965102464508, 30.09866025458637 ], [ -95.698028102910484, 30.09863825481585 ], [ -95.698123102942148, 30.098589254941867 ], [ -95.698211102163782, 30.098523254367134 ], [ -95.698597103021555, 30.09848425493476 ], [ -95.698692102635178, 30.098435254655982 ], [ -95.698780102362036, 30.09836925463226 ], [ -95.698900103282242, 30.098336254564575 ], [ -95.699330102470668, 30.09836325470831 ], [ -95.699981103399267, 30.098374254213986 ], [ -95.70034210271271, 30.098402254326885 ], [ -95.700759103276724, 30.098468254170275 ], [ -95.701290103878009, 30.098484254730295 ], [ -95.701938103100488, 30.098889254647766 ], [ -95.702121103321815, 30.099046254644275 ], [ -95.702136103405621, 30.098998254550139 ], [ -95.702171103506601, 30.098869254738432 ], [ -95.702256103705892, 30.098554254437918 ], [ -95.702300103348833, 30.098345254850052 ], [ -95.702315103811287, 30.098164254021192 ], [ -95.702310103540214, 30.097651254011115 ], [ -95.7023011035254, 30.097490253914987 ], [ -95.702342103304289, 30.097312254281135 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1382, "Tract": "48201251401", "Area_SqMi": 0.46413023346423216, "total_2009": 22, "total_2010": 21, "total_2011": 168, "total_2012": 19, "total_2013": 27, "total_2014": 27, "total_2015": 56, "total_2016": 29, "total_2017": 34, "total_2018": 38, "total_2019": 40, "total_2020": 41, "age1": 6, "age2": 31, "age3": 11, "earn1": 2, "earn2": 14, "earn3": 32, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 3, "naics_s06": 7, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 23, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 2, "naics_s17": 0, "naics_s18": 1, "naics_s19": 1, "naics_s20": 0, "race1": 40, "race2": 6, "race3": 0, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 41, "ethnicity2": 7, "edu1": 4, "edu2": 16, "edu3": 15, "edu4": 7, "Shape_Length": 17791.595562690869, "Shape_Area": 12939156.542149199, "total_2021": 34, "total_2022": 48 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.200351974051003, 30.081633268742205 ], [ -95.200360974744314, 30.081043268751458 ], [ -95.20027197394765, 30.080416268762711 ], [ -95.200157974667022, 30.07999326821497 ], [ -95.199803974206304, 30.079476267894833 ], [ -95.199348973667369, 30.079009267911154 ], [ -95.198817974208495, 30.078684268183999 ], [ -95.198285973711833, 30.078498268447625 ], [ -95.197546973389052, 30.078377268314849 ], [ -95.197369973645579, 30.078374267922388 ], [ -95.197135973848631, 30.078371267746867 ], [ -95.196901973772455, 30.078399268348218 ], [ -95.19650497366608, 30.078503268195842 ], [ -95.195624973157464, 30.078734268031926 ], [ -95.194732972631854, 30.078839268612377 ], [ -95.193999972967234, 30.078883267896451 ], [ -95.192342972057943, 30.07905026875649 ], [ -95.19198097234927, 30.079079268277155 ], [ -95.190832971516031, 30.079169268119152 ], [ -95.189997971182279, 30.079197268268558 ], [ -95.189669971471673, 30.079175268879894 ], [ -95.189523971238955, 30.079158268090943 ], [ -95.188986971133858, 30.079015268816654 ], [ -95.188366971202583, 30.078696268564581 ], [ -95.188088971106751, 30.078498268313879 ], [ -95.187797971189099, 30.078196268450508 ], [ -95.186811970183101, 30.076997268396955 ], [ -95.186571971052459, 30.076750268135953 ], [ -95.186267970059546, 30.07648626774365 ], [ -95.186017970003604, 30.076287268171697 ], [ -95.185901970235179, 30.076195267531425 ], [ -95.18543396995122, 30.075903268115646 ], [ -95.184940970047776, 30.075672267642432 ], [ -95.184516970481937, 30.075502267741726 ], [ -95.183871969771133, 30.075326267786103 ], [ -95.183068969215995, 30.075243268303264 ], [ -95.182626969479671, 30.075227267792435 ], [ -95.181930969479936, 30.075276268160177 ], [ -95.181184969419306, 30.07540826825894 ], [ -95.180590968538837, 30.075606268272171 ], [ -95.180008968412849, 30.075865268197536 ], [ -95.179237968750996, 30.076338268141271 ], [ -95.179015968928923, 30.076484268590288 ], [ -95.178455968477436, 30.076851268347657 ], [ -95.179259968859, 30.077326268735636 ], [ -95.181249969684103, 30.078531268572263 ], [ -95.184050969833919, 30.080212268634334 ], [ -95.187671971509005, 30.082464269350016 ], [ -95.188633971881501, 30.083054269296241 ], [ -95.19014997135514, 30.083983269241571 ], [ -95.190206972032684, 30.08401726954391 ], [ -95.193755973151909, 30.086111269519854 ], [ -95.194038973231955, 30.08627826974222 ], [ -95.195670973340214, 30.087241270205592 ], [ -95.19571497299647, 30.087283270036192 ], [ -95.195730973476984, 30.087326270122134 ], [ -95.195810973494204, 30.087254269759608 ], [ -95.200342974131743, 30.083451268582937 ], [ -95.200335974826118, 30.082627268611382 ], [ -95.20034897430601, 30.081810268371189 ], [ -95.200351974051003, 30.081633268742205 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1383, "Tract": "48201334002", "Area_SqMi": 0.51229419931886899, "total_2009": 1148, "total_2010": 1198, "total_2011": 1317, "total_2012": 1241, "total_2013": 1400, "total_2014": 1365, "total_2015": 1690, "total_2016": 1561, "total_2017": 1547, "total_2018": 1453, "total_2019": 1278, "total_2020": 1236, "age1": 524, "age2": 607, "age3": 245, "earn1": 459, "earn2": 589, "earn3": 328, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 6, "naics_s07": 463, "naics_s08": 19, "naics_s09": 96, "naics_s10": 17, "naics_s11": 10, "naics_s12": 14, "naics_s13": 0, "naics_s14": 196, "naics_s15": 6, "naics_s16": 41, "naics_s17": 0, "naics_s18": 482, "naics_s19": 26, "naics_s20": 0, "race1": 953, "race2": 279, "race3": 14, "race4": 115, "race5": 2, "race6": 13, "ethnicity1": 793, "ethnicity2": 583, "edu1": 229, "edu2": 238, "edu3": 247, "edu4": 138, "Shape_Length": 16197.161559805278, "Shape_Area": 14281885.47672506, "total_2021": 1286, "total_2022": 1376 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.223030959256477, 29.612186171463311 ], [ -95.222663959174611, 29.611409171920432 ], [ -95.222484959264477, 29.611153171592942 ], [ -95.222201958610057, 29.610754171081801 ], [ -95.221994959067402, 29.610462171708296 ], [ -95.22143195817165, 29.609856170751247 ], [ -95.221096958602004, 29.609571170874453 ], [ -95.220804958234012, 29.609318170791017 ], [ -95.220311958337064, 29.608916171143736 ], [ -95.220145958685265, 29.608781171056343 ], [ -95.220025957851618, 29.608686170777762 ], [ -95.219694958384764, 29.608405170914683 ], [ -95.219490957572049, 29.608249170935018 ], [ -95.218829957388024, 29.607696170710746 ], [ -95.218520957408757, 29.607424170490784 ], [ -95.2180479571619, 29.607008170437901 ], [ -95.217353957803596, 29.606223170570761 ], [ -95.216756957673297, 29.605254170761636 ], [ -95.216481957564767, 29.604535170018931 ], [ -95.216356956862882, 29.60381117045311 ], [ -95.216049956944673, 29.601490169676033 ], [ -95.216037956343555, 29.601392169921223 ], [ -95.216022957202924, 29.601261169607902 ], [ -95.215996956809136, 29.601048169982093 ], [ -95.215764956969892, 29.601076169813613 ], [ -95.215181957068381, 29.601154169518779 ], [ -95.214665956381921, 29.601230169896759 ], [ -95.214131956241559, 29.601377169585284 ], [ -95.213410956058468, 29.601561169512387 ], [ -95.212645955783969, 29.601840170269003 ], [ -95.211638955424846, 29.602262170025732 ], [ -95.210299955100979, 29.602987169850596 ], [ -95.209560955108287, 29.603450170068061 ], [ -95.208197954885492, 29.604456170240553 ], [ -95.206885954744962, 29.605376170657745 ], [ -95.206046954515429, 29.606013171298862 ], [ -95.205960954385986, 29.606075171063331 ], [ -95.205554954370498, 29.606355171006221 ], [ -95.205699954377067, 29.606487171388704 ], [ -95.205872954726843, 29.606646171398765 ], [ -95.205984954462323, 29.60674917109856 ], [ -95.206557954755837, 29.60727317144303 ], [ -95.206635954199157, 29.607344171106561 ], [ -95.207258954787036, 29.60791617096632 ], [ -95.208314955357309, 29.608857171847138 ], [ -95.210670955707258, 29.610957172163612 ], [ -95.211456956349721, 29.611631171966767 ], [ -95.213117956415104, 29.613251172096941 ], [ -95.214488957341374, 29.614503171940299 ], [ -95.216128957477125, 29.615996172447471 ], [ -95.216302957403457, 29.615851172792464 ], [ -95.216387957810483, 29.615780172207081 ], [ -95.217725957877562, 29.61467017257856 ], [ -95.217828958098849, 29.614585172053896 ], [ -95.217994958174984, 29.614442172100855 ], [ -95.218245957951467, 29.614224171986972 ], [ -95.219243957958042, 29.613571172237215 ], [ -95.220025958665573, 29.613240171940127 ], [ -95.220852958204659, 29.612951171553203 ], [ -95.221909959272864, 29.612584171354257 ], [ -95.223030959256477, 29.612186171463311 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1384, "Tract": "48201550602", "Area_SqMi": 0.43339913470554947, "total_2009": 2355, "total_2010": 2379, "total_2011": 2694, "total_2012": 3525, "total_2013": 4010, "total_2014": 4087, "total_2015": 4149, "total_2016": 3811, "total_2017": 3316, "total_2018": 349, "total_2019": 361, "total_2020": 425, "age1": 87, "age2": 228, "age3": 90, "earn1": 46, "earn2": 75, "earn3": 284, "naics_s01": 0, "naics_s02": 0, "naics_s03": 254, "naics_s04": 1, "naics_s05": 39, "naics_s06": 4, "naics_s07": 21, "naics_s08": 0, "naics_s09": 0, "naics_s10": 15, "naics_s11": 1, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 19, "naics_s17": 0, "naics_s18": 41, "naics_s19": 7, "naics_s20": 0, "race1": 280, "race2": 81, "race3": 2, "race4": 36, "race5": 1, "race6": 5, "ethnicity1": 287, "ethnicity2": 118, "edu1": 63, "edu2": 59, "edu3": 110, "edu4": 86, "Shape_Length": 14740.49721166939, "Shape_Area": 12082426.105558312, "total_2021": 397, "total_2022": 405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.466258036211769, 29.945843231661758 ], [ -95.466397036750863, 29.945822231583183 ], [ -95.465703036370641, 29.944960231388293 ], [ -95.465321036396844, 29.944465231882809 ], [ -95.465238036144257, 29.944363231484427 ], [ -95.465160035598757, 29.944255231361321 ], [ -95.465077035647781, 29.94415123161248 ], [ -95.465025035477339, 29.944079231768956 ], [ -95.465001035692097, 29.944045230951655 ], [ -95.464922035497381, 29.943937231420609 ], [ -95.464853036150544, 29.94383423109478 ], [ -95.464772035511643, 29.943753231296526 ], [ -95.464545035345708, 29.943454230996956 ], [ -95.463734035015008, 29.942391231479348 ], [ -95.463656036032646, 29.942280231051644 ], [ -95.463489035217151, 29.942070230795984 ], [ -95.463415035484573, 29.941964231227342 ], [ -95.463259035606583, 29.941760231162135 ], [ -95.463204035455846, 29.941694231325545 ], [ -95.463178035018572, 29.941663230890306 ], [ -95.462990035060514, 29.941405230906085 ], [ -95.46276403487208, 29.941110231163861 ], [ -95.462474035370832, 29.94073323074678 ], [ -95.461742034485198, 29.939781230329281 ], [ -95.461339034873689, 29.939273230864725 ], [ -95.461265035118259, 29.939171230200188 ], [ -95.460968034672902, 29.938794230081495 ], [ -95.460496034947482, 29.938159230321496 ], [ -95.460396034829543, 29.938030230163324 ], [ -95.460140034213325, 29.937702230500477 ], [ -95.46000303459742, 29.937526230053535 ], [ -95.45970303409257, 29.937528229786594 ], [ -95.457784033933777, 29.937538230344046 ], [ -95.455166033001319, 29.937552230393603 ], [ -95.454912033173144, 29.937553230023155 ], [ -95.454908032975368, 29.937728230022714 ], [ -95.454901033174551, 29.938109230836172 ], [ -95.454885033518593, 29.938196230230403 ], [ -95.454925032893286, 29.939304230323355 ], [ -95.454957033440266, 29.940759231244066 ], [ -95.454970033247221, 29.941484230977306 ], [ -95.454976033514541, 29.941840231527834 ], [ -95.454983033565782, 29.942505231367143 ], [ -95.45499303351707, 29.943545231226903 ], [ -95.455018033140917, 29.945823232258743 ], [ -95.455023033431871, 29.945940232240371 ], [ -95.455024033831663, 29.946179232286589 ], [ -95.45501303376912, 29.946598232124668 ], [ -95.454979033080875, 29.946992231943529 ], [ -95.454943033224694, 29.947318232534265 ], [ -95.454840033965269, 29.948293232305193 ], [ -95.454798033656232, 29.948578232819624 ], [ -95.454719033231726, 29.948950232938383 ], [ -95.454648033855847, 29.949206232633628 ], [ -95.454559033414839, 29.94945323280556 ], [ -95.455201034176639, 29.949581232491109 ], [ -95.455271033925712, 29.949588232724246 ], [ -95.455351033319872, 29.949590233012419 ], [ -95.455574033856607, 29.94957223256948 ], [ -95.455647033651147, 29.94957323284412 ], [ -95.45575903349247, 29.949575232880264 ], [ -95.456520033728438, 29.949625232670055 ], [ -95.456849033654933, 29.949632232489076 ], [ -95.458327034025942, 29.949612232793907 ], [ -95.459441035156274, 29.949595232569887 ], [ -95.460579035472435, 29.949582232418113 ], [ -95.462010035731538, 29.949559232789174 ], [ -95.46242603568966, 29.949557232830056 ], [ -95.463270035617796, 29.949543232159584 ], [ -95.464675036475015, 29.949530232100386 ], [ -95.464658035777418, 29.948898232264956 ], [ -95.464649035716931, 29.948182232078665 ], [ -95.464644035812995, 29.948001231879552 ], [ -95.464629035510356, 29.947292231916499 ], [ -95.464613036203289, 29.946408231664883 ], [ -95.464611035676114, 29.946289231774507 ], [ -95.464610036348631, 29.945949231450719 ], [ -95.464513035638589, 29.945869231821213 ], [ -95.464788036083974, 29.945867232097612 ], [ -95.465334036388938, 29.945865231377535 ], [ -95.466013036577024, 29.945858231696466 ], [ -95.466258036211769, 29.945843231661758 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1385, "Tract": "48201552301", "Area_SqMi": 1.6647119059510553, "total_2009": 307, "total_2010": 360, "total_2011": 436, "total_2012": 455, "total_2013": 538, "total_2014": 496, "total_2015": 469, "total_2016": 479, "total_2017": 356, "total_2018": 388, "total_2019": 411, "total_2020": 382, "age1": 129, "age2": 279, "age3": 142, "earn1": 135, "earn2": 213, "earn3": 202, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 92, "naics_s05": 2, "naics_s06": 26, "naics_s07": 179, "naics_s08": 16, "naics_s09": 1, "naics_s10": 0, "naics_s11": 15, "naics_s12": 33, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 36, "naics_s17": 0, "naics_s18": 95, "naics_s19": 40, "naics_s20": 0, "race1": 363, "race2": 118, "race3": 3, "race4": 48, "race5": 6, "race6": 12, "ethnicity1": 403, "ethnicity2": 147, "edu1": 78, "edu2": 116, "edu3": 127, "edu4": 100, "Shape_Length": 31732.676584903795, "Shape_Area": 46409318.755013235, "total_2021": 527, "total_2022": 550 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.631224079291556, 29.961294229366423 ], [ -95.631153079047195, 29.961037228648134 ], [ -95.631087079049323, 29.960750228911373 ], [ -95.631035079378535, 29.960338228827883 ], [ -95.630928079368914, 29.958610229040996 ], [ -95.630920078915437, 29.958039228213558 ], [ -95.630903078588887, 29.957987228089465 ], [ -95.630911078488339, 29.957580228598363 ], [ -95.630905079300248, 29.957128228587507 ], [ -95.630911078897554, 29.957038228727171 ], [ -95.63090707883606, 29.956678227996747 ], [ -95.630893079200717, 29.956240227835064 ], [ -95.630889079169975, 29.955413227935249 ], [ -95.630892079224836, 29.955118227521446 ], [ -95.630885079133023, 29.954901228278864 ], [ -95.630883078615298, 29.954624227378766 ], [ -95.630870078704433, 29.954533228112005 ], [ -95.630873078592089, 29.954359227317784 ], [ -95.630879078426943, 29.95427422752066 ], [ -95.630877079236541, 29.954111227928596 ], [ -95.630870079156082, 29.954030227846058 ], [ -95.630861078547312, 29.953726227359695 ], [ -95.630869078864194, 29.953657227644367 ], [ -95.630863078998104, 29.953576227375347 ], [ -95.630858078806, 29.953516227499843 ], [ -95.630828078764438, 29.952823227068869 ], [ -95.630848079042082, 29.952742227574586 ], [ -95.630848078410764, 29.952623226932548 ], [ -95.630845079016964, 29.951879227286387 ], [ -95.630839078382408, 29.950544227269532 ], [ -95.630838079104294, 29.950376227143796 ], [ -95.6308380786827, 29.950177226810514 ], [ -95.630833078731726, 29.948709226468772 ], [ -95.630832078948544, 29.948258226910252 ], [ -95.630831078654353, 29.947413226383357 ], [ -95.630702078609218, 29.947409226372969 ], [ -95.629755078326269, 29.947422226051255 ], [ -95.62966307854731, 29.947423226189791 ], [ -95.629308077789332, 29.947428226667586 ], [ -95.629011078189023, 29.947432226710625 ], [ -95.628897077966997, 29.947432226250772 ], [ -95.628684078061923, 29.947431226231057 ], [ -95.628422077973084, 29.947432226475453 ], [ -95.62821807812206, 29.947433226158765 ], [ -95.627848077387867, 29.94743522684486 ], [ -95.627532077358936, 29.947434226380498 ], [ -95.627519077975535, 29.947434226562219 ], [ -95.627255077497111, 29.947433226567444 ], [ -95.627143077447215, 29.947433226128794 ], [ -95.626905077782411, 29.947432226108003 ], [ -95.626216077518819, 29.947434226409822 ], [ -95.626085077383152, 29.947435226909686 ], [ -95.625454077395858, 29.947443226141843 ], [ -95.625342077265401, 29.947444226938234 ], [ -95.624829076734116, 29.947447226895605 ], [ -95.624083076925046, 29.947460226809536 ], [ -95.623193076059138, 29.947463226874024 ], [ -95.623028076085617, 29.947465226678943 ], [ -95.62197007656799, 29.947472226813897 ], [ -95.621817075768462, 29.947476226558845 ], [ -95.620720076313077, 29.947490226744552 ], [ -95.61952807566945, 29.947507226827977 ], [ -95.619051075710985, 29.947516226886865 ], [ -95.618715075245547, 29.947524226686809 ], [ -95.618501075251388, 29.947531227110627 ], [ -95.618296075249859, 29.947538226447801 ], [ -95.618080074983595, 29.94754422723075 ], [ -95.617393075433029, 29.947550226501601 ], [ -95.617026074647114, 29.947549226841986 ], [ -95.616867075038797, 29.947548226675103 ], [ -95.616644075276199, 29.947547227241952 ], [ -95.616465074925046, 29.947538226822534 ], [ -95.616148074625656, 29.947523227150263 ], [ -95.615680075084256, 29.947488226716438 ], [ -95.615389075023359, 29.947471227142525 ], [ -95.615117074131803, 29.947467227130531 ], [ -95.614874074560277, 29.947475227147603 ], [ -95.614569074303688, 29.947504227243112 ], [ -95.614333074764986, 29.947543226948028 ], [ -95.613967074626729, 29.947614226747316 ], [ -95.613814074007252, 29.947652226668811 ], [ -95.61362607433756, 29.947701226702343 ], [ -95.613432073739759, 29.947761227107673 ], [ -95.613147073694861, 29.94786122729251 ], [ -95.612960074110887, 29.947934227182738 ], [ -95.612895073836413, 29.947962227318023 ], [ -95.612668073512467, 29.94806222670989 ], [ -95.61246607367255, 29.948162227456152 ], [ -95.612362073545569, 29.948219227165477 ], [ -95.612274073954651, 29.948269226861981 ], [ -95.611979073364978, 29.948461227221305 ], [ -95.611797073179687, 29.948592227309103 ], [ -95.611625073821983, 29.948732227148923 ], [ -95.611327073712857, 29.949001227044221 ], [ -95.611179073168572, 29.949140227311535 ], [ -95.610942073677037, 29.949349226991668 ], [ -95.610518073572834, 29.949741227456823 ], [ -95.610331073880104, 29.949911227976433 ], [ -95.61022607314996, 29.950021227885422 ], [ -95.61009707342339, 29.950119227873913 ], [ -95.609339073266909, 29.950813227648968 ], [ -95.609030073142904, 29.951086227399827 ], [ -95.608828072907968, 29.951252227751883 ], [ -95.608626073253461, 29.951402228181557 ], [ -95.608419073228646, 29.951538227882207 ], [ -95.608113073265983, 29.951704228231726 ], [ -95.607841072339156, 29.95183722835403 ], [ -95.607676072650023, 29.951907228046753 ], [ -95.607598072773087, 29.951926228156495 ], [ -95.607552072370623, 29.951948228185309 ], [ -95.607513072659714, 29.951966228054047 ], [ -95.607196073122282, 29.952067227807966 ], [ -95.606866072551767, 29.952157228217082 ], [ -95.60670507211006, 29.952196228373342 ], [ -95.606519072467322, 29.952236228306148 ], [ -95.606469072988745, 29.95224622847233 ], [ -95.606180072180436, 29.952296227805959 ], [ -95.606148072464975, 29.952300227751092 ], [ -95.606015072725882, 29.9523162282998 ], [ -95.605815072788346, 29.952329228036113 ], [ -95.605454072450627, 29.952334228143705 ], [ -95.605337071955987, 29.952339227809659 ], [ -95.604845072464414, 29.952345228263852 ], [ -95.604847071622913, 29.952432228572519 ], [ -95.604838072578801, 29.952499228057814 ], [ -95.604819071868192, 29.952738228752839 ], [ -95.604814072072301, 29.95293922837163 ], [ -95.604792072575961, 29.953162228464418 ], [ -95.604762072255383, 29.953347227989028 ], [ -95.604755072317147, 29.953397228684768 ], [ -95.60470507177611, 29.953637228827052 ], [ -95.604641072075566, 29.953880228820914 ], [ -95.604514072020336, 29.954247228248519 ], [ -95.604411072490052, 29.95449022830423 ], [ -95.604354071962177, 29.954609228541759 ], [ -95.604231072371974, 29.954839228526485 ], [ -95.604093072430956, 29.955069228974796 ], [ -95.603945071620544, 29.95530122910505 ], [ -95.603807071822231, 29.955540228660162 ], [ -95.603685071919102, 29.955771229082849 ], [ -95.60357407208302, 29.956005228861439 ], [ -95.603478072251491, 29.956252229358647 ], [ -95.60339507213537, 29.956496229103834 ], [ -95.603269071766704, 29.956974229142904 ], [ -95.603146072180309, 29.957540229334512 ], [ -95.603126071497144, 29.957653228909475 ], [ -95.603097071738205, 29.957877229222458 ], [ -95.603087072222792, 29.958089229652465 ], [ -95.603082071791448, 29.958201229591563 ], [ -95.60308907180206, 29.958529229761851 ], [ -95.603104071814045, 29.95864622950765 ], [ -95.6031450718408, 29.958888229537909 ], [ -95.60323907151259, 29.959275229338942 ], [ -95.603279071992816, 29.959405230116833 ], [ -95.603421071670255, 29.95979223002654 ], [ -95.603662071719654, 29.960378230295095 ], [ -95.604719072649999, 29.962847230436122 ], [ -95.604858072368827, 29.963142230645275 ], [ -95.60493307224958, 29.963285230608744 ], [ -95.605014072449578, 29.9634252305061 ], [ -95.605098072876515, 29.963558230167401 ], [ -95.605273072331116, 29.963817230923642 ], [ -95.606193072767198, 29.96497223114476 ], [ -95.60697707360255, 29.965933230639564 ], [ -95.607031073623361, 29.965871231341207 ], [ -95.607385073616243, 29.965502230493652 ], [ -95.6074920731524, 29.965299231024765 ], [ -95.607517073748781, 29.965161230404799 ], [ -95.607536073050369, 29.964804230523448 ], [ -95.607605073553628, 29.964612230652826 ], [ -95.607700073571976, 29.964463230892768 ], [ -95.607883073208939, 29.964287230342695 ], [ -95.608160073919152, 29.964095230752971 ], [ -95.608583074053072, 29.963836230149091 ], [ -95.609000073935448, 29.963655230659658 ], [ -95.609246074241582, 29.963512229970114 ], [ -95.610129073934814, 29.962774230434217 ], [ -95.610382074025736, 29.962461229698103 ], [ -95.610514074245017, 29.96213122969893 ], [ -95.61073507427497, 29.961999230094712 ], [ -95.610781073795479, 29.96199023022157 ], [ -95.610887074370638, 29.961972230029129 ], [ -95.611082073936686, 29.961955229576795 ], [ -95.611310073667028, 29.961982229921535 ], [ -95.611512074062276, 29.962081230254842 ], [ -95.611707073870861, 29.962191229940935 ], [ -95.611897074667226, 29.962340229793362 ], [ -95.612086074204029, 29.962427230254089 ], [ -95.612219074139972, 29.962444229826207 ], [ -95.612314074505178, 29.962422229739719 ], [ -95.612553074270423, 29.962251229806984 ], [ -95.612673074645087, 29.962119229667479 ], [ -95.612680074651436, 29.96202623023996 ], [ -95.612673074309811, 29.961641230061893 ], [ -95.612698074102667, 29.961504229416086 ], [ -95.61289407415056, 29.961267229769245 ], [ -95.61318407468427, 29.960948229248334 ], [ -95.613285074655167, 29.960822229643458 ], [ -95.613316074824297, 29.96053622958453 ], [ -95.613322074556422, 29.96024422963125 ], [ -95.613373074845057, 29.960014229300427 ], [ -95.613442074429074, 29.959909229051025 ], [ -95.613682074767866, 29.959750229286669 ], [ -95.614206075095723, 29.959573229361428 ], [ -95.614723074811465, 29.959436229014724 ], [ -95.61514007508957, 29.959348229029445 ], [ -95.615531074668056, 29.959331228836355 ], [ -95.615696075377087, 29.959375229209208 ], [ -95.615784074946589, 29.959419229125377 ], [ -95.615891074989449, 29.959562229709192 ], [ -95.616018075666489, 29.959782229279746 ], [ -95.616050075413412, 29.959952229321328 ], [ -95.616106075494983, 29.960067229687468 ], [ -95.616271075496755, 29.960249229688678 ], [ -95.616587075987511, 29.960644229134164 ], [ -95.616858075934033, 29.96109022986699 ], [ -95.617117075853059, 29.961491229578709 ], [ -95.617250075506519, 29.961787229369108 ], [ -95.617301075977124, 29.96198523004405 ], [ -95.617307075392588, 29.962183229713119 ], [ -95.617251075444088, 29.962519230032107 ], [ -95.617289076231984, 29.962766230346737 ], [ -95.617339075479791, 29.962865230022089 ], [ -95.617434075818636, 29.962920230283927 ], [ -95.617516075699839, 29.962942229696516 ], [ -95.617800076245743, 29.962931229584356 ], [ -95.61805907597217, 29.962864230331412 ], [ -95.618337075670027, 29.962853229578744 ], [ -95.618602076042933, 29.96288622973708 ], [ -95.618842075770232, 29.962952229823198 ], [ -95.619006076315088, 29.963067229728953 ], [ -95.619164076152458, 29.96319423029027 ], [ -95.619366075854003, 29.963430230349822 ], [ -95.619663076495385, 29.96381523033368 ], [ -95.619859076752419, 29.964024230315996 ], [ -95.620181076457627, 29.964238230052882 ], [ -95.62037107633823, 29.964392230150299 ], [ -95.620503076289566, 29.964419229900027 ], [ -95.620756077154937, 29.964441230243843 ], [ -95.621033076364171, 29.964424230068463 ], [ -95.621090076769732, 29.964424230257432 ], [ -95.621280076369274, 29.964353230300006 ], [ -95.621444077232709, 29.964314230220083 ], [ -95.621538076508102, 29.964314229707831 ], [ -95.621633076481473, 29.964352230035196 ], [ -95.621772076718258, 29.964440230258209 ], [ -95.622006076934809, 29.964616229882402 ], [ -95.622246077392944, 29.964698230441595 ], [ -95.622461077542496, 29.964759230257041 ], [ -95.622669077146597, 29.964792229820453 ], [ -95.622814077565025, 29.964847230054978 ], [ -95.623004077334087, 29.964956230520581 ], [ -95.623092077391448, 29.965077230063034 ], [ -95.623130077813428, 29.965165230361592 ], [ -95.623187077558853, 29.965259230237184 ], [ -95.623307076887457, 29.965308230109869 ], [ -95.62364807794394, 29.965368230246956 ], [ -95.623894077900147, 29.965440230342921 ], [ -95.624020077486506, 29.965495229848123 ], [ -95.624330077639328, 29.965731230343849 ], [ -95.624589078131905, 29.966077230663217 ], [ -95.624709078151767, 29.966275230249472 ], [ -95.62484807814532, 29.966412230112905 ], [ -95.625012078178855, 29.966517230100688 ], [ -95.625411077888899, 29.966681230065294 ], [ -95.625569077745951, 29.966725230487508 ], [ -95.625638078095776, 29.966736229987301 ], [ -95.625739078198606, 29.966725230649114 ], [ -95.625954078284266, 29.966670230861769 ], [ -95.626118078303904, 29.966648229963717 ], [ -95.62623107836032, 29.966659230847746 ], [ -95.626414077964384, 29.966742230246396 ], [ -95.626673078460271, 29.966808230248308 ], [ -95.626964078225384, 29.966808230481966 ], [ -95.627267078782026, 29.966737230152116 ], [ -95.627917078693756, 29.966605230605168 ], [ -95.628062078354233, 29.966556230617918 ], [ -95.628328078804842, 29.966363230027881 ], [ -95.628568078899903, 29.966270230161435 ], [ -95.628871079370811, 29.966286230147769 ], [ -95.629130079142499, 29.966210230137985 ], [ -95.629212078756879, 29.966144230081827 ], [ -95.629218078578276, 29.966023229790341 ], [ -95.629142078412755, 29.965781230489284 ], [ -95.629111078806389, 29.965550230164165 ], [ -95.62911707871281, 29.96542922985245 ], [ -95.629288079220188, 29.965325230127977 ], [ -95.629503078514901, 29.965171229574061 ], [ -95.629660079342486, 29.965083230364804 ], [ -95.629730079366283, 29.964902230201837 ], [ -95.629724078906065, 29.964759229577012 ], [ -95.62965407880246, 29.964528229702097 ], [ -95.629421079199446, 29.963901229830583 ], [ -95.629175079063884, 29.963346229692306 ], [ -95.629106078493862, 29.963225229212153 ], [ -95.628991078680045, 29.96305622975758 ], [ -95.628942079222114, 29.962983229776235 ], [ -95.628835078249679, 29.962801229380098 ], [ -95.628814078486229, 29.96275522989475 ], [ -95.628784078539738, 29.962691229626593 ], [ -95.628778078979522, 29.962614229594191 ], [ -95.628809078504361, 29.96251522920371 ], [ -95.628841078914519, 29.962466229017842 ], [ -95.628904078795358, 29.962395229445047 ], [ -95.629454078347266, 29.962169229039098 ], [ -95.629815079354614, 29.961976229293594 ], [ -95.630748079036834, 29.961477228861444 ], [ -95.631224079291556, 29.961294229366423 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1386, "Tract": "48201556000", "Area_SqMi": 52.081897636258986, "total_2009": 1557, "total_2010": 1567, "total_2011": 1749, "total_2012": 1441, "total_2013": 1464, "total_2014": 1677, "total_2015": 1635, "total_2016": 1626, "total_2017": 1609, "total_2018": 1810, "total_2019": 2161, "total_2020": 2226, "age1": 553, "age2": 1208, "age3": 618, "earn1": 386, "earn2": 532, "earn3": 1461, "naics_s01": 26, "naics_s02": 1, "naics_s03": 9, "naics_s04": 455, "naics_s05": 610, "naics_s06": 118, "naics_s07": 206, "naics_s08": 15, "naics_s09": 22, "naics_s10": 86, "naics_s11": 27, "naics_s12": 205, "naics_s13": 6, "naics_s14": 161, "naics_s15": 3, "naics_s16": 78, "naics_s17": 16, "naics_s18": 268, "naics_s19": 67, "naics_s20": 0, "race1": 2000, "race2": 148, "race3": 22, "race4": 169, "race5": 6, "race6": 34, "ethnicity1": 1499, "ethnicity2": 880, "edu1": 474, "edu2": 481, "edu3": 512, "edu4": 359, "Shape_Length": 234089.10116065614, "Shape_Area": 1451954167.0402272, "total_2021": 2323, "total_2022": 2379 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.960723173076858, 30.1634512589272 ], [ -95.960740172328158, 30.163420258811687 ], [ -95.960574173018685, 30.162924258022166 ], [ -95.960078172547114, 30.161437258000174 ], [ -95.959913172617505, 30.160942258450287 ], [ -95.959910171751019, 30.160933257664642 ], [ -95.959900172202509, 30.160901257779745 ], [ -95.959893172043309, 30.160881258267107 ], [ -95.959881171736868, 30.160819258480558 ], [ -95.959865171884701, 30.160803258163838 ], [ -95.959547172030497, 30.159894258013331 ], [ -95.958594172156538, 30.157167257538216 ], [ -95.958277171237242, 30.156259256948005 ], [ -95.958099171452773, 30.15575125746826 ], [ -95.957568171859265, 30.154230256533644 ], [ -95.95739117114978, 30.153724257132655 ], [ -95.957286171008292, 30.153433256556863 ], [ -95.956974171258935, 30.152562256700765 ], [ -95.956870171549383, 30.15227225645733 ], [ -95.956671171234291, 30.151722256050196 ], [ -95.956076170550233, 30.150072255787077 ], [ -95.955878170559984, 30.149523256185478 ], [ -95.955722170759287, 30.149092255527886 ], [ -95.955340170875047, 30.148033255926794 ], [ -95.95525717097351, 30.14780125541737 ], [ -95.955102170243578, 30.147371255359399 ], [ -95.9549071705285, 30.14683225523039 ], [ -95.954325170358288, 30.145218254732981 ], [ -95.954307170269345, 30.145168254755163 ], [ -95.954131169539707, 30.144680254568883 ], [ -95.953955169939391, 30.144188254518681 ], [ -95.953789170142159, 30.14372125467683 ], [ -95.953447169772602, 30.142761254401027 ], [ -95.953430169633037, 30.142713254988468 ], [ -95.953351169856973, 30.142491254489567 ], [ -95.953255169547091, 30.14222225434256 ], [ -95.952847169194115, 30.141079254752551 ], [ -95.951626168771554, 30.137653254091429 ], [ -95.951220169354059, 30.136511253086827 ], [ -95.951211169158938, 30.136485253331941 ], [ -95.951207168791498, 30.136475253155393 ], [ -95.951196168519942, 30.136445253649416 ], [ -95.951193169008448, 30.136435253595181 ], [ -95.950993169048687, 30.135876253489041 ], [ -95.950396168178372, 30.134199253360126 ], [ -95.950215168637399, 30.133690253245529 ], [ -95.950197168434215, 30.133640253296676 ], [ -95.949578168201981, 30.131904252556396 ], [ -95.947723167575418, 30.126698251255167 ], [ -95.947105167032603, 30.124963251435858 ], [ -95.947096166982718, 30.12493925102476 ], [ -95.946162167378432, 30.122357250844516 ], [ -95.943336165974614, 30.114539249583054 ], [ -95.942416165522005, 30.111995248474177 ], [ -95.942394165016339, 30.111934249117471 ], [ -95.942101165800509, 30.111123248723356 ], [ -95.941222164906506, 30.108693248381883 ], [ -95.940929164546191, 30.107883248374339 ], [ -95.940498165181381, 30.106691248069556 ], [ -95.939205164023832, 30.103118247360303 ], [ -95.93877516383678, 30.101927246624079 ], [ -95.93874316386065, 30.101839246967494 ], [ -95.938648163743366, 30.101577247027866 ], [ -95.938617164512593, 30.1014902465453 ], [ -95.938217163600001, 30.100384246201976 ], [ -95.937018163370226, 30.097067245930084 ], [ -95.936619163227249, 30.095962245519271 ], [ -95.936568163090854, 30.095822245829456 ], [ -95.936329163605507, 30.095177245286113 ], [ -95.935490162703246, 30.092905245287369 ], [ -95.93546016275539, 30.092823245212774 ], [ -95.935171162626148, 30.092039244865131 ], [ -95.934723162458127, 30.090827245192031 ], [ -95.933380161676894, 30.087192244271161 ], [ -95.93293316173002, 30.085981243702257 ], [ -95.932241161291941, 30.084109243465704 ], [ -95.930169161222153, 30.078497242270505 ], [ -95.929478160463205, 30.076626242015127 ], [ -95.92940516091015, 30.076430242287334 ], [ -95.929333160889186, 30.07623424186551 ], [ -95.928881160549395, 30.07500824213562 ], [ -95.928312160643685, 30.073469241311578 ], [ -95.928231159727062, 30.073262241920446 ], [ -95.928225159919904, 30.073248241387059 ], [ -95.928068159834254, 30.072847241857975 ], [ -95.927952160333007, 30.072541241420534 ], [ -95.927640159723538, 30.071587241022094 ], [ -95.927524160123497, 30.071236241092414 ], [ -95.927215159227629, 30.07029524064717 ], [ -95.927157159808701, 30.070119240902578 ], [ -95.927121159683907, 30.070011241049688 ], [ -95.927063159952837, 30.069832240579746 ], [ -95.927020160123632, 30.069712240510459 ], [ -95.926975159970084, 30.069584240483579 ], [ -95.926939159447443, 30.069482240943866 ], [ -95.926927159289306, 30.069448241094261 ], [ -95.926904159471761, 30.069386241199833 ], [ -95.926892159363845, 30.069352240444051 ], [ -95.926866159364536, 30.069279240555417 ], [ -95.92685016000452, 30.069233240516212 ], [ -95.926570158971671, 30.06868824047103 ], [ -95.925232159017611, 30.068721240542011 ], [ -95.925163158669889, 30.067205240356429 ], [ -95.92511715877302, 30.066394240207419 ], [ -95.925116158527416, 30.066359240049085 ], [ -95.925100158460921, 30.065574239671417 ], [ -95.925105158968066, 30.065072239768277 ], [ -95.925107158800387, 30.064777240035827 ], [ -95.925091158583527, 30.063910239508186 ], [ -95.92484715884386, 30.063915239903739 ], [ -95.923282158831384, 30.063953239893369 ], [ -95.922194158433598, 30.064002239967188 ], [ -95.921509157612945, 30.06403323967438 ], [ -95.921507158307961, 30.063976239972909 ], [ -95.921498157832787, 30.063634239945504 ], [ -95.921488158169254, 30.063270239504345 ], [ -95.921475157915225, 30.062776239323536 ], [ -95.921471157382527, 30.062616239875982 ], [ -95.921466157587389, 30.062440239563639 ], [ -95.921453158033799, 30.06168123952499 ], [ -95.92145215770195, 30.06160823955322 ], [ -95.921446157637575, 30.060943239635986 ], [ -95.921442157503051, 30.06066223881367 ], [ -95.921437157398969, 30.060101238932223 ], [ -95.921437158185398, 30.060091238835394 ], [ -95.921447157998884, 30.05916923890479 ], [ -95.921467157881466, 30.058713239049332 ], [ -95.921463157580703, 30.058530238451407 ], [ -95.921431157162999, 30.057769239045644 ], [ -95.921419158126, 30.056961238209734 ], [ -95.921432158071298, 30.056124237990847 ], [ -95.921432158011442, 30.056073238320604 ], [ -95.92137215780906, 30.055630238377532 ], [ -95.921180157593312, 30.055296237714415 ], [ -95.920321157118508, 30.055105238476422 ], [ -95.919574157282057, 30.054940238327102 ], [ -95.918821156681119, 30.05477323823812 ], [ -95.918487156535875, 30.054678237647622 ], [ -95.917951156856262, 30.054519237961902 ], [ -95.91738815598076, 30.054319238114584 ], [ -95.917207156705501, 30.054233238301851 ], [ -95.916698156036304, 30.054035238408414 ], [ -95.916271156285944, 30.053873238096834 ], [ -95.916163156094271, 30.053832237805416 ], [ -95.913994155925252, 30.053016238281693 ], [ -95.913403155756527, 30.052793237986467 ], [ -95.91315015559168, 30.052694237795372 ], [ -95.912739155724992, 30.052533237747909 ], [ -95.912490155654439, 30.052435237837273 ], [ -95.908593153885221, 30.050957237882674 ], [ -95.90072815163569, 30.048010237291823 ], [ -95.899444151649391, 30.047544237632049 ], [ -95.890937149711604, 30.044337236892758 ], [ -95.882226147268184, 30.041094237038561 ], [ -95.881800147086039, 30.040920236324151 ], [ -95.875343144891289, 30.038509236470077 ], [ -95.87425614457058, 30.038096236303609 ], [ -95.873974144685718, 30.037970236257049 ], [ -95.873777144251321, 30.037894236301511 ], [ -95.860293140744872, 30.03282623613493 ], [ -95.860158140508446, 30.032774236092845 ], [ -95.859189140170756, 30.03240723607254 ], [ -95.858573140639663, 30.032184235229241 ], [ -95.857148140142812, 30.031640235802186 ], [ -95.85588013985992, 30.031164235764173 ], [ -95.855322139331221, 30.030952235873549 ], [ -95.851710138468732, 30.029577235534401 ], [ -95.84968313776379, 30.02885923550047 ], [ -95.849624137598568, 30.028836235104322 ], [ -95.847611137120722, 30.028072234765627 ], [ -95.845608136871988, 30.027316234664358 ], [ -95.844642136467343, 30.026959235333209 ], [ -95.843600136862605, 30.026554234657578 ], [ -95.84358013623681, 30.02654923526373 ], [ -95.836463134314485, 30.023877234687152 ], [ -95.835265134509953, 30.023427234523361 ], [ -95.83508313431129, 30.023385234566561 ], [ -95.832866133107657, 30.022532234898399 ], [ -95.832092133022115, 30.022286234826151 ], [ -95.831691132787213, 30.022074234494774 ], [ -95.830195132753914, 30.02155223463317 ], [ -95.828954132819192, 30.02121723466194 ], [ -95.826205131395, 30.020336234594367 ], [ -95.825801131521544, 30.020162234757588 ], [ -95.822351130413878, 30.01880323381523 ], [ -95.821200130211167, 30.018424234062742 ], [ -95.820949130578867, 30.018330233888896 ], [ -95.820731130350197, 30.018253234565865 ], [ -95.818863129685454, 30.017622233737065 ], [ -95.815508129112189, 30.016411233996962 ], [ -95.815234129131838, 30.016286233897425 ], [ -95.814930128736009, 30.016175233540007 ], [ -95.810885127779102, 30.014596233635249 ], [ -95.810123127211654, 30.01429123360252 ], [ -95.809634126805278, 30.014042233902629 ], [ -95.809139127431393, 30.013898234084312 ], [ -95.807668127147011, 30.01331823371817 ], [ -95.806781126886065, 30.012947233477721 ], [ -95.804873126359738, 30.012223233069484 ], [ -95.803647125718911, 30.011743233435443 ], [ -95.799542124934234, 30.010141233272581 ], [ -95.799238123957366, 30.010029233350171 ], [ -95.798992123877284, 30.009938233214324 ], [ -95.792955123108527, 30.007766233107958 ], [ -95.792366121949684, 30.007476233357181 ], [ -95.791076122354369, 30.007013232990897 ], [ -95.78996112156014, 30.006596232510109 ], [ -95.786924121278943, 30.005467232740695 ], [ -95.7867601211167, 30.005408233118612 ], [ -95.783282119758141, 30.00426123251702 ], [ -95.781958119264203, 30.003731232207709 ], [ -95.78195911914672, 30.003811232408815 ], [ -95.781960119608115, 30.003904232281055 ], [ -95.781967119418098, 30.004334232535228 ], [ -95.781972119742306, 30.004678233129425 ], [ -95.781975120200357, 30.004838233078164 ], [ -95.781978119859019, 30.005052232464958 ], [ -95.781979120074624, 30.00508123309076 ], [ -95.782011120230635, 30.007022233426063 ], [ -95.782101119831012, 30.010576233964031 ], [ -95.782098120351918, 30.010682233992849 ], [ -95.782073119746769, 30.010724234122637 ], [ -95.782006120440343, 30.010759233837092 ], [ -95.781886120083925, 30.010851233928395 ], [ -95.782090120324938, 30.011489233941315 ], [ -95.782121120022623, 30.013215234670199 ], [ -95.782196120701954, 30.017776235467405 ], [ -95.782198120222702, 30.017873235202504 ], [ -95.782200119897922, 30.01800023580434 ], [ -95.782216120377257, 30.018954235220537 ], [ -95.782269120726994, 30.021890235932315 ], [ -95.782314120849875, 30.024359236281207 ], [ -95.782322120433221, 30.024537236851756 ], [ -95.782325120888117, 30.02476223704182 ], [ -95.782345120633451, 30.025998237169105 ], [ -95.782341120895737, 30.026145237434495 ], [ -95.782349120455379, 30.026291237176544 ], [ -95.782369120994545, 30.026934237319399 ], [ -95.782371120378528, 30.027316237676789 ], [ -95.78236012130435, 30.027456237468513 ], [ -95.782320120759636, 30.027554237341629 ], [ -95.7822381204859, 30.027613237258663 ], [ -95.782183120866108, 30.027629237238131 ], [ -95.782117120511842, 30.027638237519344 ], [ -95.781827120362252, 30.027646237532664 ], [ -95.781582121123833, 30.027653237256736 ], [ -95.781532121010756, 30.027680237211609 ], [ -95.781493120487085, 30.027720237544365 ], [ -95.781451120396497, 30.027798237802426 ], [ -95.781438120481837, 30.027856237568145 ], [ -95.781432120356811, 30.027926237622058 ], [ -95.781433120751132, 30.028202237555686 ], [ -95.781504120904813, 30.032923238295712 ], [ -95.781515121410251, 30.033682238392377 ], [ -95.781539121368453, 30.034895238534617 ], [ -95.781548121259064, 30.035185239305605 ], [ -95.781572120646416, 30.037010239000413 ], [ -95.781325120745592, 30.03701923951526 ], [ -95.781152120946174, 30.037026239714436 ], [ -95.78054712080727, 30.03703223958809 ], [ -95.780423121106523, 30.03703323975579 ], [ -95.778446120001888, 30.037063239713593 ], [ -95.77706211947239, 30.037079239414641 ], [ -95.773015118720778, 30.037127239649898 ], [ -95.770362118622216, 30.037152240132496 ], [ -95.770173118408678, 30.037166239430302 ], [ -95.770172118352235, 30.037393239837677 ], [ -95.770184118202309, 30.03790324025784 ], [ -95.77018311861579, 30.038200239915831 ], [ -95.770175117959951, 30.038312240357257 ], [ -95.770191118009279, 30.041580240533726 ], [ -95.770190117980306, 30.042522241022414 ], [ -95.770201118497155, 30.043836241181179 ], [ -95.770214118660078, 30.045077241012422 ], [ -95.770225118715146, 30.046858241601619 ], [ -95.770282119118647, 30.051438242207343 ], [ -95.770293118631187, 30.052686242481244 ], [ -95.770293118486606, 30.053292242744554 ], [ -95.770302118924022, 30.053597243328731 ], [ -95.770391119143497, 30.055323243069061 ], [ -95.770422118796901, 30.055820243156813 ], [ -95.770486119102955, 30.056659243561796 ], [ -95.770563119288568, 30.057790243800778 ], [ -95.770695119428737, 30.059363244223611 ], [ -95.770702118887741, 30.059599244124708 ], [ -95.770697119517422, 30.059842244216142 ], [ -95.770680119506196, 30.060209244718823 ], [ -95.770659119151389, 30.061322244163254 ], [ -95.770618119075394, 30.062693244730159 ], [ -95.770636119541606, 30.06277024505227 ], [ -95.770685119745721, 30.06281824508342 ], [ -95.770788119111373, 30.062841244829642 ], [ -95.772206120164, 30.062813244850737 ], [ -95.772924120409058, 30.06280924459206 ], [ -95.773872120393719, 30.062790244725328 ], [ -95.775596121017642, 30.062765244530709 ], [ -95.777137121383603, 30.062752244505578 ], [ -95.777912121097714, 30.06273424473887 ], [ -95.779066122108233, 30.062727244223929 ], [ -95.77999112154265, 30.062713244608556 ], [ -95.781473122423833, 30.062696244658461 ], [ -95.781487121840627, 30.063262244266539 ], [ -95.781547122335439, 30.066453245163352 ], [ -95.781547122386769, 30.066884245700411 ], [ -95.781528122908071, 30.066991245807486 ], [ -95.781510122112365, 30.06705924556525 ], [ -95.781467122085942, 30.067177245348255 ], [ -95.781136122144105, 30.067915245920336 ], [ -95.781044122669186, 30.0681502459752 ], [ -95.781029122065604, 30.068210245692448 ], [ -95.779798121929048, 30.068768245629606 ], [ -95.778197121991141, 30.06950324605787 ], [ -95.777753121147555, 30.069708245766954 ], [ -95.776272121149091, 30.070324245988751 ], [ -95.768435119783248, 30.0729062472249 ], [ -95.764193117898358, 30.074261247411037 ], [ -95.763355118135706, 30.074594247509189 ], [ -95.763012118245371, 30.07478724731304 ], [ -95.763040117756262, 30.07662824825098 ], [ -95.763033118603602, 30.076773247784427 ], [ -95.763045118163618, 30.077870247790621 ], [ -95.763072118557275, 30.078852248676974 ], [ -95.763082118592834, 30.079012248728311 ], [ -95.763095118416757, 30.079983248344792 ], [ -95.763106118010256, 30.08052924864942 ], [ -95.763113118127947, 30.080883248792347 ], [ -95.763110118542485, 30.081017249284674 ], [ -95.763115118443466, 30.081326248585295 ], [ -95.763111118046936, 30.081471248773695 ], [ -95.763110118427761, 30.081936249134344 ], [ -95.763142118981094, 30.082313248786058 ], [ -95.763121118676978, 30.08240624927873 ], [ -95.763117118620301, 30.08269424938937 ], [ -95.763136118028854, 30.082995249324664 ], [ -95.763130118712255, 30.083090248964226 ], [ -95.76313111854995, 30.08329524906458 ], [ -95.763123118865181, 30.08360124933267 ], [ -95.763128118105811, 30.083738248983384 ], [ -95.763155118185409, 30.085458250113383 ], [ -95.763185119098537, 30.085844250246794 ], [ -95.763173118438772, 30.085961249462475 ], [ -95.76317311852425, 30.086103250204239 ], [ -95.763168118922906, 30.086218250201728 ], [ -95.763172119112411, 30.086340249903838 ], [ -95.763169119140059, 30.086433249542957 ], [ -95.763170118280556, 30.086497249502266 ], [ -95.763174118494604, 30.086653250123593 ], [ -95.763174118751664, 30.086894250166655 ], [ -95.763174118387383, 30.086936249765106 ], [ -95.76324011877594, 30.086961249921323 ], [ -95.763360118274491, 30.08699425000497 ], [ -95.763790119050711, 30.087038249834411 ], [ -95.763853118763677, 30.087061249760325 ], [ -95.76401811844859, 30.087187249926142 ], [ -95.764214118526382, 30.087506250257551 ], [ -95.764346119362827, 30.087764250207758 ], [ -95.764415119233476, 30.087951250187405 ], [ -95.764504119121753, 30.088122250331317 ], [ -95.764630118640213, 30.088264250640144 ], [ -95.764744119338019, 30.088358249830897 ], [ -95.764845119298286, 30.088424249844262 ], [ -95.764953118710253, 30.088468250601981 ], [ -95.765066119518167, 30.088495250677887 ], [ -95.765534119670605, 30.088496250704932 ], [ -95.766059119761763, 30.088595250325678 ], [ -95.76628611909517, 30.088611250169336 ], [ -95.766653119688186, 30.088600249917302 ], [ -95.767380119909035, 30.088513250359615 ], [ -95.767493120263453, 30.088518250457852 ], [ -95.767955120233282, 30.088612249800136 ], [ -95.768100120104592, 30.088623250276097 ], [ -95.768290120284789, 30.088601250153953 ], [ -95.768366120277562, 30.088568250256905 ], [ -95.768416120164659, 30.088518249931901 ], [ -95.768429120150685, 30.088485250115991 ], [ -95.768353120027285, 30.088282250181738 ], [ -95.768334120281239, 30.088183250094687 ], [ -95.768334120405214, 30.088095250338522 ], [ -95.768366119653436, 30.08800225016542 ], [ -95.76842911995702, 30.087897250309769 ], [ -95.768524120216313, 30.087787249993315 ], [ -95.768644119716257, 30.087694250278709 ], [ -95.768777120345419, 30.087617249794221 ], [ -95.769036120512354, 30.087535249587805 ], [ -95.769200120130861, 30.08752924976152 ], [ -95.769472119900342, 30.087551249543118 ], [ -95.76982612048829, 30.087513250207962 ], [ -95.770050120955858, 30.087445250254113 ], [ -95.770117119982956, 30.087425249945902 ], [ -95.770452120956861, 30.087409249814538 ], [ -95.770635120566908, 30.087425249491844 ], [ -95.770799120233733, 30.08742525010447 ], [ -95.770957120691122, 30.087453250212661 ], [ -95.771122120837816, 30.087508249805936 ], [ -95.771248120866744, 30.087579250333107 ], [ -95.771343120409227, 30.087662250190149 ], [ -95.77141912092921, 30.087761249527944 ], [ -95.771463120572193, 30.087860250200595 ], [ -95.771513121083899, 30.088096250275214 ], [ -95.771608120746762, 30.088756249816853 ], [ -95.771823120714274, 30.088877250509569 ], [ -95.77194312133247, 30.088992250023868 ], [ -95.771949120660224, 30.089102249908969 ], [ -95.771943120585021, 30.089184250231739 ], [ -95.771873120527189, 30.089344250178168 ], [ -95.771873121427419, 30.089410250158423 ], [ -95.771924121149212, 30.08950924989448 ], [ -95.772303121292452, 30.08974025071808 ], [ -95.772354121100548, 30.089833250600343 ], [ -95.772378121086035, 30.089937250583937 ], [ -95.772410121021807, 30.090081249948138 ], [ -95.772467121585251, 30.090169250603349 ], [ -95.772821121390962, 30.090366250837175 ], [ -95.773188121827417, 30.090641250880889 ], [ -95.77363612143651, 30.090867250542104 ], [ -95.774098121773761, 30.090999250534683 ], [ -95.774483121634404, 30.091191250201799 ], [ -95.774761121711862, 30.091175250623238 ], [ -95.77511512167807, 30.091120250747977 ], [ -95.775438121766044, 30.09104925014493 ], [ -95.775621121953478, 30.090983250221214 ], [ -95.775823121649893, 30.090889250594181 ], [ -95.776038122578498, 30.090768250790241 ], [ -95.776165122370031, 30.090681250520646 ], [ -95.776304122233341, 30.090670250151707 ], [ -95.776392122220145, 30.090697250303215 ], [ -95.776519121761524, 30.090719250716901 ], [ -95.776607122645473, 30.090730250755144 ], [ -95.776689122701598, 30.09072525037892 ], [ -95.776721122802755, 30.090697250207857 ], [ -95.776677122058928, 30.090587250309664 ], [ -95.776689121970549, 30.090560250732075 ], [ -95.776936122102299, 30.090323249821001 ], [ -95.776961122441847, 30.09025225029874 ], [ -95.776955122861736, 30.09019725039326 ], [ -95.776879122243869, 30.090159250079964 ], [ -95.776791122361274, 30.090180250217994 ], [ -95.776664122189089, 30.090257249821434 ], [ -95.776569122300458, 30.09029625064478 ], [ -95.776500122181318, 30.090290250076965 ], [ -95.776456122345266, 30.090241250251065 ], [ -95.776443122023423, 30.090186250332586 ], [ -95.776658122121574, 30.089900249866243 ], [ -95.776848122180553, 30.089818250073762 ], [ -95.777385122205516, 30.08965825016789 ], [ -95.777657122194483, 30.089653250079106 ], [ -95.778371122956628, 30.089659249771127 ], [ -95.778586122473627, 30.089736249993237 ], [ -95.778927123346548, 30.089912250390089 ], [ -95.779129122807703, 30.089967249984952 ], [ -95.779546123340538, 30.090005249732872 ], [ -95.780248123222094, 30.090044249672289 ], [ -95.780482123362944, 30.090077250394202 ], [ -95.780678122789624, 30.090137249871518 ], [ -95.780728123556557, 30.090187250206583 ], [ -95.780766122961282, 30.090385249730843 ], [ -95.780810123842073, 30.090434249922659 ], [ -95.780905123475904, 30.090489249721401 ], [ -95.780981123764121, 30.090517250089018 ], [ -95.781025123562458, 30.090517250309201 ], [ -95.78125912371577, 30.090489250470213 ], [ -95.781544123550617, 30.090423250377022 ], [ -95.781638123144774, 30.090418249949771 ], [ -95.781765123330985, 30.090462250448383 ], [ -95.781866123126434, 30.090561249828305 ], [ -95.782713123586092, 30.090940249871021 ], [ -95.78280112430167, 30.091012250383848 ], [ -95.782972124364036, 30.091358250567435 ], [ -95.783079124259132, 30.091534249909198 ], [ -95.783180124138795, 30.091660250228482 ], [ -95.783174124068509, 30.091770250012271 ], [ -95.78311112363653, 30.091825250230311 ], [ -95.783003124469616, 30.091886250085437 ], [ -95.782953124260587, 30.091995250347843 ], [ -95.782953123567751, 30.092023250485862 ], [ -95.783117124454904, 30.09235325073751 ], [ -95.783212123960752, 30.092408250595405 ], [ -95.783629124342923, 30.092589250548748 ], [ -95.784090123825635, 30.092749250490332 ], [ -95.784526124330441, 30.092941250111917 ], [ -95.784659124237763, 30.093051250091619 ], [ -95.784754124422605, 30.093150250707843 ], [ -95.784843124604819, 30.093216250538017 ], [ -95.784887124826895, 30.093375250784501 ], [ -95.785083124451987, 30.093568250917404 ], [ -95.785278124713642, 30.093683250482254 ], [ -95.785493124641832, 30.093843250471096 ], [ -95.785582124739463, 30.093920250908521 ], [ -95.785797124482912, 30.094013250805212 ], [ -95.785879125194342, 30.094013250810484 ], [ -95.785980125162922, 30.093953250983269 ], [ -95.786157124842944, 30.093810250571501 ], [ -95.786574125420913, 30.093870251069539 ], [ -95.78674512489556, 30.093936250883655 ], [ -95.786827124714065, 30.094002250803729 ], [ -95.786897125271281, 30.094101250719376 ], [ -95.786960124789545, 30.094222250721423 ], [ -95.787029124899107, 30.094277250980053 ], [ -95.787175125576837, 30.094310250493074 ], [ -95.787288125002291, 30.094305250601238 ], [ -95.78752912502749, 30.094272250252221 ], [ -95.78757312510804, 30.094277250700991 ], [ -95.787731124860713, 30.094239250912761 ], [ -95.787819125511547, 30.094162250658812 ], [ -95.787851125475399, 30.094046250571239 ], [ -95.787927125714688, 30.093975250184801 ], [ -95.787990125099284, 30.093942250934962 ], [ -95.788117124945416, 30.093936250949461 ], [ -95.788199124896224, 30.093942250962996 ], [ -95.788382125205786, 30.09403525030406 ], [ -95.788736125569429, 30.094354250384008 ], [ -95.788881125977426, 30.094536251108313 ], [ -95.789039125735258, 30.094679250415783 ], [ -95.789083125174656, 30.094679250655474 ], [ -95.789166126100284, 30.094662251011357 ], [ -95.789248125638068, 30.094591250575583 ], [ -95.789286125648559, 30.094492250744231 ], [ -95.789298125885367, 30.094404250291902 ], [ -95.789261125312223, 30.093959250471141 ], [ -95.789147126115537, 30.09353525072121 ], [ -95.788989125688346, 30.093244250503158 ], [ -95.788799125503502, 30.092986250008273 ], [ -95.788686125188363, 30.092865250632457 ], [ -95.788610125878449, 30.092815250678161 ], [ -95.788597125154908, 30.092771250575712 ], [ -95.78851512516033, 30.092310250306895 ], [ -95.78851512589064, 30.092205250342928 ], [ -95.788553125779814, 30.092145250082783 ], [ -95.788629125508649, 30.092057250306468 ], [ -95.788913125306962, 30.091958249753468 ], [ -95.789090125900515, 30.09199125029772 ], [ -95.789362125444157, 30.092073250013875 ], [ -95.789501125274043, 30.092095250246896 ], [ -95.789849126090033, 30.092101249788637 ], [ -95.789975126137591, 30.092057249999385 ], [ -95.790304125730458, 30.091859250214767 ], [ -95.790607125899442, 30.091716250228171 ], [ -95.7912141261465, 30.091513249924425 ], [ -95.791606126469134, 30.091491249840384 ], [ -95.791922126305181, 30.091425250129173 ], [ -95.792150126609826, 30.091409249931907 ], [ -95.792655126245549, 30.091551249643643 ], [ -95.793256126668112, 30.091612249726861 ], [ -95.79366012636757, 30.091607249934231 ], [ -95.793888126449318, 30.091563250305629 ], [ -95.794254127180849, 30.091409249747276 ], [ -95.79519012670265, 30.090892249540367 ], [ -95.795632127514125, 30.090689249433169 ], [ -95.795872126757345, 30.090645249988683 ], [ -95.796119127006477, 30.090617249906575 ], [ -95.796599127525781, 30.090716250032575 ], [ -95.796783127020973, 30.090738249955425 ], [ -95.797004127889068, 30.090722249906424 ], [ -95.797269127999726, 30.090639249428651 ], [ -95.797655127287598, 30.090535249168084 ], [ -95.797794127215042, 30.090486249756591 ], [ -95.797876127286088, 30.090436249202178 ], [ -95.798041128157308, 30.090288249476746 ], [ -95.798180127474524, 30.090216249276889 ], [ -95.79882412769345, 30.090079249183251 ], [ -95.799273128323478, 30.090057249247522 ], [ -95.799614128232619, 30.090172249693843 ], [ -95.799696128108323, 30.090277249238742 ], [ -95.799760128209471, 30.090453249066485 ], [ -95.799861128549949, 30.090689249446463 ], [ -95.800291128384799, 30.091294250019512 ], [ -95.80050612827938, 30.091464249449242 ], [ -95.800645128246799, 30.09150824938628 ], [ -95.800796128023578, 30.091519249787691 ], [ -95.800961128482356, 30.09150325001395 ], [ -95.8011751281839, 30.091420249499567 ], [ -95.801390128902227, 30.09128324969404 ], [ -95.801858128521232, 30.090887249085235 ], [ -95.80226912931397, 30.090590249592612 ], [ -95.802465129303968, 30.090458249834526 ], [ -95.802636129336534, 30.09035924974927 ], [ -95.802863128757807, 30.090266249528408 ], [ -95.803337128571044, 30.090101249266802 ], [ -95.803697129589835, 30.089997249063785 ], [ -95.804563129226793, 30.089788249350679 ], [ -95.804772129203201, 30.089766249588809 ], [ -95.804905129002691, 30.089771249433145 ], [ -95.80517612924163, 30.089826249184167 ], [ -95.805347129292556, 30.089826249373274 ], [ -95.805644129719326, 30.089804249020784 ], [ -95.805878129698229, 30.089716249148605 ], [ -95.806106129268144, 30.089656248956818 ], [ -95.806302129843516, 30.089568249064314 ], [ -95.806415129458671, 30.089474248822697 ], [ -95.807743130363491, 30.0889802484947 ], [ -95.807837130466496, 30.088925249252142 ], [ -95.807913130300662, 30.088798248626134 ], [ -95.807989130139077, 30.088710249087587 ], [ -95.808084130043056, 30.0886442488417 ], [ -95.80819113046293, 30.088611248845073 ], [ -95.808729130753818, 30.088540248709517 ], [ -95.808981130240696, 30.088490248683957 ], [ -95.809146130901865, 30.088447248844567 ], [ -95.809335130984351, 30.088337248634474 ], [ -95.809500130473879, 30.088221248479535 ], [ -95.809588130919266, 30.088067248244368 ], [ -95.809626130963267, 30.087842248257935 ], [ -95.809601130663935, 30.087661248623469 ], [ -95.809538130546343, 30.087408248875938 ], [ -95.809430130031018, 30.087160248498538 ], [ -95.809221129952164, 30.087050248371323 ], [ -95.809152130642374, 30.087023248741044 ], [ -95.809095130067462, 30.086979248831476 ], [ -95.80907013027641, 30.086913248085228 ], [ -95.809045130157955, 30.086732248258706 ], [ -95.809051129878071, 30.08621524811393 ], [ -95.809146130630765, 30.085858248270174 ], [ -95.809285130882799, 30.085649248122195 ], [ -95.809607130284633, 30.085319248120058 ], [ -95.809759129964803, 30.085237248378892 ], [ -95.810030130663733, 30.085176247756902 ], [ -95.81056813032653, 30.085205247876058 ], [ -95.810868130531716, 30.085169247871999 ], [ -95.811082130568238, 30.085093247713385 ], [ -95.811525131438998, 30.084963247891515 ], [ -95.811754130660916, 30.084819247488834 ], [ -95.812123130532981, 30.084400248112416 ], [ -95.812292130957132, 30.084328247340554 ], [ -95.812436130916936, 30.084319248006036 ], [ -95.812610130720273, 30.084339247673189 ], [ -95.812747130853211, 30.084385247354341 ], [ -95.812948130793032, 30.084399248084342 ], [ -95.813226130911289, 30.08443724735293 ], [ -95.81380213106732, 30.084553248109287 ], [ -95.814402131854507, 30.084692247728452 ], [ -95.815138131544444, 30.08518824789164 ], [ -95.815389131952074, 30.085295247484506 ], [ -95.815640132069319, 30.085322248099658 ], [ -95.815786132279712, 30.085327248314815 ], [ -95.815922132105783, 30.085279247770497 ], [ -95.81609913208051, 30.085167247470597 ], [ -95.816155132564816, 30.085093248128395 ], [ -95.816256132081975, 30.084917247853802 ], [ -95.816357132316284, 30.084560247359633 ], [ -95.816540131944819, 30.083769247766103 ], [ -95.816603132077859, 30.083126247060392 ], [ -95.816603132536073, 30.083005247523435 ], [ -95.816464132336819, 30.082763247473554 ], [ -95.816477132335919, 30.082625247262023 ], [ -95.816729132114787, 30.082131247557356 ], [ -95.816925132592758, 30.081861247575919 ], [ -95.816995132126877, 30.081801247200588 ], [ -95.817052132142209, 30.081784246765427 ], [ -95.817621132713754, 30.08187824679981 ], [ -95.817993131991713, 30.082059246683649 ], [ -95.818183132154019, 30.082197246739458 ], [ -95.818317132514082, 30.082323246842211 ], [ -95.81861313259347, 30.082603246773491 ], [ -95.819131133009634, 30.083015247662548 ], [ -95.819277132720401, 30.083092247667093 ], [ -95.81941613319232, 30.083092247497852 ], [ -95.819605133334136, 30.083076246960403 ], [ -95.819770132681455, 30.083048246855878 ], [ -95.819896133311062, 30.082999246864144 ], [ -95.820073132604406, 30.082993247251189 ], [ -95.820231133564064, 30.083015247511369 ], [ -95.82036413278351, 30.083015247018388 ], [ -95.820505132893274, 30.082931246976226 ], [ -95.820616132758104, 30.082867247198308 ], [ -95.820730132874431, 30.082762246910928 ], [ -95.820894133225423, 30.082686247466146 ], [ -95.82108413297864, 30.082636247229683 ], [ -95.821242133205089, 30.082565246861741 ], [ -95.821457133645822, 30.082389246977087 ], [ -95.821735133181619, 30.082284246949261 ], [ -95.821896133386829, 30.082247246874925 ], [ -95.822026132975566, 30.082218247015071 ], [ -95.822727133161237, 30.082235246773791 ], [ -95.823309133529918, 30.082361247023094 ], [ -95.824099134191741, 30.082427247404549 ], [ -95.824358134472561, 30.082449247021838 ], [ -95.824648134509928, 30.082416247272938 ], [ -95.824819134374664, 30.082333247344479 ], [ -95.825173134568132, 30.082256246481464 ], [ -95.825707134345691, 30.082200247227913 ], [ -95.826279134618176, 30.082141246968753 ], [ -95.828023135185077, 30.082019247025642 ], [ -95.8281181354523, 30.081981246426917 ], [ -95.828263135467282, 30.081788246972692 ], [ -95.82829113472836, 30.081772247059504 ], [ -95.828352135020552, 30.081739247055097 ], [ -95.828402135353002, 30.081728246897306 ], [ -95.828497135442419, 30.081739246424934 ], [ -95.828586134665755, 30.081783246556064 ], [ -95.828807135182913, 30.081920246967456 ], [ -95.828971135449223, 30.081992247027905 ], [ -95.829110134918835, 30.082036246584966 ], [ -95.829344135241087, 30.082168247067635 ], [ -95.829482134962376, 30.082314246592706 ], [ -95.829509135774686, 30.082343246982955 ], [ -95.830046136006629, 30.083036247077846 ], [ -95.830059135147437, 30.083140247032738 ], [ -95.830046135045521, 30.083250247251485 ], [ -95.829958135457389, 30.083415246977339 ], [ -95.829958135542654, 30.083507247164153 ], [ -95.829958135655616, 30.083575247144424 ], [ -95.830002135940404, 30.08374524715105 ], [ -95.830103135153649, 30.083948246854742 ], [ -95.830286135536937, 30.084086247404063 ], [ -95.830520135458983, 30.084228246715199 ], [ -95.830868136219152, 30.084388246782904 ], [ -95.831215135654432, 30.084448247097928 ], [ -95.831443135833595, 30.0844702467841 ], [ -95.83164513589945, 30.084448247306227 ], [ -95.831828136311927, 30.084377247129584 ], [ -95.831949136134554, 30.084355247162602 ], [ -95.832075135708152, 30.084421247049775 ], [ -95.832252135716772, 30.084536247575681 ], [ -95.832644136365275, 30.084959247422244 ], [ -95.832853136376912, 30.085085247552747 ], [ -95.833048136881672, 30.085129247142675 ], [ -95.833219136231094, 30.085129247258362 ], [ -95.8335101369901, 30.08506324691842 ], [ -95.833838136202601, 30.084915247446421 ], [ -95.834199136897766, 30.084590246667105 ], [ -95.834546136255213, 30.084255247167238 ], [ -95.834660136748013, 30.084184246662488 ], [ -95.835709137049889, 30.083892246464931 ], [ -95.836398137124363, 30.083744246395973 ], [ -95.836865137047667, 30.083573246824386 ], [ -95.837428137613657, 30.0832542470399 ], [ -95.83799613754698, 30.083117246298904 ], [ -95.838224137312352, 30.083095246561431 ], [ -95.838628137376915, 30.083094246721263 ], [ -95.838818137315144, 30.083155246506085 ], [ -95.838951138171694, 30.083248246550152 ], [ -95.839039138376179, 30.08335824677329 ], [ -95.839169138140008, 30.083575246909309 ], [ -95.839182137560869, 30.083684246304507 ], [ -95.839157138318143, 30.083874246520924 ], [ -95.839075138027638, 30.084206246888378 ], [ -95.839068138158083, 30.084357246964487 ], [ -95.839142137573717, 30.084516246598131 ], [ -95.839330137861197, 30.084690246670114 ], [ -95.839617137837024, 30.084892246923754 ], [ -95.839917138091735, 30.085045246849788 ], [ -95.840329138040602, 30.085182246858903 ], [ -95.840504137850701, 30.085220246949039 ], [ -95.840673137905327, 30.085280246876199 ], [ -95.841409138563748, 30.085635247117313 ], [ -95.841889138890167, 30.085902246753299 ], [ -95.842308139174534, 30.086133246700964 ], [ -95.842428138861933, 30.086213247247752 ], [ -95.843527139602116, 30.086945247418171 ], [ -95.843877139362718, 30.087179247392569 ], [ -95.843907139624704, 30.087199247175494 ], [ -95.844091138863888, 30.087385247307026 ], [ -95.844255139257243, 30.087616247432639 ], [ -95.844438139042339, 30.087935247425953 ], [ -95.844597139839877, 30.088309247580856 ], [ -95.844691139755312, 30.088660247974616 ], [ -95.84474813957813, 30.088919247544396 ], [ -95.844729139795618, 30.08908124752487 ], [ -95.84471713938018, 30.089188247867771 ], [ -95.844685139084305, 30.089276247706024 ], [ -95.844445139328414, 30.089578247358979 ], [ -95.844344139922583, 30.089892247533339 ], [ -95.844155139539623, 30.090628247919678 ], [ -95.844022139351097, 30.090848248040274 ], [ -95.843770139901011, 30.091409248242577 ], [ -95.843568139494749, 30.091662248389945 ], [ -95.843302139629998, 30.09186524834994 ], [ -95.843214139826586, 30.091970248518933 ], [ -95.842999138850502, 30.092624248092608 ], [ -95.842919139081914, 30.093284248115129 ], [ -95.842861139511584, 30.09377324826151 ], [ -95.842797139237319, 30.094130248895897 ], [ -95.842747139367461, 30.094646248794039 ], [ -95.842754139707495, 30.094839249091415 ], [ -95.842969139301957, 30.095284249309948 ], [ -95.843203139298481, 30.095702248626804 ], [ -95.843468139594393, 30.095921249083514 ], [ -95.843595139498404, 30.096070249248669 ], [ -95.843622139600143, 30.096122249251223 ], [ -95.843746139965162, 30.096355249269784 ], [ -95.84391713981654, 30.096575249566978 ], [ -95.844082140090165, 30.096658249027026 ], [ -95.844315139478113, 30.096696249258478 ], [ -95.84463814017532, 30.096647249562899 ], [ -95.844809140189, 30.096641249392626 ], [ -95.845036140372471, 30.09672324958574 ], [ -95.845460140479744, 30.096982248960522 ], [ -95.845839140567264, 30.097245249639695 ], [ -95.846041139965422, 30.097328249042647 ], [ -95.846105140138647, 30.097388249372383 ], [ -95.846105139845264, 30.097476249018417 ], [ -95.846010139936553, 30.097646249580443 ], [ -95.845947139846928, 30.097905249389889 ], [ -95.846023140299692, 30.098487249678612 ], [ -95.846137140587487, 30.099053249736379 ], [ -95.846155140798942, 30.099083249986826 ], [ -95.846295140184964, 30.099317249622381 ], [ -95.846371140761136, 30.099422249792763 ], [ -95.84637714023421, 30.099586249786505 ], [ -95.846327140446007, 30.100059250167327 ], [ -95.846422140719426, 30.100372250296161 ], [ -95.846491140685416, 30.100460249906959 ], [ -95.8465741402417, 30.100499249450113 ], [ -95.84665614042261, 30.100504249782794 ], [ -95.846752140560156, 30.100499249732586 ], [ -95.847111140652032, 30.100482249936022 ], [ -95.84728414090354, 30.100445249746361 ], [ -95.847459141145535, 30.100409250122521 ], [ -95.848691141201684, 30.100152249302862 ], [ -95.848925141204973, 30.100146250076541 ], [ -95.849152141413867, 30.100174249843878 ], [ -95.849424141204437, 30.100250249378398 ], [ -95.849709141842325, 30.100443249639053 ], [ -95.849842141927368, 30.100558249340612 ], [ -95.850095141063846, 30.100888250027975 ], [ -95.8501331411764, 30.101014249532827 ], [ -95.850126141550419, 30.101108249701074 ], [ -95.850044141129231, 30.101207249692656 ], [ -95.85004414123739, 30.101289249607621 ], [ -95.850082141147169, 30.10139324991799 ], [ -95.850576142045369, 30.102097250220318 ], [ -95.850835141426643, 30.102157250313496 ], [ -95.851037141595441, 30.10217424965203 ], [ -95.851208141912352, 30.10213025046572 ], [ -95.851625141757665, 30.10190425037873 ], [ -95.851770142322422, 30.101893250119694 ], [ -95.852276141839894, 30.101915250010567 ], [ -95.852725142376656, 30.101876249895703 ], [ -95.853578142075222, 30.101738250148951 ], [ -95.854457142711638, 30.101689249676745 ], [ -95.854728143164877, 30.101743250013925 ], [ -95.855399142642568, 30.102002249415204 ], [ -95.855727143421191, 30.102078249563949 ], [ -95.855999142609562, 30.102106250158748 ], [ -95.856201143519101, 30.102095250294848 ], [ -95.856284143646548, 30.102051249443001 ], [ -95.856340142715666, 30.101858250098495 ], [ -95.856410142685291, 30.101770250183982 ], [ -95.856530142882079, 30.101737249616956 ], [ -95.856650143618481, 30.101726249908555 ], [ -95.856795143124089, 30.101743250111912 ], [ -95.856909142815937, 30.101803249524426 ], [ -95.856947142846295, 30.101908249433688 ], [ -95.856992143274056, 30.102199250057399 ], [ -95.856993142810495, 30.102260249582862 ], [ -95.856997143787495, 30.102756250077039 ], [ -95.856991143411307, 30.103069249831758 ], [ -95.857029143382974, 30.103583250103789 ], [ -95.857130143253642, 30.104081250256357 ], [ -95.857193143058097, 30.10422925050139 ], [ -95.857388143439778, 30.104404250587571 ], [ -95.857709143101189, 30.104607250384824 ], [ -95.857929144106862, 30.104694250758101 ], [ -95.858439143958037, 30.104787250699776 ], [ -95.859030144345795, 30.104985250467436 ], [ -95.86003114389159, 30.105274250779797 ], [ -95.860201143917976, 30.105383250303571 ], [ -95.860283143920626, 30.105411250246782 ], [ -95.86045314421591, 30.105373250683385 ], [ -95.860912144617004, 30.105296250222572 ], [ -95.861228144574696, 30.105301250101981 ], [ -95.861441144215135, 30.105362250279523 ], [ -95.861749144516381, 30.105520249958868 ], [ -95.861934144759346, 30.105613250258859 ], [ -95.862016144569921, 30.105730250798686 ], [ -95.862125144412857, 30.105938250179598 ], [ -95.862200144651808, 30.106043250688558 ], [ -95.862309144403966, 30.106142250783755 ], [ -95.862514145304729, 30.106276250530986 ], [ -95.862841144927302, 30.106488250450237 ], [ -95.862981144917597, 30.106675250178306 ], [ -95.863122145158471, 30.10697725085285 ], [ -95.863185145178733, 30.107313250248442 ], [ -95.863250144667802, 30.10788025070212 ], [ -95.863276144936691, 30.108365250674574 ], [ -95.863277145219229, 30.108811250987177 ], [ -95.863252145673755, 30.108954250569308 ], [ -95.863183145537633, 30.109109250703881 ], [ -95.863151144971184, 30.109279250731849 ], [ -95.863151144864545, 30.109356251462479 ], [ -95.863170144960023, 30.109444251346641 ], [ -95.863222145547155, 30.109554251119334 ], [ -95.863361144965666, 30.10969125085278 ], [ -95.863463145804431, 30.109846251442356 ], [ -95.863539145836157, 30.10999525159119 ], [ -95.863520145632222, 30.110137251279109 ], [ -95.863426144817012, 30.110236251608725 ], [ -95.863116145184122, 30.110369251081661 ], [ -95.862464145015181, 30.110702251017695 ], [ -95.862369145297066, 30.110779251741619 ], [ -95.862338144787202, 30.110950251293819 ], [ -95.862382144629137, 30.11107625101754 ], [ -95.862491145139458, 30.111346251493067 ], [ -95.862554145348824, 30.111455251845385 ], [ -95.862827145386987, 30.111664251272973 ], [ -95.863075145483009, 30.111911251228239 ], [ -95.863234145613433, 30.112138251294393 ], [ -95.863335145116423, 30.112396252111601 ], [ -95.863437145238308, 30.112539251700749 ], [ -95.863583145865533, 30.112682252177216 ], [ -95.86373614591048, 30.112813251586648 ], [ -95.864015145165169, 30.112989252110548 ], [ -95.864288145701011, 30.113236252244825 ], [ -95.864885145496785, 30.113813251981657 ], [ -95.865088145630253, 30.114028251979079 ], [ -95.865424145952986, 30.114298252317756 ], [ -95.865729145852555, 30.114462252328384 ], [ -95.86587414577815, 30.114468252191536 ], [ -95.865994146645505, 30.114490251839253 ], [ -95.866095146288799, 30.114545252450323 ], [ -95.866171146169762, 30.114600251623425 ], [ -95.866247146180129, 30.114632251852473 ], [ -95.866348146134783, 30.114654252436829 ], [ -95.866633146568191, 30.114660252019959 ], [ -95.866791146332872, 30.114693251793454 ], [ -95.866981146189261, 30.11471525238311 ], [ -95.867113146061115, 30.114769251600844 ], [ -95.867208145991981, 30.114841251788324 ], [ -95.867303146457061, 30.114940252264308 ], [ -95.867367146841389, 30.115028251707557 ], [ -95.867413146710376, 30.11507125180583 ], [ -95.867480146708203, 30.115132252123818 ], [ -95.867535146897012, 30.115170251977435 ], [ -95.867582146395321, 30.115203251804587 ], [ -95.867980146681404, 30.11532225242961 ], [ -95.868132147116285, 30.115368252318504 ], [ -95.868328146618239, 30.115522251840364 ], [ -95.868467146596984, 30.115610251754976 ], [ -95.868517147168532, 30.11567625233555 ], [ -95.868518147286792, 30.115786252409425 ], [ -95.86849914653591, 30.115884252594558 ], [ -95.868398146817512, 30.115961252187304 ], [ -95.868208147170776, 30.116082251920915 ], [ -95.868145146681854, 30.116231252660469 ], [ -95.868126146434349, 30.11631325240273 ], [ -95.868120147185223, 30.11656625193547 ], [ -95.868145146738172, 30.116874252803228 ], [ -95.868215147332393, 30.117248252455109 ], [ -95.868291147019477, 30.117418252745281 ], [ -95.868418147423682, 30.11751525213284 ], [ -95.868456146948247, 30.117544252658817 ], [ -95.868664147070561, 30.117649252756227 ], [ -95.869170147424271, 30.117819252422603 ], [ -95.870188147289511, 30.117983252306207 ], [ -95.870384146942229, 30.11800025260176 ], [ -95.870498147043762, 30.117994252630915 ], [ -95.870599147158387, 30.117955252640574 ], [ -95.870757147591149, 30.117917252118463 ], [ -95.871825148131848, 30.117878252392131 ], [ -95.872129147622474, 30.117889252891469 ], [ -95.872331147731458, 30.117960252394521 ], [ -95.872496148155804, 30.118097252530109 ], [ -95.872686147729226, 30.118339252146136 ], [ -95.872793148155267, 30.118553252667297 ], [ -95.872812147831524, 30.118729252628235 ], [ -95.872819147626487, 30.11895525241923 ], [ -95.872794148380407, 30.119202252597645 ], [ -95.872768148607875, 30.119345252421791 ], [ -95.872699148352012, 30.119532252838351 ], [ -95.872623148295816, 30.119548253010965 ], [ -95.872427148568946, 30.11955925263204 ], [ -95.872313147776879, 30.119587253170998 ], [ -95.872219148383792, 30.119631252554694 ], [ -95.872130147656662, 30.11973525260488 ], [ -95.872061147619988, 30.119845252445376 ], [ -95.872023147461462, 30.120005253053879 ], [ -95.872023148233424, 30.120263253189684 ], [ -95.872099147916913, 30.120494252618407 ], [ -95.872169148434736, 30.120598253032927 ], [ -95.872526147927772, 30.120885253332354 ], [ -95.873092148601245, 30.121340253031224 ], [ -95.873194148195893, 30.121439252710665 ], [ -95.87325714848825, 30.121543253081626 ], [ -95.873295148789566, 30.121708253256564 ], [ -95.873371148696421, 30.121856253025104 ], [ -95.873529148633992, 30.121977253576251 ], [ -95.873750148517104, 30.12210925351253 ], [ -95.873940148316365, 30.122191253689312 ], [ -95.874060148791003, 30.122230253278062 ], [ -95.87421814826395, 30.122224252889865 ], [ -95.874326148320449, 30.122202253291647 ], [ -95.874503148479036, 30.122086253010881 ], [ -95.875008148687954, 30.121614252791328 ], [ -95.875182148745168, 30.121430253140591 ], [ -95.875422149275963, 30.121179253134152 ], [ -95.875656148596462, 30.120954252597734 ], [ -95.875725149046829, 30.12089925322401 ], [ -95.875814148609606, 30.120855252599679 ], [ -95.875915148736212, 30.120822252605826 ], [ -95.876023148997632, 30.120828252724145 ], [ -95.876117148813265, 30.120855253239828 ], [ -95.876218149025888, 30.120916252521823 ], [ -95.876275149301136, 30.120938253171627 ], [ -95.876332149251283, 30.120949252993782 ], [ -95.876471149424034, 30.120943252755382 ], [ -95.876547148796874, 30.120927253098934 ], [ -95.876661148988262, 30.120877252790368 ], [ -95.8772051495272, 30.120603252984203 ], [ -95.877414149138716, 30.120542253169319 ], [ -95.877665149043722, 30.120497252862361 ], [ -95.87775514900207, 30.120482252581439 ], [ -95.878217149479894, 30.120438252534164 ], [ -95.878580150132933, 30.120372253001207 ], [ -95.878599149687105, 30.120366253199798 ], [ -95.878735149219722, 30.120361253107166 ], [ -95.878893149702066, 30.12038425277099 ], [ -95.878969149894147, 30.120405252882207 ], [ -95.879051149361999, 30.120450252775544 ], [ -95.879222149983022, 30.120565252826818 ], [ -95.879380149614832, 30.120691253202814 ], [ -95.879414150198002, 30.120724253003083 ], [ -95.879588149611536, 30.120895252880086 ], [ -95.879645150106796, 30.12097225241526 ], [ -95.879689150336034, 30.121060252523595 ], [ -95.87971514979742, 30.121159252721313 ], [ -95.879740150270194, 30.12159325280652 ], [ -95.879708150103838, 30.121785253358862 ], [ -95.879752150023663, 30.121890252724473 ], [ -95.879910149861331, 30.122115253069733 ], [ -95.880112150354648, 30.122335252748439 ], [ -95.880188150487996, 30.122396252896912 ], [ -95.880270150190327, 30.122506253123696 ], [ -95.880498150541555, 30.122852253241096 ], [ -95.880542150218488, 30.122956253265119 ], [ -95.880599149887587, 30.123050253387561 ], [ -95.880625150325599, 30.123084253090681 ], [ -95.880700150778395, 30.123182253335063 ], [ -95.880839150299721, 30.123253253025087 ], [ -95.880946150692822, 30.123264253438386 ], [ -95.881098150530292, 30.123237253077001 ], [ -95.881212150435985, 30.123204253665232 ], [ -95.881459150193223, 30.123110252811934 ], [ -95.881465150716295, 30.122951253435392 ], [ -95.881674150088443, 30.12258325320845 ], [ -95.881712150668093, 30.122457253510156 ], [ -95.881706150830198, 30.122165252725679 ], [ -95.881737150885414, 30.12198925330064 ], [ -95.881775150881083, 30.121907253048715 ], [ -95.88196515066042, 30.121632252544146 ], [ -95.882292150522076, 30.121323253195783 ], [ -95.882420150706537, 30.121204252345226 ], [ -95.882503150677792, 30.121121252714381 ], [ -95.882547150933746, 30.121061252996171 ], [ -95.88259115036216, 30.120962252368042 ], [ -95.882674151033996, 30.120511252630191 ], [ -95.882705150803972, 30.120258252852647 ], [ -95.882724150411804, 30.120198252983766 ], [ -95.882781151162106, 30.120066252550536 ], [ -95.88282615047865, 30.120006252422261 ], [ -95.882996151220894, 30.119835252824327 ], [ -95.883072150591559, 30.119797252463691 ], [ -95.883123150536534, 30.119780252841959 ], [ -95.883338150878913, 30.119775252345843 ], [ -95.883496150493514, 30.119792252558192 ], [ -95.883774151124626, 30.11979225235569 ], [ -95.884318151102519, 30.11972025235869 ], [ -95.884514151454596, 30.119726252818335 ], [ -95.884647151208114, 30.11972025228329 ], [ -95.884855151109775, 30.119731252675262 ], [ -95.884963151437347, 30.119743252295184 ], [ -95.885159151191445, 30.119781252422115 ], [ -95.885241150812462, 30.11982025267524 ], [ -95.885342151418811, 30.119919252316667 ], [ -95.885424151231462, 30.120072252626738 ], [ -95.885493151899766, 30.120166252476135 ], [ -95.885512151162231, 30.120210252436866 ], [ -95.885595151822756, 30.120259252139682 ], [ -95.885727151721554, 30.120303252468041 ], [ -95.88581615118953, 30.12034725242259 ], [ -95.885892151165081, 30.120402252617563 ], [ -95.886050151245158, 30.120534252551533 ], [ -95.886296151761385, 30.120793252558027 ], [ -95.886429152146448, 30.120859252501663 ], [ -95.886492151534938, 30.1208812522828 ], [ -95.886530152156396, 30.120908252242241 ], [ -95.886568151851449, 30.120919252772126 ], [ -95.886777151379476, 30.120941252375935 ], [ -95.886878151344249, 30.120925252555132 ], [ -95.886979151303777, 30.120897252887016 ], [ -95.886998151989033, 30.120892252744298 ], [ -95.887067151784009, 30.120848252960922 ], [ -95.887162151564993, 30.120744252297314 ], [ -95.88727015158446, 30.120535252784009 ], [ -95.887346152230833, 30.120282252252807 ], [ -95.887390152289498, 30.120194252731157 ], [ -95.887479151508472, 30.120079252077815 ], [ -95.887529151573986, 30.120035252761138 ], [ -95.887662151699388, 30.11995825231374 ], [ -95.887795152299446, 30.119914252256144 ], [ -95.887871152100473, 30.119908252544541 ], [ -95.888067152459001, 30.119925252194118 ], [ -95.888130152212184, 30.119958251999694 ], [ -95.888168151901766, 30.119991252722759 ], [ -95.888376152539692, 30.120233252072911 ], [ -95.888705151720174, 30.120293252596916 ], [ -95.889261151877974, 30.120370252504244 ], [ -95.889476152862301, 30.12036525211953 ], [ -95.88966015247631, 30.120316252462366 ], [ -95.889824152330846, 30.12025025192851 ], [ -95.889857152172851, 30.1202202525945 ], [ -95.889881152105303, 30.12020025265678 ], [ -95.889982152801309, 30.12008525269049 ], [ -95.889982152146715, 30.120002252400859 ], [ -95.889919152065403, 30.119920252685642 ], [ -95.889616152153422, 30.119749252286301 ], [ -95.889515152357774, 30.119651252254172 ], [ -95.889420152381447, 30.119508252553583 ], [ -95.889344152384865, 30.119332252215926 ], [ -95.889350152142171, 30.119216252090123 ], [ -95.889376152845713, 30.119172252037977 ], [ -95.889483152659608, 30.119106252085484 ], [ -95.889673152906241, 30.119024251736167 ], [ -95.8897301523658, 30.118986252284898 ], [ -95.889888152465559, 30.118936252217733 ], [ -95.890002152582696, 30.118914251668713 ], [ -95.890109152890261, 30.118909251814472 ], [ -95.890330152714341, 30.118936252267869 ], [ -95.890558152582202, 30.118986252291133 ], [ -95.890811153127984, 30.119024251638734 ], [ -95.8910001527627, 30.11910725224886 ], [ -95.891285153160027, 30.119299252080712 ], [ -95.891424153088366, 30.119464251861707 ], [ -95.891462152742108, 30.119525251695759 ], [ -95.891531153188595, 30.119591251897472 ], [ -95.891790153360731, 30.119800251773576 ], [ -95.892113152926214, 30.12004725178824 ], [ -95.892271152994354, 30.120168252525708 ], [ -95.892448153353669, 30.120256252107428 ], [ -95.892606153423287, 30.12029425220943 ], [ -95.892909153253996, 30.120338252377444 ], [ -95.893080153324362, 30.120327251881111 ], [ -95.89328915329925, 30.120289252518223 ], [ -95.893561153048253, 30.120256251816986 ], [ -95.893794153311305, 30.120229251753457 ], [ -95.894047154009158, 30.120278251971673 ], [ -95.894243153873731, 30.120350252651001 ], [ -95.894325154003653, 30.120394252215309 ], [ -95.894654153408098, 30.120636252247639 ], [ -95.894888153781864, 30.120850252056336 ], [ -95.894932153500662, 30.120938252282148 ], [ -95.894951153902923, 30.12103125243555 ], [ -95.894907153515973, 30.121356252223084 ], [ -95.894907154382409, 30.121471252008952 ], [ -95.894938153590218, 30.121680252663396 ], [ -95.895039153805953, 30.121894252547801 ], [ -95.895102153783171, 30.121960252121767 ], [ -95.895229154455265, 30.122043252830103 ], [ -95.895368153568256, 30.122098252414091 ], [ -95.895450154207495, 30.122164252714729 ], [ -95.895551154386851, 30.122263252429164 ], [ -95.89566515372023, 30.122329252962 ], [ -95.896019154021587, 30.122477252415639 ], [ -95.896556153862718, 30.122675252474231 ], [ -95.896664154176307, 30.122692252925994 ], [ -95.89678715399711, 30.122702252601318 ], [ -95.897012154048497, 30.122697252380551 ], [ -95.897151154700111, 30.122664252339156 ], [ -95.897227154294569, 30.122637252960313 ], [ -95.89739115407356, 30.122538252812337 ], [ -95.897688154771458, 30.122313252479415 ], [ -95.897884154401794, 30.12214825263208 ], [ -95.89816915471819, 30.121741252052157 ], [ -95.898340155002771, 30.121346252318983 ], [ -95.898365155135835, 30.121230252597272 ], [ -95.898371154384407, 30.121098252123719 ], [ -95.898390154582671, 30.120999252257629 ], [ -95.898416154524952, 30.120961251775213 ], [ -95.898466155027677, 30.120928251965438 ], [ -95.898523154624712, 30.120917252574142 ], [ -95.89862415498942, 30.120933252619693 ], [ -95.898707154960391, 30.120972252231869 ], [ -95.898896154912038, 30.120950252542436 ], [ -95.89916115449266, 30.121015251914354 ], [ -95.89923015544214, 30.121053252523893 ], [ -95.899420154836676, 30.121224251884101 ], [ -95.899445155303127, 30.121273252207818 ], [ -95.89944015546078, 30.121378252181543 ], [ -95.89933815459662, 30.121609252608948 ], [ -95.899320155035014, 30.121674251870225 ], [ -95.899326155235329, 30.121718252352576 ], [ -95.899402155430138, 30.121894252768101 ], [ -95.899408155468564, 30.121949252166395 ], [ -95.899402154531458, 30.121982252295588 ], [ -95.899282154830402, 30.122098252319606 ], [ -95.899218154700137, 30.122197252633278 ], [ -95.899218155458485, 30.122296252021922 ], [ -95.899281155296222, 30.122455252213122 ], [ -95.899338154769069, 30.122537252407295 ], [ -95.899420155144966, 30.122603252910363 ], [ -95.899465155128794, 30.12263125243177 ], [ -95.899559154756446, 30.122664252921833 ], [ -95.899680154834925, 30.122691252723715 ], [ -95.899857155550947, 30.122697252057673 ], [ -95.899970155586416, 30.122691252722625 ], [ -95.900129155020394, 30.122664252441258 ], [ -95.900438155045492, 30.122664252531731 ], [ -95.90057115568257, 30.122686252421822 ], [ -95.900742155093766, 30.122735252471269 ], [ -95.901165155624057, 30.122950252163733 ], [ -95.90128515541177, 30.122994252857904 ], [ -95.90151915513097, 30.123038252684154 ], [ -95.901564155200376, 30.123054252663181 ], [ -95.901646155166887, 30.123060252232474 ], [ -95.901703155583974, 30.123016252041506 ], [ -95.901753155919891, 30.122906252290438 ], [ -95.901804155935238, 30.122851252089468 ], [ -95.901854155255606, 30.12285125228868 ], [ -95.902038155459209, 30.122934252590081 ], [ -95.90207615565194, 30.122961252525837 ], [ -95.902189155880023, 30.123005252721896 ], [ -95.902215155392781, 30.123027252856833 ], [ -95.902297156200419, 30.123137252629977 ], [ -95.902316155347563, 30.123219252553849 ], [ -95.902284156250587, 30.123659252778722 ], [ -95.902335155972366, 30.123731252473974 ], [ -95.90237315587953, 30.124082252752984 ], [ -95.902480155694363, 30.124692252398933 ], [ -95.902549155576637, 30.124802253018942 ], [ -95.902600155987059, 30.124846252652855 ], [ -95.902884156117594, 30.125005252875301 ], [ -95.903054155741287, 30.125082252897133 ], [ -95.90317515609182, 30.125087252540524 ], [ -95.903193155813156, 30.125131252878752 ], [ -95.903453156024767, 30.12536825281202 ], [ -95.904041156758993, 30.12581325339886 ], [ -95.904306156767532, 30.125939253194701 ], [ -95.904698156322127, 30.126049252784274 ], [ -95.9047991567152, 30.126088252935702 ], [ -95.904824156103885, 30.126148252755698 ], [ -95.904812156546512, 30.126264252866736 ], [ -95.904717156847141, 30.126654252994051 ], [ -95.904723156769279, 30.126808252854193 ], [ -95.90475515612404, 30.126896253007722 ], [ -95.904913156209645, 30.127066252901123 ], [ -95.905026157003789, 30.127143253515751 ], [ -95.905229156566719, 30.127319253621977 ], [ -95.905330156530766, 30.12747325343728 ], [ -95.90536815726125, 30.127512252941489 ], [ -95.905437156975907, 30.127506253628372 ], [ -95.905589156369444, 30.127462253523259 ], [ -95.905741156525963, 30.127440252848665 ], [ -95.905975157320924, 30.12738025329941 ], [ -95.906360157151113, 30.127319253001513 ], [ -95.906493157239268, 30.127248253513152 ], [ -95.906613156807197, 30.127078252797197 ], [ -95.906677157185811, 30.126902253426543 ], [ -95.906771156902408, 30.126814252782896 ], [ -95.906885157582522, 30.126792253230491 ], [ -95.907012157532535, 30.126803253168191 ], [ -95.907145156961406, 30.126830253052308 ], [ -95.90808015717009, 30.127160253154283 ], [ -95.908782157735203, 30.127435252691996 ], [ -95.909123158223608, 30.127479253227648 ], [ -95.909243157971829, 30.12750725268393 ], [ -95.909654158383347, 30.127787253378084 ], [ -95.910141157749663, 30.12809025360913 ], [ -95.910280157967634, 30.128128253483553 ], [ -95.91040715788202, 30.128128253093834 ], [ -95.910596158417789, 30.128057253543233 ], [ -95.910710158491867, 30.1280462532171 ], [ -95.910834158191733, 30.128067253563991 ], [ -95.910938157967237, 30.128084253334229 ], [ -95.911007158040221, 30.128084253265172 ], [ -95.911089158256431, 30.128112252833688 ], [ -95.911140158325736, 30.128172252816167 ], [ -95.911153158465879, 30.128211253158053 ], [ -95.911145158830976, 30.128436253028571 ], [ -95.911063158214972, 30.128678252848982 ], [ -95.911012157919359, 30.128738253158481 ], [ -95.911006158655411, 30.129035253614266 ], [ -95.911063157871226, 30.129535253107441 ], [ -95.911082158812249, 30.129563253394661 ], [ -95.911259158478941, 30.129634253254554 ], [ -95.911619158970481, 30.12979925320198 ], [ -95.911733158600001, 30.129975253395159 ], [ -95.911922159074464, 30.130371253280824 ], [ -95.912201158201356, 30.130558254059594 ], [ -95.912592158334022, 30.130877253773466 ], [ -95.912738158722547, 30.131146254040683 ], [ -95.913029159139427, 30.131234253553426 ], [ -95.913351158817989, 30.131146253843401 ], [ -95.915109159832625, 30.131135253498414 ], [ -95.915217159802822, 30.131031254078842 ], [ -95.915249159141823, 30.130970253398456 ], [ -95.915300159646208, 30.130916253652135 ], [ -95.915356159768976, 30.130910253422634 ], [ -95.915521159407319, 30.130932253601163 ], [ -95.915584159543343, 30.130971253865653 ], [ -95.91600815934757, 30.131306253821528 ], [ -95.916242159662517, 30.131586253986345 ], [ -95.91631715935543, 30.131663253349455 ], [ -95.91650716010642, 30.131779253320563 ], [ -95.916570159396571, 30.131839253568241 ], [ -95.916633160049841, 30.131943253695596 ], [ -95.916754160362288, 30.132207254235432 ], [ -95.917088159966269, 30.132598253541314 ], [ -95.917208159739317, 30.132680253478803 ], [ -95.917315159857765, 30.132741253607584 ], [ -95.917405159962641, 30.132758254061947 ], [ -95.917417160515186, 30.133038253980629 ], [ -95.917398159746739, 30.133115254397591 ], [ -95.917354159762198, 30.133165254208851 ], [ -95.917246160353912, 30.133220254143602 ], [ -95.917196159966778, 30.13328625366989 ], [ -95.917152159779121, 30.133313254042434 ], [ -95.917126159564617, 30.133379253997706 ], [ -95.917126159633597, 30.133434253586579 ], [ -95.917164159874105, 30.133500253858809 ], [ -95.917291160090556, 30.133588253736093 ], [ -95.917468159858231, 30.133643253974476 ], [ -95.917759160063071, 30.133758254478238 ], [ -95.91779716047175, 30.133802254185341 ], [ -95.917828160215237, 30.133808254535982 ], [ -95.917853160692459, 30.133802254059805 ], [ -95.917879160134149, 30.133714254498251 ], [ -95.918018160556613, 30.133703253970868 ], [ -95.918087159864996, 30.133714254411359 ], [ -95.918353160449854, 30.133918254337303 ], [ -95.918669160010879, 30.134006254457645 ], [ -95.918808160120648, 30.134127254372753 ], [ -95.91883316011328, 30.134193254148002 ], [ -95.918764160904004, 30.134368254117923 ], [ -95.918707160293948, 30.134577254529933 ], [ -95.918719160035465, 30.13477525466655 ], [ -95.918719160626225, 30.134797254134106 ], [ -95.918830160667326, 30.134964254711598 ], [ -95.918903160749196, 30.135072254748284 ], [ -95.919010160819923, 30.135396254097138 ], [ -95.919130160654063, 30.13550125416582 ], [ -95.919168161161195, 30.135505254109258 ], [ -95.919263160975035, 30.135517254575387 ], [ -95.9193901606602, 30.135506254791554 ], [ -95.91946516053126, 30.135490254022599 ], [ -95.919554161194824, 30.135457254386388 ], [ -95.919674160657081, 30.135396254617362 ], [ -95.919807161281213, 30.135259254673851 ], [ -95.91987616122185, 30.13522625438496 ], [ -95.920009161274223, 30.135221254507194 ], [ -95.920180161246094, 30.135265254727553 ], [ -95.920452160624365, 30.135501254141449 ], [ -95.920540160825183, 30.135567254601092 ], [ -95.921059161553316, 30.135754253972692 ], [ -95.921324160755759, 30.135869254136924 ], [ -95.921438161424604, 30.135974254636956 ], [ -95.921845161416798, 30.136453254127893 ], [ -95.921900160933504, 30.13651825483749 ], [ -95.921988160969306, 30.136677254130827 ], [ -95.922026161822657, 30.137765254696369 ], [ -95.922001161245618, 30.137908254583262 ], [ -95.921950161112761, 30.138013254785751 ], [ -95.921665161810807, 30.138381254822885 ], [ -95.921640161677388, 30.138535255238828 ], [ -95.921697161365628, 30.138672255069608 ], [ -95.921773161847227, 30.138749254911094 ], [ -95.921893161400448, 30.13877725520496 ], [ -95.922038161278195, 30.138788255323085 ], [ -95.922355161736718, 30.138771255304047 ], [ -95.923113162071047, 30.138606254627966 ], [ -95.92337316146201, 30.13860625511731 ], [ -95.92356216235072, 30.138645255156792 ], [ -95.923619161532784, 30.138705255309365 ], [ -95.923840162351127, 30.139002254566119 ], [ -95.924365162182326, 30.139420254718814 ], [ -95.924555162749698, 30.139656255383628 ], [ -95.924561161875971, 30.139915254809452 ], [ -95.924454162449379, 30.140233255224036 ], [ -95.924283162177602, 30.140541255305628 ], [ -95.924169161934429, 30.140794255078823 ], [ -95.924024162580849, 30.141162255174276 ], [ -95.924024161718251, 30.141332255301286 ], [ -95.924049162062005, 30.141448255493628 ], [ -95.924080162299461, 30.14151425581386 ], [ -95.924276162533985, 30.14169525549049 ], [ -95.924327162148529, 30.141811255328427 ], [ -95.924327162107417, 30.141932255441326 ], [ -95.924276162027311, 30.142173255691247 ], [ -95.924276162612387, 30.14228325521951 ], [ -95.92437116254726, 30.142399255674697 ], [ -95.924428161832367, 30.142421255953408 ], [ -95.924559162397784, 30.142392255265097 ], [ -95.924630162578424, 30.142377255672844 ], [ -95.924757162198958, 30.142322255562476 ], [ -95.925313162440673, 30.141976255075633 ], [ -95.92544016250946, 30.141926255590878 ], [ -95.925857163033996, 30.141811255793051 ], [ -95.926218162660334, 30.141739255452784 ], [ -95.926256163117529, 30.141701255291263 ], [ -95.926243162775023, 30.141662254979689 ], [ -95.926173162388778, 30.141607255360068 ], [ -95.926167162936295, 30.141563254926456 ], [ -95.926230162937856, 30.141520255305956 ], [ -95.926319162311287, 30.14150325571142 ], [ -95.926445162948653, 30.141519255798332 ], [ -95.926603163165694, 30.141563255453537 ], [ -95.926983162994404, 30.141871254961437 ], [ -95.927350162775909, 30.142135255489908 ], [ -95.927609163175362, 30.142437255069499 ], [ -95.927748162963354, 30.142784255610955 ], [ -95.927868163714606, 30.142932255908224 ], [ -95.927969163401826, 30.142970255962684 ], [ -95.928159163106216, 30.143163255672185 ], [ -95.928209163442247, 30.143273256075062 ], [ -95.92826616352977, 30.143344255518269 ], [ -95.928393163514514, 30.143405255224721 ], [ -95.928513163249931, 30.143476255391281 ], [ -95.92855116373201, 30.143564255775932 ], [ -95.928551163952491, 30.143663255465327 ], [ -95.92857016328847, 30.143844255538443 ], [ -95.928633163520132, 30.143987255523527 ], [ -95.928810164014919, 30.144119255755605 ], [ -95.92893716401025, 30.144163255917007 ], [ -95.92906316402015, 30.144180256030833 ], [ -95.929708163253508, 30.144152256154751 ], [ -95.929917163369666, 30.14415825583497 ], [ -95.930492164035968, 30.144240255859714 ], [ -95.930726163640074, 30.144328255875603 ], [ -95.930891164316364, 30.144438255436267 ], [ -95.931030163989419, 30.144498255698117 ], [ -95.931219164171253, 30.144498256204901 ], [ -95.931384163932336, 30.144482255888953 ], [ -95.931485164200851, 30.144460255531708 ], [ -95.93161816445398, 30.144312255667263 ], [ -95.931769163861375, 30.14402025567173 ], [ -95.931991164394944, 30.143713255659151 ], [ -95.93203516443991, 30.143509255251022 ], [ -95.932086164441486, 30.143399255803711 ], [ -95.93218716443269, 30.14331125518892 ], [ -95.932294163881807, 30.143273255693479 ], [ -95.932522164362041, 30.143278255193362 ], [ -95.932598164529708, 30.143289255086138 ], [ -95.93273116464492, 30.143372255908226 ], [ -95.933028164742566, 30.143817255348203 ], [ -95.933135164997509, 30.143938255175296 ], [ -95.933534164503129, 30.144125255302981 ], [ -95.9337241652388, 30.144185255642569 ], [ -95.933995164934444, 30.144251255578514 ], [ -95.934185164780246, 30.144389255354366 ], [ -95.934223165271774, 30.144477255790438 ], [ -95.93439416532938, 30.144620255758664 ], [ -95.934653164987566, 30.144757256113703 ], [ -95.934830165478388, 30.144619255612529 ], [ -95.934950165311861, 30.144328255174823 ], [ -95.935140165333792, 30.144169255940898 ], [ -95.935425164964926, 30.144086255961099 ], [ -95.935557165115497, 30.144081255609748 ], [ -95.935621164843269, 30.144103255299452 ], [ -95.936095165278701, 30.14449325520048 ], [ -95.93641116522906, 30.144663256026366 ], [ -95.936854165987214, 30.144883256103572 ], [ -95.937050165694444, 30.145103256129477 ], [ -95.937163165554793, 30.145394255860442 ], [ -95.937252166088214, 30.145422255597591 ], [ -95.937397165696751, 30.145493255420892 ], [ -95.937461165558375, 30.145477255871768 ], [ -95.937568165772987, 30.145416255780543 ], [ -95.937733166125909, 30.14529525528458 ], [ -95.937834165860792, 30.145169255843598 ], [ -95.938175166317592, 30.144839255498518 ], [ -95.938283166249818, 30.144724255847034 ], [ -95.938327166524417, 30.14464125515477 ], [ -95.938415166111938, 30.144581255934671 ], [ -95.938453166265859, 30.144532255516147 ], [ -95.939313166029379, 30.144114255137453 ], [ -95.939478165906991, 30.144053255538996 ], [ -95.939514166413872, 30.144035255397874 ], [ -95.939648166193763, 30.14397125549884 ], [ -95.93970016598918, 30.143957255127074 ], [ -95.939737166260386, 30.143949255761996 ], [ -95.939864166419426, 30.143949255097411 ], [ -95.939939166820423, 30.143960255142872 ], [ -95.940129166613346, 30.14404825574659 ], [ -95.940224166154835, 30.144108255443303 ], [ -95.940269166719162, 30.144121254982505 ], [ -95.940464166451036, 30.144180255747038 ], [ -95.940635166805265, 30.144235255080382 ], [ -95.940736166260209, 30.144306255111264 ], [ -95.940793166673004, 30.144306255416829 ], [ -95.940863167077097, 30.144339255107891 ], [ -95.940983166554261, 30.144482255421622 ], [ -95.940995166193773, 30.1445752558067 ], [ -95.940983167098651, 30.144658255819312 ], [ -95.940951166728922, 30.144729255438161 ], [ -95.940686166209218, 30.145164256010773 ], [ -95.940553166213164, 30.145603256030302 ], [ -95.940566166609699, 30.145708256125122 ], [ -95.940641166429728, 30.145741255879603 ], [ -95.940781166570815, 30.145735255528962 ], [ -95.940901166537145, 30.145752256017328 ], [ -95.940996166716673, 30.145774255903259 ], [ -95.941078167142564, 30.145807255761245 ], [ -95.941426166508663, 30.146087255315898 ], [ -95.941603167395996, 30.14617525591817 ], [ -95.941716166587753, 30.146323255406958 ], [ -95.941824166943377, 30.146438256001929 ], [ -95.941894167257502, 30.146482255606518 ], [ -95.942241167564191, 30.146642255921151 ], [ -95.94233616705921, 30.146724255920489 ], [ -95.942355166953561, 30.14678525556976 ], [ -95.942431167225052, 30.146917255511081 ], [ -95.942595167551517, 30.147060256037587 ], [ -95.943519167925189, 30.147499255554965 ], [ -95.944107168039139, 30.147928256173625 ], [ -95.944177167636226, 30.147931255722749 ], [ -95.944512168203971, 30.148173256438451 ], [ -95.944652167830824, 30.148319255701622 ], [ -95.945176168148919, 30.148862256196573 ], [ -95.945340168130826, 30.149005255806959 ], [ -95.945397168010913, 30.14910425589327 ], [ -95.945492167996633, 30.149203255980872 ], [ -95.945460167926498, 30.149247256103745 ], [ -95.945454167717799, 30.14929625664583 ], [ -95.945479167697655, 30.149340255909749 ], [ -95.945524168544011, 30.14936225614451 ], [ -95.94547916853071, 30.149434256505053 ], [ -95.945435168298118, 30.149543256205618 ], [ -95.945416168353503, 30.149565256282244 ], [ -95.945378167971839, 30.149560255916878 ], [ -95.945347167734241, 30.149505256171011 ], [ -95.945296167998734, 30.149499255845591 ], [ -95.945258168358009, 30.149549256154575 ], [ -95.94523916749219, 30.149615256377839 ], [ -95.945239167725958, 30.149681256669325 ], [ -95.945359168177887, 30.150104256228627 ], [ -95.945353167721933, 30.150170256528646 ], [ -95.945321167867405, 30.150225256208387 ], [ -95.945315167749825, 30.15031825600612 ], [ -95.945264167802492, 30.150357256636827 ], [ -95.945195168453253, 30.150434256446356 ], [ -95.945195168361707, 30.150494256521327 ], [ -95.945334167643736, 30.150593256681034 ], [ -95.945460168440391, 30.150725256343819 ], [ -95.945549168011325, 30.150725256399465 ], [ -95.945549168473974, 30.150753256681316 ], [ -95.945511167994937, 30.150813256735326 ], [ -95.945517168186683, 30.150840256180203 ], [ -95.945555168048259, 30.150884256341101 ], [ -95.945562167649996, 30.150978256941951 ], [ -95.945530167654127, 30.15103325665353 ], [ -95.945506167628537, 30.151055256923929 ], [ -95.945448168516862, 30.151110256535443 ], [ -95.945454168239237, 30.151148256461017 ], [ -95.945492168237578, 30.151154256660085 ], [ -95.945517167786193, 30.151143257015775 ], [ -95.945555168067088, 30.151077256774528 ], [ -95.945619167758366, 30.151038256974509 ], [ -95.945694167855606, 30.151033256453875 ], [ -95.945764168447411, 30.151071256382139 ], [ -95.945815167962863, 30.151132256250953 ], [ -95.945872168689291, 30.151472257002716 ], [ -95.945878168350475, 30.151560256331937 ], [ -95.945903167971878, 30.151676256762698 ], [ -95.945808168419333, 30.151835256941272 ], [ -95.945802168512444, 30.151907256505211 ], [ -95.945834167895839, 30.151967256495194 ], [ -95.946049167867614, 30.15212125712689 ], [ -95.946194168843405, 30.152269256668209 ], [ -95.946276168199404, 30.15227525723402 ], [ -95.946371168287953, 30.152264257061937 ], [ -95.94646016882416, 30.152324256522533 ], [ -95.946529168941169, 30.152385256707866 ], [ -95.946650168060174, 30.152528256651937 ], [ -95.946890168159015, 30.152780257329042 ], [ -95.946972168953025, 30.152846256586116 ], [ -95.947080168549363, 30.153006256858088 ], [ -95.947111168137454, 30.153143257013319 ], [ -95.947061168978394, 30.153264256681169 ], [ -95.946827168530149, 30.153704256772176 ], [ -95.946713168146516, 30.153775257441026 ], [ -95.946707168045677, 30.15385225727163 ], [ -95.94679516867869, 30.153984257534923 ], [ -95.946903168456771, 30.153978257166489 ], [ -95.946934169108204, 30.154022256841603 ], [ -95.946941169046042, 30.154099257476396 ], [ -95.946827168717689, 30.154160256741683 ], [ -95.946789169060011, 30.154193256759527 ], [ -95.947073168488629, 30.154451257405647 ], [ -95.947137168697253, 30.154457256879862 ], [ -95.947345168459677, 30.15443525748352 ], [ -95.947377169128927, 30.154446257557183 ], [ -95.94739016896996, 30.154473256848068 ], [ -95.947383168662014, 30.154512257538322 ], [ -95.947320168337299, 30.154534257623425 ], [ -95.947295168775, 30.154583257510129 ], [ -95.947295168783228, 30.154627257593393 ], [ -95.94731416887852, 30.154687257276393 ], [ -95.947390169073444, 30.154720257599397 ], [ -95.947472169018354, 30.154649257708876 ], [ -95.947560168310346, 30.154627257085618 ], [ -95.947611168866786, 30.154594257616665 ], [ -95.947611168873749, 30.154566257401598 ], [ -95.947579169047899, 30.154511257323108 ], [ -95.947485169113207, 30.154451257189358 ], [ -95.947485168667299, 30.154402256798164 ], [ -95.947459169163849, 30.154336256982255 ], [ -95.947466169178114, 30.154308256752458 ], [ -95.947548169189503, 30.154314257416505 ], [ -95.947617168795432, 30.154369256762681 ], [ -95.947864169018871, 30.154522257426798 ], [ -95.947881169214426, 30.154552256807637 ], [ -95.947984169366435, 30.154731256866409 ], [ -95.948098168917269, 30.154819257480046 ], [ -95.948199169004354, 30.154924257061641 ], [ -95.948225168492868, 30.154995256999129 ], [ -95.948206169327676, 30.155045257655029 ], [ -95.948161168907887, 30.15506725761157 ], [ -95.94815516864719, 30.155116257234276 ], [ -95.948174168777044, 30.155143257173975 ], [ -95.948243169257424, 30.15519825708262 ], [ -95.948288168695868, 30.15521525774767 ], [ -95.948484168932112, 30.155209257691531 ], [ -95.948604168832745, 30.155215257714925 ], [ -95.948712168926107, 30.15524825744685 ], [ -95.948965169535043, 30.155303257777323 ], [ -95.949104169583634, 30.155308256971221 ], [ -95.949186168967643, 30.155297256867133 ], [ -95.949565168929965, 30.155435257555315 ], [ -95.949647169398645, 30.155446257216973 ], [ -95.949698169131324, 30.155484257314342 ], [ -95.949736169912924, 30.155588256948931 ], [ -95.94969816967162, 30.155742257406562 ], [ -95.949840169773879, 30.155979257576689 ], [ -95.949856169424194, 30.156006257819392 ], [ -95.949882169964255, 30.156116257137697 ], [ -95.950267169628077, 30.156242257829426 ], [ -95.950438169603601, 30.156270257085726 ], [ -95.950482169564992, 30.156264257911641 ], [ -95.950546169835661, 30.156248257525117 ], [ -95.950558169329085, 30.156171257367831 ], [ -95.950558169748348, 30.156034257013815 ], [ -95.950609169807692, 30.155979257311611 ], [ -95.950742169798843, 30.155995257331178 ], [ -95.950969169616215, 30.156077257740169 ], [ -95.951165169539721, 30.156160257263988 ], [ -95.951286170342598, 30.156182257533466 ], [ -95.951418170120192, 30.156193257385528 ], [ -95.951849170464129, 30.156391257263959 ], [ -95.951883169504384, 30.156459257499055 ], [ -95.951961169787907, 30.156469257269286 ], [ -95.952014170341997, 30.156520257755922 ], [ -95.952181170334654, 30.156681257886351 ], [ -95.952271169900357, 30.156820257108716 ], [ -95.952361169685233, 30.156959257164875 ], [ -95.952480170386167, 30.156988257987592 ], [ -95.952702170435288, 30.157044257221557 ], [ -95.952759170199727, 30.157116257836961 ], [ -95.952797170263509, 30.157193257966 ], [ -95.952817170318454, 30.157281257866551 ], [ -95.952867170766964, 30.157490258051951 ], [ -95.952779169899159, 30.158074257582886 ], [ -95.952772170492409, 30.158122257361864 ], [ -95.95279916986874, 30.158243257344576 ], [ -95.952894170435485, 30.158256257643167 ], [ -95.952932170209266, 30.158269257488897 ], [ -95.953084170616194, 30.15827425810485 ], [ -95.953107170010384, 30.158231258146664 ], [ -95.953158170088585, 30.158138257730268 ], [ -95.953392170435507, 30.158045258072413 ], [ -95.953512170394802, 30.158017257845376 ], [ -95.95365117044463, 30.158017257380195 ], [ -95.954018170126005, 30.15811625790041 ], [ -95.954151170522096, 30.158209257546474 ], [ -95.954258170430705, 30.158303257651845 ], [ -95.954404170566647, 30.158550257817694 ], [ -95.954423171134081, 30.158748258084895 ], [ -95.954385171066662, 30.159001258043276 ], [ -95.954391170662404, 30.159166257784769 ], [ -95.954467170842321, 30.159512258214029 ], [ -95.954581170386177, 30.159655257784298 ], [ -95.955441171368662, 30.160314258140613 ], [ -95.955574170767349, 30.16046225830997 ], [ -95.95563117118634, 30.160594258131109 ], [ -95.955726171132824, 30.160951258282573 ], [ -95.955733170826079, 30.161034258226415 ], [ -95.955757170823645, 30.16119325783492 ], [ -95.955826171372365, 30.161270257989862 ], [ -95.955934171033689, 30.161325257893587 ], [ -95.956086171043594, 30.161364257937645 ], [ -95.956459171812384, 30.161540258277142 ], [ -95.95672517146572, 30.161700258004299 ], [ -95.957092171713242, 30.161992258654024 ], [ -95.957508171933043, 30.162124258405065 ], [ -95.957618171453447, 30.162131258556659 ], [ -95.95772417122204, 30.162135258805794 ], [ -95.957959171665664, 30.162127258585922 ], [ -95.957978171949506, 30.162127258593067 ], [ -95.958351171516483, 30.16229825861577 ], [ -95.9585161718623, 30.16242425803534 ], [ -95.958610171583956, 30.162539258315004 ], [ -95.958661171836795, 30.162929258793309 ], [ -95.958864172307315, 30.163122258923988 ], [ -95.958946172374382, 30.16318825835036 ], [ -95.959117172334828, 30.163248258352244 ], [ -95.959572172587841, 30.163270258880704 ], [ -95.95980617260534, 30.163264258693214 ], [ -95.960116172508549, 30.163369258976143 ], [ -95.960331172796003, 30.16341325902269 ], [ -95.960363172511904, 30.163440258321192 ], [ -95.960350172836101, 30.163473258244807 ], [ -95.960318172661118, 30.163501258229619 ], [ -95.960331172573817, 30.163589258207224 ], [ -95.96044517231222, 30.163644259020238 ], [ -95.960508172950455, 30.163688258821814 ], [ -95.960622172514036, 30.163633258191172 ], [ -95.960622172345239, 30.163586258778022 ], [ -95.960623172124457, 30.163528258990659 ], [ -95.960672172641196, 30.16349025887796 ], [ -95.960686172604369, 30.163479258856622 ], [ -95.960723173076858, 30.1634512589272 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1387, "Tract": "48201343700", "Area_SqMi": 15.856679914831076, "total_2009": 10976, "total_2010": 10683, "total_2011": 11259, "total_2012": 12483, "total_2013": 13641, "total_2014": 14351, "total_2015": 16689, "total_2016": 16501, "total_2017": 17316, "total_2018": 16591, "total_2019": 17709, "total_2020": 18044, "age1": 3051, "age2": 10310, "age3": 3916, "earn1": 1340, "earn2": 2543, "earn3": 13394, "naics_s01": 40, "naics_s02": 501, "naics_s03": 280, "naics_s04": 2070, "naics_s05": 5787, "naics_s06": 2084, "naics_s07": 405, "naics_s08": 2146, "naics_s09": 2, "naics_s10": 64, "naics_s11": 228, "naics_s12": 790, "naics_s13": 8, "naics_s14": 1527, "naics_s15": 4, "naics_s16": 32, "naics_s17": 144, "naics_s18": 582, "naics_s19": 357, "naics_s20": 226, "race1": 13786, "race2": 2350, "race3": 157, "race4": 724, "race5": 19, "race6": 241, "ethnicity1": 11442, "ethnicity2": 5835, "edu1": 2801, "edu2": 4084, "edu3": 4431, "edu4": 2910, "Shape_Length": 120241.80327557573, "Shape_Area": 442057097.0465852, "total_2021": 16296, "total_2022": 17277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.122185934413665, 29.650281183053821 ], [ -95.121653934547624, 29.649594183118094 ], [ -95.120360934705161, 29.648448182956148 ], [ -95.119766934248787, 29.647916182285581 ], [ -95.118977934269353, 29.647061182198787 ], [ -95.118396934071555, 29.645895182502073 ], [ -95.118001933893922, 29.645452182142606 ], [ -95.117732933357928, 29.645150181797945 ], [ -95.117074932943652, 29.644414182237639 ], [ -95.116333933238707, 29.643557181633916 ], [ -95.115311932303442, 29.642377181590529 ], [ -95.114400932631852, 29.641323181522129 ], [ -95.113813932664982, 29.640645180936293 ], [ -95.112895932211927, 29.639591180845091 ], [ -95.111850932211695, 29.638394180868755 ], [ -95.110916931023368, 29.637403180826823 ], [ -95.110785931023898, 29.637274180801434 ], [ -95.110006930870298, 29.636501180087244 ], [ -95.109531930787668, 29.636058180509441 ], [ -95.109117930965269, 29.635681180501393 ], [ -95.108240930283017, 29.634911179767812 ], [ -95.107313930559386, 29.634047179872898 ], [ -95.106756930657113, 29.63348018035833 ], [ -95.106642929964025, 29.633360179859654 ], [ -95.106558929864008, 29.633271179996918 ], [ -95.106281929857957, 29.63297618019643 ], [ -95.105834930169109, 29.632505180090355 ], [ -95.105432930227607, 29.632038180030367 ], [ -95.103502929190086, 29.629833179196876 ], [ -95.101453929048986, 29.627476178835945 ], [ -95.099954928373251, 29.625859178171336 ], [ -95.098639927227111, 29.62467317867009 ], [ -95.097955927567028, 29.624161178359905 ], [ -95.093232925782871, 29.620619178053559 ], [ -95.093128925669532, 29.620541177318572 ], [ -95.092727925879515, 29.620225178070452 ], [ -95.092333925679213, 29.619901177591764 ], [ -95.091947926183948, 29.619570177464379 ], [ -95.09157092545054, 29.619233177386715 ], [ -95.091200925282749, 29.618889177470471 ], [ -95.090661925069668, 29.618360177731795 ], [ -95.090188925251041, 29.617878176842144 ], [ -95.089734924793532, 29.617438177321031 ], [ -95.08927492535031, 29.617018176756964 ], [ -95.08879692496329, 29.616606176710821 ], [ -95.088465924614283, 29.616333176632086 ], [ -95.08825592519112, 29.616166176946148 ], [ -95.088125924707185, 29.61606417722362 ], [ -95.084379923673211, 29.613214176463096 ], [ -95.084249923139197, 29.613115176202538 ], [ -95.084129923957647, 29.61302317612942 ], [ -95.082237923329302, 29.611584176122108 ], [ -95.08209692311847, 29.611476175856005 ], [ -95.077967921702125, 29.608336175982501 ], [ -95.075999921201671, 29.606840175546537 ], [ -95.075546920759322, 29.606502175531904 ], [ -95.074363920301906, 29.60561717491926 ], [ -95.069843919527756, 29.602241174508482 ], [ -95.069717919616323, 29.602292174747873 ], [ -95.069300919099547, 29.602460175011149 ], [ -95.069074919159974, 29.602552174550571 ], [ -95.068530918938222, 29.602777174995548 ], [ -95.0679929193047, 29.603002174520768 ], [ -95.062206917254997, 29.605409175421432 ], [ -95.058572917149291, 29.606922176319582 ], [ -95.058513917133766, 29.606946176318438 ], [ -95.058453916714086, 29.606971175986519 ], [ -95.055562916405577, 29.608174176511575 ], [ -95.051137915044578, 29.610033176624253 ], [ -95.04860991397851, 29.611095177019546 ], [ -95.048535914539713, 29.610959177518154 ], [ -95.046569913218889, 29.607370176197193 ], [ -95.046167913256369, 29.606646176106615 ], [ -95.046064913497005, 29.606477176016924 ], [ -95.045956913120904, 29.606314175985919 ], [ -95.045841913718604, 29.606160176467451 ], [ -95.04558991291789, 29.605868175860959 ], [ -95.0454559131352, 29.605731176174491 ], [ -95.045314913262104, 29.605601176328811 ], [ -95.04516391324519, 29.605478176086383 ], [ -95.044843913376326, 29.605250176133858 ], [ -95.044675912501788, 29.605145176126214 ], [ -95.044324913031573, 29.604957176087947 ], [ -95.043960913061824, 29.604797175975804 ], [ -95.043771912532108, 29.604729176405343 ], [ -95.043578912848204, 29.604670176407367 ], [ -95.043382912954542, 29.604620175719159 ], [ -95.042978912569495, 29.604534176380565 ], [ -95.042206912047504, 29.604386176099105 ], [ -95.041460911706736, 29.604242176236248 ], [ -95.040846911909469, 29.604124176263287 ], [ -95.040712912266031, 29.604098176177111 ], [ -95.040252911422698, 29.604010176124973 ], [ -95.039583911580479, 29.603881175873745 ], [ -95.039149911746634, 29.603806176268812 ], [ -95.038707911795996, 29.603751176090679 ], [ -95.038261911458051, 29.603716176356468 ], [ -95.037810911638601, 29.603699175758607 ], [ -95.037356910905856, 29.603702176249804 ], [ -95.03427491013035, 29.603758175997314 ], [ -95.034081910699044, 29.603755176400043 ], [ -95.033216910105949, 29.60371117622509 ], [ -95.032758910023446, 29.603715176434019 ], [ -95.032527909412295, 29.603717176654552 ], [ -95.032468909492252, 29.603718175837585 ], [ -95.032030909370434, 29.603722176290493 ], [ -95.031818909841164, 29.603724176445795 ], [ -95.031863909710452, 29.60399917594604 ], [ -95.032465910124543, 29.607624177055797 ], [ -95.032591910346426, 29.60838417706249 ], [ -95.032798910273939, 29.609629177492327 ], [ -95.032879910429344, 29.610120177123584 ], [ -95.032900910701443, 29.610246177845855 ], [ -95.032918909808373, 29.610355177679651 ], [ -95.032924910663652, 29.610390177876628 ], [ -95.032948910525164, 29.610536177563901 ], [ -95.033435910370684, 29.613471178603394 ], [ -95.033492910270112, 29.613855178104171 ], [ -95.033550910187842, 29.614391178371637 ], [ -95.033554910255489, 29.614438178576702 ], [ -95.033573910647661, 29.614666178641837 ], [ -95.03357691097338, 29.614697178038494 ], [ -95.033597910504739, 29.614951178869223 ], [ -95.033639911138891, 29.615445178323448 ], [ -95.033657910599345, 29.615656178997089 ], [ -95.033750910990335, 29.616762179169282 ], [ -95.033964911240744, 29.619307179385761 ], [ -95.033985910526283, 29.619556179296247 ], [ -95.03400391085296, 29.619768179082474 ], [ -95.034255911419777, 29.622766180157747 ], [ -95.034275911136888, 29.623251179998551 ], [ -95.034271911210197, 29.623585180426808 ], [ -95.034269910773446, 29.623738180715325 ], [ -95.034249910888263, 29.624056179932786 ], [ -95.034239910772968, 29.624223179986579 ], [ -95.034183910718014, 29.624707180189027 ], [ -95.033812910839202, 29.62616318067602 ], [ -95.033564911236269, 29.626784181218479 ], [ -95.033098910850413, 29.627846181631746 ], [ -95.031897911253566, 29.630348181686529 ], [ -95.031603911036896, 29.630961181764157 ], [ -95.030668910658946, 29.632751182076451 ], [ -95.030392910559669, 29.633472182415812 ], [ -95.030014910126852, 29.634460182595571 ], [ -95.029584910305118, 29.636523182904565 ], [ -95.029521910311544, 29.638196183576177 ], [ -95.029632911047386, 29.641821184186124 ], [ -95.029733910598267, 29.644409184379704 ], [ -95.02978391057492, 29.645698185157833 ], [ -95.029783910703358, 29.647112185138109 ], [ -95.029814911037263, 29.647958185892314 ], [ -95.029856910883694, 29.650715185727375 ], [ -95.029885911489359, 29.652171186453582 ], [ -95.029888911692922, 29.65233518644721 ], [ -95.029475911034197, 29.652336186022247 ], [ -95.028907911211377, 29.652338186400282 ], [ -95.028383911338622, 29.652344186631176 ], [ -95.027993911037115, 29.652339186299297 ], [ -95.028017911094011, 29.652229186362835 ], [ -95.028067911028515, 29.652124186620423 ], [ -95.028086910703294, 29.652047186480612 ], [ -95.028105910481216, 29.651943186053828 ], [ -95.028099910392612, 29.651393186313101 ], [ -95.028112910638299, 29.651096186130292 ], [ -95.028109911108388, 29.65101918582241 ], [ -95.028106910501748, 29.650931186030064 ], [ -95.028087910812019, 29.650827186357393 ], [ -95.027986910752603, 29.650618185775265 ], [ -95.02783891045091, 29.650449186200657 ], [ -95.02780491062984, 29.650409186122854 ], [ -95.02754691103496, 29.650266185954649 ], [ -95.027439910159757, 29.650233185831407 ], [ -95.0273689107526, 29.650223186335669 ], [ -95.027267910875395, 29.650210185603637 ], [ -95.027149910278581, 29.65019418577014 ], [ -95.027029910536712, 29.650194186018492 ], [ -95.026903910794147, 29.650210185840603 ], [ -95.026734910100998, 29.65026418618044 ], [ -95.026626910637063, 29.650298186180724 ], [ -95.02624290984069, 29.650452186324216 ], [ -95.026198909773456, 29.650457185838142 ], [ -95.026148910332125, 29.650463186237822 ], [ -95.026041910108717, 29.650463186095781 ], [ -95.02594690973433, 29.650447186531498 ], [ -95.025697910047015, 29.650361186013676 ], [ -95.025468910090297, 29.650282185964933 ], [ -95.025304910186449, 29.650243186079905 ], [ -95.025181910404982, 29.650191185773544 ], [ -95.025134909524411, 29.650171186331157 ], [ -95.025059909708503, 29.650117186304893 ], [ -95.025002909975029, 29.650045185875324 ], [ -95.024946910336737, 29.649951186402188 ], [ -95.024897910073037, 29.649771185675171 ], [ -95.024814909683016, 29.64946818608453 ], [ -95.024744909625781, 29.649303185941861 ], [ -95.024669909605961, 29.649165185624689 ], [ -95.024650909581155, 29.649148186167224 ], [ -95.024612909953589, 29.649115185730196 ], [ -95.024549909686101, 29.649083185939915 ], [ -95.024405909316968, 29.649055186177673 ], [ -95.024124910032995, 29.649045185871152 ], [ -95.024014909318169, 29.649022185989558 ], [ -95.023932909494903, 29.648967185581636 ], [ -95.023863909881371, 29.648895185607604 ], [ -95.023806909942479, 29.648818185903473 ], [ -95.023762909827923, 29.648692185815822 ], [ -95.023747909374507, 29.64860618550513 ], [ -95.023725909248455, 29.648481185676346 ], [ -95.023706910011228, 29.648373185871073 ], [ -95.023612909242047, 29.648153185974373 ], [ -95.023467909946461, 29.647861185256129 ], [ -95.023341909163676, 29.647696185930517 ], [ -95.023278909157568, 29.647636185769912 ], [ -95.023221909415554, 29.647603185472608 ], [ -95.023159909164178, 29.647597185875256 ], [ -95.023069909534925, 29.647627185878097 ], [ -95.022988908983095, 29.64765818539162 ], [ -95.022837908843215, 29.647674185916603 ], [ -95.022737909428187, 29.647652185399032 ], [ -95.022598909646987, 29.647586185224924 ], [ -95.022557908968594, 29.647582185263882 ], [ -95.022447909551204, 29.647570185351459 ], [ -95.022378909515709, 29.647542186040575 ], [ -95.022290908952471, 29.647493185734106 ], [ -95.02222190925437, 29.647427185604123 ], [ -95.022183909313114, 29.647350185591534 ], [ -95.022180909591953, 29.647242185255134 ], [ -95.022177909517652, 29.647091185459974 ], [ -95.022158908758612, 29.647053185109321 ], [ -95.022076908744637, 29.647009185644841 ], [ -95.022034908756382, 29.646998185442964 ], [ -95.021950908771899, 29.646976185901369 ], [ -95.021875909017552, 29.646965185187483 ], [ -95.021805909218372, 29.646970185885721 ], [ -95.021673908873453, 29.646937185364713 ], [ -95.021553908909624, 29.646882185879548 ], [ -95.021523909308726, 29.646862185824233 ], [ -95.021497908997247, 29.646844185142101 ], [ -95.021453908427844, 29.646794185630551 ], [ -95.021415908409139, 29.646734185630397 ], [ -95.021346908857367, 29.64653618578221 ], [ -95.021308908505674, 29.646481185334903 ], [ -95.021233909278266, 29.646414185653651 ], [ -95.021050908621007, 29.646304185836957 ], [ -95.021001909076759, 29.646266185357618 ], [ -95.020949909157139, 29.646194185384758 ], [ -95.020868908401653, 29.646018185790435 ], [ -95.020833908819569, 29.64597018519817 ], [ -95.020723908307332, 29.645820185517955 ], [ -95.020477908438778, 29.645604184848377 ], [ -95.020402908082204, 29.645584185229755 ], [ -95.020308908945211, 29.645584185073858 ], [ -95.020257908644311, 29.645606185052909 ], [ -95.020112908928525, 29.645710185265607 ], [ -95.020030908694181, 29.645721185534217 ], [ -95.019967908400019, 29.645705185259455 ], [ -95.019949908175036, 29.645695185187808 ], [ -95.019892908169851, 29.645661184909006 ], [ -95.019728907918292, 29.64560018519078 ], [ -95.019703908105981, 29.645507185509199 ], [ -95.019590908308558, 29.645479185112599 ], [ -95.019489908482029, 29.645518184880473 ], [ -95.019428908366919, 29.645559184990955 ], [ -95.018866907806299, 29.645935185547504 ], [ -95.018847908162059, 29.645957185393506 ], [ -95.018848908424445, 29.646039185030567 ], [ -95.0188549080586, 29.646187185898441 ], [ -95.018897908399779, 29.647229185408843 ], [ -95.018933908174361, 29.648320186080195 ], [ -95.018943907796412, 29.648586185594958 ], [ -95.018915907970694, 29.649874186482432 ], [ -95.018940908757386, 29.651151186853028 ], [ -95.019019908088652, 29.652487186301581 ], [ -95.019060908623501, 29.653786186641778 ], [ -95.01910290877602, 29.655082187425524 ], [ -95.01913690827682, 29.656383187718848 ], [ -95.019120909037937, 29.657682187739294 ], [ -95.019143908480913, 29.658968188038013 ], [ -95.019177908367226, 29.660250188044923 ], [ -95.019213908934148, 29.661556188786722 ], [ -95.019204909290167, 29.662864189259462 ], [ -95.019272908640929, 29.664138189321651 ], [ -95.019281908646221, 29.665522189178283 ], [ -95.019308909659983, 29.666095189521698 ], [ -95.019341909379662, 29.666830190036713 ], [ -95.01934990944423, 29.66754118964214 ], [ -95.019354909213646, 29.668063190256944 ], [ -95.019385909293774, 29.669344190622059 ], [ -95.019392909688762, 29.670632190213617 ], [ -95.01941190973703, 29.671940190596086 ], [ -95.019431909011118, 29.673259190767961 ], [ -95.019465909115226, 29.674528191300062 ], [ -95.019500909273262, 29.675820191329571 ], [ -95.019534910019587, 29.677089191888513 ], [ -95.019557909621426, 29.678393192279561 ], [ -95.019580909354545, 29.679692192656375 ], [ -95.019694910040712, 29.680980192202057 ], [ -95.019627909752003, 29.68163319229723 ], [ -95.020195910438346, 29.681805192715053 ], [ -95.023718910998468, 29.682872192748171 ], [ -95.026954911523006, 29.683839192700979 ], [ -95.028941912696027, 29.68443219303548 ], [ -95.029831913053371, 29.684727192593368 ], [ -95.030013912869066, 29.684792193006068 ], [ -95.030181912766153, 29.684851192615504 ], [ -95.030369912798847, 29.684906192612193 ], [ -95.030514912560875, 29.684948193182745 ], [ -95.033272914040765, 29.685749192887169 ], [ -95.034012914023123, 29.685969193535755 ], [ -95.035629914226604, 29.686467192802475 ], [ -95.03662991500849, 29.686749192861591 ], [ -95.037153914818035, 29.686745193648196 ], [ -95.037592914276033, 29.686697192850474 ], [ -95.038120914379732, 29.686451193213578 ], [ -95.038384915085231, 29.686258193414076 ], [ -95.038872914991799, 29.685848193204968 ], [ -95.038993915571027, 29.685675192608482 ], [ -95.03915591469169, 29.6853981926585 ], [ -95.039326915070902, 29.68506419263943 ], [ -95.039456915437256, 29.684816192335102 ], [ -95.039626915599484, 29.684403192751489 ], [ -95.039602915556145, 29.683757192551816 ], [ -95.039441915487302, 29.681148192020519 ], [ -95.039434914561923, 29.680730191764887 ], [ -95.039432914526387, 29.68064019156936 ], [ -95.039369915022817, 29.678093191185752 ], [ -95.039369915002723, 29.678057191457629 ], [ -95.039326914276202, 29.672996190683527 ], [ -95.039325914239868, 29.672974190373495 ], [ -95.039301915047417, 29.671903189911255 ], [ -95.039296914132521, 29.671624189632421 ], [ -95.039204913779415, 29.665323188733904 ], [ -95.039180913878553, 29.665145188578446 ], [ -95.039173914514905, 29.664881188713498 ], [ -95.03913191463549, 29.663494188446592 ], [ -95.03911291453943, 29.662715187905285 ], [ -95.039086914540235, 29.661795188106009 ], [ -95.03875291386781, 29.652148186377637 ], [ -95.03874991331061, 29.651957185880111 ], [ -95.038747913356389, 29.651792186028302 ], [ -95.039093914058384, 29.651787186318064 ], [ -95.040322913443106, 29.651770186106525 ], [ -95.042151914656259, 29.651732186158135 ], [ -95.044540915189899, 29.651672185563733 ], [ -95.046742915371297, 29.651629185750771 ], [ -95.050632916076353, 29.651588185157106 ], [ -95.052874917632693, 29.651537185801072 ], [ -95.055005917369812, 29.651494185319805 ], [ -95.05704891800535, 29.651466185147736 ], [ -95.058428918558491, 29.651461185129687 ], [ -95.059218919195416, 29.651513185020526 ], [ -95.060534919397739, 29.65163718497579 ], [ -95.06115691880882, 29.651711185028613 ], [ -95.061850918966272, 29.651768185494522 ], [ -95.062773919559007, 29.651812185427339 ], [ -95.063555919670307, 29.651806184937179 ], [ -95.065520920567494, 29.651740184997049 ], [ -95.068872921639752, 29.651694185051472 ], [ -95.070121921192253, 29.651659184489482 ], [ -95.072309922663891, 29.651621184462588 ], [ -95.073320922737352, 29.651628184413688 ], [ -95.073530922536989, 29.651620184485356 ], [ -95.074499922867034, 29.651584185045259 ], [ -95.075716922709915, 29.651567184428298 ], [ -95.076469923348824, 29.651556185034487 ], [ -95.078755923373961, 29.651504184611618 ], [ -95.083335925361112, 29.651423184300214 ], [ -95.084212925539603, 29.651383184758075 ], [ -95.08582492588468, 29.651219184453844 ], [ -95.086350925360577, 29.651128184611778 ], [ -95.086390926248441, 29.651125184408283 ], [ -95.086417925265408, 29.65112318433734 ], [ -95.086602925515749, 29.65107518443881 ], [ -95.087048926096699, 29.65101518451479 ], [ -95.087632925929839, 29.650950184063703 ], [ -95.088631926799678, 29.650879184051686 ], [ -95.089566926473182, 29.65082018397835 ], [ -95.090479927117542, 29.650812183637388 ], [ -95.091847927226695, 29.650782183891486 ], [ -95.093934927514866, 29.650753183913782 ], [ -95.094972928424909, 29.65073518371284 ], [ -95.095966928566398, 29.650718184124724 ], [ -95.097864928328846, 29.650691183992407 ], [ -95.097944928916291, 29.650689184040839 ], [ -95.10005992932571, 29.650640183977455 ], [ -95.102256930157395, 29.650595183448623 ], [ -95.103426930316118, 29.650575183280711 ], [ -95.104388930525346, 29.650558183558275 ], [ -95.106682931153586, 29.650544183782515 ], [ -95.108606931241553, 29.650491183610516 ], [ -95.109896931857364, 29.650475183739111 ], [ -95.111347932058521, 29.650457183316867 ], [ -95.112225932679735, 29.650444183019204 ], [ -95.112423932275647, 29.65044518310004 ], [ -95.112439931905698, 29.650444183556942 ], [ -95.112668932411424, 29.650437183451537 ], [ -95.116409932925464, 29.650380182916315 ], [ -95.11658293300475, 29.650378182825246 ], [ -95.118073934138351, 29.650365182753177 ], [ -95.12115793481729, 29.650336183062439 ], [ -95.122185934413665, 29.650281183053821 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1388, "Tract": "48339690900", "Area_SqMi": 1.8532610072364835, "total_2009": 5524, "total_2010": 5995, "total_2011": 6119, "total_2012": 5863, "total_2013": 6125, "total_2014": 6060, "total_2015": 6237, "total_2016": 7253, "total_2017": 6944, "total_2018": 6665, "total_2019": 7008, "total_2020": 7082, "age1": 992, "age2": 4118, "age3": 2204, "earn1": 2579, "earn2": 1639, "earn3": 3096, "naics_s01": 0, "naics_s02": 95, "naics_s03": 0, "naics_s04": 0, "naics_s05": 17, "naics_s06": 111, "naics_s07": 0, "naics_s08": 1, "naics_s09": 6, "naics_s10": 17, "naics_s11": 164, "naics_s12": 42, "naics_s13": 0, "naics_s14": 20, "naics_s15": 6786, "naics_s16": 10, "naics_s17": 1, "naics_s18": 36, "naics_s19": 8, "naics_s20": 0, "race1": 5258, "race2": 1329, "race3": 54, "race4": 518, "race5": 13, "race6": 142, "ethnicity1": 5872, "ethnicity2": 1442, "edu1": 717, "edu2": 1267, "edu3": 1874, "edu4": 2464, "Shape_Length": 36257.626360351351, "Shape_Area": 51665744.993838958, "total_2021": 7313, "total_2022": 7314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.535473065438865, 30.19637928003964 ], [ -95.535367065821035, 30.196295280407004 ], [ -95.534738065765282, 30.195796280167826 ], [ -95.534374065121497, 30.195508280110829 ], [ -95.533688065281254, 30.195164279975785 ], [ -95.533641064893828, 30.195151280267766 ], [ -95.532850064654227, 30.194926279686687 ], [ -95.532634064514752, 30.194865279700771 ], [ -95.531422064478861, 30.193834279392963 ], [ -95.530868063843982, 30.193582279815335 ], [ -95.529872064097319, 30.19335628008778 ], [ -95.528838064118048, 30.193122279533629 ], [ -95.528365063545991, 30.192946279804172 ], [ -95.528285064031095, 30.192916279560613 ], [ -95.527969063686299, 30.192549279272772 ], [ -95.527785063418918, 30.191747279873226 ], [ -95.527864063657688, 30.191427279074709 ], [ -95.527891063584335, 30.190694279093787 ], [ -95.527628063035436, 30.190304279195239 ], [ -95.527232063593317, 30.190212279379068 ], [ -95.52660006278569, 30.190166278966743 ], [ -95.525993062771605, 30.189891279139722 ], [ -95.525493062280958, 30.189753278762197 ], [ -95.5248600623122, 30.189753278789759 ], [ -95.524740062257933, 30.189836279204858 ], [ -95.524227062081906, 30.190188279739907 ], [ -95.523752062740684, 30.190462279782498 ], [ -95.522987062334693, 30.190599279130048 ], [ -95.522195062309947, 30.190919279552531 ], [ -95.521853061843274, 30.190919279761655 ], [ -95.521220061370784, 30.190598279226357 ], [ -95.520851061811143, 30.190552279986274 ], [ -95.52032306102025, 30.191078279313093 ], [ -95.51992806148732, 30.19107827977648 ], [ -95.519164060707851, 30.190551279656823 ], [ -95.518425061057755, 30.190642279257446 ], [ -95.517687061070106, 30.19045828004106 ], [ -95.517424060260154, 30.19025227924757 ], [ -95.517266060533657, 30.189794279627755 ], [ -95.516950060337976, 30.18949627926467 ], [ -95.516264060847917, 30.189564279207801 ], [ -95.515974059822042, 30.18949527960261 ], [ -95.515711060145179, 30.189266279604784 ], [ -95.515500060542138, 30.188739279339096 ], [ -95.515158060521003, 30.1883262790594 ], [ -95.514736060070632, 30.188143279076375 ], [ -95.514527060238365, 30.188143279675035 ], [ -95.514288059988104, 30.18814227911815 ], [ -95.51373405962579, 30.188371279101155 ], [ -95.513233059287799, 30.188393279216129 ], [ -95.511151059138925, 30.187773279601846 ], [ -95.510281058248253, 30.187796279662948 ], [ -95.509999058566834, 30.187918279104931 ], [ -95.509806058151256, 30.188001279539694 ], [ -95.509352058444222, 30.188433279535488 ], [ -95.509278058496477, 30.188505279447511 ], [ -95.509014058136884, 30.189077279763147 ], [ -95.508618058021057, 30.189581279595714 ], [ -95.507773057994328, 30.190153280243418 ], [ -95.507430058033222, 30.190588280364203 ], [ -95.507194057621973, 30.190730280374893 ], [ -95.507087057776531, 30.190794280293634 ], [ -95.506586058247009, 30.190793280183264 ], [ -95.50476705789724, 30.190265279999473 ], [ -95.503792057382313, 30.190104279752369 ], [ -95.503001057041615, 30.190103279973329 ], [ -95.502500056445825, 30.190217280142516 ], [ -95.501893057208648, 30.190469280166159 ], [ -95.501392056554437, 30.190583279882432 ], [ -95.500496056638525, 30.190468280113809 ], [ -95.500240056651307, 30.190564280147029 ], [ -95.49915405631333, 30.190313280074534 ], [ -95.498658055990333, 30.19019927983371 ], [ -95.497366055777036, 30.190430280199951 ], [ -95.496522055676479, 30.190270280789484 ], [ -95.496047054795966, 30.189927280468222 ], [ -95.495440055483343, 30.189332280210262 ], [ -95.494938054598165, 30.189058280073564 ], [ -95.494621054339461, 30.188394280383491 ], [ -95.49406705495727, 30.188165280327265 ], [ -95.493698054639779, 30.188235279737757 ], [ -95.492354054315228, 30.188877280630329 ], [ -95.491748053928987, 30.189405280526074 ], [ -95.491459054404601, 30.190092280053801 ], [ -95.491169054212747, 30.190276280487094 ], [ -95.491106054353622, 30.190292280111059 ], [ -95.491508053831879, 30.191210280523858 ], [ -95.492036054161289, 30.192368280768502 ], [ -95.492183053907524, 30.192708280717252 ], [ -95.492320054746884, 30.19298328065813 ], [ -95.49246405447353, 30.193254281515706 ], [ -95.4926540541734, 30.193548280845658 ], [ -95.492822054703652, 30.193778281476742 ], [ -95.49303805461075, 30.194047281494726 ], [ -95.493308055211187, 30.194343281209623 ], [ -95.493566054374782, 30.194609281667923 ], [ -95.493749055307504, 30.194776280964394 ], [ -95.493934055013042, 30.194946281425388 ], [ -95.494183054970193, 30.195136281181245 ], [ -95.494510055007154, 30.195357281361808 ], [ -95.494881055124097, 30.19555928185282 ], [ -95.495332055613062, 30.195777281879717 ], [ -95.495729055256248, 30.195933281409921 ], [ -95.496166055949359, 30.196074281839824 ], [ -95.496494056056747, 30.196154281933488 ], [ -95.496779055902223, 30.196216281644723 ], [ -95.497100055492297, 30.19626028141727 ], [ -95.497730055880226, 30.19630428183163 ], [ -95.498237056298237, 30.196312281482047 ], [ -95.498641056087465, 30.196295281866217 ], [ -95.499111056656332, 30.196238281565723 ], [ -95.499534055905485, 30.196172281316588 ], [ -95.500243056951518, 30.196053280943516 ], [ -95.501080057152009, 30.195916281089985 ], [ -95.501535057012646, 30.195859281340891 ], [ -95.50184505695249, 30.195836281085249 ], [ -95.502203056656555, 30.195824280846406 ], [ -95.502657057071289, 30.195835280802111 ], [ -95.503097057121934, 30.195885281560489 ], [ -95.503393056873961, 30.195934280841708 ], [ -95.503608057348004, 30.195973281180787 ], [ -95.503863056966182, 30.196032281665808 ], [ -95.504140057315951, 30.196102281462256 ], [ -95.504550057613912, 30.196220281204702 ], [ -95.504942057512153, 30.196357280930076 ], [ -95.505249057778627, 30.196497281698289 ], [ -95.505615058310553, 30.196688281235339 ], [ -95.506029057656065, 30.196927281431751 ], [ -95.507042058657618, 30.197702281351734 ], [ -95.507783058203458, 30.198414281970809 ], [ -95.508522058553993, 30.199071281309905 ], [ -95.510345059427181, 30.200879281854835 ], [ -95.511142059640861, 30.201742282305304 ], [ -95.511955060059677, 30.202632282180108 ], [ -95.512701060163991, 30.203386282093248 ], [ -95.512887060555613, 30.203569282819771 ], [ -95.513058059869181, 30.203736282423041 ], [ -95.513541060167569, 30.204114282681598 ], [ -95.513650060593861, 30.204197282478486 ], [ -95.513835059971214, 30.204315282655589 ], [ -95.514122060246393, 30.204479282580216 ], [ -95.514314060762757, 30.204594282981851 ], [ -95.514535060710742, 30.204696282725088 ], [ -95.514868060359305, 30.204828282910089 ], [ -95.515019060310095, 30.204887282363732 ], [ -95.51529306130918, 30.204977282590619 ], [ -95.515703061453706, 30.205092282881736 ], [ -95.516030061392428, 30.205164282353394 ], [ -95.51645106096089, 30.205235282439514 ], [ -95.517005061047129, 30.205288282198484 ], [ -95.517650061212791, 30.205321282809301 ], [ -95.518997062276256, 30.205370282935576 ], [ -95.519412062189261, 30.205389283044205 ], [ -95.519788061845659, 30.20541828302574 ], [ -95.520161062257813, 30.205460282412286 ], [ -95.520255061889642, 30.205474282379875 ], [ -95.520348061875026, 30.205484282772215 ], [ -95.520719061987037, 30.205544282317412 ], [ -95.521269062636378, 30.205651282510978 ], [ -95.521813062785839, 30.205784282255131 ], [ -95.52234906263601, 30.205943282286846 ], [ -95.522874062666006, 30.206125282941628 ], [ -95.523046063212504, 30.206190282951521 ], [ -95.523217062745942, 30.206263282722514 ], [ -95.523386063064876, 30.206330282321709 ], [ -95.523722063073095, 30.206482282600042 ], [ -95.524884063030143, 30.207049282914188 ], [ -95.526045063200158, 30.207585282537448 ], [ -95.526587063318985, 30.206699282879274 ], [ -95.526990063705568, 30.206047282205422 ], [ -95.527116063845583, 30.205860282028784 ], [ -95.527311063817763, 30.205587282135642 ], [ -95.527448063479625, 30.205415282309225 ], [ -95.528078064281885, 30.204757281848703 ], [ -95.530602064968903, 30.202969281896749 ], [ -95.531068065092427, 30.202630281554196 ], [ -95.531709064881809, 30.202086281399914 ], [ -95.532162065071148, 30.201633281023994 ], [ -95.53246606473347, 30.201159281704559 ], [ -95.534295064870307, 30.198265280839991 ], [ -95.535473065438865, 30.19637928003964 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1389, "Tract": "48339691000", "Area_SqMi": 1.7343685504448481, "total_2009": 517, "total_2010": 416, "total_2011": 669, "total_2012": 672, "total_2013": 656, "total_2014": 618, "total_2015": 553, "total_2016": 545, "total_2017": 493, "total_2018": 431, "total_2019": 442, "total_2020": 432, "age1": 105, "age2": 184, "age3": 94, "earn1": 147, "earn2": 97, "earn3": 139, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 15, "naics_s05": 4, "naics_s06": 19, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 15, "naics_s11": 16, "naics_s12": 19, "naics_s13": 0, "naics_s14": 32, "naics_s15": 7, "naics_s16": 7, "naics_s17": 181, "naics_s18": 1, "naics_s19": 64, "naics_s20": 0, "race1": 320, "race2": 30, "race3": 0, "race4": 25, "race5": 0, "race6": 8, "ethnicity1": 296, "ethnicity2": 87, "edu1": 51, "edu2": 72, "edu3": 68, "edu4": 87, "Shape_Length": 40210.46453143542, "Shape_Area": 48351226.784961633, "total_2021": 418, "total_2022": 383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.53658406530667, 30.193390279182186 ], [ -95.53658406600556, 30.192697279149602 ], [ -95.536521065212227, 30.192224279074509 ], [ -95.536357065673585, 30.191559279011511 ], [ -95.536193065057418, 30.191148278742961 ], [ -95.536031065474504, 30.190783279194367 ], [ -95.535832065273226, 30.19039027928244 ], [ -95.533967064839786, 30.187463278507611 ], [ -95.533230064251143, 30.186078278455298 ], [ -95.532723064377222, 30.184368278100226 ], [ -95.53137906425205, 30.184473277793312 ], [ -95.53090406341876, 30.184498277584936 ], [ -95.530324063965466, 30.184491278163613 ], [ -95.52966506395488, 30.18443227778241 ], [ -95.52928006324494, 30.184379277641582 ], [ -95.528828062910222, 30.184299278367668 ], [ -95.52829706302515, 30.184182277791727 ], [ -95.527682063492577, 30.183996277859659 ], [ -95.526912062790458, 30.183720277768185 ], [ -95.525644061965892, 30.1831472774453 ], [ -95.525077062608361, 30.182908277852619 ], [ -95.524494062034464, 30.182590277478731 ], [ -95.523778061832928, 30.1822272780059 ], [ -95.52312206163532, 30.181883277246683 ], [ -95.522418061942062, 30.181567277350645 ], [ -95.5219060619239, 30.181403277600413 ], [ -95.521372061750171, 30.181269277536465 ], [ -95.520818061424492, 30.181154277507467 ], [ -95.520297061161202, 30.181061277645053 ], [ -95.519785061170651, 30.180985277852315 ], [ -95.519038060276358, 30.180880277689045 ], [ -95.518709061095123, 30.180806277200084 ], [ -95.518310060035773, 30.180696277181305 ], [ -95.518066060000763, 30.180621277518533 ], [ -95.517775060246422, 30.18052627748494 ], [ -95.517417060310777, 30.180384277993198 ], [ -95.516924060194938, 30.180163277468722 ], [ -95.516342060187384, 30.17986727736865 ], [ -95.515940059946942, 30.179650277632096 ], [ -95.515100059571211, 30.179136277514271 ], [ -95.514167059632854, 30.178631277689146 ], [ -95.513779059621811, 30.178472277537416 ], [ -95.513353059302631, 30.178340277360093 ], [ -95.513072058931712, 30.178267277087528 ], [ -95.512792058600297, 30.178207277414216 ], [ -95.512472059096979, 30.178160277152625 ], [ -95.511999058590263, 30.178115276899103 ], [ -95.511755058212813, 30.178098277426717 ], [ -95.511238058786716, 30.178090277348392 ], [ -95.510803058306053, 30.178117276923807 ], [ -95.510326058082484, 30.1781712772801 ], [ -95.509761058307035, 30.178272277506085 ], [ -95.509376057680086, 30.178361277112149 ], [ -95.508950058403627, 30.178493277677017 ], [ -95.508609058127377, 30.178621277518534 ], [ -95.508346057567692, 30.178738277249881 ], [ -95.50807905778214, 30.17886927793273 ], [ -95.507615057785742, 30.179107277378158 ], [ -95.507080057061287, 30.179421277836241 ], [ -95.506292057703661, 30.179871277568608 ], [ -95.505743057292705, 30.180167278055652 ], [ -95.505444056720961, 30.180313278022794 ], [ -95.50499305655633, 30.180486278461625 ], [ -95.50452105655657, 30.18062827786348 ], [ -95.504106056527078, 30.18071327773826 ], [ -95.503659056504816, 30.180784278326339 ], [ -95.503152056852912, 30.1808342784371 ], [ -95.502612056187729, 30.180842278340659 ], [ -95.502069056771788, 30.180814278460787 ], [ -95.501574056628911, 30.180771278226437 ], [ -95.501333056160661, 30.18072927814508 ], [ -95.500764056372503, 30.180603278114557 ], [ -95.500492055757306, 30.180531277993545 ], [ -95.50020805606141, 30.180443277912314 ], [ -95.499956056165601, 30.180359278190025 ], [ -95.499787055289147, 30.180292278511569 ], [ -95.499531055863557, 30.180190278166592 ], [ -95.499151055423937, 30.179992278476174 ], [ -95.498928055299601, 30.179858277888915 ], [ -95.49846705514264, 30.179560277640554 ], [ -95.498049055472947, 30.179254277610962 ], [ -95.497632054950813, 30.17963727792986 ], [ -95.497161054749995, 30.180051278575277 ], [ -95.496536055071985, 30.180585278147415 ], [ -95.496078054997099, 30.180945278163502 ], [ -95.495890054851571, 30.181079278619031 ], [ -95.495686054292392, 30.181200278526457 ], [ -95.495433054505071, 30.181332278880841 ], [ -95.49516505458142, 30.181460278985369 ], [ -95.494917054536103, 30.181568278308252 ], [ -95.494333054204418, 30.181797278884073 ], [ -95.493846054298956, 30.181961278747181 ], [ -95.493569053998314, 30.182026279180128 ], [ -95.49322405421637, 30.182110279189768 ], [ -95.492063053949067, 30.182302278812791 ], [ -95.491595054093807, 30.182397279269448 ], [ -95.491177053415882, 30.1825052791628 ], [ -95.49083105332636, 30.182629278604477 ], [ -95.490512053784371, 30.182763278924764 ], [ -95.490010053022715, 30.183004279191113 ], [ -95.489585053459251, 30.18323927919343 ], [ -95.489381052917992, 30.183361278749945 ], [ -95.489238053072242, 30.183464279601036 ], [ -95.488989053443589, 30.183667279656898 ], [ -95.488681053443798, 30.183931279031654 ], [ -95.487664052746922, 30.184824279345111 ], [ -95.487929053249587, 30.185035279929043 ], [ -95.488555052906648, 30.185563279986429 ], [ -95.488881053245208, 30.185887279929734 ], [ -95.489133053522252, 30.186208279951028 ], [ -95.48930705335772, 30.186471279447129 ], [ -95.489501053410365, 30.186800279818648 ], [ -95.489779053296488, 30.187380279638759 ], [ -95.491106054353622, 30.190292280111059 ], [ -95.491169054212747, 30.190276280487094 ], [ -95.491459054404601, 30.190092280053801 ], [ -95.491748053928987, 30.189405280526074 ], [ -95.492354054315228, 30.188877280630329 ], [ -95.493698054639779, 30.188235279737757 ], [ -95.49406705495727, 30.188165280327265 ], [ -95.494621054339461, 30.188394280383491 ], [ -95.494938054598165, 30.189058280073564 ], [ -95.495440055483343, 30.189332280210262 ], [ -95.496047054795966, 30.189927280468222 ], [ -95.496522055676479, 30.190270280789484 ], [ -95.497366055777036, 30.190430280199951 ], [ -95.498658055990333, 30.19019927983371 ], [ -95.49915405631333, 30.190313280074534 ], [ -95.500240056651307, 30.190564280147029 ], [ -95.500496056638525, 30.190468280113809 ], [ -95.501392056554437, 30.190583279882432 ], [ -95.501893057208648, 30.190469280166159 ], [ -95.502500056445825, 30.190217280142516 ], [ -95.503001057041615, 30.190103279973329 ], [ -95.503792057382313, 30.190104279752369 ], [ -95.50476705789724, 30.190265279999473 ], [ -95.506586058247009, 30.190793280183264 ], [ -95.507087057776531, 30.190794280293634 ], [ -95.507194057621973, 30.190730280374893 ], [ -95.507430058033222, 30.190588280364203 ], [ -95.507773057994328, 30.190153280243418 ], [ -95.508618058021057, 30.189581279595714 ], [ -95.509014058136884, 30.189077279763147 ], [ -95.509278058496477, 30.188505279447511 ], [ -95.509352058444222, 30.188433279535488 ], [ -95.509806058151256, 30.188001279539694 ], [ -95.509999058566834, 30.187918279104931 ], [ -95.510281058248253, 30.187796279662948 ], [ -95.511151059138925, 30.187773279601846 ], [ -95.513233059287799, 30.188393279216129 ], [ -95.51373405962579, 30.188371279101155 ], [ -95.514288059988104, 30.18814227911815 ], [ -95.514527060238365, 30.188143279675035 ], [ -95.514736060070632, 30.188143279076375 ], [ -95.515158060521003, 30.1883262790594 ], [ -95.515500060542138, 30.188739279339096 ], [ -95.515711060145179, 30.189266279604784 ], [ -95.515974059822042, 30.18949527960261 ], [ -95.516264060847917, 30.189564279207801 ], [ -95.516950060337976, 30.18949627926467 ], [ -95.517266060533657, 30.189794279627755 ], [ -95.517424060260154, 30.19025227924757 ], [ -95.517687061070106, 30.19045828004106 ], [ -95.518425061057755, 30.190642279257446 ], [ -95.519164060707851, 30.190551279656823 ], [ -95.51992806148732, 30.19107827977648 ], [ -95.52032306102025, 30.191078279313093 ], [ -95.520851061811143, 30.190552279986274 ], [ -95.521220061370784, 30.190598279226357 ], [ -95.521853061843274, 30.190919279761655 ], [ -95.522195062309947, 30.190919279552531 ], [ -95.522987062334693, 30.190599279130048 ], [ -95.523752062740684, 30.190462279782498 ], [ -95.524227062081906, 30.190188279739907 ], [ -95.524740062257933, 30.189836279204858 ], [ -95.5248600623122, 30.189753278789759 ], [ -95.525493062280958, 30.189753278762197 ], [ -95.525993062771605, 30.189891279139722 ], [ -95.52660006278569, 30.190166278966743 ], [ -95.527232063593317, 30.190212279379068 ], [ -95.527628063035436, 30.190304279195239 ], [ -95.527891063584335, 30.190694279093787 ], [ -95.527864063657688, 30.191427279074709 ], [ -95.527785063418918, 30.191747279873226 ], [ -95.527969063686299, 30.192549279272772 ], [ -95.528285064031095, 30.192916279560613 ], [ -95.528365063545991, 30.192946279804172 ], [ -95.528838064118048, 30.193122279533629 ], [ -95.529872064097319, 30.19335628008778 ], [ -95.530868063843982, 30.193582279815335 ], [ -95.531422064478861, 30.193834279392963 ], [ -95.532634064514752, 30.194865279700771 ], [ -95.532850064654227, 30.194926279686687 ], [ -95.533641064893828, 30.195151280267766 ], [ -95.533688065281254, 30.195164279975785 ], [ -95.534374065121497, 30.195508280110829 ], [ -95.534738065765282, 30.195796280167826 ], [ -95.535367065821035, 30.196295280407004 ], [ -95.535473065438865, 30.19637928003964 ], [ -95.535685065358351, 30.196036279693363 ], [ -95.535898065815402, 30.195678280081619 ], [ -95.536233065457793, 30.195010279764471 ], [ -95.536400065901503, 30.194484279882108 ], [ -95.536517065720304, 30.194011279720712 ], [ -95.53658406530667, 30.193390279182186 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1390, "Tract": "48339691100", "Area_SqMi": 0.91420515257192558, "total_2009": 548, "total_2010": 352, "total_2011": 1041, "total_2012": 75, "total_2013": 83, "total_2014": 83, "total_2015": 127, "total_2016": 97, "total_2017": 73, "total_2018": 126, "total_2019": 44, "total_2020": 60, "age1": 22, "age2": 127, "age3": 70, "earn1": 9, "earn2": 37, "earn3": 173, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 1, "naics_s06": 14, "naics_s07": 7, "naics_s08": 0, "naics_s09": 8, "naics_s10": 164, "naics_s11": 4, "naics_s12": 5, "naics_s13": 0, "naics_s14": 5, "naics_s15": 5, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 6, "naics_s20": 0, "race1": 158, "race2": 35, "race3": 1, "race4": 18, "race5": 0, "race6": 7, "ethnicity1": 171, "ethnicity2": 48, "edu1": 20, "edu2": 27, "edu3": 73, "edu4": 77, "Shape_Length": 28619.901760055658, "Shape_Area": 25486474.975949038, "total_2021": 190, "total_2022": 219 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.53467006500486, 30.179798276899518 ], [ -95.534752064650107, 30.17968827661333 ], [ -95.533016064403512, 30.178720277033406 ], [ -95.532691064082044, 30.178550276949231 ], [ -95.532428063719067, 30.178425276606706 ], [ -95.531911064344129, 30.178195276423157 ], [ -95.531543063233897, 30.178060276902691 ], [ -95.531485063514438, 30.178041276210273 ], [ -95.530999063119125, 30.17790427697258 ], [ -95.530272063154328, 30.177747276540817 ], [ -95.529583063351097, 30.177638276835413 ], [ -95.526779062887698, 30.177208276653463 ], [ -95.52590706241655, 30.177088276574171 ], [ -95.52543106227094, 30.177010276842307 ], [ -95.525037061812711, 30.176945276177122 ], [ -95.523662061189398, 30.176732276437143 ], [ -95.522563061291876, 30.176539276491049 ], [ -95.521427060648151, 30.176308276826759 ], [ -95.519943060869238, 30.175945276995328 ], [ -95.518584060448745, 30.175543276292537 ], [ -95.517104060172073, 30.175068276953262 ], [ -95.516075059826761, 30.174662276079466 ], [ -95.515062059074396, 30.174239276633063 ], [ -95.513207059025333, 30.173336275991186 ], [ -95.511841058514705, 30.172676276476949 ], [ -95.510755058607216, 30.172117276542391 ], [ -95.509778058108125, 30.171559276137277 ], [ -95.509163058189685, 30.171153275879618 ], [ -95.508651057950814, 30.170723276086296 ], [ -95.508197057762914, 30.170287275839204 ], [ -95.507669056965909, 30.169668276047997 ], [ -95.507242056749774, 30.16909327560122 ], [ -95.506778056577247, 30.168442275775092 ], [ -95.505870056522994, 30.1689722757407 ], [ -95.505743057126892, 30.16905427560625 ], [ -95.5052010568387, 30.169402275692811 ], [ -95.504726056731897, 30.169714275700468 ], [ -95.504189056717195, 30.170201275978727 ], [ -95.503849056021238, 30.170646276492675 ], [ -95.50353005576784, 30.171033276166366 ], [ -95.503233056354375, 30.17151027629064 ], [ -95.5025350563876, 30.172772276664524 ], [ -95.502396056191756, 30.172971276623805 ], [ -95.500679055870521, 30.175935277146735 ], [ -95.500375055332142, 30.176430277784423 ], [ -95.500108055404525, 30.176837277299654 ], [ -95.499969056058873, 30.177031277535647 ], [ -95.499506055217637, 30.177647277553607 ], [ -95.499333055019548, 30.177862277536423 ], [ -95.499132055198487, 30.178093277727868 ], [ -95.498415055735123, 30.178894277825563 ], [ -95.498049055472947, 30.179254277610962 ], [ -95.49846705514264, 30.179560277640554 ], [ -95.498928055299601, 30.179858277888915 ], [ -95.499151055423937, 30.179992278476174 ], [ -95.499531055863557, 30.180190278166592 ], [ -95.499787055289147, 30.180292278511569 ], [ -95.499956056165601, 30.180359278190025 ], [ -95.50020805606141, 30.180443277912314 ], [ -95.500492055757306, 30.180531277993545 ], [ -95.500764056372503, 30.180603278114557 ], [ -95.501333056160661, 30.18072927814508 ], [ -95.501574056628911, 30.180771278226437 ], [ -95.502069056771788, 30.180814278460787 ], [ -95.502612056187729, 30.180842278340659 ], [ -95.503152056852912, 30.1808342784371 ], [ -95.503659056504816, 30.180784278326339 ], [ -95.504106056527078, 30.18071327773826 ], [ -95.50452105655657, 30.18062827786348 ], [ -95.50499305655633, 30.180486278461625 ], [ -95.505444056720961, 30.180313278022794 ], [ -95.505743057292705, 30.180167278055652 ], [ -95.506292057703661, 30.179871277568608 ], [ -95.507080057061287, 30.179421277836241 ], [ -95.507615057785742, 30.179107277378158 ], [ -95.50807905778214, 30.17886927793273 ], [ -95.508346057567692, 30.178738277249881 ], [ -95.508609058127377, 30.178621277518534 ], [ -95.508950058403627, 30.178493277677017 ], [ -95.509376057680086, 30.178361277112149 ], [ -95.509761058307035, 30.178272277506085 ], [ -95.510326058082484, 30.1781712772801 ], [ -95.510803058306053, 30.178117276923807 ], [ -95.511238058786716, 30.178090277348392 ], [ -95.511755058212813, 30.178098277426717 ], [ -95.511999058590263, 30.178115276899103 ], [ -95.512472059096979, 30.178160277152625 ], [ -95.512792058600297, 30.178207277414216 ], [ -95.513072058931712, 30.178267277087528 ], [ -95.513353059302631, 30.178340277360093 ], [ -95.513779059621811, 30.178472277537416 ], [ -95.514167059632854, 30.178631277689146 ], [ -95.515100059571211, 30.179136277514271 ], [ -95.515940059946942, 30.179650277632096 ], [ -95.516342060187384, 30.17986727736865 ], [ -95.516924060194938, 30.180163277468722 ], [ -95.517417060310777, 30.180384277993198 ], [ -95.517775060246422, 30.18052627748494 ], [ -95.518066060000763, 30.180621277518533 ], [ -95.518310060035773, 30.180696277181305 ], [ -95.518709061095123, 30.180806277200084 ], [ -95.519038060276358, 30.180880277689045 ], [ -95.519785061170651, 30.180985277852315 ], [ -95.520297061161202, 30.181061277645053 ], [ -95.520818061424492, 30.181154277507467 ], [ -95.521372061750171, 30.181269277536465 ], [ -95.5219060619239, 30.181403277600413 ], [ -95.522418061942062, 30.181567277350645 ], [ -95.52312206163532, 30.181883277246683 ], [ -95.523778061832928, 30.1822272780059 ], [ -95.524494062034464, 30.182590277478731 ], [ -95.525077062608361, 30.182908277852619 ], [ -95.525644061965892, 30.1831472774453 ], [ -95.526912062790458, 30.183720277768185 ], [ -95.527682063492577, 30.183996277859659 ], [ -95.52829706302515, 30.184182277791727 ], [ -95.528828062910222, 30.184299278367668 ], [ -95.52928006324494, 30.184379277641582 ], [ -95.52966506395488, 30.18443227778241 ], [ -95.530324063965466, 30.184491278163613 ], [ -95.53090406341876, 30.184498277584936 ], [ -95.53137906425205, 30.184473277793312 ], [ -95.532723064377222, 30.184368278100226 ], [ -95.532711064489234, 30.184215277436284 ], [ -95.532718064744117, 30.183534278044178 ], [ -95.532809064380359, 30.182840277985996 ], [ -95.533007064307938, 30.182206277003342 ], [ -95.533288063910803, 30.181642277029038 ], [ -95.53373306472551, 30.180923276829486 ], [ -95.53467006500486, 30.179798276899518 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1391, "Tract": "48339691500", "Area_SqMi": 1.7117323261715982, "total_2009": 2483, "total_2010": 4517, "total_2011": 3749, "total_2012": 3754, "total_2013": 3969, "total_2014": 3605, "total_2015": 4018, "total_2016": 3737, "total_2017": 3409, "total_2018": 3169, "total_2019": 3254, "total_2020": 2959, "age1": 701, "age2": 1943, "age3": 633, "earn1": 378, "earn2": 871, "earn3": 2028, "naics_s01": 0, "naics_s02": 104, "naics_s03": 109, "naics_s04": 85, "naics_s05": 28, "naics_s06": 16, "naics_s07": 18, "naics_s08": 33, "naics_s09": 182, "naics_s10": 1307, "naics_s11": 60, "naics_s12": 292, "naics_s13": 0, "naics_s14": 142, "naics_s15": 42, "naics_s16": 286, "naics_s17": 133, "naics_s18": 410, "naics_s19": 30, "naics_s20": 0, "race1": 2644, "race2": 390, "race3": 26, "race4": 155, "race5": 6, "race6": 56, "ethnicity1": 2373, "ethnicity2": 904, "edu1": 461, "edu2": 632, "edu3": 810, "edu4": 673, "Shape_Length": 36754.651501341315, "Shape_Area": 47720167.594508469, "total_2021": 3107, "total_2022": 3277 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.487552051251569, 30.144628271485391 ], [ -95.487657051401555, 30.144261270973047 ], [ -95.487552050460067, 30.144147271085814 ], [ -95.487472051123319, 30.143529271052536 ], [ -95.487524050775136, 30.143231271510814 ], [ -95.487445050442091, 30.143025271333599 ], [ -95.487444050816507, 30.142521270842042 ], [ -95.48696905024461, 30.142109270747103 ], [ -95.486943050524147, 30.14194927044089 ], [ -95.486758050910368, 30.141720270459043 ], [ -95.486310050825566, 30.141606270998089 ], [ -95.486125050693275, 30.141445270598826 ], [ -95.486098050114052, 30.140987270678604 ], [ -95.486229050352406, 30.14039227049204 ], [ -95.486202050411663, 30.139888270633556 ], [ -95.485701050631661, 30.139659270249119 ], [ -95.48548405003541, 30.139449270437087 ], [ -95.485456050605848, 30.139428270016634 ], [ -95.484699049771081, 30.139225270736603 ], [ -95.484541049514362, 30.13899627061247 ], [ -95.484672050264948, 30.138515269998294 ], [ -95.483802049845082, 30.138241270046368 ], [ -95.483196049422574, 30.137783270246345 ], [ -95.482431049757565, 30.137601270471947 ], [ -95.481851049606973, 30.137303270490076 ], [ -95.480744049273312, 30.136938269807032 ], [ -95.480515048680644, 30.136677269670852 ], [ -95.480321048305441, 30.136457269695452 ], [ -95.479003048312109, 30.136138269807159 ], [ -95.478740048163402, 30.135955269826376 ], [ -95.478317048641784, 30.135107269494203 ], [ -95.477763047951456, 30.134512269264746 ], [ -95.477747047842882, 30.134179270027342 ], [ -95.477210047541817, 30.134433270078777 ], [ -95.477021047582483, 30.134518269450577 ], [ -95.476832047274229, 30.134585269456938 ], [ -95.47664904790237, 30.134635269354124 ], [ -95.476472047725579, 30.13467527002188 ], [ -95.476235047844355, 30.134701269937189 ], [ -95.476021047708954, 30.13471527002282 ], [ -95.475829047301374, 30.134710269455447 ], [ -95.47563704750641, 30.134686269528366 ], [ -95.475424047540514, 30.134642269586116 ], [ -95.474935046716666, 30.134516270128508 ], [ -95.473702046939934, 30.134126269400422 ], [ -95.473398047076429, 30.134036269412579 ], [ -95.473072046243729, 30.133928269429411 ], [ -95.472845046288782, 30.133834270003224 ], [ -95.47266204652955, 30.133736269718629 ], [ -95.472522046616987, 30.13364426961299 ], [ -95.472348046860475, 30.133469269227717 ], [ -95.472243046675956, 30.133309269647789 ], [ -95.472156046423763, 30.133139270033681 ], [ -95.47208504651212, 30.132970269437113 ], [ -95.472046046078844, 30.13282326969745 ], [ -95.472019046142648, 30.132654269674862 ], [ -95.471999046112799, 30.132447269044821 ], [ -95.471985046331966, 30.132199269552903 ], [ -95.472005045985185, 30.131592269307298 ], [ -95.472017046646187, 30.131256269184941 ], [ -95.472035046042564, 30.130746268861706 ], [ -95.472048045830675, 30.130402268640552 ], [ -95.472060046080003, 30.130193268724749 ], [ -95.472090045953038, 30.129968268843314 ], [ -95.472194046719679, 30.129504268734046 ], [ -95.472181045961847, 30.12780926841906 ], [ -95.472178045716461, 30.127256268784933 ], [ -95.472172046572851, 30.126480267932557 ], [ -95.4721430465206, 30.126396268633403 ], [ -95.472095046206064, 30.126329268309981 ], [ -95.47202204559423, 30.126272268370368 ], [ -95.471915045806611, 30.12624226835478 ], [ -95.471738046439057, 30.126237267825232 ], [ -95.4706450455175, 30.126253268577425 ], [ -95.470553045948904, 30.126247268605994 ], [ -95.469473044976979, 30.126253267902058 ], [ -95.468287045018869, 30.126260268511462 ], [ -95.467646045283416, 30.126264268260915 ], [ -95.466525044195166, 30.126271268181529 ], [ -95.466225044482798, 30.126282268170243 ], [ -95.466106044911101, 30.126287268814295 ], [ -95.465966044199547, 30.126297268103148 ], [ -95.465902044389594, 30.126305268795416 ], [ -95.465702044228863, 30.126329268030663 ], [ -95.465248044569378, 30.126384268885495 ], [ -95.464773044704557, 30.12644126859643 ], [ -95.464430044228365, 30.126483268101275 ], [ -95.464397044340387, 30.126487268877444 ], [ -95.463905044559894, 30.126549268151525 ], [ -95.463868043723679, 30.126554268309032 ], [ -95.463342043394391, 30.126620268751815 ], [ -95.46283004373683, 30.126685268927339 ], [ -95.462652044163264, 30.126708268243117 ], [ -95.461243042867324, 30.126864268739766 ], [ -95.461017043202077, 30.126877269152569 ], [ -95.460799043600048, 30.126858268282994 ], [ -95.460493043310336, 30.126806268675185 ], [ -95.459563042753729, 30.126674268520979 ], [ -95.45927104296058, 30.12663926834195 ], [ -95.458795042441565, 30.126615268828989 ], [ -95.458423042545817, 30.12660826896526 ], [ -95.458302042536317, 30.126602268628542 ], [ -95.457264042172696, 30.126619268889606 ], [ -95.457128041863797, 30.126621268654489 ], [ -95.456118042421096, 30.12664026844179 ], [ -95.455965042448227, 30.126644268582812 ], [ -95.455467041517309, 30.126654269007368 ], [ -95.45403204120332, 30.126677268727221 ], [ -95.453009041559795, 30.126742269309453 ], [ -95.453258041455456, 30.126849269006026 ], [ -95.453506041050261, 30.126905269367221 ], [ -95.453938041143019, 30.127021269126978 ], [ -95.454213041356013, 30.127122269232704 ], [ -95.454331042068915, 30.127160269355628 ], [ -95.45467004185889, 30.127299269151759 ], [ -95.454893041993543, 30.127395268907552 ], [ -95.455220041935789, 30.127561268886843 ], [ -95.455430041684622, 30.127676269101499 ], [ -95.455635041578731, 30.127808269119644 ], [ -95.45584704177331, 30.127954269263515 ], [ -95.456143042030035, 30.128175269032358 ], [ -95.456152041686622, 30.128182268848676 ], [ -95.45629704190749, 30.128305268937996 ], [ -95.456440041875027, 30.128426269390683 ], [ -95.456628042707607, 30.128596269666982 ], [ -95.456715042033551, 30.128684268946127 ], [ -95.456810041835297, 30.128773269542187 ], [ -95.457208042395933, 30.129143268907836 ], [ -95.457976042259645, 30.129858269840078 ], [ -95.458796042518287, 30.130621269754805 ], [ -95.459364043584117, 30.131150269364245 ], [ -95.461432043406319, 30.133077269778489 ], [ -95.461759043335903, 30.133381269573459 ], [ -95.463053044443782, 30.134586269948503 ], [ -95.465014045126253, 30.136412270662678 ], [ -95.465317045356201, 30.136731270950015 ], [ -95.465536044851078, 30.13698227071589 ], [ -95.465784044601762, 30.137280270387748 ], [ -95.465903045291356, 30.137432270904007 ], [ -95.46613104473262, 30.137743270540717 ], [ -95.466240045490565, 30.137900270630151 ], [ -95.46644904543561, 30.138222270495923 ], [ -95.466645045779515, 30.138549270555306 ], [ -95.467567045494974, 30.14046027118756 ], [ -95.467890045812368, 30.141173271679961 ], [ -95.468229045585474, 30.141930271434745 ], [ -95.468830046556903, 30.143321271551539 ], [ -95.469165046180436, 30.143971272327065 ], [ -95.469528045996441, 30.14461327220674 ], [ -95.469988046530361, 30.145360271768983 ], [ -95.470181046075368, 30.145662272153377 ], [ -95.471268047329843, 30.147366272703962 ], [ -95.472313047263341, 30.148986272371708 ], [ -95.472587047588888, 30.14940027286989 ], [ -95.472791047446719, 30.149749272520605 ], [ -95.472918047328221, 30.149986272544798 ], [ -95.473141047719949, 30.150474273437247 ], [ -95.473236047751072, 30.150721273422079 ], [ -95.473324047444763, 30.150971272986833 ], [ -95.473363047739738, 30.151098272979461 ], [ -95.473435047901802, 30.1513622734929 ], [ -95.47349204726757, 30.151614273380019 ], [ -95.4735410472951, 30.151904273580541 ], [ -95.473558047201195, 30.151998273674376 ], [ -95.473584047806312, 30.152240273211493 ], [ -95.473599047897082, 30.152381273817014 ], [ -95.473620047525628, 30.152770273939844 ], [ -95.473617047918495, 30.153157274001323 ], [ -95.473591047863977, 30.153542274015031 ], [ -95.473575048162786, 30.153671273423665 ], [ -95.473500047622863, 30.154092273877708 ], [ -95.473405047392077, 30.154475273714876 ], [ -95.473270047880305, 30.154901274228209 ], [ -95.473184047998146, 30.155112273662535 ], [ -95.47308704728367, 30.155321274367804 ], [ -95.473006048019656, 30.155495274173685 ], [ -95.472977047798366, 30.155551274314639 ], [ -95.477964048528747, 30.154867273760718 ], [ -95.478198049153519, 30.154819273593098 ], [ -95.478858048749743, 30.154684273277887 ], [ -95.480093049393517, 30.154493274070443 ], [ -95.480573049404086, 30.154432273632125 ], [ -95.48096804958189, 30.154395273584388 ], [ -95.481362050253637, 30.154367273236641 ], [ -95.481759049440782, 30.154355273293501 ], [ -95.482351049936511, 30.154360273365509 ], [ -95.482632050626307, 30.154367273724329 ], [ -95.482715050518834, 30.15437227399028 ], [ -95.482767049838927, 30.154276273356817 ], [ -95.482793050633006, 30.153978273602704 ], [ -95.482582050545133, 30.153772273460998 ], [ -95.482633050445102, 30.152581272777859 ], [ -95.482791049865128, 30.152329273143081 ], [ -95.483345050474483, 30.152237272917802 ], [ -95.483608050444971, 30.151984273358995 ], [ -95.484319050829185, 30.151823273205959 ], [ -95.4845560503353, 30.15154827307143 ], [ -95.485162050994276, 30.151227272549438 ], [ -95.485162050324604, 30.150884272832425 ], [ -95.485346051099341, 30.150654272506831 ], [ -95.485451050948996, 30.150196272289048 ], [ -95.485608051017621, 30.149875272739475 ], [ -95.485661050953667, 30.149532272069539 ], [ -95.485581050617867, 30.149051272728489 ], [ -95.485686050190566, 30.148936272065121 ], [ -95.485686050992399, 30.148609271991219 ], [ -95.485686050990353, 30.148409272665564 ], [ -95.486222050459631, 30.147923272260794 ], [ -95.486344050384446, 30.147813271946305 ], [ -95.486449050749428, 30.14730927188921 ], [ -95.486316050651666, 30.14664527144382 ], [ -95.48686905105339, 30.146576271712636 ], [ -95.486869050582584, 30.146370271414501 ], [ -95.486685050473696, 30.146232272117036 ], [ -95.486658051156624, 30.146072272101712 ], [ -95.486553050294674, 30.146026271958583 ], [ -95.486499050848295, 30.145751271481632 ], [ -95.486763050473073, 30.14559127134843 ], [ -95.48678905085707, 30.145476271580421 ], [ -95.487105051048346, 30.145224271173891 ], [ -95.48715705067363, 30.144857271491887 ], [ -95.487552051251569, 30.144628271485391 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1392, "Tract": "48339691700", "Area_SqMi": 2.3055786700474057, "total_2009": 13266, "total_2010": 15989, "total_2011": 17451, "total_2012": 19187, "total_2013": 22179, "total_2014": 23014, "total_2015": 25407, "total_2016": 26419, "total_2017": 26335, "total_2018": 27250, "total_2019": 29096, "total_2020": 28385, "age1": 6439, "age2": 17142, "age3": 5828, "earn1": 4370, "earn2": 6269, "earn3": 18770, "naics_s01": 0, "naics_s02": 1107, "naics_s03": 78, "naics_s04": 413, "naics_s05": 850, "naics_s06": 1629, "naics_s07": 3532, "naics_s08": 1168, "naics_s09": 456, "naics_s10": 1837, "naics_s11": 517, "naics_s12": 4841, "naics_s13": 1996, "naics_s14": 2717, "naics_s15": 60, "naics_s16": 3963, "naics_s17": 213, "naics_s18": 3430, "naics_s19": 571, "naics_s20": 31, "race1": 22206, "race2": 4500, "race3": 209, "race4": 1937, "race5": 38, "race6": 519, "ethnicity1": 22264, "ethnicity2": 7145, "edu1": 3571, "edu2": 5544, "edu3": 7246, "edu4": 6609, "Shape_Length": 34128.128758860374, "Shape_Area": 64275587.2835906, "total_2021": 27638, "total_2022": 29409 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.48331205086383, 30.157989274701308 ], [ -95.483312050071191, 30.157674274541129 ], [ -95.483188050332075, 30.157127273841382 ], [ -95.4829830503365, 30.156539274078032 ], [ -95.482888050753786, 30.156225273988479 ], [ -95.48280604980107, 30.155828274187257 ], [ -95.482706049884868, 30.154731273517601 ], [ -95.482715050518834, 30.15437227399028 ], [ -95.482632050626307, 30.154367273724329 ], [ -95.482351049936511, 30.154360273365509 ], [ -95.481759049440782, 30.154355273293501 ], [ -95.481362050253637, 30.154367273236641 ], [ -95.48096804958189, 30.154395273584388 ], [ -95.480573049404086, 30.154432273632125 ], [ -95.480093049393517, 30.154493274070443 ], [ -95.478858048749743, 30.154684273277887 ], [ -95.478198049153519, 30.154819273593098 ], [ -95.477964048528747, 30.154867273760718 ], [ -95.472977047798366, 30.155551274314639 ], [ -95.469480046476335, 30.15584327443079 ], [ -95.465498045714369, 30.155899274078013 ], [ -95.464608045915512, 30.155911274637837 ], [ -95.463731045410384, 30.155954274198251 ], [ -95.462364045262532, 30.156058274926274 ], [ -95.461899045215489, 30.156098274215019 ], [ -95.459033044270285, 30.156394274683493 ], [ -95.458608043963537, 30.15643827481194 ], [ -95.458032043751899, 30.156489274819442 ], [ -95.457453044119291, 30.156532274655092 ], [ -95.456875043690488, 30.156560274916121 ], [ -95.45648404311126, 30.156597274811659 ], [ -95.455759042990024, 30.156638274773872 ], [ -95.455430043438525, 30.156652275070467 ], [ -95.454730042785044, 30.156661274823151 ], [ -95.454378042927303, 30.156660274808022 ], [ -95.453309042286193, 30.15672127469859 ], [ -95.452694042925245, 30.156743275384311 ], [ -95.452081042582861, 30.156760275453969 ], [ -95.451924041979993, 30.156753274980641 ], [ -95.451770042043762, 30.156752274927211 ], [ -95.451524042155924, 30.156725275157655 ], [ -95.45113704228838, 30.156708274973319 ], [ -95.45082904253249, 30.156761275475535 ], [ -95.450678041658236, 30.156784274717598 ], [ -95.450421042288099, 30.156812275045606 ], [ -95.450181042060805, 30.156854274829559 ], [ -95.44981904163528, 30.156906275106909 ], [ -95.449513042140779, 30.156957274872202 ], [ -95.449644042123381, 30.157617275667164 ], [ -95.449739041724541, 30.158100275130142 ], [ -95.450089041804873, 30.160130276230309 ], [ -95.450117042509234, 30.160295276200721 ], [ -95.450365042138102, 30.161731276060461 ], [ -95.450411041884223, 30.162090276059043 ], [ -95.450944042208363, 30.167258277129584 ], [ -95.450967042106683, 30.167481277646928 ], [ -95.451119043195064, 30.16895827755096 ], [ -95.45116404298993, 30.169433277734388 ], [ -95.451211043012449, 30.169936277994552 ], [ -95.451230042830062, 30.170134277580043 ], [ -95.451258042787458, 30.170429278194987 ], [ -95.451272042761971, 30.170579278014262 ], [ -95.451790042771833, 30.176082278943902 ], [ -95.451909043280537, 30.177462279373106 ], [ -95.451963043079616, 30.178078279426405 ], [ -95.451979043749517, 30.17826827950735 ], [ -95.452254043972559, 30.17824827930308 ], [ -95.452611043260916, 30.17822727955846 ], [ -95.452941044134661, 30.178208279287183 ], [ -95.453668043317023, 30.178161279451871 ], [ -95.454128044418326, 30.178127279113944 ], [ -95.454422044034175, 30.178112279595062 ], [ -95.454796043978575, 30.178086278933808 ], [ -95.45519304431815, 30.178050279457878 ], [ -95.455484044740302, 30.178011279236319 ], [ -95.455743044269838, 30.177960279547829 ], [ -95.45598504436289, 30.177898279445795 ], [ -95.456386044472751, 30.177782279003722 ], [ -95.456749044905962, 30.177656278745992 ], [ -95.457460044903712, 30.17744127889728 ], [ -95.457801044749999, 30.177348279290335 ], [ -95.458158044397877, 30.177267279233 ], [ -95.458398044487907, 30.177216278938122 ], [ -95.458628044758868, 30.177178279331169 ], [ -95.458891045235248, 30.177146279443093 ], [ -95.459277045237982, 30.177109279119637 ], [ -95.459773045690199, 30.177070279142931 ], [ -95.46295904621482, 30.176983278956669 ], [ -95.463215046400478, 30.176976278561209 ], [ -95.464077046158266, 30.176874279003453 ], [ -95.46440004626335, 30.176822278491137 ], [ -95.464697046225041, 30.176761278371988 ], [ -95.46508304676837, 30.176667278543476 ], [ -95.465343047065303, 30.176604278907128 ], [ -95.465569047273277, 30.176543278310003 ], [ -95.465610046726653, 30.176534278600467 ], [ -95.465761046982038, 30.176499278504842 ], [ -95.466058047376492, 30.176464278675144 ], [ -95.466346046871365, 30.176447278939833 ], [ -95.466460046852262, 30.176439278973106 ], [ -95.466608046790682, 30.176447278863002 ], [ -95.466782046606568, 30.176464278827734 ], [ -95.467062047552275, 30.17653427838761 ], [ -95.467585046993648, 30.176648278590207 ], [ -95.468065047865451, 30.176709278883948 ], [ -95.468432047814488, 30.176726278200583 ], [ -95.46914404777614, 30.176823278646012 ], [ -95.471359048368242, 30.176742278661855 ], [ -95.471663048343487, 30.176244278563633 ], [ -95.471763048784666, 30.176022278585428 ], [ -95.471813048536077, 30.175692277852558 ], [ -95.471516048749606, 30.175256278475995 ], [ -95.471115048203146, 30.174802277711326 ], [ -95.470993048563685, 30.174575278288305 ], [ -95.470940048407073, 30.174331278129959 ], [ -95.470993047987449, 30.174104277900653 ], [ -95.471097048259892, 30.173807277719618 ], [ -95.471377047875109, 30.17342327768398 ], [ -95.471743048220063, 30.173022277831951 ], [ -95.472424048377462, 30.17230627719454 ], [ -95.472982048827546, 30.171748277074901 ], [ -95.473418048844863, 30.171259277537629 ], [ -95.473733048933454, 30.170840277065263 ], [ -95.474087048282072, 30.17031827664988 ], [ -95.474298048976863, 30.169944277302672 ], [ -95.474411048247902, 30.16965627724738 ], [ -95.474495049004688, 30.169506277159801 ], [ -95.474590048414967, 30.169336276649769 ], [ -95.474670048396931, 30.169189277179587 ], [ -95.47474304858649, 30.169054276417693 ], [ -95.475249049133126, 30.16818127695484 ], [ -95.47575504933738, 30.167448276395856 ], [ -95.476505048985217, 30.166645276585662 ], [ -95.477560049371291, 30.16559327627299 ], [ -95.477954049303506, 30.165110276174481 ], [ -95.478303049489526, 30.164342275725435 ], [ -95.478709049674137, 30.163560275257009 ], [ -95.478914049352369, 30.163242275891065 ], [ -95.479478049438825, 30.162682275193117 ], [ -95.480519050412482, 30.161706275459224 ], [ -95.480930049723924, 30.161406275055207 ], [ -95.481597050037237, 30.160904274828333 ], [ -95.482035050498709, 30.160548274813408 ], [ -95.482554050499388, 30.160151275123635 ], [ -95.482915050721687, 30.159493274445634 ], [ -95.483052050096333, 30.159261274475963 ], [ -95.483202050546424, 30.158823274498683 ], [ -95.483298049970955, 30.158303274369437 ], [ -95.48331205086383, 30.157989274701308 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1393, "Tract": "48339691900", "Area_SqMi": 3.2616413878191697, "total_2009": 2822, "total_2010": 2934, "total_2011": 3524, "total_2012": 3233, "total_2013": 3306, "total_2014": 3182, "total_2015": 3628, "total_2016": 3333, "total_2017": 3463, "total_2018": 3761, "total_2019": 4112, "total_2020": 4323, "age1": 1255, "age2": 2675, "age3": 836, "earn1": 862, "earn2": 1506, "earn3": 2398, "naics_s01": 0, "naics_s02": 38, "naics_s03": 0, "naics_s04": 484, "naics_s05": 293, "naics_s06": 328, "naics_s07": 462, "naics_s08": 337, "naics_s09": 82, "naics_s10": 87, "naics_s11": 54, "naics_s12": 529, "naics_s13": 4, "naics_s14": 932, "naics_s15": 103, "naics_s16": 395, "naics_s17": 28, "naics_s18": 341, "naics_s19": 268, "naics_s20": 1, "race1": 3711, "race2": 725, "race3": 25, "race4": 227, "race5": 5, "race6": 73, "ethnicity1": 3410, "ethnicity2": 1356, "edu1": 678, "edu2": 936, "edu3": 1103, "edu4": 794, "Shape_Length": 59599.550410198091, "Shape_Area": 90928979.537372321, "total_2021": 4514, "total_2022": 4766 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.443361038565754, 30.12677726937568 ], [ -95.443321038510916, 30.126583268908547 ], [ -95.443063038211463, 30.125344268649638 ], [ -95.442672038258678, 30.123084268510564 ], [ -95.442570038322131, 30.122625268396089 ], [ -95.442192038644905, 30.120914268188905 ], [ -95.44200603790334, 30.120244268412247 ], [ -95.441911037688044, 30.119969268208493 ], [ -95.441796038254026, 30.119608268177576 ], [ -95.441654037662502, 30.119280267966879 ], [ -95.441573037593486, 30.119104267454805 ], [ -95.441217038101172, 30.118385267915503 ], [ -95.440790038023309, 30.117703267719339 ], [ -95.44049603732762, 30.117290267869667 ], [ -95.440038037363138, 30.116690267801967 ], [ -95.439120037113796, 30.115540266892072 ], [ -95.438487036896859, 30.114715267312015 ], [ -95.438071036799457, 30.114118266973293 ], [ -95.43785503624035, 30.113692267233834 ], [ -95.437622036991172, 30.113207266909154 ], [ -95.437136036733449, 30.11192826669587 ], [ -95.436718036057954, 30.110594266673747 ], [ -95.436649036311479, 30.110371266059506 ], [ -95.436625036007413, 30.110399266033543 ], [ -95.43660403587063, 30.110423266000826 ], [ -95.436519036553108, 30.110519266447191 ], [ -95.436386035984, 30.110670266671534 ], [ -95.436240036119088, 30.11083526641378 ], [ -95.436142035801808, 30.111032266138 ], [ -95.436094036088278, 30.111130266753278 ], [ -95.436067036004559, 30.111183266140475 ], [ -95.435959035833335, 30.111928266819906 ], [ -95.435868036542786, 30.112199266457171 ], [ -95.435570035850958, 30.112664267012448 ], [ -95.435409036215745, 30.112825267101492 ], [ -95.435135036147415, 30.112985267043907 ], [ -95.434128035485429, 30.113307266778026 ], [ -95.432845035184016, 30.113635267032265 ], [ -95.432019034818111, 30.113638267051488 ], [ -95.431528035650686, 30.113689267300739 ], [ -95.43062603540001, 30.113913267285799 ], [ -95.430309034432611, 30.113857267175945 ], [ -95.429928035054743, 30.113586266963761 ], [ -95.429687034217636, 30.113593267041718 ], [ -95.429392034854516, 30.113766266882145 ], [ -95.429108034274691, 30.114107267344025 ], [ -95.428536034466077, 30.114294267554556 ], [ -95.428300033880376, 30.114534267370377 ], [ -95.427592034546521, 30.114853267097587 ], [ -95.42738903391465, 30.114945267096623 ], [ -95.426742034009521, 30.115378267925966 ], [ -95.426517033647713, 30.115459267613002 ], [ -95.426069033514551, 30.115538267698192 ], [ -95.425606033806901, 30.115620267521422 ], [ -95.424742033537115, 30.115605267976353 ], [ -95.424223033683504, 30.115496267566158 ], [ -95.423878033033688, 30.115150267968016 ], [ -95.423689033055481, 30.114836267781715 ], [ -95.423579032762333, 30.114532267335445 ], [ -95.42347303338434, 30.113325267581821 ], [ -95.423119033481271, 30.112762266769401 ], [ -95.422918033077153, 30.112108266646597 ], [ -95.423005033297898, 30.110865267034342 ], [ -95.422701032386371, 30.110204267004018 ], [ -95.42245703280004, 30.109832266273614 ], [ -95.422336033096741, 30.109733266858814 ], [ -95.422018032818372, 30.109656266494927 ], [ -95.422025032486516, 30.110250266523956 ], [ -95.421765032747459, 30.110900266441973 ], [ -95.42174103296361, 30.111315266635632 ], [ -95.421575032774442, 30.111358266586294 ], [ -95.421539032945446, 30.111367267329918 ], [ -95.421328032055342, 30.111229266518411 ], [ -95.421091032628624, 30.111275267317421 ], [ -95.420801032378193, 30.111917267283967 ], [ -95.420854032319809, 30.11223726747243 ], [ -95.421012032430127, 30.112375267245564 ], [ -95.421434032492982, 30.11251226694559 ], [ -95.42159203270981, 30.112695267022811 ], [ -95.421540032193136, 30.113016266997072 ], [ -95.421197032037412, 30.113658267783247 ], [ -95.421382032430046, 30.113841267198513 ], [ -95.421250032786148, 30.114116267951438 ], [ -95.420776031978818, 30.114162267128918 ], [ -95.420328032713883, 30.113956267841452 ], [ -95.420144032335585, 30.11402426768969 ], [ -95.419986032666372, 30.114322267924781 ], [ -95.419986032052734, 30.114780267414446 ], [ -95.419644031775917, 30.115285267919663 ], [ -95.419328032383618, 30.115468267624429 ], [ -95.418853031501882, 30.115560267993185 ], [ -95.41819503138926, 30.115354267889714 ], [ -95.417879031912165, 30.115400267457982 ], [ -95.417800031298185, 30.115720267914597 ], [ -95.416851031188457, 30.115858268420105 ], [ -95.416701031447474, 30.115917267728644 ], [ -95.416034031758656, 30.116179268101259 ], [ -95.415613030692697, 30.116248267909025 ], [ -95.415140030916504, 30.116516268504022 ], [ -95.415086030577328, 30.116546268368793 ], [ -95.414638031440177, 30.117004268374263 ], [ -95.41428903044347, 30.117084268712674 ], [ -95.414138031239631, 30.117119268706659 ], [ -95.412735030929468, 30.117309268481421 ], [ -95.412610030759794, 30.117326268515818 ], [ -95.412344029997158, 30.117427268062595 ], [ -95.411951030537693, 30.117578268133194 ], [ -95.410739029575709, 30.118495268984432 ], [ -95.410371030043791, 30.119480268900485 ], [ -95.41018703031942, 30.120740269267625 ], [ -95.409713029512332, 30.121931269720793 ], [ -95.409028029842503, 30.12273326963615 ], [ -95.408928030126731, 30.123031269580924 ], [ -95.408895029621959, 30.123132269738537 ], [ -95.408700030034922, 30.123090269581425 ], [ -95.408312029865868, 30.123007269464161 ], [ -95.408089029461891, 30.122968269798676 ], [ -95.407946029167945, 30.122953269780634 ], [ -95.407807029979864, 30.12294427011188 ], [ -95.407412029334026, 30.122944269985119 ], [ -95.407176029373247, 30.122952270085371 ], [ -95.405140029142487, 30.123054269507925 ], [ -95.40458902877846, 30.123056270069881 ], [ -95.404262028679113, 30.12304226955149 ], [ -95.403889028158702, 30.122996269475934 ], [ -95.403600028354191, 30.122937269696266 ], [ -95.403547028517792, 30.122926270063964 ], [ -95.403393028131617, 30.122882269988832 ], [ -95.403185028665149, 30.122823270213324 ], [ -95.403137028502883, 30.122807269529186 ], [ -95.403130028635687, 30.122969270286365 ], [ -95.403149027989926, 30.123457270061472 ], [ -95.403135028435472, 30.124032270126637 ], [ -95.403135028745183, 30.124374269951961 ], [ -95.403155028378663, 30.124560270297746 ], [ -95.403185028766998, 30.124697270702328 ], [ -95.403242028889679, 30.124859269879757 ], [ -95.403282028109459, 30.124923270620641 ], [ -95.403375028164916, 30.125035270097101 ], [ -95.40344102816529, 30.125092270069452 ], [ -95.403541028950045, 30.125138270102418 ], [ -95.403763028545882, 30.125215270246635 ], [ -95.404122029140211, 30.125311269986749 ], [ -95.404491029256533, 30.125374269983215 ], [ -95.404943028465155, 30.125476269974222 ], [ -95.405062028754955, 30.125516270239341 ], [ -95.405208029484996, 30.125595269996666 ], [ -95.405375029416263, 30.125702270067091 ], [ -95.405458029274413, 30.125791270069548 ], [ -95.405501029396206, 30.12586127008819 ], [ -95.40554702907319, 30.12599427040459 ], [ -95.405571029046754, 30.126143270652804 ], [ -95.405574028917968, 30.126499270116355 ], [ -95.405581029341661, 30.12748127070979 ], [ -95.405567029348632, 30.128261271355594 ], [ -95.405584028716135, 30.128426270622565 ], [ -95.405604029434528, 30.128565271021237 ], [ -95.405597029017059, 30.12889927139063 ], [ -95.405577028892807, 30.129863271145489 ], [ -95.405621029110776, 30.132575271446601 ], [ -95.405620029089008, 30.132750271554197 ], [ -95.405634029407054, 30.132853272203469 ], [ -95.405654029087529, 30.132943272265599 ], [ -95.405757028975245, 30.133230271969811 ], [ -95.406022029931179, 30.133590272184954 ], [ -95.40627802979337, 30.133906272350995 ], [ -95.406690030171177, 30.134341271998927 ], [ -95.407099029719348, 30.134803271773993 ], [ -95.407544029584713, 30.135333272528143 ], [ -95.409331030907552, 30.137459273098059 ], [ -95.409464030519658, 30.137579272919915 ], [ -95.409597030115336, 30.137672273061028 ], [ -95.409723031076567, 30.137732272551549 ], [ -95.409876030599918, 30.137772272870915 ], [ -95.410162030572295, 30.13781127289031 ], [ -95.410660031445445, 30.137843272327121 ], [ -95.411781031693309, 30.13785827263354 ], [ -95.413535032168184, 30.137764272602379 ], [ -95.417732032662457, 30.137917272790204 ], [ -95.41804103331701, 30.138228272084646 ], [ -95.41844403290402, 30.138627272803653 ], [ -95.418602032937017, 30.138673272636545 ], [ -95.419373033507171, 30.13869227215098 ], [ -95.420704033678106, 30.138724272518136 ], [ -95.42418903401483, 30.138808272300654 ], [ -95.425491035165209, 30.138782272266447 ], [ -95.426196035029477, 30.138768272592973 ], [ -95.427428034909695, 30.138625272676613 ], [ -95.427767035800798, 30.14549527384035 ], [ -95.427760035576171, 30.151053275191074 ], [ -95.427739036403736, 30.152147274579363 ], [ -95.427892035621667, 30.153407275308425 ], [ -95.427939035805196, 30.153428275151654 ], [ -95.428064036271437, 30.153488274844733 ], [ -95.429495036670957, 30.153545274804827 ], [ -95.429971037092244, 30.153603275432829 ], [ -95.43010303654026, 30.153740275142738 ], [ -95.430314036256291, 30.154565275389185 ], [ -95.430473037215037, 30.154886275189028 ], [ -95.430736036783614, 30.155114275410732 ], [ -95.430792036352841, 30.155221275911956 ], [ -95.43085903697758, 30.155348275885057 ], [ -95.430886036845521, 30.155345275551049 ], [ -95.430889036693813, 30.155490275322162 ], [ -95.430903037459174, 30.156144275307302 ], [ -95.430908036826622, 30.156353275930918 ], [ -95.430979036581206, 30.156354275866185 ], [ -95.431643037560761, 30.156356276091337 ], [ -95.432091037513644, 30.156359275954628 ], [ -95.432288037449354, 30.156361275489413 ], [ -95.432466037825705, 30.156363275437677 ], [ -95.43256903768912, 30.156363275601947 ], [ -95.433392037852897, 30.156370275597261 ], [ -95.433633037885883, 30.156373275346386 ], [ -95.433806037333028, 30.156374275428682 ], [ -95.434032038147947, 30.156376275791217 ], [ -95.434068037974043, 30.156376276004764 ], [ -95.434086037384134, 30.156376275643328 ], [ -95.434278037600393, 30.156378276027159 ], [ -95.434697037755882, 30.15638227568758 ], [ -95.4350630376711, 30.156367275765042 ], [ -95.435144038031311, 30.156360275842907 ], [ -95.435245037816614, 30.156352276000828 ], [ -95.435352037768027, 30.156341275308097 ], [ -95.435620037872809, 30.156315275631972 ], [ -95.435838037834529, 30.156274275712516 ], [ -95.436013038631799, 30.156236275367203 ], [ -95.436040037821755, 30.156230275779553 ], [ -95.43618203881438, 30.156204275602693 ], [ -95.435851037848934, 30.154838274909171 ], [ -95.435635038496912, 30.153947274734229 ], [ -95.435320037516078, 30.152647274670052 ], [ -95.435117037672754, 30.15180927432689 ], [ -95.434706037580028, 30.150267274188035 ], [ -95.432203036256169, 30.140294272772646 ], [ -95.431936035958543, 30.139207272511459 ], [ -95.431762036247051, 30.138498271779227 ], [ -95.431595036262578, 30.137815272404069 ], [ -95.431415036024049, 30.137082271912377 ], [ -95.43137803618616, 30.136929271511406 ], [ -95.431156036232878, 30.136050271755064 ], [ -95.431049035692766, 30.135601271548257 ], [ -95.430975036324369, 30.135290271138143 ], [ -95.429985035420515, 30.131367271132447 ], [ -95.429491035015886, 30.129287270356741 ], [ -95.42907703529518, 30.127519269739008 ], [ -95.429065034666266, 30.127467269832863 ], [ -95.429137034930065, 30.127462269781802 ], [ -95.429226035691457, 30.127456269755235 ], [ -95.429275035244359, 30.127452270016658 ], [ -95.429368035425085, 30.127446269576083 ], [ -95.429544035709085, 30.127444270336362 ], [ -95.430346035832954, 30.127434270023706 ], [ -95.431170035552256, 30.127424270158414 ], [ -95.431361035640634, 30.127422269439034 ], [ -95.432388036276876, 30.127410269961075 ], [ -95.433374036340254, 30.127399270189027 ], [ -95.433444036770751, 30.1273952698767 ], [ -95.433689036840235, 30.127382269827617 ], [ -95.434598036205841, 30.127320270104939 ], [ -95.43529403703802, 30.127274270147566 ], [ -95.436099037060188, 30.127221269397097 ], [ -95.436746037540473, 30.12717626952956 ], [ -95.437099037687716, 30.127153269655381 ], [ -95.437419036839927, 30.127132269312714 ], [ -95.438223037173671, 30.12707826912855 ], [ -95.438929037456958, 30.127031269753591 ], [ -95.440142038204215, 30.126942269262781 ], [ -95.441505037978686, 30.126855269021732 ], [ -95.442675038602118, 30.126806269241204 ], [ -95.442999038598117, 30.12679226952562 ], [ -95.443361038565754, 30.12677726937568 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1394, "Tract": "48339690800", "Area_SqMi": 1.9075122149291799, "total_2009": 1370, "total_2010": 1464, "total_2011": 1202, "total_2012": 1873, "total_2013": 1961, "total_2014": 1897, "total_2015": 2118, "total_2016": 2339, "total_2017": 2196, "total_2018": 2256, "total_2019": 2349, "total_2020": 2485, "age1": 520, "age2": 1905, "age3": 576, "earn1": 503, "earn2": 649, "earn3": 1849, "naics_s01": 0, "naics_s02": 22, "naics_s03": 0, "naics_s04": 18, "naics_s05": 117, "naics_s06": 214, "naics_s07": 309, "naics_s08": 317, "naics_s09": 150, "naics_s10": 65, "naics_s11": 17, "naics_s12": 786, "naics_s13": 10, "naics_s14": 35, "naics_s15": 25, "naics_s16": 709, "naics_s17": 4, "naics_s18": 145, "naics_s19": 58, "naics_s20": 0, "race1": 2236, "race2": 482, "race3": 12, "race4": 204, "race5": 8, "race6": 59, "ethnicity1": 2429, "ethnicity2": 572, "edu1": 362, "edu2": 578, "edu3": 783, "edu4": 758, "Shape_Length": 39527.202510760049, "Shape_Area": 53178175.812441394, "total_2021": 2922, "total_2022": 3001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.514868060359305, 30.204828282910089 ], [ -95.514535060710742, 30.204696282725088 ], [ -95.514314060762757, 30.204594282981851 ], [ -95.514122060246393, 30.204479282580216 ], [ -95.513835059971214, 30.204315282655589 ], [ -95.513650060593861, 30.204197282478486 ], [ -95.513541060167569, 30.204114282681598 ], [ -95.513058059869181, 30.203736282423041 ], [ -95.512887060555613, 30.203569282819771 ], [ -95.512701060163991, 30.203386282093248 ], [ -95.511955060059677, 30.202632282180108 ], [ -95.511142059640861, 30.201742282305304 ], [ -95.510345059427181, 30.200879281854835 ], [ -95.508522058553993, 30.199071281309905 ], [ -95.507783058203458, 30.198414281970809 ], [ -95.507042058657618, 30.197702281351734 ], [ -95.506029057656065, 30.196927281431751 ], [ -95.505615058310553, 30.196688281235339 ], [ -95.505249057778627, 30.196497281698289 ], [ -95.504942057512153, 30.196357280930076 ], [ -95.504550057613912, 30.196220281204702 ], [ -95.504140057315951, 30.196102281462256 ], [ -95.503863056966182, 30.196032281665808 ], [ -95.503608057348004, 30.195973281180787 ], [ -95.503393056873961, 30.195934280841708 ], [ -95.503097057121934, 30.195885281560489 ], [ -95.502657057071289, 30.195835280802111 ], [ -95.502203056656555, 30.195824280846406 ], [ -95.50184505695249, 30.195836281085249 ], [ -95.501535057012646, 30.195859281340891 ], [ -95.501080057152009, 30.195916281089985 ], [ -95.500243056951518, 30.196053280943516 ], [ -95.499534055905485, 30.196172281316588 ], [ -95.499111056656332, 30.196238281565723 ], [ -95.498641056087465, 30.196295281866217 ], [ -95.498237056298237, 30.196312281482047 ], [ -95.497730055880226, 30.19630428183163 ], [ -95.497100055492297, 30.19626028141727 ], [ -95.496779055902223, 30.196216281644723 ], [ -95.496494056056747, 30.196154281933488 ], [ -95.496166055949359, 30.196074281839824 ], [ -95.495729055256248, 30.195933281409921 ], [ -95.495332055613062, 30.195777281879717 ], [ -95.494881055124097, 30.19555928185282 ], [ -95.494510055007154, 30.195357281361808 ], [ -95.494183054970193, 30.195136281181245 ], [ -95.493934055013042, 30.194946281425388 ], [ -95.493749055307504, 30.194776280964394 ], [ -95.493566054374782, 30.194609281667923 ], [ -95.493308055211187, 30.194343281209623 ], [ -95.49303805461075, 30.194047281494726 ], [ -95.492822054703652, 30.193778281476742 ], [ -95.4926540541734, 30.193548280845658 ], [ -95.49246405447353, 30.193254281515706 ], [ -95.492320054746884, 30.19298328065813 ], [ -95.492183053907524, 30.192708280717252 ], [ -95.492036054161289, 30.192368280768502 ], [ -95.491508053831879, 30.191210280523858 ], [ -95.491106054353622, 30.190292280111059 ], [ -95.489779053296488, 30.187380279638759 ], [ -95.489501053410365, 30.186800279818648 ], [ -95.48930705335772, 30.186471279447129 ], [ -95.489133053522252, 30.186208279951028 ], [ -95.488881053245208, 30.185887279929734 ], [ -95.488555052906648, 30.185563279986429 ], [ -95.487929053249587, 30.185035279929043 ], [ -95.487664052746922, 30.184824279345111 ], [ -95.486348052804672, 30.183667279594822 ], [ -95.484468052263779, 30.182017278969166 ], [ -95.480609050868509, 30.178640278175283 ], [ -95.480159050422287, 30.17822727861358 ], [ -95.479711050332369, 30.177877278022954 ], [ -95.479309050466597, 30.177575278120795 ], [ -95.478916050550325, 30.17735227815789 ], [ -95.478883050183256, 30.177335278671578 ], [ -95.478469049989982, 30.181475278910796 ], [ -95.478424050524879, 30.181895279071441 ], [ -95.47851305039768, 30.182151279045627 ], [ -95.479274051021449, 30.183475279790645 ], [ -95.479461050985876, 30.183840280025606 ], [ -95.479486050570728, 30.184636279401744 ], [ -95.479012050283032, 30.187526280545022 ], [ -95.479950050910318, 30.19138928071245 ], [ -95.479352050928583, 30.193798281566906 ], [ -95.479783051955181, 30.198567282609513 ], [ -95.479887051450149, 30.199717282898174 ], [ -95.479992051813184, 30.200878283093445 ], [ -95.479994051143947, 30.201322283286345 ], [ -95.480015051707397, 30.205271283704512 ], [ -95.480016051924949, 30.205539283853511 ], [ -95.482108052005728, 30.204306283374638 ], [ -95.483849052357698, 30.203273283030569 ], [ -95.484183052960361, 30.203106283508877 ], [ -95.484363053020516, 30.203023283625313 ], [ -95.484708052584949, 30.202880283296668 ], [ -95.485246052759138, 30.202707283235373 ], [ -95.485591052753549, 30.202617283622214 ], [ -95.485782053668203, 30.202581283408286 ], [ -95.486187053437249, 30.202517283044109 ], [ -95.486743053595703, 30.20247128287733 ], [ -95.486906053298412, 30.202465283044944 ], [ -95.487134053360577, 30.202462283534604 ], [ -95.487341053089338, 30.202468283146196 ], [ -95.487562053350686, 30.202482282930291 ], [ -95.487789053698364, 30.20250428343849 ], [ -95.488226053358048, 30.202565283251065 ], [ -95.488456054193747, 30.202621283152155 ], [ -95.488929053816719, 30.202751282710654 ], [ -95.489391053768955, 30.202909283418901 ], [ -95.489665054576008, 30.203010283006421 ], [ -95.490441054003711, 30.203324283356753 ], [ -95.491360054836065, 30.203683283345885 ], [ -95.491536054841049, 30.203751283157953 ], [ -95.492819054987493, 30.204253283718607 ], [ -95.493694055204202, 30.204581283275054 ], [ -95.494114055808225, 30.204751283785157 ], [ -95.494482055939116, 30.204915283550712 ], [ -95.494863055543433, 30.205098283510221 ], [ -95.495582056136698, 30.2054802836706 ], [ -95.496108056169362, 30.205805283053223 ], [ -95.496173056042451, 30.205850283115172 ], [ -95.496904055982654, 30.206359283271702 ], [ -95.49764705636666, 30.206970283703221 ], [ -95.498076056572359, 30.207380284000443 ], [ -95.498137056240424, 30.207444283891672 ], [ -95.49856705706415, 30.207891283692945 ], [ -95.498756057249452, 30.20811328411569 ], [ -95.498805056984025, 30.208174283910399 ], [ -95.499173056868912, 30.208630283980106 ], [ -95.499523056776027, 30.20912628444739 ], [ -95.500197057596736, 30.210222284582329 ], [ -95.500427057006519, 30.21012028437352 ], [ -95.500797057426652, 30.209964284457325 ], [ -95.502450057532684, 30.209268283526701 ], [ -95.502485057671777, 30.20925128383022 ], [ -95.504532058026484, 30.208340283317035 ], [ -95.50509105844381, 30.208087283486027 ], [ -95.505683058536448, 30.207821283841344 ], [ -95.50642305903925, 30.207487283470286 ], [ -95.506883058498971, 30.207295283038974 ], [ -95.507166058475377, 30.2071922832708 ], [ -95.507490059394655, 30.207099283208169 ], [ -95.50778805886479, 30.20703028288106 ], [ -95.508113059010341, 30.206961282898785 ], [ -95.508376059656428, 30.206927283579677 ], [ -95.508958059007682, 30.206843283310924 ], [ -95.512609060019145, 30.206252282893722 ], [ -95.513091060268493, 30.206185282583391 ], [ -95.513333059976105, 30.206145283110221 ], [ -95.513498060198671, 30.206110283162268 ], [ -95.513658060685572, 30.206068282847735 ], [ -95.513813060538723, 30.206014283257083 ], [ -95.513924060352494, 30.205965282732855 ], [ -95.514045060639759, 30.205896282860778 ], [ -95.514158060560334, 30.205814282874453 ], [ -95.514264060321551, 30.205729283038583 ], [ -95.514377060761134, 30.20562228294779 ], [ -95.514527060647453, 30.205416282582888 ], [ -95.514868060359305, 30.204828282910089 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1395, "Tract": "48339693600", "Area_SqMi": 2.4846837452463211, "total_2009": 10366, "total_2010": 10468, "total_2011": 10904, "total_2012": 5070, "total_2013": 5085, "total_2014": 12216, "total_2015": 12660, "total_2016": 12880, "total_2017": 13258, "total_2018": 13225, "total_2019": 13726, "total_2020": 13550, "age1": 3027, "age2": 9681, "age3": 3814, "earn1": 2391, "earn2": 4936, "earn3": 9195, "naics_s01": 0, "naics_s02": 2, "naics_s03": 44, "naics_s04": 432, "naics_s05": 198, "naics_s06": 115, "naics_s07": 1745, "naics_s08": 8, "naics_s09": 16, "naics_s10": 285, "naics_s11": 127, "naics_s12": 210, "naics_s13": 0, "naics_s14": 322, "naics_s15": 11133, "naics_s16": 466, "naics_s17": 52, "naics_s18": 921, "naics_s19": 157, "naics_s20": 288, "race1": 13824, "race2": 1902, "race3": 122, "race4": 443, "race5": 13, "race6": 217, "ethnicity1": 12615, "ethnicity2": 3906, "edu1": 2115, "edu2": 3153, "edu3": 4080, "edu4": 4147, "Shape_Length": 33800.659206763856, "Shape_Area": 69268730.23873654, "total_2021": 15745, "total_2022": 16521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.505478063144267, 30.313074305213345 ], [ -95.505572063620363, 30.312873304834078 ], [ -95.504905063362202, 30.312581304742498 ], [ -95.502518062700588, 30.311509304532834 ], [ -95.50153506227656, 30.311115304740309 ], [ -95.500296061942549, 30.310712304499461 ], [ -95.49893706176006, 30.310368304306365 ], [ -95.498061060848315, 30.310200304953387 ], [ -95.496615060601528, 30.310000304316233 ], [ -95.494020060434323, 30.309811304454747 ], [ -95.485698058579004, 30.309202304833988 ], [ -95.480440056452508, 30.308816304752725 ], [ -95.479643056880761, 30.3087573049004 ], [ -95.477665055849741, 30.30861230460286 ], [ -95.47387605488565, 30.308328304970402 ], [ -95.47245005419262, 30.308210305016193 ], [ -95.47203805446037, 30.308177305505772 ], [ -95.470004054231126, 30.308070305281031 ], [ -95.469675053905448, 30.308053304868764 ], [ -95.469340053587388, 30.308111305328463 ], [ -95.469851054410682, 30.309626305774298 ], [ -95.470027054605893, 30.310158305159501 ], [ -95.470710054536994, 30.312223305567588 ], [ -95.47116405458884, 30.31363030588512 ], [ -95.471612055092294, 30.314964306170054 ], [ -95.471981054511858, 30.316055306221816 ], [ -95.472180055414711, 30.316643306556966 ], [ -95.473170055724594, 30.319566307203139 ], [ -95.474064056074525, 30.322308307653604 ], [ -95.474134056160764, 30.322523308097068 ], [ -95.475108056343558, 30.325272308770657 ], [ -95.47516205609665, 30.325430308630967 ], [ -95.475392055952057, 30.326030308247031 ], [ -95.47580705656037, 30.327114308897393 ], [ -95.476110056539412, 30.327904309223179 ], [ -95.476567056515677, 30.329095308907512 ], [ -95.476617056517426, 30.329222309585383 ], [ -95.477173057068427, 30.330648309796192 ], [ -95.477448057575486, 30.331352309861416 ], [ -95.478271057628334, 30.333516310273673 ], [ -95.478584057423006, 30.333431310255456 ], [ -95.47924405758107, 30.333253309800838 ], [ -95.481212058406399, 30.332725309443305 ], [ -95.482687058808253, 30.332391309926191 ], [ -95.484115058845632, 30.332099309299924 ], [ -95.486755059818066, 30.331452309500673 ], [ -95.486863059468988, 30.331427309335762 ], [ -95.486974059398435, 30.331402309676506 ], [ -95.488524060401858, 30.33101430879076 ], [ -95.489084060554262, 30.33081130902119 ], [ -95.489910060578183, 30.330612308974189 ], [ -95.49157506103046, 30.330213308418831 ], [ -95.492077060673964, 30.330069308389522 ], [ -95.492303060555798, 30.32999230860133 ], [ -95.492683060891437, 30.329840308509326 ], [ -95.493120060895635, 30.329640308346377 ], [ -95.49340006125135, 30.329490308563958 ], [ -95.493658061408055, 30.329343308655073 ], [ -95.493893061335484, 30.329192308608548 ], [ -95.494229061138455, 30.328956308536739 ], [ -95.494424061380201, 30.328800308080691 ], [ -95.494582061510769, 30.328674308017078 ], [ -95.494880061742407, 30.328401308519805 ], [ -95.495008061254595, 30.328275308355831 ], [ -95.495219061544731, 30.328052308161752 ], [ -95.495406061052449, 30.327829308039881 ], [ -95.495706061667377, 30.327427307706039 ], [ -95.495835061615466, 30.327240308294879 ], [ -95.496390061329777, 30.3262743079259 ], [ -95.496642062245087, 30.325836307918774 ], [ -95.496827062041348, 30.325555307552133 ], [ -95.4969210616281, 30.325412307661431 ], [ -95.497166062155102, 30.325085307305603 ], [ -95.497433062136139, 30.324792307668414 ], [ -95.497647062445736, 30.324589307695351 ], [ -95.49770306224201, 30.324543307675182 ], [ -95.497787061462816, 30.324463307183848 ], [ -95.497996062023901, 30.324301307670506 ], [ -95.498309062017796, 30.324094307482124 ], [ -95.498883061877791, 30.323761307110825 ], [ -95.499555061931957, 30.323370307169093 ], [ -95.500948063003463, 30.32256830706261 ], [ -95.501263063174832, 30.322380307125872 ], [ -95.501693063161298, 30.322078307167519 ], [ -95.501819063117622, 30.321979306837402 ], [ -95.501885062662339, 30.321932306661701 ], [ -95.502441062784726, 30.321410307045067 ], [ -95.502799063242534, 30.320938306864715 ], [ -95.503199063507935, 30.320326306515387 ], [ -95.503451063325855, 30.319731306237948 ], [ -95.503668062865174, 30.318927305885996 ], [ -95.503680062786614, 30.318861306073419 ], [ -95.50391506306191, 30.317526305410688 ], [ -95.504088063302135, 30.316363305266893 ], [ -95.504160063255469, 30.316058305347607 ], [ -95.504245063547117, 30.315832305673275 ], [ -95.504298063177558, 30.315692305188584 ], [ -95.504519062945249, 30.315046305419443 ], [ -95.504639063092085, 30.314798305458034 ], [ -95.504754063352323, 30.314560304812314 ], [ -95.504878063715537, 30.314305305170155 ], [ -95.505478063144267, 30.313074305213345 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1396, "Tract": "48201422302", "Area_SqMi": 0.26804386838360805, "total_2009": 43, "total_2010": 50, "total_2011": 48, "total_2012": 44, "total_2013": 43, "total_2014": 55, "total_2015": 46, "total_2016": 49, "total_2017": 50, "total_2018": 59, "total_2019": 73, "total_2020": 71, "age1": 8, "age2": 21, "age3": 27, "earn1": 17, "earn2": 24, "earn3": 15, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 2, "naics_s11": 4, "naics_s12": 2, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 15, "naics_s20": 0, "race1": 38, "race2": 5, "race3": 1, "race4": 11, "race5": 0, "race6": 1, "ethnicity1": 24, "ethnicity2": 32, "edu1": 17, "edu2": 13, "edu3": 10, "edu4": 8, "Shape_Length": 11205.922803012745, "Shape_Area": 7472604.2888693223, "total_2021": 79, "total_2022": 56 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.500580032410667, 29.654497171178988 ], [ -95.500575032046044, 29.654009171120737 ], [ -95.500516032071033, 29.651189170376572 ], [ -95.500516031775973, 29.650632170272146 ], [ -95.50052203163591, 29.650237169740208 ], [ -95.500502032304567, 29.649590170252523 ], [ -95.50048103221647, 29.649223170162404 ], [ -95.500473031339766, 29.648887169729448 ], [ -95.500449031406845, 29.648252170108005 ], [ -95.500454032176663, 29.647600169646775 ], [ -95.500435031554773, 29.646931169041668 ], [ -95.500406032135871, 29.645970168946324 ], [ -95.500376031379076, 29.644377168955369 ], [ -95.50034103202897, 29.644377169109507 ], [ -95.49897603132473, 29.644401169130248 ], [ -95.498274031017786, 29.644412169019763 ], [ -95.498069031076085, 29.644406169050718 ], [ -95.497388031176939, 29.644385169117864 ], [ -95.495579030582405, 29.644422168901396 ], [ -95.493372029355839, 29.644468168882241 ], [ -95.493351030021898, 29.644471168884657 ], [ -95.493411030186849, 29.647036169270194 ], [ -95.493434030379689, 29.647962169632009 ], [ -95.493375030080244, 29.648660170473157 ], [ -95.493257030196148, 29.649179169867878 ], [ -95.493071029640888, 29.649701170697462 ], [ -95.492945030372951, 29.650082170357638 ], [ -95.492693029463638, 29.650602170519473 ], [ -95.494034030335328, 29.651551170308736 ], [ -95.496106030792291, 29.653205170472123 ], [ -95.496666031553275, 29.65360617053441 ], [ -95.497308031220498, 29.654095171438762 ], [ -95.497579031743754, 29.65433117134253 ], [ -95.497704031702597, 29.654376171140761 ], [ -95.497988031917274, 29.654479170927889 ], [ -95.498290031858815, 29.654523170927401 ], [ -95.498442031231974, 29.65450617114676 ], [ -95.499562031348091, 29.654467171211348 ], [ -95.500288031981597, 29.654505171119716 ], [ -95.500580032410667, 29.654497171178988 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1397, "Tract": "48201423402", "Area_SqMi": 0.59216734155657724, "total_2009": 386, "total_2010": 426, "total_2011": 418, "total_2012": 325, "total_2013": 333, "total_2014": 365, "total_2015": 368, "total_2016": 351, "total_2017": 348, "total_2018": 344, "total_2019": 368, "total_2020": 337, "age1": 61, "age2": 158, "age3": 82, "earn1": 102, "earn2": 122, "earn3": 77, "naics_s01": 0, "naics_s02": 0, "naics_s03": 19, "naics_s04": 14, "naics_s05": 0, "naics_s06": 0, "naics_s07": 44, "naics_s08": 1, "naics_s09": 0, "naics_s10": 6, "naics_s11": 11, "naics_s12": 3, "naics_s13": 0, "naics_s14": 1, "naics_s15": 7, "naics_s16": 157, "naics_s17": 0, "naics_s18": 22, "naics_s19": 16, "naics_s20": 0, "race1": 137, "race2": 123, "race3": 2, "race4": 34, "race5": 4, "race6": 1, "ethnicity1": 210, "ethnicity2": 91, "edu1": 62, "edu2": 73, "edu3": 62, "edu4": 43, "Shape_Length": 18230.581252378019, "Shape_Area": 16508611.978063187, "total_2021": 326, "total_2022": 301 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.536273041662511, 29.656303169737392 ], [ -95.536272041441833, 29.656198169897124 ], [ -95.536266040837376, 29.65542117023654 ], [ -95.536207041245419, 29.65268516944403 ], [ -95.536203041178325, 29.652502169435628 ], [ -95.53616704076002, 29.650505168627863 ], [ -95.536168040806288, 29.649988168883702 ], [ -95.536103040373249, 29.647547168791078 ], [ -95.536065040498102, 29.645401167506115 ], [ -95.535186040301539, 29.645436167677737 ], [ -95.534662040620944, 29.645432168271245 ], [ -95.534000039906971, 29.645353167933155 ], [ -95.53332904034977, 29.645219168009856 ], [ -95.533236040252618, 29.64519116801138 ], [ -95.532578039686797, 29.644958168209023 ], [ -95.531613039500456, 29.644469168156498 ], [ -95.53064203941193, 29.643797167754293 ], [ -95.529812039277331, 29.642988167369943 ], [ -95.52911303902124, 29.642474167437545 ], [ -95.52847803909269, 29.642172167187411 ], [ -95.527917038205288, 29.641930167724471 ], [ -95.527095037828659, 29.641725167060283 ], [ -95.526757038396937, 29.641650167204773 ], [ -95.526124037899876, 29.64157216758208 ], [ -95.525762038191402, 29.641550167345091 ], [ -95.525274037701394, 29.641537167492515 ], [ -95.524493037775471, 29.641542167838509 ], [ -95.523780037163746, 29.641556167320989 ], [ -95.52233703730839, 29.641759167526097 ], [ -95.52217803724038, 29.641774167843888 ], [ -95.521100036867466, 29.641882167846063 ], [ -95.521248036931809, 29.642896167691529 ], [ -95.521290037116415, 29.643608168065857 ], [ -95.52130003689831, 29.644278168122003 ], [ -95.521451037040336, 29.644909168549535 ], [ -95.521934037596466, 29.646201168995457 ], [ -95.522071036792838, 29.646577168282406 ], [ -95.522535037053927, 29.647711169024614 ], [ -95.522928037472994, 29.648220169301172 ], [ -95.523225037702417, 29.648499168956459 ], [ -95.523533037369603, 29.648703169282026 ], [ -95.523868037384474, 29.648906169469061 ], [ -95.524274038086403, 29.649088168968703 ], [ -95.524506038029344, 29.64916016930599 ], [ -95.524947037951293, 29.649251168790119 ], [ -95.525372038051785, 29.64929516896963 ], [ -95.527928039258398, 29.64930216933557 ], [ -95.52795203925109, 29.650093169005476 ], [ -95.527966038967662, 29.651059169593257 ], [ -95.527975038682087, 29.651642169085601 ], [ -95.527981039216783, 29.652143169320659 ], [ -95.52800303890389, 29.653838169640913 ], [ -95.528015039293848, 29.654749170150478 ], [ -95.528018039493531, 29.654918169846816 ], [ -95.528020038934557, 29.655123170325563 ], [ -95.528025039271284, 29.655207170167898 ], [ -95.528031039304224, 29.65568916996116 ], [ -95.529214039183714, 29.655705170064476 ], [ -95.529402039710618, 29.655717170122148 ], [ -95.530177039491704, 29.65589617024548 ], [ -95.531274039532619, 29.65614617070543 ], [ -95.531520040133145, 29.656192169859711 ], [ -95.531937040066737, 29.656271170664958 ], [ -95.53248004047795, 29.656328170705088 ], [ -95.533537040967616, 29.656344170325074 ], [ -95.534262040912566, 29.656330170613906 ], [ -95.536273041662511, 29.656303169737392 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1398, "Tract": "48201423401", "Area_SqMi": 0.87724401269626906, "total_2009": 648, "total_2010": 672, "total_2011": 643, "total_2012": 731, "total_2013": 740, "total_2014": 710, "total_2015": 753, "total_2016": 674, "total_2017": 732, "total_2018": 701, "total_2019": 755, "total_2020": 703, "age1": 222, "age2": 408, "age3": 204, "earn1": 255, "earn2": 339, "earn3": 240, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 20, "naics_s06": 75, "naics_s07": 194, "naics_s08": 1, "naics_s09": 0, "naics_s10": 86, "naics_s11": 18, "naics_s12": 18, "naics_s13": 0, "naics_s14": 10, "naics_s15": 77, "naics_s16": 250, "naics_s17": 0, "naics_s18": 73, "naics_s19": 5, "naics_s20": 0, "race1": 477, "race2": 294, "race3": 7, "race4": 42, "race5": 3, "race6": 11, "ethnicity1": 606, "ethnicity2": 228, "edu1": 128, "edu2": 166, "edu3": 186, "edu4": 132, "Shape_Length": 21204.794005835123, "Shape_Area": 24456061.655838858, "total_2021": 751, "total_2022": 834 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.528031039304224, 29.65568916996116 ], [ -95.528025039271284, 29.655207170167898 ], [ -95.528020038934557, 29.655123170325563 ], [ -95.528018039493531, 29.654918169846816 ], [ -95.528015039293848, 29.654749170150478 ], [ -95.52800303890389, 29.653838169640913 ], [ -95.527981039216783, 29.652143169320659 ], [ -95.527975038682087, 29.651642169085601 ], [ -95.527966038967662, 29.651059169593257 ], [ -95.52795203925109, 29.650093169005476 ], [ -95.527928039258398, 29.64930216933557 ], [ -95.525372038051785, 29.64929516896963 ], [ -95.524947037951293, 29.649251168790119 ], [ -95.524506038029344, 29.64916016930599 ], [ -95.524274038086403, 29.649088168968703 ], [ -95.523868037384474, 29.648906169469061 ], [ -95.523533037369603, 29.648703169282026 ], [ -95.523225037702417, 29.648499168956459 ], [ -95.522928037472994, 29.648220169301172 ], [ -95.522535037053927, 29.647711169024614 ], [ -95.522071036792838, 29.646577168282406 ], [ -95.521934037596466, 29.646201168995457 ], [ -95.521451037040336, 29.644909168549535 ], [ -95.52130003689831, 29.644278168122003 ], [ -95.521290037116415, 29.643608168065857 ], [ -95.521248036931809, 29.642896167691529 ], [ -95.521100036867466, 29.641882167846063 ], [ -95.52025403621559, 29.64190016729497 ], [ -95.518680036113395, 29.641881167737353 ], [ -95.517456036183674, 29.642136168059 ], [ -95.51689603581552, 29.642317167622434 ], [ -95.516589035155604, 29.642417168382462 ], [ -95.516204035426995, 29.642548168329736 ], [ -95.515307035818509, 29.642996167928015 ], [ -95.515236035038981, 29.643044167827657 ], [ -95.514867034813932, 29.643236168043561 ], [ -95.514661035528533, 29.643360168545115 ], [ -95.514243035526221, 29.643553168492769 ], [ -95.514030035127803, 29.64367416851092 ], [ -95.513786035174618, 29.643767168106823 ], [ -95.513519035317074, 29.643873168522305 ], [ -95.513026034399772, 29.644018168117025 ], [ -95.512527034700653, 29.644093168066853 ], [ -95.511892034167033, 29.644193168520886 ], [ -95.51168303427626, 29.644210168904799 ], [ -95.511480033994431, 29.644207168926112 ], [ -95.510971034410986, 29.644217168161596 ], [ -95.509967034400489, 29.644222168900555 ], [ -95.509497033575798, 29.644233168621511 ], [ -95.508300034014738, 29.644238168417651 ], [ -95.508305033473349, 29.644716168704804 ], [ -95.508307033627204, 29.644896169133101 ], [ -95.508313033879503, 29.645381168507662 ], [ -95.508318033868122, 29.645819169048981 ], [ -95.508328033361593, 29.646714169181035 ], [ -95.508330033851806, 29.646903169056444 ], [ -95.508335033712143, 29.647309169198717 ], [ -95.50833203348536, 29.647395169566106 ], [ -95.508359033473525, 29.648395169808435 ], [ -95.508347034022549, 29.648499169136301 ], [ -95.508348033487223, 29.648626169754721 ], [ -95.508351033727664, 29.649422169735853 ], [ -95.508357033690729, 29.650080169692547 ], [ -95.508371033710077, 29.650368170259135 ], [ -95.508359033932734, 29.650520170289539 ], [ -95.508370033719331, 29.651142169720572 ], [ -95.508383033953294, 29.651532169963012 ], [ -95.508392034165993, 29.652132169802247 ], [ -95.508396033987282, 29.653036170384308 ], [ -95.508399034230919, 29.653920170643225 ], [ -95.508411034566493, 29.654440170772677 ], [ -95.508415034045854, 29.654605171068464 ], [ -95.50841803385822, 29.655011170600911 ], [ -95.508420033961258, 29.655279170784937 ], [ -95.508433034030759, 29.656023170839511 ], [ -95.508680034457683, 29.656016171003593 ], [ -95.509735034218309, 29.656010170622235 ], [ -95.510908035178957, 29.655999170700689 ], [ -95.511498035420814, 29.65599917133774 ], [ -95.511999035408806, 29.655996170582377 ], [ -95.512972035304216, 29.655987171209858 ], [ -95.51312103493413, 29.655966170834731 ], [ -95.513591035914459, 29.655907170847769 ], [ -95.514186035318815, 29.655833170845089 ], [ -95.514492035231257, 29.655800171074588 ], [ -95.515547036174283, 29.655667170768126 ], [ -95.51692103648378, 29.655653170478221 ], [ -95.516996036262285, 29.655644170974401 ], [ -95.519654036744612, 29.655612170834356 ], [ -95.520435037608323, 29.655629170217555 ], [ -95.521312037067148, 29.655623170679927 ], [ -95.521440037978977, 29.655614170430038 ], [ -95.521513036988551, 29.65561717048017 ], [ -95.521749037360024, 29.655601170863459 ], [ -95.5227990380438, 29.655615170806005 ], [ -95.523562038035294, 29.655664170897932 ], [ -95.524349038286118, 29.655710170149035 ], [ -95.524514038360124, 29.655713170734874 ], [ -95.524697038314926, 29.655719170390011 ], [ -95.525393038011416, 29.655744170039149 ], [ -95.525644038080813, 29.655737170565093 ], [ -95.526682039209945, 29.655717170363761 ], [ -95.527272039386673, 29.6557041701065 ], [ -95.528031039304224, 29.65568916996116 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1399, "Tract": "48201522402", "Area_SqMi": 1.1174770140835273, "total_2009": 5042, "total_2010": 5380, "total_2011": 4992, "total_2012": 6268, "total_2013": 6802, "total_2014": 6976, "total_2015": 5965, "total_2016": 4950, "total_2017": 5084, "total_2018": 5370, "total_2019": 5105, "total_2020": 5194, "age1": 1031, "age2": 2972, "age3": 1388, "earn1": 625, "earn2": 1433, "earn3": 3333, "naics_s01": 0, "naics_s02": 51, "naics_s03": 0, "naics_s04": 767, "naics_s05": 1021, "naics_s06": 468, "naics_s07": 974, "naics_s08": 54, "naics_s09": 29, "naics_s10": 26, "naics_s11": 55, "naics_s12": 487, "naics_s13": 0, "naics_s14": 513, "naics_s15": 149, "naics_s16": 239, "naics_s17": 5, "naics_s18": 118, "naics_s19": 435, "naics_s20": 0, "race1": 3952, "race2": 810, "race3": 36, "race4": 500, "race5": 6, "race6": 87, "ethnicity1": 3702, "ethnicity2": 1689, "edu1": 879, "edu2": 1090, "edu3": 1299, "edu4": 1092, "Shape_Length": 26471.062200488977, "Shape_Area": 31153346.571624521, "total_2021": 5168, "total_2022": 5391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563789055552405, 29.81270320147895 ], [ -95.56378805519293, 29.812483201329265 ], [ -95.563772055660948, 29.809922200602983 ], [ -95.56375305544266, 29.80759620010701 ], [ -95.563742054664075, 29.806243199431428 ], [ -95.563642054652064, 29.799952198686089 ], [ -95.563612054527866, 29.798089198124295 ], [ -95.563597054876951, 29.797066197896591 ], [ -95.563572054538994, 29.79525319772976 ], [ -95.563345053905792, 29.792483197109838 ], [ -95.56331505466116, 29.790999196966723 ], [ -95.563310054592506, 29.790799196743802 ], [ -95.563307054102708, 29.790602196614699 ], [ -95.563276053918983, 29.78908519657044 ], [ -95.563223053566261, 29.78677319558572 ], [ -95.563229054389282, 29.786702196342024 ], [ -95.563224054142125, 29.786563195454438 ], [ -95.563218053985452, 29.78610519570697 ], [ -95.563213053993778, 29.785812196073604 ], [ -95.563211054108919, 29.785725195904494 ], [ -95.563210054204333, 29.785685195258008 ], [ -95.563210054364532, 29.785660195537556 ], [ -95.563208054158551, 29.785540195754777 ], [ -95.563201053408349, 29.78517419542457 ], [ -95.563194054042455, 29.784811195382183 ], [ -95.562984053697178, 29.784811195491624 ], [ -95.562642053590153, 29.784816195414287 ], [ -95.562479053591318, 29.784816195989897 ], [ -95.561905053606225, 29.784822195708848 ], [ -95.561451053440763, 29.784828195450618 ], [ -95.561224053010221, 29.784811195483627 ], [ -95.560811053538302, 29.78480219556586 ], [ -95.558041052521929, 29.784747195965586 ], [ -95.55720305275203, 29.784731195712478 ], [ -95.555631051806344, 29.784690195675065 ], [ -95.554875052180378, 29.78467419579891 ], [ -95.553582051020925, 29.784657195487821 ], [ -95.553585051414458, 29.78469119570515 ], [ -95.553582051802977, 29.784744196084386 ], [ -95.553582051481143, 29.784819195450822 ], [ -95.553583051601265, 29.784879195573005 ], [ -95.553585051310634, 29.785015195593775 ], [ -95.553587051392512, 29.785117195833486 ], [ -95.553596051916713, 29.785509195609386 ], [ -95.553613051626513, 29.786308196040338 ], [ -95.553663051721756, 29.789816197060553 ], [ -95.553672051490935, 29.790271197043676 ], [ -95.553681052119501, 29.790702197336344 ], [ -95.553686052199964, 29.791162196848099 ], [ -95.553740051886322, 29.793571197775226 ], [ -95.553765052054757, 29.794500197946302 ], [ -95.553783052114156, 29.795514197611229 ], [ -95.553794051873027, 29.79633719803434 ], [ -95.553804051635311, 29.796935198702734 ], [ -95.553811051720757, 29.797133198266877 ], [ -95.553833051746864, 29.797962198239716 ], [ -95.55385705240603, 29.798837198779431 ], [ -95.553879052274979, 29.799678198553131 ], [ -95.553904052643375, 29.800516199134716 ], [ -95.553921052625114, 29.801366198965454 ], [ -95.553934051840827, 29.8022451995731 ], [ -95.553958052606973, 29.803092199914683 ], [ -95.553974052246261, 29.803938200060543 ], [ -95.553998052589094, 29.804776200000131 ], [ -95.553999052390438, 29.805227200390927 ], [ -95.554007052673796, 29.805753199956616 ], [ -95.554001052469786, 29.806162200484362 ], [ -95.553994052810197, 29.806624200086887 ], [ -95.553989052920727, 29.806948200232956 ], [ -95.553973052756831, 29.807424200751875 ], [ -95.553891052365117, 29.807807200152993 ], [ -95.553878052632129, 29.808653201066946 ], [ -95.553871052758325, 29.809131200918909 ], [ -95.553967052421129, 29.80921920083869 ], [ -95.554124052967708, 29.809298200828518 ], [ -95.554294053139571, 29.80934220114068 ], [ -95.554448052516577, 29.809375200578696 ], [ -95.554448053142423, 29.809925200923367 ], [ -95.554451053170894, 29.810926201598466 ], [ -95.55444905257697, 29.811346201484668 ], [ -95.554459052825706, 29.812302201504465 ], [ -95.554455052898987, 29.812683201324582 ], [ -95.55545705269239, 29.812679201191205 ], [ -95.555611053056751, 29.812681201732559 ], [ -95.55645105295774, 29.81268220176214 ], [ -95.556573053081479, 29.812681201283986 ], [ -95.557578053585488, 29.812679201179744 ], [ -95.558729053812101, 29.812670200949423 ], [ -95.55884305379027, 29.812671201745754 ], [ -95.561103054165585, 29.812692201618667 ], [ -95.562123055122598, 29.812699201003365 ], [ -95.562656054627382, 29.812711201057986 ], [ -95.563305054718697, 29.812719200796195 ], [ -95.56358605474378, 29.812710200795994 ], [ -95.563789055552405, 29.81270320147895 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1400, "Tract": "48201522401", "Area_SqMi": 1.0545253552261624, "total_2009": 2023, "total_2010": 2032, "total_2011": 2483, "total_2012": 2406, "total_2013": 2658, "total_2014": 2011, "total_2015": 2131, "total_2016": 2229, "total_2017": 2267, "total_2018": 2190, "total_2019": 2517, "total_2020": 2753, "age1": 1014, "age2": 2036, "age3": 756, "earn1": 717, "earn2": 1214, "earn3": 1875, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 73, "naics_s05": 157, "naics_s06": 29, "naics_s07": 268, "naics_s08": 45, "naics_s09": 19, "naics_s10": 940, "naics_s11": 91, "naics_s12": 615, "naics_s13": 6, "naics_s14": 349, "naics_s15": 0, "naics_s16": 95, "naics_s17": 10, "naics_s18": 1068, "naics_s19": 37, "naics_s20": 0, "race1": 2728, "race2": 678, "race3": 38, "race4": 277, "race5": 10, "race6": 75, "ethnicity1": 2450, "ethnicity2": 1356, "edu1": 608, "edu2": 701, "edu3": 791, "edu4": 692, "Shape_Length": 26478.517890161002, "Shape_Area": 29398362.065522119, "total_2021": 3431, "total_2022": 3806 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.554455052898987, 29.812683201324582 ], [ -95.554459052825706, 29.812302201504465 ], [ -95.55444905257697, 29.811346201484668 ], [ -95.554451053170894, 29.810926201598466 ], [ -95.554448053142423, 29.809925200923367 ], [ -95.554448052516577, 29.809375200578696 ], [ -95.554294053139571, 29.80934220114068 ], [ -95.554124052967708, 29.809298200828518 ], [ -95.553967052421129, 29.80921920083869 ], [ -95.553871052758325, 29.809131200918909 ], [ -95.553878052632129, 29.808653201066946 ], [ -95.553891052365117, 29.807807200152993 ], [ -95.553973052756831, 29.807424200751875 ], [ -95.553989052920727, 29.806948200232956 ], [ -95.553994052810197, 29.806624200086887 ], [ -95.554001052469786, 29.806162200484362 ], [ -95.554007052673796, 29.805753199956616 ], [ -95.553999052390438, 29.805227200390927 ], [ -95.553998052589094, 29.804776200000131 ], [ -95.553974052246261, 29.803938200060543 ], [ -95.553958052606973, 29.803092199914683 ], [ -95.553934051840827, 29.8022451995731 ], [ -95.553921052625114, 29.801366198965454 ], [ -95.553904052643375, 29.800516199134716 ], [ -95.553879052274979, 29.799678198553131 ], [ -95.55385705240603, 29.798837198779431 ], [ -95.553833051746864, 29.797962198239716 ], [ -95.553811051720757, 29.797133198266877 ], [ -95.553804051635311, 29.796935198702734 ], [ -95.553794051873027, 29.79633719803434 ], [ -95.553783052114156, 29.795514197611229 ], [ -95.553765052054757, 29.794500197946302 ], [ -95.553740051886322, 29.793571197775226 ], [ -95.553686052199964, 29.791162196848099 ], [ -95.553681052119501, 29.790702197336344 ], [ -95.553672051490935, 29.790271197043676 ], [ -95.553663051721756, 29.789816197060553 ], [ -95.553613051626513, 29.786308196040338 ], [ -95.553596051916713, 29.785509195609386 ], [ -95.553587051392512, 29.785117195833486 ], [ -95.553585051310634, 29.785015195593775 ], [ -95.553583051601265, 29.784879195573005 ], [ -95.553582051481143, 29.784819195450822 ], [ -95.553582051802977, 29.784744196084386 ], [ -95.553585051414458, 29.78469119570515 ], [ -95.553582051020925, 29.784657195487821 ], [ -95.55101905058838, 29.784640195920833 ], [ -95.549457050118761, 29.784669195544616 ], [ -95.548980050366012, 29.784686195703134 ], [ -95.546362049578832, 29.784708195992344 ], [ -95.545647049310716, 29.784725196523311 ], [ -95.544329048869372, 29.784737195841505 ], [ -95.543984049044369, 29.78474319641364 ], [ -95.543990048998012, 29.785055196217382 ], [ -95.543992049242803, 29.78509919633267 ], [ -95.543993049409195, 29.785145196138465 ], [ -95.543995048637782, 29.785197196141876 ], [ -95.544004049120318, 29.785460196053254 ], [ -95.544045049351752, 29.786468196215715 ], [ -95.544096049437584, 29.787044196948585 ], [ -95.544127048726082, 29.787402196784289 ], [ -95.544227048788017, 29.787788196661758 ], [ -95.544303048888565, 29.788041196899993 ], [ -95.544412048918346, 29.788310196482286 ], [ -95.544487049001376, 29.788570196756567 ], [ -95.544540048941968, 29.788866196676416 ], [ -95.544562049132892, 29.789191197328698 ], [ -95.544577049603788, 29.789993197365856 ], [ -95.544583049063675, 29.790377197530301 ], [ -95.544607049100307, 29.790854197155998 ], [ -95.544620049871796, 29.791388197789779 ], [ -95.544628049119908, 29.791975197470272 ], [ -95.54462804977382, 29.791993197484668 ], [ -95.544639049516135, 29.792671197754174 ], [ -95.544675049903134, 29.794287198338388 ], [ -95.544714049975894, 29.795107198360451 ], [ -95.544719049823513, 29.795341197908371 ], [ -95.544741049683324, 29.796207198152583 ], [ -95.544755049350911, 29.796938198871466 ], [ -95.544773049856886, 29.797641198702234 ], [ -95.544783050188883, 29.798353198852844 ], [ -95.544783049939682, 29.798553198635016 ], [ -95.544781049558139, 29.799249199104992 ], [ -95.544824049963239, 29.800948199008094 ], [ -95.544839049730868, 29.801807199890831 ], [ -95.544850049701324, 29.802635200058418 ], [ -95.544931049947039, 29.803427199956822 ], [ -95.54495805045768, 29.803584199761247 ], [ -95.545079050047107, 29.804177200067016 ], [ -95.545116050042708, 29.804515200550004 ], [ -95.545146049838095, 29.805078200189627 ], [ -95.54514704965959, 29.805330200544162 ], [ -95.545148049760186, 29.805644200523119 ], [ -95.545151050642829, 29.805890200379473 ], [ -95.545150050366587, 29.806014200037065 ], [ -95.545166050133147, 29.806800200248222 ], [ -95.545169049856057, 29.807457200446997 ], [ -95.545174049969418, 29.807991200629083 ], [ -95.545194050833928, 29.808904200915766 ], [ -95.545200050494699, 29.809086201323083 ], [ -95.545195050095828, 29.809260200914842 ], [ -95.545198050127851, 29.809445201010373 ], [ -95.545196050742433, 29.810379200983029 ], [ -95.54519705047737, 29.811209201376329 ], [ -95.545200050747255, 29.811429201962792 ], [ -95.54521605102579, 29.8126922015011 ], [ -95.546587051353811, 29.812695201450452 ], [ -95.547307050910717, 29.812692201908252 ], [ -95.547898050946458, 29.812690201435352 ], [ -95.549467051933973, 29.812687201287261 ], [ -95.550160052232769, 29.812685202003181 ], [ -95.550950052220344, 29.812678201987001 ], [ -95.552349052390213, 29.812681201730502 ], [ -95.552958052833461, 29.812682201648887 ], [ -95.553236052187444, 29.812686201516268 ], [ -95.554061052843679, 29.812684201602185 ], [ -95.554455052898987, 29.812683201324582 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1401, "Tract": "48201552002", "Area_SqMi": 0.64471143006931142, "total_2009": 1112, "total_2010": 1449, "total_2011": 2118, "total_2012": 1903, "total_2013": 1926, "total_2014": 2347, "total_2015": 2635, "total_2016": 2620, "total_2017": 2813, "total_2018": 2914, "total_2019": 2996, "total_2020": 2655, "age1": 907, "age2": 1136, "age3": 469, "earn1": 642, "earn2": 958, "earn3": 912, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 48, "naics_s05": 0, "naics_s06": 4, "naics_s07": 653, "naics_s08": 0, "naics_s09": 3, "naics_s10": 36, "naics_s11": 13, "naics_s12": 308, "naics_s13": 0, "naics_s14": 166, "naics_s15": 52, "naics_s16": 185, "naics_s17": 0, "naics_s18": 1025, "naics_s19": 19, "naics_s20": 0, "race1": 1875, "race2": 417, "race3": 26, "race4": 145, "race5": 1, "race6": 48, "ethnicity1": 1621, "ethnicity2": 891, "edu1": 352, "edu2": 457, "edu3": 477, "edu4": 319, "Shape_Length": 19341.609848797088, "Shape_Area": 17973451.23569195, "total_2021": 2353, "total_2022": 2512 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619806074321886, 29.914901219771551 ], [ -95.61972307463995, 29.914845219958924 ], [ -95.619596073743352, 29.914761219863028 ], [ -95.619488073790066, 29.914690220445102 ], [ -95.619440074576119, 29.914658220373209 ], [ -95.618590073614726, 29.914095219585487 ], [ -95.618510073605592, 29.91403821959458 ], [ -95.612412072479771, 29.909707219668515 ], [ -95.612271072509557, 29.909607219096308 ], [ -95.612082072354269, 29.909472218933509 ], [ -95.608862071114274, 29.907244219241012 ], [ -95.60857907065791, 29.907059218813082 ], [ -95.606811069978079, 29.905755218669011 ], [ -95.606324070395388, 29.905410218696964 ], [ -95.606221070497014, 29.905337218720952 ], [ -95.603850069969639, 29.903658218370513 ], [ -95.603657069422411, 29.903521217904885 ], [ -95.603277069001223, 29.903268218318928 ], [ -95.602796069366889, 29.902948217923928 ], [ -95.602689068937622, 29.903146217984368 ], [ -95.602623069601208, 29.903262218318943 ], [ -95.60255906905806, 29.90337521852631 ], [ -95.602544069177199, 29.903408218643484 ], [ -95.602515069229071, 29.903458218091366 ], [ -95.602470069247147, 29.903548217951375 ], [ -95.602346069558095, 29.903833218727375 ], [ -95.602244068825385, 29.904102218675554 ], [ -95.602206069361159, 29.904232218126587 ], [ -95.602171069316825, 29.904390218222833 ], [ -95.602147069332489, 29.904551218987898 ], [ -95.602152069235558, 29.904861218808065 ], [ -95.602172068918833, 29.905075218930619 ], [ -95.602202069410438, 29.905261219006423 ], [ -95.602245069714613, 29.905440218410813 ], [ -95.602296069397653, 29.905601219036665 ], [ -95.602320069693434, 29.905692218458 ], [ -95.602384068873562, 29.905884218482353 ], [ -95.602413069615508, 29.90595121870664 ], [ -95.602469069504949, 29.906081218796178 ], [ -95.602570069814263, 29.90627421863439 ], [ -95.602681069845289, 29.90645621915213 ], [ -95.603023069210181, 29.906937218927499 ], [ -95.603082069856356, 29.907034218980762 ], [ -95.603129069779627, 29.907110219258389 ], [ -95.603222069192626, 29.907288219196829 ], [ -95.603326069196214, 29.907529219022045 ], [ -95.603395069384703, 29.907719219392934 ], [ -95.603451069452532, 29.907940218956135 ], [ -95.603489069632118, 29.908149219019947 ], [ -95.603511070134601, 29.908363219623915 ], [ -95.603514069242607, 29.908498219175311 ], [ -95.603515069811209, 29.908542219598562 ], [ -95.603524069499244, 29.908838219207308 ], [ -95.603526069727479, 29.909216219875315 ], [ -95.603507070166586, 29.910040219953341 ], [ -95.603508069503675, 29.910268219400088 ], [ -95.603510069987536, 29.910666219972235 ], [ -95.603543069829627, 29.912725219806525 ], [ -95.603553070372371, 29.913373220586568 ], [ -95.603564070390789, 29.914072220067386 ], [ -95.603578070258337, 29.915384220511552 ], [ -95.603606069986, 29.917171221377444 ], [ -95.603607070230979, 29.917266221332721 ], [ -95.603611070449134, 29.91751522133212 ], [ -95.603609070650165, 29.917910221564494 ], [ -95.603621069742317, 29.918439221162803 ], [ -95.603635070524462, 29.91869322164295 ], [ -95.603648070163175, 29.918819221557143 ], [ -95.603661070340522, 29.918937221109463 ], [ -95.603669070199985, 29.918985221774719 ], [ -95.603701070749992, 29.919183221114832 ], [ -95.603753070294772, 29.919430221496079 ], [ -95.60382106988736, 29.919676221392812 ], [ -95.603902070833854, 29.919917221437892 ], [ -95.603994069944676, 29.920150221328864 ], [ -95.604096070498343, 29.920375221999564 ], [ -95.604207070673851, 29.920592221548027 ], [ -95.604323070918099, 29.920796221432095 ], [ -95.604659070367902, 29.921348221811193 ], [ -95.604761070900665, 29.921519222102933 ], [ -95.604936070962182, 29.921813222271343 ], [ -95.605389070365717, 29.921604221638813 ], [ -95.605745070661456, 29.921439221689614 ], [ -95.606387071323439, 29.921141221412086 ], [ -95.607016070780844, 29.920851221967382 ], [ -95.609752071534075, 29.919585221571161 ], [ -95.611079071945227, 29.918971221165961 ], [ -95.611200072156848, 29.918915221383187 ], [ -95.611936071853663, 29.918543221241773 ], [ -95.612261072363552, 29.91839522135967 ], [ -95.612442072328051, 29.918261220593575 ], [ -95.613912072479522, 29.917528220792637 ], [ -95.614869072594388, 29.917066221119498 ], [ -95.615460072742451, 29.916808220573174 ], [ -95.615730073045455, 29.916697220670994 ], [ -95.615771072827002, 29.916680220318788 ], [ -95.615935072791643, 29.916612220613459 ], [ -95.615997073319122, 29.916586220410387 ], [ -95.616240072947022, 29.916558220168756 ], [ -95.616526073818335, 29.916431220660847 ], [ -95.616844073432432, 29.916281220171847 ], [ -95.61728007333393, 29.91607322023302 ], [ -95.617382073956421, 29.916024220206225 ], [ -95.617953074030311, 29.915756220667173 ], [ -95.618434073618872, 29.915530220219416 ], [ -95.619242074440436, 29.915169220136804 ], [ -95.619806074321886, 29.914901219771551 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1402, "Tract": "48201552101", "Area_SqMi": 0.91538844770056005, "total_2009": 416, "total_2010": 398, "total_2011": 474, "total_2012": 1003, "total_2013": 1093, "total_2014": 987, "total_2015": 1116, "total_2016": 1398, "total_2017": 1445, "total_2018": 1545, "total_2019": 1678, "total_2020": 1581, "age1": 562, "age2": 1054, "age3": 345, "earn1": 478, "earn2": 616, "earn3": 867, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 55, "naics_s05": 201, "naics_s06": 259, "naics_s07": 44, "naics_s08": 33, "naics_s09": 0, "naics_s10": 150, "naics_s11": 52, "naics_s12": 117, "naics_s13": 12, "naics_s14": 168, "naics_s15": 21, "naics_s16": 384, "naics_s17": 106, "naics_s18": 347, "naics_s19": 12, "naics_s20": 0, "race1": 1310, "race2": 416, "race3": 16, "race4": 182, "race5": 2, "race6": 35, "ethnicity1": 1409, "ethnicity2": 552, "edu1": 276, "edu2": 349, "edu3": 475, "edu4": 299, "Shape_Length": 20902.839283975587, "Shape_Area": 25519463.218905512, "total_2021": 1609, "total_2022": 1961 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.628555076444485, 29.921781221444093 ], [ -95.628734076531458, 29.921182221133865 ], [ -95.628500076357611, 29.921019220831273 ], [ -95.628459076752321, 29.920990221432639 ], [ -95.626825076627412, 29.919848220458015 ], [ -95.623590075750528, 29.917587220540256 ], [ -95.622266074942004, 29.916662219931879 ], [ -95.62205507500363, 29.916514220299856 ], [ -95.621496074944858, 29.916123220540026 ], [ -95.620814074131985, 29.915611220174377 ], [ -95.620057074231966, 29.915078220018916 ], [ -95.619951074414146, 29.915003219749021 ], [ -95.619806074321886, 29.914901219771551 ], [ -95.619242074440436, 29.915169220136804 ], [ -95.618434073618872, 29.915530220219416 ], [ -95.617953074030311, 29.915756220667173 ], [ -95.617382073956421, 29.916024220206225 ], [ -95.61728007333393, 29.91607322023302 ], [ -95.616844073432432, 29.916281220171847 ], [ -95.616526073818335, 29.916431220660847 ], [ -95.616240072947022, 29.916558220168756 ], [ -95.615997073319122, 29.916586220410387 ], [ -95.615935072791643, 29.916612220613459 ], [ -95.615771072827002, 29.916680220318788 ], [ -95.615730073045455, 29.916697220670994 ], [ -95.615460072742451, 29.916808220573174 ], [ -95.614869072594388, 29.917066221119498 ], [ -95.613912072479522, 29.917528220792637 ], [ -95.612442072328051, 29.918261220593575 ], [ -95.612261072363552, 29.91839522135967 ], [ -95.611936071853663, 29.918543221241773 ], [ -95.611200072156848, 29.918915221383187 ], [ -95.611079071945227, 29.918971221165961 ], [ -95.609752071534075, 29.919585221571161 ], [ -95.607016070780844, 29.920851221967382 ], [ -95.606387071323439, 29.921141221412086 ], [ -95.605745070661456, 29.921439221689614 ], [ -95.605389070365717, 29.921604221638813 ], [ -95.604936070962182, 29.921813222271343 ], [ -95.60528407080524, 29.922374222317998 ], [ -95.605429070446831, 29.922608222015675 ], [ -95.605623070558778, 29.922940222225634 ], [ -95.605669070488787, 29.92302222213408 ], [ -95.605781071197654, 29.923241221957763 ], [ -95.605876071462731, 29.92347122277231 ], [ -95.605892070869885, 29.92349422221103 ], [ -95.605988071397306, 29.92373722260453 ], [ -95.606096070756521, 29.923926222475853 ], [ -95.606170070720069, 29.924180222844676 ], [ -95.606237071467419, 29.924455222183777 ], [ -95.606265070686192, 29.9246352222263 ], [ -95.606297071450641, 29.92488522266903 ], [ -95.606315071560502, 29.925086222579736 ], [ -95.606312071114729, 29.925197222828888 ], [ -95.606325071597055, 29.925487222902039 ], [ -95.606348071021301, 29.925483222981306 ], [ -95.606626071049888, 29.925467222495012 ], [ -95.60683407089445, 29.925417223041233 ], [ -95.606923071371995, 29.925417222824542 ], [ -95.606987071498736, 29.925461222462701 ], [ -95.607036071782503, 29.925494222406702 ], [ -95.60710607131135, 29.925499223038116 ], [ -95.607453071517114, 29.925477222780163 ], [ -95.607636071129278, 29.925483222600157 ], [ -95.607863071499281, 29.925455222555147 ], [ -95.607996071886532, 29.925461222786314 ], [ -95.608084072162555, 29.925428223090595 ], [ -95.608115071467154, 29.92543322233708 ], [ -95.608141071849175, 29.925455222339863 ], [ -95.608191071465413, 29.925466222699054 ], [ -95.608254072099712, 29.925433222955377 ], [ -95.608317071643626, 29.925450222584161 ], [ -95.60836207201605, 29.925488222261929 ], [ -95.608450072056925, 29.925499222395924 ], [ -95.608526072208122, 29.925460222203881 ], [ -95.608652071806802, 29.925433222194901 ], [ -95.608967071720997, 29.925416222932551 ], [ -95.609226071825262, 29.925438222455217 ], [ -95.609422071557489, 29.925433222856825 ], [ -95.610009071813309, 29.925498222164059 ], [ -95.610047072167433, 29.925498222471099 ], [ -95.610154072228227, 29.92547122227959 ], [ -95.610293071806709, 29.925504222152295 ], [ -95.610432072560883, 29.925553222582845 ], [ -95.610533072579756, 29.92556422290215 ], [ -95.610589072849393, 29.925559222486861 ], [ -95.610646071990118, 29.925537222186037 ], [ -95.610703072528111, 29.925537222823063 ], [ -95.61073807260594, 29.925542222297885 ], [ -95.611164072266206, 29.925608222570773 ], [ -95.611359072798905, 29.925652222237318 ], [ -95.611523072127781, 29.92570722288901 ], [ -95.611650072771312, 29.925784222622916 ], [ -95.61170807272228, 29.925808222886737 ], [ -95.611757073008661, 29.925828222323712 ], [ -95.611833073010303, 29.925827222774327 ], [ -95.611896072462486, 29.925805222681515 ], [ -95.612003072284764, 29.925816222601785 ], [ -95.612129073145056, 29.92587722304236 ], [ -95.612849072886817, 29.926146222996842 ], [ -95.613026072813497, 29.92626122287081 ], [ -95.613152072766198, 29.926322222290054 ], [ -95.613682073002806, 29.92661822245994 ], [ -95.614440073199162, 29.927118223139981 ], [ -95.614730073664774, 29.927354222660313 ], [ -95.615166073611533, 29.92772822275376 ], [ -95.615494074092496, 29.927942222936 ], [ -95.615595073874758, 29.928008222466111 ], [ -95.615917073621546, 29.928234223260826 ], [ -95.616441073674096, 29.928508223116815 ], [ -95.616599073590493, 29.928591223354914 ], [ -95.616984073708323, 29.928772222746247 ], [ -95.617363074391776, 29.928882223151231 ], [ -95.617742073981518, 29.928969223337344 ], [ -95.61781707471323, 29.928997223378705 ], [ -95.617950074305469, 29.929074222688417 ], [ -95.618152074207643, 29.929140223340756 ], [ -95.618966074944893, 29.929255222895499 ], [ -95.619099074839923, 29.929249223234486 ], [ -95.619212074591971, 29.929227222719295 ], [ -95.619679074579921, 29.929276222807527 ], [ -95.619842075180486, 29.929283222973215 ], [ -95.620216075383397, 29.929298222793065 ], [ -95.62034307531205, 29.929303222880499 ], [ -95.62051907516981, 29.92930922275157 ], [ -95.620858074925053, 29.929312222724363 ], [ -95.621579075741266, 29.929319222975099 ], [ -95.62334607578282, 29.929307223152108 ], [ -95.623937075522534, 29.929319223212989 ], [ -95.625006076305041, 29.92934022277846 ], [ -95.626555076604973, 29.929323222804371 ], [ -95.627588076646347, 29.929323223191432 ], [ -95.627821076793992, 29.929324222927214 ], [ -95.62867807684799, 29.929324223051548 ], [ -95.62866107705797, 29.92853822225743 ], [ -95.628658077149439, 29.928401222212095 ], [ -95.628634077494752, 29.927177222272004 ], [ -95.628623077236156, 29.926690222093935 ], [ -95.628606077072561, 29.925785222420846 ], [ -95.628592077128047, 29.925448221821206 ], [ -95.628546077126046, 29.924808221843961 ], [ -95.628535076825401, 29.924445221466968 ], [ -95.628535076705546, 29.923873221303261 ], [ -95.628535077314766, 29.923767221775528 ], [ -95.628535077156883, 29.923607221960381 ], [ -95.62853407681591, 29.923421221287288 ], [ -95.628534077316374, 29.923195221639716 ], [ -95.628532077147824, 29.922617221312237 ], [ -95.628518076493066, 29.922077221463919 ], [ -95.62852407624635, 29.92195022102068 ], [ -95.628535076818835, 29.921892221611085 ], [ -95.628555076444485, 29.921781221444093 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1403, "Tract": "48201552103", "Area_SqMi": 0.60239319342724218, "total_2009": 149, "total_2010": 133, "total_2011": 123, "total_2012": 118, "total_2013": 117, "total_2014": 127, "total_2015": 124, "total_2016": 227, "total_2017": 243, "total_2018": 251, "total_2019": 288, "total_2020": 294, "age1": 125, "age2": 141, "age3": 33, "earn1": 92, "earn2": 148, "earn3": 59, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 0, "naics_s07": 39, "naics_s08": 2, "naics_s09": 0, "naics_s10": 3, "naics_s11": 13, "naics_s12": 1, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 162, "naics_s17": 0, "naics_s18": 71, "naics_s19": 0, "naics_s20": 0, "race1": 191, "race2": 74, "race3": 4, "race4": 22, "race5": 0, "race6": 8, "ethnicity1": 212, "ethnicity2": 87, "edu1": 36, "edu2": 55, "edu3": 53, "edu4": 30, "Shape_Length": 18575.078716658925, "Shape_Area": 16793691.226496931, "total_2021": 310, "total_2022": 299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.629011078189023, 29.947432226710625 ], [ -95.62898707811145, 29.946076226281445 ], [ -95.628985077908681, 29.946003226162929 ], [ -95.628967077594282, 29.945152226255892 ], [ -95.628959077500681, 29.944724225968962 ], [ -95.628957077495272, 29.944617225662078 ], [ -95.62895307747965, 29.944531225427585 ], [ -95.628951078164647, 29.944473225760394 ], [ -95.628950078113235, 29.944455225357892 ], [ -95.628941077869186, 29.944079225854285 ], [ -95.628924077379921, 29.942972225205903 ], [ -95.628909077286934, 29.942417225271942 ], [ -95.628909077400991, 29.942198225486894 ], [ -95.628897077319721, 29.941766225272115 ], [ -95.628887077919302, 29.941287224972555 ], [ -95.628865077251021, 29.940107225265805 ], [ -95.628867077777187, 29.940022224881957 ], [ -95.628859077705329, 29.939673224625032 ], [ -95.628845077386799, 29.939024224380578 ], [ -95.62883607762771, 29.938660224572605 ], [ -95.628835077271617, 29.938542224407851 ], [ -95.628817077713506, 29.937753224380216 ], [ -95.628802077597427, 29.93706122421634 ], [ -95.628791077927204, 29.936505224277155 ], [ -95.628783077808862, 29.936014224159777 ], [ -95.62876607704176, 29.934999223584978 ], [ -95.628768077174087, 29.933700223319221 ], [ -95.628764076808977, 29.933390223928686 ], [ -95.628762077080495, 29.933224223846651 ], [ -95.628760077343088, 29.933190223877496 ], [ -95.628753077747234, 29.933099223598685 ], [ -95.628712076978658, 29.931253223257205 ], [ -95.628716077081918, 29.931182222802359 ], [ -95.62871007764268, 29.931092223241809 ], [ -95.628705076942836, 29.930617223206511 ], [ -95.62867807684799, 29.929324223051548 ], [ -95.627821076793992, 29.929324222927214 ], [ -95.627588076646347, 29.929323223191432 ], [ -95.626555076604973, 29.929323222804371 ], [ -95.625006076305041, 29.92934022277846 ], [ -95.623937075522534, 29.929319223212989 ], [ -95.62334607578282, 29.929307223152108 ], [ -95.621579075741266, 29.929319222975099 ], [ -95.620858074925053, 29.929312222724363 ], [ -95.62051907516981, 29.92930922275157 ], [ -95.62034307531205, 29.929303222880499 ], [ -95.620216075383397, 29.929298222793065 ], [ -95.620216075300306, 29.929336223351154 ], [ -95.620247074863684, 29.929391222577575 ], [ -95.620260074486396, 29.929556223186914 ], [ -95.620242075526733, 29.930821223566312 ], [ -95.620256075360345, 29.931274223181248 ], [ -95.620268074638105, 29.931607223788287 ], [ -95.620255074792766, 29.931838223785977 ], [ -95.620253074909172, 29.932126223973331 ], [ -95.620249074876853, 29.932783223673869 ], [ -95.620251075626996, 29.932972223334044 ], [ -95.620256074630731, 29.933399224280606 ], [ -95.620269075021028, 29.9335202239461 ], [ -95.62056007478165, 29.934598224189994 ], [ -95.620863075539958, 29.935718224519135 ], [ -95.620933074983554, 29.936114224628732 ], [ -95.620940075866443, 29.936500224303323 ], [ -95.620957075102552, 29.937443224712858 ], [ -95.620999075596728, 29.93977522496597 ], [ -95.621026076188983, 29.94067722551959 ], [ -95.62108207610838, 29.942568225755487 ], [ -95.621104075389127, 29.944146225919074 ], [ -95.621109076328537, 29.944475226439405 ], [ -95.621114075591009, 29.944635225796681 ], [ -95.621141075885618, 29.945355226025647 ], [ -95.621141076423726, 29.945947226498301 ], [ -95.621167076019816, 29.946619226723413 ], [ -95.621155076005977, 29.946817226269356 ], [ -95.621136075968636, 29.94687222641522 ], [ -95.620991076048767, 29.947009226891719 ], [ -95.620801075443225, 29.947301226857949 ], [ -95.620764075517513, 29.947385227007846 ], [ -95.620720076313077, 29.947490226744552 ], [ -95.621817075768462, 29.947476226558845 ], [ -95.62197007656799, 29.947472226813897 ], [ -95.623028076085617, 29.947465226678943 ], [ -95.623193076059138, 29.947463226874024 ], [ -95.624083076925046, 29.947460226809536 ], [ -95.624829076734116, 29.947447226895605 ], [ -95.625342077265401, 29.947444226938234 ], [ -95.625454077395858, 29.947443226141843 ], [ -95.626085077383152, 29.947435226909686 ], [ -95.626216077518819, 29.947434226409822 ], [ -95.626905077782411, 29.947432226108003 ], [ -95.627143077447215, 29.947433226128794 ], [ -95.627255077497111, 29.947433226567444 ], [ -95.627519077975535, 29.947434226562219 ], [ -95.627532077358936, 29.947434226380498 ], [ -95.627848077387867, 29.94743522684486 ], [ -95.62821807812206, 29.947433226158765 ], [ -95.628422077973084, 29.947432226475453 ], [ -95.628684078061923, 29.947431226231057 ], [ -95.628897077966997, 29.947432226250772 ], [ -95.629011078189023, 29.947432226710625 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1404, "Tract": "48201232402", "Area_SqMi": 0.54152449370578581, "total_2009": 61, "total_2010": 84, "total_2011": 103, "total_2012": 148, "total_2013": 171, "total_2014": 173, "total_2015": 189, "total_2016": 213, "total_2017": 204, "total_2018": 210, "total_2019": 250, "total_2020": 220, "age1": 123, "age2": 96, "age3": 41, "earn1": 76, "earn2": 118, "earn3": 66, "naics_s01": 0, "naics_s02": 0, "naics_s03": 22, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 202, "naics_s08": 1, "naics_s09": 4, "naics_s10": 9, "naics_s11": 0, "naics_s12": 7, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 0, "naics_s19": 8, "naics_s20": 0, "race1": 201, "race2": 43, "race3": 1, "race4": 13, "race5": 0, "race6": 2, "ethnicity1": 136, "ethnicity2": 124, "edu1": 38, "edu2": 41, "edu3": 38, "edu4": 20, "Shape_Length": 15723.78323847225, "Shape_Area": 15096776.056083471, "total_2021": 251, "total_2022": 260 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.194356961117563, 29.81749521473056 ], [ -95.194340960513216, 29.816837214222026 ], [ -95.194334961103294, 29.81676421450226 ], [ -95.194335961042952, 29.816552214303606 ], [ -95.194311961218972, 29.816460214612302 ], [ -95.194308961013633, 29.816383214421489 ], [ -95.194265960530274, 29.816116214193634 ], [ -95.194156960318793, 29.815624213967034 ], [ -95.19407896115159, 29.815319214059627 ], [ -95.194014960795741, 29.815031213854127 ], [ -95.193998961027887, 29.814943214428009 ], [ -95.193801960056618, 29.814147214105152 ], [ -95.193572960595986, 29.813251213950107 ], [ -95.193506959939, 29.812978213423765 ], [ -95.193421960060348, 29.81261421418262 ], [ -95.193333960810904, 29.812026214031544 ], [ -95.193308960776605, 29.811767213822755 ], [ -95.193311959947877, 29.811309213908167 ], [ -95.19331695994326, 29.810498213415574 ], [ -95.193324960294646, 29.80966321306925 ], [ -95.193323959741008, 29.809587212774336 ], [ -95.193330959884378, 29.809406213170831 ], [ -95.193327960341577, 29.808695213356525 ], [ -95.193341960419431, 29.808036213059268 ], [ -95.193353959646032, 29.807361212375771 ], [ -95.193351960023861, 29.80723121227048 ], [ -95.193346960373319, 29.806282212172928 ], [ -95.193356960005133, 29.806028212440044 ], [ -95.193296960389063, 29.806027212746411 ], [ -95.193171959765976, 29.806025212070256 ], [ -95.192832959726758, 29.806029212760077 ], [ -95.192297959360602, 29.806047212333354 ], [ -95.19188295970622, 29.80605921264495 ], [ -95.19138395991196, 29.806073212261985 ], [ -95.19094795911974, 29.806067212597217 ], [ -95.190735959790672, 29.806056212886237 ], [ -95.19037695931803, 29.806024212625342 ], [ -95.190160958956909, 29.805999212983568 ], [ -95.189633958716527, 29.805915212192978 ], [ -95.189334959219224, 29.805859212950811 ], [ -95.18885095882726, 29.805767212109718 ], [ -95.188714959182846, 29.805744212819839 ], [ -95.188440958377441, 29.805706212599134 ], [ -95.188280958715893, 29.805693212100905 ], [ -95.188057958426214, 29.805675212633002 ], [ -95.187637958265626, 29.805660212203968 ], [ -95.187359958675842, 29.805660212522213 ], [ -95.187131958351813, 29.805664212521052 ], [ -95.186768958280183, 29.80568621283448 ], [ -95.186329958148846, 29.805739212537798 ], [ -95.186135958386643, 29.805772212378042 ], [ -95.185753958264371, 29.805841212796736 ], [ -95.184798958265262, 29.805993212440754 ], [ -95.184522957544601, 29.806050212439018 ], [ -95.184365958015775, 29.806071212526966 ], [ -95.184314958207622, 29.806083212912938 ], [ -95.184082957705968, 29.806115213009843 ], [ -95.183934958029084, 29.806129212880748 ], [ -95.183784957811696, 29.806135212777672 ], [ -95.183512957146903, 29.806146212853456 ], [ -95.18308695761317, 29.806151212692694 ], [ -95.182843957582392, 29.806149213196498 ], [ -95.182352957221013, 29.806156212515052 ], [ -95.182261956916847, 29.806156212567583 ], [ -95.182263957486427, 29.80635121317405 ], [ -95.182263957580886, 29.806379213146002 ], [ -95.182312957169586, 29.807178213146635 ], [ -95.182333957279383, 29.808023213328564 ], [ -95.182338957357004, 29.808472213440204 ], [ -95.182346957183142, 29.809236213909813 ], [ -95.182352957805563, 29.809791213883763 ], [ -95.182357957480491, 29.80992821366323 ], [ -95.182360957470593, 29.81043121381893 ], [ -95.182368957395596, 29.810772213409088 ], [ -95.18238395731575, 29.812126213762255 ], [ -95.182417957271483, 29.814764215024514 ], [ -95.182427957960925, 29.815178214567954 ], [ -95.182437957919092, 29.816143214627029 ], [ -95.182445957450327, 29.816887214938522 ], [ -95.182453957760188, 29.817466215517918 ], [ -95.182455957949117, 29.817678215041315 ], [ -95.182455958249207, 29.8177052156374 ], [ -95.185023958859333, 29.817646214946468 ], [ -95.187146958983234, 29.817607214949778 ], [ -95.1908129595829, 29.817534214450117 ], [ -95.193527960447952, 29.817506214681448 ], [ -95.193921960615029, 29.817500215060413 ], [ -95.194356961117563, 29.81749521473056 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1405, "Tract": "48201232403", "Area_SqMi": 0.78481552249977593, "total_2009": 16, "total_2010": 16, "total_2011": 13, "total_2012": 14, "total_2013": 7, "total_2014": 7, "total_2015": 6, "total_2016": 51, "total_2017": 60, "total_2018": 106, "total_2019": 98, "total_2020": 92, "age1": 16, "age2": 67, "age3": 19, "earn1": 9, "earn2": 40, "earn3": 53, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 0, "naics_s06": 41, "naics_s07": 0, "naics_s08": 10, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 36, "naics_s17": 0, "naics_s18": 0, "naics_s19": 12, "naics_s20": 0, "race1": 89, "race2": 7, "race3": 1, "race4": 3, "race5": 0, "race6": 2, "ethnicity1": 48, "ethnicity2": 54, "edu1": 28, "edu2": 19, "edu3": 27, "edu4": 12, "Shape_Length": 19784.418838896789, "Shape_Area": 21879313.542102605, "total_2021": 82, "total_2022": 102 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.214240965945493, 29.806649212129777 ], [ -95.214228965823281, 29.806401211400392 ], [ -95.214086965888882, 29.806143211407608 ], [ -95.213620965701409, 29.805691212065494 ], [ -95.212803965434944, 29.805210211217858 ], [ -95.212675964827739, 29.805309211299754 ], [ -95.21201096489321, 29.805827211931575 ], [ -95.211588964297405, 29.806121212132187 ], [ -95.211119965123913, 29.806374212026764 ], [ -95.210630964989747, 29.806573211817724 ], [ -95.210291964459302, 29.806677211918327 ], [ -95.210112964715762, 29.806719211602946 ], [ -95.209742964274852, 29.806781211719912 ], [ -95.209552964662805, 29.80680221172199 ], [ -95.208188964386792, 29.806800212382495 ], [ -95.205824963171409, 29.806703212102317 ], [ -95.205372963335265, 29.806668211949372 ], [ -95.204923963493968, 29.806611212568466 ], [ -95.204799963478578, 29.806589212160588 ], [ -95.203506963182164, 29.806368212520649 ], [ -95.202531962376341, 29.806188212195945 ], [ -95.202156962565027, 29.8061222118838 ], [ -95.201788962290834, 29.806058212416833 ], [ -95.201465961973199, 29.806014212579512 ], [ -95.201247961917716, 29.805984212089083 ], [ -95.200783961596372, 29.805940212041442 ], [ -95.198546961171417, 29.805972211873563 ], [ -95.198072961652116, 29.805979211891913 ], [ -95.197798961356213, 29.80598321264916 ], [ -95.197552960892651, 29.805977212623347 ], [ -95.197200961406665, 29.805976212138876 ], [ -95.196277960639947, 29.805988212154109 ], [ -95.195493961107857, 29.806006212600412 ], [ -95.195232960776892, 29.806012212754194 ], [ -95.193356960005133, 29.806028212440044 ], [ -95.193346960373319, 29.806282212172928 ], [ -95.193351960023861, 29.80723121227048 ], [ -95.193353959646032, 29.807361212375771 ], [ -95.193341960419431, 29.808036213059268 ], [ -95.193327960341577, 29.808695213356525 ], [ -95.193330959884378, 29.809406213170831 ], [ -95.193323959741008, 29.809587212774336 ], [ -95.193324960294646, 29.80966321306925 ], [ -95.19331695994326, 29.810498213415574 ], [ -95.193311959947877, 29.811309213908167 ], [ -95.193308960776605, 29.811767213822755 ], [ -95.193333960810904, 29.812026214031544 ], [ -95.193421960060348, 29.81261421418262 ], [ -95.193506959939, 29.812978213423765 ], [ -95.193572960595986, 29.813251213950107 ], [ -95.193801960056618, 29.814147214105152 ], [ -95.193998961027887, 29.814943214428009 ], [ -95.194014960795741, 29.815031213854127 ], [ -95.19407896115159, 29.815319214059627 ], [ -95.194156960318793, 29.815624213967034 ], [ -95.194265960530274, 29.816116214193634 ], [ -95.194308961013633, 29.816383214421489 ], [ -95.194311961218972, 29.816460214612302 ], [ -95.194335961042952, 29.816552214303606 ], [ -95.194334961103294, 29.81676421450226 ], [ -95.194340960513216, 29.816837214222026 ], [ -95.194356961117563, 29.81749521473056 ], [ -95.198941961991167, 29.817403214557231 ], [ -95.202517963324112, 29.817333214909141 ], [ -95.20256696245562, 29.817332214274376 ], [ -95.202737962484989, 29.817332214727546 ], [ -95.206368964108734, 29.817316214198215 ], [ -95.206560964414123, 29.817112214356232 ], [ -95.207042963934185, 29.816663214012998 ], [ -95.207262964027393, 29.816297213928106 ], [ -95.207299964214783, 29.816236214136719 ], [ -95.20787696445565, 29.815327213798888 ], [ -95.208496964524912, 29.814375213265521 ], [ -95.209134964822226, 29.813531213283113 ], [ -95.209188964219763, 29.81347321307398 ], [ -95.209891964728556, 29.812704213447802 ], [ -95.210328964935144, 29.812226213253496 ], [ -95.210690964796896, 29.81186821337775 ], [ -95.210732964771623, 29.811825212843736 ], [ -95.210745964503261, 29.81181121303662 ], [ -95.210840964534256, 29.81171521318829 ], [ -95.211765964763771, 29.810769213150976 ], [ -95.212486964828628, 29.810031212783901 ], [ -95.212626965334039, 29.80988821253171 ], [ -95.21263696545644, 29.809826212906351 ], [ -95.21277996555753, 29.809176212614044 ], [ -95.213229965370189, 29.807867212506775 ], [ -95.213449965750783, 29.807563212050592 ], [ -95.214108965264046, 29.806873211967709 ], [ -95.214240965945493, 29.806649212129777 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1406, "Tract": "48201233101", "Area_SqMi": 0.66422568681209782, "total_2009": 672, "total_2010": 513, "total_2011": 518, "total_2012": 527, "total_2013": 538, "total_2014": 478, "total_2015": 541, "total_2016": 499, "total_2017": 551, "total_2018": 504, "total_2019": 478, "total_2020": 406, "age1": 117, "age2": 173, "age3": 93, "earn1": 135, "earn2": 181, "earn3": 67, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 27, "naics_s05": 40, "naics_s06": 1, "naics_s07": 127, "naics_s08": 1, "naics_s09": 0, "naics_s10": 22, "naics_s11": 16, "naics_s12": 5, "naics_s13": 0, "naics_s14": 0, "naics_s15": 2, "naics_s16": 14, "naics_s17": 0, "naics_s18": 94, "naics_s19": 34, "naics_s20": 0, "race1": 279, "race2": 48, "race3": 5, "race4": 43, "race5": 3, "race6": 5, "ethnicity1": 210, "ethnicity2": 173, "edu1": 92, "edu2": 69, "edu3": 62, "edu4": 43, "Shape_Length": 21642.203052565408, "Shape_Area": 18517475.314696625, "total_2021": 369, "total_2022": 383 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.193708959742068, 29.788381209194174 ], [ -95.193574959340651, 29.788383208926817 ], [ -95.193028959472812, 29.788392208879799 ], [ -95.192921959233487, 29.78839420847849 ], [ -95.193086959080219, 29.788194209147431 ], [ -95.193329959207233, 29.787899208433064 ], [ -95.191353958708817, 29.787922208779396 ], [ -95.189266958465609, 29.787966208431421 ], [ -95.187397957993426, 29.788001208962285 ], [ -95.186959958023706, 29.788004209404946 ], [ -95.183803956731154, 29.788078209282755 ], [ -95.183239956176664, 29.788088209467762 ], [ -95.183207956542674, 29.787173208820992 ], [ -95.183197956682392, 29.786282209084192 ], [ -95.183172956213213, 29.785412208546436 ], [ -95.183143956634837, 29.784535208040328 ], [ -95.183119956150421, 29.783638208478063 ], [ -95.183089955981899, 29.782718208345958 ], [ -95.182508956337216, 29.782736207744822 ], [ -95.182410956073639, 29.782739208010184 ], [ -95.182395956539693, 29.782018207575558 ], [ -95.182152956324458, 29.782020207773286 ], [ -95.18143295579948, 29.782035207589725 ], [ -95.181298955870972, 29.78203120808498 ], [ -95.181153955535692, 29.782039207922448 ], [ -95.180286955511974, 29.782053208406161 ], [ -95.179418955227149, 29.782073207570889 ], [ -95.17931695501467, 29.782070207681578 ], [ -95.179219955450378, 29.782075208349667 ], [ -95.178922955682509, 29.782076208448981 ], [ -95.178602955403761, 29.782079207831487 ], [ -95.178453955344182, 29.78208120776188 ], [ -95.178134954589737, 29.78209820845046 ], [ -95.177762955122688, 29.78211020790916 ], [ -95.177676954912712, 29.782100207622189 ], [ -95.177580955454317, 29.78211620804942 ], [ -95.177487955324295, 29.782103207793174 ], [ -95.177394954405358, 29.782107208154077 ], [ -95.176037955043967, 29.78212920774244 ], [ -95.175844954179055, 29.782138208186431 ], [ -95.17538795420792, 29.782150208418741 ], [ -95.175288954390226, 29.782145208538704 ], [ -95.175089954221576, 29.782151208501407 ], [ -95.17498795426819, 29.782159208442877 ], [ -95.174876954420895, 29.78217520851593 ], [ -95.17477495460848, 29.782166208486309 ], [ -95.174712954378123, 29.782164207756647 ], [ -95.174670953987558, 29.782163208446544 ], [ -95.174562954555938, 29.782177208644139 ], [ -95.174470954593019, 29.78217120826141 ], [ -95.17399495443847, 29.782180207839687 ], [ -95.173439953759967, 29.782202208613629 ], [ -95.173345953729211, 29.782199207827738 ], [ -95.172971953886346, 29.782202208204424 ], [ -95.172621954138378, 29.782215207999851 ], [ -95.172527954177667, 29.782234208379926 ], [ -95.172446954071702, 29.782222208102819 ], [ -95.172365953802128, 29.78221820848589 ], [ -95.172192953408981, 29.782231207905834 ], [ -95.172115954066228, 29.78222620846638 ], [ -95.171897953336909, 29.782223208032235 ], [ -95.171413953911909, 29.782240208100564 ], [ -95.171312953190267, 29.782237208104895 ], [ -95.171236953723394, 29.782217208411371 ], [ -95.170849953178603, 29.782251208752697 ], [ -95.170633953432898, 29.782256208184855 ], [ -95.17052895308116, 29.782253207960721 ], [ -95.170324953042666, 29.782255207940565 ], [ -95.170225952727037, 29.782262208541617 ], [ -95.170131953052902, 29.782261208625005 ], [ -95.170030952769281, 29.782284208434067 ], [ -95.169951953308626, 29.78227520845644 ], [ -95.169729952720701, 29.782279208059173 ], [ -95.169737952918169, 29.782395208375867 ], [ -95.169755953214491, 29.783000208154579 ], [ -95.169769952742513, 29.783156208364552 ], [ -95.169741952669511, 29.783256208339854 ], [ -95.169762953410086, 29.783424208852178 ], [ -95.16977595331511, 29.783754208475425 ], [ -95.169795953332553, 29.784117208977111 ], [ -95.169789952939368, 29.784275208471467 ], [ -95.169799953224228, 29.784362208552356 ], [ -95.169803953590474, 29.784486208935117 ], [ -95.169805953476484, 29.784532208589408 ], [ -95.169796953047751, 29.784608208661048 ], [ -95.169801952674604, 29.784863209003468 ], [ -95.169826952922264, 29.785238209361975 ], [ -95.169839953147189, 29.785623209073499 ], [ -95.16983195278209, 29.78571820904277 ], [ -95.169844953296007, 29.785788209242405 ], [ -95.16985095264188, 29.785941209357993 ], [ -95.169844953013708, 29.785970208948282 ], [ -95.169832952716689, 29.786021209393727 ], [ -95.169868953161298, 29.786088209095254 ], [ -95.169840953074186, 29.786172209410292 ], [ -95.169840953673301, 29.786252209313911 ], [ -95.169846953434231, 29.786332209143783 ], [ -95.16985595295867, 29.786724209547565 ], [ -95.169857953148977, 29.78681720962242 ], [ -95.169868953583574, 29.786907209022434 ], [ -95.16987695320033, 29.787030209652237 ], [ -95.169874953620166, 29.787099209738525 ], [ -95.169894952987491, 29.787447209516468 ], [ -95.169895953406893, 29.787643209855304 ], [ -95.16988395309663, 29.787827209065004 ], [ -95.169891952981089, 29.788117209858164 ], [ -95.169894953634412, 29.788194209990017 ], [ -95.1698969531258, 29.788269209994422 ], [ -95.16991295363988, 29.788707210045498 ], [ -95.169914953287687, 29.788922209282664 ], [ -95.169932953095568, 29.78952220952646 ], [ -95.169944952929711, 29.790248209706061 ], [ -95.169944953730891, 29.790259210128948 ], [ -95.169945953640081, 29.790303209609856 ], [ -95.16994795362568, 29.790380209980519 ], [ -95.17026195351481, 29.790374210113843 ], [ -95.170607953334979, 29.790384209837612 ], [ -95.17086095325709, 29.790385210259586 ], [ -95.170987954080161, 29.790391209903692 ], [ -95.171379954184431, 29.790432210011669 ], [ -95.17175095431611, 29.790494210044873 ], [ -95.172046954087904, 29.790565210058677 ], [ -95.172414954203035, 29.790659210179605 ], [ -95.17280995370686, 29.790765209899334 ], [ -95.172937954537147, 29.790806209815816 ], [ -95.173807954166875, 29.79105521041652 ], [ -95.175075954612794, 29.791399210277064 ], [ -95.176716955246903, 29.79183721030083 ], [ -95.176941955351879, 29.791878209974151 ], [ -95.177420955499045, 29.791952210390281 ], [ -95.177842955144101, 29.791991209707007 ], [ -95.178194955922351, 29.791991209872421 ], [ -95.178450955225514, 29.791979210205454 ], [ -95.181291956477025, 29.791924209806005 ], [ -95.181863956498887, 29.791911209800272 ], [ -95.18225495685752, 29.791899210221082 ], [ -95.182401957066944, 29.791897210088994 ], [ -95.18256695688946, 29.79189420951516 ], [ -95.182700956504448, 29.791891209597498 ], [ -95.183682956562222, 29.791863209509579 ], [ -95.184375956744418, 29.791851209381182 ], [ -95.184869956767614, 29.791835209674691 ], [ -95.185662957692486, 29.79181821021135 ], [ -95.18678995806971, 29.791824209497065 ], [ -95.186820958035852, 29.791825209687143 ], [ -95.186960957675055, 29.791838209631713 ], [ -95.18748595834046, 29.791891210127538 ], [ -95.187838958427122, 29.791958209323496 ], [ -95.188042957866884, 29.792114209326822 ], [ -95.188354958544238, 29.792196209399741 ], [ -95.18853695803088, 29.792254209323133 ], [ -95.188770958633569, 29.792339209756573 ], [ -95.18927695877764, 29.792543209465926 ], [ -95.189513958025543, 29.79265420949833 ], [ -95.189782958327442, 29.792780209977678 ], [ -95.189898958664955, 29.792849209763361 ], [ -95.1899979584134, 29.792907209713292 ], [ -95.190119958303896, 29.792760209727991 ], [ -95.190732958672243, 29.792027209915819 ], [ -95.190899958378054, 29.791812209348493 ], [ -95.191432959140826, 29.791131209691756 ], [ -95.192611958799944, 29.789728208851166 ], [ -95.192806959082716, 29.789514209012712 ], [ -95.193708959742068, 29.788381209194174 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1407, "Tract": "48201233003", "Area_SqMi": 0.39355559167958021, "total_2009": 38, "total_2010": 190, "total_2011": 45, "total_2012": 46, "total_2013": 38, "total_2014": 34, "total_2015": 48, "total_2016": 60, "total_2017": 55, "total_2018": 58, "total_2019": 48, "total_2020": 37, "age1": 9, "age2": 17, "age3": 8, "earn1": 16, "earn2": 17, "earn3": 1, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 27, "naics_s19": 0, "naics_s20": 0, "race1": 22, "race2": 7, "race3": 0, "race4": 5, "race5": 0, "race6": 0, "ethnicity1": 25, "ethnicity2": 9, "edu1": 10, "edu2": 9, "edu3": 5, "edu4": 1, "Shape_Length": 15376.714635547469, "Shape_Area": 10971656.318899708, "total_2021": 32, "total_2022": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.180311956018556, 29.795891211088353 ], [ -95.180203956174054, 29.79581421095731 ], [ -95.180154956068222, 29.795761210580498 ], [ -95.180083956128414, 29.795706211109721 ], [ -95.180020955717694, 29.795645210920167 ], [ -95.179966955846439, 29.795582210449137 ], [ -95.179902956605659, 29.795517210736008 ], [ -95.179789956445703, 29.795385210400124 ], [ -95.179726956589477, 29.795328210856923 ], [ -95.179499955570421, 29.795054210847795 ], [ -95.179448956055296, 29.794974211075747 ], [ -95.179197955522753, 29.794609210818038 ], [ -95.179110955633547, 29.7944512101529 ], [ -95.179012956310629, 29.794294210193513 ], [ -95.178930955532849, 29.794137210363573 ], [ -95.178901955991051, 29.794056210829766 ], [ -95.178851955414288, 29.793970210092183 ], [ -95.178708955369075, 29.79361221071952 ], [ -95.178677956110889, 29.793524210498109 ], [ -95.178585955987984, 29.793171210729785 ], [ -95.178556955882797, 29.793081210194263 ], [ -95.17854595587157, 29.792989210620565 ], [ -95.178507955840161, 29.792805210245497 ], [ -95.178496955902887, 29.792713210660395 ], [ -95.17848095577088, 29.792628209809589 ], [ -95.17846095578922, 29.792367210005899 ], [ -95.178455955825754, 29.792155209724033 ], [ -95.178457955741962, 29.792134210239581 ], [ -95.178459956005568, 29.792102210396962 ], [ -95.178450955225514, 29.791979210205454 ], [ -95.178194955922351, 29.791991209872421 ], [ -95.177842955144101, 29.791991209707007 ], [ -95.177420955499045, 29.791952210390281 ], [ -95.176941955351879, 29.791878209974151 ], [ -95.176716955246903, 29.79183721030083 ], [ -95.175075954612794, 29.791399210277064 ], [ -95.173807954166875, 29.79105521041652 ], [ -95.172937954537147, 29.790806209815816 ], [ -95.17280995370686, 29.790765209899334 ], [ -95.172414954203035, 29.790659210179605 ], [ -95.172046954087904, 29.790565210058677 ], [ -95.17175095431611, 29.790494210044873 ], [ -95.171379954184431, 29.790432210011669 ], [ -95.170987954080161, 29.790391209903692 ], [ -95.17086095325709, 29.790385210259586 ], [ -95.170607953334979, 29.790384209837612 ], [ -95.17026195351481, 29.790374210113843 ], [ -95.16994795362568, 29.790380209980519 ], [ -95.167315952888472, 29.790440209912703 ], [ -95.16639295211796, 29.790452209792807 ], [ -95.166346952505378, 29.790451210034778 ], [ -95.165485952395201, 29.790483209968965 ], [ -95.1654029524328, 29.790482210211664 ], [ -95.164493952478836, 29.790510209953634 ], [ -95.164332952346797, 29.79055121017603 ], [ -95.163969951844706, 29.790577210554694 ], [ -95.163340951479256, 29.790594210282233 ], [ -95.161863951476931, 29.790650210788282 ], [ -95.161618951211622, 29.790660210787465 ], [ -95.16133495137548, 29.790661210028002 ], [ -95.161053950657177, 29.7906622106164 ], [ -95.161113951347829, 29.790808210217133 ], [ -95.162074951439422, 29.793159211058487 ], [ -95.162364951859502, 29.794081211404499 ], [ -95.162705952096687, 29.795203211612236 ], [ -95.162914951935377, 29.796090211115189 ], [ -95.163135952216308, 29.796067211162839 ], [ -95.163389951906638, 29.796040211268441 ], [ -95.164394952538629, 29.795935211454054 ], [ -95.166064953021859, 29.795853211535224 ], [ -95.16742295252277, 29.79584021080683 ], [ -95.168422952764573, 29.795831211490825 ], [ -95.16979695309449, 29.795809210845231 ], [ -95.170553953424303, 29.795875211031053 ], [ -95.17174095361824, 29.796130211535242 ], [ -95.171833953633623, 29.796150211349147 ], [ -95.174833954955488, 29.796975211493212 ], [ -95.175237955130129, 29.797103211528512 ], [ -95.177727956054909, 29.797756211568675 ], [ -95.178887956065211, 29.798096211183449 ], [ -95.178941956307568, 29.79793821121028 ], [ -95.17899495639486, 29.797810211142817 ], [ -95.179055956171922, 29.797680211217905 ], [ -95.179078955631965, 29.797602211544383 ], [ -95.17910695645223, 29.797537211642361 ], [ -95.179149955577941, 29.797480211142975 ], [ -95.179182956132308, 29.797411211235122 ], [ -95.179209956041674, 29.797336211514022 ], [ -95.179281955916196, 29.797197210940329 ], [ -95.179326956048115, 29.797132210790657 ], [ -95.179449955774274, 29.796911210646257 ], [ -95.179549956272098, 29.796767210865763 ], [ -95.179656956018434, 29.796628211081782 ], [ -95.17972095650012, 29.796534211356448 ], [ -95.179754956169788, 29.796485211205908 ], [ -95.179813956367951, 29.796422211307227 ], [ -95.179919956062875, 29.796286210486951 ], [ -95.180096955963634, 29.796096211192584 ], [ -95.180151956274514, 29.796045210543873 ], [ -95.18017995630791, 29.796004210587011 ], [ -95.180311956018556, 29.795891211088353 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1408, "Tract": "48201431102", "Area_SqMi": 0.35911408599617045, "total_2009": 905, "total_2010": 904, "total_2011": 988, "total_2012": 1287, "total_2013": 1265, "total_2014": 1049, "total_2015": 1046, "total_2016": 1009, "total_2017": 1000, "total_2018": 830, "total_2019": 922, "total_2020": 887, "age1": 146, "age2": 427, "age3": 204, "earn1": 127, "earn2": 239, "earn3": 411, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 32, "naics_s05": 6, "naics_s06": 0, "naics_s07": 24, "naics_s08": 4, "naics_s09": 0, "naics_s10": 17, "naics_s11": 165, "naics_s12": 38, "naics_s13": 0, "naics_s14": 13, "naics_s15": 18, "naics_s16": 333, "naics_s17": 5, "naics_s18": 84, "naics_s19": 34, "naics_s20": 0, "race1": 518, "race2": 183, "race3": 5, "race4": 60, "race5": 1, "race6": 10, "ethnicity1": 519, "ethnicity2": 258, "edu1": 145, "edu2": 164, "edu3": 168, "edu4": 154, "Shape_Length": 15033.89080636576, "Shape_Area": 10011486.087672347, "total_2021": 828, "total_2022": 777 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.534932044758961, 29.744684187932926 ], [ -95.534924044812172, 29.744405187854007 ], [ -95.534870044360517, 29.743980187878602 ], [ -95.534787045151631, 29.743692188468341 ], [ -95.53470404486005, 29.743413188186079 ], [ -95.534523044784379, 29.742800188323784 ], [ -95.534488044263142, 29.742659188118544 ], [ -95.534477044584975, 29.742445188221275 ], [ -95.534524044782529, 29.742151188092674 ], [ -95.534632045014092, 29.741858188083139 ], [ -95.534837044316319, 29.741506187851272 ], [ -95.534716044172967, 29.741430187754887 ], [ -95.534280044102488, 29.74122218722896 ], [ -95.533966044727933, 29.74109518734635 ], [ -95.533712044454305, 29.74100018759377 ], [ -95.533572044324387, 29.740976187449984 ], [ -95.533060044638773, 29.740886187149194 ], [ -95.532879044120108, 29.74087918785337 ], [ -95.531490043418813, 29.740878187874809 ], [ -95.531484043530952, 29.740729187370054 ], [ -95.531519044072098, 29.739094187228197 ], [ -95.531522044096704, 29.738956187178182 ], [ -95.531516043629253, 29.73859318739585 ], [ -95.531503043619566, 29.738368187005104 ], [ -95.53146904345725, 29.737812186701319 ], [ -95.531449043840368, 29.737363186911683 ], [ -95.53144404323956, 29.737221186783302 ], [ -95.52900004292546, 29.737232187346105 ], [ -95.528811043136685, 29.737229186813746 ], [ -95.528336043271153, 29.737236186696723 ], [ -95.528149042280688, 29.737239187198554 ], [ -95.525843042499488, 29.737272187060018 ], [ -95.525514042382596, 29.73727718708388 ], [ -95.524893042161807, 29.737286186674261 ], [ -95.523008041030309, 29.73731218740172 ], [ -95.522607041443663, 29.737322186987612 ], [ -95.52212204148104, 29.737327187577058 ], [ -95.521174041412237, 29.737336186899732 ], [ -95.521175040919445, 29.737459187179063 ], [ -95.521170040921064, 29.737844187130708 ], [ -95.521219041542182, 29.738519187444791 ], [ -95.521260041137992, 29.739048187834566 ], [ -95.521284041577132, 29.739337187979356 ], [ -95.521368041637871, 29.740896187866682 ], [ -95.52140804147102, 29.741603187789366 ], [ -95.521445041356841, 29.741789187872548 ], [ -95.52157804178799, 29.741936188118942 ], [ -95.521693040971257, 29.742004187965922 ], [ -95.521791041725862, 29.742062188393927 ], [ -95.522135041528387, 29.74209018787618 ], [ -95.52247804148567, 29.74208118857738 ], [ -95.522909041490564, 29.742122188337309 ], [ -95.523032041775323, 29.742181187780819 ], [ -95.523102041892145, 29.742328187876321 ], [ -95.5231200413468, 29.742551187927646 ], [ -95.523128042005581, 29.742978188439864 ], [ -95.524348042518852, 29.742956188488975 ], [ -95.52495704202336, 29.742949188207962 ], [ -95.525762042812403, 29.742957187941929 ], [ -95.526616042237819, 29.742944187885779 ], [ -95.526621042517746, 29.742982188436642 ], [ -95.526669042712655, 29.74318518781449 ], [ -95.526678042897075, 29.743224188373134 ], [ -95.526754043140116, 29.743317188391899 ], [ -95.527062042301992, 29.743548188286404 ], [ -95.527289042641442, 29.743653187912209 ], [ -95.527332042647544, 29.743678187973341 ], [ -95.527350043067216, 29.743697188321445 ], [ -95.527334043125933, 29.743732188439481 ], [ -95.527310043348081, 29.743786188342288 ], [ -95.527278043014221, 29.743820188813931 ], [ -95.527335043073862, 29.743889188680633 ], [ -95.527419043328607, 29.743922188165183 ], [ -95.52785504345195, 29.744238188456386 ], [ -95.527958042934372, 29.744310188117897 ], [ -95.528024043176103, 29.744395188104335 ], [ -95.528220043654883, 29.744636188516989 ], [ -95.528352043044279, 29.74475818880039 ], [ -95.528446043095286, 29.744817188918145 ], [ -95.5285210431812, 29.744866188325471 ], [ -95.528531043535835, 29.744887188147448 ], [ -95.528578043000806, 29.745043188558586 ], [ -95.528571043212068, 29.745097188647566 ], [ -95.52854504368932, 29.74540118885718 ], [ -95.52841204277243, 29.745411188296448 ], [ -95.528162042853978, 29.745426188353925 ], [ -95.528184043051937, 29.745577188575911 ], [ -95.528274042713463, 29.745586188468629 ], [ -95.528302042937781, 29.745616189117939 ], [ -95.528563043357693, 29.745891188305084 ], [ -95.528601043001032, 29.745931189185995 ], [ -95.528417043489384, 29.74607918865949 ], [ -95.528655043004477, 29.745940188479693 ], [ -95.52894504330088, 29.745846189135488 ], [ -95.529191043407437, 29.745797188311453 ], [ -95.529437043649381, 29.74581318833696 ], [ -95.529563043096573, 29.745879188713662 ], [ -95.529758043669972, 29.746044188832045 ], [ -95.529802043727329, 29.746242189035289 ], [ -95.529786043981247, 29.74632618882249 ], [ -95.530381043275881, 29.746683188936913 ], [ -95.530683043538332, 29.746866188574057 ], [ -95.53083804339029, 29.746961189195442 ], [ -95.53109604439706, 29.747078189042341 ], [ -95.531400044323746, 29.747215189180061 ], [ -95.531536044107753, 29.747110189237588 ], [ -95.532193043934583, 29.746751189200268 ], [ -95.532757044669225, 29.746519188778745 ], [ -95.533068044407386, 29.74643218866948 ], [ -95.533797044280533, 29.74630318870755 ], [ -95.534117045213947, 29.746290188438298 ], [ -95.534771045076909, 29.746302188287178 ], [ -95.534837044703622, 29.745701188386231 ], [ -95.534872044921471, 29.74526918879376 ], [ -95.534904044922499, 29.744980188608984 ], [ -95.534909044526742, 29.744929188341391 ], [ -95.534932044758961, 29.744684187932926 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1409, "Tract": "48201431101", "Area_SqMi": 0.32340714896343342, "total_2009": 1706, "total_2010": 1485, "total_2011": 1296, "total_2012": 1237, "total_2013": 1320, "total_2014": 1059, "total_2015": 1086, "total_2016": 1127, "total_2017": 1180, "total_2018": 1120, "total_2019": 1173, "total_2020": 962, "age1": 336, "age2": 461, "age3": 262, "earn1": 282, "earn2": 410, "earn3": 367, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 106, "naics_s05": 35, "naics_s06": 6, "naics_s07": 232, "naics_s08": 7, "naics_s09": 4, "naics_s10": 52, "naics_s11": 55, "naics_s12": 153, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 47, "naics_s17": 0, "naics_s18": 289, "naics_s19": 60, "naics_s20": 0, "race1": 746, "race2": 189, "race3": 8, "race4": 100, "race5": 1, "race6": 15, "ethnicity1": 701, "ethnicity2": 358, "edu1": 170, "edu2": 191, "edu3": 184, "edu4": 178, "Shape_Length": 17984.538581649547, "Shape_Area": 9016037.7962331437, "total_2021": 973, "total_2022": 1059 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.539642046491934, 29.752074189524478 ], [ -95.539764046786487, 29.75191518928051 ], [ -95.539374045936498, 29.75139618943405 ], [ -95.539344046507978, 29.751356189052107 ], [ -95.539295046725897, 29.751291189724547 ], [ -95.538903046648741, 29.750746189673787 ], [ -95.538608045598323, 29.750125188897897 ], [ -95.53853104640632, 29.749824189167455 ], [ -95.538488045603117, 29.749625189322327 ], [ -95.538471045837653, 29.748680188620892 ], [ -95.538450045769324, 29.747501188447355 ], [ -95.538448046223252, 29.746301188949431 ], [ -95.538444046124084, 29.746079188314209 ], [ -95.538439045468664, 29.745770187932074 ], [ -95.538423045958695, 29.744770188552994 ], [ -95.538417045955939, 29.744349188147083 ], [ -95.538412045543623, 29.744151187777131 ], [ -95.538411045365208, 29.744106188340542 ], [ -95.538403045879235, 29.743684187528054 ], [ -95.538400045550546, 29.743449187588244 ], [ -95.538388045155344, 29.742397187371107 ], [ -95.53837004595583, 29.740791187756628 ], [ -95.538368045124955, 29.740577187007581 ], [ -95.538366045913179, 29.73997318693872 ], [ -95.538368045081029, 29.739781187352392 ], [ -95.538370045711218, 29.739596186804377 ], [ -95.538415045078523, 29.739205187385007 ], [ -95.538538045293535, 29.738790186718159 ], [ -95.538710046008688, 29.738381187131942 ], [ -95.538744045484606, 29.738299186740893 ], [ -95.538833045671169, 29.737905187138285 ], [ -95.538859045129172, 29.73775118643859 ], [ -95.538874045423611, 29.737555186395653 ], [ -95.538879045709535, 29.737258186958989 ], [ -95.538878045925216, 29.737122186731085 ], [ -95.537699044804825, 29.737144187042382 ], [ -95.537334045063247, 29.737151186733993 ], [ -95.535873045075661, 29.737179186695439 ], [ -95.535670045213323, 29.737174186520242 ], [ -95.534800044386216, 29.737182186879824 ], [ -95.533686043751104, 29.737192187186004 ], [ -95.532848044231457, 29.737183186694089 ], [ -95.532443043413721, 29.73720018696811 ], [ -95.53144404323956, 29.737221186783302 ], [ -95.531449043840368, 29.737363186911683 ], [ -95.53146904345725, 29.737812186701319 ], [ -95.531503043619566, 29.738368187005104 ], [ -95.531516043629253, 29.73859318739585 ], [ -95.531522044096704, 29.738956187178182 ], [ -95.531519044072098, 29.739094187228197 ], [ -95.531484043530952, 29.740729187370054 ], [ -95.531490043418813, 29.740878187874809 ], [ -95.532879044120108, 29.74087918785337 ], [ -95.533060044638773, 29.740886187149194 ], [ -95.533572044324387, 29.740976187449984 ], [ -95.533712044454305, 29.74100018759377 ], [ -95.533966044727933, 29.74109518734635 ], [ -95.534280044102488, 29.74122218722896 ], [ -95.534716044172967, 29.741430187754887 ], [ -95.534837044316319, 29.741506187851272 ], [ -95.534632045014092, 29.741858188083139 ], [ -95.534524044782529, 29.742151188092674 ], [ -95.534477044584975, 29.742445188221275 ], [ -95.534488044263142, 29.742659188118544 ], [ -95.534523044784379, 29.742800188323784 ], [ -95.53470404486005, 29.743413188186079 ], [ -95.534787045151631, 29.743692188468341 ], [ -95.534870044360517, 29.743980187878602 ], [ -95.534924044812172, 29.744405187854007 ], [ -95.534932044758961, 29.744684187932926 ], [ -95.534909044526742, 29.744929188341391 ], [ -95.534904044922499, 29.744980188608984 ], [ -95.534872044921471, 29.74526918879376 ], [ -95.534837044703622, 29.745701188386231 ], [ -95.534771045076909, 29.746302188287178 ], [ -95.534117045213947, 29.746290188438298 ], [ -95.533797044280533, 29.74630318870755 ], [ -95.533068044407386, 29.74643218866948 ], [ -95.532757044669225, 29.746519188778745 ], [ -95.532193043934583, 29.746751189200268 ], [ -95.531536044107753, 29.747110189237588 ], [ -95.531400044323746, 29.747215189180061 ], [ -95.531547043785054, 29.747320188782982 ], [ -95.53181104383745, 29.747628188640284 ], [ -95.532000043774914, 29.748084189081737 ], [ -95.53208804389466, 29.748392189046754 ], [ -95.532069044121599, 29.748629189537191 ], [ -95.53198704459183, 29.74877218946683 ], [ -95.531792043882035, 29.749013189347583 ], [ -95.531565043900187, 29.749140189570298 ], [ -95.530986043967246, 29.749437188946683 ], [ -95.530923044365025, 29.749558189310033 ], [ -95.530941043964603, 29.74972218959903 ], [ -95.530973043681399, 29.749827189901609 ], [ -95.531030043814283, 29.749915189225074 ], [ -95.531168044377978, 29.750005189940875 ], [ -95.531975044035747, 29.750291189538654 ], [ -95.532359044302339, 29.750335189069361 ], [ -95.532630044430604, 29.750264189886742 ], [ -95.532806044639727, 29.75015418973836 ], [ -95.532907044200712, 29.75000518930133 ], [ -95.533002044783686, 29.749855189600179 ], [ -95.533354044257322, 29.749679189560013 ], [ -95.533588044923732, 29.749591189625718 ], [ -95.53371404457485, 29.749574188942766 ], [ -95.533934044831099, 29.749657189762978 ], [ -95.53418004467531, 29.749800189054781 ], [ -95.534526045469491, 29.750149189404166 ], [ -95.534772045040242, 29.750352189885991 ], [ -95.535093045147406, 29.750583189269889 ], [ -95.535377045244616, 29.75077018917175 ], [ -95.535459045117449, 29.750852189560803 ], [ -95.535629045704454, 29.751067189577352 ], [ -95.535805045876543, 29.75123218983304 ], [ -95.535969045658447, 29.751325190012874 ], [ -95.536126045091933, 29.751397189850408 ], [ -95.53629604531703, 29.751441189325014 ], [ -95.536448045663519, 29.751468189817757 ], [ -95.536693045761368, 29.751458189731114 ], [ -95.536933045146498, 29.751425190021532 ], [ -95.537430045471396, 29.751403189589716 ], [ -95.537563045966309, 29.751441189181833 ], [ -95.537619045779081, 29.75149118963337 ], [ -95.537752045733427, 29.7516501891964 ], [ -95.537802045875466, 29.751735189236367 ], [ -95.537934045521141, 29.751958189849358 ], [ -95.538130046177244, 29.752260189310253 ], [ -95.538337046220278, 29.752442190064663 ], [ -95.538514046097177, 29.752552189896431 ], [ -95.538621046226865, 29.752601189475012 ], [ -95.538709045792828, 29.75262918949916 ], [ -95.538986046112342, 29.752623189961927 ], [ -95.539150046528874, 29.752574189948582 ], [ -95.539446046887619, 29.752409189328333 ], [ -95.539497046253217, 29.752371189786462 ], [ -95.53955304601601, 29.752228189288388 ], [ -95.539642046491934, 29.752074189524478 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1410, "Tract": "48201433003", "Area_SqMi": 0.35708897787112687, "total_2009": 1769, "total_2010": 1708, "total_2011": 1966, "total_2012": 2256, "total_2013": 2442, "total_2014": 2447, "total_2015": 2589, "total_2016": 2627, "total_2017": 2521, "total_2018": 3025, "total_2019": 2955, "total_2020": 2668, "age1": 579, "age2": 1628, "age3": 982, "earn1": 1372, "earn2": 1094, "earn3": 723, "naics_s01": 1, "naics_s02": 1, "naics_s03": 0, "naics_s04": 29, "naics_s05": 91, "naics_s06": 91, "naics_s07": 249, "naics_s08": 2, "naics_s09": 49, "naics_s10": 79, "naics_s11": 142, "naics_s12": 205, "naics_s13": 0, "naics_s14": 470, "naics_s15": 8, "naics_s16": 1179, "naics_s17": 0, "naics_s18": 538, "naics_s19": 55, "naics_s20": 0, "race1": 1109, "race2": 361, "race3": 16, "race4": 1650, "race5": 8, "race6": 45, "ethnicity1": 2534, "ethnicity2": 655, "edu1": 669, "edu2": 595, "edu3": 593, "edu4": 753, "Shape_Length": 13112.964550417239, "Shape_Area": 9955029.5391533282, "total_2021": 3072, "total_2022": 3189 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.557478049347225, 29.711766180707929 ], [ -95.557474049135422, 29.710977180524885 ], [ -95.557471049510397, 29.710374180300423 ], [ -95.55741604912896, 29.70656917987284 ], [ -95.557390048915124, 29.704724179468673 ], [ -95.557386048354076, 29.704507179425033 ], [ -95.557208048863501, 29.704515179242538 ], [ -95.556781049019307, 29.704533179020466 ], [ -95.556577049069091, 29.704544179643385 ], [ -95.551467046977919, 29.704821179372043 ], [ -95.550732047381089, 29.704855179231721 ], [ -95.550341046588372, 29.704868179747919 ], [ -95.550221047456787, 29.704872179855595 ], [ -95.549871047189598, 29.704884179826827 ], [ -95.549772047078761, 29.704887179699224 ], [ -95.548250046206022, 29.704896179507809 ], [ -95.547293046469235, 29.704906179990921 ], [ -95.546690046279153, 29.704906179752768 ], [ -95.546392045860628, 29.70490917987475 ], [ -95.545940045458195, 29.704941180094956 ], [ -95.54573604537768, 29.704942180166029 ], [ -95.54530104579456, 29.704944179743848 ], [ -95.545300045537445, 29.705657180065575 ], [ -95.545300045735843, 29.705688180300818 ], [ -95.545303045767426, 29.705860179703318 ], [ -95.545305045748691, 29.706088180091164 ], [ -95.545306045464571, 29.70618217960298 ], [ -95.545308046237736, 29.706462180104928 ], [ -95.545320046037332, 29.707190180647132 ], [ -95.5453250460438, 29.707665180500506 ], [ -95.545353045445182, 29.708078180102589 ], [ -95.54544404604124, 29.708493180203714 ], [ -95.545476045780916, 29.708779180579221 ], [ -95.545485046149651, 29.708860180787511 ], [ -95.545505045941738, 29.709924181082776 ], [ -95.545514045581925, 29.710152181223048 ], [ -95.545515046224892, 29.710181180802358 ], [ -95.545531046552497, 29.711022181139043 ], [ -95.545560045941173, 29.711549181204923 ], [ -95.545695046417208, 29.712123181338175 ], [ -95.545778046700562, 29.712345180932928 ], [ -95.546007046406785, 29.712893181661642 ], [ -95.546426046023015, 29.712705181496869 ], [ -95.54715304689411, 29.712386181411109 ], [ -95.547810046742939, 29.712141181145267 ], [ -95.548385047025633, 29.711988181562685 ], [ -95.548587047256191, 29.711948181304482 ], [ -95.548722046761768, 29.711923181014818 ], [ -95.548775047277857, 29.711913180746453 ], [ -95.549156047063121, 29.711872181205209 ], [ -95.5495760473936, 29.711844181368559 ], [ -95.550175046904357, 29.711843180831625 ], [ -95.550485047228406, 29.711840181168206 ], [ -95.55077704709862, 29.711836181055062 ], [ -95.551056048008206, 29.711831181229531 ], [ -95.55155104794261, 29.711826181262701 ], [ -95.55208704775626, 29.711822180791021 ], [ -95.552382048089768, 29.711821180769924 ], [ -95.55306404781409, 29.711810180516181 ], [ -95.553265048035854, 29.711809181097454 ], [ -95.553843048275453, 29.711800180626049 ], [ -95.554107048301063, 29.711795181122234 ], [ -95.554741048005837, 29.71179118114253 ], [ -95.556367049095215, 29.711771180811628 ], [ -95.556622049237106, 29.711770181022381 ], [ -95.556819048603472, 29.711769180828 ], [ -95.557227048704249, 29.711772180823761 ], [ -95.557478049347225, 29.711766180707929 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1411, "Tract": "48201432901", "Area_SqMi": 0.56498753075725183, "total_2009": 987, "total_2010": 1025, "total_2011": 985, "total_2012": 1024, "total_2013": 900, "total_2014": 924, "total_2015": 850, "total_2016": 831, "total_2017": 804, "total_2018": 725, "total_2019": 801, "total_2020": 833, "age1": 185, "age2": 480, "age3": 256, "earn1": 176, "earn2": 410, "earn3": 335, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 44, "naics_s05": 81, "naics_s06": 312, "naics_s07": 303, "naics_s08": 9, "naics_s09": 8, "naics_s10": 15, "naics_s11": 46, "naics_s12": 3, "naics_s13": 5, "naics_s14": 32, "naics_s15": 0, "naics_s16": 1, "naics_s17": 3, "naics_s18": 40, "naics_s19": 19, "naics_s20": 0, "race1": 459, "race2": 109, "race3": 8, "race4": 331, "race5": 1, "race6": 13, "ethnicity1": 627, "ethnicity2": 294, "edu1": 170, "edu2": 168, "edu3": 198, "edu4": 200, "Shape_Length": 21893.733477905884, "Shape_Area": 15750885.371689092, "total_2021": 877, "total_2022": 921 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.539067045112745, 29.719716183333187 ], [ -95.5390640448353, 29.719534182939796 ], [ -95.539046044617919, 29.719077182972811 ], [ -95.539009045070841, 29.718609182610145 ], [ -95.538973044963939, 29.717692182895576 ], [ -95.538940044552049, 29.716110182495026 ], [ -95.538961044333121, 29.715489182208355 ], [ -95.538934044300646, 29.714642181862697 ], [ -95.538942044273085, 29.714493181589024 ], [ -95.53855204455904, 29.714493181948765 ], [ -95.53722504452567, 29.714510182132937 ], [ -95.536948043867113, 29.714510181892123 ], [ -95.536272044256535, 29.714512182451635 ], [ -95.535630043629183, 29.714524181981755 ], [ -95.535102043745795, 29.714546181759598 ], [ -95.534388043583576, 29.71455518172575 ], [ -95.53275904296035, 29.714575181899594 ], [ -95.531455043095406, 29.714575182096254 ], [ -95.530871042394892, 29.714579182221978 ], [ -95.529021042316245, 29.714595182729866 ], [ -95.528010042121423, 29.714603182646798 ], [ -95.526281041252957, 29.7146221826012 ], [ -95.525526041368806, 29.714632182396915 ], [ -95.524182040598077, 29.714651182298336 ], [ -95.524169040342017, 29.714259182406831 ], [ -95.524168041015173, 29.713614181933686 ], [ -95.524161041163993, 29.712626182326211 ], [ -95.52413804068371, 29.711632181654046 ], [ -95.524123040739269, 29.710638181633609 ], [ -95.524124040997833, 29.709657181239159 ], [ -95.524117040085372, 29.708674181188535 ], [ -95.524106040441197, 29.707668180648394 ], [ -95.524079040351864, 29.706631181192797 ], [ -95.524005040711359, 29.706477180494858 ], [ -95.523821039946682, 29.706406180456643 ], [ -95.521295040145475, 29.706421180873665 ], [ -95.521310039563431, 29.707433180855809 ], [ -95.521352039716675, 29.708418181543497 ], [ -95.521341039396461, 29.708984181053133 ], [ -95.521329040254642, 29.709394181355595 ], [ -95.521321039846526, 29.711341181772529 ], [ -95.521262039705505, 29.711879181602505 ], [ -95.521088040075782, 29.71254318196485 ], [ -95.520815039784139, 29.713179182028934 ], [ -95.520418039526461, 29.713902182868019 ], [ -95.520296040240538, 29.714159182927546 ], [ -95.520136039857448, 29.714674182656314 ], [ -95.519994039751495, 29.715434182895432 ], [ -95.519984039849589, 29.715737182911699 ], [ -95.519975039945109, 29.716249183188612 ], [ -95.520004040036227, 29.717085182949745 ], [ -95.519999040086617, 29.717603183025691 ], [ -95.519998039934265, 29.717757182935397 ], [ -95.52001403992854, 29.719635183342664 ], [ -95.520033040098568, 29.720260183774744 ], [ -95.520095039949155, 29.720533183539096 ], [ -95.520146039642384, 29.720860184102023 ], [ -95.52025803965202, 29.721245184386884 ], [ -95.522207040623144, 29.721075183798106 ], [ -95.526321041460363, 29.720746183372661 ], [ -95.527444042403687, 29.720676183199284 ], [ -95.529010042024609, 29.720508183760209 ], [ -95.531737043456886, 29.720318183446075 ], [ -95.532998043467359, 29.720192182911312 ], [ -95.534323044089419, 29.720088182838033 ], [ -95.536304044352249, 29.719912183608045 ], [ -95.538817044847619, 29.719739182812489 ], [ -95.539067045112745, 29.719716183333187 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1412, "Tract": "48201433202", "Area_SqMi": 0.44394689943277671, "total_2009": 170, "total_2010": 124, "total_2011": 141, "total_2012": 155, "total_2013": 161, "total_2014": 112, "total_2015": 104, "total_2016": 104, "total_2017": 93, "total_2018": 89, "total_2019": 93, "total_2020": 79, "age1": 27, "age2": 46, "age3": 23, "earn1": 30, "earn2": 39, "earn3": 27, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 5, "naics_s06": 0, "naics_s07": 55, "naics_s08": 1, "naics_s09": 0, "naics_s10": 3, "naics_s11": 10, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 15, "naics_s17": 0, "naics_s18": 0, "naics_s19": 1, "naics_s20": 0, "race1": 41, "race2": 27, "race3": 2, "race4": 25, "race5": 1, "race6": 0, "ethnicity1": 72, "ethnicity2": 24, "edu1": 19, "edu2": 17, "edu3": 17, "edu4": 16, "Shape_Length": 15744.97718057666, "Shape_Area": 12376479.733473655, "total_2021": 94, "total_2022": 96 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.54623004529391, 29.694029177618432 ], [ -95.546229045685948, 29.693894177152792 ], [ -95.546228045557669, 29.693706177170402 ], [ -95.546223045603497, 29.693006176928794 ], [ -95.546218045189789, 29.692231176937401 ], [ -95.546174045000953, 29.690967177282253 ], [ -95.546172045762845, 29.690568176813859 ], [ -95.545618045108753, 29.690571176408113 ], [ -95.542904044722164, 29.690609177106378 ], [ -95.54217604386443, 29.690610176753683 ], [ -95.537678043215493, 29.690673176855608 ], [ -95.537027042857815, 29.690729177047253 ], [ -95.536990042583298, 29.690732177357599 ], [ -95.536438042890779, 29.690823176929431 ], [ -95.536349042631798, 29.690845177641961 ], [ -95.536102042347594, 29.690909177527764 ], [ -95.535208042752004, 29.691145176881889 ], [ -95.535881043171216, 29.691966177146526 ], [ -95.536371043298672, 29.69268517766762 ], [ -95.536785042872353, 29.693354178161705 ], [ -95.537086043271856, 29.693953177756029 ], [ -95.537132042793999, 29.694044177621368 ], [ -95.537542043780633, 29.695227177714649 ], [ -95.537771043039839, 29.696530178437666 ], [ -95.537907043824163, 29.698902178757326 ], [ -95.537944043593271, 29.701371179358627 ], [ -95.537971043409172, 29.7027871793786 ], [ -95.537986044232525, 29.705003179801256 ], [ -95.539953044407099, 29.704979179837252 ], [ -95.541049044331047, 29.704967180366552 ], [ -95.542515044555856, 29.704952179729471 ], [ -95.542752045257103, 29.704955179464505 ], [ -95.543091045460869, 29.70495317984787 ], [ -95.543062045075558, 29.704397179722349 ], [ -95.543075045066388, 29.703975180074618 ], [ -95.543093045178551, 29.703418179739494 ], [ -95.543408045332853, 29.702165179674179 ], [ -95.543737044959968, 29.701316179055716 ], [ -95.54396304559971, 29.700735178958702 ], [ -95.544675045736909, 29.698988178313837 ], [ -95.545330045643396, 29.697338178667639 ], [ -95.545612045190424, 29.696653178276698 ], [ -95.54590304510883, 29.69594717749721 ], [ -95.546117045041399, 29.695310177389803 ], [ -95.546205045793002, 29.694705178073544 ], [ -95.54623004529391, 29.694029177618432 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1413, "Tract": "48201433201", "Area_SqMi": 0.42318858614123184, "total_2009": 1068, "total_2010": 908, "total_2011": 988, "total_2012": 1049, "total_2013": 899, "total_2014": 938, "total_2015": 962, "total_2016": 1027, "total_2017": 1085, "total_2018": 1229, "total_2019": 1323, "total_2020": 1437, "age1": 310, "age2": 853, "age3": 607, "earn1": 795, "earn2": 502, "earn3": 473, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 4, "naics_s06": 52, "naics_s07": 62, "naics_s08": 0, "naics_s09": 14, "naics_s10": 287, "naics_s11": 34, "naics_s12": 44, "naics_s13": 0, "naics_s14": 171, "naics_s15": 3, "naics_s16": 977, "naics_s17": 0, "naics_s18": 105, "naics_s19": 14, "naics_s20": 0, "race1": 434, "race2": 176, "race3": 5, "race4": 1128, "race5": 5, "race6": 22, "ethnicity1": 1522, "ethnicity2": 248, "edu1": 337, "edu2": 294, "edu3": 306, "edu4": 523, "Shape_Length": 15038.997386139381, "Shape_Area": 11797773.487113656, "total_2021": 1664, "total_2022": 1770 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.552297047445492, 29.701812179033716 ], [ -95.552308047643109, 29.701372178749089 ], [ -95.552296047814181, 29.700567178503764 ], [ -95.552274046980855, 29.699767178476669 ], [ -95.552270046913009, 29.699501178883054 ], [ -95.552263046993886, 29.699082178769171 ], [ -95.552246047084793, 29.69856517798733 ], [ -95.552244047727484, 29.698505178645881 ], [ -95.552248046795185, 29.698390177978769 ], [ -95.552232047257519, 29.697835178274477 ], [ -95.552232047671055, 29.697709177978499 ], [ -95.552206046739599, 29.696851178132341 ], [ -95.552203046989916, 29.696510177590024 ], [ -95.55219704734823, 29.696161178214933 ], [ -95.55217904742905, 29.695471177509909 ], [ -95.552164046864192, 29.694790177395234 ], [ -95.552148046598575, 29.694242177088153 ], [ -95.552141047141859, 29.694083177351885 ], [ -95.552125046933583, 29.693413176987011 ], [ -95.552085046676382, 29.692992177416144 ], [ -95.552038046500513, 29.692695177395805 ], [ -95.552012047020838, 29.692561177115483 ], [ -95.551683046857448, 29.691527176450315 ], [ -95.55159804719932, 29.691308176827949 ], [ -95.551512047214359, 29.691086177166557 ], [ -95.551410046824955, 29.690800177005741 ], [ -95.551203046494933, 29.690265176880381 ], [ -95.550629046959457, 29.690406177032891 ], [ -95.550098046199949, 29.690491176970411 ], [ -95.549727045792082, 29.690525176864817 ], [ -95.549591046150255, 29.690530176345156 ], [ -95.549431046131573, 29.690536176569832 ], [ -95.549252046434063, 29.690537176482621 ], [ -95.548033046324136, 29.690553176612685 ], [ -95.546801045610678, 29.690566176627208 ], [ -95.546432045610047, 29.690566176769163 ], [ -95.546304045066023, 29.690567176520805 ], [ -95.546172045762845, 29.690568176813859 ], [ -95.546174045000953, 29.690967177282253 ], [ -95.546218045189789, 29.692231176937401 ], [ -95.546223045603497, 29.693006176928794 ], [ -95.546228045557669, 29.693706177170402 ], [ -95.546229045685948, 29.693894177152792 ], [ -95.54623004529391, 29.694029177618432 ], [ -95.546205045793002, 29.694705178073544 ], [ -95.546117045041399, 29.695310177389803 ], [ -95.54590304510883, 29.69594717749721 ], [ -95.545612045190424, 29.696653178276698 ], [ -95.545330045643396, 29.697338178667639 ], [ -95.544675045736909, 29.698988178313837 ], [ -95.54396304559971, 29.700735178958702 ], [ -95.543737044959968, 29.701316179055716 ], [ -95.543408045332853, 29.702165179674179 ], [ -95.543093045178551, 29.703418179739494 ], [ -95.543075045066388, 29.703975180074618 ], [ -95.543062045075558, 29.704397179722349 ], [ -95.543091045460869, 29.70495317984787 ], [ -95.543746045645378, 29.704949180208807 ], [ -95.544195045588978, 29.704945180226165 ], [ -95.54530104579456, 29.704944179743848 ], [ -95.54573604537768, 29.704942180166029 ], [ -95.545940045458195, 29.704941180094956 ], [ -95.546392045860628, 29.70490917987475 ], [ -95.546690046279153, 29.704906179752768 ], [ -95.547293046469235, 29.704906179990921 ], [ -95.548250046206022, 29.704896179507809 ], [ -95.549772047078761, 29.704887179699224 ], [ -95.549871047189598, 29.704884179826827 ], [ -95.550221047456787, 29.704872179855595 ], [ -95.550341046588372, 29.704868179747919 ], [ -95.550732047381089, 29.704855179231721 ], [ -95.551467046977919, 29.704821179372043 ], [ -95.551455047738486, 29.704219179280241 ], [ -95.551508047053787, 29.703776178988466 ], [ -95.551765047682153, 29.70314217895341 ], [ -95.551793047094876, 29.703089179377848 ], [ -95.552041047649354, 29.702676179138997 ], [ -95.552116047269763, 29.702497178969676 ], [ -95.552275047808479, 29.701966178625394 ], [ -95.552297047445492, 29.701812179033716 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1414, "Tract": "48201552102", "Area_SqMi": 1.2227944574636944, "total_2009": 325, "total_2010": 325, "total_2011": 330, "total_2012": 303, "total_2013": 282, "total_2014": 285, "total_2015": 317, "total_2016": 330, "total_2017": 324, "total_2018": 349, "total_2019": 374, "total_2020": 310, "age1": 71, "age2": 186, "age3": 96, "earn1": 48, "earn2": 94, "earn3": 211, "naics_s01": 0, "naics_s02": 0, "naics_s03": 18, "naics_s04": 27, "naics_s05": 3, "naics_s06": 35, "naics_s07": 8, "naics_s08": 5, "naics_s09": 10, "naics_s10": 5, "naics_s11": 20, "naics_s12": 37, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 41, "naics_s17": 0, "naics_s18": 6, "naics_s19": 134, "naics_s20": 0, "race1": 254, "race2": 36, "race3": 3, "race4": 54, "race5": 0, "race6": 6, "ethnicity1": 245, "ethnicity2": 108, "edu1": 61, "edu2": 67, "edu3": 67, "edu4": 87, "Shape_Length": 27290.299584769731, "Shape_Area": 34089416.640457764, "total_2021": 271, "total_2022": 353 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.621155076005977, 29.946817226269356 ], [ -95.621167076019816, 29.946619226723413 ], [ -95.621141076423726, 29.945947226498301 ], [ -95.621141075885618, 29.945355226025647 ], [ -95.621114075591009, 29.944635225796681 ], [ -95.621109076328537, 29.944475226439405 ], [ -95.621104075389127, 29.944146225919074 ], [ -95.62108207610838, 29.942568225755487 ], [ -95.621026076188983, 29.94067722551959 ], [ -95.620999075596728, 29.93977522496597 ], [ -95.620957075102552, 29.937443224712858 ], [ -95.620940075866443, 29.936500224303323 ], [ -95.620933074983554, 29.936114224628732 ], [ -95.620863075539958, 29.935718224519135 ], [ -95.62056007478165, 29.934598224189994 ], [ -95.620269075021028, 29.9335202239461 ], [ -95.620256074630731, 29.933399224280606 ], [ -95.620251075626996, 29.932972223334044 ], [ -95.620249074876853, 29.932783223673869 ], [ -95.620253074909172, 29.932126223973331 ], [ -95.620255074792766, 29.931838223785977 ], [ -95.620268074638105, 29.931607223788287 ], [ -95.620256075360345, 29.931274223181248 ], [ -95.620242075526733, 29.930821223566312 ], [ -95.620260074486396, 29.929556223186914 ], [ -95.620247074863684, 29.929391222577575 ], [ -95.620216075300306, 29.929336223351154 ], [ -95.620216075383397, 29.929298222793065 ], [ -95.619842075180486, 29.929283222973215 ], [ -95.619679074579921, 29.929276222807527 ], [ -95.619212074591971, 29.929227222719295 ], [ -95.619099074839923, 29.929249223234486 ], [ -95.618966074944893, 29.929255222895499 ], [ -95.618152074207643, 29.929140223340756 ], [ -95.617950074305469, 29.929074222688417 ], [ -95.61781707471323, 29.928997223378705 ], [ -95.617742073981518, 29.928969223337344 ], [ -95.617363074391776, 29.928882223151231 ], [ -95.616984073708323, 29.928772222746247 ], [ -95.616599073590493, 29.928591223354914 ], [ -95.616441073674096, 29.928508223116815 ], [ -95.615917073621546, 29.928234223260826 ], [ -95.615595073874758, 29.928008222466111 ], [ -95.615494074092496, 29.927942222936 ], [ -95.615166073611533, 29.92772822275376 ], [ -95.614730073664774, 29.927354222660313 ], [ -95.614440073199162, 29.927118223139981 ], [ -95.613682073002806, 29.92661822245994 ], [ -95.613152072766198, 29.926322222290054 ], [ -95.613026072813497, 29.92626122287081 ], [ -95.612849072886817, 29.926146222996842 ], [ -95.612129073145056, 29.92587722304236 ], [ -95.612003072284764, 29.925816222601785 ], [ -95.611896072462486, 29.925805222681515 ], [ -95.611833073010303, 29.925827222774327 ], [ -95.611757073008661, 29.925828222323712 ], [ -95.61170807272228, 29.925808222886737 ], [ -95.611650072771312, 29.925784222622916 ], [ -95.611523072127781, 29.92570722288901 ], [ -95.611359072798905, 29.925652222237318 ], [ -95.611164072266206, 29.925608222570773 ], [ -95.61073807260594, 29.925542222297885 ], [ -95.610703072528111, 29.925537222823063 ], [ -95.610646071990118, 29.925537222186037 ], [ -95.610589072849393, 29.925559222486861 ], [ -95.610533072579756, 29.92556422290215 ], [ -95.610432072560883, 29.925553222582845 ], [ -95.610293071806709, 29.925504222152295 ], [ -95.610154072228227, 29.92547122227959 ], [ -95.610047072167433, 29.925498222471099 ], [ -95.610009071813309, 29.925498222164059 ], [ -95.609422071557489, 29.925433222856825 ], [ -95.609226071825262, 29.925438222455217 ], [ -95.608967071720997, 29.925416222932551 ], [ -95.608652071806802, 29.925433222194901 ], [ -95.608526072208122, 29.925460222203881 ], [ -95.608450072056925, 29.925499222395924 ], [ -95.60836207201605, 29.925488222261929 ], [ -95.608317071643626, 29.925450222584161 ], [ -95.608254072099712, 29.925433222955377 ], [ -95.608191071465413, 29.925466222699054 ], [ -95.608141071849175, 29.925455222339863 ], [ -95.608115071467154, 29.92543322233708 ], [ -95.608084072162555, 29.925428223090595 ], [ -95.607996071886532, 29.925461222786314 ], [ -95.607863071499281, 29.925455222555147 ], [ -95.607636071129278, 29.925483222600157 ], [ -95.607453071517114, 29.925477222780163 ], [ -95.60710607131135, 29.925499223038116 ], [ -95.607036071782503, 29.925494222406702 ], [ -95.606987071498736, 29.925461222462701 ], [ -95.606923071371995, 29.925417222824542 ], [ -95.60683407089445, 29.925417223041233 ], [ -95.606626071049888, 29.925467222495012 ], [ -95.606348071021301, 29.925483222981306 ], [ -95.606325071597055, 29.925487222902039 ], [ -95.606293070859095, 29.926862222944198 ], [ -95.606313070950549, 29.927916222924974 ], [ -95.606324071531972, 29.928929223422106 ], [ -95.606331071785618, 29.929282223890116 ], [ -95.606338071432219, 29.929589223278022 ], [ -95.606344071745355, 29.929886224027307 ], [ -95.60636607126763, 29.931094223872115 ], [ -95.606380071691291, 29.931861224033437 ], [ -95.606382071678283, 29.931892224422981 ], [ -95.606398071707417, 29.932178223670633 ], [ -95.606420072073135, 29.932373223743816 ], [ -95.606452072063021, 29.932569223919987 ], [ -95.606483071992812, 29.932722224115128 ], [ -95.606586071781223, 29.933113224622591 ], [ -95.606687071616861, 29.933413223992666 ], [ -95.606708071210704, 29.933464224386697 ], [ -95.606851071896287, 29.9338102248315 ], [ -95.60687707143903, 29.933862224352968 ], [ -95.606899072009128, 29.933908224533539 ], [ -95.607226071472709, 29.934513224834888 ], [ -95.607328071965057, 29.934723224443804 ], [ -95.607459072437436, 29.935042224702038 ], [ -95.607496072211205, 29.935150224499584 ], [ -95.607531071671033, 29.935247224738966 ], [ -95.607624071579139, 29.935558224404012 ], [ -95.607671071884027, 29.935767224509146 ], [ -95.60773507238973, 29.936154225243559 ], [ -95.607741072365627, 29.936216224962401 ], [ -95.607752072552501, 29.936318224441653 ], [ -95.607752072010214, 29.936390224544947 ], [ -95.607759072414296, 29.93645622532599 ], [ -95.607754072047683, 29.936513224851272 ], [ -95.607754072478741, 29.936688225395329 ], [ -95.60775407188558, 29.936733225335331 ], [ -95.607762072420712, 29.936785224659744 ], [ -95.60777107221007, 29.93706822485402 ], [ -95.6077670719244, 29.937138224875376 ], [ -95.607777072247558, 29.937596225525109 ], [ -95.607782072497074, 29.93764322553908 ], [ -95.607785071887307, 29.937675224953132 ], [ -95.607781072592132, 29.937752225257416 ], [ -95.607800072504006, 29.938634224963394 ], [ -95.607812072727029, 29.938937225742873 ], [ -95.607804071776698, 29.939024225465779 ], [ -95.607804072553336, 29.939115225361313 ], [ -95.607814072675581, 29.939295225905944 ], [ -95.607815072476342, 29.939544225478979 ], [ -95.607821071966967, 29.939597225664659 ], [ -95.607827072216992, 29.939707225332079 ], [ -95.607822072252716, 29.939781225458244 ], [ -95.607825072707755, 29.94009522566332 ], [ -95.607831072460542, 29.940174225928153 ], [ -95.607827072642792, 29.940323225275773 ], [ -95.60783407218149, 29.940397225336142 ], [ -95.607829072185822, 29.940464226083062 ], [ -95.607830072657691, 29.940530225880426 ], [ -95.607838072012328, 29.940592225473676 ], [ -95.607839072764705, 29.94065622610205 ], [ -95.607839072485035, 29.941002225604155 ], [ -95.607847072284883, 29.941075225611108 ], [ -95.607846071847348, 29.941463225735909 ], [ -95.607853072131974, 29.941512225749186 ], [ -95.607863072871311, 29.941883226072093 ], [ -95.607865072581461, 29.942375226340801 ], [ -95.607878072238137, 29.9427902263369 ], [ -95.607881072716751, 29.943209226482935 ], [ -95.607884072647408, 29.943411226694224 ], [ -95.60789407284706, 29.943477226377301 ], [ -95.607887072757819, 29.943536226772078 ], [ -95.607897072432621, 29.943723226371432 ], [ -95.607891072869364, 29.9437862260149 ], [ -95.607904072870966, 29.943855226681702 ], [ -95.607907072594145, 29.944059226012271 ], [ -95.607914072194973, 29.944418226452289 ], [ -95.607910072897326, 29.944480226945647 ], [ -95.607910072174676, 29.94478922644506 ], [ -95.607919072405281, 29.944855227 ], [ -95.607920072266154, 29.944912226354305 ], [ -95.607928072239048, 29.945000226799802 ], [ -95.607936072346106, 29.945212226322354 ], [ -95.607950072225833, 29.945374226691207 ], [ -95.607968072196613, 29.945462227064713 ], [ -95.607989072565672, 29.945633226808884 ], [ -95.60800807259298, 29.9458752263882 ], [ -95.608009072482673, 29.946071227104778 ], [ -95.608014072255713, 29.946257226520228 ], [ -95.608008073020471, 29.946338226769903 ], [ -95.608009072585304, 29.946425227159516 ], [ -95.607992072649012, 29.946600227202552 ], [ -95.607966072699668, 29.94677522728702 ], [ -95.607948072246728, 29.946855226622251 ], [ -95.607935072122501, 29.946943227121412 ], [ -95.607860072996488, 29.947226226788363 ], [ -95.607785072114908, 29.947456227179774 ], [ -95.607700072235346, 29.947683227480077 ], [ -95.607625072619797, 29.947846227230492 ], [ -95.607581072976117, 29.947924227441717 ], [ -95.607546073002041, 29.948011227018849 ], [ -95.607504072281785, 29.948090227205931 ], [ -95.607384072500409, 29.948294227472207 ], [ -95.607260072899237, 29.948484227144153 ], [ -95.607129072297667, 29.948665227261849 ], [ -95.607010072117745, 29.948811227845471 ], [ -95.606932072490736, 29.948901227331074 ], [ -95.606686071935201, 29.949166227070656 ], [ -95.60654807285654, 29.949301227734715 ], [ -95.606234071879868, 29.949575227576567 ], [ -95.606159072462745, 29.949646227783681 ], [ -95.605859072461584, 29.949895227816494 ], [ -95.60580707199442, 29.949958227731003 ], [ -95.605752072381023, 29.950001227817626 ], [ -95.605668071889355, 29.950085228097333 ], [ -95.605576072022885, 29.950182227806593 ], [ -95.605373072237057, 29.950458227872428 ], [ -95.605295071647191, 29.950585227698145 ], [ -95.605176072455549, 29.950803228328429 ], [ -95.605074072397954, 29.951026228350461 ], [ -95.605065072302054, 29.951048228082236 ], [ -95.605038072140218, 29.951113228144322 ], [ -95.604997071685034, 29.951237228235744 ], [ -95.604977072050517, 29.951322228198059 ], [ -95.604954072245931, 29.951382228136314 ], [ -95.604920072023418, 29.951527228140662 ], [ -95.60489607195386, 29.951691228052287 ], [ -95.604845072464414, 29.952345228263852 ], [ -95.605337071955987, 29.952339227809659 ], [ -95.605454072450627, 29.952334228143705 ], [ -95.605815072788346, 29.952329228036113 ], [ -95.606015072725882, 29.9523162282998 ], [ -95.606148072464975, 29.952300227751092 ], [ -95.606180072180436, 29.952296227805959 ], [ -95.606469072988745, 29.95224622847233 ], [ -95.606519072467322, 29.952236228306148 ], [ -95.60670507211006, 29.952196228373342 ], [ -95.606866072551767, 29.952157228217082 ], [ -95.607196073122282, 29.952067227807966 ], [ -95.607513072659714, 29.951966228054047 ], [ -95.607552072370623, 29.951948228185309 ], [ -95.607598072773087, 29.951926228156495 ], [ -95.607676072650023, 29.951907228046753 ], [ -95.607841072339156, 29.95183722835403 ], [ -95.608113073265983, 29.951704228231726 ], [ -95.608419073228646, 29.951538227882207 ], [ -95.608626073253461, 29.951402228181557 ], [ -95.608828072907968, 29.951252227751883 ], [ -95.609030073142904, 29.951086227399827 ], [ -95.609339073266909, 29.950813227648968 ], [ -95.61009707342339, 29.950119227873913 ], [ -95.61022607314996, 29.950021227885422 ], [ -95.610331073880104, 29.949911227976433 ], [ -95.610518073572834, 29.949741227456823 ], [ -95.610942073677037, 29.949349226991668 ], [ -95.611179073168572, 29.949140227311535 ], [ -95.611327073712857, 29.949001227044221 ], [ -95.611625073821983, 29.948732227148923 ], [ -95.611797073179687, 29.948592227309103 ], [ -95.611979073364978, 29.948461227221305 ], [ -95.612274073954651, 29.948269226861981 ], [ -95.612362073545569, 29.948219227165477 ], [ -95.61246607367255, 29.948162227456152 ], [ -95.612668073512467, 29.94806222670989 ], [ -95.612895073836413, 29.947962227318023 ], [ -95.612960074110887, 29.947934227182738 ], [ -95.613147073694861, 29.94786122729251 ], [ -95.613432073739759, 29.947761227107673 ], [ -95.61362607433756, 29.947701226702343 ], [ -95.613814074007252, 29.947652226668811 ], [ -95.613967074626729, 29.947614226747316 ], [ -95.614333074764986, 29.947543226948028 ], [ -95.614569074303688, 29.947504227243112 ], [ -95.614874074560277, 29.947475227147603 ], [ -95.615117074131803, 29.947467227130531 ], [ -95.615389075023359, 29.947471227142525 ], [ -95.615680075084256, 29.947488226716438 ], [ -95.616148074625656, 29.947523227150263 ], [ -95.616465074925046, 29.947538226822534 ], [ -95.616644075276199, 29.947547227241952 ], [ -95.616867075038797, 29.947548226675103 ], [ -95.617026074647114, 29.947549226841986 ], [ -95.617393075433029, 29.947550226501601 ], [ -95.618080074983595, 29.94754422723075 ], [ -95.618296075249859, 29.947538226447801 ], [ -95.618501075251388, 29.947531227110627 ], [ -95.618715075245547, 29.947524226686809 ], [ -95.619051075710985, 29.947516226886865 ], [ -95.61952807566945, 29.947507226827977 ], [ -95.620720076313077, 29.947490226744552 ], [ -95.620764075517513, 29.947385227007846 ], [ -95.620801075443225, 29.947301226857949 ], [ -95.620991076048767, 29.947009226891719 ], [ -95.621136075968636, 29.94687222641522 ], [ -95.621155076005977, 29.946817226269356 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1415, "Tract": "48201554002", "Area_SqMi": 1.6757338105965891, "total_2009": 761, "total_2010": 953, "total_2011": 1058, "total_2012": 1075, "total_2013": 1086, "total_2014": 1389, "total_2015": 1151, "total_2016": 1101, "total_2017": 948, "total_2018": 848, "total_2019": 671, "total_2020": 803, "age1": 170, "age2": 421, "age3": 184, "earn1": 213, "earn2": 281, "earn3": 281, "naics_s01": 1, "naics_s02": 2, "naics_s03": 0, "naics_s04": 15, "naics_s05": 12, "naics_s06": 26, "naics_s07": 112, "naics_s08": 3, "naics_s09": 7, "naics_s10": 35, "naics_s11": 28, "naics_s12": 87, "naics_s13": 11, "naics_s14": 85, "naics_s15": 0, "naics_s16": 92, "naics_s17": 1, "naics_s18": 35, "naics_s19": 25, "naics_s20": 198, "race1": 635, "race2": 67, "race3": 6, "race4": 51, "race5": 4, "race6": 12, "ethnicity1": 577, "ethnicity2": 198, "edu1": 97, "edu2": 128, "edu3": 214, "edu4": 166, "Shape_Length": 28740.594649973467, "Shape_Area": 46716590.592352383, "total_2021": 737, "total_2022": 775 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.558710062741383, 30.001824240062742 ], [ -95.558655062948006, 30.001727239820024 ], [ -95.55820706201159, 30.000938239912589 ], [ -95.555601061308352, 29.996349238656364 ], [ -95.555306061001644, 29.995825238391493 ], [ -95.553538060285774, 29.992687238586726 ], [ -95.55340406032208, 29.992741237991083 ], [ -95.552873061095823, 29.992862238507644 ], [ -95.552646060878857, 29.992862238497878 ], [ -95.552393060083858, 29.992807238569846 ], [ -95.551850060580946, 29.992548238210667 ], [ -95.551793060409622, 29.992543238662815 ], [ -95.55171106029205, 29.992581238639072 ], [ -95.551699060240054, 29.992620237850339 ], [ -95.55169906021321, 29.992741238342763 ], [ -95.55161006030059, 29.99289523848131 ], [ -95.551496059843089, 29.993048238367138 ], [ -95.551200060072119, 29.993169238386063 ], [ -95.550871060359995, 29.993224238328196 ], [ -95.550631059704401, 29.993220238513551 ], [ -95.550574060503195, 29.993219238618821 ], [ -95.549772059422182, 29.993114238775608 ], [ -95.549665059633938, 29.993048238013714 ], [ -95.549615060088826, 29.992960238533094 ], [ -95.549551059392471, 29.992801237932923 ], [ -95.549400060106876, 29.992587238739485 ], [ -95.549389059596081, 29.992549238223049 ], [ -95.549356059921109, 29.99243123837843 ], [ -95.549318059546593, 29.992293238418775 ], [ -95.5492990594133, 29.992224237981546 ], [ -95.549292059945088, 29.99193823776098 ], [ -95.549358059281388, 29.991712237705119 ], [ -95.549448059408888, 29.991403238460382 ], [ -95.549457059985102, 29.991372238452236 ], [ -95.549494059321503, 29.991197237872289 ], [ -95.549520060111988, 29.991080238354279 ], [ -95.549520059699901, 29.990883237754883 ], [ -95.549469059748319, 29.990712238386269 ], [ -95.549426059211186, 29.99062423802425 ], [ -95.549299059940509, 29.990366237939892 ], [ -95.548999059737156, 29.989890238203365 ], [ -95.548952060000303, 29.989816237376896 ], [ -95.548914059898024, 29.989772237787726 ], [ -95.548768058996032, 29.98961323793554 ], [ -95.54838905957574, 29.989228237931336 ], [ -95.548137059234335, 29.988848237287122 ], [ -95.548017059689016, 29.988607237497469 ], [ -95.547960058863296, 29.988442237647995 ], [ -95.547825059344021, 29.988274237442234 ], [ -95.547515059472801, 29.988003237813817 ], [ -95.54717105925792, 29.987787237214089 ], [ -95.546858058439355, 29.987612237249248 ], [ -95.546612058993205, 29.987475237723139 ], [ -95.546471059039931, 29.987396237558379 ], [ -95.545958058443759, 29.987194237044466 ], [ -95.545888058123637, 29.987179237751405 ], [ -95.545878058159801, 29.987168237392055 ], [ -95.545687058353977, 29.987113237510002 ], [ -95.545623058329582, 29.987125237266973 ], [ -95.545572058023708, 29.987134237291261 ], [ -95.545526058994255, 29.987142237731458 ], [ -95.545042058664052, 29.98737923784952 ], [ -95.544460058583539, 29.987755237370312 ], [ -95.544448058224248, 29.987762237557693 ], [ -95.544384057957785, 29.9878032378166 ], [ -95.544313058049724, 29.987828237861251 ], [ -95.543305057929899, 29.988180238072935 ], [ -95.542974058174281, 29.988315237698735 ], [ -95.542893058187047, 29.988360237593859 ], [ -95.542778058335188, 29.988425237597706 ], [ -95.542587057434957, 29.988602237552662 ], [ -95.542279058248184, 29.989110237803093 ], [ -95.542273058198333, 29.989119238011657 ], [ -95.542005057560004, 29.989230237980429 ], [ -95.541717058016488, 29.989245237846944 ], [ -95.541294057294607, 29.989268237636157 ], [ -95.541282058004128, 29.989268238213086 ], [ -95.541153057067447, 29.989276237885601 ], [ -95.540903057783069, 29.989462238190324 ], [ -95.540664057244499, 29.989978237731126 ], [ -95.540618057513839, 29.99007823816584 ], [ -95.540550057746614, 29.990320237759715 ], [ -95.540483057814654, 29.990514237793491 ], [ -95.540353057234199, 29.9906922381237 ], [ -95.540169057167589, 29.990847238223363 ], [ -95.539960057357192, 29.990961238755855 ], [ -95.539760057111764, 29.991047238717297 ], [ -95.539583057003327, 29.991104238695868 ], [ -95.539421056774245, 29.991117238775448 ], [ -95.539218057218321, 29.991066238550669 ], [ -95.538974057130616, 29.99096823843113 ], [ -95.538828056464453, 29.9909452380506 ], [ -95.538663056714498, 29.990968238817491 ], [ -95.53848905689614, 29.991041238575974 ], [ -95.53831205683035, 29.9911072381426 ], [ -95.537912057098453, 29.991459238876377 ], [ -95.537533056263342, 29.991822238657363 ], [ -95.537224056412228, 29.992195238275134 ], [ -95.537123056832229, 29.99233823912413 ], [ -95.537060056125, 29.992492238931867 ], [ -95.536845056565099, 29.992696238673521 ], [ -95.536617056849892, 29.99287223846493 ], [ -95.536504056316119, 29.992910238638224 ], [ -95.53634605671958, 29.992921238890421 ], [ -95.536106056266036, 29.992893239271339 ], [ -95.535733056737911, 29.992767238590478 ], [ -95.535695056316385, 29.992772238845017 ], [ -95.535531055880057, 29.992756238477899 ], [ -95.535474056009889, 29.992756238505056 ], [ -95.53541805638784, 29.992772238742667 ], [ -95.535316056516379, 29.992827238924146 ], [ -95.535234055727145, 29.992882238658797 ], [ -95.53488705655333, 29.993295239050532 ], [ -95.53464005555405, 29.993740239338557 ], [ -95.534489056245064, 29.994070238774206 ], [ -95.534369055477924, 29.994196239511059 ], [ -95.534217055847932, 29.994333238933542 ], [ -95.534091055853324, 29.994432238850589 ], [ -95.533958055364423, 29.994465239636106 ], [ -95.533781056162738, 29.994476239449572 ], [ -95.533655055845443, 29.994438239192426 ], [ -95.533529056017244, 29.994416239433178 ], [ -95.533156055308083, 29.994361238909129 ], [ -95.532815055493643, 29.994328239292656 ], [ -95.532581055724691, 29.99433323888135 ], [ -95.532247055104435, 29.994394238876087 ], [ -95.532114055254368, 29.994465239320569 ], [ -95.53197505500809, 29.994597239573736 ], [ -95.53197505537436, 29.994740239630456 ], [ -95.532007055436992, 29.994943239628984 ], [ -95.532108054956439, 29.995169239397054 ], [ -95.532215055075753, 29.995218239250139 ], [ -95.532335055215626, 29.995356239544691 ], [ -95.532417055064116, 29.99559223987913 ], [ -95.532644055349451, 29.995889239966395 ], [ -95.53270105544938, 29.996054239174224 ], [ -95.53268205513649, 29.996279240007713 ], [ -95.532587056103623, 29.99644423979537 ], [ -95.532398056075721, 29.99657623947612 ], [ -95.532227055021096, 29.99667024004847 ], [ -95.531646055501199, 29.997021240100224 ], [ -95.531375055485, 29.99725823962687 ], [ -95.530970055206126, 29.997774239777812 ], [ -95.530731055060869, 29.998018239787548 ], [ -95.530711055317497, 29.998038240244171 ], [ -95.530636055182413, 29.998076240521073 ], [ -95.531126055510569, 29.998823240608942 ], [ -95.531199055475668, 29.998947240416786 ], [ -95.531283055521527, 29.99906424057545 ], [ -95.531504055745344, 29.999417239946791 ], [ -95.531807055479078, 29.999880239976978 ], [ -95.531862056021069, 29.999992240787915 ], [ -95.531949055471287, 30.000094240624751 ], [ -95.532329055753436, 30.000657240717398 ], [ -95.532394055514942, 30.00075424071607 ], [ -95.532458055568213, 30.000828240218659 ], [ -95.532502055347948, 30.00090524067398 ], [ -95.532533055513852, 30.000972240936175 ], [ -95.532734055597928, 30.001273240469931 ], [ -95.532942056102328, 30.001614240331236 ], [ -95.533128055525452, 30.001961240790951 ], [ -95.533202055568978, 30.002146241038975 ], [ -95.533244055649945, 30.00223324047219 ], [ -95.533314055731594, 30.002413241017226 ], [ -95.533410055873375, 30.002733241374351 ], [ -95.533501055833483, 30.003150241410065 ], [ -95.533524055827129, 30.003349240761516 ], [ -95.533562056608645, 30.003846241283654 ], [ -95.53356805617257, 30.003923240815876 ], [ -95.533584055878592, 30.004176240918653 ], [ -95.533609056768952, 30.004562241361775 ], [ -95.533632056430648, 30.004822241755893 ], [ -95.533667056392801, 30.005102241077616 ], [ -95.533720056363862, 30.005373241509403 ], [ -95.533783056152714, 30.005629241275813 ], [ -95.53384205658557, 30.005807241654843 ], [ -95.533883056615025, 30.005931241437626 ], [ -95.533919056615275, 30.006057241321511 ], [ -95.53395105637891, 30.006134241925814 ], [ -95.534014056582549, 30.006289241720168 ], [ -95.534040056585155, 30.006335241691371 ], [ -95.534133056243476, 30.006532241536799 ], [ -95.534143056956594, 30.006550242029615 ], [ -95.534306056488106, 30.006849241499026 ], [ -95.534454057044513, 30.007082241489599 ], [ -95.534664056356007, 30.007383241740072 ], [ -95.535164056950762, 30.008070242252945 ], [ -95.535847057049025, 30.009013242160709 ], [ -95.535882057346797, 30.009073242274219 ], [ -95.536009057302394, 30.009242241749874 ], [ -95.536114057568042, 30.009392241829975 ], [ -95.536313056671233, 30.009656242106466 ], [ -95.536349057647357, 30.009713242505814 ], [ -95.53646005727461, 30.009858242451116 ], [ -95.536649057747695, 30.010121242452296 ], [ -95.536684057788037, 30.010175242115508 ], [ -95.536936057763953, 30.010513242637714 ], [ -95.537206057857659, 30.010880242669423 ], [ -95.537366057505977, 30.011099242589466 ], [ -95.537412058057669, 30.011157242286401 ], [ -95.537513057651893, 30.01130424255377 ], [ -95.537696057425805, 30.011586242871452 ], [ -95.537758057698198, 30.011689242793057 ], [ -95.537812057581249, 30.01178924308913 ], [ -95.53789205770677, 30.011925243012385 ], [ -95.537918057200599, 30.011989242595078 ], [ -95.537992057759979, 30.012128242256129 ], [ -95.538044057747854, 30.01220824263336 ], [ -95.53812405791713, 30.012367243080977 ], [ -95.538339057812493, 30.012704242755945 ], [ -95.538472057397271, 30.012888242879416 ], [ -95.539980058233638, 30.012060243042917 ], [ -95.540529058763937, 30.011772242659756 ], [ -95.540639057907882, 30.011712242138668 ], [ -95.540844058798413, 30.011601242128972 ], [ -95.541105058279058, 30.011458242197921 ], [ -95.541185058849408, 30.011412242765353 ], [ -95.541762059150173, 30.011085242365958 ], [ -95.542415058488615, 30.010717242154254 ], [ -95.542921058681287, 30.010445242423749 ], [ -95.542962058932901, 30.010422241743953 ], [ -95.543016058853283, 30.010392242324968 ], [ -95.544059059547052, 30.009824241830078 ], [ -95.545045059220328, 30.009276241923985 ], [ -95.545410059863954, 30.009075241564485 ], [ -95.545878059142822, 30.008818241564349 ], [ -95.546419059437113, 30.008516241694135 ], [ -95.546547060147276, 30.008444241286949 ], [ -95.547161060310273, 30.008101242008184 ], [ -95.547267060171706, 30.008042241727921 ], [ -95.547535060252258, 30.007894241501077 ], [ -95.54764305979414, 30.007827241543726 ], [ -95.548072060039956, 30.00758524131674 ], [ -95.548149059837129, 30.007537240993162 ], [ -95.548769060023275, 30.007196241653613 ], [ -95.548847060509971, 30.007150241435887 ], [ -95.548918060616728, 30.007116241295542 ], [ -95.54903606069216, 30.007050240863819 ], [ -95.549133060166497, 30.006981241398126 ], [ -95.549192060259514, 30.006962241065676 ], [ -95.549381060865528, 30.00685924084431 ], [ -95.549514060935508, 30.006784241452308 ], [ -95.550444060229708, 30.006268241031034 ], [ -95.551275060555895, 30.005807241384431 ], [ -95.551378060628238, 30.005751241337567 ], [ -95.551479060767875, 30.005681240906885 ], [ -95.551584061023334, 30.00561924133418 ], [ -95.551699061136915, 30.005570240627705 ], [ -95.551734060682648, 30.005551240457255 ], [ -95.552032060564642, 30.005386241096549 ], [ -95.55206806106095, 30.00536224111471 ], [ -95.552140060966693, 30.005314241094968 ], [ -95.552590061346777, 30.005069240401571 ], [ -95.552802060803785, 30.004955240526321 ], [ -95.553010060803317, 30.004846240734587 ], [ -95.553058060900682, 30.004816240459743 ], [ -95.553291061606018, 30.004673240850831 ], [ -95.553582061409841, 30.004495240457356 ], [ -95.553822061748278, 30.004362240216665 ], [ -95.554262061985654, 30.004116240118559 ], [ -95.554544061649253, 30.003964240444684 ], [ -95.554685061592579, 30.003892240059219 ], [ -95.55501906209949, 30.003731240688186 ], [ -95.555316061455954, 30.003593240025534 ], [ -95.555540062055258, 30.003491240769247 ], [ -95.556266062314236, 30.003149240485847 ], [ -95.556391062470794, 30.003096240286816 ], [ -95.556514062349294, 30.003038239997849 ], [ -95.556752061741861, 30.002912240411682 ], [ -95.55745506229735, 30.002523240419666 ], [ -95.55764906216649, 30.002408240175104 ], [ -95.557766061840638, 30.002340239951625 ], [ -95.5578580624301, 30.002296239639342 ], [ -95.558710062741383, 30.001824240062742 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1416, "Tract": "48201555401", "Area_SqMi": 5.2145902432553344, "total_2009": 728, "total_2010": 721, "total_2011": 800, "total_2012": 891, "total_2013": 964, "total_2014": 1063, "total_2015": 1244, "total_2016": 1384, "total_2017": 1317, "total_2018": 1954, "total_2019": 2303, "total_2020": 2207, "age1": 386, "age2": 1063, "age3": 447, "earn1": 236, "earn2": 409, "earn3": 1251, "naics_s01": 6, "naics_s02": 0, "naics_s03": 0, "naics_s04": 642, "naics_s05": 279, "naics_s06": 141, "naics_s07": 111, "naics_s08": 1, "naics_s09": 2, "naics_s10": 2, "naics_s11": 85, "naics_s12": 152, "naics_s13": 84, "naics_s14": 175, "naics_s15": 35, "naics_s16": 47, "naics_s17": 20, "naics_s18": 44, "naics_s19": 70, "naics_s20": 0, "race1": 1618, "race2": 176, "race3": 17, "race4": 57, "race5": 0, "race6": 28, "ethnicity1": 1278, "ethnicity2": 618, "edu1": 312, "edu2": 422, "edu3": 454, "edu4": 322, "Shape_Length": 62881.221025657731, "Shape_Area": 145373851.12156102, "total_2021": 1909, "total_2022": 1896 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.628745085893428, 30.127775262861448 ], [ -95.628693085852078, 30.127663263070996 ], [ -95.62859308585459, 30.127449263140118 ], [ -95.628583085740317, 30.127429263179096 ], [ -95.628406086059442, 30.127073263019959 ], [ -95.627727085879243, 30.125739263017245 ], [ -95.627003085750474, 30.124238262794549 ], [ -95.626308084984657, 30.122797262501958 ], [ -95.625477085528559, 30.121061261539662 ], [ -95.624973084510145, 30.120028262020309 ], [ -95.624168085007796, 30.118379261671205 ], [ -95.622679084049608, 30.115248260820202 ], [ -95.622198083574858, 30.114310260650722 ], [ -95.621675083793704, 30.113262260370124 ], [ -95.620360083332884, 30.110612259918089 ], [ -95.619281082573494, 30.108312259571207 ], [ -95.61868808291463, 30.107139259526711 ], [ -95.61867508299467, 30.107113259102984 ], [ -95.61692908184672, 30.104018258438128 ], [ -95.616065081462722, 30.102508258514103 ], [ -95.615246081213911, 30.101087257789729 ], [ -95.614485080916239, 30.099725257671992 ], [ -95.613608080868701, 30.09821725774831 ], [ -95.613151080420792, 30.097369257098695 ], [ -95.612861080508665, 30.096774257078462 ], [ -95.612452080270259, 30.096127257310005 ], [ -95.61197008018091, 30.095233256970896 ], [ -95.61145908035526, 30.094421256671843 ], [ -95.611298080010542, 30.094134256603471 ], [ -95.611035079707747, 30.093667256298048 ], [ -95.61037207953737, 30.09255125615946 ], [ -95.609958079853413, 30.091797256292683 ], [ -95.6093710800439, 30.090728256478492 ], [ -95.608938079733576, 30.090040256084475 ], [ -95.608202078799849, 30.088717255536178 ], [ -95.606201078545908, 30.085209255454014 ], [ -95.604340078391417, 30.081944254410089 ], [ -95.601678076851101, 30.077249253722897 ], [ -95.596782075378869, 30.068688252584046 ], [ -95.596708074895048, 30.068557252426604 ], [ -95.595733075083629, 30.068667252416397 ], [ -95.595499075529574, 30.068693251886632 ], [ -95.595468075277097, 30.068697251906787 ], [ -95.595226074870084, 30.068725252223967 ], [ -95.595007075240815, 30.068750252628462 ], [ -95.594853074602369, 30.068768252181545 ], [ -95.594692075079863, 30.068786252052078 ], [ -95.594430074915763, 30.068814252406284 ], [ -95.59384407410127, 30.068879252698313 ], [ -95.592911074786741, 30.068986252427951 ], [ -95.590525073760872, 30.069263252375443 ], [ -95.589885073337996, 30.069336252114205 ], [ -95.589165073590934, 30.069420252277968 ], [ -95.589107073504195, 30.06942725254973 ], [ -95.589068073250317, 30.070815252442092 ], [ -95.589015073389973, 30.072487253422675 ], [ -95.589076073397706, 30.07274725313998 ], [ -95.58934407322846, 30.073491253510799 ], [ -95.589360074083402, 30.073535253126163 ], [ -95.590078073664131, 30.075518254098451 ], [ -95.590502074153918, 30.076564253917052 ], [ -95.590551074212783, 30.076685254017328 ], [ -95.590812074718954, 30.077329254392211 ], [ -95.591286074288021, 30.078504254115007 ], [ -95.591744074984689, 30.079754254906661 ], [ -95.591802074683017, 30.079897254878876 ], [ -95.592139074675757, 30.080763254856219 ], [ -95.592714074540638, 30.082245255024091 ], [ -95.59329807548302, 30.083645255639546 ], [ -95.593727075196739, 30.084730255634895 ], [ -95.593900075141789, 30.085164255151213 ], [ -95.594015075192502, 30.085586255310936 ], [ -95.5940530757088, 30.085862255654071 ], [ -95.594065075548073, 30.086126256236849 ], [ -95.594088075230218, 30.087836256433057 ], [ -95.594103075962636, 30.089178256802594 ], [ -95.594099076043108, 30.090210256477921 ], [ -95.594134075905643, 30.092671257331027 ], [ -95.594061075406145, 30.093534257354332 ], [ -95.594046075481259, 30.09369425693653 ], [ -95.59403807621031, 30.093785257009419 ], [ -95.594032075732287, 30.09402425781666 ], [ -95.594023075694423, 30.094497257839329 ], [ -95.594003075559655, 30.095090257186616 ], [ -95.59399607602279, 30.098683258652134 ], [ -95.593995076254117, 30.098824258179462 ], [ -95.593995076077533, 30.099324258352389 ], [ -95.593995075751138, 30.099458258906022 ], [ -95.593989076379515, 30.099584258342126 ], [ -95.593985076363538, 30.099691258182762 ], [ -95.593973075630572, 30.100111258758602 ], [ -95.593967075699453, 30.100332258401373 ], [ -95.593819076074269, 30.100986258517942 ], [ -95.593512076423622, 30.102345259048775 ], [ -95.59302507631439, 30.104240259707176 ], [ -95.592760076491928, 30.105510259890984 ], [ -95.592576075840995, 30.106698259879522 ], [ -95.592576076253565, 30.106724260311875 ], [ -95.592566075959141, 30.108464260253104 ], [ -95.592640076345432, 30.11233326130537 ], [ -95.592641076790471, 30.112406260775288 ], [ -95.592667076718058, 30.113731261795817 ], [ -95.592682076856633, 30.113914261610397 ], [ -95.592669076310273, 30.114115261858458 ], [ -95.592598076601732, 30.114579261618871 ], [ -95.592311076057655, 30.116113261977031 ], [ -95.592298076029934, 30.116214261561147 ], [ -95.592275076626649, 30.116397262262304 ], [ -95.592270076122091, 30.116434261987536 ], [ -95.592228076784949, 30.116787262086714 ], [ -95.592191075988907, 30.117359262028469 ], [ -95.592247076185117, 30.118848262577544 ], [ -95.592271076536235, 30.12002626287709 ], [ -95.592997076839467, 30.120460262836804 ], [ -95.59376807696907, 30.120891263072249 ], [ -95.59647907765401, 30.122405263187662 ], [ -95.597477077680708, 30.122967262782165 ], [ -95.600265078506666, 30.124558262933309 ], [ -95.600909078598818, 30.124896263097796 ], [ -95.601167079074074, 30.125037263190794 ], [ -95.602425079350041, 30.125724263816071 ], [ -95.604534079845351, 30.126915263973519 ], [ -95.60468608044404, 30.127000263920696 ], [ -95.605931080466931, 30.127704264138959 ], [ -95.607872080766001, 30.128792264100511 ], [ -95.608035080592302, 30.128885263751386 ], [ -95.609270081551102, 30.129591264348235 ], [ -95.609565081642259, 30.129759264213387 ], [ -95.611407082047876, 30.130815264538182 ], [ -95.611925082285339, 30.131113264405283 ], [ -95.612871082169377, 30.131659264728359 ], [ -95.614225082908291, 30.132414264709329 ], [ -95.614250082259076, 30.132428264463304 ], [ -95.614293082302282, 30.132452264818671 ], [ -95.614348083176978, 30.132483264653761 ], [ -95.615055082781723, 30.132901264892251 ], [ -95.615901083418777, 30.133370264846125 ], [ -95.618185083419561, 30.134660264479177 ], [ -95.618534083470735, 30.13486126525088 ], [ -95.618728084366765, 30.134972264595749 ], [ -95.618750084328468, 30.134984264855426 ], [ -95.619038083750752, 30.135150264545839 ], [ -95.619211084462037, 30.135249264610191 ], [ -95.619500084181453, 30.135415264932732 ], [ -95.61963608432238, 30.135498264686515 ], [ -95.619683084165871, 30.13547126452373 ], [ -95.619765084010382, 30.135477264551412 ], [ -95.619892084541974, 30.135526264747508 ], [ -95.620031083955283, 30.135603264766527 ], [ -95.62021208472359, 30.135660264788211 ], [ -95.620290084586543, 30.135685265271135 ], [ -95.621106084375043, 30.135899265302992 ], [ -95.621302084882487, 30.135943264749095 ], [ -95.621517084705047, 30.135976264991132 ], [ -95.621758085218815, 30.13599326507364 ], [ -95.621916084681729, 30.135993264802256 ], [ -95.622308085138044, 30.135948265063785 ], [ -95.622637084562186, 30.135943264754207 ], [ -95.622656084630975, 30.135934264724639 ], [ -95.622744084625694, 30.135893264614698 ], [ -95.622826085244611, 30.135844264839871 ], [ -95.622883085240389, 30.135833264963551 ], [ -95.623073084918815, 30.135860265217499 ], [ -95.623117085261967, 30.135860265178479 ], [ -95.623161085656022, 30.135844264823636 ], [ -95.623212085294966, 30.135799265263184 ], [ -95.6232370847098, 30.135744264961577 ], [ -95.623225085184913, 30.135651265034401 ], [ -95.623193084795929, 30.135574265093013 ], [ -95.62317408511953, 30.13547526472923 ], [ -95.623206084684696, 30.135426264852843 ], [ -95.623414084753264, 30.135299264715105 ], [ -95.623566085669182, 30.135189264974631 ], [ -95.623717085146396, 30.135013264954061 ], [ -95.623800085187327, 30.134881264800537 ], [ -95.623901085418026, 30.134639264715009 ], [ -95.623913085617303, 30.134551264135546 ], [ -95.623894084807418, 30.134326264880933 ], [ -95.623786085160717, 30.133831264568052 ], [ -95.623780085688907, 30.133760264604636 ], [ -95.623919085497036, 30.133414264488408 ], [ -95.624007084997203, 30.133221264630226 ], [ -95.624077085281911, 30.133133263976266 ], [ -95.624184085615312, 30.133062264406767 ], [ -95.624368085651838, 30.133006264363797 ], [ -95.624469085792754, 30.132968264401185 ], [ -95.62455108532744, 30.132924264290409 ], [ -95.624602085934129, 30.132874264410908 ], [ -95.62483508537612, 30.132567264309277 ], [ -95.625006085074119, 30.132253264314816 ], [ -95.625291085707573, 30.131956263719808 ], [ -95.625557085858162, 30.131285264234524 ], [ -95.625532085550091, 30.131082263501931 ], [ -95.625488085406275, 30.130939264037792 ], [ -95.625330085134209, 30.130857264023518 ], [ -95.625210085620367, 30.130796263477048 ], [ -95.625138085029192, 30.130753263483825 ], [ -95.625005085473617, 30.13067526387767 ], [ -95.62497708536209, 30.130643263689166 ], [ -95.624739085079511, 30.130373264019138 ], [ -95.624720085125432, 30.130214264010888 ], [ -95.624802085797896, 30.1301202637631 ], [ -95.625004085031236, 30.130038263364774 ], [ -95.625160085941232, 30.129985263604055 ], [ -95.625185085731431, 30.129977263917517 ], [ -95.62531208553942, 30.129889263179599 ], [ -95.625432085890452, 30.129729263464071 ], [ -95.625498085258599, 30.129591263619201 ], [ -95.625520085755483, 30.129548263874906 ], [ -95.625685085548596, 30.129328263284641 ], [ -95.625796085157887, 30.129166263132504 ], [ -95.625869085233532, 30.129059263437266 ], [ -95.626008085346356, 30.12893326300475 ], [ -95.626001085240162, 30.128839263116141 ], [ -95.625862085254383, 30.128707263649769 ], [ -95.625445085659024, 30.128635263748418 ], [ -95.625304085289287, 30.128631263134142 ], [ -95.625133085167178, 30.128627263224882 ], [ -95.625010085689397, 30.128625263551783 ], [ -95.624744085653802, 30.128576263515598 ], [ -95.624643085265532, 30.128482263735421 ], [ -95.624567085281427, 30.128444262987735 ], [ -95.624472084703768, 30.128411263500066 ], [ -95.624409084926398, 30.128417263386602 ], [ -95.624327084673411, 30.128444263071337 ], [ -95.624245085533872, 30.128487263079922 ], [ -95.624194084691851, 30.128516263585741 ], [ -95.624093085616252, 30.128532263190735 ], [ -95.624042085430432, 30.128510263627089 ], [ -95.624004084854903, 30.128466263490392 ], [ -95.623986084772227, 30.12842026363565 ], [ -95.623935085347796, 30.128120262858243 ], [ -95.623903084680933, 30.128037263011141 ], [ -95.623865085289921, 30.127977263403697 ], [ -95.623802085450961, 30.127906262950308 ], [ -95.623764085103417, 30.12784026349129 ], [ -95.623713084947312, 30.127680263122549 ], [ -95.623466085234767, 30.127444262791069 ], [ -95.623422084375562, 30.127389262916935 ], [ -95.623403084950311, 30.127329262711292 ], [ -95.623409084805004, 30.127257263273062 ], [ -95.623460085221026, 30.127180262884004 ], [ -95.623940084505634, 30.126746263165366 ], [ -95.624079085347233, 30.12668026260388 ], [ -95.624370085314098, 30.126597262518494 ], [ -95.624458085087781, 30.126586263034362 ], [ -95.624591085184107, 30.126580262727732 ], [ -95.624673085386263, 30.126591262503482 ], [ -95.62475608518038, 30.126586262590862 ], [ -95.624831085299249, 30.126564262819006 ], [ -95.624892085443037, 30.126565262881883 ], [ -95.625015085572059, 30.126569262674877 ], [ -95.625315085087408, 30.126510262651898 ], [ -95.625548085665613, 30.126464262866484 ], [ -95.625894085132828, 30.126346262478016 ], [ -95.625965085569561, 30.126322262893723 ], [ -95.626106085653703, 30.126318263167075 ], [ -95.626224085313638, 30.126316262982456 ], [ -95.626401085747176, 30.126399263175081 ], [ -95.62655308578141, 30.126564263185529 ], [ -95.626667085304049, 30.126718262453291 ], [ -95.626684085892066, 30.126778262575346 ], [ -95.626698085738099, 30.126828262689362 ], [ -95.626742086069882, 30.127075262880549 ], [ -95.626774085637734, 30.127190262692181 ], [ -95.626818085992895, 30.127273263145966 ], [ -95.627027085787006, 30.127424262944292 ], [ -95.627229086303984, 30.127570263042347 ], [ -95.627438085507393, 30.127702262810338 ], [ -95.627703085517311, 30.127823263330697 ], [ -95.627823085697131, 30.12785126296334 ], [ -95.628038086552181, 30.127856263312644 ], [ -95.628418086564608, 30.127785263333724 ], [ -95.62859808591287, 30.127713262660762 ], [ -95.628672086192978, 30.127792262780517 ], [ -95.628745085893428, 30.127775262861448 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1417, "Tract": "48201232701", "Area_SqMi": 1.8022627548462409, "total_2009": 347, "total_2010": 399, "total_2011": 592, "total_2012": 523, "total_2013": 540, "total_2014": 342, "total_2015": 327, "total_2016": 189, "total_2017": 268, "total_2018": 297, "total_2019": 358, "total_2020": 396, "age1": 121, "age2": 226, "age3": 97, "earn1": 133, "earn2": 144, "earn3": 167, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 1, "naics_s06": 42, "naics_s07": 66, "naics_s08": 51, "naics_s09": 0, "naics_s10": 0, "naics_s11": 29, "naics_s12": 12, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 117, "naics_s17": 0, "naics_s18": 99, "naics_s19": 17, "naics_s20": 0, "race1": 304, "race2": 108, "race3": 4, "race4": 23, "race5": 0, "race6": 5, "ethnicity1": 288, "ethnicity2": 156, "edu1": 79, "edu2": 88, "edu3": 97, "edu4": 59, "Shape_Length": 32780.703668240036, "Shape_Area": 50244001.00158029, "total_2021": 625, "total_2022": 444 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.245285973429532, 29.794953208005538 ], [ -95.245250973288734, 29.794553207887986 ], [ -95.245218973177899, 29.794482208727761 ], [ -95.245168972782466, 29.794421208090569 ], [ -95.245035972838977, 29.794317208073466 ], [ -95.24487897319348, 29.794218208049202 ], [ -95.244222972727115, 29.793932208337345 ], [ -95.244115972324252, 29.793861207878265 ], [ -95.243907972467994, 29.793817208238625 ], [ -95.243591972824575, 29.793790208664408 ], [ -95.243276972819956, 29.793735207872373 ], [ -95.242765971926318, 29.793543208602753 ], [ -95.24225597245885, 29.793208207915747 ], [ -95.241517971783125, 29.792675208063233 ], [ -95.24053997128054, 29.792004207829567 ], [ -95.240236971413623, 29.79163020785272 ], [ -95.239896971237997, 29.791125207891891 ], [ -95.239581970813418, 29.790839207730603 ], [ -95.239574971224613, 29.790745207371572 ], [ -95.239675971787648, 29.790492207687681 ], [ -95.239668971656485, 29.790272207960552 ], [ -95.239567971577983, 29.79004720772997 ], [ -95.239491970759701, 29.789536207896482 ], [ -95.239486970837419, 29.789355207191228 ], [ -95.239481970841368, 29.789152206994071 ], [ -95.239479970871102, 29.789096207515147 ], [ -95.239466971332348, 29.789024207039493 ], [ -95.239296970637355, 29.788871207203275 ], [ -95.239264971073979, 29.788816207455469 ], [ -95.239239971246278, 29.788733207645876 ], [ -95.239239971194763, 29.788667207386979 ], [ -95.239106971040911, 29.788271207414969 ], [ -95.239024971109274, 29.7881782076579 ], [ -95.238980970492577, 29.788145207254903 ], [ -95.238905971292198, 29.788145206848974 ], [ -95.238778970466427, 29.788183207359573 ], [ -95.238715970573821, 29.788222207654023 ], [ -95.238602970681171, 29.788244207132028 ], [ -95.238507970881599, 29.788167207109147 ], [ -95.238432971152548, 29.788090206846295 ], [ -95.238034970332208, 29.78760120732623 ], [ -95.237914970310854, 29.787260207094551 ], [ -95.237794970361207, 29.786974206815231 ], [ -95.23776997094545, 29.786765207108903 ], [ -95.237775970772745, 29.786710206606177 ], [ -95.237857970203123, 29.786606207341194 ], [ -95.237977970840177, 29.786523207031035 ], [ -95.238053970991004, 29.786490206586809 ], [ -95.238103970794597, 29.786430207084557 ], [ -95.238135971105223, 29.786358206575759 ], [ -95.238172970426106, 29.786226207225081 ], [ -95.238172971084666, 29.786050206676009 ], [ -95.23815397072363, 29.785995206746104 ], [ -95.238084971189906, 29.785902206482778 ], [ -95.238002971048843, 29.785693206400275 ], [ -95.237995970833154, 29.785479206362954 ], [ -95.23793997017961, 29.78539120709241 ], [ -95.23785797087001, 29.785336207104301 ], [ -95.237825970559257, 29.785325206814051 ], [ -95.237535970792266, 29.785209206958882 ], [ -95.237289970600926, 29.785138206970178 ], [ -95.237018970636683, 29.785028206977721 ], [ -95.23681697031968, 29.785012206732276 ], [ -95.236476970083913, 29.785023206823883 ], [ -95.236356970251222, 29.785006206435455 ], [ -95.23629396999128, 29.784946206369927 ], [ -95.236249970431942, 29.784874206871219 ], [ -95.236255969833906, 29.784792206832325 ], [ -95.23635097056858, 29.784654206216885 ], [ -95.236482970436754, 29.784566206564023 ], [ -95.236514970325615, 29.784506206774402 ], [ -95.236507970511227, 29.7843462064988 ], [ -95.236476970439256, 29.784297206214283 ], [ -95.236400969924503, 29.784237206707896 ], [ -95.236362969999149, 29.784193206630142 ], [ -95.236230970410546, 29.784132206764522 ], [ -95.236060970197869, 29.784000206120357 ], [ -95.235877970513187, 29.783885206158768 ], [ -95.235763969626646, 29.78385220644158 ], [ -95.235606970156326, 29.783863206689478 ], [ -95.235454969597413, 29.783940206764285 ], [ -95.235391970237004, 29.78399520666213 ], [ -95.235265970305122, 29.784050206140609 ], [ -95.235164970153974, 29.784039206858004 ], [ -95.235108969520468, 29.784006206479834 ], [ -95.234893969485526, 29.783819206469914 ], [ -95.234843969279424, 29.783759206177393 ], [ -95.234843969572069, 29.783698206675371 ], [ -95.234868970212517, 29.783643206516146 ], [ -95.234944970110902, 29.783594206687493 ], [ -95.235070969817528, 29.78348420639594 ], [ -95.235120969583377, 29.783429206158949 ], [ -95.235170969588125, 29.783335205941963 ], [ -95.23518396933477, 29.783247206450568 ], [ -95.235214969993038, 29.783132206640087 ], [ -95.235221969427243, 29.783049206509471 ], [ -95.235246969477814, 29.782978206019969 ], [ -95.235258970333945, 29.782868205991857 ], [ -95.235277970062938, 29.782796206465267 ], [ -95.235309969525545, 29.782725205789557 ], [ -95.235372969354401, 29.782637206174062 ], [ -95.235498969751603, 29.782543205759627 ], [ -95.235586969477566, 29.782428206397299 ], [ -95.235592969818214, 29.782290205940789 ], [ -95.235573969810758, 29.78223020641946 ], [ -95.235472970342698, 29.782164206205714 ], [ -95.235372969380165, 29.782137205955522 ], [ -95.235208969785688, 29.7820712060456 ], [ -95.235107970086617, 29.781994206211838 ], [ -95.2349879697407, 29.781878206023908 ], [ -95.234735969648369, 29.781461205857532 ], [ -95.234381969000808, 29.781125205810582 ], [ -95.233991969643242, 29.780845205531559 ], [ -95.233833969127019, 29.780752205817919 ], [ -95.233782968885293, 29.780697205825469 ], [ -95.233745969421662, 29.780581206107886 ], [ -95.233782969054815, 29.780477205632117 ], [ -95.233593969728602, 29.780229205676427 ], [ -95.233536969036237, 29.780119205455136 ], [ -95.233524968895551, 29.780075205761552 ], [ -95.233524969711112, 29.780026205708786 ], [ -95.233618969410259, 29.779844205758032 ], [ -95.23363196905035, 29.779756205398211 ], [ -95.233612968890469, 29.779729205319228 ], [ -95.23348696952101, 29.779663205872815 ], [ -95.233454969152575, 29.779674205838095 ], [ -95.233341968681287, 29.779646205832528 ], [ -95.233183968930774, 29.779564205514184 ], [ -95.233082969040439, 29.779487205786918 ], [ -95.233032969066514, 29.779421205350157 ], [ -95.232981969569295, 29.779306205589879 ], [ -95.232906969438091, 29.779168205716733 ], [ -95.232855968916951, 29.77910820527412 ], [ -95.232760969010457, 29.778921205396838 ], [ -95.232735969086008, 29.778767205131523 ], [ -95.23265396891118, 29.778591205226022 ], [ -95.232603969299348, 29.77851420525942 ], [ -95.232514968494215, 29.778465205451127 ], [ -95.232269969128367, 29.778228205354257 ], [ -95.232231968334887, 29.778118205112722 ], [ -95.23223196877052, 29.777992205071463 ], [ -95.232041968963941, 29.777569204875967 ], [ -95.231934968938404, 29.777261205306587 ], [ -95.231858968257427, 29.777134204787927 ], [ -95.231587968260428, 29.777052205264052 ], [ -95.231480968819127, 29.777035205573178 ], [ -95.231379968685815, 29.77698620512307 ], [ -95.231247968638684, 29.776876205132144 ], [ -95.231133968393621, 29.776651204910632 ], [ -95.231032968732805, 29.776574205262008 ], [ -95.230900968693092, 29.776552205143002 ], [ -95.230698968609943, 29.776541205113261 ], [ -95.230471968337994, 29.776546205071504 ], [ -95.230301968409378, 29.776486205280865 ], [ -95.230118968073526, 29.776437205411575 ], [ -95.229967967915314, 29.776349205419141 ], [ -95.22974096818686, 29.7761182049342 ], [ -95.229318968069435, 29.77554120487854 ], [ -95.22909196775953, 29.775315204977499 ], [ -95.228886967884733, 29.775092205061704 ], [ -95.228101967415753, 29.775499205385668 ], [ -95.227959968017629, 29.775549205254247 ], [ -95.227796967902449, 29.775660204883039 ], [ -95.226846967839833, 29.776296205011203 ], [ -95.226700967387586, 29.77639520489284 ], [ -95.226169967355517, 29.776555205652716 ], [ -95.225684966733809, 29.776545204877312 ], [ -95.225279967007481, 29.776426205456087 ], [ -95.224472966937029, 29.776099205502902 ], [ -95.223927966254507, 29.775880205088601 ], [ -95.223685966572461, 29.775796205353707 ], [ -95.223435966554192, 29.775749205189246 ], [ -95.223192966873114, 29.775721205046803 ], [ -95.222643966668727, 29.775740204885128 ], [ -95.221971966367761, 29.775749204846058 ], [ -95.221179965490165, 29.775762205466375 ], [ -95.22071596602251, 29.77577020537532 ], [ -95.220466965284444, 29.775774205037617 ], [ -95.219934966041833, 29.775783205577987 ], [ -95.21828096464634, 29.775842204972463 ], [ -95.218497965603277, 29.77653120518336 ], [ -95.218524964827296, 29.777548205983798 ], [ -95.218528964958978, 29.777760205801705 ], [ -95.218536965140629, 29.778041206142898 ], [ -95.21853996505746, 29.778172205611444 ], [ -95.218550965350346, 29.778650206200187 ], [ -95.218560965382025, 29.779076205618047 ], [ -95.218581965341443, 29.779976206412329 ], [ -95.218597965641123, 29.780652206652292 ], [ -95.218602965132732, 29.780932206743575 ], [ -95.218661965355437, 29.784149206959398 ], [ -95.218695965618508, 29.78653020737077 ], [ -95.218697965966072, 29.786618207230749 ], [ -95.218697966154593, 29.786678207681472 ], [ -95.21869596610955, 29.787139208081921 ], [ -95.218693966118309, 29.787971207625461 ], [ -95.218657965462185, 29.788800207632821 ], [ -95.218698965788036, 29.792103208665335 ], [ -95.218721965975519, 29.792680208563038 ], [ -95.218734965975131, 29.793099209174809 ], [ -95.218737966527314, 29.794058209458914 ], [ -95.218762965872259, 29.795386209743743 ], [ -95.218829966601362, 29.797987209656672 ], [ -95.218850966830331, 29.799654210330235 ], [ -95.218887966348746, 29.800636210633574 ], [ -95.218917966313768, 29.802616210664013 ], [ -95.220301966833347, 29.802133211166073 ], [ -95.221131967077753, 29.801843210591887 ], [ -95.221559967406719, 29.8016942107954 ], [ -95.222338966963378, 29.801422210216597 ], [ -95.224158967512992, 29.800787210708329 ], [ -95.224421967980092, 29.800692210129984 ], [ -95.227243968926274, 29.799727210413035 ], [ -95.22884896848457, 29.799170209883236 ], [ -95.231781969986201, 29.798157209429863 ], [ -95.232815969678029, 29.797790209757167 ], [ -95.234818969880237, 29.797056209020237 ], [ -95.23500297004793, 29.796989209134292 ], [ -95.235804971086878, 29.796695208990872 ], [ -95.237405971319532, 29.79609120858396 ], [ -95.238680970827872, 29.795632208613082 ], [ -95.240262972112205, 29.795109208706119 ], [ -95.241383972258376, 29.794997208475511 ], [ -95.244169972764567, 29.794970208592289 ], [ -95.245285973429532, 29.794953208005538 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1418, "Tract": "48201233103", "Area_SqMi": 0.62989997912887463, "total_2009": 508, "total_2010": 319, "total_2011": 401, "total_2012": 448, "total_2013": 502, "total_2014": 541, "total_2015": 528, "total_2016": 487, "total_2017": 440, "total_2018": 714, "total_2019": 757, "total_2020": 1650, "age1": 219, "age2": 671, "age3": 375, "earn1": 293, "earn2": 612, "earn3": 360, "naics_s01": 0, "naics_s02": 0, "naics_s03": 16, "naics_s04": 143, "naics_s05": 52, "naics_s06": 11, "naics_s07": 44, "naics_s08": 3, "naics_s09": 35, "naics_s10": 19, "naics_s11": 42, "naics_s12": 5, "naics_s13": 10, "naics_s14": 831, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 45, "naics_s19": 9, "naics_s20": 0, "race1": 1008, "race2": 128, "race3": 16, "race4": 84, "race5": 5, "race6": 24, "ethnicity1": 812, "ethnicity2": 453, "edu1": 261, "edu2": 271, "edu3": 316, "edu4": 198, "Shape_Length": 17292.022359001417, "Shape_Area": 17560533.333524209, "total_2021": 1084, "total_2022": 1265 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.183089955981899, 29.782718208345958 ], [ -95.183070956523764, 29.781798208013591 ], [ -95.183046955819066, 29.780856207737916 ], [ -95.183029956637341, 29.78023820773647 ], [ -95.183012956308659, 29.779598207700442 ], [ -95.182981955786687, 29.778647206924518 ], [ -95.18296295645888, 29.77771820726436 ], [ -95.182951956297501, 29.777317207125741 ], [ -95.182940956296406, 29.776791207129019 ], [ -95.182917956585811, 29.775955206482713 ], [ -95.182917955795617, 29.775847206418103 ], [ -95.182885956408612, 29.774909206692609 ], [ -95.182853955678723, 29.773994205873212 ], [ -95.182838956296294, 29.773096205939421 ], [ -95.182828955805419, 29.772240205894327 ], [ -95.182815956329094, 29.7717642060916 ], [ -95.182807955352345, 29.771608205713456 ], [ -95.1828059558474, 29.771575206175175 ], [ -95.182830956072578, 29.770895205690607 ], [ -95.182841956000331, 29.770636205702004 ], [ -95.18226795585376, 29.770618205579623 ], [ -95.180108954660142, 29.770676205281255 ], [ -95.178232955069561, 29.770724205519365 ], [ -95.178070954418729, 29.770728206109435 ], [ -95.177891954500922, 29.770732205501872 ], [ -95.177623954069659, 29.770739205955401 ], [ -95.173754953299522, 29.770837206235676 ], [ -95.172015953140487, 29.77086720553709 ], [ -95.171704953149131, 29.770873205966172 ], [ -95.169458952357715, 29.770912206280737 ], [ -95.169421952022915, 29.7709962058609 ], [ -95.1694199520947, 29.771083206346734 ], [ -95.169421952388646, 29.771133206128912 ], [ -95.169436952743368, 29.771541206250451 ], [ -95.169448952937458, 29.771870206301191 ], [ -95.169463952270377, 29.772147206419724 ], [ -95.169461952857532, 29.7722292067658 ], [ -95.169468952344062, 29.772315206085171 ], [ -95.169464952232531, 29.772490206285884 ], [ -95.169467952100703, 29.772638206030337 ], [ -95.169480952754711, 29.77308320605545 ], [ -95.169488953002244, 29.773351206362669 ], [ -95.169490952282189, 29.773445206995913 ], [ -95.169500952131358, 29.773536206410217 ], [ -95.169499952600432, 29.773715206480585 ], [ -95.169507952861167, 29.774105206503304 ], [ -95.169532952543335, 29.774842206576981 ], [ -95.169535952986521, 29.774992206642416 ], [ -95.169553952487348, 29.77516520683476 ], [ -95.169554952988037, 29.775250206812803 ], [ -95.169548952467437, 29.775331207162697 ], [ -95.169558952537258, 29.775598207369445 ], [ -95.169572952718383, 29.77597820690649 ], [ -95.169575952477359, 29.776327206999756 ], [ -95.169572952914606, 29.776482207136905 ], [ -95.169554952355142, 29.776579207159145 ], [ -95.169576952653571, 29.776657207403112 ], [ -95.169586952227277, 29.776740206878184 ], [ -95.169593952277111, 29.777066207301978 ], [ -95.169596952218427, 29.77719120755965 ], [ -95.169605953153976, 29.777271207651864 ], [ -95.169580952363091, 29.777337207061588 ], [ -95.169593953132278, 29.77745320696383 ], [ -95.169626952641636, 29.777659207373848 ], [ -95.169607952753054, 29.777758207204723 ], [ -95.169610952799658, 29.777815207097298 ], [ -95.169612952976266, 29.777961207411327 ], [ -95.169619953131487, 29.77804320757555 ], [ -95.169616952652177, 29.778157207368888 ], [ -95.169629952654404, 29.778354207491166 ], [ -95.169630952312787, 29.778442207976344 ], [ -95.169625952321269, 29.778523207969517 ], [ -95.169628952803123, 29.77855520727562 ], [ -95.169643952992175, 29.77878320767114 ], [ -95.169668952547781, 29.778875207946626 ], [ -95.16964695321883, 29.778955207521875 ], [ -95.169650952864714, 29.779036207453437 ], [ -95.169634952549117, 29.779125207900329 ], [ -95.169640952889637, 29.779303208043995 ], [ -95.169649953141558, 29.779403207619605 ], [ -95.169655952669629, 29.779611207514439 ], [ -95.169663952704298, 29.779679208084552 ], [ -95.169671952580487, 29.780050208037757 ], [ -95.16969095321123, 29.780786208414341 ], [ -95.169717953314503, 29.781488208279708 ], [ -95.169715952895857, 29.781519207954741 ], [ -95.169706952548026, 29.781626208058437 ], [ -95.169728952950706, 29.781677208067958 ], [ -95.169722953268618, 29.781751208691865 ], [ -95.169725953073396, 29.781840208681118 ], [ -95.169721953084064, 29.782025208638753 ], [ -95.169729952720701, 29.782279208059173 ], [ -95.169951953308626, 29.78227520845644 ], [ -95.170030952769281, 29.782284208434067 ], [ -95.170131953052902, 29.782261208625005 ], [ -95.170225952727037, 29.782262208541617 ], [ -95.170324953042666, 29.782255207940565 ], [ -95.17052895308116, 29.782253207960721 ], [ -95.170633953432898, 29.782256208184855 ], [ -95.170849953178603, 29.782251208752697 ], [ -95.171236953723394, 29.782217208411371 ], [ -95.171312953190267, 29.782237208104895 ], [ -95.171413953911909, 29.782240208100564 ], [ -95.171897953336909, 29.782223208032235 ], [ -95.172115954066228, 29.78222620846638 ], [ -95.172192953408981, 29.782231207905834 ], [ -95.172365953802128, 29.78221820848589 ], [ -95.172446954071702, 29.782222208102819 ], [ -95.172527954177667, 29.782234208379926 ], [ -95.172621954138378, 29.782215207999851 ], [ -95.172971953886346, 29.782202208204424 ], [ -95.173345953729211, 29.782199207827738 ], [ -95.173439953759967, 29.782202208613629 ], [ -95.17399495443847, 29.782180207839687 ], [ -95.174470954593019, 29.78217120826141 ], [ -95.174562954555938, 29.782177208644139 ], [ -95.174670953987558, 29.782163208446544 ], [ -95.174712954378123, 29.782164207756647 ], [ -95.17477495460848, 29.782166208486309 ], [ -95.174876954420895, 29.78217520851593 ], [ -95.17498795426819, 29.782159208442877 ], [ -95.175089954221576, 29.782151208501407 ], [ -95.175288954390226, 29.782145208538704 ], [ -95.17538795420792, 29.782150208418741 ], [ -95.175844954179055, 29.782138208186431 ], [ -95.176037955043967, 29.78212920774244 ], [ -95.177394954405358, 29.782107208154077 ], [ -95.177487955324295, 29.782103207793174 ], [ -95.177580955454317, 29.78211620804942 ], [ -95.177676954912712, 29.782100207622189 ], [ -95.177762955122688, 29.78211020790916 ], [ -95.178134954589737, 29.78209820845046 ], [ -95.178453955344182, 29.78208120776188 ], [ -95.178602955403761, 29.782079207831487 ], [ -95.178922955682509, 29.782076208448981 ], [ -95.179219955450378, 29.782075208349667 ], [ -95.17931695501467, 29.782070207681578 ], [ -95.179418955227149, 29.782073207570889 ], [ -95.180286955511974, 29.782053208406161 ], [ -95.181153955535692, 29.782039207922448 ], [ -95.181298955870972, 29.78203120808498 ], [ -95.18143295579948, 29.782035207589725 ], [ -95.182152956324458, 29.782020207773286 ], [ -95.182395956539693, 29.782018207575558 ], [ -95.182410956073639, 29.782739208010184 ], [ -95.182508956337216, 29.782736207744822 ], [ -95.183089955981899, 29.782718208345958 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1419, "Tract": "48201233702", "Area_SqMi": 0.95060248108609169, "total_2009": 146, "total_2010": 422, "total_2011": 356, "total_2012": 236, "total_2013": 257, "total_2014": 265, "total_2015": 292, "total_2016": 479, "total_2017": 482, "total_2018": 370, "total_2019": 514, "total_2020": 238, "age1": 50, "age2": 225, "age3": 76, "earn1": 16, "earn2": 48, "earn3": 287, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 2, "naics_s06": 7, "naics_s07": 9, "naics_s08": 227, "naics_s09": 0, "naics_s10": 32, "naics_s11": 5, "naics_s12": 14, "naics_s13": 0, "naics_s14": 19, "naics_s15": 0, "naics_s16": 6, "naics_s17": 2, "naics_s18": 2, "naics_s19": 11, "naics_s20": 0, "race1": 283, "race2": 43, "race3": 5, "race4": 18, "race5": 0, "race6": 2, "ethnicity1": 241, "ethnicity2": 110, "edu1": 44, "edu2": 81, "edu3": 123, "edu4": 53, "Shape_Length": 26934.47096448611, "Shape_Area": 26501170.200273655, "total_2021": 360, "total_2022": 351 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.247196972252183, 29.759434201329608 ], [ -95.247139971645751, 29.758009200926665 ], [ -95.24701597186926, 29.757352200371269 ], [ -95.246820971580306, 29.756803200794902 ], [ -95.246590971625125, 29.756353200414853 ], [ -95.246362970938776, 29.755909200703535 ], [ -95.245792970888502, 29.755138199886595 ], [ -95.242964970807179, 29.752338200107349 ], [ -95.241386969604775, 29.750792199622467 ], [ -95.240846969474475, 29.749915198967692 ], [ -95.240593969777805, 29.749475199117136 ], [ -95.240398969178116, 29.748639199092992 ], [ -95.240363970005944, 29.748325199039886 ], [ -95.240314969700137, 29.747870198589606 ], [ -95.240302969144025, 29.746724198371162 ], [ -95.240301969856759, 29.746468198470826 ], [ -95.240296969758575, 29.745605198102279 ], [ -95.240294969449153, 29.744859197868205 ], [ -95.240300968991633, 29.744128198317089 ], [ -95.240297969042018, 29.74339719791428 ], [ -95.240289969392492, 29.74320919777816 ], [ -95.240267968823161, 29.742647197808221 ], [ -95.240266969656247, 29.741964197596786 ], [ -95.240275968860445, 29.741230197112433 ], [ -95.240267968770809, 29.740480197420524 ], [ -95.240266968697426, 29.73976019767824 ], [ -95.24021996905644, 29.739032196995673 ], [ -95.240196968887275, 29.738300197312284 ], [ -95.240189969009151, 29.737596197060252 ], [ -95.240181969319323, 29.736834196957677 ], [ -95.240174969507507, 29.736135196497305 ], [ -95.240167968555625, 29.735382196093763 ], [ -95.240159969030486, 29.734633196275325 ], [ -95.240152968453813, 29.733934196266784 ], [ -95.24014496863694, 29.73318119625193 ], [ -95.240137969102591, 29.732444195716401 ], [ -95.238291968162557, 29.732466195932144 ], [ -95.237809967930886, 29.732470195503584 ], [ -95.236361968010655, 29.732499196016139 ], [ -95.235229967611673, 29.732488196191749 ], [ -95.234070967486474, 29.732499195809044 ], [ -95.23276096666558, 29.732483196060418 ], [ -95.232772967399583, 29.733206196412297 ], [ -95.232819967271027, 29.7339341961206 ], [ -95.232833967062021, 29.734687196055525 ], [ -95.232847967062057, 29.735404196814951 ], [ -95.232901966678753, 29.736138196355459 ], [ -95.23290496683633, 29.736248196910392 ], [ -95.232921967380904, 29.736864196720568 ], [ -95.232920966762279, 29.737600196903863 ], [ -95.23292496710252, 29.738319196997637 ], [ -95.232950967719049, 29.73905819758258 ], [ -95.232993967035526, 29.739811197617009 ], [ -95.233014967003257, 29.740523197264611 ], [ -95.233014967569289, 29.741247198110511 ], [ -95.23307496738056, 29.74198619808346 ], [ -95.233079967889793, 29.742678198427654 ], [ -95.233100967665251, 29.743402198010855 ], [ -95.233150967201581, 29.744150198780492 ], [ -95.233145967439384, 29.74482919841962 ], [ -95.233155967378252, 29.745519198459007 ], [ -95.233185967603234, 29.746190199113464 ], [ -95.233204967591689, 29.746597198980911 ], [ -95.233212967359307, 29.746767198920796 ], [ -95.233454968127575, 29.753128199981276 ], [ -95.233571968656378, 29.75903720173293 ], [ -95.240363970411238, 29.75884220129679 ], [ -95.241986970493215, 29.758796201306737 ], [ -95.243289970577933, 29.759607201434175 ], [ -95.247196972252183, 29.759434201329608 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1420, "Tract": "48201241101", "Area_SqMi": 0.79015979549051307, "total_2009": 337, "total_2010": 318, "total_2011": 1006, "total_2012": 215, "total_2013": 224, "total_2014": 232, "total_2015": 247, "total_2016": 159, "total_2017": 156, "total_2018": 315, "total_2019": 307, "total_2020": 322, "age1": 94, "age2": 221, "age3": 66, "earn1": 70, "earn2": 132, "earn3": 179, "naics_s01": 1, "naics_s02": 45, "naics_s03": 2, "naics_s04": 49, "naics_s05": 0, "naics_s06": 1, "naics_s07": 77, "naics_s08": 23, "naics_s09": 3, "naics_s10": 10, "naics_s11": 2, "naics_s12": 62, "naics_s13": 0, "naics_s14": 14, "naics_s15": 3, "naics_s16": 74, "naics_s17": 0, "naics_s18": 2, "naics_s19": 13, "naics_s20": 0, "race1": 229, "race2": 121, "race3": 0, "race4": 24, "race5": 0, "race6": 7, "ethnicity1": 276, "ethnicity2": 105, "edu1": 58, "edu2": 74, "edu3": 90, "edu4": 65, "Shape_Length": 24191.180458909828, "Shape_Area": 22028302.726269718, "total_2021": 364, "total_2022": 381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.405348025984779, 30.066257258183519 ], [ -95.405263026148489, 30.066141258743652 ], [ -95.405125026156398, 30.065939258522448 ], [ -95.405064026466036, 30.06587025850175 ], [ -95.404825026082463, 30.065548257939234 ], [ -95.40430802612363, 30.064834258509947 ], [ -95.403307025310383, 30.063469257592388 ], [ -95.401951024831703, 30.061618257600411 ], [ -95.401318025200482, 30.060801257123515 ], [ -95.401252024432722, 30.060715257560041 ], [ -95.401118024971566, 30.060542257122261 ], [ -95.400865025050209, 30.060249257440361 ], [ -95.400608024379338, 30.059976257542242 ], [ -95.400577025070803, 30.059960256953637 ], [ -95.400294024445756, 30.05970925703771 ], [ -95.400157025004475, 30.059598257597717 ], [ -95.39977302486399, 30.059329257222551 ], [ -95.399564024653301, 30.059191256814398 ], [ -95.399231024797757, 30.059002257518461 ], [ -95.397939023613432, 30.058357256882466 ], [ -95.397826023953797, 30.058301257310809 ], [ -95.397214023265064, 30.057987257202353 ], [ -95.395183023040047, 30.05697625696115 ], [ -95.39475602290662, 30.056762256977045 ], [ -95.393635023235888, 30.056203256313591 ], [ -95.393601022550811, 30.056186256481809 ], [ -95.392890022078873, 30.055844256565937 ], [ -95.392401022072235, 30.055593256160805 ], [ -95.392309022890331, 30.055549256470719 ], [ -95.392262022173895, 30.055516256680011 ], [ -95.392157022550293, 30.055462256671916 ], [ -95.392090021865144, 30.055441256683142 ], [ -95.391980022026758, 30.055384256625725 ], [ -95.391872022656557, 30.055322256665459 ], [ -95.39161402247737, 30.055172256545355 ], [ -95.391505021966353, 30.055229256418606 ], [ -95.391349022409514, 30.055312256524576 ], [ -95.391222022654304, 30.055382256443195 ], [ -95.389975021950491, 30.056082256760533 ], [ -95.388990021919383, 30.056634256491943 ], [ -95.38742102095695, 30.057500257145385 ], [ -95.387086020719352, 30.057685257012654 ], [ -95.38493802085722, 30.058882257819533 ], [ -95.383799020183886, 30.059507257313641 ], [ -95.381599020355338, 30.060729257813612 ], [ -95.381458020271836, 30.060808257694642 ], [ -95.381252019859502, 30.060922258413548 ], [ -95.380336019675241, 30.061432258369308 ], [ -95.377466018976619, 30.062994258606945 ], [ -95.376800018548408, 30.063356258743315 ], [ -95.376709018829345, 30.063586258518132 ], [ -95.37602801878559, 30.063954258862825 ], [ -95.375623018399992, 30.064195259023784 ], [ -95.375516018185436, 30.064289258837515 ], [ -95.37542101897948, 30.064415258980361 ], [ -95.37536401801043, 30.064547258759486 ], [ -95.375345018177981, 30.064663258927599 ], [ -95.375352018074111, 30.064709258804399 ], [ -95.375367018513018, 30.064800259310545 ], [ -95.375533018669699, 30.065147259379611 ], [ -95.376008018919251, 30.065806259371723 ], [ -95.37605901875672, 30.065879259134924 ], [ -95.376077019111236, 30.065905259334734 ], [ -95.377581019632686, 30.068039259773474 ], [ -95.377682019167381, 30.068210259250435 ], [ -95.377859019001178, 30.06843025943969 ], [ -95.378294019572166, 30.069051260208756 ], [ -95.378521019722186, 30.069351259493292 ], [ -95.378958020075899, 30.069926259600766 ], [ -95.379033019675134, 30.070063259712352 ], [ -95.379052020021959, 30.070206259768604 ], [ -95.379052019694981, 30.070242259766079 ], [ -95.379052019750105, 30.070315259828917 ], [ -95.379052019885577, 30.070375260141141 ], [ -95.379275019672818, 30.070300260360131 ], [ -95.379771019459, 30.070044259820747 ], [ -95.381725020177058, 30.068972259343216 ], [ -95.383570021248303, 30.067960259272731 ], [ -95.385411020796099, 30.066948259559457 ], [ -95.388325022287106, 30.065346259070282 ], [ -95.391710022678524, 30.063484258147206 ], [ -95.391943023201065, 30.063376258261361 ], [ -95.392225022612024, 30.06326025777193 ], [ -95.392513023174516, 30.063159257856622 ], [ -95.392758023130881, 30.063084258061924 ], [ -95.393056022675381, 30.063008258526565 ], [ -95.393248022854181, 30.062968257924201 ], [ -95.3933590228052, 30.062945257778903 ], [ -95.393665023493611, 30.062898258226966 ], [ -95.393973023137278, 30.062864258099872 ], [ -95.394283023537881, 30.06284525843024 ], [ -95.394594023582002, 30.0628412576187 ], [ -95.394915023665135, 30.062852257882444 ], [ -95.394980023297904, 30.06285925786274 ], [ -95.395304023392029, 30.062894257599051 ], [ -95.395610023954575, 30.06294225826985 ], [ -95.39591302384251, 30.063004257880156 ], [ -95.396211023781049, 30.063079257849207 ], [ -95.396505023841172, 30.063169258038037 ], [ -95.396745024136436, 30.063253258273093 ], [ -95.39676502421689, 30.063261257795979 ], [ -95.396824024132073, 30.063285258411987 ], [ -95.396980023741023, 30.063349258173758 ], [ -95.397073023692471, 30.063387258269731 ], [ -95.39734702454183, 30.063516258465828 ], [ -95.397612023952021, 30.063657258385707 ], [ -95.397869024338888, 30.063810257866532 ], [ -95.398156024103471, 30.064003258455539 ], [ -95.398440024903891, 30.064221257740279 ], [ -95.399452024395089, 30.06510525861356 ], [ -95.399738024988082, 30.065300258666614 ], [ -95.399879024554792, 30.065385258431622 ], [ -95.400035025327242, 30.065481258689626 ], [ -95.400298025201366, 30.065625258227264 ], [ -95.400615025117858, 30.065778258693229 ], [ -95.40094202532137, 30.065917258342232 ], [ -95.401276025089132, 30.066039258760952 ], [ -95.401568025599943, 30.066131258068637 ], [ -95.401845024850957, 30.066206258721198 ], [ -95.402217025233568, 30.066289258620628 ], [ -95.402522025523979, 30.066342258110492 ], [ -95.402881025319488, 30.066388258506311 ], [ -95.403243025765278, 30.066417258031638 ], [ -95.403553025736443, 30.066428257973733 ], [ -95.403864026074402, 30.066426258104126 ], [ -95.40422702568776, 30.066407258777044 ], [ -95.404587026493118, 30.066372258768979 ], [ -95.404894026388988, 30.066327258596726 ], [ -95.405184026643454, 30.066274258519346 ], [ -95.405348025984779, 30.066257258183519 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1421, "Tract": "48201330302", "Area_SqMi": 2.3346558783440954, "total_2009": 401, "total_2010": 344, "total_2011": 717, "total_2012": 465, "total_2013": 468, "total_2014": 510, "total_2015": 527, "total_2016": 554, "total_2017": 564, "total_2018": 914, "total_2019": 975, "total_2020": 1235, "age1": 572, "age2": 977, "age3": 278, "earn1": 290, "earn2": 712, "earn3": 825, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 238, "naics_s05": 24, "naics_s06": 660, "naics_s07": 207, "naics_s08": 576, "naics_s09": 0, "naics_s10": 10, "naics_s11": 8, "naics_s12": 10, "naics_s13": 3, "naics_s14": 7, "naics_s15": 0, "naics_s16": 59, "naics_s17": 0, "naics_s18": 18, "naics_s19": 7, "naics_s20": 0, "race1": 1169, "race2": 469, "race3": 22, "race4": 139, "race5": 3, "race6": 25, "ethnicity1": 1141, "ethnicity2": 686, "edu1": 305, "edu2": 316, "edu3": 379, "edu4": 255, "Shape_Length": 33335.253340640149, "Shape_Area": 65086210.084762946, "total_2021": 1351, "total_2022": 1827 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.49494102833215, 29.61354216303365 ], [ -95.495045028925531, 29.613395163137703 ], [ -95.494927028915271, 29.613338162697083 ], [ -95.494425029045175, 29.613123163065833 ], [ -95.494036028297785, 29.612956163058328 ], [ -95.493704028479371, 29.612814163009816 ], [ -95.493534027957509, 29.612741162663223 ], [ -95.493441028170125, 29.612726162916267 ], [ -95.49341002803898, 29.612722162238409 ], [ -95.493318028795017, 29.612665162937176 ], [ -95.49266302795786, 29.612374162889012 ], [ -95.488144027061281, 29.61027516261878 ], [ -95.48479802603417, 29.608709162509175 ], [ -95.484666026261579, 29.608659162406813 ], [ -95.484627026369495, 29.608638162421066 ], [ -95.484435025624833, 29.608550161745779 ], [ -95.48438202600434, 29.608525162367556 ], [ -95.478626024691692, 29.605838161685675 ], [ -95.478020024435608, 29.605553162048022 ], [ -95.477470024138668, 29.605294161530775 ], [ -95.47692602368754, 29.60503816189728 ], [ -95.476711024015131, 29.604973161726896 ], [ -95.476026023150894, 29.604738161242505 ], [ -95.475918023496234, 29.604681161265091 ], [ -95.474126023048001, 29.603738161485165 ], [ -95.473835022662357, 29.6036011617188 ], [ -95.47297202273289, 29.603195161200045 ], [ -95.472571022860109, 29.603002161241875 ], [ -95.472263022707097, 29.602855161167117 ], [ -95.471799022854213, 29.602632161581266 ], [ -95.469126022003323, 29.6013381610979 ], [ -95.468710021522028, 29.601163161551476 ], [ -95.465326020496903, 29.599738160585709 ], [ -95.465052020936852, 29.599604161000379 ], [ -95.46501702049396, 29.59968616096641 ], [ -95.464943020560128, 29.599849160642659 ], [ -95.464783020086088, 29.600154161429664 ], [ -95.464746020630969, 29.600266161460407 ], [ -95.46459202025531, 29.600671160705513 ], [ -95.464498020645891, 29.601214161272889 ], [ -95.464460020999553, 29.601647161490064 ], [ -95.464467020878033, 29.602313161080886 ], [ -95.464480021080064, 29.603127161954291 ], [ -95.464583020414324, 29.603964161815504 ], [ -95.464715021029406, 29.60479616231904 ], [ -95.464725020605457, 29.605799162290527 ], [ -95.464740021222966, 29.606227162615593 ], [ -95.464887020478599, 29.607271162150639 ], [ -95.464913020847874, 29.607613162186926 ], [ -95.46494502054675, 29.60944216335006 ], [ -95.46497302147408, 29.611255163675214 ], [ -95.464975021403802, 29.61137016361473 ], [ -95.464979021548203, 29.611658163298692 ], [ -95.464941020657463, 29.612241163404384 ], [ -95.464933021137412, 29.613688163833626 ], [ -95.464925021125808, 29.615073164236353 ], [ -95.464920020796754, 29.615245163765646 ], [ -95.464978021273026, 29.616376164382483 ], [ -95.465024021386697, 29.617437164524034 ], [ -95.465021021836009, 29.618064164348663 ], [ -95.465004021834716, 29.61827716498566 ], [ -95.46502802172283, 29.61903816455299 ], [ -95.465034021255306, 29.619106164642346 ], [ -95.46506102129743, 29.619799165221263 ], [ -95.465076021406801, 29.620170165374301 ], [ -95.465069021280698, 29.620594165378197 ], [ -95.465072021652816, 29.621683165009653 ], [ -95.465095021480749, 29.622497165212071 ], [ -95.465100021691384, 29.622659166104697 ], [ -95.465115021574945, 29.623159165617039 ], [ -95.465125021397085, 29.623525166130417 ], [ -95.465139021772032, 29.623998166268294 ], [ -95.465144021606434, 29.624151165603724 ], [ -95.465141022127341, 29.624455166265413 ], [ -95.465137022025928, 29.625013166056341 ], [ -95.465192021485592, 29.627285166255689 ], [ -95.465407021581754, 29.627286166735981 ], [ -95.46643402204208, 29.627290166391468 ], [ -95.468754022707955, 29.627300166208858 ], [ -95.468881022662544, 29.62730116689994 ], [ -95.470684023746387, 29.627309166091443 ], [ -95.471316023408349, 29.627412166405225 ], [ -95.473496023756866, 29.627908166403902 ], [ -95.475409024532013, 29.628344166426906 ], [ -95.475936024215429, 29.628404166799694 ], [ -95.478120025368909, 29.628427166638193 ], [ -95.479874025310636, 29.628446166323826 ], [ -95.480936025718833, 29.628457166480544 ], [ -95.481922026287322, 29.628422165844633 ], [ -95.482076026599216, 29.628417165982501 ], [ -95.482157026270272, 29.628126166437124 ], [ -95.482199025805443, 29.627998165981673 ], [ -95.482263026714477, 29.6278101665132 ], [ -95.482393026534595, 29.627493166228547 ], [ -95.482630026773435, 29.627074165561456 ], [ -95.48278302604092, 29.62687616558695 ], [ -95.482897026393644, 29.626728165745639 ], [ -95.483312026481002, 29.626282165578992 ], [ -95.483562026017566, 29.626096165723066 ], [ -95.484050027099329, 29.62574716541377 ], [ -95.484746026767922, 29.625392165393901 ], [ -95.486259027017837, 29.624692165317615 ], [ -95.486741027365611, 29.624469165129128 ], [ -95.487113027763471, 29.624295165618932 ], [ -95.487655026985223, 29.623969165598336 ], [ -95.487980027953242, 29.623725165554479 ], [ -95.488386027816603, 29.623384165419726 ], [ -95.488857028025535, 29.622848165100372 ], [ -95.489166027977802, 29.622280164784623 ], [ -95.48955602831866, 29.621403164347022 ], [ -95.490043027696771, 29.620428164082387 ], [ -95.490514027603595, 29.619551164262344 ], [ -95.490925028113665, 29.618982163992079 ], [ -95.491792027894078, 29.617565164048269 ], [ -95.492248028304417, 29.616953163856671 ], [ -95.492352027929542, 29.616815163779371 ], [ -95.49251902789193, 29.616604163288784 ], [ -95.492583028813442, 29.61652516382339 ], [ -95.492780028561967, 29.616264163316227 ], [ -95.493156028165544, 29.615768163246642 ], [ -95.493612028352103, 29.615336162930856 ], [ -95.494197028382047, 29.614589162721128 ], [ -95.494402029244327, 29.614310162676375 ], [ -95.494609029224549, 29.614039162722303 ], [ -95.49464102892199, 29.613991162939964 ], [ -95.494728029309456, 29.613860162769164 ], [ -95.49494102833215, 29.61354216303365 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1422, "Tract": "48201333201", "Area_SqMi": 0.44174374978355646, "total_2009": 594, "total_2010": 666, "total_2011": 595, "total_2012": 577, "total_2013": 624, "total_2014": 574, "total_2015": 612, "total_2016": 720, "total_2017": 674, "total_2018": 511, "total_2019": 543, "total_2020": 603, "age1": 222, "age2": 361, "age3": 167, "earn1": 236, "earn2": 311, "earn3": 203, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 24, "naics_s06": 6, "naics_s07": 79, "naics_s08": 2, "naics_s09": 0, "naics_s10": 32, "naics_s11": 14, "naics_s12": 119, "naics_s13": 11, "naics_s14": 146, "naics_s15": 0, "naics_s16": 48, "naics_s17": 0, "naics_s18": 264, "naics_s19": 4, "naics_s20": 0, "race1": 553, "race2": 125, "race3": 12, "race4": 45, "race5": 1, "race6": 14, "ethnicity1": 425, "ethnicity2": 325, "edu1": 122, "edu2": 146, "edu3": 155, "edu4": 105, "Shape_Length": 14485.891209442812, "Shape_Area": 12315059.691981705, "total_2021": 614, "total_2022": 750 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.277119975872722, 29.672411182187428 ], [ -95.277099975943244, 29.672125181815822 ], [ -95.277086975448981, 29.671519181988526 ], [ -95.277075975784072, 29.671009182294291 ], [ -95.277066975094428, 29.670605182046611 ], [ -95.277061975369179, 29.670351181813572 ], [ -95.277048975088746, 29.669735181473438 ], [ -95.277029975808333, 29.66886518179458 ], [ -95.277018975234483, 29.668353181304536 ], [ -95.277015975397774, 29.668209181344334 ], [ -95.276980975279088, 29.666554180737034 ], [ -95.276922975177669, 29.665725180956404 ], [ -95.276914974902951, 29.665563180764138 ], [ -95.276233974623352, 29.665575181199987 ], [ -95.275017974904785, 29.665593180935691 ], [ -95.27314897415684, 29.665634181369846 ], [ -95.272869974556897, 29.665639180715782 ], [ -95.272040973695638, 29.665635181047652 ], [ -95.271073973521524, 29.665467180975089 ], [ -95.271027974015198, 29.665459180716994 ], [ -95.270661974056054, 29.665386181274712 ], [ -95.270343973216299, 29.665344181309891 ], [ -95.269803973960492, 29.665320181100107 ], [ -95.269043973449413, 29.665344181156989 ], [ -95.26829497302964, 29.665363181014563 ], [ -95.267614973159354, 29.665372181125292 ], [ -95.267061973251771, 29.665380181405443 ], [ -95.26315897142301, 29.665458181289686 ], [ -95.263176971658595, 29.666288181467824 ], [ -95.263172971522735, 29.667100181950534 ], [ -95.263192971668559, 29.667929181421897 ], [ -95.263046971928631, 29.66856818173115 ], [ -95.262672971341559, 29.669041181656468 ], [ -95.262491972017543, 29.669139182352883 ], [ -95.262623971353165, 29.669340182003957 ], [ -95.263058971931756, 29.670001182194891 ], [ -95.263147971683736, 29.670136182280377 ], [ -95.263295971938774, 29.670361182309165 ], [ -95.263701972447009, 29.670929182688049 ], [ -95.264021972112744, 29.671359182316319 ], [ -95.264385972746709, 29.671770182673185 ], [ -95.264532972874989, 29.671953182435413 ], [ -95.264788972128514, 29.672250182949089 ], [ -95.265141973008639, 29.672659182396696 ], [ -95.266418972650015, 29.673948182624034 ], [ -95.267208973239406, 29.674742182617031 ], [ -95.267837972942928, 29.675394182812198 ], [ -95.268002973209065, 29.67556318342417 ], [ -95.268214973796049, 29.675403182696623 ], [ -95.268632973472464, 29.675085183119663 ], [ -95.269447973839902, 29.674462182662086 ], [ -95.269975974093171, 29.674056183185879 ], [ -95.270211974009413, 29.673858183127415 ], [ -95.270545973750615, 29.673611182850383 ], [ -95.270907973730999, 29.673352182931971 ], [ -95.271276973828577, 29.673112182323479 ], [ -95.271453973937383, 29.672996182114222 ], [ -95.272006974752287, 29.67273818286866 ], [ -95.272655974413496, 29.672553182670239 ], [ -95.273401974808664, 29.672491182084798 ], [ -95.275172974985253, 29.672456182670555 ], [ -95.275682975687943, 29.672438181821224 ], [ -95.276252975390562, 29.672431181957261 ], [ -95.277119975872722, 29.672411182187428 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1423, "Tract": "48201340301", "Area_SqMi": 1.3913248837745085, "total_2009": 262, "total_2010": 343, "total_2011": 358, "total_2012": 352, "total_2013": 349, "total_2014": 274, "total_2015": 333, "total_2016": 316, "total_2017": 320, "total_2018": 378, "total_2019": 385, "total_2020": 322, "age1": 107, "age2": 178, "age3": 133, "earn1": 125, "earn2": 167, "earn3": 126, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 18, "naics_s05": 2, "naics_s06": 5, "naics_s07": 70, "naics_s08": 2, "naics_s09": 2, "naics_s10": 4, "naics_s11": 7, "naics_s12": 62, "naics_s13": 15, "naics_s14": 17, "naics_s15": 0, "naics_s16": 43, "naics_s17": 120, "naics_s18": 28, "naics_s19": 21, "naics_s20": 0, "race1": 274, "race2": 33, "race3": 4, "race4": 97, "race5": 0, "race6": 10, "ethnicity1": 322, "ethnicity2": 96, "edu1": 63, "edu2": 48, "edu3": 72, "edu4": 128, "Shape_Length": 24999.997023519587, "Shape_Area": 38787756.483295888, "total_2021": 363, "total_2022": 418 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.13814293643874, 29.592123170488541 ], [ -95.13801393614807, 29.591987170611091 ], [ -95.137134935691336, 29.591102170470609 ], [ -95.136041935778593, 29.590147169556001 ], [ -95.135256936075749, 29.589470169570859 ], [ -95.13490693499584, 29.589044169398591 ], [ -95.134422935166768, 29.588236169345173 ], [ -95.134128935602604, 29.587564169581547 ], [ -95.133704935571274, 29.586939169233744 ], [ -95.132890934370309, 29.586086169054379 ], [ -95.131314934389806, 29.584851169425701 ], [ -95.1303369338751, 29.583818169040711 ], [ -95.128383933373001, 29.58173516894265 ], [ -95.128112933122296, 29.581438168640283 ], [ -95.12789193331065, 29.581204168664854 ], [ -95.127425933623627, 29.580711168283585 ], [ -95.126181932903123, 29.579511168445183 ], [ -95.125339932960614, 29.578942167772801 ], [ -95.124648932550969, 29.578586167618926 ], [ -95.122789932213948, 29.57780616808844 ], [ -95.122264931910436, 29.577593167750898 ], [ -95.122014931851524, 29.577493167613447 ], [ -95.121505931232633, 29.578438168377922 ], [ -95.120919931388983, 29.579561168377939 ], [ -95.119696931180712, 29.581793168957095 ], [ -95.119222931072485, 29.582694169217412 ], [ -95.118834931075199, 29.583494169052535 ], [ -95.118665930691748, 29.583874169603948 ], [ -95.118564930999753, 29.584118169498815 ], [ -95.118541931427316, 29.584175169144643 ], [ -95.118524930782314, 29.584224169203171 ], [ -95.118499931115409, 29.584297169256129 ], [ -95.11827093101806, 29.584953169528013 ], [ -95.118075931101927, 29.585762169830275 ], [ -95.117893930523579, 29.586588169763477 ], [ -95.117787931381287, 29.587397169801104 ], [ -95.117717931010318, 29.588152170010403 ], [ -95.117691931260453, 29.588984170504325 ], [ -95.117718930609087, 29.58981817043308 ], [ -95.117763931106836, 29.590616170264084 ], [ -95.117877931112574, 29.591410170878056 ], [ -95.117961931517186, 29.591822171014673 ], [ -95.118026930921815, 29.592188170676291 ], [ -95.118216930884145, 29.592961171449442 ], [ -95.118473931613465, 29.59380817120698 ], [ -95.118723931303634, 29.594469171290886 ], [ -95.119066931498537, 29.595273171522603 ], [ -95.119774931431039, 29.596663171943771 ], [ -95.120688932184336, 29.598411172492153 ], [ -95.121316932767343, 29.599613172629326 ], [ -95.12166793226568, 29.600336172512581 ], [ -95.122029932590067, 29.601065173015122 ], [ -95.122466932999856, 29.60178217278245 ], [ -95.123385932719572, 29.603660173000481 ], [ -95.124166933361849, 29.605003173504016 ], [ -95.124234933960125, 29.605126173443253 ], [ -95.125149933836056, 29.604627173202019 ], [ -95.125327933277887, 29.60453117321304 ], [ -95.126396933578533, 29.603950172748156 ], [ -95.127189934146614, 29.603467173062992 ], [ -95.12820493405421, 29.602850172994714 ], [ -95.130444934712344, 29.601821172313372 ], [ -95.131498934675633, 29.601252172862935 ], [ -95.132664935852517, 29.600631172314849 ], [ -95.133063935790815, 29.600249171799277 ], [ -95.133375936017728, 29.599950172361368 ], [ -95.134258935452877, 29.598905171441725 ], [ -95.135074936336551, 29.597628171167408 ], [ -95.135392936352872, 29.596780171418011 ], [ -95.135605936263346, 29.5959371713083 ], [ -95.135631935487368, 29.595835170882733 ], [ -95.135808935868852, 29.59523917069675 ], [ -95.135920935772319, 29.594861171260728 ], [ -95.135930935733541, 29.59484317106061 ], [ -95.136344935610879, 29.594067170401605 ], [ -95.136968936584623, 29.593220170825258 ], [ -95.137619935951221, 29.592544170241077 ], [ -95.13814293643874, 29.592123170488541 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1424, "Tract": "48201342001", "Area_SqMi": 1.9508646470926614, "total_2009": 317, "total_2010": 353, "total_2011": 175, "total_2012": 163, "total_2013": 145, "total_2014": 122, "total_2015": 140, "total_2016": 226, "total_2017": 261, "total_2018": 231, "total_2019": 190, "total_2020": 149, "age1": 32, "age2": 58, "age3": 34, "earn1": 24, "earn2": 60, "earn3": 40, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 2, "naics_s06": 7, "naics_s07": 34, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 8, "naics_s13": 0, "naics_s14": 13, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 23, "naics_s19": 22, "naics_s20": 0, "race1": 94, "race2": 17, "race3": 2, "race4": 11, "race5": 0, "race6": 0, "ethnicity1": 72, "ethnicity2": 52, "edu1": 21, "edu2": 26, "edu3": 21, "edu4": 24, "Shape_Length": 31974.128782568285, "Shape_Area": 54386767.422730058, "total_2021": 145, "total_2022": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.143575940471649, 29.649732182108355 ], [ -95.143485939839294, 29.647375181497853 ], [ -95.143418939929219, 29.645610181135268 ], [ -95.14341393975657, 29.644444180802584 ], [ -95.143384939611096, 29.642270180768168 ], [ -95.14337394041506, 29.641878180231338 ], [ -95.143232940069538, 29.64141417991765 ], [ -95.14293493945263, 29.640430180205904 ], [ -95.142920939695742, 29.639519179854158 ], [ -95.142870939426516, 29.638730179477342 ], [ -95.142841939449411, 29.637394179593564 ], [ -95.142791939429344, 29.63448917846954 ], [ -95.142776939951204, 29.633524178660849 ], [ -95.142741939216606, 29.631226178576206 ], [ -95.142658939226806, 29.631234178560298 ], [ -95.142309939470422, 29.631269177954572 ], [ -95.141906939350022, 29.631389178239548 ], [ -95.141486939421796, 29.631589178443289 ], [ -95.14108693858077, 29.631869178324152 ], [ -95.140653938502354, 29.632311178639998 ], [ -95.14020093845852, 29.632722178861005 ], [ -95.140135938691017, 29.632756178528645 ], [ -95.140043938979488, 29.63282517908624 ], [ -95.139840938295578, 29.632951178672307 ], [ -95.139734938749996, 29.633006178812462 ], [ -95.139624938963536, 29.633056178674224 ], [ -95.139507939003863, 29.633103178869089 ], [ -95.139396938669094, 29.63314117917318 ], [ -95.139278938831055, 29.633175178662199 ], [ -95.139158938879561, 29.633203178419738 ], [ -95.138828938744453, 29.633211178615632 ], [ -95.137022937474157, 29.633225178646207 ], [ -95.135182937435957, 29.633274178773721 ], [ -95.132576936480305, 29.63328917930361 ], [ -95.130576936064088, 29.633301178789704 ], [ -95.128209936051078, 29.633314178713938 ], [ -95.124598934879515, 29.633418179169652 ], [ -95.123220934414732, 29.633458179772365 ], [ -95.122382934475965, 29.633482179401252 ], [ -95.122057934538091, 29.633492178998434 ], [ -95.121602933692245, 29.633500179522354 ], [ -95.117759933149983, 29.633565179575609 ], [ -95.115889932161735, 29.633597179500704 ], [ -95.115677932648282, 29.633632179190197 ], [ -95.114237932034911, 29.634040180083467 ], [ -95.112514931377703, 29.634529179989219 ], [ -95.111536931078348, 29.634628179996259 ], [ -95.109989931182497, 29.634782180350793 ], [ -95.108797931108086, 29.63486217993459 ], [ -95.108240930283017, 29.634911179767812 ], [ -95.109117930965269, 29.635681180501393 ], [ -95.109531930787668, 29.636058180509441 ], [ -95.110006930870298, 29.636501180087244 ], [ -95.110785931023898, 29.637274180801434 ], [ -95.110916931023368, 29.637403180826823 ], [ -95.111850932211695, 29.638394180868755 ], [ -95.112895932211927, 29.639591180845091 ], [ -95.113813932664982, 29.640645180936293 ], [ -95.114400932631852, 29.641323181522129 ], [ -95.115311932303442, 29.642377181590529 ], [ -95.116333933238707, 29.643557181633916 ], [ -95.117074932943652, 29.644414182237639 ], [ -95.117732933357928, 29.645150181797945 ], [ -95.118001933893922, 29.645452182142606 ], [ -95.118396934071555, 29.645895182502073 ], [ -95.118977934269353, 29.647061182198787 ], [ -95.119766934248787, 29.647916182285581 ], [ -95.120360934705161, 29.648448182956148 ], [ -95.121653934547624, 29.649594183118094 ], [ -95.122185934413665, 29.650281183053821 ], [ -95.123735935325556, 29.650280183077154 ], [ -95.126589936237977, 29.650247182904746 ], [ -95.127500935789456, 29.65021918249867 ], [ -95.129205937066104, 29.650130182775968 ], [ -95.133127937552871, 29.649924182822573 ], [ -95.138289938906752, 29.649822182022945 ], [ -95.143575940471649, 29.649732182108355 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1425, "Tract": "48201421101", "Area_SqMi": 0.47810039068737981, "total_2009": 1794, "total_2010": 1536, "total_2011": 1589, "total_2012": 1724, "total_2013": 1714, "total_2014": 2040, "total_2015": 1973, "total_2016": 2092, "total_2017": 2245, "total_2018": 2155, "total_2019": 2183, "total_2020": 2198, "age1": 777, "age2": 1001, "age3": 471, "earn1": 401, "earn2": 953, "earn3": 895, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 164, "naics_s05": 140, "naics_s06": 184, "naics_s07": 762, "naics_s08": 0, "naics_s09": 1, "naics_s10": 13, "naics_s11": 89, "naics_s12": 10, "naics_s13": 178, "naics_s14": 117, "naics_s15": 215, "naics_s16": 3, "naics_s17": 0, "naics_s18": 309, "naics_s19": 64, "naics_s20": 0, "race1": 1648, "race2": 395, "race3": 22, "race4": 133, "race5": 7, "race6": 44, "ethnicity1": 1353, "ethnicity2": 896, "edu1": 353, "edu2": 412, "edu3": 403, "edu4": 304, "Shape_Length": 18197.732064438966, "Shape_Area": 13328620.615367506, "total_2021": 2185, "total_2022": 2249 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.476524029354479, 29.72445918643713 ], [ -95.47652802898628, 29.723706186124986 ], [ -95.476504028895064, 29.722987185831833 ], [ -95.476494028569832, 29.722466185422178 ], [ -95.476453028781677, 29.720329185569049 ], [ -95.476451028366384, 29.72014718553233 ], [ -95.476468028277466, 29.719244185213725 ], [ -95.476467029198446, 29.718780185204171 ], [ -95.476467029228147, 29.718669185232859 ], [ -95.476438028337512, 29.717781185156944 ], [ -95.476434028344784, 29.717454184546416 ], [ -95.476421028612791, 29.716532184273348 ], [ -95.47504002806626, 29.716531184550089 ], [ -95.474806028433605, 29.716535184460643 ], [ -95.473949028067224, 29.716544184468386 ], [ -95.473627028154354, 29.716550184802813 ], [ -95.473406027433711, 29.716550184554087 ], [ -95.47221902728279, 29.716566184974717 ], [ -95.471216027817292, 29.71657318507128 ], [ -95.470758026899517, 29.716577184900785 ], [ -95.470508027089593, 29.716593184347467 ], [ -95.469976027370507, 29.716594184424217 ], [ -95.469656026920703, 29.716595184795771 ], [ -95.469028026965802, 29.716596184456577 ], [ -95.468059026040365, 29.716596185172513 ], [ -95.468074026265441, 29.717549184859084 ], [ -95.468086026766329, 29.718273185006581 ], [ -95.4680950261465, 29.718837185455584 ], [ -95.468096026809008, 29.71906918567068 ], [ -95.468097026348204, 29.719721185041788 ], [ -95.468104026699621, 29.720217185335528 ], [ -95.467621026533536, 29.72021718578727 ], [ -95.466654026455217, 29.720237185879331 ], [ -95.465931025899494, 29.720246185952117 ], [ -95.465609025571354, 29.720250185995045 ], [ -95.465486026238779, 29.720252185653518 ], [ -95.465174025781295, 29.720256185856982 ], [ -95.464882025722403, 29.720261185286873 ], [ -95.463963025453936, 29.720260185999734 ], [ -95.463969025767483, 29.720700186086439 ], [ -95.463972025629531, 29.721137185922007 ], [ -95.463985026172011, 29.722156185693859 ], [ -95.464039026057861, 29.724516186769165 ], [ -95.464024026075847, 29.724774186981112 ], [ -95.464043025972813, 29.725482187022472 ], [ -95.464038026001788, 29.725531186431311 ], [ -95.464043025379411, 29.725865187114355 ], [ -95.464001025797685, 29.725874187236897 ], [ -95.463703026125359, 29.725955186570655 ], [ -95.461055025149975, 29.726178186979794 ], [ -95.460857024888412, 29.726189187253894 ], [ -95.460769025059193, 29.726195187345066 ], [ -95.460733025111352, 29.72619718693241 ], [ -95.460702025422307, 29.72619918684093 ], [ -95.46043302461625, 29.726215186891515 ], [ -95.460402024915922, 29.726217186730612 ], [ -95.46040402490344, 29.726345187106297 ], [ -95.460407025066459, 29.726571187011228 ], [ -95.460431024746526, 29.72842918725653 ], [ -95.460434025365885, 29.728621187716541 ], [ -95.460436024802434, 29.728765187514643 ], [ -95.46044202512843, 29.728958187925127 ], [ -95.460656024675174, 29.728873187135832 ], [ -95.460725025082581, 29.728845187492759 ], [ -95.460800025468941, 29.728816187333344 ], [ -95.460831025273805, 29.728804187797827 ], [ -95.460918025170031, 29.728770187982523 ], [ -95.461071024937254, 29.728710187831755 ], [ -95.461380025726086, 29.728589187630362 ], [ -95.461558025585219, 29.728520187160186 ], [ -95.463439026133898, 29.72778618728254 ], [ -95.463802025477108, 29.727644187161076 ], [ -95.46409602574451, 29.727539186932493 ], [ -95.464856026519286, 29.727268186869857 ], [ -95.46666702695309, 29.726687186734047 ], [ -95.467754027266167, 29.726466186692544 ], [ -95.468013026967924, 29.726432186492762 ], [ -95.468261026487525, 29.726401186836998 ], [ -95.468876027174261, 29.726324187159715 ], [ -95.469753027277747, 29.726249186636345 ], [ -95.470751027523377, 29.726184187101836 ], [ -95.470987027322835, 29.726168186973666 ], [ -95.472375028082226, 29.726107186963311 ], [ -95.473298028734376, 29.726067186256422 ], [ -95.474534029092794, 29.726062186406448 ], [ -95.47627702930312, 29.726051186595875 ], [ -95.476403028627672, 29.726050186402951 ], [ -95.476415029159497, 29.725893186451778 ], [ -95.476427029363407, 29.725729186435053 ], [ -95.476449029116154, 29.72544618591672 ], [ -95.476487029357344, 29.725003186390968 ], [ -95.476493029260041, 29.724929186094855 ], [ -95.476500029488037, 29.724880186633872 ], [ -95.476507028625178, 29.72477718609915 ], [ -95.476524029354479, 29.72445918643713 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1426, "Tract": "48201423301", "Area_SqMi": 0.64732223504342146, "total_2009": 411, "total_2010": 324, "total_2011": 316, "total_2012": 309, "total_2013": 280, "total_2014": 278, "total_2015": 274, "total_2016": 276, "total_2017": 243, "total_2018": 276, "total_2019": 286, "total_2020": 218, "age1": 149, "age2": 277, "age3": 134, "earn1": 120, "earn2": 266, "earn3": 174, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 4, "naics_s05": 25, "naics_s06": 0, "naics_s07": 107, "naics_s08": 0, "naics_s09": 0, "naics_s10": 10, "naics_s11": 14, "naics_s12": 6, "naics_s13": 0, "naics_s14": 317, "naics_s15": 0, "naics_s16": 48, "naics_s17": 0, "naics_s18": 12, "naics_s19": 13, "naics_s20": 0, "race1": 404, "race2": 92, "race3": 5, "race4": 48, "race5": 1, "race6": 10, "ethnicity1": 326, "ethnicity2": 234, "edu1": 125, "edu2": 116, "edu3": 93, "edu4": 77, "Shape_Length": 19497.758534622462, "Shape_Area": 18046236.009932768, "total_2021": 220, "total_2022": 560 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.528203040403156, 29.672725174196458 ], [ -95.528201039431806, 29.672619173703996 ], [ -95.528198039516226, 29.672460173451007 ], [ -95.528179039416059, 29.67192317318969 ], [ -95.528180039793966, 29.671337173893118 ], [ -95.528177039649563, 29.670405173100452 ], [ -95.5281770399679, 29.670106173554011 ], [ -95.528166039684223, 29.669689173063144 ], [ -95.528170039443424, 29.669560173294357 ], [ -95.528178039454019, 29.669258173117619 ], [ -95.528172040263811, 29.668895173367016 ], [ -95.52816904019916, 29.668733172542435 ], [ -95.528163039641967, 29.668415172591093 ], [ -95.528162039729224, 29.668040172576934 ], [ -95.528161039446005, 29.667564173016803 ], [ -95.528153040096441, 29.667041172240907 ], [ -95.528115040109114, 29.666307172933745 ], [ -95.528114039551227, 29.666012172041874 ], [ -95.52811203944006, 29.665687172641583 ], [ -95.528108039833711, 29.665346172396617 ], [ -95.528109039649166, 29.664977172427275 ], [ -95.527321039746326, 29.664992172600542 ], [ -95.527038039536379, 29.665089172323867 ], [ -95.526783038924407, 29.665212172171799 ], [ -95.52651703941234, 29.665309172300002 ], [ -95.526316038677137, 29.665340172205962 ], [ -95.526093038903397, 29.665349171973162 ], [ -95.525460039033987, 29.665327172258987 ], [ -95.524962038949226, 29.665368172323806 ], [ -95.524319038329864, 29.665466172591341 ], [ -95.523440038563564, 29.66546517266676 ], [ -95.522628038350817, 29.66548017287311 ], [ -95.521389038126088, 29.665490172566418 ], [ -95.521277038348629, 29.66549017238388 ], [ -95.520584037811162, 29.665490172280791 ], [ -95.520161037595969, 29.665509172684466 ], [ -95.519728036968047, 29.665502172592475 ], [ -95.518886037335662, 29.665518172825973 ], [ -95.518744037529487, 29.665516172735998 ], [ -95.518047036602056, 29.665529172854569 ], [ -95.51772903722491, 29.665535172355813 ], [ -95.517510036619157, 29.665535173057947 ], [ -95.517192037130357, 29.665541173087668 ], [ -95.516658036311227, 29.665546172842113 ], [ -95.516344036447734, 29.665559173019371 ], [ -95.51436703560924, 29.665574172629928 ], [ -95.513420035961957, 29.665581172643957 ], [ -95.512324035378171, 29.665613172791844 ], [ -95.511292034936261, 29.66562317324669 ], [ -95.510976035084951, 29.665632173159871 ], [ -95.510378035208191, 29.665632172562685 ], [ -95.509805034938694, 29.665631172820135 ], [ -95.509211035200877, 29.6656381730117 ], [ -95.508549035043458, 29.665639172654554 ], [ -95.508541034134055, 29.666564173381907 ], [ -95.508540034638131, 29.667200173418951 ], [ -95.508550034294785, 29.667610173343309 ], [ -95.50855903509931, 29.668422173923815 ], [ -95.508564034610316, 29.6686741733064 ], [ -95.508559034805501, 29.669759174206181 ], [ -95.508558034409617, 29.670034173754903 ], [ -95.508581035335894, 29.670670173606336 ], [ -95.508583034643848, 29.670871174000432 ], [ -95.508574035400002, 29.671865174422319 ], [ -95.508579035169561, 29.672104174449547 ], [ -95.508584034992253, 29.672391174049782 ], [ -95.508607035428071, 29.673644175091098 ], [ -95.508612034612185, 29.673928175035844 ], [ -95.508623035286647, 29.674537175198655 ], [ -95.508630035156017, 29.674900175217587 ], [ -95.508642034580916, 29.675630175002212 ], [ -95.508647035572196, 29.676089175129334 ], [ -95.508648034872238, 29.676177174770057 ], [ -95.509939035648145, 29.6761591753727 ], [ -95.510716035799149, 29.676092175315187 ], [ -95.510798035482452, 29.676071174625903 ], [ -95.511465035870003, 29.675902174966851 ], [ -95.511796035831836, 29.675760175180546 ], [ -95.512565035605249, 29.675349175078203 ], [ -95.512951036508426, 29.675073174656045 ], [ -95.514461036165855, 29.674068174473891 ], [ -95.514894037024234, 29.673865174829526 ], [ -95.515772036614308, 29.673622174280677 ], [ -95.520934037574051, 29.672194174042378 ], [ -95.52347303881244, 29.671977173510324 ], [ -95.525186038633095, 29.671879174023232 ], [ -95.525797038837553, 29.671945173260276 ], [ -95.526426039619281, 29.672110173721929 ], [ -95.528203040403156, 29.672725174196458 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1427, "Tract": "48201453401", "Area_SqMi": 0.37188645227392902, "total_2009": 205, "total_2010": 292, "total_2011": 256, "total_2012": 282, "total_2013": 292, "total_2014": 338, "total_2015": 372, "total_2016": 440, "total_2017": 420, "total_2018": 463, "total_2019": 486, "total_2020": 474, "age1": 109, "age2": 218, "age3": 122, "earn1": 175, "earn2": 208, "earn3": 66, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 2, "naics_s06": 0, "naics_s07": 35, "naics_s08": 0, "naics_s09": 0, "naics_s10": 62, "naics_s11": 7, "naics_s12": 21, "naics_s13": 0, "naics_s14": 1, "naics_s15": 6, "naics_s16": 224, "naics_s17": 0, "naics_s18": 88, "naics_s19": 0, "naics_s20": 0, "race1": 270, "race2": 105, "race3": 4, "race4": 66, "race5": 0, "race6": 4, "ethnicity1": 235, "ethnicity2": 214, "edu1": 102, "edu2": 84, "edu3": 103, "edu4": 51, "Shape_Length": 13736.570108975689, "Shape_Area": 10367557.799372898, "total_2021": 430, "total_2022": 449 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.583741053684477, 29.659431169240719 ], [ -95.583725053894909, 29.659384169304946 ], [ -95.583658053788128, 29.659072169367235 ], [ -95.583451053624415, 29.65797816932929 ], [ -95.58320905322806, 29.65658016903453 ], [ -95.583134053664011, 29.65621216844584 ], [ -95.583066053590045, 29.655832168897671 ], [ -95.583009053647899, 29.65554016880818 ], [ -95.582930052994868, 29.655122168687988 ], [ -95.582858053417141, 29.654733168549566 ], [ -95.582709053378665, 29.653957167860305 ], [ -95.582202053072777, 29.653723168126774 ], [ -95.581781053121517, 29.653529167957991 ], [ -95.581021052150135, 29.653178167676455 ], [ -95.580060052071545, 29.652736168214037 ], [ -95.578477051866074, 29.652006168156969 ], [ -95.577683051883398, 29.65164016810721 ], [ -95.577369051727914, 29.651495167781277 ], [ -95.572715050245975, 29.64935016770696 ], [ -95.571720050145089, 29.648891167535506 ], [ -95.571614049893867, 29.648842167543371 ], [ -95.571495049867224, 29.648787167669067 ], [ -95.571370050220537, 29.648730167187768 ], [ -95.571352050145251, 29.648746167661422 ], [ -95.57075205016217, 29.649321167212733 ], [ -95.570457049858888, 29.649592167376273 ], [ -95.568616049027369, 29.651316167757091 ], [ -95.568538049209025, 29.65139216763081 ], [ -95.568753048979744, 29.651541168327491 ], [ -95.569257049529483, 29.652041168369085 ], [ -95.5697070494531, 29.652574167844058 ], [ -95.56987105017906, 29.652839168348724 ], [ -95.569963049482212, 29.652909168308607 ], [ -95.570416049603452, 29.653627168704993 ], [ -95.570585049924176, 29.654113168106417 ], [ -95.570701050159357, 29.654476168963484 ], [ -95.570830049650652, 29.655492169003249 ], [ -95.570798050199954, 29.656021169149223 ], [ -95.570784049918942, 29.656220168567216 ], [ -95.57164404999854, 29.656491169142068 ], [ -95.572362050754094, 29.656717168939693 ], [ -95.572759051097222, 29.656865168603495 ], [ -95.573080050675159, 29.656970169167842 ], [ -95.573281050288458, 29.657052169437954 ], [ -95.573470050690659, 29.657162169152009 ], [ -95.573803050521875, 29.657316169122652 ], [ -95.573986051020981, 29.65735416949531 ], [ -95.574154050841571, 29.657373168687588 ], [ -95.574326050709701, 29.657393169066363 ], [ -95.574597051322115, 29.657442169014441 ], [ -95.57562305098152, 29.657690169194659 ], [ -95.575887051308456, 29.657777169215134 ], [ -95.576032051772046, 29.657838168919042 ], [ -95.576466051791058, 29.657948169090083 ], [ -95.576793051787476, 29.658052169450137 ], [ -95.576938052119701, 29.65811316904421 ], [ -95.577265051984327, 29.65820116887765 ], [ -95.577532051796808, 29.658307168876892 ], [ -95.577914052434522, 29.65845916882958 ], [ -95.578745051738139, 29.658734168913075 ], [ -95.579141052284811, 29.65884916903228 ], [ -95.579462052769799, 29.658920169471152 ], [ -95.579708052207565, 29.658997168998248 ], [ -95.579840052258206, 29.659019169430323 ], [ -95.579909052488517, 29.659030169073574 ], [ -95.580243052156803, 29.659113169077362 ], [ -95.580702052513118, 29.659322169196848 ], [ -95.581489053463443, 29.659563169110616 ], [ -95.581691053383551, 29.659607169012059 ], [ -95.582182052718778, 29.659646169705638 ], [ -95.582736053675063, 29.659618168952385 ], [ -95.583145053464776, 29.659574169101461 ], [ -95.583741053684477, 29.659431169240719 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1428, "Tract": "48321730301", "Area_SqMi": 2.0390473720845335, "total_2009": 1139, "total_2010": 1174, "total_2011": 1106, "total_2012": 1047, "total_2013": 1117, "total_2014": 1070, "total_2015": 1150, "total_2016": 1143, "total_2017": 1127, "total_2018": 1174, "total_2019": 1161, "total_2020": 1029, "age1": 316, "age2": 472, "age3": 277, "earn1": 271, "earn2": 444, "earn3": 350, "naics_s01": 21, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 18, "naics_s06": 25, "naics_s07": 267, "naics_s08": 1, "naics_s09": 7, "naics_s10": 37, "naics_s11": 19, "naics_s12": 42, "naics_s13": 0, "naics_s14": 75, "naics_s15": 12, "naics_s16": 120, "naics_s17": 0, "naics_s18": 111, "naics_s19": 85, "naics_s20": 203, "race1": 894, "race2": 124, "race3": 11, "race4": 27, "race5": 2, "race6": 7, "ethnicity1": 648, "ethnicity2": 417, "edu1": 165, "edu2": 219, "edu3": 250, "edu4": 115, "Shape_Length": 39527.00418575474, "Shape_Area": 56845150.86926125, "total_2021": 1146, "total_2022": 1065 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.970012122746752, 28.983008017306041 ], [ -95.969949122813432, 28.98187001737243 ], [ -95.96991512305172, 28.980844017049524 ], [ -95.969880122392297, 28.979764017312522 ], [ -95.969845123213332, 28.978721017073877 ], [ -95.96981112228103, 28.977691016883441 ], [ -95.969775122581098, 28.976589016488877 ], [ -95.969773122423277, 28.976525016489639 ], [ -95.969771123044367, 28.976474016444921 ], [ -95.969763122679652, 28.976243016190843 ], [ -95.969742122146656, 28.975612016277893 ], [ -95.9697351228873, 28.974657015764308 ], [ -95.969667122405085, 28.973361015359895 ], [ -95.969700122919079, 28.972386015599959 ], [ -95.969673122091308, 28.971169014969405 ], [ -95.969641122364635, 28.970193014837967 ], [ -95.969619122809206, 28.969436014732672 ], [ -95.96956412259533, 28.967163014599002 ], [ -95.968018121989772, 28.967169014130544 ], [ -95.96793512222095, 28.967169014227697 ], [ -95.966567121157496, 28.967147014668193 ], [ -95.966528121885787, 28.967146014771767 ], [ -95.966160121669674, 28.967137014364759 ], [ -95.966042121256095, 28.967115014109471 ], [ -95.965631121692681, 28.966964014658561 ], [ -95.96542912106338, 28.966889014041303 ], [ -95.964991120659164, 28.966703014396916 ], [ -95.964879120732817, 28.966670014079792 ], [ -95.964723121256625, 28.96667001472003 ], [ -95.964598120548899, 28.966686014663367 ], [ -95.964473120497189, 28.966730014690583 ], [ -95.964404121112025, 28.966796014405222 ], [ -95.964348121248491, 28.966824014179767 ], [ -95.964154120687965, 28.966868014519715 ], [ -95.964060121105163, 28.966873014451672 ], [ -95.963979121110114, 28.966912014285317 ], [ -95.963916120732137, 28.966961014841655 ], [ -95.96371612038898, 28.967027014125872 ], [ -95.963391120563642, 28.96708801453169 ], [ -95.963210120297518, 28.967077015009902 ], [ -95.961904120007404, 28.96711001447828 ], [ -95.960297120328889, 28.96709401496139 ], [ -95.958685119932127, 28.967111014318824 ], [ -95.95457811852863, 28.967222015340774 ], [ -95.954628118107507, 28.967079015276173 ], [ -95.954652118896306, 28.967023014800699 ], [ -95.954716118847074, 28.966881015076503 ], [ -95.954760118121769, 28.966755014372605 ], [ -95.954616118503012, 28.96674401471865 ], [ -95.954391118390276, 28.966584014654266 ], [ -95.954266118704339, 28.966408014582314 ], [ -95.953259118001355, 28.963468014546105 ], [ -95.95313911831289, 28.963116014153044 ], [ -95.953119117654126, 28.963059013687062 ], [ -95.952824118330497, 28.963041013916765 ], [ -95.952830118080442, 28.963232014461362 ], [ -95.952845118137404, 28.963733014114045 ], [ -95.952890117977745, 28.965235014646275 ], [ -95.952928117730323, 28.966465014728872 ], [ -95.952939117864432, 28.966828014584344 ], [ -95.952940118331284, 28.967784015199808 ], [ -95.952940118321081, 28.967892014769081 ], [ -95.952940117799002, 28.967919014875054 ], [ -95.952979117929786, 28.971438015988358 ], [ -95.952984118069523, 28.971532016266025 ], [ -95.952989118490962, 28.971828015528008 ], [ -95.952983117842493, 28.972037016064867 ], [ -95.952983118393789, 28.972149016180019 ], [ -95.95295111840997, 28.972662016161308 ], [ -95.952920118121838, 28.973223015872712 ], [ -95.952894118046672, 28.974005016205041 ], [ -95.953005118120274, 28.975581016758348 ], [ -95.952750118197855, 28.975589017120541 ], [ -95.952596117800439, 28.975375016542081 ], [ -95.952466117885024, 28.975226016970847 ], [ -95.951773118289069, 28.974562016459679 ], [ -95.95140711749734, 28.974149016366923 ], [ -95.950960117950117, 28.973718016618587 ], [ -95.950365117307527, 28.973188016484269 ], [ -95.949880117553619, 28.972787016546416 ], [ -95.949655117887673, 28.972600015739303 ], [ -95.949458117428691, 28.972456016572092 ], [ -95.948809117472862, 28.971982016422253 ], [ -95.948658116694361, 28.971871016453925 ], [ -95.947509116374732, 28.971139015474801 ], [ -95.946770116586848, 28.970693016039114 ], [ -95.946360116282577, 28.970446015935558 ], [ -95.943023115730938, 28.968400015111058 ], [ -95.942708115658519, 28.96820801532472 ], [ -95.942447115596877, 28.968048015405508 ], [ -95.941888115311841, 28.967706015576098 ], [ -95.940439115385644, 28.967732015850007 ], [ -95.939602114956926, 28.967747015575693 ], [ -95.938698114455704, 28.967763015603889 ], [ -95.93857611416577, 28.967765015890791 ], [ -95.938337114450704, 28.967649015932317 ], [ -95.938195114245033, 28.968037015190639 ], [ -95.936382114190124, 28.972985016359992 ], [ -95.936320114485937, 28.973153017047249 ], [ -95.935622113552682, 28.975059017062858 ], [ -95.935590113545103, 28.975133016707908 ], [ -95.935602114155245, 28.975716017520778 ], [ -95.935605114034999, 28.975849017037056 ], [ -95.935623114338867, 28.975985016958596 ], [ -95.935666113608505, 28.976178017046685 ], [ -95.935673114427502, 28.976355017504886 ], [ -95.935676114202991, 28.97643501762926 ], [ -95.935583113902595, 28.977185017885784 ], [ -95.935468113945603, 28.977896017353842 ], [ -95.935282113849951, 28.979043018137968 ], [ -95.93499111439688, 28.980916018468175 ], [ -95.934778114002782, 28.981985018933532 ], [ -95.935833114734521, 28.982078018192016 ], [ -95.936397114668907, 28.982128018402392 ], [ -95.936550114905202, 28.982142018534777 ], [ -95.936847114653943, 28.982160018939943 ], [ -95.938750114967306, 28.982298018869468 ], [ -95.938909115059033, 28.982310018717421 ], [ -95.939190115222445, 28.982367018426771 ], [ -95.939360115335973, 28.982446018572201 ], [ -95.939447115301519, 28.982502018616874 ], [ -95.939622115550776, 28.982655018424897 ], [ -95.939757115323374, 28.982807018926128 ], [ -95.939910115420332, 28.983079018884482 ], [ -95.940720115083181, 28.982777018196987 ], [ -95.941060115561172, 28.982668018372486 ], [ -95.94139511587835, 28.982611018289649 ], [ -95.941735115996579, 28.98258501845147 ], [ -95.942446116220637, 28.982560018743989 ], [ -95.944473116232587, 28.982725018324896 ], [ -95.94553611645415, 28.982812018508152 ], [ -95.946115116515216, 28.982867018356856 ], [ -95.94654211715546, 28.982901018584183 ], [ -95.947708117524826, 28.983008018652804 ], [ -95.948862118091398, 28.983103018495889 ], [ -95.950002118218165, 28.983182018031908 ], [ -95.950357118206725, 28.983216018110934 ], [ -95.951075118100974, 28.983276018101211 ], [ -95.951999118581526, 28.983380018573172 ], [ -95.952077118499545, 28.983385018016893 ], [ -95.95327611840294, 28.983456018162187 ], [ -95.954479119287129, 28.983437018149782 ], [ -95.95564711932991, 28.983408017899048 ], [ -95.956994119556271, 28.983379018261612 ], [ -95.958145119643135, 28.983335018457691 ], [ -95.959285120087173, 28.983304018026075 ], [ -95.960478120987929, 28.983277018408277 ], [ -95.961587120427595, 28.983259018072619 ], [ -95.962807120855373, 28.983214018118222 ], [ -95.963993121256991, 28.983181017680131 ], [ -95.965334121768436, 28.983145017834072 ], [ -95.965641121629929, 28.983136017663032 ], [ -95.966393122244213, 28.983116017448651 ], [ -95.96660312225525, 28.983108017428144 ], [ -95.9675941229047, 28.983068017332982 ], [ -95.968803122626198, 28.983032017935983 ], [ -95.970012122746752, 28.983008017306041 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1429, "Tract": "48321990000", "Area_SqMi": 224.4975348643415, "total_2009": null, "total_2010": null, "total_2011": null, "total_2012": null, "total_2013": null, "total_2014": null, "total_2015": null, "total_2016": null, "total_2017": null, "total_2018": null, "total_2019": null, "total_2020": null, "age1": null, "age2": null, "age3": null, "earn1": null, "earn2": null, "earn3": null, "naics_s01": null, "naics_s02": null, "naics_s03": null, "naics_s04": null, "naics_s05": null, "naics_s06": null, "naics_s07": null, "naics_s08": null, "naics_s09": null, "naics_s10": null, "naics_s11": null, "naics_s12": null, "naics_s13": null, "naics_s14": null, "naics_s15": null, "naics_s16": null, "naics_s17": null, "naics_s18": null, "naics_s19": null, "naics_s20": null, "race1": null, "race2": null, "race3": null, "race4": null, "race5": null, "race6": null, "ethnicity1": null, "ethnicity2": null, "edu1": null, "edu2": null, "edu3": null, "edu4": null, "Shape_Length": 745517.0478529823, "Shape_Area": 6258607040.6468554, "total_2021": null, "total_2022": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.392425203113476, 28.297620863330803 ], [ -96.395205203171514, 28.279740859122843 ], [ -96.389297200900316, 28.282547860261996 ], [ -96.381099199522424, 28.287102861496713 ], [ -96.375259198587202, 28.290764862167112 ], [ -96.367974196934753, 28.297226863987436 ], [ -96.359300194603705, 28.305757865834675 ], [ -96.352693193692375, 28.312927867132743 ], [ -96.347644192150369, 28.320174869282418 ], [ -96.344738191844087, 28.325993870683103 ], [ -96.342298191128776, 28.335139871851787 ], [ -96.341297191209932, 28.340703873385106 ], [ -96.341814191915276, 28.342385873401476 ], [ -96.337952190514017, 28.344304874348826 ], [ -96.33338918982902, 28.348063874788632 ], [ -96.328747188542494, 28.352057875998305 ], [ -96.324211187392379, 28.356957877385238 ], [ -96.321435187114048, 28.360796878374703 ], [ -96.320769186843435, 28.362872878613793 ], [ -96.312426185028329, 28.363447878718212 ], [ -96.303540182379834, 28.365024879261583 ], [ -96.294182180538783, 28.368309880921817 ], [ -96.286683178814542, 28.372313881499689 ], [ -96.282314178146464, 28.375006882627012 ], [ -96.278296176561199, 28.37787488304453 ], [ -96.271774175691334, 28.382938884465769 ], [ -96.267076174016594, 28.388233885180512 ], [ -96.26291217366196, 28.39420088694537 ], [ -96.259813173661243, 28.400703888493815 ], [ -96.25830917278347, 28.407379889887945 ], [ -96.258242173409457, 28.407675890230617 ], [ -96.258198172604324, 28.407876889977867 ], [ -96.250255170753476, 28.4126668910192 ], [ -96.235494167380693, 28.421381892931176 ], [ -96.235465167395077, 28.421473893699169 ], [ -96.217844164138299, 28.431372895896274 ], [ -96.199382159264005, 28.442282898675792 ], [ -96.182249155289156, 28.452040901019636 ], [ -96.165855151190456, 28.459678903668138 ], [ -96.165078151731436, 28.46004190355514 ], [ -96.143982146749963, 28.469601905947911 ], [ -96.125008141913085, 28.478517908588856 ], [ -96.111021139117668, 28.484967910046457 ], [ -96.094331134744564, 28.492591912185404 ], [ -96.078338131601072, 28.500005913973776 ], [ -96.076055130957101, 28.500006914354156 ], [ -96.049494124244802, 28.511745917403193 ], [ -96.000341112858337, 28.533397923431355 ], [ -96.00025011277512, 28.533437923434963 ], [ -96.0002501123966, 28.533251923651953 ], [ -96.000250112586144, 28.532075923585989 ], [ -95.999665112841811, 28.532312923513931 ], [ -95.990078109693272, 28.53620292459868 ], [ -95.970330105785735, 28.544214926718976 ], [ -95.950582100982984, 28.552227929004001 ], [ -95.912915092085996, 28.56751093374082 ], [ -95.87524708272629, 28.582792937917866 ], [ -95.819869070105284, 28.606944944399952 ], [ -95.777852059232828, 28.625270949745889 ], [ -95.750245053028777, 28.638423953216599 ], [ -95.660393031767583, 28.684754966013504 ], [ -95.625239024048099, 28.702881970105654 ], [ -95.581863013674436, 28.724928976276757 ], [ -95.532026001878322, 28.750260983249461 ], [ -95.533791002054699, 28.750260983070284 ], [ -95.499378994523141, 28.763477987482347 ], [ -95.495656993107275, 28.764841987378627 ], [ -95.500231995170068, 28.785573991163869 ], [ -95.50023199544178, 28.786819991832125 ], [ -95.504163997230975, 28.808896996098301 ], [ -95.506962998463791, 28.824297999744033 ], [ -95.506999998994544, 28.824497999822398 ], [ -95.516856001055658, 28.819065998387075 ], [ -95.539351006385289, 28.806900995236226 ], [ -95.548484008154432, 28.80193899364313 ], [ -95.549495008342802, 28.801971993327147 ], [ -95.551249009353228, 28.801253993310834 ], [ -95.552355009663088, 28.800668993152939 ], [ -95.552793009317782, 28.800401993136102 ], [ -95.553499009255788, 28.799716992641972 ], [ -95.554280010114653, 28.799248992484976 ], [ -95.554280009766131, 28.798797993110036 ], [ -95.554542009270477, 28.798663992369811 ], [ -95.564915012572854, 28.793378991631748 ], [ -95.581067015579194, 28.785152989241162 ], [ -95.585103016656333, 28.782887988593391 ], [ -95.586100016916163, 28.782172987789846 ], [ -95.586644017429307, 28.782092988310556 ], [ -95.586962017094933, 28.78201398837912 ], [ -95.588231017340831, 28.781218988113721 ], [ -95.596155019546558, 28.777251987106574 ], [ -95.610905022723813, 28.76994298524701 ], [ -95.633850028722904, 28.758256981658754 ], [ -95.65372003343586, 28.748337979341532 ], [ -95.655194033355514, 28.747972978940943 ], [ -95.65673303349557, 28.747972978471473 ], [ -95.657213033552921, 28.747803979116025 ], [ -95.658944033802783, 28.745246978091998 ], [ -95.659841034497305, 28.74471397798759 ], [ -95.668558036351612, 28.740272977040082 ], [ -95.695956042634563, 28.725182973310023 ], [ -95.699255043228817, 28.723666972469001 ], [ -95.706528044917846, 28.71984597128025 ], [ -95.737346052398294, 28.703352966712895 ], [ -95.749230055047818, 28.697170965492603 ], [ -95.756085057356998, 28.693180964739167 ], [ -95.757751057242118, 28.692421964467801 ], [ -95.766829059657354, 28.687974962867703 ], [ -95.770752060521332, 28.685768962797606 ], [ -95.776084062010739, 28.682895961961759 ], [ -95.779055062743083, 28.68142496152106 ], [ -95.779512062292952, 28.680890961322664 ], [ -95.78073106302945, 28.680322960988445 ], [ -95.793833065323227, 28.673572959461893 ], [ -95.800232066837452, 28.670397957959185 ], [ -95.803621068473348, 28.668526957493025 ], [ -95.807465069130245, 28.666755956915196 ], [ -95.819384071338959, 28.660807955372213 ], [ -95.825820073054118, 28.657934954737254 ], [ -95.827610074069199, 28.657032955169747 ], [ -95.829742073693154, 28.656062954390595 ], [ -95.832027074417979, 28.654960953979163 ], [ -95.836882075534803, 28.652849953665847 ], [ -95.839817076837434, 28.651526953464828 ], [ -95.843425077489485, 28.649943952753471 ], [ -95.843459077070179, 28.649927952899787 ], [ -95.854329080371443, 28.645241951044845 ], [ -95.856537080363566, 28.644201950803993 ], [ -95.868248083552899, 28.639239949805674 ], [ -95.873471084785777, 28.636947948949654 ], [ -95.87691708534858, 28.635483948793883 ], [ -95.877213085397685, 28.635388948997587 ], [ -95.880686086602253, 28.633899947972949 ], [ -95.881520086033447, 28.633640947821288 ], [ -95.882705086827613, 28.633309948077898 ], [ -95.883351086967195, 28.632931947638131 ], [ -95.885612087026459, 28.631986947776038 ], [ -95.888762088518803, 28.63071094702217 ], [ -95.89107708846268, 28.629883947304503 ], [ -95.89218108905709, 28.629292947216172 ], [ -95.894819090008227, 28.628158946349092 ], [ -95.895895089827164, 28.627661946432816 ], [ -95.896756090273286, 28.627472946465669 ], [ -95.897591090670474, 28.627047946019886 ], [ -95.898075090641839, 28.626976946407233 ], [ -95.90496609164029, 28.62432994586127 ], [ -95.909139092845408, 28.622557944942681 ], [ -95.910431092851198, 28.622156945264692 ], [ -95.923270096407634, 28.617147943919075 ], [ -95.927308097341935, 28.615635942830622 ], [ -95.928519097094707, 28.615091943274138 ], [ -95.9361090989198, 28.612020941965717 ], [ -95.936647099823475, 28.611712941651991 ], [ -95.950993102494976, 28.606301940406134 ], [ -95.951666103075326, 28.60611294061632 ], [ -95.954653104189305, 28.604954940136462 ], [ -95.956510104316166, 28.60405793970763 ], [ -95.962566106111595, 28.601694939176209 ], [ -95.962781105781971, 28.601576938859417 ], [ -95.970693107957047, 28.598409937984993 ], [ -95.973895108469009, 28.597062937503146 ], [ -95.974918108421747, 28.596637937933469 ], [ -95.976075108470965, 28.596117937275569 ], [ -95.9770701091755, 28.595763937657335 ], [ -95.978497109873715, 28.595645937034231 ], [ -95.978513109926894, 28.595649936880765 ], [ -95.978729109908087, 28.595713937207481 ], [ -95.978740109466017, 28.59571693749794 ], [ -95.978776109515181, 28.595716937081921 ], [ -95.978928109436922, 28.595716937216825 ], [ -95.979223109912013, 28.595834936994372 ], [ -95.979762110239648, 28.596211937658389 ], [ -95.979870109573568, 28.596023937275735 ], [ -95.980166110341159, 28.595550937097244 ], [ -95.980703109940066, 28.595195936788365 ], [ -95.981485110123756, 28.595007936836112 ], [ -95.98188811012318, 28.595007936812383 ], [ -95.982103110559763, 28.594393937276156 ], [ -95.982380110858742, 28.593543936648018 ], [ -95.983099110576006, 28.591344936307173 ], [ -95.983121110780246, 28.591318935842406 ], [ -95.983368111057729, 28.59101393635758 ], [ -95.983779111113023, 28.590771936014658 ], [ -95.983932110713894, 28.590683936125668 ], [ -95.984363110870007, 28.590683936398829 ], [ -95.984820110754015, 28.590825936208944 ], [ -95.985009110877371, 28.591132935846197 ], [ -95.984766111104165, 28.59188893618035 ], [ -95.98479311096618, 28.592006936166129 ], [ -95.9853581109316, 28.592124936629681 ], [ -95.986354110919365, 28.592077935930281 ], [ -95.98721511194033, 28.591817936520783 ], [ -95.988372111507402, 28.591155935727109 ], [ -95.988776112063576, 28.590990935644616 ], [ -95.989153112059824, 28.590754935719307 ], [ -95.990875112672541, 28.590069936190549 ], [ -95.992247112944057, 28.589525935363593 ], [ -95.992543113194245, 28.588816935804829 ], [ -95.993081112533972, 28.588131934848732 ], [ -95.993996113056539, 28.587824935555037 ], [ -95.994373113344793, 28.587942935412798 ], [ -95.994751113505913, 28.587780935570336 ], [ -95.995498113833534, 28.587621935420437 ], [ -95.996086114144433, 28.587681934739436 ], [ -95.996245113299068, 28.58791993486258 ], [ -95.997127113445629, 28.587800935085255 ], [ -95.999820114811129, 28.586866934742105 ], [ -96.002784115023161, 28.586012934863383 ], [ -96.005522115692713, 28.585078934681999 ], [ -96.018168119011179, 28.580687933105608 ], [ -96.023990120552924, 28.578348932148469 ], [ -96.024048120511978, 28.578322932488533 ], [ -96.024458120437032, 28.579098932808069 ], [ -96.026912121098761, 28.578123932547335 ], [ -96.03305912255837, 28.575619931124621 ], [ -96.039666124459515, 28.572976930642632 ], [ -96.04620512542752, 28.570333930055323 ], [ -96.053883127199754, 28.567157929286399 ], [ -96.059450128356104, 28.564811928358168 ], [ -96.073926132331266, 28.558825926653146 ], [ -96.074480132533083, 28.558616926696065 ], [ -96.074549132217072, 28.558566926713773 ], [ -96.085525135202488, 28.553909925110265 ], [ -96.092472136675184, 28.550907924429378 ], [ -96.09945013865763, 28.547761923887599 ], [ -96.106602139833313, 28.544400922513635 ], [ -96.113605141456134, 28.541127922196775 ], [ -96.119169143088513, 28.538563921556261 ], [ -96.125002144460922, 28.53586792072365 ], [ -96.130151145330643, 28.533556920136135 ], [ -96.131975146168372, 28.532743919816962 ], [ -96.134833146954378, 28.531419919110064 ], [ -96.136801146901888, 28.530441918768698 ], [ -96.140798147544984, 28.528695918070703 ], [ -96.145990149391196, 28.526256917947965 ], [ -96.1521411508093, 28.52343791706172 ], [ -96.154824150886853, 28.522174916649504 ], [ -96.159188151926088, 28.520185915711387 ], [ -96.165482153626371, 28.517168915645904 ], [ -96.167990154155191, 28.515986914823433 ], [ -96.170548155452266, 28.514827914792885 ], [ -96.172017154952655, 28.514090914006271 ], [ -96.175235155925634, 28.512502914089055 ], [ -96.179449157271264, 28.510589913383033 ], [ -96.181235157067135, 28.509655913147942 ], [ -96.185187158333662, 28.507764912436144 ], [ -96.189700159669428, 28.505493912373705 ], [ -96.193620159966855, 28.503492911645321 ], [ -96.197304161421343, 28.501694911051715 ], [ -96.200646162495175, 28.500001910261815 ], [ -96.207603163276517, 28.496562909318332 ], [ -96.214653165634715, 28.49288990885357 ], [ -96.220406166637559, 28.489815908085511 ], [ -96.222281167282858, 28.486268907251361 ], [ -96.22490816807462, 28.486582907328998 ], [ -96.237055170736852, 28.47999790531858 ], [ -96.239581170721877, 28.478508905409242 ], [ -96.253645174229192, 28.47041590314068 ], [ -96.266721177052304, 28.462647900559272 ], [ -96.269686177691753, 28.460809900764335 ], [ -96.275082178926198, 28.457401899235311 ], [ -96.285077181948594, 28.451587897907057 ], [ -96.286370181888699, 28.450551897469627 ], [ -96.28697818215538, 28.450350897366889 ], [ -96.289182182369231, 28.448746897138381 ], [ -96.290170182937075, 28.447944896969876 ], [ -96.29123418275762, 28.447176896828715 ], [ -96.298035184528672, 28.44244489623021 ], [ -96.301017185443143, 28.440020895623405 ], [ -96.306078186336322, 28.436245894268595 ], [ -96.31547618803107, 28.428178892369964 ], [ -96.317058188731224, 28.426231891768118 ], [ -96.318820189017345, 28.423926891172528 ], [ -96.318820189452836, 28.423688891427627 ], [ -96.312132186774093, 28.417528889878632 ], [ -96.312132187298985, 28.417290890019402 ], [ -96.318052188071704, 28.412402888780722 ], [ -96.318549188672407, 28.412561888613194 ], [ -96.329755191570243, 28.423092891092931 ], [ -96.330297191619437, 28.423449890830298 ], [ -96.331020192472266, 28.422972890924946 ], [ -96.333572192763711, 28.421968890341624 ], [ -96.336081192924212, 28.420509890176131 ], [ -96.341728194324915, 28.417410889613219 ], [ -96.343852195417014, 28.416138888525619 ], [ -96.344258195111408, 28.415621889012183 ], [ -96.345659195346329, 28.414747888435954 ], [ -96.346879195910276, 28.41395288879432 ], [ -96.349002196662866, 28.412363888064146 ], [ -96.350267196236288, 28.411369887333034 ], [ -96.35135119622025, 28.410535887716179 ], [ -96.352119196958924, 28.409859887367382 ], [ -96.356004198110838, 28.4068798866608 ], [ -96.357585198385252, 28.40580688623902 ], [ -96.365808199514021, 28.399567884469047 ], [ -96.366088200161613, 28.39936488444706 ], [ -96.367630200316924, 28.397900884863446 ], [ -96.369196201101161, 28.39645988438911 ], [ -96.370285200545254, 28.395403884104681 ], [ -96.370324200536913, 28.394839884008256 ], [ -96.370369200508506, 28.394720883537644 ], [ -96.37059520064804, 28.393886883702098 ], [ -96.370775200953503, 28.393409883293508 ], [ -96.369104199984122, 28.387885881895468 ], [ -96.369194200141081, 28.386931882399416 ], [ -96.369104200529478, 28.386176881854531 ], [ -96.369691200626264, 28.384984881508881 ], [ -96.370053200131522, 28.384547881396195 ], [ -96.371453200806314, 28.384309881266287 ], [ -96.371859201053354, 28.384031881798094 ], [ -96.373079200754233, 28.38379288149007 ], [ -96.373350201183527, 28.384031881326319 ], [ -96.374253201443295, 28.383911880977021 ], [ -96.375157201429261, 28.384031881248124 ], [ -96.375259201651204, 28.383986881695105 ], [ -96.375699202164668, 28.383792881269724 ], [ -96.376105201377129, 28.383117880810598 ], [ -96.376963202004688, 28.382719881457291 ], [ -96.378002202729917, 28.382680881217105 ], [ -96.378698202738406, 28.382868880951893 ], [ -96.379984202479307, 28.383217881192035 ], [ -96.380287203279252, 28.38179788079081 ], [ -96.38048720332354, 28.380863880406142 ], [ -96.380811203381882, 28.379162880537827 ], [ -96.381023202735719, 28.378043879479716 ], [ -96.381134202929232, 28.377461879631269 ], [ -96.381547202556533, 28.375285878925872 ], [ -96.382076202876405, 28.368529877666273 ], [ -96.383556203011338, 28.358422875411733 ], [ -96.38457320264294, 28.351475874213591 ], [ -96.386992202477145, 28.334454870556947 ], [ -96.389649202536603, 28.316357866507289 ], [ -96.392425203113476, 28.297620863330803 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1430, "Tract": "48167725300", "Area_SqMi": 0.49571282715616566, "total_2009": 490, "total_2010": 577, "total_2011": 516, "total_2012": 111, "total_2013": 144, "total_2014": 130, "total_2015": 194, "total_2016": 184, "total_2017": 173, "total_2018": 129, "total_2019": 141, "total_2020": 148, "age1": 27, "age2": 56, "age3": 37, "earn1": 30, "earn2": 44, "earn3": 46, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 0, "naics_s06": 0, "naics_s07": 11, "naics_s08": 0, "naics_s09": 0, "naics_s10": 4, "naics_s11": 11, "naics_s12": 0, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 26, "naics_s17": 0, "naics_s18": 17, "naics_s19": 15, "naics_s20": 3, "race1": 90, "race2": 25, "race3": 1, "race4": 2, "race5": 0, "race6": 2, "ethnicity1": 83, "ethnicity2": 37, "edu1": 24, "edu2": 23, "edu3": 27, "edu4": 19, "Shape_Length": 24969.860971519505, "Shape_Area": 13819625.200130977, "total_2021": 128, "total_2022": 120 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.837963846330794, 29.288561117270888 ], [ -94.837790846434487, 29.28824411700236 ], [ -94.83706684625929, 29.286853117204988 ], [ -94.836991846270777, 29.286727116578373 ], [ -94.836129845908673, 29.285279116810731 ], [ -94.83582984548768, 29.284727116403783 ], [ -94.835744845037311, 29.284570116924705 ], [ -94.835184844947648, 29.283537116487761 ], [ -94.83282684481172, 29.279185115611693 ], [ -94.832732844503866, 29.278955115220771 ], [ -94.832189844017975, 29.279185115160104 ], [ -94.831748843796916, 29.279359115904732 ], [ -94.830789843717724, 29.279744116052356 ], [ -94.8305908438508, 29.279823116145394 ], [ -94.828954843388701, 29.280498115549399 ], [ -94.828878843237334, 29.280517116023727 ], [ -94.828811844004434, 29.280517115787685 ], [ -94.828764843243817, 29.280441115992645 ], [ -94.82860884310476, 29.280156116110103 ], [ -94.828512843811879, 29.279982116176853 ], [ -94.828155843708544, 29.280080116261704 ], [ -94.828079843718939, 29.280099116281836 ], [ -94.827634843198027, 29.280213115690703 ], [ -94.827784843037762, 29.280647116311609 ], [ -94.827939842794308, 29.281095116334342 ], [ -94.82808684359297, 29.281511116424756 ], [ -94.82818084382923, 29.281776116490267 ], [ -94.828194843361686, 29.281947115951642 ], [ -94.828211843323103, 29.282083116441211 ], [ -94.828330843784059, 29.282461116663981 ], [ -94.828589843838742, 29.283219116171466 ], [ -94.82815584381359, 29.28332411683677 ], [ -94.827537843732969, 29.283520116638837 ], [ -94.827692843600502, 29.284004116920681 ], [ -94.826789843061064, 29.284221116677919 ], [ -94.82653584317741, 29.284278117032351 ], [ -94.826322843240547, 29.284334116774538 ], [ -94.825400842371593, 29.284570117178486 ], [ -94.824267842923817, 29.284880117398515 ], [ -94.823101842359407, 29.285175117518953 ], [ -94.822714842593271, 29.285273117465493 ], [ -94.821972841501733, 29.285474117365794 ], [ -94.821608842123638, 29.285573117417872 ], [ -94.820829842158545, 29.285778117216367 ], [ -94.819678841520158, 29.28608011766228 ], [ -94.818548841336082, 29.286377117466056 ], [ -94.81739984099984, 29.2866791180309 ], [ -94.81626984021122, 29.286976117862544 ], [ -94.815119840030448, 29.287278117477111 ], [ -94.813964839810552, 29.287581117869045 ], [ -94.812832840080702, 29.287877118110622 ], [ -94.812976839471872, 29.288309117959461 ], [ -94.813129839821713, 29.288768117872575 ], [ -94.813268840161314, 29.289185118471185 ], [ -94.813414839637986, 29.289624118322447 ], [ -94.815277840358505, 29.289133117998176 ], [ -94.815717840941346, 29.289016118462619 ], [ -94.816157840752595, 29.290322118785827 ], [ -94.816301840397927, 29.290747118711518 ], [ -94.816608840789698, 29.291612118806295 ], [ -94.817139841297376, 29.291479118301393 ], [ -94.817740840623131, 29.291329118144699 ], [ -94.817884841430399, 29.291750118964089 ], [ -94.818036841040623, 29.292194118893914 ], [ -94.819188841562053, 29.291884118905067 ], [ -94.82010284156766, 29.291637118767134 ], [ -94.820313841512487, 29.291583118931669 ], [ -94.821200842441371, 29.291354118586021 ], [ -94.821461842498067, 29.291290118557907 ], [ -94.822107842487583, 29.291130118061179 ], [ -94.822608842775992, 29.29098811861909 ], [ -94.822466842669186, 29.290572118625096 ], [ -94.822306842194536, 29.290109118562729 ], [ -94.822167842346985, 29.289704118199154 ], [ -94.822090842502746, 29.289482117875099 ], [ -94.822012842119221, 29.289251117673537 ], [ -94.82186584174471, 29.288817117994348 ], [ -94.821723842479713, 29.28840111782722 ], [ -94.821419842280264, 29.287507117509662 ], [ -94.821741842459829, 29.287444117637076 ], [ -94.822348841786578, 29.287270117761508 ], [ -94.822573841766953, 29.287228117533999 ], [ -94.822856842511854, 29.28808511740764 ], [ -94.823995842809211, 29.287769117604729 ], [ -94.82515584337574, 29.287491117636677 ], [ -94.825695842940988, 29.287341117742827 ], [ -94.8262888426937, 29.287187117026505 ], [ -94.826455843287647, 29.287144117513634 ], [ -94.827072843097369, 29.286994117655894 ], [ -94.827423843734763, 29.286899117462248 ], [ -94.828156843964123, 29.286707117256622 ], [ -94.828581844004106, 29.286593117202607 ], [ -94.828916844200421, 29.286503117585823 ], [ -94.829674844131844, 29.286307117576857 ], [ -94.82979084422017, 29.286593117405385 ], [ -94.829836843810497, 29.286729116999492 ], [ -94.829984843691491, 29.287167117366987 ], [ -94.830131843768157, 29.287603117028642 ], [ -94.830275844356748, 29.288030117428388 ], [ -94.830434844232968, 29.288471117370339 ], [ -94.830586843869483, 29.28889211758284 ], [ -94.830700844571709, 29.289173117715176 ], [ -94.830752843948389, 29.289335117288228 ], [ -94.830927844325373, 29.289880118103397 ], [ -94.832706845243763, 29.289420117369612 ], [ -94.833454844949912, 29.289227117388894 ], [ -94.833922845668354, 29.289106117266613 ], [ -94.834690845540663, 29.28889311775859 ], [ -94.835351845457154, 29.288744117267928 ], [ -94.835428845262925, 29.288736117047101 ], [ -94.836056845296497, 29.288645117260405 ], [ -94.836788846416312, 29.288601117439221 ], [ -94.83770284570106, 29.288578117403812 ], [ -94.837963846330794, 29.288561117270888 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1431, "Tract": "48167725400", "Area_SqMi": 0.43748438499183706, "total_2009": 212, "total_2010": 218, "total_2011": 258, "total_2012": 414, "total_2013": 399, "total_2014": 397, "total_2015": 321, "total_2016": 364, "total_2017": 382, "total_2018": 173, "total_2019": 186, "total_2020": 166, "age1": 34, "age2": 98, "age3": 65, "earn1": 51, "earn2": 70, "earn3": 76, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 2, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 71, "naics_s11": 12, "naics_s12": 0, "naics_s13": 0, "naics_s14": 68, "naics_s15": 0, "naics_s16": 10, "naics_s17": 0, "naics_s18": 13, "naics_s19": 8, "naics_s20": 0, "race1": 159, "race2": 26, "race3": 0, "race4": 7, "race5": 1, "race6": 4, "ethnicity1": 133, "ethnicity2": 64, "edu1": 31, "edu2": 53, "edu3": 47, "edu4": 32, "Shape_Length": 14743.387490981411, "Shape_Area": 12196315.891564265, "total_2021": 178, "total_2022": 197 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.828589843838742, 29.283219116171466 ], [ -94.828330843784059, 29.282461116663981 ], [ -94.828211843323103, 29.282083116441211 ], [ -94.828194843361686, 29.281947115951642 ], [ -94.82818084382923, 29.281776116490267 ], [ -94.82808684359297, 29.281511116424756 ], [ -94.827939842794308, 29.281095116334342 ], [ -94.827784843037762, 29.280647116311609 ], [ -94.827634843198027, 29.280213115690703 ], [ -94.828079843718939, 29.280099116281836 ], [ -94.828155843708544, 29.280080116261704 ], [ -94.828512843811879, 29.279982116176853 ], [ -94.828385843214065, 29.279750115772146 ], [ -94.82826084307743, 29.279522115337112 ], [ -94.828162843552064, 29.279343115485783 ], [ -94.827939843008011, 29.278937116033109 ], [ -94.827712842985676, 29.278524115430237 ], [ -94.827594843156334, 29.278310115994977 ], [ -94.827490842815294, 29.278120115590447 ], [ -94.827147842718318, 29.277492115831372 ], [ -94.82707184329476, 29.277330115236669 ], [ -94.827052842786458, 29.277188115290805 ], [ -94.82709084296097, 29.276997114937771 ], [ -94.826909843373571, 29.276978115364763 ], [ -94.826671842589988, 29.276931114961716 ], [ -94.826547843268571, 29.276905115566095 ], [ -94.826409842513087, 29.276877114878239 ], [ -94.826395842545423, 29.276874115144217 ], [ -94.826195842850268, 29.276855114870305 ], [ -94.825934842248785, 29.276863115440069 ], [ -94.825609842351156, 29.276946115427261 ], [ -94.82531684290278, 29.277022115083891 ], [ -94.82416084177639, 29.277323115077785 ], [ -94.823824841878405, 29.277410115559793 ], [ -94.823033842230089, 29.277615115305839 ], [ -94.821897841877828, 29.277911115636936 ], [ -94.820743841696171, 29.278211115492635 ], [ -94.819844841183041, 29.278460115510082 ], [ -94.819594840744685, 29.278527116290075 ], [ -94.818971840711654, 29.278693115610256 ], [ -94.818456840995779, 29.278826115846474 ], [ -94.817308840933592, 29.279121116492149 ], [ -94.816184840488759, 29.279409116330736 ], [ -94.815036840167423, 29.279733116084881 ], [ -94.81388883971492, 29.280008116640847 ], [ -94.812739839800088, 29.28031311649784 ], [ -94.812894839305969, 29.280744116428792 ], [ -94.812973839012344, 29.280973116608457 ], [ -94.813045838976649, 29.281190116797546 ], [ -94.813192839885843, 29.281636116873855 ], [ -94.813239839518872, 29.281779116700172 ], [ -94.813341840026283, 29.282064116987438 ], [ -94.81343983995778, 29.282337116628671 ], [ -94.813492840084223, 29.282494117283463 ], [ -94.813636839471641, 29.282925117373832 ], [ -94.81378583964883, 29.283369117079499 ], [ -94.813930839830036, 29.283804117288081 ], [ -94.81408483992611, 29.284240117600312 ], [ -94.814234840021996, 29.28466711751344 ], [ -94.814389839726019, 29.285109117783879 ], [ -94.814537840461881, 29.285531117418603 ], [ -94.814684839854891, 29.285972117599908 ], [ -94.814831839825899, 29.286414117983075 ], [ -94.814973839753449, 29.286839117645407 ], [ -94.815119840030448, 29.287278117477111 ], [ -94.81626984021122, 29.286976117862544 ], [ -94.81739984099984, 29.2866791180309 ], [ -94.818548841336082, 29.286377117466056 ], [ -94.819678841520158, 29.28608011766228 ], [ -94.820829842158545, 29.285778117216367 ], [ -94.821608842123638, 29.285573117417872 ], [ -94.821972841501733, 29.285474117365794 ], [ -94.822714842593271, 29.285273117465493 ], [ -94.823101842359407, 29.285175117518953 ], [ -94.824267842923817, 29.284880117398515 ], [ -94.825400842371593, 29.284570117178486 ], [ -94.826322843240547, 29.284334116774538 ], [ -94.82653584317741, 29.284278117032351 ], [ -94.826789843061064, 29.284221116677919 ], [ -94.827692843600502, 29.284004116920681 ], [ -94.827537843732969, 29.283520116638837 ], [ -94.82815584381359, 29.28332411683677 ], [ -94.828589843838742, 29.283219116171466 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1432, "Tract": "48167725500", "Area_SqMi": 0.33556377779932939, "total_2009": 462, "total_2010": 512, "total_2011": 621, "total_2012": 556, "total_2013": 584, "total_2014": 706, "total_2015": 686, "total_2016": 663, "total_2017": 693, "total_2018": 688, "total_2019": 687, "total_2020": 600, "age1": 281, "age2": 312, "age3": 156, "earn1": 222, "earn2": 335, "earn3": 192, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 6, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 15, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 58, "naics_s17": 1, "naics_s18": 648, "naics_s19": 2, "naics_s20": 0, "race1": 571, "race2": 138, "race3": 9, "race4": 19, "race5": 1, "race6": 11, "ethnicity1": 494, "ethnicity2": 255, "edu1": 125, "edu2": 132, "edu3": 138, "edu4": 73, "Shape_Length": 17237.526855887547, "Shape_Area": 9354943.8018997293, "total_2021": 620, "total_2022": 749 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.826595843014104, 29.27663611557907 ], [ -94.826576842945016, 29.276465115407028 ], [ -94.826509842365198, 29.27631311486163 ], [ -94.826144843048183, 29.275622115397407 ], [ -94.826064842796299, 29.275467115419996 ], [ -94.825717842626659, 29.274792114804235 ], [ -94.825235842522133, 29.273885115013147 ], [ -94.824936842129247, 29.273328114753443 ], [ -94.824503841873337, 29.272521114272589 ], [ -94.824006842246519, 29.271588114434962 ], [ -94.823413841887614, 29.27047411408449 ], [ -94.823324841267763, 29.270305114234585 ], [ -94.822524841103103, 29.268783113627727 ], [ -94.822329841778782, 29.268669113528674 ], [ -94.822289841519449, 29.268644113905026 ], [ -94.822187841157401, 29.268708114146275 ], [ -94.821782841486268, 29.26791111329436 ], [ -94.821063840598626, 29.268354113546117 ], [ -94.819984840985526, 29.268882113614023 ], [ -94.819326840077935, 29.268928113673688 ], [ -94.818749840187678, 29.269290114074515 ], [ -94.819167840986779, 29.270178113818389 ], [ -94.81916984011437, 29.270225113728511 ], [ -94.819435840589009, 29.270708114146924 ], [ -94.820127840615513, 29.272787114211354 ], [ -94.820243841139998, 29.273120114642847 ], [ -94.820701841523473, 29.274434115379016 ], [ -94.819568840517405, 29.274734114923717 ], [ -94.818427840832285, 29.275036115048053 ], [ -94.818156840337664, 29.275108115509074 ], [ -94.816705839997297, 29.275487115077599 ], [ -94.816602839991305, 29.27551411524799 ], [ -94.815835840464288, 29.275715115838036 ], [ -94.814986840191281, 29.275940115210727 ], [ -94.813840839979974, 29.276245115306338 ], [ -94.813239838903328, 29.276406115443731 ], [ -94.811559838821935, 29.276838115351627 ], [ -94.810361839091385, 29.277163116009994 ], [ -94.809276838209342, 29.277440115576525 ], [ -94.809407838898466, 29.27787111635546 ], [ -94.809427838243096, 29.277937115847596 ], [ -94.809463838278575, 29.278053116147859 ], [ -94.809558838025126, 29.278314115676537 ], [ -94.809706838630973, 29.278721115769375 ], [ -94.809725838501194, 29.278751115827095 ], [ -94.809795838329265, 29.278968116640947 ], [ -94.809867838389948, 29.279178115962864 ], [ -94.810017838662702, 29.27961911665826 ], [ -94.810087838357774, 29.279825116309411 ], [ -94.810161838205516, 29.28004711640234 ], [ -94.812445838841612, 29.279452115819957 ], [ -94.812595839172985, 29.279890116516167 ], [ -94.812739839800088, 29.28031311649784 ], [ -94.81388883971492, 29.280008116640847 ], [ -94.815036840167423, 29.279733116084881 ], [ -94.816184840488759, 29.279409116330736 ], [ -94.817308840933592, 29.279121116492149 ], [ -94.818456840995779, 29.278826115846474 ], [ -94.818971840711654, 29.278693115610256 ], [ -94.819594840744685, 29.278527116290075 ], [ -94.819844841183041, 29.278460115510082 ], [ -94.820743841696171, 29.278211115492635 ], [ -94.821897841877828, 29.277911115636936 ], [ -94.823033842230089, 29.277615115305839 ], [ -94.823824841878405, 29.277410115559793 ], [ -94.82416084177639, 29.277323115077785 ], [ -94.82531684290278, 29.277022115083891 ], [ -94.825609842351156, 29.276946115427261 ], [ -94.825934842248785, 29.276863115440069 ], [ -94.826195842850268, 29.276855114870305 ], [ -94.826395842545423, 29.276874115144217 ], [ -94.826409842513087, 29.276877114878239 ], [ -94.826547843268571, 29.276905115566095 ], [ -94.826566842631763, 29.276807114851717 ], [ -94.826595843014104, 29.27663611557907 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1433, "Tract": "48167725600", "Area_SqMi": 0.81399491503539945, "total_2009": 1729, "total_2010": 1907, "total_2011": 2047, "total_2012": 2107, "total_2013": 2189, "total_2014": 2153, "total_2015": 2161, "total_2016": 2417, "total_2017": 2484, "total_2018": 2364, "total_2019": 2317, "total_2020": 2051, "age1": 672, "age2": 960, "age3": 505, "earn1": 635, "earn2": 1030, "earn3": 472, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 37, "naics_s05": 0, "naics_s06": 17, "naics_s07": 813, "naics_s08": 0, "naics_s09": 8, "naics_s10": 39, "naics_s11": 19, "naics_s12": 31, "naics_s13": 0, "naics_s14": 77, "naics_s15": 183, "naics_s16": 89, "naics_s17": 13, "naics_s18": 767, "naics_s19": 43, "naics_s20": 1, "race1": 1573, "race2": 383, "race3": 23, "race4": 123, "race5": 5, "race6": 30, "ethnicity1": 1397, "ethnicity2": 740, "edu1": 349, "edu2": 442, "edu3": 436, "edu4": 238, "Shape_Length": 24737.516117685918, "Shape_Area": 22692785.064966343, "total_2021": 1925, "total_2022": 2137 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.846068847348604, 29.257580110931549 ], [ -94.845171846602852, 29.255959110086479 ], [ -94.844825846842099, 29.255895110261129 ], [ -94.844308846375, 29.25514310975711 ], [ -94.841091845455338, 29.257058110242792 ], [ -94.838859845599004, 29.258433111121551 ], [ -94.835955844647572, 29.259959111478139 ], [ -94.83311984387268, 29.261448111689528 ], [ -94.828143842694814, 29.264061112873918 ], [ -94.827011842664916, 29.264497112698681 ], [ -94.826169841935865, 29.265002113188118 ], [ -94.825458842011216, 29.265140113061936 ], [ -94.825116842058776, 29.265393112525608 ], [ -94.825037842245109, 29.265645113319248 ], [ -94.822695841065283, 29.267092113613955 ], [ -94.822221841415285, 29.267643113474332 ], [ -94.821782841486268, 29.26791111329436 ], [ -94.822187841157401, 29.268708114146275 ], [ -94.822289841519449, 29.268644113905026 ], [ -94.822329841778782, 29.268669113528674 ], [ -94.822524841103103, 29.268783113627727 ], [ -94.823324841267763, 29.270305114234585 ], [ -94.823413841887614, 29.27047411408449 ], [ -94.824006842246519, 29.271588114434962 ], [ -94.824503841873337, 29.272521114272589 ], [ -94.824936842129247, 29.273328114753443 ], [ -94.825235842522133, 29.273885115013147 ], [ -94.825717842626659, 29.274792114804235 ], [ -94.826064842796299, 29.275467115419996 ], [ -94.826144843048183, 29.275622115397407 ], [ -94.826509842365198, 29.27631311486163 ], [ -94.826576842945016, 29.276465115407028 ], [ -94.826595843014104, 29.27663611557907 ], [ -94.826566842631763, 29.276807114851717 ], [ -94.826547843268571, 29.276905115566095 ], [ -94.826671842589988, 29.276931114961716 ], [ -94.826909843373571, 29.276978115364763 ], [ -94.82709084296097, 29.276997114937771 ], [ -94.827346843217995, 29.277007115569933 ], [ -94.827432842733032, 29.277007115288367 ], [ -94.827537842802329, 29.276988114877394 ], [ -94.827736843092623, 29.276950115422046 ], [ -94.828031843619158, 29.276826115575247 ], [ -94.828497843158232, 29.276646115032563 ], [ -94.82904084308943, 29.276422115485637 ], [ -94.829144843654959, 29.276379115199695 ], [ -94.829972843271875, 29.276056115297717 ], [ -94.830666844243439, 29.275789114626441 ], [ -94.831133844084832, 29.275547114730333 ], [ -94.831618843806936, 29.275295114818203 ], [ -94.832312844484335, 29.275009114345725 ], [ -94.832469844728124, 29.274945114534798 ], [ -94.833018844506526, 29.274719114465359 ], [ -94.833569844756951, 29.274493114222398 ], [ -94.833749844864528, 29.274419114290939 ], [ -94.834496844997688, 29.274106114521533 ], [ -94.835028844868162, 29.273882114271469 ], [ -94.835176845300523, 29.273820114563474 ], [ -94.837056844854999, 29.273061114195031 ], [ -94.837593845796249, 29.272845114448636 ], [ -94.837698845724887, 29.272775114379055 ], [ -94.837907845180453, 29.272649113745665 ], [ -94.838012845359913, 29.27254511407628 ], [ -94.838075845854164, 29.272482113825109 ], [ -94.838207845950492, 29.272503113741678 ], [ -94.838326846038086, 29.272489114283296 ], [ -94.838661845526374, 29.272363114104191 ], [ -94.838863845946648, 29.272321113700336 ], [ -94.839091846056036, 29.272227114134179 ], [ -94.838542845460864, 29.271191114071364 ], [ -94.838472845840158, 29.27096111374766 ], [ -94.838377845682686, 29.270778113271149 ], [ -94.837927845439822, 29.269918113403495 ], [ -94.83759784578973, 29.269285113197451 ], [ -94.837323845055522, 29.268761113429022 ], [ -94.836967845223569, 29.26807911297049 ], [ -94.836930845459463, 29.268009112842062 ], [ -94.836847845008833, 29.267772113403108 ], [ -94.836831845154592, 29.267715113350551 ], [ -94.836783844539866, 29.267533113175396 ], [ -94.83674684524928, 29.267395113277932 ], [ -94.836707844851617, 29.267249112624807 ], [ -94.83670084488999, 29.266976113244898 ], [ -94.836686844669075, 29.266690112972075 ], [ -94.836721845228126, 29.266460112688918 ], [ -94.836874844484043, 29.265930112866855 ], [ -94.836979845403533, 29.265644112171611 ], [ -94.83719684482719, 29.265178112222554 ], [ -94.83739184537194, 29.264772112277093 ], [ -94.838097844698808, 29.263303112024065 ], [ -94.838168845424974, 29.263156112455722 ], [ -94.83867484499838, 29.262102111504753 ], [ -94.838904844912705, 29.261625111271769 ], [ -94.839109845216441, 29.261198111943958 ], [ -94.83934884532907, 29.260879111402861 ], [ -94.839793845981347, 29.260411111111438 ], [ -94.840077845866475, 29.260210111629082 ], [ -94.840421845215303, 29.259967111086986 ], [ -94.84081884600262, 29.259750111626577 ], [ -94.842015846442322, 29.259215111378303 ], [ -94.84392184614471, 29.258457110876037 ], [ -94.844021846192007, 29.258417110686501 ], [ -94.844653846994035, 29.258158110900666 ], [ -94.846068847348604, 29.257580110931549 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1434, "Tract": "48167725800", "Area_SqMi": 2.5455077976726868, "total_2009": 623, "total_2010": 672, "total_2011": 784, "total_2012": 679, "total_2013": 819, "total_2014": 701, "total_2015": 790, "total_2016": 858, "total_2017": 874, "total_2018": 879, "total_2019": 782, "total_2020": 751, "age1": 137, "age2": 412, "age3": 218, "earn1": 125, "earn2": 269, "earn3": 373, "naics_s01": 0, "naics_s02": 0, "naics_s03": 90, "naics_s04": 23, "naics_s05": 35, "naics_s06": 0, "naics_s07": 59, "naics_s08": 47, "naics_s09": 66, "naics_s10": 57, "naics_s11": 97, "naics_s12": 66, "naics_s13": 0, "naics_s14": 14, "naics_s15": 7, "naics_s16": 44, "naics_s17": 0, "naics_s18": 150, "naics_s19": 12, "naics_s20": 0, "race1": 590, "race2": 116, "race3": 10, "race4": 37, "race5": 0, "race6": 14, "ethnicity1": 563, "ethnicity2": 204, "edu1": 132, "edu2": 179, "edu3": 205, "edu4": 114, "Shape_Length": 53097.566389834807, "Shape_Area": 70964400.718977481, "total_2021": 746, "total_2022": 767 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.889666859859858, 29.290564116484862 ], [ -94.890186859709345, 29.289678116028277 ], [ -94.884117857955843, 29.278274113913607 ], [ -94.878865856621317, 29.278733114235422 ], [ -94.868022854080635, 29.280167114703584 ], [ -94.851824849239634, 29.282308115812178 ], [ -94.848876848249205, 29.27668911443919 ], [ -94.847362848350755, 29.273116113855249 ], [ -94.848322848272517, 29.272856113946666 ], [ -94.848220848502464, 29.272654114011484 ], [ -94.848153848227867, 29.272521113897511 ], [ -94.847377848072583, 29.270932113017405 ], [ -94.847228847823175, 29.270685113561523 ], [ -94.846345847039771, 29.269225113080125 ], [ -94.84615784774978, 29.269303113032585 ], [ -94.845127847033424, 29.269729113194767 ], [ -94.84381884653429, 29.270271113600394 ], [ -94.843720846619561, 29.270312113492906 ], [ -94.843107847146811, 29.270565113069512 ], [ -94.842961846844588, 29.270625113336369 ], [ -94.84205784694872, 29.270998113306359 ], [ -94.841100846709338, 29.271394113945128 ], [ -94.84021184618544, 29.271759114060238 ], [ -94.839623846153088, 29.272005114094263 ], [ -94.839091846056036, 29.272227114134179 ], [ -94.838863845946648, 29.272321113700336 ], [ -94.838661845526374, 29.272363114104191 ], [ -94.838326846038086, 29.272489114283296 ], [ -94.838207845950492, 29.272503113741678 ], [ -94.838075845854164, 29.272482113825109 ], [ -94.838012845359913, 29.27254511407628 ], [ -94.837907845180453, 29.272649113745665 ], [ -94.837698845724887, 29.272775114379055 ], [ -94.837593845796249, 29.272845114448636 ], [ -94.837056844854999, 29.273061114195031 ], [ -94.835176845300523, 29.273820114563474 ], [ -94.835028844868162, 29.273882114271469 ], [ -94.834496844997688, 29.274106114521533 ], [ -94.833749844864528, 29.274419114290939 ], [ -94.833569844756951, 29.274493114222398 ], [ -94.833018844506526, 29.274719114465359 ], [ -94.832469844728124, 29.274945114534798 ], [ -94.832312844484335, 29.275009114345725 ], [ -94.831618843806936, 29.275295114818203 ], [ -94.831133844084832, 29.275547114730333 ], [ -94.830666844243439, 29.275789114626441 ], [ -94.829972843271875, 29.276056115297717 ], [ -94.829144843654959, 29.276379115199695 ], [ -94.82904084308943, 29.276422115485637 ], [ -94.828497843158232, 29.276646115032563 ], [ -94.828031843619158, 29.276826115575247 ], [ -94.827736843092623, 29.276950115422046 ], [ -94.827537842802329, 29.276988114877394 ], [ -94.827432842733032, 29.277007115288367 ], [ -94.827346843217995, 29.277007115569933 ], [ -94.82709084296097, 29.276997114937771 ], [ -94.827052842786458, 29.277188115290805 ], [ -94.82707184329476, 29.277330115236669 ], [ -94.827147842718318, 29.277492115831372 ], [ -94.827490842815294, 29.278120115590447 ], [ -94.827594843156334, 29.278310115994977 ], [ -94.827712842985676, 29.278524115430237 ], [ -94.827939843008011, 29.278937116033109 ], [ -94.828162843552064, 29.279343115485783 ], [ -94.82826084307743, 29.279522115337112 ], [ -94.828385843214065, 29.279750115772146 ], [ -94.828512843811879, 29.279982116176853 ], [ -94.82860884310476, 29.280156116110103 ], [ -94.828764843243817, 29.280441115992645 ], [ -94.828811844004434, 29.280517115787685 ], [ -94.828878843237334, 29.280517116023727 ], [ -94.828954843388701, 29.280498115549399 ], [ -94.8305908438508, 29.279823116145394 ], [ -94.830789843717724, 29.279744116052356 ], [ -94.831748843796916, 29.279359115904732 ], [ -94.832189844017975, 29.279185115160104 ], [ -94.832732844503866, 29.278955115220771 ], [ -94.83282684481172, 29.279185115611693 ], [ -94.835184844947648, 29.283537116487761 ], [ -94.835744845037311, 29.284570116924705 ], [ -94.83582984548768, 29.284727116403783 ], [ -94.836129845908673, 29.285279116810731 ], [ -94.836991846270777, 29.286727116578373 ], [ -94.83706684625929, 29.286853117204988 ], [ -94.837790846434487, 29.28824411700236 ], [ -94.837963846330794, 29.288561117270888 ], [ -94.838233846533115, 29.288558116938788 ], [ -94.839508846554722, 29.288542116956197 ], [ -94.840667847208053, 29.288535117307877 ], [ -94.841198846921756, 29.288532117305007 ], [ -94.842533847741748, 29.288580117348346 ], [ -94.844316847974881, 29.288656117507379 ], [ -94.845427848610655, 29.288709117096531 ], [ -94.845687848719024, 29.28872811678141 ], [ -94.845962848678809, 29.288748116822315 ], [ -94.846379848094671, 29.288761116860272 ], [ -94.846905848569648, 29.288778117073324 ], [ -94.848222848913636, 29.288741117190177 ], [ -94.849044849373101, 29.288631117130489 ], [ -94.850320849686554, 29.288434116942739 ], [ -94.85150685013538, 29.288205117223455 ], [ -94.852602849936702, 29.287925116374261 ], [ -94.853339850649107, 29.287662116642405 ], [ -94.85454085028779, 29.287351116871427 ], [ -94.854580850491004, 29.287341116686235 ], [ -94.85676585096067, 29.286617116002752 ], [ -94.857518851034868, 29.286346116371789 ], [ -94.858390851337717, 29.285989115843755 ], [ -94.858882851765898, 29.285838116458812 ], [ -94.859353851197952, 29.28569411606199 ], [ -94.859936851499057, 29.285539116292277 ], [ -94.860440852050786, 29.285433116229051 ], [ -94.86099685201637, 29.285367116317932 ], [ -94.861568851974468, 29.285310115852354 ], [ -94.862297852533217, 29.285252115900427 ], [ -94.862818851978162, 29.285256115624961 ], [ -94.862951852316939, 29.285255116258568 ], [ -94.863097852130181, 29.285249116276699 ], [ -94.863584852979585, 29.285270115964902 ], [ -94.864078852928955, 29.285314116163423 ], [ -94.864584852637535, 29.285375115993862 ], [ -94.865259852807384, 29.285504115516968 ], [ -94.866041853281132, 29.285745116177601 ], [ -94.866908853577328, 29.28605811618668 ], [ -94.867596853564876, 29.286362116226673 ], [ -94.867996853620426, 29.286559115847929 ], [ -94.868962853939607, 29.287010116449707 ], [ -94.869541853891661, 29.287266116042915 ], [ -94.870713854543268, 29.287829115929572 ], [ -94.87203685502044, 29.288549116461517 ], [ -94.873009855655809, 29.289095116677924 ], [ -94.873650855192679, 29.289442116427718 ], [ -94.873907855505863, 29.289595116473347 ], [ -94.874196855127408, 29.289747116062106 ], [ -94.877270856384541, 29.291270116385991 ], [ -94.877843856930838, 29.29156111702623 ], [ -94.880502857429846, 29.292851116660575 ], [ -94.884004858091487, 29.29459911726903 ], [ -94.886640859113115, 29.295876117607019 ], [ -94.886784858704175, 29.295629117437386 ], [ -94.886979859541199, 29.295300116989132 ], [ -94.887099859054587, 29.295099117398141 ], [ -94.887023859364376, 29.295062117478704 ], [ -94.889666859859858, 29.290564116484862 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1435, "Tract": "48167725900", "Area_SqMi": 4.077340227439687, "total_2009": 1187, "total_2010": 1548, "total_2011": 1494, "total_2012": 1710, "total_2013": 1832, "total_2014": 1842, "total_2015": 1760, "total_2016": 1840, "total_2017": 1816, "total_2018": 1894, "total_2019": 1827, "total_2020": 1631, "age1": 800, "age2": 803, "age3": 472, "earn1": 642, "earn2": 750, "earn3": 683, "naics_s01": 0, "naics_s02": 20, "naics_s03": 0, "naics_s04": 141, "naics_s05": 23, "naics_s06": 9, "naics_s07": 24, "naics_s08": 97, "naics_s09": 0, "naics_s10": 26, "naics_s11": 54, "naics_s12": 37, "naics_s13": 0, "naics_s14": 150, "naics_s15": 0, "naics_s16": 69, "naics_s17": 1169, "naics_s18": 225, "naics_s19": 31, "naics_s20": 0, "race1": 1558, "race2": 382, "race3": 28, "race4": 77, "race5": 2, "race6": 28, "ethnicity1": 1474, "ethnicity2": 601, "edu1": 279, "edu2": 347, "edu3": 395, "edu4": 254, "Shape_Length": 51366.84863876109, "Shape_Area": 113669267.10347567, "total_2021": 1485, "total_2022": 2075 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.884117857955843, 29.278274113913607 ], [ -94.882083856981765, 29.27444211341658 ], [ -94.881242857155684, 29.272862112258043 ], [ -94.881114856485624, 29.272622112271854 ], [ -94.881017857033115, 29.272449112970197 ], [ -94.880982856861678, 29.27241911240219 ], [ -94.880916856100797, 29.272361112792336 ], [ -94.879476856012204, 29.2696441117711 ], [ -94.878599855485618, 29.26799611214323 ], [ -94.878491856259927, 29.267793111790777 ], [ -94.878070855658649, 29.267003111270604 ], [ -94.877679855889198, 29.266267111877291 ], [ -94.877308855230453, 29.265569111624643 ], [ -94.877150855785146, 29.265281111148628 ], [ -94.877033855188387, 29.26513011160834 ], [ -94.876971854876231, 29.265034111015574 ], [ -94.876854855080495, 29.264738110835179 ], [ -94.876023854466268, 29.263160110806123 ], [ -94.873292853932384, 29.258020109848452 ], [ -94.871648853509583, 29.254932109636663 ], [ -94.8702518527747, 29.255503109673246 ], [ -94.869518852469653, 29.255803109326038 ], [ -94.869072852407925, 29.255985109682364 ], [ -94.867618852522227, 29.256580109485437 ], [ -94.867349852390561, 29.25607310944504 ], [ -94.867051852490093, 29.255511109540869 ], [ -94.86578785200831, 29.253123108903839 ], [ -94.865742852179508, 29.253039108952603 ], [ -94.865691851631965, 29.252975108758122 ], [ -94.86559585155257, 29.252915108577401 ], [ -94.86574985229656, 29.252891108769919 ], [ -94.866064852290108, 29.252827108878325 ], [ -94.866231851542807, 29.252789108740476 ], [ -94.866541852547385, 29.252717109332234 ], [ -94.866809852439076, 29.252639109234714 ], [ -94.866895852041154, 29.25261410935525 ], [ -94.866941851910653, 29.252599109315494 ], [ -94.867371852496618, 29.252453108764186 ], [ -94.86799685268511, 29.252209108830243 ], [ -94.86879285266123, 29.251891108538764 ], [ -94.86940685273737, 29.251642108707749 ], [ -94.869880852484755, 29.251463108770839 ], [ -94.870971852678821, 29.251032108154561 ], [ -94.871529853314243, 29.250811108081344 ], [ -94.872540853257703, 29.25039710796289 ], [ -94.872605853953544, 29.250370108099656 ], [ -94.873158853344833, 29.250144107990476 ], [ -94.875067854237315, 29.249313107917875 ], [ -94.87528485400027, 29.249211107928257 ], [ -94.875387854436525, 29.24912110811179 ], [ -94.875515853887009, 29.249006107927539 ], [ -94.875605853861003, 29.248877108216558 ], [ -94.875656854587447, 29.248724107545247 ], [ -94.87565685427424, 29.248608107410362 ], [ -94.875643853853433, 29.248454107956785 ], [ -94.874451853556195, 29.246378106998467 ], [ -94.87414585411112, 29.245787107228242 ], [ -94.872798853753821, 29.243186106816147 ], [ -94.872500852744281, 29.242623106688104 ], [ -94.872386853449385, 29.24240810668282 ], [ -94.871990852727222, 29.241661106394886 ], [ -94.871835852562455, 29.241495106131449 ], [ -94.871501852562275, 29.241139105958396 ], [ -94.870970852837615, 29.240286106437406 ], [ -94.869351851992164, 29.241133106102129 ], [ -94.868644851651339, 29.240939106464104 ], [ -94.86764085137834, 29.241166106924577 ], [ -94.85811484914916, 29.246913108043444 ], [ -94.854765848916315, 29.248959108274299 ], [ -94.854091848236607, 29.249183108174744 ], [ -94.853538848594411, 29.249688108959237 ], [ -94.852591848478227, 29.250239108816345 ], [ -94.852062848228343, 29.250415108729804 ], [ -94.851696847754184, 29.250537109219064 ], [ -94.851354847575223, 29.250859108743189 ], [ -94.850038847569522, 29.251731109623712 ], [ -94.844308846375, 29.25514310975711 ], [ -94.844825846842099, 29.255895110261129 ], [ -94.845171846602852, 29.255959110086479 ], [ -94.846068847348604, 29.257580110931549 ], [ -94.846472847643724, 29.258310110683553 ], [ -94.846844846797879, 29.258983110990904 ], [ -94.847034847828638, 29.259324110748551 ], [ -94.847300847573067, 29.259829110702057 ], [ -94.847756847615827, 29.260660111460389 ], [ -94.848087847418356, 29.26128611174952 ], [ -94.848888848433177, 29.262798111224352 ], [ -94.849608848606309, 29.264158112247433 ], [ -94.849682847786582, 29.264467111929651 ], [ -94.849711848328567, 29.264732112319354 ], [ -94.84970284862527, 29.264938112182797 ], [ -94.849696847986166, 29.265055111676862 ], [ -94.849682847993165, 29.26515811201357 ], [ -94.849418847832169, 29.265925112480257 ], [ -94.849221847655315, 29.266493112732622 ], [ -94.849068848260615, 29.266995112503068 ], [ -94.848922847955038, 29.267395112782676 ], [ -94.848835848643745, 29.267551112480643 ], [ -94.848774847956761, 29.267661113023046 ], [ -94.848566848531462, 29.267945113014505 ], [ -94.848315847687516, 29.268251112517781 ], [ -94.848049848098967, 29.268453112632965 ], [ -94.847998848214019, 29.268491112602842 ], [ -94.8477588483114, 29.268655112849487 ], [ -94.847430847561753, 29.268775113308084 ], [ -94.846502847347566, 29.269153112981822 ], [ -94.846345847039771, 29.269225113080125 ], [ -94.847228847823175, 29.270685113561523 ], [ -94.847377848072583, 29.270932113017405 ], [ -94.848153848227867, 29.272521113897511 ], [ -94.848220848502464, 29.272654114011484 ], [ -94.848322848272517, 29.272856113946666 ], [ -94.847362848350755, 29.273116113855249 ], [ -94.848876848249205, 29.27668911443919 ], [ -94.851824849239634, 29.282308115812178 ], [ -94.868022854080635, 29.280167114703584 ], [ -94.878865856621317, 29.278733114235422 ], [ -94.884117857955843, 29.278274113913607 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1436, "Tract": "48201534201", "Area_SqMi": 1.2832044509270095, "total_2009": 1450, "total_2010": 2044, "total_2011": 3415, "total_2012": 2635, "total_2013": 2891, "total_2014": 3497, "total_2015": 4057, "total_2016": 3956, "total_2017": 4292, "total_2018": 4624, "total_2019": 7293, "total_2020": 6061, "age1": 1398, "age2": 3622, "age3": 1258, "earn1": 588, "earn2": 1331, "earn3": 4359, "naics_s01": 0, "naics_s02": 19, "naics_s03": 1, "naics_s04": 3232, "naics_s05": 403, "naics_s06": 780, "naics_s07": 190, "naics_s08": 258, "naics_s09": 28, "naics_s10": 27, "naics_s11": 9, "naics_s12": 554, "naics_s13": 0, "naics_s14": 312, "naics_s15": 0, "naics_s16": 118, "naics_s17": 39, "naics_s18": 197, "naics_s19": 111, "naics_s20": 0, "race1": 5006, "race2": 713, "race3": 53, "race4": 429, "race5": 6, "race6": 71, "ethnicity1": 3511, "ethnicity2": 2767, "edu1": 1215, "edu2": 1345, "edu3": 1385, "edu4": 935, "Shape_Length": 28073.899827986199, "Shape_Area": 35773543.865477853, "total_2021": 5701, "total_2022": 6278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.556024058297311, 29.919832223658005 ], [ -95.556001058173777, 29.919243223138281 ], [ -95.555955057809129, 29.918836223210722 ], [ -95.5558830580635, 29.917589222809763 ], [ -95.55588605805815, 29.913276221656659 ], [ -95.555887057734864, 29.911688221369676 ], [ -95.555889057977808, 29.909609221421061 ], [ -95.555816058008773, 29.908949221061604 ], [ -95.555799057803924, 29.908788220767065 ], [ -95.555657057648304, 29.908127220936347 ], [ -95.555535057516252, 29.907695221145975 ], [ -95.555326057063382, 29.907130220894722 ], [ -95.5546790571168, 29.905946220457732 ], [ -95.55431805693182, 29.905409220141987 ], [ -95.553932056443998, 29.904945220305123 ], [ -95.553229056817159, 29.904233220243647 ], [ -95.552440056248514, 29.903493219820358 ], [ -95.552084056388367, 29.903125220067686 ], [ -95.551782056072867, 29.902813219563022 ], [ -95.55139305599144, 29.902827220274993 ], [ -95.551235055896115, 29.902824220287499 ], [ -95.551133056606787, 29.90281921964198 ], [ -95.551036055922339, 29.90280521954605 ], [ -95.550586056378933, 29.902808219912476 ], [ -95.550270056242994, 29.902802219655133 ], [ -95.550187055498753, 29.902801220454222 ], [ -95.550072056116576, 29.902809219592584 ], [ -95.549959055738043, 29.90280322038037 ], [ -95.549841055890255, 29.902810219737987 ], [ -95.549726055253601, 29.90281121990019 ], [ -95.549613055205128, 29.902806220469529 ], [ -95.549346055969906, 29.902808220262347 ], [ -95.549337055336252, 29.902694219699438 ], [ -95.548959055326748, 29.901485219672526 ], [ -95.544441054439517, 29.901472219883352 ], [ -95.543473054503224, 29.901473219745593 ], [ -95.543353054107413, 29.901476220244628 ], [ -95.542130053899086, 29.90148021983061 ], [ -95.539968053223504, 29.901489220329324 ], [ -95.538463053287884, 29.90148421994127 ], [ -95.538466052333931, 29.901954220053291 ], [ -95.538464053022707, 29.902293220372542 ], [ -95.538472052523545, 29.90271722077598 ], [ -95.538473052915023, 29.902791219998303 ], [ -95.538477052814812, 29.902948220068527 ], [ -95.538477053392398, 29.903355220493996 ], [ -95.538490052999407, 29.904205220425247 ], [ -95.538490053428347, 29.904293220932548 ], [ -95.538493053445521, 29.904686220889989 ], [ -95.538501052997887, 29.904811220796027 ], [ -95.538507052941313, 29.90514722114543 ], [ -95.538507052537355, 29.906048220791167 ], [ -95.538511053341622, 29.906713221076433 ], [ -95.538516053240556, 29.907183221444068 ], [ -95.53852305361049, 29.907723221098454 ], [ -95.538528053555964, 29.908092221874053 ], [ -95.538523053037011, 29.908169221622476 ], [ -95.538529053641398, 29.908643221662889 ], [ -95.538534053202724, 29.909297222049275 ], [ -95.538532053059981, 29.909682221837173 ], [ -95.538539053582113, 29.910393222267452 ], [ -95.538539052938901, 29.910415221879244 ], [ -95.538548053706748, 29.911557222251712 ], [ -95.538546052932517, 29.912085221955703 ], [ -95.538555053084906, 29.912790222463368 ], [ -95.538564053261553, 29.914768222961857 ], [ -95.538569053430891, 29.91487922270457 ], [ -95.538583053390312, 29.914982222988129 ], [ -95.538610053077733, 29.915075223048095 ], [ -95.538649053742986, 29.915163222708532 ], [ -95.538704052993594, 29.915243222875571 ], [ -95.53877505313767, 29.915311223335163 ], [ -95.538859053711676, 29.91536722340301 ], [ -95.538953053377199, 29.915412223341516 ], [ -95.539004053763634, 29.915428222693404 ], [ -95.539055053308658, 29.915445222969709 ], [ -95.539167053489706, 29.915463223108819 ], [ -95.539416053405077, 29.915469223178714 ], [ -95.543875054927057, 29.915447222886119 ], [ -95.544371054951114, 29.915439222756394 ], [ -95.54547905521126, 29.915442222812132 ], [ -95.546541055595966, 29.915435222668684 ], [ -95.547154055526661, 29.915431222893172 ], [ -95.547290055411253, 29.91543422259771 ], [ -95.547411055493157, 29.915446222244558 ], [ -95.547513055592177, 29.915471223012354 ], [ -95.547597055628003, 29.915509222685369 ], [ -95.54766705527598, 29.915558222970333 ], [ -95.5477240560258, 29.915620222694518 ], [ -95.547764056354268, 29.915691222496701 ], [ -95.547790055836657, 29.915768222645777 ], [ -95.547806055508417, 29.915850223110571 ], [ -95.54782205565256, 29.916108222580611 ], [ -95.547829056340149, 29.917361223326871 ], [ -95.547831056069583, 29.918028223001439 ], [ -95.547835056331337, 29.918834223667034 ], [ -95.547845055605094, 29.919744223973321 ], [ -95.547847056041334, 29.920200223207871 ], [ -95.547849055623757, 29.920723223625593 ], [ -95.547856056167205, 29.921349224195797 ], [ -95.547857056479344, 29.921818224405698 ], [ -95.547861056585447, 29.921949224005758 ], [ -95.547854056351852, 29.922078223960551 ], [ -95.54785605577338, 29.92218522392908 ], [ -95.547857056317582, 29.922250223708257 ], [ -95.547865056428876, 29.922993224040606 ], [ -95.547862055850885, 29.923276223928141 ], [ -95.54786905644346, 29.923563224016576 ], [ -95.54787905602214, 29.924381224754836 ], [ -95.547879056518994, 29.924693224859393 ], [ -95.547883055895099, 29.924842224454206 ], [ -95.547875056021667, 29.924990224955355 ], [ -95.547880056305289, 29.925219224225476 ], [ -95.547887056336492, 29.925514224571842 ], [ -95.547888056082357, 29.925740224533683 ], [ -95.547892056455851, 29.926802225196194 ], [ -95.54789705607854, 29.927701224729788 ], [ -95.54790605597131, 29.928058225638448 ], [ -95.547906056797416, 29.928120225581317 ], [ -95.547902056751056, 29.928356225494792 ], [ -95.55055105713376, 29.927270225010322 ], [ -95.551653057631327, 29.926796225283915 ], [ -95.551719056969262, 29.926768225120025 ], [ -95.552233057538146, 29.926486224576205 ], [ -95.55226005732429, 29.926467224754369 ], [ -95.552980057191192, 29.925955224988069 ], [ -95.553512057416398, 29.925519224653556 ], [ -95.554073057390553, 29.924952224691918 ], [ -95.554345057693396, 29.924599224214798 ], [ -95.554676057868917, 29.924170224258415 ], [ -95.554783057629393, 29.923991224038978 ], [ -95.554853057681783, 29.923880223794701 ], [ -95.554928058510129, 29.923756223869685 ], [ -95.554964058197839, 29.923689224351239 ], [ -95.555174058054504, 29.923357224174872 ], [ -95.555441058134008, 29.922784224181644 ], [ -95.555611058328168, 29.922347224244653 ], [ -95.555775058029695, 29.921894223514961 ], [ -95.555878058368023, 29.92142922347664 ], [ -95.555969058197192, 29.920939223530695 ], [ -95.555996057719355, 29.920510223820344 ], [ -95.556024058297311, 29.919832223658005 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1437, "Tract": "48201551703", "Area_SqMi": 1.2017736811482236, "total_2009": 1824, "total_2010": 2047, "total_2011": 2218, "total_2012": 3107, "total_2013": 3935, "total_2014": 3989, "total_2015": 4117, "total_2016": 3624, "total_2017": 3354, "total_2018": 3808, "total_2019": 3749, "total_2020": 3970, "age1": 903, "age2": 2677, "age3": 1000, "earn1": 554, "earn2": 1315, "earn3": 2711, "naics_s01": 0, "naics_s02": 181, "naics_s03": 8, "naics_s04": 246, "naics_s05": 585, "naics_s06": 225, "naics_s07": 505, "naics_s08": 222, "naics_s09": 20, "naics_s10": 43, "naics_s11": 74, "naics_s12": 335, "naics_s13": 1, "naics_s14": 1875, "naics_s15": 16, "naics_s16": 70, "naics_s17": 0, "naics_s18": 159, "naics_s19": 13, "naics_s20": 2, "race1": 2865, "race2": 941, "race3": 38, "race4": 668, "race5": 9, "race6": 59, "ethnicity1": 3193, "ethnicity2": 1387, "edu1": 780, "edu2": 942, "edu3": 1098, "edu4": 857, "Shape_Length": 26869.545635417438, "Shape_Area": 33503393.374200664, "total_2021": 4372, "total_2022": 4580 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.57180006140068, 29.911110220855505 ], [ -95.571863061413623, 29.911044220733398 ], [ -95.571775062143772, 29.910857220501374 ], [ -95.571738062021964, 29.910823221113937 ], [ -95.571680061426136, 29.910769221147543 ], [ -95.57122006164515, 29.910165220884828 ], [ -95.571115061914455, 29.910011220888673 ], [ -95.570904061024308, 29.909698220902904 ], [ -95.570639061766215, 29.909346220281343 ], [ -95.570559061548082, 29.90914422041914 ], [ -95.57002506090295, 29.909298221045994 ], [ -95.569584060654194, 29.909432221011581 ], [ -95.569127061216207, 29.909554220515517 ], [ -95.568887060876108, 29.909607220792619 ], [ -95.568691061133293, 29.909646221147639 ], [ -95.568378061200804, 29.909692221070642 ], [ -95.568046060632284, 29.909728221182554 ], [ -95.56787506053729, 29.909742221000837 ], [ -95.567596060389775, 29.909751220908475 ], [ -95.567273060341748, 29.909749220563512 ], [ -95.566925060117129, 29.90973222076676 ], [ -95.566804060437434, 29.909721220588075 ], [ -95.566311059881144, 29.909653220822076 ], [ -95.565953060448848, 29.909588220690448 ], [ -95.565612059596276, 29.909506221273055 ], [ -95.565290060032581, 29.909409220816599 ], [ -95.565085060248052, 29.909339221073655 ], [ -95.564738060062083, 29.909205220723027 ], [ -95.564469059721077, 29.909084220509371 ], [ -95.564179059458226, 29.908939220420478 ], [ -95.563881059957993, 29.908769220973817 ], [ -95.563595059460397, 29.90858322115724 ], [ -95.563415058987218, 29.908455220948415 ], [ -95.563235059655057, 29.908317220817032 ], [ -95.562974059362489, 29.908094220388652 ], [ -95.562457059109079, 29.907623220803252 ], [ -95.561836059437454, 29.907045220699452 ], [ -95.561385058937148, 29.906632220437551 ], [ -95.561098059122116, 29.906362220293474 ], [ -95.561051058895117, 29.906319220011749 ], [ -95.559269057880385, 29.904672220242063 ], [ -95.558893058274094, 29.90433422040385 ], [ -95.55870305789098, 29.904179219711718 ], [ -95.558509058479913, 29.904035219749449 ], [ -95.558225057770528, 29.903845219838651 ], [ -95.558050057890512, 29.903737219504336 ], [ -95.557748058189077, 29.903571219584709 ], [ -95.557533057334638, 29.903459220248106 ], [ -95.55716405815518, 29.903299219999763 ], [ -95.556952057786873, 29.903217220032243 ], [ -95.556757057667895, 29.903151220083004 ], [ -95.556598057584623, 29.903097220119832 ], [ -95.556352057133637, 29.903026220220724 ], [ -95.556106057331576, 29.90296421954276 ], [ -95.555851057337478, 29.902910219879381 ], [ -95.555464057621364, 29.902847220179662 ], [ -95.555368057221045, 29.902836220213601 ], [ -95.555077057444521, 29.902804219705445 ], [ -95.554824057117997, 29.902788219462806 ], [ -95.554494056923161, 29.902781219864107 ], [ -95.552553056850641, 29.902794219653376 ], [ -95.552148056840082, 29.90279921979845 ], [ -95.551782056072867, 29.902813219563022 ], [ -95.552084056388367, 29.903125220067686 ], [ -95.552440056248514, 29.903493219820358 ], [ -95.553229056817159, 29.904233220243647 ], [ -95.553932056443998, 29.904945220305123 ], [ -95.55431805693182, 29.905409220141987 ], [ -95.5546790571168, 29.905946220457732 ], [ -95.555326057063382, 29.907130220894722 ], [ -95.555535057516252, 29.907695221145975 ], [ -95.555657057648304, 29.908127220936347 ], [ -95.555799057803924, 29.908788220767065 ], [ -95.555816058008773, 29.908949221061604 ], [ -95.555889057977808, 29.909609221421061 ], [ -95.555887057734864, 29.911688221369676 ], [ -95.55588605805815, 29.913276221656659 ], [ -95.5558830580635, 29.917589222809763 ], [ -95.555955057809129, 29.918836223210722 ], [ -95.556001058173777, 29.919243223138281 ], [ -95.556024058297311, 29.919832223658005 ], [ -95.555996057719355, 29.920510223820344 ], [ -95.555969058197192, 29.920939223530695 ], [ -95.555878058368023, 29.92142922347664 ], [ -95.555775058029695, 29.921894223514961 ], [ -95.555611058328168, 29.922347224244653 ], [ -95.555441058134008, 29.922784224181644 ], [ -95.555174058054504, 29.923357224174872 ], [ -95.554964058197839, 29.923689224351239 ], [ -95.554928058510129, 29.923756223869685 ], [ -95.554853057681783, 29.923880223794701 ], [ -95.555053058161519, 29.923931224400668 ], [ -95.5555040577797, 29.924047223722354 ], [ -95.55573805862943, 29.924123224441193 ], [ -95.555992058351436, 29.924225223984841 ], [ -95.556269058532379, 29.924352224272248 ], [ -95.556957058114037, 29.924688224399457 ], [ -95.557680059097862, 29.925056224024576 ], [ -95.559115059627743, 29.9257872248034 ], [ -95.559345059071333, 29.925901224127323 ], [ -95.559626059521278, 29.926039224663931 ], [ -95.559932058916601, 29.926165224709983 ], [ -95.560165059099404, 29.926250224787225 ], [ -95.560420059152889, 29.926333224891017 ], [ -95.560693059832886, 29.926410224194715 ], [ -95.560976059546007, 29.926476224899368 ], [ -95.561269060199336, 29.926533224393744 ], [ -95.561570059923483, 29.9265792244768 ], [ -95.561879059867863, 29.926612224116383 ], [ -95.562036060331025, 29.926624224290666 ], [ -95.562355060455062, 29.926635224157394 ], [ -95.562803060665161, 29.926638224665545 ], [ -95.563120060396813, 29.92663622404099 ], [ -95.563472059927037, 29.926642224737318 ], [ -95.563698060486942, 29.926654224093522 ], [ -95.563952060086535, 29.926680224825979 ], [ -95.564360060258579, 29.926737224364935 ], [ -95.564639060544891, 29.926788224204557 ], [ -95.564917060500733, 29.926851224667924 ], [ -95.565095060678331, 29.926900224498304 ], [ -95.565183061201481, 29.926924223989936 ], [ -95.565203060900188, 29.926931224388564 ], [ -95.565510061373686, 29.927029224745027 ], [ -95.565894060839483, 29.927166224314838 ], [ -95.56601306079925, 29.927208224838459 ], [ -95.566249061260407, 29.927290224849216 ], [ -95.566308061471204, 29.927310224310084 ], [ -95.566770061097046, 29.927435224020677 ], [ -95.56700006092926, 29.927487224670077 ], [ -95.567216061373585, 29.927525224481489 ], [ -95.56730506098198, 29.927541224216871 ], [ -95.567393061277727, 29.927554224354672 ], [ -95.567479061117197, 29.927407224489063 ], [ -95.567549061582909, 29.927289224008113 ], [ -95.567685061326713, 29.927011224023293 ], [ -95.567958061132487, 29.926452224670896 ], [ -95.567978061594403, 29.926410223908796 ], [ -95.568011061897423, 29.926328223996887 ], [ -95.56822406118593, 29.925794223786326 ], [ -95.568337061486162, 29.925398223638652 ], [ -95.568451062032466, 29.924909224168349 ], [ -95.56853306135983, 29.92437622363218 ], [ -95.568583061186459, 29.923897223699349 ], [ -95.568552061289523, 29.923381223238337 ], [ -95.56853306109025, 29.923221223557952 ], [ -95.568640061060165, 29.923040223617548 ], [ -95.568792061896602, 29.922979223309429 ], [ -95.568937061961194, 29.922977223926825 ], [ -95.569921062163729, 29.922968223466643 ], [ -95.570420062079677, 29.922974223495178 ], [ -95.570761062355686, 29.922952223425856 ], [ -95.570849061953339, 29.922919223470014 ], [ -95.570893062438586, 29.922886223066811 ], [ -95.57094406175726, 29.92261122347178 ], [ -95.571016062150619, 29.921211223006221 ], [ -95.571025062500354, 29.921044222887637 ], [ -95.571063062356359, 29.920698222957558 ], [ -95.571076062439104, 29.920214223132167 ], [ -95.571139062073939, 29.919071223067796 ], [ -95.571177061898268, 29.918532222368327 ], [ -95.571208062159116, 29.918339222228944 ], [ -95.571214061462697, 29.917993222193651 ], [ -95.571202061711048, 29.917911222556398 ], [ -95.571271061487465, 29.917405222048259 ], [ -95.571258062341272, 29.91719022208957 ], [ -95.571249061735642, 29.917121222142654 ], [ -95.571214062318333, 29.916839222353229 ], [ -95.571164061893896, 29.916591222034061 ], [ -95.571094061486463, 29.916393222504833 ], [ -95.571037062143361, 29.916118222304171 ], [ -95.570955061726295, 29.915792222195222 ], [ -95.570929061321721, 29.915689221911215 ], [ -95.570905061676385, 29.915596221843209 ], [ -95.570892062069234, 29.915503222119685 ], [ -95.570898061757546, 29.915360222181555 ], [ -95.570976061683197, 29.915036221379054 ], [ -95.571074061782099, 29.914630221497546 ], [ -95.571120061688703, 29.914438221746874 ], [ -95.571268061606929, 29.913821221926732 ], [ -95.571358061394363, 29.913451221533549 ], [ -95.571466062056189, 29.913001221534831 ], [ -95.571504061306527, 29.912727221094062 ], [ -95.571529062146126, 29.912408220890605 ], [ -95.571523061481884, 29.912144221530756 ], [ -95.571542061526344, 29.911792221352474 ], [ -95.571605061615614, 29.911512221009922 ], [ -95.57180006140068, 29.911110220855505 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1438, "Tract": "48201540901", "Area_SqMi": 0.62017367798341727, "total_2009": 161, "total_2010": 148, "total_2011": 215, "total_2012": 167, "total_2013": 159, "total_2014": 166, "total_2015": 181, "total_2016": 177, "total_2017": 178, "total_2018": 157, "total_2019": 155, "total_2020": 194, "age1": 36, "age2": 106, "age3": 77, "earn1": 33, "earn2": 56, "earn3": 130, "naics_s01": 0, "naics_s02": 32, "naics_s03": 0, "naics_s04": 34, "naics_s05": 23, "naics_s06": 10, "naics_s07": 33, "naics_s08": 1, "naics_s09": 2, "naics_s10": 26, "naics_s11": 11, "naics_s12": 7, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 0, "naics_s19": 21, "naics_s20": 0, "race1": 176, "race2": 18, "race3": 3, "race4": 22, "race5": 0, "race6": 0, "ethnicity1": 159, "ethnicity2": 60, "edu1": 31, "edu2": 46, "edu3": 58, "edu4": 48, "Shape_Length": 19781.711078350832, "Shape_Area": 17289380.704319637, "total_2021": 185, "total_2022": 219 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.628949075255008, 29.886265214400829 ], [ -95.628951074747164, 29.88614621351309 ], [ -95.628941075453284, 29.885964213945467 ], [ -95.628936074932838, 29.885476213467935 ], [ -95.628941075561997, 29.885186213399109 ], [ -95.628936075654394, 29.884781213425903 ], [ -95.628929074981528, 29.884671213353453 ], [ -95.628932075634069, 29.884564213801838 ], [ -95.628916074821248, 29.884462213638546 ], [ -95.628914075610751, 29.884367213622273 ], [ -95.628894075221311, 29.884254213483736 ], [ -95.628865075195208, 29.884047213469149 ], [ -95.628825075100906, 29.883847213585526 ], [ -95.628799075234539, 29.883759213770826 ], [ -95.628781075179504, 29.883666213427251 ], [ -95.628760075506193, 29.883589213440292 ], [ -95.62869507515272, 29.883330213163603 ], [ -95.628626075106993, 29.882860213373863 ], [ -95.62859807502069, 29.882625213400694 ], [ -95.628581075192031, 29.882539213210634 ], [ -95.628581074688526, 29.882433213137073 ], [ -95.628574074611919, 29.882324213016908 ], [ -95.628588074761765, 29.882252212703605 ], [ -95.628580074718769, 29.881767213089084 ], [ -95.628573075206944, 29.881668213478065 ], [ -95.628571075269235, 29.881417213358578 ], [ -95.628570074924724, 29.881323213115962 ], [ -95.628425074527911, 29.881350212621339 ], [ -95.627769074442057, 29.881707212707614 ], [ -95.627662074215507, 29.88174621313129 ], [ -95.62747907432211, 29.881768212953968 ], [ -95.627119074507121, 29.881768213275031 ], [ -95.62693607483952, 29.881718213113803 ], [ -95.626678074671617, 29.881630213177313 ], [ -95.626514074523527, 29.881515212868091 ], [ -95.626280074824081, 29.881262213038472 ], [ -95.625908074204318, 29.880860212906168 ], [ -95.625719073993963, 29.880618213310559 ], [ -95.625549074600414, 29.880112212461366 ], [ -95.625442074145695, 29.879881212984458 ], [ -95.625386074286368, 29.879433212913611 ], [ -95.625313074396558, 29.879431212445613 ], [ -95.624173074075003, 29.879404212935665 ], [ -95.623969073407991, 29.879403212561474 ], [ -95.623544073179033, 29.879402212753526 ], [ -95.622329073024318, 29.879418213176749 ], [ -95.621244073468148, 29.879444212542882 ], [ -95.620777072963293, 29.879457212937552 ], [ -95.620741073237014, 29.879456213222539 ], [ -95.620726073276956, 29.879456212682353 ], [ -95.620709072318505, 29.87945621318611 ], [ -95.620679072394125, 29.879455212944826 ], [ -95.620689072381253, 29.880137213148771 ], [ -95.620678073051579, 29.880751213110386 ], [ -95.620674073346549, 29.881607213673821 ], [ -95.620678072824717, 29.882060213335173 ], [ -95.620684072683886, 29.882237213307285 ], [ -95.620687073480795, 29.883397213766845 ], [ -95.620694073049194, 29.883612213787281 ], [ -95.620690072993554, 29.883701213448649 ], [ -95.620698073444558, 29.884643214035567 ], [ -95.620699072738446, 29.885088213984606 ], [ -95.620701072907323, 29.88586821427376 ], [ -95.620705073396095, 29.886289214368819 ], [ -95.620703073546224, 29.88737221424006 ], [ -95.620705073682288, 29.888112214592876 ], [ -95.620708072922653, 29.888959214762181 ], [ -95.620708072865781, 29.889093214443861 ], [ -95.62070907299541, 29.889330214823374 ], [ -95.620715073295997, 29.890735214938918 ], [ -95.620715073009606, 29.890834215463453 ], [ -95.620723073347705, 29.892295215744664 ], [ -95.62072307336102, 29.892427215183432 ], [ -95.620724073518417, 29.892533215930452 ], [ -95.620729073303366, 29.893244216033885 ], [ -95.620728073424488, 29.893345215773884 ], [ -95.62072807325147, 29.893440216017559 ], [ -95.620728073627717, 29.893512216023037 ], [ -95.620734073111123, 29.895455216498711 ], [ -95.620735073123811, 29.895526216310582 ], [ -95.620733073230952, 29.896084216039949 ], [ -95.620731074036954, 29.896171216007431 ], [ -95.620729073318003, 29.896322216374013 ], [ -95.620725073972224, 29.896579216734619 ], [ -95.620690074164045, 29.897654216464502 ], [ -95.620617073874726, 29.899488217022753 ], [ -95.620807074221972, 29.89949421664614 ], [ -95.622195073814396, 29.899537216891826 ], [ -95.622319074014271, 29.899541217252242 ], [ -95.622743074727182, 29.899567216516186 ], [ -95.622967074453783, 29.899591216686268 ], [ -95.623037074320976, 29.899598216806446 ], [ -95.623311073964317, 29.899639217289263 ], [ -95.623586074578071, 29.899693216833953 ], [ -95.623642074391327, 29.899706216659716 ], [ -95.624017074277205, 29.89979721673944 ], [ -95.624220074274618, 29.899856217036511 ], [ -95.625298075085766, 29.900195217158323 ], [ -95.625558075445824, 29.900264216938513 ], [ -95.62585807549614, 29.900330217276995 ], [ -95.62608607555994, 29.90037221702411 ], [ -95.626386075573265, 29.900417216992459 ], [ -95.626690075015418, 29.900449216935748 ], [ -95.627097075484386, 29.900469216941858 ], [ -95.627701075655395, 29.90046621672133 ], [ -95.627701075624501, 29.900211216685051 ], [ -95.627683075001329, 29.899359216738702 ], [ -95.627683075575462, 29.898281216107954 ], [ -95.627677075277134, 29.897667216113593 ], [ -95.627662075653376, 29.896127215828166 ], [ -95.627651075606195, 29.895048215540946 ], [ -95.627642074984422, 29.894087215754141 ], [ -95.627667075661435, 29.894054215207841 ], [ -95.627774075105108, 29.894010215250891 ], [ -95.628167075701441, 29.893973215531741 ], [ -95.62816407549299, 29.893776215501489 ], [ -95.628159075575695, 29.893484215682385 ], [ -95.628148075091559, 29.892666215572646 ], [ -95.628135074937688, 29.891644215506012 ], [ -95.628139075290235, 29.891286214586433 ], [ -95.628147075566062, 29.891132214936341 ], [ -95.628164075438463, 29.89090421486868 ], [ -95.628212074945878, 29.890594214445713 ], [ -95.628255075399878, 29.890347215115501 ], [ -95.628296075332045, 29.89001421449715 ], [ -95.62832807523553, 29.889687214521391 ], [ -95.628356074819379, 29.889564214340581 ], [ -95.628391074942158, 29.889455214753404 ], [ -95.628446075728789, 29.889357214639599 ], [ -95.628651075612382, 29.888873214202892 ], [ -95.628738075424749, 29.888624214419163 ], [ -95.628807075152025, 29.888360214657016 ], [ -95.628867075122614, 29.888086213872288 ], [ -95.62889707552813, 29.887904213938945 ], [ -95.62892407541824, 29.887672214631895 ], [ -95.628945075057501, 29.887369214438436 ], [ -95.628949074960346, 29.887111214470114 ], [ -95.628949075255008, 29.886265214400829 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1439, "Tract": "48015760400", "Area_SqMi": 191.95858361333092, "total_2009": 941, "total_2010": 962, "total_2011": 754, "total_2012": 991, "total_2013": 874, "total_2014": 960, "total_2015": 783, "total_2016": 718, "total_2017": 741, "total_2018": 700, "total_2019": 626, "total_2020": 640, "age1": 95, "age2": 262, "age3": 197, "earn1": 111, "earn2": 163, "earn3": 280, "naics_s01": 35, "naics_s02": 0, "naics_s03": 5, "naics_s04": 202, "naics_s05": 25, "naics_s06": 61, "naics_s07": 37, "naics_s08": 1, "naics_s09": 33, "naics_s10": 48, "naics_s11": 10, "naics_s12": 6, "naics_s13": 28, "naics_s14": 15, "naics_s15": 0, "naics_s16": 18, "naics_s17": 5, "naics_s18": 12, "naics_s19": 13, "naics_s20": 0, "race1": 518, "race2": 28, "race3": 0, "race4": 4, "race5": 0, "race6": 4, "ethnicity1": 398, "ethnicity2": 156, "edu1": 95, "edu2": 132, "edu3": 133, "edu4": 99, "Shape_Length": 356948.03006172943, "Shape_Area": 5351476770.7403307, "total_2021": 617, "total_2022": 554 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.62173733499985, 30.044535211402792 ], [ -96.621987334183473, 30.044288211747485 ], [ -96.617326333348359, 30.036931210021603 ], [ -96.617230333416543, 30.036779210040383 ], [ -96.616801332646091, 30.036103209636387 ], [ -96.615802332878118, 30.034528209686641 ], [ -96.615245332013359, 30.033648209106325 ], [ -96.615124332877542, 30.033458209238919 ], [ -96.612340331466854, 30.029068208364357 ], [ -96.610541330396572, 30.026230207843184 ], [ -96.610502330935645, 30.026168208300856 ], [ -96.610085330998288, 30.025513208202042 ], [ -96.609957330329465, 30.025293207987637 ], [ -96.609677330221828, 30.024853207937056 ], [ -96.606836329496886, 30.020382206689547 ], [ -96.604991329389776, 30.017478206559858 ], [ -96.602714328038132, 30.01388720606505 ], [ -96.59931432691954, 30.008525204779883 ], [ -96.597170326052293, 30.005145204709912 ], [ -96.596797326548426, 30.00455620400751 ], [ -96.596450325996869, 30.004009204278763 ], [ -96.595683326044394, 30.002799204396084 ], [ -96.595529325785307, 30.002548203809514 ], [ -96.594444325862952, 30.000709203313093 ], [ -96.594159325402089, 30.000227203186832 ], [ -96.593807325152909, 29.9996832035214 ], [ -96.593387325495286, 29.999015203092807 ], [ -96.592703324903368, 29.997930202846991 ], [ -96.592193324960618, 29.997120203141751 ], [ -96.592137324544993, 29.997031202651097 ], [ -96.592080324676118, 29.996941202455869 ], [ -96.592016325102094, 29.996839202672557 ], [ -96.591952324620109, 29.996737202836481 ], [ -96.59026632394864, 29.994054202776667 ], [ -96.590185324520263, 29.99392520259423 ], [ -96.590104324432218, 29.993797202152646 ], [ -96.589123323831643, 29.99223720224898 ], [ -96.587094323696576, 29.989012201175385 ], [ -96.586054322920376, 29.987359201348983 ], [ -96.585668322958114, 29.986746200754137 ], [ -96.584197322566268, 29.984407200352553 ], [ -96.584097322639991, 29.98424720087375 ], [ -96.583996321854215, 29.984088200264388 ], [ -96.583590322401321, 29.983443200565912 ], [ -96.583491321827552, 29.983286200828964 ], [ -96.583389322259322, 29.983123200490272 ], [ -96.583354322348228, 29.983070200467129 ], [ -96.583332322471179, 29.983035200010633 ], [ -96.583180322216108, 29.9827911999915 ], [ -96.583096321724796, 29.98265720027775 ], [ -96.582978321513167, 29.982463200695353 ], [ -96.582703321313545, 29.982034199838527 ], [ -96.582646321474542, 29.981944200281017 ], [ -96.582253321251699, 29.981320200262584 ], [ -96.582112321193605, 29.981096200033825 ], [ -96.58197132175593, 29.980872199639592 ], [ -96.581918322003304, 29.980781199717505 ], [ -96.581866321705562, 29.980692200252538 ], [ -96.58164232196215, 29.980349199577635 ], [ -96.581438321553605, 29.980025199577415 ], [ -96.580673320895713, 29.978810199232253 ], [ -96.580523320618227, 29.978572199871877 ], [ -96.579511320561181, 29.976965199749923 ], [ -96.579346320973258, 29.976698199062319 ], [ -96.578156320604506, 29.974762199104152 ], [ -96.577383320482866, 29.973506198317217 ], [ -96.576534320288445, 29.972126198393934 ], [ -96.575733319294088, 29.970854198182607 ], [ -96.575206319102975, 29.970018198214674 ], [ -96.573020318914516, 29.966551197157443 ], [ -96.572850318317734, 29.9662821970573 ], [ -96.572255318611568, 29.965337197151957 ], [ -96.572167318443121, 29.965197197434183 ], [ -96.570649317636494, 29.962787196960463 ], [ -96.570221317375868, 29.962109196256591 ], [ -96.56985131755664, 29.961521196440081 ], [ -96.568528317623816, 29.959417196533025 ], [ -96.56774031641568, 29.958168195836002 ], [ -96.566743316675954, 29.956587195643092 ], [ -96.565369316161593, 29.954408194895912 ], [ -96.563938315764815, 29.952142194951154 ], [ -96.561266314649615, 29.947895194160623 ], [ -96.561205314509394, 29.94779719456459 ], [ -96.561143314481996, 29.947700193751487 ], [ -96.561079314395386, 29.947597193677392 ], [ -96.56101431439123, 29.9474951941861 ], [ -96.560977314226719, 29.947436194335836 ], [ -96.560899315103939, 29.947312194253378 ], [ -96.558363314108178, 29.943287193639467 ], [ -96.555229313273728, 29.938262191979533 ], [ -96.55448231222843, 29.937091191786614 ], [ -96.554456312142491, 29.937050192312039 ], [ -96.553039312031601, 29.934803191454989 ], [ -96.552969312328202, 29.934692191516088 ], [ -96.552446311521877, 29.933863191238657 ], [ -96.552395312164009, 29.933782191383333 ], [ -96.552345311427828, 29.93370219150221 ], [ -96.54878731124866, 29.928055190488365 ], [ -96.54628730954623, 29.924115189699251 ], [ -96.546261309601704, 29.924063190072676 ], [ -96.54616930965615, 29.923917189947502 ], [ -96.544407309168648, 29.921125188925078 ], [ -96.540478308213935, 29.914889188225526 ], [ -96.539521308038687, 29.91337218798478 ], [ -96.538421307634707, 29.911627187982738 ], [ -96.537809306692495, 29.910658187425728 ], [ -96.536727306483456, 29.908948187233182 ], [ -96.536334306853632, 29.908322187262506 ], [ -96.535712306369149, 29.907331187329344 ], [ -96.530300304530499, 29.90311318602075 ], [ -96.530183304813605, 29.903022186 ], [ -96.530066305305667, 29.902931185874539 ], [ -96.528543304255493, 29.901744185816881 ], [ -96.528160304143768, 29.901445186039076 ], [ -96.528147304230799, 29.901437186014434 ], [ -96.527510304437911, 29.90093918599765 ], [ -96.527425304485448, 29.900872185574841 ], [ -96.522737302532107, 29.897175184922229 ], [ -96.522612302374327, 29.897048185185906 ], [ -96.522547302530342, 29.896983184910557 ], [ -96.521770302020826, 29.896435185578195 ], [ -96.521548302166337, 29.896292185271577 ], [ -96.521466302498013, 29.896228185274509 ], [ -96.519419301653471, 29.894632184831167 ], [ -96.516901300823761, 29.892669184522866 ], [ -96.511639299676531, 29.888569183870782 ], [ -96.510794299521862, 29.887911183676582 ], [ -96.509279298491293, 29.886729183525595 ], [ -96.505847297532199, 29.884047183465153 ], [ -96.503724297548004, 29.882389182737743 ], [ -96.501813297204166, 29.880772182297083 ], [ -96.501796296219339, 29.880763182829867 ], [ -96.501724296214135, 29.880702182498958 ], [ -96.501613297197466, 29.880608182371656 ], [ -96.501480297094005, 29.88049618279355 ], [ -96.501354296220754, 29.880390182654313 ], [ -96.501342297026298, 29.880369182232176 ], [ -96.498180295529977, 29.877711182052373 ], [ -96.495242294758157, 29.875232182261382 ], [ -96.492877294304975, 29.873395181371347 ], [ -96.49276429360286, 29.8733071812389 ], [ -96.490866293360796, 29.871829180905522 ], [ -96.485098291783515, 29.867340180572484 ], [ -96.485018291792784, 29.867362180636537 ], [ -96.484822291877833, 29.8673351807867 ], [ -96.48409729144079, 29.867159180915401 ], [ -96.483926292045808, 29.8671751810449 ], [ -96.483737291227115, 29.867280180309074 ], [ -96.483498291492808, 29.867451180594735 ], [ -96.483157291473006, 29.867583180593659 ], [ -96.482167291428638, 29.868061180595518 ], [ -96.481498290547833, 29.868424180655985 ], [ -96.481114290894865, 29.868556181418676 ], [ -96.481038290415299, 29.868567180727602 ], [ -96.480849291229575, 29.868562181015513 ], [ -96.480754291330086, 29.868534181232576 ], [ -96.480691291069135, 29.868496180731444 ], [ -96.480514291044116, 29.868490181288916 ], [ -96.480363290617504, 29.868540180872319 ], [ -96.480117290731343, 29.86866618125082 ], [ -96.479859290294399, 29.868820181413046 ], [ -96.479726290294721, 29.868886180672042 ], [ -96.479600290587697, 29.868936180691392 ], [ -96.479493290092833, 29.868958181031005 ], [ -96.479310290363642, 29.868980181048435 ], [ -96.478837290209739, 29.869123181182694 ], [ -96.478711289962462, 29.869128181582997 ], [ -96.478616289829702, 29.869107181199901 ], [ -96.478231290729468, 29.868964180971226 ], [ -96.477865289769483, 29.86877718137918 ], [ -96.477594289654931, 29.86871618126295 ], [ -96.476743289513166, 29.868651180723319 ], [ -96.476597289348092, 29.868579180928567 ], [ -96.476496289501327, 29.868447181309687 ], [ -96.476124289536742, 29.868129180748365 ], [ -96.475720289766642, 29.867832180776393 ], [ -96.475632289792614, 29.867749180608921 ], [ -96.475266289273492, 29.867464180640294 ], [ -96.475184289187354, 29.867425181032456 ], [ -96.475033289113782, 29.867398180758602 ], [ -96.474963289364396, 29.867403181125926 ], [ -96.474743289272922, 29.867475180606039 ], [ -96.474623289160064, 29.867486181026582 ], [ -96.474465289594121, 29.867469180656986 ], [ -96.474307288940508, 29.867420181402519 ], [ -96.474106289547265, 29.867299181023427 ], [ -96.473330288667114, 29.86689818063191 ], [ -96.473254288933916, 29.866826180551762 ], [ -96.473090288925547, 29.866535181122977 ], [ -96.472983288493282, 29.866156180512441 ], [ -96.47292628839466, 29.86573218058323 ], [ -96.472989289123149, 29.865364180605273 ], [ -96.472926288637865, 29.865194180191516 ], [ -96.472768288208471, 29.864968180367107 ], [ -96.472288288257332, 29.864490180629858 ], [ -96.471992287971815, 29.864254180732331 ], [ -96.471790288634921, 29.864050180713452 ], [ -96.471664288604217, 29.863995180055056 ], [ -96.471487288292991, 29.863935180662349 ], [ -96.4714242879664, 29.863896180272189 ], [ -96.471235288339798, 29.863809180629033 ], [ -96.471146288630408, 29.863743180690488 ], [ -96.471052287989494, 29.863638180599949 ], [ -96.470951288196233, 29.863490180166924 ], [ -96.470844288505901, 29.863143180546576 ], [ -96.470661288501617, 29.862858180502911 ], [ -96.470509288357249, 29.862709180219266 ], [ -96.470415288365885, 29.862643180220189 ], [ -96.470295287896946, 29.862605180035388 ], [ -96.470150287601598, 29.862539180123825 ], [ -96.469948287934415, 29.862374180386421 ], [ -96.469859287452692, 29.862319179956938 ], [ -96.469784287466098, 29.862248180185766 ], [ -96.469582287700007, 29.862022180165361 ], [ -96.469330288154524, 29.861819180430786 ], [ -96.468964287796723, 29.861462179900744 ], [ -96.468894288041739, 29.861423179747487 ], [ -96.468667287958439, 29.861385179745568 ], [ -96.468383287881537, 29.861407180148916 ], [ -96.468169287236478, 29.861330180337269 ], [ -96.468036287146447, 29.861220179817806 ], [ -96.468036286875403, 29.86117017963717 ], [ -96.468052287436478, 29.861118180286358 ], [ -96.46807428754633, 29.861045180331505 ], [ -96.468088286826372, 29.860994180080567 ], [ -96.468106287541829, 29.860934179746607 ], [ -96.468087287026648, 29.860873179674257 ], [ -96.467797287023316, 29.860736179835573 ], [ -96.467652286881616, 29.860725180291745 ], [ -96.467469287596074, 29.860786179969324 ], [ -96.467374286967953, 29.860791179917076 ], [ -96.467179286953126, 29.860874180065885 ], [ -96.467097286681948, 29.860885179975249 ], [ -96.467015286523505, 29.8608681796585 ], [ -96.466926286754187, 29.860824179478573 ], [ -96.466781287063014, 29.860588179479688 ], [ -96.46669928729149, 29.860555180025788 ], [ -96.466491286466521, 29.860555180268019 ], [ -96.466308286540084, 29.860544179948029 ], [ -96.466157286871223, 29.860555180093144 ], [ -96.465987286353865, 29.860687179969684 ], [ -96.465886286493458, 29.860731179894508 ], [ -96.465072286779105, 29.860819180292832 ], [ -96.464864286139047, 29.860748180379524 ], [ -96.464738286206014, 29.860627180167761 ], [ -96.4647062864708, 29.860368180055634 ], [ -96.464681286532056, 29.860264179601948 ], [ -96.464637286141439, 29.860214179848555 ], [ -96.464372286521041, 29.860022179673482 ], [ -96.464296286307132, 29.859764179633341 ], [ -96.464309286110677, 29.859681180066737 ], [ -96.464365286030997, 29.859538179358431 ], [ -96.464473286829275, 29.859329179548379 ], [ -96.464479286360529, 29.859225179247343 ], [ -96.464473286144454, 29.859071179309961 ], [ -96.464441286133393, 29.858999179733882 ], [ -96.464283286574826, 29.858884179851909 ], [ -96.46411328601063, 29.85880717932271 ], [ -96.463886285906156, 29.8587741794747 ], [ -96.46370328621812, 29.858708179496421 ], [ -96.463381285796771, 29.85843917997164 ], [ -96.462908285815033, 29.858378179299798 ], [ -96.462744286080721, 29.858334180001251 ], [ -96.462713285785824, 29.858257179628769 ], [ -96.4627822853693, 29.858021179416152 ], [ -96.462801285764456, 29.857801179125012 ], [ -96.462763285748991, 29.857752179244738 ], [ -96.462725286044062, 29.857675179129537 ], [ -96.462657286278841, 29.857612179307871 ], [ -96.462611285427244, 29.857569179832531 ], [ -96.462505285359555, 29.857471179194093 ], [ -96.462158285227417, 29.857411179262524 ], [ -96.461893285594257, 29.857246179569476 ], [ -96.461451285762962, 29.856718179207704 ], [ -96.461066284842289, 29.856196179615377 ], [ -96.461028285655019, 29.856009179515844 ], [ -96.461104285709482, 29.855745179543984 ], [ -96.461092284852839, 29.855564178948061 ], [ -96.461010285398558, 29.855536178871382 ], [ -96.46086428499315, 29.855619178630764 ], [ -96.460764285192226, 29.855657179022693 ], [ -96.460511285434407, 29.855498179007068 ], [ -96.460410285584743, 29.855416179073735 ], [ -96.460373285109426, 29.855344179359587 ], [ -96.460429285586713, 29.854954178891351 ], [ -96.460568285255988, 29.854745178536611 ], [ -96.460530285477233, 29.854679179067737 ], [ -96.46024028529996, 29.854624178488347 ], [ -96.460000284618673, 29.854646179018342 ], [ -96.459824284431775, 29.854750179247969 ], [ -96.459660284635831, 29.854921179222799 ], [ -96.459515285304178, 29.854948178808137 ], [ -96.459269284332706, 29.85489317917612 ], [ -96.459117284295971, 29.854910178683721 ], [ -96.458783284741429, 29.855036179078436 ], [ -96.458039284048112, 29.855416179410284 ], [ -96.457925285007619, 29.855482178916127 ], [ -96.457793284207995, 29.855465179156695 ], [ -96.457673284856853, 29.855377178740572 ], [ -96.457711284359007, 29.854921178903769 ], [ -96.457654284722452, 29.854828179077181 ], [ -96.457522284814829, 29.854811179047712 ], [ -96.457043284051849, 29.854877179127069 ], [ -96.456437284101753, 29.855136179505923 ], [ -96.456286283654251, 29.85513017945739 ], [ -96.455693283603509, 29.854883178951919 ], [ -96.455251283806362, 29.854790179471458 ], [ -96.455220283753548, 29.854784178676862 ], [ -96.45516928326964, 29.854806178665456 ], [ -96.455068283307057, 29.854850179527475 ], [ -96.454690283953028, 29.854888179334967 ], [ -96.454652283740103, 29.85495417874159 ], [ -96.454646283690337, 29.855009179304723 ], [ -96.454652283991933, 29.855059178945936 ], [ -96.454677283857805, 29.855097179545048 ], [ -96.45486028419684, 29.855295179215442 ], [ -96.454917283517602, 29.855389179231992 ], [ -96.454942283749901, 29.855493179172079 ], [ -96.454942283607721, 29.855570179058418 ], [ -96.454898283624843, 29.855630179109983 ], [ -96.454829283833433, 29.855691179379704 ], [ -96.45460228359525, 29.855702179137779 ], [ -96.454463283299646, 29.855768179631426 ], [ -96.454350283228408, 29.855845179356507 ], [ -96.454135283497777, 29.856164179109538 ], [ -96.453978284017637, 29.8562851793227 ], [ -96.453669283076863, 29.856345179263798 ], [ -96.453416283879804, 29.85634517936894 ], [ -96.453120282972563, 29.856224179179478 ], [ -96.452306282746747, 29.856004179729258 ], [ -96.451688282811546, 29.855999179714093 ], [ -96.451272282882584, 29.856098179076021 ], [ -96.450585282341791, 29.856400179479834 ], [ -96.450339282205377, 29.856444179778237 ], [ -96.44997328295608, 29.85642217958619 ], [ -96.448869282406989, 29.85601017988564 ], [ -96.448358282604403, 29.855884179525464 ], [ -96.448184281805638, 29.855801179592639 ], [ -96.447942281670151, 29.855686179110052 ], [ -96.44751928191846, 29.855350179487044 ], [ -96.447387282069414, 29.855284179723842 ], [ -96.447166281967768, 29.855290179686577 ], [ -96.446939282064292, 29.855334179768313 ], [ -96.446700282018725, 29.855257179096746 ], [ -96.446529281121485, 29.855076179638708 ], [ -96.44640328151317, 29.854795179248292 ], [ -96.446340281500923, 29.85442717892478 ], [ -96.446189280970231, 29.854289179265354 ], [ -96.445936281041796, 29.854212179544323 ], [ -96.445709281758937, 29.854218179256257 ], [ -96.445634281547171, 29.854306179334646 ], [ -96.445602280887954, 29.854460179212314 ], [ -96.445571281458925, 29.854531178942374 ], [ -96.445489281551033, 29.854542179158116 ], [ -96.445369281600293, 29.854476179353465 ], [ -96.444921281615166, 29.854284179139462 ], [ -96.444776281012764, 29.854306179659119 ], [ -96.44472628127528, 29.854399179300369 ], [ -96.444744281472936, 29.854542179758496 ], [ -96.444921280716699, 29.854845179659225 ], [ -96.444908281141977, 29.854933179888466 ], [ -96.444757281652471, 29.855158179638416 ], [ -96.44475128130523, 29.855339179591404 ], [ -96.444625281078316, 29.855372179641694 ], [ -96.444499280737077, 29.855350179671152 ], [ -96.443975280598309, 29.855114179354707 ], [ -96.443950280774132, 29.855021179481081 ], [ -96.44393128048894, 29.854878179715104 ], [ -96.443761280914742, 29.854773179623269 ], [ -96.443527281101055, 29.854685179535267 ], [ -96.44356528085855, 29.854581179425278 ], [ -96.444000281207295, 29.854201178959695 ], [ -96.444114280753581, 29.85400917959198 ], [ -96.444000280694766, 29.853740179235878 ], [ -96.443918280652568, 29.853646178932728 ], [ -96.443597281139333, 29.853602179157114 ], [ -96.44331328099301, 29.8536351791081 ], [ -96.442846280311969, 29.85392717951898 ], [ -96.442733280223905, 29.853954179035114 ], [ -96.442569281017768, 29.853932179249352 ], [ -96.442499280642068, 29.853855179259792 ], [ -96.442430280354486, 29.853597179538642 ], [ -96.442354280262421, 29.853498179513512 ], [ -96.442197280509291, 29.85348717968402 ], [ -96.441995280858052, 29.85352517951879 ], [ -96.441408280695242, 29.853745179006165 ], [ -96.441068280560643, 29.853734179644999 ], [ -96.440809279758781, 29.853619179174821 ], [ -96.440866279945951, 29.852931179117661 ], [ -96.440463279887283, 29.851931179191293 ], [ -96.440204279500364, 29.85168317911781 ], [ -96.440160279474881, 29.85153517853972 ], [ -96.440128279304275, 29.851200179292874 ], [ -96.440071279987905, 29.851084178696066 ], [ -96.440013279487005, 29.85096517915801 ], [ -96.439819279953213, 29.850568178650352 ], [ -96.439573279237649, 29.850276178516804 ], [ -96.439409279701124, 29.850166178434506 ], [ -96.438993278956929, 29.85002917829474 ], [ -96.438867279587612, 29.849946178914777 ], [ -96.438754279266249, 29.849820178930749 ], [ -96.438583278916241, 29.849594178239848 ], [ -96.438230279628598, 29.849325179005305 ], [ -96.437909278910311, 29.849193178831289 ], [ -96.437713278616599, 29.849182178582474 ], [ -96.437568279149744, 29.849226178690323 ], [ -96.437259279468506, 29.849402179048603 ], [ -96.43691827903541, 29.849517178788009 ], [ -96.436698278965167, 29.849506178717512 ], [ -96.436597278341935, 29.849484178681394 ], [ -96.436206278848971, 29.849182178893368 ], [ -96.436092279147587, 29.849111178307968 ], [ -96.435973278230875, 29.849061178914759 ], [ -96.435859278475078, 29.848951178921201 ], [ -96.435607278702861, 29.848671178678551 ], [ -96.435065278342691, 29.848192178134553 ], [ -96.434756277897108, 29.847950178343631 ], [ -96.434604277852628, 29.847692178215553 ], [ -96.434560278606313, 29.847527178258257 ], [ -96.434579277977335, 29.847384178681665 ], [ -96.434636278098168, 29.847263177858014 ], [ -96.434825278722329, 29.847109178353829 ], [ -96.435024278627054, 29.846916178350366 ], [ -96.435103278844736, 29.846840177854325 ], [ -96.435210278191889, 29.846670178174726 ], [ -96.435216278337791, 29.846571178575317 ], [ -96.435115278373885, 29.84634517766899 ], [ -96.435002278465205, 29.846186177925421 ], [ -96.434876277838256, 29.846109178362337 ], [ -96.434586278252496, 29.845993177927649 ], [ -96.434459278420817, 29.845845177616582 ], [ -96.434409278276988, 29.845680178228008 ], [ -96.4344342783846, 29.845422178073267 ], [ -96.434605278040408, 29.845125178089358 ], [ -96.434769278565099, 29.844894177436938 ], [ -96.434832277642769, 29.844751178140974 ], [ -96.435027277972154, 29.844432177910949 ], [ -96.434926278165605, 29.844168177292214 ], [ -96.434844277970811, 29.843998177513541 ], [ -96.434794278484247, 29.84393217799402 ], [ -96.434731278197887, 29.843877177656001 ], [ -96.434422278269579, 29.843641177657982 ], [ -96.434144277958183, 29.843333177800154 ], [ -96.434069278173453, 29.843173177616471 ], [ -96.434069278013965, 29.843085177447673 ], [ -96.434132277626503, 29.842997177730094 ], [ -96.434214277494547, 29.842854177548322 ], [ -96.434460278461074, 29.842602176958152 ], [ -96.434693278118601, 29.842475176917034 ], [ -96.43476927852214, 29.842376177700778 ], [ -96.434800277782912, 29.842266177226676 ], [ -96.434807278167455, 29.842118177700527 ], [ -96.434731278505069, 29.84190917766724 ], [ -96.434485278394305, 29.841628177277407 ], [ -96.434107278060921, 29.841310176700851 ], [ -96.433804277283258, 29.841194177185614 ], [ -96.433565277192187, 29.841167177128174 ], [ -96.433224277162552, 29.841211176957124 ], [ -96.43270127731131, 29.841321177535811 ], [ -96.43210227716267, 29.841518177032565 ], [ -96.432001276964456, 29.841535177150497 ], [ -96.431887277023634, 29.841524176829637 ], [ -96.431654276716841, 29.841463177382991 ], [ -96.430998276751083, 29.841265177033346 ], [ -96.430582276956656, 29.841238177188252 ], [ -96.430336276493449, 29.841161177202643 ], [ -96.430090277109755, 29.841051176782948 ], [ -96.42967427676858, 29.840721177458025 ], [ -96.429390276682568, 29.840567176927856 ], [ -96.429182277054949, 29.840550177283099 ], [ -96.428942276350753, 29.840600177443331 ], [ -96.428419276264918, 29.840803177393269 ], [ -96.428350276555648, 29.840837177308593 ], [ -96.428167276825903, 29.840930176871208 ], [ -96.428022275990003, 29.840935177173222 ], [ -96.427858275862832, 29.840891177480472 ], [ -96.427757275760356, 29.840809177082942 ], [ -96.427669276191054, 29.840644176885935 ], [ -96.427562275841538, 29.840369177021127 ], [ -96.427473275663132, 29.840226176733854 ], [ -96.427335276248314, 29.840110177528871 ], [ -96.427032275827884, 29.839924177289543 ], [ -96.426219275847714, 29.839517177077706 ], [ -96.425714276115244, 29.839121177009449 ], [ -96.425248275789912, 29.838642177215824 ], [ -96.425014275720869, 29.838302176860232 ], [ -96.425008275643194, 29.838137176901729 ], [ -96.42505227584428, 29.837922176660435 ], [ -96.425305275736989, 29.837510176907244 ], [ -96.425450275149089, 29.837070176737221 ], [ -96.425387275340398, 29.836878176514517 ], [ -96.425185274963766, 29.836586176191567 ], [ -96.424990275550158, 29.836454176372442 ], [ -96.42484527533199, 29.836383176770369 ], [ -96.424637275032111, 29.836377176809314 ], [ -96.424479274788155, 29.836394176753085 ], [ -96.424384274953297, 29.83642717631092 ], [ -96.424283275204985, 29.836537176868294 ], [ -96.424145275332251, 29.836625176606482 ], [ -96.42396227523291, 29.836669176621708 ], [ -96.423836274959058, 29.836669176797802 ], [ -96.423754274600583, 29.836619176394208 ], [ -96.423672274729086, 29.836515176308602 ], [ -96.423621275066125, 29.836157176137881 ], [ -96.423766274502754, 29.835959176034645 ], [ -96.423779274759085, 29.835817176500576 ], [ -96.423855274852116, 29.835437176135382 ], [ -96.424000274801642, 29.835074176216565 ], [ -96.424013274685663, 29.834910176259381 ], [ -96.423811274714282, 29.834657175717325 ], [ -96.423565274512256, 29.834536176465793 ], [ -96.423275275205214, 29.834514176406444 ], [ -96.422802274224352, 29.834805176192869 ], [ -96.422663274139978, 29.834816176027811 ], [ -96.422518274771022, 29.83476617609751 ], [ -96.422335274832776, 29.834640176575043 ], [ -96.422001273985828, 29.834365176103155 ], [ -96.421705274702234, 29.833975175672041 ], [ -96.421642274826041, 29.833826176009048 ], [ -96.421636274463353, 29.833573175835962 ], [ -96.421693274151409, 29.833348175491338 ], [ -96.421857274707094, 29.833194176053667 ], [ -96.422210274159411, 29.832969175435647 ], [ -96.422285274714611, 29.832793175430226 ], [ -96.42229227396021, 29.832402176135869 ], [ -96.422254273962793, 29.832100176070455 ], [ -96.422204274042528, 29.830858175860577 ], [ -96.422084273852548, 29.830632175217151 ], [ -96.421914274182868, 29.830495174979042 ], [ -96.421712274485259, 29.830473175364052 ], [ -96.421271274455123, 29.830484175441203 ], [ -96.420899273694332, 29.830511175471525 ], [ -96.420691273981404, 29.830451175706141 ], [ -96.420621273750854, 29.830363175104132 ], [ -96.420565274265158, 29.830203175122502 ], [ -96.420628273844372, 29.830022175700787 ], [ -96.420716274135572, 29.829906175608237 ], [ -96.421195274117082, 29.829560175116544 ], [ -96.421221274461672, 29.829478175562773 ], [ -96.421202274392883, 29.82939017495309 ], [ -96.42103827348997, 29.829274174749795 ], [ -96.420798274090004, 29.829252174825317 ], [ -96.420527274073635, 29.829307174815646 ], [ -96.420130273845672, 29.829434175020406 ], [ -96.419720273983501, 29.829510175624826 ], [ -96.419455273932201, 29.829505175127323 ], [ -96.419172273929007, 29.829450174934841 ], [ -96.419115273937933, 29.829675175435117 ], [ -96.419146273235185, 29.829846175744795 ], [ -96.419304273461222, 29.829972175459222 ], [ -96.419379273494869, 29.830082175044424 ], [ -96.419417273902312, 29.830280175407477 ], [ -96.419449274108132, 29.830769175211206 ], [ -96.419411273359884, 29.831116175727985 ], [ -96.419259273424572, 29.831649175865078 ], [ -96.419190273934404, 29.832006176097707 ], [ -96.419177273984587, 29.83233617562064 ], [ -96.4192402740549, 29.833007175951231 ], [ -96.419227273799777, 29.83365517621311 ], [ -96.419095273933138, 29.833980176518967 ], [ -96.419050273707867, 29.834216176375936 ], [ -96.419076273267549, 29.834408176377949 ], [ -96.419145273310278, 29.834727176443614 ], [ -96.419139273437608, 29.835233176293503 ], [ -96.419189273905673, 29.835656176839457 ], [ -96.41911327361484, 29.836008176933287 ], [ -96.419113274093235, 29.836245176193081 ], [ -96.419264274268841, 29.836536176723957 ], [ -96.419359273736802, 29.836635176667105 ], [ -96.419409273924487, 29.836794176994481 ], [ -96.419334273665115, 29.837003176341085 ], [ -96.419176273975538, 29.837196176644369 ], [ -96.419075273919532, 29.837437176586864 ], [ -96.419100274158893, 29.83757517733493 ], [ -96.419151273421946, 29.837690177255755 ], [ -96.419251273584806, 29.837817176613473 ], [ -96.41949727370546, 29.838389177007453 ], [ -96.419604273767803, 29.838548177363343 ], [ -96.419699274124994, 29.838652177347928 ], [ -96.419806273947273, 29.838691176805487 ], [ -96.419976274495681, 29.83868517732844 ], [ -96.420102274202975, 29.838850177509602 ], [ -96.420128274657898, 29.838922177203276 ], [ -96.420140274003046, 29.838988177145243 ], [ -96.420121274058985, 29.839103177487278 ], [ -96.420090274145579, 29.839180177579745 ], [ -96.419982274053424, 29.839285177096432 ], [ -96.419787274379885, 29.839389177009593 ], [ -96.419503273786589, 29.83945517759609 ], [ -96.419409274505739, 29.839455177517419 ], [ -96.419383274345009, 29.839471177300602 ], [ -96.419314273845259, 29.839548177028721 ], [ -96.418708273806004, 29.840466177746467 ], [ -96.418601273440984, 29.840626177774315 ], [ -96.418423273552094, 29.840698177865178 ], [ -96.418447273914779, 29.840825177680522 ], [ -96.418009274036166, 29.841256177855012 ], [ -96.417956273600453, 29.84139017736317 ], [ -96.417769274066487, 29.8414631774146 ], [ -96.417659274156449, 29.841613177772235 ], [ -96.417184273424738, 29.842007177987526 ], [ -96.416919273533765, 29.842099178052159 ], [ -96.416863273584809, 29.842191178020634 ], [ -96.416879273255233, 29.842363177997839 ], [ -96.41641227316596, 29.843577178187502 ], [ -96.41633727307206, 29.843753178297696 ], [ -96.41628627382191, 29.843863178538957 ], [ -96.416236273359232, 29.844243177900584 ], [ -96.416116272957765, 29.844341178545459 ], [ -96.415636273265775, 29.845073178580847 ], [ -96.415308273528041, 29.845435178779631 ], [ -96.415239273463072, 29.845578178305416 ], [ -96.415094273690713, 29.845941178408445 ], [ -96.415066272811785, 29.845972178700166 ], [ -96.411342272310378, 29.842886177980457 ], [ -96.411158272342163, 29.842610178254869 ], [ -96.411157271631524, 29.842587178534121 ], [ -96.411158271677991, 29.842495177846981 ], [ -96.411079272046166, 29.842472177874019 ], [ -96.411000272168508, 29.84224217820146 ], [ -96.410395271825578, 29.841711178439127 ], [ -96.409212271149372, 29.840374177376084 ], [ -96.409107271261888, 29.83940717757471 ], [ -96.40894927147167, 29.839085177808958 ], [ -96.408844271108038, 29.839015177211873 ], [ -96.408792271322014, 29.838785177666605 ], [ -96.408487270848298, 29.838815177250616 ], [ -96.407637270760688, 29.838935177939931 ], [ -96.406987271052003, 29.839095177972908 ], [ -96.406846271318472, 29.839148178058725 ], [ -96.406697270788342, 29.839205177199045 ], [ -96.406267271041983, 29.839505177603982 ], [ -96.40558727066194, 29.840085177658519 ], [ -96.405287270370167, 29.840335177878394 ], [ -96.404597270093674, 29.840985177956121 ], [ -96.401043269184299, 29.844383178797557 ], [ -96.399867269217708, 29.845495179370534 ], [ -96.399848269460776, 29.845514179058547 ], [ -96.399227268840278, 29.846135179387982 ], [ -96.398407268746951, 29.846875179817605 ], [ -96.398155269015774, 29.847074179273697 ], [ -96.398077269365302, 29.847135179529921 ], [ -96.396857268350942, 29.848325180257998 ], [ -96.392847267515677, 29.852155180613703 ], [ -96.391767267962891, 29.853175180796935 ], [ -96.391567267612842, 29.853315180951366 ], [ -96.391416267885859, 29.853392181101828 ], [ -96.390857267478694, 29.853675180769002 ], [ -96.390789267062033, 29.853699181235591 ], [ -96.390757267869617, 29.85370518085611 ], [ -96.390627267825948, 29.853685181053702 ], [ -96.390437267637594, 29.853555180674689 ], [ -96.38789726707418, 29.851515180817636 ], [ -96.387067266187927, 29.850885180846969 ], [ -96.38530726609595, 29.852475180997487 ], [ -96.385207265746629, 29.85254518089322 ], [ -96.385097266203772, 29.852585181149596 ], [ -96.385083265941731, 29.852587181459928 ], [ -96.384957265697281, 29.852605181521579 ], [ -96.381657265302707, 29.852635181102062 ], [ -96.380187264249443, 29.852685180810852 ], [ -96.378877264646107, 29.852685180942196 ], [ -96.37822726454408, 29.8527051816212 ], [ -96.37662726429997, 29.852655181016875 ], [ -96.375834263979172, 29.852642181555197 ], [ -96.375387263187179, 29.852635181544692 ], [ -96.373597263236505, 29.852625181610229 ], [ -96.36916726173304, 29.852625182068014 ], [ -96.368697261626721, 29.852585181294764 ], [ -96.367257261023639, 29.852335181771743 ], [ -96.366267260799617, 29.852145181754395 ], [ -96.364947260419044, 29.851915182029604 ], [ -96.363783260345542, 29.851738181381013 ], [ -96.362769259881375, 29.851497181427245 ], [ -96.362288259856143, 29.851362181376032 ], [ -96.362027259929917, 29.851275181522752 ], [ -96.361757260011757, 29.85121518193586 ], [ -96.361631259970196, 29.851204181989861 ], [ -96.3612462597183, 29.851169182005066 ], [ -96.360537259225708, 29.851105181796395 ], [ -96.359017259241483, 29.85095518194203 ], [ -96.35679725852421, 29.850755181633769 ], [ -96.356417259018599, 29.850746181578572 ], [ -96.35636725820099, 29.8507451817168 ], [ -96.355287258804665, 29.85067518147342 ], [ -96.354217257719114, 29.850635181776116 ], [ -96.353819258027471, 29.850639181714637 ], [ -96.353167257854281, 29.850645181576041 ], [ -96.352297257414662, 29.850685182135862 ], [ -96.351047256788192, 29.85076518227088 ], [ -96.34908725627848, 29.850845182293206 ], [ -96.348887256772812, 29.85087518211645 ], [ -96.348827256936033, 29.850895181931172 ], [ -96.348717256288595, 29.850945182315776 ], [ -96.347690256490708, 29.851579182384885 ], [ -96.347567256457751, 29.851655182185848 ], [ -96.347037256715666, 29.85201518226015 ], [ -96.346687255999143, 29.852285182202728 ], [ -96.34626425586751, 29.852525182106842 ], [ -96.34608725603411, 29.852625182036654 ], [ -96.34602725558571, 29.852685182140117 ], [ -96.345977256145233, 29.852775182252348 ], [ -96.345707256411956, 29.853335183038357 ], [ -96.345317255883302, 29.854325182434888 ], [ -96.34528725630777, 29.854391182431321 ], [ -96.345170256088394, 29.854653183215849 ], [ -96.345137256140944, 29.854725182771269 ], [ -96.344897255735816, 29.855295183427145 ], [ -96.344534256283922, 29.856197183627721 ], [ -96.343874256046192, 29.857859183892383 ], [ -96.343737255807739, 29.858205183328707 ], [ -96.343352255992286, 29.859111184293528 ], [ -96.342057255506845, 29.862105184407742 ], [ -96.341207255256862, 29.864015184630915 ], [ -96.341117255023377, 29.8642551845751 ], [ -96.339507254635066, 29.863715184450047 ], [ -96.339053254972967, 29.863580184574193 ], [ -96.339037254457068, 29.863575184456181 ], [ -96.33833725417351, 29.86332518520684 ], [ -96.337252254035988, 29.862975184721311 ], [ -96.334535253775144, 29.862097185144741 ], [ -96.33406725379561, 29.861955184763421 ], [ -96.333087253666278, 29.861625185047796 ], [ -96.332447253199732, 29.861425184447519 ], [ -96.332117252770033, 29.86134518431107 ], [ -96.331057252182688, 29.861185184601172 ], [ -96.330727252676567, 29.861145184372912 ], [ -96.330287251973317, 29.861115184426708 ], [ -96.329807251868601, 29.861095184571866 ], [ -96.32967725270322, 29.861095185163265 ], [ -96.329521252349451, 29.861100184655974 ], [ -96.329067252124077, 29.86111518465578 ], [ -96.328567252371499, 29.861155185198076 ], [ -96.327867251582418, 29.861255185082744 ], [ -96.327327251685162, 29.861375185165958 ], [ -96.326957251651308, 29.861475184693621 ], [ -96.324611251204885, 29.862287185126338 ], [ -96.323209250955969, 29.862777185557867 ], [ -96.322689250251685, 29.862968184926775 ], [ -96.321497250237215, 29.863405185295779 ], [ -96.321117250494439, 29.863505185850343 ], [ -96.320937250381064, 29.863545185585821 ], [ -96.320647249940762, 29.863585185632228 ], [ -96.320157250136276, 29.86361518522429 ], [ -96.319794249802939, 29.86358818540884 ], [ -96.319477249623745, 29.863565185573208 ], [ -96.319097250210817, 29.863505185763501 ], [ -96.318767249660254, 29.863415185304451 ], [ -96.318077249570322, 29.863155185392962 ], [ -96.317769249157664, 29.863632185822365 ], [ -96.317484249105064, 29.864023186146412 ], [ -96.316797249458531, 29.864965186010672 ], [ -96.31651724931227, 29.865295186295434 ], [ -96.316156249032645, 29.865695186033001 ], [ -96.316057248796938, 29.865805185785245 ], [ -96.316117249223836, 29.865975185925613 ], [ -96.316127249366787, 29.866085185978765 ], [ -96.316127248603379, 29.866165186453397 ], [ -96.316107248942544, 29.866395185840389 ], [ -96.315977248881993, 29.867015186227999 ], [ -96.315877248912074, 29.867375186124153 ], [ -96.315777248986265, 29.867635186477962 ], [ -96.315417248782495, 29.868605186476124 ], [ -96.314037248631536, 29.87207518704426 ], [ -96.313717248646526, 29.872935187351548 ], [ -96.31356724922108, 29.873315187417557 ], [ -96.313147249148329, 29.874155188331429 ], [ -96.312307248591992, 29.875725188578844 ], [ -96.312267248416788, 29.875865188522472 ], [ -96.312267248643522, 29.875975188606702 ], [ -96.312312248415452, 29.876092187892297 ], [ -96.31231724872562, 29.876105188419949 ], [ -96.312397248415422, 29.876265188783968 ], [ -96.312447248250919, 29.876345188006198 ], [ -96.312617248984267, 29.876585188177085 ], [ -96.312507248443879, 29.876755188230344 ], [ -96.312227248918163, 29.877035188694293 ], [ -96.312027248663597, 29.87720518850842 ], [ -96.311837248989562, 29.877385188873209 ], [ -96.311458248624746, 29.877683188736281 ], [ -96.311277248053088, 29.87782518827203 ], [ -96.311147248240729, 29.877955188348814 ], [ -96.310987248499302, 29.878175189185246 ], [ -96.310567247818412, 29.879205189023473 ], [ -96.310427247966629, 29.879565189111897 ], [ -96.310017247801611, 29.880505189690684 ], [ -96.309577248286914, 29.881455189212407 ], [ -96.309392247852244, 29.881889189917015 ], [ -96.309177247571355, 29.882435189476109 ], [ -96.308527248053409, 29.883985189949538 ], [ -96.308297248364141, 29.88466519044972 ], [ -96.308217248155714, 29.88486519006814 ], [ -96.308207247470961, 29.885185190337079 ], [ -96.308207247954741, 29.88567519010547 ], [ -96.308185247691682, 29.885987190425549 ], [ -96.308097248049819, 29.886785190582312 ], [ -96.308107247934061, 29.887565190984446 ], [ -96.308157248408008, 29.88851519134338 ], [ -96.308177247991168, 29.888775190872568 ], [ -96.308187248353775, 29.889165191427622 ], [ -96.308177248187917, 29.889485191275387 ], [ -96.308117247930554, 29.890025190955122 ], [ -96.307997248332143, 29.890595191308822 ], [ -96.307887248192287, 29.891045191312941 ], [ -96.307707247971905, 29.891985191604803 ], [ -96.307537248589838, 29.892505192240218 ], [ -96.30737724822032, 29.892895191745097 ], [ -96.307277248043732, 29.893205192112053 ], [ -96.307097248434147, 29.893655191696507 ], [ -96.307037247562832, 29.893835192014574 ], [ -96.306987247972074, 29.894165191730238 ], [ -96.306997247933523, 29.895155192404037 ], [ -96.307007248341392, 29.895265192262706 ], [ -96.307347248702328, 29.897135192428436 ], [ -96.307527248364991, 29.898065193372407 ], [ -96.307576248574648, 29.898523193019223 ], [ -96.307577248903954, 29.898535192888929 ], [ -96.307587248280328, 29.89883519352232 ], [ -96.30758724829883, 29.898965193520063 ], [ -96.307567248634598, 29.899135193295578 ], [ -96.307507248226685, 29.899455193401678 ], [ -96.307457248559103, 29.899655193653729 ], [ -96.307277248863514, 29.900095193799316 ], [ -96.307217248468334, 29.900285193760432 ], [ -96.307185248816836, 29.900426193018859 ], [ -96.307160248847325, 29.900557193883927 ], [ -96.307157247932324, 29.900575193152591 ], [ -96.307087248665752, 29.90087519386752 ], [ -96.307037248656115, 29.901215193666733 ], [ -96.307015248599654, 29.901506193679499 ], [ -96.307007248844997, 29.901605193331168 ], [ -96.307007248457595, 29.901815193846314 ], [ -96.307027248008453, 29.902205194119343 ], [ -96.307117248293963, 29.903155194407212 ], [ -96.307177248315838, 29.903705194159535 ], [ -96.307217248450655, 29.904225194546811 ], [ -96.307267248506719, 29.904585194023966 ], [ -96.307387248619591, 29.905145194088437 ], [ -96.307417248990831, 29.905765194056581 ], [ -96.307387248930681, 29.906115194773445 ], [ -96.307337248625601, 29.906385194369737 ], [ -96.307297248246712, 29.906575194622729 ], [ -96.307177248501532, 29.906875194313564 ], [ -96.30704724846504, 29.907115194557903 ], [ -96.30640724813189, 29.908585195030053 ], [ -96.306187248399027, 29.909145194816901 ], [ -96.306036248233681, 29.909465195303142 ], [ -96.305937248061269, 29.909675195343983 ], [ -96.305657247945319, 29.91011519570657 ], [ -96.305497248833788, 29.910335195302682 ], [ -96.304957247878676, 29.91095519534975 ], [ -96.304717248352077, 29.911295195480044 ], [ -96.304507247816019, 29.911615196067114 ], [ -96.304377248554061, 29.911905195450387 ], [ -96.304247248165055, 29.912245195598494 ], [ -96.303977248495173, 29.9128451963735 ], [ -96.3038772483483, 29.91311519622182 ], [ -96.303797248031003, 29.913355195785289 ], [ -96.303707248588069, 29.913755196405063 ], [ -96.303537248047405, 29.914315195912135 ], [ -96.303457248225186, 29.914515195950734 ], [ -96.303377247866081, 29.914755196097289 ], [ -96.303267248508178, 29.914995196293845 ], [ -96.303217248040184, 29.915095196091638 ], [ -96.302957248194261, 29.915435196279152 ], [ -96.302847247762131, 29.915565196311981 ], [ -96.302577247539901, 29.915815196809213 ], [ -96.302447247893568, 29.915915196740634 ], [ -96.302207247457503, 29.916065196626981 ], [ -96.301955247888003, 29.916309196460293 ], [ -96.301897248252047, 29.91636519677925 ], [ -96.301827247416625, 29.91646519650638 ], [ -96.301747247641146, 29.916595196784282 ], [ -96.301707247389558, 29.916685196885339 ], [ -96.301677247381988, 29.916865196896758 ], [ -96.301629247794494, 29.9174811972449 ], [ -96.301577248171057, 29.918135196824462 ], [ -96.301427247742595, 29.918915197619377 ], [ -96.301347248289332, 29.919385197363798 ], [ -96.30131724736583, 29.919665197909691 ], [ -96.30129724814212, 29.920175197376924 ], [ -96.301307248221391, 29.92061519754893 ], [ -96.301342247610933, 29.921103197726516 ], [ -96.301346247593514, 29.921155197512817 ], [ -96.301347247828474, 29.921175197369529 ], [ -96.301350248320645, 29.92120419764359 ], [ -96.30143724787149, 29.922155198388928 ], [ -96.301478248435018, 29.922457197806963 ], [ -96.301497248127887, 29.922595198099895 ], [ -96.301647248254838, 29.923265198184211 ], [ -96.301677247689511, 29.923455198067025 ], [ -96.3016672480165, 29.923655198653293 ], [ -96.301647247808049, 29.923745198128675 ], [ -96.301597248206647, 29.923865198557767 ], [ -96.301197247840761, 29.924725198760662 ], [ -96.301117247776745, 29.924845198660918 ], [ -96.300827247619011, 29.925145198383614 ], [ -96.299857247601196, 29.926095199189096 ], [ -96.299427247363965, 29.92653519873193 ], [ -96.299047248041589, 29.926985199235869 ], [ -96.298817247354364, 29.927285198902009 ], [ -96.298527247765875, 29.927635198942514 ], [ -96.298227247483098, 29.927965199656064 ], [ -96.298097247565721, 29.928075199662683 ], [ -96.297427246808965, 29.928565199852827 ], [ -96.297327247680158, 29.928615199768618 ], [ -96.297107247632184, 29.928695199572854 ], [ -96.296637246787398, 29.928805199671345 ], [ -96.296337247396011, 29.928855199570751 ], [ -96.296027246521064, 29.928875199236586 ], [ -96.295857246469382, 29.928875199634383 ], [ -96.29563724643225, 29.92889519924347 ], [ -96.294458246540856, 29.929087199443988 ], [ -96.294407246072424, 29.929095199445076 ], [ -96.294361246878125, 29.929101199377438 ], [ -96.294364246107719, 29.9291871997054 ], [ -96.294386246145223, 29.929581199387673 ], [ -96.294393246651651, 29.929617200194514 ], [ -96.294444246855264, 29.929752199565449 ], [ -96.294463246854164, 29.929821199374146 ], [ -96.294529246976978, 29.929972199610525 ], [ -96.294553246980016, 29.930002199843827 ], [ -96.294643246980726, 29.930074199789196 ], [ -96.294815246467849, 29.930170199757523 ], [ -96.294889247138798, 29.930204199931161 ], [ -96.29507524640519, 29.930273199512321 ], [ -96.295191246811342, 29.930304199628367 ], [ -96.295269247059721, 29.930314199836548 ], [ -96.295392246650707, 29.930303200209153 ], [ -96.295567246757457, 29.930278200103555 ], [ -96.295725246424155, 29.930243199547906 ], [ -96.296134246794168, 29.930194199798887 ], [ -96.296297246804443, 29.930182200149375 ], [ -96.296584247350921, 29.930147199435424 ], [ -96.296829247122176, 29.930141200116811 ], [ -96.296910247494864, 29.930145199993547 ], [ -96.297074247289942, 29.930136199344901 ], [ -96.297319247158214, 29.930133199700528 ], [ -96.297442247113011, 29.930137200134645 ], [ -96.297482247067535, 29.930142199864424 ], [ -96.297603246839316, 29.930147199478739 ], [ -96.297685247694375, 29.930145199848578 ], [ -96.298009247852534, 29.930160199785906 ], [ -96.29833224756895, 29.930206199680999 ], [ -96.298414247193989, 29.93021119969443 ], [ -96.298618247747456, 29.930204199660505 ], [ -96.298658247143621, 29.930210199816706 ], [ -96.298779247424335, 29.930216200070774 ], [ -96.298860247908991, 29.930215199334018 ], [ -96.299184248176061, 29.930232199814039 ], [ -96.299548247901953, 29.930267199851478 ], [ -96.299628247893594, 29.930279199618379 ], [ -96.299669247734315, 29.930279199517091 ], [ -96.299790248069328, 29.930297199308153 ], [ -96.299869247567543, 29.930317199561088 ], [ -96.300298247519592, 29.93044519942222 ], [ -96.300527248035053, 29.930521199828728 ], [ -96.300639248172942, 29.930562199355766 ], [ -96.300673248022832, 29.930580199640573 ], [ -96.300748247786572, 29.930605199594552 ], [ -96.300931247819022, 29.930676199914856 ], [ -96.300966248013381, 29.930695199366266 ], [ -96.301039248588907, 29.930723200131215 ], [ -96.30110824777087, 29.930760199706931 ], [ -96.301285248164476, 29.930842199493103 ], [ -96.30136024795074, 29.930871199545404 ], [ -96.301503248589071, 29.930935199834533 ], [ -96.301568248571442, 29.930976199540833 ], [ -96.301681248781435, 29.931081200181016 ], [ -96.301833248229869, 29.931201199545804 ], [ -96.301897247969976, 29.931245199394443 ], [ -96.301967248176155, 29.931281199790408 ], [ -96.302691248710644, 29.931571199999727 ], [ -96.302726249059887, 29.931589199993368 ], [ -96.303320249109888, 29.931844200293558 ], [ -96.303729249108528, 29.932015200072403 ], [ -96.304142249066714, 29.932178199491567 ], [ -96.304446248878051, 29.932286200109562 ], [ -96.30459524884985, 29.932345199811788 ], [ -96.304671249016621, 29.932371200339634 ], [ -96.304778249206208, 29.932420199693716 ], [ -96.304843249335491, 29.932461199556538 ], [ -96.304913249221087, 29.932499199933456 ], [ -96.305026249503058, 29.93253719987371 ], [ -96.30510524929295, 29.932552200262204 ], [ -96.305186248992598, 29.932561199925452 ], [ -96.305224249383969, 29.932570200037475 ], [ -96.305467249036468, 29.932598200363838 ], [ -96.305796249953275, 29.932614200357161 ], [ -96.306040249325392, 29.932637199522933 ], [ -96.30611924920855, 29.93265619975433 ], [ -96.306156249152281, 29.932672200378061 ], [ -96.306502249307187, 29.932863200148827 ], [ -96.306604249907593, 29.932923200214788 ], [ -96.30670024949714, 29.932989200041234 ], [ -96.306884249302939, 29.933127199846751 ], [ -96.306973249833646, 29.933200199934085 ], [ -96.30710824994739, 29.933328200363043 ], [ -96.307158250341033, 29.933382199897775 ], [ -96.307186250074011, 29.933406200158071 ], [ -96.307387249483583, 29.933621200125387 ], [ -96.307409249746485, 29.93365220012091 ], [ -96.307463249822504, 29.933702199896256 ], [ -96.307560249745279, 29.933814200273563 ], [ -96.307642249954156, 29.933888200146811 ], [ -96.307676250081045, 29.933904199730538 ], [ -96.307700249657017, 29.933932200408208 ], [ -96.307763250184408, 29.933971200435959 ], [ -96.307785249601793, 29.934002200345461 ], [ -96.307819250296276, 29.934019199786775 ], [ -96.307907250416292, 29.934086200592965 ], [ -96.307931250122479, 29.934114200325649 ], [ -96.307994249815309, 29.934153200221882 ], [ -96.308016250377875, 29.934184200112458 ], [ -96.308049250286686, 29.93420120018056 ], [ -96.308079250146562, 29.934223199967931 ], [ -96.308104249758387, 29.93425119986307 ], [ -96.308192250266316, 29.934318200477257 ], [ -96.308225249723364, 29.934336200374897 ], [ -96.308248249711696, 29.934366200524813 ], [ -96.308311250717324, 29.93440520028976 ], [ -96.30833525008623, 29.934434199820817 ], [ -96.308457249776765, 29.93451820041685 ], [ -96.308567250014377, 29.934617200442222 ], [ -96.308689250630962, 29.934702200716536 ], [ -96.308714250527999, 29.93473020049364 ], [ -96.308777250382477, 29.934770199887922 ], [ -96.308800250631435, 29.934800199938923 ], [ -96.308863250020835, 29.934841200067286 ], [ -96.308888250517839, 29.934868199937313 ], [ -96.309013250685013, 29.93495420034937 ], [ -96.309127250253709, 29.93505119996221 ], [ -96.309161250959249, 29.93506920073499 ], [ -96.30922025028687, 29.935118199896294 ], [ -96.309360250701658, 29.935190199930535 ], [ -96.309426250577559, 29.935230200471477 ], [ -96.309498250070902, 29.935263200203369 ], [ -96.30957525085951, 29.935288199982555 ], [ -96.309653250443461, 29.935307200577888 ], [ -96.309845250871305, 29.935364200683683 ], [ -96.309882250821147, 29.935379200351502 ], [ -96.310119250495902, 29.935420200278607 ], [ -96.310279250790302, 29.935435200604488 ], [ -96.310358250390337, 29.935446200095143 ], [ -96.310400250988465, 29.935444200714688 ], [ -96.310642250413281, 29.935462200587111 ], [ -96.310722250947052, 29.935473200059867 ], [ -96.310805251350175, 29.935473200397293 ], [ -96.31088625113388, 29.935479200518444 ], [ -96.310926250659506, 29.935486200448874 ], [ -96.311079251209094, 29.935528199941153 ], [ -96.311155251212227, 29.935556200063171 ], [ -96.311260251381057, 29.935610200354425 ], [ -96.311321251051851, 29.935654200399725 ], [ -96.311656250831447, 29.935855200358549 ], [ -96.311815251372309, 29.935962200523491 ], [ -96.31187325107858, 29.936012199993822 ], [ -96.311966251164975, 29.936080200541788 ], [ -96.31206625175848, 29.936143200087429 ], [ -96.312104251041134, 29.936156200418541 ], [ -96.312185251251918, 29.936156200454732 ], [ -96.312226251646877, 29.936151200679106 ], [ -96.312263251803614, 29.936135200607797 ], [ -96.312324251016051, 29.936088200012957 ], [ -96.312346251392896, 29.936057200091934 ], [ -96.312429251146355, 29.935857200299456 ], [ -96.312529251627026, 29.935547199911948 ], [ -96.312556250956575, 29.935482200228595 ], [ -96.312574251274853, 29.935452200393627 ], [ -96.31260225137467, 29.935385200211734 ], [ -96.312651251214021, 29.935288200657901 ], [ -96.312690251195932, 29.935226199865895 ], [ -96.312748251578128, 29.935176199865175 ], [ -96.312845251744861, 29.935109200046977 ], [ -96.312920251062934, 29.935081200137201 ], [ -96.313039251904726, 29.935050200442603 ], [ -96.313164251926622, 29.935038200265375 ], [ -96.313205251805627, 29.93504620047074 ], [ -96.313245251150491, 29.935049200176483 ], [ -96.313323251835953, 29.935071200106808 ], [ -96.313358251052819, 29.935089199930847 ], [ -96.313433251472702, 29.935117200416183 ], [ -96.313540251861468, 29.935167200609328 ], [ -96.313646251198605, 29.935222199950335 ], [ -96.313777251164026, 29.935309200255315 ], [ -96.313800251382133, 29.935338200431719 ], [ -96.313909251231578, 29.935442200596388 ], [ -96.313939252230298, 29.935465199840486 ], [ -96.314097251382208, 29.935623200131488 ], [ -96.314119251922506, 29.935652200100314 ], [ -96.314175251819393, 29.935702200065162 ], [ -96.314280251551381, 29.935807200073146 ], [ -96.314311251523606, 29.935830200261101 ], [ -96.314381252297323, 29.935916200741971 ], [ -96.314507251705336, 29.93609820006613 ], [ -96.314568251980887, 29.936231200758645 ], [ -96.314622251416836, 29.936364200354614 ], [ -96.314640252043674, 29.936397200061268 ], [ -96.31465025189631, 29.936432200128333 ], [ -96.314691252333489, 29.936641200536354 ], [ -96.314693252220891, 29.93671220057686 ], [ -96.314689251485021, 29.936784200497065 ], [ -96.314679251649864, 29.936818200417807 ], [ -96.31466825179929, 29.936888200451754 ], [ -96.31464225174642, 29.93699220055176 ], [ -96.314625251730419, 29.937024200560398 ], [ -96.314606252212144, 29.937129200682254 ], [ -96.314606252033158, 29.93716520093875 ], [ -96.314597252403047, 29.937236200242229 ], [ -96.314595252326484, 29.937308200459981 ], [ -96.314600252192406, 29.937378201051896 ], [ -96.314619252212211, 29.93744820102194 ], [ -96.31462425183615, 29.937483200327993 ], [ -96.314663252181717, 29.937620200759504 ], [ -96.314779251924733, 29.937888200647659 ], [ -96.314842251765782, 29.938020200609774 ], [ -96.314942252267215, 29.938174200649414 ], [ -96.315072251817668, 29.938311200642538 ], [ -96.315158251859231, 29.93843320044228 ], [ -96.315173252363621, 29.938466200509939 ], [ -96.315230252130632, 29.938534200659031 ], [ -96.315556252615465, 29.938898201278846 ], [ -96.315610252258864, 29.938950200917485 ], [ -96.315886252360258, 29.939254200705275 ], [ -96.316058252921167, 29.939450201170214 ], [ -96.316112252525016, 29.9395012007048 ], [ -96.316210252248041, 29.939614200646005 ], [ -96.316238252672548, 29.939638200710398 ], [ -96.316286252516676, 29.939695201346161 ], [ -96.316365252893121, 29.939773200960122 ], [ -96.31639625232512, 29.939794200830541 ], [ -96.316493252317187, 29.939901201128862 ], [ -96.31657125208568, 29.939972201299415 ], [ -96.316604252143094, 29.939989200973795 ], [ -96.316616252788734, 29.940024201114724 ], [ -96.316712252158453, 29.940129201330748 ], [ -96.31680025249328, 29.940246200803614 ], [ -96.316828252197112, 29.940277200784443 ], [ -96.3167802522036, 29.94029620120055 ], [ -96.316793252567749, 29.940390200706148 ], [ -96.316786252314799, 29.940516200944366 ], [ -96.316812252318229, 29.940582200989091 ], [ -96.31688125284218, 29.940868201098578 ], [ -96.316944253223767, 29.941351201085638 ], [ -96.316906252668744, 29.941967201546444 ], [ -96.31691325273755, 29.942066201393413 ], [ -96.316950252727693, 29.942187201606384 ], [ -96.317051252395899, 29.942291201332402 ], [ -96.317171252885998, 29.942352201397227 ], [ -96.317266252891258, 29.942429201627874 ], [ -96.317291252756903, 29.942528201928088 ], [ -96.317373252450082, 29.942687201351614 ], [ -96.317443253347719, 29.942858201377771 ], [ -96.317708253118795, 29.943242201883205 ], [ -96.317790252582569, 29.943347202094955 ], [ -96.317853252617695, 29.943457202017434 ], [ -96.31790325260242, 29.943644201819613 ], [ -96.317834253517816, 29.943781202020038 ], [ -96.31774625263408, 29.943875201379765 ], [ -96.317582253296948, 29.944028202107372 ], [ -96.317443253288459, 29.944182202056783 ], [ -96.31722225264447, 29.944364201518638 ], [ -96.317064252966247, 29.944424201907914 ], [ -96.316887252926293, 29.944457201992439 ], [ -96.316711252674764, 29.944518202195027 ], [ -96.31655925258903, 29.944600201923542 ], [ -96.316401252972426, 29.944716201987809 ], [ -96.316187252324994, 29.944798201984277 ], [ -96.316042252779624, 29.944869201623163 ], [ -96.315732252232579, 29.945100202202518 ], [ -96.315530252615389, 29.945166202085176 ], [ -96.315454252836759, 29.945210202308434 ], [ -96.315429252192615, 29.94527620251192 ], [ -96.315448252616378, 29.945370201948386 ], [ -96.315511252432856, 29.945480202013336 ], [ -96.31559325282376, 29.945557202394898 ], [ -96.315669252446554, 29.945573202041889 ], [ -96.315739252165855, 29.945601202067202 ], [ -96.315814252469409, 29.945650202017937 ], [ -96.31604125243264, 29.945848201989694 ], [ -96.316199252480018, 29.946040201978189 ], [ -96.316269253195387, 29.946106202533013 ], [ -96.316382253173174, 29.946178202658139 ], [ -96.316546253364805, 29.946216202770984 ], [ -96.316666253329842, 29.946260202469137 ], [ -96.31670425320462, 29.946321202761432 ], [ -96.316698253326948, 29.946403201928145 ], [ -96.316679253169056, 29.946480202690733 ], [ -96.316433253144908, 29.946788202078046 ], [ -96.316142253210728, 29.947228202307805 ], [ -96.315890253239999, 29.947634202373951 ], [ -96.315732253064439, 29.947860202657953 ], [ -96.315511253032923, 29.948014202725474 ], [ -96.315290253098993, 29.948146202412271 ], [ -96.315164252348922, 29.948256202651333 ], [ -96.315114252154487, 29.948404202721157 ], [ -96.315107252483926, 29.948541203057935 ], [ -96.315139252949706, 29.948673203257623 ], [ -96.315215252691317, 29.948838202951162 ], [ -96.315316252256252, 29.94893720245646 ], [ -96.315385252281942, 29.948976202915048 ], [ -96.315600252243314, 29.949064203313316 ], [ -96.315726253019321, 29.949174202842151 ], [ -96.315795252880747, 29.949262203395833 ], [ -96.315846252897273, 29.949360202923632 ], [ -96.315877253114124, 29.949525203213017 ], [ -96.315903252636474, 29.949811203291002 ], [ -96.315928252792602, 29.949954202708557 ], [ -96.316016252854723, 29.95007020317539 ], [ -96.316149253433352, 29.950108203000209 ], [ -96.316414253060202, 29.950070203453546 ], [ -96.316628252780021, 29.95007520314639 ], [ -96.316729253457851, 29.950119202863156 ], [ -96.316837253538282, 29.950190202786441 ], [ -96.31701325333988, 29.950410202962281 ], [ -96.31702025317729, 29.950504203118481 ], [ -96.316994253537956, 29.950614203390192 ], [ -96.31687525348066, 29.950867202907613 ], [ -96.316868252868133, 29.950955202879769 ], [ -96.316925253028643, 29.951031203589849 ], [ -96.317007253013571, 29.951037203475373 ], [ -96.317133252866881, 29.951031203182648 ], [ -96.317266253711239, 29.95099920327338 ], [ -96.317380253162611, 29.950949203040185 ], [ -96.3174992533405, 29.950878203232158 ], [ -96.317645253692461, 29.9508392036219 ], [ -96.317796252937441, 29.950850202790146 ], [ -96.317929253367481, 29.950916203667248 ], [ -96.318004253684165, 29.951010202969762 ], [ -96.318049252982803, 29.951119203054038 ], [ -96.318055252956938, 29.951251203715891 ], [ -96.318093253084115, 29.951570203155583 ], [ -96.318112253558411, 29.951653203303888 ], [ -96.318175253647155, 29.951790203828899 ], [ -96.318345254008534, 29.951971203443716 ], [ -96.318491253524641, 29.952109203518791 ], [ -96.318655253532853, 29.95223020311332 ], [ -96.318775253624395, 29.952307203806257 ], [ -96.319115253634862, 29.952472203932679 ], [ -96.319362253958161, 29.952664203107314 ], [ -96.319418254103766, 29.952769203454899 ], [ -96.31941825364504, 29.952889203865418 ], [ -96.319381253921719, 29.953021203228499 ], [ -96.319261254311641, 29.953115203519886 ], [ -96.319141253338699, 29.953192203988532 ], [ -96.31894525405643, 29.953252203309443 ], [ -96.318838253969517, 29.9532582039093 ], [ -96.318648253425607, 29.953318203461968 ], [ -96.318421253380691, 29.953445203625705 ], [ -96.318364254128895, 29.95351120407156 ], [ -96.318352253531359, 29.953582203741274 ], [ -96.31837125395846, 29.953681203597593 ], [ -96.318396254089549, 29.953752204021651 ], [ -96.318490254145189, 29.953851203612533 ], [ -96.318661253502597, 29.953978204031124 ], [ -96.318762254182687, 29.954016203715991 ], [ -96.318850254143626, 29.954016203855566 ], [ -96.319134253416323, 29.953989204108836 ], [ -96.319204253948115, 29.953994204095554 ], [ -96.319292254087244, 29.954038203876099 ], [ -96.319336254281538, 29.954082204160379 ], [ -96.319437253821093, 29.954302204052258 ], [ -96.319526253605218, 29.954467203997911 ], [ -96.319734254406072, 29.954676203998702 ], [ -96.319848253939384, 29.954918203954271 ], [ -96.319917253963794, 29.955204204352455 ], [ -96.319968254635683, 29.955297204422891 ], [ -96.320012254248155, 29.955347203686575 ], [ -96.32033425389892, 29.955566204272827 ], [ -96.320460254564622, 29.955792204143066 ], [ -96.320529254348628, 29.955896204396318 ], [ -96.320555254143272, 29.956001203756397 ], [ -96.320555253958716, 29.95611620373969 ], [ -96.320517254432104, 29.956215204609258 ], [ -96.320460254653028, 29.956320204581893 ], [ -96.320239254226294, 29.956534204657896 ], [ -96.319949254138649, 29.956699204193896 ], [ -96.319709253902232, 29.95672120389721 ], [ -96.319627253690257, 29.956759204743605 ], [ -96.319595254246337, 29.95683120398191 ], [ -96.319595253679026, 29.956897204695011 ], [ -96.31960825425034, 29.956957203977154 ], [ -96.319652254555962, 29.957029204175264 ], [ -96.31969625411412, 29.957078204528333 ], [ -96.319702253964806, 29.957144204080919 ], [ -96.319696254182233, 29.957205204788032 ], [ -96.319671254412299, 29.957276204002021 ], [ -96.319677254584917, 29.957391204606008 ], [ -96.319721254421964, 29.957562204916684 ], [ -96.319772254437453, 29.957694204549274 ], [ -96.319848254616758, 29.957787204506253 ], [ -96.320195253976379, 29.958084204202489 ], [ -96.320372254218924, 29.958293204982734 ], [ -96.320536254242356, 29.958403204978353 ], [ -96.320618254265995, 29.95848020437009 ], [ -96.320801254706865, 29.95867820471728 ], [ -96.320845254014259, 29.958782204890035 ], [ -96.320858254733466, 29.958903204389866 ], [ -96.320832254302204, 29.959002204623552 ], [ -96.320782254098361, 29.959096204926567 ], [ -96.320713254209338, 29.959183205122674 ], [ -96.320555254770426, 29.959288204938154 ], [ -96.320372254592471, 29.959326205094285 ], [ -96.320245253976964, 29.959370204578814 ], [ -96.320151254587174, 29.959442204736746 ], [ -96.320119254655268, 29.959519205204675 ], [ -96.320126254062743, 29.959615204575559 ], [ -96.320138253920248, 29.959794204769377 ], [ -96.320283254762586, 29.960255205379614 ], [ -96.320391253995666, 29.960558204911351 ], [ -96.320391254299949, 29.960684205134658 ], [ -96.320353255004775, 29.960783204942746 ], [ -96.320302254780245, 29.960866205431628 ], [ -96.320050254382238, 29.961096205284736 ], [ -96.320012254047441, 29.961234205420233 ], [ -96.320018254201116, 29.961333205171371 ], [ -96.320050254121909, 29.96142120540393 ], [ -96.320113254482507, 29.961470205684758 ], [ -96.320214254393946, 29.961509205683409 ], [ -96.320327254607292, 29.961525205250016 ], [ -96.320391254230003, 29.961503205510443 ], [ -96.320454254392956, 29.961454205483587 ], [ -96.320523254426249, 29.961371204945962 ], [ -96.320567255010374, 29.961278204968952 ], [ -96.32065625495548, 29.961212205092401 ], [ -96.320750254353854, 29.961184205308481 ], [ -96.320845254614952, 29.961195205115242 ], [ -96.320934254652627, 29.961272204875712 ], [ -96.321016254603492, 29.961371205600972 ], [ -96.321104255092195, 29.961437205652352 ], [ -96.321192255209581, 29.961481204833458 ], [ -96.321281254944864, 29.961503205045567 ], [ -96.321451255261067, 29.961525205566215 ], [ -96.321634254418328, 29.961569205133571 ], [ -96.321729254394953, 29.961608205232938 ], [ -96.321824255225692, 29.961624205512752 ], [ -96.321887255328264, 29.961613205384214 ], [ -96.321962254958393, 29.961564204831024 ], [ -96.322139254688125, 29.961476205616329 ], [ -96.322291254893926, 29.961465204993846 ], [ -96.322404255192922, 29.961492205012341 ], [ -96.322493255064984, 29.96152520481634 ], [ -96.322556255117831, 29.961602204848255 ], [ -96.322569254750832, 29.961657205224025 ], [ -96.322562255568585, 29.961728205485652 ], [ -96.322442254679046, 29.961948204963001 ], [ -96.322392255283233, 29.962064205675535 ], [ -96.32234825555031, 29.96227820515173 ], [ -96.322297255306395, 29.962366205696934 ], [ -96.322215254871267, 29.96243820556424 ], [ -96.322101255269416, 29.962454205245223 ], [ -96.322019254795507, 29.962449205837505 ], [ -96.321735254524256, 29.96236120511259 ], [ -96.321603254414327, 29.962350205276966 ], [ -96.321502255030424, 29.96236120538644 ], [ -96.321382255326725, 29.962482205800256 ], [ -96.321344254511146, 29.962570205395352 ], [ -96.321350255190922, 29.962723205327105 ], [ -96.32142625494285, 29.962817205795709 ], [ -96.321672254963488, 29.962971205133517 ], [ -96.321792255178977, 29.963004205490467 ], [ -96.321975255082933, 29.962982205779856 ], [ -96.322152254952982, 29.962855205231776 ], [ -96.3222472546897, 29.962800205245458 ], [ -96.322329255445553, 29.962789205663785 ], [ -96.322411254621031, 29.962822205768589 ], [ -96.322783254842903, 29.963174205499612 ], [ -96.323326254912971, 29.963806205999088 ], [ -96.323339255880455, 29.963933206015366 ], [ -96.323326255851129, 29.964109205761776 ], [ -96.323339255015057, 29.964219206116439 ], [ -96.323383255180048, 29.964312205695144 ], [ -96.323434255191401, 29.964345205420098 ], [ -96.32350325538367, 29.964367206137723 ], [ -96.323604255666652, 29.964339205805953 ], [ -96.323825255595196, 29.964202205959609 ], [ -96.324071255137, 29.964092205899533 ], [ -96.324399255997918, 29.963911205981088 ], [ -96.324551255207837, 29.963861205953688 ], [ -96.324702255290092, 29.963839205699113 ], [ -96.324879255773055, 29.963790206010447 ], [ -96.324961255694717, 29.963757205835616 ], [ -96.325264255803276, 29.963597205756759 ], [ -96.325378255562072, 29.963548205842983 ], [ -96.325454256061718, 29.963548205250351 ], [ -96.325529256401708, 29.963603205564208 ], [ -96.325744256357495, 29.963900205682446 ], [ -96.325832256261748, 29.96398820593248 ], [ -96.325921256564456, 29.964026205439783 ], [ -96.326022256508466, 29.96403720547017 ], [ -96.326148255792162, 29.964032205319622 ], [ -96.327051256692755, 29.963856205091115 ], [ -96.32718325673379, 29.963856205452959 ], [ -96.327468255933155, 29.963927205692201 ], [ -96.327689256167872, 29.963955205262341 ], [ -96.327834256315256, 29.964009205795442 ], [ -96.327903256792496, 29.964026205798074 ], [ -96.327966257073996, 29.96402620589809 ], [ -96.328029256892137, 29.964015205582864 ], [ -96.328282256308242, 29.963839205874176 ], [ -96.328358256977666, 29.96383920544222 ], [ -96.328452256753181, 29.96393320520443 ], [ -96.328459256880706, 29.963976205319412 ], [ -96.328427256257584, 29.964026205630383 ], [ -96.328313256500905, 29.964125205218394 ], [ -96.328295256863541, 29.964158205601333 ], [ -96.328301256492551, 29.964202205540609 ], [ -96.328351256285032, 29.964268205350191 ], [ -96.328566256244756, 29.964411205388778 ], [ -96.328894256849253, 29.964543205348427 ], [ -96.329229257004172, 29.964598205727214 ], [ -96.329317257081186, 29.964603205396585 ], [ -96.329393257199044, 29.964587205539338 ], [ -96.329456256963681, 29.964554205614125 ], [ -96.329469256730519, 29.964482205493741 ], [ -96.329399256988353, 29.964328205184053 ], [ -96.329330257052504, 29.964224205566733 ], [ -96.329336256436278, 29.964141205733149 ], [ -96.329355256832045, 29.964092205543604 ], [ -96.329412256478093, 29.964053205311892 ], [ -96.329582257276101, 29.964059205616142 ], [ -96.329759256876514, 29.964114205833756 ], [ -96.330283256773541, 29.964180205163792 ], [ -96.330460257535421, 29.964213205530609 ], [ -96.33058025760117, 29.964290205730283 ], [ -96.330769257714266, 29.964449205765039 ], [ -96.330839257011007, 29.96453720579979 ], [ -96.330908257839738, 29.964603205967556 ], [ -96.331098257710124, 29.96470220523787 ], [ -96.331199257729693, 29.964713205861877 ], [ -96.331407257210415, 29.964526205423887 ], [ -96.331495257482914, 29.964520205107156 ], [ -96.331577257092022, 29.964531205101437 ], [ -96.331666257768305, 29.964597205210783 ], [ -96.331779257217931, 29.964702205925356 ], [ -96.331874257893048, 29.964768205981478 ], [ -96.331975257493909, 29.96479520572111 ], [ -96.332127257341881, 29.964801205205884 ], [ -96.332341258146442, 29.964795205934461 ], [ -96.332569257541778, 29.964757205210095 ], [ -96.332670258059849, 29.964713205621795 ], [ -96.332771257672263, 29.964625205387403 ], [ -96.332846257964064, 29.964454205833672 ], [ -96.332891258212328, 29.964295205341639 ], [ -96.332966257722987, 29.964147205392432 ], [ -96.332979258167612, 29.964031205328038 ], [ -96.332973257708289, 29.963932205593085 ], [ -96.332909257300514, 29.963657204976602 ], [ -96.332922257421401, 29.963553205128846 ], [ -96.332954258110476, 29.963498205342514 ], [ -96.333004257639629, 29.963465205482947 ], [ -96.333294258299986, 29.963399204961284 ], [ -96.333446257731737, 29.963377204842459 ], [ -96.333560257978334, 29.963344205006333 ], [ -96.333667258177869, 29.963349205507523 ], [ -96.333800258063562, 29.963377204741345 ], [ -96.333913257536651, 29.963421205350333 ], [ -96.334008258376187, 29.963487204828073 ], [ -96.334122258505388, 29.96361320536403 ], [ -96.334324258639711, 29.963987205545582 ], [ -96.33445625794316, 29.964273205452891 ], [ -96.334513257947421, 29.964333205454256 ], [ -96.334582257887249, 29.964372205416126 ], [ -96.33464625829869, 29.964438205443329 ], [ -96.334671258567397, 29.964487205190107 ], [ -96.334968258143945, 29.965367205619629 ], [ -96.335075258179842, 29.965608205444799 ], [ -96.335113258710592, 29.966037205395079 ], [ -96.335069258592938, 29.966175205637956 ], [ -96.335044258975159, 29.966356205442121 ], [ -96.335082258048928, 29.966603205846848 ], [ -96.33511925874825, 29.966746205567162 ], [ -96.335119258971957, 29.966851206130276 ], [ -96.335088258680017, 29.966933205502439 ], [ -96.335018258504363, 29.967016205989395 ], [ -96.334962258968616, 29.967065206319582 ], [ -96.334766258531815, 29.967175205911037 ], [ -96.334741258386543, 29.967208206228719 ], [ -96.33472825874064, 29.967269206377448 ], [ -96.334816258047283, 29.967356205962254 ], [ -96.334936258730025, 29.967406205634223 ], [ -96.335044258693983, 29.967417205943029 ], [ -96.335391258959334, 29.96741120583664 ], [ -96.335536259093928, 29.967455206356085 ], [ -96.335669258560273, 29.967455206383043 ], [ -96.335732258277787, 29.967433205702839 ], [ -96.335852258668879, 29.967345205683955 ], [ -96.33593425885789, 29.967263206265208 ], [ -96.335978258368385, 29.967153205692892 ], [ -96.336003258801583, 29.96703220598555 ], [ -96.336041258451885, 29.96696620597735 ], [ -96.336142258982136, 29.966900205809214 ], [ -96.336313258671723, 29.966988205534697 ], [ -96.336433259034251, 29.967098205837523 ], [ -96.336464258804085, 29.967142205712072 ], [ -96.336527259115044, 29.967323205730668 ], [ -96.336565258550479, 29.967373205534848 ], [ -96.336622258702192, 29.967411205635639 ], [ -96.336679259399361, 29.967422205695282 ], [ -96.336868258516489, 29.967428206137928 ], [ -96.337045258959904, 29.967472206095358 ], [ -96.337127259379471, 29.967483206256848 ], [ -96.337342259167499, 29.967439205725395 ], [ -96.337437259474058, 29.967450206256107 ], [ -96.33750625934087, 29.967494205748906 ], [ -96.337557259401066, 29.967582206178943 ], [ -96.337740258897213, 29.9676972055045 ], [ -96.337790259717579, 29.96769120574961 ], [ -96.337841258966691, 29.967653205659587 ], [ -96.33789725972369, 29.967581206340949 ], [ -96.337961259295085, 29.967554206158379 ], [ -96.338068259018428, 29.967576206197879 ], [ -96.338137259100549, 29.967625205598882 ], [ -96.3381822594597, 29.967675205617656 ], [ -96.338226259545095, 29.967801206358395 ], [ -96.338238259141363, 29.967895206072146 ], [ -96.338264259012917, 29.967944205902263 ], [ -96.338447259199967, 29.968071206245632 ], [ -96.338491259624433, 29.968126206418102 ], [ -96.338510258984471, 29.968236206415686 ], [ -96.338535259264049, 29.968279206124286 ], [ -96.338579259032088, 29.968324205777314 ], [ -96.3387182598468, 29.968422205742659 ], [ -96.338762259533382, 29.968477205799179 ], [ -96.338826259292702, 29.968637206412978 ], [ -96.338920259687754, 29.968785205650594 ], [ -96.338927259654511, 29.968813206152689 ], [ -96.338902259789236, 29.969027206482831 ], [ -96.339003259964556, 29.969307205749594 ], [ -96.339148259568333, 29.969621205799282 ], [ -96.339167259732079, 29.969681206025637 ], [ -96.339173259387692, 29.969978206580741 ], [ -96.339255260165416, 29.97019220614273 ], [ -96.339274259335809, 29.970401206174191 ], [ -96.339236259414463, 29.970583206762409 ], [ -96.339224259924436, 29.970770206509602 ], [ -96.33923626021658, 29.970885206813804 ], [ -96.339274259944304, 29.970978206279618 ], [ -96.339388259292846, 29.971132206968079 ], [ -96.339382259703868, 29.971209206797194 ], [ -96.339350259905217, 29.97123720618405 ], [ -96.339211259405445, 29.97127520681774 ], [ -96.339186260062093, 29.971325206538577 ], [ -96.339237260293601, 29.971506206267165 ], [ -96.339237259628916, 29.971583206716602 ], [ -96.339237259821829, 29.971721207087288 ], [ -96.339211259319825, 29.97179820679785 ], [ -96.33912926006829, 29.971913206388674 ], [ -96.339079259777222, 29.971940206561211 ], [ -96.338839259906422, 29.972034206907118 ], [ -96.338757259675589, 29.97207820679596 ], [ -96.338675259977862, 29.972160206940941 ], [ -96.338656259411479, 29.9722592069269 ], [ -96.338669259388396, 29.972320207248238 ], [ -96.338662259877339, 29.972628206595818 ], [ -96.338637259882432, 29.972809206563127 ], [ -96.338511260156253, 29.973051207377026 ], [ -96.338448259184901, 29.97320520686776 ], [ -96.338385259774597, 29.973271207413074 ], [ -96.33832825978844, 29.973309206979124 ], [ -96.338252260050808, 29.973342206949503 ], [ -96.338044259691728, 29.973392207135063 ], [ -96.337962259036132, 29.973436207440418 ], [ -96.337905259788428, 29.973496207483166 ], [ -96.337911259322681, 29.973639206919856 ], [ -96.337924260045881, 29.973722207038897 ], [ -96.337981259694203, 29.973810206850537 ], [ -96.338025259619485, 29.973859206921318 ], [ -96.338075259982048, 29.97396920756216 ], [ -96.338132259977257, 29.974145207128995 ], [ -96.338183259217956, 29.974222207612712 ], [ -96.338240259296143, 29.974266206937738 ], [ -96.338309259265543, 29.97430420753286 ], [ -96.338366260119741, 29.974354206906426 ], [ -96.338397259314078, 29.974409207370108 ], [ -96.338448259204824, 29.974601207509501 ], [ -96.338486259623366, 29.974667207129862 ], [ -96.338707259899493, 29.97497520771465 ], [ -96.338776259809833, 29.975107207016816 ], [ -96.338890259894697, 29.975211207418447 ], [ -96.338972260182217, 29.975228207283859 ], [ -96.33918025943268, 29.975239207243373 ], [ -96.339294260394013, 29.975272207028958 ], [ -96.339414260476744, 29.975376207614133 ], [ -96.339496259723902, 29.975497207425374 ], [ -96.339547259538193, 29.97567320739487 ], [ -96.339559260380938, 29.975832207792863 ], [ -96.339528260326716, 29.976442207253314 ], [ -96.339478259953367, 29.976558208066908 ], [ -96.339414259592388, 29.9767612075239 ], [ -96.33939625992052, 29.976959207454723 ], [ -96.339364260192156, 29.977025207954497 ], [ -96.339313260290766, 29.977080208051785 ], [ -96.339187260479108, 29.977283208223721 ], [ -96.339156260379923, 29.977360208021562 ], [ -96.33915625974663, 29.977432208097476 ], [ -96.339168259641355, 29.977492207516484 ], [ -96.339206259911066, 29.977547207434668 ], [ -96.339339259893023, 29.977608207869494 ], [ -96.339408260164362, 29.977624208110818 ], [ -96.339471260023487, 29.97766820744965 ], [ -96.339484260036343, 29.977795207548422 ], [ -96.339478260475374, 29.977861207814033 ], [ -96.339516259896158, 29.977954207827011 ], [ -96.339598260281193, 29.978075208349079 ], [ -96.339655260679734, 29.978130208166736 ], [ -96.339718259899087, 29.978174208263386 ], [ -96.339932260451988, 29.978300208057188 ], [ -96.340242260192099, 29.978432208209458 ], [ -96.340488260883689, 29.978465208323009 ], [ -96.340678259977921, 29.978531208216143 ], [ -96.340741260569587, 29.978542207860983 ], [ -96.340880260190914, 29.978548207614804 ], [ -96.341246260238492, 29.97866320827427 ], [ -96.34129626084632, 29.978663208110135 ], [ -96.341372260286633, 29.978646207823061 ], [ -96.341562260846956, 29.978575208169964 ], [ -96.341726260428018, 29.978531207912972 ], [ -96.341820260865887, 29.978542207858112 ], [ -96.34185226056151, 29.978575207650017 ], [ -96.341877260701438, 29.978696208402219 ], [ -96.341877260298617, 29.978740207753074 ], [ -96.341852260356134, 29.978806208344043 ], [ -96.341783260402792, 29.978866207957324 ], [ -96.341764260345201, 29.978987207805613 ], [ -96.341776261087745, 29.979020207953067 ], [ -96.341808260858244, 29.979048208437401 ], [ -96.341896260979354, 29.979097207959153 ], [ -96.341921261035367, 29.979125207954631 ], [ -96.341941261067277, 29.979157207707122 ], [ -96.341991260463018, 29.979317207762872 ], [ -96.342023260360904, 29.979361207791424 ], [ -96.342098261253696, 29.979443207967844 ], [ -96.342187261010423, 29.979487207901283 ], [ -96.342225260575304, 29.979531208384124 ], [ -96.342225261358934, 29.979575207742709 ], [ -96.342187260687055, 29.979696207931752 ], [ -96.342199260536574, 29.979740208297567 ], [ -96.342231260657343, 29.979784208270051 ], [ -96.342263260863831, 29.97980120835399 ], [ -96.342300260572003, 29.979801207732848 ], [ -96.342326260421359, 29.979790208444484 ], [ -96.342364260619675, 29.979762208006594 ], [ -96.342439260532032, 29.97966920775265 ], [ -96.342515260456622, 29.979636208130145 ], [ -96.342553260521939, 29.979608208539219 ], [ -96.342578261242949, 29.979542207856692 ], [ -96.342635261091417, 29.979509208546066 ], [ -96.342705261180356, 29.979504208070466 ], [ -96.342768260582147, 29.979520207835627 ], [ -96.342806261371976, 29.979548207674934 ], [ -96.342825261372838, 29.979586208328772 ], [ -96.342831260807856, 29.979647208499411 ], [ -96.342875261323158, 29.979768208580531 ], [ -96.342957260974941, 29.979850207732653 ], [ -96.343134260810999, 29.97995420783397 ], [ -96.343197261617689, 29.980037208074673 ], [ -96.343235261022187, 29.980119208403771 ], [ -96.343323261603601, 29.980191208278129 ], [ -96.343355261079864, 29.980191208627502 ], [ -96.343399260762894, 29.980174208636729 ], [ -96.343488261096027, 29.980119207854667 ], [ -96.343551261607331, 29.980103208081541 ], [ -96.343595261365948, 29.980108208592888 ], [ -96.343633261616532, 29.9801302081014 ], [ -96.34370526134866, 29.980155208200337 ], [ -96.344005261522526, 29.98025720791145 ], [ -96.344081261881016, 29.980268208541169 ], [ -96.344132261328298, 29.980257207826181 ], [ -96.344170261162432, 29.980235207854356 ], [ -96.344214261157319, 29.980174208289156 ], [ -96.344283261895441, 29.980136208041625 ], [ -96.344340261839307, 29.980119208510388 ], [ -96.344454261879946, 29.980108207995997 ], [ -96.344574261821492, 29.980125208420898 ], [ -96.344738262036316, 29.980163208469246 ], [ -96.345205261553858, 29.980190208096726 ], [ -96.345268261518527, 29.980201208276966 ], [ -96.345382261631855, 29.980278208295523 ], [ -96.345413261336944, 29.980383208103877 ], [ -96.345432261534455, 29.980592208063236 ], [ -96.345470261610856, 29.980663208344549 ], [ -96.345786262357549, 29.981147208072006 ], [ -96.34592526216224, 29.981339208203263 ], [ -96.346247261803441, 29.981608208090648 ], [ -96.346329261523707, 29.981696208725218 ], [ -96.346456262560537, 29.981801208019963 ], [ -96.346513262439416, 29.981856208341124 ], [ -96.346532262572993, 29.981905208675652 ], [ -96.346538262563357, 29.981971208799859 ], [ -96.346525261943924, 29.982059208591945 ], [ -96.346487262223945, 29.982120208285306 ], [ -96.346279261665885, 29.982318208784811 ], [ -96.346197262272312, 29.982438208870807 ], [ -96.346172261512649, 29.982515208589561 ], [ -96.346172262381259, 29.982576208200889 ], [ -96.346203262084742, 29.982664208285389 ], [ -96.346267261622344, 29.982757209015816 ], [ -96.346336261795102, 29.982823208508179 ], [ -96.346557262571707, 29.98295520831336 ], [ -96.346747261910195, 29.983010208943295 ], [ -96.346835261989639, 29.983049208252307 ], [ -96.346993262618327, 29.983158208689588 ], [ -96.347094262472623, 29.983241208455119 ], [ -96.347176262677621, 29.983290208547228 ], [ -96.347252262803877, 29.983356208623984 ], [ -96.347365261933604, 29.983422208402981 ], [ -96.347568262922493, 29.983466208964046 ], [ -96.347631262229513, 29.983505208546106 ], [ -96.347656261951016, 29.983532208414932 ], [ -96.347694262580049, 29.983603208855357 ], [ -96.347744262024975, 29.983724209073987 ], [ -96.347896262071203, 29.984159209188746 ], [ -96.348003262221638, 29.984296208988415 ], [ -96.348086262384768, 29.984357208487122 ], [ -96.348199262680765, 29.984411209222042 ], [ -96.348250262437517, 29.984417209051195 ], [ -96.348389262236665, 29.984406208668734 ], [ -96.348502262857153, 29.98442820914708 ], [ -96.348723262496534, 29.984521208861942 ], [ -96.348767263055962, 29.984560209167665 ], [ -96.348850262437381, 29.984664209314261 ], [ -96.34907726278206, 29.984895209020891 ], [ -96.349210262895895, 29.985076209345266 ], [ -96.349323262878059, 29.985318208685069 ], [ -96.349462262755509, 29.985533209502094 ], [ -96.349620263343567, 29.985637209135245 ], [ -96.349803263115732, 29.985879209411131 ], [ -96.35005026294742, 29.986247208849047 ], [ -96.350088263444178, 29.986280209368182 ], [ -96.350220263419516, 29.98640120905042 ], [ -96.350265262926001, 29.986428209466943 ], [ -96.350404262951926, 29.986500209615844 ], [ -96.350498262874893, 29.986560208958515 ], [ -96.350618263487092, 29.986665209334394 ], [ -96.350770263193709, 29.986841208863535 ], [ -96.350820263180765, 29.986929209693987 ], [ -96.350858262946602, 29.987115208950492 ], [ -96.35090926337476, 29.987242209476079 ], [ -96.35095926363158, 29.987302209716404 ], [ -96.351004263627644, 29.987330209732367 ], [ -96.351162262995999, 29.987379209797385 ], [ -96.351610264130599, 29.987549209182163 ], [ -96.351812264186222, 29.987687209628177 ], [ -96.351907263562666, 29.987775209191344 ], [ -96.35197026390604, 29.987857209499914 ], [ -96.352033264126092, 29.987973209428176 ], [ -96.352090263671272, 29.98804420935636 ], [ -96.352159263361415, 29.988083209439431 ], [ -96.352229264075632, 29.988094209756493 ], [ -96.352570264167298, 29.988055209210703 ], [ -96.352734264108435, 29.988050209737033 ], [ -96.352923263628398, 29.988055209483644 ], [ -96.352999264041941, 29.988082209835756 ], [ -96.353107264120169, 29.988159209091933 ], [ -96.353271264581366, 29.988390209472808 ], [ -96.353372263905371, 29.988489209982113 ], [ -96.353416264082398, 29.988500209939325 ], [ -96.353511263921618, 29.988484209678443 ], [ -96.353574264526415, 29.98848420920654 ], [ -96.353618264304586, 29.988500209275188 ], [ -96.353757264425269, 29.988659209570564 ], [ -96.353770264100291, 29.988720209660823 ], [ -96.353770264554882, 29.988791209412039 ], [ -96.353713263863412, 29.989006209800809 ], [ -96.353694264590658, 29.989116209552424 ], [ -96.353732264768084, 29.989231209816687 ], [ -96.353972264194326, 29.989550210177743 ], [ -96.354073264145569, 29.989638209873103 ], [ -96.354181264025058, 29.989682209308818 ], [ -96.354320263967452, 29.989671209903086 ], [ -96.354414264228794, 29.989643209980969 ], [ -96.354522264620513, 29.989654209386433 ], [ -96.354680264283886, 29.989742209487744 ], [ -96.354749264748108, 29.989814209755348 ], [ -96.354831264165185, 29.990116209928541 ], [ -96.354863264901951, 29.990171209498932 ], [ -96.354932264622931, 29.990215210066211 ], [ -96.355008264815893, 29.990231209898589 ], [ -96.355229265013492, 29.990325209954449 ], [ -96.355419264458192, 29.990434209874984 ], [ -96.355583264466077, 29.990599210281477 ], [ -96.355703265319349, 29.990726209814461 ], [ -96.355829264813735, 29.990968209611353 ], [ -96.355918265397676, 29.991105209980045 ], [ -96.35605026530942, 29.991413209783179 ], [ -96.356335264743521, 29.991836209759462 ], [ -96.356461265324995, 29.992072210607176 ], [ -96.356600265045799, 29.992237210308627 ], [ -96.356903265570523, 29.992254210612792 ], [ -96.35711226544511, 29.992276210034394 ], [ -96.357194265657853, 29.992314210631623 ], [ -96.357251265709451, 29.992369210479396 ], [ -96.357333265079987, 29.99247321039757 ], [ -96.357402265192064, 29.992611210380051 ], [ -96.35738326495391, 29.992792210022543 ], [ -96.357390264919687, 29.992853210708464 ], [ -96.357415265405947, 29.992924210306761 ], [ -96.357503264994008, 29.993067210547281 ], [ -96.357592265709329, 29.993128210776955 ], [ -96.357680265443122, 29.993133210245194 ], [ -96.35775626496951, 29.993127210746273 ], [ -96.35781926561927, 29.993094210330742 ], [ -96.357863265055826, 29.993056210477942 ], [ -96.357901265287637, 29.992990210398109 ], [ -96.35799626588782, 29.992754210114647 ], [ -96.358091265712318, 29.992633210137537 ], [ -96.35817926542407, 29.992600210309977 ], [ -96.358230265858751, 29.992600209835427 ], [ -96.35829926531045, 29.992622209969714 ], [ -96.358362265201151, 29.992710210609641 ], [ -96.358369265252321, 29.992814210383909 ], [ -96.358350265182892, 29.992951210219125 ], [ -96.358343265948974, 29.993138210446268 ], [ -96.358388265162105, 29.993199210230319 ], [ -96.358451265202788, 29.993237209979785 ], [ -96.358546266006755, 29.993265210540322 ], [ -96.358779265431991, 29.993287209983233 ], [ -96.358975266074324, 29.993363210081338 ], [ -96.359070265528445, 29.99344621032434 ], [ -96.359127265378191, 29.993528210786284 ], [ -96.359171265826248, 29.993627210364043 ], [ -96.359272265939012, 29.994056210113541 ], [ -96.359304266275473, 29.99425921026296 ], [ -96.359399266089142, 29.994490210205452 ], [ -96.359544266395261, 29.994677210294807 ], [ -96.359670265930731, 29.994803210264656 ], [ -96.359809265562447, 29.994902210583106 ], [ -96.360112266255584, 29.995073210633837 ], [ -96.360314266613443, 29.995205210932522 ], [ -96.360605266041773, 29.995523210452074 ], [ -96.360706266461946, 29.995584210534748 ], [ -96.360908266870069, 29.995683211132498 ], [ -96.360965266018198, 29.995699210476914 ], [ -96.361060265902623, 29.995699210575786 ], [ -96.361193266088449, 29.995732210439019 ], [ -96.361445266837592, 29.995820210388047 ], [ -96.3615462660498, 29.995864210495245 ], [ -96.361647266483544, 29.99588021106775 ], [ -96.361723266784892, 29.995864210784955 ], [ -96.361805266642321, 29.995787210944819 ], [ -96.361837266944875, 29.995704210929063 ], [ -96.361837267048401, 29.995655210936167 ], [ -96.361862266353612, 29.995594210952145 ], [ -96.361919266659569, 29.995572211002997 ], [ -96.362020266882212, 29.995567210783673 ], [ -96.362140266862568, 29.995600210698907 ], [ -96.362253267090466, 29.995644210407516 ], [ -96.362373266302157, 29.995715210805535 ], [ -96.36265126658023, 29.995803210914282 ], [ -96.362872266905029, 29.995891210456968 ], [ -96.362955267389893, 29.995935210799331 ], [ -96.363030266875995, 29.996006210667701 ], [ -96.363113266596045, 29.996160210874361 ], [ -96.363113267230815, 29.996221210891331 ], [ -96.363087267380337, 29.996314211075038 ], [ -96.363100267383146, 29.996375210877876 ], [ -96.363144267270954, 29.996435211104863 ], [ -96.363207266822286, 29.996468211041783 ], [ -96.363340267140288, 29.996463210754623 ], [ -96.363504266838135, 29.996424211042829 ], [ -96.363555267046067, 29.996424211212016 ], [ -96.363599266826753, 29.996457210766589 ], [ -96.36383326754968, 29.996715211211587 ], [ -96.363902267125781, 29.99686921045172 ], [ -96.363972266698454, 29.996990210698456 ], [ -96.364029267639779, 29.997039211071264 ], [ -96.364193267081291, 29.997105211172357 ], [ -96.364325267666942, 29.997144210821549 ], [ -96.364420267785206, 29.997188211014699 ], [ -96.364477267123078, 29.997243211167572 ], [ -96.364502267137169, 29.99739121130812 ], [ -96.364610267379092, 29.997529210588283 ], [ -96.364622267877024, 29.997627211258127 ], [ -96.364578267714634, 29.997946211155142 ], [ -96.364585267393622, 29.998183211235681 ], [ -96.364604267605188, 29.99826521081004 ], [ -96.36465426761356, 29.998320210707245 ], [ -96.364724267952695, 29.998359210960935 ], [ -96.364800267924949, 29.998359211047184 ], [ -96.364882267609204, 29.998326210967758 ], [ -96.364951267552129, 29.998254210720134 ], [ -96.36499526769235, 29.998150211233273 ], [ -96.365014267730615, 29.998001210847271 ], [ -96.365065267379222, 29.997886211292112 ], [ -96.365096267913685, 29.997858210780315 ], [ -96.365153268035797, 29.997847211434372 ], [ -96.36522326771653, 29.997869211247817 ], [ -96.365330267534148, 29.997930210765897 ], [ -96.365551267566559, 29.998023211266034 ], [ -96.365715267324006, 29.998056210750477 ], [ -96.365785267664634, 29.99806121100606 ], [ -96.365867267398073, 29.998045211409799 ], [ -96.366347267845185, 29.997792211237908 ], [ -96.366435267619863, 29.997770210706395 ], [ -96.366536267851558, 29.99777021082452 ], [ -96.366599268308875, 29.997781210610754 ], [ -96.36666926769135, 29.997814210727196 ], [ -96.366770268416801, 29.997891210924625 ], [ -96.366915268451834, 29.998061211322625 ], [ -96.366947267995641, 29.998121211425616 ], [ -96.367010267954498, 29.998308210890595 ], [ -96.367080268210231, 29.998391211446084 ], [ -96.367124267888016, 29.998424210684618 ], [ -96.36721226849852, 29.998473210778702 ], [ -96.367370268037831, 29.998531211412985 ], [ -96.367440267755384, 29.998556211404388 ], [ -96.367547268159484, 29.998610211062807 ], [ -96.367806268125335, 29.998649211480537 ], [ -96.368096268020423, 29.998709210984277 ], [ -96.36817926864488, 29.998698210789996 ], [ -96.368292268709624, 29.998643211050101 ], [ -96.368368268541218, 29.998638210762319 ], [ -96.3686212684879, 29.99864921086229 ], [ -96.368785268254172, 29.998638211340594 ], [ -96.368854268545647, 29.998610210683157 ], [ -96.368917268090399, 29.998566211269999 ], [ -96.368968268206615, 29.998473210660627 ], [ -96.368987268738351, 29.998401210954384 ], [ -96.369037268390571, 29.998280211158178 ], [ -96.369088269069962, 29.99821421097931 ], [ -96.369176268866681, 29.998137210578843 ], [ -96.369246268419502, 29.998099210937497 ], [ -96.3693282682991, 29.99809321135438 ], [ -96.36942926856085, 29.998104211254496 ], [ -96.369542268338193, 29.998148210985601 ], [ -96.369593268848249, 29.998197210535224 ], [ -96.369606268211797, 29.998236211065954 ], [ -96.369675268768731, 29.998731210995725 ], [ -96.369701268471246, 29.998819211441567 ], [ -96.369726269000466, 29.998868210802616 ], [ -96.369770268245446, 29.998923211251864 ], [ -96.369896269244364, 29.99902721074081 ], [ -96.369979268603245, 29.999066210924241 ], [ -96.370162268824245, 29.999115210816417 ], [ -96.370332269371801, 29.999137210914196 ], [ -96.370446268530472, 29.999137210748554 ], [ -96.370522268704178, 29.999121210898441 ], [ -96.370604269126446, 29.999088210984116 ], [ -96.370667269443686, 29.99902221138187 ], [ -96.370787269254706, 29.998818211044661 ], [ -96.370831268822712, 29.99877421067966 ], [ -96.370919269048386, 29.998736211439216 ], [ -96.371140268632857, 29.998703210687921 ], [ -96.371311268692551, 29.998686210616967 ], [ -96.371387269365329, 29.998692210596207 ], [ -96.371431268993419, 29.998686210644088 ], [ -96.371507269611186, 29.998658211154318 ], [ -96.371532269638976, 29.998626210603707 ], [ -96.371627269440225, 29.998565210542463 ], [ -96.371721269722116, 29.998548211316624 ], [ -96.372044269773511, 29.998598210498535 ], [ -96.372132269161767, 29.998631210603797 ], [ -96.372366268922633, 29.998774210960317 ], [ -96.372612269803184, 29.998779211014369 ], [ -96.372700269070165, 29.998768211047182 ], [ -96.372846269287407, 29.998724210554599 ], [ -96.373003269678136, 29.998608211162637 ], [ -96.373256269443388, 29.998361210702949 ], [ -96.373628269191258, 29.997932211174533 ], [ -96.373679269884562, 29.997894210507496 ], [ -96.373761269855436, 29.997866210637348 ], [ -96.373843269905862, 29.997866211017055 ], [ -96.374045270287169, 29.997910210555457 ], [ -96.374134269362742, 29.997954210997957 ], [ -96.374209269407743, 29.998014210573643 ], [ -96.374279269616906, 29.998102211033931 ], [ -96.374311269599147, 29.998190210499931 ], [ -96.374361269610858, 29.998443211119959 ], [ -96.374386270314744, 29.998476211092825 ], [ -96.374431270392577, 29.998498211054521 ], [ -96.374488270097245, 29.998498210607941 ], [ -96.37453226983321, 29.998470211161468 ], [ -96.374595269694765, 29.998399210505642 ], [ -96.374607269476925, 29.998135210503353 ], [ -96.374645269983176, 29.998086210643645 ], [ -96.374740270431175, 29.998058210673051 ], [ -96.374816269754433, 29.998064210497699 ], [ -96.374866270519362, 29.99805821029128 ], [ -96.375004270150683, 29.998086210834192 ], [ -96.375150269734689, 29.998053210706427 ], [ -96.375213269646252, 29.998004210958626 ], [ -96.375251270336278, 29.997927210646324 ], [ -96.375257270009172, 29.997872210731149 ], [ -96.375181270386562, 29.997718210898153 ], [ -96.375200270004385, 29.997658210361344 ], [ -96.375289270599353, 29.997592210402672 ], [ -96.375459270433694, 29.997542210379734 ], [ -96.37561126981845, 29.997526210716032 ], [ -96.375775270307557, 29.997564210675289 ], [ -96.376047270614265, 29.997548210207029 ], [ -96.376375269966516, 29.997587210791973 ], [ -96.376501270502885, 29.997675210954782 ], [ -96.376621270216617, 29.997977210377332 ], [ -96.37667827034025, 29.998076210298088 ], [ -96.376830270068581, 29.998087210586206 ], [ -96.377025270383555, 29.997873210795941 ], [ -96.377101271009892, 29.997846210732074 ], [ -96.377303270118603, 29.997901210877128 ], [ -96.377663270959744, 29.998104210846464 ], [ -96.377802270458631, 29.998264210739833 ], [ -96.377953270899241, 29.998665210561896 ], [ -96.37824427076211, 29.998968210402293 ], [ -96.378224270747808, 29.999149210419318 ], [ -96.378243270711508, 29.999264210924032 ], [ -96.378218271046464, 29.999462210933267 ], [ -96.378357271197217, 29.999512210610359 ], [ -96.378546270594413, 29.999479211207881 ], [ -96.378767271310053, 29.999397210822227 ], [ -96.378906270625492, 29.999441210824958 ], [ -96.378963271098556, 29.999474210685722 ], [ -96.379001271188756, 29.999507210706355 ], [ -96.37902027067058, 29.999545211040729 ], [ -96.379045270673657, 29.999644210873377 ], [ -96.379014271142708, 29.999776211349236 ], [ -96.379089271601714, 29.99991921079312 ], [ -96.379247271433741, 29.999952210994554 ], [ -96.379752270860493, 29.999881211145819 ], [ -96.380005271733879, 29.99987021113985 ], [ -96.380119271350978, 29.999875211021887 ], [ -96.380194271489771, 29.999920211213091 ], [ -96.380232271912149, 30.000004211220325 ], [ -96.380207270983803, 30.000180211197936 ], [ -96.380156271221978, 30.000268211188583 ], [ -96.380112271084883, 30.000295210783833 ], [ -96.380023271864417, 30.000317210673014 ], [ -96.379714271047675, 30.000306211028327 ], [ -96.37963827172689, 30.00032321141228 ], [ -96.379590271473461, 30.000343210586955 ], [ -96.379575270851433, 30.000350211102951 ], [ -96.379556271812874, 30.00038321087532 ], [ -96.379550271397719, 30.000421210762287 ], [ -96.379562271386007, 30.000515211212086 ], [ -96.37958827144783, 30.000559210819414 ], [ -96.379707271094645, 30.000636210945849 ], [ -96.379840271566295, 30.000685211269179 ], [ -96.380175271694384, 30.000751211097292 ], [ -96.380547272051231, 30.000840211513513 ], [ -96.38081927155271, 30.000845210654095 ], [ -96.380939271292164, 30.000796211426987 ], [ -96.381097271188423, 30.000675211299431 ], [ -96.381154272097319, 30.000609210897004 ], [ -96.381179271494048, 30.000560211210132 ], [ -96.381185272221472, 30.000444210558996 ], [ -96.381167272149469, 30.000378210860799 ], [ -96.380939271286209, 30.00014221119168 ], [ -96.380933271710518, 30.00008121092408 ], [ -96.380971271812925, 30.000037211290319 ], [ -96.38111627170214, 30.000032210700525 ], [ -96.381350272164966, 30.000048210834162 ], [ -96.381413271271938, 30.000037210550129 ], [ -96.381470272193127, 30.000246211312277 ], [ -96.381558272012853, 30.000329211038714 ], [ -96.381568271407275, 30.000334211157025 ], [ -96.381703271501834, 30.000406210798062 ], [ -96.381861272021339, 30.000472210975619 ], [ -96.382038271474244, 30.000576210819183 ], [ -96.382114272286174, 30.000631210725039 ], [ -96.382240272448115, 30.00074721087185 ], [ -96.382366272500718, 30.000835210665887 ], [ -96.382581271611073, 30.000956211210394 ], [ -96.38345927255331, 30.001209210620058 ], [ -96.38364227248816, 30.001308211299701 ], [ -96.383831272905752, 30.001462210929336 ], [ -96.383869272441459, 30.001506211412519 ], [ -96.384071272113303, 30.001567211015438 ], [ -96.384507273034785, 30.0016332110742 ], [ -96.384942272486484, 30.001743211409313 ], [ -96.385612273334829, 30.001914210949469 ], [ -96.386123272849318, 30.002057211284892 ], [ -96.38618627336362, 30.002106211252769 ], [ -96.386426273403259, 30.002337211044441 ], [ -96.386603273503496, 30.00240321144063 ], [ -96.386982272884694, 30.002568210772697 ], [ -96.387045273318691, 30.002618211060831 ], [ -96.387083273207267, 30.002673211593301 ], [ -96.387134273153961, 30.002799211217255 ], [ -96.387140273728562, 30.002882211296303 ], [ -96.387133272871097, 30.002964211333897 ], [ -96.387108273262811, 30.002986211708073 ], [ -96.386957273341508, 30.003052210900396 ], [ -96.386634272726482, 30.003162211552851 ], [ -96.386571272723145, 30.003222211206388 ], [ -96.386552272738371, 30.003261210953124 ], [ -96.386558272903656, 30.003426210976198 ], [ -96.386628273585472, 30.003530211106995 ], [ -96.38677927307748, 30.003706211752046 ], [ -96.386805273304802, 30.003756211616249 ], [ -96.386817273322364, 30.003838211225919 ], [ -96.386868273690382, 30.004003211166662 ], [ -96.386899273184994, 30.004256211756687 ], [ -96.386943273271527, 30.004382211482323 ], [ -96.387057273880643, 30.004547211203409 ], [ -96.387240273261256, 30.004740211904988 ], [ -96.387297273743926, 30.004784211761461 ], [ -96.387751273506311, 30.004965211783496 ], [ -96.387903273733954, 30.005081211827296 ], [ -96.387941273187323, 30.005141211254671 ], [ -96.387979273254871, 30.005240211822763 ], [ -96.387972273935432, 30.005383211370553 ], [ -96.387941273716208, 30.005449211991728 ], [ -96.387890274092683, 30.005603211604093 ], [ -96.387814273796081, 30.005757211487396 ], [ -96.387820274135223, 30.005828211497423 ], [ -96.387959273221867, 30.00613621200667 ], [ -96.387984273908387, 30.006230212342551 ], [ -96.387978274034396, 30.006312211926243 ], [ -96.38795927352156, 30.006345211854462 ], [ -96.387864273342871, 30.006422211713868 ], [ -96.387612273298757, 30.006581212303949 ], [ -96.387567273913959, 30.006620211939705 ], [ -96.38753627396764, 30.006818211677935 ], [ -96.387580274000683, 30.007230212327517 ], [ -96.387605273671781, 30.007626212320968 ], [ -96.387586273448477, 30.007703212520926 ], [ -96.387567274154208, 30.00773021244607 ], [ -96.387478273962586, 30.007763211958672 ], [ -96.387346274107983, 30.007774212486819 ], [ -96.387301273538228, 30.007769212580595 ], [ -96.387251273406349, 30.007697212553168 ], [ -96.387112273450981, 30.007356212116161 ], [ -96.387043273708329, 30.00724121196971 ], [ -96.38698627337827, 30.0072242123621 ], [ -96.386910273149809, 30.007219212194663 ], [ -96.386809273583921, 30.007263212587144 ], [ -96.386759273313345, 30.007329212433802 ], [ -96.386714273095421, 30.007560212424423 ], [ -96.386626273748902, 30.007900212585991 ], [ -96.386600273874919, 30.008049212316191 ], [ -96.38677127328495, 30.008302212327312 ], [ -96.386859273073327, 30.008505212773887 ], [ -96.386897273249033, 30.008714212516757 ], [ -96.38689727318156, 30.009126212826349 ], [ -96.386928273809914, 30.009275212130689 ], [ -96.38696627359306, 30.009396212975705 ], [ -96.386997273520592, 30.009588212692357 ], [ -96.386991273496918, 30.009682212970482 ], [ -96.386941273374489, 30.009753212967709 ], [ -96.386625273773731, 30.009995212746567 ], [ -96.38656127373109, 30.010105212989036 ], [ -96.386517273569936, 30.010220212523176 ], [ -96.386485273852841, 30.010374212839139 ], [ -96.386479273058441, 30.010588213120609 ], [ -96.386517273701358, 30.01078621275267 ], [ -96.386561273772301, 30.010885212909198 ], [ -96.386630273370798, 30.010957212672128 ], [ -96.386820273958151, 30.011056212699891 ], [ -96.386933273876267, 30.011089213351827 ], [ -96.386971274006797, 30.011111212583288 ], [ -96.387003273589656, 30.01114921259704 ], [ -96.387003273993372, 30.011193212882151 ], [ -96.386959273870744, 30.011325212540836 ], [ -96.386940273645124, 30.01147921304932 ], [ -96.387009274079176, 30.01166621339415 ], [ -96.387066273347131, 30.011715213255222 ], [ -96.387211273351497, 30.011771213299927 ], [ -96.387287273884624, 30.011776213228536 ], [ -96.387489274079186, 30.011754212945664 ], [ -96.387647274024289, 30.011787212648585 ], [ -96.387729274398822, 30.011831212724577 ], [ -96.38788727378865, 30.011947213437335 ], [ -96.387944273674407, 30.012090213385854 ], [ -96.387963273720217, 30.012112212913589 ], [ -96.387956273986489, 30.012178213473678 ], [ -96.387925274013526, 30.012249213184582 ], [ -96.387861274146132, 30.012331212980662 ], [ -96.387849273680445, 30.012365213420477 ], [ -96.387855274372725, 30.012403213072432 ], [ -96.387887273655508, 30.012441212837885 ], [ -96.387962274400493, 30.01249621298907 ], [ -96.388253273794845, 30.012667212842135 ], [ -96.388613273715364, 30.012832213146226 ], [ -96.388701274132487, 30.012854213580503 ], [ -96.388758273777043, 30.012887213416395 ], [ -96.388827274411142, 30.012948212807085 ], [ -96.388973274501254, 30.013145213328489 ], [ -96.388985274247247, 30.013376213095846 ], [ -96.389010274092186, 30.013437213662392 ], [ -96.389042274328176, 30.013464213086614 ], [ -96.389288274075753, 30.013580212929668 ], [ -96.389327274325325, 30.013595213043757 ], [ -96.389490273916536, 30.013657213685075 ], [ -96.389762274936601, 30.013679213005787 ], [ -96.389844274269691, 30.013718213392213 ], [ -96.389932275011532, 30.013745213105793 ], [ -96.390065274381044, 30.013756213193847 ], [ -96.390387274663212, 30.013734213092015 ], [ -96.390532274634495, 30.013740212877362 ], [ -96.390779274958973, 30.013789212976988 ], [ -96.390974275324893, 30.013943213053071 ], [ -96.391006274425564, 30.013982213664612 ], [ -96.391025274519762, 30.014048212924177 ], [ -96.391044275213346, 30.014240213736162 ], [ -96.391044275314371, 30.014284213030361 ], [ -96.391006275025219, 30.014378213637386 ], [ -96.390943274469834, 30.014433213265836 ], [ -96.390804274359112, 30.014476213445654 ], [ -96.390519275015876, 30.01453721318607 ], [ -96.390444274577121, 30.014564213205922 ], [ -96.390374274575763, 30.014608213743227 ], [ -96.39033027423713, 30.014669213889245 ], [ -96.39027927496079, 30.014768213686331 ], [ -96.390241274649625, 30.01495521366115 ], [ -96.390254274552774, 30.015323213338835 ], [ -96.390285274690655, 30.015416214035575 ], [ -96.390349274338064, 30.015449213731006 ], [ -96.390399274858524, 30.015460213933252 ], [ -96.390588274586193, 30.015460213665001 ], [ -96.390639274773903, 30.015449213249511 ], [ -96.390816274667458, 30.015373213768129 ], [ -96.39086727513633, 30.015290213963603 ], [ -96.390904274887774, 30.015169213647923 ], [ -96.390936274655161, 30.01511421395961 ], [ -96.390987274605266, 30.015081213319235 ], [ -96.391044275058164, 30.015059213713943 ], [ -96.391195275364652, 30.015054213703678 ], [ -96.391277275027349, 30.015092213330714 ], [ -96.391454275375665, 30.015219213931019 ], [ -96.391599275234654, 30.015378213284901 ], [ -96.39166927524164, 30.015516213649352 ], [ -96.391719275528658, 30.01572521410559 ], [ -96.391719275439755, 30.015835213613872 ], [ -96.39169427498733, 30.015922213366593 ], [ -96.391555275120652, 30.016208214163662 ], [ -96.39150427519273, 30.016522214131552 ], [ -96.391567274872145, 30.016736213459311 ], [ -96.391586275563824, 30.016769214260954 ], [ -96.391624275205331, 30.016818214040175 ], [ -96.391756274971044, 30.016868213759778 ], [ -96.391820274742315, 30.016879213541991 ], [ -96.391965274706592, 30.016852214283464 ], [ -96.392091274928163, 30.016775214190432 ], [ -96.392116274915963, 30.016736213888006 ], [ -96.392142275382312, 30.016665213777728 ], [ -96.392129275439729, 30.016626214081654 ], [ -96.392136275432321, 30.016390213700117 ], [ -96.392167275029152, 30.01636221346147 ], [ -96.392193275189953, 30.016357213556969 ], [ -96.392256275684034, 30.016363213497655 ], [ -96.392350274937883, 30.016429213412565 ], [ -96.392559274937966, 30.016670214132514 ], [ -96.392603275480539, 30.016753213618546 ], [ -96.392653275112963, 30.016879214294619 ], [ -96.392679275114091, 30.017011213902794 ], [ -96.3927352757932, 30.017165213675028 ], [ -96.392697274931152, 30.017314213906168 ], [ -96.392640275785581, 30.017440213728868 ], [ -96.392615275735608, 30.017534214279838 ], [ -96.392615275456308, 30.017578214403724 ], [ -96.392640274903542, 30.017627214262077 ], [ -96.3927412759178, 30.017731213645455 ], [ -96.392893275082656, 30.017913214415582 ], [ -96.393044275541143, 30.018045214513009 ], [ -96.393101275309178, 30.0180782141686 ], [ -96.393474275944612, 30.018226213744761 ], [ -96.393537275813841, 30.018320214167566 ], [ -96.393600275591055, 30.018430213772366 ], [ -96.393644275318607, 30.018639214101807 ], [ -96.393695275637185, 30.018738214578047 ], [ -96.393796275497778, 30.018848213896096 ], [ -96.393815275871603, 30.018903214378714 ], [ -96.393783275726975, 30.019112214097323 ], [ -96.393701275985777, 30.019364214291716 ], [ -96.393701275826587, 30.019507214582653 ], [ -96.393713275347196, 30.01955721453718 ], [ -96.393764275902541, 30.019645214024866 ], [ -96.394004275990667, 30.019975214119857 ], [ -96.394111276202764, 30.020184214160313 ], [ -96.39408627636557, 30.020316214126048 ], [ -96.39403527571659, 30.020365214202084 ], [ -96.39372627543581, 30.020497214934274 ], [ -96.393656276030413, 30.020568214570144 ], [ -96.393612275324557, 30.02070021496003 ], [ -96.393561275639087, 30.021035214419314 ], [ -96.393574275826666, 30.021145214987431 ], [ -96.393687276143922, 30.021624214620214 ], [ -96.393674276142022, 30.02173921445733 ], [ -96.393649276124407, 30.021800215017723 ], [ -96.393561275383831, 30.021899214596544 ], [ -96.393453276154531, 30.021997215277185 ], [ -96.393415275690288, 30.022052214545759 ], [ -96.393188275876227, 30.022179214634058 ], [ -96.392935276184474, 30.022223215219192 ], [ -96.392891275782574, 30.022245215202613 ], [ -96.392853276150376, 30.022311215246575 ], [ -96.392859275518362, 30.02238821533129 ], [ -96.392992275619264, 30.022558215240192 ], [ -96.392986275554506, 30.022602215284511 ], [ -96.39299827581732, 30.022651215424219 ], [ -96.392954276147677, 30.022717215487383 ], [ -96.392859275917544, 30.022811214973455 ], [ -96.392790276153306, 30.022855215380517 ], [ -96.392802276102103, 30.02296521550517 ], [ -96.392872275525846, 30.023075214778618 ], [ -96.392916275802492, 30.023113214933968 ], [ -96.393055275392697, 30.0232782155256 ], [ -96.393118276257994, 30.023339215012474 ], [ -96.393137276313055, 30.023405215494595 ], [ -96.393143275708155, 30.023454215593578 ], [ -96.393124276320918, 30.023652215309337 ], [ -96.393143275671335, 30.023729214872645 ], [ -96.393238275451466, 30.023784215204291 ], [ -96.393282275387179, 30.023789215196448 ], [ -96.393364275562348, 30.023773214899965 ], [ -96.393433275955431, 30.023740215126274 ], [ -96.393503275625221, 30.023669215647637 ], [ -96.393661275837331, 30.023427214807963 ], [ -96.39367427575506, 30.023311215199595 ], [ -96.393693275486228, 30.023278215525949 ], [ -96.393750275487392, 30.023245214744065 ], [ -96.393832275769199, 30.023251215087747 ], [ -96.393889275903064, 30.023295215202097 ], [ -96.393895276362514, 30.023333215276431 ], [ -96.393869275882494, 30.023608215595427 ], [ -96.393907275520007, 30.023652215355234 ], [ -96.393964275910875, 30.023696215431389 ], [ -96.394021276363688, 30.023707215468111 ], [ -96.394084276310096, 30.023713215337306 ], [ -96.394147275589944, 30.023707215322844 ], [ -96.394204276383121, 30.023696215278793 ], [ -96.394229276212684, 30.02368021540849 ], [ -96.394242276386592, 30.023652214909607 ], [ -96.39422327600785, 30.023443215431211 ], [ -96.39423027561655, 30.023410214891022 ], [ -96.394267276505644, 30.023355214984171 ], [ -96.394293276253777, 30.02335021554773 ], [ -96.394337276374728, 30.023356215037936 ], [ -96.3943942759159, 30.023394214998646 ], [ -96.394432276304215, 30.023515215562782 ], [ -96.394438275801633, 30.023608215610128 ], [ -96.39445727623476, 30.023669214902618 ], [ -96.394501275889922, 30.023735215332707 ], [ -96.394577276451187, 30.023812215390297 ], [ -96.394665275879433, 30.023872215305921 ], [ -96.394697275784964, 30.023922214829454 ], [ -96.394691275903256, 30.023971215002124 ], [ -96.394602276647461, 30.024125215705528 ], [ -96.394608276586851, 30.024235215650208 ], [ -96.394633275995986, 30.024279214886413 ], [ -96.394892276534122, 30.024488215507986 ], [ -96.395025276005953, 30.024554215776323 ], [ -96.395252276608673, 30.024659215174978 ], [ -96.395644276737229, 30.024774215190895 ], [ -96.395682276507756, 30.024774215323244 ], [ -96.395676276370622, 30.024956215309011 ], [ -96.395619276656276, 30.025082215145794 ], [ -96.395581276617506, 30.025132215795523 ], [ -96.395258276016918, 30.025395215936094 ], [ -96.395214276179487, 30.025450215767048 ], [ -96.395183276543307, 30.025522215732664 ], [ -96.395163276548303, 30.025604215209547 ], [ -96.395132276829131, 30.025676215159393 ], [ -96.395081276856089, 30.025753215497208 ], [ -96.394904276094863, 30.025901215953322 ], [ -96.394848276065829, 30.026022215799774 ], [ -96.394809275948646, 30.026231215779532 ], [ -96.394828276165839, 30.02648921587771 ], [ -96.394803276561362, 30.026643215675929 ], [ -96.394771275864173, 30.026758216103005 ], [ -96.394752276107539, 30.026808215797036 ], [ -96.394626276095096, 30.02691821557784 ], [ -96.39459427683822, 30.026967216040823 ], [ -96.39456927666771, 30.027033215843613 ], [ -96.394550276597585, 30.027154215520294 ], [ -96.394550275935103, 30.027347216148176 ], [ -96.394525276073466, 30.027577215939626 ], [ -96.394550276563663, 30.027726215850262 ], [ -96.394733276288463, 30.02802821632601 ], [ -96.394783275972159, 30.02806121647885 ], [ -96.394847276413913, 30.028061216464085 ], [ -96.394897276067084, 30.028039215741256 ], [ -96.394967276740957, 30.028039216485944 ], [ -96.395011276397994, 30.028050215771714 ], [ -96.395055276817132, 30.028105215901505 ], [ -96.395194276426338, 30.028347216379863 ], [ -96.395232276192914, 30.028397216458092 ], [ -96.395339276329892, 30.028479215843248 ], [ -96.395459276848001, 30.028545216190672 ], [ -96.395611276875201, 30.02864421571104 ], [ -96.39583227669246, 30.028831216540627 ], [ -96.395939277061331, 30.028886216290243 ], [ -96.396078276477112, 30.028941216070141 ], [ -96.396192276656663, 30.029007215869754 ], [ -96.396230276862468, 30.029084216580863 ], [ -96.396242276352822, 30.029167216025662 ], [ -96.396255276804169, 30.0295072165382 ], [ -96.396236277182226, 30.029634216228633 ], [ -96.39623627695299, 30.029760216036536 ], [ -96.396255276990658, 30.029804215909579 ], [ -96.396330277242555, 30.029865216019473 ], [ -96.396450277383209, 30.029914216420327 ], [ -96.396634277111986, 30.029975216516021 ], [ -96.396861277141241, 30.030008216576302 ], [ -96.397006276682703, 30.030002216287969 ], [ -96.397114277336826, 30.029975216487259 ], [ -96.397196277015354, 30.029909216703764 ], [ -96.397234276653009, 30.029816216497849 ], [ -96.397259276813756, 30.029684216440632 ], [ -96.397284276936333, 30.029651216144817 ], [ -96.397322276770296, 30.029640216707378 ], [ -96.397455277107198, 30.02963421636041 ], [ -96.397543277649561, 30.029678215917052 ], [ -96.397663277579639, 30.029761215882818 ], [ -96.397758277631766, 30.029794216411887 ], [ -96.397821277054675, 30.029805216303082 ], [ -96.397897277180448, 30.029799216263864 ], [ -96.398175276853763, 30.029717216436286 ], [ -96.398339276958424, 30.029706216159152 ], [ -96.39839627765005, 30.02973921599509 ], [ -96.398428276970151, 30.029783216343674 ], [ -96.398447277526145, 30.029849215840606 ], [ -96.398434277901657, 30.029953216650423 ], [ -96.398447277793807, 30.029992216370307 ], [ -96.398497277264028, 30.030030216042789 ], [ -96.398617277443847, 30.030096216158917 ], [ -96.39873127746543, 30.030096216607358 ], [ -96.400102277955995, 30.030124216377697 ], [ -96.40015927748442, 30.030113216459235 ], [ -96.400443277503811, 30.029998216260264 ], [ -96.400753277711914, 30.029932216579706 ], [ -96.400898277836149, 30.02987721578965 ], [ -96.401043278625863, 30.029789215862458 ], [ -96.401157278456935, 30.029668216434551 ], [ -96.401227278332073, 30.029558216023009 ], [ -96.401302278323072, 30.029509216347925 ], [ -96.401321278623271, 30.029454215773089 ], [ -96.401353278658078, 30.029427216456281 ], [ -96.401524278230923, 30.029366216147757 ], [ -96.401637278737041, 30.029278215841508 ], [ -96.401745278689233, 30.029212216146803 ], [ -96.401827278655546, 30.029196216069739 ], [ -96.40189027794662, 30.029196215890323 ], [ -96.40194727814287, 30.029223216105187 ], [ -96.401991278625559, 30.029278215664466 ], [ -96.401997278575621, 30.02932221602121 ], [ -96.401991278306909, 30.029383216152983 ], [ -96.401871278724428, 30.029526215712245 ], [ -96.401871278431216, 30.029581216435172 ], [ -96.401896278101688, 30.029625215958724 ], [ -96.401934278483196, 30.029630216170936 ], [ -96.402111278619032, 30.029625216185032 ], [ -96.402180278328515, 30.029614216396247 ], [ -96.402364278093017, 30.02955321638165 ], [ -96.402673278453307, 30.029405215730826 ], [ -96.402768278375248, 30.029279215838795 ], [ -96.402869278824042, 30.029180216338936 ], [ -96.403027278316046, 30.02897121594777 ], [ -96.403185278166731, 30.028839216035397 ], [ -96.403495279059442, 30.028625215918165 ], [ -96.403564278267552, 30.028597215556534 ], [ -96.403741278856998, 30.028608216205711 ], [ -96.403912278647582, 30.028658215989346 ], [ -96.404215279337393, 30.028669215514952 ], [ -96.404386278729206, 30.028630216042018 ], [ -96.404407279341896, 30.028634215837251 ], [ -96.404449279115312, 30.028641215556956 ], [ -96.404531278544198, 30.028713216246469 ], [ -96.404550279293758, 30.028773215842076 ], [ -96.404537279396195, 30.028861216224549 ], [ -96.404543278804155, 30.028911215438029 ], [ -96.404556279262792, 30.02896621547918 ], [ -96.40462627931305, 30.029065216237839 ], [ -96.404676278932499, 30.029109216195454 ], [ -96.404859278828354, 30.029246216243092 ], [ -96.405169279636411, 30.02939521552123 ], [ -96.40548527918321, 30.029582216112587 ], [ -96.40553527893789, 30.029620215838282 ], [ -96.405586278853704, 30.029642215883861 ], [ -96.405706279506489, 30.029620216271471 ], [ -96.405788279781007, 30.029620215615768 ], [ -96.405889279491774, 30.029670215933042 ], [ -96.40599627890191, 30.029824216144217 ], [ -96.406015279145095, 30.029890216274023 ], [ -96.406015278854895, 30.029983215970461 ], [ -96.406002279247602, 30.030033215612441 ], [ -96.40594627949389, 30.030093216420635 ], [ -96.405876279108099, 30.030087216119483 ], [ -96.405788279443811, 30.030066216446485 ], [ -96.405724279519518, 30.030065216459391 ], [ -96.405630279376268, 30.030126216094668 ], [ -96.405510279522062, 30.030285216086309 ], [ -96.405434278914299, 30.030472216141984 ], [ -96.405446279128299, 30.030714215802721 ], [ -96.405509278847546, 30.031165216465112 ], [ -96.405623279446189, 30.031462216032402 ], [ -96.405654279087841, 30.031643216369901 ], [ -96.405673279216899, 30.031907216471271 ], [ -96.405648279881433, 30.032506216514083 ], [ -96.405667278890178, 30.032583216544669 ], [ -96.405717279560605, 30.032622216882331 ], [ -96.405743279156439, 30.032627216226157 ], [ -96.405850279455109, 30.032622216169543 ], [ -96.405970279627098, 30.032550216603187 ], [ -96.406084279799614, 30.032374216159841 ], [ -96.406122279040275, 30.032352216092224 ], [ -96.406166279908504, 30.032347216182735 ], [ -96.406204279511869, 30.032369216781706 ], [ -96.406292279558897, 30.032484216477808 ], [ -96.40639327913496, 30.032710216300668 ], [ -96.406418279410218, 30.032754216696809 ], [ -96.406501279512653, 30.032853216289034 ], [ -96.407183279966347, 30.033260216564393 ], [ -96.407423279823774, 30.033370217011321 ], [ -96.407669279740801, 30.033524217001471 ], [ -96.40796027976468, 30.033821216457955 ], [ -96.408244280437245, 30.034128216595736 ], [ -96.40835128021078, 30.034299217051107 ], [ -96.408377280094996, 30.034381217209312 ], [ -96.408389280384924, 30.034486216890016 ], [ -96.408383279875537, 30.034541217239052 ], [ -96.408389280216738, 30.034766217025211 ], [ -96.408433280572524, 30.034915217180128 ], [ -96.408490279785184, 30.03498621687573 ], [ -96.408635280007729, 30.035102217430229 ], [ -96.408781280583966, 30.035162216880021 ], [ -96.408913280102297, 30.035201216908124 ], [ -96.408995280072574, 30.035283217354934 ], [ -96.409002279960831, 30.035311216687461 ], [ -96.408976279971668, 30.035541216671849 ], [ -96.408995279961161, 30.035690217344001 ], [ -96.409065280574083, 30.035899217343832 ], [ -96.409128280554782, 30.035959216984988 ], [ -96.409317280253376, 30.036075216729831 ], [ -96.409380280540262, 30.036124217229066 ], [ -96.409684280343612, 30.036509216946865 ], [ -96.410454280696953, 30.037136217205518 ], [ -96.410618280771715, 30.037284217787533 ], [ -96.410770280758712, 30.037471217582251 ], [ -96.410991281056937, 30.037884217192815 ], [ -96.411079281525787, 30.037966217207973 ], [ -96.411143280852173, 30.038005217921715 ], [ -96.411585280817548, 30.038120217686288 ], [ -96.411768280827914, 30.038197217723454 ], [ -96.412002281314372, 30.038340217288965 ], [ -96.412267281518055, 30.03853821729378 ], [ -96.412734281413023, 30.039104217820736 ], [ -96.412968281792573, 30.039352217287668 ], [ -96.413019281593648, 30.03939021785736 ], [ -96.413136281615479, 30.039433217394897 ], [ -96.413278281973092, 30.039484217468235 ], [ -96.413423281933134, 30.039605217884368 ], [ -96.413537281515275, 30.039797217436412 ], [ -96.413543281518173, 30.039869217566249 ], [ -96.413518281374095, 30.039962217534899 ], [ -96.413448281569941, 30.040072217496149 ], [ -96.413328282131744, 30.040177217905814 ], [ -96.413170282133379, 30.040286217923292 ], [ -96.413113281793088, 30.040314217732679 ], [ -96.413000281117235, 30.040325218157516 ], [ -96.412829281314799, 30.040358218038904 ], [ -96.41278528153272, 30.040413217850254 ], [ -96.412778281907705, 30.04045721805479 ], [ -96.412797281374097, 30.040517217871415 ], [ -96.412835281757594, 30.040567217922209 ], [ -96.412930281617818, 30.040622217928316 ], [ -96.413082281819953, 30.04063821819426 ], [ -96.413315281188403, 30.040704218314634 ], [ -96.413505281773155, 30.040853218024882 ], [ -96.4136252813353, 30.0410012177719 ], [ -96.413675281800792, 30.041089218107828 ], [ -96.41368228193808, 30.04119421817223 ], [ -96.413663282043046, 30.041380218172037 ], [ -96.413675281541558, 30.041512217696539 ], [ -96.41370128174276, 30.041556217688882 ], [ -96.413751281979714, 30.041600218399765 ], [ -96.413858281584595, 30.041672218258093 ], [ -96.414004282020187, 30.041738217821944 ], [ -96.414067281738411, 30.041793218466321 ], [ -96.414117281783064, 30.041903218369601 ], [ -96.41413028160467, 30.04205721789122 ], [ -96.414250281723355, 30.042321218428466 ], [ -96.414376282138974, 30.04245321830328 ], [ -96.414541281898664, 30.042700218207855 ], [ -96.414559282405406, 30.042777218074434 ], [ -96.414559281728202, 30.042826218535918 ], [ -96.414534281704917, 30.042947218216412 ], [ -96.41441428199407, 30.043195218022106 ], [ -96.414376282120017, 30.043321218460999 ], [ -96.41431328172753, 30.043469218644653 ], [ -96.414319282384099, 30.043563218406614 ], [ -96.414351281934302, 30.043612218167951 ], [ -96.41468528189246, 30.043975218126707 ], [ -96.414761281894428, 30.044085218780975 ], [ -96.414989282780837, 30.044283218307221 ], [ -96.415210282009653, 30.044514218651901 ], [ -96.415349282366662, 30.044630218484802 ], [ -96.415437281983017, 30.044756218360629 ], [ -96.415532282818006, 30.04478921841358 ], [ -96.415639282555688, 30.044756218859625 ], [ -96.415747282328283, 30.044751219100331 ], [ -96.415791282092286, 30.044778218455107 ], [ -96.415804282168963, 30.044817218830588 ], [ -96.415797282280479, 30.044949218994759 ], [ -96.415816282953699, 30.045026218883976 ], [ -96.416075282608062, 30.045218218821287 ], [ -96.416638283206694, 30.045674218469941 ], [ -96.416909283368128, 30.045812218631571 ], [ -96.417092283276943, 30.045883219133003 ], [ -96.417181282569359, 30.045905219180518 ], [ -96.417295282688769, 30.045900218863512 ], [ -96.41741528306666, 30.045834219060058 ], [ -96.417516282982689, 30.045740219049669 ], [ -96.417566283305149, 30.045707219132666 ], [ -96.417712283309115, 30.045691218923334 ], [ -96.417958283137352, 30.04569721917775 ], [ -96.418280283228626, 30.045746218465048 ], [ -96.418413283141675, 30.045785218870932 ], [ -96.418506283233484, 30.045839218856312 ], [ -96.418527283120781, 30.045840218660974 ], [ -96.4185292832465, 30.045822218741861 ], [ -96.418641282946808, 30.045790218818684 ], [ -96.418798283210052, 30.045807218944503 ], [ -96.418868283015655, 30.045851219079992 ], [ -96.418950283015093, 30.045950218838591 ], [ -96.419007283463429, 30.045977218609252 ], [ -96.419045282988904, 30.045972219178175 ], [ -96.419095283654968, 30.045944218729186 ], [ -96.419146283766892, 30.04584521839989 ], [ -96.419197283498903, 30.045801219166293 ], [ -96.41936128307259, 30.045774219124226 ], [ -96.419544283588948, 30.045790218758693 ], [ -96.419595283101486, 30.045801218688062 ], [ -96.419639283827863, 30.045829218391187 ], [ -96.419765284058272, 30.045994218725163 ], [ -96.419860283489712, 30.046170219237755 ], [ -96.419866283948082, 30.046258218711326 ], [ -96.419923283887059, 30.046340219178379 ], [ -96.419993283659039, 30.046346219104581 ], [ -96.420144283198255, 30.046324218529062 ], [ -96.42020128324711, 30.046324218937134 ], [ -96.420296283588428, 30.046351218402851 ], [ -96.420447283439898, 30.046516218700472 ], [ -96.420536283394924, 30.046593218506324 ], [ -96.420593283802361, 30.046615218467384 ], [ -96.420726284300542, 30.046621218777886 ], [ -96.420921284328031, 30.046582219187847 ], [ -96.421003283723806, 30.046577218879492 ], [ -96.421060284296061, 30.046549218474826 ], [ -96.421149283881164, 30.046478218801486 ], [ -96.421193284444655, 30.046467218561649 ], [ -96.421214283879948, 30.046467219014108 ], [ -96.421231284012407, 30.046478218386692 ], [ -96.42128828411515, 30.046560219150319 ], [ -96.421326283990112, 30.046714218884969 ], [ -96.421332283905386, 30.046961218932566 ], [ -96.421237284194575, 30.047247218876478 ], [ -96.421155283510686, 30.047374219328347 ], [ -96.421142283623084, 30.04751121901138 ], [ -96.421161283674195, 30.047824219391174 ], [ -96.42128128431888, 30.048187219391153 ], [ -96.421332284589582, 30.048270219377041 ], [ -96.421395284141767, 30.048336218853787 ], [ -96.421622284407434, 30.048479219536112 ], [ -96.421667283855626, 30.048495219053976 ], [ -96.421780284168378, 30.04848421933454 ], [ -96.421856283983701, 30.048462219217779 ], [ -96.421926283841302, 30.048402219019767 ], [ -96.42195728450001, 30.048347218835861 ], [ -96.421970284189968, 30.048303218831151 ], [ -96.421976284731571, 30.048127219045995 ], [ -96.421970284678125, 30.047946219161009 ], [ -96.421995284099751, 30.047918219069953 ], [ -96.422040283780532, 30.047896218912982 ], [ -96.422090284446782, 30.047896218706658 ], [ -96.42259528435396, 30.0481162189919 ], [ -96.422741284886911, 30.0482152189937 ], [ -96.422804284297925, 30.048215218713882 ], [ -96.422918284721419, 30.048193219327807 ], [ -96.423088284396442, 30.048199219200054 ], [ -96.42318328472858, 30.048215219419838 ], [ -96.423379284851777, 30.048309218946191 ], [ -96.423638284629916, 30.048485219133223 ], [ -96.42377128514066, 30.048622219184132 ], [ -96.423853284918849, 30.048875218913455 ], [ -96.423865284345652, 30.0491172189097 ], [ -96.423922285213592, 30.049249219417952 ], [ -96.423967284771379, 30.049392218922542 ], [ -96.424004284948538, 30.049463219632234 ], [ -96.42406828477543, 30.049529218903039 ], [ -96.424087285268072, 30.049589219489846 ], [ -96.424099284670135, 30.049738219778742 ], [ -96.424131285341957, 30.049875219301004 ], [ -96.424289284587445, 30.050310219435939 ], [ -96.424371285483801, 30.050469219261338 ], [ -96.424377284912069, 30.050513219861688 ], [ -96.424421284773317, 30.050607219578342 ], [ -96.424453284518052, 30.050892219483835 ], [ -96.424478285098132, 30.050920219768962 ], [ -96.424510285065338, 30.050931220054721 ], [ -96.42454128510775, 30.050969219791909 ], [ -96.424535285099864, 30.051002219823825 ], [ -96.424503285180009, 30.051052219431849 ], [ -96.424453285048116, 30.051184219453177 ], [ -96.424478284601491, 30.051464219600344 ], [ -96.424453284980842, 30.051624219874611 ], [ -96.424358285076821, 30.051860219598066 ], [ -96.424389284843244, 30.051926219730525 ], [ -96.424451284591257, 30.052136219484542 ], [ -96.424466285361177, 30.052205220193652 ], [ -96.424487285158548, 30.052273219621519 ], [ -96.424490285231428, 30.052309220099104 ], [ -96.42450728489338, 30.052378220297324 ], [ -96.424515285371811, 30.052520219910168 ], [ -96.424514284968922, 30.052734219978024 ], [ -96.424506284845037, 30.052804220122475 ], [ -96.424507285077169, 30.052840220172929 ], [ -96.424525284906196, 30.052872220011597 ], [ -96.424516285403371, 30.052904219578377 ], [ -96.424478284663024, 30.052992220054701 ], [ -96.424484285350204, 30.053124220117571 ], [ -96.424591284791319, 30.053240219960834 ], [ -96.424642285483586, 30.053322220428534 ], [ -96.424661285619393, 30.053405220285921 ], [ -96.424692285527343, 30.053487220122555 ], [ -96.424724285428752, 30.053537220515196 ], [ -96.424831285461039, 30.053636220507379 ], [ -96.4248952853915, 30.053729219765877 ], [ -96.424901285679823, 30.053767220478644 ], [ -96.424895285437174, 30.053877220126022 ], [ -96.424920285454576, 30.053938220629746 ], [ -96.424944285285704, 30.053975219834978 ], [ -96.424996284836141, 30.054029219961713 ], [ -96.425011285218019, 30.054098220541718 ], [ -96.425022285208399, 30.05422322009165 ], [ -96.425023284865503, 30.054241220649558 ], [ -96.425037284885278, 30.054274220292385 ], [ -96.425063285802892, 30.054301219906257 ], [ -96.425077285407411, 30.054335220257489 ], [ -96.425090284936275, 30.054476220007931 ], [ -96.425103285662772, 30.054510220168545 ], [ -96.425122284826486, 30.05476322073212 ], [ -96.425071285522165, 30.054856220467709 ], [ -96.425059285273903, 30.054900219949463 ], [ -96.425052285272045, 30.055032220786568 ], [ -96.425071285339456, 30.055087220173327 ], [ -96.425135285645354, 30.055142220718093 ], [ -96.425160285077254, 30.055213220220399 ], [ -96.425135285598429, 30.055301220804964 ], [ -96.424894285619501, 30.055785220435638 ], [ -96.42487528572812, 30.055922220535535 ], [ -96.424888285285846, 30.056043220241442 ], [ -96.424844284863852, 30.056247221016129 ], [ -96.424774285725064, 30.056373220596786 ], [ -96.424692285222363, 30.05647822051197 ], [ -96.424622285713582, 30.056604220904578 ], [ -96.424622285219058, 30.056642220315435 ], [ -96.424648285179401, 30.056692221197597 ], [ -96.424730285320067, 30.056763220941804 ], [ -96.424761285263131, 30.056813221036762 ], [ -96.424761284942477, 30.056895220577935 ], [ -96.424711285806666, 30.056967220546479 ], [ -96.424711285357731, 30.057000220860637 ], [ -96.424755285687723, 30.057115220887535 ], [ -96.424755285807066, 30.057159221016533 ], [ -96.424768285162671, 30.057187220430521 ], [ -96.424787285587456, 30.05745122062509 ], [ -96.424774285689097, 30.057599220785082 ], [ -96.424780285438572, 30.057720220774765 ], [ -96.424850285889448, 30.057852221246105 ], [ -96.425020285516894, 30.058028220781061 ], [ -96.425071285413566, 30.05811622068196 ], [ -96.425147285972784, 30.058341221502122 ], [ -96.425197285620584, 30.058567221240537 ], [ -96.425184285446676, 30.058677221075403 ], [ -96.425153285750454, 30.058704221529936 ], [ -96.425109285107823, 30.058726221101811 ], [ -96.425014285589953, 30.058731221392986 ], [ -96.424932285957183, 30.058704221115427 ], [ -96.424767284955507, 30.058583221547817 ], [ -96.424666285611565, 30.058561220753571 ], [ -96.424515285617531, 30.0585612207114 ], [ -96.424432285087562, 30.058566221284551 ], [ -96.424382284907196, 30.058616221484684 ], [ -96.424331285512665, 30.058764220758938 ], [ -96.424230285298904, 30.058858221045607 ], [ -96.424135285379947, 30.058929221316571 ], [ -96.424129285321428, 30.058951221443497 ], [ -96.424135285231614, 30.058990221024381 ], [ -96.42419928487017, 30.059056221684159 ], [ -96.424255285219218, 30.059089221232348 ], [ -96.424350284986289, 30.059116221054737 ], [ -96.424407284913585, 30.059177221047765 ], [ -96.424363285279966, 30.059342221383361 ], [ -96.42433128563215, 30.059402221735283 ], [ -96.424255285828281, 30.059484221384299 ], [ -96.424217285191915, 30.059512221746115 ], [ -96.423990285594968, 30.059517221245432 ], [ -96.423952284998762, 30.059523221036169 ], [ -96.423914285726298, 30.059550221522418 ], [ -96.423895285043741, 30.059578221351973 ], [ -96.423901285726586, 30.05964422143774 ], [ -96.423946285106936, 30.059699221027767 ], [ -96.423952285290326, 30.059759221290655 ], [ -96.423927285484439, 30.059891221625652 ], [ -96.423901285211045, 30.05991322105794 ], [ -96.423863285475647, 30.059919221744472 ], [ -96.423743285290584, 30.059908221405635 ], [ -96.423642284911665, 30.059869221152006 ], [ -96.423567285370865, 30.059886221671068 ], [ -96.423408285419811, 30.059979221570529 ], [ -96.423364284783645, 30.060056221369084 ], [ -96.423358284860242, 30.060182221424135 ], [ -96.423427285438649, 30.060237221925881 ], [ -96.423528285414477, 30.060292221205113 ], [ -96.423579285025653, 30.060342221318042 ], [ -96.423592285635877, 30.060408221111771 ], [ -96.423585285253225, 30.060435221874716 ], [ -96.423446285158505, 30.060644221188241 ], [ -96.42334528557177, 30.060859221248677 ], [ -96.423174285108573, 30.061046221809036 ], [ -96.423086285198863, 30.061073221892599 ], [ -96.423023284987949, 30.061078221527669 ], [ -96.42291528488181, 30.061062221334478 ], [ -96.422852284661531, 30.06103422150742 ], [ -96.422757284830013, 30.0608372219573 ], [ -96.422688285086238, 30.060787222032278 ], [ -96.422631285388988, 30.060782221949431 ], [ -96.422561285081557, 30.06079222159223 ], [ -96.422473285381287, 30.060842221591106 ], [ -96.422441284869848, 30.060870221904278 ], [ -96.422403285443551, 30.060935221339705 ], [ -96.422372284870335, 30.061012221932707 ], [ -96.422340285151677, 30.06127122153309 ], [ -96.422296284645881, 30.061326221385798 ], [ -96.422220284927093, 30.061359221624567 ], [ -96.422106285373602, 30.061392222212579 ], [ -96.42202428488082, 30.061491221531504 ], [ -96.421999284526052, 30.061546222011049 ], [ -96.421992285198201, 30.061699222229155 ], [ -96.421974284631332, 30.061831221940892 ], [ -96.421917284417475, 30.061969221566713 ], [ -96.42191028486458, 30.062046222127805 ], [ -96.422144284732738, 30.062585221850487 ], [ -96.42220128508977, 30.062744221878891 ], [ -96.422283284969652, 30.063288221849252 ], [ -96.422295284647262, 30.063448222253015 ], [ -96.422289284613626, 30.063629221953587 ], [ -96.422264285200356, 30.063788222309938 ], [ -96.422220285418447, 30.063876222375225 ], [ -96.422213285307151, 30.063915222648323 ], [ -96.422283284883861, 30.063986222694957 ], [ -96.422321284601324, 30.06398622223249 ], [ -96.422352284879167, 30.063970222233095 ], [ -96.422460285140147, 30.063871222286537 ], [ -96.422523285496283, 30.063865222170939 ], [ -96.422605285306759, 30.063909222481598 ], [ -96.422712285343749, 30.064014222505122 ], [ -96.422782284905651, 30.064173222337502 ], [ -96.422782285549175, 30.064228222158114 ], [ -96.42272528556876, 30.064278221960969 ], [ -96.422701285651556, 30.064315222452571 ], [ -96.422700284908089, 30.064333222513536 ], [ -96.422795285198319, 30.064569222736647 ], [ -96.422902284989746, 30.06474522211813 ], [ -96.423003284901782, 30.064838222737972 ], [ -96.423117285831026, 30.06500922259702 ], [ -96.42315528503164, 30.06511322256107 ], [ -96.423174285752054, 30.065223222691337 ], [ -96.423174285387688, 30.065295222940893 ], [ -96.423243285828363, 30.065465222901928 ], [ -96.423300285561425, 30.065526222258043 ], [ -96.423357284987816, 30.065564222217304 ], [ -96.4234202855978, 30.065636222612241 ], [ -96.42352728507494, 30.065801222507087 ], [ -96.423534285237764, 30.065883222410744 ], [ -96.423508284977999, 30.066004222408154 ], [ -96.423508284954238, 30.066059223073051 ], [ -96.423515285630486, 30.066092223011847 ], [ -96.423553285711264, 30.066136223084577 ], [ -96.423578285405, 30.066246222573412 ], [ -96.4235652854655, 30.066306223116971 ], [ -96.423527285210881, 30.066389223028175 ], [ -96.423521285105366, 30.066625223197956 ], [ -96.423470285109474, 30.066884222905777 ], [ -96.423477285300876, 30.06696622277909 ], [ -96.423534285709962, 30.067164222794045 ], [ -96.42356528543327, 30.067400222746379 ], [ -96.42362228529521, 30.067466222777778 ], [ -96.423736286006203, 30.067565222579621 ], [ -96.423774285389044, 30.06757622324443 ], [ -96.423812285707015, 30.067609222543961 ], [ -96.423951285948164, 30.067763222689312 ], [ -96.424165286077368, 30.067972222882428 ], [ -96.42441828539701, 30.068110223272807 ], [ -96.424456285537545, 30.06815922300985 ], [ -96.424481285590119, 30.068428223358776 ], [ -96.424507285870106, 30.068472223308373 ], [ -96.424595285618281, 30.068538223008776 ], [ -96.424791286207579, 30.068643223269483 ], [ -96.424854286035753, 30.068709223052245 ], [ -96.424873285887287, 30.068753223279423 ], [ -96.424867286352935, 30.06916022299982 ], [ -96.424854285885004, 30.069237223125985 ], [ -96.424886285732128, 30.069346222926892 ], [ -96.424980286250843, 30.069451223532102 ], [ -96.425132285869552, 30.069533222995112 ], [ -96.425246286555591, 30.069539223365833 ], [ -96.425290286236006, 30.069528223484596 ], [ -96.425372285825659, 30.069489222936859 ], [ -96.425707286522965, 30.069121223307153 ], [ -96.425802286563169, 30.069055222910137 ], [ -96.425903285922274, 30.069017222914212 ], [ -96.425966286105847, 30.069011222941217 ], [ -96.426036285845157, 30.069028222727894 ], [ -96.426099286368, 30.069077223275421 ], [ -96.426124285993211, 30.069127223362379 ], [ -96.426219286396389, 30.069253222976315 ], [ -96.426308286557827, 30.069297223101948 ], [ -96.426478286308722, 30.069303223376675 ], [ -96.426554286132017, 30.069286223172991 ], [ -96.426674286594945, 30.069242222893251 ], [ -96.426801285972871, 30.06921522335907 ], [ -96.426933286705122, 30.069209223470239 ], [ -96.427034286640406, 30.069226223206638 ], [ -96.427123286177135, 30.069275222743979 ], [ -96.427256286762173, 30.069369223000429 ], [ -96.427420286487617, 30.069589223387744 ], [ -96.427660286278567, 30.069886223188675 ], [ -96.427711287014475, 30.069924223689636 ], [ -96.427786286431328, 30.069919223059337 ], [ -96.427869286300535, 30.069891223649972 ], [ -96.428052286799868, 30.069792223191943 ], [ -96.4281592866338, 30.069770223229003 ], [ -96.428305287085735, 30.069770223384687 ], [ -96.428374286999883, 30.069759223384924 ], [ -96.428482286907084, 30.069726223600657 ], [ -96.428551286699772, 30.069726223255032 ], [ -96.428595286668596, 30.069754223127156 ], [ -96.428633287158192, 30.069798223447989 ], [ -96.428709287194394, 30.069924223237802 ], [ -96.42872228704222, 30.069974223388204 ], [ -96.428715286553839, 30.070117223336748 ], [ -96.428741287111151, 30.070177223014031 ], [ -96.428791287141721, 30.070237223290857 ], [ -96.428829286675224, 30.070238223460617 ], [ -96.428905286644579, 30.070205223124127 ], [ -96.428924286820603, 30.07013922347938 ], [ -96.428968286673609, 30.070078223648643 ], [ -96.429025287563434, 30.070056223295655 ], [ -96.429082287338815, 30.070056223287946 ], [ -96.429139287073625, 30.070078223645272 ], [ -96.429253287480009, 30.070161223311146 ], [ -96.429297287159102, 30.070210223511829 ], [ -96.429392287004774, 30.070287223598136 ], [ -96.429569287630784, 30.070386223555538 ], [ -96.429651287011737, 30.070392223715292 ], [ -96.42970828692269, 30.070381223699833 ], [ -96.429714287211397, 30.070293223178606 ], [ -96.429657287576021, 30.07003422329154 ], [ -96.429663286972058, 30.069979222875414 ], [ -96.430169287515142, 30.069721223451094 ], [ -96.430593286967408, 30.069485222730254 ], [ -96.43067528754257, 30.069463223039147 ], [ -96.430782286995552, 30.069468223154491 ], [ -96.430826287444091, 30.069496223201199 ], [ -96.430896287853471, 30.069583223563793 ], [ -96.430934287329364, 30.069710222974095 ], [ -96.430959287858926, 30.069891222808767 ], [ -96.430947287925861, 30.069919222855351 ], [ -96.430858287160916, 30.069996222996718 ], [ -96.430833287289758, 30.070040223356326 ], [ -96.43082028779159, 30.07009522358539 ], [ -96.430890287395016, 30.07019422346028 ], [ -96.430928287473861, 30.070205222974487 ], [ -96.430959287647568, 30.070205223425877 ], [ -96.431086288010221, 30.070155223287816 ], [ -96.431105287414084, 30.070067222964347 ], [ -96.431199287949127, 30.069902222822751 ], [ -96.431242287642903, 30.069866222831664 ], [ -96.43126228737394, 30.069858222971416 ], [ -96.431338287323584, 30.069880223585407 ], [ -96.431465287270299, 30.069952222743169 ], [ -96.431534287448116, 30.069957223541717 ], [ -96.431572288036506, 30.069946223406557 ], [ -96.431610287321348, 30.069924223496493 ], [ -96.43165428723853, 30.069858222852076 ], [ -96.43169928732496, 30.069683222959089 ], [ -96.431743288094296, 30.069617223201249 ], [ -96.431812287986631, 30.069584222867142 ], [ -96.43194528800062, 30.069545223486706 ], [ -96.432053287372483, 30.069545222774899 ], [ -96.432097288198236, 30.069567223531131 ], [ -96.432173287610425, 30.069644223265414 ], [ -96.432217287629399, 30.069749222815361 ], [ -96.432229288060725, 30.069924223339456 ], [ -96.432255288201645, 30.069985223009361 ], [ -96.432286288242921, 30.070018223268661 ], [ -96.432590288410211, 30.069974223573876 ], [ -96.432691287782987, 30.069946222960269 ], [ -96.432843287731586, 30.069886223116921 ], [ -96.432912287958203, 30.069815223057965 ], [ -96.433013288555088, 30.069743223280689 ], [ -96.433076287681743, 30.069743223341202 ], [ -96.433140288199439, 30.069782223429655 ], [ -96.433184288371905, 30.069859223393792 ], [ -96.433209288117737, 30.0699472230555 ], [ -96.433159287983088, 30.07028722320652 ], [ -96.433171288300258, 30.070452223654716 ], [ -96.433209287721908, 30.070518222977096 ], [ -96.433253288617607, 30.070551223068836 ], [ -96.433304288409431, 30.070562222849954 ], [ -96.433449288695869, 30.070562223569372 ], [ -96.433588287782797, 30.070573223000629 ], [ -96.433664288243307, 30.070612223592825 ], [ -96.433734287981395, 30.070667222983818 ], [ -96.433784288421762, 30.070810222840006 ], [ -96.433803288676685, 30.071040223621118 ], [ -96.433866287961692, 30.071145223345106 ], [ -96.433885287916496, 30.071233222899057 ], [ -96.433866288091281, 30.07133222325583 ], [ -96.433866288483316, 30.07138722371154 ], [ -96.433911288402697, 30.071447223100456 ], [ -96.434005288594534, 30.071458223109353 ], [ -96.43406228858646, 30.071447223056488 ], [ -96.434176288068656, 30.07139822345518 ], [ -96.434220287951334, 30.071392223331859 ], [ -96.434258288792194, 30.071403223703829 ], [ -96.434277288553787, 30.071458223098322 ], [ -96.434347288628459, 30.071502223316926 ], [ -96.434454288524122, 30.071414223598204 ], [ -96.434549288317555, 30.071398223037985 ], [ -96.434612288096147, 30.071447223041865 ], [ -96.434625288015042, 30.071535223477046 ], [ -96.434618288591395, 30.071585223039971 ], [ -96.434568288201646, 30.071689223821259 ], [ -96.43453028903123, 30.071733223104481 ], [ -96.434486288427621, 30.0717442232746 ], [ -96.434416288751905, 30.071733223224935 ], [ -96.434353288385836, 30.071695223753533 ], [ -96.434315288899413, 30.071689223395396 ], [ -96.434283288268645, 30.071695223351529 ], [ -96.434252288213216, 30.071728223759159 ], [ -96.43423928832236, 30.071805223697467 ], [ -96.434252288944592, 30.071849223467662 ], [ -96.434296288680429, 30.071882223161957 ], [ -96.43433428823765, 30.071926223561025 ], [ -96.434309287998914, 30.07202522313402 ], [ -96.434309288516857, 30.072074223805387 ], [ -96.434309288580252, 30.072096223256139 ], [ -96.434366288745323, 30.072190223971297 ], [ -96.434422288544837, 30.072228223379113 ], [ -96.434549288938754, 30.072228223167503 ], [ -96.43461828826517, 30.072212223596626 ], [ -96.434713288946213, 30.07217322367061 ], [ -96.434808288980463, 30.072184223229243 ], [ -96.43484628840902, 30.072223223513639 ], [ -96.434884288371777, 30.072283223431224 ], [ -96.434909288553428, 30.072376223523687 ], [ -96.434915288524394, 30.072459223929823 ], [ -96.43489628883583, 30.072618223839502 ], [ -96.434884288650551, 30.072646223287023 ], [ -96.434852288678826, 30.0726622233048 ], [ -96.434808288284074, 30.072668223632103 ], [ -96.43473228819353, 30.072657223873065 ], [ -96.434682288391386, 30.072662223571591 ], [ -96.43465028862758, 30.072690223980473 ], [ -96.434644288120822, 30.072849223743631 ], [ -96.434669288821183, 30.072921223339407 ], [ -96.434783289113653, 30.073108223632698 ], [ -96.434827288393706, 30.073151223926491 ], [ -96.434928289183532, 30.073294223508565 ], [ -96.435029288782047, 30.073393224107818 ], [ -96.435105288938843, 30.073558223338477 ], [ -96.435105288888835, 30.07359722405668 ], [ -96.435181288839999, 30.07371822345565 ], [ -96.435320288775387, 30.073861223917561 ], [ -96.435509289022889, 30.07419122383499 ], [ -96.435522289224664, 30.074262223699264 ], [ -96.435554289093716, 30.074333224123951 ], [ -96.4356232892859, 30.074427223875361 ], [ -96.435686288685446, 30.074498223593615 ], [ -96.435756289034614, 30.074553223595888 ], [ -96.435971288916335, 30.074619223852523 ], [ -96.436009289374809, 30.074669224379171 ], [ -96.436097289515402, 30.074955223888789 ], [ -96.436148289210124, 30.075202224473525 ], [ -96.436217288759295, 30.075389224170156 ], [ -96.436211288689066, 30.075460224347854 ], [ -96.436179288809853, 30.07555422424004 ], [ -96.436116289066632, 30.0755982245166 ], [ -96.435964288735164, 30.075625224417802 ], [ -96.435832289292691, 30.07566922427937 ], [ -96.435781288995599, 30.075697224401331 ], [ -96.435749289109637, 30.075730224096162 ], [ -96.435730289061866, 30.075856223886678 ], [ -96.4357562886251, 30.075917224467958 ], [ -96.435926289359813, 30.076159224380458 ], [ -96.435971289260493, 30.076203224158743 ], [ -96.436148289303489, 30.076280224521732 ], [ -96.436204289619141, 30.076329224590957 ], [ -96.436236289020712, 30.076422224173285 ], [ -96.436232289535027, 30.076492224766294 ], [ -96.442475290366474, 30.075653223595676 ], [ -96.44320729137884, 30.07555522365525 ], [ -96.444605291167761, 30.075368223487587 ], [ -96.445987291905794, 30.075183223991573 ], [ -96.448345291649716, 30.074868223714599 ], [ -96.448368292545538, 30.074865223186467 ], [ -96.45386829353518, 30.074129223499018 ], [ -96.454777293490238, 30.074008222822901 ], [ -96.45932629440378, 30.073401222749943 ], [ -96.460255294674482, 30.07327722270777 ], [ -96.460894294834972, 30.073192222856047 ], [ -96.461051294833311, 30.073171223226002 ], [ -96.461150295044945, 30.073158222948955 ], [ -96.461209294920607, 30.07315022244741 ], [ -96.461349295558009, 30.073131223209337 ], [ -96.461462295541295, 30.073116223056815 ], [ -96.461490295259551, 30.073112222838613 ], [ -96.462367295309193, 30.072995223067533 ], [ -96.462463295875722, 30.072981222253382 ], [ -96.464419295747376, 30.072710222574347 ], [ -96.470545297813729, 30.071859222583978 ], [ -96.471013297729314, 30.071794221926282 ], [ -96.471375297927736, 30.071744221776814 ], [ -96.476083299023003, 30.071091222115189 ], [ -96.476287298690224, 30.07106322225756 ], [ -96.477417298840308, 30.070905221390397 ], [ -96.477557299360356, 30.070888222125006 ], [ -96.479818299423869, 30.070610221741003 ], [ -96.489107302648264, 30.069425221360472 ], [ -96.492051302785526, 30.069042221178865 ], [ -96.497953304746773, 30.068291220239249 ], [ -96.50025530488611, 30.067967220776797 ], [ -96.504527306057938, 30.067295219895957 ], [ -96.505615306674187, 30.067135220244499 ], [ -96.508348306680617, 30.066734220021999 ], [ -96.508686307112413, 30.066684220202845 ], [ -96.514244308325431, 30.065872219596756 ], [ -96.518821309591459, 30.065203219386774 ], [ -96.521179310625385, 30.065184219364092 ], [ -96.531828313014799, 30.065105219036258 ], [ -96.537361314514357, 30.065057218908887 ], [ -96.537569314438599, 30.065055218849693 ], [ -96.541056315055329, 30.065005218653631 ], [ -96.541324314996629, 30.065002218619433 ], [ -96.541359315194683, 30.065002218077723 ], [ -96.541542315664515, 30.065001218257542 ], [ -96.541691314947329, 30.065000218144512 ], [ -96.541725315093856, 30.06500021816931 ], [ -96.543395315319913, 30.064988218425601 ], [ -96.55139831800237, 30.064927217605902 ], [ -96.551447317512498, 30.064927217671951 ], [ -96.551692317549438, 30.064925218195377 ], [ -96.55189031814686, 30.064923217811625 ], [ -96.55193831762675, 30.064923217534425 ], [ -96.552014318210624, 30.064922217519658 ], [ -96.552063317696678, 30.064922218263163 ], [ -96.552977318376264, 30.064915218072148 ], [ -96.553666318712274, 30.064909217465715 ], [ -96.553717318248417, 30.064909217908536 ], [ -96.55741731968844, 30.0648812179037 ], [ -96.557467319160978, 30.064881217702901 ], [ -96.557563319158149, 30.064880217889588 ], [ -96.557603319366592, 30.064880217337571 ], [ -96.557658319125522, 30.064879217886325 ], [ -96.560195320378298, 30.064859217935055 ], [ -96.567388321902285, 30.064806217504447 ], [ -96.574281323728883, 30.064759216674297 ], [ -96.574367324008918, 30.064765216951614 ], [ -96.585906326586453, 30.064673217131404 ], [ -96.586049326376951, 30.064751216488954 ], [ -96.586190326177658, 30.064828216987326 ], [ -96.587011327023035, 30.065163216660721 ], [ -96.587106326302973, 30.06522921667132 ], [ -96.587201327263998, 30.065344216965087 ], [ -96.587416327234962, 30.065735217234334 ], [ -96.587536327065791, 30.065999217022323 ], [ -96.587669326827054, 30.066240216663218 ], [ -96.587738326574623, 30.066350216613113 ], [ -96.587915327440442, 30.066515216945938 ], [ -96.587979327166991, 30.066609217105007 ], [ -96.588004327156966, 30.066680217260689 ], [ -96.588105326790554, 30.066867216911021 ], [ -96.588168327411466, 30.067021216805284 ], [ -96.588213327241007, 30.0670762173153 ], [ -96.588270327563563, 30.067109216754954 ], [ -96.58852932684438, 30.067202217438485 ], [ -96.588838327409263, 30.06734521754381 ], [ -96.589110327804818, 30.067626217539402 ], [ -96.589294327288357, 30.067752217172757 ], [ -96.589584327823687, 30.067878216822781 ], [ -96.589704327170935, 30.067955216771661 ], [ -96.589837327895836, 30.068054217556277 ], [ -96.589964327264454, 30.06820821694615 ], [ -96.589989327672384, 30.068296217505825 ], [ -96.589995328003795, 30.068390217240765 ], [ -96.589970327859419, 30.068505217054096 ], [ -96.589913328156186, 30.068654216961907 ], [ -96.589913327609068, 30.06867621761187 ], [ -96.589932327502908, 30.068769217793466 ], [ -96.589957327790472, 30.06882421734921 ], [ -96.589989327819325, 30.06886221702063 ], [ -96.590040327996462, 30.068906217609403 ], [ -96.590330327936954, 30.069016217165903 ], [ -96.590634328256471, 30.06907721772173 ], [ -96.591449328554575, 30.069362217602517 ], [ -96.591595328078384, 30.06938421705151 ], [ -96.591645328379272, 30.069401217576878 ], [ -96.591702327761283, 30.069450217419302 ], [ -96.591791328207663, 30.069566217403711 ], [ -96.59198732834237, 30.069879217906248 ], [ -96.592018328374905, 30.069962217358416 ], [ -96.59203732835951, 30.070055217160444 ], [ -96.592075328222336, 30.070335217992273 ], [ -96.592132328186011, 30.070489217389277 ], [ -96.592196328050406, 30.070572217678112 ], [ -96.592328328180741, 30.070676217543568 ], [ -96.592682328629209, 30.070847217692229 ], [ -96.592771328738976, 30.070863217910453 ], [ -96.592885328002666, 30.070869217579208 ], [ -96.593188328969887, 30.070814217724909 ], [ -96.593308328496775, 30.070819217293639 ], [ -96.593409328946294, 30.070847217251615 ], [ -96.593548328627804, 30.070907218107102 ], [ -96.593713329186912, 30.071011218032432 ], [ -96.593795328468616, 30.071050218094886 ], [ -96.593928328367838, 30.071050218067139 ], [ -96.59414832884795, 30.071027217887604 ], [ -96.599475329482118, 30.065844216678727 ], [ -96.599514330265919, 30.065806216599082 ], [ -96.600784330372008, 30.064569215893762 ], [ -96.602685330896804, 30.062734215352485 ], [ -96.603392330777993, 30.06205221527345 ], [ -96.60755633127485, 30.058032214591602 ], [ -96.607622331506462, 30.057968214625376 ], [ -96.608973331817182, 30.05666621412654 ], [ -96.609040331912752, 30.056601214318821 ], [ -96.609681332226771, 30.05598321428694 ], [ -96.609747332209224, 30.055920213959158 ], [ -96.610577332038616, 30.055119214085259 ], [ -96.616457333320227, 30.049447212195478 ], [ -96.616468333225626, 30.049438212469308 ], [ -96.616594333488365, 30.049317212254252 ], [ -96.616709333140548, 30.049204212771031 ], [ -96.616719333144857, 30.049195212439386 ], [ -96.620855334515582, 30.045208211747969 ], [ -96.620997334240798, 30.045165211430749 ], [ -96.621170334806649, 30.045052211481437 ], [ -96.621197334503407, 30.045035211108164 ], [ -96.621254334808683, 30.044980211077235 ], [ -96.621517334310255, 30.044725211276159 ], [ -96.62173733499985, 30.044535211402792 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1440, "Tract": "48015760100", "Area_SqMi": 68.6022385759005, "total_2009": 217, "total_2010": 274, "total_2011": 283, "total_2012": 238, "total_2013": 269, "total_2014": 324, "total_2015": 296, "total_2016": 263, "total_2017": 361, "total_2018": 339, "total_2019": 488, "total_2020": 463, "age1": 58, "age2": 222, "age3": 115, "earn1": 64, "earn2": 132, "earn3": 199, "naics_s01": 35, "naics_s02": 12, "naics_s03": 0, "naics_s04": 37, "naics_s05": 29, "naics_s06": 1, "naics_s07": 47, "naics_s08": 15, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 4, "naics_s13": 0, "naics_s14": 0, "naics_s15": 136, "naics_s16": 6, "naics_s17": 0, "naics_s18": 18, "naics_s19": 27, "naics_s20": 24, "race1": 352, "race2": 25, "race3": 2, "race4": 13, "race5": 0, "race6": 3, "ethnicity1": 291, "ethnicity2": 104, "edu1": 50, "edu2": 100, "edu3": 119, "edu4": 68, "Shape_Length": 240546.17351927189, "Shape_Area": 1912512997.5913315, "total_2021": 402, "total_2022": 395 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.205597212736677, 29.679395152348715 ], [ -96.205557212734149, 29.67907515253421 ], [ -96.205117212436789, 29.673995151400451 ], [ -96.204947212623651, 29.671895150393187 ], [ -96.204897212116407, 29.671605150647522 ], [ -96.20476721179017, 29.67116515037824 ], [ -96.204439211764168, 29.670406150607864 ], [ -96.204718211863465, 29.670356150815703 ], [ -96.204932212143788, 29.670204150026922 ], [ -96.204886212225858, 29.669864150596716 ], [ -96.204792212186845, 29.66974915048776 ], [ -96.204735212515118, 29.669650149945721 ], [ -96.204559211748332, 29.669446150397462 ], [ -96.204420212299738, 29.669161150222866 ], [ -96.204131212046406, 29.668704150512387 ], [ -96.204080211556018, 29.668605150367846 ], [ -96.204011211642793, 29.668325150145257 ], [ -96.203980212015438, 29.668287149624131 ], [ -96.203910212220279, 29.668243149703279 ], [ -96.203740211997527, 29.668078149931137 ], [ -96.203721211482417, 29.668028150152001 ], [ -96.203715212150854, 29.667880150094714 ], [ -96.203753212103209, 29.667797150013218 ], [ -96.203860212235085, 29.667665149561554 ], [ -96.203885211705852, 29.667594150293628 ], [ -96.203891211805384, 29.667495150009866 ], [ -96.203853211903535, 29.667391149662841 ], [ -96.203784211450213, 29.667308149515126 ], [ -96.203690211426689, 29.66722614973812 ], [ -96.203488211272841, 29.667094149433161 ], [ -96.203400211087754, 29.667055149498424 ], [ -96.203199211413406, 29.666934149597772 ], [ -96.203104211602067, 29.666781149524333 ], [ -96.202979210930124, 29.666506150066724 ], [ -96.202821211346063, 29.666006149701502 ], [ -96.202815210990508, 29.665918149409411 ], [ -96.202859211296413, 29.665670149410101 ], [ -96.202859211196042, 29.665599149650035 ], [ -96.202846210953425, 29.665544149686394 ], [ -96.202808211687824, 29.665456149613181 ], [ -96.202745211012669, 29.665395149295563 ], [ -96.202683210960345, 29.665302149606624 ], [ -96.20255021081698, 29.664956149638261 ], [ -96.202513211161488, 29.664884149333275 ], [ -96.20245621104911, 29.664697148979393 ], [ -96.202450211294291, 29.664587148993466 ], [ -96.202475211653152, 29.664450149182212 ], [ -96.202525211293079, 29.664329148915431 ], [ -96.202601211413793, 29.664230149137786 ], [ -96.202645211686487, 29.664153149132961 ], [ -96.20267621110969, 29.664060149384657 ], [ -96.202714210746365, 29.663801149571007 ], [ -96.202714210813483, 29.663653149175449 ], [ -96.202689210994393, 29.663516148817813 ], [ -96.202638211151978, 29.663378149432653 ], [ -96.202468211391732, 29.663092148604463 ], [ -96.202399210727407, 29.663015149277694 ], [ -96.202330210925226, 29.662966148597675 ], [ -96.202160210869764, 29.662861149061118 ], [ -96.202040211246157, 29.66280714927294 ], [ -96.201858211224263, 29.662774149258915 ], [ -96.201763211233995, 29.662735148927652 ], [ -96.201688210567312, 29.662691148755595 ], [ -96.201379211055624, 29.662438149343462 ], [ -96.201191210386341, 29.662301149067204 ], [ -96.200793211122274, 29.662098148776241 ], [ -96.200479210917024, 29.661938148642133 ], [ -96.200372210089995, 29.661872148540095 ], [ -96.200297210761207, 29.661790149040371 ], [ -96.20027221102896, 29.661735148699687 ], [ -96.200265210243757, 29.661482148583314 ], [ -96.200316210771135, 29.661262148832233 ], [ -96.200385210057206, 29.661191148736108 ], [ -96.200467210341046, 29.661136148579846 ], [ -96.20054921026879, 29.661108148877766 ], [ -96.200637210679361, 29.661103148810827 ], [ -96.200750210397359, 29.661114148605712 ], [ -96.200832210704789, 29.661108148419597 ], [ -96.200964210708477, 29.660987148307434 ], [ -96.201027210278099, 29.660894148221065 ], [ -96.201228210446686, 29.660454148312478 ], [ -96.201411210845293, 29.659959148060764 ], [ -96.201461210697175, 29.659805148553765 ], [ -96.201543211241457, 29.659426147892873 ], [ -96.201524210474076, 29.65936614867751 ], [ -96.201473210508397, 29.659316148275721 ], [ -96.201322210944227, 29.659261148603711 ], [ -96.201140210218597, 29.659228148335455 ], [ -96.20102021087034, 29.659190148165816 ], [ -96.200725210447359, 29.659118148104671 ], [ -96.200643210995551, 29.65892614827975 ], [ -96.200693210564324, 29.65842614840011 ], [ -96.20086321050907, 29.657579147908457 ], [ -96.200844210422062, 29.657502147897606 ], [ -96.20076821049085, 29.657365148196646 ], [ -96.200680210924432, 29.657249148144224 ], [ -96.200592210449699, 29.657173147465983 ], [ -96.200215210720089, 29.657107147921451 ], [ -96.200114210817475, 29.657074147935727 ], [ -96.199762209837004, 29.656826147992515 ], [ -96.199604210503225, 29.656705147820901 ], [ -96.199554210619809, 29.656650147738283 ], [ -96.199466209808989, 29.656497148188571 ], [ -96.199458209924842, 29.65646014738461 ], [ -96.199289209983917, 29.656465147884383 ], [ -96.199258210502009, 29.656477148101466 ], [ -96.199247210443573, 29.656454147509571 ], [ -96.199198210252106, 29.656419148081977 ], [ -96.199165209775202, 29.656395147497339 ], [ -96.199116210167048, 29.656372147893755 ], [ -96.199092209940886, 29.65633114809145 ], [ -96.198809210364601, 29.656011147847074 ], [ -96.198705209379057, 29.655919147895684 ], [ -96.198452210148915, 29.655693147936738 ], [ -96.198404210201289, 29.655650147572132 ], [ -96.198295210054965, 29.655554147401237 ], [ -96.198187209867854, 29.655457147318046 ], [ -96.198138209898943, 29.655414147581748 ], [ -96.198069209688327, 29.655331147589365 ], [ -96.197974209692262, 29.655254147506149 ], [ -96.197740209566447, 29.655167147633065 ], [ -96.197678210047556, 29.655144147915134 ], [ -96.19717320977, 29.654819147341133 ], [ -96.196667209323664, 29.654494147290237 ], [ -96.196531209210022, 29.654407147768744 ], [ -96.196232209047452, 29.654161147737156 ], [ -96.19563220931515, 29.653523146865215 ], [ -96.195207209098498, 29.652884147340391 ], [ -96.19480020833673, 29.65184314702865 ], [ -96.19463420819163, 29.651289147298321 ], [ -96.194441208413636, 29.651001147124909 ], [ -96.1943832082043, 29.65091414726151 ], [ -96.194243208947242, 29.650706146605032 ], [ -96.193985208924403, 29.650488147157034 ], [ -96.193871207900855, 29.65003714663095 ], [ -96.193792208502828, 29.649958146616768 ], [ -96.193248208047336, 29.649635146357536 ], [ -96.192009207397192, 29.648900146552176 ], [ -96.191422208131073, 29.648761146356144 ], [ -96.191246207883651, 29.648670146631218 ], [ -96.191043207284835, 29.648494146776372 ], [ -96.190807207920798, 29.648122146343361 ], [ -96.190653207956856, 29.647945146187151 ], [ -96.190577207860741, 29.647858146700322 ], [ -96.190192207658782, 29.647741146324851 ], [ -96.189985207205083, 29.647579146402993 ], [ -96.189960207419645, 29.647514146549984 ], [ -96.189946207278027, 29.64747614631348 ], [ -96.18969720740958, 29.646826145786189 ], [ -96.189632206739248, 29.646656146307929 ], [ -96.18962720760743, 29.646446146058455 ], [ -96.189683207343919, 29.646279146317724 ], [ -96.189503206903467, 29.645717146270755 ], [ -96.189491206797456, 29.645680145527162 ], [ -96.189425206846522, 29.645474145956097 ], [ -96.189564207277286, 29.644690145872485 ], [ -96.189474207297167, 29.644520145674299 ], [ -96.189374206846139, 29.644332145851813 ], [ -96.188728207105228, 29.643687145444225 ], [ -96.188612206511593, 29.643439145126372 ], [ -96.188590206964165, 29.64339114552229 ], [ -96.188463206821794, 29.64305914569632 ], [ -96.188305206381358, 29.642898145770694 ], [ -96.187830206756246, 29.642568145246234 ], [ -96.187522206450652, 29.64245514502344 ], [ -96.187464206216688, 29.642433144895922 ], [ -96.187160206385471, 29.642321145741107 ], [ -96.185823206012572, 29.642076145475087 ], [ -96.185050205544258, 29.642049145084911 ], [ -96.184415205891455, 29.641965145499586 ], [ -96.183772205248189, 29.642008145214973 ], [ -96.183602205287471, 29.642020144975348 ], [ -96.182955205441431, 29.64189614520917 ], [ -96.182849205643905, 29.641876145469393 ], [ -96.182664205394047, 29.641799145656659 ], [ -96.182104204576476, 29.641621145562656 ], [ -96.181953204911622, 29.641573145558727 ], [ -96.181797204747667, 29.641504144912528 ], [ -96.181210204523637, 29.641243145203141 ], [ -96.180820204410907, 29.640908145513809 ], [ -96.180281204500758, 29.640297145364265 ], [ -96.179990204744442, 29.639968145514239 ], [ -96.17976320412464, 29.639671144926194 ], [ -96.179512204092347, 29.639286144927421 ], [ -96.17931020448836, 29.638759145186519 ], [ -96.179166203719987, 29.638308145005446 ], [ -96.179109204134164, 29.637984144626394 ], [ -96.179128203645249, 29.637626144988356 ], [ -96.179109203792081, 29.637478145013336 ], [ -96.179040204575742, 29.637330144493792 ], [ -96.17890120431278, 29.637033144770999 ], [ -96.178669203863535, 29.636593144501187 ], [ -96.178348203398343, 29.636170144702589 ], [ -96.178096204070016, 29.6359171442435 ], [ -96.177612203460185, 29.635395143861611 ], [ -96.17698920370303, 29.634900143894356 ], [ -96.176555203690171, 29.634641144412964 ], [ -96.176221202930762, 29.634510143680512 ], [ -96.17602620330571, 29.634372144501555 ], [ -96.175756203631266, 29.634158143884388 ], [ -96.175492202920125, 29.633905143939149 ], [ -96.17546820281072, 29.633868143870455 ], [ -96.175429202772463, 29.633811144081239 ], [ -96.175404203491382, 29.63377314367364 ], [ -96.175303203206155, 29.633646144219043 ], [ -96.17521520340766, 29.633575143649164 ], [ -96.175051203056512, 29.633536143529497 ], [ -96.175025203399301, 29.633526143520697 ], [ -96.174925203035457, 29.633487143890378 ], [ -96.174894202838644, 29.633427144023241 ], [ -96.17485520288048, 29.633377144035293 ], [ -96.174737203323815, 29.633223143659812 ], [ -96.174623202577962, 29.633146143469965 ], [ -96.17446020235856, 29.633086143907629 ], [ -96.174208202849883, 29.633014144205934 ], [ -96.173762202589032, 29.63284414342025 ], [ -96.173529202994033, 29.632734143879805 ], [ -96.173265202563456, 29.63255814363551 ], [ -96.17304420278667, 29.63226714337182 ], [ -96.171906202302011, 29.6311451438979 ], [ -96.171522201661219, 29.63071114335073 ], [ -96.171182201533625, 29.630293143790677 ], [ -96.170880201603197, 29.629892143282209 ], [ -96.170635201651706, 29.629523143036032 ], [ -96.170447201203928, 29.629348143298561 ], [ -96.170283201780364, 29.629243143484985 ], [ -96.170220201430013, 29.629227143576596 ], [ -96.170145201408502, 29.629238143512527 ], [ -96.170038201155023, 29.62928714364288 ], [ -96.169931201922623, 29.629298142824219 ], [ -96.16978620159253, 29.629243143398423 ], [ -96.169710201667115, 29.629155143641686 ], [ -96.169591201487776, 29.628930143337879 ], [ -96.169503201151642, 29.628858143264132 ], [ -96.169314201712737, 29.628875143245128 ], [ -96.16907520128656, 29.628913143091417 ], [ -96.168811201175728, 29.628880143455923 ], [ -96.168270201321661, 29.62865514282139 ], [ -96.168012200393534, 29.628534143056331 ], [ -96.167741201064516, 29.628305142942974 ], [ -96.167641200803587, 29.628220143058385 ], [ -96.167439200593691, 29.628061143149605 ], [ -96.167005200961611, 29.627819142760153 ], [ -96.166810200562523, 29.627643142898702 ], [ -96.166464200342972, 29.627495142600978 ], [ -96.166181200106038, 29.627291143198764 ], [ -96.165750200130944, 29.627062142525077 ], [ -96.165634200642444, 29.62700014250585 ], [ -96.165408199905315, 29.62690614287694 ], [ -96.165364200205076, 29.626527142823956 ], [ -96.165081200512077, 29.62650514299574 ], [ -96.164904199991511, 29.626620142782333 ], [ -96.164470199602903, 29.626598143149092 ], [ -96.164112199370649, 29.626637142539991 ], [ -96.163445200124613, 29.626851142960199 ], [ -96.163206199552221, 29.627021143322985 ], [ -96.162284199874989, 29.627743143231715 ], [ -96.162180199707649, 29.627824143044631 ], [ -96.161620199100668, 29.62810714350093 ], [ -96.161177198829478, 29.62833114321656 ], [ -96.16106019947118, 29.628390143486911 ], [ -96.160116198408403, 29.628868143646436 ], [ -96.159676198301213, 29.629054143423311 ], [ -96.159418198400232, 29.629181143631502 ], [ -96.159053198991387, 29.629291143734111 ], [ -96.158531198321171, 29.629389143567106 ], [ -96.158342198288594, 29.629510143647416 ], [ -96.158002198278297, 29.629494143488749 ], [ -96.157788198521231, 29.629505143296079 ], [ -96.157574197986008, 29.629582143786173 ], [ -96.15744219878178, 29.629615143627301 ], [ -96.157297197937041, 29.629620143297334 ], [ -96.157102198073915, 29.629576143830146 ], [ -96.156832197987328, 29.629482143664703 ], [ -96.156599198376568, 29.629438143955625 ], [ -96.156530198174963, 29.629444143717965 ], [ -96.156481197694546, 29.629471143325155 ], [ -96.15646119771192, 29.629482143514217 ], [ -96.156379198337589, 29.629554143340858 ], [ -96.156272197535998, 29.62953714417657 ], [ -96.156127198248441, 29.629455144207274 ], [ -96.15542319775561, 29.629295143873033 ], [ -96.15523419764915, 29.62921814363229 ], [ -96.154621197212037, 29.628804143819821 ], [ -96.154567197301432, 29.628767143660603 ], [ -96.154504197215573, 29.628745143503732 ], [ -96.153064197476525, 29.6277781436529 ], [ -96.152856197049744, 29.627684143631946 ], [ -96.15220819633096, 29.62743114363824 ], [ -96.15076219643683, 29.626738142965618 ], [ -96.150164196538, 29.626348143421929 ], [ -96.149233196181839, 29.625765142948062 ], [ -96.14885619541981, 29.625490143004797 ], [ -96.148789195374746, 29.62548214337242 ], [ -96.148768195630169, 29.625479143618708 ], [ -96.148661196271107, 29.625506142996102 ], [ -96.148491196145187, 29.625495143633977 ], [ -96.148365195274167, 29.625451142794791 ], [ -96.147894196029156, 29.625003143437016 ], [ -96.147824195394762, 29.624926143084856 ], [ -96.147730196101477, 29.624860143010856 ], [ -96.147692195880808, 29.624810143326545 ], [ -96.147447195727523, 29.624569143066022 ], [ -96.146988195790172, 29.624052142922707 ], [ -96.146856195628658, 29.623953143256543 ], [ -96.146655195301207, 29.623733142751366 ], [ -96.146579195714878, 29.623634142716984 ], [ -96.146510195317816, 29.623469142568521 ], [ -96.146447194828937, 29.623375142566175 ], [ -96.146057195523795, 29.622990142508026 ], [ -96.14575519476216, 29.622666142991438 ], [ -96.145619194516186, 29.622531143113179 ], [ -96.145605195371402, 29.622518142278871 ], [ -96.145454195395999, 29.622391142737211 ], [ -96.145215195254508, 29.622248142980503 ], [ -96.145127194359205, 29.622182142551683 ], [ -96.144369194357807, 29.621350142494585 ], [ -96.144316194968354, 29.621291142925092 ], [ -96.144039194227787, 29.620945142715954 ], [ -96.143926194125612, 29.620840142851016 ], [ -96.143907194788966, 29.620813142413105 ], [ -96.143712194728622, 29.620686142129731 ], [ -96.14332819420747, 29.62054914232704 ], [ -96.14327819410471, 29.62053814260511 ], [ -96.14318419390122, 29.620494141968731 ], [ -96.142920193941762, 29.620197141875948 ], [ -96.142813194469397, 29.620114142028058 ], [ -96.142693194242199, 29.620048142612625 ], [ -96.142354194351142, 29.619823142480659 ], [ -96.142159193661001, 29.619724141829234 ], [ -96.141844194357034, 29.619641142247129 ], [ -96.141630193924371, 29.61960814256469 ], [ -96.141372193578661, 29.619586142268979 ], [ -96.140831193477212, 29.619558142289883 ], [ -96.140253193393477, 29.619564142141794 ], [ -96.139800193325044, 29.619618141896687 ], [ -96.137459192796015, 29.619942142448146 ], [ -96.137321192346661, 29.619936142608829 ], [ -96.137229192497941, 29.619934142061854 ], [ -96.137082192654717, 29.619931142626054 ], [ -96.136868192547993, 29.619947142063879 ], [ -96.136667192996157, 29.619925142819689 ], [ -96.136220192246242, 29.619930142935189 ], [ -96.135874191941895, 29.619947142688552 ], [ -96.13554719261289, 29.620040142805056 ], [ -96.135434192349152, 29.620111142533556 ], [ -96.135169192140637, 29.620248142528883 ], [ -96.135056192121496, 29.620287142565072 ], [ -96.13481719217063, 29.620325142547298 ], [ -96.134603192543196, 29.620402142561641 ], [ -96.134383192073642, 29.620512143103394 ], [ -96.134137191718168, 29.620616142406107 ], [ -96.133974191927379, 29.620737142833956 ], [ -96.133672192132849, 29.620990142809099 ], [ -96.133514191717609, 29.621111143271055 ], [ -96.133388191327725, 29.621193142735645 ], [ -96.132954192037261, 29.621374143229488 ], [ -96.132759191915113, 29.621511142709696 ], [ -96.131966191313353, 29.622347143488955 ], [ -96.131739191936546, 29.622533143015733 ], [ -96.131544190878529, 29.622621143008306 ], [ -96.131318190957728, 29.622742142807642 ], [ -96.131236191403673, 29.622775143493392 ], [ -96.131160191356571, 29.622797143577699 ], [ -96.130846190875857, 29.622857143633482 ], [ -96.130695191682634, 29.622852143567766 ], [ -96.130607191641829, 29.622857143119123 ], [ -96.129198191200473, 29.622796143200159 ], [ -96.128701190251789, 29.622642143617618 ], [ -96.128544190755477, 29.622609142969672 ], [ -96.128160190204198, 29.622240143153157 ], [ -96.128091190762191, 29.622185142947146 ], [ -96.127758190374124, 29.62193814279707 ], [ -96.127594190580936, 29.62182814340068 ], [ -96.127525190766022, 29.621800143153077 ], [ -96.127450190001341, 29.621756142957441 ], [ -96.127374190274892, 29.62169014270949 ], [ -96.127324190144208, 29.621602143432515 ], [ -96.12703519011508, 29.620860142946899 ], [ -96.126966190160118, 29.620640143058271 ], [ -96.126903190468028, 29.620382142469381 ], [ -96.12685319009455, 29.620233143209614 ], [ -96.126790190026014, 29.620085142808165 ], [ -96.126696190114345, 29.619947142953663 ], [ -96.125941189899265, 29.619441143188247 ], [ -96.125281189785795, 29.619073142487299 ], [ -96.12522518966216, 29.619050142313611 ], [ -96.125005189168746, 29.61895714246355 ], [ -96.124621189267302, 29.61881414235603 ], [ -96.124508189731429, 29.618776142600638 ], [ -96.123281188615081, 29.618452142632357 ], [ -96.12216118923557, 29.618293142842255 ], [ -96.121985188952578, 29.618298143096126 ], [ -96.121633188765088, 29.618332142311161 ], [ -96.121545188181571, 29.618354142351169 ], [ -96.121425188912795, 29.618403142990637 ], [ -96.121249189089951, 29.618524142819453 ], [ -96.121073188344241, 29.618661142599716 ], [ -96.120822188448486, 29.618739142466747 ], [ -96.120652188797109, 29.618761143042661 ], [ -96.120526188870443, 29.618766143197423 ], [ -96.120331188044347, 29.618739142707611 ], [ -96.119997188278234, 29.618733142733682 ], [ -96.119922188179174, 29.618739142421965 ], [ -96.119809188338081, 29.618783142391351 ], [ -96.119659187800181, 29.618891142717487 ], [ -96.119488187901226, 29.619014143227943 ], [ -96.119419187923782, 29.61907414250599 ], [ -96.119343187830808, 29.619113143328772 ], [ -96.119174188578398, 29.619157143099475 ], [ -96.119136188218775, 29.619179143021409 ], [ -96.11909218807331, 29.619256142623158 ], [ -96.119042188031941, 29.619388142797789 ], [ -96.118941187841813, 29.619718143141004 ], [ -96.118702188132062, 29.62057014356051 ], [ -96.118608188345931, 29.620751143575244 ], [ -96.118426187508462, 29.621004143070913 ], [ -96.118143187502511, 29.621317143232481 ], [ -96.117986188055795, 29.621416143435621 ], [ -96.117948188238728, 29.621449143179291 ], [ -96.117646187715707, 29.621917143872867 ], [ -96.116760188152014, 29.622868144038645 ], [ -96.116728187402884, 29.622912143764065 ], [ -96.116357187173961, 29.623269143732106 ], [ -96.116300187957464, 29.623313143513666 ], [ -96.116257187866395, 29.623341144189187 ], [ -96.115596186919944, 29.623605143495084 ], [ -96.115338187051975, 29.623687144070004 ], [ -96.115099187019752, 29.623720144277605 ], [ -96.114866186712121, 29.623764143578679 ], [ -96.114678186705078, 29.62378614399605 ], [ -96.113986187454742, 29.623792144418513 ], [ -96.113615186670245, 29.623770143918865 ], [ -96.11338218663029, 29.623726144050625 ], [ -96.112589186894496, 29.623622144081409 ], [ -96.112356186546322, 29.623567144064257 ], [ -96.112193186472226, 29.623507144154228 ], [ -96.112130186021247, 29.623457144145988 ], [ -96.112061185983023, 29.623358143960679 ], [ -96.112023186568024, 29.623320143848829 ], [ -96.111979186706677, 29.623298144409677 ], [ -96.111721186190763, 29.623232144221248 ], [ -96.111331186221662, 29.623078144307716 ], [ -96.11072018645055, 29.622914143655105 ], [ -96.110626185624156, 29.622908143891358 ], [ -96.110393186340261, 29.622925144097792 ], [ -96.110324185899643, 29.622908144066297 ], [ -96.110274186020959, 29.622886143558752 ], [ -96.11020518642637, 29.622820143718091 ], [ -96.11016118546371, 29.622771144175911 ], [ -96.110060185513589, 29.62271014374581 ], [ -96.109972185570101, 29.622683143754305 ], [ -96.109657186275157, 29.622529143853175 ], [ -96.109563185475992, 29.622452144156181 ], [ -96.109475185986625, 29.622353143741268 ], [ -96.109254186120893, 29.622188144065248 ], [ -96.109166185394855, 29.622134144033556 ], [ -96.109015186073407, 29.621996143764804 ], [ -96.108355184953098, 29.621540143329231 ], [ -96.108241185603617, 29.621436143349744 ], [ -96.108166185843046, 29.621320143780235 ], [ -96.10805918509412, 29.621095143291807 ], [ -96.107971185575309, 29.620980143371273 ], [ -96.107675185629319, 29.620705143946601 ], [ -96.107625185239257, 29.620639143550076 ], [ -96.107511184947015, 29.620419143864414 ], [ -96.107455185397882, 29.620353143692402 ], [ -96.107373185219629, 29.62005114386918 ], [ -96.107348184901738, 29.619919143030248 ], [ -96.107285185504907, 29.619809143335605 ], [ -96.107159185000668, 29.619611143231282 ], [ -96.107146185022856, 29.619573143229275 ], [ -96.106945185325316, 29.61931414344372 ], [ -96.106876185158711, 29.619243143449165 ], [ -96.106718184591969, 29.619045143294088 ], [ -96.10661118477455, 29.618869143080236 ], [ -96.106536184762916, 29.618633143301931 ], [ -96.106422185245137, 29.618479143522617 ], [ -96.106234185034808, 29.618336142910902 ], [ -96.104415184464642, 29.617002143257647 ], [ -96.103535184158318, 29.616418142644722 ], [ -96.10350118397308, 29.616395142801846 ], [ -96.102700184242025, 29.615770142569236 ], [ -96.102635183251323, 29.615858142843745 ], [ -96.102446183471272, 29.61599614318245 ], [ -96.102314183357791, 29.616001142430338 ], [ -96.102182184031832, 29.615952142455189 ], [ -96.10211318365559, 29.615930142460616 ], [ -96.101867183583963, 29.615770142625809 ], [ -96.100596183192437, 29.614831142667821 ], [ -96.10004918323105, 29.614441142970925 ], [ -96.099370182561813, 29.613930142145307 ], [ -96.099225183177452, 29.6136881426653 ], [ -96.098935182441949, 29.613512142410077 ], [ -96.098715182267952, 29.613391142171 ], [ -96.098640182375945, 29.613320142015773 ], [ -96.09855218220514, 29.613254142520272 ], [ -96.098451182390789, 29.613204142069787 ], [ -96.098350182342685, 29.613199142364387 ], [ -96.098212182945474, 29.613215142086965 ], [ -96.098124182258104, 29.613215142605664 ], [ -96.097602182760539, 29.613067142025677 ], [ -96.09704218267774, 29.613012142555029 ], [ -96.097017181712104, 29.613018142717713 ], [ -96.096910182572387, 29.612996142322842 ], [ -96.096671182035763, 29.61290214209356 ], [ -96.096243181872168, 29.612809142305398 ], [ -96.095929182078123, 29.612705142102016 ], [ -96.095601182262385, 29.61262214273664 ], [ -96.095312181611447, 29.612611142115927 ], [ -96.095092181592605, 29.612573142778395 ], [ -96.094941181699411, 29.612496142111166 ], [ -96.094847182145742, 29.612408142101 ], [ -96.094759181447102, 29.612243142608634 ], [ -96.094740181645946, 29.612128142128519 ], [ -96.094746181652539, 29.611941142403719 ], [ -96.094689181887105, 29.611584142470758 ], [ -96.094639181482989, 29.611496141786237 ], [ -96.094551181611578, 29.611435142353933 ], [ -96.094431181266231, 29.611369141961745 ], [ -96.094236181463927, 29.611292142601872 ], [ -96.094085180986127, 29.611215141780406 ], [ -96.094022181819895, 29.611149142386402 ], [ -96.093953181592482, 29.610968142118168 ], [ -96.09388418106559, 29.610550141577093 ], [ -96.093871181701985, 29.610479142133403 ], [ -96.093815181146724, 29.610364142007253 ], [ -96.093770180779998, 29.610232142155066 ], [ -96.093645181258225, 29.609979141469228 ], [ -96.093569180783234, 29.609369141728983 ], [ -96.09341818130018, 29.609132141317971 ], [ -96.093387180735618, 29.608962141348737 ], [ -96.093387180969998, 29.60879214148159 ], [ -96.093449180700645, 29.608330141189157 ], [ -96.093462180688675, 29.608050141620165 ], [ -96.093412181046943, 29.607901141805353 ], [ -96.093361180643925, 29.607813141345623 ], [ -96.093311180904081, 29.607753141520771 ], [ -96.093292180842155, 29.607698141902169 ], [ -96.093292180989778, 29.607626141311069 ], [ -96.093317181391811, 29.607527141718503 ], [ -96.093399180775307, 29.607324141647663 ], [ -96.093575181423205, 29.606895141632361 ], [ -96.09368218155447, 29.606571141272369 ], [ -96.093701181242579, 29.606445141559895 ], [ -96.093744181347049, 29.606258141090262 ], [ -96.093826180734268, 29.605708140639933 ], [ -96.093851180884315, 29.605433140803541 ], [ -96.093864181193481, 29.605213140514877 ], [ -96.093858180579986, 29.60497714054608 ], [ -96.093662181244625, 29.604048140586716 ], [ -96.093631181365737, 29.603988141032019 ], [ -96.09342318085011, 29.603784140995238 ], [ -96.092436181117407, 29.603169140129204 ], [ -96.091140179936758, 29.602614140337721 ], [ -96.090888180086282, 29.602499140054562 ], [ -96.090800180666903, 29.602433140415542 ], [ -96.09072518029744, 29.602361140731315 ], [ -96.090467180018365, 29.60209714025477 ], [ -96.090379179594876, 29.602032140320205 ], [ -96.090146180047498, 29.601955140164034 ], [ -96.090001179531967, 29.601933140489901 ], [ -96.089725179844379, 29.601910140634217 ], [ -96.089404179661258, 29.601883140457264 ], [ -96.089357179844015, 29.601870140314926 ], [ -96.089347179257928, 29.601867140205925 ], [ -96.089278179297878, 29.60186113995001 ], [ -96.08891917957817, 29.601663140129357 ], [ -96.088861180122095, 29.601665140006524 ], [ -96.085556178412645, 29.601757140061142 ], [ -96.076184176889953, 29.60202014049678 ], [ -96.069746174549365, 29.602100141229794 ], [ -96.069698174368838, 29.602101141484116 ], [ -96.069652174689807, 29.602102141310027 ], [ -96.069617175128585, 29.602103141060002 ], [ -96.069582174534546, 29.602104140778202 ], [ -96.069530174403496, 29.602105140913284 ], [ -96.069505175210878, 29.602106141247159 ], [ -96.069473174839572, 29.602107140762943 ], [ -96.068140174674696, 29.602145140891739 ], [ -96.06800917481813, 29.602149141396872 ], [ -96.065754174107454, 29.602199141243837 ], [ -96.065674173325803, 29.60220114137957 ], [ -96.065598173523995, 29.60220314166834 ], [ -96.065560173634964, 29.602204141345482 ], [ -96.065545173554497, 29.602204140892564 ], [ -96.065496173508961, 29.602205141178938 ], [ -96.063205173590404, 29.602255141628916 ], [ -96.062673172511865, 29.602272141097743 ], [ -96.062300173061402, 29.602277141831333 ], [ -96.062207172787666, 29.602287141717024 ], [ -96.062141173242864, 29.602289141202903 ], [ -96.062071172683019, 29.602291141252138 ], [ -96.062000172560857, 29.602294141005867 ], [ -96.059110172049088, 29.60236014158555 ], [ -96.054509171377674, 29.602465141921741 ], [ -96.044607168917693, 29.602610141925165 ], [ -96.044216168502444, 29.602618142450428 ], [ -96.041557167910227, 29.60266614186397 ], [ -96.033272165134619, 29.602747142288894 ], [ -96.033254165632769, 29.602747142110928 ], [ -96.033223165206408, 29.602748142507046 ], [ -96.031505165440976, 29.60278514271122 ], [ -96.029655164674168, 29.602807142229732 ], [ -96.027404163993509, 29.602861142419385 ], [ -96.024857163914575, 29.602882143213336 ], [ -96.02483216383169, 29.602904143185629 ], [ -96.024800163544199, 29.603404143064093 ], [ -96.024823163332982, 29.607130143576558 ], [ -96.02480416326712, 29.609153143824674 ], [ -96.02479616332117, 29.611874144719337 ], [ -96.02480716360536, 29.614495145060115 ], [ -96.024793163795948, 29.614956145438718 ], [ -96.024792163648883, 29.614999145413908 ], [ -96.024782163679589, 29.61536414569278 ], [ -96.024768164020983, 29.617100145320794 ], [ -96.024800163575961, 29.617458145742464 ], [ -96.024791164120401, 29.617585145726089 ], [ -96.024789164144138, 29.617612145478613 ], [ -96.024788164172563, 29.617628145438132 ], [ -96.024770164413098, 29.617891145670189 ], [ -96.024767163922633, 29.61792114583907 ], [ -96.024649164462048, 29.618172146169972 ], [ -96.0246361643445, 29.618200145962742 ], [ -96.023868163486739, 29.619507145835179 ], [ -96.023673163481419, 29.619749146462382 ], [ -96.023634164032316, 29.619866146658175 ], [ -96.023629163400017, 29.619881146041902 ], [ -96.023584164249229, 29.619974146470884 ], [ -96.023544163655089, 29.620096146196715 ], [ -96.023466164272278, 29.620261146022411 ], [ -96.023480163425887, 29.620440146477492 ], [ -96.023614164383076, 29.620737146482661 ], [ -96.023704163947414, 29.620937146517178 ], [ -96.023811163531818, 29.621068146842966 ], [ -96.023905163560741, 29.621173146849042 ], [ -96.023905164392559, 29.621184146322786 ], [ -96.023949164348693, 29.621343146219889 ], [ -96.023955164059586, 29.621447146736873 ], [ -96.023934164283119, 29.621518146846761 ], [ -96.023904164278292, 29.621618146298957 ], [ -96.024005164006951, 29.621865146717177 ], [ -96.024061163961463, 29.621937147043305 ], [ -96.024175164499596, 29.62200314626492 ], [ -96.024175164108129, 29.622030147127504 ], [ -96.024162164229381, 29.622069146320065 ], [ -96.024112164279302, 29.622135146731807 ], [ -96.024024164464436, 29.622222146654217 ], [ -96.023923164299234, 29.62229414664543 ], [ -96.023873163880737, 29.622371146412032 ], [ -96.02386616402093, 29.622442146464845 ], [ -96.023935164345431, 29.622629147219719 ], [ -96.02392916420861, 29.622761147095783 ], [ -96.02387216390882, 29.622898146552966 ], [ -96.02372816424301, 29.623173147039484 ], [ -96.02367116363402, 29.623245147024335 ], [ -96.023463163723406, 29.62337114688108 ], [ -96.023400163876317, 29.623420147061125 ], [ -96.023243163580119, 29.623624147117994 ], [ -96.023155163954158, 29.623816147147892 ], [ -96.02313016411091, 29.623893146779277 ], [ -96.023111163712599, 29.624019146948918 ], [ -96.022995164206222, 29.624180147600157 ], [ -96.022985163499143, 29.624195146737179 ], [ -96.022783163990212, 29.624409147388061 ], [ -96.022727164033768, 29.624448147426278 ], [ -96.0225511638791, 29.62445914742792 ], [ -96.022502163379102, 29.624466146836738 ], [ -96.022186164128016, 29.624508147170559 ], [ -96.022116163933362, 29.624508147368626 ], [ -96.022082163910312, 29.624496147660761 ], [ -96.021991163598599, 29.624464146990285 ], [ -96.021884164041893, 29.624459147595822 ], [ -96.021755163797309, 29.624416147365938 ], [ -96.021477163051969, 29.624430146869638 ], [ -96.021431163476649, 29.624432147532637 ], [ -96.021393163211414, 29.624449147098503 ], [ -96.021179163935287, 29.624546147111552 ], [ -96.020946163590878, 29.62466214773006 ], [ -96.020657162967197, 29.624799147455121 ], [ -96.02038616294054, 29.624936147514905 ], [ -96.020229162776474, 29.624986147284361 ], [ -96.020116163595574, 29.62499114770614 ], [ -96.020015162746873, 29.624980147529087 ], [ -96.019929162692407, 29.624972147466398 ], [ -96.019361162542879, 29.624567147632323 ], [ -96.019311163447767, 29.624551147254131 ], [ -96.019242162901563, 29.62455614761971 ], [ -96.019204162499193, 29.62458414783249 ], [ -96.019172162948664, 29.624628147739582 ], [ -96.019110162677535, 29.62465514763657 ], [ -96.019072163139029, 29.624655147817574 ], [ -96.018883163287285, 29.624595147159326 ], [ -96.018858162998995, 29.624600147292764 ], [ -96.018839162755398, 29.624628147354322 ], [ -96.018732162639395, 29.624837147034359 ], [ -96.018657163088889, 29.624902147203567 ], [ -96.018506162756253, 29.625004147661588 ], [ -96.018233163081661, 29.625256147783237 ], [ -96.018066162756128, 29.625411147709023 ], [ -96.018028163193179, 29.62548814741664 ], [ -96.018053162768751, 29.625592147378768 ], [ -96.018103162601676, 29.625669147521272 ], [ -96.018368162645359, 29.62564714753292 ], [ -96.018506162929029, 29.625658147400028 ], [ -96.018531163168447, 29.625686147500524 ], [ -96.018556162818712, 29.625768147538366 ], [ -96.018531162556997, 29.625867147972809 ], [ -96.018455163126163, 29.6259601474279 ], [ -96.018179162782047, 29.625993147459837 ], [ -96.01814116301091, 29.625988148121856 ], [ -96.018028162943679, 29.625941147796031 ], [ -96.017963162653857, 29.62586714742843 ], [ -96.017902162844848, 29.625954147570454 ], [ -96.017859162472405, 29.626103147356687 ], [ -96.017769162638515, 29.626188147384855 ], [ -96.017666162776692, 29.626289147896529 ], [ -96.017367162547075, 29.626361147658187 ], [ -96.017331162650123, 29.626356147536054 ], [ -96.017292162040576, 29.626350148184883 ], [ -96.017210162623385, 29.626279147755952 ], [ -96.017197162538764, 29.626235148091592 ], [ -96.017153162035243, 29.626218147913427 ], [ -96.017059162373414, 29.626240147418411 ], [ -96.016971162789446, 29.626306147562566 ], [ -96.016958162860874, 29.626378148073037 ], [ -96.016989162256763, 29.6264491482093 ], [ -96.017059162698473, 29.626521147611271 ], [ -96.017090162828211, 29.626537147740496 ], [ -96.017109162062695, 29.626576148286752 ], [ -96.01707116299653, 29.626647147541803 ], [ -96.017033163006545, 29.62669114768736 ], [ -96.016958162718865, 29.626746147489264 ], [ -96.016908162622883, 29.62681714815885 ], [ -96.016882162709976, 29.626867147883623 ], [ -96.016844161998563, 29.626984147639622 ], [ -96.01679116278865, 29.6269731482301 ], [ -96.016445162276824, 29.62710914824828 ], [ -96.016530162782828, 29.627291148358729 ], [ -96.016731162788645, 29.627698148525788 ], [ -96.016935163013585, 29.628095148076717 ], [ -96.017076162490838, 29.628369147978464 ], [ -96.017436162833675, 29.629020148755725 ], [ -96.017597163123412, 29.629562148292923 ], [ -96.017806162555971, 29.630460148913265 ], [ -96.017810162997549, 29.63047814836774 ], [ -96.017822163016888, 29.630529148411043 ], [ -96.017824162429889, 29.630539149054037 ], [ -96.01782916236894, 29.630559148278156 ], [ -96.017847163080944, 29.630635148337131 ], [ -96.017863162472253, 29.630805148281439 ], [ -96.017913162512201, 29.631352148693239 ], [ -96.017962162824119, 29.631861149005687 ], [ -96.017964162802699, 29.631873148815053 ], [ -96.018039163336539, 29.632679149102522 ], [ -96.018239163575643, 29.633407149085848 ], [ -96.01864616359407, 29.634321149802975 ], [ -96.018843163791914, 29.634684149044837 ], [ -96.01925216324058, 29.635438149214973 ], [ -96.019278163923531, 29.635487149401264 ], [ -96.019311163821456, 29.635537149344554 ], [ -96.019317162975099, 29.635546149640227 ], [ -96.019328163541942, 29.636181150130689 ], [ -96.019329163983002, 29.636196149393012 ], [ -96.019329163536568, 29.63621014980194 ], [ -96.01932916359641, 29.636222150162279 ], [ -96.019330163144701, 29.636306149662687 ], [ -96.019066163401178, 29.636949149616026 ], [ -96.018983163747635, 29.637095150205369 ], [ -96.018955163367721, 29.637144149884623 ], [ -96.018943163177937, 29.637165150389475 ], [ -96.01892716296102, 29.637193149557461 ], [ -96.018783162957916, 29.63744715020961 ], [ -96.018661163037351, 29.637522149859848 ], [ -96.018538163102875, 29.637596149659675 ], [ -96.018475163179502, 29.63763414998056 ], [ -96.01846216304088, 29.637642150345293 ], [ -96.017403163103921, 29.638285150501254 ], [ -96.016608162504241, 29.638655150658462 ], [ -96.015982162800498, 29.638866150170305 ], [ -96.015914163120982, 29.638888150185053 ], [ -96.015898163183579, 29.638893150124911 ], [ -96.015855162532134, 29.638909150407432 ], [ -96.015828162388644, 29.63891815069934 ], [ -96.015741163011924, 29.63896815025269 ], [ -96.015723162425545, 29.638978150842931 ], [ -96.01570916284993, 29.638986150323788 ], [ -96.01508816276808, 29.63934815072929 ], [ -96.014967162742906, 29.639641150670293 ], [ -96.014956162141246, 29.639667150708828 ], [ -96.01494816304745, 29.639682150566742 ], [ -96.014940162174668, 29.639703150564699 ], [ -96.014932162483348, 29.639720150468392 ], [ -96.014915162230366, 29.639760150696684 ], [ -96.014865162207983, 29.639930150817605 ], [ -96.014851162378349, 29.639980150562398 ], [ -96.01484216265824, 29.640007151020729 ], [ -96.014837162664577, 29.64002615109068 ], [ -96.014776162258926, 29.640234150661421 ], [ -96.014661162081595, 29.640998151054276 ], [ -96.014760162284389, 29.641674150754479 ], [ -96.015190162549743, 29.642605150988821 ], [ -96.015226163255676, 29.6426831509871 ], [ -96.015243162870988, 29.642710150879182 ], [ -96.015250162832956, 29.642724151239424 ], [ -96.015295162321678, 29.642786151045062 ], [ -96.015520162364894, 29.643104151007027 ], [ -96.016307162617878, 29.644213151089801 ], [ -96.016920163338412, 29.644897151622093 ], [ -96.017376163187052, 29.645313151455365 ], [ -96.017543163833949, 29.645465151993612 ], [ -96.018591163669413, 29.645986151513387 ], [ -96.018784163606554, 29.64610115174975 ], [ -96.018900163591013, 29.646170152235246 ], [ -96.018949164290092, 29.646200152261269 ], [ -96.019010163762047, 29.646239151673925 ], [ -96.019356164332521, 29.646460152287329 ], [ -96.019558164086575, 29.646589151775068 ], [ -96.020438164572653, 29.647096152390215 ], [ -96.020860164808255, 29.647345151788898 ], [ -96.021714164135275, 29.647648151601153 ], [ -96.022465165158422, 29.648288152518624 ], [ -96.023448164943417, 29.648799151930774 ], [ -96.024047165441843, 29.649375152586295 ], [ -96.024972165674768, 29.650014151930407 ], [ -96.025539165322883, 29.650629152680956 ], [ -96.02556116598852, 29.650650152886751 ], [ -96.025633165760894, 29.650721152469458 ], [ -96.026365166137836, 29.65144315296606 ], [ -96.026705165760873, 29.65179915248325 ], [ -96.027153166073987, 29.652269152469032 ], [ -96.027679166022736, 29.652672152739285 ], [ -96.02781416592795, 29.652663152623255 ], [ -96.028281166121587, 29.653114152956835 ], [ -96.028513167030596, 29.653364152705414 ], [ -96.028783166935469, 29.653633152891651 ], [ -96.028958166432787, 29.653832152579401 ], [ -96.029012167104469, 29.653885152825328 ], [ -96.029185167231773, 29.654036152718003 ], [ -96.029235166814573, 29.654091153471501 ], [ -96.029257166549144, 29.654121153208187 ], [ -96.029332166890029, 29.654205153439936 ], [ -96.029417166635852, 29.654283153351866 ], [ -96.029750167050182, 29.654548153087177 ], [ -96.029814167042261, 29.654593153538553 ], [ -96.030049166897186, 29.654735153055029 ], [ -96.0301901670408, 29.654808152823787 ], [ -96.031245167020444, 29.655283153145309 ], [ -96.031857167395955, 29.655571153366072 ], [ -96.031891167333285, 29.655592153153059 ], [ -96.031952168002519, 29.655638152845839 ], [ -96.032056167492655, 29.655749153285946 ], [ -96.032305167974201, 29.655985153398053 ], [ -96.032408167950692, 29.656096153042135 ], [ -96.032564167994281, 29.656348153641005 ], [ -96.032672167295289, 29.656540153744579 ], [ -96.032771167741416, 29.656774153765777 ], [ -96.03286316769919, 29.656974153926665 ], [ -96.032899167837755, 29.657038153580924 ], [ -96.032982168128072, 29.657201153726895 ], [ -96.033072167979284, 29.657439153523853 ], [ -96.033091168228509, 29.657508153722894 ], [ -96.033118167434651, 29.657649154047764 ], [ -96.03313516825385, 29.657718153245927 ], [ -96.03315416819791, 29.657896153971269 ], [ -96.033165167974147, 29.658189154053375 ], [ -96.033132168493182, 29.658254153378969 ], [ -96.033093168131359, 29.658355154053787 ], [ -96.033054168274404, 29.658495153759453 ], [ -96.033046167888969, 29.658566153970014 ], [ -96.033045167459719, 29.658637154078065 ], [ -96.033019167741813, 29.658815153880358 ], [ -96.032987168243494, 29.658880153667798 ], [ -96.032927168393215, 29.658974153537805 ], [ -96.032863168080226, 29.659104153933871 ], [ -96.03283516829238, 29.65917115392627 ], [ -96.032730168166466, 29.659325154006702 ], [ -96.032547168303012, 29.659562154323464 ], [ -96.032375168214855, 29.659713154517341 ], [ -96.032182167563462, 29.659847154293917 ], [ -96.031940168054973, 29.659981154144933 ], [ -96.031694167598317, 29.660108154060712 ], [ -96.031583167184664, 29.660152154161437 ], [ -96.031239167399605, 29.660267154247972 ], [ -96.031083167262352, 29.660311154250937 ], [ -96.030882167984657, 29.660345154078826 ], [ -96.030682167871277, 29.66038615425839 ], [ -96.030480167798586, 29.660414154628004 ], [ -96.03046116783139, 29.660409154564082 ], [ -96.029272167221833, 29.660136154613216 ], [ -96.028398166611908, 29.659745154357804 ], [ -96.027119165966809, 29.659116154472247 ], [ -96.025506166262232, 29.658660154108293 ], [ -96.023955166091454, 29.658344154486059 ], [ -96.022553165796012, 29.658389154122563 ], [ -96.020866165008883, 29.658750154165435 ], [ -96.020023164753582, 29.659172154243507 ], [ -96.018185163886258, 29.660347154967543 ], [ -96.016830163689704, 29.661974155330594 ], [ -96.016046163518766, 29.663721155259303 ], [ -96.01617116436212, 29.665582155681019 ], [ -96.016290163880512, 29.666241156068835 ], [ -96.016776163783092, 29.667496156384352 ], [ -96.01723916424028, 29.668192156454072 ], [ -96.017653164568785, 29.668817156391192 ], [ -96.018422164394451, 29.669748156795354 ], [ -96.018440164624408, 29.669763156340924 ], [ -96.018475164924467, 29.669792156596273 ], [ -96.018483164524596, 29.669798156164983 ], [ -96.01850516479648, 29.669819156458676 ], [ -96.018543164830987, 29.669834156401947 ], [ -96.019242164843476, 29.670105156206226 ], [ -96.01970116497273, 29.670391156270135 ], [ -96.020070165001684, 29.670617156685207 ], [ -96.020492165214037, 29.670948157172599 ], [ -96.020810165420542, 29.671165156613764 ], [ -96.021098165001305, 29.671236157133027 ], [ -96.021218165307388, 29.671267156978118 ], [ -96.021237165861777, 29.671272156512956 ], [ -96.021319165122222, 29.671293157194956 ], [ -96.021338165686387, 29.671298156715423 ], [ -96.021557165115695, 29.671351156912401 ], [ -96.021784166157488, 29.671408157013367 ], [ -96.021801166141231, 29.67141215707305 ], [ -96.021833165285344, 29.671420156905441 ], [ -96.023035166234706, 29.671615156939037 ], [ -96.023172165668228, 29.671635156387385 ], [ -96.023183165719331, 29.671637156406405 ], [ -96.023722165891698, 29.671719156746502 ], [ -96.024145166543107, 29.671937157122073 ], [ -96.025052166417964, 29.672403156737985 ], [ -96.025451167031719, 29.672886157236793 ], [ -96.025849166498375, 29.673316157511845 ], [ -96.02586116721217, 29.673329157181136 ], [ -96.025885167211754, 29.673357157425603 ], [ -96.025892166891538, 29.673364156902302 ], [ -96.026527167240843, 29.674047156781221 ], [ -96.027492166832488, 29.674528157392505 ], [ -96.027518166914078, 29.674541157218396 ], [ -96.027705166901612, 29.674601157051786 ], [ -96.027720167594495, 29.674606157103668 ], [ -96.027730167425617, 29.674609157117072 ], [ -96.029657167623313, 29.675224156982924 ], [ -96.029671168191058, 29.675228157170018 ], [ -96.029826167884792, 29.675223157724261 ], [ -96.030001168371285, 29.675218157698989 ], [ -96.030913167697491, 29.675192157732045 ], [ -96.031898167892038, 29.67492315723257 ], [ -96.031917168830859, 29.674918156858752 ], [ -96.032131168084703, 29.674860157504426 ], [ -96.032177168442459, 29.674841156922568 ], [ -96.033698168494453, 29.674210157244222 ], [ -96.034674169191874, 29.673617156396613 ], [ -96.034793169508376, 29.673545156983181 ], [ -96.035122169317845, 29.673344156576533 ], [ -96.035136169128322, 29.67333415683914 ], [ -96.03617216924026, 29.672587156256409 ], [ -96.037123169758573, 29.671725156661072 ], [ -96.037144169691118, 29.671706156232975 ], [ -96.037314169826772, 29.67155115629668 ], [ -96.037364169237421, 29.671506156271597 ], [ -96.037394169810085, 29.671472156147487 ], [ -96.037433169670209, 29.67142815641154 ], [ -96.038000169407994, 29.670787156513303 ], [ -96.038902169656083, 29.669719156286579 ], [ -96.040538169880165, 29.66829015535383 ], [ -96.040678169924846, 29.668168155667356 ], [ -96.041179169930246, 29.667824155587375 ], [ -96.041229170524616, 29.667790155274464 ], [ -96.041238170016044, 29.667784155493518 ], [ -96.041628170550666, 29.667517155168103 ], [ -96.041850170910649, 29.667365155155128 ], [ -96.042057170535713, 29.667133155020068 ], [ -96.042878170682684, 29.666520154774396 ], [ -96.043381170666436, 29.66614515509449 ], [ -96.043400170548324, 29.666131154754911 ], [ -96.043413171283092, 29.666121154674297 ], [ -96.043436170562728, 29.666104155051418 ], [ -96.043847170898516, 29.665798154801401 ], [ -96.044281170768599, 29.665605154903172 ], [ -96.044433171321074, 29.665580154452666 ], [ -96.044664170981818, 29.665541154644167 ], [ -96.044718171600451, 29.665529155090148 ], [ -96.044732171420833, 29.665529154546192 ], [ -96.044829170779536, 29.665513154537521 ], [ -96.045000171563288, 29.665484154893029 ], [ -96.045273171165832, 29.665438154917396 ], [ -96.045388171605055, 29.66544915512511 ], [ -96.045414171526673, 29.665452154943392 ], [ -96.046091171112138, 29.665518154987552 ], [ -96.046302171646246, 29.665617154781678 ], [ -96.04654617215229, 29.665732155036284 ], [ -96.046992171729457, 29.665998155266461 ], [ -96.047604172147288, 29.666199154734628 ], [ -96.048672172343785, 29.666563155208532 ], [ -96.050300173178002, 29.667812155592301 ], [ -96.051181173016559, 29.668671155481491 ], [ -96.051785173098807, 29.669567155115217 ], [ -96.052309173210872, 29.670345155822137 ], [ -96.052459173850423, 29.670568155324933 ], [ -96.053032173635714, 29.671177156007641 ], [ -96.053890173930554, 29.671866155651788 ], [ -96.053975173755575, 29.67193415590528 ], [ -96.054570174384182, 29.672015156247205 ], [ -96.054813173980406, 29.672044155452543 ], [ -96.054977174447686, 29.672069155737915 ], [ -96.055094174485603, 29.672099155537758 ], [ -96.055377174278462, 29.672146155568178 ], [ -96.055622173954049, 29.672163155605293 ], [ -96.055746174072425, 29.672163155843194 ], [ -96.055952174573648, 29.672175155929853 ], [ -96.056115174534852, 29.672195156211391 ], [ -96.056661174458, 29.672352155624061 ], [ -96.056968174549695, 29.672455156195813 ], [ -96.05740817503667, 29.672649156042059 ], [ -96.057479174473258, 29.67268715549244 ], [ -96.057545174487771, 29.672730156109878 ], [ -96.058016175101457, 29.673131156310962 ], [ -96.058494174719925, 29.67357615559931 ], [ -96.058733174904376, 29.673821156183756 ], [ -96.058912174762938, 29.674019156403826 ], [ -96.059158175617014, 29.67430715610773 ], [ -96.059472175807841, 29.674728156548191 ], [ -96.059530175564149, 29.674823156117036 ], [ -96.059685175480041, 29.675117156304839 ], [ -96.059905175127597, 29.675659156757806 ], [ -96.060008175604949, 29.675968156522458 ], [ -96.060066175966227, 29.67625015609995 ], [ -96.06007317521231, 29.676322156248244 ], [ -96.060019175918057, 29.676532156153193 ], [ -96.059993175500111, 29.676711156741288 ], [ -96.059985175460824, 29.677035157033277 ], [ -96.05994617516761, 29.677643156603736 ], [ -96.059920175569744, 29.677859156650033 ], [ -96.059879175359029, 29.678035157202821 ], [ -96.059815175478406, 29.678571156550777 ], [ -96.059793176107789, 29.678678157476241 ], [ -96.059572175815532, 29.679333157148918 ], [ -96.059541175169528, 29.679399157582644 ], [ -96.059397175183975, 29.67965815685805 ], [ -96.058984175888483, 29.680281157028368 ], [ -96.058890175040546, 29.680399157691237 ], [ -96.058258175350204, 29.681065158001431 ], [ -96.058039175748689, 29.681280157517044 ], [ -96.057720174945175, 29.681562157750943 ], [ -96.057229175123382, 29.681948157378237 ], [ -96.057068174665702, 29.682059158117177 ], [ -96.056770174585978, 29.682252158285955 ], [ -96.056563175051821, 29.682371158286539 ], [ -96.056490174946632, 29.682403157749924 ], [ -96.056264175067426, 29.682492158095606 ], [ -96.05608617503448, 29.682582158299983 ], [ -96.055861175127006, 29.682673158322366 ], [ -96.05566617488428, 29.682733157536603 ], [ -96.055547174509854, 29.682760157619494 ], [ -96.055238174838891, 29.682857157968492 ], [ -96.055181174466426, 29.682883158338417 ], [ -96.055051175038386, 29.682929158177071 ], [ -96.054667174292106, 29.683059157914915 ], [ -96.053893174258249, 29.683300158244158 ], [ -96.053767174529497, 29.683331158050553 ], [ -96.052181174197599, 29.683458158332325 ], [ -96.049958172986933, 29.68397215850591 ], [ -96.047869172849943, 29.684591158883805 ], [ -96.047853172377572, 29.684588158993634 ], [ -96.047049172910448, 29.684951158909929 ], [ -96.046610172256294, 29.685154158532754 ], [ -96.045093171852798, 29.685812158841763 ], [ -96.04308217149692, 29.686656158888781 ], [ -96.042743171962144, 29.68679015928786 ], [ -96.041453171065811, 29.687275159562116 ], [ -96.041109171072819, 29.687397158991288 ], [ -96.040597171472157, 29.687540159124961 ], [ -96.039957171180987, 29.687688159332474 ], [ -96.039635171192018, 29.687753159557303 ], [ -96.038665170517476, 29.687931159907777 ], [ -96.037446170677356, 29.688130159684203 ], [ -96.037282170757138, 29.688146159813027 ], [ -96.037034170306413, 29.688155159395336 ], [ -96.036952170494175, 29.688167159289215 ], [ -96.036512170137641, 29.688265159755677 ], [ -96.036396170525762, 29.688272159542663 ], [ -96.036232169923537, 29.688291159321029 ], [ -96.036152169741371, 29.688306159703021 ], [ -96.03591217023731, 29.68836115981815 ], [ -96.035830169985232, 29.688363159791152 ], [ -96.035417170228214, 29.688349159892613 ], [ -96.035293170276063, 29.68835216026384 ], [ -96.035128170049759, 29.68836815999234 ], [ -96.035048169843691, 29.688381159692177 ], [ -96.034968170149725, 29.688399159423206 ], [ -96.03484516947492, 29.688414160007508 ], [ -96.034516169589153, 29.688442159510632 ], [ -96.034310169628725, 29.68844215983777 ], [ -96.034103169943336, 29.688434160160771 ], [ -96.033483169128786, 29.688450160209037 ], [ -96.032905169587607, 29.68847616034596 ], [ -96.032494168863963, 29.68851016029733 ], [ -96.032164169453623, 29.688529159746707 ], [ -96.031215169351142, 29.688473159805422 ], [ -96.030971168702777, 29.688436160392939 ], [ -96.029852168372273, 29.688178160202714 ], [ -96.029036167795695, 29.687919160095063 ], [ -96.028476168373885, 29.687687160198458 ], [ -96.028331167591674, 29.687618159942673 ], [ -96.027811167735834, 29.687323160264345 ], [ -96.027218168135164, 29.686995160179794 ], [ -96.025995167057985, 29.686193159841224 ], [ -96.025868166852206, 29.686101159999179 ], [ -96.025600167160022, 29.685876159695066 ], [ -96.025502166783426, 29.685760159725561 ], [ -96.025366166925068, 29.685624160018996 ], [ -96.025019166973109, 29.685316159429643 ], [ -96.024720167339268, 29.685066159448652 ], [ -96.024619166658525, 29.684952159829734 ], [ -96.024564166949801, 29.684898159793239 ], [ -96.024387166606274, 29.684747159286012 ], [ -96.024305167150146, 29.684666159801246 ], [ -96.024017167194472, 29.684409159661481 ], [ -96.023841166595844, 29.684126159404638 ], [ -96.023738166365177, 29.683930159243232 ], [ -96.023636167172427, 29.68365515912302 ], [ -96.023552166217897, 29.683451159451931 ], [ -96.023528166405796, 29.683370158893936 ], [ -96.022748166252541, 29.680217158145457 ], [ -96.022410165993733, 29.679653158355414 ], [ -96.021903165852137, 29.679202158289339 ], [ -96.021452165613482, 29.678902158296037 ], [ -96.020795166125609, 29.678695158346361 ], [ -96.020344165505463, 29.67865715857091 ], [ -96.019656165377725, 29.678709158519641 ], [ -96.01886016511105, 29.678902158491468 ], [ -96.018071164692344, 29.679202158329606 ], [ -96.017320164956146, 29.679559158223306 ], [ -96.016644164908257, 29.680066159163669 ], [ -96.016018165069696, 29.680779158614222 ], [ -96.015623164865744, 29.681333158942699 ], [ -96.015564164760917, 29.681428159008934 ], [ -96.015437164299541, 29.681694159397072 ], [ -96.015374164378727, 29.681865159249092 ], [ -96.015300164236493, 29.682034159328737 ], [ -96.015182164206507, 29.682264159023021 ], [ -96.015077164311762, 29.682536159497879 ], [ -96.015038164155783, 29.68267715928264 ], [ -96.01490916471549, 29.683460159690558 ], [ -96.014866164353947, 29.683819159218235 ], [ -96.014830164375113, 29.684178159527409 ], [ -96.014779164734435, 29.685185159770271 ], [ -96.014764164554023, 29.685953160037936 ], [ -96.01475016471781, 29.685933159848918 ], [ -96.014081164462226, 29.688748160381131 ], [ -96.014006164076051, 29.691115161529517 ], [ -96.01453116476246, 29.693594161953474 ], [ -96.015202165506551, 29.694938162155065 ], [ -96.01521616550427, 29.695029161557741 ], [ -96.015219165561675, 29.695046161906202 ], [ -96.015444164665738, 29.695410162266406 ], [ -96.015475165388978, 29.695456161620225 ], [ -96.016221165115567, 29.696640161929487 ], [ -96.018235166293977, 29.69887116215563 ], [ -96.019301166258913, 29.699752162591139 ], [ -96.019704166334748, 29.699587163061928 ], [ -96.020222166981029, 29.699516162759711 ], [ -96.020696166332883, 29.699471162150356 ], [ -96.022897167540506, 29.699265162128537 ], [ -96.024857167332613, 29.699035162223961 ], [ -96.025517168128076, 29.698945162139371 ], [ -96.026117168464836, 29.698885162646427 ], [ -96.026677168295876, 29.698855161805643 ], [ -96.027257168811389, 29.698885161987121 ], [ -96.029087168419608, 29.699055161966299 ], [ -96.029167168541449, 29.699075162442501 ], [ -96.029267169000917, 29.699135162038903 ], [ -96.029527169419552, 29.699375161957338 ], [ -96.032997170398772, 29.702835162434159 ], [ -96.035327170675131, 29.705195162881608 ], [ -96.037097170755288, 29.707005163737566 ], [ -96.037147171164406, 29.707025163467318 ], [ -96.037178171054819, 29.70702516328987 ], [ -96.037247170994746, 29.70702516342643 ], [ -96.037287171018178, 29.707005163590551 ], [ -96.039507171588653, 29.704985163285627 ], [ -96.039627171648178, 29.704855163003906 ], [ -96.040497171487843, 29.705535163097888 ], [ -96.040607171493264, 29.705595162698 ], [ -96.040697172403142, 29.705625163240271 ], [ -96.040867172130007, 29.705635162992003 ], [ -96.040977171816834, 29.705735163480139 ], [ -96.041827172075173, 29.706405162861177 ], [ -96.043187172558262, 29.70742516308577 ], [ -96.044958173697168, 29.708734163573009 ], [ -96.045267173521282, 29.70896416411394 ], [ -96.046007173549526, 29.709515163682024 ], [ -96.047007174233087, 29.710245163893095 ], [ -96.047437173625738, 29.710465164203569 ], [ -96.047927174520112, 29.710625163919008 ], [ -96.048227173864746, 29.710705163944308 ], [ -96.048537174439133, 29.710755164210521 ], [ -96.048937174683502, 29.710775163676804 ], [ -96.049527174295108, 29.710715163763545 ], [ -96.049677174639086, 29.710685163562811 ], [ -96.049747174019913, 29.710673163825078 ], [ -96.050147174943476, 29.710605163826596 ], [ -96.050677175167678, 29.71055516425228 ], [ -96.051167175077495, 29.710575164028899 ], [ -96.051767175477877, 29.710735164162564 ], [ -96.05223717528925, 29.710925163570771 ], [ -96.052647175563749, 29.71117516346645 ], [ -96.054127175567743, 29.712485164504471 ], [ -96.05577717571532, 29.713935163882915 ], [ -96.057461177110966, 29.715375164435788 ], [ -96.057497176873284, 29.715405164687244 ], [ -96.059458176807254, 29.717113164538915 ], [ -96.060707177590686, 29.718195164833457 ], [ -96.061777178006551, 29.719165165112397 ], [ -96.062507177931309, 29.719785164948398 ], [ -96.062927178036745, 29.720115165652683 ], [ -96.063817178461022, 29.720935165632561 ], [ -96.064732179251777, 29.721749165508168 ], [ -96.065237179256826, 29.722205165994509 ], [ -96.066387179784002, 29.723215166055049 ], [ -96.068517179712543, 29.725115166465436 ], [ -96.069257179712963, 29.725745165892771 ], [ -96.070256180499271, 29.726624166439418 ], [ -96.0708371805094, 29.727135166073232 ], [ -96.070946180988258, 29.727221166277719 ], [ -96.071827180918149, 29.727915166163246 ], [ -96.072257180742668, 29.728205166555199 ], [ -96.073197181324431, 29.728065166465946 ], [ -96.076017181640978, 29.72768516638731 ], [ -96.078727182812685, 29.727315166275538 ], [ -96.080397183456057, 29.727067165978937 ], [ -96.0814171838025, 29.726915166292468 ], [ -96.08282718409771, 29.726715165883306 ], [ -96.084087184373317, 29.726555166268042 ], [ -96.086027183964376, 29.72628516535509 ], [ -96.08721618515564, 29.726113165328591 ], [ -96.087687184764121, 29.726045165968625 ], [ -96.088597184669396, 29.725925165314141 ], [ -96.092897186025894, 29.725315164966592 ], [ -96.093447186593579, 29.725255165762928 ], [ -96.094887186330908, 29.725055164985775 ], [ -96.095538186509543, 29.724961165504801 ], [ -96.0958621867142, 29.724919164967215 ], [ -96.096597187217981, 29.724825165498029 ], [ -96.097237187400808, 29.724735164863809 ], [ -96.099237188102634, 29.724465164987812 ], [ -96.099587188219473, 29.724425165229096 ], [ -96.102187187999633, 29.724045164421188 ], [ -96.103027188477625, 29.72394516482478 ], [ -96.106107188940811, 29.723525164211335 ], [ -96.108997190559435, 29.723105164506407 ], [ -96.109236190265889, 29.72307616459117 ], [ -96.109327190252742, 29.7230651645175 ], [ -96.109487189836372, 29.723015164527908 ], [ -96.109577190177703, 29.722975164714498 ], [ -96.10964718995416, 29.722935164711014 ], [ -96.109687190378068, 29.722885164634171 ], [ -96.109727190544334, 29.722815163870109 ], [ -96.109733190533532, 29.722795164495963 ], [ -96.110227190298289, 29.721295164224049 ], [ -96.110364190838354, 29.720822163737544 ], [ -96.110507189903984, 29.720355163341722 ], [ -96.110857190224991, 29.719095163309877 ], [ -96.110877190296421, 29.719065163591761 ], [ -96.110917190324855, 29.719045163709424 ], [ -96.110967190415437, 29.719055163460411 ], [ -96.113424191372189, 29.719904163708936 ], [ -96.114987191632508, 29.720455163654375 ], [ -96.115477192113289, 29.720595163677508 ], [ -96.116437192238934, 29.720935163776446 ], [ -96.117817192664546, 29.721405163553598 ], [ -96.119197192980749, 29.721885163991246 ], [ -96.120567193391963, 29.722335163679702 ], [ -96.121967192982837, 29.722815164078323 ], [ -96.122687193566705, 29.723075164236953 ], [ -96.122847193287782, 29.723105163525378 ], [ -96.122927193865678, 29.723125163942498 ], [ -96.12300719333173, 29.723115163820268 ], [ -96.123041193644113, 29.723105164029494 ], [ -96.123077193697455, 29.723095163855621 ], [ -96.12314719385931, 29.723045164286344 ], [ -96.123397193322248, 29.722835164160092 ], [ -96.123807194219637, 29.72243516406278 ], [ -96.123897194172116, 29.722325163885177 ], [ -96.123967193719963, 29.722195163237121 ], [ -96.12454719355847, 29.720975163578721 ], [ -96.125007193863311, 29.719965163252514 ], [ -96.12571719409415, 29.718455162738245 ], [ -96.126407194792662, 29.717005162562689 ], [ -96.126817194403998, 29.716075162316496 ], [ -96.127257194661183, 29.715145162463518 ], [ -96.127977194659195, 29.71357516163744 ], [ -96.128107194258547, 29.713295161993269 ], [ -96.128567195058409, 29.712345161651115 ], [ -96.12898719506525, 29.711395161488824 ], [ -96.12971719490416, 29.709835161133292 ], [ -96.129767194996646, 29.709695161220694 ], [ -96.12977719430846, 29.709615160779094 ], [ -96.129757194337003, 29.709545160859182 ], [ -96.129727194987552, 29.709485161333141 ], [ -96.129677194846877, 29.709445160740987 ], [ -96.129427194499954, 29.709315161149707 ], [ -96.128497194615946, 29.708905161001859 ], [ -96.127197193884129, 29.708295160584306 ], [ -96.126593193467386, 29.708021160484151 ], [ -96.126337193554335, 29.707905160529631 ], [ -96.126407193464104, 29.707775161101186 ], [ -96.127797194466922, 29.705475160093048 ], [ -96.128077194386549, 29.705025160131786 ], [ -96.128147194545363, 29.704945160155656 ], [ -96.128317194242356, 29.70480515959493 ], [ -96.129047194198208, 29.704225159579458 ], [ -96.129063194760647, 29.704213159727878 ], [ -96.129837194197705, 29.703615159306985 ], [ -96.130940195242843, 29.702652159683652 ], [ -96.131947195218288, 29.701765159575835 ], [ -96.133737195166574, 29.700175159155684 ], [ -96.133967195901491, 29.700015158814491 ], [ -96.134138195884532, 29.699929159225444 ], [ -96.134267195732448, 29.699885159198924 ], [ -96.134467195480411, 29.699855159078929 ], [ -96.134650195289538, 29.700592159359093 ], [ -96.134777195310008, 29.701105158624863 ], [ -96.134872196232024, 29.701438159277505 ], [ -96.134877195991834, 29.701455159546075 ], [ -96.1350671963406, 29.702265158825167 ], [ -96.135257195707041, 29.702985159536272 ], [ -96.136037196611966, 29.705985159776194 ], [ -96.136461196594411, 29.707689160022078 ], [ -96.136487196102081, 29.707795160319833 ], [ -96.137227196564851, 29.71070516080481 ], [ -96.137997196890382, 29.710565161225045 ], [ -96.138347196636047, 29.710515160828422 ], [ -96.139267197572892, 29.710345160538044 ], [ -96.139507197525717, 29.710305160461978 ], [ -96.140556197514925, 29.710107160283894 ], [ -96.143487197810174, 29.709555160051917 ], [ -96.143977198745645, 29.709475160085358 ], [ -96.144008198018895, 29.709469160520683 ], [ -96.144617198551771, 29.709345160153028 ], [ -96.146717198817441, 29.708965159863865 ], [ -96.148857199811957, 29.708555160331599 ], [ -96.149557199900116, 29.708445160289173 ], [ -96.149836199658935, 29.708391159793532 ], [ -96.150437199546062, 29.708275159591544 ], [ -96.15076720039427, 29.708205160345887 ], [ -96.151857200787177, 29.708015160244127 ], [ -96.151997200806107, 29.707985160257138 ], [ -96.153897200542971, 29.707645159544583 ], [ -96.154717200783082, 29.707505159676558 ], [ -96.1573272014015, 29.707015159853277 ], [ -96.157497202181219, 29.706975159307635 ], [ -96.158687201867224, 29.706765158990379 ], [ -96.158877201838337, 29.706725159487323 ], [ -96.161377203146372, 29.706265159116452 ], [ -96.16140720227672, 29.706265159528773 ], [ -96.161457202611373, 29.706285159275971 ], [ -96.161487202832049, 29.706305159331944 ], [ -96.162607203058769, 29.707225158995183 ], [ -96.163917203401823, 29.70832515945958 ], [ -96.165127203945502, 29.709335159651999 ], [ -96.165417203798725, 29.709565160019093 ], [ -96.165877203678704, 29.709985160183912 ], [ -96.1660772045351, 29.710135159689891 ], [ -96.166257204032661, 29.710285159909134 ], [ -96.166507204653357, 29.710485159579203 ], [ -96.167927204085601, 29.711665159965236 ], [ -96.168157204893006, 29.711865160365747 ], [ -96.168627204253951, 29.712245160461254 ], [ -96.169707205565857, 29.713155160126917 ], [ -96.170047204989558, 29.71345516053292 ], [ -96.171327205779363, 29.712275160326708 ], [ -96.172822206121666, 29.710930160178915 ], [ -96.174815205938287, 29.709148159177232 ], [ -96.17756720648309, 29.706665158676298 ], [ -96.178587207232255, 29.705735158346023 ], [ -96.179717207500232, 29.704725157982402 ], [ -96.179816207468647, 29.70463415791496 ], [ -96.182657207708459, 29.702045157850399 ], [ -96.18496120862325, 29.699972157283124 ], [ -96.186447208448314, 29.698625156699002 ], [ -96.187497208471697, 29.69768515631765 ], [ -96.187667208725614, 29.697545156173579 ], [ -96.188047208677361, 29.69719515633783 ], [ -96.188070208718713, 29.697175156828887 ], [ -96.189061209550843, 29.696281156497442 ], [ -96.190837209611942, 29.694655155573798 ], [ -96.191077209838866, 29.694445156188216 ], [ -96.191537209883279, 29.694015155707731 ], [ -96.192267210022962, 29.693355155303571 ], [ -96.192917210242925, 29.692745155401724 ], [ -96.193777210317791, 29.691975154821222 ], [ -96.193937209793987, 29.691795154771658 ], [ -96.195393210856338, 29.689860154615133 ], [ -96.195777210342087, 29.68933515481336 ], [ -96.195788211035563, 29.689318154477693 ], [ -96.196247210693286, 29.688645154713434 ], [ -96.196407210834423, 29.688495154763977 ], [ -96.198697211757718, 29.686555154115094 ], [ -96.199537210968458, 29.685815154073641 ], [ -96.200137211052535, 29.68532515384732 ], [ -96.200477211748478, 29.685015153260604 ], [ -96.200647211923012, 29.684875153240995 ], [ -96.200927211306336, 29.68459515379838 ], [ -96.201207212036309, 29.684325153605048 ], [ -96.202457212321676, 29.682975152871528 ], [ -96.204177212411508, 29.681045152532587 ], [ -96.204477212558132, 29.680695152383713 ], [ -96.205387212739538, 29.679665152301403 ], [ -96.205597212736677, 29.679395152348715 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1441, "Tract": "48201233001", "Area_SqMi": 0.36784137578828036, "total_2009": 459, "total_2010": 482, "total_2011": 476, "total_2012": 474, "total_2013": 520, "total_2014": 669, "total_2015": 660, "total_2016": 661, "total_2017": 649, "total_2018": 599, "total_2019": 604, "total_2020": 482, "age1": 141, "age2": 220, "age3": 110, "earn1": 128, "earn2": 207, "earn3": 136, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 0, "naics_s07": 68, "naics_s08": 19, "naics_s09": 0, "naics_s10": 6, "naics_s11": 11, "naics_s12": 9, "naics_s13": 0, "naics_s14": 81, "naics_s15": 16, "naics_s16": 168, "naics_s17": 0, "naics_s18": 37, "naics_s19": 51, "naics_s20": 0, "race1": 358, "race2": 77, "race3": 7, "race4": 22, "race5": 2, "race6": 5, "ethnicity1": 267, "ethnicity2": 204, "edu1": 71, "edu2": 91, "edu3": 104, "edu4": 64, "Shape_Length": 15528.699847114944, "Shape_Area": 10254787.990170611, "total_2021": 465, "total_2022": 471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.1899979584134, 29.792907209713292 ], [ -95.189898958664955, 29.792849209763361 ], [ -95.189782958327442, 29.792780209977678 ], [ -95.189513958025543, 29.79265420949833 ], [ -95.18927695877764, 29.792543209465926 ], [ -95.188770958633569, 29.792339209756573 ], [ -95.18853695803088, 29.792254209323133 ], [ -95.188354958544238, 29.792196209399741 ], [ -95.188042957866884, 29.792114209326822 ], [ -95.187838958427122, 29.791958209323496 ], [ -95.18748595834046, 29.791891210127538 ], [ -95.186960957675055, 29.791838209631713 ], [ -95.186820958035852, 29.791825209687143 ], [ -95.18678995806971, 29.791824209497065 ], [ -95.185662957692486, 29.79181821021135 ], [ -95.184869956767614, 29.791835209674691 ], [ -95.184375956744418, 29.791851209381182 ], [ -95.183682956562222, 29.791863209509579 ], [ -95.182700956504448, 29.791891209597498 ], [ -95.18256695688946, 29.79189420951516 ], [ -95.182401957066944, 29.791897210088994 ], [ -95.18225495685752, 29.791899210221082 ], [ -95.181863956498887, 29.791911209800272 ], [ -95.181291956477025, 29.791924209806005 ], [ -95.178450955225514, 29.791979210205454 ], [ -95.178459956005568, 29.792102210396962 ], [ -95.178457955741962, 29.792134210239581 ], [ -95.178455955825754, 29.792155209724033 ], [ -95.17846095578922, 29.792367210005899 ], [ -95.17848095577088, 29.792628209809589 ], [ -95.178496955902887, 29.792713210660395 ], [ -95.178507955840161, 29.792805210245497 ], [ -95.17854595587157, 29.792989210620565 ], [ -95.178556955882797, 29.793081210194263 ], [ -95.178585955987984, 29.793171210729785 ], [ -95.178677956110889, 29.793524210498109 ], [ -95.178708955369075, 29.79361221071952 ], [ -95.178851955414288, 29.793970210092183 ], [ -95.178901955991051, 29.794056210829766 ], [ -95.178930955532849, 29.794137210363573 ], [ -95.179012956310629, 29.794294210193513 ], [ -95.179110955633547, 29.7944512101529 ], [ -95.179197955522753, 29.794609210818038 ], [ -95.179448956055296, 29.794974211075747 ], [ -95.179499955570421, 29.795054210847795 ], [ -95.179726956589477, 29.795328210856923 ], [ -95.179789956445703, 29.795385210400124 ], [ -95.179902956605659, 29.795517210736008 ], [ -95.179966955846439, 29.795582210449137 ], [ -95.180020955717694, 29.795645210920167 ], [ -95.180083956128414, 29.795706211109721 ], [ -95.180154956068222, 29.795761210580498 ], [ -95.180203956174054, 29.79581421095731 ], [ -95.180311956018556, 29.795891211088353 ], [ -95.18017995630791, 29.796004210587011 ], [ -95.180151956274514, 29.796045210543873 ], [ -95.180096955963634, 29.796096211192584 ], [ -95.179919956062875, 29.796286210486951 ], [ -95.179813956367951, 29.796422211307227 ], [ -95.179754956169788, 29.796485211205908 ], [ -95.17972095650012, 29.796534211356448 ], [ -95.179656956018434, 29.796628211081782 ], [ -95.179549956272098, 29.796767210865763 ], [ -95.179449955774274, 29.796911210646257 ], [ -95.179326956048115, 29.797132210790657 ], [ -95.179281955916196, 29.797197210940329 ], [ -95.179209956041674, 29.797336211514022 ], [ -95.179182956132308, 29.797411211235122 ], [ -95.179149955577941, 29.797480211142975 ], [ -95.17910695645223, 29.797537211642361 ], [ -95.179078955631965, 29.797602211544383 ], [ -95.179055956171922, 29.797680211217905 ], [ -95.17899495639486, 29.797810211142817 ], [ -95.178941956307568, 29.79793821121028 ], [ -95.178887956065211, 29.798096211183449 ], [ -95.178728955617203, 29.79856621175529 ], [ -95.178711955817562, 29.798614211336531 ], [ -95.178676956446537, 29.798676211448054 ], [ -95.178604956201923, 29.79885121149848 ], [ -95.178516956082746, 29.799024211739599 ], [ -95.178364955653308, 29.799271211648037 ], [ -95.178314955818053, 29.799360211738875 ], [ -95.1782299559558, 29.799497211759547 ], [ -95.1782129556277, 29.799569211438268 ], [ -95.17818195637139, 29.799643211367155 ], [ -95.17814395568054, 29.799715211673309 ], [ -95.178114956155866, 29.799872211703089 ], [ -95.178098955896886, 29.800026211666001 ], [ -95.178097956163896, 29.80018421131723 ], [ -95.178106955690467, 29.800272211580623 ], [ -95.178111956393195, 29.800591211529518 ], [ -95.17810995557106, 29.800750211692947 ], [ -95.178117955501676, 29.801061211597698 ], [ -95.178119955932388, 29.801379212392103 ], [ -95.17814095629079, 29.802150212126364 ], [ -95.178141955939793, 29.802622212447918 ], [ -95.178148956403334, 29.802979212483216 ], [ -95.178151955879926, 29.803026212357885 ], [ -95.178149956109152, 29.803101212353944 ], [ -95.178159955815161, 29.803385212346537 ], [ -95.178160956270602, 29.803555212523776 ], [ -95.178162956461961, 29.803889212569445 ], [ -95.178170956002887, 29.803998212662552 ], [ -95.17817595587627, 29.804201212277629 ], [ -95.178176955961035, 29.804597212924474 ], [ -95.17818895600449, 29.804898212629183 ], [ -95.178190955995575, 29.805196212777712 ], [ -95.178183956206468, 29.805288212486772 ], [ -95.17818795659251, 29.805382212958893 ], [ -95.178194956161249, 29.80559521276032 ], [ -95.178200956332319, 29.805820212556565 ], [ -95.178210956526101, 29.806169213165305 ], [ -95.178199956399155, 29.806227213184911 ], [ -95.178642956339715, 29.806216213121299 ], [ -95.179079956634396, 29.806206213197601 ], [ -95.179221956511384, 29.806204213364374 ], [ -95.179353956305732, 29.805883212457303 ], [ -95.180116956316965, 29.804921212479172 ], [ -95.180513956736107, 29.80447021243382 ], [ -95.181610957008701, 29.803134212204615 ], [ -95.182205956929906, 29.802401212152514 ], [ -95.18341395731791, 29.800913211644552 ], [ -95.184233957039922, 29.799928211470672 ], [ -95.184649957211846, 29.799444211391627 ], [ -95.185076957444025, 29.798913211622136 ], [ -95.185790957410418, 29.798028210772813 ], [ -95.185904957816589, 29.79788821119045 ], [ -95.1863409576207, 29.79735621065516 ], [ -95.188652958702406, 29.794540210514075 ], [ -95.188804957907109, 29.794336210529515 ], [ -95.1899979584134, 29.792907209713292 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1442, "Tract": "48201233002", "Area_SqMi": 0.66633222427275574, "total_2009": 591, "total_2010": 613, "total_2011": 655, "total_2012": 658, "total_2013": 658, "total_2014": 753, "total_2015": 775, "total_2016": 765, "total_2017": 788, "total_2018": 789, "total_2019": 729, "total_2020": 731, "age1": 305, "age2": 312, "age3": 151, "earn1": 178, "earn2": 456, "earn3": 134, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 532, "naics_s08": 30, "naics_s09": 0, "naics_s10": 25, "naics_s11": 5, "naics_s12": 10, "naics_s13": 0, "naics_s14": 0, "naics_s15": 2, "naics_s16": 21, "naics_s17": 0, "naics_s18": 136, "naics_s19": 7, "naics_s20": 0, "race1": 521, "race2": 177, "race3": 6, "race4": 54, "race5": 0, "race6": 10, "ethnicity1": 439, "ethnicity2": 329, "edu1": 127, "edu2": 135, "edu3": 131, "edu4": 70, "Shape_Length": 17650.638907968685, "Shape_Area": 18576201.973724872, "total_2021": 761, "total_2022": 768 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.178728955617203, 29.79856621175529 ], [ -95.178887956065211, 29.798096211183449 ], [ -95.177727956054909, 29.797756211568675 ], [ -95.175237955130129, 29.797103211528512 ], [ -95.174833954955488, 29.796975211493212 ], [ -95.171833953633623, 29.796150211349147 ], [ -95.17174095361824, 29.796130211535242 ], [ -95.170553953424303, 29.795875211031053 ], [ -95.16979695309449, 29.795809210845231 ], [ -95.168422952764573, 29.795831211490825 ], [ -95.16742295252277, 29.79584021080683 ], [ -95.166064953021859, 29.795853211535224 ], [ -95.164394952538629, 29.795935211454054 ], [ -95.163389951906638, 29.796040211268441 ], [ -95.163135952216308, 29.796067211162839 ], [ -95.162914951935377, 29.796090211115189 ], [ -95.162974951666342, 29.796419211879517 ], [ -95.163150952456263, 29.797750211524932 ], [ -95.163203952189889, 29.79807921200798 ], [ -95.163222951517071, 29.79823121213294 ], [ -95.163241951829662, 29.800015212419343 ], [ -95.163272952535493, 29.801710212546453 ], [ -95.163287952140323, 29.803462212872493 ], [ -95.163287952332439, 29.804971213292216 ], [ -95.163302952681406, 29.806596213927897 ], [ -95.163302952895648, 29.808559213952304 ], [ -95.163300952386066, 29.808744213899455 ], [ -95.163415952454955, 29.808718214206969 ], [ -95.163515952823474, 29.808692213932773 ], [ -95.163895952362154, 29.808594214131752 ], [ -95.164556952752662, 29.808426213532105 ], [ -95.16493195266159, 29.808340213689934 ], [ -95.165391952684686, 29.808240214122215 ], [ -95.165868953509388, 29.80812421405696 ], [ -95.16643895337954, 29.807980214203599 ], [ -95.167349953631089, 29.807753213346764 ], [ -95.168313953317082, 29.807513213946802 ], [ -95.168565953470704, 29.80745221377266 ], [ -95.169299953761538, 29.807271213164274 ], [ -95.16953595442348, 29.807203213909165 ], [ -95.171880954608142, 29.806613213139681 ], [ -95.172292955111189, 29.806535213098606 ], [ -95.172888955263204, 29.806442212846346 ], [ -95.17333695516632, 29.806387212787687 ], [ -95.173564954527038, 29.80636321330325 ], [ -95.173902955029405, 29.806348213448103 ], [ -95.17448195548269, 29.806335213171494 ], [ -95.175174955217173, 29.806332213510906 ], [ -95.175840955100441, 29.806307212996614 ], [ -95.176478955283343, 29.806258212924991 ], [ -95.177139956379179, 29.806248213451077 ], [ -95.177755956160979, 29.806230213311821 ], [ -95.178199956399155, 29.806227213184911 ], [ -95.178210956526101, 29.806169213165305 ], [ -95.178200956332319, 29.805820212556565 ], [ -95.178194956161249, 29.80559521276032 ], [ -95.17818795659251, 29.805382212958893 ], [ -95.178183956206468, 29.805288212486772 ], [ -95.178190955995575, 29.805196212777712 ], [ -95.17818895600449, 29.804898212629183 ], [ -95.178176955961035, 29.804597212924474 ], [ -95.17817595587627, 29.804201212277629 ], [ -95.178170956002887, 29.803998212662552 ], [ -95.178162956461961, 29.803889212569445 ], [ -95.178160956270602, 29.803555212523776 ], [ -95.178159955815161, 29.803385212346537 ], [ -95.178149956109152, 29.803101212353944 ], [ -95.178151955879926, 29.803026212357885 ], [ -95.178148956403334, 29.802979212483216 ], [ -95.178141955939793, 29.802622212447918 ], [ -95.17814095629079, 29.802150212126364 ], [ -95.178119955932388, 29.801379212392103 ], [ -95.178117955501676, 29.801061211597698 ], [ -95.17810995557106, 29.800750211692947 ], [ -95.178111956393195, 29.800591211529518 ], [ -95.178106955690467, 29.800272211580623 ], [ -95.178097956163896, 29.80018421131723 ], [ -95.178098955896886, 29.800026211666001 ], [ -95.178114956155866, 29.799872211703089 ], [ -95.17814395568054, 29.799715211673309 ], [ -95.17818195637139, 29.799643211367155 ], [ -95.1782129556277, 29.799569211438268 ], [ -95.1782299559558, 29.799497211759547 ], [ -95.178314955818053, 29.799360211738875 ], [ -95.178364955653308, 29.799271211648037 ], [ -95.178516956082746, 29.799024211739599 ], [ -95.178604956201923, 29.79885121149848 ], [ -95.178676956446537, 29.798676211448054 ], [ -95.178711955817562, 29.798614211336531 ], [ -95.178728955617203, 29.79856621175529 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1443, "Tract": "48201323801", "Area_SqMi": 0.51556616667327182, "total_2009": 8186, "total_2010": 8347, "total_2011": 8331, "total_2012": 7916, "total_2013": 8171, "total_2014": 8385, "total_2015": 8950, "total_2016": 9328, "total_2017": 9574, "total_2018": 9451, "total_2019": 9340, "total_2020": 9184, "age1": 1547, "age2": 5530, "age3": 2017, "earn1": 1296, "earn2": 2824, "earn3": 4974, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 0, "naics_s06": 7, "naics_s07": 173, "naics_s08": 3, "naics_s09": 0, "naics_s10": 9, "naics_s11": 0, "naics_s12": 23, "naics_s13": 0, "naics_s14": 56, "naics_s15": 8628, "naics_s16": 59, "naics_s17": 0, "naics_s18": 92, "naics_s19": 14, "naics_s20": 0, "race1": 7753, "race2": 845, "race3": 115, "race4": 240, "race5": 13, "race6": 128, "ethnicity1": 4237, "ethnicity2": 4857, "edu1": 1766, "edu2": 1785, "edu3": 2122, "edu4": 1874, "Shape_Length": 17799.907843693592, "Shape_Area": 14373102.326537717, "total_2021": 8881, "total_2022": 9094 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.193138954925885, 29.682036186802971 ], [ -95.193120954018909, 29.681197186911795 ], [ -95.193095954878956, 29.680061186696889 ], [ -95.193077954003599, 29.679301186021757 ], [ -95.193053954420378, 29.678735186347886 ], [ -95.193079954167587, 29.678536185886383 ], [ -95.193039954815333, 29.677752185880575 ], [ -95.193017953760005, 29.677010186060979 ], [ -95.193012954697437, 29.676011185619945 ], [ -95.192992953822355, 29.675195185932989 ], [ -95.193011954063934, 29.674405185228597 ], [ -95.193019953893128, 29.673632185027429 ], [ -95.192985954504351, 29.672917185112258 ], [ -95.192964954199553, 29.672151184794316 ], [ -95.192982954400478, 29.671348184610473 ], [ -95.192926953610993, 29.670554184307189 ], [ -95.192890953940633, 29.669344184319602 ], [ -95.19290195356173, 29.66915018410786 ], [ -95.192871953757859, 29.667917183870397 ], [ -95.192848953718197, 29.667007184062506 ], [ -95.192836954218834, 29.666530183819351 ], [ -95.192831954089016, 29.666318183833486 ], [ -95.192818953217341, 29.66584018368146 ], [ -95.192795953955667, 29.665013183350887 ], [ -95.19206095367862, 29.665030183746996 ], [ -95.191639953740363, 29.665034183625789 ], [ -95.191078953563846, 29.665039183585936 ], [ -95.190332952558734, 29.665045183964708 ], [ -95.18931095285383, 29.665055183685041 ], [ -95.188501953065796, 29.665061183216473 ], [ -95.188110951982225, 29.665063183459477 ], [ -95.187843952413786, 29.665065183358596 ], [ -95.187596952314223, 29.665070183374851 ], [ -95.186680952612022, 29.665076183878298 ], [ -95.186678952217179, 29.665222183895079 ], [ -95.186674952128556, 29.66559218378395 ], [ -95.186668952473312, 29.666041183622252 ], [ -95.18666495236522, 29.666607184149523 ], [ -95.186700951905067, 29.669385184607151 ], [ -95.186729952007326, 29.67011318492035 ], [ -95.186732951936676, 29.670279184609058 ], [ -95.186782952843529, 29.671238184760078 ], [ -95.186767952267274, 29.672163185018963 ], [ -95.186811952778868, 29.674503185208092 ], [ -95.186683952820985, 29.674925185645765 ], [ -95.186662952355462, 29.67494818578739 ], [ -95.186477952434373, 29.675163185445708 ], [ -95.185413952650322, 29.675726186278133 ], [ -95.184948952528117, 29.675919186069304 ], [ -95.184650952585798, 29.676050185742671 ], [ -95.184225952343525, 29.676238186258818 ], [ -95.183964951938151, 29.67641818583169 ], [ -95.183839951647755, 29.676711186640777 ], [ -95.183821952107039, 29.677061186499678 ], [ -95.183833951743992, 29.677383186511697 ], [ -95.183888951569884, 29.678792186707202 ], [ -95.18389495195413, 29.679080186584859 ], [ -95.183901952545597, 29.679346186488161 ], [ -95.183933952587068, 29.68074718661348 ], [ -95.183946952023348, 29.681288186723751 ], [ -95.183950952084146, 29.68149518689393 ], [ -95.183874951666979, 29.68182318740935 ], [ -95.183815952167393, 29.682124186996216 ], [ -95.18434095226138, 29.682131187246704 ], [ -95.184701952009874, 29.682134187304449 ], [ -95.184821952160988, 29.682132186867815 ], [ -95.18522695231799, 29.682119187242744 ], [ -95.185577952792954, 29.682109186874932 ], [ -95.186045952437581, 29.682094187260706 ], [ -95.186377953267609, 29.682084187005962 ], [ -95.187246952752631, 29.682099187476769 ], [ -95.188100953141671, 29.682094186777746 ], [ -95.18895095316438, 29.682073186843727 ], [ -95.189757953323308, 29.682062186854481 ], [ -95.190580954189898, 29.682064187019368 ], [ -95.191437953774084, 29.682055187206519 ], [ -95.191842954047686, 29.682055186771279 ], [ -95.192283954462496, 29.682057186619335 ], [ -95.193138954925885, 29.682036186802971 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1444, "Tract": "48201323802", "Area_SqMi": 0.93116075720593849, "total_2009": 553, "total_2010": 509, "total_2011": 487, "total_2012": 452, "total_2013": 479, "total_2014": 703, "total_2015": 803, "total_2016": 473, "total_2017": 455, "total_2018": 481, "total_2019": 503, "total_2020": 404, "age1": 117, "age2": 213, "age3": 76, "earn1": 99, "earn2": 177, "earn3": 130, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 50, "naics_s06": 38, "naics_s07": 75, "naics_s08": 3, "naics_s09": 0, "naics_s10": 47, "naics_s11": 6, "naics_s12": 14, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 22, "naics_s17": 3, "naics_s18": 101, "naics_s19": 28, "naics_s20": 0, "race1": 325, "race2": 42, "race3": 3, "race4": 26, "race5": 0, "race6": 10, "ethnicity1": 222, "ethnicity2": 184, "edu1": 70, "edu2": 90, "edu3": 74, "edu4": 55, "Shape_Length": 21031.791102438096, "Shape_Area": 25959168.213337958, "total_2021": 402, "total_2022": 406 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.186811952778868, 29.674503185208092 ], [ -95.186767952267274, 29.672163185018963 ], [ -95.186782952843529, 29.671238184760078 ], [ -95.186732951936676, 29.670279184609058 ], [ -95.186729952007326, 29.67011318492035 ], [ -95.186700951905067, 29.669385184607151 ], [ -95.18666495236522, 29.666607184149523 ], [ -95.186668952473312, 29.666041183622252 ], [ -95.186674952128556, 29.66559218378395 ], [ -95.186678952217179, 29.665222183895079 ], [ -95.186680952612022, 29.665076183878298 ], [ -95.18633895162921, 29.665088183274538 ], [ -95.186005952466033, 29.665100183707438 ], [ -95.184613951313366, 29.665119183573232 ], [ -95.18433295129573, 29.665123184123946 ], [ -95.183805951129528, 29.665132183958185 ], [ -95.183590951050732, 29.665136184087036 ], [ -95.183364951636861, 29.665142183973213 ], [ -95.183182951722145, 29.665145183450932 ], [ -95.182977951157682, 29.665148184022861 ], [ -95.182549950688554, 29.665157183471234 ], [ -95.18231695124858, 29.665163184179733 ], [ -95.18213895141308, 29.665166183478444 ], [ -95.181925951186926, 29.665170183811096 ], [ -95.181739950510803, 29.665175184133922 ], [ -95.180826950142134, 29.66519518376986 ], [ -95.180321950686789, 29.665205183973992 ], [ -95.179517949968769, 29.665221183966345 ], [ -95.179111950593963, 29.665230183791653 ], [ -95.178814949658829, 29.665235183906084 ], [ -95.178495949646432, 29.665240183639845 ], [ -95.178156949960311, 29.665248183743451 ], [ -95.177697949504349, 29.665255184008405 ], [ -95.177427950207658, 29.665260183822102 ], [ -95.177150949755614, 29.665266183793086 ], [ -95.176784949340046, 29.66527218432477 ], [ -95.175477949399607, 29.665296183694405 ], [ -95.175282949432869, 29.665299183791003 ], [ -95.174900949090841, 29.665308184026831 ], [ -95.174525949257301, 29.665310183902392 ], [ -95.174305948897214, 29.665311184430767 ], [ -95.174135949340723, 29.665311184391108 ], [ -95.17376294899789, 29.665315183773973 ], [ -95.173371949164448, 29.665317184383795 ], [ -95.172989948238438, 29.665319183843256 ], [ -95.172240948221599, 29.665324184415045 ], [ -95.172260948512886, 29.666339184485498 ], [ -95.172272948781824, 29.66695518476795 ], [ -95.172303948672237, 29.668519185339441 ], [ -95.172313948678834, 29.668783185176419 ], [ -95.172350948694685, 29.669696185364302 ], [ -95.172362948320085, 29.6702431852876 ], [ -95.172365949019522, 29.670348185349109 ], [ -95.172364948241977, 29.670666185472697 ], [ -95.172364948262427, 29.670819185801051 ], [ -95.172370948450265, 29.672143185257791 ], [ -95.172400948859575, 29.673493185889534 ], [ -95.172430948933339, 29.675008186248114 ], [ -95.172447949141173, 29.67587218673069 ], [ -95.172481949088734, 29.677155186502812 ], [ -95.172484948685451, 29.678285186915065 ], [ -95.172484949384099, 29.678440186519175 ], [ -95.172486948818928, 29.678912187135285 ], [ -95.172487949186134, 29.679112186830597 ], [ -95.172515949240434, 29.679570187225849 ], [ -95.17253394911215, 29.679876187198452 ], [ -95.172520949013418, 29.680616187803171 ], [ -95.17252694905747, 29.681390187681011 ], [ -95.1725279494528, 29.682251188096345 ], [ -95.173130949649916, 29.682246188084932 ], [ -95.174325950023189, 29.682235187652559 ], [ -95.174575950171757, 29.68223318810594 ], [ -95.175244950276578, 29.68223418802781 ], [ -95.175509949674662, 29.682225187537856 ], [ -95.176313949729249, 29.682203187491293 ], [ -95.176478950103473, 29.682202187210009 ], [ -95.177199950476165, 29.682199187320393 ], [ -95.1780389505588, 29.6821811877949 ], [ -95.178418950466778, 29.682179187245591 ], [ -95.178936950931856, 29.682178187612507 ], [ -95.179706950918629, 29.68217218719176 ], [ -95.180463951045496, 29.682168187472765 ], [ -95.180962951642798, 29.682162187500559 ], [ -95.182624951745055, 29.682142187262563 ], [ -95.183381952101897, 29.682131187537617 ], [ -95.183815952167393, 29.682124186996216 ], [ -95.183874951666979, 29.68182318740935 ], [ -95.183950952084146, 29.68149518689393 ], [ -95.183946952023348, 29.681288186723751 ], [ -95.183933952587068, 29.68074718661348 ], [ -95.183901952545597, 29.679346186488161 ], [ -95.18389495195413, 29.679080186584859 ], [ -95.183888951569884, 29.678792186707202 ], [ -95.183833951743992, 29.677383186511697 ], [ -95.183821952107039, 29.677061186499678 ], [ -95.183839951647755, 29.676711186640777 ], [ -95.183964951938151, 29.67641818583169 ], [ -95.184225952343525, 29.676238186258818 ], [ -95.184650952585798, 29.676050185742671 ], [ -95.184948952528117, 29.675919186069304 ], [ -95.185413952650322, 29.675726186278133 ], [ -95.186477952434373, 29.675163185445708 ], [ -95.186662952355462, 29.67494818578739 ], [ -95.186683952820985, 29.674925185645765 ], [ -95.186811952778868, 29.674503185208092 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1445, "Tract": "48015760202", "Area_SqMi": 31.002688093438987, "total_2009": 865, "total_2010": 3641, "total_2011": 2892, "total_2012": 1119, "total_2013": 1129, "total_2014": 1182, "total_2015": 1132, "total_2016": 1094, "total_2017": 1106, "total_2018": 1185, "total_2019": 1175, "total_2020": 1053, "age1": 192, "age2": 491, "age3": 292, "earn1": 165, "earn2": 265, "earn3": 545, "naics_s01": 13, "naics_s02": 3, "naics_s03": 0, "naics_s04": 94, "naics_s05": 198, "naics_s06": 122, "naics_s07": 177, "naics_s08": 2, "naics_s09": 0, "naics_s10": 66, "naics_s11": 17, "naics_s12": 22, "naics_s13": 0, "naics_s14": 6, "naics_s15": 11, "naics_s16": 43, "naics_s17": 14, "naics_s18": 172, "naics_s19": 15, "naics_s20": 0, "race1": 800, "race2": 94, "race3": 9, "race4": 54, "race5": 3, "race6": 15, "ethnicity1": 719, "ethnicity2": 256, "edu1": 159, "edu2": 244, "edu3": 221, "edu4": 159, "Shape_Length": 177278.62910622955, "Shape_Area": 864301882.41410124, "total_2021": 987, "total_2022": 975 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.158227205443211, 29.78400517498622 ], [ -96.157987204976038, 29.783065175165213 ], [ -96.157727205070003, 29.782015174349237 ], [ -96.157447204733316, 29.780945174285701 ], [ -96.157187204976964, 29.779905173887403 ], [ -96.156927205046202, 29.778895174153586 ], [ -96.156807204240053, 29.778345174272335 ], [ -96.15667720485547, 29.777866174253319 ], [ -96.156247204221714, 29.776205173413235 ], [ -96.156177204541649, 29.775915173381975 ], [ -96.156108203933243, 29.775652173653253 ], [ -96.156067204157978, 29.775495173051528 ], [ -96.155807203948513, 29.774385172952233 ], [ -96.155577203995122, 29.773485173020845 ], [ -96.155257204224469, 29.772195172823043 ], [ -96.155177203677781, 29.771835172263419 ], [ -96.154987203561575, 29.771065172946624 ], [ -96.154787203628544, 29.770335172467345 ], [ -96.154567204286749, 29.769465172192394 ], [ -96.15446720363515, 29.769035171848962 ], [ -96.153947203633393, 29.767405171916433 ], [ -96.153677203067588, 29.766635171700827 ], [ -96.153507203461956, 29.766205171715292 ], [ -96.153245202896102, 29.765546171379764 ], [ -96.153217203732396, 29.765475171884095 ], [ -96.15314720357047, 29.765325171717905 ], [ -96.152987202865688, 29.764945171322307 ], [ -96.152847202691916, 29.764625171274904 ], [ -96.152747203567486, 29.764405171126334 ], [ -96.152587203366892, 29.764065171531694 ], [ -96.152549203323787, 29.7639841708666 ], [ -96.15226720293235, 29.763375171017859 ], [ -96.150237201840824, 29.758985170196645 ], [ -96.150203202189758, 29.758910170530385 ], [ -96.149936201653787, 29.758316169681144 ], [ -96.149657201715442, 29.7577251700334 ], [ -96.14903720197195, 29.756345170183014 ], [ -96.148707201260947, 29.755545169273468 ], [ -96.148567201849801, 29.755155169887065 ], [ -96.148117201213353, 29.75377516961796 ], [ -96.147753201479105, 29.75244316873081 ], [ -96.147117201405365, 29.749985168420395 ], [ -96.147107200606911, 29.749885168469799 ], [ -96.146977200830392, 29.749325168255787 ], [ -96.146897201215282, 29.749005168325873 ], [ -96.146890201424796, 29.748978168011757 ], [ -96.146637200512885, 29.748035168331121 ], [ -96.146157200857303, 29.74616516756776 ], [ -96.145707200706497, 29.744305167192294 ], [ -96.145351199782567, 29.742922166805887 ], [ -96.14483719974578, 29.740925166429093 ], [ -96.14386019950399, 29.736996166041688 ], [ -96.143837199450161, 29.73690516604864 ], [ -96.143557199416506, 29.735865165794433 ], [ -96.14334719905483, 29.734945165311618 ], [ -96.142510198721155, 29.731639165353641 ], [ -96.141927198996115, 29.729315164764095 ], [ -96.14129419840846, 29.726914163618279 ], [ -96.140947197974782, 29.725515164196384 ], [ -96.140217197655389, 29.722625163454399 ], [ -96.139997197896662, 29.721755162667989 ], [ -96.13976719752533, 29.720805162996299 ], [ -96.139517197537558, 29.719855162419041 ], [ -96.139474198156066, 29.719680162348158 ], [ -96.138367197086197, 29.715225161906925 ], [ -96.138117197413138, 29.71429516184531 ], [ -96.137599196959059, 29.712205161609983 ], [ -96.137227196564851, 29.71070516080481 ], [ -96.136487196102081, 29.707795160319833 ], [ -96.136461196594411, 29.707689160022078 ], [ -96.136037196611966, 29.705985159776194 ], [ -96.135257195707041, 29.702985159536272 ], [ -96.1350671963406, 29.702265158825167 ], [ -96.134877195991834, 29.701455159546075 ], [ -96.134872196232024, 29.701438159277505 ], [ -96.134777195310008, 29.701105158624863 ], [ -96.134650195289538, 29.700592159359093 ], [ -96.134467195480411, 29.699855159078929 ], [ -96.134267195732448, 29.699885159198924 ], [ -96.134138195884532, 29.699929159225444 ], [ -96.133967195901491, 29.700015158814491 ], [ -96.133737195166574, 29.700175159155684 ], [ -96.131947195218288, 29.701765159575835 ], [ -96.130940195242843, 29.702652159683652 ], [ -96.129837194197705, 29.703615159306985 ], [ -96.129063194760647, 29.704213159727878 ], [ -96.129047194198208, 29.704225159579458 ], [ -96.128317194242356, 29.70480515959493 ], [ -96.128147194545363, 29.704945160155656 ], [ -96.128077194386549, 29.705025160131786 ], [ -96.127797194466922, 29.705475160093048 ], [ -96.126407193464104, 29.707775161101186 ], [ -96.126337193554335, 29.707905160529631 ], [ -96.126593193467386, 29.708021160484151 ], [ -96.127197193884129, 29.708295160584306 ], [ -96.128497194615946, 29.708905161001859 ], [ -96.129427194499954, 29.709315161149707 ], [ -96.129677194846877, 29.709445160740987 ], [ -96.129727194987552, 29.709485161333141 ], [ -96.129757194337003, 29.709545160859182 ], [ -96.12977719430846, 29.709615160779094 ], [ -96.129767194996646, 29.709695161220694 ], [ -96.12971719490416, 29.709835161133292 ], [ -96.12898719506525, 29.711395161488824 ], [ -96.128567195058409, 29.712345161651115 ], [ -96.128107194258547, 29.713295161993269 ], [ -96.127977194659195, 29.71357516163744 ], [ -96.127257194661183, 29.715145162463518 ], [ -96.126817194403998, 29.716075162316496 ], [ -96.126407194792662, 29.717005162562689 ], [ -96.12571719409415, 29.718455162738245 ], [ -96.125007193863311, 29.719965163252514 ], [ -96.12454719355847, 29.720975163578721 ], [ -96.123967193719963, 29.722195163237121 ], [ -96.123897194172116, 29.722325163885177 ], [ -96.123807194219637, 29.72243516406278 ], [ -96.123397193322248, 29.722835164160092 ], [ -96.12314719385931, 29.723045164286344 ], [ -96.123077193697455, 29.723095163855621 ], [ -96.123041193644113, 29.723105164029494 ], [ -96.12300719333173, 29.723115163820268 ], [ -96.122927193865678, 29.723125163942498 ], [ -96.122847193287782, 29.723105163525378 ], [ -96.122687193566705, 29.723075164236953 ], [ -96.121967192982837, 29.722815164078323 ], [ -96.120567193391963, 29.722335163679702 ], [ -96.119197192980749, 29.721885163991246 ], [ -96.117817192664546, 29.721405163553598 ], [ -96.116437192238934, 29.720935163776446 ], [ -96.115477192113289, 29.720595163677508 ], [ -96.114987191632508, 29.720455163654375 ], [ -96.113424191372189, 29.719904163708936 ], [ -96.110967190415437, 29.719055163460411 ], [ -96.110917190324855, 29.719045163709424 ], [ -96.110877190296421, 29.719065163591761 ], [ -96.110857190224991, 29.719095163309877 ], [ -96.110507189903984, 29.720355163341722 ], [ -96.110364190838354, 29.720822163737544 ], [ -96.110227190298289, 29.721295164224049 ], [ -96.109733190533532, 29.722795164495963 ], [ -96.109727190544334, 29.722815163870109 ], [ -96.109687190378068, 29.722885164634171 ], [ -96.10964718995416, 29.722935164711014 ], [ -96.109577190177703, 29.722975164714498 ], [ -96.109487189836372, 29.723015164527908 ], [ -96.109327190252742, 29.7230651645175 ], [ -96.109236190265889, 29.72307616459117 ], [ -96.108997190559435, 29.723105164506407 ], [ -96.106107188940811, 29.723525164211335 ], [ -96.103027188477625, 29.72394516482478 ], [ -96.102187187999633, 29.724045164421188 ], [ -96.099587188219473, 29.724425165229096 ], [ -96.099237188102634, 29.724465164987812 ], [ -96.097237187400808, 29.724735164863809 ], [ -96.096597187217981, 29.724825165498029 ], [ -96.0958621867142, 29.724919164967215 ], [ -96.095538186509543, 29.724961165504801 ], [ -96.094887186330908, 29.725055164985775 ], [ -96.093447186593579, 29.725255165762928 ], [ -96.092897186025894, 29.725315164966592 ], [ -96.088597184669396, 29.725925165314141 ], [ -96.087687184764121, 29.726045165968625 ], [ -96.08721618515564, 29.726113165328591 ], [ -96.086027183964376, 29.72628516535509 ], [ -96.084087184373317, 29.726555166268042 ], [ -96.08282718409771, 29.726715165883306 ], [ -96.0814171838025, 29.726915166292468 ], [ -96.080397183456057, 29.727067165978937 ], [ -96.078727182812685, 29.727315166275538 ], [ -96.076017181640978, 29.72768516638731 ], [ -96.073197181324431, 29.728065166465946 ], [ -96.072257180742668, 29.728205166555199 ], [ -96.071827180918149, 29.727915166163246 ], [ -96.070946180988258, 29.727221166277719 ], [ -96.0708371805094, 29.727135166073232 ], [ -96.070256180499271, 29.726624166439418 ], [ -96.069257179712963, 29.725745165892771 ], [ -96.068517179712543, 29.725115166465436 ], [ -96.066387179784002, 29.723215166055049 ], [ -96.065237179256826, 29.722205165994509 ], [ -96.064732179251777, 29.721749165508168 ], [ -96.063817178461022, 29.720935165632561 ], [ -96.062927178036745, 29.720115165652683 ], [ -96.062507177931309, 29.719785164948398 ], [ -96.061777178006551, 29.719165165112397 ], [ -96.060707177590686, 29.718195164833457 ], [ -96.059458176807254, 29.717113164538915 ], [ -96.057497176873284, 29.715405164687244 ], [ -96.057461177110966, 29.715375164435788 ], [ -96.05577717571532, 29.713935163882915 ], [ -96.054127175567743, 29.712485164504471 ], [ -96.052647175563749, 29.71117516346645 ], [ -96.05223717528925, 29.710925163570771 ], [ -96.051767175477877, 29.710735164162564 ], [ -96.051167175077495, 29.710575164028899 ], [ -96.050677175167678, 29.71055516425228 ], [ -96.050147174943476, 29.710605163826596 ], [ -96.049747174019913, 29.710673163825078 ], [ -96.049677174639086, 29.710685163562811 ], [ -96.049527174295108, 29.710715163763545 ], [ -96.048937174683502, 29.710775163676804 ], [ -96.048537174439133, 29.710755164210521 ], [ -96.048227173864746, 29.710705163944308 ], [ -96.047927174520112, 29.710625163919008 ], [ -96.047437173625738, 29.710465164203569 ], [ -96.047007174233087, 29.710245163893095 ], [ -96.046007173549526, 29.709515163682024 ], [ -96.045267173521282, 29.70896416411394 ], [ -96.044958173697168, 29.708734163573009 ], [ -96.043187172558262, 29.70742516308577 ], [ -96.041827172075173, 29.706405162861177 ], [ -96.040977171816834, 29.705735163480139 ], [ -96.040867172130007, 29.705635162992003 ], [ -96.040697172403142, 29.705625163240271 ], [ -96.040607171493264, 29.705595162698 ], [ -96.040497171487843, 29.705535163097888 ], [ -96.039627171648178, 29.704855163003906 ], [ -96.039507171588653, 29.704985163285627 ], [ -96.037287171018178, 29.707005163590551 ], [ -96.037247170994746, 29.70702516342643 ], [ -96.037178171054819, 29.70702516328987 ], [ -96.037147171164406, 29.707025163467318 ], [ -96.037097170755288, 29.707005163737566 ], [ -96.035327170675131, 29.705195162881608 ], [ -96.032997170398772, 29.702835162434159 ], [ -96.029527169419552, 29.699375161957338 ], [ -96.029267169000917, 29.699135162038903 ], [ -96.029167168541449, 29.699075162442501 ], [ -96.029087168419608, 29.699055161966299 ], [ -96.027257168811389, 29.698885161987121 ], [ -96.026677168295876, 29.698855161805643 ], [ -96.026117168464836, 29.698885162646427 ], [ -96.025517168128076, 29.698945162139371 ], [ -96.024857167332613, 29.699035162223961 ], [ -96.022897167540506, 29.699265162128537 ], [ -96.020696166332883, 29.699471162150356 ], [ -96.020222166981029, 29.699516162759711 ], [ -96.019704166334748, 29.699587163061928 ], [ -96.019301166258913, 29.699752162591139 ], [ -96.020136167026124, 29.70017516268382 ], [ -96.021279167345256, 29.700950163246873 ], [ -96.022367166960976, 29.702087162749446 ], [ -96.022646166974468, 29.702864162868785 ], [ -96.022882167375016, 29.703642163049476 ], [ -96.022845167756003, 29.704457163568929 ], [ -96.022646166964606, 29.705015163567925 ], [ -96.022222167820345, 29.70545616334897 ], [ -96.021579167427348, 29.705631163383433 ], [ -96.019857166794679, 29.705293163924278 ], [ -96.015713165383602, 29.703461163775518 ], [ -96.014200165265905, 29.702943163126662 ], [ -96.012646165145284, 29.70266416358238 ], [ -96.011690164802516, 29.702585163240748 ], [ -96.00758616392261, 29.702943164143132 ], [ -96.006670163040411, 29.703341163640463 ], [ -96.005993162752304, 29.703860164235 ], [ -96.005515162658924, 29.704537163831535 ], [ -96.004997163103681, 29.705732164339199 ], [ -96.004787162821444, 29.706585164654662 ], [ -96.004687163389548, 29.706771164966703 ], [ -96.004532163360182, 29.708233164670769 ], [ -96.004581162901459, 29.708588164678687 ], [ -96.004884162875612, 29.709621164989098 ], [ -96.004974162816836, 29.709803165647301 ], [ -96.005139162823752, 29.710136164843505 ], [ -96.005155162677468, 29.710169165655795 ], [ -96.005213162998842, 29.710316164926319 ], [ -96.005834162926064, 29.711867165325746 ], [ -96.006170163056524, 29.713392166331239 ], [ -96.006505163291251, 29.714870166174197 ], [ -96.007116164351686, 29.716682166648216 ], [ -96.007667163920715, 29.717684167049306 ], [ -96.00835716451931, 29.718337166769228 ], [ -96.009736164616143, 29.719165166824286 ], [ -96.01096616516989, 29.719631166573283 ], [ -96.01116116498693, 29.719707167289251 ], [ -96.011176165384057, 29.719715167224948 ], [ -96.01118816547482, 29.719719166961735 ], [ -96.011245165246095, 29.719736167240455 ], [ -96.011280165300661, 29.719746166655007 ], [ -96.011570165595003, 29.719835167306705 ], [ -96.011612164786044, 29.719848166670324 ], [ -96.012849165898629, 29.719933166593528 ], [ -96.013988165432579, 29.719887166915306 ], [ -96.015973166217989, 29.719616167195461 ], [ -96.016490166401724, 29.719467167199401 ], [ -96.016635166552746, 29.719425166994121 ], [ -96.022418167810287, 29.717758166652999 ], [ -96.022470167671528, 29.717744166268847 ], [ -96.022525168195017, 29.717720166593956 ], [ -96.023392167887792, 29.717516166410288 ], [ -96.023551167729963, 29.717481165820772 ], [ -96.024379168836049, 29.717281166444714 ], [ -96.024729168782343, 29.717180165705987 ], [ -96.025009168293138, 29.717127165763166 ], [ -96.026018168851735, 29.716981165727343 ], [ -96.026626168736286, 29.716917166182373 ], [ -96.026831168859388, 29.716905165845439 ], [ -96.02748516953632, 29.716892165776045 ], [ -96.027730168989464, 29.716897165529318 ], [ -96.028749169231148, 29.716970165472656 ], [ -96.029075169612057, 29.7169871662209 ], [ -96.029886170268597, 29.717070165997896 ], [ -96.030047170133315, 29.717095165521858 ], [ -96.030292169761367, 29.717109166057721 ], [ -96.030374169525004, 29.717107166257485 ], [ -96.030738169741156, 29.7170621655942 ], [ -96.030942170066297, 29.717047165670262 ], [ -96.031186169907883, 29.717068165923816 ], [ -96.031346169922898, 29.717095166101547 ], [ -96.031581170162355, 29.717157165911498 ], [ -96.031925170260635, 29.717271165710251 ], [ -96.032073169981345, 29.717328165547443 ], [ -96.032395170729515, 29.717483166108416 ], [ -96.032426170037724, 29.717505166184583 ], [ -96.032511169957075, 29.717583166156864 ], [ -96.032616170241766, 29.717691166176426 ], [ -96.032881170243343, 29.718006165509333 ], [ -96.032949170381357, 29.718094165940698 ], [ -96.033008170471632, 29.718187165573489 ], [ -96.033043170802472, 29.718250165914561 ], [ -96.033138170984429, 29.718409166309947 ], [ -96.033439170425325, 29.719618166263821 ], [ -96.033261170631633, 29.721548166805764 ], [ -96.032638170604628, 29.72439816688501 ], [ -96.032331171255024, 29.726195167251078 ], [ -96.032376170733926, 29.726590167478726 ], [ -96.032727171053807, 29.727600168250657 ], [ -96.032721171392311, 29.727626168125433 ], [ -96.032724171236225, 29.727778168321894 ], [ -96.032718171439996, 29.727949167796996 ], [ -96.032990171276651, 29.729153168111054 ], [ -96.033036170705671, 29.729311168390776 ], [ -96.033077171562724, 29.7294431679748 ], [ -96.033282171392884, 29.730101168204023 ], [ -96.033838171007318, 29.730983168597916 ], [ -96.034398171352322, 29.731869169089503 ], [ -96.036268172335454, 29.732823168389842 ], [ -96.036307172128531, 29.732865168375742 ], [ -96.036326172026094, 29.732886169036195 ], [ -96.036414171661534, 29.732969169047102 ], [ -96.036590172345527, 29.733062168821213 ], [ -96.0371511726362, 29.73364416933644 ], [ -96.037195172848058, 29.734177169046575 ], [ -96.037802172251773, 29.735617169600157 ], [ -96.038460172786699, 29.736188169391799 ], [ -96.038869172765317, 29.736653169854758 ], [ -96.039329173532479, 29.736938169682883 ], [ -96.039635173230849, 29.737238169483714 ], [ -96.03985117334544, 29.737457169310929 ], [ -96.039936173703182, 29.737715169856923 ], [ -96.040021173432692, 29.737974169404083 ], [ -96.040080173486103, 29.738155169459986 ], [ -96.039996172977183, 29.738880170360687 ], [ -96.039699173118976, 29.739727169798044 ], [ -96.039612173333026, 29.739777169846967 ], [ -96.038596172825038, 29.740360170337066 ], [ -96.037269173187951, 29.741052170081645 ], [ -96.036299172185679, 29.741787170527342 ], [ -96.034780171901829, 29.742941171098991 ], [ -96.033405172041853, 29.743960170974283 ], [ -96.032068171717683, 29.744981171163143 ], [ -96.031022170989544, 29.746038171603953 ], [ -96.030459171171984, 29.747121171580545 ], [ -96.029950171454232, 29.748289171925656 ], [ -96.029584171458566, 29.750222172865769 ], [ -96.029384171300393, 29.751705172808148 ], [ -96.029266171366018, 29.752590172891541 ], [ -96.029603171513315, 29.754671173789809 ], [ -96.030808172024635, 29.757609174123345 ], [ -96.030859171930217, 29.757736173622877 ], [ -96.031082171546558, 29.758292174214908 ], [ -96.03174517201451, 29.759929174695483 ], [ -96.03450017342935, 29.766734175974058 ], [ -96.034553173105479, 29.766877176150725 ], [ -96.034605172729783, 29.767019175837703 ], [ -96.034614172876658, 29.767045176225501 ], [ -96.035463173499394, 29.769440175886295 ], [ -96.035491173192938, 29.769489176582475 ], [ -96.035762173473287, 29.7702621766047 ], [ -96.036032173444596, 29.77103417626887 ], [ -96.03606517357467, 29.77112917686172 ], [ -96.036097173331711, 29.771225176970745 ], [ -96.036267173696743, 29.771185176841382 ], [ -96.036532173873695, 29.771132176171974 ], [ -96.037027174351962, 29.771025176590953 ], [ -96.03717717410764, 29.770985176287027 ], [ -96.038287174243607, 29.770725176708346 ], [ -96.038867174185697, 29.770595176230938 ], [ -96.040459174751248, 29.770216175977364 ], [ -96.040717175136336, 29.770155175987529 ], [ -96.041287174534276, 29.770045176088093 ], [ -96.041957175452794, 29.769955175925524 ], [ -96.042317175631197, 29.769915175719539 ], [ -96.042637174907881, 29.7698851762575 ], [ -96.043337175329981, 29.769855176262567 ], [ -96.043637176045337, 29.769855176056797 ], [ -96.044037175930541, 29.769855175917844 ], [ -96.044747175471983, 29.769905176159885 ], [ -96.045457175656978, 29.769975176031227 ], [ -96.046197175963925, 29.770075175945529 ], [ -96.048429176802998, 29.77034817639025 ], [ -96.050494177728382, 29.770601175659703 ], [ -96.055667178594206, 29.77123517622228 ], [ -96.058377179784713, 29.771555176374456 ], [ -96.059247180070656, 29.771675175950186 ], [ -96.062517180075488, 29.772065175864633 ], [ -96.063647180298361, 29.772195176051827 ], [ -96.064247180642482, 29.772285176194302 ], [ -96.066717182097321, 29.772585175458815 ], [ -96.06822718251432, 29.772705176059205 ], [ -96.072697183572714, 29.77300517564543 ], [ -96.073547183271302, 29.773095176104103 ], [ -96.074387183983021, 29.773175175977254 ], [ -96.075857183546034, 29.773356175311093 ], [ -96.077637184009504, 29.773575175577832 ], [ -96.079117185115308, 29.773805175520984 ], [ -96.080697185031866, 29.774075175694929 ], [ -96.08214318579914, 29.774349175695527 ], [ -96.082387185499442, 29.774395175221489 ], [ -96.083927185765191, 29.774665175889474 ], [ -96.085427186562114, 29.774885175266796 ], [ -96.086177186726758, 29.774985175578255 ], [ -96.091277188319779, 29.775615175648078 ], [ -96.092807187930632, 29.775795175998596 ], [ -96.096127189666646, 29.77620517589957 ], [ -96.097857190181799, 29.776405175517201 ], [ -96.098727189865002, 29.776475175208638 ], [ -96.099317190380717, 29.776495175940397 ], [ -96.099413190232283, 29.776497175881662 ], [ -96.099727189808448, 29.776505175588298 ], [ -96.100127190271749, 29.776505175396263 ], [ -96.103358191010926, 29.776406175135651 ], [ -96.103397191370092, 29.776405175070987 ], [ -96.103537191299111, 29.776395175617882 ], [ -96.106266191995076, 29.776311175191672 ], [ -96.109077192692411, 29.776225175076927 ], [ -96.109087192382503, 29.776405174833382 ], [ -96.109087192956579, 29.776915174906311 ], [ -96.109027192334324, 29.777265175593442 ], [ -96.108967192830136, 29.77747517547056 ], [ -96.108907192838359, 29.777615175364978 ], [ -96.108757192573066, 29.777925175134808 ], [ -96.10868719204403, 29.778055175170216 ], [ -96.108594192214824, 29.778235175872688 ], [ -96.10700719249904, 29.781325176290387 ], [ -96.106913192203791, 29.781508176673707 ], [ -96.106137192128926, 29.783025176666818 ], [ -96.10528719241394, 29.784705176788691 ], [ -96.104657191994377, 29.78590517713733 ], [ -96.104437192226499, 29.786365177282725 ], [ -96.103747192188649, 29.787755177667155 ], [ -96.103587191230133, 29.788065177349164 ], [ -96.103528191842571, 29.788173177383193 ], [ -96.103477191426506, 29.788265177409453 ], [ -96.102737191358329, 29.789735178108337 ], [ -96.102297191746345, 29.790575178262493 ], [ -96.101877191544602, 29.791415178805689 ], [ -96.101337191662708, 29.792475178729507 ], [ -96.101167191511948, 29.792835178847994 ], [ -96.101037190979213, 29.793165179128483 ], [ -96.101657191422163, 29.793075178597917 ], [ -96.104107191759539, 29.792665178296971 ], [ -96.104797192389725, 29.792555178862777 ], [ -96.105347192182975, 29.792465178402285 ], [ -96.106327192746434, 29.792295178535241 ], [ -96.107497192747473, 29.792115178818573 ], [ -96.107647193358289, 29.792105178360572 ], [ -96.107727192635167, 29.792115178519033 ], [ -96.107787193310514, 29.792135178249936 ], [ -96.109687193761332, 29.79276517863854 ], [ -96.111327193869457, 29.793335178151452 ], [ -96.114297194336203, 29.794375178765652 ], [ -96.116017195234946, 29.794945178288909 ], [ -96.117587195051826, 29.795445178769711 ], [ -96.117917195530609, 29.795545178555628 ], [ -96.118147195840763, 29.795605178954531 ], [ -96.118357195384831, 29.79563517873196 ], [ -96.118507196049052, 29.795555178346248 ], [ -96.118777195968647, 29.795355178926112 ], [ -96.1189671963173, 29.795195178539188 ], [ -96.120227195967828, 29.794165178733696 ], [ -96.122327196319958, 29.792435178112399 ], [ -96.123407197315714, 29.791565177462338 ], [ -96.124287196915589, 29.790845177831446 ], [ -96.1245071974746, 29.790695177621682 ], [ -96.124617197291371, 29.790645177884979 ], [ -96.124717196948012, 29.790615177686362 ], [ -96.124787197278138, 29.7906051776861 ], [ -96.125837197627973, 29.790585177842306 ], [ -96.12893719865599, 29.790495177390813 ], [ -96.130937198367249, 29.790465176898962 ], [ -96.133527199246373, 29.790405177111602 ], [ -96.135127199952507, 29.790355177137204 ], [ -96.135217199579131, 29.790335177117868 ], [ -96.135347199863347, 29.790285177358268 ], [ -96.135457200358573, 29.790225177341398 ], [ -96.135517199388062, 29.790165177344264 ], [ -96.135547200261541, 29.790105177087071 ], [ -96.135577199807386, 29.790005177325707 ], [ -96.135587199670553, 29.789305176858786 ], [ -96.135577199371568, 29.788995176362519 ], [ -96.135597199333674, 29.788515176728588 ], [ -96.135617199334803, 29.788465176274396 ], [ -96.135707199532078, 29.78841517702736 ], [ -96.135777199617507, 29.788395177102267 ], [ -96.140029200991435, 29.788335176588625 ], [ -96.140057200743144, 29.788324176913708 ], [ -96.140147200512757, 29.788325176482896 ], [ -96.140167201081923, 29.788317176590482 ], [ -96.140197200908361, 29.78830517627318 ], [ -96.140247201259015, 29.788285176946594 ], [ -96.140277200844253, 29.788245176720896 ], [ -96.140297200516912, 29.788165176696687 ], [ -96.140297201422072, 29.787965176748891 ], [ -96.140267201237862, 29.78599517612578 ], [ -96.140247200635727, 29.784345176091243 ], [ -96.140267200614986, 29.784275175652208 ], [ -96.140287200562909, 29.784235175959076 ], [ -96.14264720189324, 29.784195175772606 ], [ -96.143637201767604, 29.784185175519859 ], [ -96.14402720190769, 29.784175175714438 ], [ -96.144217202024066, 29.784205175904408 ], [ -96.144277201641373, 29.784225175520195 ], [ -96.144497202217735, 29.784375175665911 ], [ -96.144697201786983, 29.784535175905134 ], [ -96.144725202035943, 29.784559175825773 ], [ -96.144960202060147, 29.784757175249833 ], [ -96.145017202236204, 29.784805175501184 ], [ -96.14509720185859, 29.784835175270484 ], [ -96.145197201578156, 29.784865175867019 ], [ -96.145857202483214, 29.785025175552395 ], [ -96.14750720246812, 29.784815175128106 ], [ -96.148167203170118, 29.78473517585531 ], [ -96.149097203313531, 29.784606175308216 ], [ -96.149677203332715, 29.784525175604998 ], [ -96.150937203271411, 29.784345174939773 ], [ -96.152587203674898, 29.784126175031886 ], [ -96.153721204685382, 29.783959175192241 ], [ -96.15399720390873, 29.783923175135133 ], [ -96.15422720385908, 29.783895175044357 ], [ -96.154957204969676, 29.783795175513589 ], [ -96.155307204926302, 29.783735174885187 ], [ -96.155338204399825, 29.783731174992763 ], [ -96.155387204737607, 29.783725175422838 ], [ -96.155477204411667, 29.783725174749438 ], [ -96.155557204574322, 29.783745174950205 ], [ -96.155617204959015, 29.78376517488346 ], [ -96.155657204982944, 29.78379517508403 ], [ -96.155687205016989, 29.783855174920031 ], [ -96.155807204547344, 29.784265174861844 ], [ -96.15584720473197, 29.784335175267376 ], [ -96.155967204713832, 29.784425175589945 ], [ -96.156037204532964, 29.784435174876315 ], [ -96.156147204748834, 29.784435174812174 ], [ -96.156348204414257, 29.784393175458646 ], [ -96.157057205587819, 29.784247174708682 ], [ -96.158227205443211, 29.78400517498622 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1446, "Tract": "48015760301", "Area_SqMi": 40.958820185030419, "total_2009": 632, "total_2010": 347, "total_2011": 411, "total_2012": 1692, "total_2013": 1424, "total_2014": 1046, "total_2015": 1058, "total_2016": 1066, "total_2017": 935, "total_2018": 1108, "total_2019": 1061, "total_2020": 938, "age1": 180, "age2": 565, "age3": 224, "earn1": 151, "earn2": 294, "earn3": 524, "naics_s01": 9, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 33, "naics_s06": 11, "naics_s07": 56, "naics_s08": 0, "naics_s09": 4, "naics_s10": 5, "naics_s11": 32, "naics_s12": 30, "naics_s13": 0, "naics_s14": 28, "naics_s15": 525, "naics_s16": 169, "naics_s17": 0, "naics_s18": 13, "naics_s19": 32, "naics_s20": 0, "race1": 857, "race2": 78, "race3": 7, "race4": 22, "race5": 0, "race6": 5, "ethnicity1": 728, "ethnicity2": 241, "edu1": 136, "edu2": 201, "edu3": 264, "edu4": 188, "Shape_Length": 174354.69025851347, "Shape_Area": 1141861805.0372944, "total_2021": 975, "total_2022": 969 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.317769249157664, 29.863632185822365 ], [ -96.318077249570322, 29.863155185392962 ], [ -96.317427249587396, 29.862875185834696 ], [ -96.316857249221783, 29.862605185729542 ], [ -96.315367248315027, 29.861765185611382 ], [ -96.315016248183667, 29.861560184974429 ], [ -96.313797247902741, 29.860845185598667 ], [ -96.313197248463823, 29.860475185307909 ], [ -96.311497247887218, 29.859515185066613 ], [ -96.310933247808734, 29.85917718517484 ], [ -96.310447247366952, 29.858885184798119 ], [ -96.309027247169126, 29.858075185262962 ], [ -96.306140246119597, 29.856374184474888 ], [ -96.30605724578534, 29.856325184390244 ], [ -96.304467245823588, 29.855405184837846 ], [ -96.303607245466921, 29.854935184180285 ], [ -96.302917245114699, 29.854625183956578 ], [ -96.301397244835869, 29.853985184376818 ], [ -96.299687244561468, 29.853315184064805 ], [ -96.298657244262444, 29.852895183861126 ], [ -96.297700243640094, 29.852521183775554 ], [ -96.296809243238542, 29.852172184281287 ], [ -96.295177243067499, 29.851515184023405 ], [ -96.293540242619216, 29.85086718352099 ], [ -96.292927242248368, 29.850625183652546 ], [ -96.292610242494433, 29.850492183824585 ], [ -96.290557241680247, 29.849695184140703 ], [ -96.289977241585021, 29.849515183767274 ], [ -96.289427241353224, 29.849325183277795 ], [ -96.28755724094141, 29.84884518338551 ], [ -96.286817241359273, 29.848675183295072 ], [ -96.284897240770846, 29.848205183967547 ], [ -96.282927239470553, 29.84773518352387 ], [ -96.282371240190344, 29.847589183592909 ], [ -96.281796240020583, 29.847439183748214 ], [ -96.281667239318452, 29.847405183983131 ], [ -96.28107523924956, 29.847257183753488 ], [ -96.276867238650283, 29.846205183349436 ], [ -96.275687237840813, 29.845925183740128 ], [ -96.274037237410667, 29.845515183613944 ], [ -96.273477237347677, 29.845395183743928 ], [ -96.270927236892163, 29.844755183414151 ], [ -96.27034723653459, 29.84458518336406 ], [ -96.269467236371284, 29.844305183123961 ], [ -96.268887236232132, 29.844089182993049 ], [ -96.267937235637405, 29.843745183474756 ], [ -96.267194235771257, 29.843459183018176 ], [ -96.264887234694299, 29.842555182875358 ], [ -96.263167234926698, 29.841905182762382 ], [ -96.261737234637536, 29.84135518292722 ], [ -96.261347234348733, 29.841215183339191 ], [ -96.260230234277799, 29.840789183204528 ], [ -96.258857233699928, 29.84026518252513 ], [ -96.258297233274121, 29.840045182578489 ], [ -96.256858232662367, 29.839496182637752 ], [ -96.255318232643859, 29.838909183018544 ], [ -96.253917232537972, 29.83837518269155 ], [ -96.253617232402391, 29.83827518314175 ], [ -96.25290723210135, 29.838005183074667 ], [ -96.252007231727575, 29.837645182570565 ], [ -96.250547231366966, 29.83709518290393 ], [ -96.250047230714614, 29.836925182673873 ], [ -96.249216230586498, 29.836593182254482 ], [ -96.249197230595627, 29.836585182101217 ], [ -96.248557230317715, 29.836335182108684 ], [ -96.24750723012238, 29.835945182571265 ], [ -96.246937229792835, 29.835715182104622 ], [ -96.246127230389931, 29.835365181980659 ], [ -96.245857230044919, 29.835235182668875 ], [ -96.245447229288331, 29.835025182099514 ], [ -96.244247229476386, 29.834345182575188 ], [ -96.244017229053313, 29.834215181887615 ], [ -96.243370229362228, 29.833828182028014 ], [ -96.242497229019676, 29.833305182340123 ], [ -96.240987228499122, 29.832375182360025 ], [ -96.240467228587406, 29.832062181623094 ], [ -96.237488227484832, 29.830268181633365 ], [ -96.236481227733989, 29.829669181655227 ], [ -96.235112226784651, 29.828822181117914 ], [ -96.234252226148485, 29.828300181093191 ], [ -96.233247226706553, 29.827705181331201 ], [ -96.232701226042124, 29.827370180851933 ], [ -96.231834226008445, 29.826839181389357 ], [ -96.231697226394246, 29.826755180967602 ], [ -96.230927225749909, 29.826265181406832 ], [ -96.230557225551379, 29.825985180623544 ], [ -96.230167225805488, 29.825705180805734 ], [ -96.229999225374456, 29.825573181251666 ], [ -96.229607225042116, 29.82526518083078 ], [ -96.229207225244195, 29.824915180899183 ], [ -96.229057225004354, 29.824775180707295 ], [ -96.228437225389314, 29.824175180721582 ], [ -96.228125224959925, 29.823853180242139 ], [ -96.228107225271373, 29.823835180263796 ], [ -96.227427224441968, 29.8230451808681 ], [ -96.227087224258042, 29.822625180886885 ], [ -96.227065224110945, 29.822595180024727 ], [ -96.226847224749221, 29.822295180090048 ], [ -96.226507223868424, 29.82185518061042 ], [ -96.225677224567789, 29.820745180125101 ], [ -96.225467224080077, 29.820445179758842 ], [ -96.225087223912567, 29.819975179818712 ], [ -96.225013224318943, 29.819876179884432 ], [ -96.224861223939527, 29.819673179508527 ], [ -96.223667223284551, 29.81807517932852 ], [ -96.22301722323941, 29.817305179902071 ], [ -96.222177223489879, 29.816445179505248 ], [ -96.221757222992821, 29.81607517976979 ], [ -96.219907222342925, 29.814515179175956 ], [ -96.218667221876828, 29.813515179294612 ], [ -96.218467222424067, 29.813335179150972 ], [ -96.216969221312468, 29.812108178914723 ], [ -96.215897221008206, 29.811225178722854 ], [ -96.213647220446276, 29.809315178194694 ], [ -96.210897219914116, 29.807025178298183 ], [ -96.209167219012741, 29.805585177909695 ], [ -96.207937218644162, 29.80460517770997 ], [ -96.207017218245326, 29.803825177255963 ], [ -96.20645721849948, 29.803385176995182 ], [ -96.20605721814141, 29.803105177019869 ], [ -96.204627218342225, 29.802185176979233 ], [ -96.203108217964029, 29.801243177136897 ], [ -96.197822216239942, 29.797966176542644 ], [ -96.194467215028268, 29.795885176185163 ], [ -96.193607214584731, 29.79536517638866 ], [ -96.193427214307107, 29.795245175638385 ], [ -96.192977214342676, 29.794955175781965 ], [ -96.192387214218769, 29.794565175823678 ], [ -96.191937214323474, 29.794235176051583 ], [ -96.191227213944842, 29.793635176161256 ], [ -96.187457213567015, 29.790505175200401 ], [ -96.186507212761839, 29.789645175283084 ], [ -96.1851972125163, 29.788555175428609 ], [ -96.184577212483731, 29.788055174654584 ], [ -96.183697211701457, 29.787305174487432 ], [ -96.183297211593, 29.786995174422547 ], [ -96.182547211338644, 29.786385174971883 ], [ -96.181276210926796, 29.785326174418167 ], [ -96.18116721163085, 29.785235174140247 ], [ -96.180537210911766, 29.784695174039367 ], [ -96.180297211405588, 29.784535174025134 ], [ -96.179987211099672, 29.78435517464035 ], [ -96.179807210563226, 29.784275174398108 ], [ -96.179527210830926, 29.784175174395759 ], [ -96.179352210790483, 29.784138173998304 ], [ -96.179337210356977, 29.784135174349554 ], [ -96.179057210482654, 29.784095174361152 ], [ -96.178847210878445, 29.784075174234772 ], [ -96.177867210669561, 29.783995174071084 ], [ -96.176537209894207, 29.783905174040996 ], [ -96.175867209341192, 29.783855174027867 ], [ -96.17285920878868, 29.783695174886059 ], [ -96.172726208603905, 29.783406174045261 ], [ -96.172628209177901, 29.78319417438377 ], [ -96.172610209119554, 29.783154174513374 ], [ -96.171896208839271, 29.781555173729412 ], [ -96.171391208040049, 29.78041717384184 ], [ -96.17128620852192, 29.780186173953094 ], [ -96.17120520837446, 29.780003174019264 ], [ -96.171193208534334, 29.779977173614881 ], [ -96.170954208367391, 29.779443173294066 ], [ -96.16975520803129, 29.776756173354304 ], [ -96.169458207379279, 29.776026172603377 ], [ -96.16923320754357, 29.775473173116424 ], [ -96.168052207613457, 29.772474172142633 ], [ -96.168427206910721, 29.772145171891729 ], [ -96.169598208164587, 29.771084171784967 ], [ -96.168767207096181, 29.770365172244603 ], [ -96.167507206984283, 29.769315171781791 ], [ -96.166727207339221, 29.769360171787532 ], [ -96.165947206880901, 29.769405171764003 ], [ -96.162827206361186, 29.769525171910786 ], [ -96.161677205909029, 29.769565172240181 ], [ -96.159737205418992, 29.769615172340796 ], [ -96.159257204714422, 29.769656171650521 ], [ -96.158227205001737, 29.769745172537981 ], [ -96.15750720447295, 29.769825172536283 ], [ -96.15681720420919, 29.769925171774013 ], [ -96.155957204631491, 29.770105171913897 ], [ -96.154867204381745, 29.77032517261652 ], [ -96.154787203628544, 29.770335172467345 ], [ -96.154987203561575, 29.771065172946624 ], [ -96.155177203677781, 29.771835172263419 ], [ -96.155257204224469, 29.772195172823043 ], [ -96.155577203995122, 29.773485173020845 ], [ -96.155807203948513, 29.774385172952233 ], [ -96.156067204157978, 29.775495173051528 ], [ -96.156108203933243, 29.775652173653253 ], [ -96.156177204541649, 29.775915173381975 ], [ -96.156247204221714, 29.776205173413235 ], [ -96.15667720485547, 29.777866174253319 ], [ -96.156807204240053, 29.778345174272335 ], [ -96.156927205046202, 29.778895174153586 ], [ -96.157187204976964, 29.779905173887403 ], [ -96.157447204733316, 29.780945174285701 ], [ -96.157727205070003, 29.782015174349237 ], [ -96.157987204976038, 29.783065175165213 ], [ -96.158227205443211, 29.78400517498622 ], [ -96.158477205111382, 29.784965174931621 ], [ -96.158657205141211, 29.785685175342266 ], [ -96.158877205196802, 29.786535175929913 ], [ -96.159019205642451, 29.787024175226229 ], [ -96.159127205847113, 29.787395175918682 ], [ -96.159607206191993, 29.789435176300177 ], [ -96.159867206374528, 29.790455176161302 ], [ -96.160117206111096, 29.791415176013921 ], [ -96.160207206028957, 29.791805176622489 ], [ -96.160597206478101, 29.793345176987014 ], [ -96.160824206617406, 29.794267177132792 ], [ -96.161157206631827, 29.795625177088777 ], [ -96.161317206795601, 29.796365177015691 ], [ -96.161459207162537, 29.797166177245501 ], [ -96.161517206418594, 29.797495178058153 ], [ -96.1616672073784, 29.798635177977886 ], [ -96.161716206539808, 29.799077177961422 ], [ -96.161787206961236, 29.800065178215473 ], [ -96.161837206827585, 29.801185178002974 ], [ -96.16183920698532, 29.801739178461283 ], [ -96.161845207047762, 29.802813178749599 ], [ -96.161851207407366, 29.803965178773062 ], [ -96.161851207614419, 29.803986178726699 ], [ -96.161857207460955, 29.805075179414722 ], [ -96.161887206977752, 29.805725179112358 ], [ -96.161917207705585, 29.806155179809132 ], [ -96.162057207253923, 29.807555179672107 ], [ -96.162150207287212, 29.808217179654047 ], [ -96.162157207153939, 29.808265179367279 ], [ -96.162228207145048, 29.808665179717124 ], [ -96.162567207186271, 29.810325179748077 ], [ -96.163037207896068, 29.812265180970712 ], [ -96.163127207445811, 29.812665180630653 ], [ -96.163672207742508, 29.814819181086502 ], [ -96.164907208227973, 29.819705182093646 ], [ -96.165157208259131, 29.820655182132445 ], [ -96.165387208438005, 29.821595182341657 ], [ -96.165837208828606, 29.823306182812477 ], [ -96.165877208625787, 29.823455182959155 ], [ -96.166457209081486, 29.82579518323999 ], [ -96.166560209423551, 29.826198183148286 ], [ -96.166588209089426, 29.826306183320551 ], [ -96.167247209269746, 29.828885183993393 ], [ -96.167257209205076, 29.828951184095697 ], [ -96.167267209887484, 29.829015183416939 ], [ -96.167517210266666, 29.829935184309765 ], [ -96.168020209699208, 29.831959184506299 ], [ -96.168287209735539, 29.83303518483207 ], [ -96.168301209873889, 29.833086184310112 ], [ -96.168427209883234, 29.833535184540423 ], [ -96.168467210047538, 29.833725184627049 ], [ -96.168717210027438, 29.834675185227027 ], [ -96.168937210353249, 29.835635184693658 ], [ -96.169197210716632, 29.836575185046051 ], [ -96.16950721027321, 29.837505185328684 ], [ -96.169917210922833, 29.838435185633809 ], [ -96.170387210463346, 29.839375186077394 ], [ -96.170627211112645, 29.839775185866394 ], [ -96.170737211394041, 29.839975186246441 ], [ -96.170947211018344, 29.84031518587566 ], [ -96.171577211404951, 29.841205186439993 ], [ -96.172247211782576, 29.842035186634273 ], [ -96.174486211764943, 29.844651186376574 ], [ -96.174747212330033, 29.844955187125468 ], [ -96.176339213105152, 29.846846186792746 ], [ -96.17708721301716, 29.847735187222092 ], [ -96.177626213232898, 29.848358187010078 ], [ -96.177778213276639, 29.848533187798601 ], [ -96.177797212850365, 29.848555187302729 ], [ -96.178727213691815, 29.849675187549295 ], [ -96.178937213707897, 29.849905187713215 ], [ -96.179507214042815, 29.850595187852559 ], [ -96.179583213729472, 29.850692187822965 ], [ -96.180347214324726, 29.851575187887857 ], [ -96.18117721414994, 29.852555188466745 ], [ -96.18197721463909, 29.853485188000082 ], [ -96.182777215127842, 29.854435188110088 ], [ -96.183347215406172, 29.855105188342222 ], [ -96.183597215339759, 29.855405189033391 ], [ -96.184417215150148, 29.856355188342508 ], [ -96.18602721536125, 29.858285189501601 ], [ -96.186948216205678, 29.859355189283232 ], [ -96.187077216166344, 29.85950518947752 ], [ -96.187277216604926, 29.859725188970138 ], [ -96.188557216299557, 29.861265189923618 ], [ -96.189367216344365, 29.862195189860206 ], [ -96.189527216495449, 29.862399189734859 ], [ -96.189587217170001, 29.862475189791983 ], [ -96.190127217086683, 29.863095189620914 ], [ -96.190887217427928, 29.864005190155979 ], [ -96.191724217846073, 29.864973189981605 ], [ -96.193237217554909, 29.86674719051161 ], [ -96.194087218322764, 29.86776519045436 ], [ -96.194803218776059, 29.868604191222225 ], [ -96.195637218803697, 29.869583191294083 ], [ -96.196457219259045, 29.870545191149393 ], [ -96.19681721868065, 29.870985190953263 ], [ -96.19708721881338, 29.871305191735647 ], [ -96.197277219616481, 29.871505191841017 ], [ -96.198021219476431, 29.872381191500928 ], [ -96.198067219137741, 29.872435191592423 ], [ -96.198907219894366, 29.873335191734895 ], [ -96.200650220757097, 29.875239191588193 ], [ -96.200857220633651, 29.875465192251827 ], [ -96.200941220406634, 29.875563191968986 ], [ -96.201251220777593, 29.875925192563336 ], [ -96.201277220029354, 29.875955192063707 ], [ -96.201747220385428, 29.876525192052021 ], [ -96.202745221127955, 29.877686192894053 ], [ -96.203337221014365, 29.878375192270248 ], [ -96.204137220804071, 29.879325192850779 ], [ -96.205402221399353, 29.880801192935898 ], [ -96.205455222071834, 29.880863192794749 ], [ -96.205478221238664, 29.880842193334992 ], [ -96.205511221985972, 29.880821192804849 ], [ -96.205583221583808, 29.88078719328319 ], [ -96.205664221323829, 29.880780193150727 ], [ -96.205706222055397, 29.880780193366341 ], [ -96.205784221793465, 29.880800192655375 ], [ -96.206028221890946, 29.880826192680445 ], [ -96.206191222295956, 29.880815192582904 ], [ -96.206351221464388, 29.88078119296209 ], [ -96.206431222191171, 29.880769192714354 ], [ -96.20659022230636, 29.880732193001506 ], [ -96.206628222196784, 29.880718192852022 ], [ -96.206697221726188, 29.880681192787033 ], [ -96.206729222271051, 29.880659192877221 ], [ -96.206804222073927, 29.880630192507866 ], [ -96.206875221756945, 29.880596193146104 ], [ -96.206994222210184, 29.880564192863069 ], [ -96.207034222405127, 29.880557193081412 ], [ -96.207116222270272, 29.880567192616567 ], [ -96.207195222283246, 29.880583193266329 ], [ -96.207233221997527, 29.880597192560664 ], [ -96.207262221974275, 29.880623193101428 ], [ -96.207278222671306, 29.880655193338285 ], [ -96.207281221958226, 29.880691192485486 ], [ -96.207292222513075, 29.880726193097658 ], [ -96.207334222296808, 29.880786192602969 ], [ -96.207420222651564, 29.880863193258062 ], [ -96.207455222106972, 29.88088219282222 ], [ -96.207710221814963, 29.880992192824731 ], [ -96.20786422216824, 29.881046193230464 ], [ -96.20813622243341, 29.881126192958348 ], [ -96.208401222041019, 29.881227192825076 ], [ -96.208474222921865, 29.881260192896608 ], [ -96.208507222054052, 29.881281192818811 ], [ -96.20861222238176, 29.881336192606117 ], [ -96.208690222109794, 29.88135819273165 ], [ -96.208731222510949, 29.881365193195958 ], [ -96.208854222292217, 29.881367193271988 ], [ -96.208934222263466, 29.881348192968915 ], [ -96.209009222931542, 29.881319193199065 ], [ -96.209127222881548, 29.881292193287052 ], [ -96.20916822219796, 29.881288192657014 ], [ -96.209249222448435, 29.881289193348767 ], [ -96.20931322232822, 29.881302193226229 ], [ -96.209351223036109, 29.881315192907952 ], [ -96.209446222895053, 29.881382193364956 ], [ -96.209497222566014, 29.881437192910283 ], [ -96.209514222389984, 29.881469192877525 ], [ -96.20954722293466, 29.881492193310724 ], [ -96.209657223007653, 29.88163919331345 ], [ -96.209734222830889, 29.881722193377726 ], [ -96.209849223057219, 29.881824193348084 ], [ -96.209951223204257, 29.881882192598944 ], [ -96.209990223263901, 29.881891193333917 ], [ -96.210093223322701, 29.881948193489226 ], [ -96.21015922327237, 29.881991193354832 ], [ -96.210240223447272, 29.882094193475293 ], [ -96.210253222703244, 29.882127193103955 ], [ -96.210255222954828, 29.882199192885963 ], [ -96.210266223347475, 29.882269193141283 ], [ -96.21029222352449, 29.882336193244527 ], [ -96.210332223001004, 29.882398193301004 ], [ -96.210389222542545, 29.882449192989334 ], [ -96.210439222991738, 29.882506192862273 ], [ -96.210499223055649, 29.882554192849327 ], [ -96.210569223179888, 29.882592193026248 ], [ -96.210681223319611, 29.882631193518382 ], [ -96.210721223442491, 29.882630193054705 ], [ -96.210799222649769, 29.882617192883348 ], [ -96.210838223285009, 29.882607193080624 ], [ -96.210873222873502, 29.88258919285801 ], [ -96.21089922363376, 29.882563193017209 ], [ -96.210919223298049, 29.882532193367201 ], [ -96.2109832227775, 29.882490193178707 ], [ -96.211105223368548, 29.882497193458814 ], [ -96.211145223574533, 29.882505193057987 ], [ -96.211213223743968, 29.882544192760264 ], [ -96.211292222991617, 29.882625192971247 ], [ -96.211331223250468, 29.88268619277807 ], [ -96.211341222961863, 29.882721192958432 ], [ -96.211380222822598, 29.882783193562304 ], [ -96.211428223166479, 29.882880193411246 ], [ -96.211495222963592, 29.883049193381751 ], [ -96.211495223074337, 29.883084193297922 ], [ -96.211509223496009, 29.883154193488892 ], [ -96.211530223389985, 29.883222193099176 ], [ -96.211575223503544, 29.883280193203415 ], [ -96.211604223256714, 29.883306193642579 ], [ -96.211673223487082, 29.883345193112945 ], [ -96.211749223883814, 29.883371192851573 ], [ -96.211788223037473, 29.883379193105718 ], [ -96.211829223534508, 29.883381192999643 ], [ -96.21190722367048, 29.883400193247571 ], [ -96.211945223564044, 29.883415192888521 ], [ -96.2119772232396, 29.883437193627831 ], [ -96.212043223371737, 29.883524193503231 ], [ -96.212089223486117, 29.883622192945062 ], [ -96.212099223410746, 29.883693193780772 ], [ -96.212125223151773, 29.883798193117777 ], [ -96.212152223935092, 29.884078193786511 ], [ -96.212161223223191, 29.884219193462641 ], [ -96.212174223950939, 29.884253193717068 ], [ -96.212198223538266, 29.88428319358513 ], [ -96.212230223565655, 29.884305193356102 ], [ -96.212341223198493, 29.88435019368162 ], [ -96.212382223135265, 29.884359193725565 ], [ -96.212422223465779, 29.884359193568024 ], [ -96.212502223958111, 29.884369193311809 ], [ -96.212541223731733, 29.884379193187463 ], [ -96.212576223229931, 29.884398193155668 ], [ -96.212638223504783, 29.884445193135033 ], [ -96.212703224005381, 29.88453319344557 ], [ -96.212744223801863, 29.884632193343176 ], [ -96.212776223530639, 29.884735193662117 ], [ -96.21280422411111, 29.884876193567663 ], [ -96.212806223964705, 29.884946193363167 ], [ -96.212826224299832, 29.885119193248705 ], [ -96.212844223390917, 29.885189193263027 ], [ -96.212874223700595, 29.885253193960452 ], [ -96.21291322365569, 29.885312193371227 ], [ -96.212973223648774, 29.885442193640905 ], [ -96.21311622431837, 29.885692193390909 ], [ -96.213216223598849, 29.885844194040555 ], [ -96.213288223693581, 29.885970193701084 ], [ -96.213354224070471, 29.886058193630582 ], [ -96.213449224368972, 29.886170193678737 ], [ -96.21349022435767, 29.886230193732821 ], [ -96.213536224199842, 29.886288193979876 ], [ -96.213615224031201, 29.886369193542709 ], [ -96.213816224517473, 29.886548194183778 ], [ -96.213867223947446, 29.886588193994019 ], [ -96.213901223618862, 29.886608193497473 ], [ -96.214044223655407, 29.886677194190874 ], [ -96.214125223835396, 29.8866911934944 ], [ -96.21424722461856, 29.886685193668747 ], [ -96.214288224605923, 29.886679193422403 ], [ -96.214326224547221, 29.886665193804106 ], [ -96.214433223865882, 29.886612193947368 ], [ -96.214462224528248, 29.886587194274597 ], [ -96.214569223913045, 29.886536194149539 ], [ -96.214720224322178, 29.886479193588798 ], [ -96.214842224592473, 29.886471193380402 ], [ -96.214883223868966, 29.886474194010233 ], [ -96.215003224245947, 29.886456193572602 ], [ -96.21508122487073, 29.886435193366246 ], [ -96.215156223927067, 29.886407193661483 ], [ -96.215350224221808, 29.886347193432055 ], [ -96.21542522412831, 29.886332193437607 ], [ -96.215636224971462, 29.886334193986407 ], [ -96.21571822476426, 29.886342193709837 ], [ -96.21602222511234, 29.886448193506791 ], [ -96.216433225045947, 29.886607194221988 ], [ -96.216539224776412, 29.886660193967888 ], [ -96.21660422480474, 29.886703194103898 ], [ -96.216673224774297, 29.886740193739897 ], [ -96.2168042252584, 29.886824194000461 ], [ -96.217113225253499, 29.887061193941943 ], [ -96.21738322489179, 29.887327194192348 ], [ -96.217434225132337, 29.887383194005832 ], [ -96.21752022505693, 29.88746019406101 ], [ -96.217640225406043, 29.887558194322953 ], [ -96.217737225575291, 29.887623194087428 ], [ -96.217813225435521, 29.88764919385698 ], [ -96.217843225414995, 29.88767219398531 ], [ -96.217915225694654, 29.887698193795057 ], [ -96.217946225105337, 29.887721193864081 ], [ -96.218272225568313, 29.887747193580278 ], [ -96.218350224973221, 29.887766193557471 ], [ -96.218385225710378, 29.887782194022378 ], [ -96.218506225250351, 29.887803194389395 ], [ -96.218628225434443, 29.887818194225101 ], [ -96.218710225639427, 29.887823194148929 ], [ -96.218987225533681, 29.887772193592227 ], [ -96.219108225121644, 29.887762194179221 ], [ -96.219231225878971, 29.887771193943191 ], [ -96.219350225634301, 29.887798194021627 ], [ -96.219427225092602, 29.887822193890504 ], [ -96.219509225587032, 29.88783219381888 ], [ -96.219572226000579, 29.887834194135735 ], [ -96.219613225263629, 29.887836194290294 ], [ -96.219776226144873, 29.887815193696991 ], [ -96.21985422539484, 29.887792193569563 ], [ -96.219894225730584, 29.887784193626349 ], [ -96.220008225710799, 29.887744193461838 ], [ -96.22030722570058, 29.887623194254491 ], [ -96.220497225456512, 29.88756019424536 ], [ -96.220613225755429, 29.887526193899646 ], [ -96.220734225610897, 29.887505193949096 ], [ -96.220856225463194, 29.887491194165555 ], [ -96.220980225443569, 29.887482193766481 ], [ -96.221144226520892, 29.887480193514278 ], [ -96.221307226450008, 29.887486194225648 ], [ -96.22147022602185, 29.887469193938713 ], [ -96.221778225936305, 29.887367193976846 ], [ -96.222128225752499, 29.887267193569237 ], [ -96.222169225804038, 29.887263193463227 ], [ -96.222247225816091, 29.887244193448279 ], [ -96.2223672265971, 29.887223193917002 ], [ -96.222490226660796, 29.887211193342203 ], [ -96.222943226946711, 29.887181193498702 ], [ -96.223149226768896, 29.88717519397531 ], [ -96.2237672271078, 29.887170193344339 ], [ -96.223848226204581, 29.887176193705521 ], [ -96.224050226847751, 29.887201193200237 ], [ -96.224131227020905, 29.88720719341206 ], [ -96.224374227246685, 29.887236193727844 ], [ -96.224655226875356, 29.88728919330315 ], [ -96.224736227349226, 29.887301193552986 ], [ -96.225096226829379, 29.887370194000532 ], [ -96.225135227244735, 29.887382193612648 ], [ -96.225255227353173, 29.887409193780687 ], [ -96.226018226782699, 29.887672193918277 ], [ -96.226241227581866, 29.887763193589876 ], [ -96.226312226854958, 29.887798193568639 ], [ -96.226609226976947, 29.887920193531802 ], [ -96.226642227739234, 29.887941193374104 ], [ -96.226785227841418, 29.88800919386788 ], [ -96.22681722766103, 29.888032193566175 ], [ -96.227239227822238, 29.888245193879047 ], [ -96.2273122277048, 29.888276193475026 ], [ -96.227346227349813, 29.888296194007044 ], [ -96.22738322739616, 29.888312193692883 ], [ -96.227499227955832, 29.888348194141354 ], [ -96.227727227440752, 29.888428193502719 ], [ -96.227831227786552, 29.888484194016744 ], [ -96.227896227587777, 29.888530193691491 ], [ -96.228162228187657, 29.888754193500652 ], [ -96.228245228339901, 29.888832193896896 ], [ -96.228268228047369, 29.888862193537459 ], [ -96.228432227880617, 29.889022193984108 ], [ -96.228517227543563, 29.889099194067846 ], [ -96.228550227750262, 29.889121194222806 ], [ -96.228806227678064, 29.889235194026941 ], [ -96.228846228397259, 29.889244193589626 ], [ -96.229074227978359, 29.889327193932097 ], [ -96.229114228201922, 29.889338194134861 ], [ -96.229154228243857, 29.889342194017146 ], [ -96.229236228235536, 29.889342194211174 ], [ -96.229277228550259, 29.889335193991592 ], [ -96.229354228297595, 29.889312193907848 ], [ -96.229429227685515, 29.889283193602061 ], [ -96.229463228285752, 29.88926319430626 ], [ -96.229555228307007, 29.889193193777245 ], [ -96.229623228634523, 29.889152194279372 ], [ -96.229701228348432, 29.889130193802721 ], [ -96.229783228428886, 29.889125194095236 ], [ -96.229865227990615, 29.889130193472333 ], [ -96.229906227898994, 29.889128193529366 ], [ -96.230069228124449, 29.889144193511299 ], [ -96.230188228469245, 29.889173193643774 ], [ -96.23026422832514, 29.889199193479723 ], [ -96.230385228893311, 29.889231193853458 ], [ -96.230501228908949, 29.889265193618193 ], [ -96.230537228806355, 29.889283194159951 ], [ -96.23069922878048, 29.889394193459776 ], [ -96.230751228580175, 29.889449194277919 ], [ -96.230812228256909, 29.889496193777497 ], [ -96.230985228896728, 29.889589193854931 ], [ -96.231058228737808, 29.889620194063145 ], [ -96.231134228359551, 29.889645193472333 ], [ -96.23128322850836, 29.889703193664623 ], [ -96.231398228683176, 29.889742194133191 ], [ -96.231476228275952, 29.889763193439258 ], [ -96.231588229144023, 29.889807193699721 ], [ -96.231726228779465, 29.889883194110475 ], [ -96.232065228891159, 29.89000519347854 ], [ -96.232266228962558, 29.89004819433374 ], [ -96.232339229288357, 29.890080193749533 ], [ -96.232409229416405, 29.890116194072878 ], [ -96.232500228521971, 29.890188193862933 ], [ -96.232641228914616, 29.890316193838078 ], [ -96.232711229067078, 29.890402194185423 ], [ -96.232744229451853, 29.890469193896571 ], [ -96.232747228888499, 29.890504194064125 ], [ -96.232731229504097, 29.890537194273676 ], [ -96.232702229192398, 29.890562194190387 ], [ -96.232631228908431, 29.890594193696398 ], [ -96.232590228804796, 29.890599194218382 ], [ -96.232513228864406, 29.890622194345276 ], [ -96.232483229284995, 29.890646194449857 ], [ -96.232458228954911, 29.890674194427561 ], [ -96.232439228960956, 29.890743193677572 ], [ -96.232432228735973, 29.890814193868668 ], [ -96.232433229226828, 29.890849194327334 ], [ -96.232448229155381, 29.890918194492141 ], [ -96.232487229553016, 29.890979193981746 ], [ -96.232518228779909, 29.891003194091677 ], [ -96.232570228775259, 29.891056194316835 ], [ -96.232642228970548, 29.891090194400224 ], [ -96.232720228677039, 29.891107194199197 ], [ -96.232762229302949, 29.89110719397933 ], [ -96.232882229454319, 29.891098193896564 ], [ -96.233003228986661, 29.891080194338418 ], [ -96.233082228928524, 29.891062194123677 ], [ -96.233161228724342, 29.89104919432846 ], [ -96.233242228858614, 29.891043194512818 ], [ -96.233319228952581, 29.891020193970757 ], [ -96.233394229207263, 29.890992194101003 ], [ -96.233502229405403, 29.890939194446769 ], [ -96.23360422914466, 29.890880194258788 ], [ -96.233666228945069, 29.89083619383948 ], [ -96.233736229714069, 29.89079919437749 ], [ -96.233768229496874, 29.890777194448187 ], [ -96.23384322944932, 29.890749194325334 ], [ -96.233963229845827, 29.890727194419469 ], [ -96.234003229486873, 29.890736194202074 ], [ -96.234077229407205, 29.890767194383731 ], [ -96.234177229270102, 29.890829194375407 ], [ -96.23423522906387, 29.89088019414379 ], [ -96.234366229138374, 29.891017193781927 ], [ -96.234566229197654, 29.891197193773753 ], [ -96.234634229294883, 29.891236193828302 ], [ -96.234916230116355, 29.891375193671305 ], [ -96.235028230027538, 29.891419193658852 ], [ -96.235484229518875, 29.891578193793848 ], [ -96.235917230070029, 29.891701193742485 ], [ -96.23639222957874, 29.891823194569021 ], [ -96.236585229770768, 29.891884193952023 ], [ -96.236658230599872, 29.891916194564942 ], [ -96.236958230505465, 29.892030193730879 ], [ -96.237154229773424, 29.892085194091553 ], [ -96.237234230351376, 29.892099193884594 ], [ -96.237316230073631, 29.892095193954848 ], [ -96.237394230232439, 29.8920731944397 ], [ -96.237507230326827, 29.892050194429959 ], [ -96.237629230190819, 29.892062194214542 ], [ -96.237743230335724, 29.892103194521216 ], [ -96.237822230287435, 29.892124194406829 ], [ -96.237936230400479, 29.892166194456987 ], [ -96.238044230334978, 29.892217193753879 ], [ -96.238078230222385, 29.892237194183817 ], [ -96.23814023012288, 29.892284194549266 ], [ -96.238184230713671, 29.892344194200451 ], [ -96.238259230933238, 29.892430194207908 ], [ -96.238416230417926, 29.892640193978931 ], [ -96.238637230434961, 29.892900193946602 ], [ -96.238744230246922, 29.893009194004563 ], [ -96.239149230475491, 29.893314194705528 ], [ -96.239232231027572, 29.893393194179946 ], [ -96.239250231159147, 29.893425194359299 ], [ -96.23927823126516, 29.893492194103999 ], [ -96.239300230398797, 29.893634194579132 ], [ -96.239348230751659, 29.893733194102566 ], [ -96.239376230858582, 29.893838194048328 ], [ -96.239376231039984, 29.893874194460651 ], [ -96.239364230938023, 29.893945194869161 ], [ -96.239308231313316, 29.894040194935197 ], [ -96.239167230512493, 29.894215194387751 ], [ -96.239107231011474, 29.894308194378489 ], [ -96.23907523123313, 29.89437319443438 ], [ -96.2390362308916, 29.894512194569753 ], [ -96.239034231249576, 29.894583194933947 ], [ -96.239038230358759, 29.894618194678834 ], [ -96.239048231392005, 29.894653194272337 ], [ -96.239128231230495, 29.894776194877181 ], [ -96.239189230424671, 29.894824194756968 ], [ -96.239363230714474, 29.894921194716797 ], [ -96.239541231023068, 29.895013195047067 ], [ -96.239578231347338, 29.895028194951692 ], [ -96.239774231004489, 29.895086194635219 ], [ -96.240012231565998, 29.895147194851141 ], [ -96.240132230936041, 29.89517419490236 ], [ -96.240333230753919, 29.895211194686713 ], [ -96.240452231697887, 29.895239194582633 ], [ -96.240529230900478, 29.895264194608806 ], [ -96.240609231683607, 29.895282194667999 ], [ -96.240690231687253, 29.895295194916521 ], [ -96.240813231774666, 29.895309194947302 ], [ -96.240937231076217, 29.895318195100657 ], [ -96.241020231746433, 29.895320194853912 ], [ -96.24138823147868, 29.895273194655019 ], [ -96.241635231598508, 29.895270195001 ], [ -96.241799231933115, 29.895288194525616 ], [ -96.24215723148356, 29.895373195012088 ], [ -96.242274232141511, 29.89540819485693 ], [ -96.242426231936818, 29.895464194455482 ], [ -96.242567232219557, 29.895538194560203 ], [ -96.242950231679089, 29.89575319489575 ], [ -96.243023232029586, 29.895785194606407 ], [ -96.243058231462967, 29.895805194388377 ], [ -96.243247232091576, 29.895878194479661 ], [ -96.243320232474431, 29.895911194836472 ], [ -96.243589231837618, 29.896005194296272 ], [ -96.243661231666351, 29.896040194486009 ], [ -96.243698232008327, 29.896054195125547 ], [ -96.244495232154449, 29.896429195081968 ], [ -96.244571232457218, 29.896456194609922 ], [ -96.244770232225562, 29.89650119458836 ], [ -96.244809232070139, 29.896513194634203 ], [ -96.244970231955151, 29.896543195215308 ], [ -96.245094232669075, 29.896546194768291 ], [ -96.245216232638242, 29.896537194837403 ], [ -96.245298233030809, 29.896527195041756 ], [ -96.245713232506503, 29.896375194365028 ], [ -96.245863232947769, 29.896316194615697 ], [ -96.246106233232268, 29.896180194317076 ], [ -96.246216232753738, 29.896130194616042 ], [ -96.246256233231804, 29.896120195119845 ], [ -96.246331232672119, 29.896090194545359 ], [ -96.246599232768659, 29.895999194176213 ], [ -96.247021232744373, 29.895991194584195 ], [ -96.24706123341258, 29.896000194927119 ], [ -96.247410233236693, 29.896116195036409 ], [ -96.247482233457589, 29.896150195050915 ], [ -96.247888233321817, 29.896325194355931 ], [ -96.248121233507831, 29.896399194493256 ], [ -96.248235233087868, 29.89644119456625 ], [ -96.248544232893209, 29.896544194754995 ], [ -96.248662233293857, 29.89657919500414 ], [ -96.248741233837833, 29.896597194919558 ], [ -96.249026233304974, 29.896635194312871 ], [ -96.249191233890045, 29.89664419432458 ], [ -96.24923323368219, 29.896642194484834 ], [ -96.249394233752867, 29.896614195057719 ], [ -96.249874233677573, 29.896503194379676 ], [ -96.250031233280893, 29.896460194812214 ], [ -96.250340233639335, 29.896358194350974 ], [ -96.25076723372986, 29.896223194213352 ], [ -96.251004234433765, 29.896163194256491 ], [ -96.251532233824008, 29.896072194476655 ], [ -96.251859234604552, 29.896031194429284 ], [ -96.25223123451579, 29.896025194869594 ], [ -96.252519234798669, 29.896041194381098 ], [ -96.252641234365299, 29.896060194157567 ], [ -96.252921234465703, 29.896118194798973 ], [ -96.253363235043849, 29.89620119453707 ], [ -96.254001234471161, 29.89634319482624 ], [ -96.254078234572603, 29.896366194408902 ], [ -96.254192234354718, 29.896408194792116 ], [ -96.25452823520159, 29.896544194430771 ], [ -96.254600234912459, 29.896577194259692 ], [ -96.254751235045404, 29.896635194263723 ], [ -96.254968235148866, 29.89673819441218 ], [ -96.254998234652319, 29.896755194611064 ], [ -96.255037234555061, 29.896777194338153 ], [ -96.255190234748241, 29.896873194206709 ], [ -96.255721235300797, 29.897211194849056 ], [ -96.25659423516278, 29.89768619459895 ], [ -96.256896235137745, 29.897873194861909 ], [ -96.257286235651662, 29.898195194335795 ], [ -96.257817235497228, 29.898698195073077 ], [ -96.257954236317815, 29.898832195019256 ], [ -96.258173235947879, 29.898996195070207 ], [ -96.258366236352998, 29.899130195265197 ], [ -96.258565236188346, 29.899257194748085 ], [ -96.258810236383937, 29.899391195223743 ], [ -96.259131236320442, 29.8995561949978 ], [ -96.259311235896419, 29.899644195212812 ], [ -96.259745236501146, 29.899916195150954 ], [ -96.2599052365386, 29.900027194594035 ], [ -96.260068236304548, 29.900134194995527 ], [ -96.260162236965002, 29.900204195173085 ], [ -96.26063223640854, 29.900514195135656 ], [ -96.260893236233002, 29.900689194842961 ], [ -96.26114923662665, 29.900872195002215 ], [ -96.261281236414675, 29.900956195102658 ], [ -96.261352236734865, 29.900991194934331 ], [ -96.261454236742736, 29.901051195007128 ], [ -96.261839236684835, 29.901253195425468 ], [ -96.262081236928765, 29.901387195231401 ], [ -96.262154236797073, 29.90142119490114 ], [ -96.26237023759569, 29.901532194798452 ], [ -96.262649236723334, 29.901747195065475 ], [ -96.263122237233645, 29.902096195479526 ], [ -96.263151237602756, 29.902122195084985 ], [ -96.263253237106113, 29.902235194920717 ], [ -96.26339223699145, 29.902455195214493 ], [ -96.263439237569415, 29.902515195728967 ], [ -96.263673237013336, 29.902718195061059 ], [ -96.263923237774264, 29.902958195322277 ], [ -96.264017237481227, 29.903029195220018 ], [ -96.264215237851943, 29.903158195078504 ], [ -96.264320237944474, 29.903215195640847 ], [ -96.264575237647534, 29.903333195528241 ], [ -96.264991237358657, 29.903566195298438 ], [ -96.265520238366776, 29.903910195857794 ], [ -96.265646238102917, 29.903984195592884 ], [ -96.266025238298624, 29.904199195276252 ], [ -96.266218238038363, 29.904335195969011 ], [ -96.266400238045776, 29.904481196053155 ], [ -96.266465238767921, 29.904524195509985 ], [ -96.266775238552512, 29.904699195680958 ], [ -96.266848237936756, 29.90473119557441 ], [ -96.267278238380342, 29.904939195746497 ], [ -96.268114238500118, 29.905391196068063 ], [ -96.268535238455613, 29.90561319608225 ], [ -96.268607238540611, 29.905646196207318 ], [ -96.268922239021265, 29.905813195407127 ], [ -96.269100238700247, 29.905899195566921 ], [ -96.269169239148667, 29.905938196019051 ], [ -96.269667238966449, 29.906184195466377 ], [ -96.269740239239269, 29.906216195554563 ], [ -96.270563238923287, 29.906615196042033 ], [ -96.270632239239347, 29.906653195808381 ], [ -96.271240239789165, 29.906947195975761 ], [ -96.271314239625738, 29.906979195647899 ], [ -96.271421239813762, 29.907032196291389 ], [ -96.274284240494708, 29.908712196479001 ], [ -96.274666240390431, 29.908921196133488 ], [ -96.274915240716069, 29.909047196483645 ], [ -96.275316240527829, 29.909228196570222 ], [ -96.275393241075804, 29.909255196674366 ], [ -96.275539240558203, 29.909321196448545 ], [ -96.275737241186462, 29.909449196657537 ], [ -96.275806241330571, 29.909488196253658 ], [ -96.276150240899156, 29.909607196409709 ], [ -96.276228240775666, 29.909630195951713 ], [ -96.276454240517722, 29.909714196491429 ], [ -96.276630240794987, 29.909807196445215 ], [ -96.276753241544853, 29.909898196720881 ], [ -96.27685424166043, 29.909982196117163 ], [ -96.276889240956407, 29.910002196674881 ], [ -96.276945241034483, 29.910052196102217 ], [ -96.277097241030617, 29.910168196164552 ], [ -96.277289241568695, 29.910302196175397 ], [ -96.277525240894519, 29.910447196550617 ], [ -96.277664241219483, 29.910524196124129 ], [ -96.27770224091411, 29.910540196358784 ], [ -96.277779241789318, 29.910561196571059 ], [ -96.277858241689998, 29.910576196382028 ], [ -96.277897241021563, 29.910587196588654 ], [ -96.277938240994146, 29.910590196663239 ], [ -96.278020241932055, 29.910586196913329 ], [ -96.278093241936872, 29.91055619681612 ], [ -96.278163241392406, 29.910518196208344 ], [ -96.27828124130528, 29.910489196103661 ], [ -96.27832324122555, 29.910489196791403 ], [ -96.278529241229521, 29.910507196510583 ], [ -96.27856924163531, 29.910515196370152 ], [ -96.278644241432602, 29.910541196509907 ], [ -96.278751241190449, 29.910596196297213 ], [ -96.278835241675708, 29.910655196757673 ], [ -96.278950241852712, 29.910758196646512 ], [ -96.279135241266815, 29.910952196544336 ], [ -96.279352242131267, 29.911214196237946 ], [ -96.279813242108702, 29.911978197116408 ], [ -96.279923241744541, 29.912172196361354 ], [ -96.280054242562585, 29.912435197043713 ], [ -96.280125242099857, 29.912566196457465 ], [ -96.280837242187147, 29.913529196921729 ], [ -96.28102424196706, 29.913808196695506 ], [ -96.281219242632545, 29.91412419735974 ], [ -96.281325242679614, 29.914319197123717 ], [ -96.281498242362503, 29.914684196875172 ], [ -96.281960242716252, 29.91560619713141 ], [ -96.282126242491842, 29.915895197400985 ], [ -96.282283242320887, 29.916148197646965 ], [ -96.282410242846908, 29.916373197864086 ], [ -96.282529242983216, 29.91651919766586 ], [ -96.28258124263489, 29.916574197820015 ], [ -96.282626242631665, 29.916633197507824 ], [ -96.282851243348048, 29.916888197199906 ], [ -96.283197242676437, 29.917243197585119 ], [ -96.283300243042902, 29.917354197730415 ], [ -96.283970243603051, 29.918032198133169 ], [ -96.284021243316062, 29.918088198087801 ], [ -96.284354243708435, 29.918406197789565 ], [ -96.285351243571952, 29.919266198015144 ], [ -96.285575244031506, 29.91942119842852 ], [ -96.285641243297292, 29.919450197984851 ], [ -96.28565524353877, 29.919484197717285 ], [ -96.285678244001545, 29.919514197580181 ], [ -96.285798244183582, 29.919611197952154 ], [ -96.285940243698704, 29.919739198429191 ], [ -96.286264244447423, 29.920060198408152 ], [ -96.286449244212136, 29.920250198274804 ], [ -96.286506243829905, 29.920300198201524 ], [ -96.286611243713466, 29.920410198184662 ], [ -96.286708244242732, 29.920475198223368 ], [ -96.286745244129335, 29.920491198093281 ], [ -96.286985244625427, 29.920539197874472 ], [ -96.287107243882772, 29.920558197929761 ], [ -96.287189244701736, 29.920563197787146 ], [ -96.287230244564881, 29.920562198061177 ], [ -96.287306243797786, 29.920590197724049 ], [ -96.287368244111761, 29.920635197790045 ], [ -96.287440244650199, 29.920721197879963 ], [ -96.287489244802373, 29.920817198627994 ], [ -96.28752024392972, 29.920919198635904 ], [ -96.287530244002795, 29.92099019816159 ], [ -96.287518243915713, 29.92113119862087 ], [ -96.287508244372361, 29.9212011983984 ], [ -96.2874322445508, 29.921326198655883 ], [ -96.287369244465509, 29.921371198542317 ], [ -96.287267244476013, 29.921427198693618 ], [ -96.287226244304108, 29.921435198581502 ], [ -96.287158244743395, 29.921474198148331 ], [ -96.287116243994859, 29.921493198257405 ], [ -96.287071244313765, 29.921592198631213 ], [ -96.28703624421901, 29.921696198406764 ], [ -96.287022244391665, 29.921766198512465 ], [ -96.287018244654135, 29.921908198055966 ], [ -96.287066244810617, 29.922192198171278 ], [ -96.287124243922676, 29.922364198513275 ], [ -96.287153243820853, 29.922432198812199 ], [ -96.287228244582337, 29.922559198301801 ], [ -96.287253244285154, 29.922588198645023 ], [ -96.287354244523016, 29.922651198849767 ], [ -96.287431244892858, 29.922675198297473 ], [ -96.28746624403415, 29.922694198696121 ], [ -96.287622244881334, 29.922737198662581 ], [ -96.287824244603513, 29.922777198669326 ], [ -96.288352244614259, 29.922871198774654 ], [ -96.288634244802481, 29.922925198538014 ], [ -96.288795245272894, 29.922949198189933 ], [ -96.288835244667197, 29.92295919821548 ], [ -96.288948245225669, 29.923000198285692 ], [ -96.288982244630432, 29.923021198627268 ], [ -96.289036244969637, 29.923075198638156 ], [ -96.289086245349012, 29.923132198738404 ], [ -96.289103244739962, 29.92316419835916 ], [ -96.289261245012497, 29.923534198569218 ], [ -96.289291244538845, 29.923638198377002 ], [ -96.289329244491299, 29.923814198491129 ], [ -96.289374245035532, 29.924244198604178 ], [ -96.289421244767297, 29.924816199156371 ], [ -96.289427244517398, 29.924852199064411 ], [ -96.289513244625738, 29.925128198975017 ], [ -96.289586245553863, 29.925481198643404 ], [ -96.289635244766657, 29.925580198925456 ], [ -96.28984724540868, 29.925886198880594 ], [ -96.289865245218465, 29.925918199608038 ], [ -96.289927245366954, 29.925965199004775 ], [ -96.289993244988167, 29.926007199343641 ], [ -96.290068244713396, 29.926037199458818 ], [ -96.290184245738914, 29.926073199024742 ], [ -96.290341245727575, 29.9261111992274 ], [ -96.290570245082961, 29.926187198999628 ], [ -96.290645245807667, 29.926216198914542 ], [ -96.290826245796552, 29.926304199153485 ], [ -96.290888245223087, 29.926350199084411 ], [ -96.291117245101162, 29.926501199591982 ], [ -96.291293245259411, 29.926653199531803 ], [ -96.291391245632568, 29.926768199715045 ], [ -96.291462245383642, 29.926898199351658 ], [ -96.291548245221534, 29.927020199251693 ], [ -96.291706245997403, 29.927229199143962 ], [ -96.291792245288491, 29.927306199304795 ], [ -96.291857245394866, 29.92735019904627 ], [ -96.291913245238362, 29.927402199499365 ], [ -96.292018245383133, 29.9275111993576 ], [ -96.292075246217138, 29.92756319917353 ], [ -96.292109246024481, 29.927582199779316 ], [ -96.292313246047513, 29.927610199220002 ], [ -96.292354245542171, 29.927609199672755 ], [ -96.292716246152537, 29.927569199106305 ], [ -96.292919245612893, 29.927554199348695 ], [ -96.29300024569639, 29.927543199676514 ], [ -96.293123245809099, 29.927539199611005 ], [ -96.293370246651946, 29.927542199148615 ], [ -96.293452246031791, 29.92754719953275 ], [ -96.293610246436984, 29.927586199639599 ], [ -96.293712246504455, 29.927645199134613 ], [ -96.293837245866186, 29.927736199308129 ], [ -96.294059246813049, 29.927947199337794 ], [ -96.29413324621207, 29.928033199606311 ], [ -96.294199246297353, 29.928124199573134 ], [ -96.294299246777996, 29.928281199739502 ], [ -96.294317246666097, 29.928325199377898 ], [ -96.294346246044825, 29.928611199768557 ], [ -96.294361246878125, 29.929101199377438 ], [ -96.294407246072424, 29.929095199445076 ], [ -96.294458246540856, 29.929087199443988 ], [ -96.29563724643225, 29.92889519924347 ], [ -96.295857246469382, 29.928875199634383 ], [ -96.296027246521064, 29.928875199236586 ], [ -96.296337247396011, 29.928855199570751 ], [ -96.296637246787398, 29.928805199671345 ], [ -96.297107247632184, 29.928695199572854 ], [ -96.297327247680158, 29.928615199768618 ], [ -96.297427246808965, 29.928565199852827 ], [ -96.298097247565721, 29.928075199662683 ], [ -96.298227247483098, 29.927965199656064 ], [ -96.298527247765875, 29.927635198942514 ], [ -96.298817247354364, 29.927285198902009 ], [ -96.299047248041589, 29.926985199235869 ], [ -96.299427247363965, 29.92653519873193 ], [ -96.299857247601196, 29.926095199189096 ], [ -96.300827247619011, 29.925145198383614 ], [ -96.301117247776745, 29.924845198660918 ], [ -96.301197247840761, 29.924725198760662 ], [ -96.301597248206647, 29.923865198557767 ], [ -96.301647247808049, 29.923745198128675 ], [ -96.3016672480165, 29.923655198653293 ], [ -96.301677247689511, 29.923455198067025 ], [ -96.301647248254838, 29.923265198184211 ], [ -96.301497248127887, 29.922595198099895 ], [ -96.301478248435018, 29.922457197806963 ], [ -96.30143724787149, 29.922155198388928 ], [ -96.301350248320645, 29.92120419764359 ], [ -96.301347247828474, 29.921175197369529 ], [ -96.301346247593514, 29.921155197512817 ], [ -96.301342247610933, 29.921103197726516 ], [ -96.301307248221391, 29.92061519754893 ], [ -96.30129724814212, 29.920175197376924 ], [ -96.30131724736583, 29.919665197909691 ], [ -96.301347248289332, 29.919385197363798 ], [ -96.301427247742595, 29.918915197619377 ], [ -96.301577248171057, 29.918135196824462 ], [ -96.301629247794494, 29.9174811972449 ], [ -96.301677247381988, 29.916865196896758 ], [ -96.301707247389558, 29.916685196885339 ], [ -96.301747247641146, 29.916595196784282 ], [ -96.301827247416625, 29.91646519650638 ], [ -96.301897248252047, 29.91636519677925 ], [ -96.301955247888003, 29.916309196460293 ], [ -96.302207247457503, 29.916065196626981 ], [ -96.302447247893568, 29.915915196740634 ], [ -96.302577247539901, 29.915815196809213 ], [ -96.302847247762131, 29.915565196311981 ], [ -96.302957248194261, 29.915435196279152 ], [ -96.303217248040184, 29.915095196091638 ], [ -96.303267248508178, 29.914995196293845 ], [ -96.303377247866081, 29.914755196097289 ], [ -96.303457248225186, 29.914515195950734 ], [ -96.303537248047405, 29.914315195912135 ], [ -96.303707248588069, 29.913755196405063 ], [ -96.303797248031003, 29.913355195785289 ], [ -96.3038772483483, 29.91311519622182 ], [ -96.303977248495173, 29.9128451963735 ], [ -96.304247248165055, 29.912245195598494 ], [ -96.304377248554061, 29.911905195450387 ], [ -96.304507247816019, 29.911615196067114 ], [ -96.304717248352077, 29.911295195480044 ], [ -96.304957247878676, 29.91095519534975 ], [ -96.305497248833788, 29.910335195302682 ], [ -96.305657247945319, 29.91011519570657 ], [ -96.305937248061269, 29.909675195343983 ], [ -96.306036248233681, 29.909465195303142 ], [ -96.306187248399027, 29.909145194816901 ], [ -96.30640724813189, 29.908585195030053 ], [ -96.30704724846504, 29.907115194557903 ], [ -96.307177248501532, 29.906875194313564 ], [ -96.307297248246712, 29.906575194622729 ], [ -96.307337248625601, 29.906385194369737 ], [ -96.307387248930681, 29.906115194773445 ], [ -96.307417248990831, 29.905765194056581 ], [ -96.307387248619591, 29.905145194088437 ], [ -96.307267248506719, 29.904585194023966 ], [ -96.307217248450655, 29.904225194546811 ], [ -96.307177248315838, 29.903705194159535 ], [ -96.307117248293963, 29.903155194407212 ], [ -96.307027248008453, 29.902205194119343 ], [ -96.307007248457595, 29.901815193846314 ], [ -96.307007248844997, 29.901605193331168 ], [ -96.307015248599654, 29.901506193679499 ], [ -96.307037248656115, 29.901215193666733 ], [ -96.307087248665752, 29.90087519386752 ], [ -96.307157247932324, 29.900575193152591 ], [ -96.307160248847325, 29.900557193883927 ], [ -96.307185248816836, 29.900426193018859 ], [ -96.307217248468334, 29.900285193760432 ], [ -96.307277248863514, 29.900095193799316 ], [ -96.307457248559103, 29.899655193653729 ], [ -96.307507248226685, 29.899455193401678 ], [ -96.307567248634598, 29.899135193295578 ], [ -96.30758724829883, 29.898965193520063 ], [ -96.307587248280328, 29.89883519352232 ], [ -96.307577248903954, 29.898535192888929 ], [ -96.307576248574648, 29.898523193019223 ], [ -96.307527248364991, 29.898065193372407 ], [ -96.307347248702328, 29.897135192428436 ], [ -96.307007248341392, 29.895265192262706 ], [ -96.306997247933523, 29.895155192404037 ], [ -96.306987247972074, 29.894165191730238 ], [ -96.307037247562832, 29.893835192014574 ], [ -96.307097248434147, 29.893655191696507 ], [ -96.307277248043732, 29.893205192112053 ], [ -96.30737724822032, 29.892895191745097 ], [ -96.307537248589838, 29.892505192240218 ], [ -96.307707247971905, 29.891985191604803 ], [ -96.307887248192287, 29.891045191312941 ], [ -96.307997248332143, 29.890595191308822 ], [ -96.308117247930554, 29.890025190955122 ], [ -96.308177248187917, 29.889485191275387 ], [ -96.308187248353775, 29.889165191427622 ], [ -96.308177247991168, 29.888775190872568 ], [ -96.308157248408008, 29.88851519134338 ], [ -96.308107247934061, 29.887565190984446 ], [ -96.308097248049819, 29.886785190582312 ], [ -96.308185247691682, 29.885987190425549 ], [ -96.308207247954741, 29.88567519010547 ], [ -96.308207247470961, 29.885185190337079 ], [ -96.308217248155714, 29.88486519006814 ], [ -96.308297248364141, 29.88466519044972 ], [ -96.308527248053409, 29.883985189949538 ], [ -96.309177247571355, 29.882435189476109 ], [ -96.309392247852244, 29.881889189917015 ], [ -96.309577248286914, 29.881455189212407 ], [ -96.310017247801611, 29.880505189690684 ], [ -96.310427247966629, 29.879565189111897 ], [ -96.310567247818412, 29.879205189023473 ], [ -96.310987248499302, 29.878175189185246 ], [ -96.311147248240729, 29.877955188348814 ], [ -96.311277248053088, 29.87782518827203 ], [ -96.311458248624746, 29.877683188736281 ], [ -96.311837248989562, 29.877385188873209 ], [ -96.312027248663597, 29.87720518850842 ], [ -96.312227248918163, 29.877035188694293 ], [ -96.312507248443879, 29.876755188230344 ], [ -96.312617248984267, 29.876585188177085 ], [ -96.312447248250919, 29.876345188006198 ], [ -96.312397248415422, 29.876265188783968 ], [ -96.31231724872562, 29.876105188419949 ], [ -96.312312248415452, 29.876092187892297 ], [ -96.312267248643522, 29.875975188606702 ], [ -96.312267248416788, 29.875865188522472 ], [ -96.312307248591992, 29.875725188578844 ], [ -96.313147249148329, 29.874155188331429 ], [ -96.31356724922108, 29.873315187417557 ], [ -96.313717248646526, 29.872935187351548 ], [ -96.314037248631536, 29.87207518704426 ], [ -96.315417248782495, 29.868605186476124 ], [ -96.315777248986265, 29.867635186477962 ], [ -96.315877248912074, 29.867375186124153 ], [ -96.315977248881993, 29.867015186227999 ], [ -96.316107248942544, 29.866395185840389 ], [ -96.316127248603379, 29.866165186453397 ], [ -96.316127249366787, 29.866085185978765 ], [ -96.316117249223836, 29.865975185925613 ], [ -96.316057248796938, 29.865805185785245 ], [ -96.316156249032645, 29.865695186033001 ], [ -96.31651724931227, 29.865295186295434 ], [ -96.316797249458531, 29.864965186010672 ], [ -96.317484249105064, 29.864023186146412 ], [ -96.317769249157664, 29.863632185822365 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1447, "Tract": "48015760201", "Area_SqMi": 28.777272250541099, "total_2009": 668, "total_2010": 445, "total_2011": 491, "total_2012": 426, "total_2013": 449, "total_2014": 542, "total_2015": 581, "total_2016": 547, "total_2017": 546, "total_2018": 522, "total_2019": 501, "total_2020": 544, "age1": 151, "age2": 331, "age3": 194, "earn1": 117, "earn2": 150, "earn3": 409, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 335, "naics_s06": 74, "naics_s07": 36, "naics_s08": 25, "naics_s09": 0, "naics_s10": 6, "naics_s11": 0, "naics_s12": 12, "naics_s13": 0, "naics_s14": 8, "naics_s15": 0, "naics_s16": 0, "naics_s17": 7, "naics_s18": 121, "naics_s19": 1, "naics_s20": 20, "race1": 563, "race2": 89, "race3": 2, "race4": 19, "race5": 0, "race6": 3, "ethnicity1": 446, "ethnicity2": 230, "edu1": 121, "edu2": 153, "edu3": 168, "edu4": 83, "Shape_Length": 192069.65591999053, "Shape_Area": 802261097.55138934, "total_2021": 645, "total_2022": 676 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.205420221245262, 29.880893193368824 ], [ -96.205455222071834, 29.880863192794749 ], [ -96.205402221399353, 29.880801192935898 ], [ -96.204137220804071, 29.879325192850779 ], [ -96.203337221014365, 29.878375192270248 ], [ -96.202745221127955, 29.877686192894053 ], [ -96.201747220385428, 29.876525192052021 ], [ -96.201277220029354, 29.875955192063707 ], [ -96.201251220777593, 29.875925192563336 ], [ -96.200941220406634, 29.875563191968986 ], [ -96.200857220633651, 29.875465192251827 ], [ -96.200650220757097, 29.875239191588193 ], [ -96.198907219894366, 29.873335191734895 ], [ -96.198067219137741, 29.872435191592423 ], [ -96.198021219476431, 29.872381191500928 ], [ -96.197277219616481, 29.871505191841017 ], [ -96.19708721881338, 29.871305191735647 ], [ -96.19681721868065, 29.870985190953263 ], [ -96.196457219259045, 29.870545191149393 ], [ -96.195637218803697, 29.869583191294083 ], [ -96.194803218776059, 29.868604191222225 ], [ -96.194087218322764, 29.86776519045436 ], [ -96.193237217554909, 29.86674719051161 ], [ -96.191724217846073, 29.864973189981605 ], [ -96.190887217427928, 29.864005190155979 ], [ -96.190127217086683, 29.863095189620914 ], [ -96.189587217170001, 29.862475189791983 ], [ -96.189527216495449, 29.862399189734859 ], [ -96.189367216344365, 29.862195189860206 ], [ -96.188557216299557, 29.861265189923618 ], [ -96.187277216604926, 29.859725188970138 ], [ -96.187077216166344, 29.85950518947752 ], [ -96.186948216205678, 29.859355189283232 ], [ -96.18602721536125, 29.858285189501601 ], [ -96.184417215150148, 29.856355188342508 ], [ -96.183597215339759, 29.855405189033391 ], [ -96.183347215406172, 29.855105188342222 ], [ -96.182777215127842, 29.854435188110088 ], [ -96.18197721463909, 29.853485188000082 ], [ -96.18117721414994, 29.852555188466745 ], [ -96.180347214324726, 29.851575187887857 ], [ -96.179583213729472, 29.850692187822965 ], [ -96.179507214042815, 29.850595187852559 ], [ -96.178937213707897, 29.849905187713215 ], [ -96.178727213691815, 29.849675187549295 ], [ -96.177797212850365, 29.848555187302729 ], [ -96.177778213276639, 29.848533187798601 ], [ -96.177626213232898, 29.848358187010078 ], [ -96.17708721301716, 29.847735187222092 ], [ -96.176339213105152, 29.846846186792746 ], [ -96.174747212330033, 29.844955187125468 ], [ -96.174486211764943, 29.844651186376574 ], [ -96.172247211782576, 29.842035186634273 ], [ -96.171577211404951, 29.841205186439993 ], [ -96.170947211018344, 29.84031518587566 ], [ -96.170737211394041, 29.839975186246441 ], [ -96.170627211112645, 29.839775185866394 ], [ -96.170387210463346, 29.839375186077394 ], [ -96.169917210922833, 29.838435185633809 ], [ -96.16950721027321, 29.837505185328684 ], [ -96.169197210716632, 29.836575185046051 ], [ -96.168937210353249, 29.835635184693658 ], [ -96.168717210027438, 29.834675185227027 ], [ -96.168467210047538, 29.833725184627049 ], [ -96.168427209883234, 29.833535184540423 ], [ -96.168301209873889, 29.833086184310112 ], [ -96.168287209735539, 29.83303518483207 ], [ -96.168020209699208, 29.831959184506299 ], [ -96.167517210266666, 29.829935184309765 ], [ -96.167267209887484, 29.829015183416939 ], [ -96.167257209205076, 29.828951184095697 ], [ -96.167247209269746, 29.828885183993393 ], [ -96.166588209089426, 29.826306183320551 ], [ -96.166560209423551, 29.826198183148286 ], [ -96.166457209081486, 29.82579518323999 ], [ -96.165877208625787, 29.823455182959155 ], [ -96.165837208828606, 29.823306182812477 ], [ -96.165387208438005, 29.821595182341657 ], [ -96.165157208259131, 29.820655182132445 ], [ -96.164907208227973, 29.819705182093646 ], [ -96.163672207742508, 29.814819181086502 ], [ -96.163127207445811, 29.812665180630653 ], [ -96.163037207896068, 29.812265180970712 ], [ -96.162567207186271, 29.810325179748077 ], [ -96.162228207145048, 29.808665179717124 ], [ -96.162157207153939, 29.808265179367279 ], [ -96.162150207287212, 29.808217179654047 ], [ -96.162057207253923, 29.807555179672107 ], [ -96.161917207705585, 29.806155179809132 ], [ -96.161887206977752, 29.805725179112358 ], [ -96.161857207460955, 29.805075179414722 ], [ -96.161851207614419, 29.803986178726699 ], [ -96.161851207407366, 29.803965178773062 ], [ -96.161845207047762, 29.802813178749599 ], [ -96.16183920698532, 29.801739178461283 ], [ -96.161837206827585, 29.801185178002974 ], [ -96.161787206961236, 29.800065178215473 ], [ -96.161716206539808, 29.799077177961422 ], [ -96.1616672073784, 29.798635177977886 ], [ -96.161517206418594, 29.797495178058153 ], [ -96.161459207162537, 29.797166177245501 ], [ -96.161317206795601, 29.796365177015691 ], [ -96.161157206631827, 29.795625177088777 ], [ -96.160824206617406, 29.794267177132792 ], [ -96.160597206478101, 29.793345176987014 ], [ -96.160207206028957, 29.791805176622489 ], [ -96.160117206111096, 29.791415176013921 ], [ -96.159867206374528, 29.790455176161302 ], [ -96.159607206191993, 29.789435176300177 ], [ -96.159127205847113, 29.787395175918682 ], [ -96.159019205642451, 29.787024175226229 ], [ -96.158877205196802, 29.786535175929913 ], [ -96.158657205141211, 29.785685175342266 ], [ -96.158477205111382, 29.784965174931621 ], [ -96.158227205443211, 29.78400517498622 ], [ -96.157057205587819, 29.784247174708682 ], [ -96.156348204414257, 29.784393175458646 ], [ -96.156147204748834, 29.784435174812174 ], [ -96.156037204532964, 29.784435174876315 ], [ -96.155967204713832, 29.784425175589945 ], [ -96.15584720473197, 29.784335175267376 ], [ -96.155807204547344, 29.784265174861844 ], [ -96.155687205016989, 29.783855174920031 ], [ -96.155657204982944, 29.78379517508403 ], [ -96.155617204959015, 29.78376517488346 ], [ -96.155557204574322, 29.783745174950205 ], [ -96.155477204411667, 29.783725174749438 ], [ -96.155387204737607, 29.783725175422838 ], [ -96.155338204399825, 29.783731174992763 ], [ -96.155307204926302, 29.783735174885187 ], [ -96.154957204969676, 29.783795175513589 ], [ -96.15422720385908, 29.783895175044357 ], [ -96.15399720390873, 29.783923175135133 ], [ -96.153721204685382, 29.783959175192241 ], [ -96.152587203674898, 29.784126175031886 ], [ -96.150937203271411, 29.784345174939773 ], [ -96.149677203332715, 29.784525175604998 ], [ -96.149097203313531, 29.784606175308216 ], [ -96.148167203170118, 29.78473517585531 ], [ -96.14750720246812, 29.784815175128106 ], [ -96.145857202483214, 29.785025175552395 ], [ -96.145197201578156, 29.784865175867019 ], [ -96.14509720185859, 29.784835175270484 ], [ -96.145017202236204, 29.784805175501184 ], [ -96.144960202060147, 29.784757175249833 ], [ -96.144725202035943, 29.784559175825773 ], [ -96.144697201786983, 29.784535175905134 ], [ -96.144497202217735, 29.784375175665911 ], [ -96.144277201641373, 29.784225175520195 ], [ -96.144217202024066, 29.784205175904408 ], [ -96.14402720190769, 29.784175175714438 ], [ -96.143637201767604, 29.784185175519859 ], [ -96.14264720189324, 29.784195175772606 ], [ -96.140287200562909, 29.784235175959076 ], [ -96.140267200614986, 29.784275175652208 ], [ -96.140247200635727, 29.784345176091243 ], [ -96.140267201237862, 29.78599517612578 ], [ -96.140297201422072, 29.787965176748891 ], [ -96.140297200516912, 29.788165176696687 ], [ -96.140277200844253, 29.788245176720896 ], [ -96.140247201259015, 29.788285176946594 ], [ -96.140197200908361, 29.78830517627318 ], [ -96.140167201081923, 29.788317176590482 ], [ -96.140147200512757, 29.788325176482896 ], [ -96.140057200743144, 29.788324176913708 ], [ -96.140029200991435, 29.788335176588625 ], [ -96.135777199617507, 29.788395177102267 ], [ -96.135707199532078, 29.78841517702736 ], [ -96.135617199334803, 29.788465176274396 ], [ -96.135597199333674, 29.788515176728588 ], [ -96.135577199371568, 29.788995176362519 ], [ -96.135587199670553, 29.789305176858786 ], [ -96.135577199807386, 29.790005177325707 ], [ -96.135547200261541, 29.790105177087071 ], [ -96.135517199388062, 29.790165177344264 ], [ -96.135457200358573, 29.790225177341398 ], [ -96.135347199863347, 29.790285177358268 ], [ -96.135217199579131, 29.790335177117868 ], [ -96.135127199952507, 29.790355177137204 ], [ -96.133527199246373, 29.790405177111602 ], [ -96.130937198367249, 29.790465176898962 ], [ -96.12893719865599, 29.790495177390813 ], [ -96.125837197627973, 29.790585177842306 ], [ -96.124787197278138, 29.7906051776861 ], [ -96.124717196948012, 29.790615177686362 ], [ -96.124617197291371, 29.790645177884979 ], [ -96.1245071974746, 29.790695177621682 ], [ -96.124287196915589, 29.790845177831446 ], [ -96.123407197315714, 29.791565177462338 ], [ -96.122327196319958, 29.792435178112399 ], [ -96.120227195967828, 29.794165178733696 ], [ -96.1189671963173, 29.795195178539188 ], [ -96.118777195968647, 29.795355178926112 ], [ -96.118507196049052, 29.795555178346248 ], [ -96.118357195384831, 29.79563517873196 ], [ -96.118147195840763, 29.795605178954531 ], [ -96.117917195530609, 29.795545178555628 ], [ -96.117587195051826, 29.795445178769711 ], [ -96.116017195234946, 29.794945178288909 ], [ -96.114297194336203, 29.794375178765652 ], [ -96.111327193869457, 29.793335178151452 ], [ -96.109687193761332, 29.79276517863854 ], [ -96.107787193310514, 29.792135178249936 ], [ -96.107727192635167, 29.792115178519033 ], [ -96.107647193358289, 29.792105178360572 ], [ -96.107497192747473, 29.792115178818573 ], [ -96.106327192746434, 29.792295178535241 ], [ -96.105347192182975, 29.792465178402285 ], [ -96.104797192389725, 29.792555178862777 ], [ -96.104107191759539, 29.792665178296971 ], [ -96.101657191422163, 29.793075178597917 ], [ -96.101037190979213, 29.793165179128483 ], [ -96.101167191511948, 29.792835178847994 ], [ -96.101337191662708, 29.792475178729507 ], [ -96.101877191544602, 29.791415178805689 ], [ -96.102297191746345, 29.790575178262493 ], [ -96.102737191358329, 29.789735178108337 ], [ -96.103477191426506, 29.788265177409453 ], [ -96.103528191842571, 29.788173177383193 ], [ -96.103587191230133, 29.788065177349164 ], [ -96.103747192188649, 29.787755177667155 ], [ -96.104437192226499, 29.786365177282725 ], [ -96.104657191994377, 29.78590517713733 ], [ -96.10528719241394, 29.784705176788691 ], [ -96.106137192128926, 29.783025176666818 ], [ -96.106913192203791, 29.781508176673707 ], [ -96.10700719249904, 29.781325176290387 ], [ -96.108594192214824, 29.778235175872688 ], [ -96.10868719204403, 29.778055175170216 ], [ -96.108757192573066, 29.777925175134808 ], [ -96.108907192838359, 29.777615175364978 ], [ -96.108967192830136, 29.77747517547056 ], [ -96.109027192334324, 29.777265175593442 ], [ -96.109087192956579, 29.776915174906311 ], [ -96.109087192382503, 29.776405174833382 ], [ -96.109077192692411, 29.776225175076927 ], [ -96.106266191995076, 29.776311175191672 ], [ -96.103537191299111, 29.776395175617882 ], [ -96.103397191370092, 29.776405175070987 ], [ -96.103358191010926, 29.776406175135651 ], [ -96.100127190271749, 29.776505175396263 ], [ -96.099727189808448, 29.776505175588298 ], [ -96.099413190232283, 29.776497175881662 ], [ -96.099317190380717, 29.776495175940397 ], [ -96.098727189865002, 29.776475175208638 ], [ -96.097857190181799, 29.776405175517201 ], [ -96.096127189666646, 29.77620517589957 ], [ -96.092807187930632, 29.775795175998596 ], [ -96.091277188319779, 29.775615175648078 ], [ -96.086177186726758, 29.774985175578255 ], [ -96.085427186562114, 29.774885175266796 ], [ -96.083927185765191, 29.774665175889474 ], [ -96.082387185499442, 29.774395175221489 ], [ -96.08214318579914, 29.774349175695527 ], [ -96.080697185031866, 29.774075175694929 ], [ -96.079117185115308, 29.773805175520984 ], [ -96.077637184009504, 29.773575175577832 ], [ -96.075857183546034, 29.773356175311093 ], [ -96.074387183983021, 29.773175175977254 ], [ -96.073547183271302, 29.773095176104103 ], [ -96.072697183572714, 29.77300517564543 ], [ -96.06822718251432, 29.772705176059205 ], [ -96.066717182097321, 29.772585175458815 ], [ -96.064247180642482, 29.772285176194302 ], [ -96.063647180298361, 29.772195176051827 ], [ -96.062517180075488, 29.772065175864633 ], [ -96.059247180070656, 29.771675175950186 ], [ -96.058377179784713, 29.771555176374456 ], [ -96.055667178594206, 29.77123517622228 ], [ -96.050494177728382, 29.770601175659703 ], [ -96.048429176802998, 29.77034817639025 ], [ -96.046197175963925, 29.770075175945529 ], [ -96.045457175656978, 29.769975176031227 ], [ -96.044747175471983, 29.769905176159885 ], [ -96.044037175930541, 29.769855175917844 ], [ -96.043637176045337, 29.769855176056797 ], [ -96.043337175329981, 29.769855176262567 ], [ -96.042637174907881, 29.7698851762575 ], [ -96.042317175631197, 29.769915175719539 ], [ -96.041957175452794, 29.769955175925524 ], [ -96.041287174534276, 29.770045176088093 ], [ -96.040717175136336, 29.770155175987529 ], [ -96.040459174751248, 29.770216175977364 ], [ -96.038867174185697, 29.770595176230938 ], [ -96.038287174243607, 29.770725176708346 ], [ -96.03717717410764, 29.770985176287027 ], [ -96.037027174351962, 29.771025176590953 ], [ -96.036532173873695, 29.771132176171974 ], [ -96.036267173696743, 29.771185176841382 ], [ -96.036097173331711, 29.771225176970745 ], [ -96.036283173539289, 29.771748177008444 ], [ -96.036404173688766, 29.772088177055796 ], [ -96.036559173519592, 29.77234617680622 ], [ -96.036827173648263, 29.772794176468317 ], [ -96.037095174010346, 29.773242177295611 ], [ -96.03738117392696, 29.773722177012996 ], [ -96.038120174084938, 29.774292176793129 ], [ -96.038635174692388, 29.774688177157003 ], [ -96.040614174695747, 29.775896177501082 ], [ -96.042050175520032, 29.777231177617423 ], [ -96.043016176311383, 29.779134178113647 ], [ -96.042869175661863, 29.782254178297467 ], [ -96.041842175647929, 29.785858179578863 ], [ -96.041499175948815, 29.788557180062273 ], [ -96.041453176312999, 29.788925179883918 ], [ -96.04140617579661, 29.789293180130301 ], [ -96.041401176403767, 29.789756179870444 ], [ -96.041396175905334, 29.790219180427382 ], [ -96.041391175665893, 29.79083918022128 ], [ -96.041374176439476, 29.792373180829831 ], [ -96.041372175576385, 29.79244818055939 ], [ -96.041399176137332, 29.792536181168465 ], [ -96.041679176449378, 29.793455181058349 ], [ -96.041960176148393, 29.79437418130113 ], [ -96.042249176591881, 29.795319181578801 ], [ -96.042671176795466, 29.795808181737677 ], [ -96.044133177111419, 29.797516181959079 ], [ -96.044367176736571, 29.79780618152515 ], [ -96.046954177841855, 29.800995181831905 ], [ -96.047611177558551, 29.801671182659319 ], [ -96.047734178408035, 29.801797182105499 ], [ -96.047856177828621, 29.801923182841104 ], [ -96.048388177944005, 29.802468182270626 ], [ -96.048919178846461, 29.803013182652755 ], [ -96.049062178873214, 29.803117182826604 ], [ -96.04924117837723, 29.803192182485695 ], [ -96.04985717839952, 29.80320518294231 ], [ -96.050002178633591, 29.803192182583665 ], [ -96.050407178743669, 29.803155182936909 ], [ -96.050810178514467, 29.803104182595849 ], [ -96.051132179485208, 29.802853182653376 ], [ -96.051976178916888, 29.802689182200925 ], [ -96.05207217928232, 29.802670182581835 ], [ -96.053351179039808, 29.802313182703251 ], [ -96.053421179710782, 29.802313182452774 ], [ -96.05350917915213, 29.802330182068079 ], [ -96.053585179497091, 29.802379182551238 ], [ -96.05364018005686, 29.802397182444945 ], [ -96.053796179196041, 29.802231182140986 ], [ -96.053952179783806, 29.802064182614984 ], [ -96.05408117927071, 29.80192718188885 ], [ -96.054160179247305, 29.801843182302061 ], [ -96.054195179270707, 29.801806182329418 ], [ -96.054209179870483, 29.801791182535727 ], [ -96.054360179417174, 29.801629181750119 ], [ -96.054376179797046, 29.801609181764647 ], [ -96.054465179916363, 29.801517181682669 ], [ -96.054722180208742, 29.801243182468404 ], [ -96.054896179428113, 29.801036181949346 ], [ -96.05510618035305, 29.800796182159178 ], [ -96.055683180466616, 29.800135181559728 ], [ -96.055896180444577, 29.79996318175764 ], [ -96.056266179839199, 29.799665181538806 ], [ -96.057541180992516, 29.799587181256101 ], [ -96.05827918112206, 29.799759181372472 ], [ -96.059000180619975, 29.800365181810726 ], [ -96.059572180841769, 29.801527181624103 ], [ -96.060163181294797, 29.803231182347929 ], [ -96.060831181342223, 29.804574182898769 ], [ -96.061245181400778, 29.805015182724119 ], [ -96.061418182244367, 29.805200182350319 ], [ -96.062074181686654, 29.805911182553945 ], [ -96.062112181682792, 29.80595218301784 ], [ -96.062271182464968, 29.806015182736921 ], [ -96.06300518180926, 29.8063061828915 ], [ -96.063738182451246, 29.806597183212407 ], [ -96.064607182607418, 29.806944182759072 ], [ -96.066173183512504, 29.807062183000287 ], [ -96.066405182677627, 29.807079182434368 ], [ -96.066637182928332, 29.807096182391543 ], [ -96.067145183364943, 29.807134183232282 ], [ -96.067476183638121, 29.807096182762624 ], [ -96.068094183069931, 29.807106182384199 ], [ -96.068569183744501, 29.807041182728874 ], [ -96.069865184172627, 29.806960182595638 ], [ -96.07178518490727, 29.805992182589723 ], [ -96.074308185235651, 29.805148182632955 ], [ -96.077095186032281, 29.804576182199593 ], [ -96.079553186532991, 29.804425181705234 ], [ -96.082196187312064, 29.804729182159864 ], [ -96.082282186763081, 29.804738181708153 ], [ -96.082610187082665, 29.804847182004096 ], [ -96.084163187291423, 29.805371182147688 ], [ -96.085716188065447, 29.805894181970388 ], [ -96.087210188464638, 29.806395181855322 ], [ -96.0908591898053, 29.807823181739931 ], [ -96.092853189858189, 29.808604182205819 ], [ -96.095069190813589, 29.808935182097994 ], [ -96.095102190799722, 29.808929182497891 ], [ -96.095449190658769, 29.808977182560216 ], [ -96.095797190500747, 29.809025182619894 ], [ -96.098130191025334, 29.809355182086627 ], [ -96.101245192392085, 29.809462182508994 ], [ -96.101518191671531, 29.809474181744587 ], [ -96.101725192060556, 29.809514182368712 ], [ -96.102190191904043, 29.809609182430457 ], [ -96.102503192077663, 29.809670182405366 ], [ -96.102588192023561, 29.809813182253883 ], [ -96.103121192880096, 29.810715182633338 ], [ -96.103315192681521, 29.81243618242619 ], [ -96.10318019224205, 29.812697182408563 ], [ -96.102720192565542, 29.813592183097008 ], [ -96.102537193082313, 29.81395318312407 ], [ -96.102355192938532, 29.814299183366774 ], [ -96.102342192352893, 29.814325183057772 ], [ -96.102124192838374, 29.814754183569896 ], [ -96.101908192632379, 29.815199183027431 ], [ -96.101441192267657, 29.816155183559495 ], [ -96.101064192415279, 29.816670183157601 ], [ -96.100552192461393, 29.817371183499432 ], [ -96.098733191830874, 29.8202721845825 ], [ -96.098637191525512, 29.820953184117322 ], [ -96.098557191573732, 29.821556184229497 ], [ -96.098547192324119, 29.821627184526289 ], [ -96.09853819234371, 29.821697184820341 ], [ -96.09852419241858, 29.821795185080607 ], [ -96.098503192002326, 29.821949185190608 ], [ -96.098484192138301, 29.822091184806652 ], [ -96.0985191917637, 29.822444185216717 ], [ -96.098561192152445, 29.822846185390262 ], [ -96.098483191828947, 29.823052184775371 ], [ -96.098413191727829, 29.823236184772327 ], [ -96.098277192102486, 29.823594184950821 ], [ -96.098201191594612, 29.823992184940831 ], [ -96.097850192008053, 29.825839185159786 ], [ -96.098179192245553, 29.826733185773886 ], [ -96.098995192699391, 29.827387185993508 ], [ -96.099568192369901, 29.827357185864056 ], [ -96.100114192122206, 29.826936186089871 ], [ -96.102758193183405, 29.825475185436201 ], [ -96.104183193404992, 29.824417185269905 ], [ -96.105418193716531, 29.822938184733946 ], [ -96.105651193668734, 29.822811184938605 ], [ -96.105786193671861, 29.822738184752538 ], [ -96.106148193458068, 29.822540184173889 ], [ -96.106508193629693, 29.822341184653073 ], [ -96.106570194108428, 29.822308184479354 ], [ -96.10663219394452, 29.822274184302881 ], [ -96.106685194312888, 29.822245184662169 ], [ -96.107420194440394, 29.82218018456021 ], [ -96.10793219391897, 29.822285184588406 ], [ -96.10923919466245, 29.823202185016196 ], [ -96.110832195630834, 29.824769185206172 ], [ -96.111683195497889, 29.825866185042692 ], [ -96.11247119523, 29.826736185426803 ], [ -96.11403819617972, 29.828319185957472 ], [ -96.114563196807566, 29.828776185223802 ], [ -96.115276196076522, 29.829397185242051 ], [ -96.115989196661047, 29.830018185707807 ], [ -96.116040197097036, 29.830063185811721 ], [ -96.116733197177624, 29.830667185825387 ], [ -96.118875197328464, 29.832586186478494 ], [ -96.119892197595561, 29.833815186847826 ], [ -96.120717198216738, 29.83516618705184 ], [ -96.121412198583826, 29.836657186617153 ], [ -96.121684198570279, 29.837505187122083 ], [ -96.12178519876656, 29.837852186826353 ], [ -96.12183219858197, 29.83813718747118 ], [ -96.122104198341532, 29.839409187140394 ], [ -96.121905198607692, 29.840072187359912 ], [ -96.121320198310045, 29.841968187889272 ], [ -96.119972198556951, 29.84380918820041 ], [ -96.120083198852811, 29.843842188388109 ], [ -96.120160198472291, 29.843927188729719 ], [ -96.120253198694044, 29.844046188869818 ], [ -96.120293198242905, 29.84410918815469 ], [ -96.120342198325744, 29.84420918843821 ], [ -96.120353198017384, 29.844242188345138 ], [ -96.120364198893412, 29.844278188129653 ], [ -96.120370198197023, 29.844350188875243 ], [ -96.120365198707887, 29.844386188979428 ], [ -96.120293198039178, 29.844666188926865 ], [ -96.120268198006485, 29.844809188464382 ], [ -96.120262198870947, 29.844916188890171 ], [ -96.120265198683654, 29.845131188608544 ], [ -96.12027019839725, 29.845167188597369 ], [ -96.120289198713763, 29.845237188790815 ], [ -96.120334198173566, 29.845337188873025 ], [ -96.120449198596816, 29.845567189085507 ], [ -96.12048719848562, 29.845631188607161 ], [ -96.120660198376996, 29.845876188491449 ], [ -96.120782198561628, 29.846021188495527 ], [ -96.120864198970068, 29.846101188528742 ], [ -96.120940198482032, 29.846166188592711 ], [ -96.121008198569001, 29.846207188664426 ], [ -96.12115019912369, 29.846282188780933 ], [ -96.121661198574657, 29.846514188878889 ], [ -96.121773199401588, 29.846561189387518 ], [ -96.12198619872936, 29.846670188836352 ], [ -96.12208619943523, 29.846735188796249 ], [ -96.122182199220674, 29.846803189323495 ], [ -96.122242198638418, 29.846852189055785 ], [ -96.122380198793067, 29.846986189281779 ], [ -96.122560198698281, 29.847182189292681 ], [ -96.122732199281387, 29.847384189510858 ], [ -96.12284119913663, 29.847492189325884 ], [ -96.122873199454574, 29.847516188655256 ], [ -96.122991199351532, 29.847547189432692 ], [ -96.123151199226982, 29.847583189108395 ], [ -96.123639199092139, 29.847663189382398 ], [ -96.123798199028187, 29.847700189344472 ], [ -96.123874199685574, 29.847729189495471 ], [ -96.123976199354317, 29.847791189478681 ], [ -96.124102199896925, 29.847883188956068 ], [ -96.124180199958644, 29.847967189296835 ], [ -96.124203199666539, 29.847997189046115 ], [ -96.124239199558772, 29.848061188728224 ], [ -96.124300200124026, 29.848156189463587 ], [ -96.124352199763464, 29.848253189320356 ], [ -96.124426200067958, 29.848421188814079 ], [ -96.124486199695411, 29.848593189330089 ], [ -96.124543199891022, 29.848803189445224 ], [ -96.124547200188275, 29.848839189432155 ], [ -96.124638199655621, 29.849078189459103 ], [ -96.124667199536759, 29.849183189351724 ], [ -96.12467220004757, 29.849255189071343 ], [ -96.124675199950815, 29.849470189106626 ], [ -96.124666199601194, 29.849614189128257 ], [ -96.124656200288399, 29.849685189530131 ], [ -96.124646199882889, 29.849720189049332 ], [ -96.124598199794008, 29.849819189232619 ], [ -96.124585200143102, 29.849854189430186 ], [ -96.124568199441498, 29.849924189595555 ], [ -96.12455719997179, 29.849995189301875 ], [ -96.124552200016822, 29.85017418932128 ], [ -96.124567199733661, 29.850497190083683 ], [ -96.124594199637983, 29.850675189320707 ], [ -96.124613199785898, 29.850745189596356 ], [ -96.124703199366323, 29.850946189787134 ], [ -96.124816199861627, 29.851096190109708 ], [ -96.124936200023967, 29.85124318979701 ], [ -96.124994199804263, 29.851293189456101 ], [ -96.125060200055529, 29.851336189457083 ], [ -96.125119200021501, 29.851386189738417 ], [ -96.125145199726461, 29.851413189650422 ], [ -96.125212200466933, 29.851455189407588 ], [ -96.125282199673933, 29.851492189575673 ], [ -96.125418200521466, 29.851572189550666 ], [ -96.125492199669125, 29.851603189902583 ], [ -96.125598200061191, 29.851658189741872 ], [ -96.125631199772542, 29.851680190006682 ], [ -96.12566719974599, 29.851698189784756 ], [ -96.125746200674001, 29.851716189554512 ], [ -96.125787200193983, 29.851721189714016 ], [ -96.125870200501822, 29.851722190260375 ], [ -96.125911200298603, 29.851726189537501 ], [ -96.125990200539519, 29.851747189892929 ], [ -96.1261532007819, 29.851771190226234 ], [ -96.126232200338094, 29.851791189572225 ], [ -96.126441200641636, 29.85190719015262 ], [ -96.126591199945167, 29.851966190261614 ], [ -96.126670200276706, 29.851988190157495 ], [ -96.126859200798563, 29.85205918997848 ], [ -96.127130200249951, 29.852148189504359 ], [ -96.127248200263139, 29.852180189910417 ], [ -96.127409200116688, 29.852209189809326 ], [ -96.127532200484097, 29.852197190168461 ], [ -96.127615200258262, 29.852193189878818 ], [ -96.127780200290104, 29.852196189724694 ], [ -96.127945201260701, 29.852204190025706 ], [ -96.128109201307097, 29.852188189816889 ], [ -96.128189201338685, 29.852172189657963 ], [ -96.128263200365197, 29.852139190026666 ], [ -96.128379201001778, 29.852103189933104 ], [ -96.128421200369658, 29.852101189396976 ], [ -96.128668200482167, 29.852111189699734 ], [ -96.12883320145815, 29.852109189440498 ], [ -96.128915200494916, 29.852112190021749 ], [ -96.129121200553698, 29.85209918943168 ], [ -96.129320200992169, 29.852056190129787 ], [ -96.129478200839003, 29.852016190173309 ], [ -96.129775201634473, 29.851890189927477 ], [ -96.129853201157289, 29.85186818961655 ], [ -96.12988820154068, 29.851847189684886 ], [ -96.130001201148772, 29.851805189288974 ], [ -96.130102201721328, 29.851742189494317 ], [ -96.130360200908825, 29.85162918941521 ], [ -96.13067220091456, 29.851539189417963 ], [ -96.130936201903978, 29.851440189542913 ], [ -96.131056201016818, 29.851415189977804 ], [ -96.131220201273464, 29.85139918961417 ], [ -96.131302201093206, 29.851406189453908 ], [ -96.131424201575527, 29.851423189513397 ], [ -96.131464201388411, 29.85143218980658 ], [ -96.131653201309618, 29.851501189248161 ], [ -96.131870201456124, 29.851606189570525 ], [ -96.131902201344261, 29.851628189447883 ], [ -96.132023201630787, 29.851726189402285 ], [ -96.132045202090723, 29.851757189750614 ], [ -96.132080201665431, 29.851822190046185 ], [ -96.132136202201607, 29.851876189593227 ], [ -96.132167201948064, 29.851899189625005 ], [ -96.132224201977451, 29.851951189851682 ], [ -96.132330202252064, 29.852005189746798 ], [ -96.132403201361882, 29.852037190066991 ], [ -96.132574202092883, 29.852136189818872 ], [ -96.132623201997845, 29.852192190101498 ], [ -96.132666201700687, 29.852252190038548 ], [ -96.132680202442202, 29.85239519011721 ], [ -96.132679201918094, 29.852502190035143 ], [ -96.132674202239528, 29.852573189433478 ], [ -96.132662201811584, 29.852644189894345 ], [ -96.132651201685007, 29.852679190214836 ], [ -96.132599201806116, 29.852776189766413 ], [ -96.132548202038677, 29.852832189426575 ], [ -96.132518201515623, 29.852973190266749 ], [ -96.132503202293066, 29.85300619002459 ], [ -96.132482201752438, 29.85303718974744 ], [ -96.132258202067007, 29.853195190037379 ], [ -96.132138202081705, 29.853294190293717 ], [ -96.132053202305357, 29.853417190226661 ], [ -96.132016201975603, 29.853481189849866 ], [ -96.132003201508965, 29.853515189816356 ], [ -96.131893202133824, 29.853708190119317 ], [ -96.131862201385644, 29.853849190169949 ], [ -96.131840202306918, 29.854025190363469 ], [ -96.131843201308229, 29.854060190319206 ], [ -96.131839202289385, 29.854130190359729 ], [ -96.131896201809425, 29.854302190456639 ], [ -96.131899201872841, 29.854337190430222 ], [ -96.131930202350972, 29.854477190456354 ], [ -96.131928201841916, 29.854512190000527 ], [ -96.131944201698488, 29.8546181906081 ], [ -96.131969202331035, 29.854687189832859 ], [ -96.132042202431123, 29.854774190015778 ], [ -96.132078202370636, 29.854877190593012 ], [ -96.132096201833534, 29.854909190124317 ], [ -96.132173202216407, 29.854993190178554 ], [ -96.132206201526444, 29.855059189948125 ], [ -96.132245202174943, 29.855122190021284 ], [ -96.132329201530183, 29.855201190066225 ], [ -96.132363202035364, 29.855222190190783 ], [ -96.132402201535029, 29.855235190216099 ], [ -96.132437201525022, 29.855254190137764 ], [ -96.132468202187923, 29.85527819001738 ], [ -96.132495201812745, 29.855305189930572 ], [ -96.132562202511465, 29.855395190435804 ], [ -96.132593201928842, 29.855461190662215 ], [ -96.132620202381773, 29.855565189950635 ], [ -96.132588201704777, 29.85574219019183 ], [ -96.132591201870724, 29.855778190075689 ], [ -96.132619201883045, 29.8558451901906 ], [ -96.132736201828806, 29.856032190897157 ], [ -96.132875201834025, 29.856209190266465 ], [ -96.132977202668201, 29.856272190134892 ], [ -96.133006202268774, 29.856297190368082 ], [ -96.133071202485297, 29.856341190962898 ], [ -96.133098202551366, 29.856368190745812 ], [ -96.133118202002962, 29.856399190495701 ], [ -96.133144201778094, 29.856427190494195 ], [ -96.133231202801213, 29.856503190145748 ], [ -96.133266202150224, 29.856523190664568 ], [ -96.133381202221315, 29.856562190475564 ], [ -96.133460202448134, 29.856583190799991 ], [ -96.13354120227973, 29.856596190930517 ], [ -96.133658202636028, 29.856630190201134 ], [ -96.133739202172606, 29.856645190995938 ], [ -96.13381020218894, 29.856649190775489 ], [ -96.133837202532305, 29.856676190407111 ], [ -96.133868202897162, 29.856700190832523 ], [ -96.133906202511071, 29.856716190527486 ], [ -96.133983202010697, 29.856741190887142 ], [ -96.134063202593339, 29.856756190896647 ], [ -96.134220202985617, 29.856795190238778 ], [ -96.134300203092721, 29.85680719026173 ], [ -96.134463202117516, 29.856822190648565 ], [ -96.134500202595476, 29.856839190432066 ], [ -96.134538202993582, 29.856851190183566 ], [ -96.134657202222684, 29.856878190141558 ], [ -96.134739202626932, 29.85688419054523 ], [ -96.13478020242168, 29.856883190942369 ], [ -96.134818203104217, 29.856887190162865 ], [ -96.13485320289638, 29.856907190265275 ], [ -96.134931203053384, 29.856931190743236 ], [ -96.135012202596329, 29.856942190982259 ], [ -96.135050203093073, 29.85695419058839 ], [ -96.135117203125944, 29.856996190561613 ], [ -96.135222202555198, 29.857051190878636 ], [ -96.135351203219244, 29.857142190849689 ], [ -96.13542420279164, 29.85717419028877 ], [ -96.135540202877124, 29.857210190778968 ], [ -96.135574202767174, 29.857230190993626 ], [ -96.135681202548014, 29.857281190556915 ], [ -96.135721202940474, 29.857290190422344 ], [ -96.135836202816094, 29.857328190840629 ], [ -96.135910203094184, 29.857358190729244 ], [ -96.135990203240425, 29.857374190407516 ], [ -96.136031202932642, 29.857375190304115 ], [ -96.136151203237148, 29.857395190822992 ], [ -96.136189202692549, 29.857409190866214 ], [ -96.136268203094119, 29.85743019041162 ], [ -96.136378203379067, 29.857477190511343 ], [ -96.136533203547486, 29.857529190592626 ], [ -96.136642203352736, 29.857580190547079 ], [ -96.136817202954731, 29.857675190600233 ], [ -96.136881203440524, 29.857719190500049 ], [ -96.136939203139022, 29.85777019095017 ], [ -96.136972203061291, 29.857792191001128 ], [ -96.137157203622209, 29.857873190945 ], [ -96.13729320318987, 29.857954190894102 ], [ -96.137382203659371, 29.858030190684406 ], [ -96.137477203122017, 29.858098190726622 ], [ -96.137626203567734, 29.858160190863142 ], [ -96.137661203568484, 29.858178190321983 ], [ -96.137726203838668, 29.858222190373564 ], [ -96.137873203910303, 29.858287190692124 ], [ -96.137894203637046, 29.858315190428158 ], [ -96.137907203419331, 29.858349190603789 ], [ -96.13792820380246, 29.858380191079423 ], [ -96.13797520351811, 29.858408190505514 ], [ -96.138013203576335, 29.858422190929698 ], [ -96.138046203154445, 29.858442190809075 ], [ -96.138160203738082, 29.858590190470579 ], [ -96.138221203159375, 29.858723190988844 ], [ -96.138316203447332, 29.859072190612206 ], [ -96.138372203455148, 29.859206190815293 ], [ -96.13839020353798, 29.859238191218861 ], [ -96.138435203492335, 29.859376191144555 ], [ -96.138489203829963, 29.859473191354848 ], [ -96.138608204182091, 29.859619190824127 ], [ -96.138742204160323, 29.8598011912704 ], [ -96.138890204191839, 29.859972191170876 ], [ -96.1389442040944, 29.860026190923481 ], [ -96.139070203863682, 29.860118190708988 ], [ -96.139327203625697, 29.860231191431502 ], [ -96.139515204570202, 29.860304191005209 ], [ -96.139746204624302, 29.860381190888766 ], [ -96.139816203838251, 29.860416191366156 ], [ -96.139963204637056, 29.860477191306778 ], [ -96.14000120408889, 29.860487191355467 ], [ -96.140069204492647, 29.860509191349308 ], [ -96.140194204670024, 29.860551191475412 ], [ -96.140230204140195, 29.860568190831735 ], [ -96.140423203958392, 29.860632191500528 ], [ -96.140542204670126, 29.860661191410117 ], [ -96.140694204633888, 29.860716190946341 ], [ -96.140811204271515, 29.860754190755763 ], [ -96.140930204271612, 29.860782191260316 ], [ -96.140971204107174, 29.860785191307553 ], [ -96.141051204437289, 29.860802191432384 ], [ -96.141162204421164, 29.860849191594621 ], [ -96.141323204152386, 29.860875190758989 ], [ -96.141402204239256, 29.860894190898911 ], [ -96.141556204848143, 29.860943190906255 ], [ -96.14176020506919, 29.860972191412198 ], [ -96.141837204608038, 29.860995190849486 ], [ -96.141997205023529, 29.861027191017047 ], [ -96.142079204762965, 29.861035191227721 ], [ -96.142402204860758, 29.861094190893105 ], [ -96.142552204498656, 29.861155191345418 ], [ -96.142591204625191, 29.861165191205828 ], [ -96.142896205267405, 29.861276191275252 ], [ -96.143245204952962, 29.861379191323767 ], [ -96.143324204656508, 29.861399191148472 ], [ -96.143406205523533, 29.861411191229362 ], [ -96.143570205388059, 29.861404191223031 ], [ -96.14361020531689, 29.861393190747918 ], [ -96.143839205624374, 29.861313190738507 ], [ -96.143999205241926, 29.861280191409321 ], [ -96.144162205797301, 29.86130319110179 ], [ -96.144284205566109, 29.861286191038122 ], [ -96.144366205128563, 29.86128619121369 ], [ -96.144573205351705, 29.861296191025016 ], [ -96.144737205779506, 29.861309191133383 ], [ -96.145103205211427, 29.8613581912477 ], [ -96.14541220516864, 29.861458190965365 ], [ -96.145604205188178, 29.861526191425199 ], [ -96.145746205241451, 29.861598191553341 ], [ -96.14586220535891, 29.86163719082937 ], [ -96.145887205557358, 29.86166519130974 ], [ -96.145953205511475, 29.861708191386562 ], [ -96.146039205677624, 29.861784190796708 ], [ -96.146107206236792, 29.861825191058102 ], [ -96.14620320589836, 29.861890190757581 ], [ -96.146259205835761, 29.861943191230409 ], [ -96.146337205602606, 29.862026191295129 ], [ -96.146382206395856, 29.862086191056445 ], [ -96.146400206372121, 29.862118191192533 ], [ -96.146474205475698, 29.862204191622038 ], [ -96.146503205817922, 29.862230191448688 ], [ -96.146538205562791, 29.862249191148138 ], [ -96.146576206189167, 29.862261191011541 ], [ -96.146697205884038, 29.862283191306911 ], [ -96.146738206403839, 29.86228719133366 ], [ -96.146811205713561, 29.862321191465838 ], [ -96.146849206398912, 29.862333191251739 ], [ -96.147058205729152, 29.862327190944423 ], [ -96.147132205705617, 29.862295190870707 ], [ -96.147167205914045, 29.86227619088768 ], [ -96.147187205707326, 29.862245191192383 ], [ -96.147204206307464, 29.862175191421283 ], [ -96.147253205722038, 29.862077191528225 ], [ -96.147279206510859, 29.86204919110126 ], [ -96.14741720653771, 29.861970191016116 ], [ -96.147571206659578, 29.861943191263347 ], [ -96.14763920640145, 29.861901191180348 ], [ -96.147710206462349, 29.861865191323609 ], [ -96.147788206449064, 29.861840190691005 ], [ -96.147828205906222, 29.861833191423358 ], [ -96.14795120669767, 29.861821190961152 ], [ -96.14807520611501, 29.861827190681694 ], [ -96.148189206810557, 29.861870191198111 ], [ -96.148254206607874, 29.861913191416829 ], [ -96.148315206602319, 29.861962191048093 ], [ -96.148351206837319, 29.861978190962446 ], [ -96.148546206325179, 29.862037190975453 ], [ -96.148622206755888, 29.862064191155653 ], [ -96.148717206939068, 29.862130191172543 ], [ -96.148752206077702, 29.862145191417721 ], [ -96.14877420655445, 29.862176191474088 ], [ -96.148833206610405, 29.862223190887196 ], [ -96.148890206182202, 29.862276191615003 ], [ -96.148989206545224, 29.862339190889774 ], [ -96.149084206131064, 29.862407191399612 ], [ -96.149225206469112, 29.862480190808316 ], [ -96.14929220644747, 29.862521191610874 ], [ -96.149384206830661, 29.862592191154523 ], [ -96.149437207125203, 29.862647191362221 ], [ -96.149472206927271, 29.862711191163005 ], [ -96.149496206586647, 29.86278019155549 ], [ -96.149546206932001, 29.862879191179843 ], [ -96.149605206670003, 29.86301219131558 ], [ -96.149613206798918, 29.863048191253046 ], [ -96.149639207078138, 29.863115190920208 ], [ -96.149753207185995, 29.863307191798807 ], [ -96.149839206882092, 29.863427191371617 ], [ -96.149945207328244, 29.863480191208684 ], [ -96.149982206490066, 29.863494191248385 ], [ -96.150054206438398, 29.863529191734042 ], [ -96.150153206612543, 29.863593191824126 ], [ -96.150216206853742, 29.863639191686303 ], [ -96.15033020735946, 29.863679191378797 ], [ -96.150371206497496, 29.863680191335163 ], [ -96.150406206541916, 29.863665191172743 ], [ -96.150431206627019, 29.863637191463937 ], [ -96.150495206519409, 29.863591190973562 ], [ -96.150518207190004, 29.863562191256708 ], [ -96.150620206516322, 29.863501191043294 ], [ -96.1506592072502, 29.863490191616489 ], [ -96.150780207168992, 29.863466190988277 ], [ -96.150862207327734, 29.863468191559448 ], [ -96.151148206818505, 29.863507191154273 ], [ -96.151303207639216, 29.86355119137065 ], [ -96.151378207644754, 29.863582191010302 ], [ -96.151412207460069, 29.863601191632551 ], [ -96.151528207116044, 29.863702191103087 ], [ -96.151583207444048, 29.863755191483399 ], [ -96.151602207471953, 29.86378719134105 ], [ -96.15166520708415, 29.863920191462899 ], [ -96.151694207054774, 29.864061191159454 ], [ -96.151737206905338, 29.864198191414467 ], [ -96.151738207427428, 29.864234191489185 ], [ -96.15171520685638, 29.864375191729703 ], [ -96.151689207064706, 29.864443191441897 ], [ -96.151655207556033, 29.864509191988375 ], [ -96.151633207230944, 29.864539191407875 ], [ -96.151579207424945, 29.864593191281205 ], [ -96.151556206832183, 29.864623191109164 ], [ -96.151539207515057, 29.864656191826899 ], [ -96.15148520752976, 29.864867191902317 ], [ -96.15141520689231, 29.865074191770315 ], [ -96.151381207585999, 29.865251191705941 ], [ -96.151382207156445, 29.865323191333108 ], [ -96.151394207266975, 29.865431192185703 ], [ -96.151409206879279, 29.865501191390091 ], [ -96.151421207692579, 29.865536191352895 ], [ -96.151434206865261, 29.865606191393617 ], [ -96.151432207415112, 29.865785191996917 ], [ -96.151488207495717, 29.865921192194648 ], [ -96.151536207460438, 29.86597919158843 ], [ -96.151580207602251, 29.866040191585935 ], [ -96.15163520747771, 29.866136191905095 ], [ -96.151713207496073, 29.866220192127766 ], [ -96.151830207544862, 29.866321191667698 ], [ -96.151877207646493, 29.866381192133883 ], [ -96.151903207763638, 29.866408191925718 ], [ -96.152026207465738, 29.866503191777092 ], [ -96.152051207421138, 29.86653119190234 ], [ -96.152119207342594, 29.866662192333987 ], [ -96.152141207183917, 29.86673119207401 ], [ -96.152147208029234, 29.866767191768666 ], [ -96.152170207086328, 29.866835192017696 ], [ -96.152215207166506, 29.866896192244319 ], [ -96.152266207606431, 29.866950192110025 ], [ -96.152298207264337, 29.866973192169091 ], [ -96.152401207827552, 29.867030191854003 ], [ -96.152661207616134, 29.867138192195995 ], [ -96.152775207703627, 29.867176192487864 ], [ -96.152816207338063, 29.867183192202457 ], [ -96.152980207304125, 29.867179192069827 ], [ -96.153142208294554, 29.867197192157921 ], [ -96.153264208142701, 29.867177192154873 ], [ -96.153340208182783, 29.867152191867046 ], [ -96.153464207796105, 29.867149192437513 ], [ -96.153667207859954, 29.86711319160743 ], [ -96.153708208000154, 29.867101192254086 ], [ -96.153740208030882, 29.867124191968134 ], [ -96.153777208067837, 29.867141191638634 ], [ -96.153816208441995, 29.867153191634916 ], [ -96.153981207786146, 29.867159191901578 ], [ -96.154062208291592, 29.86715019159551 ], [ -96.154102208282822, 29.86714219231331 ], [ -96.154143207654684, 29.867139192244942 ], [ -96.154266208152421, 29.867140192288218 ], [ -96.154430208653196, 29.867156191844099 ], [ -96.154511207824015, 29.867169191657371 ], [ -96.154552208432449, 29.867172192014451 ], [ -96.154712208693326, 29.867205191943075 ], [ -96.154846207820313, 29.867287192181347 ], [ -96.154952208626455, 29.867393191735843 ], [ -96.154973208695012, 29.867423192070333 ], [ -96.155001207796872, 29.867489192348842 ], [ -96.155033207840134, 29.867629192460541 ], [ -96.155066208273453, 29.867695192286877 ], [ -96.155091208356822, 29.867799192413443 ], [ -96.155092208029117, 29.867835192378667 ], [ -96.155067208262636, 29.867939191711926 ], [ -96.155055208795005, 29.867974192236336 ], [ -96.154848208824959, 29.868146191977608 ], [ -96.154716207985132, 29.868282192367413 ], [ -96.154657208564984, 29.868333192266366 ], [ -96.154255207832705, 29.868637191892866 ], [ -96.154226208554945, 29.868663192402266 ], [ -96.154131207786122, 29.868779192284496 ], [ -96.154126207772308, 29.86885119265304 ], [ -96.1541312082404, 29.868922192237768 ], [ -96.154166207988212, 29.868988192256896 ], [ -96.154320208243888, 29.86919919205441 ], [ -96.154404207938157, 29.869278192670727 ], [ -96.154475207980568, 29.869312192018743 ], [ -96.154505208406817, 29.869337192295507 ], [ -96.154552208267972, 29.869395192729947 ], [ -96.154662208749286, 29.869497192657185 ], [ -96.154764208679538, 29.869553192707034 ], [ -96.154870208436975, 29.869601192277035 ], [ -96.154946208502807, 29.869620192769556 ], [ -96.155027208363904, 29.869626192680567 ], [ -96.155150208547468, 29.869622192161987 ], [ -96.155190208806076, 29.869624192811333 ], [ -96.155227207942119, 29.869642192863687 ], [ -96.155263208054663, 29.86966419222291 ], [ -96.155293208506066, 29.869683192698961 ], [ -96.155328208141469, 29.869747192503393 ], [ -96.155402208986089, 29.869814192390475 ], [ -96.155439208681258, 29.869819192323487 ], [ -96.155471208848766, 29.86984119254819 ], [ -96.155519208593546, 29.869896192351273 ], [ -96.155537208675355, 29.869929192836302 ], [ -96.15554620844874, 29.869962192916102 ], [ -96.155588208565504, 29.869968192269283 ], [ -96.155625208737405, 29.869982192484457 ], [ -96.155692208852457, 29.870022192610147 ], [ -96.155768208824838, 29.870051192882972 ], [ -96.155887208741845, 29.870075192613083 ], [ -96.156050208661199, 29.870090192385625 ], [ -96.156091208977003, 29.870084192816307 ], [ -96.156169208960833, 29.870060192636746 ], [ -96.156304208687558, 29.869979192253908 ], [ -96.156331209265019, 29.869952192327791 ], [ -96.156375208382812, 29.869891192087341 ], [ -96.156401208639608, 29.869864192603998 ], [ -96.156469208866525, 29.869822192638082 ], [ -96.156521209249206, 29.869767192789702 ], [ -96.156543209206518, 29.869736192680985 ], [ -96.156578208612714, 29.869671192307781 ], [ -96.156606208310578, 29.869645192681503 ], [ -96.156641209226393, 29.869626192074819 ], [ -96.156723208612775, 29.869618192286751 ], [ -96.156762208814243, 29.869605192091193 ], [ -96.156829208504419, 29.869564192336888 ], [ -96.157015209101573, 29.869485192591885 ], [ -96.15709620881556, 29.869472192472816 ], [ -96.157178209140937, 29.869465192365279 ], [ -96.157260209234593, 29.869471192268858 ], [ -96.157379209104207, 29.869500192169134 ], [ -96.157496208959287, 29.869536192454586 ], [ -96.157576209254813, 29.869552192466866 ], [ -96.15776620904613, 29.869623192749287 ], [ -96.157798208619496, 29.869645192398508 ], [ -96.157851208741945, 29.869700192593442 ], [ -96.157912209534203, 29.869748192139383 ], [ -96.1579392092316, 29.869775192002127 ], [ -96.157998209174849, 29.869862192625639 ], [ -96.15807420955241, 29.870021192208526 ], [ -96.158118209460923, 29.87016019203055 ], [ -96.158165209752028, 29.870335192586168 ], [ -96.158160209128596, 29.870692192557936 ], [ -96.158151209217593, 29.870800192546902 ], [ -96.158137209327776, 29.870870192873802 ], [ -96.15809820943781, 29.871008192573264 ], [ -96.158058209651969, 29.871109192435156 ], [ -96.158006209253742, 29.871206192828133 ], [ -96.157981209489876, 29.871235192916298 ], [ -96.157821208821659, 29.871348192995185 ], [ -96.157786209629407, 29.871367193041291 ], [ -96.157773209274481, 29.87140019254052 ], [ -96.157769208894479, 29.871472192451634 ], [ -96.157761208997428, 29.871507193067039 ], [ -96.157673208913067, 29.871706192930787 ], [ -96.157664209659245, 29.871740193188788 ], [ -96.157671208882732, 29.871776192926735 ], [ -96.157706209110216, 29.871878193166964 ], [ -96.157724209171235, 29.871910192477952 ], [ -96.157821208765611, 29.871999192991659 ], [ -96.157953208990136, 29.872084193301426 ], [ -96.158030209687666, 29.87210319242109 ], [ -96.158112208896895, 29.872110192571451 ], [ -96.158227209409219, 29.872147193023437 ], [ -96.158268209148602, 29.872152192948906 ], [ -96.158350209680492, 29.872148192797692 ], [ -96.158390209125301, 29.872153193158184 ], [ -96.158594209523272, 29.872135193033536 ], [ -96.158674209570819, 29.872119192616491 ], [ -96.158714209774644, 29.872107193107247 ], [ -96.158822209894495, 29.872056193145728 ], [ -96.15885520943003, 29.872035193033341 ], [ -96.158916209658301, 29.871987192909288 ], [ -96.158970209418953, 29.871933192914366 ], [ -96.158994209727368, 29.871903193211175 ], [ -96.159055209317742, 29.871810192347535 ], [ -96.159114210059542, 29.871676192424339 ], [ -96.159152209387088, 29.87161219262736 ], [ -96.159179209617562, 29.871585193043995 ], [ -96.159210209145542, 29.871561193109127 ], [ -96.159246209611851, 29.871544193010291 ], [ -96.159288209981767, 29.871543192549787 ], [ -96.159370209666051, 29.871548192983742 ], [ -96.159408209216849, 29.871563192463324 ], [ -96.15944120999886, 29.871585193030963 ], [ -96.159515209603612, 29.871615192922757 ], [ -96.159593209623665, 29.871636192321976 ], [ -96.159627209642707, 29.871657192403493 ], [ -96.159679209431815, 29.871712192279652 ], [ -96.159702209220498, 29.871742192606888 ], [ -96.159757209372984, 29.871838192813502 ], [ -96.159782209934434, 29.871905192441794 ], [ -96.159795209467177, 29.872011192647044 ], [ -96.159795209596808, 29.872048192926968 ], [ -96.159772210122156, 29.872153192783312 ], [ -96.159752209361145, 29.872222192602472 ], [ -96.159698209452259, 29.872319192778839 ], [ -96.159585209283435, 29.872469192976286 ], [ -96.159575209373088, 29.87250419284808 ], [ -96.159563209864601, 29.872575193139237 ], [ -96.159553209783894, 29.872681192843768 ], [ -96.159567209587053, 29.872752193066415 ], [ -96.159594209890329, 29.872820192563601 ], [ -96.159610210244864, 29.872890192781409 ], [ -96.159647209388865, 29.873102193198775 ], [ -96.159661209337131, 29.87331719291814 ], [ -96.159763210256642, 29.873512193328967 ], [ -96.159806209840028, 29.873572192660333 ], [ -96.159878210144342, 29.873658193197404 ], [ -96.160003209760447, 29.873752193285522 ], [ -96.160057210208137, 29.873828193298227 ], [ -96.160122209767266, 29.873959193227645 ], [ -96.160142209727951, 29.874028193239056 ], [ -96.160203210454711, 29.874160193239216 ], [ -96.160209210233063, 29.874194193432455 ], [ -96.160281210449654, 29.874360192910068 ], [ -96.160335210402238, 29.874414193336253 ], [ -96.160358209863873, 29.874443193568187 ], [ -96.160417210043278, 29.874537193340537 ], [ -96.160460210322967, 29.874596193409463 ], [ -96.160510210496639, 29.874652192900264 ], [ -96.160528209807822, 29.874684193567173 ], [ -96.160676210254593, 29.874897193488948 ], [ -96.160703209953155, 29.874924193609793 ], [ -96.16076720983358, 29.875014193685452 ], [ -96.160910209756793, 29.875312193702396 ], [ -96.16093120981418, 29.875381193053343 ], [ -96.16093221056353, 29.875417193769163 ], [ -96.160946210466733, 29.875486193894513 ], [ -96.160952210110921, 29.875557193355423 ], [ -96.160947209996323, 29.875593193433616 ], [ -96.16087120999542, 29.875831193699248 ], [ -96.160845210310455, 29.875899193972923 ], [ -96.160772210386838, 29.876175193733307 ], [ -96.160727209689512, 29.876384193933134 ], [ -96.160723209797723, 29.876420193503506 ], [ -96.160684210250551, 29.876558193691118 ], [ -96.160634209758797, 29.876693194094738 ], [ -96.160609210369728, 29.876797194104487 ], [ -96.160590209835092, 29.876901193812159 ], [ -96.160611209722646, 29.877043193665717 ], [ -96.160678210417089, 29.877247193554833 ], [ -96.160786209967569, 29.877400193550667 ], [ -96.160858210673055, 29.877486194294132 ], [ -96.161021210224177, 29.87759119426271 ], [ -96.161164210309096, 29.877663193653582 ], [ -96.161497210656805, 29.877798194194785 ], [ -96.161572210106968, 29.877824193452525 ], [ -96.161681210314342, 29.877874193751161 ], [ -96.16217221033385, 29.878138194190981 ], [ -96.16260121025995, 29.878351193684061 ], [ -96.162886210607738, 29.878497193706433 ], [ -96.162953210885235, 29.87853819436792 ], [ -96.16301421089392, 29.878585194057244 ], [ -96.163111211237691, 29.878650193791206 ], [ -96.163294210833939, 29.878732193868029 ], [ -96.163372211018199, 29.878755194368029 ], [ -96.163573210833761, 29.878793194077069 ], [ -96.163693210695882, 29.878802194292771 ], [ -96.163975211049873, 29.878806194214157 ], [ -96.164136210913483, 29.87882319373286 ], [ -96.164216210737337, 29.878836194272015 ], [ -96.16437121097141, 29.878879193966412 ], [ -96.164484210861147, 29.878921193972502 ], [ -96.16455421126166, 29.878956194452826 ], [ -96.164594211346795, 29.878967194295655 ], [ -96.164700211609414, 29.879021194274866 ], [ -96.164836211697278, 29.879101193665907 ], [ -96.164867211352302, 29.879124193734604 ], [ -96.165071210988259, 29.879241194051154 ], [ -96.165252211596766, 29.879317193785951 ], [ -96.16532821103641, 29.879341194104398 ], [ -96.165363211447698, 29.879358194159778 ], [ -96.165517211964229, 29.879404193729744 ], [ -96.165744211454665, 29.879554193761482 ], [ -96.165812211236698, 29.879591194479225 ], [ -96.165877211950075, 29.879634193666355 ], [ -96.165912211643004, 29.879652194390811 ], [ -96.166108211386728, 29.879781193818388 ], [ -96.166143211322677, 29.879800194415477 ], [ -96.166231211969603, 29.879875194154408 ], [ -96.166398211273744, 29.880031194239553 ], [ -96.166475211598851, 29.880114193769572 ], [ -96.16651921167761, 29.880172193900815 ], [ -96.166571211873332, 29.880225194545648 ], [ -96.166630211860323, 29.880273194425168 ], [ -96.166697211838724, 29.880315193964261 ], [ -96.166806211607636, 29.880363194593951 ], [ -96.166882211769078, 29.880391194638737 ], [ -96.166988212444764, 29.880444194612917 ], [ -96.16705721222786, 29.880485193843079 ], [ -96.167153211623145, 29.88055219451897 ], [ -96.167366212375256, 29.880718194589026 ], [ -96.16746121216184, 29.880787194544116 ], [ -96.167819211682485, 29.881026193942233 ], [ -96.167888211806002, 29.881065194674701 ], [ -96.168001212558579, 29.881108194263849 ], [ -96.168119212531408, 29.881141194382245 ], [ -96.168324212548342, 29.881153194551487 ], [ -96.168447212489369, 29.881150194135508 ], [ -96.16852921278192, 29.8811541942829 ], [ -96.168611211890706, 29.881163194003012 ], [ -96.168878212747515, 29.88125919438361 ], [ -96.168947212219805, 29.881297194613623 ], [ -96.169235212109086, 29.881432194177766 ], [ -96.169421212296101, 29.881509194225263 ], [ -96.169713212258287, 29.881641194299593 ], [ -96.169974212694342, 29.881746194279799 ], [ -96.170167212589035, 29.88180719402872 ], [ -96.170203212930176, 29.88182419400821 ], [ -96.170234212696386, 29.881848194510475 ], [ -96.170333213352137, 29.881909194263478 ], [ -96.1704352132639, 29.881965194371681 ], [ -96.170577213101595, 29.882032194210392 ], [ -96.170642212946134, 29.882074194643629 ], [ -96.170849213071079, 29.88218319459255 ], [ -96.170965212714378, 29.882218194052552 ], [ -96.171125212585849, 29.882247194676747 ], [ -96.171165212636652, 29.882248194121765 ], [ -96.171247212985094, 29.882258194866893 ], [ -96.171326213642274, 29.882275194094049 ], [ -96.17136121331248, 29.882294194173568 ], [ -96.171424212649683, 29.882340194171224 ], [ -96.171526212681997, 29.882453194768228 ], [ -96.171573213637771, 29.882511194106062 ], [ -96.171650212886703, 29.882595194891145 ], [ -96.171732213613964, 29.882676194774827 ], [ -96.171755212957933, 29.882705194672109 ], [ -96.171806213277463, 29.882842194951579 ], [ -96.171825213294795, 29.882947194437534 ], [ -96.171833212894626, 29.883091194801533 ], [ -96.171847213449794, 29.883233194539468 ], [ -96.171836213204401, 29.883268194811023 ], [ -96.171823213157211, 29.883338194639734 ], [ -96.171786213483472, 29.883441194323691 ], [ -96.171773213561821, 29.883512194978223 ], [ -96.171777213149866, 29.883583194766182 ], [ -96.171802213241435, 29.883651194303845 ], [ -96.171819213315771, 29.883684194684683 ], [ -96.171860213777506, 29.883793194597793 ], [ -96.171930213842444, 29.884034195172365 ], [ -96.172000213842736, 29.884238194740739 ], [ -96.172033212896267, 29.884304195087942 ], [ -96.172113213203417, 29.884503194520985 ], [ -96.172143213056941, 29.884568194867867 ], [ -96.17215321387377, 29.88460219471061 ], [ -96.172240213759821, 29.884798194669958 ], [ -96.17225921353446, 29.884829194847047 ], [ -96.172319213870367, 29.884960195386014 ], [ -96.172354213580761, 29.885023194689875 ], [ -96.172380213327571, 29.88508919542992 ], [ -96.172464213718214, 29.885211195109171 ], [ -96.1725962134485, 29.885430194673539 ], [ -96.172618213443613, 29.885460194907971 ], [ -96.1726832135965, 29.885591195004668 ], [ -96.172767213682079, 29.885790195169832 ], [ -96.172847213779562, 29.886029195611432 ], [ -96.17287921333093, 29.886094195459652 ], [ -96.172916213350447, 29.886156195283178 ], [ -96.172977213462985, 29.886286194916355 ], [ -96.1729982135341, 29.886317195593339 ], [ -96.173155213847593, 29.886483195318018 ], [ -96.173212214077466, 29.886534194841424 ], [ -96.173280213734827, 29.886575194852533 ], [ -96.173351213835616, 29.886612195153681 ], [ -96.173424213510259, 29.886643195560023 ], [ -96.173539213894287, 29.886680194888054 ], [ -96.17361921353006, 29.886697195654623 ], [ -96.173775213827156, 29.886738195328569 ], [ -96.17389721439099, 29.886757195099385 ], [ -96.173979213555825, 29.886763195249497 ], [ -96.174305213935952, 29.88677519570194 ], [ -96.174386214558709, 29.886771195162737 ], [ -96.174426214527927, 29.886764195084158 ], [ -96.174501213997786, 29.886735195383217 ], [ -96.174597214375794, 29.886667194890002 ], [ -96.174623213984646, 29.886640195627535 ], [ -96.174662214080158, 29.886578195609072 ], [ -96.174688214339312, 29.886474194776671 ], [ -96.174715214328614, 29.88633219521105 ], [ -96.174712214397502, 29.886227194791555 ], [ -96.174688214586013, 29.886125195091331 ], [ -96.174672214387812, 29.886091195497588 ], [ -96.174505213854673, 29.885807195062032 ], [ -96.174322214022965, 29.885533195145339 ], [ -96.174233214177036, 29.885415194900713 ], [ -96.17417221421799, 29.885322194937174 ], [ -96.174139214322366, 29.885219195143325 ], [ -96.174127213886976, 29.885148194858257 ], [ -96.174138213591846, 29.88507719523643 ], [ -96.174167214198008, 29.884973194467097 ], [ -96.174189214270697, 29.884943195198364 ], [ -96.174293213806664, 29.884832195034878 ], [ -96.174357214306809, 29.884788195017421 ], [ -96.174394214113207, 29.884771194778729 ], [ -96.17443321450105, 29.884762194562828 ], [ -96.174637213597265, 29.884743194963804 ], [ -96.174719214145824, 29.884744195091944 ], [ -96.174760214168629, 29.884739195081174 ], [ -96.175007214194252, 29.884764194652433 ], [ -96.175089214268027, 29.884776194644861 ], [ -96.17520721446995, 29.884805194968404 ], [ -96.175282214284962, 29.884832195283103 ], [ -96.175354213814771, 29.884867194984356 ], [ -96.175626214505513, 29.885030195207705 ], [ -96.175723214261552, 29.885095195308352 ], [ -96.175784214347246, 29.885141195280251 ], [ -96.17615521445434, 29.885369194930401 ], [ -96.176438214413096, 29.885513195269489 ], [ -96.176510214289124, 29.885546195381085 ], [ -96.176853214648446, 29.885748195047526 ], [ -96.177120215065457, 29.885916194820247 ], [ -96.177461214661463, 29.886121194765252 ], [ -96.177787215260082, 29.886337195187842 ], [ -96.177961215223377, 29.886434195304449 ], [ -96.1781772150172, 29.886536195455509 ], [ -96.178254215116411, 29.886561194751305 ], [ -96.178334215370327, 29.886578195413755 ], [ -96.17858021472162, 29.886587195500518 ], [ -96.178743214907726, 29.886603194910904 ], [ -96.178823215231532, 29.88661619467527 ], [ -96.178906215601089, 29.886617195183895 ], [ -96.17898721521108, 29.886607195005841 ], [ -96.179067215064748, 29.886592194889381 ], [ -96.17914821567409, 29.886582194635817 ], [ -96.179268215464987, 29.886558194863593 ], [ -96.17970321577657, 29.886444195136686 ], [ -96.1798992155409, 29.886388195392232 ], [ -96.180176215725098, 29.886316194939297 ], [ -96.180449215505718, 29.886232194684212 ], [ -96.180673215240276, 29.886142194499598 ], [ -96.180954215583128, 29.885992194780695 ], [ -96.181147216248505, 29.885858194700557 ], [ -96.181204215552313, 29.885807194732109 ], [ -96.181301215584057, 29.885741195044968 ], [ -96.181454215925925, 29.885623195062539 ], [ -96.18155221635601, 29.885558194477419 ], [ -96.181657215426824, 29.885500195003438 ], [ -96.181800215985831, 29.885433194683717 ], [ -96.181841215582651, 29.885427194382729 ], [ -96.181917215676236, 29.885399194384643 ], [ -96.182033215585363, 29.885364194721852 ], [ -96.182114216022427, 29.885351194725789 ], [ -96.18215521636094, 29.885351194800691 ], [ -96.182195216363723, 29.885358194993408 ], [ -96.182233215942674, 29.885373194985149 ], [ -96.182301215949309, 29.885413194974873 ], [ -96.182363216420995, 29.885459194843421 ], [ -96.182389216162292, 29.885487194527315 ], [ -96.182408215997555, 29.885518194999296 ], [ -96.182498216366966, 29.885636194382226 ], [ -96.182545215991539, 29.885732194911075 ], [ -96.182555216540536, 29.885767194712798 ], [ -96.182584216321928, 29.885834194867407 ], [ -96.182591215637729, 29.885869194820405 ], [ -96.182587215851768, 29.885905194781241 ], [ -96.182526216563346, 29.886076194406051 ], [ -96.182473215931822, 29.886129194805232 ], [ -96.182397215777641, 29.886215195289932 ], [ -96.182342215937069, 29.886267195246138 ], [ -96.182301216022864, 29.886330195041108 ], [ -96.182274215947444, 29.886397195209039 ], [ -96.182254216315798, 29.88646619512425 ], [ -96.182254216319166, 29.886503195060023 ], [ -96.182314216233806, 29.8867091950641 ], [ -96.182360215743287, 29.886768194539833 ], [ -96.182418216582406, 29.886818194890388 ], [ -96.18249621566099, 29.886898195033844 ], [ -96.18251621602316, 29.886925195120124 ], [ -96.182649216431528, 29.887056194657337 ], [ -96.18268021587717, 29.887078195000644 ], [ -96.182937216202944, 29.887288195345423 ], [ -96.183082216045349, 29.887414194922577 ], [ -96.183410215940981, 29.887683194861939 ], [ -96.183539216062371, 29.887770194923039 ], [ -96.183575216500472, 29.887787194803899 ], [ -96.183614216971463, 29.88780019477219 ], [ -96.183684216932747, 29.887837195577717 ], [ -96.183842216723846, 29.88787619484717 ], [ -96.183924216603799, 29.887877195598477 ], [ -96.183964216603684, 29.887871195316613 ], [ -96.184003216276807, 29.887859195240974 ], [ -96.184109217005087, 29.887805194734558 ], [ -96.184294217095129, 29.887733195417823 ], [ -96.184366216887511, 29.887700195300027 ], [ -96.184406216834105, 29.887691195114158 ], [ -96.184518217183822, 29.887648194806982 ], [ -96.184808216341523, 29.887519194756237 ], [ -96.184878217036868, 29.887483195070004 ], [ -96.185105216643564, 29.887399194979587 ], [ -96.18538121687817, 29.887326195414282 ], [ -96.185462217021396, 29.887312195256552 ], [ -96.185586216963486, 29.887310195379786 ], [ -96.185626216561602, 29.887319195266709 ], [ -96.185699216848931, 29.887352195078556 ], [ -96.185769216568758, 29.887390194711518 ], [ -96.185801217215257, 29.88741219455682 ], [ -96.185890217561777, 29.887485194678987 ], [ -96.186029217243615, 29.887613194949008 ], [ -96.18607721735377, 29.887670195478211 ], [ -96.186131217390766, 29.887722194940864 ], [ -96.186151217488032, 29.887754194971066 ], [ -96.186305217479884, 29.887868194689585 ], [ -96.186370217303619, 29.887911195258177 ], [ -96.186427216823844, 29.887960195444798 ], [ -96.186524216742654, 29.88802519469796 ], [ -96.186558217559224, 29.888044195004145 ], [ -96.186685217461275, 29.888133194997412 ], [ -96.186964217674486, 29.888288195233695 ], [ -96.18707821712195, 29.88832319535949 ], [ -96.187195217206138, 29.88835019482342 ], [ -96.187235217288602, 29.888356195358458 ], [ -96.187391217548267, 29.888396195335716 ], [ -96.18755321757385, 29.88841919493554 ], [ -96.187794217993996, 29.888461195252635 ], [ -96.187874217406005, 29.888479195473888 ], [ -96.187956217581998, 29.888488194947886 ], [ -96.188038217211727, 29.888487195127457 ], [ -96.188202218053334, 29.888495195504269 ], [ -96.188243217859565, 29.888493194737659 ], [ -96.188364217675087, 29.88847119501159 ], [ -96.188445217350093, 29.888477195111783 ], [ -96.188524217488364, 29.888495194761955 ], [ -96.188562217712004, 29.88850919479788 ], [ -96.188674217476816, 29.888615194924714 ], [ -96.188697217334123, 29.888643195431758 ], [ -96.188778217395367, 29.888722195132399 ], [ -96.188898217810546, 29.888819195505647 ], [ -96.188946218023275, 29.888876194943421 ], [ -96.189029217933168, 29.888954194937224 ], [ -96.18913721796082, 29.889005195416463 ], [ -96.189218218105822, 29.889011195049093 ], [ -96.189259218074767, 29.889009194874383 ], [ -96.189299218053208, 29.889000195037905 ], [ -96.189684218218076, 29.88888619508408 ], [ -96.189801218216388, 29.888858195586842 ], [ -96.189843218167965, 29.888855195497957 ], [ -96.189921218434506, 29.888838195028065 ], [ -96.190484218451473, 29.888745195118897 ], [ -96.190565218417348, 29.888735195175517 ], [ -96.190762218326981, 29.888686195526699 ], [ -96.190838218275346, 29.888658195015637 ], [ -96.190874218245099, 29.888641194620302 ], [ -96.191105218593052, 29.888569195090646 ], [ -96.191228218969641, 29.88856619529728 ], [ -96.191269218616583, 29.888569195021379 ], [ -96.191467218436401, 29.888601195466777 ], [ -96.191547218324246, 29.888621195141873 ], [ -96.191627218134315, 29.888633195387047 ], [ -96.191709218911967, 29.888627194636285 ], [ -96.191788219080436, 29.888610195064917 ], [ -96.19190021904285, 29.888564195195901 ], [ -96.191994219068235, 29.888497194714724 ], [ -96.192075218732157, 29.888418194699419 ], [ -96.192161218560599, 29.888342195249081 ], [ -96.192261218323054, 29.888228194720938 ], [ -96.192313218666897, 29.888132194637894 ], [ -96.192363218949723, 29.887995194667809 ], [ -96.192369218705707, 29.887960194766233 ], [ -96.192366219161556, 29.887888194436478 ], [ -96.192351218784722, 29.887781194791451 ], [ -96.192357218532194, 29.887746194888045 ], [ -96.192395218321465, 29.887644194682363 ], [ -96.19242921896425, 29.887579194563664 ], [ -96.192502218722254, 29.887415195019162 ], [ -96.192521218592276, 29.88731119447856 ], [ -96.192528218460424, 29.887240194806907 ], [ -96.192526219248464, 29.887168194638964 ], [ -96.192513218231795, 29.887098194255501 ], [ -96.192500219070453, 29.886992194881362 ], [ -96.19248921852811, 29.886850194972702 ], [ -96.192513219179475, 29.886710194430052 ], [ -96.192526218417129, 29.886568194883498 ], [ -96.192537218263254, 29.886498194880105 ], [ -96.192531218816129, 29.886427194851294 ], [ -96.192515218476586, 29.886321194931494 ], [ -96.192457218811569, 29.886115194813673 ], [ -96.192440218968969, 29.886082194518991 ], [ -96.192419218319003, 29.886013194498663 ], [ -96.192386218779717, 29.885875194179572 ], [ -96.192372218299226, 29.885733194606654 ], [ -96.192358218581987, 29.885664194855497 ], [ -96.192347218943482, 29.885559194756841 ], [ -96.192347218163547, 29.885524194717096 ], [ -96.192334218147849, 29.885420194192243 ], [ -96.192328218246814, 29.885243194113926 ], [ -96.192316218256394, 29.885138194724188 ], [ -96.192298218491302, 29.88507019420177 ], [ -96.19225721835241, 29.884968194200852 ], [ -96.192194219011128, 29.884877194156072 ], [ -96.192140218497698, 29.88482519440154 ], [ -96.192108218379943, 29.884803194267374 ], [ -96.191957218701035, 29.884750194289431 ], [ -96.191916218571961, 29.884742194209245 ], [ -96.19176221884203, 29.884694194013672 ], [ -96.191655218608275, 29.884641194024702 ], [ -96.191519218394319, 29.884560194648095 ], [ -96.191461217979935, 29.88451119458426 ], [ -96.191436218536865, 29.88448319416975 ], [ -96.191416217846722, 29.884452193923948 ], [ -96.191393218790751, 29.884350194076287 ], [ -96.191392218526232, 29.884280193807871 ], [ -96.191387217885236, 29.884247194527468 ], [ -96.191391218637676, 29.884211194372131 ], [ -96.191412218619107, 29.884143194193257 ], [ -96.191518218653385, 29.883993194316858 ], [ -96.19155021843892, 29.883971194333814 ], [ -96.191620218381189, 29.883935193882927 ], [ -96.191732218859627, 29.88389019412617 ], [ -96.191848218454652, 29.883852194413461 ], [ -96.19204521818736, 29.883807193609968 ], [ -96.192125218650418, 29.883794193765532 ], [ -96.192206218797992, 29.883787194482089 ], [ -96.192406218672076, 29.883758194250689 ], [ -96.192486218230187, 29.883743194325934 ], [ -96.192609218964591, 29.88373519377333 ], [ -96.19277421879427, 29.883735193994692 ], [ -96.192854218639653, 29.883746193681436 ], [ -96.192934218480488, 29.883762193841203 ], [ -96.19297021837518, 29.883780193840238 ], [ -96.193060218465519, 29.883852193997686 ], [ -96.193128218263652, 29.883939193886075 ], [ -96.193160218559129, 29.884004194114478 ], [ -96.193197218823755, 29.884064193717521 ], [ -96.193206218484718, 29.884097194448525 ], [ -96.193272218817896, 29.884184193939216 ], [ -96.193380218896948, 29.884292194003987 ], [ -96.193576218548273, 29.884470194477473 ], [ -96.193790218803215, 29.884633194119541 ], [ -96.193847218760055, 29.884684193732923 ], [ -96.193971219060828, 29.884826194082393 ], [ -96.194053219222539, 29.884946193998207 ], [ -96.194078219498238, 29.884974193921106 ], [ -96.194136218944976, 29.885066194000558 ], [ -96.194263219447947, 29.88540319393578 ], [ -96.194293219053876, 29.88546819442022 ], [ -96.194330218741158, 29.885570194017632 ], [ -96.194389218623812, 29.885702194644182 ], [ -96.194438218638595, 29.885800194539161 ], [ -96.194660219369311, 29.886142194461666 ], [ -96.194698219219021, 29.886242194231372 ], [ -96.194700219515354, 29.886313194456605 ], [ -96.194673218958656, 29.886379194308443 ], [ -96.194651219505417, 29.886409194106857 ], [ -96.194609219042832, 29.886507194628106 ], [ -96.194590219066342, 29.886574194698063 ], [ -96.194571219591211, 29.886606194779535 ], [ -96.194549219350918, 29.886673194384386 ], [ -96.194505218877609, 29.886771194567007 ], [ -96.194481218728328, 29.886838194760522 ], [ -96.194433219109953, 29.886935194406789 ], [ -96.194412219281418, 29.886966194231064 ], [ -96.194379219090919, 29.887030194170951 ], [ -96.194214218970487, 29.887278194836757 ], [ -96.194166219492757, 29.887335194784612 ], [ -96.194082219597206, 29.887413194744674 ], [ -96.193983219622396, 29.887477194315743 ], [ -96.193926219269557, 29.887527195113179 ], [ -96.193855219326053, 29.887612194604309 ], [ -96.193843219154459, 29.887646194600283 ], [ -96.193837218888135, 29.887681194549621 ], [ -96.193838219573436, 29.887716194708609 ], [ -96.193859219464997, 29.88778519442608 ], [ -96.193882218888518, 29.887814194841727 ], [ -96.193980218978851, 29.888005195214905 ], [ -96.194008219365728, 29.888070194500646 ], [ -96.194043219471524, 29.888132195087721 ], [ -96.194084218922171, 29.888191195003646 ], [ -96.194101219222858, 29.888223195136828 ], [ -96.194129218719524, 29.888249194702961 ], [ -96.19418321916578, 29.888343194778127 ], [ -96.19423621953122, 29.888479195005608 ], [ -96.194253218892655, 29.888511195094921 ], [ -96.194299218757564, 29.88857019480249 ], [ -96.194395219752792, 29.888638195092458 ], [ -96.194545218933655, 29.888694195328874 ], [ -96.194623219434206, 29.888716194515883 ], [ -96.195041219271246, 29.888862194609242 ], [ -96.195123219204106, 29.888871195093294 ], [ -96.195163219595869, 29.888862195334259 ], [ -96.195244219835146, 29.888856194974743 ], [ -96.195406219167353, 29.888851195342102 ], [ -96.195602220003295, 29.888900195265073 ], [ -96.195724219733137, 29.888915195192379 ], [ -96.195886220022842, 29.888905195391366 ], [ -96.196008219542335, 29.888889194781559 ], [ -96.196087219880511, 29.888869194735889 ], [ -96.196163219295528, 29.888843194680558 ], [ -96.196196220015963, 29.888821194673501 ], [ -96.196278219702052, 29.888741195117202 ], [ -96.196302219917058, 29.888713195207927 ], [ -96.196404220063201, 29.888654194880754 ], [ -96.196512220102818, 29.888603194663077 ], [ -96.196552219366467, 29.88859219462752 ], [ -96.196659220290925, 29.888542195000184 ], [ -96.196794219666501, 29.888466194733507 ], [ -96.196866220323599, 29.888434195150651 ], [ -96.197022220266902, 29.888319195117962 ], [ -96.197081220362392, 29.88826919510397 ], [ -96.197233220300305, 29.888102194775627 ], [ -96.197304219812949, 29.88801719445604 ], [ -96.197347220488098, 29.887957194844333 ], [ -96.197365219947699, 29.887925194266543 ], [ -96.197423219592949, 29.887792195062314 ], [ -96.197486220125739, 29.887661194531958 ], [ -96.197537220270576, 29.887525194616469 ], [ -96.197725220445577, 29.88690119443255 ], [ -96.197793219820056, 29.886621194268205 ], [ -96.197873219615047, 29.886379194415031 ], [ -96.197979219998928, 29.886147194294924 ], [ -96.198042220264867, 29.886055194032764 ], [ -96.198133220551455, 29.885936193919751 ], [ -96.198173219741733, 29.885874194686057 ], [ -96.198228220458489, 29.885822193842305 ], [ -96.198289220245485, 29.88577419428745 ], [ -96.198327220000678, 29.88576219448419 ], [ -96.198367219800303, 29.88575519452689 ], [ -96.198490220299988, 29.885767194202845 ], [ -96.198612220163781, 29.8857631939775 ], [ -96.198730220165231, 29.88573219436935 ], [ -96.198878220418777, 29.885671194260631 ], [ -96.198912219821082, 29.885651194434875 ], [ -96.198974220651422, 29.88560319381298 ], [ -96.199029220763592, 29.885551194440286 ], [ -96.199101220572814, 29.885464194351769 ], [ -96.199136220707672, 29.88539919450491 ], [ -96.199158220692723, 29.88536919400488 ], [ -96.199201220636894, 29.885334194536142 ], [ -96.199283220783045, 29.885340193681291 ], [ -96.199394220342342, 29.885383194120791 ], [ -96.199535220410979, 29.88545119414513 ], [ -96.199612220035803, 29.885473193962156 ], [ -96.199733220827838, 29.885477193811006 ], [ -96.199773220394221, 29.885470194335841 ], [ -96.199810220631562, 29.885454194328087 ], [ -96.19988922061637, 29.885434193891182 ], [ -96.199927220171901, 29.885433193678242 ], [ -96.199968220181731, 29.885424194422416 ], [ -96.200081220231112, 29.885384193790333 ], [ -96.200117221083076, 29.885366193758337 ], [ -96.200145220431253, 29.885341194259066 ], [ -96.200164220451157, 29.885310194252636 ], [ -96.200297220549174, 29.88513219378823 ], [ -96.200324221029561, 29.885104194401631 ], [ -96.200341220692962, 29.885072194224016 ], [ -96.200387221005073, 29.884934193740758 ], [ -96.200388220644669, 29.884828194000036 ], [ -96.200384220190543, 29.884792193663202 ], [ -96.200363220662894, 29.88472319408535 ], [ -96.200359220221728, 29.884687193746537 ], [ -96.200307221087996, 29.884591193818277 ], [ -96.200230220478645, 29.884506193860574 ], [ -96.200174220542522, 29.884454193598057 ], [ -96.200108220442203, 29.884412194134768 ], [ -96.200078220701243, 29.884388193607688 ], [ -96.200028220308923, 29.884332194242827 ], [ -96.19999922003781, 29.8843061939519 ], [ -96.199780220471453, 29.884150194269331 ], [ -96.199723219940964, 29.884101193445719 ], [ -96.199599219897479, 29.884011193590752 ], [ -96.199583220580109, 29.883978193442132 ], [ -96.19953222011678, 29.883926193449199 ], [ -96.199512220203175, 29.883895193567469 ], [ -96.199391220660118, 29.883757193973011 ], [ -96.199311220488184, 29.883679193458647 ], [ -96.199132220155192, 29.883538193393232 ], [ -96.198992220631808, 29.883462193592194 ], [ -96.198928219890689, 29.88341919381288 ], [ -96.198904220583216, 29.883392193959068 ], [ -96.198870219647887, 29.88332819392809 ], [ -96.198800219696608, 29.883124194089962 ], [ -96.198779220012128, 29.883023193957964 ], [ -96.198780219947608, 29.882989193994138 ], [ -96.198652219593399, 29.882696193911954 ], [ -96.198647219927722, 29.882661193302575 ], [ -96.198648219997352, 29.882625193491826 ], [ -96.198632220081308, 29.882488193982024 ], [ -96.198633220512079, 29.882382193248304 ], [ -96.198642220204434, 29.88231019355846 ], [ -96.198703220087665, 29.882031193528167 ], [ -96.198714219649403, 29.881997193853262 ], [ -96.198927219802385, 29.88173319371165 ], [ -96.198988220422009, 29.881640193698715 ], [ -96.199002219942571, 29.881606193452367 ], [ -96.199036220295838, 29.881466192904323 ], [ -96.19908222027253, 29.881408192878283 ], [ -96.199111220188769, 29.881383193710814 ], [ -96.199178220385392, 29.881342193025553 ], [ -96.199250220411272, 29.881310193101079 ], [ -96.199328220193735, 29.881286193218546 ], [ -96.199477220028399, 29.881229193208249 ], [ -96.199693220003226, 29.881132192921573 ], [ -96.199731220004722, 29.881118192901319 ], [ -96.199972220465696, 29.881075193577896 ], [ -96.200013219969833, 29.881075193630444 ], [ -96.200091220081276, 29.881091192950397 ], [ -96.200241220363154, 29.881149193308374 ], [ -96.200418220003996, 29.881236193275615 ], [ -96.200445220300963, 29.881263193224612 ], [ -96.200490220584996, 29.881321193624999 ], [ -96.20050422008137, 29.881354193484249 ], [ -96.20052522016465, 29.881385193358408 ], [ -96.200577220174338, 29.881439192975577 ], [ -96.20064822054357, 29.881475193285429 ], [ -96.200769220355681, 29.881493193008275 ], [ -96.200810220724847, 29.881486193371778 ], [ -96.200848220654407, 29.88147419288148 ], [ -96.20111122071971, 29.88137119302792 ], [ -96.20125922092457, 29.881309193154141 ], [ -96.201375220473608, 29.88127419320077 ], [ -96.201478220790548, 29.881217193556797 ], [ -96.201576220375117, 29.88115219303608 ], [ -96.201605220641753, 29.881127193349183 ], [ -96.201657220614862, 29.881072192833756 ], [ -96.20170322100104, 29.881012193002174 ], [ -96.201722220774982, 29.880981192754071 ], [ -96.20177722060464, 29.880928193233739 ], [ -96.201934220792339, 29.880814193012753 ], [ -96.201962221046074, 29.880788193229577 ], [ -96.201995220430391, 29.880767193520562 ], [ -96.202107220903088, 29.880722193350394 ], [ -96.202216221113517, 29.880685193082577 ], [ -96.202339221087129, 29.88069119343049 ], [ -96.20237322074324, 29.880711193272344 ], [ -96.202457221312059, 29.880789193318702 ], [ -96.202503220823132, 29.88084719311038 ], [ -96.202673221182891, 29.881001193289382 ], [ -96.202773221075333, 29.881112192919801 ], [ -96.202836221176369, 29.881203193389471 ], [ -96.202878221098345, 29.881341192801436 ], [ -96.202885221596929, 29.881410193507875 ], [ -96.202901220809721, 29.881478193266879 ], [ -96.202947221382729, 29.881614193168929 ], [ -96.202980221320388, 29.881679192875289 ], [ -96.203049221388, 29.881718193278157 ], [ -96.20316222080757, 29.881762193504077 ], [ -96.203241220677441, 29.881781193525434 ], [ -96.203364221516068, 29.881788192843263 ], [ -96.203446221047997, 29.881786192822684 ], [ -96.203566220780147, 29.881765192950258 ], [ -96.203644221379221, 29.88174419306764 ], [ -96.203680221331368, 29.881728192827062 ], [ -96.203720221188803, 29.881717193423238 ], [ -96.204046221283861, 29.881685193020395 ], [ -96.204126221457003, 29.8816721932936 ], [ -96.204165221920164, 29.881659192943655 ], [ -96.204271221120806, 29.881606192898694 ], [ -96.20433222167398, 29.881558193368065 ], [ -96.204408221760119, 29.881473193349077 ], [ -96.204428221164378, 29.881442192808642 ], [ -96.204490221736805, 29.881309192682796 ], [ -96.204513221142207, 29.88128019311025 ], [ -96.204571221280943, 29.881228193541443 ], [ -96.204705221520101, 29.881147193014332 ], [ -96.204776221782197, 29.881112193031541 ], [ -96.204841221439366, 29.881084192904158 ], [ -96.204998222089372, 29.881018192664214 ], [ -96.205038221525854, 29.881007192865095 ], [ -96.20507922142184, 29.881004193417112 ], [ -96.205240221848328, 29.880980192625287 ], [ -96.205315221238976, 29.880949193224488 ], [ -96.205420221245262, 29.880893193368824 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1448, "Tract": "48015760302", "Area_SqMi": 99.889187325009516, "total_2009": 4121, "total_2010": 1384, "total_2011": 1435, "total_2012": 1537, "total_2013": 1599, "total_2014": 1807, "total_2015": 1895, "total_2016": 2162, "total_2017": 2069, "total_2018": 2133, "total_2019": 2046, "total_2020": 2210, "age1": 803, "age2": 991, "age3": 527, "earn1": 490, "earn2": 1223, "earn3": 608, "naics_s01": 13, "naics_s02": 21, "naics_s03": 0, "naics_s04": 98, "naics_s05": 210, "naics_s06": 37, "naics_s07": 1140, "naics_s08": 350, "naics_s09": 2, "naics_s10": 4, "naics_s11": 5, "naics_s12": 18, "naics_s13": 0, "naics_s14": 27, "naics_s15": 0, "naics_s16": 103, "naics_s17": 8, "naics_s18": 227, "naics_s19": 23, "naics_s20": 35, "race1": 1760, "race2": 413, "race3": 18, "race4": 88, "race5": 3, "race6": 39, "ethnicity1": 1466, "ethnicity2": 855, "edu1": 364, "edu2": 463, "edu3": 468, "edu4": 223, "Shape_Length": 312781.71090850868, "Shape_Area": 2784739580.5685387, "total_2021": 2364, "total_2022": 2321 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.420140274003046, 29.838988177145243 ], [ -96.420128274657898, 29.838922177203276 ], [ -96.420102274202975, 29.838850177509602 ], [ -96.419976274495681, 29.83868517732844 ], [ -96.419806273947273, 29.838691176805487 ], [ -96.419699274124994, 29.838652177347928 ], [ -96.419604273767803, 29.838548177363343 ], [ -96.41949727370546, 29.838389177007453 ], [ -96.419251273584806, 29.837817176613473 ], [ -96.419151273421946, 29.837690177255755 ], [ -96.419100274158893, 29.83757517733493 ], [ -96.419075273919532, 29.837437176586864 ], [ -96.419176273975538, 29.837196176644369 ], [ -96.419334273665115, 29.837003176341085 ], [ -96.419409273924487, 29.836794176994481 ], [ -96.419359273736802, 29.836635176667105 ], [ -96.419264274268841, 29.836536176723957 ], [ -96.419113274093235, 29.836245176193081 ], [ -96.41911327361484, 29.836008176933287 ], [ -96.419189273905673, 29.835656176839457 ], [ -96.419139273437608, 29.835233176293503 ], [ -96.419145273310278, 29.834727176443614 ], [ -96.419076273267549, 29.834408176377949 ], [ -96.419050273707867, 29.834216176375936 ], [ -96.419095273933138, 29.833980176518967 ], [ -96.419227273799777, 29.83365517621311 ], [ -96.4192402740549, 29.833007175951231 ], [ -96.419177273984587, 29.83233617562064 ], [ -96.419190273934404, 29.832006176097707 ], [ -96.419259273424572, 29.831649175865078 ], [ -96.419411273359884, 29.831116175727985 ], [ -96.419449274108132, 29.830769175211206 ], [ -96.419417273902312, 29.830280175407477 ], [ -96.419379273494869, 29.830082175044424 ], [ -96.419304273461222, 29.829972175459222 ], [ -96.419146273235185, 29.829846175744795 ], [ -96.419115273937933, 29.829675175435117 ], [ -96.419172273929007, 29.829450174934841 ], [ -96.418724273043793, 29.828982175412872 ], [ -96.418308273371323, 29.828664175553062 ], [ -96.417892272638227, 29.828477175195061 ], [ -96.417652272685061, 29.828389175495907 ], [ -96.417205272742066, 29.828295174672814 ], [ -96.416593272936836, 29.828223175474349 ], [ -96.415837272433009, 29.828097174791594 ], [ -96.415452272812644, 29.827921175452104 ], [ -96.415313271985639, 29.827794175376606 ], [ -96.415143272708022, 29.82759617514985 ], [ -96.414979272748411, 29.82717917470346 ], [ -96.414797272018959, 29.826629174481457 ], [ -96.41469627243724, 29.826425175000118 ], [ -96.414557272049962, 29.826249174527248 ], [ -96.414362271912879, 29.826019174502271 ], [ -96.413290272042644, 29.824990174277655 ], [ -96.412698272115392, 29.824660174352964 ], [ -96.412231271730846, 29.824550174673064 ], [ -96.41173927096915, 29.824561174936967 ], [ -96.411046270919229, 29.824693174917623 ], [ -96.410850270701133, 29.824869174152454 ], [ -96.410787271501718, 29.825072174539141 ], [ -96.41077527163597, 29.825166174301117 ], [ -96.410662270799989, 29.825302174361468 ], [ -96.41044727099414, 29.825424174397533 ], [ -96.410119271028066, 29.825490175076556 ], [ -96.409684270474983, 29.825457174867832 ], [ -96.409375270449033, 29.825402174822166 ], [ -96.409072270352524, 29.825264174710249 ], [ -96.408953270280847, 29.825072174441651 ], [ -96.408802270654618, 29.824439174943073 ], [ -96.408568270387718, 29.824115174533677 ], [ -96.408291270232027, 29.823884174382133 ], [ -96.408020270636783, 29.823824174111337 ], [ -96.4077172702182, 29.823823174176091 ], [ -96.40745927004096, 29.823939174510794 ], [ -96.407339270073749, 29.824071174140592 ], [ -96.407200269835414, 29.824340174317772 ], [ -96.407093269889231, 29.824483174899274 ], [ -96.406040269935303, 29.825241175155469 ], [ -96.405624269455458, 29.82544517521686 ], [ -96.405334270185193, 29.825516175153808 ], [ -96.405138270118186, 29.825549175129211 ], [ -96.404918270046437, 29.825538175040947 ], [ -96.404766269706457, 29.825505175204011 ], [ -96.404464269430633, 29.825356175093482 ], [ -96.404104269023762, 29.825131174563012 ], [ -96.40391526893012, 29.825059175236973 ], [ -96.403695269058872, 29.825076174842245 ], [ -96.403518269518429, 29.82515317494331 ], [ -96.403203269585546, 29.825185174729427 ], [ -96.40290726925123, 29.825191175224372 ], [ -96.402673269582635, 29.825158175038517 ], [ -96.402459268972109, 29.825097174749359 ], [ -96.402144268622266, 29.825042175279034 ], [ -96.401841268995952, 29.824971174522471 ], [ -96.401663269209436, 29.824920174557477 ], [ -96.401324268893717, 29.824822175339474 ], [ -96.399263268114666, 29.823887174969865 ], [ -96.398437267783848, 29.823524174706023 ], [ -96.398229267762702, 29.823403174311995 ], [ -96.397731268140106, 29.822996174945818 ], [ -96.397385267861395, 29.822820174484367 ], [ -96.396975267524013, 29.822649174782683 ], [ -96.3965722673138, 29.822583174908903 ], [ -96.396206267397559, 29.822605174343554 ], [ -96.395676267380281, 29.822709174529042 ], [ -96.395424267216541, 29.822836174463419 ], [ -96.395159267482612, 29.823017175159265 ], [ -96.39492026735725, 29.82328617459315 ], [ -96.394825267151248, 29.823462174537443 ], [ -96.394781267462974, 29.82372617477456 ], [ -96.394718266976682, 29.823907174924781 ], [ -96.394415267256932, 29.824122175305632 ], [ -96.394251267041781, 29.824198175023295 ], [ -96.394018266569958, 29.824237174724033 ], [ -96.393778266929147, 29.824198174657322 ], [ -96.393583266524359, 29.824116174889809 ], [ -96.393381267174149, 29.823830175074651 ], [ -96.393261266693614, 29.82354917467698 ], [ -96.393261266724409, 29.823401174631339 ], [ -96.393306267108343, 29.823242175017793 ], [ -96.393507266701135, 29.822928175119191 ], [ -96.393873266857383, 29.822544174870483 ], [ -96.393911266321808, 29.822483174762361 ], [ -96.393924267035402, 29.822357174328406 ], [ -96.393842266564093, 29.822109175018781 ], [ -96.393779267071423, 29.821994174666493 ], [ -96.393609266739787, 29.821829174174777 ], [ -96.393338266663079, 29.821741174603538 ], [ -96.393067266511963, 29.821763174666014 ], [ -96.392890266971705, 29.821818174721059 ], [ -96.392632266623124, 29.821999174838119 ], [ -96.392436266384195, 29.822114174475441 ], [ -96.392039265947261, 29.822208174543228 ], [ -96.391970266673482, 29.822212175078011 ], [ -96.391610266604815, 29.822235174776974 ], [ -96.390797266490438, 29.822158174930035 ], [ -96.390167265414917, 29.822003174629451 ], [ -96.389959265761235, 29.821943175099676 ], [ -96.389789265651984, 29.821745174621281 ], [ -96.389549265620659, 29.821399174607585 ], [ -96.389354265120375, 29.821327174711559 ], [ -96.389039265912729, 29.821310174712377 ], [ -96.388818264993105, 29.821464174969076 ], [ -96.388729265803946, 29.821723175076936 ], [ -96.388767265807701, 29.822058174486099 ], [ -96.388672265478888, 29.822278175118875 ], [ -96.388433265358898, 29.822476174683036 ], [ -96.388042265287169, 29.822574174797193 ], [ -96.387752265656673, 29.822541174804982 ], [ -96.387569265501824, 29.822486175270836 ], [ -96.387361265082433, 29.822475175122179 ], [ -96.387002264987274, 29.822546174667245 ], [ -96.386428264587735, 29.822865174705179 ], [ -96.385545265212187, 29.823222174861801 ], [ -96.384568264080684, 29.823524174988073 ], [ -96.384101264016152, 29.823568175642723 ], [ -96.383723264634838, 29.823661175521607 ], [ -96.383313264320861, 29.823831175187387 ], [ -96.383054264007853, 29.824045175148687 ], [ -96.382966263968484, 29.824238175705137 ], [ -96.382612263906424, 29.824892175731581 ], [ -96.38242326451973, 29.825084175630359 ], [ -96.382234264261584, 29.82516117542087 ], [ -96.381925263508379, 29.825194175595403 ], [ -96.381566263618282, 29.825128175689667 ], [ -96.381351263839392, 29.82513317522637 ], [ -96.380897263140696, 29.825254175829944 ], [ -96.380210263750428, 29.825501175898285 ], [ -96.379945263288946, 29.825517175402336 ], [ -96.379605263617236, 29.825440176123017 ], [ -96.379334262976798, 29.825308175941974 ], [ -96.379208262961214, 29.825044176174988 ], [ -96.379145262912829, 29.824797175874082 ], [ -96.379089263141424, 29.824252175442243 ], [ -96.378988263137487, 29.823955175242194 ], [ -96.378849263445986, 29.823703175157906 ], [ -96.378662263045754, 29.823601175421672 ], [ -96.378484262922044, 29.823505175718644 ], [ -96.378036262890774, 29.823433175796033 ], [ -96.377689262897547, 29.823477175684012 ], [ -96.377349262161914, 29.823652175585785 ], [ -96.376952262820012, 29.823889175643473 ], [ -96.376447262314386, 29.824097175215918 ], [ -96.37615126265284, 29.824174175839222 ], [ -96.375690262428421, 29.824174175910589 ], [ -96.375520261971602, 29.824146175311249 ], [ -96.375274261848176, 29.824036175620403 ], [ -96.375004262196356, 29.823899175684478 ], [ -96.374888262525303, 29.823815175287979 ], [ -96.374762261797429, 29.82374417541573 ], [ -96.374579261642324, 29.823662175955388 ], [ -96.374478261479055, 29.823656175461139 ], [ -96.37428926150946, 29.823612175495402 ], [ -96.374099262004364, 29.823612175934045 ], [ -96.373589262007201, 29.823684175336954 ], [ -96.37347526206311, 29.823690175556102 ], [ -96.373393261228557, 29.823717175985266 ], [ -96.373103261947179, 29.823728175391238 ], [ -96.372921261657254, 29.823673175364174 ], [ -96.372492260978561, 29.823591175338372 ], [ -96.3720002613519, 29.823470175712231 ], [ -96.371685261541273, 29.823421175909409 ], [ -96.371401261451282, 29.823388175980806 ], [ -96.371073261136758, 29.823432175666262 ], [ -96.370865261340057, 29.823449175326743 ], [ -96.37056326051443, 29.823515176093441 ], [ -96.37036126110435, 29.82361917535389 ], [ -96.369989261195727, 29.823674175825598 ], [ -96.369623261157187, 29.823587176181615 ], [ -96.369409260468615, 29.823455176187888 ], [ -96.369138260646125, 29.823169175552945 ], [ -96.368974260480741, 29.823059175465627 ], [ -96.368829260420796, 29.822768175736229 ], [ -96.368778260572469, 29.822482175198051 ], [ -96.368664260381735, 29.82234517546771 ], [ -96.36858226038521, 29.822136175784323 ], [ -96.368141260104409, 29.821889175051723 ], [ -96.368002260681294, 29.821878175140881 ], [ -96.367555260470766, 29.821916175581283 ], [ -96.367353260028437, 29.821982175634066 ], [ -96.367189260131937, 29.822004175577305 ], [ -96.366962259746899, 29.821977175556448 ], [ -96.366672260014823, 29.821851175337077 ], [ -96.366521259365854, 29.82167517533318 ], [ -96.366476260137077, 29.821581175592311 ], [ -96.366439259426087, 29.821241175832402 ], [ -96.366482259504522, 29.820955175590143 ], [ -96.366501259601691, 29.820652175713107 ], [ -96.366482259915315, 29.82052617505812 ], [ -96.366224260029512, 29.820361174906612 ], [ -96.365896259361946, 29.820372175652263 ], [ -96.365719259306076, 29.820433175652923 ], [ -96.365486259241138, 29.82043817500363 ], [ -96.365411259411118, 29.820416175400574 ], [ -96.365253259079083, 29.820284174872373 ], [ -96.365139259449975, 29.820169175341171 ], [ -96.365095259322189, 29.819960175351017 ], [ -96.365070259848991, 29.819630175220638 ], [ -96.365045259208983, 29.819559175017165 ], [ -96.364874259222077, 29.819328174769403 ], [ -96.364685259338145, 29.819196175257566 ], [ -96.364452259593961, 29.819064175227268 ], [ -96.36434425942528, 29.818987174804931 ], [ -96.364262259356664, 29.818949174647859 ], [ -96.364042259514704, 29.818883175266336 ], [ -96.363714258517845, 29.818861175367022 ], [ -96.363601258951931, 29.818878174953618 ], [ -96.363405259048008, 29.818938174762167 ], [ -96.363197258434496, 29.819109174669617 ], [ -96.363021259034568, 29.819494175105991 ], [ -96.362636258405701, 29.819939175517131 ], [ -96.362296258892115, 29.820033175740829 ], [ -96.362195258683229, 29.820033175290114 ], [ -96.362145258466057, 29.820044175303643 ], [ -96.361792258590697, 29.819989175626684 ], [ -96.361628258025505, 29.819785175559257 ], [ -96.361533258168492, 29.819593175485021 ], [ -96.361445258503991, 29.8194781752861 ], [ -96.361350258032928, 29.819324175234488 ], [ -96.361161258305458, 29.819071175217513 ], [ -96.360978258679154, 29.818956175017824 ], [ -96.360890258392573, 29.818917174802547 ], [ -96.360701258074457, 29.818873175185967 ], [ -96.360417258485725, 29.81888417477747 ], [ -96.360184257840004, 29.818857174927981 ], [ -96.360026257673027, 29.818868175062288 ], [ -96.359818257990966, 29.818868175234179 ], [ -96.35967325778131, 29.818857174776021 ], [ -96.359446257750321, 29.818874175052706 ], [ -96.359169257339175, 29.818874175445462 ], [ -96.358973257681413, 29.818901175390049 ], [ -96.358639257992024, 29.818912175530524 ], [ -96.35833025744985, 29.818956175257288 ], [ -96.358122257930944, 29.819001175110575 ], [ -96.357914257814059, 29.819056175545885 ], [ -96.357631257430555, 29.819155175684763 ], [ -96.357517256972855, 29.819237175338401 ], [ -96.357454257726005, 29.819303175158606 ], [ -96.357410256908196, 29.819380175657926 ], [ -96.357341257871553, 29.819451174963401 ], [ -96.357158257068775, 29.819770175000489 ], [ -96.3570702571309, 29.819891175153689 ], [ -96.35697525691441, 29.820073175318598 ], [ -96.356862257063838, 29.820210175698534 ], [ -96.356566256968762, 29.820524175259155 ], [ -96.356389257551854, 29.820727175655733 ], [ -96.356226257029633, 29.82089217545138 ], [ -96.356119256847663, 29.821029175274127 ], [ -96.355923256850033, 29.821381176071213 ], [ -96.355785257424415, 29.821601176047 ], [ -96.355589257521743, 29.821882175480521 ], [ -96.355432257505612, 29.82208017598116 ], [ -96.355331257505, 29.82230017596607 ], [ -96.355029256944704, 29.823064175878816 ], [ -96.354966256765238, 29.823267176649463 ], [ -96.35489025734482, 29.823454176001995 ], [ -96.354789257354895, 29.823652176614029 ], [ -96.354651256667964, 29.823768176588917 ], [ -96.354493256898593, 29.823872176436016 ], [ -96.354399257181512, 29.823987176121211 ], [ -96.354317256510257, 29.824048176373815 ], [ -96.35410225704031, 29.824114176370063 ], [ -96.353648256517843, 29.824180175999363 ], [ -96.353289257099888, 29.824246176555455 ], [ -96.353125256889939, 29.824285176837243 ], [ -96.352999256031552, 29.824329176602564 ], [ -96.352886257005395, 29.824389176073463 ], [ -96.352823257002058, 29.824521176822095 ], [ -96.352816256200427, 29.824675176405389 ], [ -96.352785256382589, 29.824829176924691 ], [ -96.352747257017469, 29.825109176828853 ], [ -96.352640256018987, 29.825302176949123 ], [ -96.352609256266476, 29.825439177134708 ], [ -96.352621256276436, 29.825582176444485 ], [ -96.352590256583952, 29.825785176986763 ], [ -96.352579256315892, 29.826469176962814 ], [ -96.352577256730967, 29.82661617654778 ], [ -96.352552256434237, 29.826797177426354 ], [ -96.35237025606979, 29.827105177089695 ], [ -96.352206256420018, 29.827347176903917 ], [ -96.351916256628812, 29.82753917751732 ], [ -96.351525256144413, 29.827770177370994 ], [ -96.35134825631097, 29.827847177103578 ], [ -96.351147256632473, 29.827952177427587 ], [ -96.350939255670681, 29.828029177057321 ], [ -96.350743256156491, 29.828117176921953 ], [ -96.350523256514421, 29.828205177036764 ], [ -96.350302256494345, 29.828249177253589 ], [ -96.350006256372268, 29.82836417772716 ], [ -96.34949525547033, 29.82850717734102 ], [ -96.349224255641957, 29.828562177485392 ], [ -96.348613255502173, 29.828667177837158 ], [ -96.347881255199951, 29.828700177844329 ], [ -96.347522255613143, 29.828750177334772 ], [ -96.347276255078611, 29.828810177545467 ], [ -96.347093254963596, 29.828832178024207 ], [ -96.34686625523257, 29.828882177939779 ], [ -96.346425255532623, 29.829080177772305 ], [ -96.346192255047313, 29.829223177610643 ], [ -96.345851254766004, 29.82950317787737 ], [ -96.345618254554694, 29.829646177643255 ], [ -96.345530254479911, 29.829712177957035 ], [ -96.344483254766573, 29.830152177811552 ], [ -96.344275254073963, 29.830081177837886 ], [ -96.343865254159567, 29.829965177919679 ], [ -96.34375225490254, 29.829954177991223 ], [ -96.343670254628734, 29.829932178393239 ], [ -96.34353825406231, 29.829877177670447 ], [ -96.343254254003355, 29.829702178022586 ], [ -96.343166254800437, 29.829625177896737 ], [ -96.343027254739098, 29.829454178307856 ], [ -96.342970254654716, 29.829339177412699 ], [ -96.342920253745916, 29.829267177759263 ], [ -96.342875254072396, 29.829223178113448 ], [ -96.342819254230847, 29.829135177402293 ], [ -96.342749253744444, 29.828981177677932 ], [ -96.342749254522161, 29.828784178110258 ], [ -96.342781254072861, 29.828536177268344 ], [ -96.34277425421449, 29.828459178088316 ], [ -96.342844253951213, 29.828333177480573 ], [ -96.342856253711233, 29.828151177846344 ], [ -96.342793253630077, 29.828019177662654 ], [ -96.342762253801851, 29.827767177822729 ], [ -96.342963254283745, 29.827041177331012 ], [ -96.34295025370001, 29.826640177271127 ], [ -96.342976254156767, 29.826337176858853 ], [ -96.342912253679614, 29.825991177530085 ], [ -96.342761253905124, 29.825579177456156 ], [ -96.342742253720743, 29.82535317735222 ], [ -96.342540253535105, 29.825145177177255 ], [ -96.342402253403264, 29.824897176980663 ], [ -96.342282254058404, 29.8246391768702 ], [ -96.342262253347641, 29.8246221772472 ], [ -96.342187253298974, 29.824556176625702 ], [ -96.342036254122888, 29.824496177107545 ], [ -96.341708253244462, 29.824326177268802 ], [ -96.341525253710302, 29.824249176917579 ], [ -96.341380253516022, 29.82416617664812 ], [ -96.341222253428185, 29.824062176602844 ], [ -96.341014253791528, 29.823880177255525 ], [ -96.340863253783183, 29.823782176963068 ], [ -96.340390253215872, 29.82367717701003 ], [ -96.340018252858613, 29.823479177152759 ], [ -96.339816252679242, 29.823342176331185 ], [ -96.339678252746651, 29.823177176644485 ], [ -96.339489253291248, 29.823056176427912 ], [ -96.339211252918687, 29.822908176646912 ], [ -96.339028253010042, 29.822732176821578 ], [ -96.338877252834862, 29.822655176879802 ], [ -96.338694253013898, 29.82247417699892 ], [ -96.338404252492126, 29.822243176406161 ], [ -96.338076252957919, 29.821946176473222 ], [ -96.337944252236994, 29.821820176861234 ], [ -96.337647252933252, 29.821484176361736 ], [ -96.33758425210209, 29.821396176676938 ], [ -96.337402252819288, 29.821209176302993 ], [ -96.337301252041712, 29.820990175898029 ], [ -96.337067252404381, 29.820621176007666 ], [ -96.336903252318834, 29.820259176347353 ], [ -96.336834252182669, 29.820176175802704 ], [ -96.336657252155135, 29.819725176047637 ], [ -96.336500252525241, 29.819544175739818 ], [ -96.336317252195528, 29.819280175690416 ], [ -96.336279252374027, 29.819126175753151 ], [ -96.336229252439409, 29.818994175599144 ], [ -96.336147252294893, 29.818873175918423 ], [ -96.335907251906306, 29.818577176346235 ], [ -96.335724252402912, 29.818258175504173 ], [ -96.335604252324174, 29.818098175460463 ], [ -96.335068251545437, 29.817499175810955 ], [ -96.334879251536151, 29.817307175442078 ], [ -96.334602251331788, 29.817120175931446 ], [ -96.334274251688726, 29.816928175837759 ], [ -96.334016251185616, 29.81674117553953 ], [ -96.333662251301149, 29.816466175580331 ], [ -96.333322251372721, 29.816268175878722 ], [ -96.333095251634944, 29.815955175329286 ], [ -96.33278625079825, 29.815817175662431 ], [ -96.332566250678937, 29.815669175089383 ], [ -96.332408250543054, 29.815537175308346 ], [ -96.332238251213937, 29.815345175318775 ], [ -96.332118251234562, 29.815229175410362 ], [ -96.331935251290631, 29.815169175220241 ], [ -96.331387250467188, 29.815075175051927 ], [ -96.331078250638072, 29.814806174946906 ], [ -96.330977250962775, 29.81466917575117 ], [ -96.330876250468279, 29.814454175670178 ], [ -96.330889250022054, 29.814306175007285 ], [ -96.330996250292984, 29.814136175571257 ], [ -96.331046250179398, 29.814026175443416 ], [ -96.331065250500188, 29.813916175548329 ], [ -96.331033250332609, 29.813663174908449 ], [ -96.331021250027419, 29.813393174848486 ], [ -96.331185250303491, 29.812893174561911 ], [ -96.331204250456352, 29.81266217461782 ], [ -96.331147250617434, 29.812415174886798 ], [ -96.331178250762036, 29.811645174497855 ], [ -96.331102250322829, 29.811266174544894 ], [ -96.331102249938354, 29.811233174523185 ], [ -96.331210249914122, 29.810793174332616 ], [ -96.331146250730569, 29.810425174028715 ], [ -96.331228250694679, 29.810002174648453 ], [ -96.331323250414556, 29.809051174410051 ], [ -96.331367250674262, 29.808820174536155 ], [ -96.331417250453057, 29.808638173663233 ], [ -96.331518250882198, 29.808386173684347 ], [ -96.331978249928937, 29.807050173853412 ], [ -96.332035250909897, 29.806809173269798 ], [ -96.33208525044833, 29.806599173428175 ], [ -96.332085250851662, 29.806456173203337 ], [ -96.332053250089842, 29.806275173676994 ], [ -96.331984250730571, 29.806016173339213 ], [ -96.331845250261964, 29.805565173348032 ], [ -96.331562250230093, 29.804801173177854 ], [ -96.331511249899236, 29.804587173315873 ], [ -96.331499250457242, 29.804494172932682 ], [ -96.331505250285275, 29.804389173468454 ], [ -96.331543250611318, 29.804158172974301 ], [ -96.331581250590389, 29.804032173120472 ], [ -96.331719249820409, 29.803757172735352 ], [ -96.33192124974461, 29.803477172871268 ], [ -96.332034250769325, 29.803350172808223 ], [ -96.332286249870137, 29.803108172519746 ], [ -96.332519250716615, 29.802927172478579 ], [ -96.332683250104537, 29.802844173176059 ], [ -96.332872250205398, 29.802811172503457 ], [ -96.333156250258071, 29.802795172863984 ], [ -96.333515250971416, 29.802806173087152 ], [ -96.333938250446081, 29.802839172582217 ], [ -96.334423251364598, 29.803042172457655 ], [ -96.334820251385111, 29.803119173040063 ], [ -96.334997250703353, 29.803174172858856 ], [ -96.335286250905838, 29.803207173015089 ], [ -96.33552625134233, 29.803212172954112 ], [ -96.335841251376308, 29.803240172804518 ], [ -96.336150250972082, 29.803223172718521 ], [ -96.336377251613371, 29.803179173074504 ], [ -96.336566251203422, 29.803091172517973 ], [ -96.337177251281247, 29.802761173113989 ], [ -96.337335251653485, 29.80270617224415 ], [ -96.337436251409287, 29.802470172794941 ], [ -96.337486252035845, 29.802321172380271 ], [ -96.337492251541263, 29.802217172619585 ], [ -96.337410251911976, 29.801717172553857 ], [ -96.337385251291437, 29.80142517229395 ], [ -96.337398251844633, 29.801360172160688 ], [ -96.337391251068979, 29.801277172421102 ], [ -96.337303251900124, 29.801195172135049 ], [ -96.336988251358918, 29.800986171963238 ], [ -96.336635251084772, 29.800925172338474 ], [ -96.336244250793314, 29.800925172696825 ], [ -96.335935251568188, 29.800964172032543 ], [ -96.335343250973082, 29.801118172074943 ], [ -96.334939251246837, 29.801162172106288 ], [ -96.334637250484349, 29.801074172367361 ], [ -96.334246250810594, 29.800882172203494 ], [ -96.333944250438947, 29.80067317232168 ], [ -96.333912250909535, 29.800618172054261 ], [ -96.33372325054394, 29.800387172407088 ], [ -96.333691250213064, 29.80027217228373 ], [ -96.333628250906315, 29.799898172575226 ], [ -96.333609250868577, 29.799601171841402 ], [ -96.333256250179119, 29.798765171629576 ], [ -96.333067250282681, 29.798557171751369 ], [ -96.332909249903636, 29.798353171589834 ], [ -96.332733250528165, 29.798210172052492 ], [ -96.33234824985, 29.7980401716346 ], [ -96.332248249649709, 29.798040171706379 ], [ -96.332134249564191, 29.798002172224653 ], [ -96.331964250420398, 29.797886171610781 ], [ -96.331598250297745, 29.797765171480226 ], [ -96.3312832494736, 29.797699171413527 ], [ -96.33111924953468, 29.797694172198998 ], [ -96.330855250070741, 29.797705171484168 ], [ -96.330697249625516, 29.797760171932815 ], [ -96.330596249611446, 29.797782171715692 ], [ -96.330250249865998, 29.797892171867819 ], [ -96.330117249542695, 29.797963171893564 ], [ -96.329588249426962, 29.798442172043657 ], [ -96.329235249254381, 29.798595172145493 ], [ -96.328983249647109, 29.798645171889586 ], [ -96.328624249359763, 29.798640172299198 ], [ -96.328353249632798, 29.798546172520098 ], [ -96.328101249217454, 29.798513172500609 ], [ -96.32777324871924, 29.798414172091601 ], [ -96.327552248855625, 29.798150172314987 ], [ -96.327495249100224, 29.797870172180914 ], [ -96.32754024888024, 29.797672172064591 ], [ -96.327451249310968, 29.797496172145213 ], [ -96.327363249004961, 29.797447172390481 ], [ -96.327224248554572, 29.797425171724939 ], [ -96.326827248440509, 29.797238171744073 ], [ -96.326518248823632, 29.797161171684802 ], [ -96.326298248811852, 29.796996172066812 ], [ -96.326153248697793, 29.796765172177416 ], [ -96.325913248453318, 29.796606171411362 ], [ -96.325605248227362, 29.796551172097605 ], [ -96.325390247984217, 29.796457171381679 ], [ -96.325157248687347, 29.796199172016177 ], [ -96.324974248431445, 29.796139172051809 ], [ -96.32486124792608, 29.79605117196208 ], [ -96.324848247735716, 29.79586417131155 ], [ -96.32475424829822, 29.795754172004095 ], [ -96.324539248403582, 29.795660171664515 ], [ -96.324464248488823, 29.795606171642426 ], [ -96.324438247686942, 29.79535317184229 ], [ -96.324287247461328, 29.795193171827517 ], [ -96.32402324838236, 29.795039171824595 ], [ -96.323966247401387, 29.79494617182721 ], [ -96.323896247350802, 29.794660171429264 ], [ -96.323808248021621, 29.794539171048964 ], [ -96.323228247243449, 29.79404417117432 ], [ -96.322926247695435, 29.793610171094617 ], [ -96.322724247145089, 29.79347317145805 ], [ -96.322573247916523, 29.793209171687248 ], [ -96.322472247065676, 29.792956171384674 ], [ -96.322396247567141, 29.79283017084477 ], [ -96.322258247669325, 29.792632170868924 ], [ -96.322144247032512, 29.792511171509194 ], [ -96.321993247577154, 29.792390171155407 ], [ -96.321419247080556, 29.79207717074139 ], [ -96.321319247325206, 29.79203817085839 ], [ -96.321035247177903, 29.791978171296545 ], [ -96.320947246947242, 29.791961171047348 ], [ -96.320688246514749, 29.791939171179305 ], [ -96.320348246464576, 29.791895171482771 ], [ -96.320008246674675, 29.791967171389356 ], [ -96.319730246801356, 29.792011171227422 ], [ -96.319687247059264, 29.792003171241525 ], [ -96.319522246096795, 29.791972171128489 ], [ -96.319396246096503, 29.791919170765375 ], [ -96.319302246517651, 29.791879171187926 ], [ -96.318987246691066, 29.791807170940196 ], [ -96.31877924668494, 29.791741170768109 ], [ -96.318382246459905, 29.791505170876121 ], [ -96.318073245944447, 29.791236171111901 ], [ -96.317928246195947, 29.79097717067911 ], [ -96.317859245873009, 29.790774171323871 ], [ -96.317789246124306, 29.79065317120477 ], [ -96.317613246191982, 29.790158171029773 ], [ -96.31753124569056, 29.789482170383764 ], [ -96.317430245602395, 29.78925717089087 ], [ -96.317260245489805, 29.789048170967618 ], [ -96.317216245414187, 29.788679170836303 ], [ -96.317216245467591, 29.788504170849773 ], [ -96.317153245691969, 29.788410170336224 ], [ -96.316838245371528, 29.788179170761509 ], [ -96.316731245425117, 29.788080170487966 ], [ -96.316657245218551, 29.787991170267279 ], [ -96.316535245528456, 29.787844169933649 ], [ -96.316144246039869, 29.787646170036808 ], [ -96.316069245733203, 29.787558170125681 ], [ -96.315981246011248, 29.787481169913132 ], [ -96.315754245229343, 29.787382170219828 ], [ -96.315558245013278, 29.787371170060037 ], [ -96.315401245052911, 29.787283170127136 ], [ -96.315268245267262, 29.787063170068503 ], [ -96.315180245761027, 29.786712169905108 ], [ -96.315048245334069, 29.786497170275258 ], [ -96.314890245052581, 29.786316169805588 ], [ -96.314815245305326, 29.786211170338071 ], [ -96.314764245082856, 29.786162170191545 ], [ -96.314670245382729, 29.786019169959918 ], [ -96.314670245333105, 29.78587617018551 ], [ -96.314701245323619, 29.785794169794734 ], [ -96.314701245230566, 29.78565117001105 ], [ -96.31466424537129, 29.785508169950027 ], [ -96.314966244935022, 29.785117169950965 ], [ -96.315029245152886, 29.784958169736289 ], [ -96.315212245467009, 29.784573169458827 ], [ -96.315395244797102, 29.784480169916822 ], [ -96.315584245466212, 29.784348169432413 ], [ -96.315659245214192, 29.784221169606344 ], [ -96.315678245539488, 29.783859169561257 ], [ -96.315666245345156, 29.783501169295423 ], [ -96.315729245529184, 29.783358169396507 ], [ -96.315747244875283, 29.78323216960181 ], [ -96.315672245596417, 29.783056169181688 ], [ -96.315489244832904, 29.78272616901004 ], [ -96.315458245385543, 29.782501169530761 ], [ -96.315395244772006, 29.782341168922997 ], [ -96.315250245029745, 29.782199168981805 ], [ -96.315124245471978, 29.781896169033679 ], [ -96.315117245497731, 29.781506168882757 ], [ -96.314985244815105, 29.781302168861494 ], [ -96.31492824481478, 29.781149169437214 ], [ -96.315023245093087, 29.780956169007094 ], [ -96.315061245298509, 29.780560168978397 ], [ -96.315016244777098, 29.780401169368016 ], [ -96.314916244819827, 29.780253169156548 ], [ -96.314941244529095, 29.7799061687784 ], [ -96.314976245282466, 29.779792168459036 ], [ -96.315054244623028, 29.77953216866424 ], [ -96.315401244924871, 29.779071168466807 ], [ -96.31566624455732, 29.778779168656282 ], [ -96.31577324479079, 29.778691168760563 ], [ -96.316037244819782, 29.778570168875927 ], [ -96.316315245594055, 29.778351168592106 ], [ -96.316441244942368, 29.778081168572719 ], [ -96.316630245515697, 29.777889168071574 ], [ -96.316951244959711, 29.777746168308891 ], [ -96.317411245570611, 29.777631168251077 ], [ -96.317770245182274, 29.777570167839304 ], [ -96.318148245563819, 29.777218167899616 ], [ -96.318413245649538, 29.777009167856431 ], [ -96.318772245552154, 29.776894167647509 ], [ -96.319097245498909, 29.776563168324849 ], [ -96.319106245641052, 29.776553167635033 ], [ -96.319345245883071, 29.776350167864429 ], [ -96.319478245720532, 29.776119167889259 ], [ -96.319572246375756, 29.775877167472267 ], [ -96.319635245418709, 29.775657168215009 ], [ -96.319503246133962, 29.77527216768544 ], [ -96.319459245419722, 29.774959167521381 ], [ -96.319490246133967, 29.774569167239939 ], [ -96.319383245333142, 29.774294167886779 ], [ -96.319182245550792, 29.774068167549594 ], [ -96.319024245572351, 29.773942167312157 ], [ -96.318734245879298, 29.773783167414827 ], [ -96.318595245247167, 29.773629167784147 ], [ -96.318400245005165, 29.773508167132736 ], [ -96.31821724594343, 29.773491167291972 ], [ -96.318073245773178, 29.77345316744945 ], [ -96.317984245538341, 29.773370167367254 ], [ -96.317883245050098, 29.773315167041481 ], [ -96.317713245799453, 29.773321166972487 ], [ -96.31756824558984, 29.773381166977998 ], [ -96.31740524570597, 29.773398167776548 ], [ -96.317323245091501, 29.773365167668317 ], [ -96.317241244753021, 29.77324416717051 ], [ -96.317134245493577, 29.773216167101413 ], [ -96.316478244984111, 29.77335416787653 ], [ -96.316283244664035, 29.773337167863296 ], [ -96.316119245062538, 29.773260167884239 ], [ -96.315873244361896, 29.773013167811197 ], [ -96.315703244886933, 29.772771167474616 ], [ -96.315426245183261, 29.772562167619032 ], [ -96.315325244703288, 29.772337167719474 ], [ -96.31516824427365, 29.772188167145494 ], [ -96.314935244330812, 29.772089167497629 ], [ -96.314739244408244, 29.771897166809389 ], [ -96.314689244856567, 29.771771167127078 ], [ -96.314613244481464, 29.771688167030476 ], [ -96.314412244831644, 29.771584167153748 ], [ -96.314296244214972, 29.771383167416328 ], [ -96.314279244788196, 29.771353167206318 ], [ -96.314128243962273, 29.771193167141231 ], [ -96.314097244195167, 29.771040167087694 ], [ -96.31407124459183, 29.770985166838752 ], [ -96.314021243770142, 29.770710166810996 ], [ -96.313970244605983, 29.770308166896747 ], [ -96.314002243953013, 29.770100166798752 ], [ -96.313845243995814, 29.769814167241346 ], [ -96.313763244561414, 29.769528167166001 ], [ -96.313889244233565, 29.769055167023264 ], [ -96.313907244054988, 29.768780166878308 ], [ -96.313800243868045, 29.768489166869667 ], [ -96.313914244316138, 29.768066166477677 ], [ -96.314034244370148, 29.767835166190057 ], [ -96.314097244369762, 29.767670166203363 ], [ -96.314191243707654, 29.767373166144306 ], [ -96.314330243889046, 29.767016166530407 ], [ -96.314399244456283, 29.766702166428306 ], [ -96.3144122440996, 29.766532166399848 ], [ -96.314393244327604, 29.766381166464427 ], [ -96.314386244004723, 29.766329165860181 ], [ -96.314449243944537, 29.766103166040537 ], [ -96.314519244342847, 29.766004166405565 ], [ -96.314537244363947, 29.765949166074016 ], [ -96.314525243795075, 29.765839165627781 ], [ -96.314430243814769, 29.765510166019478 ], [ -96.314254243996871, 29.764987165722147 ], [ -96.31421624375416, 29.764773166238783 ], [ -96.314115244018296, 29.764542166029759 ], [ -96.314059244366391, 29.764438165923892 ], [ -96.313964244244204, 29.764047165291171 ], [ -96.314046244396891, 29.76358616531239 ], [ -96.31403424411846, 29.763327165317815 ], [ -96.313998243599869, 29.763011165364624 ], [ -96.313977244336243, 29.762832165727225 ], [ -96.313819243616805, 29.762470165487603 ], [ -96.313687243566449, 29.762228164986634 ], [ -96.31357424378993, 29.761958165242905 ], [ -96.313416243973251, 29.761491164784612 ], [ -96.313208243783194, 29.76129316520251 ], [ -96.31311424306125, 29.760975165355166 ], [ -96.312320242940785, 29.760331164705704 ], [ -96.311879243603698, 29.759265165195739 ], [ -96.311784242947468, 29.759062164813965 ], [ -96.311728242867773, 29.758875165055457 ], [ -96.311702242879591, 29.758655164479357 ], [ -96.311639243524596, 29.758490164559088 ], [ -96.311633243286565, 29.758171164322007 ], [ -96.311734243152543, 29.757550164337516 ], [ -96.311677242557096, 29.757374164461151 ], [ -96.311765242663697, 29.757039164630463 ], [ -96.311879243334758, 29.756896164438661 ], [ -96.311929243436296, 29.756703164109222 ], [ -96.311847243361754, 29.756362163985713 ], [ -96.311665242706312, 29.756192164137651 ], [ -96.311129242935806, 29.755923163793462 ], [ -96.31097824316403, 29.755835164432082 ], [ -96.310839243095145, 29.755609164217816 ], [ -96.310739242571444, 29.755411164116204 ], [ -96.310367242900611, 29.755181164189739 ], [ -96.31026624288927, 29.755148164180614 ], [ -96.30979424207915, 29.754878164036779 ], [ -96.309409241976212, 29.754796163851033 ], [ -96.309334242642308, 29.75474616366801 ], [ -96.30924624240447, 29.754592164143791 ], [ -96.309019242403608, 29.754499163710168 ], [ -96.308798241762616, 29.754515163914629 ], [ -96.308660241964887, 29.754466164220741 ], [ -96.308433241937777, 29.754258163450384 ], [ -96.308420242302518, 29.754246163891427 ], [ -96.308392241696993, 29.75423216367232 ], [ -96.307878241532578, 29.753977163958485 ], [ -96.30788924151004, 29.753927164159634 ], [ -96.30696624160305, 29.753710163766176 ], [ -96.306490241516613, 29.753761163771646 ], [ -96.306258241855929, 29.753710163827567 ], [ -96.306016241700362, 29.75358816344092 ], [ -96.30548024105407, 29.753418163564298 ], [ -96.305156241642962, 29.753221163350673 ], [ -96.304852241175411, 29.753114163883318 ], [ -96.304688240909172, 29.75295416352434 ], [ -96.30373524128288, 29.752415163593039 ], [ -96.303454240955233, 29.75237716379273 ], [ -96.302805240363526, 29.752420164108983 ], [ -96.302528240281603, 29.752374163931599 ], [ -96.30158923999366, 29.752019163901871 ], [ -96.301037239865494, 29.751723163187322 ], [ -96.300967240125544, 29.751718163256555 ], [ -96.3009312399099, 29.751715163914707 ], [ -96.300912240433931, 29.751714163936082 ], [ -96.300629240192436, 29.751694163738058 ], [ -96.300399240052897, 29.751677163782698 ], [ -96.300001240198583, 29.75164916346079 ], [ -96.299785239416664, 29.751573163680622 ], [ -96.299036239710873, 29.751183163802818 ], [ -96.298684239156984, 29.750897163063271 ], [ -96.298413238923629, 29.75077516316891 ], [ -96.298164238870342, 29.750543163215351 ], [ -96.297975239176594, 29.750292163511499 ], [ -96.297900239584649, 29.750192163172596 ], [ -96.297485239040554, 29.749910163638837 ], [ -96.297352238788903, 29.749833163291733 ], [ -96.297258239510199, 29.749772163379131 ], [ -96.297220239245192, 29.749739163208904 ], [ -96.297201239311036, 29.749723163545983 ], [ -96.297107239240191, 29.749569163417064 ], [ -96.296956238849816, 29.74921116309234 ], [ -96.29696223864174, 29.749178163268788 ], [ -96.29686723889165, 29.748898163489638 ], [ -96.296784239177413, 29.748682162893545 ], [ -96.296699239089335, 29.748462162709156 ], [ -96.296631239328988, 29.748283162865029 ], [ -96.296603238637317, 29.748211163386323 ], [ -96.29660323886057, 29.748112162693506 ], [ -96.296643238442456, 29.748001162843799 ], [ -96.296685238657915, 29.747881163240862 ], [ -96.296696239209894, 29.747862163335274 ], [ -96.296824239275367, 29.747645163267318 ], [ -96.296925238793818, 29.7471991629243 ], [ -96.296912238729178, 29.74693616282217 ], [ -96.296843238326559, 29.746655163004966 ], [ -96.296805238309133, 29.746364162765204 ], [ -96.296799238446766, 29.746248162869819 ], [ -96.296818238401642, 29.746133162771063 ], [ -96.296811238887145, 29.746018162500359 ], [ -96.296755238944854, 29.745935162809957 ], [ -96.296698239062962, 29.745886162669144 ], [ -96.296616238472822, 29.745836162648871 ], [ -96.296578238626552, 29.745792162852545 ], [ -96.296572238526423, 29.745693162867145 ], [ -96.296591238441053, 29.745622162117535 ], [ -96.296717238509729, 29.745451162459833 ], [ -96.296723238634456, 29.745380162043951 ], [ -96.296660238498831, 29.745231162837978 ], [ -96.296604238697356, 29.745160162386792 ], [ -96.296629238441398, 29.745028162444875 ], [ -96.296629238841831, 29.744940161956873 ], [ -96.296560238850233, 29.744770161927192 ], [ -96.296522239119966, 29.744720162430706 ], [ -96.296415238826498, 29.744621162358218 ], [ -96.296396238462805, 29.744588162573251 ], [ -96.296377238420234, 29.744511162535854 ], [ -96.296383238429343, 29.744434162444968 ], [ -96.29642823910865, 29.744352162592445 ], [ -96.296478238983653, 29.744286162525778 ], [ -96.29650323903617, 29.744231161907535 ], [ -96.296503238889244, 29.744165161967796 ], [ -96.296491238748999, 29.744116162631833 ], [ -96.296459238330428, 29.744055162023141 ], [ -96.296303238079929, 29.743951162547287 ], [ -96.296295238542584, 29.743945162106588 ], [ -96.296258238022588, 29.743868162516723 ], [ -96.29625823867228, 29.743830161931712 ], [ -96.296302238066176, 29.743769162401044 ], [ -96.296358238314085, 29.743725162198171 ], [ -96.296377238670502, 29.743632161771572 ], [ -96.296409238245275, 29.74299416231144 ], [ -96.296535238248779, 29.742505162275044 ], [ -96.296781238402943, 29.741933161828243 ], [ -96.296857238491398, 29.741680161279213 ], [ -96.296983238883371, 29.74150516151953 ], [ -96.297046238121936, 29.741400162087206 ], [ -96.297474239032354, 29.740856161590251 ], [ -96.297651239089177, 29.740603161702396 ], [ -96.297751238986891, 29.74048216181211 ], [ -96.297901239196946, 29.740357161453147 ], [ -96.29804123920033, 29.740240160983795 ], [ -96.298148238555726, 29.74009216174332 ], [ -96.298255238693017, 29.739773160975645 ], [ -96.2985142387341, 29.739553160959865 ], [ -96.298577238698584, 29.739444161041316 ], [ -96.298697238563932, 29.738811161201745 ], [ -96.298741239167256, 29.738416161054872 ], [ -96.298779238692447, 29.738322160659575 ], [ -96.298779238813722, 29.738295161230671 ], [ -96.298760238455174, 29.73825116050946 ], [ -96.298760239367255, 29.738201160543376 ], [ -96.298798238749825, 29.738102161310866 ], [ -96.298785238868874, 29.738047161229787 ], [ -96.298319238776713, 29.737212160483079 ], [ -96.298042238504081, 29.737030160919605 ], [ -96.297840238210412, 29.736915160816782 ], [ -96.297620238184194, 29.736816161089898 ], [ -96.297425238184474, 29.736695161065825 ], [ -96.297217238400506, 29.736629160879573 ], [ -96.297104238837946, 29.73657916096785 ], [ -96.297009238321095, 29.736502160923216 ], [ -96.296990238069313, 29.736453161080135 ], [ -96.296990238399772, 29.736376160702704 ], [ -96.296971238112278, 29.736332160585945 ], [ -96.29692123837232, 29.736315160833357 ], [ -96.29690223877347, 29.73630916048872 ], [ -96.296373238524225, 29.736150160813501 ], [ -96.295586237697052, 29.735875160487875 ], [ -96.295384237718238, 29.735837160582378 ], [ -96.295157237620288, 29.735820160839598 ], [ -96.294288237944954, 29.735826161060995 ], [ -96.293765237050323, 29.735798160488748 ], [ -96.293495237359735, 29.735765160218531 ], [ -96.293375237763243, 29.735738160678391 ], [ -96.293243237773027, 29.735694160449196 ], [ -96.293148237647571, 29.735628160612105 ], [ -96.292953237704722, 29.73545216039042 ], [ -96.292714237093776, 29.735281160350748 ], [ -96.292632237221284, 29.735259160594495 ], [ -96.292556237329975, 29.735226160775248 ], [ -96.292393237489719, 29.735193160790978 ], [ -96.292046237275912, 29.735166160601729 ], [ -96.291801237354932, 29.735094160603296 ], [ -96.291656236694593, 29.735045160671522 ], [ -96.291523236623192, 29.735023160807721 ], [ -96.291297237143169, 29.734956160158553 ], [ -96.291221236935584, 29.734890160375308 ], [ -96.291046236653642, 29.734669160525506 ], [ -96.29098223729865, 29.734588160349706 ], [ -96.2909352372954, 29.73454116006284 ], [ -96.290692236323167, 29.73429716038012 ], [ -96.290535236764597, 29.734192160409957 ], [ -96.290314236914398, 29.733708160637494 ], [ -96.290157236965726, 29.733439160492779 ], [ -96.290107236704131, 29.733313160117312 ], [ -96.290113236237573, 29.733060159994121 ], [ -96.290126236222022, 29.732994160092872 ], [ -96.290094236110036, 29.732884160150704 ], [ -96.289994236671049, 29.73270815991744 ], [ -96.289943236551636, 29.732521160390622 ], [ -96.289962236793755, 29.732109159661931 ], [ -96.29000623594446, 29.732026160439343 ], [ -96.290076236080026, 29.731971159549278 ], [ -96.290145236176016, 29.731944159529153 ], [ -96.290172236303093, 29.731901160031072 ], [ -96.290290236695725, 29.731713160188853 ], [ -96.290359236252613, 29.731620159806766 ], [ -96.290422236990963, 29.731548159733482 ], [ -96.290592236246738, 29.731400159639531 ], [ -96.290756236970651, 29.731290159734478 ], [ -96.290996236319458, 29.731169159998768 ], [ -96.291115236173368, 29.731120159927343 ], [ -96.291229236306307, 29.731092159573969 ], [ -96.291304236373662, 29.731048159311566 ], [ -96.291342236516996, 29.731010159713918 ], [ -96.291374236533841, 29.730916159880376 ], [ -96.291418237112268, 29.73087815973977 ], [ -96.291569236247994, 29.730795159955516 ], [ -96.29160023672182, 29.730652159506722 ], [ -96.291613236962206, 29.730444159463129 ], [ -96.291651236526889, 29.730268159571647 ], [ -96.291695237009662, 29.730207159606984 ], [ -96.291764237113057, 29.730152159295287 ], [ -96.291865237142829, 29.730103159315689 ], [ -96.291991236497324, 29.730015159365774 ], [ -96.292016236465571, 29.729954159695318 ], [ -96.29202923689094, 29.729888159595561 ], [ -96.292016236598982, 29.729718159061523 ], [ -96.292022236606755, 29.729451159425665 ], [ -96.292023236943336, 29.729405159416967 ], [ -96.291972236488434, 29.729075159649515 ], [ -96.291935236596217, 29.728981159251294 ], [ -96.291903236372747, 29.728926159559506 ], [ -96.291872236525634, 29.728893159113554 ], [ -96.291828236332762, 29.728745158882493 ], [ -96.291758237096573, 29.728597159205631 ], [ -96.291752236843664, 29.728514159419259 ], [ -96.2917772370389, 29.72837115939863 ], [ -96.29163223637093, 29.728157159340284 ], [ -96.291551237115996, 29.72806915884199 ], [ -96.291431236725202, 29.727970159106654 ], [ -96.291192236554608, 29.727887159318296 ], [ -96.290990236576633, 29.727783159269947 ], [ -96.29073223667946, 29.727612158790979 ], [ -96.290644236296529, 29.727530159318462 ], [ -96.290512236562719, 29.72745815926999 ], [ -96.290266236563795, 29.727392158857672 ], [ -96.290140236054754, 29.72738115941371 ], [ -96.290077236530138, 29.727387159089329 ], [ -96.289813236014112, 29.727453158978498 ], [ -96.28965523637504, 29.727458158925526 ], [ -96.289239236067701, 29.72755215947727 ], [ -96.289069235693191, 29.727628158765139 ], [ -96.289044236134117, 29.727678159405411 ], [ -96.2890132359707, 29.727711159488955 ], [ -96.288956236232977, 29.727755159037365 ], [ -96.288874235891655, 29.727788159472198 ], [ -96.288704235411927, 29.727804159476943 ], [ -96.288465235609095, 29.727793159328616 ], [ -96.288345236241071, 29.727733159356234 ], [ -96.288328235674399, 29.72772815934497 ], [ -96.288269235358499, 29.727711159039359 ], [ -96.288024235831472, 29.727771159490967 ], [ -96.287848236043786, 29.727881159566831 ], [ -96.287709235290961, 29.727936159435306 ], [ -96.287532235692012, 29.727974159570337 ], [ -96.286789235811185, 29.728029159466747 ], [ -96.286569235609505, 29.728029159337964 ], [ -96.28648723527246, 29.728013158938406 ], [ -96.286380235077843, 29.727963159173552 ], [ -96.286286234968927, 29.727897159011093 ], [ -96.286122234903601, 29.727859159017115 ], [ -96.285977235706738, 29.727842159161487 ], [ -96.285826234941808, 29.727842159462647 ], [ -96.285803235437911, 29.727845159036001 ], [ -96.285561235403094, 29.727875159498648 ], [ -96.285335235133019, 29.727864159043225 ], [ -96.285139234804092, 29.727825159243459 ], [ -96.284642235365155, 29.727649158985898 ], [ -96.284497235158241, 29.727649159374796 ], [ -96.284270234978749, 29.727666158942956 ], [ -96.284144234242987, 29.727699158928036 ], [ -96.284018234988409, 29.727715159653616 ], [ -96.283905234690693, 29.727710159493043 ], [ -96.283653234762824, 29.727633159330139 ], [ -96.283011234891845, 29.727478159357293 ], [ -96.282658234539042, 29.727335158925541 ], [ -96.282343234606756, 29.727176159359381 ], [ -96.281947233968395, 29.727011159367809 ], [ -96.281808234124171, 29.726917159442813 ], [ -96.281468233589905, 29.726598159032243 ], [ -96.281418234151033, 29.726532159261978 ], [ -96.28129223420126, 29.726423158857866 ], [ -96.281229233768642, 29.726379159451035 ], [ -96.281153233621737, 29.726367159088348 ], [ -96.281084234090144, 29.726340158884732 ], [ -96.281015234287693, 29.726299159307004 ], [ -96.280990234220695, 29.726285158870972 ], [ -96.280870233372326, 29.726164159443471 ], [ -96.280838233355567, 29.726159159064149 ], [ -96.280775233677446, 29.726164158920884 ], [ -96.280744233941775, 29.726191159249058 ], [ -96.280694233313739, 29.7262081588228 ], [ -96.280624233483067, 29.726213159111378 ], [ -96.28053023343783, 29.726208159090806 ], [ -96.280391233782368, 29.726153159386826 ], [ -96.280335233961438, 29.726043159495898 ], [ -96.280246234083634, 29.725966159509611 ], [ -96.280146233382439, 29.725905159175525 ], [ -96.280007233309959, 29.725801158661461 ], [ -96.279585233082742, 29.725361159078698 ], [ -96.279208233078833, 29.725064159167271 ], [ -96.278962233030683, 29.724839158690347 ], [ -96.278704233434141, 29.724509158947701 ], [ -96.278062232682629, 29.723799158572511 ], [ -96.277942232663548, 29.723618159111034 ], [ -96.277936232681839, 29.723404159019893 ], [ -96.277892233290558, 29.723310158273534 ], [ -96.277785233249816, 29.723233158965108 ], [ -96.277697233090535, 29.723189158781619 ], [ -96.277546232912712, 29.723140158203378 ], [ -96.277463232462338, 29.723028158817332 ], [ -96.277395232853621, 29.722936158281115 ], [ -96.277370232841847, 29.722826158844807 ], [ -96.277244233064025, 29.722529158475911 ], [ -96.277175232707009, 29.722425158772964 ], [ -96.276980232238969, 29.722178158508026 ], [ -96.276910232202226, 29.722062158731891 ], [ -96.276778232640339, 29.721765158595829 ], [ -96.276766232616168, 29.721507158358463 ], [ -96.276715232828366, 29.721287158646433 ], [ -96.27672223257575, 29.721199157840665 ], [ -96.276725232926864, 29.721188157965415 ], [ -96.276743232574191, 29.721120157850709 ], [ -96.276747232121025, 29.721106158568848 ], [ -96.276829232389261, 29.721007158596553 ], [ -96.276860232311805, 29.720886158006603 ], [ -96.276860232845721, 29.720822158216091 ], [ -96.276860232711741, 29.720770157866284 ], [ -96.276753232271616, 29.720545157993534 ], [ -96.276609232760194, 29.720287158191621 ], [ -96.276502232373602, 29.720177158292717 ], [ -96.27626923218439, 29.72000115799764 ], [ -96.276193232651252, 29.719907158397675 ], [ -96.276143232324216, 29.719797158365644 ], [ -96.276118231879593, 29.719610158401373 ], [ -96.276061232207027, 29.719495157917457 ], [ -96.275916232315879, 29.719357157686364 ], [ -96.275734231879667, 29.719121158271818 ], [ -96.275463231662371, 29.718873157584849 ], [ -96.275262231620943, 29.718758158225715 ], [ -96.275104232100659, 29.718697158145673 ], [ -96.274897232426298, 29.718505157821262 ], [ -96.274620232160842, 29.718362157660376 ], [ -96.27416023130958, 29.718098157719293 ], [ -96.273763232139146, 29.717927158124855 ], [ -96.273228231487593, 29.717729158006801 ], [ -96.272945231376482, 29.717603157736328 ], [ -96.272819231301497, 29.717575157786314 ], [ -96.272580231405826, 29.717537157906246 ], [ -96.272494230880099, 29.717527157222975 ], [ -96.272378231356569, 29.71751515762065 ], [ -96.272107230882298, 29.717520157719449 ], [ -96.271871231295407, 29.717540157381269 ], [ -96.271843231453687, 29.717542157423892 ], [ -96.271635231295278, 29.717503157293919 ], [ -96.271471230718831, 29.717448157588482 ], [ -96.271445230602524, 29.717437157329648 ], [ -96.270993230794929, 29.717245158048652 ], [ -96.270773230803769, 29.717124157501594 ], [ -96.270665231315718, 29.717047157947462 ], [ -96.270546230404236, 29.716904157190442 ], [ -96.27040823058968, 29.716766157935258 ], [ -96.270219230751238, 29.7166621574451 ], [ -96.2701242302617, 29.716585157895313 ], [ -96.270024230354082, 29.716019157645032 ], [ -96.269942230965853, 29.715689157535351 ], [ -96.26992323018888, 29.715441157191634 ], [ -96.26993023013344, 29.715337157176879 ], [ -96.269974230995857, 29.715221157289697 ], [ -96.270138230682178, 29.714974157337213 ], [ -96.270163230376227, 29.71486415706558 ], [ -96.270358231075122, 29.714342156799979 ], [ -96.270560230577473, 29.7140011567027 ], [ -96.270717230988467, 29.713683157199796 ], [ -96.270768230394125, 29.713617156729502 ], [ -96.270831230991419, 29.713567157311942 ], [ -96.271083230667671, 29.713402156914693 ], [ -96.271177231317054, 29.713331157127211 ], [ -96.271247230687209, 29.713238156612327 ], [ -96.271491230428154, 29.713042157153779 ], [ -96.271549231209775, 29.712996156470936 ], [ -96.271675230867501, 29.712869157093827 ], [ -96.271839231396953, 29.712639157072328 ], [ -96.271870231218102, 29.71252915683171 ], [ -96.271877231417349, 29.712441156912124 ], [ -96.271871230951561, 29.71235315663726 ], [ -96.27182023121108, 29.712177156878141 ], [ -96.271808230581826, 29.711907156652298 ], [ -96.271789230822804, 29.711759156739163 ], [ -96.271701230676442, 29.711517156917719 ], [ -96.271657230950325, 29.711308156603614 ], [ -96.271670231228782, 29.711176156173494 ], [ -96.271815230627197, 29.710935156731313 ], [ -96.271896231214086, 29.710770156411645 ], [ -96.271878230701816, 29.710544156602296 ], [ -96.271802231158659, 29.710357156113687 ], [ -96.271708230551738, 29.71003815629081 ], [ -96.271714231176333, 29.709951155775538 ], [ -96.271708230443437, 29.70979115570017 ], [ -96.271639230530468, 29.709692155914606 ], [ -96.271425230961341, 29.709516155831082 ], [ -96.270928230404323, 29.708686156361047 ], [ -96.270481230300533, 29.707861155415596 ], [ -96.270431229984695, 29.707784155825259 ], [ -96.270355229893227, 29.707724155433723 ], [ -96.270317230611127, 29.7076581553439 ], [ -96.270280230791769, 29.707575155542248 ], [ -96.270274230384359, 29.707498155506283 ], [ -96.270299230597956, 29.70730115585808 ], [ -96.270299230360195, 29.707209155967256 ], [ -96.270261230574491, 29.707047155206393 ], [ -96.270205230459524, 29.706817155824552 ], [ -96.27021122999362, 29.706646155936646 ], [ -96.270249229907492, 29.706448155902816 ], [ -96.270337230106307, 29.706124155584103 ], [ -96.270469230806228, 29.705838155075249 ], [ -96.270627230624214, 29.705657155672508 ], [ -96.270829230171643, 29.705465155097951 ], [ -96.271055230655946, 29.705305155505869 ], [ -96.272063230743981, 29.704789154765972 ], [ -96.27261123060984, 29.704426154722881 ], [ -96.273115230951248, 29.704091155348667 ], [ -96.273192231221145, 29.704061154771846 ], [ -96.273461231075146, 29.703954154473202 ], [ -96.273852231478415, 29.70371815480728 ], [ -96.274267231491351, 29.703339154530003 ], [ -96.274343231232535, 29.703251155130964 ], [ -96.274451230858702, 29.703053154285033 ], [ -96.274469230915841, 29.703020154589051 ], [ -96.274549231696469, 29.703000154340433 ], [ -96.274559231250365, 29.70290815484643 ], [ -96.275070231742674, 29.702198154147027 ], [ -96.27522323129115, 29.701986154533714 ], [ -96.275384231643372, 29.70178115477713 ], [ -96.275546231830376, 29.701575154450186 ], [ -96.275603231128457, 29.701640154300684 ], [ -96.275993231500664, 29.701806154467775 ], [ -96.276075232013781, 29.70181115418594 ], [ -96.276352231139171, 29.701767154026673 ], [ -96.276510231467654, 29.701773154755706 ], [ -96.27666123195992, 29.701751153983132 ], [ -96.277108231354973, 29.701570154203935 ], [ -96.277183232173641, 29.701504154596265 ], [ -96.27724723166763, 29.701427154661218 ], [ -96.277593231846339, 29.700718153724303 ], [ -96.277725231646315, 29.7004211538584 ], [ -96.277757232099447, 29.700300153932925 ], [ -96.277776231877127, 29.700113154124761 ], [ -96.27765023221599, 29.699728153516492 ], [ -96.277556232221713, 29.699591153439666 ], [ -96.27746823222239, 29.699514153732558 ], [ -96.277386231642566, 29.699420153860082 ], [ -96.277348232198804, 29.699360153602971 ], [ -96.277291231976008, 29.699129153813839 ], [ -96.27727323213827, 29.699090154047759 ], [ -96.277247232226372, 29.699035153822976 ], [ -96.277166231689819, 29.698915153493715 ], [ -96.27703323162747, 29.698821153503037 ], [ -96.276668231812948, 29.698623153947388 ], [ -96.276511231676082, 29.698486153535146 ], [ -96.27645423146997, 29.69844715385322 ], [ -96.27631023130489, 29.698376153229749 ], [ -96.275881231555317, 29.698232153675463 ], [ -96.275592230922513, 29.698100153725299 ], [ -96.275485231102252, 29.698067153386937 ], [ -96.275435231016402, 29.698024153218991 ], [ -96.275353231319329, 29.697902154016326 ], [ -96.275309230905322, 29.69785315334812 ], [ -96.275202231421616, 29.697781153398669 ], [ -96.275082231256206, 29.697754153332724 ], [ -96.274988230656533, 29.697715153769572 ], [ -96.274604230947673, 29.697655153528828 ], [ -96.273955230989728, 29.697462153358625 ], [ -96.273628230967475, 29.697275153852154 ], [ -96.273521230987058, 29.697159153292919 ], [ -96.273496230629348, 29.697132153483217 ], [ -96.273376230404352, 29.696962153740884 ], [ -96.273206230812562, 29.696835153159096 ], [ -96.273143231065305, 29.696758153147261 ], [ -96.273112230817816, 29.696709153776155 ], [ -96.272923230377586, 29.696181153060998 ], [ -96.272848230342404, 29.695857153473579 ], [ -96.272861230707647, 29.695620152839282 ], [ -96.272823230033879, 29.695483153147219 ], [ -96.272779230120022, 29.695417153127504 ], [ -96.272691230302598, 29.695329153179038 ], [ -96.272628230326916, 29.695236153467967 ], [ -96.272552230438976, 29.69515915280234 ], [ -96.272508230582773, 29.695098153396646 ], [ -96.272389230680602, 29.694796152669358 ], [ -96.272370230762192, 29.694724152874421 ], [ -96.27235722979664, 29.694603153454668 ], [ -96.2723702304733, 29.69425715325437 ], [ -96.27236423017608, 29.694048152589293 ], [ -96.272263230106148, 29.693839152862807 ], [ -96.272144229721803, 29.693427153152992 ], [ -96.272144230594748, 29.692861152537372 ], [ -96.272134229735983, 29.692733153025507 ], [ -96.272125229702439, 29.692613152840586 ], [ -96.272201229850054, 29.692421152975058 ], [ -96.272232230373135, 29.692278152530367 ], [ -96.272188230242506, 29.692047152893824 ], [ -96.27220123041532, 29.691822152524253 ], [ -96.272151229960045, 29.691662152558511 ], [ -96.27194323024419, 29.691344152786577 ], [ -96.271648230297913, 29.691036152352492 ], [ -96.271490230113983, 29.69089815214743 ], [ -96.271459230372571, 29.690849152277021 ], [ -96.271440230230326, 29.690794152527211 ], [ -96.271440229444366, 29.690733152023526 ], [ -96.271471230323087, 29.690568152488066 ], [ -96.271421229936934, 29.690508152142542 ], [ -96.271346229517704, 29.69046415262676 ], [ -96.271213229683724, 29.690282152217982 ], [ -96.271169229711234, 29.690172152202095 ], [ -96.271050229323549, 29.690007151965695 ], [ -96.270930229745673, 29.689892152006216 ], [ -96.270830229200058, 29.689815152006346 ], [ -96.270779229942903, 29.689798152052276 ], [ -96.270577229819907, 29.689699152336384 ], [ -96.270376229609269, 29.689600151928925 ], [ -96.270225229080353, 29.68944115183227 ], [ -96.270156229860632, 29.689380151808106 ], [ -96.270087229701957, 29.689342151806841 ], [ -96.269974229625817, 29.689320152214318 ], [ -96.269791229688039, 29.689210151820053 ], [ -96.269669229863084, 29.68906015173798 ], [ -96.269592229840086, 29.688966151906314 ], [ -96.269558228806588, 29.688924152371843 ], [ -96.269300229468342, 29.688704152107572 ], [ -96.269074229364122, 29.688572151860583 ], [ -96.268948229639008, 29.688517151874908 ], [ -96.268715228589997, 29.68851115179131 ], [ -96.26863322879467, 29.68847315211292 ], [ -96.268602229254668, 29.688434152061976 ], [ -96.268564229515931, 29.688407152297994 ], [ -96.268350229268478, 29.688390152338258 ], [ -96.268249229176391, 29.688363151631634 ], [ -96.26818022865163, 29.688319151715223 ], [ -96.268016228410261, 29.688132151899662 ], [ -96.267765228715675, 29.687692151891682 ], [ -96.267683229150521, 29.687610151335289 ], [ -96.267545228973233, 29.687516151963088 ], [ -96.267223228717626, 29.687401151939817 ], [ -96.267028228557038, 29.687318151756251 ], [ -96.266947228956028, 29.687252151624875 ], [ -96.266808228485374, 29.687109151690382 ], [ -96.266756228850042, 29.687064151457253 ], [ -96.266745228291342, 29.687054151998876 ], [ -96.266563228170668, 29.687048152068176 ], [ -96.266468228872782, 29.687032152048172 ], [ -96.266311228064808, 29.686960151720452 ], [ -96.266097227893368, 29.686652151750177 ], [ -96.266009228706892, 29.686400151659406 ], [ -96.266009228039138, 29.686328151398513 ], [ -96.266072228270573, 29.686048151170091 ], [ -96.266072228601104, 29.685987151451521 ], [ -96.266060228594185, 29.68594315163697 ], [ -96.266041228733144, 29.685916151830828 ], [ -96.265990228014374, 29.685877151601787 ], [ -96.265877227963912, 29.685861151843262 ], [ -96.265764228464533, 29.685806151520179 ], [ -96.265739228220781, 29.685762151566887 ], [ -96.265626227676535, 29.685322151507343 ], [ -96.265443227826239, 29.684750151363342 ], [ -96.26536222854358, 29.684190151401886 ], [ -96.265327228546809, 29.684023150699211 ], [ -96.265324227794821, 29.68400815129035 ], [ -96.265299228303945, 29.683942151069477 ], [ -96.265249228039309, 29.683865151454562 ], [ -96.26516022789535, 29.683805150769938 ], [ -96.265123227866042, 29.683739150902738 ], [ -96.265110227604893, 29.683678150956599 ], [ -96.265112228274205, 29.683603150993591 ], [ -96.26511722778595, 29.68334315073686 ], [ -96.265104227777712, 29.683189151166566 ], [ -96.265085227987299, 29.683118150845271 ], [ -96.265054227945498, 29.683063151280898 ], [ -96.265010227816319, 29.683019151162803 ], [ -96.264834227532546, 29.682903151263186 ], [ -96.264764227449191, 29.682821151015194 ], [ -96.264550228243195, 29.682705150698396 ], [ -96.26451322754707, 29.682672150430509 ], [ -96.264456227562093, 29.682612150417523 ], [ -96.26443722751074, 29.682557151256088 ], [ -96.26439922731096, 29.682496150407637 ], [ -96.264343227950562, 29.682436150927064 ], [ -96.264204227933135, 29.68238115044484 ], [ -96.263908227367281, 29.682331151107736 ], [ -96.263846227572472, 29.682298150661946 ], [ -96.263732227875266, 29.682221150412534 ], [ -96.263676227776145, 29.682172151166299 ], [ -96.263525227617649, 29.681996150555744 ], [ -96.263355227652113, 29.681721150945666 ], [ -96.263292227719361, 29.681385150430096 ], [ -96.26324822700289, 29.681281150708479 ], [ -96.263235227556876, 29.681226150335537 ], [ -96.263166226990919, 29.681110150836933 ], [ -96.263160227280494, 29.681033150727533 ], [ -96.263236227688125, 29.680934150412497 ], [ -96.26325522687705, 29.68088515041271 ], [ -96.263248227795756, 29.680704150372847 ], [ -96.263255227314986, 29.680605150405611 ], [ -96.263230227712398, 29.680506150754038 ], [ -96.263186227269571, 29.680445150508373 ], [ -96.262883227273946, 29.680264150680436 ], [ -96.262625227631858, 29.680060150251713 ], [ -96.262418227203511, 29.679857150424969 ], [ -96.262292227368135, 29.679648150449395 ], [ -96.262281226557675, 29.679455150053627 ], [ -96.262267227112488, 29.679395150015942 ], [ -96.262236226595448, 29.679340150585475 ], [ -96.261927226540664, 29.679043150354286 ], [ -96.261883226505319, 29.678983150508266 ], [ -96.261877227026901, 29.678928150492876 ], [ -96.261877226927012, 29.678851150202995 ], [ -96.261953226989505, 29.678197149901674 ], [ -96.261966226608564, 29.677960149662404 ], [ -96.261953226848135, 29.677806150370444 ], [ -96.261915226628091, 29.677724150232564 ], [ -96.261909227261924, 29.677614150108266 ], [ -96.261827226385094, 29.677427149629541 ], [ -96.261777226813834, 29.67725614959442 ], [ -96.261765226419328, 29.677152150185389 ], [ -96.261809226405205, 29.677037150117741 ], [ -96.261847226463544, 29.676971149469022 ], [ -96.261903226464824, 29.676899149752753 ], [ -96.262010226403149, 29.676795149658961 ], [ -96.262048226505229, 29.676734149702384 ], [ -96.26207322696483, 29.676685149793492 ], [ -96.262130226657604, 29.67649814960831 ], [ -96.262168226913431, 29.676300149332498 ], [ -96.262162227299001, 29.676207149557353 ], [ -96.262137227093206, 29.676168149493137 ], [ -96.262036227120731, 29.676086149942236 ], [ -96.262073226918886, 29.676068149857539 ], [ -96.262256226819957, 29.675976149986273 ], [ -96.262313226872365, 29.6758771497148 ], [ -96.262414226704408, 29.675751149138158 ], [ -96.26251822732236, 29.675353149591864 ], [ -96.262590226904507, 29.675075149069666 ], [ -96.262635227168019, 29.674591149736415 ], [ -96.26262822683168, 29.674448149062425 ], [ -96.262559226877215, 29.674190149659513 ], [ -96.262371226969535, 29.673843149431114 ], [ -96.262207226417843, 29.673640148813117 ], [ -96.262157227049201, 29.673541149273969 ], [ -96.26217622712268, 29.673326148950281 ], [ -96.262138226943478, 29.673255149324632 ], [ -96.261943226375351, 29.672925149092602 ], [ -96.26185522630432, 29.672859149291924 ], [ -96.261717226902832, 29.672831149211877 ], [ -96.26167122696468, 29.672754149363865 ], [ -96.261635226648423, 29.67269414863047 ], [ -96.261534226423962, 29.672573148802844 ], [ -96.261352226916003, 29.672474148521996 ], [ -96.261333226822742, 29.672430149280558 ], [ -96.261320226852249, 29.672238148993127 ], [ -96.26116322593748, 29.671963148717207 ], [ -96.260798226515789, 29.671484149024344 ], [ -96.260616225778904, 29.671319148664875 ], [ -96.260528226188868, 29.671187148954324 ], [ -96.260509225803389, 29.671121148400392 ], [ -96.260515225833501, 29.671094148307208 ], [ -96.260547225880529, 29.671039148516151 ], [ -96.260604226141638, 29.670995149076251 ], [ -96.260629226684202, 29.670940148654147 ], [ -96.260635226023382, 29.670874148775127 ], [ -96.260673226392584, 29.670803148539594 ], [ -96.260632225731882, 29.670724148616454 ], [ -96.260396226398413, 29.670269148945998 ], [ -96.260146226073061, 29.669970148373928 ], [ -96.260025226433669, 29.669824148434639 ], [ -96.2599942259058, 29.669741148168914 ], [ -96.260000226205037, 29.669664148626779 ], [ -96.259956225528853, 29.669615148472744 ], [ -96.259843226210108, 29.669555148055224 ], [ -96.259799225596424, 29.669505148778168 ], [ -96.259767226131473, 29.669335148540291 ], [ -96.259616225779283, 29.669318148712801 ], [ -96.259553225737534, 29.66929014792802 ], [ -96.259478226364294, 29.669186148250308 ], [ -96.259428226274167, 29.669142148609861 ], [ -96.25937722626432, 29.669076148060039 ], [ -96.259343226056117, 29.669013147916157 ], [ -96.259308225538419, 29.668950148043358 ], [ -96.259264226114098, 29.668922147972442 ], [ -96.259233225647847, 29.66891714799068 ], [ -96.259132226241022, 29.668960148691422 ], [ -96.259088225571219, 29.66896014864535 ], [ -96.259006225706727, 29.668900148525434 ], [ -96.258993225654976, 29.66887214851705 ], [ -96.258779225899985, 29.668718147921439 ], [ -96.258723225816993, 29.668609147927452 ], [ -96.258666226118166, 29.668526148366162 ], [ -96.258540225395492, 29.668422148068814 ], [ -96.258489226010269, 29.668390148012882 ], [ -96.258266225253578, 29.668252148608552 ], [ -96.258238225830027, 29.668235147907655 ], [ -96.257999225540658, 29.668157148141372 ], [ -96.257943225421997, 29.668102148080596 ], [ -96.257905224940586, 29.668031147956299 ], [ -96.257880225658965, 29.667954148019682 ], [ -96.257603225139917, 29.667734148442435 ], [ -96.257527225376677, 29.667707148408347 ], [ -96.257446224827149, 29.667663148348545 ], [ -96.25742022532188, 29.66764614782139 ], [ -96.257295225395623, 29.667564148123752 ], [ -96.257291225555761, 29.6675071480844 ], [ -96.25670322470269, 29.667066147662275 ], [ -96.256481225488315, 29.666980147986365 ], [ -96.256223225307153, 29.66688014789203 ], [ -96.255950224916845, 29.66677514774608 ], [ -96.255020224743646, 29.666527147931479 ], [ -96.25500522513417, 29.666523148267181 ], [ -96.254785224095571, 29.666426148169247 ], [ -96.254766224339534, 29.666418147791312 ], [ -96.254652224971849, 29.666490147645675 ], [ -96.254520224145367, 29.666479147814179 ], [ -96.254444224468415, 29.6664851478114 ], [ -96.254312224488615, 29.666540147829956 ], [ -96.254199224924378, 29.666562148389904 ], [ -96.253947224743911, 29.666551148083784 ], [ -96.253727224792485, 29.66644614826938 ], [ -96.253450223759415, 29.666374147544563 ], [ -96.253274223968361, 29.666314147682133 ], [ -96.253198223778256, 29.666303148313805 ], [ -96.253116224470119, 29.666303148270767 ], [ -96.252814223560392, 29.666413148333159 ], [ -96.252751223683688, 29.666424147738105 ], [ -96.252631224509273, 29.666423148361659 ], [ -96.252216224300014, 29.666357147849691 ], [ -96.252135223913498, 29.666313148106859 ], [ -96.252034223880131, 29.6662581478565 ], [ -96.251914223531656, 29.66614314808951 ], [ -96.251656223815218, 29.666082147958409 ], [ -96.251581223776995, 29.66608214805289 ], [ -96.251442223823787, 29.666110147581374 ], [ -96.251360223589259, 29.666110148245831 ], [ -96.251285223573689, 29.6660881478461 ], [ -96.251146223627444, 29.666010148022362 ], [ -96.251090223600954, 29.665966148292313 ], [ -96.250926223088044, 29.665714147543557 ], [ -96.250870223629903, 29.665664147879784 ], [ -96.250643223004218, 29.665565147881875 ], [ -96.250549223518021, 29.665548147553924 ], [ -96.250429223919681, 29.665554147798506 ], [ -96.250366223475766, 29.665543147535185 ], [ -96.250347223906871, 29.665504148221824 ], [ -96.250322223167402, 29.665400148261909 ], [ -96.250122223280911, 29.665326148001409 ], [ -96.249859223227034, 29.665228148167639 ], [ -96.249328223463323, 29.665072147868742 ], [ -96.248962222665796, 29.665024147860155 ], [ -96.248078222388557, 29.664728147449527 ], [ -96.247673222709039, 29.664681148182758 ], [ -96.247382222653499, 29.664530147598086 ], [ -96.246780222027922, 29.664218147664595 ], [ -96.246531222489409, 29.663938147431526 ], [ -96.246124222357182, 29.663729147724997 ], [ -96.246097222557239, 29.663730147373712 ], [ -96.246084221930161, 29.66370814763631 ], [ -96.246037221807384, 29.663684148026537 ], [ -96.245946222046783, 29.663600147276519 ], [ -96.245798222467656, 29.663463147530987 ], [ -96.245659221846722, 29.663435147794367 ], [ -96.245606222046604, 29.663433147706897 ], [ -96.245552221780656, 29.663413147306592 ], [ -96.245344222250111, 29.663371147647954 ], [ -96.245223222129979, 29.663284147406255 ], [ -96.245074221649219, 29.663156147669145 ], [ -96.244618221650086, 29.662384147431506 ], [ -96.244323221607331, 29.66203314712941 ], [ -96.244095221742228, 29.661392147667843 ], [ -96.243897221571345, 29.661006147416998 ], [ -96.243640221588137, 29.660822146711066 ], [ -96.243053221310205, 29.660400147094315 ], [ -96.24283622078481, 29.659984147058974 ], [ -96.242108221356659, 29.65939114726411 ], [ -96.241809220750483, 29.658924146725539 ], [ -96.241586220644919, 29.658674147007499 ], [ -96.240856220994246, 29.658154146691828 ], [ -96.240682220231633, 29.657964146683671 ], [ -96.240597220793958, 29.65790814681559 ], [ -96.240361220399151, 29.65782614673083 ], [ -96.24006122098335, 29.657781146412844 ], [ -96.239453220106753, 29.65777814653207 ], [ -96.239096220493053, 29.657847146693332 ], [ -96.239021220225794, 29.65792614694794 ], [ -96.23896121988551, 29.658130146971576 ], [ -96.238828219801363, 29.658263146484835 ], [ -96.238184220289554, 29.658560146477708 ], [ -96.238036220037827, 29.658925146649743 ], [ -96.237913219587142, 29.659067147411204 ], [ -96.237519220089155, 29.659375147482749 ], [ -96.237290219865272, 29.659413146711902 ], [ -96.236886219697567, 29.659290147307878 ], [ -96.236730219270385, 29.659323146939489 ], [ -96.236568220048909, 29.659427147398009 ], [ -96.236450219191497, 29.659644147362442 ], [ -96.236413219523058, 29.660083147609292 ], [ -96.236410219122774, 29.660113147299771 ], [ -96.2362152196648, 29.660245146920911 ], [ -96.236049219942899, 29.660357147040674 ], [ -96.23591621927946, 29.660386147758995 ], [ -96.235887219600755, 29.660403147019856 ], [ -96.235845219238655, 29.660406147102474 ], [ -96.234751218929645, 29.660753147416258 ], [ -96.234438218966105, 29.660722147419005 ], [ -96.234258218790245, 29.660748147687617 ], [ -96.234129219511232, 29.660766147417334 ], [ -96.233668219089097, 29.660754147927559 ], [ -96.233615218877077, 29.660756147478619 ], [ -96.233539219186994, 29.660751147522223 ], [ -96.233357218914506, 29.660746147425087 ], [ -96.232842218710445, 29.660986147483445 ], [ -96.23255521828689, 29.661120147233252 ], [ -96.232520218481142, 29.661127147406937 ], [ -96.232482219005149, 29.661129147941541 ], [ -96.232408218734292, 29.661150147520637 ], [ -96.232220218704413, 29.661112148004097 ], [ -96.231308218205115, 29.661543147572253 ], [ -96.23114421872539, 29.661806147449667 ], [ -96.23107321801794, 29.661938147353599 ], [ -96.231052218496416, 29.661954147712812 ], [ -96.231015218038465, 29.662010147513893 ], [ -96.231009218545353, 29.662022147724237 ], [ -96.23090621786929, 29.66216614788603 ], [ -96.230726217875841, 29.662297147591101 ], [ -96.229863218464828, 29.662684148421896 ], [ -96.229161217506061, 29.663319147716084 ], [ -96.228994218087678, 29.663415147791678 ], [ -96.228366218241902, 29.6637181481779 ], [ -96.22792521810301, 29.663761148594869 ], [ -96.227715218082352, 29.663843148730521 ], [ -96.226986217724445, 29.664256148282035 ], [ -96.226644217538961, 29.664557148189857 ], [ -96.226007217109796, 29.664703148549521 ], [ -96.225684216839042, 29.66472614834213 ], [ -96.225022217437882, 29.664774148786364 ], [ -96.22468621645902, 29.664895148182477 ], [ -96.224417216924465, 29.664847148452548 ], [ -96.223841216264162, 29.66474414831135 ], [ -96.222199215874809, 29.664123148153887 ], [ -96.221872216424103, 29.663967148616862 ], [ -96.221710216389681, 29.663874148816141 ], [ -96.221484216019732, 29.6637051487739 ], [ -96.221250215984199, 29.663488148381287 ], [ -96.221054215430087, 29.66318214830909 ], [ -96.220984215843501, 29.663100148142952 ], [ -96.220846216184896, 29.662940148505793 ], [ -96.220733215973567, 29.662780148737106 ], [ -96.220534216052656, 29.662679148424225 ], [ -96.22019221614724, 29.662535147908546 ], [ -96.219856215742467, 29.662423148638897 ], [ -96.21976821543899, 29.662405148234704 ], [ -96.219644215698111, 29.662420148629081 ], [ -96.219204215709183, 29.662649148424677 ], [ -96.219096214925727, 29.662653148707026 ], [ -96.218909215180517, 29.662614148559584 ], [ -96.21861821561572, 29.662538147987732 ], [ -96.218559215212906, 29.662476148097877 ], [ -96.218596214981474, 29.662357148239739 ], [ -96.218625214893706, 29.662074148555273 ], [ -96.218599215397504, 29.661932148021698 ], [ -96.218566215105412, 29.661885148297799 ], [ -96.218513215625379, 29.661843148127581 ], [ -96.218334214874218, 29.66177014788078 ], [ -96.218108215468305, 29.661714147921234 ], [ -96.217928214852364, 29.661677148250121 ], [ -96.217578214870883, 29.661660148320969 ], [ -96.217060214639048, 29.661661147781867 ], [ -96.216712214460429, 29.661689148441219 ], [ -96.216604214442043, 29.661664148134019 ], [ -96.216527214853912, 29.661586147919277 ], [ -96.216457214395007, 29.66155814788274 ], [ -96.216294214494312, 29.661544147975331 ], [ -96.216116214926387, 29.661508148628187 ], [ -96.216019214954571, 29.661460148647706 ], [ -96.215975214396494, 29.661446148157125 ], [ -96.215954214587157, 29.661428148599793 ], [ -96.215931214595386, 29.66141714793352 ], [ -96.215754214517943, 29.661350147769276 ], [ -96.215538214047896, 29.661317147891292 ], [ -96.214995214039206, 29.661309148403241 ], [ -96.214835213753574, 29.661279148014234 ], [ -96.214426214253137, 29.661086148281282 ], [ -96.214298214301976, 29.661025148438778 ], [ -96.213922213602785, 29.660874148006624 ], [ -96.213824214031675, 29.660868148337073 ], [ -96.213734213816736, 29.660926147917145 ], [ -96.21369621387349, 29.660938148360593 ], [ -96.213584213805447, 29.660914148053038 ], [ -96.213369213900449, 29.660783148182926 ], [ -96.213326214113224, 29.660757147985684 ], [ -96.213152213720036, 29.660562148453248 ], [ -96.212954213507786, 29.660370148089413 ], [ -96.212848213502085, 29.660225147737513 ], [ -96.212817213801586, 29.660161147832085 ], [ -96.212836213805076, 29.66001014791274 ], [ -96.212893214027844, 29.659826148141189 ], [ -96.212829213160234, 29.659657147953563 ], [ -96.21275321378036, 29.659582148161128 ], [ -96.212612214036582, 29.659541148201885 ], [ -96.212550213597027, 29.659538147949849 ], [ -96.21242621361074, 29.659554147916431 ], [ -96.212401213391743, 29.659573147797587 ], [ -96.212371213307094, 29.659579147569712 ], [ -96.212350213491561, 29.659585147923032 ], [ -96.212332213514614, 29.659598148348373 ], [ -96.212272213145667, 29.65960814788432 ], [ -96.212203213586406, 29.659589148200524 ], [ -96.212095213045828, 29.659477148304315 ], [ -96.211976212995793, 29.65939614797475 ], [ -96.211915213126503, 29.659352148178158 ], [ -96.211894213724662, 29.659350147697165 ], [ -96.211872212885424, 29.659315147655192 ], [ -96.211879213819003, 29.659298147528379 ], [ -96.211846213601774, 29.659236148087359 ], [ -96.21180421341036, 29.659183147870831 ], [ -96.211659213095444, 29.659072147737191 ], [ -96.21155721379165, 29.658968147684302 ], [ -96.211424213240022, 29.658748148077972 ], [ -96.211340213582517, 29.658600148026188 ], [ -96.211333213405695, 29.658540147577916 ], [ -96.211325213222509, 29.658470148118653 ], [ -96.211327213696151, 29.658409147447557 ], [ -96.21131221286862, 29.658259147841797 ], [ -96.211260213335322, 29.658076147886415 ], [ -96.211252213206478, 29.658046147776812 ], [ -96.211139213404422, 29.657973147845361 ], [ -96.210959213420935, 29.657887147493874 ], [ -96.210640213469745, 29.657612147246219 ], [ -96.210573212875289, 29.657533147753369 ], [ -96.210518212589292, 29.657467147167239 ], [ -96.210500212909039, 29.657445147903633 ], [ -96.210467212445849, 29.657426147387621 ], [ -96.210264212769388, 29.657312147384626 ], [ -96.210024212509992, 29.657199147595428 ], [ -96.209730212577824, 29.656913147266792 ], [ -96.209336212634639, 29.656645147151654 ], [ -96.20914121267225, 29.656517147175709 ], [ -96.208912212817253, 29.656413147063322 ], [ -96.208700212889596, 29.656414147448359 ], [ -96.208259212089487, 29.656480147315705 ], [ -96.208058212094073, 29.656484147695096 ], [ -96.207661212344078, 29.656383147864787 ], [ -96.207319212570383, 29.656172147806576 ], [ -96.207206211673835, 29.656079147397353 ], [ -96.206966212109592, 29.655883147694755 ], [ -96.206774211682884, 29.655809147291684 ], [ -96.206604211757238, 29.65580014716253 ], [ -96.206477211685097, 29.655807147680079 ], [ -96.20594521220967, 29.656034147511349 ], [ -96.205155211131114, 29.656066147315556 ], [ -96.204947211434501, 29.65609014731502 ], [ -96.20380721151696, 29.656507147992315 ], [ -96.203281210585075, 29.65686214808434 ], [ -96.202824210956521, 29.657004147751927 ], [ -96.202545210863718, 29.657086147992828 ], [ -96.202366211393496, 29.657139147645232 ], [ -96.202041211104131, 29.657127148028358 ], [ -96.201197211040039, 29.656995148125638 ], [ -96.200943210652497, 29.656920148181491 ], [ -96.200616210463593, 29.656823147738272 ], [ -96.199819210130997, 29.65648714801824 ], [ -96.199617210219515, 29.656437148020135 ], [ -96.199458209924842, 29.65646014738461 ], [ -96.199466209808989, 29.656497148188571 ], [ -96.199554210619809, 29.656650147738283 ], [ -96.199604210503225, 29.656705147820901 ], [ -96.199762209837004, 29.656826147992515 ], [ -96.200114210817475, 29.657074147935727 ], [ -96.200215210720089, 29.657107147921451 ], [ -96.200592210449699, 29.657173147465983 ], [ -96.200680210924432, 29.657249148144224 ], [ -96.20076821049085, 29.657365148196646 ], [ -96.200844210422062, 29.657502147897606 ], [ -96.20086321050907, 29.657579147908457 ], [ -96.200693210564324, 29.65842614840011 ], [ -96.200643210995551, 29.65892614827975 ], [ -96.200725210447359, 29.659118148104671 ], [ -96.20102021087034, 29.659190148165816 ], [ -96.201140210218597, 29.659228148335455 ], [ -96.201322210944227, 29.659261148603711 ], [ -96.201473210508397, 29.659316148275721 ], [ -96.201524210474076, 29.65936614867751 ], [ -96.201543211241457, 29.659426147892873 ], [ -96.201461210697175, 29.659805148553765 ], [ -96.201411210845293, 29.659959148060764 ], [ -96.201228210446686, 29.660454148312478 ], [ -96.201027210278099, 29.660894148221065 ], [ -96.200964210708477, 29.660987148307434 ], [ -96.200832210704789, 29.661108148419597 ], [ -96.200750210397359, 29.661114148605712 ], [ -96.200637210679361, 29.661103148810827 ], [ -96.20054921026879, 29.661108148877766 ], [ -96.200467210341046, 29.661136148579846 ], [ -96.200385210057206, 29.661191148736108 ], [ -96.200316210771135, 29.661262148832233 ], [ -96.200265210243757, 29.661482148583314 ], [ -96.20027221102896, 29.661735148699687 ], [ -96.200297210761207, 29.661790149040371 ], [ -96.200372210089995, 29.661872148540095 ], [ -96.200479210917024, 29.661938148642133 ], [ -96.200793211122274, 29.662098148776241 ], [ -96.201191210386341, 29.662301149067204 ], [ -96.201379211055624, 29.662438149343462 ], [ -96.201688210567312, 29.662691148755595 ], [ -96.201763211233995, 29.662735148927652 ], [ -96.201858211224263, 29.662774149258915 ], [ -96.202040211246157, 29.66280714927294 ], [ -96.202160210869764, 29.662861149061118 ], [ -96.202330210925226, 29.662966148597675 ], [ -96.202399210727407, 29.663015149277694 ], [ -96.202468211391732, 29.663092148604463 ], [ -96.202638211151978, 29.663378149432653 ], [ -96.202689210994393, 29.663516148817813 ], [ -96.202714210813483, 29.663653149175449 ], [ -96.202714210746365, 29.663801149571007 ], [ -96.20267621110969, 29.664060149384657 ], [ -96.202645211686487, 29.664153149132961 ], [ -96.202601211413793, 29.664230149137786 ], [ -96.202525211293079, 29.664329148915431 ], [ -96.202475211653152, 29.664450149182212 ], [ -96.202450211294291, 29.664587148993466 ], [ -96.20245621104911, 29.664697148979393 ], [ -96.202513211161488, 29.664884149333275 ], [ -96.20255021081698, 29.664956149638261 ], [ -96.202683210960345, 29.665302149606624 ], [ -96.202745211012669, 29.665395149295563 ], [ -96.202808211687824, 29.665456149613181 ], [ -96.202846210953425, 29.665544149686394 ], [ -96.202859211196042, 29.665599149650035 ], [ -96.202859211296413, 29.665670149410101 ], [ -96.202815210990508, 29.665918149409411 ], [ -96.202821211346063, 29.666006149701502 ], [ -96.202979210930124, 29.666506150066724 ], [ -96.203104211602067, 29.666781149524333 ], [ -96.203199211413406, 29.666934149597772 ], [ -96.203400211087754, 29.667055149498424 ], [ -96.203488211272841, 29.667094149433161 ], [ -96.203690211426689, 29.66722614973812 ], [ -96.203784211450213, 29.667308149515126 ], [ -96.203853211903535, 29.667391149662841 ], [ -96.203891211805384, 29.667495150009866 ], [ -96.203885211705852, 29.667594150293628 ], [ -96.203860212235085, 29.667665149561554 ], [ -96.203753212103209, 29.667797150013218 ], [ -96.203715212150854, 29.667880150094714 ], [ -96.203721211482417, 29.668028150152001 ], [ -96.203740211997527, 29.668078149931137 ], [ -96.203910212220279, 29.668243149703279 ], [ -96.203980212015438, 29.668287149624131 ], [ -96.204011211642793, 29.668325150145257 ], [ -96.204080211556018, 29.668605150367846 ], [ -96.204131212046406, 29.668704150512387 ], [ -96.204420212299738, 29.669161150222866 ], [ -96.204559211748332, 29.669446150397462 ], [ -96.204735212515118, 29.669650149945721 ], [ -96.204792212186845, 29.66974915048776 ], [ -96.204886212225858, 29.669864150596716 ], [ -96.204932212143788, 29.670204150026922 ], [ -96.204718211863465, 29.670356150815703 ], [ -96.204439211764168, 29.670406150607864 ], [ -96.20476721179017, 29.67116515037824 ], [ -96.204897212116407, 29.671605150647522 ], [ -96.204947212623651, 29.671895150393187 ], [ -96.205117212436789, 29.673995151400451 ], [ -96.205557212734149, 29.67907515253421 ], [ -96.205597212736677, 29.679395152348715 ], [ -96.205387212739538, 29.679665152301403 ], [ -96.204477212558132, 29.680695152383713 ], [ -96.204177212411508, 29.681045152532587 ], [ -96.202457212321676, 29.682975152871528 ], [ -96.201207212036309, 29.684325153605048 ], [ -96.200927211306336, 29.68459515379838 ], [ -96.200647211923012, 29.684875153240995 ], [ -96.200477211748478, 29.685015153260604 ], [ -96.200137211052535, 29.68532515384732 ], [ -96.199537210968458, 29.685815154073641 ], [ -96.198697211757718, 29.686555154115094 ], [ -96.196407210834423, 29.688495154763977 ], [ -96.196247210693286, 29.688645154713434 ], [ -96.195788211035563, 29.689318154477693 ], [ -96.195777210342087, 29.68933515481336 ], [ -96.195393210856338, 29.689860154615133 ], [ -96.193937209793987, 29.691795154771658 ], [ -96.193777210317791, 29.691975154821222 ], [ -96.192917210242925, 29.692745155401724 ], [ -96.192267210022962, 29.693355155303571 ], [ -96.191537209883279, 29.694015155707731 ], [ -96.191077209838866, 29.694445156188216 ], [ -96.190837209611942, 29.694655155573798 ], [ -96.189061209550843, 29.696281156497442 ], [ -96.188070208718713, 29.697175156828887 ], [ -96.188047208677361, 29.69719515633783 ], [ -96.187667208725614, 29.697545156173579 ], [ -96.187497208471697, 29.69768515631765 ], [ -96.186447208448314, 29.698625156699002 ], [ -96.18496120862325, 29.699972157283124 ], [ -96.182657207708459, 29.702045157850399 ], [ -96.179816207468647, 29.70463415791496 ], [ -96.179717207500232, 29.704725157982402 ], [ -96.178587207232255, 29.705735158346023 ], [ -96.17756720648309, 29.706665158676298 ], [ -96.174815205938287, 29.709148159177232 ], [ -96.172822206121666, 29.710930160178915 ], [ -96.171327205779363, 29.712275160326708 ], [ -96.170047204989558, 29.71345516053292 ], [ -96.169707205565857, 29.713155160126917 ], [ -96.168627204253951, 29.712245160461254 ], [ -96.168157204893006, 29.711865160365747 ], [ -96.167927204085601, 29.711665159965236 ], [ -96.166507204653357, 29.710485159579203 ], [ -96.166257204032661, 29.710285159909134 ], [ -96.1660772045351, 29.710135159689891 ], [ -96.165877203678704, 29.709985160183912 ], [ -96.165417203798725, 29.709565160019093 ], [ -96.165127203945502, 29.709335159651999 ], [ -96.163917203401823, 29.70832515945958 ], [ -96.162607203058769, 29.707225158995183 ], [ -96.161487202832049, 29.706305159331944 ], [ -96.161457202611373, 29.706285159275971 ], [ -96.16140720227672, 29.706265159528773 ], [ -96.161377203146372, 29.706265159116452 ], [ -96.158877201838337, 29.706725159487323 ], [ -96.158687201867224, 29.706765158990379 ], [ -96.157497202181219, 29.706975159307635 ], [ -96.1573272014015, 29.707015159853277 ], [ -96.154717200783082, 29.707505159676558 ], [ -96.153897200542971, 29.707645159544583 ], [ -96.151997200806107, 29.707985160257138 ], [ -96.151857200787177, 29.708015160244127 ], [ -96.15076720039427, 29.708205160345887 ], [ -96.150437199546062, 29.708275159591544 ], [ -96.149836199658935, 29.708391159793532 ], [ -96.149557199900116, 29.708445160289173 ], [ -96.148857199811957, 29.708555160331599 ], [ -96.146717198817441, 29.708965159863865 ], [ -96.144617198551771, 29.709345160153028 ], [ -96.144008198018895, 29.709469160520683 ], [ -96.143977198745645, 29.709475160085358 ], [ -96.143487197810174, 29.709555160051917 ], [ -96.140556197514925, 29.710107160283894 ], [ -96.139507197525717, 29.710305160461978 ], [ -96.139267197572892, 29.710345160538044 ], [ -96.138347196636047, 29.710515160828422 ], [ -96.137997196890382, 29.710565161225045 ], [ -96.137227196564851, 29.71070516080481 ], [ -96.137599196959059, 29.712205161609983 ], [ -96.138117197413138, 29.71429516184531 ], [ -96.138367197086197, 29.715225161906925 ], [ -96.139474198156066, 29.719680162348158 ], [ -96.139517197537558, 29.719855162419041 ], [ -96.13976719752533, 29.720805162996299 ], [ -96.139997197896662, 29.721755162667989 ], [ -96.140217197655389, 29.722625163454399 ], [ -96.140947197974782, 29.725515164196384 ], [ -96.14129419840846, 29.726914163618279 ], [ -96.141927198996115, 29.729315164764095 ], [ -96.142510198721155, 29.731639165353641 ], [ -96.14334719905483, 29.734945165311618 ], [ -96.143557199416506, 29.735865165794433 ], [ -96.143837199450161, 29.73690516604864 ], [ -96.14386019950399, 29.736996166041688 ], [ -96.14483719974578, 29.740925166429093 ], [ -96.145351199782567, 29.742922166805887 ], [ -96.145707200706497, 29.744305167192294 ], [ -96.146157200857303, 29.74616516756776 ], [ -96.146637200512885, 29.748035168331121 ], [ -96.146890201424796, 29.748978168011757 ], [ -96.146897201215282, 29.749005168325873 ], [ -96.146977200830392, 29.749325168255787 ], [ -96.147107200606911, 29.749885168469799 ], [ -96.147117201405365, 29.749985168420395 ], [ -96.147753201479105, 29.75244316873081 ], [ -96.148117201213353, 29.75377516961796 ], [ -96.148567201849801, 29.755155169887065 ], [ -96.148707201260947, 29.755545169273468 ], [ -96.14903720197195, 29.756345170183014 ], [ -96.149657201715442, 29.7577251700334 ], [ -96.149936201653787, 29.758316169681144 ], [ -96.150203202189758, 29.758910170530385 ], [ -96.150237201840824, 29.758985170196645 ], [ -96.15226720293235, 29.763375171017859 ], [ -96.152549203323787, 29.7639841708666 ], [ -96.152587203366892, 29.764065171531694 ], [ -96.152747203567486, 29.764405171126334 ], [ -96.152847202691916, 29.764625171274904 ], [ -96.152987202865688, 29.764945171322307 ], [ -96.15314720357047, 29.765325171717905 ], [ -96.153217203732396, 29.765475171884095 ], [ -96.153245202896102, 29.765546171379764 ], [ -96.153507203461956, 29.766205171715292 ], [ -96.153677203067588, 29.766635171700827 ], [ -96.153947203633393, 29.767405171916433 ], [ -96.15446720363515, 29.769035171848962 ], [ -96.154567204286749, 29.769465172192394 ], [ -96.154787203628544, 29.770335172467345 ], [ -96.154867204381745, 29.77032517261652 ], [ -96.155957204631491, 29.770105171913897 ], [ -96.15681720420919, 29.769925171774013 ], [ -96.15750720447295, 29.769825172536283 ], [ -96.158227205001737, 29.769745172537981 ], [ -96.159257204714422, 29.769656171650521 ], [ -96.159737205418992, 29.769615172340796 ], [ -96.161677205909029, 29.769565172240181 ], [ -96.162827206361186, 29.769525171910786 ], [ -96.165947206880901, 29.769405171764003 ], [ -96.166727207339221, 29.769360171787532 ], [ -96.167507206984283, 29.769315171781791 ], [ -96.168767207096181, 29.770365172244603 ], [ -96.169598208164587, 29.771084171784967 ], [ -96.168427206910721, 29.772145171891729 ], [ -96.168052207613457, 29.772474172142633 ], [ -96.16923320754357, 29.775473173116424 ], [ -96.169458207379279, 29.776026172603377 ], [ -96.16975520803129, 29.776756173354304 ], [ -96.170954208367391, 29.779443173294066 ], [ -96.171193208534334, 29.779977173614881 ], [ -96.17120520837446, 29.780003174019264 ], [ -96.17128620852192, 29.780186173953094 ], [ -96.171391208040049, 29.78041717384184 ], [ -96.171896208839271, 29.781555173729412 ], [ -96.172610209119554, 29.783154174513374 ], [ -96.172628209177901, 29.78319417438377 ], [ -96.172726208603905, 29.783406174045261 ], [ -96.17285920878868, 29.783695174886059 ], [ -96.175867209341192, 29.783855174027867 ], [ -96.176537209894207, 29.783905174040996 ], [ -96.177867210669561, 29.783995174071084 ], [ -96.178847210878445, 29.784075174234772 ], [ -96.179057210482654, 29.784095174361152 ], [ -96.179337210356977, 29.784135174349554 ], [ -96.179352210790483, 29.784138173998304 ], [ -96.179527210830926, 29.784175174395759 ], [ -96.179807210563226, 29.784275174398108 ], [ -96.179987211099672, 29.78435517464035 ], [ -96.180297211405588, 29.784535174025134 ], [ -96.180537210911766, 29.784695174039367 ], [ -96.18116721163085, 29.785235174140247 ], [ -96.181276210926796, 29.785326174418167 ], [ -96.182547211338644, 29.786385174971883 ], [ -96.183297211593, 29.786995174422547 ], [ -96.183697211701457, 29.787305174487432 ], [ -96.184577212483731, 29.788055174654584 ], [ -96.1851972125163, 29.788555175428609 ], [ -96.186507212761839, 29.789645175283084 ], [ -96.187457213567015, 29.790505175200401 ], [ -96.191227213944842, 29.793635176161256 ], [ -96.191937214323474, 29.794235176051583 ], [ -96.192387214218769, 29.794565175823678 ], [ -96.192977214342676, 29.794955175781965 ], [ -96.193427214307107, 29.795245175638385 ], [ -96.193607214584731, 29.79536517638866 ], [ -96.194467215028268, 29.795885176185163 ], [ -96.197822216239942, 29.797966176542644 ], [ -96.203108217964029, 29.801243177136897 ], [ -96.204627218342225, 29.802185176979233 ], [ -96.20605721814141, 29.803105177019869 ], [ -96.20645721849948, 29.803385176995182 ], [ -96.207017218245326, 29.803825177255963 ], [ -96.207937218644162, 29.80460517770997 ], [ -96.209167219012741, 29.805585177909695 ], [ -96.210897219914116, 29.807025178298183 ], [ -96.213647220446276, 29.809315178194694 ], [ -96.215897221008206, 29.811225178722854 ], [ -96.216969221312468, 29.812108178914723 ], [ -96.218467222424067, 29.813335179150972 ], [ -96.218667221876828, 29.813515179294612 ], [ -96.219907222342925, 29.814515179175956 ], [ -96.221757222992821, 29.81607517976979 ], [ -96.222177223489879, 29.816445179505248 ], [ -96.22301722323941, 29.817305179902071 ], [ -96.223667223284551, 29.81807517932852 ], [ -96.224861223939527, 29.819673179508527 ], [ -96.225013224318943, 29.819876179884432 ], [ -96.225087223912567, 29.819975179818712 ], [ -96.225467224080077, 29.820445179758842 ], [ -96.225677224567789, 29.820745180125101 ], [ -96.226507223868424, 29.82185518061042 ], [ -96.226847224749221, 29.822295180090048 ], [ -96.227065224110945, 29.822595180024727 ], [ -96.227087224258042, 29.822625180886885 ], [ -96.227427224441968, 29.8230451808681 ], [ -96.228107225271373, 29.823835180263796 ], [ -96.228125224959925, 29.823853180242139 ], [ -96.228437225389314, 29.824175180721582 ], [ -96.229057225004354, 29.824775180707295 ], [ -96.229207225244195, 29.824915180899183 ], [ -96.229607225042116, 29.82526518083078 ], [ -96.229999225374456, 29.825573181251666 ], [ -96.230167225805488, 29.825705180805734 ], [ -96.230557225551379, 29.825985180623544 ], [ -96.230927225749909, 29.826265181406832 ], [ -96.231697226394246, 29.826755180967602 ], [ -96.231834226008445, 29.826839181389357 ], [ -96.232701226042124, 29.827370180851933 ], [ -96.233247226706553, 29.827705181331201 ], [ -96.234252226148485, 29.828300181093191 ], [ -96.235112226784651, 29.828822181117914 ], [ -96.236481227733989, 29.829669181655227 ], [ -96.237488227484832, 29.830268181633365 ], [ -96.240467228587406, 29.832062181623094 ], [ -96.240987228499122, 29.832375182360025 ], [ -96.242497229019676, 29.833305182340123 ], [ -96.243370229362228, 29.833828182028014 ], [ -96.244017229053313, 29.834215181887615 ], [ -96.244247229476386, 29.834345182575188 ], [ -96.245447229288331, 29.835025182099514 ], [ -96.245857230044919, 29.835235182668875 ], [ -96.246127230389931, 29.835365181980659 ], [ -96.246937229792835, 29.835715182104622 ], [ -96.24750723012238, 29.835945182571265 ], [ -96.248557230317715, 29.836335182108684 ], [ -96.249197230595627, 29.836585182101217 ], [ -96.249216230586498, 29.836593182254482 ], [ -96.250047230714614, 29.836925182673873 ], [ -96.250547231366966, 29.83709518290393 ], [ -96.252007231727575, 29.837645182570565 ], [ -96.25290723210135, 29.838005183074667 ], [ -96.253617232402391, 29.83827518314175 ], [ -96.253917232537972, 29.83837518269155 ], [ -96.255318232643859, 29.838909183018544 ], [ -96.256858232662367, 29.839496182637752 ], [ -96.258297233274121, 29.840045182578489 ], [ -96.258857233699928, 29.84026518252513 ], [ -96.260230234277799, 29.840789183204528 ], [ -96.261347234348733, 29.841215183339191 ], [ -96.261737234637536, 29.84135518292722 ], [ -96.263167234926698, 29.841905182762382 ], [ -96.264887234694299, 29.842555182875358 ], [ -96.267194235771257, 29.843459183018176 ], [ -96.267937235637405, 29.843745183474756 ], [ -96.268887236232132, 29.844089182993049 ], [ -96.269467236371284, 29.844305183123961 ], [ -96.27034723653459, 29.84458518336406 ], [ -96.270927236892163, 29.844755183414151 ], [ -96.273477237347677, 29.845395183743928 ], [ -96.274037237410667, 29.845515183613944 ], [ -96.275687237840813, 29.845925183740128 ], [ -96.276867238650283, 29.846205183349436 ], [ -96.28107523924956, 29.847257183753488 ], [ -96.281667239318452, 29.847405183983131 ], [ -96.281796240020583, 29.847439183748214 ], [ -96.282371240190344, 29.847589183592909 ], [ -96.282927239470553, 29.84773518352387 ], [ -96.284897240770846, 29.848205183967547 ], [ -96.286817241359273, 29.848675183295072 ], [ -96.28755724094141, 29.84884518338551 ], [ -96.289427241353224, 29.849325183277795 ], [ -96.289977241585021, 29.849515183767274 ], [ -96.290557241680247, 29.849695184140703 ], [ -96.292610242494433, 29.850492183824585 ], [ -96.292927242248368, 29.850625183652546 ], [ -96.293540242619216, 29.85086718352099 ], [ -96.295177243067499, 29.851515184023405 ], [ -96.296809243238542, 29.852172184281287 ], [ -96.297700243640094, 29.852521183775554 ], [ -96.298657244262444, 29.852895183861126 ], [ -96.299687244561468, 29.853315184064805 ], [ -96.301397244835869, 29.853985184376818 ], [ -96.302917245114699, 29.854625183956578 ], [ -96.303607245466921, 29.854935184180285 ], [ -96.304467245823588, 29.855405184837846 ], [ -96.30605724578534, 29.856325184390244 ], [ -96.306140246119597, 29.856374184474888 ], [ -96.309027247169126, 29.858075185262962 ], [ -96.310447247366952, 29.858885184798119 ], [ -96.310933247808734, 29.85917718517484 ], [ -96.311497247887218, 29.859515185066613 ], [ -96.313197248463823, 29.860475185307909 ], [ -96.313797247902741, 29.860845185598667 ], [ -96.315016248183667, 29.861560184974429 ], [ -96.315367248315027, 29.861765185611382 ], [ -96.316857249221783, 29.862605185729542 ], [ -96.317427249587396, 29.862875185834696 ], [ -96.318077249570322, 29.863155185392962 ], [ -96.318767249660254, 29.863415185304451 ], [ -96.319097250210817, 29.863505185763501 ], [ -96.319477249623745, 29.863565185573208 ], [ -96.319794249802939, 29.86358818540884 ], [ -96.320157250136276, 29.86361518522429 ], [ -96.320647249940762, 29.863585185632228 ], [ -96.320937250381064, 29.863545185585821 ], [ -96.321117250494439, 29.863505185850343 ], [ -96.321497250237215, 29.863405185295779 ], [ -96.322689250251685, 29.862968184926775 ], [ -96.323209250955969, 29.862777185557867 ], [ -96.324611251204885, 29.862287185126338 ], [ -96.326957251651308, 29.861475184693621 ], [ -96.327327251685162, 29.861375185165958 ], [ -96.327867251582418, 29.861255185082744 ], [ -96.328567252371499, 29.861155185198076 ], [ -96.329067252124077, 29.86111518465578 ], [ -96.329521252349451, 29.861100184655974 ], [ -96.32967725270322, 29.861095185163265 ], [ -96.329807251868601, 29.861095184571866 ], [ -96.330287251973317, 29.861115184426708 ], [ -96.330727252676567, 29.861145184372912 ], [ -96.331057252182688, 29.861185184601172 ], [ -96.332117252770033, 29.86134518431107 ], [ -96.332447253199732, 29.861425184447519 ], [ -96.333087253666278, 29.861625185047796 ], [ -96.33406725379561, 29.861955184763421 ], [ -96.334535253775144, 29.862097185144741 ], [ -96.337252254035988, 29.862975184721311 ], [ -96.33833725417351, 29.86332518520684 ], [ -96.339037254457068, 29.863575184456181 ], [ -96.339053254972967, 29.863580184574193 ], [ -96.339507254635066, 29.863715184450047 ], [ -96.341117255023377, 29.8642551845751 ], [ -96.341207255256862, 29.864015184630915 ], [ -96.342057255506845, 29.862105184407742 ], [ -96.343352255992286, 29.859111184293528 ], [ -96.343737255807739, 29.858205183328707 ], [ -96.343874256046192, 29.857859183892383 ], [ -96.344534256283922, 29.856197183627721 ], [ -96.344897255735816, 29.855295183427145 ], [ -96.345137256140944, 29.854725182771269 ], [ -96.345170256088394, 29.854653183215849 ], [ -96.34528725630777, 29.854391182431321 ], [ -96.345317255883302, 29.854325182434888 ], [ -96.345707256411956, 29.853335183038357 ], [ -96.345977256145233, 29.852775182252348 ], [ -96.34602725558571, 29.852685182140117 ], [ -96.34608725603411, 29.852625182036654 ], [ -96.34626425586751, 29.852525182106842 ], [ -96.346687255999143, 29.852285182202728 ], [ -96.347037256715666, 29.85201518226015 ], [ -96.347567256457751, 29.851655182185848 ], [ -96.347690256490708, 29.851579182384885 ], [ -96.348717256288595, 29.850945182315776 ], [ -96.348827256936033, 29.850895181931172 ], [ -96.348887256772812, 29.85087518211645 ], [ -96.34908725627848, 29.850845182293206 ], [ -96.351047256788192, 29.85076518227088 ], [ -96.352297257414662, 29.850685182135862 ], [ -96.353167257854281, 29.850645181576041 ], [ -96.353819258027471, 29.850639181714637 ], [ -96.354217257719114, 29.850635181776116 ], [ -96.355287258804665, 29.85067518147342 ], [ -96.35636725820099, 29.8507451817168 ], [ -96.356417259018599, 29.850746181578572 ], [ -96.35679725852421, 29.850755181633769 ], [ -96.359017259241483, 29.85095518194203 ], [ -96.360537259225708, 29.851105181796395 ], [ -96.3612462597183, 29.851169182005066 ], [ -96.361631259970196, 29.851204181989861 ], [ -96.361757260011757, 29.85121518193586 ], [ -96.362027259929917, 29.851275181522752 ], [ -96.362288259856143, 29.851362181376032 ], [ -96.362769259881375, 29.851497181427245 ], [ -96.363783260345542, 29.851738181381013 ], [ -96.364947260419044, 29.851915182029604 ], [ -96.366267260799617, 29.852145181754395 ], [ -96.367257261023639, 29.852335181771743 ], [ -96.368697261626721, 29.852585181294764 ], [ -96.36916726173304, 29.852625182068014 ], [ -96.373597263236505, 29.852625181610229 ], [ -96.375387263187179, 29.852635181544692 ], [ -96.375834263979172, 29.852642181555197 ], [ -96.37662726429997, 29.852655181016875 ], [ -96.37822726454408, 29.8527051816212 ], [ -96.378877264646107, 29.852685180942196 ], [ -96.380187264249443, 29.852685180810852 ], [ -96.381657265302707, 29.852635181102062 ], [ -96.384957265697281, 29.852605181521579 ], [ -96.385083265941731, 29.852587181459928 ], [ -96.385097266203772, 29.852585181149596 ], [ -96.385207265746629, 29.85254518089322 ], [ -96.38530726609595, 29.852475180997487 ], [ -96.387067266187927, 29.850885180846969 ], [ -96.38789726707418, 29.851515180817636 ], [ -96.390437267637594, 29.853555180674689 ], [ -96.390627267825948, 29.853685181053702 ], [ -96.390757267869617, 29.85370518085611 ], [ -96.390789267062033, 29.853699181235591 ], [ -96.390857267478694, 29.853675180769002 ], [ -96.391416267885859, 29.853392181101828 ], [ -96.391567267612842, 29.853315180951366 ], [ -96.391767267962891, 29.853175180796935 ], [ -96.392847267515677, 29.852155180613703 ], [ -96.396857268350942, 29.848325180257998 ], [ -96.398077269365302, 29.847135179529921 ], [ -96.398155269015774, 29.847074179273697 ], [ -96.398407268746951, 29.846875179817605 ], [ -96.399227268840278, 29.846135179387982 ], [ -96.399848269460776, 29.845514179058547 ], [ -96.399867269217708, 29.845495179370534 ], [ -96.401043269184299, 29.844383178797557 ], [ -96.404597270093674, 29.840985177956121 ], [ -96.405287270370167, 29.840335177878394 ], [ -96.40558727066194, 29.840085177658519 ], [ -96.406267271041983, 29.839505177603982 ], [ -96.406697270788342, 29.839205177199045 ], [ -96.406846271318472, 29.839148178058725 ], [ -96.406987271052003, 29.839095177972908 ], [ -96.407637270760688, 29.838935177939931 ], [ -96.408487270848298, 29.838815177250616 ], [ -96.408792271322014, 29.838785177666605 ], [ -96.408844271108038, 29.839015177211873 ], [ -96.40894927147167, 29.839085177808958 ], [ -96.409107271261888, 29.83940717757471 ], [ -96.409212271149372, 29.840374177376084 ], [ -96.410395271825578, 29.841711178439127 ], [ -96.411000272168508, 29.84224217820146 ], [ -96.411079272046166, 29.842472177874019 ], [ -96.411158271677991, 29.842495177846981 ], [ -96.411157271631524, 29.842587178534121 ], [ -96.411158272342163, 29.842610178254869 ], [ -96.411342272310378, 29.842886177980457 ], [ -96.415066272811785, 29.845972178700166 ], [ -96.415094273690713, 29.845941178408445 ], [ -96.415239273463072, 29.845578178305416 ], [ -96.415308273528041, 29.845435178779631 ], [ -96.415636273265775, 29.845073178580847 ], [ -96.416116272957765, 29.844341178545459 ], [ -96.416236273359232, 29.844243177900584 ], [ -96.41628627382191, 29.843863178538957 ], [ -96.41633727307206, 29.843753178297696 ], [ -96.41641227316596, 29.843577178187502 ], [ -96.416879273255233, 29.842363177997839 ], [ -96.416863273584809, 29.842191178020634 ], [ -96.416919273533765, 29.842099178052159 ], [ -96.417184273424738, 29.842007177987526 ], [ -96.417659274156449, 29.841613177772235 ], [ -96.417769274066487, 29.8414631774146 ], [ -96.417956273600453, 29.84139017736317 ], [ -96.418009274036166, 29.841256177855012 ], [ -96.418447273914779, 29.840825177680522 ], [ -96.418423273552094, 29.840698177865178 ], [ -96.418601273440984, 29.840626177774315 ], [ -96.418708273806004, 29.840466177746467 ], [ -96.419314273845259, 29.839548177028721 ], [ -96.419383274345009, 29.839471177300602 ], [ -96.419409274505739, 29.839455177517419 ], [ -96.419503273786589, 29.83945517759609 ], [ -96.419787274379885, 29.839389177009593 ], [ -96.419982274053424, 29.839285177096432 ], [ -96.420090274145579, 29.839180177579745 ], [ -96.420121274058985, 29.839103177487278 ], [ -96.420140274003046, 29.838988177145243 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1449, "Tract": "48167724101", "Area_SqMi": 6.5151277136014984, "total_2009": 2496, "total_2010": 2729, "total_2011": 2876, "total_2012": 3059, "total_2013": 3435, "total_2014": 3365, "total_2015": 3335, "total_2016": 3402, "total_2017": 3323, "total_2018": 3038, "total_2019": 3044, "total_2020": 2841, "age1": 915, "age2": 1471, "age3": 731, "earn1": 830, "earn2": 1268, "earn3": 1019, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 292, "naics_s05": 14, "naics_s06": 14, "naics_s07": 175, "naics_s08": 0, "naics_s09": 1, "naics_s10": 19, "naics_s11": 36, "naics_s12": 6, "naics_s13": 0, "naics_s14": 92, "naics_s15": 35, "naics_s16": 571, "naics_s17": 24, "naics_s18": 1729, "naics_s19": 52, "naics_s20": 57, "race1": 2318, "race2": 611, "race3": 35, "race4": 96, "race5": 4, "race6": 53, "ethnicity1": 2150, "ethnicity2": 967, "edu1": 535, "edu2": 646, "edu3": 661, "edu4": 360, "Shape_Length": 109803.01098590418, "Shape_Area": 181630609.90268567, "total_2021": 2635, "total_2022": 3117 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.820701841523473, 29.274434115379016 ], [ -94.820243841139998, 29.273120114642847 ], [ -94.820127840615513, 29.272787114211354 ], [ -94.819435840589009, 29.270708114146924 ], [ -94.81916984011437, 29.270225113728511 ], [ -94.819167840986779, 29.270178113818389 ], [ -94.818749840187678, 29.269290114074515 ], [ -94.818484840175273, 29.269456114224607 ], [ -94.817484840495368, 29.270145114397298 ], [ -94.816641839467763, 29.270627113923897 ], [ -94.815536839816872, 29.271064114359167 ], [ -94.815115839201752, 29.271178114893264 ], [ -94.814589839478884, 29.271729114767819 ], [ -94.813799839064046, 29.27202811494011 ], [ -94.813062838604594, 29.272671115163281 ], [ -94.812088838392455, 29.273061114703751 ], [ -94.811536838927722, 29.273176115340124 ], [ -94.811167838999651, 29.273589115054641 ], [ -94.81082683905484, 29.273865115124192 ], [ -94.810536838124023, 29.274256114906802 ], [ -94.809878838674209, 29.274646115653361 ], [ -94.809724838586391, 29.274712115800035 ], [ -94.809543838425441, 29.274791115006458 ], [ -94.808667838590168, 29.275174115751852 ], [ -94.807535838129454, 29.27554111523563 ], [ -94.806930837333084, 29.276092116190622 ], [ -94.805877837439638, 29.276827115567741 ], [ -94.804877837467714, 29.277263116176783 ], [ -94.804350837058621, 29.277332115896119 ], [ -94.803219837107861, 29.278273116491132 ], [ -94.802192836463846, 29.278847116136859 ], [ -94.801350836254315, 29.279261116443511 ], [ -94.801350836842147, 29.279467116531727 ], [ -94.801007836315293, 29.279904116700735 ], [ -94.800086836242926, 29.280592116807178 ], [ -94.798796836054834, 29.281166116758012 ], [ -94.797875836009439, 29.281557117364056 ], [ -94.797454834985075, 29.281626117399263 ], [ -94.796796835198407, 29.28240611717133 ], [ -94.796036835261816, 29.282839117408653 ], [ -94.795427834895264, 29.283187118042939 ], [ -94.794980834813458, 29.28337011759567 ], [ -94.79421683521285, 29.282705117357253 ], [ -94.793558834136135, 29.28277311725061 ], [ -94.792900834723, 29.28307211773177 ], [ -94.792690834462036, 29.283531117347522 ], [ -94.792663833991156, 29.283853118088924 ], [ -94.79271683423876, 29.284289118368743 ], [ -94.792742834841192, 29.284656118156754 ], [ -94.792568834473698, 29.284801117952529 ], [ -94.792058834349035, 29.285230118447593 ], [ -94.791031833981762, 29.285942118013139 ], [ -94.790400834289585, 29.284243117734771 ], [ -94.790136834086951, 29.284036117755594 ], [ -94.788004832844138, 29.28449511830199 ], [ -94.787925833089375, 29.284702117928699 ], [ -94.78871583312241, 29.2874801183128 ], [ -94.788609833503955, 29.287779118626215 ], [ -94.787793832989166, 29.288261119085352 ], [ -94.786635832549081, 29.289317118925837 ], [ -94.786135832511661, 29.289822119037098 ], [ -94.785951833088632, 29.2902581191845 ], [ -94.784608832494513, 29.290786119917822 ], [ -94.783950832624882, 29.291521119934657 ], [ -94.783266831805392, 29.292210119649091 ], [ -94.782502832211492, 29.292807119759743 ], [ -94.782002831764984, 29.293036120085123 ], [ -94.781370832155261, 29.293496120468106 ], [ -94.780897831706469, 29.293725120393962 ], [ -94.780554832005691, 29.293909120166987 ], [ -94.780265831856525, 29.294460120553961 ], [ -94.779686831204486, 29.295057120827096 ], [ -94.776843830527611, 29.296985121310147 ], [ -94.774684830018444, 29.298294121515166 ], [ -94.774079830226242, 29.298799121113472 ], [ -94.773973829938555, 29.299396121354011 ], [ -94.773131830082406, 29.299810121993282 ], [ -94.77239482955828, 29.300613121585215 ], [ -94.772209829585023, 29.301049121635138 ], [ -94.76723382863382, 29.30433312328562 ], [ -94.764364828213715, 29.306284123722104 ], [ -94.76094182732156, 29.308465123715887 ], [ -94.759572827118546, 29.3093381241884 ], [ -94.755070825910053, 29.312277125406254 ], [ -94.744511823067469, 29.319280126581305 ], [ -94.743405823440909, 29.32008312686078 ], [ -94.74303682305424, 29.320473127424638 ], [ -94.734110821206997, 29.32596112873691 ], [ -94.731529820504619, 29.327568129300111 ], [ -94.728374819836816, 29.32946312935152 ], [ -94.727219819344185, 29.330437129323393 ], [ -94.726139819277066, 29.33105412982307 ], [ -94.722973818409741, 29.330567129478414 ], [ -94.721632818017895, 29.33076113032805 ], [ -94.721185818263308, 29.331151130212987 ], [ -94.721148817634599, 29.331800130012482 ], [ -94.72133481751483, 29.332158130152582 ], [ -94.723681818210238, 29.333099130179519 ], [ -94.724239818351137, 29.33384613061725 ], [ -94.725022818891219, 29.334365130265095 ], [ -94.726102819401859, 29.334853130595722 ], [ -94.72721981921832, 29.336411130837163 ], [ -94.727612819752594, 29.336876131269207 ], [ -94.728199820107875, 29.337461131377996 ], [ -94.728889819741141, 29.337953130999914 ], [ -94.729327819901698, 29.338226131183692 ], [ -94.729412821010911, 29.344871132240797 ], [ -94.729482820645259, 29.350279133297011 ], [ -94.729517821018504, 29.352932134127599 ], [ -94.729563821185266, 29.352934134532251 ], [ -94.731379821451313, 29.353194133813933 ], [ -94.73154082202413, 29.353218134298878 ], [ -94.738469823544094, 29.353213134127994 ], [ -94.743227824919032, 29.353211134128227 ], [ -94.748823825671465, 29.350324133391574 ], [ -94.750012826031892, 29.349795132683159 ], [ -94.750199825733446, 29.349712132470746 ], [ -94.750256826472736, 29.347865132771968 ], [ -94.750200826055135, 29.346272132369467 ], [ -94.763282829232821, 29.342109130674093 ], [ -94.763501829624218, 29.342040130522694 ], [ -94.76750183002477, 29.34044013074816 ], [ -94.769397831216168, 29.339332129744587 ], [ -94.771987831455888, 29.337452129371208 ], [ -94.772815831379219, 29.336493129870306 ], [ -94.772890831911752, 29.336407129099221 ], [ -94.774733831469874, 29.334494129163811 ], [ -94.77586183196108, 29.332226128362866 ], [ -94.775928831602712, 29.332098128735502 ], [ -94.774488831125765, 29.330584128203604 ], [ -94.774220832052947, 29.330212128250174 ], [ -94.774434831318587, 29.330293128201692 ], [ -94.774527832125671, 29.330140127933635 ], [ -94.774221831489228, 29.330046128452317 ], [ -94.774340831495692, 29.329766127702722 ], [ -94.772903831645365, 29.329545128191146 ], [ -94.772904830701791, 29.329533127739204 ], [ -94.77294583129644, 29.329227127778566 ], [ -94.773135831347687, 29.328265127551575 ], [ -94.773049831047288, 29.328257127835894 ], [ -94.773156831516772, 29.327673127992337 ], [ -94.773060830742423, 29.327586127751136 ], [ -94.772624830488354, 29.327251127933483 ], [ -94.772492830618944, 29.327055127220333 ], [ -94.772369830818462, 29.326682127036058 ], [ -94.772315830999418, 29.326517127090373 ], [ -94.772074831024014, 29.326676127583827 ], [ -94.771923830768813, 29.327561127889492 ], [ -94.769518830201193, 29.319495126076916 ], [ -94.76950083001536, 29.319472126089138 ], [ -94.76695782896951, 29.312430124985468 ], [ -94.76696082897034, 29.311474124756241 ], [ -94.768004829590637, 29.310215123825611 ], [ -94.768512829559697, 29.309593124202877 ], [ -94.769011829436877, 29.308988123469707 ], [ -94.769423829000289, 29.308489124012016 ], [ -94.769394829490196, 29.308651124070618 ], [ -94.769302829166378, 29.308867124142601 ], [ -94.769219829030774, 29.309084123847146 ], [ -94.769194829721542, 29.309192124100424 ], [ -94.769177829858805, 29.309334124298857 ], [ -94.769169829512734, 29.309501124373163 ], [ -94.76918782948448, 29.309673124236173 ], [ -94.769269829246937, 29.309935123619052 ], [ -94.77150382988394, 29.309359123698353 ], [ -94.771342829703798, 29.308944123608498 ], [ -94.771192829356906, 29.308507123239224 ], [ -94.770895829590046, 29.307642123232174 ], [ -94.772062829790912, 29.30732512309584 ], [ -94.773216830508559, 29.307020123203632 ], [ -94.773069830244623, 29.306578123151599 ], [ -94.772923830323194, 29.30613912333499 ], [ -94.772766830646503, 29.305723122951644 ], [ -94.772647829817615, 29.305406123399052 ], [ -94.772562829812685, 29.305197122879093 ], [ -94.773701829964011, 29.304890122639804 ], [ -94.773504829901512, 29.304340122675534 ], [ -94.773380830138038, 29.303912122538115 ], [ -94.774151830292809, 29.303703122457367 ], [ -94.774516830989484, 29.303607122734906 ], [ -94.774368830690065, 29.303170122339537 ], [ -94.774294829992968, 29.302951122278369 ], [ -94.774198829962259, 29.302693121955006 ], [ -94.774379829927938, 29.302684122267745 ], [ -94.775348830780587, 29.302445122658824 ], [ -94.775199830479977, 29.302008122195424 ], [ -94.775071830221037, 29.301635122124324 ], [ -94.775192830776106, 29.301488121778039 ], [ -94.775417830728259, 29.301456121619363 ], [ -94.776007830426153, 29.30129512167213 ], [ -94.776191831034538, 29.301250121820438 ], [ -94.776050830456626, 29.300822122115225 ], [ -94.775962830953745, 29.300556122070301 ], [ -94.776191830680062, 29.300279121489478 ], [ -94.776540830524979, 29.300229121344387 ], [ -94.777044830708022, 29.300086121625359 ], [ -94.778183831200636, 29.299794121252809 ], [ -94.77803683141002, 29.299368121591399 ], [ -94.777882831480184, 29.298925121363556 ], [ -94.779026831677697, 29.298624121552276 ], [ -94.778877831785877, 29.298197121381918 ], [ -94.778724831248667, 29.297756121180299 ], [ -94.779557831780764, 29.297545120892305 ], [ -94.779879831124916, 29.297458120824466 ], [ -94.781008832303073, 29.297152120913928 ], [ -94.780858832064766, 29.296714121098454 ], [ -94.780711831886535, 29.296287120369673 ], [ -94.781866832567118, 29.295994120935664 ], [ -94.783031831909028, 29.295698120521429 ], [ -94.782869832136299, 29.295251120890544 ], [ -94.782717832549395, 29.29483212034507 ], [ -94.783858832503043, 29.29453112048018 ], [ -94.784307832810057, 29.294413120427119 ], [ -94.785011833138014, 29.294242120687976 ], [ -94.784862832470822, 29.293784119907674 ], [ -94.784716832230671, 29.293338120353368 ], [ -94.785846833324285, 29.293052120317054 ], [ -94.78622083255118, 29.292957120139796 ], [ -94.786999833187494, 29.292757119506003 ], [ -94.786843833155189, 29.292287119721824 ], [ -94.786791833346328, 29.292129119785439 ], [ -94.786690833023144, 29.291855119346394 ], [ -94.787795833074355, 29.291514119338881 ], [ -94.78897083415761, 29.291282119223045 ], [ -94.788673833152714, 29.290402119248203 ], [ -94.788475833290008, 29.28981611965645 ], [ -94.789502833709975, 29.289015119118535 ], [ -94.789580834126397, 29.289242119105769 ], [ -94.789726833554909, 29.28966611921026 ], [ -94.7898568343211, 29.290044119314349 ], [ -94.789847833862979, 29.290111119642535 ], [ -94.791030834574826, 29.289803118692333 ], [ -94.792222834372836, 29.289492119294113 ], [ -94.79336483485956, 29.289194118638573 ], [ -94.794517834872948, 29.288892118647968 ], [ -94.795651835016884, 29.288595118697049 ], [ -94.796804835716358, 29.2882961186716 ], [ -94.797939835719788, 29.288001118470103 ], [ -94.797789835420531, 29.287560118789791 ], [ -94.797644835578922, 29.287134118381932 ], [ -94.797497835256038, 29.286700118187905 ], [ -94.797346836042792, 29.286256118487216 ], [ -94.797199835701392, 29.285825118181844 ], [ -94.797050835344308, 29.285388118020677 ], [ -94.79690183588616, 29.284949117723848 ], [ -94.796755835359804, 29.284519117968436 ], [ -94.797080835785366, 29.284429118058071 ], [ -94.797889835671427, 29.284223118124938 ], [ -94.798088835567157, 29.284172117889245 ], [ -94.799042836149582, 29.283917117274637 ], [ -94.799621836618556, 29.283763117491983 ], [ -94.800191836391093, 29.283616117287327 ], [ -94.80131783645615, 29.283327117023763 ], [ -94.801253836069463, 29.283146117577022 ], [ -94.801153836232487, 29.282890117128851 ], [ -94.801097836775909, 29.282746117665699 ], [ -94.801031836010722, 29.282496117545428 ], [ -94.802000836236687, 29.282216116856784 ], [ -94.802661837182214, 29.282034117199661 ], [ -94.803311836792105, 29.281866117015745 ], [ -94.803294836904143, 29.281814117445894 ], [ -94.803016836865922, 29.280981116970384 ], [ -94.805287837729637, 29.280390116668848 ], [ -94.806422837943671, 29.280083116567688 ], [ -94.806518837533119, 29.280057116483057 ], [ -94.807574838201063, 29.279783116227701 ], [ -94.807428837612022, 29.279363116025284 ], [ -94.807274838291718, 29.278918116458801 ], [ -94.80703483733771, 29.278227116354572 ], [ -94.807433838398339, 29.278003116142553 ], [ -94.807799838026568, 29.277828116009736 ], [ -94.808140837815827, 29.277737115928456 ], [ -94.808672837867888, 29.27759511618029 ], [ -94.809276838209342, 29.277440115576525 ], [ -94.810361839091385, 29.277163116009994 ], [ -94.811559838821935, 29.276838115351627 ], [ -94.813239838903328, 29.276406115443731 ], [ -94.813840839979974, 29.276245115306338 ], [ -94.814986840191281, 29.275940115210727 ], [ -94.815835840464288, 29.275715115838036 ], [ -94.816602839991305, 29.27551411524799 ], [ -94.816705839997297, 29.275487115077599 ], [ -94.818156840337664, 29.275108115509074 ], [ -94.818427840832285, 29.275036115048053 ], [ -94.819568840517405, 29.274734114923717 ], [ -94.820701841523473, 29.274434115379016 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1450, "Tract": "48071990000", "Area_SqMi": 3.4370543974653462, "total_2009": null, "total_2010": null, "total_2011": null, "total_2012": null, "total_2013": null, "total_2014": null, "total_2015": null, "total_2016": null, "total_2017": null, "total_2018": null, "total_2019": null, "total_2020": null, "age1": null, "age2": null, "age3": null, "earn1": null, "earn2": null, "earn3": null, "naics_s01": null, "naics_s02": null, "naics_s03": null, "naics_s04": null, "naics_s05": null, "naics_s06": null, "naics_s07": null, "naics_s08": null, "naics_s09": null, "naics_s10": null, "naics_s11": null, "naics_s12": null, "naics_s13": null, "naics_s14": null, "naics_s15": null, "naics_s16": null, "naics_s17": null, "naics_s18": null, "naics_s19": null, "naics_s20": null, "race1": null, "race2": null, "race3": null, "race4": null, "race5": null, "race6": null, "ethnicity1": null, "ethnicity2": null, "edu1": null, "edu2": null, "edu3": null, "edu4": null, "Shape_Length": 49630.635864771866, "Shape_Area": 95819194.023941249, "total_2021": null, "total_2022": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.370785736967093, 29.553884187488819 ], [ -94.370837737061919, 29.553876187945733 ], [ -94.369367733824902, 29.500625177192983 ], [ -94.366470733907292, 29.501766177400864 ], [ -94.357782731722452, 29.505191178493575 ], [ -94.354886730557567, 29.506333178519469 ], [ -94.354212733103054, 29.559888189604461 ], [ -94.354499733119525, 29.559804189763476 ], [ -94.354582732836889, 29.559756189314381 ], [ -94.354827732787896, 29.559668189361325 ], [ -94.3623917345801, 29.556431188508508 ], [ -94.367840736250045, 29.554762187987645 ], [ -94.368224735754751, 29.55455418843804 ], [ -94.370690737163912, 29.553913187824374 ], [ -94.370731736611219, 29.55389418829515 ], [ -94.370785736967093, 29.553884187488819 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1451, "Tract": "48039661602", "Area_SqMi": 12.884507053682329, "total_2009": 546, "total_2010": 478, "total_2011": 795, "total_2012": 1265, "total_2013": 1339, "total_2014": 1347, "total_2015": 1374, "total_2016": 1470, "total_2017": 1576, "total_2018": 1400, "total_2019": 1442, "total_2020": 1394, "age1": 206, "age2": 934, "age3": 480, "earn1": 318, "earn2": 304, "earn3": 998, "naics_s01": 0, "naics_s02": 0, "naics_s03": 4, "naics_s04": 106, "naics_s05": 470, "naics_s06": 18, "naics_s07": 57, "naics_s08": 0, "naics_s09": 26, "naics_s10": 4, "naics_s11": 4, "naics_s12": 58, "naics_s13": 0, "naics_s14": 18, "naics_s15": 671, "naics_s16": 149, "naics_s17": 0, "naics_s18": 26, "naics_s19": 9, "naics_s20": 0, "race1": 1341, "race2": 173, "race3": 14, "race4": 79, "race5": 0, "race6": 13, "ethnicity1": 1250, "ethnicity2": 370, "edu1": 206, "edu2": 345, "edu3": 478, "edu4": 385, "Shape_Length": 102923.44119790585, "Shape_Area": 359198004.60244948, "total_2021": 1185, "total_2022": 1620 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.284569962951238, 29.331856112210616 ], [ -95.284334963062236, 29.331586111487628 ], [ -95.283147962664984, 29.331372112153844 ], [ -95.282383962250066, 29.331173111275344 ], [ -95.282102961757644, 29.331506111488761 ], [ -95.28144796189568, 29.33227311219245 ], [ -95.280747961830528, 29.3323521120961 ], [ -95.280172961576653, 29.332104112361936 ], [ -95.279607962001961, 29.331562111610523 ], [ -95.28074796196951, 29.330806111889721 ], [ -95.281289961402933, 29.330366111162796 ], [ -95.280950961362535, 29.330208111837504 ], [ -95.279765961741461, 29.329858111486786 ], [ -95.2797999616064, 29.329587111300555 ], [ -95.280642961754026, 29.329213111802545 ], [ -95.280883961920779, 29.328899111496263 ], [ -95.28090596199101, 29.328188111459877 ], [ -95.280725961701023, 29.327883110748463 ], [ -95.280365961657822, 29.327795111023153 ], [ -95.279788961299602, 29.327612111227715 ], [ -95.279420961008412, 29.327748110926045 ], [ -95.278976961033237, 29.327911110705951 ], [ -95.278433961438495, 29.327996111395361 ], [ -95.278065961247833, 29.32766911070518 ], [ -95.2778589603694, 29.327273111452801 ], [ -95.277890960911179, 29.327227110620164 ], [ -95.278140960852255, 29.326867110800396 ], [ -95.279215960731321, 29.325488110182647 ], [ -95.279178960675949, 29.325152110877422 ], [ -95.278795961354405, 29.32463211045722 ], [ -95.27824996036972, 29.323883110636288 ], [ -95.277688960752485, 29.323650110284767 ], [ -95.27694296006166, 29.323791110447551 ], [ -95.276654960732515, 29.324203110779195 ], [ -95.276606959991085, 29.324810110238197 ], [ -95.276368960905216, 29.325321110579971 ], [ -95.275996960500024, 29.325535110611682 ], [ -95.27555595974313, 29.32550111086961 ], [ -95.275307959948435, 29.325264110960386 ], [ -95.275047960191955, 29.32474511107176 ], [ -95.275097960049422, 29.323243110083602 ], [ -95.274355959633766, 29.321933110290228 ], [ -95.274483959995266, 29.321743110256026 ], [ -95.274833959808063, 29.321653110184712 ], [ -95.275284960428479, 29.321720110326968 ], [ -95.275984959995114, 29.322036109747639 ], [ -95.276537960316475, 29.322183110163607 ], [ -95.276910960885459, 29.322115109847886 ], [ -95.27710296085057, 29.320784109580316 ], [ -95.276992960100529, 29.319946109609781 ], [ -95.276458959733361, 29.319158109157865 ], [ -95.276266959835723, 29.318571108916213 ], [ -95.276323960498971, 29.317826109441835 ], [ -95.276633959851154, 29.317673108724151 ], [ -95.277073960755573, 29.31729810871871 ], [ -95.277553960776032, 29.316743108972862 ], [ -95.27757696004727, 29.31635910854828 ], [ -95.277373960380046, 29.316043108941926 ], [ -95.276675960255446, 29.316051108396596 ], [ -95.276221960021843, 29.315705109122518 ], [ -95.276270959964492, 29.315084108733149 ], [ -95.27603595946843, 29.31480910862166 ], [ -95.275643959343498, 29.314671108383944 ], [ -95.27532996021273, 29.314694108257054 ], [ -95.275094959568435, 29.314831108434902 ], [ -95.274963959902152, 29.315083109043798 ], [ -95.274910960106453, 29.315518108936601 ], [ -95.275171959402797, 29.31641210851485 ], [ -95.275092959758055, 29.316687108610534 ], [ -95.274726960078539, 29.317007108910364 ], [ -95.274098959039776, 29.317030109348114 ], [ -95.273366959741367, 29.316938109476052 ], [ -95.272452958940036, 29.316685109012333 ], [ -95.272226958891721, 29.316528108871164 ], [ -95.271887959070298, 29.315998108567438 ], [ -95.271605958993419, 29.315682109023971 ], [ -95.271199959162004, 29.315422108634106 ], [ -95.270770958112095, 29.315163108788695 ], [ -95.270544958978846, 29.314892108498181 ], [ -95.270578958437596, 29.31459810858945 ], [ -95.270680958755321, 29.314192108309541 ], [ -95.270478958525501, 29.313951108117482 ], [ -95.270003958192035, 29.314165108278289 ], [ -95.269698957993313, 29.314350108669498 ], [ -95.269370958352084, 29.314361108666883 ], [ -95.269178957934358, 29.314260108790059 ], [ -95.269077957769923, 29.314068109016336 ], [ -95.269370957642295, 29.312556108348428 ], [ -95.269596957882882, 29.312217108534046 ], [ -95.269754958496179, 29.312138108609595 ], [ -95.270183957797528, 29.312217108537507 ], [ -95.270611958639421, 29.312481108557609 ], [ -95.270973958375208, 29.312612108599257 ], [ -95.271210958601401, 29.312601107876052 ], [ -95.271537958644984, 29.312420108135999 ], [ -95.271831958734822, 29.311991108185861 ], [ -95.271797958678846, 29.311382107579906 ], [ -95.271379958110643, 29.311054107726019 ], [ -95.270576958656804, 29.310838108082201 ], [ -95.269764958109079, 29.310840107981662 ], [ -95.269268957529391, 29.310496107512371 ], [ -95.269373958399896, 29.310015107932948 ], [ -95.269409957467161, 29.309988107886017 ], [ -95.269766957928923, 29.309718107244322 ], [ -95.271073957939478, 29.309169107959608 ], [ -95.271466958733726, 29.308825107559954 ], [ -95.27167595883445, 29.308390107398978 ], [ -95.271645958456361, 29.308187107413847 ], [ -95.271571958017176, 29.307680107048 ], [ -95.271284958402916, 29.307428107420154 ], [ -95.270839958176069, 29.307134107352294 ], [ -95.270817957931271, 29.307135107350955 ], [ -95.270771958548295, 29.307136107148182 ], [ -95.270740958452024, 29.307136107115788 ], [ -95.270679958042692, 29.307137107272524 ], [ -95.270601958069122, 29.307139107247806 ], [ -95.270518957762931, 29.307140107023422 ], [ -95.270432957716991, 29.307142107108874 ], [ -95.270345957887656, 29.307143106893282 ], [ -95.270259957835833, 29.307145106867228 ], [ -95.270185958051457, 29.307145106856115 ], [ -95.270142958022277, 29.307143107321753 ], [ -95.270061958326821, 29.30714010748099 ], [ -95.269996958081308, 29.307139106868163 ], [ -95.269941957783914, 29.307139107181658 ], [ -95.269898957739741, 29.307140107496295 ], [ -95.26985295832192, 29.307144106904353 ], [ -95.269830957703334, 29.307146107007174 ], [ -95.269784958221749, 29.307153107221268 ], [ -95.269742957587525, 29.307159107028102 ], [ -95.269708957710719, 29.307163107029385 ], [ -95.269686958114221, 29.307165107137276 ], [ -95.269645957937612, 29.307170107532233 ], [ -95.2696269574203, 29.307170106990782 ], [ -95.269609957873044, 29.307168106783244 ], [ -95.269589958277635, 29.307162107327652 ], [ -95.269572958131647, 29.307153106964474 ], [ -95.26954495800581, 29.307131106818847 ], [ -95.269525958060228, 29.307109107404521 ], [ -95.269512957613813, 29.307085107306204 ], [ -95.26949995823648, 29.307058107307636 ], [ -95.269486958236655, 29.307027107084334 ], [ -95.269469957876638, 29.306981107280023 ], [ -95.269452957446219, 29.306915107344356 ], [ -95.269450957719272, 29.306899107467945 ], [ -95.269447957632039, 29.306875107187924 ], [ -95.269448957422171, 29.30684710752805 ], [ -95.26945495758342, 29.30681710723259 ], [ -95.269464957944606, 29.306785107217344 ], [ -95.269480958138814, 29.306747107228325 ], [ -95.269497957756215, 29.306711106854372 ], [ -95.269524957690706, 29.30666910734487 ], [ -95.269575958001752, 29.306600107121298 ], [ -95.269611957727093, 29.306556106862342 ], [ -95.269637957988593, 29.306527107352128 ], [ -95.26967195800809, 29.306490107259936 ], [ -95.269701957425895, 29.306459107080443 ], [ -95.269722957906382, 29.306442107375766 ], [ -95.26973895837483, 29.306432107001093 ], [ -95.26975595757844, 29.306423106845866 ], [ -95.269770958214608, 29.306415107046931 ], [ -95.269790957802044, 29.306406106836342 ], [ -95.269852958441959, 29.306383107305841 ], [ -95.26991195797639, 29.306362107432648 ], [ -95.269942958295331, 29.30635210670491 ], [ -95.269986958216563, 29.30633910664562 ], [ -95.270018958257268, 29.306330107050513 ], [ -95.2700319575723, 29.306322107230965 ], [ -95.270049958249729, 29.306312106781004 ], [ -95.270086957682224, 29.306283106914798 ], [ -95.270127958308109, 29.306249107399609 ], [ -95.270152957847174, 29.306230106956537 ], [ -95.27018695849533, 29.306211107230315 ], [ -95.270216957552165, 29.306201107331912 ], [ -95.27024495806829, 29.306195106818461 ], [ -95.270290958084701, 29.306188107375462 ], [ -95.270355957780623, 29.306183107087328 ], [ -95.270394958317112, 29.306172106689523 ], [ -95.270428958175316, 29.306161107291629 ], [ -95.270483957989228, 29.30613710735302 ], [ -95.270536957885781, 29.306106107313898 ], [ -95.270563957883965, 29.306092107238985 ], [ -95.270588957974113, 29.306080106865796 ], [ -95.270612958606478, 29.306069106806945 ], [ -95.270642957934257, 29.306058106545517 ], [ -95.270706958071443, 29.306036106837098 ], [ -95.270764958137264, 29.306018106566547 ], [ -95.270813957731036, 29.306004106717847 ], [ -95.270855958169861, 29.305991106449625 ], [ -95.27090995868511, 29.305976107074876 ], [ -95.270972958588402, 29.305954107264146 ], [ -95.270984958367023, 29.30594710677126 ], [ -95.271003958299616, 29.305936106772023 ], [ -95.271024958478392, 29.305925106717396 ], [ -95.271047957862336, 29.305911106649518 ], [ -95.27105995794804, 29.305903106784626 ], [ -95.27107195803184, 29.305895106918655 ], [ -95.271085958033865, 29.30588510643506 ], [ -95.271108958733038, 29.305867107092013 ], [ -95.271145958040307, 29.305834106735077 ], [ -95.27116295833693, 29.305818107207052 ], [ -95.271182958653355, 29.305797107103093 ], [ -95.271201958157647, 29.305775106727882 ], [ -95.27122695799622, 29.30574510666538 ], [ -95.271244958021896, 29.305721106679446 ], [ -95.271259958333772, 29.305695107142935 ], [ -95.271266958754367, 29.305675106813641 ], [ -95.271270958474659, 29.305659106763798 ], [ -95.271271958174594, 29.305642106531351 ], [ -95.271270958623006, 29.305619106527534 ], [ -95.271269958759561, 29.305603106647261 ], [ -95.271266958652816, 29.305587106823264 ], [ -95.271264958668681, 29.30557110697109 ], [ -95.271262958667535, 29.305552107190515 ], [ -95.271256958458011, 29.30551410678342 ], [ -95.271253958023209, 29.305496106395932 ], [ -95.271246958713036, 29.305461106875168 ], [ -95.271244958350565, 29.305434106674266 ], [ -95.271245958001174, 29.305408106656415 ], [ -95.271246958035334, 29.305393106986681 ], [ -95.27124595852608, 29.305376106838526 ], [ -95.271240958173536, 29.305357107141109 ], [ -95.271233957982744, 29.305346107017265 ], [ -95.271221958225567, 29.305335107060966 ], [ -95.271200958443657, 29.30532110655145 ], [ -95.271181958539245, 29.305311107080922 ], [ -95.271155958536312, 29.305299106363048 ], [ -95.271140958101199, 29.305292106676923 ], [ -95.271117957752082, 29.305279106475808 ], [ -95.27109595784431, 29.305265106878551 ], [ -95.271077958437331, 29.305248106340393 ], [ -95.271068958713656, 29.305238106557127 ], [ -95.271054958048282, 29.305220106486207 ], [ -95.271041957823201, 29.30520110702199 ], [ -95.271028957986118, 29.30518110638743 ], [ -95.271022958276021, 29.305172106788969 ], [ -95.271009958423718, 29.305155106982777 ], [ -95.270993958246478, 29.305135106423332 ], [ -95.270956958639914, 29.305094106993089 ], [ -95.270943958147313, 29.305082106741324 ], [ -95.270699958436296, 29.304897106578551 ], [ -95.270681957776958, 29.304881106224538 ], [ -95.270644957711113, 29.304845106267518 ], [ -95.270618957862439, 29.30481810670307 ], [ -95.270591957948213, 29.304788106326043 ], [ -95.270584958185594, 29.304779106730535 ], [ -95.270563957897636, 29.304764106725433 ], [ -95.270533957980845, 29.304745106754286 ], [ -95.270499957621453, 29.304726106866045 ], [ -95.270466958411191, 29.304710106904327 ], [ -95.270348957748553, 29.304647106801671 ], [ -95.270318958243109, 29.304633106371966 ], [ -95.2702909582556, 29.304621106428304 ], [ -95.27026795779561, 29.304612106275417 ], [ -95.27024495801065, 29.304604106414562 ], [ -95.270203958327869, 29.304590106212757 ], [ -95.27018095752392, 29.304582106312022 ], [ -95.270139957514928, 29.304566106429075 ], [ -95.270108957933317, 29.304549106944862 ], [ -95.270097958175228, 29.304539106232198 ], [ -95.270086957733753, 29.304525106195701 ], [ -95.270075957964622, 29.30451210645429 ], [ -95.270061958206909, 29.304501106430877 ], [ -95.270046958323178, 29.304493106353704 ], [ -95.270021958378649, 29.304482106563576 ], [ -95.269992957995825, 29.304471106843252 ], [ -95.269958957786528, 29.304458106673881 ], [ -95.269930957888945, 29.30444610665441 ], [ -95.269908957654422, 29.304431106563719 ], [ -95.269894957880922, 29.30442610638017 ], [ -95.269877957777467, 29.304421106248462 ], [ -95.269859957870736, 29.304418106695522 ], [ -95.269840958216577, 29.304414106890338 ], [ -95.269828957616141, 29.304412106564929 ], [ -95.269810958074615, 29.304408106738094 ], [ -95.269786958235315, 29.304403106744079 ], [ -95.269761957925382, 29.304399107029965 ], [ -95.269743957392706, 29.304395106263403 ], [ -95.269726957967634, 29.304391106408492 ], [ -95.269709958208509, 29.304385106889864 ], [ -95.269693958259182, 29.304377106789421 ], [ -95.269680957613275, 29.304369106609446 ], [ -95.26967095796428, 29.304362106675708 ], [ -95.269661957397531, 29.304355106696288 ], [ -95.269647957705672, 29.304344106629252 ], [ -95.269637958061423, 29.304337106692973 ], [ -95.269624958089778, 29.304330106803572 ], [ -95.269608957791519, 29.30432310696013 ], [ -95.269582958159006, 29.304314106764725 ], [ -95.269564957979995, 29.304309106608567 ], [ -95.269541957621016, 29.304303106258903 ], [ -95.269522958000593, 29.304299106408443 ], [ -95.269504958125708, 29.30429610680758 ], [ -95.269486957255722, 29.304293106273583 ], [ -95.269474957672443, 29.304291106846922 ], [ -95.26945595772402, 29.304288106352313 ], [ -95.269419957283844, 29.304284106762786 ], [ -95.269378957621498, 29.304285106852866 ], [ -95.269323958154288, 29.30428710654439 ], [ -95.26923695761765, 29.30428810642163 ], [ -95.269138957567634, 29.304290106701796 ], [ -95.269042957732168, 29.304292106886983 ], [ -95.268977957582138, 29.304290106354294 ], [ -95.268919957187876, 29.304285106660441 ], [ -95.268888957315042, 29.304281106874694 ], [ -95.268854957860583, 29.304275106577414 ], [ -95.268820957488828, 29.30426310638504 ], [ -95.268797957259892, 29.304251106951341 ], [ -95.268749957151101, 29.304220106161793 ], [ -95.268703957423298, 29.304197106659942 ], [ -95.2686429572164, 29.304171106468477 ], [ -95.268586957144421, 29.304149106404932 ], [ -95.268483957536247, 29.304112106266881 ], [ -95.268403957668312, 29.304091106653097 ], [ -95.268315957147991, 29.304078106559285 ], [ -95.268251957433492, 29.304067106782007 ], [ -95.268191957203612, 29.304053106995848 ], [ -95.26811895693605, 29.304041106933106 ], [ -95.268057957812715, 29.304035106639439 ], [ -95.268002957547651, 29.304031106801755 ], [ -95.267925957680688, 29.304028106463655 ], [ -95.267746957065711, 29.304031106447205 ], [ -95.267588957651441, 29.304034106151043 ], [ -95.267477957421249, 29.304036106148967 ], [ -95.267335957669786, 29.304047106821653 ], [ -95.267278957072264, 29.304057106962073 ], [ -95.267226957672932, 29.304068106483061 ], [ -95.267154956706079, 29.304091106578387 ], [ -95.267102957007367, 29.304119106258941 ], [ -95.267047957035288, 29.304163106751119 ], [ -95.266994957265595, 29.304207106326245 ], [ -95.266948956901473, 29.304249106219309 ], [ -95.266895957600255, 29.304305106400555 ], [ -95.266844957208676, 29.30436710639902 ], [ -95.26681195678411, 29.304399107098664 ], [ -95.26678395662762, 29.304421106833157 ], [ -95.266715956742289, 29.304471107030412 ], [ -95.266669956538195, 29.304512106558466 ], [ -95.266636957034123, 29.304536106822262 ], [ -95.266569957352246, 29.304580107093432 ], [ -95.266509956617725, 29.304618106566405 ], [ -95.266434956945616, 29.304670107158501 ], [ -95.266358957364972, 29.30470010700099 ], [ -95.266298956601673, 29.304711106991942 ], [ -95.266260956916369, 29.304715106981533 ], [ -95.26620795668704, 29.30471610691491 ], [ -95.266172956467869, 29.304709106530659 ], [ -95.266139956711555, 29.304696107202368 ], [ -95.266100957117189, 29.304673106847567 ], [ -95.266074957309129, 29.304657106717546 ], [ -95.266048956711387, 29.30464310711686 ], [ -95.266019957075628, 29.304631107167925 ], [ -95.266000957038642, 29.304623106591329 ], [ -95.265978956908754, 29.304609107022131 ], [ -95.265952957182265, 29.304585106447448 ], [ -95.26593395642162, 29.304563106456229 ], [ -95.265905957156946, 29.304524107106861 ], [ -95.265891957164428, 29.304491106819977 ], [ -95.2658849567879, 29.304461106516797 ], [ -95.265882956567651, 29.304432106541434 ], [ -95.265877957046612, 29.304403106558162 ], [ -95.265874956534475, 29.304327107017286 ], [ -95.265871957281263, 29.304240106252593 ], [ -95.265870956801336, 29.304175107084497 ], [ -95.265870956651028, 29.30412810662839 ], [ -95.265870956463004, 29.304110107026226 ], [ -95.265872957279555, 29.304040106528344 ], [ -95.265874957311652, 29.303964107044873 ], [ -95.265873956793385, 29.303915106913475 ], [ -95.265875956591159, 29.303866106818543 ], [ -95.265880956890484, 29.303835106362754 ], [ -95.265892957307287, 29.303795106175869 ], [ -95.265912956643987, 29.303744106577128 ], [ -95.265941957337901, 29.303684106392069 ], [ -95.265969957176054, 29.303639106736 ], [ -95.266014957154297, 29.303577106096675 ], [ -95.266056957197662, 29.303527106958089 ], [ -95.266102957007291, 29.303476106650155 ], [ -95.266177956654602, 29.303393106647857 ], [ -95.266258957164524, 29.303301106871071 ], [ -95.266323956739996, 29.303239106253017 ], [ -95.266374957287439, 29.303192106119102 ], [ -95.266414956813961, 29.303158106790899 ], [ -95.266442957371339, 29.303137106524353 ], [ -95.266490956756201, 29.303108106799218 ], [ -95.266546957166284, 29.303073106354105 ], [ -95.266588957176879, 29.303038106720127 ], [ -95.266622957329602, 29.303006106076111 ], [ -95.266665957097715, 29.302961106339751 ], [ -95.266721957491299, 29.302896106497677 ], [ -95.266752956583673, 29.302855105985071 ], [ -95.266780956641256, 29.302816106041281 ], [ -95.266826956690963, 29.302749106465679 ], [ -95.266837956507189, 29.302736106478463 ], [ -95.266852956672196, 29.302715106087351 ], [ -95.266868957002728, 29.30269110667167 ], [ -95.266889957127319, 29.302658106558109 ], [ -95.266900957118139, 29.30263110628362 ], [ -95.266905957213297, 29.30261310670042 ], [ -95.266906957387747, 29.302602106352506 ], [ -95.2669089571462, 29.302568105909568 ], [ -95.266909956868105, 29.30255010630799 ], [ -95.266910957089877, 29.302528106509243 ], [ -95.266911957091835, 29.302512106569516 ], [ -95.266911956973246, 29.302488106202258 ], [ -95.266909956700417, 29.302472106248985 ], [ -95.266907956956743, 29.302460106521647 ], [ -95.266902957082792, 29.302445105949182 ], [ -95.266898957438968, 29.302435105874508 ], [ -95.266893957033759, 29.302424106400675 ], [ -95.266849956683174, 29.302382106331383 ], [ -95.266720957317716, 29.302479105910425 ], [ -95.266561957390351, 29.302599106212543 ], [ -95.266444956643269, 29.302685106098426 ], [ -95.266234957224455, 29.30284010648171 ], [ -95.266145956420431, 29.302921106718181 ], [ -95.265760956380447, 29.303381106876103 ], [ -95.265512956780782, 29.303758106258048 ], [ -95.265438956346372, 29.303849106319376 ], [ -95.265123956859867, 29.304191107052002 ], [ -95.264232956302095, 29.305065107092435 ], [ -95.263468956302901, 29.305795107241025 ], [ -95.263363956278468, 29.305885106921334 ], [ -95.263275955902472, 29.305936106946955 ], [ -95.263195956332453, 29.30597010694083 ], [ -95.262761956422437, 29.306157107104738 ], [ -95.262675956470119, 29.306199107019836 ], [ -95.262569955884359, 29.306280107151856 ], [ -95.261416955720421, 29.307436107613455 ], [ -95.260474955750396, 29.30838210816172 ], [ -95.259890955021007, 29.30896910807634 ], [ -95.258599954775903, 29.310261108047751 ], [ -95.258590955263458, 29.310270108213622 ], [ -95.258405955541406, 29.310457108271898 ], [ -95.257976955582478, 29.310887108561904 ], [ -95.25784095490576, 29.311024107953433 ], [ -95.256688954859811, 29.312180108663632 ], [ -95.256446955031151, 29.312392108809867 ], [ -95.256305954831191, 29.312526109117449 ], [ -95.256157954173887, 29.312668109147278 ], [ -95.25605495449571, 29.31276610848305 ], [ -95.255251954135474, 29.313535108819476 ], [ -95.25482695427246, 29.313965108901058 ], [ -95.25465495412675, 29.314137109110707 ], [ -95.254341954254926, 29.3144551090226 ], [ -95.25338495429294, 29.31542310942217 ], [ -95.253183954080995, 29.315627109397699 ], [ -95.252779953765014, 29.316061109256147 ], [ -95.252634953529892, 29.316182109952518 ], [ -95.252302953401454, 29.316519109566411 ], [ -95.252140954228295, 29.316685109742011 ], [ -95.252921953941538, 29.317294109353057 ], [ -95.255065954630027, 29.31893811010768 ], [ -95.25491495415109, 29.319087109735293 ], [ -95.254320954420649, 29.319681110657832 ], [ -95.253663954850097, 29.320347110517773 ], [ -95.253617954576697, 29.320412110701337 ], [ -95.253585954886574, 29.320457110263256 ], [ -95.253435953992593, 29.32067111031494 ], [ -95.253192954243801, 29.32106411042291 ], [ -95.253026954295379, 29.321334110591259 ], [ -95.252481954324395, 29.322203110689145 ], [ -95.250942953968973, 29.323780111313383 ], [ -95.249256952996703, 29.325462111227885 ], [ -95.248784952853171, 29.325935112076813 ], [ -95.247186953265768, 29.327531111738118 ], [ -95.246829953164692, 29.3278931120824 ], [ -95.24617195252182, 29.328559112138098 ], [ -95.242385952275754, 29.332416112861335 ], [ -95.240445951254557, 29.334255113622675 ], [ -95.240235951367708, 29.334455114123926 ], [ -95.239948951191934, 29.33474411349237 ], [ -95.237930950870862, 29.33677411449348 ], [ -95.237460950834986, 29.33724711487346 ], [ -95.237234950782153, 29.337411114503858 ], [ -95.23688595084613, 29.337629114945713 ], [ -95.236632951135277, 29.33776611457866 ], [ -95.236296950902187, 29.337965114636681 ], [ -95.236181950175464, 29.338042114387033 ], [ -95.236012950968259, 29.338155114868595 ], [ -95.235698950594667, 29.338386114772597 ], [ -95.235526950990618, 29.338526114362377 ], [ -95.234999950848547, 29.339054114453425 ], [ -95.233821949959477, 29.340283115218512 ], [ -95.232048949877694, 29.342002115486299 ], [ -95.22973194937444, 29.344309116058788 ], [ -95.229126949564119, 29.344940116749413 ], [ -95.228875949056729, 29.345334116815188 ], [ -95.228544948661295, 29.345933116095512 ], [ -95.228331949216098, 29.346297116393512 ], [ -95.228066949244607, 29.346611116520457 ], [ -95.22743894901636, 29.347246116408812 ], [ -95.226418948315214, 29.348278116980715 ], [ -95.222638948006065, 29.352024117627071 ], [ -95.221622947173088, 29.353031118317968 ], [ -95.219991947319826, 29.354659118538624 ], [ -95.214434946499509, 29.360206120222493 ], [ -95.21465794574307, 29.360379120146284 ], [ -95.216111946925693, 29.361510119920013 ], [ -95.216110946899192, 29.361521119964653 ], [ -95.216109946700868, 29.361598119765912 ], [ -95.216061946927042, 29.361787120578228 ], [ -95.214934945858417, 29.362889120130184 ], [ -95.219808947751233, 29.366674121458622 ], [ -95.224432948666461, 29.370244122010195 ], [ -95.224605948806413, 29.370378121302068 ], [ -95.224726949192231, 29.370471121320779 ], [ -95.227137949968025, 29.372474122487624 ], [ -95.229157950551269, 29.374173122159036 ], [ -95.229379950272474, 29.374377121962169 ], [ -95.229518950978274, 29.374505122767705 ], [ -95.229695950173863, 29.374822122599383 ], [ -95.229979951166825, 29.375487122845524 ], [ -95.230333951045566, 29.376401122593318 ], [ -95.230576950619664, 29.377029122951498 ], [ -95.23058895055749, 29.377058123197461 ], [ -95.230752950572793, 29.377458122944383 ], [ -95.230935950559271, 29.377904122778244 ], [ -95.231054950909638, 29.378192123074271 ], [ -95.23132595092757, 29.378851123674536 ], [ -95.231464951510233, 29.379192123250217 ], [ -95.232066951748862, 29.380658123674976 ], [ -95.232160950957734, 29.38089212336282 ], [ -95.232582951292585, 29.381937123509459 ], [ -95.232701951917889, 29.382190123977946 ], [ -95.232820951575945, 29.382425123838146 ], [ -95.232907951694173, 29.382541123903401 ], [ -95.233050952050732, 29.38268312430791 ], [ -95.233150952050181, 29.382774123952291 ], [ -95.233261952320277, 29.382896123781041 ], [ -95.233370951873979, 29.38305912438603 ], [ -95.233463952013992, 29.383222123928046 ], [ -95.23352195188258, 29.383365124281944 ], [ -95.233824952507533, 29.384129123972215 ], [ -95.234430951770747, 29.385654124252184 ], [ -95.234955952806203, 29.386981124819457 ], [ -95.235381952759212, 29.388021124784053 ], [ -95.236118953146871, 29.389912125001153 ], [ -95.236379953206665, 29.390580125290242 ], [ -95.236771952785915, 29.391586125627136 ], [ -95.237059953371158, 29.392305125515598 ], [ -95.237230952950782, 29.392731126089547 ], [ -95.237427953216269, 29.393221126419071 ], [ -95.238212953920765, 29.395182126292337 ], [ -95.238444953209779, 29.395760126357921 ], [ -95.238724953385372, 29.396520126587603 ], [ -95.239429953910573, 29.39827812713359 ], [ -95.239793953850892, 29.399253127432974 ], [ -95.239838954521574, 29.39936312736139 ], [ -95.239905954684957, 29.399524126923371 ], [ -95.240093954589796, 29.400035127009371 ], [ -95.240153954055756, 29.400158127506362 ], [ -95.240407954807139, 29.400840127093225 ], [ -95.240551954028973, 29.401209127178682 ], [ -95.240707954143417, 29.401629127571571 ], [ -95.24082095496729, 29.401903127927827 ], [ -95.242149954962812, 29.401438127138718 ], [ -95.24268295495888, 29.401172127117992 ], [ -95.243464954755268, 29.400741127299629 ], [ -95.243827955345722, 29.400508127724912 ], [ -95.244413954944889, 29.400066127448639 ], [ -95.244745955114922, 29.399763127422009 ], [ -95.245608955520979, 29.399007126977857 ], [ -95.246280955593718, 29.398395127121745 ], [ -95.246677956278859, 29.39801512650093 ], [ -95.246777955839335, 29.397914126438422 ], [ -95.246856956081615, 29.39783312635463 ], [ -95.247120956159918, 29.397568126862428 ], [ -95.247215955554722, 29.397464126861227 ], [ -95.247484955597358, 29.397156126561857 ], [ -95.247741956426268, 29.396815126287777 ], [ -95.247822955729205, 29.396691126038579 ], [ -95.248008956071132, 29.396409126351237 ], [ -95.248277956731243, 29.396012125886873 ], [ -95.248407956624888, 29.395868126511385 ], [ -95.249526956275332, 29.394004125555746 ], [ -95.251677956396648, 29.390424124565005 ], [ -95.251839957396726, 29.390155124779966 ], [ -95.25266395706079, 29.388805124585545 ], [ -95.253486957041218, 29.387438123994976 ], [ -95.254637957508493, 29.385524124244522 ], [ -95.255855957287153, 29.383501123429717 ], [ -95.256993957346921, 29.381591122909676 ], [ -95.257221958365164, 29.381231123169556 ], [ -95.257257958225964, 29.381171122461353 ], [ -95.257880957835908, 29.380141122270917 ], [ -95.258632958015255, 29.378896122183498 ], [ -95.259553958022551, 29.377369121624227 ], [ -95.260555958441756, 29.375708121185887 ], [ -95.260874959004866, 29.375157121898951 ], [ -95.261086958926029, 29.374793121640497 ], [ -95.261177958546241, 29.37463512114655 ], [ -95.261662959129637, 29.373853121585142 ], [ -95.262134959066756, 29.37309412088679 ], [ -95.262898959330101, 29.37182612117099 ], [ -95.263955958778283, 29.370072120288263 ], [ -95.264458959695489, 29.369231119803651 ], [ -95.265072958965959, 29.368206120133159 ], [ -95.266102959220802, 29.366522119518311 ], [ -95.26729595926119, 29.364540118709783 ], [ -95.267933959591033, 29.363478118912987 ], [ -95.269469960523693, 29.360914118481464 ], [ -95.270405960656646, 29.359357117684194 ], [ -95.2710979605381, 29.358209117225599 ], [ -95.271659960379381, 29.357274117507369 ], [ -95.272546960455045, 29.355802117053333 ], [ -95.273328960826021, 29.354508116599721 ], [ -95.274416960635818, 29.352705116027025 ], [ -95.275476961748751, 29.350978116204942 ], [ -95.276443961542427, 29.349405116041947 ], [ -95.279499962080919, 29.344262114126337 ], [ -95.280693962472256, 29.342270113952232 ], [ -95.281340962451821, 29.341211113523894 ], [ -95.281787962600433, 29.34046811362931 ], [ -95.282915962197123, 29.338599113242747 ], [ -95.283878962677434, 29.336990113117565 ], [ -95.284433962507975, 29.336075112718174 ], [ -95.283475962483166, 29.335832112503518 ], [ -95.282880962103775, 29.335434112790299 ], [ -95.282632962456105, 29.334824112335358 ], [ -95.282610961919588, 29.3340911124704 ], [ -95.283400962730241, 29.333673112361659 ], [ -95.283569962967448, 29.333357112553276 ], [ -95.283181962186774, 29.332724112318385 ], [ -95.282722961903715, 29.332510111741712 ], [ -95.282553962010624, 29.332228111678926 ], [ -95.283005962496048, 29.332183111620225 ], [ -95.284122962971722, 29.332194111857291 ], [ -95.284569962951238, 29.331856112210616 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1452, "Tract": "48039661601", "Area_SqMi": 9.1310851429349178, "total_2009": 571, "total_2010": 588, "total_2011": 521, "total_2012": 523, "total_2013": 544, "total_2014": 576, "total_2015": 597, "total_2016": 662, "total_2017": 771, "total_2018": 1461, "total_2019": 1373, "total_2020": 1270, "age1": 300, "age2": 578, "age3": 289, "earn1": 396, "earn2": 380, "earn3": 391, "naics_s01": 0, "naics_s02": 38, "naics_s03": 0, "naics_s04": 95, "naics_s05": 33, "naics_s06": 25, "naics_s07": 38, "naics_s08": 48, "naics_s09": 0, "naics_s10": 39, "naics_s11": 8, "naics_s12": 33, "naics_s13": 0, "naics_s14": 291, "naics_s15": 0, "naics_s16": 478, "naics_s17": 9, "naics_s18": 16, "naics_s19": 16, "naics_s20": 0, "race1": 894, "race2": 197, "race3": 10, "race4": 44, "race5": 1, "race6": 21, "ethnicity1": 698, "ethnicity2": 469, "edu1": 233, "edu2": 234, "edu3": 263, "edu4": 137, "Shape_Length": 64426.119148183789, "Shape_Area": 254559025.77661476, "total_2021": 1202, "total_2022": 1167 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.24082095496729, 29.401903127927827 ], [ -95.240707954143417, 29.401629127571571 ], [ -95.240551954028973, 29.401209127178682 ], [ -95.240407954807139, 29.400840127093225 ], [ -95.240153954055756, 29.400158127506362 ], [ -95.240093954589796, 29.400035127009371 ], [ -95.239905954684957, 29.399524126923371 ], [ -95.239838954521574, 29.39936312736139 ], [ -95.239793953850892, 29.399253127432974 ], [ -95.239429953910573, 29.39827812713359 ], [ -95.238724953385372, 29.396520126587603 ], [ -95.238444953209779, 29.395760126357921 ], [ -95.238212953920765, 29.395182126292337 ], [ -95.237427953216269, 29.393221126419071 ], [ -95.237230952950782, 29.392731126089547 ], [ -95.237059953371158, 29.392305125515598 ], [ -95.236771952785915, 29.391586125627136 ], [ -95.236379953206665, 29.390580125290242 ], [ -95.236118953146871, 29.389912125001153 ], [ -95.235381952759212, 29.388021124784053 ], [ -95.234955952806203, 29.386981124819457 ], [ -95.234430951770747, 29.385654124252184 ], [ -95.233824952507533, 29.384129123972215 ], [ -95.23352195188258, 29.383365124281944 ], [ -95.233463952013992, 29.383222123928046 ], [ -95.233370951873979, 29.38305912438603 ], [ -95.233261952320277, 29.382896123781041 ], [ -95.233150952050181, 29.382774123952291 ], [ -95.233050952050732, 29.38268312430791 ], [ -95.232907951694173, 29.382541123903401 ], [ -95.232820951575945, 29.382425123838146 ], [ -95.232701951917889, 29.382190123977946 ], [ -95.232582951292585, 29.381937123509459 ], [ -95.232160950957734, 29.38089212336282 ], [ -95.232066951748862, 29.380658123674976 ], [ -95.231464951510233, 29.379192123250217 ], [ -95.23132595092757, 29.378851123674536 ], [ -95.231054950909638, 29.378192123074271 ], [ -95.230935950559271, 29.377904122778244 ], [ -95.230752950572793, 29.377458122944383 ], [ -95.23058895055749, 29.377058123197461 ], [ -95.230576950619664, 29.377029122951498 ], [ -95.230333951045566, 29.376401122593318 ], [ -95.229979951166825, 29.375487122845524 ], [ -95.229695950173863, 29.374822122599383 ], [ -95.229518950978274, 29.374505122767705 ], [ -95.229379950272474, 29.374377121962169 ], [ -95.229157950551269, 29.374173122159036 ], [ -95.227137949968025, 29.372474122487624 ], [ -95.224726949192231, 29.370471121320779 ], [ -95.224605948806413, 29.370378121302068 ], [ -95.224432948666461, 29.370244122010195 ], [ -95.219808947751233, 29.366674121458622 ], [ -95.214934945858417, 29.362889120130184 ], [ -95.216061946927042, 29.361787120578228 ], [ -95.216109946700868, 29.361598119765912 ], [ -95.216110946899192, 29.361521119964653 ], [ -95.216111946925693, 29.361510119920013 ], [ -95.21465794574307, 29.360379120146284 ], [ -95.214434946499509, 29.360206120222493 ], [ -95.212804945256437, 29.358966119270846 ], [ -95.211169944777481, 29.357700119227406 ], [ -95.210411945318171, 29.357108119804682 ], [ -95.206729944542673, 29.360713120048999 ], [ -95.20641594384341, 29.361038120730235 ], [ -95.205255943770624, 29.362242120288773 ], [ -95.205143943228435, 29.362302120711202 ], [ -95.201895942593822, 29.36552512148543 ], [ -95.199944942372127, 29.367431121930323 ], [ -95.199715942976937, 29.367593122043306 ], [ -95.199501942280492, 29.367687122183735 ], [ -95.199189942935519, 29.367798122134012 ], [ -95.198772942708956, 29.367965121682818 ], [ -95.198645942119811, 29.368035122272826 ], [ -95.198557941818606, 29.368106121626212 ], [ -95.198407941874876, 29.368244122031175 ], [ -95.196249941798158, 29.370348122516244 ], [ -95.194895941174565, 29.37170812288371 ], [ -95.194856941373232, 29.371746123381573 ], [ -95.192558941209157, 29.373995123395883 ], [ -95.192375941007725, 29.37418312390481 ], [ -95.19228794096793, 29.374270123948829 ], [ -95.18805594032051, 29.378447124886115 ], [ -95.188015939725645, 29.378621124243029 ], [ -95.18925993990311, 29.37952812459951 ], [ -95.187534939997789, 29.380769125231261 ], [ -95.186400940056259, 29.381537125260117 ], [ -95.186179939926703, 29.381739124907313 ], [ -95.185978939893147, 29.381826125303203 ], [ -95.185785939924969, 29.382025125437579 ], [ -95.185761939767147, 29.382100125759941 ], [ -95.185704939319194, 29.382338125739029 ], [ -95.185657939203764, 29.38353612609896 ], [ -95.185581939216689, 29.385610126101117 ], [ -95.185688940019801, 29.387929126558959 ], [ -95.185694939894532, 29.388522126481824 ], [ -95.185644939370874, 29.38893112722311 ], [ -95.184261939329829, 29.390377127393148 ], [ -95.18381993922236, 29.390816127370794 ], [ -95.183465939478054, 29.391166127222149 ], [ -95.18366793930285, 29.391250127612526 ], [ -95.184330939735048, 29.392266127792951 ], [ -95.186906940705427, 29.396214127849312 ], [ -95.187979940879558, 29.397859128392884 ], [ -95.189221941192869, 29.399842128865487 ], [ -95.189240941511443, 29.399873129328011 ], [ -95.189643941896009, 29.4005161290338 ], [ -95.190207941253661, 29.401417129371577 ], [ -95.190460941296493, 29.401796129331828 ], [ -95.190475941888963, 29.401819129647023 ], [ -95.190493941332051, 29.401845129712385 ], [ -95.190511942028593, 29.401869129242495 ], [ -95.191725942133118, 29.403671129567872 ], [ -95.192196942317054, 29.40437212987241 ], [ -95.19339494210989, 29.406081130106152 ], [ -95.19428294317153, 29.407280130199936 ], [ -95.19531194332977, 29.408492130423646 ], [ -95.19592494362594, 29.409465130763817 ], [ -95.196675943355075, 29.409726131060314 ], [ -95.197074943267054, 29.409864130694512 ], [ -95.198455943658061, 29.410328130859508 ], [ -95.19921694398333, 29.410643131045781 ], [ -95.199396943959215, 29.410717130479846 ], [ -95.200894944797597, 29.411407130791183 ], [ -95.205246945901166, 29.41339013088934 ], [ -95.205762946195108, 29.413625131699266 ], [ -95.206127945844571, 29.41379113088967 ], [ -95.209554947346831, 29.415334131372479 ], [ -95.210141947149623, 29.415597131804198 ], [ -95.213094948217815, 29.4169211319543 ], [ -95.214696948836789, 29.41763813148464 ], [ -95.215089948935685, 29.417811131745989 ], [ -95.216931949084653, 29.418624131640467 ], [ -95.21732794920554, 29.418799132071022 ], [ -95.218756949913171, 29.419430131985028 ], [ -95.220605949798738, 29.420246132110879 ], [ -95.222674950383649, 29.42118913254561 ], [ -95.223998951102246, 29.421793131918307 ], [ -95.224892951576933, 29.422201132803714 ], [ -95.225969951338016, 29.422692132774827 ], [ -95.226273951646277, 29.422871132842296 ], [ -95.22692095224815, 29.423183132440961 ], [ -95.227016951601854, 29.423223132848548 ], [ -95.227328952110014, 29.423347132132758 ], [ -95.22735795200596, 29.423213132502738 ], [ -95.227641951895322, 29.421932132141642 ], [ -95.227686951881012, 29.421667131920746 ], [ -95.227779951777848, 29.421245132519637 ], [ -95.227918952044462, 29.420550131735254 ], [ -95.228013952472139, 29.420105131875921 ], [ -95.228040951958292, 29.419951131543638 ], [ -95.22807795185598, 29.419745131486838 ], [ -95.228151951944412, 29.419450131409651 ], [ -95.228387951728308, 29.418430131373309 ], [ -95.228705952261308, 29.417462131732592 ], [ -95.229001952079031, 29.416631131238642 ], [ -95.229262952493926, 29.416105130789408 ], [ -95.229981951955565, 29.414653130351411 ], [ -95.230272952749857, 29.414044130136588 ], [ -95.230527952559257, 29.413494130184755 ], [ -95.230687952259615, 29.413165130513658 ], [ -95.23094595227812, 29.412636129912261 ], [ -95.231156952409492, 29.412087130219572 ], [ -95.231286952664718, 29.411507129563024 ], [ -95.231514952441202, 29.410926130105111 ], [ -95.231991952809807, 29.40995112975763 ], [ -95.232221952902478, 29.409504129862366 ], [ -95.232481952817338, 29.408983129074855 ], [ -95.232748953178088, 29.408450128875973 ], [ -95.233045952955422, 29.407837129505836 ], [ -95.233639952627243, 29.40680012872 ], [ -95.234440953329255, 29.405757128268544 ], [ -95.23523895305182, 29.404921128214159 ], [ -95.235783953467717, 29.404442128552503 ], [ -95.236186953715773, 29.404108128119148 ], [ -95.236803954062097, 29.40368312852344 ], [ -95.237629953827536, 29.403175128080637 ], [ -95.238225953665051, 29.402856127830816 ], [ -95.238600954320134, 29.402676127924924 ], [ -95.238631954034147, 29.40266312746903 ], [ -95.239067953797175, 29.402480127775373 ], [ -95.239327954223867, 29.40238812768294 ], [ -95.239613953902634, 29.402287127493395 ], [ -95.24029195480675, 29.402056127889395 ], [ -95.24082095496729, 29.401903127927827 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1453, "Tract": "48039990000", "Area_SqMi": 120.25787641702338, "total_2009": null, "total_2010": null, "total_2011": null, "total_2012": null, "total_2013": null, "total_2014": null, "total_2015": null, "total_2016": null, "total_2017": null, "total_2018": null, "total_2019": null, "total_2020": null, "age1": null, "age2": null, "age3": null, "earn1": null, "earn2": null, "earn3": null, "naics_s01": null, "naics_s02": null, "naics_s03": null, "naics_s04": null, "naics_s05": null, "naics_s06": null, "naics_s07": null, "naics_s08": null, "naics_s09": null, "naics_s10": null, "naics_s11": null, "naics_s12": null, "naics_s13": null, "naics_s14": null, "naics_s15": null, "naics_s16": null, "naics_s17": null, "naics_s18": null, "naics_s19": null, "naics_s20": null, "race1": null, "race2": null, "race3": null, "race4": null, "race5": null, "race6": null, "ethnicity1": null, "ethnicity2": null, "edu1": null, "edu2": null, "edu3": null, "edu4": null, "Shape_Length": 371725.86083309981, "Shape_Area": 3352583771.0940948, "total_2021": null, "total_2022": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.505853998408924, 28.824472999338077 ], [ -95.506962998463791, 28.824297999744033 ], [ -95.504163997230975, 28.808896996098301 ], [ -95.50023199544178, 28.786819991832125 ], [ -95.500231995170068, 28.785573991163869 ], [ -95.495656993107275, 28.764841987378627 ], [ -95.493894993218532, 28.765344987854977 ], [ -95.420077975815332, 28.805629998119471 ], [ -95.413662973774521, 28.805320998771084 ], [ -95.413074973653153, 28.805321998814286 ], [ -95.40170997059893, 28.805919999295888 ], [ -95.401440970717033, 28.805946998781153 ], [ -95.401165970526307, 28.805973999347621 ], [ -95.394178968938846, 28.807004999338453 ], [ -95.393705969161942, 28.807094999257064 ], [ -95.383906966497278, 28.809392000021255 ], [ -95.378714965046328, 28.810133000469939 ], [ -95.377993965278534, 28.810284000742186 ], [ -95.373675963806249, 28.811481000626536 ], [ -95.365448961922851, 28.813762002098287 ], [ -95.353477958798891, 28.817868002643568 ], [ -95.340728955844455, 28.823090004821349 ], [ -95.340316955583702, 28.823279004086285 ], [ -95.336767954778168, 28.825096005287271 ], [ -95.330526954065419, 28.828292005969615 ], [ -95.329853953703036, 28.828704006113774 ], [ -95.322951952087905, 28.833687007067212 ], [ -95.322119951677664, 28.834447007109933 ], [ -95.315428950614319, 28.842214009066062 ], [ -95.31496195011789, 28.842865009571472 ], [ -95.310205949098815, 28.850970011086687 ], [ -95.309748948831512, 28.852097010974575 ], [ -95.308127949314013, 28.858835012741885 ], [ -95.290818945039064, 28.871648016497563 ], [ -95.274396941182488, 28.881047018636252 ], [ -95.267371940106685, 28.885068019441846 ], [ -95.257076937158416, 28.890368020677997 ], [ -95.253291936843667, 28.892316021227035 ], [ -95.252797935952216, 28.89260502129974 ], [ -95.241687934114566, 28.899965023525013 ], [ -95.227234930295168, 28.910384026226968 ], [ -95.206434926141654, 28.926697030628105 ], [ -95.180841920469746, 28.948936035986307 ], [ -95.180513919664989, 28.949248035601915 ], [ -95.156701914588453, 28.974276041719346 ], [ -95.139475911232893, 28.991702045587083 ], [ -95.129104908587749, 29.000250048405743 ], [ -95.1257769086005, 29.0029940482302 ], [ -95.115130906268078, 29.008636050406693 ], [ -95.114470906147957, 29.009052050299378 ], [ -95.106534903790489, 29.01494005195639 ], [ -95.105453903986557, 29.016053052337405 ], [ -95.094342901657214, 29.032245056159471 ], [ -95.093805901133123, 29.033332056178235 ], [ -95.091915900905832, 29.039172056967363 ], [ -95.089042900552343, 29.048051059530621 ], [ -95.088907900619375, 29.048595059256623 ], [ -95.087263901136623, 29.05800106106221 ], [ -95.091628902094158, 29.062744062472049 ], [ -95.091651902036787, 29.062744061802956 ], [ -95.106434906116903, 29.070877063350903 ], [ -95.116722909385487, 29.076461064315495 ], [ -95.118529909672333, 29.077451064815495 ], [ -95.118743910005378, 29.077191064000619 ], [ -95.12140891049782, 29.074002063831152 ], [ -95.121261910020309, 29.073745063659231 ], [ -95.120986909869131, 29.07298406325819 ], [ -95.120574909996265, 29.070980062713694 ], [ -95.120482909256168, 29.069177062907084 ], [ -95.120757909776628, 29.068014062159484 ], [ -95.12152291032578, 29.067023061989897 ], [ -95.121339909740072, 29.066852061966809 ], [ -95.124001910152259, 29.0650740611995 ], [ -95.129638912134652, 29.062774061325133 ], [ -95.134774912909577, 29.060364059904302 ], [ -95.141789914222173, 29.05565405922324 ], [ -95.146924916083989, 29.052039058631529 ], [ -95.153438917682976, 29.047877057068934 ], [ -95.160954918844809, 29.042510055764811 ], [ -95.171476921400753, 29.034842054054359 ], [ -95.179117922696605, 29.02969405226758 ], [ -95.18826192546554, 29.023779051053051 ], [ -95.19377292643027, 29.019069049763502 ], [ -95.200035928355675, 29.015564048664654 ], [ -95.207175929556826, 29.010745047347672 ], [ -95.210933930238085, 29.007568046733578 ], [ -95.216695931529543, 29.003515045912433 ], [ -95.221610932421044, 29.000261044785947 ], [ -95.224268933121621, 28.99818204487562 ], [ -95.226192933668955, 28.997380044238824 ], [ -95.229124934874093, 28.995376043863388 ], [ -95.232697935056279, 28.993132042797431 ], [ -95.236454935992185, 28.990247042448104 ], [ -95.241218936789807, 28.985998041453378 ], [ -95.245341938008494, 28.982792040233242 ], [ -95.249006938936986, 28.97966603953056 ], [ -95.251096939626478, 28.978018039732184 ], [ -95.260558941533432, 28.970182037813696 ], [ -95.261393942180348, 28.969859037096604 ], [ -95.26202094139505, 28.969616037330201 ], [ -95.262500941530917, 28.969377037367519 ], [ -95.262809941847991, 28.968559036919746 ], [ -95.262925942202457, 28.968252036653322 ], [ -95.263747942268694, 28.967416036742453 ], [ -95.269241943084381, 28.962478035430163 ], [ -95.273663944738288, 28.958594035117457 ], [ -95.275215945106439, 28.957231034163136 ], [ -95.275646944930386, 28.95677003412321 ], [ -95.284153946688448, 28.947713032020314 ], [ -95.286271946690519, 28.945373031762621 ], [ -95.290518947690671, 28.940190030080345 ], [ -95.292758948958479, 28.938334029744379 ], [ -95.294334948826048, 28.936412029509437 ], [ -95.294405948885924, 28.936325029228684 ], [ -95.294602949328095, 28.936085029001177 ], [ -95.294662948898079, 28.935424028993655 ], [ -95.294662948302999, 28.934947029494193 ], [ -95.295177948826606, 28.934618028827678 ], [ -95.295284948524269, 28.934550028971746 ], [ -95.295630949225881, 28.934330029418714 ], [ -95.296002949456863, 28.934093028971425 ], [ -95.296271949572727, 28.934349029414324 ], [ -95.29649294902454, 28.934631029321569 ], [ -95.296779948889423, 28.934392029072107 ], [ -95.29689394976478, 28.934297028933276 ], [ -95.296970949861716, 28.934233029053516 ], [ -95.297047949607119, 28.934172029122394 ], [ -95.297065949437638, 28.934158028984811 ], [ -95.297157948934199, 28.934085028924201 ], [ -95.297058949245667, 28.934014028919499 ], [ -95.297807949652935, 28.933900028561116 ], [ -95.299424950044383, 28.933309028422929 ], [ -95.30052894995724, 28.932861028863606 ], [ -95.301507950085508, 28.932444028656672 ], [ -95.302953951164753, 28.931759027847146 ], [ -95.303250950845438, 28.931680027987376 ], [ -95.303322951059712, 28.931286027721406 ], [ -95.303887951374833, 28.931130027878943 ], [ -95.307327951548956, 28.928822027475768 ], [ -95.308297952523105, 28.928178026932191 ], [ -95.312941952981163, 28.925288026478825 ], [ -95.313408953538712, 28.924982026130195 ], [ -95.315011953311839, 28.923976026336319 ], [ -95.315675954059813, 28.923499026240233 ], [ -95.316242953512784, 28.92308902616864 ], [ -95.316434954009765, 28.922898025913078 ], [ -95.316325954156, 28.922803025931746 ], [ -95.315969953373155, 28.922492026223001 ], [ -95.319690954117647, 28.920027025666535 ], [ -95.321429954605165, 28.918880024542368 ], [ -95.327754956173166, 28.914704024173375 ], [ -95.330521957283693, 28.912941023447434 ], [ -95.331994957455208, 28.911862023030476 ], [ -95.33242595762114, 28.911484023018755 ], [ -95.333488958042267, 28.910575023053923 ], [ -95.334168957596589, 28.910240022675691 ], [ -95.334330957607534, 28.910130022780823 ], [ -95.336405957962796, 28.908752022351127 ], [ -95.338282958802125, 28.9073340217085 ], [ -95.340039958816106, 28.906074021503386 ], [ -95.340695959027386, 28.905603021631283 ], [ -95.341498959805108, 28.90502702138993 ], [ -95.34317895944362, 28.903641021516435 ], [ -95.344184959818008, 28.902995020560237 ], [ -95.345720960807668, 28.90197202023532 ], [ -95.346879960487286, 28.90100302057596 ], [ -95.347867960805701, 28.900137020625163 ], [ -95.351029962201949, 28.89780602002001 ], [ -95.353527962766179, 28.895979019465127 ], [ -95.355404962347393, 28.894506018460234 ], [ -95.357587963602924, 28.892861018811747 ], [ -95.360939963672351, 28.890134017604513 ], [ -95.360854964384018, 28.890096017458326 ], [ -95.360778964160218, 28.890015017708283 ], [ -95.360229963666441, 28.889373017617853 ], [ -95.364624964773029, 28.88632801642369 ], [ -95.369659966137718, 28.882160015398359 ], [ -95.37497096662949, 28.877270014827424 ], [ -95.376801967779741, 28.875908014221004 ], [ -95.377286967485489, 28.873587013857982 ], [ -95.378260967443453, 28.873335013787958 ], [ -95.379141967561864, 28.87310801351467 ], [ -95.379512967698474, 28.871566013304847 ], [ -95.379646968348027, 28.870630012827693 ], [ -95.37997696840624, 28.868318012824762 ], [ -95.381181968502673, 28.865070012263576 ], [ -95.385446969260215, 28.86369001154079 ], [ -95.393512970882767, 28.861903011064765 ], [ -95.39851997211268, 28.860929010362128 ], [ -95.405473973691983, 28.859630010138016 ], [ -95.412056976011186, 28.858412009352691 ], [ -95.420864978105783, 28.858412009053289 ], [ -95.431341980558443, 28.858493008868894 ], [ -95.433903981311715, 28.858393008970047 ], [ -95.435902981734017, 28.858685008571502 ], [ -95.436534981799355, 28.858778008855225 ], [ -95.437303982353313, 28.858296009085137 ], [ -95.441529983610877, 28.855651008075622 ], [ -95.449778985102441, 28.852972007202773 ], [ -95.450274984929749, 28.852779007372916 ], [ -95.461920988279815, 28.848263005422147 ], [ -95.463496988738171, 28.846883005299766 ], [ -95.466184988973467, 28.844934004726845 ], [ -95.469613990123563, 28.843797004986143 ], [ -95.473691990664108, 28.84184900410931 ], [ -95.483052993409629, 28.836652002794633 ], [ -95.48592699397058, 28.834866002293456 ], [ -95.49398999593754, 28.830725001405497 ], [ -95.505853998408924, 28.824472999338077 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1454, "Tract": "48157670102", "Area_SqMi": 0.47013830774629972, "total_2009": 8, "total_2010": 10, "total_2011": 7, "total_2012": 13, "total_2013": 23, "total_2014": 28, "total_2015": 28, "total_2016": 46, "total_2017": 124, "total_2018": 118, "total_2019": 76, "total_2020": 43, "age1": 14, "age2": 26, "age3": 2, "earn1": 16, "earn2": 13, "earn3": 13, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 12, "naics_s05": 0, "naics_s06": 0, "naics_s07": 6, "naics_s08": 3, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 16, "naics_s19": 0, "naics_s20": 0, "race1": 17, "race2": 19, "race3": 0, "race4": 6, "race5": 0, "race6": 0, "ethnicity1": 33, "ethnicity2": 9, "edu1": 5, "edu2": 8, "edu3": 7, "edu4": 8, "Shape_Length": 15711.616335054538, "Shape_Area": 13106651.37021134, "total_2021": 43, "total_2022": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.471242021140355, 29.586157158330046 ], [ -95.471218021586964, 29.585557157564747 ], [ -95.471169021067297, 29.583797157233892 ], [ -95.471164021808974, 29.583089157578193 ], [ -95.471144021783488, 29.582325156765748 ], [ -95.471100021394761, 29.580830156896702 ], [ -95.467661020732336, 29.580915157385775 ], [ -95.46553901940807, 29.580940156785818 ], [ -95.465421020252137, 29.580941156698263 ], [ -95.463325019236621, 29.580966157246127 ], [ -95.462307019531877, 29.580978157343399 ], [ -95.461414018984144, 29.581022157566014 ], [ -95.459336018352019, 29.581051157370823 ], [ -95.458153017758448, 29.581082157495572 ], [ -95.457686017814879, 29.58109815752103 ], [ -95.454082016784085, 29.581173157126742 ], [ -95.454129017240149, 29.582284157896719 ], [ -95.454137017104742, 29.582877158309099 ], [ -95.453998016718558, 29.583567157734336 ], [ -95.45399101681005, 29.583602158000858 ], [ -95.453742016860744, 29.584366157999128 ], [ -95.455273017243826, 29.58493915798163 ], [ -95.455638017431227, 29.585083157968526 ], [ -95.45598201712707, 29.585219157874132 ], [ -95.456293017896556, 29.585343157939391 ], [ -95.457520017957179, 29.585819158199008 ], [ -95.461302019449349, 29.587287158653467 ], [ -95.465286020555666, 29.588839158482184 ], [ -95.466104019990226, 29.589157159001264 ], [ -95.466905020490884, 29.589458159209769 ], [ -95.467520021161008, 29.58971715881583 ], [ -95.46813502069557, 29.589976159078475 ], [ -95.469578021770303, 29.590509158612619 ], [ -95.470011021212542, 29.58966215855267 ], [ -95.47073002157353, 29.58817615805755 ], [ -95.470960021696598, 29.587651158394554 ], [ -95.470967021262638, 29.587625158053957 ], [ -95.47112802117897, 29.587032158444462 ], [ -95.471176021236204, 29.586778157916836 ], [ -95.471210021590551, 29.586543157800218 ], [ -95.471242021140355, 29.586157158330046 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1455, "Tract": "48157670602", "Area_SqMi": 1.050198207792191, "total_2009": 137, "total_2010": 166, "total_2011": 110, "total_2012": 193, "total_2013": 176, "total_2014": 39, "total_2015": 97, "total_2016": 171, "total_2017": 164, "total_2018": 98, "total_2019": 109, "total_2020": 37, "age1": 5, "age2": 20, "age3": 13, "earn1": 4, "earn2": 12, "earn3": 22, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 0, "naics_s06": 0, "naics_s07": 8, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 7, "naics_s12": 0, "naics_s13": 15, "naics_s14": 0, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 25, "race2": 6, "race3": 1, "race4": 5, "race5": 0, "race6": 1, "ethnicity1": 27, "ethnicity2": 11, "edu1": 8, "edu2": 6, "edu3": 10, "edu4": 9, "Shape_Length": 21920.232427337924, "Shape_Area": 29277728.601049848, "total_2021": 38, "total_2022": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.506257030372439, 29.591479157948207 ], [ -95.506332030813027, 29.589309157185557 ], [ -95.506180030263081, 29.586763157217423 ], [ -95.506164030107428, 29.585914156859886 ], [ -95.506149030261213, 29.584948156114788 ], [ -95.506057030405955, 29.580300155594372 ], [ -95.505501029700667, 29.580301155878207 ], [ -95.504738029506413, 29.580335155456289 ], [ -95.503846029941812, 29.580326155979847 ], [ -95.503130028979299, 29.580291155691125 ], [ -95.500454028942812, 29.580287156122413 ], [ -95.500341028502916, 29.580292155769481 ], [ -95.498946027894092, 29.580320156175905 ], [ -95.49668802760101, 29.580329155677816 ], [ -95.496019027235761, 29.580292155521015 ], [ -95.495492028003213, 29.580251155621372 ], [ -95.49474402694706, 29.58021015555606 ], [ -95.493612026535061, 29.5802181557446 ], [ -95.492896026832852, 29.580231155608907 ], [ -95.492303026615517, 29.580272155846174 ], [ -95.49229702718138, 29.580684156193218 ], [ -95.492247026356395, 29.580994156232553 ], [ -95.492062026943771, 29.581541156186663 ], [ -95.4920360266117, 29.581720156069906 ], [ -95.492037026826424, 29.581860156142806 ], [ -95.492042026594362, 29.582327156163906 ], [ -95.492053026986937, 29.583286156699931 ], [ -95.492076027264105, 29.584114156445366 ], [ -95.492109026822291, 29.585882157231712 ], [ -95.49216202694636, 29.587613157466787 ], [ -95.492172027258277, 29.588021157212314 ], [ -95.492209027035955, 29.588886158250745 ], [ -95.492252026645048, 29.589900157897716 ], [ -95.492259027301728, 29.591738158521878 ], [ -95.492260026888005, 29.591878158247411 ], [ -95.492290026919974, 29.592263158248105 ], [ -95.492303027359867, 29.593018159016019 ], [ -95.492325026787384, 29.593787158709148 ], [ -95.492336027829992, 29.594560159386067 ], [ -95.492345026984708, 29.595123159514085 ], [ -95.492353027320704, 29.595331158904102 ], [ -95.492360027042196, 29.596093159087033 ], [ -95.492430027851739, 29.598922159580567 ], [ -95.496824028887175, 29.598871159880311 ], [ -95.497587028607839, 29.598845159843908 ], [ -95.497808029426622, 29.598846159529003 ], [ -95.49831102853986, 29.598856159784436 ], [ -95.49901902950684, 29.598940159668246 ], [ -95.500046030016051, 29.599182159521128 ], [ -95.500341029843639, 29.599293159835117 ], [ -95.500494029774572, 29.59922816002058 ], [ -95.500662029856386, 29.599298159883197 ], [ -95.500946029967523, 29.599431159910527 ], [ -95.501481029643898, 29.59968216014823 ], [ -95.501762030388718, 29.599821159439905 ], [ -95.50242303065491, 29.600136159694468 ], [ -95.503071030297633, 29.599095159197226 ], [ -95.503919030449964, 29.5977001594181 ], [ -95.504399030755224, 29.596852158642935 ], [ -95.504671030934887, 29.596265159098856 ], [ -95.505031030890038, 29.595618159202363 ], [ -95.505448031080405, 29.594586159000873 ], [ -95.505781030989709, 29.593537158651788 ], [ -95.506047031260664, 29.592489157926625 ], [ -95.506257030372439, 29.591479157948207 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1456, "Tract": "48157671002", "Area_SqMi": 1.4942428880725072, "total_2009": 219, "total_2010": 231, "total_2011": 254, "total_2012": 141, "total_2013": 156, "total_2014": 136, "total_2015": 157, "total_2016": 179, "total_2017": 110, "total_2018": 140, "total_2019": 156, "total_2020": 170, "age1": 46, "age2": 93, "age3": 36, "earn1": 62, "earn2": 55, "earn3": 58, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 10, "naics_s07": 47, "naics_s08": 2, "naics_s09": 0, "naics_s10": 7, "naics_s11": 0, "naics_s12": 19, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 33, "naics_s17": 0, "naics_s18": 29, "naics_s19": 14, "naics_s20": 0, "race1": 95, "race2": 54, "race3": 1, "race4": 23, "race5": 0, "race6": 2, "ethnicity1": 125, "ethnicity2": 50, "edu1": 35, "edu2": 26, "edu3": 36, "edu4": 32, "Shape_Length": 33742.507087658625, "Shape_Area": 41656934.297199309, "total_2021": 161, "total_2022": 175 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.543483039465713, 29.583134154981519 ], [ -95.54348203971918, 29.583033155077548 ], [ -95.543436039576108, 29.579942154368855 ], [ -95.543422039457241, 29.579639154476666 ], [ -95.543100039847701, 29.578060153752059 ], [ -95.542898039963816, 29.577072153462549 ], [ -95.542759038984883, 29.57573515311763 ], [ -95.542702039778803, 29.575529153234498 ], [ -95.542576039150362, 29.575394153597902 ], [ -95.541240038700053, 29.574515153424297 ], [ -95.540421038442588, 29.573985153360297 ], [ -95.540005038450019, 29.573729153409964 ], [ -95.539812038403738, 29.573577152671746 ], [ -95.539717038874187, 29.573550153142534 ], [ -95.539510038931368, 29.573529153393714 ], [ -95.539425038444151, 29.573488152893965 ], [ -95.539365038734275, 29.57343315340859 ], [ -95.539305038355693, 29.573341153460731 ], [ -95.539139038243377, 29.573008152883002 ], [ -95.538854038387072, 29.572524153023213 ], [ -95.538644038436075, 29.572091152654924 ], [ -95.538599038622493, 29.571794152473302 ], [ -95.538571038616752, 29.571675152795546 ], [ -95.538732038393903, 29.571341152285022 ], [ -95.538800038461446, 29.571084152733629 ], [ -95.53891303852329, 29.570954152569694 ], [ -95.539195038032304, 29.570809152391956 ], [ -95.539421038012605, 29.570705152536775 ], [ -95.539655037872706, 29.570723152913864 ], [ -95.540069038519462, 29.570805152882542 ], [ -95.540179038998744, 29.570486152547812 ], [ -95.54020003884429, 29.570238151999462 ], [ -95.54024303830316, 29.568982152119514 ], [ -95.540264038080508, 29.568846152077786 ], [ -95.540345037987876, 29.568791151737535 ], [ -95.540674038719018, 29.568685151978425 ], [ -95.541382038831898, 29.568586152079213 ], [ -95.541236038854223, 29.568017151557235 ], [ -95.541097038243876, 29.567710152145938 ], [ -95.540831038161187, 29.567523151763233 ], [ -95.540567038162948, 29.567400152228178 ], [ -95.540167038613689, 29.567238151760936 ], [ -95.539534037979507, 29.56697315204902 ], [ -95.539256037690961, 29.566827151308157 ], [ -95.539049037678438, 29.566630151331726 ], [ -95.538857038041016, 29.565953151318428 ], [ -95.538643037821615, 29.565035151384482 ], [ -95.538522038189797, 29.564780150897086 ], [ -95.538467037508426, 29.564427151292453 ], [ -95.538492037969462, 29.564178151089653 ], [ -95.53843903819218, 29.563942151510094 ], [ -95.538388038067481, 29.563743150896123 ], [ -95.538229037393322, 29.563466151287169 ], [ -95.539000037678179, 29.563151150612562 ], [ -95.539158038025093, 29.563036150982363 ], [ -95.539264037924738, 29.562874151112883 ], [ -95.539365037652232, 29.562495150439187 ], [ -95.539414037974637, 29.562260150471371 ], [ -95.539436037940987, 29.562043150642804 ], [ -95.539404037467619, 29.56168015086476 ], [ -95.539396037869651, 29.561595150494192 ], [ -95.537987037450904, 29.561633150801306 ], [ -95.537537036981604, 29.561696150658868 ], [ -95.536142037199127, 29.562151150474904 ], [ -95.535631037177936, 29.562273150487378 ], [ -95.535172036615535, 29.562334150936113 ], [ -95.534682036813194, 29.562330151202286 ], [ -95.534307037067009, 29.56229915128835 ], [ -95.533790036871096, 29.562209151398424 ], [ -95.533369036529493, 29.562066150730931 ], [ -95.532577036224623, 29.561768150780598 ], [ -95.530784035607454, 29.561786151072518 ], [ -95.530490036151747, 29.561778151152044 ], [ -95.530131035468187, 29.561785150878354 ], [ -95.529698034989778, 29.561908151092982 ], [ -95.529513035762236, 29.561989151261368 ], [ -95.529110035277526, 29.562265151448873 ], [ -95.528854034783222, 29.562466150874322 ], [ -95.528539034873987, 29.562464151431485 ], [ -95.523322034110763, 29.56243615164697 ], [ -95.523355033955355, 29.562554151506042 ], [ -95.523575033545939, 29.563582151864715 ], [ -95.523770034491989, 29.563989152071557 ], [ -95.523983034166278, 29.564352152178582 ], [ -95.524134034484661, 29.564632151749823 ], [ -95.524253034538077, 29.564946151844751 ], [ -95.524379033887243, 29.565468151896908 ], [ -95.524574034464337, 29.566194152017804 ], [ -95.524693033900675, 29.566584152155659 ], [ -95.524775034375324, 29.566815152362221 ], [ -95.524806034431833, 29.56706315245026 ], [ -95.524825034912709, 29.567348152732947 ], [ -95.524774034665342, 29.567557152309831 ], [ -95.524711034534818, 29.56772015211012 ], [ -95.524636034341867, 29.567920152068627 ], [ -95.524397034846814, 29.568437152621641 ], [ -95.524309034741123, 29.568701152626929 ], [ -95.524233033998499, 29.569075152807606 ], [ -95.524189034001083, 29.569580152831662 ], [ -95.524126034042268, 29.570086152928514 ], [ -95.52406903438569, 29.570383153155156 ], [ -95.523956034566396, 29.570581153205094 ], [ -95.523711034124759, 29.570883153027079 ], [ -95.52346503430968, 29.571076152998526 ], [ -95.522641034061095, 29.571400153089208 ], [ -95.522339034013825, 29.571532152886274 ], [ -95.522119033975613, 29.571746152913601 ], [ -95.521943033820932, 29.57201515303209 ], [ -95.521805034347281, 29.572274153834449 ], [ -95.521779033723988, 29.572378153491012 ], [ -95.521798033878511, 29.572730153185841 ], [ -95.52181003379269, 29.572775153908946 ], [ -95.521848034410993, 29.572922153178528 ], [ -95.521974034303952, 29.573060153808196 ], [ -95.522100034507488, 29.573153153341714 ], [ -95.522276033742386, 29.573192153273371 ], [ -95.522622033925586, 29.573247153430469 ], [ -95.522773034187693, 29.573236153592166 ], [ -95.523289034240861, 29.573071153583754 ], [ -95.523634034264305, 29.573099153254397 ], [ -95.523974034709298, 29.573209153591101 ], [ -95.524735034376306, 29.573528153678637 ], [ -95.525125034953959, 29.573814153427005 ], [ -95.525791035240843, 29.574413154105034 ], [ -95.525933035299857, 29.574645153628779 ], [ -95.525986035308264, 29.574732154131468 ], [ -95.525973034563293, 29.575012153899994 ], [ -95.525841034747643, 29.575282153652768 ], [ -95.525621034788813, 29.575529153749017 ], [ -95.525445035325717, 29.575771153859097 ], [ -95.525382034678501, 29.575887154344379 ], [ -95.525394035142568, 29.576057153986291 ], [ -95.525457034592264, 29.576299154062056 ], [ -95.525627035389491, 29.577069154095952 ], [ -95.525677035235702, 29.57722815414612 ], [ -95.525803035021028, 29.577426154051473 ], [ -95.526161035228, 29.577684154772012 ], [ -95.526375035559042, 29.577888154086818 ], [ -95.526369034905173, 29.578064154563549 ], [ -95.526389035325323, 29.578119154707665 ], [ -95.526283035515945, 29.578123154718032 ], [ -95.526174035289898, 29.578121154291612 ], [ -95.524966035238336, 29.578142154260242 ], [ -95.52419903470286, 29.578156154399839 ], [ -95.523671034216775, 29.578165154512309 ], [ -95.523485035020698, 29.578128154360741 ], [ -95.523264035004118, 29.57797315495236 ], [ -95.523137034512786, 29.577773154218342 ], [ -95.522993034659052, 29.577257154365498 ], [ -95.522710033902797, 29.576413154392718 ], [ -95.522570034168751, 29.57621015393595 ], [ -95.522514034295654, 29.576243153886594 ], [ -95.522237034268713, 29.576409153818123 ], [ -95.522146034553529, 29.5764431545185 ], [ -95.522045034223027, 29.576469154693758 ], [ -95.521919033841158, 29.576483154488127 ], [ -95.521801033643172, 29.576480154559089 ], [ -95.521269033670336, 29.576386154319273 ], [ -95.521123034304168, 29.57638315401492 ], [ -95.52098503361357, 29.576402153934644 ], [ -95.52087203382176, 29.576435154568568 ], [ -95.520771033725069, 29.576478154738741 ], [ -95.520647033475569, 29.576558154655604 ], [ -95.520497033986658, 29.576738154121998 ], [ -95.520437033475957, 29.576866154771995 ], [ -95.520413033442665, 29.576964154648909 ], [ -95.520407033620103, 29.577028154235251 ], [ -95.520411033411989, 29.577139154365316 ], [ -95.52043703386741, 29.577245154639751 ], [ -95.520493033692375, 29.577367154390124 ], [ -95.52055503341613, 29.577457154278541 ], [ -95.520637033597353, 29.577539154085482 ], [ -95.520965034033722, 29.577796154843732 ], [ -95.521039034456834, 29.57787015443223 ], [ -95.521094033749264, 29.577940154683606 ], [ -95.521157033816536, 29.57805315419624 ], [ -95.521187033919034, 29.578136154401975 ], [ -95.521203033970053, 29.578241155086221 ], [ -95.521215034506838, 29.578425154735591 ], [ -95.521236033797365, 29.579328154808099 ], [ -95.521296034288824, 29.579950155303443 ], [ -95.521354034035397, 29.579948155049166 ], [ -95.521548034297709, 29.57994215524544 ], [ -95.521688033868301, 29.579949154829528 ], [ -95.522010034553986, 29.579965154696428 ], [ -95.522177034834655, 29.579973154632984 ], [ -95.522348034882086, 29.580005154786559 ], [ -95.52270603487635, 29.58007215473183 ], [ -95.522933034327124, 29.580114154634419 ], [ -95.523193034416224, 29.580190155348753 ], [ -95.523431034187837, 29.580261155215304 ], [ -95.524032035127377, 29.580535154677118 ], [ -95.524627034687427, 29.580904155002287 ], [ -95.525023034951275, 29.581255154915766 ], [ -95.525461035361587, 29.581742155041578 ], [ -95.525870035191417, 29.582376155785052 ], [ -95.526134034976351, 29.583244155450252 ], [ -95.526181035974489, 29.583563155755062 ], [ -95.526197035303568, 29.583674155588611 ], [ -95.528479036082388, 29.583622155887802 ], [ -95.529136036436356, 29.583553155778766 ], [ -95.530188036129644, 29.583397155799805 ], [ -95.531365036328424, 29.583359155405645 ], [ -95.533249037616685, 29.583312155488226 ], [ -95.535421038175144, 29.583259155432611 ], [ -95.537659038008215, 29.583205154851161 ], [ -95.537845038236981, 29.583215155076562 ], [ -95.538443038426877, 29.58320115525196 ], [ -95.540982038772583, 29.583178154556581 ], [ -95.541498039458688, 29.583169155267115 ], [ -95.541567038995439, 29.583168154562138 ], [ -95.541648039412934, 29.58316615523448 ], [ -95.543483039465713, 29.583134154981519 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1457, "Tract": "48157671001", "Area_SqMi": 1.9257426450838935, "total_2009": 275, "total_2010": 328, "total_2011": 441, "total_2012": 370, "total_2013": 415, "total_2014": 401, "total_2015": 445, "total_2016": 504, "total_2017": 541, "total_2018": 535, "total_2019": 507, "total_2020": 591, "age1": 321, "age2": 332, "age3": 158, "earn1": 241, "earn2": 359, "earn3": 211, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 9, "naics_s05": 12, "naics_s06": 9, "naics_s07": 155, "naics_s08": 82, "naics_s09": 11, "naics_s10": 32, "naics_s11": 2, "naics_s12": 70, "naics_s13": 0, "naics_s14": 21, "naics_s15": 0, "naics_s16": 204, "naics_s17": 4, "naics_s18": 196, "naics_s19": 3, "naics_s20": 0, "race1": 507, "race2": 213, "race3": 5, "race4": 69, "race5": 4, "race6": 13, "ethnicity1": 570, "ethnicity2": 241, "edu1": 95, "edu2": 141, "edu3": 146, "edu4": 108, "Shape_Length": 31263.319113867314, "Shape_Area": 53686409.003461763, "total_2021": 669, "total_2022": 811 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.564498044463448, 29.566106150843957 ], [ -95.564652044968781, 29.565932150847591 ], [ -95.5642570439568, 29.565467150862972 ], [ -95.563709043823479, 29.564820150532547 ], [ -95.562455043954174, 29.563403150415695 ], [ -95.56233604382092, 29.56327815040407 ], [ -95.562157044066979, 29.56340014981409 ], [ -95.561782044155933, 29.563654150208496 ], [ -95.561092043128198, 29.563988150177501 ], [ -95.56036304317638, 29.564275150091014 ], [ -95.559656043407387, 29.564401150117654 ], [ -95.558977042811108, 29.564464150338374 ], [ -95.55836304258446, 29.56449115071247 ], [ -95.557801043036221, 29.564430150675442 ], [ -95.55712704274994, 29.56431415040554 ], [ -95.55655504268023, 29.564132150477253 ], [ -95.555678042522146, 29.563758150838517 ], [ -95.555628042374806, 29.563737150634001 ], [ -95.555568042548856, 29.563711150247613 ], [ -95.554727042373841, 29.56335315041915 ], [ -95.553139041229841, 29.562659150451964 ], [ -95.552216040815352, 29.562249150167336 ], [ -95.551657041480325, 29.562081150126637 ], [ -95.550942040384257, 29.561921150656882 ], [ -95.550433041076602, 29.561816150402613 ], [ -95.549881040893979, 29.561703150555324 ], [ -95.54933904044087, 29.561593150531753 ], [ -95.548716040218821, 29.561551150198532 ], [ -95.546392040156888, 29.561589150116962 ], [ -95.54616704001873, 29.561593150467285 ], [ -95.546109039157528, 29.561595150343702 ], [ -95.545088038988155, 29.561637150832762 ], [ -95.544079038616118, 29.561656150306941 ], [ -95.542927038447985, 29.561665150386109 ], [ -95.539396037869651, 29.561595150494192 ], [ -95.539404037467619, 29.56168015086476 ], [ -95.539436037940987, 29.562043150642804 ], [ -95.539414037974637, 29.562260150471371 ], [ -95.539365037652232, 29.562495150439187 ], [ -95.539264037924738, 29.562874151112883 ], [ -95.539158038025093, 29.563036150982363 ], [ -95.539000037678179, 29.563151150612562 ], [ -95.538229037393322, 29.563466151287169 ], [ -95.538388038067481, 29.563743150896123 ], [ -95.53843903819218, 29.563942151510094 ], [ -95.538492037969462, 29.564178151089653 ], [ -95.538467037508426, 29.564427151292453 ], [ -95.538522038189797, 29.564780150897086 ], [ -95.538643037821615, 29.565035151384482 ], [ -95.538857038041016, 29.565953151318428 ], [ -95.539049037678438, 29.566630151331726 ], [ -95.539256037690961, 29.566827151308157 ], [ -95.539534037979507, 29.56697315204902 ], [ -95.540167038613689, 29.567238151760936 ], [ -95.540567038162948, 29.567400152228178 ], [ -95.540831038161187, 29.567523151763233 ], [ -95.541097038243876, 29.567710152145938 ], [ -95.541236038854223, 29.568017151557235 ], [ -95.541382038831898, 29.568586152079213 ], [ -95.540674038719018, 29.568685151978425 ], [ -95.540345037987876, 29.568791151737535 ], [ -95.540264038080508, 29.568846152077786 ], [ -95.54024303830316, 29.568982152119514 ], [ -95.54020003884429, 29.570238151999462 ], [ -95.540179038998744, 29.570486152547812 ], [ -95.540069038519462, 29.570805152882542 ], [ -95.539655037872706, 29.570723152913864 ], [ -95.539421038012605, 29.570705152536775 ], [ -95.539195038032304, 29.570809152391956 ], [ -95.53891303852329, 29.570954152569694 ], [ -95.538800038461446, 29.571084152733629 ], [ -95.538732038393903, 29.571341152285022 ], [ -95.538571038616752, 29.571675152795546 ], [ -95.538599038622493, 29.571794152473302 ], [ -95.538644038436075, 29.572091152654924 ], [ -95.538854038387072, 29.572524153023213 ], [ -95.539139038243377, 29.573008152883002 ], [ -95.539305038355693, 29.573341153460731 ], [ -95.539365038734275, 29.57343315340859 ], [ -95.539425038444151, 29.573488152893965 ], [ -95.539510038931368, 29.573529153393714 ], [ -95.539717038874187, 29.573550153142534 ], [ -95.539812038403738, 29.573577152671746 ], [ -95.540005038450019, 29.573729153409964 ], [ -95.540421038442588, 29.573985153360297 ], [ -95.541240038700053, 29.574515153424297 ], [ -95.542576039150362, 29.575394153597902 ], [ -95.542702039778803, 29.575529153234498 ], [ -95.542759038984883, 29.57573515311763 ], [ -95.542898039963816, 29.577072153462549 ], [ -95.543100039847701, 29.578060153752059 ], [ -95.543422039457241, 29.579639154476666 ], [ -95.543436039576108, 29.579942154368855 ], [ -95.54348203971918, 29.583033155077548 ], [ -95.543483039465713, 29.583134154981519 ], [ -95.545002040254758, 29.583107154868898 ], [ -95.546338040816451, 29.583061155050796 ], [ -95.549619041572896, 29.582992154833757 ], [ -95.551126042073562, 29.582936154953433 ], [ -95.551433042149739, 29.582925154911916 ], [ -95.551941041617795, 29.582924154961333 ], [ -95.552558042035344, 29.582913154520412 ], [ -95.552853042011819, 29.582891154399974 ], [ -95.553350042627713, 29.582875154934754 ], [ -95.553896042414237, 29.582869154700884 ], [ -95.554719042268658, 29.582855154059825 ], [ -95.555736043120206, 29.582836154134377 ], [ -95.556539043097402, 29.582807154018973 ], [ -95.557022043413582, 29.582787154524137 ], [ -95.557476043450947, 29.582768154486743 ], [ -95.557541043231268, 29.582766154394971 ], [ -95.558240044104323, 29.582747154474397 ], [ -95.558836044307668, 29.582722154053517 ], [ -95.559652044028184, 29.582699154704681 ], [ -95.55991304405795, 29.58271515400347 ], [ -95.560960043928148, 29.582695154641328 ], [ -95.56099704426488, 29.582694154372039 ], [ -95.562422044543069, 29.582666153944977 ], [ -95.564068045584605, 29.582637153775135 ], [ -95.564066045536066, 29.58249115371634 ], [ -95.564023045450369, 29.579568153437553 ], [ -95.563998044794005, 29.575884153117627 ], [ -95.563986044456584, 29.575068152254811 ], [ -95.563984045055747, 29.574950152574907 ], [ -95.563931045165759, 29.574327152858409 ], [ -95.563920044521581, 29.573469152056017 ], [ -95.563933044811719, 29.573396151835453 ], [ -95.563948044321833, 29.573312152564391 ], [ -95.564099045121338, 29.57245415212639 ], [ -95.563897044148831, 29.569720151049058 ], [ -95.563888044681931, 29.569601151758224 ], [ -95.563844044684132, 29.567756150867659 ], [ -95.56384204455847, 29.567638150967149 ], [ -95.563958044192702, 29.56671515046369 ], [ -95.564112044036591, 29.566495151236968 ], [ -95.564274044620078, 29.566289151001712 ], [ -95.564459044234326, 29.566150150457638 ], [ -95.564498044463448, 29.566106150843957 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1458, "Tract": "48157670902", "Area_SqMi": 4.1342355108711804, "total_2009": 36, "total_2010": 69, "total_2011": 80, "total_2012": 125, "total_2013": 119, "total_2014": 104, "total_2015": 91, "total_2016": 33, "total_2017": 24, "total_2018": 67, "total_2019": 60, "total_2020": 54, "age1": 929, "age2": 958, "age3": 185, "earn1": 603, "earn2": 1065, "earn3": 404, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 16, "naics_s08": 2014, "naics_s09": 0, "naics_s10": 5, "naics_s11": 0, "naics_s12": 19, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 0, "naics_s19": 3, "naics_s20": 0, "race1": 943, "race2": 887, "race3": 21, "race4": 165, "race5": 9, "race6": 47, "ethnicity1": 1466, "ethnicity2": 606, "edu1": 241, "edu2": 319, "edu3": 355, "edu4": 228, "Shape_Length": 51778.562050282686, "Shape_Area": 115255410.22829492, "total_2021": 54, "total_2022": 2072 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.506867030057009, 29.56497315203573 ], [ -95.50682302919968, 29.563903151876563 ], [ -95.506783029718008, 29.561528151772386 ], [ -95.506733029561062, 29.559382151700397 ], [ -95.506664029035761, 29.557934150664185 ], [ -95.506604029531815, 29.557336151034264 ], [ -95.506500028893186, 29.556793151193546 ], [ -95.506438029037653, 29.55646915096214 ], [ -95.506396029445469, 29.556259150932405 ], [ -95.506276029010039, 29.555669150806921 ], [ -95.506092028994729, 29.554947150172108 ], [ -95.505858028518418, 29.554265150177038 ], [ -95.505477029366389, 29.553305150376705 ], [ -95.50535102899488, 29.553061150393326 ], [ -95.505292028684778, 29.552943149950796 ], [ -95.505226028283928, 29.552811150088914 ], [ -95.50484302848227, 29.552045149549365 ], [ -95.504472028531566, 29.551438150059855 ], [ -95.504168028693002, 29.55079614919277 ], [ -95.503611027987958, 29.549626149343826 ], [ -95.5034160280522, 29.549259149657612 ], [ -95.503127027966642, 29.54871614886315 ], [ -95.502391028001412, 29.547205148874401 ], [ -95.501713028065396, 29.545403148487377 ], [ -95.501287027637844, 29.543292148497944 ], [ -95.501345027340918, 29.540425147729291 ], [ -95.501906027350515, 29.538391146742121 ], [ -95.502479027255077, 29.537067147055126 ], [ -95.502632027772563, 29.53669014688349 ], [ -95.502771027810098, 29.536371147024088 ], [ -95.50289902755911, 29.536102146967611 ], [ -95.503315027794429, 29.535254146288981 ], [ -95.502450027023954, 29.535275146150955 ], [ -95.502410027556195, 29.535276146128517 ], [ -95.5011330272538, 29.535307146576599 ], [ -95.498953025979986, 29.535359146348696 ], [ -95.497901026579214, 29.53538514668649 ], [ -95.497578025891912, 29.535393146854602 ], [ -95.496122025279519, 29.535457146977954 ], [ -95.495825026106473, 29.535471146601715 ], [ -95.495176025440315, 29.535527146755701 ], [ -95.495118025617174, 29.535532146395752 ], [ -95.494233024748269, 29.535611146979978 ], [ -95.494152025637575, 29.535633146418913 ], [ -95.494040024722494, 29.535638146760771 ], [ -95.493901025271768, 29.535639146893228 ], [ -95.493601024827285, 29.535642146696087 ], [ -95.492863025319636, 29.53565014720186 ], [ -95.492334025202084, 29.535660147260771 ], [ -95.492209024512434, 29.535663146771867 ], [ -95.491941025042792, 29.535668146926643 ], [ -95.489065024452842, 29.535726146638979 ], [ -95.488782023654522, 29.53571314681372 ], [ -95.488839023810698, 29.535730147447339 ], [ -95.487709023661495, 29.535749147474164 ], [ -95.486655023336056, 29.535771147063464 ], [ -95.486018023445354, 29.535783146837851 ], [ -95.485662022764188, 29.53577414695776 ], [ -95.483697022630608, 29.535831147246824 ], [ -95.482861022100394, 29.535852146964729 ], [ -95.48266302179772, 29.535855147103725 ], [ -95.482173021870366, 29.535865147313032 ], [ -95.482042022558161, 29.535863147400388 ], [ -95.480825021411476, 29.53589114776215 ], [ -95.480284021334612, 29.535907147418722 ], [ -95.479903021474982, 29.535897147297657 ], [ -95.479641021281807, 29.535880147724061 ], [ -95.47960302103445, 29.535877147675027 ], [ -95.479441021695692, 29.535851146945468 ], [ -95.479263020943165, 29.535818147636473 ], [ -95.478972021756064, 29.53576314709813 ], [ -95.478772021127639, 29.535724147078124 ], [ -95.478448021345969, 29.535669147321983 ], [ -95.478360021069705, 29.535655147646324 ], [ -95.478200021462754, 29.535638147345676 ], [ -95.478152021204579, 29.535645147056279 ], [ -95.47800702112194, 29.535631147711577 ], [ -95.477797020563742, 29.535627147307554 ], [ -95.47693902042424, 29.535644147130661 ], [ -95.475364020306955, 29.535660147754839 ], [ -95.474935019793321, 29.53567214750295 ], [ -95.474410020467133, 29.535687147904515 ], [ -95.473804020150695, 29.535697147458997 ], [ -95.473009019680703, 29.535718147836167 ], [ -95.472228019476177, 29.535729147300529 ], [ -95.471308019726337, 29.535747147948108 ], [ -95.471000019493701, 29.535755147730121 ], [ -95.470657019347016, 29.535759147398213 ], [ -95.470182019405343, 29.535768147431632 ], [ -95.468877018977366, 29.535798147975605 ], [ -95.468410018548923, 29.535809147557458 ], [ -95.467789018266572, 29.535817147562192 ], [ -95.466593017726609, 29.535843147792662 ], [ -95.464969017932972, 29.535877148058837 ], [ -95.462572017591242, 29.535938148241812 ], [ -95.461273017110742, 29.535979147933773 ], [ -95.459687016128527, 29.536007148201062 ], [ -95.458640015641734, 29.53603114816266 ], [ -95.457035015526543, 29.536057147789073 ], [ -95.456535015119684, 29.536066148225633 ], [ -95.455576014874055, 29.536083147952308 ], [ -95.455366015412835, 29.536087148156966 ], [ -95.455393015069077, 29.536188148099452 ], [ -95.455487015176573, 29.536815148759615 ], [ -95.455770015449829, 29.538332148863695 ], [ -95.456022015705798, 29.539482148541374 ], [ -95.456042015601867, 29.539542149138413 ], [ -95.456057015216459, 29.539588149084437 ], [ -95.456116015372316, 29.539762148503698 ], [ -95.456387015563863, 29.540367149291058 ], [ -95.456645016270201, 29.540806149523409 ], [ -95.456802015645877, 29.540955149382484 ], [ -95.456890016372526, 29.54102614941408 ], [ -95.457016015991869, 29.541070149313324 ], [ -95.457167016331283, 29.541098149618971 ], [ -95.45758801586453, 29.541087148786072 ], [ -95.458569016691072, 29.541037149464543 ], [ -95.458734016226344, 29.541015149351551 ], [ -95.459700017088608, 29.540888149074124 ], [ -95.460159016399359, 29.540855149332423 ], [ -95.460738017042772, 29.540850148733412 ], [ -95.460893016698961, 29.540845148898313 ], [ -95.461687016955324, 29.540817149258753 ], [ -95.462347017017748, 29.540739148652303 ], [ -95.462536017546185, 29.540701148603063 ], [ -95.462800017117232, 29.540591148616535 ], [ -95.463032017921009, 29.540508148816372 ], [ -95.46314901736848, 29.540492149204042 ], [ -95.463190017471348, 29.540486148541479 ], [ -95.463290017049047, 29.540503148412554 ], [ -95.463378017433001, 29.540541148817589 ], [ -95.463485017345633, 29.540646148615391 ], [ -95.46352301712335, 29.540745149206838 ], [ -95.463542017203508, 29.540866148673633 ], [ -95.463529017662339, 29.541003148703236 ], [ -95.463490017541417, 29.541114148583539 ], [ -95.463435017570575, 29.541272149131839 ], [ -95.463360017174807, 29.541454148597879 ], [ -95.463096017396197, 29.542312149213707 ], [ -95.462867017257722, 29.542984149127633 ], [ -95.462838017756098, 29.543070149704093 ], [ -95.462769017157612, 29.543488149622217 ], [ -95.462738017330352, 29.54387914967003 ], [ -95.462832017227626, 29.544472150056801 ], [ -95.462952017568156, 29.545336150258027 ], [ -95.463093017908733, 29.546645149778158 ], [ -95.463148017877714, 29.547155149790605 ], [ -95.463198017881254, 29.548348150333624 ], [ -95.463186017877135, 29.548480150397967 ], [ -95.463255017560996, 29.549025150390218 ], [ -95.463387018000674, 29.549750150526059 ], [ -95.463514017670306, 29.551653151160558 ], [ -95.463570017911294, 29.552076151041433 ], [ -95.46361401838945, 29.552169150888748 ], [ -95.463671017634113, 29.552527151740744 ], [ -95.463747018242088, 29.552796151427422 ], [ -95.463860018088596, 29.553038151480109 ], [ -95.463904017779797, 29.553302151492616 ], [ -95.463878018205975, 29.553719151574771 ], [ -95.463841018216669, 29.554313151855155 ], [ -95.463873018361767, 29.55447815144376 ], [ -95.463898018175882, 29.554533151798395 ], [ -95.463955018078451, 29.554605151989289 ], [ -95.464099018572142, 29.554726151563585 ], [ -95.464288018091295, 29.55485815213353 ], [ -95.464615018978776, 29.554995151451148 ], [ -95.46504301871424, 29.555143151730771 ], [ -95.465797018570257, 29.555330151555289 ], [ -95.46639501869808, 29.555489151421252 ], [ -95.466904018917987, 29.555654151505223 ], [ -95.467483019242067, 29.555819151892109 ], [ -95.46787301975067, 29.555962151891848 ], [ -95.468256019859638, 29.556138152299138 ], [ -95.46893602005477, 29.556533152298698 ], [ -95.469376019619375, 29.556770151585802 ], [ -95.470816019707129, 29.557209151769513 ], [ -95.471602020180853, 29.557467152060834 ], [ -95.471803020143255, 29.557506151830001 ], [ -95.472067021015803, 29.557528152126618 ], [ -95.472438020195497, 29.557522152191854 ], [ -95.473382020980694, 29.557384151814126 ], [ -95.473816020625748, 29.557274151735673 ], [ -95.474363020801732, 29.557093151613142 ], [ -95.474897021000203, 29.55676315203349 ], [ -95.475488020837702, 29.556322151690477 ], [ -95.476865021308484, 29.555349151322357 ], [ -95.477229021860509, 29.555233151046906 ], [ -95.477506022241286, 29.55517315181142 ], [ -95.477669022193197, 29.555162151210787 ], [ -95.477933021923832, 29.555195151014644 ], [ -95.478179021933116, 29.555277151611019 ], [ -95.478644022248275, 29.555469151280871 ], [ -95.479852022382275, 29.556079151538675 ], [ -95.480116022756064, 29.556195151685497 ], [ -95.480462022580653, 29.556403151156783 ], [ -95.4815690225644, 29.557338151884345 ], [ -95.482179022660702, 29.557931151670264 ], [ -95.482601023156434, 29.558503152060329 ], [ -95.483035023158578, 29.558975152006894 ], [ -95.4834630235557, 29.559349152405463 ], [ -95.483941023910788, 29.559712152433825 ], [ -95.484916023889312, 29.560162152354707 ], [ -95.485149023623933, 29.560289152343739 ], [ -95.485570024001575, 29.560574151874963 ], [ -95.485903024723129, 29.560750152084328 ], [ -95.486702023966657, 29.561052151881668 ], [ -95.48701102453029, 29.561217152279472 ], [ -95.487464024207497, 29.561618152326005 ], [ -95.4878600244258, 29.561893152054701 ], [ -95.488137024448335, 29.562058152390005 ], [ -95.489162024805154, 29.562470152827657 ], [ -95.489860024959313, 29.562651152426064 ], [ -95.490885025369295, 29.562991152144111 ], [ -95.491231025317376, 29.563079152168388 ], [ -95.491370025872868, 29.563095152279001 ], [ -95.491627025548439, 29.563057152340892 ], [ -95.491778026264953, 29.563002152228421 ], [ -95.491967025588337, 29.562864152326256 ], [ -95.49226802561148, 29.562584152553722 ], [ -95.492463025691578, 29.562441152348654 ], [ -95.492595025943558, 29.562402152221583 ], [ -95.492860025566785, 29.562402152377675 ], [ -95.493797025931187, 29.562539151968476 ], [ -95.494124026898845, 29.56252815204839 ], [ -95.494476026545229, 29.562473152759356 ], [ -95.494734026784712, 29.562445152292952 ], [ -95.495300026693457, 29.562450151843546 ], [ -95.495626026607482, 29.562434151864299 ], [ -95.495847027166292, 29.562401151937028 ], [ -95.496280026871474, 29.562257151867705 ], [ -95.496570026837844, 29.562131152578665 ], [ -95.496771026885952, 29.562004151820695 ], [ -95.497142027584857, 29.561707152448896 ], [ -95.497494027124844, 29.56138815166106 ], [ -95.497720027620304, 29.56122315239157 ], [ -95.498003027787504, 29.561118151798841 ], [ -95.499109027482064, 29.560766151511917 ], [ -95.499405027625102, 29.5607111520412 ], [ -95.499524027177515, 29.560711151837435 ], [ -95.499650027409146, 29.560727151544963 ], [ -95.49985102807959, 29.560793152127779 ], [ -95.5000070277313, 29.560864151685173 ], [ -95.50007602821843, 29.560891152275413 ], [ -95.500415028228218, 29.561221151752424 ], [ -95.500817028383892, 29.561579151608335 ], [ -95.501310028186467, 29.562005152168279 ], [ -95.501371028079362, 29.562057151895917 ], [ -95.501804028800237, 29.562415151663046 ], [ -95.50294802832309, 29.563476152253951 ], [ -95.503313028380632, 29.56386715239146 ], [ -95.503746028729182, 29.564312152796081 ], [ -95.504048029461998, 29.564670152738689 ], [ -95.504337029287541, 29.564989152154148 ], [ -95.504463029160007, 29.565071152839902 ], [ -95.504582028840929, 29.565093152612459 ], [ -95.504675029080715, 29.565099152491932 ], [ -95.504865029759443, 29.565110152623429 ], [ -95.50528702897185, 29.565069152127595 ], [ -95.505368029607297, 29.565061152444482 ], [ -95.505438029892574, 29.565059152428212 ], [ -95.505589029064311, 29.565055152618942 ], [ -95.506155029884027, 29.565061152075472 ], [ -95.506500029844787, 29.565028152268944 ], [ -95.506867030057009, 29.56497315203573 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1459, "Tract": "48201240802", "Area_SqMi": 5.1497175041905736, "total_2009": 1089, "total_2010": 1138, "total_2011": 1136, "total_2012": 1639, "total_2013": 1427, "total_2014": 1505, "total_2015": 1405, "total_2016": 1325, "total_2017": 1433, "total_2018": 1463, "total_2019": 1422, "total_2020": 1813, "age1": 740, "age2": 991, "age3": 302, "earn1": 551, "earn2": 1049, "earn3": 433, "naics_s01": 25, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 64, "naics_s06": 11, "naics_s07": 257, "naics_s08": 5, "naics_s09": 2, "naics_s10": 18, "naics_s11": 64, "naics_s12": 42, "naics_s13": 0, "naics_s14": 1119, "naics_s15": 0, "naics_s16": 60, "naics_s17": 0, "naics_s18": 294, "naics_s19": 56, "naics_s20": 0, "race1": 1057, "race2": 824, "race3": 15, "race4": 95, "race5": 4, "race6": 38, "ethnicity1": 1486, "ethnicity2": 547, "edu1": 315, "edu2": 348, "edu3": 419, "edu4": 211, "Shape_Length": 66925.017822483671, "Shape_Area": 143565310.18723807, "total_2021": 1919, "total_2022": 2033 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.405438025169516, 30.031121251093545 ], [ -95.405414024183131, 30.031028250778817 ], [ -95.405043024396278, 30.029545251040229 ], [ -95.404786024570981, 30.0285482505336 ], [ -95.404403024062645, 30.02706725023182 ], [ -95.404367024486405, 30.026926250512837 ], [ -95.404295024470002, 30.026646250210163 ], [ -95.404113023701555, 30.026680249924809 ], [ -95.403841024335321, 30.026730250521133 ], [ -95.403599023603292, 30.026774249899933 ], [ -95.402528024246138, 30.026971250368089 ], [ -95.40207302375741, 30.027028250663236 ], [ -95.401225023643391, 30.027060250688404 ], [ -95.400516023082844, 30.027041250240362 ], [ -95.400030022741973, 30.027009250771084 ], [ -95.399150022410709, 30.026854250725631 ], [ -95.398681023175016, 30.02674125024155 ], [ -95.398221023116392, 30.026620250559795 ], [ -95.397817022538661, 30.026489250841777 ], [ -95.397210022738051, 30.026260250367109 ], [ -95.396985021953938, 30.026168250290063 ], [ -95.39687602225564, 30.026123250629372 ], [ -95.396638021731391, 30.026014250477935 ], [ -95.394202021411033, 30.024901250456828 ], [ -95.392819021631638, 30.024319250114502 ], [ -95.392626021292415, 30.024237250201164 ], [ -95.39076802025258, 30.02345425028091 ], [ -95.388140019379449, 30.022348250407628 ], [ -95.386977018990123, 30.021858250061001 ], [ -95.386716019474846, 30.021750249508251 ], [ -95.386600019347171, 30.021709249949065 ], [ -95.38615601916932, 30.021549250082558 ], [ -95.386092018959388, 30.021523249866444 ], [ -95.385706018820613, 30.021406249980583 ], [ -95.385160019410336, 30.021271250050503 ], [ -95.384778018718237, 30.021192250176771 ], [ -95.381961018360698, 30.020700250100585 ], [ -95.380367017280264, 30.020422250249258 ], [ -95.380107017348237, 30.020377249706204 ], [ -95.380043017174501, 30.020108249757627 ], [ -95.379934017814165, 30.019741249901063 ], [ -95.379768017048704, 30.019311249376198 ], [ -95.379646017571446, 30.019054249393783 ], [ -95.379433017433371, 30.018682249384373 ], [ -95.379150017817494, 30.018189249403243 ], [ -95.378351016848995, 30.016835249458346 ], [ -95.378296016677183, 30.016725249211412 ], [ -95.377887017114645, 30.016044249434525 ], [ -95.377832016496157, 30.01593524899997 ], [ -95.377528016994219, 30.015410249373566 ], [ -95.377461016708409, 30.015309248871791 ], [ -95.377241016632141, 30.014905248390164 ], [ -95.377184016668011, 30.014814249131238 ], [ -95.376424016752381, 30.013523248460213 ], [ -95.376360016181394, 30.013398248841781 ], [ -95.376264016335, 30.013238248186386 ], [ -95.375923016783872, 30.01267924804527 ], [ -95.375581015950146, 30.012097247927819 ], [ -95.375261016033917, 30.011552248240914 ], [ -95.375224015700397, 30.01150524832947 ], [ -95.375180015952353, 30.011421248192509 ], [ -95.375116015879442, 30.011311248016185 ], [ -95.374970015474133, 30.011059247780423 ], [ -95.37493401569256, 30.011005248084963 ], [ -95.374863015420601, 30.011043248398277 ], [ -95.374743016032369, 30.011093247744135 ], [ -95.374635015684319, 30.011115248337095 ], [ -95.374452015520788, 30.01117024804817 ], [ -95.373941015415738, 30.011412248121342 ], [ -95.373865015224268, 30.011429248615798 ], [ -95.37382101610649, 30.011418247952282 ], [ -95.373758015325109, 30.01136824867746 ], [ -95.3737200157057, 30.011319248284977 ], [ -95.373631015553315, 30.011270248504591 ], [ -95.373530015492548, 30.011253248392634 ], [ -95.373461015931255, 30.011226248477538 ], [ -95.373353015651631, 30.011127248186309 ], [ -95.373151015264568, 30.011000247825297 ], [ -95.373056015132633, 30.010956248489084 ], [ -95.372848015735954, 30.010891248203542 ], [ -95.372778015615353, 30.010902248079475 ], [ -95.372702015733495, 30.01092424829131 ], [ -95.372443014943087, 30.011067248504979 ], [ -95.372380015777736, 30.011116248681617 ], [ -95.372323015606554, 30.011193248622419 ], [ -95.372279015059618, 30.011226247945213 ], [ -95.372222015468765, 30.011243247947117 ], [ -95.37211501477384, 30.011237247994817 ], [ -95.372008015598766, 30.011193247900007 ], [ -95.37190001480225, 30.01118824791677 ], [ -95.371805014866808, 30.01121524842852 ], [ -95.371742015011435, 30.011270247836315 ], [ -95.371338015080511, 30.011287248414963 ], [ -95.370776015282743, 30.011243248623128 ], [ -95.370416014967617, 30.011266248649399 ], [ -95.370068014794185, 30.011299248686107 ], [ -95.369847015022415, 30.011337248506958 ], [ -95.369449014512597, 30.011370248780391 ], [ -95.369171013989813, 30.011381248421255 ], [ -95.368925014860451, 30.011354248570278 ], [ -95.368748014358331, 30.011349248463521 ], [ -95.368489014025144, 30.011354248067743 ], [ -95.368249014634713, 30.011409248314621 ], [ -95.368129013843244, 30.01147024804721 ], [ -95.368041014707728, 30.011541248042779 ], [ -95.367971013765953, 30.011635248914178 ], [ -95.367902014268324, 30.011756248155368 ], [ -95.367858013837747, 30.011849248750359 ], [ -95.367820013932473, 30.011959248568363 ], [ -95.367750014603487, 30.012053248464866 ], [ -95.367573013829642, 30.012240248537662 ], [ -95.367409014563236, 30.012366248803986 ], [ -95.36733301371153, 30.012399248628899 ], [ -95.367100014014397, 30.012416248296486 ], [ -95.366778013728066, 30.012471248791851 ], [ -95.366279013494051, 30.012526248316277 ], [ -95.366152013704053, 30.012548249049164 ], [ -95.366083014066675, 30.012576248545557 ], [ -95.365982014028134, 30.012675248754441 ], [ -95.365811013937403, 30.01287324906934 ], [ -95.365761013255835, 30.012955249229737 ], [ -95.365710013406002, 30.013181248459937 ], [ -95.365660013682344, 30.013467248510768 ], [ -95.365584013517235, 30.013654248964023 ], [ -95.365471013927817, 30.013797248765588 ], [ -95.365395013656524, 30.013852249181422 ], [ -95.365313013398463, 30.01389624886637 ], [ -95.365136013957923, 30.013951248631436 ], [ -95.364485013732619, 30.014072248773143 ], [ -95.364207013220678, 30.014182249370116 ], [ -95.363784013335135, 30.014270249396475 ], [ -95.363780012940808, 30.014290249121597 ], [ -95.36375101272445, 30.014318248810838 ], [ -95.363633013004616, 30.01467624882396 ], [ -95.363547012898394, 30.014855249474408 ], [ -95.363357013163906, 30.015451249567302 ], [ -95.363073013535271, 30.015893249266174 ], [ -95.362456013256974, 30.016826249646396 ], [ -95.362384012526817, 30.017093249701102 ], [ -95.362303013345496, 30.017247249483614 ], [ -95.36161701243482, 30.017116249979676 ], [ -95.359689012351978, 30.016747249906366 ], [ -95.357618011900584, 30.016381249574405 ], [ -95.357416011869404, 30.016346249692052 ], [ -95.354946010701937, 30.015903249877923 ], [ -95.353388010538779, 30.015629250045318 ], [ -95.353005010331302, 30.015555249953046 ], [ -95.352811010487827, 30.015524250237316 ], [ -95.352235010377399, 30.01542624943464 ], [ -95.350889009591796, 30.015207250133788 ], [ -95.349985010224657, 30.015040250114758 ], [ -95.346686008962536, 30.014450249785895 ], [ -95.344162008335203, 30.014034249702426 ], [ -95.340482007461858, 30.01341224966303 ], [ -95.339111006864258, 30.013171249505795 ], [ -95.33804100665445, 30.01297324938341 ], [ -95.333776005024731, 30.012205249743012 ], [ -95.330946004903041, 30.011691250082674 ], [ -95.330129004339625, 30.011543250215034 ], [ -95.330117004725849, 30.011641250241357 ], [ -95.330111004400536, 30.011782249919808 ], [ -95.33011200408842, 30.012015250046257 ], [ -95.330114004493566, 30.012243249989993 ], [ -95.330122004026649, 30.01237425034952 ], [ -95.330103004761867, 30.013195250152791 ], [ -95.330103004104743, 30.013520250438251 ], [ -95.330106004125611, 30.01469924998338 ], [ -95.330115004745778, 30.016141250725376 ], [ -95.330115004445588, 30.016243251083228 ], [ -95.330116005037681, 30.016538250597751 ], [ -95.330114004936107, 30.017223250998576 ], [ -95.330101004649521, 30.017509250806182 ], [ -95.330057004441784, 30.017941250723073 ], [ -95.330022004423753, 30.018368251414437 ], [ -95.330007004346299, 30.018714251061816 ], [ -95.330015005135721, 30.020666251494411 ], [ -95.330016005139058, 30.020874251558649 ], [ -95.330011004474315, 30.021175251415524 ], [ -95.330016005229979, 30.022376251822944 ], [ -95.330013005374795, 30.022957252096191 ], [ -95.330014005353846, 30.023449252339059 ], [ -95.330015004698225, 30.023636252288757 ], [ -95.330020005357355, 30.025332252432829 ], [ -95.330012004615057, 30.025777252661872 ], [ -95.329899004673265, 30.028082253569043 ], [ -95.329888005095995, 30.028639253390047 ], [ -95.329894005121218, 30.028908253434253 ], [ -95.32992300542908, 30.029305253631406 ], [ -95.32999000502879, 30.029953253517785 ], [ -95.330037005613093, 30.030387253454464 ], [ -95.330043005157961, 30.030440253582963 ], [ -95.33004900551812, 30.030492253654117 ], [ -95.330246005419141, 30.03058225377189 ], [ -95.330541005646907, 30.030707253853095 ], [ -95.33078600532437, 30.030720253781745 ], [ -95.330930005775883, 30.030658254104114 ], [ -95.331152005125873, 30.030426253398545 ], [ -95.332055006026792, 30.029361253270228 ], [ -95.332560006249267, 30.029210253097144 ], [ -95.333255005606887, 30.029132253002704 ], [ -95.334607005953487, 30.029422253610058 ], [ -95.334722006686022, 30.029522252985689 ], [ -95.334998006336619, 30.029962253747708 ], [ -95.335263007158701, 30.030282253293183 ], [ -95.335533007064896, 30.030444253718706 ], [ -95.335983006499347, 30.030464253882457 ], [ -95.336225006545632, 30.030329253676339 ], [ -95.33633500667608, 30.030137253544471 ], [ -95.336685007193154, 30.02896225279046 ], [ -95.336814007262419, 30.028823252641189 ], [ -95.33702500656311, 30.028711253341154 ], [ -95.338102007756547, 30.028374253265049 ], [ -95.338613007221667, 30.028143252660808 ], [ -95.338964007386352, 30.028048253284521 ], [ -95.339291007213674, 30.02802725282498 ], [ -95.340261007973311, 30.028129253026147 ], [ -95.34083300835205, 30.028079252373725 ], [ -95.341073008422995, 30.028103252718701 ], [ -95.342060008554725, 30.028224252939388 ], [ -95.342335008610121, 30.028258252404655 ], [ -95.344378009238056, 30.028497252734898 ], [ -95.344660009192879, 30.028445252695512 ], [ -95.345503009229091, 30.028150252757442 ], [ -95.34579100954501, 30.028158252895569 ], [ -95.346637009041942, 30.028307252316754 ], [ -95.34722800975257, 30.028162253004773 ], [ -95.347679009962789, 30.028140252770594 ], [ -95.348028009906969, 30.028248252905605 ], [ -95.348660010345739, 30.028584252797813 ], [ -95.348908009720205, 30.028771252743415 ], [ -95.349060010114457, 30.028961252383354 ], [ -95.3491070102923, 30.028950252425247 ], [ -95.34930300968459, 30.029144252571665 ], [ -95.349543010013676, 30.029260252536183 ], [ -95.349856010355765, 30.029310252833152 ], [ -95.350021010691705, 30.029437252340358 ], [ -95.350144010362172, 30.029620252964374 ], [ -95.350305010501359, 30.030080252530023 ], [ -95.350337010096624, 30.031077252731784 ], [ -95.350488010087858, 30.031394253199817 ], [ -95.350673010449171, 30.031544253224897 ], [ -95.350813010837115, 30.031628253593471 ], [ -95.350977010418788, 30.031692253364149 ], [ -95.351834010460053, 30.031767253271582 ], [ -95.352136011124784, 30.031865253320415 ], [ -95.352362011342692, 30.031952252920338 ], [ -95.352606011682028, 30.032145252803048 ], [ -95.353225011422253, 30.032798253128689 ], [ -95.353683011212894, 30.033157253368703 ], [ -95.35400301118726, 30.033529253164154 ], [ -95.354196011264918, 30.033664253686403 ], [ -95.354349011505235, 30.033718253266809 ], [ -95.354597012229547, 30.033717253834837 ], [ -95.35470501207682, 30.033613253048692 ], [ -95.354777011619632, 30.033335253424791 ], [ -95.354871011585274, 30.03326525328303 ], [ -95.35506701226673, 30.033217253381014 ], [ -95.355248011622351, 30.033303253746862 ], [ -95.355643011898977, 30.033617253462705 ], [ -95.355977012120832, 30.033983253890202 ], [ -95.356663012396552, 30.034911253537121 ], [ -95.357641012714737, 30.035770254064868 ], [ -95.358192013109715, 30.036012254114535 ], [ -95.358759013180276, 30.036094253842826 ], [ -95.359172012946559, 30.036102253365041 ], [ -95.359621013593085, 30.036045254056862 ], [ -95.359848012765724, 30.035962253293111 ], [ -95.36091301367847, 30.035347253501392 ], [ -95.361964013605657, 30.034310253767636 ], [ -95.362730014162793, 30.033673253303245 ], [ -95.363161013838848, 30.033111253275482 ], [ -95.363553014398846, 30.032871252783373 ], [ -95.364976014054022, 30.032249252694612 ], [ -95.365280013926892, 30.032064253127466 ], [ -95.365738014617364, 30.031556252579051 ], [ -95.365924014638892, 30.031479252495984 ], [ -95.366047014774409, 30.031479252221985 ], [ -95.366245015134766, 30.031604252435031 ], [ -95.366612014820831, 30.032510253142028 ], [ -95.367350015237662, 30.033455253372107 ], [ -95.367430014629619, 30.033678253150846 ], [ -95.367453014695514, 30.033741252768429 ], [ -95.367496014851142, 30.033860253453565 ], [ -95.367792015328547, 30.034687252944696 ], [ -95.367903015604895, 30.034879253340467 ], [ -95.368808015037743, 30.03603425339282 ], [ -95.369255015414808, 30.036436253135339 ], [ -95.369710015633217, 30.03660125334175 ], [ -95.370314016347137, 30.036616253335925 ], [ -95.370409015646246, 30.036619253604915 ], [ -95.370858015763602, 30.036683253606988 ], [ -95.373991016754033, 30.037345253741623 ], [ -95.374711017477495, 30.037610253375121 ], [ -95.37580601742701, 30.038244253686038 ], [ -95.377262018218303, 30.039171253431334 ], [ -95.377696018197938, 30.039375254111132 ], [ -95.378061018395556, 30.039426254200823 ], [ -95.378349018181211, 30.039407254131341 ], [ -95.379312017978549, 30.039224253725308 ], [ -95.379976018536752, 30.039404253517809 ], [ -95.380177019099207, 30.039521253633247 ], [ -95.380322018964549, 30.039816254148157 ], [ -95.380550018394686, 30.040108254209233 ], [ -95.381315018503827, 30.04044125372921 ], [ -95.382135018956859, 30.040413253616286 ], [ -95.382309019407302, 30.040385253885617 ], [ -95.382422018956063, 30.040367254129407 ], [ -95.382540019036028, 30.040348253447377 ], [ -95.382620019250169, 30.040311253965946 ], [ -95.382758019440558, 30.040248253600193 ], [ -95.383100019471982, 30.039940253380312 ], [ -95.38380101995601, 30.038804253059503 ], [ -95.384141019890649, 30.038444253731821 ], [ -95.384518019738778, 30.038228253271416 ], [ -95.386005020208117, 30.037774253566266 ], [ -95.387068020231112, 30.037376252795259 ], [ -95.388319020447298, 30.036674253135448 ], [ -95.388850020329357, 30.036477252716647 ], [ -95.38921602028735, 30.036526253056952 ], [ -95.389889020916669, 30.036802253085536 ], [ -95.390330021542724, 30.036889253038826 ], [ -95.390741021081155, 30.036879253137442 ], [ -95.39137402142903, 30.036727253144857 ], [ -95.392129021939283, 30.036360253080943 ], [ -95.392839021276345, 30.036176253023996 ], [ -95.393616021656172, 30.036155252913307 ], [ -95.394117021655745, 30.036306252451222 ], [ -95.394405022383324, 30.036296252226872 ], [ -95.394703022276616, 30.036176252361773 ], [ -95.395259021814837, 30.035749252428868 ], [ -95.395482022668219, 30.035670252228634 ], [ -95.39575902219822, 30.035661252855249 ], [ -95.396048022855496, 30.035854252678778 ], [ -95.396412022837296, 30.035873252019645 ], [ -95.396858023147232, 30.035988252533258 ], [ -95.396884022188289, 30.035995252406401 ], [ -95.396974022243697, 30.035976251998541 ], [ -95.397531022579713, 30.035669252378991 ], [ -95.398128022633884, 30.035541252753813 ], [ -95.39864402322722, 30.035656252671686 ], [ -95.398711023323358, 30.03599225273015 ], [ -95.398859023630223, 30.036112252093883 ], [ -95.399081023574112, 30.036200252260631 ], [ -95.399285023210695, 30.036227252677651 ], [ -95.399737023457476, 30.036193252204239 ], [ -95.400001023163057, 30.036093252461157 ], [ -95.400157023991852, 30.035968252061981 ], [ -95.400339023599841, 30.035458252505048 ], [ -95.40056102401941, 30.035113252414845 ], [ -95.400747023572819, 30.034876252401901 ], [ -95.40110702378648, 30.034579251846285 ], [ -95.40235802362804, 30.033881251811909 ], [ -95.403521024308176, 30.033542251503366 ], [ -95.404264024197516, 30.033249251289288 ], [ -95.404342024558659, 30.033124251883894 ], [ -95.404393024328229, 30.032879251399368 ], [ -95.404419023963413, 30.031772251513754 ], [ -95.404526023926948, 30.031550251571847 ], [ -95.405078024902181, 30.031291251098946 ], [ -95.405243024882921, 30.031213251054471 ], [ -95.405438025169516, 30.031121251093545 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1460, "Tract": "48201421403", "Area_SqMi": 0.25248166947565209, "total_2009": 810, "total_2010": 757, "total_2011": 957, "total_2012": 989, "total_2013": 981, "total_2014": 899, "total_2015": 908, "total_2016": 952, "total_2017": 920, "total_2018": 959, "total_2019": 820, "total_2020": 738, "age1": 199, "age2": 383, "age3": 230, "earn1": 211, "earn2": 430, "earn3": 171, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 11, "naics_s05": 12, "naics_s06": 11, "naics_s07": 345, "naics_s08": 7, "naics_s09": 0, "naics_s10": 30, "naics_s11": 38, "naics_s12": 18, "naics_s13": 0, "naics_s14": 169, "naics_s15": 0, "naics_s16": 60, "naics_s17": 0, "naics_s18": 96, "naics_s19": 13, "naics_s20": 1, "race1": 629, "race2": 92, "race3": 14, "race4": 62, "race5": 0, "race6": 15, "ethnicity1": 342, "ethnicity2": 470, "edu1": 214, "edu2": 129, "edu3": 153, "edu4": 117, "Shape_Length": 10616.743809263144, "Shape_Area": 7038756.8182851346, "total_2021": 802, "total_2022": 812 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.493192032934431, 29.710936183013374 ], [ -95.493287033027414, 29.710837182820299 ], [ -95.493150032836382, 29.710188183083499 ], [ -95.493128032682392, 29.70906318231755 ], [ -95.493100032690037, 29.708186182525036 ], [ -95.493090032497634, 29.707271181974942 ], [ -95.493074032672155, 29.706398181493483 ], [ -95.493064032516884, 29.705823182014615 ], [ -95.493057032668915, 29.705458181521834 ], [ -95.491748031700212, 29.705469181774774 ], [ -95.490903031920112, 29.70547618213881 ], [ -95.489584031665871, 29.705501181914407 ], [ -95.488818031318189, 29.705511182214384 ], [ -95.487516030729083, 29.705526181711612 ], [ -95.486726030943558, 29.705537181636409 ], [ -95.485862030737124, 29.705535182192278 ], [ -95.484664030635514, 29.705535181876666 ], [ -95.484637030668793, 29.705535181741812 ], [ -95.484679030560656, 29.70735218212883 ], [ -95.484674030812315, 29.707731182051337 ], [ -95.484686030861269, 29.708265182970703 ], [ -95.484696030536341, 29.708556182487211 ], [ -95.484690030706759, 29.709181182877121 ], [ -95.484698030682424, 29.709359182800899 ], [ -95.484726030253839, 29.710029182625743 ], [ -95.484718030126643, 29.710100182844705 ], [ -95.48472403102042, 29.710984183465143 ], [ -95.484732030115254, 29.711909183293965 ], [ -95.48476803033715, 29.712801183032255 ], [ -95.486831031215402, 29.712783183693695 ], [ -95.488900031636163, 29.712751183411097 ], [ -95.48992203192671, 29.712743183291554 ], [ -95.490743032604215, 29.712750183473858 ], [ -95.490989032074353, 29.71274718345283 ], [ -95.491867031945816, 29.71272918364226 ], [ -95.492258032491378, 29.712721182911174 ], [ -95.493083033083792, 29.712703183474957 ], [ -95.493076032622383, 29.712460183015658 ], [ -95.493054032756731, 29.711678182505473 ], [ -95.493060032375183, 29.711139182525898 ], [ -95.493192032934431, 29.710936183013374 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1461, "Tract": "48201421402", "Area_SqMi": 0.062243365307926596, "total_2009": 50, "total_2010": 44, "total_2011": 53, "total_2012": 50, "total_2013": 50, "total_2014": 64, "total_2015": 60, "total_2016": 57, "total_2017": 55, "total_2018": 49, "total_2019": 49, "total_2020": 37, "age1": 8, "age2": 16, "age3": 21, "earn1": 0, "earn2": 19, "earn3": 26, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 45, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 39, "race2": 1, "race3": 1, "race4": 4, "race5": 0, "race6": 0, "ethnicity1": 13, "ethnicity2": 32, "edu1": 16, "edu2": 12, "edu3": 4, "edu4": 5, "Shape_Length": 5274.2955701186729, "Shape_Area": 1735238.4942005866, "total_2021": 48, "total_2022": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.4889680322744, 29.716387183639792 ], [ -95.488936032067656, 29.714642184054533 ], [ -95.488937031762376, 29.714450183265427 ], [ -95.488906031513167, 29.713339183450728 ], [ -95.488900031636163, 29.712751183411097 ], [ -95.486831031215402, 29.712783183693695 ], [ -95.48476803033715, 29.712801183032255 ], [ -95.484778030398985, 29.713232183359125 ], [ -95.484782030332894, 29.713746183772539 ], [ -95.484790031219333, 29.714564183637787 ], [ -95.484791031077478, 29.714697183863006 ], [ -95.484798031044164, 29.715444183646635 ], [ -95.484807030509145, 29.716429184293276 ], [ -95.485068030408726, 29.716426184204717 ], [ -95.486607031128955, 29.716409184343686 ], [ -95.486784031176953, 29.716408183808163 ], [ -95.487021030947986, 29.716405184052203 ], [ -95.487766032014278, 29.716398184151483 ], [ -95.488745031813593, 29.716387184245171 ], [ -95.4889680322744, 29.716387183639792 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1462, "Tract": "48201423201", "Area_SqMi": 0.75474356477272109, "total_2009": 140, "total_2010": 74, "total_2011": 43, "total_2012": 21, "total_2013": 23, "total_2014": 131, "total_2015": 144, "total_2016": 149, "total_2017": 137, "total_2018": 163, "total_2019": 203, "total_2020": 164, "age1": 17, "age2": 112, "age3": 56, "earn1": 40, "earn2": 97, "earn3": 48, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 95, "naics_s05": 0, "naics_s06": 3, "naics_s07": 30, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 30, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 6, "naics_s19": 3, "naics_s20": 0, "race1": 140, "race2": 19, "race3": 3, "race4": 17, "race5": 1, "race6": 5, "ethnicity1": 103, "ethnicity2": 82, "edu1": 52, "edu2": 42, "edu3": 53, "edu4": 21, "Shape_Length": 20507.817289363455, "Shape_Area": 21040958.82934235, "total_2021": 165, "total_2022": 185 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.556119046567403, 29.658469170361158 ], [ -95.555941046907904, 29.658292169838262 ], [ -95.55555304593382, 29.657935170090042 ], [ -95.554681046162202, 29.657126169315564 ], [ -95.553940045626746, 29.656464169652178 ], [ -95.553481045416163, 29.656076169182601 ], [ -95.552840045188574, 29.655532169215487 ], [ -95.552020044914258, 29.654836168916656 ], [ -95.550533045055758, 29.65362716893025 ], [ -95.55037204521399, 29.653494169315454 ], [ -95.550228044490723, 29.653563169305738 ], [ -95.550168044977838, 29.653592169537113 ], [ -95.549759044306967, 29.653789169603009 ], [ -95.545790043877119, 29.655667169569977 ], [ -95.545537044133027, 29.655780169645805 ], [ -95.543806042854413, 29.656231170214866 ], [ -95.542417043237677, 29.656300169510825 ], [ -95.538862042143236, 29.656332170132792 ], [ -95.537604041248557, 29.656345169998744 ], [ -95.536411041665176, 29.656307170207768 ], [ -95.536336041424576, 29.656305169987792 ], [ -95.536273041662511, 29.656303169737392 ], [ -95.536204041579666, 29.656351170069918 ], [ -95.53602604106544, 29.656457170444295 ], [ -95.536044040920771, 29.657084169919386 ], [ -95.536038041511603, 29.657309170434903 ], [ -95.536063041044358, 29.658211170529572 ], [ -95.536069040903072, 29.658321170409241 ], [ -95.536101040848465, 29.658903170884976 ], [ -95.536138041545371, 29.660728171499965 ], [ -95.536141041728087, 29.661289171117346 ], [ -95.536137041488317, 29.661724171677758 ], [ -95.536154041708045, 29.661724171072841 ], [ -95.536205041427962, 29.663566172018044 ], [ -95.536281041971549, 29.663778171756359 ], [ -95.536565041266627, 29.664188172194557 ], [ -95.536567041204677, 29.664309171883513 ], [ -95.536570041365366, 29.664588172106722 ], [ -95.536552042238526, 29.66473617167307 ], [ -95.536565042177045, 29.665659171860472 ], [ -95.536586041719744, 29.665834172147669 ], [ -95.536603041771443, 29.666005172210991 ], [ -95.536605041323654, 29.666025172508501 ], [ -95.536597041752557, 29.666064172158872 ], [ -95.536621041817952, 29.66655117249125 ], [ -95.536640042302267, 29.667309172342044 ], [ -95.536646041855434, 29.66793117287833 ], [ -95.536652042398572, 29.668585172265676 ], [ -95.536669042282156, 29.669364172443114 ], [ -95.536677041967465, 29.669734173137982 ], [ -95.536665042313871, 29.67008017310598 ], [ -95.536753042036224, 29.670393172994338 ], [ -95.537187042055777, 29.670009172624475 ], [ -95.53746404218036, 29.669706172447246 ], [ -95.53777904242925, 29.669289173209012 ], [ -95.537886042095977, 29.669036172891801 ], [ -95.538056042689036, 29.668893172817025 ], [ -95.53815004193882, 29.668843172266815 ], [ -95.538516042660291, 29.668805172958823 ], [ -95.538591042391431, 29.66880517233233 ], [ -95.538742042628428, 29.66877217251194 ], [ -95.539239042279632, 29.668712172859852 ], [ -95.539372042373088, 29.668679172789222 ], [ -95.539768042636354, 29.668514172911582 ], [ -95.53991904306497, 29.668481172690193 ], [ -95.540058043001693, 29.668464172115048 ], [ -95.540360042638056, 29.668459172727864 ], [ -95.540517042858326, 29.668486172492294 ], [ -95.540845043003586, 29.668624172609718 ], [ -95.540958043122856, 29.668651172276927 ], [ -95.541134043402678, 29.668662172639408 ], [ -95.541304043148301, 29.668657172654679 ], [ -95.54143704347446, 29.668624172363199 ], [ -95.541739042769379, 29.668508172082248 ], [ -95.542123043197222, 29.668388172827903 ], [ -95.54236804287244, 29.668278172826337 ], [ -95.542463043875571, 29.668278172108568 ], [ -95.542866043429029, 29.668223172804844 ], [ -95.543092043450756, 29.668124172477832 ], [ -95.543205043584322, 29.668041172649101 ], [ -95.543539043434521, 29.667832172528605 ], [ -95.543785043498559, 29.667701172245305 ], [ -95.544144043755821, 29.667365171722892 ], [ -95.544364044307741, 29.667096172177086 ], [ -95.544584043662738, 29.666761172426753 ], [ -95.544660043919919, 29.666717172117014 ], [ -95.545006043880278, 29.666629172160235 ], [ -95.545093043817104, 29.666573172255266 ], [ -95.545201044545152, 29.666502171558715 ], [ -95.545359043788636, 29.666365172219486 ], [ -95.545478043885836, 29.666139171706174 ], [ -95.545787044588991, 29.665689172063843 ], [ -95.546070044484125, 29.665337172071695 ], [ -95.546271043782355, 29.665238171428612 ], [ -95.547147044272393, 29.664919171225304 ], [ -95.547228044561308, 29.664837171518201 ], [ -95.547291044391599, 29.664666171283216 ], [ -95.547342044463761, 29.664336171496686 ], [ -95.547392044719018, 29.664199171760124 ], [ -95.547474044567679, 29.664078171700016 ], [ -95.547644044122748, 29.663985171022965 ], [ -95.548201045100498, 29.663718170844557 ], [ -95.548953044339044, 29.663358171519288 ], [ -95.549394045266595, 29.663160171243234 ], [ -95.549526044999212, 29.66308317116323 ], [ -95.549633044856421, 29.662990170759365 ], [ -95.549696044866735, 29.662885171060854 ], [ -95.549847045149662, 29.662522170799257 ], [ -95.549973044871209, 29.66218217091189 ], [ -95.550055044742095, 29.662050170566189 ], [ -95.550168045018964, 29.661923170900728 ], [ -95.550345044658812, 29.661808171042647 ], [ -95.550609045164137, 29.661670171124776 ], [ -95.550974044940887, 29.66152217108694 ], [ -95.551446045683562, 29.661363170240804 ], [ -95.551780045041454, 29.661297170218848 ], [ -95.552038045854971, 29.661220170995566 ], [ -95.552227045470872, 29.661121170325604 ], [ -95.552491045345661, 29.660928170254188 ], [ -95.552655045311454, 29.66077417043466 ], [ -95.552825045975553, 29.66063117025697 ], [ -95.55308904548059, 29.660500170093187 ], [ -95.553228045930226, 29.660373170361723 ], [ -95.553372045485688, 29.660300170113388 ], [ -95.553743046355237, 29.660110170798866 ], [ -95.553991045535511, 29.659880170726396 ], [ -95.55403304554757, 29.659843170111898 ], [ -95.554442046012383, 29.659466169862384 ], [ -95.554845045894382, 29.659246170316536 ], [ -95.555254045938852, 29.658955170102612 ], [ -95.555543046539611, 29.658765169780974 ], [ -95.555659045940914, 29.658691169549474 ], [ -95.55571804648136, 29.658654169874605 ], [ -95.55576004588292, 29.658635170217693 ], [ -95.555934046714398, 29.658556170259565 ], [ -95.556119046567403, 29.658469170361158 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1463, "Tract": "48201534203", "Area_SqMi": 1.638287739678512, "total_2009": 7204, "total_2010": 4844, "total_2011": 5357, "total_2012": 4992, "total_2013": 4955, "total_2014": 5390, "total_2015": 5781, "total_2016": 4767, "total_2017": 5003, "total_2018": 5350, "total_2019": 5272, "total_2020": 5272, "age1": 1360, "age2": 3543, "age3": 1291, "earn1": 753, "earn2": 1471, "earn3": 3970, "naics_s01": 0, "naics_s02": 11, "naics_s03": 61, "naics_s04": 1169, "naics_s05": 1218, "naics_s06": 888, "naics_s07": 73, "naics_s08": 948, "naics_s09": 57, "naics_s10": 159, "naics_s11": 247, "naics_s12": 317, "naics_s13": 8, "naics_s14": 254, "naics_s15": 138, "naics_s16": 209, "naics_s17": 112, "naics_s18": 284, "naics_s19": 41, "naics_s20": 0, "race1": 4525, "race2": 1018, "race3": 59, "race4": 513, "race5": 5, "race6": 74, "ethnicity1": 4176, "ethnicity2": 2018, "edu1": 1004, "edu2": 1256, "edu3": 1530, "edu4": 1044, "Shape_Length": 31461.716025742211, "Shape_Area": 45672658.224747293, "total_2021": 5253, "total_2022": 6194 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.555626056272033, 29.873585213964482 ], [ -95.555789056432545, 29.87352121343103 ], [ -95.555535055666112, 29.873388213521462 ], [ -95.555298055366833, 29.873282213848398 ], [ -95.555202055756169, 29.873237214096925 ], [ -95.554510055734482, 29.872929214183873 ], [ -95.553800055329177, 29.872607213770006 ], [ -95.553685055183706, 29.872542213425682 ], [ -95.551116055188018, 29.871392213342887 ], [ -95.55033505394303, 29.871053213928004 ], [ -95.550156053944505, 29.870969213167964 ], [ -95.548826054461671, 29.870396213138797 ], [ -95.548396053720211, 29.870211213607782 ], [ -95.547998053858919, 29.870001213771456 ], [ -95.545886053738144, 29.869077213525141 ], [ -95.544029052409158, 29.868312213378104 ], [ -95.543114052888001, 29.867910213520336 ], [ -95.543028052255551, 29.867871212832384 ], [ -95.542949052005781, 29.867835213110524 ], [ -95.541178051915352, 29.867029212622867 ], [ -95.540979051715055, 29.866938212718395 ], [ -95.540707052187742, 29.866815213033707 ], [ -95.537327051380913, 29.865277212626392 ], [ -95.534193049870183, 29.863851212318448 ], [ -95.53375105012168, 29.863687212290714 ], [ -95.533445049991627, 29.863574212191853 ], [ -95.530605048645569, 29.862303212724569 ], [ -95.529088048735588, 29.861615212504383 ], [ -95.527994048599183, 29.861144211972508 ], [ -95.525798047980416, 29.860135212181678 ], [ -95.524639046901484, 29.859583212245735 ], [ -95.524365047260247, 29.859438211993695 ], [ -95.524369047692232, 29.859534211888626 ], [ -95.524373047471357, 29.859651211742147 ], [ -95.524385046945923, 29.85997321242877 ], [ -95.524396047236095, 29.860895212701827 ], [ -95.524449047752086, 29.862344212549107 ], [ -95.524484047104636, 29.864060212575001 ], [ -95.524543047798289, 29.865559213439482 ], [ -95.524558047905629, 29.86618721369933 ], [ -95.524562047221863, 29.866516213680491 ], [ -95.524569047388596, 29.866570213576203 ], [ -95.524571047171278, 29.866676213680851 ], [ -95.524573047643628, 29.866762213951539 ], [ -95.524569048181235, 29.866837214012424 ], [ -95.524570048159532, 29.867071213218498 ], [ -95.524583047279137, 29.867151213619067 ], [ -95.524595048010667, 29.867813213556666 ], [ -95.524608048086847, 29.868383213633653 ], [ -95.524611047588763, 29.86855321414243 ], [ -95.524619047381464, 29.869041214110869 ], [ -95.52459904832979, 29.869635213960155 ], [ -95.524599048319288, 29.869979214086886 ], [ -95.52460004795833, 29.870282214165933 ], [ -95.524602047335392, 29.870351214727165 ], [ -95.52460504790028, 29.870550213909642 ], [ -95.52463404800946, 29.871509214609826 ], [ -95.524641047936669, 29.871837214960635 ], [ -95.52465204748556, 29.872104214667019 ], [ -95.524696047484156, 29.872644214904376 ], [ -95.524710048466147, 29.872939215117501 ], [ -95.524723047925619, 29.873379214577014 ], [ -95.524715047752252, 29.873825214718028 ], [ -95.524702047989109, 29.874517215136667 ], [ -95.52470904840645, 29.874625215598421 ], [ -95.524705047813725, 29.874731215230405 ], [ -95.524707048080359, 29.874943215430701 ], [ -95.524717047732238, 29.875152215003794 ], [ -95.524712048184071, 29.875177215658869 ], [ -95.524720048212458, 29.875257215382135 ], [ -95.524720048542122, 29.875306215697929 ], [ -95.524721047797613, 29.875789215172883 ], [ -95.524706048317682, 29.877077215250697 ], [ -95.525281048660247, 29.87722021592699 ], [ -95.525962048115119, 29.87736321600752 ], [ -95.526133048810479, 29.877407215714882 ], [ -95.526673048324454, 29.877609215755545 ], [ -95.526953048493098, 29.877715216073891 ], [ -95.527224049317994, 29.877781216175404 ], [ -95.527634049470635, 29.877798215472346 ], [ -95.527798049148927, 29.877770215712289 ], [ -95.528044049152285, 29.87769921524626 ], [ -95.528555049643373, 29.877496216071211 ], [ -95.528908049528965, 29.877369215486279 ], [ -95.529533049674612, 29.877227215423581 ], [ -95.529747048971785, 29.877232215880202 ], [ -95.529911049006429, 29.877254215676409 ], [ -95.530056049866417, 29.877298215688928 ], [ -95.530245050062803, 29.877381215670269 ], [ -95.530428049279237, 29.877485215254296 ], [ -95.530662049320199, 29.877722215182366 ], [ -95.530857050211196, 29.877953215741108 ], [ -95.531166049998802, 29.87835421533552 ], [ -95.531318049924479, 29.878519215590426 ], [ -95.531627049656677, 29.87888721592897 ], [ -95.531684050477523, 29.878942216221056 ], [ -95.53218105003269, 29.879426215513494 ], [ -95.532358050651098, 29.879558215494487 ], [ -95.532623050088304, 29.879679215998109 ], [ -95.532737050428935, 29.879718215581395 ], [ -95.532945050255449, 29.87976721615977 ], [ -95.533222050370043, 29.879811215513584 ], [ -95.533405050897272, 29.879817215959783 ], [ -95.533822050931192, 29.879751216302488 ], [ -95.534181051243706, 29.879762215805965 ], [ -95.534888050754702, 29.879834215903728 ], [ -95.535285050965072, 29.879845215485464 ], [ -95.536471051698612, 29.879746216147339 ], [ -95.53692505146509, 29.879730215434204 ], [ -95.537215051876473, 29.87972421608384 ], [ -95.537345052016065, 29.879749215642445 ], [ -95.537361051374916, 29.879752215417597 ], [ -95.537424051334597, 29.879785215609228 ], [ -95.537518051480347, 29.879818216139306 ], [ -95.537581051588901, 29.879867215656613 ], [ -95.537780051682503, 29.880064215884776 ], [ -95.537909051712248, 29.880192215756846 ], [ -95.538294052258138, 29.880686216313983 ], [ -95.538691051629627, 29.881401215783509 ], [ -95.538868052170841, 29.881621216039498 ], [ -95.53901905203206, 29.881781215983459 ], [ -95.539183051754861, 29.881901215952908 ], [ -95.539341051654588, 29.881967215801044 ], [ -95.539688052556457, 29.882088215784375 ], [ -95.540035052325265, 29.882144216331167 ], [ -95.540426052011483, 29.882182216479634 ], [ -95.540621052799835, 29.882215216021553 ], [ -95.540857052777, 29.882208216086084 ], [ -95.54178805309806, 29.882182215745821 ], [ -95.542079052575616, 29.882221215815356 ], [ -95.542198053340357, 29.88222121584673 ], [ -95.542306052865484, 29.882193216318175 ], [ -95.542375052724879, 29.882149215943528 ], [ -95.543195053482023, 29.882095216094505 ], [ -95.543637053431794, 29.882095215682458 ], [ -95.543877052999946, 29.882117216316423 ], [ -95.544097053062487, 29.882161215633896 ], [ -95.544167053256686, 29.882183216050219 ], [ -95.544400053355218, 29.882326215741628 ], [ -95.544734053984911, 29.88239221565437 ], [ -95.544804053277701, 29.882425215601945 ], [ -95.544879053157928, 29.882485216276653 ], [ -95.545081054056652, 29.882732216420568 ], [ -95.545188054125035, 29.882881216099857 ], [ -95.545346054145853, 29.883145215808774 ], [ -95.545479053902937, 29.883409216032593 ], [ -95.545561054065516, 29.88361821590809 ], [ -95.545699054248274, 29.883772216634991 ], [ -95.545882053639133, 29.883893216217412 ], [ -95.546072054257081, 29.883970216607068 ], [ -95.546286054168817, 29.884030215916145 ], [ -95.546393054518475, 29.88405221623044 ], [ -95.546538053887673, 29.884063216263911 ], [ -95.546816054297636, 29.884052216079148 ], [ -95.547548054806001, 29.884091216357575 ], [ -95.548323054818624, 29.884080215955297 ], [ -95.548731054842634, 29.884074216070882 ], [ -95.548717054592117, 29.881991216234365 ], [ -95.548683054312235, 29.880441215623165 ], [ -95.548715054386719, 29.880022215144916 ], [ -95.548761054031999, 29.879353215430516 ], [ -95.548797054898088, 29.879179215481106 ], [ -95.548842054872537, 29.879052214848553 ], [ -95.548869054087746, 29.878925215081477 ], [ -95.54889805459527, 29.878816214842232 ], [ -95.549031054262485, 29.878418215137376 ], [ -95.549178054429447, 29.878023214578899 ], [ -95.549217054917179, 29.877927215182012 ], [ -95.549316054436957, 29.877715215245708 ], [ -95.5494180545858, 29.877505214932647 ], [ -95.54973005455588, 29.87713521440967 ], [ -95.54999805464027, 29.876773215016271 ], [ -95.550354054578207, 29.876362214237229 ], [ -95.550814054928694, 29.875921214385546 ], [ -95.55123705482454, 29.875558214351539 ], [ -95.551914054590839, 29.875105214712065 ], [ -95.552223054909334, 29.874938213975781 ], [ -95.552688055428902, 29.874720214580858 ], [ -95.553343055896875, 29.874441214017015 ], [ -95.553753055400122, 29.874297214078855 ], [ -95.554009055591365, 29.874197213801914 ], [ -95.554541055205505, 29.873989214002968 ], [ -95.554781055759733, 29.873894214212878 ], [ -95.555033055988446, 29.873799214362194 ], [ -95.555444056369609, 29.873656213468351 ], [ -95.555626056272033, 29.873585213964482 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1464, "Tract": "48201534002", "Area_SqMi": 1.2537415880735343, "total_2009": 1986, "total_2010": 2517, "total_2011": 1920, "total_2012": 1867, "total_2013": 1947, "total_2014": 2066, "total_2015": 2127, "total_2016": 1914, "total_2017": 1722, "total_2018": 1715, "total_2019": 1914, "total_2020": 1738, "age1": 220, "age2": 922, "age3": 379, "earn1": 129, "earn2": 211, "earn3": 1181, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 51, "naics_s05": 566, "naics_s06": 446, "naics_s07": 99, "naics_s08": 6, "naics_s09": 0, "naics_s10": 62, "naics_s11": 10, "naics_s12": 154, "naics_s13": 0, "naics_s14": 66, "naics_s15": 0, "naics_s16": 33, "naics_s17": 0, "naics_s18": 23, "naics_s19": 5, "naics_s20": 0, "race1": 1135, "race2": 158, "race3": 23, "race4": 179, "race5": 3, "race6": 23, "ethnicity1": 1056, "ethnicity2": 465, "edu1": 290, "edu2": 330, "edu3": 390, "edu4": 291, "Shape_Length": 27147.654953300142, "Shape_Area": 34952169.675316706, "total_2021": 1634, "total_2022": 1521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.515357047803306, 29.92537522616551 ], [ -95.514933047972249, 29.924676225350662 ], [ -95.514082047538565, 29.923208225485585 ], [ -95.513341047599141, 29.921916225402896 ], [ -95.511946046321697, 29.919350224653417 ], [ -95.509625045891369, 29.915252223849855 ], [ -95.50951504630261, 29.915058224018047 ], [ -95.50929004615594, 29.914683223936827 ], [ -95.506398044672224, 29.909681223280995 ], [ -95.504030043669786, 29.905428222519884 ], [ -95.502319044067875, 29.902404222043554 ], [ -95.502086043781816, 29.901958221276008 ], [ -95.500755042643618, 29.89962122122418 ], [ -95.500601043544009, 29.899637221255979 ], [ -95.500360042838224, 29.899652221166576 ], [ -95.500330042886631, 29.899636220956712 ], [ -95.500291042807504, 29.899638221193594 ], [ -95.498610042759893, 29.899655221090821 ], [ -95.495694042086726, 29.899686221625199 ], [ -95.495704041422215, 29.901807222036879 ], [ -95.495741041566902, 29.902803221445705 ], [ -95.495748042311334, 29.903254222123021 ], [ -95.495755041833547, 29.903861222265885 ], [ -95.495754042232264, 29.904760222098478 ], [ -95.495753041998569, 29.905507222488595 ], [ -95.495751042030264, 29.906341222280037 ], [ -95.495751041941531, 29.906849222736216 ], [ -95.495761041936575, 29.907848223270356 ], [ -95.49575804255791, 29.908690223116988 ], [ -95.495782042484947, 29.909908223508953 ], [ -95.495865042496533, 29.912090223924551 ], [ -95.49582004199668, 29.913604224302979 ], [ -95.495814042042781, 29.913706224217584 ], [ -95.495732042363073, 29.913853224286147 ], [ -95.495734042865564, 29.914100224618327 ], [ -95.495736042658251, 29.914336224089126 ], [ -95.495739042135042, 29.914645224407934 ], [ -95.495743042855935, 29.914706224210402 ], [ -95.495744042281984, 29.91473222426659 ], [ -95.495745042743707, 29.914758224349598 ], [ -95.49574104257033, 29.914820224717197 ], [ -95.495745042231448, 29.914915224316484 ], [ -95.495764042725781, 29.915313224777698 ], [ -95.495775042555465, 29.915547224322133 ], [ -95.495775042077099, 29.915617224099222 ], [ -95.495774042042328, 29.915821224881892 ], [ -95.495755042978345, 29.916131224783353 ], [ -95.495749042523528, 29.916186224727884 ], [ -95.495715042458954, 29.916429225087839 ], [ -95.495699042551848, 29.916508224757418 ], [ -95.495664042947467, 29.916686224863458 ], [ -95.495593042330881, 29.916966224849926 ], [ -95.495507042120934, 29.917248224991017 ], [ -95.495398042135363, 29.9175332249288 ], [ -95.495312042174362, 29.917724224531568 ], [ -95.495198041975527, 29.917947225439917 ], [ -95.495097042970784, 29.918126224957728 ], [ -95.495077042900419, 29.918158224913888 ], [ -95.494970042290959, 29.918332225189872 ], [ -95.494873042249068, 29.918477225377689 ], [ -95.49477004284067, 29.918631224719338 ], [ -95.494506042149808, 29.919023225359417 ], [ -95.49440404190176, 29.919166225339531 ], [ -95.494297042727752, 29.919315225084031 ], [ -95.493948042269096, 29.919844225812234 ], [ -95.493851042421326, 29.919998225028099 ], [ -95.494023041869156, 29.920096225892561 ], [ -95.494327042310474, 29.920302225406189 ], [ -95.494475042067222, 29.9204022253336 ], [ -95.494617042694941, 29.920498225163417 ], [ -95.495040042867998, 29.920821225475809 ], [ -95.496086043327452, 29.921635225744687 ], [ -95.496666042523827, 29.922063226216302 ], [ -95.497020043264982, 29.922317226206289 ], [ -95.497203042679715, 29.922449226146863 ], [ -95.497224042758461, 29.922464225598315 ], [ -95.49734304294212, 29.922559225840661 ], [ -95.497441042791095, 29.92263622543339 ], [ -95.497689043086694, 29.92281622566534 ], [ -95.497854043090953, 29.922936226170901 ], [ -95.498561043826925, 29.923482225706788 ], [ -95.498794043213266, 29.923662225936887 ], [ -95.499493043819825, 29.924204226018055 ], [ -95.499536043664477, 29.924237226060566 ], [ -95.499910043712532, 29.924521226173095 ], [ -95.500333044290954, 29.924724226272687 ], [ -95.500557043976258, 29.924892225999862 ], [ -95.500913043826685, 29.924749225788055 ], [ -95.501502044754815, 29.924506226569537 ], [ -95.501964044473951, 29.92440322645805 ], [ -95.502220044435077, 29.924345225643499 ], [ -95.502254044984809, 29.924343226109098 ], [ -95.502422044708652, 29.924334225825302 ], [ -95.502711044575022, 29.924318225861999 ], [ -95.503220044322788, 29.924288226378724 ], [ -95.503313045315736, 29.924284226420351 ], [ -95.50384004526272, 29.924292225919991 ], [ -95.503996045266177, 29.924294225969597 ], [ -95.504240044804035, 29.924298226264003 ], [ -95.504277045294842, 29.924302226242226 ], [ -95.504722045260053, 29.924365225929002 ], [ -95.505214045066921, 29.924435226270973 ], [ -95.505258045852258, 29.924441226061607 ], [ -95.507458045456971, 29.925154225995147 ], [ -95.507953046032782, 29.925259226195568 ], [ -95.50919504622054, 29.92536422608995 ], [ -95.509777047081741, 29.92536122558159 ], [ -95.509996046785062, 29.925365225955925 ], [ -95.510786046726238, 29.925370225976057 ], [ -95.510871046840762, 29.925365225720238 ], [ -95.511644047150284, 29.925348225892634 ], [ -95.512391046713887, 29.925336226008319 ], [ -95.512418046711616, 29.925336226257766 ], [ -95.512888047358359, 29.925328226104309 ], [ -95.513101047316127, 29.925334226332527 ], [ -95.513487047070498, 29.925325226034079 ], [ -95.513988047527093, 29.925335226066373 ], [ -95.514794047696483, 29.925332225806766 ], [ -95.515357047803306, 29.92537522616551 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1465, "Tract": "48201534003", "Area_SqMi": 0.51150214405299355, "total_2009": 474, "total_2010": 137, "total_2011": 157, "total_2012": 574, "total_2013": 241, "total_2014": 264, "total_2015": 446, "total_2016": 511, "total_2017": 544, "total_2018": 635, "total_2019": 636, "total_2020": 677, "age1": 116, "age2": 402, "age3": 137, "earn1": 75, "earn2": 119, "earn3": 461, "naics_s01": 21, "naics_s02": 2, "naics_s03": 0, "naics_s04": 63, "naics_s05": 3, "naics_s06": 299, "naics_s07": 50, "naics_s08": 16, "naics_s09": 0, "naics_s10": 7, "naics_s11": 31, "naics_s12": 29, "naics_s13": 0, "naics_s14": 73, "naics_s15": 0, "naics_s16": 36, "naics_s17": 0, "naics_s18": 0, "naics_s19": 25, "naics_s20": 0, "race1": 521, "race2": 91, "race3": 5, "race4": 29, "race5": 0, "race6": 9, "ethnicity1": 458, "ethnicity2": 197, "edu1": 113, "edu2": 156, "edu3": 155, "edu4": 115, "Shape_Length": 17808.359367360885, "Shape_Area": 14259804.331528589, "total_2021": 662, "total_2022": 655 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.521726049807413, 29.936680227678057 ], [ -95.521699050096544, 29.93663222827491 ], [ -95.521579050327702, 29.936390227969159 ], [ -95.521525049784145, 29.936282227417262 ], [ -95.520928050150985, 29.935194227444008 ], [ -95.520818049315992, 29.935000227506148 ], [ -95.51934304943471, 29.932399227040197 ], [ -95.517356048564693, 29.928914226185604 ], [ -95.516435048017911, 29.927237225825596 ], [ -95.516161048236739, 29.926752225742344 ], [ -95.515406048451752, 29.925459225785151 ], [ -95.515357047803306, 29.92537522616551 ], [ -95.514794047696483, 29.925332225806766 ], [ -95.513988047527093, 29.925335226066373 ], [ -95.513487047070498, 29.925325226034079 ], [ -95.513101047316127, 29.925334226332527 ], [ -95.512888047358359, 29.925328226104309 ], [ -95.512418046711616, 29.925336226257766 ], [ -95.512391046713887, 29.925336226008319 ], [ -95.511644047150284, 29.925348225892634 ], [ -95.510871046840762, 29.925365225720238 ], [ -95.510786046726238, 29.925370225976057 ], [ -95.509996046785062, 29.925365225955925 ], [ -95.509777047081741, 29.92536122558159 ], [ -95.50919504622054, 29.92536422608995 ], [ -95.507953046032782, 29.925259226195568 ], [ -95.507458045456971, 29.925154225995147 ], [ -95.505258045852258, 29.924441226061607 ], [ -95.505214045066921, 29.924435226270973 ], [ -95.504722045260053, 29.924365225929002 ], [ -95.504277045294842, 29.924302226242226 ], [ -95.504240044804035, 29.924298226264003 ], [ -95.503996045266177, 29.924294225969597 ], [ -95.50384004526272, 29.924292225919991 ], [ -95.503313045315736, 29.924284226420351 ], [ -95.503220044322788, 29.924288226378724 ], [ -95.502711044575022, 29.924318225861999 ], [ -95.502422044708652, 29.924334225825302 ], [ -95.502254044984809, 29.924343226109098 ], [ -95.502220044435077, 29.924345225643499 ], [ -95.501964044473951, 29.92440322645805 ], [ -95.501502044754815, 29.924506226569537 ], [ -95.500913043826685, 29.924749225788055 ], [ -95.500557043976258, 29.924892225999862 ], [ -95.500667044098378, 29.924983226417584 ], [ -95.501277044606965, 29.925430226298637 ], [ -95.501488044906836, 29.925593226333067 ], [ -95.501521044829801, 29.925618226238569 ], [ -95.501606044431199, 29.925681226618703 ], [ -95.501636044052162, 29.925703226610274 ], [ -95.501763044209099, 29.925798226249249 ], [ -95.502008044946436, 29.925980226525233 ], [ -95.502746044953767, 29.926547226402185 ], [ -95.503026044496906, 29.926776226397678 ], [ -95.504187045158247, 29.927633226971295 ], [ -95.504725045797144, 29.928038226456962 ], [ -95.504742045397663, 29.928051226841873 ], [ -95.504901045578777, 29.928163226436183 ], [ -95.507066045981858, 29.929886227338233 ], [ -95.507448045984873, 29.930195226935723 ], [ -95.508709046302428, 29.93121422742859 ], [ -95.50886804640588, 29.931409227423789 ], [ -95.509511047009369, 29.931975227197714 ], [ -95.509930047047504, 29.932451227266444 ], [ -95.510116046651376, 29.932638227558254 ], [ -95.510272046664412, 29.932801227728799 ], [ -95.510669047464447, 29.933214227733554 ], [ -95.511094047653572, 29.933640227521263 ], [ -95.511487047189291, 29.933992227922268 ], [ -95.511780047396201, 29.934250227355342 ], [ -95.512111047081831, 29.934477227653069 ], [ -95.512507047285254, 29.934784227688727 ], [ -95.512786048091158, 29.934993227966288 ], [ -95.512870047812228, 29.935054227927623 ], [ -95.513116047677798, 29.935232227466944 ], [ -95.514442047931595, 29.936252227699349 ], [ -95.514568047769316, 29.936349228105218 ], [ -95.514789048211682, 29.93650522823804 ], [ -95.514951048172577, 29.936629227729767 ], [ -95.515186048625893, 29.936810228444902 ], [ -95.515322048141911, 29.936908227797517 ], [ -95.515967049030692, 29.936888228308476 ], [ -95.516229049146915, 29.936887227906514 ], [ -95.516525048472189, 29.936877227796241 ], [ -95.516769048954657, 29.936868228098582 ], [ -95.516932048551382, 29.936866227906297 ], [ -95.519228049347987, 29.936783227604682 ], [ -95.519404049019144, 29.936778228268501 ], [ -95.520268049431536, 29.936743228012155 ], [ -95.521726049807413, 29.936680227678057 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1466, "Tract": "48157671602", "Area_SqMi": 0.91585267567174122, "total_2009": 619, "total_2010": 522, "total_2011": 520, "total_2012": 499, "total_2013": 667, "total_2014": 827, "total_2015": 784, "total_2016": 761, "total_2017": 738, "total_2018": 1090, "total_2019": 955, "total_2020": 903, "age1": 108, "age2": 221, "age3": 124, "earn1": 126, "earn2": 162, "earn3": 165, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 0, "naics_s06": 11, "naics_s07": 77, "naics_s08": 0, "naics_s09": 4, "naics_s10": 5, "naics_s11": 12, "naics_s12": 55, "naics_s13": 0, "naics_s14": 11, "naics_s15": 12, "naics_s16": 100, "naics_s17": 0, "naics_s18": 87, "naics_s19": 56, "naics_s20": 0, "race1": 240, "race2": 58, "race3": 1, "race4": 145, "race5": 0, "race6": 9, "ethnicity1": 341, "ethnicity2": 112, "edu1": 84, "edu2": 78, "edu3": 93, "edu4": 90, "Shape_Length": 21550.291232317013, "Shape_Area": 25532405.100207932, "total_2021": 988, "total_2022": 453 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.596858054261844, 29.589259154400427 ], [ -95.596692054045079, 29.589204154279312 ], [ -95.595765053567604, 29.588875154091383 ], [ -95.595108053019914, 29.588652153933545 ], [ -95.594881052862917, 29.588582154714356 ], [ -95.59416305290145, 29.588298154575043 ], [ -95.594002052886097, 29.588229154510287 ], [ -95.593522053376176, 29.587989154473927 ], [ -95.591736052368958, 29.586799153873372 ], [ -95.589671051727905, 29.585319153759826 ], [ -95.589553051919211, 29.585236153784439 ], [ -95.589043051528009, 29.584879154166234 ], [ -95.5873860508663, 29.583723153858568 ], [ -95.587270050909211, 29.583643153550241 ], [ -95.585673050966136, 29.582541153714715 ], [ -95.58295204937717, 29.580665153092628 ], [ -95.5828330503589, 29.580587152716511 ], [ -95.58266804940321, 29.580773153506527 ], [ -95.581868049712384, 29.581674152925295 ], [ -95.581462049697393, 29.582224153708427 ], [ -95.581191049315706, 29.582667153702221 ], [ -95.580967049763345, 29.58320915391149 ], [ -95.580878049792844, 29.583497153902126 ], [ -95.580830049527464, 29.583673153885947 ], [ -95.580659049077852, 29.584212153858385 ], [ -95.580578049288121, 29.584951154391117 ], [ -95.580559049172891, 29.585518154146673 ], [ -95.580617049230952, 29.586088153905159 ], [ -95.580759049884861, 29.586866154415652 ], [ -95.580988049308132, 29.587614154286197 ], [ -95.581353049791048, 29.588458154336234 ], [ -95.581465049653204, 29.588791155142825 ], [ -95.581671050359546, 29.589524154625305 ], [ -95.581747049812293, 29.589855154633756 ], [ -95.581793049715927, 29.590114154878925 ], [ -95.58187105052545, 29.590803155089162 ], [ -95.581878050533334, 29.591445155797739 ], [ -95.581856050150449, 29.591687155358738 ], [ -95.581866050196254, 29.592667155319319 ], [ -95.581870050427355, 29.59287015557782 ], [ -95.581878050378677, 29.592994155601726 ], [ -95.581881050589104, 29.593087155243825 ], [ -95.581930050575778, 29.594450156017221 ], [ -95.581937050262951, 29.59469715602982 ], [ -95.581973049866278, 29.595891156675279 ], [ -95.581972050388956, 29.595960156266205 ], [ -95.581964050454459, 29.596509156035935 ], [ -95.581974049918799, 29.597414156880802 ], [ -95.581974050504442, 29.597441156201029 ], [ -95.581971050612324, 29.598284157171403 ], [ -95.581983050047512, 29.599367157108109 ], [ -95.581992050247251, 29.60007815685481 ], [ -95.58199605010995, 29.601017157375114 ], [ -95.582001050616242, 29.601148157314871 ], [ -95.582172050936251, 29.601161157141178 ], [ -95.583030051240002, 29.60123215729319 ], [ -95.583481050566121, 29.601304157598481 ], [ -95.584974050895354, 29.601503157002483 ], [ -95.585884051536084, 29.601524157472848 ], [ -95.586808051688664, 29.601558156875225 ], [ -95.588451052452669, 29.601501156998626 ], [ -95.589300052395643, 29.601369156979867 ], [ -95.589916052922533, 29.601170157508935 ], [ -95.591800052639712, 29.600506156568155 ], [ -95.591912052950519, 29.600474156550916 ], [ -95.592603053276633, 29.600267157008339 ], [ -95.593088053692497, 29.600174156611356 ], [ -95.593151053086146, 29.600162157050079 ], [ -95.593220053767681, 29.600149156691192 ], [ -95.593255053624773, 29.600142156963653 ], [ -95.593682053288887, 29.600102157009587 ], [ -95.594443053893144, 29.600074156947869 ], [ -95.594526053918912, 29.600072156344854 ], [ -95.594630053467199, 29.600084156870558 ], [ -95.594608054188157, 29.599950157048568 ], [ -95.594517053901129, 29.598692156757934 ], [ -95.594497054019257, 29.598419156073202 ], [ -95.594488053920031, 29.597994156214494 ], [ -95.59448305321547, 29.597602156169419 ], [ -95.594482053746518, 29.597545156243779 ], [ -95.594442053533371, 29.597122156346931 ], [ -95.594400053758065, 29.596882156100811 ], [ -95.594230053715876, 29.59635815619502 ], [ -95.593973053720305, 29.595733155597976 ], [ -95.593840053688851, 29.59500815555463 ], [ -95.593839052922092, 29.59498615590018 ], [ -95.593829053062493, 29.594739155792169 ], [ -95.593862053039118, 29.594184155147147 ], [ -95.593935053596198, 29.593843155620547 ], [ -95.594077052805957, 29.593368155576858 ], [ -95.594245053400201, 29.593015155541355 ], [ -95.59439105365918, 29.592705155442459 ], [ -95.59451105329947, 29.592582154833057 ], [ -95.595378053054532, 29.591659154673305 ], [ -95.595595053584645, 29.591400154872495 ], [ -95.595997053564801, 29.590879154628595 ], [ -95.596052053194541, 29.590792154640948 ], [ -95.596250053652227, 29.59048015489714 ], [ -95.596260054047193, 29.590464154376676 ], [ -95.596406053230467, 29.590172154630167 ], [ -95.596533053378039, 29.589958154315426 ], [ -95.596858054261844, 29.589259154400427 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1467, "Tract": "48201451401", "Area_SqMi": 0.41876434138861146, "total_2009": 1969, "total_2010": 1947, "total_2011": 1825, "total_2012": 1682, "total_2013": 1783, "total_2014": 1853, "total_2015": 1886, "total_2016": 1721, "total_2017": 1935, "total_2018": 1998, "total_2019": 1960, "total_2020": 1799, "age1": 295, "age2": 997, "age3": 423, "earn1": 280, "earn2": 351, "earn3": 1084, "naics_s01": 0, "naics_s02": 23, "naics_s03": 0, "naics_s04": 31, "naics_s05": 0, "naics_s06": 41, "naics_s07": 51, "naics_s08": 24, "naics_s09": 15, "naics_s10": 91, "naics_s11": 54, "naics_s12": 375, "naics_s13": 0, "naics_s14": 359, "naics_s15": 322, "naics_s16": 231, "naics_s17": 24, "naics_s18": 42, "naics_s19": 32, "naics_s20": 0, "race1": 1087, "race2": 292, "race3": 10, "race4": 301, "race5": 0, "race6": 25, "ethnicity1": 1358, "ethnicity2": 357, "edu1": 207, "edu2": 307, "edu3": 402, "edu4": 504, "Shape_Length": 13951.741803043158, "Shape_Area": 11674433.115581172, "total_2021": 1632, "total_2022": 1715 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.618916066003152, 29.746859186078922 ], [ -95.619031066171019, 29.746563186228904 ], [ -95.618497066018961, 29.74643918598813 ], [ -95.618100066219, 29.7463771860915 ], [ -95.617881066073139, 29.746340185740792 ], [ -95.61767506641155, 29.746329186232451 ], [ -95.617419066362714, 29.746322185409173 ], [ -95.617152065687591, 29.746321185824069 ], [ -95.617020066258064, 29.74632818608044 ], [ -95.616833065444141, 29.746336185697984 ], [ -95.616333065944673, 29.746351185603302 ], [ -95.615508065147694, 29.746369185611581 ], [ -95.614512064948087, 29.746396185991376 ], [ -95.612687064400916, 29.746445186407954 ], [ -95.612469065172291, 29.746436186208811 ], [ -95.61217406430184, 29.746453186271292 ], [ -95.611826064198183, 29.746462185953742 ], [ -95.611051064521831, 29.74647818622531 ], [ -95.610879064388101, 29.746490186391849 ], [ -95.610420064178754, 29.746513185790317 ], [ -95.610198063832584, 29.746497186504698 ], [ -95.609992064590557, 29.746435186501117 ], [ -95.60970006430982, 29.746281186341875 ], [ -95.609478064431883, 29.746188185619992 ], [ -95.609278064075568, 29.746159186048668 ], [ -95.609052063390024, 29.746161186439966 ], [ -95.608689063641549, 29.746170186456037 ], [ -95.608174063238948, 29.746174185852507 ], [ -95.607988063559233, 29.746177186263075 ], [ -95.607831063551075, 29.746189185881821 ], [ -95.607404063705516, 29.746202186236616 ], [ -95.606967063626129, 29.74620218615452 ], [ -95.606740063502215, 29.746204186223832 ], [ -95.606059063306319, 29.746227185792076 ], [ -95.606041063102708, 29.746822185975567 ], [ -95.606024063594646, 29.746977186579574 ], [ -95.605996062726746, 29.747231186221356 ], [ -95.60598806357504, 29.747563186527977 ], [ -95.605996063002024, 29.747857186712203 ], [ -95.605999063017165, 29.747973186437157 ], [ -95.606026063514619, 29.74843718707962 ], [ -95.606044063508293, 29.74879318657203 ], [ -95.606058063687513, 29.749311187054143 ], [ -95.606059063709878, 29.74964318676485 ], [ -95.606060063423485, 29.749721187142097 ], [ -95.606068063290451, 29.750177186558737 ], [ -95.606067063256546, 29.751043187039237 ], [ -95.606074063348473, 29.751478186920021 ], [ -95.606077062916768, 29.751654186868464 ], [ -95.606081063394811, 29.752001187081454 ], [ -95.606085063314396, 29.752414187264694 ], [ -95.606114063345913, 29.753926187507137 ], [ -95.606198063671627, 29.75392718776143 ], [ -95.606819063292988, 29.753933187771619 ], [ -95.607302063353458, 29.753966187394301 ], [ -95.60779906411247, 29.754044187465198 ], [ -95.608296064058351, 29.754154187788249 ], [ -95.609183064125688, 29.754416187838917 ], [ -95.609844064258809, 29.75453818783927 ], [ -95.610205064695677, 29.7545651873304 ], [ -95.610466064415064, 29.754578187638792 ], [ -95.610787064233406, 29.754574188001953 ], [ -95.61124106465995, 29.75456318753108 ], [ -95.613124065439635, 29.754523188038156 ], [ -95.613597065371721, 29.75452518718377 ], [ -95.615003065717048, 29.754511187332902 ], [ -95.61637206634822, 29.754488187131958 ], [ -95.616881066655722, 29.754478187273818 ], [ -95.616983066179941, 29.754482187788764 ], [ -95.617040066164989, 29.754484187416551 ], [ -95.618448066197402, 29.754463187754066 ], [ -95.618449066792834, 29.753805187366705 ], [ -95.618459067029832, 29.753281187215791 ], [ -95.618475066168131, 29.75312118712495 ], [ -95.618572066806223, 29.752726186665821 ], [ -95.618800066106033, 29.752174187283472 ], [ -95.618880066826136, 29.751945187295505 ], [ -95.618934066772567, 29.751580186436936 ], [ -95.618949067110591, 29.751357186761531 ], [ -95.618934067069731, 29.751129186871466 ], [ -95.618916066801461, 29.750967186910099 ], [ -95.618894066729226, 29.75082818653507 ], [ -95.618839066334829, 29.750619186291971 ], [ -95.618683066186549, 29.750248186390181 ], [ -95.61848406658676, 29.749673186729783 ], [ -95.618438066100708, 29.749385186612688 ], [ -95.61845806618345, 29.748349186089659 ], [ -95.618442066520515, 29.748002186489771 ], [ -95.618136066606738, 29.747598185736656 ], [ -95.618223066013883, 29.747563185899875 ], [ -95.618337066483363, 29.74747718572997 ], [ -95.618683066052981, 29.747157185835903 ], [ -95.618916066003152, 29.746859186078922 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1468, "Tract": "48157671601", "Area_SqMi": 1.1839585045536951, "total_2009": 2284, "total_2010": 2256, "total_2011": 2257, "total_2012": 2247, "total_2013": 2261, "total_2014": 2310, "total_2015": 2314, "total_2016": 2339, "total_2017": 2178, "total_2018": 2170, "total_2019": 2062, "total_2020": 1918, "age1": 631, "age2": 978, "age3": 442, "earn1": 537, "earn2": 797, "earn3": 717, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 26, "naics_s05": 9, "naics_s06": 44, "naics_s07": 393, "naics_s08": 8, "naics_s09": 28, "naics_s10": 130, "naics_s11": 37, "naics_s12": 323, "naics_s13": 0, "naics_s14": 28, "naics_s15": 33, "naics_s16": 173, "naics_s17": 32, "naics_s18": 743, "naics_s19": 44, "naics_s20": 0, "race1": 1289, "race2": 327, "race3": 19, "race4": 370, "race5": 4, "race6": 42, "ethnicity1": 1477, "ethnicity2": 574, "edu1": 314, "edu2": 330, "edu3": 381, "edu4": 395, "Shape_Length": 28698.472424049553, "Shape_Area": 33006736.741724681, "total_2021": 2048, "total_2022": 2051 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.622369060875883, 29.59869415514715 ], [ -95.622521060674714, 29.598560155035898 ], [ -95.622266060455189, 29.598419155219698 ], [ -95.621871060728154, 29.598278155532089 ], [ -95.621458060104302, 29.598099155408459 ], [ -95.621376060969439, 29.598070155049722 ], [ -95.61921205981875, 29.597300155688171 ], [ -95.617798059034797, 29.596791155586843 ], [ -95.616870059745906, 29.596469154953734 ], [ -95.616314058741054, 29.596279155598431 ], [ -95.616214058777985, 29.59624115494562 ], [ -95.615472059079138, 29.595960155102411 ], [ -95.615040058998389, 29.595848154773517 ], [ -95.615023058596506, 29.595836155385129 ], [ -95.614780058205099, 29.595743154756416 ], [ -95.614716058884255, 29.595723155559185 ], [ -95.613114058521504, 29.595152155392231 ], [ -95.61199005749927, 29.594725155067884 ], [ -95.611075057284609, 29.594380154929819 ], [ -95.610685057898081, 29.594226155055892 ], [ -95.60928905748267, 29.593746155131537 ], [ -95.607883057296988, 29.593262155143648 ], [ -95.606339056770523, 29.592694154414346 ], [ -95.604905056485919, 29.592167154384356 ], [ -95.604776056295933, 29.592107155118381 ], [ -95.603825056154321, 29.591761155089394 ], [ -95.603284055710859, 29.591588154722768 ], [ -95.602669055215145, 29.591378154267336 ], [ -95.602057055273207, 29.591168154915472 ], [ -95.601530055543265, 29.590967154229634 ], [ -95.601165055203865, 29.590837154913888 ], [ -95.601011055357731, 29.590772154202696 ], [ -95.60055705469955, 29.590610154805717 ], [ -95.600476054560175, 29.590585154590556 ], [ -95.599957054812236, 29.59038215467681 ], [ -95.59912805436889, 29.590078154295604 ], [ -95.598351054288585, 29.589774154885006 ], [ -95.597532054395089, 29.589490154090626 ], [ -95.597210054235461, 29.589383154702759 ], [ -95.596858054261844, 29.589259154400427 ], [ -95.596533053378039, 29.589958154315426 ], [ -95.596406053230467, 29.590172154630167 ], [ -95.596260054047193, 29.590464154376676 ], [ -95.596250053652227, 29.59048015489714 ], [ -95.596052053194541, 29.590792154640948 ], [ -95.595997053564801, 29.590879154628595 ], [ -95.595595053584645, 29.591400154872495 ], [ -95.595378053054532, 29.591659154673305 ], [ -95.59451105329947, 29.592582154833057 ], [ -95.59439105365918, 29.592705155442459 ], [ -95.594245053400201, 29.593015155541355 ], [ -95.594077052805957, 29.593368155576858 ], [ -95.593935053596198, 29.593843155620547 ], [ -95.593862053039118, 29.594184155147147 ], [ -95.593829053062493, 29.594739155792169 ], [ -95.593839052922092, 29.59498615590018 ], [ -95.593840053688851, 29.59500815555463 ], [ -95.593973053720305, 29.595733155597976 ], [ -95.594230053715876, 29.59635815619502 ], [ -95.594400053758065, 29.596882156100811 ], [ -95.594442053533371, 29.597122156346931 ], [ -95.594482053746518, 29.597545156243779 ], [ -95.59448305321547, 29.597602156169419 ], [ -95.594488053920031, 29.597994156214494 ], [ -95.594497054019257, 29.598419156073202 ], [ -95.594517053901129, 29.598692156757934 ], [ -95.594608054188157, 29.599950157048568 ], [ -95.594630053467199, 29.600084156870558 ], [ -95.594526053918912, 29.600072156344854 ], [ -95.594443053893144, 29.600074156947869 ], [ -95.593682053288887, 29.600102157009587 ], [ -95.593255053624773, 29.600142156963653 ], [ -95.593220053767681, 29.600149156691192 ], [ -95.593151053086146, 29.600162157050079 ], [ -95.593339053136106, 29.600678156542315 ], [ -95.593365053497806, 29.600729156766345 ], [ -95.593608053584006, 29.601198156966245 ], [ -95.593598053834285, 29.601333156530991 ], [ -95.593610053219876, 29.601393157089209 ], [ -95.593643053123714, 29.601486157097902 ], [ -95.593685053715973, 29.601691157044431 ], [ -95.593740053114345, 29.601897156782023 ], [ -95.593824053987206, 29.602213157150324 ], [ -95.593853053571991, 29.60289715711572 ], [ -95.593790053997978, 29.603180157202427 ], [ -95.593708053592607, 29.603326157479508 ], [ -95.593554053544153, 29.603597157799165 ], [ -95.593205053944615, 29.60395315716525 ], [ -95.592399052904071, 29.605080157464702 ], [ -95.592360053007596, 29.605211157870162 ], [ -95.592213053229784, 29.605708158332781 ], [ -95.592118053477179, 29.606279158237676 ], [ -95.592173053415337, 29.607107158613214 ], [ -95.592341053066747, 29.607637158252739 ], [ -95.592920054127632, 29.608093158796553 ], [ -95.593607053458271, 29.608269158460846 ], [ -95.59384805409826, 29.608236158748486 ], [ -95.594463053608834, 29.608152158664609 ], [ -95.594708053954804, 29.608019158087455 ], [ -95.595127053756372, 29.607297158051324 ], [ -95.595202053808507, 29.607167157958759 ], [ -95.595677053932988, 29.605868157918504 ], [ -95.59602305445037, 29.604927157960855 ], [ -95.596560053879529, 29.604369157711755 ], [ -95.597465054976013, 29.603811157108289 ], [ -95.59761605470149, 29.603782157028586 ], [ -95.598494054516152, 29.603611157383476 ], [ -95.600692055746705, 29.603182157527907 ], [ -95.601084055910931, 29.603241156901039 ], [ -95.601242055806409, 29.603265157252824 ], [ -95.60141405540584, 29.603389157382171 ], [ -95.602003055612442, 29.603815157396721 ], [ -95.603373056049847, 29.60504815725735 ], [ -95.603608056607641, 29.605179157040954 ], [ -95.604455056859493, 29.605652157807768 ], [ -95.604706056054525, 29.605713157779778 ], [ -95.605463056922744, 29.605896157098915 ], [ -95.606746056582907, 29.605941157391079 ], [ -95.607898057130797, 29.60559715733077 ], [ -95.60844405707806, 29.605174156810325 ], [ -95.609163057337369, 29.604327156920739 ], [ -95.609740057324487, 29.603757156479663 ], [ -95.60994805744393, 29.603552157225355 ], [ -95.61006305763496, 29.603437156522482 ], [ -95.610100057664553, 29.603400156659866 ], [ -95.61100205761683, 29.602510156605696 ], [ -95.611804058091167, 29.602313156521522 ], [ -95.613634058533989, 29.602370156345359 ], [ -95.614264058954376, 29.602297156055368 ], [ -95.61460705921337, 29.602198156415149 ], [ -95.615153058970776, 29.601800156119964 ], [ -95.61632605885984, 29.601605155815133 ], [ -95.617414059609331, 29.601483156013526 ], [ -95.618576059411595, 29.601673155963145 ], [ -95.618671060088261, 29.60168815615889 ], [ -95.618741059515941, 29.601764156160357 ], [ -95.618970059551827, 29.602014156096818 ], [ -95.619019060361254, 29.602076155991906 ], [ -95.619264059639363, 29.601841155820118 ], [ -95.619495059703823, 29.601620156258072 ], [ -95.62049606055632, 29.60056615613712 ], [ -95.621416060241685, 29.599662155649217 ], [ -95.622369060875883, 29.59869415514715 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1469, "Tract": "48157671501", "Area_SqMi": 1.6592643492898791, "total_2009": 883, "total_2010": 775, "total_2011": 909, "total_2012": 909, "total_2013": 951, "total_2014": 1011, "total_2015": 1027, "total_2016": 1050, "total_2017": 997, "total_2018": 940, "total_2019": 1085, "total_2020": 901, "age1": 213, "age2": 479, "age3": 284, "earn1": 311, "earn2": 369, "earn3": 296, "naics_s01": 0, "naics_s02": 8, "naics_s03": 0, "naics_s04": 13, "naics_s05": 24, "naics_s06": 26, "naics_s07": 122, "naics_s08": 2, "naics_s09": 16, "naics_s10": 24, "naics_s11": 16, "naics_s12": 51, "naics_s13": 1, "naics_s14": 132, "naics_s15": 19, "naics_s16": 399, "naics_s17": 13, "naics_s18": 77, "naics_s19": 33, "naics_s20": 0, "race1": 438, "race2": 293, "race3": 1, "race4": 224, "race5": 4, "race6": 16, "ethnicity1": 764, "ethnicity2": 212, "edu1": 138, "edu2": 163, "edu3": 229, "edu4": 233, "Shape_Length": 27639.010982895557, "Shape_Area": 46257450.198886044, "total_2021": 865, "total_2022": 976 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.582231051009671, 29.606229158355283 ], [ -95.582232051216252, 29.606158158668322 ], [ -95.582230050698669, 29.606043158335556 ], [ -95.582225050813605, 29.605800158314086 ], [ -95.582210051028099, 29.605656158543979 ], [ -95.582180050499517, 29.605363158258925 ], [ -95.582145050809686, 29.60511415823429 ], [ -95.582084051093062, 29.604786158119381 ], [ -95.58205105032981, 29.604403157866312 ], [ -95.582051050793936, 29.604244158214769 ], [ -95.58206205048343, 29.603915157616694 ], [ -95.582069050247327, 29.603323157897186 ], [ -95.582037050436853, 29.602936157233746 ], [ -95.58202905081373, 29.602077157354415 ], [ -95.582007050725096, 29.601352156939921 ], [ -95.582001050616242, 29.601148157314871 ], [ -95.58199605010995, 29.601017157375114 ], [ -95.581992050247251, 29.60007815685481 ], [ -95.581983050047512, 29.599367157108109 ], [ -95.581971050612324, 29.598284157171403 ], [ -95.581974050504442, 29.597441156201029 ], [ -95.581974049918799, 29.597414156880802 ], [ -95.581964050454459, 29.596509156035935 ], [ -95.581972050388956, 29.595960156266205 ], [ -95.581973049866278, 29.595891156675279 ], [ -95.581937050262951, 29.59469715602982 ], [ -95.581930050575778, 29.594450156017221 ], [ -95.581881050589104, 29.593087155243825 ], [ -95.581878050378677, 29.592994155601726 ], [ -95.581870050427355, 29.59287015557782 ], [ -95.581866050196254, 29.592667155319319 ], [ -95.581856050150449, 29.591687155358738 ], [ -95.581878050533334, 29.591445155797739 ], [ -95.58187105052545, 29.590803155089162 ], [ -95.581793049715927, 29.590114154878925 ], [ -95.581747049812293, 29.589855154633756 ], [ -95.581671050359546, 29.589524154625305 ], [ -95.581465049653204, 29.588791155142825 ], [ -95.581353049791048, 29.588458154336234 ], [ -95.580988049308132, 29.587614154286197 ], [ -95.580759049884861, 29.586866154415652 ], [ -95.580617049230952, 29.586088153905159 ], [ -95.580559049172891, 29.585518154146673 ], [ -95.580578049288121, 29.584951154391117 ], [ -95.580659049077852, 29.584212153858385 ], [ -95.580830049527464, 29.583673153885947 ], [ -95.580707049961831, 29.583640153467414 ], [ -95.57896904947539, 29.583188153630353 ], [ -95.578091048697246, 29.582984153627734 ], [ -95.577065048611843, 29.582764153907288 ], [ -95.576564048665077, 29.582672153903768 ], [ -95.576112048618754, 29.58264215341282 ], [ -95.575383048055926, 29.582647153478511 ], [ -95.574484048092231, 29.582683154204602 ], [ -95.573042047119628, 29.582604153976799 ], [ -95.572945047009256, 29.582599153987395 ], [ -95.572831047080768, 29.582593154203707 ], [ -95.570940046589442, 29.58249015344456 ], [ -95.570770046712951, 29.582494153894224 ], [ -95.569878046152851, 29.582516153921002 ], [ -95.56872904658789, 29.582543153932679 ], [ -95.56730904546059, 29.582578153995488 ], [ -95.566127045295119, 29.582606154213785 ], [ -95.565096044990412, 29.58262115364705 ], [ -95.564068045584605, 29.582637153775135 ], [ -95.564114045487145, 29.586158154450583 ], [ -95.564122045296415, 29.586785155105858 ], [ -95.564117045042138, 29.587162154790896 ], [ -95.564119045419091, 29.58736715531904 ], [ -95.564119045556538, 29.58809315544266 ], [ -95.564142045717261, 29.589874155577736 ], [ -95.564151045638212, 29.590654156097514 ], [ -95.564153045425897, 29.590738155756796 ], [ -95.564262045267228, 29.593180156171687 ], [ -95.56426804536892, 29.593462156697331 ], [ -95.564242045287955, 29.596218157077505 ], [ -95.564247045662952, 29.596592156902101 ], [ -95.564269045507828, 29.597952157581322 ], [ -95.564275045646767, 29.598330157331809 ], [ -95.564291045729135, 29.599307157097886 ], [ -95.564299045974593, 29.599798157714439 ], [ -95.564304045773071, 29.600152157909516 ], [ -95.564313045643232, 29.600750158100258 ], [ -95.56431404635137, 29.600799157509559 ], [ -95.56432704562377, 29.601545158096467 ], [ -95.564329046127057, 29.601650157886297 ], [ -95.564332045866593, 29.601830158090621 ], [ -95.564338046573837, 29.602132158235534 ], [ -95.564344046365591, 29.602497158422917 ], [ -95.564348045756077, 29.602645157969057 ], [ -95.564375045785425, 29.602804158509954 ], [ -95.564383046141444, 29.604706158334675 ], [ -95.564397045758838, 29.60509915833779 ], [ -95.564407046544133, 29.605379158497655 ], [ -95.564409045935378, 29.60543215879774 ], [ -95.569331048007911, 29.60557415872929 ], [ -95.573181049002557, 29.605685158367095 ], [ -95.573164048384143, 29.605631158478776 ], [ -95.574783048907321, 29.605680158120279 ], [ -95.575242048824535, 29.605685158171315 ], [ -95.5759760497142, 29.605721158462369 ], [ -95.57612304893334, 29.605729158368032 ], [ -95.576528049576424, 29.605738158230618 ], [ -95.576697049012992, 29.60574215842961 ], [ -95.577559049700525, 29.605787158707336 ], [ -95.578165050082617, 29.605829158203161 ], [ -95.581938050566791, 29.606200158538332 ], [ -95.582231051009671, 29.606229158355283 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1470, "Tract": "48157673902", "Area_SqMi": 3.4844157258631232, "total_2009": 5111, "total_2010": 4855, "total_2011": 6503, "total_2012": 5725, "total_2013": 5973, "total_2014": 6563, "total_2015": 6785, "total_2016": 7302, "total_2017": 7914, "total_2018": 8699, "total_2019": 8778, "total_2020": 7942, "age1": 3297, "age2": 4756, "age3": 1837, "earn1": 2968, "earn2": 3379, "earn3": 3543, "naics_s01": 16, "naics_s02": 112, "naics_s03": 14, "naics_s04": 92, "naics_s05": 9, "naics_s06": 148, "naics_s07": 3107, "naics_s08": 123, "naics_s09": 46, "naics_s10": 547, "naics_s11": 157, "naics_s12": 763, "naics_s13": 55, "naics_s14": 423, "naics_s15": 563, "naics_s16": 1423, "naics_s17": 106, "naics_s18": 1506, "naics_s19": 395, "naics_s20": 285, "race1": 6075, "race2": 1669, "race3": 73, "race4": 1855, "race5": 15, "race6": 203, "ethnicity1": 6857, "ethnicity2": 3033, "edu1": 1304, "edu2": 1567, "edu3": 1839, "edu4": 1883, "Shape_Length": 46677.231390392022, "Shape_Area": 97139546.79994759, "total_2021": 8598, "total_2022": 9890 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.665237071275811, 29.581629150616294 ], [ -95.665223070767027, 29.581204150328784 ], [ -95.665210070662297, 29.580818150011854 ], [ -95.665203070994821, 29.580588149919485 ], [ -95.665192070465523, 29.580210149845861 ], [ -95.66518307076619, 29.579918149883071 ], [ -95.665163071009061, 29.579266150192883 ], [ -95.665138070794114, 29.578495149835689 ], [ -95.665119071221611, 29.577878149453156 ], [ -95.665078070684245, 29.576561149798298 ], [ -95.665024070703325, 29.57485114886487 ], [ -95.664966070751134, 29.572997148412178 ], [ -95.664931070775168, 29.571892148560153 ], [ -95.664908070781706, 29.57114814865211 ], [ -95.66489707054771, 29.570989148434819 ], [ -95.664894070413069, 29.570812148638552 ], [ -95.664894070654171, 29.570539148273138 ], [ -95.664890070471799, 29.57045614810237 ], [ -95.661195069877678, 29.57280714855143 ], [ -95.65936906926963, 29.573961148974298 ], [ -95.654393068330052, 29.577105150135125 ], [ -95.653570067552749, 29.577625150277889 ], [ -95.650847067288453, 29.579345150352019 ], [ -95.650005067203793, 29.579877150581282 ], [ -95.649147067202392, 29.580420150649541 ], [ -95.648465066791104, 29.580850151281982 ], [ -95.648212066888959, 29.581010150916342 ], [ -95.64786406600787, 29.581229150881892 ], [ -95.647689066013399, 29.581339150822817 ], [ -95.647503066524322, 29.581457151195117 ], [ -95.645796066117612, 29.582535151736799 ], [ -95.645453065615172, 29.58275115146812 ], [ -95.644009065624516, 29.583663151529311 ], [ -95.643621065681231, 29.583908151565083 ], [ -95.641204064919947, 29.585433152423839 ], [ -95.64036906449337, 29.585959152335853 ], [ -95.640047064525191, 29.586162152570719 ], [ -95.639898065069218, 29.586256152746554 ], [ -95.639743064872221, 29.586354152379538 ], [ -95.636069063916636, 29.588662152944387 ], [ -95.634964063910061, 29.589352152912415 ], [ -95.63486406370339, 29.589415153103307 ], [ -95.634680063131967, 29.58953015357374 ], [ -95.634516063081591, 29.589632153418499 ], [ -95.633913063471923, 29.590008153445368 ], [ -95.632877062766326, 29.590655153159858 ], [ -95.631200062939882, 29.591702153574175 ], [ -95.630494062843368, 29.592160154195341 ], [ -95.629712062075015, 29.592668153928486 ], [ -95.628883062103881, 29.593207154099776 ], [ -95.628631061596778, 29.593370154208152 ], [ -95.627194061326421, 29.594375154087341 ], [ -95.626275061117596, 29.595121155002989 ], [ -95.625819061724897, 29.595508154390984 ], [ -95.625333061198475, 29.595966154886518 ], [ -95.623482061197294, 29.597576155392741 ], [ -95.622815061104873, 29.598263155349947 ], [ -95.622722060475098, 29.598359155362537 ], [ -95.622561060913412, 29.598525155638406 ], [ -95.622521060674714, 29.598560155035898 ], [ -95.622788061235042, 29.598658155578551 ], [ -95.62291506042375, 29.598696155733162 ], [ -95.623376061398986, 29.598862155084063 ], [ -95.624333061364453, 29.599238155826377 ], [ -95.625249061076076, 29.599546155302232 ], [ -95.625552061443045, 29.599670155401025 ], [ -95.6262550616147, 29.599895155865099 ], [ -95.626675061575952, 29.600017155453077 ], [ -95.627212062361167, 29.600193156023206 ], [ -95.627677061677048, 29.600344155969005 ], [ -95.628620062700108, 29.600697155669881 ], [ -95.630941062892148, 29.601565155780257 ], [ -95.632192063304743, 29.601982156076119 ], [ -95.63233306337672, 29.602032156235268 ], [ -95.632783063153013, 29.602216155469577 ], [ -95.633409063336828, 29.602505156231775 ], [ -95.633642063752674, 29.602642155863514 ], [ -95.633925063941575, 29.602809155876795 ], [ -95.63487906418483, 29.603491156053497 ], [ -95.635027064386719, 29.603593156309874 ], [ -95.635909064655024, 29.604199156004825 ], [ -95.637498064525346, 29.605281156299945 ], [ -95.639058065612986, 29.606347156248091 ], [ -95.639419065580441, 29.606593156322074 ], [ -95.639673065781849, 29.606767156145832 ], [ -95.639829065701576, 29.606873156317818 ], [ -95.639888065120189, 29.606914156507731 ], [ -95.639992066061566, 29.606985156834305 ], [ -95.640054065418184, 29.607027156587375 ], [ -95.643066066217131, 29.608974156887555 ], [ -95.64363906614625, 29.609272157250654 ], [ -95.645281066903706, 29.610288157256917 ], [ -95.646677067298995, 29.611152157176818 ], [ -95.647957067728001, 29.612058157289177 ], [ -95.648321067989144, 29.612387157655675 ], [ -95.648582068164075, 29.612694157778442 ], [ -95.648923067646081, 29.613058157658099 ], [ -95.6491170680587, 29.61341215777459 ], [ -95.649368068699999, 29.613301157551575 ], [ -95.650116068336018, 29.612967157842288 ], [ -95.652374068850719, 29.612000157473393 ], [ -95.65239206897823, 29.611991157223336 ], [ -95.656352070358139, 29.610028156315806 ], [ -95.656939070270326, 29.609737156600627 ], [ -95.658966070485192, 29.608770156403217 ], [ -95.660223071060372, 29.608266156163591 ], [ -95.660277071142346, 29.608244156517671 ], [ -95.660311070674737, 29.60823115604969 ], [ -95.660348071157301, 29.608216156223424 ], [ -95.660472070600704, 29.608167155683724 ], [ -95.660585070752632, 29.608128156099035 ], [ -95.660550070492775, 29.607287155871632 ], [ -95.660544070536631, 29.606778155462706 ], [ -95.660506070625416, 29.605887155303151 ], [ -95.660425071071572, 29.604191155447793 ], [ -95.66019407047051, 29.599315154252853 ], [ -95.660132070292036, 29.59764315382527 ], [ -95.659982070066235, 29.594114153206483 ], [ -95.660000069891339, 29.593555152951446 ], [ -95.659908070419789, 29.591089152338338 ], [ -95.659905069680235, 29.591002152410358 ], [ -95.659902070249842, 29.590930152562784 ], [ -95.659796069605832, 29.588273152445012 ], [ -95.659759070308155, 29.587282151448218 ], [ -95.659552069784795, 29.581752150924977 ], [ -95.659727069648469, 29.581748150916241 ], [ -95.660563069414266, 29.581749150390682 ], [ -95.661093070151566, 29.581735151152536 ], [ -95.661348069587504, 29.581728150707725 ], [ -95.661606069894532, 29.581721150656378 ], [ -95.66229006985121, 29.58170415076723 ], [ -95.662546070736639, 29.58169715046597 ], [ -95.662783069828222, 29.581691150515677 ], [ -95.663060069906123, 29.581684150510586 ], [ -95.663582071022759, 29.581671150498462 ], [ -95.664253070782166, 29.58165415030269 ], [ -95.664969070938838, 29.58163515011363 ], [ -95.665237071275811, 29.581629150616294 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1471, "Tract": "48201212500", "Area_SqMi": 4.4000166158732616, "total_2009": 9159, "total_2010": 8274, "total_2011": 8173, "total_2012": 7906, "total_2013": 7882, "total_2014": 8728, "total_2015": 9206, "total_2016": 8389, "total_2017": 8936, "total_2018": 8468, "total_2019": 8434, "total_2020": 8128, "age1": 1777, "age2": 4998, "age3": 2417, "earn1": 1621, "earn2": 2228, "earn3": 5343, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 342, "naics_s05": 1664, "naics_s06": 1447, "naics_s07": 42, "naics_s08": 4554, "naics_s09": 8, "naics_s10": 55, "naics_s11": 23, "naics_s12": 274, "naics_s13": 84, "naics_s14": 136, "naics_s15": 1, "naics_s16": 53, "naics_s17": 2, "naics_s18": 86, "naics_s19": 421, "naics_s20": 0, "race1": 6316, "race2": 2346, "race3": 82, "race4": 324, "race5": 10, "race6": 114, "ethnicity1": 5701, "ethnicity2": 3491, "edu1": 1909, "edu2": 2079, "edu3": 2207, "edu4": 1220, "Shape_Length": 76359.593203915836, "Shape_Area": 122664932.54684551, "total_2021": 7908, "total_2022": 9192 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.320044990287201, 29.75613519819829 ], [ -95.320052990707765, 29.756123198353933 ], [ -95.318768989702846, 29.755334197868461 ], [ -95.318109989678248, 29.755034197958171 ], [ -95.31759098998883, 29.754915198001083 ], [ -95.316975989354646, 29.754841197933519 ], [ -95.316521989356232, 29.754838197566141 ], [ -95.316192989584096, 29.75483719809549 ], [ -95.31574898876147, 29.754752197876115 ], [ -95.315439989592747, 29.754949198051623 ], [ -95.315024989301477, 29.75514219816467 ], [ -95.314673988459745, 29.755305198320311 ], [ -95.313843989222761, 29.755518198366811 ], [ -95.313017988813499, 29.755541197785433 ], [ -95.312205988605683, 29.755414197917165 ], [ -95.31107498849444, 29.755092198297902 ], [ -95.310713987580002, 29.754989197623683 ], [ -95.310508988156258, 29.754942198285161 ], [ -95.309459987749293, 29.754700197919902 ], [ -95.308266987044988, 29.75461419776936 ], [ -95.308188987197752, 29.75463019795011 ], [ -95.307461987433669, 29.754777197821152 ], [ -95.306807987432421, 29.755000198009927 ], [ -95.306348987160689, 29.755306197960206 ], [ -95.306094986305254, 29.755531197825992 ], [ -95.306058986916668, 29.755563198419939 ], [ -95.305772986297356, 29.755708198010961 ], [ -95.305511986727268, 29.755781198711261 ], [ -95.305301986978236, 29.755840198239401 ], [ -95.304809986658071, 29.755821198124114 ], [ -95.304348986536496, 29.755664198668665 ], [ -95.304196986439806, 29.755544198121683 ], [ -95.30392598584676, 29.755193198368627 ], [ -95.303160986257865, 29.754200197844387 ], [ -95.302914985974439, 29.753955198078987 ], [ -95.302426986127841, 29.753468197849749 ], [ -95.301804985127262, 29.753053197993822 ], [ -95.300844984887263, 29.752732197617863 ], [ -95.300190985112977, 29.752805198078498 ], [ -95.299969985039255, 29.752900197775798 ], [ -95.299686984806073, 29.753110197531715 ], [ -95.298620984282124, 29.754165198561655 ], [ -95.298360985065059, 29.754244197839267 ], [ -95.298118984307337, 29.754317198178107 ], [ -95.297861985073098, 29.754287197981689 ], [ -95.297424984937678, 29.754235198583029 ], [ -95.297210984436461, 29.754066198274046 ], [ -95.297090984728356, 29.753971197947706 ], [ -95.296713983980922, 29.753452197899058 ], [ -95.296428984253396, 29.753058198130269 ], [ -95.295409983993821, 29.752063197518002 ], [ -95.29517998390422, 29.751758197501299 ], [ -95.295000983900891, 29.751521197650327 ], [ -95.294839983870077, 29.751153198182706 ], [ -95.294833984027107, 29.750866198047106 ], [ -95.29490898414187, 29.75066719767079 ], [ -95.295025983636833, 29.750355197637351 ], [ -95.295129983388961, 29.750250197896946 ], [ -95.295836983723262, 29.749541197524181 ], [ -95.296319983582023, 29.748828196821389 ], [ -95.296522984258317, 29.74816919681184 ], [ -95.296529983599868, 29.747809197276673 ], [ -95.296453984436269, 29.747642197106398 ], [ -95.296262983383286, 29.747454196872731 ], [ -95.295976983985611, 29.747308197030812 ], [ -95.295704984152906, 29.747225196755259 ], [ -95.295251983791175, 29.747188197317524 ], [ -95.294054983753298, 29.747242196963722 ], [ -95.293725983349304, 29.747229197270478 ], [ -95.293675983095198, 29.747225197172966 ], [ -95.293354983388866, 29.747210197284932 ], [ -95.293032983424396, 29.747275196789005 ], [ -95.292364982455851, 29.74756119721458 ], [ -95.292072982848268, 29.747907197519979 ], [ -95.291654982556864, 29.748140197341947 ], [ -95.291203982258295, 29.748317197622377 ], [ -95.290915982886929, 29.748519197423864 ], [ -95.290620982001855, 29.748648197330954 ], [ -95.290469982756107, 29.748779197833606 ], [ -95.289743981853022, 29.7494091974967 ], [ -95.288849982011826, 29.749930197308593 ], [ -95.28881798221289, 29.749915197390067 ], [ -95.288666982035622, 29.749805197857242 ], [ -95.288605981884203, 29.749761197257367 ], [ -95.287059981359775, 29.748639197865913 ], [ -95.286909981964854, 29.748530197044047 ], [ -95.286657981196768, 29.748293197524752 ], [ -95.286580981889458, 29.748163197370346 ], [ -95.284957980931139, 29.745446196759158 ], [ -95.284897981290257, 29.745312196686786 ], [ -95.284917980494441, 29.745205196552622 ], [ -95.284951980706282, 29.74502819643368 ], [ -95.284774980538685, 29.744627196326068 ], [ -95.283842980466375, 29.743480196570349 ], [ -95.283125980177161, 29.742881196738534 ], [ -95.283046979866285, 29.742845196398143 ], [ -95.282874980179358, 29.742767196020434 ], [ -95.28179797972237, 29.741510196316899 ], [ -95.281413979471367, 29.741063196246706 ], [ -95.281223979394966, 29.740720195907464 ], [ -95.280227979152428, 29.7395241955461 ], [ -95.279790979734869, 29.738707195648839 ], [ -95.27925397949501, 29.737896195217672 ], [ -95.279054978733228, 29.737667195156298 ], [ -95.278885978654131, 29.737185194971484 ], [ -95.278001979082589, 29.735358195424638 ], [ -95.277929978650747, 29.734967194706037 ], [ -95.277588978196931, 29.734272194642379 ], [ -95.277497978672457, 29.733885194385426 ], [ -95.277159978600977, 29.733478194634522 ], [ -95.276918978239237, 29.732941194493428 ], [ -95.276468978375007, 29.730887194052858 ], [ -95.276433977861259, 29.730241193867084 ], [ -95.276151977816838, 29.729151193491479 ], [ -95.275922978081141, 29.728648193818859 ], [ -95.275186978009557, 29.727399193449926 ], [ -95.274459977005364, 29.72690719366646 ], [ -95.273745977246861, 29.726437193548982 ], [ -95.271643976319837, 29.725053193154388 ], [ -95.27116097625418, 29.724925192777565 ], [ -95.271010976209027, 29.724885193287662 ], [ -95.270476976301055, 29.724845192875414 ], [ -95.269898975837137, 29.724651193020765 ], [ -95.269327976130853, 29.72473419306521 ], [ -95.266796974826178, 29.724924193332082 ], [ -95.266531975369887, 29.724944193353696 ], [ -95.266639975649085, 29.725766193783215 ], [ -95.266738975714091, 29.726660193346678 ], [ -95.266799975468459, 29.727205194198962 ], [ -95.266815975329664, 29.727724194167568 ], [ -95.266797975765726, 29.72826319363233 ], [ -95.266759975733549, 29.728876194059353 ], [ -95.266700975171304, 29.729351193889933 ], [ -95.266578975263542, 29.730308194250657 ], [ -95.266498975170876, 29.730987194457974 ], [ -95.2664729750243, 29.731208194304884 ], [ -95.266421975532936, 29.73155219507688 ], [ -95.266067975237007, 29.733934194838518 ], [ -95.265931975153578, 29.7348531952881 ], [ -95.265844976048456, 29.735446195237703 ], [ -95.265630975716761, 29.736897195839802 ], [ -95.265521975179837, 29.737636196356288 ], [ -95.265472975378884, 29.737971196227601 ], [ -95.26543197566221, 29.738250196380449 ], [ -95.265288975218041, 29.739217196168752 ], [ -95.265061975741645, 29.740867196630305 ], [ -95.265002975183933, 29.74136919694104 ], [ -95.264960975457242, 29.74192719693065 ], [ -95.264911975928229, 29.74285919733568 ], [ -95.264932975847884, 29.74344019759037 ], [ -95.264907975865782, 29.744778197077945 ], [ -95.264951976035221, 29.745989197676305 ], [ -95.264953975785346, 29.746032197365093 ], [ -95.264961975998673, 29.746275197665771 ], [ -95.2650179759125, 29.747801198238381 ], [ -95.265197976728658, 29.754611199268474 ], [ -95.265344976118882, 29.759724200756875 ], [ -95.265363976483414, 29.760373200780077 ], [ -95.265369976518286, 29.760573200520636 ], [ -95.265457977174705, 29.763445201027793 ], [ -95.265518976741333, 29.76543120146674 ], [ -95.265566977090188, 29.767000201815787 ], [ -95.265577976407585, 29.767363202013069 ], [ -95.265558976617413, 29.768087202181785 ], [ -95.265546976974562, 29.768283201913096 ], [ -95.265499977093626, 29.769047202393818 ], [ -95.265461977053647, 29.769390202629879 ], [ -95.265413977121185, 29.769613202239039 ], [ -95.265395976663726, 29.769696202975538 ], [ -95.265185976764457, 29.77063020257663 ], [ -95.264317976631091, 29.774631203366074 ], [ -95.264195976669413, 29.775191203746576 ], [ -95.264131976504814, 29.775496203692093 ], [ -95.264122976580012, 29.775538204032127 ], [ -95.264112977316501, 29.775587203941203 ], [ -95.264083977155778, 29.775726203865656 ], [ -95.264266977328262, 29.775755203934366 ], [ -95.264296976504781, 29.775760203379331 ], [ -95.264342976662817, 29.775768203456654 ], [ -95.264379977467499, 29.775774204155034 ], [ -95.264999976911483, 29.77587520405454 ], [ -95.266062977873091, 29.776031204039235 ], [ -95.266885977509702, 29.776152203738565 ], [ -95.270578978419721, 29.776766204107449 ], [ -95.271315978660738, 29.776888204205829 ], [ -95.27191897897535, 29.776990203508017 ], [ -95.272130978720725, 29.777026203582047 ], [ -95.275475979632873, 29.777594204224975 ], [ -95.277425979952412, 29.777922203872123 ], [ -95.278233980743977, 29.778063203740505 ], [ -95.278880980563017, 29.778118203416561 ], [ -95.279602980533681, 29.778168204074923 ], [ -95.280420981091083, 29.778152203575939 ], [ -95.281256981763661, 29.778149203342053 ], [ -95.283859982402419, 29.778121203499019 ], [ -95.284042982531801, 29.77812020359767 ], [ -95.284037982062927, 29.777947203902901 ], [ -95.284028981654913, 29.777616203223825 ], [ -95.284021982374597, 29.776883202976851 ], [ -95.283988981880128, 29.775348202965056 ], [ -95.283960981850157, 29.774584203070873 ], [ -95.283962982048848, 29.774286203200315 ], [ -95.283957982069325, 29.774117203109803 ], [ -95.283916982282818, 29.772185202424801 ], [ -95.283848981865447, 29.769135201389606 ], [ -95.283813981692305, 29.768222201847674 ], [ -95.283811981506631, 29.767932201122498 ], [ -95.283803981950371, 29.766959201091947 ], [ -95.283786981464573, 29.765999200793161 ], [ -95.283759981887641, 29.765286201149287 ], [ -95.283753980944525, 29.764603200452132 ], [ -95.28374898157692, 29.764416201221596 ], [ -95.283733981122495, 29.763918200988087 ], [ -95.283719981429172, 29.763237200596777 ], [ -95.283716981771207, 29.762542200268161 ], [ -95.283699981385155, 29.761864199959028 ], [ -95.283703981717267, 29.761165200517862 ], [ -95.283690980865074, 29.760475200409676 ], [ -95.283678980864366, 29.759798199540501 ], [ -95.283652981410157, 29.759097199554144 ], [ -95.283628980686629, 29.758421199729312 ], [ -95.283615981572353, 29.757727199296891 ], [ -95.283613980987738, 29.757037199390876 ], [ -95.283593981031103, 29.75635419964112 ], [ -95.283580981004818, 29.755657199130912 ], [ -95.283566981182801, 29.754972199075038 ], [ -95.283555980762628, 29.754277199042772 ], [ -95.283546981239382, 29.753596198210712 ], [ -95.283536981213203, 29.752902198750807 ], [ -95.283520981177119, 29.752176198473315 ], [ -95.283524980350876, 29.751407198019113 ], [ -95.283488980429425, 29.750679198345509 ], [ -95.283492980569818, 29.750541197753297 ], [ -95.283504981038831, 29.750103197933608 ], [ -95.285427981089711, 29.751365198064988 ], [ -95.286197981753787, 29.751890198201664 ], [ -95.286523981347756, 29.752090197899381 ], [ -95.28697098198657, 29.752371198460956 ], [ -95.288317982396961, 29.753241198262089 ], [ -95.291266982883201, 29.755195198529162 ], [ -95.291430983106579, 29.755341198885752 ], [ -95.291861983105676, 29.755753198383506 ], [ -95.292160983484081, 29.756059198820317 ], [ -95.292496982860214, 29.756394199250582 ], [ -95.293131983663585, 29.757016198874972 ], [ -95.29339798305017, 29.757152199365759 ], [ -95.293644983347008, 29.757183198719073 ], [ -95.293893983203532, 29.757174198950878 ], [ -95.294120984016743, 29.757143199331107 ], [ -95.294229983399774, 29.757090198742965 ], [ -95.294320983780665, 29.757054198839594 ], [ -95.294453984164633, 29.756984199008038 ], [ -95.29448098361226, 29.756966198716832 ], [ -95.294525984382105, 29.756936198567455 ], [ -95.294602983748817, 29.756885198603449 ], [ -95.294830984341715, 29.75682419851886 ], [ -95.294880983668335, 29.75682319894533 ], [ -95.295007983908832, 29.756820198780687 ], [ -95.295268983923847, 29.756815198626015 ], [ -95.296823984098609, 29.756771199221873 ], [ -95.297362984957999, 29.756856198435582 ], [ -95.297894984375745, 29.756959199228117 ], [ -95.298544985306464, 29.757105198411942 ], [ -95.298647985379461, 29.757157198534781 ], [ -95.30013798578095, 29.757952198964947 ], [ -95.300502984997706, 29.758147199156365 ], [ -95.301269985571338, 29.758551199323982 ], [ -95.302572985786497, 29.75921819913269 ], [ -95.304319986736587, 29.760157199176128 ], [ -95.305381986577373, 29.760721199663308 ], [ -95.305953986742281, 29.760916199453501 ], [ -95.306848987662789, 29.761151199717744 ], [ -95.307742986967867, 29.761392199798593 ], [ -95.308457988124118, 29.761601199274313 ], [ -95.31141498806501, 29.762447199459505 ], [ -95.312006988387537, 29.762621199791365 ], [ -95.31302398882147, 29.762913199797818 ], [ -95.315486989560654, 29.763632199373269 ], [ -95.316639990158407, 29.761647199115512 ], [ -95.317310989974416, 29.760474198996121 ], [ -95.318108990144523, 29.759062198635416 ], [ -95.318960989642406, 29.757675198192288 ], [ -95.319340990200558, 29.757202198186288 ], [ -95.319893990642129, 29.75636419774154 ], [ -95.320044990287201, 29.75613519819829 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1472, "Tract": "48157672702", "Area_SqMi": 1.3381190528927804, "total_2009": 182, "total_2010": 262, "total_2011": 483, "total_2012": 505, "total_2013": 501, "total_2014": 347, "total_2015": 386, "total_2016": 371, "total_2017": 357, "total_2018": 335, "total_2019": 325, "total_2020": 309, "age1": 107, "age2": 184, "age3": 83, "earn1": 112, "earn2": 138, "earn3": 124, "naics_s01": 0, "naics_s02": 0, "naics_s03": 11, "naics_s04": 62, "naics_s05": 8, "naics_s06": 6, "naics_s07": 19, "naics_s08": 32, "naics_s09": 0, "naics_s10": 4, "naics_s11": 27, "naics_s12": 27, "naics_s13": 0, "naics_s14": 16, "naics_s15": 0, "naics_s16": 9, "naics_s17": 23, "naics_s18": 118, "naics_s19": 12, "naics_s20": 0, "race1": 243, "race2": 61, "race3": 2, "race4": 60, "race5": 0, "race6": 8, "ethnicity1": 254, "ethnicity2": 120, "edu1": 69, "edu2": 63, "edu3": 73, "edu4": 62, "Shape_Length": 29868.143101591821, "Shape_Area": 37304468.981002957, "total_2021": 299, "total_2022": 374 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.682914078171891, 29.633352160940198 ], [ -95.682801077295977, 29.63334616029881 ], [ -95.679846076414861, 29.633374161064381 ], [ -95.676948076666989, 29.633384160602336 ], [ -95.675487075785441, 29.633422160985933 ], [ -95.674667075852625, 29.633444160793744 ], [ -95.674566075422348, 29.633454160678838 ], [ -95.674467075661468, 29.633471160425866 ], [ -95.674369075845561, 29.633498160776234 ], [ -95.674275075341072, 29.633533161128856 ], [ -95.673248075661874, 29.633987161069076 ], [ -95.673151074753193, 29.634030160963732 ], [ -95.673058075378179, 29.634071160754576 ], [ -95.672788074982748, 29.63419016095385 ], [ -95.672286074593586, 29.634405160651809 ], [ -95.671588074938981, 29.634696161336436 ], [ -95.670960074260833, 29.63494616118809 ], [ -95.670496074114126, 29.635120161699316 ], [ -95.670150074378725, 29.635239161480367 ], [ -95.669694074719516, 29.635386161266055 ], [ -95.668404074614855, 29.635784161265892 ], [ -95.667982073677848, 29.635907161358407 ], [ -95.667238073616929, 29.63609816136729 ], [ -95.666601073714403, 29.636250161598323 ], [ -95.665116073517225, 29.636626161434471 ], [ -95.664888073376147, 29.636689161835701 ], [ -95.664819072988408, 29.636720161721321 ], [ -95.66475807358583, 29.636763161917216 ], [ -95.664709072721593, 29.636818161864827 ], [ -95.664672073717355, 29.636883161436238 ], [ -95.664644073158826, 29.636956162291867 ], [ -95.664504072916529, 29.63737416162439 ], [ -95.66447107288927, 29.637456161605343 ], [ -95.664420073393941, 29.637613161831947 ], [ -95.664401073170552, 29.63768916162363 ], [ -95.664375072735623, 29.637765162055238 ], [ -95.664344072667873, 29.637839162213897 ], [ -95.664240073621841, 29.638133161909977 ], [ -95.664157073119341, 29.638339162401099 ], [ -95.66413707351127, 29.638405162302895 ], [ -95.664008073577875, 29.638675162418298 ], [ -95.663999072778083, 29.638695162342234 ], [ -95.663966072833915, 29.638769162206856 ], [ -95.663843072864736, 29.638956162565957 ], [ -95.663809072849759, 29.639023161957677 ], [ -95.663763073028349, 29.639091162002298 ], [ -95.663708072900462, 29.639160162540605 ], [ -95.663667073023504, 29.639231162058842 ], [ -95.663153072667555, 29.639970162855885 ], [ -95.663103072850049, 29.640029162143236 ], [ -95.662982072672918, 29.640204162415348 ], [ -95.662953072840594, 29.640261162392399 ], [ -95.662818072699167, 29.640471163057757 ], [ -95.662778072816863, 29.640518162910595 ], [ -95.662722072659022, 29.640607162911053 ], [ -95.66270607320827, 29.640651162408638 ], [ -95.662662073221966, 29.640732162848796 ], [ -95.66263107248939, 29.640770163103529 ], [ -95.662615073224984, 29.640804162385201 ], [ -95.66250107284587, 29.64106216277138 ], [ -95.662470072987816, 29.64118016287885 ], [ -95.662457073274609, 29.641265163176548 ], [ -95.662398073132465, 29.641833163101971 ], [ -95.662318072890159, 29.642607163053462 ], [ -95.662268072875776, 29.643083163100499 ], [ -95.662233072756393, 29.643433163057267 ], [ -95.662135073374827, 29.644555163842753 ], [ -95.66213707331552, 29.644645163177877 ], [ -95.66212307279838, 29.644725163152671 ], [ -95.662114072851054, 29.64490316325039 ], [ -95.662088072444448, 29.645123163732457 ], [ -95.662063072424345, 29.64525216377092 ], [ -95.662054072802746, 29.64528316389551 ], [ -95.662015072694629, 29.645367163648942 ], [ -95.66197707314052, 29.645425163814572 ], [ -95.661954073118963, 29.645456164091218 ], [ -95.661737073052805, 29.64535216361055 ], [ -95.661562072344637, 29.645289163293302 ], [ -95.661412072409178, 29.645247164047206 ], [ -95.661216072741254, 29.645216163831702 ], [ -95.661065072500648, 29.645198163553008 ], [ -95.66081307230084, 29.645188163527894 ], [ -95.658362071545923, 29.645139164052338 ], [ -95.658156071822447, 29.645127163611512 ], [ -95.657993072288576, 29.645112163872316 ], [ -95.657855072070376, 29.645080163461916 ], [ -95.657713071669576, 29.645032164135717 ], [ -95.657491071813197, 29.644948163989422 ], [ -95.657295071809699, 29.644853163478739 ], [ -95.656973071893859, 29.644678164136486 ], [ -95.656762071737433, 29.644578163996648 ], [ -95.656619071072612, 29.644520163547611 ], [ -95.656471071606319, 29.644472163749548 ], [ -95.656339071322122, 29.644441163699891 ], [ -95.656207071374396, 29.644414163973828 ], [ -95.656059071280438, 29.64439816366643 ], [ -95.655534070805615, 29.644383163373647 ], [ -95.655267071282637, 29.644386164025029 ], [ -95.654255070914232, 29.644395163492788 ], [ -95.654149070756304, 29.644396163989988 ], [ -95.652064070061215, 29.644405164090614 ], [ -95.651922070724481, 29.644403163745519 ], [ -95.651837069767254, 29.644402163944701 ], [ -95.651600070479077, 29.644400163411461 ], [ -95.651610069892655, 29.646095164312573 ], [ -95.651497069845789, 29.647294164832086 ], [ -95.651445070094624, 29.647644164230019 ], [ -95.651184070738452, 29.648991164462302 ], [ -95.650903070023929, 29.649792164756072 ], [ -95.651087069993437, 29.64982216478732 ], [ -95.651645070480498, 29.649913164630014 ], [ -95.651876070237435, 29.649947165391776 ], [ -95.651963070516715, 29.649960164948833 ], [ -95.652014070365837, 29.649965164829275 ], [ -95.652065070219891, 29.649970164690274 ], [ -95.652639070478699, 29.6500141653597 ], [ -95.653102070425334, 29.650005165025746 ], [ -95.653355070946347, 29.649997165275405 ], [ -95.653697071077104, 29.649963164892537 ], [ -95.654060071058979, 29.649916164513609 ], [ -95.654360071583667, 29.649868165287796 ], [ -95.654618071184515, 29.649834165178632 ], [ -95.654950071334937, 29.649816164392831 ], [ -95.655155071606188, 29.649821164535211 ], [ -95.655325071881038, 29.649819164571763 ], [ -95.655974071165986, 29.649856164775521 ], [ -95.656257071457532, 29.649883164623191 ], [ -95.656634071858477, 29.649949164789348 ], [ -95.657001071562803, 29.650011164601526 ], [ -95.657267071560554, 29.65004716474278 ], [ -95.657488072461547, 29.650060164608867 ], [ -95.657776071987243, 29.650078165017955 ], [ -95.657957071631415, 29.650082164416695 ], [ -95.658293072548645, 29.650078164700009 ], [ -95.659538072397879, 29.650047164560331 ], [ -95.659900073071228, 29.650045164507734 ], [ -95.660454073088559, 29.650021164827979 ], [ -95.660951072863966, 29.650039164490874 ], [ -95.661320072672709, 29.65008216500507 ], [ -95.662638073178641, 29.650324165116604 ], [ -95.662943073373228, 29.650404164365302 ], [ -95.663204073719768, 29.650477164693818 ], [ -95.663416073363408, 29.650537164715175 ], [ -95.663443073177618, 29.650545164345505 ], [ -95.66362007340409, 29.650593164948479 ], [ -95.664327074092313, 29.650804164671914 ], [ -95.664374073784685, 29.650812165162584 ], [ -95.664673074182289, 29.650860164469691 ], [ -95.664966073446024, 29.650889164972384 ], [ -95.665201074089182, 29.650893164995701 ], [ -95.665656074421207, 29.650897164284952 ], [ -95.665994073923741, 29.650889164750758 ], [ -95.666180073790983, 29.650877164783648 ], [ -95.666550074808569, 29.650836164822142 ], [ -95.666773074805818, 29.650787164410691 ], [ -95.666960074623432, 29.650751164921811 ], [ -95.667257074085043, 29.650694165003255 ], [ -95.667574074113446, 29.650609164716542 ], [ -95.667708074678401, 29.650560164763331 ], [ -95.66807307430129, 29.650430164657049 ], [ -95.668313074969717, 29.650324164468916 ], [ -95.669069075206139, 29.649979164311613 ], [ -95.66982707536765, 29.649689164191287 ], [ -95.670026075318731, 29.64961716453622 ], [ -95.670240074803857, 29.649551164681391 ], [ -95.670384075102007, 29.649519164459925 ], [ -95.670618075717968, 29.649473164532871 ], [ -95.670725075310017, 29.649458164300864 ], [ -95.671183075487789, 29.649389163925804 ], [ -95.671466075753159, 29.64936916444433 ], [ -95.672258075566802, 29.649331163889226 ], [ -95.672744075650286, 29.649351164281697 ], [ -95.67308507577458, 29.649351163754901 ], [ -95.673534075874016, 29.649323164418643 ], [ -95.673952075925413, 29.649286164064353 ], [ -95.674662076332496, 29.649160163975715 ], [ -95.675218076347974, 29.649050163825375 ], [ -95.675683076196961, 29.648995163757025 ], [ -95.675989076917503, 29.64896016387517 ], [ -95.676269077012236, 29.64894016373173 ], [ -95.676312077051477, 29.64893916356532 ], [ -95.676580076358334, 29.648932164023083 ], [ -95.676863076649255, 29.648923164282255 ], [ -95.677693077585843, 29.648949163942753 ], [ -95.679475077290334, 29.648972163712212 ], [ -95.679429077895733, 29.64854816403211 ], [ -95.679400077545537, 29.648160163752731 ], [ -95.679365077157911, 29.647466163726353 ], [ -95.679317077626976, 29.646745163154591 ], [ -95.679190076810087, 29.644661162745873 ], [ -95.679155076847721, 29.644085162835339 ], [ -95.679151077120181, 29.643498162675815 ], [ -95.679186076873904, 29.643204162995715 ], [ -95.6792130776996, 29.643011162444882 ], [ -95.679282077326604, 29.642706162954862 ], [ -95.679402077517949, 29.642286162707421 ], [ -95.679472077588045, 29.642112162188702 ], [ -95.679545077498872, 29.641965162214799 ], [ -95.679661077406081, 29.641741161938757 ], [ -95.680074077854115, 29.640977161769705 ], [ -95.680255077303912, 29.640660162075573 ], [ -95.680908077693658, 29.639512161469796 ], [ -95.681972077182905, 29.637567161781057 ], [ -95.682275077638053, 29.637011161574399 ], [ -95.682569078162217, 29.636304161479703 ], [ -95.682664077694696, 29.635943161305718 ], [ -95.682750077619943, 29.635385160493044 ], [ -95.682914078171891, 29.633352160940198 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1473, "Tract": "48157672602", "Area_SqMi": 0.80390658906000267, "total_2009": 146, "total_2010": 204, "total_2011": 241, "total_2012": 261, "total_2013": 284, "total_2014": 294, "total_2015": 284, "total_2016": 203, "total_2017": 180, "total_2018": 150, "total_2019": 185, "total_2020": 191, "age1": 39, "age2": 79, "age3": 62, "earn1": 94, "earn2": 49, "earn3": 37, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 2, "naics_s07": 16, "naics_s08": 4, "naics_s09": 0, "naics_s10": 3, "naics_s11": 3, "naics_s12": 14, "naics_s13": 0, "naics_s14": 7, "naics_s15": 14, "naics_s16": 109, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 53, "race2": 81, "race3": 3, "race4": 41, "race5": 1, "race6": 1, "ethnicity1": 152, "ethnicity2": 28, "edu1": 26, "edu2": 26, "edu3": 46, "edu4": 43, "Shape_Length": 24523.066743271003, "Shape_Area": 22411539.803114753, "total_2021": 192, "total_2022": 180 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.6879990818679, 29.692210172517225 ], [ -95.687978081359702, 29.689871171684175 ], [ -95.687989081316985, 29.688829171899304 ], [ -95.687966081132828, 29.688210171817666 ], [ -95.687959081858892, 29.687772171790911 ], [ -95.687956081155932, 29.687511171604605 ], [ -95.687949081576789, 29.686936171320593 ], [ -95.687941081464089, 29.686137171254337 ], [ -95.687932080827309, 29.685109170795954 ], [ -95.687899081585755, 29.684865171043828 ], [ -95.687831080819734, 29.684103171033801 ], [ -95.687789080825056, 29.683423170950537 ], [ -95.687715081258787, 29.683425170211244 ], [ -95.687504081491937, 29.683427170492838 ], [ -95.687455081058204, 29.683428170574867 ], [ -95.687210080909779, 29.683428170293816 ], [ -95.686937080731383, 29.683429170965411 ], [ -95.686588080521773, 29.68343017057461 ], [ -95.686498081216556, 29.683430170198857 ], [ -95.68630508038305, 29.683431170720905 ], [ -95.686195081208353, 29.683431170722496 ], [ -95.68607308030947, 29.68341017037093 ], [ -95.685126080134339, 29.683417170762649 ], [ -95.684983080540903, 29.683419170744724 ], [ -95.682188079714734, 29.683441171062796 ], [ -95.68163607990671, 29.683405170550667 ], [ -95.681092079036773, 29.683260170513215 ], [ -95.680291078893532, 29.68297017057408 ], [ -95.680230078973196, 29.682948170666759 ], [ -95.680198079503498, 29.682722170561842 ], [ -95.680126079123639, 29.681384170544153 ], [ -95.680126079207369, 29.681207170557308 ], [ -95.680057079306025, 29.680386169992339 ], [ -95.679988079125621, 29.68038217007015 ], [ -95.679902078875216, 29.680379170191692 ], [ -95.679713079015428, 29.680418170103579 ], [ -95.679574079279135, 29.680429170400739 ], [ -95.678768078563408, 29.680445170086251 ], [ -95.677919078117924, 29.680511170733432 ], [ -95.67720107860859, 29.680522170406629 ], [ -95.676965078660331, 29.680516169987278 ], [ -95.6768140779118, 29.68051217049408 ], [ -95.676767077746703, 29.680511170050902 ], [ -95.674196077460309, 29.680577170523293 ], [ -95.674011077843076, 29.680605170466592 ], [ -95.673720076966873, 29.680648170369494 ], [ -95.673247077444529, 29.680830170106425 ], [ -95.673103076995545, 29.68091817072397 ], [ -95.672958077581029, 29.681033170694498 ], [ -95.67280007773995, 29.681225170973441 ], [ -95.672637077144174, 29.681478171058579 ], [ -95.672523077521134, 29.681621171047919 ], [ -95.67234107675263, 29.681759171067426 ], [ -95.671995077391983, 29.681962171058725 ], [ -95.671805076758957, 29.682003170468118 ], [ -95.671510076859448, 29.682066171147149 ], [ -95.67131507721875, 29.682088170993691 ], [ -95.671145076997959, 29.682077170527606 ], [ -95.67086807634665, 29.682044170933104 ], [ -95.670584076951528, 29.681967171096606 ], [ -95.669502076193439, 29.681597171203734 ], [ -95.66912407632185, 29.681467170654567 ], [ -95.669053076782816, 29.68144317114789 ], [ -95.668180076376927, 29.681159170754853 ], [ -95.665378075468197, 29.680213171004933 ], [ -95.664384074575835, 29.679905171088592 ], [ -95.664182075445396, 29.679856170302045 ], [ -95.663817074391332, 29.679817170628635 ], [ -95.66347107452583, 29.679828171028799 ], [ -95.662980074451539, 29.679933170466651 ], [ -95.662842074800722, 29.679955170442316 ], [ -95.662262074589108, 29.679965170643413 ], [ -95.662094074949493, 29.679966170847734 ], [ -95.662087074831575, 29.680289170839838 ], [ -95.662076074495175, 29.680553170705977 ], [ -95.662065074173043, 29.680739170772735 ], [ -95.662050074147857, 29.680951171236821 ], [ -95.662027074244179, 29.681130171099166 ], [ -95.66200507463833, 29.681249170858973 ], [ -95.661969074181997, 29.681423171035583 ], [ -95.661966074644994, 29.681437170785877 ], [ -95.661935074799416, 29.681670170703111 ], [ -95.661880074577965, 29.682084170941234 ], [ -95.661866074336771, 29.682374171635647 ], [ -95.661866074327634, 29.682561171562558 ], [ -95.661885074365742, 29.682910171381089 ], [ -95.661915074347064, 29.683146171342749 ], [ -95.66195907463225, 29.683422171408722 ], [ -95.661984074660666, 29.683560171294985 ], [ -95.662033074619387, 29.683737171345644 ], [ -95.662058074847124, 29.683840171298012 ], [ -95.662274074630147, 29.684483171225736 ], [ -95.662472074435456, 29.684863171308095 ], [ -95.662632075155187, 29.685139172103224 ], [ -95.662745075174982, 29.685342171876083 ], [ -95.662857074667542, 29.685560171563385 ], [ -95.663033074591866, 29.685984171886172 ], [ -95.663117075165204, 29.686229172134059 ], [ -95.663188074810222, 29.686450171778468 ], [ -95.663241075293669, 29.686668172044463 ], [ -95.663272074604023, 29.686856172540107 ], [ -95.663295075067936, 29.687031171880687 ], [ -95.663327075008098, 29.688031172292337 ], [ -95.663347074908629, 29.688927172715292 ], [ -95.669012076409203, 29.688842172735683 ], [ -95.669904077073426, 29.688830172292061 ], [ -95.67150407699755, 29.688821172153073 ], [ -95.672868077467555, 29.688791172295947 ], [ -95.673575078239935, 29.688786171797076 ], [ -95.674264077548727, 29.688786172266436 ], [ -95.674643077709362, 29.688713172464162 ], [ -95.676182078469012, 29.688508172363978 ], [ -95.676477078535029, 29.688483171976738 ], [ -95.676933078433862, 29.688463172009133 ], [ -95.678098078532557, 29.688447172286004 ], [ -95.678619079522193, 29.688444172275162 ], [ -95.679007079183194, 29.688430171541047 ], [ -95.679265079062361, 29.688410172138759 ], [ -95.679520079110546, 29.688381171915065 ], [ -95.679551079308851, 29.688376172030942 ], [ -95.679773079401897, 29.688344172312704 ], [ -95.680025078918646, 29.688296171651608 ], [ -95.68039507991827, 29.688208172163588 ], [ -95.680623079605425, 29.688142172138889 ], [ -95.680930079372601, 29.688045171911075 ], [ -95.681463080021814, 29.687839171905981 ], [ -95.681527079660839, 29.687929171598395 ], [ -95.681663079367127, 29.688109171465669 ], [ -95.68179808023109, 29.688173171549604 ], [ -95.682198080273352, 29.688630172229256 ], [ -95.682303080095011, 29.688739171913983 ], [ -95.683055080435025, 29.689524171556148 ], [ -95.683432079901209, 29.689934171648019 ], [ -95.683697080143659, 29.690194171909923 ], [ -95.683997080894287, 29.690589171808192 ], [ -95.684208080178735, 29.690792172357742 ], [ -95.684367080682719, 29.69093317179944 ], [ -95.684628081019028, 29.691140172559031 ], [ -95.684907080690166, 29.691339172637729 ], [ -95.685483080736091, 29.691699172489749 ], [ -95.685573081259548, 29.691716172267359 ], [ -95.685903081448998, 29.691935172471055 ], [ -95.68598208153557, 29.691980172194636 ], [ -95.68608408136663, 29.692032172153201 ], [ -95.686191080652108, 29.692084172092059 ], [ -95.686264081101058, 29.692116172704626 ], [ -95.68637708102122, 29.692152172374559 ], [ -95.686560081560444, 29.692200172134914 ], [ -95.686798081260264, 29.692218172136524 ], [ -95.686994081579556, 29.692226172423826 ], [ -95.687969081595668, 29.692210172465234 ], [ -95.6879990818679, 29.692210172517225 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1474, "Tract": "48339691601", "Area_SqMi": 1.3956075082710431, "total_2009": 2361, "total_2010": 2056, "total_2011": 1974, "total_2012": 2370, "total_2013": 2266, "total_2014": 2398, "total_2015": 2389, "total_2016": 2669, "total_2017": 2745, "total_2018": 2409, "total_2019": 2456, "total_2020": 2531, "age1": 832, "age2": 2102, "age3": 774, "earn1": 492, "earn2": 1009, "earn3": 2207, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 196, "naics_s05": 35, "naics_s06": 284, "naics_s07": 71, "naics_s08": 14, "naics_s09": 10, "naics_s10": 207, "naics_s11": 227, "naics_s12": 380, "naics_s13": 0, "naics_s14": 1087, "naics_s15": 28, "naics_s16": 614, "naics_s17": 140, "naics_s18": 345, "naics_s19": 66, "naics_s20": 0, "race1": 2762, "race2": 584, "race3": 21, "race4": 277, "race5": 10, "race6": 54, "ethnicity1": 2900, "ethnicity2": 808, "edu1": 436, "edu2": 704, "edu3": 908, "edu4": 828, "Shape_Length": 27648.238987961842, "Shape_Area": 38907148.724474192, "total_2021": 2599, "total_2022": 3708 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.473617047918495, 30.153157274001323 ], [ -95.473620047525628, 30.152770273939844 ], [ -95.473599047897082, 30.152381273817014 ], [ -95.473584047806312, 30.152240273211493 ], [ -95.473558047201195, 30.151998273674376 ], [ -95.4735410472951, 30.151904273580541 ], [ -95.47349204726757, 30.151614273380019 ], [ -95.473435047901802, 30.1513622734929 ], [ -95.473363047739738, 30.151098272979461 ], [ -95.473324047444763, 30.150971272986833 ], [ -95.473236047751072, 30.150721273422079 ], [ -95.473141047719949, 30.150474273437247 ], [ -95.472918047328221, 30.149986272544798 ], [ -95.472791047446719, 30.149749272520605 ], [ -95.472587047588888, 30.14940027286989 ], [ -95.472313047263341, 30.148986272371708 ], [ -95.471268047329843, 30.147366272703962 ], [ -95.470181046075368, 30.145662272153377 ], [ -95.469988046530361, 30.145360271768983 ], [ -95.469528045996441, 30.14461327220674 ], [ -95.469165046180436, 30.143971272327065 ], [ -95.468830046556903, 30.143321271551539 ], [ -95.468229045585474, 30.141930271434745 ], [ -95.467890045812368, 30.141173271679961 ], [ -95.467572045199404, 30.141266271480539 ], [ -95.46727204538432, 30.141366271260893 ], [ -95.46700004559051, 30.141468271129487 ], [ -95.466839045692154, 30.141541271712974 ], [ -95.466761045457986, 30.141583271705755 ], [ -95.466538044893468, 30.141720271555492 ], [ -95.466466044941541, 30.141771271952344 ], [ -95.466331045836341, 30.141877271710879 ], [ -95.466204044912445, 30.141992271158674 ], [ -95.465978045131678, 30.142234271607435 ], [ -95.465876045789116, 30.142352271443613 ], [ -95.465773044992176, 30.142446271975658 ], [ -95.465550045421082, 30.14261327204682 ], [ -95.465393044755274, 30.142700271322781 ], [ -95.465267044706508, 30.142765271850941 ], [ -95.465098044601632, 30.142832271373479 ], [ -95.464851044826958, 30.142906271428583 ], [ -95.463433044869404, 30.143218271673138 ], [ -95.463298044875472, 30.143256272049978 ], [ -95.463118044667453, 30.143292272339131 ], [ -95.463015045093599, 30.143306271749744 ], [ -95.462827044123671, 30.143320271573472 ], [ -95.46271704475042, 30.14332027171567 ], [ -95.462542044103486, 30.143299271833069 ], [ -95.462301043977291, 30.143235271583912 ], [ -95.462158044507262, 30.143184271617585 ], [ -95.461936044329263, 30.143121272197799 ], [ -95.461828043800679, 30.143099271824276 ], [ -95.461710044607898, 30.143084271907625 ], [ -95.461574044578612, 30.143078272221651 ], [ -95.461418044199576, 30.143082271559447 ], [ -95.460999043903882, 30.143096272437425 ], [ -95.460660043922886, 30.143104272225358 ], [ -95.459597043688291, 30.14313127241525 ], [ -95.458031043291669, 30.143177271850856 ], [ -95.457042043230729, 30.14320427253627 ], [ -95.455731043183292, 30.143246272538072 ], [ -95.455515042421666, 30.143276272667549 ], [ -95.455092042946788, 30.143359272705919 ], [ -95.454679042859979, 30.143477272406873 ], [ -95.454468042095499, 30.143549271874928 ], [ -95.454289041904772, 30.143615272427766 ], [ -95.454210042203513, 30.143509272011183 ], [ -95.454145042343043, 30.143397272321394 ], [ -95.454089042339717, 30.143269272423275 ], [ -95.454056041997916, 30.143175272349453 ], [ -95.454027042199115, 30.143072272100095 ], [ -95.45400104187685, 30.142884272171916 ], [ -95.454011042426544, 30.142708271800213 ], [ -95.45404504194687, 30.1425502723169 ], [ -95.454070042479344, 30.142473272284871 ], [ -95.454144042105582, 30.142316272117508 ], [ -95.454368042449602, 30.141975272125052 ], [ -95.454459042503387, 30.141854272321005 ], [ -95.454684042617984, 30.141510271963885 ], [ -95.454783042104197, 30.14134527144974 ], [ -95.454846042776495, 30.141160271526772 ], [ -95.454862042500508, 30.141083271480692 ], [ -95.454893042459076, 30.140856271886012 ], [ -95.454898042071349, 30.140652272137306 ], [ -95.454139042657658, 30.140646271498042 ], [ -95.452871041451942, 30.140636271398375 ], [ -95.450809041444643, 30.140621271537416 ], [ -95.450546041239406, 30.140626271620086 ], [ -95.450107041078141, 30.140636271988928 ], [ -95.449666040821285, 30.140646272290262 ], [ -95.448874040599392, 30.140661271760841 ], [ -95.448129040472637, 30.140677272053885 ], [ -95.446516040713519, 30.140698271870392 ], [ -95.446089040237368, 30.140658271715076 ], [ -95.446106039801137, 30.140742271840782 ], [ -95.446245039750238, 30.141384272410885 ], [ -95.446732040119912, 30.143779272811507 ], [ -95.44688704010585, 30.144540272417622 ], [ -95.446947040714562, 30.144828272509812 ], [ -95.447209040399841, 30.146075273108249 ], [ -95.447367040969212, 30.146829272886446 ], [ -95.447428040834126, 30.147119273552715 ], [ -95.447649041385517, 30.148180273590931 ], [ -95.448382041059205, 30.151500274086235 ], [ -95.448435041121385, 30.151762274490395 ], [ -95.449011041644198, 30.154590274659657 ], [ -95.449403042213262, 30.156433275374777 ], [ -95.449502041545458, 30.15690027528672 ], [ -95.449513042140779, 30.156957274872202 ], [ -95.44981904163528, 30.156906275106909 ], [ -95.450181042060805, 30.156854274829559 ], [ -95.450421042288099, 30.156812275045606 ], [ -95.450678041658236, 30.156784274717598 ], [ -95.45082904253249, 30.156761275475535 ], [ -95.45113704228838, 30.156708274973319 ], [ -95.451524042155924, 30.156725275157655 ], [ -95.451770042043762, 30.156752274927211 ], [ -95.451924041979993, 30.156753274980641 ], [ -95.452081042582861, 30.156760275453969 ], [ -95.452694042925245, 30.156743275384311 ], [ -95.453309042286193, 30.15672127469859 ], [ -95.454378042927303, 30.156660274808022 ], [ -95.454730042785044, 30.156661274823151 ], [ -95.455430043438525, 30.156652275070467 ], [ -95.455759042990024, 30.156638274773872 ], [ -95.45648404311126, 30.156597274811659 ], [ -95.456875043690488, 30.156560274916121 ], [ -95.457453044119291, 30.156532274655092 ], [ -95.458032043751899, 30.156489274819442 ], [ -95.458608043963537, 30.15643827481194 ], [ -95.459033044270285, 30.156394274683493 ], [ -95.461899045215489, 30.156098274215019 ], [ -95.462364045262532, 30.156058274926274 ], [ -95.463731045410384, 30.155954274198251 ], [ -95.464608045915512, 30.155911274637837 ], [ -95.465498045714369, 30.155899274078013 ], [ -95.469480046476335, 30.15584327443079 ], [ -95.472977047798366, 30.155551274314639 ], [ -95.473006048019656, 30.155495274173685 ], [ -95.47308704728367, 30.155321274367804 ], [ -95.473184047998146, 30.155112273662535 ], [ -95.473270047880305, 30.154901274228209 ], [ -95.473405047392077, 30.154475273714876 ], [ -95.473500047622863, 30.154092273877708 ], [ -95.473575048162786, 30.153671273423665 ], [ -95.473591047863977, 30.153542274015031 ], [ -95.473617047918495, 30.153157274001323 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1475, "Tract": "48157674601", "Area_SqMi": 1.2729635216150488, "total_2009": 489, "total_2010": 528, "total_2011": 706, "total_2012": 784, "total_2013": 826, "total_2014": 658, "total_2015": 721, "total_2016": 664, "total_2017": 673, "total_2018": 710, "total_2019": 687, "total_2020": 661, "age1": 217, "age2": 452, "age3": 187, "earn1": 226, "earn2": 287, "earn3": 343, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 1, "naics_s06": 10, "naics_s07": 48, "naics_s08": 75, "naics_s09": 0, "naics_s10": 9, "naics_s11": 3, "naics_s12": 216, "naics_s13": 4, "naics_s14": 12, "naics_s15": 8, "naics_s16": 196, "naics_s17": 24, "naics_s18": 183, "naics_s19": 46, "naics_s20": 0, "race1": 586, "race2": 161, "race3": 7, "race4": 92, "race5": 0, "race6": 10, "ethnicity1": 602, "ethnicity2": 254, "edu1": 124, "edu2": 157, "edu3": 183, "edu4": 175, "Shape_Length": 25353.271328051025, "Shape_Area": 35488044.283786081, "total_2021": 625, "total_2022": 856 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.69509407754397, 29.552527143497645 ], [ -95.695109077261918, 29.552497143123581 ], [ -95.694985077182196, 29.552461143902008 ], [ -95.693579077097866, 29.551893143696994 ], [ -95.692210076967541, 29.551355143702263 ], [ -95.691896076340498, 29.551230143073738 ], [ -95.691544076752933, 29.551116143467212 ], [ -95.691270075926496, 29.551051143755942 ], [ -95.69099007582453, 29.55099914377336 ], [ -95.690643076089572, 29.550948143369421 ], [ -95.690245076053273, 29.55090114304279 ], [ -95.690014076054339, 29.550888143724876 ], [ -95.689735075473706, 29.550890143709797 ], [ -95.689400076040499, 29.550911143765806 ], [ -95.689049075796135, 29.550938143817035 ], [ -95.688772076076972, 29.550963143677809 ], [ -95.688351075709235, 29.551014143713925 ], [ -95.688105075656935, 29.551061143629983 ], [ -95.687938075354936, 29.551097143315971 ], [ -95.6877770757539, 29.55113114314657 ], [ -95.687431075002195, 29.551217143867529 ], [ -95.68723307553914, 29.551279143475981 ], [ -95.687003075109317, 29.55137114355265 ], [ -95.686594074952311, 29.551554143346198 ], [ -95.686376075496, 29.551656144022719 ], [ -95.686282075109133, 29.551478143618677 ], [ -95.686185075205714, 29.551302143972617 ], [ -95.686019074883916, 29.55106214389146 ], [ -95.685876075294871, 29.550891143739893 ], [ -95.685599074478375, 29.550581143438677 ], [ -95.68535707490264, 29.550325143187116 ], [ -95.685179074775036, 29.550176143032122 ], [ -95.684971074756561, 29.549999143646776 ], [ -95.684859074241942, 29.549923142934478 ], [ -95.684796074293587, 29.549880143482497 ], [ -95.684592074927011, 29.549751143127576 ], [ -95.684420074063823, 29.549654143783901 ], [ -95.68417407452155, 29.549526143132571 ], [ -95.683559074676552, 29.549220143454995 ], [ -95.683130073664046, 29.549061142811837 ], [ -95.682488074141332, 29.54884414309462 ], [ -95.681612073987949, 29.548521142788264 ], [ -95.680905073701112, 29.548274143098421 ], [ -95.680262073147148, 29.548052143037431 ], [ -95.679939072860918, 29.547977143042392 ], [ -95.67960307314064, 29.547906143118762 ], [ -95.679253073061901, 29.547866143444971 ], [ -95.678908073137535, 29.547853143235095 ], [ -95.678576073278109, 29.547857143183901 ], [ -95.678222072588753, 29.547884143024032 ], [ -95.677930072348346, 29.547906143540605 ], [ -95.677519072377322, 29.547977142828866 ], [ -95.677107072194843, 29.548065143478485 ], [ -95.676785072333786, 29.548135143278657 ], [ -95.676511072133863, 29.54826814295096 ], [ -95.676191072533882, 29.548373143226158 ], [ -95.675875072068123, 29.548493143007185 ], [ -95.67565607220034, 29.548592143549818 ], [ -95.675349072239584, 29.548744143447738 ], [ -95.67507007235497, 29.548898143209843 ], [ -95.67480507207415, 29.549060143150822 ], [ -95.674478072188052, 29.549286143466986 ], [ -95.674308071836876, 29.54941914356845 ], [ -95.674237071553932, 29.549468143309191 ], [ -95.674135071742015, 29.549541143250242 ], [ -95.673989071969942, 29.549671143768148 ], [ -95.673634071200283, 29.550026143804441 ], [ -95.673568071914815, 29.550098144211336 ], [ -95.673339071914683, 29.550370143962386 ], [ -95.673182071182765, 29.550569144256848 ], [ -95.673138071403571, 29.55063214361488 ], [ -95.67300107163247, 29.550835143569596 ], [ -95.67291107119776, 29.550985144220817 ], [ -95.672773071135907, 29.551245144487286 ], [ -95.672639071560837, 29.551532143845048 ], [ -95.672513071849821, 29.551842143819098 ], [ -95.672270071893905, 29.552493143899245 ], [ -95.672229071231342, 29.552604144368747 ], [ -95.672115071042938, 29.55289214456727 ], [ -95.672076071708375, 29.552977144499085 ], [ -95.672035071899899, 29.553052144793408 ], [ -95.671990071371155, 29.553133144671694 ], [ -95.671922071218219, 29.553235144409236 ], [ -95.671854070929641, 29.553337144109953 ], [ -95.671732071040935, 29.553487144607043 ], [ -95.671679071216488, 29.553540144768554 ], [ -95.671595071173542, 29.553628144180148 ], [ -95.671566071000157, 29.553655144352152 ], [ -95.671432071255552, 29.553771144803854 ], [ -95.671324071205376, 29.553853144337719 ], [ -95.671184070796713, 29.553943144369804 ], [ -95.671060071410849, 29.554014144777266 ], [ -95.671028071692305, 29.554034145084 ], [ -95.670857070983772, 29.554119145070139 ], [ -95.670674071034611, 29.554194144486726 ], [ -95.670578071142785, 29.554229144573981 ], [ -95.670377071293373, 29.554289144821976 ], [ -95.670273071175387, 29.554315144720029 ], [ -95.670106071245144, 29.554345145107082 ], [ -95.670062071406164, 29.554353144498837 ], [ -95.669852070572531, 29.554377144447407 ], [ -95.669423070763685, 29.554408144519499 ], [ -95.66920407047715, 29.554437144721515 ], [ -95.669094070571163, 29.554456145009443 ], [ -95.66898507019242, 29.554480144576537 ], [ -95.668770071074974, 29.554541144986931 ], [ -95.668560070942306, 29.554619144525727 ], [ -95.668449070570901, 29.554671145308447 ], [ -95.668360070117529, 29.554713144906678 ], [ -95.668170070341489, 29.554820144926918 ], [ -95.66807907031, 29.554877145211002 ], [ -95.667917070436729, 29.554993145046701 ], [ -95.667776070489481, 29.555112144830847 ], [ -95.6677110701891, 29.555172145028234 ], [ -95.667594070508983, 29.5552971450063 ], [ -95.667429069861768, 29.555502145126667 ], [ -95.6674070703274, 29.555535145455465 ], [ -95.667315070301441, 29.555676144752901 ], [ -95.667219070805842, 29.555863145057259 ], [ -95.667146069860408, 29.556038145552471 ], [ -95.667093070093514, 29.556219145212864 ], [ -95.667049070445017, 29.556440145076341 ], [ -95.667027070732118, 29.55666214546034 ], [ -95.666985070657972, 29.557194145134719 ], [ -95.666961070445794, 29.557494145429711 ], [ -95.666954070488075, 29.557654146018308 ], [ -95.666953070071216, 29.557831145784398 ], [ -95.66696707006075, 29.557968145957897 ], [ -95.667012070779023, 29.558167145992908 ], [ -95.667065069874653, 29.558342145464668 ], [ -95.66714007090124, 29.558528145854634 ], [ -95.667202070362222, 29.558656145951861 ], [ -95.667298070660223, 29.558816145382391 ], [ -95.667314070691091, 29.558843145923827 ], [ -95.667439070218961, 29.559012146059814 ], [ -95.66756807098082, 29.5591601455763 ], [ -95.667699071099449, 29.559292145775107 ], [ -95.667729070787829, 29.559318145647286 ], [ -95.6678350709619, 29.559406146235972 ], [ -95.668028070516371, 29.559544146342738 ], [ -95.668241070361972, 29.559671145664005 ], [ -95.668415070952577, 29.559756146140192 ], [ -95.668548071049372, 29.559808146174358 ], [ -95.668802071336643, 29.559907145959784 ], [ -95.669118071084043, 29.560030146334874 ], [ -95.669144070583499, 29.560040146184164 ], [ -95.669331070653598, 29.560115145675915 ], [ -95.669602071166153, 29.560240146383133 ], [ -95.670186070944609, 29.560554145721422 ], [ -95.670391071422145, 29.560649145812679 ], [ -95.670602071299399, 29.560734146528976 ], [ -95.67080907096495, 29.560804146500288 ], [ -95.67117507143422, 29.560903145990807 ], [ -95.671419071812821, 29.560951146099065 ], [ -95.671606071339752, 29.560977145980445 ], [ -95.672108071638149, 29.561087145886486 ], [ -95.672430072208357, 29.56117614601391 ], [ -95.672768071714316, 29.561323146386279 ], [ -95.673207072427715, 29.561547146220679 ], [ -95.673467072032182, 29.561724146189249 ], [ -95.673600072247694, 29.561812146522318 ], [ -95.673560071680484, 29.561854146204883 ], [ -95.673419072302394, 29.561988146526563 ], [ -95.673259072125376, 29.562120145880126 ], [ -95.673113071755211, 29.562231146745599 ], [ -95.673062072478245, 29.562272146047821 ], [ -95.672858072248729, 29.56245614643127 ], [ -95.672729072522216, 29.562592146061942 ], [ -95.672612071470908, 29.56274014685042 ], [ -95.672509071748408, 29.562897146823378 ], [ -95.672456071896335, 29.562991146177428 ], [ -95.672381072127962, 29.563143146154818 ], [ -95.672344072107492, 29.563228146167461 ], [ -95.672284072103224, 29.563404146858993 ], [ -95.672237072259477, 29.563585146685455 ], [ -95.672206072031244, 29.563769146926166 ], [ -95.672198071846978, 29.563877146587132 ], [ -95.67219407214121, 29.563950146577238 ], [ -95.672197071703934, 29.564130146534509 ], [ -95.672217071759533, 29.564309146941216 ], [ -95.672242071903852, 29.564436146922322 ], [ -95.6722530714502, 29.564486147128601 ], [ -95.672303072504747, 29.564660146879756 ], [ -95.672341071873944, 29.564757146943471 ], [ -95.672363071512436, 29.564813147191309 ], [ -95.672417072273703, 29.564971146889008 ], [ -95.672462071643551, 29.565103146774202 ], [ -95.672580072192289, 29.565382147312818 ], [ -95.672702072546542, 29.565670147264537 ], [ -95.672714072540941, 29.565662146927743 ], [ -95.6734300720791, 29.56528814700145 ], [ -95.674124071989723, 29.565025146407365 ], [ -95.674802072187887, 29.564838146698602 ], [ -95.676409073466658, 29.564446146400318 ], [ -95.679223074031839, 29.563841146400915 ], [ -95.681016074131804, 29.563460146524196 ], [ -95.685967074898159, 29.562498145846977 ], [ -95.688169075700841, 29.56204514586905 ], [ -95.689063075670532, 29.561861145469198 ], [ -95.689234075967647, 29.561826145699779 ], [ -95.689726076463586, 29.561725145699011 ], [ -95.690364076697449, 29.561594145608961 ], [ -95.690434076129762, 29.561461145661625 ], [ -95.690441076594112, 29.561446145559312 ], [ -95.690678076786881, 29.561119145533514 ], [ -95.690851076812748, 29.56087414576081 ], [ -95.691130076259284, 29.560451145193902 ], [ -95.69128307621159, 29.56008214568481 ], [ -95.69143807682741, 29.559562145331164 ], [ -95.691471076532324, 29.559385144745093 ], [ -95.691472076290196, 29.559221144785031 ], [ -95.691706076666009, 29.55865914454688 ], [ -95.692121077166661, 29.557918144549948 ], [ -95.692248076608394, 29.557692144830465 ], [ -95.692531077094571, 29.557185144265272 ], [ -95.692839077032232, 29.556638144441006 ], [ -95.693119076603068, 29.556152144149831 ], [ -95.693338076826208, 29.555770144385622 ], [ -95.694420076951644, 29.553889143864964 ], [ -95.694832077530222, 29.553056144000404 ], [ -95.69509407754397, 29.552527143497645 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1476, "Tract": "48157674603", "Area_SqMi": 0.98996942021572176, "total_2009": 354, "total_2010": 329, "total_2011": 244, "total_2012": 199, "total_2013": 241, "total_2014": 233, "total_2015": 226, "total_2016": 245, "total_2017": 199, "total_2018": 272, "total_2019": 249, "total_2020": 246, "age1": 127, "age2": 130, "age3": 74, "earn1": 144, "earn2": 103, "earn3": 84, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 24, "naics_s05": 4, "naics_s06": 5, "naics_s07": 16, "naics_s08": 2, "naics_s09": 5, "naics_s10": 1, "naics_s11": 12, "naics_s12": 71, "naics_s13": 0, "naics_s14": 22, "naics_s15": 2, "naics_s16": 66, "naics_s17": 0, "naics_s18": 17, "naics_s19": 84, "naics_s20": 0, "race1": 196, "race2": 84, "race3": 3, "race4": 41, "race5": 0, "race6": 7, "ethnicity1": 238, "ethnicity2": 93, "edu1": 42, "edu2": 56, "edu3": 55, "edu4": 51, "Shape_Length": 21288.003872136091, "Shape_Area": 27598653.086018045, "total_2021": 301, "total_2022": 331 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.702233078666367, 29.538468140809915 ], [ -95.702665078541742, 29.537607140275938 ], [ -95.701491078478583, 29.537455139997096 ], [ -95.694292076403812, 29.536521140521803 ], [ -95.688949074589303, 29.535828140324881 ], [ -95.687052074677482, 29.535582140750467 ], [ -95.686487074161974, 29.53551914037147 ], [ -95.685732074138642, 29.536936140751266 ], [ -95.685303074571962, 29.537756141198582 ], [ -95.685001074177976, 29.538350141293726 ], [ -95.684766074307831, 29.538799141396524 ], [ -95.68411707394516, 29.540036140943986 ], [ -95.684053073437369, 29.540199141749174 ], [ -95.683977074375747, 29.540342141147125 ], [ -95.683928073471066, 29.540390141614868 ], [ -95.68392507354686, 29.54053314161731 ], [ -95.683443074047901, 29.541212141295819 ], [ -95.683182073947961, 29.541583141727184 ], [ -95.682909074009515, 29.54234414154265 ], [ -95.68246307323075, 29.543257142090653 ], [ -95.682412073399789, 29.543361142061112 ], [ -95.682352073808715, 29.543461142050713 ], [ -95.682120073221412, 29.54385014201101 ], [ -95.682056073583126, 29.543960142290317 ], [ -95.681966073306569, 29.544130142326356 ], [ -95.681795073775746, 29.544485142761122 ], [ -95.681708073454871, 29.544689142012789 ], [ -95.681666073510613, 29.544816142345965 ], [ -95.68163507368557, 29.544936142158157 ], [ -95.681602073912856, 29.545165142443061 ], [ -95.681590073919025, 29.545410142394019 ], [ -95.681594073110617, 29.545570143044642 ], [ -95.681600073097357, 29.545662142188366 ], [ -95.681619073453803, 29.546396142853204 ], [ -95.681616073933469, 29.546551142447864 ], [ -95.681601073196049, 29.546696142600787 ], [ -95.681573073422868, 29.546821142539553 ], [ -95.681514073477913, 29.546995143043006 ], [ -95.681451073487267, 29.547148142651753 ], [ -95.680905073701112, 29.548274143098421 ], [ -95.681612073987949, 29.548521142788264 ], [ -95.682488074141332, 29.54884414309462 ], [ -95.683130073664046, 29.549061142811837 ], [ -95.683559074676552, 29.549220143454995 ], [ -95.68417407452155, 29.549526143132571 ], [ -95.684420074063823, 29.549654143783901 ], [ -95.684592074927011, 29.549751143127576 ], [ -95.684796074293587, 29.549880143482497 ], [ -95.684859074241942, 29.549923142934478 ], [ -95.684971074756561, 29.549999143646776 ], [ -95.685179074775036, 29.550176143032122 ], [ -95.68535707490264, 29.550325143187116 ], [ -95.685599074478375, 29.550581143438677 ], [ -95.685876075294871, 29.550891143739893 ], [ -95.686019074883916, 29.55106214389146 ], [ -95.686185075205714, 29.551302143972617 ], [ -95.686282075109133, 29.551478143618677 ], [ -95.686376075496, 29.551656144022719 ], [ -95.686594074952311, 29.551554143346198 ], [ -95.687003075109317, 29.55137114355265 ], [ -95.68723307553914, 29.551279143475981 ], [ -95.687431075002195, 29.551217143867529 ], [ -95.6877770757539, 29.55113114314657 ], [ -95.687938075354936, 29.551097143315971 ], [ -95.688105075656935, 29.551061143629983 ], [ -95.688351075709235, 29.551014143713925 ], [ -95.688772076076972, 29.550963143677809 ], [ -95.689049075796135, 29.550938143817035 ], [ -95.689400076040499, 29.550911143765806 ], [ -95.689735075473706, 29.550890143709797 ], [ -95.690014076054339, 29.550888143724876 ], [ -95.690245076053273, 29.55090114304279 ], [ -95.690643076089572, 29.550948143369421 ], [ -95.69099007582453, 29.55099914377336 ], [ -95.691270075926496, 29.551051143755942 ], [ -95.691544076752933, 29.551116143467212 ], [ -95.691896076340498, 29.551230143073738 ], [ -95.692210076967541, 29.551355143702263 ], [ -95.693579077097866, 29.551893143696994 ], [ -95.694985077182196, 29.552461143902008 ], [ -95.695109077261918, 29.552497143123581 ], [ -95.69513607701434, 29.55244214377317 ], [ -95.695170077322246, 29.552374143417303 ], [ -95.695899077045453, 29.550914143034767 ], [ -95.696953077360902, 29.548804142391965 ], [ -95.697011078110563, 29.5486881426541 ], [ -95.697070077597473, 29.548570142941589 ], [ -95.697889077271583, 29.546930142763763 ], [ -95.697989077855041, 29.546736141992952 ], [ -95.698369077915842, 29.546008142191546 ], [ -95.698716077564953, 29.54534014190374 ], [ -95.698792077618123, 29.545195141698304 ], [ -95.699056078174181, 29.544689141564362 ], [ -95.699378078177972, 29.544069141289796 ], [ -95.700368078044662, 29.542146141717954 ], [ -95.70059307779627, 29.541708141425378 ], [ -95.700953078650357, 29.541019141325169 ], [ -95.701650078679847, 29.539630140853493 ], [ -95.702233078666367, 29.538468140809915 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1477, "Tract": "48157675402", "Area_SqMi": 28.916224852160024, "total_2009": 902, "total_2010": 872, "total_2011": 924, "total_2012": 1072, "total_2013": 1190, "total_2014": 1340, "total_2015": 1401, "total_2016": 1443, "total_2017": 1531, "total_2018": 1684, "total_2019": 1808, "total_2020": 3177, "age1": 446, "age2": 1297, "age3": 333, "earn1": 165, "earn2": 367, "earn3": 1544, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 150, "naics_s05": 1265, "naics_s06": 44, "naics_s07": 5, "naics_s08": 368, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 195, "naics_s15": 0, "naics_s16": 0, "naics_s17": 1, "naics_s18": 0, "naics_s19": 23, "naics_s20": 23, "race1": 1438, "race2": 531, "race3": 18, "race4": 58, "race5": 1, "race6": 30, "ethnicity1": 1196, "ethnicity2": 880, "edu1": 413, "edu2": 466, "edu3": 539, "edu4": 212, "Shape_Length": 185832.20861847809, "Shape_Area": 806134858.26477051, "total_2021": 1840, "total_2022": 2076 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.961642144011094, 29.519126127843208 ], [ -95.96164214351667, 29.518776128077988 ], [ -95.961608143153242, 29.518364127479554 ], [ -95.961418143578456, 29.518105128019471 ], [ -95.961268144063823, 29.517878127196312 ], [ -95.961231143088483, 29.51782312713971 ], [ -95.958356142178701, 29.515384127038256 ], [ -95.957930142829085, 29.515023127106769 ], [ -95.957463142105652, 29.514627126945335 ], [ -95.956630142325892, 29.513920127124937 ], [ -95.956448141849336, 29.513765127080656 ], [ -95.955511141792286, 29.512971126729546 ], [ -95.955211141743135, 29.512717126331722 ], [ -95.954495141205527, 29.512110126196134 ], [ -95.952309141443692, 29.510256125994339 ], [ -95.950426140633795, 29.508663125767072 ], [ -95.943575138242466, 29.502927125041815 ], [ -95.943127138779289, 29.502552124706543 ], [ -95.940359137349134, 29.500265124914524 ], [ -95.939419137448894, 29.499477124377101 ], [ -95.938455137117913, 29.498729124344838 ], [ -95.933962135935531, 29.494897123832548 ], [ -95.932080135402373, 29.493328123992903 ], [ -95.929297134317508, 29.490952122772754 ], [ -95.929151133939058, 29.490840122959547 ], [ -95.928933134190132, 29.490672122903977 ], [ -95.93013713440277, 29.489944123347868 ], [ -95.935798135883687, 29.486410121944548 ], [ -95.935905135860963, 29.48634212190138 ], [ -95.935995135935514, 29.48628612200946 ], [ -95.936769135777226, 29.485804121899175 ], [ -95.93748313580025, 29.48537912174498 ], [ -95.937652136038579, 29.485279121471368 ], [ -95.937410136105427, 29.484429121857016 ], [ -95.937262135613651, 29.484484121959188 ], [ -95.929929134365381, 29.48722612252477 ], [ -95.928556133809593, 29.48771112232464 ], [ -95.927914133889161, 29.487938122374899 ], [ -95.920739131549439, 29.490641123072173 ], [ -95.920525131712196, 29.490720123458726 ], [ -95.919853131502592, 29.49096912357718 ], [ -95.919109132062843, 29.491245123690586 ], [ -95.918178131234114, 29.491572123745335 ], [ -95.915552130524276, 29.49249512432608 ], [ -95.915327130507649, 29.492597123665327 ], [ -95.915221130376764, 29.492638123897493 ], [ -95.91393713065726, 29.493154124147978 ], [ -95.913003130620467, 29.493617124089365 ], [ -95.912204129834123, 29.494085124040726 ], [ -95.911661130372167, 29.494466124723896 ], [ -95.91073712942655, 29.495070124835895 ], [ -95.909862129263232, 29.495802124412677 ], [ -95.908581129646194, 29.497063125240441 ], [ -95.907788128930221, 29.497898125240777 ], [ -95.9070081290524, 29.49898612540996 ], [ -95.906104128409481, 29.500465125579993 ], [ -95.905785128222448, 29.501035125951343 ], [ -95.905536128166588, 29.501477125995439 ], [ -95.905296128285585, 29.501904126000465 ], [ -95.905198128310474, 29.502065126219339 ], [ -95.90508412903533, 29.502253126462854 ], [ -95.904592128932791, 29.5030681266621 ], [ -95.904206128835156, 29.503840126912937 ], [ -95.903637128223068, 29.504784126607706 ], [ -95.903251128237841, 29.505374126775287 ], [ -95.902982128638385, 29.505736126811986 ], [ -95.90180212821457, 29.506975127759436 ], [ -95.900861127507028, 29.507699127712783 ], [ -95.900349127320013, 29.50808212780489 ], [ -95.898762127293963, 29.509089128161069 ], [ -95.897635126730194, 29.509778128252346 ], [ -95.896744126404954, 29.510323127858793 ], [ -95.896120126725506, 29.510778128518314 ], [ -95.895252126826279, 29.511421128361313 ], [ -95.894384126496107, 29.511993128394746 ], [ -95.892142125995861, 29.513405129109788 ], [ -95.890888125227747, 29.514167129483653 ], [ -95.890062124976424, 29.514670129043388 ], [ -95.888925125196494, 29.515282129871128 ], [ -95.888083125011818, 29.515736129962146 ], [ -95.887998125215717, 29.515788129688875 ], [ -95.883622123614742, 29.51847913044185 ], [ -95.881459123040059, 29.519809130593313 ], [ -95.879607122767226, 29.520911130892372 ], [ -95.87775212255022, 29.521930130914296 ], [ -95.876229122087082, 29.522766131463392 ], [ -95.875264122346891, 29.523335131361502 ], [ -95.874238121531462, 29.523985131448555 ], [ -95.871267121267365, 29.525907132403443 ], [ -95.868294120357476, 29.527871132538472 ], [ -95.866546119711245, 29.529050133245221 ], [ -95.863475119191179, 29.53104813362555 ], [ -95.860758118689347, 29.532735133651165 ], [ -95.859580118391094, 29.533449133809636 ], [ -95.858329117763518, 29.534064134554615 ], [ -95.857393118351524, 29.534407134090788 ], [ -95.857051118042165, 29.534536134438756 ], [ -95.856895118004232, 29.534588134685549 ], [ -95.856685118139737, 29.534659134204276 ], [ -95.856725117598145, 29.534880134845057 ], [ -95.856742117859426, 29.534976134200594 ], [ -95.856760117378244, 29.535105134715455 ], [ -95.856694117228045, 29.535224134473403 ], [ -95.856397118120583, 29.535409134691442 ], [ -95.853810117392001, 29.537009135171278 ], [ -95.853328116708653, 29.537303134853989 ], [ -95.847258116008092, 29.541089136549544 ], [ -95.847014115344493, 29.541234135872916 ], [ -95.845810115201886, 29.541950136223516 ], [ -95.845559114820347, 29.542103136451956 ], [ -95.843758114789807, 29.543199136885306 ], [ -95.84034811443054, 29.545278137488147 ], [ -95.838993113725323, 29.546103137539294 ], [ -95.837372113135686, 29.54708813812859 ], [ -95.835036112704884, 29.548508137872499 ], [ -95.833519112245, 29.549432138058592 ], [ -95.833186112313157, 29.549639138468315 ], [ -95.832855112670515, 29.54984513841999 ], [ -95.832367111793204, 29.550149138233397 ], [ -95.832218112063714, 29.550243138346271 ], [ -95.831300111868245, 29.550800138505664 ], [ -95.830359111190219, 29.551371139240761 ], [ -95.828803111698136, 29.552295138716779 ], [ -95.827417111036155, 29.553136139448799 ], [ -95.823604110472715, 29.555522140102202 ], [ -95.821981109266531, 29.556551140524387 ], [ -95.821793110031123, 29.556661140036589 ], [ -95.821409110130645, 29.556883140550031 ], [ -95.821118109876394, 29.557053139865349 ], [ -95.820691109905169, 29.55731014033196 ], [ -95.82020410937163, 29.557615140714052 ], [ -95.819802109206194, 29.557797140080073 ], [ -95.819371108826715, 29.557906140377288 ], [ -95.818897108585944, 29.558007140197173 ], [ -95.818419108463303, 29.558002140730466 ], [ -95.817982108556137, 29.558031140754263 ], [ -95.817198108786783, 29.55808214049301 ], [ -95.817613108612278, 29.55817814024125 ], [ -95.817860108604307, 29.558269140302173 ], [ -95.817929108903314, 29.558300140452328 ], [ -95.818288108802477, 29.558485140715661 ], [ -95.818416109065609, 29.558568141049196 ], [ -95.81868410949545, 29.558729141097604 ], [ -95.818868108706525, 29.558854141126272 ], [ -95.819514109669484, 29.559226140989395 ], [ -95.819878109732386, 29.55979814078464 ], [ -95.819920109716875, 29.559869140557968 ], [ -95.820465109291575, 29.560775140624916 ], [ -95.820652109782273, 29.561087140820565 ], [ -95.821059109681016, 29.561554141229411 ], [ -95.821510109791788, 29.56199114163778 ], [ -95.821578109662994, 29.562043141409042 ], [ -95.822165109927141, 29.562360140966646 ], [ -95.822596110562799, 29.56253714126176 ], [ -95.823151110381232, 29.562714141343836 ], [ -95.823853110863638, 29.562920141564899 ], [ -95.826001110663043, 29.563435141309849 ], [ -95.826841111126697, 29.563636141700204 ], [ -95.829185111859587, 29.564197141413459 ], [ -95.829617111928357, 29.564315141488464 ], [ -95.830008112450443, 29.56440014114418 ], [ -95.8316001122747, 29.564752141730228 ], [ -95.833299112565101, 29.56518314171155 ], [ -95.833218112673194, 29.565233141750792 ], [ -95.833142113258106, 29.565370141453712 ], [ -95.833051112505132, 29.565444141382589 ], [ -95.833005112870424, 29.565480142050614 ], [ -95.832976112850474, 29.565504141631106 ], [ -95.832910113164274, 29.565558141416702 ], [ -95.832847112871505, 29.56559714137509 ], [ -95.8327841127727, 29.565613141988514 ], [ -95.832539113191842, 29.565618141371388 ], [ -95.832350112836878, 29.565656141808354 ], [ -95.832218112452495, 29.565706141919492 ], [ -95.832149113091148, 29.565750141616647 ], [ -95.831916112573438, 29.565850141830236 ], [ -95.831486112396178, 29.565961142154052 ], [ -95.831417112148117, 29.565979141870201 ], [ -95.830024112465154, 29.566304141760682 ], [ -95.829936112584804, 29.566337142129871 ], [ -95.82946411233047, 29.566398141600768 ], [ -95.828666111934439, 29.566343142004399 ], [ -95.827280111517652, 29.566174141600612 ], [ -95.826280110905714, 29.565980142210385 ], [ -95.826201111732061, 29.565964141739066 ], [ -95.824745110661539, 29.56573214219901 ], [ -95.823812110720112, 29.565251141799354 ], [ -95.823126110191041, 29.565256142056249 ], [ -95.822975110179115, 29.565278142339551 ], [ -95.822743110631848, 29.565344142056233 ], [ -95.822611109993346, 29.565355141889814 ], [ -95.822523110229383, 29.565344141565241 ], [ -95.822428110782241, 29.565311141671863 ], [ -95.822321110489057, 29.56525614160914 ], [ -95.822114110107108, 29.565130141822458 ], [ -95.822026110381074, 29.565103141517636 ], [ -95.821611109597171, 29.565119142162054 ], [ -95.821240110060145, 29.565119141562377 ], [ -95.821165110332018, 29.565108141525954 ], [ -95.821121109582649, 29.565086141624754 ], [ -95.821070109451043, 29.565075141519443 ], [ -95.820844109391857, 29.565119142267736 ], [ -95.820448110031478, 29.565070141877211 ], [ -95.820064109960768, 29.565236141951029 ], [ -95.819894109422009, 29.565351142284346 ], [ -95.819806109172632, 29.565390142009413 ], [ -95.819706109318233, 29.56540114171543 ], [ -95.819574109716314, 29.565401142094856 ], [ -95.819480109982052, 29.56542314180566 ], [ -95.819379109843723, 29.565461142512802 ], [ -95.819222109777826, 29.565549141829777 ], [ -95.819115109623908, 29.56565914251815 ], [ -95.819033109014214, 29.56575814189161 ], [ -95.818977109476066, 29.565846142152747 ], [ -95.818945109741122, 29.565912142566681 ], [ -95.818939109808582, 29.565956141978614 ], [ -95.819140109618047, 29.566209141950281 ], [ -95.819247109421227, 29.566385142045512 ], [ -95.819260109412227, 29.566456142676387 ], [ -95.819247109335166, 29.566522141895664 ], [ -95.819203109879695, 29.566561142453036 ], [ -95.819134109372513, 29.566583142569094 ], [ -95.818889109832966, 29.566583142743891 ], [ -95.818788109084394, 29.566616142556946 ], [ -95.818763109654483, 29.566665142703116 ], [ -95.818763109321154, 29.566841142500351 ], [ -95.818775109930257, 29.566896142318484 ], [ -95.818813109888353, 29.566934142510402 ], [ -95.818908109597004, 29.566940142496755 ], [ -95.81905810992437, 29.56690114216812 ], [ -95.819165109951939, 29.56690114251407 ], [ -95.819216109229842, 29.566923142500524 ], [ -95.819279110037897, 29.566967141957516 ], [ -95.819310109064702, 29.56703314233032 ], [ -95.819304109317756, 29.567105142492789 ], [ -95.819253109488727, 29.567165142772119 ], [ -95.818882109251192, 29.567391142833646 ], [ -95.818305109187861, 29.56768714274094 ], [ -95.818198109341353, 29.567687142633687 ], [ -95.817784109147325, 29.568002143015331 ], [ -95.817863109564186, 29.568085142844954 ], [ -95.81794710955792, 29.568154142956928 ], [ -95.818012109682059, 29.5682101429122 ], [ -95.818414109341859, 29.568520142481443 ], [ -95.818499109033439, 29.568599142541817 ], [ -95.819030109937017, 29.56915114279866 ], [ -95.819205109768703, 29.569352142969407 ], [ -95.819442109303779, 29.569647142771398 ], [ -95.81957410928807, 29.569830142688858 ], [ -95.81967110959495, 29.569947142795538 ], [ -95.819735110037072, 29.57003414343421 ], [ -95.819893110353078, 29.57028014320133 ], [ -95.820118110005168, 29.570628142717101 ], [ -95.82019010954663, 29.570758143090885 ], [ -95.820586110227836, 29.571391142893386 ], [ -95.820809110652419, 29.571818143025229 ], [ -95.820838109923386, 29.571885143309448 ], [ -95.820928109757247, 29.572125143138248 ], [ -95.821026110332923, 29.572363143315449 ], [ -95.821226110475052, 29.572759143727883 ], [ -95.821578110260475, 29.5735681434101 ], [ -95.821942110102214, 29.57448814351736 ], [ -95.822022110988101, 29.57473114423475 ], [ -95.822317110263313, 29.575670144277741 ], [ -95.822406110867831, 29.57602214424379 ], [ -95.82257411096208, 29.576618144094041 ], [ -95.822611111233527, 29.576721143939146 ], [ -95.822667110486449, 29.576857143972006 ], [ -95.822691110348885, 29.57692614427933 ], [ -95.822731110625412, 29.577103144227568 ], [ -95.822739110380923, 29.577175144719085 ], [ -95.822740111312427, 29.577266144004387 ], [ -95.82275311090136, 29.577300144380963 ], [ -95.822835110993296, 29.577466144466364 ], [ -95.822862110888963, 29.577534144592914 ], [ -95.823026110683216, 29.578130144210593 ], [ -95.823091110787928, 29.578339144835599 ], [ -95.823240111148763, 29.578752144544602 ], [ -95.823522110995285, 29.579619145057688 ], [ -95.823855110967671, 29.580511144746509 ], [ -95.824160111504156, 29.581181145262171 ], [ -95.824412111170673, 29.58190614513391 ], [ -95.824801111702499, 29.583122145089369 ], [ -95.825174111831302, 29.584342145757077 ], [ -95.825382111441897, 29.58504014606314 ], [ -95.825712112000957, 29.586343146413242 ], [ -95.825963112537906, 29.587218146333271 ], [ -95.826054111818067, 29.587495146470932 ], [ -95.826186111852493, 29.587875145976337 ], [ -95.8263881123152, 29.588361146937771 ], [ -95.826417112608183, 29.588429146576399 ], [ -95.826547112866692, 29.588694146196797 ], [ -95.826713112857917, 29.589102146985539 ], [ -95.82681111270918, 29.58930114703119 ], [ -95.826872112496972, 29.589435146630667 ], [ -95.827107112552852, 29.589856147215681 ], [ -95.827229112792651, 29.590044146557847 ], [ -95.827370112925834, 29.590222146937528 ], [ -95.827478112296518, 29.590332146808763 ], [ -95.827564112991965, 29.590409146547128 ], [ -95.827903113145169, 29.590862146728188 ], [ -95.828050112794514, 29.591036147421683 ], [ -95.828235112972834, 29.591230147066248 ], [ -95.828455113097149, 29.59147814669366 ], [ -95.828513112617927, 29.591544147125997 ], [ -95.828784113154668, 29.591816146825373 ], [ -95.82907111353569, 29.592123147176132 ], [ -95.829241113607949, 29.592281146895264 ], [ -95.829486112863236, 29.592524147353206 ], [ -95.829772113303406, 29.592785147430742 ], [ -95.830541113108836, 29.593439147439994 ], [ -95.830769113618601, 29.593595147042087 ], [ -95.831138113297996, 29.59388314743644 ], [ -95.831196114211906, 29.593935147283617 ], [ -95.831277113774078, 29.59401614725234 ], [ -95.831307113492102, 29.594041147716233 ], [ -95.831471113778406, 29.594151147256937 ], [ -95.831533113939003, 29.594198147385548 ], [ -95.831591114172625, 29.594250147935259 ], [ -95.831668114364035, 29.594334147948789 ], [ -95.831691114183997, 29.594364147226567 ], [ -95.831771113753931, 29.59449114771769 ], [ -95.831794113635297, 29.594520147797247 ], [ -95.832063114496705, 29.594744147663494 ], [ -95.832186114330185, 29.594840147239633 ], [ -95.832427113932425, 29.595038147277265 ], [ -95.832491114501551, 29.595084147275887 ], [ -95.832724113998495, 29.595233147390012 ], [ -95.832788113763385, 29.59527914812195 ], [ -95.833091114096291, 29.595524148178445 ], [ -95.833313114064751, 29.595728147638493 ], [ -95.833368114822065, 29.59578214782772 ], [ -95.833417114196081, 29.595840147977004 ], [ -95.833506114576423, 29.595961147753837 ], [ -95.833885114728403, 29.596683148319013 ], [ -95.834254114719386, 29.597447148095899 ], [ -95.834366114777552, 29.597640148454424 ], [ -95.83456211499329, 29.59799814841325 ], [ -95.834644114469071, 29.598164148643306 ], [ -95.83476711484829, 29.598431148538875 ], [ -95.835016115362023, 29.598927148119103 ], [ -95.835092114700132, 29.599094148751931 ], [ -95.835241114987511, 29.599352148662902 ], [ -95.835269115081672, 29.599494148114456 ], [ -95.835301114792713, 29.599599148944506 ], [ -95.835436115179377, 29.599901148576748 ], [ -95.83591511494258, 29.600899149126505 ], [ -95.835951115119954, 29.600964149105636 ], [ -95.836074115429824, 29.601151149236905 ], [ -95.836368115316802, 29.601544149232726 ], [ -95.836599115525559, 29.60184314891357 ], [ -95.836649115232632, 29.601900148694039 ], [ -95.836818115277737, 29.602058149326435 ], [ -95.837086115943137, 29.602283148706686 ], [ -95.8373061157384, 29.60244614884116 ], [ -95.837604116094994, 29.60264014889335 ], [ -95.837786115431811, 29.602726149240912 ], [ -95.838234116426293, 29.602912148785144 ], [ -95.83850011605287, 29.603009149216899 ], [ -95.838775116549044, 29.603088149156623 ], [ -95.839012116299855, 29.603150149288897 ], [ -95.83925511625759, 29.60319514951043 ], [ -95.839833116078623, 29.603210148653311 ], [ -95.840327116578052, 29.603185148712637 ], [ -95.840491116317466, 29.603169149127279 ], [ -95.840695116136843, 29.603141148825024 ], [ -95.840854116278251, 29.603102148996314 ], [ -95.841088116785912, 29.603030149023386 ], [ -95.841700116813286, 29.60278614921965 ], [ -95.841769116681675, 29.602747148483253 ], [ -95.842242116947119, 29.602457148749018 ], [ -95.842572116951018, 29.60224014871579 ], [ -95.843024117026218, 29.601925148797523 ], [ -95.843339117575255, 29.601692148281018 ], [ -95.843400116901691, 29.601643148537665 ], [ -95.843917117195872, 29.601176148379004 ], [ -95.84462111715743, 29.600469148742398 ], [ -95.845090117661513, 29.599919148382678 ], [ -95.845268118092136, 29.599687147774709 ], [ -95.845760118135601, 29.599021147725466 ], [ -95.845957117969547, 29.59874614764524 ], [ -95.846040118269343, 29.598621147728327 ], [ -95.846132117857323, 29.598459147629743 ], [ -95.846297118303724, 29.598129147524403 ], [ -95.846467118247787, 29.597840148203325 ], [ -95.846610117600562, 29.597621147720098 ], [ -95.846719118022989, 29.597467147805453 ], [ -95.846737117630582, 29.59743614721809 ], [ -95.846770118374934, 29.597331147837313 ], [ -95.846813117910472, 29.597230147938195 ], [ -95.846848117880711, 29.597165147321512 ], [ -95.846909118302733, 29.597070147891717 ], [ -95.846954118128636, 29.597010147736611 ], [ -95.847004117837443, 29.596952147316824 ], [ -95.847203117496477, 29.59676914738677 ], [ -95.847369118377927, 29.596563147617825 ], [ -95.84772411772046, 29.596165147083354 ], [ -95.847937117695764, 29.595898147205961 ], [ -95.848228118251015, 29.595462147294448 ], [ -95.848298118176857, 29.595332147134666 ], [ -95.848319118092931, 29.595301147521109 ], [ -95.84844811773722, 29.595160147233052 ], [ -95.848565118340531, 29.595011146964953 ], [ -95.848620118372068, 29.594914146981079 ], [ -95.848689118142772, 29.594744147020933 ], [ -95.848706117832549, 29.59471214691338 ], [ -95.848748118209457, 29.594650146668187 ], [ -95.848774117847483, 29.594622146746662 ], [ -95.848834118676791, 29.594572147185296 ], [ -95.848879117990606, 29.594538146611004 ], [ -95.848961118242457, 29.594480147354719 ], [ -95.849107117966668, 29.594352147119316 ], [ -95.849272118065187, 29.594191146658002 ], [ -95.849351118064931, 29.594108146769443 ], [ -95.84946411866801, 29.59400214695356 ], [ -95.849496118226782, 29.593981147030519 ], [ -95.849572118934304, 29.593953146560491 ], [ -95.849645118671802, 29.593920147198208 ], [ -95.849925118626885, 29.593767146801856 ], [ -95.850070118617523, 29.593699146538018 ], [ -95.850243118343386, 29.593600146747189 ], [ -95.850355119088718, 29.593554147189817 ], [ -95.850472118803339, 29.593518146863545 ], [ -95.850870118361897, 29.593422146900799 ], [ -95.850911118363072, 29.593417146743317 ], [ -95.851035118809548, 29.593413147132143 ], [ -95.85128211841274, 29.593420146826542 ], [ -95.851489118976446, 29.59342114654898 ], [ -95.851571118899358, 29.593417146307477 ], [ -95.851685118631281, 29.593457147019553 ], [ -95.851763119338301, 29.593480146704007 ], [ -95.852205118986646, 29.593573146762807 ], [ -95.852564119342347, 29.593657147000883 ], [ -95.85355011916171, 29.59392414641923 ], [ -95.854014119459649, 29.594074146846093 ], [ -95.854474119740019, 29.594237146445469 ], [ -95.854864119692465, 29.594355147087565 ], [ -95.855095119997728, 29.594431147020948 ], [ -95.855399120293427, 29.594545146811488 ], [ -95.855629119646437, 29.594626147024726 ], [ -95.855814120067066, 29.594706147037307 ], [ -95.855891120409254, 29.594732147158297 ], [ -95.855959119664504, 29.594750147199392 ], [ -95.856064120369993, 29.594806146839758 ], [ -95.856909120581065, 29.595168146980402 ], [ -95.85774212064527, 29.59548514699064 ], [ -95.857786120723631, 29.595500147196002 ], [ -95.857896120371976, 29.595537146691203 ], [ -95.859880121353143, 29.596153147085648 ], [ -95.860856120957521, 29.596447146731791 ], [ -95.861943121763034, 29.596793147173464 ], [ -95.862332121399405, 29.596912147290627 ], [ -95.862441122352664, 29.596964146830889 ], [ -95.8625891219409, 29.597027147326209 ], [ -95.863399121916018, 29.597298147004199 ], [ -95.864262122602568, 29.597543147250434 ], [ -95.865133122728921, 29.597875147011276 ], [ -95.865471122587778, 29.598010147103526 ], [ -95.865692122846468, 29.598107147371465 ], [ -95.865829122860973, 29.598187146778365 ], [ -95.866013122981627, 29.598270146982014 ], [ -95.866035122777717, 29.598278147529705 ], [ -95.866089123102213, 29.598298147591429 ], [ -95.866285122614812, 29.59835514678301 ], [ -95.866323123254759, 29.598369147027746 ], [ -95.866573122579879, 29.598495147490876 ], [ -95.866657122788396, 29.598574147507748 ], [ -95.866750122676706, 29.598646147420165 ], [ -95.866816122758394, 29.5986901474432 ], [ -95.866886123018887, 29.598728147705316 ], [ -95.867103123551971, 29.598833147246783 ], [ -95.867331122770295, 29.598916146924225 ], [ -95.868002123108269, 29.599194147380476 ], [ -95.868232122969872, 29.599276147112665 ], [ -95.868416123461174, 29.599358147446402 ], [ -95.868606123841488, 29.599428147178596 ], [ -95.868685123399572, 29.599449147369167 ], [ -95.868810123090526, 29.599471147377024 ], [ -95.868919123682701, 29.599523147778559 ], [ -95.869032123761315, 29.599567147237572 ], [ -95.869142123295333, 29.599616147144779 ], [ -95.869294123769237, 29.599674147518265 ], [ -95.869479123832221, 29.599754147027408 ], [ -95.869564123550248, 29.599832147675386 ], [ -95.869720124207205, 29.600001147137505 ], [ -95.869937124155811, 29.600218147245542 ], [ -95.870092124168082, 29.600387147190467 ], [ -95.870259123536542, 29.60059314777558 ], [ -95.870321124439016, 29.600687147177304 ], [ -95.870552124133965, 29.601110147222677 ], [ -95.870625124070727, 29.601279147335148 ], [ -95.870670124143714, 29.601418147443461 ], [ -95.870745123880226, 29.601845147649691 ], [ -95.870791123943775, 29.602058147464643 ], [ -95.87087012470765, 29.602522148047012 ], [ -95.870912124709662, 29.602808147859363 ], [ -95.870953123934385, 29.602985148087381 ], [ -95.870984124208491, 29.603090147629061 ], [ -95.871006124093213, 29.603197148020346 ], [ -95.871021124523125, 29.603267148167507 ], [ -95.871037124752092, 29.60337414813899 ], [ -95.871050124000959, 29.603915148348925 ], [ -95.87105812396878, 29.604059147948369 ], [ -95.871058124248094, 29.604168148436539 ], [ -95.871010124306792, 29.604996148490748 ], [ -95.870922124881972, 29.605495148354997 ], [ -95.870763124493408, 29.606166148716397 ], [ -95.870650124362811, 29.606550148542805 ], [ -95.870556123997702, 29.60682714919022 ], [ -95.870457124267645, 29.607177148967853 ], [ -95.870384124164275, 29.607384149266188 ], [ -95.870189124140651, 29.607821148754681 ], [ -95.870085124390329, 29.608017148664221 ], [ -95.870068124454619, 29.608050148640153 ], [ -95.869842123762169, 29.608593149211771 ], [ -95.869449123836972, 29.609465149071955 ], [ -95.869311124293318, 29.60980514909274 ], [ -95.869247124469254, 29.60998714908531 ], [ -95.86918412426931, 29.610307149554796 ], [ -95.869117123835679, 29.610773149574559 ], [ -95.869112124488012, 29.61088114931939 ], [ -95.869110124641438, 29.611067149752078 ], [ -95.86911012461438, 29.611097150030705 ], [ -95.869136124279635, 29.611566150107741 ], [ -95.869138124144257, 29.612179150020136 ], [ -95.86914612412923, 29.612323149504004 ], [ -95.869158123911589, 29.612756149719505 ], [ -95.869187124164313, 29.613043150378431 ], [ -95.869219123854037, 29.613221150491306 ], [ -95.869225124213969, 29.613293150531717 ], [ -95.869349124542424, 29.613933150668778 ], [ -95.869419124681528, 29.61421515062127 ], [ -95.869539124297177, 29.614560150298949 ], [ -95.869686124320481, 29.614897150907296 ], [ -95.869855124910671, 29.615186150901767 ], [ -95.8699391244472, 29.615311150394124 ], [ -95.870100124339444, 29.615475150205057 ], [ -95.870218125041603, 29.615576150687545 ], [ -95.870331125132381, 29.615682150875351 ], [ -95.87039012500874, 29.615732150524376 ], [ -95.87058212509848, 29.615869150832356 ], [ -95.870684125209337, 29.615930150331685 ], [ -95.871279125150423, 29.61625515060155 ], [ -95.871388124842738, 29.616306150959208 ], [ -95.871540125528071, 29.616364150657795 ], [ -95.871696125423682, 29.61641215093319 ], [ -95.871855125265185, 29.616449150909897 ], [ -95.872098124693409, 29.616493150670461 ], [ -95.87226112502907, 29.616515150593933 ], [ -95.872343125740315, 29.616522150627727 ], [ -95.87255012505365, 29.616521150800892 ], [ -95.87275612515451, 29.616511151065698 ], [ -95.873208125449494, 29.616471150710264 ], [ -95.873454125247363, 29.616443150985027 ], [ -95.873657125330098, 29.616409150367506 ], [ -95.874098125780122, 29.616314150795613 ], [ -95.874495125677655, 29.616215150740199 ], [ -95.874727125802551, 29.616138150569181 ], [ -95.874762125771113, 29.616120150866067 ], [ -95.874991125830462, 29.615966150837767 ], [ -95.875146125581949, 29.615847150442157 ], [ -95.875203125738309, 29.615794150274585 ], [ -95.875245125534917, 29.615747150403848 ], [ -95.875472126073731, 29.615590150519147 ], [ -95.875677125801289, 29.615468150681846 ], [ -95.875963126559341, 29.615261150466676 ], [ -95.876151126118813, 29.615120150697486 ], [ -95.876579126149451, 29.614780149959685 ], [ -95.876666126231626, 29.614703150139775 ], [ -95.87722312659271, 29.614122150199591 ], [ -95.877412126202856, 29.613886150348705 ], [ -95.877477126182043, 29.613794150090158 ], [ -95.877934126005329, 29.613067149709789 ], [ -95.878184126740649, 29.612611149303177 ], [ -95.878215126886843, 29.612544149600065 ], [ -95.878440126655903, 29.611963149137388 ], [ -95.878503126117593, 29.611758149187679 ], [ -95.878492127024771, 29.611650149797203 ], [ -95.878493126342704, 29.61154214960392 ], [ -95.878501126959037, 29.611470149082809 ], [ -95.878526126268852, 29.611327149516459 ], [ -95.878545126173563, 29.611257149384734 ], [ -95.878604126096334, 29.611084149381607 ], [ -95.878631126678115, 29.611016149173306 ], [ -95.87867012632374, 29.610931149724792 ], [ -95.878693126843388, 29.6108831496032 ], [ -95.878747126622045, 29.610452149087752 ], [ -95.878756126259645, 29.610308148935069 ], [ -95.87875912607737, 29.609731149261258 ], [ -95.878780127031035, 29.609552148674933 ], [ -95.878806126360473, 29.609409148872121 ], [ -95.878802126094683, 29.609301149340354 ], [ -95.878814126119352, 29.609157148736664 ], [ -95.878818127084955, 29.60897714864079 ], [ -95.878811126293442, 29.608869148605034 ], [ -95.878778126994547, 29.608618148867041 ], [ -95.878772126294464, 29.608402148569326 ], [ -95.878793126055598, 29.608042149142577 ], [ -95.878783126655108, 29.607825148436394 ], [ -95.878679126883839, 29.60663914887742 ], [ -95.878614126122372, 29.606430148101587 ], [ -95.878552126414817, 29.606146148071485 ], [ -95.878340125933775, 29.604934148064764 ], [ -95.878314126442476, 29.604735147841787 ], [ -95.878203125875785, 29.603839147979215 ], [ -95.878197125938684, 29.603767148326785 ], [ -95.878157126640588, 29.603553147955186 ], [ -95.878144126579897, 29.603446147712813 ], [ -95.878121126428667, 29.603085147459556 ], [ -95.878091125954612, 29.602401147337432 ], [ -95.878063126263612, 29.601968147160353 ], [ -95.878041125690416, 29.601356147174389 ], [ -95.878039125917212, 29.600814147538468 ], [ -95.878048125595384, 29.600562147684101 ], [ -95.87807512640812, 29.600311147323534 ], [ -95.878174126188327, 29.599667146800456 ], [ -95.878180125538137, 29.599595147256061 ], [ -95.878183126297387, 29.599343147256228 ], [ -95.878168125658746, 29.599163146543582 ], [ -95.878149125690655, 29.599061147333824 ], [ -95.878148125758415, 29.598953147104922 ], [ -95.878169125854797, 29.59862914681111 ], [ -95.878190126221028, 29.598485146527505 ], [ -95.87824012605212, 29.598310146483836 ], [ -95.878249126232546, 29.598130147055439 ], [ -95.878305125926147, 29.597809146718717 ], [ -95.878356125848967, 29.597598146654519 ], [ -95.878465126439892, 29.59706514671301 ], [ -95.878543126158462, 29.59663814659304 ], [ -95.8787001261462, 29.595637146427087 ], [ -95.878728126033337, 29.595495146068341 ], [ -95.878736126232496, 29.595423146190758 ], [ -95.878745125499975, 29.595135146170318 ], [ -95.878757125937582, 29.594932146370603 ], [ -95.878770125852441, 29.594738146149311 ], [ -95.878812126271811, 29.594271146002132 ], [ -95.878822125712603, 29.594199145810784 ], [ -95.878878125785221, 29.593989145730674 ], [ -95.878901126140562, 29.593919145710302 ], [ -95.878932126339691, 29.593852145694765 ], [ -95.879052125538095, 29.593623146149323 ], [ -95.879081125507696, 29.593517145396898 ], [ -95.87912712580561, 29.593417145412687 ], [ -95.879165125857455, 29.59335314548014 ], [ -95.879268125523524, 29.593197146108142 ], [ -95.879468125631703, 29.592968145796927 ], [ -95.879553125887469, 29.592888146072664 ], [ -95.879672125839477, 29.592788145411788 ], [ -95.879955125616732, 29.592578145559937 ], [ -95.880055125921714, 29.592515145461256 ], [ -95.880266125961441, 29.592401145166942 ], [ -95.880375125896776, 29.592349145184169 ], [ -95.880643126551135, 29.592256145470433 ], [ -95.880837125852878, 29.592194145120779 ], [ -95.880996126380921, 29.592153145058774 ], [ -95.881195126857648, 29.592107145501014 ], [ -95.88136012596739, 29.592099145495386 ], [ -95.881563126129365, 29.592069144999947 ], [ -95.881728127062203, 29.59207414550815 ], [ -95.881852126245803, 29.592073145568875 ], [ -95.881932126693911, 29.592088145602659 ], [ -95.882014126219957, 29.592098145793248 ], [ -95.882220126954309, 29.592109145841011 ], [ -95.882468127046963, 29.592104145664361 ], [ -95.882632126659033, 29.592088145507237 ], [ -95.88283712688208, 29.592108145394036 ], [ -95.883080127363073, 29.592150145541012 ], [ -95.883611126605018, 29.592217145427107 ], [ -95.883816126676493, 29.592238145675172 ], [ -95.883979127503537, 29.592264145223783 ], [ -95.884219127370898, 29.592318145540073 ], [ -95.884575127160403, 29.592410145333314 ], [ -95.885058127126754, 29.592505145510298 ], [ -95.885499127065557, 29.592600145452604 ], [ -95.886064127983104, 29.592707145524606 ], [ -95.886186127808116, 29.592725145081534 ], [ -95.886226127776212, 29.59273414524711 ], [ -95.886498128209084, 29.59282114569962 ], [ -95.886881127672439, 29.592958145259249 ], [ -95.886956127583417, 29.59277714492297 ], [ -95.887098127687779, 29.59243014495684 ], [ -95.887129128208542, 29.592369145386048 ], [ -95.88714812765474, 29.592358145339194 ], [ -95.887311128486303, 29.592408145183768 ], [ -95.887355127579823, 29.59240814537004 ], [ -95.887569128319129, 29.592369145608426 ], [ -95.887657127608804, 29.5923201451211 ], [ -95.887714128403005, 29.592243145357138 ], [ -95.88775812826043, 29.592221144801858 ], [ -95.887852128433011, 29.592221145495682 ], [ -95.887965128362268, 29.592287145006839 ], [ -95.888072128462227, 29.592326145586547 ], [ -95.888167127981319, 29.592331145280586 ], [ -95.88824212870712, 29.59232614567804 ], [ -95.888280128371761, 29.592304145289223 ], [ -95.888355127850389, 29.5922211455932 ], [ -95.888362127962068, 29.592177145596072 ], [ -95.88833712870364, 29.592062145529034 ], [ -95.888249127973594, 29.592078145028861 ], [ -95.888186128668778, 29.59212214489586 ], [ -95.88814212866636, 29.592122144958807 ], [ -95.888098128366209, 29.592100145275612 ], [ -95.888035128544246, 29.591985144830605 ], [ -95.888010127869009, 29.591765145466844 ], [ -95.887972128131494, 29.591638145325227 ], [ -95.887978128130072, 29.591589145193272 ], [ -95.888016127953549, 29.591556145020501 ], [ -95.888060127776313, 29.591562145418546 ], [ -95.888142128135783, 29.591589144859725 ], [ -95.888217128583292, 29.591639145495861 ], [ -95.888255128614944, 29.591694145069759 ], [ -95.888330128591164, 29.59177014472845 ], [ -95.888406128240391, 29.591809145162699 ], [ -95.88848812783003, 29.591836145268232 ], [ -95.888544128707068, 29.591826145518429 ], [ -95.888601127901438, 29.591798145148111 ], [ -95.888632127843806, 29.591765145373159 ], [ -95.888714128628664, 29.591611145424856 ], [ -95.888752128661196, 29.59160014477764 ], [ -95.88887812831608, 29.591595144874528 ], [ -95.888922128370083, 29.591584144714353 ], [ -95.889173128252665, 29.591435144974735 ], [ -95.889236127985754, 29.591380144804493 ], [ -95.88926112818362, 29.591331145069219 ], [ -95.88926812887631, 29.59128714503969 ], [ -95.88924912831915, 29.591150144999208 ], [ -95.88922412882863, 29.591078145364921 ], [ -95.889155128749181, 29.591023144569789 ], [ -95.888960127832974, 29.590952145036667 ], [ -95.888935128183178, 29.590908144577501 ], [ -95.888922128839042, 29.590853145323855 ], [ -95.888928128185398, 29.590748144846355 ], [ -95.888903128571883, 29.590704145281123 ], [ -95.888840127985588, 29.590655145250039 ], [ -95.888733128744278, 29.590638144984631 ], [ -95.888752127881958, 29.590479145217831 ], [ -95.888822127938084, 29.590347144717747 ], [ -95.88889112838946, 29.590177144457389 ], [ -95.888897128753086, 29.59012214477233 ], [ -95.888866128596405, 29.590017144894105 ], [ -95.888790128759666, 29.589962144458497 ], [ -95.888734128098065, 29.589957145053024 ], [ -95.888677128734344, 29.589973144624249 ], [ -95.888413127931685, 29.59012214519689 ], [ -95.888344127786524, 29.590127144531483 ], [ -95.8882681281831, 29.590111144725096 ], [ -95.888212127707007, 29.590050144798223 ], [ -95.88819912828491, 29.589990145100185 ], [ -95.888218128559899, 29.589968145060187 ], [ -95.888262128361504, 29.589946144351707 ], [ -95.888501128259534, 29.589880145150854 ], [ -95.888621127843692, 29.589786145074168 ], [ -95.888665128092413, 29.589742144512726 ], [ -95.88869612842764, 29.589682144647771 ], [ -95.888696128409123, 29.589599144255146 ], [ -95.888552127847859, 29.589435144862684 ], [ -95.888130128373106, 29.589204144831104 ], [ -95.887369128317474, 29.588923144893972 ], [ -95.887319127561227, 29.588895144765896 ], [ -95.887294128127053, 29.588863144802033 ], [ -95.887288127521913, 29.588824144137813 ], [ -95.887300127689372, 29.588797144359905 ], [ -95.887477128347498, 29.588654144929308 ], [ -95.887502127686119, 29.588599144142673 ], [ -95.887521128391299, 29.588511144067748 ], [ -95.887445127384908, 29.58794514461885 ], [ -95.887389127759803, 29.587835144445457 ], [ -95.887320128006039, 29.587741144352258 ], [ -95.887213127819507, 29.587708144337128 ], [ -95.887175127865589, 29.587675144123306 ], [ -95.887162128214726, 29.587587144088729 ], [ -95.887175127495098, 29.587466144663608 ], [ -95.887200127246402, 29.587422144710111 ], [ -95.887219127301179, 29.587406144322397 ], [ -95.88724412823511, 29.587400144371664 ], [ -95.887464127742987, 29.587521144245549 ], [ -95.887559128142783, 29.58755414467646 ], [ -95.887628127845474, 29.587571144620323 ], [ -95.887666128143294, 29.587571144184629 ], [ -95.887703128015659, 29.587544144729943 ], [ -95.887741127595447, 29.587472144583405 ], [ -95.887829127494498, 29.587203143832355 ], [ -95.887898127686626, 29.587098144052391 ], [ -95.887917127488805, 29.587076144040616 ], [ -95.88803112795604, 29.587049144159057 ], [ -95.888087127892589, 29.587005144028829 ], [ -95.888125128101294, 29.586939144214263 ], [ -95.888282127529806, 29.586395143826362 ], [ -95.888358127979942, 29.586247143844236 ], [ -95.888415128503553, 29.586109143951937 ], [ -95.888471127951021, 29.585862143712799 ], [ -95.888547127607495, 29.585648143435588 ], [ -95.888660128425101, 29.585466144008603 ], [ -95.888754127870996, 29.585351144163653 ], [ -95.888905128414095, 29.585290143342089 ], [ -95.888987127695017, 29.58530114396423 ], [ -95.889063128235676, 29.585329143429977 ], [ -95.889100128320365, 29.585318143838926 ], [ -95.889415127692544, 29.585120143881145 ], [ -95.889704128218753, 29.585021144134085 ], [ -95.889949128717305, 29.584889143828047 ], [ -95.890025128062632, 29.584834144071376 ], [ -95.890088128305834, 29.584807143710478 ], [ -95.890462128449968, 29.584742143234703 ], [ -95.890471128853363, 29.584725143653948 ], [ -95.890440128344949, 29.584681143803312 ], [ -95.890421128111768, 29.584620143698746 ], [ -95.890434128742001, 29.5845821435584 ], [ -95.890654128811349, 29.584444143492409 ], [ -95.890704128623199, 29.584428143812357 ], [ -95.890748128218249, 29.584450143627034 ], [ -95.89076112859307, 29.584488143407174 ], [ -95.89078612862933, 29.584692143185475 ], [ -95.890817128407136, 29.584714143187128 ], [ -95.890842128372213, 29.58471914333477 ], [ -95.890962129092628, 29.584703143161189 ], [ -95.891044128811899, 29.584719143795592 ], [ -95.891094128652483, 29.584714143843172 ], [ -95.891132128973894, 29.58469214360429 ], [ -95.891182128443361, 29.584631143270855 ], [ -95.891207128952303, 29.584329143359117 ], [ -95.891226128900897, 29.584280143696837 ], [ -95.891251128137924, 29.584247143778182 ], [ -95.891295128947519, 29.584214143168101 ], [ -95.891390128564737, 29.584181143489804 ], [ -95.891604128951101, 29.584142143045582 ], [ -95.891654129196027, 29.584120143505658 ], [ -95.891673128909147, 29.584082143651514 ], [ -95.89169812885747, 29.583950143000447 ], [ -95.891729128771573, 29.583912143076585 ], [ -95.891830128661766, 29.583901143264125 ], [ -95.89199412886444, 29.58396714315495 ], [ -95.892063129331106, 29.583983143519806 ], [ -95.892125129018524, 29.583978143088277 ], [ -95.89216312851218, 29.5839501430249 ], [ -95.892201129053745, 29.583884143004958 ], [ -95.89229512907356, 29.583615143451933 ], [ -95.892339128827757, 29.583527143117365 ], [ -95.89238312885476, 29.583483143170618 ], [ -95.892440129051522, 29.583456143143401 ], [ -95.892497128833242, 29.58345014366105 ], [ -95.892560128886785, 29.58345614358236 ], [ -95.892629129456722, 29.583478143185886 ], [ -95.8928241291012, 29.583571142894737 ], [ -95.892887129170234, 29.583593142883835 ], [ -95.892943129104438, 29.583599143395993 ], [ -95.89300012864301, 29.583571143047205 ], [ -95.89306312899663, 29.583522143379017 ], [ -95.893226129039078, 29.583373143121719 ], [ -95.893346128827062, 29.583302143277876 ], [ -95.89342112902591, 29.583269143453141 ], [ -95.893591129658489, 29.583225143039979 ], [ -95.893855129595508, 29.583203143317096 ], [ -95.89393112878507, 29.58318714323239 ], [ -95.893943129047713, 29.583159142812345 ], [ -95.893912129141981, 29.582961142892685 ], [ -95.893912129164917, 29.582873143023765 ], [ -95.893931129349497, 29.582813143132046 ], [ -95.893968129242296, 29.582769143506873 ], [ -95.894025129069263, 29.582741142740172 ], [ -95.894056129578217, 29.5827361428248 ], [ -95.894088128888413, 29.582742143399209 ], [ -95.894119129370381, 29.582758143139934 ], [ -95.894220129665854, 29.58285714297385 ], [ -95.894277129570014, 29.582901143549634 ], [ -95.894308129254838, 29.582912142874541 ], [ -95.894346129802202, 29.582912143295538 ], [ -95.894497129457804, 29.582879142748467 ], [ -95.894591129885654, 29.582868142654711 ], [ -95.894842129767781, 29.582863142773697 ], [ -95.895371129423708, 29.582896143051471 ], [ -95.895471129280295, 29.582885143485825 ], [ -95.895792129238345, 29.582753142772759 ], [ -95.896188129478645, 29.582709142995483 ], [ -95.896484130364357, 29.582687143223279 ], [ -95.896578129860515, 29.582687143390537 ], [ -95.896830130394591, 29.582715142742991 ], [ -95.896968130332851, 29.58270914301243 ], [ -95.897119130368125, 29.58268714301396 ], [ -95.897446130272158, 29.582572143359954 ], [ -95.897879130325222, 29.582514142841525 ], [ -95.898099129972351, 29.581344142908513 ], [ -95.898106130144228, 29.581308142966776 ], [ -95.89811813019378, 29.58124414238447 ], [ -95.898186130068325, 29.580918142205345 ], [ -95.89709713010258, 29.580665142183445 ], [ -95.892147128768599, 29.579463142363739 ], [ -95.889905128083697, 29.578919142029594 ], [ -95.88906812735442, 29.57871814275833 ], [ -95.888903128033661, 29.57867814288058 ], [ -95.888594127447419, 29.578604142165563 ], [ -95.888184128096498, 29.57850614246621 ], [ -95.886201126806299, 29.578030141993338 ], [ -95.881277125500631, 29.576851142655137 ], [ -95.880663125118033, 29.576705142188487 ], [ -95.880171125455874, 29.576588142575886 ], [ -95.875559124766966, 29.575491142270884 ], [ -95.875547124124338, 29.575376142018158 ], [ -95.87553712382514, 29.575282142250124 ], [ -95.875520123770713, 29.575175142251137 ], [ -95.875515123773383, 29.57514114200476 ], [ -95.875206123822011, 29.573124141618266 ], [ -95.874653124181819, 29.569377141020844 ], [ -95.87455812332675, 29.568768141019543 ], [ -95.8745051237903, 29.568401141158144 ], [ -95.874360123388215, 29.567490140230241 ], [ -95.874174123558134, 29.566207140738438 ], [ -95.874068123282882, 29.565542140097701 ], [ -95.873928122972472, 29.564550140097971 ], [ -95.873901123643449, 29.564360140272989 ], [ -95.872634122211878, 29.555970138483513 ], [ -95.872470122548251, 29.554848138280462 ], [ -95.872310122334952, 29.553794138230863 ], [ -95.872288122878203, 29.553647137903894 ], [ -95.872262121931399, 29.553538138247035 ], [ -95.875509122812829, 29.553166137441082 ], [ -95.876312123840677, 29.5530581374015 ], [ -95.880275124102752, 29.552598137632078 ], [ -95.882160125008426, 29.552378137120431 ], [ -95.882424124576417, 29.552362137700825 ], [ -95.884608125639375, 29.552073137526907 ], [ -95.884641125743585, 29.552069136985239 ], [ -95.885726126144448, 29.551954137322113 ], [ -95.8877511258341, 29.551738136566314 ], [ -95.888060126416917, 29.551705136777102 ], [ -95.888339126880751, 29.551676137137665 ], [ -95.888453126727214, 29.551664136962849 ], [ -95.88855812637145, 29.551653136763047 ], [ -95.888753126162371, 29.551633136605524 ], [ -95.888850126319355, 29.551620136744241 ], [ -95.888890126630059, 29.551615137280361 ], [ -95.888956126658101, 29.551608136871845 ], [ -95.889098126601297, 29.551592136463299 ], [ -95.890429126571874, 29.551435137165594 ], [ -95.893163128007586, 29.551111136551043 ], [ -95.902164129523143, 29.550076135857221 ], [ -95.902438130247347, 29.550045136338248 ], [ -95.904761130792096, 29.549764135993193 ], [ -95.905066130292653, 29.549727136036601 ], [ -95.905225131137485, 29.549709135558402 ], [ -95.907351130999047, 29.549453135418844 ], [ -95.910872132574738, 29.549028135752739 ], [ -95.924404135903572, 29.547486134919595 ], [ -95.938626138576524, 29.545876133658101 ], [ -95.94406014025482, 29.54526013381318 ], [ -95.949210141896287, 29.544697133428045 ], [ -95.949697141399525, 29.544643133562076 ], [ -95.954943142649043, 29.544071132702943 ], [ -95.954806142849279, 29.543128132899817 ], [ -95.954704143147609, 29.542420132904422 ], [ -95.953961142159613, 29.537582132008033 ], [ -95.953899142784692, 29.537164132186735 ], [ -95.95369314231705, 29.535787131303024 ], [ -95.953569142782484, 29.535015131601153 ], [ -95.953281142172798, 29.533123131320455 ], [ -95.953242141900915, 29.532808131035459 ], [ -95.953210142428873, 29.532661131074782 ], [ -95.953014142421708, 29.531314130808887 ], [ -95.952976141509723, 29.531123130852251 ], [ -95.952945142425548, 29.531042130987522 ], [ -95.95290414187653, 29.53097213047652 ], [ -95.952855141816613, 29.530911130572871 ], [ -95.952801142140004, 29.530856130837979 ], [ -95.952730142178069, 29.530794130343214 ], [ -95.952536141428737, 29.530625130496947 ], [ -95.952448141484481, 29.530548130341113 ], [ -95.950980141438635, 29.529319130429279 ], [ -95.951253141110627, 29.529083129872607 ], [ -95.951735141065498, 29.528642130510441 ], [ -95.951937141185169, 29.5284441298712 ], [ -95.951991141529177, 29.528392129864674 ], [ -95.9524331417973, 29.528000130246678 ], [ -95.953028141731551, 29.527439129582028 ], [ -95.9542731425977, 29.526294129115257 ], [ -95.954885142077003, 29.525737129809386 ], [ -95.955659142374159, 29.52502312887097 ], [ -95.955674142855699, 29.525010129277319 ], [ -95.956334142768711, 29.524404129174187 ], [ -95.958206143094571, 29.522690128435826 ], [ -95.95944614308678, 29.521549128462116 ], [ -95.959623143612589, 29.521386128058875 ], [ -95.959680142958604, 29.521342127911346 ], [ -95.959733143757433, 29.521316128305163 ], [ -95.959759142848995, 29.521312128093385 ], [ -95.960853143996729, 29.5203451277802 ], [ -95.960983143895504, 29.520162128036091 ], [ -95.96136914327812, 29.519682127637068 ], [ -95.961403144077224, 29.519612127541357 ], [ -95.961642144011094, 29.519126127843208 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1478, "Tract": "48157670903", "Area_SqMi": 3.1211678423582576, "total_2009": 27, "total_2010": 76, "total_2011": 104, "total_2012": 275, "total_2013": 341, "total_2014": 384, "total_2015": 468, "total_2016": 501, "total_2017": 559, "total_2018": 571, "total_2019": 723, "total_2020": 665, "age1": 335, "age2": 362, "age3": 144, "earn1": 257, "earn2": 396, "earn3": 188, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 9, "naics_s06": 5, "naics_s07": 346, "naics_s08": 14, "naics_s09": 2, "naics_s10": 13, "naics_s11": 1, "naics_s12": 41, "naics_s13": 0, "naics_s14": 6, "naics_s15": 29, "naics_s16": 58, "naics_s17": 5, "naics_s18": 287, "naics_s19": 25, "naics_s20": 0, "race1": 495, "race2": 199, "race3": 4, "race4": 122, "race5": 2, "race6": 19, "ethnicity1": 602, "ethnicity2": 239, "edu1": 121, "edu2": 121, "edu3": 149, "edu4": 115, "Shape_Length": 45503.195176934852, "Shape_Area": 87012817.512797967, "total_2021": 701, "total_2022": 841 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.542972038513199, 29.551558148515984 ], [ -95.542998038289483, 29.551525148280938 ], [ -95.542706038099837, 29.551430148895715 ], [ -95.542392038469714, 29.551353148897284 ], [ -95.54211503858977, 29.551265148139318 ], [ -95.542021037778383, 29.551216148390814 ], [ -95.54158103834051, 29.551023148642152 ], [ -95.541449037880128, 29.550996148630489 ], [ -95.541128037645763, 29.551007148496453 ], [ -95.540990037801024, 29.551001148798417 ], [ -95.5405680378189, 29.550908148147485 ], [ -95.540361037609301, 29.550880148189364 ], [ -95.539726037008947, 29.550644148445947 ], [ -95.539537037181333, 29.550545148310821 ], [ -95.539298037588992, 29.550457148293006 ], [ -95.539286037528797, 29.550454148656456 ], [ -95.538990037294298, 29.550385148190841 ], [ -95.538760037566263, 29.550188148448374 ], [ -95.538511036865543, 29.550066147947476 ], [ -95.537942037235155, 29.549561148595522 ], [ -95.537499036399495, 29.548955147746501 ], [ -95.537444037068184, 29.548752148185518 ], [ -95.537369037331374, 29.548593147871948 ], [ -95.537343037303955, 29.548499147947812 ], [ -95.537293036991926, 29.548400147624317 ], [ -95.537180036331662, 29.54823514782916 ], [ -95.536850036413696, 29.546651147300807 ], [ -95.536774036505804, 29.54654514736626 ], [ -95.536884036980183, 29.546018147705638 ], [ -95.536895036147357, 29.545731147138461 ], [ -95.537067036477282, 29.545292147220756 ], [ -95.53749003687436, 29.544724147444413 ], [ -95.537776036713908, 29.544523147247165 ], [ -95.538355036618313, 29.544338147112381 ], [ -95.539195036907486, 29.543763146570711 ], [ -95.539716037025727, 29.543210147025206 ], [ -95.540277037721211, 29.542333147091313 ], [ -95.540512037151132, 29.54170714643924 ], [ -95.540668037556472, 29.54129214637674 ], [ -95.540775037096395, 29.54100714633454 ], [ -95.540884037328198, 29.540551146391152 ], [ -95.540880037028785, 29.540300146060769 ], [ -95.540825037553233, 29.540114145846008 ], [ -95.540753037791532, 29.540117145762135 ], [ -95.540682037476046, 29.540121146387996 ], [ -95.539255037255359, 29.540104146267772 ], [ -95.538039036125852, 29.540052146427861 ], [ -95.536369035821693, 29.539771146130818 ], [ -95.534507035761081, 29.539160145759173 ], [ -95.534321035892972, 29.539061146483178 ], [ -95.531637034662296, 29.538290146163956 ], [ -95.527991033654601, 29.537242145774698 ], [ -95.525630033511845, 29.536490146224558 ], [ -95.524525032907803, 29.536158145769946 ], [ -95.523495032369539, 29.535858145462729 ], [ -95.522488032867997, 29.535520145719239 ], [ -95.522234032319204, 29.535460146158346 ], [ -95.522074032343298, 29.535392145606593 ], [ -95.518399031780163, 29.53438414582045 ], [ -95.518158031807602, 29.534310145942872 ], [ -95.516060030573627, 29.533670145629852 ], [ -95.51575103074245, 29.534478145942142 ], [ -95.51552403018519, 29.535030146230167 ], [ -95.515243030199358, 29.535025145830566 ], [ -95.512536029708443, 29.535073146507955 ], [ -95.512434030259413, 29.535075146364125 ], [ -95.510612029003738, 29.535109145906045 ], [ -95.505438028592252, 29.535207146367725 ], [ -95.50463002807092, 29.53522214615603 ], [ -95.503483027599813, 29.535249146706157 ], [ -95.503398027387291, 29.535252146627858 ], [ -95.503315027794429, 29.535254146288981 ], [ -95.50289902755911, 29.536102146967611 ], [ -95.502771027810098, 29.536371147024088 ], [ -95.502632027772563, 29.53669014688349 ], [ -95.502479027255077, 29.537067147055126 ], [ -95.501906027350515, 29.538391146742121 ], [ -95.501345027340918, 29.540425147729291 ], [ -95.501287027637844, 29.543292148497944 ], [ -95.501713028065396, 29.545403148487377 ], [ -95.502391028001412, 29.547205148874401 ], [ -95.503127027966642, 29.54871614886315 ], [ -95.5034160280522, 29.549259149657612 ], [ -95.503611027987958, 29.549626149343826 ], [ -95.504168028693002, 29.55079614919277 ], [ -95.504472028531566, 29.551438150059855 ], [ -95.50484302848227, 29.552045149549365 ], [ -95.505226028283928, 29.552811150088914 ], [ -95.505292028684778, 29.552943149950796 ], [ -95.50535102899488, 29.553061150393326 ], [ -95.505477029366389, 29.553305150376705 ], [ -95.505858028518418, 29.554265150177038 ], [ -95.506092028994729, 29.554947150172108 ], [ -95.506276029010039, 29.555669150806921 ], [ -95.506396029445469, 29.556259150932405 ], [ -95.506438029037653, 29.55646915096214 ], [ -95.506500028893186, 29.556793151193546 ], [ -95.506604029531815, 29.557336151034264 ], [ -95.506664029035761, 29.557934150664185 ], [ -95.506733029561062, 29.559382151700397 ], [ -95.506783029718008, 29.561528151772386 ], [ -95.50682302919968, 29.563903151876563 ], [ -95.506867030057009, 29.56497315203573 ], [ -95.506897029955354, 29.564968152157959 ], [ -95.507249029626877, 29.564864152557941 ], [ -95.50746302938704, 29.564831152780144 ], [ -95.507739030362771, 29.564814152293071 ], [ -95.508280030308796, 29.564803152364775 ], [ -95.509035030218143, 29.564809152731183 ], [ -95.509186029872851, 29.564804152331121 ], [ -95.509538030790864, 29.564793152422958 ], [ -95.510733030565916, 29.564700152143125 ], [ -95.513884031549907, 29.564410152450829 ], [ -95.514500031851171, 29.5643271523405 ], [ -95.515525031989654, 29.564157152289347 ], [ -95.515946032441533, 29.564053152327656 ], [ -95.516242032140269, 29.563965151677461 ], [ -95.516733031845845, 29.563707151814633 ], [ -95.517098032494459, 29.563470151702113 ], [ -95.5176890322291, 29.562987151926826 ], [ -95.518211033027342, 29.562520151306423 ], [ -95.518632033054701, 29.562113151670463 ], [ -95.518884032473409, 29.56182215155512 ], [ -95.519255032645901, 29.56143715109145 ], [ -95.519564033116225, 29.561162151092276 ], [ -95.520073033309586, 29.560849151037242 ], [ -95.520027032342043, 29.558859151081702 ], [ -95.519985032594164, 29.557012149902747 ], [ -95.519975032958499, 29.556652150304927 ], [ -95.519967032964914, 29.556281150335586 ], [ -95.519928033115292, 29.554618150269786 ], [ -95.519917032786566, 29.554151149911348 ], [ -95.519900032967101, 29.553398149635068 ], [ -95.519888032879024, 29.552907149806899 ], [ -95.520248032419914, 29.552692149751255 ], [ -95.520682033116387, 29.552557149556769 ], [ -95.521100032848267, 29.552545149391563 ], [ -95.525974033872643, 29.552405149557384 ], [ -95.528579034843077, 29.552355148949381 ], [ -95.528585034796606, 29.552724148922337 ], [ -95.528598034657435, 29.55321514938953 ], [ -95.529221034698551, 29.553221148827504 ], [ -95.529331034767907, 29.55321614970152 ], [ -95.529409034829911, 29.553208149025107 ], [ -95.529548034709464, 29.553180149375251 ], [ -95.529696034914423, 29.553142149525947 ], [ -95.529900034639866, 29.553083149585802 ], [ -95.53011403531616, 29.553042149133962 ], [ -95.532524036217779, 29.552969149043225 ], [ -95.533489035963314, 29.55295514883889 ], [ -95.533494035692925, 29.553090148881559 ], [ -95.533519036090453, 29.553288148737753 ], [ -95.533618036129226, 29.553493148909805 ], [ -95.533775036523053, 29.553773149102604 ], [ -95.534521036444715, 29.553411149465934 ], [ -95.535207036618189, 29.553173148635917 ], [ -95.536280036438484, 29.552846148610914 ], [ -95.536733037350743, 29.552751148718887 ], [ -95.536808036555513, 29.552729148603309 ], [ -95.537640037490377, 29.552621149306542 ], [ -95.538341037115899, 29.552520148851507 ], [ -95.539174037609811, 29.552526148359174 ], [ -95.540540037495077, 29.552563148705371 ], [ -95.541463038293216, 29.552828149089414 ], [ -95.541720037808815, 29.552363148367881 ], [ -95.541800037806397, 29.552269148541779 ], [ -95.542174038511988, 29.552018148188754 ], [ -95.542628038824617, 29.551838148791777 ], [ -95.542972038513199, 29.551558148515984 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1479, "Tract": "48201533701", "Area_SqMi": 3.4441188963722844, "total_2009": 2953, "total_2010": 2967, "total_2011": 3365, "total_2012": 3358, "total_2013": 3154, "total_2014": 4409, "total_2015": 4512, "total_2016": 4307, "total_2017": 4147, "total_2018": 7298, "total_2019": 7216, "total_2020": 8013, "age1": 2873, "age2": 4375, "age3": 1565, "earn1": 1587, "earn2": 3334, "earn3": 3892, "naics_s01": 0, "naics_s02": 88, "naics_s03": 28, "naics_s04": 797, "naics_s05": 306, "naics_s06": 1138, "naics_s07": 1278, "naics_s08": 3294, "naics_s09": 17, "naics_s10": 57, "naics_s11": 115, "naics_s12": 110, "naics_s13": 0, "naics_s14": 833, "naics_s15": 0, "naics_s16": 152, "naics_s17": 0, "naics_s18": 529, "naics_s19": 71, "naics_s20": 0, "race1": 5200, "race2": 2909, "race3": 88, "race4": 449, "race5": 15, "race6": 152, "ethnicity1": 5887, "ethnicity2": 2926, "edu1": 1358, "edu2": 1691, "edu3": 1858, "edu4": 1033, "Shape_Length": 45711.765435529902, "Shape_Area": 96016140.162455961, "total_2021": 9151, "total_2022": 8813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.46000303459742, 29.937526230053535 ], [ -95.45971203430291, 29.937153229989704 ], [ -95.45948903431082, 29.936878230461168 ], [ -95.459243034483507, 29.936574229963227 ], [ -95.459197034135428, 29.936522230211381 ], [ -95.458915034233584, 29.936159229838655 ], [ -95.458335033742713, 29.935422230036789 ], [ -95.457639034114237, 29.93453722984399 ], [ -95.457379033706971, 29.934210229612756 ], [ -95.457188033672097, 29.933968229737442 ], [ -95.456395033173052, 29.932946228970099 ], [ -95.454131032471054, 29.930032228598318 ], [ -95.453675032094154, 29.929423228413587 ], [ -95.453595031993061, 29.929317229116084 ], [ -95.453304032324638, 29.928941228924863 ], [ -95.452315032057541, 29.927675228190665 ], [ -95.451540031984052, 29.9266902278525 ], [ -95.451084031901743, 29.926106228481608 ], [ -95.450535031446009, 29.925394227785642 ], [ -95.450409031581415, 29.925234228359574 ], [ -95.449581030677365, 29.924140227568248 ], [ -95.448795030781156, 29.923162228027213 ], [ -95.448045030569318, 29.922194227188033 ], [ -95.447754030160297, 29.921816227253188 ], [ -95.447408030602546, 29.921368227079597 ], [ -95.446845030157121, 29.920643227066222 ], [ -95.446462030018239, 29.920716226860719 ], [ -95.444988029880236, 29.921033227373908 ], [ -95.444556029781182, 29.921126227175122 ], [ -95.443272029042987, 29.921407227818264 ], [ -95.441612029084183, 29.921773227533933 ], [ -95.441406029311324, 29.921815227505075 ], [ -95.441203028432128, 29.921862227683814 ], [ -95.440913028659494, 29.921922227867469 ], [ -95.440793028451296, 29.921952227268001 ], [ -95.439878028580551, 29.922144227592206 ], [ -95.439546028942829, 29.922220227804637 ], [ -95.436952027508852, 29.922785227647601 ], [ -95.436970028270807, 29.922845227846818 ], [ -95.43657702804073, 29.922909227790484 ], [ -95.436541027191225, 29.922915228359205 ], [ -95.434492027273023, 29.92354522844974 ], [ -95.433531027057839, 29.92372822786783 ], [ -95.433158027140323, 29.923704228067077 ], [ -95.432954026510359, 29.923700228217648 ], [ -95.432883027065387, 29.923698228460832 ], [ -95.432880027055589, 29.923322228463174 ], [ -95.432868026323419, 29.921631227658114 ], [ -95.432867026895664, 29.921456228001894 ], [ -95.432842026825725, 29.921302227749671 ], [ -95.432867026794042, 29.920604228131555 ], [ -95.432851026251768, 29.920573227946829 ], [ -95.432829026358007, 29.920532228081786 ], [ -95.432905026320938, 29.92005922736033 ], [ -95.432804026350126, 29.919960227518331 ], [ -95.432810026863763, 29.919488227524191 ], [ -95.432836026127404, 29.919108227471433 ], [ -95.43278902611199, 29.915749226503976 ], [ -95.432776026797768, 29.914842226514761 ], [ -95.432724026769876, 29.914740226884987 ], [ -95.432257026380071, 29.914748226347086 ], [ -95.432109026581088, 29.914750226487929 ], [ -95.431828025996083, 29.914756226292781 ], [ -95.431057025912338, 29.914774226117792 ], [ -95.42988302532757, 29.91479922616314 ], [ -95.429693025737407, 29.914807227058848 ], [ -95.429503025471547, 29.914805226750893 ], [ -95.429226025832037, 29.914811226468412 ], [ -95.42833602481565, 29.914831226307868 ], [ -95.428136025672771, 29.914840227050995 ], [ -95.426540024817086, 29.914865226774278 ], [ -95.425216024618322, 29.914891226756787 ], [ -95.423785024295583, 29.914925227222877 ], [ -95.423298024160559, 29.914931226567962 ], [ -95.423159023745342, 29.914938226995009 ], [ -95.422989024270592, 29.914938227199418 ], [ -95.422407023623705, 29.91494922712716 ], [ -95.42224802333547, 29.914948227063604 ], [ -95.421816023588732, 29.914954226835366 ], [ -95.421637023251776, 29.91495322715479 ], [ -95.420852022900036, 29.914921227330929 ], [ -95.420524022847118, 29.914919226509387 ], [ -95.419859023353297, 29.914947227305621 ], [ -95.41969602348135, 29.914958226968867 ], [ -95.418900023208181, 29.914976226654758 ], [ -95.418763022524104, 29.914976227399727 ], [ -95.418536022526965, 29.91498022671222 ], [ -95.418105022989863, 29.914988226991106 ], [ -95.417459022372924, 29.915000226847837 ], [ -95.4173160227041, 29.915003226927762 ], [ -95.416380021978568, 29.915024226701455 ], [ -95.415383021595446, 29.915044227028247 ], [ -95.414451021909755, 29.915057227408386 ], [ -95.414016021805878, 29.915061227359313 ], [ -95.413721022012197, 29.91505722679139 ], [ -95.413470021733062, 29.915054227222033 ], [ -95.412940021388806, 29.915059227622184 ], [ -95.412702021324648, 29.915076227597989 ], [ -95.412707021069664, 29.915307227270752 ], [ -95.412755020982218, 29.917336227674557 ], [ -95.412670021611902, 29.918839227902865 ], [ -95.412629021246715, 29.919576228085699 ], [ -95.412347021967619, 29.924258228943017 ], [ -95.412319021699176, 29.924681229317891 ], [ -95.412057021474951, 29.928800229707353 ], [ -95.411976021597425, 29.930417230611713 ], [ -95.411989021880302, 29.931625230408564 ], [ -95.411991021786179, 29.931804230611121 ], [ -95.411994021699897, 29.932032230384255 ], [ -95.41199602160583, 29.932207231102279 ], [ -95.412033022072862, 29.933052230571935 ], [ -95.412058021650466, 29.933518231393425 ], [ -95.412071022067906, 29.933750231525298 ], [ -95.412116021782069, 29.934299230895029 ], [ -95.412178022449638, 29.934666231358037 ], [ -95.412327021705366, 29.935204230931628 ], [ -95.412487022309278, 29.935813231795713 ], [ -95.412685021760666, 29.936402231473298 ], [ -95.412803022506097, 29.936707232120966 ], [ -95.412842022719005, 29.936829231819342 ], [ -95.41289302201308, 29.936987231303124 ], [ -95.413241022142273, 29.938312232337637 ], [ -95.413262022618511, 29.93839023169431 ], [ -95.413822023045554, 29.939993232510307 ], [ -95.413844023119282, 29.940057231917152 ], [ -95.413945022315701, 29.940344231940905 ], [ -95.413984023012858, 29.940457232117424 ], [ -95.414003022781003, 29.940512232686398 ], [ -95.414013022218427, 29.940539232279839 ], [ -95.414094022891206, 29.94053823239933 ], [ -95.414148023005296, 29.940538232501101 ], [ -95.414417022441171, 29.940537232032195 ], [ -95.414563023247155, 29.940536232300399 ], [ -95.414789022555027, 29.940535232509777 ], [ -95.415087022650283, 29.940533232507747 ], [ -95.416280022917761, 29.940528232082844 ], [ -95.41642002302774, 29.940527232605973 ], [ -95.417225023462777, 29.940523232025924 ], [ -95.4177210238458, 29.940521232057989 ], [ -95.417948024045131, 29.940520231999184 ], [ -95.418895024211253, 29.940515232031537 ], [ -95.420995024183895, 29.940440231763162 ], [ -95.422270024382797, 29.940234232416898 ], [ -95.423317025315171, 29.939953231796267 ], [ -95.423752025213943, 29.939846231684545 ], [ -95.423999025477855, 29.939785231966106 ], [ -95.424348024876736, 29.939697232294627 ], [ -95.424626025724081, 29.939625232165895 ], [ -95.424991025267133, 29.939520232236703 ], [ -95.425638025694113, 29.939335232082993 ], [ -95.42709602581607, 29.938936231976488 ], [ -95.428677026004777, 29.938510231621521 ], [ -95.43020002722433, 29.938144231702012 ], [ -95.431427027038552, 29.937853231263141 ], [ -95.432089027430408, 29.937708231645264 ], [ -95.432304027646751, 29.937685231496808 ], [ -95.43258902706215, 29.937636231557349 ], [ -95.432968027239227, 29.93760323092285 ], [ -95.433508027374984, 29.937547231125283 ], [ -95.434163027654179, 29.937533231326181 ], [ -95.434568027685685, 29.937539231396183 ], [ -95.435169028126467, 29.937556231016664 ], [ -95.43582102796455, 29.937605230792386 ], [ -95.436508027938544, 29.937682230940865 ], [ -95.436568028286544, 29.937689231191968 ], [ -95.437433029044442, 29.937777231008905 ], [ -95.437810029039525, 29.937795231016928 ], [ -95.438222028444741, 29.937862231145758 ], [ -95.438876029023476, 29.937918230837777 ], [ -95.439570029371254, 29.937942231410936 ], [ -95.440361028951926, 29.937958231137866 ], [ -95.441120029408495, 29.937926230527609 ], [ -95.445123030651956, 29.937870231018017 ], [ -95.449053031521458, 29.937829230440244 ], [ -95.451073031944674, 29.937735230912935 ], [ -95.451398032264549, 29.937714230169963 ], [ -95.451779032757713, 29.937672230575107 ], [ -95.453371032739852, 29.937595230757417 ], [ -95.454667032786205, 29.937554230375113 ], [ -95.454912033173144, 29.937553230023155 ], [ -95.455166033001319, 29.937552230393603 ], [ -95.457784033933777, 29.937538230344046 ], [ -95.45970303409257, 29.937528229786594 ], [ -95.46000303459742, 29.937526230053535 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1480, "Tract": "48201223002", "Area_SqMi": 0.28591988408586261, "total_2009": 104, "total_2010": 99, "total_2011": 78, "total_2012": 110, "total_2013": 93, "total_2014": 109, "total_2015": 150, "total_2016": 135, "total_2017": 165, "total_2018": 132, "total_2019": 143, "total_2020": 121, "age1": 35, "age2": 54, "age3": 16, "earn1": 28, "earn2": 38, "earn3": 39, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 45, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 14, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 7, "naics_s17": 0, "naics_s18": 25, "naics_s19": 10, "naics_s20": 0, "race1": 80, "race2": 15, "race3": 2, "race4": 8, "race5": 0, "race6": 0, "ethnicity1": 60, "ethnicity2": 45, "edu1": 18, "edu2": 18, "edu3": 22, "edu4": 12, "Shape_Length": 11438.87546150639, "Shape_Area": 7970957.0115415324, "total_2021": 105, "total_2022": 105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.332422999942949, 29.903521227398489 ], [ -95.332468999751541, 29.902505227689527 ], [ -95.331182999868687, 29.902512227309664 ], [ -95.326181998455269, 29.902711227872931 ], [ -95.325601998625459, 29.902735227579548 ], [ -95.324226998464297, 29.902789227872013 ], [ -95.323471997982651, 29.902817227955591 ], [ -95.323541998143497, 29.9059372286419 ], [ -95.32354499781917, 29.906427228311383 ], [ -95.323555997937007, 29.906701228375962 ], [ -95.323559998029495, 29.907145228940738 ], [ -95.323573998242196, 29.907441228970267 ], [ -95.32357199808385, 29.907925228787754 ], [ -95.323586998066517, 29.908183228925047 ], [ -95.323609998110683, 29.90891822920916 ], [ -95.323604998169117, 29.909276228770374 ], [ -95.32361999765908, 29.909671229170655 ], [ -95.323633998506153, 29.910558229337116 ], [ -95.323623997889968, 29.91074122938079 ], [ -95.323811997780851, 29.910752229517382 ], [ -95.324135998737063, 29.910771229591251 ], [ -95.324380998416331, 29.910806229750673 ], [ -95.326041998564691, 29.911134229336092 ], [ -95.326442998820596, 29.911213229537161 ], [ -95.326795999103865, 29.911270229009396 ], [ -95.327056998962377, 29.911289229688666 ], [ -95.327428998778259, 29.911296229690848 ], [ -95.329428000220403, 29.911282229251579 ], [ -95.330754999755783, 29.911239229158262 ], [ -95.33138500032328, 29.911232229041936 ], [ -95.331423000225016, 29.9099212289129 ], [ -95.331407000292955, 29.909537228581222 ], [ -95.331367999661694, 29.907178228206963 ], [ -95.331376000147941, 29.906619228023043 ], [ -95.331572000484044, 29.905970228529537 ], [ -95.331700999556801, 29.905545227630544 ], [ -95.3318699997088, 29.905182228098305 ], [ -95.332069999781851, 29.904753228266532 ], [ -95.332243999947295, 29.904143227623944 ], [ -95.33237599999093, 29.903684228050011 ], [ -95.332384000271645, 29.90365622759111 ], [ -95.332422999942949, 29.903521227398489 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1481, "Tract": "48201980100", "Area_SqMi": 11.771936621979716, "total_2009": 23894, "total_2010": 20724, "total_2011": 23178, "total_2012": 23467, "total_2013": 23868, "total_2014": 22800, "total_2015": 26781, "total_2016": 26043, "total_2017": 24715, "total_2018": 24387, "total_2019": 25479, "total_2020": 26063, "age1": 4155, "age2": 12039, "age3": 6598, "earn1": 2149, "earn2": 6319, "earn3": 14324, "naics_s01": 0, "naics_s02": 51, "naics_s03": 1, "naics_s04": 419, "naics_s05": 47, "naics_s06": 59, "naics_s07": 191, "naics_s08": 17874, "naics_s09": 3, "naics_s10": 31, "naics_s11": 397, "naics_s12": 101, "naics_s13": 0, "naics_s14": 1220, "naics_s15": 6, "naics_s16": 5, "naics_s17": 0, "naics_s18": 2074, "naics_s19": 312, "naics_s20": 1, "race1": 14445, "race2": 5833, "race3": 204, "race4": 1622, "race5": 228, "race6": 461, "ethnicity1": 16913, "ethnicity2": 5879, "edu1": 3284, "edu2": 4964, "edu3": 6330, "edu4": 4060, "Shape_Length": 94537.431522601692, "Shape_Area": 328181445.14990515, "total_2021": 21131, "total_2022": 22792 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.374863015420601, 30.011043248398277 ], [ -95.37493401569256, 30.011005248084963 ], [ -95.374426015966478, 30.010136247598414 ], [ -95.374301016104397, 30.009911248384103 ], [ -95.374230015476968, 30.009790247462789 ], [ -95.373969015946898, 30.009306247747315 ], [ -95.37383801516529, 30.008980247297295 ], [ -95.373739015854653, 30.008677247552477 ], [ -95.373565015679205, 30.008167247434177 ], [ -95.373433015154092, 30.007750247798676 ], [ -95.373201015496903, 30.007074247310783 ], [ -95.373167015045439, 30.00695624743928 ], [ -95.373111014850849, 30.006821247099211 ], [ -95.37297701496432, 30.006432247194393 ], [ -95.372925015237371, 30.006305247044615 ], [ -95.372806014799039, 30.0059182467512 ], [ -95.372762014669888, 30.005790246713804 ], [ -95.372724015626659, 30.005663247211544 ], [ -95.37263801494106, 30.00542424725019 ], [ -95.372572015046089, 30.005185246655117 ], [ -95.372523014658654, 30.005055246698788 ], [ -95.37245201491983, 30.004818246521737 ], [ -95.372372015463, 30.004572247151664 ], [ -95.372341014743697, 30.004449247216165 ], [ -95.37228801475834, 30.004328247203432 ], [ -95.372196015389179, 30.004035246738599 ], [ -95.371974015119818, 30.003371246597354 ], [ -95.371854014668799, 30.003013246259588 ], [ -95.371677014841779, 30.002521246457885 ], [ -95.371616014401653, 30.002386246389637 ], [ -95.371512014900759, 30.002055246614944 ], [ -95.371449015045158, 30.001854245991382 ], [ -95.371268014999643, 30.001324246255912 ], [ -95.371157014526887, 30.000999245998695 ], [ -95.371077014385392, 30.000739246055744 ], [ -95.37092101438985, 30.000264246493145 ], [ -95.37089901435958, 30.000170245890928 ], [ -95.370846014072555, 30.000021246433967 ], [ -95.37078001445397, 29.999767245833663 ], [ -95.370542014593894, 29.999034245472775 ], [ -95.370498014615464, 29.99886424543881 ], [ -95.370450014052864, 29.998722245983362 ], [ -95.370408014402514, 29.998621245808359 ], [ -95.370214014390868, 29.998016245764262 ], [ -95.369977014011099, 29.997343245710915 ], [ -95.369782014195195, 29.996713245410401 ], [ -95.369513013992645, 29.995892245590902 ], [ -95.369425013874618, 29.995597245167858 ], [ -95.369217014050008, 29.99490424534849 ], [ -95.369162013535529, 29.994755244894858 ], [ -95.368490013106523, 29.992614244783347 ], [ -95.368031013215273, 29.991184244718969 ], [ -95.367617013454577, 29.989894243998211 ], [ -95.367349012750807, 29.989092243860426 ], [ -95.366429013015079, 29.986256243643371 ], [ -95.366370012418841, 29.986110243504218 ], [ -95.365845012315006, 29.984482242811946 ], [ -95.365667012164749, 29.983932243346654 ], [ -95.365626012675918, 29.983776242477074 ], [ -95.365096012420182, 29.98215624215786 ], [ -95.365039011693128, 29.982006242542948 ], [ -95.364762012166679, 29.981072242507313 ], [ -95.364732012113379, 29.980919242187102 ], [ -95.364721011745729, 29.980763242319782 ], [ -95.364692011610927, 29.980616242478643 ], [ -95.364668012352567, 29.980317242067404 ], [ -95.364638011387626, 29.979722242084662 ], [ -95.36462201155733, 29.979569242451113 ], [ -95.364607012294371, 29.978996242338564 ], [ -95.364554011508744, 29.97789924162495 ], [ -95.364549011313358, 29.977608241430186 ], [ -95.364525011678893, 29.977128241896185 ], [ -95.364499012127155, 29.976336240984846 ], [ -95.364466012074487, 29.975847241362114 ], [ -95.364469011800225, 29.97569124109847 ], [ -95.364447012047037, 29.975226241620035 ], [ -95.364427012100165, 29.975076241077922 ], [ -95.36443101166239, 29.97477324126983 ], [ -95.364411011384036, 29.974168240895494 ], [ -95.364366011818035, 29.973521241280398 ], [ -95.364337011900048, 29.972873240429113 ], [ -95.364335011376596, 29.972543240699522 ], [ -95.364261010989594, 29.970908240370562 ], [ -95.358372009871729, 29.970949240864243 ], [ -95.358365010030312, 29.969910239976723 ], [ -95.358397009763394, 29.969410240396474 ], [ -95.358390009614112, 29.969124239911352 ], [ -95.358390009564729, 29.968161240280249 ], [ -95.358415009323863, 29.968046239694203 ], [ -95.358409009569172, 29.967876239949771 ], [ -95.358408010093527, 29.966496239885281 ], [ -95.358294009939598, 29.966413239938134 ], [ -95.357751009246428, 29.966204239310425 ], [ -95.356829009431038, 29.965820239823884 ], [ -95.356823009540605, 29.965749239160559 ], [ -95.356778009682472, 29.965694239685675 ], [ -95.356728009126314, 29.965578239588528 ], [ -95.353386008267208, 29.965618239684421 ], [ -95.350576007742944, 29.965663239742497 ], [ -95.350257007586663, 29.965801239410293 ], [ -95.350068007354452, 29.965801239671759 ], [ -95.349809007380557, 29.965459240129967 ], [ -95.349549007284423, 29.964976239892337 ], [ -95.34901900735197, 29.964138239669776 ], [ -95.348594007016885, 29.963478239243919 ], [ -95.348417007111166, 29.96313623962352 ], [ -95.348240007215452, 29.962700239592682 ], [ -95.348099007037888, 29.962322239254345 ], [ -95.34776900633706, 29.961780239370448 ], [ -95.347450007019972, 29.961273238805539 ], [ -95.347108006554635, 29.960789238403255 ], [ -95.34683700693445, 29.960542238835554 ], [ -95.34655400639717, 29.960341238875749 ], [ -95.346177006465979, 29.960176239128028 ], [ -95.345729006002301, 29.960047238344345 ], [ -95.345233006018319, 29.959988238870011 ], [ -95.344785005800929, 29.959976238344272 ], [ -95.344455005981629, 29.959940238797572 ], [ -95.344266005443842, 29.959905238853473 ], [ -95.343932005638052, 29.959733238350264 ], [ -95.342961005016136, 29.958138238791214 ], [ -95.342149005458921, 29.956824238399214 ], [ -95.341450004322965, 29.955669237632694 ], [ -95.340278004444798, 29.953721237481517 ], [ -95.34016000444997, 29.953461237341333 ], [ -95.340005004827319, 29.952988237337234 ], [ -95.339939004774379, 29.952654237879173 ], [ -95.339929004714776, 29.952601237815951 ], [ -95.339897004255576, 29.952338237368647 ], [ -95.339877004691061, 29.95176523695163 ], [ -95.33931600359729, 29.951760237625329 ], [ -95.335211002611146, 29.9517192376113 ], [ -95.333102002078775, 29.951702237222065 ], [ -95.332414002108578, 29.95169523770118 ], [ -95.331876001819808, 29.951690237176255 ], [ -95.33173200169584, 29.951689237117016 ], [ -95.331631002092436, 29.951688237547934 ], [ -95.331402001889685, 29.951686237803585 ], [ -95.329302001272922, 29.951728237627322 ], [ -95.328773001700412, 29.951738237674277 ], [ -95.32718200138477, 29.951770237924396 ], [ -95.326862001054636, 29.95177623750714 ], [ -95.324800000914124, 29.95199723750828 ], [ -95.324833000261933, 29.95685023849877 ], [ -95.324897000640959, 29.957614239400662 ], [ -95.324874000446187, 29.957995239275899 ], [ -95.325897001354122, 29.959622239517078 ], [ -95.328178001966947, 29.963383239660061 ], [ -95.329527002249279, 29.96562424067848 ], [ -95.329835002295965, 29.966136240413569 ], [ -95.329551001786399, 29.966147240125601 ], [ -95.329538002365425, 29.96629524090979 ], [ -95.329576001868801, 29.966537240772755 ], [ -95.329602002424636, 29.966597240872705 ], [ -95.329639001781132, 29.966647240938581 ], [ -95.329671001986299, 29.966718240949088 ], [ -95.329691002213195, 29.966745240669464 ], [ -95.329753002073005, 29.966828240499197 ], [ -95.329930002781822, 29.967153240659844 ], [ -95.330268002462034, 29.967741240630847 ], [ -95.330639002875131, 29.968388241003236 ], [ -95.330852003006143, 29.968758241292473 ], [ -95.331288003148515, 29.969385240814542 ], [ -95.331440002557201, 29.969560240905373 ], [ -95.331580003195072, 29.969665240926162 ], [ -95.331756002641228, 29.969797241233277 ], [ -95.332943003275673, 29.970786241593039 ], [ -95.333019002866791, 29.970858241796169 ], [ -95.333053003116632, 29.970896241621727 ], [ -95.33329000306027, 29.971166241144907 ], [ -95.333442003730156, 29.971374241066471 ], [ -95.334207004117985, 29.972659241771826 ], [ -95.334725003590833, 29.973529241915504 ], [ -95.335003003672526, 29.973975242135619 ], [ -95.335388004392783, 29.974255241966464 ], [ -95.336626004892381, 29.975266242206295 ], [ -95.33715400421049, 29.975722242462727 ], [ -95.337259004721872, 29.975813242121188 ], [ -95.337200004238881, 29.975813242203991 ], [ -95.336897004495384, 29.975904242188342 ], [ -95.333455004227801, 29.975925242039395 ], [ -95.332831003723484, 29.975936242749434 ], [ -95.332525003632938, 29.975838242873895 ], [ -95.329555003057351, 29.975838242278126 ], [ -95.328533002590234, 29.976267242415073 ], [ -95.319740000251869, 29.976269242637027 ], [ -95.318367000118329, 29.976261243016946 ], [ -95.317512999970631, 29.975922242806412 ], [ -95.308401996829247, 29.975936243581188 ], [ -95.308376997004061, 29.972973242513564 ], [ -95.308329997519337, 29.972067242175861 ], [ -95.308233996987255, 29.972247242939257 ], [ -95.308126996888134, 29.972386242917 ], [ -95.307991996482031, 29.972517242963047 ], [ -95.307846997225752, 29.972623242444335 ], [ -95.307721996707031, 29.972689242301115 ], [ -95.307556997030247, 29.972762242294188 ], [ -95.307372996725505, 29.972808242995825 ], [ -95.30718399698911, 29.972827243042762 ], [ -95.304488995626528, 29.972818242839551 ], [ -95.299545995150496, 29.972825242533382 ], [ -95.29916699514483, 29.972825242941688 ], [ -95.29887999481096, 29.972837242941953 ], [ -95.298600994324474, 29.972869242936181 ], [ -95.298307994700892, 29.972926242740769 ], [ -95.297995994735402, 29.973017243457495 ], [ -95.297699994124343, 29.973144243445024 ], [ -95.297294994811352, 29.973358243352884 ], [ -95.296929993879729, 29.973653243551119 ], [ -95.296702994559183, 29.973876243634617 ], [ -95.296425994152585, 29.974255243087864 ], [ -95.296263994466941, 29.974560243175265 ], [ -95.296110993738452, 29.975028243337199 ], [ -95.296078993869841, 29.975506244000655 ], [ -95.296070994370083, 29.97778224381549 ], [ -95.29607399433209, 29.979167244652132 ], [ -95.296073994480679, 29.979206244257455 ], [ -95.296078994239508, 29.980251244884624 ], [ -95.296057994222437, 29.981815244884523 ], [ -95.296041993957928, 29.982327245215444 ], [ -95.295932994410023, 29.982782245159783 ], [ -95.297085994269082, 29.982956244989975 ], [ -95.296957994669611, 29.983596245431833 ], [ -95.298762995118153, 29.9839442455275 ], [ -95.300170995647377, 29.984246245662018 ], [ -95.301910995803695, 29.984624245604934 ], [ -95.303235996753671, 29.984907245304115 ], [ -95.305346996841664, 29.985312245601335 ], [ -95.306083997412216, 29.985394245311923 ], [ -95.306532997137239, 29.985452245120449 ], [ -95.30699699746522, 29.98549524551305 ], [ -95.308212997353181, 29.985533245084881 ], [ -95.308574997979548, 29.985544245432234 ], [ -95.308588998300095, 29.986722245827362 ], [ -95.308591998271424, 29.986945245756459 ], [ -95.308597998389757, 29.988747246231799 ], [ -95.308606997497151, 29.989466245874382 ], [ -95.30861199819995, 29.989918246385272 ], [ -95.308615998263761, 29.99021124612629 ], [ -95.308618997983558, 29.990415246613033 ], [ -95.308701998089532, 29.9924302463122 ], [ -95.308761997788821, 29.994255246539229 ], [ -95.308808998823139, 29.997010247410831 ], [ -95.308860998590674, 30.000135248246398 ], [ -95.308892998253938, 30.002038248358474 ], [ -95.308903998778973, 30.002618248572695 ], [ -95.308897998723324, 30.0030842492164 ], [ -95.308893999017087, 30.003410249241121 ], [ -95.308906999154317, 30.003900248781051 ], [ -95.308916998219487, 30.004121249006975 ], [ -95.308913998614941, 30.004236248609633 ], [ -95.308913998564506, 30.004371249454685 ], [ -95.310223999074537, 30.004403248777518 ], [ -95.310426999333515, 30.00442524872301 ], [ -95.310900999717305, 30.004475249197345 ], [ -95.311350998975229, 30.004546248850311 ], [ -95.311656999404349, 30.004626249180927 ], [ -95.312490999467968, 30.004821249181742 ], [ -95.313054999620419, 30.005043248930949 ], [ -95.314630999771708, 30.005664249320617 ], [ -95.315619000377325, 30.006054248859034 ], [ -95.31597600029427, 30.006195248907417 ], [ -95.316785000847304, 30.006500249007484 ], [ -95.317546001167557, 30.006787248917913 ], [ -95.317746001491599, 30.006862249497644 ], [ -95.318296000962391, 30.007072249576769 ], [ -95.318413001495188, 30.007115249556392 ], [ -95.318636000946398, 30.007196249622229 ], [ -95.318953001257043, 30.007310249451173 ], [ -95.321288001561626, 30.008200249658515 ], [ -95.328868004414574, 30.011088249690562 ], [ -95.329087003815303, 30.011161250005376 ], [ -95.32951800455244, 30.011300249981797 ], [ -95.330109004478913, 30.011538249495459 ], [ -95.330129004339625, 30.011543250215034 ], [ -95.330946004903041, 30.011691250082674 ], [ -95.333776005024731, 30.012205249743012 ], [ -95.33804100665445, 30.01297324938341 ], [ -95.339111006864258, 30.013171249505795 ], [ -95.340482007461858, 30.01341224966303 ], [ -95.344162008335203, 30.014034249702426 ], [ -95.346686008962536, 30.014450249785895 ], [ -95.349985010224657, 30.015040250114758 ], [ -95.350889009591796, 30.015207250133788 ], [ -95.352235010377399, 30.01542624943464 ], [ -95.352811010487827, 30.015524250237316 ], [ -95.353005010331302, 30.015555249953046 ], [ -95.353388010538779, 30.015629250045318 ], [ -95.354946010701937, 30.015903249877923 ], [ -95.357416011869404, 30.016346249692052 ], [ -95.357618011900584, 30.016381249574405 ], [ -95.359689012351978, 30.016747249906366 ], [ -95.36161701243482, 30.017116249979676 ], [ -95.362303013345496, 30.017247249483614 ], [ -95.362384012526817, 30.017093249701102 ], [ -95.362456013256974, 30.016826249646396 ], [ -95.363073013535271, 30.015893249266174 ], [ -95.363357013163906, 30.015451249567302 ], [ -95.363547012898394, 30.014855249474408 ], [ -95.363633013004616, 30.01467624882396 ], [ -95.36375101272445, 30.014318248810838 ], [ -95.363780012940808, 30.014290249121597 ], [ -95.363784013335135, 30.014270249396475 ], [ -95.364207013220678, 30.014182249370116 ], [ -95.364485013732619, 30.014072248773143 ], [ -95.365136013957923, 30.013951248631436 ], [ -95.365313013398463, 30.01389624886637 ], [ -95.365395013656524, 30.013852249181422 ], [ -95.365471013927817, 30.013797248765588 ], [ -95.365584013517235, 30.013654248964023 ], [ -95.365660013682344, 30.013467248510768 ], [ -95.365710013406002, 30.013181248459937 ], [ -95.365761013255835, 30.012955249229737 ], [ -95.365811013937403, 30.01287324906934 ], [ -95.365982014028134, 30.012675248754441 ], [ -95.366083014066675, 30.012576248545557 ], [ -95.366152013704053, 30.012548249049164 ], [ -95.366279013494051, 30.012526248316277 ], [ -95.366778013728066, 30.012471248791851 ], [ -95.367100014014397, 30.012416248296486 ], [ -95.36733301371153, 30.012399248628899 ], [ -95.367409014563236, 30.012366248803986 ], [ -95.367573013829642, 30.012240248537662 ], [ -95.367750014603487, 30.012053248464866 ], [ -95.367820013932473, 30.011959248568363 ], [ -95.367858013837747, 30.011849248750359 ], [ -95.367902014268324, 30.011756248155368 ], [ -95.367971013765953, 30.011635248914178 ], [ -95.368041014707728, 30.011541248042779 ], [ -95.368129013843244, 30.01147024804721 ], [ -95.368249014634713, 30.011409248314621 ], [ -95.368489014025144, 30.011354248067743 ], [ -95.368748014358331, 30.011349248463521 ], [ -95.368925014860451, 30.011354248570278 ], [ -95.369171013989813, 30.011381248421255 ], [ -95.369449014512597, 30.011370248780391 ], [ -95.369847015022415, 30.011337248506958 ], [ -95.370068014794185, 30.011299248686107 ], [ -95.370416014967617, 30.011266248649399 ], [ -95.370776015282743, 30.011243248623128 ], [ -95.371338015080511, 30.011287248414963 ], [ -95.371742015011435, 30.011270247836315 ], [ -95.371805014866808, 30.01121524842852 ], [ -95.37190001480225, 30.01118824791677 ], [ -95.372008015598766, 30.011193247900007 ], [ -95.37211501477384, 30.011237247994817 ], [ -95.372222015468765, 30.011243247947117 ], [ -95.372279015059618, 30.011226247945213 ], [ -95.372323015606554, 30.011193248622419 ], [ -95.372380015777736, 30.011116248681617 ], [ -95.372443014943087, 30.011067248504979 ], [ -95.372702015733495, 30.01092424829131 ], [ -95.372778015615353, 30.010902248079475 ], [ -95.372848015735954, 30.010891248203542 ], [ -95.373056015132633, 30.010956248489084 ], [ -95.373151015264568, 30.011000247825297 ], [ -95.373353015651631, 30.011127248186309 ], [ -95.373461015931255, 30.011226248477538 ], [ -95.373530015492548, 30.011253248392634 ], [ -95.373631015553315, 30.011270248504591 ], [ -95.3737200157057, 30.011319248284977 ], [ -95.373758015325109, 30.01136824867746 ], [ -95.37382101610649, 30.011418247952282 ], [ -95.373865015224268, 30.011429248615798 ], [ -95.373941015415738, 30.011412248121342 ], [ -95.374452015520788, 30.01117024804817 ], [ -95.374635015684319, 30.011115248337095 ], [ -95.374743016032369, 30.011093247744135 ], [ -95.374863015420601, 30.011043248398277 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1482, "Tract": "48339691301", "Area_SqMi": 2.1866968529956123, "total_2009": 343, "total_2010": 601, "total_2011": 632, "total_2012": 786, "total_2013": 1317, "total_2014": 1424, "total_2015": 1777, "total_2016": 1634, "total_2017": 1687, "total_2018": 1682, "total_2019": 1856, "total_2020": 1921, "age1": 697, "age2": 1155, "age3": 462, "earn1": 556, "earn2": 1115, "earn3": 643, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 9, "naics_s05": 2, "naics_s06": 9, "naics_s07": 1559, "naics_s08": 0, "naics_s09": 56, "naics_s10": 10, "naics_s11": 6, "naics_s12": 36, "naics_s13": 2, "naics_s14": 24, "naics_s15": 305, "naics_s16": 54, "naics_s17": 0, "naics_s18": 219, "naics_s19": 21, "naics_s20": 0, "race1": 1900, "race2": 200, "race3": 14, "race4": 117, "race5": 5, "race6": 78, "ethnicity1": 1786, "ethnicity2": 528, "edu1": 243, "edu2": 399, "edu3": 505, "edu4": 470, "Shape_Length": 44409.911391480979, "Shape_Area": 60961365.692449979, "total_2021": 2162, "total_2022": 2314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.541253066027821, 30.170519274891596 ], [ -95.541406065750607, 30.170284274510752 ], [ -95.540685065986196, 30.169983274484046 ], [ -95.539973065997899, 30.169671274772345 ], [ -95.539907065496365, 30.169642274290922 ], [ -95.539724065443011, 30.169549275040065 ], [ -95.539515065482732, 30.1694062744258 ], [ -95.539224065411517, 30.169081274536158 ], [ -95.53915406525617, 30.168966274434823 ], [ -95.539053065175324, 30.168696274835487 ], [ -95.539003065562113, 30.168619274414723 ], [ -95.538946064981786, 30.168570274467601 ], [ -95.5388630648158, 30.168542274755062 ], [ -95.53870506549184, 30.168542274470148 ], [ -95.538629064946548, 30.168575274174582 ], [ -95.538560065065894, 30.168619274908576 ], [ -95.538123064979033, 30.168938274533723 ], [ -95.537611064886192, 30.16925727426278 ], [ -95.537535064358806, 30.169295275020747 ], [ -95.537440064476598, 30.169317274650325 ], [ -95.537263064531018, 30.169328274396442 ], [ -95.537130064809588, 30.169301274754574 ], [ -95.537060064530067, 30.169273274570923 ], [ -95.537003064488559, 30.169235274392982 ], [ -95.536972064317339, 30.169174274355484 ], [ -95.536959064367991, 30.169130274995929 ], [ -95.53696506484259, 30.169075274904966 ], [ -95.537016064693091, 30.16899327491177 ], [ -95.537022065130301, 30.168949274493837 ], [ -95.537016064683328, 30.168899274950935 ], [ -95.536965064249046, 30.168828274884994 ], [ -95.536871065110475, 30.1687622744506 ], [ -95.536826065036934, 30.168718274546702 ], [ -95.536807064928567, 30.168680274884096 ], [ -95.536801064760922, 30.168614274892292 ], [ -95.536820064246712, 30.168537274269578 ], [ -95.536883064657275, 30.168366274395932 ], [ -95.53688306488678, 30.168306274333297 ], [ -95.536858064409529, 30.168262274737209 ], [ -95.536801064906101, 30.168229274311088 ], [ -95.536738064877397, 30.168223274768771 ], [ -95.536655064424764, 30.168245274023608 ], [ -95.536421064486817, 30.16842727433669 ], [ -95.536327064248567, 30.168460274220564 ], [ -95.536213064542906, 30.168476274124671 ], [ -95.536143064878971, 30.168476274447904 ], [ -95.536061064755629, 30.168460274918068 ], [ -95.535991064312185, 30.168432274142219 ], [ -95.535833063912435, 30.168355274468546 ], [ -95.535713064362611, 30.168273274811028 ], [ -95.535542064567551, 30.168190274191382 ], [ -95.535415064154122, 30.168152274146806 ], [ -95.535137064155506, 30.168124274357584 ], [ -95.534903064081405, 30.168140274105664 ], [ -95.534726064465445, 30.16807427446793 ], [ -95.534675064231806, 30.168030274505949 ], [ -95.534650063740742, 30.167986274468085 ], [ -95.534637064363736, 30.167932274227582 ], [ -95.534644063903229, 30.167888274332761 ], [ -95.534682063749415, 30.167860274555718 ], [ -95.534840063936272, 30.167833274057202 ], [ -95.535030064453935, 30.167778274235648 ], [ -95.535106064000317, 30.167723274426276 ], [ -95.535163064634943, 30.167651274081145 ], [ -95.535163063819056, 30.167585274117158 ], [ -95.535093064394218, 30.167503274389269 ], [ -95.534929064415991, 30.167486274425897 ], [ -95.534593063985895, 30.16749727416099 ], [ -95.534517064120735, 30.167481274766537 ], [ -95.533904063767153, 30.167173274231654 ], [ -95.533790064049739, 30.16706327464756 ], [ -95.533777063799931, 30.167013274155973 ], [ -95.533796063861615, 30.166947274472616 ], [ -95.533953063857453, 30.166763274359688 ], [ -95.534030064166828, 30.166673273905594 ], [ -95.534057063918468, 30.166635274607426 ], [ -95.534081063665681, 30.166601274630352 ], [ -95.534094064223851, 30.166502273791814 ], [ -95.53405606425936, 30.166403274186916 ], [ -95.534038063574954, 30.166390273848187 ], [ -95.533980064319778, 30.166348274623225 ], [ -95.533904064036761, 30.166343274538633 ], [ -95.533695064008285, 30.166354274554745 ], [ -95.533619063579437, 30.16634827433251 ], [ -95.533518063839935, 30.166293273932222 ], [ -95.533221063704858, 30.166013273802715 ], [ -95.533151063845906, 30.165980274316183 ], [ -95.53296806305103, 30.165952274470392 ], [ -95.532841063913935, 30.165947273717052 ], [ -95.532689063217177, 30.165903274012052 ], [ -95.532563063190949, 30.165782273875642 ], [ -95.532449063270732, 30.165628274186886 ], [ -95.53230406361503, 30.165474274171242 ], [ -95.532101063197231, 30.165336274118978 ], [ -95.531981062988606, 30.165270274034008 ], [ -95.531753063000991, 30.165166274362353 ], [ -95.531690063676734, 30.165111273701296 ], [ -95.531652063040625, 30.1648632735699 ], [ -95.531633063238488, 30.164600273523423 ], [ -95.531614063306876, 30.164528273885193 ], [ -95.531557063445447, 30.164457273875183 ], [ -95.531418062679379, 30.164451273737349 ], [ -95.531064063493574, 30.16462727358202 ], [ -95.531013063305892, 30.164671274315712 ], [ -95.530994063164172, 30.164715274272289 ], [ -95.530994062957646, 30.164786274226465 ], [ -95.531108063271461, 30.164951274101924 ], [ -95.531114062653955, 30.165001274041735 ], [ -95.531102062869735, 30.165061273566142 ], [ -95.531051063009258, 30.165133273587735 ], [ -95.530950062579549, 30.165215273884527 ], [ -95.530849063478954, 30.165276273788404 ], [ -95.530760063440113, 30.165369274407368 ], [ -95.530697063035703, 30.165451274174217 ], [ -95.530595062485901, 30.165655274101965 ], [ -95.530456063305706, 30.165776274234329 ], [ -95.530330062602047, 30.165814274059155 ], [ -95.530203063208688, 30.165831273834968 ], [ -95.529665062674439, 30.165842273762422 ], [ -95.529539062522119, 30.165825274303579 ], [ -95.529374062787426, 30.165754273768957 ], [ -95.529317062641766, 30.165710273919906 ], [ -95.52920406262777, 30.165556274578503 ], [ -95.529172062765312, 30.165457273870548 ], [ -95.529172062716341, 30.165363274489323 ], [ -95.529191062856853, 30.165292274571048 ], [ -95.529229062379216, 30.165209274087843 ], [ -95.529286063019143, 30.165121273791282 ], [ -95.529318062868043, 30.165044274499817 ], [ -95.529305062233007, 30.164978273872624 ], [ -95.529273062431216, 30.16490727425268 ], [ -95.529210062666408, 30.164863273898476 ], [ -95.529122062850604, 30.164835274397504 ], [ -95.529001062198475, 30.164830273996259 ], [ -95.52883706200592, 30.16484127385759 ], [ -95.528166061762775, 30.164945274447433 ], [ -95.528071062091655, 30.164951274178783 ], [ -95.527648062520754, 30.164797273678079 ], [ -95.527534061659992, 30.164698274457926 ], [ -95.527414062000418, 30.164566273658767 ], [ -95.527287061787206, 30.164395274430323 ], [ -95.527230062013516, 30.164269273873291 ], [ -95.527186061911522, 30.164054274381453 ], [ -95.527148062207417, 30.163977273799144 ], [ -95.527091062018258, 30.163911273466706 ], [ -95.52700306225745, 30.163845273470127 ], [ -95.52672406179704, 30.16373027371543 ], [ -95.52659106227641, 30.163664274222949 ], [ -95.526459061530105, 30.163554273471782 ], [ -95.526332061431035, 30.163488274261795 ], [ -95.526149061402904, 30.163433273748552 ], [ -95.526003061672938, 30.163411273571597 ], [ -95.52585806163404, 30.163422273882734 ], [ -95.525510061749856, 30.163411273456617 ], [ -95.525168061167975, 30.16338927390326 ], [ -95.524985061328309, 30.16335627397083 ], [ -95.524845061745154, 30.163224273982852 ], [ -95.524789061531536, 30.163158274065783 ], [ -95.524650061386055, 30.162960274152045 ], [ -95.524599061547349, 30.162866274000642 ], [ -95.524567060818882, 30.162784273334385 ], [ -95.524555061453512, 30.162525273618719 ], [ -95.524555061503193, 30.162097273695174 ], [ -95.524530060878448, 30.162042273578486 ], [ -95.52442206118333, 30.161899273160554 ], [ -95.52414406086038, 30.161635273554193 ], [ -95.523941060704701, 30.16142027309381 ], [ -95.523904060736058, 30.161349273651215 ], [ -95.523866060612534, 30.161206273459211 ], [ -95.523866061105878, 30.160860273196402 ], [ -95.523948061247609, 30.160414273680971 ], [ -95.523973060830372, 30.160359273696312 ], [ -95.524246061324789, 30.160002273312674 ], [ -95.524265061487569, 30.159942273627717 ], [ -95.52427106067671, 30.159881272933074 ], [ -95.524239061196127, 30.159667273222915 ], [ -95.524233061094733, 30.159463273461419 ], [ -95.524360061170086, 30.158958273092903 ], [ -95.524373061193813, 30.158815272716474 ], [ -95.524366060814614, 30.158743273051599 ], [ -95.524271061468454, 30.158617272862237 ], [ -95.52420806142139, 30.158556272968532 ], [ -95.524113061273923, 30.15849627300036 ], [ -95.524006060859946, 30.15845727293301 ], [ -95.523911060411663, 30.158441272757205 ], [ -95.523816061198559, 30.15844627299381 ], [ -95.523740060725814, 30.15847427258792 ], [ -95.523626060902359, 30.158534273339018 ], [ -95.523544060262608, 30.158595273209595 ], [ -95.52334106076232, 30.158683273004645 ], [ -95.523272060751594, 30.158688273230819 ], [ -95.523133061178726, 30.158649273170038 ], [ -95.523076060363977, 30.158605273069021 ], [ -95.523013061009024, 30.158523273065281 ], [ -95.523006060403304, 30.158468272925756 ], [ -95.523013060989655, 30.158419272585839 ], [ -95.523038060338507, 30.15838027328423 ], [ -95.523152060798381, 30.15830927327486 ], [ -95.523367061048177, 30.158215272636532 ], [ -95.523430060741774, 30.158149272955821 ], [ -95.523475060374153, 30.158089272792644 ], [ -95.523506060867902, 30.158023272917234 ], [ -95.523570061195329, 30.157858273162475 ], [ -95.523519060333825, 30.157418272405764 ], [ -95.52349406077721, 30.157352273110732 ], [ -95.523399060668638, 30.157226273056516 ], [ -95.523222061067628, 30.157061272925464 ], [ -95.522931060849956, 30.156901272921406 ], [ -95.522495060137445, 30.156637272895182 ], [ -95.522393060198368, 30.156538272870613 ], [ -95.522280060755378, 30.156379272142662 ], [ -95.522242060365357, 30.156280272904013 ], [ -95.522248059882685, 30.156082272265603 ], [ -95.522242060627391, 30.155994272396811 ], [ -95.521983060362615, 30.155554272641233 ], [ -95.522002060775677, 30.15546127201555 ], [ -95.522046060357127, 30.155411272394709 ], [ -95.522160060754061, 30.155351272085305 ], [ -95.522350060712625, 30.15529027236747 ], [ -95.522381059908227, 30.155268272670337 ], [ -95.522407059954602, 30.155230272221729 ], [ -95.522413060143052, 30.155197272744608 ], [ -95.522407060476823, 30.155148272066366 ], [ -95.522381060234068, 30.155087272678145 ], [ -95.522299060040837, 30.155016272653246 ], [ -95.522229060481877, 30.154977272594124 ], [ -95.522135060505562, 30.154961272545176 ], [ -95.522014060703711, 30.154966272574178 ], [ -95.521489059810094, 30.155092272569522 ], [ -95.521344060170506, 30.155120271948924 ], [ -95.521262059864654, 30.155120272586657 ], [ -95.521097060406291, 30.155092271897491 ], [ -95.521002059522729, 30.155015272538904 ], [ -95.520964059828827, 30.154949272214811 ], [ -95.520952060436088, 30.154872272075991 ], [ -95.520958059992495, 30.154768272205445 ], [ -95.521002059750728, 30.154614272219572 ], [ -95.521009060200413, 30.154504272163077 ], [ -95.521003059809345, 30.154443272505333 ], [ -95.520971059977953, 30.154312272430687 ], [ -95.52091405946328, 30.154201272543457 ], [ -95.52075006007685, 30.154042271763014 ], [ -95.520642059677087, 30.153982272215586 ], [ -95.520522059876868, 30.153943272303671 ], [ -95.520320059953249, 30.153910272211441 ], [ -95.520218060099765, 30.153877271769556 ], [ -95.520130059244735, 30.153833272547121 ], [ -95.519573059047531, 30.153607272419244 ], [ -95.519504059334878, 30.153558271649874 ], [ -95.519447059502042, 30.153497271952489 ], [ -95.519396059078147, 30.153426272393631 ], [ -95.519377059299671, 30.153343272437326 ], [ -95.519377059487852, 30.153283271742826 ], [ -95.519384059436874, 30.153239272247468 ], [ -95.519453059433545, 30.153118271715101 ], [ -95.519517059703873, 30.153052271654936 ], [ -95.519611059466158, 30.152997272192728 ], [ -95.519700059030328, 30.152959272061846 ], [ -95.519921059707244, 30.152948271793598 ], [ -95.52001006012874, 30.152909271501684 ], [ -95.520016059479318, 30.152854271564959 ], [ -95.520004059748032, 30.15281627233124 ], [ -95.519966059879891, 30.152772272123133 ], [ -95.519915059197885, 30.152739272037202 ], [ -95.519795059153978, 30.152706272198905 ], [ -95.519700059555447, 30.152695271495521 ], [ -95.519574059893586, 30.152645271791791 ], [ -95.519441059386764, 30.152568271837705 ], [ -95.519036058908782, 30.152365271554107 ], [ -95.51890305894446, 30.152266271447306 ], [ -95.518682058905696, 30.152189271595699 ], [ -95.518581059472382, 30.152189271668057 ], [ -95.518555058820709, 30.152238272131999 ], [ -95.518555059144745, 30.152288272153044 ], [ -95.518612059195462, 30.152552272273891 ], [ -95.518606059308155, 30.152634271675254 ], [ -95.518530059701561, 30.152689272367432 ], [ -95.518315059309288, 30.152815271942533 ], [ -95.518264059421753, 30.15287027236673 ], [ -95.518245059234019, 30.152975272427284 ], [ -95.518251058896084, 30.153030272378331 ], [ -95.518283058773548, 30.153096271736906 ], [ -95.518334059237745, 30.153156271951495 ], [ -95.518416059311789, 30.153211272135625 ], [ -95.518492059024027, 30.153277272020109 ], [ -95.51853605908542, 30.153338272377365 ], [ -95.518549059476754, 30.15338227226157 ], [ -95.518536059510694, 30.153404272087247 ], [ -95.518365059411153, 30.153519272500162 ], [ -95.51822005930903, 30.153656271909409 ], [ -95.518099059065705, 30.153860271956219 ], [ -95.518036059605393, 30.154003272381832 ], [ -95.517922059233868, 30.154102272148531 ], [ -95.517833059010769, 30.154140272014658 ], [ -95.517618059009138, 30.154184272019101 ], [ -95.517441059277829, 30.154250272115625 ], [ -95.517365059103739, 30.154261272049983 ], [ -95.517302059234055, 30.154255272151847 ], [ -95.517264058741361, 30.154239272467546 ], [ -95.517207058666884, 30.154200272308429 ], [ -95.517176059136418, 30.154151272128573 ], [ -95.517176058768726, 30.154057272023458 ], [ -95.517163058845895, 30.154019271908631 ], [ -95.517119059097283, 30.153980272520073 ], [ -95.51702405883843, 30.153931272431706 ], [ -95.516948058426095, 30.153876272409512 ], [ -95.516885059363887, 30.15381527241712 ], [ -95.516847058579913, 30.153749272594691 ], [ -95.516828058628803, 30.153678272017405 ], [ -95.516828058383908, 30.15360127248762 ], [ -95.51684105852101, 30.153502272394164 ], [ -95.516891058975233, 30.153282272122095 ], [ -95.516879058864944, 30.153189271748936 ], [ -95.516828059330919, 30.153117272100946 ], [ -95.516740058785985, 30.153046271980468 ], [ -95.516601058266701, 30.152886272337138 ], [ -95.516518058417986, 30.152820272388492 ], [ -95.516436058384272, 30.152782271611173 ], [ -95.516170058534755, 30.152694272263734 ], [ -95.51608205861244, 30.152633272425103 ], [ -95.516076058919751, 30.152589272146542 ], [ -95.516082059049779, 30.152551272049926 ], [ -95.516120059131993, 30.15248527170154 ], [ -95.516177058563059, 30.152419272375788 ], [ -95.516202058724275, 30.152342272188783 ], [ -95.516196058602446, 30.152260271651421 ], [ -95.516120058756599, 30.152149272055475 ], [ -95.516019058392658, 30.152029272229658 ], [ -95.515867058767711, 30.151902272040147 ], [ -95.515785058327054, 30.15188027144772 ], [ -95.515684058176262, 30.151875272111361 ], [ -95.51551305886521, 30.151880271768746 ], [ -95.515386058544649, 30.15184727162729 ], [ -95.515336058030172, 30.151803271466111 ], [ -95.515273058455676, 30.151687271517474 ], [ -95.515266058328038, 30.151632271618425 ], [ -95.51533605787192, 30.151396271945796 ], [ -95.51534205788785, 30.151330271418288 ], [ -95.515298058417073, 30.151231271442541 ], [ -95.515210058152988, 30.15117127182867 ], [ -95.515102058452754, 30.151160271326308 ], [ -95.514982058200488, 30.151176271690588 ], [ -95.514862058275611, 30.151215271579311 ], [ -95.514767058597855, 30.151231271404392 ], [ -95.514685058379214, 30.151225271664078 ], [ -95.514609058230732, 30.151198271529843 ], [ -95.514242058094439, 30.150912271949736 ], [ -95.514103057739504, 30.150846271514972 ], [ -95.513451057510693, 30.15057627140401 ], [ -95.51316105809353, 30.1504442717685 ], [ -95.513097057553679, 30.150395271638011 ], [ -95.513028058193342, 30.15020827131362 ], [ -95.512971057822682, 30.150125271677013 ], [ -95.512724057927826, 30.149883271754824 ], [ -95.512667057936852, 30.149801271962129 ], [ -95.512611057115294, 30.149658271896254 ], [ -95.512560057676609, 30.149576271461523 ], [ -95.512509057074212, 30.149537271223341 ], [ -95.512396057272909, 30.149482271301022 ], [ -95.512098057445002, 30.149355271101825 ], [ -95.511137057050931, 30.148833271809877 ], [ -95.510853056653829, 30.148712271601905 ], [ -95.510693056954537, 30.14868127103394 ], [ -95.510299056560783, 30.148606271369342 ], [ -95.509847057259549, 30.148519271404489 ], [ -95.509757056284883, 30.148496271545838 ], [ -95.509695057014682, 30.148480271505662 ], [ -95.509486056500066, 30.148354271121345 ], [ -95.509341057039407, 30.148227271365936 ], [ -95.509069056518157, 30.147952271175608 ], [ -95.5089430561532, 30.147820271255828 ], [ -95.508905056290558, 30.147744271707058 ], [ -95.508892056225889, 30.14763427156382 ], [ -95.508924056648027, 30.147430270822873 ], [ -95.508924056239096, 30.147364270793624 ], [ -95.508873056682916, 30.147282271483824 ], [ -95.508850056361936, 30.147266271370388 ], [ -95.508798056760369, 30.147232271608736 ], [ -95.508646056602998, 30.147183271481747 ], [ -95.508488055967831, 30.14715027136533 ], [ -95.50841505629441, 30.147090270967034 ], [ -95.508209056198396, 30.146919271064032 ], [ -95.508077055881202, 30.146831270948038 ], [ -95.507817056280928, 30.146715271410766 ], [ -95.507539056521338, 30.146643270986008 ], [ -95.507425056126294, 30.146599271241723 ], [ -95.507179056333996, 30.146451271482924 ], [ -95.507164056121582, 30.146440271137983 ], [ -95.506995056504906, 30.146313270907296 ], [ -95.506913056448226, 30.146220270999706 ], [ -95.506901056218396, 30.146143270819401 ], [ -95.506913055562279, 30.146055271213697 ], [ -95.50697705637397, 30.145846271388493 ], [ -95.506977055994042, 30.145753270713538 ], [ -95.506932055742794, 30.145681270975349 ], [ -95.506844055698792, 30.145621270925407 ], [ -95.506768055936661, 30.145599270601505 ], [ -95.50664205574877, 30.145593271246867 ], [ -95.506515056329164, 30.145571271287881 ], [ -95.506376055694545, 30.14552227122498 ], [ -95.50619905619223, 30.145478270517927 ], [ -95.506085055304681, 30.145472270909309 ], [ -95.505958056083841, 30.145477271003834 ], [ -95.505800056063961, 30.145450271172482 ], [ -95.50521905507216, 30.145186270891053 ], [ -95.505132055536905, 30.145158270927798 ], [ -95.505098055499005, 30.14514727130523 ], [ -95.504997055405624, 30.145131271095046 ], [ -95.504890055036626, 30.145125270933242 ], [ -95.504702055252281, 30.145132270635621 ], [ -95.505799055938482, 30.147625271797086 ], [ -95.506343056406749, 30.148876271585454 ], [ -95.506648056195672, 30.149665271634756 ], [ -95.506700055661824, 30.149790271826923 ], [ -95.506903055995849, 30.150305272289124 ], [ -95.507176055747792, 30.15095827185586 ], [ -95.50759405614707, 30.151734272254679 ], [ -95.508157056197533, 30.152618272097335 ], [ -95.508482056795742, 30.153039272068618 ], [ -95.508536057107037, 30.153132272261885 ], [ -95.508607056277924, 30.153244271950747 ], [ -95.508767056535262, 30.153493272255535 ], [ -95.508970057048884, 30.15387727228013 ], [ -95.509185056685638, 30.154327272609613 ], [ -95.509316057311267, 30.154684272345868 ], [ -95.509441057251109, 30.155102273119024 ], [ -95.50953805713884, 30.155508273066609 ], [ -95.509602057304306, 30.155937272825376 ], [ -95.509604057267495, 30.155991273252706 ], [ -95.509644057146645, 30.156702272622429 ], [ -95.509634057497578, 30.156925272864871 ], [ -95.509583056729241, 30.157300273495235 ], [ -95.509538056845145, 30.157594273234629 ], [ -95.509477056689363, 30.157837272978817 ], [ -95.50939605667844, 30.158141273456703 ], [ -95.509259057630075, 30.158531273357617 ], [ -95.509113057519755, 30.158978273162642 ], [ -95.50900605722569, 30.159467274021324 ], [ -95.508922057201346, 30.160088273432908 ], [ -95.50895505735798, 30.160864274083551 ], [ -95.509108057116421, 30.161733274357669 ], [ -95.509314057456706, 30.162531274201239 ], [ -95.509429057813747, 30.163062274377765 ], [ -95.509511057812944, 30.163523274292906 ], [ -95.509546057277404, 30.163951274738693 ], [ -95.509533057231707, 30.16432427468585 ], [ -95.509480057659346, 30.164793274632011 ], [ -95.509338057968847, 30.165334274509842 ], [ -95.509202057563982, 30.165735274786691 ], [ -95.509042057328926, 30.166086275091761 ], [ -95.508884057537259, 30.166401275501059 ], [ -95.508701057189811, 30.166696275436813 ], [ -95.508495057426032, 30.166996274762074 ], [ -95.508265056888035, 30.16725527544174 ], [ -95.507809057669789, 30.167697275520133 ], [ -95.507464057458591, 30.16797127530738 ], [ -95.506778056577247, 30.168442275775092 ], [ -95.507242056749774, 30.16909327560122 ], [ -95.507669056965909, 30.169668276047997 ], [ -95.508197057762914, 30.170287275839204 ], [ -95.508651057950814, 30.170723276086296 ], [ -95.509163058189685, 30.171153275879618 ], [ -95.509778058108125, 30.171559276137277 ], [ -95.510755058607216, 30.172117276542391 ], [ -95.511841058514705, 30.172676276476949 ], [ -95.513207059025333, 30.173336275991186 ], [ -95.515062059074396, 30.174239276633063 ], [ -95.516075059826761, 30.174662276079466 ], [ -95.517104060172073, 30.175068276953262 ], [ -95.518584060448745, 30.175543276292537 ], [ -95.519943060869238, 30.175945276995328 ], [ -95.521427060648151, 30.176308276826759 ], [ -95.522563061291876, 30.176539276491049 ], [ -95.523662061189398, 30.176732276437143 ], [ -95.525037061812711, 30.176945276177122 ], [ -95.52543106227094, 30.177010276842307 ], [ -95.52590706241655, 30.177088276574171 ], [ -95.526779062887698, 30.177208276653463 ], [ -95.529583063351097, 30.177638276835413 ], [ -95.530272063154328, 30.177747276540817 ], [ -95.530999063119125, 30.17790427697258 ], [ -95.531485063514438, 30.178041276210273 ], [ -95.531543063233897, 30.178060276902691 ], [ -95.531911064344129, 30.178195276423157 ], [ -95.532428063719067, 30.178425276606706 ], [ -95.532691064082044, 30.178550276949231 ], [ -95.533016064403512, 30.178720277033406 ], [ -95.534752064650107, 30.17968827661333 ], [ -95.536101064459146, 30.177866276651901 ], [ -95.537558065238102, 30.175980276102489 ], [ -95.537756064786535, 30.175614276002786 ], [ -95.538013065005984, 30.175222275453947 ], [ -95.538596065793541, 30.174468276106307 ], [ -95.539459065299567, 30.17326227493615 ], [ -95.540320066222662, 30.171928274937589 ], [ -95.541253066027821, 30.170519274891596 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1483, "Tract": "48339692003", "Area_SqMi": 4.3122677670928926, "total_2009": 119, "total_2010": 128, "total_2011": 107, "total_2012": 158, "total_2013": 161, "total_2014": 253, "total_2015": 298, "total_2016": 354, "total_2017": 365, "total_2018": 410, "total_2019": 508, "total_2020": 459, "age1": 276, "age2": 645, "age3": 222, "earn1": 256, "earn2": 264, "earn3": 623, "naics_s01": 0, "naics_s02": 0, "naics_s03": 282, "naics_s04": 106, "naics_s05": 91, "naics_s06": 51, "naics_s07": 2, "naics_s08": 0, "naics_s09": 3, "naics_s10": 1, "naics_s11": 20, "naics_s12": 88, "naics_s13": 0, "naics_s14": 16, "naics_s15": 79, "naics_s16": 3, "naics_s17": 8, "naics_s18": 351, "naics_s19": 42, "naics_s20": 0, "race1": 930, "race2": 137, "race3": 16, "race4": 35, "race5": 2, "race6": 23, "ethnicity1": 887, "ethnicity2": 256, "edu1": 144, "edu2": 241, "edu3": 255, "edu4": 227, "Shape_Length": 54031.637114455494, "Shape_Area": 120218644.82650445, "total_2021": 742, "total_2022": 1143 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.439083039969361, 30.168845278421813 ], [ -95.43930603999074, 30.168841278238045 ], [ -95.438570039201593, 30.165861277676775 ], [ -95.438327039603124, 30.164835277529299 ], [ -95.438073038686198, 30.163769276729312 ], [ -95.438018038831018, 30.163540276835693 ], [ -95.437268039237836, 30.160563276405092 ], [ -95.4370580392047, 30.159727275836246 ], [ -95.437037038815703, 30.159642276542542 ], [ -95.437009039005275, 30.159534275989206 ], [ -95.436671038820265, 30.158189275794459 ], [ -95.436584038214633, 30.15778227616801 ], [ -95.43643003880031, 30.157178275901796 ], [ -95.43618203881438, 30.156204275602693 ], [ -95.436040037821755, 30.156230275779553 ], [ -95.436013038631799, 30.156236275367203 ], [ -95.435838037834529, 30.156274275712516 ], [ -95.435620037872809, 30.156315275631972 ], [ -95.435352037768027, 30.156341275308097 ], [ -95.435245037816614, 30.156352276000828 ], [ -95.435144038031311, 30.156360275842907 ], [ -95.4350630376711, 30.156367275765042 ], [ -95.434697037755882, 30.15638227568758 ], [ -95.434278037600393, 30.156378276027159 ], [ -95.434086037384134, 30.156376275643328 ], [ -95.434068037974043, 30.156376276004764 ], [ -95.434032038147947, 30.156376275791217 ], [ -95.433806037333028, 30.156374275428682 ], [ -95.433633037885883, 30.156373275346386 ], [ -95.433392037852897, 30.156370275597261 ], [ -95.43256903768912, 30.156363275601947 ], [ -95.432466037825705, 30.156363275437677 ], [ -95.432288037449354, 30.156361275489413 ], [ -95.432091037513644, 30.156359275954628 ], [ -95.431643037560761, 30.156356276091337 ], [ -95.430979036581206, 30.156354275866185 ], [ -95.430908036826622, 30.156353275930918 ], [ -95.430903037459174, 30.156144275307302 ], [ -95.430889036693813, 30.155490275322162 ], [ -95.430886036845521, 30.155345275551049 ], [ -95.43085903697758, 30.155348275885057 ], [ -95.430792036352841, 30.155221275911956 ], [ -95.430736036783614, 30.155114275410732 ], [ -95.430473037215037, 30.154886275189028 ], [ -95.430314036256291, 30.154565275389185 ], [ -95.43010303654026, 30.153740275142738 ], [ -95.429971037092244, 30.153603275432829 ], [ -95.429495036670957, 30.153545274804827 ], [ -95.428064036271437, 30.153488274844733 ], [ -95.427939035805196, 30.153428275151654 ], [ -95.4275620364959, 30.154534275677918 ], [ -95.427558036201461, 30.154924275974313 ], [ -95.427546035608856, 30.156354275765693 ], [ -95.427065036096351, 30.156353276102763 ], [ -95.426929035937405, 30.156341276118187 ], [ -95.426816035419236, 30.156318275787754 ], [ -95.42679103641288, 30.156306276045104 ], [ -95.426740036074435, 30.156281276092923 ], [ -95.426673035800178, 30.156228276131149 ], [ -95.423197035113191, 30.156274275841728 ], [ -95.414096032550177, 30.15606527596416 ], [ -95.413332031972828, 30.156048276715214 ], [ -95.413263032151249, 30.15599927617405 ], [ -95.413182032765661, 30.155950276078816 ], [ -95.412941032517608, 30.155853275905613 ], [ -95.412799032162937, 30.155811276445469 ], [ -95.412549032368688, 30.155716276579202 ], [ -95.412469032643216, 30.155675276583036 ], [ -95.412316032294456, 30.155567276045968 ], [ -95.412266031703609, 30.155508276114237 ], [ -95.41222703164577, 30.155438276106064 ], [ -95.412193032409505, 30.155305276240135 ], [ -95.412130032343782, 30.154761276481526 ], [ -95.412095031710777, 30.154449276240801 ], [ -95.412057032554017, 30.154294275902597 ], [ -95.412022031527826, 30.154222275919579 ], [ -95.411965031974304, 30.154154275904876 ], [ -95.4118910324745, 30.154084276418963 ], [ -95.41180203225548, 30.154026275827533 ], [ -95.411709031494482, 30.153988276054672 ], [ -95.411568032243508, 30.153951275754988 ], [ -95.411376031980708, 30.153924275996687 ], [ -95.41082703217441, 30.153896275690229 ], [ -95.41062603152757, 30.153904276042159 ], [ -95.410235031448366, 30.153921276080531 ], [ -95.410046031461107, 30.15396027568012 ], [ -95.410001031923542, 30.154061276221164 ], [ -95.409995031710451, 30.154129275601434 ], [ -95.410025031307455, 30.154581276234378 ], [ -95.410040031047728, 30.154723276186829 ], [ -95.40993903129737, 30.154642276155219 ], [ -95.40827803063425, 30.153635276136491 ], [ -95.40755003054386, 30.153290276136484 ], [ -95.407408030803964, 30.153223275957146 ], [ -95.406828030584876, 30.153063275606069 ], [ -95.40663503100798, 30.153088276262672 ], [ -95.406119030006266, 30.153157276220522 ], [ -95.405457030631311, 30.153247276191159 ], [ -95.405429030692559, 30.1532442762324 ], [ -95.404778029640227, 30.153189276312784 ], [ -95.404640030062964, 30.153178275997345 ], [ -95.40403102981233, 30.153397276183991 ], [ -95.403905029880292, 30.153442276102354 ], [ -95.403428029823701, 30.153614276108637 ], [ -95.403353029733438, 30.153595276268138 ], [ -95.403004029740416, 30.153511275873729 ], [ -95.402953029943987, 30.153499275876644 ], [ -95.402531029368021, 30.153316276096735 ], [ -95.401768029073139, 30.152724276374524 ], [ -95.401529029340537, 30.152538275960289 ], [ -95.400765029290071, 30.152217275655328 ], [ -95.400415029033866, 30.151934275995153 ], [ -95.400396028823138, 30.151919275546195 ], [ -95.400341028771663, 30.151853275994711 ], [ -95.400305029080556, 30.15181027608898 ], [ -95.399394028749356, 30.150729276134818 ], [ -95.398867028052805, 30.150591275810733 ], [ -95.398181028121741, 30.15093527599058 ], [ -95.397760028707538, 30.151027275870074 ], [ -95.397338028548234, 30.150935275741784 ], [ -95.397064028249417, 30.150645275797334 ], [ -95.38087202393109, 30.160108278636578 ], [ -95.38027102463515, 30.160546278831617 ], [ -95.3800710239437, 30.160710278498048 ], [ -95.377262023522007, 30.163023278547847 ], [ -95.374567022817772, 30.164612279802476 ], [ -95.374696023188605, 30.165052279200836 ], [ -95.374740023316122, 30.165184279809331 ], [ -95.374811023494786, 30.165334279777991 ], [ -95.374934022930546, 30.165493279177102 ], [ -95.375058023531608, 30.165608279524509 ], [ -95.375199022908561, 30.165696279733993 ], [ -95.375393022866717, 30.16580228001208 ], [ -95.3757290229631, 30.165978279248776 ], [ -95.376126023232985, 30.166217279698241 ], [ -95.376598023856857, 30.166473279919007 ], [ -95.377012023112044, 30.166667279906129 ], [ -95.377259023705179, 30.166746279913522 ], [ -95.377453024071812, 30.166781279764447 ], [ -95.378150024238138, 30.166834279565503 ], [ -95.378927023780875, 30.166887279791759 ], [ -95.379527023923529, 30.166905279712083 ], [ -95.379712024792909, 30.166931279496708 ], [ -95.380144024428247, 30.167090279671861 ], [ -95.380347024940662, 30.167196280022999 ], [ -95.380788024847561, 30.16749227992355 ], [ -95.381371024859874, 30.16788927982612 ], [ -95.381530024881968, 30.168039279559732 ], [ -95.381680025280616, 30.168250279639107 ], [ -95.381812024663049, 30.168533280023688 ], [ -95.381909025096178, 30.168762279871768 ], [ -95.382059025448953, 30.169230280395958 ], [ -95.382112025078129, 30.169459280107073 ], [ -95.382130025464676, 30.169583279856127 ], [ -95.382112025554392, 30.169883280098336 ], [ -95.382085025281683, 30.169980279869943 ], [ -95.381944025184296, 30.170244280185166 ], [ -95.381785024863504, 30.170513280127608 ], [ -95.381503025348934, 30.171016280606114 ], [ -95.381265024835301, 30.171387280116349 ], [ -95.381106024528961, 30.17160728054052 ], [ -95.380903024975026, 30.171846280779292 ], [ -95.380533025278538, 30.172296280900266 ], [ -95.380153024461478, 30.172834280785107 ], [ -95.37973602427391, 30.173495280827968 ], [ -95.381266024545212, 30.17347928124817 ], [ -95.389725027065495, 30.173513280245309 ], [ -95.38975902694888, 30.173609280676828 ], [ -95.389804026802295, 30.173712281139998 ], [ -95.38995202746699, 30.173746280949651 ], [ -95.390305027331749, 30.173725280529467 ], [ -95.392086027467229, 30.173685280675972 ], [ -95.39319202763626, 30.173660280797211 ], [ -95.396135028906585, 30.173612280557659 ], [ -95.399178030029589, 30.173603280325214 ], [ -95.401917030520721, 30.173572280404578 ], [ -95.405127031255532, 30.173536279803326 ], [ -95.406719032071507, 30.173505280001827 ], [ -95.406783031547988, 30.173504279629647 ], [ -95.409033032620087, 30.173484280209593 ], [ -95.411748033079817, 30.173449280169852 ], [ -95.415112034167507, 30.173418279975269 ], [ -95.415639034139559, 30.173404280206416 ], [ -95.41708603437651, 30.173355280042074 ], [ -95.417453034290517, 30.173334279941084 ], [ -95.41771503470747, 30.173314279595417 ], [ -95.417845034763062, 30.173298279233325 ], [ -95.418139034110567, 30.173253279742493 ], [ -95.418468034968924, 30.173213279832414 ], [ -95.418741035019991, 30.173192279661823 ], [ -95.419152034450292, 30.173179279905103 ], [ -95.419981034905945, 30.173165279692828 ], [ -95.420516034701024, 30.17316427966351 ], [ -95.421152035415389, 30.173163279721916 ], [ -95.426631037040252, 30.173108278914537 ], [ -95.428190036801794, 30.173091279056276 ], [ -95.428642037021575, 30.173086279110411 ], [ -95.43078703735371, 30.170289278707912 ], [ -95.433196038343965, 30.170255278142978 ], [ -95.434685038729583, 30.170252278220705 ], [ -95.43467903895899, 30.16965527827336 ], [ -95.435365039060045, 30.169663278435937 ], [ -95.435689038570132, 30.169524277992647 ], [ -95.435849038491781, 30.169603278600473 ], [ -95.435897038962565, 30.169603278388966 ], [ -95.436099039079537, 30.169593278688939 ], [ -95.436285039175672, 30.169566278270114 ], [ -95.436439039024606, 30.169566278380962 ], [ -95.436524039004325, 30.169614278421051 ], [ -95.436652039142984, 30.169566278527956 ], [ -95.436753039195708, 30.169518278310154 ], [ -95.436874039217869, 30.169405278092675 ], [ -95.436918039542363, 30.168975277834974 ], [ -95.436929039081093, 30.168656277792831 ], [ -95.438003039735051, 30.168661277820952 ], [ -95.438056039091194, 30.168863278468439 ], [ -95.439083039969361, 30.168845278421813 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1484, "Tract": "48339692802", "Area_SqMi": 15.057962350437174, "total_2009": 179, "total_2010": 410, "total_2011": 390, "total_2012": 245, "total_2013": 236, "total_2014": 220, "total_2015": 275, "total_2016": 293, "total_2017": 263, "total_2018": 206, "total_2019": 291, "total_2020": 300, "age1": 106, "age2": 156, "age3": 73, "earn1": 93, "earn2": 130, "earn3": 112, "naics_s01": 0, "naics_s02": 0, "naics_s03": 40, "naics_s04": 25, "naics_s05": 3, "naics_s06": 4, "naics_s07": 90, "naics_s08": 13, "naics_s09": 6, "naics_s10": 9, "naics_s11": 0, "naics_s12": 14, "naics_s13": 0, "naics_s14": 24, "naics_s15": 0, "naics_s16": 39, "naics_s17": 5, "naics_s18": 31, "naics_s19": 32, "naics_s20": 0, "race1": 277, "race2": 38, "race3": 5, "race4": 11, "race5": 0, "race6": 4, "ethnicity1": 220, "ethnicity2": 115, "edu1": 69, "edu2": 51, "edu3": 71, "edu4": 38, "Shape_Length": 96136.306271281064, "Shape_Area": 419790218.37005687, "total_2021": 402, "total_2022": 335 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.215255982071781, 30.155250283228352 ], [ -95.215382981561831, 30.155053283223662 ], [ -95.214926980980223, 30.155052283432035 ], [ -95.21463998182972, 30.155029283143431 ], [ -95.214263981108957, 30.155000282921069 ], [ -95.214114981638446, 30.15497628273835 ], [ -95.213807981081686, 30.154927282997644 ], [ -95.213494980698457, 30.15486928280048 ], [ -95.212883980893565, 30.154729283082869 ], [ -95.211752980758533, 30.154470282875725 ], [ -95.213260980422916, 30.150149281840932 ], [ -95.213066980531281, 30.150103282028187 ], [ -95.212920981143185, 30.150084282004709 ], [ -95.212878980906268, 30.150078282515814 ], [ -95.212672980501594, 30.150067282299283 ], [ -95.212043980656247, 30.150079282538513 ], [ -95.21100497982485, 30.150098282265677 ], [ -95.210693979992783, 30.150103282163894 ], [ -95.208278979268542, 30.150147282516926 ], [ -95.204607978942931, 30.15021228214626 ], [ -95.202903978083029, 30.150243282633479 ], [ -95.200657978108524, 30.150289282822527 ], [ -95.200125977940317, 30.150298282463194 ], [ -95.199412977594264, 30.15031028252946 ], [ -95.196710976130007, 30.150357282576902 ], [ -95.196110976728875, 30.150274282589194 ], [ -95.195806976784695, 30.15021328264303 ], [ -95.195496976247114, 30.150135282609693 ], [ -95.195119976155382, 30.150020282409852 ], [ -95.192174975265175, 30.14895328251907 ], [ -95.191127975600878, 30.148573282732571 ], [ -95.19063997499056, 30.148446282147574 ], [ -95.190346974911776, 30.148399282407055 ], [ -95.190052975152966, 30.148369282900067 ], [ -95.189867974295666, 30.148353282392037 ], [ -95.18968197426284, 30.148347282923744 ], [ -95.189304974651279, 30.148353282776636 ], [ -95.189019974996341, 30.148378282657085 ], [ -95.188155973988032, 30.148428282665154 ], [ -95.187989974439347, 30.148429283084059 ], [ -95.187830974520182, 30.148424282659015 ], [ -95.187656974402117, 30.148406282926345 ], [ -95.187330973948107, 30.148363283022839 ], [ -95.187139974554853, 30.148333282829245 ], [ -95.185056973193284, 30.14795328267903 ], [ -95.184828973360993, 30.147912282353051 ], [ -95.18471097375955, 30.147890282670993 ], [ -95.184558973244435, 30.147861282863378 ], [ -95.183862973171316, 30.147730282804396 ], [ -95.180881972840851, 30.147168282460306 ], [ -95.180344972282086, 30.147076282356245 ], [ -95.180079972122272, 30.147038282194153 ], [ -95.179720971986328, 30.147003282963073 ], [ -95.1795359718122, 30.146981283039867 ], [ -95.179199972073718, 30.146963282535538 ], [ -95.179048972074625, 30.146959282332553 ], [ -95.178833971588759, 30.14694728298495 ], [ -95.178509971381914, 30.146938282914039 ], [ -95.177980971255863, 30.146934282436412 ], [ -95.177403971614879, 30.146926283014086 ], [ -95.175141971224122, 30.146898282575759 ], [ -95.173609970084243, 30.146868282791825 ], [ -95.173208970575246, 30.146870282828544 ], [ -95.172719970718489, 30.146903283205742 ], [ -95.17247597047367, 30.1469242833046 ], [ -95.172214969893957, 30.146957283021987 ], [ -95.171913969692369, 30.14700428319302 ], [ -95.171455970448477, 30.147100283327688 ], [ -95.171406969983224, 30.147110283086516 ], [ -95.170295969857307, 30.147387282636664 ], [ -95.169755969959468, 30.147515282704262 ], [ -95.168857969623829, 30.147750282844161 ], [ -95.168365969640874, 30.147885282989691 ], [ -95.167746968800145, 30.14804128350363 ], [ -95.167516968697342, 30.148086283689992 ], [ -95.167073968589079, 30.148165283545474 ], [ -95.16653696834662, 30.148218283719302 ], [ -95.166220968692357, 30.148259282963181 ], [ -95.164990968411047, 30.148336283688511 ], [ -95.16305796788933, 30.148507283615501 ], [ -95.16161396769327, 30.148636284044404 ], [ -95.159845967549529, 30.148797283425985 ], [ -95.159585967359376, 30.148818283771998 ], [ -95.159176967385775, 30.148833283826431 ], [ -95.158956967165125, 30.148822283402172 ], [ -95.158494967211965, 30.148767283310789 ], [ -95.158243966738098, 30.148732283570038 ], [ -95.158101966517151, 30.148708283369444 ], [ -95.157985966764258, 30.148689284081623 ], [ -95.157751966018367, 30.148644283440195 ], [ -95.157637966403342, 30.148616283390524 ], [ -95.157464966194951, 30.14857328366487 ], [ -95.156825965966533, 30.148398283709295 ], [ -95.156171965659098, 30.148228283871621 ], [ -95.155874966185394, 30.14817228403647 ], [ -95.155538965785126, 30.148121284038083 ], [ -95.155201965460435, 30.148084283728213 ], [ -95.154921966217586, 30.148064284082142 ], [ -95.154895965755287, 30.148062283561963 ], [ -95.154774965369555, 30.148057284079481 ], [ -95.146403963209266, 30.147714284282461 ], [ -95.14593596371742, 30.147706283996023 ], [ -95.145586963631573, 30.147707284406803 ], [ -95.144388963002854, 30.147745284103522 ], [ -95.141853962144566, 30.147826283789374 ], [ -95.141664962195406, 30.147832284459557 ], [ -95.141125961715915, 30.147838283750218 ], [ -95.140846962563032, 30.14783628404037 ], [ -95.140557961928693, 30.147822284609017 ], [ -95.140512962416622, 30.147818283909345 ], [ -95.1403209622286, 30.147801284004018 ], [ -95.140069962271014, 30.147767284502812 ], [ -95.138987961831077, 30.147565283874503 ], [ -95.138711961230953, 30.147513283852803 ], [ -95.137450961503646, 30.147292283771435 ], [ -95.136126960903439, 30.147061284465174 ], [ -95.135998960615495, 30.14703928392186 ], [ -95.135328961066094, 30.146926283749252 ], [ -95.134465960308958, 30.146797283784579 ], [ -95.133575960581766, 30.146669283928489 ], [ -95.132972960489823, 30.146570284426122 ], [ -95.132117959694483, 30.146449284176313 ], [ -95.13167195992412, 30.14638628411987 ], [ -95.131492959438845, 30.146359284299368 ], [ -95.131305960129851, 30.146326283823594 ], [ -95.131109959077463, 30.14628528432344 ], [ -95.130895959091376, 30.146229284493824 ], [ -95.130606958971228, 30.146138283757121 ], [ -95.130391959786849, 30.146074284339889 ], [ -95.13018795906639, 30.146013284431927 ], [ -95.129059958613155, 30.145676284375952 ], [ -95.128286958995801, 30.145439284479778 ], [ -95.128059959188221, 30.14537528422812 ], [ -95.127863958191639, 30.14532828386838 ], [ -95.127653958671345, 30.145287284240673 ], [ -95.127462958595544, 30.145250283733876 ], [ -95.12705095864662, 30.145200284103538 ], [ -95.126734958311843, 30.14518028370869 ], [ -95.126284958630933, 30.145164284566263 ], [ -95.126074958335153, 30.145166284512786 ], [ -95.125861957988789, 30.14517628420073 ], [ -95.124971958382403, 30.14525028381972 ], [ -95.124764958288466, 30.145267283772434 ], [ -95.124091958106561, 30.145323284004188 ], [ -95.123608957254604, 30.145360283911355 ], [ -95.1221739568864, 30.146554284896556 ], [ -95.119085956286909, 30.149123285027525 ], [ -95.118438956645193, 30.149644285688993 ], [ -95.117863956746262, 30.150107285320409 ], [ -95.11724495584869, 30.150606285791245 ], [ -95.116313956174281, 30.151358285762115 ], [ -95.115912956287971, 30.151699285422374 ], [ -95.115511955908332, 30.152041285800674 ], [ -95.11545295600861, 30.152092286357878 ], [ -95.106097953433903, 30.15964428761913 ], [ -95.096714951567535, 30.167219289787049 ], [ -95.09687195223789, 30.167713290124226 ], [ -95.097701951740433, 30.170311289988735 ], [ -95.097730951756944, 30.170402290677977 ], [ -95.097819952340032, 30.170596290462264 ], [ -95.097829952430843, 30.170621290249983 ], [ -95.098028952330907, 30.171152290130482 ], [ -95.098493952688997, 30.172352291025256 ], [ -95.098947952971557, 30.1735402907713 ], [ -95.100196952696393, 30.176808291489845 ], [ -95.100553953039665, 30.17680629106124 ], [ -95.100986953745405, 30.178022291681561 ], [ -95.103976954898911, 30.186416293295974 ], [ -95.103961954953121, 30.186424292912726 ], [ -95.104011954416137, 30.18655429318893 ], [ -95.1042889545039, 30.187265293635001 ], [ -95.104615954244551, 30.188106294022877 ], [ -95.105119955326245, 30.189401293492093 ], [ -95.105396955408239, 30.190114294141097 ], [ -95.105437955313519, 30.190220293917683 ], [ -95.105561955220409, 30.190540294249452 ], [ -95.105603955089876, 30.190647294079191 ], [ -95.106109955185545, 30.191951293945969 ], [ -95.107627955994033, 30.195864294703931 ], [ -95.107960956023518, 30.196721295544187 ], [ -95.108111956276645, 30.19708229533429 ], [ -95.108145956508196, 30.197164295405909 ], [ -95.108212956147, 30.197325295229334 ], [ -95.108413956546514, 30.197810295491927 ], [ -95.108480956120545, 30.197972295186371 ], [ -95.109462956670512, 30.197516295274202 ], [ -95.10995495689663, 30.197393295515088 ], [ -95.11074095646137, 30.19739829550641 ], [ -95.112033956773061, 30.197291295422957 ], [ -95.112969957490748, 30.197224295067723 ], [ -95.113763957116177, 30.19697729515088 ], [ -95.118398959017384, 30.195539294470745 ], [ -95.131771962073657, 30.191567292960514 ], [ -95.132131962042081, 30.191460293404614 ], [ -95.135210962565537, 30.190546293037684 ], [ -95.136026962369385, 30.190303292634216 ], [ -95.143041964395891, 30.188219291872109 ], [ -95.144025964548533, 30.187964292219029 ], [ -95.14403696484149, 30.187948292221222 ], [ -95.144130964779436, 30.18782629206714 ], [ -95.144201965347136, 30.187716292579658 ], [ -95.144262964853098, 30.187602292355571 ], [ -95.144382964921689, 30.187325291674298 ], [ -95.144428965264296, 30.187191291699712 ], [ -95.144466965003488, 30.187069291662581 ], [ -95.144599965389489, 30.186643291977539 ], [ -95.145220965278426, 30.186774291708801 ], [ -95.145411965050826, 30.186801292157071 ], [ -95.145597965327667, 30.186815291761103 ], [ -95.145763965307552, 30.186803292365529 ], [ -95.145941964957345, 30.186761292304904 ], [ -95.146217965480062, 30.186684291805964 ], [ -95.146871965456143, 30.186480291807399 ], [ -95.147900966031614, 30.18618229175323 ], [ -95.148586965513047, 30.185987291255952 ], [ -95.149857966581024, 30.185605291839874 ], [ -95.151092966599236, 30.185261291490928 ], [ -95.151882966962063, 30.185033291735248 ], [ -95.152646966658239, 30.184813291041124 ], [ -95.153811967437349, 30.184453291014385 ], [ -95.154363966996002, 30.184304291430294 ], [ -95.154569967122555, 30.184241290964863 ], [ -95.155857967855781, 30.183851290608875 ], [ -95.156116967532057, 30.183784290621357 ], [ -95.156712967689856, 30.183625291281114 ], [ -95.157994967773945, 30.183244290498831 ], [ -95.158610968687114, 30.183014290536924 ], [ -95.159117968632984, 30.18280529110125 ], [ -95.160215968580076, 30.182209290789519 ], [ -95.160633968493016, 30.181927290261832 ], [ -95.161060969002676, 30.181606289945186 ], [ -95.161501969209141, 30.181242290385473 ], [ -95.161695969140453, 30.18104929028453 ], [ -95.161997969027155, 30.180750289984701 ], [ -95.162503968820218, 30.180208289865043 ], [ -95.162859969758998, 30.179789289839562 ], [ -95.16291896898467, 30.179709289919504 ], [ -95.163248969821453, 30.17925628985358 ], [ -95.163546969031501, 30.178832289228172 ], [ -95.16369196891381, 30.1785672898021 ], [ -95.164153969849565, 30.177722289725491 ], [ -95.164770969771936, 30.176609289646692 ], [ -95.165150969850259, 30.175877288604237 ], [ -95.165353969878481, 30.175486289099787 ], [ -95.165921969355139, 30.174460288315572 ], [ -95.166257970145622, 30.173804288163105 ], [ -95.166700970281468, 30.173164288509117 ], [ -95.167091970541719, 30.172743288613091 ], [ -95.16722197037322, 30.172634288247114 ], [ -95.167446970044892, 30.172440288313858 ], [ -95.168032970384999, 30.172082287866235 ], [ -95.16858697056054, 30.171840287795781 ], [ -95.169127970358034, 30.171671287662072 ], [ -95.169443970507089, 30.171611287693054 ], [ -95.16991197030022, 30.171550287659489 ], [ -95.170480970763947, 30.171536288192137 ], [ -95.170929971088199, 30.171565287897007 ], [ -95.171545971202988, 30.171652287875425 ], [ -95.17212097112855, 30.171742287641983 ], [ -95.172469970873294, 30.171807288179302 ], [ -95.172712970995462, 30.171850287697684 ], [ -95.173750971384081, 30.171995288018049 ], [ -95.173842971674929, 30.172014287945736 ], [ -95.174506971980236, 30.172157288060241 ], [ -95.175037972037273, 30.172296288358439 ], [ -95.175886972561585, 30.172628288057567 ], [ -95.176226971870193, 30.17272328839201 ], [ -95.176482972633494, 30.172755287780177 ], [ -95.177506972871356, 30.172723287987377 ], [ -95.177805972540156, 30.172722287556596 ], [ -95.178147972705105, 30.172720287492499 ], [ -95.178941973505346, 30.17274228824057 ], [ -95.1797239728336, 30.172800287944384 ], [ -95.179836972863455, 30.172806287914298 ], [ -95.180441973199336, 30.172837288238266 ], [ -95.18056997301133, 30.172836287819944 ], [ -95.181664974076526, 30.172825287467877 ], [ -95.182257974041832, 30.172825288198233 ], [ -95.184114974000039, 30.172826288152194 ], [ -95.186818975388988, 30.172806287554597 ], [ -95.187490974785632, 30.172803287982084 ], [ -95.190653976497657, 30.172794287195039 ], [ -95.193084977110601, 30.172822287876656 ], [ -95.193322976850141, 30.172825287374494 ], [ -95.196264977630918, 30.172886287629233 ], [ -95.2002059781518, 30.172868287199059 ], [ -95.200383978698511, 30.17286828732562 ], [ -95.202844978925384, 30.172838287482623 ], [ -95.202939978743188, 30.172871286909611 ], [ -95.203035979099951, 30.172912286984051 ], [ -95.203172979055807, 30.172961287266695 ], [ -95.203314979310804, 30.173030287043993 ], [ -95.203495979411727, 30.172765287405923 ], [ -95.205789979785479, 30.169416285909893 ], [ -95.206435979620395, 30.168438285803408 ], [ -95.206766980110288, 30.167952285563544 ], [ -95.207083979920057, 30.167459285640962 ], [ -95.207617980642425, 30.166687285511781 ], [ -95.208462980187392, 30.165383285505939 ], [ -95.209166980390847, 30.164308285227417 ], [ -95.210313980422427, 30.162526284741201 ], [ -95.210465980612526, 30.162275284576918 ], [ -95.210960981281403, 30.161512284160729 ], [ -95.211069980480275, 30.161340284664345 ], [ -95.211275980692875, 30.161518284058797 ], [ -95.212265981008585, 30.159976284436301 ], [ -95.21399898096486, 30.157243283532019 ], [ -95.215255982071781, 30.155250283228352 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1485, "Tract": "48339692601", "Area_SqMi": 5.3581843785389962, "total_2009": 132, "total_2010": 211, "total_2011": 162, "total_2012": 124, "total_2013": 120, "total_2014": 126, "total_2015": 152, "total_2016": 133, "total_2017": 172, "total_2018": 172, "total_2019": 167, "total_2020": 316, "age1": 32, "age2": 64, "age3": 44, "earn1": 24, "earn2": 31, "earn3": 85, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 80, "naics_s05": 9, "naics_s06": 3, "naics_s07": 15, "naics_s08": 13, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 2, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 5, "naics_s18": 3, "naics_s19": 10, "naics_s20": 0, "race1": 126, "race2": 8, "race3": 1, "race4": 5, "race5": 0, "race6": 0, "ethnicity1": 102, "ethnicity2": 38, "edu1": 27, "edu2": 32, "edu3": 32, "edu4": 17, "Shape_Length": 67859.160663153874, "Shape_Area": 149377009.84945077, "total_2021": 182, "total_2022": 140 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.304602007708027, 30.216430292652788 ], [ -95.30460800759775, 30.216270292077315 ], [ -95.304601007663322, 30.21607529251343 ], [ -95.304583007567302, 30.215887292495029 ], [ -95.304556007802589, 30.215708291904576 ], [ -95.30433600740065, 30.214750291825943 ], [ -95.304167006893337, 30.21415629153438 ], [ -95.304082007444478, 30.213805291706244 ], [ -95.304035007279239, 30.213498291430593 ], [ -95.303985006968645, 30.21312829180194 ], [ -95.303954007122627, 30.212803291830756 ], [ -95.303965006604315, 30.211436291371555 ], [ -95.304012007124868, 30.211211291639444 ], [ -95.304114006964454, 30.210725290956731 ], [ -95.304424007188302, 30.209923291188456 ], [ -95.3044070074384, 30.209892291528259 ], [ -95.304204006555267, 30.209296291390007 ], [ -95.303835007231243, 30.208723290854003 ], [ -95.303413006661089, 30.208402290576341 ], [ -95.302517006960642, 30.208150290551472 ], [ -95.301989005929769, 30.207852291160478 ], [ -95.301541006246254, 30.207829290983021 ], [ -95.301066006109991, 30.207531290982871 ], [ -95.300618006047571, 30.207370290770339 ], [ -95.300434005915065, 30.207095290492767 ], [ -95.30030200600811, 30.206729290703546 ], [ -95.300170006085779, 30.206614290541754 ], [ -95.29930000515661, 30.206293290327547 ], [ -95.29874600554308, 30.206293290929136 ], [ -95.298483004975267, 30.206063290352674 ], [ -95.298034005381666, 30.205971290117986 ], [ -95.297850005492577, 30.205834290219432 ], [ -95.297692005633365, 30.205582290075636 ], [ -95.297454004627866, 30.205444290704431 ], [ -95.297217005396661, 30.205192290144275 ], [ -95.296743004638671, 30.205100289917819 ], [ -95.295846004778525, 30.204665290479884 ], [ -95.295451003953119, 30.204138290432844 ], [ -95.295451004486623, 30.203634290444885 ], [ -95.295082004705407, 30.20342728983232 ], [ -95.294871004396128, 30.203175289972716 ], [ -95.294793004404923, 30.202442289514757 ], [ -95.294608004210744, 30.202304289622415 ], [ -95.294529003986881, 30.201640289657465 ], [ -95.29437100396278, 30.201525289448291 ], [ -95.294213004078216, 30.201228289713068 ], [ -95.294108004178838, 30.200586289451028 ], [ -95.293792003647098, 30.200403289531561 ], [ -95.293581004107665, 30.200082289200399 ], [ -95.293423004068131, 30.199624289201655 ], [ -95.292395003860861, 30.19941728970732 ], [ -95.291999003702983, 30.199737289650837 ], [ -95.290997002779093, 30.199737289200975 ], [ -95.290232003198895, 30.199530289169189 ], [ -95.290021002639847, 30.199255289232934 ], [ -95.289758003205989, 30.199141289769877 ], [ -95.289309002272461, 30.19911728954764 ], [ -95.288967002256101, 30.198957289018463 ], [ -95.288413002805413, 30.198979289849582 ], [ -95.287807002695999, 30.19838328888623 ], [ -95.287174002141157, 30.198269289156379 ], [ -95.286304001355305, 30.197420288764352 ], [ -95.285566001778562, 30.197283289606755 ], [ -95.285197001709221, 30.196939289175834 ], [ -95.28440600080927, 30.196663289083773 ], [ -95.28390500161251, 30.196182288838539 ], [ -95.28369500054599, 30.195724289001259 ], [ -95.283352000838576, 30.19540328848937 ], [ -95.28322000057814, 30.195151289140011 ], [ -95.282667000990202, 30.194853288449995 ], [ -95.282509000428959, 30.194669288603002 ], [ -95.28237700053748, 30.194165288632149 ], [ -95.281876000356974, 30.193890288998738 ], [ -95.28179800028127, 30.193409288727548 ], [ -95.281376000242417, 30.192973288072555 ], [ -95.281245000572824, 30.192332288515821 ], [ -95.280902000475379, 30.192103287911131 ], [ -95.28056000033925, 30.191621287766903 ], [ -95.280533000171985, 30.191346288147226 ], [ -95.280495999692732, 30.191285288180833 ], [ -95.280323000281115, 30.191003288436008 ], [ -95.280006999836033, 30.190727288205011 ], [ -95.279373999227872, 30.190429287752476 ], [ -95.279057999840063, 30.190085287618793 ], [ -95.277844999735791, 30.189649288187944 ], [ -95.27726499908222, 30.189626287653017 ], [ -95.276605999305104, 30.189305287510489 ], [ -95.275972999191055, 30.189373288082358 ], [ -95.275761998379139, 30.189213288231251 ], [ -95.27531399906826, 30.189121288087463 ], [ -95.275155998717096, 30.188960287411462 ], [ -95.275076998300349, 30.188502287716219 ], [ -95.274971998368187, 30.188388287651023 ], [ -95.274523998197566, 30.188250287749582 ], [ -95.274128997874783, 30.187791287539081 ], [ -95.273838998234496, 30.187722287955804 ], [ -95.273574997633929, 30.187585287916459 ], [ -95.273469997782229, 30.187058287555761 ], [ -95.27323299784598, 30.186852287548053 ], [ -95.273153998308445, 30.186485287262837 ], [ -95.272705997938658, 30.186370287074705 ], [ -95.272531998027219, 30.186428287486326 ], [ -95.271966997630571, 30.18662228732456 ], [ -95.271571997359032, 30.186438287115283 ], [ -95.271370997185997, 30.186255287164233 ], [ -95.271018997455741, 30.185934286955632 ], [ -95.270780997400053, 30.185865287237192 ], [ -95.269910997138098, 30.185864287373395 ], [ -95.269541997264085, 30.185795287142351 ], [ -95.269119996819683, 30.185818287244082 ], [ -95.268912996814251, 30.185728287260506 ], [ -95.268276996620969, 30.185451287005698 ], [ -95.267722996043062, 30.185634287715054 ], [ -95.267247996227482, 30.185610286985831 ], [ -95.266377996409958, 30.185747287143066 ], [ -95.265744995974202, 30.185518287460233 ], [ -95.265452996290477, 30.185623287774067 ], [ -95.265428995845269, 30.185632287240587 ], [ -95.264689995854468, 30.185471287423123 ], [ -95.264014995820304, 30.185049287241583 ], [ -95.263846994981833, 30.184944287366996 ], [ -95.263319994850832, 30.184989287286985 ], [ -95.2632409954455, 30.184783287541588 ], [ -95.263003995345869, 30.184576287523061 ], [ -95.262396994825451, 30.184576287164479 ], [ -95.261790995204819, 30.184392287031237 ], [ -95.261394994666858, 30.184117287150418 ], [ -95.260841994719897, 30.184208287766452 ], [ -95.260701994171285, 30.184056287457913 ], [ -95.260540994451446, 30.183882287493873 ], [ -95.260419994288981, 30.183750287582736 ], [ -95.26012999400767, 30.183635287612027 ], [ -95.259312994616693, 30.183726287159185 ], [ -95.258917993744248, 30.183474287563538 ], [ -95.258785994258403, 30.18310728721492 ], [ -95.258574994128836, 30.182901286936723 ], [ -95.25746799319397, 30.182785287318339 ], [ -95.256491993950476, 30.182876287291663 ], [ -95.256149993649956, 30.182784286871208 ], [ -95.255754993216243, 30.182326287524372 ], [ -95.255675993279738, 30.181753287027881 ], [ -95.255570993293389, 30.181592286895945 ], [ -95.25557099354387, 30.18129528679987 ], [ -95.25580899279143, 30.180974286806112 ], [ -95.255834993062592, 30.180768287162753 ], [ -95.25609899369141, 30.180562287248851 ], [ -95.2564949935539, 30.179990287125023 ], [ -95.256495992897143, 30.179577286556832 ], [ -95.256179993553388, 30.179256286798481 ], [ -95.256100993403138, 30.178752286836364 ], [ -95.255916993622378, 30.178660286568949 ], [ -95.255362992930984, 30.17863728672479 ], [ -95.25504699298142, 30.178499286117049 ], [ -95.254809993035352, 30.178224286412007 ], [ -95.25473099277535, 30.177972286665266 ], [ -95.254440992790677, 30.177628286556153 ], [ -95.254098993080817, 30.177490286397326 ], [ -95.252990992285078, 30.177558286517456 ], [ -95.252753991998162, 30.17742128599097 ], [ -95.252278991882221, 30.177352286139683 ], [ -95.251488991649637, 30.176732286373102 ], [ -95.250750991805049, 30.176686285885015 ], [ -95.250229991913756, 30.176326285838694 ], [ -95.249965991961574, 30.176120286511917 ], [ -95.249754991879882, 30.176028285827154 ], [ -95.249069991277779, 30.176396286454882 ], [ -95.248700990724217, 30.176442286650239 ], [ -95.247750991311662, 30.176168286307309 ], [ -95.247592990538351, 30.175985285767464 ], [ -95.247381990823698, 30.175985286283318 ], [ -95.247249991303121, 30.176077286137751 ], [ -95.247276990702801, 30.176374285990438 ], [ -95.247408991180819, 30.176535286477211 ], [ -95.247382990387294, 30.176924286110211 ], [ -95.247092990904122, 30.177039286783632 ], [ -95.246803991186113, 30.177314286567654 ], [ -95.246619990826872, 30.177658286960426 ], [ -95.246223990238249, 30.177636286154399 ], [ -95.245617989950347, 30.17779728640625 ], [ -95.245116990112038, 30.177637286310382 ], [ -95.244536990026262, 30.177637286183767 ], [ -95.2438129902729, 30.177922286811988 ], [ -95.244394989887297, 30.178779287112043 ], [ -95.244581990720278, 30.179054286885794 ], [ -95.244825989951664, 30.179413286694345 ], [ -95.244945989916857, 30.179589287303649 ], [ -95.245238990536208, 30.180020287516832 ], [ -95.245529990273127, 30.180450287037075 ], [ -95.245873990449994, 30.180956287436981 ], [ -95.246133990889476, 30.181338287652792 ], [ -95.24639799088186, 30.181727287192487 ], [ -95.247202990805704, 30.182912287862941 ], [ -95.247907991789191, 30.183949288197041 ], [ -95.248595991417517, 30.184963288392037 ], [ -95.249059991294146, 30.185645287901682 ], [ -95.249168991947229, 30.1858272880242 ], [ -95.249769992179367, 30.186831287892058 ], [ -95.250149992441408, 30.187733288887202 ], [ -95.250411992126914, 30.18847728890043 ], [ -95.250966992610373, 30.190047289339233 ], [ -95.251931992366394, 30.192842289818905 ], [ -95.252365993154072, 30.194037289982219 ], [ -95.252736993301497, 30.195056290311371 ], [ -95.253395992840538, 30.196871290182788 ], [ -95.253459993834227, 30.197069290561053 ], [ -95.253522993335679, 30.197293290062746 ], [ -95.253632993647244, 30.197819290244666 ], [ -95.253690993489684, 30.198195290880118 ], [ -95.253757993058969, 30.198714290349169 ], [ -95.253816993547389, 30.199056290415033 ], [ -95.253902993728175, 30.199425290937366 ], [ -95.254067993768686, 30.200021290704726 ], [ -95.254232994116904, 30.200598291268228 ], [ -95.254310993326555, 30.200812291006308 ], [ -95.254450993555523, 30.201096290826438 ], [ -95.254584993722389, 30.201350291301441 ], [ -95.25474799361875, 30.201591291250729 ], [ -95.254939994469694, 30.201825290792542 ], [ -95.255124994322472, 30.202011291373335 ], [ -95.255548993968745, 30.20239829166761 ], [ -95.255807993951549, 30.202573291686779 ], [ -95.256003993793513, 30.202696291707884 ], [ -95.256256994769814, 30.202833291535121 ], [ -95.256565994488156, 30.202984290936083 ], [ -95.257512994372448, 30.203302291567866 ], [ -95.26305999573718, 30.204575291635734 ], [ -95.26489799671991, 30.204997291381638 ], [ -95.265135996950647, 30.205052291317898 ], [ -95.266481997602654, 30.20536129122695 ], [ -95.266647997329969, 30.20540529104424 ], [ -95.267158997311469, 30.205522291073073 ], [ -95.269321997973165, 30.206015291422677 ], [ -95.269464997949157, 30.206056291854452 ], [ -95.269727997802093, 30.206131291862388 ], [ -95.269788997971133, 30.206152291530486 ], [ -95.269934997740592, 30.206203291805188 ], [ -95.270320997886898, 30.206348291987371 ], [ -95.270853998159168, 30.206574291665838 ], [ -95.270945997845516, 30.206613291755442 ], [ -95.271329997941095, 30.206816291840799 ], [ -95.271685998830165, 30.20701129123001 ], [ -95.271781998817517, 30.207074292008414 ], [ -95.271985998068217, 30.20720629188569 ], [ -95.272483998251815, 30.207566291651403 ], [ -95.272797998879753, 30.207798291799644 ], [ -95.273432999401876, 30.208377292182142 ], [ -95.2786270004611, 30.21354329236506 ], [ -95.278863001021449, 30.213778293037702 ], [ -95.280110000714302, 30.215018292719588 ], [ -95.280684001450851, 30.215606293129451 ], [ -95.281504000982466, 30.216446292854741 ], [ -95.282288001668718, 30.217199293030394 ], [ -95.282520001527075, 30.217433293290096 ], [ -95.282716002005131, 30.217629292972951 ], [ -95.283101002349355, 30.218005293658464 ], [ -95.283505002236978, 30.218465293771452 ], [ -95.283832002046353, 30.218818293345965 ], [ -95.284382002591244, 30.219474294056145 ], [ -95.284660002413375, 30.219870293357708 ], [ -95.284939002144455, 30.220251294046736 ], [ -95.285216002107617, 30.220677293704163 ], [ -95.285504003021885, 30.221142294428397 ], [ -95.285696003074648, 30.221470294431096 ], [ -95.285941002848062, 30.221891293719064 ], [ -95.287137003756527, 30.223811294266799 ], [ -95.287491003331681, 30.224390294487357 ], [ -95.287952003937207, 30.225146294829365 ], [ -95.289593003959808, 30.227785295618521 ], [ -95.291409005171275, 30.230702295557972 ], [ -95.29178000477259, 30.231323296152635 ], [ -95.291836004976432, 30.231415296017779 ], [ -95.29198800519633, 30.231626295533776 ], [ -95.292217004473329, 30.23188529570157 ], [ -95.292452005105829, 30.232123296237067 ], [ -95.292591004505979, 30.23225629638814 ], [ -95.292714005155645, 30.232366296095432 ], [ -95.292913005098143, 30.232534295735775 ], [ -95.294347005909913, 30.233678295933593 ], [ -95.29530800577443, 30.234445296507594 ], [ -95.295759005907001, 30.234805296773313 ], [ -95.29778300700255, 30.236458296595085 ], [ -95.298081006162022, 30.236701296393647 ], [ -95.29853100643551, 30.237057296881535 ], [ -95.299085006528131, 30.237502296422857 ], [ -95.299307007397104, 30.237686297016435 ], [ -95.299505007538514, 30.237840297218998 ], [ -95.299822007390816, 30.238053296816734 ], [ -95.29999700752586, 30.238157296649767 ], [ -95.300316007675775, 30.238330296564818 ], [ -95.300488007377922, 30.238409297119766 ], [ -95.300676007466066, 30.238489296612162 ], [ -95.300694007077794, 30.236716296603703 ], [ -95.300720007343415, 30.234160296101781 ], [ -95.30075200745722, 30.233558296461243 ], [ -95.300772007272272, 30.233355296039527 ], [ -95.300794007263079, 30.233213295859361 ], [ -95.300848007142122, 30.232961296031565 ], [ -95.300882006863787, 30.232850296266879 ], [ -95.300935007573827, 30.232738295950018 ], [ -95.301024006725527, 30.232598296165296 ], [ -95.301222006832319, 30.232306295283834 ], [ -95.302368007328383, 30.230882295803788 ], [ -95.30261800797561, 30.230559295676684 ], [ -95.302758007647583, 30.230362295097166 ], [ -95.302873007906584, 30.230170295647518 ], [ -95.302973007934369, 30.229947295545866 ], [ -95.303036007209172, 30.229789295147214 ], [ -95.303102007904812, 30.229604294814894 ], [ -95.303168007583821, 30.229383295069574 ], [ -95.30322700748242, 30.229148295222558 ], [ -95.30326000772429, 30.22891829538553 ], [ -95.303273007173928, 30.228792294927583 ], [ -95.303239007876741, 30.228455294891489 ], [ -95.303173007423126, 30.227898294420566 ], [ -95.303124008050929, 30.227618294318408 ], [ -95.30309100779084, 30.227381294283635 ], [ -95.303055007280676, 30.227003294650292 ], [ -95.303055007091984, 30.22687129449875 ], [ -95.303083007938554, 30.226583294828998 ], [ -95.303104007464768, 30.226443294514091 ], [ -95.303166007638424, 30.226115294834656 ], [ -95.303230007324203, 30.225866294700317 ], [ -95.303313007835769, 30.225604294473015 ], [ -95.304038007323626, 30.22323129340031 ], [ -95.304067007844992, 30.223146293641722 ], [ -95.304224007149159, 30.22244729384979 ], [ -95.304255008060395, 30.222117293343857 ], [ -95.304262007363818, 30.221925293192005 ], [ -95.304258007876641, 30.221498293820193 ], [ -95.304248007296565, 30.221128293559723 ], [ -95.304236007629129, 30.220664293350808 ], [ -95.304160007503938, 30.21970229340274 ], [ -95.304161007191951, 30.219666293385838 ], [ -95.304167007119716, 30.219499292949447 ], [ -95.304189007684599, 30.219277292544728 ], [ -95.304197007183092, 30.219221293134769 ], [ -95.304247007885195, 30.218881292941425 ], [ -95.304404007496075, 30.21780529303475 ], [ -95.304548007848794, 30.216976292410305 ], [ -95.304602007708027, 30.216430292652788 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1486, "Tract": "48167720302", "Area_SqMi": 4.3963562498343558, "total_2009": 346, "total_2010": 459, "total_2011": 442, "total_2012": 507, "total_2013": 531, "total_2014": 494, "total_2015": 479, "total_2016": 539, "total_2017": 508, "total_2018": 538, "total_2019": 585, "total_2020": 491, "age1": 142, "age2": 304, "age3": 140, "earn1": 163, "earn2": 203, "earn3": 220, "naics_s01": 0, "naics_s02": 10, "naics_s03": 0, "naics_s04": 63, "naics_s05": 1, "naics_s06": 17, "naics_s07": 27, "naics_s08": 1, "naics_s09": 8, "naics_s10": 80, "naics_s11": 35, "naics_s12": 12, "naics_s13": 0, "naics_s14": 52, "naics_s15": 7, "naics_s16": 90, "naics_s17": 15, "naics_s18": 121, "naics_s19": 47, "naics_s20": 0, "race1": 461, "race2": 81, "race3": 7, "race4": 26, "race5": 0, "race6": 11, "ethnicity1": 445, "ethnicity2": 141, "edu1": 86, "edu2": 111, "edu3": 127, "edu4": 120, "Shape_Length": 56755.400778409719, "Shape_Area": 122562887.80645989, "total_2021": 511, "total_2022": 586 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.232988955775255, 29.466168141299029 ], [ -95.233087955485246, 29.46557114097503 ], [ -95.231682955376087, 29.463431140539853 ], [ -95.231632955082532, 29.463356140512943 ], [ -95.231593954685238, 29.463298141036212 ], [ -95.230519954261794, 29.461708140205303 ], [ -95.230483954344209, 29.461648140532308 ], [ -95.229824954304561, 29.460672140228336 ], [ -95.229438954121747, 29.461238140296363 ], [ -95.228341954441547, 29.462823140343016 ], [ -95.227666953462645, 29.46379814067447 ], [ -95.22688695412333, 29.46492514086874 ], [ -95.226140954064604, 29.466003141815012 ], [ -95.225864953003907, 29.46640214141366 ], [ -95.225736953542281, 29.466586141427438 ], [ -95.225248953362339, 29.46729814130498 ], [ -95.225125953197093, 29.467470141644434 ], [ -95.224930953284698, 29.467739141556002 ], [ -95.223244952566006, 29.470189142207762 ], [ -95.222805953196143, 29.470823142374162 ], [ -95.222388953203136, 29.471468142280003 ], [ -95.222172952301023, 29.471802143039159 ], [ -95.221456953081372, 29.47317214326609 ], [ -95.220906952232994, 29.474417143201354 ], [ -95.220813952327859, 29.474780142926416 ], [ -95.220647952719048, 29.475330143533292 ], [ -95.220190952954539, 29.477240144327936 ], [ -95.219872952264268, 29.478905144266392 ], [ -95.219748952798426, 29.47955314422402 ], [ -95.219201952886721, 29.481521144938462 ], [ -95.21912995279753, 29.481636144558337 ], [ -95.218797952861081, 29.482300145273083 ], [ -95.218573952579135, 29.482697145459966 ], [ -95.217808952325157, 29.48368114491187 ], [ -95.216884951900028, 29.484581145863935 ], [ -95.216286952045252, 29.485214145683816 ], [ -95.216046952038468, 29.485492146066193 ], [ -95.21573795142325, 29.485829145608204 ], [ -95.214286951810564, 29.487407145816185 ], [ -95.214005951840917, 29.487713146726303 ], [ -95.213744951434904, 29.487987146567981 ], [ -95.212901951241776, 29.488880146836109 ], [ -95.212337950979048, 29.489475146405589 ], [ -95.210648951155861, 29.491260147118037 ], [ -95.210444950430869, 29.491475147413624 ], [ -95.209228950423949, 29.49276014754069 ], [ -95.20868495079435, 29.493334147228506 ], [ -95.207447949620928, 29.494509148225841 ], [ -95.204978949063246, 29.49685414806676 ], [ -95.202977948554377, 29.498681148906279 ], [ -95.202133948546816, 29.499452148656605 ], [ -95.201692948315213, 29.499752148815698 ], [ -95.201582948847673, 29.499826149177043 ], [ -95.200764949041002, 29.500332149145923 ], [ -95.200245948371261, 29.500617149529123 ], [ -95.200195948110903, 29.500644149638347 ], [ -95.199201947855187, 29.501077149801734 ], [ -95.199028947843644, 29.501155149433611 ], [ -95.198111947599102, 29.501568149832032 ], [ -95.1973649478075, 29.501903149915123 ], [ -95.196146947871668, 29.5025131500798 ], [ -95.195058947185032, 29.503286149863893 ], [ -95.194903946781309, 29.503396149740816 ], [ -95.19421994685446, 29.504022149955841 ], [ -95.193518947297648, 29.504663150502619 ], [ -95.192872946553592, 29.505251150201705 ], [ -95.192060946770511, 29.505938150565541 ], [ -95.191215946340321, 29.506710150859437 ], [ -95.192300946264325, 29.507602151491302 ], [ -95.192656946955935, 29.507895151344545 ], [ -95.19298294662245, 29.508163151167118 ], [ -95.193039946620672, 29.508209151080738 ], [ -95.193730946781073, 29.508777151155442 ], [ -95.195151947229888, 29.509945151602967 ], [ -95.197670948363566, 29.512016151622266 ], [ -95.197806948212602, 29.512120152275404 ], [ -95.198120947999129, 29.512361152163074 ], [ -95.198487948590696, 29.512539151802752 ], [ -95.198926948590298, 29.512706152153573 ], [ -95.199167948576545, 29.512843151507671 ], [ -95.199207949167189, 29.512874152374692 ], [ -95.199533948362557, 29.51313015173093 ], [ -95.199848949042376, 29.513376151791817 ], [ -95.200593949324315, 29.514003152246584 ], [ -95.201059949718385, 29.51439515248375 ], [ -95.202553949795288, 29.515651152756227 ], [ -95.202737950118717, 29.515805152520489 ], [ -95.203497950206895, 29.516436152788071 ], [ -95.204160949960809, 29.516985153079634 ], [ -95.204462949888878, 29.517236152676347 ], [ -95.205299950276157, 29.517929152472501 ], [ -95.205536951008355, 29.518120152851342 ], [ -95.205834950611518, 29.518349152641409 ], [ -95.206208951084491, 29.518579153298774 ], [ -95.206458950654778, 29.518784152534629 ], [ -95.20680595098618, 29.519068152846948 ], [ -95.207493950967091, 29.51964815310679 ], [ -95.208051951609363, 29.520115152990765 ], [ -95.208594951856099, 29.520482153303554 ], [ -95.208684951142871, 29.520573152901392 ], [ -95.209327951959409, 29.521224153205232 ], [ -95.209794951544225, 29.521637153344336 ], [ -95.210214952396313, 29.522042153269393 ], [ -95.210513951594848, 29.522288153750083 ], [ -95.210864952238609, 29.522577153533014 ], [ -95.211445951882013, 29.523051153554324 ], [ -95.211574952085257, 29.523159153938916 ], [ -95.211934951913179, 29.523464153435445 ], [ -95.213287952779396, 29.524595153567311 ], [ -95.213374953086927, 29.524663153691282 ], [ -95.213928953266418, 29.525097154271382 ], [ -95.214578953428912, 29.525672154237164 ], [ -95.215702953700514, 29.524634154032608 ], [ -95.217562953446006, 29.522929152965609 ], [ -95.220428954389774, 29.520301152580053 ], [ -95.223212955376155, 29.517749152023185 ], [ -95.223219955515688, 29.517708152561799 ], [ -95.223261955504157, 29.517472151971322 ], [ -95.22327995463894, 29.517364152014693 ], [ -95.223350955257075, 29.516948152439426 ], [ -95.223392954592256, 29.516698151833285 ], [ -95.223432955165762, 29.516465152304676 ], [ -95.22346095547411, 29.516335152163613 ], [ -95.223594954850469, 29.515720151333234 ], [ -95.223629955475872, 29.515553151774217 ], [ -95.223672955353948, 29.515356151226104 ], [ -95.223687954936494, 29.515287151264417 ], [ -95.223758955268607, 29.51495615126942 ], [ -95.223783955272538, 29.514839151727301 ], [ -95.223855955085313, 29.514508151919809 ], [ -95.22386195478002, 29.514481151170738 ], [ -95.223866955586402, 29.514455151343288 ], [ -95.223892955225807, 29.514337151777649 ], [ -95.223926955277477, 29.514181151018935 ], [ -95.223963954927939, 29.5140091514875 ], [ -95.22429595555829, 29.512470150939652 ], [ -95.224582954790819, 29.51114915055313 ], [ -95.224585954924294, 29.511131150376819 ], [ -95.225001954841943, 29.509210150096433 ], [ -95.225068955351361, 29.508899150585307 ], [ -95.225158955110047, 29.508363150217871 ], [ -95.22535095529355, 29.507210149725491 ], [ -95.225623954671818, 29.505541149840337 ], [ -95.225644954962362, 29.505410149780566 ], [ -95.22567995553969, 29.505254149624669 ], [ -95.225948954780065, 29.504046148932744 ], [ -95.226022955053267, 29.503664149586644 ], [ -95.226219955627514, 29.502636148890879 ], [ -95.226269955675789, 29.502375148948019 ], [ -95.226314955101003, 29.502141149190393 ], [ -95.226385955207235, 29.501773148783474 ], [ -95.226527955466111, 29.501019148633077 ], [ -95.226579955151095, 29.500767148616806 ], [ -95.227016955035438, 29.498481147770569 ], [ -95.227492955032034, 29.49601814795232 ], [ -95.227602955381798, 29.495433147486128 ], [ -95.227659955216794, 29.495130147697342 ], [ -95.227676954908361, 29.495029147568477 ], [ -95.2277769557124, 29.494466147424749 ], [ -95.227944955586437, 29.493519147109012 ], [ -95.228825955720794, 29.488541145910286 ], [ -95.228913955200682, 29.488046145656579 ], [ -95.228933955407001, 29.487935146147269 ], [ -95.229451955433504, 29.485001145333502 ], [ -95.229467955131412, 29.484959145423701 ], [ -95.229664955349406, 29.484779145485543 ], [ -95.229837955778962, 29.483803144633576 ], [ -95.22999595496708, 29.482917145194147 ], [ -95.230273954963351, 29.481356144562536 ], [ -95.230632955779555, 29.479312143799874 ], [ -95.230656954849081, 29.47917414414146 ], [ -95.230749955117432, 29.478642143745642 ], [ -95.230952955746261, 29.477405143170415 ], [ -95.230955955221916, 29.477385143155864 ], [ -95.231346955484952, 29.474947142983538 ], [ -95.23152595562928, 29.473829143171148 ], [ -95.23161095563259, 29.473299142448095 ], [ -95.231721955363952, 29.472739142236531 ], [ -95.231754955195143, 29.472575142940823 ], [ -95.23187495568591, 29.471971142147893 ], [ -95.232074955057911, 29.470891142169368 ], [ -95.23217495520548, 29.470351142493048 ], [ -95.232289955701845, 29.469725141628984 ], [ -95.232576955407509, 29.468140141646778 ], [ -95.232770955179888, 29.467115141582394 ], [ -95.232901955171599, 29.466597140858944 ], [ -95.232946955780378, 29.466419140999331 ], [ -95.232988955775255, 29.466168141299029 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1487, "Tract": "48471790103", "Area_SqMi": 79.211958682849144, "total_2009": 642, "total_2010": 566, "total_2011": 488, "total_2012": 520, "total_2013": 530, "total_2014": 522, "total_2015": 524, "total_2016": 581, "total_2017": 569, "total_2018": 606, "total_2019": 540, "total_2020": 542, "age1": 151, "age2": 277, "age3": 143, "earn1": 158, "earn2": 250, "earn3": 163, "naics_s01": 10, "naics_s02": 0, "naics_s03": 16, "naics_s04": 39, "naics_s05": 24, "naics_s06": 18, "naics_s07": 176, "naics_s08": 34, "naics_s09": 2, "naics_s10": 0, "naics_s11": 3, "naics_s12": 29, "naics_s13": 0, "naics_s14": 18, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 196, "naics_s19": 4, "naics_s20": 2, "race1": 455, "race2": 59, "race3": 10, "race4": 36, "race5": 2, "race6": 9, "ethnicity1": 486, "ethnicity2": 85, "edu1": 83, "edu2": 131, "edu3": 118, "edu4": 88, "Shape_Length": 208121.27662795293, "Shape_Area": 2208293835.4556155, "total_2021": 545, "total_2022": 571 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.527824089221482, 30.733267389158264 ], [ -95.527984089674419, 30.732919388298171 ], [ -95.527800089103081, 30.732648388277163 ], [ -95.527574088790175, 30.732149388604697 ], [ -95.527267089285786, 30.731514388722225 ], [ -95.526872088615306, 30.730774388230802 ], [ -95.52675008889679, 30.730464388554815 ], [ -95.526694088843229, 30.730164387720055 ], [ -95.526681088507587, 30.730040388541696 ], [ -95.526652088834027, 30.729757387855987 ], [ -95.526628088453606, 30.729249387774516 ], [ -95.526465089269749, 30.728884387709545 ], [ -95.526376088818154, 30.728649387764968 ], [ -95.526191088381736, 30.72819338774228 ], [ -95.526019088384871, 30.727604387610384 ], [ -95.525883089019018, 30.726955387277815 ], [ -95.525802088825529, 30.726434387559525 ], [ -95.525758088102961, 30.725666387631605 ], [ -95.525734088503384, 30.725074386922948 ], [ -95.525727088055191, 30.724829387199527 ], [ -95.525698088785447, 30.723703387105523 ], [ -95.525661087861891, 30.721841386087743 ], [ -95.52562908834274, 30.720710386049227 ], [ -95.525608088051484, 30.719996385862522 ], [ -95.525582088033062, 30.718956386209257 ], [ -95.525545088163753, 30.717496385653 ], [ -95.525525088384285, 30.716116385296544 ], [ -95.525274087376033, 30.715974385648341 ], [ -95.524797087491592, 30.715703385226231 ], [ -95.52470908745795, 30.715653385703682 ], [ -95.524383087723763, 30.715469385134657 ], [ -95.524330087438415, 30.715439385165581 ], [ -95.523991087304225, 30.715248385576633 ], [ -95.523612087912667, 30.715095384840716 ], [ -95.523155087621447, 30.714910385006302 ], [ -95.522963086870419, 30.714833385305866 ], [ -95.522122086766288, 30.714535384954115 ], [ -95.521783087366089, 30.71441538493233 ], [ -95.521262086465597, 30.71423038543282 ], [ -95.519524086338862, 30.713638384834475 ], [ -95.518752085657425, 30.713375385049307 ], [ -95.518003085575671, 30.713121385285508 ], [ -95.517466086018615, 30.712941385224259 ], [ -95.514976085091121, 30.712107385376527 ], [ -95.513709085096721, 30.711679385171077 ], [ -95.513221084812102, 30.711502385057106 ], [ -95.513069084860192, 30.711447384644725 ], [ -95.512857084075577, 30.71138338508921 ], [ -95.512757084460532, 30.711353384515419 ], [ -95.512562084032382, 30.711295385078575 ], [ -95.51242908385143, 30.711255384751812 ], [ -95.511361083549957, 30.711045385038904 ], [ -95.511100084217148, 30.7109843853037 ], [ -95.51062708388487, 30.710908384940854 ], [ -95.510409084045349, 30.710873385327865 ], [ -95.510355083746774, 30.710865384504864 ], [ -95.507675082638087, 30.710439384825346 ], [ -95.506354082762101, 30.710228384754551 ], [ -95.50489008277286, 30.709995384514986 ], [ -95.504081082510353, 30.709865385095899 ], [ -95.503364082077496, 30.709750384560639 ], [ -95.503280082398149, 30.709739385169009 ], [ -95.501939081935447, 30.709525384857304 ], [ -95.499583081359489, 30.709149385326722 ], [ -95.498701081101444, 30.709009385012255 ], [ -95.497737080768815, 30.708855385300925 ], [ -95.496201079983351, 30.70861038485581 ], [ -95.495568079621506, 30.708509385180164 ], [ -95.495383079381014, 30.708479385109424 ], [ -95.493438079714153, 30.708169385330265 ], [ -95.492713079496255, 30.708055385306512 ], [ -95.492551078688976, 30.708029385352898 ], [ -95.491225078857696, 30.707817385178231 ], [ -95.490373078239813, 30.707681384879812 ], [ -95.487955078149099, 30.70729538492267 ], [ -95.485709077646732, 30.706937385033704 ], [ -95.482520076624212, 30.706428384909049 ], [ -95.480531076291811, 30.706111385271015 ], [ -95.475980075049165, 30.705384385307795 ], [ -95.475158074189395, 30.705253384913792 ], [ -95.474586074842705, 30.705173384917433 ], [ -95.474006073847463, 30.705116385070269 ], [ -95.473785074097094, 30.705100384850976 ], [ -95.473434074438813, 30.705079385460117 ], [ -95.472854074156274, 30.705064385347082 ], [ -95.471961073600198, 30.70508538553651 ], [ -95.466277072614062, 30.705381385659084 ], [ -95.463697072028708, 30.70551638574516 ], [ -95.452706068613367, 30.706089386110119 ], [ -95.44985906828046, 30.706237386624281 ], [ -95.449485067710654, 30.706254386271791 ], [ -95.44713306699623, 30.706337386706767 ], [ -95.44578106691695, 30.706385386379516 ], [ -95.444785066614529, 30.706420386513219 ], [ -95.444573067135551, 30.706438386359714 ], [ -95.443466066393313, 30.706529386433743 ], [ -95.44088706580078, 30.706689386929842 ], [ -95.44046106603426, 30.706701386579088 ], [ -95.439346065516219, 30.706733386718529 ], [ -95.436805064332404, 30.706857386333287 ], [ -95.436248064389616, 30.706884386379581 ], [ -95.434138064413119, 30.70700738732662 ], [ -95.433799063830733, 30.70702638679095 ], [ -95.431106063328755, 30.707183387307971 ], [ -95.430702063315522, 30.707214387472423 ], [ -95.430236063205399, 30.707271386884926 ], [ -95.42984606295667, 30.707337387270695 ], [ -95.429778062610254, 30.707349387196491 ], [ -95.429321062882977, 30.707448386966487 ], [ -95.428871062807318, 30.707568387535549 ], [ -95.428825063000048, 30.707586386781678 ], [ -95.428436062349704, 30.707711387574815 ], [ -95.428001062485706, 30.707874387266834 ], [ -95.427589061985273, 30.708055387121103 ], [ -95.427177062828463, 30.708257387428379 ], [ -95.426689062215644, 30.708539387463432 ], [ -95.426406061836019, 30.708715387424434 ], [ -95.426040062457758, 30.708972387281186 ], [ -95.425697061687373, 30.709245387617418 ], [ -95.425475062438778, 30.709436387884221 ], [ -95.425369061521309, 30.709533387806115 ], [ -95.425056061941788, 30.709836387948872 ], [ -95.423393061746538, 30.711591388001125 ], [ -95.421363061612666, 30.713943389095679 ], [ -95.420593060710502, 30.714715389168589 ], [ -95.420041060727698, 30.715272389238017 ], [ -95.416755060063139, 30.718591389689667 ], [ -95.416129059737571, 30.719249390149894 ], [ -95.41561106019644, 30.719812390213914 ], [ -95.415496060020217, 30.719899390300373 ], [ -95.415084060254884, 30.72022738993326 ], [ -95.41456505981175, 30.720718390545613 ], [ -95.41407706011546, 30.721116390221212 ], [ -95.413902060031447, 30.721263390773593 ], [ -95.413581059524248, 30.721460390949883 ], [ -95.41308505982083, 30.721753391002597 ], [ -95.411910059536595, 30.72259139056634 ], [ -95.411681059475612, 30.722743390695179 ], [ -95.410842058645784, 30.723321391269032 ], [ -95.410659058928232, 30.723439390845179 ], [ -95.409217058619888, 30.724403391210696 ], [ -95.407829058551499, 30.725360391465628 ], [ -95.40575305732736, 30.726743391459578 ], [ -95.405532058041544, 30.726873392222593 ], [ -95.405235057573094, 30.727041391963425 ], [ -95.404685057819478, 30.727319392148257 ], [ -95.404669057481755, 30.72732539223918 ], [ -95.404563057520804, 30.72736739168284 ], [ -95.403808057513544, 30.727666392396415 ], [ -95.403228056958568, 30.727817392609765 ], [ -95.402656057204567, 30.727958391899286 ], [ -95.401664056550729, 30.7281093926448 ], [ -95.40150405626062, 30.728133392530516 ], [ -95.400657056629669, 30.728275392864095 ], [ -95.399925056275137, 30.728370392903322 ], [ -95.399287056091993, 30.728468392563009 ], [ -95.398740056121909, 30.728551392173394 ], [ -95.397811056228605, 30.728694392334781 ], [ -95.397621056272243, 30.728723392672546 ], [ -95.39205405463747, 30.729593393260359 ], [ -95.391809054666709, 30.72963139299052 ], [ -95.391398054032024, 30.729696392780671 ], [ -95.388084053625491, 30.73021439324933 ], [ -95.381396052111938, 30.731260394052434 ], [ -95.378739051448022, 30.73167539377285 ], [ -95.378561051499418, 30.731703393905029 ], [ -95.373279050100862, 30.732513394064895 ], [ -95.371531049219612, 30.732781394404672 ], [ -95.365309048194575, 30.733735394996209 ], [ -95.357864045999193, 30.734876395197631 ], [ -95.353591044870981, 30.735603395630374 ], [ -95.351078044520975, 30.735995395584943 ], [ -95.350652044431854, 30.736061396028013 ], [ -95.344348042391033, 30.73704539589021 ], [ -95.341910041593351, 30.737426396183043 ], [ -95.338632040794579, 30.737831396365923 ], [ -95.338624040629455, 30.737938396779136 ], [ -95.33857704084997, 30.738531396494416 ], [ -95.337926040836109, 30.74674639809291 ], [ -95.337914041166343, 30.746814398381993 ], [ -95.337339041796412, 30.750191399552691 ], [ -95.336700041428031, 30.757306400693217 ], [ -95.336118041208906, 30.763755401705463 ], [ -95.335688042251164, 30.7685094027864 ], [ -95.335124042483443, 30.774773403819022 ], [ -95.334609042209649, 30.78048940536981 ], [ -95.334414042124038, 30.782651405843147 ], [ -95.334108042298368, 30.786052406532963 ], [ -95.33365404278652, 30.791087407283744 ], [ -95.333622041954015, 30.79144440768156 ], [ -95.333162043029049, 30.796550408983151 ], [ -95.332428043033872, 30.804646410120331 ], [ -95.330489043266155, 30.826215414649891 ], [ -95.330486043561152, 30.826247414628021 ], [ -95.330442043611995, 30.826739414920951 ], [ -95.330435042900248, 30.826814415004282 ], [ -95.330303043842065, 30.828292415214445 ], [ -95.33029904321063, 30.828337414678408 ], [ -95.330010043428331, 30.83154241560381 ], [ -95.330004043722923, 30.83162241575323 ], [ -95.329997043652398, 30.831703415555111 ], [ -95.329989043213544, 30.83179041615298 ], [ -95.329793043961942, 30.833949416043822 ], [ -95.329773043085552, 30.83415741615288 ], [ -95.329767043964395, 30.834217416152743 ], [ -95.32976104356537, 30.834276416429727 ], [ -95.329755044031003, 30.834339416373968 ], [ -95.329645043794201, 30.835572416888933 ], [ -95.328937043583636, 30.843455418119046 ], [ -95.328925043616763, 30.843582417837908 ], [ -95.328919043389078, 30.84365241786552 ], [ -95.328912043854643, 30.843734418559027 ], [ -95.328905043960674, 30.843809417867082 ], [ -95.328136044308678, 30.852342420138182 ], [ -95.327554043966728, 30.858827421543008 ], [ -95.327542044168652, 30.858952421594104 ], [ -95.327532044166318, 30.859078421365293 ], [ -95.327511044024916, 30.859307421187342 ], [ -95.327487044697193, 30.859527421155132 ], [ -95.3274870442702, 30.859552421039538 ], [ -95.327556044257875, 30.859520421149888 ], [ -95.327617044348429, 30.859492421466054 ], [ -95.327627044463696, 30.859475421059685 ], [ -95.32788804464829, 30.85934842115185 ], [ -95.327922044604449, 30.859348421245357 ], [ -95.328357044230074, 30.859332421360261 ], [ -95.32878604434589, 30.859319421678492 ], [ -95.32885904499183, 30.859317421294655 ], [ -95.32905204459027, 30.859443420950374 ], [ -95.329469044547267, 30.859714421799051 ], [ -95.329887044474503, 30.859985421272501 ], [ -95.330324044779559, 30.860268421929252 ], [ -95.331059044850079, 30.860966421193609 ], [ -95.331530045565273, 30.861780421418842 ], [ -95.332463045311798, 30.863393421906348 ], [ -95.332930045924343, 30.86449642194431 ], [ -95.334154046600261, 30.866496422956562 ], [ -95.334940046904705, 30.867685422827375 ], [ -95.336149046589412, 30.870188423271784 ], [ -95.336169047113984, 30.870207423393904 ], [ -95.336926046861109, 30.871626423542317 ], [ -95.337316047480556, 30.872087424025533 ], [ -95.337476046941148, 30.872274423840231 ], [ -95.3376780476909, 30.872504424058778 ], [ -95.33876404810016, 30.873551423578373 ], [ -95.339145048039484, 30.873835423621081 ], [ -95.339450048491983, 30.874063423617624 ], [ -95.339753047659769, 30.874289423630756 ], [ -95.339923047946982, 30.874415424081107 ], [ -95.340750048450317, 30.874910423665245 ], [ -95.34122204901449, 30.875192424302885 ], [ -95.341680048935501, 30.875463424392922 ], [ -95.341813048335965, 30.87554242403786 ], [ -95.342484048493006, 30.875652423705979 ], [ -95.342533048782158, 30.875660424131954 ], [ -95.343963048799466, 30.875806423767031 ], [ -95.344707049050712, 30.875637423756196 ], [ -95.34483004996693, 30.875609423879588 ], [ -95.345342049897752, 30.875340423623207 ], [ -95.345396049135346, 30.875269424348321 ], [ -95.34551805001928, 30.875090423504691 ], [ -95.346081049638826, 30.874203423367398 ], [ -95.346269049910745, 30.873907424043473 ], [ -95.346989049524865, 30.872906423512532 ], [ -95.347366050449935, 30.872382423736621 ], [ -95.347506050398806, 30.872152423645691 ], [ -95.348084049635332, 30.871200423173615 ], [ -95.348615050042042, 30.870034423177287 ], [ -95.348711050565456, 30.869936422811168 ], [ -95.349098050053982, 30.86954342234349 ], [ -95.349485050018444, 30.869151422232498 ], [ -95.349503050348517, 30.869133422381562 ], [ -95.349886050400315, 30.868839422537601 ], [ -95.35025405074542, 30.868555422094389 ], [ -95.350693050575074, 30.867888421952252 ], [ -95.350690050407991, 30.867872422403256 ], [ -95.351058050847911, 30.866653421871799 ], [ -95.351068050892735, 30.865685421464772 ], [ -95.349784050164345, 30.861135420828603 ], [ -95.349695050291274, 30.860651420972289 ], [ -95.349715049624294, 30.860587420848294 ], [ -95.349735049552635, 30.860522421070993 ], [ -95.349755049487825, 30.860457420386794 ], [ -95.350885049730294, 30.858810420684566 ], [ -95.350867049676168, 30.858641420222998 ], [ -95.350936050644663, 30.85854542015154 ], [ -95.351457050680992, 30.857821420418659 ], [ -95.351604050066186, 30.857616419865199 ], [ -95.351751050310313, 30.857412419733645 ], [ -95.352079050019185, 30.856956420006966 ], [ -95.352347050532359, 30.856853419808797 ], [ -95.353995050513035, 30.856212419603771 ], [ -95.35482905121755, 30.856007419674903 ], [ -95.35503605111947, 30.8559594196417 ], [ -95.355877051295252, 30.855759419494088 ], [ -95.356110050901179, 30.855723420068639 ], [ -95.357845051373658, 30.855441419571275 ], [ -95.358894052202587, 30.855302419230949 ], [ -95.35976605208316, 30.855186419589554 ], [ -95.361800052410473, 30.855003419481157 ], [ -95.362453053139532, 30.854887419035649 ], [ -95.36364605360761, 30.854677418756317 ], [ -95.365086053179496, 30.85487841932682 ], [ -95.366975054610052, 30.855246419100464 ], [ -95.367846054665833, 30.855653419024303 ], [ -95.370137054930439, 30.855994419560172 ], [ -95.371371054996615, 30.856124418872874 ], [ -95.372575055467394, 30.856053419010603 ], [ -95.372713055596847, 30.856031419377999 ], [ -95.372833056127504, 30.856013419173301 ], [ -95.37296505520969, 30.855989419036799 ], [ -95.373215055861905, 30.855945418643167 ], [ -95.37397405582864, 30.855825418642532 ], [ -95.374802055895728, 30.855750418909217 ], [ -95.375225055897459, 30.855729419064176 ], [ -95.377090056509147, 30.855389418952203 ], [ -95.378104056719337, 30.855139418349435 ], [ -95.378562056766512, 30.85502641851313 ], [ -95.379464057454882, 30.854805418373477 ], [ -95.379848057144031, 30.854666418265655 ], [ -95.381064058065334, 30.854225418257098 ], [ -95.381832057485553, 30.853974418711275 ], [ -95.382442058523694, 30.853775418132582 ], [ -95.382517058414919, 30.853703418338192 ], [ -95.382655058348661, 30.853571418122748 ], [ -95.382793057921276, 30.853439417756046 ], [ -95.383286057797577, 30.852966418514306 ], [ -95.384054058420787, 30.853054417699514 ], [ -95.384163058653655, 30.853066417825925 ], [ -95.385350058708767, 30.853664418101168 ], [ -95.385907058506106, 30.85408341790189 ], [ -95.386680059550116, 30.854665417916436 ], [ -95.387887059335199, 30.855456418661138 ], [ -95.388635059380348, 30.855912418446312 ], [ -95.389211060117589, 30.856112418341286 ], [ -95.390074059813273, 30.856412418336276 ], [ -95.390687059981403, 30.856569418779515 ], [ -95.391585060339679, 30.856799418709265 ], [ -95.393331060782501, 30.857218418137403 ], [ -95.394312061532489, 30.857397418411644 ], [ -95.395040061384478, 30.857556418164705 ], [ -95.395958061501858, 30.857517418113211 ], [ -95.39597006195163, 30.857517418773895 ], [ -95.396009061843102, 30.857522418465667 ], [ -95.396143061416268, 30.857558418394909 ], [ -95.396277062129784, 30.857594418218721 ], [ -95.396704061936418, 30.857711418897889 ], [ -95.397413062482173, 30.858284418357439 ], [ -95.3977280619536, 30.858674418275768 ], [ -95.397957062557055, 30.858958418503228 ], [ -95.398358062578311, 30.85965641920636 ], [ -95.398449062314768, 30.859939418605105 ], [ -95.398374062219546, 30.859644419132021 ], [ -95.398536062337342, 30.85944641926887 ], [ -95.398705062465766, 30.859227418545792 ], [ -95.398862062701681, 30.859019418807122 ], [ -95.399442062884603, 30.858272418629863 ], [ -95.401507062569692, 30.855613417990948 ], [ -95.401527063053422, 30.855586417999586 ], [ -95.403419063028224, 30.853061417244902 ], [ -95.404096063397859, 30.852109416749627 ], [ -95.40415906366232, 30.852020416687445 ], [ -95.404250063812427, 30.851903416764269 ], [ -95.406165064019078, 30.849567416604302 ], [ -95.406257063770482, 30.849460416697788 ], [ -95.407035063756155, 30.848504416428728 ], [ -95.407722063804925, 30.847635416110439 ], [ -95.408416064438981, 30.846822416127477 ], [ -95.409057064022633, 30.846041416159494 ], [ -95.409236064019709, 30.84582341553925 ], [ -95.409248064718057, 30.84580941534751 ], [ -95.410400064697157, 30.844350414919319 ], [ -95.412439065141655, 30.841937414877961 ], [ -95.413055065612355, 30.841209414576795 ], [ -95.414234065026776, 30.839744414092241 ], [ -95.415489065290885, 30.838186414237235 ], [ -95.415695065970752, 30.837941413679701 ], [ -95.415763065410275, 30.837739413398047 ], [ -95.41580206568365, 30.837694413762765 ], [ -95.416253066127709, 30.837185413537682 ], [ -95.416515065951643, 30.836871414025879 ], [ -95.418095066745551, 30.835180413340396 ], [ -95.419399066839134, 30.833899413175015 ], [ -95.419504066487221, 30.833793412491545 ], [ -95.422504067173875, 30.830753412420911 ], [ -95.426180067733213, 30.827024410868439 ], [ -95.429057068343624, 30.824106410250035 ], [ -95.429995068785999, 30.823178410527944 ], [ -95.43273706906173, 30.820422410080855 ], [ -95.437497070023568, 30.815604408996762 ], [ -95.439349070382207, 30.813792408080921 ], [ -95.440876070879554, 30.81225740808172 ], [ -95.443247071557536, 30.809847407540257 ], [ -95.443561071998218, 30.809505407477623 ], [ -95.444786071345007, 30.808285407200763 ], [ -95.44607807201271, 30.806968406362074 ], [ -95.44618107178195, 30.806872406584958 ], [ -95.446251072493354, 30.806814406344074 ], [ -95.446310072103046, 30.806744406478838 ], [ -95.447039072742513, 30.806018406293976 ], [ -95.447812072126808, 30.805331406466049 ], [ -95.44876107276076, 30.804570406366796 ], [ -95.449917073309322, 30.803658405479911 ], [ -95.450695072988637, 30.803055405296046 ], [ -95.451842073255392, 30.802129405798009 ], [ -95.452679073703365, 30.801475405624977 ], [ -95.454286073548218, 30.800268404630607 ], [ -95.455982074217275, 30.798894404201711 ], [ -95.457011074432643, 30.798091404623737 ], [ -95.457059074192287, 30.79805440468996 ], [ -95.458077074347685, 30.797286403767814 ], [ -95.458651074355089, 30.79683640370969 ], [ -95.459293074599358, 30.796331404153293 ], [ -95.460086074796266, 30.795699403654851 ], [ -95.461162075208904, 30.79485940331308 ], [ -95.461426075167296, 30.794639403069986 ], [ -95.462224075513987, 30.794053402973805 ], [ -95.463429076230312, 30.793105403425294 ], [ -95.464011076438311, 30.792641402952363 ], [ -95.464370076479284, 30.792355403187891 ], [ -95.464530076438635, 30.792234403286251 ], [ -95.464708076578106, 30.792092402607373 ], [ -95.465101076081723, 30.791780402761972 ], [ -95.46600007615784, 30.791104402406635 ], [ -95.46791607687247, 30.789575402522658 ], [ -95.468963077436584, 30.788736402173125 ], [ -95.474615078443932, 30.784338400766806 ], [ -95.475070078013147, 30.784000401226287 ], [ -95.47538607853383, 30.783775400975344 ], [ -95.475717078464271, 30.783570400477736 ], [ -95.47606407900625, 30.783380401126085 ], [ -95.476424078184934, 30.783212400930758 ], [ -95.476792078322234, 30.783060400712138 ], [ -95.477157079007924, 30.782911400811589 ], [ -95.477997079415246, 30.782608400632373 ], [ -95.478758079395078, 30.78240540026346 ], [ -95.478809079481877, 30.782378400712851 ], [ -95.478857078900305, 30.782368400652508 ], [ -95.481827079828136, 30.781482400387315 ], [ -95.482259080337556, 30.781342399674209 ], [ -95.482685080572466, 30.781181400087458 ], [ -95.483096080301991, 30.781001400064998 ], [ -95.483499080354591, 30.78080039993721 ], [ -95.483879080655058, 30.780582399660922 ], [ -95.484252080329568, 30.780345399529761 ], [ -95.484611081079777, 30.780092400104493 ], [ -95.484840081014113, 30.779917399602628 ], [ -95.485062080934284, 30.77971139931746 ], [ -95.485141080840876, 30.779634399579177 ], [ -95.488115081538311, 30.777288399326473 ], [ -95.490962082031317, 30.7750743984103 ], [ -95.493535082842271, 30.773054398350716 ], [ -95.496605082978235, 30.770648397295844 ], [ -95.503898084356337, 30.764906396232764 ], [ -95.505345085206827, 30.763758395872859 ], [ -95.506905085500122, 30.762538395232294 ], [ -95.507412085286418, 30.762174395520681 ], [ -95.508197086021354, 30.76156139552333 ], [ -95.509020085672745, 30.760851394663351 ], [ -95.510007086451779, 30.759903394583105 ], [ -95.511494086470705, 30.758477393967361 ], [ -95.511586086055985, 30.758389394235323 ], [ -95.511779086798086, 30.758204394777774 ], [ -95.512882086375257, 30.75714639446025 ], [ -95.513391086391152, 30.756632393712689 ], [ -95.513979086755569, 30.756046393627287 ], [ -95.514289086831184, 30.755749393520667 ], [ -95.514843087180168, 30.755219393392284 ], [ -95.515684087426081, 30.754407393604485 ], [ -95.516321087532788, 30.753851393497289 ], [ -95.516693087722757, 30.753392393086965 ], [ -95.51734708722654, 30.752767393392816 ], [ -95.517675088014911, 30.752441393021083 ], [ -95.517875087299984, 30.752243392982923 ], [ -95.518279087873054, 30.751819392754484 ], [ -95.518521087702311, 30.751567392705752 ], [ -95.518683088137664, 30.75139339282412 ], [ -95.518756088129777, 30.751315392668822 ], [ -95.518790087686867, 30.751278392609017 ], [ -95.518915087494378, 30.751145392568866 ], [ -95.519705087809953, 30.750006392793377 ], [ -95.519960087777505, 30.74967539268129 ], [ -95.520088088464831, 30.749455392139176 ], [ -95.520342087713601, 30.749021392345394 ], [ -95.52086808852971, 30.747967392250693 ], [ -95.52091308811606, 30.747875391979061 ], [ -95.521049088190708, 30.747601391806597 ], [ -95.521254088460353, 30.747180391646189 ], [ -95.521455088440646, 30.74676839197765 ], [ -95.521650088503463, 30.746350391224851 ], [ -95.521738088289126, 30.746161391653064 ], [ -95.522142088049421, 30.745294390933172 ], [ -95.522387088534103, 30.744800391626335 ], [ -95.522424088306366, 30.744719391131579 ], [ -95.522770088603366, 30.743966391044189 ], [ -95.522912088931051, 30.743669391117656 ], [ -95.522997088515467, 30.743489390992202 ], [ -95.523268088935225, 30.74291639101568 ], [ -95.523568088805249, 30.742256390699627 ], [ -95.523750089209813, 30.741855390890549 ], [ -95.523855089234587, 30.741636390717805 ], [ -95.524161088709519, 30.74099839080834 ], [ -95.524531089064411, 30.74025239036845 ], [ -95.525061088524879, 30.739137390395957 ], [ -95.525232088614828, 30.738782390226415 ], [ -95.525252088643811, 30.738739389991583 ], [ -95.525490088876694, 30.73824738951711 ], [ -95.525836088855996, 30.737481389308339 ], [ -95.525990089313225, 30.737143389418911 ], [ -95.526446089110181, 30.736200389496847 ], [ -95.526639089591896, 30.73579938937014 ], [ -95.527230089176584, 30.734571389434823 ], [ -95.527587089585452, 30.733840389162342 ], [ -95.527727088887971, 30.733502388562897 ], [ -95.527824089221482, 30.733267389158264 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1488, "Tract": "48471790101", "Area_SqMi": 142.94537172469686, "total_2009": 30, "total_2010": 42, "total_2011": 336, "total_2012": 311, "total_2013": 316, "total_2014": 276, "total_2015": 392, "total_2016": 369, "total_2017": 352, "total_2018": 363, "total_2019": 343, "total_2020": 387, "age1": 30, "age2": 205, "age3": 121, "earn1": 37, "earn2": 110, "earn3": 209, "naics_s01": 0, "naics_s02": 0, "naics_s03": 6, "naics_s04": 12, "naics_s05": 0, "naics_s06": 0, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 1, "naics_s13": 13, "naics_s14": 27, "naics_s15": 254, "naics_s16": 21, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 22, "race1": 250, "race2": 91, "race3": 2, "race4": 8, "race5": 0, "race6": 5, "ethnicity1": 317, "ethnicity2": 39, "edu1": 33, "edu2": 78, "edu3": 136, "edu4": 79, "Shape_Length": 372472.55364466738, "Shape_Area": 3985072310.2357388, "total_2021": 440, "total_2022": 356 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.683367137740817, 30.905682417387961 ], [ -95.68339613722965, 30.905645417106456 ], [ -95.683302138088521, 30.905503417067582 ], [ -95.682906137969724, 30.904905417383048 ], [ -95.682487137771275, 30.904311417306435 ], [ -95.682160137297174, 30.903948417295801 ], [ -95.682121137769755, 30.903905416840985 ], [ -95.681800136765617, 30.90350741677673 ], [ -95.681419136591558, 30.903108417336654 ], [ -95.680953136938655, 30.90272841686259 ], [ -95.679450136428315, 30.901403416398026 ], [ -95.679038136230034, 30.901023416596175 ], [ -95.678649136423402, 30.900642416312088 ], [ -95.67831413621154, 30.900277416165892 ], [ -95.678031136122229, 30.899921416714282 ], [ -95.677718136297102, 30.899503416227372 ], [ -95.677650136125791, 30.899377416168395 ], [ -95.677482135608798, 30.899095416361522 ], [ -95.675712134845483, 30.895768416187597 ], [ -95.675392135609385, 30.895183416144057 ], [ -95.673960135149116, 30.89244441559541 ], [ -95.673652134166701, 30.891855415326283 ], [ -95.673400134028824, 30.891353414959458 ], [ -95.673269134387368, 30.891109415076095 ], [ -95.673141134664647, 30.890872415203361 ], [ -95.672904134736868, 30.890359414698537 ], [ -95.67274413434302, 30.889886414850633 ], [ -95.672525133730602, 30.889121414527445 ], [ -95.67208013356057, 30.887677414280031 ], [ -95.671501134077261, 30.885833414003585 ], [ -95.670534133236004, 30.882547413406368 ], [ -95.669067132631696, 30.877561412042812 ], [ -95.668769132709443, 30.876617411826981 ], [ -95.668670132824744, 30.876359412004955 ], [ -95.668578132566211, 30.876144412375435 ], [ -95.668403132203224, 30.875808411710498 ], [ -95.66831913258234, 30.875657412464722 ], [ -95.667960132628167, 30.875203411558854 ], [ -95.667105132396557, 30.874241412195424 ], [ -95.666244131991306, 30.873273412092942 ], [ -95.665778131628571, 30.872728411156842 ], [ -95.664634131637911, 30.871440411206525 ], [ -95.664298131607879, 30.871118411750633 ], [ -95.663947131487049, 30.870811411120343 ], [ -95.663581130919709, 30.87052141106215 ], [ -95.66337513109093, 30.87037541142595 ], [ -95.663192130406529, 30.870246411143441 ], [ -95.662662130859687, 30.869903411463255 ], [ -95.662551131115322, 30.869832411130734 ], [ -95.661849129905335, 30.869359410755663 ], [ -95.661634129883765, 30.869198411219038 ], [ -95.661483130568769, 30.86908541132782 ], [ -95.661132129839643, 30.868783411345245 ], [ -95.660865130203149, 30.868538410676415 ], [ -95.657783128738458, 30.865718410427043 ], [ -95.657753129566444, 30.865692410465233 ], [ -95.656410129039145, 30.864526410379575 ], [ -95.655952128808664, 30.864064410534983 ], [ -95.655509128776572, 30.863590410554583 ], [ -95.655105128135219, 30.863113410023409 ], [ -95.650031126388882, 30.856990409191152 ], [ -95.649734126956005, 30.85665240887953 ], [ -95.649421126187889, 30.856328408821476 ], [ -95.64908512646619, 30.856019408697634 ], [ -95.648734126680623, 30.855726409064761 ], [ -95.648361125832011, 30.855449408984963 ], [ -95.647979126164955, 30.855188408716231 ], [ -95.647559126503992, 30.854940408324101 ], [ -95.647476125791698, 30.854892409049008 ], [ -95.638973123795935, 30.850044407845694 ], [ -95.638664123125366, 30.849868408109089 ], [ -95.638275123509217, 30.84965640791922 ], [ -95.637863123658988, 30.849462407846719 ], [ -95.63744312267842, 30.849290408374685 ], [ -95.63701612266307, 30.849136407951697 ], [ -95.636573122967775, 30.849004407961594 ], [ -95.636131123028903, 30.848891408331212 ], [ -95.635673123178023, 30.848802408143673 ], [ -95.635070122647335, 30.848716407970795 ], [ -95.631347121421939, 30.84830240827295 ], [ -95.63090512157477, 30.848241408421032 ], [ -95.630515121237636, 30.848102407801576 ], [ -95.630096120948537, 30.848014407850972 ], [ -95.629775120866285, 30.84792340837372 ], [ -95.629302121047672, 30.847715408162998 ], [ -95.62879912051433, 30.847522408104027 ], [ -95.628341120259719, 30.847327407886226 ], [ -95.627906120979191, 30.847091407455345 ], [ -95.625732120395028, 30.845811407921051 ], [ -95.624309119524526, 30.844944407507356 ], [ -95.619636117830055, 30.842098406916804 ], [ -95.614349116882863, 30.838086406335865 ], [ -95.613700116765088, 30.837535406515595 ], [ -95.612686116425536, 30.836469406003019 ], [ -95.611083116019799, 30.834863406447084 ], [ -95.610748115616857, 30.834399406376257 ], [ -95.610351115030838, 30.834071405733553 ], [ -95.609962114918844, 30.833772406028153 ], [ -95.609580115133426, 30.833490405902879 ], [ -95.608222114935003, 30.832572405957361 ], [ -95.604427114045478, 30.830130405759565 ], [ -95.596549111172109, 30.825061404833935 ], [ -95.596160111031097, 30.824521404109902 ], [ -95.595786111266889, 30.824105404726893 ], [ -95.594627111212958, 30.822329404507627 ], [ -95.594587111343643, 30.82226840440557 ], [ -95.594480111100438, 30.822103403757058 ], [ -95.591350110280686, 30.817305403473018 ], [ -95.590576109704529, 30.816119403473724 ], [ -95.589988109153225, 30.815381402540773 ], [ -95.589576108768426, 30.815025403082135 ], [ -95.589401109044104, 30.814904403087528 ], [ -95.588960109459975, 30.814558403021746 ], [ -95.588889108697657, 30.814502403223045 ], [ -95.587698108922936, 30.814091402380534 ], [ -95.583053107285181, 30.812488402280703 ], [ -95.579925106211618, 30.811572402277775 ], [ -95.578407106548497, 30.810905402727872 ], [ -95.577766105505475, 30.810508402601517 ], [ -95.576499105793616, 30.809596402283244 ], [ -95.575515105658283, 30.808872401738149 ], [ -95.575324105306038, 30.80874240248346 ], [ -95.575248105092811, 30.808686402170402 ], [ -95.573524104676991, 30.807563401981074 ], [ -95.573295104520056, 30.807409401555855 ], [ -95.572196104055593, 30.806636401719818 ], [ -95.571868103894545, 30.806392401334609 ], [ -95.571555104636687, 30.806133401733121 ], [ -95.570091104140133, 30.804719401606476 ], [ -95.569407103062531, 30.804066401615295 ], [ -95.568893103463495, 30.803575401477243 ], [ -95.568778103144481, 30.803449401400215 ], [ -95.56864110324949, 30.803315401593039 ], [ -95.56850410350215, 30.803172401236047 ], [ -95.568351103485327, 30.802997401023525 ], [ -95.568137102618294, 30.802720400784562 ], [ -95.567886102646611, 30.802253400947894 ], [ -95.567161102477058, 30.800882400909522 ], [ -95.566479102136825, 30.799606400703464 ], [ -95.565612102569844, 30.797969400105085 ], [ -95.565124102044791, 30.797063399719615 ], [ -95.564788101925018, 30.796420400211602 ], [ -95.564527101358706, 30.79592439985176 ], [ -95.563812101312166, 30.794563399873681 ], [ -95.563802101339462, 30.794543399474765 ], [ -95.563708101218992, 30.794354399441257 ], [ -95.563573101996198, 30.794081399836418 ], [ -95.563531101871476, 30.793998399853916 ], [ -95.563499101865602, 30.793933399185111 ], [ -95.563285101710832, 30.793384399351051 ], [ -95.562572101555432, 30.791625398995102 ], [ -95.562560100668819, 30.79159539897277 ], [ -95.562499101122654, 30.791454399309902 ], [ -95.562484101628826, 30.791411398970666 ], [ -95.562454100811166, 30.79132839899555 ], [ -95.561828100953846, 30.78960339865035 ], [ -95.561698101125401, 30.789256398946613 ], [ -95.561627101133297, 30.789026398447959 ], [ -95.56139310047854, 30.788265398503487 ], [ -95.561210101092314, 30.787498398387363 ], [ -95.560973100095879, 30.786306398173188 ], [ -95.560729100417987, 30.784761398051554 ], [ -95.560645100743301, 30.784318397406516 ], [ -95.560523100001248, 30.783845398049568 ], [ -95.560478100533871, 30.78371239787981 ], [ -95.560363099860197, 30.783403397891767 ], [ -95.560157100323295, 30.782951397123728 ], [ -95.559951099688647, 30.782546397789663 ], [ -95.559722099660888, 30.782060397187887 ], [ -95.559478099986791, 30.781568397691192 ], [ -95.558804100033797, 30.780176397071976 ], [ -95.558700099169457, 30.779960397233786 ], [ -95.558624099875871, 30.779786397191391 ], [ -95.557945098847242, 30.778306396757255 ], [ -95.557678098884168, 30.777715396250972 ], [ -95.557525099598948, 30.777311396869621 ], [ -95.557502098943658, 30.777240396462776 ], [ -95.557397099040827, 30.776863396245876 ], [ -95.557388099189126, 30.776830396041838 ], [ -95.557250099371771, 30.776281396100384 ], [ -95.557205099069847, 30.775996396688441 ], [ -95.557075098911355, 30.775430396062497 ], [ -95.557052098880106, 30.775356396509505 ], [ -95.556986098750954, 30.775078396440342 ], [ -95.556945098802174, 30.774902395802997 ], [ -95.556709098320695, 30.77377639571931 ], [ -95.55667109830992, 30.773620395827326 ], [ -95.556267098220943, 30.771764395779588 ], [ -95.556090098908129, 30.771037395068564 ], [ -95.556023098407366, 30.770743395240437 ], [ -95.555934098401849, 30.770356395530602 ], [ -95.555792098671091, 30.769732395167168 ], [ -95.555638098284646, 30.769058394483366 ], [ -95.555505098361621, 30.768426394789781 ], [ -95.555399097811431, 30.767923394472195 ], [ -95.555109097868467, 30.766901394226633 ], [ -95.555021098304408, 30.766593394807266 ], [ -95.554861097513907, 30.766082394345524 ], [ -95.554746097955274, 30.765716394392292 ], [ -95.554646098217361, 30.765397394082054 ], [ -95.554444097239823, 30.764713394275333 ], [ -95.554094097735728, 30.763523393947299 ], [ -95.554025097069044, 30.763287393700136 ], [ -95.554002097832395, 30.763210393978706 ], [ -95.553883097127894, 30.762887393796049 ], [ -95.553760097671031, 30.762606393301407 ], [ -95.55369609755229, 30.762461393526564 ], [ -95.55354609767717, 30.762160393200389 ], [ -95.553448097069079, 30.761965393161439 ], [ -95.553236097173908, 30.761617393918925 ], [ -95.552784096848342, 30.76087339342353 ], [ -95.552749097108929, 30.760815393723952 ], [ -95.552392097444098, 30.760230393518409 ], [ -95.552121096875311, 30.759793392864847 ], [ -95.552062096421196, 30.759701392797602 ], [ -95.551816097104307, 30.75932239287787 ], [ -95.551560096385984, 30.758927392768538 ], [ -95.551241096602297, 30.758405393082384 ], [ -95.550990096013535, 30.757996392677885 ], [ -95.550851096651357, 30.757790393015878 ], [ -95.550826096039799, 30.75775239278331 ], [ -95.550528095914046, 30.757139392483278 ], [ -95.550513095843471, 30.757102393130705 ], [ -95.550368096423213, 30.756747392999717 ], [ -95.550169096715138, 30.756076392153563 ], [ -95.550072096326659, 30.755690392167271 ], [ -95.549962096201114, 30.755252392436713 ], [ -95.549866096017766, 30.754777392233908 ], [ -95.549814096169797, 30.754519391927808 ], [ -95.549788096029161, 30.75438939206785 ], [ -95.549708095590375, 30.753876391978185 ], [ -95.549672096454515, 30.753651391627415 ], [ -95.549184095482858, 30.754431391912728 ], [ -95.549063096217978, 30.754628392643852 ], [ -95.548834095935717, 30.754992391968763 ], [ -95.548664095443755, 30.755279392466132 ], [ -95.548300096126226, 30.75587939228874 ], [ -95.547937095807939, 30.756477392793041 ], [ -95.547621095328154, 30.756981392438568 ], [ -95.547027095025953, 30.757967393078953 ], [ -95.546829095493564, 30.758297392834798 ], [ -95.546499095077692, 30.758875392805855 ], [ -95.5463880956342, 30.759106393130054 ], [ -95.546263095720732, 30.759366393053003 ], [ -95.546093095340211, 30.759794393680135 ], [ -95.545801095364936, 30.760571393132622 ], [ -95.545782095006814, 30.760624393624187 ], [ -95.545530095115765, 30.761334393474616 ], [ -95.545468095086278, 30.761521393414714 ], [ -95.545133095228948, 30.762391393797103 ], [ -95.544655095577255, 30.763665394325322 ], [ -95.544628095610364, 30.763736393847864 ], [ -95.544616095258732, 30.763769394353737 ], [ -95.544475095629778, 30.764141394635434 ], [ -95.544409094666165, 30.764316394037284 ], [ -95.544127094805475, 30.765116394355957 ], [ -95.544032094808472, 30.765386394417725 ], [ -95.543874094865018, 30.76583439505233 ], [ -95.543725094633231, 30.766278394604146 ], [ -95.543522095534556, 30.766883395136304 ], [ -95.543324095388598, 30.767483395463206 ], [ -95.543268095279785, 30.767653394808754 ], [ -95.543213095200599, 30.767794394924486 ], [ -95.543031094803638, 30.768257395351558 ], [ -95.542914094668362, 30.768679395017244 ], [ -95.542800095260773, 30.768959395309665 ], [ -95.542751094708549, 30.769084395747917 ], [ -95.542373095373662, 30.770021395231144 ], [ -95.542114094880759, 30.770652395772661 ], [ -95.541961095068615, 30.771043395424339 ], [ -95.541297094824401, 30.772866396603405 ], [ -95.541259094604655, 30.773031396049589 ], [ -95.541199094982161, 30.773204396547847 ], [ -95.541190094658731, 30.773229396519149 ], [ -95.541183094674011, 30.773408396403823 ], [ -95.541213094681439, 30.773628396682103 ], [ -95.541417095112152, 30.774259396546103 ], [ -95.541663094553599, 30.775020396603384 ], [ -95.541709095457421, 30.775346396303398 ], [ -95.54170209512948, 30.775562397143805 ], [ -95.541625094957737, 30.775911397231987 ], [ -95.540736095020534, 30.778379397655115 ], [ -95.540199094732287, 30.779870397730118 ], [ -95.539767094948971, 30.781044397628481 ], [ -95.539657095097922, 30.7813413982471 ], [ -95.539497095038854, 30.781839398493069 ], [ -95.539329095228723, 30.782327398570136 ], [ -95.538703094475821, 30.784164398728883 ], [ -95.538406094132043, 30.785070398548783 ], [ -95.537940094839954, 30.786359398632438 ], [ -95.537873094998247, 30.786529399133116 ], [ -95.537658094832949, 30.787072399311853 ], [ -95.53760509464631, 30.787210399422332 ], [ -95.537216094071184, 30.788230399868173 ], [ -95.537193094475711, 30.788274399480791 ], [ -95.536506093882949, 30.790172399450121 ], [ -95.536496094395162, 30.790188399900458 ], [ -95.536125094182481, 30.791177400469863 ], [ -95.536025094788158, 30.791456399896113 ], [ -95.536018094012334, 30.791488400259325 ], [ -95.53546109448159, 30.792985400278635 ], [ -95.535209094470972, 30.793641400523104 ], [ -95.534727094385289, 30.79493240080512 ], [ -95.534393094549955, 30.795829401372323 ], [ -95.534110093712314, 30.796626401450677 ], [ -95.53377009405834, 30.797630401575933 ], [ -95.533351094200412, 30.798868401478497 ], [ -95.532928093999985, 30.800117402382813 ], [ -95.532616093805316, 30.800950401835859 ], [ -95.532310093565115, 30.801764402606285 ], [ -95.531975093902645, 30.802660402785968 ], [ -95.531738093369825, 30.803291402364763 ], [ -95.531683093343347, 30.803426402305451 ], [ -95.531516093490396, 30.80383640313228 ], [ -95.531165093447768, 30.804759402734643 ], [ -95.530403093160388, 30.806231402999508 ], [ -95.53027309400062, 30.806482403744997 ], [ -95.529418093369813, 30.808089403983494 ], [ -95.529197093685596, 30.808604403624894 ], [ -95.528488093499448, 30.810083404258755 ], [ -95.527745093021196, 30.811788404747535 ], [ -95.52770909316925, 30.811870404903779 ], [ -95.526836093304922, 30.814009405206377 ], [ -95.526573093115744, 30.814655404878589 ], [ -95.525855093365777, 30.816177405846094 ], [ -95.525367092547128, 30.817060406054011 ], [ -95.524825092831321, 30.818233405570862 ], [ -95.524757092603124, 30.818416405940656 ], [ -95.524302092896704, 30.819496405858981 ], [ -95.523307092870354, 30.821855406425637 ], [ -95.523094092600246, 30.82250740718062 ], [ -95.522842092054304, 30.8230794066952 ], [ -95.521621092546951, 30.826757408158386 ], [ -95.52111009189926, 30.828479408108212 ], [ -95.521093092045703, 30.828549408277368 ], [ -95.520973092102935, 30.829047407810812 ], [ -95.520889092560779, 30.829419408115285 ], [ -95.520706092015999, 30.831134409013266 ], [ -95.520652092809883, 30.831413408999694 ], [ -95.520596091883561, 30.831669409156845 ], [ -95.520461092313113, 30.832172409276641 ], [ -95.520423091832626, 30.832265409190569 ], [ -95.520187092755606, 30.832944409000838 ], [ -95.520080092482303, 30.833352408731574 ], [ -95.519943092359057, 30.83400540939467 ], [ -95.519836092163416, 30.834571408981024 ], [ -95.519737092177181, 30.835141409362805 ], [ -95.519560091799278, 30.836089409880348 ], [ -95.5195000928165, 30.836412409954118 ], [ -95.519447092568072, 30.837112409643655 ], [ -95.519447092435755, 30.83800441012 ], [ -95.519439092925978, 30.838655410198456 ], [ -95.519439092000056, 30.839977410808999 ], [ -95.519431092129295, 30.840581410223511 ], [ -95.519363092015411, 30.841209411119561 ], [ -95.519203092922055, 30.841516410381853 ], [ -95.519096092050802, 30.841680410720137 ], [ -95.518989092851811, 30.841895411180761 ], [ -95.518829092899892, 30.842077410829479 ], [ -95.518646092323593, 30.842242411126705 ], [ -95.517791092603659, 30.842952410829362 ], [ -95.517288092290414, 30.843335411527317 ], [ -95.511672090940976, 30.848026412761008 ], [ -95.511086090739653, 30.848447412270851 ], [ -95.509467090025581, 30.849609412939685 ], [ -95.508476089866605, 30.850278413362247 ], [ -95.506248089514145, 30.851938413416676 ], [ -95.505103089428545, 30.852809413746606 ], [ -95.504859089877513, 30.853000413997474 ], [ -95.504730089268648, 30.853095414015044 ], [ -95.501754088246173, 30.855375413824039 ], [ -95.501251088680789, 30.855739414656174 ], [ -95.500877088619461, 30.856025414638395 ], [ -95.500366088852971, 30.856445414847791 ], [ -95.500289088138018, 30.856500414182847 ], [ -95.49830608772983, 30.857408414360048 ], [ -95.495753087268554, 30.858324415321203 ], [ -95.488993086100862, 30.860750416094721 ], [ -95.48172708358301, 30.863357416463305 ], [ -95.480049083217367, 30.863986416560287 ], [ -95.479191083129749, 30.86434141680235 ], [ -95.479125082973923, 30.864368417195656 ], [ -95.474510081806287, 30.866405417325797 ], [ -95.474426082275954, 30.866445416984511 ], [ -95.473321082189528, 30.866978417374114 ], [ -95.469609081275053, 30.868766418301927 ], [ -95.465339080574239, 30.870822418611429 ], [ -95.465011079634579, 30.870960418226268 ], [ -95.464752080039929, 30.871057418670574 ], [ -95.464492079707668, 30.871145418428849 ], [ -95.464423079423938, 30.871155418331412 ], [ -95.464218080345944, 30.871185418624542 ], [ -95.463958079636157, 30.871211418786764 ], [ -95.463584079672941, 30.871198418728795 ], [ -95.463249079269019, 30.87117141921026 ], [ -95.462686079901246, 30.871086418638704 ], [ -95.461387078787922, 30.870891418603133 ], [ -95.460993078531871, 30.870830418557091 ], [ -95.459968079119975, 30.870670418460925 ], [ -95.459510078425552, 30.870633418870614 ], [ -95.459266078528614, 30.870607418731602 ], [ -95.459147078305023, 30.870594418370437 ], [ -95.458833078429265, 30.870560418645372 ], [ -95.454833077077055, 30.870130418939919 ], [ -95.453422076536015, 30.869987419026796 ], [ -95.451522076371432, 30.869695419278798 ], [ -95.450439076486234, 30.869518419236918 ], [ -95.450123076060066, 30.869475418635304 ], [ -95.449157075513185, 30.869344418810805 ], [ -95.447814076003354, 30.869073419188435 ], [ -95.44677707480605, 30.868732419071449 ], [ -95.445838075348362, 30.868339418529263 ], [ -95.444228074321373, 30.867568419047345 ], [ -95.442825074065439, 30.866967418734113 ], [ -95.441589073456015, 30.866470418647342 ], [ -95.441253073983631, 30.866328418476694 ], [ -95.440429073776698, 30.866042418281836 ], [ -95.439079073245182, 30.865661418555188 ], [ -95.438262073384621, 30.865421418669349 ], [ -95.437789072952071, 30.865262418723159 ], [ -95.437377072990103, 30.865033418296441 ], [ -95.436805072083473, 30.864507418742413 ], [ -95.436439072448508, 30.864017418650803 ], [ -95.435996071899496, 30.863376418145602 ], [ -95.435180071920342, 30.862445418032884 ], [ -95.433990072149484, 30.861266417970242 ], [ -95.433720071261746, 30.860992417951454 ], [ -95.433525071134881, 30.860796417990912 ], [ -95.433449071177932, 30.860719417722766 ], [ -95.4333830710857, 30.860651417518842 ], [ -95.43331607146466, 30.860584417680926 ], [ -95.432426071349624, 30.859683417517889 ], [ -95.431983071403593, 30.859298417144299 ], [ -95.431053070696649, 30.85868241775286 ], [ -95.430175070111304, 30.858217417564635 ], [ -95.428924070347975, 30.857654417565506 ], [ -95.427924070119076, 30.857238417741527 ], [ -95.427421069991311, 30.857106417223676 ], [ -95.426917070087725, 30.857036417026407 ], [ -95.426551069220451, 30.85703641754262 ], [ -95.426223069446863, 30.857108417552617 ], [ -95.425834069350046, 30.85720241696248 ], [ -95.425491069300691, 30.857305417348332 ], [ -95.425193068868353, 30.857465417197812 ], [ -95.424667068681472, 30.857791417318946 ], [ -95.424056069280326, 30.858329418093788 ], [ -95.423225068752217, 30.859063417495108 ], [ -95.42260706823626, 30.85953641777791 ], [ -95.422035068804433, 30.859992417784479 ], [ -95.421531068776119, 30.860240417947178 ], [ -95.420799067930872, 30.860477418374408 ], [ -95.420005067881661, 30.860656418068022 ], [ -95.419364067824702, 30.860769418125848 ], [ -95.41931306751691, 30.860772418398991 ], [ -95.419198067435858, 30.860779417904627 ], [ -95.419060067677037, 30.860787418235926 ], [ -95.418624067379952, 30.860812418563299 ], [ -95.417991067480756, 30.860713418007034 ], [ -95.41693806705446, 30.860498418398571 ], [ -95.41619006745448, 30.860368418425072 ], [ -95.415641066849105, 30.860313418297167 ], [ -95.415322066691687, 30.860315418610504 ], [ -95.414993066422909, 30.860318418538402 ], [ -95.414024066885844, 30.860301418135922 ], [ -95.413154066589485, 30.860267418775209 ], [ -95.412475066139052, 30.860063418816594 ], [ -95.411959065599675, 30.859794418687869 ], [ -95.411834066066731, 30.859729418804925 ], [ -95.411638066010127, 30.859589418365498 ], [ -95.411117065229107, 30.859218418379882 ], [ -95.4106070655275, 30.858858418621924 ], [ -95.410163065049105, 30.858545418140832 ], [ -95.409355065506475, 30.857905417695108 ], [ -95.407343064472329, 30.856311417744912 ], [ -95.406905064312596, 30.855956417719245 ], [ -95.405578064094954, 30.854881417817918 ], [ -95.405540064034597, 30.85484441787413 ], [ -95.404197064049498, 30.853704417849897 ], [ -95.403671063375725, 30.853210417065409 ], [ -95.403419063028224, 30.853061417244902 ], [ -95.401527063053422, 30.855586417999586 ], [ -95.401507062569692, 30.855613417990948 ], [ -95.399442062884603, 30.858272418629863 ], [ -95.398862062701681, 30.859019418807122 ], [ -95.398705062465766, 30.859227418545792 ], [ -95.398536062337342, 30.85944641926887 ], [ -95.398374062219546, 30.859644419132021 ], [ -95.398449062314768, 30.859939418605105 ], [ -95.398600062496001, 30.860445418941406 ], [ -95.398620062990489, 30.860535419243835 ], [ -95.398755062844742, 30.861125419396142 ], [ -95.398811062385732, 30.861370418995776 ], [ -95.39888506283215, 30.861774419068542 ], [ -95.399022062870685, 30.862512419795397 ], [ -95.399004063248938, 30.863835420087739 ], [ -95.398991063180702, 30.864656419940133 ], [ -95.398760062385847, 30.865955419743784 ], [ -95.398556062483792, 30.866640420172452 ], [ -95.398382063015447, 30.86718942078662 ], [ -95.397828062995046, 30.868263421063649 ], [ -95.397319062146266, 30.869104420551523 ], [ -95.396660062036901, 30.86992842124323 ], [ -95.396068062080104, 30.870648420815392 ], [ -95.395204061939651, 30.871482421582652 ], [ -95.394332061870855, 30.872347421237624 ], [ -95.393645061535651, 30.872891421762702 ], [ -95.392920061741322, 30.873433421462316 ], [ -95.392493061541771, 30.87378242216143 ], [ -95.39211306192098, 30.874146422213762 ], [ -95.391879061840612, 30.874551421780708 ], [ -95.391740061279108, 30.874861422282599 ], [ -95.391615061691226, 30.875155422096107 ], [ -95.391599061437205, 30.875193422001733 ], [ -95.391574061765994, 30.875970422656636 ], [ -95.391764062014786, 30.876682422515522 ], [ -95.392206062025608, 30.877394422288162 ], [ -95.393683061779356, 30.878381422408435 ], [ -95.394819062802654, 30.878834422661509 ], [ -95.394921062462728, 30.878875423172975 ], [ -95.395022062434975, 30.878915422638229 ], [ -95.395453062729644, 30.879087422465297 ], [ -95.396637062723187, 30.879345422639744 ], [ -95.396684062517195, 30.879357422677348 ], [ -95.396807062878125, 30.879388423307596 ], [ -95.396929063519963, 30.879418422871705 ], [ -95.397106063578846, 30.879463422646534 ], [ -95.397280062893316, 30.879507423086075 ], [ -95.397772063119703, 30.879631422676553 ], [ -95.39826506325754, 30.879756423191026 ], [ -95.398642063950632, 30.879851422839558 ], [ -95.399275063879443, 30.880138423089608 ], [ -95.399588063840923, 30.880665423341519 ], [ -95.399468063501274, 30.88135242320174 ], [ -95.399440063523812, 30.881512423649731 ], [ -95.39877006328291, 30.88226642379809 ], [ -95.398103063002722, 30.882698423844179 ], [ -95.397754063421473, 30.882907423807023 ], [ -95.397182062901521, 30.88324942322836 ], [ -95.396569063357731, 30.882986423753366 ], [ -95.396074062537608, 30.882773423396831 ], [ -95.395960062580741, 30.882671423799817 ], [ -95.394387062305938, 30.88126042372015 ], [ -95.39250006222305, 30.880069423163384 ], [ -95.391083061528079, 30.879640423304515 ], [ -95.388860061170433, 30.879095423366365 ], [ -95.388678060923112, 30.879050422937667 ], [ -95.387306060651255, 30.878821422891438 ], [ -95.386971060538912, 30.878765423256077 ], [ -95.386635060793338, 30.878709423200018 ], [ -95.38641006036147, 30.878672423567394 ], [ -95.386285060483331, 30.878680422859272 ], [ -95.385243060470643, 30.878745423119558 ], [ -95.384201060180899, 30.878809422971909 ], [ -95.383362059411866, 30.878861423222048 ], [ -95.381358058558192, 30.879308423586085 ], [ -95.380477059019114, 30.879919423195812 ], [ -95.38023905873591, 30.880084423821412 ], [ -95.380335059260759, 30.880875424024278 ], [ -95.380348058932867, 30.880943423931161 ], [ -95.380368058449392, 30.881034423913611 ], [ -95.3803900588792, 30.881132423395158 ], [ -95.380534058449399, 30.881780423956751 ], [ -95.380619059181669, 30.882259423959898 ], [ -95.380632058493191, 30.882326424118371 ], [ -95.380643059130492, 30.882392424494515 ], [ -95.380660059383771, 30.882495423870683 ], [ -95.380806059118399, 30.883340424420826 ], [ -95.380884059290935, 30.885532425006694 ], [ -95.380885059140468, 30.885642424790984 ], [ -95.380884059529663, 30.885676424675449 ], [ -95.380889059277663, 30.885890424367837 ], [ -95.380895059215447, 30.886139424607332 ], [ -95.380894059426197, 30.886241425268437 ], [ -95.381260059801178, 30.887067425364112 ], [ -95.381580059733238, 30.887254425396968 ], [ -95.382623059848399, 30.887862425232051 ], [ -95.383666059673288, 30.888470425491111 ], [ -95.384021060333936, 30.888677425556317 ], [ -95.384412060251051, 30.888802425664913 ], [ -95.384464060082706, 30.888819425098244 ], [ -95.384476060015132, 30.888823425213491 ], [ -95.384966060479456, 30.888982425377364 ], [ -95.385468060642893, 30.889144424997014 ], [ -95.385913061043908, 30.889287425720052 ], [ -95.386971060663782, 30.889184425018797 ], [ -95.387263061251332, 30.889155425266832 ], [ -95.388411061513551, 30.889045425369325 ], [ -95.389197061182699, 30.88913042542876 ], [ -95.389531061694342, 30.889166425071657 ], [ -95.390663062033653, 30.889677424981226 ], [ -95.39088506205016, 30.889787425583588 ], [ -95.390919061979901, 30.889793425459359 ], [ -95.392408061951471, 30.890452425518884 ], [ -95.394850063022801, 30.891220425540286 ], [ -95.395185062835154, 30.89129542504546 ], [ -95.395520063280543, 30.891369424992288 ], [ -95.395860063536659, 30.891444424929812 ], [ -95.396200063028502, 30.891520425414758 ], [ -95.39811506445632, 30.891944425516801 ], [ -95.399702064258634, 30.892900425035659 ], [ -95.400925064840976, 30.89410142556185 ], [ -95.401017064485231, 30.894214425312818 ], [ -95.401038064830132, 30.894218425567999 ], [ -95.401145064838872, 30.894330425926405 ], [ -95.401259065358602, 30.894448425743704 ], [ -95.401723064690046, 30.894931425471583 ], [ -95.402185065392828, 30.895410425924233 ], [ -95.40245906484418, 30.895694426264104 ], [ -95.402730065693092, 30.895975426001126 ], [ -95.402824065714924, 30.896073426110174 ], [ -95.40377606559457, 30.897061426174645 ], [ -95.404551065941277, 30.897866426621498 ], [ -95.404744066264428, 30.898067426436363 ], [ -95.405353066090527, 30.89942242624744 ], [ -95.405810066116857, 30.900439426681867 ], [ -95.405901066531271, 30.900642427040264 ], [ -95.406248066189775, 30.9014124266015 ], [ -95.406530066739734, 30.90387442752607 ], [ -95.406552066800401, 30.904063427648968 ], [ -95.406392066791213, 30.904807427535921 ], [ -95.406259066922871, 30.905425427951908 ], [ -95.406250067027941, 30.905844427654756 ], [ -95.406328067076998, 30.905985427888915 ], [ -95.406508066651838, 30.906166427690216 ], [ -95.406902066624696, 30.906366428130916 ], [ -95.407416067279328, 30.906479428200761 ], [ -95.408597067157316, 30.906579427844701 ], [ -95.411456068525098, 30.906536428029728 ], [ -95.412119068534054, 30.906513427540624 ], [ -95.41278106888106, 30.906491427664047 ], [ -95.412915068049273, 30.906486428154448 ], [ -95.413001068165855, 30.90651242800315 ], [ -95.413478069016008, 30.906655427775931 ], [ -95.413955069064215, 30.906798427605541 ], [ -95.414006068864154, 30.90681342734613 ], [ -95.414649068446607, 30.907006427343198 ], [ -95.415100068880733, 30.907457427978727 ], [ -95.415305069464225, 30.907662427622043 ], [ -95.415511069020653, 30.907867428054391 ], [ -95.415497069307065, 30.908042427642691 ], [ -95.415483069393559, 30.908210428081713 ], [ -95.415446068783552, 30.908655427975994 ], [ -95.4152680693891, 30.909226428409585 ], [ -95.415160069605264, 30.90957742835581 ], [ -95.414108069493992, 30.91007942811007 ], [ -95.412401068901787, 30.91077842879201 ], [ -95.411274067808392, 30.911538429163368 ], [ -95.411229068386135, 30.911586428693049 ], [ -95.411202068721522, 30.911614428710298 ], [ -95.411196068614331, 30.911709429207605 ], [ -95.411165067959885, 30.91180742906484 ], [ -95.411037068420541, 30.912209428812265 ], [ -95.410909068218004, 30.91263442942677 ], [ -95.410911067933256, 30.913001428722804 ], [ -95.410917068396245, 30.913238429589832 ], [ -95.410921068396036, 30.91335942934602 ], [ -95.410934068258797, 30.913740429141882 ], [ -95.413049068785639, 30.916391429408236 ], [ -95.413238068595817, 30.916725430126657 ], [ -95.413336068680536, 30.916897429415542 ], [ -95.413649069387361, 30.917446430110449 ], [ -95.413853069304182, 30.917803430376598 ], [ -95.413962069321528, 30.917993429655407 ], [ -95.414002069737364, 30.918063429942823 ], [ -95.414019069858441, 30.919379430499433 ], [ -95.413235068849758, 30.921368430303389 ], [ -95.412208069645715, 30.923316431270401 ], [ -95.410887069207661, 30.926306432203912 ], [ -95.410717068509754, 30.926634432212548 ], [ -95.410690069178045, 30.92668643155843 ], [ -95.410333068627125, 30.927161431861229 ], [ -95.410171068646548, 30.927511432109512 ], [ -95.41008406908901, 30.927700432013133 ], [ -95.410037069108967, 30.928482432332071 ], [ -95.410073068714951, 30.928732432282548 ], [ -95.410056069387494, 30.928889431887164 ], [ -95.410094068672265, 30.929264432630735 ], [ -95.41042006953154, 30.929748432186166 ], [ -95.410832069413331, 30.930358432928816 ], [ -95.411451069490298, 30.930964432912674 ], [ -95.412758070195707, 30.932014432409247 ], [ -95.413121069728902, 30.932341432989286 ], [ -95.413254069789929, 30.932430432564118 ], [ -95.414999070545321, 30.933596432910257 ], [ -95.417168071046589, 30.934662433358689 ], [ -95.417448070546158, 30.93479943290696 ], [ -95.419517071551113, 30.935732433624938 ], [ -95.421081072023412, 30.936438433624151 ], [ -95.424851073534938, 30.937350433729176 ], [ -95.426421073601801, 30.937376433171142 ], [ -95.428280073926871, 30.93752643371327 ], [ -95.42890807400569, 30.937577433085497 ], [ -95.430846074505155, 30.937291433030673 ], [ -95.432680074995176, 30.937149432878307 ], [ -95.4333650752111, 30.937257433354254 ], [ -95.433853075257474, 30.937333433261077 ], [ -95.43434207570327, 30.937410432924001 ], [ -95.434344075813442, 30.93758543330722 ], [ -95.434346075962395, 30.937760432769387 ], [ -95.434349075555389, 30.938017433244134 ], [ -95.434352075163687, 30.938274433676305 ], [ -95.434351075855702, 30.938758433161425 ], [ -95.43436207511968, 30.939047433152311 ], [ -95.434365076012398, 30.939120433571844 ], [ -95.434372075281871, 30.939307433080696 ], [ -95.434376075927801, 30.939417433855649 ], [ -95.434379076120678, 30.939471433867507 ], [ -95.434382075675558, 30.939527433947045 ], [ -95.434386075968462, 30.939635433707785 ], [ -95.434387075781615, 30.939662433639938 ], [ -95.434389075259389, 30.939705433475648 ], [ -95.43439207572213, 30.939750433547236 ], [ -95.434395075558299, 30.939838433196297 ], [ -95.434400076003527, 30.939949433643243 ], [ -95.434404075304201, 30.940052433583624 ], [ -95.434404076079218, 30.940066433302235 ], [ -95.434379075466623, 30.940366433976891 ], [ -95.434431076113981, 30.940936434032324 ], [ -95.434424076105458, 30.941156433432301 ], [ -95.434412075436626, 30.941562433653385 ], [ -95.434404076197211, 30.941738433729345 ], [ -95.434401076254147, 30.94186043394155 ], [ -95.434398076036729, 30.942191434256035 ], [ -95.434397075681048, 30.942264433993209 ], [ -95.43439107626719, 30.942721434551615 ], [ -95.434382075767601, 30.94356743463878 ], [ -95.434382075485814, 30.943771434785727 ], [ -95.434382075335407, 30.943914434701494 ], [ -95.43438007617884, 30.944222434257846 ], [ -95.434378075963167, 30.944412434413529 ], [ -95.434378075779833, 30.949656435400033 ], [ -95.434378076519423, 30.949670435932966 ], [ -95.434378076294081, 30.949823435666421 ], [ -95.434406076740402, 30.956713436569935 ], [ -95.434407076929901, 30.95707543744388 ], [ -95.434412076091874, 30.95818743695709 ], [ -95.434412076487476, 30.958266437169375 ], [ -95.434415077118018, 30.959064437780981 ], [ -95.434430077027741, 30.964334438178746 ], [ -95.434455077446103, 30.972638439845369 ], [ -95.434468077704821, 30.977122440834599 ], [ -95.434484077718011, 30.982300442414697 ], [ -95.43448507828225, 30.982662441730788 ], [ -95.434485078309962, 30.982734441913603 ], [ -95.434486077470879, 30.982807441747294 ], [ -95.434487078364924, 30.983299441960341 ], [ -95.43449007836827, 30.984300442662221 ], [ -95.434490077675761, 30.984394442152979 ], [ -95.434502077750935, 30.988350442958485 ], [ -95.434502078161998, 30.988388443399199 ], [ -95.43450207845504, 30.988410443655372 ], [ -95.434499077876978, 30.988469443519204 ], [ -95.434498077895356, 30.988505442910501 ], [ -95.434511078631019, 30.991164443464111 ], [ -95.434526078790697, 30.994863444471267 ], [ -95.434528078289574, 30.995070444761353 ], [ -95.434533078656784, 30.995531444357376 ], [ -95.434558078639171, 30.998014445550535 ], [ -95.434559078652285, 30.998080445080209 ], [ -95.434562078619763, 30.998237445710409 ], [ -95.434562078421848, 30.99832344521047 ], [ -95.434563078638391, 30.99838544561527 ], [ -95.434564078168009, 30.998674445679139 ], [ -95.43456607838408, 30.998684445044209 ], [ -95.434570078443627, 30.999025445610595 ], [ -95.434571078541126, 30.999158445828417 ], [ -95.434572078493886, 30.999285445104089 ], [ -95.43457107881666, 30.999318445589267 ], [ -95.434572078980409, 30.999400445129137 ], [ -95.434573078575966, 30.999464445480687 ], [ -95.434575078478161, 30.999534445969132 ], [ -95.434576078668854, 30.999657445203773 ], [ -95.434577078628607, 30.999733445599073 ], [ -95.434580078261831, 30.99998044547068 ], [ -95.434595078554963, 31.004033446755681 ], [ -95.434595078481436, 31.004493446197717 ], [ -95.434596078561285, 31.004513446318345 ], [ -95.434620079119, 31.011069447394387 ], [ -95.43462007967959, 31.011123448105593 ], [ -95.434631079023859, 31.014399448448014 ], [ -95.434661080026217, 31.023242450157834 ], [ -95.43466608024336, 31.024752450802332 ], [ -95.434654079489277, 31.02510345084422 ], [ -95.434643080015391, 31.025121450412538 ], [ -95.434643079670892, 31.025145450988454 ], [ -95.434642080136769, 31.030196451760194 ], [ -95.43463908090132, 31.033817452284794 ], [ -95.434640080541158, 31.033982452377128 ], [ -95.434703080490166, 31.043919454197397 ], [ -95.434718081169578, 31.046635454937448 ], [ -95.434744081041799, 31.053846456502022 ], [ -95.434748081600432, 31.054275456794556 ], [ -95.434788082006364, 31.058103457412159 ], [ -95.435716081683253, 31.057471456791557 ], [ -95.438500082388103, 31.055578456274674 ], [ -95.439359082733517, 31.054995456760395 ], [ -95.43942808299073, 31.054947456130016 ], [ -95.439491082472571, 31.054900456418217 ], [ -95.444718083744888, 31.051233455812948 ], [ -95.44523508445711, 31.050869455709211 ], [ -95.446788084496106, 31.04977945525485 ], [ -95.447306084549709, 31.049416454923172 ], [ -95.447646084340448, 31.049177455163875 ], [ -95.44866708462088, 31.048459454907615 ], [ -95.449008085076485, 31.048221454886711 ], [ -95.451204085187214, 31.046680454100315 ], [ -95.456811086923139, 31.042744453085216 ], [ -95.457403086623486, 31.042328453012409 ], [ -95.457772087277675, 31.042068453223589 ], [ -95.458881087533669, 31.041289452588916 ], [ -95.459251086642837, 31.041030452705158 ], [ -95.462157087790018, 31.038991452651715 ], [ -95.464640088017546, 31.037248451878831 ], [ -95.468954089117915, 31.034220451610317 ], [ -95.474820090500671, 31.030103450484877 ], [ -95.475842091263914, 31.029347449678301 ], [ -95.475970090725752, 31.029258449838107 ], [ -95.476100090615162, 31.029167449531506 ], [ -95.477169091548618, 31.028422450019715 ], [ -95.477283090722537, 31.028342449428774 ], [ -95.485438092402489, 31.02265244857734 ], [ -95.493277094941121, 31.017182447242767 ], [ -95.493411095061333, 31.01708544640416 ], [ -95.496445095624878, 31.014973445933496 ], [ -95.498851095830162, 31.013404446249606 ], [ -95.500227096056904, 31.012508445791536 ], [ -95.50433909737886, 31.009625444566666 ], [ -95.505444097360026, 31.008856444694569 ], [ -95.508762098501848, 31.006548443767205 ], [ -95.509868097807711, 31.005780444109803 ], [ -95.512622098716534, 31.003854443534312 ], [ -95.517156099910352, 31.000682442828033 ], [ -95.517798100273865, 31.000189442468731 ], [ -95.519864100317534, 30.998792441914613 ], [ -95.525106102039857, 30.995139441012615 ], [ -95.525506102253658, 30.994863441162536 ], [ -95.525936101604756, 30.994565440713377 ], [ -95.52914510251982, 30.992347440386876 ], [ -95.529325102693988, 30.99222244083203 ], [ -95.529865102836766, 30.991849440701493 ], [ -95.530046102412513, 30.991725440023608 ], [ -95.536716104501465, 30.987120439612525 ], [ -95.536871104597083, 30.987011439580208 ], [ -95.537024104578052, 30.986903439288067 ], [ -95.537906105026224, 30.986291438791476 ], [ -95.537919104784521, 30.986286438979008 ], [ -95.538352104811153, 30.985983438568951 ], [ -95.538814104924185, 30.985656438837673 ], [ -95.539215104515108, 30.985394438517041 ], [ -95.539757105198603, 30.9850104391146 ], [ -95.54058410529376, 30.984475438212147 ], [ -95.541681105149337, 30.983707438284259 ], [ -95.544640105907064, 30.981637437979387 ], [ -95.545249106172648, 30.98121043768959 ], [ -95.547076106590154, 30.979932437138011 ], [ -95.547686106190795, 30.979507436931673 ], [ -95.549705106634107, 30.978095436675229 ], [ -95.550227106981481, 30.977730436713266 ], [ -95.556287108765702, 30.973494435772128 ], [ -95.558032108911945, 30.972275435307463 ], [ -95.5593611088199, 30.971345434950422 ], [ -95.559686109735836, 30.971118434820074 ], [ -95.560011109156832, 30.970891434779126 ], [ -95.565579110627411, 30.966998433869737 ], [ -95.566165110568377, 30.966587434382337 ], [ -95.56792711102176, 30.965357434022035 ], [ -95.568514111634954, 30.964947433953469 ], [ -95.578224113498464, 30.958167432163922 ], [ -95.578245113783964, 30.958152431917298 ], [ -95.578421112963952, 30.958028432166923 ], [ -95.578605114007019, 30.957898431947768 ], [ -95.579689114088495, 30.957133432004547 ], [ -95.581049114488167, 30.956183431699724 ], [ -95.581650114030424, 30.955762431560121 ], [ -95.583455114971002, 30.954501431375533 ], [ -95.583925114864002, 30.954173431020369 ], [ -95.584057114238959, 30.954081430909202 ], [ -95.5841821148272, 30.953989431263423 ], [ -95.586567115138166, 30.952326430372814 ], [ -95.591133115976788, 30.94913542942685 ], [ -95.596089117773417, 30.945664428388554 ], [ -95.59610311762431, 30.945661428320879 ], [ -95.596969117827911, 30.945055429032383 ], [ -95.599569118603569, 30.943238427987747 ], [ -95.600436118603454, 30.942633427669225 ], [ -95.604575119331557, 30.939730427675489 ], [ -95.604589119580069, 30.939730427208051 ], [ -95.604921119842189, 30.939497426760965 ], [ -95.616950122510104, 30.93108842512687 ], [ -95.616963122112395, 30.931088424614728 ], [ -95.617004122449544, 30.931052425100347 ], [ -95.617292122241111, 30.930845424716143 ], [ -95.617627122243789, 30.930604424803253 ], [ -95.617754122481301, 30.930513424805248 ], [ -95.617879122572134, 30.930423424882218 ], [ -95.61815912183566, 30.929639425014049 ], [ -95.618194122559345, 30.929542424654805 ], [ -95.618375121880121, 30.928574424822823 ], [ -95.618500122705996, 30.927823424065636 ], [ -95.618726122634769, 30.92739642451458 ], [ -95.619271122360956, 30.926898423686868 ], [ -95.619926122645907, 30.926674423654248 ], [ -95.6205251224861, 30.926620424111874 ], [ -95.62132012264145, 30.926412423753025 ], [ -95.621802123486106, 30.926168424144063 ], [ -95.621826123013776, 30.92615642378145 ], [ -95.621838122987697, 30.926071424169141 ], [ -95.621865122598592, 30.925881423779231 ], [ -95.621923123481935, 30.925413423853467 ], [ -95.621895122658259, 30.925277424003802 ], [ -95.621859123195449, 30.92509842360792 ], [ -95.621626123077291, 30.924838423555045 ], [ -95.62081412258199, 30.924610423677848 ], [ -95.620160122930073, 30.924575423888186 ], [ -95.619908122322244, 30.924461423412097 ], [ -95.619628122795177, 30.924290423826051 ], [ -95.619341121901357, 30.923668423519523 ], [ -95.619008122426706, 30.922931423581236 ], [ -95.618729122183737, 30.922543423065768 ], [ -95.618620121989025, 30.922493423126863 ], [ -95.618066121478577, 30.922242423605006 ], [ -95.61758912190588, 30.922170423444637 ], [ -95.617188121370916, 30.922109423389706 ], [ -95.616768121356927, 30.921987423532297 ], [ -95.616283121320606, 30.92166242313645 ], [ -95.614438120412714, 30.920396422891777 ], [ -95.613507120416926, 30.919633422666383 ], [ -95.613065120046684, 30.919277422713517 ], [ -95.612287120181293, 30.918651422894012 ], [ -95.611941119670306, 30.918263422352243 ], [ -95.611932119558702, 30.918249422865081 ], [ -95.611897119584683, 30.917988422665672 ], [ -95.611992119951807, 30.917641422507536 ], [ -95.612376119906642, 30.917327422122131 ], [ -95.612854120669439, 30.917216422341181 ], [ -95.613574120309337, 30.917194422417289 ], [ -95.614161120162549, 30.917455422603137 ], [ -95.614694121034631, 30.917553422116065 ], [ -95.615040120541934, 30.917514422031022 ], [ -95.615312120834787, 30.91713642277092 ], [ -95.615632120754213, 30.916765422450393 ], [ -95.615849121332971, 30.916217422212018 ], [ -95.615921121371514, 30.915775421953111 ], [ -95.61592612062833, 30.915741421795076 ], [ -95.615788120971771, 30.915239422314663 ], [ -95.615214121006446, 30.915036421835065 ], [ -95.614799120966509, 30.914889422180789 ], [ -95.61418212077011, 30.914895422340418 ], [ -95.613809120782477, 30.914570422059761 ], [ -95.613811120592644, 30.914279421544364 ], [ -95.613943120879767, 30.913828421733346 ], [ -95.614115120057605, 30.912996421227039 ], [ -95.614435119986993, 30.912489421864784 ], [ -95.614933120975692, 30.911998421582133 ], [ -95.615183120616479, 30.911833420958779 ], [ -95.615420120519275, 30.911676421200152 ], [ -95.615796120780459, 30.91125042139959 ], [ -95.616059120759417, 30.911008420823993 ], [ -95.616240120598704, 30.910201421122924 ], [ -95.616593120707137, 30.910204420584282 ], [ -95.617099120860502, 30.910325421111381 ], [ -95.617555120874286, 30.910892420614051 ], [ -95.6176471211039, 30.911037421237079 ], [ -95.617926120854108, 30.911475421225642 ], [ -95.618171121078618, 30.911791421506862 ], [ -95.618185121341696, 30.912211421178988 ], [ -95.618196121336126, 30.912416420968697 ], [ -95.61820212096994, 30.912542421685099 ], [ -95.618350121131101, 30.912995421360268 ], [ -95.618563121137768, 30.913440421227605 ], [ -95.618935121385874, 30.913724421277173 ], [ -95.619290121579127, 30.913709421543079 ], [ -95.619664121543934, 30.913759421262835 ], [ -95.620590122024907, 30.913681421049564 ], [ -95.62102312175854, 30.913654421763319 ], [ -95.621457122563655, 30.913627421683938 ], [ -95.621430121743188, 30.913395421782038 ], [ -95.621423122024268, 30.913329421572413 ], [ -95.621285122248736, 30.91295742106081 ], [ -95.621137121916007, 30.912496421186521 ], [ -95.621158121797663, 30.911955420776888 ], [ -95.62120412234259, 30.911923420836974 ], [ -95.621402121874652, 30.911786420878048 ], [ -95.621646122652024, 30.911601421244804 ], [ -95.622487122861912, 30.911692420741108 ], [ -95.622673122972117, 30.911823421344813 ], [ -95.623295122753944, 30.911885420907012 ], [ -95.623931122424963, 30.911848420715422 ], [ -95.624084123135262, 30.911406420743546 ], [ -95.624386122455462, 30.911126420491634 ], [ -95.62465012332612, 30.910723420664528 ], [ -95.624885123379926, 30.910320421048404 ], [ -95.625229122855529, 30.909765420754162 ], [ -95.625720122756746, 30.909597420768677 ], [ -95.62586812285997, 30.909478420752954 ], [ -95.6263541231678, 30.909505420833923 ], [ -95.626996123912249, 30.910016420749628 ], [ -95.627330123562331, 30.910725420455634 ], [ -95.627482123742638, 30.910739420268026 ], [ -95.62799412327044, 30.910442420810057 ], [ -95.628068124307461, 30.910338420214998 ], [ -95.628207123581475, 30.910157420463491 ], [ -95.628214124255422, 30.910127420042031 ], [ -95.628390123806454, 30.909782420522216 ], [ -95.628673123803281, 30.909429420571612 ], [ -95.629352124139857, 30.909267420379898 ], [ -95.62948012440738, 30.90890742000801 ], [ -95.629563124242182, 30.90870442034009 ], [ -95.629614124495632, 30.908578419702859 ], [ -95.62955912419956, 30.908458420424783 ], [ -95.629354124016672, 30.908012420143969 ], [ -95.629224123485258, 30.907603420080346 ], [ -95.629137123578047, 30.907409419670579 ], [ -95.629038124131611, 30.907130419581247 ], [ -95.629003124101914, 30.907031419925474 ], [ -95.628999124277058, 30.906881420220405 ], [ -95.628996123650211, 30.906781419921909 ], [ -95.62903912415355, 30.906657419874339 ], [ -95.629034123772627, 30.906598419627613 ], [ -95.629222124216042, 30.906422419411715 ], [ -95.629429123884606, 30.906229419589547 ], [ -95.629788124016983, 30.905957419544688 ], [ -95.629827123679291, 30.905921419443946 ], [ -95.629810123628616, 30.905862419564134 ], [ -95.629714123677047, 30.905525419385256 ], [ -95.629669124213208, 30.905028419431062 ], [ -95.6294961235009, 30.904374419084327 ], [ -95.629675124170959, 30.903995418867162 ], [ -95.629768123574806, 30.903732418926886 ], [ -95.629695123449281, 30.903587419363465 ], [ -95.629623123720691, 30.903442419349297 ], [ -95.629613124155924, 30.903422419442805 ], [ -95.629521123387832, 30.903411418815782 ], [ -95.629407123881208, 30.903397419265662 ], [ -95.629292124249986, 30.903383419113997 ], [ -95.628778124121311, 30.90333041865814 ], [ -95.628534123984977, 30.90330741871119 ], [ -95.627942122958984, 30.903001419299279 ], [ -95.627897123107857, 30.902848419287068 ], [ -95.627898123430867, 30.902517418909738 ], [ -95.627902123118176, 30.902486419045655 ], [ -95.627933123842965, 30.902247418485906 ], [ -95.628072123247406, 30.902148418793391 ], [ -95.628231122978633, 30.902125418808104 ], [ -95.62853412306373, 30.90208241840508 ], [ -95.628546123623821, 30.902074418955067 ], [ -95.628922123776306, 30.901809419176335 ], [ -95.628958123148593, 30.901783418823101 ], [ -95.629006124006111, 30.901748418523784 ], [ -95.629031123981946, 30.901680419077213 ], [ -95.629215123189155, 30.90117741820994 ], [ -95.629228123279759, 30.901135418566607 ], [ -95.629492123241064, 30.90037641836679 ], [ -95.629604123390493, 30.900089418070827 ], [ -95.629752123264325, 30.899963418383283 ], [ -95.629782124046429, 30.899937418450417 ], [ -95.630082124058205, 30.899842418539919 ], [ -95.63047412407947, 30.899941418398694 ], [ -95.631353123756696, 30.900727418490945 ], [ -95.631381124316661, 30.900737418794691 ], [ -95.631709124338101, 30.900860418434647 ], [ -95.631770124403062, 30.900882418607974 ], [ -95.631818124570884, 30.900813418506623 ], [ -95.631925124196073, 30.900660418313834 ], [ -95.632088124593665, 30.900426418775439 ], [ -95.632129124047609, 30.900381418304654 ], [ -95.632367124686454, 30.900120418399634 ], [ -95.632401124407011, 30.899709418596732 ], [ -95.632505123968713, 30.899492417967505 ], [ -95.632758124571168, 30.899324418558638 ], [ -95.633122124200639, 30.899358418305276 ], [ -95.634400124945316, 30.900432418233567 ], [ -95.634441124652923, 30.90046641802876 ], [ -95.634637124897679, 30.900631418449798 ], [ -95.634834124899243, 30.900796418107785 ], [ -95.634950125196895, 30.901128418634606 ], [ -95.635337125350489, 30.901406418792845 ], [ -95.63578212553071, 30.901382418384163 ], [ -95.636007125452139, 30.901338418683547 ], [ -95.636021125915477, 30.901323418019373 ], [ -95.636053125880991, 30.901289418406527 ], [ -95.636183125660381, 30.901151418038999 ], [ -95.636294125287748, 30.900802418521192 ], [ -95.636303125351716, 30.900782418634847 ], [ -95.636563125827706, 30.900177418432584 ], [ -95.636567125352244, 30.900168417806988 ], [ -95.636572125681028, 30.900156418049757 ], [ -95.636577125094917, 30.900145417835621 ], [ -95.636581125632219, 30.900136418136775 ], [ -95.636588125768824, 30.900120418300862 ], [ -95.636605125633082, 30.900081418490096 ], [ -95.636624125322399, 30.900038417696212 ], [ -95.636781125583283, 30.899841418334788 ], [ -95.636974125724706, 30.89951341767495 ], [ -95.637017125822311, 30.899441417552783 ], [ -95.637170125301921, 30.899417417587131 ], [ -95.637431125270723, 30.899376417668964 ], [ -95.637814125772294, 30.89947641796223 ], [ -95.638025125293765, 30.899610418196406 ], [ -95.638049125897027, 30.89961441797298 ], [ -95.638262126120367, 30.89973941810139 ], [ -95.638498126400449, 30.900160418410042 ], [ -95.638504125608861, 30.900171418024804 ], [ -95.638523126472663, 30.900204418283771 ], [ -95.638585126299503, 30.90031541773099 ], [ -95.639172126422295, 30.9008594184807 ], [ -95.639446126265241, 30.900670417850183 ], [ -95.639649126664011, 30.900369418003059 ], [ -95.63968712620796, 30.900245417726236 ], [ -95.639698126574174, 30.900209418223138 ], [ -95.639734125775647, 30.900184418235963 ], [ -95.639743126129119, 30.90017841836827 ], [ -95.639899126492523, 30.900078418084117 ], [ -95.639918126420753, 30.90007441796039 ], [ -95.639948126635431, 30.900055418200875 ], [ -95.639959126484655, 30.900037418055625 ], [ -95.640073126407401, 30.899954417617778 ], [ -95.640355126523119, 30.899936418189622 ], [ -95.640362126351306, 30.899949418188204 ], [ -95.640579126908193, 30.899924418323476 ], [ -95.640798126396845, 30.899911418216387 ], [ -95.640935127015297, 30.899903417540411 ], [ -95.640995126306535, 30.899900417662291 ], [ -95.641012126350972, 30.899899417958782 ], [ -95.641054126341771, 30.899896417795016 ], [ -95.641123126694225, 30.899892417554259 ], [ -95.641231126744842, 30.899886418079529 ], [ -95.64210612667226, 30.899908417577464 ], [ -95.643528126808107, 30.900122417448944 ], [ -95.643560126883969, 30.90012741807077 ], [ -95.644181127036831, 30.899468417315823 ], [ -95.644218127844013, 30.899393417610103 ], [ -95.644215127767708, 30.899373417918682 ], [ -95.644285127331187, 30.899178417489274 ], [ -95.644633127859066, 30.898690417689583 ], [ -95.64488012789198, 30.898229417434756 ], [ -95.645231127868044, 30.897865417356243 ], [ -95.645574128014445, 30.897549417693178 ], [ -95.646020127495433, 30.897336416984011 ], [ -95.646765128143215, 30.897039417517799 ], [ -95.647117128509549, 30.897014417237457 ], [ -95.647357128078141, 30.89699741714427 ], [ -95.648278128197148, 30.897483417294932 ], [ -95.648332128373909, 30.897512417070807 ], [ -95.648848128966122, 30.897294416752047 ], [ -95.648911128474566, 30.897268417284298 ], [ -95.648970128838499, 30.897243416843018 ], [ -95.649064128193103, 30.897012417450526 ], [ -95.649069128738049, 30.896986417029179 ], [ -95.649093128345029, 30.896922417350613 ], [ -95.649339128098518, 30.896181416728265 ], [ -95.649349128840214, 30.896163417299746 ], [ -95.64934912905693, 30.896151417106449 ], [ -95.649371128530504, 30.895866417015686 ], [ -95.649347128767104, 30.895546416626608 ], [ -95.649332128274494, 30.89533541625563 ], [ -95.64960912839409, 30.89523241676579 ], [ -95.650502128871437, 30.894892416583396 ], [ -95.651265128795004, 30.894462416067903 ], [ -95.651978128909576, 30.894354416237164 ], [ -95.652183128959507, 30.894403416038134 ], [ -95.65243312946447, 30.89446341674665 ], [ -95.652805129854784, 30.894464416239678 ], [ -95.653138129345379, 30.894068416417184 ], [ -95.65349712911312, 30.893562416020167 ], [ -95.653797129580056, 30.893422416303348 ], [ -95.653971129494224, 30.893341416522755 ], [ -95.654508130067654, 30.89324541641512 ], [ -95.655235129489569, 30.893298416320587 ], [ -95.655700130534726, 30.893432416298211 ], [ -95.656094129628073, 30.893491416406832 ], [ -95.656280129899557, 30.893809416301146 ], [ -95.656309130549033, 30.894172416167738 ], [ -95.656282129816191, 30.894621416440128 ], [ -95.65610113047957, 30.894794416648388 ], [ -95.655593130361012, 30.894881416210151 ], [ -95.655192130254392, 30.894914416781994 ], [ -95.655040129778641, 30.895104416342843 ], [ -95.654937130087674, 30.895239416324731 ], [ -95.65474712980803, 30.895490416718619 ], [ -95.654599130339221, 30.895840416824399 ], [ -95.654768129754203, 30.896260416273471 ], [ -95.65494212961174, 30.896518416337518 ], [ -95.655172130340929, 30.896674416811216 ], [ -95.65552412971077, 30.896642416762109 ], [ -95.655833130015552, 30.896475416398268 ], [ -95.656330130632938, 30.896338416273679 ], [ -95.656789130033744, 30.896269416521076 ], [ -95.657096130306229, 30.896364416546277 ], [ -95.657232130354444, 30.896674416437794 ], [ -95.657241130883421, 30.897004416595077 ], [ -95.657386131100083, 30.897272416466571 ], [ -95.657671131126193, 30.897433416641139 ], [ -95.658183130990238, 30.897182417093063 ], [ -95.658688131393191, 30.897045417013413 ], [ -95.659252131271387, 30.896994416677199 ], [ -95.660046131208517, 30.896666416798919 ], [ -95.660736131192664, 30.896671416143153 ], [ -95.661167131174125, 30.896750416753434 ], [ -95.66144513184102, 30.896969416856038 ], [ -95.661570131684527, 30.897395416797561 ], [ -95.66162513154643, 30.898174417226002 ], [ -95.661080132041334, 30.898507417163305 ], [ -95.660574131683163, 30.898605416804241 ], [ -95.660005130918577, 30.898481416957448 ], [ -95.65960513171072, 30.898304416739705 ], [ -95.659324130685576, 30.898298417176914 ], [ -95.659356131666073, 30.898351416510394 ], [ -95.659385130774282, 30.898628416866835 ], [ -95.659524130992295, 30.899048416867185 ], [ -95.659915131202993, 30.899370416892104 ], [ -95.660507131124078, 30.899682417250041 ], [ -95.660837131850585, 30.899995417020353 ], [ -95.660954131587246, 30.9005054172504 ], [ -95.661020131679521, 30.90102741717163 ], [ -95.661184131518581, 30.901243417359201 ], [ -95.66144513227843, 30.901458417364836 ], [ -95.66167113224374, 30.901542417527807 ], [ -95.661865132335578, 30.901533417456736 ], [ -95.662113132252273, 30.901491417758162 ], [ -95.662408132339678, 30.901412417204625 ], [ -95.662705132713484, 30.902274418013604 ], [ -95.663090132108536, 30.902821417624114 ], [ -95.663609132266373, 30.903799418149664 ], [ -95.663818132333859, 30.904124418015456 ], [ -95.664142132368966, 30.90420141754846 ], [ -95.66439313271843, 30.904081418257555 ], [ -95.664586133062713, 30.903810418201662 ], [ -95.66466513294661, 30.903390417612375 ], [ -95.664937133053499, 30.903102417369624 ], [ -95.665176132763932, 30.902971417718604 ], [ -95.665490133274744, 30.902928418013619 ], [ -95.66571513301453, 30.902929417938843 ], [ -95.666023133202401, 30.9031164174739 ], [ -95.666176133442377, 30.903385417448405 ], [ -95.666177133649498, 30.904055417401164 ], [ -95.666138133189918, 30.904422417884952 ], [ -95.666159132844541, 30.904741418206644 ], [ -95.66627913368572, 30.905014418298443 ], [ -95.666391132958751, 30.905052417946184 ], [ -95.666742133211812, 30.905021418341065 ], [ -95.667338133236839, 30.904841417509441 ], [ -95.668855133947162, 30.904172417361426 ], [ -95.670519134738157, 30.903491417809466 ], [ -95.671185134541275, 30.903310417263974 ], [ -95.671388134707087, 30.903298417415481 ], [ -95.671602135052495, 30.903357417570334 ], [ -95.67187613468252, 30.903543417282069 ], [ -95.672163134345979, 30.903896417578544 ], [ -95.672561135120503, 30.904558418030696 ], [ -95.673119135078068, 30.905025417897757 ], [ -95.674008135824337, 30.905389417372771 ], [ -95.674787135890028, 30.90562041770535 ], [ -95.675876136035555, 30.905877417698239 ], [ -95.67731613662319, 30.906102417443545 ], [ -95.677937136041649, 30.906145417720676 ], [ -95.67862213654989, 30.906004417990289 ], [ -95.680479136706097, 30.905255417925435 ], [ -95.681589136832557, 30.904921417354558 ], [ -95.681894137128992, 30.904923417178718 ], [ -95.682073137876472, 30.905031416989225 ], [ -95.682142137124885, 30.905205417082701 ], [ -95.68215613735083, 30.905372417761868 ], [ -95.682150137103989, 30.905811417770117 ], [ -95.682344137867631, 30.9061184178865 ], [ -95.682483137625695, 30.906147417374896 ], [ -95.682714137904753, 30.906134417521052 ], [ -95.68294113750531, 30.905978417888683 ], [ -95.683367137740817, 30.905682417387961 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1489, "Tract": "48471790102", "Area_SqMi": 36.340548446185664, "total_2009": 398, "total_2010": 355, "total_2011": 657, "total_2012": 309, "total_2013": 310, "total_2014": 321, "total_2015": 357, "total_2016": 326, "total_2017": 350, "total_2018": 319, "total_2019": 359, "total_2020": 305, "age1": 99, "age2": 149, "age3": 77, "earn1": 105, "earn2": 107, "earn3": 113, "naics_s01": 19, "naics_s02": 2, "naics_s03": 7, "naics_s04": 15, "naics_s05": 14, "naics_s06": 0, "naics_s07": 37, "naics_s08": 1, "naics_s09": 0, "naics_s10": 5, "naics_s11": 12, "naics_s12": 4, "naics_s13": 0, "naics_s14": 17, "naics_s15": 66, "naics_s16": 16, "naics_s17": 0, "naics_s18": 38, "naics_s19": 47, "naics_s20": 25, "race1": 246, "race2": 56, "race3": 5, "race4": 13, "race5": 0, "race6": 5, "ethnicity1": 255, "ethnicity2": 70, "edu1": 34, "edu2": 62, "edu3": 80, "edu4": 50, "Shape_Length": 144515.86264564295, "Shape_Area": 1013112293.20938, "total_2021": 329, "total_2022": 325 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.549672096454515, 30.753651391627415 ], [ -95.549616095430579, 30.75329339171202 ], [ -95.549506095956701, 30.752497391683708 ], [ -95.549501096083986, 30.752469391456881 ], [ -95.549273095356469, 30.751100391227919 ], [ -95.549124095511786, 30.750019391013925 ], [ -95.549079095273228, 30.749500390901915 ], [ -95.549069095895106, 30.748873390838725 ], [ -95.549063095559248, 30.748761390992502 ], [ -95.549019095465269, 30.747869390746033 ], [ -95.548999095897599, 30.747103390576864 ], [ -95.548920095221916, 30.745988390903982 ], [ -95.548916095701159, 30.745929390716377 ], [ -95.548891094925921, 30.745579390652431 ], [ -95.548832095039884, 30.744767390406157 ], [ -95.548796095030781, 30.744158390280177 ], [ -95.548803094980329, 30.743534390278608 ], [ -95.548807095412911, 30.743466390204823 ], [ -95.548837095180161, 30.74298939031334 ], [ -95.548893095173838, 30.742499389641697 ], [ -95.548967095088784, 30.74189238936275 ], [ -95.548370094606256, 30.741896389494041 ], [ -95.548206094553947, 30.741897389888599 ], [ -95.547854094757184, 30.74189938972302 ], [ -95.547704094950291, 30.741904389821791 ], [ -95.546366094018822, 30.741943389900122 ], [ -95.545741094263022, 30.741962390144629 ], [ -95.54518209397024, 30.74197939000652 ], [ -95.544035093597145, 30.742013389460922 ], [ -95.542606093753477, 30.742051389629605 ], [ -95.539865092909309, 30.742124389871723 ], [ -95.537888092508766, 30.74214138986784 ], [ -95.53622609184103, 30.742155390350533 ], [ -95.535008091132369, 30.742162390698784 ], [ -95.534751091659558, 30.742163390485992 ], [ -95.534133091194249, 30.742167390279036 ], [ -95.533642091207838, 30.742169390365568 ], [ -95.532468090751891, 30.742178390585874 ], [ -95.531983090835269, 30.74218339036327 ], [ -95.531665090974315, 30.742186390677226 ], [ -95.531314090246084, 30.742189389976275 ], [ -95.531104090606107, 30.742191390559192 ], [ -95.528860089859961, 30.742211390334088 ], [ -95.526526089586767, 30.742220390918764 ], [ -95.525060088811713, 30.742255390800715 ], [ -95.524696089503706, 30.742258391129443 ], [ -95.524303088917648, 30.742262390743434 ], [ -95.523568088805249, 30.742256390699627 ], [ -95.523268088935225, 30.74291639101568 ], [ -95.522997088515467, 30.743489390992202 ], [ -95.522912088931051, 30.743669391117656 ], [ -95.522770088603366, 30.743966391044189 ], [ -95.522424088306366, 30.744719391131579 ], [ -95.522387088534103, 30.744800391626335 ], [ -95.522142088049421, 30.745294390933172 ], [ -95.521738088289126, 30.746161391653064 ], [ -95.521650088503463, 30.746350391224851 ], [ -95.521455088440646, 30.74676839197765 ], [ -95.521254088460353, 30.747180391646189 ], [ -95.521049088190708, 30.747601391806597 ], [ -95.52091308811606, 30.747875391979061 ], [ -95.52086808852971, 30.747967392250693 ], [ -95.520342087713601, 30.749021392345394 ], [ -95.520088088464831, 30.749455392139176 ], [ -95.519960087777505, 30.74967539268129 ], [ -95.519705087809953, 30.750006392793377 ], [ -95.518915087494378, 30.751145392568866 ], [ -95.518790087686867, 30.751278392609017 ], [ -95.518756088129777, 30.751315392668822 ], [ -95.518683088137664, 30.75139339282412 ], [ -95.518521087702311, 30.751567392705752 ], [ -95.518279087873054, 30.751819392754484 ], [ -95.517875087299984, 30.752243392982923 ], [ -95.517675088014911, 30.752441393021083 ], [ -95.51734708722654, 30.752767393392816 ], [ -95.516693087722757, 30.753392393086965 ], [ -95.516321087532788, 30.753851393497289 ], [ -95.515684087426081, 30.754407393604485 ], [ -95.514843087180168, 30.755219393392284 ], [ -95.514289086831184, 30.755749393520667 ], [ -95.513979086755569, 30.756046393627287 ], [ -95.513391086391152, 30.756632393712689 ], [ -95.512882086375257, 30.75714639446025 ], [ -95.511779086798086, 30.758204394777774 ], [ -95.511586086055985, 30.758389394235323 ], [ -95.511494086470705, 30.758477393967361 ], [ -95.510007086451779, 30.759903394583105 ], [ -95.509020085672745, 30.760851394663351 ], [ -95.508197086021354, 30.76156139552333 ], [ -95.507412085286418, 30.762174395520681 ], [ -95.506905085500122, 30.762538395232294 ], [ -95.505345085206827, 30.763758395872859 ], [ -95.503898084356337, 30.764906396232764 ], [ -95.496605082978235, 30.770648397295844 ], [ -95.493535082842271, 30.773054398350716 ], [ -95.490962082031317, 30.7750743984103 ], [ -95.488115081538311, 30.777288399326473 ], [ -95.485141080840876, 30.779634399579177 ], [ -95.485062080934284, 30.77971139931746 ], [ -95.484840081014113, 30.779917399602628 ], [ -95.484611081079777, 30.780092400104493 ], [ -95.484252080329568, 30.780345399529761 ], [ -95.483879080655058, 30.780582399660922 ], [ -95.483499080354591, 30.78080039993721 ], [ -95.483096080301991, 30.781001400064998 ], [ -95.482685080572466, 30.781181400087458 ], [ -95.482259080337556, 30.781342399674209 ], [ -95.481827079828136, 30.781482400387315 ], [ -95.478857078900305, 30.782368400652508 ], [ -95.478809079481877, 30.782378400712851 ], [ -95.478758079395078, 30.78240540026346 ], [ -95.477997079415246, 30.782608400632373 ], [ -95.477157079007924, 30.782911400811589 ], [ -95.476792078322234, 30.783060400712138 ], [ -95.476424078184934, 30.783212400930758 ], [ -95.47606407900625, 30.783380401126085 ], [ -95.475717078464271, 30.783570400477736 ], [ -95.47538607853383, 30.783775400975344 ], [ -95.475070078013147, 30.784000401226287 ], [ -95.474615078443932, 30.784338400766806 ], [ -95.468963077436584, 30.788736402173125 ], [ -95.46791607687247, 30.789575402522658 ], [ -95.46600007615784, 30.791104402406635 ], [ -95.465101076081723, 30.791780402761972 ], [ -95.464708076578106, 30.792092402607373 ], [ -95.464530076438635, 30.792234403286251 ], [ -95.464370076479284, 30.792355403187891 ], [ -95.464011076438311, 30.792641402952363 ], [ -95.463429076230312, 30.793105403425294 ], [ -95.462224075513987, 30.794053402973805 ], [ -95.461426075167296, 30.794639403069986 ], [ -95.461162075208904, 30.79485940331308 ], [ -95.460086074796266, 30.795699403654851 ], [ -95.459293074599358, 30.796331404153293 ], [ -95.458651074355089, 30.79683640370969 ], [ -95.458077074347685, 30.797286403767814 ], [ -95.457059074192287, 30.79805440468996 ], [ -95.457011074432643, 30.798091404623737 ], [ -95.455982074217275, 30.798894404201711 ], [ -95.454286073548218, 30.800268404630607 ], [ -95.452679073703365, 30.801475405624977 ], [ -95.451842073255392, 30.802129405798009 ], [ -95.450695072988637, 30.803055405296046 ], [ -95.449917073309322, 30.803658405479911 ], [ -95.44876107276076, 30.804570406366796 ], [ -95.447812072126808, 30.805331406466049 ], [ -95.447039072742513, 30.806018406293976 ], [ -95.446310072103046, 30.806744406478838 ], [ -95.446251072493354, 30.806814406344074 ], [ -95.44618107178195, 30.806872406584958 ], [ -95.44607807201271, 30.806968406362074 ], [ -95.444786071345007, 30.808285407200763 ], [ -95.443561071998218, 30.809505407477623 ], [ -95.443247071557536, 30.809847407540257 ], [ -95.440876070879554, 30.81225740808172 ], [ -95.439349070382207, 30.813792408080921 ], [ -95.437497070023568, 30.815604408996762 ], [ -95.43273706906173, 30.820422410080855 ], [ -95.429995068785999, 30.823178410527944 ], [ -95.429057068343624, 30.824106410250035 ], [ -95.426180067733213, 30.827024410868439 ], [ -95.422504067173875, 30.830753412420911 ], [ -95.419504066487221, 30.833793412491545 ], [ -95.419399066839134, 30.833899413175015 ], [ -95.418095066745551, 30.835180413340396 ], [ -95.416515065951643, 30.836871414025879 ], [ -95.416253066127709, 30.837185413537682 ], [ -95.41580206568365, 30.837694413762765 ], [ -95.415763065410275, 30.837739413398047 ], [ -95.415695065970752, 30.837941413679701 ], [ -95.415489065290885, 30.838186414237235 ], [ -95.414234065026776, 30.839744414092241 ], [ -95.413055065612355, 30.841209414576795 ], [ -95.412439065141655, 30.841937414877961 ], [ -95.410400064697157, 30.844350414919319 ], [ -95.409248064718057, 30.84580941534751 ], [ -95.409236064019709, 30.84582341553925 ], [ -95.409057064022633, 30.846041416159494 ], [ -95.408416064438981, 30.846822416127477 ], [ -95.407722063804925, 30.847635416110439 ], [ -95.407035063756155, 30.848504416428728 ], [ -95.406257063770482, 30.849460416697788 ], [ -95.406165064019078, 30.849567416604302 ], [ -95.404250063812427, 30.851903416764269 ], [ -95.40415906366232, 30.852020416687445 ], [ -95.404096063397859, 30.852109416749627 ], [ -95.403419063028224, 30.853061417244902 ], [ -95.403671063375725, 30.853210417065409 ], [ -95.404197064049498, 30.853704417849897 ], [ -95.405540064034597, 30.85484441787413 ], [ -95.405578064094954, 30.854881417817918 ], [ -95.406905064312596, 30.855956417719245 ], [ -95.407343064472329, 30.856311417744912 ], [ -95.409355065506475, 30.857905417695108 ], [ -95.410163065049105, 30.858545418140832 ], [ -95.4106070655275, 30.858858418621924 ], [ -95.411117065229107, 30.859218418379882 ], [ -95.411638066010127, 30.859589418365498 ], [ -95.411834066066731, 30.859729418804925 ], [ -95.411959065599675, 30.859794418687869 ], [ -95.412475066139052, 30.860063418816594 ], [ -95.413154066589485, 30.860267418775209 ], [ -95.414024066885844, 30.860301418135922 ], [ -95.414993066422909, 30.860318418538402 ], [ -95.415322066691687, 30.860315418610504 ], [ -95.415641066849105, 30.860313418297167 ], [ -95.41619006745448, 30.860368418425072 ], [ -95.41693806705446, 30.860498418398571 ], [ -95.417991067480756, 30.860713418007034 ], [ -95.418624067379952, 30.860812418563299 ], [ -95.419060067677037, 30.860787418235926 ], [ -95.419198067435858, 30.860779417904627 ], [ -95.41931306751691, 30.860772418398991 ], [ -95.419364067824702, 30.860769418125848 ], [ -95.420005067881661, 30.860656418068022 ], [ -95.420799067930872, 30.860477418374408 ], [ -95.421531068776119, 30.860240417947178 ], [ -95.422035068804433, 30.859992417784479 ], [ -95.42260706823626, 30.85953641777791 ], [ -95.423225068752217, 30.859063417495108 ], [ -95.424056069280326, 30.858329418093788 ], [ -95.424667068681472, 30.857791417318946 ], [ -95.425193068868353, 30.857465417197812 ], [ -95.425491069300691, 30.857305417348332 ], [ -95.425834069350046, 30.85720241696248 ], [ -95.426223069446863, 30.857108417552617 ], [ -95.426551069220451, 30.85703641754262 ], [ -95.426917070087725, 30.857036417026407 ], [ -95.427421069991311, 30.857106417223676 ], [ -95.427924070119076, 30.857238417741527 ], [ -95.428924070347975, 30.857654417565506 ], [ -95.430175070111304, 30.858217417564635 ], [ -95.431053070696649, 30.85868241775286 ], [ -95.431983071403593, 30.859298417144299 ], [ -95.432426071349624, 30.859683417517889 ], [ -95.43331607146466, 30.860584417680926 ], [ -95.4333830710857, 30.860651417518842 ], [ -95.433449071177932, 30.860719417722766 ], [ -95.433525071134881, 30.860796417990912 ], [ -95.433720071261746, 30.860992417951454 ], [ -95.433990072149484, 30.861266417970242 ], [ -95.435180071920342, 30.862445418032884 ], [ -95.435996071899496, 30.863376418145602 ], [ -95.436439072448508, 30.864017418650803 ], [ -95.436805072083473, 30.864507418742413 ], [ -95.437377072990103, 30.865033418296441 ], [ -95.437789072952071, 30.865262418723159 ], [ -95.438262073384621, 30.865421418669349 ], [ -95.439079073245182, 30.865661418555188 ], [ -95.440429073776698, 30.866042418281836 ], [ -95.441253073983631, 30.866328418476694 ], [ -95.441589073456015, 30.866470418647342 ], [ -95.442825074065439, 30.866967418734113 ], [ -95.444228074321373, 30.867568419047345 ], [ -95.445838075348362, 30.868339418529263 ], [ -95.44677707480605, 30.868732419071449 ], [ -95.447814076003354, 30.869073419188435 ], [ -95.449157075513185, 30.869344418810805 ], [ -95.450123076060066, 30.869475418635304 ], [ -95.450439076486234, 30.869518419236918 ], [ -95.451522076371432, 30.869695419278798 ], [ -95.453422076536015, 30.869987419026796 ], [ -95.454833077077055, 30.870130418939919 ], [ -95.458833078429265, 30.870560418645372 ], [ -95.459147078305023, 30.870594418370437 ], [ -95.459266078528614, 30.870607418731602 ], [ -95.459510078425552, 30.870633418870614 ], [ -95.459968079119975, 30.870670418460925 ], [ -95.460993078531871, 30.870830418557091 ], [ -95.461387078787922, 30.870891418603133 ], [ -95.462686079901246, 30.871086418638704 ], [ -95.463249079269019, 30.87117141921026 ], [ -95.463584079672941, 30.871198418728795 ], [ -95.463958079636157, 30.871211418786764 ], [ -95.464218080345944, 30.871185418624542 ], [ -95.464423079423938, 30.871155418331412 ], [ -95.464492079707668, 30.871145418428849 ], [ -95.464752080039929, 30.871057418670574 ], [ -95.465011079634579, 30.870960418226268 ], [ -95.465339080574239, 30.870822418611429 ], [ -95.469609081275053, 30.868766418301927 ], [ -95.473321082189528, 30.866978417374114 ], [ -95.474426082275954, 30.866445416984511 ], [ -95.474510081806287, 30.866405417325797 ], [ -95.479125082973923, 30.864368417195656 ], [ -95.479191083129749, 30.86434141680235 ], [ -95.480049083217367, 30.863986416560287 ], [ -95.48172708358301, 30.863357416463305 ], [ -95.488993086100862, 30.860750416094721 ], [ -95.495753087268554, 30.858324415321203 ], [ -95.49830608772983, 30.857408414360048 ], [ -95.500289088138018, 30.856500414182847 ], [ -95.500366088852971, 30.856445414847791 ], [ -95.500877088619461, 30.856025414638395 ], [ -95.501251088680789, 30.855739414656174 ], [ -95.501754088246173, 30.855375413824039 ], [ -95.504730089268648, 30.853095414015044 ], [ -95.504859089877513, 30.853000413997474 ], [ -95.505103089428545, 30.852809413746606 ], [ -95.506248089514145, 30.851938413416676 ], [ -95.508476089866605, 30.850278413362247 ], [ -95.509467090025581, 30.849609412939685 ], [ -95.511086090739653, 30.848447412270851 ], [ -95.511672090940976, 30.848026412761008 ], [ -95.517288092290414, 30.843335411527317 ], [ -95.517791092603659, 30.842952410829362 ], [ -95.518646092323593, 30.842242411126705 ], [ -95.518829092899892, 30.842077410829479 ], [ -95.518989092851811, 30.841895411180761 ], [ -95.519096092050802, 30.841680410720137 ], [ -95.519203092922055, 30.841516410381853 ], [ -95.519363092015411, 30.841209411119561 ], [ -95.519431092129295, 30.840581410223511 ], [ -95.519439092000056, 30.839977410808999 ], [ -95.519439092925978, 30.838655410198456 ], [ -95.519447092435755, 30.83800441012 ], [ -95.519447092568072, 30.837112409643655 ], [ -95.5195000928165, 30.836412409954118 ], [ -95.519560091799278, 30.836089409880348 ], [ -95.519737092177181, 30.835141409362805 ], [ -95.519836092163416, 30.834571408981024 ], [ -95.519943092359057, 30.83400540939467 ], [ -95.520080092482303, 30.833352408731574 ], [ -95.520187092755606, 30.832944409000838 ], [ -95.520423091832626, 30.832265409190569 ], [ -95.520461092313113, 30.832172409276641 ], [ -95.520596091883561, 30.831669409156845 ], [ -95.520652092809883, 30.831413408999694 ], [ -95.520706092015999, 30.831134409013266 ], [ -95.520889092560779, 30.829419408115285 ], [ -95.520973092102935, 30.829047407810812 ], [ -95.521093092045703, 30.828549408277368 ], [ -95.52111009189926, 30.828479408108212 ], [ -95.521621092546951, 30.826757408158386 ], [ -95.522842092054304, 30.8230794066952 ], [ -95.523094092600246, 30.82250740718062 ], [ -95.523307092870354, 30.821855406425637 ], [ -95.524302092896704, 30.819496405858981 ], [ -95.524757092603124, 30.818416405940656 ], [ -95.524825092831321, 30.818233405570862 ], [ -95.525367092547128, 30.817060406054011 ], [ -95.525855093365777, 30.816177405846094 ], [ -95.526573093115744, 30.814655404878589 ], [ -95.526836093304922, 30.814009405206377 ], [ -95.52770909316925, 30.811870404903779 ], [ -95.527745093021196, 30.811788404747535 ], [ -95.528488093499448, 30.810083404258755 ], [ -95.529197093685596, 30.808604403624894 ], [ -95.529418093369813, 30.808089403983494 ], [ -95.53027309400062, 30.806482403744997 ], [ -95.530403093160388, 30.806231402999508 ], [ -95.531165093447768, 30.804759402734643 ], [ -95.531516093490396, 30.80383640313228 ], [ -95.531683093343347, 30.803426402305451 ], [ -95.531738093369825, 30.803291402364763 ], [ -95.531975093902645, 30.802660402785968 ], [ -95.532310093565115, 30.801764402606285 ], [ -95.532616093805316, 30.800950401835859 ], [ -95.532928093999985, 30.800117402382813 ], [ -95.533351094200412, 30.798868401478497 ], [ -95.53377009405834, 30.797630401575933 ], [ -95.534110093712314, 30.796626401450677 ], [ -95.534393094549955, 30.795829401372323 ], [ -95.534727094385289, 30.79493240080512 ], [ -95.535209094470972, 30.793641400523104 ], [ -95.53546109448159, 30.792985400278635 ], [ -95.536018094012334, 30.791488400259325 ], [ -95.536025094788158, 30.791456399896113 ], [ -95.536125094182481, 30.791177400469863 ], [ -95.536496094395162, 30.790188399900458 ], [ -95.536506093882949, 30.790172399450121 ], [ -95.537193094475711, 30.788274399480791 ], [ -95.537216094071184, 30.788230399868173 ], [ -95.53760509464631, 30.787210399422332 ], [ -95.537658094832949, 30.787072399311853 ], [ -95.537873094998247, 30.786529399133116 ], [ -95.537940094839954, 30.786359398632438 ], [ -95.538406094132043, 30.785070398548783 ], [ -95.538703094475821, 30.784164398728883 ], [ -95.539329095228723, 30.782327398570136 ], [ -95.539497095038854, 30.781839398493069 ], [ -95.539657095097922, 30.7813413982471 ], [ -95.539767094948971, 30.781044397628481 ], [ -95.540199094732287, 30.779870397730118 ], [ -95.540736095020534, 30.778379397655115 ], [ -95.541625094957737, 30.775911397231987 ], [ -95.54170209512948, 30.775562397143805 ], [ -95.541709095457421, 30.775346396303398 ], [ -95.541663094553599, 30.775020396603384 ], [ -95.541417095112152, 30.774259396546103 ], [ -95.541213094681439, 30.773628396682103 ], [ -95.541183094674011, 30.773408396403823 ], [ -95.541190094658731, 30.773229396519149 ], [ -95.541199094982161, 30.773204396547847 ], [ -95.541259094604655, 30.773031396049589 ], [ -95.541297094824401, 30.772866396603405 ], [ -95.541961095068615, 30.771043395424339 ], [ -95.542114094880759, 30.770652395772661 ], [ -95.542373095373662, 30.770021395231144 ], [ -95.542751094708549, 30.769084395747917 ], [ -95.542800095260773, 30.768959395309665 ], [ -95.542914094668362, 30.768679395017244 ], [ -95.543031094803638, 30.768257395351558 ], [ -95.543213095200599, 30.767794394924486 ], [ -95.543268095279785, 30.767653394808754 ], [ -95.543324095388598, 30.767483395463206 ], [ -95.543522095534556, 30.766883395136304 ], [ -95.543725094633231, 30.766278394604146 ], [ -95.543874094865018, 30.76583439505233 ], [ -95.544032094808472, 30.765386394417725 ], [ -95.544127094805475, 30.765116394355957 ], [ -95.544409094666165, 30.764316394037284 ], [ -95.544475095629778, 30.764141394635434 ], [ -95.544616095258732, 30.763769394353737 ], [ -95.544628095610364, 30.763736393847864 ], [ -95.544655095577255, 30.763665394325322 ], [ -95.545133095228948, 30.762391393797103 ], [ -95.545468095086278, 30.761521393414714 ], [ -95.545530095115765, 30.761334393474616 ], [ -95.545782095006814, 30.760624393624187 ], [ -95.545801095364936, 30.760571393132622 ], [ -95.546093095340211, 30.759794393680135 ], [ -95.546263095720732, 30.759366393053003 ], [ -95.5463880956342, 30.759106393130054 ], [ -95.546499095077692, 30.758875392805855 ], [ -95.546829095493564, 30.758297392834798 ], [ -95.547027095025953, 30.757967393078953 ], [ -95.547621095328154, 30.756981392438568 ], [ -95.547937095807939, 30.756477392793041 ], [ -95.548300096126226, 30.75587939228874 ], [ -95.548664095443755, 30.755279392466132 ], [ -95.548834095935717, 30.754992391968763 ], [ -95.549063096217978, 30.754628392643852 ], [ -95.549184095482858, 30.754431391912728 ], [ -95.549672096454515, 30.753651391627415 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1490, "Tract": "48039663800", "Area_SqMi": 2.2067019573092148, "total_2009": 738, "total_2010": 674, "total_2011": 1101, "total_2012": 3297, "total_2013": 3184, "total_2014": 3221, "total_2015": 3598, "total_2016": 3561, "total_2017": 3681, "total_2018": 3856, "total_2019": 3785, "total_2020": 3830, "age1": 526, "age2": 2095, "age3": 1116, "earn1": 617, "earn2": 1008, "earn3": 2112, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 155, "naics_s05": 11, "naics_s06": 51, "naics_s07": 34, "naics_s08": 47, "naics_s09": 0, "naics_s10": 48, "naics_s11": 11, "naics_s12": 8, "naics_s13": 0, "naics_s14": 7, "naics_s15": 2867, "naics_s16": 112, "naics_s17": 0, "naics_s18": 96, "naics_s19": 66, "naics_s20": 224, "race1": 3239, "race2": 360, "race3": 28, "race4": 47, "race5": 0, "race6": 63, "ethnicity1": 2633, "ethnicity2": 1104, "edu1": 514, "edu2": 779, "edu3": 1076, "edu4": 842, "Shape_Length": 35551.018752268035, "Shape_Area": 61519073.761634991, "total_2021": 3594, "total_2022": 3737 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.422714985912805, 29.039778046761935 ], [ -95.422719986061992, 29.039641046768885 ], [ -95.422695986055857, 29.039467047182178 ], [ -95.422665986131037, 29.039371046704442 ], [ -95.422597985560287, 29.039147046954465 ], [ -95.422514985554102, 29.038947046448644 ], [ -95.422131985255902, 29.038063046692596 ], [ -95.42205198609463, 29.037848046758139 ], [ -95.422016985451179, 29.037632046111174 ], [ -95.422010985601446, 29.0375760460389 ], [ -95.422006985512709, 29.037527046523639 ], [ -95.422002985431774, 29.037418046552492 ], [ -95.422008986030363, 29.037202046324186 ], [ -95.422019985684258, 29.037100046265433 ], [ -95.422017985976751, 29.037004046641204 ], [ -95.421975985673683, 29.034814046264763 ], [ -95.421949985253477, 29.034061045848603 ], [ -95.42189998540556, 29.032312045446439 ], [ -95.421882985599993, 29.031459044828708 ], [ -95.421840985506861, 29.029535045160205 ], [ -95.421834984939437, 29.029304044879733 ], [ -95.421826984864765, 29.029229044620006 ], [ -95.421817985362978, 29.029144044628588 ], [ -95.421651984640235, 29.027623044680539 ], [ -95.421628985224544, 29.02738304421424 ], [ -95.421557984835189, 29.02663404442989 ], [ -95.421465985061189, 29.025376043896216 ], [ -95.421438984868445, 29.025010044154154 ], [ -95.42141698460668, 29.024693043799452 ], [ -95.42128998441477, 29.023675043141971 ], [ -95.42123498462793, 29.023424043518993 ], [ -95.421107984545714, 29.022786043718401 ], [ -95.420970984660755, 29.02227604325039 ], [ -95.420606984589682, 29.020675042635411 ], [ -95.420589984742463, 29.020590042948701 ], [ -95.420518984095011, 29.020245042426318 ], [ -95.420427984703622, 29.019938042743103 ], [ -95.420392984730555, 29.019833042619702 ], [ -95.420327984283844, 29.019676042865676 ], [ -95.420285984223099, 29.019539042649917 ], [ -95.420244984184933, 29.019337043086662 ], [ -95.420113983936091, 29.019287043063208 ], [ -95.419438983735489, 29.018978043076611 ], [ -95.418511983430577, 29.01855204293464 ], [ -95.417805983343086, 29.018244042234492 ], [ -95.4171189837421, 29.017932042864523 ], [ -95.41672898323813, 29.017751042274224 ], [ -95.416337983717469, 29.017571042740652 ], [ -95.41444998245278, 29.016703042601225 ], [ -95.414008982904136, 29.016504042643376 ], [ -95.413045982523002, 29.016061041846136 ], [ -95.412915982877195, 29.016013042177221 ], [ -95.412625982425524, 29.015883042124234 ], [ -95.412483982020206, 29.01582504248158 ], [ -95.411497982225654, 29.01540104227654 ], [ -95.410868981593765, 29.015120042503117 ], [ -95.41018198157829, 29.014813041765557 ], [ -95.409758981234006, 29.014620041605269 ], [ -95.409177981425032, 29.014371042340429 ], [ -95.408982981645551, 29.014318042038266 ], [ -95.408741980885182, 29.014277042124036 ], [ -95.408552981542456, 29.014256042056694 ], [ -95.408383981448509, 29.014243042247873 ], [ -95.408224981301075, 29.014241041677927 ], [ -95.407961981452914, 29.014244042163138 ], [ -95.407637981505616, 29.014259041768454 ], [ -95.407474981062506, 29.014282041886901 ], [ -95.407235981150123, 29.014352041827362 ], [ -95.406456980714367, 29.01453004180366 ], [ -95.406082981108341, 29.014627042206953 ], [ -95.40551698032418, 29.014788042140157 ], [ -95.405241979992127, 29.014875042520281 ], [ -95.40501298075128, 29.01494004206798 ], [ -95.404964980054004, 29.014954042116376 ], [ -95.404712980530135, 29.015008042146199 ], [ -95.404458980108103, 29.015046041988949 ], [ -95.40449697983918, 29.015943042286068 ], [ -95.404516980088218, 29.016838042916611 ], [ -95.404528980621151, 29.017752042708036 ], [ -95.404541980331814, 29.018687042606647 ], [ -95.40456498061009, 29.01958204291833 ], [ -95.404589980932926, 29.020525043336118 ], [ -95.404601980502491, 29.021005043559743 ], [ -95.404083980300527, 29.021316043653179 ], [ -95.403184979953267, 29.02189804403179 ], [ -95.403001979995807, 29.022017044064796 ], [ -95.402472980221944, 29.022367043695272 ], [ -95.402282979462228, 29.02250104435559 ], [ -95.402058979669363, 29.022645044143633 ], [ -95.401522980161829, 29.023000044465377 ], [ -95.401436979468542, 29.023071043625887 ], [ -95.401139979920544, 29.023261043873941 ], [ -95.399070979701079, 29.024625044917194 ], [ -95.398999979440248, 29.02467804475938 ], [ -95.398881979576188, 29.024753044737622 ], [ -95.398779979672838, 29.024817044183472 ], [ -95.398631978649206, 29.024917044665443 ], [ -95.398308978769293, 29.025105044873399 ], [ -95.398215978619632, 29.025156044833963 ], [ -95.39808697934096, 29.025204045046337 ], [ -95.397885978699534, 29.025239044593061 ], [ -95.397623978945234, 29.025257044814346 ], [ -95.397295979230961, 29.025249044692224 ], [ -95.397058978931867, 29.025231044891346 ], [ -95.396849978875281, 29.025212044514024 ], [ -95.396418978775031, 29.025157044392106 ], [ -95.396008978584476, 29.025112044882231 ], [ -95.396643978800043, 29.027260045411495 ], [ -95.397047978669832, 29.028665044928417 ], [ -95.397182979181878, 29.029138045680643 ], [ -95.397523978763886, 29.03033304601994 ], [ -95.397854979132333, 29.031575046221423 ], [ -95.398197979023578, 29.032803045918694 ], [ -95.398354979674849, 29.033368046250352 ], [ -95.398531979181584, 29.033884046405046 ], [ -95.398775979387324, 29.034747046910603 ], [ -95.398793979330364, 29.034809046236756 ], [ -95.399836980042693, 29.034070045956355 ], [ -95.400419980094497, 29.033729046314939 ], [ -95.401556980558055, 29.032978046462542 ], [ -95.402034980458694, 29.032750045910468 ], [ -95.40277298027884, 29.032755045843896 ], [ -95.403190981043508, 29.032816046493643 ], [ -95.403744981103401, 29.033484045827311 ], [ -95.404018981219807, 29.034288046222965 ], [ -95.404028981131773, 29.035262046073871 ], [ -95.403926981097456, 29.03558204696926 ], [ -95.403843981405217, 29.035848046789695 ], [ -95.403464981145717, 29.036765047276663 ], [ -95.402941981273216, 29.038198047436612 ], [ -95.402817980634808, 29.039552047064635 ], [ -95.402797980727783, 29.040147047794694 ], [ -95.402911981401786, 29.041737047479778 ], [ -95.403101981029849, 29.042654047874464 ], [ -95.403385981458015, 29.04353204810436 ], [ -95.403739981202946, 29.04441004835866 ], [ -95.404393980995224, 29.045633048643506 ], [ -95.40452598181696, 29.045604048512537 ], [ -95.405188981671543, 29.045456048425301 ], [ -95.407983982383371, 29.044820048659549 ], [ -95.409658982637936, 29.044477048318427 ], [ -95.40974698250335, 29.044455048300929 ], [ -95.409828982766001, 29.044428048401283 ], [ -95.409911982779647, 29.044389047860918 ], [ -95.410024983092725, 29.044337048040418 ], [ -95.410122983230409, 29.044281048571573 ], [ -95.410211983009603, 29.044209048388794 ], [ -95.410633982584869, 29.043800047756644 ], [ -95.411224983093561, 29.043247047991454 ], [ -95.412449983038982, 29.042099047373863 ], [ -95.413076983293024, 29.041430047243207 ], [ -95.413232983696901, 29.041264047212731 ], [ -95.413203983389195, 29.041230047171879 ], [ -95.413472983478059, 29.040974047830577 ], [ -95.413931983950363, 29.04051004705752 ], [ -95.414133983281417, 29.04032804758284 ], [ -95.414251983721172, 29.040232047368459 ], [ -95.414432983455043, 29.040097047340129 ], [ -95.414643983398989, 29.039986046730885 ], [ -95.414965984022373, 29.039834046971812 ], [ -95.415132983564945, 29.039765047368611 ], [ -95.415345983851822, 29.039699047411759 ], [ -95.415593984374169, 29.039655047131529 ], [ -95.415843983631177, 29.03963204712376 ], [ -95.416207983951026, 29.039615047091896 ], [ -95.416578984628629, 29.039651047332182 ], [ -95.416717983971154, 29.039679046696925 ], [ -95.416979984735562, 29.039732046666881 ], [ -95.417068984645596, 29.039750046968258 ], [ -95.41742998420159, 29.039818046639773 ], [ -95.417492984412036, 29.039832046912458 ], [ -95.418153984334381, 29.039979046610704 ], [ -95.419210985196798, 29.040243046738976 ], [ -95.41981498500941, 29.040359046659376 ], [ -95.42026098552077, 29.04041704740753 ], [ -95.420497985036619, 29.040442047264197 ], [ -95.420872985151973, 29.040469046757586 ], [ -95.421255985103699, 29.040487046762681 ], [ -95.422707985965033, 29.040461047223708 ], [ -95.422715985718654, 29.040220047272626 ], [ -95.422714985912805, 29.039778046761935 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1491, "Tract": "48039663900", "Area_SqMi": 1.2675818683891571, "total_2009": 7750, "total_2010": 7815, "total_2011": 8377, "total_2012": 8826, "total_2013": 9058, "total_2014": 8693, "total_2015": 8256, "total_2016": 7051, "total_2017": 8223, "total_2018": 7189, "total_2019": 7438, "total_2020": 7043, "age1": 1703, "age2": 3477, "age3": 1401, "earn1": 959, "earn2": 1390, "earn3": 4232, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2095, "naics_s05": 1224, "naics_s06": 167, "naics_s07": 768, "naics_s08": 7, "naics_s09": 40, "naics_s10": 206, "naics_s11": 32, "naics_s12": 431, "naics_s13": 313, "naics_s14": 95, "naics_s15": 0, "naics_s16": 68, "naics_s17": 71, "naics_s18": 775, "naics_s19": 289, "naics_s20": 0, "race1": 5485, "race2": 706, "race3": 53, "race4": 238, "race5": 10, "race6": 89, "ethnicity1": 3944, "ethnicity2": 2637, "edu1": 1098, "edu2": 1313, "edu3": 1540, "edu4": 927, "Shape_Length": 33405.535317449619, "Shape_Area": 35338013.002639771, "total_2021": 6645, "total_2022": 6581 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.421566984753838, 29.019744042619827 ], [ -95.421542984274566, 29.019248043028266 ], [ -95.421520984553922, 29.018321042794117 ], [ -95.421513984937789, 29.018037042043499 ], [ -95.421503984705055, 29.017517042552488 ], [ -95.421459984882389, 29.015840041705793 ], [ -95.42145398477588, 29.015618041780851 ], [ -95.421426984088683, 29.014302041180418 ], [ -95.421360983890267, 29.010966041212225 ], [ -95.421343984428276, 29.01071504090276 ], [ -95.421327984516211, 29.010498040380913 ], [ -95.421135983824357, 29.010441040890473 ], [ -95.420856984333241, 29.010334041133618 ], [ -95.420742983917251, 29.010297041010123 ], [ -95.420523984054256, 29.010225040392111 ], [ -95.420362984573956, 29.010175040887106 ], [ -95.420087984425763, 29.010090041009317 ], [ -95.419678984146017, 29.009990040510402 ], [ -95.41925098343448, 29.00989204049602 ], [ -95.419128983441666, 29.009864040839776 ], [ -95.418612983476137, 29.009783041038592 ], [ -95.418054983835589, 29.009721040710271 ], [ -95.417671983656831, 29.009702040726864 ], [ -95.417238983518487, 29.009697040706182 ], [ -95.416508983214626, 29.00971504120032 ], [ -95.414985982380742, 29.009733040708362 ], [ -95.412918982224085, 29.009766040554037 ], [ -95.409423981734449, 29.009833041260684 ], [ -95.407372981152676, 29.00987304129097 ], [ -95.406450980662214, 29.009879041204755 ], [ -95.405831980209058, 29.009865041435429 ], [ -95.40556598030625, 29.009848041608059 ], [ -95.405239980320331, 29.009836041397033 ], [ -95.404947980302211, 29.009802040788344 ], [ -95.404724979645295, 29.009770041052381 ], [ -95.40448497956632, 29.009735040987074 ], [ -95.404449980081012, 29.009730041378262 ], [ -95.404323979682971, 29.009701041489308 ], [ -95.403725979305634, 29.009561041126755 ], [ -95.403172979286538, 29.00937804091868 ], [ -95.402693979066484, 29.009200041586301 ], [ -95.402114978949001, 29.008966041174389 ], [ -95.401607978739221, 29.008744041253088 ], [ -95.401027978885082, 29.008502041061863 ], [ -95.400817979100324, 29.008414040905681 ], [ -95.400181979256701, 29.008149040912095 ], [ -95.399970978526099, 29.008052040543525 ], [ -95.399124978053251, 29.007705041388487 ], [ -95.397450977585365, 29.006976040516989 ], [ -95.397018977603864, 29.006773040649954 ], [ -95.395971977229834, 29.006226040647466 ], [ -95.395668977261352, 29.006041040356628 ], [ -95.395319977207492, 29.005848040744262 ], [ -95.394464977590729, 29.005345040574817 ], [ -95.394175977428716, 29.005182040390554 ], [ -95.393780976675046, 29.004960040839382 ], [ -95.393504976562426, 29.004827040513618 ], [ -95.393441976773389, 29.004797040087439 ], [ -95.393234976965175, 29.004709040307496 ], [ -95.393171976766652, 29.004682040556268 ], [ -95.392801976346647, 29.004553040815303 ], [ -95.392485976858026, 29.0044830403798 ], [ -95.392287976270367, 29.004457040118147 ], [ -95.391992976618354, 29.004412040814575 ], [ -95.391929976677545, 29.004408040429119 ], [ -95.391704976817266, 29.004394040431762 ], [ -95.391554976442691, 29.004396040896939 ], [ -95.39121097606558, 29.004402040509309 ], [ -95.390789976622273, 29.004444040378463 ], [ -95.390505975853372, 29.004491040919419 ], [ -95.39043097631243, 29.004506040734263 ], [ -95.390204976261657, 29.004551040733428 ], [ -95.389919975826814, 29.004617040672489 ], [ -95.38963197650655, 29.004658040231071 ], [ -95.389577976068452, 29.004666040770356 ], [ -95.38938297601635, 29.00470904082416 ], [ -95.38926897552048, 29.004721040199197 ], [ -95.388924975348004, 29.004757040348849 ], [ -95.389073975891293, 29.005049041113935 ], [ -95.389283975947393, 29.005418040607807 ], [ -95.389351975621125, 29.005537040624489 ], [ -95.3911089766152, 29.008850041467877 ], [ -95.391255976524832, 29.009141041715942 ], [ -95.391341976889876, 29.009328041991964 ], [ -95.391410977126114, 29.009508041263025 ], [ -95.391695977019424, 29.010163041327818 ], [ -95.391771977138134, 29.010339041408908 ], [ -95.391826976634903, 29.010465042174289 ], [ -95.39183997686375, 29.010495041927751 ], [ -95.392383976699364, 29.012294042251426 ], [ -95.392489976814204, 29.012743042514025 ], [ -95.392694977176703, 29.013423042614637 ], [ -95.393282976881025, 29.015463043114167 ], [ -95.393324977516798, 29.015583042873327 ], [ -95.393677977508034, 29.016812043466537 ], [ -95.393721977610994, 29.016987042720189 ], [ -95.394402977761175, 29.019409043930576 ], [ -95.394411977669677, 29.019443043447517 ], [ -95.394443977816508, 29.019554043664048 ], [ -95.394624978180346, 29.020187043657643 ], [ -95.394700977857013, 29.020486043423617 ], [ -95.39491697837191, 29.021283043915918 ], [ -95.395502978658612, 29.023283043942147 ], [ -95.39567897862635, 29.02395604465438 ], [ -95.396008978584476, 29.025112044882231 ], [ -95.396418978775031, 29.025157044392106 ], [ -95.396849978875281, 29.025212044514024 ], [ -95.397058978931867, 29.025231044891346 ], [ -95.397295979230961, 29.025249044692224 ], [ -95.397623978945234, 29.025257044814346 ], [ -95.397885978699534, 29.025239044593061 ], [ -95.39808697934096, 29.025204045046337 ], [ -95.398215978619632, 29.025156044833963 ], [ -95.398308978769293, 29.025105044873399 ], [ -95.398631978649206, 29.024917044665443 ], [ -95.398779979672838, 29.024817044183472 ], [ -95.398881979576188, 29.024753044737622 ], [ -95.398999979440248, 29.02467804475938 ], [ -95.399070979701079, 29.024625044917194 ], [ -95.401139979920544, 29.023261043873941 ], [ -95.401436979468542, 29.023071043625887 ], [ -95.401522980161829, 29.023000044465377 ], [ -95.402058979669363, 29.022645044143633 ], [ -95.402282979462228, 29.02250104435559 ], [ -95.402472980221944, 29.022367043695272 ], [ -95.403001979995807, 29.022017044064796 ], [ -95.403184979953267, 29.02189804403179 ], [ -95.404083980300527, 29.021316043653179 ], [ -95.404601980502491, 29.021005043559743 ], [ -95.404589980932926, 29.020525043336118 ], [ -95.40456498061009, 29.01958204291833 ], [ -95.404541980331814, 29.018687042606647 ], [ -95.404528980621151, 29.017752042708036 ], [ -95.404516980088218, 29.016838042916611 ], [ -95.40449697983918, 29.015943042286068 ], [ -95.404458980108103, 29.015046041988949 ], [ -95.404712980530135, 29.015008042146199 ], [ -95.404964980054004, 29.014954042116376 ], [ -95.40501298075128, 29.01494004206798 ], [ -95.405241979992127, 29.014875042520281 ], [ -95.40551698032418, 29.014788042140157 ], [ -95.406082981108341, 29.014627042206953 ], [ -95.406456980714367, 29.01453004180366 ], [ -95.407235981150123, 29.014352041827362 ], [ -95.407474981062506, 29.014282041886901 ], [ -95.407637981505616, 29.014259041768454 ], [ -95.407961981452914, 29.014244042163138 ], [ -95.408224981301075, 29.014241041677927 ], [ -95.408383981448509, 29.014243042247873 ], [ -95.408552981542456, 29.014256042056694 ], [ -95.408741980885182, 29.014277042124036 ], [ -95.408982981645551, 29.014318042038266 ], [ -95.409177981425032, 29.014371042340429 ], [ -95.409758981234006, 29.014620041605269 ], [ -95.41018198157829, 29.014813041765557 ], [ -95.410868981593765, 29.015120042503117 ], [ -95.411497982225654, 29.01540104227654 ], [ -95.412483982020206, 29.01582504248158 ], [ -95.412625982425524, 29.015883042124234 ], [ -95.412915982877195, 29.016013042177221 ], [ -95.413045982523002, 29.016061041846136 ], [ -95.414008982904136, 29.016504042643376 ], [ -95.41444998245278, 29.016703042601225 ], [ -95.416337983717469, 29.017571042740652 ], [ -95.41672898323813, 29.017751042274224 ], [ -95.4171189837421, 29.017932042864523 ], [ -95.417805983343086, 29.018244042234492 ], [ -95.418511983430577, 29.01855204293464 ], [ -95.419438983735489, 29.018978043076611 ], [ -95.420113983936091, 29.019287043063208 ], [ -95.420244984184933, 29.019337043086662 ], [ -95.420587984440246, 29.019432042765324 ], [ -95.420906984679519, 29.019530042936733 ], [ -95.421566984753838, 29.019744042619827 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1492, "Tract": "48039664200", "Area_SqMi": 87.65497992755877, "total_2009": 4776, "total_2010": 4277, "total_2011": 5324, "total_2012": 4641, "total_2013": 4620, "total_2014": 4809, "total_2015": 5684, "total_2016": 5256, "total_2017": 5135, "total_2018": 5076, "total_2019": 4975, "total_2020": 4418, "age1": 916, "age2": 2485, "age3": 1099, "earn1": 497, "earn2": 877, "earn3": 3126, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 1643, "naics_s05": 774, "naics_s06": 430, "naics_s07": 608, "naics_s08": 130, "naics_s09": 33, "naics_s10": 16, "naics_s11": 55, "naics_s12": 45, "naics_s13": 9, "naics_s14": 131, "naics_s15": 0, "naics_s16": 9, "naics_s17": 23, "naics_s18": 311, "naics_s19": 110, "naics_s20": 172, "race1": 3735, "race2": 558, "race3": 34, "race4": 113, "race5": 1, "race6": 59, "ethnicity1": 2907, "ethnicity2": 1593, "edu1": 765, "edu2": 1208, "edu3": 1084, "edu4": 527, "Shape_Length": 417227.81267104571, "Shape_Area": 2443670817.3828406, "total_2021": 4316, "total_2022": 4500 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.436618987638838, 29.004393039290576 ], [ -95.43664398835368, 29.004289039194262 ], [ -95.436215988373945, 29.003861038858798 ], [ -95.436135987842249, 29.003651039315006 ], [ -95.43611698780802, 29.003292038423695 ], [ -95.436152987910745, 29.002560038917501 ], [ -95.435996987325737, 29.002557038338761 ], [ -95.434833987851732, 29.00206303873609 ], [ -95.433878987135287, 29.001031038659821 ], [ -95.433761986793527, 29.000270038290253 ], [ -95.433781986801108, 28.998454037736984 ], [ -95.433849987104608, 28.996562037715758 ], [ -95.433092986552168, 28.994471037525834 ], [ -95.431511986516313, 28.992183036319247 ], [ -95.428334984812508, 28.98974003614391 ], [ -95.425652984127098, 28.987494035898678 ], [ -95.420845982622993, 28.981985034648378 ], [ -95.418544982813856, 28.980323034696436 ], [ -95.417504982597805, 28.980100034895226 ], [ -95.415301981416476, 28.979627034683418 ], [ -95.412822981265734, 28.979856034528623 ], [ -95.410342980285193, 28.980230034800844 ], [ -95.407973980120047, 28.980557035050552 ], [ -95.406545979286207, 28.980015034792125 ], [ -95.405946979074002, 28.97909003499516 ], [ -95.40568597909423, 28.977148034723438 ], [ -95.405143978646123, 28.975883034007058 ], [ -95.403389978513019, 28.974903033978791 ], [ -95.401353977637257, 28.974698034141433 ], [ -95.398375977388085, 28.975555034004206 ], [ -95.397202977146861, 28.976543034736643 ], [ -95.396547977105399, 28.977097034362142 ], [ -95.395765976140297, 28.978694034781935 ], [ -95.395479976323017, 28.980099034998425 ], [ -95.394150975979969, 28.981257036014387 ], [ -95.393382975798957, 28.981379036102627 ], [ -95.392386975371281, 28.981538035479815 ], [ -95.390741975213047, 28.980704035463706 ], [ -95.387458974153731, 28.977919035224129 ], [ -95.385893974309482, 28.977176035224733 ], [ -95.385923974309648, 28.97827903550747 ], [ -95.385841973534014, 28.978431035014182 ], [ -95.38599097350999, 28.978586035553782 ], [ -95.386138973723661, 28.978742035196053 ], [ -95.386082974361429, 28.979204035312506 ], [ -95.386021974215268, 28.979164035501306 ], [ -95.386007973698966, 28.97961103551194 ], [ -95.385394974023086, 28.980397035959562 ], [ -95.384350973439155, 28.981051035714003 ], [ -95.377838971975478, 28.983888037001467 ], [ -95.377755971649464, 28.983925036861397 ], [ -95.377544972013965, 28.984011037117956 ], [ -95.374588971578987, 28.98522103748989 ], [ -95.371699970749091, 28.986508037111072 ], [ -95.371584970293398, 28.986292037316879 ], [ -95.3715719711264, 28.986269037289759 ], [ -95.371510970126138, 28.986192037590872 ], [ -95.367768969649447, 28.987769037469445 ], [ -95.367548970083632, 28.987792037758119 ], [ -95.36739596983341, 28.987808037937338 ], [ -95.367375969353091, 28.987786037884778 ], [ -95.367343969779924, 28.987750037421762 ], [ -95.367246969423604, 28.987586038055596 ], [ -95.365209969138576, 28.985176037426037 ], [ -95.363834968251297, 28.983525036627011 ], [ -95.363006968129923, 28.982617037079258 ], [ -95.359934967768538, 28.978923036160669 ], [ -95.359867966826897, 28.978845035919797 ], [ -95.350281964151463, 28.967786034471764 ], [ -95.350178964285547, 28.967673034536798 ], [ -95.349871963823489, 28.968015034578531 ], [ -95.349520964545036, 28.968405033944279 ], [ -95.349494964414006, 28.968314034289183 ], [ -95.349443964088522, 28.968139034625732 ], [ -95.349431964554029, 28.968096034088493 ], [ -95.349308963665194, 28.967712034191035 ], [ -95.349250964053013, 28.967533034283264 ], [ -95.348701964133966, 28.966911033671462 ], [ -95.348634963714858, 28.966835034192751 ], [ -95.348237963368277, 28.966236033703389 ], [ -95.348002963354816, 28.965739033609506 ], [ -95.347873963629652, 28.965198033615295 ], [ -95.347827963822695, 28.96477403333061 ], [ -95.34773696367229, 28.964144033208221 ], [ -95.347622963921665, 28.963413032986086 ], [ -95.347447963993389, 28.962941033296527 ], [ -95.347110963774483, 28.962396033440893 ], [ -95.346733963005903, 28.961956033294815 ], [ -95.346034963316868, 28.961285033191437 ], [ -95.344115962583814, 28.95951803257303 ], [ -95.343377962320531, 28.958782032139343 ], [ -95.343087962008681, 28.958458032361495 ], [ -95.342799962015491, 28.958071032670027 ], [ -95.342581961560271, 28.957653032685556 ], [ -95.342433962126165, 28.957285032680531 ], [ -95.342324962303607, 28.956852032388312 ], [ -95.342283961471679, 28.956585032479683 ], [ -95.342251962084106, 28.956382032363496 ], [ -95.342269961828435, 28.9558040324121 ], [ -95.342342962267196, 28.955356032343769 ], [ -95.342801962102556, 28.954020031808891 ], [ -95.342960962042838, 28.953550031312016 ], [ -95.343013961581477, 28.953394031592332 ], [ -95.343089961798597, 28.953168031460805 ], [ -95.343123961989917, 28.953067031328242 ], [ -95.343473962432796, 28.952073031199685 ], [ -95.343701962011821, 28.951400031453694 ], [ -95.341507961226014, 28.950537031328768 ], [ -95.3402169615335, 28.950530031256399 ], [ -95.339784960808032, 28.950780031408751 ], [ -95.338205960857593, 28.95089703085328 ], [ -95.33786196057153, 28.95089503072003 ], [ -95.335261960140073, 28.951205030939896 ], [ -95.333664959658392, 28.951114031213706 ], [ -95.331285958710509, 28.95098003139254 ], [ -95.329724958305064, 28.950523031359367 ], [ -95.328889958418841, 28.950080031410085 ], [ -95.327606958007962, 28.948930031040547 ], [ -95.3273279580755, 28.948047031225794 ], [ -95.327042957741824, 28.947792030579116 ], [ -95.326762957167404, 28.94703203046025 ], [ -95.326780957033208, 28.944755030104432 ], [ -95.327110957565083, 28.944142029761668 ], [ -95.327437957182241, 28.943143029619989 ], [ -95.327933957568007, 28.942294029371727 ], [ -95.329953957761745, 28.940410029337968 ], [ -95.330764958392606, 28.939208028662446 ], [ -95.330841957806769, 28.939089028793958 ], [ -95.33101495872549, 28.938426028631387 ], [ -95.331137957837797, 28.937952028457804 ], [ -95.331140958727005, 28.937585028570993 ], [ -95.331143958160879, 28.937233028504412 ], [ -95.331150958603374, 28.936308028523207 ], [ -95.329300957656798, 28.934526027539491 ], [ -95.328014957322821, 28.933886027706784 ], [ -95.325720957043586, 28.933871028124088 ], [ -95.324138956564795, 28.934494027892413 ], [ -95.321681956021123, 28.936755028846097 ], [ -95.321386955680808, 28.937765029223232 ], [ -95.321142955406032, 28.93800002896587 ], [ -95.320082955828511, 28.939026029124818 ], [ -95.318634954704308, 28.941163030046305 ], [ -95.317334954439417, 28.942293030133143 ], [ -95.311884953264482, 28.942258030031901 ], [ -95.310733953404778, 28.942756029876197 ], [ -95.310158953478648, 28.942844030555122 ], [ -95.309557953191273, 28.942936030277352 ], [ -95.309299953016037, 28.942976030242914 ], [ -95.309153952493773, 28.942999030107721 ], [ -95.308782952858977, 28.942967030400755 ], [ -95.308210952123105, 28.942755030212911 ], [ -95.308145952730115, 28.942811030783904 ], [ -95.308042952502731, 28.942903030121528 ], [ -95.307576952435682, 28.942863030033923 ], [ -95.307001952605589, 28.943112030853698 ], [ -95.305999951955044, 28.942853030676311 ], [ -95.304285951927028, 28.94195603053431 ], [ -95.303245951485124, 28.941025029732131 ], [ -95.300140950110674, 28.938246029555405 ], [ -95.296743949385259, 28.934951029413405 ], [ -95.296695948868233, 28.934890028615602 ], [ -95.296528949497656, 28.934677028931262 ], [ -95.29649294902454, 28.934631029321569 ], [ -95.296271949572727, 28.934349029414324 ], [ -95.296002949456863, 28.934093028971425 ], [ -95.295630949225881, 28.934330029418714 ], [ -95.295284948524269, 28.934550028971746 ], [ -95.295177948826606, 28.934618028827678 ], [ -95.294662948302999, 28.934947029494193 ], [ -95.294662948898079, 28.935424028993655 ], [ -95.294602949328095, 28.936085029001177 ], [ -95.294405948885924, 28.936325029228684 ], [ -95.294334948826048, 28.936412029509437 ], [ -95.292758948958479, 28.938334029744379 ], [ -95.290518947690671, 28.940190030080345 ], [ -95.286271946690519, 28.945373031762621 ], [ -95.284153946688448, 28.947713032020314 ], [ -95.275646944930386, 28.95677003412321 ], [ -95.275215945106439, 28.957231034163136 ], [ -95.273663944738288, 28.958594035117457 ], [ -95.269241943084381, 28.962478035430163 ], [ -95.263747942268694, 28.967416036742453 ], [ -95.262925942202457, 28.968252036653322 ], [ -95.262809941847991, 28.968559036919746 ], [ -95.262500941530917, 28.969377037367519 ], [ -95.26202094139505, 28.969616037330201 ], [ -95.261393942180348, 28.969859037096604 ], [ -95.260558941533432, 28.970182037813696 ], [ -95.251096939626478, 28.978018039732184 ], [ -95.249006938936986, 28.97966603953056 ], [ -95.245341938008494, 28.982792040233242 ], [ -95.241218936789807, 28.985998041453378 ], [ -95.236454935992185, 28.990247042448104 ], [ -95.232697935056279, 28.993132042797431 ], [ -95.229124934874093, 28.995376043863388 ], [ -95.226192933668955, 28.997380044238824 ], [ -95.224268933121621, 28.99818204487562 ], [ -95.221610932421044, 29.000261044785947 ], [ -95.216695931529543, 29.003515045912433 ], [ -95.210933930238085, 29.007568046733578 ], [ -95.207175929556826, 29.010745047347672 ], [ -95.200035928355675, 29.015564048664654 ], [ -95.19377292643027, 29.019069049763502 ], [ -95.18826192546554, 29.023779051053051 ], [ -95.179117922696605, 29.02969405226758 ], [ -95.171476921400753, 29.034842054054359 ], [ -95.160954918844809, 29.042510055764811 ], [ -95.153438917682976, 29.047877057068934 ], [ -95.146924916083989, 29.052039058631529 ], [ -95.141789914222173, 29.05565405922324 ], [ -95.134774912909577, 29.060364059904302 ], [ -95.129638912134652, 29.062774061325133 ], [ -95.124001910152259, 29.0650740611995 ], [ -95.121339909740072, 29.066852061966809 ], [ -95.12152291032578, 29.067023061989897 ], [ -95.120757909776628, 29.068014062159484 ], [ -95.120482909256168, 29.069177062907084 ], [ -95.120574909996265, 29.070980062713694 ], [ -95.120986909869131, 29.07298406325819 ], [ -95.121261910020309, 29.073745063659231 ], [ -95.12140891049782, 29.074002063831152 ], [ -95.118743910005378, 29.077191064000619 ], [ -95.118529909672333, 29.077451064815495 ], [ -95.119776909409254, 29.078114064388245 ], [ -95.120106909823164, 29.078285064931919 ], [ -95.120825909960999, 29.078658064901333 ], [ -95.123979911540943, 29.080296064505546 ], [ -95.125238910920928, 29.081064064736616 ], [ -95.125359911869594, 29.081182065248107 ], [ -95.12895891247463, 29.084671065136646 ], [ -95.129941912537447, 29.085623065395193 ], [ -95.125173911602147, 29.093063067323349 ], [ -95.104228908048867, 29.1251900748221 ], [ -95.102927908061346, 29.127190075545741 ], [ -95.096274905816969, 29.137428077380676 ], [ -95.092594905676961, 29.143086078721275 ], [ -95.090651904773367, 29.146074079306715 ], [ -95.090552904893556, 29.14622607951323 ], [ -95.08958290513705, 29.147717079982385 ], [ -95.088499905, 29.149382080036425 ], [ -95.085642904748099, 29.153704081136564 ], [ -95.085131903881219, 29.154478081126996 ], [ -95.077522902743212, 29.165989084467064 ], [ -95.071586901127191, 29.175221085918466 ], [ -95.070607901570924, 29.176746086776035 ], [ -95.06783090130709, 29.181076087197745 ], [ -95.066185900159837, 29.183639087895127 ], [ -95.061681899675946, 29.19065709004331 ], [ -95.056550899041028, 29.198652091691876 ], [ -95.056145899080093, 29.199284091810377 ], [ -95.056545898331976, 29.199921092183779 ], [ -95.056602898846307, 29.200011091690921 ], [ -95.056897898954844, 29.200482092275621 ], [ -95.057151899339999, 29.200885091959545 ], [ -95.057391898803701, 29.200655091787674 ], [ -95.065231901072735, 29.196445091216543 ], [ -95.07159490208214, 29.193428090198459 ], [ -95.07266290304382, 29.192718090128903 ], [ -95.07568490351052, 29.190502089015251 ], [ -95.078400903427635, 29.188565089004843 ], [ -95.0812689040457, 29.18659708814064 ], [ -95.084549905065458, 29.18410608803033 ], [ -95.087922906243094, 29.181668086670143 ], [ -95.092469907402631, 29.178613086463979 ], [ -95.094728907435666, 29.177357085799564 ], [ -95.096589908263553, 29.176572085522043 ], [ -95.098359908594787, 29.175736085842715 ], [ -95.102342909275848, 29.174981085187429 ], [ -95.106218910285293, 29.17431708532682 ], [ -95.109544910826443, 29.173772084969379 ], [ -95.112917912366981, 29.173127084592217 ], [ -95.113817911935882, 29.172799084078292 ], [ -95.114285912904364, 29.172517083969108 ], [ -95.125212915058427, 29.165931082837918 ], [ -95.135119917650897, 29.159961080746665 ], [ -95.157431922145463, 29.146656077802707 ], [ -95.158013922948399, 29.146147077633319 ], [ -95.158385922739342, 29.14576007723749 ], [ -95.158961922572132, 29.145638077013619 ], [ -95.168780924569262, 29.136906075128159 ], [ -95.179513926894046, 29.126746073118824 ], [ -95.19463893064659, 29.11268006895472 ], [ -95.196304930968068, 29.111086068697077 ], [ -95.198452931796368, 29.108868068108738 ], [ -95.199591931486111, 29.107136068352812 ], [ -95.200917932132739, 29.104366067232768 ], [ -95.201642931617585, 29.101475066715999 ], [ -95.201913931836771, 29.100397066443207 ], [ -95.201994932168958, 29.100073066101427 ], [ -95.202000931760637, 29.100041066390094 ], [ -95.202073931424053, 29.099682066734633 ], [ -95.204656931884188, 29.086934063897118 ], [ -95.205298931997959, 29.084601062690655 ], [ -95.206716931870744, 29.081795062056955 ], [ -95.208397932387655, 29.078466061778478 ], [ -95.212402933030987, 29.070025059661049 ], [ -95.219117934192695, 29.056340056759002 ], [ -95.224217935495403, 29.045894054399167 ], [ -95.228312935583716, 29.035836052292158 ], [ -95.231288935939702, 29.027951050340778 ], [ -95.23195393613625, 29.025995049807243 ], [ -95.232873936133686, 29.023887049619365 ], [ -95.233942937028374, 29.021868049322745 ], [ -95.234755936951501, 29.020464049195972 ], [ -95.235717936859928, 29.019150048433541 ], [ -95.237991937658038, 29.016479047595549 ], [ -95.243763938762868, 29.008678046415842 ], [ -95.249935939644431, 29.00066004461755 ], [ -95.250221939803112, 29.000250044063435 ], [ -95.251159940419655, 28.999182043453946 ], [ -95.253081941073361, 28.996828043372485 ], [ -95.254639941136702, 28.994759042717416 ], [ -95.258120942029521, 28.99025004214149 ], [ -95.258150941411429, 28.990216041605635 ], [ -95.259974942443009, 28.988097041195292 ], [ -95.260051941966211, 28.98801904135151 ], [ -95.262321942328228, 28.98571704117127 ], [ -95.265350943604318, 28.984062039984568 ], [ -95.267870944130451, 28.982961039591959 ], [ -95.271034944807269, 28.981334039710795 ], [ -95.273928945452042, 28.979597039381538 ], [ -95.275429946180992, 28.978453039043057 ], [ -95.275861945639704, 28.978193038925244 ], [ -95.279548946621944, 28.974993037996732 ], [ -95.279822946286004, 28.975151037849418 ], [ -95.279884946211055, 28.975229037744654 ], [ -95.280106946889987, 28.975509038341414 ], [ -95.280756946734641, 28.976329038073548 ], [ -95.281175947258433, 28.977596038793482 ], [ -95.281359947383322, 28.97774003874656 ], [ -95.283456947684584, 28.979382039113478 ], [ -95.285581948951119, 28.982558039276462 ], [ -95.286130949126644, 28.985470040062609 ], [ -95.287267948842043, 28.986742040492679 ], [ -95.289978949905858, 28.988657040737987 ], [ -95.291550950431855, 28.98942604019522 ], [ -95.292970950941793, 28.989812040287262 ], [ -95.295268951025378, 28.990968040412305 ], [ -95.297405952125018, 28.992752041311078 ], [ -95.298395951720337, 28.994529041379547 ], [ -95.299673952611101, 28.99618204214822 ], [ -95.300293953288303, 28.998439041961333 ], [ -95.300796952793547, 29.000268042410159 ], [ -95.301344953233823, 29.002262042711742 ], [ -95.302199953968454, 29.003027042785828 ], [ -95.304769953852158, 29.004307043542109 ], [ -95.306353954159576, 29.004065042780738 ], [ -95.307361955052727, 29.00356604319466 ], [ -95.308045955026856, 29.003610042632399 ], [ -95.308137955565968, 29.003646043324348 ], [ -95.308246955150267, 29.003672043428082 ], [ -95.308347954951373, 29.003704043432293 ], [ -95.308413954977055, 29.003730043273436 ], [ -95.308468955174177, 29.003751043224216 ], [ -95.308521954899035, 29.003772042694298 ], [ -95.30859595494131, 29.00379604272614 ], [ -95.30867395493253, 29.003817042712278 ], [ -95.308788955082406, 29.003870042649076 ], [ -95.308839955398113, 29.003891043370711 ], [ -95.308919955286584, 29.003921042691697 ], [ -95.308979954878609, 29.00394104275712 ], [ -95.309031955305571, 29.00395404261711 ], [ -95.309099955631297, 29.00396404324664 ], [ -95.309480955258664, 29.004057043391093 ], [ -95.309670955515159, 29.004098042909586 ], [ -95.30982595536338, 29.004147042946816 ], [ -95.310016955299687, 29.004218043340448 ], [ -95.31015095511853, 29.00426604323178 ], [ -95.310315955668813, 29.004284042882293 ], [ -95.310457955376805, 29.004324042666664 ], [ -95.310612955840313, 29.004372043294435 ], [ -95.31074695531251, 29.004403042968391 ], [ -95.310851956202441, 29.004428043428042 ], [ -95.310926956213436, 29.004447043121434 ], [ -95.310982955805429, 29.004454043034272 ], [ -95.311096955470788, 29.00450704296161 ], [ -95.311188955566124, 29.00453904300786 ], [ -95.31129795626785, 29.004575043539759 ], [ -95.311480955906475, 29.004628042986941 ], [ -95.311738956072816, 29.004665042847748 ], [ -95.311900956117654, 29.00469104270622 ], [ -95.312141956318001, 29.004764043165327 ], [ -95.312337956103704, 29.004835043374069 ], [ -95.312480955959899, 29.004914043148581 ], [ -95.312596956095334, 29.00499404287217 ], [ -95.312679956602253, 29.005117042999064 ], [ -95.312767956421965, 29.005222042765716 ], [ -95.312883955950625, 29.005390042809076 ], [ -95.312969956295106, 29.005519042803702 ], [ -95.313112956126503, 29.005636043098455 ], [ -95.313218955956927, 29.005718043657563 ], [ -95.313331956951146, 29.00581504309605 ], [ -95.313458956840861, 29.005926043682347 ], [ -95.313543956445969, 29.005992043056633 ], [ -95.313643956380304, 29.006088043562148 ], [ -95.313785956962349, 29.006238043141849 ], [ -95.313928956254074, 29.006363043031605 ], [ -95.314083956950526, 29.006485043167444 ], [ -95.314227956559762, 29.006577043593399 ], [ -95.31435695655226, 29.006647043321642 ], [ -95.314438956599659, 29.006715043510575 ], [ -95.314622956386813, 29.006825043206579 ], [ -95.31482795699408, 29.006954043311953 ], [ -95.314955957433114, 29.007046043763264 ], [ -95.315078956981026, 29.00710704358335 ], [ -95.315221956826193, 29.007208043099926 ], [ -95.31532295672514, 29.00727104313243 ], [ -95.315503957325788, 29.007379043638831 ], [ -95.315610957160018, 29.007452043774155 ], [ -95.315729957499073, 29.00753504335205 ], [ -95.315895957500601, 29.007620043514333 ], [ -95.316046957683142, 29.007717043163773 ], [ -95.316149957557442, 29.007795043652756 ], [ -95.316343956992014, 29.007877043307122 ], [ -95.316706957502873, 29.007642043239944 ], [ -95.316944957291398, 29.00767404341806 ], [ -95.317229957510094, 29.007928043733067 ], [ -95.319383958330349, 29.007815043918971 ], [ -95.321399959038359, 29.007069043254312 ], [ -95.323838959384702, 29.007211042935197 ], [ -95.324553959390215, 29.007469043370126 ], [ -95.32526695978963, 29.008105043017661 ], [ -95.32738295982945, 29.010994044113691 ], [ -95.327492960035457, 29.011042044041826 ], [ -95.327622960643453, 29.01128404387293 ], [ -95.327962960940098, 29.011619043744989 ], [ -95.328329960191596, 29.011969043951503 ], [ -95.328324960265917, 29.012268043977677 ], [ -95.328316960459759, 29.012718044636461 ], [ -95.328319960860114, 29.01353704413064 ], [ -95.328367960315674, 29.014265044303951 ], [ -95.328420960963882, 29.014861044955854 ], [ -95.328422960879365, 29.01489004445876 ], [ -95.328469960861071, 29.015560045270924 ], [ -95.328495961255314, 29.016050045326015 ], [ -95.328515960358885, 29.016436044611574 ], [ -95.32855596094565, 29.01757504554881 ], [ -95.328576960605304, 29.018526045324403 ], [ -95.328586960790503, 29.018639045280541 ], [ -95.328582960563608, 29.019634045653248 ], [ -95.328618961263757, 29.021013045922629 ], [ -95.328682960854493, 29.02201404605491 ], [ -95.328688960970666, 29.02236804583573 ], [ -95.328708961613955, 29.022854046761712 ], [ -95.328705961470249, 29.023127046448547 ], [ -95.328657961435084, 29.023888046512209 ], [ -95.328557961376475, 29.024373046450972 ], [ -95.328287960990622, 29.02512604642369 ], [ -95.327964961312574, 29.026111047446534 ], [ -95.327725961462605, 29.026767047225807 ], [ -95.327604960670627, 29.027175047621007 ], [ -95.327540960866813, 29.027496047279037 ], [ -95.327521960613794, 29.027767047018994 ], [ -95.327528961198666, 29.028114047160692 ], [ -95.327570961197338, 29.028542047486749 ], [ -95.327643960721048, 29.028913047515854 ], [ -95.32776296133396, 29.029261047736842 ], [ -95.327913961687827, 29.0296010477294 ], [ -95.328143961549443, 29.029987047638265 ], [ -95.328397961355293, 29.030314047889405 ], [ -95.328952961225099, 29.030927048234513 ], [ -95.32921996187946, 29.031243048472529 ], [ -95.329287961801953, 29.031336047690914 ], [ -95.329447961464268, 29.031555047870228 ], [ -95.329966961527916, 29.032335048108621 ], [ -95.331700962295159, 29.035027049150727 ], [ -95.332105962705924, 29.035663049116302 ], [ -95.332361962344294, 29.036042048740637 ], [ -95.333590963324767, 29.037965049497274 ], [ -95.333656962961342, 29.038061049726927 ], [ -95.336065963752361, 29.041808050053156 ], [ -95.336179963700559, 29.042018050098797 ], [ -95.336547964328787, 29.042463050015559 ], [ -95.33883896499664, 29.044999050960051 ], [ -95.339858964764659, 29.046113050858256 ], [ -95.34048696526969, 29.046831051157486 ], [ -95.34085696510347, 29.047241050579643 ], [ -95.340988965789592, 29.047387050714669 ], [ -95.341055965557416, 29.047462051247116 ], [ -95.341822965845793, 29.048312051626247 ], [ -95.343234966120662, 29.049825051714713 ], [ -95.344905966727779, 29.051648051378276 ], [ -95.347346966827345, 29.054273051937141 ], [ -95.348754967649029, 29.055822052161247 ], [ -95.348830967999007, 29.055905053012967 ], [ -95.349853967845817, 29.057004053115914 ], [ -95.350916968079275, 29.058120053151377 ], [ -95.350938967865133, 29.057959053324886 ], [ -95.351238968797858, 29.05745805319485 ], [ -95.351377968555482, 29.057203052874879 ], [ -95.351684968595734, 29.05663805245063 ], [ -95.35173696823982, 29.056542052824472 ], [ -95.351881968179711, 29.056276052760904 ], [ -95.351940968853739, 29.056169052337893 ], [ -95.352114968605335, 29.055868052775683 ], [ -95.352576968104998, 29.055052052155411 ], [ -95.354079969091146, 29.052365051656693 ], [ -95.354499968963282, 29.051636051549469 ], [ -95.356195969510452, 29.04863805086989 ], [ -95.356329969141044, 29.048362051136834 ], [ -95.356601969215731, 29.047952050769901 ], [ -95.35701096910681, 29.047426050100448 ], [ -95.357391969538156, 29.047008050403626 ], [ -95.357867969237745, 29.04653805017767 ], [ -95.358295969756441, 29.046178049975371 ], [ -95.358916969917743, 29.045739050535893 ], [ -95.359563970433243, 29.04532605021749 ], [ -95.360104970475263, 29.04505505021984 ], [ -95.360709970388683, 29.044774049976816 ], [ -95.36128997031652, 29.044527049907163 ], [ -95.362339970677482, 29.04406604943383 ], [ -95.365554971645807, 29.042645049605127 ], [ -95.368327971587377, 29.041437048839231 ], [ -95.36846197169136, 29.041373048864141 ], [ -95.368892972041508, 29.041181048825688 ], [ -95.369145972730522, 29.04104604891786 ], [ -95.369362972729277, 29.040936048934377 ], [ -95.369447971934335, 29.040887048332131 ], [ -95.369774972028921, 29.040702048603368 ], [ -95.369979972639129, 29.040587048355761 ], [ -95.370119972703051, 29.040524048252561 ], [ -95.370180972675726, 29.040497048492337 ], [ -95.370207972767332, 29.040478048639002 ], [ -95.370265972019993, 29.040438048233394 ], [ -95.370316972627293, 29.040402048456023 ], [ -95.370382972757454, 29.04035604886138 ], [ -95.370976972708334, 29.040043048320392 ], [ -95.371313973041637, 29.039853048225144 ], [ -95.371483973130637, 29.039746048445689 ], [ -95.371553972754612, 29.039697048213512 ], [ -95.372054972677944, 29.039359048205025 ], [ -95.373566973044149, 29.038166048215853 ], [ -95.373849973314307, 29.037895048044241 ], [ -95.373991972955608, 29.037746047704001 ], [ -95.374210973040064, 29.037440047771714 ], [ -95.374377973652088, 29.037099048013545 ], [ -95.374504973458286, 29.03673504759503 ], [ -95.374562973639641, 29.036421047469926 ], [ -95.374579973823487, 29.036060047317729 ], [ -95.374540973494916, 29.035686047659201 ], [ -95.374303973324473, 29.034186047397522 ], [ -95.374231973650637, 29.033795047165299 ], [ -95.374165973219192, 29.033439046717412 ], [ -95.374036972890522, 29.032677046828415 ], [ -95.373941972637255, 29.032041046857284 ], [ -95.373928973526503, 29.031750046344772 ], [ -95.373937973075272, 29.031454046439233 ], [ -95.373963973134039, 29.031242046544996 ], [ -95.374052973298376, 29.030981046770986 ], [ -95.37414397328115, 29.030790046772474 ], [ -95.374283972895057, 29.030573046157993 ], [ -95.374464973487704, 29.030371046658079 ], [ -95.374611973255497, 29.030240046312674 ], [ -95.374977973370648, 29.029992046644669 ], [ -95.375666972964567, 29.029676046510414 ], [ -95.376460973997467, 29.029330046592566 ], [ -95.376830973937189, 29.029187046321411 ], [ -95.376907974078364, 29.029157046223293 ], [ -95.37715097391694, 29.029036046140444 ], [ -95.377701973748529, 29.02880204562419 ], [ -95.377854974010674, 29.028737045589359 ], [ -95.378344974130769, 29.028564045880287 ], [ -95.378585973654836, 29.0285050455904 ], [ -95.378790974580141, 29.028448045886247 ], [ -95.379075974314986, 29.028427045937967 ], [ -95.379545974706488, 29.028416045819061 ], [ -95.379989974157951, 29.028451046071982 ], [ -95.380274974342001, 29.028502046213244 ], [ -95.381786974920615, 29.028692046180382 ], [ -95.381913975354692, 29.028709045690636 ], [ -95.382739974773514, 29.028817046023097 ], [ -95.383065974971259, 29.028869045759631 ], [ -95.383135975726645, 29.028880046302739 ], [ -95.383217974912753, 29.0288880454032 ], [ -95.383313975109573, 29.028898045591401 ], [ -95.383684975517468, 29.028936045570408 ], [ -95.384159975173048, 29.028926046118066 ], [ -95.384244975436729, 29.028924045779608 ], [ -95.38421897524286, 29.028800045390771 ], [ -95.384212975665946, 29.028640046141348 ], [ -95.384095975361177, 29.025491044935006 ], [ -95.38403297569748, 29.025307045097684 ], [ -95.383912975232491, 29.025186044980241 ], [ -95.383745974986823, 29.02511004506146 ], [ -95.383734975560117, 29.025105045287692 ], [ -95.383511975690183, 29.025100045253343 ], [ -95.382142974508312, 29.025123045432974 ], [ -95.382101974518662, 29.025124045523025 ], [ -95.381947974437679, 29.025126045461331 ], [ -95.381908975355103, 29.025127044845732 ], [ -95.381828975219591, 29.025129045098645 ], [ -95.38175497496789, 29.025130044827304 ], [ -95.381705974504143, 29.025131044746228 ], [ -95.381048975107575, 29.025143044923816 ], [ -95.380894974639489, 29.025146044811876 ], [ -95.380133974286551, 29.025160045236067 ], [ -95.378974974288781, 29.024793045365012 ], [ -95.378571973688693, 29.024698044962218 ], [ -95.378369974200027, 29.024589044900594 ], [ -95.378306974348277, 29.024340044891918 ], [ -95.378239973362682, 29.023231044572494 ], [ -95.378069974155537, 29.020938044724396 ], [ -95.378046973247464, 29.02075404473819 ], [ -95.37805697321825, 29.02056404433527 ], [ -95.378109973900592, 29.020358044015758 ], [ -95.378115973724022, 29.020293044105962 ], [ -95.378118973719609, 29.020265044040709 ], [ -95.378131973843722, 29.020141044228854 ], [ -95.378104973617994, 29.019871044322766 ], [ -95.378070974112418, 29.019632043827226 ], [ -95.378006974023478, 29.019334044275226 ], [ -95.377916973949624, 29.019123044087397 ], [ -95.377693973875068, 29.018726043971029 ], [ -95.377624973732551, 29.018643044113094 ], [ -95.377561972989909, 29.018566044051997 ], [ -95.377147972989434, 29.018099043427004 ], [ -95.377122973222072, 29.018070044211406 ], [ -95.376980973589752, 29.017891044128078 ], [ -95.376930972942731, 29.017828043308207 ], [ -95.377045973121255, 29.017738043504867 ], [ -95.379336974162655, 29.015940043118402 ], [ -95.379909974082082, 29.01548804327809 ], [ -95.380015974241502, 29.015404043293387 ], [ -95.381749974325288, 29.014037042559846 ], [ -95.382941974987162, 29.012795042265481 ], [ -95.383554974531634, 29.012145042590692 ], [ -95.383742975098372, 29.011628042414038 ], [ -95.384487974605634, 29.010827041889115 ], [ -95.384621974980305, 29.010769042089784 ], [ -95.38504197497177, 29.010589041965716 ], [ -95.385653975671403, 29.010519041608728 ], [ -95.386217974950696, 29.010610042265846 ], [ -95.386686975301942, 29.010944042316364 ], [ -95.38714497597492, 29.011462042314303 ], [ -95.387729975654878, 29.011959041815516 ], [ -95.388182976066545, 29.012332042117553 ], [ -95.388731976455247, 29.012785042159102 ], [ -95.388843975626372, 29.012878042658301 ], [ -95.388874976646633, 29.012919042439105 ], [ -95.38933697643229, 29.013524042070831 ], [ -95.389676976235251, 29.013932042860183 ], [ -95.390499976224177, 29.014919042855709 ], [ -95.393868977287582, 29.018882043068203 ], [ -95.394224978165326, 29.019298043730089 ], [ -95.394272977850164, 29.019355043255118 ], [ -95.39432197811594, 29.019411043432434 ], [ -95.394443977816508, 29.019554043664048 ], [ -95.394411977669677, 29.019443043447517 ], [ -95.394402977761175, 29.019409043930576 ], [ -95.393721977610994, 29.016987042720189 ], [ -95.393677977508034, 29.016812043466537 ], [ -95.393324977516798, 29.015583042873327 ], [ -95.393282976881025, 29.015463043114167 ], [ -95.392694977176703, 29.013423042614637 ], [ -95.392489976814204, 29.012743042514025 ], [ -95.392383976699364, 29.012294042251426 ], [ -95.39183997686375, 29.010495041927751 ], [ -95.391826976634903, 29.010465042174289 ], [ -95.391771977138134, 29.010339041408908 ], [ -95.391695977019424, 29.010163041327818 ], [ -95.391410977126114, 29.009508041263025 ], [ -95.391341976889876, 29.009328041991964 ], [ -95.391255976524832, 29.009141041715942 ], [ -95.3911089766152, 29.008850041467877 ], [ -95.389351975621125, 29.005537040624489 ], [ -95.389283975947393, 29.005418040607807 ], [ -95.389073975891293, 29.005049041113935 ], [ -95.388924975348004, 29.004757040348849 ], [ -95.38926897552048, 29.004721040199197 ], [ -95.38938297601635, 29.00470904082416 ], [ -95.389577976068452, 29.004666040770356 ], [ -95.38963197650655, 29.004658040231071 ], [ -95.389919975826814, 29.004617040672489 ], [ -95.390204976261657, 29.004551040733428 ], [ -95.39043097631243, 29.004506040734263 ], [ -95.390505975853372, 29.004491040919419 ], [ -95.390789976622273, 29.004444040378463 ], [ -95.39121097606558, 29.004402040509309 ], [ -95.391554976442691, 29.004396040896939 ], [ -95.391704976817266, 29.004394040431762 ], [ -95.391929976677545, 29.004408040429119 ], [ -95.391992976618354, 29.004412040814575 ], [ -95.392287976270367, 29.004457040118147 ], [ -95.392485976858026, 29.0044830403798 ], [ -95.392801976346647, 29.004553040815303 ], [ -95.393171976766652, 29.004682040556268 ], [ -95.393234976965175, 29.004709040307496 ], [ -95.393441976773389, 29.004797040087439 ], [ -95.393504976562426, 29.004827040513618 ], [ -95.393780976675046, 29.004960040839382 ], [ -95.394175977428716, 29.005182040390554 ], [ -95.394464977590729, 29.005345040574817 ], [ -95.395319977207492, 29.005848040744262 ], [ -95.395668977261352, 29.006041040356628 ], [ -95.395971977229834, 29.006226040647466 ], [ -95.397018977603864, 29.006773040649954 ], [ -95.397450977585365, 29.006976040516989 ], [ -95.399124978053251, 29.007705041388487 ], [ -95.399970978526099, 29.008052040543525 ], [ -95.400181979256701, 29.008149040912095 ], [ -95.400817979100324, 29.008414040905681 ], [ -95.401027978885082, 29.008502041061863 ], [ -95.401607978739221, 29.008744041253088 ], [ -95.402114978949001, 29.008966041174389 ], [ -95.402693979066484, 29.009200041586301 ], [ -95.403172979286538, 29.00937804091868 ], [ -95.403725979305634, 29.009561041126755 ], [ -95.404323979682971, 29.009701041489308 ], [ -95.404449980081012, 29.009730041378262 ], [ -95.40448497956632, 29.009735040987074 ], [ -95.404724979645295, 29.009770041052381 ], [ -95.404947980302211, 29.009802040788344 ], [ -95.405239980320331, 29.009836041397033 ], [ -95.40556598030625, 29.009848041608059 ], [ -95.405831980209058, 29.009865041435429 ], [ -95.406450980662214, 29.009879041204755 ], [ -95.407372981152676, 29.00987304129097 ], [ -95.409423981734449, 29.009833041260684 ], [ -95.412918982224085, 29.009766040554037 ], [ -95.414985982380742, 29.009733040708362 ], [ -95.416508983214626, 29.00971504120032 ], [ -95.417238983518487, 29.009697040706182 ], [ -95.417671983656831, 29.009702040726864 ], [ -95.418054983835589, 29.009721040710271 ], [ -95.418612983476137, 29.009783041038592 ], [ -95.419128983441666, 29.009864040839776 ], [ -95.41925098343448, 29.00989204049602 ], [ -95.419678984146017, 29.009990040510402 ], [ -95.420087984425763, 29.010090041009317 ], [ -95.420362984573956, 29.010175040887106 ], [ -95.420523984054256, 29.010225040392111 ], [ -95.420742983917251, 29.010297041010123 ], [ -95.420856984333241, 29.010334041133618 ], [ -95.421135983824357, 29.010441040890473 ], [ -95.421327984516211, 29.010498040380913 ], [ -95.421563984881487, 29.010597041078139 ], [ -95.421679984502163, 29.010645041210278 ], [ -95.422195984163508, 29.010839040789492 ], [ -95.422706984431485, 29.011035040695258 ], [ -95.423433984943884, 29.011291041096765 ], [ -95.424810985696993, 29.011789040705601 ], [ -95.425128984926246, 29.011901040610937 ], [ -95.426143985846593, 29.012259041207255 ], [ -95.42640198540613, 29.012361040900025 ], [ -95.426698985926734, 29.012482041164112 ], [ -95.427103986306477, 29.012634041422707 ], [ -95.427313986047125, 29.012709040944198 ], [ -95.427852985631475, 29.012911041178537 ], [ -95.428563986040601, 29.013200041363262 ], [ -95.42910298609182, 29.013454041046543 ], [ -95.429464986345977, 29.01363704133875 ], [ -95.430144986925555, 29.014055041563932 ], [ -95.430580986877644, 29.01439504109932 ], [ -95.431233987142903, 29.014937041253653 ], [ -95.431277987551198, 29.01485304155397 ], [ -95.43131498670661, 29.014711041005306 ], [ -95.431417986877449, 29.014321040913728 ], [ -95.431481987541886, 29.014023041378355 ], [ -95.431672987159487, 29.013995041453519 ], [ -95.431984987523578, 29.013720041169194 ], [ -95.432114987006173, 29.013307041165135 ], [ -95.432583987329139, 29.012505040550877 ], [ -95.433187987850928, 29.011252040723384 ], [ -95.433193987089183, 29.011240040480612 ], [ -95.433510987553205, 29.010587040430735 ], [ -95.435421987747048, 29.006639040014189 ], [ -95.435881987626317, 29.005340039695522 ], [ -95.436143987795973, 29.004869039537123 ], [ -95.436592988005216, 29.004599039275639 ], [ -95.436618987638838, 29.004393039290576 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1493, "Tract": "48039660200", "Area_SqMi": 6.9912158901034713, "total_2009": 1011, "total_2010": 954, "total_2011": 1024, "total_2012": 1724, "total_2013": 1790, "total_2014": 1849, "total_2015": 1320, "total_2016": 1347, "total_2017": 1371, "total_2018": 1689, "total_2019": 1656, "total_2020": 3845, "age1": 405, "age2": 672, "age3": 368, "earn1": 269, "earn2": 454, "earn3": 722, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 445, "naics_s05": 178, "naics_s06": 52, "naics_s07": 195, "naics_s08": 33, "naics_s09": 9, "naics_s10": 34, "naics_s11": 23, "naics_s12": 51, "naics_s13": 0, "naics_s14": 97, "naics_s15": 10, "naics_s16": 52, "naics_s17": 0, "naics_s18": 206, "naics_s19": 60, "naics_s20": 0, "race1": 1238, "race2": 119, "race3": 14, "race4": 51, "race5": 2, "race6": 21, "ethnicity1": 954, "ethnicity2": 491, "edu1": 256, "edu2": 306, "edu3": 319, "edu4": 159, "Shape_Length": 65740.306844013816, "Shape_Area": 194903133.43050304, "total_2021": 1480, "total_2022": 1445 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.260109965001973, 29.521368151890158 ], [ -95.259983964640568, 29.521168152066839 ], [ -95.259702964248461, 29.520751151606788 ], [ -95.258941964691545, 29.519629151510728 ], [ -95.258905964511683, 29.519575150935157 ], [ -95.258613963710019, 29.519154151303777 ], [ -95.258326964135435, 29.518726151102683 ], [ -95.258057963529595, 29.51837015070015 ], [ -95.256731963284139, 29.516424150752869 ], [ -95.256662963406924, 29.516323150887612 ], [ -95.255709962810784, 29.514914150837882 ], [ -95.255056962664241, 29.513950150307071 ], [ -95.254845962984348, 29.513638150629514 ], [ -95.254395962736098, 29.512949150206769 ], [ -95.254054962340234, 29.512452150041995 ], [ -95.253556962541268, 29.511725149463619 ], [ -95.253336963001942, 29.511393149806736 ], [ -95.252907962156172, 29.510750149477982 ], [ -95.251817961554067, 29.509215149513491 ], [ -95.251430961636174, 29.508653148996334 ], [ -95.250953961961102, 29.508007149441852 ], [ -95.250743961735807, 29.507688149561865 ], [ -95.25051396148443, 29.507336148771707 ], [ -95.250439961332887, 29.50726714913365 ], [ -95.250331961125198, 29.507075149075863 ], [ -95.249493961645385, 29.505799149163639 ], [ -95.249394961320363, 29.5056471488951 ], [ -95.248881961106562, 29.504914148841593 ], [ -95.248685960531731, 29.504635149035241 ], [ -95.248239961074063, 29.503999148750726 ], [ -95.248016960315425, 29.503681148383993 ], [ -95.247512960155021, 29.502560148200413 ], [ -95.247391960098696, 29.502163147968144 ], [ -95.247384961014347, 29.502140147914904 ], [ -95.247353960732596, 29.502037148167879 ], [ -95.247312960280155, 29.501906147692008 ], [ -95.24730696049221, 29.501886148456268 ], [ -95.247298960090433, 29.501860148418277 ], [ -95.247287960815569, 29.50182514768548 ], [ -95.247235960332674, 29.501657147724167 ], [ -95.247224960037215, 29.501622147857535 ], [ -95.247222960220938, 29.501611147632449 ], [ -95.247197960427144, 29.501477147886064 ], [ -95.247191960275615, 29.501447147937984 ], [ -95.24718396087053, 29.501405148431601 ], [ -95.246996960573142, 29.500394147562016 ], [ -95.246964960428116, 29.499978147775529 ], [ -95.246889960326001, 29.498957147481864 ], [ -95.246796959899612, 29.497011146885214 ], [ -95.246715960476124, 29.495539146555746 ], [ -95.246650960058005, 29.494294146595916 ], [ -95.246592960120253, 29.493197146324896 ], [ -95.246579959994037, 29.49288014642736 ], [ -95.246455959838897, 29.490453145681542 ], [ -95.246435960120635, 29.489993145778524 ], [ -95.246400959619265, 29.489386145934272 ], [ -95.246287959422276, 29.48711714543736 ], [ -95.246238959364518, 29.48646014456525 ], [ -95.246199959832097, 29.485592144463297 ], [ -95.246169959303302, 29.48493214459177 ], [ -95.246128959495707, 29.483683144784077 ], [ -95.246127959071572, 29.483596144252758 ], [ -95.246119959773168, 29.482729144486346 ], [ -95.246101959109993, 29.482386143871402 ], [ -95.246077959494784, 29.481915144384214 ], [ -95.246043958929292, 29.480607143927504 ], [ -95.246041958804241, 29.480520144142158 ], [ -95.24603295900036, 29.480349143892152 ], [ -95.245994958816567, 29.478592143738428 ], [ -95.245981958811612, 29.478202143126882 ], [ -95.245908959018138, 29.475759142809814 ], [ -95.245879958981931, 29.474746142580244 ], [ -95.245866958796583, 29.474435142873485 ], [ -95.245865959466428, 29.47438014226158 ], [ -95.244635958734136, 29.474221142628345 ], [ -95.24334095849585, 29.474062142910615 ], [ -95.241947957649501, 29.473871142727315 ], [ -95.240767958091268, 29.473719142240011 ], [ -95.240091957834395, 29.473626142855395 ], [ -95.238972957216163, 29.473489142396367 ], [ -95.235475956640769, 29.473041142927848 ], [ -95.23203795544633, 29.472610142266046 ], [ -95.231814955576951, 29.472581142261937 ], [ -95.231754955195143, 29.472575142940823 ], [ -95.231721955363952, 29.472739142236531 ], [ -95.23161095563259, 29.473299142448095 ], [ -95.23152595562928, 29.473829143171148 ], [ -95.231346955484952, 29.474947142983538 ], [ -95.230955955221916, 29.477385143155864 ], [ -95.230952955746261, 29.477405143170415 ], [ -95.230749955117432, 29.478642143745642 ], [ -95.230656954849081, 29.47917414414146 ], [ -95.230632955779555, 29.479312143799874 ], [ -95.230273954963351, 29.481356144562536 ], [ -95.22999595496708, 29.482917145194147 ], [ -95.229837955778962, 29.483803144633576 ], [ -95.229664955349406, 29.484779145485543 ], [ -95.229467955131412, 29.484959145423701 ], [ -95.229451955433504, 29.485001145333502 ], [ -95.228933955407001, 29.487935146147269 ], [ -95.228913955200682, 29.488046145656579 ], [ -95.228825955720794, 29.488541145910286 ], [ -95.227944955586437, 29.493519147109012 ], [ -95.2277769557124, 29.494466147424749 ], [ -95.227676954908361, 29.495029147568477 ], [ -95.227659955216794, 29.495130147697342 ], [ -95.227602955381798, 29.495433147486128 ], [ -95.227492955032034, 29.49601814795232 ], [ -95.227016955035438, 29.498481147770569 ], [ -95.226579955151095, 29.500767148616806 ], [ -95.226527955466111, 29.501019148633077 ], [ -95.226385955207235, 29.501773148783474 ], [ -95.226314955101003, 29.502141149190393 ], [ -95.226269955675789, 29.502375148948019 ], [ -95.226219955627514, 29.502636148890879 ], [ -95.226022955053267, 29.503664149586644 ], [ -95.225948954780065, 29.504046148932744 ], [ -95.22567995553969, 29.505254149624669 ], [ -95.225644954962362, 29.505410149780566 ], [ -95.225623954671818, 29.505541149840337 ], [ -95.22535095529355, 29.507210149725491 ], [ -95.225158955110047, 29.508363150217871 ], [ -95.225068955351361, 29.508899150585307 ], [ -95.225001954841943, 29.509210150096433 ], [ -95.224585954924294, 29.511131150376819 ], [ -95.224582954790819, 29.51114915055313 ], [ -95.22429595555829, 29.512470150939652 ], [ -95.223963954927939, 29.5140091514875 ], [ -95.223926955277477, 29.514181151018935 ], [ -95.223892955225807, 29.514337151777649 ], [ -95.223866955586402, 29.514455151343288 ], [ -95.22386195478002, 29.514481151170738 ], [ -95.223855955085313, 29.514508151919809 ], [ -95.223783955272538, 29.514839151727301 ], [ -95.223758955268607, 29.51495615126942 ], [ -95.223687954936494, 29.515287151264417 ], [ -95.223672955353948, 29.515356151226104 ], [ -95.223629955475872, 29.515553151774217 ], [ -95.223594954850469, 29.515720151333234 ], [ -95.22346095547411, 29.516335152163613 ], [ -95.223432955165762, 29.516465152304676 ], [ -95.223392954592256, 29.516698151833285 ], [ -95.223350955257075, 29.516948152439426 ], [ -95.22327995463894, 29.517364152014693 ], [ -95.223261955504157, 29.517472151971322 ], [ -95.223219955515688, 29.517708152561799 ], [ -95.223212955376155, 29.517749152023185 ], [ -95.223179955214121, 29.517942152255397 ], [ -95.223074954538404, 29.518565152454585 ], [ -95.222853954889544, 29.51987315257032 ], [ -95.222497954866412, 29.521999152983224 ], [ -95.222254955546433, 29.523404153808535 ], [ -95.222158954732535, 29.523988153664067 ], [ -95.221923954836157, 29.525343153994356 ], [ -95.221743954741754, 29.526422153693691 ], [ -95.22134995525299, 29.528707154509142 ], [ -95.221342955030693, 29.528750154321951 ], [ -95.221252954892066, 29.529243154562145 ], [ -95.221035954861492, 29.530565154707144 ], [ -95.221012954587309, 29.530708155222278 ], [ -95.22089795465233, 29.531419154932536 ], [ -95.220865954971458, 29.531621155043108 ], [ -95.220422954604899, 29.533986155193759 ], [ -95.22030995518233, 29.534625155636206 ], [ -95.219901955088929, 29.536773155979994 ], [ -95.219755955022663, 29.537551156571716 ], [ -95.219592954816235, 29.53834415663432 ], [ -95.219456954573445, 29.539149156489984 ], [ -95.219385955121766, 29.539529156630216 ], [ -95.219097955218444, 29.541251157061843 ], [ -95.219171955466138, 29.541287157107053 ], [ -95.219469955000122, 29.541433156998355 ], [ -95.219680954836619, 29.541537157568627 ], [ -95.220299955676595, 29.5418381568232 ], [ -95.221063955509408, 29.542210157130029 ], [ -95.222427956183125, 29.542869157571655 ], [ -95.223355956275043, 29.543316157190958 ], [ -95.225074956535948, 29.544131157696341 ], [ -95.226626957110042, 29.54486815775449 ], [ -95.226835957207172, 29.544970157331019 ], [ -95.228800958217519, 29.545924157460618 ], [ -95.229796957980653, 29.546413157452314 ], [ -95.230916958502647, 29.546935157926651 ], [ -95.231921958912096, 29.547394157609048 ], [ -95.232637959192488, 29.546730157659951 ], [ -95.235173959426149, 29.54438515700275 ], [ -95.236224959407963, 29.543417157222152 ], [ -95.23785795974554, 29.541911156774546 ], [ -95.238432960004218, 29.541381156168068 ], [ -95.238684960315354, 29.541148156647633 ], [ -95.238952960083139, 29.540901156478977 ], [ -95.240305960008641, 29.539652156247236 ], [ -95.240935960693946, 29.539085155545493 ], [ -95.241732960831698, 29.538367156139898 ], [ -95.242570961296892, 29.537614155805006 ], [ -95.242780961382991, 29.537425155488766 ], [ -95.244765961170003, 29.535599154883759 ], [ -95.245849962113766, 29.534590154764903 ], [ -95.246928961633074, 29.533588154689802 ], [ -95.247183962113709, 29.533351154496387 ], [ -95.248523962290903, 29.532104154468136 ], [ -95.249167962228157, 29.531507153758248 ], [ -95.249238961883535, 29.531442153871662 ], [ -95.250178962546812, 29.530590154318375 ], [ -95.250693962409954, 29.530121153938602 ], [ -95.251032962247621, 29.529804154030654 ], [ -95.25133196274821, 29.529544154088363 ], [ -95.251638962602883, 29.529257153679755 ], [ -95.251822962842525, 29.529086153581893 ], [ -95.251935963252933, 29.528982153209725 ], [ -95.252192963453041, 29.528745153909941 ], [ -95.254323963599305, 29.526771153244699 ], [ -95.256864964272225, 29.524412152338162 ], [ -95.257454964115823, 29.523818152115933 ], [ -95.257578964012524, 29.523710152653326 ], [ -95.257894964367665, 29.523418151862295 ], [ -95.258709964328602, 29.522669152139699 ], [ -95.258941964665709, 29.522451152190882 ], [ -95.259283964983268, 29.522127152274361 ], [ -95.259453964222146, 29.521966151770208 ], [ -95.259854964464267, 29.521598151382122 ], [ -95.260109965001973, 29.521368151890158 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1494, "Tract": "48071710500", "Area_SqMi": 261.47470772777615, "total_2009": 1146, "total_2010": 1168, "total_2011": 1196, "total_2012": 1109, "total_2013": 1149, "total_2014": 960, "total_2015": 936, "total_2016": 895, "total_2017": 929, "total_2018": 930, "total_2019": 641, "total_2020": 660, "age1": 151, "age2": 454, "age3": 226, "earn1": 143, "earn2": 308, "earn3": 380, "naics_s01": 38, "naics_s02": 3, "naics_s03": 0, "naics_s04": 25, "naics_s05": 59, "naics_s06": 7, "naics_s07": 60, "naics_s08": 34, "naics_s09": 11, "naics_s10": 37, "naics_s11": 0, "naics_s12": 24, "naics_s13": 0, "naics_s14": 22, "naics_s15": 2, "naics_s16": 146, "naics_s17": 10, "naics_s18": 36, "naics_s19": 9, "naics_s20": 308, "race1": 699, "race2": 89, "race3": 8, "race4": 27, "race5": 0, "race6": 8, "ethnicity1": 603, "ethnicity2": 228, "edu1": 150, "edu2": 188, "edu3": 228, "edu4": 114, "Shape_Length": 449195.71435638203, "Shape_Area": 7289467333.0155582, "total_2021": 783, "total_2022": 831 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.790717845549139, 29.548739173361565 ], [ -94.79062884526995, 29.548511172642787 ], [ -94.790611845524424, 29.548406172452207 ], [ -94.790580844718278, 29.548213172594654 ], [ -94.790529845140355, 29.547892172416116 ], [ -94.79041984479116, 29.547658172545123 ], [ -94.790336845411332, 29.547483172609613 ], [ -94.790319845152098, 29.547448172286447 ], [ -94.790309845291645, 29.547427172800219 ], [ -94.790270844606326, 29.547344172358763 ], [ -94.790254845058854, 29.547310172308261 ], [ -94.790236845082646, 29.547273172248548 ], [ -94.790190845321163, 29.547204172404211 ], [ -94.789985844840999, 29.546895172711853 ], [ -94.789917844811029, 29.546792172397922 ], [ -94.789826844981164, 29.546720172601994 ], [ -94.789556845158032, 29.546507172699314 ], [ -94.78946684455525, 29.54643717235178 ], [ -94.789414844391516, 29.546377172578676 ], [ -94.789390844616321, 29.546349172778459 ], [ -94.789246844829165, 29.546215172110248 ], [ -94.78918984496444, 29.546162172681012 ], [ -94.788862844875098, 29.54598117199296 ], [ -94.788641844496638, 29.545837171951355 ], [ -94.788485844663697, 29.545700172274294 ], [ -94.788384844352123, 29.545596172144286 ], [ -94.788183844630211, 29.545354172369461 ], [ -94.788089843888059, 29.545200172433233 ], [ -94.788076844449151, 29.545161172625242 ], [ -94.788114844340726, 29.545002172622475 ], [ -94.788095844073894, 29.544870171923201 ], [ -94.78809584389947, 29.544815172075509 ], [ -94.788120844020938, 29.544721172388098 ], [ -94.788114844702278, 29.544644172118716 ], [ -94.788026844508863, 29.544562172336001 ], [ -94.787929844661875, 29.544489172207136 ], [ -94.787894844201404, 29.544463172057863 ], [ -94.787843844320491, 29.544402172030974 ], [ -94.787611843914405, 29.544023172373066 ], [ -94.787485843931933, 29.543858171630436 ], [ -94.787284844037174, 29.543715172166792 ], [ -94.787120844104905, 29.543544172169003 ], [ -94.787020843975355, 29.543396172310953 ], [ -94.786938844036882, 29.543330171803717 ], [ -94.786649843557939, 29.5430381716677 ], [ -94.786598843616915, 29.542934172105173 ], [ -94.786731843595618, 29.542653171842996 ], [ -94.786743844044722, 29.542609171469866 ], [ -94.786737843690929, 29.542543171554826 ], [ -94.786718844173365, 29.542505171543702 ], [ -94.786492843921508, 29.542241171605436 ], [ -94.786404844062886, 29.542186171735334 ], [ -94.786272843925872, 29.542136171829821 ], [ -94.78625384401667, 29.542103171802662 ], [ -94.786265843391448, 29.542070171951838 ], [ -94.78642384426044, 29.541850171212662 ], [ -94.786448843342711, 29.541784171409475 ], [ -94.786479843339649, 29.541603171248333 ], [ -94.786517843844749, 29.541526171687167 ], [ -94.786586843820672, 29.541454171403679 ], [ -94.786668843405877, 29.541300171666851 ], [ -94.78666884399891, 29.541245171777192 ], [ -94.786617843665354, 29.541188171753831 ], [ -94.786600843537315, 29.541177171738521 ], [ -94.78658684365513, 29.541163171254567 ], [ -94.786467843247294, 29.541014171098787 ], [ -94.786347843990342, 29.540959171077965 ], [ -94.786234844021635, 29.540954171107622 ], [ -94.786002843258899, 29.540756171025237 ], [ -94.785920843301255, 29.540695171649912 ], [ -94.785794843352463, 29.540662171706543 ], [ -94.785555843047106, 29.540469171417907 ], [ -94.78542384342137, 29.540404171262431 ], [ -94.785385843334893, 29.540332171342826 ], [ -94.785272843265972, 29.540211171094423 ], [ -94.785197843695329, 29.540123171409018 ], [ -94.785058843047622, 29.540084171202722 ], [ -94.78488284355582, 29.540007170902122 ], [ -94.784643842963433, 29.539743170981463 ], [ -94.78456084299728, 29.539631171417462 ], [ -94.784549842971501, 29.539617171396085 ], [ -94.78448084296619, 29.539474170880009 ], [ -94.784442843385449, 29.539276171013064 ], [ -94.784448843407034, 29.539111170703819 ], [ -94.784436843595032, 29.539006170739306 ], [ -94.784411843390799, 29.538929171342716 ], [ -94.784367842733019, 29.538891170729045 ], [ -94.784379843426464, 29.538825171254338 ], [ -94.784323842997082, 29.538731171065773 ], [ -94.784034842529948, 29.538104170658492 ], [ -94.783839842643374, 29.537604171031539 ], [ -94.783826842407223, 29.537504171083555 ], [ -94.78379584331509, 29.537257170929664 ], [ -94.783804842511344, 29.537223171058276 ], [ -94.783902842983281, 29.536900170377507 ], [ -94.784109843194813, 29.536509170498082 ], [ -94.784127843303239, 29.536441170766384 ], [ -94.784160843107074, 29.536322170670847 ], [ -94.784140843340964, 29.536163170570877 ], [ -94.784135842934887, 29.536124170587236 ], [ -94.783757842777277, 29.535640170825836 ], [ -94.783242843127212, 29.535277170121276 ], [ -94.782943842492443, 29.535123170762819 ], [ -94.782846842765551, 29.535074170072136 ], [ -94.782638842404438, 29.534903170427292 ], [ -94.782494842456074, 29.534744169963741 ], [ -94.782324842751464, 29.534480170581098 ], [ -94.782286842257761, 29.534469170068355 ], [ -94.782242842532341, 29.534414170351244 ], [ -94.782079841811907, 29.534337170642019 ], [ -94.781865842229905, 29.534183170109323 ], [ -94.781701842593165, 29.534012170487497 ], [ -94.781620842248245, 29.533907170364202 ], [ -94.781588842225432, 29.533825170472475 ], [ -94.781563842271908, 29.533715170490272 ], [ -94.781563841647682, 29.533665170476837 ], [ -94.781595842215182, 29.533611170306493 ], [ -94.781651841814593, 29.533561169661795 ], [ -94.781658842270218, 29.533517169844 ], [ -94.781620842506982, 29.533302170357988 ], [ -94.781645842213834, 29.533253169640471 ], [ -94.781677842433609, 29.533225170269397 ], [ -94.781689841944512, 29.533182169674692 ], [ -94.78168984200515, 29.533154169894868 ], [ -94.781658841819635, 29.533110169914806 ], [ -94.781563842081795, 29.533055170344333 ], [ -94.781526842568709, 29.533011169706452 ], [ -94.78148284190317, 29.532736170184904 ], [ -94.781450841848766, 29.532670169973098 ], [ -94.78138784226546, 29.532604170155782 ], [ -94.781312841896039, 29.532538169870097 ], [ -94.781186842018244, 29.532367169682004 ], [ -94.781148841831879, 29.532301169618737 ], [ -94.781092841472926, 29.532092170141542 ], [ -94.781054841449475, 29.532026170047761 ], [ -94.780973841892902, 29.53198217002846 ], [ -94.780922841680209, 29.531911169387374 ], [ -94.780872842087263, 29.531768169356873 ], [ -94.780551841576965, 29.531509169282945 ], [ -94.780495842102638, 29.531449170123281 ], [ -94.780481841859697, 29.531416169799531 ], [ -94.780419842151062, 29.531262169398278 ], [ -94.780400841989021, 29.531229169235221 ], [ -94.780193841382811, 29.531058169746025 ], [ -94.779979841922867, 29.530954169445344 ], [ -94.779872841923179, 29.530877169578883 ], [ -94.779803841595438, 29.530783169265991 ], [ -94.77979784156085, 29.53073916986369 ], [ -94.77984184106559, 29.53064016973946 ], [ -94.779835842014037, 29.530591169370361 ], [ -94.779791841451768, 29.530558169824687 ], [ -94.779703841374598, 29.530552169161233 ], [ -94.779677841086368, 29.530536169218717 ], [ -94.779665841136563, 29.530514169316103 ], [ -94.77960884109703, 29.53036516930209 ], [ -94.779552841484445, 29.530283169448282 ], [ -94.779514841525682, 29.530255169754845 ], [ -94.779476841775917, 29.530239169204552 ], [ -94.779369841725526, 29.530239169292845 ], [ -94.779149840988524, 29.530206169419142 ], [ -94.778998841760497, 29.53016216979346 ], [ -94.778973840989579, 29.530139169712136 ], [ -94.778967841763944, 29.530013169764377 ], [ -94.778948841237366, 29.52997516925511 ], [ -94.778917841347592, 29.529963168996581 ], [ -94.778820841465077, 29.52998016947334 ], [ -94.778797841745032, 29.529985169171216 ], [ -94.778640840787233, 29.529974169122827 ], [ -94.77852084082943, 29.529919169512773 ], [ -94.778426840865251, 29.529853169634286 ], [ -94.778376840847287, 29.529837168973962 ], [ -94.778118840784046, 29.529804168974081 ], [ -94.778080841358658, 29.529776169772003 ], [ -94.77803684076072, 29.529699169100724 ], [ -94.778030840696999, 29.52952916942429 ], [ -94.778017840858936, 29.529501168892658 ], [ -94.777496840752804, 29.529281169680463 ], [ -94.777206840829024, 29.529078169306214 ], [ -94.776905841108004, 29.52894016966529 ], [ -94.776804840607383, 29.52885816881814 ], [ -94.776722840592086, 29.528753168954779 ], [ -94.776685840189387, 29.528731168870575 ], [ -94.776592840845652, 29.528726169241661 ], [ -94.776540840859425, 29.528709169298672 ], [ -94.776383840835138, 29.528588168806831 ], [ -94.776251840722608, 29.528555169163848 ], [ -94.77599384015798, 29.528527169533714 ], [ -94.775829840753289, 29.528483168895033 ], [ -94.775740840268028, 29.5284701691895 ], [ -94.775603840338178, 29.528450169342651 ], [ -94.775534840534092, 29.528428168847626 ], [ -94.775439840003656, 29.528373169120645 ], [ -94.775389840402866, 29.528307168974504 ], [ -94.775339840148533, 29.528192169020944 ], [ -94.77530884011064, 29.528181169171244 ], [ -94.775169839801933, 29.528164169084938 ], [ -94.774999839866553, 29.528126168731411 ], [ -94.77490584020353, 29.528137169493515 ], [ -94.77488084060775, 29.528153169093819 ], [ -94.774823840508716, 29.528225169037128 ], [ -94.774804840292319, 29.52829616891826 ], [ -94.774804840601377, 29.528412169032755 ], [ -94.774798839704005, 29.528433168852544 ], [ -94.774748840420358, 29.528430169075452 ], [ -94.774603840343488, 29.528422169092881 ], [ -94.774553840237772, 29.528384169377162 ], [ -94.774597840112122, 29.528186169072292 ], [ -94.774578840569902, 29.528027169476772 ], [ -94.774503840217719, 29.527971168889284 ], [ -94.774339840336793, 29.527812169312682 ], [ -94.7741958398165, 29.527768169529054 ], [ -94.773780839924186, 29.527570168677375 ], [ -94.773321839959522, 29.527454169000315 ], [ -94.773113839176744, 29.52747616939903 ], [ -94.773069839551766, 29.527493169534758 ], [ -94.773012839382574, 29.527487168662049 ], [ -94.77276783968135, 29.527284169095505 ], [ -94.772723839535274, 29.527234168709565 ], [ -94.772208839297519, 29.52693716925198 ], [ -94.772057839040926, 29.526915169012053 ], [ -94.771912839645623, 29.52686516890979 ], [ -94.771843838863788, 29.526854168826148 ], [ -94.771761839481101, 29.526860169435853 ], [ -94.771679839149357, 29.526849168862139 ], [ -94.771524839570233, 29.526654169248129 ], [ -94.771409839442626, 29.526508168850647 ], [ -94.771340839167593, 29.526447169188884 ], [ -94.771195839326268, 29.526403168755245 ], [ -94.771164839498908, 29.526403168526723 ], [ -94.771076838856715, 29.526430169283866 ], [ -94.771026839523131, 29.526502168877727 ], [ -94.770780838644825, 29.526667169401982 ], [ -94.770705839360545, 29.526694168674855 ], [ -94.770585838506804, 29.526645169342615 ], [ -94.770382839072198, 29.526604168604717 ], [ -94.770283838687774, 29.526584169300218 ], [ -94.770057838406345, 29.526568169415672 ], [ -94.769730838344586, 29.52646916862065 ], [ -94.769661838250272, 29.526430169296557 ], [ -94.769661838607377, 29.526128168813063 ], [ -94.76963683908015, 29.526089168884706 ], [ -94.769466838799787, 29.526007168758685 ], [ -94.769252838702741, 29.525935169107434 ], [ -94.768995838584203, 29.525880168846815 ], [ -94.768605838822339, 29.525847169162677 ], [ -94.76852983811267, 29.525830169148939 ], [ -94.768385838558075, 29.525753169215331 ], [ -94.768356838687509, 29.525741169243091 ], [ -94.768058838043544, 29.525616168499376 ], [ -94.767951837883572, 29.525610168722658 ], [ -94.767762838191331, 29.525649168463335 ], [ -94.767649837717656, 29.52566516930921 ], [ -94.767529838399099, 29.525676168625463 ], [ -94.767096837640537, 29.52544516848284 ], [ -94.766945837630345, 29.525373169283409 ], [ -94.766731838086244, 29.525175168406282 ], [ -94.765920837434166, 29.524927168532013 ], [ -94.765694837686425, 29.524872168672012 ], [ -94.765278837468628, 29.524905169003304 ], [ -94.764901837715328, 29.524806169140668 ], [ -94.764631837342961, 29.524646169223537 ], [ -94.764279836846129, 29.524498168807984 ], [ -94.764122837381791, 29.524476168852058 ], [ -94.763895836872507, 29.52441516886838 ], [ -94.762914836678462, 29.524327168512116 ], [ -94.762776836840132, 29.524299169215258 ], [ -94.762707836766666, 29.524266168476881 ], [ -94.762575836515197, 29.524167169172237 ], [ -94.762512837076358, 29.524151168313317 ], [ -94.762418836944207, 29.524151168602216 ], [ -94.76234283681886, 29.524184169014333 ], [ -94.762323837262514, 29.52420616835299 ], [ -94.762279836999099, 29.524310168817841 ], [ -94.762248837140703, 29.524327168566266 ], [ -94.76221683646078, 29.524327168821017 ], [ -94.762122836536093, 29.524305168524094 ], [ -94.762015837178751, 29.524310169127837 ], [ -94.761789836313795, 29.524398169124353 ], [ -94.761707836397775, 29.524453168939271 ], [ -94.761631836234073, 29.524541168583685 ], [ -94.761590836735067, 29.524565168916268 ], [ -94.761531836260772, 29.524601169175657 ], [ -94.761449836557318, 29.524634168453847 ], [ -94.761329836980309, 29.524667168896706 ], [ -94.761222836808599, 29.524662168591817 ], [ -94.761134836741434, 29.524640169173274 ], [ -94.760902836532409, 29.524568169184032 ], [ -94.760852836390598, 29.524546168485603 ], [ -94.760795836490004, 29.524502169282229 ], [ -94.760694835876777, 29.524398168784742 ], [ -94.760613836331856, 29.524359168667136 ], [ -94.760544836477493, 29.524364168885473 ], [ -94.76051883593577, 29.524375169188115 ], [ -94.760468836039678, 29.524436168913798 ], [ -94.760418836646181, 29.52445816887219 ], [ -94.760229836688296, 29.524480168555709 ], [ -94.760110836573048, 29.524458169265891 ], [ -94.760034835793235, 29.524425168971042 ], [ -94.759927836368618, 29.524342169001439 ], [ -94.759833835789607, 29.524326168483341 ], [ -94.759613836478778, 29.524337169188577 ], [ -94.75933883620543, 29.524368168544243 ], [ -94.759317835825058, 29.524370168469169 ], [ -94.758991835429796, 29.524444169235366 ], [ -94.758695835783612, 29.52451216903204 ], [ -94.758305835548754, 29.524567168660184 ], [ -94.758236836224157, 29.524573169003332 ], [ -94.758103835750489, 29.524540168981211 ], [ -94.758015836200101, 29.524540168820614 ], [ -94.757971835317875, 29.524556169027512 ], [ -94.757951835970232, 29.524575169189646 ], [ -94.757871835733312, 29.524660168699938 ], [ -94.757833835882494, 29.524655168784758 ], [ -94.757795835304279, 29.524633168554068 ], [ -94.75773983586771, 29.524517169090302 ], [ -94.757718835279533, 29.524499169117604 ], [ -94.757701835486884, 29.524484169078317 ], [ -94.757657835885098, 29.524473168668166 ], [ -94.757594835396958, 29.524490169230937 ], [ -94.757556835642106, 29.524490169373916 ], [ -94.757412835438856, 29.5244131689977 ], [ -94.75733083514551, 29.524402168538341 ], [ -94.757292835429652, 29.524407168743405 ], [ -94.757242835292416, 29.524429169317816 ], [ -94.75717383589614, 29.524501168571 ], [ -94.757124835238869, 29.524567169170613 ], [ -94.757097835576218, 29.524605169265911 ], [ -94.757060835503282, 29.524633169447039 ], [ -94.756997835048281, 29.524644169209612 ], [ -94.756981835067194, 29.524642168848313 ], [ -94.756808834953546, 29.524616169032765 ], [ -94.756775835866193, 29.524616168796957 ], [ -94.756317835347289, 29.524621169465391 ], [ -94.756236834739113, 29.524555168759065 ], [ -94.756180835657688, 29.524537168782306 ], [ -94.756167835094118, 29.524533168877422 ], [ -94.756003834921472, 29.524528169392251 ], [ -94.755974835026151, 29.524524168882362 ], [ -94.755827835352918, 29.524506169413844 ], [ -94.75577783548745, 29.524511169167553 ], [ -94.755708834885695, 29.524555169408234 ], [ -94.755607835030176, 29.524704169455291 ], [ -94.755563834736009, 29.524748168959828 ], [ -94.755506834983834, 29.524792169170262 ], [ -94.755355835362764, 29.524868169033372 ], [ -94.755305834900781, 29.524907169185138 ], [ -94.755255834949509, 29.52496216924013 ], [ -94.755091835415897, 29.525061169416997 ], [ -94.755022834765015, 29.525116169083894 ], [ -94.75499083523917, 29.525187169096341 ], [ -94.754978834597097, 29.525253169382918 ], [ -94.754990834659097, 29.525308169206639 ], [ -94.75502283454604, 29.525336168899408 ], [ -94.755053834716634, 29.52535216918406 ], [ -94.755179834955285, 29.525385169322341 ], [ -94.755179834854502, 29.525413169376229 ], [ -94.755040835118137, 29.525517169037734 ], [ -94.754933835077949, 29.525567168869202 ], [ -94.754732835031731, 29.525600169576535 ], [ -94.75458183442727, 29.52567716896689 ], [ -94.754443835294396, 29.525731169522054 ], [ -94.754198834926669, 29.52579716972091 ], [ -94.754003834811044, 29.525819169663098 ], [ -94.753889834983909, 29.525819169736067 ], [ -94.753858834200486, 29.525797169535164 ], [ -94.753871834491676, 29.525759169553194 ], [ -94.753883835038195, 29.52558816909411 ], [ -94.753877834746973, 29.525528169103353 ], [ -94.753745834962345, 29.525407169490972 ], [ -94.753714834811106, 29.525396169039379 ], [ -94.753550834398794, 29.525412169341319 ], [ -94.753342834231432, 29.52551116901412 ], [ -94.753305834410142, 29.525511169032264 ], [ -94.753122834811833, 29.525461169680664 ], [ -94.753091834500964, 29.525434169164168 ], [ -94.753072834165494, 29.525395169644145 ], [ -94.753066834361334, 29.525335169614536 ], [ -94.753003834165938, 29.525274169267277 ], [ -94.752972834302199, 29.525258169408847 ], [ -94.752871834542333, 29.525258169041287 ], [ -94.752649834663657, 29.525297168923029 ], [ -94.752531833846717, 29.525318168952253 ], [ -94.752255833980755, 29.525406169627885 ], [ -94.752204834223278, 29.52543916977773 ], [ -94.752185833879707, 29.525560169303365 ], [ -94.752198834356236, 29.525670169386125 ], [ -94.752179834303504, 29.525753169450841 ], [ -94.752116834310883, 29.525830169220225 ], [ -94.751946833919277, 29.525906169134998 ], [ -94.751838834555784, 29.525912169094877 ], [ -94.751657834259163, 29.525923169300118 ], [ -94.75150683443465, 29.525950169300891 ], [ -94.750852834369326, 29.5261751695101 ], [ -94.750550834089736, 29.526494169827028 ], [ -94.75000983327061, 29.526733169548454 ], [ -94.749915833785664, 29.526788169972662 ], [ -94.749776833578466, 29.52682616928108 ], [ -94.749641833362617, 29.526891169847389 ], [ -94.749606833875703, 29.526909169970825 ], [ -94.748965833693404, 29.527096169725816 ], [ -94.748802833403388, 29.52711816956813 ], [ -94.748745833549634, 29.527140170149831 ], [ -94.748613833515506, 29.527201169666622 ], [ -94.748550833054964, 29.527217170184656 ], [ -94.748324833363199, 29.527229169749063 ], [ -94.748217833238655, 29.527240169873906 ], [ -94.748135833686305, 29.527267169667997 ], [ -94.74804783302848, 29.527339169456074 ], [ -94.747972832984601, 29.527432170213299 ], [ -94.747890833029572, 29.527498169743215 ], [ -94.747859833486146, 29.527509170236566 ], [ -94.747802832835234, 29.527515169566453 ], [ -94.747708833577178, 29.527476169677634 ], [ -94.747632833193805, 29.52740517002907 ], [ -94.74755783328807, 29.527372170068251 ], [ -94.747475833287496, 29.527372169729979 ], [ -94.747437833421102, 29.52738917006311 ], [ -94.74740683345793, 29.527422170011715 ], [ -94.747274833106104, 29.527603170005737 ], [ -94.74721783346601, 29.527653170073101 ], [ -94.747098833160919, 29.527702169848933 ], [ -94.746985833162029, 29.527730169846112 ], [ -94.746821833013072, 29.527752169812441 ], [ -94.746708832729752, 29.527757169603216 ], [ -94.746639832464624, 29.527746170009337 ], [ -94.746538833008728, 29.527713170094771 ], [ -94.746406833126287, 29.527587170176204 ], [ -94.74637483316171, 29.527581169764719 ], [ -94.746343832426007, 29.527582169573247 ], [ -94.74629383317712, 29.527598170163976 ], [ -94.746161832703038, 29.527670169804637 ], [ -94.746098833104512, 29.527681169966684 ], [ -94.745947832954954, 29.527692170177552 ], [ -94.745601832871415, 29.527670169954078 ], [ -94.745375832819292, 29.527675169949841 ], [ -94.745110832329033, 29.527648169674755 ], [ -94.744897832216111, 29.527643169754036 ], [ -94.744821832553427, 29.527648170258676 ], [ -94.744758831875401, 29.52766517030409 ], [ -94.74468383210737, 29.527703170346808 ], [ -94.744563832838139, 29.52770916981839 ], [ -94.744513832213016, 29.527703170118954 ], [ -94.744331832508408, 29.527648169661113 ], [ -94.744249832315901, 29.527632170103686 ], [ -94.744035831792687, 29.52762116981642 ], [ -94.74396083227667, 29.527605169970123 ], [ -94.743922832368057, 29.527583170286356 ], [ -94.743859832270772, 29.527561169989326 ], [ -94.743695832342681, 29.527550170357756 ], [ -94.743658831832988, 29.527522170271954 ], [ -94.743469832011442, 29.527346170018813 ], [ -94.743431832168753, 29.527291169886308 ], [ -94.743431832396766, 29.527269170292914 ], [ -94.743456832019845, 29.527225169951944 ], [ -94.743563832018168, 29.527137169598603 ], [ -94.743576831566486, 29.527110170277698 ], [ -94.743569831594186, 29.527093170036043 ], [ -94.743519831840601, 29.527055170068333 ], [ -94.743251832296338, 29.526955170103161 ], [ -94.743236831484637, 29.526950169851588 ], [ -94.743167832062312, 29.52693917026772 ], [ -94.743072831555409, 29.526945169970038 ], [ -94.742890831378091, 29.526978170397815 ], [ -94.742752831462596, 29.527022169621755 ], [ -94.742481831305, 29.527121169604385 ], [ -94.742242831300686, 29.527176169806982 ], [ -94.742154831358732, 29.527187169907823 ], [ -94.742016832113748, 29.527160170323626 ], [ -94.741890831945483, 29.527105169857087 ], [ -94.74141283177805, 29.526940169841794 ], [ -94.741091831512392, 29.526759170424231 ], [ -94.740972831056865, 29.526726169595445 ], [ -94.740922830942438, 29.526726170002377 ], [ -94.740865831561607, 29.526748169997784 ], [ -94.740808831244678, 29.526781169750187 ], [ -94.740658831160161, 29.526935169898621 ], [ -94.740601831541426, 29.526974170142637 ], [ -94.740519831123606, 29.527012169623148 ], [ -94.740400830725051, 29.527051170422727 ], [ -94.740167831119777, 29.527172170140055 ], [ -94.74011783112023, 29.527210169852999 ], [ -94.74006783073483, 29.527260169741037 ], [ -94.739784830798712, 29.527447170469074 ], [ -94.739583831528435, 29.52761717008179 ], [ -94.739551830609457, 29.527628170167873 ], [ -94.739407831175271, 29.527590170045869 ], [ -94.739155830650986, 29.527612169919134 ], [ -94.738753831060137, 29.527766170547046 ], [ -94.738545831217706, 29.527887169977326 ], [ -94.738413831193014, 29.527942169919225 ], [ -94.73832583095087, 29.527964170048119 ], [ -94.737941831101978, 29.528014170337372 ], [ -94.737885830504638, 29.528047170066351 ], [ -94.737847830630514, 29.528080170420111 ], [ -94.737791830997764, 29.528113170142134 ], [ -94.737690830338494, 29.528146170464233 ], [ -94.737602830307921, 29.528190170673081 ], [ -94.737526830691877, 29.528190170504828 ], [ -94.737470830822673, 29.528179170814795 ], [ -94.737426830708003, 29.528196170237134 ], [ -94.73717483034909, 29.52842117057714 ], [ -94.737067830629513, 29.528460170191501 ], [ -94.736998830120925, 29.52847117065556 ], [ -94.736885830070506, 29.528520170501803 ], [ -94.736759830313389, 29.528614170640509 ], [ -94.736571830300221, 29.52871417011065 ], [ -94.736319830722209, 29.528851170372715 ], [ -94.736244830476352, 29.528900171024013 ], [ -94.736162829981396, 29.528900170994994 ], [ -94.736062830146892, 29.52885617079167 ], [ -94.735980830091577, 29.52884017067619 ], [ -94.735911830240738, 29.528851170611443 ], [ -94.735590830066471, 29.529104171091632 ], [ -94.735533829590921, 29.529120170995757 ], [ -94.735433829567953, 29.529121170907754 ], [ -94.735389830066239, 29.529110170394929 ], [ -94.735307830358906, 29.529115170941228 ], [ -94.735276830484864, 29.529132170928577 ], [ -94.735206830094882, 29.529209170937317 ], [ -94.735156830319113, 29.529242170516241 ], [ -94.735055830213298, 29.529286170550911 ], [ -94.734955830380372, 29.529313170441373 ], [ -94.73476082943364, 29.529440170506057 ], [ -94.734615830380775, 29.529473170407737 ], [ -94.734571830153172, 29.529478170500955 ], [ -94.734521829687466, 29.529473171087822 ], [ -94.734483830021901, 29.529434171016447 ], [ -94.734463830312492, 29.529429170974261 ], [ -94.734420829534841, 29.529429171142972 ], [ -94.734326830194121, 29.529467170472035 ], [ -94.73425783011308, 29.529489171196662 ], [ -94.734075829488631, 29.529512171232547 ], [ -94.733974829882371, 29.529534170832537 ], [ -94.733924829245979, 29.52953917062371 ], [ -94.733836829583026, 29.529523170940806 ], [ -94.733729829312054, 29.529517170935367 ], [ -94.733622829357387, 29.529534170906448 ], [ -94.733540829422864, 29.529600170986338 ], [ -94.733465829087621, 29.52963317103378 ], [ -94.733383829546028, 29.529627170592125 ], [ -94.733276829476182, 29.529578170406161 ], [ -94.73323882911788, 29.529572171241771 ], [ -94.733188829333201, 29.529589171011775 ], [ -94.73313882994745, 29.529666170999239 ], [ -94.733068829892645, 29.529726170462627 ], [ -94.733024829187514, 29.529748170431649 ], [ -94.732943829627104, 29.529759171340508 ], [ -94.732892829587385, 29.529759171181794 ], [ -94.732723829792334, 29.529732171013773 ], [ -94.732540829798978, 29.529716171328705 ], [ -94.732351829040041, 29.529655170587457 ], [ -94.732251828814839, 29.529655170444538 ], [ -94.732043829389525, 29.529721170858263 ], [ -94.731754829324899, 29.529870170688714 ], [ -94.73151582894144, 29.529963170701848 ], [ -94.731421829365928, 29.529991171296111 ], [ -94.731207828779645, 29.530029170879232 ], [ -94.731138828662338, 29.530024171083188 ], [ -94.731075828828111, 29.530035170572823 ], [ -94.731044828719391, 29.530057170674496 ], [ -94.730893828733699, 29.530189171215216 ], [ -94.730691829294727, 29.53031617135451 ], [ -94.730239829037899, 29.530503171154557 ], [ -94.729314828695365, 29.530828171201229 ], [ -94.728931828328271, 29.530932171400146 ], [ -94.728466828626395, 29.531147171013643 ], [ -94.727812828064728, 29.531367171837406 ], [ -94.727573828072764, 29.531461171731525 ], [ -94.727283827714885, 29.531532171551468 ], [ -94.727026828003616, 29.531664171803058 ], [ -94.72682482816316, 29.531741171751779 ], [ -94.726692827823427, 29.531763171722098 ], [ -94.726535827536338, 29.531780171198442 ], [ -94.726359827507309, 29.531819171291545 ], [ -94.726089827730362, 29.531918171754356 ], [ -94.725975827486977, 29.531940171408564 ], [ -94.725837827853184, 29.531995171493858 ], [ -94.724793827567069, 29.532342172048249 ], [ -94.724636827644062, 29.532413171823062 ], [ -94.724498827783876, 29.532452171427231 ], [ -94.723800826899208, 29.532776172100288 ], [ -94.723146827292297, 29.533062171524112 ], [ -94.722883826909069, 29.533167171716848 ], [ -94.722366826942107, 29.53337617201376 ], [ -94.72163082675084, 29.533651172210639 ], [ -94.721247826500019, 29.533811172307441 ], [ -94.720071826386175, 29.534257172158295 ], [ -94.719392825865924, 29.534433172658947 ], [ -94.719260825825501, 29.534438172225293 ], [ -94.719077826181461, 29.534427172589943 ], [ -94.718700826360617, 29.534433172691834 ], [ -94.718580825729262, 29.534466172496945 ], [ -94.718530825830271, 29.534494172206358 ], [ -94.718455826053571, 29.534587172651523 ], [ -94.718429826391031, 29.534582172169515 ], [ -94.718404825531138, 29.534472172661157 ], [ -94.718362825649763, 29.534402171892488 ], [ -94.718354825460636, 29.534389172300248 ], [ -94.718163825770432, 29.534263172688146 ], [ -94.718071826034588, 29.534202171923592 ], [ -94.71792682550084, 29.534142172028485 ], [ -94.717851825856243, 29.53413117221406 ], [ -94.717631825238968, 29.534131172448486 ], [ -94.717464825277091, 29.534113172024917 ], [ -94.717222826058119, 29.534087172429686 ], [ -94.717121825364444, 29.534098172271342 ], [ -94.717008825018908, 29.534120172069454 ], [ -94.716700825712664, 29.534230172416542 ], [ -94.716637825334118, 29.534274172061856 ], [ -94.716417825478203, 29.534467172439349 ], [ -94.716382825358366, 29.534492172299657 ], [ -94.716109824877293, 29.534692172197971 ], [ -94.71603382518721, 29.534736172116837 ], [ -94.715996825214262, 29.534747172625984 ], [ -94.715794825215937, 29.534764172088543 ], [ -94.715738825293315, 29.534791172206344 ], [ -94.715675825064935, 29.534852172793741 ], [ -94.715650825348177, 29.534907172701761 ], [ -94.715574825195532, 29.534995172770369 ], [ -94.715360825576951, 29.535193172584894 ], [ -94.71531682562896, 29.53524217228917 ], [ -94.715222824910569, 29.53540717219882 ], [ -94.715134825589416, 29.535490172759744 ], [ -94.71482082458526, 29.535633173031275 ], [ -94.714662825011004, 29.535661172702078 ], [ -94.714549824883434, 29.535644172971239 ], [ -94.71436182471227, 29.5357711728246 ], [ -94.714317825008791, 29.53578717258333 ], [ -94.71423582500411, 29.535793172533786 ], [ -94.714184825056989, 29.535809172636259 ], [ -94.714071824441618, 29.535903172605785 ], [ -94.714044824590744, 29.535917172985098 ], [ -94.713983824451631, 29.53595217237881 ], [ -94.713946824862262, 29.535958173061953 ], [ -94.713901824954505, 29.535952172456138 ], [ -94.71382682507911, 29.535925173043911 ], [ -94.713776824881677, 29.535919172781682 ], [ -94.713719824657986, 29.535952173107546 ], [ -94.713694824330261, 29.536073172856423 ], [ -94.71367582453145, 29.536101172537396 ], [ -94.713606824616903, 29.53613917287381 ], [ -94.713499824570363, 29.536227172786763 ], [ -94.713455824843493, 29.536249172862853 ], [ -94.713354824891155, 29.536266173261225 ], [ -94.713273824520797, 29.536271172689801 ], [ -94.713172824427943, 29.536293173141114 ], [ -94.713115824923349, 29.5363211730496 ], [ -94.713078824430397, 29.536359172720314 ], [ -94.713027824398239, 29.536376172791556 ], [ -94.712971824449411, 29.536381172927385 ], [ -94.712770824718845, 29.536376173158679 ], [ -94.712732824338318, 29.536387173210745 ], [ -94.712688824265427, 29.536414173224085 ], [ -94.712644824398012, 29.53643117284216 ], [ -94.712537824763402, 29.536420173062229 ], [ -94.712512824070529, 29.536425173167711 ], [ -94.712468824333726, 29.536453172618717 ], [ -94.712449823966935, 29.536486173215113 ], [ -94.712455824508737, 29.536525172707606 ], [ -94.712487824314309, 29.53660717276659 ], [ -94.712518824232831, 29.536656172691767 ], [ -94.712531824017049, 29.536695172749987 ], [ -94.712524824948858, 29.536788173261147 ], [ -94.712518824644491, 29.536821172781242 ], [ -94.71244382427524, 29.536865172996432 ], [ -94.712367824231308, 29.5368821727449 ], [ -94.712317824299717, 29.536915173111126 ], [ -94.71226782448899, 29.53697517342739 ], [ -94.712261824631483, 29.537068173473259 ], [ -94.712260824690262, 29.537096173364581 ], [ -94.712235824274174, 29.537190172909909 ], [ -94.712191823959785, 29.537207173277846 ], [ -94.712166824226486, 29.537207173161427 ], [ -94.712072824142467, 29.537135172849879 ], [ -94.711965824387832, 29.536860172658741 ], [ -94.711946824458309, 29.536833172673131 ], [ -94.711921824710657, 29.536822172620983 ], [ -94.711820824586283, 29.536822173203504 ], [ -94.711650824528249, 29.536855172874478 ], [ -94.711348824644631, 29.536877173152984 ], [ -94.711267823687479, 29.536904172948898 ], [ -94.71096582369492, 29.537053173552433 ], [ -94.710921823901884, 29.537069173124245 ], [ -94.710663824500031, 29.537212173012708 ], [ -94.710506823872009, 29.537196173283281 ], [ -94.710424824277709, 29.53720717295425 ], [ -94.710336823723679, 29.537229173117826 ], [ -94.710009823583079, 29.53736117337057 ], [ -94.709864823694772, 29.537405173045286 ], [ -94.709367823343882, 29.537438172980664 ], [ -94.709279823357051, 29.537460173382414 ], [ -94.709028823575025, 29.537570173083004 ], [ -94.708952823570684, 29.537576173738227 ], [ -94.70889682324497, 29.537565172990817 ], [ -94.708845823434729, 29.537537173334734 ], [ -94.708833823465085, 29.537510173673574 ], [ -94.708826823049463, 29.537466173290021 ], [ -94.708807823534102, 29.537444173051156 ], [ -94.708719823315292, 29.537416172896254 ], [ -94.708600823772656, 29.537427173712068 ], [ -94.708355823408311, 29.537526173456342 ], [ -94.70817282306983, 29.537548173163238 ], [ -94.708015823609315, 29.537548173359369 ], [ -94.707965822892618, 29.537554173029971 ], [ -94.707930823022437, 29.537598172975255 ], [ -94.707889823578981, 29.537631173600079 ], [ -94.707858823540306, 29.537642173143361 ], [ -94.707644823190947, 29.537592173583228 ], [ -94.707424823625075, 29.537625173252177 ], [ -94.707241822976044, 29.537620173489898 ], [ -94.707072822833837, 29.537642173450539 ], [ -94.706958823282804, 29.53764717297242 ], [ -94.706852823225219, 29.537642173382768 ], [ -94.706713823402168, 29.537615173164323 ], [ -94.706443822623314, 29.537620172999198 ], [ -94.706361822584114, 29.537598173185593 ], [ -94.706317822681328, 29.537598172967069 ], [ -94.706235823213277, 29.537631173517745 ], [ -94.706185822842372, 29.537670173154726 ], [ -94.706097823368751, 29.537769173547069 ], [ -94.706015823079625, 29.537879173274046 ], [ -94.705908823252145, 29.537972173879453 ], [ -94.705852822835539, 29.538005173276886 ], [ -94.705782823196415, 29.53802717358964 ], [ -94.705650822639811, 29.53805517362839 ], [ -94.70551282285588, 29.538066173520082 ], [ -94.705462822685618, 29.538104173406332 ], [ -94.705443822505103, 29.538181173610447 ], [ -94.705418823176586, 29.538225173682203 ], [ -94.705367822419106, 29.538247173785287 ], [ -94.705323822664312, 29.538258173159488 ], [ -94.705204822482017, 29.538236173963661 ], [ -94.705028822417617, 29.538170173863758 ], [ -94.704971822632331, 29.538159173669499 ], [ -94.704896823038183, 29.538154173577219 ], [ -94.704738822552315, 29.538159173210715 ], [ -94.704707822970079, 29.538170173858855 ], [ -94.704644822349621, 29.538225173379242 ], [ -94.70456282215639, 29.53833517317263 ], [ -94.704499822010945, 29.538379173638194 ], [ -94.704348822611408, 29.538434173209623 ], [ -94.704317822584869, 29.538434173847381 ], [ -94.704223822004423, 29.538357173995799 ], [ -94.70417282280377, 29.538335174063977 ], [ -94.704040822521065, 29.538313173201782 ], [ -94.703977821855403, 29.538319173474807 ], [ -94.703789822300706, 29.538357173750036 ], [ -94.703688822469701, 29.538401173312177 ], [ -94.703487822169961, 29.538418173958732 ], [ -94.703443822568346, 29.538434173837 ], [ -94.703311821747533, 29.538534173482716 ], [ -94.703229822263154, 29.538566173641886 ], [ -94.70316082249947, 29.538572173930671 ], [ -94.702996821836877, 29.538506174004599 ], [ -94.702971821710292, 29.538506173972731 ], [ -94.702757822528795, 29.538550173768211 ], [ -94.702625822224334, 29.538616173534276 ], [ -94.702550821726078, 29.538616174118172 ], [ -94.702481821562159, 29.538589173398201 ], [ -94.70231182207246, 29.538600173301464 ], [ -94.702216822212904, 29.538644174160911 ], [ -94.702223821403194, 29.538743173604196 ], [ -94.702216822167145, 29.538765174134966 ], [ -94.702185822219661, 29.538787174115594 ], [ -94.702097821678365, 29.538792173842211 ], [ -94.70205982175662, 29.538787173521019 ], [ -94.701984822325215, 29.538748173465777 ], [ -94.701940821788526, 29.538737173692031 ], [ -94.701820821890166, 29.538732174177504 ], [ -94.701751821534927, 29.538704173571784 ], [ -94.701726821645224, 29.538600173849989 ], [ -94.701701821726886, 29.538561174125903 ], [ -94.701644821570241, 29.538512173437841 ], [ -94.701462821203876, 29.538523173723888 ], [ -94.701185821804216, 29.538468173830328 ], [ -94.700889821688619, 29.538440173605846 ], [ -94.700663821024804, 29.53839117367291 ], [ -94.700568821688449, 29.538352173328033 ], [ -94.700499821485636, 29.538281173675724 ], [ -94.700462821498576, 29.538220173433533 ], [ -94.70041182124217, 29.538028173846488 ], [ -94.700386821757505, 29.538011173712526 ], [ -94.700285821065947, 29.537984173669475 ], [ -94.700166821130097, 29.537874173264218 ], [ -94.700116820819702, 29.537846173466125 ], [ -94.69968882120439, 29.537907173412329 ], [ -94.699631821365273, 29.537874173772199 ], [ -94.699537820883009, 29.537857173950666 ], [ -94.699210820742039, 29.537868173465103 ], [ -94.699078820692066, 29.537957173665468 ], [ -94.699078820754181, 29.538017173522167 ], [ -94.699053821498211, 29.538044173754969 ], [ -94.699009821278992, 29.538056174169025 ], [ -94.698914820729044, 29.538061174097603 ], [ -94.698839821389186, 29.538056173313525 ], [ -94.698751820769999, 29.538023173528742 ], [ -94.698707821423824, 29.537990173750647 ], [ -94.698669820621078, 29.537984173823872 ], [ -94.698430821227873, 29.538056173580195 ], [ -94.698222820607498, 29.538067173390328 ], [ -94.698071820719434, 29.538100174219565 ], [ -94.697958820387967, 29.538105173877618 ], [ -94.69774482065597, 29.538078173995345 ], [ -94.697531820253403, 29.538122174145023 ], [ -94.697468820871265, 29.538122173490223 ], [ -94.697323820831656, 29.538105173919995 ], [ -94.697204820782872, 29.538111173455544 ], [ -94.696996820519331, 29.538138174238657 ], [ -94.696713820657976, 29.538155173401972 ], [ -94.696619820690699, 29.538166173840189 ], [ -94.696015820498076, 29.538193173421639 ], [ -94.695675820306988, 29.538259173453049 ], [ -94.695625820567997, 29.538298173811043 ], [ -94.695581820622877, 29.538309173619865 ], [ -94.695461820432072, 29.538314174218968 ], [ -94.69534281990255, 29.538292174297002 ], [ -94.695260820349233, 29.538265173737255 ], [ -94.695128819648772, 29.538276173756255 ], [ -94.6946758195553, 29.538270174288694 ], [ -94.694587820164898, 29.538281174248951 ], [ -94.694361820076395, 29.538347174068942 ], [ -94.694222819987914, 29.538364174108633 ], [ -94.694040819455537, 29.538364174293744 ], [ -94.693845819837293, 29.538375174386822 ], [ -94.693769819671687, 29.53835917378737 ], [ -94.693581819469358, 29.538320173734988 ], [ -94.693329819629568, 29.538298174376123 ], [ -94.693241820038352, 29.538314173672095 ], [ -94.693172819898464, 29.538347174345116 ], [ -94.693059819224842, 29.538364173834577 ], [ -94.692468819368315, 29.538331173647361 ], [ -94.692335819717073, 29.538342173945804 ], [ -94.692254819279754, 29.53834217404491 ], [ -94.692191819693434, 29.538337174289595 ], [ -94.692084819340153, 29.538303174063291 ], [ -94.691920819584482, 29.538292173641878 ], [ -94.691644819517933, 29.538221174088541 ], [ -94.691461818678988, 29.538199173821567 ], [ -94.691317818813317, 29.538205174078922 ], [ -94.691071818983772, 29.538243174224512 ], [ -94.690914818561424, 29.538254174168216 ], [ -94.690738819127247, 29.538249174364221 ], [ -94.690405819214774, 29.538326173646535 ], [ -94.690078818998288, 29.538375174487431 ], [ -94.689895818528882, 29.538392174405807 ], [ -94.689820818960229, 29.538392174195778 ], [ -94.689675818885618, 29.538353174511091 ], [ -94.689524818501695, 29.538342174059 ], [ -94.689260818019719, 29.538293174460506 ], [ -94.688983818688882, 29.538271174231372 ], [ -94.688870818561924, 29.538238174245343 ], [ -94.688776818587129, 29.538243173980991 ], [ -94.688713818574286, 29.538254174565022 ], [ -94.688480818358968, 29.538249174446872 ], [ -94.688423818073645, 29.538232173713869 ], [ -94.688373818021873, 29.538194174394906 ], [ -94.688329818101991, 29.538177173983815 ], [ -94.688210818513312, 29.538172173711647 ], [ -94.688147818591446, 29.538177174297672 ], [ -94.68788281810032, 29.538249174531696 ], [ -94.687738818570324, 29.538260173895171 ], [ -94.687593817694818, 29.538315174078143 ], [ -94.687530817965836, 29.538315174151975 ], [ -94.687480818039134, 29.538304173758544 ], [ -94.687461817801037, 29.538276174200444 ], [ -94.687392818324639, 29.538227173770018 ], [ -94.687348817766534, 29.538205174584746 ], [ -94.687304817816695, 29.538194174469623 ], [ -94.687272817944205, 29.538199174342484 ], [ -94.68722881800872, 29.538260173751581 ], [ -94.687172818239787, 29.53827117373368 ], [ -94.68700281833334, 29.538249174156096 ], [ -94.686864818074056, 29.538249173853842 ], [ -94.686713817531682, 29.53828717393403 ], [ -94.686260817612123, 29.538342174445201 ], [ -94.68614781741374, 29.538381174411267 ], [ -94.68596481810745, 29.538469174496772 ], [ -94.685851817262673, 29.538513174432897 ], [ -94.685744817444174, 29.538518174166956 ], [ -94.685599817154198, 29.538557173848304 ], [ -94.685404817374888, 29.538573174544521 ], [ -94.685279817644201, 29.538628174052796 ], [ -94.685222817284654, 29.53866717403173 ], [ -94.685159817766319, 29.5387381739889 ], [ -94.685134817594417, 29.538815174057639 ], [ -94.685102817411178, 29.538837174027869 ], [ -94.685014817878226, 29.538870174002355 ], [ -94.684977817856307, 29.538898174818023 ], [ -94.684857817624888, 29.539019174461213 ], [ -94.684763816914284, 29.539096174585165 ], [ -94.684687817765123, 29.539118174410437 ], [ -94.684536817282677, 29.539140174592589 ], [ -94.684436817346494, 29.539173174144572 ], [ -94.684398816900824, 29.539195174371084 ], [ -94.684297817217569, 29.539272174860322 ], [ -94.68419781681817, 29.539321174436715 ], [ -94.684096817337874, 29.539338174667112 ], [ -94.683926817371926, 29.539420174863878 ], [ -94.683750816803723, 29.539442174200438 ], [ -94.683650816743267, 29.539470174745766 ], [ -94.683304816606523, 29.539508174191482 ], [ -94.683241816777951, 29.539525174696241 ], [ -94.683178816657644, 29.539569174456012 ], [ -94.683071816786835, 29.539657174399487 ], [ -94.683008816474, 29.539701174979584 ], [ -94.682958816944179, 29.539717174921069 ], [ -94.682851817326124, 29.539739174823158 ], [ -94.682794817379346, 29.539767174743627 ], [ -94.682694816413715, 29.539844174722131 ], [ -94.682624817258201, 29.539866174859693 ], [ -94.68251181677914, 29.539882175071568 ], [ -94.682448816684442, 29.539921174264421 ], [ -94.682335817295694, 29.540058175065656 ], [ -94.682278817040569, 29.540097174746229 ], [ -94.682115816913225, 29.540146174935671 ], [ -94.682021816801324, 29.540152174907693 ], [ -94.681901816481641, 29.540135174294239 ], [ -94.681744816392225, 29.540141175104029 ], [ -94.681593816458687, 29.54011317507404 ], [ -94.681536816524044, 29.540124174745273 ], [ -94.681404817064617, 29.54020117482953 ], [ -94.681234816755008, 29.540262174842589 ], [ -94.681140816380392, 29.540267174685674 ], [ -94.681039816274236, 29.540245174734022 ], [ -94.680995816787686, 29.540256175249468 ], [ -94.680876816488535, 29.540322174973422 ], [ -94.680807816571132, 29.54035017461004 ], [ -94.680656816501696, 29.540361175032753 ], [ -94.680561816331604, 29.540377174659795 ], [ -94.680297816230421, 29.540465174681533 ], [ -94.680090815745928, 29.540482174960506 ], [ -94.679888816650603, 29.540526175148177 ], [ -94.679851816346257, 29.540564175073801 ], [ -94.679794816634981, 29.54065817459627 ], [ -94.679762816452524, 29.540691175130618 ], [ -94.679706815965602, 29.540724174713372 ], [ -94.67963081567153, 29.540735175316943 ], [ -94.679568816337252, 29.540757175105469 ], [ -94.679410816533562, 29.540839174730078 ], [ -94.679360815895194, 29.540856174635277 ], [ -94.679178815954941, 29.540867174612096 ], [ -94.679102816505974, 29.540894175180664 ], [ -94.678989815989652, 29.540971174879122 ], [ -94.678863816289365, 29.54102617507148 ], [ -94.678819815510096, 29.541059174828522 ], [ -94.678788816022447, 29.541119175208408 ], [ -94.678737815924862, 29.541158175067626 ], [ -94.678700816417148, 29.541169175394327 ], [ -94.678637815808841, 29.541169174918998 ], [ -94.678498815999248, 29.541136175357352 ], [ -94.678404816267602, 29.541152175125973 ], [ -94.678228815290765, 29.541136175212674 ], [ -94.678159815353936, 29.541169174664994 ], [ -94.677945816263389, 29.541301174939321 ], [ -94.677857815349114, 29.541317175055749 ], [ -94.677712815329826, 29.541323175442521 ], [ -94.677599815178908, 29.541334174954397 ], [ -94.677548815710509, 29.541356175553744 ], [ -94.677404815922785, 29.541444174754886 ], [ -94.67730381527015, 29.541466175575678 ], [ -94.6770708157472, 29.541438175284291 ], [ -94.677020815704623, 29.541438175508109 ], [ -94.676976815502002, 29.541455175360838 ], [ -94.676825815848034, 29.541554175124165 ], [ -94.676775815805115, 29.541631175238365 ], [ -94.67676281573597, 29.541675175563892 ], [ -94.676750815091594, 29.541691175055551 ], [ -94.67666281545722, 29.541675174860835 ], [ -94.676555815479418, 29.541675175237057 ], [ -94.67643581572834, 29.541620174948815 ], [ -94.676391815330661, 29.541609174858024 ], [ -94.676328815578444, 29.541614175382904 ], [ -94.675938814776998, 29.541741175311564 ], [ -94.675592815066267, 29.541796175663965 ], [ -94.675448814893343, 29.541845174860828 ], [ -94.675215814998808, 29.541944175629965 ], [ -94.675020815451248, 29.541988175649415 ], [ -94.674831815080964, 29.541994175105614 ], [ -94.674737814903736, 29.542010175032352 ], [ -94.674580814642766, 29.542087175024633 ], [ -94.674353815261512, 29.542109175231211 ], [ -94.674183815099937, 29.542148175519561 ], [ -94.673888814811406, 29.542274175184058 ], [ -94.673674814749475, 29.542302175733685 ], [ -94.673535814591176, 29.542357175577191 ], [ -94.673378814493788, 29.542379175072078 ], [ -94.67324681442561, 29.542379175414261 ], [ -94.673171814669729, 29.542390175895981 ], [ -94.672976814317323, 29.542439175919789 ], [ -94.672825814126497, 29.542456175503929 ], [ -94.672655814821624, 29.542516175325723 ], [ -94.672579814347074, 29.542527175591719 ], [ -94.672416814597483, 29.542522175418512 ], [ -94.672271814357714, 29.54253317563181 ], [ -94.672007814463399, 29.542593175233225 ], [ -94.671661814091394, 29.542692175528042 ], [ -94.671403813893875, 29.542813175721946 ], [ -94.671221814164511, 29.542912175956282 ], [ -94.670919814338987, 29.542901176019488 ], [ -94.670604813830366, 29.542983175499828 ], [ -94.670240814135298, 29.543033175852717 ], [ -94.670145813501534, 29.543055176079093 ], [ -94.670038813748405, 29.543104176132562 ], [ -94.669969814056856, 29.543126175979392 ], [ -94.66982481405752, 29.543121176019014 ], [ -94.669736813933184, 29.543148175435782 ], [ -94.669655813725257, 29.543203175613048 ], [ -94.669629813915549, 29.543231175628719 ], [ -94.669680814105192, 29.543280175649425 ], [ -94.669692813489718, 29.543319175901168 ], [ -94.669661813671951, 29.543357176091682 ], [ -94.669334813712211, 29.54342317554995 ], [ -94.669258814051787, 29.543407175499279 ], [ -94.669214813730434, 29.543390175998393 ], [ -94.669070813462312, 29.543368176232548 ], [ -94.668906813700076, 29.543368175795081 ], [ -94.668610813354121, 29.543423175569124 ], [ -94.667723813101162, 29.543517175961906 ], [ -94.667547813089328, 29.543588176341551 ], [ -94.667334813313289, 29.543687176234787 ], [ -94.667271813175333, 29.543703176171395 ], [ -94.667094812786161, 29.543720176338752 ], [ -94.666855812881778, 29.543786176025232 ], [ -94.66679981290109, 29.543830175832042 ], [ -94.66681181296272, 29.543912176086135 ], [ -94.666799813186557, 29.543934176338325 ], [ -94.666774812572257, 29.543951175682185 ], [ -94.666686813219869, 29.543918176380977 ], [ -94.666648813135097, 29.543923176453362 ], [ -94.666403813010163, 29.544077176107663 ], [ -94.666239813349321, 29.544121176163568 ], [ -94.666226812855172, 29.544143176431895 ], [ -94.666233812396811, 29.544198175947066 ], [ -94.666207813098737, 29.544231176508458 ], [ -94.666176812685507, 29.54425317653164 ], [ -94.666101812435642, 29.544187176512018 ], [ -94.666050812390509, 29.544171176088305 ], [ -94.666019812336913, 29.544187176318207 ], [ -94.666000813178613, 29.544215175988445 ], [ -94.665792812402231, 29.544297175954384 ], [ -94.66571781282947, 29.54434717579819 ], [ -94.665698812431486, 29.544391176579634 ], [ -94.665780812785783, 29.544545176472123 ], [ -94.665786812272245, 29.544589176066438 ], [ -94.66561081249074, 29.544699176556204 ], [ -94.665591812894803, 29.544715176618954 ], [ -94.665566812707226, 29.544825176249766 ], [ -94.665541812177409, 29.544864176336546 ], [ -94.665497813149003, 29.544902176706898 ], [ -94.665396812979637, 29.54497417674007 ], [ -94.665333812323098, 29.544996176450649 ], [ -94.665270812914201, 29.545029176201929 ], [ -94.665201812523108, 29.545084176429199 ], [ -94.664899812132845, 29.545353176723872 ], [ -94.664830812785524, 29.545430175959993 ], [ -94.664748812776566, 29.545496176104727 ], [ -94.664647812987567, 29.545535176424202 ], [ -94.664383811975199, 29.545590176387137 ], [ -94.664081812776644, 29.545738176421981 ], [ -94.663999812210392, 29.545765176242224 ], [ -94.663867812666268, 29.545788176090589 ], [ -94.663817812016049, 29.545804176235684 ], [ -94.663792812540009, 29.545892176441164 ], [ -94.663754812306678, 29.54593617648408 ], [ -94.663710812152999, 29.545974176257833 ], [ -94.663603812669834, 29.546018176496599 ], [ -94.663364812285153, 29.546139176630579 ], [ -94.663307812340008, 29.546156176588756 ], [ -94.663194812523599, 29.546161177021155 ], [ -94.663125811628305, 29.54613417661248 ], [ -94.663050812450507, 29.546084177026422 ], [ -94.662930812197814, 29.546073176466589 ], [ -94.662861812346861, 29.546101177029179 ], [ -94.66277381209386, 29.546189176449339 ], [ -94.662741811838643, 29.546189176609772 ], [ -94.662660811901517, 29.546112176811668 ], [ -94.662584811619993, 29.546112176898834 ], [ -94.662540812450644, 29.546145176975024 ], [ -94.662521812243796, 29.546233176590455 ], [ -94.662496812293952, 29.546282176689079 ], [ -94.662464811951438, 29.546293176817279 ], [ -94.662439812185781, 29.546288176242694 ], [ -94.662402812360796, 29.546233176452411 ], [ -94.662376812101044, 29.546227176397601 ], [ -94.662351812106436, 29.546255176810803 ], [ -94.662288812366455, 29.546376176388961 ], [ -94.662263812349821, 29.54641417640876 ], [ -94.662219812000316, 29.546436176310031 ], [ -94.662125812093777, 29.546447176328694 ], [ -94.662043811690779, 29.546431177057539 ], [ -94.661999811827883, 29.546398176717503 ], [ -94.661974812142248, 29.546392176547968 ], [ -94.661961811473006, 29.54641417642447 ], [ -94.661949811315395, 29.546486177087175 ], [ -94.661930811914871, 29.546541176545343 ], [ -94.661879811417691, 29.546612177135206 ], [ -94.661842812095244, 29.546623176525795 ], [ -94.661754811516488, 29.546623176803447 ], [ -94.661571812045224, 29.54668417667364 ], [ -94.661433811670662, 29.546684176680028 ], [ -94.661389811683662, 29.546662177075977 ], [ -94.661294811794818, 29.546590176522066 ], [ -94.66120681172336, 29.546502177039596 ], [ -94.661137811746244, 29.546469176754734 ], [ -94.661093812076601, 29.546464176873705 ], [ -94.660904811414326, 29.546458176337499 ], [ -94.660728811237306, 29.546425176401097 ], [ -94.660659811449705, 29.546436176939356 ], [ -94.660590811859649, 29.546463176853454 ], [ -94.660521811830506, 29.546502177175295 ], [ -94.660433811959066, 29.546601176985362 ], [ -94.66035781187496, 29.546639177121392 ], [ -94.660143811459747, 29.546854176993769 ], [ -94.660036811149183, 29.546909177175163 ], [ -94.659955811749526, 29.546931177013551 ], [ -94.659690810885778, 29.546953176838333 ], [ -94.659514810827702, 29.546931177177367 ], [ -94.65942081138148, 29.546876176867968 ], [ -94.65928881090349, 29.546727176778216 ], [ -94.659231810875312, 29.546689176601639 ], [ -94.659156811258583, 29.546661176674352 ], [ -94.658992811267353, 29.546650176837819 ], [ -94.658961810989453, 29.546661177014332 ], [ -94.658835810540467, 29.546760177072038 ], [ -94.658747810569608, 29.546777177028279 ], [ -94.658703811462104, 29.546760176820285 ], [ -94.658583810848953, 29.546650176438362 ], [ -94.658539811451419, 29.546628176798333 ], [ -94.658521810614531, 29.546639176461472 ], [ -94.658414811273587, 29.546749176548666 ], [ -94.658344811238067, 29.546776177149148 ], [ -94.658300810579519, 29.546815176514716 ], [ -94.658288811179489, 29.546848177024373 ], [ -94.658294811398235, 29.546909176886615 ], [ -94.658244811028709, 29.547030177027676 ], [ -94.658206810841776, 29.547090176796672 ], [ -94.658049810397699, 29.547238176572577 ], [ -94.657986811239027, 29.547249177422184 ], [ -94.657885810625146, 29.547205177119636 ], [ -94.657759811034936, 29.547172177439521 ], [ -94.657696810892872, 29.547183177217484 ], [ -94.657671810755204, 29.547244176946229 ], [ -94.657646810347586, 29.54737017745148 ], [ -94.657615810772242, 29.547409177230655 ], [ -94.657545810376291, 29.547420177099347 ], [ -94.657482811246695, 29.547409176713153 ], [ -94.657394810506332, 29.547370176912764 ], [ -94.657306810172798, 29.547315176743997 ], [ -94.657181810387357, 29.547260177289601 ], [ -94.657149811018627, 29.54723817695016 ], [ -94.657099811060561, 29.547244176826968 ], [ -94.657074810534397, 29.547271176773126 ], [ -94.657055810448753, 29.547475176961321 ], [ -94.65704981057425, 29.547498176698483 ], [ -94.657036810392412, 29.547563176841486 ], [ -94.657004810180297, 29.547607176755438 ], [ -94.656897810755083, 29.547700176758024 ], [ -94.656753810903183, 29.547783176771588 ], [ -94.656677810958755, 29.54780517727038 ], [ -94.656545810791073, 29.547816176756232 ], [ -94.656432809994158, 29.547799176822963 ], [ -94.65630681087103, 29.547761177337051 ], [ -94.656256810335108, 29.547717176889062 ], [ -94.65619981076901, 29.547705177195287 ], [ -94.65616880991054, 29.547722177409668 ], [ -94.656117809978142, 29.547799177541105 ], [ -94.65605481051648, 29.547815176855778 ], [ -94.655979810248567, 29.547848176995753 ], [ -94.655941809882577, 29.547848177417485 ], [ -94.655828810772604, 29.547821177386712 ], [ -94.655784810109225, 29.547826177184838 ], [ -94.655702810656607, 29.54790917727707 ], [ -94.655671809836633, 29.547925176965961 ], [ -94.655602810440385, 29.547936177663775 ], [ -94.655564810584039, 29.547964176989765 ], [ -94.655551810547536, 29.547991177482292 ], [ -94.655526810276939, 29.548019177577814 ], [ -94.655488810292738, 29.548035177310449 ], [ -94.655457809808809, 29.548030177265471 ], [ -94.655413810456267, 29.548002176817924 ], [ -94.655268809753125, 29.547997177512972 ], [ -94.655098810008724, 29.547958177620391 ], [ -94.655067809769392, 29.547958176861187 ], [ -94.655064810009989, 29.547976177142104 ], [ -94.655073809838399, 29.547997176793288 ], [ -94.655105810414597, 29.548035177098917 ], [ -94.655105809761736, 29.548063176977873 ], [ -94.655092810622705, 29.548090177458743 ], [ -94.655023810577575, 29.548134177112058 ], [ -94.654972810607049, 29.548151177175615 ], [ -94.654828809786196, 29.548173176878343 ], [ -94.654765810557393, 29.548167177295191 ], [ -94.654715809688071, 29.548151177054912 ], [ -94.654520810334503, 29.54813417751717 ], [ -94.654432810108361, 29.548112177426255 ], [ -94.654312810089763, 29.548107177106758 ], [ -94.654205809572588, 29.548057176929468 ], [ -94.654180810079595, 29.54795817725778 ], [ -94.654167810267921, 29.547936177117005 ], [ -94.654142809439406, 29.547925176977405 ], [ -94.654023810271298, 29.54791417753616 ], [ -94.653897810061878, 29.547914177085723 ], [ -94.653758809504239, 29.548013177002321 ], [ -94.653526809694, 29.548079176928486 ], [ -94.653463809444588, 29.548068177322367 ], [ -94.653362809808471, 29.548035177282188 ], [ -94.653299809577987, 29.548046177725531 ], [ -94.653255809651725, 29.548073177753462 ], [ -94.65323680936784, 29.54810617776857 ], [ -94.653230809733657, 29.548183177271138 ], [ -94.653211809443647, 29.548205177218936 ], [ -94.653186809633269, 29.548216177060933 ], [ -94.653117809799937, 29.548205177251752 ], [ -94.653060809940484, 29.548211177381219 ], [ -94.653004809671685, 29.54823317782386 ], [ -94.65298580942418, 29.548260177115264 ], [ -94.652953810095298, 29.548332176966444 ], [ -94.652922809656303, 29.548359177014611 ], [ -94.652840809774489, 29.548376177739343 ], [ -94.652802809079517, 29.548398177394478 ], [ -94.652758809637476, 29.548453177200429 ], [ -94.652752809707039, 29.548524177792405 ], [ -94.652701810012175, 29.548579177485998 ], [ -94.652664809907108, 29.548590177071507 ], [ -94.652613809582647, 29.548579177226408 ], [ -94.65250080895936, 29.548491177831369 ], [ -94.652425809782955, 29.548447177407507 ], [ -94.652337809661489, 29.548425177742995 ], [ -94.652286809332622, 29.548425177835341 ], [ -94.652198809255168, 29.548486177433592 ], [ -94.65213580979092, 29.548486177298823 ], [ -94.652041809279979, 29.548458177533643 ], [ -94.651840808994649, 29.548370177786556 ], [ -94.651620809206634, 29.548139177346698 ], [ -94.6515888096514, 29.548117177450763 ], [ -94.651519808820865, 29.548177177473786 ], [ -94.6514128091884, 29.548293177420053 ], [ -94.651387808725815, 29.548326177051095 ], [ -94.651362809203107, 29.548414177057388 ], [ -94.651387809196336, 29.54845817790288 ], [ -94.651362808668011, 29.548496177805379 ], [ -94.651261808887242, 29.548529177491037 ], [ -94.651160809100475, 29.548606177382311 ], [ -94.651116809638353, 29.548617177299239 ], [ -94.6510858091534, 29.548612177143252 ], [ -94.651016808950658, 29.548573177210066 ], [ -94.650965809590303, 29.548485177168686 ], [ -94.650921809172232, 29.548447177329408 ], [ -94.650714809352095, 29.548315177233412 ], [ -94.650682808611066, 29.548304177150843 ], [ -94.6506268087726, 29.548326177532587 ], [ -94.6505888085576, 29.548353177771595 ], [ -94.650437808559957, 29.548502177722472 ], [ -94.650217809155833, 29.548617177463829 ], [ -94.650204809415001, 29.548650177284802 ], [ -94.6502048091304, 29.548722177508076 ], [ -94.650198808796901, 29.548749177734543 ], [ -94.650154808467335, 29.548782177458108 ], [ -94.650104808934657, 29.548799177551732 ], [ -94.650053808661653, 29.548793177909662 ], [ -94.649839808536669, 29.548705177418714 ], [ -94.64978980864484, 29.548705177514694 ], [ -94.649739808357069, 29.548716177653862 ], [ -94.649600809179532, 29.548721177562797 ], [ -94.649468809029315, 29.548699178025139 ], [ -94.649311808190106, 29.548776177166967 ], [ -94.649248808470418, 29.548776177475613 ], [ -94.649116808914968, 29.548738177252094 ], [ -94.648896808944812, 29.548628177542348 ], [ -94.648846808551383, 29.548617177190216 ], [ -94.648820808902371, 29.548622177303947 ], [ -94.64877080871868, 29.548672178020553 ], [ -94.648808808032499, 29.548798178022011 ], [ -94.648795808845108, 29.548831177738329 ], [ -94.648770808543333, 29.54885917753472 ], [ -94.648657808760333, 29.548837178006455 ], [ -94.648632808267209, 29.548848177897405 ], [ -94.648544808996974, 29.548947177517892 ], [ -94.648512808228716, 29.548958177975418 ], [ -94.648418808647733, 29.548963177721173 ], [ -94.648317808670797, 29.548947177330195 ], [ -94.648267808131052, 29.548897177628351 ], [ -94.648198808754145, 29.548793177986489 ], [ -94.648172808095225, 29.548776177783658 ], [ -94.648110807960052, 29.548776177589342 ], [ -94.647946808028991, 29.548826178032709 ], [ -94.647889808733453, 29.54883117738526 ], [ -94.647707808175454, 29.54882017734214 ], [ -94.647631807807642, 29.548836177486784 ], [ -94.647474808562663, 29.548891178021087 ], [ -94.647405808286351, 29.548924177382823 ], [ -94.647229808036329, 29.549051177809634 ], [ -94.647097807976266, 29.549095177335538 ], [ -94.646933807827963, 29.549117177495624 ], [ -94.646832807997271, 29.549166177877122 ], [ -94.646600808415883, 29.549254177918247 ], [ -94.646122808146245, 29.549260177967099 ], [ -94.645807807786227, 29.549193177976075 ], [ -94.645625808147273, 29.549243178094571 ], [ -94.645568807868983, 29.549215177978422 ], [ -94.645316807648214, 29.549397177712112 ], [ -94.645201808027494, 29.549497178333837 ], [ -94.645128807837153, 29.549562177936586 ], [ -94.645090807750307, 29.549562178014011 ], [ -94.64500280760133, 29.549534178219922 ], [ -94.644769807950311, 29.549512177795091 ], [ -94.644675807271398, 29.549518178023884 ], [ -94.644593806984304, 29.549550178224226 ], [ -94.644511807788263, 29.549638178381592 ], [ -94.644429807035053, 29.549660177894921 ], [ -94.644367807145912, 29.549627177522932 ], [ -94.644335807575843, 29.549534177733864 ], [ -94.64427280708496, 29.549490178029775 ], [ -94.644033807650203, 29.549484178055621 ], [ -94.643979807358761, 29.549460178257746 ], [ -94.643555806923587, 29.549275178184072 ], [ -94.64353080679993, 29.549275177961484 ], [ -94.643310806780391, 29.54932517819266 ], [ -94.643222806928563, 29.549363177789704 ], [ -94.643140806738685, 29.54944017791804 ], [ -94.64311580729705, 29.549484178026017 ], [ -94.64292680700774, 29.549589178013054 ], [ -94.642844807445016, 29.54966617798982 ], [ -94.642781806835515, 29.549688178143683 ], [ -94.642643807029472, 29.549687178358379 ], [ -94.642567806860598, 29.549676177898967 ], [ -94.642486807382639, 29.549687178073299 ], [ -94.642442807121398, 29.549671178278679 ], [ -94.642404806539176, 29.549627178088315 ], [ -94.642372806936137, 29.549610178040457 ], [ -94.642347806730598, 29.549610177596765 ], [ -94.6422978068166, 29.549643177910401 ], [ -94.642259806491865, 29.549654178178375 ], [ -94.642234807306778, 29.549654177747161 ], [ -94.642196806468206, 29.549632177684018 ], [ -94.642146807039055, 29.549632177661518 ], [ -94.641989806722805, 29.549731177664516 ], [ -94.641894807263668, 29.549836177697554 ], [ -94.641857807237571, 29.549858178057043 ], [ -94.641800806915342, 29.549863178420267 ], [ -94.641680806686523, 29.549825178246522 ], [ -94.641649806758906, 29.549825178017599 ], [ -94.641504806723219, 29.549874178408601 ], [ -94.641416806918173, 29.549891177972086 ], [ -94.641328806876359, 29.549885177751371 ], [ -94.641303807109352, 29.549863177828986 ], [ -94.641297806487856, 29.549775178215899 ], [ -94.641265806267569, 29.549747177777153 ], [ -94.641244806428475, 29.5497471784346 ], [ -94.641215806975609, 29.549753178125243 ], [ -94.641152806704852, 29.54978617763787 ], [ -94.641146806685001, 29.549824178547329 ], [ -94.641158806300595, 29.549907178436747 ], [ -94.641139806372621, 29.549945178065705 ], [ -94.641114807011348, 29.549962178236054 ], [ -94.641083807042264, 29.549962177875969 ], [ -94.641014806942451, 29.549918177827859 ], [ -94.640831807024156, 29.549901178513235 ], [ -94.640800806249814, 29.549907177870747 ], [ -94.640661806901491, 29.549951177700514 ], [ -94.640510806014959, 29.549962178495321 ], [ -94.640454806863985, 29.549978178534676 ], [ -94.640403806084578, 29.550006177737714 ], [ -94.640347806004044, 29.550028178416905 ], [ -94.640208806006541, 29.550050178458442 ], [ -94.640152806533706, 29.550083178279827 ], [ -94.640098806854581, 29.550101178305685 ], [ -94.64000780640761, 29.550132177980526 ], [ -94.639963806383008, 29.550132177773154 ], [ -94.639818806363849, 29.550077177833387 ], [ -94.63975580653549, 29.550071178396074 ], [ -94.639724806197279, 29.550088178531428 ], [ -94.639655806715751, 29.550143177845325 ], [ -94.639623806602543, 29.550154178043815 ], [ -94.639586806293323, 29.550159177865204 ], [ -94.639548805798384, 29.550137177953786 ], [ -94.639523806560078, 29.550044178573835 ], [ -94.639491805802422, 29.550022178397004 ], [ -94.639409806196696, 29.550093178348284 ], [ -94.639353805854711, 29.550115178610888 ], [ -94.639296806498109, 29.550132178475113 ], [ -94.639139805904179, 29.550126178051421 ], [ -94.639095806415625, 29.550159177901794 ], [ -94.639063806347778, 29.550198178000151 ], [ -94.639057805674881, 29.550264177944356 ], [ -94.639032806300534, 29.550286178033335 ], [ -94.638938806361949, 29.55030817830373 ], [ -94.638774806405081, 29.550242178540611 ], [ -94.638749806466279, 29.550225178417946 ], [ -94.638642806283514, 29.550198178027095 ], [ -94.638611805563585, 29.550203178271161 ], [ -94.63859280640439, 29.550220178696659 ], [ -94.638573805829665, 29.550291178300878 ], [ -94.638535805930971, 29.550308178260895 ], [ -94.638504806203656, 29.550313178513672 ], [ -94.638265806145682, 29.550269178469957 ], [ -94.638177806123721, 29.550296178322281 ], [ -94.638126805713057, 29.550302178275235 ], [ -94.638076805419729, 29.55028517859305 ], [ -94.638000805814883, 29.550208178495186 ], [ -94.637965805866315, 29.550191177902402 ], [ -94.637944805539732, 29.550186178634323 ], [ -94.637931805328918, 29.550208178161814 ], [ -94.637906805275904, 29.550280178291228 ], [ -94.637881805650011, 29.55030217816504 ], [ -94.637818805758201, 29.550296178717321 ], [ -94.637761805496837, 29.550263178544522 ], [ -94.637705805640948, 29.550258178525638 ], [ -94.637642805976427, 29.550324178594096 ], [ -94.637598805899941, 29.550351178134338 ], [ -94.637390805490071, 29.550384178470477 ], [ -94.637283806050448, 29.550445177926289 ], [ -94.637227806053147, 29.55046117841631 ], [ -94.637120805478304, 29.55048317845198 ], [ -94.636925805569902, 29.55047217840082 ], [ -94.636868805290177, 29.550478178005843 ], [ -94.636786805995925, 29.550521178180968 ], [ -94.636692805833249, 29.550615178303353 ], [ -94.636629805288862, 29.550725178353144 ], [ -94.636553805299044, 29.550780178797229 ], [ -94.636497804959035, 29.550802178796118 ], [ -94.636277805624601, 29.550824178468336 ], [ -94.636151805289671, 29.550818178750916 ], [ -94.636075805414777, 29.550840178584121 ], [ -94.63594380556718, 29.550796178117668 ], [ -94.635887805144421, 29.550835178702361 ], [ -94.635887805114749, 29.550884178571138 ], [ -94.635849805149249, 29.550928178321829 ], [ -94.635811804775926, 29.550950178715524 ], [ -94.635723805097399, 29.550961178388032 ], [ -94.63560380573351, 29.550994178296335 ], [ -94.635408805295569, 29.550999178269898 ], [ -94.635371805317718, 29.551010178576732 ], [ -94.635345805039165, 29.551098178551456 ], [ -94.635314805146464, 29.551142178249194 ], [ -94.635251805163421, 29.551186178803242 ], [ -94.635138804714032, 29.551236178303341 ], [ -94.635031805540009, 29.551318178555679 ], [ -94.634980805506672, 29.551335178365971 ], [ -94.63477980464836, 29.551351178491277 ], [ -94.634634804798637, 29.551384178403282 ], [ -94.634584804506275, 29.551417178626824 ], [ -94.634439804704158, 29.551538178404705 ], [ -94.634383805349245, 29.551566178298526 ], [ -94.634269804717576, 29.551604179098504 ], [ -94.6342538052983, 29.551616179072948 ], [ -94.634162805135929, 29.551643178603371 ], [ -94.634018804487013, 29.551648178826238 ], [ -94.633823805265777, 29.55172517893898 ], [ -94.633584804861485, 29.551840178935986 ], [ -94.632728804734967, 29.552109179015687 ], [ -94.632564804266579, 29.552115178516033 ], [ -94.632445804569869, 29.552131178570065 ], [ -94.632137804382566, 29.55219217902377 ], [ -94.631552804436481, 29.552186178727109 ], [ -94.631231804233195, 29.55222417873955 ], [ -94.630652804029765, 29.552230178799526 ], [ -94.630520804484973, 29.552191178711411 ], [ -94.630495804160574, 29.552202178911887 ], [ -94.630457804401743, 29.5522461790225 ], [ -94.630407803778681, 29.55237817893094 ], [ -94.630375804192028, 29.552521178589114 ], [ -94.630337804453092, 29.552587178936015 ], [ -94.630306803939504, 29.552631179329605 ], [ -94.630256804075771, 29.552658179082187 ], [ -94.630205803534395, 29.552675178903872 ], [ -94.630168803783278, 29.552675179484851 ], [ -94.630048804097029, 29.552647179429627 ], [ -94.63001680372696, 29.552664179007678 ], [ -94.62997980355928, 29.552779179369253 ], [ -94.629954803781544, 29.552818178684582 ], [ -94.629903804105979, 29.552840178730484 ], [ -94.629847804062067, 29.552840179370978 ], [ -94.629784804106009, 29.552851178847096 ], [ -94.629557804132119, 29.552922178935997 ], [ -94.629485804241469, 29.552938178730081 ], [ -94.628689803550827, 29.553125179585244 ], [ -94.628330803326946, 29.553252178777427 ], [ -94.62815480295211, 29.553279179504045 ], [ -94.627852803566498, 29.553361179450878 ], [ -94.627538803387807, 29.553416179331546 ], [ -94.627462802931319, 29.55344917901942 ], [ -94.627254803049837, 29.553488179082233 ], [ -94.627141803042065, 29.553466179465708 ], [ -94.627066803379293, 29.553438179518114 ], [ -94.627003803205767, 29.553427179216968 ], [ -94.626940803536229, 29.553438179189175 ], [ -94.626820803092215, 29.553499179598536 ], [ -94.626462802660441, 29.553553179278779 ], [ -94.626355802847073, 29.553526179030197 ], [ -94.626305803095377, 29.553531179770523 ], [ -94.626210803329826, 29.553581179315774 ], [ -94.626091802417619, 29.553575179788464 ], [ -94.626034802378044, 29.553559179079581 ], [ -94.625883802651543, 29.553526179281182 ], [ -94.625820803130921, 29.553482179806014 ], [ -94.625808802471397, 29.55343217952321 ], [ -94.625814803208172, 29.553306179786425 ], [ -94.625795803195189, 29.553267179085875 ], [ -94.62577680296134, 29.553251179094627 ], [ -94.625745802833748, 29.553251179721698 ], [ -94.625720803205056, 29.553261179554227 ], [ -94.625681803280258, 29.553438179457441 ], [ -94.625669802786064, 29.553498179741268 ], [ -94.625644802725247, 29.55354717982501 ], [ -94.625581802645272, 29.553619179724617 ], [ -94.625543803205602, 29.553652179277549 ], [ -94.625480802346871, 29.553685179731367 ], [ -94.625424802832853, 29.553685179455524 ], [ -94.625235802792304, 29.553613179486149 ], [ -94.625210802307905, 29.553580179026358 ], [ -94.625179802738529, 29.553514179550131 ], [ -94.625176802506104, 29.553499179754944 ], [ -94.625153802892598, 29.553338179642314 ], [ -94.625111803078042, 29.553297179318601 ], [ -94.625095802842068, 29.55329017918196 ], [ -94.625040803112043, 29.553410179275968 ], [ -94.625010802982374, 29.553418179733185 ], [ -94.624890802917662, 29.553396179375568 ], [ -94.624695802792985, 29.553291179544871 ], [ -94.624639802424909, 29.553291179808209 ], [ -94.62444480201296, 29.553363179743027 ], [ -94.624305802002482, 29.55335817913258 ], [ -94.62424280276565, 29.553374179075281 ], [ -94.624205802792105, 29.553424179360849 ], [ -94.624205802369644, 29.553462179219242 ], [ -94.624186802899047, 29.55349517904618 ], [ -94.6238718020428, 29.553594179793475 ], [ -94.623796802128822, 29.553633179328134 ], [ -94.623739801941468, 29.553633178999572 ], [ -94.623639802556994, 29.553616179701482 ], [ -94.623544802458383, 29.553627179792269 ], [ -94.623500802425298, 29.553660179198079 ], [ -94.623393802638475, 29.553765179326792 ], [ -94.62333780247107, 29.553749179490726 ], [ -94.623286802083925, 29.553672179258342 ], [ -94.623261801815261, 29.553644179641658 ], [ -94.623205802609434, 29.553639179934727 ], [ -94.623129802498397, 29.55365517993485 ], [ -94.622915801819431, 29.553776179633772 ], [ -94.622708802449424, 29.553886179633341 ], [ -94.622632801570902, 29.553903179758379 ], [ -94.622154801354597, 29.553909179779222 ], [ -94.621978802241799, 29.553848179354631 ], [ -94.621934801379638, 29.553848179561776 ], [ -94.621865802042507, 29.553865179186321 ], [ -94.621758801291065, 29.553914179513939 ], [ -94.621670801471794, 29.553964179415267 ], [ -94.62123680210145, 29.554074179629435 ], [ -94.621035801921508, 29.554201179469931 ], [ -94.620764801718963, 29.554294179609347 ], [ -94.620645801414327, 29.554322179802234 ], [ -94.620481801265527, 29.554338179722901 ], [ -94.620412801434696, 29.554377179830123 ], [ -94.620330801828985, 29.554487179736572 ], [ -94.620318801299561, 29.554575179803855 ], [ -94.619909800926251, 29.554718179904182 ], [ -94.61979680142214, 29.554713179525013 ], [ -94.619702801017169, 29.554685179544737 ], [ -94.619664801318152, 29.554674179530792 ], [ -94.619462801363497, 29.554636179759306 ], [ -94.619248800798346, 29.554647180229448 ], [ -94.619141800919579, 29.554631179775132 ], [ -94.61909180119379, 29.554642179499226 ], [ -94.619035800860658, 29.554664179584428 ], [ -94.618972801401895, 29.554746179903407 ], [ -94.618921801137674, 29.554790179791109 ], [ -94.618330801110858, 29.554895179563822 ], [ -94.618072801314582, 29.5548891799396 ], [ -94.617776800964918, 29.554818179701599 ], [ -94.617714800415769, 29.554780180030548 ], [ -94.617657801257806, 29.554769179700667 ], [ -94.617500801046774, 29.554780180294266 ], [ -94.617028800991008, 29.554989179904304 ], [ -94.61684680028533, 29.555050179660913 ], [ -94.616808800641692, 29.555077179684513 ], [ -94.616764800214824, 29.555094180053281 ], [ -94.616695800618189, 29.555110180238817 ], [ -94.616550800626214, 29.555127180242664 ], [ -94.616103800168787, 29.555253179894745 ], [ -94.615889800812724, 29.555264180500796 ], [ -94.615739800555858, 29.555347180172404 ], [ -94.615669800469007, 29.555375180140963 ], [ -94.615562799882753, 29.55538018035254 ], [ -94.615512799973374, 29.555364179875514 ], [ -94.615474800520147, 29.555375179935911 ], [ -94.61541180042444, 29.555430179771573 ], [ -94.615361800083789, 29.555518180263935 ], [ -94.615292799684923, 29.555540180469105 ], [ -94.615198799650329, 29.555523180214013 ], [ -94.615141800264354, 29.555501180436703 ], [ -94.615091800363473, 29.555496179983095 ], [ -94.615028800241888, 29.55550117997419 ], [ -94.614864799675644, 29.555633180160257 ], [ -94.614789800011906, 29.555677180543185 ], [ -94.614713800456229, 29.555683180625728 ], [ -94.614525799539024, 29.55563418002912 ], [ -94.614405799868422, 29.55563918002316 ], [ -94.614330800082911, 29.555672179968759 ], [ -94.614267799689571, 29.555755180400059 ], [ -94.61422980018645, 29.555771180442619 ], [ -94.613996799834908, 29.555760180123396 ], [ -94.613952799751061, 29.555694180266386 ], [ -94.613932800035982, 29.555689180261886 ], [ -94.613858799832556, 29.555738179846326 ], [ -94.613751800099621, 29.555859180349639 ], [ -94.613619799738032, 29.555936180579227 ], [ -94.613424799271613, 29.556008180174693 ], [ -94.613248799536848, 29.556030180208104 ], [ -94.613210799353297, 29.556052180704427 ], [ -94.612984799889361, 29.556162180149073 ], [ -94.61290879999332, 29.556173180443441 ], [ -94.612852799802482, 29.556129180500573 ], [ -94.612770799353925, 29.556102180665079 ], [ -94.612713799659502, 29.556102180213827 ], [ -94.612266799383491, 29.556201180152428 ], [ -94.61216679954795, 29.556267180694064 ], [ -94.611619799182705, 29.55643818064452 ], [ -94.611191799517997, 29.556559180788586 ], [ -94.61100979907954, 29.556636180545954 ], [ -94.610876799479811, 29.556719180426974 ], [ -94.610732799443412, 29.556757180823944 ], [ -94.610543798828942, 29.556796180391903 ], [ -94.610310799424425, 29.556873180718807 ], [ -94.610191798633537, 29.556922180761589 ], [ -94.610122798624175, 29.556977180762424 ], [ -94.610185798456513, 29.557142180861678 ], [ -94.610204798595774, 29.557164180257789 ], [ -94.610178798577095, 29.557181180816777 ], [ -94.609694799101732, 29.557153180828294 ], [ -94.609600799092263, 29.557170180388344 ], [ -94.609493798463333, 29.557203180580562 ], [ -94.609423799127114, 29.557198180414662 ], [ -94.609335798710404, 29.55720918101489 ], [ -94.609279798245211, 29.557247180355159 ], [ -94.608964799050852, 29.557407181080052 ], [ -94.608455798223005, 29.557445181097787 ], [ -94.608386798383691, 29.557473180412341 ], [ -94.608285797978525, 29.557572181104483 ], [ -94.608197798505827, 29.55758918086342 ], [ -94.608096798143691, 29.557622181125407 ], [ -94.607883798179756, 29.557754180666567 ], [ -94.607706798628953, 29.557787180622952 ], [ -94.607662798082885, 29.557803181254648 ], [ -94.607423798579831, 29.557858180517339 ], [ -94.607335797846304, 29.557886180784418 ], [ -94.607279798252094, 29.557924181152845 ], [ -94.607191797972462, 29.55793518127636 ], [ -94.607102797826116, 29.557935180793724 ], [ -94.606989798420926, 29.557968180578186 ], [ -94.606851797979317, 29.558029180725935 ], [ -94.606593798394371, 29.558178180554201 ], [ -94.60646779850714, 29.558222180908835 ], [ -94.606354798199064, 29.558238180975327 ], [ -94.606021797591112, 29.558249181340116 ], [ -94.605832798262696, 29.558277181447977 ], [ -94.605750797756329, 29.558299181191082 ], [ -94.605675798209191, 29.558343181149752 ], [ -94.605429797485257, 29.558393181234258 ], [ -94.605322797204948, 29.558404181374971 ], [ -94.605146797509846, 29.558371180723306 ], [ -94.605033798004442, 29.558382181176544 ], [ -94.604932797822926, 29.558415180914864 ], [ -94.604568797190282, 29.558574181127415 ], [ -94.604473797210574, 29.558591181296478 ], [ -94.604316797217237, 29.558613181310719 ], [ -94.604083797873756, 29.558673180904023 ], [ -94.60398379711097, 29.558767181225278 ], [ -94.603555797124599, 29.55890518104075 ], [ -94.603253796949915, 29.558960180822233 ], [ -94.602945797381523, 29.558998181189789 ], [ -94.602921796698467, 29.559005181342368 ], [ -94.602781796873913, 29.559048181561575 ], [ -94.602750797338672, 29.559070180978999 ], [ -94.602662797259853, 29.559098180971127 ], [ -94.602479796511929, 29.559120181509101 ], [ -94.602423797081812, 29.559136181294516 ], [ -94.602341796814983, 29.559202181670319 ], [ -94.602322797014978, 29.559246181531325 ], [ -94.602177797393779, 29.559329181067646 ], [ -94.601731797313974, 29.559466181331526 ], [ -94.601649796673939, 29.559466181786078 ], [ -94.601592796548445, 29.559422181186751 ], [ -94.601536797166673, 29.559433181168615 ], [ -94.601360796775609, 29.55955418131699 ], [ -94.600951796558832, 29.559764181654366 ], [ -94.600844797148127, 29.559918181164292 ], [ -94.600724796882986, 29.559984181762065 ], [ -94.600441796671845, 29.559973181562039 ], [ -94.600328796122753, 29.560039181894453 ], [ -94.600278796350139, 29.560154181581197 ], [ -94.600202796680676, 29.560215181878622 ], [ -94.600014796348177, 29.560226181420731 ], [ -94.599856796294134, 29.560281181987392 ], [ -94.599668796615092, 29.560369181729403 ], [ -94.599385796328974, 29.560534182005274 ], [ -94.599303796706906, 29.560661181615938 ], [ -94.599183795986804, 29.560771181762728 ], [ -94.599020796546611, 29.560864182180211 ], [ -94.598818796347601, 29.560947181891269 ], [ -94.59831579607598, 29.561216181935244 ], [ -94.598177795985066, 29.561453181547733 ], [ -94.597976795574525, 29.561662182380491 ], [ -94.597860796182147, 29.561799182111514 ], [ -94.5977837963094, 29.561888181907541 ], [ -94.597630795725166, 29.56206918215716 ], [ -94.59751379579906, 29.562075182492794 ], [ -94.597395795866518, 29.562080181873338 ], [ -94.597148796016555, 29.562091182415038 ], [ -94.596900795367461, 29.56210218205052 ], [ -94.596881795498973, 29.562025182297599 ], [ -94.596749795203039, 29.56188818160993 ], [ -94.596629795125935, 29.561794181892495 ], [ -94.596183795959533, 29.561751182252685 ], [ -94.595667795416162, 29.561789181997682 ], [ -94.595528795810978, 29.561778181751272 ], [ -94.595296795039715, 29.561784182302333 ], [ -94.594969795148828, 29.561877181891848 ], [ -94.594906794919837, 29.561905182490815 ], [ -94.594239794889205, 29.562004182587536 ], [ -94.594069795235015, 29.562048181753479 ], [ -94.593968795378387, 29.562103182038044 ], [ -94.593497794434754, 29.562257182357552 ], [ -94.593056794354368, 29.562285182673122 ], [ -94.5929877947883, 29.562345182690276 ], [ -94.592974794634415, 29.562400182497662 ], [ -94.592949794580733, 29.562439182569889 ], [ -94.592905794724771, 29.562455182107531 ], [ -94.592767794806647, 29.562455182410147 ], [ -94.592647795096525, 29.562417182499747 ], [ -94.592591794816883, 29.562423182040746 ], [ -94.592333794562251, 29.562511182133495 ], [ -94.591911794913017, 29.562610182070127 ], [ -94.591817794717898, 29.562670182559827 ], [ -94.591685794226549, 29.562714182791513 ], [ -94.591427794778696, 29.562786182408875 ], [ -94.591297794127158, 29.562872182412839 ], [ -94.590829793920932, 29.56318218293509 ], [ -94.59071679383807, 29.563182182076403 ], [ -94.590565794176456, 29.563160182550838 ], [ -94.590465793601268, 29.563303182714449 ], [ -94.590225793521682, 29.563435182960653 ], [ -94.589949793659017, 29.563512182439887 ], [ -94.589854793791261, 29.563512182234856 ], [ -94.589804794223753, 29.563490182228584 ], [ -94.589785793587666, 29.563424182452032 ], [ -94.589747793471588, 29.563413182976863 ], [ -94.589716793716391, 29.563430182732819 ], [ -94.589691793928438, 29.563463182354759 ], [ -94.589703793525572, 29.56354018262191 ], [ -94.589691793511392, 29.563573183043999 ], [ -94.589653793832369, 29.563606182756004 ], [ -94.589490793689066, 29.563617182436339 ], [ -94.589401793912359, 29.563639182593029 ], [ -94.58933979394476, 29.563677182759477 ], [ -94.589206793433874, 29.563831182650961 ], [ -94.589074793461052, 29.563914182852226 ], [ -94.588508793909583, 29.564145182420194 ], [ -94.588420794000271, 29.564161182534878 ], [ -94.588345794054291, 29.564222183173182 ], [ -94.588313793261889, 29.564255182709392 ], [ -94.58820679374071, 29.564316182983365 ], [ -94.587992793911781, 29.564305182475781 ], [ -94.58791179345603, 29.564338183123592 ], [ -94.587867793114839, 29.564365183095596 ], [ -94.587848793093983, 29.564393183171639 ], [ -94.587848793632872, 29.564497183139515 ], [ -94.587835793169262, 29.564530182904377 ], [ -94.587760793168982, 29.564558182462775 ], [ -94.587716793381489, 29.564558183339315 ], [ -94.587470793457896, 29.564464182585859 ], [ -94.587376793552451, 29.564387182957653 ], [ -94.587344793732441, 29.56434918310795 ], [ -94.587307793148085, 29.564332182628331 ], [ -94.587256793224356, 29.564343182836168 ], [ -94.587149793730035, 29.564387183039045 ], [ -94.587042793658412, 29.564497182882029 ], [ -94.586954792743327, 29.564569182837008 ], [ -94.586885792772478, 29.564585183313991 ], [ -94.586684793526288, 29.564596183245772 ], [ -94.58661579270742, 29.564624183347547 ], [ -94.586464792868369, 29.564728183357488 ], [ -94.58640779325323, 29.56478918298313 ], [ -94.586281793279994, 29.564855183390055 ], [ -94.585885792926916, 29.564921183395061 ], [ -94.585444793056681, 29.565037182824327 ], [ -94.585256793105984, 29.565114183412707 ], [ -94.58508679266842, 29.565196183395734 ], [ -94.585004793088814, 29.565383182823105 ], [ -94.584960792533167, 29.565422183466133 ], [ -94.584904792808388, 29.565444183210666 ], [ -94.584576792744684, 29.565466183537023 ], [ -94.584300792354469, 29.565570183362841 ], [ -94.584224792425346, 29.565565183289081 ], [ -94.584180792455356, 29.565548182846815 ], [ -94.584130792564721, 29.565548183048882 ], [ -94.583941792885511, 29.56563118303815 ], [ -94.583759792817233, 29.565736183336288 ], [ -94.583721792684955, 29.565796183225874 ], [ -94.583702792563727, 29.565889183008515 ], [ -94.583438792293606, 29.566011183478818 ], [ -94.583369792754482, 29.566033183004205 ], [ -94.583325792293238, 29.566033183338131 ], [ -94.583211792394067, 29.565983183782148 ], [ -94.582595791743287, 29.566242183671886 ], [ -94.582526791792844, 29.566291183666944 ], [ -94.582343791931521, 29.566462183204901 ], [ -94.582217791748434, 29.566462183703809 ], [ -94.582110791837536, 29.566506183598449 ], [ -94.582079792306658, 29.566533183294823 ], [ -94.582022791878018, 29.566621183836876 ], [ -94.581928792079708, 29.566687183873029 ], [ -94.581626791571708, 29.566693183167082 ], [ -94.581544791511433, 29.566698183615745 ], [ -94.58150679205373, 29.566709183287671 ], [ -94.581462791797335, 29.566742183842248 ], [ -94.581437792078304, 29.566808183734203 ], [ -94.581399792051272, 29.566852183272328 ], [ -94.581355791945086, 29.56701218398613 ], [ -94.581305791902082, 29.567127183532662 ], [ -94.581192792374011, 29.567210183822439 ], [ -94.581160792305099, 29.567220183486114 ], [ -94.581129792271767, 29.567232183652749 ], [ -94.581104792209373, 29.567238183549435 ], [ -94.581022791892735, 29.567237183781877 ], [ -94.580978791801186, 29.567183183347037 ], [ -94.580947791861988, 29.56706718374372 ], [ -94.580877792026513, 29.566973183341805 ], [ -94.580802792053802, 29.566946184057297 ], [ -94.580626791653287, 29.566946183834542 ], [ -94.58047579164058, 29.567029183545632 ], [ -94.580361792023453, 29.567122183347081 ], [ -94.580104791636671, 29.567216183523019 ], [ -94.579801791372759, 29.567353183805881 ], [ -94.579544791914159, 29.567447183871046 ], [ -94.579059791825884, 29.567601183867158 ], [ -94.578550791036363, 29.567810183609538 ], [ -94.578279790734996, 29.567986183895322 ], [ -94.578053790829713, 29.568096183916772 ], [ -94.577738791099264, 29.568278184416538 ], [ -94.577310790852678, 29.568366184474772 ], [ -94.577071790916676, 29.568553183784964 ], [ -94.576467791094686, 29.56890518393616 ], [ -94.575813790389233, 29.569306184626914 ], [ -94.575046790439586, 29.569713184589109 ], [ -94.574642790158748, 29.569921184142977 ], [ -94.573781789822746, 29.570368184285432 ], [ -94.572730789996868, 29.570962184824626 ], [ -94.572095790180924, 29.571210184909898 ], [ -94.571252789596542, 29.571573185102103 ], [ -94.570704789150255, 29.571782185317019 ], [ -94.570509789343788, 29.571969185274629 ], [ -94.570434789777337, 29.572112185113532 ], [ -94.570440789305437, 29.572189185489499 ], [ -94.570541789777337, 29.572282184946992 ], [ -94.570585788840432, 29.57233818518943 ], [ -94.570516789251997, 29.572453185561418 ], [ -94.570453789575637, 29.572536185550291 ], [ -94.570415788912982, 29.572585185208517 ], [ -94.570421789551006, 29.572695185601948 ], [ -94.570509789318436, 29.57275518511215 ], [ -94.570522789001615, 29.572865185282289 ], [ -94.570459789231066, 29.573014185243039 ], [ -94.570226789761932, 29.573218184977442 ], [ -94.570138789175189, 29.573240185018093 ], [ -94.570063789037391, 29.57324018529355 ], [ -94.569968788788785, 29.573240185700016 ], [ -94.569908788711331, 29.573211185261023 ], [ -94.569830789060532, 29.573174185420765 ], [ -94.5698557887292, 29.573036184881758 ], [ -94.569805789468887, 29.572937185311403 ], [ -94.56939678905735, 29.572855184962826 ], [ -94.569264789449051, 29.572893185507635 ], [ -94.569031789086594, 29.573058185094183 ], [ -94.568930789273423, 29.573080185204812 ], [ -94.568723789360604, 29.573069185032761 ], [ -94.568471788998153, 29.573130185705477 ], [ -94.568188788732257, 29.573179185307193 ], [ -94.568024788242056, 29.573256184947269 ], [ -94.567871789107613, 29.573354185317339 ], [ -94.567856788267164, 29.573360185556865 ], [ -94.56778678833841, 29.57336818584826 ], [ -94.567735788681077, 29.5733721856847 ], [ -94.567697788151975, 29.57337718520532 ], [ -94.567590788225544, 29.573333184965019 ], [ -94.567584788530539, 29.57322918521535 ], [ -94.56755278860318, 29.573119185113356 ], [ -94.567507788083745, 29.573114185637337 ], [ -94.567489788727045, 29.573113185406228 ], [ -94.56732678843639, 29.573124185721149 ], [ -94.567055788796566, 29.573102185737948 ], [ -94.566860787981653, 29.57320118534922 ], [ -94.566709788448449, 29.573317185472149 ], [ -94.566571787854912, 29.573399185241527 ], [ -94.566143788609438, 29.573542185495192 ], [ -94.566030788701624, 29.57352618514139 ], [ -94.565891787975062, 29.573460185463688 ], [ -94.565797788155848, 29.573471185700562 ], [ -94.565715788218512, 29.573515185635014 ], [ -94.565646787642621, 29.573614185649227 ], [ -94.565514787662693, 29.573718185329739 ], [ -94.564683788364931, 29.573933185849391 ], [ -94.564325788226412, 29.57401518552803 ], [ -94.563872788087281, 29.574037185626441 ], [ -94.563016787118514, 29.574191185670074 ], [ -94.562682787349075, 29.574324185337208 ], [ -94.56251278716654, 29.574340185451348 ], [ -94.562229786760852, 29.574313186169785 ], [ -94.561751787394854, 29.574406186154746 ], [ -94.560971786890065, 29.574439185601925 ], [ -94.560543786470291, 29.574445185613563 ], [ -94.55991478712977, 29.574511186138785 ], [ -94.559178786103445, 29.574544186001624 ], [ -94.558957786305044, 29.574588186083297 ], [ -94.558567786754693, 29.574560186210608 ], [ -94.558133786221461, 29.574577186355846 ], [ -94.558001785827059, 29.574593186121739 ], [ -94.557642785895908, 29.574582186021583 ], [ -94.557384786511605, 29.5745661856886 ], [ -94.557303785988282, 29.574489185696891 ], [ -94.557170786340279, 29.574412186247496 ], [ -94.556604785993457, 29.574329185923222 ], [ -94.556441786170325, 29.574340185733099 ], [ -94.556176786039956, 29.574395185832994 ], [ -94.556093785717366, 29.574444186007224 ], [ -94.555943785773394, 29.574533185773213 ], [ -94.555723785338159, 29.574483185786075 ], [ -94.555585785628452, 29.574395186143761 ], [ -94.555302785241864, 29.574296186382362 ], [ -94.554962785866863, 29.5742411861706 ], [ -94.554509785465768, 29.574263186259067 ], [ -94.554194785547523, 29.574263186217486 ], [ -94.554150785336361, 29.574279185965139 ], [ -94.554106785621116, 29.574340185757066 ], [ -94.55402478486927, 29.574351185752398 ], [ -94.553836784931462, 29.574329186259686 ], [ -94.553666784547971, 29.574340186504454 ], [ -94.553559784615445, 29.574362186033603 ], [ -94.553464784877931, 29.574362186510488 ], [ -94.553395785276862, 29.574312186020141 ], [ -94.553276785203494, 29.574285186270572 ], [ -94.553200784842346, 29.574279186348054 ], [ -94.553162784546728, 29.574235186275224 ], [ -94.553099785246985, 29.574186186052618 ], [ -94.55305578534302, 29.574191186002782 ], [ -94.552980784739802, 29.574224185902541 ], [ -94.552911784381536, 29.574219186088424 ], [ -94.552892785301268, 29.574186186140754 ], [ -94.552848784805903, 29.574158185837859 ], [ -94.552741784526901, 29.574197185909359 ], [ -94.552665784780345, 29.574268186391105 ], [ -94.552609784546888, 29.574257186324406 ], [ -94.552546784773853, 29.574213186226181 ], [ -94.552558785273973, 29.57416918572547 ], [ -94.552527784315728, 29.574125186195751 ], [ -94.552388784377555, 29.57405418629919 ], [ -94.552294784292684, 29.574043186320161 ], [ -94.552149784853995, 29.574175185811953 ], [ -94.551564784537632, 29.573988185682282 ], [ -94.551493784182412, 29.573952186118568 ], [ -94.551218784553058, 29.573812186237948 ], [ -94.550734784782122, 29.573614185910209 ], [ -94.549916784171813, 29.573344185612982 ], [ -94.54899178382172, 29.573201185661322 ], [ -94.548399783219821, 29.57308018611112 ], [ -94.548217783761743, 29.573102185726182 ], [ -94.547915783845895, 29.573091186039193 ], [ -94.54746278353069, 29.572926186424418 ], [ -94.546719782829911, 29.572761186381179 ], [ -94.546298783237475, 29.572585186179122 ], [ -94.545914782793773, 29.572508186162551 ], [ -94.545650783215095, 29.572299185911326 ], [ -94.545298782598991, 29.572134185960088 ], [ -94.545115782846949, 29.571892185615276 ], [ -94.544845782630816, 29.571738186132773 ], [ -94.544467782371939, 29.571342186126497 ], [ -94.54369378189007, 29.57058318519103 ], [ -94.543498782746525, 29.570483185369369 ], [ -94.543454782135541, 29.570428186003259 ], [ -94.543410782516858, 29.570302185635093 ], [ -94.543347781928318, 29.570208185675241 ], [ -94.543102782515348, 29.57013718590332 ], [ -94.542863782449686, 29.569961185211852 ], [ -94.542523781675641, 29.569438185295709 ], [ -94.542209782265203, 29.569070185081017 ], [ -94.541649781870774, 29.568586185662415 ], [ -94.541322782091768, 29.567882185144715 ], [ -94.541139781070783, 29.567601185427232 ], [ -94.540900781162833, 29.567266185405057 ], [ -94.540756780943767, 29.566759185224495 ], [ -94.540705781481776, 29.566424185199811 ], [ -94.540510780924734, 29.566028184981601 ], [ -94.540299780868139, 29.56548318434012 ], [ -94.540240781260707, 29.565329184395541 ], [ -94.540001781500422, 29.564477184914431 ], [ -94.539787781065272, 29.564086184701384 ], [ -94.53940478066059, 29.563690184624779 ], [ -94.539051780603742, 29.563047184657972 ], [ -94.538737780407004, 29.562722184092177 ], [ -94.538466780505502, 29.562661184212281 ], [ -94.538152780376507, 29.562606184509594 ], [ -94.537906780152511, 29.562458183959553 ], [ -94.537498780470315, 29.562012184234156 ], [ -94.537347779943019, 29.561727183539208 ], [ -94.537215780060919, 29.561479184291816 ], [ -94.536944779730447, 29.561033183650455 ], [ -94.536762779871637, 29.560797183472552 ], [ -94.536454780330757, 29.560670183934405 ], [ -94.536234779594182, 29.560428183874933 ], [ -94.536089779613505, 29.560213184045693 ], [ -94.536007780220942, 29.560191184053537 ], [ -94.535806780294195, 29.560224184169886 ], [ -94.535636779560093, 29.560219183381431 ], [ -94.53555477929909, 29.560153183979331 ], [ -94.535403779328149, 29.559949183894737 ], [ -94.535120780045403, 29.559740183387891 ], [ -94.534912779737951, 29.55964718399219 ], [ -94.534749779346782, 29.55952018371061 ], [ -94.534321778908449, 29.559311183912634 ], [ -94.533881778959667, 29.559014183584594 ], [ -94.533636779682624, 29.558799183108466 ], [ -94.533384778741819, 29.55877718366165 ], [ -94.533151779324683, 29.558794183387903 ], [ -94.53298877911952, 29.55883218328351 ], [ -94.53283077942875, 29.558799183377065 ], [ -94.532623779018166, 29.558634183782626 ], [ -94.532428778449017, 29.558376183315477 ], [ -94.532340778821862, 29.558293183112433 ], [ -94.532245778774495, 29.558266183771934 ], [ -94.532000778346443, 29.558398183787126 ], [ -94.531893778626923, 29.558392183683178 ], [ -94.531717778544916, 29.558282183454523 ], [ -94.531258778994797, 29.557941183675428 ], [ -94.531107778993999, 29.557682183098873 ], [ -94.531025778083531, 29.557523183659555 ], [ -94.530918778350241, 29.557429183452935 ], [ -94.530736778017413, 29.557402183248886 ], [ -94.53030277812374, 29.557110183621937 ], [ -94.529968778169916, 29.55695118308256 ], [ -94.529616777885508, 29.556813183481943 ], [ -94.529220777592471, 29.556565183075435 ], [ -94.529144778313906, 29.556499183281904 ], [ -94.528691777600514, 29.556103183459786 ], [ -94.528459777493509, 29.555663182817856 ], [ -94.528295777398625, 29.555322183242215 ], [ -94.528075777724581, 29.555162183230873 ], [ -94.527906777668065, 29.555025182730496 ], [ -94.52764177719078, 29.554612183174957 ], [ -94.527597777305914, 29.554431182837387 ], [ -94.52752877700965, 29.554299182916342 ], [ -94.527409777129137, 29.554200183128348 ], [ -94.527239777003558, 29.55398018263806 ], [ -94.526918777647438, 29.553622183116804 ], [ -94.526692776687071, 29.553490183075301 ], [ -94.526396777025909, 29.553391182322368 ], [ -94.526151776853453, 29.55324218252473 ], [ -94.52598777673343, 29.553182182242086 ], [ -94.525918777423257, 29.553011182557995 ], [ -94.52588177681649, 29.552830182740653 ], [ -94.525818776611658, 29.552747182814475 ], [ -94.525660776989184, 29.552604182491244 ], [ -94.525472776533377, 29.552395182520314 ], [ -94.525289776896273, 29.55212618227301 ], [ -94.52517077663947, 29.551812182305135 ], [ -94.525115777054225, 29.551643182049126 ], [ -94.525114776519928, 29.551625181872289 ], [ -94.525025777011081, 29.551636182207158 ], [ -94.525007776905809, 29.551669182593688 ], [ -94.524988777045678, 29.551740182223579 ], [ -94.525000776626712, 29.551829182093968 ], [ -94.525095776907804, 29.552071182155572 ], [ -94.52520877629081, 29.552324182810356 ], [ -94.525201777017372, 29.552467182687323 ], [ -94.525208776933979, 29.552560182238825 ], [ -94.525025776815255, 29.552610182816853 ], [ -94.524792777016486, 29.552637182971644 ], [ -94.524641776462275, 29.55260418239315 ], [ -94.524534776889283, 29.552543182661516 ], [ -94.524289776486768, 29.552549182358955 ], [ -94.524207776052677, 29.552510182353611 ], [ -94.524094776832726, 29.552444182277203 ], [ -94.523843775917243, 29.55213118208102 ], [ -94.523478776708231, 29.551718182259222 ], [ -94.523340776320254, 29.551383182037437 ], [ -94.523308775726463, 29.551350182542905 ], [ -94.523107775658431, 29.550948182658882 ], [ -94.522887776214915, 29.55037018248786 ], [ -94.522755776259572, 29.549787182129155 ], [ -94.522642776307933, 29.549177181540585 ], [ -94.522309775695092, 29.547917181191508 ], [ -94.522221776109006, 29.547323181192809 ], [ -94.522303775538177, 29.546349181068862 ], [ -94.522373776032893, 29.545799181149857 ], [ -94.522845775324768, 29.544729180875521 ], [ -94.523317775595643, 29.543660180415813 ], [ -94.523311776069448, 29.543556180968068 ], [ -94.523330776284695, 29.543435181090803 ], [ -94.523380776207745, 29.54328618070841 ], [ -94.523374775908707, 29.543099181039675 ], [ -94.523311775386603, 29.543033180966134 ], [ -94.523305775564978, 29.542780180778454 ], [ -94.523330775446226, 29.542709180839051 ], [ -94.523431776282209, 29.542665180332996 ], [ -94.523475776198623, 29.542351180398686 ], [ -94.523525776121929, 29.542137180793283 ], [ -94.523582775552214, 29.541790180182943 ], [ -94.523614775817734, 29.541532180605465 ], [ -94.523576775793273, 29.541246179877515 ], [ -94.523494776120913, 29.541130179782179 ], [ -94.523306775609413, 29.541053180092302 ], [ -94.522670775662974, 29.54092118006686 ], [ -94.522186775014717, 29.5409321803638 ], [ -94.521897775418395, 29.540849180520592 ], [ -94.521538775198877, 29.540821179879213 ], [ -94.521117774944599, 29.540805180554788 ], [ -94.520777775010643, 29.54083817979598 ], [ -94.520569775551479, 29.540909180096822 ], [ -94.520437774567412, 29.54100318027675 ], [ -94.520356774993644, 29.541041180549033 ], [ -94.520179775486326, 29.541069179854933 ], [ -94.519940774570088, 29.541068180705306 ], [ -94.519695775074368, 29.541052179943836 ], [ -94.519406775161769, 29.541046180350506 ], [ -94.519192774408481, 29.541118180123277 ], [ -94.518676774392674, 29.541189180177717 ], [ -94.518412774641874, 29.541167180247569 ], [ -94.518154774170497, 29.54116718069465 ], [ -94.517871774651738, 29.541227180074799 ], [ -94.517632774825998, 29.541304180339662 ], [ -94.517368774749087, 29.541310180429569 ], [ -94.517072774645129, 29.541343180302317 ], [ -94.516795773994986, 29.541431180253301 ], [ -94.516292774366178, 29.541551180175173 ], [ -94.515864773389637, 29.541667180183062 ], [ -94.515480773545718, 29.541810180286646 ], [ -94.515053773174671, 29.5419361807344 ], [ -94.514543773309583, 29.542051180842574 ], [ -94.514077773662976, 29.542216180714203 ], [ -94.513750773799302, 29.542227181156612 ], [ -94.513495772760706, 29.54227918094351 ], [ -94.513165773303527, 29.542348181076349 ], [ -94.512807772622381, 29.542414180886304 ], [ -94.512631772701937, 29.542458180602701 ], [ -94.512448773230787, 29.54255118090045 ], [ -94.51231077337556, 29.542606180553804 ], [ -94.512064772607133, 29.542545180978976 ], [ -94.511939772674651, 29.542551180451635 ], [ -94.511813772365784, 29.542589180906084 ], [ -94.511618772444876, 29.542782181076067 ], [ -94.511492772411643, 29.542853181183709 ], [ -94.51139877323439, 29.542859180861157 ], [ -94.511253773042768, 29.542831181351055 ], [ -94.511177772764668, 29.542859180528584 ], [ -94.511133772775793, 29.542952180921649 ], [ -94.511058772435248, 29.542996181294882 ], [ -94.510932772619967, 29.543007181093252 ], [ -94.510643773054795, 29.542913180656623 ], [ -94.510536772625201, 29.542946180914502 ], [ -94.510353772581936, 29.543018181317642 ], [ -94.509787772800323, 29.543177181390856 ], [ -94.509139772375022, 29.543375181154598 ], [ -94.50863077221095, 29.543386181494107 ], [ -94.507843771703477, 29.543457181042662 ], [ -94.507472772239041, 29.543506180799987 ], [ -94.506981772008118, 29.543622181161147 ], [ -94.506554771967217, 29.543687180878347 ], [ -94.505547771404167, 29.543797181633515 ], [ -94.504648771073931, 29.543846180957203 ], [ -94.504314771084935, 29.543835181077373 ], [ -94.504138770661356, 29.543780181508254 ], [ -94.503905770610572, 29.543780181021905 ], [ -94.50348077059229, 29.543852181039085 ], [ -94.503295770675848, 29.543884181811539 ], [ -94.503069770169134, 29.543906181773266 ], [ -94.502704770133874, 29.543884181865817 ], [ -94.502496770251682, 29.543834181325028 ], [ -94.502201770356422, 29.543856181713689 ], [ -94.50188076988006, 29.543894181780878 ], [ -94.501421770764566, 29.543988181089244 ], [ -94.500955770427424, 29.544202181582612 ], [ -94.500474770438885, 29.544325181286016 ], [ -94.500357770275357, 29.544356181871283 ], [ -94.50000576995194, 29.544411181300845 ], [ -94.499718769587631, 29.544480181263523 ], [ -94.499491769296952, 29.544469181266457 ], [ -94.499359769410304, 29.544480181360647 ], [ -94.499107769283071, 29.544425181721159 ], [ -94.498955769527399, 29.544445181334648 ], [ -94.49877476955244, 29.544469181364324 ], [ -94.498699769827056, 29.54450218163073 ], [ -94.49864876969319, 29.544541181927308 ], [ -94.498598769672213, 29.544607181538254 ], [ -94.498504769312845, 29.54470018212502 ], [ -94.498372769411972, 29.544755181944584 ], [ -94.498246769418856, 29.544794182076789 ], [ -94.498183769616261, 29.544827181640127 ], [ -94.498152769802346, 29.544876181830382 ], [ -94.498127768921677, 29.544926182239358 ], [ -94.498064769762038, 29.545157182159791 ], [ -94.498064769180942, 29.545498181585401 ], [ -94.498070769521078, 29.545569182044275 ], [ -94.497976769866455, 29.54578918202515 ], [ -94.497945769086499, 29.545949181601365 ], [ -94.497945769864955, 29.546191181758182 ], [ -94.497937769304556, 29.546201182461427 ], [ -94.49787676912193, 29.546290182387267 ], [ -94.497863769706683, 29.546373182459597 ], [ -94.497888769087538, 29.546494182426581 ], [ -94.497863769900775, 29.5466371820165 ], [ -94.4977317695963, 29.546917182465315 ], [ -94.497681769497078, 29.546950182603869 ], [ -94.497588769526544, 29.546934182560538 ], [ -94.497568769683568, 29.546939182206881 ], [ -94.497562769035966, 29.546957182646963 ], [ -94.497574769597378, 29.546989181885817 ], [ -94.497593769844599, 29.547022182566383 ], [ -94.497643769847457, 29.547038181854187 ], [ -94.497662769692496, 29.547093181944597 ], [ -94.497568769160267, 29.547247182408086 ], [ -94.497518769486348, 29.547352182706238 ], [ -94.497411769840454, 29.547484181952054 ], [ -94.49738076963736, 29.547550182674051 ], [ -94.497310769504566, 29.54779218271393 ], [ -94.497166768883105, 29.547940182762169 ], [ -94.497103769596208, 29.54799018260098 ], [ -94.496940769277955, 29.548150182837766 ], [ -94.496902769778529, 29.54819418212416 ], [ -94.496833769485789, 29.548331182850436 ], [ -94.496801769136169, 29.548430182319013 ], [ -94.496688768962116, 29.548656182601864 ], [ -94.496575769006441, 29.548848182281766 ], [ -94.496544768842043, 29.54898018293132 ], [ -94.496512768720478, 29.549024182854048 ], [ -94.496487769155294, 29.549041182963908 ], [ -94.496431769110941, 29.549057183001825 ], [ -94.496336769451275, 29.549057182756293 ], [ -94.496311769200631, 29.549057183001665 ], [ -94.496292769493309, 29.549074182938785 ], [ -94.496292768765002, 29.54909618234926 ], [ -94.496349769216849, 29.549200182694136 ], [ -94.496336768843676, 29.549288183116047 ], [ -94.496173768795913, 29.549498183258365 ], [ -94.495903769465627, 29.549734183334472 ], [ -94.495714768967346, 29.549877183158802 ], [ -94.495645769042753, 29.549943182686299 ], [ -94.495576769321431, 29.549976183033294 ], [ -94.495469769131205, 29.550048182593297 ], [ -94.495405768444215, 29.550062182599483 ], [ -94.495330769132622, 29.550081182715285 ], [ -94.495242768584177, 29.550120182945356 ], [ -94.495135768690645, 29.550191182694963 ], [ -94.495060769073007, 29.550219183244586 ], [ -94.494978768489361, 29.550224182698621 ], [ -94.494701768836237, 29.550406183014772 ], [ -94.494431768887679, 29.550521183320186 ], [ -94.494148768531048, 29.550571183199249 ], [ -94.494091768550774, 29.550632183160893 ], [ -94.494035768521485, 29.550665182952187 ], [ -94.493991768182795, 29.550681182830932 ], [ -94.493871768552367, 29.550698183241558 ], [ -94.493676768082267, 29.550758183087176 ], [ -94.493399768513456, 29.550857183557397 ], [ -94.493324768866813, 29.550802183190953 ], [ -94.493299768678042, 29.550797183261402 ], [ -94.492947767885468, 29.550924183212228 ], [ -94.492626767951919, 29.551061182906299 ], [ -94.492531768332526, 29.551122183265868 ], [ -94.492374768501534, 29.551188183087397 ], [ -94.49208576840951, 29.5513801836784 ], [ -94.491921767888314, 29.551452183602851 ], [ -94.491821767703698, 29.551463183798965 ], [ -94.491758767678007, 29.551513183024461 ], [ -94.491714768402872, 29.551584183561321 ], [ -94.491632768244827, 29.551623183381267 ], [ -94.491519767649734, 29.551650183148073 ], [ -94.491356768419337, 29.551727183294599 ], [ -94.491255768020608, 29.551755183486758 ], [ -94.491079767644777, 29.551914183221925 ], [ -94.491016767515703, 29.552041183830777 ], [ -94.490972767801026, 29.552063183770354 ], [ -94.490896768336086, 29.552085183452824 ], [ -94.490871768336476, 29.552085183617791 ], [ -94.490777768216176, 29.552113183896385 ], [ -94.490670768196068, 29.552195183556435 ], [ -94.490601767898042, 29.552212183850799 ], [ -94.490557767909948, 29.552201183553805 ], [ -94.490481767287065, 29.552118183480676 ], [ -94.490374767461617, 29.552096183895884 ], [ -94.490261767285801, 29.552113183376161 ], [ -94.490041767875908, 29.552195183935435 ], [ -94.489858767173402, 29.55221718342316 ], [ -94.489783767268079, 29.552240183263983 ], [ -94.489714768030069, 29.552284184048538 ], [ -94.489664768074974, 29.552333183407889 ], [ -94.489607767059496, 29.552460183538379 ], [ -94.489601767417426, 29.552619183805799 ], [ -94.489639767140204, 29.552674184080715 ], [ -94.489689767962574, 29.552702183790945 ], [ -94.489689767127999, 29.552740183496429 ], [ -94.489651767427816, 29.552790183644415 ], [ -94.489588767211913, 29.552839184131031 ], [ -94.489268767415496, 29.552938183883267 ], [ -94.489098767615829, 29.553015183566828 ], [ -94.488374767528313, 29.55323018410061 ], [ -94.487871767363188, 29.553412183895009 ], [ -94.487651767305877, 29.553450183489776 ], [ -94.487462767214325, 29.553511184298635 ], [ -94.487280766548238, 29.553522183665265 ], [ -94.487186766785229, 29.55356118395013 ], [ -94.487135767065197, 29.553605184245207 ], [ -94.487079766461122, 29.553627184182979 ], [ -94.486997767129736, 29.553704183755297 ], [ -94.486965766708849, 29.553720183748101 ], [ -94.486846766478109, 29.553731183644675 ], [ -94.48672676659595, 29.553759183848072 ], [ -94.486689766643678, 29.553775183853322 ], [ -94.486657766479325, 29.553830184014863 ], [ -94.486638766480013, 29.553852184079286 ], [ -94.486431766423081, 29.553841184039815 ], [ -94.486330766371481, 29.553792184237523 ], [ -94.486299766769775, 29.553792184172583 ], [ -94.486204766603663, 29.553886183939845 ], [ -94.486160766627833, 29.55390218404056 ], [ -94.486028766268674, 29.553897183757275 ], [ -94.485934766837019, 29.55384218423961 ], [ -94.485846766430242, 29.553842183667179 ], [ -94.485739766969729, 29.553908183795382 ], [ -94.485550766604533, 29.553946183801244 ], [ -94.485481766338239, 29.553924183980897 ], [ -94.485443766799108, 29.55392418392195 ], [ -94.485349766040287, 29.55396818435889 ], [ -94.485280766205264, 29.553952183653259 ], [ -94.485091766170598, 29.553957183790406 ], [ -94.485009766642563, 29.553974183819154 ], [ -94.484934766316272, 29.554024183742886 ], [ -94.484688766517323, 29.554035184439762 ], [ -94.484368766336516, 29.554062184047655 ], [ -94.483934766068671, 29.55404718426227 ], [ -94.483896766245053, 29.554046184188859 ], [ -94.483876765723281, 29.554039184314998 ], [ -94.483826765838273, 29.554002184531644 ], [ -94.483808766274393, 29.553936183882207 ], [ -94.483808765647581, 29.553886183842266 ], [ -94.483782766422138, 29.553848184360184 ], [ -94.483732766542147, 29.553815183706938 ], [ -94.483682765892681, 29.553788184021656 ], [ -94.483587765991956, 29.553809183828655 ], [ -94.48341876638473, 29.553931184458524 ], [ -94.483386766054082, 29.553936183865904 ], [ -94.483342765675687, 29.553914184141242 ], [ -94.483317766344101, 29.55388118457558 ], [ -94.483285765672107, 29.553870184552078 ], [ -94.483210765477637, 29.553876184526629 ], [ -94.482990765423182, 29.553958184590204 ], [ -94.482851765783408, 29.554030184060803 ], [ -94.482461766198966, 29.554184184411536 ], [ -94.482266765953369, 29.554228183986837 ], [ -94.481964765970204, 29.554327184328294 ], [ -94.481876765979138, 29.554404183987629 ], [ -94.481826765517681, 29.554465184378742 ], [ -94.481807765632382, 29.554509184214169 ], [ -94.481801765239155, 29.554586184701883 ], [ -94.481785765278261, 29.554598184178815 ], [ -94.481763765488267, 29.554602184805038 ], [ -94.481738765732032, 29.554591184437786 ], [ -94.481719765235823, 29.554575184005444 ], [ -94.481669766005552, 29.554492184356153 ], [ -94.481637765347159, 29.554476184297069 ], [ -94.481581765603863, 29.554459184431533 ], [ -94.481310765688747, 29.554476184740661 ], [ -94.481166765462831, 29.554558184353397 ], [ -94.48103476572544, 29.554652184245185 ], [ -94.480952765198907, 29.55476818414472 ], [ -94.480832765339073, 29.554834184395755 ], [ -94.480763765440201, 29.554856184796705 ], [ -94.480694765437235, 29.554861184380606 ], [ -94.480662765742807, 29.554883184853068 ], [ -94.480637765112675, 29.554922184309948 ], [ -94.48058176533975, 29.554966184753585 ], [ -94.480499764998086, 29.554993184037837 ], [ -94.480436765301775, 29.554999184538012 ], [ -94.480360765246189, 29.554982184368388 ], [ -94.480285765015978, 29.554988184539532 ], [ -94.480247764973953, 29.554999184568437 ], [ -94.480184764987555, 29.555026184896491 ], [ -94.480021765379121, 29.555158184888995 ], [ -94.479958765109288, 29.555224184508546 ], [ -94.479901764939669, 29.555318184335921 ], [ -94.479813765556059, 29.555395184529207 ], [ -94.479681764805846, 29.555439184848876 ], [ -94.47960676510489, 29.555450184315248 ], [ -94.479417764675816, 29.555560184444044 ], [ -94.479367765113437, 29.555632184666031 ], [ -94.479298765464918, 29.555802184526364 ], [ -94.479254765411184, 29.555841185116925 ], [ -94.479195765198824, 29.555854184530197 ], [ -94.47909076486728, 29.555879184470882 ], [ -94.47900276471357, 29.555934184604357 ], [ -94.478681765371192, 29.55606118507859 ], [ -94.478587764970726, 29.556088184648623 ], [ -94.478511765249181, 29.556132185114532 ], [ -94.478323764949153, 29.556297184811626 ], [ -94.478291765041163, 29.556336184619198 ], [ -94.478241764810676, 29.556430184859213 ], [ -94.478210764580098, 29.55646318493104 ], [ -94.478122764242343, 29.556523185055529 ], [ -94.478021765152008, 29.556556185132308 ], [ -94.477876764864249, 29.556556184732372 ], [ -94.477801764166585, 29.556529185139276 ], [ -94.477700764363149, 29.556584184487519 ], [ -94.477637764973338, 29.556606184937596 ], [ -94.47754976500245, 29.556606185322501 ], [ -94.477499764770442, 29.556633185326895 ], [ -94.477449765066496, 29.556716184641495 ], [ -94.477417764053456, 29.55673818523038 ], [ -94.477360764245134, 29.556749184666032 ], [ -94.477304764575166, 29.556743184613033 ], [ -94.477254764803078, 29.55675418512827 ], [ -94.477203764889254, 29.556809185177908 ], [ -94.47708476483534, 29.556881185441611 ], [ -94.476970764789257, 29.556875185242465 ], [ -94.476914764431186, 29.556892185014696 ], [ -94.476832764921383, 29.556942184872081 ], [ -94.476511764819378, 29.557189185409943 ], [ -94.476486764217697, 29.557222184927145 ], [ -94.476398764097596, 29.55741518529495 ], [ -94.476360764571965, 29.557453185270877 ], [ -94.476329763873437, 29.557475185144639 ], [ -94.476260764645701, 29.557514185022807 ], [ -94.476153764608156, 29.557519185097174 ], [ -94.476115764557974, 29.557497185583699 ], [ -94.476077764602607, 29.557497185603694 ], [ -94.475970764247293, 29.557514184860615 ], [ -94.475775764679398, 29.557668185631453 ], [ -94.475637763703077, 29.557800184909684 ], [ -94.475582763959437, 29.557844185596437 ], [ -94.475341763978136, 29.558042184875077 ], [ -94.47515976431761, 29.558136185583013 ], [ -94.474989764483468, 29.558185185385536 ], [ -94.474863763711298, 29.558207185082644 ], [ -94.474788764197001, 29.558240185092874 ], [ -94.474643764225377, 29.558334185013976 ], [ -94.474455763733289, 29.558297185318448 ], [ -94.474267763377327, 29.558260185358449 ], [ -94.473992763603803, 29.558207185156039 ], [ -94.473718763691082, 29.558153185248734 ], [ -94.473536763918801, 29.557817185633152 ], [ -94.473460763840023, 29.557713185625371 ], [ -94.472919763041844, 29.557372185173435 ], [ -94.472667763632813, 29.557240184957823 ], [ -94.472485762865105, 29.557163185144951 ], [ -94.472422762947872, 29.557185184974273 ], [ -94.472076763401489, 29.55717918506949 ], [ -94.471849763590171, 29.557086185136548 ], [ -94.471749763080453, 29.557064185645942 ], [ -94.471447762515865, 29.557020185402266 ], [ -94.471208762927219, 29.557004185463466 ], [ -94.470975762701229, 29.556965185103916 ], [ -94.470793762928167, 29.556993184825377 ], [ -94.470579762499398, 29.557009185275362 ], [ -94.470340763092153, 29.557053185119159 ], [ -94.470245762385375, 29.557053185520576 ], [ -94.470100763184064, 29.557042185085059 ], [ -94.470063762399988, 29.557059185568569 ], [ -94.470012762511118, 29.557114184815696 ], [ -94.469943763020311, 29.557153185114728 ], [ -94.469887762802514, 29.557152185203378 ], [ -94.469836762170317, 29.557125185238135 ], [ -94.469478762242204, 29.55759518537872 ], [ -94.466758762013001, 29.559101185397395 ], [ -94.464746761682633, 29.559864185650607 ], [ -94.463127761326135, 29.560745185825343 ], [ -94.461602760805789, 29.560785186692044 ], [ -94.461278760685062, 29.560928185911067 ], [ -94.461256760671418, 29.560925186214529 ], [ -94.460511760511324, 29.560834186780443 ], [ -94.460170760732311, 29.560701186288341 ], [ -94.460002760063489, 29.56070918595972 ], [ -94.459921760608438, 29.560709185933874 ], [ -94.459256760533094, 29.560712186692079 ], [ -94.459240760209155, 29.560712185973923 ], [ -94.459177760320657, 29.560724186692521 ], [ -94.458934759624313, 29.560774186150411 ], [ -94.458061760221298, 29.560967186837232 ], [ -94.456600758887603, 29.561596186896612 ], [ -94.456184759742996, 29.561785186794623 ], [ -94.455173758987726, 29.562247186523603 ], [ -94.4549797588529, 29.562335186823201 ], [ -94.453980758417046, 29.56275818699174 ], [ -94.453610758806676, 29.562830187412949 ], [ -94.453210758359219, 29.562908187125398 ], [ -94.452376758388326, 29.562948187439261 ], [ -94.451754758473996, 29.562931186711999 ], [ -94.451421758255606, 29.562957186996545 ], [ -94.451085758198616, 29.563088187040101 ], [ -94.450453758120389, 29.563411187103128 ], [ -94.449670757865633, 29.563742187180775 ], [ -94.449299757441835, 29.56384118727194 ], [ -94.448671756927752, 29.564009187764732 ], [ -94.447808757702049, 29.564051187813547 ], [ -94.447788756956697, 29.564048187161657 ], [ -94.44734475722862, 29.563984187273665 ], [ -94.446631756624953, 29.563881187040515 ], [ -94.445534757117542, 29.563539187032369 ], [ -94.444993756805658, 29.563230187588463 ], [ -94.44486475620154, 29.563156187158256 ], [ -94.444693756304318, 29.563132187460187 ], [ -94.444666756273818, 29.563116187221969 ], [ -94.443964756024826, 29.562706187318444 ], [ -94.443778756307609, 29.562549187368369 ], [ -94.443664755939054, 29.562453186941337 ], [ -94.443568756478399, 29.56237218764015 ], [ -94.443491755610268, 29.562377187259568 ], [ -94.443393755696647, 29.562361187066145 ], [ -94.443062755623018, 29.562308187643673 ], [ -94.442665756156245, 29.562393187647263 ], [ -94.442280756108488, 29.562817187281688 ], [ -94.442148755661805, 29.563191187551308 ], [ -94.442087755353867, 29.563270187768662 ], [ -94.441820755786154, 29.563613187576532 ], [ -94.441314755675194, 29.563970187203463 ], [ -94.441302755440233, 29.563978187343174 ], [ -94.440590755233231, 29.564316187386829 ], [ -94.44030875494542, 29.564558187603566 ], [ -94.440156755655622, 29.564844187652 ], [ -94.440028754853259, 29.565087187941881 ], [ -94.439391754914382, 29.565375188204946 ], [ -94.43926875507043, 29.565431187871415 ], [ -94.439080755434304, 29.565412187869278 ], [ -94.438735755151569, 29.565377187728323 ], [ -94.438114754849437, 29.565316188350828 ], [ -94.437741754502639, 29.565132187757733 ], [ -94.43769575471562, 29.565110187753017 ], [ -94.437571754523148, 29.564842187640288 ], [ -94.437076754606494, 29.564682188224808 ], [ -94.437049754654325, 29.564673188006402 ], [ -94.436827754038404, 29.564533187682549 ], [ -94.436715754121636, 29.564463188021524 ], [ -94.436421754473443, 29.564371188205733 ], [ -94.436250754733237, 29.564315187541833 ], [ -94.435898754116224, 29.564391187885537 ], [ -94.435654753917902, 29.564541187932033 ], [ -94.435559754009518, 29.564600187982137 ], [ -94.435352753964537, 29.56471818812361 ], [ -94.435278754114705, 29.564760187855168 ], [ -94.435205753983837, 29.564802188268377 ], [ -94.434846753523445, 29.565123188266416 ], [ -94.434806753417703, 29.565136187797005 ], [ -94.434277754192962, 29.565310188230765 ], [ -94.434232753251095, 29.565325188458861 ], [ -94.433636753095939, 29.565224188037796 ], [ -94.433307753963788, 29.565072187760098 ], [ -94.433259753369839, 29.565050188291323 ], [ -94.433117753734621, 29.564998188190327 ], [ -94.43296875325791, 29.564943188444879 ], [ -94.43281875316093, 29.564888187792011 ], [ -94.432381753200588, 29.564727188382111 ], [ -94.43166875318704, 29.564658187791668 ], [ -94.431408753378719, 29.564634187677392 ], [ -94.431248753242059, 29.564621188064248 ], [ -94.430573752479532, 29.564658187834681 ], [ -94.429698752444907, 29.56470818806234 ], [ -94.428739752520642, 29.564955188531055 ], [ -94.428213751921916, 29.565198188490307 ], [ -94.428139751927461, 29.565233188197634 ], [ -94.427812752401195, 29.565478188046942 ], [ -94.42772075168169, 29.565668188198813 ], [ -94.427704751865178, 29.565911188068725 ], [ -94.427688752206222, 29.566147188142239 ], [ -94.427684752370013, 29.566327188484507 ], [ -94.427681751672438, 29.566531188594709 ], [ -94.427497752331234, 29.566691188394675 ], [ -94.427409751912222, 29.566724188362063 ], [ -94.427241751601514, 29.566790189043541 ], [ -94.427025751966767, 29.566874188325908 ], [ -94.425977752156939, 29.56687418875752 ], [ -94.425816752090128, 29.566799188820582 ], [ -94.42357175123351, 29.566398188589883 ], [ -94.422874750806301, 29.566261188980242 ], [ -94.422643750373211, 29.566311188463537 ], [ -94.422115750245879, 29.567465188674316 ], [ -94.421941751268264, 29.569125189024582 ], [ -94.421772750790737, 29.569534189496437 ], [ -94.421676750394383, 29.569715189878767 ], [ -94.421205750121146, 29.569715189106351 ], [ -94.419841750211276, 29.569210189503618 ], [ -94.41960174993622, 29.569184189875173 ], [ -94.419038750222043, 29.569124189868532 ], [ -94.418346750107148, 29.569178189771865 ], [ -94.418335749780326, 29.569180189458116 ], [ -94.418181749449687, 29.569212189779975 ], [ -94.417831749443806, 29.569285189858213 ], [ -94.417514749111362, 29.569549189768395 ], [ -94.417159749315417, 29.569915189754486 ], [ -94.416794749703897, 29.570571190058935 ], [ -94.41646874971994, 29.571620190427467 ], [ -94.41624574904327, 29.572098190348136 ], [ -94.41621574899952, 29.572164190164315 ], [ -94.416041749540199, 29.572492189867326 ], [ -94.415938749148722, 29.572680190097604 ], [ -94.415750749639301, 29.572850190369419 ], [ -94.415570749208413, 29.572959190136409 ], [ -94.415431749269871, 29.572903190140718 ], [ -94.41540874952436, 29.57292619027422 ], [ -94.415294748931103, 29.572937190555106 ], [ -94.41496774918437, 29.572821189958908 ], [ -94.414841749318484, 29.572738190273967 ], [ -94.414765749199063, 29.572708189968445 ], [ -94.414269748813794, 29.572518190286338 ], [ -94.414080748840277, 29.572474190204005 ], [ -94.41386074827129, 29.572392190686809 ], [ -94.413684749152296, 29.572375190424573 ], [ -94.413306749098652, 29.572441190509139 ], [ -94.412991748271139, 29.572535190023935 ], [ -94.412777748207304, 29.572617190379979 ], [ -94.412737748299932, 29.572708190067338 ], [ -94.412715748124299, 29.572763190048029 ], [ -94.412652748422659, 29.572908190121947 ], [ -94.412552748919282, 29.573142190614377 ], [ -94.41245174802296, 29.573376190993017 ], [ -94.412510748465593, 29.573523190382854 ], [ -94.412687748627363, 29.573964191001277 ], [ -94.412746748219988, 29.574112190704415 ], [ -94.412829748955744, 29.574360190356554 ], [ -94.413079748345723, 29.575106190612033 ], [ -94.413135748636449, 29.575273191278892 ], [ -94.413162749131175, 29.575355191340485 ], [ -94.413180748965459, 29.575394191228323 ], [ -94.413236749025955, 29.575514191430916 ], [ -94.413255748389773, 29.575554190863038 ], [ -94.413446748815787, 29.57596719065452 ], [ -94.414022749390625, 29.577209191037205 ], [ -94.414215749145825, 29.577623191599312 ], [ -94.414507748901087, 29.577703191078825 ], [ -94.414672749383968, 29.577664191807315 ], [ -94.414806748888793, 29.577633191542809 ], [ -94.414825749086006, 29.577628191357245 ], [ -94.415794749112337, 29.577229190939352 ], [ -94.41600674915361, 29.577263191625221 ], [ -94.416473749392125, 29.577340191182699 ], [ -94.416645749840399, 29.577370191268891 ], [ -94.416676750031229, 29.577389191223183 ], [ -94.417167749933284, 29.57769019170339 ], [ -94.417189749547049, 29.577743191284338 ], [ -94.417243749848296, 29.577874191376452 ], [ -94.417270750277325, 29.5779391911773 ], [ -94.417349750128722, 29.578126191193345 ], [ -94.417349750206668, 29.578236191455343 ], [ -94.417349750281204, 29.578267191193913 ], [ -94.417349749725432, 29.578630191737812 ], [ -94.417217749473892, 29.57883619111275 ], [ -94.416862749763737, 29.579073192032208 ], [ -94.4167727496515, 29.5791341918877 ], [ -94.416558749627214, 29.579232191881268 ], [ -94.415840749993748, 29.579396191406939 ], [ -94.415091749057538, 29.57956919143172 ], [ -94.414307748998411, 29.579804192151798 ], [ -94.413829749381264, 29.579947191737205 ], [ -94.413713749576715, 29.579979192198252 ], [ -94.413291749040837, 29.580099192152105 ], [ -94.413115748572679, 29.580199191745098 ], [ -94.413050748850736, 29.580268191887974 ], [ -94.412933748758007, 29.580393191898434 ], [ -94.412859749093187, 29.580501192113385 ], [ -94.412761749371086, 29.580647192099484 ], [ -94.412714748793448, 29.580887192192414 ], [ -94.412781748780773, 29.581090192076452 ], [ -94.412923749466074, 29.581276191837716 ], [ -94.412958748962183, 29.581293192478267 ], [ -94.413231749087743, 29.581424192350081 ], [ -94.413282748801464, 29.581449192071112 ], [ -94.413473749344234, 29.581500192421931 ], [ -94.413652749432174, 29.581502192287857 ], [ -94.414281749632352, 29.581509192582004 ], [ -94.414335748922426, 29.581504192553677 ], [ -94.414891749072339, 29.581448192506098 ], [ -94.414951749033904, 29.581448191821693 ], [ -94.41538674985641, 29.581449191771661 ], [ -94.41549174995707, 29.581449192205266 ], [ -94.415513749539357, 29.581449192416798 ], [ -94.415755750122798, 29.581618192014858 ], [ -94.415775749736696, 29.581632191834942 ], [ -94.415759749361044, 29.581712192433386 ], [ -94.415722749564139, 29.581907191879708 ], [ -94.415464749469606, 29.582338192064078 ], [ -94.415314749370197, 29.582417192582394 ], [ -94.414888749079054, 29.582392192381057 ], [ -94.414463748907195, 29.582367192602813 ], [ -94.414307749322234, 29.582358192686083 ], [ -94.414178749188252, 29.582533192172182 ], [ -94.414313749555049, 29.582772192695849 ], [ -94.414559749756606, 29.582958192603027 ], [ -94.41463374968113, 29.58301419274774 ], [ -94.415263749255246, 29.583658192570191 ], [ -94.415670749460944, 29.583718192764028 ], [ -94.415689749468868, 29.583732192622886 ], [ -94.416036749488399, 29.583993192869681 ], [ -94.416455750022607, 29.584176193039436 ], [ -94.416775750396539, 29.584441192420449 ], [ -94.416926750616483, 29.584565193020907 ], [ -94.416927750060509, 29.584806192543059 ], [ -94.416928750642953, 29.58486419267685 ], [ -94.416770749824153, 29.585012192556047 ], [ -94.416587750549795, 29.585185192810254 ], [ -94.415514750013756, 29.585392193038487 ], [ -94.414933749690618, 29.585258193217697 ], [ -94.414624749492134, 29.585187193124725 ], [ -94.414316749701143, 29.58511619319615 ], [ -94.413773749242338, 29.585422192717232 ], [ -94.413648749055071, 29.585693193186035 ], [ -94.41368274980853, 29.585828193206549 ], [ -94.413691749196346, 29.585863192877113 ], [ -94.413799749539265, 29.586010192753811 ], [ -94.413913749548982, 29.586172193363268 ], [ -94.413748749386968, 29.58640619298663 ], [ -94.413717749659895, 29.586607192856906 ], [ -94.413797749343303, 29.586877193366639 ], [ -94.414500749161419, 29.58731819306011 ], [ -94.414613749376741, 29.587564193116286 ], [ -94.414721749858629, 29.587410193156622 ], [ -94.414658749245987, 29.586864193371422 ], [ -94.415064749928789, 29.586331193300914 ], [ -94.415106749712706, 29.586316192905894 ], [ -94.415333749479458, 29.586235192744223 ], [ -94.415560749877443, 29.586154193132909 ], [ -94.416559750518786, 29.586064193370834 ], [ -94.41752575066775, 29.585978193311725 ], [ -94.418782750190189, 29.586007193308443 ], [ -94.419104750450416, 29.586133193217442 ], [ -94.419256750465124, 29.586433193037127 ], [ -94.419257750573379, 29.586533192636239 ], [ -94.419260750946577, 29.5866951932414 ], [ -94.419264751088647, 29.586993192783975 ], [ -94.419099750883319, 29.587511193377306 ], [ -94.4191597511537, 29.588730193545022 ], [ -94.419183751083438, 29.589198193583577 ], [ -94.419060750579519, 29.589524193400351 ], [ -94.418764750683295, 29.589744193546334 ], [ -94.418415750862735, 29.58993819337714 ], [ -94.418264750609069, 29.590021193937361 ], [ -94.418274750689349, 29.5901301937451 ], [ -94.418291750529676, 29.590319193923655 ], [ -94.418527750726312, 29.590755193886789 ], [ -94.418518750581001, 29.5909581940995 ], [ -94.418500751172559, 29.591374193943913 ], [ -94.418242750368648, 29.591793194054286 ], [ -94.418186750854204, 29.591886194213217 ], [ -94.418133750582413, 29.591969193844402 ], [ -94.417653750748201, 29.592379194054949 ], [ -94.417313750293005, 29.592555194737812 ], [ -94.416902750891978, 29.592500194496793 ], [ -94.416819750357035, 29.592489194669398 ], [ -94.416412750285446, 29.592163194333398 ], [ -94.415940749822596, 29.59173419398968 ], [ -94.415904750217862, 29.591701193820789 ], [ -94.415772749665436, 29.591581193826212 ], [ -94.415631750156038, 29.591460194458101 ], [ -94.415347749554641, 29.59125119407194 ], [ -94.415335749601866, 29.591242193720241 ], [ -94.415063749476943, 29.591041194372625 ], [ -94.414676750060835, 29.590653193732461 ], [ -94.414556749256519, 29.590476194235833 ], [ -94.414473749797025, 29.590352194113528 ], [ -94.414301749229296, 29.590220194049422 ], [ -94.414307749760241, 29.590036194074443 ], [ -94.413995749104885, 29.590031193559224 ], [ -94.413818749721557, 29.590029193747473 ], [ -94.413607749352735, 29.590329193685825 ], [ -94.413435749362421, 29.591265194126873 ], [ -94.413397749132486, 29.591479193869691 ], [ -94.413509749250096, 29.591738194555965 ], [ -94.413503749796178, 29.591890194348395 ], [ -94.413435749891619, 29.592047194117775 ], [ -94.413187749471518, 29.592377194230647 ], [ -94.413059749247253, 29.592493194812278 ], [ -94.41203174905533, 29.593438194611046 ], [ -94.411080748529059, 29.593963195246051 ], [ -94.410850748775133, 29.594043194590775 ], [ -94.409993748354808, 29.594343195017796 ], [ -94.40977574836144, 29.594586195016124 ], [ -94.409745749125847, 29.594633195054701 ], [ -94.409414749049589, 29.595173195093075 ], [ -94.409423748426178, 29.595223195055766 ], [ -94.409410748134064, 29.595598195452688 ], [ -94.409417749121943, 29.595683195276383 ], [ -94.409450748424277, 29.596064195368783 ], [ -94.409525749128832, 29.596183195136668 ], [ -94.409636748459903, 29.596361195732857 ], [ -94.409750748646729, 29.596543195498597 ], [ -94.409825748494384, 29.596663195516712 ], [ -94.409856748542339, 29.596712195101674 ], [ -94.410553748631543, 29.597470195732758 ], [ -94.411607749607924, 29.598431195397211 ], [ -94.412279749161129, 29.599065195621272 ], [ -94.412430749713238, 29.599705196080549 ], [ -94.41241774963936, 29.599970196136983 ], [ -94.412393749564444, 29.600470196128793 ], [ -94.412167749330621, 29.601015196083196 ], [ -94.4121307495341, 29.601104196207654 ], [ -94.412048749376254, 29.60122019634079 ], [ -94.411787750017396, 29.60159419656571 ], [ -94.411639749183095, 29.601804196440522 ], [ -94.411503749538639, 29.602000196569147 ], [ -94.410945748878078, 29.602331196279671 ], [ -94.410670749138816, 29.602495196845201 ], [ -94.409862748995053, 29.603083196603997 ], [ -94.409513748830548, 29.603541196759643 ], [ -94.409492749116382, 29.603585197136244 ], [ -94.409266749119112, 29.604061197138403 ], [ -94.409277748500102, 29.604182197012584 ], [ -94.40931074888276, 29.604549196808311 ], [ -94.409322749130183, 29.604681197500501 ], [ -94.409513749288664, 29.605258197697935 ], [ -94.409618749203375, 29.60557819754505 ], [ -94.409626748654617, 29.605605197063145 ], [ -94.40973974928896, 29.605957197833504 ], [ -94.409840749726342, 29.606277197407444 ], [ -94.409806749220706, 29.607285198000454 ], [ -94.40980374965703, 29.60738519749885 ], [ -94.409763749396944, 29.607618197815317 ], [ -94.409703749373705, 29.607959197779451 ], [ -94.409617749644568, 29.608453198265995 ], [ -94.40947674951407, 29.608923197651034 ], [ -94.409461749714595, 29.60897019767398 ], [ -94.409362749190777, 29.609303197877804 ], [ -94.409266749243258, 29.609625198157364 ], [ -94.409085748994372, 29.610042198389937 ], [ -94.408779749272711, 29.610747198844621 ], [ -94.40865474903319, 29.611100198892196 ], [ -94.408129748606243, 29.611643198629856 ], [ -94.40803574879402, 29.611877199013325 ], [ -94.407957749339076, 29.612059198905122 ], [ -94.407971748549457, 29.612307198535742 ], [ -94.407977749518182, 29.612419198461886 ], [ -94.407988748979236, 29.612586198726678 ], [ -94.408061748938323, 29.613010199119323 ], [ -94.408129748736386, 29.613401198791177 ], [ -94.408125749082942, 29.614384198963432 ], [ -94.4081777488028, 29.614635199467166 ], [ -94.408189749132674, 29.614693199558328 ], [ -94.40861874939614, 29.614937198936783 ], [ -94.409771749312242, 29.615287199717383 ], [ -94.410558750117204, 29.615670199558316 ], [ -94.410625749937623, 29.615709199851374 ], [ -94.410692749332014, 29.615749199671534 ], [ -94.41076774938189, 29.615795199595723 ], [ -94.410842750015448, 29.615840199014929 ], [ -94.411083749849709, 29.615986199356506 ], [ -94.411491750505775, 29.616396199365642 ], [ -94.411977749867134, 29.617280200042345 ], [ -94.412691750950614, 29.618038200160282 ], [ -94.412687750831466, 29.618555199563204 ], [ -94.412586750689911, 29.618990199693801 ], [ -94.412237750676979, 29.619468200016481 ], [ -94.412145750781448, 29.619595200260793 ], [ -94.411673750608657, 29.620084200364854 ], [ -94.411632750001459, 29.620127199879793 ], [ -94.411596750420401, 29.62097620060241 ], [ -94.411945750368375, 29.621820200605825 ], [ -94.412562750840735, 29.622744201089862 ], [ -94.412769751231224, 29.623271200659683 ], [ -94.412873750648188, 29.623536200949506 ], [ -94.413077750692025, 29.624057200644778 ], [ -94.41308975068003, 29.624329201061805 ], [ -94.413090751098679, 29.624353200768311 ], [ -94.413103750581328, 29.624638201002522 ], [ -94.413120750651814, 29.625004200953473 ], [ -94.413130750890872, 29.625106201505339 ], [ -94.413186750587357, 29.625645201566737 ], [ -94.413230750780556, 29.625843201767303 ], [ -94.413234750855992, 29.626166201307612 ], [ -94.413251751508795, 29.626506201347102 ], [ -94.413262751111972, 29.626705201990337 ], [ -94.4133457506599, 29.626963201522589 ], [ -94.413348750906692, 29.6269742012671 ], [ -94.413515750855481, 29.627080201533261 ], [ -94.413603751233552, 29.627142202130273 ], [ -94.4138687514575, 29.627328201675692 ], [ -94.413872751293866, 29.627616201486475 ], [ -94.414014750976278, 29.627925201965613 ], [ -94.414020751707028, 29.627938201649396 ], [ -94.414108750770623, 29.628228202030847 ], [ -94.41423875128396, 29.628659202015175 ], [ -94.414269751558408, 29.628762202036469 ], [ -94.414331751613759, 29.62912420221873 ], [ -94.414358751825816, 29.629282202333364 ], [ -94.414401751893635, 29.62999920224593 ], [ -94.414412751610712, 29.630181202584168 ], [ -94.414490751438208, 29.630439202102693 ], [ -94.414585751127902, 29.630758202764135 ], [ -94.414606751391233, 29.630826202642208 ], [ -94.415148751718149, 29.631324202127889 ], [ -94.415329751423158, 29.631387202128462 ], [ -94.415644751514435, 29.631498202884856 ], [ -94.415999752292777, 29.631800203021854 ], [ -94.41641375211222, 29.632011202663808 ], [ -94.416837752537347, 29.632117202972449 ], [ -94.417177752145435, 29.632201202859687 ], [ -94.417470752683172, 29.632575202341901 ], [ -94.418032752976245, 29.633001202542211 ], [ -94.418349752727551, 29.633591202948601 ], [ -94.418212752351153, 29.634114202638703 ], [ -94.418208752802073, 29.634545202848482 ], [ -94.41833875262482, 29.634993203540173 ], [ -94.418488752778259, 29.635423203123885 ], [ -94.419520752915702, 29.63564620307973 ], [ -94.419937753111284, 29.636019203026379 ], [ -94.420164752988697, 29.636088203207606 ], [ -94.420433753107503, 29.636157203008835 ], [ -94.420539753579774, 29.636372203258613 ], [ -94.420566753086391, 29.636839203682261 ], [ -94.420755753273241, 29.637143203186181 ], [ -94.421048753576088, 29.637481203560462 ], [ -94.42109375366536, 29.637750203499856 ], [ -94.420860753242195, 29.638724204309824 ], [ -94.420576753030772, 29.638997203849215 ], [ -94.419939753378529, 29.639129204151477 ], [ -94.419756753263414, 29.63927520413657 ], [ -94.419747752825657, 29.639302204046864 ], [ -94.419638752829528, 29.639636204286518 ], [ -94.419644752945985, 29.640103204558653 ], [ -94.419899753248515, 29.640622204222893 ], [ -94.420286753877804, 29.641121204153709 ], [ -94.420456753470731, 29.64147920438246 ], [ -94.42025575377302, 29.641841204535169 ], [ -94.419479753430537, 29.642227204718676 ], [ -94.419132752706645, 29.642428205083426 ], [ -94.419035753241843, 29.642879204760337 ], [ -94.419041752782633, 29.643274205170847 ], [ -94.419355753186139, 29.643666205026257 ], [ -94.4193947536629, 29.643698205221803 ], [ -94.419667753388381, 29.643915204631174 ], [ -94.419982753185337, 29.644379204956305 ], [ -94.420308753638352, 29.645598205189675 ], [ -94.41998875379241, 29.646284205915197 ], [ -94.419517753752345, 29.64719720592057 ], [ -94.419439753493904, 29.647441205961631 ], [ -94.419441753358356, 29.647585205701965 ], [ -94.419567753270812, 29.647808206067975 ], [ -94.419859753943001, 29.648057206205799 ], [ -94.420109753776515, 29.64827920566017 ], [ -94.420185753926063, 29.64859220588318 ], [ -94.420119753703545, 29.648971206182534 ], [ -94.419722753814867, 29.649299205665201 ], [ -94.419520753861704, 29.649606205999699 ], [ -94.419485753377245, 29.650389205948713 ], [ -94.419592753188738, 29.650666206733064 ], [ -94.420275753971055, 29.650929206404403 ], [ -94.421074754001253, 29.651433206679819 ], [ -94.421510754385906, 29.651652206175889 ], [ -94.421632753757379, 29.651711206253299 ], [ -94.421803753905735, 29.6520442066515 ], [ -94.421786754311569, 29.652112206787717 ], [ -94.421646753971913, 29.652651206630338 ], [ -94.421196753693181, 29.653122206851837 ], [ -94.420938753924403, 29.65334020728017 ], [ -94.420773753672805, 29.653636206970788 ], [ -94.420741753896621, 29.653956207050459 ], [ -94.420826754148976, 29.654876207436825 ], [ -94.420988753988325, 29.656290207755728 ], [ -94.420922753825081, 29.656885207513213 ], [ -94.421139754696796, 29.657413208001845 ], [ -94.421220753951047, 29.657836207721356 ], [ -94.42120775489866, 29.657938207865122 ], [ -94.421186754828184, 29.658088207676084 ], [ -94.421165754038668, 29.658237207892238 ], [ -94.421135753931679, 29.658459207844579 ], [ -94.421123754310699, 29.658990208345511 ], [ -94.421372754094378, 29.659206208354817 ], [ -94.421362754269282, 29.659597208302124 ], [ -94.421014754334891, 29.66026020878585 ], [ -94.421006754543541, 29.660333208380248 ], [ -94.420928753952907, 29.660611208292764 ], [ -94.421391754791301, 29.661385208414604 ], [ -94.421508754753788, 29.662006208317393 ], [ -94.422002754512192, 29.662720208870212 ], [ -94.422193754640119, 29.662900208865807 ], [ -94.422240754663235, 29.663304209183572 ], [ -94.422347755313424, 29.663636209170711 ], [ -94.422526754760625, 29.663921208977914 ], [ -94.42291975498722, 29.664016208948798 ], [ -94.423618755078621, 29.663955209389172 ], [ -94.424049755060395, 29.663887208899428 ], [ -94.424164755816264, 29.663985208685766 ], [ -94.424183755067858, 29.664042209288873 ], [ -94.424250754958663, 29.664235209277855 ], [ -94.424357755810703, 29.66456720913741 ], [ -94.424776755948116, 29.664742209345672 ], [ -94.425150756181722, 29.664945209000415 ], [ -94.425868755898577, 29.665504209477223 ], [ -94.426437756184555, 29.66569520914706 ], [ -94.427017756045615, 29.665950209027564 ], [ -94.42728075606901, 29.666387209240138 ], [ -94.42771175673424, 29.666976209630679 ], [ -94.427919756146537, 29.667144209676309 ], [ -94.428301756677399, 29.667230209670567 ], [ -94.428498757199065, 29.667336209866573 ], [ -94.428610757079056, 29.667595209800403 ], [ -94.428729757245904, 29.66800821004313 ], [ -94.428947757361698, 29.668140210013437 ], [ -94.429391757045224, 29.668225209822563 ], [ -94.429786757073344, 29.668500209997084 ], [ -94.430102757292985, 29.66901820966082 ], [ -94.430085757122797, 29.669315210303644 ], [ -94.430100756862601, 29.66960220993051 ], [ -94.430216757332744, 29.66979021001211 ], [ -94.430375757373938, 29.670120210171522 ], [ -94.430482757344762, 29.670829210171735 ], [ -94.43043675745335, 29.671172210688876 ], [ -94.430349757589411, 29.671541210319461 ], [ -94.430346757283274, 29.672089210047655 ], [ -94.430263757450334, 29.672783210227397 ], [ -94.430330757071445, 29.673141210657761 ], [ -94.430790757573021, 29.673613211141603 ], [ -94.431000758069928, 29.67390721065987 ], [ -94.43109075815002, 29.67410021103467 ], [ -94.431101757564761, 29.674499210725973 ], [ -94.431094758032998, 29.674768210849145 ], [ -94.431084758128208, 29.675147211387578 ], [ -94.430956757754672, 29.675526211227396 ], [ -94.43070375813862, 29.676057211554191 ], [ -94.430672757141224, 29.676108211474766 ], [ -94.430749757730595, 29.676107211022099 ], [ -94.43123575804762, 29.676104211549415 ], [ -94.43292775789574, 29.676094211366241 ], [ -94.433492758725166, 29.676091211057773 ], [ -94.433767758150665, 29.676089210787996 ], [ -94.434591758610296, 29.676086210953368 ], [ -94.434867758508133, 29.676085211403265 ], [ -94.43576775903189, 29.676069211528215 ], [ -94.440301760563173, 29.6760372108341 ], [ -94.441559760288854, 29.676027211149858 ], [ -94.445335761193505, 29.676001211173492 ], [ -94.446529762242363, 29.675993211116289 ], [ -94.446594761603563, 29.675993210920375 ], [ -94.448845762233091, 29.675975210484133 ], [ -94.45560076431525, 29.675923210051817 ], [ -94.45785276520985, 29.67590621012215 ], [ -94.458875764930269, 29.675897210264043 ], [ -94.459901764726865, 29.675888210447784 ], [ -94.461674765580469, 29.675872209992477 ], [ -94.461945765961445, 29.675870210447115 ], [ -94.462969765531113, 29.675862210074285 ], [ -94.463504765942432, 29.675859210386164 ], [ -94.46511376697292, 29.675851209854912 ], [ -94.46564976679808, 29.675849209722859 ], [ -94.465733767013262, 29.675849210026755 ], [ -94.465955766835378, 29.675848209781474 ], [ -94.46677676727758, 29.675823210279468 ], [ -94.467078767563493, 29.675800209669671 ], [ -94.467620766827395, 29.675728210136395 ], [ -94.467650767231646, 29.675722210173863 ], [ -94.468710767424199, 29.675530210285263 ], [ -94.473560768474869, 29.674557209125265 ], [ -94.475506768804067, 29.674168209143915 ], [ -94.475529769477447, 29.67416320966192 ], [ -94.475599769163836, 29.674462209240769 ], [ -94.475649769771991, 29.674869209178372 ], [ -94.475788769016987, 29.67558420985138 ], [ -94.475782769805406, 29.675672209574135 ], [ -94.475530769298274, 29.675996209597184 ], [ -94.475467769030701, 29.676040209810139 ], [ -94.475291769091655, 29.676095210145103 ], [ -94.474082768934139, 29.676420209534925 ], [ -94.474031768935433, 29.676437210073097 ], [ -94.473836768371299, 29.676503210256929 ], [ -94.473710768493504, 29.676580209672544 ], [ -94.473364768384883, 29.67683820970981 ], [ -94.472098768828346, 29.677757210358958 ], [ -94.471840768383103, 29.677988210556002 ], [ -94.471645768832914, 29.678120209961385 ], [ -94.471374768219889, 29.678214210637293 ], [ -94.471078768555671, 29.678346210775267 ], [ -94.470977768372904, 29.678434210585767 ], [ -94.470908768290329, 29.678522210416244 ], [ -94.470725768558538, 29.678797210423671 ], [ -94.470543768538207, 29.679105210842192 ], [ -94.470442768220551, 29.679336210654732 ], [ -94.470039768287435, 29.680035210731248 ], [ -94.469876768266388, 29.680255210969399 ], [ -94.469504767692513, 29.680657210957623 ], [ -94.469252767361553, 29.681020210871665 ], [ -94.469038767587762, 29.681421211431413 ], [ -94.468887768147397, 29.681955210944118 ], [ -94.468818768185116, 29.68235121122472 ], [ -94.468724768109013, 29.682769211104908 ], [ -94.468730767918117, 29.683258211594332 ], [ -94.468749767405427, 29.683578211298698 ], [ -94.468863767464001, 29.684095212018061 ], [ -94.468844767520224, 29.684353211665293 ], [ -94.468786767881255, 29.684642211534022 ], [ -94.468768768160615, 29.684733211512945 ], [ -94.468668768338134, 29.685096212132422 ], [ -94.468668767825775, 29.685222212048412 ], [ -94.468718767809747, 29.685437212075648 ], [ -94.468605767970615, 29.685728211970886 ], [ -94.468315767850655, 29.68613521205743 ], [ -94.468070767657281, 29.686542212594791 ], [ -94.467680767377004, 29.687390212630564 ], [ -94.467482767921098, 29.687822212655192 ], [ -94.467302767268166, 29.688215212184726 ], [ -94.467262767629435, 29.688315212364898 ], [ -94.46717076719267, 29.688550212831469 ], [ -94.467151767415373, 29.688792213153743 ], [ -94.467157767836227, 29.688952212760917 ], [ -94.467271767728604, 29.689705213109583 ], [ -94.46729176762598, 29.689909213146766 ], [ -94.46733476738622, 29.690349213338958 ], [ -94.467338767830839, 29.690448212942094 ], [ -94.467385767951143, 29.691520212878078 ], [ -94.467391768048998, 29.691630213683467 ], [ -94.467401768092003, 29.69175521297911 ], [ -94.467632767533743, 29.694573213782302 ], [ -94.467726767613343, 29.695337213696462 ], [ -94.467760768391656, 29.695665213775548 ], [ -94.467865767937226, 29.696647214099748 ], [ -94.467828768533124, 29.69687721430191 ], [ -94.467788767886333, 29.696957214686819 ], [ -94.467774768632253, 29.696966214283012 ], [ -94.467601767959408, 29.697186214639558 ], [ -94.467595768596254, 29.697378214496528 ], [ -94.467576767833748, 29.697439214865614 ], [ -94.467462768155713, 29.697538214130425 ], [ -94.466946768306585, 29.698137215036141 ], [ -94.466882767681611, 29.698274215076122 ], [ -94.46668876812285, 29.698693215013456 ], [ -94.466575767946736, 29.69889121521399 ], [ -94.466430767764692, 29.699023215087657 ], [ -94.466121768067339, 29.699271214969585 ], [ -94.465668767259501, 29.699892215223699 ], [ -94.465592767775476, 29.700079215016359 ], [ -94.465554768108888, 29.700310215476009 ], [ -94.465544767494492, 29.700345215463479 ], [ -94.465485768007809, 29.700558215488307 ], [ -94.465359767691268, 29.700767215397395 ], [ -94.465296767834843, 29.700970215397401 ], [ -94.465322767823693, 29.701685215587371 ], [ -94.465240768242111, 29.701828215584737 ], [ -94.465108768158245, 29.702213215997901 ], [ -94.465045767803261, 29.702290215408816 ], [ -94.464856767696759, 29.702411215611647 ], [ -94.464787767140791, 29.702515215890337 ], [ -94.464761767427092, 29.702555216046896 ], [ -94.464692767613286, 29.702824215852075 ], [ -94.464686767301799, 29.703006215569612 ], [ -94.464509767505604, 29.703292215922481 ], [ -94.464434768058723, 29.703385215650982 ], [ -94.464352767145925, 29.703539216317065 ], [ -94.464321767550203, 29.703622215845296 ], [ -94.464289767434522, 29.703770215515995 ], [ -94.464195767954067, 29.704021216227847 ], [ -94.4640317672918, 29.704458216277409 ], [ -94.463974767862254, 29.704546215676174 ], [ -94.463924767820217, 29.704661215757486 ], [ -94.463867767112333, 29.704749215972647 ], [ -94.463804767808426, 29.70499121617685 ], [ -94.463767767342233, 29.705068216404005 ], [ -94.46354076776295, 29.705365216718278 ], [ -94.463458767638315, 29.705663216160119 ], [ -94.463401767772908, 29.705795216619716 ], [ -94.463408767394938, 29.706059216014278 ], [ -94.463458767843221, 29.706290216698832 ], [ -94.463660767499121, 29.706928216940991 ], [ -94.463714767606135, 29.707210216454762 ], [ -94.463723767882627, 29.70725221658687 ], [ -94.463755767418249, 29.707324216308791 ], [ -94.463780767221323, 29.707604216587548 ], [ -94.463805767880828, 29.707681217040829 ], [ -94.463812767461818, 29.707890216451478 ], [ -94.463812767772367, 29.708424217231489 ], [ -94.46376176789407, 29.7086992165966 ], [ -94.463774768129412, 29.708891216742042 ], [ -94.463799767525288, 29.708990216846317 ], [ -94.463869767271575, 29.709430217104028 ], [ -94.463881767736495, 29.709628217559484 ], [ -94.463913767666114, 29.709815217094615 ], [ -94.4639077676281, 29.709909217619892 ], [ -94.463863767852899, 29.710013217400604 ], [ -94.463718767874582, 29.710195217595107 ], [ -94.463674767427221, 29.710332217329036 ], [ -94.463674768102692, 29.710717217441147 ], [ -94.463649767345785, 29.710871217265737 ], [ -94.463586767939589, 29.710959217279004 ], [ -94.463453767316679, 29.711075217338863 ], [ -94.463309767626512, 29.711273217391895 ], [ -94.463120767136303, 29.712202217759859 ], [ -94.462994767566713, 29.712444218211218 ], [ -94.462880767925341, 29.712764217810349 ], [ -94.462830767940829, 29.71306121774947 ], [ -94.462780767250365, 29.713149218111955 ], [ -94.462698767417621, 29.713215218001878 ], [ -94.461564767798251, 29.713957217794253 ], [ -94.461331766806254, 29.714045218351622 ], [ -94.461123766907988, 29.714167218560558 ], [ -94.460789766671795, 29.714486217967099 ], [ -94.460550767590505, 29.714772218144383 ], [ -94.460373767229342, 29.71500321797204 ], [ -94.460071767083676, 29.715349218910241 ], [ -94.459945767061669, 29.715630218411437 ], [ -94.459888767339081, 29.715701218606707 ], [ -94.459824767269438, 29.715748218309027 ], [ -94.459674767288263, 29.715861218637865 ], [ -94.459315766618474, 29.716152218727007 ], [ -94.459082766768759, 29.716411218392611 ], [ -94.458862766542978, 29.716763218958423 ], [ -94.458698766308061, 29.717104219129055 ], [ -94.458647766366511, 29.717286219070179 ], [ -94.458641766369354, 29.717770218847207 ], [ -94.458704766439354, 29.717962219231307 ], [ -94.459114767236713, 29.718353219182937 ], [ -94.459230766579239, 29.718502218781421 ], [ -94.459341767066292, 29.718644219060224 ], [ -94.459514766775072, 29.718822218885482 ], [ -94.459561767500844, 29.718870219066627 ], [ -94.459744767483642, 29.719172219137214 ], [ -94.459807767548881, 29.719414219046339 ], [ -94.459807766950917, 29.719684219817587 ], [ -94.459864767429124, 29.71982721942468 ], [ -94.459902767275409, 29.719997219591942 ], [ -94.459911767560655, 29.720013219312289 ], [ -94.46000376694802, 29.720168219670562 ], [ -94.460154766755451, 29.720366219071554 ], [ -94.46021176695757, 29.720437219486485 ], [ -94.460214767716437, 29.720446219505824 ], [ -94.460323767273792, 29.720728219379559 ], [ -94.460343767416489, 29.720778219457539 ], [ -94.460347767002418, 29.720825219379766 ], [ -94.46036276742646, 29.720987219916665 ], [ -94.460318767197023, 29.721114219518338 ], [ -94.460432767123137, 29.721218219745726 ], [ -94.460803766983275, 29.721366220058847 ], [ -94.461119767506332, 29.72156421992927 ], [ -94.461274767761111, 29.721685219593947 ], [ -94.461862767482998, 29.722142219848603 ], [ -94.463369768082217, 29.723373219806316 ], [ -94.463923768536731, 29.723846220222644 ], [ -94.464251768108824, 29.724176219969827 ], [ -94.464447768108727, 29.724424220180477 ], [ -94.464488768569439, 29.724472220147174 ], [ -94.464535768144671, 29.724527220444724 ], [ -94.464863768289177, 29.724908219906791 ], [ -94.465285768561841, 29.725375220702627 ], [ -94.465438768522304, 29.725530220784812 ], [ -94.465745769272772, 29.725843220331267 ], [ -94.465928768872644, 29.726200220651549 ], [ -94.466155769227015, 29.726569220199416 ], [ -94.466239769096575, 29.726986220790547 ], [ -94.46624376921929, 29.72700322091422 ], [ -94.4662887689028, 29.727300220665203 ], [ -94.466313769306325, 29.727674220503463 ], [ -94.466301768986952, 29.728031220864342 ], [ -94.466313769287893, 29.728323220865089 ], [ -94.466427769521928, 29.72859822075177 ], [ -94.466540768777762, 29.728763221159657 ], [ -94.46664176923862, 29.728889220988989 ], [ -94.467334769478029, 29.729379221260022 ], [ -94.467536769348655, 29.729555220896351 ], [ -94.467656769330276, 29.729692221113819 ], [ -94.467826769937105, 29.729978221456594 ], [ -94.468009769324652, 29.730314221598821 ], [ -94.468186769953121, 29.730671221637529 ], [ -94.468312770080558, 29.731056221557996 ], [ -94.468312769856198, 29.73130422116726 ], [ -94.46830877008712, 29.731332221618647 ], [ -94.468274770041191, 29.7316012211501 ], [ -94.468161769840236, 29.731980221638601 ], [ -94.468016769624995, 29.732629221834983 ], [ -94.467934769673889, 29.732789222207206 ], [ -94.467915770254336, 29.732975222056382 ], [ -94.467897770244278, 29.733146222156826 ], [ -94.467897770068731, 29.7333612218764 ], [ -94.467903769585121, 29.733614221577469 ], [ -94.468111770131557, 29.734378222130726 ], [ -94.468238770193821, 29.73476922188901 ], [ -94.468597770228001, 29.735500222685886 ], [ -94.468980770600766, 29.736389222626325 ], [ -94.469240770451009, 29.736991222269175 ], [ -94.469562770301479, 29.737893222390245 ], [ -94.469733770745719, 29.738597222810064 ], [ -94.469708770663829, 29.74079122348984 ], [ -94.469715770452567, 29.741501223641606 ], [ -94.469684770867772, 29.742172223751737 ], [ -94.46990577048355, 29.743294223734541 ], [ -94.47035977120531, 29.744273224556824 ], [ -94.470447771199801, 29.744553223912572 ], [ -94.470554771183103, 29.745103224346767 ], [ -94.470687771530507, 29.745708224297502 ], [ -94.470838771397425, 29.746148224911352 ], [ -94.470990770888633, 29.746676224362094 ], [ -94.471084771502689, 29.746909224338662 ], [ -94.471148771747679, 29.74706722443198 ], [ -94.471375771602595, 29.74745722517611 ], [ -94.47202477133176, 29.748430224632386 ], [ -94.472289771529844, 29.74880422532528 ], [ -94.472504771483571, 29.74917322540486 ], [ -94.472592772040699, 29.749365224953007 ], [ -94.472964771510121, 29.750003225314025 ], [ -94.473118771802547, 29.750307225277083 ], [ -94.473535771651228, 29.751028225681793 ], [ -94.473894772167583, 29.751830226002937 ], [ -94.47400277266054, 29.75236922554895 ], [ -94.474006772170185, 29.752405226057014 ], [ -94.474046772632633, 29.752721226180455 ], [ -94.474014772486157, 29.753101226159259 ], [ -94.473958772784684, 29.75357422574033 ], [ -94.473870771895889, 29.7538272255435 ], [ -94.473662772622077, 29.754157225918902 ], [ -94.473454771731895, 29.754449226087779 ], [ -94.473372772080424, 29.754581226309231 ], [ -94.473297772155234, 29.754828226397422 ], [ -94.473284772196791, 29.755235226745782 ], [ -94.473385772658304, 29.755378226605284 ], [ -94.473473772616671, 29.755692226061932 ], [ -94.473423772316153, 29.756027226867843 ], [ -94.473467772142897, 29.756390226576023 ], [ -94.473606772435815, 29.756726226560183 ], [ -94.473928772502987, 29.757116226238306 ], [ -94.47444577253917, 29.757875227182232 ], [ -94.474495772443177, 29.758090226463406 ], [ -94.474533772863069, 29.758354226591148 ], [ -94.474521772860811, 29.758843227173827 ], [ -94.474597772774473, 29.759047226857945 ], [ -94.474843772905089, 29.759371227206888 ], [ -94.475017772813501, 29.759625226979633 ], [ -94.475095773062336, 29.759739227012656 ], [ -94.475240773139376, 29.760047227691 ], [ -94.475353772904924, 29.7602232276483 ], [ -94.475429772778071, 29.760537226979608 ], [ -94.475417773280824, 29.760724227346042 ], [ -94.475329772866957, 29.761092227377159 ], [ -94.475203772834163, 29.761852227677895 ], [ -94.475124772811085, 29.762134228036366 ], [ -94.476436773298161, 29.762124227273258 ], [ -94.476834772938673, 29.762122227947337 ], [ -94.48037277430943, 29.762074227167393 ], [ -94.481581775061244, 29.762058227382543 ], [ -94.481685774641633, 29.762057227538342 ], [ -94.48205177469336, 29.762049227149436 ], [ -94.483150775095595, 29.762026227051816 ], [ -94.483517775636088, 29.762019227020701 ], [ -94.484388775553128, 29.762007227674076 ], [ -94.487003775607988, 29.761973226913227 ], [ -94.487875776748083, 29.76196222734065 ], [ -94.488120776681498, 29.761959227414238 ], [ -94.489981776703956, 29.76193422682832 ], [ -94.491000776810765, 29.76192122737643 ], [ -94.496300778082187, 29.76183822724148 ], [ -94.498407778980976, 29.761806226722371 ], [ -94.498433779218672, 29.763040226881227 ], [ -94.49843577881559, 29.763256227054448 ], [ -94.4984867794509, 29.767607228395608 ], [ -94.498504778836718, 29.769058228355 ], [ -94.498538779741338, 29.77066122911133 ], [ -94.498626779559771, 29.777890230570851 ], [ -94.498767780496905, 29.786758232267559 ], [ -94.49883378045206, 29.790951232408734 ], [ -94.500154780399896, 29.790936232378705 ], [ -94.50048678120028, 29.790931232412866 ], [ -94.505445782521747, 29.79086423293332 ], [ -94.507099782221232, 29.790842232954162 ], [ -94.508765783092173, 29.790821232370416 ], [ -94.511955783478257, 29.79078323221183 ], [ -94.513765784667612, 29.790763232350518 ], [ -94.515432784851669, 29.790745232422186 ], [ -94.515547785001885, 29.790743232675037 ], [ -94.515772784649499, 29.790741232488809 ], [ -94.516793785217473, 29.790732232415284 ], [ -94.517134785252054, 29.790729232193353 ], [ -94.518443785922784, 29.790712232339292 ], [ -94.522374786862684, 29.790661232012791 ], [ -94.523140787157232, 29.790652231813212 ], [ -94.523742787042039, 29.790645231701095 ], [ -94.523839786894243, 29.790643232158498 ], [ -94.526626787757735, 29.790584231679979 ], [ -94.533787789286038, 29.790436231874423 ], [ -94.535281790023362, 29.790404231188926 ], [ -94.538167790247059, 29.790345231352923 ], [ -94.538652790360743, 29.790336230933367 ], [ -94.540109791305809, 29.790310231059856 ], [ -94.540595791444517, 29.790302231111077 ], [ -94.54093679132437, 29.790293231274447 ], [ -94.541961791284407, 29.790266230815856 ], [ -94.54230379146027, 29.790258231381582 ], [ -94.54356079142633, 29.790235231008126 ], [ -94.547335793163384, 29.79016923112464 ], [ -94.548593792705972, 29.790147230783255 ], [ -94.549743793572645, 29.790124230825338 ], [ -94.553193794483619, 29.790056230890581 ], [ -94.553640794871811, 29.790048230420172 ], [ -94.554344794720862, 29.790032230631443 ], [ -94.554391794736034, 29.790031231006967 ], [ -94.555439795015246, 29.79000723095206 ], [ -94.555612795214884, 29.790004230342404 ], [ -94.556451795750576, 29.789992230669306 ], [ -94.558725795612077, 29.789943230181013 ], [ -94.55982179621958, 29.789920230507938 ], [ -94.560661796787073, 29.789902230839058 ], [ -94.563182797344695, 29.789849230156996 ], [ -94.564023796735327, 29.789832230275628 ], [ -94.565885797468795, 29.789794229920979 ], [ -94.571473798942577, 29.789683230574958 ], [ -94.573336800009585, 29.789646229883491 ], [ -94.574215799338447, 29.789622229622815 ], [ -94.574327800270638, 29.789619229987302 ], [ -94.574467799409717, 29.789616230304404 ], [ -94.57589279986027, 29.789596229636203 ], [ -94.577863800350173, 29.789567229505781 ], [ -94.578996801438265, 29.78955122974671 ], [ -94.580665801964827, 29.789533229773163 ], [ -94.58567380316974, 29.789481229281925 ], [ -94.586344802476972, 29.789475229889103 ], [ -94.587343803222936, 29.789465229591169 ], [ -94.587532803615645, 29.789464229700997 ], [ -94.588101803488883, 29.789461229225594 ], [ -94.588291803892744, 29.789461229963294 ], [ -94.588945803954076, 29.789449229919285 ], [ -94.590911804256294, 29.789414229798659 ], [ -94.591566804331293, 29.789403229499708 ], [ -94.591922803874539, 29.789398229494338 ], [ -94.592990804874105, 29.789386229529761 ], [ -94.593347804285131, 29.78938222920522 ], [ -94.593821804555319, 29.789379228957628 ], [ -94.594069805111232, 29.789378229355187 ], [ -94.595246805094604, 29.789365229119092 ], [ -94.595721805564082, 29.789361229379335 ], [ -94.595861805883871, 29.789358229097406 ], [ -94.596284805153473, 29.789352229512115 ], [ -94.596426805501409, 29.789350228826645 ], [ -94.59691880572322, 29.789342229397491 ], [ -94.598396805939672, 29.789320228929036 ], [ -94.598889805757366, 29.789313229297679 ], [ -94.599747806348176, 29.789294229203694 ], [ -94.599902806671224, 29.789291228772438 ], [ -94.602322807054961, 29.789259228870616 ], [ -94.602593807412163, 29.789256228965435 ], [ -94.603025807373143, 29.789248229168706 ], [ -94.603103807478959, 29.789247229226117 ], [ -94.603181807583226, 29.78924622923811 ], [ -94.603213807758493, 29.789245228714286 ], [ -94.603254807246515, 29.789245228568241 ], [ -94.6032958070559, 29.789243228580506 ], [ -94.603347807334131, 29.789243229074483 ], [ -94.603991807734943, 29.789232228922376 ], [ -94.60642480817917, 29.78919522843934 ], [ -94.607235808321875, 29.789183228534696 ], [ -94.608270808550486, 29.789175228462319 ], [ -94.610340809565685, 29.789137228766041 ], [ -94.61300680984499, 29.789090228868261 ], [ -94.613180809795622, 29.789085228510906 ], [ -94.614647810050528, 29.789039228273253 ], [ -94.616986811143093, 29.788936228031478 ], [ -94.619652811056014, 29.78883922871006 ], [ -94.622147812205156, 29.788749227906024 ], [ -94.622528812413776, 29.788732228661413 ], [ -94.622756812171914, 29.788723228566255 ], [ -94.625190812790123, 29.788629227796424 ], [ -94.625367812809799, 29.788623227981827 ], [ -94.626437812907696, 29.788588228331747 ], [ -94.628374814112007, 29.788516227771876 ], [ -94.629541813790283, 29.788462227768367 ], [ -94.630210814178923, 29.788439227606798 ], [ -94.63140381461379, 29.788399228291745 ], [ -94.632663814409923, 29.788348227383629 ], [ -94.632759814689393, 29.788344227839289 ], [ -94.633654814652019, 29.788322228153863 ], [ -94.634669814960532, 29.788277227288503 ], [ -94.635602815654309, 29.788249227820518 ], [ -94.636381816094612, 29.788208227254206 ], [ -94.637410816426296, 29.788163227294483 ], [ -94.637481816494372, 29.788156227441927 ], [ -94.637595816615729, 29.788147227149661 ], [ -94.637750815951264, 29.788127227454094 ], [ -94.638058816367945, 29.788073227866189 ], [ -94.638274816315487, 29.788026227860534 ], [ -94.638488815939851, 29.787971227242281 ], [ -94.638863816213117, 29.78786222780759 ], [ -94.639049816864443, 29.787801227579845 ], [ -94.639194816425174, 29.787738227525008 ], [ -94.639891816551682, 29.787378226896589 ], [ -94.640105816356495, 29.787257227085068 ], [ -94.640542816470528, 29.7869882269496 ], [ -94.640628816352319, 29.786935227364911 ], [ -94.640802816619498, 29.786829227201274 ], [ -94.640860816547473, 29.786795227272219 ], [ -94.641230817411611, 29.786540227431523 ], [ -94.6414778168308, 29.786359227216945 ], [ -94.641598817582178, 29.786272227287032 ], [ -94.641933816882386, 29.786062226581397 ], [ -94.642204817404362, 29.785908227125972 ], [ -94.643373817232217, 29.785115226824502 ], [ -94.643751817832651, 29.784859226314303 ], [ -94.643999818103339, 29.784691226350464 ], [ -94.646013817992937, 29.783346226248113 ], [ -94.64621881864187, 29.783210226240818 ], [ -94.648605818520267, 29.78157722599563 ], [ -94.652032819017478, 29.77927722495933 ], [ -94.652419819224434, 29.779018225582757 ], [ -94.653626819713779, 29.778208225062517 ], [ -94.654049819875866, 29.77793622491766 ], [ -94.654217819653127, 29.777829225222 ], [ -94.654243819760126, 29.777811225040434 ], [ -94.654478819582081, 29.777657225041484 ], [ -94.6548348204267, 29.777454225073377 ], [ -94.655035819737748, 29.777341225133277 ], [ -94.655168819927354, 29.777282224340464 ], [ -94.655674820281135, 29.777095225113758 ], [ -94.655883820699714, 29.777028224443381 ], [ -94.656015820291671, 29.776987224827959 ], [ -94.656377820972494, 29.776895224902905 ], [ -94.658532821320676, 29.776430224400414 ], [ -94.658881821602975, 29.776355224335379 ], [ -94.659248820861848, 29.776264224705397 ], [ -94.65941582121819, 29.776232223954498 ], [ -94.659438821081736, 29.776227224152475 ], [ -94.659490821305269, 29.776217224794127 ], [ -94.659509821076455, 29.776213223969794 ], [ -94.659533821564835, 29.776209224418629 ], [ -94.659867821841004, 29.776144224349768 ], [ -94.659887821148445, 29.776141224604398 ], [ -94.660408821038558, 29.776023224503202 ], [ -94.66078082119185, 29.775943224121526 ], [ -94.660866821420598, 29.775925224527814 ], [ -94.66120082140489, 29.775855223911712 ], [ -94.661249821225084, 29.775843224427025 ], [ -94.661282821611906, 29.775836224189828 ], [ -94.661398822243839, 29.775807223863463 ], [ -94.661448821632689, 29.775796224525624 ], [ -94.661593821355211, 29.775761224562903 ], [ -94.661675821413525, 29.775742224600123 ], [ -94.662032822251092, 29.775663223980231 ], [ -94.662179821739272, 29.775631224198463 ], [ -94.662663821903976, 29.775532224366572 ], [ -94.664117822784235, 29.775238224371687 ], [ -94.66460282270917, 29.775140224172883 ], [ -94.665090822292655, 29.775036224160978 ], [ -94.666554822843608, 29.774725223986238 ], [ -94.667043823009905, 29.774622223512747 ], [ -94.667257823153435, 29.774575223468283 ], [ -94.667848823549406, 29.774446223529836 ], [ -94.6679028233862, 29.774437223666311 ], [ -94.66799282373222, 29.774423223920014 ], [ -94.668119823315266, 29.774403223649188 ], [ -94.669206823201975, 29.774201223810749 ], [ -94.669237824004753, 29.774195223282028 ], [ -94.670401824226545, 29.773943223653131 ], [ -94.670561823779835, 29.773913223891171 ], [ -94.67070782430757, 29.773876223296249 ], [ -94.672154824729688, 29.773522223244697 ], [ -94.672902824122801, 29.773371223767022 ], [ -94.673494824660139, 29.773252223445208 ], [ -94.674083825121926, 29.773177223206382 ], [ -94.674271824629514, 29.773169223450893 ], [ -94.67594082559215, 29.773108223222636 ], [ -94.676618825733328, 29.773092222875299 ], [ -94.677401825446012, 29.773075223068478 ], [ -94.677903826292834, 29.773061223486355 ], [ -94.679411826031085, 29.773020223163982 ], [ -94.679914826827996, 29.773007223383388 ], [ -94.680145826060169, 29.773001222908412 ], [ -94.680838826769829, 29.772986222959794 ], [ -94.681070826636955, 29.772981222802951 ], [ -94.681303827122562, 29.772975222544989 ], [ -94.682003827017482, 29.772958222981288 ], [ -94.682237827110285, 29.772953222970035 ], [ -94.682467827133024, 29.772946222969988 ], [ -94.683158826821398, 29.772927222816985 ], [ -94.683389827607982, 29.772922222581528 ], [ -94.683500827189789, 29.772919222959715 ], [ -94.683835827613507, 29.772912222814252 ], [ -94.683947827072529, 29.772911223228849 ], [ -94.684031827570848, 29.772909223295454 ], [ -94.684286827016791, 29.772902222784062 ], [ -94.684371827312347, 29.772901222687498 ], [ -94.6845228275822, 29.772883223248233 ], [ -94.68454382729044, 29.772881222641409 ], [ -94.68502682724575, 29.772846222682247 ], [ -94.685062828140772, 29.772840222456207 ], [ -94.685191828234125, 29.772819222395249 ], [ -94.685234827697741, 29.772819222973116 ], [ -94.685245827629316, 29.772871222503447 ], [ -94.685253827756682, 29.772926223089122 ], [ -94.685260827505843, 29.772941222607596 ], [ -94.685369827419365, 29.773181223091765 ], [ -94.685421827645754, 29.773283223176033 ], [ -94.685428828222484, 29.773296222912659 ], [ -94.685450828046697, 29.77336422286815 ], [ -94.685454827666675, 29.773404222991402 ], [ -94.685470827366075, 29.773398223256002 ], [ -94.685614828051257, 29.773404223167365 ], [ -94.685809828314589, 29.773411223024826 ], [ -94.685825827486497, 29.773409222823311 ], [ -94.686184828423308, 29.773372223328948 ], [ -94.686425827668131, 29.773264222950615 ], [ -94.686422827938699, 29.773205223136628 ], [ -94.686415828354725, 29.773099222587781 ], [ -94.686413828271995, 29.773063223264302 ], [ -94.686396828465277, 29.772769222385897 ], [ -94.686385828488355, 29.772573223181748 ], [ -94.686508827969504, 29.772446222765563 ], [ -94.68721082802, 29.772511222382853 ], [ -94.687336828609816, 29.7725232228441 ], [ -94.688208828514789, 29.772512222460946 ], [ -94.688258828988836, 29.771993222825873 ], [ -94.68826382799368, 29.771935222590258 ], [ -94.688275828764731, 29.771821222256232 ], [ -94.688262828969116, 29.771474222633344 ], [ -94.688249828106535, 29.771078222065697 ], [ -94.688689828249551, 29.770783222551117 ], [ -94.689396828514006, 29.76993622223662 ], [ -94.689867829078054, 29.769080222188997 ], [ -94.690292829255668, 29.768066221439216 ], [ -94.690853829429841, 29.766709221806618 ], [ -94.69140082942485, 29.765325221477042 ], [ -94.691885829230415, 29.764007221129148 ], [ -94.692477829463257, 29.762400220859057 ], [ -94.693115829478032, 29.760609219964437 ], [ -94.693464829310486, 29.759660219920494 ], [ -94.693691829342498, 29.75869821950624 ], [ -94.694055828935944, 29.757460219173531 ], [ -94.694419828921824, 29.756564218809874 ], [ -94.694905829667391, 29.755537218636849 ], [ -94.6954818300879, 29.75470721916939 ], [ -94.696953830209125, 29.752731218279003 ], [ -94.6974088302251, 29.752046217839286 ], [ -94.698060830620506, 29.751162218144401 ], [ -94.69868282985739, 29.75034621775529 ], [ -94.698696829781184, 29.750236217747762 ], [ -94.699229830313442, 29.749555217236765 ], [ -94.700276830832436, 29.748106217008939 ], [ -94.702127831178061, 29.745432216873912 ], [ -94.702779831210208, 29.744576215958602 ], [ -94.703662831050735, 29.743363216526866 ], [ -94.703797831401417, 29.743179216447192 ], [ -94.704782831886476, 29.741967216071561 ], [ -94.705130831047924, 29.741559215759676 ], [ -94.705442831837786, 29.741199215874484 ], [ -94.704993831714219, 29.741098215491299 ], [ -94.704873831144553, 29.7410712152058 ], [ -94.704257831336022, 29.741673215498373 ], [ -94.703086831508941, 29.741868216112177 ], [ -94.702829831147412, 29.741911215591209 ], [ -94.702572831250066, 29.7419532160513 ], [ -94.702311831061792, 29.741997215689281 ], [ -94.702098830654975, 29.742031215637184 ], [ -94.701884830964943, 29.742066216042907 ], [ -94.701362830337942, 29.742155216128896 ], [ -94.701202830817522, 29.742206216019671 ], [ -94.700019830236883, 29.744670216125012 ], [ -94.698144830007777, 29.747346217155719 ], [ -94.69747383000815, 29.748303217074099 ], [ -94.696992829915985, 29.74811421721067 ], [ -94.696951829411418, 29.747969216817616 ], [ -94.696837829345938, 29.747585217514686 ], [ -94.696546829914027, 29.746604217457335 ], [ -94.696259829531854, 29.745636216686563 ], [ -94.698280830214287, 29.74223221627372 ], [ -94.699340829633755, 29.740501215774977 ], [ -94.699940829799019, 29.738559215267426 ], [ -94.69981382974143, 29.73495721472343 ], [ -94.699760829785518, 29.733416214328091 ], [ -94.699131829870581, 29.730822213251042 ], [ -94.698304829050485, 29.727986213130301 ], [ -94.698219829425042, 29.72768421344119 ], [ -94.696408827896519, 29.721211211593111 ], [ -94.695394827434541, 29.717024210491839 ], [ -94.694791827567727, 29.711997210160703 ], [ -94.694274827086232, 29.706863208956417 ], [ -94.694133826954953, 29.705151208341949 ], [ -94.69415482676618, 29.703510208297939 ], [ -94.694074827302202, 29.700764207443086 ], [ -94.694047826654639, 29.697834207039747 ], [ -94.694074827043153, 29.697257206831956 ], [ -94.694552826468396, 29.695803206763483 ], [ -94.695322827066633, 29.693980205908471 ], [ -94.696437827566839, 29.691465205846004 ], [ -94.697580827463653, 29.688650204792019 ], [ -94.69869582721968, 29.68583520444027 ], [ -94.699385827594142, 29.683724203974414 ], [ -94.700049827347698, 29.681648203655033 ], [ -94.700474827281226, 29.678833202650679 ], [ -94.700899827742646, 29.675948201958313 ], [ -94.701111827226384, 29.672164201715294 ], [ -94.701271827451748, 29.669775200966644 ], [ -94.701616827441768, 29.667976200519561 ], [ -94.702227827467794, 29.664099199328476 ], [ -94.703129827154186, 29.659692199224846 ], [ -94.703527827517462, 29.657385198376009 ], [ -94.703634827275735, 29.656970198391313 ], [ -94.704432827091267, 29.653362197072791 ], [ -94.704563827391866, 29.652770197576455 ], [ -94.705598827626972, 29.648986196407524 ], [ -94.706262828008249, 29.646033195509933 ], [ -94.706315827346842, 29.645087195879785 ], [ -94.706481827308309, 29.64383119516976 ], [ -94.707194827329118, 29.641808195370572 ], [ -94.707945827551114, 29.639557194864217 ], [ -94.708884828128404, 29.636130193362195 ], [ -94.709447827774582, 29.633520193397228 ], [ -94.710535827816543, 29.630387192511161 ], [ -94.711211828394667, 29.627809191832359 ], [ -94.711624827641543, 29.625656191594782 ], [ -94.712187828110515, 29.624775191595344 ], [ -94.714589829148849, 29.620859190305843 ], [ -94.717930829507068, 29.615573188963168 ], [ -94.720632829486263, 29.610515188124175 ], [ -94.722967829762794, 29.606798187072677 ], [ -94.725772830376513, 29.602553185799017 ], [ -94.727761831138722, 29.599486185950074 ], [ -94.731101831678757, 29.593971184022585 ], [ -94.733428832021971, 29.589827183535856 ], [ -94.734440832604818, 29.588162183059879 ], [ -94.735716832995152, 29.586237182690454 ], [ -94.737029833328748, 29.58372418215081 ], [ -94.739092833602072, 29.580331180747631 ], [ -94.741869833893148, 29.577100180483203 ], [ -94.744721834905405, 29.574457179904407 ], [ -94.748923835186147, 29.570835178480394 ], [ -94.750724835616836, 29.56943217895995 ], [ -94.751737835483226, 29.56877917824238 ], [ -94.755000837034672, 29.566038177966309 ], [ -94.758039837663461, 29.562971177228487 ], [ -94.760965837968783, 29.560034176063766 ], [ -94.763891838714869, 29.5568691758852 ], [ -94.766442839217078, 29.554617174637265 ], [ -94.768017839154027, 29.553212174254242 ], [ -94.769480839890093, 29.551581174387707 ], [ -94.771430840239915, 29.55050417401781 ], [ -94.77251884091713, 29.552234174513941 ], [ -94.773869840669832, 29.553930174635632 ], [ -94.773869840880835, 29.554975174967048 ], [ -94.772518840596149, 29.557096175605267 ], [ -94.774206840919831, 29.558303175822164 ], [ -94.776569841791542, 29.558336175434516 ], [ -94.778895842417469, 29.557618175331157 ], [ -94.78020884310537, 29.556704174623523 ], [ -94.779983842233463, 29.554746174508619 ], [ -94.778633842153013, 29.553343173999341 ], [ -94.77619484194561, 29.553049174648457 ], [ -94.774956841166286, 29.551581173610106 ], [ -94.774056841279119, 29.549982173612744 ], [ -94.776719841971627, 29.55034117344151 ], [ -94.779008842673448, 29.550700173576114 ], [ -94.779983842702876, 29.550471173567217 ], [ -94.782084843352564, 29.549851173396458 ], [ -94.785160843733365, 29.549199173221826 ], [ -94.788086844812341, 29.548970173258525 ], [ -94.790717845549139, 29.548739173361565 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1495, "Tract": "48071710300", "Area_SqMi": 92.13130578660386, "total_2009": 210, "total_2010": 188, "total_2011": 199, "total_2012": 241, "total_2013": 226, "total_2014": 297, "total_2015": 284, "total_2016": 374, "total_2017": 456, "total_2018": 433, "total_2019": 383, "total_2020": 344, "age1": 55, "age2": 157, "age3": 66, "earn1": 54, "earn2": 85, "earn3": 139, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 7, "naics_s06": 0, "naics_s07": 76, "naics_s08": 46, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 14, "naics_s13": 0, "naics_s14": 59, "naics_s15": 0, "naics_s16": 0, "naics_s17": 8, "naics_s18": 31, "naics_s19": 4, "naics_s20": 1, "race1": 223, "race2": 33, "race3": 0, "race4": 19, "race5": 0, "race6": 3, "ethnicity1": 217, "ethnicity2": 61, "edu1": 50, "edu2": 63, "edu3": 67, "edu4": 43, "Shape_Length": 237573.16671594957, "Shape_Area": 2568463121.0247416, "total_2021": 337, "total_2022": 278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.763362851037783, 29.837260233194218 ], [ -94.763626851144892, 29.83533723323761 ], [ -94.762593850860611, 29.833320232540611 ], [ -94.760628850299682, 29.831287232551929 ], [ -94.757976848791344, 29.829959232418339 ], [ -94.756379849031276, 29.829951232254743 ], [ -94.755124848482311, 29.830461232643383 ], [ -94.754921848614501, 29.830879232527646 ], [ -94.754417848088323, 29.831920232566521 ], [ -94.753442847788477, 29.833210232523371 ], [ -94.751838848059691, 29.834739233200761 ], [ -94.750952847454329, 29.835418233885999 ], [ -94.750009847715631, 29.835597233942547 ], [ -94.748572846713955, 29.835717233493934 ], [ -94.746850846909751, 29.835560234002596 ], [ -94.744999846235601, 29.834585233952552 ], [ -94.742164844671962, 29.832423233542183 ], [ -94.740590844417511, 29.830225232532026 ], [ -94.740116844198781, 29.828052231958402 ], [ -94.740581843972038, 29.825767231599507 ], [ -94.740672843872758, 29.824387231957694 ], [ -94.740587844207326, 29.823488231526298 ], [ -94.739392843894777, 29.820976230703174 ], [ -94.737161843599623, 29.81807823079696 ], [ -94.733476842435323, 29.814428229719567 ], [ -94.731638841475785, 29.812893229181437 ], [ -94.730743841345046, 29.812320229372926 ], [ -94.730108840974097, 29.81191422916439 ], [ -94.728145840275872, 29.811126228811791 ], [ -94.726889840427702, 29.810537228824348 ], [ -94.725903840354974, 29.809534229431105 ], [ -94.725558840073631, 29.808031228396842 ], [ -94.725884840089321, 29.806294228108243 ], [ -94.726140839464591, 29.805457227853662 ], [ -94.726502839869141, 29.804404227923108 ], [ -94.726660839576169, 29.803643228096774 ], [ -94.726334839259067, 29.802140227039207 ], [ -94.726260840157792, 29.802051227212786 ], [ -94.726186839626337, 29.801963227622082 ], [ -94.726057839800461, 29.801605227246245 ], [ -94.724965839750524, 29.800401226818188 ], [ -94.724042839043321, 29.799572227139677 ], [ -94.722006838439782, 29.798047227208023 ], [ -94.720835838407112, 29.797170226309014 ], [ -94.719632837464601, 29.796317226811031 ], [ -94.717580836693486, 29.794862226139159 ], [ -94.715389836821288, 29.793504225936577 ], [ -94.711520835167093, 29.791540225940256 ], [ -94.711328835113548, 29.791443225692266 ], [ -94.7106788350724, 29.791026225706798 ], [ -94.707493833740784, 29.788582225253265 ], [ -94.707018834282522, 29.788218225288396 ], [ -94.70626683395146, 29.78664422507676 ], [ -94.706215833231084, 29.783947224359661 ], [ -94.706052833612432, 29.783216224056947 ], [ -94.70575483345732, 29.782461223679082 ], [ -94.70541683291772, 29.782205223758488 ], [ -94.703804832586471, 29.781680224355295 ], [ -94.702425832104552, 29.781059224206846 ], [ -94.701354831766224, 29.779839224014861 ], [ -94.700009832092647, 29.778232223458499 ], [ -94.698813831163378, 29.777003223243526 ], [ -94.69735883075036, 29.776145223446424 ], [ -94.696134830429784, 29.776042223300195 ], [ -94.694584830540038, 29.776014223202449 ], [ -94.693017829486394, 29.77572622315056 ], [ -94.691476829541685, 29.774731222561538 ], [ -94.690698828968578, 29.774229222911842 ], [ -94.689751829045292, 29.773649222770082 ], [ -94.688898828910922, 29.772871223019042 ], [ -94.688325828936584, 29.772136222167365 ], [ -94.688290828432258, 29.77191822237392 ], [ -94.688275828764731, 29.771821222256232 ], [ -94.68826382799368, 29.771935222590258 ], [ -94.688258828988836, 29.771993222825873 ], [ -94.688208828514789, 29.772512222460946 ], [ -94.687336828609816, 29.7725232228441 ], [ -94.68721082802, 29.772511222382853 ], [ -94.686508827969504, 29.772446222765563 ], [ -94.686385828488355, 29.772573223181748 ], [ -94.686396828465277, 29.772769222385897 ], [ -94.686413828271995, 29.773063223264302 ], [ -94.686415828354725, 29.773099222587781 ], [ -94.686422827938699, 29.773205223136628 ], [ -94.686425827668131, 29.773264222950615 ], [ -94.686184828423308, 29.773372223328948 ], [ -94.685825827486497, 29.773409222823311 ], [ -94.685809828314589, 29.773411223024826 ], [ -94.685614828051257, 29.773404223167365 ], [ -94.685470827366075, 29.773398223256002 ], [ -94.685454827666675, 29.773404222991402 ], [ -94.685450828046697, 29.77336422286815 ], [ -94.685428828222484, 29.773296222912659 ], [ -94.685421827645754, 29.773283223176033 ], [ -94.685369827419365, 29.773181223091765 ], [ -94.685260827505843, 29.772941222607596 ], [ -94.685253827756682, 29.772926223089122 ], [ -94.685245827629316, 29.772871222503447 ], [ -94.685234827697741, 29.772819222973116 ], [ -94.685191828234125, 29.772819222395249 ], [ -94.685062828140772, 29.772840222456207 ], [ -94.68502682724575, 29.772846222682247 ], [ -94.68454382729044, 29.772881222641409 ], [ -94.6845228275822, 29.772883223248233 ], [ -94.684371827312347, 29.772901222687498 ], [ -94.684286827016791, 29.772902222784062 ], [ -94.684031827570848, 29.772909223295454 ], [ -94.683947827072529, 29.772911223228849 ], [ -94.683835827613507, 29.772912222814252 ], [ -94.683500827189789, 29.772919222959715 ], [ -94.683389827607982, 29.772922222581528 ], [ -94.683158826821398, 29.772927222816985 ], [ -94.682467827133024, 29.772946222969988 ], [ -94.682237827110285, 29.772953222970035 ], [ -94.682003827017482, 29.772958222981288 ], [ -94.681303827122562, 29.772975222544989 ], [ -94.681070826636955, 29.772981222802951 ], [ -94.680838826769829, 29.772986222959794 ], [ -94.680145826060169, 29.773001222908412 ], [ -94.679914826827996, 29.773007223383388 ], [ -94.679411826031085, 29.773020223163982 ], [ -94.677903826292834, 29.773061223486355 ], [ -94.677401825446012, 29.773075223068478 ], [ -94.676618825733328, 29.773092222875299 ], [ -94.67594082559215, 29.773108223222636 ], [ -94.674271824629514, 29.773169223450893 ], [ -94.674083825121926, 29.773177223206382 ], [ -94.673494824660139, 29.773252223445208 ], [ -94.672902824122801, 29.773371223767022 ], [ -94.672154824729688, 29.773522223244697 ], [ -94.67070782430757, 29.773876223296249 ], [ -94.670561823779835, 29.773913223891171 ], [ -94.670401824226545, 29.773943223653131 ], [ -94.669237824004753, 29.774195223282028 ], [ -94.669206823201975, 29.774201223810749 ], [ -94.668119823315266, 29.774403223649188 ], [ -94.66799282373222, 29.774423223920014 ], [ -94.6679028233862, 29.774437223666311 ], [ -94.667848823549406, 29.774446223529836 ], [ -94.667257823153435, 29.774575223468283 ], [ -94.667043823009905, 29.774622223512747 ], [ -94.666554822843608, 29.774725223986238 ], [ -94.665090822292655, 29.775036224160978 ], [ -94.66460282270917, 29.775140224172883 ], [ -94.664117822784235, 29.775238224371687 ], [ -94.662663821903976, 29.775532224366572 ], [ -94.662179821739272, 29.775631224198463 ], [ -94.662032822251092, 29.775663223980231 ], [ -94.661675821413525, 29.775742224600123 ], [ -94.661593821355211, 29.775761224562903 ], [ -94.661448821632689, 29.775796224525624 ], [ -94.661398822243839, 29.775807223863463 ], [ -94.661282821611906, 29.775836224189828 ], [ -94.661249821225084, 29.775843224427025 ], [ -94.66120082140489, 29.775855223911712 ], [ -94.660866821420598, 29.775925224527814 ], [ -94.66078082119185, 29.775943224121526 ], [ -94.660408821038558, 29.776023224503202 ], [ -94.659887821148445, 29.776141224604398 ], [ -94.659867821841004, 29.776144224349768 ], [ -94.659533821564835, 29.776209224418629 ], [ -94.659509821076455, 29.776213223969794 ], [ -94.659490821305269, 29.776217224794127 ], [ -94.659438821081736, 29.776227224152475 ], [ -94.65941582121819, 29.776232223954498 ], [ -94.659248820861848, 29.776264224705397 ], [ -94.658881821602975, 29.776355224335379 ], [ -94.658532821320676, 29.776430224400414 ], [ -94.656377820972494, 29.776895224902905 ], [ -94.656015820291671, 29.776987224827959 ], [ -94.655883820699714, 29.777028224443381 ], [ -94.655674820281135, 29.777095225113758 ], [ -94.655168819927354, 29.777282224340464 ], [ -94.655035819737748, 29.777341225133277 ], [ -94.6548348204267, 29.777454225073377 ], [ -94.654478819582081, 29.777657225041484 ], [ -94.654243819760126, 29.777811225040434 ], [ -94.654217819653127, 29.777829225222 ], [ -94.654049819875866, 29.77793622491766 ], [ -94.653626819713779, 29.778208225062517 ], [ -94.652419819224434, 29.779018225582757 ], [ -94.652032819017478, 29.77927722495933 ], [ -94.648605818520267, 29.78157722599563 ], [ -94.64621881864187, 29.783210226240818 ], [ -94.646013817992937, 29.783346226248113 ], [ -94.643999818103339, 29.784691226350464 ], [ -94.643751817832651, 29.784859226314303 ], [ -94.643373817232217, 29.785115226824502 ], [ -94.642204817404362, 29.785908227125972 ], [ -94.641933816882386, 29.786062226581397 ], [ -94.641598817582178, 29.786272227287032 ], [ -94.6414778168308, 29.786359227216945 ], [ -94.641230817411611, 29.786540227431523 ], [ -94.640860816547473, 29.786795227272219 ], [ -94.640802816619498, 29.786829227201274 ], [ -94.640628816352319, 29.786935227364911 ], [ -94.640542816470528, 29.7869882269496 ], [ -94.640105816356495, 29.787257227085068 ], [ -94.639891816551682, 29.787378226896589 ], [ -94.639194816425174, 29.787738227525008 ], [ -94.639049816864443, 29.787801227579845 ], [ -94.638863816213117, 29.78786222780759 ], [ -94.638488815939851, 29.787971227242281 ], [ -94.638274816315487, 29.788026227860534 ], [ -94.638058816367945, 29.788073227866189 ], [ -94.637750815951264, 29.788127227454094 ], [ -94.637595816615729, 29.788147227149661 ], [ -94.637481816494372, 29.788156227441927 ], [ -94.637410816426296, 29.788163227294483 ], [ -94.636381816094612, 29.788208227254206 ], [ -94.635602815654309, 29.788249227820518 ], [ -94.634669814960532, 29.788277227288503 ], [ -94.633654814652019, 29.788322228153863 ], [ -94.632759814689393, 29.788344227839289 ], [ -94.632663814409923, 29.788348227383629 ], [ -94.63140381461379, 29.788399228291745 ], [ -94.630210814178923, 29.788439227606798 ], [ -94.629541813790283, 29.788462227768367 ], [ -94.628374814112007, 29.788516227771876 ], [ -94.626437812907696, 29.788588228331747 ], [ -94.625367812809799, 29.788623227981827 ], [ -94.625190812790123, 29.788629227796424 ], [ -94.622756812171914, 29.788723228566255 ], [ -94.622528812413776, 29.788732228661413 ], [ -94.622147812205156, 29.788749227906024 ], [ -94.619652811056014, 29.78883922871006 ], [ -94.616986811143093, 29.788936228031478 ], [ -94.614647810050528, 29.789039228273253 ], [ -94.613180809795622, 29.789085228510906 ], [ -94.61300680984499, 29.789090228868261 ], [ -94.610340809565685, 29.789137228766041 ], [ -94.608270808550486, 29.789175228462319 ], [ -94.607235808321875, 29.789183228534696 ], [ -94.60642480817917, 29.78919522843934 ], [ -94.603991807734943, 29.789232228922376 ], [ -94.603347807334131, 29.789243229074483 ], [ -94.6032958070559, 29.789243228580506 ], [ -94.603254807246515, 29.789245228568241 ], [ -94.603213807758493, 29.789245228714286 ], [ -94.603181807583226, 29.78924622923811 ], [ -94.603103807478959, 29.789247229226117 ], [ -94.603025807373143, 29.789248229168706 ], [ -94.602593807412163, 29.789256228965435 ], [ -94.602322807054961, 29.789259228870616 ], [ -94.599902806671224, 29.789291228772438 ], [ -94.599747806348176, 29.789294229203694 ], [ -94.598889805757366, 29.789313229297679 ], [ -94.598396805939672, 29.789320228929036 ], [ -94.59691880572322, 29.789342229397491 ], [ -94.596426805501409, 29.789350228826645 ], [ -94.596284805153473, 29.789352229512115 ], [ -94.595861805883871, 29.789358229097406 ], [ -94.595721805564082, 29.789361229379335 ], [ -94.595246805094604, 29.789365229119092 ], [ -94.594069805111232, 29.789378229355187 ], [ -94.593821804555319, 29.789379228957628 ], [ -94.593347804285131, 29.78938222920522 ], [ -94.592990804874105, 29.789386229529761 ], [ -94.591922803874539, 29.789398229494338 ], [ -94.591566804331293, 29.789403229499708 ], [ -94.590911804256294, 29.789414229798659 ], [ -94.588945803954076, 29.789449229919285 ], [ -94.588291803892744, 29.789461229963294 ], [ -94.588101803488883, 29.789461229225594 ], [ -94.587532803615645, 29.789464229700997 ], [ -94.587343803222936, 29.789465229591169 ], [ -94.586344802476972, 29.789475229889103 ], [ -94.58567380316974, 29.789481229281925 ], [ -94.580665801964827, 29.789533229773163 ], [ -94.578996801438265, 29.78955122974671 ], [ -94.577863800350173, 29.789567229505781 ], [ -94.57589279986027, 29.789596229636203 ], [ -94.574467799409717, 29.789616230304404 ], [ -94.574327800270638, 29.789619229987302 ], [ -94.574215799338447, 29.789622229622815 ], [ -94.573336800009585, 29.789646229883491 ], [ -94.571473798942577, 29.789683230574958 ], [ -94.565885797468795, 29.789794229920979 ], [ -94.564023796735327, 29.789832230275628 ], [ -94.563182797344695, 29.789849230156996 ], [ -94.560661796787073, 29.789902230839058 ], [ -94.55982179621958, 29.789920230507938 ], [ -94.558725795612077, 29.789943230181013 ], [ -94.556451795750576, 29.789992230669306 ], [ -94.555612795214884, 29.790004230342404 ], [ -94.555439795015246, 29.79000723095206 ], [ -94.554391794736034, 29.790031231006967 ], [ -94.554344794720862, 29.790032230631443 ], [ -94.553640794871811, 29.790048230420172 ], [ -94.553193794483619, 29.790056230890581 ], [ -94.549743793572645, 29.790124230825338 ], [ -94.548593792705972, 29.790147230783255 ], [ -94.547335793163384, 29.79016923112464 ], [ -94.54356079142633, 29.790235231008126 ], [ -94.54230379146027, 29.790258231381582 ], [ -94.541961791284407, 29.790266230815856 ], [ -94.54093679132437, 29.790293231274447 ], [ -94.540595791444517, 29.790302231111077 ], [ -94.540109791305809, 29.790310231059856 ], [ -94.538652790360743, 29.790336230933367 ], [ -94.538167790247059, 29.790345231352923 ], [ -94.535281790023362, 29.790404231188926 ], [ -94.533787789286038, 29.790436231874423 ], [ -94.526626787757735, 29.790584231679979 ], [ -94.523839786894243, 29.790643232158498 ], [ -94.523742787042039, 29.790645231701095 ], [ -94.523140787157232, 29.790652231813212 ], [ -94.522374786862684, 29.790661232012791 ], [ -94.518443785922784, 29.790712232339292 ], [ -94.517134785252054, 29.790729232193353 ], [ -94.516793785217473, 29.790732232415284 ], [ -94.515772784649499, 29.790741232488809 ], [ -94.515547785001885, 29.790743232675037 ], [ -94.515432784851669, 29.790745232422186 ], [ -94.515012784565599, 29.791169231995724 ], [ -94.514013784398756, 29.791581232258558 ], [ -94.513146784628489, 29.792245232867206 ], [ -94.512882783570859, 29.792612232662499 ], [ -94.512751784095926, 29.792978232747455 ], [ -94.512752783747771, 29.793027232531543 ], [ -94.512776784519076, 29.793781233159205 ], [ -94.513040784311414, 29.794445233499136 ], [ -94.514037784510407, 29.796485233707116 ], [ -94.514088784249168, 29.797310234074782 ], [ -94.513958784571443, 29.797792234157626 ], [ -94.512801784436888, 29.800013233809619 ], [ -94.512037784385413, 29.801617234718158 ], [ -94.511696784553791, 29.802167234724259 ], [ -94.511048784470361, 29.802911234546883 ], [ -94.511038783549466, 29.802923234818675 ], [ -94.510381783476788, 29.803450234870954 ], [ -94.509277783506334, 29.803931235423043 ], [ -94.507884783496365, 29.80434323549386 ], [ -94.507755783577153, 29.804410235466701 ], [ -94.507581783427923, 29.804502235774695 ], [ -94.507322783414764, 29.804638235715942 ], [ -94.507166782816483, 29.804721235737791 ], [ -94.506386783483762, 29.80542523555242 ], [ -94.506209782829501, 29.805585235570053 ], [ -94.506070783308374, 29.805711235519027 ], [ -94.50596178271951, 29.805992235667443 ], [ -94.505784783089496, 29.806278235686843 ], [ -94.505771783074607, 29.806707235985037 ], [ -94.505809782751783, 29.807158235907345 ], [ -94.505802782777309, 29.807466235665458 ], [ -94.505739783033022, 29.80779023577449 ], [ -94.505743783242849, 29.807955235969413 ], [ -94.505745782752115, 29.807999236537931 ], [ -94.505827783381008, 29.808340235914823 ], [ -94.505915783310073, 29.808500236208271 ], [ -94.506054783027153, 29.808670236625957 ], [ -94.506337783024449, 29.809875236929326 ], [ -94.50656478285461, 29.810095236169229 ], [ -94.506848783039445, 29.810403236678475 ], [ -94.506942783827057, 29.810579236823084 ], [ -94.507074783632262, 29.810904236971325 ], [ -94.507194783304726, 29.811300236628654 ], [ -94.507238783779826, 29.811492237225011 ], [ -94.507276783318872, 29.81158623711265 ], [ -94.507301783787639, 29.811723237258491 ], [ -94.50738378396639, 29.8118832365023 ], [ -94.507484783618523, 29.811987237236739 ], [ -94.50765478320217, 29.812218236895067 ], [ -94.507679783405393, 29.812307236883022 ], [ -94.507729783568905, 29.812631236793592 ], [ -94.507761783470059, 29.812719237091983 ], [ -94.507893783518739, 29.812939236975957 ], [ -94.508063783359987, 29.813115236806468 ], [ -94.508246784285149, 29.813247237532867 ], [ -94.508281784274345, 29.813267237293324 ], [ -94.508650783489941, 29.81347823697153 ], [ -94.508707784308967, 29.813555236969339 ], [ -94.508820784007952, 29.813792236984124 ], [ -94.508921784249409, 29.813946237262734 ], [ -94.509047783534285, 29.814073237302495 ], [ -94.50914178381062, 29.814128237366177 ], [ -94.509230783741316, 29.814166237387131 ], [ -94.509368783790478, 29.814216237678686 ], [ -94.509532784378749, 29.814260236989593 ], [ -94.509652784084082, 29.814359237464593 ], [ -94.509709784336209, 29.814463237671411 ], [ -94.509729784543097, 29.814540237367318 ], [ -94.509747784445125, 29.814606237042042 ], [ -94.509791784660223, 29.81483723732331 ], [ -94.509800784291969, 29.814866237822276 ], [ -94.509828784795062, 29.81494723709255 ], [ -94.50989878404809, 29.815030237272186 ], [ -94.510055784432737, 29.815156237761393 ], [ -94.51028278421586, 29.815272237488585 ], [ -94.510472784313208, 29.815388237272511 ], [ -94.510579784411675, 29.815462237604141 ], [ -94.510686784665424, 29.815536237848828 ], [ -94.510711784891541, 29.815564237431701 ], [ -94.510758784432653, 29.815701237488597 ], [ -94.510749784189272, 29.815721237380128 ], [ -94.510769784555734, 29.815736237739507 ], [ -94.510780784861794, 29.815767237323442 ], [ -94.510925784455935, 29.815932237472257 ], [ -94.51097078417466, 29.816037237316145 ], [ -94.510982784584385, 29.816207237477201 ], [ -94.510988784623819, 29.816312237741226 ], [ -94.511064785111657, 29.816477237493338 ], [ -94.511171785181858, 29.816774237382806 ], [ -94.511198784400563, 29.816920238223361 ], [ -94.511203784565382, 29.816944238130208 ], [ -94.511202784792559, 29.817043238151946 ], [ -94.511063785204115, 29.817434238075283 ], [ -94.511057785036016, 29.817742237637805 ], [ -94.511076784795506, 29.818198237722793 ], [ -94.511126785264466, 29.818781238630258 ], [ -94.511101784300237, 29.818935238377691 ], [ -94.511031784998522, 29.819172238259707 ], [ -94.510993785108695, 29.819403238299319 ], [ -94.510987784658553, 29.819694238232024 ], [ -94.510993784436579, 29.82006823826206 ], [ -94.510942784399404, 29.820239238038194 ], [ -94.510664784546506, 29.820738238670732 ], [ -94.510267784361446, 29.821454238802929 ], [ -94.509888784806819, 29.821773239044514 ], [ -94.509875784649964, 29.822301239035639 ], [ -94.509856784262382, 29.822538239050623 ], [ -94.509806785108623, 29.822884239345385 ], [ -94.509799784358549, 29.823165239541272 ], [ -94.509837784837003, 29.823418239060704 ], [ -94.509861785156588, 29.823498239095066 ], [ -94.510001784415877, 29.823951238976761 ], [ -94.510038784315597, 29.824193239360095 ], [ -94.509931784593206, 29.825216239405901 ], [ -94.509930785018724, 29.826063240003251 ], [ -94.509917784501653, 29.826580239534668 ], [ -94.509778784464643, 29.828373240464114 ], [ -94.509784785076008, 29.828599240689769 ], [ -94.509799784682713, 29.828672240651311 ], [ -94.509853784926861, 29.828923240267514 ], [ -94.510049784763211, 29.829325240283385 ], [ -94.51021278496107, 29.829583240679906 ], [ -94.510559784703688, 29.830018240650336 ], [ -94.510610785209792, 29.83018224088244 ], [ -94.510635785331701, 29.830265240879882 ], [ -94.510698785424012, 29.830480241080977 ], [ -94.51073678493583, 29.830557240619232 ], [ -94.510792785699266, 29.830717240484436 ], [ -94.510950785472275, 29.830909240745932 ], [ -94.511353785653228, 29.831234240396789 ], [ -94.511644785342824, 29.831415240692856 ], [ -94.512116785255003, 29.831691240886226 ], [ -94.512174785455088, 29.831732240879862 ], [ -94.5122247857296, 29.831768241079292 ], [ -94.512293785242335, 29.831823240848092 ], [ -94.5124077861785, 29.83193824069992 ], [ -94.51246378522643, 29.832015240818553 ], [ -94.512499785745476, 29.832179240925157 ], [ -94.512515785535015, 29.83225324088037 ], [ -94.512548785999925, 29.832402241260095 ], [ -94.512565786163549, 29.832478241152096 ], [ -94.512582785871643, 29.832553240636212 ], [ -94.515088786405926, 29.832740240977653 ], [ -94.515586786995613, 29.832778241282917 ], [ -94.520468787469767, 29.833145241012321 ], [ -94.522609788389389, 29.833301240862706 ], [ -94.52402078833039, 29.833404240556394 ], [ -94.52422178919791, 29.833419240992736 ], [ -94.52431478936748, 29.833426240622135 ], [ -94.525117788763723, 29.833484240609067 ], [ -94.525416788779935, 29.833506240769818 ], [ -94.527317789538557, 29.833665240342231 ], [ -94.528461789901158, 29.833761240278065 ], [ -94.533920791814396, 29.834164240948262 ], [ -94.534947791780127, 29.834240241028741 ], [ -94.536122791693174, 29.834327240752437 ], [ -94.536837791678877, 29.834385240435264 ], [ -94.538983792705309, 29.83455924072792 ], [ -94.539699793276483, 29.834618240656454 ], [ -94.539882792531827, 29.834633240670506 ], [ -94.540433793326144, 29.834678240821887 ], [ -94.540617793115842, 29.834693240602267 ], [ -94.540616793439852, 29.834730240304133 ], [ -94.540616793100796, 29.834842240208147 ], [ -94.540616793504867, 29.834880240143516 ], [ -94.540557792722396, 29.83532024078222 ], [ -94.540509792649786, 29.835684240857422 ], [ -94.540491792789169, 29.835946240445285 ], [ -94.54048479269332, 29.836271240538228 ], [ -94.540499792747838, 29.836579240922987 ], [ -94.540530793631447, 29.836840241092741 ], [ -94.5405597928454, 29.836975240854791 ], [ -94.540659793228514, 29.837287241067202 ], [ -94.540898793396465, 29.83812224082866 ], [ -94.540937793178571, 29.838281240782763 ], [ -94.54098979355669, 29.838594240850455 ], [ -94.541026793558814, 29.838947241009969 ], [ -94.541039793638816, 29.839364241738515 ], [ -94.541058793496333, 29.842034242002313 ], [ -94.541066793541617, 29.842690242556671 ], [ -94.541085793801699, 29.844032242325714 ], [ -94.541084793355836, 29.844225242632508 ], [ -94.541093793702487, 29.844549242706854 ], [ -94.541092793431417, 29.84466124241262 ], [ -94.541089793600889, 29.844989242152575 ], [ -94.541135793792094, 29.847527242911923 ], [ -94.541210793844797, 29.851662244136403 ], [ -94.541212793631004, 29.851776243876824 ], [ -94.541278793825825, 29.855813245076657 ], [ -94.541281794156916, 29.856126245300278 ], [ -94.541299794272675, 29.857936245091725 ], [ -94.541319794812779, 29.858993245461516 ], [ -94.538134793866675, 29.859027245363833 ], [ -94.533283792473469, 29.859081245615293 ], [ -94.528580791355694, 29.859131245790142 ], [ -94.525708790655841, 29.859163245930276 ], [ -94.525396790719242, 29.859168246229338 ], [ -94.525241790518052, 29.859170245872651 ], [ -94.524935790553201, 29.859176246145161 ], [ -94.524777789983901, 29.859172245804547 ], [ -94.524623789915964, 29.859170245908668 ], [ -94.524590790295917, 29.859169245770818 ], [ -94.524491789929456, 29.859167246536977 ], [ -94.52445979051295, 29.859167245813349 ], [ -94.524457789508148, 29.85926024649585 ], [ -94.524477790370213, 29.859806246094728 ], [ -94.524519790463401, 29.862587246387847 ], [ -94.524533790289823, 29.862776247211919 ], [ -94.524573790277557, 29.863283247073671 ], [ -94.524593790521251, 29.863377247275672 ], [ -94.524616789849773, 29.863552246971018 ], [ -94.524652789934635, 29.864257246884641 ], [ -94.524699790851756, 29.866567247554485 ], [ -94.524744790859216, 29.869557248035598 ], [ -94.524747790444067, 29.870586248302502 ], [ -94.524773791008982, 29.871231248979324 ], [ -94.524817791288172, 29.873236248563252 ], [ -94.524812791213535, 29.873401248643365 ], [ -94.524796790399165, 29.873511249478678 ], [ -94.524759790327835, 29.873592249438147 ], [ -94.524732790659613, 29.873655248639302 ], [ -94.524636790977198, 29.873764248674217 ], [ -94.524531790538731, 29.873851248922051 ], [ -94.524281791120856, 29.874092249396316 ], [ -94.523081790058825, 29.875216249607195 ], [ -94.522439789862503, 29.875784249553458 ], [ -94.522301790646139, 29.875917249777149 ], [ -94.522243790134098, 29.875989249802334 ], [ -94.522226790246236, 29.876053249570191 ], [ -94.522268790592463, 29.876099249481811 ], [ -94.522315790522825, 29.876150249301975 ], [ -94.522346789889397, 29.876184249460582 ], [ -94.522926790034219, 29.876724250172447 ], [ -94.524891791093623, 29.87855325011337 ], [ -94.524922790989351, 29.87858225047593 ], [ -94.525418790704379, 29.879044249979394 ], [ -94.525590791574515, 29.879200249808491 ], [ -94.526050791643002, 29.87961525004614 ], [ -94.526166790968787, 29.879720250216678 ], [ -94.52698979186944, 29.88050625035779 ], [ -94.527274791818158, 29.880761250419077 ], [ -94.52741879144115, 29.880874250622952 ], [ -94.527646791959654, 29.881054250132628 ], [ -94.527923792232528, 29.881203250826694 ], [ -94.527937791990723, 29.881209250293715 ], [ -94.528043791635127, 29.881256250575952 ], [ -94.528135791521734, 29.8813082508577 ], [ -94.528331792387988, 29.881449250486291 ], [ -94.528411791732438, 29.881521250603498 ], [ -94.52849279229909, 29.88161425023042 ], [ -94.528826792555691, 29.882044250621089 ], [ -94.529150792529435, 29.882485251201437 ], [ -94.531373792524477, 29.885357251273831 ], [ -94.531814793295993, 29.885942251560753 ], [ -94.531925793577642, 29.886075251422056 ], [ -94.532231793522115, 29.886480251611555 ], [ -94.532427793388166, 29.886726251159082 ], [ -94.532559793568467, 29.886893251636025 ], [ -94.533404793177084, 29.887979251650183 ], [ -94.533517793613527, 29.888142251637831 ], [ -94.533711793482368, 29.888392251547589 ], [ -94.533729793463166, 29.888415251581229 ], [ -94.534364794036918, 29.889236251715285 ], [ -94.534541793751231, 29.889465251777697 ], [ -94.534575793716684, 29.889511251815563 ], [ -94.536863794652703, 29.889483251965508 ], [ -94.541551796074003, 29.889427251757706 ], [ -94.543484796824643, 29.889404251515632 ], [ -94.543771796787411, 29.889400251821446 ], [ -94.544569796214915, 29.889389251636516 ], [ -94.546074796672571, 29.889369251904125 ], [ -94.546309796697713, 29.889365251973452 ], [ -94.547017796767747, 29.889355251606549 ], [ -94.547254797012783, 29.889353251229441 ], [ -94.547853797227987, 29.889344251916647 ], [ -94.548752797364173, 29.889332251520969 ], [ -94.553247798859559, 29.889274251249446 ], [ -94.554746799588301, 29.889256251451492 ], [ -94.554956799547853, 29.889248251616106 ], [ -94.556791799706303, 29.889223250862013 ], [ -94.561975800609545, 29.889155250667276 ], [ -94.5629328017734, 29.889143251381913 ], [ -94.564978801519374, 29.88911925093079 ], [ -94.565056801738024, 29.889116250950117 ], [ -94.565464801767675, 29.88911125120627 ], [ -94.566919802107506, 29.889092250636018 ], [ -94.567405802797367, 29.889089251086226 ], [ -94.567543802661191, 29.889083251185887 ], [ -94.568354802303105, 29.889072250381641 ], [ -94.571204803508635, 29.88904025067464 ], [ -94.572155803823975, 29.889030251013057 ], [ -94.5723368036831, 29.889028250331251 ], [ -94.573252803767332, 29.889016250758793 ], [ -94.573939804376565, 29.889008250509761 ], [ -94.574298804134685, 29.889004250756347 ], [ -94.574656804008015, 29.889000250464203 ], [ -94.576546805324739, 29.888976250793558 ], [ -94.577644805562187, 29.888963250721439 ], [ -94.579615805829533, 29.888938250450551 ], [ -94.582536806205042, 29.888903250602091 ], [ -94.5855318074737, 29.888870250461895 ], [ -94.587490807990932, 29.888849250370612 ], [ -94.58750480771792, 29.88884925040951 ], [ -94.589440807992091, 29.888828249911487 ], [ -94.59525180996107, 29.88876624941858 ], [ -94.597188810593607, 29.888746249899516 ], [ -94.597221809812339, 29.888745250095511 ], [ -94.598087810745639, 29.88873624962979 ], [ -94.600785811464391, 29.888706250040645 ], [ -94.601526811357559, 29.888699249354197 ], [ -94.601600811658116, 29.888698249391314 ], [ -94.601685811068222, 29.88869724978203 ], [ -94.601744810849709, 29.888696249965911 ], [ -94.601923811252078, 29.8886942494984 ], [ -94.601983811207035, 29.888694249304546 ], [ -94.602238811822815, 29.888689249886617 ], [ -94.603008811282294, 29.888682249144402 ], [ -94.603266811573036, 29.888681249953901 ], [ -94.603306811519687, 29.888680249687603 ], [ -94.603734811479356, 29.888674249880442 ], [ -94.605143812421034, 29.888658249237942 ], [ -94.605614812380892, 29.888654249832946 ], [ -94.605745812716506, 29.888658249391177 ], [ -94.605863812218516, 29.888662249109469 ], [ -94.606075812462564, 29.888624249154102 ], [ -94.608395812558953, 29.888614249693319 ], [ -94.611105813878197, 29.888604249275115 ], [ -94.612175813779999, 29.888607248956092 ], [ -94.612388813664367, 29.888608248878935 ], [ -94.612880814069101, 29.888610249296178 ], [ -94.613101814112113, 29.888610249364465 ], [ -94.614916814442779, 29.888618249167443 ], [ -94.621998816081486, 29.888489248500907 ], [ -94.625219816915191, 29.888579248910531 ], [ -94.63395481919315, 29.888458248058701 ], [ -94.634970819531389, 29.888444248516681 ], [ -94.638018820760038, 29.888403248372683 ], [ -94.638251820442107, 29.888400248642228 ], [ -94.638402821034035, 29.888397248546195 ], [ -94.639034820786392, 29.888389247884572 ], [ -94.639091820736894, 29.888388247911781 ], [ -94.642178821295659, 29.88834524774979 ], [ -94.650658824215441, 29.888227247682632 ], [ -94.651610824074254, 29.888217247890196 ], [ -94.654755824998787, 29.888184247683888 ], [ -94.654823825342319, 29.888183247959759 ], [ -94.655793824959801, 29.888172247788646 ], [ -94.657788825617317, 29.888148247411362 ], [ -94.658910825938875, 29.888136247442905 ], [ -94.65994982634777, 29.888125247231194 ], [ -94.660168826817099, 29.888123247140122 ], [ -94.662560826577888, 29.888100247513687 ], [ -94.663297827699452, 29.88809424746492 ], [ -94.670395829105701, 29.888023247051766 ], [ -94.67295182978684, 29.887998247432577 ], [ -94.673007829835967, 29.88799724686492 ], [ -94.673279829475376, 29.887994247186011 ], [ -94.673558829736734, 29.887992247346862 ], [ -94.674098829677206, 29.88798424651236 ], [ -94.67437282978446, 29.887980246516232 ], [ -94.675418830637042, 29.887965247286235 ], [ -94.678559830967785, 29.887922246484909 ], [ -94.679607831017066, 29.887909247179497 ], [ -94.680616831227098, 29.887895246702843 ], [ -94.68364383247409, 29.887854246191147 ], [ -94.68465383222383, 29.887841246972748 ], [ -94.684683833127664, 29.887840246617241 ], [ -94.684783832913126, 29.887839246316876 ], [ -94.685308832565468, 29.887833246692662 ], [ -94.68593983328708, 29.887823246316941 ], [ -94.686271833577962, 29.887817246678871 ], [ -94.691125834613686, 29.887741246727412 ], [ -94.69274483433378, 29.887716246294399 ], [ -94.693348834738941, 29.88770624611794 ], [ -94.695163835375268, 29.887678245826258 ], [ -94.695768835871519, 29.887669246413409 ], [ -94.695843835174131, 29.887668246457416 ], [ -94.69594483596164, 29.887666246181787 ], [ -94.696336835797069, 29.88766024626948 ], [ -94.696625836290309, 29.887656246066747 ], [ -94.696818835985709, 29.887654245933319 ], [ -94.696926836213791, 29.887652246449022 ], [ -94.69702983572229, 29.887651245682108 ], [ -94.697053835738814, 29.887651246305115 ], [ -94.698043835971092, 29.887638246148473 ], [ -94.698612836694721, 29.887632245937883 ], [ -94.700072837156526, 29.887614245985393 ], [ -94.702078837200347, 29.88759124596389 ], [ -94.704454838152699, 29.88756324568028 ], [ -94.705543837899995, 29.887551245848151 ], [ -94.705764837849102, 29.88754924536272 ], [ -94.705838837968557, 29.887548245760648 ], [ -94.705915838492515, 29.887547245558977 ], [ -94.706062837924222, 29.887545245711856 ], [ -94.706350838066072, 29.88754124583647 ], [ -94.70643783876632, 29.887541246118445 ], [ -94.706501837966883, 29.887540245659018 ], [ -94.706842838912465, 29.887536245544762 ], [ -94.707254838446346, 29.887531245637 ], [ -94.707324838367569, 29.887530245410602 ], [ -94.70746083836049, 29.887529245368118 ], [ -94.707597838824114, 29.887527245293533 ], [ -94.707656839028019, 29.887526245933579 ], [ -94.707734838575249, 29.88752624536459 ], [ -94.707836838701709, 29.887525245864282 ], [ -94.707939838629002, 29.887524245773538 ], [ -94.708092838646408, 29.887522246100922 ], [ -94.709399839224005, 29.887507245886066 ], [ -94.709854839122741, 29.887502245549495 ], [ -94.713321840546939, 29.887465245141378 ], [ -94.713803840106507, 29.887461245850385 ], [ -94.714216840385006, 29.887457245135355 ], [ -94.714629840517318, 29.88745324585414 ], [ -94.714741840176387, 29.887452245461571 ], [ -94.715015840397058, 29.887449245051855 ], [ -94.715288840761588, 29.88744624555201 ], [ -94.715333840737685, 29.887445245255304 ], [ -94.715687840891221, 29.887435245124848 ], [ -94.715761840418878, 29.887441245789443 ], [ -94.717446841393951, 29.887423245731288 ], [ -94.717824840840635, 29.887420245378866 ], [ -94.718143840946595, 29.887417244967448 ], [ -94.718403841717048, 29.887414244917757 ], [ -94.719160841555265, 29.887407245022725 ], [ -94.719413842107414, 29.887405245641386 ], [ -94.719950841445325, 29.887392244942472 ], [ -94.721560841797128, 29.887354245411323 ], [ -94.722098842552541, 29.887342244903877 ], [ -94.723476843220567, 29.887336244849664 ], [ -94.726964843729093, 29.887321245209154 ], [ -94.727613844121151, 29.887318245403662 ], [ -94.728288843635056, 29.887315245184581 ], [ -94.728992844661136, 29.887312244953993 ], [ -94.729375843949498, 29.887309244882232 ], [ -94.730524844140959, 29.887303244507514 ], [ -94.730645844508331, 29.887303244964549 ], [ -94.730909844389785, 29.887303245061283 ], [ -94.731178844516293, 29.887300244859418 ], [ -94.731250844669944, 29.887300244657354 ], [ -94.731593844979457, 29.88729824503211 ], [ -94.731927844796445, 29.887297244664026 ], [ -94.731990844900707, 29.887297244813968 ], [ -94.732262844900106, 29.887297244892434 ], [ -94.732477844908331, 29.887296244606052 ], [ -94.733108844861491, 29.887293245077164 ], [ -94.733125845117058, 29.887293245021212 ], [ -94.733249845757541, 29.887293244668111 ], [ -94.733320845033376, 29.887293244925758 ], [ -94.733341845412198, 29.887293244771964 ], [ -94.733421845731797, 29.887293245066299 ], [ -94.735128845925402, 29.887286244963001 ], [ -94.738424846253622, 29.887230244698678 ], [ -94.738509847065814, 29.88722824493394 ], [ -94.738863846296809, 29.887222244518778 ], [ -94.739462846964884, 29.885509244491516 ], [ -94.73974584673023, 29.884599243662933 ], [ -94.74001384726327, 29.883862243710215 ], [ -94.740538846505459, 29.882678243186028 ], [ -94.742990847907777, 29.879990243213285 ], [ -94.743334847584109, 29.879443242629648 ], [ -94.744243847612651, 29.878005242926395 ], [ -94.744483847446105, 29.877166242287711 ], [ -94.74461884751787, 29.876045242539206 ], [ -94.744288847552426, 29.875004242317182 ], [ -94.743816846931892, 29.873382241836389 ], [ -94.743228847000424, 29.869912240541332 ], [ -94.742911846829998, 29.866218240255858 ], [ -94.743360846768468, 29.864333239363916 ], [ -94.744499847452261, 29.86189923933669 ], [ -94.745581847431097, 29.85948623875607 ], [ -94.747193847429585, 29.857225238308772 ], [ -94.748657847796807, 29.855047237529085 ], [ -94.748929847938754, 29.854071237742414 ], [ -94.749110847968865, 29.853422237078018 ], [ -94.748906847815164, 29.852205237460968 ], [ -94.748261847248102, 29.850734237003511 ], [ -94.748157847209797, 29.850016236355664 ], [ -94.748249847440178, 29.84809623621712 ], [ -94.748530847918659, 29.847092236095357 ], [ -94.749273847872004, 29.846303236131071 ], [ -94.750010847989941, 29.8458932355645 ], [ -94.751720848530752, 29.845125235064828 ], [ -94.753026848429172, 29.844671235653706 ], [ -94.753804848949599, 29.844401235663167 ], [ -94.755488848858249, 29.843654234664399 ], [ -94.756345849196933, 29.843236235230592 ], [ -94.759314850058502, 29.84177523446505 ], [ -94.761550850328561, 29.840016234045518 ], [ -94.761940850214202, 29.839710233635138 ], [ -94.763185850485627, 29.837626233506263 ], [ -94.763313850944101, 29.837410233173074 ], [ -94.76335085069114, 29.837349233391222 ], [ -94.763362851037783, 29.837260233194218 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1496, "Tract": "48071710401", "Area_SqMi": 147.90142513365524, "total_2009": 632, "total_2010": 1189, "total_2011": 1241, "total_2012": 1115, "total_2013": 1144, "total_2014": 1321, "total_2015": 1586, "total_2016": 1806, "total_2017": 1643, "total_2018": 1949, "total_2019": 2137, "total_2020": 2082, "age1": 565, "age2": 1119, "age3": 530, "earn1": 436, "earn2": 707, "earn3": 1071, "naics_s01": 36, "naics_s02": 43, "naics_s03": 8, "naics_s04": 525, "naics_s05": 7, "naics_s06": 36, "naics_s07": 235, "naics_s08": 123, "naics_s09": 7, "naics_s10": 40, "naics_s11": 7, "naics_s12": 50, "naics_s13": 0, "naics_s14": 10, "naics_s15": 247, "naics_s16": 443, "naics_s17": 2, "naics_s18": 297, "naics_s19": 26, "naics_s20": 72, "race1": 1861, "race2": 230, "race3": 19, "race4": 71, "race5": 2, "race6": 31, "ethnicity1": 1694, "ethnicity2": 520, "edu1": 333, "edu2": 474, "edu3": 501, "edu4": 341, "Shape_Length": 379339.1422663788, "Shape_Area": 4123238596.9073153, "total_2021": 2132, "total_2022": 2214 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.541319794812779, 29.858993245461516 ], [ -94.541299794272675, 29.857936245091725 ], [ -94.541281794156916, 29.856126245300278 ], [ -94.541278793825825, 29.855813245076657 ], [ -94.541212793631004, 29.851776243876824 ], [ -94.541210793844797, 29.851662244136403 ], [ -94.541135793792094, 29.847527242911923 ], [ -94.541089793600889, 29.844989242152575 ], [ -94.541092793431417, 29.84466124241262 ], [ -94.541093793702487, 29.844549242706854 ], [ -94.541084793355836, 29.844225242632508 ], [ -94.541085793801699, 29.844032242325714 ], [ -94.541066793541617, 29.842690242556671 ], [ -94.541058793496333, 29.842034242002313 ], [ -94.541039793638816, 29.839364241738515 ], [ -94.541026793558814, 29.838947241009969 ], [ -94.54098979355669, 29.838594240850455 ], [ -94.540937793178571, 29.838281240782763 ], [ -94.540898793396465, 29.83812224082866 ], [ -94.540659793228514, 29.837287241067202 ], [ -94.5405597928454, 29.836975240854791 ], [ -94.540530793631447, 29.836840241092741 ], [ -94.540499792747838, 29.836579240922987 ], [ -94.54048479269332, 29.836271240538228 ], [ -94.540491792789169, 29.835946240445285 ], [ -94.540509792649786, 29.835684240857422 ], [ -94.540557792722396, 29.83532024078222 ], [ -94.540616793504867, 29.834880240143516 ], [ -94.540616793100796, 29.834842240208147 ], [ -94.540616793439852, 29.834730240304133 ], [ -94.540617793115842, 29.834693240602267 ], [ -94.540433793326144, 29.834678240821887 ], [ -94.539882792531827, 29.834633240670506 ], [ -94.539699793276483, 29.834618240656454 ], [ -94.538983792705309, 29.83455924072792 ], [ -94.536837791678877, 29.834385240435264 ], [ -94.536122791693174, 29.834327240752437 ], [ -94.534947791780127, 29.834240241028741 ], [ -94.533920791814396, 29.834164240948262 ], [ -94.528461789901158, 29.833761240278065 ], [ -94.527317789538557, 29.833665240342231 ], [ -94.525416788779935, 29.833506240769818 ], [ -94.525117788763723, 29.833484240609067 ], [ -94.52431478936748, 29.833426240622135 ], [ -94.52422178919791, 29.833419240992736 ], [ -94.52402078833039, 29.833404240556394 ], [ -94.522609788389389, 29.833301240862706 ], [ -94.520468787469767, 29.833145241012321 ], [ -94.515586786995613, 29.832778241282917 ], [ -94.515088786405926, 29.832740240977653 ], [ -94.512582785871643, 29.832553240636212 ], [ -94.512565786163549, 29.832478241152096 ], [ -94.512548785999925, 29.832402241260095 ], [ -94.512515785535015, 29.83225324088037 ], [ -94.512499785745476, 29.832179240925157 ], [ -94.51246378522643, 29.832015240818553 ], [ -94.5124077861785, 29.83193824069992 ], [ -94.512293785242335, 29.831823240848092 ], [ -94.5122247857296, 29.831768241079292 ], [ -94.512174785455088, 29.831732240879862 ], [ -94.512116785255003, 29.831691240886226 ], [ -94.511644785342824, 29.831415240692856 ], [ -94.511353785653228, 29.831234240396789 ], [ -94.510950785472275, 29.830909240745932 ], [ -94.510792785699266, 29.830717240484436 ], [ -94.51073678493583, 29.830557240619232 ], [ -94.510698785424012, 29.830480241080977 ], [ -94.510635785331701, 29.830265240879882 ], [ -94.510610785209792, 29.83018224088244 ], [ -94.510559784703688, 29.830018240650336 ], [ -94.51021278496107, 29.829583240679906 ], [ -94.510049784763211, 29.829325240283385 ], [ -94.509853784926861, 29.828923240267514 ], [ -94.509799784682713, 29.828672240651311 ], [ -94.509784785076008, 29.828599240689769 ], [ -94.509778784464643, 29.828373240464114 ], [ -94.509917784501653, 29.826580239534668 ], [ -94.509930785018724, 29.826063240003251 ], [ -94.509931784593206, 29.825216239405901 ], [ -94.510038784315597, 29.824193239360095 ], [ -94.510001784415877, 29.823951238976761 ], [ -94.509861785156588, 29.823498239095066 ], [ -94.509837784837003, 29.823418239060704 ], [ -94.509799784358549, 29.823165239541272 ], [ -94.509806785108623, 29.822884239345385 ], [ -94.509856784262382, 29.822538239050623 ], [ -94.509875784649964, 29.822301239035639 ], [ -94.509888784806819, 29.821773239044514 ], [ -94.510267784361446, 29.821454238802929 ], [ -94.510664784546506, 29.820738238670732 ], [ -94.510942784399404, 29.820239238038194 ], [ -94.510993784436579, 29.82006823826206 ], [ -94.510987784658553, 29.819694238232024 ], [ -94.510993785108695, 29.819403238299319 ], [ -94.511031784998522, 29.819172238259707 ], [ -94.511101784300237, 29.818935238377691 ], [ -94.511126785264466, 29.818781238630258 ], [ -94.511076784795506, 29.818198237722793 ], [ -94.511057785036016, 29.817742237637805 ], [ -94.511063785204115, 29.817434238075283 ], [ -94.511202784792559, 29.817043238151946 ], [ -94.511203784565382, 29.816944238130208 ], [ -94.511198784400563, 29.816920238223361 ], [ -94.511171785181858, 29.816774237382806 ], [ -94.511064785111657, 29.816477237493338 ], [ -94.510988784623819, 29.816312237741226 ], [ -94.510982784584385, 29.816207237477201 ], [ -94.51097078417466, 29.816037237316145 ], [ -94.510925784455935, 29.815932237472257 ], [ -94.510780784861794, 29.815767237323442 ], [ -94.510769784555734, 29.815736237739507 ], [ -94.510749784189272, 29.815721237380128 ], [ -94.510758784432653, 29.815701237488597 ], [ -94.510711784891541, 29.815564237431701 ], [ -94.510686784665424, 29.815536237848828 ], [ -94.510579784411675, 29.815462237604141 ], [ -94.510472784313208, 29.815388237272511 ], [ -94.51028278421586, 29.815272237488585 ], [ -94.510055784432737, 29.815156237761393 ], [ -94.50989878404809, 29.815030237272186 ], [ -94.509828784795062, 29.81494723709255 ], [ -94.509800784291969, 29.814866237822276 ], [ -94.509791784660223, 29.81483723732331 ], [ -94.509747784445125, 29.814606237042042 ], [ -94.509729784543097, 29.814540237367318 ], [ -94.509709784336209, 29.814463237671411 ], [ -94.509652784084082, 29.814359237464593 ], [ -94.509532784378749, 29.814260236989593 ], [ -94.509368783790478, 29.814216237678686 ], [ -94.509230783741316, 29.814166237387131 ], [ -94.50914178381062, 29.814128237366177 ], [ -94.509047783534285, 29.814073237302495 ], [ -94.508921784249409, 29.813946237262734 ], [ -94.508820784007952, 29.813792236984124 ], [ -94.508707784308967, 29.813555236969339 ], [ -94.508650783489941, 29.81347823697153 ], [ -94.508281784274345, 29.813267237293324 ], [ -94.508246784285149, 29.813247237532867 ], [ -94.508063783359987, 29.813115236806468 ], [ -94.507893783518739, 29.812939236975957 ], [ -94.507761783470059, 29.812719237091983 ], [ -94.507729783568905, 29.812631236793592 ], [ -94.507679783405393, 29.812307236883022 ], [ -94.50765478320217, 29.812218236895067 ], [ -94.507484783618523, 29.811987237236739 ], [ -94.50738378396639, 29.8118832365023 ], [ -94.507301783787639, 29.811723237258491 ], [ -94.507276783318872, 29.81158623711265 ], [ -94.507238783779826, 29.811492237225011 ], [ -94.507194783304726, 29.811300236628654 ], [ -94.507074783632262, 29.810904236971325 ], [ -94.506942783827057, 29.810579236823084 ], [ -94.506848783039445, 29.810403236678475 ], [ -94.50656478285461, 29.810095236169229 ], [ -94.506337783024449, 29.809875236929326 ], [ -94.506054783027153, 29.808670236625957 ], [ -94.505915783310073, 29.808500236208271 ], [ -94.505827783381008, 29.808340235914823 ], [ -94.505745782752115, 29.807999236537931 ], [ -94.505743783242849, 29.807955235969413 ], [ -94.505739783033022, 29.80779023577449 ], [ -94.505802782777309, 29.807466235665458 ], [ -94.505809782751783, 29.807158235907345 ], [ -94.505771783074607, 29.806707235985037 ], [ -94.505784783089496, 29.806278235686843 ], [ -94.50596178271951, 29.805992235667443 ], [ -94.506070783308374, 29.805711235519027 ], [ -94.506209782829501, 29.805585235570053 ], [ -94.506386783483762, 29.80542523555242 ], [ -94.507166782816483, 29.804721235737791 ], [ -94.507322783414764, 29.804638235715942 ], [ -94.507581783427923, 29.804502235774695 ], [ -94.507755783577153, 29.804410235466701 ], [ -94.507884783496365, 29.80434323549386 ], [ -94.509277783506334, 29.803931235423043 ], [ -94.510381783476788, 29.803450234870954 ], [ -94.511038783549466, 29.802923234818675 ], [ -94.511048784470361, 29.802911234546883 ], [ -94.511696784553791, 29.802167234724259 ], [ -94.512037784385413, 29.801617234718158 ], [ -94.512801784436888, 29.800013233809619 ], [ -94.513958784571443, 29.797792234157626 ], [ -94.514088784249168, 29.797310234074782 ], [ -94.514037784510407, 29.796485233707116 ], [ -94.513040784311414, 29.794445233499136 ], [ -94.512776784519076, 29.793781233159205 ], [ -94.512752783747771, 29.793027232531543 ], [ -94.512751784095926, 29.792978232747455 ], [ -94.512882783570859, 29.792612232662499 ], [ -94.513146784628489, 29.792245232867206 ], [ -94.514013784398756, 29.791581232258558 ], [ -94.515012784565599, 29.791169231995724 ], [ -94.515432784851669, 29.790745232422186 ], [ -94.513765784667612, 29.790763232350518 ], [ -94.511955783478257, 29.79078323221183 ], [ -94.508765783092173, 29.790821232370416 ], [ -94.507099782221232, 29.790842232954162 ], [ -94.505445782521747, 29.79086423293332 ], [ -94.50048678120028, 29.790931232412866 ], [ -94.500154780399896, 29.790936232378705 ], [ -94.49883378045206, 29.790951232408734 ], [ -94.498767780496905, 29.786758232267559 ], [ -94.498626779559771, 29.777890230570851 ], [ -94.498538779741338, 29.77066122911133 ], [ -94.498504778836718, 29.769058228355 ], [ -94.4984867794509, 29.767607228395608 ], [ -94.49843577881559, 29.763256227054448 ], [ -94.498433779218672, 29.763040226881227 ], [ -94.498407778980976, 29.761806226722371 ], [ -94.496300778082187, 29.76183822724148 ], [ -94.491000776810765, 29.76192122737643 ], [ -94.489981776703956, 29.76193422682832 ], [ -94.488120776681498, 29.761959227414238 ], [ -94.487875776748083, 29.76196222734065 ], [ -94.487003775607988, 29.761973226913227 ], [ -94.484388775553128, 29.762007227674076 ], [ -94.483517775636088, 29.762019227020701 ], [ -94.483150775095595, 29.762026227051816 ], [ -94.48205177469336, 29.762049227149436 ], [ -94.481685774641633, 29.762057227538342 ], [ -94.481581775061244, 29.762058227382543 ], [ -94.48037277430943, 29.762074227167393 ], [ -94.476834772938673, 29.762122227947337 ], [ -94.476436773298161, 29.762124227273258 ], [ -94.475124772811085, 29.762134228036366 ], [ -94.475203772834163, 29.761852227677895 ], [ -94.475329772866957, 29.761092227377159 ], [ -94.475417773280824, 29.760724227346042 ], [ -94.475429772778071, 29.760537226979608 ], [ -94.475353772904924, 29.7602232276483 ], [ -94.475240773139376, 29.760047227691 ], [ -94.475095773062336, 29.759739227012656 ], [ -94.475017772813501, 29.759625226979633 ], [ -94.474843772905089, 29.759371227206888 ], [ -94.474597772774473, 29.759047226857945 ], [ -94.474521772860811, 29.758843227173827 ], [ -94.474533772863069, 29.758354226591148 ], [ -94.474495772443177, 29.758090226463406 ], [ -94.47444577253917, 29.757875227182232 ], [ -94.473928772502987, 29.757116226238306 ], [ -94.473606772435815, 29.756726226560183 ], [ -94.473467772142897, 29.756390226576023 ], [ -94.473423772316153, 29.756027226867843 ], [ -94.473473772616671, 29.755692226061932 ], [ -94.473385772658304, 29.755378226605284 ], [ -94.473284772196791, 29.755235226745782 ], [ -94.473297772155234, 29.754828226397422 ], [ -94.473372772080424, 29.754581226309231 ], [ -94.473454771731895, 29.754449226087779 ], [ -94.473662772622077, 29.754157225918902 ], [ -94.473870771895889, 29.7538272255435 ], [ -94.473958772784684, 29.75357422574033 ], [ -94.474014772486157, 29.753101226159259 ], [ -94.474046772632633, 29.752721226180455 ], [ -94.474006772170185, 29.752405226057014 ], [ -94.47400277266054, 29.75236922554895 ], [ -94.473894772167583, 29.751830226002937 ], [ -94.473535771651228, 29.751028225681793 ], [ -94.473118771802547, 29.750307225277083 ], [ -94.472964771510121, 29.750003225314025 ], [ -94.472592772040699, 29.749365224953007 ], [ -94.472504771483571, 29.74917322540486 ], [ -94.472289771529844, 29.74880422532528 ], [ -94.47202477133176, 29.748430224632386 ], [ -94.471375771602595, 29.74745722517611 ], [ -94.471148771747679, 29.74706722443198 ], [ -94.471084771502689, 29.746909224338662 ], [ -94.470990770888633, 29.746676224362094 ], [ -94.470838771397425, 29.746148224911352 ], [ -94.470687771530507, 29.745708224297502 ], [ -94.470554771183103, 29.745103224346767 ], [ -94.470447771199801, 29.744553223912572 ], [ -94.47035977120531, 29.744273224556824 ], [ -94.46990577048355, 29.743294223734541 ], [ -94.469684770867772, 29.742172223751737 ], [ -94.469715770452567, 29.741501223641606 ], [ -94.469708770663829, 29.74079122348984 ], [ -94.469733770745719, 29.738597222810064 ], [ -94.469562770301479, 29.737893222390245 ], [ -94.469240770451009, 29.736991222269175 ], [ -94.468980770600766, 29.736389222626325 ], [ -94.468597770228001, 29.735500222685886 ], [ -94.468238770193821, 29.73476922188901 ], [ -94.468111770131557, 29.734378222130726 ], [ -94.467903769585121, 29.733614221577469 ], [ -94.467897770068731, 29.7333612218764 ], [ -94.467897770244278, 29.733146222156826 ], [ -94.467915770254336, 29.732975222056382 ], [ -94.467934769673889, 29.732789222207206 ], [ -94.468016769624995, 29.732629221834983 ], [ -94.468161769840236, 29.731980221638601 ], [ -94.468274770041191, 29.7316012211501 ], [ -94.46830877008712, 29.731332221618647 ], [ -94.468312769856198, 29.73130422116726 ], [ -94.468312770080558, 29.731056221557996 ], [ -94.468186769953121, 29.730671221637529 ], [ -94.468009769324652, 29.730314221598821 ], [ -94.467826769937105, 29.729978221456594 ], [ -94.467656769330276, 29.729692221113819 ], [ -94.467536769348655, 29.729555220896351 ], [ -94.467334769478029, 29.729379221260022 ], [ -94.46664176923862, 29.728889220988989 ], [ -94.466540768777762, 29.728763221159657 ], [ -94.466427769521928, 29.72859822075177 ], [ -94.466313769287893, 29.728323220865089 ], [ -94.466301768986952, 29.728031220864342 ], [ -94.466313769306325, 29.727674220503463 ], [ -94.4662887689028, 29.727300220665203 ], [ -94.46624376921929, 29.72700322091422 ], [ -94.466239769096575, 29.726986220790547 ], [ -94.466155769227015, 29.726569220199416 ], [ -94.465928768872644, 29.726200220651549 ], [ -94.465745769272772, 29.725843220331267 ], [ -94.465438768522304, 29.725530220784812 ], [ -94.465285768561841, 29.725375220702627 ], [ -94.464863768289177, 29.724908219906791 ], [ -94.464535768144671, 29.724527220444724 ], [ -94.464488768569439, 29.724472220147174 ], [ -94.464447768108727, 29.724424220180477 ], [ -94.464251768108824, 29.724176219969827 ], [ -94.463923768536731, 29.723846220222644 ], [ -94.463369768082217, 29.723373219806316 ], [ -94.461862767482998, 29.722142219848603 ], [ -94.461274767761111, 29.721685219593947 ], [ -94.461119767506332, 29.72156421992927 ], [ -94.460803766983275, 29.721366220058847 ], [ -94.460432767123137, 29.721218219745726 ], [ -94.460318767197023, 29.721114219518338 ], [ -94.46036276742646, 29.720987219916665 ], [ -94.460347767002418, 29.720825219379766 ], [ -94.460343767416489, 29.720778219457539 ], [ -94.460323767273792, 29.720728219379559 ], [ -94.460214767716437, 29.720446219505824 ], [ -94.46021176695757, 29.720437219486485 ], [ -94.460154766755451, 29.720366219071554 ], [ -94.46000376694802, 29.720168219670562 ], [ -94.459911767560655, 29.720013219312289 ], [ -94.459902767275409, 29.719997219591942 ], [ -94.459864767429124, 29.71982721942468 ], [ -94.459807766950917, 29.719684219817587 ], [ -94.459807767548881, 29.719414219046339 ], [ -94.459744767483642, 29.719172219137214 ], [ -94.459561767500844, 29.718870219066627 ], [ -94.459514766775072, 29.718822218885482 ], [ -94.459341767066292, 29.718644219060224 ], [ -94.459230766579239, 29.718502218781421 ], [ -94.459114767236713, 29.718353219182937 ], [ -94.458704766439354, 29.717962219231307 ], [ -94.458641766369354, 29.717770218847207 ], [ -94.458647766366511, 29.717286219070179 ], [ -94.458698766308061, 29.717104219129055 ], [ -94.458862766542978, 29.716763218958423 ], [ -94.459082766768759, 29.716411218392611 ], [ -94.459315766618474, 29.716152218727007 ], [ -94.459674767288263, 29.715861218637865 ], [ -94.459824767269438, 29.715748218309027 ], [ -94.459888767339081, 29.715701218606707 ], [ -94.459945767061669, 29.715630218411437 ], [ -94.460071767083676, 29.715349218910241 ], [ -94.460373767229342, 29.71500321797204 ], [ -94.460550767590505, 29.714772218144383 ], [ -94.460789766671795, 29.714486217967099 ], [ -94.461123766907988, 29.714167218560558 ], [ -94.461331766806254, 29.714045218351622 ], [ -94.461564767798251, 29.713957217794253 ], [ -94.462698767417621, 29.713215218001878 ], [ -94.462780767250365, 29.713149218111955 ], [ -94.462830767940829, 29.71306121774947 ], [ -94.462880767925341, 29.712764217810349 ], [ -94.462994767566713, 29.712444218211218 ], [ -94.463120767136303, 29.712202217759859 ], [ -94.463309767626512, 29.711273217391895 ], [ -94.463453767316679, 29.711075217338863 ], [ -94.463586767939589, 29.710959217279004 ], [ -94.463649767345785, 29.710871217265737 ], [ -94.463674768102692, 29.710717217441147 ], [ -94.463674767427221, 29.710332217329036 ], [ -94.463718767874582, 29.710195217595107 ], [ -94.463863767852899, 29.710013217400604 ], [ -94.4639077676281, 29.709909217619892 ], [ -94.463913767666114, 29.709815217094615 ], [ -94.463881767736495, 29.709628217559484 ], [ -94.463869767271575, 29.709430217104028 ], [ -94.463799767525288, 29.708990216846317 ], [ -94.463774768129412, 29.708891216742042 ], [ -94.46376176789407, 29.7086992165966 ], [ -94.463812767772367, 29.708424217231489 ], [ -94.463812767461818, 29.707890216451478 ], [ -94.463805767880828, 29.707681217040829 ], [ -94.463780767221323, 29.707604216587548 ], [ -94.463755767418249, 29.707324216308791 ], [ -94.463723767882627, 29.70725221658687 ], [ -94.463714767606135, 29.707210216454762 ], [ -94.463660767499121, 29.706928216940991 ], [ -94.463458767843221, 29.706290216698832 ], [ -94.463408767394938, 29.706059216014278 ], [ -94.463401767772908, 29.705795216619716 ], [ -94.463458767638315, 29.705663216160119 ], [ -94.46354076776295, 29.705365216718278 ], [ -94.463767767342233, 29.705068216404005 ], [ -94.463804767808426, 29.70499121617685 ], [ -94.463867767112333, 29.704749215972647 ], [ -94.463924767820217, 29.704661215757486 ], [ -94.463974767862254, 29.704546215676174 ], [ -94.4640317672918, 29.704458216277409 ], [ -94.464195767954067, 29.704021216227847 ], [ -94.464289767434522, 29.703770215515995 ], [ -94.464321767550203, 29.703622215845296 ], [ -94.464352767145925, 29.703539216317065 ], [ -94.464434768058723, 29.703385215650982 ], [ -94.464509767505604, 29.703292215922481 ], [ -94.464686767301799, 29.703006215569612 ], [ -94.464692767613286, 29.702824215852075 ], [ -94.464761767427092, 29.702555216046896 ], [ -94.464787767140791, 29.702515215890337 ], [ -94.464856767696759, 29.702411215611647 ], [ -94.465045767803261, 29.702290215408816 ], [ -94.465108768158245, 29.702213215997901 ], [ -94.465240768242111, 29.701828215584737 ], [ -94.465322767823693, 29.701685215587371 ], [ -94.465296767834843, 29.700970215397401 ], [ -94.465359767691268, 29.700767215397395 ], [ -94.465485768007809, 29.700558215488307 ], [ -94.465544767494492, 29.700345215463479 ], [ -94.465554768108888, 29.700310215476009 ], [ -94.465592767775476, 29.700079215016359 ], [ -94.465668767259501, 29.699892215223699 ], [ -94.466121768067339, 29.699271214969585 ], [ -94.466430767764692, 29.699023215087657 ], [ -94.466575767946736, 29.69889121521399 ], [ -94.46668876812285, 29.698693215013456 ], [ -94.466882767681611, 29.698274215076122 ], [ -94.466946768306585, 29.698137215036141 ], [ -94.467462768155713, 29.697538214130425 ], [ -94.467576767833748, 29.697439214865614 ], [ -94.467595768596254, 29.697378214496528 ], [ -94.467601767959408, 29.697186214639558 ], [ -94.467774768632253, 29.696966214283012 ], [ -94.467788767886333, 29.696957214686819 ], [ -94.467828768533124, 29.69687721430191 ], [ -94.467865767937226, 29.696647214099748 ], [ -94.467760768391656, 29.695665213775548 ], [ -94.467726767613343, 29.695337213696462 ], [ -94.467632767533743, 29.694573213782302 ], [ -94.467401768092003, 29.69175521297911 ], [ -94.467391768048998, 29.691630213683467 ], [ -94.467385767951143, 29.691520212878078 ], [ -94.467338767830839, 29.690448212942094 ], [ -94.46733476738622, 29.690349213338958 ], [ -94.46729176762598, 29.689909213146766 ], [ -94.467271767728604, 29.689705213109583 ], [ -94.467157767836227, 29.688952212760917 ], [ -94.467151767415373, 29.688792213153743 ], [ -94.46717076719267, 29.688550212831469 ], [ -94.467262767629435, 29.688315212364898 ], [ -94.467302767268166, 29.688215212184726 ], [ -94.467482767921098, 29.687822212655192 ], [ -94.467680767377004, 29.687390212630564 ], [ -94.468070767657281, 29.686542212594791 ], [ -94.468315767850655, 29.68613521205743 ], [ -94.468605767970615, 29.685728211970886 ], [ -94.468718767809747, 29.685437212075648 ], [ -94.468668767825775, 29.685222212048412 ], [ -94.468668768338134, 29.685096212132422 ], [ -94.468768768160615, 29.684733211512945 ], [ -94.468786767881255, 29.684642211534022 ], [ -94.468844767520224, 29.684353211665293 ], [ -94.468863767464001, 29.684095212018061 ], [ -94.468749767405427, 29.683578211298698 ], [ -94.468730767918117, 29.683258211594332 ], [ -94.468724768109013, 29.682769211104908 ], [ -94.468818768185116, 29.68235121122472 ], [ -94.468887768147397, 29.681955210944118 ], [ -94.469038767587762, 29.681421211431413 ], [ -94.469252767361553, 29.681020210871665 ], [ -94.469504767692513, 29.680657210957623 ], [ -94.469876768266388, 29.680255210969399 ], [ -94.470039768287435, 29.680035210731248 ], [ -94.470442768220551, 29.679336210654732 ], [ -94.470543768538207, 29.679105210842192 ], [ -94.470725768558538, 29.678797210423671 ], [ -94.470908768290329, 29.678522210416244 ], [ -94.470977768372904, 29.678434210585767 ], [ -94.471078768555671, 29.678346210775267 ], [ -94.471374768219889, 29.678214210637293 ], [ -94.471645768832914, 29.678120209961385 ], [ -94.471840768383103, 29.677988210556002 ], [ -94.472098768828346, 29.677757210358958 ], [ -94.473364768384883, 29.67683820970981 ], [ -94.473710768493504, 29.676580209672544 ], [ -94.473836768371299, 29.676503210256929 ], [ -94.474031768935433, 29.676437210073097 ], [ -94.474082768934139, 29.676420209534925 ], [ -94.475291769091655, 29.676095210145103 ], [ -94.475467769030701, 29.676040209810139 ], [ -94.475530769298274, 29.675996209597184 ], [ -94.475782769805406, 29.675672209574135 ], [ -94.475788769016987, 29.67558420985138 ], [ -94.475649769771991, 29.674869209178372 ], [ -94.475599769163836, 29.674462209240769 ], [ -94.475529769477447, 29.67416320966192 ], [ -94.475506768804067, 29.674168209143915 ], [ -94.473560768474869, 29.674557209125265 ], [ -94.468710767424199, 29.675530210285263 ], [ -94.467650767231646, 29.675722210173863 ], [ -94.467620766827395, 29.675728210136395 ], [ -94.467078767563493, 29.675800209669671 ], [ -94.46677676727758, 29.675823210279468 ], [ -94.465955766835378, 29.675848209781474 ], [ -94.465733767013262, 29.675849210026755 ], [ -94.46564976679808, 29.675849209722859 ], [ -94.46511376697292, 29.675851209854912 ], [ -94.463504765942432, 29.675859210386164 ], [ -94.462969765531113, 29.675862210074285 ], [ -94.461945765961445, 29.675870210447115 ], [ -94.461674765580469, 29.675872209992477 ], [ -94.459901764726865, 29.675888210447784 ], [ -94.458875764930269, 29.675897210264043 ], [ -94.45785276520985, 29.67590621012215 ], [ -94.45560076431525, 29.675923210051817 ], [ -94.448845762233091, 29.675975210484133 ], [ -94.446594761603563, 29.675993210920375 ], [ -94.446529762242363, 29.675993211116289 ], [ -94.445335761193505, 29.676001211173492 ], [ -94.441559760288854, 29.676027211149858 ], [ -94.440301760563173, 29.6760372108341 ], [ -94.43576775903189, 29.676069211528215 ], [ -94.434867758508133, 29.676085211403265 ], [ -94.434591758610296, 29.676086210953368 ], [ -94.433767758150665, 29.676089210787996 ], [ -94.433492758725166, 29.676091211057773 ], [ -94.43292775789574, 29.676094211366241 ], [ -94.43123575804762, 29.676104211549415 ], [ -94.430749757730595, 29.676107211022099 ], [ -94.430672757141224, 29.676108211474766 ], [ -94.43070375813862, 29.676057211554191 ], [ -94.430956757754672, 29.675526211227396 ], [ -94.431084758128208, 29.675147211387578 ], [ -94.431094758032998, 29.674768210849145 ], [ -94.431101757564761, 29.674499210725973 ], [ -94.43109075815002, 29.67410021103467 ], [ -94.431000758069928, 29.67390721065987 ], [ -94.430790757573021, 29.673613211141603 ], [ -94.430330757071445, 29.673141210657761 ], [ -94.430263757450334, 29.672783210227397 ], [ -94.430346757283274, 29.672089210047655 ], [ -94.430349757589411, 29.671541210319461 ], [ -94.43043675745335, 29.671172210688876 ], [ -94.430482757344762, 29.670829210171735 ], [ -94.430375757373938, 29.670120210171522 ], [ -94.430216757332744, 29.66979021001211 ], [ -94.430100756862601, 29.66960220993051 ], [ -94.430085757122797, 29.669315210303644 ], [ -94.430102757292985, 29.66901820966082 ], [ -94.429786757073344, 29.668500209997084 ], [ -94.429391757045224, 29.668225209822563 ], [ -94.428947757361698, 29.668140210013437 ], [ -94.428729757245904, 29.66800821004313 ], [ -94.428610757079056, 29.667595209800403 ], [ -94.428498757199065, 29.667336209866573 ], [ -94.428301756677399, 29.667230209670567 ], [ -94.427919756146537, 29.667144209676309 ], [ -94.42771175673424, 29.666976209630679 ], [ -94.42728075606901, 29.666387209240138 ], [ -94.427017756045615, 29.665950209027564 ], [ -94.426437756184555, 29.66569520914706 ], [ -94.425868755898577, 29.665504209477223 ], [ -94.425150756181722, 29.664945209000415 ], [ -94.424776755948116, 29.664742209345672 ], [ -94.424357755810703, 29.66456720913741 ], [ -94.424250754958663, 29.664235209277855 ], [ -94.424183755067858, 29.664042209288873 ], [ -94.424164755816264, 29.663985208685766 ], [ -94.424049755060395, 29.663887208899428 ], [ -94.423618755078621, 29.663955209389172 ], [ -94.42291975498722, 29.664016208948798 ], [ -94.422526754760625, 29.663921208977914 ], [ -94.422347755313424, 29.663636209170711 ], [ -94.422240754663235, 29.663304209183572 ], [ -94.422193754640119, 29.662900208865807 ], [ -94.422002754512192, 29.662720208870212 ], [ -94.421508754753788, 29.662006208317393 ], [ -94.421391754791301, 29.661385208414604 ], [ -94.420928753952907, 29.660611208292764 ], [ -94.421006754543541, 29.660333208380248 ], [ -94.421014754334891, 29.66026020878585 ], [ -94.421362754269282, 29.659597208302124 ], [ -94.421372754094378, 29.659206208354817 ], [ -94.421123754310699, 29.658990208345511 ], [ -94.421135753931679, 29.658459207844579 ], [ -94.421165754038668, 29.658237207892238 ], [ -94.421186754828184, 29.658088207676084 ], [ -94.42120775489866, 29.657938207865122 ], [ -94.421220753951047, 29.657836207721356 ], [ -94.421139754696796, 29.657413208001845 ], [ -94.420922753825081, 29.656885207513213 ], [ -94.420988753988325, 29.656290207755728 ], [ -94.420826754148976, 29.654876207436825 ], [ -94.420741753896621, 29.653956207050459 ], [ -94.420773753672805, 29.653636206970788 ], [ -94.420938753924403, 29.65334020728017 ], [ -94.421196753693181, 29.653122206851837 ], [ -94.421646753971913, 29.652651206630338 ], [ -94.421786754311569, 29.652112206787717 ], [ -94.421803753905735, 29.6520442066515 ], [ -94.421632753757379, 29.651711206253299 ], [ -94.421510754385906, 29.651652206175889 ], [ -94.421074754001253, 29.651433206679819 ], [ -94.420275753971055, 29.650929206404403 ], [ -94.419592753188738, 29.650666206733064 ], [ -94.419485753377245, 29.650389205948713 ], [ -94.419520753861704, 29.649606205999699 ], [ -94.419722753814867, 29.649299205665201 ], [ -94.420119753703545, 29.648971206182534 ], [ -94.420185753926063, 29.64859220588318 ], [ -94.420109753776515, 29.64827920566017 ], [ -94.419859753943001, 29.648057206205799 ], [ -94.419567753270812, 29.647808206067975 ], [ -94.419441753358356, 29.647585205701965 ], [ -94.419439753493904, 29.647441205961631 ], [ -94.419517753752345, 29.64719720592057 ], [ -94.41998875379241, 29.646284205915197 ], [ -94.420308753638352, 29.645598205189675 ], [ -94.419982753185337, 29.644379204956305 ], [ -94.419667753388381, 29.643915204631174 ], [ -94.4193947536629, 29.643698205221803 ], [ -94.419355753186139, 29.643666205026257 ], [ -94.419041752782633, 29.643274205170847 ], [ -94.419035753241843, 29.642879204760337 ], [ -94.419132752706645, 29.642428205083426 ], [ -94.419479753430537, 29.642227204718676 ], [ -94.42025575377302, 29.641841204535169 ], [ -94.420456753470731, 29.64147920438246 ], [ -94.420286753877804, 29.641121204153709 ], [ -94.419899753248515, 29.640622204222893 ], [ -94.419644752945985, 29.640103204558653 ], [ -94.419638752829528, 29.639636204286518 ], [ -94.419747752825657, 29.639302204046864 ], [ -94.419756753263414, 29.63927520413657 ], [ -94.419939753378529, 29.639129204151477 ], [ -94.420576753030772, 29.638997203849215 ], [ -94.420860753242195, 29.638724204309824 ], [ -94.42109375366536, 29.637750203499856 ], [ -94.421048753576088, 29.637481203560462 ], [ -94.420755753273241, 29.637143203186181 ], [ -94.420566753086391, 29.636839203682261 ], [ -94.420539753579774, 29.636372203258613 ], [ -94.420433753107503, 29.636157203008835 ], [ -94.420164752988697, 29.636088203207606 ], [ -94.419937753111284, 29.636019203026379 ], [ -94.419520752915702, 29.63564620307973 ], [ -94.418488752778259, 29.635423203123885 ], [ -94.41833875262482, 29.634993203540173 ], [ -94.418208752802073, 29.634545202848482 ], [ -94.418212752351153, 29.634114202638703 ], [ -94.418349752727551, 29.633591202948601 ], [ -94.418032752976245, 29.633001202542211 ], [ -94.417470752683172, 29.632575202341901 ], [ -94.417177752145435, 29.632201202859687 ], [ -94.416837752537347, 29.632117202972449 ], [ -94.41641375211222, 29.632011202663808 ], [ -94.415999752292777, 29.631800203021854 ], [ -94.415644751514435, 29.631498202884856 ], [ -94.415329751423158, 29.631387202128462 ], [ -94.415148751718149, 29.631324202127889 ], [ -94.414606751391233, 29.630826202642208 ], [ -94.414585751127902, 29.630758202764135 ], [ -94.414490751438208, 29.630439202102693 ], [ -94.414412751610712, 29.630181202584168 ], [ -94.414401751893635, 29.62999920224593 ], [ -94.414358751825816, 29.629282202333364 ], [ -94.414331751613759, 29.62912420221873 ], [ -94.414269751558408, 29.628762202036469 ], [ -94.41423875128396, 29.628659202015175 ], [ -94.414108750770623, 29.628228202030847 ], [ -94.414020751707028, 29.627938201649396 ], [ -94.414014750976278, 29.627925201965613 ], [ -94.413872751293866, 29.627616201486475 ], [ -94.4138687514575, 29.627328201675692 ], [ -94.413603751233552, 29.627142202130273 ], [ -94.413515750855481, 29.627080201533261 ], [ -94.413348750906692, 29.6269742012671 ], [ -94.4133457506599, 29.626963201522589 ], [ -94.413262751111972, 29.626705201990337 ], [ -94.413251751508795, 29.626506201347102 ], [ -94.413234750855992, 29.626166201307612 ], [ -94.413230750780556, 29.625843201767303 ], [ -94.413186750587357, 29.625645201566737 ], [ -94.413130750890872, 29.625106201505339 ], [ -94.413120750651814, 29.625004200953473 ], [ -94.413103750581328, 29.624638201002522 ], [ -94.413090751098679, 29.624353200768311 ], [ -94.41308975068003, 29.624329201061805 ], [ -94.413077750692025, 29.624057200644778 ], [ -94.412873750648188, 29.623536200949506 ], [ -94.412769751231224, 29.623271200659683 ], [ -94.412562750840735, 29.622744201089862 ], [ -94.411945750368375, 29.621820200605825 ], [ -94.411596750420401, 29.62097620060241 ], [ -94.411632750001459, 29.620127199879793 ], [ -94.411673750608657, 29.620084200364854 ], [ -94.412145750781448, 29.619595200260793 ], [ -94.412237750676979, 29.619468200016481 ], [ -94.412586750689911, 29.618990199693801 ], [ -94.412687750831466, 29.618555199563204 ], [ -94.412691750950614, 29.618038200160282 ], [ -94.411977749867134, 29.617280200042345 ], [ -94.411491750505775, 29.616396199365642 ], [ -94.411083749849709, 29.615986199356506 ], [ -94.410842750015448, 29.615840199014929 ], [ -94.41076774938189, 29.615795199595723 ], [ -94.410692749332014, 29.615749199671534 ], [ -94.410625749937623, 29.615709199851374 ], [ -94.410558750117204, 29.615670199558316 ], [ -94.409771749312242, 29.615287199717383 ], [ -94.40861874939614, 29.614937198936783 ], [ -94.408189749132674, 29.614693199558328 ], [ -94.4081777488028, 29.614635199467166 ], [ -94.408125749082942, 29.614384198963432 ], [ -94.408129748736386, 29.613401198791177 ], [ -94.408061748938323, 29.613010199119323 ], [ -94.407988748979236, 29.612586198726678 ], [ -94.407977749518182, 29.612419198461886 ], [ -94.407971748549457, 29.612307198535742 ], [ -94.407957749339076, 29.612059198905122 ], [ -94.40803574879402, 29.611877199013325 ], [ -94.408129748606243, 29.611643198629856 ], [ -94.40865474903319, 29.611100198892196 ], [ -94.408779749272711, 29.610747198844621 ], [ -94.409085748994372, 29.610042198389937 ], [ -94.409266749243258, 29.609625198157364 ], [ -94.409362749190777, 29.609303197877804 ], [ -94.409461749714595, 29.60897019767398 ], [ -94.40947674951407, 29.608923197651034 ], [ -94.409617749644568, 29.608453198265995 ], [ -94.409703749373705, 29.607959197779451 ], [ -94.409763749396944, 29.607618197815317 ], [ -94.40980374965703, 29.60738519749885 ], [ -94.409806749220706, 29.607285198000454 ], [ -94.409840749726342, 29.606277197407444 ], [ -94.40973974928896, 29.605957197833504 ], [ -94.409626748654617, 29.605605197063145 ], [ -94.409618749203375, 29.60557819754505 ], [ -94.409513749288664, 29.605258197697935 ], [ -94.409322749130183, 29.604681197500501 ], [ -94.40931074888276, 29.604549196808311 ], [ -94.409277748500102, 29.604182197012584 ], [ -94.409266749119112, 29.604061197138403 ], [ -94.409492749116382, 29.603585197136244 ], [ -94.409513748830548, 29.603541196759643 ], [ -94.409862748995053, 29.603083196603997 ], [ -94.410670749138816, 29.602495196845201 ], [ -94.410945748878078, 29.602331196279671 ], [ -94.411503749538639, 29.602000196569147 ], [ -94.411639749183095, 29.601804196440522 ], [ -94.411787750017396, 29.60159419656571 ], [ -94.412048749376254, 29.60122019634079 ], [ -94.4121307495341, 29.601104196207654 ], [ -94.412167749330621, 29.601015196083196 ], [ -94.412393749564444, 29.600470196128793 ], [ -94.41241774963936, 29.599970196136983 ], [ -94.412430749713238, 29.599705196080549 ], [ -94.412279749161129, 29.599065195621272 ], [ -94.411607749607924, 29.598431195397211 ], [ -94.410553748631543, 29.597470195732758 ], [ -94.409856748542339, 29.596712195101674 ], [ -94.409825748494384, 29.596663195516712 ], [ -94.409742748922156, 29.596763195606627 ], [ -94.409659748700406, 29.596864195208028 ], [ -94.409486748348897, 29.597073195796142 ], [ -94.409377748916882, 29.597207195681225 ], [ -94.408998748784938, 29.597472195407153 ], [ -94.408731748998051, 29.597503196028015 ], [ -94.4085197487518, 29.597372196041636 ], [ -94.408361748892375, 29.597017195382207 ], [ -94.408337748339136, 29.596970195606634 ], [ -94.408184748583238, 29.596668195205456 ], [ -94.408059748825934, 29.5965211954639 ], [ -94.407915748069684, 29.596581195464591 ], [ -94.407484747947777, 29.596763195636136 ], [ -94.407341748159169, 29.596824195582137 ], [ -94.407370748042354, 29.597105195546984 ], [ -94.407379748686623, 29.597194195677012 ], [ -94.40739974856676, 29.597387195989597 ], [ -94.407016748456542, 29.597948195800434 ], [ -94.4068077482614, 29.598075195665814 ], [ -94.40648974802744, 29.598269195538304 ], [ -94.406038747377366, 29.598249196369668 ], [ -94.405964748328586, 29.5982461959969 ], [ -94.40562374804864, 29.598040195501692 ], [ -94.404969747388776, 29.597450195732904 ], [ -94.404634747434443, 29.597149195317929 ], [ -94.404265747073879, 29.596818195787481 ], [ -94.404115747285559, 29.596529195873043 ], [ -94.404078746829228, 29.596464195786641 ], [ -94.403987746873696, 29.596301195838571 ], [ -94.403838747418277, 29.596161195934741 ], [ -94.403646747263366, 29.596143195202561 ], [ -94.40337474686325, 29.596120195503623 ], [ -94.403020746647016, 29.596288196060872 ], [ -94.402479746729725, 29.596226195926054 ], [ -94.401930746451882, 29.596107195940657 ], [ -94.401655747012271, 29.596047195283337 ], [ -94.401403747059362, 29.5959301958131 ], [ -94.401010746861829, 29.595882195865013 ], [ -94.400893746435258, 29.595868195811512 ], [ -94.400686746558065, 29.595554195961181 ], [ -94.400641746350374, 29.595472195859784 ], [ -94.400480746229462, 29.595179195786663 ], [ -94.400293746620221, 29.594885195671129 ], [ -94.400059746277137, 29.594714195581346 ], [ -94.39990674567585, 29.594670195108897 ], [ -94.399674746228513, 29.594604195259635 ], [ -94.399276746419716, 29.594523195132073 ], [ -94.39924174563474, 29.594516194984589 ], [ -94.398964745498759, 29.59447619545109 ], [ -94.398837746128422, 29.594458195240001 ], [ -94.398735745514983, 29.594504195021361 ], [ -94.398663745880128, 29.594537195639429 ], [ -94.398513746035889, 29.594606195855093 ], [ -94.398490746204118, 29.594848195664735 ], [ -94.398622745857679, 29.59519519594884 ], [ -94.398716745416181, 29.595312195734774 ], [ -94.398769746176953, 29.595377195285732 ], [ -94.398825746340236, 29.595447195698348 ], [ -94.399023745948213, 29.595723195519611 ], [ -94.399041746096913, 29.595894195809201 ], [ -94.399059745984175, 29.59607419596249 ], [ -94.3989537458108, 29.59631219554376 ], [ -94.398932746423071, 29.596347195472468 ], [ -94.398871746218632, 29.596437196142489 ], [ -94.398862746388446, 29.596450195384527 ], [ -94.398703745475729, 29.596612196250266 ], [ -94.398070745430047, 29.596802195670325 ], [ -94.395742744721673, 29.596593195642463 ], [ -94.394290745226314, 29.596300196019904 ], [ -94.393944745090124, 29.596022195535024 ], [ -94.393891745122616, 29.595791195659501 ], [ -94.393849745068408, 29.595661196114982 ], [ -94.393841744429906, 29.595637195949564 ], [ -94.39377874464823, 29.595431196167226 ], [ -94.393673744049025, 29.595183195621416 ], [ -94.393663744542465, 29.59515719604784 ], [ -94.393605744755178, 29.595037195647564 ], [ -94.392658744381066, 29.595497195552827 ], [ -94.3924597438793, 29.595589195599729 ], [ -94.392278743963985, 29.595628196216552 ], [ -94.392001744636858, 29.595549195665949 ], [ -94.391732744485964, 29.595399195963481 ], [ -94.390590744238224, 29.594901195544331 ], [ -94.390397743860149, 29.59484719569144 ], [ -94.390016743600938, 29.594740195510038 ], [ -94.389948743563963, 29.594721195451179 ], [ -94.389748743045175, 29.594798195714421 ], [ -94.38962974372599, 29.595028196274122 ], [ -94.389615743544354, 29.595092195755633 ], [ -94.389528743874209, 29.595483195624919 ], [ -94.389504743093653, 29.595537195788282 ], [ -94.38935174347408, 29.595891195733639 ], [ -94.389021743198256, 29.596008195650295 ], [ -94.388772743628152, 29.59598719617038 ], [ -94.388669742896113, 29.595979196033468 ], [ -94.388538743473447, 29.595725195615419 ], [ -94.388525743384321, 29.595701196084804 ], [ -94.388502743570754, 29.595656196298425 ], [ -94.388517743108892, 29.59528019601559 ], [ -94.388516742992067, 29.595238195928882 ], [ -94.388509743404569, 29.595158196011909 ], [ -94.388502743235776, 29.595060196236627 ], [ -94.388488743436696, 29.594859196038563 ], [ -94.388459742859709, 29.594729195769215 ], [ -94.388415742655098, 29.594531195608415 ], [ -94.387960743164783, 29.594517195826679 ], [ -94.387616743193519, 29.594409195404108 ], [ -94.387452742516544, 29.59437919541509 ], [ -94.38715974291604, 29.594324195412703 ], [ -94.387077742627795, 29.594324195334689 ], [ -94.387036742958728, 29.594324196196194 ], [ -94.386916742441969, 29.594416195806343 ], [ -94.386853742415795, 29.594706195743992 ], [ -94.38674374262834, 29.595834195870847 ], [ -94.386638743007978, 29.596087196087812 ], [ -94.386559743126327, 29.596109196304685 ], [ -94.386297742338556, 29.596041196444812 ], [ -94.385380742723996, 29.595467195952033 ], [ -94.384920741877352, 29.595291196194662 ], [ -94.384893742597853, 29.595251195634276 ], [ -94.384879742371055, 29.595231195686083 ], [ -94.384807742001229, 29.595138196304987 ], [ -94.384757742103588, 29.595124195938812 ], [ -94.384714741880387, 29.595124195691991 ], [ -94.384646742449888, 29.59517119573092 ], [ -94.384583742665598, 29.595178195912073 ], [ -94.38454174179796, 29.595146196233959 ], [ -94.380610741377367, 29.595210196116195 ], [ -94.380170741438178, 29.595260195951365 ], [ -94.379424741111464, 29.595849195961016 ], [ -94.379036740714596, 29.596050196068379 ], [ -94.378768740488695, 29.596051196024543 ], [ -94.37866774047535, 29.595900196346435 ], [ -94.37840374054673, 29.595566196580521 ], [ -94.378389741069441, 29.59554419675257 ], [ -94.378347740651407, 29.5954781962865 ], [ -94.378333740166639, 29.595456196416638 ], [ -94.378283741009412, 29.594972196206161 ], [ -94.378255740740343, 29.594789196139207 ], [ -94.37820274090312, 29.594428196481374 ], [ -94.378145740215345, 29.594087195746322 ], [ -94.378114740720903, 29.594054196194374 ], [ -94.378089740876774, 29.59405419640828 ], [ -94.378013740882395, 29.594076195941188 ], [ -94.377938739992885, 29.594065196424037 ], [ -94.377787740564358, 29.593977195937491 ], [ -94.377761740794156, 29.59394419571661 ], [ -94.37765774045819, 29.593912195618731 ], [ -94.377636739888914, 29.59391619599014 ], [ -94.37751074046885, 29.593905196260835 ], [ -94.377428740540296, 29.593872195555853 ], [ -94.377321739847289, 29.593800196236092 ], [ -94.377264740034008, 29.593778196314361 ], [ -94.377195740237411, 29.593718196150014 ], [ -94.377145740489425, 29.593707196176236 ], [ -94.377063740641333, 29.593723196101429 ], [ -94.376972740578111, 29.593763195681721 ], [ -94.376950740102785, 29.593773195967255 ], [ -94.376893740344357, 29.593811195893419 ], [ -94.376824739649251, 29.593927196246671 ], [ -94.376824739758305, 29.593998196303133 ], [ -94.376849740327813, 29.594097195862261 ], [ -94.376805739741897, 29.594180196094637 ], [ -94.376790740304486, 29.59426719578272 ], [ -94.376776739919023, 29.594354195689803 ], [ -94.376762739914426, 29.594443195697973 ], [ -94.376754739902907, 29.594675196008684 ], [ -94.376508740435739, 29.594900196218358 ], [ -94.376405739900051, 29.594926196238337 ], [ -94.375915740007926, 29.595053196682738 ], [ -94.375462739617731, 29.59514319666749 ], [ -94.375356739311869, 29.595305196780295 ], [ -94.375374739991344, 29.595480196420155 ], [ -94.37548573990324, 29.595672196498537 ], [ -94.375514740328327, 29.595772196039366 ], [ -94.375553739786312, 29.595908196182631 ], [ -94.375532739811987, 29.596320196640864 ], [ -94.375506740012426, 29.59638319671717 ], [ -94.375425740027254, 29.596583197053583 ], [ -94.37537574026743, 29.596654196556425 ], [ -94.375324739582666, 29.596781196466488 ], [ -94.375173739443454, 29.596825196375278 ], [ -94.375060739422082, 29.596841196853422 ], [ -94.375009740259429, 29.596841196837087 ], [ -94.374962740182553, 29.596844196619006 ], [ -94.374823739735163, 29.59680619652444 ], [ -94.374676740108953, 29.59676719636899 ], [ -94.373748739828287, 29.596078196728762 ], [ -94.373457739751615, 29.595862196370273 ], [ -94.373081739066663, 29.595691196508305 ], [ -94.37297773904983, 29.595707196829579 ], [ -94.372891739527802, 29.595761196711923 ], [ -94.372893739351341, 29.595913196160314 ], [ -94.373044738946874, 29.596162196503244 ], [ -94.373237738946216, 29.596629196749404 ], [ -94.373322739754656, 29.596834196979344 ], [ -94.373328739677916, 29.597221196937181 ], [ -94.373218739375162, 29.597450196963599 ], [ -94.373036739075573, 29.597490196488895 ], [ -94.372896739418294, 29.597385196951574 ], [ -94.372439739001777, 29.596365196250282 ], [ -94.372294739074675, 29.596198196187949 ], [ -94.372098739455126, 29.596172196358463 ], [ -94.371995738497787, 29.596264197008292 ], [ -94.371834738681528, 29.597183196949821 ], [ -94.371696739378521, 29.597261196571385 ], [ -94.371628739088393, 29.597252196637985 ], [ -94.371626739101671, 29.597214197005783 ], [ -94.371581738699973, 29.595135196845831 ], [ -94.37158173921766, 29.595098196487921 ], [ -94.371558738939058, 29.593671196348371 ], [ -94.371556738946992, 29.593565196184993 ], [ -94.371554738959091, 29.593459196019033 ], [ -94.371551738511386, 29.593324196429865 ], [ -94.371548738972209, 29.593188196368871 ], [ -94.371480738314844, 29.588784195438855 ], [ -94.371451738272484, 29.586876194597458 ], [ -94.371445738241547, 29.586668194421954 ], [ -94.37144473878206, 29.586611194525727 ], [ -94.371426738048925, 29.585860194462587 ], [ -94.371411738736171, 29.585211194791434 ], [ -94.371390737937944, 29.584355194268284 ], [ -94.371370738355751, 29.583498194306223 ], [ -94.371368738368659, 29.583437193851292 ], [ -94.371360738373951, 29.583064194203804 ], [ -94.371350738477034, 29.582630194058066 ], [ -94.37113673798217, 29.574051191834442 ], [ -94.370974737140045, 29.563151190239594 ], [ -94.37086973681599, 29.559548189141072 ], [ -94.370822737065552, 29.555669188477474 ], [ -94.370822737009576, 29.555556188032831 ], [ -94.37087573641135, 29.555287188147023 ], [ -94.370871736907418, 29.555038187887678 ], [ -94.370841736939539, 29.553988188263546 ], [ -94.370837737061919, 29.553876187945733 ], [ -94.370785736967093, 29.553884187488819 ], [ -94.370731736611219, 29.55389418829515 ], [ -94.370690737163912, 29.553913187824374 ], [ -94.368224735754751, 29.55455418843804 ], [ -94.367840736250045, 29.554762187987645 ], [ -94.3623917345801, 29.556431188508508 ], [ -94.354827732787896, 29.559668189361325 ], [ -94.354582732836889, 29.559756189314381 ], [ -94.354499733119525, 29.559804189763476 ], [ -94.354212733103054, 29.559888189604461 ], [ -94.354198732852694, 29.561075189780627 ], [ -94.354162733162397, 29.56156118989416 ], [ -94.354151733331548, 29.561744190266964 ], [ -94.353869733391164, 29.56631319108962 ], [ -94.353666732851778, 29.570451191824464 ], [ -94.353593733564097, 29.571815192617006 ], [ -94.353465732795684, 29.574200192328323 ], [ -94.353389732892197, 29.57484919254415 ], [ -94.353399733750891, 29.576094192979212 ], [ -94.353424733470149, 29.578077193656114 ], [ -94.353442733365824, 29.579432193783617 ], [ -94.353444733205691, 29.579615193691044 ], [ -94.353450733752169, 29.580077193468082 ], [ -94.35345673328041, 29.58053919406251 ], [ -94.353475734048587, 29.581981194668547 ], [ -94.35347973397073, 29.582301194406391 ], [ -94.353483733917884, 29.582621194120993 ], [ -94.353484733785052, 29.582716194877655 ], [ -94.353485733695095, 29.582811194730823 ], [ -94.353501734017456, 29.584033194609855 ], [ -94.353502733597935, 29.584143194801619 ], [ -94.353504733186, 29.584254195026379 ], [ -94.353506734207528, 29.584440194482113 ], [ -94.35350973417296, 29.584627194831345 ], [ -94.353514733710981, 29.585064195376528 ], [ -94.353518733720648, 29.585391194818932 ], [ -94.353523733734875, 29.58571919517377 ], [ -94.353527733648917, 29.586052194891863 ], [ -94.353547733950634, 29.587282195088083 ], [ -94.353559734028394, 29.588098196027364 ], [ -94.35357473369217, 29.588953196135467 ], [ -94.353580734058752, 29.589286195568413 ], [ -94.353634734470603, 29.59272319641828 ], [ -94.353667734317156, 29.594799197163873 ], [ -94.353669734079929, 29.594871197303643 ], [ -94.353670734017172, 29.594930196785377 ], [ -94.353670733799333, 29.594989196737156 ], [ -94.353737734563452, 29.599198197868478 ], [ -94.353858734930228, 29.606049199358104 ], [ -94.35393873480831, 29.610615199867809 ], [ -94.353953734887043, 29.611451200211377 ], [ -94.353954735235149, 29.611502200881251 ], [ -94.353962735213997, 29.611854200674799 ], [ -94.353969734923297, 29.612206200911768 ], [ -94.354093735611926, 29.620354202233059 ], [ -94.353985735409196, 29.62523120372116 ], [ -94.354001735899047, 29.626314203247684 ], [ -94.354232735714646, 29.634563205204508 ], [ -94.354243735974563, 29.63554720529191 ], [ -94.35424873577368, 29.635982205738745 ], [ -94.354252736190219, 29.636349205542842 ], [ -94.354255735917761, 29.636660206094827 ], [ -94.354263735762089, 29.637333206068572 ], [ -94.354264735753873, 29.637435205409005 ], [ -94.354296735815254, 29.64021420641344 ], [ -94.354352736726185, 29.645102207334567 ], [ -94.354365736421414, 29.646216207245185 ], [ -94.354367736668934, 29.646422207362324 ], [ -94.35438873659524, 29.647961207755031 ], [ -94.354471737286829, 29.653397209413658 ], [ -94.354509736888176, 29.655840209487724 ], [ -94.354670737768956, 29.667183212257726 ], [ -94.354683737455659, 29.668027211731328 ], [ -94.354749737885868, 29.672226212794065 ], [ -94.354751737490119, 29.672325212851153 ], [ -94.354753737535461, 29.672476212871782 ], [ -94.354756737991039, 29.672668213321597 ], [ -94.354756737816672, 29.672683213370007 ], [ -94.354861737883311, 29.679170214433295 ], [ -94.354871738057099, 29.679776214220855 ], [ -94.354894738381788, 29.681205214734657 ], [ -94.354952738553067, 29.685016215876093 ], [ -94.355068738706436, 29.692433217252532 ], [ -94.355068738360501, 29.692474217056485 ], [ -94.35519573888952, 29.700809219206732 ], [ -94.355196739602079, 29.70086921938384 ], [ -94.355242739598353, 29.70482622006541 ], [ -94.355248739125003, 29.705338219857595 ], [ -94.355249739745787, 29.705421220082705 ], [ -94.355250739347895, 29.705505219844191 ], [ -94.355342739567362, 29.71353522132901 ], [ -94.355385739588996, 29.717049222308329 ], [ -94.355432740019211, 29.717246222015685 ], [ -94.355456740108252, 29.717404222661127 ], [ -94.355487740177594, 29.72705522423697 ], [ -94.355495740856369, 29.728613224336474 ], [ -94.355496740994354, 29.728876224680576 ], [ -94.355469740280626, 29.729266224727994 ], [ -94.355499741037306, 29.731016225534713 ], [ -94.355562740841265, 29.734740225791924 ], [ -94.355567740822195, 29.735047226088184 ], [ -94.35570574159668, 29.743056228096155 ], [ -94.355709741110516, 29.743274227325369 ], [ -94.355794741847134, 29.748272228754391 ], [ -94.355797741236486, 29.748422229096498 ], [ -94.355804741458641, 29.748842229042559 ], [ -94.35586774135345, 29.750227229369003 ], [ -94.355905741269382, 29.752729229729564 ], [ -94.355906741810102, 29.752803230092891 ], [ -94.355966741897461, 29.755102230037544 ], [ -94.355970741399162, 29.755235229790323 ], [ -94.356058741881171, 29.762679231767923 ], [ -94.356067742523763, 29.763307231658864 ], [ -94.356067742521873, 29.763319231767209 ], [ -94.35616274287618, 29.770261233258534 ], [ -94.356164742588334, 29.770383232996615 ], [ -94.356195742939036, 29.772485233505947 ], [ -94.356197742668527, 29.772585233927117 ], [ -94.356236742768644, 29.775200234682792 ], [ -94.356322742713729, 29.780882235561847 ], [ -94.356325742579386, 29.780963235553529 ], [ -94.356325742640252, 29.780980235170976 ], [ -94.356326742649088, 29.781029235255662 ], [ -94.356354743365671, 29.782034235586966 ], [ -94.356369742869191, 29.786986237008836 ], [ -94.356386742805796, 29.78760023686829 ], [ -94.356530743557997, 29.790722237335512 ], [ -94.35653374349917, 29.790956237684441 ], [ -94.356670744153121, 29.800281239927148 ], [ -94.356682743793343, 29.801134240040472 ], [ -94.356690744372401, 29.801649240290043 ], [ -94.356713744012097, 29.803811240711173 ], [ -94.356736743949114, 29.806035240417941 ], [ -94.356736744024658, 29.806050240819534 ], [ -94.356736744344857, 29.806100240655315 ], [ -94.356738744370176, 29.806225240427175 ], [ -94.356802744421501, 29.810720242166848 ], [ -94.356806744505178, 29.810774241418816 ], [ -94.356835744880541, 29.817968243075345 ], [ -94.356839744326265, 29.818043243383084 ], [ -94.356960744573456, 29.820674243730341 ], [ -94.356960744969129, 29.820720243379547 ], [ -94.357008744924926, 29.825272244995084 ], [ -94.357029745609822, 29.825289244881802 ], [ -94.357035744983477, 29.825466244693558 ], [ -94.357036745507997, 29.825487244386501 ], [ -94.357034745474095, 29.825556244444805 ], [ -94.357033744925246, 29.825650245022931 ], [ -94.357043745031319, 29.825875244773385 ], [ -94.357025744712303, 29.826038245067785 ], [ -94.357030745523332, 29.827114245291419 ], [ -94.357094745196761, 29.829820245267001 ], [ -94.357098745048518, 29.829980245732454 ], [ -94.357121745289191, 29.831485246060918 ], [ -94.357142745314178, 29.831620246308251 ], [ -94.357102745545646, 29.832497246529002 ], [ -94.357109745585504, 29.832539246482927 ], [ -94.357148745372356, 29.833791246069929 ], [ -94.357173745792068, 29.833858246500466 ], [ -94.357202745953401, 29.833937246242026 ], [ -94.357191745682741, 29.836959247541074 ], [ -94.357222746073106, 29.837088247169753 ], [ -94.357235746094503, 29.837141247455772 ], [ -94.357281745687473, 29.839571247642009 ], [ -94.357282745796439, 29.839632247575633 ], [ -94.357259745596878, 29.840969248271659 ], [ -94.357267745895115, 29.841027248185391 ], [ -94.357321745772481, 29.841933247753293 ], [ -94.357298746264973, 29.842784248409913 ], [ -94.357300746103761, 29.843049248283808 ], [ -94.357311746417309, 29.844147248866268 ], [ -94.357345746342929, 29.847723249467236 ], [ -94.357345746466748, 29.847733249309019 ], [ -94.357345746101402, 29.847792249691242 ], [ -94.35736074636705, 29.848881249585578 ], [ -94.357457747126205, 29.856149251034662 ], [ -94.357458746188868, 29.856272251243489 ], [ -94.357474746597219, 29.857790251492311 ], [ -94.357474746815555, 29.857806251189384 ], [ -94.357472746750346, 29.857902251413062 ], [ -94.357491746934187, 29.858095251273756 ], [ -94.357511746919059, 29.85829925165552 ], [ -94.357516746760098, 29.858355251193238 ], [ -94.357521746587281, 29.858414252024655 ], [ -94.357523746521267, 29.858623251693317 ], [ -94.357526746584981, 29.858638251873998 ], [ -94.357543747301563, 29.859568252236702 ], [ -94.357594747402885, 29.861556251943664 ], [ -94.357598746812684, 29.861693252580427 ], [ -94.357602746859158, 29.861872252362978 ], [ -94.357816747240932, 29.873071254548499 ], [ -94.357858747286969, 29.875295254778123 ], [ -94.357866748205922, 29.878060255896063 ], [ -94.357882747774624, 29.879481255597828 ], [ -94.357943748055078, 29.884290256634998 ], [ -94.357982748176525, 29.88746925775926 ], [ -94.362970749329904, 29.887474257242694 ], [ -94.363156749236012, 29.887475257668555 ], [ -94.363342749094997, 29.88747525741411 ], [ -94.365353750588525, 29.88747725723027 ], [ -94.367387750587454, 29.887481257255985 ], [ -94.37062575131614, 29.887488257505805 ], [ -94.371186751371994, 29.887489257540064 ], [ -94.374081752601256, 29.887493256907938 ], [ -94.3751947524337, 29.887495256727572 ], [ -94.378415753509501, 29.887482256500366 ], [ -94.380270754085117, 29.887474257224493 ], [ -94.389472756526757, 29.887438256471643 ], [ -94.391712757223772, 29.887447256174536 ], [ -94.391933756674419, 29.887448256148001 ], [ -94.395776757633868, 29.887413256081302 ], [ -94.403774759797159, 29.887325256023811 ], [ -94.403792760161934, 29.887326255614834 ], [ -94.405460760377764, 29.887347256357977 ], [ -94.406420760841215, 29.887296255487104 ], [ -94.414523762721814, 29.887197255999052 ], [ -94.414646762573682, 29.887195255883409 ], [ -94.417029763362507, 29.887171255791479 ], [ -94.417568763367271, 29.887165255575212 ], [ -94.41771676377094, 29.887161255366912 ], [ -94.41794076396171, 29.887154255835426 ], [ -94.420883764256459, 29.887118255467662 ], [ -94.420987764665441, 29.887117255067079 ], [ -94.424821765387648, 29.887072255015237 ], [ -94.429917766726248, 29.887047254846308 ], [ -94.439404769456743, 29.887001254739147 ], [ -94.439517769760059, 29.887000254338666 ], [ -94.440639769183562, 29.886995254938835 ], [ -94.442210769798834, 29.887058254609489 ], [ -94.442236770062792, 29.889158255282197 ], [ -94.442241770148868, 29.889543255261742 ], [ -94.443264770847009, 29.889541255421303 ], [ -94.446335770846417, 29.889539255036951 ], [ -94.447342771584033, 29.8895392551002 ], [ -94.447359771706331, 29.889539255110961 ], [ -94.449153771884468, 29.889537254933128 ], [ -94.450262772286706, 29.88953725518305 ], [ -94.454537773456849, 29.889533254959112 ], [ -94.456332774125315, 29.889532254515427 ], [ -94.45636277368483, 29.889532254891265 ], [ -94.456578774151524, 29.889532254814252 ], [ -94.456767773649588, 29.889532254543727 ], [ -94.458100773792594, 29.889530254476846 ], [ -94.463405775397348, 29.889527254435258 ], [ -94.46517477579151, 29.889526254134047 ], [ -94.465432775690729, 29.889526254721826 ], [ -94.470350777224724, 29.88952325403266 ], [ -94.473696778775533, 29.889521253713749 ], [ -94.477556779500404, 29.889518254032971 ], [ -94.485880781688508, 29.889512253951263 ], [ -94.490987782228913, 29.88950925369117 ], [ -94.491057782493456, 29.889509253682061 ], [ -94.491068783160401, 29.889509253259774 ], [ -94.491079782752834, 29.889509253703334 ], [ -94.491148783155737, 29.889509253445759 ], [ -94.491171783276698, 29.889509253652495 ], [ -94.491246782889377, 29.889509253644924 ], [ -94.491474782660688, 29.889510253484794 ], [ -94.491492782399163, 29.889510253512714 ], [ -94.49154278303179, 29.889513253049358 ], [ -94.494030783746737, 29.889637253468766 ], [ -94.494398783395951, 29.889655253274576 ], [ -94.500197784826099, 29.889945253686019 ], [ -94.502946785567303, 29.889909252731417 ], [ -94.505798786583526, 29.889872252941696 ], [ -94.505813786670814, 29.889872253479375 ], [ -94.506202786465053, 29.889867253097396 ], [ -94.506617786469931, 29.889861252658598 ], [ -94.509075787131565, 29.889829253032097 ], [ -94.509849787149193, 29.889820253142922 ], [ -94.509895787832676, 29.889819253101983 ], [ -94.510874787403623, 29.889804252899495 ], [ -94.513817788874121, 29.889767252495972 ], [ -94.514800788679182, 29.889756252407775 ], [ -94.514861789223957, 29.88975325306469 ], [ -94.515221788802506, 29.889748252823786 ], [ -94.516491789231068, 29.88973125247108 ], [ -94.516917789862418, 29.889728253128339 ], [ -94.517226789246166, 29.88972425261705 ], [ -94.518164789652502, 29.889712252354684 ], [ -94.519434790529203, 29.889696252556504 ], [ -94.520114790163973, 29.889688252169112 ], [ -94.521908790944636, 29.889665252280441 ], [ -94.523152791392803, 29.889652252454233 ], [ -94.523358791070692, 29.889649252445267 ], [ -94.523571790772493, 29.889646252769097 ], [ -94.524809791792563, 29.889631252453107 ], [ -94.525223792081547, 29.889626252755633 ], [ -94.525321791282607, 29.889625252063777 ], [ -94.525618791833551, 29.889621252748078 ], [ -94.52571779188375, 29.889620252646836 ], [ -94.527485792676828, 29.889597251883025 ], [ -94.532792793639913, 29.889532251948115 ], [ -94.534561793663059, 29.889511251664821 ], [ -94.534575793716684, 29.889511251815563 ], [ -94.534541793751231, 29.889465251777697 ], [ -94.534364794036918, 29.889236251715285 ], [ -94.533729793463166, 29.888415251581229 ], [ -94.533711793482368, 29.888392251547589 ], [ -94.533517793613527, 29.888142251637831 ], [ -94.533404793177084, 29.887979251650183 ], [ -94.532559793568467, 29.886893251636025 ], [ -94.532427793388166, 29.886726251159082 ], [ -94.532231793522115, 29.886480251611555 ], [ -94.531925793577642, 29.886075251422056 ], [ -94.531814793295993, 29.885942251560753 ], [ -94.531373792524477, 29.885357251273831 ], [ -94.529150792529435, 29.882485251201437 ], [ -94.528826792555691, 29.882044250621089 ], [ -94.52849279229909, 29.88161425023042 ], [ -94.528411791732438, 29.881521250603498 ], [ -94.528331792387988, 29.881449250486291 ], [ -94.528135791521734, 29.8813082508577 ], [ -94.528043791635127, 29.881256250575952 ], [ -94.527937791990723, 29.881209250293715 ], [ -94.527923792232528, 29.881203250826694 ], [ -94.527646791959654, 29.881054250132628 ], [ -94.52741879144115, 29.880874250622952 ], [ -94.527274791818158, 29.880761250419077 ], [ -94.52698979186944, 29.88050625035779 ], [ -94.526166790968787, 29.879720250216678 ], [ -94.526050791643002, 29.87961525004614 ], [ -94.525590791574515, 29.879200249808491 ], [ -94.525418790704379, 29.879044249979394 ], [ -94.524922790989351, 29.87858225047593 ], [ -94.524891791093623, 29.87855325011337 ], [ -94.522926790034219, 29.876724250172447 ], [ -94.522346789889397, 29.876184249460582 ], [ -94.522315790522825, 29.876150249301975 ], [ -94.522268790592463, 29.876099249481811 ], [ -94.522226790246236, 29.876053249570191 ], [ -94.522243790134098, 29.875989249802334 ], [ -94.522301790646139, 29.875917249777149 ], [ -94.522439789862503, 29.875784249553458 ], [ -94.523081790058825, 29.875216249607195 ], [ -94.524281791120856, 29.874092249396316 ], [ -94.524531790538731, 29.873851248922051 ], [ -94.524636790977198, 29.873764248674217 ], [ -94.524732790659613, 29.873655248639302 ], [ -94.524759790327835, 29.873592249438147 ], [ -94.524796790399165, 29.873511249478678 ], [ -94.524812791213535, 29.873401248643365 ], [ -94.524817791288172, 29.873236248563252 ], [ -94.524773791008982, 29.871231248979324 ], [ -94.524747790444067, 29.870586248302502 ], [ -94.524744790859216, 29.869557248035598 ], [ -94.524699790851756, 29.866567247554485 ], [ -94.524652789934635, 29.864257246884641 ], [ -94.524616789849773, 29.863552246971018 ], [ -94.524593790521251, 29.863377247275672 ], [ -94.524573790277557, 29.863283247073671 ], [ -94.524533790289823, 29.862776247211919 ], [ -94.524519790463401, 29.862587246387847 ], [ -94.524477790370213, 29.859806246094728 ], [ -94.524457789508148, 29.85926024649585 ], [ -94.52445979051295, 29.859167245813349 ], [ -94.524491789929456, 29.859167246536977 ], [ -94.524590790295917, 29.859169245770818 ], [ -94.524623789915964, 29.859170245908668 ], [ -94.524777789983901, 29.859172245804547 ], [ -94.524935790553201, 29.859176246145161 ], [ -94.525241790518052, 29.859170245872651 ], [ -94.525396790719242, 29.859168246229338 ], [ -94.525708790655841, 29.859163245930276 ], [ -94.528580791355694, 29.859131245790142 ], [ -94.533283792473469, 29.859081245615293 ], [ -94.538134793866675, 29.859027245363833 ], [ -94.541319794812779, 29.858993245461516 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1497, "Tract": "48071710600", "Area_SqMi": 231.53190415149794, "total_2009": null, "total_2010": null, "total_2011": null, "total_2012": null, "total_2013": null, "total_2014": null, "total_2015": null, "total_2016": null, "total_2017": null, "total_2018": null, "total_2019": null, "total_2020": null, "age1": null, "age2": null, "age3": null, "earn1": null, "earn2": null, "earn3": null, "naics_s01": null, "naics_s02": null, "naics_s03": null, "naics_s04": null, "naics_s05": null, "naics_s06": null, "naics_s07": null, "naics_s08": null, "naics_s09": null, "naics_s10": null, "naics_s11": null, "naics_s12": null, "naics_s13": null, "naics_s14": null, "naics_s15": null, "naics_s16": null, "naics_s17": null, "naics_s18": null, "naics_s19": null, "naics_s20": null, "race1": null, "race2": null, "race3": null, "race4": null, "race5": null, "race6": null, "ethnicity1": null, "ethnicity2": null, "edu1": null, "edu2": null, "edu3": null, "edu4": null, "Shape_Length": 431033.19430173404, "Shape_Area": 6454713216.9294186, "total_2021": null, "total_2022": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.018118904148949, 29.554858166971115 ], [ -95.018211904136734, 29.554602166597782 ], [ -95.017683903613616, 29.554122166605026 ], [ -95.017651903402026, 29.55408516647606 ], [ -95.017459903406419, 29.55386616647095 ], [ -95.017011903335941, 29.553194165919813 ], [ -95.016643903605186, 29.552362166295222 ], [ -95.01663290382028, 29.5520871665105 ], [ -95.016605903420015, 29.551326165752215 ], [ -95.016523903496733, 29.550705166008221 ], [ -95.016435903675983, 29.550026165552591 ], [ -95.016743903296828, 29.548873165881634 ], [ -95.016821903704326, 29.548581165160982 ], [ -95.016905903309791, 29.548269165471861 ], [ -95.016914902931816, 29.548224165246992 ], [ -95.016945903779728, 29.548093164938091 ], [ -95.016955903093447, 29.548049165004144 ], [ -95.016894903477024, 29.547619165580521 ], [ -95.016846902893874, 29.547271164912953 ], [ -95.016815902898216, 29.546974165346505 ], [ -95.016718903698177, 29.546332164996649 ], [ -95.016687902847877, 29.546122164824119 ], [ -95.016674903565061, 29.545978165023456 ], [ -95.016618903438172, 29.545927164706793 ], [ -95.016641903367372, 29.545843165213316 ], [ -95.016600903038821, 29.545826164464394 ], [ -95.01658990335585, 29.545750164675976 ], [ -95.016583902692304, 29.545704165015877 ], [ -95.016537903671377, 29.545693165209446 ], [ -95.016462903266543, 29.545343164435348 ], [ -95.016415902953923, 29.545180164951134 ], [ -95.016398903095407, 29.545121164895161 ], [ -95.016385903227459, 29.54504316444746 ], [ -95.016408902792733, 29.544981164481737 ], [ -95.016372902769746, 29.544826164746631 ], [ -95.016361902767656, 29.544779164759156 ], [ -95.016285903439879, 29.544438164759402 ], [ -95.016246903391888, 29.544165164902481 ], [ -95.016236903369872, 29.544092164152953 ], [ -95.016152903308793, 29.54400316444454 ], [ -95.016151903055786, 29.543992164671423 ], [ -95.0161149025801, 29.543771164422857 ], [ -95.016095902528505, 29.543650164232336 ], [ -95.016141903138134, 29.543592164785224 ], [ -95.016083902893001, 29.543546164787287 ], [ -95.016046903130757, 29.543283164269827 ], [ -95.01612190319004, 29.543260163989626 ], [ -95.016108903314986, 29.543208164221618 ], [ -95.016054903050801, 29.542992164443486 ], [ -95.016008902799626, 29.542805164550384 ], [ -95.016005903245599, 29.542792164166304 ], [ -95.015965902974685, 29.542344164540477 ], [ -95.01595390260303, 29.542232164374465 ], [ -95.015944902869833, 29.542145163793752 ], [ -95.015886902436662, 29.542059164023474 ], [ -95.01585890253736, 29.541860164098189 ], [ -95.015818902637989, 29.541577163536299 ], [ -95.015713903177058, 29.541280163474561 ], [ -95.015687902785317, 29.541206163955373 ], [ -95.015649903266137, 29.541091163475517 ], [ -95.015632903218588, 29.541039163576905 ], [ -95.015581902392583, 29.540884164148494 ], [ -95.0155649026932, 29.540833163651794 ], [ -95.015528902198994, 29.540726163765804 ], [ -95.015506902745599, 29.540660164016959 ], [ -95.015395903149013, 29.540418164182331 ], [ -95.015349902334407, 29.540317164138269 ], [ -95.015302903009868, 29.540215163797637 ], [ -95.015162902372808, 29.53991116319639 ], [ -95.015116903012427, 29.539810163993831 ], [ -95.014953902823919, 29.539455163348087 ], [ -95.014610902508991, 29.538923163439275 ], [ -95.014589902021967, 29.53888916339908 ], [ -95.014514902579407, 29.538903163613419 ], [ -95.014217901846379, 29.538522162971955 ], [ -95.014104902335816, 29.538475163189567 ], [ -95.013886902618395, 29.538204163084728 ], [ -95.013543902288603, 29.53791516366978 ], [ -95.013208902441335, 29.537730163151281 ], [ -95.01300990236571, 29.537533163182612 ], [ -95.012931901948889, 29.537585163269835 ], [ -95.012755901345656, 29.537216162825217 ], [ -95.012740901593546, 29.537112162712347 ], [ -95.012573902042476, 29.536944163004449 ], [ -95.012531901448682, 29.536932163255404 ], [ -95.01173690197966, 29.53672016275404 ], [ -95.011539901243538, 29.536685162750366 ], [ -95.011518901468136, 29.536681163345801 ], [ -95.011414901599338, 29.536606162808781 ], [ -95.011290901511202, 29.53647916326516 ], [ -95.011304901097532, 29.536346163325586 ], [ -95.011098901075727, 29.535982163318902 ], [ -95.010938901750677, 29.535698162800401 ], [ -95.010677901454727, 29.535370162455617 ], [ -95.010521901610417, 29.535181162982923 ], [ -95.010223900620389, 29.534884163054048 ], [ -95.009961901310803, 29.534777162867371 ], [ -95.009618900681104, 29.534588162769982 ], [ -95.009475900749393, 29.534500162448563 ], [ -95.009306900809023, 29.534534163099678 ], [ -95.009203900604817, 29.534351162413802 ], [ -95.008773900895974, 29.533586162676748 ], [ -95.008430900931501, 29.533025162784124 ], [ -95.008396900515095, 29.532960162864239 ], [ -95.007982900609733, 29.53216116221509 ], [ -95.007714900108994, 29.531525161750945 ], [ -95.007430900334199, 29.53111516215359 ], [ -95.007362900583175, 29.53104116200695 ], [ -95.007219899684387, 29.530885162140788 ], [ -95.006869900080332, 29.530503162184267 ], [ -95.00679490022894, 29.530401162353044 ], [ -95.006658899490674, 29.530216162347866 ], [ -95.006575900450969, 29.530095162143599 ], [ -95.006504900261618, 29.529992162124877 ], [ -95.006288899789496, 29.529678161800305 ], [ -95.005879899895518, 29.529083161429956 ], [ -95.005673899822767, 29.528864161637692 ], [ -95.005593899358587, 29.528779161371016 ], [ -95.005336900005929, 29.528500161191726 ], [ -95.005205900036529, 29.528357161367126 ], [ -95.004813899812092, 29.527930161743789 ], [ -95.00468389967952, 29.527788161750308 ], [ -95.004602899068431, 29.527700161587333 ], [ -95.004360899364045, 29.527436161834139 ], [ -95.004280899605547, 29.5273481615768 ], [ -95.00415789902425, 29.527214161489656 ], [ -95.003790899022022, 29.526814161354103 ], [ -95.003668899110806, 29.526681161200454 ], [ -95.003630898595247, 29.526639161212064 ], [ -95.003516898554537, 29.526515160944292 ], [ -95.003478899319958, 29.526474161259742 ], [ -95.003395898861584, 29.52638416125129 ], [ -95.003149899214591, 29.526114161255425 ], [ -95.003102899298668, 29.526062161520247 ], [ -95.003055898637314, 29.526081161475993 ], [ -95.003004898651909, 29.526106161079692 ], [ -95.002896899117388, 29.525994161056158 ], [ -95.002653898944985, 29.525744161241015 ], [ -95.00238189885539, 29.525655161318294 ], [ -95.002180898612849, 29.5255901612163 ], [ -95.002125898983593, 29.525569160918128 ], [ -95.001995898283695, 29.525519160779634 ], [ -95.001960898133973, 29.525506160727403 ], [ -95.00191989809683, 29.525491161143034 ], [ -95.001906898983194, 29.525486160781767 ], [ -95.001863898642966, 29.525456160731455 ], [ -95.00176689806851, 29.525388161285797 ], [ -95.001737898820878, 29.525368161512528 ], [ -95.001695898999728, 29.525339160950367 ], [ -95.001281898503123, 29.524953161105113 ], [ -95.000165898373083, 29.52391116115313 ], [ -94.999448897455267, 29.523317160555106 ], [ -94.996231896827155, 29.520894160600548 ], [ -94.995159897078736, 29.520169160637362 ], [ -94.993432896161266, 29.519001159839039 ], [ -94.993159896534479, 29.518863159690831 ], [ -94.992737896281312, 29.518519160193431 ], [ -94.992496895698906, 29.51832315964268 ], [ -94.991578895640046, 29.517975160197057 ], [ -94.990621895386255, 29.517535160223769 ], [ -94.990435894977267, 29.517449159665819 ], [ -94.989663894638966, 29.517095160110724 ], [ -94.989312895286346, 29.516880159363911 ], [ -94.98859889437604, 29.516444159352424 ], [ -94.987612894154381, 29.515941159970872 ], [ -94.986853894411922, 29.515490159513501 ], [ -94.986526893716544, 29.515290159596461 ], [ -94.986142894040469, 29.515056159653682 ], [ -94.985478893455308, 29.514818159844037 ], [ -94.984895893234039, 29.514598159046344 ], [ -94.984264893207992, 29.514311158958392 ], [ -94.983326893365486, 29.513809159707545 ], [ -94.982728893522207, 29.513474159574198 ], [ -94.98201689266773, 29.513170159394146 ], [ -94.981566892770729, 29.513029158790555 ], [ -94.981416893033511, 29.512982159454232 ], [ -94.980994892433714, 29.512862159575942 ], [ -94.980703892856525, 29.512727159500088 ], [ -94.980005892492343, 29.512538159585858 ], [ -94.979307892482765, 29.512381159095884 ], [ -94.978725891985775, 29.512128158876106 ], [ -94.978321891869925, 29.511878158639266 ], [ -94.978063892062337, 29.511678159381638 ], [ -94.977171891939847, 29.511421158719891 ], [ -94.976771891289886, 29.511350158758141 ], [ -94.97666789115334, 29.511332158611243 ], [ -94.976519891135453, 29.511260158749902 ], [ -94.976215890907909, 29.511113158635617 ], [ -94.975808890957794, 29.511042158974792 ], [ -94.975320890883097, 29.510986158680147 ], [ -94.975030891374118, 29.510770158599502 ], [ -94.974528890581382, 29.510616158630651 ], [ -94.974009890274417, 29.51044515913053 ], [ -94.973100890207419, 29.510187158979758 ], [ -94.972908890729116, 29.510143159218195 ], [ -94.972687889928324, 29.510172158646405 ], [ -94.972243890466359, 29.510157159050614 ], [ -94.971888890162646, 29.510082159271327 ], [ -94.971563889667891, 29.509964158555732 ], [ -94.970987889990852, 29.509697158996762 ], [ -94.970950889998122, 29.509686158581925 ], [ -94.969849889700299, 29.50937015900562 ], [ -94.968311889537873, 29.508895158592757 ], [ -94.967365889061412, 29.50851015870569 ], [ -94.96689288845046, 29.508465158991108 ], [ -94.966522888552191, 29.508523159105334 ], [ -94.965901888901058, 29.508537158584719 ], [ -94.964940888527593, 29.508418158671411 ], [ -94.964480888009689, 29.508176158441167 ], [ -94.964290888596551, 29.508077158553878 ], [ -94.963818888458405, 29.507736159118942 ], [ -94.963241887545081, 29.507617158973773 ], [ -94.962566887689746, 29.507486158511878 ], [ -94.96239888785658, 29.50745315876728 ], [ -94.962134887205792, 29.507346159083749 ], [ -94.961968887796971, 29.50727915834911 ], [ -94.961879887096671, 29.50726615894682 ], [ -94.961862886959452, 29.507263158903744 ], [ -94.961417887556152, 29.50719615859326 ], [ -94.961010887236071, 29.507109158310431 ], [ -94.960677887293642, 29.507171158483693 ], [ -94.960594887344712, 29.507188159003888 ], [ -94.960513886606321, 29.507205158508235 ], [ -94.960254887013591, 29.50710515863242 ], [ -94.959976886806615, 29.507030159101653 ], [ -94.959882886449492, 29.507019158651278 ], [ -94.959686886534982, 29.506984158795444 ], [ -94.959589886671679, 29.50698815909006 ], [ -94.959478886836195, 29.506990158814485 ], [ -94.959268886640331, 29.507060158927992 ], [ -94.959038886265631, 29.507080158582294 ], [ -94.958809886757436, 29.507021158345403 ], [ -94.958674886388309, 29.506967158861581 ], [ -94.958422886595784, 29.506888159110467 ], [ -94.958154886418228, 29.506809158884202 ], [ -94.95793788648939, 29.506739158858085 ], [ -94.957852886690844, 29.506714159115123 ], [ -94.957624886027787, 29.506647159078415 ], [ -94.957374886521251, 29.506576159061847 ], [ -94.957105886287763, 29.506505158874219 ], [ -94.956837886526671, 29.506447158405795 ], [ -94.95653688575166, 29.506372159041579 ], [ -94.956269885803096, 29.506320158957951 ], [ -94.955959885707557, 29.506274158323333 ], [ -94.955613886050315, 29.506228159050313 ], [ -94.955322885224689, 29.506195158392796 ], [ -94.955023885635697, 29.506150158385609 ], [ -94.954719885087158, 29.506113158855428 ], [ -94.954491885913356, 29.506054158778795 ], [ -94.954331885039863, 29.506055158416984 ], [ -94.954263885333631, 29.506042158545529 ], [ -94.953967885212691, 29.505972158280624 ], [ -94.95374288539962, 29.505894158324839 ], [ -94.953494885620429, 29.505804159081436 ], [ -94.953228885019584, 29.505727158511117 ], [ -94.952944885351116, 29.50564915821932 ], [ -94.952672885029813, 29.505586158252402 ], [ -94.952440884645569, 29.505521158724605 ], [ -94.952220884500235, 29.505451158548201 ], [ -94.952077884508526, 29.505414158452421 ], [ -94.952020884590468, 29.505398158252486 ], [ -94.952334884527303, 29.505246158311067 ], [ -94.951864884372384, 29.505209158562909 ], [ -94.951417884356914, 29.505173158176472 ], [ -94.951248884345972, 29.505153158847207 ], [ -94.951216884820752, 29.505002158312209 ], [ -94.951164884920104, 29.505002158363993 ], [ -94.951055884625148, 29.505002158582645 ], [ -94.951024884783195, 29.505101158859567 ], [ -94.951055884297247, 29.505185158251543 ], [ -94.950956884970793, 29.505190158808336 ], [ -94.950935884489553, 29.505007158448695 ], [ -94.950836884587446, 29.504929158272805 ], [ -94.950514884872888, 29.504876158979666 ], [ -94.950423884489211, 29.50487315868558 ], [ -94.950357884728447, 29.504872158196907 ], [ -94.950200884384259, 29.504971158221796 ], [ -94.950082883979235, 29.50493415874989 ], [ -94.949548884315519, 29.504768158941143 ], [ -94.949238883866272, 29.504691158281052 ], [ -94.949089884203232, 29.504565158176312 ], [ -94.948219883533056, 29.5042841582781 ], [ -94.947959883780712, 29.504309158105034 ], [ -94.947912883303403, 29.504297158189178 ], [ -94.947073883762286, 29.504085158554211 ], [ -94.946245883325631, 29.503797158337406 ], [ -94.946043883507969, 29.503716158282575 ], [ -94.946065883359566, 29.503650158879854 ], [ -94.945640882814487, 29.503496158131462 ], [ -94.945585882854616, 29.503584158613304 ], [ -94.945227883206982, 29.50347915803404 ], [ -94.945233883141768, 29.503430158406925 ], [ -94.944836883348273, 29.50327015843698 ], [ -94.944720883328316, 29.503402158724413 ], [ -94.944076882836683, 29.50323715826223 ], [ -94.943348882881082, 29.503122158609592 ], [ -94.943192882388502, 29.503095158384934 ], [ -94.941674882095754, 29.502576158569482 ], [ -94.941563881902994, 29.502545158336023 ], [ -94.941316881585266, 29.502477158292116 ], [ -94.940886882255128, 29.502420158354987 ], [ -94.94032688209208, 29.502285158562003 ], [ -94.940181881483468, 29.502163158008791 ], [ -94.939374881016207, 29.501925158604802 ], [ -94.939195881430734, 29.501911157970024 ], [ -94.938933881019906, 29.501891158032514 ], [ -94.938436881091022, 29.501922157991821 ], [ -94.938193881580801, 29.501936158738193 ], [ -94.938059881457505, 29.501944158524207 ], [ -94.937739881104903, 29.501924158349745 ], [ -94.93759488067748, 29.501833158144997 ], [ -94.937469881333882, 29.501741158758872 ], [ -94.937363880953569, 29.501648158674481 ], [ -94.937300881382285, 29.501592158354914 ], [ -94.937219880417018, 29.501577158187786 ], [ -94.937160881055817, 29.501580158543511 ], [ -94.937023880747489, 29.501629158496939 ], [ -94.936927881145337, 29.50169415808222 ], [ -94.936693880534449, 29.501768158396899 ], [ -94.936456880935566, 29.501803158639216 ], [ -94.936277880693495, 29.501813158577821 ], [ -94.93613788068275, 29.501802158049571 ], [ -94.935472880599207, 29.501364157931317 ], [ -94.935144880556066, 29.501204158608925 ], [ -94.934987880755372, 29.501132158053842 ], [ -94.934844880355698, 29.501067158497424 ], [ -94.934528880604987, 29.500923157908073 ], [ -94.934325879727695, 29.500855157845731 ], [ -94.934244879674537, 29.500840158579109 ], [ -94.934124879796414, 29.500828158236509 ], [ -94.934043880307627, 29.500814158300464 ], [ -94.933924879515772, 29.50082115851481 ], [ -94.9338658804581, 29.500824158318633 ], [ -94.933759879579426, 29.500825158259524 ], [ -94.933533879859354, 29.500850158670417 ], [ -94.933369880315837, 29.500857158700125 ], [ -94.933241880012758, 29.500845157869527 ], [ -94.933200879438616, 29.500832157963416 ], [ -94.933127879778155, 29.500810158045208 ], [ -94.933048879558129, 29.500779158395325 ], [ -94.932755879469042, 29.500657158527762 ], [ -94.932519879172517, 29.500552158031201 ], [ -94.932315879065897, 29.500473158611719 ], [ -94.93212387990566, 29.500396158310306 ], [ -94.931885879143607, 29.500314157755295 ], [ -94.931692879463, 29.500248158088553 ], [ -94.931508879827732, 29.500207158064924 ], [ -94.931326878966601, 29.500154158575416 ], [ -94.931142879161953, 29.500112158594664 ], [ -94.931027879697936, 29.500089158579712 ], [ -94.930878878740685, 29.500051158094301 ], [ -94.930696879514258, 29.499998157776933 ], [ -94.930674879573303, 29.499985157844467 ], [ -94.930598879405466, 29.500068157802705 ], [ -94.93057687899632, 29.50006315785814 ], [ -94.930201879177304, 29.499984158031843 ], [ -94.930194879280819, 29.500001158300666 ], [ -94.930189878709896, 29.500014158507092 ], [ -94.930166878628285, 29.500012157962903 ], [ -94.93013787934467, 29.500008158205119 ], [ -94.93007187937809, 29.499991158388525 ], [ -94.929919878451031, 29.499957158003021 ], [ -94.929688878526051, 29.499907158194084 ], [ -94.929692878471499, 29.499888157982188 ], [ -94.929695878352589, 29.499869158006138 ], [ -94.929649878364401, 29.499863157869811 ], [ -94.929532878935419, 29.49984615816944 ], [ -94.929506878844805, 29.499842158440394 ], [ -94.929419878598623, 29.499831158076656 ], [ -94.929375878939226, 29.499881158434658 ], [ -94.929269878419277, 29.499881158068284 ], [ -94.929219879074381, 29.499863158258265 ], [ -94.929122878391539, 29.499829158501232 ], [ -94.929016878611563, 29.499749158636089 ], [ -94.928791878332959, 29.499665157773535 ], [ -94.928643878518571, 29.499610157776683 ], [ -94.928580878610248, 29.499587158081319 ], [ -94.928486878972905, 29.499587157967984 ], [ -94.928445878130773, 29.499571158242237 ], [ -94.928254878766452, 29.49950015855935 ], [ -94.9282048788277, 29.499494157924627 ], [ -94.927848878471039, 29.499451158445542 ], [ -94.927809877890382, 29.499447158569374 ], [ -94.927659878379359, 29.499379157982219 ], [ -94.927562877858264, 29.49933615850259 ], [ -94.927481878718353, 29.49929915840729 ], [ -94.927344878128707, 29.499289158123677 ], [ -94.927271878101322, 29.499290158268888 ], [ -94.927077878490536, 29.499206158481613 ], [ -94.926898878319847, 29.499128158088549 ], [ -94.926755878546118, 29.499066157880069 ], [ -94.926712878256666, 29.499048158273304 ], [ -94.926660877560295, 29.49902515796138 ], [ -94.926580877994041, 29.499025157997682 ], [ -94.926529878326207, 29.49902415775686 ], [ -94.926354878452571, 29.498905157979728 ], [ -94.926177878272085, 29.498879157710366 ], [ -94.92603587765754, 29.498858157867041 ], [ -94.925969877782165, 29.498848158377942 ], [ -94.925892878079267, 29.498837158111819 ], [ -94.925770877802023, 29.498832158385138 ], [ -94.925704878189435, 29.49883015790066 ], [ -94.925248877373832, 29.498812158112887 ], [ -94.924841877113366, 29.498615157791189 ], [ -94.924665877598727, 29.498586157893143 ], [ -94.924434877681264, 29.498546157666244 ], [ -94.924350877867951, 29.498532157757261 ], [ -94.92402987714307, 29.498478158009245 ], [ -94.923822877525666, 29.498393158258043 ], [ -94.923772877484083, 29.498435157963939 ], [ -94.92356387755224, 29.498399157843807 ], [ -94.923428877462129, 29.49842115779397 ], [ -94.923357877094503, 29.498369157962863 ], [ -94.923252876731624, 29.498291158313553 ], [ -94.923248876648088, 29.498219157819719 ], [ -94.923164876724968, 29.498209157618852 ], [ -94.922843877413172, 29.498179157839726 ], [ -94.922785877303795, 29.498163157710518 ], [ -94.922754877163626, 29.498155158004749 ], [ -94.921652876361549, 29.497851157653848 ], [ -94.921396876402142, 29.497781157927843 ], [ -94.921288876110211, 29.497816158148787 ], [ -94.920703876380131, 29.497678158170149 ], [ -94.92010587626902, 29.497536158148407 ], [ -94.919914876005222, 29.497530157760405 ], [ -94.919709876502395, 29.497507158055303 ], [ -94.919181875899667, 29.497449157829184 ], [ -94.919090876189756, 29.49757515789674 ], [ -94.918723875460159, 29.497495157957569 ], [ -94.918700876007435, 29.497369157810816 ], [ -94.91854087636942, 29.497358157962484 ], [ -94.91842387541044, 29.49748215815994 ], [ -94.917899875350457, 29.497312157832472 ], [ -94.917601875188041, 29.497278157647063 ], [ -94.916801874998981, 29.497018158420445 ], [ -94.916754874979588, 29.497003158033909 ], [ -94.916647875621194, 29.49705015766671 ], [ -94.916434875181764, 29.49711715799473 ], [ -94.915827875540501, 29.496934158117678 ], [ -94.915712874711687, 29.496942158088945 ], [ -94.915619875491871, 29.496834158323352 ], [ -94.915085874785262, 29.496692157688539 ], [ -94.914561875265179, 29.496552157974172 ], [ -94.914453875157676, 29.496523157639469 ], [ -94.914403875124123, 29.496510158371375 ], [ -94.914125875110415, 29.496471157881594 ], [ -94.914016875185027, 29.496456157649643 ], [ -94.913507874396984, 29.496387158437287 ], [ -94.913446874728351, 29.496379158212047 ], [ -94.912103873961286, 29.496275158347743 ], [ -94.911973874137999, 29.496268157812302 ], [ -94.911461874356803, 29.49624515802719 ], [ -94.911224873615126, 29.496336158145969 ], [ -94.910720873994265, 29.496533158057115 ], [ -94.910501873286179, 29.496517157759758 ], [ -94.91040187376889, 29.496529157704131 ], [ -94.910290873661623, 29.49653615773175 ], [ -94.910260873898025, 29.49656415848558 ], [ -94.91012087376447, 29.496494157732364 ], [ -94.910039873952613, 29.496479158026151 ], [ -94.909851874013057, 29.496446157909396 ], [ -94.909910873626131, 29.496967158641482 ], [ -94.909914873685608, 29.496999158576031 ], [ -94.909713873885806, 29.497049158520845 ], [ -94.909604873388972, 29.497073158303063 ], [ -94.909583873185852, 29.497079158593728 ], [ -94.909339873238494, 29.497156158451372 ], [ -94.909287873449941, 29.497172158494777 ], [ -94.909182873496036, 29.497207158735012 ], [ -94.90891587354453, 29.497294158723772 ], [ -94.908475873659739, 29.497511158432673 ], [ -94.905800873013504, 29.499242158699154 ], [ -94.905294872413691, 29.499571158703056 ], [ -94.903368872359067, 29.501058159025433 ], [ -94.901376871802924, 29.502560159750246 ], [ -94.899222871311466, 29.504029160451729 ], [ -94.896847870299567, 29.505515160676428 ], [ -94.896035870431618, 29.505974160473162 ], [ -94.894159869576768, 29.507035160737018 ], [ -94.892585870160346, 29.507913160737338 ], [ -94.892095869785237, 29.508187160953295 ], [ -94.890882869193703, 29.508768160918642 ], [ -94.889327869160979, 29.509515161907114 ], [ -94.886319867914182, 29.510827161458412 ], [ -94.885653868365182, 29.511079162430814 ], [ -94.883871867390766, 29.511756161759745 ], [ -94.883854867372762, 29.51176116179958 ], [ -94.883803867290837, 29.511780162412396 ], [ -94.883787867467504, 29.511786162001187 ], [ -94.883741867248247, 29.511801162588878 ], [ -94.883607867343798, 29.511848161788645 ], [ -94.883562867270811, 29.511864161873554 ], [ -94.883312867177935, 29.511952162274113 ], [ -94.882565866854023, 29.51221916213056 ], [ -94.882317867402293, 29.512308162214492 ], [ -94.882290867298678, 29.51231916214422 ], [ -94.882209866923816, 29.512353162252364 ], [ -94.882183866952332, 29.512365162631426 ], [ -94.882172866860046, 29.512369162789167 ], [ -94.882142867170103, 29.512381162714146 ], [ -94.882132867266179, 29.512386162438393 ], [ -94.881901866908265, 29.51248916230135 ], [ -94.881469866933088, 29.512624162872608 ], [ -94.879917866183334, 29.513113162847912 ], [ -94.879452865985343, 29.513261162746716 ], [ -94.879142866733005, 29.513361162600805 ], [ -94.878962866094071, 29.513419162982618 ], [ -94.878781866148714, 29.513476162656708 ], [ -94.878431866183803, 29.513586162469064 ], [ -94.878254866401008, 29.513643162919191 ], [ -94.877387865952798, 29.513931162726781 ], [ -94.877040866114513, 29.51404716245991 ], [ -94.877022866095018, 29.514053162755914 ], [ -94.87700686548213, 29.514059162432222 ], [ -94.876970865718164, 29.514067162508159 ], [ -94.876953865973405, 29.514072162601664 ], [ -94.876603866245489, 29.51419216309333 ], [ -94.875555865248486, 29.514555163246431 ], [ -94.875206865321672, 29.514676163390391 ], [ -94.873970865494059, 29.514899163593203 ], [ -94.871353864268215, 29.515305163745278 ], [ -94.867956863214062, 29.515914163311734 ], [ -94.863975862973405, 29.516246163486706 ], [ -94.86298986262716, 29.516334163726135 ], [ -94.862798861820096, 29.516351164085815 ], [ -94.857946861020309, 29.51678516378114 ], [ -94.848452859041387, 29.517094164856882 ], [ -94.837344856251519, 29.517007164887293 ], [ -94.833386854468387, 29.516911164713516 ], [ -94.830334854281276, 29.517200165454838 ], [ -94.828123853885771, 29.51777916495918 ], [ -94.825564852894104, 29.518932165238436 ], [ -94.825230852392153, 29.519083165445053 ], [ -94.822946852155866, 29.52040416613595 ], [ -94.820775851627175, 29.521999166793311 ], [ -94.818744851598183, 29.523722166462445 ], [ -94.816662850380595, 29.525865167687094 ], [ -94.815886850290369, 29.526755167665943 ], [ -94.81586785101706, 29.526775167201514 ], [ -94.815814850370558, 29.526835167223972 ], [ -94.815797851079523, 29.52685616742793 ], [ -94.815784850234152, 29.526869167947499 ], [ -94.815749850263373, 29.526911167696628 ], [ -94.815737851188686, 29.526925167437678 ], [ -94.814965850942343, 29.527810167461464 ], [ -94.814295850264514, 29.528675168220857 ], [ -94.813651850669615, 29.529509167822017 ], [ -94.812367849581818, 29.531361168339934 ], [ -94.811465849733835, 29.532839168588914 ], [ -94.811229849375025, 29.533228169390437 ], [ -94.810565849741891, 29.534358169630952 ], [ -94.810048849551819, 29.535241169519704 ], [ -94.809460849789531, 29.536339169327601 ], [ -94.809440849460756, 29.536374170162016 ], [ -94.80938484914013, 29.536482170062111 ], [ -94.809365849541706, 29.536518170123802 ], [ -94.809269849895188, 29.536698169690471 ], [ -94.809165849795448, 29.536893169508577 ], [ -94.808756849676527, 29.537656169934085 ], [ -94.808752849788178, 29.537666170113038 ], [ -94.807638848973738, 29.539911170545334 ], [ -94.806995848584179, 29.541105170843906 ], [ -94.806791848996156, 29.541485170565927 ], [ -94.806371849025766, 29.542236171260598 ], [ -94.806346849273012, 29.54227917127524 ], [ -94.806274849335963, 29.542408171482361 ], [ -94.806250849281128, 29.542452170706689 ], [ -94.806188848480772, 29.542564171282596 ], [ -94.805436848529567, 29.543596171207287 ], [ -94.804255848662194, 29.544858171407316 ], [ -94.80423484826926, 29.544872172083767 ], [ -94.802995847906587, 29.545726171433806 ], [ -94.801859847899522, 29.54619717185296 ], [ -94.800558847729889, 29.546726172376076 ], [ -94.798818846760042, 29.54744617234736 ], [ -94.798159846544721, 29.547775172523806 ], [ -94.796826846278663, 29.548700172919823 ], [ -94.795968846484897, 29.5493771732299 ], [ -94.795294846245156, 29.54990917255914 ], [ -94.794510846740977, 29.550489172728458 ], [ -94.793825846582067, 29.550948172876563 ], [ -94.793341845802004, 29.551072173083394 ], [ -94.793173846143588, 29.551116173479951 ], [ -94.792655846012934, 29.550984173649745 ], [ -94.79253684573915, 29.550942173610885 ], [ -94.792156845622188, 29.550811173036081 ], [ -94.791617845238534, 29.550421173194252 ], [ -94.791299844991158, 29.549981172770753 ], [ -94.790960845014283, 29.549355173232531 ], [ -94.790894844886409, 29.549188172922261 ], [ -94.790717845549139, 29.548739173361565 ], [ -94.788086844812341, 29.548970173258525 ], [ -94.785160843733365, 29.549199173221826 ], [ -94.782084843352564, 29.549851173396458 ], [ -94.779983842702876, 29.550471173567217 ], [ -94.779008842673448, 29.550700173576114 ], [ -94.776719841971627, 29.55034117344151 ], [ -94.774056841279119, 29.549982173612744 ], [ -94.774956841166286, 29.551581173610106 ], [ -94.77619484194561, 29.553049174648457 ], [ -94.778633842153013, 29.553343173999341 ], [ -94.779983842233463, 29.554746174508619 ], [ -94.78020884310537, 29.556704174623523 ], [ -94.778895842417469, 29.557618175331157 ], [ -94.776569841791542, 29.558336175434516 ], [ -94.774206840919831, 29.558303175822164 ], [ -94.772518840596149, 29.557096175605267 ], [ -94.773869840880835, 29.554975174967048 ], [ -94.773869840669832, 29.553930174635632 ], [ -94.77251884091713, 29.552234174513941 ], [ -94.771430840239915, 29.55050417401781 ], [ -94.769480839890093, 29.551581174387707 ], [ -94.768017839154027, 29.553212174254242 ], [ -94.766442839217078, 29.554617174637265 ], [ -94.763891838714869, 29.5568691758852 ], [ -94.760965837968783, 29.560034176063766 ], [ -94.758039837663461, 29.562971177228487 ], [ -94.755000837034672, 29.566038177966309 ], [ -94.751737835483226, 29.56877917824238 ], [ -94.750724835616836, 29.56943217895995 ], [ -94.748923835186147, 29.570835178480394 ], [ -94.744721834905405, 29.574457179904407 ], [ -94.741869833893148, 29.577100180483203 ], [ -94.739092833602072, 29.580331180747631 ], [ -94.737029833328748, 29.58372418215081 ], [ -94.735716832995152, 29.586237182690454 ], [ -94.734440832604818, 29.588162183059879 ], [ -94.733428832021971, 29.589827183535856 ], [ -94.731101831678757, 29.593971184022585 ], [ -94.727761831138722, 29.599486185950074 ], [ -94.725772830376513, 29.602553185799017 ], [ -94.722967829762794, 29.606798187072677 ], [ -94.720632829486263, 29.610515188124175 ], [ -94.717930829507068, 29.615573188963168 ], [ -94.714589829148849, 29.620859190305843 ], [ -94.712187828110515, 29.624775191595344 ], [ -94.711624827641543, 29.625656191594782 ], [ -94.711211828394667, 29.627809191832359 ], [ -94.710535827816543, 29.630387192511161 ], [ -94.709447827774582, 29.633520193397228 ], [ -94.708884828128404, 29.636130193362195 ], [ -94.707945827551114, 29.639557194864217 ], [ -94.707194827329118, 29.641808195370572 ], [ -94.706481827308309, 29.64383119516976 ], [ -94.706315827346842, 29.645087195879785 ], [ -94.706262828008249, 29.646033195509933 ], [ -94.705598827626972, 29.648986196407524 ], [ -94.704563827391866, 29.652770197576455 ], [ -94.704432827091267, 29.653362197072791 ], [ -94.703634827275735, 29.656970198391313 ], [ -94.703527827517462, 29.657385198376009 ], [ -94.703129827154186, 29.659692199224846 ], [ -94.702227827467794, 29.664099199328476 ], [ -94.701616827441768, 29.667976200519561 ], [ -94.701271827451748, 29.669775200966644 ], [ -94.701111827226384, 29.672164201715294 ], [ -94.700899827742646, 29.675948201958313 ], [ -94.700474827281226, 29.678833202650679 ], [ -94.700049827347698, 29.681648203655033 ], [ -94.699385827594142, 29.683724203974414 ], [ -94.69869582721968, 29.68583520444027 ], [ -94.697580827463653, 29.688650204792019 ], [ -94.696437827566839, 29.691465205846004 ], [ -94.695322827066633, 29.693980205908471 ], [ -94.694552826468396, 29.695803206763483 ], [ -94.694074827043153, 29.697257206831956 ], [ -94.694047826654639, 29.697834207039747 ], [ -94.694074827302202, 29.700764207443086 ], [ -94.69415482676618, 29.703510208297939 ], [ -94.694133826954953, 29.705151208341949 ], [ -94.694274827086232, 29.706863208956417 ], [ -94.694791827567727, 29.711997210160703 ], [ -94.695394827434541, 29.717024210491839 ], [ -94.696408827896519, 29.721211211593111 ], [ -94.698219829425042, 29.72768421344119 ], [ -94.698304829050485, 29.727986213130301 ], [ -94.699131829870581, 29.730822213251042 ], [ -94.699760829785518, 29.733416214328091 ], [ -94.69981382974143, 29.73495721472343 ], [ -94.699940829799019, 29.738559215267426 ], [ -94.699340829633755, 29.740501215774977 ], [ -94.698280830214287, 29.74223221627372 ], [ -94.696259829531854, 29.745636216686563 ], [ -94.696546829914027, 29.746604217457335 ], [ -94.696837829345938, 29.747585217514686 ], [ -94.696951829411418, 29.747969216817616 ], [ -94.696992829915985, 29.74811421721067 ], [ -94.69747383000815, 29.748303217074099 ], [ -94.698144830007777, 29.747346217155719 ], [ -94.700019830236883, 29.744670216125012 ], [ -94.701202830817522, 29.742206216019671 ], [ -94.701362830337942, 29.742155216128896 ], [ -94.701884830964943, 29.742066216042907 ], [ -94.702098830654975, 29.742031215637184 ], [ -94.702311831061792, 29.741997215689281 ], [ -94.702572831250066, 29.7419532160513 ], [ -94.702829831147412, 29.741911215591209 ], [ -94.703086831508941, 29.741868216112177 ], [ -94.704257831336022, 29.741673215498373 ], [ -94.704873831144553, 29.7410712152058 ], [ -94.706374831645249, 29.739141214796845 ], [ -94.707802832310577, 29.737330215155449 ], [ -94.708481831928154, 29.736510214273192 ], [ -94.709756832079051, 29.735037214175296 ], [ -94.711522832419575, 29.73281821319377 ], [ -94.712781832734564, 29.731301213157092 ], [ -94.714228833801428, 29.728837212764887 ], [ -94.714938833620167, 29.727773212605054 ], [ -94.715318833220039, 29.727206212208525 ], [ -94.716727834030479, 29.727026212594271 ], [ -94.718719834164261, 29.727287212595979 ], [ -94.719395835140162, 29.728315212275181 ], [ -94.719301834655809, 29.729490212926866 ], [ -94.719226834168765, 29.730534212917743 ], [ -94.718531834611511, 29.731432213031766 ], [ -94.718042834452845, 29.73250821299715 ], [ -94.717385834442268, 29.733438213722483 ], [ -94.716276833875312, 29.734091213981429 ], [ -94.716216833663182, 29.734088213453198 ], [ -94.714585833547815, 29.734009213520107 ], [ -94.713627833332822, 29.734107213942899 ], [ -94.712180833040392, 29.735674214061433 ], [ -94.711222832948025, 29.736506214204304 ], [ -94.710639832531527, 29.737109214222055 ], [ -94.710484832234883, 29.737479214609888 ], [ -94.710298833067327, 29.737986214644994 ], [ -94.709780832523407, 29.738252214999303 ], [ -94.709395832941098, 29.738851214803468 ], [ -94.709328832073069, 29.739324214961172 ], [ -94.708837832367792, 29.739694215007276 ], [ -94.708168832223578, 29.740004214982907 ], [ -94.708230832170926, 29.740608215507883 ], [ -94.70842583274667, 29.742514216123109 ], [ -94.708102832367018, 29.742971215725241 ], [ -94.707627832584535, 29.743646215643867 ], [ -94.707752831798459, 29.744368216499215 ], [ -94.707877832818852, 29.745090216192626 ], [ -94.708133831993948, 29.745842216812036 ], [ -94.70863283272061, 29.745626216801824 ], [ -94.708826832892228, 29.745567216409306 ], [ -94.709521833194444, 29.745359216043912 ], [ -94.710068832884943, 29.745461216224506 ], [ -94.71010583291924, 29.745494216398718 ], [ -94.710280832832737, 29.745650216032942 ], [ -94.710319833546365, 29.745834216533108 ], [ -94.710224833224856, 29.746091216497362 ], [ -94.710122833020137, 29.746152216241882 ], [ -94.709928832651386, 29.746271216910873 ], [ -94.70961083263353, 29.746329216102534 ], [ -94.709414832373056, 29.746344216748092 ], [ -94.70930483261715, 29.746335216875593 ], [ -94.70921383250429, 29.746329216209535 ], [ -94.709057832926959, 29.746276216121434 ], [ -94.708828832342505, 29.746149216042017 ], [ -94.708537832626774, 29.746111216094771 ], [ -94.708247832766489, 29.746178216594661 ], [ -94.7080018327066, 29.746246216330324 ], [ -94.707549832580668, 29.746315216871796 ], [ -94.70715783234435, 29.746419217042838 ], [ -94.706765831891644, 29.746615216729325 ], [ -94.706393831662638, 29.746794216588636 ], [ -94.705915832392492, 29.746915216426608 ], [ -94.705337831729508, 29.74715221652875 ], [ -94.70505883148104, 29.747313216693943 ], [ -94.704872831626091, 29.747435216833793 ], [ -94.704544831494317, 29.74753421665697 ], [ -94.704236831709736, 29.747548216895076 ], [ -94.704014831099869, 29.747658217372351 ], [ -94.703730831069848, 29.74783621668502 ], [ -94.703367831380802, 29.747891216961609 ], [ -94.703043831031579, 29.747836216958778 ], [ -94.702584831441769, 29.747733216737124 ], [ -94.702268831149183, 29.747816216630337 ], [ -94.702000830697457, 29.747953217404643 ], [ -94.701731830977835, 29.748104216704267 ], [ -94.702047831080378, 29.748207217516555 ], [ -94.702245831395842, 29.748433217464733 ], [ -94.702324831464125, 29.74862521737613 ], [ -94.702300830933765, 29.748954217542643 ], [ -94.702173830964696, 29.749194217123716 ], [ -94.701944831542065, 29.749352216993753 ], [ -94.701526830858384, 29.749359217673668 ], [ -94.701146830815105, 29.749304217525829 ], [ -94.700830830277766, 29.749435217511206 ], [ -94.700585830554886, 29.74962021763745 ], [ -94.700427830236805, 29.749778217552631 ], [ -94.70040483075438, 29.74994921753855 ], [ -94.700759831164504, 29.750093217917865 ], [ -94.700933830966008, 29.750223217424523 ], [ -94.700988830633378, 29.750443217892016 ], [ -94.700980830661038, 29.750649217698196 ], [ -94.700909830383267, 29.7507652181243 ], [ -94.700783831250618, 29.750868217606705 ], [ -94.700555831130529, 29.7509982175925 ], [ -94.700207831146045, 29.751011217672399 ], [ -94.699970830626256, 29.751025217492678 ], [ -94.699694830433515, 29.751121218085139 ], [ -94.699417830785634, 29.751354217943373 ], [ -94.699180830274969, 29.751608217697886 ], [ -94.699125830046185, 29.751903217789842 ], [ -94.69918883016912, 29.752164218484559 ], [ -94.6993858305771, 29.752315218095667 ], [ -94.699409830306166, 29.75257521852717 ], [ -94.701938830885993, 29.753975217913961 ], [ -94.70238883170299, 29.753865218146736 ], [ -94.702783831978323, 29.753844218189656 ], [ -94.703123832065998, 29.753913217954548 ], [ -94.703352831773216, 29.754105218266549 ], [ -94.703352831383853, 29.754325218391195 ], [ -94.70327383146865, 29.754633218257442 ], [ -94.703178831375936, 29.7547912185799 ], [ -94.70318683126348, 29.754894218618684 ], [ -94.703201831346703, 29.755068218782018 ], [ -94.703176831448388, 29.755334218593877 ], [ -94.703249831828202, 29.755362218669529 ], [ -94.703368831690284, 29.755299218557788 ], [ -94.703807831308467, 29.75517821840312 ], [ -94.704279831669268, 29.755299218237099 ], [ -94.704717832453781, 29.755674218823764 ], [ -94.704885832346221, 29.756102218813492 ], [ -94.704910832167144, 29.756481218795571 ], [ -94.704877832177814, 29.756735218952471 ], [ -94.704717831936762, 29.756897218810597 ], [ -94.704551831810008, 29.756989219323806 ], [ -94.704369831948213, 29.757002219016705 ], [ -94.704334832379345, 29.757343218644035 ], [ -94.704320831616911, 29.757484218793319 ], [ -94.704381831910908, 29.75802021881972 ], [ -94.704536832012977, 29.758452218777059 ], [ -94.704801832284801, 29.758904219185418 ], [ -94.704806832590236, 29.758912218859436 ], [ -94.704975832382544, 29.759172218922199 ], [ -94.705330832239611, 29.759169219504088 ], [ -94.705599831959915, 29.759402219665194 ], [ -94.705907832787148, 29.759601219662102 ], [ -94.706081832214423, 29.759807219716787 ], [ -94.706160832607026, 29.760040219645873 ], [ -94.70618483304402, 29.760225219687044 ], [ -94.706381832243579, 29.760534219256034 ], [ -94.706531833228752, 29.760891219605135 ], [ -94.706508833143943, 29.761090219613124 ], [ -94.706674833069769, 29.76122021950302 ], [ -94.70669783277522, 29.761426219837734 ], [ -94.706824832961303, 29.761549219590016 ], [ -94.707132833294025, 29.7616592198513 ], [ -94.707337832919009, 29.761776219818845 ], [ -94.707567832593568, 29.76167321930124 ], [ -94.707638833523447, 29.761529219574918 ], [ -94.70781283268343, 29.761419219665314 ], [ -94.708064833184054, 29.76136421928646 ], [ -94.708167833144557, 29.761220219636634 ], [ -94.708262832800813, 29.761090219471825 ], [ -94.708412833144749, 29.760994219610239 ], [ -94.708515832749541, 29.76088421972025 ], [ -94.708546833343959, 29.760678219626826 ], [ -94.708744833719948, 29.7604932192543 ], [ -94.708926833067508, 29.760431219054738 ], [ -94.709179833369831, 29.760342219768972 ], [ -94.709266833052979, 29.76024621914878 ], [ -94.709352833094556, 29.760081219471996 ], [ -94.709487833264077, 29.759841219133875 ], [ -94.709598833255598, 29.759622219361926 ], [ -94.709843833769028, 29.759437219306648 ], [ -94.710135833420949, 29.75934021932984 ], [ -94.710396833903062, 29.759485219061276 ], [ -94.710743833715966, 29.759711219685613 ], [ -94.710916833936324, 29.759964219054702 ], [ -94.711045834223057, 29.760283219174312 ], [ -94.711839834459141, 29.759976219382843 ], [ -94.71310983446655, 29.759486219287201 ], [ -94.715374834892842, 29.759336218981101 ], [ -94.715967835454663, 29.759297218919105 ], [ -94.716223835185417, 29.759035218610133 ], [ -94.716782835471975, 29.758987219018486 ], [ -94.717017835725173, 29.759103218487056 ], [ -94.717218835610041, 29.759268219161335 ], [ -94.717408835091391, 29.75934621898249 ], [ -94.717587835443808, 29.759511219149047 ], [ -94.717609835314036, 29.759646219358821 ], [ -94.717788835818567, 29.759699218682535 ], [ -94.717881835468646, 29.759683218901923 ], [ -94.717903835864107, 29.759680218627473 ], [ -94.71793183581606, 29.759675218916524 ], [ -94.718045835796389, 29.759655218936835 ], [ -94.718268835897206, 29.759390219108155 ], [ -94.718849835355329, 29.759108218794623 ], [ -94.718879835814391, 29.759102219274538 ], [ -94.719542835537666, 29.758992218368828 ], [ -94.720134836301739, 29.758982218610047 ], [ -94.720861835950473, 29.758905218470431 ], [ -94.721442836212404, 29.758905218940761 ], [ -94.722068836459442, 29.758769218655964 ], [ -94.722660836903827, 29.758701218631789 ], [ -94.723208836481447, 29.758662218935964 ], [ -94.723437837050653, 29.758665218754505 ], [ -94.723915837305952, 29.758679218147368 ], [ -94.724125837070901, 29.758686218416585 ], [ -94.724762836928321, 29.758832218787106 ], [ -94.725097837049333, 29.759268218589302 ], [ -94.725052837245869, 29.759589218528159 ], [ -94.725052837196827, 29.759880218475097 ], [ -94.725086837906559, 29.76015121847648 ], [ -94.725711837978636, 29.760481218769893 ], [ -94.72619283737923, 29.760636218924585 ], [ -94.726807837983387, 29.761121219362575 ], [ -94.727019838407259, 29.761509218696318 ], [ -94.727377838033206, 29.761994219008788 ], [ -94.727567838235515, 29.762363218847973 ], [ -94.727723838752169, 29.763081219570275 ], [ -94.727611837818003, 29.763547219892683 ], [ -94.727399838172445, 29.763925219126076 ], [ -94.727298838185803, 29.764138219631143 ], [ -94.727120838168887, 29.764798220085417 ], [ -94.726784838262716, 29.765768220286493 ], [ -94.726516838170156, 29.766448220010613 ], [ -94.724013837613981, 29.769872221263782 ], [ -94.723352838028731, 29.770909221118018 ], [ -94.721755836885237, 29.773406221819357 ], [ -94.720491837112334, 29.775066221918877 ], [ -94.720080836936347, 29.77566922227485 ], [ -94.720775837579112, 29.776218222072206 ], [ -94.721471837118614, 29.776218222555286 ], [ -94.721977837125081, 29.776410222329787 ], [ -94.722435837503227, 29.776657222284882 ], [ -94.722609837938748, 29.776932222082532 ], [ -94.722878837230439, 29.777082222475123 ], [ -94.723478837938117, 29.776973222631508 ], [ -94.723953838300346, 29.776959222256018 ], [ -94.724237838237556, 29.77679422237977 ], [ -94.72468083827583, 29.776479222032762 ], [ -94.725438838518841, 29.776273222003613 ], [ -94.726039838749045, 29.776163221695079 ], [ -94.726450838198801, 29.776163221780877 ], [ -94.727114838575261, 29.776067221805636 ], [ -94.727588838560919, 29.775971222400027 ], [ -94.728078839158783, 29.775697222097172 ], [ -94.728534839310612, 29.775612221666577 ], [ -94.728821839123782, 29.77556022221772 ], [ -94.729564839140878, 29.775628221997273 ], [ -94.730038839400237, 29.775683222224021 ], [ -94.730354839095611, 29.775957221751284 ], [ -94.730417839466682, 29.776369221924753 ], [ -94.730416839335632, 29.776636221636206 ], [ -94.730417839849864, 29.776863222034198 ], [ -94.730281839499213, 29.777022222197232 ], [ -94.730105839551044, 29.777412222099223 ], [ -94.730073839410181, 29.777865222461344 ], [ -94.729646839641475, 29.77835922217535 ], [ -94.729172839705413, 29.778743222489705 ], [ -94.728903839604811, 29.779237223086575 ], [ -94.728477839424954, 29.77967622278495 ], [ -94.727876839233105, 29.780047222481976 ], [ -94.726959838421351, 29.780390222499253 ], [ -94.726675839169616, 29.780541222584198 ], [ -94.72658083854553, 29.780774223304981 ], [ -94.726706838566031, 29.780993222998365 ], [ -94.726959838610938, 29.781446222725624 ], [ -94.726833838821676, 29.781871222888302 ], [ -94.726769839230599, 29.782434223751942 ], [ -94.726595838729139, 29.782832223301661 ], [ -94.726548839003854, 29.783531223736421 ], [ -94.726548838598731, 29.78447822378169 ], [ -94.726359838984777, 29.792291225502101 ], [ -94.726343839378373, 29.793135226036757 ], [ -94.726343839636002, 29.793862225666025 ], [ -94.726565839772476, 29.794232225920009 ], [ -94.726612839641987, 29.794795226020934 ], [ -94.726833839443131, 29.794822225744834 ], [ -94.727071839967664, 29.794493226032476 ], [ -94.727972839238348, 29.793272225920088 ], [ -94.728683840296839, 29.792215225569876 ], [ -94.729094839604315, 29.791392225011503 ], [ -94.729489840130711, 29.790583225431966 ], [ -94.729742840502638, 29.789801225072907 ], [ -94.729916840123153, 29.789060225095184 ], [ -94.730122839938844, 29.788689224882503 ], [ -94.730991840411292, 29.788497224395279 ], [ -94.732019840909686, 29.788497224758046 ], [ -94.732936840449099, 29.788497224828458 ], [ -94.733608841220857, 29.788716224398541 ], [ -94.734268841354606, 29.788407224042633 ], [ -94.734314840672226, 29.788384224336486 ], [ -94.734908840763339, 29.788105224620189 ], [ -94.73724284141143, 29.788318223807046 ], [ -94.738817842522977, 29.789483224617783 ], [ -94.739396842564716, 29.789912224293492 ], [ -94.741328842511365, 29.789571224500953 ], [ -94.74142484321807, 29.78938022415484 ], [ -94.742128842768011, 29.788930224133406 ], [ -94.742740843171276, 29.788769223949302 ], [ -94.743524843859703, 29.788561223674979 ], [ -94.744136843756451, 29.788526224115675 ], [ -94.744534843704344, 29.78859622413826 ], [ -94.74506684383941, 29.788780224432852 ], [ -94.745478843694798, 29.788896224266637 ], [ -94.745970844064388, 29.789080223999736 ], [ -94.746356844241035, 29.789080223747071 ], [ -94.746582843857595, 29.788965224137563 ], [ -94.746715844037737, 29.788446224084478 ], [ -94.747007843880652, 29.787892224233921 ], [ -94.747273844214305, 29.787419224146138 ], [ -94.747525844942942, 29.787061224020192 ], [ -94.747858844477804, 29.786565223237979 ], [ -94.748097844821373, 29.786011223207257 ], [ -94.748296844650113, 29.785550223635305 ], [ -94.748735844708449, 29.785077222758254 ], [ -94.748881845164263, 29.784685222955865 ], [ -94.749014845230462, 29.784142222616214 ], [ -94.749041844913933, 29.783854222993615 ], [ -94.749081845091197, 29.783716222509515 ], [ -94.749266845063772, 29.782937222346039 ], [ -94.749771844981069, 29.782233222875785 ], [ -94.750420845379935, 29.781574222811017 ], [ -94.750476845488379, 29.7815182225334 ], [ -94.751140845390481, 29.781010222325914 ], [ -94.75251084570283, 29.780779222030439 ], [ -94.753746845516503, 29.780791222166759 ], [ -94.754424846006074, 29.780710222143661 ], [ -94.755102846060069, 29.780526222166056 ], [ -94.755780846426816, 29.780329221826033 ], [ -94.756630846915584, 29.780168221573131 ], [ -94.757268846940619, 29.780064221560991 ], [ -94.757747847151592, 29.779972222289789 ], [ -94.75842584725217, 29.779602222096283 ], [ -94.759263846906236, 29.779233222059297 ], [ -94.759861847281613, 29.779118221640346 ], [ -94.760419847743194, 29.779048221726161 ], [ -94.760658847179442, 29.778898221806259 ], [ -94.760884847640384, 29.778379221344647 ], [ -94.761084847076646, 29.778010221340423 ], [ -94.761283847470338, 29.777733221124475 ], [ -94.761655847745018, 29.777641220992372 ], [ -94.762094847593119, 29.777618221463651 ], [ -94.762666847985415, 29.777652221297753 ], [ -94.763330848229486, 29.777964221024355 ], [ -94.763769848298224, 29.778125221409265 ], [ -94.764048848733779, 29.778183221269341 ], [ -94.764354848452385, 29.77774522092994 ], [ -94.764487848458231, 29.777422221420093 ], [ -94.764633848676368, 29.777133221160415 ], [ -94.764965849006003, 29.777053220971347 ], [ -94.7653638488203, 29.777060221216932 ], [ -94.765682849232192, 29.777060220753569 ], [ -94.765802848545476, 29.776748220862402 ], [ -94.766134848544908, 29.776437220729573 ], [ -94.76657384879978, 29.776183220484715 ], [ -94.767211849323786, 29.776067220837621 ], [ -94.768793849255601, 29.775941220301959 ], [ -94.769244849192603, 29.77584822080934 ], [ -94.76967084975648, 29.775294220751942 ], [ -94.770015849542546, 29.774845220636895 ], [ -94.770481849546186, 29.774175220006111 ], [ -94.770587850341968, 29.774014220296948 ], [ -94.770773850223577, 29.773812220567454 ], [ -94.771212849659321, 29.773662220250785 ], [ -94.771783849782793, 29.773466219599108 ], [ -94.772421849849252, 29.773443220352199 ], [ -94.773006850555362, 29.773547220339125 ], [ -94.773312850267715, 29.773327220325985 ], [ -94.773870850932667, 29.773235219912721 ], [ -94.774362851153853, 29.773224219483932 ], [ -94.774827851058319, 29.773200220284561 ], [ -94.775425851032892, 29.772785219700115 ], [ -94.775890851315808, 29.772358219973977 ], [ -94.776249850748343, 29.772058219901695 ], [ -94.77683485148448, 29.771724219602067 ], [ -94.777499851429042, 29.771551219264136 ], [ -94.777897851472389, 29.771435219276388 ], [ -94.778296852180333, 29.771389219784588 ], [ -94.778854851621873, 29.771355219441816 ], [ -94.779506851707083, 29.771262219090108 ], [ -94.780144852267796, 29.770928219239028 ], [ -94.780702851866081, 29.770547219189439 ], [ -94.781074852335308, 29.770120218727079 ], [ -94.781540852696892, 29.769889218718493 ], [ -94.782098852404715, 29.769763219004737 ], [ -94.782869852601735, 29.769624218740379 ], [ -94.783480852905683, 29.769486219114974 ], [ -94.784437853551282, 29.769405218609254 ], [ -94.785288853434139, 29.76930121831332 ], [ -94.785620853144607, 29.769232218549135 ], [ -94.785713853243038, 29.768828218436813 ], [ -94.785979853609973, 29.768378218569318 ], [ -94.786510853283488, 29.768032218515021 ], [ -94.787095854231723, 29.767951218678274 ], [ -94.787507853942458, 29.767894218299226 ], [ -94.787973854197531, 29.767715218578356 ], [ -94.788770854641413, 29.767565217910171 ], [ -94.789767854949986, 29.76741521803423 ], [ -94.790365854712718, 29.767380218237559 ], [ -94.791309854945993, 29.767357218209426 ], [ -94.791854854917133, 29.76735721845068 ], [ -94.792651854994034, 29.767057217661357 ], [ -94.792943854790906, 29.766723217631171 ], [ -94.792811855327813, 29.766307218160875 ], [ -94.792664854990136, 29.765915217321115 ], [ -94.792904855679154, 29.765557217314491 ], [ -94.793329855458865, 29.76526921717797 ], [ -94.793980855396697, 29.765038217944522 ], [ -94.794445855111363, 29.76498121729017 ], [ -94.795030855458833, 29.765280217608748 ], [ -94.795336855877778, 29.765650217521333 ], [ -94.795495855791486, 29.765880217953921 ], [ -94.79593485597276, 29.765857217712018 ], [ -94.796810856215728, 29.765793217609136 ], [ -94.79732985611588, 29.765758217780963 ], [ -94.797634856515813, 29.765608217282594 ], [ -94.797820856520175, 29.765320217653453 ], [ -94.798086856531256, 29.76510121702886 ], [ -94.798830856810184, 29.764916217730242 ], [ -94.799349857352283, 29.764593217463741 ], [ -94.800571856834736, 29.76395921663179 ], [ -94.801728857801081, 29.763382216834646 ], [ -94.80277885773549, 29.763013216486659 ], [ -94.804333857945934, 29.762666216278596 ], [ -94.804731858541373, 29.762609216597927 ], [ -94.805210858162312, 29.762453216973356 ], [ -94.805330858498834, 29.762211216799304 ], [ -94.80535785869094, 29.761865216219686 ], [ -94.805702858547065, 29.761588216608317 ], [ -94.806114858279514, 29.761242216041904 ], [ -94.8064868586264, 29.761196216183514 ], [ -94.807004858356109, 29.76123021618093 ], [ -94.807310859194985, 29.761115215921841 ], [ -94.807589858988422, 29.760757216175236 ], [ -94.808094859325649, 29.760584215812599 ], [ -94.808426858952714, 29.760573216052528 ], [ -94.808706859088986, 29.760515216209768 ], [ -94.809038859393937, 29.760273216251324 ], [ -94.809569859593012, 29.760054215688452 ], [ -94.81002185963402, 29.759927216294173 ], [ -94.810300859774941, 29.75975421615302 ], [ -94.810353858984428, 29.75931521587945 ], [ -94.810566859797063, 29.758796215489543 ], [ -94.810792859458005, 29.758600215536788 ], [ -94.811284859389133, 29.758519216032258 ], [ -94.811908859397263, 29.7584042153475 ], [ -94.812187859396204, 29.758519215337884 ], [ -94.812440860355053, 29.758635215863446 ], [ -94.812679860524568, 29.758727215859473 ], [ -94.813038859896253, 29.758658215251199 ], [ -94.813264860290644, 29.758531215826032 ], [ -94.81337185986699, 29.758248215908392 ], [ -94.81345086036616, 29.757752215681489 ], [ -94.813769860261175, 29.757371214958628 ], [ -94.814248860367968, 29.756979215493526 ], [ -94.815098860569762, 29.756679215057204 ], [ -94.815590860314103, 29.756529215444964 ], [ -94.815895861004961, 29.756113214889233 ], [ -94.816135860686401, 29.75560621451854 ], [ -94.816414860714829, 29.755052214275185 ], [ -94.816852861335292, 29.754648214667842 ], [ -94.817384860877752, 29.754279214380038 ], [ -94.817902861259242, 29.754037214885681 ], [ -94.81860686086506, 29.753760214454861 ], [ -94.81884686112528, 29.753564214127092 ], [ -94.818859860895969, 29.753252214058971 ], [ -94.819204861928966, 29.752952214526932 ], [ -94.819683861327235, 29.752571214329731 ], [ -94.820068861411187, 29.752283214133115 ], [ -94.820294862162328, 29.751944213569388 ], [ -94.82099886171099, 29.751297214086151 ], [ -94.821702862193419, 29.750732213349515 ], [ -94.822579862113315, 29.749901213554423 ], [ -94.822832861987564, 29.749544213673968 ], [ -94.823417862556354, 29.749290213401409 ], [ -94.823284862478033, 29.748921213296644 ], [ -94.823430862232115, 29.748148213430667 ], [ -94.823829862168623, 29.747629212982279 ], [ -94.824639862771875, 29.74696021284273 ], [ -94.825051863061304, 29.746510212357244 ], [ -94.825264862845714, 29.746221212442133 ], [ -94.825397862857045, 29.746025212190517 ], [ -94.826035863233827, 29.745275212788464 ], [ -94.827483862845753, 29.743960212085298 ], [ -94.828998863323875, 29.742449211474408 ], [ -94.830592863653735, 29.740995211149404 ], [ -94.831257863501008, 29.740441211433282 ], [ -94.831523863712903, 29.740049211212874 ], [ -94.831576864041253, 29.739645210721235 ], [ -94.831523863674676, 29.739576210874613 ], [ -94.831483864215883, 29.739074210627969 ], [ -94.831656863836486, 29.73847521038833 ], [ -94.832334864549225, 29.738117210404631 ], [ -94.833317864387951, 29.737529210778298 ], [ -94.834220864307397, 29.737263210614344 ], [ -94.834845864564727, 29.737056210700516 ], [ -94.835004864515369, 29.736467210401496 ], [ -94.835031864742035, 29.735579209819416 ], [ -94.835057864909842, 29.735037209845473 ], [ -94.835296864965429, 29.734621209426958 ], [ -94.835828864634948, 29.734229209641171 ], [ -94.836545865194736, 29.73407920936344 ], [ -94.837263865395911, 29.733618209252725 ], [ -94.838286865044921, 29.73299520969093 ], [ -94.839123865817413, 29.732366209038265 ], [ -94.839774866042347, 29.731800208775876 ], [ -94.840278866170394, 29.73123520886471 ], [ -94.84057186637699, 29.730762209270218 ], [ -94.841036865649542, 29.730289208825646 ], [ -94.841952866695109, 29.729643208564845 ], [ -94.8425108659941, 29.729251208619907 ], [ -94.843002866195434, 29.728835208071022 ], [ -94.843281867098582, 29.728385208009264 ], [ -94.843334866677267, 29.728097207944685 ], [ -94.843653867087014, 29.727601208046092 ], [ -94.844211866631809, 29.72695520753614 ], [ -94.844676866967134, 29.726655207745353 ], [ -94.845819867145309, 29.725501207689582 ], [ -94.846908867268851, 29.72454320761279 ], [ -94.848250867418159, 29.723251206678729 ], [ -94.848715868130967, 29.722790207163634 ], [ -94.848768867300606, 29.722351206524646 ], [ -94.849047867562703, 29.721878206741447 ], [ -94.849472867711995, 29.721809206331507 ], [ -94.849911868178879, 29.721267206834003 ], [ -94.850482867769884, 29.720748206917069 ], [ -94.85062886786956, 29.720413206206555 ], [ -94.850961868424704, 29.719859206271476 ], [ -94.851067868053946, 29.719352206616104 ], [ -94.851691867898154, 29.718579205858063 ], [ -94.852555868179252, 29.717690205529522 ], [ -94.853245868878531, 29.71694020594764 ], [ -94.853724868317912, 29.716202205183691 ], [ -94.853857869075256, 29.71541820496186 ], [ -94.853710868712483, 29.71486420536699 ], [ -94.853206868815406, 29.714587204996754 ], [ -94.852913868616994, 29.714402204965328 ], [ -94.852887868867711, 29.714045204934287 ], [ -94.852820868489005, 29.713687205107835 ], [ -94.852900868245371, 29.713157204687249 ], [ -94.853126868802136, 29.712649204603522 ], [ -94.853697868283305, 29.711680204629012 ], [ -94.854308869140411, 29.711092204502155 ], [ -94.854667868328391, 29.710722204213756 ], [ -94.855039868656306, 29.710203203749142 ], [ -94.855384868593262, 29.709673203698536 ], [ -94.855929868958171, 29.709234204015353 ], [ -94.856420868765809, 29.708715203435965 ], [ -94.856739869310303, 29.70845020388898 ], [ -94.856925869181353, 29.707919203196152 ], [ -94.856805869575325, 29.707469203877061 ], [ -94.856858869590809, 29.707169203634255 ], [ -94.856965868852413, 29.707007203055689 ], [ -94.8571918686891, 29.706395203284362 ], [ -94.857496869426512, 29.705992203067353 ], [ -94.858134869211241, 29.70540320329404 ], [ -94.858625869594022, 29.704769203065908 ], [ -94.858877869509016, 29.704227202443938 ], [ -94.859143870059768, 29.703765202684878 ], [ -94.859542870084681, 29.703407202880086 ], [ -94.859860869981844, 29.703188202412008 ], [ -94.859887869401376, 29.702773202266137 ], [ -94.860179869835036, 29.7021852027287 ], [ -94.860631869673369, 29.701758202421601 ], [ -94.860883869888525, 29.701285201855388 ], [ -94.861335869706636, 29.700616201561111 ], [ -94.861587870030746, 29.700327201745655 ], [ -94.861919870025119, 29.699814201729147 ], [ -94.862397870635391, 29.699180201846765 ], [ -94.862517870623904, 29.698776201958253 ], [ -94.862504870530131, 29.698464201117684 ], [ -94.862743870214516, 29.698234201617147 ], [ -94.862915870399036, 29.698014201320447 ], [ -94.863301870101594, 29.697518201603579 ], [ -94.863447870569289, 29.696457200972546 ], [ -94.863765870793557, 29.695857200612249 ], [ -94.864031870221666, 29.695534201035798 ], [ -94.864058870200864, 29.695199200709368 ], [ -94.864005870357659, 29.694669200869793 ], [ -94.863984870037299, 29.694447200658903 ], [ -94.863951869955798, 29.694103200161052 ], [ -94.863832870575678, 29.693688200079269 ], [ -94.863712869819324, 29.692794200571868 ], [ -94.863818870647435, 29.692355199864686 ], [ -94.863964869940219, 29.69172120015082 ], [ -94.863938869955717, 29.691155199927284 ], [ -94.863911870135794, 29.690775199695153 ], [ -94.864164870452001, 29.690198199860298 ], [ -94.864562870099832, 29.68918319956239 ], [ -94.864947870035991, 29.688663199180663 ], [ -94.864947870869045, 29.688202199199786 ], [ -94.864974870098649, 29.687833199125578 ], [ -94.86525387064637, 29.687487198728878 ], [ -94.865399870920626, 29.687210199473011 ], [ -94.865399870450702, 29.686956199168009 ], [ -94.865319870881649, 29.686321199231426 ], [ -94.865160870434423, 29.68572119895099 ], [ -94.865173870122916, 29.685282199035097 ], [ -94.865465870140341, 29.684809198169109 ], [ -94.865638869995649, 29.683736198630399 ], [ -94.865784870626285, 29.683217198599159 ], [ -94.866049870353109, 29.682721197696569 ], [ -94.866182870893638, 29.682144198017411 ], [ -94.866580870147473, 29.680564197994073 ], [ -94.866647869989535, 29.680194197661347 ], [ -94.866381870666189, 29.679889197833443 ], [ -94.866103870771994, 29.679577197466706 ], [ -94.866182870619653, 29.679000197446577 ], [ -94.866302869812898, 29.678435196876251 ], [ -94.866727870758112, 29.678101196806299 ], [ -94.867112870097372, 29.677362197116821 ], [ -94.867377871000997, 29.677005197330441 ], [ -94.867789871003907, 29.676520196788701 ], [ -94.868201870455877, 29.676174196994776 ], [ -94.868294870602398, 29.675955196871339 ], [ -94.869011870885117, 29.674766196637609 ], [ -94.86926387106341, 29.6743171960577 ], [ -94.869449870765536, 29.673809196291899 ], [ -94.869475870813531, 29.673601196255504 ], [ -94.869794871069175, 29.673382195879142 ], [ -94.870219870833552, 29.673035195553098 ], [ -94.870471871451144, 29.672839196035557 ], [ -94.87069787140895, 29.67226219583025 ], [ -94.871042870832994, 29.67165119579931 ], [ -94.871560870903835, 29.671063195917579 ], [ -94.871905871422641, 29.670751195502071 ], [ -94.873153871531414, 29.670093195540176 ], [ -94.875131871902298, 29.669044195389301 ], [ -94.87549087274607, 29.668801195377291 ], [ -94.876193872672687, 29.668640195210571 ], [ -94.876605872053375, 29.668305194999434 ], [ -94.876831872853501, 29.668005194983891 ], [ -94.877402873149563, 29.667717194524243 ], [ -94.878065872962267, 29.667273194333301 ], [ -94.879101873017348, 29.666558193887695 ], [ -94.879765873254769, 29.666177194040745 ], [ -94.880734873370443, 29.665785193675557 ], [ -94.881159873802858, 29.665531194213216 ], [ -94.881504874096976, 29.665254193880678 ], [ -94.881836873442154, 29.664920193482072 ], [ -94.882845873503157, 29.664550193550131 ], [ -94.883190873899125, 29.664285193769093 ], [ -94.883695873714132, 29.664020193256913 ], [ -94.884226874513629, 29.663927193690277 ], [ -94.884584874719096, 29.663881193883554 ], [ -94.885049874419565, 29.663720193234163 ], [ -94.886031875171994, 29.663247193759361 ], [ -94.886549874730676, 29.662877193329408 ], [ -94.886961875256191, 29.66263519296951 ], [ -94.887173875003043, 29.662197193515944 ], [ -94.888355874857311, 29.661654193082448 ], [ -94.89059987556324, 29.660708192879802 ], [ -94.891873875995245, 29.660305192683392 ], [ -94.891966875695175, 29.660260192550833 ], [ -94.892550876645004, 29.659982192298834 ], [ -94.893423876835655, 29.659659192175454 ], [ -94.893878876165104, 29.659463192321528 ], [ -94.894396876649878, 29.659175192186233 ], [ -94.895445877061491, 29.65877119215153 ], [ -94.896626877047424, 29.65835619190684 ], [ -94.897078876966887, 29.658194192333607 ], [ -94.898206877587185, 29.657687191443504 ], [ -94.899082878251363, 29.657340191936338 ], [ -94.899584877495926, 29.657193191420067 ], [ -94.899825877723003, 29.657018192115039 ], [ -94.900263878289422, 29.656845191230506 ], [ -94.900887878430495, 29.656695191500685 ], [ -94.901777878852769, 29.6566601915404 ], [ -94.902494878886955, 29.656464191748473 ], [ -94.903290878734737, 29.656164191098544 ], [ -94.90476487876488, 29.655622191348566 ], [ -94.906051879523133, 29.655172191471383 ], [ -94.906795879267591, 29.654964191363064 ], [ -94.907591879787006, 29.654745191148642 ], [ -94.908242879786513, 29.654733190511134 ], [ -94.909411880448729, 29.654652190496375 ], [ -94.910699880865906, 29.654641190723119 ], [ -94.911575881275027, 29.654802191174234 ], [ -94.912598881542735, 29.655059190972345 ], [ -94.913248881844979, 29.655275191023886 ], [ -94.913858881786666, 29.655471190950038 ], [ -94.914549881993182, 29.655495191161506 ], [ -94.915279882385178, 29.655483190506779 ], [ -94.915890881857095, 29.655621190809406 ], [ -94.916460882667764, 29.655748190706014 ], [ -94.917353882830611, 29.655960190657115 ], [ -94.918964883358726, 29.656234190724486 ], [ -94.919643882768725, 29.656357191145908 ], [ -94.920558883839917, 29.656495190653636 ], [ -94.922169883383262, 29.656714190601726 ], [ -94.923163883887923, 29.657043191120223 ], [ -94.923605883711275, 29.657373191198943 ], [ -94.924158884386898, 29.657743191279348 ], [ -94.924632884211988, 29.658100190916731 ], [ -94.92497988471635, 29.658786191505055 ], [ -94.925311884246327, 29.659156190819452 ], [ -94.926084885283615, 29.659486191012945 ], [ -94.926589885419318, 29.660035191425994 ], [ -94.926589884853769, 29.660721191800839 ], [ -94.926416884569235, 29.661283191395846 ], [ -94.926037885280735, 29.66188719209708 ], [ -94.925832885441366, 29.66227119177011 ], [ -94.92570588466215, 29.662340192209147 ], [ -94.925532885184523, 29.662436191810457 ], [ -94.925153885098368, 29.662394192114771 ], [ -94.924857884450148, 29.662267191520648 ], [ -94.923514884123421, 29.660562191290779 ], [ -94.922895884121473, 29.660460191325591 ], [ -94.922500884413836, 29.660707191492467 ], [ -94.922579883742117, 29.6611321916196 ], [ -94.92283288444014, 29.661901192324805 ], [ -94.922800884550298, 29.662381191719319 ], [ -94.922500883805668, 29.662655192339706 ], [ -94.921663883500344, 29.662751191834982 ], [ -94.92095388370231, 29.662751191855747 ], [ -94.920637883603362, 29.662724192588549 ], [ -94.920669883430435, 29.662861192435049 ], [ -94.920969883621282, 29.663108192259752 ], [ -94.921900883972228, 29.663451191894811 ], [ -94.922405883899629, 29.664000192276191 ], [ -94.922642883888074, 29.664370192475829 ], [ -94.923021884291899, 29.664795192550304 ], [ -94.923463884776268, 29.664988192930746 ], [ -94.924016884652673, 29.665276192765361 ], [ -94.924742885065484, 29.665742192310706 ], [ -94.925279884625112, 29.666016192688843 ], [ -94.92556388497573, 29.6662501923524 ], [ -94.926021884898105, 29.666483192840239 ], [ -94.92655888490151, 29.66684019322339 ], [ -94.927079885336639, 29.667224192987803 ], [ -94.927742885878629, 29.6674501932218 ], [ -94.928188885422358, 29.667508192926345 ], [ -94.928579885645661, 29.667560192978808 ], [ -94.929067885504807, 29.667610192713067 ], [ -94.929973886796219, 29.668760192993922 ], [ -94.930368886286232, 29.66929919297251 ], [ -94.930883887053554, 29.670076193605848 ], [ -94.931724886663403, 29.67133819338844 ], [ -94.931932886664541, 29.671803193415805 ], [ -94.932023886558611, 29.672005193926516 ], [ -94.932050886504967, 29.672175193534162 ], [ -94.931595886608051, 29.672684194167267 ], [ -94.931090886679783, 29.672862194347104 ], [ -94.930774886297002, 29.672958193982041 ], [ -94.930614886789684, 29.673123193754087 ], [ -94.930584886606795, 29.673156193627435 ], [ -94.93070888622195, 29.673487194303902 ], [ -94.930813886383319, 29.673764194157982 ], [ -94.930963886638324, 29.673783193914247 ], [ -94.931485886737235, 29.674037194430618 ], [ -94.932601887315826, 29.675120194078168 ], [ -94.944770890627609, 29.677633194733318 ], [ -94.947718890783875, 29.678242194550382 ], [ -94.956564893889606, 29.680069194933381 ], [ -94.959513894910529, 29.680678194542704 ], [ -94.961326894821923, 29.681052194225874 ], [ -94.966768895833482, 29.682176194884597 ], [ -94.968582897020482, 29.682551194565825 ], [ -94.968749897289086, 29.682589194765033 ], [ -94.969253897064661, 29.682703195002738 ], [ -94.96942189737652, 29.682742194951469 ], [ -94.969477897383726, 29.682754194295253 ], [ -94.96964989749371, 29.682790194337215 ], [ -94.969706897271649, 29.682802194791439 ], [ -94.969662896846458, 29.682671194860838 ], [ -94.9695878968096, 29.682571195048595 ], [ -94.969385897483278, 29.682522194416993 ], [ -94.969246896642559, 29.682385194304551 ], [ -94.969139896696717, 29.682077194691171 ], [ -94.969234896851944, 29.681752194351475 ], [ -94.969372896663799, 29.681681194806153 ], [ -94.969605897320321, 29.681681194767677 ], [ -94.969728897220818, 29.681691194522266 ], [ -94.969920897468427, 29.681708194147728 ], [ -94.970058896708323, 29.681637194796469 ], [ -94.970055897239277, 29.681524194784078 ], [ -94.970744897367567, 29.681152194526767 ], [ -94.972813897828459, 29.680039193582406 ], [ -94.973503897565337, 29.679668193700401 ], [ -94.973751897577031, 29.679534193892675 ], [ -94.974124898015049, 29.679334193476059 ], [ -94.974496898516534, 29.679132193913695 ], [ -94.974745898701954, 29.678998193510314 ], [ -94.975016897992433, 29.678852193395194 ], [ -94.97583389810103, 29.678415193095262 ], [ -94.976105898947807, 29.678270193254409 ], [ -94.976635898651764, 29.67798419300907 ], [ -94.977524898608294, 29.677505193093282 ], [ -94.978210899079343, 29.677100193320989 ], [ -94.978729898976809, 29.676795193129784 ], [ -94.978790899550958, 29.676765193233045 ], [ -94.978851898976941, 29.676736192658403 ], [ -94.979182898793823, 29.676573193330903 ], [ -94.979515898927474, 29.676411193083762 ], [ -94.979759899203401, 29.676290193405528 ], [ -94.980005899173491, 29.676171192527224 ], [ -94.982961900686149, 29.674726192615108 ], [ -94.985917900729149, 29.673282191969367 ], [ -94.986088900636688, 29.673221192193122 ], [ -94.990335902299051, 29.671706191966521 ], [ -94.990861902091439, 29.671372191495013 ], [ -94.99176290273239, 29.670831191718456 ], [ -94.992156902100092, 29.670595191527468 ], [ -94.993285902380663, 29.669945191584418 ], [ -94.993960902336667, 29.669427191188941 ], [ -94.994761903237148, 29.668904190670109 ], [ -94.994781902524181, 29.668897191234841 ], [ -94.995141903511879, 29.668649191098787 ], [ -94.996012903636128, 29.668020190982304 ], [ -94.996485903666667, 29.667767190357349 ], [ -94.996844903129428, 29.667536190470393 ], [ -94.99690790343206, 29.667354190282104 ], [ -94.998826904274907, 29.666267190702651 ], [ -95.000031904373017, 29.665573190528825 ], [ -95.000240903724546, 29.665384190055729 ], [ -95.001079904455679, 29.66472918957966 ], [ -95.001433903989081, 29.664541189590064 ], [ -95.001648904982858, 29.664393190104899 ], [ -95.001718905058283, 29.664305189665633 ], [ -95.00174390481493, 29.664228189698104 ], [ -95.001743904417893, 29.664156190092498 ], [ -95.001693904914802, 29.66406818930497 ], [ -95.001692904776633, 29.664046189320562 ], [ -95.001750904388629, 29.663931189302826 ], [ -95.001744905022136, 29.663760189240051 ], [ -95.001782904765363, 29.663688189881228 ], [ -95.001813904689428, 29.663644189770103 ], [ -95.001883904569851, 29.663628189746223 ], [ -95.001971904827428, 29.663628189278747 ], [ -95.002142904929073, 29.663666189500091 ], [ -95.002205904293689, 29.663705189874229 ], [ -95.00229990472171, 29.663743189550893 ], [ -95.002358904289409, 29.663769189496115 ], [ -95.002370905057958, 29.663767189834157 ], [ -95.002405904542229, 29.663743189207672 ], [ -95.002431905011264, 29.663713189861355 ], [ -95.002431904702561, 29.663686189442362 ], [ -95.002399904502312, 29.663608189425279 ], [ -95.002293904469056, 29.663350189925385 ], [ -95.002285904750011, 29.663242189492227 ], [ -95.00228090431591, 29.663180189628459 ], [ -95.002173904860669, 29.663075189879848 ], [ -95.002022904322487, 29.663004189059112 ], [ -95.002022905063285, 29.662943189875687 ], [ -95.002135904098623, 29.662943189377728 ], [ -95.002287904321264, 29.662883189188801 ], [ -95.002387904671792, 29.662800189351678 ], [ -95.002463904293009, 29.662800189486482 ], [ -95.002545905069823, 29.662757189619526 ], [ -95.00256490469765, 29.662658189156701 ], [ -95.002564904610153, 29.662480189351388 ], [ -95.002564904659735, 29.662432189313417 ], [ -95.002501905154602, 29.662306189730241 ], [ -95.002501904612146, 29.662245189603606 ], [ -95.00260290423256, 29.66217418945245 ], [ -95.002696904265747, 29.662163189469851 ], [ -95.002716904402988, 29.662169188986308 ], [ -95.002847904244589, 29.662212189647239 ], [ -95.002980905005344, 29.662119188883665 ], [ -95.002994904845522, 29.662087188919745 ], [ -95.003055904549072, 29.661948188999748 ], [ -95.003078904475842, 29.661932189661009 ], [ -95.003282904879114, 29.661794188844002 ], [ -95.003691905411316, 29.661443189529717 ], [ -95.003874904730978, 29.661250188964864 ], [ -95.003918905308041, 29.661140188610776 ], [ -95.004013904536549, 29.660975189349251 ], [ -95.004479904602888, 29.660481188703613 ], [ -95.004517904894584, 29.660371188703675 ], [ -95.004599904821703, 29.66024418912658 ], [ -95.004813904886603, 29.660151188543502 ], [ -95.00502190535407, 29.660079188737729 ], [ -95.005210905411772, 29.659915188660989 ], [ -95.005328905362916, 29.659752188517608 ], [ -95.005342905126312, 29.659733188384074 ], [ -95.005443905000789, 29.659640188992331 ], [ -95.005531905418437, 29.659519189088751 ], [ -95.005598905654693, 29.659348188369073 ], [ -95.005663905477007, 29.659183188297057 ], [ -95.005670905343976, 29.659112188421542 ], [ -95.005670905668765, 29.659062188731944 ], [ -95.005651904957887, 29.658974188141261 ], [ -95.005594905090931, 29.658848188439478 ], [ -95.005594904994823, 29.658782188719272 ], [ -95.00569590515579, 29.658633188659596 ], [ -95.005809905521659, 29.658507188459506 ], [ -95.005998904988928, 29.658359188229412 ], [ -95.006080905242499, 29.658249188091144 ], [ -95.006143905266342, 29.6581391879131 ], [ -95.006313905622463, 29.657935188604441 ], [ -95.006395905261385, 29.657869188075374 ], [ -95.006823906057747, 29.657562188436966 ], [ -95.007056905307309, 29.657270188492483 ], [ -95.007113905272917, 29.657188188337027 ], [ -95.007094905214927, 29.65713318826565 ], [ -95.007088905255372, 29.657050188013638 ], [ -95.007138905104526, 29.656984188479711 ], [ -95.007264905834759, 29.65688018839278 ], [ -95.00735290551296, 29.656775188238683 ], [ -95.007440905727577, 29.656627187614134 ], [ -95.007497905624476, 29.656490187986048 ], [ -95.007611905603767, 29.656237188286191 ], [ -95.007630905886373, 29.655973188288691 ], [ -95.007657906099993, 29.655912188255282 ], [ -95.007718905362012, 29.655775187752251 ], [ -95.008096906038929, 29.655148187562524 ], [ -95.008461905953112, 29.654450187486663 ], [ -95.009047905451553, 29.65348218728715 ], [ -95.010018906147636, 29.651673186439922 ], [ -95.010150906095546, 29.651481186921259 ], [ -95.010295906394276, 29.651217186971774 ], [ -95.010396906457956, 29.650997186855314 ], [ -95.010390906548722, 29.650865186344504 ], [ -95.01044690648996, 29.650821186555003 ], [ -95.010610906248957, 29.650744186330421 ], [ -95.010711906687433, 29.650596186548174 ], [ -95.010736906179275, 29.650542186940378 ], [ -95.010815905784526, 29.650372186814309 ], [ -95.010862906678668, 29.650271186847821 ], [ -95.010950906689175, 29.650134186206881 ], [ -95.011020906831263, 29.650068186460555 ], [ -95.011196906133733, 29.650024186922529 ], [ -95.011240905875411, 29.649975186157423 ], [ -95.011347906129927, 29.649821186082974 ], [ -95.011429906598551, 29.649656186183119 ], [ -95.011435906245254, 29.649579186065321 ], [ -95.011434905954488, 29.649551186232422 ], [ -95.011429906826208, 29.649364186443783 ], [ -95.011442905965396, 29.649337186110813 ], [ -95.011467906140695, 29.649299186414723 ], [ -95.011495906407646, 29.649255185946281 ], [ -95.011694906793181, 29.648952186616263 ], [ -95.011964906608313, 29.648384186295981 ], [ -95.011984906339066, 29.648342186230952 ], [ -95.012051906042302, 29.648242186226675 ], [ -95.012349906420496, 29.64780018586216 ], [ -95.012488906152768, 29.647594185597345 ], [ -95.012496906646049, 29.647576185941176 ], [ -95.01277890632295, 29.646984185368773 ], [ -95.01281990653915, 29.646916185952414 ], [ -95.013030906635137, 29.646568185479268 ], [ -95.013055906912399, 29.646527185552937 ], [ -95.013184906826282, 29.646047185374321 ], [ -95.013225906500281, 29.645895185443877 ], [ -95.013300906971622, 29.645734185576163 ], [ -95.013446906834929, 29.645422185832256 ], [ -95.013558906897075, 29.64512218499927 ], [ -95.013665906464624, 29.644836185351597 ], [ -95.013723906880941, 29.644680184953891 ], [ -95.013811906712405, 29.64416318556535 ], [ -95.013805907255531, 29.643976184833523 ], [ -95.013842906969771, 29.643834184849673 ], [ -95.013868907007591, 29.643734185140985 ], [ -95.01390090669716, 29.643696184944549 ], [ -95.01395990665884, 29.643670185255857 ], [ -95.013919906886656, 29.64347518518225 ], [ -95.014022906461122, 29.643048184867926 ], [ -95.014026907071695, 29.643031184534561 ], [ -95.014050906896244, 29.642965184530766 ], [ -95.014141906441523, 29.64272018450869 ], [ -95.014172907296512, 29.642639184701068 ], [ -95.014178907047651, 29.642624184888703 ], [ -95.014196906421049, 29.642541184574359 ], [ -95.014221906317388, 29.642398185195905 ], [ -95.014266906819628, 29.642298185239781 ], [ -95.014282906382647, 29.642262184765961 ], [ -95.014303906449143, 29.642216185023671 ], [ -95.014398906385935, 29.642035184949076 ], [ -95.014574906536751, 29.641700184330297 ], [ -95.014814906527363, 29.641188184647831 ], [ -95.014875906893934, 29.641022184450115 ], [ -95.015129907250341, 29.640314184202385 ], [ -95.015184906881728, 29.640195184672518 ], [ -95.015438907325674, 29.639638184402958 ], [ -95.015589907078294, 29.639330184264377 ], [ -95.015753907249589, 29.638945184353691 ], [ -95.016049907360184, 29.638505183855873 ], [ -95.016112906766779, 29.638307183834545 ], [ -95.016108907271573, 29.6382471839927 ], [ -95.016100906996357, 29.638217183734962 ], [ -95.016049907050075, 29.638230184027751 ], [ -95.016011906947725, 29.638225184309867 ], [ -95.015980907465178, 29.638197184217908 ], [ -95.015967907033556, 29.638153183670969 ], [ -95.015980907412086, 29.637592184172064 ], [ -95.015949907526718, 29.636976183341609 ], [ -95.01592490730647, 29.636916183872639 ], [ -95.015898906829349, 29.636888183610285 ], [ -95.01571090643921, 29.636899184022056 ], [ -95.015666906679186, 29.636877183972022 ], [ -95.015653906764712, 29.636850183725365 ], [ -95.015640907430523, 29.636789183719685 ], [ -95.015641907146545, 29.636311183540194 ], [ -95.015685907327068, 29.63605818362835 ], [ -95.015685906901496, 29.63582718353523 ], [ -95.015641906610284, 29.635656183301862 ], [ -95.015559906690584, 29.635453183584662 ], [ -95.015490906738037, 29.635139183449347 ], [ -95.015440906990491, 29.634699183023542 ], [ -95.015421906935728, 29.634641182981355 ], [ -95.015368906280912, 29.634480182862688 ], [ -95.015339906928318, 29.634392183420196 ], [ -95.015277906887349, 29.634084182857801 ], [ -95.015259906676789, 29.633684183256843 ], [ -95.015253907144739, 29.633554183146625 ], [ -95.015252906238047, 29.633523183284655 ], [ -95.015226907167246, 29.633435182849709 ], [ -95.015206907066116, 29.633393182829639 ], [ -95.01516490686285, 29.633303182891481 ], [ -95.01515990701445, 29.633285183223453 ], [ -95.015126907005381, 29.633160183058443 ], [ -95.015123906208757, 29.633111182577661 ], [ -95.015120907043766, 29.633044183307042 ], [ -95.015132907150061, 29.632989182743561 ], [ -95.015170906445704, 29.632929183087565 ], [ -95.015220906832667, 29.632802183051577 ], [ -95.015218906438761, 29.632770182925473 ], [ -95.0152109062889, 29.632660183105038 ], [ -95.015195906265802, 29.632456182616703 ], [ -95.015168906273132, 29.632311182937126 ], [ -95.015157906287271, 29.632254182990227 ], [ -95.015147907083048, 29.632203182966311 ], [ -95.015145906851899, 29.632192182539786 ], [ -95.015072906101253, 29.632018182293223 ], [ -95.015045906280676, 29.631955182615588 ], [ -95.014974906606326, 29.631881183001745 ], [ -95.01491990634652, 29.631823182325324 ], [ -95.014831906061247, 29.631757182383453 ], [ -95.014758906730478, 29.631723182415143 ], [ -95.014617906251047, 29.631658182214192 ], [ -95.014503906346008, 29.631576182201787 ], [ -95.014392906453139, 29.631308182827585 ], [ -95.014280905936914, 29.631036182165253 ], [ -95.014226906063996, 29.630907182442634 ], [ -95.014164906023595, 29.630756182724593 ], [ -95.014000906117474, 29.630558182533196 ], [ -95.013958906632411, 29.63047918256397 ], [ -95.013899905971499, 29.630371182383353 ], [ -95.013849906304216, 29.630278181975697 ], [ -95.013745906429975, 29.629976182021288 ], [ -95.013730906141788, 29.629931182635548 ], [ -95.013692906109284, 29.629865182663067 ], [ -95.013579906019956, 29.629739182620675 ], [ -95.013556905676936, 29.629724181913783 ], [ -95.013428905582614, 29.629640182085282 ], [ -95.013246905670186, 29.629431182152977 ], [ -95.01319590578882, 29.629356182109465 ], [ -95.013107905485484, 29.629227181712032 ], [ -95.012761905595568, 29.62866018196528 ], [ -95.01268090606186, 29.628567181744405 ], [ -95.012579906027682, 29.628512182333669 ], [ -95.012359905300642, 29.628473181901665 ], [ -95.01218290585777, 29.628418182394256 ], [ -95.012082905265103, 29.628418182206101 ], [ -95.012006905246054, 29.628407181777153 ], [ -95.011950905381198, 29.628369181886725 ], [ -95.011931905400289, 29.628330182137894 ], [ -95.011924905930968, 29.628270181905595 ], [ -95.011950905554528, 29.62821518168732 ], [ -95.011950905500342, 29.628182182092576 ], [ -95.01192490548263, 29.628099182192877 ], [ -95.011899906002583, 29.628050182197541 ], [ -95.011717905068139, 29.627852182172063 ], [ -95.011635905652781, 29.627725182257041 ], [ -95.011597905634659, 29.627692182094105 ], [ -95.011509905407451, 29.627648181575687 ], [ -95.011434905744323, 29.627582182091132 ], [ -95.010572905366814, 29.626438181975566 ], [ -95.010061904860578, 29.625838181437018 ], [ -95.009836904886285, 29.625574181728652 ], [ -95.009778904503946, 29.625524181795964 ], [ -95.009767905209614, 29.625514181305356 ], [ -95.009719904406595, 29.625445181532474 ], [ -95.009584904692701, 29.625255181059551 ], [ -95.009500904374363, 29.625044181343863 ], [ -95.009484904357535, 29.625004180973356 ], [ -95.009206904369364, 29.624564181452318 ], [ -95.009148904451237, 29.624485180928346 ], [ -95.009024904476547, 29.624318181408022 ], [ -95.008954904367243, 29.624223181128652 ], [ -95.008926904411382, 29.624168181306164 ], [ -95.008766905009892, 29.623860180789613 ], [ -95.008564904921599, 29.623623180969958 ], [ -95.007941904146037, 29.623194181294974 ], [ -95.00760890375669, 29.622935181246337 ], [ -95.007186903689899, 29.622693180901447 ], [ -95.006312903651732, 29.622016181221927 ], [ -95.00575290330886, 29.62149418040589 ], [ -95.00568390335431, 29.621472180629343 ], [ -95.005506903160722, 29.621472180553862 ], [ -95.005393903647857, 29.621406180385435 ], [ -95.004689903819127, 29.620658180779472 ], [ -95.004185903676486, 29.620256181052454 ], [ -95.003437903359512, 29.619717180742057 ], [ -95.003160903301861, 29.619524180735695 ], [ -95.003097902454087, 29.619497180354077 ], [ -95.002921902509797, 29.619238180315374 ], [ -95.002694903280087, 29.6191061805225 ], [ -95.002380902370362, 29.618963180392885 ], [ -95.001887902911605, 29.618844180516557 ], [ -95.001606902660413, 29.618776180062074 ], [ -95.001455902161723, 29.618726180235139 ], [ -95.001348902575131, 29.618710179959738 ], [ -95.001033901887652, 29.619072180513928 ], [ -95.000434901774, 29.619715180520981 ], [ -95.000290902488857, 29.619858180929231 ], [ -94.999900902474337, 29.620146181154631 ], [ -94.99986290248664, 29.620141181123888 ], [ -94.999818902211587, 29.620113180901487 ], [ -94.999711901824469, 29.620009180535593 ], [ -94.999667902430119, 29.620020180924357 ], [ -94.999449902149124, 29.620186181119866 ], [ -94.999325901696707, 29.620280180879998 ], [ -94.998667901916647, 29.620779180520451 ], [ -94.998560902144163, 29.620735180663083 ], [ -94.998560902250503, 29.620713180511206 ], [ -94.998840901588167, 29.620398180922798 ], [ -94.998975902292855, 29.620246181109291 ], [ -94.999170902034948, 29.62005318110231 ], [ -94.999283901907575, 29.619899180665847 ], [ -94.999415901712297, 29.619778181072721 ], [ -94.999497901699698, 29.619728180628709 ], [ -94.999799902622684, 29.619651180247633 ], [ -94.999748902349893, 29.619459180653376 ], [ -94.999996902421103, 29.619392180650973 ], [ -95.000202902421421, 29.619336180937783 ], [ -95.000586902703859, 29.618973180718736 ], [ -95.000699902420834, 29.61904518060761 ], [ -95.000776902608123, 29.618969180301406 ], [ -95.000800901933886, 29.618946180389536 ], [ -95.000680902637185, 29.618869180237308 ], [ -95.001039902180651, 29.618484180640927 ], [ -95.001083902189905, 29.618368180556114 ], [ -95.001146902341361, 29.618264180394771 ], [ -95.00070690219215, 29.617956180498226 ], [ -95.00060590205122, 29.618022179938087 ], [ -95.000268901679362, 29.617812180602137 ], [ -95.000171902183638, 29.617752180055124 ], [ -95.000005902513351, 29.617941180584062 ], [ -94.999829901964418, 29.61811217994951 ], [ -94.999722902311632, 29.61804617986397 ], [ -94.999515902171581, 29.618299180740294 ], [ -94.999238901639231, 29.618579180674196 ], [ -94.998628901344503, 29.61949818079956 ], [ -94.9984779013989, 29.619696180268789 ], [ -94.998125901545009, 29.620230180989644 ], [ -94.998250901542633, 29.62041518061708 ], [ -94.998245902188543, 29.620433180838791 ], [ -94.998220901653468, 29.620455180767234 ], [ -94.998176901906547, 29.620466180664671 ], [ -94.998043901913121, 29.62033418118812 ], [ -94.997886901324918, 29.62014218086362 ], [ -94.997867901202028, 29.620081180474479 ], [ -94.9978799012043, 29.620043180644672 ], [ -94.99850890140884, 29.619113180893635 ], [ -94.999030902124673, 29.61829318080704 ], [ -94.999093901597575, 29.617996180611719 ], [ -94.999338901417502, 29.617622180439088 ], [ -94.999338901890937, 29.617595180618494 ], [ -94.999174902119222, 29.617479179824187 ], [ -94.999092901668092, 29.617452179895476 ], [ -94.999130902077624, 29.617342180581883 ], [ -94.999073901304669, 29.617216180381938 ], [ -94.998992901733089, 29.617106180409696 ], [ -94.998834902083445, 29.616891180402785 ], [ -94.998747901673184, 29.616753180315143 ], [ -94.998601901386493, 29.616523179613498 ], [ -94.998091901355338, 29.616144180286913 ], [ -94.998015901240223, 29.616083180256453 ], [ -94.99770790088769, 29.615836180100111 ], [ -94.997188901701278, 29.615369179741627 ], [ -94.997096901017883, 29.615286179623073 ], [ -94.997001901573867, 29.615223179593894 ], [ -94.994752900776064, 29.61372417971031 ], [ -94.992412899562282, 29.612264179695487 ], [ -94.992311899730424, 29.612231179563693 ], [ -94.991858899394828, 29.611890179019781 ], [ -94.991609899236622, 29.61172217913834 ], [ -94.991279899455535, 29.611500179480409 ], [ -94.99112189949723, 29.611407179589524 ], [ -94.991064898978351, 29.611385179397814 ], [ -94.99102789956126, 29.611379179337785 ], [ -94.990895899005807, 29.611407179177768 ], [ -94.990832899223349, 29.611401179030612 ], [ -94.990800899593594, 29.611346179579701 ], [ -94.990762899487478, 29.611214179516271 ], [ -94.990718898906565, 29.611159178808958 ], [ -94.990655898996522, 29.611132179515295 ], [ -94.990599899024403, 29.611127178973717 ], [ -94.990378899768473, 29.611149178848272 ], [ -94.990271898971372, 29.611110178736656 ], [ -94.990089899153134, 29.610989179346415 ], [ -94.989787899024989, 29.610747179374066 ], [ -94.989799898937946, 29.610714178912914 ], [ -94.989837899052247, 29.610687178679736 ], [ -94.98983189937519, 29.610648179466228 ], [ -94.989799899594914, 29.610615179099856 ], [ -94.989661898783069, 29.610500178943013 ], [ -94.9894788986566, 29.610434178673792 ], [ -94.9893278993584, 29.610363179031005 ], [ -94.989251899274066, 29.610302179073283 ], [ -94.989207899040451, 29.61013717918998 ], [ -94.989006899259849, 29.609598178484202 ], [ -94.988873898479639, 29.609384178477445 ], [ -94.988735898298501, 29.609104179246184 ], [ -94.988628898703155, 29.608994179027444 ], [ -94.988577898380527, 29.608972178865564 ], [ -94.988326898980475, 29.608900179166678 ], [ -94.988256898594429, 29.608867179104642 ], [ -94.988212898273503, 29.60881217838303 ], [ -94.988174899045731, 29.608785179130098 ], [ -94.988097898371976, 29.60858917832271 ], [ -94.988055899015293, 29.608483178898048 ], [ -94.988080898445844, 29.608417178417085 ], [ -94.988073898915815, 29.608345178909282 ], [ -94.988010898682305, 29.608142178675678 ], [ -94.987922898923728, 29.607960178877974 ], [ -94.987815898465513, 29.607839178197612 ], [ -94.987771898086791, 29.607762178809615 ], [ -94.987702898882432, 29.607718178959633 ], [ -94.987481898281132, 29.607449178423931 ], [ -94.987261897967429, 29.607075178597956 ], [ -94.986776898256807, 29.606399178299998 ], [ -94.986423898014138, 29.605959178164447 ], [ -94.9861348977403, 29.605624177944296 ], [ -94.986020898341678, 29.605442178350316 ], [ -94.985901897736582, 29.605272178447148 ], [ -94.985592897339387, 29.604937178033282 ], [ -94.985227897826775, 29.604640177890388 ], [ -94.985051897289523, 29.604508177937319 ], [ -94.984964897427176, 29.604449177958077 ], [ -94.984856897720505, 29.60437617806987 ], [ -94.984822897656358, 29.604357178331245 ], [ -94.984787897997393, 29.604352178090323 ], [ -94.984493897671484, 29.604304178305235 ], [ -94.984239896942086, 29.604371178344383 ], [ -94.983981897487112, 29.604503177733488 ], [ -94.983937897606069, 29.604497177617134 ], [ -94.983912897176751, 29.604415177788738 ], [ -94.983943897019884, 29.604376177586403 ], [ -94.984000897191095, 29.604343177908969 ], [ -94.984025897203836, 29.604316178149269 ], [ -94.984025897195735, 29.604277178090822 ], [ -94.983982897537416, 29.60419117839988 ], [ -94.983930897807426, 29.604085177804759 ], [ -94.983678897282843, 29.603673177637717 ], [ -94.983590897485698, 29.603475177735131 ], [ -94.983464897607632, 29.603238177885551 ], [ -94.983335897265988, 29.603018177808586 ], [ -94.983231897615994, 29.602886177619599 ], [ -94.983048897029775, 29.602626177708931 ], [ -94.982756896955067, 29.602312177695239 ], [ -94.982704896991919, 29.602117177495799 ], [ -94.982612897373954, 29.601778177290083 ], [ -94.982718896695729, 29.601334177080076 ], [ -94.98282989689632, 29.601086176990364 ], [ -94.982721896991279, 29.60106117709574 ], [ -94.982689896925805, 29.601033177208741 ], [ -94.982758897356092, 29.600973177268337 ], [ -94.982828896919756, 29.600973177663043 ], [ -94.982867897166642, 29.600982177028243 ], [ -94.982914896787221, 29.600886177084131 ], [ -94.98316989725997, 29.600494177019243 ], [ -94.983361897115856, 29.600217176797024 ], [ -94.983504896786727, 29.600010177123529 ], [ -94.983668896909705, 29.599778177306415 ], [ -94.983871897461228, 29.599491176825527 ], [ -94.984036896784801, 29.599340177000464 ], [ -94.984070896667646, 29.599308176875812 ], [ -94.984602897498789, 29.598110176828165 ], [ -94.984677897742927, 29.597982176507699 ], [ -94.985092897021815, 29.59727917662897 ], [ -94.98553889774837, 29.596591176072032 ], [ -94.986099897202791, 29.595776176479653 ], [ -94.986404897212182, 29.595421176249562 ], [ -94.986920897249334, 29.594837176223106 ], [ -94.987911897844782, 29.594822175556686 ], [ -94.987783898058836, 29.594768175746964 ], [ -94.987594898082833, 29.59473517607319 ], [ -94.987558898160884, 29.594696175847542 ], [ -94.987537897947448, 29.594674175705094 ], [ -94.987512897534387, 29.594454176001769 ], [ -94.987481898299066, 29.594421175906383 ], [ -94.987480898249274, 29.594372176166395 ], [ -94.9875068980366, 29.594284175522724 ], [ -94.987550897987447, 29.594223175926114 ], [ -94.987594897814546, 29.594108176161225 ], [ -94.987719897599064, 29.594058175591954 ], [ -94.987858897824836, 29.594036175422616 ], [ -94.987933898437404, 29.594031175521913 ], [ -94.987952897788574, 29.594047176064624 ], [ -94.987902898125455, 29.594141175576386 ], [ -94.987915898260255, 29.594207175672288 ], [ -94.988160897680174, 29.594382175943732 ], [ -94.988210898205637, 29.594382176009507 ], [ -94.988311898393746, 29.594360175901343 ], [ -94.98839989795998, 29.594388175658334 ], [ -94.988494898435405, 29.59437717576531 ], [ -94.988636897936331, 29.594454175591682 ], [ -94.988676898015413, 29.594476175665577 ], [ -94.988821898328581, 29.594602175410028 ], [ -94.988903898709282, 29.594613175746566 ], [ -94.988978898592038, 29.59461917585466 ], [ -94.989079898755818, 29.594622175522325 ], [ -94.989122897809011, 29.594617175944823 ], [ -94.989198898718385, 29.594596176092672 ], [ -94.989362898637467, 29.594437175529542 ], [ -94.989481898271123, 29.594332175372436 ], [ -94.98956389827579, 29.594211175913141 ], [ -94.98963289802299, 29.594068175399531 ], [ -94.989637898563998, 29.594028175970696 ], [ -94.989638898496239, 29.594019175234777 ], [ -94.989632898877176, 29.593991175555242 ], [ -94.989594898566338, 29.59394217607597 ], [ -94.9895508988279, 29.593914175511841 ], [ -94.989506898079398, 29.593909175556533 ], [ -94.989450898272494, 29.59392017547507 ], [ -94.98938789796027, 29.593947175260904 ], [ -94.989349898803383, 29.593936175529631 ], [ -94.989273898487369, 29.593887175910321 ], [ -94.98924289787206, 29.593832175835907 ], [ -94.989248898518426, 29.593783175685985 ], [ -94.989380898541981, 29.593667175694147 ], [ -94.989493898810267, 29.593595175389297 ], [ -94.989689898338455, 29.593513175883473 ], [ -94.989808898550578, 29.5933861751211 ], [ -94.989861898331668, 29.593394175745875 ], [ -94.990142898238119, 29.593436175832718 ], [ -94.990274898785458, 29.593436175864035 ], [ -94.990374898023603, 29.593348175686256 ], [ -94.990462898724687, 29.593320175220683 ], [ -94.990550898578306, 29.59331517532355 ], [ -94.990664898792687, 29.593347175059733 ], [ -94.990727898710773, 29.593348175939681 ], [ -94.990796898663319, 29.59330917568558 ], [ -94.990865898488536, 29.593193175537106 ], [ -94.990871898488123, 29.593155175033942 ], [ -94.990840898809466, 29.593138175145572 ], [ -94.990796898630677, 29.59307817520666 ], [ -94.990764898129626, 29.592990175244818 ], [ -94.990777898635571, 29.592880174966943 ], [ -94.990802898110658, 29.592853175797032 ], [ -94.990852898668635, 29.592836175163747 ], [ -94.990997898216335, 29.59283017499811 ], [ -94.991170898718778, 29.592845175213711 ], [ -94.991192898883639, 29.592847175219571 ], [ -94.991249898642565, 29.592825175047007 ], [ -94.991381899162917, 29.592654175472457 ], [ -94.991651899025896, 29.592390175314556 ], [ -94.992006899317104, 29.591949175381721 ], [ -94.992143899012206, 29.591778175024636 ], [ -94.992393899265423, 29.591466175358722 ], [ -94.992613898889871, 29.591213174540449 ], [ -94.992871898935789, 29.590943174539895 ], [ -94.993217898887139, 29.590635175130139 ], [ -94.993468899193118, 29.590481174626973 ], [ -94.993512899443772, 29.590481174501143 ], [ -94.993563899456092, 29.590520174648194 ], [ -94.993594899544576, 29.590531174830101 ], [ -94.99365789950491, 29.590525174972612 ], [ -94.993745899609152, 29.590442174718742 ], [ -94.993827899098562, 29.590404174424492 ], [ -94.99424889937363, 29.590365174578682 ], [ -94.994267899776133, 29.590332174779029 ], [ -94.99421189966327, 29.590129175038779 ], [ -94.994248899231366, 29.590079174679655 ], [ -94.994286899468776, 29.590068174554929 ], [ -94.994349899158735, 29.590085175014586 ], [ -94.994353899696421, 29.589999174897791 ], [ -94.994357899195606, 29.589913174748297 ], [ -94.99436189968317, 29.589826174324017 ], [ -94.994412899839901, 29.589700174765387 ], [ -94.994449899836383, 29.589518175028278 ], [ -94.994496898915301, 29.58938617477607 ], [ -94.994594899049162, 29.589117174282112 ], [ -94.994594899135436, 29.589078174210897 ], [ -94.994499899616429, 29.588952174733752 ], [ -94.994159899528285, 29.588710174091279 ], [ -94.994122898999564, 29.5885951740484 ], [ -94.993951899163136, 29.588446174161795 ], [ -94.993882899587447, 29.588413173995583 ], [ -94.993769898902357, 29.588386173977913 ], [ -94.993756899302454, 29.588331174194561 ], [ -94.993817899510503, 29.588165174219267 ], [ -94.993939899251089, 29.588017173994643 ], [ -94.994153898900976, 29.587814174160613 ], [ -94.994209898923827, 29.58778117383445 ], [ -94.994266899798674, 29.587770174018697 ], [ -94.994285898942081, 29.587786174586792 ], [ -94.99428589898271, 29.58780817403629 ], [ -94.994247898864216, 29.58789117430867 ], [ -94.994203898973225, 29.588094173908175 ], [ -94.994197899269707, 29.588237173897372 ], [ -94.994222899290548, 29.588243174209861 ], [ -94.994461899042193, 29.588259174665069 ], [ -94.994883899240804, 29.58823717386224 ], [ -94.995008899578806, 29.58824817439902 ], [ -94.995059899037386, 29.588231174187353 ], [ -94.995405899252631, 29.587830173744081 ], [ -94.995607899604849, 29.587582174350644 ], [ -94.995687899819529, 29.587483174097432 ], [ -94.995788899926325, 29.587367174398679 ], [ -94.995794899817255, 29.587329173686072 ], [ -94.995637900074257, 29.587219174418433 ], [ -94.995637899831678, 29.587164173999145 ], [ -94.995656899874518, 29.587142173720046 ], [ -94.995694899177153, 29.587120174378882 ], [ -94.995813899809292, 29.587093174467881 ], [ -94.995895900176777, 29.587059174218716 ], [ -94.996002899920299, 29.586993174115385 ], [ -94.996090900165726, 29.586894173878232 ], [ -94.996146899493198, 29.586790173812449 ], [ -94.996178900119759, 29.586762173512824 ], [ -94.996467899602649, 29.58673517358023 ], [ -94.996593899471492, 29.586707173646733 ], [ -94.996719899493314, 29.586740174012462 ], [ -94.996882899666389, 29.586553174124521 ], [ -94.996926900393163, 29.586471174298239 ], [ -94.997316899545908, 29.585959174025465 ], [ -94.997335900381145, 29.585596174117299 ], [ -94.997209900380327, 29.585074173316738 ], [ -94.997215900324619, 29.585046173766294 ], [ -94.99728489971902, 29.584892173392877 ], [ -94.997447899663115, 29.584766173276392 ], [ -94.997504900026058, 29.584749173912563 ], [ -94.997624900274843, 29.584760173272265 ], [ -94.99790090021547, 29.584749173557015 ], [ -94.998630900305869, 29.584677173237651 ], [ -94.99868190040489, 29.584660173527777 ], [ -94.998731900437022, 29.584550173514891 ], [ -94.998800900134199, 29.584473173164103 ], [ -94.998844899841586, 29.584440173095565 ], [ -94.998932900735326, 29.584402173309392 ], [ -94.999007900146253, 29.584358173637057 ], [ -94.999108900584147, 29.584275173425699 ], [ -94.999177900812413, 29.584187173188241 ], [ -94.999297900082496, 29.584055172905483 ], [ -94.999366899948356, 29.583956172847344 ], [ -94.999422900138157, 29.583912173420288 ], [ -94.999554900055443, 29.583846173567082 ], [ -94.999611900987773, 29.583802173301159 ], [ -94.999743900712161, 29.583604173048641 ], [ -95.000007900479048, 29.583296173529138 ], [ -95.000285900952136, 29.583102173488907 ], [ -95.000392900961458, 29.583047173359965 ], [ -95.000555900263365, 29.582931172612795 ], [ -95.000631900951277, 29.582898172836138 ], [ -95.000725900753608, 29.58288817288733 ], [ -95.001046900687726, 29.58291017269789 ], [ -95.001210900885226, 29.582866173216324 ], [ -95.001304900784532, 29.582822172519418 ], [ -95.001380900613697, 29.582767172872813 ], [ -95.001443901109354, 29.582706172748797 ], [ -95.001543900761661, 29.582585172704828 ], [ -95.00178990079911, 29.582173172661204 ], [ -95.001801900770118, 29.582124172607756 ], [ -95.001802901415545, 29.582080172969249 ], [ -95.001776900458552, 29.582047172962984 ], [ -95.001745901409222, 29.582030172821923 ], [ -95.001613901042901, 29.581991172781375 ], [ -95.00155090039604, 29.581942173114257 ], [ -95.001544901313139, 29.58187017241406 ], [ -95.001569901031942, 29.581788172760003 ], [ -95.001909900467425, 29.581299172404734 ], [ -95.001991901482896, 29.58120017240811 ], [ -95.00207390079332, 29.581172173021685 ], [ -95.002318901456221, 29.581183172581504 ], [ -95.002419900657088, 29.581145172720248 ], [ -95.002444900955908, 29.581123173017499 ], [ -95.002456901523175, 29.58109017234527 ], [ -95.002425901128632, 29.58098017217965 ], [ -95.00238190116707, 29.58092517293592 ], [ -95.002274900906272, 29.580820172229082 ], [ -95.002035901132516, 29.580644172923087 ], [ -95.002029900810598, 29.58060617255132 ], [ -95.002029900817519, 29.580556172770155 ], [ -95.002048900671738, 29.580512172188225 ], [ -95.002142901104264, 29.580402172667622 ], [ -95.002344901292588, 29.580205172721421 ], [ -95.002413901414613, 29.580144172746326 ], [ -95.00248290131178, 29.580106172466891 ], [ -95.00258990078828, 29.580073172798702 ], [ -95.002828901396001, 29.580078172722146 ], [ -95.003074901228032, 29.580073172527229 ], [ -95.003124901570686, 29.580056172014508 ], [ -95.003180900842636, 29.580018171972018 ], [ -95.003262901718358, 29.579897172704225 ], [ -95.003306901389664, 29.579798172042818 ], [ -95.003351901340423, 29.579628172565933 ], [ -95.003376901381159, 29.579578172348594 ], [ -95.003407900808782, 29.579556172089323 ], [ -95.003520901379162, 29.579562172328689 ], [ -95.003696901726087, 29.579688171871588 ], [ -95.003785901022141, 29.579705172152071 ], [ -95.003847901294748, 29.579672172099983 ], [ -95.003866901198521, 29.579628172183725 ], [ -95.003866901194513, 29.579606171853502 ], [ -95.003841901540255, 29.579584172070739 ], [ -95.003785901537142, 29.579562172275995 ], [ -95.003766901103404, 29.579529172362005 ], [ -95.00376690162787, 29.57949617233222 ], [ -95.003822901542136, 29.579430172615041 ], [ -95.003923900907623, 29.579424172322188 ], [ -95.00402490123011, 29.579468171747006 ], [ -95.0040749009612, 29.579479172112286 ], [ -95.004137901404533, 29.579479172063618 ], [ -95.004187901080101, 29.579468172055787 ], [ -95.004250901724106, 29.579441171926362 ], [ -95.004307901168019, 29.579397172413923 ], [ -95.004338901386745, 29.579347172536288 ], [ -95.004364901549621, 29.579282172215816 ], [ -95.004364901512261, 29.579183172089305 ], [ -95.004332901905826, 29.579094172330272 ], [ -95.004263901456014, 29.57901217245233 ], [ -95.004257901016175, 29.578957172462687 ], [ -95.004301901771797, 29.578875172151552 ], [ -95.004345901668472, 29.578710171987215 ], [ -95.00444090156121, 29.578528171800681 ], [ -95.004591901070881, 29.578413172004996 ], [ -95.004622901128215, 29.578358172352743 ], [ -95.004628901885724, 29.578303171583709 ], [ -95.004616901283867, 29.578204172253717 ], [ -95.004622901724346, 29.578154172082819 ], [ -95.00475490146431, 29.578050172092329 ], [ -95.004798901368133, 29.577995171637504 ], [ -95.004786901076997, 29.577940172091374 ], [ -95.004673901965688, 29.577863172204648 ], [ -95.004685901758464, 29.577791172162705 ], [ -95.004830901851776, 29.57760417154206 ], [ -95.004994901411791, 29.577434171982233 ], [ -95.005151901405952, 29.577286172033009 ], [ -95.005220901870175, 29.57723117160096 ], [ -95.005290901390566, 29.577192171507786 ], [ -95.005359901671113, 29.577170171951966 ], [ -95.005396901546348, 29.577148171725582 ], [ -95.005554901648793, 29.577159171626654 ], [ -95.005698901620136, 29.57715417178731 ], [ -95.005912902280272, 29.577132171746989 ], [ -95.00601990232451, 29.577110171878072 ], [ -95.006089901608647, 29.57707217167242 ], [ -95.00611490171309, 29.577022171878216 ], [ -95.006215901711769, 29.576659171300477 ], [ -95.006221901674991, 29.576599171641114 ], [ -95.006246901599241, 29.576549171816861 ], [ -95.006372902170412, 29.576445171714845 ], [ -95.006441902233973, 29.576296171146268 ], [ -95.006668901882378, 29.575719170980904 ], [ -95.006685902373007, 29.575681171478202 ], [ -95.006825902188311, 29.575373171603747 ], [ -95.007077902476752, 29.575054170984732 ], [ -95.00712190242001, 29.575026170746849 ], [ -95.007190901528702, 29.575026171490762 ], [ -95.007240901727883, 29.57500317130777 ], [ -95.007329901693055, 29.574944170774621 ], [ -95.007688901924269, 29.574444170617834 ], [ -95.00779590269839, 29.574295170764806 ], [ -95.00796190235846, 29.574038171360879 ], [ -95.008139901802608, 29.573763170602852 ], [ -95.008172901794183, 29.573712170587481 ], [ -95.008374902694271, 29.57342117060157 ], [ -95.008588901980431, 29.573047171102701 ], [ -95.008752902071791, 29.572805170693076 ], [ -95.008764902566895, 29.57271717090714 ], [ -95.008708902237672, 29.572662170292016 ], [ -95.008689902528857, 29.572629171056992 ], [ -95.008708902146481, 29.572536171005265 ], [ -95.008726902605545, 29.572517170732947 ], [ -95.008746902292899, 29.572497170237536 ], [ -95.008790901852691, 29.572470170675004 ], [ -95.008859902221175, 29.572464170638415 ], [ -95.008991902101073, 29.572530170241578 ], [ -95.009035902786735, 29.572536170680188 ], [ -95.00906690285845, 29.572519170705963 ], [ -95.009060902310338, 29.572448170590899 ], [ -95.008972901997254, 29.572382170569366 ], [ -95.008960902338387, 29.572360170540424 ], [ -95.008959902461513, 29.572316170729632 ], [ -95.008972902610267, 29.572299170767153 ], [ -95.009023902051212, 29.572272170579737 ], [ -95.009048901906098, 29.572272170928976 ], [ -95.009111902826106, 29.572239170442963 ], [ -95.009312902541268, 29.571964170253683 ], [ -95.009665902327086, 29.571519170554797 ], [ -95.009866902794997, 29.571216170159534 ], [ -95.009866902252028, 29.571167170673775 ], [ -95.009841902262394, 29.571134170416656 ], [ -95.009834902978383, 29.571101170076872 ], [ -95.00991690285305, 29.570958170185701 ], [ -95.010156902775108, 29.570589170070008 ], [ -95.010212902903817, 29.570513170214355 ], [ -95.010307902959795, 29.570436169842154 ], [ -95.010376903061641, 29.570436169967802 ], [ -95.010458902611731, 29.570463169700393 ], [ -95.010514902648978, 29.570463170132587 ], [ -95.010539902892987, 29.570447169904305 ], [ -95.010653903001739, 29.570331169991352 ], [ -95.01072190291525, 29.570230170055243 ], [ -95.010797902805948, 29.570117170370459 ], [ -95.011245902787337, 29.569253169968267 ], [ -95.011402903216776, 29.568830170181293 ], [ -95.011503902991038, 29.568610169278532 ], [ -95.011522903392915, 29.568517169768981 ], [ -95.011515902800227, 29.568451169417632 ], [ -95.011522903024968, 29.568396169265689 ], [ -95.011534902957052, 29.568357169594464 ], [ -95.011572903070629, 29.568297169837308 ], [ -95.011711902926308, 29.568159169540394 ], [ -95.01186190276637, 29.568049169785134 ], [ -95.011990902664024, 29.567988169631036 ], [ -95.012151902714848, 29.567912169342655 ], [ -95.012226903288834, 29.567857169267491 ], [ -95.012359902547942, 29.5676591698588 ], [ -95.012588903185815, 29.567191169691014 ], [ -95.012592903253235, 29.567161169747102 ], [ -95.012609902605533, 29.567143169223694 ], [ -95.012844903281405, 29.566438169304593 ], [ -95.012918903310222, 29.566242169497418 ], [ -95.012932903031171, 29.566204169145124 ], [ -95.012988903244974, 29.566054169268991 ], [ -95.013058903430874, 29.565779168861944 ], [ -95.013158903574563, 29.56564116899515 ], [ -95.013314903624462, 29.565383169090417 ], [ -95.013323903322714, 29.565356169216713 ], [ -95.01334790352368, 29.565328169356285 ], [ -95.013360903040706, 29.565302168954872 ], [ -95.01356890357745, 29.564904168964105 ], [ -95.013618903110654, 29.564679168563668 ], [ -95.013685903046394, 29.564479168802023 ], [ -95.013763903066561, 29.564250168542852 ], [ -95.013820903333013, 29.564146168727817 ], [ -95.013845903557737, 29.56407416901941 ], [ -95.01387090320101, 29.564047168470665 ], [ -95.013977903837983, 29.564041168397456 ], [ -95.014078903579417, 29.564052168755396 ], [ -95.014166903339387, 29.564030168792787 ], [ -95.014266903551814, 29.563948168843879 ], [ -95.014361903797237, 29.563766168281326 ], [ -95.014365903806336, 29.56369216850122 ], [ -95.01436790354289, 29.563656168454049 ], [ -95.01434290361027, 29.563592168615838 ], [ -95.014310903766344, 29.563568168152496 ], [ -95.014160903409007, 29.563497168927086 ], [ -95.014141903446259, 29.563480168919558 ], [ -95.01414190314226, 29.56343616822409 ], [ -95.014401903527585, 29.562692168553369 ], [ -95.014418902965701, 29.562645168059007 ], [ -95.014435903058171, 29.562605167897086 ], [ -95.014462903393806, 29.562540168417041 ], [ -95.014512903177419, 29.562480168003688 ], [ -95.014638903829862, 29.562507168648633 ], [ -95.014764903181572, 29.562491168749325 ], [ -95.01483390367332, 29.56241916841347 ], [ -95.014896903255107, 29.562326167919839 ], [ -95.015013903845059, 29.56205916846055 ], [ -95.015093903049433, 29.561878168439272 ], [ -95.015426904005437, 29.561121168018772 ], [ -95.015491903887266, 29.560973167766928 ], [ -95.015813903440517, 29.560240168162522 ], [ -95.015878903480683, 29.560093168035255 ], [ -95.015902903278572, 29.560043167381355 ], [ -95.01609990334218, 29.559626167737228 ], [ -95.016162904075713, 29.559450167731228 ], [ -95.01615590419992, 29.559380167273172 ], [ -95.016149903422715, 29.559324167420801 ], [ -95.016111903986783, 29.559241167512671 ], [ -95.016118903916734, 29.559181167381951 ], [ -95.016180903921466, 29.559120167901018 ], [ -95.016281904122678, 29.559021167714238 ], [ -95.016325903526905, 29.558988167612725 ], [ -95.016382903368978, 29.558966167224877 ], [ -95.016445903338919, 29.558966167159916 ], [ -95.016583903645625, 29.559010167623409 ], [ -95.016678903428343, 29.559010167365077 ], [ -95.016721903832874, 29.558999167518262 ], [ -95.016747903394489, 29.558977167068171 ], [ -95.016767903947624, 29.558930167212992 ], [ -95.01678490427517, 29.558889167372481 ], [ -95.016829903375822, 29.558592167426177 ], [ -95.016834903730484, 29.558536167593736 ], [ -95.016829903458429, 29.558477167775433 ], [ -95.01680490364781, 29.558449167514521 ], [ -95.016709903827689, 29.55841616777068 ], [ -95.016690903412979, 29.55840316748457 ], [ -95.016678904129932, 29.558394167519793 ], [ -95.016653903943165, 29.558345167168657 ], [ -95.016653903679838, 29.558317167697879 ], [ -95.016722904276264, 29.558180167501455 ], [ -95.016722903619126, 29.55808116725051 ], [ -95.016691903598584, 29.558042167249198 ], [ -95.01651290400244, 29.557917167643495 ], [ -95.016470903334749, 29.557888167004577 ], [ -95.016426903778822, 29.557817167184535 ], [ -95.016426903664083, 29.557762167645667 ], [ -95.016477903430754, 29.557674167069411 ], [ -95.016452903561245, 29.557559167409948 ], [ -95.016633903445125, 29.55735816752048 ], [ -95.016666904021747, 29.557322167370401 ], [ -95.016683903303715, 29.557305167564685 ], [ -95.016696903378261, 29.557292167199378 ], [ -95.016824903913346, 29.557163167395764 ], [ -95.017194904119634, 29.556789166762595 ], [ -95.01731490390813, 29.556679166888518 ], [ -95.017327903477465, 29.556661166738394 ], [ -95.017580904194759, 29.556200166581551 ], [ -95.017747903510823, 29.555883167184067 ], [ -95.017839903489417, 29.555626166777294 ], [ -95.018118904148949, 29.554858166971115 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1498, "Tract": "48071710100", "Area_SqMi": 49.747435155479742, "total_2009": 2147, "total_2010": 2584, "total_2011": 3511, "total_2012": 2944, "total_2013": 3023, "total_2014": 2618, "total_2015": 2049, "total_2016": 4246, "total_2017": 4184, "total_2018": 5533, "total_2019": 6257, "total_2020": 6716, "age1": 1776, "age2": 3506, "age3": 1212, "earn1": 1082, "earn2": 1470, "earn3": 3942, "naics_s01": 0, "naics_s02": 58, "naics_s03": 0, "naics_s04": 1559, "naics_s05": 191, "naics_s06": 55, "naics_s07": 513, "naics_s08": 674, "naics_s09": 2, "naics_s10": 35, "naics_s11": 113, "naics_s12": 373, "naics_s13": 0, "naics_s14": 109, "naics_s15": 1227, "naics_s16": 268, "naics_s17": 167, "naics_s18": 765, "naics_s19": 70, "naics_s20": 315, "race1": 5642, "race2": 567, "race3": 65, "race4": 125, "race5": 9, "race6": 86, "ethnicity1": 4265, "ethnicity2": 2229, "edu1": 1062, "edu2": 1316, "edu3": 1400, "edu4": 940, "Shape_Length": 182472.01861475728, "Shape_Area": 1386873348.548569, "total_2021": 5195, "total_2022": 6494 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.981466909026949, 29.884281235626698 ], [ -94.981255909017548, 29.884006236046563 ], [ -94.981208909164721, 29.883933236092023 ], [ -94.981072908862984, 29.88372023557331 ], [ -94.980737909156034, 29.883160235410497 ], [ -94.980642908639723, 29.883033235533311 ], [ -94.980535908612126, 29.88282323547363 ], [ -94.980497909030618, 29.882747235183501 ], [ -94.980333909163647, 29.882511235445278 ], [ -94.98031190859318, 29.882455235150353 ], [ -94.980295908861649, 29.88241223525787 ], [ -94.980238909125916, 29.882324235159828 ], [ -94.980222908869223, 29.882287235698861 ], [ -94.980105908411119, 29.88201623493158 ], [ -94.979962908258344, 29.881780235589328 ], [ -94.9799229082099, 29.881714235186834 ], [ -94.979859908804102, 29.881620235179678 ], [ -94.979802908853131, 29.881532234843334 ], [ -94.979613908595738, 29.881312235011499 ], [ -94.97943090879906, 29.880971235510916 ], [ -94.97934890853432, 29.880851234859509 ], [ -94.979265908763722, 29.880691234799414 ], [ -94.979152908315243, 29.880537235047473 ], [ -94.979133908610677, 29.880482235294728 ], [ -94.97905190813232, 29.880361235089385 ], [ -94.979013908050504, 29.880289235155839 ], [ -94.978741907854726, 29.879778235233662 ], [ -94.978407908223076, 29.879416234389609 ], [ -94.978293908409029, 29.879339234947103 ], [ -94.978154907651941, 29.879201234717403 ], [ -94.977769908334253, 29.878728234879524 ], [ -94.977555908352471, 29.878415234416774 ], [ -94.977233908172366, 29.878063234856327 ], [ -94.976923907817707, 29.877684234233801 ], [ -94.976507907912918, 29.877239234009462 ], [ -94.976336907554071, 29.876991234163022 ], [ -94.976336907230973, 29.876512234167365 ], [ -94.976336907863669, 29.876452233928585 ], [ -94.976456907948517, 29.876034234563836 ], [ -94.976683907860888, 29.875512233767747 ], [ -94.976701907844713, 29.875380234112537 ], [ -94.976682907970527, 29.875182234322462 ], [ -94.976657907286778, 29.875108233849289 ], [ -94.976624907501659, 29.875005234115509 ], [ -94.976561907534304, 29.874834234245597 ], [ -94.976384907340233, 29.874658234188875 ], [ -94.97622690751011, 29.874438233977401 ], [ -94.976208907006153, 29.874375233765537 ], [ -94.976163907806352, 29.874218234296787 ], [ -94.97613190678598, 29.873614233542234 ], [ -94.975986907593423, 29.873278234099299 ], [ -94.97593590712124, 29.873003233890156 ], [ -94.975986907369744, 29.872772233571112 ], [ -94.976099907432683, 29.872519233820331 ], [ -94.976203907709277, 29.87215823330321 ], [ -94.976225907430603, 29.872085233602458 ], [ -94.976238906992222, 29.871793233698661 ], [ -94.976324907714343, 29.871403233439189 ], [ -94.976365907583542, 29.871213233106051 ], [ -94.976491907541401, 29.870646233313732 ], [ -94.976533907215824, 29.870457233334168 ], [ -94.976609906893216, 29.870215233434035 ], [ -94.97681090749893, 29.868972232549563 ], [ -94.976955906820109, 29.868741232737733 ], [ -94.977094907105851, 29.868554232782468 ], [ -94.977157907027319, 29.868356232891554 ], [ -94.977144907415081, 29.868186232314375 ], [ -94.977050907409989, 29.868065232157662 ], [ -94.976841907261928, 29.867977232445568 ], [ -94.976595907341746, 29.867911232620429 ], [ -94.976343907370946, 29.867823232285957 ], [ -94.976154906737762, 29.867680232727107 ], [ -94.976072906929744, 29.867587232727075 ], [ -94.975945907082334, 29.867400232894664 ], [ -94.975863906677077, 29.867246232055336 ], [ -94.975851906437796, 29.867185232447703 ], [ -94.975787906457512, 29.867070232716763 ], [ -94.975756906676523, 29.866932232793111 ], [ -94.975718906944877, 29.866888232524953 ], [ -94.975676906596846, 29.866803232645609 ], [ -94.975602907008621, 29.866710232202735 ], [ -94.975461906275896, 29.866631232322266 ], [ -94.975275907059398, 29.866550232083462 ], [ -94.975131906728279, 29.866453232415719 ], [ -94.975013906644051, 29.866315232294159 ], [ -94.974823906351929, 29.866226232230179 ], [ -94.974644906991031, 29.866179232422716 ], [ -94.974412906587816, 29.86610623253269 ], [ -94.974351906697933, 29.866078232261419 ], [ -94.97426290673566, 29.866056232519313 ], [ -94.974168906475796, 29.866019232591313 ], [ -94.974014906844033, 29.865969232303687 ], [ -94.973994906525292, 29.865950232363872 ], [ -94.973925906418629, 29.865911232018597 ], [ -94.97386590593625, 29.865865232026472 ], [ -94.973777906308499, 29.865720232282424 ], [ -94.973736906203172, 29.865617232235106 ], [ -94.973700906744682, 29.865428232143557 ], [ -94.973685905779348, 29.865312232212716 ], [ -94.973645906534443, 29.865202231633273 ], [ -94.973646906473917, 29.865166232451614 ], [ -94.973608906096317, 29.865103232458715 ], [ -94.973602906704741, 29.865060231858926 ], [ -94.973428906302075, 29.864883231659498 ], [ -94.973301905740783, 29.864783232153513 ], [ -94.973237905925188, 29.86472623196159 ], [ -94.973137905956861, 29.864678231799129 ], [ -94.972965906222058, 29.86463823198007 ], [ -94.972864905817232, 29.864597232099975 ], [ -94.972773906371287, 29.864513231648022 ], [ -94.972765906302484, 29.864495231856935 ], [ -94.972683906376915, 29.864405232029924 ], [ -94.972676905720519, 29.864369231833809 ], [ -94.972664905892543, 29.864350231766146 ], [ -94.972674906155589, 29.864044231759269 ], [ -94.972697905725809, 29.863930232052205 ], [ -94.972730905732647, 29.86383123191559 ], [ -94.972732906020426, 29.863798231861793 ], [ -94.972756906095768, 29.863727231664686 ], [ -94.972770905676569, 29.863591231868529 ], [ -94.972776906316639, 29.86338723137737 ], [ -94.972726905816558, 29.863215231484372 ], [ -94.972650906265059, 29.863085231709995 ], [ -94.972611905954793, 29.863033231900388 ], [ -94.972500905384521, 29.862931231192249 ], [ -94.972420905806388, 29.862884231794244 ], [ -94.972259905349404, 29.862772231940035 ], [ -94.97214790611595, 29.862705231735305 ], [ -94.972094905374021, 29.862684231166604 ], [ -94.971774905481467, 29.862640231830941 ], [ -94.971605905712721, 29.862543231858815 ], [ -94.971462905193079, 29.862425231268311 ], [ -94.971234905243961, 29.862007231720327 ], [ -94.97110190519173, 29.861857231038954 ], [ -94.971008905333164, 29.861723231326703 ], [ -94.970919905624228, 29.861600231528946 ], [ -94.970230904996569, 29.861369231339566 ], [ -94.968911904877316, 29.860438231009503 ], [ -94.968150904858774, 29.859341231310292 ], [ -94.968005904658469, 29.859159230767151 ], [ -94.967633904193491, 29.858950230852219 ], [ -94.966881904261854, 29.858485230577507 ], [ -94.966718904249902, 29.85839623117435 ], [ -94.966516903783216, 29.858324230866085 ], [ -94.965954903800963, 29.858087231244816 ], [ -94.965437903371054, 29.857956230623799 ], [ -94.964686903691728, 29.857818230939412 ], [ -94.964421903834122, 29.857736230629779 ], [ -94.963664903745951, 29.857527230675103 ], [ -94.963216903641623, 29.857362230583981 ], [ -94.962213902469145, 29.857076230502472 ], [ -94.96179690320065, 29.856988230377134 ], [ -94.961496902746049, 29.856924230807586 ], [ -94.960995902848353, 29.856818231071088 ], [ -94.960774902708366, 29.85672523049961 ], [ -94.96061490225496, 29.856677230617628 ], [ -94.960459902514756, 29.856631230883913 ], [ -94.96033990211059, 29.856587230351714 ], [ -94.960323902189785, 29.856584230666158 ], [ -94.95990190282771, 29.856504231121175 ], [ -94.959833902159744, 29.856497231092032 ], [ -94.959722902575251, 29.856486231051697 ], [ -94.959671902382567, 29.856478230987605 ], [ -94.959197902151786, 29.856401230506883 ], [ -94.958939901666582, 29.856329231078455 ], [ -94.958608902349383, 29.856266230884472 ], [ -94.958544902078501, 29.856254230371 ], [ -94.958399901598852, 29.85622623055098 ], [ -94.958301901932003, 29.856208230302496 ], [ -94.957916901979104, 29.856154230820081 ], [ -94.957374901271891, 29.856082231081881 ], [ -94.957040901545923, 29.855989230364653 ], [ -94.956710901697107, 29.855961230618032 ], [ -94.956320901576248, 29.855928230697302 ], [ -94.956030900864448, 29.85591223030811 ], [ -94.955858900768462, 29.855879231155381 ], [ -94.95570590146454, 29.855850230680794 ], [ -94.955178900911804, 29.855753230407103 ], [ -94.954977900720721, 29.855670230733484 ], [ -94.954566900988638, 29.855632231120506 ], [ -94.95384190024518, 29.855527230708422 ], [ -94.953639900252185, 29.85546123093523 ], [ -94.95311090044332, 29.85531223067451 ], [ -94.953096900055684, 29.855308230624829 ], [ -94.952642900664173, 29.855033231113389 ], [ -94.952358900494531, 29.854818230679875 ], [ -94.95211490021228, 29.854607230910659 ], [ -94.95207390007198, 29.854572230658277 ], [ -94.952056900188424, 29.854558230503716 ], [ -94.951958899870675, 29.85447323082526 ], [ -94.951696899682773, 29.854246230972755 ], [ -94.951172900466815, 29.85376823006531 ], [ -94.951054900404515, 29.853670230235068 ], [ -94.951016900022893, 29.853638230651772 ], [ -94.950125899650118, 29.852899230475124 ], [ -94.949914899487794, 29.852729229941811 ], [ -94.949843899431201, 29.852672230231459 ], [ -94.948711899072279, 29.851761230325977 ], [ -94.948648899534135, 29.851701229841591 ], [ -94.948371898706512, 29.851486230346225 ], [ -94.948200898750287, 29.851299230493598 ], [ -94.947891898994442, 29.851036229886638 ], [ -94.947630899001908, 29.850847230206508 ], [ -94.947595899421302, 29.850821229636846 ], [ -94.947456898865426, 29.850656229731655 ], [ -94.947412898871505, 29.850513229792099 ], [ -94.947349899022512, 29.850395229658009 ], [ -94.947266898623425, 29.85023823021422 ], [ -94.947247898840871, 29.850158230301034 ], [ -94.947091898989214, 29.849516229431309 ], [ -94.947077898764903, 29.849457229576249 ], [ -94.947052898612739, 29.849133229901504 ], [ -94.946939899006622, 29.848702229811853 ], [ -94.946888898543676, 29.848506229662537 ], [ -94.946187898763085, 29.846620229600408 ], [ -94.946108897927701, 29.846355229314732 ], [ -94.946086898098812, 29.846279228765994 ], [ -94.945934898458489, 29.845885229205301 ], [ -94.94589789787382, 29.845773229274524 ], [ -94.945790898538533, 29.845592229141726 ], [ -94.945599898073752, 29.845283229319627 ], [ -94.945569897985678, 29.845234229096654 ], [ -94.945184897764236, 29.84472322839521 ], [ -94.944899897437054, 29.844454228735053 ], [ -94.944783897693625, 29.844345228890035 ], [ -94.944731897432362, 29.844296228472885 ], [ -94.944635898110249, 29.844206228696841 ], [ -94.944522898095357, 29.844101229137795 ], [ -94.944437897480626, 29.844011228717665 ], [ -94.94386689759429, 29.843406228782275 ], [ -94.943828897973461, 29.84336522826311 ], [ -94.94367089746973, 29.843211228461012 ], [ -94.943428897238405, 29.842966228448766 ], [ -94.943314897273851, 29.8428502281531 ], [ -94.942246897045152, 29.841767228097133 ], [ -94.941891897277188, 29.841407227893082 ], [ -94.941665896654001, 29.841140228129099 ], [ -94.941519896567428, 29.840967228216655 ], [ -94.941077896900126, 29.840544227971385 ], [ -94.940933896958711, 29.840393228415422 ], [ -94.940721896363129, 29.84017222798149 ], [ -94.94069289639377, 29.840142228133136 ], [ -94.940651896216139, 29.840099228243542 ], [ -94.940416896681256, 29.839850228119172 ], [ -94.940410896060044, 29.839835227737687 ], [ -94.940389896989231, 29.839821227619211 ], [ -94.9400928966283, 29.839507228277096 ], [ -94.93954489637909, 29.838927227764312 ], [ -94.939084896083841, 29.838471227354837 ], [ -94.938269895531334, 29.837622227488822 ], [ -94.937738896132217, 29.837070227960208 ], [ -94.937664895539939, 29.836992227679346 ], [ -94.937216895880951, 29.836527227483 ], [ -94.937192895597875, 29.836502226973959 ], [ -94.93696689557639, 29.836268227498877 ], [ -94.936394895817301, 29.835675227623486 ], [ -94.936340895673979, 29.835619227079786 ], [ -94.935892894922702, 29.835155227539989 ], [ -94.935154895040355, 29.8346212273294 ], [ -94.93460589473338, 29.834297227470103 ], [ -94.934050894314026, 29.834165226872031 ], [ -94.933426894874643, 29.834154226868218 ], [ -94.931097894389168, 29.834020226756138 ], [ -94.929194893153507, 29.833912227258896 ], [ -94.928883893250941, 29.833896227248626 ], [ -94.927951892955079, 29.833850227560102 ], [ -94.927856892816465, 29.833846227516055 ], [ -94.927642892630288, 29.833824226839496 ], [ -94.927345893138536, 29.833791227007971 ], [ -94.926740892932955, 29.833697226980235 ], [ -94.926059892343559, 29.833477226977681 ], [ -94.925526892933632, 29.833273227499017 ], [ -94.92423089163691, 29.832779227342229 ], [ -94.923069891562989, 29.832394227249139 ], [ -94.922565892050301, 29.832251226688289 ], [ -94.921997891096694, 29.83206422699832 ], [ -94.921511890987532, 29.831921227249349 ], [ -94.921114891067987, 29.831739227412683 ], [ -94.920370890626998, 29.831508227282097 ], [ -94.919581891118327, 29.831228227333725 ], [ -94.919294890330448, 29.831140226644195 ], [ -94.91862989059635, 29.830936226621226 ], [ -94.917917890680954, 29.830686226480292 ], [ -94.91778489060809, 29.830639226424179 ], [ -94.917191890070725, 29.830518226517864 ], [ -94.91668288980587, 29.830395226821619 ], [ -94.916442889671387, 29.830338226677448 ], [ -94.915177889747184, 29.829958226452817 ], [ -94.914926890051973, 29.829883226741931 ], [ -94.914671889800672, 29.829835226396103 ], [ -94.914207889196916, 29.829746226752718 ], [ -94.913610889700436, 29.829633227254952 ], [ -94.912879889134416, 29.829464226843406 ], [ -94.91282788887095, 29.829442226571057 ], [ -94.912392888814253, 29.829261226316046 ], [ -94.912301889121125, 29.829225226615542 ], [ -94.912030888529657, 29.829120226563298 ], [ -94.912007889115401, 29.829111227098377 ], [ -94.911954888892765, 29.829062226780596 ], [ -94.911755888862558, 29.828878226745598 ], [ -94.911728888642372, 29.828853226500129 ], [ -94.911391888499324, 29.828440226606066 ], [ -94.911248888102421, 29.828245226976751 ], [ -94.911153888903016, 29.828115226789283 ], [ -94.911053888822224, 29.828074226628228 ], [ -94.911021888174702, 29.828061226753611 ], [ -94.910926888528053, 29.828022226956538 ], [ -94.910895888379883, 29.828010226231815 ], [ -94.910880888109702, 29.828003226401378 ], [ -94.910835888102199, 29.827985226814537 ], [ -94.910821888557024, 29.827980226430366 ], [ -94.91013888844877, 29.827553226741777 ], [ -94.909742887574609, 29.827306226792135 ], [ -94.90916088818949, 29.826919226152832 ], [ -94.90897788833972, 29.826735226811039 ], [ -94.908878888055568, 29.826475226215255 ], [ -94.908669888274289, 29.82607522605964 ], [ -94.908627887975769, 29.825821226537059 ], [ -94.908620887511958, 29.825776225741162 ], [ -94.908615887990678, 29.825493226361633 ], [ -94.908660887882689, 29.825186226112859 ], [ -94.908722887785075, 29.825033225837497 ], [ -94.908816887783786, 29.82480322641473 ], [ -94.908966887571466, 29.824381226255884 ], [ -94.909036887902801, 29.824187226130281 ], [ -94.909114887372382, 29.823805225913969 ], [ -94.909310887278494, 29.822660225753555 ], [ -94.90942788806106, 29.822349225373198 ], [ -94.909523887801811, 29.822096225208938 ], [ -94.909653887891139, 29.821691225135503 ], [ -94.909666887812904, 29.821648225714824 ], [ -94.909671887991365, 29.821630225414992 ], [ -94.909729888344003, 29.821450225396024 ], [ -94.909749888067481, 29.821391224912887 ], [ -94.909802887970471, 29.821274225420016 ], [ -94.909822887800217, 29.82122822478491 ], [ -94.909805888071318, 29.821228225236347 ], [ -94.909714887864652, 29.821224225648866 ], [ -94.90958288729523, 29.821219225132587 ], [ -94.909381887519544, 29.821213225093555 ], [ -94.908703887891193, 29.821196224989286 ], [ -94.907767887694718, 29.821168225614493 ], [ -94.907515887647278, 29.821161224842932 ], [ -94.907446887069625, 29.82116322521383 ], [ -94.907324886718982, 29.821154225145204 ], [ -94.907145887431938, 29.821144225145439 ], [ -94.906998887099434, 29.821142225369989 ], [ -94.906255886702354, 29.821132225382609 ], [ -94.904108886060044, 29.821172224974696 ], [ -94.903401885825318, 29.821206225785254 ], [ -94.901627886012605, 29.821363225911579 ], [ -94.900210885466279, 29.821496225580798 ], [ -94.899377885428436, 29.821598225283552 ], [ -94.899246884710692, 29.82161522583425 ], [ -94.899134884774398, 29.821630225537838 ], [ -94.899029885398804, 29.821651226049511 ], [ -94.898834885362788, 29.821666226074431 ], [ -94.898769885162821, 29.821672225381512 ], [ -94.898005884692836, 29.821745226035709 ], [ -94.89742288502373, 29.821802225703681 ], [ -94.896724884945129, 29.821860226058615 ], [ -94.894936884102023, 29.822026225912253 ], [ -94.893913884222002, 29.822122226064046 ], [ -94.893582883623097, 29.822147225740331 ], [ -94.893310883441146, 29.822170225809874 ], [ -94.891094883594164, 29.822358225876759 ], [ -94.88959088314391, 29.822480226186901 ], [ -94.889431882924526, 29.822494226433246 ], [ -94.888095882426484, 29.82262222580497 ], [ -94.886552882035019, 29.822760226457167 ], [ -94.885107881961162, 29.822882226650382 ], [ -94.883708881723095, 29.823010226064547 ], [ -94.882308880450651, 29.823131226169973 ], [ -94.880905880543978, 29.823235226902209 ], [ -94.880743880217409, 29.823250227032062 ], [ -94.878057880051927, 29.823499226770217 ], [ -94.876629879804497, 29.823620227087748 ], [ -94.875058878838146, 29.823759226753626 ], [ -94.874854878563994, 29.823778226883434 ], [ -94.872992878208962, 29.823964226947947 ], [ -94.8726608784321, 29.823992226642101 ], [ -94.872311878715223, 29.824023227474861 ], [ -94.872283878618731, 29.824025227213859 ], [ -94.87222187845525, 29.824030227291079 ], [ -94.872003878166211, 29.824048226937407 ], [ -94.871953878655162, 29.824053227156472 ], [ -94.871864878128378, 29.824063226751615 ], [ -94.871707878425511, 29.824079226755604 ], [ -94.870361877827591, 29.824201226842195 ], [ -94.870051877271266, 29.824230227261232 ], [ -94.867106877198495, 29.824479226910928 ], [ -94.866623876422167, 29.824515227335525 ], [ -94.865848876710999, 29.824575226990387 ], [ -94.865660876854335, 29.824589227655895 ], [ -94.864454876257781, 29.824683227010407 ], [ -94.864344876182813, 29.82469322750616 ], [ -94.860812875793201, 29.825013227392461 ], [ -94.859912874704364, 29.825095227238407 ], [ -94.858959874555097, 29.825174228133015 ], [ -94.855570873692386, 29.825431227944129 ], [ -94.854783874034325, 29.825511227577771 ], [ -94.854201873236391, 29.825560228231485 ], [ -94.85301087383823, 29.825657228046015 ], [ -94.851675872768467, 29.825773227849396 ], [ -94.850990872792934, 29.825832228176051 ], [ -94.85021087290832, 29.825899228135967 ], [ -94.849691872987165, 29.825934227942554 ], [ -94.846677871945545, 29.826198228561683 ], [ -94.846359872076988, 29.826234228508309 ], [ -94.845884871467831, 29.826276228230022 ], [ -94.844579871286783, 29.826394228559913 ], [ -94.843502871136295, 29.826469228267278 ], [ -94.843078871302879, 29.826499228583597 ], [ -94.84270887101637, 29.826530228519758 ], [ -94.84263287063591, 29.826536228954303 ], [ -94.842449870639214, 29.826553228598435 ], [ -94.841909870344196, 29.826605228290941 ], [ -94.841055870594985, 29.826688228518659 ], [ -94.839899870083386, 29.826794228621772 ], [ -94.839041869699159, 29.826873228966715 ], [ -94.837147869247843, 29.827046228641265 ], [ -94.836109868930961, 29.827136229010097 ], [ -94.835586869355055, 29.827182228654227 ], [ -94.835013868597699, 29.827240229226536 ], [ -94.834551868387535, 29.827287228760639 ], [ -94.831564867455853, 29.827557228952493 ], [ -94.828578867672277, 29.827814229302703 ], [ -94.825408866707392, 29.828069229891547 ], [ -94.825376865938338, 29.828072229234007 ], [ -94.82249986553056, 29.828325229691064 ], [ -94.821453865499464, 29.828411229911143 ], [ -94.819473864797118, 29.828553230068696 ], [ -94.819423864511322, 29.828557229489828 ], [ -94.819385865190341, 29.828560229956491 ], [ -94.817207863827008, 29.828758229559295 ], [ -94.817088863993661, 29.828766229798568 ], [ -94.813936863035664, 29.829061230073965 ], [ -94.812936862774862, 29.829154230325461 ], [ -94.812497862658745, 29.829206230512352 ], [ -94.811920863113642, 29.829253229828382 ], [ -94.80962486195007, 29.829444230695856 ], [ -94.808754862530492, 29.829517230634316 ], [ -94.807226861384834, 29.829653230226885 ], [ -94.806569861640284, 29.829713230234734 ], [ -94.806164861078102, 29.82975623057597 ], [ -94.805293861508801, 29.829872230281126 ], [ -94.804383861004681, 29.830011230420983 ], [ -94.804237860642928, 29.830040230149621 ], [ -94.804116861428028, 29.830060230358292 ], [ -94.80375486133812, 29.830123230849409 ], [ -94.803722860841305, 29.830129230475023 ], [ -94.803635860507981, 29.830148230557292 ], [ -94.803569861309285, 29.830161230694934 ], [ -94.803374861150047, 29.830204230226098 ], [ -94.803309860512499, 29.830219230487963 ], [ -94.802723860183121, 29.830294230376015 ], [ -94.802632860190172, 29.830311230404607 ], [ -94.802360860452438, 29.830363231042259 ], [ -94.802270860796838, 29.830381230846079 ], [ -94.802192860029137, 29.83039623071749 ], [ -94.801960860098006, 29.830441230466938 ], [ -94.801883860692087, 29.830457231116533 ], [ -94.801874860669628, 29.83038923066983 ], [ -94.801862860009152, 29.830285230307286 ], [ -94.801849860256183, 29.830186230835103 ], [ -94.801841860732992, 29.830119230405668 ], [ -94.801631860764019, 29.830163231111008 ], [ -94.801527860164839, 29.830186230433608 ], [ -94.801147860708042, 29.830304230961559 ], [ -94.800790860469448, 29.830389230465325 ], [ -94.800768859746512, 29.830404231084145 ], [ -94.800766860096303, 29.83047423077609 ], [ -94.800031859746241, 29.830621231180125 ], [ -94.798433859921801, 29.83090623100313 ], [ -94.794054858343912, 29.831685231116658 ], [ -94.793967858442159, 29.831702231655772 ], [ -94.793446858770409, 29.831797231398465 ], [ -94.791962858014372, 29.832071231016382 ], [ -94.791722857617501, 29.832118231832908 ], [ -94.789551857174132, 29.8325392317156 ], [ -94.78868585704457, 29.832673231241412 ], [ -94.788631857558457, 29.832681232093599 ], [ -94.788536857084836, 29.832700231247468 ], [ -94.787456856448344, 29.832908231820383 ], [ -94.785548856009257, 29.833264231751539 ], [ -94.781041855015957, 29.834066231770116 ], [ -94.778724854210253, 29.834465232102712 ], [ -94.777492854226665, 29.834692232689161 ], [ -94.774199853414842, 29.835306232284967 ], [ -94.773436853580975, 29.835460232496761 ], [ -94.771854853176563, 29.835782232446345 ], [ -94.771782853123028, 29.835796233172651 ], [ -94.767260851756873, 29.8366062330721 ], [ -94.766156851408809, 29.836797233444077 ], [ -94.764965851692708, 29.837008233059255 ], [ -94.763923851453299, 29.837178233323169 ], [ -94.763362851037783, 29.837260233194218 ], [ -94.76335085069114, 29.837349233391222 ], [ -94.763313850944101, 29.837410233173074 ], [ -94.763185850485627, 29.837626233506263 ], [ -94.761940850214202, 29.839710233635138 ], [ -94.761550850328561, 29.840016234045518 ], [ -94.759314850058502, 29.84177523446505 ], [ -94.756345849196933, 29.843236235230592 ], [ -94.755488848858249, 29.843654234664399 ], [ -94.753804848949599, 29.844401235663167 ], [ -94.753026848429172, 29.844671235653706 ], [ -94.751720848530752, 29.845125235064828 ], [ -94.750010847989941, 29.8458932355645 ], [ -94.749273847872004, 29.846303236131071 ], [ -94.748530847918659, 29.847092236095357 ], [ -94.748249847440178, 29.84809623621712 ], [ -94.748157847209797, 29.850016236355664 ], [ -94.748261847248102, 29.850734237003511 ], [ -94.748906847815164, 29.852205237460968 ], [ -94.749110847968865, 29.853422237078018 ], [ -94.748929847938754, 29.854071237742414 ], [ -94.748657847796807, 29.855047237529085 ], [ -94.747193847429585, 29.857225238308772 ], [ -94.745581847431097, 29.85948623875607 ], [ -94.744499847452261, 29.86189923933669 ], [ -94.743360846768468, 29.864333239363916 ], [ -94.742911846829998, 29.866218240255858 ], [ -94.743228847000424, 29.869912240541332 ], [ -94.743816846931892, 29.873382241836389 ], [ -94.744288847552426, 29.875004242317182 ], [ -94.74461884751787, 29.876045242539206 ], [ -94.744483847446105, 29.877166242287711 ], [ -94.744243847612651, 29.878005242926395 ], [ -94.743334847584109, 29.879443242629648 ], [ -94.742990847907777, 29.879990243213285 ], [ -94.740538846505459, 29.882678243186028 ], [ -94.74001384726327, 29.883862243710215 ], [ -94.73974584673023, 29.884599243662933 ], [ -94.739462846964884, 29.885509244491516 ], [ -94.738863846296809, 29.887222244518778 ], [ -94.738924847080696, 29.887221244417816 ], [ -94.739040846258817, 29.887218244576864 ], [ -94.739156846739689, 29.887217244371353 ], [ -94.74482784779542, 29.88712324398513 ], [ -94.750204849773795, 29.887057244470125 ], [ -94.758416851733926, 29.886954243469795 ], [ -94.758881852057598, 29.88694824401686 ], [ -94.758994852043585, 29.886947243767857 ], [ -94.759107852192656, 29.886945244039424 ], [ -94.759223851615147, 29.886943244235745 ], [ -94.759339851904713, 29.886942243748809 ], [ -94.759438852108147, 29.886941243848028 ], [ -94.763027852637208, 29.886896243485996 ], [ -94.763132853269482, 29.886895243500121 ], [ -94.763235853347439, 29.886894243445845 ], [ -94.770944854590411, 29.88679824305876 ], [ -94.771917855477255, 29.886789243528302 ], [ -94.772449855471109, 29.886784243455086 ], [ -94.774048855976474, 29.886768243574274 ], [ -94.774581856160637, 29.886764243379144 ], [ -94.775333856129436, 29.886755242827675 ], [ -94.777591856665708, 29.886733243305766 ], [ -94.778122856452597, 29.886729242832324 ], [ -94.778198857261543, 29.886728242865704 ], [ -94.778271856728153, 29.886727243196745 ], [ -94.778345856994449, 29.886728243055234 ], [ -94.778448857302379, 29.886727243079179 ], [ -94.778592856739337, 29.886726243089264 ], [ -94.778800856848932, 29.886725242686563 ], [ -94.779336857115553, 29.886718243133842 ], [ -94.779587856803076, 29.886717242885652 ], [ -94.779653856914166, 29.886716243447648 ], [ -94.77985385682841, 29.886713242841726 ], [ -94.779920857727362, 29.886713243443985 ], [ -94.780089857036231, 29.886711243475851 ], [ -94.78054985730364, 29.886706243139578 ], [ -94.780598857511606, 29.88670624327473 ], [ -94.780768857606617, 29.886706242903546 ], [ -94.780867857779413, 29.886706242841456 ], [ -94.780928857016789, 29.8867052434843 ], [ -94.781405858048416, 29.88670124343545 ], [ -94.781565857444505, 29.886700243256815 ], [ -94.78199985768839, 29.88669624309534 ], [ -94.782105858144106, 29.886696242846977 ], [ -94.783301857842304, 29.88668424320635 ], [ -94.783736858556168, 29.886681242983244 ], [ -94.784165858554658, 29.886677242975995 ], [ -94.785454858559987, 29.886665242495848 ], [ -94.785501859104272, 29.886664242735613 ], [ -94.78588485905091, 29.886662242533227 ], [ -94.786588858575641, 29.886655242532704 ], [ -94.787809858893482, 29.886646243115969 ], [ -94.788327859342203, 29.886641242529628 ], [ -94.788703859344764, 29.886637242361811 ], [ -94.789386859357222, 29.886633242801004 ], [ -94.789409859640159, 29.886632243102166 ], [ -94.789561859466559, 29.886631242317012 ], [ -94.78988486028851, 29.886628243139725 ], [ -94.790590860240044, 29.886623243077107 ], [ -94.791310859944602, 29.886613242862143 ], [ -94.791786860686628, 29.886607242608981 ], [ -94.792292860797062, 29.886600242437019 ], [ -94.793811861155206, 29.886580242263051 ], [ -94.79431886055572, 29.886574242602109 ], [ -94.794341860739721, 29.886573242959667 ], [ -94.794413860880297, 29.88657224291261 ], [ -94.794437860999636, 29.886572242382616 ], [ -94.794902861464806, 29.886565242555196 ], [ -94.796300861695286, 29.886546242185872 ], [ -94.796766861742213, 29.886541242513907 ], [ -94.796879861461306, 29.886539242603973 ], [ -94.797217862042615, 29.886534242898179 ], [ -94.797331861672617, 29.886533242617283 ], [ -94.797644861350278, 29.886528242226653 ], [ -94.797684861457469, 29.886528242181203 ], [ -94.798583861601472, 29.886516242073448 ], [ -94.79867386208953, 29.886515242858067 ], [ -94.798689862160089, 29.886515241997319 ], [ -94.798896862239062, 29.886512242687751 ], [ -94.799785862257778, 29.886500242761887 ], [ -94.800496862772619, 29.886491242258725 ], [ -94.802452863141141, 29.88644824207082 ], [ -94.802570863226435, 29.886446242168233 ], [ -94.802672863060167, 29.886443242311657 ], [ -94.802775862867875, 29.886441242345807 ], [ -94.803341863661927, 29.886429241962102 ], [ -94.80341486291158, 29.886427241887766 ], [ -94.803633862946782, 29.886422241777424 ], [ -94.803707863172164, 29.886421242439607 ], [ -94.803766862933429, 29.886419242114336 ], [ -94.803890863441637, 29.88641724186947 ], [ -94.803945863420509, 29.886416242121925 ], [ -94.804005863128907, 29.88641524255274 ], [ -94.804488863463661, 29.88640424241127 ], [ -94.805936864193853, 29.886373242388554 ], [ -94.806420863839122, 29.886363242451601 ], [ -94.807448864219168, 29.886371242532299 ], [ -94.808448864807687, 29.886380242178149 ], [ -94.810532865486906, 29.886339242302014 ], [ -94.810737865719503, 29.886336241741709 ], [ -94.811560865241702, 29.886320242222059 ], [ -94.811595865043344, 29.886319242333048 ], [ -94.811741865107265, 29.886316241630865 ], [ -94.812286865649142, 29.886306241826361 ], [ -94.812468865460986, 29.886303241955364 ], [ -94.812802865344779, 29.886296241919478 ], [ -94.81380586561977, 29.886276242152483 ], [ -94.813900866133764, 29.886275241609972 ], [ -94.814096865847588, 29.88627124187877 ], [ -94.814140866336587, 29.886270241409978 ], [ -94.814521866512038, 29.886262241747982 ], [ -94.815664866516357, 29.886241241606395 ], [ -94.815800866038529, 29.886239241717117 ], [ -94.816046866101132, 29.886236241633799 ], [ -94.816704866285534, 29.886229241666239 ], [ -94.81868186757076, 29.886210241570829 ], [ -94.819340866991254, 29.886204242053626 ], [ -94.819653867422474, 29.886201241525701 ], [ -94.819854867976261, 29.886199241722238 ], [ -94.82059386726003, 29.886190241752349 ], [ -94.820908867370591, 29.886188241289066 ], [ -94.821063867655084, 29.886186241178361 ], [ -94.821286868013843, 29.886188241332661 ], [ -94.822423868445156, 29.886199241177124 ], [ -94.822555867776529, 29.886200241601248 ], [ -94.822802868775355, 29.88620424145919 ], [ -94.823476868478636, 29.886175241890466 ], [ -94.823834868984946, 29.886161241124423 ], [ -94.824070868760046, 29.886156241294671 ], [ -94.825501869019405, 29.886131241379527 ], [ -94.826176869422014, 29.886119241482845 ], [ -94.826200868719354, 29.886118241298064 ], [ -94.826273869304728, 29.886117241763376 ], [ -94.826298868808323, 29.886117241354349 ], [ -94.826320869673538, 29.886116241264642 ], [ -94.826608869539299, 29.886111241520307 ], [ -94.826682868831966, 29.886110241235549 ], [ -94.82753986951586, 29.886094241047754 ], [ -94.827850869144001, 29.886089241703019 ], [ -94.827988869838777, 29.886086240887042 ], [ -94.828404870076156, 29.886079241586309 ], [ -94.82854386986179, 29.886077241748115 ], [ -94.828947869652509, 29.886069241088286 ], [ -94.829839870408605, 29.886054241328701 ], [ -94.83016286996164, 29.8860502415951 ], [ -94.830429870664446, 29.886047241412335 ], [ -94.83056887079141, 29.886046241566245 ], [ -94.830726870438767, 29.886044241375842 ], [ -94.831199870061241, 29.886039241405904 ], [ -94.831358870939624, 29.886038241161806 ], [ -94.831469870315118, 29.886037241458141 ], [ -94.831517870235487, 29.886036241312684 ], [ -94.831567870672956, 29.886041240836402 ], [ -94.832192870691429, 29.88602924144103 ], [ -94.832401870323395, 29.886028241441611 ], [ -94.832768870967683, 29.886024241005273 ], [ -94.833871870860818, 29.886012240658538 ], [ -94.834242871663676, 29.88600924152496 ], [ -94.834468871103525, 29.886007241415378 ], [ -94.834487871617313, 29.886006240714746 ], [ -94.835231871892276, 29.88599924111919 ], [ -94.83548087115436, 29.885997241052138 ], [ -94.836977872445985, 29.885983240636651 ], [ -94.837283872350909, 29.885979240614287 ], [ -94.842692873497128, 29.88591224039941 ], [ -94.844496874385868, 29.885890240767424 ], [ -94.846550873967686, 29.885878240386987 ], [ -94.852712875544185, 29.885842240390719 ], [ -94.854698876479461, 29.885831240573225 ], [ -94.854766876325769, 29.885830240752238 ], [ -94.856747876579718, 29.885809240354387 ], [ -94.85895787799754, 29.885786240419879 ], [ -94.862690878837171, 29.885721239746736 ], [ -94.863002878211475, 29.885716240420564 ], [ -94.864671879255823, 29.88568724009119 ], [ -94.86579587928405, 29.885667240093433 ], [ -94.866018879493723, 29.885663240197573 ], [ -94.869168880213493, 29.885608240054072 ], [ -94.870293880689715, 29.88558923982281 ], [ -94.870973881039106, 29.885579239743073 ], [ -94.8729708812441, 29.885551239818621 ], [ -94.873012881652514, 29.885550239794476 ], [ -94.873181881716036, 29.885548240102239 ], [ -94.873478881245774, 29.885544240065226 ], [ -94.873693881557131, 29.88554123980423 ], [ -94.873890881856056, 29.885538239870648 ], [ -94.874481881612056, 29.885529239204534 ], [ -94.874679881433252, 29.885527239318307 ], [ -94.874784881245517, 29.885525239343885 ], [ -94.875101882044646, 29.885520239335612 ], [ -94.875207881451743, 29.885519239329504 ], [ -94.875541882090602, 29.885530239685806 ], [ -94.876545882676609, 29.885563239410342 ], [ -94.876880882168734, 29.885574239141565 ], [ -94.877043882689307, 29.885572239773182 ], [ -94.877533882809388, 29.885568239180603 ], [ -94.877697882942755, 29.885567239299075 ], [ -94.878122882134917, 29.885562239419301 ], [ -94.879398882825583, 29.885551239173374 ], [ -94.879824883373971, 29.885547239644488 ], [ -94.881046883261689, 29.885535239585447 ], [ -94.881763883603412, 29.885529239517552 ], [ -94.884715883855691, 29.885502239341527 ], [ -94.884822884635511, 29.885501238991445 ], [ -94.885938884696444, 29.885491239274369 ], [ -94.887160885072547, 29.885479239574138 ], [ -94.88759888466511, 29.885475239302657 ], [ -94.888668885391141, 29.885465239474296 ], [ -94.890452885936028, 29.885449238980225 ], [ -94.890668886284558, 29.885447238823033 ], [ -94.892579886803048, 29.885430238909414 ], [ -94.893846886468168, 29.885418239016392 ], [ -94.894112887170706, 29.885416238971906 ], [ -94.894240886394812, 29.885415239160363 ], [ -94.894315886862032, 29.885414238581003 ], [ -94.89454088723933, 29.885412238617327 ], [ -94.894616886430114, 29.885412238894279 ], [ -94.894728887260214, 29.885411239224485 ], [ -94.894852886513476, 29.885409238947794 ], [ -94.894990886763821, 29.885407239075665 ], [ -94.897737887870974, 29.885372238866729 ], [ -94.907101890394912, 29.885255238485669 ], [ -94.908475890603654, 29.885238238504336 ], [ -94.909754890864377, 29.885222238723074 ], [ -94.909849890845521, 29.885221238012324 ], [ -94.909917890683303, 29.885220238261841 ], [ -94.910154890558331, 29.885217238305366 ], [ -94.910223891130428, 29.885216238215339 ], [ -94.910260891037453, 29.885215238405209 ], [ -94.91028189087632, 29.885215238547651 ], [ -94.910374890364281, 29.885214238769308 ], [ -94.910412891292765, 29.885214238083829 ], [ -94.911022891534486, 29.885206238154318 ], [ -94.912854891258021, 29.885185238250386 ], [ -94.913465891717323, 29.88517823808634 ], [ -94.914171891549202, 29.885173238413383 ], [ -94.916293892294931, 29.885160238306799 ], [ -94.91637489207632, 29.885159238318597 ], [ -94.917000892336517, 29.885156238202285 ], [ -94.917591892483586, 29.885152237790223 ], [ -94.919007892686224, 29.885143238360428 ], [ -94.919366893402355, 29.885140238465375 ], [ -94.919560893631314, 29.885139237869588 ], [ -94.919800893174767, 29.885138237692136 ], [ -94.919879893422902, 29.885137237967573 ], [ -94.919958892975998, 29.885137238419333 ], [ -94.920072893208143, 29.885137238044656 ], [ -94.920185893392343, 29.885136237609618 ], [ -94.921233894086782, 29.885129238052336 ], [ -94.922849893741628, 29.885101238318921 ], [ -94.928096895947292, 29.885013237284802 ], [ -94.931523896441576, 29.884955238002007 ], [ -94.934415896639734, 29.884907237639855 ], [ -94.934466896733184, 29.884906237479196 ], [ -94.934590897248341, 29.884904237580216 ], [ -94.934621897410452, 29.884903237017372 ], [ -94.934673897166022, 29.884902237281452 ], [ -94.93471589748745, 29.884900237591967 ], [ -94.93472689713532, 29.884900237804938 ], [ -94.934770896797616, 29.884900237777437 ], [ -94.934801897443648, 29.884900237427413 ], [ -94.934863897177564, 29.884899237321786 ], [ -94.934913897560421, 29.884898237391312 ], [ -94.935024896936028, 29.884896237631771 ], [ -94.938263898416437, 29.88484623771993 ], [ -94.943889899241569, 29.884761236919882 ], [ -94.948069900914618, 29.884696236895039 ], [ -94.948191900623755, 29.884695237370916 ], [ -94.948651900744039, 29.884687236646474 ], [ -94.951694901031871, 29.884641237104077 ], [ -94.95211490191042, 29.884635236640126 ], [ -94.952612901467191, 29.884643237035519 ], [ -94.95410690227763, 29.884670236913632 ], [ -94.954605902256475, 29.884679236837734 ], [ -94.955475902033314, 29.884623236650683 ], [ -94.958085902976606, 29.88445723633324 ], [ -94.95846390315819, 29.884434236639386 ], [ -94.958571903293119, 29.884427236950785 ], [ -94.958956902886101, 29.884425236768266 ], [ -94.958977903619555, 29.884424236312238 ], [ -94.959042903176112, 29.884424236206176 ], [ -94.95906490326044, 29.88442423628128 ], [ -94.961955904011361, 29.88440623672161 ], [ -94.963544904321068, 29.884395236130732 ], [ -94.964071904790785, 29.884391236020242 ], [ -94.976985908017014, 29.884309235702265 ], [ -94.981466909026949, 29.884281235626698 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1499, "Tract": "48039661502", "Area_SqMi": 24.470528113652819, "total_2009": 387, "total_2010": 442, "total_2011": 465, "total_2012": 736, "total_2013": 753, "total_2014": 628, "total_2015": 676, "total_2016": 818, "total_2017": 998, "total_2018": 996, "total_2019": 1175, "total_2020": 1206, "age1": 198, "age2": 357, "age3": 189, "earn1": 193, "earn2": 271, "earn3": 280, "naics_s01": 0, "naics_s02": 13, "naics_s03": 41, "naics_s04": 23, "naics_s05": 2, "naics_s06": 48, "naics_s07": 199, "naics_s08": 23, "naics_s09": 0, "naics_s10": 13, "naics_s11": 1, "naics_s12": 31, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 109, "naics_s17": 13, "naics_s18": 90, "naics_s19": 53, "naics_s20": 84, "race1": 597, "race2": 95, "race3": 5, "race4": 26, "race5": 0, "race6": 21, "ethnicity1": 524, "ethnicity2": 220, "edu1": 107, "edu2": 169, "edu3": 161, "edu4": 109, "Shape_Length": 163958.31654999749, "Shape_Area": 682196442.08120191, "total_2021": 1239, "total_2022": 744 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.363709987563041, 29.447580132853236 ], [ -95.363692987927323, 29.447197133085879 ], [ -95.36368098773724, 29.446514132977565 ], [ -95.363649987934963, 29.445672132477402 ], [ -95.360969986666831, 29.441276131865799 ], [ -95.360673987404198, 29.440789131634777 ], [ -95.357991986164407, 29.436389131364628 ], [ -95.357918986348878, 29.436270130706756 ], [ -95.35768498614776, 29.435885130822367 ], [ -95.357571985653536, 29.435700130483173 ], [ -95.357538986035493, 29.435645130390306 ], [ -95.357390985933023, 29.435403130727703 ], [ -95.355472985759903, 29.432257130500581 ], [ -95.355465985550637, 29.43224613008919 ], [ -95.354160984681826, 29.430104129586571 ], [ -95.354003985171303, 29.429760129414678 ], [ -95.352014983847781, 29.426576129135825 ], [ -95.351962983604423, 29.426370128874765 ], [ -95.352773984069771, 29.425087128589013 ], [ -95.352977984622981, 29.425022129036119 ], [ -95.356830985637814, 29.423804128366822 ], [ -95.357405985393754, 29.423735128426586 ], [ -95.358269985972626, 29.423850128086421 ], [ -95.359420985823348, 29.424354128561117 ], [ -95.360389986570098, 29.423689128379575 ], [ -95.360127985760926, 29.42272712770643 ], [ -95.360048986120887, 29.42268112844231 ], [ -95.359996986240972, 29.42128412765112 ], [ -95.359865986280624, 29.421078127593894 ], [ -95.359839985960349, 29.42052812751751 ], [ -95.360075985649274, 29.419955127501403 ], [ -95.360022986119446, 29.418993126975728 ], [ -95.36010198627369, 29.418741127674263 ], [ -95.360493986003632, 29.418351126757699 ], [ -95.360834985640608, 29.417389127013362 ], [ -95.361723986312001, 29.41661012669891 ], [ -95.362090986292088, 29.416152126552614 ], [ -95.362116986429385, 29.41578612690385 ], [ -95.361880986301557, 29.415556126713387 ], [ -95.361854986518452, 29.415098126737529 ], [ -95.361619985912853, 29.414525126690112 ], [ -95.361069985984088, 29.414159126425957 ], [ -95.360703986210737, 29.413769126437234 ], [ -95.360363985816832, 29.41299012567676 ], [ -95.360258986104171, 29.412303125689586 ], [ -95.360179985381308, 29.412234126157841 ], [ -95.36015398517911, 29.411845125391785 ], [ -95.360284985500144, 29.41143312611047 ], [ -95.360180985142691, 29.411181125866161 ], [ -95.359866985636032, 29.411089125909989 ], [ -95.359133984817845, 29.410997125203629 ], [ -95.358714984679878, 29.410654125776414 ], [ -95.358610984876464, 29.410356125907356 ], [ -95.358139985290947, 29.410310125517768 ], [ -95.357851985314468, 29.410149125561961 ], [ -95.357511985043573, 29.409806125703394 ], [ -95.35727598499065, 29.409370125361718 ], [ -95.356987984236213, 29.409096125437802 ], [ -95.3566219845614, 29.408981125096272 ], [ -95.356281984418175, 29.408660125248044 ], [ -95.356098984719424, 29.408294124854446 ], [ -95.355653984134619, 29.408019124943802 ], [ -95.355418984276255, 29.407721125054458 ], [ -95.355365984389266, 29.407538125221979 ], [ -95.355810984021701, 29.406827125191505 ], [ -95.355941984101037, 29.406438125053889 ], [ -95.355915983998088, 29.405751124695016 ], [ -95.355784983799609, 29.405292124877693 ], [ -95.355522983586084, 29.405109124925833 ], [ -95.354685983584289, 29.404742124310541 ], [ -95.354659983728538, 29.404651124850265 ], [ -95.353848983976889, 29.403803124086348 ], [ -95.353665983674645, 29.403505124103361 ], [ -95.353351983305757, 29.403322124008952 ], [ -95.353115983200794, 29.403322124598919 ], [ -95.35222698342848, 29.403620124316614 ], [ -95.351519983084813, 29.403734124852523 ], [ -95.351153982647034, 29.40350512468039 ], [ -95.350970982989551, 29.403138124070384 ], [ -95.350970982497628, 29.402611123869853 ], [ -95.351520983289262, 29.402199124102129 ], [ -95.352426982840456, 29.402043124060089 ], [ -95.352854983548966, 29.401970124359408 ], [ -95.353246983529047, 29.401741123607561 ], [ -95.353377983256095, 29.401558123485085 ], [ -95.353377983220696, 29.401168123851889 ], [ -95.353691983427311, 29.400756124104781 ], [ -95.353717983499877, 29.400389123262698 ], [ -95.353613983101766, 29.400114123798939 ], [ -95.353247983159889, 29.399794123413749 ], [ -95.352802982891347, 29.399565123446742 ], [ -95.351625982467397, 29.399427123449282 ], [ -95.351389982411987, 29.399221123527536 ], [ -95.351389982298528, 29.399037123470308 ], [ -95.351572983148671, 29.398785123038341 ], [ -95.352567983222229, 29.398282123359191 ], [ -95.353064983650839, 29.397823122731012 ], [ -95.353535983182169, 29.396426122550771 ], [ -95.353901983003297, 29.39608212273167 ], [ -95.354320983517496, 29.395945122286989 ], [ -95.354895983835377, 29.395624122533729 ], [ -95.35581198421292, 29.39539512279265 ], [ -95.356831984259088, 29.394937122205786 ], [ -95.357328983896636, 29.394616122346267 ], [ -95.357485984240057, 29.394204122029585 ], [ -95.357512984032041, 29.392990122269236 ], [ -95.358427984187003, 29.391913121855566 ], [ -95.358480983929809, 29.391592121918194 ], [ -95.358349984490914, 29.391317121508081 ], [ -95.35800998392331, 29.391020121274298 ], [ -95.357930984374775, 29.39079012163285 ], [ -95.35766998424414, 29.390676121468104 ], [ -95.357250984153012, 29.389966121235311 ], [ -95.357041983849797, 29.389324121479202 ], [ -95.357146983573159, 29.389164120782123 ], [ -95.357381983690857, 29.389026121151112 ], [ -95.357904983938951, 29.388980120745245 ], [ -95.358114984375874, 29.388866121551111 ], [ -95.358349984160654, 29.388568121478979 ], [ -95.358428984097912, 29.387858120476949 ], [ -95.357931984253455, 29.386804121148796 ], [ -95.357904984020962, 29.386369121009643 ], [ -95.358192983658881, 29.385819120733981 ], [ -95.35824598411152, 29.38529212061902 ], [ -95.358137984364049, 29.38504712042824 ], [ -95.358114983699281, 29.384994120196652 ], [ -95.35811498363303, 29.384605120212409 ], [ -95.358454984147173, 29.384146120125489 ], [ -95.358559983711942, 29.383894119649764 ], [ -95.35850698404407, 29.383642119745062 ], [ -95.358114983464276, 29.383436119627596 ], [ -95.357782983426631, 29.38256412024554 ], [ -95.357748983313215, 29.382474119585073 ], [ -95.357329984048846, 29.381924119465008 ], [ -95.356832983625893, 29.380778119597139 ], [ -95.356806982955987, 29.380251119099412 ], [ -95.356885983173711, 29.380091119474855 ], [ -95.357486983202151, 29.379931119612856 ], [ -95.357722983518059, 29.379702119594512 ], [ -95.357722983414774, 29.379312118987826 ], [ -95.357486983783048, 29.379106119203765 ], [ -95.357486983769377, 29.378739118697364 ], [ -95.357303983938522, 29.378717118960843 ], [ -95.356963983514675, 29.37814411856165 ], [ -95.356623983352932, 29.377983118803886 ], [ -95.355760982705135, 29.378327119386508 ], [ -95.355315982493622, 29.378350119048861 ], [ -95.355106982746705, 29.378258118753191 ], [ -95.354818983215949, 29.377960118811476 ], [ -95.354191982910109, 29.377617118873143 ], [ -95.353537981967833, 29.376975118741775 ], [ -95.35311898226783, 29.376952118494852 ], [ -95.352752982328596, 29.377319119266172 ], [ -95.352412981827783, 29.377433118742143 ], [ -95.35212498211304, 29.377410119321141 ], [ -95.35183798184849, 29.377112119151718 ], [ -95.351811981511872, 29.376425119078469 ], [ -95.351680981962843, 29.376173118746671 ], [ -95.351497981311709, 29.376081119024402 ], [ -95.351235982021791, 29.376104119109769 ], [ -95.350764982104053, 29.376677118513811 ], [ -95.35045098168996, 29.376768118560516 ], [ -95.349901981571364, 29.376035119066227 ], [ -95.34987598133192, 29.375440119014005 ], [ -95.35005898130099, 29.37525611840049 ], [ -95.350294981422621, 29.374981118096208 ], [ -95.350346981717919, 29.374729118641625 ], [ -95.350084981148555, 29.374500118677691 ], [ -95.349404981287591, 29.374638118821302 ], [ -95.34875198156432, 29.374363118111066 ], [ -95.348410981072917, 29.374340118523769 ], [ -95.347678980823261, 29.374706118243175 ], [ -95.347286981032468, 29.374775118738388 ], [ -95.346292980157244, 29.374729118514338 ], [ -95.345795980799863, 29.374866118934943 ], [ -95.345533980361807, 29.375256118689197 ], [ -95.345350979933812, 29.375439118481058 ], [ -95.344277980348821, 29.375920118664794 ], [ -95.343964979802479, 29.375897119093004 ], [ -95.343571979349122, 29.375599119117442 ], [ -95.342891979235574, 29.375255119159068 ], [ -95.3424739796978, 29.374912118440935 ], [ -95.342133979630319, 29.374774118973171 ], [ -95.341793978839931, 29.374705118504625 ], [ -95.341583979409748, 29.374820118454085 ], [ -95.341034978647102, 29.374888118734173 ], [ -95.340825979323071, 29.375026119033663 ], [ -95.340720979204676, 29.375255119221574 ], [ -95.34051197943684, 29.375438119347884 ], [ -95.340066979310777, 29.37546111940993 ], [ -95.339622978722716, 29.375255119354023 ], [ -95.33902097905532, 29.375186119044958 ], [ -95.338889978863946, 29.375254118659694 ], [ -95.338445978568828, 29.375644118937025 ], [ -95.337869978170446, 29.375827119181782 ], [ -95.337581977918873, 29.375667119143269 ], [ -95.337372978535186, 29.375254119071993 ], [ -95.336928977910659, 29.37479611855079 ], [ -95.336535978370009, 29.374635118600676 ], [ -95.33619597835434, 29.374612118838421 ], [ -95.335201977540805, 29.374933119154214 ], [ -95.33517597762237, 29.37525411896705 ], [ -95.335070977853306, 29.37541411955128 ], [ -95.334835977354871, 29.375460119561303 ], [ -95.334364977600487, 29.375253119333788 ], [ -95.333501977055477, 29.374589118850473 ], [ -95.332821976984917, 29.374428119372865 ], [ -95.332586977122276, 29.374611118945456 ], [ -95.332455976872936, 29.374841119416875 ], [ -95.332088976548505, 29.375001118992294 ], [ -95.331879976752035, 29.374886119113857 ], [ -95.331879976988589, 29.374520118808043 ], [ -95.332298976723379, 29.373512118877823 ], [ -95.332220976719611, 29.373122118649786 ], [ -95.332011977076689, 29.372916118644717 ], [ -95.331069976366905, 29.372847118622161 ], [ -95.330415976210247, 29.372916118632407 ], [ -95.330075975791061, 29.373030118467675 ], [ -95.329866976627414, 29.373351118959143 ], [ -95.32950097656952, 29.373419118561383 ], [ -95.329212975636807, 29.373076118921695 ], [ -95.329212976084136, 29.372319118494509 ], [ -95.329134975700796, 29.372045118983653 ], [ -95.328742976241131, 29.371884118388451 ], [ -95.32848097582017, 29.372090118742982 ], [ -95.328244975866482, 29.37293811860399 ], [ -95.327904975155278, 29.373121118575071 ], [ -95.327904976161022, 29.373487119388443 ], [ -95.327695975262941, 29.373579118666065 ], [ -95.327459975078355, 29.373579118977421 ], [ -95.327119975405452, 29.37335011908608 ], [ -95.326649974814984, 29.372800118717365 ], [ -95.326440974858798, 29.372158119020465 ], [ -95.326204975114663, 29.371883119071974 ], [ -95.325917975349611, 29.371814119066848 ], [ -95.325210975151663, 29.372089118317799 ], [ -95.324713975243199, 29.372593118870167 ], [ -95.32429597474156, 29.37266211884268 ], [ -95.323850974905355, 29.372295118742024 ], [ -95.323831974690719, 29.37227011904417 ], [ -95.323484974006263, 29.371814118415788 ], [ -95.32322697455659, 29.371380118559809 ], [ -95.323223974118562, 29.37125611830167 ], [ -95.323243974852915, 29.371135118673266 ], [ -95.323321974146921, 29.371012118306908 ], [ -95.322977974744745, 29.370381118368766 ], [ -95.322836974154001, 29.370178118516002 ], [ -95.322550974127552, 29.370029118344998 ], [ -95.322491974406901, 29.370006118215407 ], [ -95.322294973654365, 29.369902118285413 ], [ -95.322166973723043, 29.369865118016001 ], [ -95.322088974477182, 29.369841118414964 ], [ -95.321931973912839, 29.369810118336314 ], [ -95.321735973753036, 29.369746118252614 ], [ -95.321511973575085, 29.369741118566854 ], [ -95.321335973825029, 29.369717118628714 ], [ -95.321169974158963, 29.369720118371369 ], [ -95.320931973284303, 29.369759118523586 ], [ -95.320868974003488, 29.369777118024846 ], [ -95.320714973691778, 29.369787118429738 ], [ -95.320606973364946, 29.369806118845407 ], [ -95.320518973972668, 29.369808118263641 ], [ -95.320460973444725, 29.369836118891843 ], [ -95.320319973379057, 29.369633118025 ], [ -95.320250973649976, 29.369591118028136 ], [ -95.320034973806514, 29.369536118793306 ], [ -95.319926973689462, 29.369495118767198 ], [ -95.319789973297716, 29.369471118675968 ], [ -95.31959597376418, 29.369495117989874 ], [ -95.319460973271532, 29.369537118161364 ], [ -95.319349973102518, 29.369803118377117 ], [ -95.31927397302816, 29.369915118335278 ], [ -95.319267973251272, 29.3700621184284 ], [ -95.319269973112597, 29.370145118837417 ], [ -95.319252972914015, 29.370288118781609 ], [ -95.318966972933282, 29.370745118560325 ], [ -95.318878973684249, 29.370829118802845 ], [ -95.318797973413027, 29.37088911905364 ], [ -95.318691972852633, 29.370890118886436 ], [ -95.318642973382879, 29.370848119014052 ], [ -95.31852297285721, 29.370749118811595 ], [ -95.318402973354253, 29.370614118395903 ], [ -95.318371973095495, 29.370504118234066 ], [ -95.318310973275487, 29.370385118807775 ], [ -95.318248973085645, 29.370242119050282 ], [ -95.318228973242583, 29.369910118448487 ], [ -95.318230973027767, 29.36987011829715 ], [ -95.31823297328522, 29.369834118273509 ], [ -95.318238973109004, 29.369813118645258 ], [ -95.318265972547877, 29.369703118634092 ], [ -95.318321973373983, 29.369591118243523 ], [ -95.318406973577481, 29.369470118311298 ], [ -95.31853097313649, 29.369382118219104 ], [ -95.31857897345121, 29.369334118261882 ], [ -95.318690973621571, 29.369216117959716 ], [ -95.318749973107984, 29.36914811831792 ], [ -95.31895197276431, 29.369025117998461 ], [ -95.318987973269358, 29.368896118423919 ], [ -95.318974973286402, 29.368743118185083 ], [ -95.318783973175883, 29.36846411829411 ], [ -95.318606972618198, 29.368434118044362 ], [ -95.318473972602987, 29.368435118604804 ], [ -95.318285973263443, 29.368420118078415 ], [ -95.318112972840638, 29.368400118114561 ], [ -95.317903973043414, 29.368369118639155 ], [ -95.317548972296549, 29.368375118326199 ], [ -95.317227973219886, 29.368380117950519 ], [ -95.317027972575431, 29.368374118104459 ], [ -95.316939972845773, 29.368363118127029 ], [ -95.316772972298764, 29.368337117954844 ], [ -95.316655972509494, 29.368239118621446 ], [ -95.316651973036329, 29.368143118267955 ], [ -95.316677972656805, 29.367980118023279 ], [ -95.316791972865218, 29.367910118100227 ], [ -95.316855972490643, 29.367853118324021 ], [ -95.316910972610572, 29.367620117768144 ], [ -95.317023972738284, 29.367542117811034 ], [ -95.31704997229933, 29.367519118007799 ], [ -95.317168973120133, 29.367514117975801 ], [ -95.317275972919006, 29.367512117875652 ], [ -95.31733397291525, 29.36751111828243 ], [ -95.31740197237211, 29.367552118198375 ], [ -95.317509972374651, 29.36760011763209 ], [ -95.317625973222889, 29.367641118367818 ], [ -95.317704972491399, 29.367682118278186 ], [ -95.317815973022263, 29.367687117959886 ], [ -95.317842972972329, 29.367689117672935 ], [ -95.318023972885968, 29.367693117964766 ], [ -95.318148972481097, 29.36768411812362 ], [ -95.31829197324862, 29.367595117688275 ], [ -95.318434972983681, 29.367483118439743 ], [ -95.318528972578662, 29.367379118236482 ], [ -95.318623973042165, 29.367303118404624 ], [ -95.318738972824505, 29.367274117869471 ], [ -95.318941973270256, 29.367246117968705 ], [ -95.319056973135389, 29.367219117675205 ], [ -95.319102973243176, 29.367126117729587 ], [ -95.319235973615207, 29.367022118360811 ], [ -95.319368973621224, 29.366909117466562 ], [ -95.319443973139201, 29.366769117952064 ], [ -95.319515973678733, 29.366584118128202 ], [ -95.319609973534412, 29.366481117463675 ], [ -95.319666973585498, 29.366421117611683 ], [ -95.319839973124886, 29.366366117300174 ], [ -95.3200989730462, 29.366312117578818 ], [ -95.320430972973412, 29.366307117509855 ], [ -95.320447973831762, 29.366309117282377 ], [ -95.320602973200309, 29.366353117976143 ], [ -95.320670973048919, 29.366379117832292 ], [ -95.320786973176538, 29.366402117555076 ], [ -95.32088597365204, 29.366502117720479 ], [ -95.321003973380044, 29.366610118145296 ], [ -95.321054973336572, 29.366702117353018 ], [ -95.321382973461041, 29.366696118124878 ], [ -95.321399974212738, 29.366594117525743 ], [ -95.321444973984811, 29.366424117539307 ], [ -95.321480973839186, 29.366304117814295 ], [ -95.321518973928534, 29.366204117805864 ], [ -95.321561973394168, 29.366057117243201 ], [ -95.321526973938674, 29.365787117660371 ], [ -95.321446973349751, 29.365653117508828 ], [ -95.321355973237289, 29.365503117899653 ], [ -95.321266973395453, 29.36538511739397 ], [ -95.320970973558417, 29.365129117378732 ], [ -95.320939973530443, 29.365028117335186 ], [ -95.320895973831938, 29.364792117273669 ], [ -95.320830973234848, 29.364619117620112 ], [ -95.32073397307586, 29.364463117593466 ], [ -95.320646973798418, 29.364357117039962 ], [ -95.32049597352227, 29.364230116941236 ], [ -95.320301973018942, 29.364175117632765 ], [ -95.320147972897914, 29.364178117189006 ], [ -95.31982997352651, 29.364226117070988 ], [ -95.319589972787625, 29.364332117088331 ], [ -95.319522972674321, 29.364349117244764 ], [ -95.319401972868604, 29.364547116967266 ], [ -95.319248973077848, 29.364624117723384 ], [ -95.319153972864129, 29.364703117820277 ], [ -95.319018973426935, 29.364705117165837 ], [ -95.318843973372253, 29.364658117318253 ], [ -95.318630973126687, 29.364635116986253 ], [ -95.318388972846023, 29.364639117670055 ], [ -95.318331972392343, 29.364634117538252 ], [ -95.318166972986688, 29.364618117109195 ], [ -95.317982973140914, 29.364621117133144 ], [ -95.317538973116442, 29.364629117116408 ], [ -95.3173369729098, 29.36468511791989 ], [ -95.317232972159928, 29.364745117161998 ], [ -95.317048972631838, 29.364773117789678 ], [ -95.316962972534895, 29.36478411715067 ], [ -95.316791972133046, 29.364906117403091 ], [ -95.316684971925497, 29.364908117932789 ], [ -95.316559972774272, 29.364910117248247 ], [ -95.316461972285737, 29.364869117557642 ], [ -95.316433972109195, 29.36476311750846 ], [ -95.316423972791711, 29.364655117239263 ], [ -95.316464972586402, 29.364580117432375 ], [ -95.316538972633552, 29.364419117173618 ], [ -95.316537972260207, 29.364382117114648 ], [ -95.316536971969768, 29.364326117614844 ], [ -95.316621972457938, 29.364239117552948 ], [ -95.316667972065417, 29.3641621170398 ], [ -95.31680597269191, 29.363972116919179 ], [ -95.316898972084545, 29.363684117213115 ], [ -95.316904972276006, 29.363667116854241 ], [ -95.316952972893972, 29.363505117228918 ], [ -95.316949972845663, 29.36337911685979 ], [ -95.316946972674472, 29.36325211713142 ], [ -95.3169549720959, 29.363158117034232 ], [ -95.316951972438005, 29.363007117494295 ], [ -95.316919972269261, 29.36289711714706 ], [ -95.316817972009503, 29.362652116658236 ], [ -95.316718972456442, 29.362528117014708 ], [ -95.316669972239595, 29.362502116694099 ], [ -95.316600972756504, 29.362462116913726 ], [ -95.316424972139842, 29.362389117385082 ], [ -95.316269972274199, 29.362367117219783 ], [ -95.31609597224849, 29.362345116921137 ], [ -95.315901972077512, 29.36233011678457 ], [ -95.315746972191164, 29.362317117409592 ], [ -95.315524972394954, 29.362294117199554 ], [ -95.315339972116988, 29.362256116863982 ], [ -95.315194972237421, 29.36222511748273 ], [ -95.315028972068106, 29.362160117084223 ], [ -95.314959971771685, 29.362101116949344 ], [ -95.314899971531986, 29.362009116682806 ], [ -95.314897971451359, 29.361917117294183 ], [ -95.314914971689461, 29.361815117272979 ], [ -95.314989971783262, 29.361712116953552 ], [ -95.315017972199101, 29.361660116608586 ], [ -95.315045971785409, 29.361634116587375 ], [ -95.315266972439744, 29.361588116587487 ], [ -95.315361971497509, 29.361528116834524 ], [ -95.315417971632911, 29.361400117039285 ], [ -95.31545397194742, 29.361305116998942 ], [ -95.315545972446785, 29.361197116815443 ], [ -95.31560497210009, 29.36112411636568 ], [ -95.315765972479554, 29.361013117094746 ], [ -95.315871971566963, 29.360984117156594 ], [ -95.315978971743618, 29.361034117182694 ], [ -95.316135972593145, 29.361115116789524 ], [ -95.316282972251969, 29.361216117012237 ], [ -95.316495972638691, 29.361253116780265 ], [ -95.316557972348278, 29.361248116851215 ], [ -95.316594972443454, 29.361245117145216 ], [ -95.316687971879162, 29.361182116489967 ], [ -95.31669597209779, 29.361105117142365 ], [ -95.316701972493931, 29.360963116360502 ], [ -95.31683497270339, 29.360841116624023 ], [ -95.316849972207223, 29.360638116547925 ], [ -95.316846971799436, 29.36053611683786 ], [ -95.316803972627966, 29.360309116880135 ], [ -95.31670397189751, 29.36015811686875 ], [ -95.316555971911612, 29.360059116146221 ], [ -95.316429972353674, 29.360036116362949 ], [ -95.316255971807294, 29.360021116132202 ], [ -95.316052971827787, 29.360043116398991 ], [ -95.315986971554267, 29.360093116492948 ], [ -95.315832972100722, 29.36009611634292 ], [ -95.315735971791526, 29.360107116285082 ], [ -95.315600972004574, 29.360109116514771 ], [ -95.315532971974562, 29.360101116710311 ], [ -95.315384971958764, 29.359978116616954 ], [ -95.315275971691051, 29.359869116110069 ], [ -95.315166971524548, 29.359736116566136 ], [ -95.315000972008505, 29.359621116708851 ], [ -95.314881971636012, 29.359504116629118 ], [ -95.314701972003789, 29.359254116682688 ], [ -95.314670971974877, 29.359169116275069 ], [ -95.314581971205016, 29.359069116335657 ], [ -95.314406971837201, 29.359029116641253 ], [ -95.31430097109309, 29.359031116515343 ], [ -95.314146971062598, 29.359034116167802 ], [ -95.31396497150314, 29.359138116684566 ], [ -95.313824970971609, 29.359344116120422 ], [ -95.313809971960325, 29.359522116862539 ], [ -95.313753971673123, 29.359634116441807 ], [ -95.313658971679232, 29.359685116315678 ], [ -95.313602971102924, 29.359686116157729 ], [ -95.313523971313401, 29.359687116220524 ], [ -95.313436971375765, 29.359643116577633 ], [ -95.31339697116411, 29.359622116620965 ], [ -95.313325971599056, 29.359497116453237 ], [ -95.313282971335511, 29.35931311620627 ], [ -95.313213971694623, 29.359237116119466 ], [ -95.313123970969187, 29.359128116826575 ], [ -95.313038971155393, 29.359058116712664 ], [ -95.313033971638973, 29.358961116107569 ], [ -95.313031971466316, 29.358902116068613 ], [ -95.313039971166162, 29.358825116827134 ], [ -95.313058971591914, 29.358807116213569 ], [ -95.31322797158326, 29.358601116107447 ], [ -95.313255970892527, 29.358533116467445 ], [ -95.313263971334862, 29.358440116723859 ], [ -95.31329597110134, 29.358416116146341 ], [ -95.313424971585974, 29.358320116148601 ], [ -95.31351797117857, 29.358156116058559 ], [ -95.31351497107083, 29.35801211616338 ], [ -95.313396970919982, 29.357912115947087 ], [ -95.313124971259498, 29.357883116234675 ], [ -95.31304497111374, 29.35783811620594 ], [ -95.312820970676057, 29.357811116283511 ], [ -95.31232397134022, 29.356986116105144 ], [ -95.312062971243876, 29.35682611615584 ], [ -95.311748971123578, 29.356803116280656 ], [ -95.311225970485964, 29.357283116519749 ], [ -95.310858970859996, 29.357375116548983 ], [ -95.31054597003002, 29.356917115718861 ], [ -95.310257970938338, 29.356664116257988 ], [ -95.310205970603661, 29.35627511620639 ], [ -95.309996969910642, 29.356092115636418 ], [ -95.309107970426936, 29.356229115990701 ], [ -95.308898970200843, 29.356137115570636 ], [ -95.308767969516097, 29.355954116345021 ], [ -95.308741970324178, 29.35561011602168 ], [ -95.308898969725604, 29.35522011620909 ], [ -95.308925970461971, 29.354831115770168 ], [ -95.308506969890345, 29.354327115960157 ], [ -95.308480969564954, 29.354052115286123 ], [ -95.309056969791428, 29.353777115437026 ], [ -95.309370970376179, 29.353205115649505 ], [ -95.310024969973085, 29.352907115255221 ], [ -95.310181970363232, 29.35258611478783 ], [ -95.310181970133684, 29.352105115511609 ], [ -95.309737970070032, 29.351968115450276 ], [ -95.309622970262495, 29.351911115364537 ], [ -95.309319970072238, 29.351761115128614 ], [ -95.308718970217399, 29.35105111537024 ], [ -95.308351970104837, 29.350890115355845 ], [ -95.308038969352424, 29.351004115329527 ], [ -95.30699196964386, 29.351668114810803 ], [ -95.306311969642636, 29.351737115548499 ], [ -95.305998968903708, 29.351416114855347 ], [ -95.305998968686154, 29.350706114824128 ], [ -95.30544996902384, 29.350431114989856 ], [ -95.305371969029082, 29.349972115155708 ], [ -95.305188969144496, 29.349583115151216 ], [ -95.304874968327496, 29.349285115032384 ], [ -95.304482968873288, 29.349193114983013 ], [ -95.303802968771677, 29.349261114932542 ], [ -95.303541968633652, 29.349078114671137 ], [ -95.303567967926398, 29.348207114893871 ], [ -95.303437968828874, 29.347978114534076 ], [ -95.302940967790491, 29.347886114232217 ], [ -95.30212996817373, 29.348802114382959 ], [ -95.301893968383993, 29.348917114331289 ], [ -95.301607967898605, 29.348937115129974 ], [ -95.30158096778608, 29.348939114832078 ], [ -95.3013449681374, 29.34855011434415 ], [ -95.300822967710388, 29.348137114412509 ], [ -95.30079696771206, 29.347885114703928 ], [ -95.301084967180074, 29.347267114322253 ], [ -95.301032967708494, 29.347037114711799 ], [ -95.300326966980251, 29.346648114304998 ], [ -95.300221967633348, 29.34618911391177 ], [ -95.300117967343411, 29.346006114385446 ], [ -95.299385967186169, 29.345662114594795 ], [ -95.299098966603879, 29.345433113964631 ], [ -95.299072967414219, 29.345181113701482 ], [ -95.299202967112564, 29.344952113696003 ], [ -95.299752967423089, 29.344700113667589 ], [ -95.300013967664071, 29.344471113689895 ], [ -95.300092966957791, 29.34417311413468 ], [ -95.300040967709492, 29.343898113812511 ], [ -95.299648967115971, 29.343669114121379 ], [ -95.299334967106319, 29.343371113315246 ], [ -95.299308967161451, 29.343050113760114 ], [ -95.299230967243602, 29.342935113885499 ], [ -95.298472967225095, 29.342294113078548 ], [ -95.297949966447277, 29.342087113457918 ], [ -95.297269966166766, 29.342247113265309 ], [ -95.296877966097384, 29.34254511354133 ], [ -95.296694966728253, 29.342888113278338 ], [ -95.296667965938738, 29.34318611347042 ], [ -95.296223966050533, 29.343323113913332 ], [ -95.295883966548658, 29.343002113566875 ], [ -95.295203966194364, 29.342933113751833 ], [ -95.293896965978959, 29.342291114054852 ], [ -95.293608965492609, 29.342268113358799 ], [ -95.293164965529328, 29.342542113837936 ], [ -95.292902965172516, 29.343184114027288 ], [ -95.292509965705733, 29.343252114158741 ], [ -95.292274965380443, 29.343115113951139 ], [ -95.292144965651119, 29.342863113461686 ], [ -95.291621965211334, 29.342335113583061 ], [ -95.291543964991007, 29.341488113725841 ], [ -95.291471965143117, 29.34138111359724 ], [ -95.291125965056324, 29.340869113016794 ], [ -95.291074964396245, 29.339861113267037 ], [ -95.29078796434267, 29.339379112833058 ], [ -95.290028964052652, 29.339241112888708 ], [ -95.290081964563683, 29.338944113406814 ], [ -95.290682964550285, 29.338898113404763 ], [ -95.291075964927501, 29.338761113305861 ], [ -95.29097096467919, 29.338349112608721 ], [ -95.290683965080717, 29.338234113052664 ], [ -95.289558964580266, 29.338371113036903 ], [ -95.289140964408233, 29.338210112878961 ], [ -95.288879964370608, 29.338210112996535 ], [ -95.288852964596614, 29.338737113157336 ], [ -95.288747964212547, 29.338851112919453 ], [ -95.288407963754551, 29.338851113042587 ], [ -95.287832964394084, 29.338690112700601 ], [ -95.286681963926384, 29.339262112835357 ], [ -95.286472964075941, 29.339606113761366 ], [ -95.286158963964681, 29.339720113072897 ], [ -95.285923963706978, 29.339560113044524 ], [ -95.28581896368209, 29.339331113502848 ], [ -95.285635963436462, 29.339170112978575 ], [ -95.284720963060636, 29.33914711303915 ], [ -95.284563962934371, 29.339055113183001 ], [ -95.284564962774468, 29.338826112972775 ], [ -95.284878962867225, 29.338643113352887 ], [ -95.28514096297414, 29.33774911302552 ], [ -95.285401963382938, 29.337681112850149 ], [ -95.285532963480279, 29.337772112630425 ], [ -95.285558962894825, 29.338002112703069 ], [ -95.285793963159563, 29.33816211262452 ], [ -95.285924963435136, 29.338162112872151 ], [ -95.286238963747408, 29.337590113312515 ], [ -95.286265963190402, 29.337085112794988 ], [ -95.285794963249728, 29.337017113202268 ], [ -95.285219962936324, 29.337108112815759 ], [ -95.284957962642935, 29.336833112722246 ], [ -95.284906963431084, 29.336283113099295 ], [ -95.284801963023455, 29.3361681124168 ], [ -95.284433962507975, 29.336075112718174 ], [ -95.283878962677434, 29.336990113117565 ], [ -95.282915962197123, 29.338599113242747 ], [ -95.281787962600433, 29.34046811362931 ], [ -95.281340962451821, 29.341211113523894 ], [ -95.280693962472256, 29.342270113952232 ], [ -95.279499962080919, 29.344262114126337 ], [ -95.276443961542427, 29.349405116041947 ], [ -95.275476961748751, 29.350978116204942 ], [ -95.274416960635818, 29.352705116027025 ], [ -95.273328960826021, 29.354508116599721 ], [ -95.272546960455045, 29.355802117053333 ], [ -95.271659960379381, 29.357274117507369 ], [ -95.2710979605381, 29.358209117225599 ], [ -95.270405960656646, 29.359357117684194 ], [ -95.269469960523693, 29.360914118481464 ], [ -95.267933959591033, 29.363478118912987 ], [ -95.26729595926119, 29.364540118709783 ], [ -95.266102959220802, 29.366522119518311 ], [ -95.265072958965959, 29.368206120133159 ], [ -95.264458959695489, 29.369231119803651 ], [ -95.263955958778283, 29.370072120288263 ], [ -95.262898959330101, 29.37182612117099 ], [ -95.262134959066756, 29.37309412088679 ], [ -95.261662959129637, 29.373853121585142 ], [ -95.261177958546241, 29.37463512114655 ], [ -95.261086958926029, 29.374793121640497 ], [ -95.260874959004866, 29.375157121898951 ], [ -95.260555958441756, 29.375708121185887 ], [ -95.259553958022551, 29.377369121624227 ], [ -95.258632958015255, 29.378896122183498 ], [ -95.257880957835908, 29.380141122270917 ], [ -95.257257958225964, 29.381171122461353 ], [ -95.257221958365164, 29.381231123169556 ], [ -95.256993957346921, 29.381591122909676 ], [ -95.255855957287153, 29.383501123429717 ], [ -95.254637957508493, 29.385524124244522 ], [ -95.253486957041218, 29.387438123994976 ], [ -95.25266395706079, 29.388805124585545 ], [ -95.251839957396726, 29.390155124779966 ], [ -95.251677956396648, 29.390424124565005 ], [ -95.251153956699568, 29.391734125540108 ], [ -95.250702956829841, 29.392982125915488 ], [ -95.250477956272647, 29.393590125341838 ], [ -95.250009957116788, 29.394353125867635 ], [ -95.248604955845636, 29.396660126424088 ], [ -95.248101956303017, 29.397562126981011 ], [ -95.247502955942423, 29.398498126901224 ], [ -95.247277956054575, 29.398802127082281 ], [ -95.246964956021515, 29.399140126891041 ], [ -95.245916955670751, 29.400384127203129 ], [ -95.245872956230201, 29.400492126971674 ], [ -95.245646955930951, 29.401031127153399 ], [ -95.245862956174776, 29.401129127267282 ], [ -95.246093955425039, 29.401209127725636 ], [ -95.246247956250926, 29.401251127502139 ], [ -95.246796956528414, 29.401328127078198 ], [ -95.247408956283365, 29.401317127325346 ], [ -95.247732956701441, 29.401296127097044 ], [ -95.247935955891791, 29.401243127734201 ], [ -95.247955956269678, 29.401238126936839 ], [ -95.248335956320744, 29.401110127451723 ], [ -95.249134956513188, 29.400765127342805 ], [ -95.249401956806565, 29.400648127319201 ], [ -95.250234956705739, 29.400259127064515 ], [ -95.251511957583915, 29.399629127167607 ], [ -95.251715957560265, 29.399539126848193 ], [ -95.253602957778583, 29.39858312664634 ], [ -95.254430958400448, 29.398185126228928 ], [ -95.25464095789161, 29.398095126488073 ], [ -95.255012958422199, 29.397939126675585 ], [ -95.255513958679629, 29.397784125951624 ], [ -95.256056957987568, 29.397646126693353 ], [ -95.256283958004431, 29.397613126174925 ], [ -95.256357958774913, 29.39760612661274 ], [ -95.256819958531281, 29.397565125832276 ], [ -95.257757958884014, 29.397570126168617 ], [ -95.258194958426131, 29.397603126587345 ], [ -95.258559959082049, 29.397671125840475 ], [ -95.259079959196214, 29.397795126346477 ], [ -95.261470959602775, 29.398438126030705 ], [ -95.262169960342248, 29.398618126537233 ], [ -95.262619960177759, 29.398685125974417 ], [ -95.262983960627338, 29.398717125962293 ], [ -95.263657960813433, 29.398724125914587 ], [ -95.264242960519638, 29.39866612645184 ], [ -95.264794960274457, 29.398542126251904 ], [ -95.265087960326198, 29.398433126262375 ], [ -95.266572961271962, 29.397799126415563 ], [ -95.270469962159524, 29.395985125197679 ], [ -95.270620961619173, 29.395912125390744 ], [ -95.270736962403049, 29.396095125102157 ], [ -95.272621962506506, 29.399153126269127 ], [ -95.272865962611704, 29.399528125687024 ], [ -95.273795963060266, 29.401048126015425 ], [ -95.273911962617859, 29.401235126208061 ], [ -95.274390963478865, 29.402003126257412 ], [ -95.274636963491318, 29.402391126918829 ], [ -95.274775963352155, 29.402326126310857 ], [ -95.274968963030133, 29.40224312617956 ], [ -95.275097963672664, 29.40220712646374 ], [ -95.275676963582342, 29.403120126947247 ], [ -95.275840963429658, 29.403378126703846 ], [ -95.275883963858234, 29.40344612689336 ], [ -95.276205963870666, 29.403952127166125 ], [ -95.276679963680607, 29.404700127510129 ], [ -95.276754963670399, 29.404816126726981 ], [ -95.277157963598768, 29.405451127156063 ], [ -95.27727996397941, 29.405650127395074 ], [ -95.277611964620121, 29.406202127388184 ], [ -95.277705964129495, 29.406351127083425 ], [ -95.277807964273748, 29.406512127160372 ], [ -95.278413964807314, 29.407460128031126 ], [ -95.279145964660458, 29.408627127686955 ], [ -95.279318964429422, 29.408441127566846 ], [ -95.280478964530502, 29.407247127297893 ], [ -95.280960965133971, 29.406753127489285 ], [ -95.282118965356318, 29.405511126842796 ], [ -95.282133965656314, 29.405496127194528 ], [ -95.28421996610156, 29.403371126317186 ], [ -95.286312965833929, 29.401212126044861 ], [ -95.287792966563103, 29.399705125806072 ], [ -95.289192966911855, 29.398263125782929 ], [ -95.289500966602191, 29.397945125507125 ], [ -95.299497969671037, 29.406557126807787 ], [ -95.311091973707079, 29.416545127969737 ], [ -95.319748976027512, 29.424003129600475 ], [ -95.319905975560005, 29.42404912972318 ], [ -95.31995797538363, 29.424163129943597 ], [ -95.32233597611031, 29.426228130101318 ], [ -95.325765977289493, 29.429206130196352 ], [ -95.325896977146741, 29.429206130426255 ], [ -95.331599979352532, 29.434158131101903 ], [ -95.331966978859199, 29.434477131524169 ], [ -95.333125979501133, 29.435729131846085 ], [ -95.333327979284604, 29.435947131806344 ], [ -95.334261979902124, 29.436957132228226 ], [ -95.334682979682526, 29.437412131458732 ], [ -95.337142980807499, 29.440071132567898 ], [ -95.337558981426454, 29.440520132210565 ], [ -95.339093981873461, 29.442179133172626 ], [ -95.339489981953022, 29.442606132479295 ], [ -95.341805982411003, 29.44510913299364 ], [ -95.34190998275713, 29.445361133671256 ], [ -95.342249982221773, 29.445544133459332 ], [ -95.344317982700261, 29.44779013364256 ], [ -95.350887984970811, 29.448317133538925 ], [ -95.350599984620175, 29.451846134125773 ], [ -95.350677985132577, 29.451983134714986 ], [ -95.356997986220591, 29.45189613412888 ], [ -95.362130987820251, 29.451826133909648 ], [ -95.362848988369663, 29.450239133594042 ], [ -95.363284988235364, 29.449254133158419 ], [ -95.363486988339204, 29.448845133455553 ], [ -95.363571987939935, 29.448631133562532 ], [ -95.363642987959182, 29.44829613286986 ], [ -95.363685987574286, 29.447971133179834 ], [ -95.363709987563041, 29.447580132853236 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1500, "Tract": "48039661501", "Area_SqMi": 15.032041236348109, "total_2009": 364, "total_2010": 379, "total_2011": 399, "total_2012": 442, "total_2013": 450, "total_2014": 481, "total_2015": 594, "total_2016": 592, "total_2017": 560, "total_2018": 646, "total_2019": 633, "total_2020": 652, "age1": 152, "age2": 365, "age3": 157, "earn1": 74, "earn2": 189, "earn3": 411, "naics_s01": 6, "naics_s02": 2, "naics_s03": 38, "naics_s04": 85, "naics_s05": 187, "naics_s06": 83, "naics_s07": 42, "naics_s08": 73, "naics_s09": 0, "naics_s10": 3, "naics_s11": 3, "naics_s12": 21, "naics_s13": 0, "naics_s14": 3, "naics_s15": 2, "naics_s16": 41, "naics_s17": 4, "naics_s18": 55, "naics_s19": 26, "naics_s20": 0, "race1": 567, "race2": 68, "race3": 7, "race4": 22, "race5": 3, "race6": 7, "ethnicity1": 383, "ethnicity2": 291, "edu1": 146, "edu2": 131, "edu3": 169, "edu4": 76, "Shape_Length": 132653.289652476, "Shape_Area": 419067582.07368386, "total_2021": 637, "total_2022": 674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.391983995964608, 29.453767133536591 ], [ -95.392036995095779, 29.453194133451667 ], [ -95.391145995635242, 29.451064133312297 ], [ -95.390883995595445, 29.450720132896535 ], [ -95.389862995085565, 29.450331133067674 ], [ -95.389548994921228, 29.450056132645262 ], [ -95.389417994280635, 29.449804132468806 ], [ -95.389365995010394, 29.449048132800588 ], [ -95.388998994364101, 29.448750132101825 ], [ -95.388474994391359, 29.448750132354082 ], [ -95.387061994058982, 29.44898013223553 ], [ -95.386171993660199, 29.449370133047349 ], [ -95.385857994019815, 29.449438133135875 ], [ -95.385648993686544, 29.449370133107944 ], [ -95.384915993948468, 29.448774132314661 ], [ -95.383763992890337, 29.448408132683621 ], [ -95.383344993462302, 29.448041132611259 ], [ -95.382951993037267, 29.447446132352507 ], [ -95.382428992785307, 29.446369131963053 ], [ -95.382009993126843, 29.446094132490266 ], [ -95.380543992665309, 29.44577313213497 ], [ -95.38030799174507, 29.445613132091673 ], [ -95.38015099166941, 29.444995132087463 ], [ -95.380045991825966, 29.44483413182483 ], [ -95.379862991626752, 29.444766131854916 ], [ -95.379129992073814, 29.44476613200224 ], [ -95.378998992236006, 29.444651131519219 ], [ -95.378867991645095, 29.444078131451473 ], [ -95.378998991430024, 29.443002131627104 ], [ -95.378658991655215, 29.442223131060231 ], [ -95.378134991901959, 29.441604131389937 ], [ -95.377715991475853, 29.441352131580658 ], [ -95.37753299167008, 29.441123131456319 ], [ -95.377244991154782, 29.440115130829028 ], [ -95.37690499126154, 29.43972613106915 ], [ -95.376432991147055, 29.439543131156011 ], [ -95.375490990667814, 29.439451130758052 ], [ -95.375384990152952, 29.439368131330518 ], [ -95.375228990832156, 29.439245130765141 ], [ -95.375124990437101, 29.439107131367113 ], [ -95.37512499056912, 29.438328131140775 ], [ -95.37475799061842, 29.437779130750233 ], [ -95.374783990567352, 29.437710131052992 ], [ -95.37433898994783, 29.437023130137838 ], [ -95.373841990046557, 29.436702130774904 ], [ -95.373760989785609, 29.436689130420344 ], [ -95.373108990276975, 29.436587130542303 ], [ -95.371800989741374, 29.43606113014626 ], [ -95.370630989712268, 29.435740130254814 ], [ -95.370543989441742, 29.435717130488189 ], [ -95.369784989534836, 29.435717130255412 ], [ -95.369156988808015, 29.436175130618405 ], [ -95.368816989166021, 29.436313130505361 ], [ -95.368423988421526, 29.436313130918325 ], [ -95.367926988110526, 29.435992130567563 ], [ -95.367350988632396, 29.435374130214662 ], [ -95.367036988176736, 29.435259130840063 ], [ -95.36685398807812, 29.434984130468461 ], [ -95.36677498801096, 29.434640130156211 ], [ -95.366513988289512, 29.434091130633746 ], [ -95.366199988106629, 29.433770130369133 ], [ -95.365806987909934, 29.433518129663891 ], [ -95.365283987792154, 29.433014129971401 ], [ -95.364524987899088, 29.432739129588924 ], [ -95.3642889875522, 29.432418129835273 ], [ -95.364094987039337, 29.431921130016331 ], [ -95.36400698789781, 29.431694129940958 ], [ -95.363922987840198, 29.431479129505675 ], [ -95.363765987493821, 29.43131912940331 ], [ -95.363738987800872, 29.431158129712585 ], [ -95.363398986775636, 29.430700129972639 ], [ -95.363126987368673, 29.430486129315717 ], [ -95.36261398750878, 29.430081129077248 ], [ -95.36253598730886, 29.429829129841512 ], [ -95.362613987202153, 29.429463129002901 ], [ -95.362672987156543, 29.429415129605928 ], [ -95.362936987459889, 29.429198129308233 ], [ -95.363346986941878, 29.428959128857048 ], [ -95.363425987063707, 29.42885512903036 ], [ -95.363503986837927, 29.428753129467417 ], [ -95.363505987109761, 29.428736129430781 ], [ -95.363513987347247, 29.428661129439778 ], [ -95.363543987075928, 29.42838212950284 ], [ -95.363548987112509, 29.428332129452947 ], [ -95.36355598721434, 29.428272129179877 ], [ -95.363189986663912, 29.427607128790719 ], [ -95.36307598738982, 29.427498128753395 ], [ -95.362613987367183, 29.427057128985581 ], [ -95.362351986565614, 29.426347128692566 ], [ -95.362351986542976, 29.426049128747259 ], [ -95.362247986461142, 29.425522128567096 ], [ -95.360886986004303, 29.424262128372895 ], [ -95.360389986570098, 29.423689128379575 ], [ -95.359420985823348, 29.424354128561117 ], [ -95.358269985972626, 29.423850128086421 ], [ -95.357405985393754, 29.423735128426586 ], [ -95.356830985637814, 29.423804128366822 ], [ -95.352977984622981, 29.425022129036119 ], [ -95.352773984069771, 29.425087128589013 ], [ -95.351962983604423, 29.426370128874765 ], [ -95.352014983847781, 29.426576129135825 ], [ -95.354003985171303, 29.429760129414678 ], [ -95.354160984681826, 29.430104129586571 ], [ -95.355465985550637, 29.43224613008919 ], [ -95.355472985759903, 29.432257130500581 ], [ -95.357390985933023, 29.435403130727703 ], [ -95.357538986035493, 29.435645130390306 ], [ -95.357571985653536, 29.435700130483173 ], [ -95.35768498614776, 29.435885130822367 ], [ -95.357918986348878, 29.436270130706756 ], [ -95.357991986164407, 29.436389131364628 ], [ -95.360673987404198, 29.440789131634777 ], [ -95.360969986666831, 29.441276131865799 ], [ -95.363649987934963, 29.445672132477402 ], [ -95.36368098773724, 29.446514132977565 ], [ -95.363692987927323, 29.447197133085879 ], [ -95.363709987563041, 29.447580132853236 ], [ -95.363685987574286, 29.447971133179834 ], [ -95.363642987959182, 29.44829613286986 ], [ -95.363571987939935, 29.448631133562532 ], [ -95.363486988339204, 29.448845133455553 ], [ -95.363284988235364, 29.449254133158419 ], [ -95.362848988369663, 29.450239133594042 ], [ -95.362130987820251, 29.451826133909648 ], [ -95.356997986220591, 29.45189613412888 ], [ -95.350677985132577, 29.451983134714986 ], [ -95.350599984620175, 29.451846134125773 ], [ -95.350887984970811, 29.448317133538925 ], [ -95.344317982700261, 29.44779013364256 ], [ -95.342249982221773, 29.445544133459332 ], [ -95.34190998275713, 29.445361133671256 ], [ -95.341805982411003, 29.44510913299364 ], [ -95.339489981953022, 29.442606132479295 ], [ -95.339093981873461, 29.442179133172626 ], [ -95.337558981426454, 29.440520132210565 ], [ -95.337142980807499, 29.440071132567898 ], [ -95.334682979682526, 29.437412131458732 ], [ -95.334261979902124, 29.436957132228226 ], [ -95.333327979284604, 29.435947131806344 ], [ -95.333125979501133, 29.435729131846085 ], [ -95.331966978859199, 29.434477131524169 ], [ -95.331599979352532, 29.434158131101903 ], [ -95.325896977146741, 29.429206130426255 ], [ -95.325765977289493, 29.429206130196352 ], [ -95.32233597611031, 29.426228130101318 ], [ -95.31995797538363, 29.424163129943597 ], [ -95.319905975560005, 29.42404912972318 ], [ -95.319748976027512, 29.424003129600475 ], [ -95.311091973707079, 29.416545127969737 ], [ -95.299497969671037, 29.406557126807787 ], [ -95.289500966602191, 29.397945125507125 ], [ -95.289192966911855, 29.398263125782929 ], [ -95.287792966563103, 29.399705125806072 ], [ -95.286312965833929, 29.401212126044861 ], [ -95.28421996610156, 29.403371126317186 ], [ -95.282133965656314, 29.405496127194528 ], [ -95.282118965356318, 29.405511126842796 ], [ -95.280960965133971, 29.406753127489285 ], [ -95.280478964530502, 29.407247127297893 ], [ -95.279318964429422, 29.408441127566846 ], [ -95.279145964660458, 29.408627127686955 ], [ -95.278562964590023, 29.40919612790746 ], [ -95.278119964422686, 29.409644127652442 ], [ -95.277307964423755, 29.410497128433452 ], [ -95.277002963839379, 29.410829128772694 ], [ -95.276872963793664, 29.410961128437425 ], [ -95.275502963655271, 29.412366128918187 ], [ -95.273690964029626, 29.41421912886517 ], [ -95.272724963500934, 29.415208129782307 ], [ -95.271827962691603, 29.41612712936378 ], [ -95.270149963110384, 29.417843130451104 ], [ -95.268237962145051, 29.419799130074022 ], [ -95.268103962342195, 29.419799130863574 ], [ -95.265745961354284, 29.419867130391651 ], [ -95.265578961999097, 29.419869130788815 ], [ -95.2649639611776, 29.419869130910282 ], [ -95.263096960962088, 29.419898130981117 ], [ -95.262269960563529, 29.419908130522433 ], [ -95.26208096028256, 29.419920130839092 ], [ -95.262088960581082, 29.420779130441179 ], [ -95.262108960917558, 29.421606130652595 ], [ -95.262143960545217, 29.422470131406097 ], [ -95.262180960939062, 29.423342131408578 ], [ -95.262214960977317, 29.424147131832555 ], [ -95.26225196155184, 29.425019131527439 ], [ -95.26241696114802, 29.425016132088405 ], [ -95.262934961220765, 29.425018131797671 ], [ -95.263045961657539, 29.425105131624058 ], [ -95.263259961750535, 29.425287132169817 ], [ -95.263341961207942, 29.425357131919306 ], [ -95.263542961328099, 29.425486131808242 ], [ -95.264021961452229, 29.425848131596354 ], [ -95.265212962006359, 29.426730131651667 ], [ -95.266491962365976, 29.42768913233941 ], [ -95.267165962334872, 29.42819013214914 ], [ -95.269662963629315, 29.430046132845128 ], [ -95.269737962974659, 29.430101132113808 ], [ -95.269870962950321, 29.430196132144712 ], [ -95.270480963138198, 29.430649132353349 ], [ -95.272416964370194, 29.432085132438463 ], [ -95.272683963639807, 29.432284132495514 ], [ -95.273708964390451, 29.433055133409205 ], [ -95.273841963992268, 29.433155133202721 ], [ -95.27566496495109, 29.434504133615253 ], [ -95.274678964511864, 29.435531133612464 ], [ -95.274457965030891, 29.435761134017202 ], [ -95.273536964767686, 29.436708133984254 ], [ -95.273374964660405, 29.436873133668676 ], [ -95.272902964355509, 29.437352133625311 ], [ -95.272710964060423, 29.437546134202897 ], [ -95.271852963703552, 29.438413133873805 ], [ -95.271780964324748, 29.438556134044326 ], [ -95.273413964539827, 29.43911413473462 ], [ -95.273705964621044, 29.439213134179578 ], [ -95.27840196579686, 29.44081513434779 ], [ -95.279525965838317, 29.441198134586653 ], [ -95.280325965888935, 29.441463134515196 ], [ -95.281550967109652, 29.441868134301256 ], [ -95.282499966911743, 29.442181134630765 ], [ -95.283075967404088, 29.442372134902008 ], [ -95.283384967109399, 29.442474135058944 ], [ -95.283882966863487, 29.442649134722188 ], [ -95.285178967574126, 29.443106134270753 ], [ -95.287392968407673, 29.443887134567525 ], [ -95.287837968383627, 29.444039135118103 ], [ -95.290399969614256, 29.444910134635528 ], [ -95.291035969382776, 29.445127134853436 ], [ -95.293384969695452, 29.44592713473153 ], [ -95.293397969930297, 29.445931135377915 ], [ -95.295614970839083, 29.446687134951837 ], [ -95.296293971187424, 29.446918135477986 ], [ -95.297168970994704, 29.447207134873391 ], [ -95.302005972486128, 29.448805135391737 ], [ -95.305347973196461, 29.449910135844803 ], [ -95.3064389729699, 29.450270135211696 ], [ -95.308457973695354, 29.450939135880468 ], [ -95.313146975176352, 29.452510135760832 ], [ -95.314380975790385, 29.452933136071781 ], [ -95.314524975953248, 29.452982136152972 ], [ -95.315287975869367, 29.453244135432303 ], [ -95.31536997568827, 29.453272135418462 ], [ -95.315476975980246, 29.453309135591898 ], [ -95.315620976101371, 29.453358136263876 ], [ -95.315808976011681, 29.453422136098599 ], [ -95.316002976485208, 29.453489135764244 ], [ -95.316084975633075, 29.453517136183859 ], [ -95.316411976322058, 29.453629136062474 ], [ -95.317002976157269, 29.453830135844655 ], [ -95.319782977012011, 29.454781136233727 ], [ -95.323032977528797, 29.455890136016205 ], [ -95.325958979007495, 29.456890136614465 ], [ -95.329768979303878, 29.458189136458181 ], [ -95.329885979370189, 29.458229136616051 ], [ -95.33193498074688, 29.458925136864462 ], [ -95.332716980159645, 29.459192136066651 ], [ -95.335104981378123, 29.460006136895313 ], [ -95.33823398196914, 29.461071136398878 ], [ -95.339625982976997, 29.461547136354319 ], [ -95.341218982692141, 29.462092136576498 ], [ -95.34263898372761, 29.462579137045164 ], [ -95.343573983586197, 29.46290113679111 ], [ -95.34480398428552, 29.463321137288524 ], [ -95.347550984995863, 29.464263136844355 ], [ -95.349174985537175, 29.464814137468 ], [ -95.349876985433212, 29.465053137481842 ], [ -95.350587985729177, 29.465294137186582 ], [ -95.351712986057635, 29.465678136976742 ], [ -95.352873985820253, 29.466072137114228 ], [ -95.353910986050892, 29.466424137524385 ], [ -95.354950986253812, 29.466777137721639 ], [ -95.356033986626429, 29.467146137032188 ], [ -95.357148987209371, 29.467523137761166 ], [ -95.358205987407914, 29.467883137425851 ], [ -95.359359987754033, 29.4682761378244 ], [ -95.360412988365155, 29.468635137630987 ], [ -95.362427988965692, 29.469322137610586 ], [ -95.363472989231624, 29.469677137668345 ], [ -95.364557989702078, 29.470049137389111 ], [ -95.366883989952584, 29.470843137301166 ], [ -95.370945990860577, 29.472242137607935 ], [ -95.371781991259326, 29.472532138011434 ], [ -95.373077991605243, 29.472975138407428 ], [ -95.378679992737815, 29.474897138299728 ], [ -95.378664993273432, 29.474846138523208 ], [ -95.378611992596646, 29.474251138378637 ], [ -95.378454992523032, 29.47383813787895 ], [ -95.378506993305891, 29.473563138186911 ], [ -95.378847993036104, 29.473013137441782 ], [ -95.37918799287759, 29.472670138065915 ], [ -95.380234993034975, 29.472051137875923 ], [ -95.380290993194421, 29.47194713725694 ], [ -95.380462993115856, 29.471623137160826 ], [ -95.380600993496174, 29.471364137351557 ], [ -95.380731993816738, 29.471135137633034 ], [ -95.381150993902494, 29.471066137379978 ], [ -95.381674993318413, 29.471134137052339 ], [ -95.381909994105357, 29.470951137288637 ], [ -95.382485994144858, 29.470172137333122 ], [ -95.383035994062382, 29.469714137147943 ], [ -95.383323993610077, 29.468981136450335 ], [ -95.383703994118903, 29.468845136777208 ], [ -95.384029994202962, 29.468729136843287 ], [ -95.384344993971183, 29.468476136967968 ], [ -95.384474994322872, 29.468179136932751 ], [ -95.385600994251959, 29.466689136505327 ], [ -95.386568994702586, 29.465750136258691 ], [ -95.38677899499055, 29.465200136231708 ], [ -95.387144994767127, 29.464352135745436 ], [ -95.387013994802246, 29.463848135775542 ], [ -95.386986994917066, 29.463321135684151 ], [ -95.386829995059315, 29.463115135064456 ], [ -95.386306994267244, 29.462772135443181 ], [ -95.385808994524936, 29.462268135431106 ], [ -95.385652994106991, 29.462208135609522 ], [ -95.384682993818217, 29.461833135593121 ], [ -95.384237993476873, 29.461535134880091 ], [ -95.384080993472182, 29.461145135227397 ], [ -95.384034993862173, 29.460348134941757 ], [ -95.3840279940854, 29.460229134922802 ], [ -95.384185993785209, 29.459908134640383 ], [ -95.384577993659931, 29.459496135163171 ], [ -95.385127993536997, 29.458763135065677 ], [ -95.385572994316178, 29.458511134487029 ], [ -95.38656699394069, 29.458258134042989 ], [ -95.387037994711875, 29.458075134052475 ], [ -95.387351994396994, 29.457227134492804 ], [ -95.387534994420022, 29.457090134025968 ], [ -95.388634994468006, 29.45704413381322 ], [ -95.389550994549808, 29.45647113432786 ], [ -95.389681995360718, 29.456104133766509 ], [ -95.389890995583826, 29.456035133783146 ], [ -95.390335994939235, 29.456150133638406 ], [ -95.390492995176473, 29.455806134007272 ], [ -95.39054499562701, 29.455325134079938 ], [ -95.39046699468507, 29.455188133980833 ], [ -95.390439995412649, 29.454638133607709 ], [ -95.390623995283036, 29.454340133246042 ], [ -95.391015995498734, 29.454088133853421 ], [ -95.391879995871278, 29.453950133499152 ], [ -95.391983995964608, 29.453767133536591 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1501, "Tract": "48471790600", "Area_SqMi": 2.373424780266415, "total_2009": 1484, "total_2010": 1621, "total_2011": 1636, "total_2012": 1443, "total_2013": 1453, "total_2014": 1436, "total_2015": 1461, "total_2016": 1600, "total_2017": 1538, "total_2018": 1426, "total_2019": 1495, "total_2020": 1490, "age1": 357, "age2": 754, "age3": 382, "earn1": 323, "earn2": 462, "earn3": 708, "naics_s01": 0, "naics_s02": 18, "naics_s03": 0, "naics_s04": 37, "naics_s05": 42, "naics_s06": 9, "naics_s07": 115, "naics_s08": 0, "naics_s09": 18, "naics_s10": 1, "naics_s11": 25, "naics_s12": 43, "naics_s13": 0, "naics_s14": 10, "naics_s15": 985, "naics_s16": 62, "naics_s17": 0, "naics_s18": 99, "naics_s19": 13, "naics_s20": 16, "race1": 1144, "race2": 278, "race3": 15, "race4": 33, "race5": 4, "race6": 19, "ethnicity1": 1229, "ethnicity2": 264, "edu1": 190, "edu2": 296, "edu3": 352, "edu4": 298, "Shape_Length": 37836.176645765234, "Shape_Area": 66167020.71671842, "total_2021": 1497, "total_2022": 1493 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.550824095175571, 30.730635387781611 ], [ -95.550828095421835, 30.730427387225408 ], [ -95.550736095326627, 30.729811386859605 ], [ -95.550689095242447, 30.729384387470365 ], [ -95.550584094585915, 30.727988386905565 ], [ -95.550515094940621, 30.727032386935306 ], [ -95.550473095259321, 30.726437386251177 ], [ -95.550474094336295, 30.726389386763127 ], [ -95.550487095187378, 30.72585938643531 ], [ -95.55047809504191, 30.725079386307129 ], [ -95.550473094553325, 30.724665386567938 ], [ -95.550469094694478, 30.724318386319563 ], [ -95.550464094450206, 30.723801386312985 ], [ -95.550454094480855, 30.722982386100568 ], [ -95.550446094459431, 30.721658385484893 ], [ -95.550443094326724, 30.721014385861618 ], [ -95.550442094475358, 30.720772385224027 ], [ -95.550455094208303, 30.720344385573373 ], [ -95.550457094551746, 30.720292385587364 ], [ -95.550471094967492, 30.719815385593169 ], [ -95.550494094772176, 30.719043384865778 ], [ -95.550505094205548, 30.718665384534372 ], [ -95.550495094682077, 30.71811438478511 ], [ -95.550489093954823, 30.717790384814254 ], [ -95.549656094112308, 30.717792385180068 ], [ -95.548994094194725, 30.717781384649694 ], [ -95.547519093619613, 30.717761385276457 ], [ -95.545735092944852, 30.717739385236214 ], [ -95.545503093127124, 30.71773938454945 ], [ -95.544727093135137, 30.717742384667744 ], [ -95.544550092992452, 30.717768384855869 ], [ -95.544489093037512, 30.717756385427947 ], [ -95.544408092587844, 30.71771138501947 ], [ -95.544175092538936, 30.717537385349189 ], [ -95.543634092927348, 30.717090384538793 ], [ -95.543305092979494, 30.716837384681348 ], [ -95.543139092485205, 30.716715384442281 ], [ -95.543074092091473, 30.716666385276334 ], [ -95.543061092637302, 30.716657385215257 ], [ -95.542851092690327, 30.716536384493185 ], [ -95.542748092284384, 30.716498384588714 ], [ -95.542683091859175, 30.716474384950349 ], [ -95.540988091860925, 30.715861384824681 ], [ -95.540950091348833, 30.715847384873374 ], [ -95.539744091515388, 30.715397384692867 ], [ -95.540094091622223, 30.716059384554363 ], [ -95.540259091571741, 30.716439385273407 ], [ -95.540263091871353, 30.716516385134263 ], [ -95.540291091992756, 30.717114385297972 ], [ -95.540308091820762, 30.718293385473981 ], [ -95.538907091383294, 30.718324385226403 ], [ -95.538704091378435, 30.718329385003166 ], [ -95.537811090770418, 30.718315385100603 ], [ -95.535812090713009, 30.718283385878941 ], [ -95.535803090479348, 30.71833738566103 ], [ -95.53571509073501, 30.71860938575783 ], [ -95.535658090163835, 30.718787385508453 ], [ -95.535547090934159, 30.718992386025263 ], [ -95.535294090873549, 30.719540385403437 ], [ -95.535171090965704, 30.719837385496987 ], [ -95.535113090816452, 30.720044385840257 ], [ -95.535118090284172, 30.720500386168975 ], [ -95.535108090654873, 30.721740385783555 ], [ -95.535042090551741, 30.721875385883621 ], [ -95.534317090681441, 30.72154338649381 ], [ -95.534170090315911, 30.721460385715325 ], [ -95.53355209075194, 30.721110385722898 ], [ -95.533400089820162, 30.721017386181416 ], [ -95.532713089959699, 30.720600385922921 ], [ -95.532278090112399, 30.720322385678099 ], [ -95.531701089561537, 30.719955385701951 ], [ -95.531357089546077, 30.719735385566651 ], [ -95.531103089561142, 30.71958838614745 ], [ -95.530727088882131, 30.719370386266373 ], [ -95.530586089492616, 30.719283385693622 ], [ -95.530233088986805, 30.71906438603472 ], [ -95.528749088953248, 30.718143385573736 ], [ -95.528342088527722, 30.717890385996071 ], [ -95.526267087897665, 30.716561385529243 ], [ -95.526085087785148, 30.716448385337035 ], [ -95.52588308784803, 30.716322385042531 ], [ -95.525525088384285, 30.716116385296544 ], [ -95.525545088163753, 30.717496385653 ], [ -95.525582088033062, 30.718956386209257 ], [ -95.525608088051484, 30.719996385862522 ], [ -95.52562908834274, 30.720710386049227 ], [ -95.525661087861891, 30.721841386087743 ], [ -95.525698088785447, 30.723703387105523 ], [ -95.525727088055191, 30.724829387199527 ], [ -95.525734088503384, 30.725074386922948 ], [ -95.525758088102961, 30.725666387631605 ], [ -95.525802088825529, 30.726434387559525 ], [ -95.525883089019018, 30.726955387277815 ], [ -95.526019088384871, 30.727604387610384 ], [ -95.526191088381736, 30.72819338774228 ], [ -95.526376088818154, 30.728649387764968 ], [ -95.526465089269749, 30.728884387709545 ], [ -95.526628088453606, 30.729249387774516 ], [ -95.526652088834027, 30.729757387855987 ], [ -95.526681088507587, 30.730040388541696 ], [ -95.526694088843229, 30.730164387720055 ], [ -95.52675008889679, 30.730464388554815 ], [ -95.526872088615306, 30.730774388230802 ], [ -95.527267089285786, 30.731514388722225 ], [ -95.527574088790175, 30.732149388604697 ], [ -95.527800089103081, 30.732648388277163 ], [ -95.527984089674419, 30.732919388298171 ], [ -95.527824089221482, 30.733267389158264 ], [ -95.527727088887971, 30.733502388562897 ], [ -95.527587089585452, 30.733840389162342 ], [ -95.527230089176584, 30.734571389434823 ], [ -95.526639089591896, 30.73579938937014 ], [ -95.526446089110181, 30.736200389496847 ], [ -95.525990089313225, 30.737143389418911 ], [ -95.525836088855996, 30.737481389308339 ], [ -95.525490088876694, 30.73824738951711 ], [ -95.525252088643811, 30.738739389991583 ], [ -95.525232088614828, 30.738782390226415 ], [ -95.525061088524879, 30.739137390395957 ], [ -95.524531089064411, 30.74025239036845 ], [ -95.524161088709519, 30.74099839080834 ], [ -95.523855089234587, 30.741636390717805 ], [ -95.523750089209813, 30.741855390890549 ], [ -95.523568088805249, 30.742256390699627 ], [ -95.524303088917648, 30.742262390743434 ], [ -95.524696089503706, 30.742258391129443 ], [ -95.525060088811713, 30.742255390800715 ], [ -95.526526089586767, 30.742220390918764 ], [ -95.528860089859961, 30.742211390334088 ], [ -95.531104090606107, 30.742191390559192 ], [ -95.531314090246084, 30.742189389976275 ], [ -95.531665090974315, 30.742186390677226 ], [ -95.531983090835269, 30.74218339036327 ], [ -95.532468090751891, 30.742178390585874 ], [ -95.533642091207838, 30.742169390365568 ], [ -95.534133091194249, 30.742167390279036 ], [ -95.534751091659558, 30.742163390485992 ], [ -95.535008091132369, 30.742162390698784 ], [ -95.53622609184103, 30.742155390350533 ], [ -95.537888092508766, 30.74214138986784 ], [ -95.539865092909309, 30.742124389871723 ], [ -95.542606093753477, 30.742051389629605 ], [ -95.544035093597145, 30.742013389460922 ], [ -95.54518209397024, 30.74197939000652 ], [ -95.545741094263022, 30.741962390144629 ], [ -95.546366094018822, 30.741943389900122 ], [ -95.547704094950291, 30.741904389821791 ], [ -95.547854094757184, 30.74189938972302 ], [ -95.548206094553947, 30.741897389888599 ], [ -95.548370094606256, 30.741896389494041 ], [ -95.548967095088784, 30.74189238936275 ], [ -95.549045095450097, 30.741291389702976 ], [ -95.549102095073053, 30.740874389177268 ], [ -95.549304095477709, 30.739528388812531 ], [ -95.549443094890222, 30.738670389144811 ], [ -95.549520095366177, 30.738096388541774 ], [ -95.549557095644104, 30.737884388656543 ], [ -95.549641095190964, 30.737396388553314 ], [ -95.549913094984902, 30.735724388234296 ], [ -95.549960094762511, 30.735438388099695 ], [ -95.550090094767882, 30.734572388278721 ], [ -95.550127095050598, 30.734358388489834 ], [ -95.550148095280193, 30.73423338799337 ], [ -95.550296094636266, 30.733448387946286 ], [ -95.550318094727473, 30.733332387495118 ], [ -95.550334095297004, 30.733179388185849 ], [ -95.550371094671917, 30.732838387951219 ], [ -95.550459095597333, 30.732470387661831 ], [ -95.550544094843687, 30.732061387541354 ], [ -95.550630095443907, 30.731650387263741 ], [ -95.550761094809104, 30.73111238747795 ], [ -95.55080409516809, 30.730886387685025 ], [ -95.550821095581128, 30.730678387340607 ], [ -95.550824095175571, 30.730635387781611 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1502, "Tract": "48471790700", "Area_SqMi": 2.7276327223836212, "total_2009": 2221, "total_2010": 2411, "total_2011": 2118, "total_2012": 533, "total_2013": 542, "total_2014": 449, "total_2015": 435, "total_2016": 523, "total_2017": 675, "total_2018": 659, "total_2019": 772, "total_2020": 12181, "age1": 200, "age2": 408, "age3": 166, "earn1": 149, "earn2": 287, "earn3": 338, "naics_s01": 2, "naics_s02": 0, "naics_s03": 14, "naics_s04": 135, "naics_s05": 54, "naics_s06": 32, "naics_s07": 61, "naics_s08": 1, "naics_s09": 0, "naics_s10": 15, "naics_s11": 41, "naics_s12": 6, "naics_s13": 0, "naics_s14": 93, "naics_s15": 38, "naics_s16": 114, "naics_s17": 0, "naics_s18": 96, "naics_s19": 19, "naics_s20": 53, "race1": 576, "race2": 152, "race3": 9, "race4": 17, "race5": 1, "race6": 19, "ethnicity1": 627, "ethnicity2": 147, "edu1": 106, "edu2": 169, "edu3": 194, "edu4": 105, "Shape_Length": 48858.351079180982, "Shape_Area": 76041731.909994423, "total_2021": 728, "total_2022": 774 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.553743094182238, 30.695458379999071 ], [ -95.553482093871054, 30.695115380445149 ], [ -95.552984093606028, 30.694529380072346 ], [ -95.552910093699609, 30.694443380019578 ], [ -95.552585093542376, 30.694090380109948 ], [ -95.552351093276741, 30.69385638027828 ], [ -95.551728093946963, 30.69330538021703 ], [ -95.551390093164841, 30.693054379857884 ], [ -95.551362093363764, 30.693033379554144 ], [ -95.551169093832584, 30.692887379430076 ], [ -95.551004093394766, 30.692775380144294 ], [ -95.550402092797199, 30.692370379399126 ], [ -95.5499490924865, 30.692100379745305 ], [ -95.549330092487097, 30.691781379432754 ], [ -95.548925092240495, 30.691572379292296 ], [ -95.547996092489811, 30.691124379928869 ], [ -95.547519092153195, 30.690879379173872 ], [ -95.547427092761907, 30.690836379608804 ], [ -95.546891092429377, 30.690585379307119 ], [ -95.545779092341391, 30.690027379044746 ], [ -95.544266091191787, 30.689287379305537 ], [ -95.543360091036959, 30.688853379621509 ], [ -95.542149090881082, 30.688248378807256 ], [ -95.540647090357965, 30.687515379306781 ], [ -95.540372090847683, 30.687379378773265 ], [ -95.539321089968453, 30.68686037922658 ], [ -95.53755908958972, 30.686021379067633 ], [ -95.536590089022354, 30.685541378808203 ], [ -95.536404088762239, 30.685449378503659 ], [ -95.535169089063899, 30.684866378853538 ], [ -95.534930088774331, 30.684753379115975 ], [ -95.532597087914311, 30.68358837824746 ], [ -95.532023088274158, 30.683317378945258 ], [ -95.530515087285963, 30.682605378526173 ], [ -95.530430087659113, 30.682565378602114 ], [ -95.528969087024151, 30.681824378056572 ], [ -95.527777086511819, 30.681257378740842 ], [ -95.527256086599209, 30.680998378120645 ], [ -95.527032086369786, 30.680886378601365 ], [ -95.526534086934305, 30.680628377904856 ], [ -95.526436086456172, 30.680577378377631 ], [ -95.525807086228752, 30.680160378555669 ], [ -95.525329086106566, 30.679864378405021 ], [ -95.524034085520071, 30.679019377675246 ], [ -95.523219085077784, 30.678475377600318 ], [ -95.522542085164986, 30.678065378143138 ], [ -95.522008085350919, 30.677736377484486 ], [ -95.520962084779427, 30.676998377667459 ], [ -95.520652084926382, 30.676739377493572 ], [ -95.520398085058346, 30.676492377415389 ], [ -95.520273084277264, 30.676380377212968 ], [ -95.520170084394238, 30.676627377305863 ], [ -95.52003508425463, 30.677100377869142 ], [ -95.519986085099802, 30.677197377602536 ], [ -95.519821084314515, 30.677419377944688 ], [ -95.520016084268647, 30.677773377627268 ], [ -95.520354084865119, 30.678409377841774 ], [ -95.520742084726066, 30.679098378056622 ], [ -95.521219084690543, 30.679944377863638 ], [ -95.521598085214833, 30.680640378670223 ], [ -95.521815085047237, 30.681037378331848 ], [ -95.522140085261995, 30.681632378653333 ], [ -95.522515085594577, 30.682304378905979 ], [ -95.522974086163245, 30.68312537907541 ], [ -95.52327208557621, 30.683657379313377 ], [ -95.52350608552895, 30.68407237861673 ], [ -95.523722086285971, 30.684467378720417 ], [ -95.524323086613549, 30.685566378905119 ], [ -95.524573086133486, 30.686022379284079 ], [ -95.524670086733749, 30.686200379400681 ], [ -95.524962085928038, 30.686707379818227 ], [ -95.525031086512556, 30.686827379316362 ], [ -95.525094086770551, 30.686937379904666 ], [ -95.525310085953137, 30.68731237933746 ], [ -95.525428086673529, 30.687517380041925 ], [ -95.525957086327878, 30.688493379611913 ], [ -95.526152086943483, 30.688832379463669 ], [ -95.526177086862589, 30.688875379611495 ], [ -95.526399086769146, 30.689264379783193 ], [ -95.526505086760295, 30.689455379958456 ], [ -95.526798087291596, 30.689981380045307 ], [ -95.526878086952834, 30.690102379759789 ], [ -95.527127087469509, 30.690476380058129 ], [ -95.527294087607871, 30.690692380070775 ], [ -95.527476087700649, 30.690928380277413 ], [ -95.527846087768253, 30.691346380254203 ], [ -95.528372087308853, 30.691917379978058 ], [ -95.528595088044526, 30.692158380658519 ], [ -95.529648088314431, 30.693313380312084 ], [ -95.529816088021065, 30.693499380964084 ], [ -95.530062087952089, 30.693768380666501 ], [ -95.530351087950336, 30.694092380701349 ], [ -95.53096508845023, 30.694780380846474 ], [ -95.531147088779761, 30.694983380937281 ], [ -95.531258088117283, 30.69510738106252 ], [ -95.531482088442388, 30.695358380928479 ], [ -95.531620088390255, 30.69550638127091 ], [ -95.531649088504423, 30.695537381445689 ], [ -95.531747088877623, 30.695642380793746 ], [ -95.531731088836096, 30.695744380981168 ], [ -95.531569088189983, 30.69678838118551 ], [ -95.531500088422646, 30.697380381295176 ], [ -95.531487088728241, 30.697458381232408 ], [ -95.531063088284327, 30.699942381693283 ], [ -95.530939088087976, 30.70067538163979 ], [ -95.530817088972739, 30.701419382436452 ], [ -95.530807088792145, 30.701477382716124 ], [ -95.530560088244457, 30.702444382464442 ], [ -95.530496089022023, 30.702697382702649 ], [ -95.53028808852055, 30.70335338229874 ], [ -95.530277088158556, 30.70338938304408 ], [ -95.530249088377033, 30.703476382448446 ], [ -95.530019088906954, 30.70412038286009 ], [ -95.529624088753508, 30.70498738283035 ], [ -95.529261088683455, 30.705697383378102 ], [ -95.529198087926417, 30.705821383434223 ], [ -95.529151088014999, 30.705913383632197 ], [ -95.528968088617887, 30.706275383418017 ], [ -95.528359088645615, 30.707459383940925 ], [ -95.528284088121353, 30.707598383446118 ], [ -95.527691087758882, 30.708693383816708 ], [ -95.527646088442793, 30.708779384165101 ], [ -95.527575088263177, 30.708916383603714 ], [ -95.527448088178105, 30.709161384179392 ], [ -95.527443088264363, 30.709171383778578 ], [ -95.527101088451587, 30.709831384357631 ], [ -95.526987087809445, 30.710050383699983 ], [ -95.526691088157747, 30.710591384025342 ], [ -95.52616608757387, 30.711802384734238 ], [ -95.525912088022594, 30.712542384326916 ], [ -95.525644087847112, 30.713553384535302 ], [ -95.525627088343114, 30.713664384657339 ], [ -95.525562087336041, 30.714097384944399 ], [ -95.525519088335372, 30.714667385533655 ], [ -95.525520087567671, 30.7157093850136 ], [ -95.525525088384285, 30.716116385296544 ], [ -95.52588308784803, 30.716322385042531 ], [ -95.526085087785148, 30.716448385337035 ], [ -95.526267087897665, 30.716561385529243 ], [ -95.528342088527722, 30.717890385996071 ], [ -95.528749088953248, 30.718143385573736 ], [ -95.530233088986805, 30.71906438603472 ], [ -95.530586089492616, 30.719283385693622 ], [ -95.530727088882131, 30.719370386266373 ], [ -95.531103089561142, 30.71958838614745 ], [ -95.531357089546077, 30.719735385566651 ], [ -95.531701089561537, 30.719955385701951 ], [ -95.532278090112399, 30.720322385678099 ], [ -95.532713089959699, 30.720600385922921 ], [ -95.533400089820162, 30.721017386181416 ], [ -95.53355209075194, 30.721110385722898 ], [ -95.534170090315911, 30.721460385715325 ], [ -95.534317090681441, 30.72154338649381 ], [ -95.535042090551741, 30.721875385883621 ], [ -95.535108090654873, 30.721740385783555 ], [ -95.535118090284172, 30.720500386168975 ], [ -95.535113090816452, 30.720044385840257 ], [ -95.535171090965704, 30.719837385496987 ], [ -95.535294090873549, 30.719540385403437 ], [ -95.535547090934159, 30.718992386025263 ], [ -95.535658090163835, 30.718787385508453 ], [ -95.53571509073501, 30.71860938575783 ], [ -95.535803090479348, 30.71833738566103 ], [ -95.535812090713009, 30.718283385878941 ], [ -95.537811090770418, 30.718315385100603 ], [ -95.538704091378435, 30.718329385003166 ], [ -95.538907091383294, 30.718324385226403 ], [ -95.540308091820762, 30.718293385473981 ], [ -95.540291091992756, 30.717114385297972 ], [ -95.540263091871353, 30.716516385134263 ], [ -95.540259091571741, 30.716439385273407 ], [ -95.540094091622223, 30.716059384554363 ], [ -95.539744091515388, 30.715397384692867 ], [ -95.540950091348833, 30.715847384873374 ], [ -95.540988091860925, 30.715861384824681 ], [ -95.542683091859175, 30.716474384950349 ], [ -95.542748092284384, 30.716498384588714 ], [ -95.542851092690327, 30.716536384493185 ], [ -95.543061092637302, 30.716657385215257 ], [ -95.543074092091473, 30.716666385276334 ], [ -95.543139092485205, 30.716715384442281 ], [ -95.543305092979494, 30.716837384681348 ], [ -95.543634092927348, 30.717090384538793 ], [ -95.544175092538936, 30.717537385349189 ], [ -95.544408092587844, 30.71771138501947 ], [ -95.544489093037512, 30.717756385427947 ], [ -95.544550092992452, 30.717768384855869 ], [ -95.544727093135137, 30.717742384667744 ], [ -95.545503093127124, 30.71773938454945 ], [ -95.545735092944852, 30.717739385236214 ], [ -95.547519093619613, 30.717761385276457 ], [ -95.547508093619271, 30.716526384475227 ], [ -95.547566093240704, 30.715977384432595 ], [ -95.54771509387696, 30.715347384285611 ], [ -95.547728093810832, 30.715313384186199 ], [ -95.548042093792191, 30.714950384038712 ], [ -95.547969093365637, 30.714496383952302 ], [ -95.548005093281006, 30.714343384550951 ], [ -95.548138093930262, 30.714027383865425 ], [ -95.548135093805612, 30.713829383762203 ], [ -95.548122093233701, 30.712908383530749 ], [ -95.548114093025049, 30.712446384211802 ], [ -95.548103093993433, 30.712273383542531 ], [ -95.548102093768208, 30.712252384144115 ], [ -95.547650093085906, 30.711040383142951 ], [ -95.547528093120874, 30.710684383583271 ], [ -95.547447093568081, 30.710446383454606 ], [ -95.547091092843502, 30.709401383356788 ], [ -95.547059093101694, 30.709305382920352 ], [ -95.547022092692771, 30.709198383534254 ], [ -95.546909093561155, 30.708825383063992 ], [ -95.546812092530104, 30.708501382789489 ], [ -95.546765093103133, 30.708344382885656 ], [ -95.546549092995718, 30.707623383237102 ], [ -95.546183092725016, 30.706506382765841 ], [ -95.545884093066746, 30.706365382565114 ], [ -95.545639092861848, 30.706250382981406 ], [ -95.544997092537542, 30.705953382654595 ], [ -95.54475809233189, 30.705843382457076 ], [ -95.544478092193486, 30.705710382720401 ], [ -95.543837092187431, 30.705403382549111 ], [ -95.543885091678263, 30.704993382691963 ], [ -95.54395809232598, 30.703936382500842 ], [ -95.543999092186553, 30.703784382477302 ], [ -95.544098092422161, 30.703563381785404 ], [ -95.544501092602388, 30.703006381948615 ], [ -95.544584091863101, 30.702881381751734 ], [ -95.545314091847786, 30.70177638170783 ], [ -95.545504092275891, 30.70148838152544 ], [ -95.545757092087783, 30.701198381298077 ], [ -95.545872092038792, 30.701081381966027 ], [ -95.546077092030316, 30.700872381746017 ], [ -95.546536092550127, 30.700466381566962 ], [ -95.54689509246441, 30.700206381855466 ], [ -95.547057092692611, 30.700087381615525 ], [ -95.547319092271422, 30.699857381327686 ], [ -95.547635093218446, 30.699509381680723 ], [ -95.547877092659533, 30.699263380794847 ], [ -95.548208092367219, 30.698925381524159 ], [ -95.54855909250459, 30.698568381077681 ], [ -95.549183092650253, 30.697856380525842 ], [ -95.549831092832008, 30.697117380649487 ], [ -95.550341093097558, 30.696659380273555 ], [ -95.550786093619465, 30.696373380785239 ], [ -95.550817092942026, 30.696358380539355 ], [ -95.551143093338482, 30.696211380660262 ], [ -95.551847093703728, 30.696128380395745 ], [ -95.552171094176884, 30.696094380030178 ], [ -95.552268094054511, 30.696077380159331 ], [ -95.552606093508246, 30.696019380657926 ], [ -95.552683094199793, 30.696006380415987 ], [ -95.552909093851611, 30.695911380114183 ], [ -95.553204094258902, 30.69578638033035 ], [ -95.553328094534095, 30.695711380652696 ], [ -95.553743094182238, 30.695458379999071 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1503, "Tract": "48471790800", "Area_SqMi": 1.1616908713241187, "total_2009": 2339, "total_2010": 2372, "total_2011": 2697, "total_2012": 4865, "total_2013": 4997, "total_2014": 5034, "total_2015": 5043, "total_2016": 5101, "total_2017": 5136, "total_2018": 16722, "total_2019": 16802, "total_2020": 4949, "age1": 994, "age2": 2663, "age3": 1318, "earn1": 960, "earn2": 1429, "earn3": 2586, "naics_s01": 7, "naics_s02": 0, "naics_s03": 0, "naics_s04": 51, "naics_s05": 0, "naics_s06": 0, "naics_s07": 438, "naics_s08": 0, "naics_s09": 2, "naics_s10": 117, "naics_s11": 78, "naics_s12": 10, "naics_s13": 0, "naics_s14": 49, "naics_s15": 2656, "naics_s16": 1023, "naics_s17": 7, "naics_s18": 498, "naics_s19": 38, "naics_s20": 1, "race1": 3806, "race2": 819, "race3": 36, "race4": 229, "race5": 7, "race6": 78, "ethnicity1": 4224, "ethnicity2": 751, "edu1": 581, "edu2": 917, "edu3": 1229, "edu4": 1254, "Shape_Length": 30210.64333656193, "Shape_Area": 32385953.238719255, "total_2021": 5000, "total_2022": 4975 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.569709099840736, 30.718208383866255 ], [ -95.569447099070132, 30.717817383846594 ], [ -95.568047098592785, 30.71572438401531 ], [ -95.567663099050421, 30.715159383713601 ], [ -95.566642098735315, 30.713663383425398 ], [ -95.566192097959743, 30.712984383554129 ], [ -95.56530509778726, 30.711645382935654 ], [ -95.564082097398909, 30.709850382679342 ], [ -95.5632770968366, 30.708655382838295 ], [ -95.56255009740832, 30.707551382372642 ], [ -95.562514097329114, 30.70749738262721 ], [ -95.561604096584801, 30.706150381770119 ], [ -95.561441096156301, 30.705921382464997 ], [ -95.561009096723708, 30.705312382172771 ], [ -95.560889096838153, 30.705143381584666 ], [ -95.560459096684042, 30.704492381940636 ], [ -95.55976509604217, 30.703439381263767 ], [ -95.55966409582183, 30.703286381249782 ], [ -95.559537096079737, 30.70309338150485 ], [ -95.559289095516334, 30.702738381477833 ], [ -95.55883309624393, 30.702083381145016 ], [ -95.55816209585322, 30.701235381138495 ], [ -95.55601509538235, 30.698425380352482 ], [ -95.555822094591548, 30.698156380365361 ], [ -95.555756094660211, 30.69806438096197 ], [ -95.555253094592459, 30.697416380687272 ], [ -95.554765093993538, 30.696768380243483 ], [ -95.55460309431291, 30.696561380753305 ], [ -95.554222093821664, 30.6960713806108 ], [ -95.554180093892583, 30.696018380166411 ], [ -95.553743094182238, 30.695458379999071 ], [ -95.553328094534095, 30.695711380652696 ], [ -95.553204094258902, 30.69578638033035 ], [ -95.552909093851611, 30.695911380114183 ], [ -95.552683094199793, 30.696006380415987 ], [ -95.552606093508246, 30.696019380657926 ], [ -95.552268094054511, 30.696077380159331 ], [ -95.552171094176884, 30.696094380030178 ], [ -95.551847093703728, 30.696128380395745 ], [ -95.551143093338482, 30.696211380660262 ], [ -95.550817092942026, 30.696358380539355 ], [ -95.550786093619465, 30.696373380785239 ], [ -95.550341093097558, 30.696659380273555 ], [ -95.549831092832008, 30.697117380649487 ], [ -95.549183092650253, 30.697856380525842 ], [ -95.54855909250459, 30.698568381077681 ], [ -95.548208092367219, 30.698925381524159 ], [ -95.547877092659533, 30.699263380794847 ], [ -95.547635093218446, 30.699509381680723 ], [ -95.547319092271422, 30.699857381327686 ], [ -95.547057092692611, 30.700087381615525 ], [ -95.54689509246441, 30.700206381855466 ], [ -95.546536092550127, 30.700466381566962 ], [ -95.546077092030316, 30.700872381746017 ], [ -95.545872092038792, 30.701081381966027 ], [ -95.545757092087783, 30.701198381298077 ], [ -95.545504092275891, 30.70148838152544 ], [ -95.545314091847786, 30.70177638170783 ], [ -95.544584091863101, 30.702881381751734 ], [ -95.544501092602388, 30.703006381948615 ], [ -95.544098092422161, 30.703563381785404 ], [ -95.543999092186553, 30.703784382477302 ], [ -95.54395809232598, 30.703936382500842 ], [ -95.543885091678263, 30.704993382691963 ], [ -95.543837092187431, 30.705403382549111 ], [ -95.544478092193486, 30.705710382720401 ], [ -95.54475809233189, 30.705843382457076 ], [ -95.544997092537542, 30.705953382654595 ], [ -95.545639092861848, 30.706250382981406 ], [ -95.545884093066746, 30.706365382565114 ], [ -95.546183092725016, 30.706506382765841 ], [ -95.546549092995718, 30.707623383237102 ], [ -95.546765093103133, 30.708344382885656 ], [ -95.546812092530104, 30.708501382789489 ], [ -95.546909093561155, 30.708825383063992 ], [ -95.547022092692771, 30.709198383534254 ], [ -95.547059093101694, 30.709305382920352 ], [ -95.547091092843502, 30.709401383356788 ], [ -95.547447093568081, 30.710446383454606 ], [ -95.547528093120874, 30.710684383583271 ], [ -95.547650093085906, 30.711040383142951 ], [ -95.548102093768208, 30.712252384144115 ], [ -95.548103093993433, 30.712273383542531 ], [ -95.548114093025049, 30.712446384211802 ], [ -95.548122093233701, 30.712908383530749 ], [ -95.548135093805612, 30.713829383762203 ], [ -95.548138093930262, 30.714027383865425 ], [ -95.548005093281006, 30.714343384550951 ], [ -95.547969093365637, 30.714496383952302 ], [ -95.548042093792191, 30.714950384038712 ], [ -95.547728093810832, 30.715313384186199 ], [ -95.54771509387696, 30.715347384285611 ], [ -95.547566093240704, 30.715977384432595 ], [ -95.547508093619271, 30.716526384475227 ], [ -95.547519093619613, 30.717761385276457 ], [ -95.548994094194725, 30.717781384649694 ], [ -95.549656094112308, 30.717792385180068 ], [ -95.550489093954823, 30.717790384814254 ], [ -95.551423094235403, 30.717787384817942 ], [ -95.551414094454984, 30.716549384215352 ], [ -95.551414095033692, 30.716418384957628 ], [ -95.551412094984471, 30.715876384629421 ], [ -95.551411094939084, 30.715579384563142 ], [ -95.55141009465963, 30.715372384413477 ], [ -95.551376094343823, 30.715172383843051 ], [ -95.551330094754746, 30.715022384497626 ], [ -95.551237094268245, 30.714721383950558 ], [ -95.551090094854345, 30.714357383828389 ], [ -95.551081094454901, 30.71414838412317 ], [ -95.551544094248243, 30.714151384228636 ], [ -95.552585094641472, 30.714138383796488 ], [ -95.553295094691876, 30.714132384288426 ], [ -95.554403095395983, 30.714128383792627 ], [ -95.555226095708932, 30.714127384337075 ], [ -95.5561970961556, 30.71412538347688 ], [ -95.556301095534366, 30.714122383852587 ], [ -95.557345096283356, 30.714085383517585 ], [ -95.557450095955573, 30.714082384099871 ], [ -95.558353096660369, 30.714047383748028 ], [ -95.558767096704358, 30.714027383916235 ], [ -95.559278096193509, 30.714002383980663 ], [ -95.559843096530571, 30.713975384149407 ], [ -95.559934096816605, 30.713970383904108 ], [ -95.560825096476179, 30.713955383482482 ], [ -95.561006097257831, 30.713952383860871 ], [ -95.561096096631545, 30.713951383255989 ], [ -95.56161809708054, 30.713943383669392 ], [ -95.561973097279832, 30.713931383745244 ], [ -95.562502096995445, 30.713913383868892 ], [ -95.563325097992191, 30.713855383193902 ], [ -95.56376009720924, 30.713824383277878 ], [ -95.564262097924399, 30.713800383886095 ], [ -95.564271098007808, 30.713892383278836 ], [ -95.564276097525479, 30.715415383920433 ], [ -95.564284097562421, 30.715763383648632 ], [ -95.564291098071593, 30.716099384141259 ], [ -95.564326097596791, 30.717701384109734 ], [ -95.564328098352817, 30.717775384315154 ], [ -95.564340097715245, 30.71832138481286 ], [ -95.564350098006869, 30.718437384853345 ], [ -95.564405098239263, 30.719071384300285 ], [ -95.564435098539406, 30.719236384377226 ], [ -95.564480097813174, 30.719233384542786 ], [ -95.564633098087029, 30.71923938442724 ], [ -95.565075098173793, 30.71915838429015 ], [ -95.565353097824357, 30.719094384505834 ], [ -95.565810097936605, 30.718990384494447 ], [ -95.566386098771986, 30.718851384283195 ], [ -95.566857098140261, 30.71873738446282 ], [ -95.567219098485424, 30.718640384609976 ], [ -95.567735098659469, 30.71850138420243 ], [ -95.568213098935658, 30.71838538466675 ], [ -95.568403099061342, 30.718351384434143 ], [ -95.568779098585438, 30.718286384574398 ], [ -95.568981098694621, 30.718261384587429 ], [ -95.56919609876654, 30.718235383963741 ], [ -95.569709099840736, 30.718208383866255 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1504, "Tract": "48157673010", "Area_SqMi": 0.94016163761043903, "total_2009": 127, "total_2010": 204, "total_2011": 100, "total_2012": 152, "total_2013": 222, "total_2014": 371, "total_2015": 483, "total_2016": 591, "total_2017": 609, "total_2018": 686, "total_2019": 714, "total_2020": 706, "age1": 227, "age2": 486, "age3": 169, "earn1": 139, "earn2": 234, "earn3": 509, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 10, "naics_s05": 0, "naics_s06": 84, "naics_s07": 140, "naics_s08": 4, "naics_s09": 19, "naics_s10": 112, "naics_s11": 39, "naics_s12": 121, "naics_s13": 0, "naics_s14": 19, "naics_s15": 171, "naics_s16": 36, "naics_s17": 5, "naics_s18": 32, "naics_s19": 88, "naics_s20": 0, "race1": 621, "race2": 127, "race3": 6, "race4": 109, "race5": 1, "race6": 18, "ethnicity1": 656, "ethnicity2": 226, "edu1": 107, "edu2": 152, "edu3": 172, "edu4": 224, "Shape_Length": 23420.695287844748, "Shape_Area": 26210097.35385466, "total_2021": 827, "total_2022": 882 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.775938104843618, 29.706441172444173 ], [ -95.775932104646444, 29.705592171997434 ], [ -95.775921104235394, 29.705519172126817 ], [ -95.775830104658695, 29.704880172119978 ], [ -95.775738104039448, 29.704124171451152 ], [ -95.775722104584148, 29.703102171521124 ], [ -95.775702104760413, 29.702405171278446 ], [ -95.775577104390678, 29.701440171605313 ], [ -95.775554103834239, 29.701264171650536 ], [ -95.775502104107304, 29.700884171559945 ], [ -95.775484104098595, 29.700743170719111 ], [ -95.775477104051134, 29.700577171242994 ], [ -95.775035104487841, 29.700609171195563 ], [ -95.773885104278577, 29.700693170842751 ], [ -95.770727103023717, 29.700981171202155 ], [ -95.769732103292185, 29.701053171297239 ], [ -95.769284103005148, 29.701080171544838 ], [ -95.769007102419508, 29.701165171496481 ], [ -95.768091102032784, 29.70116517114057 ], [ -95.766014102260471, 29.701169171386862 ], [ -95.765571101671199, 29.701204171339999 ], [ -95.762056100879875, 29.701482171513458 ], [ -95.760692100096236, 29.701591171630373 ], [ -95.760558100685898, 29.701600171408309 ], [ -95.760300100580324, 29.701616172203067 ], [ -95.760174100150763, 29.701622171725131 ], [ -95.760176100365726, 29.70175117167862 ], [ -95.76017810048431, 29.701853171478589 ], [ -95.760197100590474, 29.702835172152628 ], [ -95.760232101028578, 29.703430172593457 ], [ -95.7604331006861, 29.704342171960469 ], [ -95.760535101033369, 29.704673172604199 ], [ -95.760574100182168, 29.704801172817447 ], [ -95.760732100743326, 29.705183172979755 ], [ -95.760805101055098, 29.705357172861405 ], [ -95.76083610101216, 29.705431172415128 ], [ -95.760966101239376, 29.705715173089665 ], [ -95.76173410140207, 29.707396173421472 ], [ -95.762013101602932, 29.708087172763793 ], [ -95.762414100919742, 29.708962173705615 ], [ -95.762427101203997, 29.708992173246223 ], [ -95.762858101453787, 29.710000173114281 ], [ -95.763517101699179, 29.711485173562057 ], [ -95.763824101994459, 29.712236174296542 ], [ -95.763877102369335, 29.712485174024227 ], [ -95.764038101502251, 29.712997174453839 ], [ -95.764289101549508, 29.713559174295217 ], [ -95.764348102013713, 29.713726174065627 ], [ -95.764464102332212, 29.713686174610565 ], [ -95.764994102206032, 29.71499817469315 ], [ -95.765106102467016, 29.715279174676475 ], [ -95.765507102674064, 29.716283174767007 ], [ -95.766035102144642, 29.717349174845143 ], [ -95.766218102412296, 29.717882175212896 ], [ -95.766368102571178, 29.718306174615776 ], [ -95.766426102809135, 29.718439174686857 ], [ -95.766869103315926, 29.71943617538528 ], [ -95.766969103330368, 29.719657175676964 ], [ -95.767154102680095, 29.720085174945108 ], [ -95.767276102596284, 29.720367175574854 ], [ -95.767354102985678, 29.72056917582551 ], [ -95.767449102677119, 29.720872175871126 ], [ -95.767528102780574, 29.721177175250286 ], [ -95.767587103153915, 29.721478175455911 ], [ -95.76761210346659, 29.721675176039678 ], [ -95.767635102787196, 29.721947175632213 ], [ -95.767636102982038, 29.721972176124865 ], [ -95.767653103541832, 29.722308175905034 ], [ -95.767657103431034, 29.722400175516373 ], [ -95.767657103479934, 29.722446175802371 ], [ -95.768609103215638, 29.72247417557158 ], [ -95.768693103066695, 29.722494175986988 ], [ -95.770003103517979, 29.722813175972004 ], [ -95.77024210352198, 29.722939175692964 ], [ -95.771213103812244, 29.723454175872622 ], [ -95.771292104074774, 29.72349617556328 ], [ -95.771575104170537, 29.723637175557574 ], [ -95.77218610409416, 29.723942176372574 ], [ -95.772332105050651, 29.724051175794031 ], [ -95.772489104091363, 29.724168176083172 ], [ -95.772596105112598, 29.724248175989 ], [ -95.772591104187086, 29.723922175621713 ], [ -95.772577104676984, 29.723040175751159 ], [ -95.772561104459939, 29.722074175337458 ], [ -95.772548104445647, 29.721233175553476 ], [ -95.772547104468444, 29.7211491758496 ], [ -95.772546104687535, 29.721087175757216 ], [ -95.772508104055873, 29.71869417515467 ], [ -95.772523104039962, 29.718136174486308 ], [ -95.772539104230987, 29.717572174881109 ], [ -95.772545104695425, 29.717342174486973 ], [ -95.772662104389724, 29.716503174111562 ], [ -95.772798104477076, 29.715868174422749 ], [ -95.772988104085371, 29.714979174432251 ], [ -95.773169104790185, 29.714369174215015 ], [ -95.773199104430503, 29.714269173693648 ], [ -95.773259104075137, 29.714068174374884 ], [ -95.773303104737309, 29.713914173598386 ], [ -95.773513104184971, 29.713207173628394 ], [ -95.773788104085781, 29.71254017380673 ], [ -95.774352104008784, 29.711162173562606 ], [ -95.774614104536624, 29.710676173296164 ], [ -95.774765104664453, 29.710397173353126 ], [ -95.774808104972053, 29.710296173128739 ], [ -95.775120104444355, 29.709559173095119 ], [ -95.775425104531095, 29.708513172658474 ], [ -95.775626104547854, 29.707790172375457 ], [ -95.77581210483325, 29.706971172431246 ], [ -95.775938104843618, 29.706441172444173 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1505, "Tract": "48157672703", "Area_SqMi": 3.0827964363515772, "total_2009": 855, "total_2010": 988, "total_2011": 824, "total_2012": 960, "total_2013": 908, "total_2014": 1053, "total_2015": 957, "total_2016": 1263, "total_2017": 1034, "total_2018": 1158, "total_2019": 1210, "total_2020": 1210, "age1": 213, "age2": 607, "age3": 322, "earn1": 306, "earn2": 316, "earn3": 520, "naics_s01": 0, "naics_s02": 0, "naics_s03": 19, "naics_s04": 137, "naics_s05": 32, "naics_s06": 21, "naics_s07": 178, "naics_s08": 3, "naics_s09": 1, "naics_s10": 9, "naics_s11": 7, "naics_s12": 27, "naics_s13": 0, "naics_s14": 364, "naics_s15": 20, "naics_s16": 228, "naics_s17": 4, "naics_s18": 30, "naics_s19": 62, "naics_s20": 0, "race1": 696, "race2": 276, "race3": 12, "race4": 141, "race5": 3, "race6": 14, "ethnicity1": 719, "ethnicity2": 423, "edu1": 255, "edu2": 224, "edu3": 260, "edu4": 190, "Shape_Length": 42886.654267500715, "Shape_Area": 85943088.386649445, "total_2021": 1170, "total_2022": 1142 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.680604078019485, 29.654005164542291 ], [ -95.680766078407615, 29.653949164633676 ], [ -95.680539077756805, 29.653500164749694 ], [ -95.680246078090235, 29.652733164373952 ], [ -95.680066077807084, 29.652248164546979 ], [ -95.679987077297525, 29.652006164787629 ], [ -95.679925077504649, 29.651809164387075 ], [ -95.679846078045159, 29.651538164208329 ], [ -95.679773077759975, 29.651217164020984 ], [ -95.67967107810837, 29.650737164325012 ], [ -95.679626077891115, 29.650472163949786 ], [ -95.679604077356117, 29.650343164321477 ], [ -95.67952007786819, 29.649659164344673 ], [ -95.679475077290334, 29.648972163712212 ], [ -95.677693077585843, 29.648949163942753 ], [ -95.676863076649255, 29.648923164282255 ], [ -95.676580076358334, 29.648932164023083 ], [ -95.676312077051477, 29.64893916356532 ], [ -95.676269077012236, 29.64894016373173 ], [ -95.675989076917503, 29.64896016387517 ], [ -95.675683076196961, 29.648995163757025 ], [ -95.675218076347974, 29.649050163825375 ], [ -95.674662076332496, 29.649160163975715 ], [ -95.673952075925413, 29.649286164064353 ], [ -95.673534075874016, 29.649323164418643 ], [ -95.67308507577458, 29.649351163754901 ], [ -95.672744075650286, 29.649351164281697 ], [ -95.672258075566802, 29.649331163889226 ], [ -95.671466075753159, 29.64936916444433 ], [ -95.671183075487789, 29.649389163925804 ], [ -95.670725075310017, 29.649458164300864 ], [ -95.670618075717968, 29.649473164532871 ], [ -95.670384075102007, 29.649519164459925 ], [ -95.670240074803857, 29.649551164681391 ], [ -95.670026075318731, 29.64961716453622 ], [ -95.66982707536765, 29.649689164191287 ], [ -95.669069075206139, 29.649979164311613 ], [ -95.668313074969717, 29.650324164468916 ], [ -95.66807307430129, 29.650430164657049 ], [ -95.667708074678401, 29.650560164763331 ], [ -95.667574074113446, 29.650609164716542 ], [ -95.667257074085043, 29.650694165003255 ], [ -95.666960074623432, 29.650751164921811 ], [ -95.666773074805818, 29.650787164410691 ], [ -95.666550074808569, 29.650836164822142 ], [ -95.666180073790983, 29.650877164783648 ], [ -95.665994073923741, 29.650889164750758 ], [ -95.665656074421207, 29.650897164284952 ], [ -95.665201074089182, 29.650893164995701 ], [ -95.664966073446024, 29.650889164972384 ], [ -95.664673074182289, 29.650860164469691 ], [ -95.664374073784685, 29.650812165162584 ], [ -95.664327074092313, 29.650804164671914 ], [ -95.66362007340409, 29.650593164948479 ], [ -95.663443073177618, 29.650545164345505 ], [ -95.663416073363408, 29.650537164715175 ], [ -95.663204073719768, 29.650477164693818 ], [ -95.662943073373228, 29.650404164365302 ], [ -95.662638073178641, 29.650324165116604 ], [ -95.661320072672709, 29.65008216500507 ], [ -95.660951072863966, 29.650039164490874 ], [ -95.660454073088559, 29.650021164827979 ], [ -95.659900073071228, 29.650045164507734 ], [ -95.659538072397879, 29.650047164560331 ], [ -95.658293072548645, 29.650078164700009 ], [ -95.657957071631415, 29.650082164416695 ], [ -95.657776071987243, 29.650078165017955 ], [ -95.657488072461547, 29.650060164608867 ], [ -95.657267071560554, 29.65004716474278 ], [ -95.657001071562803, 29.650011164601526 ], [ -95.656634071858477, 29.649949164789348 ], [ -95.656257071457532, 29.649883164623191 ], [ -95.655974071165986, 29.649856164775521 ], [ -95.655325071881038, 29.649819164571763 ], [ -95.655155071606188, 29.649821164535211 ], [ -95.654950071334937, 29.649816164392831 ], [ -95.654618071184515, 29.649834165178632 ], [ -95.654360071583667, 29.649868165287796 ], [ -95.654060071058979, 29.649916164513609 ], [ -95.653697071077104, 29.649963164892537 ], [ -95.653355070946347, 29.649997165275405 ], [ -95.653102070425334, 29.650005165025746 ], [ -95.652639070478699, 29.6500141653597 ], [ -95.652065070219891, 29.649970164690274 ], [ -95.652014070365837, 29.649965164829275 ], [ -95.651963070516715, 29.649960164948833 ], [ -95.651876070237435, 29.649947165391776 ], [ -95.651645070480498, 29.649913164630014 ], [ -95.651087069993437, 29.64982216478732 ], [ -95.650903070023929, 29.649792164756072 ], [ -95.650629070054492, 29.650532164883451 ], [ -95.650248069899604, 29.651374165403002 ], [ -95.650203070159407, 29.651477165510677 ], [ -95.650059070155663, 29.651749165621069 ], [ -95.649824070439848, 29.652200165487489 ], [ -95.64940407013475, 29.652913165991244 ], [ -95.649179069522432, 29.65322516575316 ], [ -95.648827069420406, 29.653705165458064 ], [ -95.647983069933019, 29.654743166451183 ], [ -95.647793069327591, 29.654964166444294 ], [ -95.647762070014238, 29.655002166112734 ], [ -95.647477069646726, 29.65535616626229 ], [ -95.647059069184067, 29.655889166173267 ], [ -95.646099069801309, 29.657050166586583 ], [ -95.64553806952604, 29.657840166631019 ], [ -95.645051068862898, 29.658620166605502 ], [ -95.644908069470858, 29.658851167370351 ], [ -95.644142069400729, 29.660641167621641 ], [ -95.643813068674092, 29.661694168074323 ], [ -95.643570069372089, 29.662476167361493 ], [ -95.643527068467534, 29.662622167746974 ], [ -95.643508069076404, 29.662685167707465 ], [ -95.643422068755072, 29.663141167605882 ], [ -95.643346068817607, 29.66363316759352 ], [ -95.643301068923449, 29.663984168341941 ], [ -95.643289068502625, 29.664184168392069 ], [ -95.643243069056567, 29.664962168438851 ], [ -95.643242069404366, 29.665049168285243 ], [ -95.643228068991107, 29.666647168643731 ], [ -95.643275068835692, 29.667979168644464 ], [ -95.643287069578591, 29.668317168856859 ], [ -95.64334506876763, 29.670314169685927 ], [ -95.643388069438799, 29.67242317015851 ], [ -95.643422069072216, 29.67328117013361 ], [ -95.643425069759175, 29.673606170275288 ], [ -95.643443069191747, 29.674461170181971 ], [ -95.643443069805599, 29.674500169877668 ], [ -95.643446069388276, 29.674706170640697 ], [ -95.643488069886303, 29.677198170949076 ], [ -95.643547069346525, 29.677200170823358 ], [ -95.643872069887053, 29.67719417099558 ], [ -95.643944069848089, 29.677193170402866 ], [ -95.644292069321608, 29.677170171064724 ], [ -95.644493069451855, 29.677150170767597 ], [ -95.644673070304108, 29.677131171159782 ], [ -95.644968069489849, 29.677093170722518 ], [ -95.645022069482863, 29.677082170555646 ], [ -95.645284070364653, 29.677029170472515 ], [ -95.645271070100407, 29.677113170498306 ], [ -95.645265069670003, 29.677150170313375 ], [ -95.645228070148647, 29.677394170924146 ], [ -95.645178070344087, 29.677785170994728 ], [ -95.64517807026597, 29.677851170784159 ], [ -95.645247069792447, 29.677939170546416 ], [ -95.645417070422567, 29.678005171174341 ], [ -95.645801069733778, 29.678087171108128 ], [ -95.646600070068104, 29.678219170763541 ], [ -95.646991070721128, 29.678274170946665 ], [ -95.647236070128258, 29.678291171065194 ], [ -95.648126071330736, 29.678282170630677 ], [ -95.648344071394249, 29.678280170476533 ], [ -95.649250071213402, 29.678248170714291 ], [ -95.651678071505884, 29.678163170815136 ], [ -95.652386071574867, 29.678138170567831 ], [ -95.65304007249334, 29.678106170849247 ], [ -95.653248072507481, 29.678122170966088 ], [ -95.653355071878323, 29.678155170851408 ], [ -95.653468071728682, 29.678216171000351 ], [ -95.653664072006151, 29.678337170300143 ], [ -95.653947071991396, 29.678513170307326 ], [ -95.654834072317996, 29.679172170937214 ], [ -95.655615072842323, 29.679777171222899 ], [ -95.655848072463897, 29.679937171040965 ], [ -95.65595507335054, 29.679992171070364 ], [ -95.655978073024826, 29.679994170731717 ], [ -95.655976072798708, 29.679866170766825 ], [ -95.655975072945239, 29.679632171311564 ], [ -95.655981072531361, 29.679556170699946 ], [ -95.656061073377103, 29.679052170659617 ], [ -95.65607507298752, 29.678940171149971 ], [ -95.656152073303474, 29.678487170836583 ], [ -95.65622507241352, 29.678014170444367 ], [ -95.656340073004429, 29.677286170698853 ], [ -95.656350072789849, 29.677224170291026 ], [ -95.656399072913061, 29.677144170749227 ], [ -95.656422073248351, 29.677005170190611 ], [ -95.656590073268632, 29.676041170256834 ], [ -95.656950073369032, 29.673592169895745 ], [ -95.657089072839767, 29.672749169451833 ], [ -95.657189073035141, 29.672131169040643 ], [ -95.657220072583542, 29.671655169248737 ], [ -95.657422073043875, 29.670639168688041 ], [ -95.657726072356269, 29.668677168287783 ], [ -95.657827072428276, 29.668679168904422 ], [ -95.657957072887356, 29.668666168810812 ], [ -95.658399072873735, 29.668624168288343 ], [ -95.661350073482282, 29.668322168533571 ], [ -95.661368073965136, 29.668320168616333 ], [ -95.661369073413596, 29.668213168797323 ], [ -95.66137407345802, 29.668141168606496 ], [ -95.661381073624142, 29.66809716797146 ], [ -95.661395073543417, 29.668041168236154 ], [ -95.661410073643239, 29.667998168627058 ], [ -95.661438073502296, 29.667941168592318 ], [ -95.661669074223852, 29.667566167957332 ], [ -95.661786073517916, 29.66762016834857 ], [ -95.662098074330785, 29.66773816862645 ], [ -95.662581074151106, 29.667878168500806 ], [ -95.66295607388885, 29.667964167819623 ], [ -95.663562074299278, 29.66803616839875 ], [ -95.664277074046453, 29.668055167825987 ], [ -95.665319074762905, 29.668049168280241 ], [ -95.666054074697101, 29.668029168534709 ], [ -95.66693707479709, 29.667867168374627 ], [ -95.667056074961508, 29.667835167992301 ], [ -95.667118074700767, 29.66781816805824 ], [ -95.667183075215576, 29.667802167984828 ], [ -95.667725075434234, 29.667672168384811 ], [ -95.667900075757345, 29.667632168458585 ], [ -95.66880407595032, 29.667558167967549 ], [ -95.66898207586766, 29.667543168034815 ], [ -95.669474075553225, 29.667532167999504 ], [ -95.669896075650584, 29.667525168353681 ], [ -95.670106075505998, 29.667521167925678 ], [ -95.670171075908272, 29.667513168138928 ], [ -95.670291076461154, 29.667522167832256 ], [ -95.670773075634528, 29.667514168247255 ], [ -95.670794075829392, 29.667507168041727 ], [ -95.670986076497982, 29.6675161676696 ], [ -95.671144076208989, 29.667508168310896 ], [ -95.671776076156121, 29.667496167482142 ], [ -95.672264076152373, 29.667487168099768 ], [ -95.672479076442002, 29.667484167399969 ], [ -95.672616076920349, 29.66746616776997 ], [ -95.673156076780913, 29.667476167829282 ], [ -95.673252076894983, 29.667479168080614 ], [ -95.673357077255901, 29.667472167939167 ], [ -95.673838076684532, 29.667465167795797 ], [ -95.675042077157329, 29.667373167955418 ], [ -95.675386077237704, 29.667332168137499 ], [ -95.675689076882676, 29.667305168033987 ], [ -95.676026077455276, 29.667292168016633 ], [ -95.676295077905309, 29.66728516746441 ], [ -95.676538077430777, 29.667299167504343 ], [ -95.676808078054833, 29.667319167307291 ], [ -95.677246077533866, 29.667373167844161 ], [ -95.677475077891827, 29.667400167543846 ], [ -95.677872077774282, 29.667427167531567 ], [ -95.678142077528534, 29.667433167709159 ], [ -95.678405077916324, 29.667427167580776 ], [ -95.678613077663556, 29.667413167279925 ], [ -95.679464078248998, 29.667325167894955 ], [ -95.679458078316046, 29.667261167894264 ], [ -95.679433077857539, 29.666995167322568 ], [ -95.679412078229518, 29.666359167304559 ], [ -95.679327078290527, 29.661771166255441 ], [ -95.679281077625916, 29.659328166244585 ], [ -95.679185077369169, 29.654187164933862 ], [ -95.679599077682965, 29.654185164687732 ], [ -95.679884077819452, 29.65416616526738 ], [ -95.680013078065599, 29.65415016515745 ], [ -95.680160077620314, 29.654126164601738 ], [ -95.680305078122714, 29.65409416493025 ], [ -95.680459077901048, 29.654052165194013 ], [ -95.680604078019485, 29.654005164542291 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1506, "Tract": "48157673402", "Area_SqMi": 6.1516378320346972, "total_2009": 241, "total_2010": 243, "total_2011": 226, "total_2012": 207, "total_2013": 293, "total_2014": 236, "total_2015": 182, "total_2016": 429, "total_2017": 296, "total_2018": 518, "total_2019": 588, "total_2020": 643, "age1": 406, "age2": 413, "age3": 158, "earn1": 357, "earn2": 435, "earn3": 185, "naics_s01": 2, "naics_s02": 0, "naics_s03": 0, "naics_s04": 133, "naics_s05": 1, "naics_s06": 8, "naics_s07": 186, "naics_s08": 13, "naics_s09": 2, "naics_s10": 8, "naics_s11": 7, "naics_s12": 29, "naics_s13": 0, "naics_s14": 107, "naics_s15": 68, "naics_s16": 52, "naics_s17": 7, "naics_s18": 298, "naics_s19": 56, "naics_s20": 0, "race1": 732, "race2": 130, "race3": 8, "race4": 83, "race5": 2, "race6": 22, "ethnicity1": 634, "ethnicity2": 343, "edu1": 130, "edu2": 161, "edu3": 165, "edu4": 115, "Shape_Length": 62679.26508496092, "Shape_Area": 171497134.1237531, "total_2021": 771, "total_2022": 977 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.845924122336513, 29.69428716760007 ], [ -95.845949121445543, 29.686593165499392 ], [ -95.845761121401026, 29.686153165730413 ], [ -95.845507121943044, 29.685788165703244 ], [ -95.845283121165437, 29.685599166095798 ], [ -95.844881120918558, 29.685362165469858 ], [ -95.844847120931092, 29.685348165940919 ], [ -95.844432121244324, 29.685295165925638 ], [ -95.84325012050185, 29.685308165663823 ], [ -95.84177212025817, 29.685325165570127 ], [ -95.841640120405117, 29.685326166157477 ], [ -95.84079612063978, 29.685337166103718 ], [ -95.840489119852521, 29.685286165658031 ], [ -95.840173120064222, 29.685233165941614 ], [ -95.83974811961744, 29.685025165395064 ], [ -95.83972811961452, 29.685015165747735 ], [ -95.839438120305957, 29.684775165906192 ], [ -95.839235119624121, 29.684554165838851 ], [ -95.839132119843057, 29.684383166014502 ], [ -95.839047120094861, 29.683864165407588 ], [ -95.83896611968224, 29.679236164806852 ], [ -95.83891111888876, 29.676110164039791 ], [ -95.838809118816712, 29.670333162853318 ], [ -95.838757118764903, 29.669741162809323 ], [ -95.838659119419191, 29.669412162429516 ], [ -95.838237118805878, 29.667926162616325 ], [ -95.838072118540779, 29.667366162290293 ], [ -95.837801118663819, 29.666445162428268 ], [ -95.837644118148106, 29.666002161761863 ], [ -95.83741511802431, 29.665281161760443 ], [ -95.837237118213736, 29.664752161591423 ], [ -95.837100118138878, 29.664379161290665 ], [ -95.836798117952114, 29.663461161703356 ], [ -95.836610118609528, 29.662808161556111 ], [ -95.836274118087928, 29.661889160925725 ], [ -95.835597118156471, 29.659939160563752 ], [ -95.834973117422351, 29.658268160360059 ], [ -95.834602117821092, 29.65721716057012 ], [ -95.833677116799251, 29.654700159733981 ], [ -95.833401116690283, 29.653840159423794 ], [ -95.831995116110889, 29.650842158688459 ], [ -95.831515115782167, 29.649154158933634 ], [ -95.831488116787114, 29.649058158567808 ], [ -95.83144811580209, 29.648918158773 ], [ -95.83102911627256, 29.647473158348948 ], [ -95.830620115932177, 29.646689158069375 ], [ -95.830009115495173, 29.645348157685351 ], [ -95.829349115867956, 29.643973157638115 ], [ -95.828512114840137, 29.642229157346993 ], [ -95.828058115309403, 29.641279157632017 ], [ -95.827693114599654, 29.640493157018344 ], [ -95.827088114635472, 29.639487157039316 ], [ -95.826869115170396, 29.639190157050081 ], [ -95.826841114866895, 29.639151156501697 ], [ -95.826120114928173, 29.638137156235938 ], [ -95.824978113920466, 29.636589156182595 ], [ -95.824792114247799, 29.636347156641321 ], [ -95.824769114229596, 29.636317156646495 ], [ -95.824505113557521, 29.636088156489585 ], [ -95.824166114015668, 29.635867156652083 ], [ -95.823822114253574, 29.635678156051153 ], [ -95.823527113460614, 29.635574155817764 ], [ -95.823078113110981, 29.635457155832437 ], [ -95.823011113726409, 29.635440156350111 ], [ -95.822950113915056, 29.635424155814576 ], [ -95.822139112976373, 29.635214156408637 ], [ -95.818511112235683, 29.634057156350192 ], [ -95.816460111360371, 29.633337155890494 ], [ -95.811770110946426, 29.631680156150473 ], [ -95.811784110631052, 29.632133155729239 ], [ -95.811813110611695, 29.63364715613422 ], [ -95.81182011036536, 29.634008156729315 ], [ -95.81186811074042, 29.636584157102632 ], [ -95.81187211078813, 29.636753157021069 ], [ -95.81187311067562, 29.637541157169487 ], [ -95.811874111284695, 29.637639156898757 ], [ -95.811874110300948, 29.637758156935384 ], [ -95.811876110701746, 29.639069157333054 ], [ -95.811956110778425, 29.64346015855838 ], [ -95.811977111371277, 29.644573158018904 ], [ -95.812020111200923, 29.646318158544439 ], [ -95.812036111754438, 29.647225159154427 ], [ -95.812048110953754, 29.647943159523262 ], [ -95.812055111301092, 29.648324159390395 ], [ -95.812085111200247, 29.650105159933016 ], [ -95.812097111916444, 29.65084815982992 ], [ -95.812107111854843, 29.651405159749583 ], [ -95.81212611188289, 29.652557159960665 ], [ -95.812145112062026, 29.653440160216746 ], [ -95.812173111181437, 29.654772160559002 ], [ -95.812203112152716, 29.657432161472887 ], [ -95.812203112245314, 29.658254161433206 ], [ -95.812203111982726, 29.658531161288185 ], [ -95.812227111901478, 29.659509161416448 ], [ -95.812208112181594, 29.659825161912384 ], [ -95.81223511210159, 29.662263161726496 ], [ -95.81225211176573, 29.662818162273233 ], [ -95.81225611208103, 29.663711162043398 ], [ -95.812276112204117, 29.66470316226356 ], [ -95.812285112505762, 29.665000162552086 ], [ -95.812319111714501, 29.666094162544173 ], [ -95.812347111882573, 29.66738916319936 ], [ -95.812367111903413, 29.668311163057488 ], [ -95.812356112268048, 29.668501163317877 ], [ -95.812404112581234, 29.669638163709415 ], [ -95.812424112122585, 29.670342163498297 ], [ -95.812435112874113, 29.671017163557558 ], [ -95.812447112108941, 29.672147163930397 ], [ -95.812446112360604, 29.67234416428591 ], [ -95.812467112374577, 29.672905164200465 ], [ -95.812520112724599, 29.674383164329114 ], [ -95.812528112887733, 29.674720164369933 ], [ -95.812535112950428, 29.67507016490832 ], [ -95.812570112733013, 29.676305165332355 ], [ -95.812613112636384, 29.67820416505355 ], [ -95.812630112622514, 29.678967165187981 ], [ -95.812689113385076, 29.681345165951267 ], [ -95.812724113477046, 29.682741166596909 ], [ -95.81279911288361, 29.685714166921002 ], [ -95.81280011342507, 29.685764166864136 ], [ -95.812917113253675, 29.69068816819059 ], [ -95.812947113551218, 29.69214716844219 ], [ -95.812951113989158, 29.692318167815884 ], [ -95.813010114023101, 29.695088168711138 ], [ -95.813031113217519, 29.696102168513111 ], [ -95.81302911420488, 29.697009169281493 ], [ -95.813029113850689, 29.697086169467131 ], [ -95.813028113528702, 29.697315169579884 ], [ -95.813028113790054, 29.697369169272676 ], [ -95.814803114540553, 29.697252169170582 ], [ -95.816620114196738, 29.697132169024986 ], [ -95.817814114906142, 29.697035169341596 ], [ -95.822167116076614, 29.696683168585775 ], [ -95.826223116534877, 29.696339168284787 ], [ -95.827830117664462, 29.696204168279916 ], [ -95.82803111750583, 29.696188168129623 ], [ -95.831362118063154, 29.695907168451896 ], [ -95.83172511846341, 29.695888168663547 ], [ -95.832227118255489, 29.695844168209696 ], [ -95.835291119008716, 29.695576167970643 ], [ -95.836682119833725, 29.695455168152499 ], [ -95.838721120148179, 29.695278167603828 ], [ -95.845924122232105, 29.69470416762098 ], [ -95.84592412213108, 29.69439216787158 ], [ -95.845924122336513, 29.69428716760007 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1507, "Tract": "48157672907", "Area_SqMi": 2.4138662864547116, "total_2009": 62, "total_2010": 80, "total_2011": 57, "total_2012": 82, "total_2013": 137, "total_2014": 182, "total_2015": 170, "total_2016": 170, "total_2017": 184, "total_2018": 241, "total_2019": 250, "total_2020": 313, "age1": 157, "age2": 281, "age3": 97, "earn1": 98, "earn2": 179, "earn3": 258, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 134, "naics_s05": 0, "naics_s06": 1, "naics_s07": 25, "naics_s08": 39, "naics_s09": 1, "naics_s10": 72, "naics_s11": 8, "naics_s12": 24, "naics_s13": 0, "naics_s14": 54, "naics_s15": 14, "naics_s16": 101, "naics_s17": 0, "naics_s18": 61, "naics_s19": 1, "naics_s20": 0, "race1": 357, "race2": 101, "race3": 4, "race4": 61, "race5": 1, "race6": 11, "ethnicity1": 396, "ethnicity2": 139, "edu1": 74, "edu2": 108, "edu3": 104, "edu4": 92, "Shape_Length": 44249.414313464084, "Shape_Area": 67294460.692918539, "total_2021": 490, "total_2022": 535 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.74032309488905, 29.690425170452006 ], [ -95.740289094403096, 29.690358170532399 ], [ -95.74014809432677, 29.690077169881093 ], [ -95.739914094906339, 29.689625170284241 ], [ -95.739358094727038, 29.688548170002345 ], [ -95.738942094788442, 29.687737169873252 ], [ -95.738766093911735, 29.687321169641866 ], [ -95.738611093964636, 29.686870169591195 ], [ -95.738494093740059, 29.686348169307546 ], [ -95.738491094622802, 29.686334169130237 ], [ -95.73841409413707, 29.685636169114495 ], [ -95.738385093925956, 29.684988168825811 ], [ -95.738407094558312, 29.684685169034896 ], [ -95.738435094299632, 29.684326169045441 ], [ -95.738288094014052, 29.684308169276974 ], [ -95.737972093552756, 29.684271169366863 ], [ -95.735334093700075, 29.683945169259566 ], [ -95.734645092777086, 29.68386016905783 ], [ -95.733780093229655, 29.683741169441387 ], [ -95.733336092327662, 29.683691168887226 ], [ -95.73323809262385, 29.683681169086451 ], [ -95.733175092448917, 29.683673169423198 ], [ -95.731874092392985, 29.683519168958611 ], [ -95.731327092023747, 29.683428168860658 ], [ -95.730988092323372, 29.683372168766386 ], [ -95.73027009161909, 29.683260169403848 ], [ -95.72938409190327, 29.683144169231042 ], [ -95.727087090731047, 29.682867168726052 ], [ -95.726598091328242, 29.682800168932587 ], [ -95.725997090982375, 29.682727169507057 ], [ -95.725650090837917, 29.682689169279357 ], [ -95.725343091133155, 29.682679169482942 ], [ -95.724853090972587, 29.682669168948028 ], [ -95.724439091008094, 29.682676168828156 ], [ -95.721759089576679, 29.682802168963562 ], [ -95.721558089548054, 29.682813169684604 ], [ -95.71967108962744, 29.682928169409756 ], [ -95.717902089075693, 29.683036169591201 ], [ -95.715677088726011, 29.683157169347005 ], [ -95.715485088357468, 29.683168169620156 ], [ -95.715273088538396, 29.683177169848946 ], [ -95.715005087959184, 29.683194169435478 ], [ -95.714657088347977, 29.683228169421316 ], [ -95.714268087460439, 29.683277169215277 ], [ -95.713645088084121, 29.683384169744119 ], [ -95.713180087881966, 29.68345117017693 ], [ -95.712396087734021, 29.68351117016082 ], [ -95.708545086619949, 29.683735169826452 ], [ -95.707654085974852, 29.68378817035051 ], [ -95.706122085826934, 29.683879170167014 ], [ -95.705661086199711, 29.683900170338358 ], [ -95.70520308611313, 29.683912169715995 ], [ -95.70234108485937, 29.683926169881314 ], [ -95.700686084586224, 29.68393916995181 ], [ -95.698614084306399, 29.683973170430107 ], [ -95.697511083538302, 29.68399817042831 ], [ -95.697437083891828, 29.684000170550743 ], [ -95.696002082899128, 29.684020170684896 ], [ -95.694658083063459, 29.684028170407665 ], [ -95.694123082988412, 29.684034170314607 ], [ -95.694125083172949, 29.684074170152659 ], [ -95.694129082378382, 29.684139170213193 ], [ -95.694117082333747, 29.684243170612671 ], [ -95.694117082734834, 29.685799171008785 ], [ -95.694125082549249, 29.686767170689901 ], [ -95.694136082613667, 29.688146171776079 ], [ -95.694142083387533, 29.689311172007255 ], [ -95.694145082562343, 29.68984517204866 ], [ -95.698435084041392, 29.68981717151139 ], [ -95.701372085203303, 29.689825171384467 ], [ -95.70145908458079, 29.692192171507443 ], [ -95.701488085111862, 29.692962171630839 ], [ -95.701606084991312, 29.696147172875236 ], [ -95.701635085773887, 29.696952172482696 ], [ -95.701648085718219, 29.6973231731229 ], [ -95.70177808501451, 29.700809173313129 ], [ -95.701779085434381, 29.700834173938862 ], [ -95.7017840856101, 29.700951173617877 ], [ -95.701800085199565, 29.701372173495901 ], [ -95.701983085826811, 29.706122174457718 ], [ -95.701977085933052, 29.706174174648325 ], [ -95.701979085932777, 29.706248175133926 ], [ -95.701981085634529, 29.706383174478724 ], [ -95.701983085823983, 29.706512175125955 ], [ -95.706135087155033, 29.706103174939063 ], [ -95.707783086995533, 29.705950174943439 ], [ -95.709096087418814, 29.705815174011697 ], [ -95.709151087955561, 29.705812174023421 ], [ -95.709220087650152, 29.705809174095208 ], [ -95.713212088937397, 29.705512173920017 ], [ -95.715681088868479, 29.705304174538057 ], [ -95.719616090076912, 29.704993174057115 ], [ -95.719872090769513, 29.704973173994603 ], [ -95.719869089915889, 29.704942173803463 ], [ -95.719861090170909, 29.70486217357039 ], [ -95.719847089920236, 29.704706173646191 ], [ -95.719825090014496, 29.704458173398233 ], [ -95.719826090212464, 29.704380173506586 ], [ -95.719832090173711, 29.70418217348892 ], [ -95.719839089804566, 29.703863173658398 ], [ -95.719879090491204, 29.703526173674266 ], [ -95.719914090537742, 29.703232173829715 ], [ -95.72004008977693, 29.702347173697859 ], [ -95.720060090211135, 29.702208172883758 ], [ -95.720102090520683, 29.701903172863435 ], [ -95.720146089920888, 29.701562172788929 ], [ -95.720117089697979, 29.701112173020995 ], [ -95.720059090049688, 29.700637173055114 ], [ -95.719967089640576, 29.700199172782241 ], [ -95.719923090452511, 29.700045172804035 ], [ -95.71961609014005, 29.699230172348983 ], [ -95.719571089481974, 29.699142172976956 ], [ -95.719344090259327, 29.698700172803456 ], [ -95.719015090159289, 29.698244172240184 ], [ -95.718903089616418, 29.698093172213138 ], [ -95.718665089250351, 29.697771172851816 ], [ -95.718270090072679, 29.697166172503739 ], [ -95.718026089587511, 29.696550172581272 ], [ -95.717850089864157, 29.695914171707642 ], [ -95.717762089716643, 29.695316172396005 ], [ -95.717739089673145, 29.694629171804166 ], [ -95.717737089337859, 29.694540172135657 ], [ -95.720563090380153, 29.692594171252935 ], [ -95.722587090403863, 29.691230171004424 ], [ -95.723032090558462, 29.690973170804561 ], [ -95.72344109053077, 29.690809170727807 ], [ -95.723788090306115, 29.690722170869197 ], [ -95.723993090311652, 29.690672170776438 ], [ -95.724406091236347, 29.690661171093119 ], [ -95.731785092962284, 29.690480170577104 ], [ -95.732208093078896, 29.690470170765373 ], [ -95.732828092971189, 29.690463170139996 ], [ -95.73350209265999, 29.690456170610659 ], [ -95.734960093310349, 29.690581170492798 ], [ -95.739111094893019, 29.690461169923559 ], [ -95.739922094964044, 29.690437170216146 ], [ -95.739948094323708, 29.690433170136092 ], [ -95.740121094760127, 29.690429169907858 ], [ -95.74032309488905, 29.690425170452006 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1508, "Tract": "48157672906", "Area_SqMi": 1.2466168784508003, "total_2009": 16, "total_2010": 44, "total_2011": 85, "total_2012": 127, "total_2013": 203, "total_2014": 239, "total_2015": 286, "total_2016": 305, "total_2017": 302, "total_2018": 246, "total_2019": 214, "total_2020": 188, "age1": 80, "age2": 125, "age3": 47, "earn1": 54, "earn2": 101, "earn3": 97, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 50, "naics_s05": 0, "naics_s06": 11, "naics_s07": 59, "naics_s08": 3, "naics_s09": 0, "naics_s10": 1, "naics_s11": 11, "naics_s12": 9, "naics_s13": 0, "naics_s14": 0, "naics_s15": 31, "naics_s16": 50, "naics_s17": 0, "naics_s18": 27, "naics_s19": 0, "naics_s20": 0, "race1": 167, "race2": 49, "race3": 0, "race4": 34, "race5": 0, "race6": 2, "ethnicity1": 178, "ethnicity2": 74, "edu1": 44, "edu2": 39, "edu3": 57, "edu4": 32, "Shape_Length": 23688.832776232011, "Shape_Area": 34753544.965097271, "total_2021": 226, "total_2022": 252 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.743015095680363, 29.703035173058534 ], [ -95.743009095756037, 29.702967172705659 ], [ -95.743000095981643, 29.702873172333554 ], [ -95.742987096342432, 29.702569172416727 ], [ -95.742966095709789, 29.702090172135566 ], [ -95.742836095495861, 29.70095717226107 ], [ -95.742706096137553, 29.699973172509676 ], [ -95.742594095679294, 29.699434172391715 ], [ -95.742445095703957, 29.699063172318368 ], [ -95.742377096300388, 29.698896171542092 ], [ -95.742278095790994, 29.698654171682449 ], [ -95.741925095576249, 29.697855171813348 ], [ -95.741740095465829, 29.697428171422271 ], [ -95.741591095947697, 29.697038171295276 ], [ -95.741517095721974, 29.69666717136532 ], [ -95.741480095186574, 29.696314171351602 ], [ -95.741416095655467, 29.695443171445504 ], [ -95.741379095366625, 29.69407817110233 ], [ -95.741369095701444, 29.693710170441943 ], [ -95.741368095666644, 29.693658170887744 ], [ -95.741367095615544, 29.693327170966686 ], [ -95.741318095570222, 29.692841170411434 ], [ -95.741205095530617, 29.692389170191454 ], [ -95.741057095276375, 29.691903170079076 ], [ -95.741052094639798, 29.691892170260331 ], [ -95.740987094663652, 29.691748170911172 ], [ -95.740357094613842, 29.690494170502117 ], [ -95.74032309488905, 29.690425170452006 ], [ -95.740121094760127, 29.690429169907858 ], [ -95.739948094323708, 29.690433170136092 ], [ -95.739922094964044, 29.690437170216146 ], [ -95.739111094893019, 29.690461169923559 ], [ -95.734960093310349, 29.690581170492798 ], [ -95.73350209265999, 29.690456170610659 ], [ -95.732828092971189, 29.690463170139996 ], [ -95.732208093078896, 29.690470170765373 ], [ -95.731785092962284, 29.690480170577104 ], [ -95.724406091236347, 29.690661171093119 ], [ -95.723993090311652, 29.690672170776438 ], [ -95.723788090306115, 29.690722170869197 ], [ -95.72344109053077, 29.690809170727807 ], [ -95.723032090558462, 29.690973170804561 ], [ -95.722587090403863, 29.691230171004424 ], [ -95.720563090380153, 29.692594171252935 ], [ -95.717737089337859, 29.694540172135657 ], [ -95.717739089673145, 29.694629171804166 ], [ -95.717762089716643, 29.695316172396005 ], [ -95.717850089864157, 29.695914171707642 ], [ -95.718026089587511, 29.696550172581272 ], [ -95.718270090072679, 29.697166172503739 ], [ -95.718665089250351, 29.697771172851816 ], [ -95.718903089616418, 29.698093172213138 ], [ -95.719015090159289, 29.698244172240184 ], [ -95.719344090259327, 29.698700172803456 ], [ -95.719571089481974, 29.699142172976956 ], [ -95.71961609014005, 29.699230172348983 ], [ -95.719923090452511, 29.700045172804035 ], [ -95.719967089640576, 29.700199172782241 ], [ -95.720059090049688, 29.700637173055114 ], [ -95.720117089697979, 29.701112173020995 ], [ -95.720146089920888, 29.701562172788929 ], [ -95.720102090520683, 29.701903172863435 ], [ -95.720060090211135, 29.702208172883758 ], [ -95.72004008977693, 29.702347173697859 ], [ -95.719914090537742, 29.703232173829715 ], [ -95.719879090491204, 29.703526173674266 ], [ -95.719839089804566, 29.703863173658398 ], [ -95.719832090173711, 29.70418217348892 ], [ -95.719826090212464, 29.704380173506586 ], [ -95.719825090014496, 29.704458173398233 ], [ -95.719847089920236, 29.704706173646191 ], [ -95.719861090170909, 29.70486217357039 ], [ -95.719869089915889, 29.704942173803463 ], [ -95.719872090769513, 29.704973173994603 ], [ -95.720113090812958, 29.70494917401945 ], [ -95.720449090297166, 29.704916174103278 ], [ -95.721216090214199, 29.704853173616158 ], [ -95.721721090469686, 29.704813173359931 ], [ -95.72214509057774, 29.704789173983315 ], [ -95.72356509125207, 29.704687173996529 ], [ -95.726945092206122, 29.704446173351116 ], [ -95.727173091770325, 29.704428173852445 ], [ -95.727911092343589, 29.704357173266796 ], [ -95.732377093668205, 29.703933173612061 ], [ -95.738483094493091, 29.703409172518182 ], [ -95.739594095589354, 29.703332172780875 ], [ -95.741290095415266, 29.703193172419027 ], [ -95.742704095583662, 29.703064172671652 ], [ -95.742861095878553, 29.703050172924272 ], [ -95.743015095680363, 29.703035173058534 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1509, "Tract": "48157673106", "Area_SqMi": 1.6931878790126313, "total_2009": 958, "total_2010": 1543, "total_2011": 2047, "total_2012": 3031, "total_2013": 3354, "total_2014": 3403, "total_2015": 2704, "total_2016": 2899, "total_2017": 2771, "total_2018": 2962, "total_2019": 3497, "total_2020": 3165, "age1": 1541, "age2": 1817, "age3": 701, "earn1": 1211, "earn2": 1521, "earn3": 1327, "naics_s01": 0, "naics_s02": 4, "naics_s03": 0, "naics_s04": 111, "naics_s05": 47, "naics_s06": 55, "naics_s07": 1041, "naics_s08": 11, "naics_s09": 114, "naics_s10": 218, "naics_s11": 74, "naics_s12": 244, "naics_s13": 0, "naics_s14": 148, "naics_s15": 35, "naics_s16": 617, "naics_s17": 23, "naics_s18": 1148, "naics_s19": 169, "naics_s20": 0, "race1": 2932, "race2": 666, "race3": 33, "race4": 331, "race5": 5, "race6": 92, "ethnicity1": 2791, "ethnicity2": 1268, "edu1": 530, "edu2": 615, "edu3": 770, "edu4": 603, "Shape_Length": 33612.916917319177, "Shape_Area": 47203180.146854989, "total_2021": 3292, "total_2022": 4059 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.799987111868788, 29.726880175526198 ], [ -95.799824111877996, 29.726743175834361 ], [ -95.79968511153875, 29.726625175416466 ], [ -95.799226111407563, 29.726238175130774 ], [ -95.795305110395176, 29.722925175186209 ], [ -95.794865109940858, 29.722551174530935 ], [ -95.794873109887348, 29.722259174621723 ], [ -95.794903110151807, 29.722148174691085 ], [ -95.794920110445617, 29.722031174741549 ], [ -95.794883110317954, 29.721906174744287 ], [ -95.79487511031283, 29.721894174870496 ], [ -95.79477511022553, 29.72179717455516 ], [ -95.794698110483438, 29.72177317464017 ], [ -95.794589109971056, 29.721757174783015 ], [ -95.794464109583231, 29.721781175200348 ], [ -95.794363110534746, 29.721829174548411 ], [ -95.794283109539009, 29.721854174957208 ], [ -95.794037109736223, 29.721845174542366 ], [ -95.79099710934868, 29.719259174266227 ], [ -95.789936108542562, 29.718370174065022 ], [ -95.789816108325681, 29.718268173936092 ], [ -95.789306108382391, 29.718703174386505 ], [ -95.788962108862847, 29.718939174353924 ], [ -95.788559108188025, 29.719175174165549 ], [ -95.788097107986843, 29.719411174240513 ], [ -95.787792108046858, 29.719519174364439 ], [ -95.787558108131421, 29.719600174464574 ], [ -95.787356108138781, 29.71966517438057 ], [ -95.786572107729171, 29.719849174413405 ], [ -95.785761108244785, 29.719951175000897 ], [ -95.784915107456328, 29.719966174583789 ], [ -95.784159107680196, 29.719886174658985 ], [ -95.784101107728176, 29.719873174980425 ], [ -95.784012107196872, 29.719852175126629 ], [ -95.783504107305305, 29.719735175124189 ], [ -95.782854106521057, 29.719532174548327 ], [ -95.782217106951521, 29.719268175086452 ], [ -95.78164610719071, 29.718940174742819 ], [ -95.781091107000833, 29.718537174336362 ], [ -95.780627106259644, 29.718141174835154 ], [ -95.779116105741082, 29.716794174518032 ], [ -95.778790105863706, 29.716503174351676 ], [ -95.778722105581807, 29.71644617446022 ], [ -95.778511105715609, 29.716268174564792 ], [ -95.778380106172662, 29.716158174033517 ], [ -95.77809410535987, 29.715916174167425 ], [ -95.777979105795026, 29.715819174411426 ], [ -95.77760710527069, 29.715540173734315 ], [ -95.777588105023952, 29.715528174368149 ], [ -95.777506105971597, 29.715480174276493 ], [ -95.777126105187889, 29.715256173709189 ], [ -95.776838104827334, 29.71508617446392 ], [ -95.776554105485971, 29.714959174365347 ], [ -95.77624810512917, 29.714822174192694 ], [ -95.775925105497535, 29.714711173779108 ], [ -95.775699105374201, 29.714633173858324 ], [ -95.77507010439291, 29.714483173722563 ], [ -95.774930105176736, 29.714449173630697 ], [ -95.774269104235671, 29.714312173541749 ], [ -95.773866104397101, 29.714216173909353 ], [ -95.773586104407144, 29.714148173688969 ], [ -95.773259104075137, 29.714068174374884 ], [ -95.773199104430503, 29.714269173693648 ], [ -95.773169104790185, 29.714369174215015 ], [ -95.772988104085371, 29.714979174432251 ], [ -95.772798104477076, 29.715868174422749 ], [ -95.772662104389724, 29.716503174111562 ], [ -95.772545104695425, 29.717342174486973 ], [ -95.772539104230987, 29.717572174881109 ], [ -95.772523104039962, 29.718136174486308 ], [ -95.772508104055873, 29.71869417515467 ], [ -95.772546104687535, 29.721087175757216 ], [ -95.772547104468444, 29.7211491758496 ], [ -95.772548104445647, 29.721233175553476 ], [ -95.772561104459939, 29.722074175337458 ], [ -95.772577104676984, 29.723040175751159 ], [ -95.772591104187086, 29.723922175621713 ], [ -95.772596105112598, 29.724248175989 ], [ -95.77260010451468, 29.724417175649663 ], [ -95.772603105099677, 29.724706175981609 ], [ -95.772621104239818, 29.725821176367745 ], [ -95.772627104792363, 29.729743176799769 ], [ -95.772708105239744, 29.730934177220441 ], [ -95.772726105226212, 29.733209177957331 ], [ -95.7727261052339, 29.733252177869936 ], [ -95.772726105477389, 29.733329178053662 ], [ -95.772726104764558, 29.733356177875773 ], [ -95.772728105462406, 29.733558177895699 ], [ -95.772729104913566, 29.733676177559779 ], [ -95.772730105521788, 29.733823178107848 ], [ -95.772748105052969, 29.73604717846219 ], [ -95.772750104766146, 29.736342178480779 ], [ -95.772695104893984, 29.736799178923881 ], [ -95.772725104723207, 29.737500179075369 ], [ -95.77275810530233, 29.738256178818514 ], [ -95.772767105647461, 29.738472179224505 ], [ -95.772772104872615, 29.738586179164088 ], [ -95.772765105621886, 29.739520178806114 ], [ -95.772761105784397, 29.740173179730082 ], [ -95.772758105430029, 29.74078417957714 ], [ -95.772778105598263, 29.74095317937379 ], [ -95.772818105108243, 29.741272179599605 ], [ -95.772826104968445, 29.741665179630605 ], [ -95.772848105892194, 29.742704180017313 ], [ -95.77283710594844, 29.743849180223602 ], [ -95.772836105329546, 29.743917179922395 ], [ -95.772834105334979, 29.744156179897615 ], [ -95.77318310538918, 29.744157179961331 ], [ -95.773549105497082, 29.74415718047419 ], [ -95.774297106036585, 29.74415718012277 ], [ -95.774665105540265, 29.744146179963131 ], [ -95.774937106120149, 29.744122179720947 ], [ -95.775182106382829, 29.74408417992149 ], [ -95.775614106182843, 29.74400218002048 ], [ -95.776086106182362, 29.743918179881771 ], [ -95.776249106289129, 29.74387717968823 ], [ -95.776576106679798, 29.743796180269932 ], [ -95.777178106157692, 29.743592179519773 ], [ -95.777698106676979, 29.743347180149559 ], [ -95.778014107115482, 29.743173180007904 ], [ -95.778330106598375, 29.742959179545608 ], [ -95.778606106729299, 29.742754179291524 ], [ -95.778932107503977, 29.742520179397804 ], [ -95.779228106710448, 29.742244179901498 ], [ -95.779504106759589, 29.741918179078571 ], [ -95.77980010729938, 29.74157117975458 ], [ -95.780899106966146, 29.73996017886483 ], [ -95.781362107919279, 29.739284178605892 ], [ -95.781828108008568, 29.738584178838906 ], [ -95.781918108137475, 29.738451178591575 ], [ -95.782753107905847, 29.737254178299981 ], [ -95.783625108387923, 29.736000177898916 ], [ -95.78394510797618, 29.735550177527365 ], [ -95.784146108163498, 29.735228177705064 ], [ -95.784305108323466, 29.734964178283448 ], [ -95.784455108605712, 29.734663178043061 ], [ -95.784641108630339, 29.73422617724059 ], [ -95.785250108663675, 29.732724177380124 ], [ -95.785327108730726, 29.732533177239695 ], [ -95.785358108194544, 29.732465177029084 ], [ -95.785393107899395, 29.732401177358287 ], [ -95.785551108155772, 29.731951176813279 ], [ -95.785832108290151, 29.731400177081557 ], [ -95.786029108183541, 29.731057177392813 ], [ -95.786164107889164, 29.730859176931421 ], [ -95.786427108383094, 29.730519177062636 ], [ -95.786759108119611, 29.730152176608126 ], [ -95.786963108997156, 29.729954176868468 ], [ -95.787237108529951, 29.729736176515658 ], [ -95.787340108117732, 29.729662176480375 ], [ -95.787663108770886, 29.729434176460472 ], [ -95.788495109085574, 29.728966176529024 ], [ -95.789158109544346, 29.728726176061755 ], [ -95.789788108753456, 29.72855817639654 ], [ -95.789885108877826, 29.72853317614328 ], [ -95.790538108888526, 29.728403176700787 ], [ -95.791005109871719, 29.72837517613884 ], [ -95.791521109565693, 29.728361175879034 ], [ -95.792133110283672, 29.728423176237065 ], [ -95.792860109984161, 29.728544176610718 ], [ -95.793694109907932, 29.728712176102182 ], [ -95.79416811035324, 29.728781176012053 ], [ -95.794746110356442, 29.728836176120009 ], [ -95.795360110177398, 29.728860176602034 ], [ -95.795869110480595, 29.728790175775892 ], [ -95.796348111353026, 29.728725176150839 ], [ -95.796877110597038, 29.728611176159045 ], [ -95.797251111476442, 29.728506175901433 ], [ -95.797722111596059, 29.728335176332923 ], [ -95.798015111326592, 29.728221175896973 ], [ -95.79834811123041, 29.728062176081835 ], [ -95.798738111532856, 29.727855175621553 ], [ -95.799104111435554, 29.727579176155405 ], [ -95.7993231114487, 29.727408175992718 ], [ -95.799987111868788, 29.726880175526198 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1510, "Tract": "48157672903", "Area_SqMi": 3.744396631825865, "total_2009": 65, "total_2010": 93, "total_2011": 51, "total_2012": 302, "total_2013": 315, "total_2014": 309, "total_2015": 567, "total_2016": 769, "total_2017": 830, "total_2018": 1063, "total_2019": 1332, "total_2020": 1448, "age1": 535, "age2": 778, "age3": 273, "earn1": 464, "earn2": 565, "earn3": 557, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 101, "naics_s05": 3, "naics_s06": 17, "naics_s07": 302, "naics_s08": 10, "naics_s09": 92, "naics_s10": 49, "naics_s11": 29, "naics_s12": 59, "naics_s13": 0, "naics_s14": 99, "naics_s15": 120, "naics_s16": 215, "naics_s17": 18, "naics_s18": 403, "naics_s19": 69, "naics_s20": 0, "race1": 1054, "race2": 306, "race3": 11, "race4": 182, "race5": 5, "race6": 28, "ethnicity1": 1089, "ethnicity2": 497, "edu1": 216, "edu2": 298, "edu3": 301, "edu4": 236, "Shape_Length": 45871.311794108384, "Shape_Area": 104387369.49642126, "total_2021": 1714, "total_2022": 1586 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.767268101381177, 29.684594167934726 ], [ -95.767191101088684, 29.684097167918818 ], [ -95.766967100849769, 29.683150167879319 ], [ -95.766778100794255, 29.682695167721359 ], [ -95.766411101109099, 29.682148168021584 ], [ -95.765938100581479, 29.681574167342671 ], [ -95.765368101011703, 29.680938167172432 ], [ -95.764933100758043, 29.680635167083619 ], [ -95.764686100703813, 29.680461167260056 ], [ -95.764455100355747, 29.680314167538778 ], [ -95.762640099917732, 29.679153167597772 ], [ -95.762443099986669, 29.679008166884309 ], [ -95.761892099595272, 29.678605166962949 ], [ -95.761339100155766, 29.678134166921136 ], [ -95.757703098541455, 29.675943166895447 ], [ -95.756874098728389, 29.675408166319947 ], [ -95.755259098451162, 29.674364166847905 ], [ -95.7547730974307, 29.674009166115827 ], [ -95.753522097903925, 29.673097166229194 ], [ -95.751782097471761, 29.671692165837214 ], [ -95.750703096767936, 29.670731166320866 ], [ -95.749400096580572, 29.669541166065102 ], [ -95.748319096183124, 29.668506165893024 ], [ -95.747361096075394, 29.66754816526408 ], [ -95.74622709484747, 29.666409165253025 ], [ -95.74537809511439, 29.665559165395894 ], [ -95.744399094452959, 29.664562164689642 ], [ -95.744337094764504, 29.664503164661909 ], [ -95.743375093994032, 29.663576164473994 ], [ -95.74265309377428, 29.66303616492695 ], [ -95.741983093966624, 29.662623164198109 ], [ -95.741266094205102, 29.662241164869695 ], [ -95.740490094033177, 29.661944164846059 ], [ -95.739741093751661, 29.661699164293818 ], [ -95.739132092900434, 29.661563164678036 ], [ -95.73869809334461, 29.661485164152726 ], [ -95.738228092703622, 29.661426164038605 ], [ -95.737703093251767, 29.661380164417952 ], [ -95.737075093128638, 29.661349164622834 ], [ -95.736627092777951, 29.661313164571016 ], [ -95.736482092684042, 29.661297164802878 ], [ -95.736252092795468, 29.661277164643263 ], [ -95.736142092507166, 29.661271164811815 ], [ -95.733557091484855, 29.661050164564333 ], [ -95.732745091833493, 29.660991164267475 ], [ -95.731867091735495, 29.660938164889643 ], [ -95.726547089565386, 29.660528164555139 ], [ -95.72604008968284, 29.660489164387005 ], [ -95.725946089415473, 29.660482164649093 ], [ -95.72300908930481, 29.66057716440864 ], [ -95.722092089298087, 29.660490164659031 ], [ -95.720549088758403, 29.660395164605845 ], [ -95.718592087542561, 29.660250165250943 ], [ -95.717738088236104, 29.660024164898743 ], [ -95.717310087656614, 29.659881165084329 ], [ -95.717090087697713, 29.659809164597146 ], [ -95.716445087078682, 29.659521164652197 ], [ -95.715855087316982, 29.659243165074042 ], [ -95.715263086610747, 29.658887165038237 ], [ -95.715229086862379, 29.658869164894018 ], [ -95.714991087130144, 29.658694164399673 ], [ -95.714806086778609, 29.658557164327071 ], [ -95.714821086694641, 29.659078164473161 ], [ -95.714823087041836, 29.659135164767601 ], [ -95.714864087039203, 29.660040164674943 ], [ -95.714868087172178, 29.660221165183195 ], [ -95.714883086652591, 29.660936165189764 ], [ -95.714916086775943, 29.662215165696033 ], [ -95.714984087408325, 29.6647561659696 ], [ -95.714995087495026, 29.665057165890431 ], [ -95.7150590870516, 29.667031166450876 ], [ -95.715123087974476, 29.670231166942447 ], [ -95.715140087741375, 29.671799167095855 ], [ -95.715153087703953, 29.6727991678307 ], [ -95.715163087754249, 29.673852168085801 ], [ -95.71519808740392, 29.675964168002952 ], [ -95.715203087455336, 29.676636168578856 ], [ -95.715212087591738, 29.677293168350857 ], [ -95.715237088073735, 29.679148168988881 ], [ -95.715373088330963, 29.679832168673091 ], [ -95.715540088271979, 29.680739169255215 ], [ -95.715619088292812, 29.681414169241862 ], [ -95.715666088664278, 29.682248169857683 ], [ -95.715675088675908, 29.683024169991203 ], [ -95.715677088726011, 29.683157169347005 ], [ -95.717902089075693, 29.683036169591201 ], [ -95.71967108962744, 29.682928169409756 ], [ -95.721558089548054, 29.682813169684604 ], [ -95.721759089576679, 29.682802168963562 ], [ -95.724439091008094, 29.682676168828156 ], [ -95.724853090972587, 29.682669168948028 ], [ -95.725343091133155, 29.682679169482942 ], [ -95.725650090837917, 29.682689169279357 ], [ -95.725997090982375, 29.682727169507057 ], [ -95.726598091328242, 29.682800168932587 ], [ -95.727087090731047, 29.682867168726052 ], [ -95.72938409190327, 29.683144169231042 ], [ -95.73027009161909, 29.683260169403848 ], [ -95.730988092323372, 29.683372168766386 ], [ -95.731327092023747, 29.683428168860658 ], [ -95.731874092392985, 29.683519168958611 ], [ -95.733175092448917, 29.683673169423198 ], [ -95.73323809262385, 29.683681169086451 ], [ -95.733336092327662, 29.683691168887226 ], [ -95.733780093229655, 29.683741169441387 ], [ -95.734645092777086, 29.68386016905783 ], [ -95.735334093700075, 29.683945169259566 ], [ -95.737972093552756, 29.684271169366863 ], [ -95.738288094014052, 29.684308169276974 ], [ -95.738435094299632, 29.684326169045441 ], [ -95.739835094049766, 29.684496169329712 ], [ -95.740484094475647, 29.684569168903863 ], [ -95.741546094852424, 29.684698169359866 ], [ -95.742289095568907, 29.684782169379684 ], [ -95.742426094923189, 29.684791168904429 ], [ -95.742662095041524, 29.684808169158412 ], [ -95.743037095674197, 29.684818169243552 ], [ -95.743110094909369, 29.684818169406714 ], [ -95.744293096134712, 29.684826168541903 ], [ -95.74629809658434, 29.684838169341827 ], [ -95.746660096274908, 29.684840168558452 ], [ -95.747408096199138, 29.684852169122973 ], [ -95.74853509663086, 29.68485416900673 ], [ -95.749147096507642, 29.684863168770349 ], [ -95.74929709666678, 29.68486516853908 ], [ -95.751516097925801, 29.684878168603976 ], [ -95.753194097451654, 29.684898169100563 ], [ -95.753950098049145, 29.684926168588433 ], [ -95.756158098225072, 29.685019168794312 ], [ -95.757053098780958, 29.685064168859054 ], [ -95.759990099855713, 29.685238168395731 ], [ -95.761287100042892, 29.685317168037511 ], [ -95.761656099883439, 29.685336168212498 ], [ -95.761841100227514, 29.685341168393897 ], [ -95.76202510040784, 29.685341168123184 ], [ -95.76238710032213, 29.68532616862478 ], [ -95.762606100011411, 29.685310168654759 ], [ -95.7626931006684, 29.685304168551852 ], [ -95.762784100237283, 29.685269168093715 ], [ -95.762834100901003, 29.685223168432351 ], [ -95.762857100252333, 29.68516716870948 ], [ -95.762916100143471, 29.685213168821367 ], [ -95.763020100524628, 29.685246168143816 ], [ -95.763143100681404, 29.685247168429889 ], [ -95.763533100329795, 29.685177168788861 ], [ -95.766253101387449, 29.684767167997844 ], [ -95.766724101325309, 29.684694168166896 ], [ -95.766886101344838, 29.684664168416049 ], [ -95.767268101381177, 29.684594167934726 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1511, "Tract": "48157673008", "Area_SqMi": 1.1033632766028498, "total_2009": 323, "total_2010": 373, "total_2011": 439, "total_2012": 528, "total_2013": 555, "total_2014": 546, "total_2015": 566, "total_2016": 520, "total_2017": 571, "total_2018": 463, "total_2019": 371, "total_2020": 322, "age1": 75, "age2": 149, "age3": 75, "earn1": 145, "earn2": 77, "earn3": 77, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 21, "naics_s07": 7, "naics_s08": 4, "naics_s09": 0, "naics_s10": 8, "naics_s11": 3, "naics_s12": 29, "naics_s13": 0, "naics_s14": 13, "naics_s15": 17, "naics_s16": 50, "naics_s17": 0, "naics_s18": 28, "naics_s19": 111, "naics_s20": 0, "race1": 217, "race2": 42, "race3": 1, "race4": 34, "race5": 0, "race6": 5, "ethnicity1": 239, "ethnicity2": 60, "edu1": 29, "edu2": 49, "edu3": 67, "edu4": 79, "Shape_Length": 29133.488539767281, "Shape_Area": 30759879.726566348, "total_2021": 276, "total_2022": 299 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.772728105462406, 29.733558177895699 ], [ -95.772726104764558, 29.733356177875773 ], [ -95.772726105477389, 29.733329178053662 ], [ -95.7727261052339, 29.733252177869936 ], [ -95.772726105226212, 29.733209177957331 ], [ -95.772708105239744, 29.730934177220441 ], [ -95.772627104792363, 29.729743176799769 ], [ -95.772621104239818, 29.725821176367745 ], [ -95.772603105099677, 29.724706175981609 ], [ -95.77260010451468, 29.724417175649663 ], [ -95.772596105112598, 29.724248175989 ], [ -95.772489104091363, 29.724168176083172 ], [ -95.772332105050651, 29.724051175794031 ], [ -95.77218610409416, 29.723942176372574 ], [ -95.771575104170537, 29.723637175557574 ], [ -95.771292104074774, 29.72349617556328 ], [ -95.771213103812244, 29.723454175872622 ], [ -95.77024210352198, 29.722939175692964 ], [ -95.770003103517979, 29.722813175972004 ], [ -95.768693103066695, 29.722494175986988 ], [ -95.768609103215638, 29.72247417557158 ], [ -95.767657103479934, 29.722446175802371 ], [ -95.767473103004221, 29.722441176065601 ], [ -95.766570102556585, 29.722415175953415 ], [ -95.765256103114126, 29.722807176012157 ], [ -95.764881102985811, 29.722735176226603 ], [ -95.761757101815789, 29.722970176263136 ], [ -95.760894101091125, 29.722680175758573 ], [ -95.759748101018161, 29.72172917570531 ], [ -95.756868100488376, 29.719340175170686 ], [ -95.755018100272864, 29.717766175630903 ], [ -95.754885100075754, 29.71765317513783 ], [ -95.754221099127335, 29.717088174909975 ], [ -95.75384309922147, 29.716766175129546 ], [ -95.750678098783396, 29.714102174584838 ], [ -95.749116098324308, 29.712812174393999 ], [ -95.749001098389414, 29.712717174342181 ], [ -95.748932098324573, 29.71266017425749 ], [ -95.748628097893899, 29.712327174024047 ], [ -95.748324098165142, 29.712238174458019 ], [ -95.747339097544369, 29.712305174017409 ], [ -95.745836097672395, 29.71240917419389 ], [ -95.744050096757107, 29.712665174481209 ], [ -95.744091096746189, 29.713030174329329 ], [ -95.744113097048739, 29.713222174391163 ], [ -95.744147096454995, 29.713466174764946 ], [ -95.744197096895348, 29.713730174697123 ], [ -95.744263096917351, 29.71399717469302 ], [ -95.744337096739287, 29.714234174641593 ], [ -95.744466097242025, 29.714559174698088 ], [ -95.744583097077864, 29.714819175148101 ], [ -95.744695096588515, 29.715030174943408 ], [ -95.744741097544036, 29.715105175539957 ], [ -95.744881097289507, 29.715335175561385 ], [ -95.744983097622296, 29.715485174956466 ], [ -95.745024097166976, 29.715545175563605 ], [ -95.745122097076305, 29.715687175424449 ], [ -95.745297097083935, 29.715902175027509 ], [ -95.745500097286708, 29.716127174873652 ], [ -95.745657097278695, 29.716290175119504 ], [ -95.745778097815361, 29.716405175322695 ], [ -95.745837097400809, 29.716460175747304 ], [ -95.746033097928503, 29.71662717558301 ], [ -95.746247097306224, 29.716789175120358 ], [ -95.746911097485594, 29.71726017590877 ], [ -95.748381098609201, 29.718294175512021 ], [ -95.749742098410564, 29.719251175763208 ], [ -95.750580098550643, 29.719837175796421 ], [ -95.75143809874298, 29.72044317561496 ], [ -95.751538099050364, 29.720514175944995 ], [ -95.752849099544903, 29.721429176378368 ], [ -95.7534880993326, 29.721881176010466 ], [ -95.753581099217101, 29.721954175780915 ], [ -95.753597099426628, 29.721963176059084 ], [ -95.753965099785759, 29.722252176570613 ], [ -95.754181099660514, 29.722428175929384 ], [ -95.754258099554789, 29.722502176581511 ], [ -95.754313100395009, 29.722554176078781 ], [ -95.75446210039604, 29.722716176124496 ], [ -95.754589100166754, 29.722879176465984 ], [ -95.754860099836904, 29.723284176042903 ], [ -95.755109100470392, 29.723681176769652 ], [ -95.755204100224717, 29.723854176363034 ], [ -95.755332100642292, 29.724120176393985 ], [ -95.755435100713498, 29.724367176891228 ], [ -95.755562100405811, 29.724723176506828 ], [ -95.755602099965571, 29.724855176675575 ], [ -95.755618100732391, 29.724926176359595 ], [ -95.755639099952674, 29.725019176729418 ], [ -95.75568910024883, 29.725290176579261 ], [ -95.755739100148332, 29.72567117652596 ], [ -95.755758100779474, 29.725958176637828 ], [ -95.755769100112403, 29.726708177232069 ], [ -95.755771100390007, 29.726837177416265 ], [ -95.755773100352428, 29.726988177249165 ], [ -95.755780100483804, 29.727438177266905 ], [ -95.755793100898131, 29.728876177701817 ], [ -95.755813100107105, 29.729971177373258 ], [ -95.755801100726387, 29.730098177650543 ], [ -95.755815100993559, 29.73045017789914 ], [ -95.755823100676309, 29.731442178518602 ], [ -95.75582610106116, 29.731822178538749 ], [ -95.755830100446133, 29.732314178422843 ], [ -95.755830100677699, 29.732427178571708 ], [ -95.755835100534554, 29.732932178174085 ], [ -95.755825100429419, 29.733266178843323 ], [ -95.755798100302712, 29.733557178402808 ], [ -95.755746100854637, 29.73387217882852 ], [ -95.755691100381028, 29.734115178599456 ], [ -95.755657100327142, 29.734239178277424 ], [ -95.755609100810261, 29.73439217835594 ], [ -95.755907100915195, 29.734463178740192 ], [ -95.756115101113608, 29.734504178865521 ], [ -95.756484101272093, 29.734564178772153 ], [ -95.756519101465372, 29.734568178884228 ], [ -95.756757101441409, 29.734596178698744 ], [ -95.757040100921188, 29.734619178547252 ], [ -95.757324101315049, 29.734630178686668 ], [ -95.7577461007875, 29.734636179091442 ], [ -95.758864101857455, 29.734628178907357 ], [ -95.759003101753123, 29.734626178518177 ], [ -95.759409101988041, 29.734621178551752 ], [ -95.760125102124775, 29.73461017831599 ], [ -95.760905102280049, 29.734607178746344 ], [ -95.76146710198563, 29.734597178297179 ], [ -95.761666101972423, 29.734594178652468 ], [ -95.761821101948172, 29.73459317856377 ], [ -95.762683102550511, 29.734590178514328 ], [ -95.763771102674596, 29.734579178553492 ], [ -95.763938102591837, 29.734579178031417 ], [ -95.764919103563415, 29.734570178272996 ], [ -95.765051102709251, 29.734574178036855 ], [ -95.765174103557413, 29.734567178137059 ], [ -95.765571102773279, 29.734561178589704 ], [ -95.766701103142609, 29.734553178011481 ], [ -95.766869103691164, 29.734566178033631 ], [ -95.766916103902801, 29.734570177998997 ], [ -95.767112103525903, 29.734576178750974 ], [ -95.76724010420979, 29.734571178594575 ], [ -95.767325103685778, 29.734567178738445 ], [ -95.767378103306228, 29.734563178398645 ], [ -95.767624103626574, 29.734544178393804 ], [ -95.767657104079504, 29.734540178290192 ], [ -95.767777104107637, 29.734524177962722 ], [ -95.767962103827529, 29.734500178297765 ], [ -95.768341104004406, 29.734432178376867 ], [ -95.768637104388716, 29.734365178341935 ], [ -95.768934104295013, 29.734282178218525 ], [ -95.769286104370181, 29.734167177752177 ], [ -95.769366104075743, 29.734137178094905 ], [ -95.770010104181182, 29.733899178292631 ], [ -95.770124104485419, 29.733862177968597 ], [ -95.770285103976548, 29.73379717796098 ], [ -95.77038910474765, 29.733763178422198 ], [ -95.770573104226401, 29.733721177959133 ], [ -95.770847104781382, 29.733676178463366 ], [ -95.771203104275301, 29.733634178239761 ], [ -95.771331104847775, 29.733620178167442 ], [ -95.771727105101974, 29.733581177711635 ], [ -95.771970104806869, 29.733569178250153 ], [ -95.77235210543904, 29.733565178327272 ], [ -95.772396105130667, 29.733564177794154 ], [ -95.772615104895252, 29.733560177991524 ], [ -95.772728105462406, 29.733558177895699 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1512, "Tract": "48157672801", "Area_SqMi": 1.7964891732727508, "total_2009": 208, "total_2010": 226, "total_2011": 270, "total_2012": 264, "total_2013": 296, "total_2014": 275, "total_2015": 308, "total_2016": 307, "total_2017": 325, "total_2018": 267, "total_2019": 292, "total_2020": 292, "age1": 49, "age2": 105, "age3": 63, "earn1": 58, "earn2": 96, "earn3": 63, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 1, "naics_s06": 4, "naics_s07": 32, "naics_s08": 0, "naics_s09": 7, "naics_s10": 13, "naics_s11": 7, "naics_s12": 33, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 32, "naics_s17": 0, "naics_s18": 53, "naics_s19": 10, "naics_s20": 0, "race1": 106, "race2": 32, "race3": 0, "race4": 73, "race5": 2, "race6": 4, "ethnicity1": 179, "ethnicity2": 38, "edu1": 23, "edu2": 36, "edu3": 42, "edu4": 67, "Shape_Length": 41665.89747502144, "Shape_Area": 50083043.428895012, "total_2021": 227, "total_2022": 217 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.683621077693687, 29.619207157355291 ], [ -95.683626076809929, 29.619157157442828 ], [ -95.683429076902769, 29.619178157745413 ], [ -95.682534077506617, 29.619385157295884 ], [ -95.682290076907989, 29.619508157437345 ], [ -95.681575076692496, 29.619595158162543 ], [ -95.681398076310543, 29.619672157672653 ], [ -95.681025076316345, 29.619569157894517 ], [ -95.68082407701047, 29.619568157439677 ], [ -95.680698076833124, 29.619651158058954 ], [ -95.680503076720299, 29.619649157796115 ], [ -95.680063076345576, 29.619594157626235 ], [ -95.679827076462715, 29.619623158085595 ], [ -95.679182076184745, 29.619524157873411 ], [ -95.678790075804898, 29.619266157474414 ], [ -95.678516076336891, 29.619004158160969 ], [ -95.678144076352936, 29.618481157459211 ], [ -95.678066075950852, 29.618372157560113 ], [ -95.677906076067288, 29.617934157129223 ], [ -95.67787607547298, 29.617444157542156 ], [ -95.677944075622904, 29.61694815769928 ], [ -95.678065076008494, 29.61669115753439 ], [ -95.678177075903903, 29.615630156785404 ], [ -95.67816107605266, 29.615352156777224 ], [ -95.678106075672787, 29.615218157155734 ], [ -95.677814075542443, 29.614966156893132 ], [ -95.677592075904556, 29.614880157348654 ], [ -95.677266075395195, 29.614893156837514 ], [ -95.676951075527825, 29.615055156864962 ], [ -95.676572075612484, 29.615181157429479 ], [ -95.676382074813375, 29.615314156917051 ], [ -95.676107075260617, 29.61557515702804 ], [ -95.675640075462468, 29.616223156903768 ], [ -95.675372075034147, 29.616795157264512 ], [ -95.675249074861298, 29.61695115715608 ], [ -95.67521207544749, 29.61699815754454 ], [ -95.675018075226745, 29.617383157595413 ], [ -95.674842075038001, 29.617843157368696 ], [ -95.674564074676425, 29.618867157554483 ], [ -95.674463074915252, 29.619568157871218 ], [ -95.674342074763089, 29.619832158421865 ], [ -95.674259074946889, 29.61993815839676 ], [ -95.674158074717113, 29.620068157750008 ], [ -95.674084074653081, 29.620129157763245 ], [ -95.674039075255834, 29.620167158358477 ], [ -95.673846074394717, 29.620228158320412 ], [ -95.673561075259471, 29.620230157965405 ], [ -95.673053074324827, 29.620368157756683 ], [ -95.672527074688546, 29.620416158196132 ], [ -95.672132074794106, 29.620364158191627 ], [ -95.671939074069783, 29.620235158177479 ], [ -95.671877074611785, 29.620141157997331 ], [ -95.67122107435415, 29.619723157739813 ], [ -95.670855073594865, 29.619434157659864 ], [ -95.670725073911683, 29.619251158163365 ], [ -95.670714074371176, 29.619073158378253 ], [ -95.670595074233873, 29.618806158301613 ], [ -95.670323073577492, 29.618448157791143 ], [ -95.669793074170599, 29.617394157571201 ], [ -95.669350073548685, 29.616923158016341 ], [ -95.668875073650511, 29.616708157940259 ], [ -95.667998072949288, 29.616522157220807 ], [ -95.667054073191693, 29.616447157369429 ], [ -95.666231072585376, 29.616449157865215 ], [ -95.66567607283271, 29.616574157590229 ], [ -95.664942072673853, 29.617090157636952 ], [ -95.664584072307775, 29.617155158132196 ], [ -95.6644460725838, 29.617267157624312 ], [ -95.663834072403915, 29.617989157853252 ], [ -95.663824072273243, 29.618166158397539 ], [ -95.663933071976402, 29.61832015797609 ], [ -95.663983072354227, 29.618747157990004 ], [ -95.664114072260219, 29.619087157890018 ], [ -95.664951072488847, 29.620690158372916 ], [ -95.665104072846603, 29.621062158405245 ], [ -95.665080072823031, 29.621345158869357 ], [ -95.664842073041228, 29.621633159162979 ], [ -95.664764073060567, 29.621832158841524 ], [ -95.664838072547397, 29.622057158865683 ], [ -95.664865072612074, 29.622139158854633 ], [ -95.665107072771789, 29.6223791592355 ], [ -95.665189072706596, 29.622542159000236 ], [ -95.66532007330143, 29.623606159080293 ], [ -95.665436072641313, 29.623908158873601 ], [ -95.665483073340212, 29.624872159578921 ], [ -95.665332072512612, 29.625719159248174 ], [ -95.665098073169233, 29.626368160013449 ], [ -95.664772073133776, 29.62694415994223 ], [ -95.664528073140076, 29.627183159762225 ], [ -95.664459072851884, 29.627313159836827 ], [ -95.664273072443365, 29.627397160103449 ], [ -95.664130072694206, 29.627568159691023 ], [ -95.664035073003717, 29.627842159714216 ], [ -95.664037072767158, 29.628236159687003 ], [ -95.664167072238584, 29.628831159821317 ], [ -95.664539073021672, 29.62984916032347 ], [ -95.664882072565007, 29.631263161058328 ], [ -95.664970073297042, 29.631756160390747 ], [ -95.664960073023693, 29.631886160532872 ], [ -95.664930072912298, 29.632253161066881 ], [ -95.664770073254687, 29.632695160820067 ], [ -95.664360073018756, 29.63322916078862 ], [ -95.663705072327005, 29.633763161124008 ], [ -95.663467072804991, 29.633903161220264 ], [ -95.662820073102978, 29.634127161212131 ], [ -95.661765072647739, 29.634187161194117 ], [ -95.660827072176531, 29.63402716152023 ], [ -95.660637072552646, 29.633994161277194 ], [ -95.658863072067518, 29.63346116124449 ], [ -95.658385071172233, 29.633450161159338 ], [ -95.658017071151392, 29.63348116169681 ], [ -95.657479070945982, 29.633590161323692 ], [ -95.656543070880616, 29.633779161634685 ], [ -95.65602507078647, 29.633884161847284 ], [ -95.653095070000276, 29.634253161692797 ], [ -95.651709070241481, 29.634389161685554 ], [ -95.651613069576797, 29.634398161888502 ], [ -95.651494069594676, 29.634410161900291 ], [ -95.65149506978895, 29.634495161538275 ], [ -95.651498070027586, 29.635472162455045 ], [ -95.651501069701013, 29.636277162297993 ], [ -95.651513070129525, 29.637223162363213 ], [ -95.651531069489451, 29.638577162241656 ], [ -95.651532070381265, 29.638808162268536 ], [ -95.651555070411845, 29.642560163317675 ], [ -95.651555069631527, 29.642572163757364 ], [ -95.651553069814057, 29.642751163823984 ], [ -95.651600070498731, 29.644356163854148 ], [ -95.651600070479077, 29.644400163411461 ], [ -95.651837069767254, 29.644402163944701 ], [ -95.651922070724481, 29.644403163745519 ], [ -95.652064070061215, 29.644405164090614 ], [ -95.654149070756304, 29.644396163989988 ], [ -95.654255070914232, 29.644395163492788 ], [ -95.655267071282637, 29.644386164025029 ], [ -95.655534070805615, 29.644383163373647 ], [ -95.656059071280438, 29.64439816366643 ], [ -95.656207071374396, 29.644414163973828 ], [ -95.656339071322122, 29.644441163699891 ], [ -95.656471071606319, 29.644472163749548 ], [ -95.656619071072612, 29.644520163547611 ], [ -95.656762071737433, 29.644578163996648 ], [ -95.656973071893859, 29.644678164136486 ], [ -95.657295071809699, 29.644853163478739 ], [ -95.657491071813197, 29.644948163989422 ], [ -95.657713071669576, 29.645032164135717 ], [ -95.657855072070376, 29.645080163461916 ], [ -95.657993072288576, 29.645112163872316 ], [ -95.658156071822447, 29.645127163611512 ], [ -95.658362071545923, 29.645139164052338 ], [ -95.66081307230084, 29.645188163527894 ], [ -95.661065072500648, 29.645198163553008 ], [ -95.661216072741254, 29.645216163831702 ], [ -95.661412072409178, 29.645247164047206 ], [ -95.661562072344637, 29.645289163293302 ], [ -95.661737073052805, 29.64535216361055 ], [ -95.661954073118963, 29.645456164091218 ], [ -95.66197707314052, 29.645425163814572 ], [ -95.662015072694629, 29.645367163648942 ], [ -95.662054072802746, 29.64528316389551 ], [ -95.662063072424345, 29.64525216377092 ], [ -95.662088072444448, 29.645123163732457 ], [ -95.662114072851054, 29.64490316325039 ], [ -95.66212307279838, 29.644725163152671 ], [ -95.66213707331552, 29.644645163177877 ], [ -95.662135073374827, 29.644555163842753 ], [ -95.662233072756393, 29.643433163057267 ], [ -95.662268072875776, 29.643083163100499 ], [ -95.662318072890159, 29.642607163053462 ], [ -95.662398073132465, 29.641833163101971 ], [ -95.662457073274609, 29.641265163176548 ], [ -95.662470072987816, 29.64118016287885 ], [ -95.66250107284587, 29.64106216277138 ], [ -95.662615073224984, 29.640804162385201 ], [ -95.66263107248939, 29.640770163103529 ], [ -95.662662073221966, 29.640732162848796 ], [ -95.66270607320827, 29.640651162408638 ], [ -95.662722072659022, 29.640607162911053 ], [ -95.662778072816863, 29.640518162910595 ], [ -95.662818072699167, 29.640471163057757 ], [ -95.662953072840594, 29.640261162392399 ], [ -95.662982072672918, 29.640204162415348 ], [ -95.663103072850049, 29.640029162143236 ], [ -95.663153072667555, 29.639970162855885 ], [ -95.663667073023504, 29.639231162058842 ], [ -95.663708072900462, 29.639160162540605 ], [ -95.663763073028349, 29.639091162002298 ], [ -95.663809072849759, 29.639023161957677 ], [ -95.663843072864736, 29.638956162565957 ], [ -95.663966072833915, 29.638769162206856 ], [ -95.663999072778083, 29.638695162342234 ], [ -95.664008073577875, 29.638675162418298 ], [ -95.66413707351127, 29.638405162302895 ], [ -95.664157073119341, 29.638339162401099 ], [ -95.664240073621841, 29.638133161909977 ], [ -95.664344072667873, 29.637839162213897 ], [ -95.664375072735623, 29.637765162055238 ], [ -95.664401073170552, 29.63768916162363 ], [ -95.664420073393941, 29.637613161831947 ], [ -95.66447107288927, 29.637456161605343 ], [ -95.664504072916529, 29.63737416162439 ], [ -95.664644073158826, 29.636956162291867 ], [ -95.664672073717355, 29.636883161436238 ], [ -95.664709072721593, 29.636818161864827 ], [ -95.66475807358583, 29.636763161917216 ], [ -95.664819072988408, 29.636720161721321 ], [ -95.664888073376147, 29.636689161835701 ], [ -95.665116073517225, 29.636626161434471 ], [ -95.666601073714403, 29.636250161598323 ], [ -95.667238073616929, 29.63609816136729 ], [ -95.667982073677848, 29.635907161358407 ], [ -95.668404074614855, 29.635784161265892 ], [ -95.669694074719516, 29.635386161266055 ], [ -95.670150074378725, 29.635239161480367 ], [ -95.670496074114126, 29.635120161699316 ], [ -95.670960074260833, 29.63494616118809 ], [ -95.671588074938981, 29.634696161336436 ], [ -95.672286074593586, 29.634405160651809 ], [ -95.672788074982748, 29.63419016095385 ], [ -95.673058075378179, 29.634071160754576 ], [ -95.673151074753193, 29.634030160963732 ], [ -95.673248075661874, 29.633987161069076 ], [ -95.674275075341072, 29.633533161128856 ], [ -95.674369075845561, 29.633498160776234 ], [ -95.674467075661468, 29.633471160425866 ], [ -95.674566075422348, 29.633454160678838 ], [ -95.674667075852625, 29.633444160793744 ], [ -95.675487075785441, 29.633422160985933 ], [ -95.676948076666989, 29.633384160602336 ], [ -95.679846076414861, 29.633374161064381 ], [ -95.682801077295977, 29.63334616029881 ], [ -95.682914078171891, 29.633352160940198 ], [ -95.683273077875029, 29.628692159977309 ], [ -95.683284077593456, 29.628566159790054 ], [ -95.683377077416864, 29.627533159332142 ], [ -95.683538077140199, 29.625322158452203 ], [ -95.683532077883072, 29.622541158241855 ], [ -95.68356607767582, 29.621397158502464 ], [ -95.683577077535787, 29.620988158324145 ], [ -95.683621077693687, 29.619207157355291 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1513, "Tract": "48157674302", "Area_SqMi": 1.9321294384102354, "total_2009": 1649, "total_2010": 1744, "total_2011": 2094, "total_2012": 2091, "total_2013": 2135, "total_2014": 2174, "total_2015": 2367, "total_2016": 2585, "total_2017": 2597, "total_2018": 2716, "total_2019": 2820, "total_2020": 2871, "age1": 999, "age2": 1476, "age3": 573, "earn1": 731, "earn2": 1282, "earn3": 1035, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 41, "naics_s05": 2, "naics_s06": 52, "naics_s07": 1239, "naics_s08": 6, "naics_s09": 0, "naics_s10": 137, "naics_s11": 127, "naics_s12": 228, "naics_s13": 0, "naics_s14": 103, "naics_s15": 14, "naics_s16": 675, "naics_s17": 36, "naics_s18": 317, "naics_s19": 71, "naics_s20": 0, "race1": 1771, "race2": 783, "race3": 26, "race4": 409, "race5": 2, "race6": 57, "ethnicity1": 2129, "ethnicity2": 919, "edu1": 429, "edu2": 511, "edu3": 597, "edu4": 512, "Shape_Length": 35506.374990783755, "Shape_Area": 53864461.870294154, "total_2021": 3032, "total_2022": 3048 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.586847049464609, 29.557629148130729 ], [ -95.586834050131543, 29.557388147780276 ], [ -95.58676504942575, 29.557085148545674 ], [ -95.58663904977503, 29.556711147876495 ], [ -95.586589050109467, 29.556629148379482 ], [ -95.586463050163502, 29.556596147898432 ], [ -95.586350049969667, 29.556591148441367 ], [ -95.586325049480763, 29.556574147694846 ], [ -95.586312050121052, 29.556519147936296 ], [ -95.58633104973751, 29.55634914807116 ], [ -95.586275049861257, 29.556305148087713 ], [ -95.586124050042827, 29.556134148276499 ], [ -95.585948049870851, 29.556002147714704 ], [ -95.58570804970995, 29.555848147903845 ], [ -95.585344049578609, 29.555689148066843 ], [ -95.58490404896807, 29.555546147631727 ], [ -95.584350049205597, 29.555442148191684 ], [ -95.583986048957499, 29.555393147550213 ], [ -95.583677048941084, 29.555404148294915 ], [ -95.582847048873802, 29.555360148220494 ], [ -95.582187048535033, 29.555299148176456 ], [ -95.581791048152525, 29.555223148208395 ], [ -95.581401048326384, 29.555041148139356 ], [ -95.581030048100828, 29.554832147459425 ], [ -95.580617047737817, 29.554555148258746 ], [ -95.580319048356642, 29.554354147558218 ], [ -95.580213048271645, 29.554233148117987 ], [ -95.579980047892604, 29.554052147372143 ], [ -95.579942047773812, 29.553986147587342 ], [ -95.579930048443885, 29.553931147383352 ], [ -95.579911048416989, 29.553898147484425 ], [ -95.579684047589481, 29.553783148061267 ], [ -95.579577047897686, 29.553656147766347 ], [ -95.57933804810061, 29.553442148021123 ], [ -95.579068047780765, 29.553128147426982 ], [ -95.578527047589191, 29.552557147378256 ], [ -95.578508047703593, 29.552430147378015 ], [ -95.578389047179115, 29.55235314716516 ], [ -95.578030047113984, 29.551940147284927 ], [ -95.577930047306111, 29.551826147004721 ], [ -95.577892047815723, 29.551754147456109 ], [ -95.577873047225907, 29.551666146937521 ], [ -95.577771047505223, 29.551551147540749 ], [ -95.577730046987028, 29.551594147370789 ], [ -95.577581046892561, 29.551741147593191 ], [ -95.577431047161937, 29.551890147650315 ], [ -95.577367047642696, 29.551952147442609 ], [ -95.575583046657073, 29.553460147665888 ], [ -95.575478046741296, 29.553369147403011 ], [ -95.575398046968203, 29.553304147680905 ], [ -95.574382046018243, 29.552500147504038 ], [ -95.574275045997595, 29.552464147655385 ], [ -95.574239045930824, 29.552441147988674 ], [ -95.573910046684716, 29.552231147466664 ], [ -95.573718045934342, 29.552148147435677 ], [ -95.573361046615247, 29.552065147145257 ], [ -95.573179045841272, 29.552034147892812 ], [ -95.572952046538376, 29.5520091478759 ], [ -95.572091045420507, 29.552020147180585 ], [ -95.571172045742202, 29.552038147860575 ], [ -95.56879504506675, 29.552066147395905 ], [ -95.568015044721392, 29.552075147741949 ], [ -95.567177044726947, 29.552085147771688 ], [ -95.565566044576116, 29.552110147738688 ], [ -95.563438043374589, 29.552144147486057 ], [ -95.562736043054286, 29.552138147855583 ], [ -95.562635043412214, 29.552137147545501 ], [ -95.560420042748234, 29.552121147838747 ], [ -95.55937904254796, 29.552107147783016 ], [ -95.558861042229282, 29.552196147873165 ], [ -95.558475042438118, 29.552352148088151 ], [ -95.558014041856353, 29.552656148249444 ], [ -95.557621041826607, 29.552944148243199 ], [ -95.557086041822458, 29.553337148140614 ], [ -95.556775042486436, 29.553565148814261 ], [ -95.555044041951859, 29.554836148869164 ], [ -95.555003041974956, 29.554863148498441 ], [ -95.555110041995505, 29.555004148817794 ], [ -95.556815042030621, 29.55694814890699 ], [ -95.556984042123418, 29.557177149141356 ], [ -95.56233604382092, 29.56327815040407 ], [ -95.562455043954174, 29.563403150415695 ], [ -95.563709043823479, 29.564820150532547 ], [ -95.5642570439568, 29.565467150862972 ], [ -95.564652044968781, 29.565932150847591 ], [ -95.564779044365793, 29.566076151139537 ], [ -95.567376045483641, 29.569032151203348 ], [ -95.567454045247899, 29.569120150794728 ], [ -95.568595046267745, 29.570428151099424 ], [ -95.569095045561141, 29.570962151641886 ], [ -95.569623045685404, 29.571468151886709 ], [ -95.570241045986037, 29.571891151696406 ], [ -95.571914046415486, 29.573022151764672 ], [ -95.572349046373304, 29.57335415165462 ], [ -95.572454046483628, 29.573443152322731 ], [ -95.573595046885401, 29.574219152177509 ], [ -95.574689047039783, 29.574964152065458 ], [ -95.57494004719193, 29.575150152504715 ], [ -95.575716047825381, 29.575692152366845 ], [ -95.57767204864183, 29.577030152103212 ], [ -95.579737049258384, 29.578404152845071 ], [ -95.580192049131981, 29.578725152482839 ], [ -95.580704049188995, 29.579087153100485 ], [ -95.58091904915095, 29.579239153316053 ], [ -95.582757049563611, 29.580534153133094 ], [ -95.5828330503589, 29.580587152716511 ], [ -95.58300805005085, 29.580409152867102 ], [ -95.583421049948754, 29.579959153115709 ], [ -95.583800050482481, 29.579472153094684 ], [ -95.584107050303558, 29.578974153118416 ], [ -95.584257050517877, 29.578692152589394 ], [ -95.584436050426177, 29.578230152299451 ], [ -95.584509050441994, 29.578082152589104 ], [ -95.584618050304911, 29.577697152160191 ], [ -95.584690049898725, 29.577162152710621 ], [ -95.584520049770092, 29.577108152026177 ], [ -95.584341050211947, 29.576983151984276 ], [ -95.583460050298484, 29.576376152497907 ], [ -95.581940049273484, 29.575328151727678 ], [ -95.581926049483698, 29.574777151918756 ], [ -95.581927048869318, 29.574762151790743 ], [ -95.58191104965104, 29.574176151639836 ], [ -95.581901049102768, 29.573809151817986 ], [ -95.581897049388147, 29.573645151894816 ], [ -95.581895049378687, 29.573575151883929 ], [ -95.581870049432439, 29.572579151908769 ], [ -95.581865049696432, 29.572401151400136 ], [ -95.581845048841586, 29.571658150992231 ], [ -95.581798049042177, 29.569946150577955 ], [ -95.581785049215412, 29.569449151097988 ], [ -95.581764049170246, 29.568708151096637 ], [ -95.581762048629059, 29.56862715026331 ], [ -95.581753048658058, 29.56827815020587 ], [ -95.581744048674921, 29.567978150156691 ], [ -95.581707048861077, 29.566752150114191 ], [ -95.581705048975991, 29.566708150238274 ], [ -95.581683048514108, 29.566026150092757 ], [ -95.581682048867364, 29.565739150491297 ], [ -95.581670049005922, 29.565418149892601 ], [ -95.581566048938654, 29.565385149566392 ], [ -95.581483048549387, 29.565349150213155 ], [ -95.581105048255395, 29.565095149683309 ], [ -95.580922049193035, 29.56497214955936 ], [ -95.580742048561177, 29.564850150156744 ], [ -95.580680048280541, 29.564283149432789 ], [ -95.580662048792391, 29.564112149339827 ], [ -95.580655048512966, 29.564039149923094 ], [ -95.580562048495153, 29.56388114957138 ], [ -95.580424048708679, 29.563644149347365 ], [ -95.580322048863138, 29.563469149921914 ], [ -95.580245047999114, 29.563337149780359 ], [ -95.580220048365263, 29.563294149483688 ], [ -95.580229048224041, 29.563020149979458 ], [ -95.580240048854506, 29.562682149617217 ], [ -95.580267048258548, 29.562611149691261 ], [ -95.580394048674293, 29.562272149192037 ], [ -95.580420048420237, 29.562201148947292 ], [ -95.580554048431821, 29.561946149391396 ], [ -95.580698048941528, 29.56176514929362 ], [ -95.580887048425353, 29.561600149226255 ], [ -95.58098804863468, 29.561589149071818 ], [ -95.581176049088739, 29.561644149684362 ], [ -95.581296048164774, 29.561704149153226 ], [ -95.581510048225923, 29.561963149383903 ], [ -95.581692048879063, 29.562100148946133 ], [ -95.581975048410101, 29.562149149338008 ], [ -95.582164048871107, 29.562100149518251 ], [ -95.582434049259803, 29.562006149211765 ], [ -95.582717048937681, 29.5617811495719 ], [ -95.583616049305604, 29.561193149428384 ], [ -95.584339049782145, 29.560687148571997 ], [ -95.584804049529495, 29.560219148713514 ], [ -95.585175049823178, 29.559713148780812 ], [ -95.585753050028657, 29.559257148962711 ], [ -95.58608004975838, 29.559048148893318 ], [ -95.586294049847552, 29.558790148386393 ], [ -95.586571049607173, 29.558388148192691 ], [ -95.58670905000416, 29.558146148435434 ], [ -95.586822049512747, 29.557844148701349 ], [ -95.586847049464609, 29.557629148130729 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1514, "Tract": "48157674402", "Area_SqMi": 2.8931233896364454, "total_2009": 91, "total_2010": 86, "total_2011": 37, "total_2012": 81, "total_2013": 54, "total_2014": 79, "total_2015": 66, "total_2016": 86, "total_2017": 95, "total_2018": 153, "total_2019": 160, "total_2020": 190, "age1": 68, "age2": 214, "age3": 71, "earn1": 79, "earn2": 128, "earn3": 146, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 11, "naics_s07": 80, "naics_s08": 18, "naics_s09": 0, "naics_s10": 8, "naics_s11": 22, "naics_s12": 56, "naics_s13": 0, "naics_s14": 48, "naics_s15": 1, "naics_s16": 53, "naics_s17": 0, "naics_s18": 13, "naics_s19": 37, "naics_s20": 0, "race1": 157, "race2": 35, "race3": 4, "race4": 154, "race5": 0, "race6": 3, "ethnicity1": 279, "ethnicity2": 74, "edu1": 50, "edu2": 60, "edu3": 63, "edu4": 112, "Shape_Length": 44476.710956450988, "Shape_Area": 80655328.472895414, "total_2021": 329, "total_2022": 353 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.63771906223387, 29.55067314541995 ], [ -95.637695062378469, 29.550066145041392 ], [ -95.637512062347881, 29.55001114479505 ], [ -95.637438062721117, 29.549979145339943 ], [ -95.637248062249824, 29.549907145060576 ], [ -95.637093061994122, 29.549858145122347 ], [ -95.637003061901737, 29.549824145326507 ], [ -95.636596062066459, 29.549648144801427 ], [ -95.636403061744019, 29.54958414476279 ], [ -95.636257062076879, 29.549517144782957 ], [ -95.635878062134111, 29.549375145191846 ], [ -95.635471061658407, 29.54919814458847 ], [ -95.634934061301337, 29.548942145020046 ], [ -95.634674061341329, 29.54881814495424 ], [ -95.634230061243969, 29.54862714515599 ], [ -95.634083061851342, 29.548569144986601 ], [ -95.633929061064407, 29.548509145044878 ], [ -95.633256061660205, 29.54823314490719 ], [ -95.632876060943872, 29.548093145025785 ], [ -95.632797061434005, 29.54807214492498 ], [ -95.632556060929943, 29.548022144663683 ], [ -95.632477060598958, 29.548002144489718 ], [ -95.631369061145747, 29.547608144838353 ], [ -95.630363060041631, 29.547189144536713 ], [ -95.629859060611736, 29.546942144399644 ], [ -95.629358059958307, 29.546624144687112 ], [ -95.628549059526662, 29.546065144153012 ], [ -95.627863059951878, 29.545392144486559 ], [ -95.627306059690113, 29.544811143925916 ], [ -95.626814059252368, 29.544232144380363 ], [ -95.626647059645762, 29.544026144490473 ], [ -95.62658405928947, 29.543933144040597 ], [ -95.626491059579962, 29.543813143773484 ], [ -95.62638705922484, 29.54370214427486 ], [ -95.626303059818284, 29.543622143754643 ], [ -95.626178059515681, 29.543435144083265 ], [ -95.6260160597013, 29.543226143565526 ], [ -95.625821059442089, 29.542950143581095 ], [ -95.625574059453072, 29.542617144306206 ], [ -95.625347059217034, 29.54219214419005 ], [ -95.6252630587163, 29.542068143842574 ], [ -95.625217059018937, 29.542008144083471 ], [ -95.625152059381392, 29.541905143316693 ], [ -95.625040059329152, 29.541754143513373 ], [ -95.625010058936553, 29.541686143786222 ], [ -95.624971059360604, 29.541623143273732 ], [ -95.624926059230276, 29.541562144115609 ], [ -95.624877059202674, 29.541504143693935 ], [ -95.624717059157561, 29.541339143995781 ], [ -95.624517059215393, 29.541110143301413 ], [ -95.624275059048315, 29.540863143537884 ], [ -95.623712058881082, 29.540336143261566 ], [ -95.623293058647306, 29.53998814358383 ], [ -95.622887058331642, 29.539629143404369 ], [ -95.622795058760346, 29.539557143542542 ], [ -95.622479058081026, 29.539324143391458 ], [ -95.62227505845793, 29.539146143733593 ], [ -95.621940057892246, 29.538878142809061 ], [ -95.62173705827945, 29.538698142872263 ], [ -95.621687057776796, 29.538664142826157 ], [ -95.621672058336372, 29.538654143306637 ], [ -95.621436057369166, 29.538509142721967 ], [ -95.621233057727437, 29.538367142951557 ], [ -95.621081057884808, 29.538261143429704 ], [ -95.620979057251432, 29.538195143101635 ], [ -95.620833058123409, 29.538100143077056 ], [ -95.620584057870929, 29.537938142983283 ], [ -95.620489057526299, 29.53786914274427 ], [ -95.61990605777585, 29.537358142838098 ], [ -95.619334057290516, 29.536838142590032 ], [ -95.61892405718703, 29.536482142508401 ], [ -95.618614057413211, 29.536245142965768 ], [ -95.618493057512907, 29.536146142734538 ], [ -95.61824805669913, 29.53590214234173 ], [ -95.618066056779725, 29.535756142670344 ], [ -95.617841056423117, 29.535545143099586 ], [ -95.6174490571386, 29.535126142878635 ], [ -95.617401056303933, 29.535068142166548 ], [ -95.61731305678201, 29.534945142633372 ], [ -95.617258056781665, 29.53480914291162 ], [ -95.617186056143154, 29.534680142800635 ], [ -95.617158056458777, 29.534626142247475 ], [ -95.616897056625248, 29.53412114284766 ], [ -95.616803056705336, 29.533921142259775 ], [ -95.616602056840861, 29.533565142365802 ], [ -95.616434056238546, 29.53319614218821 ], [ -95.616242056072792, 29.532720142318027 ], [ -95.616095056395494, 29.532232141961593 ], [ -95.615977056090102, 29.531774142334847 ], [ -95.615985055992994, 29.531704142238162 ], [ -95.61598705604726, 29.531631142381332 ], [ -95.615980055848041, 29.531523141533313 ], [ -95.615970055736341, 29.531452141516844 ], [ -95.615755055565486, 29.530533142036287 ], [ -95.615698056369169, 29.530103141242279 ], [ -95.615688056348006, 29.529887141397062 ], [ -95.615607056254007, 29.529132141035792 ], [ -95.615612056335365, 29.529024141494592 ], [ -95.615606055798423, 29.528916141488121 ], [ -95.615580055732252, 29.528774141051901 ], [ -95.615512055806903, 29.528529141658755 ], [ -95.615504055617066, 29.528385141637298 ], [ -95.615490055626594, 29.528241141365204 ], [ -95.615469055643374, 29.528098140941495 ], [ -95.615386055773158, 29.527819141172127 ], [ -95.615224055434425, 29.527448141353208 ], [ -95.615168055639103, 29.527274141019134 ], [ -95.615126055572844, 29.527172141139634 ], [ -95.61507405602184, 29.527074141399208 ], [ -95.614875055944751, 29.526801141310642 ], [ -95.614772055553118, 29.526688141301889 ], [ -95.614682056099866, 29.526613141193707 ], [ -95.614314055951496, 29.526382140896711 ], [ -95.614142055133314, 29.526282140560106 ], [ -95.614034055455321, 29.526229140514488 ], [ -95.613813054992377, 29.526132141191766 ], [ -95.613764055772975, 29.526113141098946 ], [ -95.61344705572192, 29.525877141259592 ], [ -95.612434054798143, 29.525630140491359 ], [ -95.611393054777267, 29.525868141193765 ], [ -95.611330054304673, 29.525896140765081 ], [ -95.611153054596613, 29.525903141344539 ], [ -95.611112055108507, 29.525909140990944 ], [ -95.611035054306527, 29.525933140571727 ], [ -95.610915054920596, 29.525961141071701 ], [ -95.610511054115634, 29.52603614063668 ], [ -95.610321054192667, 29.526105141163182 ], [ -95.610203054170881, 29.526137140876525 ], [ -95.610049054276828, 29.526189141413845 ], [ -95.60982605468611, 29.526283141368168 ], [ -95.609749053934735, 29.526310140672948 ], [ -95.609593054045348, 29.526356141429947 ], [ -95.60948905381332, 29.526415141268171 ], [ -95.609219054088356, 29.526581141527579 ], [ -95.609114054702346, 29.526637141467134 ], [ -95.608815053787609, 29.526760140862031 ], [ -95.608227054050118, 29.527021140963924 ], [ -95.608025054228122, 29.527147141204068 ], [ -95.607637053785865, 29.527416141334868 ], [ -95.607566053812306, 29.527468141088885 ], [ -95.607386053976512, 29.527603141264382 ], [ -95.607299053896071, 29.527680141193638 ], [ -95.606998053434566, 29.52797714185915 ], [ -95.606659053675202, 29.528341141564198 ], [ -95.606378053714963, 29.528604141548783 ], [ -95.605806053089793, 29.529173141517632 ], [ -95.605595053116247, 29.529346141551578 ], [ -95.605413053108677, 29.529542141796867 ], [ -95.605322052977058, 29.529615142125692 ], [ -95.604923053498837, 29.529873141667128 ], [ -95.604683052836137, 29.530012141610264 ], [ -95.604540053015441, 29.530082141841781 ], [ -95.604355053358262, 29.530163141972611 ], [ -95.604018053124292, 29.530299141738144 ], [ -95.603523053378865, 29.530478141960792 ], [ -95.603387052857812, 29.53052314172599 ], [ -95.603021053166117, 29.53064414198791 ], [ -95.602744052894408, 29.530715142266462 ], [ -95.602622053234256, 29.530733141831167 ], [ -95.602163052930791, 29.530774141957782 ], [ -95.602047052610345, 29.530784142426278 ], [ -95.601841052255153, 29.530794142575875 ], [ -95.601577052617088, 29.530787142282829 ], [ -95.60156505193558, 29.530830142512158 ], [ -95.601514052428129, 29.530825142476196 ], [ -95.601508051973696, 29.530857141916712 ], [ -95.601393051996808, 29.53139314206852 ], [ -95.601275052111873, 29.531925142853765 ], [ -95.600277051946733, 29.536094143732058 ], [ -95.600132052068886, 29.536645143783652 ], [ -95.600095052729927, 29.536785143780641 ], [ -95.599994052148304, 29.537229143380046 ], [ -95.599634052563601, 29.53872514374596 ], [ -95.599403052141028, 29.539552144495229 ], [ -95.599340052356737, 29.539804144245497 ], [ -95.599202051895105, 29.540361144214451 ], [ -95.599021052680555, 29.54116214473456 ], [ -95.598890051813214, 29.541727144822712 ], [ -95.59871505189129, 29.542395144852936 ], [ -95.598655052403899, 29.542508144702026 ], [ -95.598275052013165, 29.543220144902723 ], [ -95.597936051629915, 29.543893145165431 ], [ -95.597683051754643, 29.544393145227108 ], [ -95.597541052387299, 29.54467414480429 ], [ -95.597259051502334, 29.545221145180271 ], [ -95.596923052033844, 29.545882145290793 ], [ -95.596883051900733, 29.545958145960093 ], [ -95.59658205224315, 29.546565146050785 ], [ -95.596556052325397, 29.546616145401355 ], [ -95.596264052108523, 29.547174145397285 ], [ -95.595967051267365, 29.547755145461551 ], [ -95.595632051758159, 29.548393146370572 ], [ -95.595476051181464, 29.548703146396623 ], [ -95.595407051367829, 29.548832146421109 ], [ -95.595343051956476, 29.54895014662214 ], [ -95.59517505208872, 29.549262146178435 ], [ -95.59502005135549, 29.549541146669483 ], [ -95.594561051680344, 29.550493146467598 ], [ -95.594485051281168, 29.551493146872247 ], [ -95.594668051575184, 29.551491146576943 ], [ -95.596111052383307, 29.551472146272978 ], [ -95.596221051642601, 29.551471147000818 ], [ -95.596640051674157, 29.551465146879934 ], [ -95.596713052510992, 29.551464147011171 ], [ -95.596801052192163, 29.555677147707367 ], [ -95.596819052623076, 29.556525147327559 ], [ -95.596830052424849, 29.557060147458298 ], [ -95.60899305498485, 29.556743147437075 ], [ -95.608777055086023, 29.552865146497659 ], [ -95.608708055004769, 29.551625145962291 ], [ -95.608692055527115, 29.551249146014744 ], [ -95.618143058028409, 29.551176146159154 ], [ -95.618239057240245, 29.551175145714748 ], [ -95.618311058099593, 29.551170146120352 ], [ -95.618393057490437, 29.551165145691574 ], [ -95.618524057439345, 29.551157145463623 ], [ -95.619469057981505, 29.552467146225126 ], [ -95.619799057651775, 29.552877146445702 ], [ -95.620004058596976, 29.553038146394918 ], [ -95.620352057786192, 29.553323146356242 ], [ -95.620717058172502, 29.553564146306009 ], [ -95.621225058715979, 29.553795146413272 ], [ -95.622313059098119, 29.554223146440041 ], [ -95.622991058598473, 29.554393146281164 ], [ -95.624462059385536, 29.554660146010686 ], [ -95.6249260592447, 29.55471414611474 ], [ -95.625309059223952, 29.554732146283317 ], [ -95.628704060286267, 29.554716146343594 ], [ -95.629225060049279, 29.554735146426129 ], [ -95.629576060559543, 29.554729145822755 ], [ -95.629992060519626, 29.554685145991005 ], [ -95.630470060935323, 29.554612146038302 ], [ -95.630754061026565, 29.554540146428309 ], [ -95.631137060956505, 29.554407145943728 ], [ -95.631710060837221, 29.554207145967695 ], [ -95.63203806078964, 29.554079145656591 ], [ -95.632366061462832, 29.553979145750638 ], [ -95.632671061802029, 29.553890146004601 ], [ -95.633260061756346, 29.553801146177278 ], [ -95.635258062196385, 29.553759145627168 ], [ -95.636557061875919, 29.553820146174854 ], [ -95.636928062873722, 29.553874145729868 ], [ -95.637374062368352, 29.553891145774816 ], [ -95.637639062757742, 29.553944145905195 ], [ -95.63771906223387, 29.55067314541995 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1515, "Tract": "48157674507", "Area_SqMi": 3.6621958337003271, "total_2009": 140, "total_2010": 310, "total_2011": 739, "total_2012": 423, "total_2013": 483, "total_2014": 608, "total_2015": 774, "total_2016": 945, "total_2017": 1051, "total_2018": 1136, "total_2019": 1308, "total_2020": 1352, "age1": 677, "age2": 729, "age3": 288, "earn1": 683, "earn2": 642, "earn3": 369, "naics_s01": 6, "naics_s02": 36, "naics_s03": 0, "naics_s04": 41, "naics_s05": 28, "naics_s06": 32, "naics_s07": 509, "naics_s08": 14, "naics_s09": 0, "naics_s10": 41, "naics_s11": 29, "naics_s12": 56, "naics_s13": 0, "naics_s14": 9, "naics_s15": 192, "naics_s16": 372, "naics_s17": 34, "naics_s18": 233, "naics_s19": 62, "naics_s20": 0, "race1": 1045, "race2": 380, "race3": 14, "race4": 209, "race5": 5, "race6": 41, "ethnicity1": 1208, "ethnicity2": 486, "edu1": 204, "edu2": 259, "edu3": 299, "edu4": 255, "Shape_Length": 45550.854086072766, "Shape_Area": 102095751.93275331, "total_2021": 1442, "total_2022": 1694 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.563438043374589, 29.552144147486057 ], [ -95.563402043763247, 29.549907147801381 ], [ -95.563369043638204, 29.548320147469596 ], [ -95.563278042776474, 29.54392214603125 ], [ -95.563276043259393, 29.543835145882458 ], [ -95.56327204345898, 29.543657145830394 ], [ -95.563238043412952, 29.541844145814661 ], [ -95.563231043380483, 29.541612145758702 ], [ -95.563229043523179, 29.541547145432261 ], [ -95.563228043396549, 29.541490145892819 ], [ -95.563172043524318, 29.539639145741443 ], [ -95.563085043461541, 29.539562145697715 ], [ -95.562342042623612, 29.538869145565616 ], [ -95.562255043005422, 29.538837144897396 ], [ -95.562305042714442, 29.538781145178394 ], [ -95.562324042856389, 29.538749144770264 ], [ -95.562384042645036, 29.538615145085661 ], [ -95.562403042457689, 29.538545144920828 ], [ -95.562476042278988, 29.538082145355649 ], [ -95.562498042651271, 29.537795145285578 ], [ -95.562495042617854, 29.537477144695448 ], [ -95.56249404322466, 29.537185144608724 ], [ -95.562469042314305, 29.536758144935419 ], [ -95.562441042564103, 29.53625314500648 ], [ -95.562387042115802, 29.535107144786721 ], [ -95.562388042996844, 29.535036144710521 ], [ -95.5623000423506, 29.533533144190486 ], [ -95.562229042414657, 29.531671143364289 ], [ -95.562221042080083, 29.531540144041013 ], [ -95.562198042251069, 29.530860143629191 ], [ -95.562131042011146, 29.529232143224515 ], [ -95.562128042481291, 29.529159143671791 ], [ -95.562127042590788, 29.529129142904647 ], [ -95.56212404230223, 29.529066143139733 ], [ -95.562111042301069, 29.528751143413658 ], [ -95.562062041966641, 29.527751142508475 ], [ -95.56206304193968, 29.527680143200307 ], [ -95.562030041675001, 29.526965142898337 ], [ -95.562006041976645, 29.52652814276491 ], [ -95.561977041817485, 29.525966142660483 ], [ -95.561969041848187, 29.525742142516414 ], [ -95.56195304248952, 29.525288142136802 ], [ -95.561917041575256, 29.524824142014062 ], [ -95.561911041589639, 29.524710142506127 ], [ -95.561786041901982, 29.52461814250757 ], [ -95.559412040946057, 29.522058141681558 ], [ -95.557875041029092, 29.520436141243646 ], [ -95.556247040370792, 29.518691141570315 ], [ -95.55603004028238, 29.518856141453949 ], [ -95.555893040266483, 29.518984141596938 ], [ -95.555853039832201, 29.519042141496108 ], [ -95.555797040075774, 29.519124141128557 ], [ -95.555724040208503, 29.519264141063726 ], [ -95.555660039734306, 29.51940414175645 ], [ -95.555603040559703, 29.519552141799483 ], [ -95.555438040031405, 29.519539141442568 ], [ -95.555062039818864, 29.519527141313446 ], [ -95.554686040174559, 29.519508141690284 ], [ -95.554443039997167, 29.519483141634471 ], [ -95.55447603978574, 29.519266141207854 ], [ -95.554503039983118, 29.519114141308918 ], [ -95.554523040046732, 29.518932141058965 ], [ -95.554531039725404, 29.518808141682459 ], [ -95.554529040387465, 29.518547141731268 ], [ -95.554490040074953, 29.518196140821647 ], [ -95.554460040023642, 29.518045141411697 ], [ -95.554421039927476, 29.51789514125436 ], [ -95.554375040261391, 29.517747141521774 ], [ -95.554321040014159, 29.517601140775447 ], [ -95.554259040187205, 29.517457140836328 ], [ -95.554189040165383, 29.517316140940039 ], [ -95.554113039397777, 29.517179141329617 ], [ -95.554028040156425, 29.517044141111629 ], [ -95.553937039856351, 29.516912140979674 ], [ -95.553839039186713, 29.51678514076556 ], [ -95.553734039839966, 29.516662141234328 ], [ -95.553609039420081, 29.516529140606277 ], [ -95.553506039559636, 29.516429141187391 ], [ -95.553383039669185, 29.516319140668244 ], [ -95.553254039820175, 29.516215140672859 ], [ -95.553119039663287, 29.516116141009025 ], [ -95.55298003964603, 29.516023141056067 ], [ -95.552836039702541, 29.515936141189837 ], [ -95.552687039479466, 29.515854141219162 ], [ -95.552534039696368, 29.515779141092633 ], [ -95.55237703896168, 29.515710140594816 ], [ -95.552217039306896, 29.515647141185582 ], [ -95.552054039042474, 29.51559114117283 ], [ -95.551888038838086, 29.51554114039692 ], [ -95.551719039270694, 29.515499141001573 ], [ -95.55150603869626, 29.515455140571664 ], [ -95.551347039253272, 29.515430140649762 ], [ -95.55118603871783, 29.51541114045893 ], [ -95.551026039205297, 29.515398140725871 ], [ -95.550864038544717, 29.515391140716773 ], [ -95.550703038850401, 29.515390141165529 ], [ -95.550541039029611, 29.515395140986882 ], [ -95.550380039087145, 29.515406141241854 ], [ -95.550220038310997, 29.515424141180922 ], [ -95.549544038432202, 29.515509140885715 ], [ -95.549391037978467, 29.515525140572212 ], [ -95.549239037991413, 29.515536140702444 ], [ -95.54908603842712, 29.515542141097811 ], [ -95.548932038003073, 29.515542140650975 ], [ -95.548779038115995, 29.515537140649034 ], [ -95.548586037950898, 29.515519140852799 ], [ -95.548269038640711, 29.515515141192555 ], [ -95.547137037991206, 29.515015141023426 ], [ -95.545834037953995, 29.514440140766414 ], [ -95.545266037258543, 29.514210141149672 ], [ -95.544602036874238, 29.514053140409434 ], [ -95.543732037054255, 29.513908140492621 ], [ -95.542705036388497, 29.513896140703924 ], [ -95.542198036820977, 29.513825141082034 ], [ -95.540893035713253, 29.513522140975375 ], [ -95.539202036235366, 29.513159140466609 ], [ -95.538115035422209, 29.513183141178974 ], [ -95.537570035240464, 29.513195140448985 ], [ -95.537167035057038, 29.513212140508916 ], [ -95.536863035045755, 29.513249140546009 ], [ -95.536280035300379, 29.513326140589598 ], [ -95.535811035261659, 29.513429140798674 ], [ -95.535643035175553, 29.513475141026603 ], [ -95.535498035177767, 29.513514141115358 ], [ -95.534959034922892, 29.513670141201271 ], [ -95.533526034433379, 29.514083141157158 ], [ -95.533344034611645, 29.514147141454686 ], [ -95.532970034309315, 29.514210141562991 ], [ -95.53260803371117, 29.514217140785227 ], [ -95.532175034134113, 29.514217140968146 ], [ -95.531846034095452, 29.51416514100967 ], [ -95.531248033893888, 29.514072141342695 ], [ -95.530525034023512, 29.513935141135953 ], [ -95.530016033417112, 29.513852141294752 ], [ -95.529508033146968, 29.513791141284781 ], [ -95.529048032775549, 29.513777140954346 ], [ -95.529001032672909, 29.513777140923974 ], [ -95.528836033470995, 29.513801140912655 ], [ -95.528571033516045, 29.513860141327086 ], [ -95.527874032904023, 29.514082141003936 ], [ -95.528254033187267, 29.514859141227817 ], [ -95.52923403357812, 29.516866141936394 ], [ -95.53065003413279, 29.519707142591539 ], [ -95.531368033614598, 29.521168142761159 ], [ -95.53184603418903, 29.522166142658332 ], [ -95.532122034805113, 29.522743142752468 ], [ -95.532278034190327, 29.523070142531868 ], [ -95.532409034075712, 29.523344142650814 ], [ -95.533090035055451, 29.524768143678472 ], [ -95.533134034483325, 29.524860143118079 ], [ -95.534641035182517, 29.527910143767343 ], [ -95.534777034938386, 29.528467144037659 ], [ -95.534796034964401, 29.528623143760093 ], [ -95.53487103540769, 29.529229144308331 ], [ -95.534573034868359, 29.530475144411618 ], [ -95.534372035556288, 29.531343144910803 ], [ -95.534363035619094, 29.531477144439894 ], [ -95.534324034835436, 29.532074144467856 ], [ -95.534479035494073, 29.532615145072391 ], [ -95.534791035623627, 29.533340144693696 ], [ -95.534995035284723, 29.534026145142402 ], [ -95.535017035386559, 29.534634145374291 ], [ -95.535030036139005, 29.535096145166531 ], [ -95.535146036139125, 29.536682145619359 ], [ -95.535148035409662, 29.536905146126205 ], [ -95.535133035760694, 29.537176145564462 ], [ -95.535114035940126, 29.537352145559517 ], [ -95.535054035528844, 29.537674146275322 ], [ -95.534987035728207, 29.537899146195137 ], [ -95.534905036042431, 29.538155146126151 ], [ -95.534728035304838, 29.538614145768197 ], [ -95.534507035761081, 29.539160145759173 ], [ -95.536369035821693, 29.539771146130818 ], [ -95.538039036125852, 29.540052146427861 ], [ -95.539255037255359, 29.540104146267772 ], [ -95.540682037476046, 29.540121146387996 ], [ -95.540753037791532, 29.540117145762135 ], [ -95.540825037553233, 29.540114145846008 ], [ -95.540966037033414, 29.540107145749527 ], [ -95.541811038021038, 29.540064145924756 ], [ -95.542030037388216, 29.540053145794943 ], [ -95.542921037677417, 29.540113145884757 ], [ -95.544063037923934, 29.540399145892806 ], [ -95.544936038519552, 29.540850146285358 ], [ -95.545490038891614, 29.541263146133701 ], [ -95.545582038864993, 29.541331146598466 ], [ -95.546093039138114, 29.541858146317335 ], [ -95.546736038715267, 29.542700146157699 ], [ -95.546833039236276, 29.542843146197761 ], [ -95.547691039658147, 29.544202147158654 ], [ -95.548689039361676, 29.545788146953775 ], [ -95.548731039243222, 29.545853147477729 ], [ -95.548778040139737, 29.545929147050735 ], [ -95.54991404029191, 29.547733147638034 ], [ -95.550592039878367, 29.548810147894333 ], [ -95.551255040738241, 29.55007314803623 ], [ -95.552636041150095, 29.552230148656747 ], [ -95.553296041619959, 29.552943148011327 ], [ -95.553731041678148, 29.553415148275199 ], [ -95.554232040925854, 29.553956148917958 ], [ -95.555003041974956, 29.554863148498441 ], [ -95.555044041951859, 29.554836148869164 ], [ -95.556775042486436, 29.553565148814261 ], [ -95.557086041822458, 29.553337148140614 ], [ -95.557621041826607, 29.552944148243199 ], [ -95.558014041856353, 29.552656148249444 ], [ -95.558475042438118, 29.552352148088151 ], [ -95.558861042229282, 29.552196147873165 ], [ -95.55937904254796, 29.552107147783016 ], [ -95.560420042748234, 29.552121147838747 ], [ -95.562635043412214, 29.552137147545501 ], [ -95.562736043054286, 29.552138147855583 ], [ -95.563438043374589, 29.552144147486057 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1516, "Tract": "48157673401", "Area_SqMi": 10.406064425583926, "total_2009": 587, "total_2010": 570, "total_2011": 647, "total_2012": 719, "total_2013": 713, "total_2014": 796, "total_2015": 782, "total_2016": 732, "total_2017": 777, "total_2018": 844, "total_2019": 886, "total_2020": 788, "age1": 267, "age2": 459, "age3": 242, "earn1": 275, "earn2": 354, "earn3": 339, "naics_s01": 0, "naics_s02": 5, "naics_s03": 4, "naics_s04": 78, "naics_s05": 14, "naics_s06": 83, "naics_s07": 165, "naics_s08": 68, "naics_s09": 0, "naics_s10": 53, "naics_s11": 7, "naics_s12": 101, "naics_s13": 42, "naics_s14": 44, "naics_s15": 22, "naics_s16": 57, "naics_s17": 31, "naics_s18": 123, "naics_s19": 71, "naics_s20": 0, "race1": 772, "race2": 130, "race3": 2, "race4": 45, "race5": 2, "race6": 17, "ethnicity1": 640, "ethnicity2": 328, "edu1": 148, "edu2": 187, "edu3": 199, "edu4": 167, "Shape_Length": 107887.4304881493, "Shape_Area": 290103266.02801812, "total_2021": 933, "total_2022": 968 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.811770110946426, 29.631680156150473 ], [ -95.811662110314231, 29.624732154057046 ], [ -95.811631109528236, 29.62140715338116 ], [ -95.811544109666329, 29.61524215214984 ], [ -95.811529110046791, 29.61415115212694 ], [ -95.811490109986281, 29.611963151954278 ], [ -95.811430109513552, 29.608665150762977 ], [ -95.811421109690215, 29.608165150910562 ], [ -95.811335108685142, 29.603079150360749 ], [ -95.811289108872515, 29.600948149283443 ], [ -95.811269108850425, 29.599955149300175 ], [ -95.811334108579743, 29.599384149541446 ], [ -95.811334109388241, 29.598504149096136 ], [ -95.811311108560247, 29.595688148241699 ], [ -95.811301108885587, 29.594726147989302 ], [ -95.811332108405793, 29.592898147736868 ], [ -95.811312108419372, 29.592315148263953 ], [ -95.811310108256237, 29.591564147870741 ], [ -95.811289108497633, 29.590490147277151 ], [ -95.811250108690047, 29.588493147024867 ], [ -95.811246108227877, 29.588283146893584 ], [ -95.811196108486229, 29.58571814622001 ], [ -95.811192108670767, 29.58545514667545 ], [ -95.81110110816779, 29.582208145640788 ], [ -95.811082107914061, 29.580989145690289 ], [ -95.81107210776473, 29.580349145813031 ], [ -95.811063108184584, 29.579742145588895 ], [ -95.811034107611647, 29.578401144610318 ], [ -95.811026108156256, 29.57806014509444 ], [ -95.810989108207792, 29.5762131442746 ], [ -95.810970107688505, 29.575015144516325 ], [ -95.810924107406535, 29.57211714367919 ], [ -95.810824107328656, 29.57048414353887 ], [ -95.810763107834021, 29.569976143186604 ], [ -95.810739107872323, 29.569777142830798 ], [ -95.810571107214187, 29.568688142802703 ], [ -95.810491107326584, 29.567922142496261 ], [ -95.810479107127662, 29.567803143129598 ], [ -95.810462107613674, 29.567536142560648 ], [ -95.810433107818866, 29.567066142884478 ], [ -95.810429106991734, 29.567003142700546 ], [ -95.810237106894135, 29.567130142761663 ], [ -95.810147107616274, 29.567204142371295 ], [ -95.810111107307051, 29.567220142723304 ], [ -95.810034106718334, 29.567246142730554 ], [ -95.809790107373104, 29.567282142658332 ], [ -95.809551107510686, 29.567338143222795 ], [ -95.809300106808791, 29.567424142384084 ], [ -95.809012106560814, 29.567522143107141 ], [ -95.808351106478881, 29.567727142472883 ], [ -95.807604106465575, 29.56793514325221 ], [ -95.807482106786551, 29.567956143168065 ], [ -95.807437106340146, 29.567961142675994 ], [ -95.807197106182286, 29.567993142757143 ], [ -95.806900106755592, 29.568022143367372 ], [ -95.8067751062121, 29.568032143081219 ], [ -95.806542106359913, 29.568051142732305 ], [ -95.806211105990556, 29.568078143043945 ], [ -95.805630106438741, 29.568097142785327 ], [ -95.805368106430265, 29.56810514264399 ], [ -95.805304106335058, 29.568108143247901 ], [ -95.80472710547285, 29.568144143220803 ], [ -95.804356106187299, 29.56815014356647 ], [ -95.804246106280047, 29.568153143050846 ], [ -95.803523105945501, 29.5681771430236 ], [ -95.803220105026298, 29.568202143328595 ], [ -95.802947105831464, 29.568225143245595 ], [ -95.802138105405874, 29.56834614353291 ], [ -95.802093104873009, 29.568353143245801 ], [ -95.801446104806274, 29.568467143481556 ], [ -95.801295105129881, 29.568524143591837 ], [ -95.801178105391301, 29.568559143176987 ], [ -95.801059105147957, 29.56858914308015 ], [ -95.80067410472266, 29.568799143602764 ], [ -95.800528104727746, 29.568868143553139 ], [ -95.80041610455423, 29.568913142985558 ], [ -95.800012104365976, 29.569117143277136 ], [ -95.799916105149947, 29.569166143705782 ], [ -95.799755104402323, 29.569261143826505 ], [ -95.799404104409433, 29.569471143777857 ], [ -95.798684104240877, 29.569954143989232 ], [ -95.798514104394258, 29.57005614365195 ], [ -95.798370104823377, 29.570126144153456 ], [ -95.798319104548298, 29.570153143517071 ], [ -95.798265104392627, 29.570184143639466 ], [ -95.798232104646175, 29.57020614375244 ], [ -95.798148104298974, 29.570285144201641 ], [ -95.798056103921141, 29.570358143862972 ], [ -95.797801103808709, 29.570541143609848 ], [ -95.797518104503226, 29.570751143889705 ], [ -95.797382104129255, 29.570833143774433 ], [ -95.797022104532417, 29.571020143810681 ], [ -95.796857103646104, 29.571128144370288 ], [ -95.796621104237005, 29.571274143943079 ], [ -95.795951104132229, 29.571629144471718 ], [ -95.795770103653027, 29.571716143861916 ], [ -95.795659103343922, 29.571765143886097 ], [ -95.795544103902557, 29.571803144439475 ], [ -95.795343103280956, 29.571847143786151 ], [ -95.795231103582651, 29.571892144407862 ], [ -95.79458210368017, 29.572209144055318 ], [ -95.794416102953875, 29.572274144297339 ], [ -95.791686103057245, 29.573352144945346 ], [ -95.791080103024498, 29.573560144316758 ], [ -95.790956103052267, 29.573603144881972 ], [ -95.790878102871091, 29.573625144893164 ], [ -95.790758102398357, 29.573652144923315 ], [ -95.790530102901315, 29.573737144986563 ], [ -95.789971102768035, 29.573970144947879 ], [ -95.789688102756315, 29.574119144885454 ], [ -95.789504102507365, 29.574200144641377 ], [ -95.789428102682933, 29.574229144673307 ], [ -95.789159102697027, 29.574319145326271 ], [ -95.788683101748546, 29.574536145135902 ], [ -95.788458101980041, 29.574640145190756 ], [ -95.78814310154452, 29.574810144637528 ], [ -95.787861102379694, 29.574963145364471 ], [ -95.786721101300103, 29.575614144896068 ], [ -95.786177101592742, 29.575942145092238 ], [ -95.786107101193338, 29.575979145591667 ], [ -95.785922101731984, 29.576059145314009 ], [ -95.785754101259016, 29.576218145728078 ], [ -95.785506101164742, 29.57640914544444 ], [ -95.78534210179663, 29.576518145507396 ], [ -95.784151101279448, 29.577410145331143 ], [ -95.783129100450466, 29.578198145558783 ], [ -95.781940100210463, 29.579146146443652 ], [ -95.781781100744084, 29.579261145803141 ], [ -95.781179100189874, 29.579755145953825 ], [ -95.780835100125543, 29.580066146754085 ], [ -95.780678099928608, 29.58023314655944 ], [ -95.780630100678593, 29.58029214608807 ], [ -95.780564099918621, 29.580384146087237 ], [ -95.780400100518023, 29.580634146744945 ], [ -95.780333100454442, 29.580766146321238 ], [ -95.780277100272002, 29.58090114646042 ], [ -95.780192100243568, 29.581066146450176 ], [ -95.780133100438377, 29.581200146436945 ], [ -95.780093099861062, 29.581340146696778 ], [ -95.780053100420758, 29.581554146925022 ], [ -95.780023100585922, 29.581659147113776 ], [ -95.779986100474602, 29.581762146474745 ], [ -95.780007100534107, 29.581869146969339 ], [ -95.780038100276016, 29.581973146879555 ], [ -95.780082099763149, 29.582150146342908 ], [ -95.780090099926468, 29.582171146889433 ], [ -95.780175099834096, 29.582389147038739 ], [ -95.780214100727264, 29.582452146869421 ], [ -95.780369100811015, 29.582665147019711 ], [ -95.780468100012243, 29.58278114728785 ], [ -95.780636100441214, 29.582940146982338 ], [ -95.780726100846621, 29.583014146649493 ], [ -95.780821100444371, 29.583084147030252 ], [ -95.781053100131203, 29.583234147414394 ], [ -95.78112210052052, 29.58327314715531 ], [ -95.781268100906189, 29.583342146794234 ], [ -95.781649100581404, 29.583454146980326 ], [ -95.781725100622168, 29.583481146669634 ], [ -95.781907100741464, 29.583567146822528 ], [ -95.782246100795859, 29.583699146799137 ], [ -95.782401100874281, 29.583750146905437 ], [ -95.782600101115037, 29.583796146795564 ], [ -95.782805100900248, 29.583818146668797 ], [ -95.783130101570592, 29.583870146602198 ], [ -95.783209100941306, 29.583889147291035 ], [ -95.783404101031692, 29.58394814669461 ], [ -95.783480100853396, 29.583977147355153 ], [ -95.783588101421785, 29.584030147083745 ], [ -95.783683100771128, 29.584100147145737 ], [ -95.78375310173746, 29.584136146690085 ], [ -95.784051101759474, 29.584262146679738 ], [ -95.784242101700983, 29.584331147095234 ], [ -95.784352101586975, 29.584379146835172 ], [ -95.784775101449171, 29.584605147477486 ], [ -95.78511910136956, 29.584804147370548 ], [ -95.785183101252073, 29.584849147185299 ], [ -95.785307101891163, 29.584945146858363 ], [ -95.785827102150435, 29.585300146835856 ], [ -95.786353101658861, 29.585706147400156 ], [ -95.786669102427126, 29.585991147405373 ], [ -95.787396101905316, 29.586681147835428 ], [ -95.788223102090541, 29.587534147551896 ], [ -95.788505103122716, 29.58789014732762 ], [ -95.788785102408454, 29.588368147682857 ], [ -95.788870103173579, 29.588532148149003 ], [ -95.789043103307591, 29.588938147792085 ], [ -95.789324102429006, 29.589539147912511 ], [ -95.789523103075268, 29.590013147971977 ], [ -95.789692103560199, 29.590645148191491 ], [ -95.789728102754893, 29.590823148517153 ], [ -95.789754103548361, 29.591110148239537 ], [ -95.789775102888171, 29.591507148201337 ], [ -95.789774102731272, 29.591723148669995 ], [ -95.789793103325607, 29.592119148351436 ], [ -95.789820103510124, 29.592262148737785 ], [ -95.789853102835309, 29.592403148465355 ], [ -95.789871103308343, 29.592619149004033 ], [ -95.789885103571137, 29.592726148204726 ], [ -95.789991102836296, 29.593369148617988 ], [ -95.790170103824551, 29.59407314859833 ], [ -95.790224103785576, 29.594254149322797 ], [ -95.790274103446905, 29.594422148522447 ], [ -95.790559102995985, 29.595288149423951 ], [ -95.790611103561346, 29.595455149407023 ], [ -95.790668103194562, 29.59563614961036 ], [ -95.790699103090546, 29.595792149305517 ], [ -95.790719103772076, 29.595885149265985 ], [ -95.790729103056719, 29.595956149195914 ], [ -95.790727103937925, 29.596209149571692 ], [ -95.790738103129442, 29.596497149014873 ], [ -95.790755103346712, 29.596713149545486 ], [ -95.790783103296135, 29.596928149366931 ], [ -95.790805103142162, 29.597064149698859 ], [ -95.790824103835405, 29.59717814919161 ], [ -95.790868103582483, 29.597573149244976 ], [ -95.790869103294114, 29.597933149923609 ], [ -95.790770103372765, 29.598795149513979 ], [ -95.790731103961662, 29.598972149784238 ], [ -95.790602103672754, 29.599352149508903 ], [ -95.7905631034522, 29.599447150411223 ], [ -95.790469103956653, 29.599648150265992 ], [ -95.790295103777879, 29.599975150294597 ], [ -95.790055103746425, 29.60035314988086 ], [ -95.789987103643597, 29.600444150382117 ], [ -95.789935103597372, 29.600500149781983 ], [ -95.789796103039265, 29.600633150035371 ], [ -95.789591103377418, 29.600811150088013 ], [ -95.789398103211454, 29.600999150763226 ], [ -95.789298103329031, 29.60106315050103 ], [ -95.789091102877734, 29.601181150532678 ], [ -95.788495103409517, 29.601431150094033 ], [ -95.788155103564975, 29.601584150929991 ], [ -95.787945103415012, 29.601679150957427 ], [ -95.787803102735822, 29.601754150455616 ], [ -95.787286103048672, 29.602051150212976 ], [ -95.787258102595416, 29.602076150743159 ], [ -95.78712810269802, 29.602342150835906 ], [ -95.786966102816152, 29.602789150576982 ], [ -95.786908102886002, 29.602924150899749 ], [ -95.786858102359488, 29.603061151234023 ], [ -95.786734103236668, 29.603329150814485 ], [ -95.786589102383203, 29.603588150515822 ], [ -95.786384102479317, 29.60385915059873 ], [ -95.786312102460087, 29.603988151426019 ], [ -95.786228103231991, 29.604153150663105 ], [ -95.786113102992232, 29.604345151362811 ], [ -95.785844102726955, 29.604708151501121 ], [ -95.785554102265763, 29.605145151504892 ], [ -95.785519103001448, 29.605211151512322 ], [ -95.785449102269666, 29.605380151175236 ], [ -95.785353102398091, 29.605580151732926 ], [ -95.785298102907547, 29.605677151423642 ], [ -95.78525510290541, 29.605738151837233 ], [ -95.785119102357328, 29.605896151321012 ], [ -95.78495910292105, 29.606085151755071 ], [ -95.78464010265489, 29.606417151157089 ], [ -95.784458102714723, 29.606613151862948 ], [ -95.784286102380051, 29.606769151667969 ], [ -95.783891102634968, 29.607185151779476 ], [ -95.78369910178688, 29.607374151459275 ], [ -95.783512102604718, 29.60756715232742 ], [ -95.78342910262586, 29.607647151765235 ], [ -95.783224102264057, 29.607825152290609 ], [ -95.782826102143659, 29.608139151967396 ], [ -95.782558102317708, 29.608365151982944 ], [ -95.782462101599521, 29.60843315214289 ], [ -95.782214102335743, 29.608592152534907 ], [ -95.782196101938112, 29.608604152169011 ], [ -95.782168101969106, 29.608620151771238 ], [ -95.781988102091688, 29.608723151925542 ], [ -95.781760102166103, 29.608879152039886 ], [ -95.781460101251071, 29.609071152483502 ], [ -95.780899101865458, 29.609376152038507 ], [ -95.78069810148601, 29.609502152793979 ], [ -95.780523102050438, 29.609597152376679 ], [ -95.780351101323134, 29.609697152137016 ], [ -95.780182101880825, 29.609801152058349 ], [ -95.779932101440167, 29.609928152344065 ], [ -95.779702101074065, 29.610008152698484 ], [ -95.779464101718702, 29.610068152384589 ], [ -95.779225101768162, 29.610123152387963 ], [ -95.779063101599618, 29.610154152131905 ], [ -95.778903101459264, 29.610190152444623 ], [ -95.778661101031815, 29.610234152237616 ], [ -95.778457101189105, 29.610262152548113 ], [ -95.778374100594291, 29.610269152238029 ], [ -95.778251101462203, 29.610273152496433 ], [ -95.778044100601974, 29.610273152295427 ], [ -95.777508100599277, 29.61024715292934 ], [ -95.777220100539466, 29.610223152611219 ], [ -95.776730100366308, 29.610160152608305 ], [ -95.776161100483222, 29.610075152600245 ], [ -95.776128100109958, 29.610063152488554 ], [ -95.776009099917871, 29.61001915238818 ], [ -95.775931100302728, 29.609994152603946 ], [ -95.775573100161708, 29.609908152318095 ], [ -95.77549110045247, 29.609897152833657 ], [ -95.775122100338237, 29.609863152752986 ], [ -95.775029100264149, 29.609832152290281 ], [ -95.774950100315905, 29.609812152642174 ], [ -95.774747100120848, 29.609781152449038 ], [ -95.774388099526959, 29.609697152996009 ], [ -95.773875099380248, 29.609558152319909 ], [ -95.772940099306368, 29.609271152807061 ], [ -95.772271099888741, 29.609085152797348 ], [ -95.772032099346035, 29.609027152101934 ], [ -95.771792099216441, 29.608974152591465 ], [ -95.77163109882629, 29.60894315270971 ], [ -95.771351099378663, 29.608880152145112 ], [ -95.771310098778685, 29.608875152481378 ], [ -95.770497098623551, 29.609002152825322 ], [ -95.770251098965389, 29.609027152877733 ], [ -95.770003098539149, 29.609032152867474 ], [ -95.769826098636727, 29.609029152589351 ], [ -95.769715098840237, 29.609028152579725 ], [ -95.769427098741957, 29.609005152599909 ], [ -95.769052098203062, 29.609034152797836 ], [ -95.768681098888791, 29.609055153059806 ], [ -95.768557098120283, 29.609055152314962 ], [ -95.768310098792526, 29.609040152525743 ], [ -95.7682290979062, 29.609052152262315 ], [ -95.768105098251667, 29.609063153056159 ], [ -95.768023098093011, 29.609066152963852 ], [ -95.767899098818461, 29.60906215307697 ], [ -95.767694097759986, 29.609084152874932 ], [ -95.767240097741194, 29.609097152492453 ], [ -95.766993097718128, 29.609113153158859 ], [ -95.765644098054665, 29.609278153177421 ], [ -95.764587097914827, 29.609446152572925 ], [ -95.764345097419735, 29.609490152767908 ], [ -95.764141097212516, 29.609520153163231 ], [ -95.763732097244954, 29.609567152899164 ], [ -95.762991097093291, 29.609623153037006 ], [ -95.76196009726975, 29.609674153163475 ], [ -95.76101109673786, 29.609714152622864 ], [ -95.760723096931315, 29.609733153259644 ], [ -95.759902096717241, 29.609814153399867 ], [ -95.759572096474102, 29.609816152827104 ], [ -95.758994096114222, 29.609807153037607 ], [ -95.758460095765415, 29.609764152902645 ], [ -95.758377096039794, 29.60976115281948 ], [ -95.758308096009699, 29.609763152960564 ], [ -95.758295095867624, 29.609764153104841 ], [ -95.758131096036266, 29.609786153262778 ], [ -95.757884096250891, 29.609801153347362 ], [ -95.757719095362646, 29.60980515319989 ], [ -95.757636095907984, 29.609803152759877 ], [ -95.757004095325144, 29.609758152860913 ], [ -95.756731095420406, 29.609739152818893 ], [ -95.755668095038601, 29.609601152845165 ], [ -95.755426095239073, 29.609556152826819 ], [ -95.75507909547251, 29.609467153409977 ], [ -95.754435094805203, 29.609303152884774 ], [ -95.753689095153163, 29.609006152842237 ], [ -95.75346809452995, 29.608897153359074 ], [ -95.753373094474867, 29.608828153143371 ], [ -95.753163094922584, 29.608654152906578 ], [ -95.753000094328172, 29.608491153041786 ], [ -95.752951094343899, 29.608433153343896 ], [ -95.752891094328405, 29.608338152956712 ], [ -95.752798094629043, 29.60817715308518 ], [ -95.752734094684143, 29.60804415293368 ], [ -95.752573094455116, 29.6075971525987 ], [ -95.752505094598646, 29.607389152609645 ], [ -95.752417094751607, 29.60700015311178 ], [ -95.752387094329762, 29.606785153094862 ], [ -95.752380093842802, 29.60667715314278 ], [ -95.752390094514013, 29.606497152635313 ], [ -95.752427094655019, 29.606210152531798 ], [ -95.752462094575293, 29.606106152454142 ], [ -95.752653094376996, 29.605668152941561 ], [ -95.752793094612983, 29.605406152077038 ], [ -95.753012094298668, 29.605059152725396 ], [ -95.753128094271062, 29.604910152395465 ], [ -95.753207094631236, 29.604827152354648 ], [ -95.75323709473895, 29.604802152211281 ], [ -95.753399094047097, 29.604690152282942 ], [ -95.753549094460652, 29.604630152240052 ], [ -95.753722094431751, 29.604531152052477 ], [ -95.754106094326858, 29.604257152036581 ], [ -95.754450094733613, 29.604058151987431 ], [ -95.754522094465088, 29.604023152153552 ], [ -95.754597094878207, 29.603993152446176 ], [ -95.754790094733764, 29.603932152350684 ], [ -95.754926095192346, 29.603850152068105 ], [ -95.755929094980885, 29.603215152040125 ], [ -95.756056094610827, 29.603123151658274 ], [ -95.756261094893873, 29.602945151922292 ], [ -95.756315095345542, 29.602890151479368 ], [ -95.756456094854343, 29.60273515182833 ], [ -95.756623095298409, 29.602551152199656 ], [ -95.756722095411675, 29.602476151963941 ], [ -95.756867095154902, 29.602366151264924 ], [ -95.756918094918646, 29.60226815127367 ], [ -95.757006095273624, 29.602066151604401 ], [ -95.757028095010028, 29.60199615179458 ], [ -95.757071094852847, 29.601820151492401 ], [ -95.757099094941879, 29.601605151150327 ], [ -95.757098095590123, 29.601533151476641 ], [ -95.75711009543086, 29.601280151310501 ], [ -95.757132095072492, 29.601137151549157 ], [ -95.757149095582818, 29.601067151487761 ], [ -95.757150095581807, 29.601031151440949 ], [ -95.757114094854145, 29.600891151491318 ], [ -95.757102094755894, 29.600819151432802 ], [ -95.757089095564268, 29.600639151771126 ], [ -95.757094095411887, 29.600495151432888 ], [ -95.757077095140829, 29.600352151371983 ], [ -95.757054095239852, 29.600246151217643 ], [ -95.757014095429568, 29.600149151460915 ], [ -95.757004095312212, 29.599716150860214 ], [ -95.757016094686733, 29.599609151396709 ], [ -95.757044095430544, 29.599140151275094 ], [ -95.756982094629308, 29.598421150833033 ], [ -95.756894094773457, 29.597776150992317 ], [ -95.756661094576458, 29.596640150725925 ], [ -95.756392095073949, 29.595400150142854 ], [ -95.756191094868896, 29.594663150537624 ], [ -95.755907094222962, 29.593685149980022 ], [ -95.755752094186363, 29.59305014938672 ], [ -95.755695094473353, 29.592765149337026 ], [ -95.75566009480778, 29.592515150129369 ], [ -95.755639094124305, 29.592307149808367 ], [ -95.755613094869261, 29.59204814949517 ], [ -95.755609094163503, 29.59194014994408 ], [ -95.755619093945938, 29.59154314950321 ], [ -95.755634094417559, 29.591399149514046 ], [ -95.755792094116856, 29.590290149103595 ], [ -95.755849094635124, 29.59000514878576 ], [ -95.755991094383077, 29.58947914907219 ], [ -95.756014094115756, 29.589410149255301 ], [ -95.756126094541472, 29.589138148854353 ], [ -95.756326094132888, 29.588703149057906 ], [ -95.756596094401203, 29.588257149061135 ], [ -95.756639094848765, 29.588195149161912 ], [ -95.75678809479821, 29.588022149038959 ], [ -95.756861094518158, 29.58791314863425 ], [ -95.757000094827291, 29.587780149087386 ], [ -95.757091094988013, 29.587707149001311 ], [ -95.757288094236557, 29.58752214905353 ], [ -95.757387094789578, 29.58740714891584 ], [ -95.757499094220279, 29.58730114878216 ], [ -95.757558094701338, 29.587251148606892 ], [ -95.757652094534805, 29.587180148852323 ], [ -95.758022094956161, 29.586872148511983 ], [ -95.75826509522318, 29.586676148878592 ], [ -95.758332094503032, 29.586634148054078 ], [ -95.758402094847455, 29.586596148114733 ], [ -95.758468094788782, 29.586552148078912 ], [ -95.75855709495805, 29.586477148005464 ], [ -95.75863709477396, 29.58639414831763 ], [ -95.758703095018546, 29.586303147946463 ], [ -95.758740094594117, 29.586238147913139 ], [ -95.75877909479172, 29.58613614838125 ], [ -95.758801095406866, 29.586029148032686 ], [ -95.758812094766085, 29.585995148448593 ], [ -95.758849095192716, 29.58593014840562 ], [ -95.758913095509016, 29.585797148488851 ], [ -95.758947094523137, 29.585693148481315 ], [ -95.758991095167701, 29.585517147930506 ], [ -95.759003095370488, 29.585446148079463 ], [ -95.759012094857596, 29.585338148507315 ], [ -95.759010094839155, 29.585194147773503 ], [ -95.759002095098836, 29.585092148532564 ], [ -95.758987095283842, 29.584905148000487 ], [ -95.758984095200091, 29.584870148493749 ], [ -95.758954094460975, 29.584623147589884 ], [ -95.758937095133447, 29.584452148041901 ], [ -95.75893609455774, 29.584352147967735 ], [ -95.758865094490048, 29.584162147768787 ], [ -95.758848095044087, 29.584132148039448 ], [ -95.758652095012394, 29.583844148090467 ], [ -95.758583095230307, 29.583763147664207 ], [ -95.758497095262612, 29.583652147398631 ], [ -95.758393094668321, 29.583536148117915 ], [ -95.758000094949253, 29.583767148291724 ], [ -95.757825094371029, 29.583864148161513 ], [ -95.757035094015251, 29.584335148249384 ], [ -95.756609093842172, 29.584580148255121 ], [ -95.756253094681696, 29.584719148430928 ], [ -95.755723094543697, 29.584927148204041 ], [ -95.75538809418083, 29.585010147839107 ], [ -95.755321094336125, 29.585027148254767 ], [ -95.755078094178245, 29.585108148073591 ], [ -95.755000094378602, 29.585134148687374 ], [ -95.754715093826988, 29.585204147827262 ], [ -95.753891094180673, 29.585465148207611 ], [ -95.753512093767071, 29.585026148497693 ], [ -95.753383093853955, 29.58509914821455 ], [ -95.753328093907072, 29.585131147972259 ], [ -95.753305093882219, 29.585143147885734 ], [ -95.753012093403299, 29.585314148261958 ], [ -95.752548093116886, 29.585569148466817 ], [ -95.752506093444524, 29.585598148175329 ], [ -95.752087093333159, 29.585890148199979 ], [ -95.751609093551636, 29.586243148452958 ], [ -95.751233093057081, 29.586523149006474 ], [ -95.750818093287663, 29.586895148547249 ], [ -95.750777092637136, 29.586926148732168 ], [ -95.750424092576452, 29.587205148731986 ], [ -95.749966092424714, 29.587592148816498 ], [ -95.749605092365186, 29.58790514901353 ], [ -95.749293092968387, 29.58818614877493 ], [ -95.748782092969478, 29.588587149198474 ], [ -95.748121091968017, 29.589146148944835 ], [ -95.747980092613858, 29.589266149192284 ], [ -95.747877092791285, 29.589352148925109 ], [ -95.747114091867829, 29.590004149586072 ], [ -95.746346092468613, 29.590659149334613 ], [ -95.744965091373771, 29.59179914953344 ], [ -95.743898091245057, 29.592765150118996 ], [ -95.743230091727071, 29.593369150323259 ], [ -95.743103091365612, 29.593476150181946 ], [ -95.742985091626068, 29.593578150105799 ], [ -95.742562091278529, 29.593942150403532 ], [ -95.742029090586186, 29.594279150402688 ], [ -95.742139091126631, 29.594507150260554 ], [ -95.742241091315577, 29.594713150593833 ], [ -95.742299091339817, 29.594927150720228 ], [ -95.742372090869949, 29.595490151146929 ], [ -95.74240609175331, 29.596346150745667 ], [ -95.742436091703695, 29.597779151439045 ], [ -95.742444091565531, 29.597950151581358 ], [ -95.742470091541833, 29.598453151809363 ], [ -95.742526091543951, 29.601226151797135 ], [ -95.742559091408296, 29.602827152321233 ], [ -95.742561091838994, 29.602930152754649 ], [ -95.742596091727464, 29.604630152588463 ], [ -95.742667091965856, 29.60658715307542 ], [ -95.742704092048839, 29.60756715350654 ], [ -95.742758091722209, 29.60895315392759 ], [ -95.742907092019252, 29.61106015405062 ], [ -95.742915092387705, 29.611178153776521 ], [ -95.74298709176864, 29.612200154298854 ], [ -95.743134091725992, 29.613901154937409 ], [ -95.743182091963803, 29.614452154306651 ], [ -95.743247091899804, 29.615241154675484 ], [ -95.743298092405666, 29.615801154589761 ], [ -95.743303092826679, 29.615870154865323 ], [ -95.743316092618883, 29.616009155387033 ], [ -95.743344092495576, 29.616310154987307 ], [ -95.743367092450882, 29.616644155234066 ], [ -95.743432092123442, 29.617602155229832 ], [ -95.743444092108916, 29.618351155426545 ], [ -95.743448092572095, 29.618524155853393 ], [ -95.743456092873416, 29.618795155712199 ], [ -95.74346209291997, 29.619204155451662 ], [ -95.743470092448675, 29.619708156141474 ], [ -95.743518092854643, 29.622945156029864 ], [ -95.743509093033538, 29.623605156488509 ], [ -95.743509092598316, 29.62365815614233 ], [ -95.743567092572675, 29.624734156846682 ], [ -95.743618093162368, 29.624966156401499 ], [ -95.74361909310278, 29.625035156634297 ], [ -95.743623092983057, 29.625402157212982 ], [ -95.743611092499535, 29.625582156760274 ], [ -95.743625092801992, 29.626436157265935 ], [ -95.743627092608108, 29.626601157539334 ], [ -95.743794092777435, 29.626603156826508 ], [ -95.744984093260427, 29.626621157101201 ], [ -95.746500093978852, 29.626644157405767 ], [ -95.748706094066392, 29.626663156819887 ], [ -95.749116094215296, 29.626666157238486 ], [ -95.750062094985424, 29.626674157352369 ], [ -95.752183094695383, 29.626700156945368 ], [ -95.752781094970189, 29.626706157046382 ], [ -95.754674095893066, 29.626729157030116 ], [ -95.755939095852625, 29.626744157045316 ], [ -95.757314095881583, 29.626769156889981 ], [ -95.757657096542459, 29.626773156814199 ], [ -95.757889096074393, 29.626778156589296 ], [ -95.758556096614853, 29.626793156961931 ], [ -95.760295096841972, 29.626836156174409 ], [ -95.761410097158631, 29.626844156879361 ], [ -95.762097097225293, 29.626857156747221 ], [ -95.76255609807653, 29.626841156216305 ], [ -95.763540097602672, 29.626854156634078 ], [ -95.764167097686354, 29.626871156478604 ], [ -95.765203097966335, 29.626900156044858 ], [ -95.766353099230258, 29.626924156088286 ], [ -95.768149099446475, 29.626934156613061 ], [ -95.769427099271994, 29.626923156554298 ], [ -95.770216099529506, 29.626921156677504 ], [ -95.773410100381142, 29.626986155962996 ], [ -95.775254100666558, 29.627024155790384 ], [ -95.776318100731586, 29.627024156499324 ], [ -95.776432101037571, 29.627024155951936 ], [ -95.778718101393707, 29.627039155571651 ], [ -95.78063010240308, 29.627060156016878 ], [ -95.78101110292539, 29.627081155988318 ], [ -95.781360102418247, 29.627150155657674 ], [ -95.781620102361799, 29.627202156298384 ], [ -95.782131102276281, 29.627376155951421 ], [ -95.782394102320183, 29.627524156001176 ], [ -95.782538102851262, 29.627615156349698 ], [ -95.782662102486299, 29.62772315642906 ], [ -95.782827103360248, 29.627841156367165 ], [ -95.783836103233568, 29.628801156427027 ], [ -95.784131102819956, 29.629021156269797 ], [ -95.78439410340998, 29.629227156191632 ], [ -95.784844103106437, 29.629439156498155 ], [ -95.785201103192378, 29.629551156671003 ], [ -95.785579103807592, 29.629651156518353 ], [ -95.786268104149428, 29.629720155868089 ], [ -95.787739104247009, 29.629791156424247 ], [ -95.788741104876635, 29.629839155803264 ], [ -95.793656105918203, 29.629750155609972 ], [ -95.794561106343991, 29.629732155761513 ], [ -95.797507106544955, 29.629688155987807 ], [ -95.799234107249973, 29.629661155504905 ], [ -95.799832107059885, 29.629653155890455 ], [ -95.800583107715227, 29.629641155595017 ], [ -95.801738107806401, 29.629639155838145 ], [ -95.802263108385674, 29.629626155960388 ], [ -95.803017107920112, 29.629605156089763 ], [ -95.803326107960103, 29.629599155362641 ], [ -95.80355210800586, 29.62959415552282 ], [ -95.803979108351584, 29.629585155274803 ], [ -95.804478108135399, 29.629606155813384 ], [ -95.805209108649223, 29.629665155932869 ], [ -95.805675109259582, 29.629719155730584 ], [ -95.806127108917053, 29.629847155999123 ], [ -95.806767108878063, 29.629982155255099 ], [ -95.807686109355615, 29.630224155946721 ], [ -95.808136109612505, 29.630359155416421 ], [ -95.809209109325536, 29.630634155420765 ], [ -95.809846110359175, 29.630852155963897 ], [ -95.810572110562177, 29.631162156016039 ], [ -95.811266110256952, 29.631469155618809 ], [ -95.811770110946426, 29.631680156150473 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1517, "Tract": "48157674505", "Area_SqMi": 2.2047561815495773, "total_2009": 59, "total_2010": 71, "total_2011": 54, "total_2012": 60, "total_2013": 113, "total_2014": 176, "total_2015": 128, "total_2016": 155, "total_2017": 108, "total_2018": 107, "total_2019": 117, "total_2020": 123, "age1": 29, "age2": 86, "age3": 31, "earn1": 37, "earn2": 51, "earn3": 58, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 5, "naics_s06": 8, "naics_s07": 4, "naics_s08": 6, "naics_s09": 16, "naics_s10": 3, "naics_s11": 8, "naics_s12": 27, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 46, "naics_s17": 0, "naics_s18": 7, "naics_s19": 6, "naics_s20": 0, "race1": 93, "race2": 32, "race3": 1, "race4": 16, "race5": 0, "race6": 4, "ethnicity1": 120, "ethnicity2": 26, "edu1": 13, "edu2": 22, "edu3": 41, "edu4": 41, "Shape_Length": 42701.653382524099, "Shape_Area": 61464828.863684803, "total_2021": 141, "total_2022": 146 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.516244029296914, 29.49075113725619 ], [ -95.516495028773491, 29.490371136559634 ], [ -95.516243028670885, 29.490073136543572 ], [ -95.516086028718121, 29.489888136326417 ], [ -95.515882029027978, 29.489603136335631 ], [ -95.515659028989703, 29.489271136665945 ], [ -95.515488029131504, 29.489024136707524 ], [ -95.515365028744966, 29.488848136348466 ], [ -95.515241028394087, 29.488649136299507 ], [ -95.515084028101541, 29.488421136860833 ], [ -95.514999028020185, 29.488288136514047 ], [ -95.51491302835629, 29.488110136160437 ], [ -95.514704028155577, 29.487535135996101 ], [ -95.514539028424466, 29.487111136114812 ], [ -95.514420028424937, 29.486878135701666 ], [ -95.514244028330666, 29.486598136431699 ], [ -95.513945027880041, 29.486252136083639 ], [ -95.51357002841425, 29.485905136126107 ], [ -95.513148028151917, 29.485649135760006 ], [ -95.512853028144818, 29.485516136135082 ], [ -95.512440027803891, 29.485373136197715 ], [ -95.511690027562054, 29.485169135521009 ], [ -95.510983027214508, 29.484970135751386 ], [ -95.509673026618756, 29.484610135627001 ], [ -95.509539027090554, 29.484552135460028 ], [ -95.509409027044896, 29.484489135800843 ], [ -95.509281027035499, 29.48442113588353 ], [ -95.50915802733897, 29.484348135556637 ], [ -95.508934026285971, 29.484209135532595 ], [ -95.506962026378361, 29.483021135896173 ], [ -95.506474025595622, 29.482665135454283 ], [ -95.506145026198794, 29.482243135878722 ], [ -95.506025026439275, 29.481942135329355 ], [ -95.505789026293584, 29.481400135763515 ], [ -95.50563102608686, 29.480926135331686 ], [ -95.505605025319483, 29.480781135297509 ], [ -95.505641026151508, 29.480507134952237 ], [ -95.505697025299909, 29.480083135034164 ], [ -95.505799025332593, 29.47964213515769 ], [ -95.506079025842297, 29.479121134939284 ], [ -95.506422025588719, 29.478647134505394 ], [ -95.506777025545603, 29.478041134473465 ], [ -95.507001025827549, 29.477527134748254 ], [ -95.507475025744583, 29.476202133891238 ], [ -95.507600025916716, 29.475629134224146 ], [ -95.507707025901624, 29.474510133711377 ], [ -95.507766026433472, 29.4736841335843 ], [ -95.507770025841538, 29.4736301332693 ], [ -95.506698025919576, 29.473627134043141 ], [ -95.505811025553669, 29.473608133731005 ], [ -95.505317025218503, 29.473598133345476 ], [ -95.505043025021649, 29.473593133940042 ], [ -95.504484025559464, 29.47355013379298 ], [ -95.50137902400796, 29.473603133806677 ], [ -95.500840023847175, 29.473596134287874 ], [ -95.500301024014604, 29.473556133610241 ], [ -95.497827023171837, 29.473524133913255 ], [ -95.497768023178509, 29.473658133802147 ], [ -95.497714023138272, 29.473782133749548 ], [ -95.497706023793498, 29.473799133999901 ], [ -95.497588022953877, 29.474008134216202 ], [ -95.49735302381238, 29.474244134375745 ], [ -95.497311023299531, 29.474286134445851 ], [ -95.497098023153953, 29.474455134031043 ], [ -95.49689702327484, 29.474707134109575 ], [ -95.496779023381919, 29.474908133964629 ], [ -95.496691022774854, 29.475182134282985 ], [ -95.496678023715404, 29.475246134127811 ], [ -95.497886023594489, 29.474978134104983 ], [ -95.498375023720214, 29.474879133880528 ], [ -95.498350024009213, 29.475412134336501 ], [ -95.49853802359118, 29.475983134260098 ], [ -95.498588024038298, 29.476126134548295 ], [ -95.498588024164206, 29.476165134670822 ], [ -95.498494023418473, 29.476291134171699 ], [ -95.498500023275682, 29.476467134958217 ], [ -95.498544023379964, 29.476522134763496 ], [ -95.498702023332882, 29.476506134092109 ], [ -95.498808024343901, 29.476511134125058 ], [ -95.499060023463826, 29.476637134932421 ], [ -95.499223023679789, 29.476681134210079 ], [ -95.499619024369466, 29.476719134932509 ], [ -95.499669024232503, 29.47677413445199 ], [ -95.499651024039352, 29.476912134759136 ], [ -95.499544023572383, 29.477011134173821 ], [ -95.499418024179818, 29.477055134557475 ], [ -95.499249024315546, 29.477187135085224 ], [ -95.498821023681359, 29.477226134367758 ], [ -95.498658024156882, 29.477385134889222 ], [ -95.498577023877573, 29.477457134571061 ], [ -95.498006023620093, 29.477721134561737 ], [ -95.497905023867816, 29.477831134983273 ], [ -95.497887023388401, 29.477875134557614 ], [ -95.497887023333931, 29.47791913470688 ], [ -95.497855023156006, 29.478012134935344 ], [ -95.497761023970057, 29.478067135075531 ], [ -95.497591023643935, 29.478199135341903 ], [ -95.497549023932521, 29.478331135291448 ], [ -95.497405023549561, 29.478503134703317 ], [ -95.496410023061387, 29.478725135415907 ], [ -95.496681023483674, 29.47933813555829 ], [ -95.496755023360308, 29.479381134849969 ], [ -95.496776022968561, 29.47938213495247 ], [ -95.496926023253792, 29.479437134866636 ], [ -95.497065023342032, 29.479453134987846 ], [ -95.497171023544183, 29.479409135131668 ], [ -95.497284023752016, 29.479327135522297 ], [ -95.497448023236615, 29.479178134901151 ], [ -95.497699024004547, 29.479085134861155 ], [ -95.497812023396449, 29.47912313477508 ], [ -95.497850023861105, 29.479288135380507 ], [ -95.497825024020571, 29.47948013545092 ], [ -95.497750023806077, 29.479541135493808 ], [ -95.497536024024512, 29.47966213495987 ], [ -95.497348024000914, 29.479805135519989 ], [ -95.49719102387877, 29.479888135603211 ], [ -95.496977023540211, 29.479921135706746 ], [ -95.4967070233577, 29.47987113571585 ], [ -95.496562023550098, 29.479860135037157 ], [ -95.496141023602902, 29.479960135108168 ], [ -95.496110023750774, 29.480009135742971 ], [ -95.496148023559797, 29.480256135119809 ], [ -95.496091023251324, 29.48044913549716 ], [ -95.496066023136152, 29.4806301350194 ], [ -95.495953023657009, 29.480955135110698 ], [ -95.495947023435434, 29.481004135920323 ], [ -95.495922023343169, 29.481059135196034 ], [ -95.495853023465102, 29.481450136032286 ], [ -95.495891023286305, 29.481538135335501 ], [ -95.49614902378049, 29.481763135802233 ], [ -95.496293023851436, 29.48206013543594 ], [ -95.496306023220498, 29.482197135497771 ], [ -95.496357023274513, 29.482401136189768 ], [ -95.496332023702379, 29.482807135475323 ], [ -95.496100023149879, 29.483924136369957 ], [ -95.496100023000622, 29.484220135846297 ], [ -95.496119023940395, 29.484352136134106 ], [ -95.496138023837617, 29.484374136552514 ], [ -95.496195023482485, 29.484506136604494 ], [ -95.496195023477753, 29.484682136151097 ], [ -95.496119023678915, 29.484814135962878 ], [ -95.496119023728212, 29.485029136483007 ], [ -95.496277023068743, 29.485254136477813 ], [ -95.496296023490558, 29.485320136080787 ], [ -95.496296024060683, 29.48560013609945 ], [ -95.49621402392691, 29.485914136324443 ], [ -95.496151023443588, 29.486090136771104 ], [ -95.496089023345021, 29.48616713679079 ], [ -95.496070023732145, 29.486222136338441 ], [ -95.495900023198232, 29.486398136556698 ], [ -95.495787023434787, 29.48656813713421 ], [ -95.495781023882387, 29.486612136976373 ], [ -95.495756023068367, 29.486629136299225 ], [ -95.49572502385017, 29.486689137105866 ], [ -95.495643023381405, 29.486953136657007 ], [ -95.495593022992125, 29.487058136815342 ], [ -95.495474023358639, 29.487228136865035 ], [ -95.495373023338345, 29.487437136827282 ], [ -95.495260023504585, 29.487569137097157 ], [ -95.495229023477648, 29.487635137087242 ], [ -95.495173023227963, 29.488020136756472 ], [ -95.495229023361347, 29.488212137440993 ], [ -95.495210023084837, 29.488295136661041 ], [ -95.49516002313149, 29.488388137137527 ], [ -95.49514102357297, 29.488405136680942 ], [ -95.495079023707262, 29.488509136787769 ], [ -95.495066023377376, 29.488614136780104 ], [ -95.495336023966388, 29.488873136901372 ], [ -95.495665023181559, 29.489018136769353 ], [ -95.49551402355425, 29.489652137044327 ], [ -95.495234023462032, 29.489624137567869 ], [ -95.494991022940837, 29.489488137255229 ], [ -95.494822023791727, 29.489477137486045 ], [ -95.494677023175242, 29.489549137062653 ], [ -95.494489023508009, 29.489813137539464 ], [ -95.494325023596048, 29.490071137055043 ], [ -95.494281022807058, 29.490247137661818 ], [ -95.494244022907424, 29.490302137754419 ], [ -95.494219023779877, 29.490467137382279 ], [ -95.494175022973465, 29.490582137403283 ], [ -95.4940750229499, 29.490791137361459 ], [ -95.494200023726762, 29.49114913803043 ], [ -95.494274023653446, 29.491276137808107 ], [ -95.494345023809601, 29.491396137880667 ], [ -95.494509023737805, 29.491566137749519 ], [ -95.494861023095083, 29.491891137939728 ], [ -95.494943023064096, 29.491913138019481 ], [ -95.495385023250947, 29.492737138260512 ], [ -95.495534023215939, 29.493015138034597 ], [ -95.495490023919857, 29.493149138377365 ], [ -95.495383023816842, 29.493210138481999 ], [ -95.495364024101747, 29.493243138322434 ], [ -95.495384023844167, 29.49327213830713 ], [ -95.495478023442814, 29.493292138193198 ], [ -95.495572023924993, 29.493347138213554 ], [ -95.495710023512245, 29.493583138453488 ], [ -95.495767024062161, 29.493644137818265 ], [ -95.495792024044363, 29.493792138366182 ], [ -95.495773023524208, 29.493957138348449 ], [ -95.4957110235692, 29.494078138245065 ], [ -95.495610023960595, 29.494221138677396 ], [ -95.49549702418733, 29.4943531382579 ], [ -95.495422023938801, 29.494458138075814 ], [ -95.495315023930502, 29.494782138173729 ], [ -95.495296023252365, 29.495030138116778 ], [ -95.495347023553848, 29.495321138442606 ], [ -95.495259024200237, 29.495898138376447 ], [ -95.495241023423262, 29.496322138396888 ], [ -95.495147023987542, 29.49676713874954 ], [ -95.495125024281407, 29.497133138640603 ], [ -95.494296023095302, 29.497227138754312 ], [ -95.491693023313346, 29.498136139018897 ], [ -95.491437022618655, 29.498436138886696 ], [ -95.490867022389565, 29.499311139535063 ], [ -95.490565023186718, 29.500324139278344 ], [ -95.490594023164562, 29.500563139901203 ], [ -95.490888023198593, 29.500823140020643 ], [ -95.491543023169115, 29.501387139463638 ], [ -95.491625022759663, 29.501492139551644 ], [ -95.4917000229797, 29.501552139801205 ], [ -95.492121022991995, 29.501800140205571 ], [ -95.492737023259565, 29.501959139875485 ], [ -95.49360502324123, 29.502030139587283 ], [ -95.494252023787965, 29.502008140324307 ], [ -95.494491023445235, 29.502084139542212 ], [ -95.494579023621796, 29.50217214031445 ], [ -95.494560023788665, 29.50233213994024 ], [ -95.494548023759108, 29.502574139651887 ], [ -95.494548024329688, 29.502767139979039 ], [ -95.494548023525468, 29.502915140108072 ], [ -95.494599023790187, 29.503037139819938 ], [ -95.494617023519226, 29.503079140304276 ], [ -95.494642024041767, 29.503120140064272 ], [ -95.494743024326993, 29.503288139785386 ], [ -95.494862023711079, 29.503437140366572 ], [ -95.49510702384228, 29.50357413993547 ], [ -95.495202023783733, 29.503607140364515 ], [ -95.495225024353616, 29.503602140491616 ], [ -95.495334024077749, 29.503579140187746 ], [ -95.495667023879207, 29.503425140562179 ], [ -95.495767024593789, 29.503453139899246 ], [ -95.495844024141817, 29.503514139751548 ], [ -95.495899024653752, 29.503558140104406 ], [ -95.495942024108786, 29.503646139882306 ], [ -95.495936024336274, 29.503751139959274 ], [ -95.49584202449546, 29.503987140709722 ], [ -95.495773024709024, 29.50418414067283 ], [ -95.495735024164304, 29.504409140660673 ], [ -95.495692024696666, 29.50449714061164 ], [ -95.495567024703135, 29.504580140720655 ], [ -95.495397024206127, 29.504657140376544 ], [ -95.495127023873778, 29.50483914016683 ], [ -95.495008024472668, 29.505042140405003 ], [ -95.494932023952202, 29.505328140588993 ], [ -95.494939023703253, 29.505427141008326 ], [ -95.49482002419056, 29.50685614095644 ], [ -95.494816023974465, 29.507376141171541 ], [ -95.495742024622828, 29.507384141265515 ], [ -95.497026024302841, 29.507295141175071 ], [ -95.498596024964186, 29.507243141192625 ], [ -95.499321025433744, 29.507261140631151 ], [ -95.500106025232128, 29.507266140520549 ], [ -95.500183025835639, 29.507266141073988 ], [ -95.500246025891585, 29.507266140579709 ], [ -95.500465025889028, 29.507267141042185 ], [ -95.500818025549449, 29.507269140743571 ], [ -95.502714025950624, 29.50723914091305 ], [ -95.503726026484131, 29.507223140785932 ], [ -95.503890026933661, 29.507225140520362 ], [ -95.504039026835542, 29.507219140732037 ], [ -95.504195026382547, 29.507222140426244 ], [ -95.504353026470653, 29.507220140805831 ], [ -95.504520026884236, 29.50718814077543 ], [ -95.50466902682264, 29.507206141010055 ], [ -95.504827026219928, 29.507218140630879 ], [ -95.50499602661985, 29.507210140673251 ], [ -95.505444026436336, 29.507205140337604 ], [ -95.506147026563966, 29.507201141004895 ], [ -95.507059027335785, 29.507189140912644 ], [ -95.507363027504425, 29.507185140701985 ], [ -95.507694027822438, 29.507180140097475 ], [ -95.510090028131373, 29.507150140085113 ], [ -95.510256027596043, 29.507146140705057 ], [ -95.511690028142141, 29.50711514012438 ], [ -95.511938028501234, 29.507112140454936 ], [ -95.512043028820997, 29.507111140745636 ], [ -95.512178028733302, 29.506782140338846 ], [ -95.512215028645912, 29.506690140684146 ], [ -95.51225102845244, 29.506600140554607 ], [ -95.512458028886712, 29.506028140074921 ], [ -95.512471028412179, 29.505825139676237 ], [ -95.512515029065327, 29.505561140197159 ], [ -95.512686028194693, 29.505240140320097 ], [ -95.512859028251057, 29.504918139901797 ], [ -95.512874028625575, 29.50479114025029 ], [ -95.512905028990602, 29.504665140272468 ], [ -95.513012029077004, 29.504379140143453 ], [ -95.513169028974247, 29.504077139808917 ], [ -95.513446028742351, 29.503582139844255 ], [ -95.513461029064956, 29.503544139800105 ], [ -95.513487028505821, 29.503480139483084 ], [ -95.513525029207599, 29.50338413958162 ], [ -95.513528029238941, 29.503205139753373 ], [ -95.513425028694229, 29.503011139711667 ], [ -95.51305602812846, 29.502633139404661 ], [ -95.512835028185705, 29.502060139003788 ], [ -95.51282802841385, 29.501346139601345 ], [ -95.512919028511149, 29.500306138903401 ], [ -95.512832028280215, 29.500112138610273 ], [ -95.51286502796556, 29.500062138498979 ], [ -95.512846028430147, 29.500001139106885 ], [ -95.512675028489525, 29.499456138690462 ], [ -95.512618027899549, 29.499220138908758 ], [ -95.512600028107599, 29.499055138693272 ], [ -95.512593028535321, 29.498835138473254 ], [ -95.512625028560876, 29.498566138762151 ], [ -95.512663027905106, 29.498362138491753 ], [ -95.512788027895041, 29.498032138809688 ], [ -95.512826028037608, 29.497966138113185 ], [ -95.51288302808041, 29.497868138127522 ], [ -95.513009028594254, 29.497741138664736 ], [ -95.513009027951412, 29.49763113867348 ], [ -95.512764028426901, 29.497235137924523 ], [ -95.512729028672936, 29.497147138554404 ], [ -95.51269502784686, 29.497059138157095 ], [ -95.512707027927704, 29.49685613841288 ], [ -95.512814028355294, 29.496433137833034 ], [ -95.512852028021811, 29.496169138357299 ], [ -95.512846028216714, 29.496064137958072 ], [ -95.51278902784783, 29.495905138431539 ], [ -95.512733028068752, 29.495828138278394 ], [ -95.512413027954963, 29.49529413777039 ], [ -95.512157027747691, 29.494917138032925 ], [ -95.511609028222722, 29.494112137569559 ], [ -95.511313027890949, 29.493579137736205 ], [ -95.510892027645809, 29.492945137462854 ], [ -95.510736027417053, 29.492711137287145 ], [ -95.510781027424287, 29.492584137275848 ], [ -95.511066027309312, 29.492186137048957 ], [ -95.511243027590396, 29.492017136990945 ], [ -95.511610027560835, 29.49180113753955 ], [ -95.511912027909375, 29.491645136803687 ], [ -95.512084027853547, 29.491557137234036 ], [ -95.512289028099588, 29.491520136873252 ], [ -95.512390028404667, 29.491502137244201 ], [ -95.512860028305582, 29.491474136784674 ], [ -95.51347202867133, 29.491561136720385 ], [ -95.51393102886685, 29.49174413742567 ], [ -95.514298028655162, 29.491801136883502 ], [ -95.514967029029648, 29.491773137049563 ], [ -95.515116028698358, 29.491736137037268 ], [ -95.515405028593605, 29.491590137078376 ], [ -95.515554028577625, 29.491506137121256 ], [ -95.515763028653566, 29.49139113679961 ], [ -95.515922028494714, 29.491200136794184 ], [ -95.516194029115766, 29.49083013713259 ], [ -95.516244029296914, 29.49075113725619 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1518, "Tract": "48157673005", "Area_SqMi": 1.1360824546405022, "total_2009": 726, "total_2010": 756, "total_2011": 1004, "total_2012": 1104, "total_2013": 1138, "total_2014": 1156, "total_2015": 1248, "total_2016": 1177, "total_2017": 1218, "total_2018": 1207, "total_2019": 1328, "total_2020": 1118, "age1": 445, "age2": 729, "age3": 262, "earn1": 457, "earn2": 499, "earn3": 480, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 9, "naics_s05": 7, "naics_s06": 13, "naics_s07": 176, "naics_s08": 4, "naics_s09": 0, "naics_s10": 138, "naics_s11": 33, "naics_s12": 81, "naics_s13": 13, "naics_s14": 54, "naics_s15": 106, "naics_s16": 253, "naics_s17": 358, "naics_s18": 97, "naics_s19": 92, "naics_s20": 0, "race1": 1035, "race2": 194, "race3": 6, "race4": 166, "race5": 1, "race6": 34, "ethnicity1": 1037, "ethnicity2": 399, "edu1": 186, "edu2": 232, "edu3": 284, "edu4": 289, "Shape_Length": 31588.812933085552, "Shape_Area": 31672034.410823219, "total_2021": 1164, "total_2022": 1436 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.77612010733742, 29.754752181821431 ], [ -95.776111107283739, 29.753969181795227 ], [ -95.776111106581155, 29.753335181514604 ], [ -95.776091107142662, 29.752967182049353 ], [ -95.776036106824961, 29.75267018188811 ], [ -95.775986107163732, 29.752478181394814 ], [ -95.775866106852746, 29.751862181793449 ], [ -95.775842106734331, 29.751753181360975 ], [ -95.77577610694911, 29.751540181768096 ], [ -95.775678106847948, 29.751200181283291 ], [ -95.775438106684391, 29.750595181262177 ], [ -95.775190106866162, 29.750167181196421 ], [ -95.775033106611119, 29.749901181209289 ], [ -95.774276105890209, 29.748572180569724 ], [ -95.774143106391193, 29.748356180482617 ], [ -95.773734105923324, 29.747740181238033 ], [ -95.773631106178101, 29.747562181188602 ], [ -95.773201105592193, 29.746387180346453 ], [ -95.773041105381949, 29.745834180832933 ], [ -95.772919105327162, 29.745282180202853 ], [ -95.772831105294117, 29.744524180379315 ], [ -95.772833106016037, 29.744258179785259 ], [ -95.772834105334979, 29.744156179897615 ], [ -95.772836105329546, 29.743917179922395 ], [ -95.77283710594844, 29.743849180223602 ], [ -95.772848105892194, 29.742704180017313 ], [ -95.772826104968445, 29.741665179630605 ], [ -95.772818105108243, 29.741272179599605 ], [ -95.772778105598263, 29.74095317937379 ], [ -95.772758105430029, 29.74078417957714 ], [ -95.772761105784397, 29.740173179730082 ], [ -95.772765105621886, 29.739520178806114 ], [ -95.772772104872615, 29.738586179164088 ], [ -95.772767105647461, 29.738472179224505 ], [ -95.77275810530233, 29.738256178818514 ], [ -95.772725104723207, 29.737500179075369 ], [ -95.772695104893984, 29.736799178923881 ], [ -95.772750104766146, 29.736342178480779 ], [ -95.772748105052969, 29.73604717846219 ], [ -95.772730105521788, 29.733823178107848 ], [ -95.772729104913566, 29.733676177559779 ], [ -95.772728105462406, 29.733558177895699 ], [ -95.772615104895252, 29.733560177991524 ], [ -95.772396105130667, 29.733564177794154 ], [ -95.77235210543904, 29.733565178327272 ], [ -95.771970104806869, 29.733569178250153 ], [ -95.771727105101974, 29.733581177711635 ], [ -95.771331104847775, 29.733620178167442 ], [ -95.771203104275301, 29.733634178239761 ], [ -95.770847104781382, 29.733676178463366 ], [ -95.770573104226401, 29.733721177959133 ], [ -95.77038910474765, 29.733763178422198 ], [ -95.770285103976548, 29.73379717796098 ], [ -95.770124104485419, 29.733862177968597 ], [ -95.770010104181182, 29.733899178292631 ], [ -95.769366104075743, 29.734137178094905 ], [ -95.769286104370181, 29.734167177752177 ], [ -95.768934104295013, 29.734282178218525 ], [ -95.768637104388716, 29.734365178341935 ], [ -95.768341104004406, 29.734432178376867 ], [ -95.767962103827529, 29.734500178297765 ], [ -95.767777104107637, 29.734524177962722 ], [ -95.767657104079504, 29.734540178290192 ], [ -95.767624103626574, 29.734544178393804 ], [ -95.767378103306228, 29.734563178398645 ], [ -95.767325103685778, 29.734567178738445 ], [ -95.76724010420979, 29.734571178594575 ], [ -95.767112103525903, 29.734576178750974 ], [ -95.766916103902801, 29.734570177998997 ], [ -95.766869103691164, 29.734566178033631 ], [ -95.766701103142609, 29.734553178011481 ], [ -95.765571102773279, 29.734561178589704 ], [ -95.765174103557413, 29.734567178137059 ], [ -95.765051102709251, 29.734574178036855 ], [ -95.764919103563415, 29.734570178272996 ], [ -95.763938102591837, 29.734579178031417 ], [ -95.763771102674596, 29.734579178553492 ], [ -95.762683102550511, 29.734590178514328 ], [ -95.761821101948172, 29.73459317856377 ], [ -95.761666101972423, 29.734594178652468 ], [ -95.76146710198563, 29.734597178297179 ], [ -95.760905102280049, 29.734607178746344 ], [ -95.760125102124775, 29.73461017831599 ], [ -95.759409101988041, 29.734621178551752 ], [ -95.759003101753123, 29.734626178518177 ], [ -95.758864101857455, 29.734628178907357 ], [ -95.7577461007875, 29.734636179091442 ], [ -95.757324101315049, 29.734630178686668 ], [ -95.757040100921188, 29.734619178547252 ], [ -95.756757101441409, 29.734596178698744 ], [ -95.756519101465372, 29.734568178884228 ], [ -95.756484101272093, 29.734564178772153 ], [ -95.756115101113608, 29.734504178865521 ], [ -95.755907100915195, 29.734463178740192 ], [ -95.755609100810261, 29.73439217835594 ], [ -95.755477100391076, 29.734762178983704 ], [ -95.755383100989121, 29.734988178914016 ], [ -95.75527610104173, 29.735217179100818 ], [ -95.755150100277859, 29.735442179049063 ], [ -95.754998100910854, 29.73568217921855 ], [ -95.754965100806217, 29.735735179391465 ], [ -95.754717100718565, 29.736077179202784 ], [ -95.754493100717326, 29.73634117910364 ], [ -95.754272100253374, 29.736574178911045 ], [ -95.754053100408228, 29.736784179322935 ], [ -95.753782100326561, 29.737015178961336 ], [ -95.753329100254462, 29.737374179594319 ], [ -95.753107099898841, 29.737564179416005 ], [ -95.752912100541479, 29.737751179635911 ], [ -95.752814099993259, 29.737853179332163 ], [ -95.752647099958367, 29.738039179902046 ], [ -95.752518099975987, 29.738194179652439 ], [ -95.75233010012407, 29.738439180052115 ], [ -95.752164100086674, 29.738686179316737 ], [ -95.75201109968377, 29.738947179430202 ], [ -95.751839100421321, 29.739289179762164 ], [ -95.751703100020535, 29.739613179627973 ], [ -95.751607099609629, 29.739879179710027 ], [ -95.751534100376517, 29.740122179950632 ], [ -95.751477099936537, 29.740371180338105 ], [ -95.751447100259, 29.7405361801484 ], [ -95.752586100644493, 29.740696180212016 ], [ -95.753074100762277, 29.740759179748029 ], [ -95.753323100190215, 29.740791180432886 ], [ -95.753850100723199, 29.740866179769245 ], [ -95.75395110109794, 29.740879179887941 ], [ -95.756470101484126, 29.741214180028788 ], [ -95.757959101965625, 29.741416180225784 ], [ -95.758292101239803, 29.741464179813342 ], [ -95.758571101986092, 29.741519180432711 ], [ -95.758909101538293, 29.741602179763849 ], [ -95.759146101462363, 29.74166718004226 ], [ -95.759494102470427, 29.741785180067357 ], [ -95.759754102226424, 29.741891180266055 ], [ -95.76001610246, 29.742006180135618 ], [ -95.760281101833172, 29.742135179747397 ], [ -95.760544102027964, 29.742282180320476 ], [ -95.760794102504065, 29.742443180115508 ], [ -95.761540102743453, 29.742977180417892 ], [ -95.761834102593085, 29.743170180371109 ], [ -95.762141102955283, 29.743346180495404 ], [ -95.76228510243763, 29.743424180245135 ], [ -95.762467103142853, 29.743516180121521 ], [ -95.762690103001617, 29.743614180613715 ], [ -95.762850103078236, 29.74367517991292 ], [ -95.76293610330525, 29.743714180556601 ], [ -95.763200102689112, 29.743811180543002 ], [ -95.763605103393417, 29.743935180399514 ], [ -95.763903102935615, 29.744011180347261 ], [ -95.764183103130293, 29.744069180686939 ], [ -95.764479103314784, 29.744119180031809 ], [ -95.764855103284532, 29.744159180102084 ], [ -95.764905103420958, 29.74415818058835 ], [ -95.764951103766307, 29.74416818081092 ], [ -95.765091103200049, 29.744178180600571 ], [ -95.765342103647654, 29.744186180239794 ], [ -95.765406103794248, 29.744179180609031 ], [ -95.765465104154401, 29.744189180400376 ], [ -95.76603510426672, 29.744188179938529 ], [ -95.766132103625935, 29.744182180451375 ], [ -95.766231103897738, 29.744186180140598 ], [ -95.76665410443465, 29.744181180434666 ], [ -95.767244103815017, 29.744176180665836 ], [ -95.768522104351163, 29.744162180175827 ], [ -95.768529104345504, 29.744769180744303 ], [ -95.768469104139029, 29.74525318089017 ], [ -95.768336104290427, 29.745795180968187 ], [ -95.768165104193585, 29.746224181011797 ], [ -95.767213103882796, 29.748616181288664 ], [ -95.766581104337746, 29.750177181491523 ], [ -95.766479103789678, 29.75060718177766 ], [ -95.766410104496714, 29.750970182051997 ], [ -95.766371104582291, 29.751267182193338 ], [ -95.766351104473856, 29.751759181773583 ], [ -95.766375104365139, 29.752115182044587 ], [ -95.766396103960972, 29.752229181777164 ], [ -95.766383104265785, 29.75334018236218 ], [ -95.766381104474249, 29.753473182283358 ], [ -95.766380103999353, 29.753584182500944 ], [ -95.766378104517173, 29.753835181899891 ], [ -95.766370104787754, 29.754430182328463 ], [ -95.766376104189149, 29.754801182913376 ], [ -95.766461103994303, 29.754847182441114 ], [ -95.766483104852171, 29.754859182411238 ], [ -95.766494104751956, 29.754865182833431 ], [ -95.76651910405775, 29.754879182157662 ], [ -95.766887104697787, 29.75507818270032 ], [ -95.76703310431337, 29.755154182333762 ], [ -95.767130104548201, 29.755205182409703 ], [ -95.767682104915551, 29.755505182975917 ], [ -95.768077104810871, 29.755720182422067 ], [ -95.768577105506054, 29.755990182355013 ], [ -95.768847105007012, 29.756163182618575 ], [ -95.768901105200186, 29.756197182395624 ], [ -95.769661105090975, 29.756680182451497 ], [ -95.770672105624115, 29.757355183211416 ], [ -95.770836105545726, 29.757475183277883 ], [ -95.770883106108712, 29.757509183217262 ], [ -95.771023105451391, 29.757618182625944 ], [ -95.771225105455642, 29.757777182967523 ], [ -95.771518105998467, 29.757984183031276 ], [ -95.77167610616273, 29.758104182763461 ], [ -95.771817105444612, 29.758162182750908 ], [ -95.772037106400433, 29.758308183306355 ], [ -95.772261105778625, 29.75843418303602 ], [ -95.772479106340839, 29.758556182987174 ], [ -95.77297210611259, 29.758833183381221 ], [ -95.773101106531101, 29.758905183487879 ], [ -95.774192106130869, 29.759520183100435 ], [ -95.774467106551214, 29.759662182746542 ], [ -95.775845107567719, 29.760453183589181 ], [ -95.776038106904664, 29.760560183490099 ], [ -95.776093106967153, 29.760592183405102 ], [ -95.776096106756796, 29.760534183026252 ], [ -95.776110107584188, 29.760209183241518 ], [ -95.776115106885484, 29.758553182497426 ], [ -95.776092106489429, 29.756877182302528 ], [ -95.776095106708027, 29.756798182555116 ], [ -95.776097106669454, 29.756739182378315 ], [ -95.776101106768337, 29.756617182713924 ], [ -95.776100107141517, 29.756534182186506 ], [ -95.776099106527937, 29.756480182289007 ], [ -95.77609910664755, 29.756316182502587 ], [ -95.776101107083122, 29.756187182173832 ], [ -95.776101107349717, 29.755424182561114 ], [ -95.77612010733742, 29.754752181821431 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1519, "Tract": "48157672802", "Area_SqMi": 2.5908508332218299, "total_2009": 127, "total_2010": 135, "total_2011": 116, "total_2012": 224, "total_2013": 209, "total_2014": 254, "total_2015": 282, "total_2016": 281, "total_2017": 278, "total_2018": 267, "total_2019": 276, "total_2020": 225, "age1": 219, "age2": 295, "age3": 166, "earn1": 143, "earn2": 346, "earn3": 191, "naics_s01": 6, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 0, "naics_s06": 13, "naics_s07": 501, "naics_s08": 45, "naics_s09": 17, "naics_s10": 7, "naics_s11": 31, "naics_s12": 11, "naics_s13": 0, "naics_s14": 0, "naics_s15": 35, "naics_s16": 6, "naics_s17": 0, "naics_s18": 2, "naics_s19": 1, "naics_s20": 0, "race1": 440, "race2": 143, "race3": 4, "race4": 81, "race5": 0, "race6": 12, "ethnicity1": 498, "ethnicity2": 182, "edu1": 80, "edu2": 126, "edu3": 144, "edu4": 111, "Shape_Length": 46648.24344670499, "Shape_Area": 72228486.944706649, "total_2021": 419, "total_2022": 680 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.684756076621412, 29.603961154797727 ], [ -95.685236077331538, 29.603899154073613 ], [ -95.684585076783534, 29.602673154593074 ], [ -95.68431607643025, 29.602167153783551 ], [ -95.68423507677133, 29.602014154243076 ], [ -95.684084076285473, 29.601722153895139 ], [ -95.683979076136907, 29.601537154072748 ], [ -95.683426076368647, 29.601616154011676 ], [ -95.682785075980163, 29.601664154187649 ], [ -95.681741076152861, 29.601842153909811 ], [ -95.68015907523116, 29.602124154217577 ], [ -95.679127075294986, 29.602275153979868 ], [ -95.677958075269132, 29.602402154225171 ], [ -95.676836074550181, 29.602575154520206 ], [ -95.675653074212789, 29.602816154209226 ], [ -95.675557074876792, 29.602839154480694 ], [ -95.674065074055164, 29.603240154803661 ], [ -95.674031074496739, 29.603250154732731 ], [ -95.673986074150278, 29.603263155026358 ], [ -95.673869074115999, 29.603306154294366 ], [ -95.672472073616845, 29.603822154726195 ], [ -95.671524073163155, 29.604175155027708 ], [ -95.665390072154139, 29.606454156014248 ], [ -95.663717071549755, 29.607037155922256 ], [ -95.662068071594874, 29.607611156222475 ], [ -95.660585070752632, 29.608128156099035 ], [ -95.660472070600704, 29.608167155683724 ], [ -95.660348071157301, 29.608216156223424 ], [ -95.660311070674737, 29.60823115604969 ], [ -95.660277071142346, 29.608244156517671 ], [ -95.660223071060372, 29.608266156163591 ], [ -95.658966070485192, 29.608770156403217 ], [ -95.656939070270326, 29.609737156600627 ], [ -95.656352070358139, 29.610028156315806 ], [ -95.65239206897823, 29.611991157223336 ], [ -95.652374068850719, 29.612000157473393 ], [ -95.650116068336018, 29.612967157842288 ], [ -95.649368068699999, 29.613301157551575 ], [ -95.6491170680587, 29.61341215777459 ], [ -95.649171067909109, 29.613485157756088 ], [ -95.649228068674631, 29.613586157721738 ], [ -95.649241067860842, 29.613626157726699 ], [ -95.64935406829818, 29.613830158001683 ], [ -95.64943106804526, 29.613954157772142 ], [ -95.649718068353849, 29.614660157759729 ], [ -95.64987706884628, 29.615205157962233 ], [ -95.649945068072356, 29.615830158396808 ], [ -95.65000706816987, 29.616641158105406 ], [ -95.650043068548868, 29.617750158014154 ], [ -95.650070068612266, 29.620636158808857 ], [ -95.650128068785293, 29.623203159271544 ], [ -95.650238069172346, 29.625263159720642 ], [ -95.650770069486342, 29.627290160102746 ], [ -95.651162069884961, 29.6289071611426 ], [ -95.651269069977005, 29.629502160556719 ], [ -95.651345069556157, 29.630061160646331 ], [ -95.651373069328486, 29.630469161424191 ], [ -95.651424069279628, 29.631652161615985 ], [ -95.651490069890826, 29.633247161131553 ], [ -95.651493069431439, 29.633993161809634 ], [ -95.651494069550552, 29.634325162010825 ], [ -95.651494069594676, 29.634410161900291 ], [ -95.651613069576797, 29.634398161888502 ], [ -95.651709070241481, 29.634389161685554 ], [ -95.653095070000276, 29.634253161692797 ], [ -95.65602507078647, 29.633884161847284 ], [ -95.656543070880616, 29.633779161634685 ], [ -95.657479070945982, 29.633590161323692 ], [ -95.658017071151392, 29.63348116169681 ], [ -95.658385071172233, 29.633450161159338 ], [ -95.658863072067518, 29.63346116124449 ], [ -95.660637072552646, 29.633994161277194 ], [ -95.660827072176531, 29.63402716152023 ], [ -95.661765072647739, 29.634187161194117 ], [ -95.662820073102978, 29.634127161212131 ], [ -95.663467072804991, 29.633903161220264 ], [ -95.663705072327005, 29.633763161124008 ], [ -95.664360073018756, 29.63322916078862 ], [ -95.664770073254687, 29.632695160820067 ], [ -95.664930072912298, 29.632253161066881 ], [ -95.664960073023693, 29.631886160532872 ], [ -95.664970073297042, 29.631756160390747 ], [ -95.664882072565007, 29.631263161058328 ], [ -95.664539073021672, 29.62984916032347 ], [ -95.664167072238584, 29.628831159821317 ], [ -95.664037072767158, 29.628236159687003 ], [ -95.664035073003717, 29.627842159714216 ], [ -95.664130072694206, 29.627568159691023 ], [ -95.664273072443365, 29.627397160103449 ], [ -95.664459072851884, 29.627313159836827 ], [ -95.664528073140076, 29.627183159762225 ], [ -95.664772073133776, 29.62694415994223 ], [ -95.665098073169233, 29.626368160013449 ], [ -95.665332072512612, 29.625719159248174 ], [ -95.665483073340212, 29.624872159578921 ], [ -95.665436072641313, 29.623908158873601 ], [ -95.66532007330143, 29.623606159080293 ], [ -95.665189072706596, 29.622542159000236 ], [ -95.665107072771789, 29.6223791592355 ], [ -95.664865072612074, 29.622139158854633 ], [ -95.664838072547397, 29.622057158865683 ], [ -95.664764073060567, 29.621832158841524 ], [ -95.664842073041228, 29.621633159162979 ], [ -95.665080072823031, 29.621345158869357 ], [ -95.665104072846603, 29.621062158405245 ], [ -95.664951072488847, 29.620690158372916 ], [ -95.664114072260219, 29.619087157890018 ], [ -95.663983072354227, 29.618747157990004 ], [ -95.663933071976402, 29.61832015797609 ], [ -95.663824072273243, 29.618166158397539 ], [ -95.663834072403915, 29.617989157853252 ], [ -95.6644460725838, 29.617267157624312 ], [ -95.664584072307775, 29.617155158132196 ], [ -95.664942072673853, 29.617090157636952 ], [ -95.66567607283271, 29.616574157590229 ], [ -95.666231072585376, 29.616449157865215 ], [ -95.667054073191693, 29.616447157369429 ], [ -95.667998072949288, 29.616522157220807 ], [ -95.668875073650511, 29.616708157940259 ], [ -95.669350073548685, 29.616923158016341 ], [ -95.669793074170599, 29.617394157571201 ], [ -95.670323073577492, 29.618448157791143 ], [ -95.670595074233873, 29.618806158301613 ], [ -95.670714074371176, 29.619073158378253 ], [ -95.670725073911683, 29.619251158163365 ], [ -95.670855073594865, 29.619434157659864 ], [ -95.67122107435415, 29.619723157739813 ], [ -95.671877074611785, 29.620141157997331 ], [ -95.671939074069783, 29.620235158177479 ], [ -95.672132074794106, 29.620364158191627 ], [ -95.672527074688546, 29.620416158196132 ], [ -95.673053074324827, 29.620368157756683 ], [ -95.673561075259471, 29.620230157965405 ], [ -95.673846074394717, 29.620228158320412 ], [ -95.674039075255834, 29.620167158358477 ], [ -95.674084074653081, 29.620129157763245 ], [ -95.674158074717113, 29.620068157750008 ], [ -95.674259074946889, 29.61993815839676 ], [ -95.674342074763089, 29.619832158421865 ], [ -95.674463074915252, 29.619568157871218 ], [ -95.674564074676425, 29.618867157554483 ], [ -95.674842075038001, 29.617843157368696 ], [ -95.675018075226745, 29.617383157595413 ], [ -95.67521207544749, 29.61699815754454 ], [ -95.675249074861298, 29.61695115715608 ], [ -95.675372075034147, 29.616795157264512 ], [ -95.675640075462468, 29.616223156903768 ], [ -95.676107075260617, 29.61557515702804 ], [ -95.676382074813375, 29.615314156917051 ], [ -95.676572075612484, 29.615181157429479 ], [ -95.676951075527825, 29.615055156864962 ], [ -95.677266075395195, 29.614893156837514 ], [ -95.677592075904556, 29.614880157348654 ], [ -95.677814075542443, 29.614966156893132 ], [ -95.678106075672787, 29.615218157155734 ], [ -95.67816107605266, 29.615352156777224 ], [ -95.678177075903903, 29.615630156785404 ], [ -95.678065076008494, 29.61669115753439 ], [ -95.677944075622904, 29.61694815769928 ], [ -95.67787607547298, 29.617444157542156 ], [ -95.677906076067288, 29.617934157129223 ], [ -95.678066075950852, 29.618372157560113 ], [ -95.678144076352936, 29.618481157459211 ], [ -95.678516076336891, 29.619004158160969 ], [ -95.678790075804898, 29.619266157474414 ], [ -95.679182076184745, 29.619524157873411 ], [ -95.679827076462715, 29.619623158085595 ], [ -95.680063076345576, 29.619594157626235 ], [ -95.680503076720299, 29.619649157796115 ], [ -95.680698076833124, 29.619651158058954 ], [ -95.68082407701047, 29.619568157439677 ], [ -95.681025076316345, 29.619569157894517 ], [ -95.681398076310543, 29.619672157672653 ], [ -95.681575076692496, 29.619595158162543 ], [ -95.682290076907989, 29.619508157437345 ], [ -95.682534077506617, 29.619385157295884 ], [ -95.683429076902769, 29.619178157745413 ], [ -95.683626076809929, 29.619157157442828 ], [ -95.683630077205137, 29.619130157903641 ], [ -95.683683077386689, 29.617290156910126 ], [ -95.683778077462748, 29.616540157377234 ], [ -95.683715077533179, 29.613066156407939 ], [ -95.683705076563143, 29.612088156519793 ], [ -95.683693076510536, 29.610769155796852 ], [ -95.683692077347686, 29.610713156280692 ], [ -95.683690076970606, 29.610443155536451 ], [ -95.683685077208338, 29.609816155466529 ], [ -95.683673076875422, 29.608461155337871 ], [ -95.683671077157527, 29.608251154978895 ], [ -95.683653077194819, 29.606247155329218 ], [ -95.683615076973496, 29.605824155216684 ], [ -95.68361307627805, 29.605798155002013 ], [ -95.683612077009968, 29.605269154501752 ], [ -95.683618076305251, 29.605146154621565 ], [ -95.683639076222818, 29.605021154448742 ], [ -95.683681076229391, 29.604874155069183 ], [ -95.683794076474243, 29.604651154790552 ], [ -95.68398807721438, 29.604346154186572 ], [ -95.684009076480848, 29.604328154471524 ], [ -95.684136077245469, 29.604217154505708 ], [ -95.684419076774887, 29.604073154268111 ], [ -95.684756076621412, 29.603961154797727 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1520, "Tract": "48157670904", "Area_SqMi": 1.9923075875052769, "total_2009": 883, "total_2010": 868, "total_2011": 299, "total_2012": 325, "total_2013": 343, "total_2014": 449, "total_2015": 322, "total_2016": 307, "total_2017": 330, "total_2018": 355, "total_2019": 365, "total_2020": 405, "age1": 120, "age2": 255, "age3": 135, "earn1": 139, "earn2": 221, "earn3": 150, "naics_s01": 0, "naics_s02": 2, "naics_s03": 1, "naics_s04": 28, "naics_s05": 13, "naics_s06": 6, "naics_s07": 76, "naics_s08": 104, "naics_s09": 6, "naics_s10": 17, "naics_s11": 12, "naics_s12": 41, "naics_s13": 0, "naics_s14": 6, "naics_s15": 14, "naics_s16": 82, "naics_s17": 0, "naics_s18": 77, "naics_s19": 25, "naics_s20": 0, "race1": 278, "race2": 155, "race3": 2, "race4": 66, "race5": 3, "race6": 6, "ethnicity1": 391, "ethnicity2": 119, "edu1": 80, "edu2": 115, "edu3": 116, "edu4": 79, "Shape_Length": 42511.979633532494, "Shape_Area": 55542125.671132378, "total_2021": 433, "total_2022": 510 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.562157044066979, 29.56340014981409 ], [ -95.56233604382092, 29.56327815040407 ], [ -95.556984042123418, 29.557177149141356 ], [ -95.556815042030621, 29.55694814890699 ], [ -95.555110041995505, 29.555004148817794 ], [ -95.555003041974956, 29.554863148498441 ], [ -95.554232040925854, 29.553956148917958 ], [ -95.553731041678148, 29.553415148275199 ], [ -95.553296041619959, 29.552943148011327 ], [ -95.552636041150095, 29.552230148656747 ], [ -95.551255040738241, 29.55007314803623 ], [ -95.550592039878367, 29.548810147894333 ], [ -95.54991404029191, 29.547733147638034 ], [ -95.548778040139737, 29.545929147050735 ], [ -95.548731039243222, 29.545853147477729 ], [ -95.548689039361676, 29.545788146953775 ], [ -95.547691039658147, 29.544202147158654 ], [ -95.546833039236276, 29.542843146197761 ], [ -95.546736038715267, 29.542700146157699 ], [ -95.546093039138114, 29.541858146317335 ], [ -95.545582038864993, 29.541331146598466 ], [ -95.545490038891614, 29.541263146133701 ], [ -95.544936038519552, 29.540850146285358 ], [ -95.544063037923934, 29.540399145892806 ], [ -95.542921037677417, 29.540113145884757 ], [ -95.542030037388216, 29.540053145794943 ], [ -95.541811038021038, 29.540064145924756 ], [ -95.540966037033414, 29.540107145749527 ], [ -95.540825037553233, 29.540114145846008 ], [ -95.540880037028785, 29.540300146060769 ], [ -95.540884037328198, 29.540551146391152 ], [ -95.540775037096395, 29.54100714633454 ], [ -95.540668037556472, 29.54129214637674 ], [ -95.540512037151132, 29.54170714643924 ], [ -95.540277037721211, 29.542333147091313 ], [ -95.539716037025727, 29.543210147025206 ], [ -95.539195036907486, 29.543763146570711 ], [ -95.538355036618313, 29.544338147112381 ], [ -95.537776036713908, 29.544523147247165 ], [ -95.53749003687436, 29.544724147444413 ], [ -95.537067036477282, 29.545292147220756 ], [ -95.536895036147357, 29.545731147138461 ], [ -95.536884036980183, 29.546018147705638 ], [ -95.536774036505804, 29.54654514736626 ], [ -95.536850036413696, 29.546651147300807 ], [ -95.537180036331662, 29.54823514782916 ], [ -95.537293036991926, 29.548400147624317 ], [ -95.537343037303955, 29.548499147947812 ], [ -95.537369037331374, 29.548593147871948 ], [ -95.537444037068184, 29.548752148185518 ], [ -95.537499036399495, 29.548955147746501 ], [ -95.537942037235155, 29.549561148595522 ], [ -95.538511036865543, 29.550066147947476 ], [ -95.538760037566263, 29.550188148448374 ], [ -95.538990037294298, 29.550385148190841 ], [ -95.539286037528797, 29.550454148656456 ], [ -95.539298037588992, 29.550457148293006 ], [ -95.539537037181333, 29.550545148310821 ], [ -95.539726037008947, 29.550644148445947 ], [ -95.540361037609301, 29.550880148189364 ], [ -95.5405680378189, 29.550908148147485 ], [ -95.540990037801024, 29.551001148798417 ], [ -95.541128037645763, 29.551007148496453 ], [ -95.541449037880128, 29.550996148630489 ], [ -95.54158103834051, 29.551023148642152 ], [ -95.542021037778383, 29.551216148390814 ], [ -95.54211503858977, 29.551265148139318 ], [ -95.542392038469714, 29.551353148897284 ], [ -95.542706038099837, 29.551430148895715 ], [ -95.542998038289483, 29.551525148280938 ], [ -95.542972038513199, 29.551558148515984 ], [ -95.542628038824617, 29.551838148791777 ], [ -95.542174038511988, 29.552018148188754 ], [ -95.541800037806397, 29.552269148541779 ], [ -95.541720037808815, 29.552363148367881 ], [ -95.541463038293216, 29.552828149089414 ], [ -95.540540037495077, 29.552563148705371 ], [ -95.539174037609811, 29.552526148359174 ], [ -95.538341037115899, 29.552520148851507 ], [ -95.537640037490377, 29.552621149306542 ], [ -95.536808036555513, 29.552729148603309 ], [ -95.536733037350743, 29.552751148718887 ], [ -95.536280036438484, 29.552846148610914 ], [ -95.535207036618189, 29.553173148635917 ], [ -95.534521036444715, 29.553411149465934 ], [ -95.533775036523053, 29.553773149102604 ], [ -95.533618036129226, 29.553493148909805 ], [ -95.533519036090453, 29.553288148737753 ], [ -95.533494035692925, 29.553090148881559 ], [ -95.533489035963314, 29.55295514883889 ], [ -95.532524036217779, 29.552969149043225 ], [ -95.53011403531616, 29.553042149133962 ], [ -95.529900034639866, 29.553083149585802 ], [ -95.529696034914423, 29.553142149525947 ], [ -95.529548034709464, 29.553180149375251 ], [ -95.529409034829911, 29.553208149025107 ], [ -95.529331034767907, 29.55321614970152 ], [ -95.529221034698551, 29.553221148827504 ], [ -95.528598034657435, 29.55321514938953 ], [ -95.528585034796606, 29.552724148922337 ], [ -95.528579034843077, 29.552355148949381 ], [ -95.525974033872643, 29.552405149557384 ], [ -95.521100032848267, 29.552545149391563 ], [ -95.520682033116387, 29.552557149556769 ], [ -95.520248032419914, 29.552692149751255 ], [ -95.519888032879024, 29.552907149806899 ], [ -95.519900032967101, 29.553398149635068 ], [ -95.519917032786566, 29.554151149911348 ], [ -95.519928033115292, 29.554618150269786 ], [ -95.519967032964914, 29.556281150335586 ], [ -95.519975032958499, 29.556652150304927 ], [ -95.519985032594164, 29.557012149902747 ], [ -95.520027032342043, 29.558859151081702 ], [ -95.520073033309586, 29.560849151037242 ], [ -95.520472033520605, 29.560688151090719 ], [ -95.520494032537385, 29.560679151502317 ], [ -95.521104033465306, 29.560552151451756 ], [ -95.521532032810413, 29.56057415126801 ], [ -95.521966033345365, 29.56069015067629 ], [ -95.522362033052531, 29.560872150722478 ], [ -95.522689033883793, 29.561042150694711 ], [ -95.522833034166865, 29.561179151527998 ], [ -95.523028033744851, 29.561548151459476 ], [ -95.523109033603262, 29.561768151501109 ], [ -95.523210033532692, 29.562043151504053 ], [ -95.523322034110763, 29.56243615164697 ], [ -95.528539034873987, 29.562464151431485 ], [ -95.528854034783222, 29.562466150874322 ], [ -95.529110035277526, 29.562265151448873 ], [ -95.529513035762236, 29.561989151261368 ], [ -95.529698034989778, 29.561908151092982 ], [ -95.530131035468187, 29.561785150878354 ], [ -95.530490036151747, 29.561778151152044 ], [ -95.530784035607454, 29.561786151072518 ], [ -95.532577036224623, 29.561768150780598 ], [ -95.533369036529493, 29.562066150730931 ], [ -95.533790036871096, 29.562209151398424 ], [ -95.534307037067009, 29.56229915128835 ], [ -95.534682036813194, 29.562330151202286 ], [ -95.535172036615535, 29.562334150936113 ], [ -95.535631037177936, 29.562273150487378 ], [ -95.536142037199127, 29.562151150474904 ], [ -95.537537036981604, 29.561696150658868 ], [ -95.537987037450904, 29.561633150801306 ], [ -95.539396037869651, 29.561595150494192 ], [ -95.542927038447985, 29.561665150386109 ], [ -95.544079038616118, 29.561656150306941 ], [ -95.545088038988155, 29.561637150832762 ], [ -95.546109039157528, 29.561595150343702 ], [ -95.54616704001873, 29.561593150467285 ], [ -95.546392040156888, 29.561589150116962 ], [ -95.548716040218821, 29.561551150198532 ], [ -95.54933904044087, 29.561593150531753 ], [ -95.549881040893979, 29.561703150555324 ], [ -95.550433041076602, 29.561816150402613 ], [ -95.550942040384257, 29.561921150656882 ], [ -95.551657041480325, 29.562081150126637 ], [ -95.552216040815352, 29.562249150167336 ], [ -95.553139041229841, 29.562659150451964 ], [ -95.554727042373841, 29.56335315041915 ], [ -95.555568042548856, 29.563711150247613 ], [ -95.555628042374806, 29.563737150634001 ], [ -95.555678042522146, 29.563758150838517 ], [ -95.55655504268023, 29.564132150477253 ], [ -95.55712704274994, 29.56431415040554 ], [ -95.557801043036221, 29.564430150675442 ], [ -95.55836304258446, 29.56449115071247 ], [ -95.558977042811108, 29.564464150338374 ], [ -95.559656043407387, 29.564401150117654 ], [ -95.56036304317638, 29.564275150091014 ], [ -95.561092043128198, 29.563988150177501 ], [ -95.561782044155933, 29.563654150208496 ], [ -95.562157044066979, 29.56340014981409 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1521, "Tract": "48157672901", "Area_SqMi": 5.180019433319119, "total_2009": 79, "total_2010": 426, "total_2011": 397, "total_2012": 349, "total_2013": 164, "total_2014": 271, "total_2015": 329, "total_2016": 384, "total_2017": 453, "total_2018": 664, "total_2019": 867, "total_2020": 1082, "age1": 1112, "age2": 919, "age3": 277, "earn1": 846, "earn2": 926, "earn3": 536, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 53, "naics_s05": 56, "naics_s06": 35, "naics_s07": 923, "naics_s08": 123, "naics_s09": 3, "naics_s10": 40, "naics_s11": 12, "naics_s12": 85, "naics_s13": 1, "naics_s14": 62, "naics_s15": 23, "naics_s16": 206, "naics_s17": 209, "naics_s18": 357, "naics_s19": 119, "naics_s20": 0, "race1": 1414, "race2": 393, "race3": 14, "race4": 434, "race5": 5, "race6": 48, "ethnicity1": 1541, "ethnicity2": 767, "edu1": 272, "edu2": 281, "edu3": 303, "edu4": 340, "Shape_Length": 61297.871494937848, "Shape_Area": 144410076.10907188, "total_2021": 1332, "total_2022": 2308 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.714883086652591, 29.660936165189764 ], [ -95.714868087172178, 29.660221165183195 ], [ -95.714864087039203, 29.660040164674943 ], [ -95.714823087041836, 29.659135164767601 ], [ -95.714821086694641, 29.659078164473161 ], [ -95.714806086778609, 29.658557164327071 ], [ -95.714245086692401, 29.658204164219548 ], [ -95.713575086548943, 29.65764716428691 ], [ -95.712910085985911, 29.656975164269774 ], [ -95.712741086642012, 29.656744164207215 ], [ -95.712219086415431, 29.656029163858268 ], [ -95.711771086191732, 29.655154163822139 ], [ -95.711506085866532, 29.654636163589036 ], [ -95.710652085684913, 29.652762163946072 ], [ -95.709117085163285, 29.649395162972024 ], [ -95.709098084822401, 29.649353162889589 ], [ -95.709033084940188, 29.649210162869565 ], [ -95.708209084328416, 29.647404162395912 ], [ -95.70694308379538, 29.642965162097479 ], [ -95.706893084172535, 29.642683161972794 ], [ -95.706794084477593, 29.642438161263456 ], [ -95.706710084394956, 29.642221161357227 ], [ -95.704886083177385, 29.638173160708298 ], [ -95.704650083175281, 29.637651160468607 ], [ -95.704608083698687, 29.63755816031054 ], [ -95.704564083647867, 29.637462160214273 ], [ -95.704527083636563, 29.637384160992408 ], [ -95.700896081624151, 29.629385159540828 ], [ -95.698267081238228, 29.62359215827161 ], [ -95.697991080931004, 29.622933157556883 ], [ -95.697885081365925, 29.622680157745044 ], [ -95.696525080867289, 29.619754156857066 ], [ -95.695614080164759, 29.617899157185292 ], [ -95.694800080337998, 29.616607156625292 ], [ -95.693816079203444, 29.615392156403828 ], [ -95.693743079758804, 29.615317156918607 ], [ -95.693653079606193, 29.615217156088558 ], [ -95.693526079905823, 29.615077156291676 ], [ -95.693382079835715, 29.614921156018784 ], [ -95.693163080007835, 29.614695156501188 ], [ -95.692976079023296, 29.614499156437937 ], [ -95.692856079253744, 29.614372156165743 ], [ -95.692602079766473, 29.614123156376852 ], [ -95.692005079339836, 29.613527156410498 ], [ -95.69177107936703, 29.613278156495287 ], [ -95.691429078728177, 29.612926155931383 ], [ -95.691186079085753, 29.612680155636131 ], [ -95.691028078640201, 29.612513156256576 ], [ -95.690866078643779, 29.612350155685437 ], [ -95.690645078557182, 29.612124156325667 ], [ -95.690449078202377, 29.611926156131812 ], [ -95.690257078424537, 29.611722155526216 ], [ -95.690102078606429, 29.61154415572824 ], [ -95.689948078492179, 29.611368155410741 ], [ -95.68976207885666, 29.611151155676495 ], [ -95.689628078059769, 29.610991155970982 ], [ -95.689515078662311, 29.610861155559725 ], [ -95.689382077954775, 29.610689155510808 ], [ -95.689229077940979, 29.610492155901166 ], [ -95.689127078558613, 29.61035115528432 ], [ -95.68899907782, 29.61017315599749 ], [ -95.688876078303409, 29.609997155995625 ], [ -95.688756077975029, 29.609834155724762 ], [ -95.688647078211943, 29.609678155771803 ], [ -95.688539078538511, 29.609525155531294 ], [ -95.68844207808047, 29.609369155394567 ], [ -95.688357077896853, 29.609228155109562 ], [ -95.688268078176776, 29.609077155734262 ], [ -95.688111078099723, 29.608940155380193 ], [ -95.687497077283155, 29.607855155379834 ], [ -95.6871230775253, 29.607290154818923 ], [ -95.686884077579521, 29.606875155266728 ], [ -95.685997077670919, 29.605336154397801 ], [ -95.685493077264226, 29.604383154276494 ], [ -95.685337076548961, 29.604089154334147 ], [ -95.685236077331538, 29.603899154073613 ], [ -95.684756076621412, 29.603961154797727 ], [ -95.684419076774887, 29.604073154268111 ], [ -95.684136077245469, 29.604217154505708 ], [ -95.684009076480848, 29.604328154471524 ], [ -95.68398807721438, 29.604346154186572 ], [ -95.683794076474243, 29.604651154790552 ], [ -95.683681076229391, 29.604874155069183 ], [ -95.683639076222818, 29.605021154448742 ], [ -95.683618076305251, 29.605146154621565 ], [ -95.683612077009968, 29.605269154501752 ], [ -95.68361307627805, 29.605798155002013 ], [ -95.683615076973496, 29.605824155216684 ], [ -95.683653077194819, 29.606247155329218 ], [ -95.683671077157527, 29.608251154978895 ], [ -95.683673076875422, 29.608461155337871 ], [ -95.683685077208338, 29.609816155466529 ], [ -95.683690076970606, 29.610443155536451 ], [ -95.683692077347686, 29.610713156280692 ], [ -95.683693076510536, 29.610769155796852 ], [ -95.683705076563143, 29.612088156519793 ], [ -95.683715077533179, 29.613066156407939 ], [ -95.683778077462748, 29.616540157377234 ], [ -95.683683077386689, 29.617290156910126 ], [ -95.683630077205137, 29.619130157903641 ], [ -95.683626076809929, 29.619157157442828 ], [ -95.683621077693687, 29.619207157355291 ], [ -95.683577077535787, 29.620988158324145 ], [ -95.68356607767582, 29.621397158502464 ], [ -95.683532077883072, 29.622541158241855 ], [ -95.683538077140199, 29.625322158452203 ], [ -95.683377077416864, 29.627533159332142 ], [ -95.683284077593456, 29.628566159790054 ], [ -95.683273077875029, 29.628692159977309 ], [ -95.682914078171891, 29.633352160940198 ], [ -95.682750077619943, 29.635385160493044 ], [ -95.682664077694696, 29.635943161305718 ], [ -95.682569078162217, 29.636304161479703 ], [ -95.682275077638053, 29.637011161574399 ], [ -95.681972077182905, 29.637567161781057 ], [ -95.680908077693658, 29.639512161469796 ], [ -95.680255077303912, 29.640660162075573 ], [ -95.680074077854115, 29.640977161769705 ], [ -95.679661077406081, 29.641741161938757 ], [ -95.679545077498872, 29.641965162214799 ], [ -95.679472077588045, 29.642112162188702 ], [ -95.679402077517949, 29.642286162707421 ], [ -95.679282077326604, 29.642706162954862 ], [ -95.6792130776996, 29.643011162444882 ], [ -95.679186076873904, 29.643204162995715 ], [ -95.679151077120181, 29.643498162675815 ], [ -95.679155076847721, 29.644085162835339 ], [ -95.679190076810087, 29.644661162745873 ], [ -95.679317077626976, 29.646745163154591 ], [ -95.679365077157911, 29.647466163726353 ], [ -95.679400077545537, 29.648160163752731 ], [ -95.679429077895733, 29.64854816403211 ], [ -95.679475077290334, 29.648972163712212 ], [ -95.67952007786819, 29.649659164344673 ], [ -95.679604077356117, 29.650343164321477 ], [ -95.679626077891115, 29.650472163949786 ], [ -95.67967107810837, 29.650737164325012 ], [ -95.679773077759975, 29.651217164020984 ], [ -95.679846078045159, 29.651538164208329 ], [ -95.679925077504649, 29.651809164387075 ], [ -95.679987077297525, 29.652006164787629 ], [ -95.680066077807084, 29.652248164546979 ], [ -95.680246078090235, 29.652733164373952 ], [ -95.680539077756805, 29.653500164749694 ], [ -95.680766078407615, 29.653949164633676 ], [ -95.680604078019485, 29.654005164542291 ], [ -95.680459077901048, 29.654052165194013 ], [ -95.680305078122714, 29.65409416493025 ], [ -95.680160077620314, 29.654126164601738 ], [ -95.680013078065599, 29.65415016515745 ], [ -95.679884077819452, 29.65416616526738 ], [ -95.679599077682965, 29.654185164687732 ], [ -95.679185077369169, 29.654187164933862 ], [ -95.679281077625916, 29.659328166244585 ], [ -95.679327078290527, 29.661771166255441 ], [ -95.679412078229518, 29.666359167304559 ], [ -95.679433077857539, 29.666995167322568 ], [ -95.679458078316046, 29.667261167894264 ], [ -95.679464078248998, 29.667325167894955 ], [ -95.679470078189482, 29.667389167894331 ], [ -95.679528078340752, 29.667897167252825 ], [ -95.679642078163596, 29.668401167658576 ], [ -95.679701078046165, 29.668394167976878 ], [ -95.679829078580511, 29.668386168033166 ], [ -95.680432078858516, 29.668373167860505 ], [ -95.681781078538421, 29.668371167870053 ], [ -95.682654078726742, 29.668370167678148 ], [ -95.682924079359267, 29.66836816729905 ], [ -95.683020079057357, 29.668367167332377 ], [ -95.684946079640952, 29.66835316749161 ], [ -95.685226080119534, 29.668352167380966 ], [ -95.687746080174506, 29.668343167921837 ], [ -95.687887080333667, 29.668341167489348 ], [ -95.687925080797811, 29.668340167882285 ], [ -95.687962080438851, 29.668340167071204 ], [ -95.688037080513354, 29.668339167512979 ], [ -95.688080080196272, 29.668338167877028 ], [ -95.688193080995703, 29.668338167869972 ], [ -95.689293080576604, 29.668334167448535 ], [ -95.691354081453412, 29.668320167153738 ], [ -95.691411081343674, 29.668319167647635 ], [ -95.693287081782131, 29.668314167008731 ], [ -95.694187082129019, 29.66831616760798 ], [ -95.694821082159891, 29.668309167408101 ], [ -95.696610082681588, 29.668298166935838 ], [ -95.69685408242124, 29.668289166890123 ], [ -95.696957083138301, 29.668280167334977 ], [ -95.697046082930996, 29.668253167156266 ], [ -95.697119083178578, 29.668207167525413 ], [ -95.697174082751715, 29.668136167264667 ], [ -95.69720308265471, 29.668055167269625 ], [ -95.697214083238634, 29.667948167520262 ], [ -95.697214082643129, 29.667825167419462 ], [ -95.697184082323702, 29.666732166940587 ], [ -95.69718008298716, 29.666498166660869 ], [ -95.697154082345136, 29.664868166449818 ], [ -95.697151083014404, 29.664501166099395 ], [ -95.697090082191281, 29.661479165801396 ], [ -95.697096082768056, 29.661394165637265 ], [ -95.697114082606646, 29.661320165638404 ], [ -95.697148082966834, 29.661258165331173 ], [ -95.697203082365249, 29.661209165369076 ], [ -95.697280082652625, 29.661175165366199 ], [ -95.697378082815405, 29.661158166057955 ], [ -95.697495082655593, 29.661153165403171 ], [ -95.698540082463509, 29.661143165963832 ], [ -95.701985083636004, 29.661096165517726 ], [ -95.702380083966958, 29.661091165544921 ], [ -95.703695084622041, 29.661067165416 ], [ -95.705174084394855, 29.661050165703422 ], [ -95.706055084830297, 29.661036165031767 ], [ -95.707586085526302, 29.66101916538134 ], [ -95.707927085700035, 29.66101316575223 ], [ -95.708863085498663, 29.660999165079087 ], [ -95.708952086072273, 29.660998165076617 ], [ -95.712210086263411, 29.660966165508459 ], [ -95.712721086029418, 29.660961165062641 ], [ -95.713244086750294, 29.660959165151759 ], [ -95.714883086652591, 29.660936165189764 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1522, "Tract": "48157674504", "Area_SqMi": 4.1459037254303635, "total_2009": 160, "total_2010": 132, "total_2011": 118, "total_2012": 134, "total_2013": 117, "total_2014": 204, "total_2015": 213, "total_2016": 289, "total_2017": 360, "total_2018": 272, "total_2019": 258, "total_2020": 253, "age1": 100, "age2": 220, "age3": 61, "earn1": 108, "earn2": 115, "earn3": 158, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 28, "naics_s05": 0, "naics_s06": 14, "naics_s07": 33, "naics_s08": 3, "naics_s09": 0, "naics_s10": 5, "naics_s11": 49, "naics_s12": 49, "naics_s13": 0, "naics_s14": 8, "naics_s15": 53, "naics_s16": 73, "naics_s17": 30, "naics_s18": 20, "naics_s19": 16, "naics_s20": 0, "race1": 259, "race2": 73, "race3": 3, "race4": 37, "race5": 1, "race6": 8, "ethnicity1": 309, "ethnicity2": 72, "edu1": 49, "edu2": 61, "edu3": 90, "edu4": 81, "Shape_Length": 51085.667714743628, "Shape_Area": 115580700.07985614, "total_2021": 279, "total_2022": 381 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.556549039479933, 29.496056136300176 ], [ -95.556564039088769, 29.495876136588425 ], [ -95.556544039427678, 29.495552136806406 ], [ -95.556543038884641, 29.495263136898274 ], [ -95.556484039108, 29.494725136622211 ], [ -95.556455039861333, 29.494620136141844 ], [ -95.556293038829651, 29.494240136200791 ], [ -95.555811039571708, 29.493104135804227 ], [ -95.553813038855623, 29.491132135748455 ], [ -95.553806038816589, 29.491125135475578 ], [ -95.552623038264443, 29.49050313587345 ], [ -95.551801038339576, 29.490071135999351 ], [ -95.549236037047592, 29.489660135805451 ], [ -95.546495036175415, 29.4893771355502 ], [ -95.545166035975058, 29.489193135297203 ], [ -95.54491003586196, 29.488893135429365 ], [ -95.544306035643913, 29.487258135516985 ], [ -95.544003036162067, 29.486184135262715 ], [ -95.543977035743282, 29.485578135031229 ], [ -95.544170035372275, 29.484229135025565 ], [ -95.544658035591056, 29.483530134495442 ], [ -95.545346036158833, 29.482492134462525 ], [ -95.545889035614181, 29.482153134136713 ], [ -95.54671503675354, 29.481644133881026 ], [ -95.547012036314811, 29.481461133875918 ], [ -95.547397036112145, 29.480784133420521 ], [ -95.547577036754305, 29.480466133891316 ], [ -95.547728036397373, 29.479776133994221 ], [ -95.547894036984729, 29.479019133281124 ], [ -95.547689036048212, 29.478342133522663 ], [ -95.547371036120495, 29.477290132890968 ], [ -95.547238036074006, 29.476849132892301 ], [ -95.546810035717115, 29.476008133255121 ], [ -95.546036035849482, 29.474489132643196 ], [ -95.546015035332275, 29.474438132320401 ], [ -95.545912035963596, 29.474244132716525 ], [ -95.545843036119692, 29.474110132505569 ], [ -95.545797035858499, 29.474019132337766 ], [ -95.545785035650852, 29.473995132005555 ], [ -95.545748035297962, 29.473882132214747 ], [ -95.545626035685075, 29.473513131962477 ], [ -95.544958035086253, 29.473523132281329 ], [ -95.54310503518461, 29.473499132525195 ], [ -95.542187035063094, 29.473495132261746 ], [ -95.540094034089549, 29.473496132382209 ], [ -95.539776033812331, 29.473496132712032 ], [ -95.538287033942524, 29.473497133033 ], [ -95.535616033044207, 29.473499133027975 ], [ -95.535466033190772, 29.473500132679703 ], [ -95.535196032607701, 29.473502133087045 ], [ -95.534929032958132, 29.473504133142242 ], [ -95.534822032607039, 29.473505132364821 ], [ -95.534646033032189, 29.473506132927561 ], [ -95.530349032191282, 29.473538133186256 ], [ -95.527563030645837, 29.473557133085418 ], [ -95.515228028435246, 29.473639133134963 ], [ -95.514308027217766, 29.473646133151707 ], [ -95.507770025841538, 29.4736301332693 ], [ -95.507766026433472, 29.4736841335843 ], [ -95.507707025901624, 29.474510133711377 ], [ -95.507600025916716, 29.475629134224146 ], [ -95.507475025744583, 29.476202133891238 ], [ -95.507001025827549, 29.477527134748254 ], [ -95.506777025545603, 29.478041134473465 ], [ -95.506422025588719, 29.478647134505394 ], [ -95.506079025842297, 29.479121134939284 ], [ -95.505799025332593, 29.47964213515769 ], [ -95.505697025299909, 29.480083135034164 ], [ -95.505641026151508, 29.480507134952237 ], [ -95.505605025319483, 29.480781135297509 ], [ -95.50563102608686, 29.480926135331686 ], [ -95.505789026293584, 29.481400135763515 ], [ -95.506025026439275, 29.481942135329355 ], [ -95.506145026198794, 29.482243135878722 ], [ -95.506474025595622, 29.482665135454283 ], [ -95.506962026378361, 29.483021135896173 ], [ -95.508934026285971, 29.484209135532595 ], [ -95.50915802733897, 29.484348135556637 ], [ -95.509281027035499, 29.48442113588353 ], [ -95.509409027044896, 29.484489135800843 ], [ -95.509539027090554, 29.484552135460028 ], [ -95.509673026618756, 29.484610135627001 ], [ -95.510983027214508, 29.484970135751386 ], [ -95.511690027562054, 29.485169135521009 ], [ -95.512440027803891, 29.485373136197715 ], [ -95.512853028144818, 29.485516136135082 ], [ -95.513148028151917, 29.485649135760006 ], [ -95.51357002841425, 29.485905136126107 ], [ -95.513945027880041, 29.486252136083639 ], [ -95.514244028330666, 29.486598136431699 ], [ -95.514420028424937, 29.486878135701666 ], [ -95.514539028424466, 29.487111136114812 ], [ -95.514704028155577, 29.487535135996101 ], [ -95.51491302835629, 29.488110136160437 ], [ -95.514999028020185, 29.488288136514047 ], [ -95.515084028101541, 29.488421136860833 ], [ -95.515241028394087, 29.488649136299507 ], [ -95.515365028744966, 29.488848136348466 ], [ -95.515488029131504, 29.489024136707524 ], [ -95.515659028989703, 29.489271136665945 ], [ -95.515882029027978, 29.489603136335631 ], [ -95.516086028718121, 29.489888136326417 ], [ -95.516243028670885, 29.490073136543572 ], [ -95.516495028773491, 29.490371136559634 ], [ -95.516244029296914, 29.49075113725619 ], [ -95.516194029115766, 29.49083013713259 ], [ -95.515922028494714, 29.491200136794184 ], [ -95.515763028653566, 29.49139113679961 ], [ -95.515554028577625, 29.491506137121256 ], [ -95.515405028593605, 29.491590137078376 ], [ -95.515116028698358, 29.491736137037268 ], [ -95.514967029029648, 29.491773137049563 ], [ -95.514298028655162, 29.491801136883502 ], [ -95.51393102886685, 29.49174413742567 ], [ -95.51347202867133, 29.491561136720385 ], [ -95.512860028305582, 29.491474136784674 ], [ -95.512390028404667, 29.491502137244201 ], [ -95.512289028099588, 29.491520136873252 ], [ -95.512084027853547, 29.491557137234036 ], [ -95.511912027909375, 29.491645136803687 ], [ -95.511610027560835, 29.49180113753955 ], [ -95.511243027590396, 29.492017136990945 ], [ -95.511066027309312, 29.492186137048957 ], [ -95.510781027424287, 29.492584137275848 ], [ -95.510736027417053, 29.492711137287145 ], [ -95.510892027645809, 29.492945137462854 ], [ -95.511313027890949, 29.493579137736205 ], [ -95.511609028222722, 29.494112137569559 ], [ -95.512157027747691, 29.494917138032925 ], [ -95.512413027954963, 29.49529413777039 ], [ -95.512733028068752, 29.495828138278394 ], [ -95.51278902784783, 29.495905138431539 ], [ -95.512846028216714, 29.496064137958072 ], [ -95.512852028021811, 29.496169138357299 ], [ -95.512814028355294, 29.496433137833034 ], [ -95.512707027927704, 29.49685613841288 ], [ -95.51269502784686, 29.497059138157095 ], [ -95.512729028672936, 29.497147138554404 ], [ -95.512764028426901, 29.497235137924523 ], [ -95.513009027951412, 29.49763113867348 ], [ -95.513009028594254, 29.497741138664736 ], [ -95.51288302808041, 29.497868138127522 ], [ -95.512826028037608, 29.497966138113185 ], [ -95.512788027895041, 29.498032138809688 ], [ -95.512663027905106, 29.498362138491753 ], [ -95.512625028560876, 29.498566138762151 ], [ -95.512593028535321, 29.498835138473254 ], [ -95.512600028107599, 29.499055138693272 ], [ -95.512618027899549, 29.499220138908758 ], [ -95.512675028489525, 29.499456138690462 ], [ -95.512846028430147, 29.500001139106885 ], [ -95.513328028257817, 29.49998613913991 ], [ -95.514409029295919, 29.49995313925557 ], [ -95.51563002877775, 29.49991613845847 ], [ -95.516473029746976, 29.49988713885466 ], [ -95.517344029090836, 29.499858138678491 ], [ -95.519536030563813, 29.499785138566214 ], [ -95.519758030619641, 29.49977613905099 ], [ -95.520557030130959, 29.499745138373033 ], [ -95.521652030597423, 29.499703138705407 ], [ -95.523081030665722, 29.499663138818402 ], [ -95.524034030991643, 29.499634138687195 ], [ -95.524358030950395, 29.499625138567914 ], [ -95.524509031133874, 29.499621138860892 ], [ -95.525637031575542, 29.49957313866086 ], [ -95.526236032347455, 29.499548138707897 ], [ -95.526815032513156, 29.499529138225384 ], [ -95.529166032353061, 29.499454138451824 ], [ -95.529549032834183, 29.499441138073081 ], [ -95.5297410323642, 29.499434138614735 ], [ -95.535796033954952, 29.499235137748787 ], [ -95.545266036917923, 29.498909137387809 ], [ -95.546622037528877, 29.498864137877622 ], [ -95.546843037572685, 29.498857137507574 ], [ -95.546917037045318, 29.498866137313513 ], [ -95.546991037464224, 29.498857137627315 ], [ -95.547056036644733, 29.49885413745988 ], [ -95.547139036949915, 29.498845137321144 ], [ -95.547428037110848, 29.498812137120602 ], [ -95.5480360369328, 29.498790137326232 ], [ -95.548618037549062, 29.498771137277298 ], [ -95.549040037150675, 29.498757137613822 ], [ -95.549607038060017, 29.49874113733128 ], [ -95.549907038042122, 29.498732137338955 ], [ -95.550361037838186, 29.498720137584325 ], [ -95.551487038247899, 29.49868213711029 ], [ -95.551518038041038, 29.49868113704499 ], [ -95.55220603861828, 29.498662137571426 ], [ -95.553384038256141, 29.498617137172022 ], [ -95.553905039353339, 29.498605137269308 ], [ -95.554892039484471, 29.498577137333641 ], [ -95.555328039309785, 29.498511136854329 ], [ -95.555666039240094, 29.498503136779181 ], [ -95.555854039322796, 29.498476136976436 ], [ -95.555987039167334, 29.498473137267094 ], [ -95.556005039056686, 29.49844913668063 ], [ -95.556061039159474, 29.498352137090468 ], [ -95.556105039257559, 29.498251137199247 ], [ -95.556130039580395, 29.498182136957436 ], [ -95.55616603983762, 29.498041137164861 ], [ -95.556175039441499, 29.497970136792258 ], [ -95.556187039393919, 29.497790136599956 ], [ -95.556192039898121, 29.497758137269074 ], [ -95.556202039770952, 29.497699136715738 ], [ -95.556205039425208, 29.497683137280852 ], [ -95.556236039756612, 29.497541136636304 ], [ -95.556306039414338, 29.497296136811851 ], [ -95.556356039088143, 29.4970471372676 ], [ -95.556379039080767, 29.496832136515014 ], [ -95.556383039444071, 29.496724136434086 ], [ -95.556411039114195, 29.49665613685816 ], [ -95.556466039819171, 29.496483136376597 ], [ -95.556549039479933, 29.496056136300176 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1523, "Tract": "48157670202", "Area_SqMi": 0.90365043187403438, "total_2009": 166, "total_2010": 87, "total_2011": 128, "total_2012": 115, "total_2013": 132, "total_2014": 110, "total_2015": 106, "total_2016": 113, "total_2017": 99, "total_2018": 110, "total_2019": 101, "total_2020": 84, "age1": 23, "age2": 45, "age3": 12, "earn1": 31, "earn2": 32, "earn3": 17, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 0, "naics_s06": 0, "naics_s07": 44, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 7, "naics_s17": 3, "naics_s18": 13, "naics_s19": 2, "naics_s20": 0, "race1": 40, "race2": 22, "race3": 1, "race4": 14, "race5": 0, "race6": 3, "ethnicity1": 54, "ethnicity2": 26, "edu1": 21, "edu2": 14, "edu3": 14, "edu4": 8, "Shape_Length": 22331.816571861429, "Shape_Area": 25192227.427476846, "total_2021": 85, "total_2022": 80 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.484725026336648, 29.607894162124857 ], [ -95.484730025739609, 29.607684161617588 ], [ -95.4847090260469, 29.607510161800469 ], [ -95.48468302644153, 29.607347161485368 ], [ -95.484625025844224, 29.607131161971949 ], [ -95.484572025817542, 29.606945161519231 ], [ -95.484551025920794, 29.606831161538736 ], [ -95.484535025721655, 29.606678161957014 ], [ -95.484530026009551, 29.606192161182307 ], [ -95.484497026108045, 29.605448161243888 ], [ -95.484525025663316, 29.604735161445184 ], [ -95.484516025511198, 29.604381160997399 ], [ -95.484508025856911, 29.604051160970375 ], [ -95.48449202526082, 29.603389161374107 ], [ -95.484462025254658, 29.602680160660924 ], [ -95.484284025915599, 29.6018911605995 ], [ -95.483954025668339, 29.601072161048251 ], [ -95.483521025404897, 29.600338160744908 ], [ -95.483233025303889, 29.599969160385051 ], [ -95.482882025636655, 29.599536160595868 ], [ -95.482498024590939, 29.599004160225547 ], [ -95.482231025091792, 29.598506160028972 ], [ -95.482097024839732, 29.59814616007689 ], [ -95.482058025024784, 29.598042159787234 ], [ -95.481999024662372, 29.597884159815731 ], [ -95.481848025184505, 29.597276159462066 ], [ -95.481759024907703, 29.596461159735735 ], [ -95.481796024767817, 29.595903159430417 ], [ -95.481878024362729, 29.595444159393878 ], [ -95.482035024994829, 29.594852159597909 ], [ -95.482106024638114, 29.59463415957724 ], [ -95.482523024319306, 29.59382415888853 ], [ -95.48301702462976, 29.593009159411899 ], [ -95.483151024530912, 29.592775158755515 ], [ -95.483305024881972, 29.592521158655632 ], [ -95.48357702479403, 29.592018158445477 ], [ -95.483611024931221, 29.591956158983127 ], [ -95.483691025130483, 29.591770159061479 ], [ -95.483769024881752, 29.591586158297087 ], [ -95.483951025259913, 29.590940158830119 ], [ -95.4840650253375, 29.590324158731015 ], [ -95.483101024476284, 29.590313158726918 ], [ -95.482547024728134, 29.59027615821056 ], [ -95.482016024407272, 29.590198158480312 ], [ -95.481725023978086, 29.590167158269519 ], [ -95.481418024776758, 29.590159158417986 ], [ -95.481025023882097, 29.590158158792772 ], [ -95.480614024462085, 29.590197158823607 ], [ -95.480119024020894, 29.590281158340225 ], [ -95.479817024031021, 29.590361158612907 ], [ -95.479519023949933, 29.590468158822304 ], [ -95.479177023586686, 29.590614158712118 ], [ -95.478784023365279, 29.59080915864244 ], [ -95.478336023718484, 29.591006158671817 ], [ -95.477955023397087, 29.591156158517727 ], [ -95.477594022990957, 29.591291158745072 ], [ -95.477083023508527, 29.591427159001867 ], [ -95.476325022837202, 29.591547158689853 ], [ -95.475883023482197, 29.591620158613726 ], [ -95.475570022834134, 29.591631159372763 ], [ -95.47527602328185, 29.591641158904594 ], [ -95.474777022844748, 29.591646159121439 ], [ -95.474565022483134, 29.591597158654391 ], [ -95.473896022556772, 29.591490158762234 ], [ -95.473578021937982, 29.591412158649874 ], [ -95.47329102255037, 29.591344158959764 ], [ -95.472989022125731, 29.591266158598401 ], [ -95.472744022058237, 29.5912141593044 ], [ -95.472541022626956, 29.591188158530358 ], [ -95.472228021716987, 29.591152158761709 ], [ -95.471811022211014, 29.591120159261898 ], [ -95.471608022355781, 29.591105158929611 ], [ -95.471274021363215, 29.591047158902118 ], [ -95.470888021752657, 29.5909641585259 ], [ -95.470466021202029, 29.590849158494994 ], [ -95.470169021022997, 29.590755158993179 ], [ -95.469578021770303, 29.590509158612619 ], [ -95.468291021624623, 29.593016159077436 ], [ -95.467568021314236, 29.594470160127731 ], [ -95.467041020707285, 29.59551315965648 ], [ -95.466442020427934, 29.596724159878871 ], [ -95.466203021108768, 29.597206160425181 ], [ -95.465857020900103, 29.597964160375792 ], [ -95.46551902109131, 29.598635160972037 ], [ -95.465143020094885, 29.599378160974556 ], [ -95.465052020936852, 29.599604161000379 ], [ -95.465326020496903, 29.599738160585709 ], [ -95.468710021522028, 29.601163161551476 ], [ -95.469126022003323, 29.6013381610979 ], [ -95.471799022854213, 29.602632161581266 ], [ -95.472263022707097, 29.602855161167117 ], [ -95.472571022860109, 29.603002161241875 ], [ -95.47297202273289, 29.603195161200045 ], [ -95.473835022662357, 29.6036011617188 ], [ -95.474126023048001, 29.603738161485165 ], [ -95.475918023496234, 29.604681161265091 ], [ -95.476026023150894, 29.604738161242505 ], [ -95.476711024015131, 29.604973161726896 ], [ -95.47692602368754, 29.60503816189728 ], [ -95.477470024138668, 29.605294161530775 ], [ -95.478020024435608, 29.605553162048022 ], [ -95.478626024691692, 29.605838161685675 ], [ -95.48438202600434, 29.608525162367556 ], [ -95.484435025624833, 29.608550161745779 ], [ -95.484642025517545, 29.608188162466391 ], [ -95.484672025538018, 29.608126162450759 ], [ -95.484703026219847, 29.608013162321523 ], [ -95.484725026336648, 29.607894162124857 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1524, "Tract": "48157673107", "Area_SqMi": 1.8872894784752055, "total_2009": 800, "total_2010": 1122, "total_2011": 398, "total_2012": 438, "total_2013": 415, "total_2014": 311, "total_2015": 503, "total_2016": 852, "total_2017": 753, "total_2018": 686, "total_2019": 976, "total_2020": 743, "age1": 253, "age2": 508, "age3": 235, "earn1": 205, "earn2": 291, "earn3": 500, "naics_s01": 1, "naics_s02": 2, "naics_s03": 0, "naics_s04": 23, "naics_s05": 0, "naics_s06": 16, "naics_s07": 194, "naics_s08": 6, "naics_s09": 64, "naics_s10": 36, "naics_s11": 7, "naics_s12": 56, "naics_s13": 4, "naics_s14": 119, "naics_s15": 21, "naics_s16": 276, "naics_s17": 23, "naics_s18": 115, "naics_s19": 33, "naics_s20": 0, "race1": 680, "race2": 124, "race3": 6, "race4": 158, "race5": 0, "race6": 28, "ethnicity1": 774, "ethnicity2": 222, "edu1": 128, "edu2": 176, "edu3": 209, "edu4": 230, "Shape_Length": 29213.863708535649, "Shape_Area": 52614400.531663939, "total_2021": 973, "total_2022": 996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.801739113329873, 29.753197180681141 ], [ -95.80181011301643, 29.75313318078609 ], [ -95.801485112856554, 29.752850180649855 ], [ -95.801306113257198, 29.752694181007037 ], [ -95.801197112996363, 29.752601181006764 ], [ -95.799962112469387, 29.751552181070466 ], [ -95.799368112420126, 29.751048180616628 ], [ -95.79906711231115, 29.750782180544523 ], [ -95.798958112279962, 29.750670180340151 ], [ -95.79894311254651, 29.750642180725045 ], [ -95.798927112628903, 29.750611180530228 ], [ -95.798927112639575, 29.750584180082935 ], [ -95.798927112289022, 29.750549180129394 ], [ -95.798892112527028, 29.750578180307155 ], [ -95.798842112394155, 29.750539180636842 ], [ -95.798567112380795, 29.750329180530585 ], [ -95.798182112659575, 29.750013180614236 ], [ -95.797982112615131, 29.74984218083452 ], [ -95.797929112198091, 29.749772180643962 ], [ -95.797823112166057, 29.74970618033803 ], [ -95.797474112239499, 29.749406180123984 ], [ -95.797328112058835, 29.74928018063834 ], [ -95.796893111807762, 29.748906179968582 ], [ -95.795844111678107, 29.748010180460994 ], [ -95.79548711112956, 29.747708179986454 ], [ -95.794967111459343, 29.747268179666353 ], [ -95.794902111027923, 29.74721217974848 ], [ -95.794852111421704, 29.747169180087443 ], [ -95.794200111063702, 29.746612179908407 ], [ -95.793712110609064, 29.746197179481271 ], [ -95.793679110964874, 29.746169179882134 ], [ -95.793614110878252, 29.746113180199732 ], [ -95.792932110665504, 29.745533179892863 ], [ -95.792874111134083, 29.745483179825957 ], [ -95.791732110687235, 29.744539179638338 ], [ -95.791089110712122, 29.744002179329243 ], [ -95.790979110608703, 29.743910179852758 ], [ -95.789637109585811, 29.74278917938441 ], [ -95.789392110083256, 29.742575179087645 ], [ -95.789315109345807, 29.74249917911839 ], [ -95.789278109619204, 29.742466178795333 ], [ -95.789246109218908, 29.742429178908612 ], [ -95.789179109155754, 29.742362178918022 ], [ -95.789170109408047, 29.742354179421906 ], [ -95.789145109605926, 29.742332179313749 ], [ -95.789087109996615, 29.742274178842262 ], [ -95.789062109758817, 29.742246179281693 ], [ -95.789038109382545, 29.742221179472878 ], [ -95.788953109903844, 29.742134179225094 ], [ -95.788903109902733, 29.742082179370765 ], [ -95.788780109503989, 29.741975178737832 ], [ -95.788682109975227, 29.741883178734316 ], [ -95.78813810889514, 29.741424179093194 ], [ -95.787936108914607, 29.741328178872365 ], [ -95.787736109359315, 29.741180179199795 ], [ -95.787517109358859, 29.74101817865213 ], [ -95.787162109035307, 29.740711178459499 ], [ -95.786707109153056, 29.740381178493433 ], [ -95.78617210901821, 29.740061179114431 ], [ -95.785909108856174, 29.739906178506256 ], [ -95.785701108677316, 29.739813179000986 ], [ -95.785316108441975, 29.739649178526797 ], [ -95.783783108245146, 29.739313179014054 ], [ -95.782885107693374, 29.73907817875569 ], [ -95.782651107743732, 29.738990178541972 ], [ -95.782598107339922, 29.738970179057695 ], [ -95.781828108008568, 29.738584178838906 ], [ -95.781362107919279, 29.739284178605892 ], [ -95.780899106966146, 29.73996017886483 ], [ -95.77980010729938, 29.74157117975458 ], [ -95.779504106759589, 29.741918179078571 ], [ -95.779228106710448, 29.742244179901498 ], [ -95.778932107503977, 29.742520179397804 ], [ -95.778606106729299, 29.742754179291524 ], [ -95.778330106598375, 29.742959179545608 ], [ -95.778014107115482, 29.743173180007904 ], [ -95.777698106676979, 29.743347180149559 ], [ -95.777178106157692, 29.743592179519773 ], [ -95.776576106679798, 29.743796180269932 ], [ -95.776249106289129, 29.74387717968823 ], [ -95.776086106182362, 29.743918179881771 ], [ -95.775614106182843, 29.74400218002048 ], [ -95.775182106382829, 29.74408417992149 ], [ -95.774937106120149, 29.744122179720947 ], [ -95.774665105540265, 29.744146179963131 ], [ -95.774297106036585, 29.74415718012277 ], [ -95.773549105497082, 29.74415718047419 ], [ -95.77318310538918, 29.744157179961331 ], [ -95.772834105334979, 29.744156179897615 ], [ -95.772833106016037, 29.744258179785259 ], [ -95.772831105294117, 29.744524180379315 ], [ -95.772919105327162, 29.745282180202853 ], [ -95.773041105381949, 29.745834180832933 ], [ -95.773201105592193, 29.746387180346453 ], [ -95.773631106178101, 29.747562181188602 ], [ -95.773734105923324, 29.747740181238033 ], [ -95.774143106391193, 29.748356180482617 ], [ -95.774276105890209, 29.748572180569724 ], [ -95.775033106611119, 29.749901181209289 ], [ -95.775190106866162, 29.750167181196421 ], [ -95.775438106684391, 29.750595181262177 ], [ -95.775678106847948, 29.751200181283291 ], [ -95.77577610694911, 29.751540181768096 ], [ -95.775842106734331, 29.751753181360975 ], [ -95.775866106852746, 29.751862181793449 ], [ -95.775986107163732, 29.752478181394814 ], [ -95.776036106824961, 29.75267018188811 ], [ -95.776091107142662, 29.752967182049353 ], [ -95.776111106581155, 29.753335181514604 ], [ -95.776111107283739, 29.753969181795227 ], [ -95.77612010733742, 29.754752181821431 ], [ -95.776101107349717, 29.755424182561114 ], [ -95.776101107083122, 29.756187182173832 ], [ -95.77609910664755, 29.756316182502587 ], [ -95.776099106527937, 29.756480182289007 ], [ -95.776100107141517, 29.756534182186506 ], [ -95.776101106768337, 29.756617182713924 ], [ -95.776097106669454, 29.756739182378315 ], [ -95.776095106708027, 29.756798182555116 ], [ -95.776092106489429, 29.756877182302528 ], [ -95.776115106885484, 29.758553182497426 ], [ -95.776110107584188, 29.760209183241518 ], [ -95.776096106756796, 29.760534183026252 ], [ -95.776093106967153, 29.760592183405102 ], [ -95.776387106894987, 29.760755183133991 ], [ -95.776639106822458, 29.760896183463114 ], [ -95.777611107568688, 29.761444183419858 ], [ -95.78247110909895, 29.764164184213385 ], [ -95.783041108849815, 29.764483184279388 ], [ -95.785433109848071, 29.765824183707597 ], [ -95.786746109873619, 29.766559183951884 ], [ -95.786983110251185, 29.766349184431061 ], [ -95.78759611058031, 29.765805184220433 ], [ -95.789543110701231, 29.764058183898012 ], [ -95.78960811037021, 29.764001183182661 ], [ -95.789705110783316, 29.763915183159042 ], [ -95.790597111073964, 29.763127183764183 ], [ -95.791242110727055, 29.762551182987199 ], [ -95.792733111721802, 29.761227183151188 ], [ -95.79485611206502, 29.759334182663576 ], [ -95.795112112349287, 29.759107182311517 ], [ -95.795457111905776, 29.758800182210237 ], [ -95.79581511168665, 29.758483182031515 ], [ -95.795855112542171, 29.758448181884173 ], [ -95.795873111679754, 29.758431181813805 ], [ -95.795892111742489, 29.758415182255806 ], [ -95.795917111641032, 29.758393182355487 ], [ -95.796163112108587, 29.758170182126399 ], [ -95.796536112727296, 29.757836182286848 ], [ -95.796597111853956, 29.757781182013169 ], [ -95.796674112260604, 29.757712181759839 ], [ -95.797571112061405, 29.7569181814785 ], [ -95.797836112912762, 29.756682182230527 ], [ -95.798110112629232, 29.756438181395474 ], [ -95.798438113105277, 29.756146181738018 ], [ -95.79902511264774, 29.755618181692782 ], [ -95.799493113043738, 29.755209181298856 ], [ -95.79959311282613, 29.755123180960798 ], [ -95.801739113329873, 29.753197180681141 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1525, "Tract": "48157672303", "Area_SqMi": 0.52685775987996164, "total_2009": 233, "total_2010": 234, "total_2011": 207, "total_2012": 277, "total_2013": 301, "total_2014": 344, "total_2015": 373, "total_2016": 336, "total_2017": 354, "total_2018": 421, "total_2019": 435, "total_2020": 467, "age1": 169, "age2": 183, "age3": 98, "earn1": 115, "earn2": 218, "earn3": 117, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 7, "naics_s07": 285, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 14, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 76, "naics_s17": 0, "naics_s18": 44, "naics_s19": 20, "naics_s20": 0, "race1": 243, "race2": 92, "race3": 5, "race4": 106, "race5": 0, "race6": 4, "ethnicity1": 309, "ethnicity2": 141, "edu1": 57, "edu2": 79, "edu3": 86, "edu4": 59, "Shape_Length": 19177.910392363963, "Shape_Area": 14687892.619385311, "total_2021": 449, "total_2022": 450 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.650629070054492, 29.650532164883451 ], [ -95.650903070023929, 29.649792164756072 ], [ -95.650406069748698, 29.649616165067869 ], [ -95.649832069872588, 29.649351165152385 ], [ -95.648694069316548, 29.64876416510829 ], [ -95.648559069431784, 29.648694164654295 ], [ -95.647781069284335, 29.648414164711259 ], [ -95.647293068929301, 29.64826916447684 ], [ -95.646077068459661, 29.648108164861636 ], [ -95.645528068881248, 29.648105164857913 ], [ -95.644877068853802, 29.648116164618742 ], [ -95.644601069026322, 29.648141164859144 ], [ -95.644362068208267, 29.648182165121906 ], [ -95.644090068590771, 29.648249164681605 ], [ -95.643464068819938, 29.648418165168557 ], [ -95.642556068024845, 29.648786165390977 ], [ -95.641734068126695, 29.649106165388133 ], [ -95.641442067468617, 29.649206165282667 ], [ -95.64107406795948, 29.649300164906901 ], [ -95.640730067735888, 29.649366165097458 ], [ -95.640320067983751, 29.649429165634572 ], [ -95.639994067086135, 29.6494531650218 ], [ -95.639609067813609, 29.64946716524064 ], [ -95.639508067845995, 29.649464165620888 ], [ -95.639397067387051, 29.649463165102709 ], [ -95.639399067367037, 29.649536165023193 ], [ -95.63939906711002, 29.649560165063043 ], [ -95.639403067350386, 29.649695165449163 ], [ -95.639501067126531, 29.653172166353109 ], [ -95.639507067891046, 29.653406165815973 ], [ -95.639531067212317, 29.654229165941246 ], [ -95.639590067837403, 29.656824166386677 ], [ -95.639617068014587, 29.657965166797442 ], [ -95.6396320674408, 29.658451167476027 ], [ -95.639643067972457, 29.65994216697538 ], [ -95.639660068398825, 29.661082168064031 ], [ -95.639685068439135, 29.662285168137817 ], [ -95.639686067880163, 29.662323167676213 ], [ -95.639688067951496, 29.662463167598528 ], [ -95.639741067882255, 29.665131168825567 ], [ -95.639777068173757, 29.665893168409951 ], [ -95.639796068058232, 29.667747169325992 ], [ -95.639822068174453, 29.668323169510156 ], [ -95.640381068463526, 29.668322169008345 ], [ -95.640998068122414, 29.668314169206425 ], [ -95.641606068982256, 29.668303168860131 ], [ -95.642213069068347, 29.668319168883183 ], [ -95.642238068531569, 29.668319169471033 ], [ -95.643287069578591, 29.668317168856859 ], [ -95.643275068835692, 29.667979168644464 ], [ -95.643228068991107, 29.666647168643731 ], [ -95.643242069404366, 29.665049168285243 ], [ -95.643243069056567, 29.664962168438851 ], [ -95.643289068502625, 29.664184168392069 ], [ -95.643301068923449, 29.663984168341941 ], [ -95.643346068817607, 29.66363316759352 ], [ -95.643422068755072, 29.663141167605882 ], [ -95.643508069076404, 29.662685167707465 ], [ -95.643527068467534, 29.662622167746974 ], [ -95.643570069372089, 29.662476167361493 ], [ -95.643813068674092, 29.661694168074323 ], [ -95.644142069400729, 29.660641167621641 ], [ -95.644908069470858, 29.658851167370351 ], [ -95.645051068862898, 29.658620166605502 ], [ -95.64553806952604, 29.657840166631019 ], [ -95.646099069801309, 29.657050166586583 ], [ -95.647059069184067, 29.655889166173267 ], [ -95.647477069646726, 29.65535616626229 ], [ -95.647762070014238, 29.655002166112734 ], [ -95.647793069327591, 29.654964166444294 ], [ -95.647983069933019, 29.654743166451183 ], [ -95.648827069420406, 29.653705165458064 ], [ -95.649179069522432, 29.65322516575316 ], [ -95.64940407013475, 29.652913165991244 ], [ -95.649824070439848, 29.652200165487489 ], [ -95.650059070155663, 29.651749165621069 ], [ -95.650203070159407, 29.651477165510677 ], [ -95.650248069899604, 29.651374165403002 ], [ -95.650629070054492, 29.650532164883451 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1526, "Tract": "48157674503", "Area_SqMi": 2.7874616468666624, "total_2009": 145, "total_2010": 166, "total_2011": 210, "total_2012": 256, "total_2013": 292, "total_2014": 250, "total_2015": 260, "total_2016": 292, "total_2017": 257, "total_2018": 291, "total_2019": 272, "total_2020": 308, "age1": 133, "age2": 178, "age3": 51, "earn1": 106, "earn2": 179, "earn3": 77, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 7, "naics_s07": 9, "naics_s08": 3, "naics_s09": 3, "naics_s10": 4, "naics_s11": 27, "naics_s12": 41, "naics_s13": 0, "naics_s14": 8, "naics_s15": 8, "naics_s16": 172, "naics_s17": 16, "naics_s18": 61, "naics_s19": 3, "naics_s20": 0, "race1": 211, "race2": 84, "race3": 0, "race4": 59, "race5": 1, "race6": 7, "ethnicity1": 291, "ethnicity2": 71, "edu1": 27, "edu2": 50, "edu3": 78, "edu4": 74, "Shape_Length": 52964.343504721939, "Shape_Area": 77709659.926353976, "total_2021": 323, "total_2022": 362 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.568305043196659, 29.516011140169017 ], [ -95.568301043213324, 29.515939140411135 ], [ -95.568291043540611, 29.515868140241146 ], [ -95.568290043076473, 29.515832140295242 ], [ -95.56827604377338, 29.51576214050824 ], [ -95.568265043488296, 29.515727140359285 ], [ -95.568137043019533, 29.515463140256241 ], [ -95.567852043601135, 29.514946139714354 ], [ -95.567805043507974, 29.514846139750766 ], [ -95.567698042855199, 29.51457413992841 ], [ -95.567672043113035, 29.514469140327098 ], [ -95.567654043383968, 29.514217139822041 ], [ -95.567653043050754, 29.513894139966229 ], [ -95.567682043424611, 29.513716139761435 ], [ -95.56769104280292, 29.513681139463593 ], [ -95.567774042663558, 29.51347813973381 ], [ -95.567844042660752, 29.51327213965957 ], [ -95.567866042987333, 29.513093140038347 ], [ -95.567871043519901, 29.513021139328441 ], [ -95.567873042902917, 29.512878139325821 ], [ -95.567850042926636, 29.512772139849208 ], [ -95.567760043276635, 29.512573139741637 ], [ -95.567663042591747, 29.512457139444546 ], [ -95.567620042896223, 29.512397139371057 ], [ -95.567500042617255, 29.512298139668051 ], [ -95.567438043228819, 29.512253139718439 ], [ -95.567367043167664, 29.512217139348468 ], [ -95.567335043262773, 29.512194139754452 ], [ -95.567265042716059, 29.512159139884982 ], [ -95.567186043309817, 29.512141140029065 ], [ -95.566944043218072, 29.512104139965444 ], [ -95.566865042879684, 29.51208613989315 ], [ -95.566592042308031, 29.512011139207601 ], [ -95.566098042642139, 29.511832139472553 ], [ -95.564810042008517, 29.511307139510158 ], [ -95.564771041928552, 29.511295139910924 ], [ -95.564648042591045, 29.511294139753062 ], [ -95.564607041741198, 29.511298139157066 ], [ -95.564525042019014, 29.511297139205663 ], [ -95.564197042102364, 29.511320139703916 ], [ -95.5640780420852, 29.511347139916396 ], [ -95.564040042186789, 29.511360139236864 ], [ -95.563879041839627, 29.511388139387066 ], [ -95.563681042039832, 29.511435139998394 ], [ -95.563517041736858, 29.511443139637461 ], [ -95.56343604202651, 29.51144013912635 ], [ -95.563395041790571, 29.511432139810509 ], [ -95.563240042006768, 29.51138413922958 ], [ -95.56234304180991, 29.510949139361177 ], [ -95.561729041579127, 29.510659139032967 ], [ -95.561511041090611, 29.510560139401729 ], [ -95.561473041225014, 29.510547139111313 ], [ -95.561288041457047, 29.510469139393255 ], [ -95.560903040948048, 29.510342139833881 ], [ -95.560780041506661, 29.510331139843963 ], [ -95.56049304148371, 29.51034113958449 ], [ -95.560413041144329, 29.510354139407202 ], [ -95.560294041130902, 29.51038113986462 ], [ -95.560070041356127, 29.510471139351502 ], [ -95.560035040562227, 29.510490139894472 ], [ -95.559813041135257, 29.510649139599511 ], [ -95.559715041050978, 29.510715139482059 ], [ -95.559645041243812, 29.510753139522183 ], [ -95.559454041074432, 29.510819139384072 ], [ -95.559413040964316, 29.510825139352143 ], [ -95.559130040274098, 29.510777139255488 ], [ -95.558765040749577, 29.510721139331682 ], [ -95.558237040373967, 29.510659139604449 ], [ -95.557950040882233, 29.51065313939279 ], [ -95.557912039951063, 29.510639139691389 ], [ -95.557791040119909, 29.510617139677709 ], [ -95.557647040805364, 29.510611139343645 ], [ -95.557081040300076, 29.510661139981284 ], [ -95.556547040047178, 29.510776139385115 ], [ -95.556421040542446, 29.510776139369053 ], [ -95.556132039611128, 29.510721139617957 ], [ -95.556025040134685, 29.510727139608129 ], [ -95.555931040177128, 29.51075413946436 ], [ -95.55573603965658, 29.510760139242578 ], [ -95.555648039643103, 29.510705139910982 ], [ -95.555485039672419, 29.510512139963435 ], [ -95.555334039423144, 29.510270139361165 ], [ -95.555164039551897, 29.51018213950735 ], [ -95.555101039829381, 29.510177139823597 ], [ -95.555019039346803, 29.510155139513845 ], [ -95.554887040102827, 29.510089139359749 ], [ -95.554818039802271, 29.510023139869045 ], [ -95.554800039777277, 29.509963139789033 ], [ -95.554724039427967, 29.5098201392071 ], [ -95.554567040042059, 29.509677139482619 ], [ -95.554485039378932, 29.509622139620369 ], [ -95.554385039879762, 29.509583139672557 ], [ -95.554240039519698, 29.509567139739072 ], [ -95.554020039155432, 29.509457139219428 ], [ -95.554002039266848, 29.509436139229589 ], [ -95.55394503929989, 29.509369139753588 ], [ -95.55389503979687, 29.509292139428471 ], [ -95.55377503952073, 29.50919313954649 ], [ -95.553656039790994, 29.509121139183598 ], [ -95.553568039026217, 29.50908313942606 ], [ -95.553464039589841, 29.508989139233407 ], [ -95.55347803964932, 29.508967139078585 ], [ -95.553527038856984, 29.508899139107069 ], [ -95.553561039709479, 29.508852139552204 ], [ -95.55360003903273, 29.508836139573617 ], [ -95.553624039729385, 29.508811139498018 ], [ -95.553622039689373, 29.508773139324678 ], [ -95.553615038819785, 29.50873813889152 ], [ -95.553703039220011, 29.508663139520333 ], [ -95.553728039428833, 29.508634139251971 ], [ -95.553766039435644, 29.508571138974968 ], [ -95.553764039019057, 29.508535139128981 ], [ -95.553753039611294, 29.508501139582439 ], [ -95.553736039776481, 29.508468138945727 ], [ -95.553695039339601, 29.508405139099661 ], [ -95.553656039138005, 29.508363139274721 ], [ -95.553617039698466, 29.508323138889988 ], [ -95.5535400393332, 29.508262139036759 ], [ -95.553490038929027, 29.508087139191073 ], [ -95.553445039226744, 29.507949139077212 ], [ -95.553439039076707, 29.507878139426257 ], [ -95.553445039079463, 29.507698139328877 ], [ -95.553470038728605, 29.507630138858005 ], [ -95.55349303966014, 29.507583139118058 ], [ -95.553520039677167, 29.50753113874659 ], [ -95.553590039241442, 29.507428139081323 ], [ -95.553625039145743, 29.507377139322621 ], [ -95.553696039342213, 29.507288138872049 ], [ -95.553724039110747, 29.507262138819758 ], [ -95.553857039045468, 29.507178139065456 ], [ -95.554132038954052, 29.507036139068468 ], [ -95.554423038868663, 29.50688713908859 ], [ -95.554490039188209, 29.50684613886763 ], [ -95.554537039485936, 29.506825139136225 ], [ -95.554639039635077, 29.506783139117989 ], [ -95.554757039267017, 29.506683139099387 ], [ -95.554776039963045, 29.506651138754933 ], [ -95.554829039160197, 29.506516139008557 ], [ -95.55483903983847, 29.506480138891373 ], [ -95.554847039278457, 29.506373138453508 ], [ -95.554843039328432, 29.506193138713652 ], [ -95.554855039540769, 29.505943138832979 ], [ -95.554850038965128, 29.50569113909631 ], [ -95.554854039579666, 29.505511138839832 ], [ -95.554841039731286, 29.505223138965871 ], [ -95.55484003967355, 29.50511613851992 ], [ -95.554845039674191, 29.505044138843562 ], [ -95.554863039526708, 29.504974138790647 ], [ -95.554894038899121, 29.504908138684627 ], [ -95.554921039235751, 29.504802138891137 ], [ -95.554921039903874, 29.504731138696929 ], [ -95.554899039347504, 29.504588138807392 ], [ -95.554898039582184, 29.504552138572517 ], [ -95.554948039454459, 29.504374138154798 ], [ -95.554961039844287, 29.504277138271473 ], [ -95.555005039196431, 29.50394913844038 ], [ -95.555013039035828, 29.503886138146608 ], [ -95.554628038802889, 29.503757138135796 ], [ -95.554430038917275, 29.503708138450985 ], [ -95.554085039017238, 29.503611138046978 ], [ -95.55395903944283, 29.503575138433749 ], [ -95.55380203886196, 29.503523138242372 ], [ -95.553766038557285, 29.503511138631765 ], [ -95.553652038800209, 29.50340713786381 ], [ -95.553529039386802, 29.503310138093006 ], [ -95.553472039181059, 29.503258138055962 ], [ -95.553318039040448, 29.503089138005461 ], [ -95.553127038737387, 29.502900137909311 ], [ -95.553084038724009, 29.502848138579782 ], [ -95.553005038667848, 29.502754137951719 ], [ -95.552966038380902, 29.502690137701538 ], [ -95.552847039154372, 29.502460138474632 ], [ -95.552820038629463, 29.50239213827323 ], [ -95.552799038943135, 29.502322138142176 ], [ -95.552753038282091, 29.502073138066027 ], [ -95.552727038800455, 29.501880137969916 ], [ -95.552720038960359, 29.501822138064789 ], [ -95.552716039128711, 29.501750138242937 ], [ -95.55272403913709, 29.501678138311132 ], [ -95.552738038888137, 29.501607138036668 ], [ -95.552822038570966, 29.501328137824348 ], [ -95.552941038867047, 29.500983138141194 ], [ -95.553039039195681, 29.50078413783265 ], [ -95.553079038549839, 29.500721137827139 ], [ -95.553212039054941, 29.500538137386151 ], [ -95.553383039036845, 29.500335137575966 ], [ -95.553461038623141, 29.500251137155381 ], [ -95.553519038652979, 29.50020013747001 ], [ -95.553703038524347, 29.500120137692772 ], [ -95.553894039172036, 29.500051137702918 ], [ -95.55405203906993, 29.500010137135867 ], [ -95.554296039506454, 29.49997613784058 ], [ -95.554337038792539, 29.499973137311642 ], [ -95.554461039052029, 29.499974137910321 ], [ -95.554498039331378, 29.499964137762127 ], [ -95.554633039213357, 29.499880137479181 ], [ -95.554738039643993, 29.499825137727093 ], [ -95.554780039396988, 29.499762137351208 ], [ -95.554826038665794, 29.499702137663085 ], [ -95.554905038871496, 29.499619137120231 ], [ -95.555493039050006, 29.499222137273183 ], [ -95.555523039731142, 29.49919813732523 ], [ -95.555603038839749, 29.499115136855345 ], [ -95.555649039396982, 29.499055136929424 ], [ -95.555690039386789, 29.498992137595387 ], [ -95.555723039247809, 29.4989261373807 ], [ -95.555746039221845, 29.498857137110608 ], [ -95.555803039018187, 29.498761137378953 ], [ -95.555871039541515, 29.498630137164696 ], [ -95.555987039167334, 29.498473137267094 ], [ -95.555854039322796, 29.498476136976436 ], [ -95.555666039240094, 29.498503136779181 ], [ -95.555328039309785, 29.498511136854329 ], [ -95.554892039484471, 29.498577137333641 ], [ -95.553905039353339, 29.498605137269308 ], [ -95.553384038256141, 29.498617137172022 ], [ -95.55220603861828, 29.498662137571426 ], [ -95.551518038041038, 29.49868113704499 ], [ -95.551487038247899, 29.49868213711029 ], [ -95.550361037838186, 29.498720137584325 ], [ -95.549907038042122, 29.498732137338955 ], [ -95.549607038060017, 29.49874113733128 ], [ -95.549040037150675, 29.498757137613822 ], [ -95.548618037549062, 29.498771137277298 ], [ -95.5480360369328, 29.498790137326232 ], [ -95.547428037110848, 29.498812137120602 ], [ -95.547139036949915, 29.498845137321144 ], [ -95.547056036644733, 29.49885413745988 ], [ -95.546991037464224, 29.498857137627315 ], [ -95.546917037045318, 29.498866137313513 ], [ -95.546843037572685, 29.498857137507574 ], [ -95.546622037528877, 29.498864137877622 ], [ -95.545266036917923, 29.498909137387809 ], [ -95.535796033954952, 29.499235137748787 ], [ -95.5297410323642, 29.499434138614735 ], [ -95.529549032834183, 29.499441138073081 ], [ -95.529166032353061, 29.499454138451824 ], [ -95.526815032513156, 29.499529138225384 ], [ -95.526236032347455, 29.499548138707897 ], [ -95.525637031575542, 29.49957313866086 ], [ -95.524509031133874, 29.499621138860892 ], [ -95.524358030950395, 29.499625138567914 ], [ -95.524034030991643, 29.499634138687195 ], [ -95.523081030665722, 29.499663138818402 ], [ -95.521652030597423, 29.499703138705407 ], [ -95.520557030130959, 29.499745138373033 ], [ -95.519758030619641, 29.49977613905099 ], [ -95.519536030563813, 29.499785138566214 ], [ -95.517344029090836, 29.499858138678491 ], [ -95.516473029746976, 29.49988713885466 ], [ -95.51563002877775, 29.49991613845847 ], [ -95.514409029295919, 29.49995313925557 ], [ -95.513328028257817, 29.49998613913991 ], [ -95.512846028430147, 29.500001139106885 ], [ -95.51286502796556, 29.500062138498979 ], [ -95.512832028280215, 29.500112138610273 ], [ -95.512919028511149, 29.500306138903401 ], [ -95.51282802841385, 29.501346139601345 ], [ -95.512835028185705, 29.502060139003788 ], [ -95.51305602812846, 29.502633139404661 ], [ -95.513425028694229, 29.503011139711667 ], [ -95.513528029238941, 29.503205139753373 ], [ -95.513525029207599, 29.50338413958162 ], [ -95.513487028505821, 29.503480139483084 ], [ -95.513461029064956, 29.503544139800105 ], [ -95.513446028742351, 29.503582139844255 ], [ -95.513169028974247, 29.504077139808917 ], [ -95.513012029077004, 29.504379140143453 ], [ -95.512905028990602, 29.504665140272468 ], [ -95.512874028625575, 29.50479114025029 ], [ -95.512859028251057, 29.504918139901797 ], [ -95.512686028194693, 29.505240140320097 ], [ -95.512515029065327, 29.505561140197159 ], [ -95.512471028412179, 29.505825139676237 ], [ -95.512458028886712, 29.506028140074921 ], [ -95.51225102845244, 29.506600140554607 ], [ -95.512215028645912, 29.506690140684146 ], [ -95.512178028733302, 29.506782140338846 ], [ -95.512043028820997, 29.507111140745636 ], [ -95.512668028884903, 29.507104140062882 ], [ -95.514262029329231, 29.507077140205709 ], [ -95.514429029219727, 29.507078140065357 ], [ -95.51606802940772, 29.507055140179357 ], [ -95.517261030032699, 29.507038139889122 ], [ -95.517786030236522, 29.507026140020631 ], [ -95.518413030422423, 29.507018140065036 ], [ -95.518442030322376, 29.507018139911835 ], [ -95.51926703072948, 29.507009139722914 ], [ -95.519571030113326, 29.507012140077748 ], [ -95.519797030808064, 29.507026140019445 ], [ -95.52034103096176, 29.507161139877663 ], [ -95.52068903077523, 29.507336140023853 ], [ -95.520729031042123, 29.507357140569248 ], [ -95.521059030855753, 29.507590139942202 ], [ -95.522971031793915, 29.510378141001823 ], [ -95.523209031373, 29.510613140967216 ], [ -95.523411031381187, 29.510767140479992 ], [ -95.523636031381542, 29.51089614042036 ], [ -95.524029032009125, 29.511030140846191 ], [ -95.52445203211137, 29.511128141151008 ], [ -95.525783032212075, 29.511116140358141 ], [ -95.526086032804315, 29.51109114077147 ], [ -95.526257032266074, 29.511076141088356 ], [ -95.526398032326099, 29.511424140630211 ], [ -95.526415031905103, 29.511465140908705 ], [ -95.526511032618032, 29.511459140509636 ], [ -95.526608032352385, 29.51145414090113 ], [ -95.526634032594245, 29.511512140591364 ], [ -95.527062032394156, 29.512464140979574 ], [ -95.527490033126398, 29.513295141209397 ], [ -95.527874032904023, 29.514082141003936 ], [ -95.528571033516045, 29.513860141327086 ], [ -95.528836033470995, 29.513801140912655 ], [ -95.529001032672909, 29.513777140923974 ], [ -95.529048032775549, 29.513777140954346 ], [ -95.529508033146968, 29.513791141284781 ], [ -95.530016033417112, 29.513852141294752 ], [ -95.530525034023512, 29.513935141135953 ], [ -95.531248033893888, 29.514072141342695 ], [ -95.531846034095452, 29.51416514100967 ], [ -95.532175034134113, 29.514217140968146 ], [ -95.53260803371117, 29.514217140785227 ], [ -95.532970034309315, 29.514210141562991 ], [ -95.533344034611645, 29.514147141454686 ], [ -95.533526034433379, 29.514083141157158 ], [ -95.534959034922892, 29.513670141201271 ], [ -95.535498035177767, 29.513514141115358 ], [ -95.535643035175553, 29.513475141026603 ], [ -95.535811035261659, 29.513429140798674 ], [ -95.536280035300379, 29.513326140589598 ], [ -95.536863035045755, 29.513249140546009 ], [ -95.537167035057038, 29.513212140508916 ], [ -95.537570035240464, 29.513195140448985 ], [ -95.538115035422209, 29.513183141178974 ], [ -95.539202036235366, 29.513159140466609 ], [ -95.540893035713253, 29.513522140975375 ], [ -95.542198036820977, 29.513825141082034 ], [ -95.542705036388497, 29.513896140703924 ], [ -95.543732037054255, 29.513908140492621 ], [ -95.544602036874238, 29.514053140409434 ], [ -95.545266037258543, 29.514210141149672 ], [ -95.545834037953995, 29.514440140766414 ], [ -95.547137037991206, 29.515015141023426 ], [ -95.548269038640711, 29.515515141192555 ], [ -95.548586037950898, 29.515519140852799 ], [ -95.548779038115995, 29.515537140649034 ], [ -95.548932038003073, 29.515542140650975 ], [ -95.54908603842712, 29.515542141097811 ], [ -95.549239037991413, 29.515536140702444 ], [ -95.549391037978467, 29.515525140572212 ], [ -95.549544038432202, 29.515509140885715 ], [ -95.550220038310997, 29.515424141180922 ], [ -95.550380039087145, 29.515406141241854 ], [ -95.550541039029611, 29.515395140986882 ], [ -95.550703038850401, 29.515390141165529 ], [ -95.550864038544717, 29.515391140716773 ], [ -95.551026039205297, 29.515398140725871 ], [ -95.55118603871783, 29.51541114045893 ], [ -95.551347039253272, 29.515430140649762 ], [ -95.55150603869626, 29.515455140571664 ], [ -95.551719039270694, 29.515499141001573 ], [ -95.551888038838086, 29.51554114039692 ], [ -95.552054039042474, 29.51559114117283 ], [ -95.552217039306896, 29.515647141185582 ], [ -95.55237703896168, 29.515710140594816 ], [ -95.552534039696368, 29.515779141092633 ], [ -95.552687039479466, 29.515854141219162 ], [ -95.552836039702541, 29.515936141189837 ], [ -95.55298003964603, 29.516023141056067 ], [ -95.553119039663287, 29.516116141009025 ], [ -95.553254039820175, 29.516215140672859 ], [ -95.553383039669185, 29.516319140668244 ], [ -95.553506039559636, 29.516429141187391 ], [ -95.553609039420081, 29.516529140606277 ], [ -95.553734039839966, 29.516662141234328 ], [ -95.553839039186713, 29.51678514076556 ], [ -95.553937039856351, 29.516912140979674 ], [ -95.554028040156425, 29.517044141111629 ], [ -95.554113039397777, 29.517179141329617 ], [ -95.554189040165383, 29.517316140940039 ], [ -95.554259040187205, 29.517457140836328 ], [ -95.554321040014159, 29.517601140775447 ], [ -95.554375040261391, 29.517747141521774 ], [ -95.554421039927476, 29.51789514125436 ], [ -95.554460040023642, 29.518045141411697 ], [ -95.554490040074953, 29.518196140821647 ], [ -95.554529040387465, 29.518547141731268 ], [ -95.554531039725404, 29.518808141682459 ], [ -95.554523040046732, 29.518932141058965 ], [ -95.554503039983118, 29.519114141308918 ], [ -95.55447603978574, 29.519266141207854 ], [ -95.554443039997167, 29.519483141634471 ], [ -95.554686040174559, 29.519508141690284 ], [ -95.555062039818864, 29.519527141313446 ], [ -95.555438040031405, 29.519539141442568 ], [ -95.555603040559703, 29.519552141799483 ], [ -95.555660039734306, 29.51940414175645 ], [ -95.555724040208503, 29.519264141063726 ], [ -95.555797040075774, 29.519124141128557 ], [ -95.555853039832201, 29.519042141496108 ], [ -95.555893040266483, 29.518984141596938 ], [ -95.55603004028238, 29.518856141453949 ], [ -95.556247040370792, 29.518691141570315 ], [ -95.557875041029092, 29.520436141243646 ], [ -95.559412040946057, 29.522058141681558 ], [ -95.561786041901982, 29.52461814250757 ], [ -95.561911041589639, 29.524710142506127 ], [ -95.561910041775931, 29.524680142611391 ], [ -95.561891042376104, 29.523857142182205 ], [ -95.561874042293027, 29.523464142032953 ], [ -95.561813042027779, 29.522572142143815 ], [ -95.561798041911899, 29.522182141438851 ], [ -95.561798041711072, 29.522075142049204 ], [ -95.56180804166388, 29.522004142144954 ], [ -95.561855041636846, 29.521906141649602 ], [ -95.561878042089404, 29.521876141574818 ], [ -95.561936042413635, 29.52182414171067 ], [ -95.561963041696117, 29.521800141636984 ], [ -95.562029041479633, 29.521757141319853 ], [ -95.562136042102495, 29.521705141421105 ], [ -95.562212041871007, 29.521679141890878 ], [ -95.5622930416163, 29.521673141464007 ], [ -95.56245504249739, 29.521676142040334 ], [ -95.562577041594253, 29.521674142056451 ], [ -95.56265804234539, 29.521668141434937 ], [ -95.562861041709752, 29.521666141486591 ], [ -95.563410042781584, 29.521670141716754 ], [ -95.563510042174073, 29.521671141782754 ], [ -95.56428204261411, 29.521658141558223 ], [ -95.56436304219126, 29.521661141338466 ], [ -95.564931042423822, 29.52165114201965 ], [ -95.56539404298637, 29.521634141350031 ], [ -95.565475042616058, 29.521635141938699 ], [ -95.566043043504024, 29.521612141229618 ], [ -95.56612404340926, 29.521605141941965 ], [ -95.566245043266846, 29.521601141509215 ], [ -95.566285042728467, 29.521603141129045 ], [ -95.56644804306346, 29.521590141895878 ], [ -95.566529042747504, 29.52158914152427 ], [ -95.566813042989679, 29.521566141885387 ], [ -95.566894043202609, 29.521564141145113 ], [ -95.566974043265049, 29.521545141708689 ], [ -95.567050043136817, 29.521520141432333 ], [ -95.567107042902208, 29.52147314158842 ], [ -95.56714804362116, 29.521376141621165 ], [ -95.567199043166426, 29.52123914099128 ], [ -95.567211043559595, 29.521168141589698 ], [ -95.567172043373674, 29.520849140968657 ], [ -95.567159043736027, 29.520778141369505 ], [ -95.567147043615634, 29.520636141495501 ], [ -95.567131043236657, 29.520530141304956 ], [ -95.567106043140569, 29.520426141401845 ], [ -95.567077043272675, 29.520359141354582 ], [ -95.566965043244039, 29.520254141131904 ], [ -95.566871042675444, 29.520185141324998 ], [ -95.566806043093777, 29.520143141432982 ], [ -95.566770043529033, 29.520124140827519 ], [ -95.566650042881648, 29.520099140987657 ], [ -95.566488042802177, 29.520086141122043 ], [ -95.566247042647419, 29.520038141665065 ], [ -95.566169043197462, 29.520017141313136 ], [ -95.56604104264278, 29.519928140769661 ], [ -95.56596204306139, 29.519846140802496 ], [ -95.565945042588453, 29.519813141025598 ], [ -95.56582304305951, 29.519468140892418 ], [ -95.5658210423112, 29.519432141413397 ], [ -95.56587904291591, 29.519186140871621 ], [ -95.565894043242508, 29.519152140674752 ], [ -95.565952043163279, 29.519057141157941 ], [ -95.56600204305245, 29.51900014086992 ], [ -95.566065042766439, 29.518954141407352 ], [ -95.566132042961328, 29.518915141108387 ], [ -95.566458042751137, 29.518699141011751 ], [ -95.567213042946875, 29.518273140662803 ], [ -95.567311043126466, 29.518209141068439 ], [ -95.567401042992685, 29.518135141055126 ], [ -95.567492043395333, 29.518016140411802 ], [ -95.567509043583854, 29.517983141009029 ], [ -95.567626043370694, 29.517452140688004 ], [ -95.567733043704308, 29.51703014041221 ], [ -95.567751043170816, 29.516998140621187 ], [ -95.568002042873388, 29.516627140256823 ], [ -95.568174043143983, 29.516383140370849 ], [ -95.568259042983755, 29.516258140357703 ], [ -95.5682970432606, 29.516082140409225 ], [ -95.568305043196659, 29.516011140169017 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1527, "Tract": "48157674506", "Area_SqMi": 17.855043362467658, "total_2009": 123, "total_2010": 122, "total_2011": 160, "total_2012": 157, "total_2013": 128, "total_2014": 102, "total_2015": 129, "total_2016": 128, "total_2017": 104, "total_2018": 180, "total_2019": 190, "total_2020": 167, "age1": 51, "age2": 99, "age3": 58, "earn1": 35, "earn2": 73, "earn3": 100, "naics_s01": 1, "naics_s02": 5, "naics_s03": 1, "naics_s04": 36, "naics_s05": 13, "naics_s06": 40, "naics_s07": 23, "naics_s08": 12, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 52, "naics_s13": 0, "naics_s14": 0, "naics_s15": 9, "naics_s16": 5, "naics_s17": 1, "naics_s18": 4, "naics_s19": 6, "naics_s20": 0, "race1": 158, "race2": 24, "race3": 0, "race4": 22, "race5": 0, "race6": 4, "ethnicity1": 126, "ethnicity2": 82, "edu1": 38, "edu2": 39, "edu3": 43, "edu4": 37, "Shape_Length": 122257.3643020567, "Shape_Area": 497768049.7334702, "total_2021": 209, "total_2022": 208 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.550654035141832, 29.439783125618742 ], [ -95.550760035437264, 29.439059125223434 ], [ -95.550629035745345, 29.438311124806493 ], [ -95.550271035294415, 29.43840412508591 ], [ -95.550001035599649, 29.438444124759197 ], [ -95.549828035186152, 29.438445124638747 ], [ -95.547539034713083, 29.438458125060947 ], [ -95.54749603458427, 29.438458124803365 ], [ -95.540999033332071, 29.438495125076148 ], [ -95.540070032737404, 29.438122125481787 ], [ -95.538956032609818, 29.437767124916871 ], [ -95.537980031998771, 29.437809124876708 ], [ -95.536678031944916, 29.438225125123186 ], [ -95.535710031641131, 29.438532125209555 ], [ -95.526129028874223, 29.438607125635933 ], [ -95.526112029583629, 29.438607125834004 ], [ -95.526085029141726, 29.438607125890879 ], [ -95.526074028693429, 29.43860712593893 ], [ -95.526042028786392, 29.43860812613406 ], [ -95.523842028590821, 29.438625126164236 ], [ -95.515538026470651, 29.438681125856313 ], [ -95.51500002664983, 29.438685126482625 ], [ -95.513959025765544, 29.438692126384456 ], [ -95.513817025891242, 29.438693125966704 ], [ -95.513794025617003, 29.43869312594153 ], [ -95.513731025702256, 29.438693126305804 ], [ -95.51362102593076, 29.438694125917934 ], [ -95.511353025752555, 29.438709126495581 ], [ -95.511041025762268, 29.438712126271369 ], [ -95.510729024762014, 29.43871412600323 ], [ -95.503600023760058, 29.438764126849005 ], [ -95.503588023934967, 29.43876412686917 ], [ -95.503566023912072, 29.438764126894405 ], [ -95.503534023691486, 29.438764126919708 ], [ -95.503498023076517, 29.438765126220698 ], [ -95.503316023867811, 29.43876612641759 ], [ -95.503203023652077, 29.438767126470122 ], [ -95.502934023349454, 29.438770126336767 ], [ -95.502824023051261, 29.438771126980416 ], [ -95.502683022887581, 29.438772126467018 ], [ -95.502381022972358, 29.438775126850441 ], [ -95.502141022984588, 29.43877712696332 ], [ -95.50173502260175, 29.438781126839189 ], [ -95.501629022565879, 29.438782126556859 ], [ -95.501610023367803, 29.438783126516316 ], [ -95.501200022592712, 29.438787126508579 ], [ -95.479905017733145, 29.438996127719424 ], [ -95.477345016741566, 29.43902112717856 ], [ -95.476974016154827, 29.439031127588336 ], [ -95.476739016326718, 29.439038127427523 ], [ -95.476642016536005, 29.439043127994928 ], [ -95.476618016263018, 29.439044127891449 ], [ -95.476485016271738, 29.439037127732529 ], [ -95.469404014471792, 29.439142127574971 ], [ -95.462609012589439, 29.439243128196381 ], [ -95.462512012778291, 29.439605128310749 ], [ -95.462487013145946, 29.439700128348896 ], [ -95.462459013232845, 29.439807128102405 ], [ -95.462443013168553, 29.439868128442338 ], [ -95.461173012925599, 29.444561129374961 ], [ -95.46109801253445, 29.444835129086226 ], [ -95.461060012865929, 29.444976129596217 ], [ -95.46080701318381, 29.445915129841161 ], [ -95.458832012468861, 29.453178131070903 ], [ -95.453469011977433, 29.472865135188087 ], [ -95.452272012309265, 29.477265135847251 ], [ -95.451049012135471, 29.48181513754712 ], [ -95.450999012265598, 29.482003137027458 ], [ -95.450392011689047, 29.484233137495874 ], [ -95.449704011936987, 29.486760138090368 ], [ -95.449301012178111, 29.488244138183429 ], [ -95.44857301190261, 29.490934139098457 ], [ -95.448510011472464, 29.491165139092683 ], [ -95.448440011373904, 29.491423138921 ], [ -95.448373011941115, 29.491671139745382 ], [ -95.448349011929452, 29.49176313938635 ], [ -95.447888011478028, 29.49347113977062 ], [ -95.447818011979138, 29.493728139959678 ], [ -95.447800011560943, 29.493795139652295 ], [ -95.447604011113157, 29.494523139744139 ], [ -95.447562011696022, 29.494678139929459 ], [ -95.447414011694221, 29.495223140047507 ], [ -95.447099011588563, 29.496385139917926 ], [ -95.447089011884358, 29.496421140262875 ], [ -95.447017011710926, 29.496687140032293 ], [ -95.446877011966535, 29.497558140304005 ], [ -95.446307011820323, 29.499642140810408 ], [ -95.448480012397141, 29.500784141576844 ], [ -95.448869012437228, 29.500957140880203 ], [ -95.451081012814726, 29.502142141096822 ], [ -95.451910012839534, 29.50257214175511 ], [ -95.453859013855222, 29.503503141281687 ], [ -95.454767013438016, 29.503980141600643 ], [ -95.455340013892737, 29.504286141398069 ], [ -95.456794014454005, 29.505083141617913 ], [ -95.458265014383144, 29.505879142272569 ], [ -95.459728014888654, 29.506615141804968 ], [ -95.461155015749284, 29.507310142175051 ], [ -95.461343015810954, 29.507429142449698 ], [ -95.461563015704911, 29.507548141970638 ], [ -95.462681015590221, 29.5080841422429 ], [ -95.462825016077858, 29.507920142230198 ], [ -95.46285301611718, 29.50788814231317 ], [ -95.462963015703139, 29.507827142171593 ], [ -95.463171016392721, 29.5076921420996 ], [ -95.463458016360207, 29.507733142498601 ], [ -95.465499017150677, 29.507694142015023 ], [ -95.467625016807887, 29.507708141738878 ], [ -95.467685017685199, 29.507708142311429 ], [ -95.467763017348517, 29.507712141750076 ], [ -95.468079016816745, 29.507711142245668 ], [ -95.468978017690901, 29.507652142225684 ], [ -95.470446017695565, 29.507629141808749 ], [ -95.472081018012787, 29.507592141813788 ], [ -95.47320301900676, 29.507583142179094 ], [ -95.477091019265927, 29.507553141994197 ], [ -95.479749020329606, 29.507499141676778 ], [ -95.480866020786621, 29.507478141527823 ], [ -95.48668402174701, 29.507410141400378 ], [ -95.488619022819478, 29.507404141394503 ], [ -95.489611022544167, 29.507440141065029 ], [ -95.491234022839265, 29.507427140680864 ], [ -95.493207024121475, 29.507362141170645 ], [ -95.494580024187144, 29.507374141290647 ], [ -95.494816023974465, 29.507376141171541 ], [ -95.49482002419056, 29.50685614095644 ], [ -95.494939023703253, 29.505427141008326 ], [ -95.494932023952202, 29.505328140588993 ], [ -95.495008024472668, 29.505042140405003 ], [ -95.495127023873778, 29.50483914016683 ], [ -95.495397024206127, 29.504657140376544 ], [ -95.495567024703135, 29.504580140720655 ], [ -95.495692024696666, 29.50449714061164 ], [ -95.495735024164304, 29.504409140660673 ], [ -95.495773024709024, 29.50418414067283 ], [ -95.49584202449546, 29.503987140709722 ], [ -95.495936024336274, 29.503751139959274 ], [ -95.495942024108786, 29.503646139882306 ], [ -95.495899024653752, 29.503558140104406 ], [ -95.495844024141817, 29.503514139751548 ], [ -95.495767024593789, 29.503453139899246 ], [ -95.495667023879207, 29.503425140562179 ], [ -95.495334024077749, 29.503579140187746 ], [ -95.495225024353616, 29.503602140491616 ], [ -95.495202023783733, 29.503607140364515 ], [ -95.49510702384228, 29.50357413993547 ], [ -95.494862023711079, 29.503437140366572 ], [ -95.494743024326993, 29.503288139785386 ], [ -95.494642024041767, 29.503120140064272 ], [ -95.494617023519226, 29.503079140304276 ], [ -95.494599023790187, 29.503037139819938 ], [ -95.494548023525468, 29.502915140108072 ], [ -95.494548024329688, 29.502767139979039 ], [ -95.494548023759108, 29.502574139651887 ], [ -95.494560023788665, 29.50233213994024 ], [ -95.494579023621796, 29.50217214031445 ], [ -95.494491023445235, 29.502084139542212 ], [ -95.494252023787965, 29.502008140324307 ], [ -95.49360502324123, 29.502030139587283 ], [ -95.492737023259565, 29.501959139875485 ], [ -95.492121022991995, 29.501800140205571 ], [ -95.4917000229797, 29.501552139801205 ], [ -95.491625022759663, 29.501492139551644 ], [ -95.491543023169115, 29.501387139463638 ], [ -95.490888023198593, 29.500823140020643 ], [ -95.490594023164562, 29.500563139901203 ], [ -95.490565023186718, 29.500324139278344 ], [ -95.490867022389565, 29.499311139535063 ], [ -95.491437022618655, 29.498436138886696 ], [ -95.491693023313346, 29.498136139018897 ], [ -95.494296023095302, 29.497227138754312 ], [ -95.495125024281407, 29.497133138640603 ], [ -95.495147023987542, 29.49676713874954 ], [ -95.495241023423262, 29.496322138396888 ], [ -95.495259024200237, 29.495898138376447 ], [ -95.495347023553848, 29.495321138442606 ], [ -95.495296023252365, 29.495030138116778 ], [ -95.495315023930502, 29.494782138173729 ], [ -95.495422023938801, 29.494458138075814 ], [ -95.49549702418733, 29.4943531382579 ], [ -95.495610023960595, 29.494221138677396 ], [ -95.4957110235692, 29.494078138245065 ], [ -95.495773023524208, 29.493957138348449 ], [ -95.495792024044363, 29.493792138366182 ], [ -95.495767024062161, 29.493644137818265 ], [ -95.495710023512245, 29.493583138453488 ], [ -95.495572023924993, 29.493347138213554 ], [ -95.495478023442814, 29.493292138193198 ], [ -95.495384023844167, 29.49327213830713 ], [ -95.495364024101747, 29.493243138322434 ], [ -95.495383023816842, 29.493210138481999 ], [ -95.495490023919857, 29.493149138377365 ], [ -95.495534023215939, 29.493015138034597 ], [ -95.495385023250947, 29.492737138260512 ], [ -95.494943023064096, 29.491913138019481 ], [ -95.494861023095083, 29.491891137939728 ], [ -95.494509023737805, 29.491566137749519 ], [ -95.494345023809601, 29.491396137880667 ], [ -95.494274023653446, 29.491276137808107 ], [ -95.494200023726762, 29.49114913803043 ], [ -95.4940750229499, 29.490791137361459 ], [ -95.494175022973465, 29.490582137403283 ], [ -95.494219023779877, 29.490467137382279 ], [ -95.494244022907424, 29.490302137754419 ], [ -95.494281022807058, 29.490247137661818 ], [ -95.494325023596048, 29.490071137055043 ], [ -95.494489023508009, 29.489813137539464 ], [ -95.494677023175242, 29.489549137062653 ], [ -95.494822023791727, 29.489477137486045 ], [ -95.494991022940837, 29.489488137255229 ], [ -95.495234023462032, 29.489624137567869 ], [ -95.49551402355425, 29.489652137044327 ], [ -95.495665023181559, 29.489018136769353 ], [ -95.495336023966388, 29.488873136901372 ], [ -95.495066023377376, 29.488614136780104 ], [ -95.495079023707262, 29.488509136787769 ], [ -95.49514102357297, 29.488405136680942 ], [ -95.49516002313149, 29.488388137137527 ], [ -95.495210023084837, 29.488295136661041 ], [ -95.495229023361347, 29.488212137440993 ], [ -95.495173023227963, 29.488020136756472 ], [ -95.495229023477648, 29.487635137087242 ], [ -95.495260023504585, 29.487569137097157 ], [ -95.495373023338345, 29.487437136827282 ], [ -95.495474023358639, 29.487228136865035 ], [ -95.495593022992125, 29.487058136815342 ], [ -95.495643023381405, 29.486953136657007 ], [ -95.49572502385017, 29.486689137105866 ], [ -95.495756023068367, 29.486629136299225 ], [ -95.495781023882387, 29.486612136976373 ], [ -95.495787023434787, 29.48656813713421 ], [ -95.495900023198232, 29.486398136556698 ], [ -95.496070023732145, 29.486222136338441 ], [ -95.496089023345021, 29.48616713679079 ], [ -95.496151023443588, 29.486090136771104 ], [ -95.49621402392691, 29.485914136324443 ], [ -95.496296024060683, 29.48560013609945 ], [ -95.496296023490558, 29.485320136080787 ], [ -95.496277023068743, 29.485254136477813 ], [ -95.496119023728212, 29.485029136483007 ], [ -95.496119023678915, 29.484814135962878 ], [ -95.496195023477753, 29.484682136151097 ], [ -95.496195023482485, 29.484506136604494 ], [ -95.496138023837617, 29.484374136552514 ], [ -95.496119023940395, 29.484352136134106 ], [ -95.496100023000622, 29.484220135846297 ], [ -95.496100023149879, 29.483924136369957 ], [ -95.496332023702379, 29.482807135475323 ], [ -95.496357023274513, 29.482401136189768 ], [ -95.496306023220498, 29.482197135497771 ], [ -95.496293023851436, 29.48206013543594 ], [ -95.49614902378049, 29.481763135802233 ], [ -95.495891023286305, 29.481538135335501 ], [ -95.495853023465102, 29.481450136032286 ], [ -95.495922023343169, 29.481059135196034 ], [ -95.495947023435434, 29.481004135920323 ], [ -95.495953023657009, 29.480955135110698 ], [ -95.496066023136152, 29.4806301350194 ], [ -95.496091023251324, 29.48044913549716 ], [ -95.496148023559797, 29.480256135119809 ], [ -95.496110023750774, 29.480009135742971 ], [ -95.496141023602902, 29.479960135108168 ], [ -95.496562023550098, 29.479860135037157 ], [ -95.4967070233577, 29.47987113571585 ], [ -95.496977023540211, 29.479921135706746 ], [ -95.49719102387877, 29.479888135603211 ], [ -95.497348024000914, 29.479805135519989 ], [ -95.497536024024512, 29.47966213495987 ], [ -95.497750023806077, 29.479541135493808 ], [ -95.497825024020571, 29.47948013545092 ], [ -95.497850023861105, 29.479288135380507 ], [ -95.497812023396449, 29.47912313477508 ], [ -95.497699024004547, 29.479085134861155 ], [ -95.497448023236615, 29.479178134901151 ], [ -95.497284023752016, 29.479327135522297 ], [ -95.497171023544183, 29.479409135131668 ], [ -95.497065023342032, 29.479453134987846 ], [ -95.496926023253792, 29.479437134866636 ], [ -95.496776022968561, 29.47938213495247 ], [ -95.496755023360308, 29.479381134849969 ], [ -95.496681023483674, 29.47933813555829 ], [ -95.496410023061387, 29.478725135415907 ], [ -95.497405023549561, 29.478503134703317 ], [ -95.497549023932521, 29.478331135291448 ], [ -95.497591023643935, 29.478199135341903 ], [ -95.497761023970057, 29.478067135075531 ], [ -95.497855023156006, 29.478012134935344 ], [ -95.497887023333931, 29.47791913470688 ], [ -95.497887023388401, 29.477875134557614 ], [ -95.497905023867816, 29.477831134983273 ], [ -95.498006023620093, 29.477721134561737 ], [ -95.498577023877573, 29.477457134571061 ], [ -95.498658024156882, 29.477385134889222 ], [ -95.498821023681359, 29.477226134367758 ], [ -95.499249024315546, 29.477187135085224 ], [ -95.499418024179818, 29.477055134557475 ], [ -95.499544023572383, 29.477011134173821 ], [ -95.499651024039352, 29.476912134759136 ], [ -95.499669024232503, 29.47677413445199 ], [ -95.499619024369466, 29.476719134932509 ], [ -95.499223023679789, 29.476681134210079 ], [ -95.499060023463826, 29.476637134932421 ], [ -95.498808024343901, 29.476511134125058 ], [ -95.498702023332882, 29.476506134092109 ], [ -95.498544023379964, 29.476522134763496 ], [ -95.498500023275682, 29.476467134958217 ], [ -95.498494023418473, 29.476291134171699 ], [ -95.498588024164206, 29.476165134670822 ], [ -95.498588024038298, 29.476126134548295 ], [ -95.49853802359118, 29.475983134260098 ], [ -95.498350024009213, 29.475412134336501 ], [ -95.498375023720214, 29.474879133880528 ], [ -95.497886023594489, 29.474978134104983 ], [ -95.496678023715404, 29.475246134127811 ], [ -95.496691022774854, 29.475182134282985 ], [ -95.496779023381919, 29.474908133964629 ], [ -95.49689702327484, 29.474707134109575 ], [ -95.497098023153953, 29.474455134031043 ], [ -95.497311023299531, 29.474286134445851 ], [ -95.49735302381238, 29.474244134375745 ], [ -95.497588022953877, 29.474008134216202 ], [ -95.497706023793498, 29.473799133999901 ], [ -95.497714023138272, 29.473782133749548 ], [ -95.497768023178509, 29.473658133802147 ], [ -95.497827023171837, 29.473524133913255 ], [ -95.500301024014604, 29.473556133610241 ], [ -95.500840023847175, 29.473596134287874 ], [ -95.50137902400796, 29.473603133806677 ], [ -95.504484025559464, 29.47355013379298 ], [ -95.505043025021649, 29.473593133940042 ], [ -95.505317025218503, 29.473598133345476 ], [ -95.505811025553669, 29.473608133731005 ], [ -95.506698025919576, 29.473627134043141 ], [ -95.507770025841538, 29.4736301332693 ], [ -95.514308027217766, 29.473646133151707 ], [ -95.515228028435246, 29.473639133134963 ], [ -95.527563030645837, 29.473557133085418 ], [ -95.530349032191282, 29.473538133186256 ], [ -95.534646033032189, 29.473506132927561 ], [ -95.534822032607039, 29.473505132364821 ], [ -95.534929032958132, 29.473504133142242 ], [ -95.535196032607701, 29.473502133087045 ], [ -95.535466033190772, 29.473500132679703 ], [ -95.535616033044207, 29.473499133027975 ], [ -95.538287033942524, 29.473497133033 ], [ -95.539776033812331, 29.473496132712032 ], [ -95.540094034089549, 29.473496132382209 ], [ -95.542187035063094, 29.473495132261746 ], [ -95.54310503518461, 29.473499132525195 ], [ -95.544958035086253, 29.473523132281329 ], [ -95.545626035685075, 29.473513131962477 ], [ -95.545213035443908, 29.472248131778045 ], [ -95.545069035366325, 29.471809131765809 ], [ -95.543764034555039, 29.466859131167812 ], [ -95.540587033576628, 29.464374130782048 ], [ -95.536690033115107, 29.463069130250041 ], [ -95.536022032805107, 29.461944130268115 ], [ -95.535680032327264, 29.461756130603597 ], [ -95.535621032368027, 29.461723130163008 ], [ -95.535357032157904, 29.461551130418773 ], [ -95.535196032176145, 29.461439130429405 ], [ -95.534965032323015, 29.461253130119797 ], [ -95.534422032180373, 29.46066313036437 ], [ -95.534209031750379, 29.460397129634323 ], [ -95.533796032461609, 29.459857129808558 ], [ -95.533482031874982, 29.459391130090612 ], [ -95.53344403174971, 29.459327129855819 ], [ -95.533189031770362, 29.458794129699694 ], [ -95.533138031367173, 29.458696129712123 ], [ -95.53303403230376, 29.458436129296224 ], [ -95.533000032149133, 29.458221129274676 ], [ -95.532981032067568, 29.457789129474698 ], [ -95.532984032126677, 29.457666129762899 ], [ -95.532986032051866, 29.457572129259081 ], [ -95.533026031586772, 29.457032129681661 ], [ -95.533039031677021, 29.456924129535619 ], [ -95.533167032096813, 29.456544129332698 ], [ -95.533186031594994, 29.456474129333422 ], [ -95.533200031683108, 29.45640412958079 ], [ -95.533206032245246, 29.45634912898932 ], [ -95.533276032125499, 29.456004129288555 ], [ -95.533336031597159, 29.455579128885891 ], [ -95.533379031860576, 29.455364129315122 ], [ -95.533414032169702, 29.455129128792919 ], [ -95.533421032187803, 29.455082129407685 ], [ -95.5334550321097, 29.45475812901217 ], [ -95.533489031988196, 29.454325128454279 ], [ -95.533542032207151, 29.453679128646751 ], [ -95.533553031953616, 29.453426128411611 ], [ -95.533545032037154, 29.453282128175552 ], [ -95.533603031996634, 29.452523128890746 ], [ -95.533589031442858, 29.452199128497263 ], [ -95.533571032033578, 29.451983128125786 ], [ -95.53357003138143, 29.451911128637494 ], [ -95.533650032118942, 29.450506127995041 ], [ -95.533662032069188, 29.450217127984242 ], [ -95.533724031129267, 29.449643128039636 ], [ -95.533818031813098, 29.449108127895457 ], [ -95.533853032050615, 29.448930127645543 ], [ -95.53386803209348, 29.448822127746151 ], [ -95.533892031555794, 29.44849812743918 ], [ -95.533940032020524, 29.447453127540211 ], [ -95.533957031449816, 29.446948126928572 ], [ -95.533960031563552, 29.446262126754362 ], [ -95.533929031702982, 29.445758127365103 ], [ -95.533956031644763, 29.445253127022951 ], [ -95.533955031892347, 29.444892127247968 ], [ -95.53396103102196, 29.444640127035502 ], [ -95.533953031298083, 29.444207126326717 ], [ -95.534006031625609, 29.443668126214696 ], [ -95.534024031834875, 29.442946126344953 ], [ -95.534030030947335, 29.442514126055112 ], [ -95.53411203148768, 29.442234126545021 ], [ -95.534439031452749, 29.441227125660177 ], [ -95.534464031676336, 29.441159126176114 ], [ -95.534552031682026, 29.440956125731347 ], [ -95.534654031178775, 29.440682125904885 ], [ -95.534681031863002, 29.440578125557476 ], [ -95.534770031755215, 29.44050412612409 ], [ -95.534856031909456, 29.440426125702238 ], [ -95.535012032011224, 29.440308125610425 ], [ -95.535071031585915, 29.44025712561373 ], [ -95.535123031147293, 29.440202125610075 ], [ -95.535345031344633, 29.439941126227001 ], [ -95.535513032090051, 29.439783126125935 ], [ -95.535723032098431, 29.439610125499716 ], [ -95.535910031514732, 29.439417125525068 ], [ -95.536088032051225, 29.439328126070695 ], [ -95.536157031711426, 29.439288125210719 ], [ -95.536321031564853, 29.439178125874747 ], [ -95.536447032310093, 29.439085125382906 ], [ -95.53691503208627, 29.438790125639734 ], [ -95.537020031849536, 29.438732125523146 ], [ -95.537166031698419, 29.438666125232011 ], [ -95.53728503185323, 29.43863612567548 ], [ -95.537604031885294, 29.438565125172619 ], [ -95.538008032649572, 29.438494125436122 ], [ -95.538294032341284, 29.438457125494089 ], [ -95.538458032579399, 29.438446125703887 ], [ -95.538540032000526, 29.438447125113452 ], [ -95.538827032176854, 29.438471125146744 ], [ -95.539148032073427, 29.438539125410848 ], [ -95.539498032596441, 29.43864612519334 ], [ -95.53972803300185, 29.438727125716103 ], [ -95.539917033090106, 29.438799125438599 ], [ -95.539990032648205, 29.438831125818734 ], [ -95.540201032881512, 29.43894412577437 ], [ -95.540402032503295, 29.439071125303052 ], [ -95.540464033283229, 29.439118125842043 ], [ -95.540875032779269, 29.439473125406106 ], [ -95.54108403347746, 29.439696125779673 ], [ -95.541106033277728, 29.439726125995694 ], [ -95.541195032763, 29.439889125436178 ], [ -95.541285033426249, 29.440129126092117 ], [ -95.541333032808282, 29.440229125441409 ], [ -95.54135803269979, 29.440298125618071 ], [ -95.541420033336792, 29.440618125355794 ], [ -95.541468033135288, 29.440940125766616 ], [ -95.541470033373187, 29.441012125806605 ], [ -95.541460032889518, 29.441120125941641 ], [ -95.541448033232641, 29.441191126181558 ], [ -95.541433033362438, 29.441248125598182 ], [ -95.541449033276564, 29.441355126263279 ], [ -95.541452033064417, 29.441428126185055 ], [ -95.541444033057758, 29.441644125746485 ], [ -95.541425033280362, 29.441860125735737 ], [ -95.541424032796556, 29.442112126275113 ], [ -95.541474033007191, 29.442434126017336 ], [ -95.541493033692987, 29.442504126237878 ], [ -95.541531033575154, 29.442607126153142 ], [ -95.541563032884454, 29.442712126319634 ], [ -95.541578033747626, 29.442745126296405 ], [ -95.541617033110128, 29.442809125941405 ], [ -95.541708033676429, 29.442929126351252 ], [ -95.541824032986653, 29.443031126075262 ], [ -95.541962033845593, 29.443293126136339 ], [ -95.542009033519065, 29.443353126217012 ], [ -95.542167033619236, 29.443519126081537 ], [ -95.542253033648976, 29.443597126136638 ], [ -95.542317033081687, 29.443642126504248 ], [ -95.542486033138744, 29.443746126730744 ], [ -95.542989033992995, 29.443993126209104 ], [ -95.54325103422731, 29.444099126082257 ], [ -95.543368033755925, 29.444133126084974 ], [ -95.543649033997141, 29.444189126556918 ], [ -95.544097034382261, 29.444251126207241 ], [ -95.544590033714883, 29.444287126408067 ], [ -95.544755033766677, 29.44428112649566 ], [ -95.545038034122584, 29.444236126637321 ], [ -95.54546703431717, 29.444107126181986 ], [ -95.545979034680784, 29.443969126005385 ], [ -95.546447035121801, 29.44382812585286 ], [ -95.546647034905106, 29.44375112644985 ], [ -95.546937034774771, 29.443640126377105 ], [ -95.547469035193714, 29.443444126067078 ], [ -95.547866035070996, 29.443251126016754 ], [ -95.548319035171545, 29.443001126285001 ], [ -95.54877503547786, 29.442692125961266 ], [ -95.548934034753287, 29.442577125740474 ], [ -95.549157035276536, 29.442365125508804 ], [ -95.549482035273783, 29.441992125434851 ], [ -95.54955303499878, 29.44190312532351 ], [ -95.54965703508492, 29.441747125942644 ], [ -95.549833035756933, 29.44150312608771 ], [ -95.550132035186778, 29.441156125625056 ], [ -95.550150035832573, 29.441123125978297 ], [ -95.550236035638761, 29.440920125730582 ], [ -95.550406035336948, 29.440475125010096 ], [ -95.550454035361184, 29.440337125445858 ], [ -95.550492035432782, 29.440197125418276 ], [ -95.550565035407175, 29.439990125211974 ], [ -95.550639035773656, 29.439822125394116 ], [ -95.550654035141832, 29.439783125618742 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1528, "Tract": "48157672306", "Area_SqMi": 0.70538462765634036, "total_2009": 452, "total_2010": 462, "total_2011": 403, "total_2012": 439, "total_2013": 433, "total_2014": 343, "total_2015": 261, "total_2016": 226, "total_2017": 218, "total_2018": 225, "total_2019": 230, "total_2020": 261, "age1": 34, "age2": 120, "age3": 66, "earn1": 55, "earn2": 84, "earn3": 81, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 6, "naics_s05": 6, "naics_s06": 1, "naics_s07": 70, "naics_s08": 52, "naics_s09": 1, "naics_s10": 0, "naics_s11": 5, "naics_s12": 11, "naics_s13": 0, "naics_s14": 9, "naics_s15": 12, "naics_s16": 30, "naics_s17": 4, "naics_s18": 9, "naics_s19": 4, "naics_s20": 0, "race1": 139, "race2": 50, "race3": 3, "race4": 25, "race5": 0, "race6": 3, "ethnicity1": 141, "ethnicity2": 79, "edu1": 57, "edu2": 46, "edu3": 51, "edu4": 32, "Shape_Length": 21384.123440979343, "Shape_Area": 19664916.141202822, "total_2021": 227, "total_2022": 220 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.63769406667717, 29.634982162503857 ], [ -95.637704066467663, 29.634842162420419 ], [ -95.637688066137272, 29.634464162331369 ], [ -95.637630065975358, 29.633247161578808 ], [ -95.637606066453145, 29.63299316198022 ], [ -95.637503066551233, 29.632633162361966 ], [ -95.6373930658836, 29.632392161596446 ], [ -95.637374066284423, 29.632346161624074 ], [ -95.63731106631657, 29.632197162125898 ], [ -95.637185065726896, 29.631986161664788 ], [ -95.637016066262731, 29.63179416146831 ], [ -95.636772065692, 29.631578161642775 ], [ -95.636619065473823, 29.631479161608521 ], [ -95.636522065439124, 29.63141616144193 ], [ -95.635638065320393, 29.632192162288703 ], [ -95.635276065242238, 29.632457161944121 ], [ -95.634960065418099, 29.632673162366679 ], [ -95.634652065277933, 29.632871162490201 ], [ -95.634518065695644, 29.632937162139395 ], [ -95.634302065410793, 29.633021162318641 ], [ -95.634084065530075, 29.633105162413035 ], [ -95.633794064936964, 29.633208162321772 ], [ -95.633576064604839, 29.633276162379634 ], [ -95.633289065167958, 29.633366162031248 ], [ -95.632699065265001, 29.633521161904671 ], [ -95.631636064398904, 29.633729161908892 ], [ -95.630641064657581, 29.633913162134636 ], [ -95.62970906431228, 29.634103162696235 ], [ -95.628787064406112, 29.634303162647566 ], [ -95.627577063492481, 29.634524162667219 ], [ -95.62711006332583, 29.634594162883939 ], [ -95.626532063124401, 29.634713162297508 ], [ -95.626492063596828, 29.634721162349269 ], [ -95.624561062759767, 29.635131163127671 ], [ -95.623619062818904, 29.635310162512553 ], [ -95.622625062391876, 29.635501163304699 ], [ -95.621741062320211, 29.635691163191364 ], [ -95.619553061914516, 29.636103163006212 ], [ -95.619134061695135, 29.636161163258201 ], [ -95.618774061532235, 29.636193162975289 ], [ -95.618781061706301, 29.636809163781937 ], [ -95.61882606124739, 29.640059164458663 ], [ -95.618904061468342, 29.643960165214203 ], [ -95.618919062463689, 29.646155165079616 ], [ -95.618961062488438, 29.64759716581862 ], [ -95.618959062417503, 29.647692165535343 ], [ -95.621231063069473, 29.647277165562937 ], [ -95.622379063018727, 29.64704016577576 ], [ -95.624992063909573, 29.646542164767709 ], [ -95.625064063574044, 29.646354165224032 ], [ -95.625101063543937, 29.646186164691553 ], [ -95.625049063861468, 29.645919164840187 ], [ -95.624955063971058, 29.645652164674523 ], [ -95.624741062895282, 29.644815164484339 ], [ -95.626215063930005, 29.644508165116971 ], [ -95.627321063616492, 29.644278164515402 ], [ -95.6281130646192, 29.644163164674438 ], [ -95.628162064554147, 29.644452164330687 ], [ -95.628358064407053, 29.644710164357139 ], [ -95.628653064373083, 29.64486216473103 ], [ -95.628931064821543, 29.644870165116743 ], [ -95.630599065378533, 29.644553164475504 ], [ -95.631193064869549, 29.644444164954873 ], [ -95.631427065256915, 29.644395164356904 ], [ -95.631579065600036, 29.644328164627918 ], [ -95.631716064865216, 29.64422116431632 ], [ -95.631898065406233, 29.644056164777243 ], [ -95.632027065124092, 29.643891164521708 ], [ -95.631890064705615, 29.643753164183433 ], [ -95.631838064689305, 29.643540164568297 ], [ -95.63184306480359, 29.642679164254698 ], [ -95.631823065350105, 29.64191016384769 ], [ -95.631778065392922, 29.641086163956608 ], [ -95.63178706529942, 29.64037516336851 ], [ -95.631762065030543, 29.639634163641553 ], [ -95.631767064927914, 29.639241163227304 ], [ -95.631775064747472, 29.639162163781222 ], [ -95.631794064972524, 29.639075163110913 ], [ -95.631849065343275, 29.638912163041567 ], [ -95.632028064554007, 29.638535163639535 ], [ -95.632169064682756, 29.638577163122939 ], [ -95.632390064724646, 29.638645162947238 ], [ -95.632472064645427, 29.638668163711561 ], [ -95.632537065397628, 29.638678163012813 ], [ -95.632609065467477, 29.638678162987876 ], [ -95.63273006555913, 29.638658163071931 ], [ -95.63288906494472, 29.638622163058354 ], [ -95.63332606567387, 29.638538163257923 ], [ -95.634311065814842, 29.63835316328111 ], [ -95.63570706541006, 29.638076162875251 ], [ -95.636016065646572, 29.638037162677172 ], [ -95.636366066093004, 29.638024162674053 ], [ -95.636386065743707, 29.637830163054051 ], [ -95.636407065754184, 29.637669162685519 ], [ -95.636451065820495, 29.637432162684664 ], [ -95.636525066309019, 29.637161162499254 ], [ -95.63660406571627, 29.636948162982659 ], [ -95.636688066385886, 29.636748162467317 ], [ -95.636754065750793, 29.636601162617602 ], [ -95.636833066017644, 29.636469162658944 ], [ -95.636917065987404, 29.636353162916695 ], [ -95.637325066452036, 29.635840162346117 ], [ -95.637425066438723, 29.635714162350759 ], [ -95.637502066668901, 29.635595162943975 ], [ -95.637568065878497, 29.63545316238681 ], [ -95.637618065930525, 29.635321162698652 ], [ -95.637660066318517, 29.63517916211271 ], [ -95.63769406667717, 29.634982162503857 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1529, "Tract": "48157672603", "Area_SqMi": 0.53866103151266032, "total_2009": 26, "total_2010": 9, "total_2011": 10, "total_2012": 25, "total_2013": 69, "total_2014": 85, "total_2015": 110, "total_2016": 147, "total_2017": 59, "total_2018": 114, "total_2019": 136, "total_2020": 151, "age1": 71, "age2": 74, "age3": 27, "earn1": 79, "earn2": 61, "earn3": 32, "naics_s01": 0, "naics_s02": 9, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 33, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 9, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 47, "naics_s17": 0, "naics_s18": 73, "naics_s19": 0, "naics_s20": 0, "race1": 105, "race2": 39, "race3": 3, "race4": 22, "race5": 0, "race6": 3, "ethnicity1": 118, "ethnicity2": 54, "edu1": 26, "edu2": 30, "edu3": 28, "edu4": 17, "Shape_Length": 15393.125574314075, "Shape_Area": 15016947.631003655, "total_2021": 182, "total_2022": 172 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.688132081878592, 29.707369175587107 ], [ -95.688132082671316, 29.70729917575725 ], [ -95.688118082548172, 29.706514175500256 ], [ -95.688114082538775, 29.706286175583806 ], [ -95.68809308171727, 29.705063175267753 ], [ -95.688036082291646, 29.703237174689654 ], [ -95.688033082453302, 29.703014174473804 ], [ -95.688012082222329, 29.701074173743283 ], [ -95.688011081837658, 29.701026174479132 ], [ -95.68801208237565, 29.700938174170052 ], [ -95.688034081991347, 29.697972173580279 ], [ -95.688032082199513, 29.697832173717138 ], [ -95.68794408136759, 29.697839173237686 ], [ -95.687470081543381, 29.697881173658008 ], [ -95.68743108204562, 29.697912173976619 ], [ -95.687342081587019, 29.69792117383232 ], [ -95.687286081966548, 29.697923173375106 ], [ -95.687230081875711, 29.697921173422309 ], [ -95.687175081873818, 29.697913173270514 ], [ -95.687118081969885, 29.697901173805004 ], [ -95.68705408194144, 29.69788417398869 ], [ -95.686983081392171, 29.697863173892205 ], [ -95.686910081410034, 29.69783717348097 ], [ -95.686852082013473, 29.697812173264179 ], [ -95.686838081130659, 29.697806173839233 ], [ -95.686766081086574, 29.697767173435675 ], [ -95.686694081648099, 29.697719173993026 ], [ -95.686648081028153, 29.697684173583141 ], [ -95.686621081740668, 29.697663173398212 ], [ -95.686399081197763, 29.69748017336504 ], [ -95.686330081282492, 29.697417173454131 ], [ -95.686263081705718, 29.69735717363216 ], [ -95.6860260812539, 29.697135173690516 ], [ -95.685967081799632, 29.697080173564043 ], [ -95.685907081033193, 29.697024173811045 ], [ -95.685796081650651, 29.696916173523025 ], [ -95.685700081381697, 29.696820173569701 ], [ -95.685650081279476, 29.696771173618831 ], [ -95.68560408105823, 29.696727173813848 ], [ -95.685483081239624, 29.696626173689864 ], [ -95.685433081227572, 29.696592173221411 ], [ -95.685334081028046, 29.696541173257092 ], [ -95.685233080733965, 29.696504173733306 ], [ -95.68517308131004, 29.696488173714812 ], [ -95.684886081251889, 29.696455173426422 ], [ -95.684806080498532, 29.696456173392196 ], [ -95.684731081374224, 29.696457173474489 ], [ -95.684657080507492, 29.696459173047227 ], [ -95.684653080770602, 29.696372173448601 ], [ -95.684647080928926, 29.696200173386938 ], [ -95.684643081258002, 29.696137173281056 ], [ -95.684635081399719, 29.69607017306036 ], [ -95.684641081285022, 29.69604217370604 ], [ -95.684620081031952, 29.695920173317809 ], [ -95.684549080602437, 29.695706173074988 ], [ -95.684414081093266, 29.695521173191693 ], [ -95.684275080313384, 29.695393173206092 ], [ -95.684077081169605, 29.69517517333594 ], [ -95.68391108110265, 29.69527017305645 ], [ -95.683781080861806, 29.695368173468836 ], [ -95.683648080588299, 29.695477173590923 ], [ -95.683430080950686, 29.695567173437713 ], [ -95.683389080351972, 29.695580172833669 ], [ -95.683353080125372, 29.695591173120764 ], [ -95.683268080755255, 29.695610173672353 ], [ -95.683175080254472, 29.695623173115344 ], [ -95.683076080046064, 29.695630173167583 ], [ -95.682684080040886, 29.695637173233933 ], [ -95.682644080235434, 29.695638173520678 ], [ -95.681882079733242, 29.695638173120901 ], [ -95.681297080556277, 29.695654173381456 ], [ -95.681015079696181, 29.695660173072305 ], [ -95.680643079628595, 29.695660172987697 ], [ -95.680613080350057, 29.69566017314316 ], [ -95.680404080138715, 29.695653173679641 ], [ -95.680187080266194, 29.695633172938564 ], [ -95.679896080205665, 29.695608173554152 ], [ -95.679597079888808, 29.695604172993995 ], [ -95.679486080037037, 29.695602173501349 ], [ -95.679049079126145, 29.695610173650376 ], [ -95.67815607896739, 29.695623173808006 ], [ -95.678094079500667, 29.695624173100214 ], [ -95.678025079167824, 29.695633173649455 ], [ -95.677950079431369, 29.695634173517245 ], [ -95.677871079219457, 29.695630173821908 ], [ -95.677361078549566, 29.695637173452322 ], [ -95.676582078530188, 29.695636173231577 ], [ -95.676412079321338, 29.695647173130816 ], [ -95.67573607875822, 29.695727173883999 ], [ -95.675761079136763, 29.695838173104292 ], [ -95.675759078190794, 29.69587917332619 ], [ -95.67576907843474, 29.696115173889854 ], [ -95.675759078921217, 29.69640217379229 ], [ -95.675757078564828, 29.696622173690496 ], [ -95.675755078798048, 29.697065173757213 ], [ -95.675750078252278, 29.697349173741951 ], [ -95.675732078264019, 29.697965173645898 ], [ -95.675731079104438, 29.698288173641323 ], [ -95.675711078796255, 29.699511174036093 ], [ -95.675702078902574, 29.700623174138961 ], [ -95.675702078351563, 29.700680174906761 ], [ -95.67570507863806, 29.700768174513879 ], [ -95.675729078411891, 29.701403174762596 ], [ -95.675717078651488, 29.703570175516834 ], [ -95.675714078792254, 29.703663175510961 ], [ -95.675709079388284, 29.703730174925376 ], [ -95.675826078559425, 29.70379617507157 ], [ -95.675885078616361, 29.703829174890011 ], [ -95.676203078621867, 29.70400617503828 ], [ -95.677029079811732, 29.704466175534186 ], [ -95.677907079671201, 29.704957175345701 ], [ -95.678681079851486, 29.705389175182219 ], [ -95.679995079859225, 29.70612317581412 ], [ -95.682320080708877, 29.707421175305026 ], [ -95.682627080617706, 29.707603175371901 ], [ -95.682877080877404, 29.707745175604241 ], [ -95.683240081601511, 29.70795117600909 ], [ -95.683337081155216, 29.708006175771008 ], [ -95.683402080903534, 29.708041175555039 ], [ -95.687916082641891, 29.707669175132526 ], [ -95.688037081903772, 29.707659175233751 ], [ -95.688132082442209, 29.707650175074001 ], [ -95.688132082401594, 29.70753517577948 ], [ -95.688132082008579, 29.707455175042607 ], [ -95.688132081878592, 29.707369175587107 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1530, "Tract": "48157672304", "Area_SqMi": 0.99396277441881786, "total_2009": 495, "total_2010": 553, "total_2011": 568, "total_2012": 554, "total_2013": 552, "total_2014": 692, "total_2015": 611, "total_2016": 584, "total_2017": 579, "total_2018": 609, "total_2019": 574, "total_2020": 486, "age1": 115, "age2": 278, "age3": 127, "earn1": 110, "earn2": 203, "earn3": 207, "naics_s01": 0, "naics_s02": 0, "naics_s03": 8, "naics_s04": 58, "naics_s05": 130, "naics_s06": 9, "naics_s07": 51, "naics_s08": 110, "naics_s09": 0, "naics_s10": 4, "naics_s11": 6, "naics_s12": 0, "naics_s13": 0, "naics_s14": 36, "naics_s15": 0, "naics_s16": 81, "naics_s17": 0, "naics_s18": 18, "naics_s19": 9, "naics_s20": 0, "race1": 278, "race2": 124, "race3": 3, "race4": 106, "race5": 2, "race6": 7, "ethnicity1": 384, "ethnicity2": 136, "edu1": 98, "edu2": 104, "edu3": 116, "edu4": 87, "Shape_Length": 21851.023565824293, "Shape_Area": 27709980.966506336, "total_2021": 520, "total_2022": 520 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.639686067880163, 29.662323167676213 ], [ -95.639685068439135, 29.662285168137817 ], [ -95.639660068398825, 29.661082168064031 ], [ -95.639643067972457, 29.65994216697538 ], [ -95.6396320674408, 29.658451167476027 ], [ -95.639617068014587, 29.657965166797442 ], [ -95.639590067837403, 29.656824166386677 ], [ -95.639531067212317, 29.654229165941246 ], [ -95.639507067891046, 29.653406165815973 ], [ -95.639501067126531, 29.653172166353109 ], [ -95.639403067350386, 29.649695165449163 ], [ -95.63939906711002, 29.649560165063043 ], [ -95.639399067367037, 29.649536165023193 ], [ -95.639397067387051, 29.649463165102709 ], [ -95.639396067762888, 29.649384165236878 ], [ -95.637602066782279, 29.64944916565787 ], [ -95.636284066065102, 29.649706165381293 ], [ -95.636076066396726, 29.649791165207532 ], [ -95.634627065724942, 29.650438165575736 ], [ -95.634368066017302, 29.650567165565665 ], [ -95.634304066510609, 29.650588165452312 ], [ -95.633670065409959, 29.650797166165873 ], [ -95.633104065893178, 29.650932166189595 ], [ -95.632314065896821, 29.651022165454624 ], [ -95.631524065607991, 29.651066165565144 ], [ -95.631173065103141, 29.651047165731764 ], [ -95.628191064324682, 29.65108516628619 ], [ -95.62545706362566, 29.651109166453168 ], [ -95.625077063322379, 29.651112165872004 ], [ -95.624798064016403, 29.651094165850235 ], [ -95.624624063295187, 29.651075166380224 ], [ -95.624403063410796, 29.651047166439454 ], [ -95.624139063571391, 29.651005165871485 ], [ -95.623644063356309, 29.650929166069378 ], [ -95.623262063734586, 29.65089216653352 ], [ -95.622947063406599, 29.650882166130188 ], [ -95.622560063517966, 29.650882166474599 ], [ -95.622197062739772, 29.650887166247099 ], [ -95.621660062819174, 29.650887166101857 ], [ -95.62082406264409, 29.650913165803718 ], [ -95.62069106274096, 29.650912165796022 ], [ -95.619003062495807, 29.650915166672299 ], [ -95.619005062289645, 29.650991166688474 ], [ -95.619006062404452, 29.651078166234402 ], [ -95.619009061756685, 29.65120116641647 ], [ -95.619027062378919, 29.652070166903517 ], [ -95.619056062749664, 29.65346316702157 ], [ -95.619055062729544, 29.654416167318523 ], [ -95.619055062327504, 29.654647166710088 ], [ -95.619057062639399, 29.654684167459834 ], [ -95.619094062804763, 29.655552167622147 ], [ -95.6191370625193, 29.657070167414869 ], [ -95.619160063025589, 29.658474168012962 ], [ -95.61916806226084, 29.658975168032409 ], [ -95.619168062362391, 29.659001167476998 ], [ -95.619183062652169, 29.660033168184984 ], [ -95.619183062425137, 29.660068167765832 ], [ -95.619193062229925, 29.660781167984126 ], [ -95.619194062952772, 29.660857168747622 ], [ -95.619209063213518, 29.661991168222226 ], [ -95.619945062788972, 29.662019168902606 ], [ -95.622821063214758, 29.662199168320466 ], [ -95.623007063863042, 29.662206168554253 ], [ -95.623496063976447, 29.662255168122986 ], [ -95.623824063803752, 29.662296168286503 ], [ -95.624029063653992, 29.662330168265356 ], [ -95.624300063817103, 29.662384168283374 ], [ -95.624609063903605, 29.662447168326555 ], [ -95.624848064300451, 29.662488168533347 ], [ -95.624888063826162, 29.66249716799917 ], [ -95.624998064319215, 29.662523168687589 ], [ -95.625080064268758, 29.662542168430033 ], [ -95.625260064496615, 29.66256716885481 ], [ -95.625468064319833, 29.662593168196775 ], [ -95.625686064290676, 29.662618168230608 ], [ -95.625826064903563, 29.662626168645065 ], [ -95.625951064376011, 29.662634168124146 ], [ -95.626367065016311, 29.662637168652012 ], [ -95.628312064790649, 29.662577168632879 ], [ -95.629136065191418, 29.662586168341392 ], [ -95.634219066197304, 29.662448168180777 ], [ -95.635094066655597, 29.662431167639017 ], [ -95.635939067452313, 29.662414168432065 ], [ -95.636795067415264, 29.662398167751043 ], [ -95.637638066973423, 29.662370167706126 ], [ -95.639686067880163, 29.662323167676213 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1531, "Tract": "48157672004", "Area_SqMi": 1.1171190557985857, "total_2009": 460, "total_2010": 413, "total_2011": 486, "total_2012": 727, "total_2013": 479, "total_2014": 480, "total_2015": 490, "total_2016": 565, "total_2017": 567, "total_2018": 494, "total_2019": 516, "total_2020": 569, "age1": 142, "age2": 345, "age3": 98, "earn1": 79, "earn2": 138, "earn3": 368, "naics_s01": 4, "naics_s02": 0, "naics_s03": 165, "naics_s04": 27, "naics_s05": 0, "naics_s06": 21, "naics_s07": 124, "naics_s08": 1, "naics_s09": 0, "naics_s10": 3, "naics_s11": 13, "naics_s12": 92, "naics_s13": 0, "naics_s14": 0, "naics_s15": 109, "naics_s16": 9, "naics_s17": 5, "naics_s18": 0, "naics_s19": 12, "naics_s20": 0, "race1": 358, "race2": 114, "race3": 6, "race4": 97, "race5": 0, "race6": 10, "ethnicity1": 441, "ethnicity2": 144, "edu1": 71, "edu2": 109, "edu3": 126, "edu4": 137, "Shape_Length": 23145.583349533943, "Shape_Area": 31143367.307292078, "total_2021": 603, "total_2022": 585 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619209063213518, 29.661991168222226 ], [ -95.619194062952772, 29.660857168747622 ], [ -95.619193062229925, 29.660781167984126 ], [ -95.619183062425137, 29.660068167765832 ], [ -95.619183062652169, 29.660033168184984 ], [ -95.619168062362391, 29.659001167476998 ], [ -95.61916806226084, 29.658975168032409 ], [ -95.619160063025589, 29.658474168012962 ], [ -95.6191370625193, 29.657070167414869 ], [ -95.619094062804763, 29.655552167622147 ], [ -95.619057062639399, 29.654684167459834 ], [ -95.619055062327504, 29.654647166710088 ], [ -95.619055062729544, 29.654416167318523 ], [ -95.619056062749664, 29.65346316702157 ], [ -95.619027062378919, 29.652070166903517 ], [ -95.619009061756685, 29.65120116641647 ], [ -95.619006062404452, 29.651078166234402 ], [ -95.619005062289645, 29.650991166688474 ], [ -95.618220061683317, 29.650945166049123 ], [ -95.617316061893362, 29.650803165869892 ], [ -95.616557061785784, 29.650592166245467 ], [ -95.616354061531311, 29.650910166575823 ], [ -95.616131061651714, 29.651155166745834 ], [ -95.616095061731528, 29.651186166620711 ], [ -95.61596906135847, 29.651294166032635 ], [ -95.615625061285712, 29.651470166938637 ], [ -95.614216061125759, 29.651820166505569 ], [ -95.613017061199699, 29.652051166944648 ], [ -95.610946059917055, 29.652456166700787 ], [ -95.61027505969173, 29.652601166882672 ], [ -95.610255059830493, 29.652605167274004 ], [ -95.609426060106088, 29.652765167011314 ], [ -95.608587059397067, 29.652940167362551 ], [ -95.608476059902657, 29.652960167343867 ], [ -95.608357059634514, 29.652981166823324 ], [ -95.607540058847363, 29.653132167304172 ], [ -95.606495058624901, 29.653345167290301 ], [ -95.606278059208577, 29.65339316690072 ], [ -95.605892058965054, 29.65346716722653 ], [ -95.605163058768113, 29.65361616758911 ], [ -95.603713058514359, 29.653892167286642 ], [ -95.603663058601896, 29.653899167720581 ], [ -95.602719058547422, 29.654103167310208 ], [ -95.601004057614517, 29.654433167733082 ], [ -95.597856057159149, 29.65505416789221 ], [ -95.597884057473735, 29.657233168153311 ], [ -95.597882057059294, 29.658202168804468 ], [ -95.597875057450608, 29.660020168768924 ], [ -95.597871056955697, 29.660357168820202 ], [ -95.597857057551295, 29.660483168740594 ], [ -95.597844057383782, 29.660601168702133 ], [ -95.597844057103714, 29.660699168944234 ], [ -95.597845057140361, 29.660928169097058 ], [ -95.597845057613569, 29.660964168995307 ], [ -95.598953057176629, 29.661473169258734 ], [ -95.599180057859698, 29.661577169342699 ], [ -95.600025057888416, 29.661966168976342 ], [ -95.60045605843554, 29.662164169086239 ], [ -95.600715058008348, 29.662283169416451 ], [ -95.601021058067133, 29.662424169266369 ], [ -95.60119605783639, 29.662505169561069 ], [ -95.602062058325856, 29.662903169303522 ], [ -95.602538058147871, 29.663122168955621 ], [ -95.60276805856715, 29.66322816959612 ], [ -95.604731059632599, 29.664130169180897 ], [ -95.605473059570471, 29.664472169809443 ], [ -95.605985059416057, 29.664762169095265 ], [ -95.607577060263779, 29.665666169678882 ], [ -95.608031059912449, 29.665925169439348 ], [ -95.608737060540292, 29.666326169462657 ], [ -95.6091150602917, 29.666540170067162 ], [ -95.609930061021814, 29.666937169909918 ], [ -95.610032060290067, 29.666995169933887 ], [ -95.611930061323775, 29.668037170398684 ], [ -95.612373061551736, 29.668333170435464 ], [ -95.612530061694102, 29.668437170096421 ], [ -95.612766061474375, 29.668569170488961 ], [ -95.616082062167152, 29.670416169954056 ], [ -95.61610506220515, 29.670356170304924 ], [ -95.616221062130919, 29.670094170056199 ], [ -95.616363062004126, 29.669654169929746 ], [ -95.616511062119812, 29.669254169742857 ], [ -95.616614062003336, 29.66898617025851 ], [ -95.61681706263775, 29.668454169726541 ], [ -95.617440062305661, 29.666802169461288 ], [ -95.617879062933568, 29.665639168928177 ], [ -95.617967062526404, 29.665407169053477 ], [ -95.618139062627705, 29.664948168869174 ], [ -95.618283063095348, 29.664560168951176 ], [ -95.619209063213518, 29.661991168222226 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1532, "Tract": "48157673105", "Area_SqMi": 0.6135954122886933, "total_2009": 152, "total_2010": 60, "total_2011": 61, "total_2012": 63, "total_2013": 77, "total_2014": 91, "total_2015": 92, "total_2016": 83, "total_2017": 127, "total_2018": 188, "total_2019": 203, "total_2020": 212, "age1": 55, "age2": 151, "age3": 68, "earn1": 28, "earn2": 48, "earn3": 198, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 129, "naics_s05": 1, "naics_s06": 10, "naics_s07": 13, "naics_s08": 0, "naics_s09": 1, "naics_s10": 1, "naics_s11": 1, "naics_s12": 49, "naics_s13": 0, "naics_s14": 2, "naics_s15": 24, "naics_s16": 13, "naics_s17": 1, "naics_s18": 11, "naics_s19": 18, "naics_s20": 0, "race1": 171, "race2": 32, "race3": 5, "race4": 55, "race5": 0, "race6": 11, "ethnicity1": 215, "ethnicity2": 59, "edu1": 37, "edu2": 36, "edu3": 71, "edu4": 75, "Shape_Length": 18315.325559447279, "Shape_Area": 17105989.915564992, "total_2021": 242, "total_2022": 274 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.811607114549318, 29.716677173003305 ], [ -95.81148211384054, 29.716564173239956 ], [ -95.810456113416336, 29.715664172781644 ], [ -95.80676011268018, 29.712438172506104 ], [ -95.806664112607777, 29.71235517235209 ], [ -95.806590113193494, 29.712291172478778 ], [ -95.806436113138872, 29.712157172669212 ], [ -95.806156112195183, 29.71191317272967 ], [ -95.806026112679504, 29.711800172807017 ], [ -95.805108112282696, 29.712601172872702 ], [ -95.804702112044609, 29.712955172700131 ], [ -95.804592112281412, 29.713051172539817 ], [ -95.804571112487267, 29.713069172639681 ], [ -95.80307311190505, 29.714389172659047 ], [ -95.802519112137787, 29.714860173134952 ], [ -95.802195111444121, 29.715121173396142 ], [ -95.801850111416471, 29.715341173628843 ], [ -95.801432111899402, 29.71554017325214 ], [ -95.800972111115868, 29.715707172970536 ], [ -95.800376111294398, 29.715801173806476 ], [ -95.800198111760096, 29.715817173802186 ], [ -95.797786110347459, 29.716042173291829 ], [ -95.79683511012928, 29.716130173912564 ], [ -95.795025109687444, 29.716321173932993 ], [ -95.793677109792569, 29.716466173643372 ], [ -95.793206109140783, 29.716553174046471 ], [ -95.79304610957044, 29.716580173790035 ], [ -95.792858109439933, 29.716614173956398 ], [ -95.792409109815836, 29.716734174168327 ], [ -95.791793109460471, 29.716956174120263 ], [ -95.791339109067579, 29.717149173709778 ], [ -95.790990109175567, 29.717345173860309 ], [ -95.790731109362127, 29.717509173977746 ], [ -95.79036610870449, 29.717768173905078 ], [ -95.790096109252204, 29.71800117430643 ], [ -95.789816108325681, 29.718268173936092 ], [ -95.789936108542562, 29.718370174065022 ], [ -95.79099710934868, 29.719259174266227 ], [ -95.794037109736223, 29.721845174542366 ], [ -95.794283109539009, 29.721854174957208 ], [ -95.794363110534746, 29.721829174548411 ], [ -95.794464109583231, 29.721781175200348 ], [ -95.794589109971056, 29.721757174783015 ], [ -95.794698110483438, 29.72177317464017 ], [ -95.79477511022553, 29.72179717455516 ], [ -95.79487511031283, 29.721894174870496 ], [ -95.794883110317954, 29.721906174744287 ], [ -95.794920110445617, 29.722031174741549 ], [ -95.794903110151807, 29.722148174691085 ], [ -95.794873109887348, 29.722259174621723 ], [ -95.794865109940858, 29.722551174530935 ], [ -95.795305110395176, 29.722925175186209 ], [ -95.799226111407563, 29.726238175130774 ], [ -95.79968511153875, 29.726625175416466 ], [ -95.799824111877996, 29.726743175834361 ], [ -95.799987111868788, 29.726880175526198 ], [ -95.801039111860561, 29.72591817562753 ], [ -95.801235112146813, 29.725740175167449 ], [ -95.801675112368883, 29.725350174864044 ], [ -95.8056911127684, 29.721796174561096 ], [ -95.806018113269815, 29.721507174596283 ], [ -95.809287113891244, 29.718615174099508 ], [ -95.809418114006334, 29.718463173865121 ], [ -95.811607114549318, 29.716677173003305 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1533, "Tract": "48157673112", "Area_SqMi": 2.2927963087232572, "total_2009": 231, "total_2010": 140, "total_2011": 171, "total_2012": 237, "total_2013": 280, "total_2014": 314, "total_2015": 338, "total_2016": 309, "total_2017": 338, "total_2018": 544, "total_2019": 523, "total_2020": 2850, "age1": 1411, "age2": 1569, "age3": 425, "earn1": 1049, "earn2": 1537, "earn3": 819, "naics_s01": 6, "naics_s02": 5, "naics_s03": 0, "naics_s04": 19, "naics_s05": 52, "naics_s06": 51, "naics_s07": 229, "naics_s08": 2088, "naics_s09": 3, "naics_s10": 51, "naics_s11": 19, "naics_s12": 143, "naics_s13": 0, "naics_s14": 45, "naics_s15": 63, "naics_s16": 171, "naics_s17": 19, "naics_s18": 392, "naics_s19": 47, "naics_s20": 2, "race1": 2001, "race2": 941, "race3": 40, "race4": 336, "race5": 7, "race6": 80, "ethnicity1": 2315, "ethnicity2": 1090, "edu1": 414, "edu2": 535, "edu3": 569, "edu4": 476, "Shape_Length": 47966.323307599087, "Shape_Area": 63919236.9271034, "total_2021": 3999, "total_2022": 3405 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.826822119048614, 29.733718176571092 ], [ -95.826845119008752, 29.733556176510959 ], [ -95.826782118999944, 29.733452175745988 ], [ -95.826623118991733, 29.733205175780597 ], [ -95.826474118826113, 29.733002176326359 ], [ -95.826330118624142, 29.732823176251049 ], [ -95.826199119121938, 29.732673175823784 ], [ -95.825941118611254, 29.732407176160756 ], [ -95.825542118157941, 29.732056175698034 ], [ -95.825185118288402, 29.73175017597887 ], [ -95.82479711836136, 29.731417175657569 ], [ -95.824491118414187, 29.731155175425624 ], [ -95.824147117629096, 29.730860175418421 ], [ -95.823897117756459, 29.730645175918625 ], [ -95.82370011790411, 29.730586175807428 ], [ -95.82365411743821, 29.730425175554203 ], [ -95.822897117457345, 29.729784175518382 ], [ -95.822463117855818, 29.729415175388237 ], [ -95.822311117392857, 29.729423175219591 ], [ -95.822270117666051, 29.72937717513916 ], [ -95.82193511709076, 29.729000175285975 ], [ -95.821296116842291, 29.728426175625088 ], [ -95.820854116768544, 29.728022175008078 ], [ -95.819844117074211, 29.727121175079795 ], [ -95.819651117092178, 29.726950174878386 ], [ -95.819171116076063, 29.726527174862102 ], [ -95.819065116585776, 29.726412174620926 ], [ -95.819547116761001, 29.725991175176823 ], [ -95.820179116508697, 29.72537817493399 ], [ -95.820423116737189, 29.725091174369439 ], [ -95.820640116760259, 29.724781174886999 ], [ -95.820756117070957, 29.724633174677418 ], [ -95.820882117440945, 29.724382174373886 ], [ -95.821019116951419, 29.724112174044496 ], [ -95.821165116983011, 29.723738174144145 ], [ -95.821317116824375, 29.723263173977223 ], [ -95.821394116935636, 29.722965174079985 ], [ -95.821462117076933, 29.722710174024321 ], [ -95.82172111746867, 29.721723173520754 ], [ -95.821766117329247, 29.721549174248121 ], [ -95.821809116834018, 29.721430173713557 ], [ -95.822008116865661, 29.72095217381797 ], [ -95.822129117441094, 29.720717173638338 ], [ -95.82245511667135, 29.720226173357187 ], [ -95.822556117051889, 29.720066173457091 ], [ -95.822773117435446, 29.719737173123015 ], [ -95.82311411715682, 29.719255173727419 ], [ -95.823751117509687, 29.71841017308012 ], [ -95.823914117479831, 29.718114172935987 ], [ -95.824151117189132, 29.717743173041782 ], [ -95.824358117030016, 29.717195173245447 ], [ -95.82448411738811, 29.716795172380937 ], [ -95.824603117980303, 29.716514172441123 ], [ -95.823722117061834, 29.716284172720673 ], [ -95.822944116881402, 29.716003172319201 ], [ -95.8225851173232, 29.715748172310469 ], [ -95.822529116767512, 29.715720172752516 ], [ -95.822166116578543, 29.715510172953643 ], [ -95.822071117343199, 29.715449172204927 ], [ -95.821464116881344, 29.715059172206871 ], [ -95.82118511689653, 29.714876172418982 ], [ -95.821093116184059, 29.714824172190912 ], [ -95.820715116255016, 29.714675172126903 ], [ -95.820014115933091, 29.714479172242203 ], [ -95.819945116753686, 29.714465172407259 ], [ -95.819759116355328, 29.71442217204677 ], [ -95.819571116573329, 29.714385172116085 ], [ -95.819099115998796, 29.714313172564086 ], [ -95.818991115956209, 29.714297172864089 ], [ -95.818792115628412, 29.714278172414222 ], [ -95.818642116102325, 29.714260172154987 ], [ -95.818577116148973, 29.714256172376903 ], [ -95.818354115393944, 29.714244172027154 ], [ -95.818255115973955, 29.714243172446938 ], [ -95.818155115524732, 29.714243172536364 ], [ -95.817967115765185, 29.714244172439059 ], [ -95.817912115444898, 29.714246172849474 ], [ -95.817826115357704, 29.714250172470368 ], [ -95.816778115124393, 29.714388172910638 ], [ -95.81599211563946, 29.714561172249759 ], [ -95.814499115270678, 29.714892172294682 ], [ -95.81437711531602, 29.714918173136322 ], [ -95.814243114632021, 29.714983173135828 ], [ -95.813942114642046, 29.715127172951281 ], [ -95.813508115109684, 29.715336172636917 ], [ -95.812708114363389, 29.715776173384075 ], [ -95.811997114086424, 29.716367173408646 ], [ -95.81188411436608, 29.716461173446795 ], [ -95.811727113754046, 29.71659317338478 ], [ -95.811607114549318, 29.716677173003305 ], [ -95.809418114006334, 29.718463173865121 ], [ -95.809287113891244, 29.718615174099508 ], [ -95.806018113269815, 29.721507174596283 ], [ -95.8056911127684, 29.721796174561096 ], [ -95.801675112368883, 29.725350174864044 ], [ -95.801235112146813, 29.725740175167449 ], [ -95.801725111704542, 29.726227175004098 ], [ -95.801964112503526, 29.72646517552614 ], [ -95.80210711251604, 29.72675317560212 ], [ -95.802295112516305, 29.72700417534611 ], [ -95.803310112365736, 29.727805175981274 ], [ -95.804472112644959, 29.728862176172594 ], [ -95.80657211381353, 29.730772176270118 ], [ -95.806655113448983, 29.73084717583307 ], [ -95.808310113819502, 29.732243176244548 ], [ -95.810357114723828, 29.734036177150433 ], [ -95.810489114784161, 29.734151176717059 ], [ -95.810219114882656, 29.734336177070144 ], [ -95.809996114115648, 29.734491177069525 ], [ -95.80977311409616, 29.734627176642437 ], [ -95.809606114702333, 29.734714176536297 ], [ -95.809228114419284, 29.734851177317854 ], [ -95.808944114545426, 29.734915176614468 ], [ -95.80868311476226, 29.7349531766959 ], [ -95.808429114660825, 29.734960177143044 ], [ -95.808066114146811, 29.734941177309217 ], [ -95.807924113588427, 29.734913177177067 ], [ -95.807514113720302, 29.734835176612915 ], [ -95.807061113717452, 29.734669176981377 ], [ -95.806645114205935, 29.734525177078609 ], [ -95.806303113177336, 29.734427176903043 ], [ -95.806129113736745, 29.734397177292269 ], [ -95.805830113849169, 29.734399177384276 ], [ -95.80530511387191, 29.734420177101889 ], [ -95.805117113274605, 29.734429177409936 ], [ -95.804412113425613, 29.734609177507693 ], [ -95.803843112633359, 29.734899176953999 ], [ -95.803440112905975, 29.735203176991064 ], [ -95.802927112423532, 29.735642177308133 ], [ -95.802512112452362, 29.735939177610895 ], [ -95.802116112618037, 29.736156177353802 ], [ -95.80172011205596, 29.736360177951656 ], [ -95.801250112214092, 29.73652117736551 ], [ -95.800779112580244, 29.736632177496645 ], [ -95.800293112460068, 29.736691177787524 ], [ -95.799641112169439, 29.736749177771287 ], [ -95.79922211201891, 29.736831177462662 ], [ -95.798696111767271, 29.737019177310842 ], [ -95.798335112163556, 29.737210177888628 ], [ -95.798056111972684, 29.737318177858921 ], [ -95.798015111818799, 29.737353178235459 ], [ -95.797901111688162, 29.737450178261675 ], [ -95.797851112012083, 29.737493177833716 ], [ -95.798030112085186, 29.737584178218185 ], [ -95.798651111949169, 29.737902178370646 ], [ -95.798796111875134, 29.737989178250238 ], [ -95.79910811215953, 29.738076177713101 ], [ -95.79933211200543, 29.738149178187655 ], [ -95.799696111780179, 29.738349178071253 ], [ -95.800106112289797, 29.738604178296974 ], [ -95.800408112567041, 29.738722178433449 ], [ -95.800520112026334, 29.738746178279278 ], [ -95.800829112569801, 29.738814177705567 ], [ -95.801370112859317, 29.738946177987415 ], [ -95.801698112852876, 29.739051177833243 ], [ -95.801843112489138, 29.739129178321154 ], [ -95.801880113246611, 29.739174178499063 ], [ -95.801942113107586, 29.739279178337487 ], [ -95.802144113306539, 29.739560177797628 ], [ -95.802643112984768, 29.740151177982479 ], [ -95.803396113705674, 29.740629178046543 ], [ -95.806197114039861, 29.742590178961091 ], [ -95.806639113780435, 29.742935178993662 ], [ -95.806878113803364, 29.743159178570281 ], [ -95.806963114150477, 29.743236178291479 ], [ -95.807013114429225, 29.743280178886511 ], [ -95.807074114436702, 29.743331178395906 ], [ -95.807271114666307, 29.743476178718662 ], [ -95.807500114573315, 29.743713178622329 ], [ -95.807718114216016, 29.743949178600307 ], [ -95.807894114398721, 29.744308179213181 ], [ -95.808049114196379, 29.744726178566339 ], [ -95.808163114867952, 29.744921179175517 ], [ -95.808392114369113, 29.74496717873485 ], [ -95.808658115169308, 29.744944179430096 ], [ -95.808861114932597, 29.744886179257552 ], [ -95.80912211455977, 29.744428179294964 ], [ -95.809294114478476, 29.744324178953331 ], [ -95.809357114722104, 29.74429717873485 ], [ -95.809669115419652, 29.744320178526902 ], [ -95.810012115114873, 29.744402178432267 ], [ -95.81021011460615, 29.744462178521459 ], [ -95.810413115566675, 29.744444178926241 ], [ -95.810642115109317, 29.744408178757318 ], [ -95.811179115343421, 29.744214178714778 ], [ -95.811449115070332, 29.744214179065946 ], [ -95.811517115837674, 29.744269179005663 ], [ -95.811569115951386, 29.744373178706056 ], [ -95.811625115331623, 29.744568178700618 ], [ -95.811599115638046, 29.74471817923737 ], [ -95.811327115621552, 29.745171178934473 ], [ -95.810852115097148, 29.745783179236188 ], [ -95.810691115116484, 29.745869178967556 ], [ -95.810436115452603, 29.745851179591956 ], [ -95.810061114736229, 29.745800178719232 ], [ -95.80983211479618, 29.745854178829156 ], [ -95.809759114971897, 29.745895179245366 ], [ -95.809602114526541, 29.746067179638938 ], [ -95.809227114833277, 29.746515179155605 ], [ -95.809185114734802, 29.746656179551959 ], [ -95.809205114993517, 29.746724178987812 ], [ -95.809268115320066, 29.74679217980685 ], [ -95.809429115521766, 29.746879179326136 ], [ -95.809528115546911, 29.746902179431981 ], [ -95.809976114683963, 29.746644178996561 ], [ -95.81019511568131, 29.746612179011031 ], [ -95.810502115376792, 29.746631179271208 ], [ -95.810616114795053, 29.746681179516244 ], [ -95.810736115380266, 29.746749178964144 ], [ -95.810907115400028, 29.74696317894 ], [ -95.810891115724701, 29.747054179783525 ], [ -95.810796114912591, 29.747466179500869 ], [ -95.810744115885328, 29.747625179648452 ], [ -95.81073311562794, 29.747988179840483 ], [ -95.810524115655724, 29.74842817935102 ], [ -95.810471115509074, 29.748596179439151 ], [ -95.810487115202918, 29.748655179531333 ], [ -95.810658115225607, 29.7487411798535 ], [ -95.810971115098539, 29.748706180123442 ], [ -95.811101115844579, 29.748651179328263 ], [ -95.811440115104361, 29.748280179253225 ], [ -95.811628116097879, 29.748198179581287 ], [ -95.811758115940791, 29.748199179910682 ], [ -95.81190911527581, 29.748244179135771 ], [ -95.812002115607484, 29.748331179354452 ], [ -95.812038115872298, 29.748394179653253 ], [ -95.812184116157638, 29.748562180082473 ], [ -95.812444116319426, 29.748649179943801 ], [ -95.812615115995314, 29.748754179523537 ], [ -95.812797116033806, 29.748958179859319 ], [ -95.812849116250689, 29.74909917968569 ], [ -95.812880115778157, 29.749299180052933 ], [ -95.812859115747585, 29.749389179386931 ], [ -95.812814115756069, 29.749451179653285 ], [ -95.812754115621587, 29.749534179696674 ], [ -95.812649116060953, 29.749793179885508 ], [ -95.812368115708352, 29.750387179577213 ], [ -95.812326115855342, 29.750501180383601 ], [ -95.812320116102441, 29.750625179750475 ], [ -95.812350115576834, 29.750744179663126 ], [ -95.812403115803448, 29.750858180451061 ], [ -95.812497116429199, 29.750953179997342 ], [ -95.812606115878935, 29.751035180042297 ], [ -95.812967115714741, 29.751194180102924 ], [ -95.813293115698812, 29.751194180580839 ], [ -95.813510116393275, 29.75116818006623 ], [ -95.813773116261743, 29.750997180510414 ], [ -95.814044116714442, 29.750906180342128 ], [ -95.814247116594075, 29.750918179657599 ], [ -95.814350116928395, 29.750953179660041 ], [ -95.814382116218837, 29.750986180193447 ], [ -95.814458116210062, 29.751112180509509 ], [ -95.814470116410462, 29.751178180030077 ], [ -95.81447011608158, 29.75125517996948 ], [ -95.814502116269864, 29.75138118026965 ], [ -95.814571116171294, 29.751502179922188 ], [ -95.814672116815331, 29.751629180578711 ], [ -95.814719116475018, 29.751679180072273 ], [ -95.814905116673103, 29.751876179863626 ], [ -95.815157117042645, 29.752288180264472 ], [ -95.815327116585792, 29.752547180084534 ], [ -95.815472117168994, 29.752734180650776 ], [ -95.815686116772085, 29.752805180048181 ], [ -95.815831116544416, 29.752800180474669 ], [ -95.816083116509603, 29.752756180767996 ], [ -95.816141116951528, 29.752752180527796 ], [ -95.816169117421694, 29.752709180505846 ], [ -95.816920117478361, 29.751551179722906 ], [ -95.817156117096019, 29.75136717970296 ], [ -95.817239117382414, 29.75129718046276 ], [ -95.817989116924977, 29.75063918003115 ], [ -95.81892211730414, 29.749814179413484 ], [ -95.819020117468781, 29.749720179407365 ], [ -95.819441118069378, 29.749349179536182 ], [ -95.820165118083111, 29.748713179276642 ], [ -95.821664118393002, 29.747371178930148 ], [ -95.821830118247135, 29.747224179138779 ], [ -95.823476118730198, 29.745767178306078 ], [ -95.823992118166956, 29.745316178297045 ], [ -95.822708118665474, 29.744223177998126 ], [ -95.822036118538676, 29.743652178591411 ], [ -95.82102311734748, 29.74279017829819 ], [ -95.820261117542714, 29.742135177995404 ], [ -95.819090117378124, 29.741141177652281 ], [ -95.817452116831276, 29.739744177521757 ], [ -95.816816116175147, 29.739197177598165 ], [ -95.816778116471397, 29.739162177410929 ], [ -95.816890116163876, 29.739085177482956 ], [ -95.816931117052633, 29.739047177674301 ], [ -95.8169861165741, 29.739000177846801 ], [ -95.817082117020604, 29.738914177193038 ], [ -95.817155117058093, 29.738848177093814 ], [ -95.817241116736298, 29.738778177805223 ], [ -95.817288116876739, 29.738740177803102 ], [ -95.817338116548271, 29.738700177639082 ], [ -95.817390116368188, 29.738660177134289 ], [ -95.817443116363037, 29.738619177755417 ], [ -95.817550116307018, 29.738531177123431 ], [ -95.817661117085493, 29.738445177671082 ], [ -95.817718117224871, 29.738404177529567 ], [ -95.817777116466686, 29.738363177011358 ], [ -95.817838116267723, 29.738319177806737 ], [ -95.817901117097676, 29.738276177412299 ], [ -95.817965116916668, 29.738233177249036 ], [ -95.818101116572308, 29.73815017743982 ], [ -95.818171117291286, 29.738110177241786 ], [ -95.818215116752782, 29.738004177242832 ], [ -95.818404117138456, 29.737840177301752 ], [ -95.818612117279685, 29.737738177316469 ], [ -95.818861117270345, 29.737628177172649 ], [ -95.819154117447596, 29.737515176821454 ], [ -95.819528116855111, 29.737395176824272 ], [ -95.820100116933617, 29.737258176815125 ], [ -95.820356116863039, 29.737200177451534 ], [ -95.820800117490492, 29.737113177073116 ], [ -95.821093117465978, 29.737045177441168 ], [ -95.821495117437735, 29.73692817678991 ], [ -95.821979117880275, 29.736751176696494 ], [ -95.822420117369191, 29.736551176495706 ], [ -95.822759117918977, 29.736452177018787 ], [ -95.822854117453389, 29.736297176859161 ], [ -95.823082118312712, 29.736147176338743 ], [ -95.823344118032267, 29.735952177039589 ], [ -95.823598117619284, 29.735734176894045 ], [ -95.823901118165679, 29.73546117640517 ], [ -95.824108118023247, 29.735274176348572 ], [ -95.824423118581223, 29.734989176094111 ], [ -95.824596117960212, 29.734835176060106 ], [ -95.824771117894855, 29.734704176499431 ], [ -95.824852118137784, 29.734653176728369 ], [ -95.825066118772043, 29.734586176365113 ], [ -95.825186118978422, 29.734423176412395 ], [ -95.82534411834574, 29.734321176289946 ], [ -95.825506118261544, 29.734223176204345 ], [ -95.825672118649607, 29.734130176187733 ], [ -95.825842118407678, 29.734043176247425 ], [ -95.82601511863578, 29.733961176121003 ], [ -95.8261921182728, 29.733885176043561 ], [ -95.826371118358978, 29.733814176433384 ], [ -95.826554118960416, 29.733749175968875 ], [ -95.826822119048614, 29.733718176571092 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1534, "Tract": "48157673111", "Area_SqMi": 1.7351380486738199, "total_2009": 40, "total_2010": 21, "total_2011": 135, "total_2012": 82, "total_2013": 84, "total_2014": 128, "total_2015": 158, "total_2016": 260, "total_2017": 257, "total_2018": 407, "total_2019": 456, "total_2020": 498, "age1": 506, "age2": 762, "age3": 173, "earn1": 372, "earn2": 635, "earn3": 434, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 30, "naics_s07": 16, "naics_s08": 691, "naics_s09": 10, "naics_s10": 2, "naics_s11": 17, "naics_s12": 135, "naics_s13": 0, "naics_s14": 64, "naics_s15": 25, "naics_s16": 278, "naics_s17": 1, "naics_s18": 63, "naics_s19": 100, "naics_s20": 0, "race1": 777, "race2": 338, "race3": 14, "race4": 284, "race5": 0, "race6": 28, "ethnicity1": 1020, "ethnicity2": 421, "edu1": 172, "edu2": 205, "edu3": 271, "edu4": 287, "Shape_Length": 27107.861603247944, "Shape_Area": 48372679.078575991, "total_2021": 1302, "total_2022": 1441 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.846341123661588, 29.734280175657922 ], [ -95.846336123903711, 29.734094175329922 ], [ -95.84631812418634, 29.733429175697196 ], [ -95.846303123300643, 29.732881174945913 ], [ -95.84630212367847, 29.732703175192306 ], [ -95.846253123916924, 29.727901174142655 ], [ -95.846228123822357, 29.72533217340251 ], [ -95.846212123326723, 29.723712173230506 ], [ -95.846211123121805, 29.723649173837831 ], [ -95.846194123103857, 29.721871172670681 ], [ -95.846172122590417, 29.717899172217795 ], [ -95.845927123244479, 29.71791617261168 ], [ -95.844311122278683, 29.717876172335131 ], [ -95.843408122241058, 29.71775517228085 ], [ -95.842666122143314, 29.717563172313042 ], [ -95.842173121849939, 29.717429171996606 ], [ -95.841657122066195, 29.717163172512006 ], [ -95.840390121075103, 29.716395172324905 ], [ -95.840304121320315, 29.716277172214646 ], [ -95.840117121850497, 29.716241171784404 ], [ -95.840055121506325, 29.716197171823026 ], [ -95.839527120833409, 29.715881172392837 ], [ -95.838709121169629, 29.715540172379029 ], [ -95.837979120418836, 29.715340172218365 ], [ -95.837785120771244, 29.715318171798341 ], [ -95.837483120902178, 29.715284172156416 ], [ -95.836654120952318, 29.715323172497087 ], [ -95.836285120842476, 29.715341171755 ], [ -95.835568120147883, 29.715376172292562 ], [ -95.834458120212361, 29.715397172143426 ], [ -95.834104120211435, 29.715441171948555 ], [ -95.83296912006503, 29.715585172437702 ], [ -95.831954119639207, 29.715616172535945 ], [ -95.831854119121729, 29.715620172257008 ], [ -95.831647119003236, 29.715629172044423 ], [ -95.83146211956003, 29.715650172691735 ], [ -95.83093311920436, 29.715714172706747 ], [ -95.830265119372797, 29.715817172398399 ], [ -95.829666118337187, 29.715959172110814 ], [ -95.829626119252183, 29.715968172644942 ], [ -95.828921118347736, 29.716128172909464 ], [ -95.82887211809448, 29.71614117243886 ], [ -95.828466118103691, 29.716250172618786 ], [ -95.828046118833697, 29.716363172429698 ], [ -95.827407118335898, 29.716523172622736 ], [ -95.826989118209255, 29.716580172949012 ], [ -95.826278117856361, 29.716655172621788 ], [ -95.825582117757278, 29.716640172677629 ], [ -95.825026117135323, 29.71658017279384 ], [ -95.824603117980303, 29.716514172441123 ], [ -95.82448411738811, 29.716795172380937 ], [ -95.824358117030016, 29.717195173245447 ], [ -95.824151117189132, 29.717743173041782 ], [ -95.823914117479831, 29.718114172935987 ], [ -95.823751117509687, 29.71841017308012 ], [ -95.82311411715682, 29.719255173727419 ], [ -95.822773117435446, 29.719737173123015 ], [ -95.822556117051889, 29.720066173457091 ], [ -95.82245511667135, 29.720226173357187 ], [ -95.822129117441094, 29.720717173638338 ], [ -95.822008116865661, 29.72095217381797 ], [ -95.821809116834018, 29.721430173713557 ], [ -95.821766117329247, 29.721549174248121 ], [ -95.82172111746867, 29.721723173520754 ], [ -95.821462117076933, 29.722710174024321 ], [ -95.821394116935636, 29.722965174079985 ], [ -95.821317116824375, 29.723263173977223 ], [ -95.821165116983011, 29.723738174144145 ], [ -95.821019116951419, 29.724112174044496 ], [ -95.820882117440945, 29.724382174373886 ], [ -95.820756117070957, 29.724633174677418 ], [ -95.820640116760259, 29.724781174886999 ], [ -95.820423116737189, 29.725091174369439 ], [ -95.820179116508697, 29.72537817493399 ], [ -95.819547116761001, 29.725991175176823 ], [ -95.819065116585776, 29.726412174620926 ], [ -95.819171116076063, 29.726527174862102 ], [ -95.819651117092178, 29.726950174878386 ], [ -95.819844117074211, 29.727121175079795 ], [ -95.820854116768544, 29.728022175008078 ], [ -95.821296116842291, 29.728426175625088 ], [ -95.82193511709076, 29.729000175285975 ], [ -95.822270117666051, 29.72937717513916 ], [ -95.822311117392857, 29.729423175219591 ], [ -95.822463117855818, 29.729415175388237 ], [ -95.822897117457345, 29.729784175518382 ], [ -95.82365411743821, 29.730425175554203 ], [ -95.82370011790411, 29.730586175807428 ], [ -95.823897117756459, 29.730645175918625 ], [ -95.824147117629096, 29.730860175418421 ], [ -95.824491118414187, 29.731155175425624 ], [ -95.82479711836136, 29.731417175657569 ], [ -95.825185118288402, 29.73175017597887 ], [ -95.825542118157941, 29.732056175698034 ], [ -95.825941118611254, 29.732407176160756 ], [ -95.826199119121938, 29.732673175823784 ], [ -95.826330118624142, 29.732823176251049 ], [ -95.826474118826113, 29.733002176326359 ], [ -95.826623118991733, 29.733205175780597 ], [ -95.826782118999944, 29.733452175745988 ], [ -95.826845119008752, 29.733556176510959 ], [ -95.826822119048614, 29.733718176571092 ], [ -95.826897119221726, 29.733683175949956 ], [ -95.827233119261791, 29.733563176364772 ], [ -95.827271118500789, 29.733549175751353 ], [ -95.82791111862683, 29.733418176005713 ], [ -95.828415119678141, 29.733362175817678 ], [ -95.828729119252657, 29.733358176220733 ], [ -95.829292119178774, 29.733350176255051 ], [ -95.830001119517291, 29.733399176361534 ], [ -95.83014512015923, 29.733430176114005 ], [ -95.830678120095584, 29.733549175911488 ], [ -95.831129119947263, 29.733679175924106 ], [ -95.832394120709353, 29.733993176445196 ], [ -95.833164120565201, 29.73416717627941 ], [ -95.833297120721042, 29.734187175594784 ], [ -95.833364120280336, 29.734200175865947 ], [ -95.835488120841276, 29.734285175758238 ], [ -95.837750121390926, 29.734283175915174 ], [ -95.837910122042686, 29.734318175926436 ], [ -95.837987121624209, 29.734332176178889 ], [ -95.83822312225945, 29.734335175613282 ], [ -95.840146122580677, 29.734326175853024 ], [ -95.842284122685371, 29.734311176065404 ], [ -95.845527123555058, 29.734287175283178 ], [ -95.845555123610836, 29.734287175695947 ], [ -95.845789123277868, 29.734285175844846 ], [ -95.846341123661588, 29.734280175657922 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1535, "Tract": "48157673109", "Area_SqMi": 2.0599058160355104, "total_2009": 57, "total_2010": 35, "total_2011": 116, "total_2012": 219, "total_2013": 542, "total_2014": 683, "total_2015": 831, "total_2016": 896, "total_2017": 1176, "total_2018": 1401, "total_2019": 1458, "total_2020": 1593, "age1": 968, "age2": 908, "age3": 332, "earn1": 813, "earn2": 813, "earn3": 582, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 166, "naics_s05": 2, "naics_s06": 13, "naics_s07": 670, "naics_s08": 24, "naics_s09": 41, "naics_s10": 41, "naics_s11": 9, "naics_s12": 72, "naics_s13": 0, "naics_s14": 13, "naics_s15": 43, "naics_s16": 363, "naics_s17": 36, "naics_s18": 576, "naics_s19": 139, "naics_s20": 0, "race1": 1536, "race2": 388, "race3": 21, "race4": 226, "race5": 1, "race6": 36, "ethnicity1": 1550, "ethnicity2": 658, "edu1": 249, "edu2": 270, "edu3": 369, "edu4": 352, "Shape_Length": 41948.116594310784, "Shape_Area": 57426648.587030873, "total_2021": 1851, "total_2022": 2208 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.846088122202701, 29.706332169860154 ], [ -95.846023122187106, 29.704825169458932 ], [ -95.846016122468015, 29.704009169246191 ], [ -95.846004122111168, 29.702592168792613 ], [ -95.845990122739039, 29.701928169138462 ], [ -95.845982122432787, 29.701499168606549 ], [ -95.845984121778429, 29.700330168788167 ], [ -95.8459891226601, 29.698103167806412 ], [ -95.845952122100755, 29.696144168223995 ], [ -95.845924122232105, 29.69470416762098 ], [ -95.838721120148179, 29.695278167603828 ], [ -95.836682119833725, 29.695455168152499 ], [ -95.835291119008716, 29.695576167970643 ], [ -95.832227118255489, 29.695844168209696 ], [ -95.83172511846341, 29.695888168663547 ], [ -95.831362118063154, 29.695907168451896 ], [ -95.82803111750583, 29.696188168129623 ], [ -95.827830117664462, 29.696204168279916 ], [ -95.826223116534877, 29.696339168284787 ], [ -95.822167116076614, 29.696683168585775 ], [ -95.817814114906142, 29.697035169341596 ], [ -95.816620114196738, 29.697132169024986 ], [ -95.814803114540553, 29.697252169170582 ], [ -95.813028113790054, 29.697369169272676 ], [ -95.811420112957293, 29.697518169087783 ], [ -95.80923011269202, 29.697694169545624 ], [ -95.808970112568318, 29.6977161694595 ], [ -95.808246112156965, 29.697776169174041 ], [ -95.806390112140932, 29.697930169887108 ], [ -95.805041111264956, 29.698043169546256 ], [ -95.803531111091559, 29.698168169601054 ], [ -95.800828110556566, 29.698394170040412 ], [ -95.800029110071648, 29.698458170019471 ], [ -95.798621110152823, 29.698573169635988 ], [ -95.798581109696087, 29.698576170356269 ], [ -95.79509210875311, 29.698861170466902 ], [ -95.79354910841063, 29.698993170054315 ], [ -95.793100108410314, 29.699031170418738 ], [ -95.792900109013644, 29.69904717034451 ], [ -95.79272210825016, 29.699063170608706 ], [ -95.79133210805405, 29.699185169900485 ], [ -95.791369108445153, 29.699225169972358 ], [ -95.791444108229854, 29.699292170599268 ], [ -95.791478107943973, 29.699326170560258 ], [ -95.791588108201267, 29.699435170278733 ], [ -95.791867108378625, 29.699677169990053 ], [ -95.792882108228596, 29.700531170772198 ], [ -95.794247109344411, 29.701680171114322 ], [ -95.794984109333825, 29.702301170454881 ], [ -95.798865110605803, 29.705570170917103 ], [ -95.798932111006351, 29.705626170991138 ], [ -95.79995611104026, 29.70648817166218 ], [ -95.800202111188128, 29.706703171209156 ], [ -95.800806111031349, 29.707228172024678 ], [ -95.802023111640239, 29.7082951713728 ], [ -95.802147110971518, 29.708391172006689 ], [ -95.802650111597842, 29.708838171915978 ], [ -95.802779111640774, 29.708946171981097 ], [ -95.803156111354724, 29.709290172165481 ], [ -95.803426112107957, 29.709518172124355 ], [ -95.80355711144108, 29.709643172280185 ], [ -95.804454112252657, 29.710432171978042 ], [ -95.80469311209427, 29.71064217219309 ], [ -95.804733112317379, 29.710677171803624 ], [ -95.805021112713035, 29.710927172080481 ], [ -95.805100112274104, 29.710995172355712 ], [ -95.806026112679504, 29.711800172807017 ], [ -95.806104113075691, 29.711712171926198 ], [ -95.806304112243765, 29.711493172335036 ], [ -95.806461112989766, 29.711274172568491 ], [ -95.806561112961163, 29.711124172428555 ], [ -95.806602112541981, 29.71101017206151 ], [ -95.80671811252499, 29.710801172523148 ], [ -95.806821112708676, 29.710676172085758 ], [ -95.807408112950696, 29.710141171766441 ], [ -95.808026113446729, 29.709638172226299 ], [ -95.809180112848708, 29.708542171791478 ], [ -95.809288112869154, 29.708451171488623 ], [ -95.809334113344491, 29.708410171898084 ], [ -95.810180113720079, 29.707735171108052 ], [ -95.810725113100929, 29.707258171556671 ], [ -95.811043113655359, 29.706972171168104 ], [ -95.8115781135579, 29.706583170917057 ], [ -95.811925113450144, 29.70636317136681 ], [ -95.81230211407528, 29.70614417110512 ], [ -95.812567113731035, 29.706020170753195 ], [ -95.813143114047492, 29.705796170581305 ], [ -95.813516114054806, 29.705684171042368 ], [ -95.813851114103443, 29.705597170536741 ], [ -95.814439114711007, 29.705490171109847 ], [ -95.815176114494818, 29.705419170923378 ], [ -95.815428114530462, 29.70540417093693 ], [ -95.815641114797828, 29.705404171045828 ], [ -95.815851115168925, 29.70541917077038 ], [ -95.816157114545334, 29.705452170733018 ], [ -95.816679114687361, 29.705510170818172 ], [ -95.816957115198207, 29.705560170540654 ], [ -95.81781011527184, 29.705746171103762 ], [ -95.81898711517178, 29.705990170699721 ], [ -95.819151115648168, 29.706024170382296 ], [ -95.81929611557085, 29.706057170760051 ], [ -95.819478115334491, 29.706090170516806 ], [ -95.819671115850198, 29.706115170845234 ], [ -95.820000115741294, 29.706173170697131 ], [ -95.820389116134606, 29.706181170673108 ], [ -95.821023116521516, 29.706185170351386 ], [ -95.821549116698279, 29.706140170894582 ], [ -95.822228116766027, 29.706045170266268 ], [ -95.822468116817276, 29.705964170935456 ], [ -95.823066116633456, 29.705787170331767 ], [ -95.823600117006265, 29.705610170110361 ], [ -95.823944117300755, 29.705506170236831 ], [ -95.824416116863418, 29.705396170585185 ], [ -95.824826116961631, 29.705330170420677 ], [ -95.8251881171458, 29.705294170124755 ], [ -95.825772117250182, 29.70527317025309 ], [ -95.826298117842938, 29.705289170160395 ], [ -95.826757117170729, 29.705332170590875 ], [ -95.827322118137687, 29.705425170542625 ], [ -95.828046118183437, 29.705591170505642 ], [ -95.828220118375143, 29.705624170160103 ], [ -95.828385118320043, 29.705664170750453 ], [ -95.828767117671816, 29.705705170197426 ], [ -95.829284118296854, 29.705749170594615 ], [ -95.82961911844869, 29.705755170389367 ], [ -95.829958118144219, 29.705749170386639 ], [ -95.8301061188684, 29.705814170399293 ], [ -95.830206118091894, 29.705812170472097 ], [ -95.831124118838289, 29.705800169959929 ], [ -95.831623118542637, 29.705722170093832 ], [ -95.832070118875251, 29.705727170460392 ], [ -95.832501118722504, 29.705742170547968 ], [ -95.832787118863564, 29.705762170442206 ], [ -95.83323111899098, 29.705769170100165 ], [ -95.834696119743441, 29.705759169981942 ], [ -95.836029119576281, 29.705775169793316 ], [ -95.838061120091638, 29.705858170424456 ], [ -95.838696120304746, 29.705904170084501 ], [ -95.841350121786277, 29.706045170395782 ], [ -95.843051121436062, 29.706112169763923 ], [ -95.843533121620681, 29.706148169563029 ], [ -95.843843121641569, 29.70621017020742 ], [ -95.84403112210255, 29.706223170285529 ], [ -95.844506121657275, 29.706290170170263 ], [ -95.844888122370861, 29.70632316998902 ], [ -95.844999122248396, 29.706333169666291 ], [ -95.845350121963179, 29.706345169693847 ], [ -95.845938122911633, 29.706329170046356 ], [ -95.846088122202701, 29.706332169860154 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1536, "Tract": "48157673110", "Area_SqMi": 1.5554421409312804, "total_2009": 31, "total_2010": 23, "total_2011": 138, "total_2012": 62, "total_2013": 73, "total_2014": 136, "total_2015": 148, "total_2016": 247, "total_2017": 292, "total_2018": 393, "total_2019": 427, "total_2020": 430, "age1": 189, "age2": 301, "age3": 82, "earn1": 176, "earn2": 211, "earn3": 185, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 0, "naics_s06": 2, "naics_s07": 65, "naics_s08": 1, "naics_s09": 0, "naics_s10": 2, "naics_s11": 7, "naics_s12": 95, "naics_s13": 0, "naics_s14": 12, "naics_s15": 56, "naics_s16": 178, "naics_s17": 3, "naics_s18": 55, "naics_s19": 75, "naics_s20": 0, "race1": 367, "race2": 65, "race3": 5, "race4": 124, "race5": 0, "race6": 11, "ethnicity1": 428, "ethnicity2": 144, "edu1": 80, "edu2": 99, "edu3": 100, "edu4": 104, "Shape_Length": 32194.722103251399, "Shape_Area": 43363064.723333813, "total_2021": 429, "total_2022": 572 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.846172122590417, 29.717899172217795 ], [ -95.84617112262994, 29.71775017221584 ], [ -95.846138123237736, 29.711747171038311 ], [ -95.846138122922397, 29.711683170564832 ], [ -95.846104122109139, 29.707678170101524 ], [ -95.84609312239796, 29.706484169902012 ], [ -95.846093122936594, 29.706436170174822 ], [ -95.846088122202701, 29.706332169860154 ], [ -95.845938122911633, 29.706329170046356 ], [ -95.845350121963179, 29.706345169693847 ], [ -95.844999122248396, 29.706333169666291 ], [ -95.844888122370861, 29.70632316998902 ], [ -95.844506121657275, 29.706290170170263 ], [ -95.84403112210255, 29.706223170285529 ], [ -95.843843121641569, 29.70621017020742 ], [ -95.843533121620681, 29.706148169563029 ], [ -95.843051121436062, 29.706112169763923 ], [ -95.841350121786277, 29.706045170395782 ], [ -95.838696120304746, 29.705904170084501 ], [ -95.838061120091638, 29.705858170424456 ], [ -95.836029119576281, 29.705775169793316 ], [ -95.834696119743441, 29.705759169981942 ], [ -95.83323111899098, 29.705769170100165 ], [ -95.832787118863564, 29.705762170442206 ], [ -95.832501118722504, 29.705742170547968 ], [ -95.832070118875251, 29.705727170460392 ], [ -95.831623118542637, 29.705722170093832 ], [ -95.831124118838289, 29.705800169959929 ], [ -95.830206118091894, 29.705812170472097 ], [ -95.8301061188684, 29.705814170399293 ], [ -95.829958118144219, 29.705749170386639 ], [ -95.82961911844869, 29.705755170389367 ], [ -95.829284118296854, 29.705749170594615 ], [ -95.828767117671816, 29.705705170197426 ], [ -95.828385118320043, 29.705664170750453 ], [ -95.828220118375143, 29.705624170160103 ], [ -95.828046118183437, 29.705591170505642 ], [ -95.827322118137687, 29.705425170542625 ], [ -95.826757117170729, 29.705332170590875 ], [ -95.826298117842938, 29.705289170160395 ], [ -95.825772117250182, 29.70527317025309 ], [ -95.8251881171458, 29.705294170124755 ], [ -95.824826116961631, 29.705330170420677 ], [ -95.824416116863418, 29.705396170585185 ], [ -95.823944117300755, 29.705506170236831 ], [ -95.823600117006265, 29.705610170110361 ], [ -95.823066116633456, 29.705787170331767 ], [ -95.822468116817276, 29.705964170935456 ], [ -95.822228116766027, 29.706045170266268 ], [ -95.821549116698279, 29.706140170894582 ], [ -95.821023116521516, 29.706185170351386 ], [ -95.820389116134606, 29.706181170673108 ], [ -95.820000115741294, 29.706173170697131 ], [ -95.819671115850198, 29.706115170845234 ], [ -95.819478115334491, 29.706090170516806 ], [ -95.81929611557085, 29.706057170760051 ], [ -95.819151115648168, 29.706024170382296 ], [ -95.81898711517178, 29.705990170699721 ], [ -95.81781011527184, 29.705746171103762 ], [ -95.816957115198207, 29.705560170540654 ], [ -95.816679114687361, 29.705510170818172 ], [ -95.816157114545334, 29.705452170733018 ], [ -95.815851115168925, 29.70541917077038 ], [ -95.815641114797828, 29.705404171045828 ], [ -95.815428114530462, 29.70540417093693 ], [ -95.815176114494818, 29.705419170923378 ], [ -95.814439114711007, 29.705490171109847 ], [ -95.813851114103443, 29.705597170536741 ], [ -95.813516114054806, 29.705684171042368 ], [ -95.813143114047492, 29.705796170581305 ], [ -95.812567113731035, 29.706020170753195 ], [ -95.81230211407528, 29.70614417110512 ], [ -95.811925113450144, 29.70636317136681 ], [ -95.8115781135579, 29.706583170917057 ], [ -95.811043113655359, 29.706972171168104 ], [ -95.810725113100929, 29.707258171556671 ], [ -95.810180113720079, 29.707735171108052 ], [ -95.809334113344491, 29.708410171898084 ], [ -95.809288112869154, 29.708451171488623 ], [ -95.809180112848708, 29.708542171791478 ], [ -95.808026113446729, 29.709638172226299 ], [ -95.807408112950696, 29.710141171766441 ], [ -95.806821112708676, 29.710676172085758 ], [ -95.80671811252499, 29.710801172523148 ], [ -95.806602112541981, 29.71101017206151 ], [ -95.806561112961163, 29.711124172428555 ], [ -95.806461112989766, 29.711274172568491 ], [ -95.806304112243765, 29.711493172335036 ], [ -95.806104113075691, 29.711712171926198 ], [ -95.806026112679504, 29.711800172807017 ], [ -95.806156112195183, 29.71191317272967 ], [ -95.806436113138872, 29.712157172669212 ], [ -95.806590113193494, 29.712291172478778 ], [ -95.806664112607777, 29.71235517235209 ], [ -95.80676011268018, 29.712438172506104 ], [ -95.810456113416336, 29.715664172781644 ], [ -95.81148211384054, 29.716564173239956 ], [ -95.811607114549318, 29.716677173003305 ], [ -95.811727113754046, 29.71659317338478 ], [ -95.81188411436608, 29.716461173446795 ], [ -95.811997114086424, 29.716367173408646 ], [ -95.812708114363389, 29.715776173384075 ], [ -95.813508115109684, 29.715336172636917 ], [ -95.813942114642046, 29.715127172951281 ], [ -95.814243114632021, 29.714983173135828 ], [ -95.81437711531602, 29.714918173136322 ], [ -95.814499115270678, 29.714892172294682 ], [ -95.81599211563946, 29.714561172249759 ], [ -95.816778115124393, 29.714388172910638 ], [ -95.817826115357704, 29.714250172470368 ], [ -95.817912115444898, 29.714246172849474 ], [ -95.817967115765185, 29.714244172439059 ], [ -95.818155115524732, 29.714243172536364 ], [ -95.818255115973955, 29.714243172446938 ], [ -95.818354115393944, 29.714244172027154 ], [ -95.818577116148973, 29.714256172376903 ], [ -95.818642116102325, 29.714260172154987 ], [ -95.818792115628412, 29.714278172414222 ], [ -95.818991115956209, 29.714297172864089 ], [ -95.819099115998796, 29.714313172564086 ], [ -95.819571116573329, 29.714385172116085 ], [ -95.819759116355328, 29.71442217204677 ], [ -95.819945116753686, 29.714465172407259 ], [ -95.820014115933091, 29.714479172242203 ], [ -95.820715116255016, 29.714675172126903 ], [ -95.821093116184059, 29.714824172190912 ], [ -95.82118511689653, 29.714876172418982 ], [ -95.821464116881344, 29.715059172206871 ], [ -95.822071117343199, 29.715449172204927 ], [ -95.822166116578543, 29.715510172953643 ], [ -95.822529116767512, 29.715720172752516 ], [ -95.8225851173232, 29.715748172310469 ], [ -95.822944116881402, 29.716003172319201 ], [ -95.823722117061834, 29.716284172720673 ], [ -95.824603117980303, 29.716514172441123 ], [ -95.825026117135323, 29.71658017279384 ], [ -95.825582117757278, 29.716640172677629 ], [ -95.826278117856361, 29.716655172621788 ], [ -95.826989118209255, 29.716580172949012 ], [ -95.827407118335898, 29.716523172622736 ], [ -95.828046118833697, 29.716363172429698 ], [ -95.828466118103691, 29.716250172618786 ], [ -95.82887211809448, 29.71614117243886 ], [ -95.828921118347736, 29.716128172909464 ], [ -95.829626119252183, 29.715968172644942 ], [ -95.829666118337187, 29.715959172110814 ], [ -95.830265119372797, 29.715817172398399 ], [ -95.83093311920436, 29.715714172706747 ], [ -95.83146211956003, 29.715650172691735 ], [ -95.831647119003236, 29.715629172044423 ], [ -95.831854119121729, 29.715620172257008 ], [ -95.831954119639207, 29.715616172535945 ], [ -95.83296912006503, 29.715585172437702 ], [ -95.834104120211435, 29.715441171948555 ], [ -95.834458120212361, 29.715397172143426 ], [ -95.835568120147883, 29.715376172292562 ], [ -95.836285120842476, 29.715341171755 ], [ -95.836654120952318, 29.715323172497087 ], [ -95.837483120902178, 29.715284172156416 ], [ -95.837785120771244, 29.715318171798341 ], [ -95.837979120418836, 29.715340172218365 ], [ -95.838709121169629, 29.715540172379029 ], [ -95.839527120833409, 29.715881172392837 ], [ -95.840055121506325, 29.716197171823026 ], [ -95.840117121850497, 29.716241171784404 ], [ -95.840304121320315, 29.716277172214646 ], [ -95.840390121075103, 29.716395172324905 ], [ -95.841657122066195, 29.717163172512006 ], [ -95.842173121849939, 29.717429171996606 ], [ -95.842666122143314, 29.717563172313042 ], [ -95.843408122241058, 29.71775517228085 ], [ -95.844311122278683, 29.717876172335131 ], [ -95.845927123244479, 29.71791617261168 ], [ -95.846172122590417, 29.717899172217795 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1537, "Tract": "48157673113", "Area_SqMi": 1.4429611766422921, "total_2009": 525, "total_2010": 244, "total_2011": 1148, "total_2012": 136, "total_2013": 196, "total_2014": 278, "total_2015": 265, "total_2016": 301, "total_2017": 347, "total_2018": 746, "total_2019": 480, "total_2020": 443, "age1": 155, "age2": 268, "age3": 90, "earn1": 126, "earn2": 240, "earn3": 147, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 2, "naics_s06": 16, "naics_s07": 54, "naics_s08": 43, "naics_s09": 3, "naics_s10": 9, "naics_s11": 6, "naics_s12": 65, "naics_s13": 0, "naics_s14": 43, "naics_s15": 3, "naics_s16": 167, "naics_s17": 1, "naics_s18": 77, "naics_s19": 11, "naics_s20": 0, "race1": 342, "race2": 82, "race3": 5, "race4": 74, "race5": 1, "race6": 9, "ethnicity1": 378, "ethnicity2": 135, "edu1": 58, "edu2": 85, "edu3": 103, "edu4": 112, "Shape_Length": 31733.847585037256, "Shape_Area": 40227287.952051207, "total_2021": 424, "total_2022": 513 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.810489114784161, 29.734151176717059 ], [ -95.810357114723828, 29.734036177150433 ], [ -95.808310113819502, 29.732243176244548 ], [ -95.806655113448983, 29.73084717583307 ], [ -95.80657211381353, 29.730772176270118 ], [ -95.804472112644959, 29.728862176172594 ], [ -95.803310112365736, 29.727805175981274 ], [ -95.802295112516305, 29.72700417534611 ], [ -95.80210711251604, 29.72675317560212 ], [ -95.801964112503526, 29.72646517552614 ], [ -95.801725111704542, 29.726227175004098 ], [ -95.801235112146813, 29.725740175167449 ], [ -95.801039111860561, 29.72591817562753 ], [ -95.799987111868788, 29.726880175526198 ], [ -95.7993231114487, 29.727408175992718 ], [ -95.799104111435554, 29.727579176155405 ], [ -95.798738111532856, 29.727855175621553 ], [ -95.79834811123041, 29.728062176081835 ], [ -95.798015111326592, 29.728221175896973 ], [ -95.797722111596059, 29.728335176332923 ], [ -95.797251111476442, 29.728506175901433 ], [ -95.796877110597038, 29.728611176159045 ], [ -95.796348111353026, 29.728725176150839 ], [ -95.795869110480595, 29.728790175775892 ], [ -95.795360110177398, 29.728860176602034 ], [ -95.794746110356442, 29.728836176120009 ], [ -95.79416811035324, 29.728781176012053 ], [ -95.793694109907932, 29.728712176102182 ], [ -95.792860109984161, 29.728544176610718 ], [ -95.792133110283672, 29.728423176237065 ], [ -95.791521109565693, 29.728361175879034 ], [ -95.791005109871719, 29.72837517613884 ], [ -95.790538108888526, 29.728403176700787 ], [ -95.789885108877826, 29.72853317614328 ], [ -95.789788108753456, 29.72855817639654 ], [ -95.789158109544346, 29.728726176061755 ], [ -95.788495109085574, 29.728966176529024 ], [ -95.787663108770886, 29.729434176460472 ], [ -95.787340108117732, 29.729662176480375 ], [ -95.787237108529951, 29.729736176515658 ], [ -95.786963108997156, 29.729954176868468 ], [ -95.786759108119611, 29.730152176608126 ], [ -95.786427108383094, 29.730519177062636 ], [ -95.786164107889164, 29.730859176931421 ], [ -95.786029108183541, 29.731057177392813 ], [ -95.785832108290151, 29.731400177081557 ], [ -95.785551108155772, 29.731951176813279 ], [ -95.785393107899395, 29.732401177358287 ], [ -95.785358108194544, 29.732465177029084 ], [ -95.785327108730726, 29.732533177239695 ], [ -95.785250108663675, 29.732724177380124 ], [ -95.784641108630339, 29.73422617724059 ], [ -95.784455108605712, 29.734663178043061 ], [ -95.784305108323466, 29.734964178283448 ], [ -95.784146108163498, 29.735228177705064 ], [ -95.78394510797618, 29.735550177527365 ], [ -95.783625108387923, 29.736000177898916 ], [ -95.782753107905847, 29.737254178299981 ], [ -95.781918108137475, 29.738451178591575 ], [ -95.781828108008568, 29.738584178838906 ], [ -95.782598107339922, 29.738970179057695 ], [ -95.782651107743732, 29.738990178541972 ], [ -95.782885107693374, 29.73907817875569 ], [ -95.783783108245146, 29.739313179014054 ], [ -95.785316108441975, 29.739649178526797 ], [ -95.785701108677316, 29.739813179000986 ], [ -95.785909108856174, 29.739906178506256 ], [ -95.78617210901821, 29.740061179114431 ], [ -95.786707109153056, 29.740381178493433 ], [ -95.787162109035307, 29.740711178459499 ], [ -95.787517109358859, 29.74101817865213 ], [ -95.787736109359315, 29.741180179199795 ], [ -95.787936108914607, 29.741328178872365 ], [ -95.78813810889514, 29.741424179093194 ], [ -95.788682109975227, 29.741883178734316 ], [ -95.788780109503989, 29.741975178737832 ], [ -95.788903109902733, 29.742082179370765 ], [ -95.788953109903844, 29.742134179225094 ], [ -95.789038109382545, 29.742221179472878 ], [ -95.789062109758817, 29.742246179281693 ], [ -95.789087109996615, 29.742274178842262 ], [ -95.789145109605926, 29.742332179313749 ], [ -95.789170109408047, 29.742354179421906 ], [ -95.789179109155754, 29.742362178918022 ], [ -95.789246109218908, 29.742429178908612 ], [ -95.789278109619204, 29.742466178795333 ], [ -95.789315109345807, 29.74249917911839 ], [ -95.789392110083256, 29.742575179087645 ], [ -95.789637109585811, 29.74278917938441 ], [ -95.790979110608703, 29.743910179852758 ], [ -95.791089110712122, 29.744002179329243 ], [ -95.791732110687235, 29.744539179638338 ], [ -95.792874111134083, 29.745483179825957 ], [ -95.792932110665504, 29.745533179892863 ], [ -95.793614110878252, 29.746113180199732 ], [ -95.793679110964874, 29.746169179882134 ], [ -95.793712110609064, 29.746197179481271 ], [ -95.794200111063702, 29.746612179908407 ], [ -95.794852111421704, 29.747169180087443 ], [ -95.794902111027923, 29.74721217974848 ], [ -95.794967111459343, 29.747268179666353 ], [ -95.79548711112956, 29.747708179986454 ], [ -95.795844111678107, 29.748010180460994 ], [ -95.796893111807762, 29.748906179968582 ], [ -95.797328112058835, 29.74928018063834 ], [ -95.797474112239499, 29.749406180123984 ], [ -95.797823112166057, 29.74970618033803 ], [ -95.797929112198091, 29.749772180643962 ], [ -95.797982112615131, 29.74984218083452 ], [ -95.798182112659575, 29.750013180614236 ], [ -95.798567112380795, 29.750329180530585 ], [ -95.798842112394155, 29.750539180636842 ], [ -95.798892112527028, 29.750578180307155 ], [ -95.798927112289022, 29.750549180129394 ], [ -95.798933112843969, 29.750521180378694 ], [ -95.798952112655016, 29.750476180746666 ], [ -95.798981112821778, 29.750427180636013 ], [ -95.799050112270493, 29.750347180506424 ], [ -95.799162112862405, 29.750241180051955 ], [ -95.799810112612008, 29.74966418000518 ], [ -95.800289112968727, 29.749238180615713 ], [ -95.800436112646793, 29.749107180580889 ], [ -95.800522112350478, 29.749030180559238 ], [ -95.800581113295053, 29.748977180542457 ], [ -95.800602112941661, 29.74895918014418 ], [ -95.801219112910786, 29.748418179674118 ], [ -95.801845113308033, 29.747850179618279 ], [ -95.802488112952034, 29.747278179643942 ], [ -95.802521113587588, 29.747248179533518 ], [ -95.803088113046414, 29.746738179436669 ], [ -95.803196113314584, 29.746641179986074 ], [ -95.803334113191141, 29.746517179096696 ], [ -95.803702113022396, 29.746188179746355 ], [ -95.804224113372769, 29.745719179407978 ], [ -95.804668114239192, 29.745311179299325 ], [ -95.804866113464939, 29.745126179535259 ], [ -95.805193113699701, 29.744844179217857 ], [ -95.80541511427748, 29.744642178786048 ], [ -95.805534114396565, 29.74452817897771 ], [ -95.805622114098369, 29.744450179178031 ], [ -95.806039114058152, 29.744073178696564 ], [ -95.806162114441349, 29.743974178785184 ], [ -95.806365114271486, 29.743781179234514 ], [ -95.806595113926846, 29.743573178628317 ], [ -95.806810113805838, 29.743376179022619 ], [ -95.806898114141774, 29.743296178322026 ], [ -95.806963114150477, 29.743236178291479 ], [ -95.806878113803364, 29.743159178570281 ], [ -95.806639113780435, 29.742935178993662 ], [ -95.806197114039861, 29.742590178961091 ], [ -95.803396113705674, 29.740629178046543 ], [ -95.802643112984768, 29.740151177982479 ], [ -95.802144113306539, 29.739560177797628 ], [ -95.801942113107586, 29.739279178337487 ], [ -95.801880113246611, 29.739174178499063 ], [ -95.801843112489138, 29.739129178321154 ], [ -95.801698112852876, 29.739051177833243 ], [ -95.801370112859317, 29.738946177987415 ], [ -95.800829112569801, 29.738814177705567 ], [ -95.800520112026334, 29.738746178279278 ], [ -95.800408112567041, 29.738722178433449 ], [ -95.800106112289797, 29.738604178296974 ], [ -95.799696111780179, 29.738349178071253 ], [ -95.79933211200543, 29.738149178187655 ], [ -95.79910811215953, 29.738076177713101 ], [ -95.798796111875134, 29.737989178250238 ], [ -95.798651111949169, 29.737902178370646 ], [ -95.798030112085186, 29.737584178218185 ], [ -95.797851112012083, 29.737493177833716 ], [ -95.797901111688162, 29.737450178261675 ], [ -95.798015111818799, 29.737353178235459 ], [ -95.798056111972684, 29.737318177858921 ], [ -95.798335112163556, 29.737210177888628 ], [ -95.798696111767271, 29.737019177310842 ], [ -95.79922211201891, 29.736831177462662 ], [ -95.799641112169439, 29.736749177771287 ], [ -95.800293112460068, 29.736691177787524 ], [ -95.800779112580244, 29.736632177496645 ], [ -95.801250112214092, 29.73652117736551 ], [ -95.80172011205596, 29.736360177951656 ], [ -95.802116112618037, 29.736156177353802 ], [ -95.802512112452362, 29.735939177610895 ], [ -95.802927112423532, 29.735642177308133 ], [ -95.803440112905975, 29.735203176991064 ], [ -95.803843112633359, 29.734899176953999 ], [ -95.804412113425613, 29.734609177507693 ], [ -95.805117113274605, 29.734429177409936 ], [ -95.80530511387191, 29.734420177101889 ], [ -95.805830113849169, 29.734399177384276 ], [ -95.806129113736745, 29.734397177292269 ], [ -95.806303113177336, 29.734427176903043 ], [ -95.806645114205935, 29.734525177078609 ], [ -95.807061113717452, 29.734669176981377 ], [ -95.807514113720302, 29.734835176612915 ], [ -95.807924113588427, 29.734913177177067 ], [ -95.808066114146811, 29.734941177309217 ], [ -95.808429114660825, 29.734960177143044 ], [ -95.80868311476226, 29.7349531766959 ], [ -95.808944114545426, 29.734915176614468 ], [ -95.809228114419284, 29.734851177317854 ], [ -95.809606114702333, 29.734714176536297 ], [ -95.80977311409616, 29.734627176642437 ], [ -95.809996114115648, 29.734491177069525 ], [ -95.810219114882656, 29.734336177070144 ], [ -95.810489114784161, 29.734151176717059 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1538, "Tract": "48157674508", "Area_SqMi": 4.9657242727236515, "total_2009": 290, "total_2010": 249, "total_2011": 416, "total_2012": 565, "total_2013": 670, "total_2014": 746, "total_2015": 887, "total_2016": 833, "total_2017": 911, "total_2018": 843, "total_2019": 886, "total_2020": 937, "age1": 405, "age2": 373, "age3": 157, "earn1": 343, "earn2": 352, "earn3": 240, "naics_s01": 0, "naics_s02": 5, "naics_s03": 0, "naics_s04": 35, "naics_s05": 15, "naics_s06": 12, "naics_s07": 304, "naics_s08": 27, "naics_s09": 0, "naics_s10": 38, "naics_s11": 15, "naics_s12": 20, "naics_s13": 0, "naics_s14": 46, "naics_s15": 5, "naics_s16": 112, "naics_s17": 21, "naics_s18": 215, "naics_s19": 65, "naics_s20": 0, "race1": 592, "race2": 209, "race3": 11, "race4": 102, "race5": 2, "race6": 19, "ethnicity1": 673, "ethnicity2": 262, "edu1": 118, "edu2": 116, "edu3": 160, "edu4": 136, "Shape_Length": 57522.61097262043, "Shape_Area": 138435893.80150315, "total_2021": 914, "total_2022": 935 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.535148035409662, 29.536905146126205 ], [ -95.535146036139125, 29.536682145619359 ], [ -95.535030036139005, 29.535096145166531 ], [ -95.535017035386559, 29.534634145374291 ], [ -95.534995035284723, 29.534026145142402 ], [ -95.534791035623627, 29.533340144693696 ], [ -95.534479035494073, 29.532615145072391 ], [ -95.534324034835436, 29.532074144467856 ], [ -95.534363035619094, 29.531477144439894 ], [ -95.534372035556288, 29.531343144910803 ], [ -95.534573034868359, 29.530475144411618 ], [ -95.53487103540769, 29.529229144308331 ], [ -95.534796034964401, 29.528623143760093 ], [ -95.534777034938386, 29.528467144037659 ], [ -95.534641035182517, 29.527910143767343 ], [ -95.533134034483325, 29.524860143118079 ], [ -95.533090035055451, 29.524768143678472 ], [ -95.532409034075712, 29.523344142650814 ], [ -95.532278034190327, 29.523070142531868 ], [ -95.532122034805113, 29.522743142752468 ], [ -95.53184603418903, 29.522166142658332 ], [ -95.531368033614598, 29.521168142761159 ], [ -95.53065003413279, 29.519707142591539 ], [ -95.52923403357812, 29.516866141936394 ], [ -95.528254033187267, 29.514859141227817 ], [ -95.527874032904023, 29.514082141003936 ], [ -95.527490033126398, 29.513295141209397 ], [ -95.527062032394156, 29.512464140979574 ], [ -95.526634032594245, 29.511512140591364 ], [ -95.526608032352385, 29.51145414090113 ], [ -95.526511032618032, 29.511459140509636 ], [ -95.526415031905103, 29.511465140908705 ], [ -95.526398032326099, 29.511424140630211 ], [ -95.526257032266074, 29.511076141088356 ], [ -95.526086032804315, 29.51109114077147 ], [ -95.525783032212075, 29.511116140358141 ], [ -95.52445203211137, 29.511128141151008 ], [ -95.524029032009125, 29.511030140846191 ], [ -95.523636031381542, 29.51089614042036 ], [ -95.523411031381187, 29.510767140479992 ], [ -95.523209031373, 29.510613140967216 ], [ -95.522971031793915, 29.510378141001823 ], [ -95.521059030855753, 29.507590139942202 ], [ -95.520729031042123, 29.507357140569248 ], [ -95.52068903077523, 29.507336140023853 ], [ -95.52034103096176, 29.507161139877663 ], [ -95.519797030808064, 29.507026140019445 ], [ -95.519571030113326, 29.507012140077748 ], [ -95.51926703072948, 29.507009139722914 ], [ -95.518442030322376, 29.507018139911835 ], [ -95.518413030422423, 29.507018140065036 ], [ -95.517786030236522, 29.507026140020631 ], [ -95.517261030032699, 29.507038139889122 ], [ -95.51606802940772, 29.507055140179357 ], [ -95.514429029219727, 29.507078140065357 ], [ -95.514262029329231, 29.507077140205709 ], [ -95.512668028884903, 29.507104140062882 ], [ -95.512043028820997, 29.507111140745636 ], [ -95.511938028501234, 29.507112140454936 ], [ -95.511690028142141, 29.50711514012438 ], [ -95.510256027596043, 29.507146140705057 ], [ -95.510090028131373, 29.507150140085113 ], [ -95.507694027822438, 29.507180140097475 ], [ -95.507363027504425, 29.507185140701985 ], [ -95.507059027335785, 29.507189140912644 ], [ -95.506147026563966, 29.507201141004895 ], [ -95.505444026436336, 29.507205140337604 ], [ -95.50499602661985, 29.507210140673251 ], [ -95.504827026219928, 29.507218140630879 ], [ -95.50466902682264, 29.507206141010055 ], [ -95.504520026884236, 29.50718814077543 ], [ -95.504353026470653, 29.507220140805831 ], [ -95.504195026382547, 29.507222140426244 ], [ -95.504039026835542, 29.507219140732037 ], [ -95.503890026933661, 29.507225140520362 ], [ -95.503726026484131, 29.507223140785932 ], [ -95.502714025950624, 29.50723914091305 ], [ -95.500818025549449, 29.507269140743571 ], [ -95.500465025889028, 29.507267141042185 ], [ -95.500246025891585, 29.507266140579709 ], [ -95.500183025835639, 29.507266141073988 ], [ -95.500106025232128, 29.507266140520549 ], [ -95.499321025433744, 29.507261140631151 ], [ -95.498596024964186, 29.507243141192625 ], [ -95.497026024302841, 29.507295141175071 ], [ -95.495742024622828, 29.507384141265515 ], [ -95.494816023974465, 29.507376141171541 ], [ -95.494580024187144, 29.507374141290647 ], [ -95.493207024121475, 29.507362141170645 ], [ -95.491234022839265, 29.507427140680864 ], [ -95.489611022544167, 29.507440141065029 ], [ -95.488619022819478, 29.507404141394503 ], [ -95.48668402174701, 29.507410141400378 ], [ -95.480866020786621, 29.507478141527823 ], [ -95.479749020329606, 29.507499141676778 ], [ -95.477091019265927, 29.507553141994197 ], [ -95.47320301900676, 29.507583142179094 ], [ -95.472081018012787, 29.507592141813788 ], [ -95.470446017695565, 29.507629141808749 ], [ -95.468978017690901, 29.507652142225684 ], [ -95.468079016816745, 29.507711142245668 ], [ -95.467763017348517, 29.507712141750076 ], [ -95.467685017685199, 29.507708142311429 ], [ -95.467625016807887, 29.507708141738878 ], [ -95.465499017150677, 29.507694142015023 ], [ -95.463458016360207, 29.507733142498601 ], [ -95.463171016392721, 29.5076921420996 ], [ -95.462963015703139, 29.507827142171593 ], [ -95.46285301611718, 29.50788814231317 ], [ -95.462825016077858, 29.507920142230198 ], [ -95.462681015590221, 29.5080841422429 ], [ -95.463061015877301, 29.508305142227929 ], [ -95.465633016830822, 29.509689142801346 ], [ -95.467471017108707, 29.510693142146966 ], [ -95.468243017915768, 29.511110142270347 ], [ -95.46875701768937, 29.511343143118911 ], [ -95.472077018451103, 29.512984143251167 ], [ -95.472273018875754, 29.513119142975221 ], [ -95.474888019168233, 29.514497143536243 ], [ -95.475174019531451, 29.514648142955483 ], [ -95.475613019589915, 29.514873142931183 ], [ -95.475794019608486, 29.514966142806461 ], [ -95.477670019789002, 29.515930143440798 ], [ -95.479912021095245, 29.517084143426146 ], [ -95.480343021204973, 29.517295143238329 ], [ -95.480530021123428, 29.517407143558295 ], [ -95.480587021293573, 29.517441143995768 ], [ -95.480652021347694, 29.517480143820904 ], [ -95.483264022208928, 29.518877143476839 ], [ -95.484347022415093, 29.519444143967412 ], [ -95.487549022532548, 29.521119144378773 ], [ -95.488622023639053, 29.521634144372754 ], [ -95.491064023697717, 29.522883144080897 ], [ -95.491785024490156, 29.523273144535402 ], [ -95.494056024643911, 29.524492144532182 ], [ -95.495413025180412, 29.525225144772438 ], [ -95.495580025133705, 29.525315144529074 ], [ -95.496476025203876, 29.525799144343505 ], [ -95.498749026002258, 29.526958145242123 ], [ -95.500311026216394, 29.527724145180162 ], [ -95.502626027444393, 29.528957145598167 ], [ -95.504641027828256, 29.530040145630913 ], [ -95.506018027667295, 29.530629145683907 ], [ -95.506729028229856, 29.530886145665047 ], [ -95.506918028407426, 29.530916145269682 ], [ -95.511435029531143, 29.532210145997375 ], [ -95.512204029605741, 29.532430145456669 ], [ -95.512610029588188, 29.53261114522423 ], [ -95.512986029756377, 29.532716145168514 ], [ -95.515834031016468, 29.533591146054061 ], [ -95.516060030573627, 29.533670145629852 ], [ -95.518158031807602, 29.534310145942872 ], [ -95.518399031780163, 29.53438414582045 ], [ -95.522074032343298, 29.535392145606593 ], [ -95.522234032319204, 29.535460146158346 ], [ -95.522488032867997, 29.535520145719239 ], [ -95.523495032369539, 29.535858145462729 ], [ -95.524525032907803, 29.536158145769946 ], [ -95.525630033511845, 29.536490146224558 ], [ -95.527991033654601, 29.537242145774698 ], [ -95.531637034662296, 29.538290146163956 ], [ -95.534321035892972, 29.539061146483178 ], [ -95.534507035761081, 29.539160145759173 ], [ -95.534728035304838, 29.538614145768197 ], [ -95.534905036042431, 29.538155146126151 ], [ -95.534987035728207, 29.537899146195137 ], [ -95.535054035528844, 29.537674146275322 ], [ -95.535114035940126, 29.537352145559517 ], [ -95.535133035760694, 29.537176145564462 ], [ -95.535148035409662, 29.536905146126205 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1539, "Tract": "48157673201", "Area_SqMi": 4.1429904692211847, "total_2009": 284, "total_2010": 391, "total_2011": 436, "total_2012": 322, "total_2013": 441, "total_2014": 394, "total_2015": 535, "total_2016": 556, "total_2017": 701, "total_2018": 733, "total_2019": 625, "total_2020": 680, "age1": 220, "age2": 433, "age3": 162, "earn1": 143, "earn2": 220, "earn3": 452, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 45, "naics_s05": 44, "naics_s06": 6, "naics_s07": 295, "naics_s08": 27, "naics_s09": 4, "naics_s10": 4, "naics_s11": 41, "naics_s12": 50, "naics_s13": 0, "naics_s14": 105, "naics_s15": 18, "naics_s16": 44, "naics_s17": 33, "naics_s18": 57, "naics_s19": 37, "naics_s20": 0, "race1": 673, "race2": 67, "race3": 8, "race4": 53, "race5": 0, "race6": 14, "ethnicity1": 564, "ethnicity2": 251, "edu1": 114, "edu2": 171, "edu3": 189, "edu4": 121, "Shape_Length": 50320.025070574236, "Shape_Area": 115499483.48283207, "total_2021": 710, "total_2022": 815 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.88502613524615, 29.765627180632933 ], [ -95.88501913521722, 29.76487918078001 ], [ -95.884969134616398, 29.762055180127881 ], [ -95.884964135006612, 29.761735179831941 ], [ -95.884961135324971, 29.761451180038122 ], [ -95.884900134378327, 29.755411178943575 ], [ -95.884890134140207, 29.755064178338412 ], [ -95.884866134289226, 29.754720178151818 ], [ -95.884857134720946, 29.754646177984743 ], [ -95.884833134709581, 29.754551178670507 ], [ -95.884806134107379, 29.754354177923616 ], [ -95.884785133974233, 29.752466177560546 ], [ -95.884735134472862, 29.74805417671919 ], [ -95.88485313456772, 29.747884177466457 ], [ -95.884854134744316, 29.747780176745007 ], [ -95.882177133468531, 29.747805177364359 ], [ -95.875388131541726, 29.747869177342675 ], [ -95.874132131864229, 29.747868177849764 ], [ -95.873630131570906, 29.747890177067685 ], [ -95.872799131139658, 29.747907177735954 ], [ -95.871092131113016, 29.74791917709619 ], [ -95.869535129979297, 29.747942177615538 ], [ -95.86944013060301, 29.747942177455034 ], [ -95.866067129893523, 29.747960177457351 ], [ -95.865830129221621, 29.74796017746452 ], [ -95.865825129503861, 29.747774177607273 ], [ -95.865819129871241, 29.747256177802289 ], [ -95.865800129624319, 29.746436177149082 ], [ -95.865654129413073, 29.746421177522482 ], [ -95.865532128784224, 29.746369177366336 ], [ -95.86535512964069, 29.746359177159636 ], [ -95.864301128586689, 29.746370177410313 ], [ -95.858819127607944, 29.746429177872642 ], [ -95.852527125759593, 29.746477177610807 ], [ -95.85235812616547, 29.746911177570851 ], [ -95.852172126100101, 29.747314178348766 ], [ -95.852004126340773, 29.747798177970704 ], [ -95.851911126253043, 29.748143177776178 ], [ -95.851856125625616, 29.748349178674051 ], [ -95.851634126226955, 29.749326178796569 ], [ -95.851653126479079, 29.752422178710404 ], [ -95.85167612591826, 29.755850179965424 ], [ -95.851680126568255, 29.757740180495354 ], [ -95.851714126103289, 29.760970180836516 ], [ -95.851714126633667, 29.76098518046917 ], [ -95.851714126444421, 29.761032181199695 ], [ -95.851733126993054, 29.762853181502006 ], [ -95.851686126667914, 29.763142181129865 ], [ -95.851602126856605, 29.763421181197323 ], [ -95.851449126960958, 29.76371318151293 ], [ -95.851169126821432, 29.763999181259777 ], [ -95.850944126043572, 29.76415518136357 ], [ -95.850694126777171, 29.764293181482529 ], [ -95.850464125789003, 29.764370181536865 ], [ -95.850217126356625, 29.764423181590061 ], [ -95.849748126241849, 29.76445818161114 ], [ -95.847847126012937, 29.764490181901703 ], [ -95.846251125682215, 29.764495181376105 ], [ -95.845153125379426, 29.764502182189815 ], [ -95.843594124214761, 29.764512181849973 ], [ -95.843160123972297, 29.764521181737511 ], [ -95.842028123716048, 29.764359182098438 ], [ -95.841923123835542, 29.764347182121533 ], [ -95.84175312380259, 29.764347182294415 ], [ -95.841713124308697, 29.764353182108362 ], [ -95.841669124517253, 29.764359181499131 ], [ -95.841642124475499, 29.764369181835278 ], [ -95.841631124262292, 29.764374181799052 ], [ -95.841604124429551, 29.764387182241311 ], [ -95.841570124019626, 29.76442418191872 ], [ -95.841536123696656, 29.764477182169173 ], [ -95.841526124399266, 29.764490181635345 ], [ -95.841502124328784, 29.764529181494758 ], [ -95.841481124349357, 29.764570181731873 ], [ -95.841436123742554, 29.764672181693488 ], [ -95.841216123461564, 29.765291182170795 ], [ -95.841128123673712, 29.765539181909006 ], [ -95.841025123435927, 29.765742181980361 ], [ -95.840655123440513, 29.7668031823038 ], [ -95.840448124212941, 29.767347182830559 ], [ -95.839902123521782, 29.768839183090133 ], [ -95.839537123787068, 29.769834182702418 ], [ -95.839386123623143, 29.770248183291688 ], [ -95.839047123627026, 29.771038183594371 ], [ -95.838530123123405, 29.771755183060105 ], [ -95.838259123742475, 29.77202418326662 ], [ -95.837200123728024, 29.772976184003852 ], [ -95.837067123046339, 29.773098184091563 ], [ -95.836371123468496, 29.773670184299316 ], [ -95.836260122603221, 29.773770184076213 ], [ -95.836189123491224, 29.773834183637206 ], [ -95.836152122738511, 29.773867184102912 ], [ -95.836106123469762, 29.773909183643585 ], [ -95.835936123493667, 29.774065184052507 ], [ -95.835603122776448, 29.774364183875274 ], [ -95.834664122637662, 29.77520518386482 ], [ -95.832963122237203, 29.776730184539684 ], [ -95.832736121937671, 29.776938184306022 ], [ -95.832348122358724, 29.777288185210939 ], [ -95.832168122679491, 29.777449184879316 ], [ -95.833518122949826, 29.777448185020138 ], [ -95.836803123844774, 29.777445184673677 ], [ -95.837165123160133, 29.777440184812786 ], [ -95.837339123146805, 29.777437184948418 ], [ -95.838049123299228, 29.777427185058578 ], [ -95.841426124167455, 29.77737918435324 ], [ -95.848385125789576, 29.777280184270602 ], [ -95.849736126670294, 29.7772611840251 ], [ -95.850051126244239, 29.777272184204808 ], [ -95.85457112807984, 29.777431184326602 ], [ -95.854970127513013, 29.777274184345671 ], [ -95.855207128418229, 29.77718318392786 ], [ -95.855550128514864, 29.777047183936268 ], [ -95.857045128950205, 29.776478183497385 ], [ -95.857609129091301, 29.776216183489893 ], [ -95.857912129018956, 29.776100183474497 ], [ -95.858644129195085, 29.775822183827618 ], [ -95.858874129390756, 29.775735183659435 ], [ -95.86054412926751, 29.775103183758535 ], [ -95.860556129085751, 29.775098183103655 ], [ -95.863720130013931, 29.773899183076935 ], [ -95.865640130108829, 29.773171182705315 ], [ -95.866998130389931, 29.772656183113991 ], [ -95.869079131754546, 29.7718681822485 ], [ -95.870666131520963, 29.771267182679409 ], [ -95.871357131953573, 29.771006182385932 ], [ -95.871653132309845, 29.77089318259771 ], [ -95.872115131784597, 29.770719181977935 ], [ -95.87278413225502, 29.770479182350318 ], [ -95.873303131874636, 29.770323182374337 ], [ -95.874125132153338, 29.770005181987536 ], [ -95.875329132482435, 29.769541181376084 ], [ -95.875591132924328, 29.769441182145293 ], [ -95.875668133184973, 29.769411182165854 ], [ -95.877886133839411, 29.768556181102472 ], [ -95.882467134411996, 29.766790180694915 ], [ -95.884821134858015, 29.765882180368646 ], [ -95.884947135055882, 29.765840180243242 ], [ -95.884995134645436, 29.765765180260342 ], [ -95.88502613524615, 29.765627180632933 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1540, "Tract": "48157675501", "Area_SqMi": 14.729200385534753, "total_2009": 1608, "total_2010": 1407, "total_2011": 1395, "total_2012": 1253, "total_2013": 1587, "total_2014": 1950, "total_2015": 2001, "total_2016": 1814, "total_2017": 1676, "total_2018": 2118, "total_2019": 2081, "total_2020": 1678, "age1": 425, "age2": 862, "age3": 436, "earn1": 232, "earn2": 497, "earn3": 994, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 600, "naics_s05": 11, "naics_s06": 139, "naics_s07": 723, "naics_s08": 25, "naics_s09": 0, "naics_s10": 12, "naics_s11": 23, "naics_s12": 46, "naics_s13": 0, "naics_s14": 55, "naics_s15": 0, "naics_s16": 9, "naics_s17": 0, "naics_s18": 36, "naics_s19": 24, "naics_s20": 20, "race1": 1388, "race2": 192, "race3": 23, "race4": 89, "race5": 4, "race6": 27, "ethnicity1": 1023, "ethnicity2": 700, "edu1": 297, "edu2": 366, "edu3": 395, "edu4": 240, "Shape_Length": 89717.251920510476, "Shape_Area": 410624897.47030383, "total_2021": 1699, "total_2022": 1723 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.8187151051726, 29.463209120990395 ], [ -95.819034105424294, 29.462460121251279 ], [ -95.817067104137394, 29.461697121197332 ], [ -95.816327104146097, 29.461366121224604 ], [ -95.815321104237256, 29.460575120449228 ], [ -95.812036102716718, 29.457815119867071 ], [ -95.810245102552202, 29.456341119695164 ], [ -95.809587102280474, 29.455787119731511 ], [ -95.804741100914157, 29.451756119224786 ], [ -95.804288100313258, 29.451380119491809 ], [ -95.802692100227659, 29.450045119361565 ], [ -95.80078909968401, 29.448509119196604 ], [ -95.797398098917498, 29.445689118009877 ], [ -95.793537097489235, 29.449184119052134 ], [ -95.792640097802249, 29.449997119008646 ], [ -95.792332098066694, 29.450276119507983 ], [ -95.792110097688607, 29.450477119711316 ], [ -95.790484096699828, 29.451941119614588 ], [ -95.79042509672017, 29.45199411937741 ], [ -95.788079097201546, 29.454147120290759 ], [ -95.787126096184252, 29.45501712070152 ], [ -95.786202095930463, 29.455859121000067 ], [ -95.786045096159043, 29.456002120971675 ], [ -95.785792096523537, 29.45622512077502 ], [ -95.785661096310221, 29.456340120514586 ], [ -95.785321096329724, 29.456674121172984 ], [ -95.784684096380388, 29.457256120839247 ], [ -95.784237095853044, 29.457663121390262 ], [ -95.783684095363796, 29.458138121466938 ], [ -95.782764095409576, 29.459013121552349 ], [ -95.779738094718724, 29.461798122133334 ], [ -95.778873094994196, 29.462565122658081 ], [ -95.777649094299733, 29.463669122897585 ], [ -95.777134093882921, 29.464138122601476 ], [ -95.771761093660089, 29.46904312402178 ], [ -95.771707092904748, 29.469093124312888 ], [ -95.771650093354424, 29.469145123679827 ], [ -95.768781092037571, 29.471764124361158 ], [ -95.767490091861006, 29.472923124706774 ], [ -95.766384091556105, 29.473933125490625 ], [ -95.764644091951709, 29.475522125328531 ], [ -95.762147091326625, 29.477810126069251 ], [ -95.760928090475829, 29.478895126414923 ], [ -95.759532090863644, 29.480208126919187 ], [ -95.758901090540874, 29.48101712653747 ], [ -95.758693090012358, 29.481648127232379 ], [ -95.758552090006262, 29.4824051273078 ], [ -95.758082090148335, 29.487366128363334 ], [ -95.757263090605051, 29.496010129676254 ], [ -95.757189090400459, 29.497024129800494 ], [ -95.756866091150329, 29.500298130480417 ], [ -95.756698090273417, 29.50195713093602 ], [ -95.756628091209052, 29.502651130922899 ], [ -95.75630809095604, 29.505816132183234 ], [ -95.756137090694935, 29.507604132595816 ], [ -95.756021090466618, 29.508819132984755 ], [ -95.755990090439013, 29.509142132801191 ], [ -95.755883090398285, 29.510162133226284 ], [ -95.755878091003481, 29.510209132974126 ], [ -95.75577809059611, 29.510941132792134 ], [ -95.755902091145444, 29.510932132755759 ], [ -95.755990090942291, 29.510943133209615 ], [ -95.757373090956662, 29.511120132833625 ], [ -95.757675091013496, 29.511120132805292 ], [ -95.7578070916733, 29.511131133334928 ], [ -95.75819009196735, 29.511070132741548 ], [ -95.759617091534949, 29.510681133260405 ], [ -95.761119091944536, 29.510236132447449 ], [ -95.762087092680773, 29.509967132347295 ], [ -95.762131092016958, 29.509940132614489 ], [ -95.763187093272904, 29.509687132461853 ], [ -95.763683093250293, 29.50961013292255 ], [ -95.764230093180657, 29.50969913258157 ], [ -95.764343092586159, 29.509803132435181 ], [ -95.76446209272757, 29.510050132455614 ], [ -95.764481092965283, 29.510072132773363 ], [ -95.764776093329402, 29.510270132768788 ], [ -95.766026093976876, 29.511436133158547 ], [ -95.766548093508888, 29.511904133171345 ], [ -95.766629094189653, 29.511964132600315 ], [ -95.766743093620633, 29.512014132890535 ], [ -95.769293094422935, 29.514323133534408 ], [ -95.770016094908797, 29.514901133100455 ], [ -95.772183095286522, 29.516715133344039 ], [ -95.772434095861385, 29.51703413345389 ], [ -95.772459095812522, 29.517161133969388 ], [ -95.772472095233255, 29.517265133693556 ], [ -95.772440095787147, 29.517441133704825 ], [ -95.772277095815213, 29.51767213429277 ], [ -95.771636095711116, 29.518254134406735 ], [ -95.770875094763312, 29.518908133949662 ], [ -95.77057309470807, 29.519199133959724 ], [ -95.77032209526898, 29.519546134281377 ], [ -95.770278094657655, 29.519645133952768 ], [ -95.770246094567071, 29.519760134699773 ], [ -95.770234094511295, 29.519874134722361 ], [ -95.770244095352723, 29.520072134165886 ], [ -95.770246094620958, 29.520123134051104 ], [ -95.770240094813218, 29.520255134832261 ], [ -95.770176095212065, 29.520788134267537 ], [ -95.770202095531687, 29.520986134806801 ], [ -95.770258094813229, 29.521123134754188 ], [ -95.770516095086251, 29.521629134986302 ], [ -95.770603095438503, 29.521821135229935 ], [ -95.77069109476993, 29.522052135019017 ], [ -95.770704095072603, 29.522146134641972 ], [ -95.770685095225375, 29.522388135142862 ], [ -95.770559095117648, 29.522783135062575 ], [ -95.770477095448754, 29.52302513544365 ], [ -95.770402094688819, 29.523322134992036 ], [ -95.770345094977571, 29.523454134806627 ], [ -95.770282094897098, 29.523536134781661 ], [ -95.770257095149631, 29.523563134982208 ], [ -95.77017509558209, 29.523652135214579 ], [ -95.769666095354225, 29.52406413533415 ], [ -95.769408095390162, 29.524361135215941 ], [ -95.769345094636748, 29.52450913491154 ], [ -95.769301095093752, 29.524652135570346 ], [ -95.769289095181946, 29.524773135315332 ], [ -95.769320095478392, 29.525031135241246 ], [ -95.769408094949299, 29.525597135219975 ], [ -95.769653095209421, 29.527006135908646 ], [ -95.769721094778461, 29.52771413635211 ], [ -95.769771094795914, 29.528423136011821 ], [ -95.769758095349474, 29.529346136352856 ], [ -95.769765095191573, 29.529517136667486 ], [ -95.769658095275076, 29.529830136836122 ], [ -95.769598095567844, 29.530256136920446 ], [ -95.769556094861855, 29.530557136513412 ], [ -95.769513095129653, 29.530864136974571 ], [ -95.769418095464289, 29.53128713664282 ], [ -95.769412095093259, 29.531391136724292 ], [ -95.769449095295528, 29.531754136615621 ], [ -95.769512094903817, 29.531985137243943 ], [ -95.769579095104973, 29.532164136689186 ], [ -95.769644095901128, 29.532337136763253 ], [ -95.769700095386796, 29.532650136912824 ], [ -95.769732095874858, 29.532744136940721 ], [ -95.769776095454318, 29.532826136701313 ], [ -95.769839095297641, 29.532881136695856 ], [ -95.770354095298643, 29.533128137252369 ], [ -95.770555095501635, 29.533211137335137 ], [ -95.770674095832149, 29.53328213738644 ], [ -95.770825095247289, 29.533398137059073 ], [ -95.770982095815597, 29.533645136977423 ], [ -95.771196095422198, 29.533898137348221 ], [ -95.77174909585851, 29.534382137124432 ], [ -95.771936095790963, 29.534590137374718 ], [ -95.772019096155105, 29.534696137302163 ], [ -95.77207609600076, 29.534789137161326 ], [ -95.772195096500425, 29.535020137864716 ], [ -95.772261096033986, 29.53535813787532 ], [ -95.772310096732497, 29.53558713711838 ], [ -95.772381096330804, 29.535895138015448 ], [ -95.773604096457319, 29.535454137375378 ], [ -95.774599096458715, 29.535128136973963 ], [ -95.775481096555467, 29.534820137385587 ], [ -95.775713096975167, 29.53475613733405 ], [ -95.776075097038472, 29.534645137134063 ], [ -95.776351097250298, 29.534571137088207 ], [ -95.777577096978547, 29.534242137354404 ], [ -95.778179097848081, 29.534080137090108 ], [ -95.780085098186746, 29.53367013666389 ], [ -95.781735098539031, 29.533451136489415 ], [ -95.783467098456256, 29.533230136294044 ], [ -95.786629100099134, 29.533021136240738 ], [ -95.788203100581285, 29.532961136182621 ], [ -95.793234101179749, 29.532792136645849 ], [ -95.800357102730274, 29.532554135695889 ], [ -95.801018103210154, 29.53253213586056 ], [ -95.804630104643493, 29.532414135865903 ], [ -95.807378105307762, 29.532323135592357 ], [ -95.807736105278209, 29.532322135971597 ], [ -95.808137105156874, 29.532312135674715 ], [ -95.808144104788596, 29.531957135992876 ], [ -95.808120105085521, 29.531661135116625 ], [ -95.808095105456331, 29.530478135018974 ], [ -95.808103105607131, 29.530334135386809 ], [ -95.808160105304751, 29.529854135037024 ], [ -95.808139104734863, 29.528709134557047 ], [ -95.808131104688741, 29.528264134693462 ], [ -95.808091105044568, 29.52733613473854 ], [ -95.808075104994685, 29.526959134822384 ], [ -95.808032104539421, 29.525377133977951 ], [ -95.808004105208795, 29.524825134504756 ], [ -95.808001105017794, 29.524707133790681 ], [ -95.807993104575203, 29.524316133652771 ], [ -95.80796010457415, 29.522735133351333 ], [ -95.807901104624392, 29.519946132965764 ], [ -95.807895105033836, 29.519141132678406 ], [ -95.807876104450202, 29.518555132533109 ], [ -95.807887104946431, 29.517576132591813 ], [ -95.807851104509908, 29.515214131836832 ], [ -95.80781510470824, 29.513062132138057 ], [ -95.807816104747175, 29.512811131417198 ], [ -95.807824104228217, 29.511889131464674 ], [ -95.807805103742453, 29.510707131542322 ], [ -95.807799104512995, 29.510346131541034 ], [ -95.807777104464179, 29.509622130681628 ], [ -95.807772103702106, 29.509461131401853 ], [ -95.807698103766469, 29.506945130541823 ], [ -95.807688103531831, 29.506596130743244 ], [ -95.807624104089257, 29.504454130048803 ], [ -95.807609103513059, 29.503517129976213 ], [ -95.807587104098701, 29.502276129384814 ], [ -95.80751710353303, 29.499389128554888 ], [ -95.807410103259983, 29.496351128318597 ], [ -95.807344102993994, 29.494483128351348 ], [ -95.807340103107663, 29.494363128028517 ], [ -95.807328103193598, 29.494024127521367 ], [ -95.807313102800322, 29.492491127865193 ], [ -95.807307102948599, 29.492274127764681 ], [ -95.807288103282374, 29.491506127690148 ], [ -95.807308103181654, 29.490895126853275 ], [ -95.807385103672672, 29.490332127254526 ], [ -95.807514103054629, 29.489686126730597 ], [ -95.807793103479924, 29.48880512690382 ], [ -95.80784510337449, 29.488613126601255 ], [ -95.807985102916987, 29.488308127068624 ], [ -95.808637103589746, 29.486776126602919 ], [ -95.809480103794129, 29.484862126040291 ], [ -95.809532103555796, 29.484705126211416 ], [ -95.80963310298435, 29.484498126262046 ], [ -95.809785103750954, 29.484111126108001 ], [ -95.809860103423247, 29.483975126033179 ], [ -95.810089103384058, 29.48341912527259 ], [ -95.81049610370043, 29.482504125827266 ], [ -95.811611103339345, 29.47980412511783 ], [ -95.812962104085784, 29.476692124530221 ], [ -95.812997104104284, 29.476612124497329 ], [ -95.8130331036527, 29.476527124269765 ], [ -95.814194103902281, 29.473855123659508 ], [ -95.814241103982837, 29.473748123876966 ], [ -95.814640104002109, 29.472806123041316 ], [ -95.81610410426066, 29.469352122527738 ], [ -95.816317104957392, 29.468849122125064 ], [ -95.816475104890543, 29.46847812278892 ], [ -95.8187151051726, 29.463209120990395 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1541, "Tract": "48157672402", "Area_SqMi": 1.1386749306542892, "total_2009": 360, "total_2010": 354, "total_2011": 370, "total_2012": 435, "total_2013": 416, "total_2014": 498, "total_2015": 513, "total_2016": 385, "total_2017": 442, "total_2018": 395, "total_2019": 402, "total_2020": 425, "age1": 68, "age2": 236, "age3": 114, "earn1": 48, "earn2": 181, "earn3": 189, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 83, "naics_s05": 30, "naics_s06": 8, "naics_s07": 13, "naics_s08": 7, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 2, "naics_s13": 0, "naics_s14": 254, "naics_s15": 0, "naics_s16": 16, "naics_s17": 0, "naics_s18": 2, "naics_s19": 1, "naics_s20": 0, "race1": 326, "race2": 33, "race3": 8, "race4": 41, "race5": 4, "race6": 6, "ethnicity1": 247, "ethnicity2": 171, "edu1": 91, "edu2": 92, "edu3": 100, "edu4": 67, "Shape_Length": 24961.913903726934, "Shape_Area": 31744308.205020558, "total_2021": 419, "total_2022": 418 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.639877068739878, 29.671230169794804 ], [ -95.639880068855717, 29.671147170132805 ], [ -95.639822068174453, 29.668323169510156 ], [ -95.639796068058232, 29.667747169325992 ], [ -95.639777068173757, 29.665893168409951 ], [ -95.639741067882255, 29.665131168825567 ], [ -95.639688067951496, 29.662463167598528 ], [ -95.639686067880163, 29.662323167676213 ], [ -95.637638066973423, 29.662370167706126 ], [ -95.636795067415264, 29.662398167751043 ], [ -95.635939067452313, 29.662414168432065 ], [ -95.635094066655597, 29.662431167639017 ], [ -95.634219066197304, 29.662448168180777 ], [ -95.629136065191418, 29.662586168341392 ], [ -95.628312064790649, 29.662577168632879 ], [ -95.626367065016311, 29.662637168652012 ], [ -95.625951064376011, 29.662634168124146 ], [ -95.625826064903563, 29.662626168645065 ], [ -95.625686064290676, 29.662618168230608 ], [ -95.625468064319833, 29.662593168196775 ], [ -95.625260064496615, 29.66256716885481 ], [ -95.625080064268758, 29.662542168430033 ], [ -95.624998064319215, 29.662523168687589 ], [ -95.624888063826162, 29.66249716799917 ], [ -95.624848064300451, 29.662488168533347 ], [ -95.624609063903605, 29.662447168326555 ], [ -95.624300063817103, 29.662384168283374 ], [ -95.624029063653992, 29.662330168265356 ], [ -95.623824063803752, 29.662296168286503 ], [ -95.623496063976447, 29.662255168122986 ], [ -95.623007063863042, 29.662206168554253 ], [ -95.622821063214758, 29.662199168320466 ], [ -95.619945062788972, 29.662019168902606 ], [ -95.619209063213518, 29.661991168222226 ], [ -95.618283063095348, 29.664560168951176 ], [ -95.618139062627705, 29.664948168869174 ], [ -95.617967062526404, 29.665407169053477 ], [ -95.617879062933568, 29.665639168928177 ], [ -95.617440062305661, 29.666802169461288 ], [ -95.61681706263775, 29.668454169726541 ], [ -95.616614062003336, 29.66898617025851 ], [ -95.616511062119812, 29.669254169742857 ], [ -95.616363062004126, 29.669654169929746 ], [ -95.616221062130919, 29.670094170056199 ], [ -95.61610506220515, 29.670356170304924 ], [ -95.616082062167152, 29.670416169954056 ], [ -95.617579062279134, 29.671213170543172 ], [ -95.617779062704287, 29.671321170107177 ], [ -95.617979062489852, 29.671429170245307 ], [ -95.618758062814962, 29.671845170773278 ], [ -95.618860062594536, 29.671900170641884 ], [ -95.618930063173849, 29.671937170827437 ], [ -95.619108063552559, 29.672037170536598 ], [ -95.619446063584235, 29.672226170167292 ], [ -95.621228063366573, 29.673236170634841 ], [ -95.621855063643807, 29.673577171010216 ], [ -95.622894064123685, 29.674144171278847 ], [ -95.623185063776049, 29.674303170792228 ], [ -95.623430064116917, 29.674437171135111 ], [ -95.623833064719236, 29.674675171111094 ], [ -95.624037064039697, 29.674799170560302 ], [ -95.624072064679382, 29.674820170885802 ], [ -95.624096064444601, 29.674834171041546 ], [ -95.624760064413834, 29.675220170865945 ], [ -95.625524064956366, 29.675667170740269 ], [ -95.625560064635309, 29.675687171354113 ], [ -95.626391065391502, 29.676151171363433 ], [ -95.626414065198546, 29.676164171049226 ], [ -95.627307064990333, 29.676655171456868 ], [ -95.627347065673121, 29.676678171592851 ], [ -95.628231065517141, 29.677178170908558 ], [ -95.628262065258369, 29.677194171674799 ], [ -95.629094065788394, 29.677624171031439 ], [ -95.629120066122027, 29.677641171296987 ], [ -95.629949065909273, 29.67820817141471 ], [ -95.630041065884058, 29.678264171638002 ], [ -95.630075066271502, 29.678285171315398 ], [ -95.630864065993848, 29.67876517178745 ], [ -95.630943065961802, 29.678799171285 ], [ -95.630972066258821, 29.678812171301637 ], [ -95.631808066182558, 29.67917017175904 ], [ -95.631837066946005, 29.67918617192095 ], [ -95.632514067217841, 29.679566171669574 ], [ -95.632695066704159, 29.679669171346347 ], [ -95.634206067255249, 29.680566171648966 ], [ -95.634198067648853, 29.679443171976004 ], [ -95.634188067725134, 29.678738171668844 ], [ -95.634176067360471, 29.677560171401701 ], [ -95.634111067157264, 29.67531117076437 ], [ -95.634123066746582, 29.674042170666173 ], [ -95.634130066789794, 29.673340170128494 ], [ -95.634118066673452, 29.671616170174001 ], [ -95.635957067766682, 29.671556170229433 ], [ -95.636205067571481, 29.67155416953177 ], [ -95.636483067376489, 29.671562169476623 ], [ -95.6365240674223, 29.671561169509655 ], [ -95.639599067834297, 29.67148217005693 ], [ -95.639664068806269, 29.671476169851189 ], [ -95.639714068250427, 29.67146316962582 ], [ -95.639752068862222, 29.671444169952629 ], [ -95.639787068340951, 29.67142116942647 ], [ -95.639820068425109, 29.67138316942464 ], [ -95.639848068926057, 29.671338169538949 ], [ -95.639867068319433, 29.671289169861815 ], [ -95.639877068739878, 29.671230169794804 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1542, "Tract": "48157672305", "Area_SqMi": 0.81505901308979345, "total_2009": 194, "total_2010": 197, "total_2011": 274, "total_2012": 383, "total_2013": 467, "total_2014": 430, "total_2015": 474, "total_2016": 555, "total_2017": 463, "total_2018": 361, "total_2019": 356, "total_2020": 341, "age1": 116, "age2": 182, "age3": 114, "earn1": 125, "earn2": 165, "earn3": 122, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 25, "naics_s05": 6, "naics_s06": 9, "naics_s07": 198, "naics_s08": 0, "naics_s09": 0, "naics_s10": 13, "naics_s11": 11, "naics_s12": 15, "naics_s13": 0, "naics_s14": 8, "naics_s15": 15, "naics_s16": 34, "naics_s17": 11, "naics_s18": 52, "naics_s19": 15, "naics_s20": 0, "race1": 237, "race2": 71, "race3": 1, "race4": 99, "race5": 0, "race6": 4, "ethnicity1": 310, "ethnicity2": 102, "edu1": 64, "edu2": 69, "edu3": 77, "edu4": 86, "Shape_Length": 28802.183976335898, "Shape_Area": 22722450.297500826, "total_2021": 374, "total_2022": 412 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.651610069892655, 29.646095164312573 ], [ -95.651600070479077, 29.644400163411461 ], [ -95.651531070235364, 29.644399163838674 ], [ -95.650188069370913, 29.644410163932083 ], [ -95.649740069363062, 29.644413163691215 ], [ -95.649173069177962, 29.644418163542348 ], [ -95.64859706982098, 29.64441916357092 ], [ -95.64787606901298, 29.644430163903852 ], [ -95.647764068739519, 29.644429164101297 ], [ -95.647413069178668, 29.644429164277067 ], [ -95.646522069001975, 29.644429163613193 ], [ -95.645218068666566, 29.644435164349563 ], [ -95.643934068674298, 29.64444716444363 ], [ -95.643391067848853, 29.644452163897871 ], [ -95.639487067565199, 29.644481164702565 ], [ -95.639361067140982, 29.644482164035651 ], [ -95.639242067172134, 29.644482164702577 ], [ -95.639207067362648, 29.644381164151614 ], [ -95.639181066907028, 29.644301164534092 ], [ -95.63913006679438, 29.644163164077533 ], [ -95.639062066484954, 29.64402916411716 ], [ -95.638992067282345, 29.643904164609619 ], [ -95.638842067338814, 29.643702164495096 ], [ -95.638640066872043, 29.643491164220322 ], [ -95.638177066473958, 29.643112164278303 ], [ -95.637851066608974, 29.642876163768548 ], [ -95.637687066135172, 29.642752163536997 ], [ -95.637532066837991, 29.642605163583816 ], [ -95.637358066561958, 29.642405163668126 ], [ -95.637243066112291, 29.642246164033647 ], [ -95.637141066678751, 29.642086164073447 ], [ -95.637048066489811, 29.641904163707707 ], [ -95.636981065971682, 29.641744163821613 ], [ -95.636928066558212, 29.64153116377415 ], [ -95.636901066496549, 29.641309163331336 ], [ -95.636880066792727, 29.640876163389734 ], [ -95.636869066712904, 29.640545163994709 ], [ -95.636856066651305, 29.640322163126815 ], [ -95.636840065861591, 29.640166163326676 ], [ -95.636808066414744, 29.640005163480836 ], [ -95.636716065968955, 29.639687163704824 ], [ -95.636551066166916, 29.639274163101138 ], [ -95.636460066551876, 29.639051163318285 ], [ -95.636403065720927, 29.63886916344525 ], [ -95.636366065623335, 29.638694163356451 ], [ -95.636352066176443, 29.638522163075681 ], [ -95.636366066093004, 29.638024162674053 ], [ -95.636016065646572, 29.638037162677172 ], [ -95.63570706541006, 29.638076162875251 ], [ -95.634311065814842, 29.63835316328111 ], [ -95.63332606567387, 29.638538163257923 ], [ -95.63288906494472, 29.638622163058354 ], [ -95.63273006555913, 29.638658163071931 ], [ -95.632609065467477, 29.638678162987876 ], [ -95.632537065397628, 29.638678163012813 ], [ -95.632472064645427, 29.638668163711561 ], [ -95.632390064724646, 29.638645162947238 ], [ -95.632169064682756, 29.638577163122939 ], [ -95.632028064554007, 29.638535163639535 ], [ -95.631849065343275, 29.638912163041567 ], [ -95.631794064972524, 29.639075163110913 ], [ -95.631775064747472, 29.639162163781222 ], [ -95.631767064927914, 29.639241163227304 ], [ -95.631762065030543, 29.639634163641553 ], [ -95.63178706529942, 29.64037516336851 ], [ -95.631778065392922, 29.641086163956608 ], [ -95.631823065350105, 29.64191016384769 ], [ -95.63184306480359, 29.642679164254698 ], [ -95.631838064689305, 29.643540164568297 ], [ -95.631890064705615, 29.643753164183433 ], [ -95.632027065124092, 29.643891164521708 ], [ -95.631898065406233, 29.644056164777243 ], [ -95.631716064865216, 29.64422116431632 ], [ -95.631579065600036, 29.644328164627918 ], [ -95.631427065256915, 29.644395164356904 ], [ -95.631193064869549, 29.644444164954873 ], [ -95.630599065378533, 29.644553164475504 ], [ -95.628931064821543, 29.644870165116743 ], [ -95.628653064373083, 29.64486216473103 ], [ -95.628358064407053, 29.644710164357139 ], [ -95.628162064554147, 29.644452164330687 ], [ -95.6281130646192, 29.644163164674438 ], [ -95.627321063616492, 29.644278164515402 ], [ -95.626215063930005, 29.644508165116971 ], [ -95.624741062895282, 29.644815164484339 ], [ -95.624955063971058, 29.645652164674523 ], [ -95.625049063861468, 29.645919164840187 ], [ -95.625101063543937, 29.646186164691553 ], [ -95.625064063574044, 29.646354165224032 ], [ -95.624992063909573, 29.646542164767709 ], [ -95.622379063018727, 29.64704016577576 ], [ -95.621231063069473, 29.647277165562937 ], [ -95.618959062417503, 29.647692165535343 ], [ -95.618980061555888, 29.648515165718894 ], [ -95.618980061918492, 29.648856166031397 ], [ -95.618981062272624, 29.649286166137497 ], [ -95.618988062557065, 29.649792166183421 ], [ -95.619003062495807, 29.650915166672299 ], [ -95.62069106274096, 29.650912165796022 ], [ -95.62082406264409, 29.650913165803718 ], [ -95.621660062819174, 29.650887166101857 ], [ -95.622197062739772, 29.650887166247099 ], [ -95.622560063517966, 29.650882166474599 ], [ -95.622947063406599, 29.650882166130188 ], [ -95.623262063734586, 29.65089216653352 ], [ -95.623644063356309, 29.650929166069378 ], [ -95.624139063571391, 29.651005165871485 ], [ -95.624403063410796, 29.651047166439454 ], [ -95.624624063295187, 29.651075166380224 ], [ -95.624798064016403, 29.651094165850235 ], [ -95.625077063322379, 29.651112165872004 ], [ -95.62545706362566, 29.651109166453168 ], [ -95.628191064324682, 29.65108516628619 ], [ -95.631173065103141, 29.651047165731764 ], [ -95.631524065607991, 29.651066165565144 ], [ -95.632314065896821, 29.651022165454624 ], [ -95.633104065893178, 29.650932166189595 ], [ -95.633670065409959, 29.650797166165873 ], [ -95.634304066510609, 29.650588165452312 ], [ -95.634368066017302, 29.650567165565665 ], [ -95.634627065724942, 29.650438165575736 ], [ -95.636076066396726, 29.649791165207532 ], [ -95.636284066065102, 29.649706165381293 ], [ -95.637602066782279, 29.64944916565787 ], [ -95.639396067762888, 29.649384165236878 ], [ -95.639397067387051, 29.649463165102709 ], [ -95.639508067845995, 29.649464165620888 ], [ -95.639609067813609, 29.64946716524064 ], [ -95.639994067086135, 29.6494531650218 ], [ -95.640320067983751, 29.649429165634572 ], [ -95.640730067735888, 29.649366165097458 ], [ -95.64107406795948, 29.649300164906901 ], [ -95.641442067468617, 29.649206165282667 ], [ -95.641734068126695, 29.649106165388133 ], [ -95.642556068024845, 29.648786165390977 ], [ -95.643464068819938, 29.648418165168557 ], [ -95.644090068590771, 29.648249164681605 ], [ -95.644362068208267, 29.648182165121906 ], [ -95.644601069026322, 29.648141164859144 ], [ -95.644877068853802, 29.648116164618742 ], [ -95.645528068881248, 29.648105164857913 ], [ -95.646077068459661, 29.648108164861636 ], [ -95.647293068929301, 29.64826916447684 ], [ -95.647781069284335, 29.648414164711259 ], [ -95.648559069431784, 29.648694164654295 ], [ -95.648694069316548, 29.64876416510829 ], [ -95.649832069872588, 29.649351165152385 ], [ -95.650406069748698, 29.649616165067869 ], [ -95.650903070023929, 29.649792164756072 ], [ -95.651184070738452, 29.648991164462302 ], [ -95.651445070094624, 29.647644164230019 ], [ -95.651497069845789, 29.647294164832086 ], [ -95.651610069892655, 29.646095164312573 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1543, "Tract": "48157672904", "Area_SqMi": 2.8038548408113559, "total_2009": 10, "total_2010": 37, "total_2011": 260, "total_2012": 133, "total_2013": 148, "total_2014": 129, "total_2015": 153, "total_2016": 215, "total_2017": 235, "total_2018": 257, "total_2019": 238, "total_2020": 106, "age1": 97, "age2": 114, "age3": 34, "earn1": 86, "earn2": 104, "earn3": 55, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 6, "naics_s06": 9, "naics_s07": 61, "naics_s08": 76, "naics_s09": 0, "naics_s10": 0, "naics_s11": 20, "naics_s12": 4, "naics_s13": 0, "naics_s14": 4, "naics_s15": 3, "naics_s16": 23, "naics_s17": 1, "naics_s18": 17, "naics_s19": 8, "naics_s20": 0, "race1": 125, "race2": 72, "race3": 1, "race4": 42, "race5": 0, "race6": 5, "ethnicity1": 179, "ethnicity2": 66, "edu1": 28, "edu2": 50, "edu3": 38, "edu4": 32, "Shape_Length": 39071.77855058651, "Shape_Area": 78166674.116300181, "total_2021": 183, "total_2022": 245 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.715677088726011, 29.683157169347005 ], [ -95.715675088675908, 29.683024169991203 ], [ -95.715666088664278, 29.682248169857683 ], [ -95.715619088292812, 29.681414169241862 ], [ -95.715540088271979, 29.680739169255215 ], [ -95.715373088330963, 29.679832168673091 ], [ -95.715237088073735, 29.679148168988881 ], [ -95.715212087591738, 29.677293168350857 ], [ -95.715203087455336, 29.676636168578856 ], [ -95.71519808740392, 29.675964168002952 ], [ -95.715163087754249, 29.673852168085801 ], [ -95.715153087703953, 29.6727991678307 ], [ -95.715140087741375, 29.671799167095855 ], [ -95.715123087974476, 29.670231166942447 ], [ -95.7150590870516, 29.667031166450876 ], [ -95.714995087495026, 29.665057165890431 ], [ -95.714984087408325, 29.6647561659696 ], [ -95.714916086775943, 29.662215165696033 ], [ -95.714883086652591, 29.660936165189764 ], [ -95.713244086750294, 29.660959165151759 ], [ -95.712721086029418, 29.660961165062641 ], [ -95.712210086263411, 29.660966165508459 ], [ -95.708952086072273, 29.660998165076617 ], [ -95.708863085498663, 29.660999165079087 ], [ -95.707927085700035, 29.66101316575223 ], [ -95.707586085526302, 29.66101916538134 ], [ -95.706055084830297, 29.661036165031767 ], [ -95.705174084394855, 29.661050165703422 ], [ -95.703695084622041, 29.661067165416 ], [ -95.702380083966958, 29.661091165544921 ], [ -95.701985083636004, 29.661096165517726 ], [ -95.698540082463509, 29.661143165963832 ], [ -95.697495082655593, 29.661153165403171 ], [ -95.697378082815405, 29.661158166057955 ], [ -95.697280082652625, 29.661175165366199 ], [ -95.697203082365249, 29.661209165369076 ], [ -95.697148082966834, 29.661258165331173 ], [ -95.697114082606646, 29.661320165638404 ], [ -95.697096082768056, 29.661394165637265 ], [ -95.697090082191281, 29.661479165801396 ], [ -95.697151083014404, 29.664501166099395 ], [ -95.697154082345136, 29.664868166449818 ], [ -95.69718008298716, 29.666498166660869 ], [ -95.697184082323702, 29.666732166940587 ], [ -95.697214082643129, 29.667825167419462 ], [ -95.697214083238634, 29.667948167520262 ], [ -95.69720308265471, 29.668055167269625 ], [ -95.697174082751715, 29.668136167264667 ], [ -95.697119083178578, 29.668207167525413 ], [ -95.697046082930996, 29.668253167156266 ], [ -95.696957083138301, 29.668280167334977 ], [ -95.69685408242124, 29.668289166890123 ], [ -95.696610082681588, 29.668298166935838 ], [ -95.694821082159891, 29.668309167408101 ], [ -95.694187082129019, 29.66831616760798 ], [ -95.693287081782131, 29.668314167008731 ], [ -95.691411081343674, 29.668319167647635 ], [ -95.691354081453412, 29.668320167153738 ], [ -95.689293080576604, 29.668334167448535 ], [ -95.688193080995703, 29.668338167869972 ], [ -95.688080080196272, 29.668338167877028 ], [ -95.688037080513354, 29.668339167512979 ], [ -95.687962080438851, 29.668340167071204 ], [ -95.687925080797811, 29.668340167882285 ], [ -95.687887080333667, 29.668341167489348 ], [ -95.687746080174506, 29.668343167921837 ], [ -95.685226080119534, 29.668352167380966 ], [ -95.684946079640952, 29.66835316749161 ], [ -95.683020079057357, 29.668367167332377 ], [ -95.682924079359267, 29.66836816729905 ], [ -95.682654078726742, 29.668370167678148 ], [ -95.681781078538421, 29.668371167870053 ], [ -95.680432078858516, 29.668373167860505 ], [ -95.679829078580511, 29.668386168033166 ], [ -95.679701078046165, 29.668394167976878 ], [ -95.679642078163596, 29.668401167658576 ], [ -95.679741078076532, 29.668862167960018 ], [ -95.679804078952998, 29.669365167719803 ], [ -95.679971078487654, 29.676613169626005 ], [ -95.679972079047673, 29.676650169181059 ], [ -95.679973078407002, 29.676696169588414 ], [ -95.679975079379332, 29.676755169930413 ], [ -95.67999207941952, 29.677456170004657 ], [ -95.680041078532128, 29.679396169839954 ], [ -95.680055078635178, 29.680289170540014 ], [ -95.680057079306025, 29.680386169992339 ], [ -95.680126079207369, 29.681207170557308 ], [ -95.680126079123639, 29.681384170544153 ], [ -95.680198079503498, 29.682722170561842 ], [ -95.680230078973196, 29.682948170666759 ], [ -95.680291078893532, 29.68297017057408 ], [ -95.681092079036773, 29.683260170513215 ], [ -95.68163607990671, 29.683405170550667 ], [ -95.682188079714734, 29.683441171062796 ], [ -95.684983080540903, 29.683419170744724 ], [ -95.685126080134339, 29.683417170762649 ], [ -95.68607308030947, 29.68341017037093 ], [ -95.686195081208353, 29.683431170722496 ], [ -95.68630508038305, 29.683431170720905 ], [ -95.686498081216556, 29.683430170198857 ], [ -95.686588080521773, 29.68343017057461 ], [ -95.686937080731383, 29.683429170965411 ], [ -95.687210080909779, 29.683428170293816 ], [ -95.687455081058204, 29.683428170574867 ], [ -95.687504081491937, 29.683427170492838 ], [ -95.687715081258787, 29.683425170211244 ], [ -95.687789080825056, 29.683423170950537 ], [ -95.687831080819734, 29.684103171033801 ], [ -95.687899081585755, 29.684865171043828 ], [ -95.687932080827309, 29.685109170795954 ], [ -95.688196081750206, 29.685116170907104 ], [ -95.688877081658319, 29.68507417123087 ], [ -95.689743081339302, 29.684901170390273 ], [ -95.690533081480467, 29.684535170313346 ], [ -95.690615081480445, 29.684497170687525 ], [ -95.691303082344803, 29.684188170610106 ], [ -95.69246808210417, 29.684052170449249 ], [ -95.692531082064974, 29.684051170436483 ], [ -95.694123082988412, 29.684034170314607 ], [ -95.694658083063459, 29.684028170407665 ], [ -95.696002082899128, 29.684020170684896 ], [ -95.697437083891828, 29.684000170550743 ], [ -95.697511083538302, 29.68399817042831 ], [ -95.698614084306399, 29.683973170430107 ], [ -95.700686084586224, 29.68393916995181 ], [ -95.70234108485937, 29.683926169881314 ], [ -95.70520308611313, 29.683912169715995 ], [ -95.705661086199711, 29.683900170338358 ], [ -95.706122085826934, 29.683879170167014 ], [ -95.707654085974852, 29.68378817035051 ], [ -95.708545086619949, 29.683735169826452 ], [ -95.712396087734021, 29.68351117016082 ], [ -95.713180087881966, 29.68345117017693 ], [ -95.713645088084121, 29.683384169744119 ], [ -95.714268087460439, 29.683277169215277 ], [ -95.714657088347977, 29.683228169421316 ], [ -95.715005087959184, 29.683194169435478 ], [ -95.715273088538396, 29.683177169848946 ], [ -95.715485088357468, 29.683168169620156 ], [ -95.715677088726011, 29.683157169347005 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1544, "Tract": "48157672902", "Area_SqMi": 2.1370543196449403, "total_2009": 49, "total_2010": 56, "total_2011": 73, "total_2012": 145, "total_2013": 257, "total_2014": 368, "total_2015": 558, "total_2016": 527, "total_2017": 716, "total_2018": 1036, "total_2019": 1185, "total_2020": 1316, "age1": 361, "age2": 807, "age3": 320, "earn1": 538, "earn2": 545, "earn3": 405, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 49, "naics_s05": 13, "naics_s06": 1, "naics_s07": 224, "naics_s08": 21, "naics_s09": 109, "naics_s10": 2, "naics_s11": 3, "naics_s12": 32, "naics_s13": 0, "naics_s14": 9, "naics_s15": 5, "naics_s16": 928, "naics_s17": 8, "naics_s18": 48, "naics_s19": 33, "naics_s20": 0, "race1": 684, "race2": 574, "race3": 12, "race4": 188, "race5": 8, "race6": 22, "ethnicity1": 1127, "ethnicity2": 361, "edu1": 244, "edu2": 300, "edu3": 332, "edu4": 251, "Shape_Length": 33179.015894446035, "Shape_Area": 59577416.826678216, "total_2021": 1465, "total_2022": 1488 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.775477104051134, 29.700577171242994 ], [ -95.775473104065682, 29.70046017065571 ], [ -95.775462104772259, 29.700183171001513 ], [ -95.775457104520271, 29.700112171159649 ], [ -95.775423104543535, 29.699655171131393 ], [ -95.775414104106417, 29.699356171077682 ], [ -95.775359104100033, 29.698977170741163 ], [ -95.775330104518801, 29.698777170714862 ], [ -95.775121103680547, 29.69820017042705 ], [ -95.774694103638438, 29.697229170343224 ], [ -95.774592103495991, 29.697070170270557 ], [ -95.774234104211118, 29.696525170413086 ], [ -95.773924104055396, 29.696069170383758 ], [ -95.77374610396383, 29.695808170070052 ], [ -95.773562103984389, 29.695583170083292 ], [ -95.772161103595465, 29.693877170303878 ], [ -95.770355103138769, 29.692236169457381 ], [ -95.770157103066637, 29.692056169236054 ], [ -95.769962102146891, 29.691824169569106 ], [ -95.769500102627973, 29.691276169199956 ], [ -95.769370102385125, 29.691121169026104 ], [ -95.769196101977514, 29.690906169629617 ], [ -95.768993102557587, 29.690675169530742 ], [ -95.768523101970359, 29.689861169420794 ], [ -95.768214101791713, 29.689146169264049 ], [ -95.768189101646755, 29.689073168866603 ], [ -95.767987102209332, 29.688467168834158 ], [ -95.767688101691476, 29.687485168318968 ], [ -95.767666101991168, 29.687417168364302 ], [ -95.767482102085523, 29.686206168424253 ], [ -95.767397101382954, 29.685431167865069 ], [ -95.767374101313678, 29.685210168305399 ], [ -95.767312101373733, 29.684853168328505 ], [ -95.767268101381177, 29.684594167934726 ], [ -95.766886101344838, 29.684664168416049 ], [ -95.766724101325309, 29.684694168166896 ], [ -95.766253101387449, 29.684767167997844 ], [ -95.763533100329795, 29.685177168788861 ], [ -95.763143100681404, 29.685247168429889 ], [ -95.763020100524628, 29.685246168143816 ], [ -95.762916100143471, 29.685213168821367 ], [ -95.762857100252333, 29.68516716870948 ], [ -95.762834100901003, 29.685223168432351 ], [ -95.762784100237283, 29.685269168093715 ], [ -95.7626931006684, 29.685304168551852 ], [ -95.762606100011411, 29.685310168654759 ], [ -95.76238710032213, 29.68532616862478 ], [ -95.76202510040784, 29.685341168123184 ], [ -95.761841100227514, 29.685341168393897 ], [ -95.761656099883439, 29.685336168212498 ], [ -95.761287100042892, 29.685317168037511 ], [ -95.759990099855713, 29.685238168395731 ], [ -95.757053098780958, 29.685064168859054 ], [ -95.756158098225072, 29.685019168794312 ], [ -95.753950098049145, 29.684926168588433 ], [ -95.753194097451654, 29.684898169100563 ], [ -95.751516097925801, 29.684878168603976 ], [ -95.74929709666678, 29.68486516853908 ], [ -95.749147096507642, 29.684863168770349 ], [ -95.74853509663086, 29.68485416900673 ], [ -95.747408096199138, 29.684852169122973 ], [ -95.746660096274908, 29.684840168558452 ], [ -95.74629809658434, 29.684838169341827 ], [ -95.744293096134712, 29.684826168541903 ], [ -95.743110094909369, 29.684818169406714 ], [ -95.743037095674197, 29.684818169243552 ], [ -95.742662095041524, 29.684808169158412 ], [ -95.742426094923189, 29.684791168904429 ], [ -95.742289095568907, 29.684782169379684 ], [ -95.741546094852424, 29.684698169359866 ], [ -95.740484094475647, 29.684569168903863 ], [ -95.739835094049766, 29.684496169329712 ], [ -95.738435094299632, 29.684326169045441 ], [ -95.738407094558312, 29.684685169034896 ], [ -95.738385093925956, 29.684988168825811 ], [ -95.73841409413707, 29.685636169114495 ], [ -95.738491094622802, 29.686334169130237 ], [ -95.738494093740059, 29.686348169307546 ], [ -95.738611093964636, 29.686870169591195 ], [ -95.738766093911735, 29.687321169641866 ], [ -95.738942094788442, 29.687737169873252 ], [ -95.739358094727038, 29.688548170002345 ], [ -95.739914094906339, 29.689625170284241 ], [ -95.74014809432677, 29.690077169881093 ], [ -95.740289094403096, 29.690358170532399 ], [ -95.74032309488905, 29.690425170452006 ], [ -95.740357094613842, 29.690494170502117 ], [ -95.740987094663652, 29.691748170911172 ], [ -95.741052094639798, 29.691892170260331 ], [ -95.741057095276375, 29.691903170079076 ], [ -95.741205095530617, 29.692389170191454 ], [ -95.741318095570222, 29.692841170411434 ], [ -95.741367095615544, 29.693327170966686 ], [ -95.741368095666644, 29.693658170887744 ], [ -95.741369095701444, 29.693710170441943 ], [ -95.741379095366625, 29.69407817110233 ], [ -95.741416095655467, 29.695443171445504 ], [ -95.741480095186574, 29.696314171351602 ], [ -95.741517095721974, 29.69666717136532 ], [ -95.741591095947697, 29.697038171295276 ], [ -95.741740095465829, 29.697428171422271 ], [ -95.741925095576249, 29.697855171813348 ], [ -95.742278095790994, 29.698654171682449 ], [ -95.742377096300388, 29.698896171542092 ], [ -95.742445095703957, 29.699063172318368 ], [ -95.742594095679294, 29.699434172391715 ], [ -95.742706096137553, 29.699973172509676 ], [ -95.742836095495861, 29.70095717226107 ], [ -95.742966095709789, 29.702090172135566 ], [ -95.742987096342432, 29.702569172416727 ], [ -95.743000095981643, 29.702873172333554 ], [ -95.743009095756037, 29.702967172705659 ], [ -95.743015095680363, 29.703035173058534 ], [ -95.74322309651474, 29.70301817277786 ], [ -95.74864009747742, 29.702562172149836 ], [ -95.750904098259213, 29.702373172708956 ], [ -95.751410098126215, 29.702335172138394 ], [ -95.753375099040312, 29.702201172396226 ], [ -95.754012098826237, 29.702151172300944 ], [ -95.756476099562875, 29.701946172217507 ], [ -95.75885110036522, 29.701747172314459 ], [ -95.759151100172232, 29.701716172343826 ], [ -95.759613100097951, 29.701685171525543 ], [ -95.760032100731692, 29.701638172011609 ], [ -95.760174100150763, 29.701622171725131 ], [ -95.760300100580324, 29.701616172203067 ], [ -95.760558100685898, 29.701600171408309 ], [ -95.760692100096236, 29.701591171630373 ], [ -95.762056100879875, 29.701482171513458 ], [ -95.765571101671199, 29.701204171339999 ], [ -95.766014102260471, 29.701169171386862 ], [ -95.768091102032784, 29.70116517114057 ], [ -95.769007102419508, 29.701165171496481 ], [ -95.769284103005148, 29.701080171544838 ], [ -95.769732103292185, 29.701053171297239 ], [ -95.770727103023717, 29.700981171202155 ], [ -95.773885104278577, 29.700693170842751 ], [ -95.775035104487841, 29.700609171195563 ], [ -95.775477104051134, 29.700577171242994 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1545, "Tract": "48157672003", "Area_SqMi": 2.5600368637884383, "total_2009": 10243, "total_2010": 16030, "total_2011": 11543, "total_2012": 13698, "total_2013": 16431, "total_2014": 17837, "total_2015": 19326, "total_2016": 19041, "total_2017": 18099, "total_2018": 19747, "total_2019": 21050, "total_2020": 20831, "age1": 4204, "age2": 13303, "age3": 4889, "earn1": 4400, "earn2": 5484, "earn3": 12512, "naics_s01": 6, "naics_s02": 1759, "naics_s03": 51, "naics_s04": 695, "naics_s05": 4344, "naics_s06": 2117, "naics_s07": 1073, "naics_s08": 990, "naics_s09": 581, "naics_s10": 177, "naics_s11": 67, "naics_s12": 1554, "naics_s13": 290, "naics_s14": 1586, "naics_s15": 413, "naics_s16": 4932, "naics_s17": 31, "naics_s18": 1357, "naics_s19": 195, "naics_s20": 178, "race1": 13189, "race2": 5157, "race3": 168, "race4": 3512, "race5": 33, "race6": 337, "ethnicity1": 16426, "ethnicity2": 5970, "edu1": 3524, "edu2": 4358, "edu3": 5289, "edu4": 5021, "Shape_Length": 38072.347915073675, "Shape_Area": 71369446.215539455, "total_2021": 20280, "total_2022": 22396 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619005062289645, 29.650991166688474 ], [ -95.619003062495807, 29.650915166672299 ], [ -95.618988062557065, 29.649792166183421 ], [ -95.618981062272624, 29.649286166137497 ], [ -95.618980061918492, 29.648856166031397 ], [ -95.618980061555888, 29.648515165718894 ], [ -95.618959062417503, 29.647692165535343 ], [ -95.618961062488438, 29.64759716581862 ], [ -95.618919062463689, 29.646155165079616 ], [ -95.618904061468342, 29.643960165214203 ], [ -95.61882606124739, 29.640059164458663 ], [ -95.618781061706301, 29.636809163781937 ], [ -95.618774061532235, 29.636193162975289 ], [ -95.618754061182642, 29.634892162546045 ], [ -95.618741061800691, 29.634011163060215 ], [ -95.618729061821, 29.633688162930031 ], [ -95.618727061766521, 29.633632162335154 ], [ -95.61869806181268, 29.632647162428267 ], [ -95.618650061527021, 29.631053162519766 ], [ -95.618656060706854, 29.629540161741676 ], [ -95.618635061160802, 29.628582161426703 ], [ -95.618628061491577, 29.628260161843489 ], [ -95.618627061595888, 29.628206161417559 ], [ -95.618616061086698, 29.627798161875319 ], [ -95.618710060960296, 29.627388161370394 ], [ -95.618654061173089, 29.625073160874667 ], [ -95.618665061052397, 29.624790161297835 ], [ -95.618943061359261, 29.624052160343865 ], [ -95.618945060786672, 29.624015161068023 ], [ -95.618955060870789, 29.623783160639626 ], [ -95.618959060621222, 29.623686161011289 ], [ -95.618951061436945, 29.623548160843931 ], [ -95.618935060573804, 29.623285160264469 ], [ -95.618921061086937, 29.623257160459573 ], [ -95.618903061052933, 29.62318616065739 ], [ -95.618828061044951, 29.623138160537465 ], [ -95.618742061343852, 29.623048160560245 ], [ -95.615242059857735, 29.623787161133066 ], [ -95.613769059541312, 29.624105160512723 ], [ -95.612160059545204, 29.624416160721374 ], [ -95.611132058545152, 29.624597161145637 ], [ -95.610064058862434, 29.624809160847601 ], [ -95.609897058502852, 29.624842161529877 ], [ -95.608444058487777, 29.625132161117907 ], [ -95.605787057455331, 29.625642161466203 ], [ -95.604923057038619, 29.625840161419127 ], [ -95.60302805739795, 29.626240162209079 ], [ -95.602843057098582, 29.626278161880041 ], [ -95.601041056223124, 29.626608162340517 ], [ -95.600673056817541, 29.62667916195775 ], [ -95.599883056170626, 29.626844162039315 ], [ -95.599089055581587, 29.627009162374975 ], [ -95.598899055510273, 29.627049161643662 ], [ -95.598334056196734, 29.627167161951963 ], [ -95.597784055675888, 29.627281162498736 ], [ -95.594678054992571, 29.627836162755706 ], [ -95.593994054641769, 29.62795016263571 ], [ -95.593488054875365, 29.628035162395214 ], [ -95.593274054511014, 29.628235162307796 ], [ -95.593089054664603, 29.628408162801218 ], [ -95.592786054905417, 29.628690162635419 ], [ -95.592468054672565, 29.628987162740234 ], [ -95.590855054256721, 29.630490162733913 ], [ -95.59034305426934, 29.630969162720852 ], [ -95.589619053981295, 29.631643162970157 ], [ -95.589802053824087, 29.631825163694501 ], [ -95.590146054037675, 29.632094163600524 ], [ -95.591401054187585, 29.633073163465774 ], [ -95.591629054115074, 29.633129163761048 ], [ -95.591831054621807, 29.633141163761536 ], [ -95.592936054825785, 29.633120163391727 ], [ -95.594727055694861, 29.633062163405146 ], [ -95.597788056356904, 29.633027163205302 ], [ -95.59781105637768, 29.635036163666868 ], [ -95.597819055614096, 29.635773163849308 ], [ -95.597810055907743, 29.636574164216164 ], [ -95.597786056271801, 29.638814164779355 ], [ -95.59779905634727, 29.640642164984737 ], [ -95.597745056693441, 29.642277165329887 ], [ -95.597806056957396, 29.644101165963882 ], [ -95.597796056537717, 29.644833165783989 ], [ -95.597824056367656, 29.646817166094618 ], [ -95.597824056913751, 29.646958165778855 ], [ -95.597823056590812, 29.647055166081724 ], [ -95.597818057061176, 29.647742166792018 ], [ -95.597815056374984, 29.648196166422132 ], [ -95.597833056688685, 29.650221166948665 ], [ -95.597836056668953, 29.651813167281922 ], [ -95.597832056419804, 29.654201167191417 ], [ -95.597855056601531, 29.654979167486236 ], [ -95.597856057159149, 29.65505416789221 ], [ -95.601004057614517, 29.654433167733082 ], [ -95.602719058547422, 29.654103167310208 ], [ -95.603663058601896, 29.653899167720581 ], [ -95.603713058514359, 29.653892167286642 ], [ -95.605163058768113, 29.65361616758911 ], [ -95.605892058965054, 29.65346716722653 ], [ -95.606278059208577, 29.65339316690072 ], [ -95.606495058624901, 29.653345167290301 ], [ -95.607540058847363, 29.653132167304172 ], [ -95.608357059634514, 29.652981166823324 ], [ -95.608476059902657, 29.652960167343867 ], [ -95.608587059397067, 29.652940167362551 ], [ -95.609426060106088, 29.652765167011314 ], [ -95.610255059830493, 29.652605167274004 ], [ -95.61027505969173, 29.652601166882672 ], [ -95.610946059917055, 29.652456166700787 ], [ -95.613017061199699, 29.652051166944648 ], [ -95.614216061125759, 29.651820166505569 ], [ -95.615625061285712, 29.651470166938637 ], [ -95.61596906135847, 29.651294166032635 ], [ -95.616095061731528, 29.651186166620711 ], [ -95.616131061651714, 29.651155166745834 ], [ -95.616354061531311, 29.650910166575823 ], [ -95.616557061785784, 29.650592166245467 ], [ -95.617316061893362, 29.650803165869892 ], [ -95.618220061683317, 29.650945166049123 ], [ -95.619005062289645, 29.650991166688474 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1546, "Tract": "48157673403", "Area_SqMi": 2.3668690086804873, "total_2009": 110, "total_2010": 180, "total_2011": 341, "total_2012": 162, "total_2013": 232, "total_2014": 281, "total_2015": 315, "total_2016": 337, "total_2017": 368, "total_2018": 537, "total_2019": 441, "total_2020": 550, "age1": 322, "age2": 440, "age3": 170, "earn1": 227, "earn2": 402, "earn3": 303, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 54, "naics_s06": 4, "naics_s07": 394, "naics_s08": 7, "naics_s09": 20, "naics_s10": 17, "naics_s11": 25, "naics_s12": 32, "naics_s13": 0, "naics_s14": 24, "naics_s15": 10, "naics_s16": 116, "naics_s17": 1, "naics_s18": 210, "naics_s19": 9, "naics_s20": 0, "race1": 604, "race2": 196, "race3": 8, "race4": 108, "race5": 1, "race6": 15, "ethnicity1": 618, "ethnicity2": 314, "edu1": 135, "edu2": 169, "edu3": 166, "edu4": 140, "Shape_Length": 35217.616427711378, "Shape_Area": 65984257.025217973, "total_2021": 835, "total_2022": 932 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.81302911420488, 29.697009169281493 ], [ -95.813031113217519, 29.696102168513111 ], [ -95.813010114023101, 29.695088168711138 ], [ -95.812951113989158, 29.692318167815884 ], [ -95.812947113551218, 29.69214716844219 ], [ -95.812917113253675, 29.69068816819059 ], [ -95.81280011342507, 29.685764166864136 ], [ -95.812641112653182, 29.685767166961835 ], [ -95.810042112512576, 29.685828166903413 ], [ -95.808858112162312, 29.685569167208509 ], [ -95.808171112322839, 29.68530016659804 ], [ -95.807266112213028, 29.684945166919157 ], [ -95.80614611141489, 29.684343166773921 ], [ -95.804812110949968, 29.683826166625213 ], [ -95.803671110546659, 29.683589166498873 ], [ -95.802789110134114, 29.683525166270258 ], [ -95.802639110401273, 29.683487167119079 ], [ -95.80216711034636, 29.683476166417165 ], [ -95.801406110081103, 29.68348616702227 ], [ -95.800835109633752, 29.683533167194334 ], [ -95.799889109354794, 29.683686166900674 ], [ -95.797203109451999, 29.684376167473747 ], [ -95.796030108706802, 29.684642167073182 ], [ -95.795145109129365, 29.684808167127414 ], [ -95.794099108224444, 29.684912167436504 ], [ -95.793239108554673, 29.684884167051827 ], [ -95.792877107772526, 29.684874167714415 ], [ -95.792022108082136, 29.684779167208912 ], [ -95.791470107919324, 29.684703167315547 ], [ -95.790263107259008, 29.684418167248513 ], [ -95.789378106909197, 29.684247167173286 ], [ -95.789115106608818, 29.684185167423379 ], [ -95.788960106719344, 29.684170167252773 ], [ -95.788684107263549, 29.684085167404422 ], [ -95.788057106785033, 29.683942167659119 ], [ -95.786802106184453, 29.683705167581135 ], [ -95.786264106294539, 29.683619167128928 ], [ -95.785333106336367, 29.683571167497394 ], [ -95.784743105745449, 29.683600167126041 ], [ -95.78419210610673, 29.683648167098017 ], [ -95.78351710594751, 29.683771167423679 ], [ -95.782984105436469, 29.68387616746238 ], [ -95.782042105352303, 29.684188167380512 ], [ -95.779751105113164, 29.684950167865743 ], [ -95.779381104217279, 29.68507416772303 ], [ -95.779019104970246, 29.685254168133422 ], [ -95.778544103951603, 29.685502168038827 ], [ -95.7784561040433, 29.685555167701295 ], [ -95.778154103944729, 29.685739168165117 ], [ -95.775816103953957, 29.687048168508877 ], [ -95.77527810387754, 29.68739816846325 ], [ -95.774700103371075, 29.687704168151164 ], [ -95.773838103713473, 29.688171168655934 ], [ -95.773810103285669, 29.68818716854749 ], [ -95.772791103214033, 29.688762168620912 ], [ -95.772334102931623, 29.689021169171063 ], [ -95.772299102918353, 29.689040169042475 ], [ -95.771290102688909, 29.689606169098614 ], [ -95.771081103207592, 29.689808169155189 ], [ -95.770088102375865, 29.690385168792286 ], [ -95.769787102825816, 29.690561169002496 ], [ -95.769552102467273, 29.69069816932101 ], [ -95.769196101977514, 29.690906169629617 ], [ -95.769370102385125, 29.691121169026104 ], [ -95.769500102627973, 29.691276169199956 ], [ -95.769962102146891, 29.691824169569106 ], [ -95.770157103066637, 29.692056169236054 ], [ -95.770355103138769, 29.692236169457381 ], [ -95.772161103595465, 29.693877170303878 ], [ -95.773562103984389, 29.695583170083292 ], [ -95.77374610396383, 29.695808170070052 ], [ -95.773924104055396, 29.696069170383758 ], [ -95.774234104211118, 29.696525170413086 ], [ -95.774592103495991, 29.697070170270557 ], [ -95.774694103638438, 29.697229170343224 ], [ -95.775121103680547, 29.69820017042705 ], [ -95.775330104518801, 29.698777170714862 ], [ -95.775359104100033, 29.698977170741163 ], [ -95.775414104106417, 29.699356171077682 ], [ -95.775423104543535, 29.699655171131393 ], [ -95.775457104520271, 29.700112171159649 ], [ -95.775462104772259, 29.700183171001513 ], [ -95.775473104065682, 29.70046017065571 ], [ -95.775477104051134, 29.700577171242994 ], [ -95.775668104665911, 29.700562171061108 ], [ -95.775942103965548, 29.700540170817867 ], [ -95.776204104818078, 29.700519170992212 ], [ -95.776492105062133, 29.700499171032146 ], [ -95.77884210513993, 29.700312170569696 ], [ -95.778865104978607, 29.700310171244158 ], [ -95.780222105262268, 29.700090171207691 ], [ -95.780919105381557, 29.700040171214223 ], [ -95.781102106200251, 29.70002117113934 ], [ -95.78161910539994, 29.69997917036055 ], [ -95.782724106425306, 29.699890170478749 ], [ -95.783451106191123, 29.699830170659123 ], [ -95.785100107183226, 29.69969717055864 ], [ -95.785303107007508, 29.69968017023638 ], [ -95.79133210805405, 29.699185169900485 ], [ -95.79272210825016, 29.699063170608706 ], [ -95.792900109013644, 29.69904717034451 ], [ -95.793100108410314, 29.699031170418738 ], [ -95.79354910841063, 29.698993170054315 ], [ -95.79509210875311, 29.698861170466902 ], [ -95.798581109696087, 29.698576170356269 ], [ -95.798621110152823, 29.698573169635988 ], [ -95.800029110071648, 29.698458170019471 ], [ -95.800828110556566, 29.698394170040412 ], [ -95.803531111091559, 29.698168169601054 ], [ -95.805041111264956, 29.698043169546256 ], [ -95.806390112140932, 29.697930169887108 ], [ -95.808246112156965, 29.697776169174041 ], [ -95.808970112568318, 29.6977161694595 ], [ -95.80923011269202, 29.697694169545624 ], [ -95.811420112957293, 29.697518169087783 ], [ -95.813028113790054, 29.697369169272676 ], [ -95.813028113528702, 29.697315169579884 ], [ -95.813029113850689, 29.697086169467131 ], [ -95.81302911420488, 29.697009169281493 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1547, "Tract": "48157674301", "Area_SqMi": 1.1377281083989956, "total_2009": 419, "total_2010": 406, "total_2011": 414, "total_2012": 280, "total_2013": 353, "total_2014": 373, "total_2015": 486, "total_2016": 624, "total_2017": 581, "total_2018": 509, "total_2019": 562, "total_2020": 573, "age1": 288, "age2": 302, "age3": 109, "earn1": 260, "earn2": 252, "earn3": 187, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 5, "naics_s06": 2, "naics_s07": 98, "naics_s08": 1, "naics_s09": 0, "naics_s10": 52, "naics_s11": 18, "naics_s12": 31, "naics_s13": 0, "naics_s14": 0, "naics_s15": 3, "naics_s16": 94, "naics_s17": 55, "naics_s18": 282, "naics_s19": 57, "naics_s20": 0, "race1": 380, "race2": 138, "race3": 5, "race4": 154, "race5": 5, "race6": 17, "ethnicity1": 535, "ethnicity2": 164, "edu1": 84, "edu2": 98, "edu3": 118, "edu4": 111, "Shape_Length": 36207.622495393523, "Shape_Area": 31717912.42104546, "total_2021": 635, "total_2022": 699 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.593180051428135, 29.561375148818595 ], [ -95.593063051394083, 29.561238148547776 ], [ -95.593011051989635, 29.561173148404364 ], [ -95.592978051410896, 29.561111148875465 ], [ -95.592957051363953, 29.561049149067475 ], [ -95.592936051152108, 29.560910148771573 ], [ -95.59291605145232, 29.560111148240271 ], [ -95.592892051071203, 29.559429148612033 ], [ -95.592891051970184, 29.559375148604722 ], [ -95.592877051041086, 29.558863147945207 ], [ -95.592847051380772, 29.557872148250297 ], [ -95.592798051316365, 29.557493148197025 ], [ -95.592786051718193, 29.556908147783538 ], [ -95.592761051625331, 29.555618147676533 ], [ -95.592739050930973, 29.554782147433635 ], [ -95.592731051543581, 29.554425147012765 ], [ -95.592721051526468, 29.554071147483139 ], [ -95.592712051566153, 29.553722147068285 ], [ -95.592711051421091, 29.553658147282015 ], [ -95.592688050831811, 29.55277414743513 ], [ -95.592676050661609, 29.552300146641983 ], [ -95.592679050958736, 29.551844147073297 ], [ -95.592661051181764, 29.551687147054519 ], [ -95.591321051244279, 29.551670147089624 ], [ -95.591043051074323, 29.551667146602256 ], [ -95.590439050651611, 29.551659147327911 ], [ -95.589643050356528, 29.551649147197711 ], [ -95.589421050265969, 29.551657146977007 ], [ -95.589092050199994, 29.551670146590258 ], [ -95.589015049980489, 29.551679147098131 ], [ -95.588930050533691, 29.551689146758452 ], [ -95.588771050313227, 29.551716146819079 ], [ -95.588709050447576, 29.55171314709095 ], [ -95.588523050222292, 29.551706147114796 ], [ -95.588426050485893, 29.551700146613602 ], [ -95.588292050275356, 29.551672147420092 ], [ -95.588127050079592, 29.551637146808623 ], [ -95.587917049380692, 29.551593147278933 ], [ -95.587772050104931, 29.55156314732443 ], [ -95.58755905029409, 29.551550146662745 ], [ -95.587263049701235, 29.551532146979572 ], [ -95.587075049459202, 29.551521146590567 ], [ -95.586945049665047, 29.551536147185743 ], [ -95.586840050056836, 29.551548147146754 ], [ -95.586767049506832, 29.551556147205105 ], [ -95.586707049082463, 29.551563146731624 ], [ -95.586633049025522, 29.551583147382235 ], [ -95.586448049487942, 29.551634147193173 ], [ -95.586431049867571, 29.551638147112396 ], [ -95.586417049326755, 29.551642146863209 ], [ -95.586403049816283, 29.551646146638895 ], [ -95.586384049058438, 29.551651147069524 ], [ -95.586372049617765, 29.551654147200335 ], [ -95.586358049072416, 29.551658146944956 ], [ -95.586343049155914, 29.551662147353031 ], [ -95.586323049082296, 29.551667146636071 ], [ -95.586300049171228, 29.55167414726429 ], [ -95.58628404957814, 29.551679146667862 ], [ -95.586242049883296, 29.55159314740985 ], [ -95.586166049395317, 29.551439147251276 ], [ -95.586134048921792, 29.551375146575726 ], [ -95.585964049626213, 29.551003147166259 ], [ -95.585844049651328, 29.550719146562617 ], [ -95.58573004936828, 29.550401146741361 ], [ -95.585676049433843, 29.550221147098448 ], [ -95.585642049449419, 29.550093146928386 ], [ -95.585622049527245, 29.550016146353247 ], [ -95.585443049468111, 29.549236146984686 ], [ -95.585427048718884, 29.549166146635621 ], [ -95.585255048803873, 29.549193146286175 ], [ -95.585094049302569, 29.549218146522485 ], [ -95.584932049374785, 29.549243146290927 ], [ -95.584375049054998, 29.549330147003083 ], [ -95.583724048846619, 29.54941514647513 ], [ -95.583107048742193, 29.549467146370333 ], [ -95.581918048741173, 29.549523146925811 ], [ -95.581588047975558, 29.549573146802786 ], [ -95.581123048541187, 29.549646146880121 ], [ -95.579985048062056, 29.550044146889679 ], [ -95.579258047578492, 29.550414147164293 ], [ -95.578857047942833, 29.550707146676022 ], [ -95.578566047108922, 29.550921147459562 ], [ -95.578443047843109, 29.551020147608778 ], [ -95.578170047768424, 29.551232147492502 ], [ -95.578078047408852, 29.551302147209036 ], [ -95.577811047356789, 29.551518147085847 ], [ -95.577771047505223, 29.551551147540749 ], [ -95.577873047225907, 29.551666146937521 ], [ -95.577892047815723, 29.551754147456109 ], [ -95.577930047306111, 29.551826147004721 ], [ -95.578030047113984, 29.551940147284927 ], [ -95.578389047179115, 29.55235314716516 ], [ -95.578508047703593, 29.552430147378015 ], [ -95.578527047589191, 29.552557147378256 ], [ -95.579068047780765, 29.553128147426982 ], [ -95.57933804810061, 29.553442148021123 ], [ -95.579577047897686, 29.553656147766347 ], [ -95.579684047589481, 29.553783148061267 ], [ -95.579911048416989, 29.553898147484425 ], [ -95.579930048443885, 29.553931147383352 ], [ -95.579942047773812, 29.553986147587342 ], [ -95.579980047892604, 29.554052147372143 ], [ -95.580213048271645, 29.554233148117987 ], [ -95.580319048356642, 29.554354147558218 ], [ -95.580617047737817, 29.554555148258746 ], [ -95.581030048100828, 29.554832147459425 ], [ -95.581401048326384, 29.555041148139356 ], [ -95.581791048152525, 29.555223148208395 ], [ -95.582187048535033, 29.555299148176456 ], [ -95.582847048873802, 29.555360148220494 ], [ -95.583677048941084, 29.555404148294915 ], [ -95.583986048957499, 29.555393147550213 ], [ -95.584350049205597, 29.555442148191684 ], [ -95.58490404896807, 29.555546147631727 ], [ -95.585344049578609, 29.555689148066843 ], [ -95.58570804970995, 29.555848147903845 ], [ -95.585948049870851, 29.556002147714704 ], [ -95.586124050042827, 29.556134148276499 ], [ -95.586275049861257, 29.556305148087713 ], [ -95.58633104973751, 29.55634914807116 ], [ -95.586312050121052, 29.556519147936296 ], [ -95.586325049480763, 29.556574147694846 ], [ -95.586350049969667, 29.556591148441367 ], [ -95.586463050163502, 29.556596147898432 ], [ -95.586589050109467, 29.556629148379482 ], [ -95.58663904977503, 29.556711147876495 ], [ -95.58676504942575, 29.557085148545674 ], [ -95.586834050131543, 29.557388147780276 ], [ -95.586847049464609, 29.557629148130729 ], [ -95.586822049512747, 29.557844148701349 ], [ -95.58670905000416, 29.558146148435434 ], [ -95.586571049607173, 29.558388148192691 ], [ -95.586294049847552, 29.558790148386393 ], [ -95.58608004975838, 29.559048148893318 ], [ -95.585753050028657, 29.559257148962711 ], [ -95.585175049823178, 29.559713148780812 ], [ -95.584804049529495, 29.560219148713514 ], [ -95.584339049782145, 29.560687148571997 ], [ -95.583616049305604, 29.561193149428384 ], [ -95.582717048937681, 29.5617811495719 ], [ -95.582434049259803, 29.562006149211765 ], [ -95.582164048871107, 29.562100149518251 ], [ -95.581975048410101, 29.562149149338008 ], [ -95.581692048879063, 29.562100148946133 ], [ -95.581510048225923, 29.561963149383903 ], [ -95.581296048164774, 29.561704149153226 ], [ -95.581176049088739, 29.561644149684362 ], [ -95.58098804863468, 29.561589149071818 ], [ -95.580887048425353, 29.561600149226255 ], [ -95.580698048941528, 29.56176514929362 ], [ -95.580554048431821, 29.561946149391396 ], [ -95.580420048420237, 29.562201148947292 ], [ -95.580394048674293, 29.562272149192037 ], [ -95.580267048258548, 29.562611149691261 ], [ -95.580240048854506, 29.562682149617217 ], [ -95.580229048224041, 29.563020149979458 ], [ -95.580220048365263, 29.563294149483688 ], [ -95.580245047999114, 29.563337149780359 ], [ -95.580322048863138, 29.563469149921914 ], [ -95.580424048708679, 29.563644149347365 ], [ -95.580562048495153, 29.56388114957138 ], [ -95.580655048512966, 29.564039149923094 ], [ -95.580662048792391, 29.564112149339827 ], [ -95.580680048280541, 29.564283149432789 ], [ -95.580742048561177, 29.564850150156744 ], [ -95.580922049193035, 29.56497214955936 ], [ -95.581105048255395, 29.565095149683309 ], [ -95.581483048549387, 29.565349150213155 ], [ -95.581566048938654, 29.565385149566392 ], [ -95.581670049005922, 29.565418149892601 ], [ -95.581682048867364, 29.565739150491297 ], [ -95.581683048514108, 29.566026150092757 ], [ -95.581705048975991, 29.566708150238274 ], [ -95.581707048861077, 29.566752150114191 ], [ -95.581744048674921, 29.567978150156691 ], [ -95.581753048658058, 29.56827815020587 ], [ -95.581762048629059, 29.56862715026331 ], [ -95.581764049170246, 29.568708151096637 ], [ -95.581785049215412, 29.569449151097988 ], [ -95.581798049042177, 29.569946150577955 ], [ -95.581845048841586, 29.571658150992231 ], [ -95.581865049696432, 29.572401151400136 ], [ -95.581870049432439, 29.572579151908769 ], [ -95.581895049378687, 29.573575151883929 ], [ -95.581897049388147, 29.573645151894816 ], [ -95.581901049102768, 29.573809151817986 ], [ -95.58191104965104, 29.574176151639836 ], [ -95.581927048869318, 29.574762151790743 ], [ -95.581926049483698, 29.574777151918756 ], [ -95.581940049273484, 29.575328151727678 ], [ -95.583460050298484, 29.576376152497907 ], [ -95.584341050211947, 29.576983151984276 ], [ -95.584520049770092, 29.577108152026177 ], [ -95.584690049898725, 29.577162152710621 ], [ -95.584618050304911, 29.577697152160191 ], [ -95.584509050441994, 29.578082152589104 ], [ -95.584436050426177, 29.578230152299451 ], [ -95.584257050517877, 29.578692152589394 ], [ -95.584107050303558, 29.578974153118416 ], [ -95.583800050482481, 29.579472153094684 ], [ -95.583421049948754, 29.579959153115709 ], [ -95.58300805005085, 29.580409152867102 ], [ -95.5828330503589, 29.580587152716511 ], [ -95.58295204937717, 29.580665153092628 ], [ -95.585673050966136, 29.582541153714715 ], [ -95.587270050909211, 29.583643153550241 ], [ -95.5873860508663, 29.583723153858568 ], [ -95.589043051528009, 29.584879154166234 ], [ -95.589553051919211, 29.585236153784439 ], [ -95.589313050666831, 29.572208150787155 ], [ -95.589310051306569, 29.572059151036772 ], [ -95.589264050779832, 29.568193150181941 ], [ -95.589261050572986, 29.567176150521011 ], [ -95.589318050930615, 29.567198150496907 ], [ -95.589453051329357, 29.567249149834211 ], [ -95.589535051199988, 29.567266150123086 ], [ -95.589617050512359, 29.567288150175653 ], [ -95.58978005088089, 29.567354150457259 ], [ -95.590170050789766, 29.567436150033991 ], [ -95.590611051059923, 29.567497150207526 ], [ -95.590906051333775, 29.56755114986645 ], [ -95.591239051880805, 29.567634150380698 ], [ -95.59151805099755, 29.567666150144561 ], [ -95.591496051198533, 29.566569149740396 ], [ -95.591464051587238, 29.564995149357578 ], [ -95.591460050953231, 29.564839149124872 ], [ -95.591461051164544, 29.56443614989859 ], [ -95.591462051707381, 29.564271149419408 ], [ -95.591475051068016, 29.563759149325971 ], [ -95.591505051416036, 29.563510148974881 ], [ -95.59160805111506, 29.563174149486763 ], [ -95.5918470511903, 29.562638149184806 ], [ -95.592208051089784, 29.562197148943561 ], [ -95.592448051634989, 29.561938148765094 ], [ -95.59273005135239, 29.561693148834937 ], [ -95.593180051428135, 29.561375148818595 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1548, "Tract": "48157672401", "Area_SqMi": 0.50054326155799933, "total_2009": 408, "total_2010": 482, "total_2011": 494, "total_2012": 317, "total_2013": 341, "total_2014": 561, "total_2015": 636, "total_2016": 652, "total_2017": 637, "total_2018": 667, "total_2019": 697, "total_2020": 695, "age1": 231, "age2": 269, "age3": 131, "earn1": 235, "earn2": 278, "earn3": 118, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 17, "naics_s05": 30, "naics_s06": 1, "naics_s07": 192, "naics_s08": 0, "naics_s09": 0, "naics_s10": 41, "naics_s11": 0, "naics_s12": 13, "naics_s13": 0, "naics_s14": 23, "naics_s15": 1, "naics_s16": 74, "naics_s17": 35, "naics_s18": 185, "naics_s19": 19, "naics_s20": 0, "race1": 401, "race2": 131, "race3": 4, "race4": 78, "race5": 2, "race6": 15, "ethnicity1": 418, "ethnicity2": 213, "edu1": 109, "edu2": 111, "edu3": 116, "edu4": 64, "Shape_Length": 17291.182871524037, "Shape_Area": 13954289.443882996, "total_2021": 731, "total_2022": 631 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.643643070005908, 29.685939172845128 ], [ -95.643641069801603, 29.68555717211343 ], [ -95.643634069860326, 29.685075172742579 ], [ -95.643633070217604, 29.684983172345252 ], [ -95.643632070451076, 29.684916172757617 ], [ -95.643622069817013, 29.684266172522641 ], [ -95.643619069843112, 29.684051172230475 ], [ -95.643618070086887, 29.683989172249142 ], [ -95.64362806951641, 29.682181172077673 ], [ -95.643627069573895, 29.682118171956137 ], [ -95.643559070017162, 29.679006171304017 ], [ -95.643550069528288, 29.678533170647373 ], [ -95.64348906935767, 29.677249170763464 ], [ -95.64348807002564, 29.677209171224952 ], [ -95.643488069886303, 29.677198170949076 ], [ -95.643446069388276, 29.674706170640697 ], [ -95.643443069805599, 29.674500169877668 ], [ -95.643443069191747, 29.674461170181971 ], [ -95.643425069759175, 29.673606170275288 ], [ -95.643422069072216, 29.67328117013361 ], [ -95.643388069438799, 29.67242317015851 ], [ -95.64334506876763, 29.670314169685927 ], [ -95.643287069578591, 29.668317168856859 ], [ -95.642238068531569, 29.668319169471033 ], [ -95.642213069068347, 29.668319168883183 ], [ -95.641606068982256, 29.668303168860131 ], [ -95.640998068122414, 29.668314169206425 ], [ -95.640381068463526, 29.668322169008345 ], [ -95.639822068174453, 29.668323169510156 ], [ -95.639880068855717, 29.671147170132805 ], [ -95.639877068739878, 29.671230169794804 ], [ -95.639867068319433, 29.671289169861815 ], [ -95.639848068926057, 29.671338169538949 ], [ -95.639820068425109, 29.67138316942464 ], [ -95.639787068340951, 29.67142116942647 ], [ -95.639752068862222, 29.671444169952629 ], [ -95.639714068250427, 29.67146316962582 ], [ -95.639664068806269, 29.671476169851189 ], [ -95.639599067834297, 29.67148217005693 ], [ -95.6365240674223, 29.671561169509655 ], [ -95.636483067376489, 29.671562169476623 ], [ -95.636205067571481, 29.67155416953177 ], [ -95.635957067766682, 29.671556170229433 ], [ -95.634118066673452, 29.671616170174001 ], [ -95.634130066789794, 29.673340170128494 ], [ -95.634123066746582, 29.674042170666173 ], [ -95.634111067157264, 29.67531117076437 ], [ -95.634176067360471, 29.677560171401701 ], [ -95.634188067725134, 29.678738171668844 ], [ -95.634198067648853, 29.679443171976004 ], [ -95.634206067255249, 29.680566171648966 ], [ -95.634313066971913, 29.680630172127415 ], [ -95.634680068001586, 29.680726171639709 ], [ -95.634753067540586, 29.680782172004839 ], [ -95.634828067334865, 29.680838172052994 ], [ -95.634859068061033, 29.680862172112125 ], [ -95.635091067125103, 29.681039171897847 ], [ -95.635113067934768, 29.681056171519757 ], [ -95.635369067864445, 29.68125017192931 ], [ -95.635472067288234, 29.681328171708188 ], [ -95.635614068224356, 29.681410171581881 ], [ -95.635698067306862, 29.681459171728545 ], [ -95.63604006808535, 29.681655171878461 ], [ -95.636549068047813, 29.681948172216135 ], [ -95.636597067879876, 29.681975172243462 ], [ -95.636630067849254, 29.681994171906013 ], [ -95.636829068583438, 29.68210917238428 ], [ -95.637881067987848, 29.682715172130955 ], [ -95.637905068313742, 29.682729172411566 ], [ -95.638744068960307, 29.683212172224653 ], [ -95.638755068476129, 29.683218171880693 ], [ -95.639643069328201, 29.683732172467426 ], [ -95.639739069333956, 29.683787172098299 ], [ -95.639773068981484, 29.683806172567582 ], [ -95.639976069009265, 29.683922172027916 ], [ -95.640264069122566, 29.684086172557478 ], [ -95.640534068787233, 29.684224172085127 ], [ -95.640595069259732, 29.684255172269175 ], [ -95.640679068833549, 29.68429817212601 ], [ -95.640703069544472, 29.68431017258154 ], [ -95.641584069860926, 29.684759172158984 ], [ -95.64212806987959, 29.685034172350282 ], [ -95.642822069450489, 29.685440172827018 ], [ -95.643034069953387, 29.685564172792287 ], [ -95.643324069660977, 29.685740172689275 ], [ -95.643349070393583, 29.685756172864011 ], [ -95.643368069561959, 29.685768172905849 ], [ -95.643440070139604, 29.685812172645321 ], [ -95.643475070329998, 29.685834172252257 ], [ -95.643505069774562, 29.685853172549269 ], [ -95.643535070263098, 29.685872172865377 ], [ -95.643643070005908, 29.685939172845128 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1549, "Tract": "48157675701", "Area_SqMi": 83.018451354322508, "total_2009": 261, "total_2010": 196, "total_2011": 177, "total_2012": 209, "total_2013": 221, "total_2014": 231, "total_2015": 222, "total_2016": 246, "total_2017": 259, "total_2018": 293, "total_2019": 289, "total_2020": 249, "age1": 46, "age2": 117, "age3": 48, "earn1": 34, "earn2": 63, "earn3": 114, "naics_s01": 12, "naics_s02": 0, "naics_s03": 0, "naics_s04": 77, "naics_s05": 26, "naics_s06": 13, "naics_s07": 0, "naics_s08": 7, "naics_s09": 4, "naics_s10": 0, "naics_s11": 31, "naics_s12": 3, "naics_s13": 1, "naics_s14": 8, "naics_s15": 0, "naics_s16": 15, "naics_s17": 0, "naics_s18": 0, "naics_s19": 14, "naics_s20": 0, "race1": 179, "race2": 19, "race3": 1, "race4": 8, "race5": 0, "race6": 4, "ethnicity1": 117, "ethnicity2": 94, "edu1": 47, "edu2": 49, "edu3": 41, "edu4": 28, "Shape_Length": 322956.25024150807, "Shape_Area": 2314412336.258975, "total_2021": 257, "total_2022": 211 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.953286134374409, 29.345370092766807 ], [ -95.953387133758497, 29.345084092951019 ], [ -95.953217134125822, 29.344397092518687 ], [ -95.95315413426259, 29.344024092746981 ], [ -95.953098133916313, 29.343804092363094 ], [ -95.952985134380114, 29.343595092322513 ], [ -95.952897134224827, 29.343403092466641 ], [ -95.952822133848272, 29.343238092470063 ], [ -95.952690133753478, 29.343062092209195 ], [ -95.952602133320923, 29.342908092399234 ], [ -95.952433133641136, 29.342699092023356 ], [ -95.952226133831473, 29.342529092267505 ], [ -95.951372133440415, 29.34221009171916 ], [ -95.950776133368052, 29.341655092322728 ], [ -95.950519132653639, 29.341534092341867 ], [ -95.950281133084005, 29.341490091756313 ], [ -95.94989213310329, 29.341303091723386 ], [ -95.949722133154083, 29.341188091687322 ], [ -95.949584132525828, 29.341018091487591 ], [ -95.949553133192225, 29.340869092266804 ], [ -95.949546133181727, 29.340578091676406 ], [ -95.949503132483471, 29.340386091643058 ], [ -95.949459132388313, 29.340254092108214 ], [ -95.94950313325738, 29.340133091622249 ], [ -95.949691133226949, 29.339929091297154 ], [ -95.949753132562066, 29.339797091210844 ], [ -95.949778132517679, 29.339665091147495 ], [ -95.949772132537106, 29.339479091778806 ], [ -95.949747133342896, 29.339292091281003 ], [ -95.949546132497346, 29.33894009152452 ], [ -95.94950913273874, 29.338786091744279 ], [ -95.949502132919889, 29.338484091720584 ], [ -95.949521132907662, 29.338379090914156 ], [ -95.949571132385316, 29.338247090981472 ], [ -95.949828133145246, 29.337813091377487 ], [ -95.949954132992559, 29.337665091058437 ], [ -95.950299132915163, 29.337307090648562 ], [ -95.950549132542804, 29.33700509055393 ], [ -95.950606132490663, 29.336851090886721 ], [ -95.950675132618926, 29.33674709079833 ], [ -95.95068113323849, 29.336664091125485 ], [ -95.950650132787302, 29.336582090881272 ], [ -95.95041813312649, 29.336302090886058 ], [ -95.950085132913429, 29.33595009065165 ], [ -95.949778133091201, 29.335598090821424 ], [ -95.949615133112374, 29.3354830905744 ], [ -95.949470132400819, 29.335323090718884 ], [ -95.9491881321552, 29.33517509100902 ], [ -95.948743132256055, 29.334988090953949 ], [ -95.948266132346319, 29.334823090968559 ], [ -95.947795131947103, 29.334466090800944 ], [ -95.947369132368507, 29.334103090542349 ], [ -95.947174132206001, 29.333746090584814 ], [ -95.946817131483527, 29.333438090461019 ], [ -95.946459131949879, 29.333224089905706 ], [ -95.946051131365962, 29.332999090064092 ], [ -95.945869131913909, 29.332878090013502 ], [ -95.945367131506131, 29.332697090272248 ], [ -95.945054131208721, 29.33254809019083 ], [ -95.944734131481383, 29.332323089830879 ], [ -95.944320130792008, 29.332208090556332 ], [ -95.943981131575143, 29.332186089967401 ], [ -95.943705130653939, 29.332120089836909 ], [ -95.942921130827742, 29.331889090492247 ], [ -95.942720130341726, 29.3318780902183 ], [ -95.94255713117326, 29.331883090151038 ], [ -95.942419130771611, 29.331878090292783 ], [ -95.942201130148078, 29.331841090461715 ], [ -95.942056130593897, 29.331764090050012 ], [ -95.941950130333211, 29.331654089758732 ], [ -95.94175513008291, 29.331533090140127 ], [ -95.941592130675033, 29.331505089869832 ], [ -95.941266130142012, 29.331511089890384 ], [ -95.940996129981087, 29.331527090478978 ], [ -95.940833130179428, 29.33160409055909 ], [ -95.940708130056805, 29.331698090657142 ], [ -95.940589130191142, 29.331725090174942 ], [ -95.940363130243782, 29.331731089934511 ], [ -95.940212130249193, 29.331703090529448 ], [ -95.939886130370326, 29.331588090503608 ], [ -95.939459129690164, 29.331286089930618 ], [ -95.939033129352666, 29.331055090508006 ], [ -95.938744129979028, 29.330774089946125 ], [ -95.938243129888889, 29.330346089889424 ], [ -95.93786012953872, 29.330219089723379 ], [ -95.937477129156548, 29.330142090214043 ], [ -95.937327129450949, 29.330159090004951 ], [ -95.9371761288985, 29.330203090328055 ], [ -95.936988129461966, 29.330280090482788 ], [ -95.936794129407687, 29.330324089870341 ], [ -95.936386128605861, 29.330351090469645 ], [ -95.936016129128234, 29.3303400900115 ], [ -95.93563912919187, 29.330192089845578 ], [ -95.93541412895452, 29.330044090145936 ], [ -95.935232128436112, 29.329895090122715 ], [ -95.934924129160223, 29.329719090072288 ], [ -95.934749129016254, 29.329642090084032 ], [ -95.934460128496013, 29.329406090102424 ], [ -95.934379128381593, 29.329307089521198 ], [ -95.933268127867066, 29.328774089884327 ], [ -95.932942127797915, 29.328631090156442 ], [ -95.932691127822224, 29.328565090000538 ], [ -95.932403127944923, 29.328510090208617 ], [ -95.932033128127344, 29.328483089423077 ], [ -95.93160012742905, 29.328483089603758 ], [ -95.93052112741249, 29.328653089676923 ], [ -95.929850126914246, 29.328818089767591 ], [ -95.929549127089402, 29.328873090111028 ], [ -95.929254127501878, 29.32894408972097 ], [ -95.928978127127365, 29.328972089789527 ], [ -95.928696126822828, 29.328977090368269 ], [ -95.92849512736565, 29.328999090206516 ], [ -95.928168127012995, 29.328993089696993 ], [ -95.927691127332508, 29.329125089784508 ], [ -95.927227126366304, 29.329295090251183 ], [ -95.926631126722654, 29.329438090419963 ], [ -95.926104126155423, 29.329526090048102 ], [ -95.925464126726112, 29.329696090773027 ], [ -95.924963125671951, 29.329696090380075 ], [ -95.924542126224694, 29.329713090796876 ], [ -95.923965125832723, 29.329630090367594 ], [ -95.923809126096572, 29.3295860905796 ], [ -95.92357012569606, 29.329504089912493 ], [ -95.92338812534129, 29.329454090627937 ], [ -95.923012125771521, 29.329278090479576 ], [ -95.922892125382873, 29.329331090194813 ], [ -95.922771125696585, 29.329384090226913 ], [ -95.922383125578861, 29.328814089868921 ], [ -95.922213125123392, 29.328647090010168 ], [ -95.921544124880313, 29.328060090256187 ], [ -95.92063212471821, 29.32738608993937 ], [ -95.920013124271961, 29.326858089897168 ], [ -95.919399124779204, 29.326277089788732 ], [ -95.919004124178088, 29.325773089625606 ], [ -95.918933124790911, 29.32542008925914 ], [ -95.918984124107808, 29.324267088958656 ], [ -95.918931124086328, 29.323584089559095 ], [ -95.918681123800724, 29.323051088763549 ], [ -95.91780512452452, 29.321875088854735 ], [ -95.917376124320626, 29.32037208838209 ], [ -95.917221123913961, 29.319999088644529 ], [ -95.917004123565874, 29.319693088906774 ], [ -95.916613123532372, 29.319373088155171 ], [ -95.91593512310277, 29.319225088171983 ], [ -95.915354123100656, 29.319042088483112 ], [ -95.914613122911163, 29.318655088847532 ], [ -95.913693123272978, 29.318548088855263 ], [ -95.91275212293597, 29.31861008804837 ], [ -95.911887122557829, 29.318385088075559 ], [ -95.911519121813825, 29.318366088335882 ], [ -95.910996122385413, 29.318157088454402 ], [ -95.90970512225627, 29.31793908853744 ], [ -95.908992121722392, 29.317764088334489 ], [ -95.907796121609422, 29.317284088312565 ], [ -95.906594121307933, 29.31692108810951 ], [ -95.906348121280104, 29.316907087935459 ], [ -95.90602312111146, 29.316955088532669 ], [ -95.905091121076381, 29.317237088330497 ], [ -95.904598120483683, 29.317228088103377 ], [ -95.904358119919422, 29.317179088484494 ], [ -95.904194120522149, 29.317129088144778 ], [ -95.903814120389185, 29.317014088723553 ], [ -95.903304119900596, 29.316650087950357 ], [ -95.901929119488784, 29.316000088207328 ], [ -95.901160119748909, 29.315890088657728 ], [ -95.900744119711121, 29.315762088330168 ], [ -95.900501119478676, 29.315687088314565 ], [ -95.899930119481809, 29.315335088162051 ], [ -95.89967211882778, 29.315106088054325 ], [ -95.899122118947417, 29.314617088459496 ], [ -95.898639119308129, 29.3144180880292 ], [ -95.898272118443145, 29.314387087618464 ], [ -95.897718118427676, 29.314524087875402 ], [ -95.897149118533846, 29.314875088353279 ], [ -95.896537118610212, 29.31508008787463 ], [ -95.895609118298751, 29.315236087994261 ], [ -95.895077117596514, 29.315196087999258 ], [ -95.894475118007762, 29.314985088732481 ], [ -95.894118117233958, 29.314640087927806 ], [ -95.893947117877048, 29.314274087828093 ], [ -95.893836117083794, 29.313853087746054 ], [ -95.893634117385517, 29.313610087812631 ], [ -95.893248117311799, 29.312932087642512 ], [ -95.892860116887363, 29.312377087799344 ], [ -95.892753117507581, 29.312058087335998 ], [ -95.892728117283966, 29.31186008774479 ], [ -95.892710117364686, 29.311343087240747 ], [ -95.892760117463112, 29.310942087773594 ], [ -95.893017117117708, 29.310404087214128 ], [ -95.893438117794346, 29.309959087562756 ], [ -95.893707117135449, 29.309711086957112 ], [ -95.894128117351457, 29.309200087177082 ], [ -95.894473117830387, 29.308870087178278 ], [ -95.894717117293624, 29.308541086809765 ], [ -95.895000117776974, 29.30812908655458 ], [ -95.895169117220036, 29.307854086521051 ], [ -95.895458118114718, 29.307557087219848 ], [ -95.89580311777766, 29.307288086754461 ], [ -95.896029118082581, 29.307024086506843 ], [ -95.896161117452479, 29.30673308625337 ], [ -95.896186117821614, 29.30634208643734 ], [ -95.896180118099636, 29.30595808647157 ], [ -95.895866117745754, 29.305446086650512 ], [ -95.895697117623826, 29.305062086414079 ], [ -95.895653117274591, 29.304770085970631 ], [ -95.895685117964362, 29.303929086245361 ], [ -95.896526117604424, 29.301005085387608 ], [ -95.896740117233819, 29.300665085396307 ], [ -95.896903118256262, 29.300401084967461 ], [ -95.897373117865683, 29.299466085343923 ], [ -95.897477117465399, 29.299410084749947 ], [ -95.897548118201755, 29.299288084849298 ], [ -95.897499117590215, 29.299170085331397 ], [ -95.897475118189718, 29.299134085110868 ], [ -95.897160117470349, 29.298836084811963 ], [ -95.896817117241042, 29.298181084876408 ], [ -95.896496117621538, 29.297790084526195 ], [ -95.895951117676859, 29.297267084659676 ], [ -95.895512116956183, 29.296938084591382 ], [ -95.894691117301861, 29.296503084748561 ], [ -95.894013117328115, 29.296129084500922 ], [ -95.893593117248386, 29.295799084151643 ], [ -95.893286116278361, 29.295535084017995 ], [ -95.892942116762029, 29.29513908425195 ], [ -95.892835116694556, 29.294738084305301 ], [ -95.892817116433946, 29.294057083992801 ], [ -95.892447116473065, 29.293710084221143 ], [ -95.891927116075706, 29.293270084331823 ], [ -95.891281115790093, 29.292704083555634 ], [ -95.890930115655436, 29.292143084020442 ], [ -95.890798115513007, 29.291709083707307 ], [ -95.890617115577939, 29.290840083904772 ], [ -95.889972115149376, 29.288790082780661 ], [ -95.889872115774878, 29.288130083400933 ], [ -95.889759115147385, 29.287515083253627 ], [ -95.889609114868975, 29.287135082527772 ], [ -95.88928311484554, 29.286717082709917 ], [ -95.889202114895269, 29.286492082614991 ], [ -95.888682115450891, 29.285887082147841 ], [ -95.888168114492046, 29.285150082824071 ], [ -95.88770411489412, 29.284397082580881 ], [ -95.887241114798499, 29.283512081801199 ], [ -95.887015114449795, 29.283056082353131 ], [ -95.886514114103974, 29.282110082067771 ], [ -95.886295113909725, 29.28172008141452 ], [ -95.88613211404234, 29.281472081612062 ], [ -95.885957113875918, 29.281005081509793 ], [ -95.885718113994287, 29.2805980817907 ], [ -95.885574114116338, 29.280395081952054 ], [ -95.885343113767988, 29.28021308103283 ], [ -95.885142114314945, 29.279933081060022 ], [ -95.884923114298132, 29.279691081237324 ], [ -95.884816113367975, 29.27939408157367 ], [ -95.884678114183785, 29.279218081630102 ], [ -95.884697113365846, 29.278823080844273 ], [ -95.884691113620889, 29.278652081456173 ], [ -95.884836114057123, 29.278135081137169 ], [ -95.884924114035428, 29.277294080996143 ], [ -95.88496811412918, 29.276750080974725 ], [ -95.884988113934085, 29.275294080295499 ], [ -95.884982113726636, 29.274805080036455 ], [ -95.88495011385497, 29.274299080451257 ], [ -95.884894113680232, 29.274145080504542 ], [ -95.884838113917141, 29.27406808043029 ], [ -95.884706113969273, 29.273733080020605 ], [ -95.884575113948856, 29.273507079716325 ], [ -95.884462113821968, 29.273359080092039 ], [ -95.884305113748439, 29.27326508015954 ], [ -95.884004113797005, 29.272963080053838 ], [ -95.883841112989757, 29.272743080270931 ], [ -95.88370411333652, 29.272600080321237 ], [ -95.883541113394003, 29.272462079823114 ], [ -95.883033112540176, 29.271962079550331 ], [ -95.882945112796492, 29.271847079476178 ], [ -95.882820112689345, 29.271748079434808 ], [ -95.88159211313814, 29.271219080070086 ], [ -95.881341112731064, 29.271197080093049 ], [ -95.880520112131151, 29.270961079563133 ], [ -95.880194111894383, 29.270774079864371 ], [ -95.879912111790674, 29.2704220792609 ], [ -95.879868112178386, 29.270290079799409 ], [ -95.879699112105968, 29.269987079631271 ], [ -95.879611111950993, 29.269707079323602 ], [ -95.879493111733836, 29.269102079544194 ], [ -95.879524112245804, 29.268613079131079 ], [ -95.879763112264484, 29.267651078864095 ], [ -95.879763112145284, 29.267327079303321 ], [ -95.87978211165408, 29.267102078592501 ], [ -95.879713112380401, 29.266926078640545 ], [ -95.879607111994176, 29.266766078714394 ], [ -95.879200111682664, 29.266414079175721 ], [ -95.87871711209641, 29.266079078921315 ], [ -95.87847311197946, 29.265947078351015 ], [ -95.878084111538968, 29.265820079046239 ], [ -95.877777111736421, 29.265787079183191 ], [ -95.877419111593852, 29.26579207898094 ], [ -95.877050110753856, 29.265748079172319 ], [ -95.876774111596035, 29.265798079089759 ], [ -95.876373111171233, 29.265918078657936 ], [ -95.875796110981398, 29.266033078972505 ], [ -95.875006110654226, 29.266369078784429 ], [ -95.874806110913298, 29.26641807917386 ], [ -95.874568110816, 29.266479079287571 ], [ -95.874247110739574, 29.266543079029773 ], [ -95.874170110222494, 29.266558078613784 ], [ -95.874073110560133, 29.266578079367246 ], [ -95.87387911030649, 29.266600079187366 ], [ -95.873578110170229, 29.266589078728291 ], [ -95.873336109996984, 29.266622079405714 ], [ -95.873133110315351, 29.266650079138621 ], [ -95.872669110340993, 29.266727079583447 ], [ -95.87231810996856, 29.266744078962631 ], [ -95.871797109818615, 29.266958078928585 ], [ -95.871409109520272, 29.267184079418783 ], [ -95.871033110186715, 29.26745907891485 ], [ -95.870607109995774, 29.267745079784603 ], [ -95.870344109164876, 29.267954079341603 ], [ -95.870068109458416, 29.268245079260083 ], [ -95.869523109942264, 29.268795079608811 ], [ -95.869360109565179, 29.268944079979967 ], [ -95.869091109136804, 29.269164079480053 ], [ -95.869009109091309, 29.269213079683801 ], [ -95.86893410904284, 29.269246079612426 ], [ -95.868752109779408, 29.269279080036608 ], [ -95.868520109090184, 29.269285079531901 ], [ -95.868257108736614, 29.269263079856131 ], [ -95.868012108661873, 29.269219079793732 ], [ -95.867812108841761, 29.26915907985909 ], [ -95.867636109349021, 29.269093080238271 ], [ -95.8673291091322, 29.268939080199946 ], [ -95.866978109006936, 29.268752079351518 ], [ -95.866714108854026, 29.268593080094512 ], [ -95.866382108354443, 29.268324079905458 ], [ -95.866213108389118, 29.26820907927118 ], [ -95.865843108221767, 29.267829079784494 ], [ -95.865673108546744, 29.267643079802347 ], [ -95.865566108138907, 29.267544079912067 ], [ -95.865410108225745, 29.267439079101216 ], [ -95.865109108073881, 29.267280079608096 ], [ -95.864896108244892, 29.267253079925432 ], [ -95.864676107719589, 29.267231079342189 ], [ -95.864444108170261, 29.26722007933914 ], [ -95.863961107573971, 29.267226079082313 ], [ -95.863635108118032, 29.267248079253985 ], [ -95.86320910779915, 29.267325079638244 ], [ -95.862858108102614, 29.267418079709984 ], [ -95.861981107498835, 29.267683079348565 ], [ -95.861504107354023, 29.26779308003437 ], [ -95.861285107450882, 29.267804080170922 ], [ -95.860702106745435, 29.267738079607557 ], [ -95.860495107413769, 29.267722079330639 ], [ -95.860125107127629, 29.267711079487984 ], [ -95.859956107201583, 29.267711079830409 ], [ -95.859530106958331, 29.267755079489326 ], [ -95.85928510713488, 29.267788079875672 ], [ -95.858671106276319, 29.267959079783285 ], [ -95.857850106308462, 29.268157080131367 ], [ -95.857574106870217, 29.268124080047905 ], [ -95.857241105919087, 29.268058080110443 ], [ -95.856941106306934, 29.267976079650197 ], [ -95.856727106590753, 29.267882080344311 ], [ -95.856533106508437, 29.267783080285568 ], [ -95.856157106400588, 29.267536080285012 ], [ -95.856031106041527, 29.267256079444355 ], [ -95.855762105988433, 29.267042079805329 ], [ -95.855191106080909, 29.266663079850915 ], [ -95.854777106103398, 29.266366079961127 ], [ -95.854696105504175, 29.266327079533941 ], [ -95.854463105173494, 29.26619007918201 ], [ -95.854169105797581, 29.266053079996325 ], [ -95.853931105164349, 29.265976079882122 ], [ -95.853686104915724, 29.265932079329509 ], [ -95.853536105777778, 29.265888079642131 ], [ -95.853211105014964, 29.265953079186328 ], [ -95.85295310553073, 29.266004079495286 ], [ -95.852821104869264, 29.266196080013628 ], [ -95.852664105118066, 29.266301079705492 ], [ -95.852608105160172, 29.266328079487145 ], [ -95.852483104770769, 29.266334079715023 ], [ -95.852389105291323, 29.266290079968304 ], [ -95.85230710498287, 29.266268079347917 ], [ -95.85215710446947, 29.266262079636576 ], [ -95.85207510507405, 29.266268079995676 ], [ -95.851837104707343, 29.266345079942383 ], [ -95.851536104499473, 29.26637807988757 ], [ -95.851191105058035, 29.266378080051943 ], [ -95.850934105027719, 29.266318079554019 ], [ -95.850840104980051, 29.266279079367916 ], [ -95.850752105002414, 29.266230079542723 ], [ -95.85057010425669, 29.266098079572672 ], [ -95.850401104310649, 29.265944080122718 ], [ -95.850251104538984, 29.265779080028381 ], [ -95.85011310439215, 29.265614079773002 ], [ -95.850006104780533, 29.265427079334696 ], [ -95.849924104833605, 29.26523007948181 ], [ -95.849887104038103, 29.265087079463022 ], [ -95.849843104595962, 29.264828079659534 ], [ -95.849836104331743, 29.264564079460712 ], [ -95.849805104235529, 29.264367079275907 ], [ -95.849755104069928, 29.264229079673974 ], [ -95.849654103810366, 29.264081079715339 ], [ -95.849529104105628, 29.263921079671388 ], [ -95.849115103570895, 29.263619078808098 ], [ -95.84862610436025, 29.263361079356411 ], [ -95.848123103797491, 29.263091079421969 ], [ -95.848018103861918, 29.262982079203631 ], [ -95.847849103338092, 29.262834078863147 ], [ -95.847663103634758, 29.262595079119301 ], [ -95.846838103170711, 29.263349079044058 ], [ -95.845895102791488, 29.264207079271305 ], [ -95.842513102755134, 29.267296080123192 ], [ -95.842375102124521, 29.267422080255777 ], [ -95.842301102086736, 29.267491080502008 ], [ -95.838745101816855, 29.270739081442148 ], [ -95.837364101852046, 29.271998081447585 ], [ -95.835032100753665, 29.27412808167675 ], [ -95.834226100561153, 29.274864082495149 ], [ -95.832081100585299, 29.276823082460222 ], [ -95.819121097274461, 29.288659085740701 ], [ -95.816138097028528, 29.291287086164385 ], [ -95.816059096924846, 29.291359086221469 ], [ -95.815662096889653, 29.29172608602353 ], [ -95.815479096258358, 29.291914086104569 ], [ -95.815435096857286, 29.291959086309511 ], [ -95.815416096311807, 29.291978085759673 ], [ -95.815382096978695, 29.292014086040954 ], [ -95.815160097040632, 29.292224086476729 ], [ -95.812699095623472, 29.29446608715698 ], [ -95.809315094945504, 29.297561087465969 ], [ -95.807026094469094, 29.299623087713769 ], [ -95.80689009528048, 29.299740088463743 ], [ -95.806796095098917, 29.299825088000183 ], [ -95.801841093329728, 29.304328089031706 ], [ -95.801821093362506, 29.304346089604334 ], [ -95.801812094207975, 29.304354088918956 ], [ -95.798819092818277, 29.307075089931317 ], [ -95.7984020930312, 29.307454090344805 ], [ -95.797887093052552, 29.30792209048985 ], [ -95.797827093059595, 29.307976090491909 ], [ -95.797803092986811, 29.307955089986756 ], [ -95.797371093026953, 29.307580089593301 ], [ -95.79734509276679, 29.307557090339909 ], [ -95.797319093215421, 29.307535090338714 ], [ -95.797308092230111, 29.307526090317669 ], [ -95.797062092856791, 29.30731309034671 ], [ -95.796536092121457, 29.306864089642705 ], [ -95.796128092258115, 29.306516090172373 ], [ -95.795457091713914, 29.305945089840382 ], [ -95.795225092019706, 29.305747089831502 ], [ -95.795151091852688, 29.305684089302719 ], [ -95.794995092424841, 29.305551089893726 ], [ -95.794973091673157, 29.305532089327706 ], [ -95.79463509163628, 29.305244089272655 ], [ -95.791970091685599, 29.3029720895487 ], [ -95.791867091324661, 29.302884089182257 ], [ -95.791846091255721, 29.302866088808319 ], [ -95.790222090547687, 29.301495089086941 ], [ -95.787146089510912, 29.298890088745924 ], [ -95.784899089390592, 29.296965088657185 ], [ -95.784083089266403, 29.296299088193358 ], [ -95.784020088590808, 29.29625408807048 ], [ -95.782206088455581, 29.297878088219683 ], [ -95.778492087374531, 29.301203089567132 ], [ -95.777926087068636, 29.30174008928357 ], [ -95.777825087641261, 29.30183608932909 ], [ -95.775994087042918, 29.303577090069101 ], [ -95.775332087351813, 29.304182089872477 ], [ -95.774413087022666, 29.305021090453693 ], [ -95.769982085365655, 29.308974090966583 ], [ -95.767119084921219, 29.31152209172215 ], [ -95.766959085337476, 29.311668091394392 ], [ -95.766849085136002, 29.311768091615086 ], [ -95.762103083723574, 29.316059092457333 ], [ -95.760864084129992, 29.317180093531402 ], [ -95.756318083389871, 29.321303094223875 ], [ -95.752873082400896, 29.324508095261773 ], [ -95.752860081927196, 29.324503094942791 ], [ -95.750248081627262, 29.323540095249513 ], [ -95.747220080747951, 29.322716094954966 ], [ -95.747359080846877, 29.322935095189475 ], [ -95.747726080623181, 29.32351909527549 ], [ -95.7480830814077, 29.32406409458417 ], [ -95.748421081045137, 29.32453409491638 ], [ -95.748955081020469, 29.325236095277344 ], [ -95.749378081342442, 29.325721095616306 ], [ -95.750091081009955, 29.326415095296714 ], [ -95.750337081298781, 29.326640094997185 ], [ -95.75078508187346, 29.327047095418756 ], [ -95.750882081578936, 29.327127095659719 ], [ -95.754248082531944, 29.329911095690232 ], [ -95.756281083537075, 29.331586096012575 ], [ -95.758197083522674, 29.333165096855641 ], [ -95.758255084147279, 29.333213096848915 ], [ -95.761064085010503, 29.335577096796982 ], [ -95.761974085048138, 29.336332097220385 ], [ -95.765573086230916, 29.339317097232048 ], [ -95.771044087742197, 29.343871097890883 ], [ -95.773369087817755, 29.345771098588948 ], [ -95.775190088471405, 29.347312098680998 ], [ -95.776549089221703, 29.348463099290598 ], [ -95.777639089048662, 29.349351099005766 ], [ -95.781336090654264, 29.352404099938244 ], [ -95.784346091021064, 29.354889099767341 ], [ -95.786318091594794, 29.356526100594198 ], [ -95.787264092468163, 29.357309100083615 ], [ -95.787609092538574, 29.35759810013019 ], [ -95.789683092673442, 29.359340101005287 ], [ -95.791567093364478, 29.360865101289047 ], [ -95.791975093956154, 29.36120210104831 ], [ -95.792253093526199, 29.361430101563023 ], [ -95.792348093471276, 29.361507101546586 ], [ -95.792521093459555, 29.361652101348387 ], [ -95.79276109426138, 29.361832100837677 ], [ -95.794153094791383, 29.362985101386268 ], [ -95.79501409445615, 29.363707101901937 ], [ -95.795133094950643, 29.363807101489918 ], [ -95.79657009539531, 29.364980101360921 ], [ -95.797603095703394, 29.365823102274415 ], [ -95.799452095544012, 29.367417102197596 ], [ -95.800308096357867, 29.368118102477034 ], [ -95.801773096899311, 29.369317102606729 ], [ -95.80191209690831, 29.369433102267138 ], [ -95.801934096453877, 29.369451102789945 ], [ -95.801978096339454, 29.369488102170443 ], [ -95.80215409714414, 29.369656102221914 ], [ -95.802614097120227, 29.370018102312883 ], [ -95.802830097293963, 29.370201102906716 ], [ -95.803997097224084, 29.371197102577504 ], [ -95.806119098118771, 29.372958102724311 ], [ -95.806350097609027, 29.37313710356289 ], [ -95.807730097870675, 29.374281103532002 ], [ -95.808767098265193, 29.375183103070679 ], [ -95.809270099072535, 29.375597103434384 ], [ -95.81060709864073, 29.376692103502211 ], [ -95.81101509901454, 29.377026104002937 ], [ -95.812138099633771, 29.377931103960048 ], [ -95.8141830994999, 29.376096103413179 ], [ -95.816347100776696, 29.374056102615157 ], [ -95.817829100627506, 29.372702102288599 ], [ -95.819099101458477, 29.371542102440987 ], [ -95.81957410090746, 29.37109910241038 ], [ -95.819746101175994, 29.370938102499014 ], [ -95.820344101675971, 29.370393102540696 ], [ -95.822247101782708, 29.368659101450994 ], [ -95.823635102132414, 29.367365101737185 ], [ -95.823664102188303, 29.36733810146837 ], [ -95.825953102217838, 29.369237101636358 ], [ -95.831139104250411, 29.373582102525468 ], [ -95.831812104546273, 29.37414510221593 ], [ -95.833109105248212, 29.375231103054915 ], [ -95.835849105628043, 29.378127103233904 ], [ -95.836901106229718, 29.378982102981304 ], [ -95.838772106147076, 29.380503103971837 ], [ -95.838910106554067, 29.38061610359625 ], [ -95.839796106243298, 29.38131110386125 ], [ -95.840914107434301, 29.38218710402305 ], [ -95.841374106726263, 29.382547103992401 ], [ -95.8414531070474, 29.382609104071232 ], [ -95.841534107092713, 29.382674103936093 ], [ -95.843093107694557, 29.383895104140517 ], [ -95.846630108398088, 29.38666910428288 ], [ -95.848018108872637, 29.387756104333032 ], [ -95.8492221098615, 29.388672105233493 ], [ -95.849307109087363, 29.388736104988869 ], [ -95.84938810978872, 29.388660104746453 ], [ -95.851671110167914, 29.386534104629646 ], [ -95.852167110033747, 29.386100104110891 ], [ -95.855585110577238, 29.38291910337685 ], [ -95.856340110500454, 29.382220103683014 ], [ -95.856438111195558, 29.382150103191378 ], [ -95.856845111540892, 29.381767102991578 ], [ -95.857140110701124, 29.381490103164655 ], [ -95.860282111324736, 29.378620102149625 ], [ -95.860719112234534, 29.378208102251055 ], [ -95.860762112187984, 29.378261102407397 ], [ -95.862718112347991, 29.379876102622561 ], [ -95.864011113272838, 29.380964102545438 ], [ -95.864975113093678, 29.381767102935139 ], [ -95.865973113335428, 29.382590102996435 ], [ -95.866814114001698, 29.383296103236798 ], [ -95.867473114000205, 29.383843102951701 ], [ -95.869123113903299, 29.385223103354281 ], [ -95.870802114580229, 29.386611103744368 ], [ -95.871508115306398, 29.387200103681508 ], [ -95.872306114958874, 29.387850103669049 ], [ -95.872629115465401, 29.388120104308413 ], [ -95.872738115201983, 29.388206103813296 ], [ -95.872802115718642, 29.388261104476733 ], [ -95.872819114906306, 29.388281104150032 ], [ -95.874187115678893, 29.389412104238378 ], [ -95.877582116980193, 29.392216104877086 ], [ -95.877821117387057, 29.39241410447902 ], [ -95.878543117342915, 29.393014105254363 ], [ -95.878798116895894, 29.393221105253083 ], [ -95.880084117778594, 29.394291104821431 ], [ -95.880628117285511, 29.394745105205185 ], [ -95.881133118208183, 29.395158104804828 ], [ -95.884674119290054, 29.398088105236742 ], [ -95.884773119369413, 29.398174105590098 ], [ -95.881375118492727, 29.401312106869405 ], [ -95.8739111169875, 29.408199107817037 ], [ -95.873340116035052, 29.40872410796333 ], [ -95.870211115809994, 29.411626109158792 ], [ -95.868950115598679, 29.412789108907816 ], [ -95.86744911474274, 29.414182109101525 ], [ -95.866806115489766, 29.414766109508285 ], [ -95.865078114537638, 29.416374109871768 ], [ -95.861999114445283, 29.419221110458864 ], [ -95.861954114307139, 29.419274110502087 ], [ -95.859334113688547, 29.421743111139165 ], [ -95.859168113519019, 29.421898111190416 ], [ -95.857110112738582, 29.423803111543389 ], [ -95.853286111877026, 29.427331113064923 ], [ -95.850581111615455, 29.42983911361641 ], [ -95.847183111050839, 29.427009112445546 ], [ -95.844558109731693, 29.424830112616956 ], [ -95.840024108829368, 29.421065111951062 ], [ -95.838624108232395, 29.419902111877921 ], [ -95.836408107151428, 29.418056110929591 ], [ -95.835974107626555, 29.417694111293027 ], [ -95.835300107421659, 29.417145111149804 ], [ -95.834894106516728, 29.416815111571641 ], [ -95.834835107104624, 29.419366111887374 ], [ -95.834806106619595, 29.420619112268028 ], [ -95.834685107316446, 29.424096112817502 ], [ -95.834599107797473, 29.425568112589335 ], [ -95.834434106861437, 29.426354112686262 ], [ -95.834405107024963, 29.426499112749415 ], [ -95.834120107502471, 29.427353112989941 ], [ -95.831347107037658, 29.433834115064794 ], [ -95.830689106368439, 29.435370115194722 ], [ -95.828972106956641, 29.439378115747449 ], [ -95.828225106220486, 29.441141116546696 ], [ -95.825446106424138, 29.447649117341697 ], [ -95.825034105615572, 29.448615118347245 ], [ -95.823985105987646, 29.450990118151502 ], [ -95.82162310579406, 29.456520119302247 ], [ -95.821542105655823, 29.456706119615855 ], [ -95.8210451057206, 29.457867120187011 ], [ -95.819034105424294, 29.462460121251279 ], [ -95.8187151051726, 29.463209120990395 ], [ -95.816475104890543, 29.46847812278892 ], [ -95.816317104957392, 29.468849122125064 ], [ -95.81610410426066, 29.469352122527738 ], [ -95.814640104002109, 29.472806123041316 ], [ -95.814241103982837, 29.473748123876966 ], [ -95.814194103902281, 29.473855123659508 ], [ -95.816273104574279, 29.47555912390753 ], [ -95.817240104668798, 29.476382124008172 ], [ -95.817653105102849, 29.476732124323153 ], [ -95.818151104989326, 29.477155124396432 ], [ -95.818377105606231, 29.477372123672147 ], [ -95.819500105607176, 29.478305124597096 ], [ -95.819858106294461, 29.478605124508103 ], [ -95.82000210581127, 29.478719123955887 ], [ -95.820304106429461, 29.478971124172354 ], [ -95.820986106556703, 29.479536124351807 ], [ -95.821063105942414, 29.479504124840407 ], [ -95.821195106292663, 29.479436124567634 ], [ -95.82129410599218, 29.47937412419817 ], [ -95.821397106451258, 29.479292124680367 ], [ -95.821896106250207, 29.478830124214245 ], [ -95.822635106791381, 29.478137124445237 ], [ -95.823204106586047, 29.47761412436618 ], [ -95.82376910664496, 29.477087123926886 ], [ -95.824429107397819, 29.47647912346379 ], [ -95.825323107061237, 29.475655123848096 ], [ -95.825528107457984, 29.475467123054599 ], [ -95.827849107234357, 29.473347122756461 ], [ -95.828398107283491, 29.47282612321062 ], [ -95.82844610780127, 29.47278012295768 ], [ -95.828970107976971, 29.472279122947853 ], [ -95.829180107419361, 29.472079123064127 ], [ -95.830709107873929, 29.470658122203155 ], [ -95.831500108772715, 29.469967121815824 ], [ -95.83155510841658, 29.469916122543161 ], [ -95.831933108822, 29.469566121641904 ], [ -95.832253108986635, 29.469275122122092 ], [ -95.832824109118945, 29.46875612226615 ], [ -95.832917108773515, 29.468672121513119 ], [ -95.832981108870428, 29.468611121815023 ], [ -95.8332231091278, 29.46838312209978 ], [ -95.833273108477556, 29.468338121623372 ], [ -95.833534109377922, 29.468104121533631 ], [ -95.834738109277438, 29.466986121235056 ], [ -95.836148109114134, 29.465696121169689 ], [ -95.837616109716109, 29.464339121129026 ], [ -95.838480109727854, 29.463538120633778 ], [ -95.838713109703377, 29.463327120432822 ], [ -95.839220110576136, 29.462856120452052 ], [ -95.839891110139774, 29.462232120674756 ], [ -95.842131111204893, 29.460177119613949 ], [ -95.844388111656741, 29.458098119327424 ], [ -95.845435111609802, 29.457123118667702 ], [ -95.847433112330918, 29.455285118540786 ], [ -95.848327111834791, 29.454458118196975 ], [ -95.848817112139429, 29.454005118130986 ], [ -95.849962112459309, 29.452954118375711 ], [ -95.85051411292595, 29.452441118166298 ], [ -95.851666112777664, 29.451392117917532 ], [ -95.852030112405885, 29.451065117410238 ], [ -95.853424113597114, 29.452229117966993 ], [ -95.854398113963995, 29.453040117491533 ], [ -95.854908113970495, 29.453464118065376 ], [ -95.855801114045221, 29.45420911802821 ], [ -95.856832114490203, 29.455070118513984 ], [ -95.85696111457554, 29.455183118098667 ], [ -95.85699111399569, 29.45520911804444 ], [ -95.858007114291468, 29.456051118608915 ], [ -95.858672114725408, 29.456591118243832 ], [ -95.859215115042019, 29.457040118895641 ], [ -95.860374115623472, 29.458013118752987 ], [ -95.860587115326325, 29.458194118876637 ], [ -95.860827115741102, 29.458393118581675 ], [ -95.861543115270891, 29.458989119212141 ], [ -95.862213116022076, 29.459548119271258 ], [ -95.862373115998622, 29.459681118577645 ], [ -95.86281411588142, 29.460046119385762 ], [ -95.863232116376807, 29.460399118999529 ], [ -95.865123116899255, 29.461963119032589 ], [ -95.866351116553261, 29.462992119385571 ], [ -95.867322117442441, 29.463813119516384 ], [ -95.869748118096325, 29.465826120345568 ], [ -95.869940118031096, 29.46598412021677 ], [ -95.872227119149144, 29.467892120508122 ], [ -95.872809118483374, 29.468376120158513 ], [ -95.873076118979967, 29.468593120798861 ], [ -95.873490119589093, 29.468946120672417 ], [ -95.874504119472192, 29.469787120864584 ], [ -95.875296119451818, 29.470441121165379 ], [ -95.875343119150457, 29.470481121188751 ], [ -95.876233119468068, 29.471228121023746 ], [ -95.877020119910881, 29.471877121213556 ], [ -95.877416119733965, 29.472214120862841 ], [ -95.879191121136799, 29.473695121010802 ], [ -95.879981121193453, 29.474346121376087 ], [ -95.881247121014766, 29.475405121838492 ], [ -95.88330712143599, 29.477116121799195 ], [ -95.884081121891214, 29.477758122107893 ], [ -95.884102122059062, 29.477776121565935 ], [ -95.884862122535964, 29.47842012203769 ], [ -95.885163122710097, 29.478667122393258 ], [ -95.887229122718921, 29.480389122821052 ], [ -95.887321122588219, 29.480471122544181 ], [ -95.88741712294491, 29.480385122074772 ], [ -95.887443123490186, 29.480362122594439 ], [ -95.887461123077458, 29.480345122346346 ], [ -95.887705122950109, 29.48012512276323 ], [ -95.887771122821022, 29.480066122662308 ], [ -95.887877123553039, 29.479972122061874 ], [ -95.88847812382906, 29.479415121924358 ], [ -95.889335123637267, 29.478607122398568 ], [ -95.891154123395566, 29.476919121899037 ], [ -95.891519123724564, 29.476582121636433 ], [ -95.89242612425889, 29.475730121104082 ], [ -95.89291512431555, 29.47528712156009 ], [ -95.894255124089455, 29.474045120425732 ], [ -95.894831124962678, 29.473498120933296 ], [ -95.896089125149317, 29.472339120436331 ], [ -95.896575125175602, 29.471886120379601 ], [ -95.897668124936828, 29.470884120244829 ], [ -95.897734125508904, 29.47082212054444 ], [ -95.897782125127634, 29.470776120475563 ], [ -95.897832125416656, 29.470736120460099 ], [ -95.8978951249792, 29.470672120325013 ], [ -95.897998125829162, 29.47057711985579 ], [ -95.898151125173626, 29.470435120292798 ], [ -95.898172125679096, 29.470416120434312 ], [ -95.898293125073607, 29.47030411988306 ], [ -95.898337125788274, 29.470264120319943 ], [ -95.898706125833854, 29.469924119652628 ], [ -95.900266126226711, 29.468468119904969 ], [ -95.900769125902755, 29.468006119560442 ], [ -95.901901126595192, 29.466974119526949 ], [ -95.902396126720532, 29.466504119297262 ], [ -95.902861126407615, 29.466067119053328 ], [ -95.903760127100995, 29.465247119011053 ], [ -95.90450212670595, 29.464558118221643 ], [ -95.906024127344196, 29.463131118190354 ], [ -95.906591127130284, 29.462616117909675 ], [ -95.906949127698766, 29.462281118155602 ], [ -95.907598127741693, 29.461676118185288 ], [ -95.907722127908414, 29.461565117559083 ], [ -95.90835212729516, 29.460975117952295 ], [ -95.908571127475227, 29.460777117978243 ], [ -95.909646127951092, 29.459771117264967 ], [ -95.910136128309688, 29.459321117261979 ], [ -95.911224128504429, 29.458313116819706 ], [ -95.912174128104198, 29.457442117220278 ], [ -95.912864128477807, 29.456791117065766 ], [ -95.912931128230724, 29.456726116683399 ], [ -95.914712128905649, 29.455084116049676 ], [ -95.91545812864814, 29.45438011592794 ], [ -95.917119130002618, 29.452846115380058 ], [ -95.917529129973516, 29.452475116016096 ], [ -95.91792812937814, 29.452113115207148 ], [ -95.91807812987129, 29.451964115852757 ], [ -95.919766130142833, 29.450403115398434 ], [ -95.921527130063666, 29.448765115056123 ], [ -95.921739130703514, 29.448565115086286 ], [ -95.921856129980497, 29.448454114677741 ], [ -95.921755130048936, 29.448396114444634 ], [ -95.921707130738099, 29.448380114442692 ], [ -95.921587130749216, 29.448359114709522 ], [ -95.921341130478211, 29.448332114305664 ], [ -95.921219130594849, 29.448319114917112 ], [ -95.921124129865603, 29.448302114509985 ], [ -95.921026129990835, 29.448275114395262 ], [ -95.920926130644602, 29.448236114857803 ], [ -95.920827129956749, 29.44818411450235 ], [ -95.920729130341272, 29.448117115006813 ], [ -95.920628129688694, 29.448040114839706 ], [ -95.920305130315825, 29.447777114739541 ], [ -95.918442129832599, 29.446221114670699 ], [ -95.917441129508362, 29.445376113994651 ], [ -95.9166191292462, 29.444690114393492 ], [ -95.916551129293808, 29.444630114253538 ], [ -95.916558129036702, 29.444511113959305 ], [ -95.916583129473665, 29.444384114113227 ], [ -95.916609129048268, 29.444137114359741 ], [ -95.916583129203033, 29.443928113851737 ], [ -95.91654612860512, 29.443769114109006 ], [ -95.916458129035831, 29.443543114174499 ], [ -95.916427128584672, 29.443351113494831 ], [ -95.916420128692309, 29.443131113603844 ], [ -95.916452129283442, 29.442933113432098 ], [ -95.916552129377806, 29.442477113395995 ], [ -95.916634129256167, 29.4422191135323 ], [ -95.91664712893828, 29.442120113653953 ], [ -95.916647129334834, 29.441933113240797 ], [ -95.916577128448964, 29.441532113314334 ], [ -95.916408129289195, 29.440877112991362 ], [ -95.91632012852935, 29.440559113105 ], [ -95.916239129104568, 29.440377113391694 ], [ -95.91603112814704, 29.44000911281297 ], [ -95.915812128211854, 29.439569112841589 ], [ -95.915366128191266, 29.43881111261754 ], [ -95.915310128899108, 29.438635113329859 ], [ -95.915021128706599, 29.437563113123648 ], [ -95.915033127825311, 29.437409112934255 ], [ -95.915052128629043, 29.437332112987875 ], [ -95.91509012803543, 29.437239112523621 ], [ -95.915561128712426, 29.436689112130551 ], [ -95.915737128883762, 29.436469112414422 ], [ -95.915844128487464, 29.436321112038247 ], [ -95.915932128796001, 29.436156112665277 ], [ -95.916019128861521, 29.43593611198369 ], [ -95.916045128736769, 29.435788112388106 ], [ -95.916032128035297, 29.435694111964146 ], [ -95.91596912885106, 29.435568112140722 ], [ -95.915825128732365, 29.435364111992506 ], [ -95.915725127996964, 29.435260111829496 ], [ -95.915404128349621, 29.43485911208268 ], [ -95.915367127979579, 29.434804112552325 ], [ -95.915342127773513, 29.434732112315103 ], [ -95.915304128058878, 29.434512111817906 ], [ -95.915329128435133, 29.434364111790916 ], [ -95.915442128055929, 29.434183111732921 ], [ -95.915555128592459, 29.43393011193594 ], [ -95.915612128267696, 29.433759112054908 ], [ -95.915618128260334, 29.433551111551814 ], [ -95.915587128617773, 29.433353111471657 ], [ -95.915486128368755, 29.433185111613302 ], [ -95.915461128425591, 29.433144111639699 ], [ -95.915405128441961, 29.433067111691187 ], [ -95.915310128124517, 29.432858111815833 ], [ -95.91528512844917, 29.432764112139878 ], [ -95.915279127675902, 29.432693112061475 ], [ -95.915355127898522, 29.432528112071804 ], [ -95.915449128475714, 29.432369111300659 ], [ -95.9156311278809, 29.432099111875729 ], [ -95.915738128144497, 29.431880111989479 ], [ -95.915832127738, 29.43172011174169 ], [ -95.915869128302916, 29.431627111430036 ], [ -95.915920128579245, 29.431401111091528 ], [ -95.915932128675053, 29.431292111433628 ], [ -95.915895128370266, 29.431138111504666 ], [ -95.915738128558715, 29.430956111663757 ], [ -95.915593128280619, 29.430835111172588 ], [ -95.915468127728872, 29.430637110954542 ], [ -95.915399127844609, 29.430500110926168 ], [ -95.915317127936817, 29.430220110945729 ], [ -95.915305127798007, 29.430060110821596 ], [ -95.91524812832742, 29.429643110794192 ], [ -95.915173128325563, 29.4292851113456 ], [ -95.915079127923505, 29.428994110895058 ], [ -95.914872128271156, 29.428554110646861 ], [ -95.914652127874959, 29.427977110508397 ], [ -95.914508127508185, 29.427642110982266 ], [ -95.914426127342722, 29.427471110852625 ], [ -95.914313128105007, 29.42729511067785 ], [ -95.914024127070007, 29.42693311015919 ], [ -95.913849127017926, 29.426663110199286 ], [ -95.913748127535598, 29.426476110384442 ], [ -95.913616127925081, 29.426339110246328 ], [ -95.913547127578184, 29.426278110114154 ], [ -95.913422127092488, 29.426190110210378 ], [ -95.913365127724617, 29.426135110803799 ], [ -95.913183127503856, 29.425899110263774 ], [ -95.913114127653131, 29.425778110358756 ], [ -95.913095127697815, 29.425690110319646 ], [ -95.913089127484383, 29.425476110486116 ], [ -95.913102127397337, 29.425289110148409 ], [ -95.913127126927179, 29.425168110180774 ], [ -95.91311412694732, 29.424838110497745 ], [ -95.913089127048437, 29.424564109706868 ], [ -95.913058126985803, 29.424393110278334 ], [ -95.913027126773471, 29.424283110490375 ], [ -95.913027127339419, 29.423981109789157 ], [ -95.913146127009043, 29.42349210986723 ], [ -95.913134127218427, 29.423371109484023 ], [ -95.913108127655661, 29.423321110207048 ], [ -95.913052127070245, 29.423250109547205 ], [ -95.912970127062607, 29.423189110032048 ], [ -95.912889127479104, 29.423151109671281 ], [ -95.912738127376514, 29.423118110031318 ], [ -95.911564126322304, 29.422964109459869 ], [ -95.911288126700526, 29.422942109682445 ], [ -95.911206127071395, 29.422903109424706 ], [ -95.911074126969268, 29.422815109521782 ], [ -95.910955126997465, 29.422716109413006 ], [ -95.910528126263927, 29.422040109741651 ], [ -95.910447126612013, 29.421881109411988 ], [ -95.910384126596682, 29.421710109936477 ], [ -95.910346125938602, 29.421573109945108 ], [ -95.910328126879392, 29.421232109259972 ], [ -95.910378126790192, 29.420556109467967 ], [ -95.910510125962261, 29.420237109482901 ], [ -95.910742126259947, 29.419880109026799 ], [ -95.910827126278519, 29.419776108895842 ], [ -95.910905126100886, 29.419682109356334 ], [ -95.910918126351234, 29.419561109207361 ], [ -95.910906126703566, 29.419506109610527 ], [ -95.910868126354231, 29.419446109243516 ], [ -95.910805126297902, 29.419374108878888 ], [ -95.910573126376107, 29.419204109429366 ], [ -95.910479126804546, 29.419160109439325 ], [ -95.910315125859739, 29.419039108769748 ], [ -95.910246125847962, 29.418979109509706 ], [ -95.910096125925094, 29.418797108678419 ], [ -95.910064126572138, 29.418726108607821 ], [ -95.910046126692066, 29.41859410863611 ], [ -95.910046126546874, 29.418440108627916 ], [ -95.910065125828126, 29.418308109021961 ], [ -95.91006512576395, 29.418204108579218 ], [ -95.910014126115712, 29.418061108484412 ], [ -95.909694125958382, 29.417362108841658 ], [ -95.909450125542691, 29.416961108803672 ], [ -95.909230125769824, 29.416499108810257 ], [ -95.909180125476425, 29.416379108468863 ], [ -95.909148125660806, 29.416241108608926 ], [ -95.909142125842251, 29.416038108247974 ], [ -95.9091741261294, 29.415867108724164 ], [ -95.909224125528056, 29.415790108256289 ], [ -95.909682125470184, 29.415400108573259 ], [ -95.909802126286209, 29.415263108760243 ], [ -95.909839125915767, 29.415186108733927 ], [ -95.909852125554721, 29.41501610816049 ], [ -95.909789126106205, 29.414829108290064 ], [ -95.909720126130907, 29.414730108336812 ], [ -95.909620126332783, 29.41464210785281 ], [ -95.909463126038219, 29.414603108207977 ], [ -95.909300125470097, 29.414576107911753 ], [ -95.908904126177944, 29.414587107836017 ], [ -95.908659125397136, 29.414614107828115 ], [ -95.908333125574984, 29.414669107950981 ], [ -95.908220125766491, 29.414663107942566 ], [ -95.90800612516432, 29.414597108323793 ], [ -95.907893125064462, 29.414542108503724 ], [ -95.907743125713949, 29.41444910822019 ], [ -95.907554125064891, 29.414279108490923 ], [ -95.907454125788988, 29.414213108559483 ], [ -95.907291124809007, 29.414125108635339 ], [ -95.907015125041568, 29.414031108384449 ], [ -95.906399125222805, 29.413921108130289 ], [ -95.906255124526112, 29.413861108513874 ], [ -95.906167124838007, 29.41380610778106 ], [ -95.906098124922508, 29.413729108074385 ], [ -95.905991124846594, 29.413547108153651 ], [ -95.905966124554041, 29.413448108291664 ], [ -95.905966124532327, 29.413344107665136 ], [ -95.905954124620749, 29.413256107739592 ], [ -95.905979125059886, 29.413146108058967 ], [ -95.906023124701548, 29.413053108001371 ], [ -95.906148124897697, 29.412915107946709 ], [ -95.906494124956509, 29.412662107855994 ], [ -95.906657124657272, 29.412503108123822 ], [ -95.906732124908572, 29.412377107713191 ], [ -95.906802125545042, 29.412201108234768 ], [ -95.906820124863074, 29.412030107930725 ], [ -95.906814124835464, 29.411613108024472 ], [ -95.906840125347827, 29.411437107489643 ], [ -95.907009124997032, 29.411123107818071 ], [ -95.907091125519528, 29.410909107858252 ], [ -95.907110124972448, 29.410794107468156 ], [ -95.907097124922615, 29.410662107061611 ], [ -95.907047124585262, 29.410585107341788 ], [ -95.906909124731399, 29.410480107311148 ], [ -95.906777125006258, 29.41043610790609 ], [ -95.906262124509254, 29.410359107879245 ], [ -95.906137124417697, 29.410326107741653 ], [ -95.905942124527911, 29.410293107628231 ], [ -95.905603124965722, 29.410189107447003 ], [ -95.905427124685772, 29.410106107566929 ], [ -95.90514512444264, 29.409919107073932 ], [ -95.905038124607586, 29.409793107360869 ], [ -95.904656124504953, 29.409249107334709 ], [ -95.904505124633886, 29.409095107030829 ], [ -95.904417124102423, 29.409051106994461 ], [ -95.90422912395023, 29.409023107317754 ], [ -95.904034124614867, 29.409012107514201 ], [ -95.903657124656362, 29.409045107216432 ], [ -95.903488123780605, 29.409040107111501 ], [ -95.903224123771906, 29.408946106918311 ], [ -95.903067123985792, 29.408858107063384 ], [ -95.902772123775037, 29.408726106989633 ], [ -95.9025971239071, 29.408649107212355 ], [ -95.902484123719603, 29.408583106819606 ], [ -95.902358123705341, 29.408539107611702 ], [ -95.902069123779327, 29.408396106790654 ], [ -95.901894123663055, 29.408286107161263 ], [ -95.901881123987224, 29.408248107623205 ], [ -95.901850123824858, 29.408209107363643 ], [ -95.901825124000155, 29.408154107459243 ], [ -95.901812123420385, 29.408099107037369 ], [ -95.901806123861988, 29.407967106739324 ], [ -95.901812123832556, 29.407907107058822 ], [ -95.901869123470476, 29.407813107384946 ], [ -95.901932123597732, 29.407736106947919 ], [ -95.90201912384785, 29.40766510698613 ], [ -95.903708123647348, 29.406852107199704 ], [ -95.90385912451552, 29.406830106695651 ], [ -95.90406012368453, 29.406825107112933 ], [ -95.904393124150104, 29.406891106681247 ], [ -95.904531123941737, 29.406896106474768 ], [ -95.904650124456978, 29.406885107258248 ], [ -95.904763124663248, 29.406852106495236 ], [ -95.904920124132261, 29.406786106629824 ], [ -95.905058124049177, 29.406698107151353 ], [ -95.90538512469314, 29.406418106528726 ], [ -95.905541124383944, 29.406314106857948 ], [ -95.90578012419013, 29.40620910672596 ], [ -95.905931124578117, 29.406165107053528 ], [ -95.906257124213155, 29.406127106926974 ], [ -95.906690124615636, 29.406034106826048 ], [ -95.906810124597456, 29.406001106750569 ], [ -95.90696612487686, 29.40597310694551 ], [ -95.90713612447135, 29.405907106885486 ], [ -95.907224124649673, 29.405852106768155 ], [ -95.907312124590646, 29.405781106754286 ], [ -95.907400125277604, 29.405638106542728 ], [ -95.90755712454181, 29.405435106749859 ], [ -95.907626124913278, 29.405330106229481 ], [ -95.907676124575573, 29.405226106238853 ], [ -95.907820125038469, 29.405006106659979 ], [ -95.90798412456995, 29.404841106303447 ], [ -95.908109125353818, 29.404737106204724 ], [ -95.908417124932754, 29.404561105958237 ], [ -95.908637125076424, 29.404506106551892 ], [ -95.908976124963701, 29.404479105957783 ], [ -95.909264125629491, 29.404435106573498 ], [ -95.909440125589839, 29.404341106091923 ], [ -95.909566125298326, 29.404187106428985 ], [ -95.909666125291196, 29.403973106260533 ], [ -95.909911125785285, 29.403303105986748 ], [ -95.909980125342443, 29.403198106087384 ], [ -95.910043125944156, 29.402962105565248 ], [ -95.910056125474469, 29.402703105469676 ], [ -95.910112125299179, 29.402561105975913 ], [ -95.910338125832624, 29.402302105394028 ], [ -95.910621125500427, 29.402038105791988 ], [ -95.910784125360976, 29.40182410557361 ], [ -95.910853125737205, 29.4016761053694 ], [ -95.910878125644871, 29.401450105482827 ], [ -95.910878125717275, 29.401324105212961 ], [ -95.910853125656203, 29.401170104979485 ], [ -95.910740125704976, 29.400956105275245 ], [ -95.910539125842632, 29.400736105076565 ], [ -95.910295125612805, 29.40043310563863 ], [ -95.910169125471427, 29.400208104904124 ], [ -95.910150124904291, 29.400032105654535 ], [ -95.910169124972924, 29.399939105212663 ], [ -95.9102321252591, 29.399851105301739 ], [ -95.910320125766319, 29.399785104830794 ], [ -95.910904125515685, 29.399472105087906 ], [ -95.911055125926637, 29.399417105041401 ], [ -95.911130126065743, 29.399345105062693 ], [ -95.911262125861157, 29.399268105260589 ], [ -95.911375125277587, 29.399131104651651 ], [ -95.911431126142361, 29.3990431047614 ], [ -95.911475125965481, 29.398939104519513 ], [ -95.911488125737293, 29.398834104688241 ], [ -95.911482125450789, 29.398351104898843 ], [ -95.911444126089265, 29.39791110494803 ], [ -95.911450126003245, 29.39776810445553 ], [ -95.911438125783334, 29.397663104902243 ], [ -95.911375125908819, 29.397378104866736 ], [ -95.911325125175736, 29.397262104275168 ], [ -95.911187125741492, 29.39704810500643 ], [ -95.910980125578476, 29.396679104429012 ], [ -95.910698125245489, 29.396251104145751 ], [ -95.910491125505175, 29.395739104142212 ], [ -95.910472124889637, 29.395608104040512 ], [ -95.910472124934088, 29.395327103830486 ], [ -95.910484124782755, 29.395239104305762 ], [ -95.910635125351561, 29.395041104469975 ], [ -95.910704125559135, 29.394970104121494 ], [ -95.910817125182163, 29.394877104026129 ], [ -95.911577125765902, 29.394470104048875 ], [ -95.91214212552066, 29.39412410419343 ], [ -95.912236125472205, 29.394036103620557 ], [ -95.91231712593553, 29.393975103919505 ], [ -95.91248112560659, 29.393816103444891 ], [ -95.912562126011792, 29.393640103445996 ], [ -95.912575125791619, 29.39353610355986 ], [ -95.912575125733852, 29.393371103646587 ], [ -95.912537125977934, 29.39311810409076 ], [ -95.912500126051853, 29.392948103727079 ], [ -95.912437125697593, 29.39273910370347 ], [ -95.912406125486967, 29.392574103554875 ], [ -95.912368125228227, 29.392189103746272 ], [ -95.912374125817479, 29.391639103336846 ], [ -95.912393125825972, 29.391513103617136 ], [ -95.912409126033864, 29.391463103786265 ], [ -95.9124251259869, 29.391414103148712 ], [ -95.912563125166372, 29.391244103133204 ], [ -95.912764126163125, 29.391139103389587 ], [ -95.912977125718385, 29.391079102923573 ], [ -95.913260125475745, 29.391013103288948 ], [ -95.913586125793643, 29.390997103090939 ], [ -95.913724125597525, 29.391024103383817 ], [ -95.913963125900821, 29.391107103409748 ], [ -95.914145126124538, 29.39112910341689 ], [ -95.914320126277985, 29.39111210344219 ], [ -95.914359126429119, 29.391095103116026 ], [ -95.914691125857331, 29.390953103088343 ], [ -95.914848125822019, 29.390854103130053 ], [ -95.915017126759452, 29.390716102768224 ], [ -95.915143126764363, 29.390667103508044 ], [ -95.915425126691204, 29.390634103112951 ], [ -95.915657126651823, 29.3906341031105 ], [ -95.916147126163239, 29.390717103524914 ], [ -95.916404127030319, 29.3907881030024 ], [ -95.91684312682105, 29.391244103111323 ], [ -95.916944127185843, 29.391327103462256 ], [ -95.917032126573531, 29.391382103027087 ], [ -95.917132126667823, 29.391426103202708 ], [ -95.917308127286773, 29.391453103463729 ], [ -95.91749612700832, 29.391409103350956 ], [ -95.917766127083681, 29.391228103619365 ], [ -95.917917127351956, 29.391107102869224 ], [ -95.918074126968449, 29.391025102728328 ], [ -95.918519126685766, 29.39084310345682 ], [ -95.918751126884104, 29.390777103045924 ], [ -95.918908127680936, 29.390750103095115 ], [ -95.919297127475971, 29.390717103215419 ], [ -95.919454127068335, 29.390679103279858 ], [ -95.919580126930626, 29.390635103099157 ], [ -95.920528127449387, 29.390041103277476 ], [ -95.920716127806827, 29.389909102374791 ], [ -95.921086127787817, 29.389816102536255 ], [ -95.9212121277927, 29.389761102438438 ], [ -95.921350127522075, 29.389678102576383 ], [ -95.921821127929121, 29.389288102215058 ], [ -95.923101128371286, 29.388085102767246 ], [ -95.92472112845536, 29.386716101806726 ], [ -95.925323128895982, 29.386227102019291 ], [ -95.925637129249537, 29.386018101741101 ], [ -95.925938128722819, 29.385897101886506 ], [ -95.926208129126366, 29.385809101375489 ], [ -95.926340128632702, 29.385804101687889 ], [ -95.926447129009219, 29.385776101688045 ], [ -95.926560128556432, 29.385732101790325 ], [ -95.926760128568802, 29.385612102029338 ], [ -95.927043128968393, 29.385463101376622 ], [ -95.927250129282783, 29.385331101951959 ], [ -95.927564129548358, 29.385260101328441 ], [ -95.927965129618812, 29.385205101530474 ], [ -95.928267129420277, 29.385238101742232 ], [ -95.928380129145339, 29.38522710187123 ], [ -95.929327129837048, 29.384897101926704 ], [ -95.931110130158345, 29.384309101389874 ], [ -95.931430129858256, 29.384117101084414 ], [ -95.931875130744643, 29.38391310127875 ], [ -95.932064130305832, 29.383765100798914 ], [ -95.932133129881919, 29.383672101073444 ], [ -95.932252130780839, 29.383556100751441 ], [ -95.932277130491428, 29.383507100730004 ], [ -95.932334129947691, 29.38322610139339 ], [ -95.932346130136963, 29.383034100561261 ], [ -95.932371130766867, 29.382924100719084 ], [ -95.932421130803718, 29.38276510081587 ], [ -95.93245313016881, 29.382699101024368 ], [ -95.932522130457954, 29.382457100555634 ], [ -95.932566130431226, 29.382352100858203 ], [ -95.932635130362328, 29.382248100686521 ], [ -95.932873130782141, 29.381979100750186 ], [ -95.933237130523977, 29.381709101007605 ], [ -95.933488130393442, 29.381539100812841 ], [ -95.933821131013616, 29.381347100271412 ], [ -95.934003130553592, 29.38127510018365 ], [ -95.934128131208112, 29.381248100581814 ], [ -95.934329131238272, 29.381237100258108 ], [ -95.934392130369119, 29.381264100952635 ], [ -95.934605131223407, 29.381391100817332 ], [ -95.934806130602894, 29.381468100467369 ], [ -95.935345131089832, 29.381517100413557 ], [ -95.93582913093195, 29.381561100752929 ], [ -95.936035131137317, 29.381599100182662 ], [ -95.936162131398859, 29.381622100836235 ], [ -95.936463131639385, 29.381715100974912 ], [ -95.936959131031202, 29.381968100965182 ], [ -95.937216131368118, 29.382089100842688 ], [ -95.937379131825892, 29.382122100425693 ], [ -95.937511131702919, 29.382127100748303 ], [ -95.937624131178367, 29.38210010057681 ], [ -95.93773113179499, 29.382056100920536 ], [ -95.937906131517337, 29.381946100899551 ], [ -95.937982131489491, 29.381924100734022 ], [ -95.938151131328496, 29.381841100867298 ], [ -95.938270131283446, 29.381825100774481 ], [ -95.938434131642794, 29.381819100973765 ], [ -95.939136131593258, 29.381968100187191 ], [ -95.939394131986859, 29.382039100240188 ], [ -95.93960113203309, 29.382144100214511 ], [ -95.939682132399042, 29.382210100591418 ], [ -95.939808131977898, 29.382380100204006 ], [ -95.939915131991498, 29.382561100335174 ], [ -95.940021132405263, 29.382693100584174 ], [ -95.940341131967642, 29.382908100687221 ], [ -95.94067413241909, 29.383089100298758 ], [ -95.940988132406446, 29.383243100592527 ], [ -95.941088132137025, 29.383281101188913 ], [ -95.941220132882563, 29.383303100405413 ], [ -95.941314132828296, 29.383298100833404 ], [ -95.941396132786167, 29.383309100440215 ], [ -95.941458132569409, 29.383303100454452 ], [ -95.941534132481721, 29.383270100791233 ], [ -95.941747132688562, 29.38308410048575 ], [ -95.941903132344265, 29.382960100955231 ], [ -95.94216813331218, 29.382748100747374 ], [ -95.942281133171221, 29.382611100263308 ], [ -95.94238713255676, 29.382391100868421 ], [ -95.942450132357223, 29.382105100256751 ], [ -95.942469132429366, 29.381869100547743 ], [ -95.942525133200704, 29.381523100656956 ], [ -95.94255713257057, 29.38124810053105 ], [ -95.942544133141652, 29.38102210003272 ], [ -95.942557132737022, 29.380583099855574 ], [ -95.942651132955945, 29.380115099684552 ], [ -95.942663133329475, 29.379967099926414 ], [ -95.942613133313031, 29.379835099838676 ], [ -95.942563132557609, 29.379775099612196 ], [ -95.942368133174611, 29.379632099950907 ], [ -95.942282132579095, 29.379593100336066 ], [ -95.942374132713809, 29.379547099873768 ], [ -95.943407133480761, 29.379125099624876 ], [ -95.944195133013991, 29.37863709947786 ], [ -95.945180132951819, 29.37802609939877 ], [ -95.945802134034977, 29.377552099087325 ], [ -95.947199133928891, 29.376453099018661 ], [ -95.948763134657952, 29.375248098843997 ], [ -95.949642134869819, 29.374614098655609 ], [ -95.949642134798978, 29.374232099041986 ], [ -95.949604134007544, 29.37408909849815 ], [ -95.949459133816035, 29.37389209811851 ], [ -95.948976133971854, 29.373545098828696 ], [ -95.948185133664339, 29.373265098230632 ], [ -95.947501133776854, 29.372919098761553 ], [ -95.947407134095045, 29.3727870988475 ], [ -95.947319133494801, 29.372606098511064 ], [ -95.947301133683553, 29.372523098379155 ], [ -95.947395133477869, 29.372331097887752 ], [ -95.947589134053814, 29.37216009798027 ], [ -95.947840134113363, 29.372100097864642 ], [ -95.948154134032919, 29.371864098579064 ], [ -95.948254133527243, 29.371748097783204 ], [ -95.948267133516111, 29.371539098094935 ], [ -95.948242133485365, 29.371413098071354 ], [ -95.948072134192785, 29.371193098017923 ], [ -95.947752133268011, 29.371160098385204 ], [ -95.947570133729641, 29.371111098375508 ], [ -95.947526134058904, 29.371067097896969 ], [ -95.947438134046592, 29.370720098238856 ], [ -95.947451133160214, 29.370572098281801 ], [ -95.947526133864613, 29.370402097753889 ], [ -95.947526133527404, 29.370242098095783 ], [ -95.947463133962444, 29.369995097841226 ], [ -95.947244133417087, 29.369687097343682 ], [ -95.946880133858485, 29.369319097502121 ], [ -95.946697132923546, 29.369193098115044 ], [ -95.946528133751926, 29.369000097960207 ], [ -95.946453133693609, 29.368874097335709 ], [ -95.946437132793292, 29.368319097392039 ], [ -95.946434132821423, 29.368209097202399 ], [ -95.946289133719858, 29.367923097526944 ], [ -95.945863133156465, 29.367527097686033 ], [ -95.945706132643764, 29.367335097482094 ], [ -95.945618132790415, 29.367176097010859 ], [ -95.945511132519925, 29.367044097648126 ], [ -95.945436133149457, 29.366972097273987 ], [ -95.945034132497597, 29.366785097027904 ], [ -95.944959132929753, 29.366719096969351 ], [ -95.944934132513154, 29.366642097415717 ], [ -95.944959132312775, 29.366461097194303 ], [ -95.945065133294477, 29.366230097250067 ], [ -95.945141133090118, 29.366038096916203 ], [ -95.945254132554368, 29.365801096627546 ], [ -95.945323132994247, 29.36562609657992 ], [ -95.945360132412532, 29.365521096915902 ], [ -95.945348133338882, 29.365400097177602 ], [ -95.945247132655453, 29.365274097318256 ], [ -95.945003132853827, 29.365032096605809 ], [ -95.944814132556886, 29.364928097331823 ], [ -95.944733132896076, 29.364774097104842 ], [ -95.944701132295336, 29.364653097074875 ], [ -95.94470813299256, 29.364416097107281 ], [ -95.944651132989904, 29.364279096367909 ], [ -95.944620132680541, 29.364169096843025 ], [ -95.944601132602571, 29.363999096960185 ], [ -95.944607132200247, 29.36382809696974 ], [ -95.944676132803679, 29.363680096328508 ], [ -95.944764132562071, 29.363548096189071 ], [ -95.944820132887401, 29.363433096395841 ], [ -95.944839132476289, 29.363240096567626 ], [ -95.944814132649768, 29.363020096922632 ], [ -95.944682132615625, 29.362877096504015 ], [ -95.94451313219561, 29.362768096339149 ], [ -95.944419132503384, 29.362663096540075 ], [ -95.944362132229003, 29.362493096771583 ], [ -95.94434313261857, 29.362317096192545 ], [ -95.944312132111719, 29.361668096030765 ], [ -95.944287132520429, 29.361443096598137 ], [ -95.944249132343813, 29.36133909612639 ], [ -95.944142132195893, 29.361196096054851 ], [ -95.943985132839757, 29.361157096276134 ], [ -95.943866132503516, 29.361157096602383 ], [ -95.943653131794548, 29.36122909633643 ], [ -95.943427132338059, 29.361322096259524 ], [ -95.943251132500521, 29.361410095849344 ], [ -95.942881132425981, 29.361504096146017 ], [ -95.942655132015403, 29.361383096437187 ], [ -95.94257413181127, 29.361284096657471 ], [ -95.942486131611645, 29.361124096336614 ], [ -95.942461132044627, 29.360899096448417 ], [ -95.942260131503943, 29.360415096388635 ], [ -95.942147131686127, 29.360102095947834 ], [ -95.942053131991116, 29.36000909555375 ], [ -95.941858131523489, 29.359728095919905 ], [ -95.941563131919295, 29.359563095565626 ], [ -95.941419131534914, 29.359558096162036 ], [ -95.941218131413379, 29.359602096044668 ], [ -95.940942131299494, 29.35973409620243 ], [ -95.940836131479657, 29.359871096197381 ], [ -95.940779131704957, 29.360025096292645 ], [ -95.940754131554812, 29.360229095690521 ], [ -95.940704131304585, 29.360427096415474 ], [ -95.940503131878742, 29.360723095828842 ], [ -95.94044013120201, 29.360872095815932 ], [ -95.940284131186871, 29.360971096194568 ], [ -95.94018313185947, 29.360998096152354 ], [ -95.940070130874943, 29.360905096526949 ], [ -95.93993213084994, 29.360751095985758 ], [ -95.939769131253954, 29.360591096461587 ], [ -95.939568131064789, 29.36043209653446 ], [ -95.939399130644205, 29.360267096518104 ], [ -95.939104131352352, 29.360058096098552 ], [ -95.938934131211951, 29.360020096429718 ], [ -95.938175130375697, 29.359547096081659 ], [ -95.937956130415017, 29.359366096325164 ], [ -95.937849131191456, 29.359256096151764 ], [ -95.937642130757553, 29.359146095960018 ], [ -95.937566131103708, 29.35905309638304 ], [ -95.937466130513158, 29.358959095643698 ], [ -95.937228130618465, 29.358904095928018 ], [ -95.936958130704014, 29.358871095715397 ], [ -95.936650130671183, 29.358789095971897 ], [ -95.93655612985917, 29.358695095929814 ], [ -95.936531130423262, 29.358509095872211 ], [ -95.936531130468339, 29.358360095765224 ], [ -95.936682130513162, 29.358124095336425 ], [ -95.936895130231775, 29.357915096106094 ], [ -95.937039130133016, 29.357882095595301 ], [ -95.937297130013206, 29.357970095928632 ], [ -95.9374411310299, 29.358091095616583 ], [ -95.937560130954026, 29.358212095563324 ], [ -95.937686131038063, 29.358289096202487 ], [ -95.937868130363356, 29.358333095452075 ], [ -95.938125130880096, 29.358228095487028 ], [ -95.938432130382168, 29.358030095927699 ], [ -95.938548130857768, 29.357921095374042 ], [ -95.938771130908137, 29.357711095962092 ], [ -95.938859130661569, 29.357288095636438 ], [ -95.938915130587645, 29.357079095627213 ], [ -95.938896130659344, 29.356975095005556 ], [ -95.938595130710468, 29.356783095346891 ], [ -95.938501131172728, 29.356673095016049 ], [ -95.938463130767175, 29.356519095583856 ], [ -95.938489130980471, 29.356310095365778 ], [ -95.938632130453755, 29.356170095265114 ], [ -95.938658130971461, 29.356145095128003 ], [ -95.938871130354727, 29.356008094900663 ], [ -95.939160131012827, 29.355903094971897 ], [ -95.939329131347222, 29.355612095321348 ], [ -95.939467130575707, 29.35544109472735 ], [ -95.939555130998528, 29.355255094991357 ], [ -95.939611130905263, 29.354776094698444 ], [ -95.939605131026127, 29.354611095275665 ], [ -95.939624130511561, 29.354386095122962 ], [ -95.939630130521763, 29.354166095264951 ], [ -95.93962413067473, 29.354001094925373 ], [ -95.939586130416487, 29.353732094668 ], [ -95.939523131195372, 29.353507094350093 ], [ -95.939480131354102, 29.353259094393703 ], [ -95.939461131321437, 29.352853094900997 ], [ -95.939517130557647, 29.352539094478868 ], [ -95.939730130675201, 29.352138094458784 ], [ -95.939793131402936, 29.352056094449196 ], [ -95.939843130790649, 29.351962094725323 ], [ -95.939887130575499, 29.351830094277375 ], [ -95.94002513118707, 29.351698094523176 ], [ -95.940107131393844, 29.351693093902462 ], [ -95.940238131103612, 29.351726094091283 ], [ -95.940383131124236, 29.351836094553548 ], [ -95.940916130994495, 29.352308093988828 ], [ -95.941161131179456, 29.352462094816211 ], [ -95.941537131786504, 29.352523094560588 ], [ -95.941751131700656, 29.352534094767151 ], [ -95.941945131244466, 29.352528094034131 ], [ -95.942234131723652, 29.352446094577282 ], [ -95.942535131206355, 29.352253094354147 ], [ -95.942811131840983, 29.352033093913214 ], [ -95.943012132119975, 29.351852094037948 ], [ -95.943231131498521, 29.351692093985381 ], [ -95.943651131846451, 29.351560094510109 ], [ -95.943840132118169, 29.351522094230745 ], [ -95.943959131559694, 29.351522094163425 ], [ -95.944109132334574, 29.351549094454011 ], [ -95.944329132118355, 29.351610094098024 ], [ -95.944467132504755, 29.351681094542464 ], [ -95.945082132019792, 29.352286094078352 ], [ -95.945289132605069, 29.352632094584187 ], [ -95.945496132623759, 29.352841094193117 ], [ -95.945659132396301, 29.352962094736402 ], [ -95.945847132957766, 29.352989094319241 ], [ -95.94599213267891, 29.352896094764581 ], [ -95.946105132844565, 29.352654094048301 ], [ -95.946111132419077, 29.35248409386007 ], [ -95.946299132982119, 29.351560093712031 ], [ -95.946456132840268, 29.350598094026655 ], [ -95.946619132130223, 29.350148093513312 ], [ -95.946763132137221, 29.349801093862698 ], [ -95.947008132307801, 29.349658094067578 ], [ -95.947202133136273, 29.349653094079422 ], [ -95.947365132579961, 29.349730093561462 ], [ -95.947553132781422, 29.349900093807953 ], [ -95.948011133326048, 29.350257093871036 ], [ -95.948219133165509, 29.350488093672503 ], [ -95.948369132642611, 29.350906093943752 ], [ -95.948401132891789, 29.35109309377388 ], [ -95.948451133326898, 29.351258094024683 ], [ -95.948564132663975, 29.351346094340968 ], [ -95.948708132773675, 29.351417093934003 ], [ -95.948877133359147, 29.351461094414354 ], [ -95.949103133237401, 29.351472093641242 ], [ -95.949285133267608, 29.351411093927993 ], [ -95.949423133521478, 29.351334093948868 ], [ -95.949649133337886, 29.351131093916965 ], [ -95.949774133547592, 29.350928094119894 ], [ -95.949843133318481, 29.350719093667443 ], [ -95.949875133790172, 29.350510093348031 ], [ -95.949862133550454, 29.349993093717089 ], [ -95.94979913297982, 29.349740093887508 ], [ -95.949755132946052, 29.349224093422876 ], [ -95.949749132825247, 29.348960093581191 ], [ -95.949788133734998, 29.348794093352716 ], [ -95.949906133385994, 29.348531093376689 ], [ -95.950000133105263, 29.348350092964999 ], [ -95.950119133439443, 29.348179093493798 ], [ -95.950263133816179, 29.348042092826976 ], [ -95.950545133767974, 29.347915093516406 ], [ -95.950715133179727, 29.347860092781112 ], [ -95.950978133505245, 29.34781609297476 ], [ -95.951141133606967, 29.347811093052744 ], [ -95.951399133932, 29.347838092853348 ], [ -95.951599133742633, 29.347899093127118 ], [ -95.951794133774399, 29.347992093182008 ], [ -95.952089133519209, 29.348108092799539 ], [ -95.952246134052132, 29.348113093618487 ], [ -95.952591133696913, 29.348047093472793 ], [ -95.952647134231327, 29.347789093116081 ], [ -95.952641133680586, 29.347706092973674 ], [ -95.952609133999161, 29.347591093434342 ], [ -95.952383134194591, 29.347360092884166 ], [ -95.952283133848809, 29.347201092892877 ], [ -95.952214133814209, 29.347069093180139 ], [ -95.952176133933634, 29.346898093382389 ], [ -95.952164134001478, 29.346569092651531 ], [ -95.952201133852597, 29.346167092377204 ], [ -95.952427133860425, 29.345881092935958 ], [ -95.952879133945984, 29.345612092291251 ], [ -95.953161134113657, 29.34550809269231 ], [ -95.953286134374409, 29.345370092766807 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1550, "Tract": "48157674701", "Area_SqMi": 1.7918603503588777, "total_2009": 651, "total_2010": 886, "total_2011": 1269, "total_2012": 1319, "total_2013": 1174, "total_2014": 1472, "total_2015": 1678, "total_2016": 1865, "total_2017": 1941, "total_2018": 2004, "total_2019": 2003, "total_2020": 1982, "age1": 720, "age2": 994, "age3": 317, "earn1": 511, "earn2": 768, "earn3": 752, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 4, "naics_s05": 0, "naics_s06": 10, "naics_s07": 408, "naics_s08": 57, "naics_s09": 0, "naics_s10": 33, "naics_s11": 24, "naics_s12": 44, "naics_s13": 0, "naics_s14": 181, "naics_s15": 38, "naics_s16": 601, "naics_s17": 19, "naics_s18": 575, "naics_s19": 36, "naics_s20": 1, "race1": 1243, "race2": 437, "race3": 18, "race4": 289, "race5": 1, "race6": 43, "ethnicity1": 1399, "ethnicity2": 632, "edu1": 254, "edu2": 345, "edu3": 385, "edu4": 327, "Shape_Length": 29194.147340436153, "Shape_Area": 49953999.768365823, "total_2021": 1997, "total_2022": 2031 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.697909078448134, 29.566153145843373 ], [ -95.697907078173628, 29.565735146473038 ], [ -95.697904078810808, 29.565174145826923 ], [ -95.697901078428075, 29.564748145983522 ], [ -95.697901078786344, 29.564636146056515 ], [ -95.697900078225828, 29.564484145483611 ], [ -95.697899078605118, 29.564263145647221 ], [ -95.697899078539464, 29.564194145460426 ], [ -95.697902078813826, 29.564132146179841 ], [ -95.6979070789926, 29.564039145606113 ], [ -95.697646078608756, 29.564034146215395 ], [ -95.696248077752216, 29.563991145643786 ], [ -95.695940078402856, 29.563965145560722 ], [ -95.695607078298536, 29.563937146018905 ], [ -95.6953490773531, 29.563907145521618 ], [ -95.695060077817089, 29.563866146204397 ], [ -95.694647077159956, 29.563808145815823 ], [ -95.69421907758111, 29.563733145923614 ], [ -95.691120076498891, 29.563299145775638 ], [ -95.691031077085682, 29.56328514629061 ], [ -95.690838076882301, 29.563256145911584 ], [ -95.690455076577706, 29.563205146295193 ], [ -95.68972507678285, 29.562998145501211 ], [ -95.689608076340249, 29.562948146195293 ], [ -95.689658076826007, 29.562861145583181 ], [ -95.689702076183082, 29.562783145548295 ], [ -95.689843076406831, 29.562534146089391 ], [ -95.689938076316466, 29.562368145539356 ], [ -95.690202075989617, 29.561903145936384 ], [ -95.690212076009743, 29.561882145328035 ], [ -95.690364076697449, 29.561594145608961 ], [ -95.689726076463586, 29.561725145699011 ], [ -95.689234075967647, 29.561826145699779 ], [ -95.689063075670532, 29.561861145469198 ], [ -95.688169075700841, 29.56204514586905 ], [ -95.685967074898159, 29.562498145846977 ], [ -95.681016074131804, 29.563460146524196 ], [ -95.679223074031839, 29.563841146400915 ], [ -95.676409073466658, 29.564446146400318 ], [ -95.674802072187887, 29.564838146698602 ], [ -95.674124071989723, 29.565025146407365 ], [ -95.6734300720791, 29.56528814700145 ], [ -95.672714072540941, 29.565662146927743 ], [ -95.672702072546542, 29.565670147264537 ], [ -95.670347071300867, 29.566989147359362 ], [ -95.669707070977452, 29.567391147021848 ], [ -95.668902070934365, 29.567903147951448 ], [ -95.668338071316072, 29.568262147607339 ], [ -95.668418070672359, 29.568447147359148 ], [ -95.668426071233341, 29.568506147420084 ], [ -95.668407070982269, 29.568639147697819 ], [ -95.668387071093534, 29.568737147523215 ], [ -95.668384071133588, 29.568787147722915 ], [ -95.668378070892672, 29.568928147885305 ], [ -95.66837007143522, 29.568999148057539 ], [ -95.668347070744829, 29.569106148276017 ], [ -95.668326071153615, 29.569176147622798 ], [ -95.668169071117106, 29.569548147825845 ], [ -95.667948071295854, 29.570392148455173 ], [ -95.667712071383747, 29.571270148400689 ], [ -95.667688071590376, 29.571376148737262 ], [ -95.667664070741282, 29.57155514832106 ], [ -95.667660071190568, 29.571627148017392 ], [ -95.667663070626872, 29.571735148811399 ], [ -95.667678070919322, 29.57187914804765 ], [ -95.667696071103393, 29.571986148754188 ], [ -95.66772207127525, 29.572092148257791 ], [ -95.667756070965353, 29.572196148220947 ], [ -95.667812071333884, 29.572332148807323 ], [ -95.667710071316279, 29.572672148891424 ], [ -95.667633071212464, 29.572757148440662 ], [ -95.667514071137916, 29.572904148235327 ], [ -95.667448070668257, 29.572996149126688 ], [ -95.667390070834315, 29.573091148424542 ], [ -95.667374070957678, 29.573162148636577 ], [ -95.667343071304046, 29.573341148840715 ], [ -95.667312071202431, 29.573664149079203 ], [ -95.667312071375548, 29.573700149097093 ], [ -95.667325071139118, 29.573808149003316 ], [ -95.667345071439897, 29.573915149000712 ], [ -95.667372070836237, 29.574020148924046 ], [ -95.667395071306402, 29.574090148606178 ], [ -95.667426071220405, 29.574167148993492 ], [ -95.667436071424376, 29.574192148560048 ], [ -95.667484071264326, 29.574291149216116 ], [ -95.667540070896138, 29.574388148529888 ], [ -95.667552071644963, 29.574421149288245 ], [ -95.667537070866615, 29.57467314926701 ], [ -95.667536071488172, 29.574782148873702 ], [ -95.667552071009567, 29.574979148871936 ], [ -95.66755907157328, 29.575070148756566 ], [ -95.667569071334242, 29.575141149547463 ], [ -95.667595071312064, 29.575429149219048 ], [ -95.667635071353843, 29.575752149113921 ], [ -95.667702071303879, 29.576108149685258 ], [ -95.66772807106382, 29.576213148928542 ], [ -95.667797071787234, 29.576421149153873 ], [ -95.667816071502429, 29.576453148991806 ], [ -95.66799707121416, 29.576694149681856 ], [ -95.668077071541362, 29.576821149145101 ], [ -95.668111071804617, 29.576887149546586 ], [ -95.668155070991602, 29.576988149736884 ], [ -95.668201071399636, 29.577126149313017 ], [ -95.668295071170732, 29.57728714954829 ], [ -95.668363071207466, 29.577377149466663 ], [ -95.668579071550653, 29.577641149253186 ], [ -95.668655072096783, 29.577727149190441 ], [ -95.668764071981101, 29.57783514956704 ], [ -95.668794071748394, 29.577860149731478 ], [ -95.668859071734857, 29.577904149261432 ], [ -95.668921071706293, 29.577952149462323 ], [ -95.669039071403887, 29.578053149904836 ], [ -95.66912307133579, 29.578132149309145 ], [ -95.669381072324072, 29.5783121496221 ], [ -95.669454072187378, 29.578346150028185 ], [ -95.66970207199337, 29.578476149899945 ], [ -95.670291072007657, 29.578808149776833 ], [ -95.670363071808993, 29.578844149390751 ], [ -95.670916072409355, 29.57908715000627 ], [ -95.671293072040896, 29.579234149714964 ], [ -95.671478072137432, 29.579313149853938 ], [ -95.671631072882221, 29.579368150256926 ], [ -95.671985072489306, 29.579468150237329 ], [ -95.672702072471864, 29.579639150121249 ], [ -95.672982072484785, 29.579701149654799 ], [ -95.673301072952469, 29.579776149832231 ], [ -95.674411073508338, 29.580055149935106 ], [ -95.674997073030724, 29.580230150093985 ], [ -95.67511207390595, 29.580272149803271 ], [ -95.675581073166754, 29.580499150044382 ], [ -95.67583707366758, 29.58061615037462 ], [ -95.676082073458886, 29.580750149698805 ], [ -95.676249074028433, 29.580856150381159 ], [ -95.676781074033485, 29.581256150450365 ], [ -95.676898073617537, 29.581358150465437 ], [ -95.677099074159685, 29.581485149676457 ], [ -95.677162073919476, 29.581530150483495 ], [ -95.677281074440927, 29.581630149958052 ], [ -95.677325074328976, 29.581671150307571 ], [ -95.67736607382308, 29.581709149763658 ], [ -95.677499074300442, 29.581795150278897 ], [ -95.677969074136215, 29.582147150184884 ], [ -95.678155074454011, 29.582279150380469 ], [ -95.678277074252506, 29.582365150386018 ], [ -95.678674074356024, 29.582647150590809 ], [ -95.678811073956538, 29.582728150031663 ], [ -95.678883074184, 29.582764150312066 ], [ -95.679882074708175, 29.583196150756187 ], [ -95.68022607526764, 29.583317150745049 ], [ -95.680305074699916, 29.583338150632461 ], [ -95.680426075074607, 29.583364149953713 ], [ -95.680547074715278, 29.583385150349187 ], [ -95.681037074778246, 29.583451150439458 ], [ -95.68111907524785, 29.583459150527293 ], [ -95.681408074741171, 29.583460150272629 ], [ -95.681779075477849, 29.5834471500646 ], [ -95.681985074807486, 29.583433150322293 ], [ -95.682678075339268, 29.583337150586008 ], [ -95.68279907538593, 29.583314149991317 ], [ -95.682918075511481, 29.583283150186329 ], [ -95.683218075905359, 29.583164149922609 ], [ -95.683364075867502, 29.58309615043688 ], [ -95.683745075624643, 29.582879149889333 ], [ -95.684294075725518, 29.582390149757519 ], [ -95.684536076085791, 29.582194150229192 ], [ -95.685072076185065, 29.581694150230618 ], [ -95.68549907580109, 29.581207149500294 ], [ -95.685723076214614, 29.580904149416394 ], [ -95.686005076507627, 29.580543149246378 ], [ -95.686048076588932, 29.580442150031711 ], [ -95.686102076197116, 29.580344149273376 ], [ -95.686294076411428, 29.58006614915956 ], [ -95.686562076718815, 29.579703149201723 ], [ -95.686908076162482, 29.579211148975947 ], [ -95.687309076677948, 29.578708149378983 ], [ -95.687422076146035, 29.578557148803522 ], [ -95.687626075988788, 29.578330149545792 ], [ -95.688002076992277, 29.577947148893919 ], [ -95.688113076655853, 29.577840148638796 ], [ -95.688805076841604, 29.577220148897304 ], [ -95.689166076478571, 29.576913148387696 ], [ -95.689873077148931, 29.576306148795588 ], [ -95.690143076766375, 29.576083148576181 ], [ -95.690259076653945, 29.575980148958465 ], [ -95.690278077418654, 29.57595014887643 ], [ -95.690310076656388, 29.575845148243694 ], [ -95.690337076630414, 29.57577714837797 ], [ -95.6903700773059, 29.575711148293365 ], [ -95.690466076614911, 29.575551148647989 ], [ -95.690513077613531, 29.575492148267305 ], [ -95.690593076855237, 29.575409148186687 ], [ -95.690652077265639, 29.57535914876421 ], [ -95.690715076819856, 29.575312148428544 ], [ -95.6909120771288, 29.575181148731129 ], [ -95.691091077311512, 29.575091147940093 ], [ -95.691203077466866, 29.575046148494256 ], [ -95.691233076842323, 29.575022148487061 ], [ -95.691446077113639, 29.574802148659785 ], [ -95.691904077738656, 29.574290148286259 ], [ -95.69248207713251, 29.57358714753369 ], [ -95.692833077684242, 29.573141147973438 ], [ -95.69299007766287, 29.57288714797405 ], [ -95.693038077182479, 29.572829148077385 ], [ -95.693174077472804, 29.572747147493345 ], [ -95.693269077313602, 29.572677147312955 ], [ -95.693523077922947, 29.572441147788979 ], [ -95.693968077654105, 29.572065147781036 ], [ -95.694090077899844, 29.571967147645939 ], [ -95.69415607817713, 29.571924147279621 ], [ -95.694294077774217, 29.571844147408289 ], [ -95.694365077589936, 29.571807147565334 ], [ -95.694477077806866, 29.571762147277074 ], [ -95.694633078319342, 29.571714147160979 ], [ -95.694667078155746, 29.571696147604207 ], [ -95.694789078293681, 29.571598147751065 ], [ -95.69486307813871, 29.571568147705364 ], [ -95.695018077896947, 29.571516147215618 ], [ -95.695176078644764, 29.571475147097242 ], [ -95.695297077968391, 29.571452147271884 ], [ -95.695455077770291, 29.571410147588438 ], [ -95.695774077834969, 29.571335147048778 ], [ -95.695856078410614, 29.57133114774043 ], [ -95.696021078093708, 29.571336147209212 ], [ -95.696100078732599, 29.571356147815138 ], [ -95.696406078498981, 29.571465147154839 ], [ -95.696515078115752, 29.571515147382588 ], [ -95.696656078005063, 29.571591147548581 ], [ -95.696721078306481, 29.571635147855115 ], [ -95.697217078280147, 29.571999147242803 ], [ -95.697225078729119, 29.571951147739966 ], [ -95.697265079152345, 29.571605147491592 ], [ -95.697304078741837, 29.571259147771123 ], [ -95.697573078665584, 29.571485147312377 ], [ -95.69760407894195, 29.571345146912257 ], [ -95.697611078903023, 29.571272147690497 ], [ -95.697640078254196, 29.570908147043653 ], [ -95.697692078367496, 29.570073147272474 ], [ -95.697741078390564, 29.569275147192037 ], [ -95.697832079107414, 29.567709146178068 ], [ -95.697860078743219, 29.56719114634344 ], [ -95.697895079085285, 29.566536146716924 ], [ -95.697909078448134, 29.566153145843373 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1551, "Tract": "48157675503", "Area_SqMi": 93.702284739764806, "total_2009": 326, "total_2010": 207, "total_2011": 643, "total_2012": 161, "total_2013": 275, "total_2014": 310, "total_2015": 398, "total_2016": 707, "total_2017": 830, "total_2018": 518, "total_2019": 628, "total_2020": 968, "age1": 113, "age2": 578, "age3": 315, "earn1": 356, "earn2": 149, "earn3": 501, "naics_s01": 0, "naics_s02": 0, "naics_s03": 325, "naics_s04": 48, "naics_s05": 0, "naics_s06": 2, "naics_s07": 3, "naics_s08": 41, "naics_s09": 0, "naics_s10": 1, "naics_s11": 10, "naics_s12": 36, "naics_s13": 81, "naics_s14": 8, "naics_s15": 0, "naics_s16": 425, "naics_s17": 0, "naics_s18": 17, "naics_s19": 4, "naics_s20": 5, "race1": 557, "race2": 359, "race3": 6, "race4": 68, "race5": 2, "race6": 14, "ethnicity1": 732, "ethnicity2": 274, "edu1": 184, "edu2": 212, "edu3": 268, "edu4": 229, "Shape_Length": 318005.53172076296, "Shape_Area": 2612259325.4815187, "total_2021": 1006, "total_2022": 1006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.771650093354424, 29.469145123679827 ], [ -95.771707092904748, 29.469093124312888 ], [ -95.771587093332357, 29.468982124128409 ], [ -95.771368093297482, 29.468819123558454 ], [ -95.771301093407629, 29.468778124281958 ], [ -95.771197092540547, 29.468722123511832 ], [ -95.771050092977234, 29.468657124081052 ], [ -95.770935092701492, 29.468619123963006 ], [ -95.770814092715085, 29.468597124223781 ], [ -95.770610092753685, 29.468574123851774 ], [ -95.770487093004519, 29.468565124012496 ], [ -95.769998092683991, 29.46854912354754 ], [ -95.769835092273667, 29.46853712427351 ], [ -95.769672092594845, 29.46851912407978 ], [ -95.769590092755877, 29.468517123511567 ], [ -95.769427093077667, 29.468504123632187 ], [ -95.769264092821814, 29.468523123866007 ], [ -95.769106092762286, 29.468559124145873 ], [ -95.768952092754887, 29.468608124184023 ], [ -95.768724092083261, 29.468692124177789 ], [ -95.768646092668263, 29.468712124100811 ], [ -95.768564092802421, 29.468713124177938 ], [ -95.768483091874018, 29.468702124320426 ], [ -95.768443091871831, 29.468693124311685 ], [ -95.768370091990278, 29.468660123827021 ], [ -95.768277092353173, 29.468590124234154 ], [ -95.768252092319017, 29.468562123575172 ], [ -95.768188092110762, 29.468470123977617 ], [ -95.768161091930125, 29.468402124145577 ], [ -95.768139092450525, 29.468188123450314 ], [ -95.768155092638565, 29.468081123572595 ], [ -95.76821309224421, 29.467834123976267 ], [ -95.768239092712903, 29.467513123818204 ], [ -95.768241092312977, 29.467369123710878 ], [ -95.768246092084482, 29.467298123947291 ], [ -95.768244091810089, 29.467226123537319 ], [ -95.768157092503245, 29.466803123312584 ], [ -95.768111092486521, 29.466665123670918 ], [ -95.768061092593683, 29.466567123367494 ], [ -95.768000091921337, 29.466474123832491 ], [ -95.76787009195516, 29.466331123342759 ], [ -95.767838092164894, 29.466309123687392 ], [ -95.767764091960402, 29.466277123107101 ], [ -95.767688091597662, 29.466250123458131 ], [ -95.76760909237619, 29.466230123389785 ], [ -95.76736709224987, 29.46618912337054 ], [ -95.766919091976447, 29.466156123651999 ], [ -95.766714091413078, 29.46615112318667 ], [ -95.766590091254685, 29.466156123382941 ], [ -95.766470091574064, 29.466176123755961 ], [ -95.766395091315204, 29.466205123828864 ], [ -95.766361091980741, 29.466225123960065 ], [ -95.76627409171391, 29.466302123832595 ], [ -95.76622009115988, 29.466356123366836 ], [ -95.766126091367056, 29.466473123886182 ], [ -95.766075091572418, 29.466528123906958 ], [ -95.766055091617687, 29.46656012400102 ], [ -95.765975091931836, 29.466641123930941 ], [ -95.765911091263362, 29.466685123763728 ], [ -95.765841091962002, 29.466722123722967 ], [ -95.765803091096288, 29.466736123596181 ], [ -95.765724091197299, 29.466751124039241 ], [ -95.765683091893038, 29.466754123946323 ], [ -95.765601091039315, 29.466751123452919 ], [ -95.765561091401764, 29.466746123962235 ], [ -95.765444091423689, 29.466712123445667 ], [ -95.765374091942164, 29.46667512389023 ], [ -95.765315091323117, 29.466624123460942 ], [ -95.765252091713151, 29.466533123210279 ], [ -95.765240091213499, 29.466498123483351 ], [ -95.765209091390687, 29.466433123994442 ], [ -95.765169091118437, 29.466294123941459 ], [ -95.765123091809286, 29.466083123111073 ], [ -95.765113090856246, 29.466012123970362 ], [ -95.765091090980548, 29.465907123437923 ], [ -95.765046090852096, 29.465769123348359 ], [ -95.76503309150587, 29.465698123809254 ], [ -95.764998090941504, 29.465558123648464 ], [ -95.764959090822188, 29.46527512343949 ], [ -95.764933091745249, 29.465134123535098 ], [ -95.764894090819936, 29.464995123170088 ], [ -95.764893091516612, 29.464958123242063 ], [ -95.76486209083987, 29.464906123433138 ], [ -95.764779091007313, 29.464741123121389 ], [ -95.764758090729472, 29.464710123441993 ], [ -95.764731090852806, 29.46468312340232 ], [ -95.764686090937303, 29.464624123076309 ], [ -95.764634091595141, 29.464568123310208 ], [ -95.764498090978861, 29.464488123593668 ], [ -95.764384091595431, 29.46444612332154 ], [ -95.764267090804964, 29.464413123597208 ], [ -95.764193091315832, 29.464382122915485 ], [ -95.764153090667747, 29.46438912355044 ], [ -95.764112090887537, 29.46439112281854 ], [ -95.76398909141686, 29.464388123029295 ], [ -95.763866090603642, 29.464393123192377 ], [ -95.763703090851436, 29.464413122980954 ], [ -95.763583090843667, 29.464434123557627 ], [ -95.763424091286311, 29.46447012352213 ], [ -95.763272090718885, 29.464523123482454 ], [ -95.76320209121954, 29.464561123085023 ], [ -95.763125090958411, 29.464644122962905 ], [ -95.76305209054965, 29.46473012349681 ], [ -95.762971090818709, 29.464855123722565 ], [ -95.762960090763301, 29.464890123363542 ], [ -95.762936091206939, 29.465032123834309 ], [ -95.762936091004335, 29.465068123823592 ], [ -95.76295309036523, 29.465174123810037 ], [ -95.762965090958147, 29.465209123776091 ], [ -95.763005090647539, 29.465271123074064 ], [ -95.763130090993087, 29.465413123714409 ], [ -95.763262091272068, 29.465552123731122 ], [ -95.763292090541796, 29.46557612323905 ], [ -95.763346091051972, 29.465630123910056 ], [ -95.763430090945292, 29.465753123339429 ], [ -95.763467090868545, 29.465855123411771 ], [ -95.763475090977565, 29.465891123121491 ], [ -95.763472091054169, 29.465998123391376 ], [ -95.763462090523959, 29.466033123808547 ], [ -95.763390091342018, 29.466120123626098 ], [ -95.763335090491552, 29.466173123851142 ], [ -95.763303090595954, 29.466196123286842 ], [ -95.763232090785095, 29.46623212371199 ], [ -95.763034091151823, 29.466280123225879 ], [ -95.762911090444618, 29.466277123372468 ], [ -95.762791090445717, 29.466253123980877 ], [ -95.762681090903556, 29.46620512368478 ], [ -95.762574090694969, 29.466153123259087 ], [ -95.762476090697291, 29.466087123348384 ], [ -95.762356090477311, 29.465990123442054 ], [ -95.762239090307972, 29.465841123717137 ], [ -95.76215109032367, 29.465720123404193 ], [ -95.761985090507892, 29.465514123929914 ], [ -95.761854090804079, 29.465332123412551 ], [ -95.761776090139023, 29.465206123531228 ], [ -95.761695090143022, 29.465042123759186 ], [ -95.761669090524535, 29.46497412322713 ], [ -95.761665090639838, 29.464794123734045 ], [ -95.761671090807525, 29.464614123801876 ], [ -95.761669090440208, 29.464578123149554 ], [ -95.76165609049599, 29.464507123190963 ], [ -95.761628090311532, 29.464402123660808 ], [ -95.76159409082895, 29.464337123644622 ], [ -95.761569090192424, 29.464308123308385 ], [ -95.761539090347469, 29.464283123249452 ], [ -95.761503090342615, 29.464267123299528 ], [ -95.761464090100475, 29.464255123330179 ], [ -95.761383089910026, 29.464243123461522 ], [ -95.761301090271132, 29.464247122991456 ], [ -95.761221090394955, 29.464260123336942 ], [ -95.76118009055206, 29.464262123509513 ], [ -95.761022090134546, 29.464299123314362 ], [ -95.760987090551325, 29.464318122995255 ], [ -95.760855089737063, 29.464403123487259 ], [ -95.760761090204497, 29.464473123500532 ], [ -95.760658090356273, 29.464531123067079 ], [ -95.760281089716599, 29.464675123193786 ], [ -95.760209089733877, 29.464709123696057 ], [ -95.760171089818797, 29.464723123802141 ], [ -95.759994090384836, 29.464812123190065 ], [ -95.759738089468087, 29.46492412382625 ], [ -95.759667089985754, 29.464959123159776 ], [ -95.759567089692041, 29.465021123849159 ], [ -95.759472090245552, 29.465091123102845 ], [ -95.759390089854989, 29.465170123690793 ], [ -95.759371089605352, 29.465202123615725 ], [ -95.759313089736551, 29.465337123913908 ], [ -95.75930208940909, 29.465372123275582 ], [ -95.75928909032497, 29.465442123697944 ], [ -95.75930009035406, 29.465549123264765 ], [ -95.759325090258002, 29.465655123778404 ], [ -95.759356090022095, 29.465760123455055 ], [ -95.759376089454193, 29.465866123621343 ], [ -95.759386090115129, 29.4659731233013 ], [ -95.7593860897627, 29.46611812348927 ], [ -95.759365090065259, 29.46622412394456 ], [ -95.759312089511312, 29.466360123755212 ], [ -95.759241090290146, 29.466509123690148 ], [ -95.759177089915141, 29.466680123713878 ], [ -95.759134089609347, 29.466780124094807 ], [ -95.759115090011491, 29.466812123998626 ], [ -95.759067089455058, 29.466948124039284 ], [ -95.759050090160656, 29.466981123837659 ], [ -95.759007089385889, 29.46700812401285 ], [ -95.758933090074947, 29.467041123981911 ], [ -95.758738090056838, 29.467095123933177 ], [ -95.758615090005478, 29.467101124003452 ], [ -95.758533089358409, 29.467096124344401 ], [ -95.758413089178802, 29.46707512410514 ], [ -95.758376089454799, 29.467060123575912 ], [ -95.758308090022553, 29.467019124057256 ], [ -95.758216089511293, 29.466948124203427 ], [ -95.758103089081331, 29.466845124316762 ], [ -95.758057089088226, 29.466785123498141 ], [ -95.758020089711522, 29.46672112391898 ], [ -95.757991089708781, 29.466654123984128 ], [ -95.757971089608176, 29.466584123605308 ], [ -95.757948089124795, 29.466479123630776 ], [ -95.757938090018555, 29.466408123883621 ], [ -95.757927089767094, 29.466374123464195 ], [ -95.757908089063932, 29.466232123794335 ], [ -95.757891089370119, 29.466161123863188 ], [ -95.757878089117838, 29.466127123648601 ], [ -95.757841089344453, 29.466064124119953 ], [ -95.757786089857902, 29.466010124001855 ], [ -95.757752089712966, 29.465990124134212 ], [ -95.757645088998672, 29.465938124194814 ], [ -95.757568089663067, 29.465914123739193 ], [ -95.757488089723012, 29.465897123513351 ], [ -95.757447089753938, 29.465894123728244 ], [ -95.757242088856032, 29.465897124154552 ], [ -95.757161089317691, 29.465905123391643 ], [ -95.757080089337251, 29.465919124230425 ], [ -95.756965089052684, 29.465956124063236 ], [ -95.756807089024136, 29.465995123748961 ], [ -95.756651089520901, 29.466040123829448 ], [ -95.756273089054432, 29.466176123702585 ], [ -95.756054088720362, 29.466272123685872 ], [ -95.75598008860436, 29.466300124089887 ], [ -95.75594508940506, 29.466319124297055 ], [ -95.755869089206556, 29.466347123918812 ], [ -95.755712088690316, 29.46639012363854 ], [ -95.75567208868155, 29.466397123586329 ], [ -95.755631088585005, 29.466398123751539 ], [ -95.755551088793041, 29.46638212430474 ], [ -95.755441088955095, 29.466333124156332 ], [ -95.755379089191891, 29.466288123866743 ], [ -95.755328089107408, 29.466231123773198 ], [ -95.755180088819102, 29.466017123799517 ], [ -95.75512808904675, 29.465919123927229 ], [ -95.75508308844492, 29.465819124066631 ], [ -95.755048088337446, 29.46571612387714 ], [ -95.755030089042137, 29.465609123561229 ], [ -95.755045088517605, 29.46546612398382 ], [ -95.75506408878924, 29.46539712355348 ], [ -95.755117088362596, 29.465261123448613 ], [ -95.75532808923316, 29.464871123578231 ], [ -95.755414089178188, 29.46467012399183 ], [ -95.755450089147246, 29.464568123243371 ], [ -95.75548908872608, 29.464428123702703 ], [ -95.755492088975203, 29.464357123449343 ], [ -95.755486088681209, 29.464321123903677 ], [ -95.755385089105175, 29.464165123692567 ], [ -95.755305088408335, 29.464084123882792 ], [ -95.755242088261497, 29.464038123425215 ], [ -95.755204088496043, 29.46402312386093 ], [ -95.755125088309143, 29.464004123628712 ], [ -95.755087088859298, 29.463990123262626 ], [ -95.755046088665239, 29.463987123616718 ], [ -95.754965088588634, 29.463988123296961 ], [ -95.754924089173954, 29.46398412350517 ], [ -95.75483008884774, 29.463990123910452 ], [ -95.754669088906908, 29.464019123615248 ], [ -95.75443308861874, 29.46407712376298 ], [ -95.75420008800711, 29.46414512363091 ], [ -95.75404908796628, 29.464200123327753 ], [ -95.753934088431706, 29.464237123270308 ], [ -95.753464088493942, 29.46435212395296 ], [ -95.753424087827625, 29.464358123974062 ], [ -95.753346088709094, 29.464379123234902 ], [ -95.753308087920587, 29.464393123194213 ], [ -95.753112088307674, 29.464520123409436 ], [ -95.752977087992818, 29.464600123988525 ], [ -95.752883087872874, 29.464670123994768 ], [ -95.752708088416, 29.464821123470344 ], [ -95.752518088262235, 29.465009123899275 ], [ -95.752420087676953, 29.46512412417119 ], [ -95.752398088568327, 29.465155124154226 ], [ -95.75235208765028, 29.465254123480662 ], [ -95.752321087875785, 29.465395123613053 ], [ -95.752289087880598, 29.465498123457728 ], [ -95.752250087762846, 29.465599123480139 ], [ -95.752191088507971, 29.465732124344484 ], [ -95.752168088253967, 29.465801123759771 ], [ -95.752138087637476, 29.465867124120681 ], [ -95.752102087696016, 29.465932123835643 ], [ -95.752039087779522, 29.466024124148895 ], [ -95.751992087671567, 29.466083123746472 ], [ -95.751925088098361, 29.466124124073282 ], [ -95.751775087908428, 29.466181124179236 ], [ -95.751615088424444, 29.466211123986916 ], [ -95.751411088066902, 29.466228124451746 ], [ -95.751167087322074, 29.466238124122409 ], [ -95.75104508815194, 29.466230124415521 ], [ -95.750679087376469, 29.466181124054938 ], [ -95.750330087553607, 29.466083123723337 ], [ -95.750178087690259, 29.466030124327375 ], [ -95.749969087971778, 29.46591612411541 ], [ -95.749903087231161, 29.465874123568728 ], [ -95.749874087104502, 29.4658491243984 ], [ -95.749745087037653, 29.465709124016541 ], [ -95.749475087576002, 29.465438123622857 ], [ -95.749444087050591, 29.465415123781181 ], [ -95.749361087748852, 29.465336124370129 ], [ -95.749312087136076, 29.465278123458056 ], [ -95.749232086940381, 29.465196124331221 ], [ -95.749163087150762, 29.465107123820982 ], [ -95.749127086969054, 29.465042124129123 ], [ -95.749104086885211, 29.464974123526687 ], [ -95.749098086772904, 29.464867123550906 ], [ -95.74910108711849, 29.464795124115181 ], [ -95.749127087159508, 29.464510123451952 ], [ -95.749117087121732, 29.464439123744867 ], [ -95.749113086924709, 29.464367123665472 ], [ -95.749100087642617, 29.464297123317827 ], [ -95.749089087206201, 29.464262123752629 ], [ -95.749016087640015, 29.464094123961232 ], [ -95.748938087409499, 29.464011123501773 ], [ -95.748839087315915, 29.463946123394642 ], [ -95.748734087269995, 29.463891123817096 ], [ -95.748660087424, 29.463860123425764 ], [ -95.748244086876852, 29.46370512323152 ], [ -95.748208086759348, 29.463688124024511 ], [ -95.748169087151567, 29.463676123756827 ], [ -95.747973086429369, 29.463631123242077 ], [ -95.747706087324914, 29.463535123379842 ], [ -95.747346086412591, 29.463360123311627 ], [ -95.747315086384276, 29.463345123985999 ], [ -95.747282086712104, 29.46332612329342 ], [ -95.747251087109916, 29.463302123702086 ], [ -95.747006086778484, 29.463175123212871 ], [ -95.74693808642057, 29.463136123357312 ], [ -95.746901086389968, 29.463120123940847 ], [ -95.746841086308208, 29.463071123466435 ], [ -95.746787086352001, 29.463017123090356 ], [ -95.746756086104654, 29.46299412349142 ], [ -95.746720086308869, 29.462976123747666 ], [ -95.746522086695649, 29.462851123396685 ], [ -95.746491086558152, 29.46282812373558 ], [ -95.746455086867343, 29.462810123919802 ], [ -95.746415086954883, 29.462802123655276 ], [ -95.746371086907743, 29.462752123424359 ], [ -95.746338086199174, 29.462731123105826 ], [ -95.746301086408707, 29.462715123522017 ], [ -95.7460600861112, 29.462580123722631 ], [ -95.745898086108852, 29.462471123872305 ], [ -95.745695086444996, 29.46234912360222 ], [ -95.745599085948086, 29.462282123382813 ], [ -95.745517086412235, 29.462203123190179 ], [ -95.745484086027218, 29.462182123560517 ], [ -95.745378086271714, 29.462129123324036 ], [ -95.745194085609839, 29.462055123742282 ], [ -95.745154085930793, 29.462046122965294 ], [ -95.745039086495368, 29.462008123591449 ], [ -95.744920085924321, 29.461981123745009 ], [ -95.744681085592532, 29.461934123763097 ], [ -95.744599085952046, 29.461926123190089 ], [ -95.74451808606652, 29.461933123605746 ], [ -95.744400086299947, 29.461959122984553 ], [ -95.744318086030589, 29.461967123404552 ], [ -95.744199085347148, 29.461991123230995 ], [ -95.744091085656933, 29.462040123509087 ], [ -95.744057086267873, 29.462060123468497 ], [ -95.743745086123113, 29.462295123429385 ], [ -95.743690086173302, 29.462348123950779 ], [ -95.743430085684281, 29.462576123247601 ], [ -95.743296086019214, 29.462658123504678 ], [ -95.743143086016914, 29.462784123840752 ], [ -95.74287808552603, 29.463003123609443 ], [ -95.74277008522769, 29.463111123307776 ], [ -95.7426250853688, 29.463285123982065 ], [ -95.742475085599835, 29.463407123995594 ], [ -95.742440085961064, 29.463427123540939 ], [ -95.742293085213205, 29.463496123674926 ], [ -95.742139085329157, 29.463546123813117 ], [ -95.741736085129503, 29.463617123727737 ], [ -95.741654085075353, 29.463623124097527 ], [ -95.741451084925586, 29.463646123626337 ], [ -95.741286085291364, 29.463642123675964 ], [ -95.740846085070018, 29.463565123437192 ], [ -95.740767084640794, 29.463547123793546 ], [ -95.740126084878355, 29.463439124073652 ], [ -95.740007085075163, 29.4634141237599 ], [ -95.739968084386007, 29.463402123753834 ], [ -95.739848085293431, 29.463378123415612 ], [ -95.73976808428904, 29.463366123915161 ], [ -95.739645084591814, 29.463359123708774 ], [ -95.739321084840554, 29.463319124139371 ], [ -95.739160084415289, 29.463293124194887 ], [ -95.738765084055927, 29.463194123827531 ], [ -95.738652084098007, 29.463152123893323 ], [ -95.738618084375659, 29.463132123556349 ], [ -95.738471084749847, 29.463069123890993 ], [ -95.73844508414129, 29.46304012352865 ], [ -95.738405084512905, 29.462978123693048 ], [ -95.73831008469503, 29.462861123361872 ], [ -95.738294083862726, 29.462830124015913 ], [ -95.738287084050071, 29.462794123508314 ], [ -95.738272084583869, 29.462761123970974 ], [ -95.738247084613548, 29.462732123622544 ], [ -95.738160084705811, 29.462611123879849 ], [ -95.738141084329513, 29.462578124131795 ], [ -95.738130084825215, 29.462544123711627 ], [ -95.738121083804927, 29.46247312388628 ], [ -95.738091084595638, 29.462369123365818 ], [ -95.738062084563055, 29.462229123535028 ], [ -95.73804908448885, 29.462123123452287 ], [ -95.738031084458157, 29.461837123810021 ], [ -95.738013084446351, 29.461659123937967 ], [ -95.737961084123398, 29.461414123637159 ], [ -95.737898084186199, 29.461206123179959 ], [ -95.737820084656065, 29.461001123303021 ], [ -95.737776083742375, 29.460900123281647 ], [ -95.737691084285331, 29.460739123378399 ], [ -95.737627084487997, 29.46060712371083 ], [ -95.73751608368282, 29.460416122961874 ], [ -95.737432083726731, 29.460293123404568 ], [ -95.737359084189279, 29.460206123683221 ], [ -95.737307084291558, 29.460151122866815 ], [ -95.737237084167404, 29.460062122941672 ], [ -95.736940083887518, 29.459766123567636 ], [ -95.736911083447339, 29.459741123233695 ], [ -95.736816084161887, 29.459624123472263 ], [ -95.736734083471291, 29.459500123378106 ], [ -95.736696083853957, 29.459397123022054 ], [ -95.736608083916963, 29.459275122793802 ], [ -95.736536084006161, 29.459070123218162 ], [ -95.736507083601907, 29.45900312263252 ], [ -95.736474083691704, 29.458862122841001 ], [ -95.736459083465164, 29.458649122613025 ], [ -95.736461083572451, 29.45861312336671 ], [ -95.736419083889956, 29.458512122938153 ], [ -95.736432083816794, 29.458474123142167 ], [ -95.736436083851629, 29.458438123103758 ], [ -95.736421084076568, 29.457903122515955 ], [ -95.736394083360992, 29.457724122448838 ], [ -95.736373084003347, 29.457330123044059 ], [ -95.736344083259453, 29.457080122408087 ], [ -95.736309083933634, 29.456617122873549 ], [ -95.736263083169789, 29.456260122282437 ], [ -95.736203083611301, 29.455941122302505 ], [ -95.736189083662268, 29.455834122560425 ], [ -95.736143083729459, 29.455775122801985 ], [ -95.736106083312734, 29.455711121982571 ], [ -95.736068083715566, 29.455609122361484 ], [ -95.736052083522907, 29.455576122409372 ], [ -95.73600808354982, 29.455516122582864 ], [ -95.735949083094951, 29.45546712237936 ], [ -95.735876083901658, 29.455433122417254 ], [ -95.735835083403956, 29.45543012218365 ], [ -95.735754083628436, 29.4554351223365 ], [ -95.735683083127569, 29.455470122544316 ], [ -95.735584083810579, 29.455534122127407 ], [ -95.735465083092834, 29.455631122013394 ], [ -95.735408083448164, 29.455683122565294 ], [ -95.735336083731895, 29.45577012227038 ], [ -95.735283082816863, 29.455825122499814 ], [ -95.735167082974513, 29.455925122749946 ], [ -95.735133082909428, 29.455947122510732 ], [ -95.735020083278798, 29.456050122341864 ], [ -95.734926083421016, 29.456119122447632 ], [ -95.73470008300886, 29.456274122964302 ], [ -95.734642083092055, 29.456324122857538 ], [ -95.734223083097277, 29.456614122372567 ], [ -95.734165082726022, 29.456664122957541 ], [ -95.734102082957037, 29.456710122625992 ], [ -95.733934082520904, 29.456813122858808 ], [ -95.733827082714413, 29.456865122571187 ], [ -95.733636082988227, 29.456933122334306 ], [ -95.733440082969551, 29.456984122762744 ], [ -95.733324083070642, 29.457021122968456 ], [ -95.73320608280244, 29.457049122602577 ], [ -95.733125082917496, 29.457061123031405 ], [ -95.732879082611035, 29.457068122585355 ], [ -95.732798082867419, 29.457061122984854 ], [ -95.732757083033661, 29.457063122507215 ], [ -95.732727082714575, 29.45705912303664 ], [ -95.732554082179121, 29.457038122595037 ], [ -95.732355082496056, 29.456995123046614 ], [ -95.732274082777394, 29.456986122858684 ], [ -95.732113082348775, 29.456956122596132 ], [ -95.732054082208833, 29.456946123189955 ], [ -95.731850082432345, 29.456924122536822 ], [ -95.731609081947965, 29.45688312278428 ], [ -95.731244082479222, 29.456836122619716 ], [ -95.7311230822352, 29.456817122850534 ], [ -95.731082082318096, 29.456815123123395 ], [ -95.730882082306607, 29.456778122957743 ], [ -95.730598081831133, 29.45673912280164 ], [ -95.730237081709518, 29.456680123146729 ], [ -95.730156082383928, 29.456670122441519 ], [ -95.730075082358056, 29.456680122556488 ], [ -95.730038082195534, 29.456675122515819 ], [ -95.729962081748909, 29.456649122743247 ], [ -95.729922082246333, 29.456639122599096 ], [ -95.729881082413073, 29.456636122368486 ], [ -95.729802081865103, 29.456620122626394 ], [ -95.729641081662749, 29.456595122738797 ], [ -95.729403081912167, 29.456546122741294 ], [ -95.729211082161555, 29.456482122704081 ], [ -95.729177082295081, 29.456463122679988 ], [ -95.72909908191977, 29.45637912248565 ], [ -95.72906808133034, 29.456356123113487 ], [ -95.729044081793347, 29.456327122834598 ], [ -95.728983081878482, 29.456233123137732 ], [ -95.728966082155011, 29.456163122608448 ], [ -95.728938081696882, 29.456095122886985 ], [ -95.728953081732513, 29.456025122358412 ], [ -95.728974081280143, 29.455955122494206 ], [ -95.728975081497978, 29.45591912226562 ], [ -95.728960081431183, 29.455813122502565 ], [ -95.728971081452514, 29.455706122838212 ], [ -95.728986081406347, 29.455635122165642 ], [ -95.728984081182801, 29.455422122949432 ], [ -95.7289800812961, 29.455387122284336 ], [ -95.728980081636109, 29.455280122277468 ], [ -95.728961081447622, 29.454925122685886 ], [ -95.728938082017663, 29.454783122552396 ], [ -95.728880081927286, 29.454612122606481 ], [ -95.728863081694044, 29.454579122514549 ], [ -95.728757082100088, 29.454426122166161 ], [ -95.728600081722377, 29.454263122552877 ], [ -95.728462081703313, 29.454132122091142 ], [ -95.728370081868718, 29.454062122546187 ], [ -95.728336081931602, 29.454043122274332 ], [ -95.728252081529789, 29.453964122355309 ], [ -95.728180081184831, 29.453877121827659 ], [ -95.728074081126664, 29.453768122317811 ], [ -95.727991081567922, 29.453689122361155 ], [ -95.727928081121917, 29.453642121878097 ], [ -95.72784608116153, 29.453563121935886 ], [ -95.727782081419107, 29.453519122584375 ], [ -95.727744081108838, 29.453504122196435 ], [ -95.727704080941393, 29.453496122504966 ], [ -95.727682081215988, 29.45346812231751 ], [ -95.72764408123227, 29.453405122611322 ], [ -95.727560080869296, 29.453325122087122 ], [ -95.727493081158343, 29.453284122624087 ], [ -95.727434080811321, 29.453234121986743 ], [ -95.727311081134545, 29.453148121925409 ], [ -95.727242080895124, 29.453100122015556 ], [ -95.727096080748609, 29.452974122404523 ], [ -95.727031081284167, 29.452932121919975 ], [ -95.726994080684648, 29.452915122060897 ], [ -95.726930080665255, 29.452872122406408 ], [ -95.726819081033113, 29.452825122404811 ], [ -95.726705081142441, 29.452788122368151 ], [ -95.726587080620618, 29.452758121740363 ], [ -95.72654608135143, 29.452755122263039 ], [ -95.726389080546838, 29.45271512215654 ], [ -95.726311081013819, 29.452690121891191 ], [ -95.726193080641465, 29.452662122088242 ], [ -95.726112080678917, 29.452651122295322 ], [ -95.725785080441071, 29.452622122446328 ], [ -95.725580081193229, 29.452617122278141 ], [ -95.725539080787996, 29.452621122514273 ], [ -95.725459080573856, 29.452638121764171 ], [ -95.725378080238073, 29.452643121893185 ], [ -95.725297080784571, 29.452653121774819 ], [ -95.725257080582438, 29.452663121987722 ], [ -95.725182080929187, 29.452691122394587 ], [ -95.725073081009441, 29.452742121938336 ], [ -95.725035080451875, 29.452755121870304 ], [ -95.72496308065702, 29.452790121733873 ], [ -95.724851080465726, 29.452836121785143 ], [ -95.724653080767212, 29.452883121991199 ], [ -95.724384079977128, 29.452969122128685 ], [ -95.724344080679202, 29.452977121821775 ], [ -95.724267080818478, 29.453003122052614 ], [ -95.724189080749056, 29.453023122167714 ], [ -95.723868080126437, 29.453089122499769 ], [ -95.72379208045048, 29.453116121851952 ], [ -95.723676080327394, 29.453149122161118 ], [ -95.723388079947, 29.453158122228754 ], [ -95.723243080184574, 29.453145122196453 ], [ -95.723204079968241, 29.453135121929545 ], [ -95.723053079970768, 29.453079122074421 ], [ -95.722907079633558, 29.453013122364219 ], [ -95.722691080484964, 29.452909122319948 ], [ -95.722551079489293, 29.452834121921484 ], [ -95.722477079652137, 29.452802122688546 ], [ -95.722339079896784, 29.452725122139991 ], [ -95.722225079399095, 29.452621122568299 ], [ -95.722126079777226, 29.452506122075448 ], [ -95.721961079687119, 29.452300122396583 ], [ -95.721794080018398, 29.452053121945372 ], [ -95.721689079904422, 29.45186012198435 ], [ -95.72161907924486, 29.451691122109604 ], [ -95.721568079615508, 29.451594121802305 ], [ -95.721513080107528, 29.451457121608239 ], [ -95.721503079383879, 29.451423122432054 ], [ -95.721533079263935, 29.451170121585793 ], [ -95.721520079216901, 29.451062121655351 ], [ -95.721459079356805, 29.450854121439683 ], [ -95.721423079880509, 29.450789121699309 ], [ -95.721378079675773, 29.450729121980977 ], [ -95.721207079163392, 29.450573121635809 ], [ -95.721144079438318, 29.450527121569849 ], [ -95.721024079744836, 29.450430121691184 ], [ -95.720896079744236, 29.450340122159879 ], [ -95.720867079594768, 29.450315121756372 ], [ -95.72073407948119, 29.450232122148968 ], [ -95.720605079472094, 29.450144121520459 ], [ -95.720357079600717, 29.449957121948206 ], [ -95.720292079714667, 29.449913121371065 ], [ -95.720120079181541, 29.449815121960988 ], [ -95.720036079142503, 29.449736121999315 ], [ -95.719973079428286, 29.449690121348823 ], [ -95.71991707876802, 29.449638121992809 ], [ -95.719885078758523, 29.449615121997862 ], [ -95.719848079224249, 29.44960112143497 ], [ -95.719740079509847, 29.449549121530772 ], [ -95.719644079549255, 29.449482121667092 ], [ -95.719499078661826, 29.449355121466454 ], [ -95.719451078887559, 29.449297121673677 ], [ -95.719411078505189, 29.449234121741416 ], [ -95.71938107921558, 29.449167121327608 ], [ -95.719364079062345, 29.449060121377968 ], [ -95.719364079102633, 29.449024121805547 ], [ -95.719420079089232, 29.448851121807341 ], [ -95.719482078719494, 29.448718121215062 ], [ -95.719503078798539, 29.448688121861633 ], [ -95.719637079415008, 29.448552121521086 ], [ -95.71996407877765, 29.448278120970539 ], [ -95.720062078851441, 29.44821312167285 ], [ -95.7202070787922, 29.448145121353555 ], [ -95.720273079596154, 29.448102120996367 ], [ -95.720603079576478, 29.447956120972904 ], [ -95.720715079465705, 29.44791112104528 ], [ -95.720791079111109, 29.447886121060261 ], [ -95.720831078787228, 29.447878121571812 ], [ -95.720994079798402, 29.447858121228332 ], [ -95.721113079578416, 29.447832121212265 ], [ -95.721423079240878, 29.447735121596754 ], [ -95.72150307935857, 29.44772012148902 ], [ -95.721584079487798, 29.447710121293369 ], [ -95.721871079539753, 29.447707121616929 ], [ -95.721992079952159, 29.447726121079789 ], [ -95.722226079385777, 29.447792121280514 ], [ -95.722493079395846, 29.44788312090165 ], [ -95.722610079916706, 29.447916121077288 ], [ -95.722730079912964, 29.447942121557432 ], [ -95.722807079891339, 29.447966121049191 ], [ -95.722929079451276, 29.447977121395546 ], [ -95.723093080355056, 29.447980120924569 ], [ -95.72325507982147, 29.447955121457273 ], [ -95.723331079958058, 29.447928121583878 ], [ -95.72340507957, 29.447896121555363 ], [ -95.723473080432896, 29.447856121283355 ], [ -95.723537080008811, 29.447811121439685 ], [ -95.723624080028642, 29.447735120873443 ], [ -95.723670079799589, 29.447675121529617 ], [ -95.72371408032167, 29.447536120921683 ], [ -95.723739079626512, 29.447430120984965 ], [ -95.72373008027904, 29.447251121112362 ], [ -95.723700080224489, 29.447037121265907 ], [ -95.723672079499465, 29.446970121212857 ], [ -95.723616079564209, 29.446873120810395 ], [ -95.723529080251424, 29.446751121139137 ], [ -95.723478080389782, 29.446695120791631 ], [ -95.723395079745302, 29.446615121095046 ], [ -95.72330408016353, 29.446543121211736 ], [ -95.72313507963014, 29.446442121098986 ], [ -95.723030079885802, 29.446385120860231 ], [ -95.722921079721559, 29.446233121191444 ], [ -95.722915079436049, 29.446199120935269 ], [ -95.722924080177421, 29.446127120568253 ], [ -95.722936079938734, 29.446093120496666 ], [ -95.72295507993114, 29.446061120927009 ], [ -95.723021079638372, 29.445970120716915 ], [ -95.72307507943114, 29.445915120832993 ], [ -95.723167079630727, 29.445844121159983 ], [ -95.723403079950515, 29.445702120786667 ], [ -95.723547079845787, 29.445634120405376 ], [ -95.72362507966308, 29.445612120490171 ], [ -95.723907080222872, 29.445560120785345 ], [ -95.723948079859468, 29.445558120467318 ], [ -95.724067080250606, 29.445532120616338 ], [ -95.724220079839412, 29.445479120250461 ], [ -95.72429107956367, 29.445444120707407 ], [ -95.724389080315589, 29.445378120922832 ], [ -95.724417080537719, 29.445351120492319 ], [ -95.724484079780169, 29.445261120769821 ], [ -95.724533080398672, 29.445162120738395 ], [ -95.724546079843989, 29.445128120673193 ], [ -95.724553080438028, 29.445092120369093 ], [ -95.724553080529475, 29.444949120482956 ], [ -95.724543080532527, 29.444914120479712 ], [ -95.724508080514141, 29.444849120728957 ], [ -95.724372080194684, 29.44466912062958 ], [ -95.724243080036771, 29.444529120648465 ], [ -95.72419608026506, 29.444470120726734 ], [ -95.724087079660876, 29.444362120802431 ], [ -95.724036079653757, 29.444306120618069 ], [ -95.723989080103706, 29.4442471206211 ], [ -95.723871080200581, 29.44401812044682 ], [ -95.723842079869385, 29.443951120230235 ], [ -95.723836079988317, 29.443880120307941 ], [ -95.723844079530451, 29.443808120588017 ], [ -95.72389208035861, 29.443671120771171 ], [ -95.723920079949892, 29.443603120166653 ], [ -95.723985079593461, 29.443472120122166 ], [ -95.724005080070526, 29.443441120711558 ], [ -95.724037079687619, 29.443375120071003 ], [ -95.724108079823111, 29.443246120273006 ], [ -95.724206080217655, 29.443088120529445 ], [ -95.724232080284807, 29.44306012059717 ], [ -95.724337080235969, 29.442828120586704 ], [ -95.724409079786739, 29.442622120031366 ], [ -95.724422080345889, 29.442551120285479 ], [ -95.724425079904535, 29.442479119774415 ], [ -95.724432080288864, 29.442444120498699 ], [ -95.724419079674135, 29.442300120233707 ], [ -95.724386079666118, 29.442196119803221 ], [ -95.724306079499385, 29.44207112017331 ], [ -95.724232079836213, 29.441985119600801 ], [ -95.724172079994304, 29.441935119788639 ], [ -95.724078079898717, 29.441866120228664 ], [ -95.724011079797052, 29.441824120371862 ], [ -95.723836080137403, 29.441730120053453 ], [ -95.723798079571694, 29.441715120188231 ], [ -95.723777079977168, 29.441655120338659 ], [ -95.723758079777113, 29.441623120156748 ], [ -95.723732079345481, 29.441595120334476 ], [ -95.723701079307347, 29.441571120292245 ], [ -95.723575079755918, 29.441430119812328 ], [ -95.723532079982334, 29.44136911992889 ], [ -95.723433079217585, 29.441173119475394 ], [ -95.723406079286974, 29.441068119559251 ], [ -95.723409079487922, 29.440996119953464 ], [ -95.72366007956731, 29.440385119594424 ], [ -95.723847079355792, 29.440027119682956 ], [ -95.723885079579915, 29.439964119522468 ], [ -95.723964079337534, 29.439798119465319 ], [ -95.724098079407185, 29.439495119583704 ], [ -95.724131080067522, 29.439429119083901 ], [ -95.724153080200423, 29.439400119322556 ], [ -95.724243079922189, 29.439238119539496 ], [ -95.724290079892498, 29.439179119385265 ], [ -95.724397079821756, 29.439070119542293 ], [ -95.724488079948685, 29.43899711951525 ], [ -95.724558080048524, 29.438960119481454 ], [ -95.724744079427765, 29.438884119542493 ], [ -95.724897079998058, 29.438832119655025 ], [ -95.724976079727398, 29.438811119342578 ], [ -95.725137080383377, 29.438786119605972 ], [ -95.725336079586768, 29.438741119645154 ], [ -95.725441080041904, 29.438685118867738 ], [ -95.725505080234996, 29.43863911894643 ], [ -95.725581080557575, 29.438554118899244 ], [ -95.72562708017746, 29.438495119045442 ], [ -95.725780080458335, 29.438203119097683 ], [ -95.725856079994841, 29.437998119346208 ], [ -95.725853080030319, 29.437963119473675 ], [ -95.725843080271645, 29.437929118759474 ], [ -95.725837080414706, 29.43785711873592 ], [ -95.72584108027857, 29.437821118801953 ], [ -95.725851079638176, 29.437786118936554 ], [ -95.72589508021602, 29.43768711858819 ], [ -95.725913079686379, 29.437471119034392 ], [ -95.725925080353036, 29.437400118979461 ], [ -95.725960080510234, 29.437297118583565 ], [ -95.726019080280551, 29.437162118874731 ], [ -95.726054080433983, 29.437098118466082 ], [ -95.726130080183935, 29.437012118871486 ], [ -95.726209080489582, 29.436930119318024 ], [ -95.726365080382578, 29.436813119103892 ], [ -95.726509080182851, 29.436742118965643 ], [ -95.726620080269612, 29.436697118742497 ], [ -95.726654079958209, 29.436676118603575 ], [ -95.726684080722038, 29.436651119192256 ], [ -95.726790080325856, 29.43654111903346 ], [ -95.726872080061909, 29.436418118301283 ], [ -95.726928079942567, 29.43632111858653 ], [ -95.726937080037544, 29.436250118935774 ], [ -95.726932080234775, 29.436143118733831 ], [ -95.726918080816318, 29.436072118739236 ], [ -95.726895080200975, 29.436003118693247 ], [ -95.726884080522126, 29.435932119086097 ], [ -95.726842080373302, 29.435870118378464 ], [ -95.726701080476658, 29.435694118256194 ], [ -95.726644079760646, 29.435643118777509 ], [ -95.726459080600037, 29.435502118210607 ], [ -95.726324080424249, 29.435421118169419 ], [ -95.726251079948725, 29.435388118822065 ], [ -95.726181080358202, 29.435351118411322 ], [ -95.726092080162729, 29.435276118120417 ], [ -95.726060080166633, 29.43525411870505 ], [ -95.725912080178958, 29.435192118163215 ], [ -95.725877080462681, 29.435174118844412 ], [ -95.725608080352799, 29.435086118846652 ], [ -95.725490079891372, 29.435056118451445 ], [ -95.725370079761419, 29.435036118162749 ], [ -95.725083079739193, 29.435030118717606 ], [ -95.7250420802485, 29.435032118384743 ], [ -95.72487907998682, 29.435052118698152 ], [ -95.724800080124595, 29.43507111861398 ], [ -95.724760079658537, 29.43507711887986 ], [ -95.724608079672024, 29.435130118814815 ], [ -95.72452907961663, 29.43515111884788 ], [ -95.724368079262277, 29.435178118921677 ], [ -95.724164079362893, 29.435192118502783 ], [ -95.724123079941677, 29.435190118234303 ], [ -95.724041079612718, 29.435196119023029 ], [ -95.723879079804277, 29.435176119010023 ], [ -95.723691079292138, 29.43510411823409 ], [ -95.723583079560598, 29.435053118402649 ], [ -95.723449079433863, 29.434969118729214 ], [ -95.723329079364902, 29.4348721184361 ], [ -95.723189079597262, 29.434741118162588 ], [ -95.723036079134985, 29.434571118250329 ], [ -95.722951079085732, 29.434448118724998 ], [ -95.722885078928812, 29.434317118417386 ], [ -95.722796079471351, 29.434154118836567 ], [ -95.722699079308853, 29.433995118407523 ], [ -95.722618079057256, 29.433871118248867 ], [ -95.722573079406487, 29.433811118595685 ], [ -95.722518079299306, 29.433757118091421 ], [ -95.722488079019485, 29.433733118731848 ], [ -95.722388078657715, 29.433670118405914 ], [ -95.722311079415505, 29.433643117939774 ], [ -95.722192079059894, 29.433615118285829 ], [ -95.722028078863673, 29.433606118055653 ], [ -95.721905078578047, 29.433614118018582 ], [ -95.721783079074413, 29.433629118143262 ], [ -95.721701079046326, 29.433631118719482 ], [ -95.721578078459018, 29.433627118490104 ], [ -95.721414079124145, 29.433636118257706 ], [ -95.721373079248409, 29.433635118160556 ], [ -95.721292079170169, 29.433626118012377 ], [ -95.721171079260728, 29.433604117946565 ], [ -95.72105607877117, 29.433566118370855 ], [ -95.720842078828468, 29.433458118198715 ], [ -95.720745078593737, 29.433391118390329 ], [ -95.72059707866822, 29.433267118388933 ], [ -95.720542078756054, 29.433214118081789 ], [ -95.720439078999505, 29.433102118727735 ], [ -95.720221078389386, 29.432842117850363 ], [ -95.720109078384354, 29.432692118401388 ], [ -95.720048077944114, 29.43259811817143 ], [ -95.720017078054696, 29.432565118585892 ], [ -95.720006078548991, 29.432530117922912 ], [ -95.719975078376279, 29.43246311802277 ], [ -95.719911078403413, 29.432371118358972 ], [ -95.71979507837095, 29.432223118146354 ], [ -95.719519077849611, 29.431957117800611 ], [ -95.719421077729265, 29.431841117949958 ], [ -95.719332078065165, 29.43172011813887 ], [ -95.719315078407817, 29.431688117583558 ], [ -95.719273078286392, 29.431626117905189 ], [ -95.719181077808457, 29.431465118030516 ], [ -95.719097077860496, 29.431262118190855 ], [ -95.719047077976839, 29.431126118123583 ], [ -95.719038078565674, 29.431054117912801 ], [ -95.719036077703578, 29.430911117965536 ], [ -95.719049077836601, 29.430767118090312 ], [ -95.719062078481045, 29.430697117900653 ], [ -95.719093078466273, 29.430593118146529 ], [ -95.719140077988428, 29.430494117655321 ], [ -95.71916207783147, 29.430463117487616 ], [ -95.719196077855287, 29.430398117508801 ], [ -95.719235078613664, 29.430335117881626 ], [ -95.719340078272367, 29.430182118077344 ], [ -95.719357078246858, 29.430149117543962 ], [ -95.719515078489025, 29.429898117437876 ], [ -95.719609077797685, 29.429739117186653 ], [ -95.719624078251613, 29.429706117156204 ], [ -95.719662078362745, 29.429642117964864 ], [ -95.71967607869415, 29.429608117594608 ], [ -95.719697077916379, 29.429578117280435 ], [ -95.719764078477624, 29.42953511750104 ], [ -95.719886078042364, 29.429439117748196 ], [ -95.720151078431016, 29.429271117132075 ], [ -95.72025507810234, 29.42921511759091 ], [ -95.720547078465657, 29.42908211713819 ], [ -95.720653077947262, 29.429028117036943 ], [ -95.72105707850838, 29.428781116931937 ], [ -95.7212480784994, 29.428645117217052 ], [ -95.721457078387445, 29.428473117102573 ], [ -95.721513078216134, 29.428421116854231 ], [ -95.721661079017764, 29.42829711705734 ], [ -95.721746079038184, 29.428220117326788 ], [ -95.721824078188092, 29.42813611712312 ], [ -95.721894078201643, 29.428047117514396 ], [ -95.721998078597366, 29.4278931172224 ], [ -95.72213107902877, 29.427711116943712 ], [ -95.722180078237287, 29.42765411721356 ], [ -95.72228907901399, 29.427546116869028 ], [ -95.722322078481909, 29.427525116772753 ], [ -95.722397079118352, 29.427496117255636 ], [ -95.722438079009706, 29.427490117010375 ], [ -95.722643078808417, 29.427489117007411 ], [ -95.722763078772331, 29.427512116813077 ], [ -95.722882079316221, 29.427541117208271 ], [ -95.72295907846771, 29.427564116914951 ], [ -95.722999078464639, 29.427572117415536 ], [ -95.723273078870008, 29.42764711688832 ], [ -95.723313078923937, 29.427655117294705 ], [ -95.723518078583552, 29.427663117211065 ], [ -95.723598079065198, 29.427650117381205 ], [ -95.72367007921973, 29.427615116718499 ], [ -95.723736078670527, 29.42757211662304 ], [ -95.723790079660077, 29.427518116685132 ], [ -95.7238820793131, 29.427399117119833 ], [ -95.723913079007772, 29.427332117043697 ], [ -95.723930079121516, 29.42722511722987 ], [ -95.723931078771756, 29.427189116799635 ], [ -95.723924079674035, 29.427117117266217 ], [ -95.723912079215381, 29.427083116869436 ], [ -95.723857078722602, 29.426986117003903 ], [ -95.723495078572739, 29.426462116771042 ], [ -95.723392079230791, 29.426267116742277 ], [ -95.723344078820332, 29.426167116436268 ], [ -95.723261079317112, 29.425964116583827 ], [ -95.723242079070545, 29.425932117064168 ], [ -95.723194078796297, 29.425794116718365 ], [ -95.723141078688769, 29.42562011674222 ], [ -95.722996079010812, 29.425284116493227 ], [ -95.72298707851337, 29.425249116341885 ], [ -95.722982078525646, 29.425195116872221 ], [ -95.722958078743474, 29.425165116771215 ], [ -95.722873079059511, 29.425087116879947 ], [ -95.722825078477456, 29.425029116889259 ], [ -95.722791078966964, 29.425008116375789 ], [ -95.722737078369107, 29.424955116962991 ], [ -95.7227040791538, 29.424932116316167 ], [ -95.722595078967572, 29.424884116468402 ], [ -95.722555079053862, 29.424875116579017 ], [ -95.722514078676284, 29.424872116447915 ], [ -95.722268079020225, 29.424880116450861 ], [ -95.7220230788961, 29.424897116541104 ], [ -95.721701078028588, 29.424949116729387 ], [ -95.721461078056109, 29.425001116243116 ], [ -95.720977078810009, 29.4250761163769 ], [ -95.720855078059515, 29.425090116160131 ], [ -95.720649078018937, 29.425100116202529 ], [ -95.720567077930156, 29.425097117009201 ], [ -95.720526078018054, 29.425101116376126 ], [ -95.720280078311532, 29.425099116722826 ], [ -95.720198078652558, 29.425091116599617 ], [ -95.720080077869781, 29.425059117075847 ], [ -95.719964077946656, 29.425021116985981 ], [ -95.719890078212785, 29.424991116835766 ], [ -95.719674078169078, 29.424887117056777 ], [ -95.719645078375805, 29.424861116856707 ], [ -95.719571078466657, 29.42477511663904 ], [ -95.719531078318539, 29.424712116234929 ], [ -95.719481078027997, 29.424575116856378 ], [ -95.719481078082254, 29.42443111612268 ], [ -95.719556077754277, 29.424264116512887 ], [ -95.719591077746557, 29.424198116465739 ], [ -95.719631078087119, 29.424135116897968 ], [ -95.719945077893129, 29.423713116027972 ], [ -95.720191077635334, 29.423425116432206 ], [ -95.720330078562938, 29.42329311621948 ], [ -95.720381077954244, 29.423236116604755 ], [ -95.720402077805161, 29.423205116055314 ], [ -95.720431078149403, 29.423180116046609 ], [ -95.720564078271224, 29.423095115776476 ], [ -95.72080607778507, 29.422900115917496 ], [ -95.720941078336423, 29.422817115945104 ], [ -95.721161078319597, 29.422721115712299 ], [ -95.721572078076292, 29.422555116390708 ], [ -95.721724078801785, 29.422499116189439 ], [ -95.721797078038193, 29.422466116113235 ], [ -95.722577079002207, 29.421998115729178 ], [ -95.722829078757158, 29.42181211620877 ], [ -95.722887078515981, 29.421761115904907 ], [ -95.723070078462626, 29.421566115777882 ], [ -95.723217079035322, 29.421393115358114 ], [ -95.723335079007995, 29.421245115400097 ], [ -95.723394078306526, 29.421150115981497 ], [ -95.723454079153441, 29.42097911582465 ], [ -95.723496078632706, 29.420839115302165 ], [ -95.723502078791313, 29.420804115799545 ], [ -95.723498078296743, 29.420696115972717 ], [ -95.723476078764207, 29.420553115465292 ], [ -95.723482078615902, 29.42048111518578 ], [ -95.723496078443461, 29.420425115781825 ], [ -95.723392078889106, 29.420316115775794 ], [ -95.723363078392254, 29.420291115576173 ], [ -95.723064078527713, 29.420100115760793 ], [ -95.72256907817399, 29.419841115724903 ], [ -95.722435078092502, 29.419758115344486 ], [ -95.722341077960465, 29.419687115277675 ], [ -95.722236078248898, 29.41957711579574 ], [ -95.722178078352229, 29.41952511550031 ], [ -95.722073078017019, 29.419414115720183 ], [ -95.721924077976027, 29.419242115685407 ], [ -95.721637077880615, 29.418935115097781 ], [ -95.721426078547793, 29.418669115273765 ], [ -95.721163078119773, 29.418348114921329 ], [ -95.721103078189842, 29.418253114796798 ], [ -95.721073077569471, 29.418186115063051 ], [ -95.720948078058854, 29.418093115096379 ], [ -95.720847077903343, 29.417979115460231 ], [ -95.7206790777891, 29.417776114976508 ], [ -95.720620078421462, 29.417726114962854 ], [ -95.720384077731055, 29.417388115434186 ], [ -95.720222078295862, 29.417179114579952 ], [ -95.720172077514164, 29.417122114995941 ], [ -95.720079077250048, 29.417051115196898 ], [ -95.71997407729495, 29.41699411507912 ], [ -95.719826077337743, 29.416931114835673 ], [ -95.719674077838448, 29.416874114532138 ], [ -95.71940607758718, 29.416781115260576 ], [ -95.719249077939565, 29.41673911475047 ], [ -95.719089077569137, 29.416704115359376 ], [ -95.718929077915874, 29.416674114708638 ], [ -95.718807077316853, 29.416657115147004 ], [ -95.718521077400652, 29.416628115238634 ], [ -95.718277077444824, 29.416595114523872 ], [ -95.717713077253478, 29.416492115056379 ], [ -95.717672077226169, 29.416489115162669 ], [ -95.717633076818032, 29.416481114937415 ], [ -95.717525077128727, 29.416428114610277 ], [ -95.717305076960926, 29.41633011488787 ], [ -95.717103076940631, 29.416206114830512 ], [ -95.717073076862263, 29.416182114930201 ], [ -95.716995076635953, 29.416098115090374 ], [ -95.716947077358526, 29.416040114547751 ], [ -95.71688607733941, 29.415992114454575 ], [ -95.716805077010491, 29.415910115044664 ], [ -95.716796076735264, 29.415899115127747 ], [ -95.71673207690641, 29.415822114625062 ], [ -95.716680077066286, 29.415724114517907 ], [ -95.716579077246777, 29.415488114478162 ], [ -95.716554076601895, 29.415420114536076 ], [ -95.716524076916258, 29.415315114472833 ], [ -95.716455076813929, 29.415145114553965 ], [ -95.716445076285837, 29.415110114507836 ], [ -95.71644307628334, 29.415038114437738 ], [ -95.716390077146443, 29.414753114771351 ], [ -95.716321076189303, 29.414472114825525 ], [ -95.716130076870002, 29.413770114407388 ], [ -95.716096076823092, 29.413666114357323 ], [ -95.716044076117086, 29.413529114536551 ], [ -95.715998076304672, 29.413353113957612 ], [ -95.715953076306462, 29.413214114452643 ], [ -95.71585407637977, 29.413149114673814 ], [ -95.71573707654251, 29.413047114445387 ], [ -95.715640076042789, 29.412931114706758 ], [ -95.715561076332932, 29.412847114584277 ], [ -95.715503076081362, 29.412797114143633 ], [ -95.715469076896525, 29.412776114300719 ], [ -95.71531807629782, 29.412721114693415 ], [ -95.715201076242749, 29.412685114574643 ], [ -95.715053076005361, 29.412622114179243 ], [ -95.714938076453848, 29.41258411399971 ], [ -95.714776076467956, 29.412558114602959 ], [ -95.714694076618898, 29.412552113821796 ], [ -95.714531076176627, 29.412530114468627 ], [ -95.714450076119334, 29.412541114445371 ], [ -95.714367075914126, 29.412545114685091 ], [ -95.714163076012554, 29.412566114345534 ], [ -95.713925075526731, 29.412622114394978 ], [ -95.713886075951365, 29.412635114317343 ], [ -95.713806076201863, 29.412650114736827 ], [ -95.713687075516248, 29.412680114330893 ], [ -95.713574076395602, 29.412721114194831 ], [ -95.713334075590467, 29.412774114086925 ], [ -95.712813076146602, 29.412881114516871 ], [ -95.712738075959663, 29.412911114104872 ], [ -95.712545075201277, 29.412972114443722 ], [ -95.712306075711808, 29.413029114282381 ], [ -95.712225075831483, 29.413041114880901 ], [ -95.7119800759463, 29.413065114115508 ], [ -95.711654074949081, 29.413107114009371 ], [ -95.711531074941021, 29.413112114261935 ], [ -95.711325075368151, 29.413107114333851 ], [ -95.711161075312546, 29.413124114556521 ], [ -95.71108207514024, 29.413143114196792 ], [ -95.711041075387072, 29.413141114187351 ], [ -95.710960075206231, 29.413129114098286 ], [ -95.710796075169597, 29.413115114731607 ], [ -95.710594075403279, 29.413082114198573 ], [ -95.710555075380924, 29.413070114887979 ], [ -95.710482075058735, 29.41303711440391 ], [ -95.710365075347482, 29.413000114392748 ], [ -95.710187075074955, 29.412911114886978 ], [ -95.710072074982108, 29.412872114836176 ], [ -95.709960074913027, 29.412828114744975 ], [ -95.709814075171309, 29.412761114744615 ], [ -95.709780075075884, 29.412740114304768 ], [ -95.709657075011975, 29.412645114325404 ], [ -95.709498074965168, 29.412530114224985 ], [ -95.709427074901413, 29.412494114148284 ], [ -95.709378074914227, 29.412477114659328 ], [ -95.709303074850851, 29.41239111417871 ], [ -95.70914807518291, 29.412273114286524 ], [ -95.709040075015963, 29.412164114808778 ], [ -95.709016074882044, 29.412135114805693 ], [ -95.708977074920043, 29.412071114560614 ], [ -95.708886074437075, 29.411951114345896 ], [ -95.708821074780616, 29.411819114031484 ], [ -95.708808075051024, 29.411784114322554 ], [ -95.708786074305408, 29.411678114256002 ], [ -95.708780074152443, 29.411462114065944 ], [ -95.708788074537537, 29.41139011465393 ], [ -95.708859074389821, 29.411183114365784 ], [ -95.708886075139276, 29.411115114440118 ], [ -95.708957074507751, 29.410985113742651 ], [ -95.708970074814971, 29.410951114083783 ], [ -95.70897707502958, 29.410879114380524 ], [ -95.708993074930405, 29.410809113815112 ], [ -95.709204074796418, 29.410301114249961 ], [ -95.709236074904695, 29.410234113941346 ], [ -95.709262074825276, 29.410129113589335 ], [ -95.709357074331237, 29.409891114054567 ], [ -95.709388074224677, 29.409824113434176 ], [ -95.709449074716588, 29.409730114229358 ], [ -95.709497074976355, 29.409671113955799 ], [ -95.709552075064309, 29.409618113728587 ], [ -95.709558075239883, 29.409583113780528 ], [ -95.709554074808381, 29.409439113943243 ], [ -95.709509074918302, 29.409300113723297 ], [ -95.709490074792583, 29.409268113780652 ], [ -95.709418074763448, 29.409233113501909 ], [ -95.709386074171263, 29.409210114053472 ], [ -95.709359074311593, 29.409183113572794 ], [ -95.709350074747491, 29.409170113730958 ], [ -95.709331074995589, 29.409142113462295 ], [ -95.709317074911397, 29.409121113771278 ], [ -95.709302074175767, 29.409087113670353 ], [ -95.709273074240812, 29.408983113853242 ], [ -95.709226074758618, 29.408845114029937 ], [ -95.709199074826032, 29.408703113613353 ], [ -95.70918907450293, 29.408595113824923 ], [ -95.70914407469634, 29.408383113447837 ], [ -95.708977074625139, 29.407826113284603 ], [ -95.708905074112891, 29.407620113464876 ], [ -95.708877074158764, 29.407553112966568 ], [ -95.708824074595597, 29.407455113617054 ], [ -95.708696074375823, 29.407270113076585 ], [ -95.708670074308159, 29.407242113455908 ], [ -95.708556074027697, 29.407138113331239 ], [ -95.708491074425339, 29.407093112961842 ], [ -95.708463074776361, 29.407069113346459 ], [ -95.708342073963919, 29.406881113011231 ], [ -95.708291074420174, 29.406824112855986 ], [ -95.708230074532736, 29.406776113014519 ], [ -95.708161074632599, 29.406714113327553 ], [ -95.707991074199697, 29.406590112927852 ], [ -95.707730074360043, 29.406415113207899 ], [ -95.707480074078205, 29.406290113609575 ], [ -95.707293074032961, 29.406215112925526 ], [ -95.70714707423241, 29.406152112961252 ], [ -95.707071074003963, 29.406123112866673 ], [ -95.706831073912483, 29.406076113007781 ], [ -95.706627074229729, 29.406060113436379 ], [ -95.706217073692088, 29.406073113139769 ], [ -95.705888073952295, 29.406062113211892 ], [ -95.705724073904676, 29.406069113152423 ], [ -95.705520073668879, 29.406084112898547 ], [ -95.705193073093838, 29.406122112853037 ], [ -95.704829073454405, 29.406179113502649 ], [ -95.704747073573174, 29.40618811322685 ], [ -95.704583072866058, 29.406192113112841 ], [ -95.704175073235973, 29.406144113406352 ], [ -95.703691073482076, 29.406059113716747 ], [ -95.702020072908951, 29.405690112895019 ], [ -95.70131507197955, 29.405492113395301 ], [ -95.701117072467483, 29.405446113663384 ], [ -95.700525072186025, 29.405299112855516 ], [ -95.700267072322617, 29.405188113308959 ], [ -95.700164071785821, 29.405129113541676 ], [ -95.699931072411857, 29.404944113381042 ], [ -95.699544071852443, 29.404622112911845 ], [ -95.699467071735384, 29.404538113276939 ], [ -95.69931607230879, 29.40420411326226 ], [ -95.699252071885141, 29.40403311294321 ], [ -95.699177072238555, 29.403681112938092 ], [ -95.699151071828879, 29.403612113262827 ], [ -95.698920071300961, 29.403075112604395 ], [ -95.698797071939708, 29.402887113110452 ], [ -95.698714071784494, 29.40272211300508 ], [ -95.698519071697859, 29.402405112450168 ], [ -95.698217071708086, 29.401976112428923 ], [ -95.698136071582752, 29.401851112375656 ], [ -95.697548071764658, 29.401069112509671 ], [ -95.697248071531362, 29.400680112305704 ], [ -95.696739071319215, 29.400068112529599 ], [ -95.696431071116635, 29.39968411261086 ], [ -95.696411071450072, 29.39965311220935 ], [ -95.696360071051785, 29.399555112619318 ], [ -95.696188070835845, 29.399309112202157 ], [ -95.696151071383809, 29.399244111966926 ], [ -95.695903070382187, 29.398749112366573 ], [ -95.695497070454692, 29.397690111495628 ], [ -95.695444070946905, 29.397570111881098 ], [ -95.695258070711944, 29.397209111463479 ], [ -95.695160070103285, 29.397051111325879 ], [ -95.69513707033434, 29.397021111512924 ], [ -95.695051070080979, 29.396944112055781 ], [ -95.695013070189205, 29.396930111664702 ], [ -95.694851070400389, 29.396904111671635 ], [ -95.694686070424098, 29.396902111305966 ], [ -95.694523070450686, 29.396921112028377 ], [ -95.694361070380211, 29.396946112055019 ], [ -95.693909069744805, 29.396965111979824 ], [ -95.693620070497587, 29.396955112153321 ], [ -95.693538070579066, 29.396958112050346 ], [ -95.693461070106082, 29.396982111667935 ], [ -95.693347069833962, 29.397025111338696 ], [ -95.692985070134242, 29.397195111806699 ], [ -95.692872069617863, 29.397240111780178 ], [ -95.692486070154374, 29.397366111759599 ], [ -95.692330069633215, 29.397413111523559 ], [ -95.692054069496038, 29.397485111743222 ], [ -95.691983070009641, 29.397499112329665 ], [ -95.69141206942038, 29.397612111783864 ], [ -95.691208070002574, 29.397635112246441 ], [ -95.690961069569823, 29.397652111807247 ], [ -95.690591068988041, 29.397636111760225 ], [ -95.690303069730419, 29.397632111554302 ], [ -95.690262069735439, 29.39763411192903 ], [ -95.689364068888551, 29.397741112180348 ], [ -95.68879006885993, 29.397780112167347 ], [ -95.688214068466152, 29.397785111672572 ], [ -95.687720068227449, 29.397804112338033 ], [ -95.68759706872234, 29.397800112220992 ], [ -95.687391068287084, 29.39780211174795 ], [ -95.686404068606052, 29.397760112151428 ], [ -95.68603606874845, 29.397719111839265 ], [ -95.685751068434612, 29.397681112283593 ], [ -95.685511067634692, 29.397632111799375 ], [ -95.685470068358001, 29.39762711234005 ], [ -95.685387067860958, 29.397627111732572 ], [ -95.685265067910535, 29.39763911239713 ], [ -95.685187067854997, 29.397661111962513 ], [ -95.685116067804515, 29.397698112497 ], [ -95.684987067566411, 29.397788111951527 ], [ -95.684845067522431, 29.39786111262293 ], [ -95.684732068070247, 29.397905111999957 ], [ -95.684577067466876, 29.397953112451038 ], [ -95.684497068326408, 29.397970112653603 ], [ -95.684171067778735, 29.398010112064984 ], [ -95.684131067422939, 29.398019112110436 ], [ -95.683704067224355, 29.398150112146361 ], [ -95.68343006737426, 29.398227112702639 ], [ -95.683225067465401, 29.398246112575841 ], [ -95.683019067009866, 29.398250112014306 ], [ -95.682649067288892, 29.398233112420559 ], [ -95.682444066947753, 29.398218112085754 ], [ -95.68219706726174, 29.398212112686206 ], [ -95.681828067241568, 29.3982301122503 ], [ -95.681583067621716, 29.39825511211847 ], [ -95.681178067143534, 29.398320112542422 ], [ -95.680649066971355, 29.398388112169922 ], [ -95.68036206732441, 29.398408112870047 ], [ -95.679950066741995, 29.398404112477049 ], [ -95.679827066715461, 29.398415112071813 ], [ -95.679740066962225, 29.39840411240543 ], [ -95.679581066833919, 29.398367112563065 ], [ -95.679357066768176, 29.39827611228155 ], [ -95.679252066452065, 29.398219112320319 ], [ -95.679221066959258, 29.398195112036085 ], [ -95.679144066878393, 29.398170112050018 ], [ -95.679107066283578, 29.398154112677268 ], [ -95.679003066589672, 29.398096112870874 ], [ -95.678772065996796, 29.397946112306801 ], [ -95.678741066669843, 29.397922112812033 ], [ -95.678685066750901, 29.397869112391128 ], [ -95.678620066212687, 29.39777711208308 ], [ -95.678602066269576, 29.397745112413286 ], [ -95.678471066227161, 29.397365111893652 ], [ -95.678404066149909, 29.397009112164458 ], [ -95.678397066007307, 29.396901112349646 ], [ -95.678418066551998, 29.396577112499887 ], [ -95.678457066303196, 29.396400112414216 ], [ -95.678451066593567, 29.396365111989429 ], [ -95.678382066522261, 29.396157111955262 ], [ -95.678329066043815, 29.39602011222167 ], [ -95.678219066685401, 29.395827111739713 ], [ -95.678102066174603, 29.395637111647861 ], [ -95.678003066459695, 29.395521111557208 ], [ -95.677804065840718, 29.395339112179304 ], [ -95.677773066529042, 29.395315111521732 ], [ -95.677706066150066, 29.395274112300402 ], [ -95.677527065559772, 29.395184111987902 ], [ -95.677338065969707, 29.395112111865803 ], [ -95.677123066376922, 29.395052111692944 ], [ -95.676922065334224, 29.395014111930539 ], [ -95.676758065646638, 29.394998112008679 ], [ -95.676596065660149, 29.394976111965612 ], [ -95.676473066017209, 29.394969111859371 ], [ -95.676308065662781, 29.394965111843785 ], [ -95.676267065315329, 29.394967111505132 ], [ -95.676187065922491, 29.394984112124455 ], [ -95.67607906605248, 29.395036111698438 ], [ -95.675775065082817, 29.395222111615222 ], [ -95.675013065831422, 29.395771111797302 ], [ -95.6746540648587, 29.396012112202232 ], [ -95.674451065475139, 29.396136111787683 ], [ -95.674382064722224, 29.396174112421235 ], [ -95.674067065001225, 29.396342112486966 ], [ -95.673499064835568, 29.396555111903261 ], [ -95.673316064889391, 29.396638112326922 ], [ -95.672994065039177, 29.396798112065731 ], [ -95.672727064933156, 29.39696711285584 ], [ -95.672352064425212, 29.397189112628027 ], [ -95.672019064909549, 29.397401112305609 ], [ -95.671829064628156, 29.397539112912579 ], [ -95.671737064862114, 29.397612112271869 ], [ -95.670887063920475, 29.398446113202745 ], [ -95.670685064402477, 29.398718112424188 ], [ -95.670603064326187, 29.398843113206159 ], [ -95.670548064301045, 29.398939112822838 ], [ -95.670418063816626, 29.399204113209315 ], [ -95.670264064473756, 29.399459112766973 ], [ -95.67024206400869, 29.399489113199628 ], [ -95.669922063947169, 29.399865113348561 ], [ -95.669865064278852, 29.399917113587385 ], [ -95.669799064337397, 29.399960113555785 ], [ -95.669778064431824, 29.400030112746197 ], [ -95.669745064174094, 29.400097112732432 ], [ -95.669564064461056, 29.400337113591526 ], [ -95.669438064474619, 29.400480113085219 ], [ -95.66922006410438, 29.400742112965382 ], [ -95.669068064058706, 29.400912113241858 ], [ -95.669009063652496, 29.400962113450234 ], [ -95.668941063987148, 29.40100311335593 ], [ -95.668922063601272, 29.401049113345927 ], [ -95.668904064014754, 29.401081113504191 ], [ -95.668859064181277, 29.401142113549106 ], [ -95.668578064130884, 29.401405113284302 ], [ -95.668217064189008, 29.401751113531958 ], [ -95.668064064073562, 29.401872113350084 ], [ -95.667749064101528, 29.402104113757538 ], [ -95.667680063366262, 29.402143113920197 ], [ -95.667569063855822, 29.402190113329045 ], [ -95.667514064189319, 29.402274113463776 ], [ -95.667396063602055, 29.402422113877037 ], [ -95.667103063549845, 29.402724113420263 ], [ -95.666958063850103, 29.402899113619867 ], [ -95.666826063226907, 29.403082113579281 ], [ -95.66674806375174, 29.403209113901486 ], [ -95.666612063866211, 29.403472114139426 ], [ -95.666604063854095, 29.403507114077048 ], [ -95.666576063697903, 29.40372211370542 ], [ -95.666562063210407, 29.403866113907682 ], [ -95.666533063938147, 29.404081113850449 ], [ -95.666517063955624, 29.404313114253963 ], [ -95.666501063218803, 29.404512113885517 ], [ -95.666450063892825, 29.404834114175809 ], [ -95.666447063569834, 29.405014113973035 ], [ -95.666462063532038, 29.405194114522093 ], [ -95.666476063428135, 29.405265114268165 ], [ -95.666593063819107, 29.40553411449784 ], [ -95.666791063907169, 29.40589111416379 ], [ -95.666804063670625, 29.405925114603637 ], [ -95.66685506356194, 29.405986114686733 ], [ -95.666918063563514, 29.406079114275734 ], [ -95.667088063732962, 29.406408114122435 ], [ -95.667211063942048, 29.406675114184136 ], [ -95.667292064076833, 29.406879114677597 ], [ -95.667332064354596, 29.407019114323546 ], [ -95.667344063495179, 29.407091114707654 ], [ -95.667353063391474, 29.407271115137632 ], [ -95.667345064222943, 29.407379114963479 ], [ -95.667328063728306, 29.407486114736123 ], [ -95.66730606425763, 29.40755511459988 ], [ -95.667265064367513, 29.407658115015387 ], [ -95.667243064352604, 29.407688114989114 ], [ -95.667137064218153, 29.407798114421691 ], [ -95.66696606333953, 29.407955114546958 ], [ -95.666875063565882, 29.408027114787892 ], [ -95.666358063892361, 29.408386115161392 ], [ -95.666083063196211, 29.40860311524624 ], [ -95.666015063436461, 29.408644114664774 ], [ -95.665943063748458, 29.408678115068778 ], [ -95.665925063336502, 29.408711114978491 ], [ -95.665881063502184, 29.408772114664647 ], [ -95.66577206399451, 29.408880115479416 ], [ -95.665700063027344, 29.408968115270699 ], [ -95.665648063964568, 29.409024114740745 ], [ -95.665630063570447, 29.409055115198349 ], [ -95.665623063825265, 29.409090114765423 ], [ -95.665536063261101, 29.409229115404049 ], [ -95.665434063476837, 29.409410115482274 ], [ -95.665370063965554, 29.409456115077983 ], [ -95.665286063608576, 29.409535115064571 ], [ -95.665223063936764, 29.409581115189436 ], [ -95.665020063877876, 29.409705115534766 ], [ -95.664911063134042, 29.409757114877738 ], [ -95.664836063282493, 29.409786115708421 ], [ -95.664762063121543, 29.40987211531565 ], [ -95.664547063499086, 29.410091115585054 ], [ -95.664035063004448, 29.410561115312245 ], [ -95.663740062618203, 29.410812115703141 ], [ -95.663678063311124, 29.410860115162553 ], [ -95.663478063106908, 29.410987115558132 ], [ -95.66325006328772, 29.411141115362181 ], [ -95.663013063138379, 29.411341115634816 ], [ -95.66276606280266, 29.411533116157216 ], [ -95.662439062472316, 29.411807115671575 ], [ -95.662413062336256, 29.411835115688344 ], [ -95.66232806268178, 29.41195911592742 ], [ -95.662265062813788, 29.412092115902826 ], [ -95.662211062356221, 29.412266116230565 ], [ -95.662174062984576, 29.412407115598981 ], [ -95.662161063091474, 29.412478116075576 ], [ -95.662151062552297, 29.412622115568286 ], [ -95.662164062395448, 29.412765115711977 ], [ -95.662211062691497, 29.412978115680829 ], [ -95.662251062554787, 29.413118115901661 ], [ -95.662498062647614, 29.413919115929318 ], [ -95.662571063078218, 29.414126116443725 ], [ -95.662769062811392, 29.414562115934991 ], [ -95.662794062903799, 29.414630115998648 ], [ -95.662814063542982, 29.414700116003573 ], [ -95.662846062847478, 29.414878116124058 ], [ -95.662842063479189, 29.41527511696744 ], [ -95.662796063450344, 29.415743116590402 ], [ -95.662716063389055, 29.416424117100977 ], [ -95.662600062849791, 29.417066117026611 ], [ -95.662572063315835, 29.417245117160334 ], [ -95.662556063522871, 29.417315116512786 ], [ -95.662543063332606, 29.417349116535451 ], [ -95.66246406295086, 29.417476117414957 ], [ -95.662411062598736, 29.417574117166502 ], [ -95.662253062703286, 29.417827116789795 ], [ -95.662046062854571, 29.418139116698619 ], [ -95.661831062930986, 29.418529117309404 ], [ -95.661703062824529, 29.418714117075396 ], [ -95.661690063203551, 29.418748117032486 ], [ -95.661648063237223, 29.418924117656225 ], [ -95.66162106316493, 29.418993117069299 ], [ -95.661546062527606, 29.419160117220013 ], [ -95.661421063211975, 29.419388117296158 ], [ -95.661071063217634, 29.419961117728157 ], [ -95.660944062294689, 29.420188117724091 ], [ -95.660862063322753, 29.420353117328059 ], [ -95.66075306263761, 29.420625117573444 ], [ -95.660622062789301, 29.420930118062447 ], [ -95.660618062925451, 29.420965117448812 ], [ -95.660627062782666, 29.421037117359713 ], [ -95.660632062949489, 29.42121711825212 ], [ -95.660659062578432, 29.421469118230391 ], [ -95.660723063271405, 29.421789118034297 ], [ -95.660782063052949, 29.421999118017997 ], [ -95.660788062770621, 29.422035117547139 ], [ -95.660775063251648, 29.422124117962618 ], [ -95.660710063342307, 29.422444118305116 ], [ -95.660665062582382, 29.422583118059809 ], [ -95.660635062820475, 29.422650117773234 ], [ -95.660579062370658, 29.422747118372179 ], [ -95.660534063056488, 29.422807118308175 ], [ -95.660483062436668, 29.422863118278073 ], [ -95.660345063208354, 29.422997117791354 ], [ -95.659980063088483, 29.423289118517324 ], [ -95.659849062729407, 29.423378118488372 ], [ -95.659715062651316, 29.423461118186445 ], [ -95.659467063086112, 29.423591118034484 ], [ -95.65932206266028, 29.423659118754887 ], [ -95.659225062406009, 29.423726118442548 ], [ -95.659049062279053, 29.423820118395852 ], [ -95.658935062399749, 29.423861118179648 ], [ -95.658778062041975, 29.423907118848543 ], [ -95.658660062663571, 29.423937118607068 ], [ -95.658438062107564, 29.424031118681743 ], [ -95.658324062090827, 29.424073118109096 ], [ -95.65812706177033, 29.424126118419665 ], [ -95.658007062311782, 29.424152118383457 ], [ -95.657976061859046, 29.424173118627412 ], [ -95.657877061951424, 29.424288118235488 ], [ -95.65776606240901, 29.424395118604881 ], [ -95.657704061924704, 29.424442118876115 ], [ -95.657597062468369, 29.424497118929466 ], [ -95.657376062214766, 29.424595118579408 ], [ -95.657262061773963, 29.424636118759551 ], [ -95.657184062423042, 29.424658118797627 ], [ -95.657104062095513, 29.424675118464322 ], [ -95.656900062191283, 29.424704118539363 ], [ -95.65673606226251, 29.424811118284019 ], [ -95.656632061612598, 29.424923118623433 ], [ -95.656514062134136, 29.425024118727396 ], [ -95.656413061887463, 29.425087118567365 ], [ -95.656342061504787, 29.425123118640503 ], [ -95.656303062049545, 29.425134118859539 ], [ -95.656099061442575, 29.425155119162042 ], [ -95.655937062078706, 29.425185118849651 ], [ -95.655858062223345, 29.42520511893791 ], [ -95.655665061872213, 29.425267118886094 ], [ -95.655585061502023, 29.425283118402731 ], [ -95.655466061721441, 29.425314118485016 ], [ -95.655346061853791, 29.425339118644096 ], [ -95.65518706113474, 29.425378119035223 ], [ -95.655123062004463, 29.425423119224593 ], [ -95.654939061202867, 29.425567119130815 ], [ -95.654707061416715, 29.425718119070837 ], [ -95.654455061260947, 29.425904118724027 ], [ -95.654212061330824, 29.426099119151399 ], [ -95.654159061812379, 29.426153118763388 ], [ -95.654087061176313, 29.426241118909136 ], [ -95.653908061101276, 29.426391119112708 ], [ -95.653843061329383, 29.426435118756679 ], [ -95.653785061716135, 29.426486118848867 ], [ -95.653595061622497, 29.42667611928459 ], [ -95.653465061499844, 29.426816119260234 ], [ -95.653407061482469, 29.426867119184823 ], [ -95.653246061455505, 29.426979119435053 ], [ -95.653176061445805, 29.427017118887619 ], [ -95.653102060931403, 29.427049119101802 ], [ -95.653070060733029, 29.427071119526094 ], [ -95.653043060836154, 29.427098119672269 ], [ -95.653012061404709, 29.427122119302716 ], [ -95.652909061498548, 29.427181119085908 ], [ -95.652872060616247, 29.42719711956175 ], [ -95.652711060809253, 29.427229119134964 ], [ -95.652424060688318, 29.427253119351832 ], [ -95.652178061242225, 29.427265119381001 ], [ -95.652014060376004, 29.427282119044026 ], [ -95.651812060517301, 29.427316119105914 ], [ -95.651773061019014, 29.427328119091904 ], [ -95.651661060470758, 29.4273721191826 ], [ -95.651552060566715, 29.427424118956942 ], [ -95.651403060938051, 29.427485119147331 ], [ -95.651364060297141, 29.427497118987677 ], [ -95.6512820606156, 29.427500119751503 ], [ -95.651077060461375, 29.427489119377586 ], [ -95.650747060389435, 29.4274861194008 ], [ -95.65070906059276, 29.427497119619321 ], [ -95.650574060623484, 29.427580119634559 ], [ -95.650450060558668, 29.427675119280305 ], [ -95.650337060857709, 29.427780119182778 ], [ -95.65030406012842, 29.427846119828956 ], [ -95.650160060097477, 29.428065119366263 ], [ -95.649978060884962, 29.428305119478271 ], [ -95.649915060189386, 29.428398119246559 ], [ -95.649865060363609, 29.428497119287993 ], [ -95.649852060661559, 29.428531119967023 ], [ -95.649824060644306, 29.428637119611551 ], [ -95.649767060462651, 29.428682119568844 ], [ -95.649636060223756, 29.42882111960224 ], [ -95.649567060780427, 29.428910119743783 ], [ -95.649448060175317, 29.429100120028274 ], [ -95.649425060342168, 29.429130120100954 ], [ -95.649245060154072, 29.429327120138627 ], [ -95.649191059722128, 29.429463120240349 ], [ -95.649119059888463, 29.429592119854778 ], [ -95.649033060525397, 29.429795120271521 ], [ -95.648891060552998, 29.430014119938392 ], [ -95.648866059674688, 29.430043120101661 ], [ -95.648837060299428, 29.430069119652405 ], [ -95.648744059781208, 29.430139119837904 ], [ -95.648707060240341, 29.430155120131207 ], [ -95.648514059789349, 29.430219120281425 ], [ -95.648392060179191, 29.430236119772552 ], [ -95.648310060515485, 29.430236120095955 ], [ -95.648146059790733, 29.430222120131969 ], [ -95.648065059997393, 29.430208119697951 ], [ -95.647983060150935, 29.430203119921526 ], [ -95.647860059629593, 29.430205120303192 ], [ -95.647737059996814, 29.430219119798789 ], [ -95.647614059401008, 29.430225119687744 ], [ -95.647532060082838, 29.430235120233771 ], [ -95.647414060094235, 29.430265120204471 ], [ -95.647273059786187, 29.430340120365621 ], [ -95.647074059617609, 29.430468119783004 ], [ -95.646880059337704, 29.430602119925432 ], [ -95.646810059521457, 29.430640119754685 ], [ -95.646734059650029, 29.430666120445615 ], [ -95.646532059244961, 29.430704120560932 ], [ -95.646245059552982, 29.430713119827825 ], [ -95.645878059397262, 29.430760120338014 ], [ -95.645758059220654, 29.430787120515099 ], [ -95.645719059797358, 29.430850120609232 ], [ -95.645670059030465, 29.430949119887611 ], [ -95.6456570588727, 29.430984120334656 ], [ -95.645639059286168, 29.431054119964436 ], [ -95.645605059048506, 29.431377120116956 ], [ -95.645601059382386, 29.431521120291048 ], [ -95.645608058888797, 29.43173812040855 ], [ -95.64560005934726, 29.431882120313336 ], [ -95.645583059560934, 29.432025120583511 ], [ -95.645579059234251, 29.432097120969939 ], [ -95.64557905919483, 29.432240120318497 ], [ -95.645459059110223, 29.432429120843274 ], [ -95.645325058947137, 29.432611120552178 ], [ -95.645157059439043, 29.43281612102691 ], [ -95.645026058866662, 29.432955120328991 ], [ -95.644912059536992, 29.433059120348222 ], [ -95.644844059399531, 29.433100121157391 ], [ -95.644700059680574, 29.433170121098104 ], [ -95.644590059087591, 29.433218121198074 ], [ -95.64421505948485, 29.433368120604136 ], [ -95.644138059337266, 29.433392120599088 ], [ -95.643913058893531, 29.433483120667027 ], [ -95.643804059244218, 29.433533121233211 ], [ -95.643735058731224, 29.43357212131113 ], [ -95.643608058968979, 29.433664121131518 ], [ -95.643580058651111, 29.433691121379709 ], [ -95.643559058596693, 29.433721121093633 ], [ -95.643536058935496, 29.433791121176689 ], [ -95.643522058655222, 29.433898121336163 ], [ -95.643520059478078, 29.434006120846664 ], [ -95.64351205877783, 29.434114121185193 ], [ -95.643500059062632, 29.434186120888519 ], [ -95.643497058471453, 29.434258121072286 ], [ -95.64351005858309, 29.43432912150616 ], [ -95.643539058866637, 29.43439612078976 ], [ -95.643563059007789, 29.434575121517124 ], [ -95.64362405864712, 29.434821121207211 ], [ -95.643762059114437, 29.435199121615213 ], [ -95.643836059301492, 29.435367121270971 ], [ -95.643856059561372, 29.435438121521592 ], [ -95.64387305907222, 29.435469121232398 ], [ -95.643937058790357, 29.43556112100104 ], [ -95.644422059203691, 29.436437121769892 ], [ -95.644486058989997, 29.436529121233569 ], [ -95.64450405953464, 29.436562121942703 ], [ -95.644514059198173, 29.43659612130055 ], [ -95.644563059626265, 29.436695121432958 ], [ -95.644663058951977, 29.436853121245708 ], [ -95.644765059747499, 29.436966121672057 ], [ -95.644879059739566, 29.437116121489254 ], [ -95.644899059838281, 29.437148121654481 ], [ -95.644977059833579, 29.437314121396177 ], [ -95.645009059653432, 29.437419121317912 ], [ -95.645015059880009, 29.437455121585163 ], [ -95.644964059607858, 29.437553121653057 ], [ -95.644844059596423, 29.43770012128207 ], [ -95.644757059530747, 29.437776121576846 ], [ -95.644693059460536, 29.437822121627416 ], [ -95.644611059270275, 29.437829121834071 ], [ -95.644407059287204, 29.437855121987763 ], [ -95.644246059711378, 29.437884122146745 ], [ -95.644049059503104, 29.437935121959612 ], [ -95.643971059712229, 29.437959122084379 ], [ -95.643629058719512, 29.438085122232721 ], [ -95.64347105918128, 29.438123121560867 ], [ -95.643349058606191, 29.438141122231137 ], [ -95.642979059127754, 29.438161121500666 ], [ -95.642816058955049, 29.438179122085337 ], [ -95.642735059132491, 29.438194122292764 ], [ -95.642572058834844, 29.438217121569664 ], [ -95.642378058807893, 29.43827812193901 ], [ -95.642127058917978, 29.438401121586953 ], [ -95.64209405842719, 29.438422122162294 ], [ -95.641957058320102, 29.438557122395206 ], [ -95.641871059104673, 29.438635121979498 ], [ -95.6417910591489, 29.438717122234472 ], [ -95.64166805826369, 29.438813122211901 ], [ -95.641563058411933, 29.438870121653778 ], [ -95.641527058955262, 29.438886121717072 ], [ -95.64129405809048, 29.438960122292197 ], [ -95.641142058158252, 29.439016121902348 ], [ -95.641044058993941, 29.438901122428792 ], [ -95.640964058259115, 29.43877512241119 ], [ -95.640835058239176, 29.438634121621103 ], [ -95.64081305866803, 29.438603122158252 ], [ -95.640649058066842, 29.438273121550303 ], [ -95.640629058016842, 29.438241121631414 ], [ -95.640605058373964, 29.438212121791604 ], [ -95.640514058368211, 29.438138122122535 ], [ -95.640408058502459, 29.43808312184791 ], [ -95.640334058646346, 29.438052122327619 ], [ -95.640137058755485, 29.437998122218765 ], [ -95.63997305772898, 29.437990121601871 ], [ -95.639643058277869, 29.437987122140829 ], [ -95.639150057555227, 29.438011122107273 ], [ -95.639109057509032, 29.438007121579542 ], [ -95.639029057873941, 29.437992121860432 ], [ -95.638839058364866, 29.437923122054929 ], [ -95.638721057517046, 29.437890121628268 ], [ -95.638559057881423, 29.437866121935638 ], [ -95.638477058000092, 29.437872121847072 ], [ -95.638438057773328, 29.437883122392549 ], [ -95.638211058126643, 29.4379681223623 ], [ -95.63791005746603, 29.43815812209456 ], [ -95.637723058147841, 29.438300121737544 ], [ -95.637585057276397, 29.438379122271638 ], [ -95.637452057499189, 29.438464122252903 ], [ -95.637035057572362, 29.438696122183245 ], [ -95.636741057694366, 29.438826122611275 ], [ -95.636432057738531, 29.438925122432689 ], [ -95.636281057509237, 29.438982122054959 ], [ -95.636202057489399, 29.439004121983508 ], [ -95.636162057814147, 29.439011122244537 ], [ -95.636121056925461, 29.439011122331827 ], [ -95.636039056810276, 29.4390001225483 ], [ -95.635959057696425, 29.438984122659658 ], [ -95.635842057673315, 29.438950122182742 ], [ -95.635762057203848, 29.438931122560497 ], [ -95.635648057422983, 29.438891122493189 ], [ -95.63508905670713, 29.438587121918005 ], [ -95.634842057296837, 29.438457122110208 ], [ -95.634711057067037, 29.43836912206763 ], [ -95.634639056695562, 29.438334122149815 ], [ -95.634439056610304, 29.43829412238879 ], [ -95.634323056761403, 29.438257121793047 ], [ -95.634172056698532, 29.438198122003666 ], [ -95.633912056966608, 29.438128122046027 ], [ -95.633857057016399, 29.438114122032285 ], [ -95.633695056958373, 29.438090121828555 ], [ -95.633571056446613, 29.438084122521069 ], [ -95.633325056089006, 29.438082122344813 ], [ -95.633165056879648, 29.437968122180678 ], [ -95.632976056410996, 29.437777122106006 ], [ -95.632721056522584, 29.437450122099555 ], [ -95.63260005659491, 29.437304121601098 ], [ -95.632517056260241, 29.437179121975298 ], [ -95.632442056363871, 29.437011122059275 ], [ -95.632330055987239, 29.436967121883104 ], [ -95.632212056158394, 29.436935122127764 ], [ -95.632136056188983, 29.436908122354527 ], [ -95.632107056147319, 29.436883121851874 ], [ -95.632009055889625, 29.436817121508426 ], [ -95.631819055720626, 29.436678121828965 ], [ -95.631700056430674, 29.436579121644495 ], [ -95.63140605604417, 29.436277121524135 ], [ -95.631282055565322, 29.436133121998644 ], [ -95.631203055678057, 29.436007122002433 ], [ -95.631171055957196, 29.435940121846784 ], [ -95.631143056298768, 29.435835121618293 ], [ -95.631133055942087, 29.435763122171245 ], [ -95.631131056127927, 29.435583121917478 ], [ -95.631159055917436, 29.435515122028953 ], [ -95.631192056154433, 29.435449121304448 ], [ -95.63125405545334, 29.435355121677627 ], [ -95.631324056144948, 29.435266121538557 ], [ -95.631494055658948, 29.434979121605984 ], [ -95.631520055470247, 29.434910121592587 ], [ -95.631556055751076, 29.434733121530584 ], [ -95.631577055893828, 29.434445121388524 ], [ -95.631607056363976, 29.434267121478978 ], [ -95.631615056240918, 29.434159121519091 ], [ -95.631641055628606, 29.434053121768912 ], [ -95.6316550560134, 29.433946121644315 ], [ -95.631655055904204, 29.433909121038425 ], [ -95.631646056411569, 29.43383412108691 ], [ -95.631679055451656, 29.433729121089208 ], [ -95.631692055504061, 29.43362212100423 ], [ -95.631691056175967, 29.433550121095248 ], [ -95.631634055467359, 29.43319312121076 ], [ -95.631607055389978, 29.433125121563418 ], [ -95.631589055426375, 29.43309212079631 ], [ -95.631454055851748, 29.432911121274572 ], [ -95.63133505622541, 29.4327641208716 ], [ -95.631155056020631, 29.432481121195675 ], [ -95.631030055524121, 29.432253121101514 ], [ -95.630982055894577, 29.432115120884262 ], [ -95.63096505548333, 29.432082120858471 ], [ -95.630941055841205, 29.432053120950435 ], [ -95.630935055848298, 29.43201912111838 ], [ -95.630938055337666, 29.431978120582688 ], [ -95.630942055833287, 29.43194712075147 ], [ -95.630957055643307, 29.431876121043732 ], [ -95.630965055389368, 29.431696121041494 ], [ -95.631045055740771, 29.431196121126494 ], [ -95.631050055144229, 29.431124120833235 ], [ -95.631069055979239, 29.430981120904239 ], [ -95.631079056075052, 29.430765120314362 ], [ -95.631076055673375, 29.430477120331531 ], [ -95.631047055410107, 29.430335120245225 ], [ -95.631024055097399, 29.430265120784163 ], [ -95.630896056076494, 29.430039120913317 ], [ -95.630735055885964, 29.429787120908429 ], [ -95.630702055259093, 29.429722120861161 ], [ -95.630682055978369, 29.429652120304269 ], [ -95.630666055616871, 29.429544120526387 ], [ -95.630694055332071, 29.429439120051853 ], [ -95.630707055359622, 29.429405120185166 ], [ -95.630783055757092, 29.429277120867418 ], [ -95.630851055309407, 29.429187120877373 ], [ -95.630981055046547, 29.429047120439794 ], [ -95.631119055474883, 29.428913120475826 ], [ -95.631178055994809, 29.428863120133904 ], [ -95.631455055969184, 29.428647119991084 ], [ -95.63167505549805, 29.428485120419538 ], [ -95.631702055362211, 29.42845811993357 ], [ -95.631774055517042, 29.428370120520192 ], [ -95.631816056185443, 29.428308119791257 ], [ -95.631868055508733, 29.428210119785124 ], [ -95.631926055341708, 29.428037119796215 ], [ -95.63193705613044, 29.427965120047208 ], [ -95.631930055406812, 29.42785711989676 ], [ -95.631897055673619, 29.427792120148212 ], [ -95.631855055492665, 29.427729120306442 ], [ -95.631750055783314, 29.427618119695051 ], [ -95.631662055357722, 29.427543120338889 ], [ -95.631598055897868, 29.427497119891889 ], [ -95.631528055959834, 29.427458119965127 ], [ -95.631310055281347, 29.427357120262155 ], [ -95.630994055162333, 29.427188120237513 ], [ -95.630804055933027, 29.427118119806874 ], [ -95.630713055192587, 29.427045120254402 ], [ -95.630685055211075, 29.42701811984827 ], [ -95.630663055069959, 29.42698811956144 ], [ -95.630589055397223, 29.426859119882323 ], [ -95.630575055400215, 29.426825120360959 ], [ -95.630548055865063, 29.42671911955053 ], [ -95.630550054829072, 29.426647120244048 ], [ -95.630563054835363, 29.426576119719932 ], [ -95.630574055214737, 29.426542119957524 ], [ -95.630615055609809, 29.426479119461401 ], [ -95.630670055045314, 29.426426119918837 ], [ -95.631056055894788, 29.426156120215801 ], [ -95.631125055340178, 29.42611612012896 ], [ -95.6312330554195, 29.426065119852062 ], [ -95.631345055558683, 29.426020119367521 ], [ -95.631490055079681, 29.425951119419288 ], [ -95.631630056032577, 29.425875119376414 ], [ -95.631765055279445, 29.425792120078345 ], [ -95.631800055529695, 29.425774119724114 ], [ -95.631870056096787, 29.425728120057688 ], [ -95.632189055268313, 29.425658119356136 ], [ -95.632393056012646, 29.425629119809397 ], [ -95.63259305566072, 29.425586119679931 ], [ -95.632875055995427, 29.425538119632797 ], [ -95.633074055808265, 29.425492119270412 ], [ -95.633190055929077, 29.425455119225553 ], [ -95.633377056470323, 29.425379119722741 ], [ -95.633513055944576, 29.425297119708596 ], [ -95.633544056480972, 29.42527311910592 ], [ -95.633600055949543, 29.425220119235895 ], [ -95.633671056121912, 29.425132119819306 ], [ -95.633740056530726, 29.425002119049406 ], [ -95.633798056504858, 29.424829119180771 ], [ -95.633813056382252, 29.424758119140026 ], [ -95.633798055611365, 29.424506119505743 ], [ -95.633790055619201, 29.424470119580395 ], [ -95.633704055645651, 29.424192119691373 ], [ -95.633496056159089, 29.423570119400047 ], [ -95.633446055978268, 29.423432119053011 ], [ -95.633386055911842, 29.423298119100192 ], [ -95.633350055463225, 29.423195119002116 ], [ -95.633298055967288, 29.422983119214972 ], [ -95.633274055766464, 29.422804119361793 ], [ -95.633268056187418, 29.422696119172642 ], [ -95.633271055391205, 29.422624118862444 ], [ -95.633304055414555, 29.42241011855365 ], [ -95.633351055599164, 29.422161118785755 ], [ -95.633462055656778, 29.421665118377707 ], [ -95.633560055790966, 29.42105911869389 ], [ -95.633589055727555, 29.42062611861828 ], [ -95.633552055610963, 29.420413118529108 ], [ -95.633466055303842, 29.420172118854321 ], [ -95.633376055956489, 29.42001011886391 ], [ -95.633314055698378, 29.419876118870796 ], [ -95.633175056006166, 29.419698118342641 ], [ -95.633123055816753, 29.419641118566162 ], [ -95.633035056149765, 29.419566118074691 ], [ -95.632958055732345, 29.419481118780791 ], [ -95.632898055368514, 29.419387118713352 ], [ -95.63284305534728, 29.419290118725101 ], [ -95.632778056023909, 29.419157117906998 ], [ -95.632406055141161, 29.418318117781677 ], [ -95.63207305488497, 29.417619118432516 ], [ -95.631840055268171, 29.417118117609839 ], [ -95.631554055463226, 29.416519118080245 ], [ -95.631207054886218, 29.415825117588554 ], [ -95.631117054633108, 29.415663117548693 ], [ -95.63102605480708, 29.415542117985296 ], [ -95.631000054865851, 29.415514117254677 ], [ -95.630913055057277, 29.415438117674217 ], [ -95.630894055384445, 29.415407117914011 ], [ -95.630866054491065, 29.415381117554407 ], [ -95.630772054906515, 29.415311117390218 ], [ -95.630662055123054, 29.415264117163776 ], [ -95.63048105468647, 29.415175117393556 ], [ -95.630377055112177, 29.41513611800508 ], [ -95.630067054821936, 29.414959117360191 ], [ -95.630005054613392, 29.414911117206238 ], [ -95.629903054547185, 29.414798117661984 ], [ -95.629851054680472, 29.414699117592015 ], [ -95.629811054414077, 29.414597117442934 ], [ -95.629726054934125, 29.414319117614443 ], [ -95.629535054847594, 29.413618117714645 ], [ -95.629517054701182, 29.413474116885318 ], [ -95.629529055020129, 29.413330116821673 ], [ -95.62957205400258, 29.413191117369717 ], [ -95.629618054626832, 29.413091117125202 ], [ -95.629642054828139, 29.41306211685238 ], [ -95.629781054083821, 29.412928117424403 ], [ -95.629844054756148, 29.412882117368433 ], [ -95.630012054848962, 29.412778117141389 ], [ -95.630083054312095, 29.41274211740415 ], [ -95.630161054927584, 29.412718116676604 ], [ -95.63019605414874, 29.412701116947769 ], [ -95.630659054702519, 29.412400117078299 ], [ -95.630905055315864, 29.412208116673547 ], [ -95.631315054565718, 29.41185511640543 ], [ -95.631680054534684, 29.411512117090933 ], [ -95.631833054772088, 29.411392116358428 ], [ -95.631860055208477, 29.411365116791149 ], [ -95.631873055028379, 29.411324116501412 ], [ -95.631927055364997, 29.411276116527059 ], [ -95.631960054810179, 29.411248116434585 ], [ -95.632037055434182, 29.411163116269694 ], [ -95.63211805527142, 29.411081116327452 ], [ -95.632231054669717, 29.410976117071733 ], [ -95.632310055093001, 29.410893116975334 ], [ -95.632474055151576, 29.41073211622097 ], [ -95.632708055039402, 29.410528116700903 ], [ -95.632731054742848, 29.410499116845497 ], [ -95.632784055499471, 29.410401116404056 ], [ -95.632827055481073, 29.410340116356025 ], [ -95.633036055454326, 29.410116116232555 ], [ -95.633145055197247, 29.409964116783332 ], [ -95.633209055059922, 29.409792116700785 ], [ -95.633228055359851, 29.409722116514796 ], [ -95.633243055308583, 29.409579116138644 ], [ -95.633237055673959, 29.409543115937232 ], [ -95.633140054943723, 29.409344116695021 ], [ -95.633121055661121, 29.409312116147692 ], [ -95.632940054727086, 29.40907111661625 ], [ -95.632890054930556, 29.409014116395245 ], [ -95.632754055225163, 29.40887811611525 ], [ -95.632682055591673, 29.408790116427451 ], [ -95.632480054825493, 29.408563116135085 ], [ -95.632175054975335, 29.408269116203705 ], [ -95.632069055357803, 29.408159116095252 ], [ -95.631973054486366, 29.408090115879286 ], [ -95.631939054918135, 29.408071116280446 ], [ -95.631901054733575, 29.408056115725934 ], [ -95.63182005510096, 29.408046116394775 ], [ -95.631697054652392, 29.408048115684409 ], [ -95.63161505481267, 29.408059116174467 ], [ -95.631576054681389, 29.408068115980303 ], [ -95.631500054277296, 29.408097116395361 ], [ -95.631392054848661, 29.408149115848218 ], [ -95.631324054301317, 29.408190115983253 ], [ -95.631062054536969, 29.408365115833053 ], [ -95.630924054638697, 29.408444116263446 ], [ -95.630833055103324, 29.408516116065133 ], [ -95.630729054411901, 29.408628115807783 ], [ -95.630665054147826, 29.408720115866764 ], [ -95.630529055037897, 29.408901116664222 ], [ -95.630294055020741, 29.409281116660651 ], [ -95.630113054189025, 29.40956411600045 ], [ -95.63002905478433, 29.409688116496042 ], [ -95.630004054372918, 29.409716116697602 ], [ -95.629888054846106, 29.409819116595006 ], [ -95.629642054853392, 29.410010116763114 ], [ -95.629575054418154, 29.410051116913966 ], [ -95.629431054568727, 29.410122116538947 ], [ -95.629318054240315, 29.410164116457448 ], [ -95.629238053983784, 29.410183116797569 ], [ -95.629197054392847, 29.41018511664171 ], [ -95.629115054434962, 29.410177116970829 ], [ -95.628994054156109, 29.410158116579133 ], [ -95.628837053881057, 29.410115116712603 ], [ -95.628644054086365, 29.41005311628474 ], [ -95.62856805426685, 29.410025116369994 ], [ -95.628233054541752, 29.409887116263402 ], [ -95.627907054031425, 29.409734116166565 ], [ -95.627805053708784, 29.409674116401657 ], [ -95.627688053390742, 29.409573116292126 ], [ -95.627661053745044, 29.409545116654243 ], [ -95.627570054151207, 29.409425116346686 ], [ -95.627502053698009, 29.409255116142223 ], [ -95.627486053329804, 29.409184116233586 ], [ -95.627464054118121, 29.409005116359982 ], [ -95.627461053291967, 29.408609116605991 ], [ -95.627472053635444, 29.408393116189767 ], [ -95.627519053556625, 29.407928116521301 ], [ -95.627526053995197, 29.407784116540224 ], [ -95.627535053681001, 29.407712115981344 ], [ -95.627578053386799, 29.407537116401734 ], [ -95.627594053737965, 29.407503115800061 ], [ -95.627618054232912, 29.407474115888899 ], [ -95.627757053878653, 29.407342116200713 ], [ -95.627827053435311, 29.407304115584427 ], [ -95.627865053346071, 29.407289115876672 ], [ -95.627926053864584, 29.407250116157165 ], [ -95.627962053622809, 29.407232115956521 ], [ -95.628125053366873, 29.40712211637414 ], [ -95.628185054220523, 29.407073115791558 ], [ -95.628373053877979, 29.406883116312375 ], [ -95.628417054025817, 29.406822115792146 ], [ -95.62849705401851, 29.406696116039782 ], [ -95.628557053720627, 29.406562115409226 ], [ -95.628622054106742, 29.406391115633141 ], [ -95.628653053703815, 29.406287115353003 ], [ -95.628743054363213, 29.406048116051512 ], [ -95.628750054150402, 29.406012116114947 ], [ -95.628760053702464, 29.405833115488893 ], [ -95.628788053876406, 29.405691116095703 ], [ -95.628843053713624, 29.405556115310272 ], [ -95.628874053779285, 29.405451115722126 ], [ -95.628945054335844, 29.40517011515319 ], [ -95.628957053897878, 29.405135115223644 ], [ -95.629002053594874, 29.405035115133561 ], [ -95.629017053898096, 29.404964115386225 ], [ -95.629100054087942, 29.404762115042338 ], [ -95.629175053720303, 29.40463411560556 ], [ -95.629320053993865, 29.40441511580379 ], [ -95.629344054306316, 29.404386115593017 ], [ -95.629400053856401, 29.404333115720689 ], [ -95.629528054255786, 29.40424311540642 ], [ -95.629567054047584, 29.404232114976772 ], [ -95.629771053737173, 29.404211115385767 ], [ -95.630002054603082, 29.404136115380254 ], [ -95.630199054082652, 29.404084115589441 ], [ -95.630345054402923, 29.404017114995252 ], [ -95.630412054672462, 29.403976115421564 ], [ -95.630534054535232, 29.403880115188795 ], [ -95.630637054882769, 29.403769114920635 ], [ -95.630693054498892, 29.403717115598543 ], [ -95.630821053993174, 29.403575115243171 ], [ -95.630984054019848, 29.403414115490847 ], [ -95.631168054840117, 29.403269115516522 ], [ -95.631329054033685, 29.403158114810743 ], [ -95.63147605440507, 29.403093115118619 ], [ -95.631665055062683, 29.403023115118451 ], [ -95.631745054561065, 29.403006114673456 ], [ -95.63182705443117, 29.402995115099866 ], [ -95.631906054763846, 29.402976115196818 ], [ -95.632107055220303, 29.402939115006291 ], [ -95.632306054783427, 29.402893114894077 ], [ -95.632540055115072, 29.402823114881361 ], [ -95.632844054623106, 29.402714114749784 ], [ -95.632946055239316, 29.402653114909519 ], [ -95.633063055075283, 29.402553114769763 ], [ -95.633111054598743, 29.402494114665775 ], [ -95.633190054673022, 29.402368115009132 ], [ -95.633224055192571, 29.402302114550814 ], [ -95.633259054862108, 29.402199115013605 ], [ -95.633265054917601, 29.40216311493031 ], [ -95.6332690544629, 29.40209111522962 ], [ -95.633275054635703, 29.402056114413568 ], [ -95.633274055310181, 29.401912114687537 ], [ -95.633262054559424, 29.401587114973793 ], [ -95.633250055403522, 29.401467114514148 ], [ -95.633188055255729, 29.401374114317598 ], [ -95.633160055392892, 29.401306114484271 ], [ -95.633126055166571, 29.401240114420979 ], [ -95.633104054844537, 29.401171114942183 ], [ -95.633051055198408, 29.401035114147046 ], [ -95.632987054699242, 29.40094311411492 ], [ -95.632892055042348, 29.400825114175749 ], [ -95.632760054341873, 29.400687114652644 ], [ -95.632702054760841, 29.400636114733484 ], [ -95.632670055049346, 29.400614114617923 ], [ -95.632494054366177, 29.400521114882974 ], [ -95.632384054169577, 29.400473114492559 ], [ -95.632229054547309, 29.40042611473163 ], [ -95.631950054227048, 29.400365114136346 ], [ -95.631792054695765, 29.400324114118511 ], [ -95.631273054188171, 29.400213114211454 ], [ -95.631075054492896, 29.400163114494809 ], [ -95.630915054420754, 29.400131114110533 ], [ -95.630752054486635, 29.4001101146123 ], [ -95.630670054013834, 29.400112114649112 ], [ -95.630629054679005, 29.400118114613047 ], [ -95.630511054278884, 29.400151114902368 ], [ -95.630439054364018, 29.40018511441026 ], [ -95.630371054573644, 29.400226114913917 ], [ -95.630195053765391, 29.400377114476285 ], [ -95.630140053624132, 29.400430114601516 ], [ -95.630042054549818, 29.400496114854839 ], [ -95.62997105435754, 29.4005331145827 ], [ -95.629740054386076, 29.400608114398739 ], [ -95.629478054220314, 29.400713114450571 ], [ -95.629205053632774, 29.400791114261416 ], [ -95.628898053543153, 29.400895114347282 ], [ -95.628819054198374, 29.400914114281715 ], [ -95.6287470542092, 29.400949114873423 ], [ -95.628592053656547, 29.400997114285893 ], [ -95.628367053885569, 29.401085114731689 ], [ -95.62811005312652, 29.401198115186258 ], [ -95.627967053344037, 29.401271115176439 ], [ -95.627813053300954, 29.401390114887192 ], [ -95.627710053298983, 29.401502115022904 ], [ -95.627607053060444, 29.401657115136945 ], [ -95.627570053373162, 29.401722115065112 ], [ -95.627526053712756, 29.401823114881136 ], [ -95.627506053072693, 29.401893115323357 ], [ -95.627492053388622, 29.402036115407437 ], [ -95.627497053368927, 29.40210811487416 ], [ -95.627496053304171, 29.402216115117987 ], [ -95.627468053934464, 29.402394115043244 ], [ -95.627439053252104, 29.402500115396119 ], [ -95.627377053198458, 29.402671114657881 ], [ -95.627340052969132, 29.402736115413056 ], [ -95.627172053232769, 29.40298411482566 ], [ -95.626993053933631, 29.403225114817129 ], [ -95.626940053641121, 29.403280114889707 ], [ -95.626763053189336, 29.403443114872179 ], [ -95.626701053811075, 29.403491115603305 ], [ -95.6265980536227, 29.403550114976703 ], [ -95.626483053050606, 29.403588115338952 ], [ -95.626365053317429, 29.403619115369285 ], [ -95.626324053267354, 29.403624115667874 ], [ -95.626201053609563, 29.40362311559694 ], [ -95.626080053552258, 29.403644115504761 ], [ -95.626039053397861, 29.403646115205657 ], [ -95.625793052874741, 29.403641115693215 ], [ -95.625547052942466, 29.403619115568425 ], [ -95.625383052848335, 29.40361011528649 ], [ -95.62518005294902, 29.403579115593519 ], [ -95.625016052871004, 29.403567115252677 ], [ -95.624730052862944, 29.403591115043181 ], [ -95.624165052719775, 29.403687115583757 ], [ -95.624085052342309, 29.403704115120195 ], [ -95.623815052648339, 29.403790115514944 ], [ -95.623549052381748, 29.403884115865448 ], [ -95.623185052134758, 29.40412011585056 ], [ -95.623080052343965, 29.404176115652824 ], [ -95.6227180519179, 29.404341115898081 ], [ -95.622581052768098, 29.404419115779927 ], [ -95.622178052691311, 29.40466211534828 ], [ -95.62198205218624, 29.404791115634506 ], [ -95.621888052431686, 29.404881116061624 ], [ -95.621803052372925, 29.404957116065372 ], [ -95.621654052605862, 29.405079115882 ], [ -95.621562052488713, 29.405149115435528 ], [ -95.621462052532237, 29.405211116058595 ], [ -95.621292051837131, 29.405309116213623 ], [ -95.621057051803831, 29.405451116288724 ], [ -95.620918052026212, 29.405526115737079 ], [ -95.620855051745025, 29.405571115981239 ], [ -95.6206890517565, 29.405672116049082 ], [ -95.620547051528845, 29.405743116135934 ], [ -95.620479052233932, 29.405782115942824 ], [ -95.620442051689807, 29.405798115561101 ], [ -95.620366051753948, 29.4058231162408 ], [ -95.620329052178448, 29.405840116023356 ], [ -95.620103051878758, 29.405923116464503 ], [ -95.61998705138663, 29.405956115874627 ], [ -95.619823051293793, 29.405969116213878 ], [ -95.619619051449263, 29.405966115603011 ], [ -95.619339051784365, 29.40591011591982 ], [ -95.619259052020595, 29.405891116424179 ], [ -95.619111051045905, 29.405832116009883 ], [ -95.61879305188009, 29.405667115606153 ], [ -95.618574051550141, 29.405571115722989 ], [ -95.618500051416831, 29.405542116142112 ], [ -95.618250051522935, 29.405419115883408 ], [ -95.618100051685147, 29.405363115653714 ], [ -95.618061051066121, 29.405353116383122 ], [ -95.61794905074855, 29.40531211602476 ], [ -95.617841050749476, 29.405264115501179 ], [ -95.6176300506134, 29.405152116234763 ], [ -95.617378051429625, 29.405034115949725 ], [ -95.617303050965688, 29.40500611578938 ], [ -95.617199050882007, 29.40494911612673 ], [ -95.617067051251851, 29.4048641162208 ], [ -95.616944051100901, 29.404769115905765 ], [ -95.616825050874937, 29.40462311599838 ], [ -95.616784050680366, 29.404561115434884 ], [ -95.616758051377161, 29.404493115697015 ], [ -95.616745050791693, 29.404422116224776 ], [ -95.616739051151313, 29.404314115380956 ], [ -95.616762051325935, 29.404208115798188 ], [ -95.616811051056217, 29.404110115590989 ], [ -95.616945050608933, 29.403973115738935 ], [ -95.617258050490037, 29.403687115384979 ], [ -95.617365050644068, 29.403578115635479 ], [ -95.617458050582911, 29.403461115421926 ], [ -95.617518050691174, 29.403366115226852 ], [ -95.617603050691855, 29.403165115394593 ], [ -95.617763050840338, 29.402835115637092 ], [ -95.61778205114301, 29.402766115696785 ], [ -95.617795051568379, 29.4026581150504 ], [ -95.61782605073671, 29.402555115322603 ], [ -95.617840051300533, 29.40248411566224 ], [ -95.617845051376321, 29.402412115319056 ], [ -95.617864050932866, 29.402269115283197 ], [ -95.617884050743299, 29.402162115164852 ], [ -95.61790505072041, 29.40209311530618 ], [ -95.617919051166254, 29.402022115631912 ], [ -95.617916051221826, 29.401915115152839 ], [ -95.617897051192088, 29.401808115595589 ], [ -95.617894050669477, 29.401736114788466 ], [ -95.617881050676402, 29.401665115419455 ], [ -95.617850051377744, 29.401561114817067 ], [ -95.617836050768915, 29.401527115406168 ], [ -95.617772051086874, 29.401434114823424 ], [ -95.617725050747922, 29.401376114844332 ], [ -95.617659051189136, 29.401245114781016 ], [ -95.617595050784303, 29.40115211498475 ], [ -95.617556051317834, 29.401050115076096 ], [ -95.617509051295698, 29.400951115189269 ], [ -95.617468051154233, 29.400888115502177 ], [ -95.617423051151562, 29.400829115354195 ], [ -95.617326050874837, 29.400670114751218 ], [ -95.617192050829672, 29.400409115039967 ], [ -95.617089050502528, 29.400254114557502 ], [ -95.617030050996078, 29.400158115162156 ], [ -95.616893050495804, 29.399898115066922 ], [ -95.616763050142268, 29.399673114967982 ], [ -95.616747050349375, 29.399639114406206 ], [ -95.616731051024914, 29.399579114788235 ], [ -95.616661050695129, 29.399490114775841 ], [ -95.616619050924641, 29.399389114495239 ], [ -95.616557050723955, 29.399256114577053 ], [ -95.616520050956169, 29.399117114348279 ], [ -95.616515050418201, 29.399082114285395 ], [ -95.61652105033572, 29.39893811511061 ], [ -95.616532050691873, 29.398831114534055 ], [ -95.616540051060298, 29.398796114447567 ], [ -95.616575051046325, 29.398692115052039 ], [ -95.61660805096578, 29.398626114851002 ], [ -95.616660050491603, 29.398571115060314 ], [ -95.616785050661093, 29.398477114143141 ], [ -95.616858050897989, 29.398444114924907 ], [ -95.617013050411089, 29.398397114771651 ], [ -95.617375050587555, 29.398336114649698 ], [ -95.617580050305975, 29.398326114184634 ], [ -95.617697051054378, 29.398295114721872 ], [ -95.617772050355754, 29.398269114505887 ], [ -95.61781305085249, 29.398263114905397 ], [ -95.61822405081395, 29.398241114756551 ], [ -95.618264050820898, 29.398248114483611 ], [ -95.618384051312844, 29.39825811441764 ], [ -95.618425050674048, 29.398254114043191 ], [ -95.618547050964949, 29.398264114831665 ], [ -95.618705051373439, 29.398290114647796 ], [ -95.618745051580419, 29.398293114448688 ], [ -95.618825050695591, 29.398306114283375 ], [ -95.618947051312517, 29.398310114582465 ], [ -95.619110051295763, 29.39831011418541 ], [ -95.619232051493626, 29.398296114728321 ], [ -95.619352051061526, 29.398275114753684 ], [ -95.619542051574896, 29.398206114026703 ], [ -95.619649051115374, 29.39815311403925 ], [ -95.619850051642743, 29.398028114562052 ], [ -95.619969051861034, 29.397931114497961 ], [ -95.620054051693984, 29.397852114259678 ], [ -95.620130051376677, 29.397768114558549 ], [ -95.620152050938415, 29.397738114768284 ], [ -95.620240051742371, 29.397509114056433 ], [ -95.620255051245053, 29.397465114280532 ], [ -95.620268051594479, 29.397394114320647 ], [ -95.620300051754867, 29.39729011392145 ], [ -95.620377051513088, 29.3971251146477 ], [ -95.620414051104191, 29.397060113877579 ], [ -95.620456050992829, 29.39700011415006 ], [ -95.620587051740173, 29.396778114199087 ], [ -95.620697051862322, 29.396627113839493 ], [ -95.620781051559675, 29.396473113771883 ], [ -95.620848051948983, 29.396430114117383 ], [ -95.620878052063247, 29.396405114457856 ], [ -95.620949051674742, 29.396318113626645 ], [ -95.62100405138581, 29.396264114294265 ], [ -95.621071051531132, 29.396223113967064 ], [ -95.621215051288914, 29.396155114118169 ], [ -95.621384051437801, 29.39605511390338 ], [ -95.621439051837939, 29.39600111351367 ], [ -95.621488051861149, 29.395944114205303 ], [ -95.621599052204218, 29.395839113854915 ], [ -95.621647052198128, 29.39578111428953 ], [ -95.621705051315672, 29.39568611402532 ], [ -95.621753051571758, 29.395588113876759 ], [ -95.621797051881998, 29.39541311391336 ], [ -95.62180605166381, 29.395198113314301 ], [ -95.62178805211434, 29.395056113699642 ], [ -95.621763051817453, 29.394987113777137 ], [ -95.621726052017877, 29.394924113653765 ], [ -95.621656051632343, 29.394836113681272 ], [ -95.621628051409672, 29.394810113816948 ], [ -95.621582051858852, 29.394750113910639 ], [ -95.621406051588721, 29.39455211340255 ], [ -95.621387051417855, 29.394520113628943 ], [ -95.621305052056769, 29.394440113583343 ], [ -95.621240051718331, 29.394349113912188 ], [ -95.621209051717187, 29.394283113294122 ], [ -95.621198051639425, 29.39424911340382 ], [ -95.621113051642183, 29.394126113833696 ], [ -95.621096051396265, 29.394094113173171 ], [ -95.621084051506145, 29.394059113973139 ], [ -95.621049051196167, 29.393994113342011 ], [ -95.621021051000056, 29.393927113496087 ], [ -95.620889051920898, 29.393512113326874 ], [ -95.620844051195647, 29.393338113337286 ], [ -95.620714051871644, 29.392996112936469 ], [ -95.620636051763412, 29.392754113473433 ], [ -95.620572051729866, 29.392622113598676 ], [ -95.6205320508586, 29.392560113112896 ], [ -95.620500050948863, 29.392494113152665 ], [ -95.620489051326004, 29.392459113021779 ], [ -95.620460051040297, 29.392392112980851 ], [ -95.620438050971742, 29.392361113103757 ], [ -95.620385050997839, 29.392264113267043 ], [ -95.620374051410465, 29.392230113297355 ], [ -95.620338051272952, 29.392165113300926 ], [ -95.620225051707422, 29.39193711277737 ], [ -95.620150051181525, 29.391730112778816 ], [ -95.620134051474253, 29.391697112749341 ], [ -95.620089050915595, 29.39163711315787 ], [ -95.61996705068168, 29.391492112793713 ], [ -95.619854050628618, 29.391263112608197 ], [ -95.619806050820259, 29.391206113317082 ], [ -95.619727050767722, 29.391124112828727 ], [ -95.619642050673988, 29.391046112713152 ], [ -95.619511051414491, 29.390960112695719 ], [ -95.619362050428961, 29.390899113280756 ], [ -95.619283050927223, 29.39087911333451 ], [ -95.619207051158284, 29.390853113341009 ], [ -95.619095050953945, 29.390808112762855 ], [ -95.619016050502879, 29.390789112804548 ], [ -95.618894050943382, 29.390775113338183 ], [ -95.618813051256865, 29.390774112686383 ], [ -95.618731050444765, 29.390779112945591 ], [ -95.618581050777024, 29.390835113050027 ], [ -95.618472050462529, 29.390886113399592 ], [ -95.618414050833621, 29.390937112824311 ], [ -95.618335051184758, 29.391020113022343 ], [ -95.618264051170684, 29.391149113459313 ], [ -95.61816105053596, 29.391383113125492 ], [ -95.618153050270635, 29.391418113326669 ], [ -95.618136050541921, 29.391451112692316 ], [ -95.618086050927261, 29.391507113295514 ], [ -95.618052050302438, 29.391528113202579 ], [ -95.617897050415166, 29.391574113254979 ], [ -95.617816050417176, 29.391587113532246 ], [ -95.617735050670092, 29.391595112899786 ], [ -95.617613050758919, 29.391613113314811 ], [ -95.617129050406973, 29.391698112751985 ], [ -95.616981050886309, 29.391760113181682 ], [ -95.616862050626537, 29.391788113033886 ], [ -95.616781050425303, 29.391799113240683 ], [ -95.616741050043998, 29.391808113057003 ], [ -95.616626050527387, 29.391845113645758 ], [ -95.616508050773291, 29.391876112885448 ], [ -95.616306050611925, 29.39190811360605 ], [ -95.616100050396099, 29.391917113351955 ], [ -95.616059049866948, 29.391913113340042 ], [ -95.615973049688435, 29.391870113246554 ], [ -95.615822049661048, 29.391748113585706 ], [ -95.615739049625304, 29.391669113613471 ], [ -95.615660050471746, 29.391585113034971 ], [ -95.615638049865069, 29.391555113384797 ], [ -95.61561804960084, 29.391486113420662 ], [ -95.615609049876312, 29.391414112863277 ], [ -95.615616049546048, 29.391343112756047 ], [ -95.615646049855783, 29.391238112974722 ], [ -95.615661049683069, 29.391205112856497 ], [ -95.615719049835391, 29.391109113090778 ], [ -95.615801050500608, 29.390945113171025 ], [ -95.615818050330574, 29.390875113061007 ], [ -95.615843050213314, 29.39066111283887 ], [ -95.615846049647445, 29.390554113370666 ], [ -95.615841049856371, 29.390410113210372 ], [ -95.615812049912364, 29.390269112705955 ], [ -95.615800050216322, 29.390234112956549 ], [ -95.615779049712941, 29.390204112490007 ], [ -95.615728050004051, 29.390148112511081 ], [ -95.615660049472908, 29.390058112518911 ], [ -95.615606050155066, 29.389961113253442 ], [ -95.615568049542503, 29.38985911245965 ], [ -95.615545049592015, 29.389754113182963 ], [ -95.615541049739718, 29.389718112927085 ], [ -95.615522049794379, 29.389648112826091 ], [ -95.615478050368012, 29.389547112648362 ], [ -95.615403050306682, 29.389419112572842 ], [ -95.615198050306873, 29.389194112484969 ], [ -95.615003049627191, 29.389061112646193 ], [ -95.614798049319262, 29.388887112666083 ], [ -95.614708049677262, 29.388767112337995 ], [ -95.614693049990635, 29.388733112394835 ], [ -95.614659050087866, 29.388629113089834 ], [ -95.614651049982442, 29.388558112657755 ], [ -95.614645050102411, 29.388414112274827 ], [ -95.614672050102257, 29.388309112401519 ], [ -95.614730049487761, 29.388214112289784 ], [ -95.61475404916456, 29.388185112791721 ], [ -95.614843050145197, 29.388110112386499 ], [ -95.615006049449988, 29.388001112788736 ], [ -95.615114049657123, 29.387951112662453 ], [ -95.615217049340146, 29.387892112278188 ], [ -95.615301049635832, 29.3878031123337 ], [ -95.615451049941939, 29.387746112183013 ], [ -95.615487050199519, 29.387729112883051 ], [ -95.6155540501491, 29.387688112637598 ], [ -95.615747049580463, 29.387559112758787 ], [ -95.615903049680725, 29.387447111979 ], [ -95.615960049732948, 29.387398112115054 ], [ -95.616085050086028, 29.387307112534675 ], [ -95.616242050421434, 29.387143112302592 ], [ -95.616291050286662, 29.387085111964115 ], [ -95.616333050363792, 29.386946112325081 ], [ -95.616336049919241, 29.386910112558194 ], [ -95.616333049623819, 29.38687511254702 ], [ -95.616318049927216, 29.386804112639865 ], [ -95.616297050371969, 29.386735111755584 ], [ -95.616226049542291, 29.386606112145014 ], [ -95.616177049927998, 29.386550112409829 ], [ -95.61597804958744, 29.386373112191311 ], [ -95.615878050144019, 29.386310111888257 ], [ -95.615807049979409, 29.386275112229111 ], [ -95.615774050210291, 29.386253112244226 ], [ -95.615636049593974, 29.386178112193271 ], [ -95.615599049302659, 29.386162111993226 ], [ -95.61546905012726, 29.386075112113247 ], [ -95.615380049618622, 29.386002112294999 ], [ -95.615333049369255, 29.385945112189944 ], [ -95.61530304931199, 29.385921111959242 ], [ -95.615157049215028, 29.385705112266002 ], [ -95.615090049775063, 29.385616112111968 ], [ -95.614909049939627, 29.385428112413383 ], [ -95.614791049026181, 29.385282112347038 ], [ -95.61456504992519, 29.385031111841609 ], [ -95.614529049100739, 29.385013111949888 ], [ -95.614431049476238, 29.384948112111598 ], [ -95.614278049206533, 29.384830111687034 ], [ -95.614138049851874, 29.384756111834097 ], [ -95.614099049197705, 29.384746112064857 ], [ -95.614024049039486, 29.384717112108362 ], [ -95.613895049686491, 29.384630111581309 ], [ -95.613834049078889, 29.38458311139561 ], [ -95.613778048744024, 29.38453211183807 ], [ -95.613648049391671, 29.384394111938203 ], [ -95.613592049347488, 29.384342112127801 ], [ -95.613379048826573, 29.384173111478617 ], [ -95.613130048929705, 29.383984111670109 ], [ -95.613023049117999, 29.383930111813687 ], [ -95.612948048629988, 29.38390311156958 ], [ -95.612869048520508, 29.383882111959231 ], [ -95.612493048920953, 29.383666111820467 ], [ -95.612147048878754, 29.383560111363721 ], [ -95.612111048748005, 29.383544112064559 ], [ -95.612071048993982, 29.38353411160422 ], [ -95.611867048438143, 29.383520111390791 ], [ -95.611706048965004, 29.383545111496389 ], [ -95.611630048727989, 29.383571111615868 ], [ -95.611509048413396, 29.383591112128144 ], [ -95.611428048632476, 29.383595111340032 ], [ -95.611387048162086, 29.383603111916983 ], [ -95.611265048439662, 29.38361011162916 ], [ -95.611102048419255, 29.383614111589353 ], [ -95.610941048249757, 29.383642111292477 ], [ -95.610820048509666, 29.383655111770203 ], [ -95.610698048902719, 29.383660111519365 ], [ -95.610616047992551, 29.383657111570887 ], [ -95.610535048750762, 29.383664111689331 ], [ -95.610460048668116, 29.38369211162388 ], [ -95.610388048005049, 29.383727112183262 ], [ -95.61023204843768, 29.383771111752381 ], [ -95.610192048722766, 29.383778111925754 ], [ -95.609990048041112, 29.383767111417828 ], [ -95.609913048236507, 29.3837451119139 ], [ -95.609799047979024, 29.383706112130163 ], [ -95.609550048174469, 29.383583111692644 ], [ -95.609452047674182, 29.383519111835465 ], [ -95.609363048406365, 29.383446111453161 ], [ -95.60928504807444, 29.383362111302006 ], [ -95.609266048420395, 29.383331111591033 ], [ -95.609209047862336, 29.383157111603246 ], [ -95.609172048344945, 29.383018111278375 ], [ -95.609159048366976, 29.382948111704128 ], [ -95.609148048201689, 29.382806111359887 ], [ -95.609127047788263, 29.382700111612184 ], [ -95.609064048302045, 29.382456111944663 ], [ -95.608945047616544, 29.382151111445665 ], [ -95.608846047628106, 29.381877111655779 ], [ -95.608830047922979, 29.381844110989366 ], [ -95.608790047921104, 29.381782111123979 ], [ -95.608775047960748, 29.381749111474026 ], [ -95.608694047375906, 29.381625111547287 ], [ -95.608652047372345, 29.381553111407609 ], [ -95.608586047296029, 29.381422111210409 ], [ -95.608562047318472, 29.381392110894986 ], [ -95.608495047549567, 29.381262111601721 ], [ -95.608415047569878, 29.38113711144576 ], [ -95.608370048097981, 29.381077111146723 ], [ -95.608225047749144, 29.380902111465289 ], [ -95.608196047566025, 29.380877111295362 ], [ -95.607998047855304, 29.380749110855753 ], [ -95.607926047148425, 29.380714111173333 ], [ -95.607852047183044, 29.380685111362176 ], [ -95.607624047521838, 29.380560111323401 ], [ -95.607299046912956, 29.380384110835308 ], [ -95.607227047574384, 29.380350110973989 ], [ -95.607056046865253, 29.380256110756747 ], [ -95.60688904778695, 29.380153111126646 ], [ -95.606401047393305, 29.379893111550526 ], [ -95.606294047546726, 29.379842111114524 ], [ -95.60606604663856, 29.379760111425316 ], [ -95.605909047459647, 29.379721110781951 ], [ -95.605831046953739, 29.379697110993199 ], [ -95.605668046621375, 29.379682110701246 ], [ -95.605586046691045, 29.379680111391401 ], [ -95.605545047108464, 29.379683111087147 ], [ -95.60546504704638, 29.379697111250646 ], [ -95.605389046611279, 29.379725110862193 ], [ -95.605286047181266, 29.37978411090835 ], [ -95.605249047327248, 29.379800110739886 ], [ -95.605129047025883, 29.379824110784924 ], [ -95.605007047215352, 29.379836110987139 ], [ -95.604925046324283, 29.379833111071171 ], [ -95.604724046498248, 29.379797110728529 ], [ -95.604369046704932, 29.37970811098587 ], [ -95.60428804671055, 29.379699111592938 ], [ -95.604250046701893, 29.379688111573575 ], [ -95.604103046608913, 29.379626110789495 ], [ -95.604064046054319, 29.379614111261951 ], [ -95.604024046213951, 29.379611111380971 ], [ -95.603943046430544, 29.379596110707897 ], [ -95.603905046467219, 29.379585111492073 ], [ -95.603793046132012, 29.379541111228434 ], [ -95.603584046455069, 29.379427111007285 ], [ -95.603513046814925, 29.379392110876012 ], [ -95.603481046547458, 29.379369111292196 ], [ -95.60330704606551, 29.379217111490579 ], [ -95.603226046659643, 29.379137111374845 ], [ -95.603178046160807, 29.37908011101193 ], [ -95.602784045804029, 29.378767110653126 ], [ -95.602552046311402, 29.378620110551257 ], [ -95.602496045812686, 29.378567111039963 ], [ -95.602398046305268, 29.378502110980879 ], [ -95.602254046392829, 29.378433110966885 ], [ -95.602028046414674, 29.378277111152592 ], [ -95.601916046004916, 29.378173111107174 ], [ -95.601715045563623, 29.377944111138145 ], [ -95.60159304607447, 29.377848110438514 ], [ -95.601538045984739, 29.377796110868619 ], [ -95.601506045629577, 29.377773110779295 ], [ -95.601450045921823, 29.377721110996333 ], [ -95.601248045818252, 29.377496110802237 ], [ -95.601162046056643, 29.377419110743762 ], [ -95.601039045705676, 29.377324110374964 ], [ -95.600713045761808, 29.377105110575851 ], [ -95.600675045421752, 29.377092110936896 ], [ -95.600603045943913, 29.377060110435508 ], [ -95.600448045844971, 29.377012110958994 ], [ -95.600369045076008, 29.376996110932357 ], [ -95.600206045220133, 29.376987110346132 ], [ -95.600043045363591, 29.376992110278735 ], [ -95.599924045846478, 29.377015111055041 ], [ -95.599847044897444, 29.377039111095694 ], [ -95.599625045756071, 29.377132111204048 ], [ -95.59940104542801, 29.377290110513258 ], [ -95.599221045527926, 29.377436110737353 ], [ -95.59914304523052, 29.377519110913482 ], [ -95.599095044902214, 29.377577110787374 ], [ -95.599059045312842, 29.377594111108085 ], [ -95.598931045024017, 29.377681110800889 ], [ -95.598842045423908, 29.377764111300991 ], [ -95.598763044627475, 29.377826110869666 ], [ -95.59868504469172, 29.377909110799184 ], [ -95.598651045433243, 29.377974111067235 ], [ -95.598626045604959, 29.378153111163595 ], [ -95.598614045170152, 29.378187111213887 ], [ -95.598550044902169, 29.378279111044574 ], [ -95.598536045010832, 29.378313110690534 ], [ -95.598486045427265, 29.378524111390799 ], [ -95.598471044740847, 29.378558110803581 ], [ -95.598480044939024, 29.378773110827794 ], [ -95.598464045220425, 29.378843111135122 ], [ -95.598447045351278, 29.378967111039707 ], [ -95.598436045263668, 29.379002111468953 ], [ -95.598374044574712, 29.379095110899701 ], [ -95.59827704485825, 29.37921111082737 ], [ -95.598192044550814, 29.379375110995756 ], [ -95.59818404512302, 29.37955411093348 ], [ -95.598209045314647, 29.379697111231589 ], [ -95.598244045447984, 29.379799111620503 ], [ -95.598384044909949, 29.379976111118452 ], [ -95.598510045399408, 29.380066111787507 ], [ -95.598547044876142, 29.38008311160581 ], [ -95.598610045471588, 29.380127111703665 ], [ -95.598713044772921, 29.380184111413456 ], [ -95.598966045505847, 29.380303111116387 ], [ -95.599041044853436, 29.380331111417199 ], [ -95.599080045801827, 29.380340111888504 ], [ -95.599116045507884, 29.380358111528054 ], [ -95.59921504579188, 29.380422111315895 ], [ -95.599245045737518, 29.38044611170594 ], [ -95.599351045807012, 29.380499111706033 ], [ -95.599392045646766, 29.380502111374582 ], [ -95.599511045200757, 29.380529111847714 ], [ -95.599579045032698, 29.380569111718671 ], [ -95.599809045960413, 29.380718111523827 ], [ -95.599980045159981, 29.380817111191789 ], [ -95.600121045620611, 29.380891111208918 ], [ -95.600266045960666, 29.38095711130298 ], [ -95.600321045847878, 29.38101011151754 ], [ -95.600428045733068, 29.381063111718539 ], [ -95.600466046039429, 29.38107811174083 ], [ -95.600506045295745, 29.381086111752261 ], [ -95.600563046129693, 29.381138111183752 ], [ -95.600683045818329, 29.38123511160132 ], [ -95.601023045466917, 29.38143711145025 ], [ -95.601098045480128, 29.381522111763914 ], [ -95.60116404562784, 29.38161311144232 ], [ -95.601216046101015, 29.38171011138472 ], [ -95.601298045788212, 29.3818491117019 ], [ -95.601334046172909, 29.381952111517542 ], [ -95.601357046126182, 29.382058112166018 ], [ -95.60135404630276, 29.382130111877842 ], [ -95.601341046262661, 29.382200112095038 ], [ -95.601320046140216, 29.382270111739526 ], [ -95.601285045544103, 29.382334111326216 ], [ -95.601223046311958, 29.382467111993655 ], [ -95.601203045456089, 29.382573111914077 ], [ -95.601185046445821, 29.382604111455048 ], [ -95.601095046160836, 29.382724111751688 ], [ -95.601066045640209, 29.38275011191276 ], [ -95.601033046094813, 29.382771112258556 ], [ -95.600913045485214, 29.382867111574885 ], [ -95.600720045372938, 29.383142111983894 ], [ -95.600617045562146, 29.383298112374906 ], [ -95.600549045534848, 29.383387111834942 ], [ -95.600470046096618, 29.383513112203012 ], [ -95.600321045431997, 29.383728112367258 ], [ -95.600124045540269, 29.384043112044306 ], [ -95.599988045521286, 29.384221112260725 ], [ -95.599914046100778, 29.384308112617845 ], [ -95.599784045311381, 29.3844481123908 ], [ -95.599644045571864, 29.384578111930004 ], [ -95.599413046023969, 29.384781112774533 ], [ -95.599203045444767, 29.384951112383799 ], [ -95.598940045768288, 29.385124112420691 ], [ -95.598802045603591, 29.385201112837617 ], [ -95.598626045852427, 29.385293112604739 ], [ -95.598519045694687, 29.385344112574007 ], [ -95.598333045450858, 29.385419112278598 ], [ -95.598254045567188, 29.385438112965389 ], [ -95.598134045003434, 29.385458112506608 ], [ -95.598012045228003, 29.385472112274368 ], [ -95.597848044784172, 29.385479112711238 ], [ -95.597687045540113, 29.385508112141206 ], [ -95.597523045291339, 29.385518112724483 ], [ -95.597400044883003, 29.385518112806519 ], [ -95.597119045264549, 29.385469112600841 ], [ -95.596849044608049, 29.385379112203029 ], [ -95.596813045078207, 29.38536311236599 ], [ -95.596679044594268, 29.385280112524956 ], [ -95.596652044942459, 29.385253112623911 ], [ -95.59660504441284, 29.385194112501225 ], [ -95.596549045029093, 29.38509811279242 ], [ -95.596517045188236, 29.385032112871915 ], [ -95.59648904524137, 29.384927112219156 ], [ -95.596431045278678, 29.384607112318111 ], [ -95.596370044302517, 29.384323112741775 ], [ -95.596333044655665, 29.384038111954293 ], [ -95.596317044447176, 29.383717111992695 ], [ -95.596320044504139, 29.383394112248642 ], [ -95.596290044926135, 29.383144112029306 ], [ -95.596279044518994, 29.382928112178249 ], [ -95.596245045083847, 29.382714112114822 ], [ -95.596227044868357, 29.382644111741957 ], [ -95.596187044639578, 29.382543111717144 ], [ -95.596150044731147, 29.38247811162395 ], [ -95.596083044257782, 29.382388112037862 ], [ -95.596058044257035, 29.382360112237485 ], [ -95.595909044672183, 29.382238111932967 ], [ -95.59580404477704, 29.382183111793022 ], [ -95.595689044256829, 29.38214411217788 ], [ -95.595649044413761, 29.382134112155207 ], [ -95.595529044339713, 29.382114112000426 ], [ -95.595488044398337, 29.382117112240937 ], [ -95.595447044784379, 29.382115111574421 ], [ -95.595367044595136, 29.382128111900936 ], [ -95.595285044479979, 29.382131111722703 ], [ -95.595204044691556, 29.382128111551253 ], [ -95.595124043979581, 29.382116111716869 ], [ -95.595043043975522, 29.382110111802465 ], [ -95.595003043997863, 29.382116111763871 ], [ -95.594880044495412, 29.382116112151682 ], [ -95.594641044070215, 29.382066112371859 ], [ -95.594358044115751, 29.382036111720961 ], [ -95.594197044023844, 29.382013111861131 ], [ -95.593912044504236, 29.381995111965765 ], [ -95.593668043513674, 29.3819721122949 ], [ -95.593380044411646, 29.381981111824626 ], [ -95.593260043726829, 29.381965112128835 ], [ -95.593221043462108, 29.381953112144771 ], [ -95.593140044257296, 29.381945111630451 ], [ -95.593021043640903, 29.381921112320466 ], [ -95.592899044201474, 29.381910111839677 ], [ -95.592817043961574, 29.381910112304457 ], [ -95.592696044054179, 29.381928111714675 ], [ -95.592330043898201, 29.381964111582462 ], [ -95.591964043422223, 29.381952111664187 ], [ -95.591860043654137, 29.381941112089084 ], [ -95.591803043390613, 29.381917112139949 ], [ -95.59174804318485, 29.381864111927474 ], [ -95.591716043358744, 29.381842112386742 ], [ -95.591678043373008, 29.381829112027503 ], [ -95.591558043461646, 29.381805112065486 ], [ -95.591521043562096, 29.381791111738451 ], [ -95.591378043645193, 29.381722111956314 ], [ -95.591281043839061, 29.381656111862473 ], [ -95.59109604302796, 29.381515112132149 ], [ -95.591042043457733, 29.381461111705697 ], [ -95.590950043671967, 29.381389111572116 ], [ -95.590814043233323, 29.381309111879148 ], [ -95.59070804270192, 29.381255112045718 ], [ -95.590630043682054, 29.381233111848474 ], [ -95.590590043381269, 29.381227111905904 ], [ -95.590472042996979, 29.381196111989734 ], [ -95.590242043608754, 29.381119111649443 ], [ -95.590119043433873, 29.381024111970945 ], [ -95.590093042542563, 29.380996111609115 ], [ -95.590058043378264, 29.380931112059582 ], [ -95.590030043424903, 29.380863112009518 ], [ -95.590026043264459, 29.380828111776378 ], [ -95.590029042929729, 29.380720111858711 ], [ -95.590048042521815, 29.380541111428855 ], [ -95.590115043462788, 29.380334111594895 ], [ -95.590246043137029, 29.380070112122656 ], [ -95.59029904323431, 29.379934111439479 ], [ -95.590335042803133, 29.379794111776519 ], [ -95.590349042618797, 29.379675111874267 ], [ -95.590357042991812, 29.379543111624052 ], [ -95.590407042715583, 29.379295111335008 ], [ -95.590416043364513, 29.379223111455889 ], [ -95.590434042992811, 29.378973111280263 ], [ -95.590435042716265, 29.378865111704485 ], [ -95.590440043396299, 29.378793111658023 ], [ -95.590438042631789, 29.378758111041481 ], [ -95.590482043036303, 29.378508111469309 ], [ -95.590552042799217, 29.378190110878091 ], [ -95.590564043045845, 29.378083111700629 ], [ -95.590564042981072, 29.378011111199211 ], [ -95.590549042731638, 29.377904111152223 ], [ -95.590550043438128, 29.377868111185013 ], [ -95.590575043452517, 29.377799111553227 ], [ -95.590663043027362, 29.377637110735996 ], [ -95.590756042879093, 29.37751811091584 ], [ -95.590901042967033, 29.377405111390122 ], [ -95.590995042774225, 29.377287110953347 ], [ -95.591118042905705, 29.377193110697551 ], [ -95.591248043199485, 29.377054111173251 ], [ -95.591315042722172, 29.376964111289531 ], [ -95.591459042810897, 29.376790110626615 ], [ -95.591500043588354, 29.37672711067642 ], [ -95.591573043458666, 29.37659811053269 ], [ -95.591615043161397, 29.376537111144813 ], [ -95.59168204342015, 29.37640511066364 ], [ -95.591711043573184, 29.376338111327559 ], [ -95.591720043206095, 29.37630311085951 ], [ -95.591763043166054, 29.376202110711787 ], [ -95.591828042889816, 29.376069110352979 ], [ -95.591851043232637, 29.376000110893024 ], [ -95.591854042863616, 29.375964110499847 ], [ -95.591840042761277, 29.375893111100382 ], [ -95.591796043461599, 29.375792111176366 ], [ -95.591777043544113, 29.375760110384064 ], [ -95.591623043020107, 29.375548110516618 ], [ -95.59146804268903, 29.375379110827001 ], [ -95.591420043447144, 29.375321110353557 ], [ -95.591244042921417, 29.375079110529885 ], [ -95.591225043278584, 29.375047110557233 ], [ -95.59119804280482, 29.374979110913586 ], [ -95.591179042646274, 29.374922110862865 ], [ -95.591104043246659, 29.374703110756741 ], [ -95.591079042704266, 29.374597110972811 ], [ -95.591064043238447, 29.374454110678972 ], [ -95.591053043163981, 29.374419110410763 ], [ -95.590978043026098, 29.374251110486057 ], [ -95.590869043004119, 29.374099110776854 ], [ -95.590766042599384, 29.373986110660788 ], [ -95.590622043267828, 29.373811110789848 ], [ -95.59053004272937, 29.373692110492449 ], [ -95.590503042864142, 29.373664110794319 ], [ -95.59043604275557, 29.373623110639695 ], [ -95.590286042759629, 29.37356411014575 ], [ -95.590214043234639, 29.37353011073175 ], [ -95.590115042992466, 29.373465110021527 ], [ -95.590087042285901, 29.37343811012558 ], [ -95.589953042427624, 29.373257110155002 ], [ -95.589774042313493, 29.373109110133125 ], [ -95.589650042206884, 29.373014110273502 ], [ -95.589546042905454, 29.372957110140565 ], [ -95.589366042906832, 29.372870110535018 ], [ -95.589172042904707, 29.372811110133117 ], [ -95.588970042030184, 29.372776109793982 ], [ -95.588888042087859, 29.372772110542627 ], [ -95.588744042527892, 29.372774110319703 ], [ -95.58860104261646, 29.372776110214261 ], [ -95.588273041973693, 29.372760110169828 ], [ -95.587904042218909, 29.372758110091123 ], [ -95.587781042376875, 29.372752110664038 ], [ -95.587740041776797, 29.372755110228766 ], [ -95.587660041924821, 29.372770110686048 ], [ -95.587619041995396, 29.372774110415069 ], [ -95.587378041617072, 29.372819110215278 ], [ -95.587221042042756, 29.37286010994768 ], [ -95.587109041995376, 29.372906110048167 ], [ -95.587069042290068, 29.372914110645315 ], [ -95.586864042243931, 29.37291911000764 ], [ -95.586622041881725, 29.372875110720877 ], [ -95.586513041829079, 29.372824110490182 ], [ -95.586473042139303, 29.372832110006925 ], [ -95.586432041438854, 29.372835110071861 ], [ -95.586350041518358, 29.372831110163748 ], [ -95.586226041912909, 29.372831110118135 ], [ -95.586185041984663, 29.372826110457282 ], [ -95.586065041369977, 29.372802110619162 ], [ -95.585950041373565, 29.372835110071925 ], [ -95.585787041790937, 29.372854110389518 ], [ -95.585500041166952, 29.372834110680309 ], [ -95.585053040947315, 29.372777110282978 ], [ -95.58488904156296, 29.372771110001018 ], [ -95.584725041034702, 29.372782109921051 ], [ -95.584480041076347, 29.372773110461651 ], [ -95.584357041138034, 29.372762110559677 ], [ -95.584234041027372, 29.372757110746015 ], [ -95.584179040735862, 29.372785110352211 ], [ -95.5841020410368, 29.372809110401256 ], [ -95.583981041626544, 29.372833110049118 ], [ -95.58394204123735, 29.372844110568622 ], [ -95.583836041437394, 29.372899110628207 ], [ -95.583806041342811, 29.372923110057553 ], [ -95.583733040875302, 29.373010110165239 ], [ -95.583678040784974, 29.37310711060541 ], [ -95.583614041363361, 29.373199110857616 ], [ -95.583523041151707, 29.37327311084146 ], [ -95.583488041341894, 29.373292110395258 ], [ -95.583375040894879, 29.37333411085871 ], [ -95.583114040830793, 29.373509110764243 ], [ -95.583041040685885, 29.373542110455165 ], [ -95.582962040525175, 29.373564110642587 ], [ -95.582840040909147, 29.373581110366491 ], [ -95.582758041216096, 29.373583110283899 ], [ -95.582513040759835, 29.373560110974264 ], [ -95.582432040455075, 29.373547110932286 ], [ -95.58216604090957, 29.373451110455385 ], [ -95.581949041079895, 29.373350110299047 ], [ -95.581827040617313, 29.37325311050397 ], [ -95.581779040472099, 29.373195110869979 ], [ -95.581715040765289, 29.373103110425649 ], [ -95.581615040704918, 29.372988110806926 ], [ -95.581572040364549, 29.372927110392176 ], [ -95.581547040778361, 29.372898110204414 ], [ -95.581506040233791, 29.372836110243558 ], [ -95.581451040983666, 29.372739110848858 ], [ -95.581429040876998, 29.372709110539923 ], [ -95.58135104078606, 29.372626110474002 ], [ -95.581157040274945, 29.372440110803321 ], [ -95.581004040226659, 29.372271110736733 ], [ -95.5809210406983, 29.372147110125411 ], [ -95.580892040821965, 29.372080110401935 ], [ -95.58088404074401, 29.372044110019772 ], [ -95.580860040657043, 29.371976109988143 ], [ -95.580773040134659, 29.371899110302515 ], [ -95.580600040329756, 29.371697110319094 ], [ -95.58050704003297, 29.371578110516989 ], [ -95.580436040575094, 29.371449110034135 ], [ -95.580401040030026, 29.371345110249099 ], [ -95.580396039742524, 29.37131011013572 ], [ -95.580359039832189, 29.3711691099993 ], [ -95.580341040495384, 29.3710631102748 ], [ -95.5803440397885, 29.370955110139871 ], [ -95.580311040579247, 29.370777109897386 ], [ -95.580305039983713, 29.370669110272996 ], [ -95.580342040410244, 29.370529110485812 ], [ -95.58045204061915, 29.370336109639702 ], [ -95.580511040056976, 29.3702861097204 ], [ -95.580603039902499, 29.370216110135587 ], [ -95.580813040245701, 29.370101109869935 ], [ -95.580973040266116, 29.370073110314213 ], [ -95.581167040495913, 29.370014109981359 ], [ -95.581406040534731, 29.369963109743573 ], [ -95.581447040458997, 29.369957109765593 ], [ -95.581488040427033, 29.369956109803724 ], [ -95.581569040024462, 29.36996610992556 ], [ -95.581609040477176, 29.369975109658643 ], [ -95.581684040452799, 29.370005109625804 ], [ -95.581800040346764, 29.370042110074841 ], [ -95.581868040017994, 29.370082109454373 ], [ -95.581933040241765, 29.37012610946153 ], [ -95.582005040520997, 29.370161110085601 ], [ -95.582044040653955, 29.370172109717029 ], [ -95.582124040897057, 29.370187110110415 ], [ -95.582206040368206, 29.370197110166661 ], [ -95.582287040104816, 29.370189110115721 ], [ -95.582327040579258, 29.370180109896559 ], [ -95.582440040435102, 29.370137110175865 ], [ -95.582474040161742, 29.37011710949098 ], [ -95.582505040434441, 29.370093109792993 ], [ -95.582604040386215, 29.369978110027308 ], [ -95.582643040968719, 29.369914110007308 ], [ -95.582690041001129, 29.369857110265077 ], [ -95.582798040310706, 29.36962311013674 ], [ -95.582883040333797, 29.369421109311318 ], [ -95.582960041007965, 29.369216109808811 ], [ -95.582987040248895, 29.369038109855225 ], [ -95.583034040436701, 29.368862109555042 ], [ -95.583029040372892, 29.368718109153932 ], [ -95.582992040306252, 29.368504109723467 ], [ -95.58296604042576, 29.368436109402172 ], [ -95.582887040591487, 29.368271109904157 ], [ -95.582714040992116, 29.367984109321185 ], [ -95.582511040374641, 29.367713109701111 ], [ -95.58248404075951, 29.367686109353293 ], [ -95.582323040714797, 29.367574109500804 ], [ -95.582220040910656, 29.367515109629483 ], [ -95.582029040583535, 29.367450109131546 ], [ -95.581947040461799, 29.367442109261447 ], [ -95.581865039928687, 29.367448109230939 ], [ -95.581787040330354, 29.36752010926967 ], [ -95.581489040124268, 29.367863109456692 ], [ -95.581460040773848, 29.367889109082519 ], [ -95.581363040527819, 29.36795610966912 ], [ -95.581261040160442, 29.36801510971268 ], [ -95.581224040184097, 29.368032109406524 ], [ -95.581029040426117, 29.368090109230167 ], [ -95.580785040614373, 29.368120109402792 ], [ -95.580747040255417, 29.368131109302325 ], [ -95.580676040090609, 29.36816710979511 ], [ -95.580602040012295, 29.368198109195426 ], [ -95.580407040167003, 29.368257109213175 ], [ -95.580367040053218, 29.368264109383777 ], [ -95.580204040303556, 29.368278109926639 ], [ -95.580163039747319, 29.368277109991958 ], [ -95.579880040188456, 29.368229109359834 ], [ -95.579841039573694, 29.368219109242339 ], [ -95.579718039698349, 29.368207109234302 ], [ -95.579431039506602, 29.368221109685951 ], [ -95.57914403986473, 29.368202109687733 ], [ -95.579103039879627, 29.368207109659867 ], [ -95.579024039477645, 29.368225109406573 ], [ -95.578901039946132, 29.368234109870603 ], [ -95.578780039231759, 29.368256109724257 ], [ -95.57865703932552, 29.368261109207321 ], [ -95.578375039150714, 29.368315109444804 ], [ -95.578294039684948, 29.368313109744104 ], [ -95.578173039295237, 29.368291109854493 ], [ -95.578091039917894, 29.368285109825518 ], [ -95.578010039694036, 29.368273109865907 ], [ -95.577945039763918, 29.368256109313759 ], [ -95.577813039043306, 29.368221109884416 ], [ -95.577531039730417, 29.368167109805547 ], [ -95.577084039486707, 29.36809210936795 ], [ -95.576858039346007, 29.368862109616146 ], [ -95.576564039445856, 29.369910110056139 ], [ -95.575998038757405, 29.371398109922659 ], [ -95.575866039373992, 29.371765110839117 ], [ -95.575729039102328, 29.372693110860013 ], [ -95.575717039190096, 29.374144111262048 ], [ -95.575702039000276, 29.374539110763887 ], [ -95.575759038738468, 29.374941110744533 ], [ -95.575741039523308, 29.375273110875661 ], [ -95.575745038737494, 29.375562111226696 ], [ -95.575747038960316, 29.375767111414845 ], [ -95.575748039319819, 29.375851111221426 ], [ -95.575747039251127, 29.375935111164296 ], [ -95.575612039483289, 29.376122111324502 ], [ -95.575561038630241, 29.376193111574068 ], [ -95.574996039186658, 29.376974111824179 ], [ -95.574590038413419, 29.377632112079304 ], [ -95.574102039202671, 29.378704112326872 ], [ -95.573996039019434, 29.378976111868226 ], [ -95.573987039090298, 29.379020112055283 ], [ -95.573938038424672, 29.379123112148498 ], [ -95.573810039123586, 29.37944911215618 ], [ -95.573459039274482, 29.380506112031185 ], [ -95.573133038405956, 29.381254112933885 ], [ -95.572802039098164, 29.382459113177884 ], [ -95.572704039155184, 29.382815112483144 ], [ -95.572520038817373, 29.383335113318797 ], [ -95.572405038774178, 29.383668113063138 ], [ -95.572348038519493, 29.3838311133443 ], [ -95.572183038259041, 29.384030113061286 ], [ -95.571872038894028, 29.384405113534743 ], [ -95.570676038735726, 29.385789113907812 ], [ -95.570347038250333, 29.386170113688404 ], [ -95.570039038302141, 29.386497113223804 ], [ -95.569732038208016, 29.386824113399943 ], [ -95.569482038345669, 29.38709011383326 ], [ -95.568814037801602, 29.387713113883525 ], [ -95.56861503773662, 29.388152114356711 ], [ -95.567962037963113, 29.388975114325188 ], [ -95.567297037220555, 29.389700114808456 ], [ -95.566659037180443, 29.390229114618819 ], [ -95.565797036956212, 29.390681114345025 ], [ -95.565575036799345, 29.390797114904323 ], [ -95.56444103682125, 29.391046114442158 ], [ -95.564045036890363, 29.391063114413562 ], [ -95.562891036304094, 29.391103114872546 ], [ -95.561439036620101, 29.390801115051602 ], [ -95.559894035223905, 29.390463115258964 ], [ -95.55886403577675, 29.390493114630619 ], [ -95.557865034726703, 29.390803114986408 ], [ -95.557245035197411, 29.391070114822774 ], [ -95.556882035180266, 29.391219115525693 ], [ -95.556211034747832, 29.391494114800615 ], [ -95.555259034613783, 29.392140115399439 ], [ -95.553843034296619, 29.393036115156974 ], [ -95.553800034658735, 29.393079115557224 ], [ -95.553041033965727, 29.393549116048074 ], [ -95.551889033904004, 29.39386611558033 ], [ -95.549740033621688, 29.394396115661646 ], [ -95.548356032786771, 29.39484511571521 ], [ -95.547584032917158, 29.39520211661463 ], [ -95.547506032635965, 29.39551711663167 ], [ -95.547435032907785, 29.39581011651455 ], [ -95.547228032344606, 29.396656116722628 ], [ -95.547257032638967, 29.397136116678656 ], [ -95.548860032795346, 29.399417117021066 ], [ -95.549365033004079, 29.400308116982615 ], [ -95.549751033310002, 29.401406117223239 ], [ -95.54987003333855, 29.402624117266022 ], [ -95.54957303324818, 29.403336117953376 ], [ -95.549128033458004, 29.403811118228923 ], [ -95.548389033170622, 29.404185118009849 ], [ -95.547791033464975, 29.404470118297677 ], [ -95.547481033422656, 29.404713117853611 ], [ -95.546930033056938, 29.405145118021927 ], [ -95.546419033166657, 29.40576211857665 ], [ -95.546076032827301, 29.406234118955183 ], [ -95.545852032389334, 29.406906118588783 ], [ -95.545832032825956, 29.407740118847194 ], [ -95.545986033006116, 29.408417119339916 ], [ -95.54603503310517, 29.408589119374138 ], [ -95.546814033304742, 29.410267119020538 ], [ -95.546985032859197, 29.410635119315366 ], [ -95.546992033419542, 29.410650119012956 ], [ -95.547188033453182, 29.410934119619409 ], [ -95.547674033563354, 29.411634119566909 ], [ -95.54895603443471, 29.413484119533837 ], [ -95.549607034133587, 29.415417120090478 ], [ -95.549671034013983, 29.415509119987529 ], [ -95.550035034035503, 29.416033120302401 ], [ -95.550774034972036, 29.417439120650915 ], [ -95.551521034576382, 29.41886112064519 ], [ -95.551717035292967, 29.419235121130239 ], [ -95.551764034755607, 29.419347120579307 ], [ -95.551932034943675, 29.419649120934395 ], [ -95.551984035260418, 29.419718121391714 ], [ -95.55200503484572, 29.419742120996791 ], [ -95.552041034966919, 29.419783121080055 ], [ -95.552281035042554, 29.420058120747331 ], [ -95.553594035262421, 29.42114412144263 ], [ -95.554847035315774, 29.42178812116725 ], [ -95.555967036525288, 29.422784121319005 ], [ -95.556329035808645, 29.423596121566902 ], [ -95.55640803659648, 29.424618121628843 ], [ -95.555943036001636, 29.425349122401862 ], [ -95.555686035839997, 29.425557122289938 ], [ -95.555491035830599, 29.425635121796688 ], [ -95.553994036040024, 29.426555122247283 ], [ -95.553309035138156, 29.426897122657692 ], [ -95.552790035419008, 29.427283122972302 ], [ -95.552334035549038, 29.427807122897136 ], [ -95.552260035450189, 29.427879122356476 ], [ -95.551869035182989, 29.42855612253512 ], [ -95.551782035059958, 29.428822123210452 ], [ -95.551641035370466, 29.429852123571013 ], [ -95.551456035485757, 29.431103123018236 ], [ -95.551381035309873, 29.431524123114936 ], [ -95.551308035801185, 29.431935123334743 ], [ -95.550950035026347, 29.432923123590516 ], [ -95.550931035184576, 29.432976123773976 ], [ -95.550783034893897, 29.433303123999835 ], [ -95.550707035355771, 29.433545123789081 ], [ -95.550341035124035, 29.434612124356818 ], [ -95.550095035521267, 29.435216123922466 ], [ -95.54989203537616, 29.436463124467824 ], [ -95.549880035295288, 29.43651912441517 ], [ -95.549913034699813, 29.43719612458138 ], [ -95.550099035121463, 29.437494124999642 ], [ -95.55061903527843, 29.43825612462971 ], [ -95.550629035745345, 29.438311124806493 ], [ -95.550760035437264, 29.439059125223434 ], [ -95.550654035141832, 29.439783125618742 ], [ -95.550639035773656, 29.439822125394116 ], [ -95.550565035407175, 29.439990125211974 ], [ -95.550492035432782, 29.440197125418276 ], [ -95.550454035361184, 29.440337125445858 ], [ -95.550406035336948, 29.440475125010096 ], [ -95.550236035638761, 29.440920125730582 ], [ -95.550150035832573, 29.441123125978297 ], [ -95.550132035186778, 29.441156125625056 ], [ -95.549833035756933, 29.44150312608771 ], [ -95.54965703508492, 29.441747125942644 ], [ -95.54955303499878, 29.44190312532351 ], [ -95.549482035273783, 29.441992125434851 ], [ -95.549157035276536, 29.442365125508804 ], [ -95.548934034753287, 29.442577125740474 ], [ -95.54877503547786, 29.442692125961266 ], [ -95.548319035171545, 29.443001126285001 ], [ -95.547866035070996, 29.443251126016754 ], [ -95.547469035193714, 29.443444126067078 ], [ -95.546937034774771, 29.443640126377105 ], [ -95.546647034905106, 29.44375112644985 ], [ -95.546447035121801, 29.44382812585286 ], [ -95.545979034680784, 29.443969126005385 ], [ -95.54546703431717, 29.444107126181986 ], [ -95.545038034122584, 29.444236126637321 ], [ -95.544755033766677, 29.44428112649566 ], [ -95.544590033714883, 29.444287126408067 ], [ -95.544097034382261, 29.444251126207241 ], [ -95.543649033997141, 29.444189126556918 ], [ -95.543368033755925, 29.444133126084974 ], [ -95.54325103422731, 29.444099126082257 ], [ -95.542989033992995, 29.443993126209104 ], [ -95.542486033138744, 29.443746126730744 ], [ -95.542317033081687, 29.443642126504248 ], [ -95.542253033648976, 29.443597126136638 ], [ -95.542167033619236, 29.443519126081537 ], [ -95.542009033519065, 29.443353126217012 ], [ -95.541962033845593, 29.443293126136339 ], [ -95.541824032986653, 29.443031126075262 ], [ -95.541708033676429, 29.442929126351252 ], [ -95.541617033110128, 29.442809125941405 ], [ -95.541578033747626, 29.442745126296405 ], [ -95.541563032884454, 29.442712126319634 ], [ -95.541531033575154, 29.442607126153142 ], [ -95.541493033692987, 29.442504126237878 ], [ -95.541474033007191, 29.442434126017336 ], [ -95.541424032796556, 29.442112126275113 ], [ -95.541425033280362, 29.441860125735737 ], [ -95.541444033057758, 29.441644125746485 ], [ -95.541452033064417, 29.441428126185055 ], [ -95.541449033276564, 29.441355126263279 ], [ -95.541433033362438, 29.441248125598182 ], [ -95.541448033232641, 29.441191126181558 ], [ -95.541460032889518, 29.441120125941641 ], [ -95.541470033373187, 29.441012125806605 ], [ -95.541468033135288, 29.440940125766616 ], [ -95.541420033336792, 29.440618125355794 ], [ -95.54135803269979, 29.440298125618071 ], [ -95.541333032808282, 29.440229125441409 ], [ -95.541285033426249, 29.440129126092117 ], [ -95.541195032763, 29.439889125436178 ], [ -95.541106033277728, 29.439726125995694 ], [ -95.54108403347746, 29.439696125779673 ], [ -95.540875032779269, 29.439473125406106 ], [ -95.540464033283229, 29.439118125842043 ], [ -95.540402032503295, 29.439071125303052 ], [ -95.540201032881512, 29.43894412577437 ], [ -95.539990032648205, 29.438831125818734 ], [ -95.539917033090106, 29.438799125438599 ], [ -95.53972803300185, 29.438727125716103 ], [ -95.539498032596441, 29.43864612519334 ], [ -95.539148032073427, 29.438539125410848 ], [ -95.538827032176854, 29.438471125146744 ], [ -95.538540032000526, 29.438447125113452 ], [ -95.538458032579399, 29.438446125703887 ], [ -95.538294032341284, 29.438457125494089 ], [ -95.538008032649572, 29.438494125436122 ], [ -95.537604031885294, 29.438565125172619 ], [ -95.53728503185323, 29.43863612567548 ], [ -95.537166031698419, 29.438666125232011 ], [ -95.537020031849536, 29.438732125523146 ], [ -95.53691503208627, 29.438790125639734 ], [ -95.536447032310093, 29.439085125382906 ], [ -95.536321031564853, 29.439178125874747 ], [ -95.536157031711426, 29.439288125210719 ], [ -95.536088032051225, 29.439328126070695 ], [ -95.535910031514732, 29.439417125525068 ], [ -95.535723032098431, 29.439610125499716 ], [ -95.535513032090051, 29.439783126125935 ], [ -95.535345031344633, 29.439941126227001 ], [ -95.535123031147293, 29.440202125610075 ], [ -95.535071031585915, 29.44025712561373 ], [ -95.535012032011224, 29.440308125610425 ], [ -95.534856031909456, 29.440426125702238 ], [ -95.534770031755215, 29.44050412612409 ], [ -95.534681031863002, 29.440578125557476 ], [ -95.534654031178775, 29.440682125904885 ], [ -95.534552031682026, 29.440956125731347 ], [ -95.534464031676336, 29.441159126176114 ], [ -95.534439031452749, 29.441227125660177 ], [ -95.53411203148768, 29.442234126545021 ], [ -95.534030030947335, 29.442514126055112 ], [ -95.534024031834875, 29.442946126344953 ], [ -95.534006031625609, 29.443668126214696 ], [ -95.533953031298083, 29.444207126326717 ], [ -95.53396103102196, 29.444640127035502 ], [ -95.533955031892347, 29.444892127247968 ], [ -95.533956031644763, 29.445253127022951 ], [ -95.533929031702982, 29.445758127365103 ], [ -95.533960031563552, 29.446262126754362 ], [ -95.533957031449816, 29.446948126928572 ], [ -95.533940032020524, 29.447453127540211 ], [ -95.533892031555794, 29.44849812743918 ], [ -95.53386803209348, 29.448822127746151 ], [ -95.533853032050615, 29.448930127645543 ], [ -95.533818031813098, 29.449108127895457 ], [ -95.533724031129267, 29.449643128039636 ], [ -95.533662032069188, 29.450217127984242 ], [ -95.533650032118942, 29.450506127995041 ], [ -95.53357003138143, 29.451911128637494 ], [ -95.533571032033578, 29.451983128125786 ], [ -95.533589031442858, 29.452199128497263 ], [ -95.533603031996634, 29.452523128890746 ], [ -95.533545032037154, 29.453282128175552 ], [ -95.533553031953616, 29.453426128411611 ], [ -95.533542032207151, 29.453679128646751 ], [ -95.533489031988196, 29.454325128454279 ], [ -95.5334550321097, 29.45475812901217 ], [ -95.533421032187803, 29.455082129407685 ], [ -95.533414032169702, 29.455129128792919 ], [ -95.533379031860576, 29.455364129315122 ], [ -95.533336031597159, 29.455579128885891 ], [ -95.533276032125499, 29.456004129288555 ], [ -95.533206032245246, 29.45634912898932 ], [ -95.533200031683108, 29.45640412958079 ], [ -95.533186031594994, 29.456474129333422 ], [ -95.533167032096813, 29.456544129332698 ], [ -95.533039031677021, 29.456924129535619 ], [ -95.533026031586772, 29.457032129681661 ], [ -95.532986032051866, 29.457572129259081 ], [ -95.532984032126677, 29.457666129762899 ], [ -95.532981032067568, 29.457789129474698 ], [ -95.533000032149133, 29.458221129274676 ], [ -95.53303403230376, 29.458436129296224 ], [ -95.533138031367173, 29.458696129712123 ], [ -95.533189031770362, 29.458794129699694 ], [ -95.53344403174971, 29.459327129855819 ], [ -95.533482031874982, 29.459391130090612 ], [ -95.533796032461609, 29.459857129808558 ], [ -95.534209031750379, 29.460397129634323 ], [ -95.534422032180373, 29.46066313036437 ], [ -95.534965032323015, 29.461253130119797 ], [ -95.535196032176145, 29.461439130429405 ], [ -95.535357032157904, 29.461551130418773 ], [ -95.535621032368027, 29.461723130163008 ], [ -95.535680032327264, 29.461756130603597 ], [ -95.536022032805107, 29.461944130268115 ], [ -95.536690033115107, 29.463069130250041 ], [ -95.540587033576628, 29.464374130782048 ], [ -95.543764034555039, 29.466859131167812 ], [ -95.545069035366325, 29.471809131765809 ], [ -95.545213035443908, 29.472248131778045 ], [ -95.545626035685075, 29.473513131962477 ], [ -95.545748035297962, 29.473882132214747 ], [ -95.545785035650852, 29.473995132005555 ], [ -95.545797035858499, 29.474019132337766 ], [ -95.545843036119692, 29.474110132505569 ], [ -95.545912035963596, 29.474244132716525 ], [ -95.546015035332275, 29.474438132320401 ], [ -95.546036035849482, 29.474489132643196 ], [ -95.546810035717115, 29.476008133255121 ], [ -95.547238036074006, 29.476849132892301 ], [ -95.547371036120495, 29.477290132890968 ], [ -95.547689036048212, 29.478342133522663 ], [ -95.547894036984729, 29.479019133281124 ], [ -95.547728036397373, 29.479776133994221 ], [ -95.547577036754305, 29.480466133891316 ], [ -95.547397036112145, 29.480784133420521 ], [ -95.547012036314811, 29.481461133875918 ], [ -95.54671503675354, 29.481644133881026 ], [ -95.545889035614181, 29.482153134136713 ], [ -95.545346036158833, 29.482492134462525 ], [ -95.544658035591056, 29.483530134495442 ], [ -95.544170035372275, 29.484229135025565 ], [ -95.543977035743282, 29.485578135031229 ], [ -95.544003036162067, 29.486184135262715 ], [ -95.544306035643913, 29.487258135516985 ], [ -95.54491003586196, 29.488893135429365 ], [ -95.545166035975058, 29.489193135297203 ], [ -95.546495036175415, 29.4893771355502 ], [ -95.549236037047592, 29.489660135805451 ], [ -95.551801038339576, 29.490071135999351 ], [ -95.552623038264443, 29.49050313587345 ], [ -95.553806038816589, 29.491125135475578 ], [ -95.553813038855623, 29.491132135748455 ], [ -95.555811039571708, 29.493104135804227 ], [ -95.556293038829651, 29.494240136200791 ], [ -95.556455039861333, 29.494620136141844 ], [ -95.556484039108, 29.494725136622211 ], [ -95.556543038884641, 29.495263136898274 ], [ -95.556544039427678, 29.495552136806406 ], [ -95.556564039088769, 29.495876136588425 ], [ -95.556549039479933, 29.496056136300176 ], [ -95.556466039819171, 29.496483136376597 ], [ -95.556411039114195, 29.49665613685816 ], [ -95.556383039444071, 29.496724136434086 ], [ -95.556379039080767, 29.496832136515014 ], [ -95.556356039088143, 29.4970471372676 ], [ -95.556306039414338, 29.497296136811851 ], [ -95.556236039756612, 29.497541136636304 ], [ -95.556205039425208, 29.497683137280852 ], [ -95.556202039770952, 29.497699136715738 ], [ -95.556192039898121, 29.497758137269074 ], [ -95.556187039393919, 29.497790136599956 ], [ -95.556175039441499, 29.497970136792258 ], [ -95.55616603983762, 29.498041137164861 ], [ -95.556130039580395, 29.498182136957436 ], [ -95.556105039257559, 29.498251137199247 ], [ -95.556061039159474, 29.498352137090468 ], [ -95.556005039056686, 29.49844913668063 ], [ -95.555987039167334, 29.498473137267094 ], [ -95.556096039087123, 29.498470137323153 ], [ -95.556201039753986, 29.498473137257353 ], [ -95.556523039945034, 29.498485136845591 ], [ -95.556695039868757, 29.498501137094024 ], [ -95.556966039791632, 29.498516137345632 ], [ -95.557387039908718, 29.498516136750322 ], [ -95.557775040177361, 29.498503137537462 ], [ -95.558742040522915, 29.498456137034911 ], [ -95.560287040065674, 29.498400137275151 ], [ -95.561645040789969, 29.498358137000693 ], [ -95.561700041358876, 29.498355136983246 ], [ -95.564074041180405, 29.498271136534779 ], [ -95.565294041680815, 29.49823113716187 ], [ -95.567081042174294, 29.49817613652684 ], [ -95.569426043001158, 29.498095136363499 ], [ -95.569933043015595, 29.498090136529999 ], [ -95.571091043102484, 29.498023136934187 ], [ -95.572597043911941, 29.497983136498274 ], [ -95.574523044296853, 29.497934136792772 ], [ -95.576409044473607, 29.497867136095447 ], [ -95.576419044333079, 29.498085136492659 ], [ -95.585142046799746, 29.497799135780184 ], [ -95.586230047095171, 29.497757136309122 ], [ -95.586646047652309, 29.497749135810341 ], [ -95.589433047511733, 29.497645135448021 ], [ -95.589947048562578, 29.497651135513571 ], [ -95.590539048452129, 29.497686135899034 ], [ -95.590977048621355, 29.497725135570814 ], [ -95.591401048818653, 29.497785135763795 ], [ -95.591831048539873, 29.497869136182775 ], [ -95.592325048853965, 29.498012135455866 ], [ -95.592420048783637, 29.498049135405804 ], [ -95.59264804846643, 29.498123136238885 ], [ -95.593192048885825, 29.498320135625292 ], [ -95.593952049354414, 29.498650135470456 ], [ -95.594448049151453, 29.498981136343076 ], [ -95.59465404953572, 29.499121136039616 ], [ -95.595149049527663, 29.499457135663253 ], [ -95.598332050096317, 29.50186513650085 ], [ -95.600759050591677, 29.503700136492888 ], [ -95.603714052363642, 29.505935136903705 ], [ -95.609467053667785, 29.510235137672826 ], [ -95.610761054206279, 29.51116413807317 ], [ -95.61137805407661, 29.51160813823174 ], [ -95.612126054631972, 29.512089137741871 ], [ -95.612781054540918, 29.512444138241019 ], [ -95.613126055120119, 29.512631138450079 ], [ -95.613822055230457, 29.512953138433815 ], [ -95.618975056294659, 29.515334138193268 ], [ -95.623149057113537, 29.51732913832808 ], [ -95.62659605822995, 29.518899138877305 ], [ -95.631138060078385, 29.52102513938998 ], [ -95.634330060104361, 29.522520139426788 ], [ -95.635008061048765, 29.522842139705315 ], [ -95.638702061973149, 29.524519139800212 ], [ -95.641026061857758, 29.525604139832048 ], [ -95.643539063393902, 29.526856139792731 ], [ -95.64852306451742, 29.529154140078877 ], [ -95.649216064173757, 29.529468139944331 ], [ -95.649304064800248, 29.529508140512366 ], [ -95.650285064920283, 29.529952140346094 ], [ -95.651103065529426, 29.530307140904647 ], [ -95.651874065507116, 29.530583140681802 ], [ -95.653499065602972, 29.531071140857566 ], [ -95.653661065841931, 29.531101140722946 ], [ -95.654938066022922, 29.531342141021476 ], [ -95.655458066566538, 29.531412140347825 ], [ -95.656783066229309, 29.531589140423804 ], [ -95.657660066934241, 29.531702140206992 ], [ -95.658644067516207, 29.531829140288949 ], [ -95.65874906671381, 29.53184414067049 ], [ -95.661499067834427, 29.53223714063207 ], [ -95.661557068069982, 29.532244140235427 ], [ -95.663018067803193, 29.532425140939935 ], [ -95.665128068486979, 29.532680140185334 ], [ -95.665451068628244, 29.532723140845778 ], [ -95.667540069005867, 29.533008140716326 ], [ -95.668765069505113, 29.533198140618971 ], [ -95.672101070098122, 29.533640140308052 ], [ -95.675323071406638, 29.5340901405654 ], [ -95.675851071906422, 29.534154140656678 ], [ -95.680097072494277, 29.534664140477741 ], [ -95.683211073850003, 29.535081140463063 ], [ -95.686487074161974, 29.53551914037147 ], [ -95.687052074677482, 29.535582140750467 ], [ -95.688949074589303, 29.535828140324881 ], [ -95.694292076403812, 29.536521140521803 ], [ -95.701491078478583, 29.537455139997096 ], [ -95.702665078541742, 29.537607140275938 ], [ -95.702699078057648, 29.537457140399432 ], [ -95.702705078048083, 29.537347140117099 ], [ -95.702693078050331, 29.537230140054461 ], [ -95.702620078559519, 29.537044139822513 ], [ -95.701765078242332, 29.534879140151922 ], [ -95.701546078196131, 29.534325139519112 ], [ -95.701536077765653, 29.534300139682749 ], [ -95.700234077277443, 29.530929138725565 ], [ -95.699725077943839, 29.529726139177104 ], [ -95.699832077465459, 29.529555138313651 ], [ -95.699960077017025, 29.529322138739172 ], [ -95.700320078052385, 29.528583138555923 ], [ -95.70044507809132, 29.528327138287015 ], [ -95.701035077964534, 29.527087137767509 ], [ -95.701601078191189, 29.525955137648527 ], [ -95.702033077712173, 29.525079137942114 ], [ -95.702141077732577, 29.524860137578795 ], [ -95.702635078102716, 29.523861137769092 ], [ -95.702931078441239, 29.523249137100976 ], [ -95.703170078033452, 29.522790137029698 ], [ -95.703744077696328, 29.52158413707274 ], [ -95.703968077961463, 29.521126136870141 ], [ -95.705084078742374, 29.518868136014994 ], [ -95.705464078442247, 29.518077136367218 ], [ -95.70588607889124, 29.517221136004135 ], [ -95.706677078792453, 29.515589135679882 ], [ -95.707221078711981, 29.514480135467547 ], [ -95.707259078826795, 29.514402135368808 ], [ -95.707645078381574, 29.513603135571348 ], [ -95.707994079229778, 29.512897135410991 ], [ -95.708422079399611, 29.51199113490318 ], [ -95.708754078503944, 29.511338134375784 ], [ -95.709875079245862, 29.509054134552184 ], [ -95.710027078802284, 29.508735133812291 ], [ -95.710415079722878, 29.508881134148918 ], [ -95.71134407910013, 29.509246133881206 ], [ -95.712074079666394, 29.509520134434787 ], [ -95.713374080445291, 29.510028134072599 ], [ -95.715285081058397, 29.510759134290836 ], [ -95.715694081230467, 29.510913134051073 ], [ -95.716414081084963, 29.511198133997965 ], [ -95.717477081244539, 29.511605134675886 ], [ -95.71921008144858, 29.512277134894205 ], [ -95.719581081585972, 29.512402134764582 ], [ -95.720767082426846, 29.512865134644333 ], [ -95.721118081750674, 29.513007134451605 ], [ -95.722916083031961, 29.513701134412454 ], [ -95.724093083304354, 29.514164135108281 ], [ -95.724644083209228, 29.514371135208421 ], [ -95.726447083405176, 29.51506113519542 ], [ -95.727838084394406, 29.515605135260184 ], [ -95.72943008457078, 29.516218134658569 ], [ -95.729737084693483, 29.516336134728459 ], [ -95.730935085345848, 29.516793135145171 ], [ -95.731478084599061, 29.517005135096017 ], [ -95.73201408482366, 29.517214135515601 ], [ -95.735231085858516, 29.518444135670777 ], [ -95.735928086513042, 29.518707135570466 ], [ -95.736195086378459, 29.518186135105356 ], [ -95.736289086100655, 29.518003135119727 ], [ -95.736561086665233, 29.517472134767321 ], [ -95.736775086204659, 29.517054135293588 ], [ -95.736806086398687, 29.516992135345784 ], [ -95.736868085988689, 29.51687213499152 ], [ -95.736909086655686, 29.51679213505048 ], [ -95.736973086604635, 29.516667135032385 ], [ -95.737030086725809, 29.516558134854048 ], [ -95.737175086866571, 29.516272134562652 ], [ -95.737365086791002, 29.515902134580038 ], [ -95.737371086738193, 29.515890134242209 ], [ -95.737487086767629, 29.515656134362391 ], [ -95.739644087487022, 29.516485134760792 ], [ -95.740430086902762, 29.516786134675801 ], [ -95.742133087609432, 29.517441134825269 ], [ -95.742955088116403, 29.517756134710158 ], [ -95.743946088269993, 29.518137135035666 ], [ -95.745790088835903, 29.518846135017263 ], [ -95.748272088989182, 29.519799134729247 ], [ -95.750340090217847, 29.520593135480127 ], [ -95.751448090566072, 29.521020135356096 ], [ -95.751810090566494, 29.521159135468377 ], [ -95.751910090290622, 29.52119813535035 ], [ -95.753238090747047, 29.521710135069316 ], [ -95.753499090569022, 29.52181113541744 ], [ -95.754021090709529, 29.520750135002025 ], [ -95.754633091302452, 29.519511135032467 ], [ -95.754886091014527, 29.519032134684561 ], [ -95.755006090801643, 29.518701134235677 ], [ -95.755095090812532, 29.51811513496483 ], [ -95.75562209142926, 29.512853133367042 ], [ -95.755755091274395, 29.511108133138215 ], [ -95.75577809059611, 29.510941132792134 ], [ -95.755878091003481, 29.510209132974126 ], [ -95.755883090398285, 29.510162133226284 ], [ -95.755990090439013, 29.509142132801191 ], [ -95.756021090466618, 29.508819132984755 ], [ -95.756137090694935, 29.507604132595816 ], [ -95.75630809095604, 29.505816132183234 ], [ -95.756628091209052, 29.502651130922899 ], [ -95.756698090273417, 29.50195713093602 ], [ -95.756866091150329, 29.500298130480417 ], [ -95.757189090400459, 29.497024129800494 ], [ -95.757263090605051, 29.496010129676254 ], [ -95.758082090148335, 29.487366128363334 ], [ -95.758552090006262, 29.4824051273078 ], [ -95.758693090012358, 29.481648127232379 ], [ -95.758901090540874, 29.48101712653747 ], [ -95.759532090863644, 29.480208126919187 ], [ -95.760928090475829, 29.478895126414923 ], [ -95.762147091326625, 29.477810126069251 ], [ -95.764644091951709, 29.475522125328531 ], [ -95.766384091556105, 29.473933125490625 ], [ -95.767490091861006, 29.472923124706774 ], [ -95.768781092037571, 29.471764124361158 ], [ -95.771650093354424, 29.469145123679827 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1552, "Tract": "48157674401", "Area_SqMi": 3.9327913408176962, "total_2009": 207, "total_2010": 273, "total_2011": 346, "total_2012": 445, "total_2013": 481, "total_2014": 504, "total_2015": 1000, "total_2016": 591, "total_2017": 735, "total_2018": 1082, "total_2019": 1015, "total_2020": 1006, "age1": 242, "age2": 584, "age3": 311, "earn1": 240, "earn2": 336, "earn3": 561, "naics_s01": 0, "naics_s02": 12, "naics_s03": 0, "naics_s04": 9, "naics_s05": 9, "naics_s06": 48, "naics_s07": 70, "naics_s08": 3, "naics_s09": 8, "naics_s10": 16, "naics_s11": 33, "naics_s12": 413, "naics_s13": 0, "naics_s14": 249, "naics_s15": 10, "naics_s16": 70, "naics_s17": 21, "naics_s18": 96, "naics_s19": 70, "naics_s20": 0, "race1": 654, "race2": 140, "race3": 5, "race4": 316, "race5": 0, "race6": 22, "ethnicity1": 896, "ethnicity2": 241, "edu1": 135, "edu2": 171, "edu3": 216, "edu4": 373, "Shape_Length": 73608.773354978577, "Shape_Area": 109639491.54234655, "total_2021": 925, "total_2022": 1137 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.668338071316072, 29.568262147607339 ], [ -95.668297071612756, 29.56814614779989 ], [ -95.668292070993488, 29.56811114787072 ], [ -95.668296071065186, 29.568002147949809 ], [ -95.668293071558836, 29.567930148046489 ], [ -95.668282071000576, 29.56784414743678 ], [ -95.668279071460049, 29.567823147678553 ], [ -95.668223071537767, 29.567649147711794 ], [ -95.667999071337746, 29.567263147148296 ], [ -95.667876071441682, 29.567076147809175 ], [ -95.667687071204043, 29.566839147562554 ], [ -95.667330070950968, 29.56644214761716 ], [ -95.667181070387201, 29.566269147717634 ], [ -95.666924070341238, 29.565987147443909 ], [ -95.666624070287668, 29.565689146990213 ], [ -95.666509070846516, 29.565585146814485 ], [ -95.666446070500172, 29.565539147548431 ], [ -95.666040070848766, 29.565291147452669 ], [ -95.665543070383634, 29.564968146783031 ], [ -95.66544107026543, 29.564907146678841 ], [ -95.665193070309542, 29.564772146844778 ], [ -95.664704069637096, 29.564535146706785 ], [ -95.664511070370722, 29.564471147079885 ], [ -95.663838069747271, 29.564297147158204 ], [ -95.663394069768714, 29.56421514726377 ], [ -95.662825069896897, 29.564125147117728 ], [ -95.66249906909897, 29.564082147403578 ], [ -95.661883069216358, 29.564026147219902 ], [ -95.661224069280067, 29.56398514677732 ], [ -95.660399068895515, 29.563974146771372 ], [ -95.659821068293169, 29.563984146715924 ], [ -95.659581069216998, 29.56399014672877 ], [ -95.659079068251046, 29.564004146685228 ], [ -95.658212068589194, 29.56402214747305 ], [ -95.657936067969175, 29.564093147022088 ], [ -95.657648068155098, 29.564115147550879 ], [ -95.657565067879219, 29.564114147348434 ], [ -95.657438068009142, 29.564107146946988 ], [ -95.657153067753413, 29.564090146795483 ], [ -95.657038068157703, 29.564051147530449 ], [ -95.656802067591698, 29.563986147500312 ], [ -95.656640068149102, 29.563956147581802 ], [ -95.65647706748841, 29.563936147207745 ], [ -95.656073067810112, 29.563864147491884 ], [ -95.655747067534506, 29.563816146836178 ], [ -95.655585067580134, 29.563786147416963 ], [ -95.655549068167105, 29.563771146944806 ], [ -95.655418067170814, 29.56368414691482 ], [ -95.655349068034027, 29.56364514749686 ], [ -95.655238068054445, 29.563595146849106 ], [ -95.655122067788014, 29.563558147312506 ], [ -95.65496206782251, 29.56352314684311 ], [ -95.65488106754546, 29.563511147510305 ], [ -95.654716067637423, 29.563500147586264 ], [ -95.654593066957943, 29.563498146761397 ], [ -95.654244067654133, 29.56338614720201 ], [ -95.654164067246199, 29.563368147285111 ], [ -95.653922066944403, 29.563323147150857 ], [ -95.653729066928932, 29.563259147051994 ], [ -95.653386067254857, 29.563134147384911 ], [ -95.652746066781319, 29.562882147309733 ], [ -95.652565067279895, 29.562795146745284 ], [ -95.651998066337811, 29.562501146669966 ], [ -95.651732066845099, 29.5624011473157 ], [ -95.651615066880581, 29.562365146845224 ], [ -95.651182066530438, 29.5622471472984 ], [ -95.650859065964966, 29.562186147444539 ], [ -95.650741066390552, 29.562155147096611 ], [ -95.650477065992462, 29.562052147013567 ], [ -95.65029606617459, 29.561967147145783 ], [ -95.650174065760893, 29.561946146691675 ], [ -95.649604066441427, 29.561865147056942 ], [ -95.648835065443521, 29.561731146681087 ], [ -95.648189065402065, 29.561614147110483 ], [ -95.647306065596638, 29.561427146679879 ], [ -95.647227065466879, 29.561406147356109 ], [ -95.646626065719417, 29.561168147300279 ], [ -95.646153064648601, 29.560946146870599 ], [ -95.645782065112698, 29.560787147096658 ], [ -95.645494065196758, 29.560647146543218 ], [ -95.64532606477681, 29.560541147087889 ], [ -95.645230065284522, 29.560473147095941 ], [ -95.64496406444573, 29.560247146789731 ], [ -95.644762064863144, 29.560066146484804 ], [ -95.644738065056472, 29.560040146532668 ], [ -95.644684064601805, 29.559982146893457 ], [ -95.64443506479931, 29.559694146643213 ], [ -95.644341064255002, 29.559576146974699 ], [ -95.644278064310654, 29.559483146801508 ], [ -95.644159064861782, 29.559253146400426 ], [ -95.644001064867481, 29.558881146351688 ], [ -95.643841064552404, 29.558471146696498 ], [ -95.643808064035596, 29.558367146641 ], [ -95.643760064058625, 29.558191146750197 ], [ -95.643678064198795, 29.557838146089153 ], [ -95.643611064678311, 29.557336146044069 ], [ -95.643620064802661, 29.557120145958962 ], [ -95.643650063925719, 29.556760146140107 ], [ -95.643749064624515, 29.556189146233184 ], [ -95.643785064113615, 29.556049146185963 ], [ -95.643840064845449, 29.555913146045334 ], [ -95.643928063972069, 29.555635146025974 ], [ -95.644059064383086, 29.555143145415666 ], [ -95.644189064671906, 29.554540146027978 ], [ -95.644225064742045, 29.554290145377262 ], [ -95.644269063954994, 29.554150145537225 ], [ -95.644285064785592, 29.55408014581905 ], [ -95.644311063987857, 29.553861145698633 ], [ -95.644353063930623, 29.553759145946458 ], [ -95.644385064477902, 29.553654145789594 ], [ -95.644411064782588, 29.553476145816994 ], [ -95.644470063995342, 29.55334114567453 ], [ -95.644501063904826, 29.553236145651773 ], [ -95.644517064225994, 29.553165145750906 ], [ -95.644546064298339, 29.552987145192077 ], [ -95.64455306418688, 29.552770145120331 ], [ -95.644548064548147, 29.55269814527761 ], [ -95.64446606478424, 29.552162145016027 ], [ -95.644434064197739, 29.552020144998774 ], [ -95.644412064212773, 29.551951144993005 ], [ -95.644350064750327, 29.551817145150746 ], [ -95.644239064389083, 29.551665145258362 ], [ -95.64416506458565, 29.551578144828568 ], [ -95.644019064422778, 29.551451145357717 ], [ -95.643688064027231, 29.551235145267864 ], [ -95.643620064117002, 29.551194145222723 ], [ -95.643440063911484, 29.551106144587425 ], [ -95.643287064185273, 29.551053144762509 ], [ -95.643206064020177, 29.55103814485965 ], [ -95.643042064147267, 29.551024144734797 ], [ -95.642839063912007, 29.55099014462548 ], [ -95.64251106403043, 29.550960144795095 ], [ -95.642181063717757, 29.550947144993241 ], [ -95.642058064093092, 29.55093714472283 ], [ -95.64152706386426, 29.550873145359226 ], [ -95.640957063246859, 29.550789145331688 ], [ -95.640838063178052, 29.550761145345803 ], [ -95.640566063590853, 29.550676145327564 ], [ -95.640405063389366, 29.55064314519074 ], [ -95.640000062963438, 29.550573145174109 ], [ -95.639719062694454, 29.5505151448099 ], [ -95.639239062603167, 29.550408144610913 ], [ -95.63870906270904, 29.550337144575906 ], [ -95.638597062914457, 29.550328145133154 ], [ -95.638338062643243, 29.550271145280153 ], [ -95.638180062526573, 29.550230145435716 ], [ -95.637873062170286, 29.550123145054517 ], [ -95.637785062894011, 29.550093145207605 ], [ -95.637695062378469, 29.550066145041392 ], [ -95.63771906223387, 29.55067314541995 ], [ -95.637639062757742, 29.553944145905195 ], [ -95.637374062368352, 29.553891145774816 ], [ -95.636928062873722, 29.553874145729868 ], [ -95.636557061875919, 29.553820146174854 ], [ -95.635258062196385, 29.553759145627168 ], [ -95.633260061756346, 29.553801146177278 ], [ -95.632671061802029, 29.553890146004601 ], [ -95.632366061462832, 29.553979145750638 ], [ -95.63203806078964, 29.554079145656591 ], [ -95.631710060837221, 29.554207145967695 ], [ -95.631137060956505, 29.554407145943728 ], [ -95.630754061026565, 29.554540146428309 ], [ -95.630470060935323, 29.554612146038302 ], [ -95.629992060519626, 29.554685145991005 ], [ -95.629576060559543, 29.554729145822755 ], [ -95.629225060049279, 29.554735146426129 ], [ -95.628704060286267, 29.554716146343594 ], [ -95.625309059223952, 29.554732146283317 ], [ -95.6249260592447, 29.55471414611474 ], [ -95.624462059385536, 29.554660146010686 ], [ -95.622991058598473, 29.554393146281164 ], [ -95.622313059098119, 29.554223146440041 ], [ -95.621225058715979, 29.553795146413272 ], [ -95.620717058172502, 29.553564146306009 ], [ -95.620352057786192, 29.553323146356242 ], [ -95.620004058596976, 29.553038146394918 ], [ -95.619799057651775, 29.552877146445702 ], [ -95.619469057981505, 29.552467146225126 ], [ -95.618524057439345, 29.551157145463623 ], [ -95.618393057490437, 29.551165145691574 ], [ -95.618311058099593, 29.551170146120352 ], [ -95.618239057240245, 29.551175145714748 ], [ -95.618143058028409, 29.551176146159154 ], [ -95.608692055527115, 29.551249146014744 ], [ -95.608708055004769, 29.551625145962291 ], [ -95.608777055086023, 29.552865146497659 ], [ -95.60899305498485, 29.556743147437075 ], [ -95.596830052424849, 29.557060147458298 ], [ -95.596819052623076, 29.556525147327559 ], [ -95.596801052192163, 29.555677147707367 ], [ -95.596713052510992, 29.551464147011171 ], [ -95.596640051674157, 29.551465146879934 ], [ -95.596221051642601, 29.551471147000818 ], [ -95.596111052383307, 29.551472146272978 ], [ -95.594668051575184, 29.551491146576943 ], [ -95.594485051281168, 29.551493146872247 ], [ -95.594475051043148, 29.551633146777363 ], [ -95.593833051785325, 29.551652146896068 ], [ -95.592661051181764, 29.551687147054519 ], [ -95.592679050958736, 29.551844147073297 ], [ -95.592676050661609, 29.552300146641983 ], [ -95.592688050831811, 29.55277414743513 ], [ -95.592711051421091, 29.553658147282015 ], [ -95.592712051566153, 29.553722147068285 ], [ -95.592721051526468, 29.554071147483139 ], [ -95.592731051543581, 29.554425147012765 ], [ -95.592739050930973, 29.554782147433635 ], [ -95.592761051625331, 29.555618147676533 ], [ -95.592786051718193, 29.556908147783538 ], [ -95.592798051316365, 29.557493148197025 ], [ -95.592847051380772, 29.557872148250297 ], [ -95.592877051041086, 29.558863147945207 ], [ -95.592891051970184, 29.559375148604722 ], [ -95.592892051071203, 29.559429148612033 ], [ -95.59291605145232, 29.560111148240271 ], [ -95.592936051152108, 29.560910148771573 ], [ -95.592957051363953, 29.561049149067475 ], [ -95.592978051410896, 29.561111148875465 ], [ -95.593011051989635, 29.561173148404364 ], [ -95.593063051394083, 29.561238148547776 ], [ -95.593180051428135, 29.561375148818595 ], [ -95.59273005135239, 29.561693148834937 ], [ -95.592448051634989, 29.561938148765094 ], [ -95.592208051089784, 29.562197148943561 ], [ -95.5918470511903, 29.562638149184806 ], [ -95.59160805111506, 29.563174149486763 ], [ -95.591505051416036, 29.563510148974881 ], [ -95.591475051068016, 29.563759149325971 ], [ -95.591462051707381, 29.564271149419408 ], [ -95.593047051968099, 29.564234149094283 ], [ -95.594065051605853, 29.564211149286379 ], [ -95.603538054602453, 29.564061149330588 ], [ -95.6038400542228, 29.564060148737695 ], [ -95.608868055292334, 29.563939149182119 ], [ -95.612099056190885, 29.563871148376055 ], [ -95.615343057673684, 29.563802148488815 ], [ -95.618220057660807, 29.563742148404369 ], [ -95.618221058378353, 29.563760148247052 ], [ -95.618221058417234, 29.563805148229161 ], [ -95.619209058001118, 29.563812147991538 ], [ -95.621390059203733, 29.563759148507256 ], [ -95.629061060633518, 29.563570148348607 ], [ -95.629811061527576, 29.563552148425259 ], [ -95.630252061594419, 29.56354614761808 ], [ -95.632909061768146, 29.5635081479337 ], [ -95.637779063290353, 29.563442147506528 ], [ -95.637966063264869, 29.563439148165163 ], [ -95.637927062802945, 29.563696147534458 ], [ -95.637906063651258, 29.563834148272726 ], [ -95.637869063386205, 29.564193147583083 ], [ -95.637871063632531, 29.56455314808592 ], [ -95.637891062715383, 29.564732147863239 ], [ -95.637876063073406, 29.565262148263251 ], [ -95.637896062930594, 29.566307148218264 ], [ -95.637879063106951, 29.567749148490638 ], [ -95.637877063624416, 29.568398148311836 ], [ -95.637888063268846, 29.569660148908294 ], [ -95.637885063569072, 29.570164149054118 ], [ -95.637877063633738, 29.570489149365876 ], [ -95.637870063804115, 29.570713149567364 ], [ -95.637861063367183, 29.571650149510379 ], [ -95.637900064021878, 29.573124150136426 ], [ -95.637935063174197, 29.574778150267271 ], [ -95.637963063502355, 29.575568150076005 ], [ -95.637983063676941, 29.575711150017991 ], [ -95.637996064163261, 29.575745150029665 ], [ -95.638015064002275, 29.575778149963437 ], [ -95.638028063455366, 29.57579114987178 ], [ -95.638041064087759, 29.575805149940869 ], [ -95.638140063281682, 29.575904150174093 ], [ -95.638501063967738, 29.576297150472531 ], [ -95.639755064361637, 29.577687150386918 ], [ -95.639790064708478, 29.577751150788924 ], [ -95.639857064598999, 29.577996150233762 ], [ -95.639869064252395, 29.578104150857882 ], [ -95.639871064601635, 29.581309151038312 ], [ -95.639842064669125, 29.582225151507373 ], [ -95.639838064825952, 29.582360151695159 ], [ -95.639834064972263, 29.582495151878625 ], [ -95.639818064979778, 29.582746151879821 ], [ -95.639840064191276, 29.583466152067665 ], [ -95.639857065016955, 29.583718151600554 ], [ -95.639835064657888, 29.584365151624361 ], [ -95.639834064296892, 29.584833152138952 ], [ -95.63980006439246, 29.585299152028309 ], [ -95.639815064212428, 29.585515152482468 ], [ -95.639844064721657, 29.585657152007016 ], [ -95.639858064824978, 29.585816152423533 ], [ -95.639898065069218, 29.586256152746554 ], [ -95.640047064525191, 29.586162152570719 ], [ -95.64036906449337, 29.585959152335853 ], [ -95.641204064919947, 29.585433152423839 ], [ -95.643621065681231, 29.583908151565083 ], [ -95.644009065624516, 29.583663151529311 ], [ -95.645453065615172, 29.58275115146812 ], [ -95.645796066117612, 29.582535151736799 ], [ -95.647503066524322, 29.581457151195117 ], [ -95.647689066013399, 29.581339150822817 ], [ -95.64786406600787, 29.581229150881892 ], [ -95.648212066888959, 29.581010150916342 ], [ -95.648465066791104, 29.580850151281982 ], [ -95.649147067202392, 29.580420150649541 ], [ -95.650005067203793, 29.579877150581282 ], [ -95.650847067288453, 29.579345150352019 ], [ -95.653570067552749, 29.577625150277889 ], [ -95.654393068330052, 29.577105150135125 ], [ -95.65936906926963, 29.573961148974298 ], [ -95.661195069877678, 29.57280714855143 ], [ -95.664890070471799, 29.57045614810237 ], [ -95.665169070659701, 29.570279148388551 ], [ -95.666965070787967, 29.569136148102452 ], [ -95.667767071309257, 29.568626148093003 ], [ -95.668294071117188, 29.568290147265564 ], [ -95.668338071316072, 29.568262147607339 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1553, "Tract": "48157675702", "Area_SqMi": 7.9074856297895995, "total_2009": 428, "total_2010": 436, "total_2011": 399, "total_2012": 455, "total_2013": 726, "total_2014": 628, "total_2015": 704, "total_2016": 518, "total_2017": 563, "total_2018": 533, "total_2019": 559, "total_2020": 523, "age1": 118, "age2": 254, "age3": 127, "earn1": 116, "earn2": 170, "earn3": 213, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 57, "naics_s05": 67, "naics_s06": 11, "naics_s07": 75, "naics_s08": 1, "naics_s09": 0, "naics_s10": 30, "naics_s11": 9, "naics_s12": 13, "naics_s13": 0, "naics_s14": 22, "naics_s15": 17, "naics_s16": 111, "naics_s17": 0, "naics_s18": 37, "naics_s19": 0, "naics_s20": 46, "race1": 426, "race2": 38, "race3": 9, "race4": 18, "race5": 0, "race6": 8, "ethnicity1": 351, "ethnicity2": 148, "edu1": 71, "edu2": 123, "edu3": 112, "edu4": 75, "Shape_Length": 72220.330933087738, "Shape_Area": 220447165.56161988, "total_2021": 496, "total_2022": 499 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.884773119369413, 29.398174105590098 ], [ -95.884674119290054, 29.398088105236742 ], [ -95.881133118208183, 29.395158104804828 ], [ -95.880628117285511, 29.394745105205185 ], [ -95.880084117778594, 29.394291104821431 ], [ -95.878798116895894, 29.393221105253083 ], [ -95.878543117342915, 29.393014105254363 ], [ -95.877821117387057, 29.39241410447902 ], [ -95.877582116980193, 29.392216104877086 ], [ -95.874187115678893, 29.389412104238378 ], [ -95.872819114906306, 29.388281104150032 ], [ -95.872802115718642, 29.388261104476733 ], [ -95.872738115201983, 29.388206103813296 ], [ -95.872629115465401, 29.388120104308413 ], [ -95.872306114958874, 29.387850103669049 ], [ -95.871508115306398, 29.387200103681508 ], [ -95.870802114580229, 29.386611103744368 ], [ -95.869123113903299, 29.385223103354281 ], [ -95.867473114000205, 29.383843102951701 ], [ -95.866814114001698, 29.383296103236798 ], [ -95.865973113335428, 29.382590102996435 ], [ -95.864975113093678, 29.381767102935139 ], [ -95.864011113272838, 29.380964102545438 ], [ -95.862718112347991, 29.379876102622561 ], [ -95.860762112187984, 29.378261102407397 ], [ -95.860719112234534, 29.378208102251055 ], [ -95.860282111324736, 29.378620102149625 ], [ -95.857140110701124, 29.381490103164655 ], [ -95.856845111540892, 29.381767102991578 ], [ -95.856438111195558, 29.382150103191378 ], [ -95.856340110500454, 29.382220103683014 ], [ -95.855585110577238, 29.38291910337685 ], [ -95.852167110033747, 29.386100104110891 ], [ -95.851671110167914, 29.386534104629646 ], [ -95.84938810978872, 29.388660104746453 ], [ -95.849307109087363, 29.388736104988869 ], [ -95.8492221098615, 29.388672105233493 ], [ -95.848018108872637, 29.387756104333032 ], [ -95.846630108398088, 29.38666910428288 ], [ -95.843093107694557, 29.383895104140517 ], [ -95.841534107092713, 29.382674103936093 ], [ -95.8414531070474, 29.382609104071232 ], [ -95.841374106726263, 29.382547103992401 ], [ -95.840914107434301, 29.38218710402305 ], [ -95.839796106243298, 29.38131110386125 ], [ -95.838910106554067, 29.38061610359625 ], [ -95.838772106147076, 29.380503103971837 ], [ -95.836901106229718, 29.378982102981304 ], [ -95.835849105628043, 29.378127103233904 ], [ -95.833109105248212, 29.375231103054915 ], [ -95.831812104546273, 29.37414510221593 ], [ -95.831139104250411, 29.373582102525468 ], [ -95.825953102217838, 29.369237101636358 ], [ -95.823664102188303, 29.36733810146837 ], [ -95.823635102132414, 29.367365101737185 ], [ -95.822247101782708, 29.368659101450994 ], [ -95.820344101675971, 29.370393102540696 ], [ -95.819746101175994, 29.370938102499014 ], [ -95.81957410090746, 29.37109910241038 ], [ -95.819099101458477, 29.371542102440987 ], [ -95.817829100627506, 29.372702102288599 ], [ -95.816347100776696, 29.374056102615157 ], [ -95.8141830994999, 29.376096103413179 ], [ -95.812138099633771, 29.377931103960048 ], [ -95.812661099402149, 29.378382103685759 ], [ -95.813742100286262, 29.379246103885759 ], [ -95.815249100472073, 29.380490104320884 ], [ -95.816302100490461, 29.381374104813734 ], [ -95.816606101134852, 29.381641104946421 ], [ -95.817083101198435, 29.38206110458221 ], [ -95.81978110207568, 29.384282104879841 ], [ -95.820501102369406, 29.384875104931321 ], [ -95.822648102805815, 29.386621105210796 ], [ -95.822793102125416, 29.386739105563343 ], [ -95.823659103313744, 29.387464105111263 ], [ -95.824130102675156, 29.387859105261466 ], [ -95.824281103107324, 29.387986105150034 ], [ -95.825049102935097, 29.388628105831028 ], [ -95.8258061030199, 29.389263105688055 ], [ -95.825915103471033, 29.389355106241254 ], [ -95.826118103395103, 29.389524106035918 ], [ -95.826696103423728, 29.390007105637899 ], [ -95.828476104657554, 29.391449106170899 ], [ -95.828596104104307, 29.391546106321346 ], [ -95.828652104424691, 29.39159110615272 ], [ -95.828751104586033, 29.391686106263556 ], [ -95.829851105143575, 29.39261710663687 ], [ -95.8299341043342, 29.392687106435815 ], [ -95.829996104340964, 29.392740106481739 ], [ -95.830345104948648, 29.393032106627174 ], [ -95.831187105055918, 29.393736106334515 ], [ -95.831390104851465, 29.393894106163479 ], [ -95.832627105176897, 29.395074106927197 ], [ -95.832817105611539, 29.395361106870784 ], [ -95.833051105620854, 29.395791106889511 ], [ -95.833323105623464, 29.396773106854518 ], [ -95.834144106301054, 29.399752107801149 ], [ -95.834788106078889, 29.402075108119522 ], [ -95.835206106990711, 29.403987108847822 ], [ -95.835309106432177, 29.404755108790695 ], [ -95.835371106460627, 29.405317108840212 ], [ -95.835299106493522, 29.40740610943957 ], [ -95.835298107083133, 29.407443109100914 ], [ -95.835228106855809, 29.409203109290303 ], [ -95.835090106464989, 29.411363109752312 ], [ -95.834894106516728, 29.416815111571641 ], [ -95.835300107421659, 29.417145111149804 ], [ -95.835974107626555, 29.417694111293027 ], [ -95.836408107151428, 29.418056110929591 ], [ -95.838624108232395, 29.419902111877921 ], [ -95.840024108829368, 29.421065111951062 ], [ -95.844558109731693, 29.424830112616956 ], [ -95.847183111050839, 29.427009112445546 ], [ -95.850581111615455, 29.42983911361641 ], [ -95.853286111877026, 29.427331113064923 ], [ -95.857110112738582, 29.423803111543389 ], [ -95.859168113519019, 29.421898111190416 ], [ -95.859334113688547, 29.421743111139165 ], [ -95.861954114307139, 29.419274110502087 ], [ -95.861999114445283, 29.419221110458864 ], [ -95.865078114537638, 29.416374109871768 ], [ -95.866806115489766, 29.414766109508285 ], [ -95.86744911474274, 29.414182109101525 ], [ -95.868950115598679, 29.412789108907816 ], [ -95.870211115809994, 29.411626109158792 ], [ -95.873340116035052, 29.40872410796333 ], [ -95.8739111169875, 29.408199107817037 ], [ -95.881375118492727, 29.401312106869405 ], [ -95.884773119369413, 29.398174105590098 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1554, "Tract": "48157673108", "Area_SqMi": 6.0926721010801907, "total_2009": 1554, "total_2010": 1774, "total_2011": 1954, "total_2012": 2314, "total_2013": 2210, "total_2014": 13626, "total_2015": 14341, "total_2016": 14443, "total_2017": 15418, "total_2018": 16927, "total_2019": 17912, "total_2020": 15818, "age1": 2796, "age2": 10440, "age3": 3470, "earn1": 2381, "earn2": 5276, "earn3": 9050, "naics_s01": 4, "naics_s02": 1, "naics_s03": 0, "naics_s04": 100, "naics_s05": 17, "naics_s06": 29, "naics_s07": 928, "naics_s08": 272, "naics_s09": 10, "naics_s10": 98, "naics_s11": 38, "naics_s12": 240, "naics_s13": 1, "naics_s14": 160, "naics_s15": 12802, "naics_s16": 1053, "naics_s17": 106, "naics_s18": 635, "naics_s19": 213, "naics_s20": 0, "race1": 12903, "race2": 2084, "race3": 142, "race4": 1262, "race5": 23, "race6": 292, "ethnicity1": 12044, "ethnicity2": 4663, "edu1": 2292, "edu2": 2997, "edu3": 4022, "edu4": 4600, "Shape_Length": 74944.242769047691, "Shape_Area": 169853270.46559861, "total_2021": 14326, "total_2022": 16707 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.853877127717524, 29.777695184552307 ], [ -95.85457112807984, 29.777431184326602 ], [ -95.850051126244239, 29.777272184204808 ], [ -95.849736126670294, 29.7772611840251 ], [ -95.848385125789576, 29.777280184270602 ], [ -95.841426124167455, 29.77737918435324 ], [ -95.838049123299228, 29.777427185058578 ], [ -95.837339123146805, 29.777437184948418 ], [ -95.837165123160133, 29.777440184812786 ], [ -95.836803123844774, 29.777445184673677 ], [ -95.833518122949826, 29.777448185020138 ], [ -95.832168122679491, 29.777449184879316 ], [ -95.832348122358724, 29.777288185210939 ], [ -95.832736121937671, 29.776938184306022 ], [ -95.832963122237203, 29.776730184539684 ], [ -95.834664122637662, 29.77520518386482 ], [ -95.835603122776448, 29.774364183875274 ], [ -95.835936123493667, 29.774065184052507 ], [ -95.836106123469762, 29.773909183643585 ], [ -95.836152122738511, 29.773867184102912 ], [ -95.836189123491224, 29.773834183637206 ], [ -95.836260122603221, 29.773770184076213 ], [ -95.836371123468496, 29.773670184299316 ], [ -95.837067123046339, 29.773098184091563 ], [ -95.837200123728024, 29.772976184003852 ], [ -95.838259123742475, 29.77202418326662 ], [ -95.838530123123405, 29.771755183060105 ], [ -95.839047123627026, 29.771038183594371 ], [ -95.839386123623143, 29.770248183291688 ], [ -95.839537123787068, 29.769834182702418 ], [ -95.839902123521782, 29.768839183090133 ], [ -95.840448124212941, 29.767347182830559 ], [ -95.840655123440513, 29.7668031823038 ], [ -95.841025123435927, 29.765742181980361 ], [ -95.841128123673712, 29.765539181909006 ], [ -95.841216123461564, 29.765291182170795 ], [ -95.841436123742554, 29.764672181693488 ], [ -95.841481124349357, 29.764570181731873 ], [ -95.841502124328784, 29.764529181494758 ], [ -95.841526124399266, 29.764490181635345 ], [ -95.841536123696656, 29.764477182169173 ], [ -95.841570124019626, 29.76442418191872 ], [ -95.841604124429551, 29.764387182241311 ], [ -95.841631124262292, 29.764374181799052 ], [ -95.841642124475499, 29.764369181835278 ], [ -95.841669124517253, 29.764359181499131 ], [ -95.841713124308697, 29.764353182108362 ], [ -95.84175312380259, 29.764347182294415 ], [ -95.841923123835542, 29.764347182121533 ], [ -95.842028123716048, 29.764359182098438 ], [ -95.843160123972297, 29.764521181737511 ], [ -95.843594124214761, 29.764512181849973 ], [ -95.845153125379426, 29.764502182189815 ], [ -95.846251125682215, 29.764495181376105 ], [ -95.847847126012937, 29.764490181901703 ], [ -95.849748126241849, 29.76445818161114 ], [ -95.850217126356625, 29.764423181590061 ], [ -95.850464125789003, 29.764370181536865 ], [ -95.850694126777171, 29.764293181482529 ], [ -95.850944126043572, 29.76415518136357 ], [ -95.851169126821432, 29.763999181259777 ], [ -95.851449126960958, 29.76371318151293 ], [ -95.851602126856605, 29.763421181197323 ], [ -95.851686126667914, 29.763142181129865 ], [ -95.851733126993054, 29.762853181502006 ], [ -95.851714126444421, 29.761032181199695 ], [ -95.851714126633667, 29.76098518046917 ], [ -95.851714126103289, 29.760970180836516 ], [ -95.851680126568255, 29.757740180495354 ], [ -95.85167612591826, 29.755850179965424 ], [ -95.851653126479079, 29.752422178710404 ], [ -95.851634126226955, 29.749326178796569 ], [ -95.851856125625616, 29.748349178674051 ], [ -95.851911126253043, 29.748143177776178 ], [ -95.852004126340773, 29.747798177970704 ], [ -95.852172126100101, 29.747314178348766 ], [ -95.85235812616547, 29.746911177570851 ], [ -95.852527125759593, 29.746477177610807 ], [ -95.852571125675809, 29.746347178148238 ], [ -95.852949125506882, 29.745232177698306 ], [ -95.853061126219217, 29.744436176971707 ], [ -95.853097125572575, 29.743484177323662 ], [ -95.853089126086942, 29.742981177175526 ], [ -95.853046125337357, 29.740438176793941 ], [ -95.853049125795721, 29.738362175771051 ], [ -95.853019125350102, 29.735601175974267 ], [ -95.852923125671339, 29.735063175685521 ], [ -95.852897125170045, 29.734556175510082 ], [ -95.852572125725359, 29.734443175154489 ], [ -95.851904125587708, 29.734279175840307 ], [ -95.849722124448263, 29.734220175756455 ], [ -95.847630124461233, 29.73425817532566 ], [ -95.846341123661588, 29.734280175657922 ], [ -95.845789123277868, 29.734285175844846 ], [ -95.845555123610836, 29.734287175695947 ], [ -95.845527123555058, 29.734287175283178 ], [ -95.842284122685371, 29.734311176065404 ], [ -95.840146122580677, 29.734326175853024 ], [ -95.83822312225945, 29.734335175613282 ], [ -95.837987121624209, 29.734332176178889 ], [ -95.837910122042686, 29.734318175926436 ], [ -95.837750121390926, 29.734283175915174 ], [ -95.835488120841276, 29.734285175758238 ], [ -95.833364120280336, 29.734200175865947 ], [ -95.833297120721042, 29.734187175594784 ], [ -95.833164120565201, 29.73416717627941 ], [ -95.832394120709353, 29.733993176445196 ], [ -95.831129119947263, 29.733679175924106 ], [ -95.830678120095584, 29.733549175911488 ], [ -95.83014512015923, 29.733430176114005 ], [ -95.830001119517291, 29.733399176361534 ], [ -95.829292119178774, 29.733350176255051 ], [ -95.828729119252657, 29.733358176220733 ], [ -95.828415119678141, 29.733362175817678 ], [ -95.82791111862683, 29.733418176005713 ], [ -95.827271118500789, 29.733549175751353 ], [ -95.827233119261791, 29.733563176364772 ], [ -95.826897119221726, 29.733683175949956 ], [ -95.826822119048614, 29.733718176571092 ], [ -95.826554118960416, 29.733749175968875 ], [ -95.826371118358978, 29.733814176433384 ], [ -95.8261921182728, 29.733885176043561 ], [ -95.82601511863578, 29.733961176121003 ], [ -95.825842118407678, 29.734043176247425 ], [ -95.825672118649607, 29.734130176187733 ], [ -95.825506118261544, 29.734223176204345 ], [ -95.82534411834574, 29.734321176289946 ], [ -95.825186118978422, 29.734423176412395 ], [ -95.825066118772043, 29.734586176365113 ], [ -95.824852118137784, 29.734653176728369 ], [ -95.824771117894855, 29.734704176499431 ], [ -95.824596117960212, 29.734835176060106 ], [ -95.824423118581223, 29.734989176094111 ], [ -95.824108118023247, 29.735274176348572 ], [ -95.823901118165679, 29.73546117640517 ], [ -95.823598117619284, 29.735734176894045 ], [ -95.823344118032267, 29.735952177039589 ], [ -95.823082118312712, 29.736147176338743 ], [ -95.822854117453389, 29.736297176859161 ], [ -95.822759117918977, 29.736452177018787 ], [ -95.822420117369191, 29.736551176495706 ], [ -95.821979117880275, 29.736751176696494 ], [ -95.821495117437735, 29.73692817678991 ], [ -95.821093117465978, 29.737045177441168 ], [ -95.820800117490492, 29.737113177073116 ], [ -95.820356116863039, 29.737200177451534 ], [ -95.820100116933617, 29.737258176815125 ], [ -95.819528116855111, 29.737395176824272 ], [ -95.819154117447596, 29.737515176821454 ], [ -95.818861117270345, 29.737628177172649 ], [ -95.818612117279685, 29.737738177316469 ], [ -95.818404117138456, 29.737840177301752 ], [ -95.818215116752782, 29.738004177242832 ], [ -95.818171117291286, 29.738110177241786 ], [ -95.818101116572308, 29.73815017743982 ], [ -95.817965116916668, 29.738233177249036 ], [ -95.817901117097676, 29.738276177412299 ], [ -95.817838116267723, 29.738319177806737 ], [ -95.817777116466686, 29.738363177011358 ], [ -95.817718117224871, 29.738404177529567 ], [ -95.817661117085493, 29.738445177671082 ], [ -95.817550116307018, 29.738531177123431 ], [ -95.817443116363037, 29.738619177755417 ], [ -95.817390116368188, 29.738660177134289 ], [ -95.817338116548271, 29.738700177639082 ], [ -95.817288116876739, 29.738740177803102 ], [ -95.817241116736298, 29.738778177805223 ], [ -95.817155117058093, 29.738848177093814 ], [ -95.817082117020604, 29.738914177193038 ], [ -95.8169861165741, 29.739000177846801 ], [ -95.816931117052633, 29.739047177674301 ], [ -95.816890116163876, 29.739085177482956 ], [ -95.816778116471397, 29.739162177410929 ], [ -95.816816116175147, 29.739197177598165 ], [ -95.817452116831276, 29.739744177521757 ], [ -95.819090117378124, 29.741141177652281 ], [ -95.820261117542714, 29.742135177995404 ], [ -95.82102311734748, 29.74279017829819 ], [ -95.822036118538676, 29.743652178591411 ], [ -95.822708118665474, 29.744223177998126 ], [ -95.823992118166956, 29.745316178297045 ], [ -95.823476118730198, 29.745767178306078 ], [ -95.821830118247135, 29.747224179138779 ], [ -95.821664118393002, 29.747371178930148 ], [ -95.820165118083111, 29.748713179276642 ], [ -95.819441118069378, 29.749349179536182 ], [ -95.819020117468781, 29.749720179407365 ], [ -95.81892211730414, 29.749814179413484 ], [ -95.817989116924977, 29.75063918003115 ], [ -95.817239117382414, 29.75129718046276 ], [ -95.817156117096019, 29.75136717970296 ], [ -95.816920117478361, 29.751551179722906 ], [ -95.816169117421694, 29.752709180505846 ], [ -95.816141116951528, 29.752752180527796 ], [ -95.816253116718372, 29.752745180622664 ], [ -95.816455117036071, 29.752811180463009 ], [ -95.817166117693048, 29.753003179985051 ], [ -95.817305117491884, 29.753091180378735 ], [ -95.817437117007159, 29.753261180503451 ], [ -95.817525117337397, 29.753410180616193 ], [ -95.817532117030922, 29.753613180868779 ], [ -95.817431117809818, 29.753811180927645 ], [ -95.817305117400338, 29.754097180396563 ], [ -95.817116117313915, 29.754322180641552 ], [ -95.816952117017266, 29.754635180919138 ], [ -95.816751117468357, 29.754987181081329 ], [ -95.816593117117662, 29.755224181063987 ], [ -95.816360117108132, 29.755399180596449 ], [ -95.816278117013098, 29.755482181085387 ], [ -95.816284117376767, 29.755619180832674 ], [ -95.816316117299138, 29.755779181065272 ], [ -95.816366116770908, 29.755850180762476 ], [ -95.816442117500188, 29.755905181014754 ], [ -95.816524117285084, 29.755933180841229 ], [ -95.81668111777671, 29.756010181072043 ], [ -95.816878117453044, 29.756069180989797 ], [ -95.817103117090753, 29.75613618086059 ], [ -95.817292117070679, 29.756290181164019 ], [ -95.817500117738206, 29.756493181517353 ], [ -95.817626117165076, 29.756587180652883 ], [ -95.817998117452717, 29.756828181096306 ], [ -95.818420117542161, 29.757169181481352 ], [ -95.818754117408517, 29.757549181541062 ], [ -95.819000117651584, 29.757939181597141 ], [ -95.819441118435876, 29.759137181650569 ], [ -95.819479118121123, 29.759324181779608 ], [ -95.819573117729618, 29.759555181580883 ], [ -95.819642118144671, 29.759775181401931 ], [ -95.819668118105326, 29.759961181805732 ], [ -95.819838117848434, 29.760346181928618 ], [ -95.819957118644226, 29.760561181907676 ], [ -95.820065118182683, 29.760802181735471 ], [ -95.820291118533262, 29.761110181785767 ], [ -95.820625118996702, 29.761478182121351 ], [ -95.821084118177794, 29.761924182419129 ], [ -95.821797119187195, 29.762616181796389 ], [ -95.822081118492221, 29.762995182280232 ], [ -95.822402119198429, 29.763820182339384 ], [ -95.822522118781421, 29.764040182734565 ], [ -95.822534119293934, 29.764144182689144 ], [ -95.822541119392383, 29.764392182751873 ], [ -95.8224971188925, 29.764556182278028 ], [ -95.822440119282064, 29.764699182289764 ], [ -95.822327118834835, 29.764842182971648 ], [ -95.82233311949868, 29.764908182622435 ], [ -95.822509118918276, 29.765183182627137 ], [ -95.822636119187706, 29.76525118289447 ], [ -95.822519119648589, 29.76536218238487 ], [ -95.822078118718423, 29.765739182348611 ], [ -95.821942119314812, 29.765869182840458 ], [ -95.82170811868906, 29.766077182646974 ], [ -95.821620119020707, 29.766156182801449 ], [ -95.821474119398658, 29.766283182908925 ], [ -95.821305119065386, 29.766421182897073 ], [ -95.820965118750067, 29.766726182918916 ], [ -95.82049011855203, 29.767148183585757 ], [ -95.819872118632659, 29.767700183729005 ], [ -95.819337118759975, 29.768179183176674 ], [ -95.818910118796737, 29.768464183863781 ], [ -95.818411118492492, 29.768684183476047 ], [ -95.817873118214905, 29.768828183620219 ], [ -95.817086117775915, 29.769020183637018 ], [ -95.817362118567218, 29.769904183594136 ], [ -95.817382117872071, 29.769969183693735 ], [ -95.818038118501406, 29.772071183857626 ], [ -95.818385118828232, 29.773186184748589 ], [ -95.81841611874944, 29.773286184472042 ], [ -95.81881811841572, 29.774573184494795 ], [ -95.819008118628744, 29.775318184747405 ], [ -95.819135119099599, 29.775737185080853 ], [ -95.819573119329462, 29.77718818554289 ], [ -95.819628119393286, 29.777368185113222 ], [ -95.819687119241763, 29.77756418538867 ], [ -95.818627118586676, 29.777635185005149 ], [ -95.818036118695346, 29.777747185473316 ], [ -95.817583118038684, 29.777824185203865 ], [ -95.817088118576734, 29.777950185235337 ], [ -95.816421118564435, 29.778167185630391 ], [ -95.815675118022668, 29.778482186034239 ], [ -95.815238117484981, 29.778711185726642 ], [ -95.815012117683764, 29.77883018571724 ], [ -95.814407117802759, 29.779228186250513 ], [ -95.813956117627157, 29.779541186289084 ], [ -95.812655117298718, 29.780719185872783 ], [ -95.812402116886332, 29.780960185880815 ], [ -95.812388117379811, 29.780973186484207 ], [ -95.81264611751385, 29.781119186616738 ], [ -95.819903119208348, 29.785215186477163 ], [ -95.820739119864555, 29.785682187229035 ], [ -95.820833119180477, 29.785734186539212 ], [ -95.821364119962695, 29.786033186892247 ], [ -95.822016120004847, 29.786398186928704 ], [ -95.822196119897114, 29.786502187121421 ], [ -95.823306120228239, 29.787123187155679 ], [ -95.823631119968496, 29.78730318728709 ], [ -95.824438120209933, 29.787757187443901 ], [ -95.825146120584691, 29.788151186873296 ], [ -95.825631120728488, 29.788424187455931 ], [ -95.825982121492956, 29.788621186897622 ], [ -95.8263131207257, 29.788488187455926 ], [ -95.826227121152741, 29.788285187056573 ], [ -95.826313121322372, 29.788251186889472 ], [ -95.826431120973368, 29.788205187545209 ], [ -95.826876120884549, 29.788034186756406 ], [ -95.828921122106806, 29.787245186773209 ], [ -95.828941121398927, 29.787236186669162 ], [ -95.829003122228258, 29.787213186920475 ], [ -95.82902412201139, 29.787205187038836 ], [ -95.829491121561617, 29.787024186990859 ], [ -95.830474122383734, 29.786654187077527 ], [ -95.831173121887815, 29.786375187042751 ], [ -95.831420122561099, 29.786275186941179 ], [ -95.831663122532262, 29.786178186693316 ], [ -95.831899122263039, 29.786083186694704 ], [ -95.831982122060595, 29.786050186987598 ], [ -95.832298122953645, 29.785940186651448 ], [ -95.832651122934351, 29.785814186585252 ], [ -95.83285312269193, 29.785741186403872 ], [ -95.833368123344641, 29.78552818617705 ], [ -95.833453123311045, 29.785489186606227 ], [ -95.833558122779195, 29.785441186208097 ], [ -95.834673123267009, 29.785019186748993 ], [ -95.835853123880568, 29.784577185751854 ], [ -95.835930123120733, 29.784548186530639 ], [ -95.836616123310634, 29.784293186489496 ], [ -95.837184124193243, 29.784087186425594 ], [ -95.838138123738759, 29.783730185702527 ], [ -95.838566124461167, 29.783569185674427 ], [ -95.838632123763517, 29.783543185511526 ], [ -95.839228124012081, 29.783306185607969 ], [ -95.839549124179371, 29.783178185621669 ], [ -95.839721123854318, 29.783107185494707 ], [ -95.841725124765844, 29.782281185695187 ], [ -95.841774124507836, 29.78226118527661 ], [ -95.841918124993953, 29.782199185402742 ], [ -95.845171125881748, 29.781004185213042 ], [ -95.849283126281733, 29.779440184648188 ], [ -95.849559126573794, 29.779337184415102 ], [ -95.849583126364649, 29.779328185067961 ], [ -95.850044126842704, 29.77915318419565 ], [ -95.85135912755338, 29.778652184757949 ], [ -95.851852127295217, 29.778464184504831 ], [ -95.853877127717524, 29.777695184552307 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1555, "Tract": "48157674002", "Area_SqMi": 1.2792965658857129, "total_2009": 14916, "total_2010": 15150, "total_2011": 14503, "total_2012": 15981, "total_2013": 16461, "total_2014": 17434, "total_2015": 18011, "total_2016": 18486, "total_2017": 16896, "total_2018": 17445, "total_2019": 19787, "total_2020": 19812, "age1": 3377, "age2": 11698, "age3": 4412, "earn1": 2472, "earn2": 5212, "earn3": 11803, "naics_s01": 0, "naics_s02": 474, "naics_s03": 12, "naics_s04": 153, "naics_s05": 72, "naics_s06": 25, "naics_s07": 1039, "naics_s08": 189, "naics_s09": 56, "naics_s10": 363, "naics_s11": 24, "naics_s12": 908, "naics_s13": 45, "naics_s14": 245, "naics_s15": 10795, "naics_s16": 3174, "naics_s17": 35, "naics_s18": 1330, "naics_s19": 162, "naics_s20": 386, "race1": 11180, "race2": 5535, "race3": 138, "race4": 2274, "race5": 18, "race6": 342, "ethnicity1": 14756, "ethnicity2": 4731, "edu1": 2570, "edu2": 3594, "edu3": 4817, "edu4": 5129, "Shape_Length": 27240.029961119581, "Shape_Area": 35664598.718938597, "total_2021": 19805, "total_2022": 19486 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.634680063131967, 29.58953015357374 ], [ -95.63486406370339, 29.589415153103307 ], [ -95.634625063619637, 29.589116153026755 ], [ -95.634410063476452, 29.588868152755737 ], [ -95.634308063429998, 29.588751152763116 ], [ -95.633979063090962, 29.58837815285175 ], [ -95.633306063200507, 29.587615152420337 ], [ -95.632876063195994, 29.587152152904888 ], [ -95.632442062350563, 29.586669152318127 ], [ -95.632090062786062, 29.586280152858631 ], [ -95.631838062465349, 29.585944152606057 ], [ -95.631608062354275, 29.585592152178599 ], [ -95.631334062551161, 29.585060152301388 ], [ -95.631155062513685, 29.584623152218676 ], [ -95.631038061835937, 29.584233152554305 ], [ -95.630950062245645, 29.584259152012798 ], [ -95.630803062524663, 29.584302152462872 ], [ -95.629987062318037, 29.584479151999826 ], [ -95.629558061955848, 29.584582152564835 ], [ -95.62903506222105, 29.584745152244434 ], [ -95.628646062211274, 29.584894152196132 ], [ -95.628290061756402, 29.58505215269259 ], [ -95.627898061974449, 29.585232152135166 ], [ -95.627518061932946, 29.585480152418636 ], [ -95.627189061049719, 29.585710152514707 ], [ -95.626798061361612, 29.586046152346952 ], [ -95.626360061309441, 29.586367152516353 ], [ -95.625420061407837, 29.58716215311485 ], [ -95.625141060963458, 29.587048152577349 ], [ -95.625009060382013, 29.586955153270981 ], [ -95.624134060386638, 29.586444153176952 ], [ -95.623059060207069, 29.586099152696221 ], [ -95.622593059952536, 29.585961153296665 ], [ -95.622178060518721, 29.585863152873916 ], [ -95.621473060258339, 29.585649152583866 ], [ -95.621159060365059, 29.585511152607296 ], [ -95.620907060059253, 29.585336152414868 ], [ -95.62059205972227, 29.585028152538442 ], [ -95.620517060114224, 29.584978152895172 ], [ -95.620492059323041, 29.584973152446207 ], [ -95.620366059905564, 29.585028152907881 ], [ -95.620178059850588, 29.5851441529014 ], [ -95.620033059752458, 29.585215152627061 ], [ -95.619888059319635, 29.585290152730135 ], [ -95.619844059791035, 29.585314152590023 ], [ -95.619674059346906, 29.585314152405683 ], [ -95.618869059549539, 29.585210152428967 ], [ -95.618636058997211, 29.585122152403489 ], [ -95.618265059262228, 29.584946152732289 ], [ -95.617900059344066, 29.58469415258897 ], [ -95.617655058956032, 29.584436152919377 ], [ -95.617441058689522, 29.5841941526363 ], [ -95.617221059276616, 29.583842152316329 ], [ -95.617057058549733, 29.583523152433266 ], [ -95.616673058180623, 29.582682152120604 ], [ -95.61626305892247, 29.58192415212503 ], [ -95.61618205831806, 29.581704151816208 ], [ -95.616137058851422, 29.581490152243049 ], [ -95.616100058443138, 29.581374151753753 ], [ -95.615949058502522, 29.581204151889921 ], [ -95.615930058632074, 29.581077152106179 ], [ -95.61596105795374, 29.580962151592569 ], [ -95.615898058068282, 29.580698151798924 ], [ -95.615804057764237, 29.58049515225224 ], [ -95.615690058288507, 29.580291151959006 ], [ -95.615652057737591, 29.580137151470201 ], [ -95.615564058459171, 29.579945151598324 ], [ -95.615495058272984, 29.579841151608274 ], [ -95.615306057859087, 29.579472151341019 ], [ -95.615233057975217, 29.579309152003372 ], [ -95.615174057863385, 29.579176151753828 ], [ -95.614890057860705, 29.578676151411798 ], [ -95.61488405815102, 29.578663151234306 ], [ -95.614815058023012, 29.57851215158178 ], [ -95.614769058280288, 29.578439151691843 ], [ -95.614674057571747, 29.578287151795362 ], [ -95.613393057361421, 29.578867151339395 ], [ -95.613077057872061, 29.578972152178199 ], [ -95.612777057196993, 29.579082151930944 ], [ -95.612430057206439, 29.579328152026747 ], [ -95.612172056983084, 29.579518151949838 ], [ -95.611731056816865, 29.579880152174493 ], [ -95.611466057432892, 29.580201152236167 ], [ -95.611394057467663, 29.58028815185661 ], [ -95.611320057069534, 29.580366151871996 ], [ -95.611231057166634, 29.580461152395038 ], [ -95.610861057138322, 29.58094615216589 ], [ -95.610448057054342, 29.581362152124221 ], [ -95.610057057070321, 29.581785152441608 ], [ -95.609805056386648, 29.582031152484735 ], [ -95.609004056488132, 29.582656152542274 ], [ -95.607808055885457, 29.583536152692211 ], [ -95.60724405580325, 29.584023152571771 ], [ -95.60685105585128, 29.584450153261386 ], [ -95.606638056177744, 29.584744153294253 ], [ -95.606296055870956, 29.585215153333912 ], [ -95.606083055967005, 29.585686153486609 ], [ -95.606015056479464, 29.585773153429951 ], [ -95.605910056401612, 29.586041152994557 ], [ -95.605703055767819, 29.586755153249648 ], [ -95.605619055664235, 29.58743315343408 ], [ -95.605595056377979, 29.587858153621799 ], [ -95.605624056312237, 29.588885154346201 ], [ -95.605608055962392, 29.589754153879039 ], [ -95.605555056308106, 29.590073154436947 ], [ -95.605491055924205, 29.590376154342117 ], [ -95.605330056484021, 29.590815154876768 ], [ -95.605138055632608, 29.591380154794603 ], [ -95.604869055964059, 29.59191815439441 ], [ -95.604776056295933, 29.592107155118381 ], [ -95.604905056485919, 29.592167154384356 ], [ -95.606339056770523, 29.592694154414346 ], [ -95.607883057296988, 29.593262155143648 ], [ -95.60928905748267, 29.593746155131537 ], [ -95.610685057898081, 29.594226155055892 ], [ -95.611075057284609, 29.594380154929819 ], [ -95.61199005749927, 29.594725155067884 ], [ -95.613114058521504, 29.595152155392231 ], [ -95.614716058884255, 29.595723155559185 ], [ -95.614780058205099, 29.595743154756416 ], [ -95.615023058596506, 29.595836155385129 ], [ -95.615040058998389, 29.595848154773517 ], [ -95.615472059079138, 29.595960155102411 ], [ -95.616214058777985, 29.59624115494562 ], [ -95.616314058741054, 29.596279155598431 ], [ -95.616870059745906, 29.596469154953734 ], [ -95.617798059034797, 29.596791155586843 ], [ -95.61921205981875, 29.597300155688171 ], [ -95.621376060969439, 29.598070155049722 ], [ -95.621458060104302, 29.598099155408459 ], [ -95.621871060728154, 29.598278155532089 ], [ -95.622266060455189, 29.598419155219698 ], [ -95.622521060674714, 29.598560155035898 ], [ -95.622561060913412, 29.598525155638406 ], [ -95.622722060475098, 29.598359155362537 ], [ -95.622815061104873, 29.598263155349947 ], [ -95.623482061197294, 29.597576155392741 ], [ -95.625333061198475, 29.595966154886518 ], [ -95.625819061724897, 29.595508154390984 ], [ -95.626275061117596, 29.595121155002989 ], [ -95.627194061326421, 29.594375154087341 ], [ -95.628631061596778, 29.593370154208152 ], [ -95.628883062103881, 29.593207154099776 ], [ -95.629712062075015, 29.592668153928486 ], [ -95.630494062843368, 29.592160154195341 ], [ -95.631200062939882, 29.591702153574175 ], [ -95.632877062766326, 29.590655153159858 ], [ -95.633913063471923, 29.590008153445368 ], [ -95.634516063081591, 29.589632153418499 ], [ -95.634680063131967, 29.58953015357374 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1556, "Tract": "48157674001", "Area_SqMi": 0.60887293267464637, "total_2009": 245, "total_2010": 233, "total_2011": 334, "total_2012": 273, "total_2013": 320, "total_2014": 492, "total_2015": 599, "total_2016": 484, "total_2017": 487, "total_2018": 429, "total_2019": 428, "total_2020": 404, "age1": 92, "age2": 243, "age3": 83, "earn1": 38, "earn2": 138, "earn3": 242, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 62, "naics_s05": 9, "naics_s06": 61, "naics_s07": 9, "naics_s08": 0, "naics_s09": 0, "naics_s10": 69, "naics_s11": 20, "naics_s12": 32, "naics_s13": 0, "naics_s14": 13, "naics_s15": 3, "naics_s16": 97, "naics_s17": 0, "naics_s18": 3, "naics_s19": 40, "naics_s20": 0, "race1": 297, "race2": 50, "race3": 0, "race4": 64, "race5": 0, "race6": 7, "ethnicity1": 310, "ethnicity2": 108, "edu1": 39, "edu2": 71, "edu3": 115, "edu4": 101, "Shape_Length": 15658.372468371637, "Shape_Area": 16974335.266530003, "total_2021": 375, "total_2022": 418 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.631038061835937, 29.584233152554305 ], [ -95.631019062521347, 29.584095152241005 ], [ -95.630990062704541, 29.58346615186958 ], [ -95.630869062294863, 29.582905152157682 ], [ -95.630805062001897, 29.582395151400213 ], [ -95.630787061920984, 29.582257151777338 ], [ -95.630742061659632, 29.581828151903309 ], [ -95.630682062553333, 29.58118815137826 ], [ -95.630576061585359, 29.580146151518573 ], [ -95.630566062146457, 29.580034150979486 ], [ -95.630555061980672, 29.579921151270955 ], [ -95.63049806201316, 29.579255151100398 ], [ -95.630485062229354, 29.579093151312374 ], [ -95.630426062009747, 29.578762150775155 ], [ -95.630385061570863, 29.578535150869637 ], [ -95.630269062117407, 29.578060150957896 ], [ -95.630103061802444, 29.577560150587637 ], [ -95.629902061575578, 29.577127150809702 ], [ -95.629722062035768, 29.576794150747599 ], [ -95.629463061052064, 29.576482150970477 ], [ -95.629384061393736, 29.576388150534733 ], [ -95.629013061014462, 29.576001150669235 ], [ -95.628543061164606, 29.575609150317952 ], [ -95.628142060760851, 29.57533515064944 ], [ -95.627567061032835, 29.574961150389925 ], [ -95.627155061067626, 29.574806150831559 ], [ -95.62652806083031, 29.574521150065149 ], [ -95.625656060329291, 29.574340150113297 ], [ -95.625344060802561, 29.574317150048699 ], [ -95.625005060094992, 29.574305150017342 ], [ -95.624675060630338, 29.57429415075314 ], [ -95.624501060658829, 29.574281150121685 ], [ -95.623744059765784, 29.574312150410449 ], [ -95.622930059566542, 29.574313150121885 ], [ -95.622367060066438, 29.574376150122834 ], [ -95.621839059363268, 29.574497150562159 ], [ -95.620541059312202, 29.574962150811331 ], [ -95.620244059184685, 29.575110150438061 ], [ -95.620022059597076, 29.575235150536319 ], [ -95.619228058915169, 29.575682151079906 ], [ -95.618563058814644, 29.57612915071946 ], [ -95.618496058458163, 29.576169151204038 ], [ -95.617442058095634, 29.576825150812482 ], [ -95.616214058051156, 29.577591151596145 ], [ -95.614674057571747, 29.578287151795362 ], [ -95.614769058280288, 29.578439151691843 ], [ -95.614815058023012, 29.57851215158178 ], [ -95.61488405815102, 29.578663151234306 ], [ -95.614890057860705, 29.578676151411798 ], [ -95.615174057863385, 29.579176151753828 ], [ -95.615233057975217, 29.579309152003372 ], [ -95.615306057859087, 29.579472151341019 ], [ -95.615495058272984, 29.579841151608274 ], [ -95.615564058459171, 29.579945151598324 ], [ -95.615652057737591, 29.580137151470201 ], [ -95.615690058288507, 29.580291151959006 ], [ -95.615804057764237, 29.58049515225224 ], [ -95.615898058068282, 29.580698151798924 ], [ -95.61596105795374, 29.580962151592569 ], [ -95.615930058632074, 29.581077152106179 ], [ -95.615949058502522, 29.581204151889921 ], [ -95.616100058443138, 29.581374151753753 ], [ -95.616137058851422, 29.581490152243049 ], [ -95.61618205831806, 29.581704151816208 ], [ -95.61626305892247, 29.58192415212503 ], [ -95.616673058180623, 29.582682152120604 ], [ -95.617057058549733, 29.583523152433266 ], [ -95.617221059276616, 29.583842152316329 ], [ -95.617441058689522, 29.5841941526363 ], [ -95.617655058956032, 29.584436152919377 ], [ -95.617900059344066, 29.58469415258897 ], [ -95.618265059262228, 29.584946152732289 ], [ -95.618636058997211, 29.585122152403489 ], [ -95.618869059549539, 29.585210152428967 ], [ -95.619674059346906, 29.585314152405683 ], [ -95.619844059791035, 29.585314152590023 ], [ -95.619888059319635, 29.585290152730135 ], [ -95.620033059752458, 29.585215152627061 ], [ -95.620178059850588, 29.5851441529014 ], [ -95.620366059905564, 29.585028152907881 ], [ -95.620492059323041, 29.584973152446207 ], [ -95.620517060114224, 29.584978152895172 ], [ -95.62059205972227, 29.585028152538442 ], [ -95.620907060059253, 29.585336152414868 ], [ -95.621159060365059, 29.585511152607296 ], [ -95.621473060258339, 29.585649152583866 ], [ -95.622178060518721, 29.585863152873916 ], [ -95.622593059952536, 29.585961153296665 ], [ -95.623059060207069, 29.586099152696221 ], [ -95.624134060386638, 29.586444153176952 ], [ -95.625009060382013, 29.586955153270981 ], [ -95.625141060963458, 29.587048152577349 ], [ -95.625420061407837, 29.58716215311485 ], [ -95.626360061309441, 29.586367152516353 ], [ -95.626798061361612, 29.586046152346952 ], [ -95.627189061049719, 29.585710152514707 ], [ -95.627518061932946, 29.585480152418636 ], [ -95.627898061974449, 29.585232152135166 ], [ -95.628290061756402, 29.58505215269259 ], [ -95.628646062211274, 29.584894152196132 ], [ -95.62903506222105, 29.584745152244434 ], [ -95.629558061955848, 29.584582152564835 ], [ -95.629987062318037, 29.584479151999826 ], [ -95.630803062524663, 29.584302152462872 ], [ -95.630950062245645, 29.584259152012798 ], [ -95.631038061835937, 29.584233152554305 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1557, "Tract": "48157670801", "Area_SqMi": 1.8751652607826095, "total_2009": 87, "total_2010": 72, "total_2011": 115, "total_2012": 223, "total_2013": 237, "total_2014": 233, "total_2015": 165, "total_2016": 98, "total_2017": 172, "total_2018": 136, "total_2019": 171, "total_2020": 141, "age1": 34, "age2": 121, "age3": 37, "earn1": 43, "earn2": 41, "earn3": 108, "naics_s01": 0, "naics_s02": 85, "naics_s03": 0, "naics_s04": 17, "naics_s05": 2, "naics_s06": 2, "naics_s07": 10, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 7, "naics_s13": 0, "naics_s14": 41, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 28, "naics_s19": 0, "naics_s20": 0, "race1": 166, "race2": 18, "race3": 0, "race4": 5, "race5": 0, "race6": 3, "ethnicity1": 124, "ethnicity2": 68, "edu1": 34, "edu2": 44, "edu3": 47, "edu4": 33, "Shape_Length": 32007.451898852156, "Shape_Area": 52276398.093200333, "total_2021": 168, "total_2022": 192 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.461089015696587, 29.50748214188064 ], [ -95.461155015749284, 29.507310142175051 ], [ -95.459728014888654, 29.506615141804968 ], [ -95.458265014383144, 29.505879142272569 ], [ -95.456794014454005, 29.505083141617913 ], [ -95.455340013892737, 29.504286141398069 ], [ -95.454767013438016, 29.503980141600643 ], [ -95.453859013855222, 29.503503141281687 ], [ -95.451910012839534, 29.50257214175511 ], [ -95.451081012814726, 29.502142141096822 ], [ -95.448869012437228, 29.500957140880203 ], [ -95.448480012397141, 29.500784141576844 ], [ -95.446307011820323, 29.499642140810408 ], [ -95.446283011847143, 29.499730141051607 ], [ -95.446229011822993, 29.499932141460146 ], [ -95.446188011462311, 29.500085141153743 ], [ -95.446152011693158, 29.500217141483294 ], [ -95.446094011084014, 29.500430141429405 ], [ -95.446078011360939, 29.500485141147973 ], [ -95.443958010972651, 29.508204142550635 ], [ -95.443878011553522, 29.508492143156161 ], [ -95.443398011646252, 29.5102161430029 ], [ -95.442760011203845, 29.512597143849348 ], [ -95.442763010789889, 29.51263614373573 ], [ -95.442371011287733, 29.514072144019067 ], [ -95.442086011343804, 29.51511514409048 ], [ -95.441217011410401, 29.518298145429604 ], [ -95.441115010794704, 29.518672144798337 ], [ -95.441089011351465, 29.518765145002813 ], [ -95.441063010793684, 29.518865144728441 ], [ -95.44094201050315, 29.519305145617487 ], [ -95.440881011143219, 29.519531145175094 ], [ -95.440875010788488, 29.519550145275101 ], [ -95.440868011294015, 29.519576145409005 ], [ -95.440857010970319, 29.519615145356717 ], [ -95.440759010441951, 29.5199791451717 ], [ -95.440655010421082, 29.520357145851996 ], [ -95.440647011101944, 29.520388145598126 ], [ -95.440640010939475, 29.520412145312243 ], [ -95.44047801054748, 29.521006145522364 ], [ -95.440429011235977, 29.521183145241324 ], [ -95.44032301092939, 29.521577146028321 ], [ -95.440193010520971, 29.522051145996137 ], [ -95.440189010361848, 29.522067145486012 ], [ -95.440174010347548, 29.522122145776361 ], [ -95.439960010334545, 29.522904145650958 ], [ -95.439946011179401, 29.522955145612716 ], [ -95.439939011215728, 29.522981145679648 ], [ -95.439933010831069, 29.523005145800298 ], [ -95.439725010442103, 29.523766146598515 ], [ -95.439644010557572, 29.524062146377389 ], [ -95.439612010504334, 29.524181145847237 ], [ -95.439548011079893, 29.524415146712141 ], [ -95.439499010413812, 29.524599146468983 ], [ -95.439379011133752, 29.525035146391268 ], [ -95.439273010724804, 29.525424146176427 ], [ -95.438277010809728, 29.529064147472457 ], [ -95.438257010409146, 29.529153147244958 ], [ -95.438177010668625, 29.529438147081226 ], [ -95.438080010897878, 29.529794147244523 ], [ -95.437784011046432, 29.530880147479639 ], [ -95.437279010524762, 29.532725148071545 ], [ -95.437248010464359, 29.532832147772339 ], [ -95.43735501034709, 29.53281414769026 ], [ -95.437612010869515, 29.532864147874967 ], [ -95.437921010367575, 29.532946148126616 ], [ -95.438486010485079, 29.533133148115272 ], [ -95.439599011466754, 29.533639148459471 ], [ -95.439851010788274, 29.53373814863966 ], [ -95.440297011725988, 29.533820148158046 ], [ -95.441020011153455, 29.533886148511208 ], [ -95.4413640114647, 29.533908148262544 ], [ -95.441536012175789, 29.533919148271028 ], [ -95.442636012294841, 29.533952148456905 ], [ -95.442961012182337, 29.533929148070495 ], [ -95.443019011630497, 29.533925148619108 ], [ -95.444396012105827, 29.53366114796281 ], [ -95.444591012641041, 29.533562148017062 ], [ -95.445245012874324, 29.532995147794313 ], [ -95.445597012976279, 29.532676148173877 ], [ -95.445688012761181, 29.532603147924203 ], [ -95.445715013031474, 29.532579148046477 ], [ -95.445739012865857, 29.53256214826326 ], [ -95.446662012427453, 29.531816147973533 ], [ -95.447319013171764, 29.53128514787506 ], [ -95.447734013365405, 29.530911147378923 ], [ -95.448268013563734, 29.530482147218212 ], [ -95.448551013486963, 29.530224147439583 ], [ -95.448658013682987, 29.530158147361544 ], [ -95.448815013368659, 29.53011414715915 ], [ -95.448941013566014, 29.530092147195411 ], [ -95.449890013935317, 29.530174147431534 ], [ -95.451324014412435, 29.53025714714029 ], [ -95.451449014100675, 29.530246147431075 ], [ -95.451632014209821, 29.530174147248768 ], [ -95.451952014518085, 29.529883146822169 ], [ -95.452022014166175, 29.529883146828912 ], [ -95.452032014247933, 29.529886147398585 ], [ -95.452195014349172, 29.529931146958873 ], [ -95.452632014330661, 29.528845146564617 ], [ -95.454138014182746, 29.525078145788751 ], [ -95.455213014791312, 29.522362145414345 ], [ -95.45524001486227, 29.522296145631412 ], [ -95.456226014561324, 29.519847145021227 ], [ -95.457481014882958, 29.516733144608338 ], [ -95.458669015086329, 29.513875143971575 ], [ -95.458891014864335, 29.513342143613961 ], [ -95.459360015177083, 29.512165142817739 ], [ -95.460085015274942, 29.510133142856986 ], [ -95.460252014933715, 29.509687142762612 ], [ -95.460876015118387, 29.508021142496101 ], [ -95.461058015797875, 29.50756014214382 ], [ -95.461089015696587, 29.50748214188064 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1558, "Tract": "48157671401", "Area_SqMi": 0.59578415021157649, "total_2009": 833, "total_2010": 660, "total_2011": 531, "total_2012": 568, "total_2013": 608, "total_2014": 650, "total_2015": 763, "total_2016": 692, "total_2017": 673, "total_2018": 629, "total_2019": 646, "total_2020": 652, "age1": 191, "age2": 338, "age3": 164, "earn1": 198, "earn2": 279, "earn3": 216, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 58, "naics_s05": 0, "naics_s06": 144, "naics_s07": 84, "naics_s08": 0, "naics_s09": 6, "naics_s10": 26, "naics_s11": 0, "naics_s12": 35, "naics_s13": 0, "naics_s14": 32, "naics_s15": 39, "naics_s16": 48, "naics_s17": 33, "naics_s18": 148, "naics_s19": 40, "naics_s20": 0, "race1": 452, "race2": 124, "race3": 5, "race4": 101, "race5": 1, "race6": 10, "ethnicity1": 465, "ethnicity2": 228, "edu1": 134, "edu2": 123, "edu3": 127, "edu4": 118, "Shape_Length": 23236.452936604455, "Shape_Area": 16609442.413134687, "total_2021": 671, "total_2022": 693 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.582693051685467, 29.626170162209597 ], [ -95.58267705209181, 29.625202162207213 ], [ -95.582655051957317, 29.624419161873675 ], [ -95.582666051236075, 29.623858162137612 ], [ -95.582644051545415, 29.622752162086009 ], [ -95.582655051549324, 29.62207616191581 ], [ -95.582630051480095, 29.621397161654361 ], [ -95.582623051552389, 29.620995161220382 ], [ -95.58262305125443, 29.620542161075669 ], [ -95.582609051372515, 29.619222161075424 ], [ -95.582606051943216, 29.618759161310798 ], [ -95.582592051574721, 29.618157160353284 ], [ -95.58258505116774, 29.617875160622702 ], [ -95.582587051470441, 29.617371160939058 ], [ -95.582584051282254, 29.617251160892458 ], [ -95.582580051396477, 29.617091160533182 ], [ -95.582491050929718, 29.615560160162598 ], [ -95.5820930508863, 29.615563160356611 ], [ -95.581110051329205, 29.615569160604093 ], [ -95.578145050546382, 29.615595160348047 ], [ -95.57807504978669, 29.61559616026976 ], [ -95.57800605032044, 29.615594160073517 ], [ -95.577889050399307, 29.615591160595034 ], [ -95.57791005039627, 29.616407160462074 ], [ -95.577913050090586, 29.61647116025939 ], [ -95.577916050520628, 29.616538160488304 ], [ -95.577940050463766, 29.616979160824084 ], [ -95.577955050659071, 29.617272160585053 ], [ -95.577961049884252, 29.617504160929915 ], [ -95.577965050762145, 29.618534161279211 ], [ -95.57796205052594, 29.618598161049263 ], [ -95.577984049993063, 29.619258160824195 ], [ -95.577983050532069, 29.619720161671665 ], [ -95.57773505012247, 29.619331161058032 ], [ -95.577512049772778, 29.619149160736882 ], [ -95.577435050074257, 29.619035161435168 ], [ -95.577375050356579, 29.618952160683516 ], [ -95.577209049898187, 29.618617161478191 ], [ -95.577046049814669, 29.618286160785441 ], [ -95.576887050014832, 29.61803716065301 ], [ -95.576849050205269, 29.617977160535641 ], [ -95.576795050213804, 29.617929160729272 ], [ -95.576702049661634, 29.617894160548722 ], [ -95.576342049726179, 29.617875160715815 ], [ -95.575975049335824, 29.617873160947347 ], [ -95.574673049185023, 29.617872160748938 ], [ -95.574214049411992, 29.617884160715807 ], [ -95.574108049254079, 29.617863160909007 ], [ -95.574028049339518, 29.61782216139963 ], [ -95.57398804910423, 29.617773161277704 ], [ -95.573958049368542, 29.617669161339251 ], [ -95.573933049677734, 29.617414161045904 ], [ -95.573901048823075, 29.616722160877039 ], [ -95.57383904904006, 29.615610160820971 ], [ -95.573833048591368, 29.615467160574052 ], [ -95.573840049311542, 29.615056160720698 ], [ -95.573764048609846, 29.614903160200747 ], [ -95.573576049342989, 29.614772160631354 ], [ -95.573516049124407, 29.614755160798158 ], [ -95.573488048737858, 29.614747160248221 ], [ -95.573476049107271, 29.614762160145382 ], [ -95.573426049358147, 29.614784160040145 ], [ -95.57330604903953, 29.614801160109828 ], [ -95.573225049095583, 29.614872160873407 ], [ -95.572939049012334, 29.614998160567815 ], [ -95.572677048492992, 29.61473516042463 ], [ -95.572564049030774, 29.614630160528932 ], [ -95.572426048738066, 29.614531160017204 ], [ -95.572333048160573, 29.614503160341609 ], [ -95.572262048592279, 29.614482160134596 ], [ -95.572023048526361, 29.614482159994747 ], [ -95.5718470488885, 29.614543160032937 ], [ -95.57163904849827, 29.614636160394223 ], [ -95.571536047951469, 29.614689160803675 ], [ -95.57143804815712, 29.614740160817316 ], [ -95.571218048111135, 29.614762160852365 ], [ -95.571023048750959, 29.614730160892368 ], [ -95.570547048077927, 29.614690160808035 ], [ -95.570500048529965, 29.614686160662323 ], [ -95.570035048359202, 29.614669160493339 ], [ -95.569959048205035, 29.614660160731635 ], [ -95.569849047614099, 29.614648160849068 ], [ -95.569695047979408, 29.614631160501869 ], [ -95.569406047571448, 29.614537160446208 ], [ -95.569324047909902, 29.614510160126272 ], [ -95.568928047616453, 29.614328160758092 ], [ -95.568783047453152, 29.614254160035273 ], [ -95.568768047538285, 29.614247160730795 ], [ -95.568682047582499, 29.614204160779401 ], [ -95.568437047558888, 29.614081160842908 ], [ -95.56766904777345, 29.613619160619926 ], [ -95.567222047375708, 29.613301159907046 ], [ -95.566870046719956, 29.612982160576816 ], [ -95.566700047498585, 29.612751159966439 ], [ -95.566614046884155, 29.612499160568614 ], [ -95.566536047464652, 29.612273159778297 ], [ -95.566489047374375, 29.612201160263492 ], [ -95.566458046650098, 29.612153160387336 ], [ -95.566379047202531, 29.612031160306099 ], [ -95.565700046579352, 29.611366159858509 ], [ -95.565165046961255, 29.610986159698577 ], [ -95.564768046188846, 29.61059615967427 ], [ -95.564517046243637, 29.610426160154574 ], [ -95.564477046576869, 29.610407159406865 ], [ -95.564481046791514, 29.610699160283186 ], [ -95.56450504639038, 29.610941160230649 ], [ -95.564574046255743, 29.61251616049481 ], [ -95.56458504616856, 29.613285160509097 ], [ -95.564628046741433, 29.61521316059817 ], [ -95.56463004626282, 29.61533716089286 ], [ -95.564640046244733, 29.615556160693544 ], [ -95.564670047280927, 29.616538160847295 ], [ -95.564693047054902, 29.618142161674275 ], [ -95.564681046916107, 29.618398161356907 ], [ -95.565013047233762, 29.618691161358971 ], [ -95.565435046797162, 29.61906416198083 ], [ -95.565583047185754, 29.619190161982022 ], [ -95.566084047153268, 29.619613161364626 ], [ -95.570482048977368, 29.621711161728527 ], [ -95.570771048650542, 29.621848161985184 ], [ -95.572453049150965, 29.622640162473218 ], [ -95.57377304916912, 29.62325916169236 ], [ -95.575772050067485, 29.624240162345586 ], [ -95.576959050366142, 29.624796162335102 ], [ -95.578038050389068, 29.62530516256162 ], [ -95.578810051108775, 29.625642162235 ], [ -95.579428050498748, 29.625932162764474 ], [ -95.579896051220885, 29.626167162857673 ], [ -95.580259050825717, 29.626340162232257 ], [ -95.580480051310658, 29.626446162574108 ], [ -95.581251051263649, 29.626794162374324 ], [ -95.581801051309668, 29.627014162342885 ], [ -95.582659051345431, 29.62734816261186 ], [ -95.582665052171762, 29.627153162401989 ], [ -95.582693051685467, 29.626170162209597 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1559, "Tract": "48157671101", "Area_SqMi": 0.63061657799047266, "total_2009": 153, "total_2010": 204, "total_2011": 229, "total_2012": 259, "total_2013": 234, "total_2014": 256, "total_2015": 432, "total_2016": 490, "total_2017": 473, "total_2018": 286, "total_2019": 296, "total_2020": 245, "age1": 118, "age2": 159, "age3": 65, "earn1": 126, "earn2": 111, "earn3": 105, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 39, "naics_s05": 0, "naics_s06": 0, "naics_s07": 32, "naics_s08": 57, "naics_s09": 0, "naics_s10": 10, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 3, "naics_s16": 105, "naics_s17": 0, "naics_s18": 65, "naics_s19": 0, "naics_s20": 31, "race1": 159, "race2": 149, "race3": 2, "race4": 25, "race5": 0, "race6": 7, "ethnicity1": 258, "ethnicity2": 84, "edu1": 67, "edu2": 60, "edu3": 62, "edu4": 35, "Shape_Length": 19053.12303754966, "Shape_Area": 17580510.883314352, "total_2021": 296, "total_2022": 342 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.541674039586226, 29.591113156827262 ], [ -95.541718039477956, 29.591112156814027 ], [ -95.541665039462927, 29.588540156145097 ], [ -95.541655039488518, 29.58801315603602 ], [ -95.541637039885387, 29.586485155993081 ], [ -95.541631039350904, 29.585955155662205 ], [ -95.541621039457411, 29.585496155795781 ], [ -95.541603039736103, 29.58474915550822 ], [ -95.541567038995439, 29.583168154562138 ], [ -95.541498039458688, 29.583169155267115 ], [ -95.540982038772583, 29.583178154556581 ], [ -95.538443038426877, 29.58320115525196 ], [ -95.537845038236981, 29.583215155076562 ], [ -95.537659038008215, 29.583205154851161 ], [ -95.535421038175144, 29.583259155432611 ], [ -95.533249037616685, 29.583312155488226 ], [ -95.531365036328424, 29.583359155405645 ], [ -95.530188036129644, 29.583397155799805 ], [ -95.529136036436356, 29.583553155778766 ], [ -95.528479036082388, 29.583622155887802 ], [ -95.526197035303568, 29.583674155588611 ], [ -95.526270035336509, 29.586138155950053 ], [ -95.526289035730386, 29.588433156653185 ], [ -95.526313036273137, 29.589391157110686 ], [ -95.526336036152657, 29.590345156907457 ], [ -95.526347035636107, 29.590581157344456 ], [ -95.526420036058042, 29.591153156838185 ], [ -95.526442036298491, 29.591321156889503 ], [ -95.526497036070907, 29.591803157633201 ], [ -95.526648035878722, 29.593117157935971 ], [ -95.526744036163294, 29.596005158327952 ], [ -95.527177036648581, 29.596014158231597 ], [ -95.529230037184647, 29.596003157736746 ], [ -95.529494036978434, 29.595986158294835 ], [ -95.529675036734034, 29.595974157993464 ], [ -95.529818037266196, 29.595956158346809 ], [ -95.530031037064418, 29.595915158111247 ], [ -95.530417037268876, 29.595818157692861 ], [ -95.530851037416994, 29.59571615808828 ], [ -95.531532037291669, 29.595462157780727 ], [ -95.532100037488377, 29.59520415788548 ], [ -95.532591037693052, 29.5949101573242 ], [ -95.532877037291925, 29.594811157323289 ], [ -95.534435037955276, 29.59341415694179 ], [ -95.534832037999251, 29.593052157083459 ], [ -95.532657037830873, 29.591195157170802 ], [ -95.53524103819079, 29.591195156560421 ], [ -95.537508038729797, 29.591164156854056 ], [ -95.539234039636497, 29.591160156306984 ], [ -95.540663039255477, 29.591158157028097 ], [ -95.541081039801426, 29.591125156814673 ], [ -95.541674039586226, 29.591113156827262 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1560, "Tract": "48157670201", "Area_SqMi": 0.49897612286200971, "total_2009": 87, "total_2010": 107, "total_2011": 97, "total_2012": 57, "total_2013": 63, "total_2014": 72, "total_2015": 66, "total_2016": 94, "total_2017": 81, "total_2018": 68, "total_2019": 69, "total_2020": 57, "age1": 17, "age2": 23, "age3": 15, "earn1": 23, "earn2": 29, "earn3": 3, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 0, "naics_s07": 11, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 0, "naics_s13": 0, "naics_s14": 21, "naics_s15": 0, "naics_s16": 1, "naics_s17": 0, "naics_s18": 19, "naics_s19": 2, "naics_s20": 0, "race1": 16, "race2": 31, "race3": 1, "race4": 6, "race5": 0, "race6": 1, "ethnicity1": 45, "ethnicity2": 10, "edu1": 12, "edu2": 14, "edu3": 7, "edu4": 5, "Shape_Length": 15071.33342783779, "Shape_Area": 13910600.299223488, "total_2021": 57, "total_2022": 55 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.4840650253375, 29.590324158731015 ], [ -95.484071024691914, 29.589781158422891 ], [ -95.484061024696643, 29.589007158143378 ], [ -95.484060025402187, 29.58897715842604 ], [ -95.484043025435014, 29.588638158261226 ], [ -95.484029025366951, 29.58822115788756 ], [ -95.48394002471548, 29.587378157955587 ], [ -95.483847024334082, 29.587038157365097 ], [ -95.483718025303375, 29.586623157259108 ], [ -95.483486025021435, 29.586111158001906 ], [ -95.483146024387253, 29.585560157401755 ], [ -95.482740024485693, 29.585018157724416 ], [ -95.482071023746087, 29.584241157029911 ], [ -95.481608023654715, 29.583681156948394 ], [ -95.481022024247196, 29.582961156967606 ], [ -95.480703024124963, 29.582435157063919 ], [ -95.480423023891035, 29.581940156892326 ], [ -95.480234023859111, 29.581368156237605 ], [ -95.480053023614531, 29.580670156394337 ], [ -95.478315022836398, 29.580698156756153 ], [ -95.474435021810208, 29.580730156982817 ], [ -95.472847021625043, 29.580811156831121 ], [ -95.471100021394761, 29.580830156896702 ], [ -95.471144021783488, 29.582325156765748 ], [ -95.471164021808974, 29.583089157578193 ], [ -95.471169021067297, 29.583797157233892 ], [ -95.471218021586964, 29.585557157564747 ], [ -95.471242021140355, 29.586157158330046 ], [ -95.471210021590551, 29.586543157800218 ], [ -95.471176021236204, 29.586778157916836 ], [ -95.47112802117897, 29.587032158444462 ], [ -95.470967021262638, 29.587625158053957 ], [ -95.470960021696598, 29.587651158394554 ], [ -95.47073002157353, 29.58817615805755 ], [ -95.470011021212542, 29.58966215855267 ], [ -95.469578021770303, 29.590509158612619 ], [ -95.470169021022997, 29.590755158993179 ], [ -95.470466021202029, 29.590849158494994 ], [ -95.470888021752657, 29.5909641585259 ], [ -95.471274021363215, 29.591047158902118 ], [ -95.471608022355781, 29.591105158929611 ], [ -95.471811022211014, 29.591120159261898 ], [ -95.472228021716987, 29.591152158761709 ], [ -95.472541022626956, 29.591188158530358 ], [ -95.472744022058237, 29.5912141593044 ], [ -95.472989022125731, 29.591266158598401 ], [ -95.47329102255037, 29.591344158959764 ], [ -95.473578021937982, 29.591412158649874 ], [ -95.473896022556772, 29.591490158762234 ], [ -95.474565022483134, 29.591597158654391 ], [ -95.474777022844748, 29.591646159121439 ], [ -95.47527602328185, 29.591641158904594 ], [ -95.475570022834134, 29.591631159372763 ], [ -95.475883023482197, 29.591620158613726 ], [ -95.476325022837202, 29.591547158689853 ], [ -95.477083023508527, 29.591427159001867 ], [ -95.477594022990957, 29.591291158745072 ], [ -95.477955023397087, 29.591156158517727 ], [ -95.478336023718484, 29.591006158671817 ], [ -95.478784023365279, 29.59080915864244 ], [ -95.479177023586686, 29.590614158712118 ], [ -95.479519023949933, 29.590468158822304 ], [ -95.479817024031021, 29.590361158612907 ], [ -95.480119024020894, 29.590281158340225 ], [ -95.480614024462085, 29.590197158823607 ], [ -95.481025023882097, 29.590158158792772 ], [ -95.481418024776758, 29.590159158417986 ], [ -95.481725023978086, 29.590167158269519 ], [ -95.482016024407272, 29.590198158480312 ], [ -95.482547024728134, 29.59027615821056 ], [ -95.483101024476284, 29.590313158726918 ], [ -95.4840650253375, 29.590324158731015 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1561, "Tract": "48157673202", "Area_SqMi": 43.491846825548933, "total_2009": 454, "total_2010": 862, "total_2011": 576, "total_2012": 516, "total_2013": 644, "total_2014": 655, "total_2015": 715, "total_2016": 894, "total_2017": 972, "total_2018": 1481, "total_2019": 1769, "total_2020": 2005, "age1": 929, "age2": 1399, "age3": 505, "earn1": 751, "earn2": 921, "earn3": 1161, "naics_s01": 3, "naics_s02": 12, "naics_s03": 0, "naics_s04": 321, "naics_s05": 83, "naics_s06": 50, "naics_s07": 377, "naics_s08": 15, "naics_s09": 7, "naics_s10": 120, "naics_s11": 39, "naics_s12": 308, "naics_s13": 0, "naics_s14": 109, "naics_s15": 91, "naics_s16": 307, "naics_s17": 174, "naics_s18": 540, "naics_s19": 189, "naics_s20": 88, "race1": 2125, "race2": 343, "race3": 27, "race4": 283, "race5": 2, "race6": 53, "ethnicity1": 2063, "ethnicity2": 770, "edu1": 349, "edu2": 483, "edu3": 545, "edu4": 527, "Shape_Length": 215707.00628523823, "Shape_Area": 1212478252.4565275, "total_2021": 2467, "total_2022": 2833 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.06007317521231, 29.676322156248244 ], [ -96.060066175966227, 29.67625015609995 ], [ -96.060008175604949, 29.675968156522458 ], [ -96.059905175127597, 29.675659156757806 ], [ -96.059685175480041, 29.675117156304839 ], [ -96.059530175564149, 29.674823156117036 ], [ -96.059472175807841, 29.674728156548191 ], [ -96.059158175617014, 29.67430715610773 ], [ -96.058912174762938, 29.674019156403826 ], [ -96.058733174904376, 29.673821156183756 ], [ -96.058494174719925, 29.67357615559931 ], [ -96.058016175101457, 29.673131156310962 ], [ -96.057545174487771, 29.672730156109878 ], [ -96.057479174473258, 29.67268715549244 ], [ -96.05740817503667, 29.672649156042059 ], [ -96.056968174549695, 29.672455156195813 ], [ -96.056661174458, 29.672352155624061 ], [ -96.056115174534852, 29.672195156211391 ], [ -96.055952174573648, 29.672175155929853 ], [ -96.055746174072425, 29.672163155843194 ], [ -96.055622173954049, 29.672163155605293 ], [ -96.055377174278462, 29.672146155568178 ], [ -96.055094174485603, 29.672099155537758 ], [ -96.054977174447686, 29.672069155737915 ], [ -96.054813173980406, 29.672044155452543 ], [ -96.054570174384182, 29.672015156247205 ], [ -96.053975173755575, 29.67193415590528 ], [ -96.053890173930554, 29.671866155651788 ], [ -96.053032173635714, 29.671177156007641 ], [ -96.052459173850423, 29.670568155324933 ], [ -96.052309173210872, 29.670345155822137 ], [ -96.051785173098807, 29.669567155115217 ], [ -96.051181173016559, 29.668671155481491 ], [ -96.050300173178002, 29.667812155592301 ], [ -96.048672172343785, 29.666563155208532 ], [ -96.047604172147288, 29.666199154734628 ], [ -96.046992171729457, 29.665998155266461 ], [ -96.04654617215229, 29.665732155036284 ], [ -96.046302171646246, 29.665617154781678 ], [ -96.046091171112138, 29.665518154987552 ], [ -96.045414171526673, 29.665452154943392 ], [ -96.045388171605055, 29.66544915512511 ], [ -96.045273171165832, 29.665438154917396 ], [ -96.045000171563288, 29.665484154893029 ], [ -96.044829170779536, 29.665513154537521 ], [ -96.044732171420833, 29.665529154546192 ], [ -96.044718171600451, 29.665529155090148 ], [ -96.044664170981818, 29.665541154644167 ], [ -96.044433171321074, 29.665580154452666 ], [ -96.044281170768599, 29.665605154903172 ], [ -96.043847170898516, 29.665798154801401 ], [ -96.043436170562728, 29.666104155051418 ], [ -96.043413171283092, 29.666121154674297 ], [ -96.043400170548324, 29.666131154754911 ], [ -96.043381170666436, 29.66614515509449 ], [ -96.042878170682684, 29.666520154774396 ], [ -96.042057170535713, 29.667133155020068 ], [ -96.041850170910649, 29.667365155155128 ], [ -96.041628170550666, 29.667517155168103 ], [ -96.041238170016044, 29.667784155493518 ], [ -96.041229170524616, 29.667790155274464 ], [ -96.041179169930246, 29.667824155587375 ], [ -96.040678169924846, 29.668168155667356 ], [ -96.040538169880165, 29.66829015535383 ], [ -96.038902169656083, 29.669719156286579 ], [ -96.038000169407994, 29.670787156513303 ], [ -96.037433169670209, 29.67142815641154 ], [ -96.037394169810085, 29.671472156147487 ], [ -96.037364169237421, 29.671506156271597 ], [ -96.037314169826772, 29.67155115629668 ], [ -96.037144169691118, 29.671706156232975 ], [ -96.037123169758573, 29.671725156661072 ], [ -96.03617216924026, 29.672587156256409 ], [ -96.035136169128322, 29.67333415683914 ], [ -96.035122169317845, 29.673344156576533 ], [ -96.034793169508376, 29.673545156983181 ], [ -96.034674169191874, 29.673617156396613 ], [ -96.033698168494453, 29.674210157244222 ], [ -96.032177168442459, 29.674841156922568 ], [ -96.032131168084703, 29.674860157504426 ], [ -96.031917168830859, 29.674918156858752 ], [ -96.031898167892038, 29.67492315723257 ], [ -96.030913167697491, 29.675192157732045 ], [ -96.030001168371285, 29.675218157698989 ], [ -96.029826167884792, 29.675223157724261 ], [ -96.029671168191058, 29.675228157170018 ], [ -96.029657167623313, 29.675224156982924 ], [ -96.027730167425617, 29.674609157117072 ], [ -96.027720167594495, 29.674606157103668 ], [ -96.027705166901612, 29.674601157051786 ], [ -96.027518166914078, 29.674541157218396 ], [ -96.027492166832488, 29.674528157392505 ], [ -96.026527167240843, 29.674047156781221 ], [ -96.025892166891538, 29.673364156902302 ], [ -96.025885167211754, 29.673357157425603 ], [ -96.02586116721217, 29.673329157181136 ], [ -96.025849166498375, 29.673316157511845 ], [ -96.025451167031719, 29.672886157236793 ], [ -96.025052166417964, 29.672403156737985 ], [ -96.024145166543107, 29.671937157122073 ], [ -96.023722165891698, 29.671719156746502 ], [ -96.023183165719331, 29.671637156406405 ], [ -96.023172165668228, 29.671635156387385 ], [ -96.023035166234706, 29.671615156939037 ], [ -96.021833165285344, 29.671420156905441 ], [ -96.021801166141231, 29.67141215707305 ], [ -96.021684165625899, 29.671494156426146 ], [ -96.021259165119645, 29.671796156808618 ], [ -96.020714165177694, 29.672183157231107 ], [ -96.019730165180576, 29.67288815759586 ], [ -96.01912016559524, 29.673335157394408 ], [ -96.018417164959757, 29.673865157494848 ], [ -96.017788164404095, 29.674348157709549 ], [ -96.017741164808797, 29.674376157510476 ], [ -96.016865164338284, 29.674917157580342 ], [ -96.015783164842276, 29.675431157956361 ], [ -96.014939163828416, 29.675723157806345 ], [ -96.014086163885779, 29.675893157648147 ], [ -96.012513163207757, 29.676062158261441 ], [ -96.010572163156255, 29.676266157760171 ], [ -96.010405162631713, 29.676284157930418 ], [ -96.007208162304508, 29.676620158595604 ], [ -96.006253161909527, 29.67672115877096 ], [ -96.003832161862562, 29.677005158720295 ], [ -96.000979161142595, 29.677291158634503 ], [ -96.000199160283074, 29.677377158613016 ], [ -95.997372160195312, 29.677664159227223 ], [ -95.994773159525707, 29.677968158689506 ], [ -95.994248158689558, 29.67802615867992 ], [ -95.985960156418074, 29.678936159321339 ], [ -95.982442155683401, 29.679318159947169 ], [ -95.982311155522893, 29.679337159524611 ], [ -95.979414155326751, 29.679749159570811 ], [ -95.97908815558344, 29.67979915958394 ], [ -95.977338154277234, 29.680032159678987 ], [ -95.977302154805045, 29.679893159906662 ], [ -95.977230155191222, 29.679618160381569 ], [ -95.977169154251257, 29.679385160276446 ], [ -95.976253154962436, 29.679448160091869 ], [ -95.971856152909254, 29.679908160429044 ], [ -95.970831153506907, 29.680014160507444 ], [ -95.970566153142542, 29.680042159938409 ], [ -95.968369151980113, 29.680273160742317 ], [ -95.965666151961969, 29.680556160332973 ], [ -95.963147151163753, 29.680858161120621 ], [ -95.961395150832146, 29.681041160773226 ], [ -95.957673149959518, 29.681429161338183 ], [ -95.955752149330834, 29.6816301608721 ], [ -95.947238147375629, 29.682586161364878 ], [ -95.944579146088145, 29.682884162100294 ], [ -95.944471146482854, 29.682896162113661 ], [ -95.94410914642279, 29.682934161819329 ], [ -95.942637146514272, 29.683086161627894 ], [ -95.93814814484206, 29.68357216179637 ], [ -95.937523144687859, 29.683639161742722 ], [ -95.936193144231723, 29.683783162296862 ], [ -95.936071143953328, 29.683796161997698 ], [ -95.935822144535948, 29.683824162278267 ], [ -95.930607142929972, 29.684407162996088 ], [ -95.928135142458984, 29.684684162599233 ], [ -95.926052141456097, 29.684917162615999 ], [ -95.924874141749854, 29.685050162910514 ], [ -95.924057141520478, 29.685141163241333 ], [ -95.923054140995106, 29.685253162825596 ], [ -95.921519141310839, 29.68541816266168 ], [ -95.921443140458578, 29.685426163071106 ], [ -95.921359141197783, 29.685434162766757 ], [ -95.920202140918647, 29.685553163118609 ], [ -95.919979140763019, 29.685576163288779 ], [ -95.918804140547806, 29.68569716279849 ], [ -95.918233140463514, 29.685763163201017 ], [ -95.917578139607059, 29.685861163060096 ], [ -95.916462139295049, 29.686068163425794 ], [ -95.914049138812246, 29.686576163493363 ], [ -95.912787138481548, 29.686842164001742 ], [ -95.912617138741297, 29.686878164102417 ], [ -95.907604137681375, 29.687934164215719 ], [ -95.906414136712613, 29.688180164234208 ], [ -95.904600136677175, 29.688555164158075 ], [ -95.904169136042469, 29.688634164736325 ], [ -95.903778136121275, 29.688667164452831 ], [ -95.903330136362456, 29.68864116467563 ], [ -95.902802136299584, 29.688641164468773 ], [ -95.90243513643486, 29.688636164080602 ], [ -95.902410136607386, 29.688636164335918 ], [ -95.902059135666391, 29.688669164576339 ], [ -95.901601136082348, 29.688749164176663 ], [ -95.901352135419316, 29.688806164329467 ], [ -95.901143135607924, 29.688854164183045 ], [ -95.900687135316957, 29.688970164281365 ], [ -95.90037113523276, 29.689184164804011 ], [ -95.900122135514522, 29.689413164726371 ], [ -95.900070135697106, 29.689508164590009 ], [ -95.899992135969825, 29.689702164308233 ], [ -95.899983135479474, 29.689774164833647 ], [ -95.899982135865756, 29.689814165075497 ], [ -95.899980135509836, 29.689873164628754 ], [ -95.899983135512372, 29.690027164881911 ], [ -95.899458135284462, 29.690126164896029 ], [ -95.898806135711766, 29.690181165007253 ], [ -95.89773513503215, 29.690274164627088 ], [ -95.897672135245799, 29.690280164846065 ], [ -95.896006134267637, 29.690447164967811 ], [ -95.893563133603521, 29.690692165380597 ], [ -95.892297133637939, 29.690819164816272 ], [ -95.891524133828526, 29.690917164775147 ], [ -95.888756132878299, 29.691156165347337 ], [ -95.888272132823161, 29.691193165447839 ], [ -95.888060133037584, 29.691212165247379 ], [ -95.88775613268156, 29.691250165633846 ], [ -95.884721131804838, 29.691504165680374 ], [ -95.884600131601189, 29.691513165383991 ], [ -95.88405413169977, 29.691553165709539 ], [ -95.883719131723225, 29.691577165207899 ], [ -95.883656131671543, 29.691582166038447 ], [ -95.883105130815153, 29.691622165272655 ], [ -95.882734131643403, 29.691650165798894 ], [ -95.881100130408157, 29.691773165687177 ], [ -95.881029131104313, 29.691778165814299 ], [ -95.880811130340888, 29.691812165861492 ], [ -95.877826129723701, 29.692081165785378 ], [ -95.877275130039763, 29.692130165973069 ], [ -95.876624129754092, 29.692182165754097 ], [ -95.873673128676899, 29.692416166317816 ], [ -95.872387128334154, 29.692561166001898 ], [ -95.871071128237247, 29.692647166236664 ], [ -95.870908128765535, 29.692657166088026 ], [ -95.870705128068593, 29.692671166268603 ], [ -95.87034412788644, 29.692695166627228 ], [ -95.864581126496034, 29.693173166476363 ], [ -95.864457126479351, 29.693183166334091 ], [ -95.862334125882271, 29.693359167141104 ], [ -95.859243125229071, 29.693615167089689 ], [ -95.858802125359929, 29.69365216711153 ], [ -95.856474124945478, 29.693844166760087 ], [ -95.854638124165447, 29.693996167543883 ], [ -95.854607124489277, 29.693999167067911 ], [ -95.853031123412336, 29.694130167126513 ], [ -95.850879122742455, 29.694309166987335 ], [ -95.850055123195631, 29.694374167645577 ], [ -95.849409122868849, 29.694425167782967 ], [ -95.846107121824133, 29.694689167868749 ], [ -95.845924122232105, 29.69470416762098 ], [ -95.845952122100755, 29.696144168223995 ], [ -95.8459891226601, 29.698103167806412 ], [ -95.845984121778429, 29.700330168788167 ], [ -95.845982122432787, 29.701499168606549 ], [ -95.845990122739039, 29.701928169138462 ], [ -95.846004122111168, 29.702592168792613 ], [ -95.846016122468015, 29.704009169246191 ], [ -95.846023122187106, 29.704825169458932 ], [ -95.846088122202701, 29.706332169860154 ], [ -95.846093122936594, 29.706436170174822 ], [ -95.84609312239796, 29.706484169902012 ], [ -95.846104122109139, 29.707678170101524 ], [ -95.846138122922397, 29.711683170564832 ], [ -95.846138123237736, 29.711747171038311 ], [ -95.84617112262994, 29.71775017221584 ], [ -95.846172122590417, 29.717899172217795 ], [ -95.846194123103857, 29.721871172670681 ], [ -95.846211123121805, 29.723649173837831 ], [ -95.846212123326723, 29.723712173230506 ], [ -95.846228123822357, 29.72533217340251 ], [ -95.846253123916924, 29.727901174142655 ], [ -95.84630212367847, 29.732703175192306 ], [ -95.846303123300643, 29.732881174945913 ], [ -95.84631812418634, 29.733429175697196 ], [ -95.846336123903711, 29.734094175329922 ], [ -95.846341123661588, 29.734280175657922 ], [ -95.847630124461233, 29.73425817532566 ], [ -95.849722124448263, 29.734220175756455 ], [ -95.851904125587708, 29.734279175840307 ], [ -95.852572125725359, 29.734443175154489 ], [ -95.852897125170045, 29.734556175510082 ], [ -95.852923125671339, 29.735063175685521 ], [ -95.853019125350102, 29.735601175974267 ], [ -95.853049125795721, 29.738362175771051 ], [ -95.853046125337357, 29.740438176793941 ], [ -95.853089126086942, 29.742981177175526 ], [ -95.853097125572575, 29.743484177323662 ], [ -95.853061126219217, 29.744436176971707 ], [ -95.852949125506882, 29.745232177698306 ], [ -95.852571125675809, 29.746347178148238 ], [ -95.852527125759593, 29.746477177610807 ], [ -95.858819127607944, 29.746429177872642 ], [ -95.864301128586689, 29.746370177410313 ], [ -95.86535512964069, 29.746359177159636 ], [ -95.865532128784224, 29.746369177366336 ], [ -95.865654129413073, 29.746421177522482 ], [ -95.865800129624319, 29.746436177149082 ], [ -95.865819129871241, 29.747256177802289 ], [ -95.865825129503861, 29.747774177607273 ], [ -95.865830129221621, 29.74796017746452 ], [ -95.866067129893523, 29.747960177457351 ], [ -95.86944013060301, 29.747942177455034 ], [ -95.869535129979297, 29.747942177615538 ], [ -95.871092131113016, 29.74791917709619 ], [ -95.872799131139658, 29.747907177735954 ], [ -95.873630131570906, 29.747890177067685 ], [ -95.874132131864229, 29.747868177849764 ], [ -95.875388131541726, 29.747869177342675 ], [ -95.882177133468531, 29.747805177364359 ], [ -95.884854134744316, 29.747780176745007 ], [ -95.88485313456772, 29.747884177466457 ], [ -95.884735134472862, 29.74805417671919 ], [ -95.884785133974233, 29.752466177560546 ], [ -95.884806134107379, 29.754354177923616 ], [ -95.884833134709581, 29.754551178670507 ], [ -95.884857134720946, 29.754646177984743 ], [ -95.884866134289226, 29.754720178151818 ], [ -95.884890134140207, 29.755064178338412 ], [ -95.884900134378327, 29.755411178943575 ], [ -95.884961135324971, 29.761451180038122 ], [ -95.884964135006612, 29.761735179831941 ], [ -95.884969134616398, 29.762055180127881 ], [ -95.88501913521722, 29.76487918078001 ], [ -95.88502613524615, 29.765627180632933 ], [ -95.884995134645436, 29.765765180260342 ], [ -95.884947135055882, 29.765840180243242 ], [ -95.885337135649948, 29.7656991805943 ], [ -95.887455135345704, 29.764939180683591 ], [ -95.889069136325247, 29.764361180530489 ], [ -95.892075136332636, 29.76328317965838 ], [ -95.893406137238856, 29.762805180129838 ], [ -95.895464137403721, 29.762067179937297 ], [ -95.898906138565934, 29.760833179420793 ], [ -95.901408138978965, 29.759936178897775 ], [ -95.901532138988273, 29.759887179300268 ], [ -95.902268139238743, 29.75962217923049 ], [ -95.907679140469, 29.757614178060336 ], [ -95.908139140465678, 29.757436177993167 ], [ -95.912926141245634, 29.75558717748352 ], [ -95.920582143693977, 29.752626176381312 ], [ -95.920599143244544, 29.752619177000604 ], [ -95.932102146505088, 29.748147175194514 ], [ -95.932227146680518, 29.748099175139817 ], [ -95.939492148024328, 29.745272174993943 ], [ -95.944968149791762, 29.743140174373291 ], [ -95.9455391495421, 29.742918173924867 ], [ -95.948019150233037, 29.741954173869537 ], [ -95.950938150648213, 29.740774173596844 ], [ -95.960504153462125, 29.740635173423833 ], [ -95.971294155425454, 29.740459172823716 ], [ -95.971156155854175, 29.736687171622723 ], [ -95.971140155283621, 29.736506171871127 ], [ -95.971126155246921, 29.736323172178224 ], [ -95.971110155846901, 29.736142171526513 ], [ -95.971096156110534, 29.735963171875969 ], [ -95.97094815561168, 29.729616170219206 ], [ -95.970948155761235, 29.729421170596687 ], [ -95.970947155059349, 29.729223169945008 ], [ -95.97094615559854, 29.729019170112906 ], [ -95.970947155135704, 29.728812170290528 ], [ -95.970947155077624, 29.728559170546188 ], [ -95.971404155482446, 29.728590170177505 ], [ -95.971672155486118, 29.728602170094462 ], [ -95.971931155537277, 29.728616170053151 ], [ -95.972177155988661, 29.728626169862185 ], [ -95.972421155768004, 29.72864017009962 ], [ -95.972570155511889, 29.728647170093268 ], [ -95.97750315694914, 29.728543170092856 ], [ -95.978107157554689, 29.728540170330064 ], [ -95.978706157383968, 29.728540169732405 ], [ -95.978892157810733, 29.728537170273825 ], [ -95.978977157565765, 29.728536170096312 ], [ -95.981542158199929, 29.728496169956671 ], [ -95.984505158896155, 29.72845916939163 ], [ -95.988347159588727, 29.72839316946304 ], [ -95.988746159822327, 29.728386169188894 ], [ -95.990044160533685, 29.728385169056438 ], [ -95.993657161287572, 29.728331169664209 ], [ -95.99388216078809, 29.728323168929574 ], [ -95.9940661608601, 29.728318169401316 ], [ -95.994959161370062, 29.728316169105813 ], [ -95.996822161566229, 29.728295169024925 ], [ -95.997574162483787, 29.728280168963774 ], [ -95.997935162414251, 29.728274168768447 ], [ -95.998392162715135, 29.72826716874782 ], [ -95.998715162800337, 29.728258168797993 ], [ -95.999825162693014, 29.728225169437554 ], [ -96.001968163422461, 29.728182169377202 ], [ -96.002928163081918, 29.728171169416171 ], [ -96.004152163848161, 29.728145169336575 ], [ -96.0054351642885, 29.728130169266226 ], [ -96.006661164175654, 29.728115168516421 ], [ -96.006944164872166, 29.728114168439134 ], [ -96.008510164743171, 29.728088168840525 ], [ -96.008969164976222, 29.728091168500637 ], [ -96.01078216548153, 29.728083168724112 ], [ -96.012629166006775, 29.728072168828415 ], [ -96.013675166490088, 29.728061168500584 ], [ -96.01457916642255, 29.728044168873378 ], [ -96.015231166608828, 29.728048168135647 ], [ -96.016505167275298, 29.728046168569275 ], [ -96.016675166727467, 29.728041168287636 ], [ -96.020189167481007, 29.727996168226557 ], [ -96.020390167830186, 29.727999168719059 ], [ -96.020653167561008, 29.728006168721734 ], [ -96.020873168128105, 29.728025168756616 ], [ -96.021203168016442, 29.72804516850735 ], [ -96.022745168551594, 29.728031168538827 ], [ -96.025448168995425, 29.728008168068886 ], [ -96.026558169438502, 29.727999167852072 ], [ -96.0273161698438, 29.728002168560945 ], [ -96.028578170068016, 29.727982167823004 ], [ -96.03070817020938, 29.727966168445768 ], [ -96.031219170236909, 29.727961167678568 ], [ -96.032067170397212, 29.727954168391797 ], [ -96.032463171097334, 29.727951168358334 ], [ -96.032718171439996, 29.727949167796996 ], [ -96.032724171236225, 29.727778168321894 ], [ -96.032721171392311, 29.727626168125433 ], [ -96.032727171053807, 29.727600168250657 ], [ -96.032376170733926, 29.726590167478726 ], [ -96.032331171255024, 29.726195167251078 ], [ -96.032638170604628, 29.72439816688501 ], [ -96.033261170631633, 29.721548166805764 ], [ -96.033439170425325, 29.719618166263821 ], [ -96.033138170984429, 29.718409166309947 ], [ -96.033043170802472, 29.718250165914561 ], [ -96.033008170471632, 29.718187165573489 ], [ -96.032949170381357, 29.718094165940698 ], [ -96.032881170243343, 29.718006165509333 ], [ -96.032616170241766, 29.717691166176426 ], [ -96.032511169957075, 29.717583166156864 ], [ -96.032426170037724, 29.717505166184583 ], [ -96.032395170729515, 29.717483166108416 ], [ -96.032073169981345, 29.717328165547443 ], [ -96.031925170260635, 29.717271165710251 ], [ -96.031581170162355, 29.717157165911498 ], [ -96.031346169922898, 29.717095166101547 ], [ -96.031186169907883, 29.717068165923816 ], [ -96.030942170066297, 29.717047165670262 ], [ -96.030738169741156, 29.7170621655942 ], [ -96.030374169525004, 29.717107166257485 ], [ -96.030292169761367, 29.717109166057721 ], [ -96.030047170133315, 29.717095165521858 ], [ -96.029886170268597, 29.717070165997896 ], [ -96.029075169612057, 29.7169871662209 ], [ -96.028749169231148, 29.716970165472656 ], [ -96.027730168989464, 29.716897165529318 ], [ -96.02748516953632, 29.716892165776045 ], [ -96.026831168859388, 29.716905165845439 ], [ -96.026626168736286, 29.716917166182373 ], [ -96.026018168851735, 29.716981165727343 ], [ -96.025009168293138, 29.717127165763166 ], [ -96.024729168782343, 29.717180165705987 ], [ -96.024379168836049, 29.717281166444714 ], [ -96.023551167729963, 29.717481165820772 ], [ -96.023392167887792, 29.717516166410288 ], [ -96.022525168195017, 29.717720166593956 ], [ -96.022470167671528, 29.717744166268847 ], [ -96.022418167810287, 29.717758166652999 ], [ -96.016635166552746, 29.719425166994121 ], [ -96.016490166401724, 29.719467167199401 ], [ -96.015973166217989, 29.719616167195461 ], [ -96.013988165432579, 29.719887166915306 ], [ -96.012849165898629, 29.719933166593528 ], [ -96.011612164786044, 29.719848166670324 ], [ -96.011570165595003, 29.719835167306705 ], [ -96.011280165300661, 29.719746166655007 ], [ -96.011245165246095, 29.719736167240455 ], [ -96.01118816547482, 29.719719166961735 ], [ -96.011176165384057, 29.719715167224948 ], [ -96.01116116498693, 29.719707167289251 ], [ -96.01096616516989, 29.719631166573283 ], [ -96.009736164616143, 29.719165166824286 ], [ -96.00835716451931, 29.718337166769228 ], [ -96.007667163920715, 29.717684167049306 ], [ -96.007116164351686, 29.716682166648216 ], [ -96.006505163291251, 29.714870166174197 ], [ -96.006170163056524, 29.713392166331239 ], [ -96.005834162926064, 29.711867165325746 ], [ -96.005213162998842, 29.710316164926319 ], [ -96.005155162677468, 29.710169165655795 ], [ -96.005139162823752, 29.710136164843505 ], [ -96.004974162816836, 29.709803165647301 ], [ -96.004884162875612, 29.709621164989098 ], [ -96.004581162901459, 29.708588164678687 ], [ -96.004532163360182, 29.708233164670769 ], [ -96.004687163389548, 29.706771164966703 ], [ -96.004787162821444, 29.706585164654662 ], [ -96.004997163103681, 29.705732164339199 ], [ -96.005515162658924, 29.704537163831535 ], [ -96.005993162752304, 29.703860164235 ], [ -96.006670163040411, 29.703341163640463 ], [ -96.00758616392261, 29.702943164143132 ], [ -96.011690164802516, 29.702585163240748 ], [ -96.012646165145284, 29.70266416358238 ], [ -96.014200165265905, 29.702943163126662 ], [ -96.015713165383602, 29.703461163775518 ], [ -96.019857166794679, 29.705293163924278 ], [ -96.021579167427348, 29.705631163383433 ], [ -96.022222167820345, 29.70545616334897 ], [ -96.022646166964606, 29.705015163567925 ], [ -96.022845167756003, 29.704457163568929 ], [ -96.022882167375016, 29.703642163049476 ], [ -96.022646166974468, 29.702864162868785 ], [ -96.022367166960976, 29.702087162749446 ], [ -96.021279167345256, 29.700950163246873 ], [ -96.020136167026124, 29.70017516268382 ], [ -96.019301166258913, 29.699752162591139 ], [ -96.018235166293977, 29.69887116215563 ], [ -96.016221165115567, 29.696640161929487 ], [ -96.015475165388978, 29.695456161620225 ], [ -96.015444164665738, 29.695410162266406 ], [ -96.015219165561675, 29.695046161906202 ], [ -96.01521616550427, 29.695029161557741 ], [ -96.015202165506551, 29.694938162155065 ], [ -96.01453116476246, 29.693594161953474 ], [ -96.014006164076051, 29.691115161529517 ], [ -96.014081164462226, 29.688748160381131 ], [ -96.01475016471781, 29.685933159848918 ], [ -96.014764164554023, 29.685953160037936 ], [ -96.014779164734435, 29.685185159770271 ], [ -96.014830164375113, 29.684178159527409 ], [ -96.014866164353947, 29.683819159218235 ], [ -96.01490916471549, 29.683460159690558 ], [ -96.015038164155783, 29.68267715928264 ], [ -96.015077164311762, 29.682536159497879 ], [ -96.015182164206507, 29.682264159023021 ], [ -96.015300164236493, 29.682034159328737 ], [ -96.015374164378727, 29.681865159249092 ], [ -96.015437164299541, 29.681694159397072 ], [ -96.015564164760917, 29.681428159008934 ], [ -96.015623164865744, 29.681333158942699 ], [ -96.016018165069696, 29.680779158614222 ], [ -96.016644164908257, 29.680066159163669 ], [ -96.017320164956146, 29.679559158223306 ], [ -96.018071164692344, 29.679202158329606 ], [ -96.01886016511105, 29.678902158491468 ], [ -96.019656165377725, 29.678709158519641 ], [ -96.020344165505463, 29.67865715857091 ], [ -96.020795166125609, 29.678695158346361 ], [ -96.021452165613482, 29.678902158296037 ], [ -96.021903165852137, 29.679202158289339 ], [ -96.022410165993733, 29.679653158355414 ], [ -96.022748166252541, 29.680217158145457 ], [ -96.023528166405796, 29.683370158893936 ], [ -96.023552166217897, 29.683451159451931 ], [ -96.023636167172427, 29.68365515912302 ], [ -96.023738166365177, 29.683930159243232 ], [ -96.023841166595844, 29.684126159404638 ], [ -96.024017167194472, 29.684409159661481 ], [ -96.024305167150146, 29.684666159801246 ], [ -96.024387166606274, 29.684747159286012 ], [ -96.024564166949801, 29.684898159793239 ], [ -96.024619166658525, 29.684952159829734 ], [ -96.024720167339268, 29.685066159448652 ], [ -96.025019166973109, 29.685316159429643 ], [ -96.025366166925068, 29.685624160018996 ], [ -96.025502166783426, 29.685760159725561 ], [ -96.025600167160022, 29.685876159695066 ], [ -96.025868166852206, 29.686101159999179 ], [ -96.025995167057985, 29.686193159841224 ], [ -96.027218168135164, 29.686995160179794 ], [ -96.027811167735834, 29.687323160264345 ], [ -96.028331167591674, 29.687618159942673 ], [ -96.028476168373885, 29.687687160198458 ], [ -96.029036167795695, 29.687919160095063 ], [ -96.029852168372273, 29.688178160202714 ], [ -96.030971168702777, 29.688436160392939 ], [ -96.031215169351142, 29.688473159805422 ], [ -96.032164169453623, 29.688529159746707 ], [ -96.032494168863963, 29.68851016029733 ], [ -96.032905169587607, 29.68847616034596 ], [ -96.033483169128786, 29.688450160209037 ], [ -96.034103169943336, 29.688434160160771 ], [ -96.034310169628725, 29.68844215983777 ], [ -96.034516169589153, 29.688442159510632 ], [ -96.03484516947492, 29.688414160007508 ], [ -96.034968170149725, 29.688399159423206 ], [ -96.035048169843691, 29.688381159692177 ], [ -96.035128170049759, 29.68836815999234 ], [ -96.035293170276063, 29.68835216026384 ], [ -96.035417170228214, 29.688349159892613 ], [ -96.035830169985232, 29.688363159791152 ], [ -96.03591217023731, 29.68836115981815 ], [ -96.036152169741371, 29.688306159703021 ], [ -96.036232169923537, 29.688291159321029 ], [ -96.036396170525762, 29.688272159542663 ], [ -96.036512170137641, 29.688265159755677 ], [ -96.036952170494175, 29.688167159289215 ], [ -96.037034170306413, 29.688155159395336 ], [ -96.037282170757138, 29.688146159813027 ], [ -96.037446170677356, 29.688130159684203 ], [ -96.038665170517476, 29.687931159907777 ], [ -96.039635171192018, 29.687753159557303 ], [ -96.039957171180987, 29.687688159332474 ], [ -96.040597171472157, 29.687540159124961 ], [ -96.041109171072819, 29.687397158991288 ], [ -96.041453171065811, 29.687275159562116 ], [ -96.042743171962144, 29.68679015928786 ], [ -96.04308217149692, 29.686656158888781 ], [ -96.045093171852798, 29.685812158841763 ], [ -96.046610172256294, 29.685154158532754 ], [ -96.047049172910448, 29.684951158909929 ], [ -96.047853172377572, 29.684588158993634 ], [ -96.047869172849943, 29.684591158883805 ], [ -96.049958172986933, 29.68397215850591 ], [ -96.052181174197599, 29.683458158332325 ], [ -96.053767174529497, 29.683331158050553 ], [ -96.053893174258249, 29.683300158244158 ], [ -96.054667174292106, 29.683059157914915 ], [ -96.055051175038386, 29.682929158177071 ], [ -96.055181174466426, 29.682883158338417 ], [ -96.055238174838891, 29.682857157968492 ], [ -96.055547174509854, 29.682760157619494 ], [ -96.05566617488428, 29.682733157536603 ], [ -96.055861175127006, 29.682673158322366 ], [ -96.05608617503448, 29.682582158299983 ], [ -96.056264175067426, 29.682492158095606 ], [ -96.056490174946632, 29.682403157749924 ], [ -96.056563175051821, 29.682371158286539 ], [ -96.056770174585978, 29.682252158285955 ], [ -96.057068174665702, 29.682059158117177 ], [ -96.057229175123382, 29.681948157378237 ], [ -96.057720174945175, 29.681562157750943 ], [ -96.058039175748689, 29.681280157517044 ], [ -96.058258175350204, 29.681065158001431 ], [ -96.058890175040546, 29.680399157691237 ], [ -96.058984175888483, 29.680281157028368 ], [ -96.059397175183975, 29.67965815685805 ], [ -96.059541175169528, 29.679399157582644 ], [ -96.059572175815532, 29.679333157148918 ], [ -96.059793176107789, 29.678678157476241 ], [ -96.059815175478406, 29.678571156550777 ], [ -96.059879175359029, 29.678035157202821 ], [ -96.059920175569744, 29.677859156650033 ], [ -96.05994617516761, 29.677643156603736 ], [ -96.059985175460824, 29.677035157033277 ], [ -96.059993175500111, 29.676711156741288 ], [ -96.060019175918057, 29.676532156153193 ], [ -96.06007317521231, 29.676322156248244 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1562, "Tract": "48157670500", "Area_SqMi": 2.1153436695355912, "total_2009": 401, "total_2010": 435, "total_2011": 467, "total_2012": 509, "total_2013": 679, "total_2014": 840, "total_2015": 869, "total_2016": 828, "total_2017": 999, "total_2018": 1297, "total_2019": 1426, "total_2020": 1499, "age1": 352, "age2": 895, "age3": 341, "earn1": 222, "earn2": 359, "earn3": 1007, "naics_s01": 0, "naics_s02": 3, "naics_s03": 0, "naics_s04": 200, "naics_s05": 324, "naics_s06": 136, "naics_s07": 265, "naics_s08": 167, "naics_s09": 196, "naics_s10": 22, "naics_s11": 5, "naics_s12": 22, "naics_s13": 11, "naics_s14": 15, "naics_s15": 1, "naics_s16": 83, "naics_s17": 0, "naics_s18": 92, "naics_s19": 46, "naics_s20": 0, "race1": 1017, "race2": 407, "race3": 11, "race4": 129, "race5": 0, "race6": 24, "ethnicity1": 1056, "ethnicity2": 532, "edu1": 273, "edu2": 320, "edu3": 389, "edu4": 254, "Shape_Length": 33945.783511674817, "Shape_Area": 58972161.059778586, "total_2021": 2013, "total_2022": 1588 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.538131040301252, 29.618674162180522 ], [ -95.537977040131693, 29.618547162388602 ], [ -95.537853039561313, 29.61844516240928 ], [ -95.537233039602199, 29.617931161945247 ], [ -95.536639039555197, 29.617422162317634 ], [ -95.536073039766706, 29.616939161920396 ], [ -95.534155039240758, 29.61537216202721 ], [ -95.532957038493024, 29.614360161942148 ], [ -95.531439037831504, 29.613076161221162 ], [ -95.530802038358061, 29.612531161686032 ], [ -95.530605038362026, 29.612363161783236 ], [ -95.53036903749998, 29.612161161485606 ], [ -95.530158037947771, 29.611980161456337 ], [ -95.529784037273984, 29.611658161079045 ], [ -95.529276037591558, 29.611210161545777 ], [ -95.52918603743332, 29.611130160815406 ], [ -95.527986037242215, 29.61007016090975 ], [ -95.527621037155299, 29.609748160980999 ], [ -95.527470037408179, 29.609417160633615 ], [ -95.527359037324501, 29.609177160526709 ], [ -95.527326037047359, 29.609107160793414 ], [ -95.52723803641824, 29.608841160486268 ], [ -95.527232037096894, 29.608822160738939 ], [ -95.527194036443376, 29.608710161065673 ], [ -95.527146036508199, 29.608564161120448 ], [ -95.527001036691374, 29.608127160599405 ], [ -95.526973036522207, 29.607860160232605 ], [ -95.526978036923083, 29.607433160649528 ], [ -95.526987036734539, 29.606612160287128 ], [ -95.526983036726534, 29.606477160343495 ], [ -95.52697303632408, 29.606113160003261 ], [ -95.52696603666466, 29.605858160362548 ], [ -95.526950036166937, 29.6044901596693 ], [ -95.526948036497501, 29.604349160110146 ], [ -95.526855036221733, 29.602547159344642 ], [ -95.526851036604583, 29.602490159560428 ], [ -95.526849036990086, 29.602436159804011 ], [ -95.526811036865894, 29.600426159178699 ], [ -95.52679603661403, 29.599598158860225 ], [ -95.526795036154709, 29.599547159291401 ], [ -95.526760035917547, 29.596160158253095 ], [ -95.526744036163294, 29.596005158327952 ], [ -95.526098036225392, 29.596026157796796 ], [ -95.525627036245595, 29.59606915862792 ], [ -95.524925036195526, 29.596183158640731 ], [ -95.524652035694913, 29.596230158265897 ], [ -95.524169035986617, 29.596374158638877 ], [ -95.523645035851288, 29.596586158624962 ], [ -95.523340035124193, 29.596727158377515 ], [ -95.522964035669332, 29.596919158863148 ], [ -95.52294303535524, 29.59693315864093 ], [ -95.522347035278742, 29.597314158305906 ], [ -95.521983035443924, 29.59759115819724 ], [ -95.521610034591603, 29.597926158748241 ], [ -95.521386035244134, 29.598179158318164 ], [ -95.520785035091677, 29.599012158800136 ], [ -95.520212034724864, 29.599875159409475 ], [ -95.520190035123747, 29.599907159064415 ], [ -95.519614034362547, 29.600541158876549 ], [ -95.519047034705721, 29.601020159541491 ], [ -95.518628034736508, 29.601268159313662 ], [ -95.518459034226098, 29.601354159168046 ], [ -95.517979033905249, 29.601568159203588 ], [ -95.516847034069784, 29.60198115929995 ], [ -95.516042033217431, 29.602140159881234 ], [ -95.515696033655743, 29.602189160069621 ], [ -95.514483033635855, 29.602211160221909 ], [ -95.514419033040312, 29.602183160139329 ], [ -95.513983033672915, 29.60210315937648 ], [ -95.513114033428863, 29.601888159817332 ], [ -95.512479032863993, 29.60171615938054 ], [ -95.512111033082007, 29.601616159846671 ], [ -95.511505032246106, 29.601485159884692 ], [ -95.511439032079195, 29.601476159756938 ], [ -95.510834032235692, 29.601401160091662 ], [ -95.510562032419628, 29.601330159598117 ], [ -95.50938703183563, 29.601344159880579 ], [ -95.509143032168595, 29.601349159820785 ], [ -95.508916032035728, 29.601354159706066 ], [ -95.508526031670996, 29.601363159392555 ], [ -95.508216032044061, 29.601370159599714 ], [ -95.507579031725399, 29.601365159655206 ], [ -95.507405031123056, 29.60137815979758 ], [ -95.507403031552656, 29.601526160064818 ], [ -95.507433031903219, 29.602088159870124 ], [ -95.507437031385649, 29.602784160181411 ], [ -95.507452031526142, 29.603438160150695 ], [ -95.507494031546869, 29.604029160688544 ], [ -95.507502031197362, 29.604454160734637 ], [ -95.507467031988099, 29.60512216089322 ], [ -95.507241031467714, 29.605967161169751 ], [ -95.507148031904492, 29.606297160449763 ], [ -95.507138031915389, 29.606369160817753 ], [ -95.507085031376207, 29.60681916081829 ], [ -95.50704303187355, 29.607234160804133 ], [ -95.507021031696652, 29.607512161149003 ], [ -95.507038031812243, 29.607630161454669 ], [ -95.50711503138109, 29.608191161558462 ], [ -95.507196031722472, 29.60849916106876 ], [ -95.50727003166044, 29.608779161089188 ], [ -95.507553032104809, 29.609455161086544 ], [ -95.507772031552051, 29.609979162016032 ], [ -95.507971032360615, 29.610401161575545 ], [ -95.508159032437405, 29.61082116219805 ], [ -95.508254031770434, 29.61105116180816 ], [ -95.508518032705553, 29.611699161638406 ], [ -95.508529032632964, 29.611718161901852 ], [ -95.508674032450486, 29.611973161819154 ], [ -95.50872103176691, 29.612117162353844 ], [ -95.508846032294585, 29.612498161774379 ], [ -95.508899032304015, 29.612687162440874 ], [ -95.508913032797892, 29.612738162008679 ], [ -95.508922031933608, 29.612770161704841 ], [ -95.508972032766394, 29.612903161974721 ], [ -95.509014032801971, 29.613191161826233 ], [ -95.509047032186672, 29.613416162496453 ], [ -95.509065032147802, 29.61371816203614 ], [ -95.5090240320866, 29.614612162396522 ], [ -95.509004032218627, 29.614869162660046 ], [ -95.508994032660922, 29.615018162378249 ], [ -95.508962032738907, 29.615769162917861 ], [ -95.508922032712945, 29.616692162766387 ], [ -95.508857032082048, 29.617647163213061 ], [ -95.508830032872538, 29.618057163274038 ], [ -95.508765032982765, 29.618661163214984 ], [ -95.508715033024359, 29.619114163663745 ], [ -95.508681033062913, 29.619323163733242 ], [ -95.508634032987146, 29.61973416365873 ], [ -95.508738032402718, 29.619782163970449 ], [ -95.509981032738168, 29.620358163641065 ], [ -95.510343033428953, 29.620524164131499 ], [ -95.513188033515732, 29.621842163899132 ], [ -95.514159034491925, 29.622292164286609 ], [ -95.515227034363704, 29.62278516433647 ], [ -95.515480034348982, 29.622903164089045 ], [ -95.515801034627628, 29.623052164007962 ], [ -95.518548035395753, 29.624325164217652 ], [ -95.519505035489317, 29.624766164011241 ], [ -95.5203970362533, 29.625179164767708 ], [ -95.520595036055511, 29.625269164361292 ], [ -95.520792036144371, 29.625360163986283 ], [ -95.520831036412346, 29.625332164591629 ], [ -95.523142036814221, 29.624413163896204 ], [ -95.523578036835275, 29.62426616364046 ], [ -95.525810037025195, 29.62347816392888 ], [ -95.526623037807852, 29.623153163326549 ], [ -95.527670037626208, 29.622736163157374 ], [ -95.529822038622868, 29.621870163247426 ], [ -95.531382038907481, 29.62129316342828 ], [ -95.532320039217211, 29.620918162651652 ], [ -95.53393403864041, 29.620272162535031 ], [ -95.534767039439544, 29.619952162963223 ], [ -95.535186039269547, 29.619794163103659 ], [ -95.536424039908994, 29.619327162448581 ], [ -95.536801039849351, 29.619191162350315 ], [ -95.537206039570577, 29.619030162699453 ], [ -95.538131040301252, 29.618674162180522 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1563, "Tract": "48157671200", "Area_SqMi": 1.2831027510098847, "total_2009": 704, "total_2010": 546, "total_2011": 455, "total_2012": 441, "total_2013": 459, "total_2014": 479, "total_2015": 503, "total_2016": 495, "total_2017": 466, "total_2018": 540, "total_2019": 541, "total_2020": 545, "age1": 96, "age2": 282, "age3": 141, "earn1": 80, "earn2": 138, "earn3": 301, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 24, "naics_s05": 51, "naics_s06": 0, "naics_s07": 21, "naics_s08": 3, "naics_s09": 0, "naics_s10": 9, "naics_s11": 4, "naics_s12": 100, "naics_s13": 0, "naics_s14": 14, "naics_s15": 56, "naics_s16": 33, "naics_s17": 54, "naics_s18": 22, "naics_s19": 10, "naics_s20": 118, "race1": 279, "race2": 138, "race3": 4, "race4": 87, "race5": 1, "race6": 10, "ethnicity1": 409, "ethnicity2": 110, "edu1": 75, "edu2": 103, "edu3": 130, "edu4": 115, "Shape_Length": 23805.096728201002, "Shape_Area": 35770708.645849563, "total_2021": 524, "total_2022": 519 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.54864304177616, 29.60470515958075 ], [ -95.547686042165324, 29.603929159443375 ], [ -95.546825042009701, 29.603187158869073 ], [ -95.546258041674847, 29.6027051590215 ], [ -95.54596004100695, 29.602455158825688 ], [ -95.544010041145839, 29.600828158847779 ], [ -95.543505040701703, 29.600393158254565 ], [ -95.543391040713843, 29.600279158249212 ], [ -95.543213040344838, 29.600100158294531 ], [ -95.542998040072902, 29.599931158521184 ], [ -95.542693040810278, 29.599693158289302 ], [ -95.542439039879511, 29.59946615822118 ], [ -95.541718039833867, 29.59888615862269 ], [ -95.541405039928478, 29.598618157812766 ], [ -95.54086403965195, 29.598155158416549 ], [ -95.540843039406141, 29.598128158339048 ], [ -95.540373039538011, 29.59771815831914 ], [ -95.539084038970941, 29.596634157966626 ], [ -95.537227038504682, 29.595069157683252 ], [ -95.534832037999251, 29.593052157083459 ], [ -95.534435037955276, 29.59341415694179 ], [ -95.532877037291925, 29.594811157323289 ], [ -95.532591037693052, 29.5949101573242 ], [ -95.532100037488377, 29.59520415788548 ], [ -95.531532037291669, 29.595462157780727 ], [ -95.530851037416994, 29.59571615808828 ], [ -95.530417037268876, 29.595818157692861 ], [ -95.530031037064418, 29.595915158111247 ], [ -95.529818037266196, 29.595956158346809 ], [ -95.529675036734034, 29.595974157993464 ], [ -95.529494036978434, 29.595986158294835 ], [ -95.529230037184647, 29.596003157736746 ], [ -95.527177036648581, 29.596014158231597 ], [ -95.526744036163294, 29.596005158327952 ], [ -95.526760035917547, 29.596160158253095 ], [ -95.526795036154709, 29.599547159291401 ], [ -95.52679603661403, 29.599598158860225 ], [ -95.526811036865894, 29.600426159178699 ], [ -95.526849036990086, 29.602436159804011 ], [ -95.526851036604583, 29.602490159560428 ], [ -95.526855036221733, 29.602547159344642 ], [ -95.526948036497501, 29.604349160110146 ], [ -95.526950036166937, 29.6044901596693 ], [ -95.52696603666466, 29.605858160362548 ], [ -95.52697303632408, 29.606113160003261 ], [ -95.526983036726534, 29.606477160343495 ], [ -95.526987036734539, 29.606612160287128 ], [ -95.526978036923083, 29.607433160649528 ], [ -95.526973036522207, 29.607860160232605 ], [ -95.527001036691374, 29.608127160599405 ], [ -95.527146036508199, 29.608564161120448 ], [ -95.527194036443376, 29.608710161065673 ], [ -95.527232037096894, 29.608822160738939 ], [ -95.52723803641824, 29.608841160486268 ], [ -95.527326037047359, 29.609107160793414 ], [ -95.527359037324501, 29.609177160526709 ], [ -95.527470037408179, 29.609417160633615 ], [ -95.527621037155299, 29.609748160980999 ], [ -95.527986037242215, 29.61007016090975 ], [ -95.52918603743332, 29.611130160815406 ], [ -95.529276037591558, 29.611210161545777 ], [ -95.529784037273984, 29.611658161079045 ], [ -95.530158037947771, 29.611980161456337 ], [ -95.53036903749998, 29.612161161485606 ], [ -95.530605038362026, 29.612363161783236 ], [ -95.530802038358061, 29.612531161686032 ], [ -95.531439037831504, 29.613076161221162 ], [ -95.532957038493024, 29.614360161942148 ], [ -95.534155039240758, 29.61537216202721 ], [ -95.536073039766706, 29.616939161920396 ], [ -95.536373039347978, 29.616601161766958 ], [ -95.53665903976632, 29.616332161801573 ], [ -95.536951040049118, 29.616076162300285 ], [ -95.537226040208083, 29.615831161656779 ], [ -95.537858039399367, 29.61526516146867 ], [ -95.538455040159192, 29.614722161763332 ], [ -95.539056039800926, 29.614054161338537 ], [ -95.539186040409675, 29.613887161070746 ], [ -95.539300040601418, 29.613756161088052 ], [ -95.539766040289123, 29.613341161467705 ], [ -95.539884040283781, 29.613244161168563 ], [ -95.541355040578736, 29.611897160572635 ], [ -95.541482040376223, 29.611780161117867 ], [ -95.541705040302617, 29.611574160915296 ], [ -95.54176604031251, 29.611519160585548 ], [ -95.542030041232366, 29.611272161005001 ], [ -95.543011040892168, 29.610422160181066 ], [ -95.543845041357216, 29.609664160106703 ], [ -95.544294041656769, 29.609205159998293 ], [ -95.544492041673521, 29.608930160137707 ], [ -95.545520041740062, 29.607675159883641 ], [ -95.54864304177616, 29.60470515958075 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1564, "Tract": "48157671300", "Area_SqMi": 0.98496338192924671, "total_2009": 729, "total_2010": 691, "total_2011": 774, "total_2012": 572, "total_2013": 1038, "total_2014": 823, "total_2015": 857, "total_2016": 914, "total_2017": 897, "total_2018": 847, "total_2019": 851, "total_2020": 823, "age1": 119, "age2": 353, "age3": 303, "earn1": 226, "earn2": 330, "earn3": 219, "naics_s01": 0, "naics_s02": 0, "naics_s03": 45, "naics_s04": 6, "naics_s05": 48, "naics_s06": 27, "naics_s07": 70, "naics_s08": 0, "naics_s09": 16, "naics_s10": 7, "naics_s11": 20, "naics_s12": 8, "naics_s13": 0, "naics_s14": 3, "naics_s15": 29, "naics_s16": 386, "naics_s17": 0, "naics_s18": 64, "naics_s19": 46, "naics_s20": 0, "race1": 422, "race2": 249, "race3": 4, "race4": 83, "race5": 0, "race6": 17, "ethnicity1": 564, "ethnicity2": 211, "edu1": 134, "edu2": 169, "edu3": 203, "edu4": 150, "Shape_Length": 26227.80282237662, "Shape_Area": 27459093.306511275, "total_2021": 826, "total_2022": 775 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.564681046916107, 29.618398161356907 ], [ -95.564693047054902, 29.618142161674275 ], [ -95.564670047280927, 29.616538160847295 ], [ -95.564640046244733, 29.615556160693544 ], [ -95.56463004626282, 29.61533716089286 ], [ -95.564628046741433, 29.61521316059817 ], [ -95.56458504616856, 29.613285160509097 ], [ -95.564574046255743, 29.61251616049481 ], [ -95.56450504639038, 29.610941160230649 ], [ -95.564481046791514, 29.610699160283186 ], [ -95.564477046576869, 29.610407159406865 ], [ -95.564460045930929, 29.609154159382928 ], [ -95.564460046219892, 29.609139159951916 ], [ -95.564454045969484, 29.60822415918641 ], [ -95.564447046075657, 29.607287159183453 ], [ -95.564411046150227, 29.605489158791404 ], [ -95.564409045935378, 29.60543215879774 ], [ -95.563926046247119, 29.605418159213709 ], [ -95.559727044919811, 29.605297159110208 ], [ -95.558434044805992, 29.605260158915218 ], [ -95.55594104384879, 29.605188159357112 ], [ -95.555916044436643, 29.605187159266794 ], [ -95.55531504386154, 29.605162159211883 ], [ -95.55528904353649, 29.605161159411018 ], [ -95.555242044357797, 29.60515915948838 ], [ -95.553459043916263, 29.605085159224579 ], [ -95.552990042997777, 29.605073158751686 ], [ -95.552325043203709, 29.605055159154151 ], [ -95.552137043407001, 29.605031159074315 ], [ -95.552046043172027, 29.605019159062238 ], [ -95.551890043353268, 29.604939159059093 ], [ -95.551593042968889, 29.604694158859459 ], [ -95.55140904249302, 29.604534158620979 ], [ -95.550674042624593, 29.603896158492596 ], [ -95.550037042220964, 29.603364158536305 ], [ -95.549992042123449, 29.60340915928975 ], [ -95.549710041924712, 29.603687158524242 ], [ -95.549425042092579, 29.603970159094132 ], [ -95.549330042187506, 29.604059159267965 ], [ -95.54864304177616, 29.60470515958075 ], [ -95.545520041740062, 29.607675159883641 ], [ -95.544492041673521, 29.608930160137707 ], [ -95.544294041656769, 29.609205159998293 ], [ -95.543845041357216, 29.609664160106703 ], [ -95.543011040892168, 29.610422160181066 ], [ -95.542030041232366, 29.611272161005001 ], [ -95.54176604031251, 29.611519160585548 ], [ -95.541705040302617, 29.611574160915296 ], [ -95.541482040376223, 29.611780161117867 ], [ -95.541355040578736, 29.611897160572635 ], [ -95.539884040283781, 29.613244161168563 ], [ -95.539766040289123, 29.613341161467705 ], [ -95.539300040601418, 29.613756161088052 ], [ -95.539186040409675, 29.613887161070746 ], [ -95.539056039800926, 29.614054161338537 ], [ -95.538455040159192, 29.614722161763332 ], [ -95.537858039399367, 29.61526516146867 ], [ -95.537226040208083, 29.615831161656779 ], [ -95.536951040049118, 29.616076162300285 ], [ -95.53665903976632, 29.616332161801573 ], [ -95.536373039347978, 29.616601161766958 ], [ -95.536073039766706, 29.616939161920396 ], [ -95.536639039555197, 29.617422162317634 ], [ -95.537233039602199, 29.617931161945247 ], [ -95.537853039561313, 29.61844516240928 ], [ -95.537977040131693, 29.618547162388602 ], [ -95.538131040301252, 29.618674162180522 ], [ -95.538616040312121, 29.61850016268485 ], [ -95.539047039877943, 29.618325161924414 ], [ -95.539819040937942, 29.618008161888142 ], [ -95.540718040219005, 29.617666162282308 ], [ -95.54150204113219, 29.617349162395723 ], [ -95.542403041111854, 29.617020162007304 ], [ -95.543241041017183, 29.616709161887439 ], [ -95.543881041312162, 29.616469162022756 ], [ -95.544422042080981, 29.616297161565864 ], [ -95.545483042088108, 29.615896161511081 ], [ -95.546380042203978, 29.615519161821897 ], [ -95.546784041789124, 29.615349161748465 ], [ -95.547389042112698, 29.615141161247735 ], [ -95.547962042898732, 29.614913160935803 ], [ -95.548389042716067, 29.614756161068268 ], [ -95.549201043246597, 29.614497160864655 ], [ -95.549665042350952, 29.614363161358199 ], [ -95.550167043359693, 29.614265161417347 ], [ -95.550505042695278, 29.614222161411639 ], [ -95.550806042816788, 29.614185160870786 ], [ -95.551332043384349, 29.614144160714652 ], [ -95.552052043862034, 29.61412016135127 ], [ -95.552736043476315, 29.614139161161074 ], [ -95.553937043843504, 29.614233161325778 ], [ -95.554504044473063, 29.614282160655396 ], [ -95.555166043879069, 29.614382160940636 ], [ -95.556090044059502, 29.614597160967204 ], [ -95.556944044670502, 29.614820160649597 ], [ -95.558076044562725, 29.615081160808913 ], [ -95.559042045164418, 29.615392160962731 ], [ -95.559763045337576, 29.615687161411589 ], [ -95.56049504521441, 29.616021160917185 ], [ -95.561158046126792, 29.616294161580814 ], [ -95.561795046472014, 29.616595160895159 ], [ -95.562385046312883, 29.616853161167199 ], [ -95.562859046059046, 29.61710516149148 ], [ -95.563242046482713, 29.61734816123991 ], [ -95.563639046655481, 29.617639161475086 ], [ -95.563930046856385, 29.61787816170353 ], [ -95.564438046818793, 29.618224161503882 ], [ -95.564641046541013, 29.618362161069602 ], [ -95.564681046916107, 29.618398161356907 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1565, "Tract": "48157670803", "Area_SqMi": 1.2652588831646345, "total_2009": 271, "total_2010": 295, "total_2011": 500, "total_2012": 47, "total_2013": 36, "total_2014": 40, "total_2015": 46, "total_2016": 41, "total_2017": 39, "total_2018": 55, "total_2019": 97, "total_2020": 125, "age1": 30, "age2": 56, "age3": 19, "earn1": 17, "earn2": 27, "earn3": 61, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 2, "naics_s06": 2, "naics_s07": 22, "naics_s08": 29, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 27, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 8, "naics_s17": 0, "naics_s18": 0, "naics_s19": 4, "naics_s20": 0, "race1": 77, "race2": 23, "race3": 1, "race4": 3, "race5": 0, "race6": 1, "ethnicity1": 55, "ethnicity2": 50, "edu1": 25, "edu2": 24, "edu3": 18, "edu4": 8, "Shape_Length": 25993.581613863269, "Shape_Area": 35273252.150409028, "total_2021": 87, "total_2022": 105 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.483697022630608, 29.535831147246824 ], [ -95.483580022885661, 29.532347146276571 ], [ -95.483536021838475, 29.531776146754254 ], [ -95.483486022223616, 29.531552146025707 ], [ -95.483425022536522, 29.531350146052677 ], [ -95.483319022504716, 29.531016146222775 ], [ -95.483168022676153, 29.530678146117083 ], [ -95.483031022075338, 29.530440145846928 ], [ -95.482733022442062, 29.530000146416715 ], [ -95.482500021587768, 29.529717146354777 ], [ -95.482197021851647, 29.52944414633884 ], [ -95.481187021422386, 29.528709146266372 ], [ -95.481041021932342, 29.528539145769756 ], [ -95.480850021684887, 29.528373145566487 ], [ -95.480576021230249, 29.528099145607815 ], [ -95.480251021145492, 29.527695145240777 ], [ -95.480128021170415, 29.527477145535336 ], [ -95.479970021168143, 29.527046145657611 ], [ -95.479887021394205, 29.526739145433769 ], [ -95.47982502099201, 29.526306145152812 ], [ -95.479819020736159, 29.526115145379041 ], [ -95.479671020737229, 29.526105145024516 ], [ -95.479480021337196, 29.526103145573828 ], [ -95.477806020320216, 29.526139145666175 ], [ -95.477240020012772, 29.526151145678583 ], [ -95.47561102057314, 29.526192145146585 ], [ -95.475443019797439, 29.526189145783867 ], [ -95.475377020211567, 29.526180145328944 ], [ -95.475356020344776, 29.526174145707639 ], [ -95.47532101991591, 29.526164145411439 ], [ -95.475277019854971, 29.526137145708212 ], [ -95.475241020457631, 29.526099145488562 ], [ -95.475219020186287, 29.526051145131074 ], [ -95.475206020274186, 29.525993145537363 ], [ -95.47519901953757, 29.52586414570618 ], [ -95.475193020312176, 29.525006145305063 ], [ -95.475173019506144, 29.524805145047505 ], [ -95.474981020014454, 29.524786144802267 ], [ -95.474919019443121, 29.524783145034942 ], [ -95.473106019396212, 29.524809144870694 ], [ -95.472779018888147, 29.524814145247838 ], [ -95.471331019283625, 29.524839145426565 ], [ -95.470784018321481, 29.524848144982347 ], [ -95.470012018820782, 29.524853145593262 ], [ -95.469624018245554, 29.524862145855863 ], [ -95.468627017879626, 29.524874145427294 ], [ -95.466493018035919, 29.524899145669828 ], [ -95.466381017912624, 29.52490114551491 ], [ -95.465492017152187, 29.52492014600902 ], [ -95.465452017387904, 29.524920145474795 ], [ -95.4651680178074, 29.524923145386179 ], [ -95.464438017501138, 29.524940145201295 ], [ -95.462072016563624, 29.524970145842023 ], [ -95.461038015942862, 29.524984145421481 ], [ -95.460726016170298, 29.524986145507764 ], [ -95.45865901548477, 29.525017145661096 ], [ -95.458332015849464, 29.525016145744264 ], [ -95.457390015465592, 29.525029145918101 ], [ -95.457149015736576, 29.525038145594991 ], [ -95.457035014861489, 29.525052145541462 ], [ -95.456728014795956, 29.525053145858458 ], [ -95.456469014762064, 29.525035145943409 ], [ -95.456349014895864, 29.525056145587467 ], [ -95.455887015121021, 29.525065145720184 ], [ -95.455655014795681, 29.525087146352302 ], [ -95.455541014795216, 29.525070145499626 ], [ -95.454984014284364, 29.525066145992863 ], [ -95.454723014406042, 29.52506114628434 ], [ -95.454671014255524, 29.525060146345243 ], [ -95.454555014928218, 29.52504514616453 ], [ -95.454317014404026, 29.52501514608608 ], [ -95.454266014667724, 29.525022146058213 ], [ -95.454248014820138, 29.525024145637396 ], [ -95.454193014487004, 29.525046146128503 ], [ -95.454138014182746, 29.525078145788751 ], [ -95.452632014330661, 29.528845146564617 ], [ -95.452195014349172, 29.529931146958873 ], [ -95.452291014518963, 29.52995814685703 ], [ -95.452533014672397, 29.530053146789335 ], [ -95.452575014507417, 29.53007014694284 ], [ -95.452714014102327, 29.530135147376892 ], [ -95.452807013986558, 29.530180147418836 ], [ -95.452965014644803, 29.530273147012583 ], [ -95.453122014256792, 29.530432146769265 ], [ -95.453354014981301, 29.530724147263552 ], [ -95.453449014568037, 29.530927147571742 ], [ -95.453975015150604, 29.532404147876402 ], [ -95.454273014468257, 29.533242147404248 ], [ -95.45465701455899, 29.534237147918315 ], [ -95.454984014832277, 29.535149148245544 ], [ -95.455292015279639, 29.53581514827237 ], [ -95.455340015547819, 29.535992147852681 ], [ -95.455366015412835, 29.536087148156966 ], [ -95.455576014874055, 29.536083147952308 ], [ -95.456535015119684, 29.536066148225633 ], [ -95.457035015526543, 29.536057147789073 ], [ -95.458640015641734, 29.53603114816266 ], [ -95.459687016128527, 29.536007148201062 ], [ -95.461273017110742, 29.535979147933773 ], [ -95.462572017591242, 29.535938148241812 ], [ -95.464969017932972, 29.535877148058837 ], [ -95.466593017726609, 29.535843147792662 ], [ -95.467789018266572, 29.535817147562192 ], [ -95.468410018548923, 29.535809147557458 ], [ -95.468877018977366, 29.535798147975605 ], [ -95.470182019405343, 29.535768147431632 ], [ -95.470657019347016, 29.535759147398213 ], [ -95.471000019493701, 29.535755147730121 ], [ -95.471308019726337, 29.535747147948108 ], [ -95.472228019476177, 29.535729147300529 ], [ -95.473009019680703, 29.535718147836167 ], [ -95.473804020150695, 29.535697147458997 ], [ -95.474410020467133, 29.535687147904515 ], [ -95.474935019793321, 29.53567214750295 ], [ -95.475364020306955, 29.535660147754839 ], [ -95.47693902042424, 29.535644147130661 ], [ -95.477797020563742, 29.535627147307554 ], [ -95.47800702112194, 29.535631147711577 ], [ -95.478152021204579, 29.535645147056279 ], [ -95.478200021462754, 29.535638147345676 ], [ -95.478360021069705, 29.535655147646324 ], [ -95.478448021345969, 29.535669147321983 ], [ -95.478772021127639, 29.535724147078124 ], [ -95.478972021756064, 29.53576314709813 ], [ -95.479263020943165, 29.535818147636473 ], [ -95.479441021695692, 29.535851146945468 ], [ -95.47960302103445, 29.535877147675027 ], [ -95.479641021281807, 29.535880147724061 ], [ -95.479903021474982, 29.535897147297657 ], [ -95.480284021334612, 29.535907147418722 ], [ -95.480825021411476, 29.53589114776215 ], [ -95.482042022558161, 29.535863147400388 ], [ -95.482173021870366, 29.535865147313032 ], [ -95.48266302179772, 29.535855147103725 ], [ -95.482861022100394, 29.535852146964729 ], [ -95.483697022630608, 29.535831147246824 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1566, "Tract": "48157670802", "Area_SqMi": 1.2499270444710056, "total_2009": 48, "total_2010": 41, "total_2011": 77, "total_2012": 97, "total_2013": 89, "total_2014": 80, "total_2015": 135, "total_2016": 123, "total_2017": 145, "total_2018": 106, "total_2019": 94, "total_2020": 101, "age1": 22, "age2": 79, "age3": 38, "earn1": 41, "earn2": 65, "earn3": 33, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 8, "naics_s05": 0, "naics_s06": 5, "naics_s07": 7, "naics_s08": 7, "naics_s09": 0, "naics_s10": 1, "naics_s11": 2, "naics_s12": 4, "naics_s13": 0, "naics_s14": 7, "naics_s15": 0, "naics_s16": 32, "naics_s17": 0, "naics_s18": 46, "naics_s19": 20, "naics_s20": 0, "race1": 82, "race2": 43, "race3": 0, "race4": 14, "race5": 0, "race6": 0, "ethnicity1": 102, "ethnicity2": 37, "edu1": 28, "edu2": 29, "edu3": 33, "edu4": 27, "Shape_Length": 25995.718816439214, "Shape_Area": 34845826.728334829, "total_2021": 122, "total_2022": 139 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.480587021293573, 29.517441143995768 ], [ -95.480530021123428, 29.517407143558295 ], [ -95.480343021204973, 29.517295143238329 ], [ -95.479912021095245, 29.517084143426146 ], [ -95.477670019789002, 29.515930143440798 ], [ -95.475794019608486, 29.514966142806461 ], [ -95.475613019589915, 29.514873142931183 ], [ -95.475174019531451, 29.514648142955483 ], [ -95.474888019168233, 29.514497143536243 ], [ -95.472273018875754, 29.513119142975221 ], [ -95.472077018451103, 29.512984143251167 ], [ -95.46875701768937, 29.511343143118911 ], [ -95.468243017915768, 29.511110142270347 ], [ -95.467471017108707, 29.510693142146966 ], [ -95.465633016830822, 29.509689142801346 ], [ -95.463061015877301, 29.508305142227929 ], [ -95.462681015590221, 29.5080841422429 ], [ -95.461563015704911, 29.507548141970638 ], [ -95.461343015810954, 29.507429142449698 ], [ -95.461155015749284, 29.507310142175051 ], [ -95.461089015696587, 29.50748214188064 ], [ -95.461058015797875, 29.50756014214382 ], [ -95.460876015118387, 29.508021142496101 ], [ -95.460252014933715, 29.509687142762612 ], [ -95.460085015274942, 29.510133142856986 ], [ -95.459360015177083, 29.512165142817739 ], [ -95.458891014864335, 29.513342143613961 ], [ -95.458669015086329, 29.513875143971575 ], [ -95.457481014882958, 29.516733144608338 ], [ -95.456226014561324, 29.519847145021227 ], [ -95.45524001486227, 29.522296145631412 ], [ -95.455213014791312, 29.522362145414345 ], [ -95.454138014182746, 29.525078145788751 ], [ -95.454193014487004, 29.525046146128503 ], [ -95.454248014820138, 29.525024145637396 ], [ -95.454266014667724, 29.525022146058213 ], [ -95.454317014404026, 29.52501514608608 ], [ -95.454555014928218, 29.52504514616453 ], [ -95.454671014255524, 29.525060146345243 ], [ -95.454723014406042, 29.52506114628434 ], [ -95.454984014284364, 29.525066145992863 ], [ -95.455541014795216, 29.525070145499626 ], [ -95.455655014795681, 29.525087146352302 ], [ -95.455887015121021, 29.525065145720184 ], [ -95.456349014895864, 29.525056145587467 ], [ -95.456469014762064, 29.525035145943409 ], [ -95.456728014795956, 29.525053145858458 ], [ -95.457035014861489, 29.525052145541462 ], [ -95.457149015736576, 29.525038145594991 ], [ -95.457390015465592, 29.525029145918101 ], [ -95.458332015849464, 29.525016145744264 ], [ -95.45865901548477, 29.525017145661096 ], [ -95.460726016170298, 29.524986145507764 ], [ -95.461038015942862, 29.524984145421481 ], [ -95.462072016563624, 29.524970145842023 ], [ -95.464438017501138, 29.524940145201295 ], [ -95.4651680178074, 29.524923145386179 ], [ -95.465452017387904, 29.524920145474795 ], [ -95.465492017152187, 29.52492014600902 ], [ -95.466381017912624, 29.52490114551491 ], [ -95.466493018035919, 29.524899145669828 ], [ -95.468627017879626, 29.524874145427294 ], [ -95.469624018245554, 29.524862145855863 ], [ -95.470012018820782, 29.524853145593262 ], [ -95.470784018321481, 29.524848144982347 ], [ -95.471331019283625, 29.524839145426565 ], [ -95.472779018888147, 29.524814145247838 ], [ -95.473106019396212, 29.524809144870694 ], [ -95.474919019443121, 29.524783145034942 ], [ -95.474981020014454, 29.524786144802267 ], [ -95.475173019506144, 29.524805145047505 ], [ -95.475193020312176, 29.525006145305063 ], [ -95.47519901953757, 29.52586414570618 ], [ -95.475206020274186, 29.525993145537363 ], [ -95.475219020186287, 29.526051145131074 ], [ -95.475241020457631, 29.526099145488562 ], [ -95.475277019854971, 29.526137145708212 ], [ -95.47532101991591, 29.526164145411439 ], [ -95.475356020344776, 29.526174145707639 ], [ -95.475377020211567, 29.526180145328944 ], [ -95.475443019797439, 29.526189145783867 ], [ -95.47561102057314, 29.526192145146585 ], [ -95.477240020012772, 29.526151145678583 ], [ -95.477806020320216, 29.526139145666175 ], [ -95.479480021337196, 29.526103145573828 ], [ -95.479671020737229, 29.526105145024516 ], [ -95.479819020736159, 29.526115145379041 ], [ -95.479797020788439, 29.524966145508213 ], [ -95.479781020743957, 29.524193144842449 ], [ -95.479780021116994, 29.524107145171286 ], [ -95.479757021455811, 29.523858144676616 ], [ -95.479733020885263, 29.523693144957111 ], [ -95.479699021069734, 29.523531145142044 ], [ -95.479656020827974, 29.523387144491377 ], [ -95.479629020881546, 29.523293144679229 ], [ -95.479480020429605, 29.522895144762352 ], [ -95.479137021221263, 29.521962144364231 ], [ -95.479051020240902, 29.521686144706475 ], [ -95.479001020285978, 29.521469144526563 ], [ -95.478955021087145, 29.521180144352073 ], [ -95.478944021047255, 29.521050144792842 ], [ -95.478951021199649, 29.520991144084668 ], [ -95.478944021013916, 29.520904144062538 ], [ -95.478896020261729, 29.520705144705882 ], [ -95.478922020972746, 29.520534144497976 ], [ -95.478932020544534, 29.520367144198978 ], [ -95.478995020690434, 29.520091144126642 ], [ -95.479057020987355, 29.519877144467223 ], [ -95.479167020198616, 29.519622144001765 ], [ -95.479352020207173, 29.519301144166267 ], [ -95.479561020341862, 29.518985144289008 ], [ -95.479775021154637, 29.51866214360648 ], [ -95.480389020409845, 29.517739143741327 ], [ -95.480587021293573, 29.517441143995768 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1567, "Tract": "48157670603", "Area_SqMi": 0.98278805348692688, "total_2009": 417, "total_2010": 315, "total_2011": 414, "total_2012": 433, "total_2013": 472, "total_2014": 451, "total_2015": 484, "total_2016": 371, "total_2017": 413, "total_2018": 343, "total_2019": 338, "total_2020": 381, "age1": 101, "age2": 375, "age3": 115, "earn1": 38, "earn2": 134, "earn3": 419, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 2, "naics_s05": 109, "naics_s06": 0, "naics_s07": 37, "naics_s08": 2, "naics_s09": 0, "naics_s10": 0, "naics_s11": 278, "naics_s12": 0, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 115, "naics_s17": 0, "naics_s18": 0, "naics_s19": 46, "naics_s20": 0, "race1": 385, "race2": 166, "race3": 8, "race4": 28, "race5": 0, "race6": 4, "ethnicity1": 389, "ethnicity2": 202, "edu1": 107, "edu2": 116, "edu3": 153, "edu4": 114, "Shape_Length": 21377.675387176914, "Shape_Area": 27398448.872651238, "total_2021": 358, "total_2022": 591 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.526420036058042, 29.591153156838185 ], [ -95.526347035636107, 29.590581157344456 ], [ -95.526336036152657, 29.590345156907457 ], [ -95.526313036273137, 29.589391157110686 ], [ -95.526289035730386, 29.588433156653185 ], [ -95.526270035336509, 29.586138155950053 ], [ -95.526197035303568, 29.583674155588611 ], [ -95.526181035974489, 29.583563155755062 ], [ -95.526134034976351, 29.583244155450252 ], [ -95.525870035191417, 29.582376155785052 ], [ -95.525461035361587, 29.581742155041578 ], [ -95.525023034951275, 29.581255154915766 ], [ -95.524627034687427, 29.580904155002287 ], [ -95.524032035127377, 29.580535154677118 ], [ -95.523431034187837, 29.580261155215304 ], [ -95.523193034416224, 29.580190155348753 ], [ -95.522933034327124, 29.580114154634419 ], [ -95.52270603487635, 29.58007215473183 ], [ -95.522348034882086, 29.580005154786559 ], [ -95.522177034834655, 29.579973154632984 ], [ -95.522010034553986, 29.579965154696428 ], [ -95.521688033868301, 29.579949154829528 ], [ -95.521548034297709, 29.57994215524544 ], [ -95.521354034035397, 29.579948155049166 ], [ -95.521296034288824, 29.579950155303443 ], [ -95.521273034344091, 29.579951154853575 ], [ -95.521158034554077, 29.579957155412092 ], [ -95.520285033762647, 29.579982154883556 ], [ -95.520221034005871, 29.579983155484438 ], [ -95.520101033729588, 29.579985155288579 ], [ -95.519518033303711, 29.579994155318207 ], [ -95.518380033155026, 29.580005155150829 ], [ -95.518210033093936, 29.580008155398726 ], [ -95.51453603195165, 29.580073155128463 ], [ -95.51318003184933, 29.580092155035221 ], [ -95.513106032314738, 29.580093155137945 ], [ -95.512340032303456, 29.580110155805457 ], [ -95.511790032066685, 29.580119155814913 ], [ -95.509194030508439, 29.580204155215785 ], [ -95.508881030632253, 29.580230155054583 ], [ -95.506613030077034, 29.580318155193794 ], [ -95.506057030405955, 29.580300155594372 ], [ -95.506149030261213, 29.584948156114788 ], [ -95.506164030107428, 29.585914156859886 ], [ -95.506180030263081, 29.586763157217423 ], [ -95.506332030813027, 29.589309157185557 ], [ -95.506257030372439, 29.591479157948207 ], [ -95.508610031178748, 29.591500157765733 ], [ -95.508742031036832, 29.591501157512425 ], [ -95.508765031642852, 29.591501157518564 ], [ -95.509015031146603, 29.591509157767749 ], [ -95.509164031782333, 29.591513158031095 ], [ -95.509948031393677, 29.591496157313909 ], [ -95.510983032049168, 29.591467157949236 ], [ -95.512174032117798, 29.591455157862665 ], [ -95.512363032743423, 29.591448157640432 ], [ -95.512459032529591, 29.591546157733998 ], [ -95.512567032142684, 29.591656157479033 ], [ -95.514036033323748, 29.593108157643616 ], [ -95.515369033097755, 29.594533157928396 ], [ -95.515539033440206, 29.594791157900715 ], [ -95.517728034247668, 29.593131157405516 ], [ -95.519653034601532, 29.591724157160471 ], [ -95.519817034699386, 29.591633157858666 ], [ -95.519873034709008, 29.591603157583265 ], [ -95.520269034610962, 29.591526157362331 ], [ -95.52061503455073, 29.591535157220701 ], [ -95.520867034848521, 29.59154315755271 ], [ -95.52156503423916, 29.591532157561286 ], [ -95.522326034437626, 29.591543156910667 ], [ -95.522469035210136, 29.591540157670273 ], [ -95.523883035560331, 29.591518157402948 ], [ -95.524044034934391, 29.591516157658969 ], [ -95.524201035463605, 29.591379157143386 ], [ -95.524484035531984, 29.59121915701699 ], [ -95.524623035491558, 29.591170157139846 ], [ -95.525025035423397, 29.591148156755565 ], [ -95.525511035661154, 29.591151157334863 ], [ -95.525637036172697, 29.591152157009397 ], [ -95.525975036249349, 29.591154157114094 ], [ -95.526420036058042, 29.591153156838185 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1568, "Tract": "48157670604", "Area_SqMi": 0.7506020139715317, "total_2009": 125, "total_2010": 153, "total_2011": 183, "total_2012": 127, "total_2013": 133, "total_2014": 116, "total_2015": 114, "total_2016": 126, "total_2017": 134, "total_2018": 95, "total_2019": 117, "total_2020": 126, "age1": 63, "age2": 93, "age3": 43, "earn1": 88, "earn2": 70, "earn3": 41, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 1, "naics_s07": 45, "naics_s08": 7, "naics_s09": 0, "naics_s10": 5, "naics_s11": 0, "naics_s12": 1, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 50, "naics_s17": 0, "naics_s18": 68, "naics_s19": 0, "naics_s20": 5, "race1": 114, "race2": 66, "race3": 4, "race4": 14, "race5": 0, "race6": 1, "ethnicity1": 146, "ethnicity2": 53, "edu1": 34, "edu2": 41, "edu3": 33, "edu4": 28, "Shape_Length": 21354.278662276916, "Shape_Area": 20925499.48134023, "total_2021": 169, "total_2022": 199 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.526744036163294, 29.596005158327952 ], [ -95.526648035878722, 29.593117157935971 ], [ -95.526497036070907, 29.591803157633201 ], [ -95.526442036298491, 29.591321156889503 ], [ -95.526420036058042, 29.591153156838185 ], [ -95.525975036249349, 29.591154157114094 ], [ -95.525637036172697, 29.591152157009397 ], [ -95.525511035661154, 29.591151157334863 ], [ -95.525025035423397, 29.591148156755565 ], [ -95.524623035491558, 29.591170157139846 ], [ -95.524484035531984, 29.59121915701699 ], [ -95.524201035463605, 29.591379157143386 ], [ -95.524044034934391, 29.591516157658969 ], [ -95.523883035560331, 29.591518157402948 ], [ -95.522469035210136, 29.591540157670273 ], [ -95.522326034437626, 29.591543156910667 ], [ -95.52156503423916, 29.591532157561286 ], [ -95.520867034848521, 29.59154315755271 ], [ -95.52061503455073, 29.591535157220701 ], [ -95.520269034610962, 29.591526157362331 ], [ -95.519873034709008, 29.591603157583265 ], [ -95.519817034699386, 29.591633157858666 ], [ -95.519653034601532, 29.591724157160471 ], [ -95.517728034247668, 29.593131157405516 ], [ -95.515539033440206, 29.594791157900715 ], [ -95.515369033097755, 29.594533157928396 ], [ -95.514036033323748, 29.593108157643616 ], [ -95.512567032142684, 29.591656157479033 ], [ -95.512459032529591, 29.591546157733998 ], [ -95.512363032743423, 29.591448157640432 ], [ -95.512174032117798, 29.591455157862665 ], [ -95.510983032049168, 29.591467157949236 ], [ -95.509948031393677, 29.591496157313909 ], [ -95.509164031782333, 29.591513158031095 ], [ -95.509015031146603, 29.591509157767749 ], [ -95.508765031642852, 29.591501157518564 ], [ -95.508742031036832, 29.591501157512425 ], [ -95.508610031178748, 29.591500157765733 ], [ -95.506257030372439, 29.591479157948207 ], [ -95.506047031260664, 29.592489157926625 ], [ -95.505781030989709, 29.593537158651788 ], [ -95.505448031080405, 29.594586159000873 ], [ -95.505031030890038, 29.595618159202363 ], [ -95.504671030934887, 29.596265159098856 ], [ -95.504399030755224, 29.596852158642935 ], [ -95.503919030449964, 29.5977001594181 ], [ -95.503071030297633, 29.599095159197226 ], [ -95.50242303065491, 29.600136159694468 ], [ -95.502758029924024, 29.600287159574254 ], [ -95.503616030615703, 29.600673159632045 ], [ -95.50424503100723, 29.600948159937676 ], [ -95.504457030437663, 29.601021159545343 ], [ -95.504619030465136, 29.601076160279309 ], [ -95.505201031262459, 29.601221160082105 ], [ -95.505363030567437, 29.601244160174225 ], [ -95.506255031058288, 29.601374159553025 ], [ -95.506285030817082, 29.601374159465752 ], [ -95.507405031123056, 29.60137815979758 ], [ -95.507579031725399, 29.601365159655206 ], [ -95.508216032044061, 29.601370159599714 ], [ -95.508526031670996, 29.601363159392555 ], [ -95.508916032035728, 29.601354159706066 ], [ -95.509143032168595, 29.601349159820785 ], [ -95.50938703183563, 29.601344159880579 ], [ -95.510562032419628, 29.601330159598117 ], [ -95.510834032235692, 29.601401160091662 ], [ -95.511439032079195, 29.601476159756938 ], [ -95.511505032246106, 29.601485159884692 ], [ -95.512111033082007, 29.601616159846671 ], [ -95.512479032863993, 29.60171615938054 ], [ -95.513114033428863, 29.601888159817332 ], [ -95.513983033672915, 29.60210315937648 ], [ -95.514419033040312, 29.602183160139329 ], [ -95.514483033635855, 29.602211160221909 ], [ -95.515696033655743, 29.602189160069621 ], [ -95.516042033217431, 29.602140159881234 ], [ -95.516847034069784, 29.60198115929995 ], [ -95.517979033905249, 29.601568159203588 ], [ -95.518459034226098, 29.601354159168046 ], [ -95.518628034736508, 29.601268159313662 ], [ -95.519047034705721, 29.601020159541491 ], [ -95.519614034362547, 29.600541158876549 ], [ -95.520190035123747, 29.599907159064415 ], [ -95.520212034724864, 29.599875159409475 ], [ -95.520785035091677, 29.599012158800136 ], [ -95.521386035244134, 29.598179158318164 ], [ -95.521610034591603, 29.597926158748241 ], [ -95.521983035443924, 29.59759115819724 ], [ -95.522347035278742, 29.597314158305906 ], [ -95.52294303535524, 29.59693315864093 ], [ -95.522964035669332, 29.596919158863148 ], [ -95.523340035124193, 29.596727158377515 ], [ -95.523645035851288, 29.596586158624962 ], [ -95.524169035986617, 29.596374158638877 ], [ -95.524652035694913, 29.596230158265897 ], [ -95.524925036195526, 29.596183158640731 ], [ -95.525627036245595, 29.59606915862792 ], [ -95.526098036225392, 29.596026157796796 ], [ -95.526744036163294, 29.596005158327952 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1569, "Tract": "48157673103", "Area_SqMi": 2.8845770122075338, "total_2009": 1541, "total_2010": 1326, "total_2011": 1198, "total_2012": 1676, "total_2013": 1816, "total_2014": 1776, "total_2015": 1888, "total_2016": 1882, "total_2017": 2168, "total_2018": 2412, "total_2019": 4004, "total_2020": 1325, "age1": 435, "age2": 759, "age3": 350, "earn1": 345, "earn2": 397, "earn3": 802, "naics_s01": 11, "naics_s02": 2, "naics_s03": 117, "naics_s04": 217, "naics_s05": 5, "naics_s06": 43, "naics_s07": 90, "naics_s08": 55, "naics_s09": 0, "naics_s10": 48, "naics_s11": 8, "naics_s12": 62, "naics_s13": 0, "naics_s14": 114, "naics_s15": 84, "naics_s16": 85, "naics_s17": 239, "naics_s18": 306, "naics_s19": 58, "naics_s20": 0, "race1": 1224, "race2": 171, "race3": 14, "race4": 102, "race5": 4, "race6": 29, "ethnicity1": 1057, "ethnicity2": 487, "edu1": 227, "edu2": 282, "edu3": 342, "edu4": 258, "Shape_Length": 43355.072979814417, "Shape_Area": 80417070.097448513, "total_2021": 1351, "total_2022": 1544 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.822519119648589, 29.76536218238487 ], [ -95.822636119187706, 29.76525118289447 ], [ -95.822509118918276, 29.765183182627137 ], [ -95.82233311949868, 29.764908182622435 ], [ -95.822327118834835, 29.764842182971648 ], [ -95.822440119282064, 29.764699182289764 ], [ -95.8224971188925, 29.764556182278028 ], [ -95.822541119392383, 29.764392182751873 ], [ -95.822534119293934, 29.764144182689144 ], [ -95.822522118781421, 29.764040182734565 ], [ -95.822402119198429, 29.763820182339384 ], [ -95.822081118492221, 29.762995182280232 ], [ -95.821797119187195, 29.762616181796389 ], [ -95.821084118177794, 29.761924182419129 ], [ -95.820625118996702, 29.761478182121351 ], [ -95.820291118533262, 29.761110181785767 ], [ -95.820065118182683, 29.760802181735471 ], [ -95.819957118644226, 29.760561181907676 ], [ -95.819838117848434, 29.760346181928618 ], [ -95.819668118105326, 29.759961181805732 ], [ -95.819642118144671, 29.759775181401931 ], [ -95.819573117729618, 29.759555181580883 ], [ -95.819479118121123, 29.759324181779608 ], [ -95.819441118435876, 29.759137181650569 ], [ -95.819000117651584, 29.757939181597141 ], [ -95.818754117408517, 29.757549181541062 ], [ -95.818420117542161, 29.757169181481352 ], [ -95.817998117452717, 29.756828181096306 ], [ -95.817626117165076, 29.756587180652883 ], [ -95.817500117738206, 29.756493181517353 ], [ -95.817292117070679, 29.756290181164019 ], [ -95.817103117090753, 29.75613618086059 ], [ -95.816878117453044, 29.756069180989797 ], [ -95.81668111777671, 29.756010181072043 ], [ -95.816524117285084, 29.755933180841229 ], [ -95.816442117500188, 29.755905181014754 ], [ -95.816366116770908, 29.755850180762476 ], [ -95.816316117299138, 29.755779181065272 ], [ -95.816284117376767, 29.755619180832674 ], [ -95.816278117013098, 29.755482181085387 ], [ -95.816360117108132, 29.755399180596449 ], [ -95.816593117117662, 29.755224181063987 ], [ -95.816751117468357, 29.754987181081329 ], [ -95.816952117017266, 29.754635180919138 ], [ -95.817116117313915, 29.754322180641552 ], [ -95.817305117400338, 29.754097180396563 ], [ -95.817431117809818, 29.753811180927645 ], [ -95.817532117030922, 29.753613180868779 ], [ -95.817525117337397, 29.753410180616193 ], [ -95.817437117007159, 29.753261180503451 ], [ -95.817305117491884, 29.753091180378735 ], [ -95.817166117693048, 29.753003179985051 ], [ -95.816455117036071, 29.752811180463009 ], [ -95.816253116718372, 29.752745180622664 ], [ -95.816141116951528, 29.752752180527796 ], [ -95.816083116509603, 29.752756180767996 ], [ -95.815831116544416, 29.752800180474669 ], [ -95.815686116772085, 29.752805180048181 ], [ -95.815472117168994, 29.752734180650776 ], [ -95.815327116585792, 29.752547180084534 ], [ -95.815157117042645, 29.752288180264472 ], [ -95.814905116673103, 29.751876179863626 ], [ -95.814719116475018, 29.751679180072273 ], [ -95.814672116815331, 29.751629180578711 ], [ -95.814571116171294, 29.751502179922188 ], [ -95.814502116269864, 29.75138118026965 ], [ -95.81447011608158, 29.75125517996948 ], [ -95.814470116410462, 29.751178180030077 ], [ -95.814458116210062, 29.751112180509509 ], [ -95.814382116218837, 29.750986180193447 ], [ -95.814350116928395, 29.750953179660041 ], [ -95.814247116594075, 29.750918179657599 ], [ -95.814044116714442, 29.750906180342128 ], [ -95.813773116261743, 29.750997180510414 ], [ -95.813510116393275, 29.75116818006623 ], [ -95.813293115698812, 29.751194180580839 ], [ -95.812967115714741, 29.751194180102924 ], [ -95.812606115878935, 29.751035180042297 ], [ -95.812497116429199, 29.750953179997342 ], [ -95.812403115803448, 29.750858180451061 ], [ -95.812350115576834, 29.750744179663126 ], [ -95.812320116102441, 29.750625179750475 ], [ -95.812326115855342, 29.750501180383601 ], [ -95.812368115708352, 29.750387179577213 ], [ -95.812649116060953, 29.749793179885508 ], [ -95.812754115621587, 29.749534179696674 ], [ -95.812814115756069, 29.749451179653285 ], [ -95.812859115747585, 29.749389179386931 ], [ -95.812880115778157, 29.749299180052933 ], [ -95.812849116250689, 29.74909917968569 ], [ -95.812797116033806, 29.748958179859319 ], [ -95.812615115995314, 29.748754179523537 ], [ -95.812444116319426, 29.748649179943801 ], [ -95.812184116157638, 29.748562180082473 ], [ -95.812038115872298, 29.748394179653253 ], [ -95.812002115607484, 29.748331179354452 ], [ -95.81190911527581, 29.748244179135771 ], [ -95.811758115940791, 29.748199179910682 ], [ -95.811628116097879, 29.748198179581287 ], [ -95.811440115104361, 29.748280179253225 ], [ -95.811101115844579, 29.748651179328263 ], [ -95.810971115098539, 29.748706180123442 ], [ -95.810658115225607, 29.7487411798535 ], [ -95.810487115202918, 29.748655179531333 ], [ -95.810471115509074, 29.748596179439151 ], [ -95.810524115655724, 29.74842817935102 ], [ -95.81073311562794, 29.747988179840483 ], [ -95.810744115885328, 29.747625179648452 ], [ -95.810796114912591, 29.747466179500869 ], [ -95.810891115724701, 29.747054179783525 ], [ -95.810907115400028, 29.74696317894 ], [ -95.810736115380266, 29.746749178964144 ], [ -95.810616114795053, 29.746681179516244 ], [ -95.810502115376792, 29.746631179271208 ], [ -95.81019511568131, 29.746612179011031 ], [ -95.809976114683963, 29.746644178996561 ], [ -95.809528115546911, 29.746902179431981 ], [ -95.809429115521766, 29.746879179326136 ], [ -95.809268115320066, 29.74679217980685 ], [ -95.809205114993517, 29.746724178987812 ], [ -95.809185114734802, 29.746656179551959 ], [ -95.809227114833277, 29.746515179155605 ], [ -95.809602114526541, 29.746067179638938 ], [ -95.809759114971897, 29.745895179245366 ], [ -95.80983211479618, 29.745854178829156 ], [ -95.810061114736229, 29.745800178719232 ], [ -95.810436115452603, 29.745851179591956 ], [ -95.810691115116484, 29.745869178967556 ], [ -95.810852115097148, 29.745783179236188 ], [ -95.811327115621552, 29.745171178934473 ], [ -95.811599115638046, 29.74471817923737 ], [ -95.811625115331623, 29.744568178700618 ], [ -95.811569115951386, 29.744373178706056 ], [ -95.811517115837674, 29.744269179005663 ], [ -95.811449115070332, 29.744214179065946 ], [ -95.811179115343421, 29.744214178714778 ], [ -95.810642115109317, 29.744408178757318 ], [ -95.810413115566675, 29.744444178926241 ], [ -95.81021011460615, 29.744462178521459 ], [ -95.810012115114873, 29.744402178432267 ], [ -95.809669115419652, 29.744320178526902 ], [ -95.809357114722104, 29.74429717873485 ], [ -95.809294114478476, 29.744324178953331 ], [ -95.80912211455977, 29.744428179294964 ], [ -95.808861114932597, 29.744886179257552 ], [ -95.808658115169308, 29.744944179430096 ], [ -95.808392114369113, 29.74496717873485 ], [ -95.808163114867952, 29.744921179175517 ], [ -95.808049114196379, 29.744726178566339 ], [ -95.807894114398721, 29.744308179213181 ], [ -95.807718114216016, 29.743949178600307 ], [ -95.807500114573315, 29.743713178622329 ], [ -95.807271114666307, 29.743476178718662 ], [ -95.807074114436702, 29.743331178395906 ], [ -95.807013114429225, 29.743280178886511 ], [ -95.806963114150477, 29.743236178291479 ], [ -95.806898114141774, 29.743296178322026 ], [ -95.806810113805838, 29.743376179022619 ], [ -95.806595113926846, 29.743573178628317 ], [ -95.806365114271486, 29.743781179234514 ], [ -95.806162114441349, 29.743974178785184 ], [ -95.806039114058152, 29.744073178696564 ], [ -95.805622114098369, 29.744450179178031 ], [ -95.805534114396565, 29.74452817897771 ], [ -95.80541511427748, 29.744642178786048 ], [ -95.805193113699701, 29.744844179217857 ], [ -95.804866113464939, 29.745126179535259 ], [ -95.804668114239192, 29.745311179299325 ], [ -95.804224113372769, 29.745719179407978 ], [ -95.803702113022396, 29.746188179746355 ], [ -95.803334113191141, 29.746517179096696 ], [ -95.803196113314584, 29.746641179986074 ], [ -95.803088113046414, 29.746738179436669 ], [ -95.802521113587588, 29.747248179533518 ], [ -95.802488112952034, 29.747278179643942 ], [ -95.801845113308033, 29.747850179618279 ], [ -95.801219112910786, 29.748418179674118 ], [ -95.800602112941661, 29.74895918014418 ], [ -95.800581113295053, 29.748977180542457 ], [ -95.800522112350478, 29.749030180559238 ], [ -95.800436112646793, 29.749107180580889 ], [ -95.800289112968727, 29.749238180615713 ], [ -95.799810112612008, 29.74966418000518 ], [ -95.799162112862405, 29.750241180051955 ], [ -95.799050112270493, 29.750347180506424 ], [ -95.798981112821778, 29.750427180636013 ], [ -95.798952112655016, 29.750476180746666 ], [ -95.798933112843969, 29.750521180378694 ], [ -95.798927112289022, 29.750549180129394 ], [ -95.798927112639575, 29.750584180082935 ], [ -95.798927112628903, 29.750611180530228 ], [ -95.79894311254651, 29.750642180725045 ], [ -95.798958112279962, 29.750670180340151 ], [ -95.79906711231115, 29.750782180544523 ], [ -95.799368112420126, 29.751048180616628 ], [ -95.799962112469387, 29.751552181070466 ], [ -95.801197112996363, 29.752601181006764 ], [ -95.801306113257198, 29.752694181007037 ], [ -95.801485112856554, 29.752850180649855 ], [ -95.80181011301643, 29.75313318078609 ], [ -95.801739113329873, 29.753197180681141 ], [ -95.79959311282613, 29.755123180960798 ], [ -95.799493113043738, 29.755209181298856 ], [ -95.79902511264774, 29.755618181692782 ], [ -95.798438113105277, 29.756146181738018 ], [ -95.798110112629232, 29.756438181395474 ], [ -95.797836112912762, 29.756682182230527 ], [ -95.797571112061405, 29.7569181814785 ], [ -95.796674112260604, 29.757712181759839 ], [ -95.796597111853956, 29.757781182013169 ], [ -95.796536112727296, 29.757836182286848 ], [ -95.796163112108587, 29.758170182126399 ], [ -95.795917111641032, 29.758393182355487 ], [ -95.795892111742489, 29.758415182255806 ], [ -95.795873111679754, 29.758431181813805 ], [ -95.795855112542171, 29.758448181884173 ], [ -95.79581511168665, 29.758483182031515 ], [ -95.795457111905776, 29.758800182210237 ], [ -95.795112112349287, 29.759107182311517 ], [ -95.79485611206502, 29.759334182663576 ], [ -95.792733111721802, 29.761227183151188 ], [ -95.791242110727055, 29.762551182987199 ], [ -95.790597111073964, 29.763127183764183 ], [ -95.789705110783316, 29.763915183159042 ], [ -95.78960811037021, 29.764001183182661 ], [ -95.789543110701231, 29.764058183898012 ], [ -95.78759611058031, 29.765805184220433 ], [ -95.786983110251185, 29.766349184431061 ], [ -95.786746109873619, 29.766559183951884 ], [ -95.791918111824003, 29.769455184799636 ], [ -95.793141111453025, 29.770117184658435 ], [ -95.794822112292877, 29.77106618475251 ], [ -95.79504511276734, 29.771191184755395 ], [ -95.795369112482959, 29.771375185045866 ], [ -95.795935113042148, 29.771688185243278 ], [ -95.796350112777574, 29.771922184735029 ], [ -95.797344112805547, 29.772482184871723 ], [ -95.798465112961011, 29.773116185370231 ], [ -95.799171113199591, 29.773514185153779 ], [ -95.799291113501994, 29.773581185592452 ], [ -95.801690113892235, 29.774936185296507 ], [ -95.801768114181044, 29.774980185615203 ], [ -95.80421311524573, 29.776360185300199 ], [ -95.806010115226542, 29.77737018579878 ], [ -95.810634116766579, 29.779983185754478 ], [ -95.811958117662613, 29.780730186034774 ], [ -95.81220011749437, 29.78086818616022 ], [ -95.812388117379811, 29.780973186484207 ], [ -95.812402116886332, 29.780960185880815 ], [ -95.812655117298718, 29.780719185872783 ], [ -95.813956117627157, 29.779541186289084 ], [ -95.814407117802759, 29.779228186250513 ], [ -95.815012117683764, 29.77883018571724 ], [ -95.815238117484981, 29.778711185726642 ], [ -95.815675118022668, 29.778482186034239 ], [ -95.816421118564435, 29.778167185630391 ], [ -95.817088118576734, 29.777950185235337 ], [ -95.817583118038684, 29.777824185203865 ], [ -95.818036118695346, 29.777747185473316 ], [ -95.818627118586676, 29.777635185005149 ], [ -95.819687119241763, 29.77756418538867 ], [ -95.819628119393286, 29.777368185113222 ], [ -95.819573119329462, 29.77718818554289 ], [ -95.819135119099599, 29.775737185080853 ], [ -95.819008118628744, 29.775318184747405 ], [ -95.81881811841572, 29.774573184494795 ], [ -95.81841611874944, 29.773286184472042 ], [ -95.818385118828232, 29.773186184748589 ], [ -95.818038118501406, 29.772071183857626 ], [ -95.817382117872071, 29.769969183693735 ], [ -95.817362118567218, 29.769904183594136 ], [ -95.817086117775915, 29.769020183637018 ], [ -95.817873118214905, 29.768828183620219 ], [ -95.818411118492492, 29.768684183476047 ], [ -95.818910118796737, 29.768464183863781 ], [ -95.819337118759975, 29.768179183176674 ], [ -95.819872118632659, 29.767700183729005 ], [ -95.82049011855203, 29.767148183585757 ], [ -95.820965118750067, 29.766726182918916 ], [ -95.821305119065386, 29.766421182897073 ], [ -95.821474119398658, 29.766283182908925 ], [ -95.821620119020707, 29.766156182801449 ], [ -95.82170811868906, 29.766077182646974 ], [ -95.821942119314812, 29.765869182840458 ], [ -95.822078118718423, 29.765739182348611 ], [ -95.822519119648589, 29.76536218238487 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1570, "Tract": "48157675401", "Area_SqMi": 26.377290931979029, "total_2009": 413, "total_2010": 483, "total_2011": 554, "total_2012": 513, "total_2013": 622, "total_2014": 682, "total_2015": 917, "total_2016": 895, "total_2017": 874, "total_2018": 853, "total_2019": 838, "total_2020": 774, "age1": 374, "age2": 589, "age3": 223, "earn1": 231, "earn2": 541, "earn3": 414, "naics_s01": 0, "naics_s02": 15, "naics_s03": 3, "naics_s04": 283, "naics_s05": 65, "naics_s06": 14, "naics_s07": 506, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 25, "naics_s13": 0, "naics_s14": 15, "naics_s15": 0, "naics_s16": 0, "naics_s17": 4, "naics_s18": 186, "naics_s19": 67, "naics_s20": 3, "race1": 861, "race2": 246, "race3": 9, "race4": 48, "race5": 1, "race6": 21, "ethnicity1": 713, "ethnicity2": 473, "edu1": 202, "edu2": 249, "edu3": 247, "edu4": 114, "Shape_Length": 125457.8042096838, "Shape_Area": 735353725.99895763, "total_2021": 1186, "total_2022": 1186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.937410136105427, 29.484429121857016 ], [ -95.937318135823475, 29.484104121661627 ], [ -95.937230136397844, 29.483747121099324 ], [ -95.93715213620996, 29.48342312124085 ], [ -95.936943135469775, 29.482612121600209 ], [ -95.936794135796006, 29.482029120962409 ], [ -95.936557135596274, 29.481567120954477 ], [ -95.936334135420495, 29.48123012131715 ], [ -95.936143135297456, 29.480961121296623 ], [ -95.935934134962821, 29.480725120737713 ], [ -95.935385135549808, 29.480263120866944 ], [ -95.934036134982151, 29.47915412015886 ], [ -95.930241133645723, 29.476000120513682 ], [ -95.922150131430641, 29.46934811907466 ], [ -95.920162131010002, 29.467660118288844 ], [ -95.919785130978269, 29.46736011869152 ], [ -95.919589131023244, 29.467197118612663 ], [ -95.918028130379952, 29.46589711799701 ], [ -95.916349129681848, 29.464500117936023 ], [ -95.916222129512619, 29.46439511804893 ], [ -95.91619913000217, 29.464376118040612 ], [ -95.916177129703655, 29.464358118615294 ], [ -95.916113129890462, 29.464304117762651 ], [ -95.916050129549944, 29.464250118284259 ], [ -95.913930129397201, 29.462460117922419 ], [ -95.912268128812343, 29.461085117486714 ], [ -95.910136128309688, 29.459321117261979 ], [ -95.909646127951092, 29.459771117264967 ], [ -95.908571127475227, 29.460777117978243 ], [ -95.90835212729516, 29.460975117952295 ], [ -95.907722127908414, 29.461565117559083 ], [ -95.907598127741693, 29.461676118185288 ], [ -95.906949127698766, 29.462281118155602 ], [ -95.906591127130284, 29.462616117909675 ], [ -95.906024127344196, 29.463131118190354 ], [ -95.90450212670595, 29.464558118221643 ], [ -95.903760127100995, 29.465247119011053 ], [ -95.902861126407615, 29.466067119053328 ], [ -95.902396126720532, 29.466504119297262 ], [ -95.901901126595192, 29.466974119526949 ], [ -95.900769125902755, 29.468006119560442 ], [ -95.900266126226711, 29.468468119904969 ], [ -95.898706125833854, 29.469924119652628 ], [ -95.898337125788274, 29.470264120319943 ], [ -95.898293125073607, 29.47030411988306 ], [ -95.898172125679096, 29.470416120434312 ], [ -95.898151125173626, 29.470435120292798 ], [ -95.897998125829162, 29.47057711985579 ], [ -95.8978951249792, 29.470672120325013 ], [ -95.897832125416656, 29.470736120460099 ], [ -95.897782125127634, 29.470776120475563 ], [ -95.897734125508904, 29.47082212054444 ], [ -95.897668124936828, 29.470884120244829 ], [ -95.896575125175602, 29.471886120379601 ], [ -95.896089125149317, 29.472339120436331 ], [ -95.894831124962678, 29.473498120933296 ], [ -95.894255124089455, 29.474045120425732 ], [ -95.89291512431555, 29.47528712156009 ], [ -95.89242612425889, 29.475730121104082 ], [ -95.891519123724564, 29.476582121636433 ], [ -95.891154123395566, 29.476919121899037 ], [ -95.889335123637267, 29.478607122398568 ], [ -95.88847812382906, 29.479415121924358 ], [ -95.887877123553039, 29.479972122061874 ], [ -95.887771122821022, 29.480066122662308 ], [ -95.887705122950109, 29.48012512276323 ], [ -95.887461123077458, 29.480345122346346 ], [ -95.887443123490186, 29.480362122594439 ], [ -95.88741712294491, 29.480385122074772 ], [ -95.887321122588219, 29.480471122544181 ], [ -95.887229122718921, 29.480389122821052 ], [ -95.885163122710097, 29.478667122393258 ], [ -95.884862122535964, 29.47842012203769 ], [ -95.884102122059062, 29.477776121565935 ], [ -95.884081121891214, 29.477758122107893 ], [ -95.88330712143599, 29.477116121799195 ], [ -95.881247121014766, 29.475405121838492 ], [ -95.879981121193453, 29.474346121376087 ], [ -95.879191121136799, 29.473695121010802 ], [ -95.877416119733965, 29.472214120862841 ], [ -95.877020119910881, 29.471877121213556 ], [ -95.876233119468068, 29.471228121023746 ], [ -95.875343119150457, 29.470481121188751 ], [ -95.875296119451818, 29.470441121165379 ], [ -95.874504119472192, 29.469787120864584 ], [ -95.873490119589093, 29.468946120672417 ], [ -95.873076118979967, 29.468593120798861 ], [ -95.872809118483374, 29.468376120158513 ], [ -95.872227119149144, 29.467892120508122 ], [ -95.869940118031096, 29.46598412021677 ], [ -95.869748118096325, 29.465826120345568 ], [ -95.867322117442441, 29.463813119516384 ], [ -95.866351116553261, 29.462992119385571 ], [ -95.865123116899255, 29.461963119032589 ], [ -95.863232116376807, 29.460399118999529 ], [ -95.86281411588142, 29.460046119385762 ], [ -95.862373115998622, 29.459681118577645 ], [ -95.862213116022076, 29.459548119271258 ], [ -95.861543115270891, 29.458989119212141 ], [ -95.860827115741102, 29.458393118581675 ], [ -95.860587115326325, 29.458194118876637 ], [ -95.860374115623472, 29.458013118752987 ], [ -95.859215115042019, 29.457040118895641 ], [ -95.858672114725408, 29.456591118243832 ], [ -95.858007114291468, 29.456051118608915 ], [ -95.85699111399569, 29.45520911804444 ], [ -95.85696111457554, 29.455183118098667 ], [ -95.856832114490203, 29.455070118513984 ], [ -95.855801114045221, 29.45420911802821 ], [ -95.854908113970495, 29.453464118065376 ], [ -95.854398113963995, 29.453040117491533 ], [ -95.853424113597114, 29.452229117966993 ], [ -95.852030112405885, 29.451065117410238 ], [ -95.851666112777664, 29.451392117917532 ], [ -95.85051411292595, 29.452441118166298 ], [ -95.849962112459309, 29.452954118375711 ], [ -95.848817112139429, 29.454005118130986 ], [ -95.848327111834791, 29.454458118196975 ], [ -95.847433112330918, 29.455285118540786 ], [ -95.845435111609802, 29.457123118667702 ], [ -95.844388111656741, 29.458098119327424 ], [ -95.842131111204893, 29.460177119613949 ], [ -95.839891110139774, 29.462232120674756 ], [ -95.839220110576136, 29.462856120452052 ], [ -95.838713109703377, 29.463327120432822 ], [ -95.838480109727854, 29.463538120633778 ], [ -95.837616109716109, 29.464339121129026 ], [ -95.836148109114134, 29.465696121169689 ], [ -95.834738109277438, 29.466986121235056 ], [ -95.833534109377922, 29.468104121533631 ], [ -95.833273108477556, 29.468338121623372 ], [ -95.8332231091278, 29.46838312209978 ], [ -95.832981108870428, 29.468611121815023 ], [ -95.832917108773515, 29.468672121513119 ], [ -95.832824109118945, 29.46875612226615 ], [ -95.832253108986635, 29.469275122122092 ], [ -95.831933108822, 29.469566121641904 ], [ -95.83155510841658, 29.469916122543161 ], [ -95.831500108772715, 29.469967121815824 ], [ -95.830709107873929, 29.470658122203155 ], [ -95.829180107419361, 29.472079123064127 ], [ -95.828970107976971, 29.472279122947853 ], [ -95.82844610780127, 29.47278012295768 ], [ -95.828398107283491, 29.47282612321062 ], [ -95.827849107234357, 29.473347122756461 ], [ -95.825528107457984, 29.475467123054599 ], [ -95.825323107061237, 29.475655123848096 ], [ -95.824429107397819, 29.47647912346379 ], [ -95.82376910664496, 29.477087123926886 ], [ -95.823204106586047, 29.47761412436618 ], [ -95.822635106791381, 29.478137124445237 ], [ -95.821896106250207, 29.478830124214245 ], [ -95.821397106451258, 29.479292124680367 ], [ -95.82129410599218, 29.47937412419817 ], [ -95.821195106292663, 29.479436124567634 ], [ -95.821063105942414, 29.479504124840407 ], [ -95.820986106556703, 29.479536124351807 ], [ -95.820304106429461, 29.478971124172354 ], [ -95.82000210581127, 29.478719123955887 ], [ -95.819858106294461, 29.478605124508103 ], [ -95.819500105607176, 29.478305124597096 ], [ -95.818377105606231, 29.477372123672147 ], [ -95.818151104989326, 29.477155124396432 ], [ -95.817653105102849, 29.476732124323153 ], [ -95.817240104668798, 29.476382124008172 ], [ -95.816273104574279, 29.47555912390753 ], [ -95.814194103902281, 29.473855123659508 ], [ -95.8130331036527, 29.476527124269765 ], [ -95.812997104104284, 29.476612124497329 ], [ -95.812962104085784, 29.476692124530221 ], [ -95.811611103339345, 29.47980412511783 ], [ -95.81049610370043, 29.482504125827266 ], [ -95.810089103384058, 29.48341912527259 ], [ -95.809860103423247, 29.483975126033179 ], [ -95.809785103750954, 29.484111126108001 ], [ -95.80963310298435, 29.484498126262046 ], [ -95.809532103555796, 29.484705126211416 ], [ -95.809480103794129, 29.484862126040291 ], [ -95.808637103589746, 29.486776126602919 ], [ -95.807985102916987, 29.488308127068624 ], [ -95.80784510337449, 29.488613126601255 ], [ -95.807793103479924, 29.48880512690382 ], [ -95.807514103054629, 29.489686126730597 ], [ -95.807385103672672, 29.490332127254526 ], [ -95.807308103181654, 29.490895126853275 ], [ -95.807288103282374, 29.491506127690148 ], [ -95.807307102948599, 29.492274127764681 ], [ -95.807313102800322, 29.492491127865193 ], [ -95.807328103193598, 29.494024127521367 ], [ -95.807340103107663, 29.494363128028517 ], [ -95.807344102993994, 29.494483128351348 ], [ -95.807410103259983, 29.496351128318597 ], [ -95.80751710353303, 29.499389128554888 ], [ -95.807587104098701, 29.502276129384814 ], [ -95.807609103513059, 29.503517129976213 ], [ -95.807624104089257, 29.504454130048803 ], [ -95.807688103531831, 29.506596130743244 ], [ -95.807698103766469, 29.506945130541823 ], [ -95.807772103702106, 29.509461131401853 ], [ -95.807777104464179, 29.509622130681628 ], [ -95.807799104512995, 29.510346131541034 ], [ -95.807805103742453, 29.510707131542322 ], [ -95.807824104228217, 29.511889131464674 ], [ -95.807816104747175, 29.512811131417198 ], [ -95.80781510470824, 29.513062132138057 ], [ -95.807851104509908, 29.515214131836832 ], [ -95.807887104946431, 29.517576132591813 ], [ -95.807876104450202, 29.518555132533109 ], [ -95.807895105033836, 29.519141132678406 ], [ -95.807901104624392, 29.519946132965764 ], [ -95.80796010457415, 29.522735133351333 ], [ -95.807993104575203, 29.524316133652771 ], [ -95.808001105017794, 29.524707133790681 ], [ -95.808004105208795, 29.524825134504756 ], [ -95.808032104539421, 29.525377133977951 ], [ -95.808075104994685, 29.526959134822384 ], [ -95.808091105044568, 29.52733613473854 ], [ -95.808131104688741, 29.528264134693462 ], [ -95.808139104734863, 29.528709134557047 ], [ -95.808160105304751, 29.529854135037024 ], [ -95.808103105607131, 29.530334135386809 ], [ -95.808095105456331, 29.530478135018974 ], [ -95.808120105085521, 29.531661135116625 ], [ -95.808144104788596, 29.531957135992876 ], [ -95.808137105156874, 29.532312135674715 ], [ -95.808325105150033, 29.532308135544106 ], [ -95.81032310602356, 29.532261135221077 ], [ -95.812647106565109, 29.532206135609858 ], [ -95.813484106067904, 29.53218613525161 ], [ -95.813863106308432, 29.532177135149837 ], [ -95.814919106532784, 29.532152135085898 ], [ -95.818421107970252, 29.532068135567947 ], [ -95.818861108070053, 29.532057134834787 ], [ -95.818972107702919, 29.532054135393114 ], [ -95.819257108094476, 29.532048134921776 ], [ -95.819326108201111, 29.532046135289828 ], [ -95.820308107808899, 29.532023134970697 ], [ -95.821279108394663, 29.532000134926339 ], [ -95.821668108917137, 29.531991134771168 ], [ -95.822395108988147, 29.532002134897862 ], [ -95.823228109447044, 29.532014135163173 ], [ -95.825083109358587, 29.532146134675124 ], [ -95.825838109969865, 29.532247135304388 ], [ -95.826149110050878, 29.532286135205652 ], [ -95.826333110026752, 29.532310134874418 ], [ -95.826400110103876, 29.532318134728801 ], [ -95.835343111837048, 29.53341413459373 ], [ -95.835932112086581, 29.533486135281052 ], [ -95.845718114443258, 29.534685134537483 ], [ -95.851046116590723, 29.535341135098594 ], [ -95.85181011615802, 29.535367135268775 ], [ -95.85250811694921, 29.535336134693832 ], [ -95.853378116711539, 29.535259135157023 ], [ -95.854980117275986, 29.53502913473331 ], [ -95.856378117612635, 29.534743134809716 ], [ -95.856685118139737, 29.534659134204276 ], [ -95.856895118004232, 29.534588134685549 ], [ -95.857051118042165, 29.534536134438756 ], [ -95.857393118351524, 29.534407134090788 ], [ -95.858329117763518, 29.534064134554615 ], [ -95.859580118391094, 29.533449133809636 ], [ -95.860758118689347, 29.532735133651165 ], [ -95.863475119191179, 29.53104813362555 ], [ -95.866546119711245, 29.529050133245221 ], [ -95.868294120357476, 29.527871132538472 ], [ -95.871267121267365, 29.525907132403443 ], [ -95.874238121531462, 29.523985131448555 ], [ -95.875264122346891, 29.523335131361502 ], [ -95.876229122087082, 29.522766131463392 ], [ -95.87775212255022, 29.521930130914296 ], [ -95.879607122767226, 29.520911130892372 ], [ -95.881459123040059, 29.519809130593313 ], [ -95.883622123614742, 29.51847913044185 ], [ -95.887998125215717, 29.515788129688875 ], [ -95.888083125011818, 29.515736129962146 ], [ -95.888925125196494, 29.515282129871128 ], [ -95.890062124976424, 29.514670129043388 ], [ -95.890888125227747, 29.514167129483653 ], [ -95.892142125995861, 29.513405129109788 ], [ -95.894384126496107, 29.511993128394746 ], [ -95.895252126826279, 29.511421128361313 ], [ -95.896120126725506, 29.510778128518314 ], [ -95.896744126404954, 29.510323127858793 ], [ -95.897635126730194, 29.509778128252346 ], [ -95.898762127293963, 29.509089128161069 ], [ -95.900349127320013, 29.50808212780489 ], [ -95.900861127507028, 29.507699127712783 ], [ -95.90180212821457, 29.506975127759436 ], [ -95.902982128638385, 29.505736126811986 ], [ -95.903251128237841, 29.505374126775287 ], [ -95.903637128223068, 29.504784126607706 ], [ -95.904206128835156, 29.503840126912937 ], [ -95.904592128932791, 29.5030681266621 ], [ -95.90508412903533, 29.502253126462854 ], [ -95.905198128310474, 29.502065126219339 ], [ -95.905296128285585, 29.501904126000465 ], [ -95.905536128166588, 29.501477125995439 ], [ -95.905785128222448, 29.501035125951343 ], [ -95.906104128409481, 29.500465125579993 ], [ -95.9070081290524, 29.49898612540996 ], [ -95.907788128930221, 29.497898125240777 ], [ -95.908581129646194, 29.497063125240441 ], [ -95.909862129263232, 29.495802124412677 ], [ -95.91073712942655, 29.495070124835895 ], [ -95.911661130372167, 29.494466124723896 ], [ -95.912204129834123, 29.494085124040726 ], [ -95.913003130620467, 29.493617124089365 ], [ -95.91393713065726, 29.493154124147978 ], [ -95.915221130376764, 29.492638123897493 ], [ -95.915327130507649, 29.492597123665327 ], [ -95.915552130524276, 29.49249512432608 ], [ -95.918178131234114, 29.491572123745335 ], [ -95.919109132062843, 29.491245123690586 ], [ -95.919853131502592, 29.49096912357718 ], [ -95.920525131712196, 29.490720123458726 ], [ -95.920739131549439, 29.490641123072173 ], [ -95.927914133889161, 29.487938122374899 ], [ -95.928556133809593, 29.48771112232464 ], [ -95.929929134365381, 29.48722612252477 ], [ -95.937262135613651, 29.484484121959188 ], [ -95.937410136105427, 29.484429121857016 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1571, "Tract": "48157671102", "Area_SqMi": 2.1182077487026234, "total_2009": 727, "total_2010": 588, "total_2011": 599, "total_2012": 561, "total_2013": 627, "total_2014": 763, "total_2015": 816, "total_2016": 652, "total_2017": 620, "total_2018": 591, "total_2019": 650, "total_2020": 580, "age1": 111, "age2": 318, "age3": 175, "earn1": 116, "earn2": 163, "earn3": 325, "naics_s01": 5, "naics_s02": 0, "naics_s03": 53, "naics_s04": 123, "naics_s05": 156, "naics_s06": 4, "naics_s07": 75, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 22, "naics_s13": 2, "naics_s14": 7, "naics_s15": 0, "naics_s16": 29, "naics_s17": 0, "naics_s18": 76, "naics_s19": 47, "naics_s20": 0, "race1": 428, "race2": 83, "race3": 8, "race4": 74, "race5": 1, "race6": 10, "ethnicity1": 405, "ethnicity2": 199, "edu1": 93, "edu2": 137, "edu3": 138, "edu4": 125, "Shape_Length": 33752.786457413175, "Shape_Area": 59052006.685034968, "total_2021": 520, "total_2022": 604 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.564409045935378, 29.60543215879774 ], [ -95.564407046544133, 29.605379158497655 ], [ -95.564397045758838, 29.60509915833779 ], [ -95.564383046141444, 29.604706158334675 ], [ -95.564375045785425, 29.602804158509954 ], [ -95.564348045756077, 29.602645157969057 ], [ -95.564344046365591, 29.602497158422917 ], [ -95.564338046573837, 29.602132158235534 ], [ -95.564332045866593, 29.601830158090621 ], [ -95.564329046127057, 29.601650157886297 ], [ -95.56432704562377, 29.601545158096467 ], [ -95.56431404635137, 29.600799157509559 ], [ -95.564313045643232, 29.600750158100258 ], [ -95.564304045773071, 29.600152157909516 ], [ -95.564299045974593, 29.599798157714439 ], [ -95.564291045729135, 29.599307157097886 ], [ -95.564275045646767, 29.598330157331809 ], [ -95.564269045507828, 29.597952157581322 ], [ -95.564247045662952, 29.596592156902101 ], [ -95.564242045287955, 29.596218157077505 ], [ -95.56426804536892, 29.593462156697331 ], [ -95.564262045267228, 29.593180156171687 ], [ -95.564153045425897, 29.590738155756796 ], [ -95.564151045638212, 29.590654156097514 ], [ -95.564142045717261, 29.589874155577736 ], [ -95.564119045556538, 29.58809315544266 ], [ -95.564119045419091, 29.58736715531904 ], [ -95.564117045042138, 29.587162154790896 ], [ -95.564122045296415, 29.586785155105858 ], [ -95.564114045487145, 29.586158154450583 ], [ -95.564068045584605, 29.582637153775135 ], [ -95.562422044543069, 29.582666153944977 ], [ -95.56099704426488, 29.582694154372039 ], [ -95.560960043928148, 29.582695154641328 ], [ -95.55991304405795, 29.58271515400347 ], [ -95.559652044028184, 29.582699154704681 ], [ -95.558836044307668, 29.582722154053517 ], [ -95.558240044104323, 29.582747154474397 ], [ -95.557541043231268, 29.582766154394971 ], [ -95.557476043450947, 29.582768154486743 ], [ -95.557022043413582, 29.582787154524137 ], [ -95.556539043097402, 29.582807154018973 ], [ -95.555736043120206, 29.582836154134377 ], [ -95.554719042268658, 29.582855154059825 ], [ -95.553896042414237, 29.582869154700884 ], [ -95.553350042627713, 29.582875154934754 ], [ -95.552853042011819, 29.582891154399974 ], [ -95.552558042035344, 29.582913154520412 ], [ -95.551941041617795, 29.582924154961333 ], [ -95.551433042149739, 29.582925154911916 ], [ -95.551126042073562, 29.582936154953433 ], [ -95.549619041572896, 29.582992154833757 ], [ -95.546338040816451, 29.583061155050796 ], [ -95.545002040254758, 29.583107154868898 ], [ -95.543483039465713, 29.583134154981519 ], [ -95.541648039412934, 29.58316615523448 ], [ -95.541567038995439, 29.583168154562138 ], [ -95.541603039736103, 29.58474915550822 ], [ -95.541621039457411, 29.585496155795781 ], [ -95.541631039350904, 29.585955155662205 ], [ -95.541637039885387, 29.586485155993081 ], [ -95.541655039488518, 29.58801315603602 ], [ -95.541665039462927, 29.588540156145097 ], [ -95.541718039477956, 29.591112156814027 ], [ -95.541674039586226, 29.591113156827262 ], [ -95.541081039801426, 29.591125156814673 ], [ -95.540663039255477, 29.591158157028097 ], [ -95.539234039636497, 29.591160156306984 ], [ -95.537508038729797, 29.591164156854056 ], [ -95.53524103819079, 29.591195156560421 ], [ -95.532657037830873, 29.591195157170802 ], [ -95.534832037999251, 29.593052157083459 ], [ -95.537227038504682, 29.595069157683252 ], [ -95.539084038970941, 29.596634157966626 ], [ -95.540373039538011, 29.59771815831914 ], [ -95.540843039406141, 29.598128158339048 ], [ -95.54086403965195, 29.598155158416549 ], [ -95.541405039928478, 29.598618157812766 ], [ -95.541718039833867, 29.59888615862269 ], [ -95.542439039879511, 29.59946615822118 ], [ -95.542693040810278, 29.599693158289302 ], [ -95.542998040072902, 29.599931158521184 ], [ -95.543213040344838, 29.600100158294531 ], [ -95.543391040713843, 29.600279158249212 ], [ -95.543505040701703, 29.600393158254565 ], [ -95.544010041145839, 29.600828158847779 ], [ -95.54596004100695, 29.602455158825688 ], [ -95.546258041674847, 29.6027051590215 ], [ -95.546825042009701, 29.603187158869073 ], [ -95.547686042165324, 29.603929159443375 ], [ -95.54864304177616, 29.60470515958075 ], [ -95.549330042187506, 29.604059159267965 ], [ -95.549425042092579, 29.603970159094132 ], [ -95.549710041924712, 29.603687158524242 ], [ -95.549992042123449, 29.60340915928975 ], [ -95.550037042220964, 29.603364158536305 ], [ -95.550674042624593, 29.603896158492596 ], [ -95.55140904249302, 29.604534158620979 ], [ -95.551593042968889, 29.604694158859459 ], [ -95.551890043353268, 29.604939159059093 ], [ -95.552046043172027, 29.605019159062238 ], [ -95.552137043407001, 29.605031159074315 ], [ -95.552325043203709, 29.605055159154151 ], [ -95.552990042997777, 29.605073158751686 ], [ -95.553459043916263, 29.605085159224579 ], [ -95.555242044357797, 29.60515915948838 ], [ -95.55528904353649, 29.605161159411018 ], [ -95.55531504386154, 29.605162159211883 ], [ -95.555916044436643, 29.605187159266794 ], [ -95.55594104384879, 29.605188159357112 ], [ -95.558434044805992, 29.605260158915218 ], [ -95.559727044919811, 29.605297159110208 ], [ -95.563926046247119, 29.605418159213709 ], [ -95.564409045935378, 29.60543215879774 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1572, "Tract": "48157675502", "Area_SqMi": 7.442567630284266, "total_2009": 761, "total_2010": 692, "total_2011": 977, "total_2012": 1421, "total_2013": 1511, "total_2014": 1134, "total_2015": 1612, "total_2016": 1623, "total_2017": 1652, "total_2018": 1880, "total_2019": 1844, "total_2020": 1902, "age1": 650, "age2": 1019, "age3": 485, "earn1": 582, "earn2": 725, "earn3": 847, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 62, "naics_s05": 353, "naics_s06": 60, "naics_s07": 715, "naics_s08": 8, "naics_s09": 0, "naics_s10": 34, "naics_s11": 20, "naics_s12": 66, "naics_s13": 6, "naics_s14": 23, "naics_s15": 106, "naics_s16": 191, "naics_s17": 9, "naics_s18": 459, "naics_s19": 42, "naics_s20": 0, "race1": 1511, "race2": 395, "race3": 15, "race4": 199, "race5": 2, "race6": 32, "ethnicity1": 1470, "ethnicity2": 684, "edu1": 317, "edu2": 371, "edu3": 466, "edu4": 350, "Shape_Length": 69076.379362225867, "Shape_Area": 207486047.45051983, "total_2021": 2030, "total_2022": 2154 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.772472095233255, 29.517265133693556 ], [ -95.772459095812522, 29.517161133969388 ], [ -95.772434095861385, 29.51703413345389 ], [ -95.772183095286522, 29.516715133344039 ], [ -95.770016094908797, 29.514901133100455 ], [ -95.769293094422935, 29.514323133534408 ], [ -95.766743093620633, 29.512014132890535 ], [ -95.766629094189653, 29.511964132600315 ], [ -95.766548093508888, 29.511904133171345 ], [ -95.766026093976876, 29.511436133158547 ], [ -95.764776093329402, 29.510270132768788 ], [ -95.764481092965283, 29.510072132773363 ], [ -95.76446209272757, 29.510050132455614 ], [ -95.764343092586159, 29.509803132435181 ], [ -95.764230093180657, 29.50969913258157 ], [ -95.763683093250293, 29.50961013292255 ], [ -95.763187093272904, 29.509687132461853 ], [ -95.762131092016958, 29.509940132614489 ], [ -95.762087092680773, 29.509967132347295 ], [ -95.761119091944536, 29.510236132447449 ], [ -95.759617091534949, 29.510681133260405 ], [ -95.75819009196735, 29.511070132741548 ], [ -95.7578070916733, 29.511131133334928 ], [ -95.757675091013496, 29.511120132805292 ], [ -95.757373090956662, 29.511120132833625 ], [ -95.755990090942291, 29.510943133209615 ], [ -95.755902091145444, 29.510932132755759 ], [ -95.75577809059611, 29.510941132792134 ], [ -95.755755091274395, 29.511108133138215 ], [ -95.75562209142926, 29.512853133367042 ], [ -95.755095090812532, 29.51811513496483 ], [ -95.755006090801643, 29.518701134235677 ], [ -95.754886091014527, 29.519032134684561 ], [ -95.754633091302452, 29.519511135032467 ], [ -95.754021090709529, 29.520750135002025 ], [ -95.753499090569022, 29.52181113541744 ], [ -95.753238090747047, 29.521710135069316 ], [ -95.751910090290622, 29.52119813535035 ], [ -95.751810090566494, 29.521159135468377 ], [ -95.751448090566072, 29.521020135356096 ], [ -95.750340090217847, 29.520593135480127 ], [ -95.748272088989182, 29.519799134729247 ], [ -95.745790088835903, 29.518846135017263 ], [ -95.743946088269993, 29.518137135035666 ], [ -95.742955088116403, 29.517756134710158 ], [ -95.742133087609432, 29.517441134825269 ], [ -95.740430086902762, 29.516786134675801 ], [ -95.739644087487022, 29.516485134760792 ], [ -95.737487086767629, 29.515656134362391 ], [ -95.737371086738193, 29.515890134242209 ], [ -95.737365086791002, 29.515902134580038 ], [ -95.737175086866571, 29.516272134562652 ], [ -95.737030086725809, 29.516558134854048 ], [ -95.736973086604635, 29.516667135032385 ], [ -95.736909086655686, 29.51679213505048 ], [ -95.736868085988689, 29.51687213499152 ], [ -95.736806086398687, 29.516992135345784 ], [ -95.736775086204659, 29.517054135293588 ], [ -95.736561086665233, 29.517472134767321 ], [ -95.736289086100655, 29.518003135119727 ], [ -95.736195086378459, 29.518186135105356 ], [ -95.735928086513042, 29.518707135570466 ], [ -95.735231085858516, 29.518444135670777 ], [ -95.73201408482366, 29.517214135515601 ], [ -95.731478084599061, 29.517005135096017 ], [ -95.730935085345848, 29.516793135145171 ], [ -95.729737084693483, 29.516336134728459 ], [ -95.72943008457078, 29.516218134658569 ], [ -95.727838084394406, 29.515605135260184 ], [ -95.726447083405176, 29.51506113519542 ], [ -95.724644083209228, 29.514371135208421 ], [ -95.724093083304354, 29.514164135108281 ], [ -95.722916083031961, 29.513701134412454 ], [ -95.721118081750674, 29.513007134451605 ], [ -95.720767082426846, 29.512865134644333 ], [ -95.719581081585972, 29.512402134764582 ], [ -95.71921008144858, 29.512277134894205 ], [ -95.717477081244539, 29.511605134675886 ], [ -95.716414081084963, 29.511198133997965 ], [ -95.715694081230467, 29.510913134051073 ], [ -95.715285081058397, 29.510759134290836 ], [ -95.713374080445291, 29.510028134072599 ], [ -95.712074079666394, 29.509520134434787 ], [ -95.71134407910013, 29.509246133881206 ], [ -95.710415079722878, 29.508881134148918 ], [ -95.710027078802284, 29.508735133812291 ], [ -95.709875079245862, 29.509054134552184 ], [ -95.708754078503944, 29.511338134375784 ], [ -95.708422079399611, 29.51199113490318 ], [ -95.707994079229778, 29.512897135410991 ], [ -95.707645078381574, 29.513603135571348 ], [ -95.707259078826795, 29.514402135368808 ], [ -95.707221078711981, 29.514480135467547 ], [ -95.706677078792453, 29.515589135679882 ], [ -95.70588607889124, 29.517221136004135 ], [ -95.705464078442247, 29.518077136367218 ], [ -95.705084078742374, 29.518868136014994 ], [ -95.703968077961463, 29.521126136870141 ], [ -95.703744077696328, 29.52158413707274 ], [ -95.703170078033452, 29.522790137029698 ], [ -95.702931078441239, 29.523249137100976 ], [ -95.702635078102716, 29.523861137769092 ], [ -95.702141077732577, 29.524860137578795 ], [ -95.702033077712173, 29.525079137942114 ], [ -95.701601078191189, 29.525955137648527 ], [ -95.701035077964534, 29.527087137767509 ], [ -95.70044507809132, 29.528327138287015 ], [ -95.700320078052385, 29.528583138555923 ], [ -95.699960077017025, 29.529322138739172 ], [ -95.699832077465459, 29.529555138313651 ], [ -95.699725077943839, 29.529726139177104 ], [ -95.700234077277443, 29.530929138725565 ], [ -95.701536077765653, 29.534300139682749 ], [ -95.701546078196131, 29.534325139519112 ], [ -95.701765078242332, 29.534879140151922 ], [ -95.702620078559519, 29.537044139822513 ], [ -95.702693078050331, 29.537230140054461 ], [ -95.702705078048083, 29.537347140117099 ], [ -95.702699078057648, 29.537457140399432 ], [ -95.702665078541742, 29.537607140275938 ], [ -95.70452307953056, 29.537838140307816 ], [ -95.708319080181766, 29.538312140442759 ], [ -95.710391080494659, 29.538566140120626 ], [ -95.710749080856417, 29.538617140599907 ], [ -95.711539081294077, 29.53870814032803 ], [ -95.713355081509349, 29.538957140286396 ], [ -95.715247081846968, 29.53921714062389 ], [ -95.715674081591459, 29.539276140438844 ], [ -95.718469082294206, 29.539661139968796 ], [ -95.72089008352792, 29.539995140342789 ], [ -95.721749083136643, 29.540112139850716 ], [ -95.722603084167829, 29.540196140004994 ], [ -95.722950084201031, 29.540232140274568 ], [ -95.724948084111588, 29.540462140389462 ], [ -95.725387084946988, 29.540528140131393 ], [ -95.726143084675584, 29.54062214030985 ], [ -95.726552084971971, 29.540681140048076 ], [ -95.73382708678615, 29.541666140105399 ], [ -95.736592087628864, 29.542060140405493 ], [ -95.737660087304818, 29.542237140357059 ], [ -95.739510088224065, 29.542676140495853 ], [ -95.740908088959671, 29.54312813989355 ], [ -95.742269089095473, 29.543689139755546 ], [ -95.742814088788705, 29.543903140096152 ], [ -95.743400089524087, 29.544224140687412 ], [ -95.743550089570562, 29.544307140440878 ], [ -95.743696089545949, 29.544409140445563 ], [ -95.744703089724098, 29.545101139977394 ], [ -95.744739089790301, 29.545123140633592 ], [ -95.746499090235815, 29.546518141069424 ], [ -95.746724089737739, 29.546697140361147 ], [ -95.746829090194993, 29.546804140803534 ], [ -95.746959090022187, 29.546752140237373 ], [ -95.747213090096665, 29.546651140254244 ], [ -95.747720090084016, 29.546447140496291 ], [ -95.750726090774606, 29.54515114028143 ], [ -95.752268091000943, 29.544486140080036 ], [ -95.753717091769133, 29.543855139487807 ], [ -95.754028092231991, 29.543720139410553 ], [ -95.754209091489386, 29.543640140194096 ], [ -95.756125092608826, 29.542808139673102 ], [ -95.756236092334589, 29.542761139257465 ], [ -95.756754093069688, 29.542543139331926 ], [ -95.760501093807733, 29.541030139376907 ], [ -95.760845093022311, 29.540875139396263 ], [ -95.762959093604792, 29.539924139103697 ], [ -95.770359095594813, 29.53680013813214 ], [ -95.772349096747547, 29.53590713768099 ], [ -95.772381096330804, 29.535895138015448 ], [ -95.772310096732497, 29.53558713711838 ], [ -95.772261096033986, 29.53535813787532 ], [ -95.772195096500425, 29.535020137864716 ], [ -95.77207609600076, 29.534789137161326 ], [ -95.772019096155105, 29.534696137302163 ], [ -95.771936095790963, 29.534590137374718 ], [ -95.77174909585851, 29.534382137124432 ], [ -95.771196095422198, 29.533898137348221 ], [ -95.770982095815597, 29.533645136977423 ], [ -95.770825095247289, 29.533398137059073 ], [ -95.770674095832149, 29.53328213738644 ], [ -95.770555095501635, 29.533211137335137 ], [ -95.770354095298643, 29.533128137252369 ], [ -95.769839095297641, 29.532881136695856 ], [ -95.769776095454318, 29.532826136701313 ], [ -95.769732095874858, 29.532744136940721 ], [ -95.769700095386796, 29.532650136912824 ], [ -95.769644095901128, 29.532337136763253 ], [ -95.769579095104973, 29.532164136689186 ], [ -95.769512094903817, 29.531985137243943 ], [ -95.769449095295528, 29.531754136615621 ], [ -95.769412095093259, 29.531391136724292 ], [ -95.769418095464289, 29.53128713664282 ], [ -95.769513095129653, 29.530864136974571 ], [ -95.769556094861855, 29.530557136513412 ], [ -95.769598095567844, 29.530256136920446 ], [ -95.769658095275076, 29.529830136836122 ], [ -95.769765095191573, 29.529517136667486 ], [ -95.769758095349474, 29.529346136352856 ], [ -95.769771094795914, 29.528423136011821 ], [ -95.769721094778461, 29.52771413635211 ], [ -95.769653095209421, 29.527006135908646 ], [ -95.769408094949299, 29.525597135219975 ], [ -95.769320095478392, 29.525031135241246 ], [ -95.769289095181946, 29.524773135315332 ], [ -95.769301095093752, 29.524652135570346 ], [ -95.769345094636748, 29.52450913491154 ], [ -95.769408095390162, 29.524361135215941 ], [ -95.769666095354225, 29.52406413533415 ], [ -95.77017509558209, 29.523652135214579 ], [ -95.770257095149631, 29.523563134982208 ], [ -95.770282094897098, 29.523536134781661 ], [ -95.770345094977571, 29.523454134806627 ], [ -95.770402094688819, 29.523322134992036 ], [ -95.770477095448754, 29.52302513544365 ], [ -95.770559095117648, 29.522783135062575 ], [ -95.770685095225375, 29.522388135142862 ], [ -95.770704095072603, 29.522146134641972 ], [ -95.77069109476993, 29.522052135019017 ], [ -95.770603095438503, 29.521821135229935 ], [ -95.770516095086251, 29.521629134986302 ], [ -95.770258094813229, 29.521123134754188 ], [ -95.770202095531687, 29.520986134806801 ], [ -95.770176095212065, 29.520788134267537 ], [ -95.770240094813218, 29.520255134832261 ], [ -95.770246094620958, 29.520123134051104 ], [ -95.770244095352723, 29.520072134165886 ], [ -95.770234094511295, 29.519874134722361 ], [ -95.770246094567071, 29.519760134699773 ], [ -95.770278094657655, 29.519645133952768 ], [ -95.77032209526898, 29.519546134281377 ], [ -95.77057309470807, 29.519199133959724 ], [ -95.770875094763312, 29.518908133949662 ], [ -95.771636095711116, 29.518254134406735 ], [ -95.772277095815213, 29.51767213429277 ], [ -95.772440095787147, 29.517441133704825 ], [ -95.772472095233255, 29.517265133693556 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1573, "Tract": "48157675102", "Area_SqMi": 0.705268022035347, "total_2009": 391, "total_2010": 334, "total_2011": 358, "total_2012": 388, "total_2013": 427, "total_2014": 302, "total_2015": 309, "total_2016": 297, "total_2017": 307, "total_2018": 250, "total_2019": 233, "total_2020": 214, "age1": 30, "age2": 104, "age3": 56, "earn1": 43, "earn2": 63, "earn3": 84, "naics_s01": 0, "naics_s02": 0, "naics_s03": 23, "naics_s04": 12, "naics_s05": 4, "naics_s06": 0, "naics_s07": 31, "naics_s08": 1, "naics_s09": 0, "naics_s10": 17, "naics_s11": 5, "naics_s12": 2, "naics_s13": 0, "naics_s14": 3, "naics_s15": 0, "naics_s16": 75, "naics_s17": 0, "naics_s18": 10, "naics_s19": 7, "naics_s20": 0, "race1": 123, "race2": 54, "race3": 1, "race4": 11, "race5": 0, "race6": 1, "ethnicity1": 135, "ethnicity2": 55, "edu1": 24, "edu2": 53, "edu3": 52, "edu4": 31, "Shape_Length": 19007.471905976388, "Shape_Area": 19661665.376062043, "total_2021": 181, "total_2022": 190 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.794093102965746, 29.557414141429408 ], [ -95.794061102860766, 29.556107140984391 ], [ -95.793994102166522, 29.554227140227038 ], [ -95.793960102462165, 29.552057139846813 ], [ -95.793585102095719, 29.552065140503132 ], [ -95.793586102226655, 29.551566139680517 ], [ -95.793581102772706, 29.551142139682632 ], [ -95.793579102106222, 29.550721139642217 ], [ -95.793572102666261, 29.550272139638238 ], [ -95.793565102244543, 29.549159139387097 ], [ -95.793564101939751, 29.548942139527121 ], [ -95.793553102499132, 29.548527139836668 ], [ -95.793556102128662, 29.548444139288517 ], [ -95.793555102171567, 29.548072139068587 ], [ -95.79353410223068, 29.547134138951446 ], [ -95.793531101857795, 29.546976139441021 ], [ -95.793532102481521, 29.545716139288107 ], [ -95.793532101785615, 29.544955138552208 ], [ -95.79353210205177, 29.544424138605947 ], [ -95.793523101880922, 29.543810138144607 ], [ -95.793520102385656, 29.54359013852569 ], [ -95.793515101594963, 29.543346138095803 ], [ -95.79352510230585, 29.543037138725929 ], [ -95.793515101886527, 29.542823137880983 ], [ -95.793525102409191, 29.542564138175699 ], [ -95.793349101901626, 29.542565138244377 ], [ -95.792594101199768, 29.542581138071814 ], [ -95.791053101130146, 29.542604138301353 ], [ -95.790336101005323, 29.542616137942687 ], [ -95.78959810062571, 29.542628138611942 ], [ -95.78877210117102, 29.542645138118726 ], [ -95.788235100198889, 29.542660138637551 ], [ -95.787705100735351, 29.542675138223235 ], [ -95.78732610078066, 29.542683138177608 ], [ -95.784008099455178, 29.542748138505701 ], [ -95.783887099232359, 29.542768138541227 ], [ -95.783593099882467, 29.542790138435215 ], [ -95.783143098979835, 29.542775138422364 ], [ -95.782216099476599, 29.542785138234546 ], [ -95.780522098804354, 29.542834138891742 ], [ -95.780531098700536, 29.546155139246611 ], [ -95.780531098538162, 29.546266139122594 ], [ -95.780538098581957, 29.548697139825251 ], [ -95.780594099219172, 29.548768139744094 ], [ -95.780952098838966, 29.549049139549858 ], [ -95.78104109923602, 29.549137140218289 ], [ -95.781335098898793, 29.549366139978432 ], [ -95.781691099329862, 29.549642140481549 ], [ -95.781971099339032, 29.549916140442516 ], [ -95.782031099628995, 29.549967140011148 ], [ -95.782225099034605, 29.550118140314236 ], [ -95.782428099701988, 29.550218140420171 ], [ -95.782814099780595, 29.550536140007338 ], [ -95.782932099439989, 29.550710140016996 ], [ -95.783171099696034, 29.550838140466524 ], [ -95.783555099652361, 29.551116140591731 ], [ -95.783889100263053, 29.551456140294807 ], [ -95.78409409948523, 29.551624140433265 ], [ -95.784771100025338, 29.552178140900359 ], [ -95.784528099954358, 29.553882140709774 ], [ -95.784323099841245, 29.555326141478613 ], [ -95.784321100505196, 29.555338141559542 ], [ -95.784307100018566, 29.555439141022976 ], [ -95.784196100396471, 29.556156141596464 ], [ -95.784065099656033, 29.556867141509336 ], [ -95.784047099644539, 29.557185141675717 ], [ -95.783971100619524, 29.557953142066054 ], [ -95.784783100040187, 29.55794514138578 ], [ -95.786790100647522, 29.557831141449487 ], [ -95.786874100537219, 29.557831141447426 ], [ -95.787891100873793, 29.557828141102597 ], [ -95.788541101295877, 29.557826141757033 ], [ -95.788841100889215, 29.557817141836917 ], [ -95.789388101195001, 29.557810141401085 ], [ -95.78985210184851, 29.557796141398843 ], [ -95.790382101865816, 29.557783141622178 ], [ -95.790545101489542, 29.557788141214349 ], [ -95.790878101651955, 29.557768141435439 ], [ -95.791336102137933, 29.557740141654019 ], [ -95.791864102594317, 29.557740141685905 ], [ -95.792240102122022, 29.557607141559011 ], [ -95.792445102188395, 29.557536141331131 ], [ -95.792696102595926, 29.557441141357387 ], [ -95.792987102931576, 29.557417141411733 ], [ -95.793533103011953, 29.557423141101289 ], [ -95.79367210218534, 29.557433141412805 ], [ -95.793812103057135, 29.557445141422146 ], [ -95.794093102965746, 29.557414141429408 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1574, "Tract": "48157675101", "Area_SqMi": 2.2940984635754291, "total_2009": 1359, "total_2010": 1567, "total_2011": 2048, "total_2012": 2031, "total_2013": 2156, "total_2014": 2109, "total_2015": 2271, "total_2016": 2372, "total_2017": 2427, "total_2018": 2694, "total_2019": 2753, "total_2020": 2772, "age1": 1119, "age2": 1452, "age3": 558, "earn1": 817, "earn2": 1052, "earn3": 1260, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 33, "naics_s05": 88, "naics_s06": 79, "naics_s07": 754, "naics_s08": 4, "naics_s09": 38, "naics_s10": 64, "naics_s11": 8, "naics_s12": 73, "naics_s13": 15, "naics_s14": 471, "naics_s15": 0, "naics_s16": 331, "naics_s17": 1, "naics_s18": 781, "naics_s19": 121, "naics_s20": 268, "race1": 2189, "race2": 643, "race3": 25, "race4": 204, "race5": 2, "race6": 66, "ethnicity1": 1988, "ethnicity2": 1141, "edu1": 425, "edu2": 545, "edu3": 631, "edu4": 409, "Shape_Length": 37757.997459074395, "Shape_Area": 63955538.775721639, "total_2021": 2983, "total_2022": 3129 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.784528099954358, 29.553882140709774 ], [ -95.784771100025338, 29.552178140900359 ], [ -95.78409409948523, 29.551624140433265 ], [ -95.783889100263053, 29.551456140294807 ], [ -95.783555099652361, 29.551116140591731 ], [ -95.783171099696034, 29.550838140466524 ], [ -95.782932099439989, 29.550710140016996 ], [ -95.782814099780595, 29.550536140007338 ], [ -95.782428099701988, 29.550218140420171 ], [ -95.782225099034605, 29.550118140314236 ], [ -95.782031099628995, 29.549967140011148 ], [ -95.781971099339032, 29.549916140442516 ], [ -95.781691099329862, 29.549642140481549 ], [ -95.781335098898793, 29.549366139978432 ], [ -95.78104109923602, 29.549137140218289 ], [ -95.780952098838966, 29.549049139549858 ], [ -95.780594099219172, 29.548768139744094 ], [ -95.780538098581957, 29.548697139825251 ], [ -95.780531098538162, 29.546266139122594 ], [ -95.780531098700536, 29.546155139246611 ], [ -95.780522098804354, 29.542834138891742 ], [ -95.779407098273751, 29.542855138362778 ], [ -95.772870096379521, 29.542980138805842 ], [ -95.772120096473387, 29.542994139171775 ], [ -95.772230096948391, 29.542772138718963 ], [ -95.774230097252556, 29.538748137843825 ], [ -95.774937097153469, 29.537325137966402 ], [ -95.775511097239715, 29.536172137837465 ], [ -95.775606097422084, 29.535994137778545 ], [ -95.775705096928064, 29.535807137448643 ], [ -95.775888097055798, 29.535479137297191 ], [ -95.776203096770885, 29.534870137393128 ], [ -95.776351097250298, 29.534571137088207 ], [ -95.776075097038472, 29.534645137134063 ], [ -95.775713096975167, 29.53475613733405 ], [ -95.775481096555467, 29.534820137385587 ], [ -95.774599096458715, 29.535128136973963 ], [ -95.773604096457319, 29.535454137375378 ], [ -95.772381096330804, 29.535895138015448 ], [ -95.772349096747547, 29.53590713768099 ], [ -95.770359095594813, 29.53680013813214 ], [ -95.762959093604792, 29.539924139103697 ], [ -95.760845093022311, 29.540875139396263 ], [ -95.760501093807733, 29.541030139376907 ], [ -95.756754093069688, 29.542543139331926 ], [ -95.756236092334589, 29.542761139257465 ], [ -95.756125092608826, 29.542808139673102 ], [ -95.754209091489386, 29.543640140194096 ], [ -95.754028092231991, 29.543720139410553 ], [ -95.753717091769133, 29.543855139487807 ], [ -95.752268091000943, 29.544486140080036 ], [ -95.750726090774606, 29.54515114028143 ], [ -95.747720090084016, 29.546447140496291 ], [ -95.747213090096665, 29.546651140254244 ], [ -95.746959090022187, 29.546752140237373 ], [ -95.746829090194993, 29.546804140803534 ], [ -95.747577090422837, 29.547566141233535 ], [ -95.747733090039958, 29.547725140643244 ], [ -95.747992090548848, 29.547976140436493 ], [ -95.748098090944524, 29.548073141325123 ], [ -95.748344090603268, 29.548347140892997 ], [ -95.748519090935858, 29.548536140741785 ], [ -95.748638090598618, 29.548666141404535 ], [ -95.74877809061789, 29.548846140922489 ], [ -95.749390091061201, 29.54958914120779 ], [ -95.749668091261029, 29.549931140951511 ], [ -95.750051091140065, 29.550403141141679 ], [ -95.751525091244318, 29.552214141942201 ], [ -95.752241091401373, 29.553093141590786 ], [ -95.753607092573873, 29.554814141977808 ], [ -95.753717091968213, 29.554943141958297 ], [ -95.754364092297024, 29.555705142531782 ], [ -95.755407093210465, 29.556964142909681 ], [ -95.756256092938969, 29.55798814308184 ], [ -95.756985093271169, 29.558868142660092 ], [ -95.758398094272081, 29.560638142718762 ], [ -95.758641093374749, 29.560941142724179 ], [ -95.759061094407187, 29.561631143067817 ], [ -95.759285094134569, 29.562052143348243 ], [ -95.759520093726792, 29.561657143456888 ], [ -95.75958309454137, 29.561590143734954 ], [ -95.759619094474587, 29.561552143640583 ], [ -95.760649094243206, 29.560443142726985 ], [ -95.761390094820584, 29.55967714323452 ], [ -95.762827094872407, 29.558712142165739 ], [ -95.763301095295404, 29.558482142732895 ], [ -95.765263095405658, 29.558333142062356 ], [ -95.766221095375101, 29.558283142447831 ], [ -95.769216096032153, 29.558207142480914 ], [ -95.773411097837212, 29.558123141666243 ], [ -95.775832097799906, 29.55807714178135 ], [ -95.776413098173052, 29.55807714194199 ], [ -95.777593098062823, 29.558078141563101 ], [ -95.78066809891142, 29.558031141787893 ], [ -95.782641099993853, 29.557986141664724 ], [ -95.78333110009028, 29.557962142030512 ], [ -95.783478099586247, 29.557957141664055 ], [ -95.783971100619524, 29.557953142066054 ], [ -95.784047099644539, 29.557185141675717 ], [ -95.784065099656033, 29.556867141509336 ], [ -95.784196100396471, 29.556156141596464 ], [ -95.784307100018566, 29.555439141022976 ], [ -95.784321100505196, 29.555338141559542 ], [ -95.784323099841245, 29.555326141478613 ], [ -95.784528099954358, 29.553882140709774 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1575, "Tract": "48157673009", "Area_SqMi": 1.2426902125842587, "total_2009": 88, "total_2010": 72, "total_2011": 115, "total_2012": 165, "total_2013": 188, "total_2014": 254, "total_2015": 263, "total_2016": 249, "total_2017": 174, "total_2018": 197, "total_2019": 206, "total_2020": 172, "age1": 63, "age2": 94, "age3": 46, "earn1": 72, "earn2": 69, "earn3": 62, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 1, "naics_s05": 6, "naics_s06": 10, "naics_s07": 22, "naics_s08": 6, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 44, "naics_s13": 0, "naics_s14": 10, "naics_s15": 5, "naics_s16": 34, "naics_s17": 3, "naics_s18": 56, "naics_s19": 4, "naics_s20": 0, "race1": 117, "race2": 27, "race3": 3, "race4": 48, "race5": 0, "race6": 8, "ethnicity1": 149, "ethnicity2": 54, "edu1": 18, "edu2": 25, "edu3": 39, "edu4": 58, "Shape_Length": 26100.603338220284, "Shape_Area": 34644076.241293885, "total_2021": 176, "total_2022": 203 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.767657103479934, 29.722446175802371 ], [ -95.767657103431034, 29.722400175516373 ], [ -95.767653103541832, 29.722308175905034 ], [ -95.767636102982038, 29.721972176124865 ], [ -95.767635102787196, 29.721947175632213 ], [ -95.76761210346659, 29.721675176039678 ], [ -95.767587103153915, 29.721478175455911 ], [ -95.767528102780574, 29.721177175250286 ], [ -95.767449102677119, 29.720872175871126 ], [ -95.767354102985678, 29.72056917582551 ], [ -95.767276102596284, 29.720367175574854 ], [ -95.767154102680095, 29.720085174945108 ], [ -95.766969103330368, 29.719657175676964 ], [ -95.766869103315926, 29.71943617538528 ], [ -95.766426102809135, 29.718439174686857 ], [ -95.766368102571178, 29.718306174615776 ], [ -95.766218102412296, 29.717882175212896 ], [ -95.766035102144642, 29.717349174845143 ], [ -95.765507102674064, 29.716283174767007 ], [ -95.765106102467016, 29.715279174676475 ], [ -95.764994102206032, 29.71499817469315 ], [ -95.764464102332212, 29.713686174610565 ], [ -95.764348102013713, 29.713726174065627 ], [ -95.764289101549508, 29.713559174295217 ], [ -95.764038101502251, 29.712997174453839 ], [ -95.763877102369335, 29.712485174024227 ], [ -95.763824101994459, 29.712236174296542 ], [ -95.763517101699179, 29.711485173562057 ], [ -95.762858101453787, 29.710000173114281 ], [ -95.762427101203997, 29.708992173246223 ], [ -95.762414100919742, 29.708962173705615 ], [ -95.762013101602932, 29.708087172763793 ], [ -95.76173410140207, 29.707396173421472 ], [ -95.760966101239376, 29.705715173089665 ], [ -95.76083610101216, 29.705431172415128 ], [ -95.760805101055098, 29.705357172861405 ], [ -95.760732100743326, 29.705183172979755 ], [ -95.760574100182168, 29.704801172817447 ], [ -95.760535101033369, 29.704673172604199 ], [ -95.7604331006861, 29.704342171960469 ], [ -95.760232101028578, 29.703430172593457 ], [ -95.760197100590474, 29.702835172152628 ], [ -95.76017810048431, 29.701853171478589 ], [ -95.760176100365726, 29.70175117167862 ], [ -95.760174100150763, 29.701622171725131 ], [ -95.760032100731692, 29.701638172011609 ], [ -95.759613100097951, 29.701685171525543 ], [ -95.759151100172232, 29.701716172343826 ], [ -95.75885110036522, 29.701747172314459 ], [ -95.756476099562875, 29.701946172217507 ], [ -95.754012098826237, 29.702151172300944 ], [ -95.753375099040312, 29.702201172396226 ], [ -95.751410098126215, 29.702335172138394 ], [ -95.750904098259213, 29.702373172708956 ], [ -95.74864009747742, 29.702562172149836 ], [ -95.74322309651474, 29.70301817277786 ], [ -95.743015095680363, 29.703035173058534 ], [ -95.743039095997702, 29.703245172464538 ], [ -95.743260096765937, 29.70509917319086 ], [ -95.743279096176835, 29.705267173103277 ], [ -95.743378096297832, 29.706149173699234 ], [ -95.743387096357665, 29.70627617372757 ], [ -95.743431096352694, 29.706601173156635 ], [ -95.743451096238246, 29.70677717352088 ], [ -95.74355709640605, 29.708301174150968 ], [ -95.743567096414054, 29.708398173597388 ], [ -95.743572096486545, 29.708440173739241 ], [ -95.743768096612826, 29.710087173809562 ], [ -95.743806097182514, 29.710473173980205 ], [ -95.744026097083506, 29.712460174460805 ], [ -95.744028096992167, 29.712475174534546 ], [ -95.744050096757107, 29.712665174481209 ], [ -95.745836097672395, 29.71240917419389 ], [ -95.747339097544369, 29.712305174017409 ], [ -95.748324098165142, 29.712238174458019 ], [ -95.748628097893899, 29.712327174024047 ], [ -95.748932098324573, 29.71266017425749 ], [ -95.749001098389414, 29.712717174342181 ], [ -95.749116098324308, 29.712812174393999 ], [ -95.750678098783396, 29.714102174584838 ], [ -95.75384309922147, 29.716766175129546 ], [ -95.754221099127335, 29.717088174909975 ], [ -95.754885100075754, 29.71765317513783 ], [ -95.755018100272864, 29.717766175630903 ], [ -95.756868100488376, 29.719340175170686 ], [ -95.759748101018161, 29.72172917570531 ], [ -95.760894101091125, 29.722680175758573 ], [ -95.761757101815789, 29.722970176263136 ], [ -95.764881102985811, 29.722735176226603 ], [ -95.765256103114126, 29.722807176012157 ], [ -95.766570102556585, 29.722415175953415 ], [ -95.767473103004221, 29.722441176065601 ], [ -95.767657103479934, 29.722446175802371 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1576, "Tract": "48157671402", "Area_SqMi": 0.70282809831669513, "total_2009": 324, "total_2010": 298, "total_2011": 336, "total_2012": 325, "total_2013": 335, "total_2014": 363, "total_2015": 346, "total_2016": 331, "total_2017": 325, "total_2018": 410, "total_2019": 444, "total_2020": 437, "age1": 221, "age2": 264, "age3": 123, "earn1": 141, "earn2": 287, "earn3": 180, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 56, "naics_s05": 85, "naics_s06": 47, "naics_s07": 42, "naics_s08": 86, "naics_s09": 33, "naics_s10": 40, "naics_s11": 41, "naics_s12": 48, "naics_s13": 0, "naics_s14": 64, "naics_s15": 0, "naics_s16": 18, "naics_s17": 18, "naics_s18": 7, "naics_s19": 23, "naics_s20": 0, "race1": 397, "race2": 69, "race3": 2, "race4": 125, "race5": 1, "race6": 14, "ethnicity1": 381, "ethnicity2": 227, "edu1": 98, "edu2": 73, "edu3": 110, "edu4": 106, "Shape_Length": 20404.313462344198, "Shape_Area": 19593644.478757206, "total_2021": 531, "total_2022": 608 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.582491050929718, 29.615560160162598 ], [ -95.582462051207088, 29.614490159982239 ], [ -95.582432051177065, 29.613861160312172 ], [ -95.582451051241733, 29.612955159894874 ], [ -95.58245505138612, 29.612753159327816 ], [ -95.582444051288036, 29.611300159093474 ], [ -95.582438051050687, 29.610385159211468 ], [ -95.582437051517871, 29.610243159172771 ], [ -95.582435051501037, 29.609951158852098 ], [ -95.582434050729361, 29.609867158671968 ], [ -95.582432051192981, 29.609579158891382 ], [ -95.582473050862319, 29.608502158719624 ], [ -95.582475050763207, 29.608324158928372 ], [ -95.582434050835218, 29.607668158820292 ], [ -95.582416050494672, 29.606961158581299 ], [ -95.582427050612679, 29.606472158489805 ], [ -95.582310050575117, 29.606467158713993 ], [ -95.582228050575949, 29.606457158600371 ], [ -95.582231050911034, 29.606276158582016 ], [ -95.582231051009671, 29.606229158355283 ], [ -95.581938050566791, 29.606200158538332 ], [ -95.578165050082617, 29.605829158203161 ], [ -95.577559049700525, 29.605787158707336 ], [ -95.576697049012992, 29.60574215842961 ], [ -95.576528049576424, 29.605738158230618 ], [ -95.57612304893334, 29.605729158368032 ], [ -95.5759760497142, 29.605721158462369 ], [ -95.575242048824535, 29.605685158171315 ], [ -95.574783048907321, 29.605680158120279 ], [ -95.573164048384143, 29.605631158478776 ], [ -95.573181049002557, 29.605685158367095 ], [ -95.569331048007911, 29.60557415872929 ], [ -95.564409045935378, 29.60543215879774 ], [ -95.564411046150227, 29.605489158791404 ], [ -95.564447046075657, 29.607287159183453 ], [ -95.564454045969484, 29.60822415918641 ], [ -95.564460046219892, 29.609139159951916 ], [ -95.564460045930929, 29.609154159382928 ], [ -95.564477046576869, 29.610407159406865 ], [ -95.564517046243637, 29.610426160154574 ], [ -95.564768046188846, 29.61059615967427 ], [ -95.565165046961255, 29.610986159698577 ], [ -95.565700046579352, 29.611366159858509 ], [ -95.566379047202531, 29.612031160306099 ], [ -95.566458046650098, 29.612153160387336 ], [ -95.566489047374375, 29.612201160263492 ], [ -95.566536047464652, 29.612273159778297 ], [ -95.566614046884155, 29.612499160568614 ], [ -95.566700047498585, 29.612751159966439 ], [ -95.566870046719956, 29.612982160576816 ], [ -95.567222047375708, 29.613301159907046 ], [ -95.56766904777345, 29.613619160619926 ], [ -95.568437047558888, 29.614081160842908 ], [ -95.568682047582499, 29.614204160779401 ], [ -95.568768047538285, 29.614247160730795 ], [ -95.568783047453152, 29.614254160035273 ], [ -95.568928047616453, 29.614328160758092 ], [ -95.569324047909902, 29.614510160126272 ], [ -95.569406047571448, 29.614537160446208 ], [ -95.569695047979408, 29.614631160501869 ], [ -95.569849047614099, 29.614648160849068 ], [ -95.569959048205035, 29.614660160731635 ], [ -95.570035048359202, 29.614669160493339 ], [ -95.570500048529965, 29.614686160662323 ], [ -95.570547048077927, 29.614690160808035 ], [ -95.571023048750959, 29.614730160892368 ], [ -95.571218048111135, 29.614762160852365 ], [ -95.57143804815712, 29.614740160817316 ], [ -95.571536047951469, 29.614689160803675 ], [ -95.57163904849827, 29.614636160394223 ], [ -95.5718470488885, 29.614543160032937 ], [ -95.572023048526361, 29.614482159994747 ], [ -95.572262048592279, 29.614482160134596 ], [ -95.572333048160573, 29.614503160341609 ], [ -95.572426048738066, 29.614531160017204 ], [ -95.572564049030774, 29.614630160528932 ], [ -95.572677048492992, 29.61473516042463 ], [ -95.572939049012334, 29.614998160567815 ], [ -95.573225049095583, 29.614872160873407 ], [ -95.57330604903953, 29.614801160109828 ], [ -95.573426049358147, 29.614784160040145 ], [ -95.573476049107271, 29.614762160145382 ], [ -95.573488048737858, 29.614747160248221 ], [ -95.573516049124407, 29.614755160798158 ], [ -95.573576049342989, 29.614772160631354 ], [ -95.573764048609846, 29.614903160200747 ], [ -95.573840049311542, 29.615056160720698 ], [ -95.573833048591368, 29.615467160574052 ], [ -95.57383904904006, 29.615610160820971 ], [ -95.573901048823075, 29.616722160877039 ], [ -95.573933049677734, 29.617414161045904 ], [ -95.573958049368542, 29.617669161339251 ], [ -95.57398804910423, 29.617773161277704 ], [ -95.574028049339518, 29.61782216139963 ], [ -95.574108049254079, 29.617863160909007 ], [ -95.574214049411992, 29.617884160715807 ], [ -95.574673049185023, 29.617872160748938 ], [ -95.575975049335824, 29.617873160947347 ], [ -95.576342049726179, 29.617875160715815 ], [ -95.576702049661634, 29.617894160548722 ], [ -95.576795050213804, 29.617929160729272 ], [ -95.576849050205269, 29.617977160535641 ], [ -95.576887050014832, 29.61803716065301 ], [ -95.577046049814669, 29.618286160785441 ], [ -95.577209049898187, 29.618617161478191 ], [ -95.577375050356579, 29.618952160683516 ], [ -95.577435050074257, 29.619035161435168 ], [ -95.577512049772778, 29.619149160736882 ], [ -95.57773505012247, 29.619331161058032 ], [ -95.577983050532069, 29.619720161671665 ], [ -95.577984049993063, 29.619258160824195 ], [ -95.57796205052594, 29.618598161049263 ], [ -95.577965050762145, 29.618534161279211 ], [ -95.577961049884252, 29.617504160929915 ], [ -95.577955050659071, 29.617272160585053 ], [ -95.577940050463766, 29.616979160824084 ], [ -95.577916050520628, 29.616538160488304 ], [ -95.577913050090586, 29.61647116025939 ], [ -95.57791005039627, 29.616407160462074 ], [ -95.577889050399307, 29.615591160595034 ], [ -95.57800605032044, 29.615594160073517 ], [ -95.57807504978669, 29.61559616026976 ], [ -95.578145050546382, 29.615595160348047 ], [ -95.581110051329205, 29.615569160604093 ], [ -95.5820930508863, 29.615563160356611 ], [ -95.582491050929718, 29.615560160162598 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1577, "Tract": "48157670804", "Area_SqMi": 1.2951589080523578, "total_2009": 105, "total_2010": 331, "total_2011": 101, "total_2012": 123, "total_2013": 164, "total_2014": 243, "total_2015": 157, "total_2016": 204, "total_2017": 187, "total_2018": 252, "total_2019": 247, "total_2020": 302, "age1": 73, "age2": 146, "age3": 65, "earn1": 61, "earn2": 103, "earn3": 120, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 71, "naics_s06": 0, "naics_s07": 54, "naics_s08": 5, "naics_s09": 0, "naics_s10": 0, "naics_s11": 0, "naics_s12": 30, "naics_s13": 0, "naics_s14": 0, "naics_s15": 11, "naics_s16": 77, "naics_s17": 0, "naics_s18": 29, "naics_s19": 0, "naics_s20": 0, "race1": 154, "race2": 91, "race3": 4, "race4": 29, "race5": 0, "race6": 6, "ethnicity1": 186, "ethnicity2": 98, "edu1": 57, "edu2": 52, "edu3": 56, "edu4": 46, "Shape_Length": 30726.559105033164, "Shape_Area": 36106813.669874713, "total_2021": 261, "total_2022": 284 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.516060030573627, 29.533670145629852 ], [ -95.515834031016468, 29.533591146054061 ], [ -95.512986029756377, 29.532716145168514 ], [ -95.512610029588188, 29.53261114522423 ], [ -95.512204029605741, 29.532430145456669 ], [ -95.511435029531143, 29.532210145997375 ], [ -95.506918028407426, 29.530916145269682 ], [ -95.506729028229856, 29.530886145665047 ], [ -95.506018027667295, 29.530629145683907 ], [ -95.504641027828256, 29.530040145630913 ], [ -95.502626027444393, 29.528957145598167 ], [ -95.500311026216394, 29.527724145180162 ], [ -95.498749026002258, 29.526958145242123 ], [ -95.496476025203876, 29.525799144343505 ], [ -95.495580025133705, 29.525315144529074 ], [ -95.495413025180412, 29.525225144772438 ], [ -95.494056024643911, 29.524492144532182 ], [ -95.491785024490156, 29.523273144535402 ], [ -95.491064023697717, 29.522883144080897 ], [ -95.488622023639053, 29.521634144372754 ], [ -95.487549022532548, 29.521119144378773 ], [ -95.484347022415093, 29.519444143967412 ], [ -95.483264022208928, 29.518877143476839 ], [ -95.480652021347694, 29.517480143820904 ], [ -95.480587021293573, 29.517441143995768 ], [ -95.480389020409845, 29.517739143741327 ], [ -95.479775021154637, 29.51866214360648 ], [ -95.479561020341862, 29.518985144289008 ], [ -95.479352020207173, 29.519301144166267 ], [ -95.479167020198616, 29.519622144001765 ], [ -95.479057020987355, 29.519877144467223 ], [ -95.478995020690434, 29.520091144126642 ], [ -95.478932020544534, 29.520367144198978 ], [ -95.478922020972746, 29.520534144497976 ], [ -95.478896020261729, 29.520705144705882 ], [ -95.478944021013916, 29.520904144062538 ], [ -95.478951021199649, 29.520991144084668 ], [ -95.478944021047255, 29.521050144792842 ], [ -95.478955021087145, 29.521180144352073 ], [ -95.479001020285978, 29.521469144526563 ], [ -95.479051020240902, 29.521686144706475 ], [ -95.479137021221263, 29.521962144364231 ], [ -95.479480020429605, 29.522895144762352 ], [ -95.479629020881546, 29.523293144679229 ], [ -95.479656020827974, 29.523387144491377 ], [ -95.479699021069734, 29.523531145142044 ], [ -95.479733020885263, 29.523693144957111 ], [ -95.479757021455811, 29.523858144676616 ], [ -95.479780021116994, 29.524107145171286 ], [ -95.479781020743957, 29.524193144842449 ], [ -95.479797020788439, 29.524966145508213 ], [ -95.479819020736159, 29.526115145379041 ], [ -95.47982502099201, 29.526306145152812 ], [ -95.479887021394205, 29.526739145433769 ], [ -95.479970021168143, 29.527046145657611 ], [ -95.480128021170415, 29.527477145535336 ], [ -95.480251021145492, 29.527695145240777 ], [ -95.480576021230249, 29.528099145607815 ], [ -95.480850021684887, 29.528373145566487 ], [ -95.481041021932342, 29.528539145769756 ], [ -95.481187021422386, 29.528709146266372 ], [ -95.482197021851647, 29.52944414633884 ], [ -95.482500021587768, 29.529717146354777 ], [ -95.482733022442062, 29.530000146416715 ], [ -95.483031022075338, 29.530440145846928 ], [ -95.483168022676153, 29.530678146117083 ], [ -95.483319022504716, 29.531016146222775 ], [ -95.483425022536522, 29.531350146052677 ], [ -95.483486022223616, 29.531552146025707 ], [ -95.483536021838475, 29.531776146754254 ], [ -95.483580022885661, 29.532347146276571 ], [ -95.483697022630608, 29.535831147246824 ], [ -95.485662022764188, 29.53577414695776 ], [ -95.486018023445354, 29.535783146837851 ], [ -95.486655023336056, 29.535771147063464 ], [ -95.487709023661495, 29.535749147474164 ], [ -95.488839023810698, 29.535730147447339 ], [ -95.488782023654522, 29.53571314681372 ], [ -95.489065024452842, 29.535726146638979 ], [ -95.491941025042792, 29.535668146926643 ], [ -95.492209024512434, 29.535663146771867 ], [ -95.492334025202084, 29.535660147260771 ], [ -95.492863025319636, 29.53565014720186 ], [ -95.493601024827285, 29.535642146696087 ], [ -95.493901025271768, 29.535639146893228 ], [ -95.494040024722494, 29.535638146760771 ], [ -95.494152025637575, 29.535633146418913 ], [ -95.494233024748269, 29.535611146979978 ], [ -95.495118025617174, 29.535532146395752 ], [ -95.495176025440315, 29.535527146755701 ], [ -95.495825026106473, 29.535471146601715 ], [ -95.496122025279519, 29.535457146977954 ], [ -95.497578025891912, 29.535393146854602 ], [ -95.497901026579214, 29.53538514668649 ], [ -95.498953025979986, 29.535359146348696 ], [ -95.5011330272538, 29.535307146576599 ], [ -95.502410027556195, 29.535276146128517 ], [ -95.502450027023954, 29.535275146150955 ], [ -95.503315027794429, 29.535254146288981 ], [ -95.503398027387291, 29.535252146627858 ], [ -95.503483027599813, 29.535249146706157 ], [ -95.50463002807092, 29.53522214615603 ], [ -95.505438028592252, 29.535207146367725 ], [ -95.510612029003738, 29.535109145906045 ], [ -95.512434030259413, 29.535075146364125 ], [ -95.512536029708443, 29.535073146507955 ], [ -95.515243030199358, 29.535025145830566 ], [ -95.51552403018519, 29.535030146230167 ], [ -95.51575103074245, 29.534478145942142 ], [ -95.516060030573627, 29.533670145629852 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1578, "Tract": "48157673904", "Area_SqMi": 1.1943797962707714, "total_2009": 732, "total_2010": 743, "total_2011": 629, "total_2012": 601, "total_2013": 566, "total_2014": 548, "total_2015": 623, "total_2016": 554, "total_2017": 839, "total_2018": 877, "total_2019": 1016, "total_2020": 844, "age1": 242, "age2": 546, "age3": 223, "earn1": 454, "earn2": 274, "earn3": 283, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 2, "naics_s06": 0, "naics_s07": 56, "naics_s08": 0, "naics_s09": 3, "naics_s10": 18, "naics_s11": 4, "naics_s12": 327, "naics_s13": 2, "naics_s14": 11, "naics_s15": 44, "naics_s16": 303, "naics_s17": 1, "naics_s18": 68, "naics_s19": 162, "naics_s20": 0, "race1": 617, "race2": 162, "race3": 12, "race4": 212, "race5": 1, "race6": 7, "ethnicity1": 706, "ethnicity2": 305, "edu1": 153, "edu2": 166, "edu3": 224, "edu4": 226, "Shape_Length": 24521.525322278201, "Shape_Area": 33297264.518577736, "total_2021": 878, "total_2022": 1011 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.683426076368647, 29.601616154011676 ], [ -95.683979076136907, 29.601537154072748 ], [ -95.683349076383777, 29.600316153760279 ], [ -95.68277907591343, 29.599208153127972 ], [ -95.68269207600801, 29.599041153671607 ], [ -95.682672076038529, 29.599002153280331 ], [ -95.682566075864017, 29.598781153805206 ], [ -95.682463076046758, 29.598568153735229 ], [ -95.681320076153369, 29.596199153331423 ], [ -95.681110075813578, 29.595541153248519 ], [ -95.681005075246816, 29.595342152492879 ], [ -95.680660075104242, 29.594679153031535 ], [ -95.680540075295241, 29.594444152724027 ], [ -95.6800230747819, 29.593707152194074 ], [ -95.679524075448953, 29.592936152555779 ], [ -95.679239075449601, 29.592455152071484 ], [ -95.678203074154496, 29.590807152354131 ], [ -95.677934074815383, 29.590260151664829 ], [ -95.677848074080529, 29.59011915187871 ], [ -95.67760107473228, 29.59021015197499 ], [ -95.67737007487419, 29.590304152215296 ], [ -95.677218074462573, 29.590364151559168 ], [ -95.676874074079294, 29.59049115164272 ], [ -95.676339073992764, 29.590673151863527 ], [ -95.675654074273766, 29.590885152189916 ], [ -95.675159073438394, 29.591020152263155 ], [ -95.674324073677838, 29.591226152079262 ], [ -95.673712073792061, 29.591359152568664 ], [ -95.673140073034574, 29.591460151902581 ], [ -95.672903073359493, 29.591496152666299 ], [ -95.672266073246703, 29.591583152047605 ], [ -95.671757073414653, 29.591632152088643 ], [ -95.671396073228323, 29.591654152224251 ], [ -95.671163073075036, 29.591661152071659 ], [ -95.670824072611779, 29.591661152059398 ], [ -95.670508072525394, 29.591647152383647 ], [ -95.67014007290517, 29.591620152238079 ], [ -95.670040072379564, 29.591607152744366 ], [ -95.669800072744735, 29.591575152692783 ], [ -95.669445072346917, 29.591515152499291 ], [ -95.669113072646198, 29.59144515237416 ], [ -95.668775071848444, 29.591354151971604 ], [ -95.668135072389447, 29.591159152765776 ], [ -95.666902072106623, 29.590769152484281 ], [ -95.66660007156203, 29.590684152370279 ], [ -95.666171071368325, 29.590587152499712 ], [ -95.665942071636096, 29.590547152307714 ], [ -95.665589071044977, 29.590502152783131 ], [ -95.66524007125949, 29.590471152671775 ], [ -95.665008071726291, 29.590463152216127 ], [ -95.66457707162759, 29.590468152243997 ], [ -95.664266070586649, 29.590486152547232 ], [ -95.663869071035464, 29.590533152089709 ], [ -95.66358407137659, 29.590577152546562 ], [ -95.663048070749639, 29.590686152045958 ], [ -95.66295707118951, 29.590699152885492 ], [ -95.662906070796978, 29.59071315238328 ], [ -95.66276007041219, 29.59075215263692 ], [ -95.662683070247539, 29.590774152513632 ], [ -95.66259407093753, 29.590800152256637 ], [ -95.662395070951121, 29.590852152929873 ], [ -95.662292070248654, 29.590875152097276 ], [ -95.662185070986411, 29.590899152636482 ], [ -95.661857070737213, 29.590960152768208 ], [ -95.661748070136497, 29.59097415233752 ], [ -95.661642070308787, 29.590987152564026 ], [ -95.661337070063453, 29.591026152222298 ], [ -95.661237070661855, 29.591034152333787 ], [ -95.661144070632716, 29.591043152981786 ], [ -95.661059070315574, 29.591049152479027 ], [ -95.660906069829636, 29.59105815284337 ], [ -95.660840070178423, 29.591061152214625 ], [ -95.660778069731606, 29.591065152213311 ], [ -95.660651070314216, 29.591072152972213 ], [ -95.659908070419789, 29.591089152338338 ], [ -95.660000069891339, 29.593555152951446 ], [ -95.659982070066235, 29.594114153206483 ], [ -95.660132070292036, 29.59764315382527 ], [ -95.66019407047051, 29.599315154252853 ], [ -95.660425071071572, 29.604191155447793 ], [ -95.660506070625416, 29.605887155303151 ], [ -95.660544070536631, 29.606778155462706 ], [ -95.660550070492775, 29.607287155871632 ], [ -95.660585070752632, 29.608128156099035 ], [ -95.662068071594874, 29.607611156222475 ], [ -95.663717071549755, 29.607037155922256 ], [ -95.665390072154139, 29.606454156014248 ], [ -95.671524073163155, 29.604175155027708 ], [ -95.672472073616845, 29.603822154726195 ], [ -95.673869074115999, 29.603306154294366 ], [ -95.673986074150278, 29.603263155026358 ], [ -95.674031074496739, 29.603250154732731 ], [ -95.674065074055164, 29.603240154803661 ], [ -95.675557074876792, 29.602839154480694 ], [ -95.675653074212789, 29.602816154209226 ], [ -95.676836074550181, 29.602575154520206 ], [ -95.677958075269132, 29.602402154225171 ], [ -95.679127075294986, 29.602275153979868 ], [ -95.68015907523116, 29.602124154217577 ], [ -95.681741076152861, 29.601842153909811 ], [ -95.682785075980163, 29.601664154187649 ], [ -95.683426076368647, 29.601616154011676 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1579, "Tract": "48157673801", "Area_SqMi": 4.7925939625984819, "total_2009": 571, "total_2010": 496, "total_2011": 430, "total_2012": 401, "total_2013": 452, "total_2014": 484, "total_2015": 487, "total_2016": 570, "total_2017": 505, "total_2018": 496, "total_2019": 493, "total_2020": 468, "age1": 116, "age2": 249, "age3": 114, "earn1": 100, "earn2": 177, "earn3": 202, "naics_s01": 0, "naics_s02": 4, "naics_s03": 1, "naics_s04": 86, "naics_s05": 37, "naics_s06": 31, "naics_s07": 72, "naics_s08": 2, "naics_s09": 0, "naics_s10": 4, "naics_s11": 5, "naics_s12": 64, "naics_s13": 0, "naics_s14": 22, "naics_s15": 0, "naics_s16": 12, "naics_s17": 14, "naics_s18": 117, "naics_s19": 8, "naics_s20": 0, "race1": 352, "race2": 30, "race3": 2, "race4": 75, "race5": 3, "race6": 17, "ethnicity1": 308, "ethnicity2": 171, "edu1": 92, "edu2": 95, "edu3": 94, "edu4": 82, "Shape_Length": 74433.741939141852, "Shape_Area": 133609317.07070062, "total_2021": 492, "total_2022": 479 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.758393094668321, 29.583536148117915 ], [ -95.758128094358113, 29.583229147596501 ], [ -95.757781094425752, 29.582861147571791 ], [ -95.757719094738732, 29.582796147354536 ], [ -95.757631094884218, 29.582720147594724 ], [ -95.757421094881565, 29.582606148055319 ], [ -95.75732409399896, 29.582538147333359 ], [ -95.756991094734389, 29.58221814729065 ], [ -95.756922094800501, 29.582128147702996 ], [ -95.756817094311458, 29.581973147726238 ], [ -95.75678209431878, 29.581908147254445 ], [ -95.756742093794202, 29.581845147586492 ], [ -95.756626094483778, 29.581695147541627 ], [ -95.756600094051848, 29.581667147875454 ], [ -95.756280094144472, 29.581440147480837 ], [ -95.756099093825767, 29.581292147747973 ], [ -95.755677093529229, 29.580896146924527 ], [ -95.755615093615233, 29.580848147385936 ], [ -95.755596093780326, 29.58083514735107 ], [ -95.755451094237912, 29.580738147769374 ], [ -95.755065093682688, 29.580467147285965 ], [ -95.753720093886486, 29.579630147301923 ], [ -95.753604093613745, 29.579553147425433 ], [ -95.753523093734429, 29.579499147245404 ], [ -95.753217092878003, 29.579314147437024 ], [ -95.752991092782707, 29.579157146685436 ], [ -95.752838093604254, 29.579036146911371 ], [ -95.75274109353262, 29.578945147504424 ], [ -95.752210092588257, 29.578666147426123 ], [ -95.751753092842137, 29.578420146758837 ], [ -95.751112092908642, 29.578093146625132 ], [ -95.750706092654397, 29.577914146863563 ], [ -95.750333092165306, 29.577761146956441 ], [ -95.750113092506808, 29.577660146529951 ], [ -95.749886092242534, 29.577574146892982 ], [ -95.749779092566655, 29.577519147017128 ], [ -95.749361091747375, 29.57736514651172 ], [ -95.74878609223839, 29.577164147182984 ], [ -95.748710091609041, 29.577137146459112 ], [ -95.748516091963324, 29.577075146684216 ], [ -95.748347091419774, 29.577027146561026 ], [ -95.748084091599793, 29.576953147241767 ], [ -95.747844091957077, 29.576899146399693 ], [ -95.747560091928648, 29.576853146569071 ], [ -95.747239091999049, 29.576784146543623 ], [ -95.746806091298211, 29.576666146978116 ], [ -95.746685091339117, 29.576641146606686 ], [ -95.746604091340075, 29.576629146506413 ], [ -95.746522091805474, 29.576617146414886 ], [ -95.746399091354945, 29.576607146551414 ], [ -95.746195091674267, 29.57658314693338 ], [ -95.745544091161236, 29.576481147233789 ], [ -95.745300090976542, 29.576449146955472 ], [ -95.744888091268081, 29.576419146973862 ], [ -95.743939090494607, 29.576391146465518 ], [ -95.743281090936122, 29.576437147180652 ], [ -95.743035090771968, 29.576459146763632 ], [ -95.742215089949823, 29.576555147252197 ], [ -95.741971090288445, 29.576584146525718 ], [ -95.741729090342076, 29.576627146828304 ], [ -95.741363090421487, 29.576684146593742 ], [ -95.741077090180326, 29.576721147246467 ], [ -95.740997089556373, 29.57673714672022 ], [ -95.740878090492643, 29.576768147085538 ], [ -95.740607090302348, 29.576856146730904 ], [ -95.740294089842664, 29.57694614697547 ], [ -95.739949089924295, 29.57706714707448 ], [ -95.739832089818762, 29.577103147040376 ], [ -95.739477089450588, 29.577199146825802 ], [ -95.738727089597276, 29.577462147231611 ], [ -95.738404089580428, 29.577623147065733 ], [ -95.738299089094212, 29.57767914711896 ], [ -95.737862089520462, 29.577951146951602 ], [ -95.737579089270653, 29.578162147310952 ], [ -95.73721908896448, 29.578459147457714 ], [ -95.736619088606659, 29.579006147619928 ], [ -95.736284089186071, 29.579325147484415 ], [ -95.735932088931946, 29.579678147845836 ], [ -95.73530408894807, 29.580440148372947 ], [ -95.735241088758741, 29.58053214788449 ], [ -95.73502508863082, 29.580881147688434 ], [ -95.734796088193917, 29.581265147694808 ], [ -95.734614088194718, 29.581668148594584 ], [ -95.734523088954063, 29.581908148150923 ], [ -95.734465088287621, 29.582192148312448 ], [ -95.734433088311349, 29.582296148235272 ], [ -95.734299088702898, 29.582599148073307 ], [ -95.734275088498947, 29.582668148139462 ], [ -95.734192088752465, 29.582947148372682 ], [ -95.734133088996231, 29.583194148875513 ], [ -95.733872088913458, 29.58421514841903 ], [ -95.733851088938323, 29.584322149009846 ], [ -95.73383508900551, 29.584465149175529 ], [ -95.733813088304856, 29.584572148790212 ], [ -95.733775088937463, 29.584712148521966 ], [ -95.733656088367965, 29.585243149309218 ], [ -95.733584088293171, 29.585525149022885 ], [ -95.73352308842496, 29.58591814936824 ], [ -95.733485088968905, 29.586241149614501 ], [ -95.73348408870082, 29.586457149186749 ], [ -95.733455088211755, 29.586745149671092 ], [ -95.733398088982938, 29.586992148940883 ], [ -95.733330088526969, 29.587185149065586 ], [ -95.733263088175704, 29.587284149099833 ], [ -95.73316808875046, 29.58740214974798 ], [ -95.733065088401105, 29.58755814944395 ], [ -95.732992088838074, 29.587687149553943 ], [ -95.732699088118991, 29.588057149254606 ], [ -95.732290088378363, 29.588622150017478 ], [ -95.732221088462296, 29.588712149385234 ], [ -95.732142088273392, 29.5887951500974 ], [ -95.73194008784597, 29.588976149491241 ], [ -95.731792088671099, 29.589149150122495 ], [ -95.731292088427537, 29.58952615034223 ], [ -95.731225088151277, 29.589568149625901 ], [ -95.731045087579361, 29.589657150132624 ], [ -95.73084808789686, 29.589788150160135 ], [ -95.730813088008532, 29.589807149840972 ], [ -95.730698087890801, 29.58984714993284 ], [ -95.7305160879162, 29.589931149992374 ], [ -95.730312088014159, 29.590054149710941 ], [ -95.73024608770767, 29.590098149704232 ], [ -95.730152088211042, 29.590168150446612 ], [ -95.729754087421824, 29.590360149775638 ], [ -95.729191087408168, 29.59058515026112 ], [ -95.728694087355464, 29.590762150579025 ], [ -95.728067087725321, 29.590943149942071 ], [ -95.72766608764357, 29.591028150431921 ], [ -95.727382087168152, 29.591075150216636 ], [ -95.727015087513365, 29.5911291504109 ], [ -95.726523086792625, 29.591180150479154 ], [ -95.726234086702519, 29.59118215064705 ], [ -95.725946086653408, 29.591169150486298 ], [ -95.725864086707759, 29.591160150046438 ], [ -95.725742086647287, 29.591140150498461 ], [ -95.725581086322165, 29.591107150715555 ], [ -95.725351086601123, 29.591027149997956 ], [ -95.725234086733494, 29.590993150819095 ], [ -95.725073086876066, 29.59095815020989 ], [ -95.724951086104937, 29.590940150128546 ], [ -95.724871087060293, 29.590924150366448 ], [ -95.724328085948969, 29.590663150780657 ], [ -95.724181085925366, 29.590598150150782 ], [ -95.72406608656658, 29.590558150424947 ], [ -95.723720086347157, 29.590301150065311 ], [ -95.723619086327062, 29.59023815001526 ], [ -95.723514086291516, 29.590182150156739 ], [ -95.723439085757235, 29.590096150618987 ], [ -95.723354086059501, 29.590017150584998 ], [ -95.7232620862587, 29.589945150384082 ], [ -95.723131086193149, 29.589856150626915 ], [ -95.723056085714887, 29.589721150045257 ], [ -95.722994086376715, 29.589627150116804 ], [ -95.722897085994632, 29.589510150425955 ], [ -95.722700086133969, 29.589326150471415 ], [ -95.722676086077939, 29.589297150557201 ], [ -95.722601086249142, 29.589168150347824 ], [ -95.722559085645159, 29.589106149898441 ], [ -95.722489086299163, 29.589017150116078 ], [ -95.722437085576871, 29.588961149879268 ], [ -95.722399086263451, 29.588858149968424 ], [ -95.722349085507844, 29.58875914977688 ], [ -95.722291086219514, 29.58866314977811 ], [ -95.722202086215376, 29.588542150138345 ], [ -95.722110085742401, 29.588381150167535 ], [ -95.72205208524629, 29.588245150160777 ], [ -95.721869085207814, 29.587843150324897 ], [ -95.721753085484551, 29.587573150255352 ], [ -95.721699085138212, 29.587476149447973 ], [ -95.721637085284925, 29.587382149668667 ], [ -95.721449085393942, 29.586943149780687 ], [ -95.721368085774813, 29.586738149497588 ], [ -95.721320085958666, 29.586600149356222 ], [ -95.721246085621075, 29.586319149700934 ], [ -95.721245085281822, 29.586211149421164 ], [ -95.721225085739007, 29.58606814987666 ], [ -95.72120108515179, 29.585961149182577 ], [ -95.72115508521513, 29.585823149220342 ], [ -95.721133085555877, 29.585680149360815 ], [ -95.721107085767898, 29.585574149386851 ], [ -95.721017084943767, 29.585297149485402 ], [ -95.720947085103816, 29.585127149713738 ], [ -95.720879085030887, 29.584996149056906 ], [ -95.720832085246471, 29.584747149186533 ], [ -95.720775085357701, 29.584316149411329 ], [ -95.720735085311802, 29.584140149492807 ], [ -95.720633085388982, 29.583790149337823 ], [ -95.720614085481941, 29.583502149029943 ], [ -95.720592084680959, 29.583323148573069 ], [ -95.720532085209896, 29.582603148547683 ], [ -95.720505084819365, 29.582461148708369 ], [ -95.720435085337712, 29.582216149203294 ], [ -95.720416085364391, 29.582072148484123 ], [ -95.7204420850086, 29.581894148774261 ], [ -95.720452085319124, 29.581641148321673 ], [ -95.720435084522947, 29.581498148871432 ], [ -95.720401084992957, 29.581320148468382 ], [ -95.720374085380797, 29.58121414896144 ], [ -95.72037108446672, 29.581070148725708 ], [ -95.720380084824114, 29.580783148811221 ], [ -95.72038408482274, 29.580631148725299 ], [ -95.720415084746733, 29.5802351479932 ], [ -95.720431084639003, 29.579875148127421 ], [ -95.720425084624452, 29.579695147928014 ], [ -95.720469084794999, 29.579300148241966 ], [ -95.720473084597216, 29.579228148008632 ], [ -95.720471085325443, 29.579083147788474 ], [ -95.720475084473733, 29.578939148519392 ], [ -95.72048408496866, 29.578831147718724 ], [ -95.720500084453604, 29.578724148031572 ], [ -95.720507084694162, 29.578616147827546 ], [ -95.720507085088428, 29.578544147912449 ], [ -95.720478085143824, 29.578075148054648 ], [ -95.720467084586232, 29.57731814739185 ], [ -95.720452084436204, 29.577138147560923 ], [ -95.720380084345791, 29.576710147556074 ], [ -95.720363085006497, 29.576639147910466 ], [ -95.720299084359596, 29.576430147398028 ], [ -95.720170084179401, 29.575718147342503 ], [ -95.720140085089625, 29.575503147543778 ], [ -95.720087084897841, 29.575000146986472 ], [ -95.720057084365294, 29.574858147195666 ], [ -95.720041084561544, 29.574642147503472 ], [ -95.720028085000592, 29.574571147465921 ], [ -95.720009085044509, 29.574501147521222 ], [ -95.719948084131062, 29.574328147591935 ], [ -95.719845084501472, 29.574092146756247 ], [ -95.719776084103515, 29.573902147197231 ], [ -95.719759084666009, 29.573794146834583 ], [ -95.719734084695489, 29.573688147253176 ], [ -95.719670084950025, 29.573517146935341 ], [ -95.719583084244476, 29.573354146598003 ], [ -95.719482084821621, 29.57319614731427 ], [ -95.719331084634376, 29.572981147156185 ], [ -95.719214084566175, 29.572832147029899 ], [ -95.719137084560757, 29.57274814697492 ], [ -95.718783083731836, 29.57239514682842 ], [ -95.718692083931998, 29.572322146389673 ], [ -95.718215084097608, 29.571977147229262 ], [ -95.718116084018448, 29.571912146853322 ], [ -95.717840083838979, 29.571754146702972 ], [ -95.717592084346748, 29.571624146721614 ], [ -95.717444084202796, 29.571559146487651 ], [ -95.717302084113825, 29.571506146686197 ], [ -95.717066083684514, 29.571417147006862 ], [ -95.716873083459802, 29.571353146500496 ], [ -95.716630083843469, 29.571311146583202 ], [ -95.716426083070004, 29.571284146779959 ], [ -95.716219083969165, 29.571291146442022 ], [ -95.715931083295942, 29.571273147043762 ], [ -95.715726083420009, 29.571253146807518 ], [ -95.715108083320217, 29.571227146620853 ], [ -95.714736082819911, 29.571226146931036 ], [ -95.714324082717411, 29.571245147039708 ], [ -95.714091082504908, 29.571269146584434 ], [ -95.713997082930149, 29.571279146370557 ], [ -95.713670082894751, 29.571320146609146 ], [ -95.713351082927971, 29.571395147074924 ], [ -95.713229082866604, 29.571416146428607 ], [ -95.713031082389733, 29.571467147128832 ], [ -95.712132082914323, 29.571731146804581 ], [ -95.711866082801691, 29.571830146900218 ], [ -95.711533082423855, 29.57197414716034 ], [ -95.711061082143104, 29.572197147008502 ], [ -95.710108082380827, 29.572702147535693 ], [ -95.709054081411011, 29.573398147156855 ], [ -95.708553081617325, 29.573774147513902 ], [ -95.708365081744162, 29.57392014761658 ], [ -95.707968081298489, 29.574230147656433 ], [ -95.707632081705299, 29.574498147598078 ], [ -95.707409080923398, 29.574678148081624 ], [ -95.707197081593677, 29.574848147999443 ], [ -95.707133081552911, 29.574894147407761 ], [ -95.706552081343446, 29.575237147510659 ], [ -95.706025081156255, 29.575522147755894 ], [ -95.705896080965815, 29.5756121476708 ], [ -95.705794081073208, 29.575673148361059 ], [ -95.705723081074666, 29.575709147762595 ], [ -95.705390081185953, 29.575855147818004 ], [ -95.705277080428218, 29.575898147659895 ], [ -95.704963080804546, 29.575987147740271 ], [ -95.704804080341447, 29.576026148129046 ], [ -95.704439080627566, 29.576089148503186 ], [ -95.704070080692958, 29.576128148526934 ], [ -95.703699080251923, 29.576133148439908 ], [ -95.703575080484697, 29.576128148227109 ], [ -95.703246080182367, 29.576103147679721 ], [ -95.702959079951555, 29.576074148543068 ], [ -95.70279707987514, 29.576047147974471 ], [ -95.70257408038735, 29.575994147781824 ], [ -95.702438080539835, 29.575954148068348 ], [ -95.702258080084107, 29.575872147953493 ], [ -95.701736080207326, 29.575584148218972 ], [ -95.700936079822753, 29.575074148069209 ], [ -95.700763080120623, 29.574976147864163 ], [ -95.70061808004553, 29.57490614817765 ], [ -95.700467079624772, 29.574848147942834 ], [ -95.700313079819836, 29.574797148376334 ], [ -95.700260080002508, 29.574775147998849 ], [ -95.700088079133479, 29.574706147858034 ], [ -95.700015079430159, 29.574672148083437 ], [ -95.699983079473, 29.574650147592241 ], [ -95.699955079078961, 29.574623147700464 ], [ -95.699711079822606, 29.574332147977117 ], [ -95.6995220789548, 29.574141147398702 ], [ -95.699437079242216, 29.574063147470394 ], [ -95.699199079070823, 29.573862147402433 ], [ -95.69912607888962, 29.573775148069554 ], [ -95.698967079589153, 29.573609148027202 ], [ -95.698621078916545, 29.573299147458133 ], [ -95.698465079298813, 29.57313114745423 ], [ -95.698328079057802, 29.572996148083931 ], [ -95.698068079059453, 29.572671147707076 ], [ -95.697935078951446, 29.572533147901964 ], [ -95.697847078455013, 29.572457147944149 ], [ -95.697646078500924, 29.572298147177566 ], [ -95.697321078197277, 29.572076147483681 ], [ -95.697217078280147, 29.571999147242803 ], [ -95.696721078306481, 29.571635147855115 ], [ -95.696656078005063, 29.571591147548581 ], [ -95.696515078115752, 29.571515147382588 ], [ -95.696406078498981, 29.571465147154839 ], [ -95.696100078732599, 29.571356147815138 ], [ -95.696021078093708, 29.571336147209212 ], [ -95.695856078410614, 29.57133114774043 ], [ -95.695774077834969, 29.571335147048778 ], [ -95.695455077770291, 29.571410147588438 ], [ -95.695297077968391, 29.571452147271884 ], [ -95.695176078644764, 29.571475147097242 ], [ -95.695018077896947, 29.571516147215618 ], [ -95.69486307813871, 29.571568147705364 ], [ -95.694789078293681, 29.571598147751065 ], [ -95.694667078155746, 29.571696147604207 ], [ -95.694633078319342, 29.571714147160979 ], [ -95.694477077806866, 29.571762147277074 ], [ -95.694365077589936, 29.571807147565334 ], [ -95.694294077774217, 29.571844147408289 ], [ -95.69415607817713, 29.571924147279621 ], [ -95.694090077899844, 29.571967147645939 ], [ -95.693968077654105, 29.572065147781036 ], [ -95.693523077922947, 29.572441147788979 ], [ -95.693269077313602, 29.572677147312955 ], [ -95.693174077472804, 29.572747147493345 ], [ -95.693038077182479, 29.572829148077385 ], [ -95.69299007766287, 29.57288714797405 ], [ -95.692833077684242, 29.573141147973438 ], [ -95.69248207713251, 29.57358714753369 ], [ -95.691904077738656, 29.574290148286259 ], [ -95.691446077113639, 29.574802148659785 ], [ -95.691233076842323, 29.575022148487061 ], [ -95.691203077466866, 29.575046148494256 ], [ -95.691091077311512, 29.575091147940093 ], [ -95.6909120771288, 29.575181148731129 ], [ -95.690715076819856, 29.575312148428544 ], [ -95.690652077265639, 29.57535914876421 ], [ -95.690593076855237, 29.575409148186687 ], [ -95.690513077613531, 29.575492148267305 ], [ -95.690466076614911, 29.575551148647989 ], [ -95.6903700773059, 29.575711148293365 ], [ -95.690337076630414, 29.57577714837797 ], [ -95.690310076656388, 29.575845148243694 ], [ -95.690278077418654, 29.57595014887643 ], [ -95.690259076653945, 29.575980148958465 ], [ -95.690143076766375, 29.576083148576181 ], [ -95.689873077148931, 29.576306148795588 ], [ -95.689166076478571, 29.576913148387696 ], [ -95.688805076841604, 29.577220148897304 ], [ -95.688113076655853, 29.577840148638796 ], [ -95.688002076992277, 29.577947148893919 ], [ -95.687626075988788, 29.578330149545792 ], [ -95.687422076146035, 29.578557148803522 ], [ -95.687309076677948, 29.578708149378983 ], [ -95.686908076162482, 29.579211148975947 ], [ -95.686562076718815, 29.579703149201723 ], [ -95.686294076411428, 29.58006614915956 ], [ -95.686102076197116, 29.580344149273376 ], [ -95.686048076588932, 29.580442150031711 ], [ -95.686005076507627, 29.580543149246378 ], [ -95.685723076214614, 29.580904149416394 ], [ -95.68549907580109, 29.581207149500294 ], [ -95.685072076185065, 29.581694150230618 ], [ -95.684536076085791, 29.582194150229192 ], [ -95.684294075725518, 29.582390149757519 ], [ -95.683745075624643, 29.582879149889333 ], [ -95.683364075867502, 29.58309615043688 ], [ -95.683218075905359, 29.583164149922609 ], [ -95.682918075511481, 29.583283150186329 ], [ -95.68279907538593, 29.583314149991317 ], [ -95.682678075339268, 29.583337150586008 ], [ -95.681985074807486, 29.583433150322293 ], [ -95.681779075477849, 29.5834471500646 ], [ -95.681408074741171, 29.583460150272629 ], [ -95.68111907524785, 29.583459150527293 ], [ -95.681037074778246, 29.583451150439458 ], [ -95.680547074715278, 29.583385150349187 ], [ -95.680426075074607, 29.583364149953713 ], [ -95.680305074699916, 29.583338150632461 ], [ -95.68022607526764, 29.583317150745049 ], [ -95.679882074708175, 29.583196150756187 ], [ -95.678883074184, 29.582764150312066 ], [ -95.678811073956538, 29.582728150031663 ], [ -95.678674074356024, 29.582647150590809 ], [ -95.678277074252506, 29.582365150386018 ], [ -95.678155074454011, 29.582279150380469 ], [ -95.678074074343812, 29.582643150659756 ], [ -95.678026074503634, 29.582857150727722 ], [ -95.677682074098712, 29.584392150375987 ], [ -95.677284074342523, 29.586179151269054 ], [ -95.67718307404553, 29.586635150747266 ], [ -95.67713307429716, 29.587137151626266 ], [ -95.677132073913569, 29.5871941516872 ], [ -95.677387073898643, 29.587149151019105 ], [ -95.677615074818689, 29.587109151467814 ], [ -95.67764607481935, 29.587101151393973 ], [ -95.677810074303977, 29.587058151111759 ], [ -95.677948074067572, 29.587021151056895 ], [ -95.680238075459556, 29.586702150882566 ], [ -95.680747075247609, 29.586636150600089 ], [ -95.680904075533604, 29.586636151343594 ], [ -95.681124075163467, 29.586697150765573 ], [ -95.681885075357684, 29.587222151114641 ], [ -95.682037075978229, 29.587327150923254 ], [ -95.682502076072751, 29.587609150949209 ], [ -95.682741075422868, 29.587675150941806 ], [ -95.682835075350553, 29.587681151145635 ], [ -95.683113075907187, 29.587684151510707 ], [ -95.684124076369983, 29.587697151248932 ], [ -95.686955076687056, 29.587615151370549 ], [ -95.688168077312085, 29.587581150564812 ], [ -95.690930078043991, 29.587554151197878 ], [ -95.691552078237336, 29.587482150501376 ], [ -95.691823078265728, 29.587427150546429 ], [ -95.692194078128253, 29.587130151185356 ], [ -95.692514077804347, 29.586773151041761 ], [ -95.692662077708349, 29.586413150549291 ], [ -95.692822078049147, 29.586025150856742 ], [ -95.693313078010902, 29.585003150256028 ], [ -95.693652077903039, 29.58450315003105 ], [ -95.693761078607253, 29.584389150051724 ], [ -95.693998078843293, 29.584145149956569 ], [ -95.694489078903004, 29.583931150243252 ], [ -95.695023078603441, 29.583711149887186 ], [ -95.695476078970543, 29.583683150145614 ], [ -95.695979078899299, 29.583601150009965 ], [ -95.696426078519593, 29.583626149443109 ], [ -95.696772078937002, 29.58364515020136 ], [ -95.697080078862683, 29.583634149718158 ], [ -95.697093078977588, 29.583908149638845 ], [ -95.697193079152015, 29.584194149910164 ], [ -95.697250079292743, 29.584519149898199 ], [ -95.697288079381764, 29.585953150371548 ], [ -95.697326079049915, 29.586767150063825 ], [ -95.697351079685404, 29.588141150442866 ], [ -95.697338079501677, 29.588169150434858 ], [ -95.697402079745856, 29.589867151183253 ], [ -95.697402079915037, 29.591412151348884 ], [ -95.697423079415415, 29.591850151216676 ], [ -95.697459079697751, 29.592555151981589 ], [ -95.697509080207652, 29.594782152437325 ], [ -95.697535079972468, 29.596381152470123 ], [ -95.697566079736205, 29.597096152864033 ], [ -95.697611080141456, 29.59809115303009 ], [ -95.697624080396054, 29.600103153524437 ], [ -95.697634080119414, 29.600176153114642 ], [ -95.697652079667691, 29.600299153595056 ], [ -95.697909080042209, 29.600271152920548 ], [ -95.69916407988714, 29.60013315318945 ], [ -95.699240079937113, 29.600125153510419 ], [ -95.70235708132013, 29.599784152933971 ], [ -95.703723081321854, 29.599634152801695 ], [ -95.708575082858488, 29.599125152669505 ], [ -95.71024008299581, 29.598951152622632 ], [ -95.710340083585152, 29.598940152517748 ], [ -95.713567084230107, 29.598584152237379 ], [ -95.71380008402835, 29.598559152102169 ], [ -95.71433608465567, 29.598504152474536 ], [ -95.715503084511695, 29.598383151859867 ], [ -95.720683085417349, 29.597846151925818 ], [ -95.721567086221555, 29.597758152372602 ], [ -95.724992086839237, 29.597397151646629 ], [ -95.72679508759299, 29.597192151790821 ], [ -95.72934108748332, 29.596912151753646 ], [ -95.729952088625808, 29.596835151160079 ], [ -95.730096088084565, 29.596818151529174 ], [ -95.730746088018961, 29.596758151857976 ], [ -95.730962088486351, 29.596717151738549 ], [ -95.731624088816389, 29.59664015134085 ], [ -95.73221808846354, 29.596564151265895 ], [ -95.732863088928312, 29.596513151084 ], [ -95.73380908949359, 29.596437151350841 ], [ -95.735702089728122, 29.596228151266246 ], [ -95.73576409006462, 29.596221151440176 ], [ -95.736621090230656, 29.596133151562196 ], [ -95.737004089645907, 29.596055151468249 ], [ -95.737312090165389, 29.595990151297485 ], [ -95.738553089851109, 29.595667150639485 ], [ -95.738617090561448, 29.595654150712747 ], [ -95.739507090298176, 29.595418150846935 ], [ -95.740181090952831, 29.59518915054424 ], [ -95.74085509076221, 29.594928150806261 ], [ -95.741442091322057, 29.594622150623273 ], [ -95.742029090586186, 29.594279150402688 ], [ -95.742562091278529, 29.593942150403532 ], [ -95.742985091626068, 29.593578150105799 ], [ -95.743103091365612, 29.593476150181946 ], [ -95.743230091727071, 29.593369150323259 ], [ -95.743898091245057, 29.592765150118996 ], [ -95.744965091373771, 29.59179914953344 ], [ -95.746346092468613, 29.590659149334613 ], [ -95.747114091867829, 29.590004149586072 ], [ -95.747877092791285, 29.589352148925109 ], [ -95.747980092613858, 29.589266149192284 ], [ -95.748121091968017, 29.589146148944835 ], [ -95.748782092969478, 29.588587149198474 ], [ -95.749293092968387, 29.58818614877493 ], [ -95.749605092365186, 29.58790514901353 ], [ -95.749966092424714, 29.587592148816498 ], [ -95.750424092576452, 29.587205148731986 ], [ -95.750777092637136, 29.586926148732168 ], [ -95.750818093287663, 29.586895148547249 ], [ -95.751233093057081, 29.586523149006474 ], [ -95.751609093551636, 29.586243148452958 ], [ -95.752087093333159, 29.585890148199979 ], [ -95.752506093444524, 29.585598148175329 ], [ -95.752548093116886, 29.585569148466817 ], [ -95.753012093403299, 29.585314148261958 ], [ -95.753305093882219, 29.585143147885734 ], [ -95.753328093907072, 29.585131147972259 ], [ -95.753383093853955, 29.58509914821455 ], [ -95.753512093767071, 29.585026148497693 ], [ -95.753891094180673, 29.585465148207611 ], [ -95.754715093826988, 29.585204147827262 ], [ -95.755000094378602, 29.585134148687374 ], [ -95.755078094178245, 29.585108148073591 ], [ -95.755321094336125, 29.585027148254767 ], [ -95.75538809418083, 29.585010147839107 ], [ -95.755723094543697, 29.584927148204041 ], [ -95.756253094681696, 29.584719148430928 ], [ -95.756609093842172, 29.584580148255121 ], [ -95.757035094015251, 29.584335148249384 ], [ -95.757825094371029, 29.583864148161513 ], [ -95.758000094949253, 29.583767148291724 ], [ -95.758393094668321, 29.583536148117915 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1580, "Tract": "48157673903", "Area_SqMi": 0.9144070303786147, "total_2009": 196, "total_2010": 183, "total_2011": 207, "total_2012": 354, "total_2013": 343, "total_2014": 324, "total_2015": 333, "total_2016": 330, "total_2017": 379, "total_2018": 273, "total_2019": 225, "total_2020": 190, "age1": 64, "age2": 127, "age3": 53, "earn1": 48, "earn2": 107, "earn3": 89, "naics_s01": 0, "naics_s02": 2, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 4, "naics_s07": 46, "naics_s08": 2, "naics_s09": 8, "naics_s10": 11, "naics_s11": 15, "naics_s12": 31, "naics_s13": 0, "naics_s14": 26, "naics_s15": 0, "naics_s16": 15, "naics_s17": 5, "naics_s18": 51, "naics_s19": 14, "naics_s20": 0, "race1": 134, "race2": 32, "race3": 5, "race4": 63, "race5": 1, "race6": 9, "ethnicity1": 194, "ethnicity2": 50, "edu1": 37, "edu2": 42, "edu3": 43, "edu4": 58, "Shape_Length": 26529.022895499205, "Shape_Area": 25492102.983682211, "total_2021": 218, "total_2022": 244 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.678074074343812, 29.582643150659756 ], [ -95.678155074454011, 29.582279150380469 ], [ -95.677969074136215, 29.582147150184884 ], [ -95.677499074300442, 29.581795150278897 ], [ -95.67736607382308, 29.581709149763658 ], [ -95.677325074328976, 29.581671150307571 ], [ -95.677281074440927, 29.581630149958052 ], [ -95.677162073919476, 29.581530150483495 ], [ -95.677099074159685, 29.581485149676457 ], [ -95.676898073617537, 29.581358150465437 ], [ -95.676781074033485, 29.581256150450365 ], [ -95.676249074028433, 29.580856150381159 ], [ -95.676082073458886, 29.580750149698805 ], [ -95.67583707366758, 29.58061615037462 ], [ -95.675581073166754, 29.580499150044382 ], [ -95.67511207390595, 29.580272149803271 ], [ -95.674997073030724, 29.580230150093985 ], [ -95.674411073508338, 29.580055149935106 ], [ -95.673301072952469, 29.579776149832231 ], [ -95.672982072484785, 29.579701149654799 ], [ -95.672702072471864, 29.579639150121249 ], [ -95.671985072489306, 29.579468150237329 ], [ -95.671631072882221, 29.579368150256926 ], [ -95.671478072137432, 29.579313149853938 ], [ -95.671293072040896, 29.579234149714964 ], [ -95.670916072409355, 29.57908715000627 ], [ -95.670363071808993, 29.578844149390751 ], [ -95.670291072007657, 29.578808149776833 ], [ -95.66970207199337, 29.578476149899945 ], [ -95.669454072187378, 29.578346150028185 ], [ -95.669381072324072, 29.5783121496221 ], [ -95.66912307133579, 29.578132149309145 ], [ -95.669039071403887, 29.578053149904836 ], [ -95.668921071706293, 29.577952149462323 ], [ -95.668859071734857, 29.577904149261432 ], [ -95.668794071748394, 29.577860149731478 ], [ -95.668764071981101, 29.57783514956704 ], [ -95.668655072096783, 29.577727149190441 ], [ -95.668579071550653, 29.577641149253186 ], [ -95.668363071207466, 29.577377149466663 ], [ -95.668295071170732, 29.57728714954829 ], [ -95.668201071399636, 29.577126149313017 ], [ -95.668155070991602, 29.576988149736884 ], [ -95.668111071804617, 29.576887149546586 ], [ -95.668077071541362, 29.576821149145101 ], [ -95.66799707121416, 29.576694149681856 ], [ -95.667816071502429, 29.576453148991806 ], [ -95.667797071787234, 29.576421149153873 ], [ -95.66772807106382, 29.576213148928542 ], [ -95.667702071303879, 29.576108149685258 ], [ -95.667635071353843, 29.575752149113921 ], [ -95.667595071312064, 29.575429149219048 ], [ -95.667569071334242, 29.575141149547463 ], [ -95.66755907157328, 29.575070148756566 ], [ -95.667552071009567, 29.574979148871936 ], [ -95.667536071488172, 29.574782148873702 ], [ -95.667537070866615, 29.57467314926701 ], [ -95.667552071644963, 29.574421149288245 ], [ -95.667540070896138, 29.574388148529888 ], [ -95.667484071264326, 29.574291149216116 ], [ -95.667436071424376, 29.574192148560048 ], [ -95.667426071220405, 29.574167148993492 ], [ -95.667395071306402, 29.574090148606178 ], [ -95.667372070836237, 29.574020148924046 ], [ -95.667345071439897, 29.573915149000712 ], [ -95.667325071139118, 29.573808149003316 ], [ -95.667312071375548, 29.573700149097093 ], [ -95.667312071202431, 29.573664149079203 ], [ -95.667343071304046, 29.573341148840715 ], [ -95.667374070957678, 29.573162148636577 ], [ -95.667390070834315, 29.573091148424542 ], [ -95.667448070668257, 29.572996149126688 ], [ -95.667514071137916, 29.572904148235327 ], [ -95.667633071212464, 29.572757148440662 ], [ -95.667710071316279, 29.572672148891424 ], [ -95.667812071333884, 29.572332148807323 ], [ -95.667756070965353, 29.572196148220947 ], [ -95.66772207127525, 29.572092148257791 ], [ -95.667696071103393, 29.571986148754188 ], [ -95.667678070919322, 29.57187914804765 ], [ -95.667663070626872, 29.571735148811399 ], [ -95.667660071190568, 29.571627148017392 ], [ -95.667664070741282, 29.57155514832106 ], [ -95.667688071590376, 29.571376148737262 ], [ -95.667712071383747, 29.571270148400689 ], [ -95.667948071295854, 29.570392148455173 ], [ -95.668169071117106, 29.569548147825845 ], [ -95.668326071153615, 29.569176147622798 ], [ -95.668347070744829, 29.569106148276017 ], [ -95.66837007143522, 29.568999148057539 ], [ -95.668378070892672, 29.568928147885305 ], [ -95.668384071133588, 29.568787147722915 ], [ -95.668387071093534, 29.568737147523215 ], [ -95.668407070982269, 29.568639147697819 ], [ -95.668426071233341, 29.568506147420084 ], [ -95.668418070672359, 29.568447147359148 ], [ -95.668338071316072, 29.568262147607339 ], [ -95.668294071117188, 29.568290147265564 ], [ -95.667767071309257, 29.568626148093003 ], [ -95.666965070787967, 29.569136148102452 ], [ -95.665169070659701, 29.570279148388551 ], [ -95.664890070471799, 29.57045614810237 ], [ -95.664894070654171, 29.570539148273138 ], [ -95.664894070413069, 29.570812148638552 ], [ -95.66489707054771, 29.570989148434819 ], [ -95.664908070781706, 29.57114814865211 ], [ -95.664931070775168, 29.571892148560153 ], [ -95.664966070751134, 29.572997148412178 ], [ -95.665024070703325, 29.57485114886487 ], [ -95.665078070684245, 29.576561149798298 ], [ -95.665119071221611, 29.577878149453156 ], [ -95.665138070794114, 29.578495149835689 ], [ -95.665163071009061, 29.579266150192883 ], [ -95.66518307076619, 29.579918149883071 ], [ -95.665192070465523, 29.580210149845861 ], [ -95.665203070994821, 29.580588149919485 ], [ -95.665210070662297, 29.580818150011854 ], [ -95.665223070767027, 29.581204150328784 ], [ -95.665237071275811, 29.581629150616294 ], [ -95.664969070938838, 29.58163515011363 ], [ -95.664253070782166, 29.58165415030269 ], [ -95.663582071022759, 29.581671150498462 ], [ -95.663060069906123, 29.581684150510586 ], [ -95.662783069828222, 29.581691150515677 ], [ -95.662546070736639, 29.58169715046597 ], [ -95.66229006985121, 29.58170415076723 ], [ -95.661606069894532, 29.581721150656378 ], [ -95.661348069587504, 29.581728150707725 ], [ -95.661093070151566, 29.581735151152536 ], [ -95.660563069414266, 29.581749150390682 ], [ -95.659727069648469, 29.581748150916241 ], [ -95.659552069784795, 29.581752150924977 ], [ -95.659759070308155, 29.587282151448218 ], [ -95.659796069605832, 29.588273152445012 ], [ -95.659902070249842, 29.590930152562784 ], [ -95.659905069680235, 29.591002152410358 ], [ -95.659908070419789, 29.591089152338338 ], [ -95.660651070314216, 29.591072152972213 ], [ -95.660778069731606, 29.591065152213311 ], [ -95.660840070178423, 29.591061152214625 ], [ -95.660906069829636, 29.59105815284337 ], [ -95.661059070315574, 29.591049152479027 ], [ -95.661144070632716, 29.591043152981786 ], [ -95.661237070661855, 29.591034152333787 ], [ -95.661337070063453, 29.591026152222298 ], [ -95.661642070308787, 29.590987152564026 ], [ -95.661748070136497, 29.59097415233752 ], [ -95.661857070737213, 29.590960152768208 ], [ -95.662185070986411, 29.590899152636482 ], [ -95.662292070248654, 29.590875152097276 ], [ -95.662395070951121, 29.590852152929873 ], [ -95.66259407093753, 29.590800152256637 ], [ -95.662683070247539, 29.590774152513632 ], [ -95.66276007041219, 29.59075215263692 ], [ -95.662906070796978, 29.59071315238328 ], [ -95.66295707118951, 29.590699152885492 ], [ -95.663048070749639, 29.590686152045958 ], [ -95.66358407137659, 29.590577152546562 ], [ -95.663869071035464, 29.590533152089709 ], [ -95.664266070586649, 29.590486152547232 ], [ -95.66457707162759, 29.590468152243997 ], [ -95.665008071726291, 29.590463152216127 ], [ -95.66524007125949, 29.590471152671775 ], [ -95.665589071044977, 29.590502152783131 ], [ -95.665942071636096, 29.590547152307714 ], [ -95.666171071368325, 29.590587152499712 ], [ -95.66660007156203, 29.590684152370279 ], [ -95.666902072106623, 29.590769152484281 ], [ -95.668135072389447, 29.591159152765776 ], [ -95.668775071848444, 29.591354151971604 ], [ -95.669113072646198, 29.59144515237416 ], [ -95.669445072346917, 29.591515152499291 ], [ -95.669800072744735, 29.591575152692783 ], [ -95.670040072379564, 29.591607152744366 ], [ -95.67014007290517, 29.591620152238079 ], [ -95.670508072525394, 29.591647152383647 ], [ -95.670824072611779, 29.591661152059398 ], [ -95.671163073075036, 29.591661152071659 ], [ -95.671396073228323, 29.591654152224251 ], [ -95.671757073414653, 29.591632152088643 ], [ -95.672266073246703, 29.591583152047605 ], [ -95.672903073359493, 29.591496152666299 ], [ -95.673140073034574, 29.591460151902581 ], [ -95.673712073792061, 29.591359152568664 ], [ -95.674324073677838, 29.591226152079262 ], [ -95.675159073438394, 29.591020152263155 ], [ -95.675654074273766, 29.590885152189916 ], [ -95.676339073992764, 29.590673151863527 ], [ -95.676874074079294, 29.59049115164272 ], [ -95.677218074462573, 29.590364151559168 ], [ -95.67737007487419, 29.590304152215296 ], [ -95.67760107473228, 29.59021015197499 ], [ -95.677848074080529, 29.59011915187871 ], [ -95.677785074182992, 29.590015151788428 ], [ -95.677716074573908, 29.589881151617451 ], [ -95.677656074786213, 29.589763152077161 ], [ -95.677525074342498, 29.589443152141225 ], [ -95.677361074512561, 29.588966151227932 ], [ -95.677124074003302, 29.587866151107729 ], [ -95.677132073913569, 29.5871941516872 ], [ -95.67713307429716, 29.587137151626266 ], [ -95.67718307404553, 29.586635150747266 ], [ -95.677284074342523, 29.586179151269054 ], [ -95.677682074098712, 29.584392150375987 ], [ -95.678026074503634, 29.582857150727722 ], [ -95.678074074343812, 29.582643150659756 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1581, "Tract": "48157673501", "Area_SqMi": 3.0663768647454508, "total_2009": 146, "total_2010": 136, "total_2011": 330, "total_2012": 426, "total_2013": 468, "total_2014": 429, "total_2015": 428, "total_2016": 416, "total_2017": 416, "total_2018": 513, "total_2019": 546, "total_2020": 501, "age1": 187, "age2": 269, "age3": 123, "earn1": 175, "earn2": 206, "earn3": 198, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 3, "naics_s06": 13, "naics_s07": 90, "naics_s08": 1, "naics_s09": 17, "naics_s10": 36, "naics_s11": 0, "naics_s12": 33, "naics_s13": 0, "naics_s14": 6, "naics_s15": 31, "naics_s16": 154, "naics_s17": 1, "naics_s18": 118, "naics_s19": 57, "naics_s20": 0, "race1": 361, "race2": 108, "race3": 8, "race4": 92, "race5": 1, "race6": 9, "ethnicity1": 423, "ethnicity2": 156, "edu1": 71, "edu2": 86, "edu3": 134, "edu4": 101, "Shape_Length": 43477.454932186643, "Shape_Area": 85485338.832648307, "total_2021": 565, "total_2022": 579 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.74222709352405, 29.641571160025173 ], [ -95.742062092655743, 29.641481160250752 ], [ -95.741623092753173, 29.641306159812103 ], [ -95.741239092874153, 29.641220160333585 ], [ -95.740599092808154, 29.64119616039963 ], [ -95.740434092403916, 29.641234160464499 ], [ -95.740135092995104, 29.641302160641544 ], [ -95.739935092972999, 29.641267160187045 ], [ -95.739584092996381, 29.641215160434577 ], [ -95.739262092090513, 29.641139159982632 ], [ -95.739088092283026, 29.641094159819712 ], [ -95.738618092402163, 29.640943159903998 ], [ -95.737202091619451, 29.640480159846387 ], [ -95.736588091532965, 29.640257160097804 ], [ -95.735726091122302, 29.6399811598341 ], [ -95.735486091889598, 29.63992816013095 ], [ -95.734977090889231, 29.639785159687925 ], [ -95.734339091071419, 29.639792160518681 ], [ -95.734170090962891, 29.633324158638544 ], [ -95.725860088663978, 29.633437159168835 ], [ -95.725850088611367, 29.63298815855865 ], [ -95.725798088166471, 29.630590158441063 ], [ -95.725796088449556, 29.630533158063717 ], [ -95.725750088651225, 29.628414158478442 ], [ -95.725705087966574, 29.626363157370363 ], [ -95.725663088481028, 29.625134157263687 ], [ -95.725279088132723, 29.625144157340838 ], [ -95.720330087304163, 29.625198157673704 ], [ -95.720344086990536, 29.624882157439391 ], [ -95.720245087305088, 29.62343515703931 ], [ -95.720081086499945, 29.623461157653438 ], [ -95.717805085737908, 29.623511157330093 ], [ -95.716540086287097, 29.623545157367381 ], [ -95.715026085175083, 29.623545157630858 ], [ -95.714064085078775, 29.623545157043004 ], [ -95.714066085081711, 29.623604157165044 ], [ -95.714127085490887, 29.625004157864794 ], [ -95.714175084871798, 29.625997158236405 ], [ -95.714182085392991, 29.62631415764778 ], [ -95.714217084992768, 29.628236158767727 ], [ -95.714219085369862, 29.628368158129074 ], [ -95.714231085414781, 29.629302158637643 ], [ -95.714249085345301, 29.630190158967491 ], [ -95.714255085762275, 29.630771159295335 ], [ -95.714256085251108, 29.630835158715367 ], [ -95.714257086021775, 29.630912158577637 ], [ -95.714263085325101, 29.631457158750241 ], [ -95.714259085680467, 29.633074159424087 ], [ -95.714256086146406, 29.633976159259834 ], [ -95.714263085582104, 29.634470159512322 ], [ -95.714242086226747, 29.634751159531366 ], [ -95.714264085672212, 29.634902159652032 ], [ -95.714244085917286, 29.635045159540734 ], [ -95.714248086232402, 29.635158159846174 ], [ -95.714228085423628, 29.635271159405761 ], [ -95.714273085887783, 29.635460160252247 ], [ -95.714284086163474, 29.636572160460545 ], [ -95.714284085719981, 29.636948160021149 ], [ -95.714285086339146, 29.638152160859576 ], [ -95.714310086197244, 29.640049161087394 ], [ -95.714352086101272, 29.641842161323709 ], [ -95.714375086456542, 29.642840161531883 ], [ -95.714417086048499, 29.644095162002543 ], [ -95.714434086233496, 29.644618162002097 ], [ -95.714451086119027, 29.64526516228749 ], [ -95.714474086640848, 29.645912161728806 ], [ -95.714554086727688, 29.648603162563873 ], [ -95.714575086940428, 29.649456162900027 ], [ -95.714654086651976, 29.65217216340556 ], [ -95.714722086924922, 29.654573163478492 ], [ -95.714741086496431, 29.655545164382062 ], [ -95.714747086735329, 29.655843163919013 ], [ -95.714761086950006, 29.656932163901253 ], [ -95.714774087011861, 29.657420164428917 ], [ -95.71478608682493, 29.657831164670245 ], [ -95.71479708665467, 29.658240164507365 ], [ -95.714806086778609, 29.658557164327071 ], [ -95.714991087130144, 29.658694164399673 ], [ -95.715229086862379, 29.658869164894018 ], [ -95.715263086610747, 29.658887165038237 ], [ -95.715855087316982, 29.659243165074042 ], [ -95.716445087078682, 29.659521164652197 ], [ -95.717090087697713, 29.659809164597146 ], [ -95.717310087656614, 29.659881165084329 ], [ -95.717738088236104, 29.660024164898743 ], [ -95.718592087542561, 29.660250165250943 ], [ -95.720549088758403, 29.660395164605845 ], [ -95.722092089298087, 29.660490164659031 ], [ -95.72300908930481, 29.66057716440864 ], [ -95.725946089415473, 29.660482164649093 ], [ -95.72604008968284, 29.660489164387005 ], [ -95.726547089565386, 29.660528164555139 ], [ -95.731867091735495, 29.660938164889643 ], [ -95.732745091833493, 29.660991164267475 ], [ -95.733557091484855, 29.661050164564333 ], [ -95.736142092507166, 29.661271164811815 ], [ -95.736252092795468, 29.661277164643263 ], [ -95.736482092684042, 29.661297164802878 ], [ -95.736627092777951, 29.661313164571016 ], [ -95.737075093128638, 29.661349164622834 ], [ -95.737703093251767, 29.661380164417952 ], [ -95.738228092703622, 29.661426164038605 ], [ -95.73869809334461, 29.661485164152726 ], [ -95.738691093466699, 29.661183164783012 ], [ -95.738683093409321, 29.660872164602146 ], [ -95.738681093327813, 29.660858164288989 ], [ -95.738657093565777, 29.660703164404989 ], [ -95.738649093259241, 29.65962116392312 ], [ -95.738644093343737, 29.659495163677487 ], [ -95.73862609319805, 29.657908163331797 ], [ -95.738624092777513, 29.657703163208122 ], [ -95.738607092711078, 29.65686716309143 ], [ -95.73857709317906, 29.654898162831298 ], [ -95.738556092463043, 29.653516162781528 ], [ -95.73854809278312, 29.652979162432612 ], [ -95.738546092870109, 29.652850162580517 ], [ -95.738541092840819, 29.652488162528936 ], [ -95.73853909318133, 29.652330162762865 ], [ -95.738509093081191, 29.650413162197097 ], [ -95.738502092957091, 29.649160162307993 ], [ -95.738497092062772, 29.648891162229095 ], [ -95.738487093014939, 29.647675161666353 ], [ -95.738478092689746, 29.647505161525284 ], [ -95.738446092775618, 29.647175161295653 ], [ -95.738466092851255, 29.646820161275841 ], [ -95.738457092752185, 29.645902161200961 ], [ -95.738447091943584, 29.645569161362463 ], [ -95.738439092585992, 29.64547816117539 ], [ -95.7384460929037, 29.645391161300381 ], [ -95.738471092820774, 29.645311161097684 ], [ -95.73851309240942, 29.645231160823741 ], [ -95.738571092926719, 29.645177161080024 ], [ -95.738646092845983, 29.645131161054852 ], [ -95.73873309236437, 29.645096161025737 ], [ -95.73883209292444, 29.645076161371424 ], [ -95.738945092776007, 29.645069160922542 ], [ -95.7391990921694, 29.645062161040094 ], [ -95.739334092104158, 29.64504916133107 ], [ -95.739467093081444, 29.645050161010868 ], [ -95.739603092823415, 29.645043160663537 ], [ -95.740316092892641, 29.645031161151934 ], [ -95.740408092539653, 29.645020161259648 ], [ -95.740493092405885, 29.644998161334716 ], [ -95.740571093038412, 29.644961161038772 ], [ -95.740715093312218, 29.644868160597021 ], [ -95.740845092521283, 29.644760160705076 ], [ -95.740960092955831, 29.644649160771561 ], [ -95.741007092814442, 29.644589160579887 ], [ -95.741046092930418, 29.64452916055647 ], [ -95.741072093257969, 29.644469160819046 ], [ -95.741086093154919, 29.644410160525243 ], [ -95.741087092796604, 29.644347161053282 ], [ -95.741073093048385, 29.644223160866414 ], [ -95.741003093028823, 29.643925160416522 ], [ -95.740964092947294, 29.643756161126007 ], [ -95.740942092738877, 29.64362316023702 ], [ -95.740935093249448, 29.643521160978711 ], [ -95.740940092727286, 29.643339160421316 ], [ -95.740943092663642, 29.643308160221206 ], [ -95.740975093284391, 29.643158160238883 ], [ -95.741033093447697, 29.643004160206697 ], [ -95.741083093310564, 29.642904160760704 ], [ -95.741142092553687, 29.642810160726498 ], [ -95.741233093170408, 29.642693160558629 ], [ -95.741277093012499, 29.642638160797294 ], [ -95.741302093101211, 29.642607160071837 ], [ -95.741825093622069, 29.642019160428418 ], [ -95.74222709352405, 29.641571160025173 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1582, "Tract": "48157672905", "Area_SqMi": 1.1132270608551, "total_2009": 80, "total_2010": 82, "total_2011": 192, "total_2012": 173, "total_2013": 193, "total_2014": 224, "total_2015": 264, "total_2016": 267, "total_2017": 295, "total_2018": 385, "total_2019": 343, "total_2020": 466, "age1": 169, "age2": 231, "age3": 105, "earn1": 245, "earn2": 185, "earn3": 75, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 1, "naics_s05": 0, "naics_s06": 0, "naics_s07": 143, "naics_s08": 4, "naics_s09": 2, "naics_s10": 7, "naics_s11": 3, "naics_s12": 4, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 298, "naics_s17": 0, "naics_s18": 28, "naics_s19": 14, "naics_s20": 0, "race1": 274, "race2": 147, "race3": 7, "race4": 60, "race5": 0, "race6": 17, "ethnicity1": 321, "ethnicity2": 184, "edu1": 91, "edu2": 93, "edu3": 90, "edu4": 62, "Shape_Length": 25133.242988272985, "Shape_Area": 31034865.149483614, "total_2021": 519, "total_2022": 505 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.701977085933052, 29.706174174648325 ], [ -95.701983085826811, 29.706122174457718 ], [ -95.701800085199565, 29.701372173495901 ], [ -95.7017840856101, 29.700951173617877 ], [ -95.701779085434381, 29.700834173938862 ], [ -95.70177808501451, 29.700809173313129 ], [ -95.701648085718219, 29.6973231731229 ], [ -95.701635085773887, 29.696952172482696 ], [ -95.701606084991312, 29.696147172875236 ], [ -95.701488085111862, 29.692962171630839 ], [ -95.70145908458079, 29.692192171507443 ], [ -95.701372085203303, 29.689825171384467 ], [ -95.698435084041392, 29.68981717151139 ], [ -95.694145082562343, 29.68984517204866 ], [ -95.694142083387533, 29.689311172007255 ], [ -95.694136082613667, 29.688146171776079 ], [ -95.694125082549249, 29.686767170689901 ], [ -95.694117082734834, 29.685799171008785 ], [ -95.694117082333747, 29.684243170612671 ], [ -95.694129082378382, 29.684139170213193 ], [ -95.694125083172949, 29.684074170152659 ], [ -95.694123082988412, 29.684034170314607 ], [ -95.692531082064974, 29.684051170436483 ], [ -95.69246808210417, 29.684052170449249 ], [ -95.691303082344803, 29.684188170610106 ], [ -95.690615081480445, 29.684497170687525 ], [ -95.690533081480467, 29.684535170313346 ], [ -95.689743081339302, 29.684901170390273 ], [ -95.688877081658319, 29.68507417123087 ], [ -95.688196081750206, 29.685116170907104 ], [ -95.687932080827309, 29.685109170795954 ], [ -95.687941081464089, 29.686137171254337 ], [ -95.687949081576789, 29.686936171320593 ], [ -95.687956081155932, 29.687511171604605 ], [ -95.687959081858892, 29.687772171790911 ], [ -95.687966081132828, 29.688210171817666 ], [ -95.687989081316985, 29.688829171899304 ], [ -95.687978081359702, 29.689871171684175 ], [ -95.6879990818679, 29.692210172517225 ], [ -95.687997081996443, 29.69353317247252 ], [ -95.687997082099301, 29.693551172321531 ], [ -95.68799608134124, 29.69478417295468 ], [ -95.687995081581633, 29.695428172759705 ], [ -95.688015081582321, 29.696680173099352 ], [ -95.688026082151794, 29.697406173534844 ], [ -95.688032082199513, 29.697832173717138 ], [ -95.688034081991347, 29.697972173580279 ], [ -95.68801208237565, 29.700938174170052 ], [ -95.688011081837658, 29.701026174479132 ], [ -95.688012082222329, 29.701074173743283 ], [ -95.688033082453302, 29.703014174473804 ], [ -95.688036082291646, 29.703237174689654 ], [ -95.68809308171727, 29.705063175267753 ], [ -95.688114082538775, 29.706286175583806 ], [ -95.688118082548172, 29.706514175500256 ], [ -95.688132082671316, 29.70729917575725 ], [ -95.688132081878592, 29.707369175587107 ], [ -95.688132082008579, 29.707455175042607 ], [ -95.688132082401594, 29.70753517577948 ], [ -95.688132082442209, 29.707650175074001 ], [ -95.691010082883707, 29.707415175599152 ], [ -95.698892084946266, 29.706769175140423 ], [ -95.700035085742428, 29.706676174559874 ], [ -95.701158085747664, 29.706584174473111 ], [ -95.701457085897005, 29.706559175058164 ], [ -95.701564085912509, 29.706553175087315 ], [ -95.701983085823983, 29.706512175125955 ], [ -95.701981085634529, 29.706383174478724 ], [ -95.701979085932777, 29.706248175133926 ], [ -95.701977085933052, 29.706174174648325 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1583, "Tract": "48157673802", "Area_SqMi": 1.0381919183436414, "total_2009": 104, "total_2010": 67, "total_2011": 180, "total_2012": 361, "total_2013": 329, "total_2014": 285, "total_2015": 167, "total_2016": 153, "total_2017": 148, "total_2018": 220, "total_2019": 207, "total_2020": 187, "age1": 27, "age2": 105, "age3": 57, "earn1": 42, "earn2": 77, "earn3": 70, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 24, "naics_s06": 11, "naics_s07": 34, "naics_s08": 1, "naics_s09": 0, "naics_s10": 3, "naics_s11": 0, "naics_s12": 53, "naics_s13": 3, "naics_s14": 7, "naics_s15": 4, "naics_s16": 35, "naics_s17": 4, "naics_s18": 1, "naics_s19": 6, "naics_s20": 0, "race1": 80, "race2": 51, "race3": 0, "race4": 56, "race5": 0, "race6": 2, "ethnicity1": 165, "ethnicity2": 24, "edu1": 32, "edu2": 42, "edu3": 32, "edu4": 56, "Shape_Length": 23366.51028487544, "Shape_Area": 28943013.800194044, "total_2021": 196, "total_2022": 189 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.697652079667691, 29.600299153595056 ], [ -95.697634080119414, 29.600176153114642 ], [ -95.697624080396054, 29.600103153524437 ], [ -95.697611080141456, 29.59809115303009 ], [ -95.697566079736205, 29.597096152864033 ], [ -95.697535079972468, 29.596381152470123 ], [ -95.697509080207652, 29.594782152437325 ], [ -95.697459079697751, 29.592555151981589 ], [ -95.697423079415415, 29.591850151216676 ], [ -95.697402079915037, 29.591412151348884 ], [ -95.697402079745856, 29.589867151183253 ], [ -95.697338079501677, 29.588169150434858 ], [ -95.697351079685404, 29.588141150442866 ], [ -95.697326079049915, 29.586767150063825 ], [ -95.697288079381764, 29.585953150371548 ], [ -95.697250079292743, 29.584519149898199 ], [ -95.697193079152015, 29.584194149910164 ], [ -95.697093078977588, 29.583908149638845 ], [ -95.697080078862683, 29.583634149718158 ], [ -95.696772078937002, 29.58364515020136 ], [ -95.696426078519593, 29.583626149443109 ], [ -95.695979078899299, 29.583601150009965 ], [ -95.695476078970543, 29.583683150145614 ], [ -95.695023078603441, 29.583711149887186 ], [ -95.694489078903004, 29.583931150243252 ], [ -95.693998078843293, 29.584145149956569 ], [ -95.693761078607253, 29.584389150051724 ], [ -95.693652077903039, 29.58450315003105 ], [ -95.693313078010902, 29.585003150256028 ], [ -95.692822078049147, 29.586025150856742 ], [ -95.692662077708349, 29.586413150549291 ], [ -95.692514077804347, 29.586773151041761 ], [ -95.692194078128253, 29.587130151185356 ], [ -95.691823078265728, 29.587427150546429 ], [ -95.691552078237336, 29.587482150501376 ], [ -95.690930078043991, 29.587554151197878 ], [ -95.688168077312085, 29.587581150564812 ], [ -95.686955076687056, 29.587615151370549 ], [ -95.684124076369983, 29.587697151248932 ], [ -95.683113075907187, 29.587684151510707 ], [ -95.682835075350553, 29.587681151145635 ], [ -95.682741075422868, 29.587675150941806 ], [ -95.682502076072751, 29.587609150949209 ], [ -95.682037075978229, 29.587327150923254 ], [ -95.681885075357684, 29.587222151114641 ], [ -95.681124075163467, 29.586697150765573 ], [ -95.680904075533604, 29.586636151343594 ], [ -95.680747075247609, 29.586636150600089 ], [ -95.680238075459556, 29.586702150882566 ], [ -95.677948074067572, 29.587021151056895 ], [ -95.677810074303977, 29.587058151111759 ], [ -95.67764607481935, 29.587101151393973 ], [ -95.677615074818689, 29.587109151467814 ], [ -95.677387073898643, 29.587149151019105 ], [ -95.677132073913569, 29.5871941516872 ], [ -95.677124074003302, 29.587866151107729 ], [ -95.677361074512561, 29.588966151227932 ], [ -95.677525074342498, 29.589443152141225 ], [ -95.677656074786213, 29.589763152077161 ], [ -95.677716074573908, 29.589881151617451 ], [ -95.677785074182992, 29.590015151788428 ], [ -95.677848074080529, 29.59011915187871 ], [ -95.677934074815383, 29.590260151664829 ], [ -95.678203074154496, 29.590807152354131 ], [ -95.679239075449601, 29.592455152071484 ], [ -95.679524075448953, 29.592936152555779 ], [ -95.6800230747819, 29.593707152194074 ], [ -95.680540075295241, 29.594444152724027 ], [ -95.680660075104242, 29.594679153031535 ], [ -95.681005075246816, 29.595342152492879 ], [ -95.681110075813578, 29.595541153248519 ], [ -95.681320076153369, 29.596199153331423 ], [ -95.682463076046758, 29.598568153735229 ], [ -95.682566075864017, 29.598781153805206 ], [ -95.682672076038529, 29.599002153280331 ], [ -95.68269207600801, 29.599041153671607 ], [ -95.68277907591343, 29.599208153127972 ], [ -95.683349076383777, 29.600316153760279 ], [ -95.683979076136907, 29.601537154072748 ], [ -95.684139076422596, 29.601512154229283 ], [ -95.684446076718771, 29.601463154155944 ], [ -95.684764077099231, 29.601413154156688 ], [ -95.685696077245268, 29.60132515425596 ], [ -95.686762076793215, 29.601252153693441 ], [ -95.688080077152719, 29.601248153891706 ], [ -95.689065077972842, 29.60122315366706 ], [ -95.689722078431004, 29.601138154160427 ], [ -95.690580078447667, 29.601015153885644 ], [ -95.69061807848243, 29.601006154099089 ], [ -95.691299078529866, 29.600941153421214 ], [ -95.691342077989603, 29.60094215364548 ], [ -95.694865079777045, 29.600605153609802 ], [ -95.697652079667691, 29.600299153595056 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1584, "Tract": "48157672604", "Area_SqMi": 0.8955401447224518, "total_2009": 70, "total_2010": 48, "total_2011": 45, "total_2012": 46, "total_2013": 95, "total_2014": 112, "total_2015": 121, "total_2016": 103, "total_2017": 120, "total_2018": 93, "total_2019": 60, "total_2020": 37, "age1": 5, "age2": 23, "age3": 13, "earn1": 16, "earn2": 15, "earn3": 10, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 0, "naics_s07": 7, "naics_s08": 0, "naics_s09": 0, "naics_s10": 1, "naics_s11": 0, "naics_s12": 3, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 19, "naics_s17": 0, "naics_s18": 8, "naics_s19": 1, "naics_s20": 0, "race1": 15, "race2": 14, "race3": 0, "race4": 10, "race5": 2, "race6": 0, "ethnicity1": 31, "ethnicity2": 10, "edu1": 11, "edu2": 6, "edu3": 12, "edu4": 7, "Shape_Length": 25351.278663643032, "Shape_Area": 24966126.50258591, "total_2021": 34, "total_2022": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.688032082199513, 29.697832173717138 ], [ -95.688026082151794, 29.697406173534844 ], [ -95.688015081582321, 29.696680173099352 ], [ -95.687995081581633, 29.695428172759705 ], [ -95.68799608134124, 29.69478417295468 ], [ -95.687997082099301, 29.693551172321531 ], [ -95.687997081996443, 29.69353317247252 ], [ -95.6879990818679, 29.692210172517225 ], [ -95.687969081595668, 29.692210172465234 ], [ -95.686994081579556, 29.692226172423826 ], [ -95.686798081260264, 29.692218172136524 ], [ -95.686560081560444, 29.692200172134914 ], [ -95.68637708102122, 29.692152172374559 ], [ -95.686264081101058, 29.692116172704626 ], [ -95.686191080652108, 29.692084172092059 ], [ -95.68608408136663, 29.692032172153201 ], [ -95.68598208153557, 29.691980172194636 ], [ -95.685903081448998, 29.691935172471055 ], [ -95.685573081259548, 29.691716172267359 ], [ -95.685483080736091, 29.691699172489749 ], [ -95.684907080690166, 29.691339172637729 ], [ -95.684628081019028, 29.691140172559031 ], [ -95.684367080682719, 29.69093317179944 ], [ -95.684208080178735, 29.690792172357742 ], [ -95.683997080894287, 29.690589171808192 ], [ -95.683697080143659, 29.690194171909923 ], [ -95.683432079901209, 29.689934171648019 ], [ -95.683055080435025, 29.689524171556148 ], [ -95.682303080095011, 29.688739171913983 ], [ -95.682198080273352, 29.688630172229256 ], [ -95.68179808023109, 29.688173171549604 ], [ -95.681663079367127, 29.688109171465669 ], [ -95.681527079660839, 29.687929171598395 ], [ -95.681463080021814, 29.687839171905981 ], [ -95.680930079372601, 29.688045171911075 ], [ -95.680623079605425, 29.688142172138889 ], [ -95.68039507991827, 29.688208172163588 ], [ -95.680025078918646, 29.688296171651608 ], [ -95.679773079401897, 29.688344172312704 ], [ -95.679551079308851, 29.688376172030942 ], [ -95.679520079110546, 29.688381171915065 ], [ -95.679265079062361, 29.688410172138759 ], [ -95.679007079183194, 29.688430171541047 ], [ -95.678619079522193, 29.688444172275162 ], [ -95.678098078532557, 29.688447172286004 ], [ -95.676933078433862, 29.688463172009133 ], [ -95.676477078535029, 29.688483171976738 ], [ -95.676182078469012, 29.688508172363978 ], [ -95.674643077709362, 29.688713172464162 ], [ -95.674264077548727, 29.688786172266436 ], [ -95.673575078239935, 29.688786171797076 ], [ -95.672868077467555, 29.688791172295947 ], [ -95.67150407699755, 29.688821172153073 ], [ -95.669904077073426, 29.688830172292061 ], [ -95.669012076409203, 29.688842172735683 ], [ -95.663347074908629, 29.688927172715292 ], [ -95.663354075482545, 29.690546173042524 ], [ -95.66337707542084, 29.691020172714026 ], [ -95.663395074913424, 29.691389172794789 ], [ -95.66342207577155, 29.691654172985057 ], [ -95.663446075850075, 29.69184917274378 ], [ -95.663462075489264, 29.691997173427204 ], [ -95.663487075418971, 29.692140173112353 ], [ -95.663533075173788, 29.692422173483408 ], [ -95.663596075089885, 29.692728173689055 ], [ -95.663719075290189, 29.693258173302024 ], [ -95.663978075591587, 29.694038173290885 ], [ -95.66425907525668, 29.694882173437346 ], [ -95.664331075415802, 29.695125173554366 ], [ -95.66440207605271, 29.695360174111862 ], [ -95.664469076072805, 29.695671173493423 ], [ -95.664553076071002, 29.696011173904594 ], [ -95.664603075671522, 29.696322173941294 ], [ -95.664650076314047, 29.696658173858509 ], [ -95.664683076346805, 29.697015174558089 ], [ -95.664692075503822, 29.697191173772694 ], [ -95.664692076017005, 29.697392174216361 ], [ -95.664700076004877, 29.697539174615631 ], [ -95.665013076325778, 29.697698174720653 ], [ -95.665505075801207, 29.697978173970441 ], [ -95.665645076122829, 29.698058174407613 ], [ -95.666045076094264, 29.698287174054936 ], [ -95.666134076712837, 29.698343174670896 ], [ -95.666448076689591, 29.698542174713257 ], [ -95.666631076816429, 29.698657174568538 ], [ -95.666845076249842, 29.698791173991125 ], [ -95.66739107616236, 29.699084174466471 ], [ -95.668161076617224, 29.69952417439233 ], [ -95.668218076469302, 29.699557174919548 ], [ -95.668246077374221, 29.699573174445142 ], [ -95.668375076937366, 29.699647174736011 ], [ -95.669236076861722, 29.700139174993343 ], [ -95.670090077002172, 29.700628174737187 ], [ -95.670331077795865, 29.700741174283532 ], [ -95.670396077693553, 29.700771174787853 ], [ -95.670780077849557, 29.700952174306618 ], [ -95.670879077281668, 29.70099617443692 ], [ -95.67098807800852, 29.70105017492051 ], [ -95.671071077486076, 29.701092175042628 ], [ -95.671171078165713, 29.701143175221095 ], [ -95.671195078007869, 29.701155174463604 ], [ -95.671279077396903, 29.701197174934997 ], [ -95.671423078044114, 29.701270174848698 ], [ -95.671669077360391, 29.70142417450753 ], [ -95.671825077922179, 29.701506175179116 ], [ -95.672168078336696, 29.701678175268281 ], [ -95.672241078296054, 29.701714174717225 ], [ -95.672322077763795, 29.701755174786729 ], [ -95.672377077739867, 29.701782174656771 ], [ -95.672491078272671, 29.701839174719304 ], [ -95.672509078287106, 29.701850175284957 ], [ -95.673158078284459, 29.702241174989542 ], [ -95.673308077825681, 29.702330175267274 ], [ -95.674020078671816, 29.702752175077531 ], [ -95.674101079028816, 29.702800174693053 ], [ -95.674416078586461, 29.702987175201137 ], [ -95.674759078553365, 29.703189174730106 ], [ -95.674906078447975, 29.703272174816163 ], [ -95.67492907888203, 29.703285174814514 ], [ -95.675202078988448, 29.703439175502634 ], [ -95.675443079294311, 29.703578175068973 ], [ -95.675630078694255, 29.703685174795119 ], [ -95.675709079388284, 29.703730174925376 ], [ -95.675714078792254, 29.703663175510961 ], [ -95.675717078651488, 29.703570175516834 ], [ -95.675729078411891, 29.701403174762596 ], [ -95.67570507863806, 29.700768174513879 ], [ -95.675702078351563, 29.700680174906761 ], [ -95.675702078902574, 29.700623174138961 ], [ -95.675711078796255, 29.699511174036093 ], [ -95.675731079104438, 29.698288173641323 ], [ -95.675732078264019, 29.697965173645898 ], [ -95.675750078252278, 29.697349173741951 ], [ -95.675755078798048, 29.697065173757213 ], [ -95.675757078564828, 29.696622173690496 ], [ -95.675759078921217, 29.69640217379229 ], [ -95.67576907843474, 29.696115173889854 ], [ -95.675759078190794, 29.69587917332619 ], [ -95.675761079136763, 29.695838173104292 ], [ -95.67573607875822, 29.695727173883999 ], [ -95.676412079321338, 29.695647173130816 ], [ -95.676582078530188, 29.695636173231577 ], [ -95.677361078549566, 29.695637173452322 ], [ -95.677871079219457, 29.695630173821908 ], [ -95.677950079431369, 29.695634173517245 ], [ -95.678025079167824, 29.695633173649455 ], [ -95.678094079500667, 29.695624173100214 ], [ -95.67815607896739, 29.695623173808006 ], [ -95.679049079126145, 29.695610173650376 ], [ -95.679486080037037, 29.695602173501349 ], [ -95.679597079888808, 29.695604172993995 ], [ -95.679896080205665, 29.695608173554152 ], [ -95.680187080266194, 29.695633172938564 ], [ -95.680404080138715, 29.695653173679641 ], [ -95.680613080350057, 29.69566017314316 ], [ -95.680643079628595, 29.695660172987697 ], [ -95.681015079696181, 29.695660173072305 ], [ -95.681297080556277, 29.695654173381456 ], [ -95.681882079733242, 29.695638173120901 ], [ -95.682644080235434, 29.695638173520678 ], [ -95.682684080040886, 29.695637173233933 ], [ -95.683076080046064, 29.695630173167583 ], [ -95.683175080254472, 29.695623173115344 ], [ -95.683268080755255, 29.695610173672353 ], [ -95.683353080125372, 29.695591173120764 ], [ -95.683389080351972, 29.695580172833669 ], [ -95.683430080950686, 29.695567173437713 ], [ -95.683648080588299, 29.695477173590923 ], [ -95.683781080861806, 29.695368173468836 ], [ -95.68391108110265, 29.69527017305645 ], [ -95.684077081169605, 29.69517517333594 ], [ -95.684275080313384, 29.695393173206092 ], [ -95.684414081093266, 29.695521173191693 ], [ -95.684549080602437, 29.695706173074988 ], [ -95.684620081031952, 29.695920173317809 ], [ -95.684641081285022, 29.69604217370604 ], [ -95.684635081399719, 29.69607017306036 ], [ -95.684643081258002, 29.696137173281056 ], [ -95.684647080928926, 29.696200173386938 ], [ -95.684653080770602, 29.696372173448601 ], [ -95.684657080507492, 29.696459173047227 ], [ -95.684731081374224, 29.696457173474489 ], [ -95.684806080498532, 29.696456173392196 ], [ -95.684886081251889, 29.696455173426422 ], [ -95.68517308131004, 29.696488173714812 ], [ -95.685233080733965, 29.696504173733306 ], [ -95.685334081028046, 29.696541173257092 ], [ -95.685433081227572, 29.696592173221411 ], [ -95.685483081239624, 29.696626173689864 ], [ -95.68560408105823, 29.696727173813848 ], [ -95.685650081279476, 29.696771173618831 ], [ -95.685700081381697, 29.696820173569701 ], [ -95.685796081650651, 29.696916173523025 ], [ -95.685907081033193, 29.697024173811045 ], [ -95.685967081799632, 29.697080173564043 ], [ -95.6860260812539, 29.697135173690516 ], [ -95.686263081705718, 29.69735717363216 ], [ -95.686330081282492, 29.697417173454131 ], [ -95.686399081197763, 29.69748017336504 ], [ -95.686621081740668, 29.697663173398212 ], [ -95.686648081028153, 29.697684173583141 ], [ -95.686694081648099, 29.697719173993026 ], [ -95.686766081086574, 29.697767173435675 ], [ -95.686838081130659, 29.697806173839233 ], [ -95.686852082013473, 29.697812173264179 ], [ -95.686910081410034, 29.69783717348097 ], [ -95.686983081392171, 29.697863173892205 ], [ -95.68705408194144, 29.69788417398869 ], [ -95.687118081969885, 29.697901173805004 ], [ -95.687175081873818, 29.697913173270514 ], [ -95.687230081875711, 29.697921173422309 ], [ -95.687286081966548, 29.697923173375106 ], [ -95.687342081587019, 29.69792117383232 ], [ -95.68743108204562, 29.697912173976619 ], [ -95.687470081543381, 29.697881173658008 ], [ -95.68794408136759, 29.697839173237686 ], [ -95.688032082199513, 29.697832173717138 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1585, "Tract": "48157673104", "Area_SqMi": 1.8305099624486811, "total_2009": 429, "total_2010": 368, "total_2011": 204, "total_2012": 1061, "total_2013": 1189, "total_2014": 1282, "total_2015": 1319, "total_2016": 1400, "total_2017": 1328, "total_2018": 1368, "total_2019": 1661, "total_2020": 1635, "age1": 564, "age2": 757, "age3": 291, "earn1": 547, "earn2": 629, "earn3": 436, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 142, "naics_s05": 16, "naics_s06": 12, "naics_s07": 640, "naics_s08": 64, "naics_s09": 0, "naics_s10": 27, "naics_s11": 51, "naics_s12": 49, "naics_s13": 3, "naics_s14": 22, "naics_s15": 26, "naics_s16": 321, "naics_s17": 3, "naics_s18": 188, "naics_s19": 48, "naics_s20": 0, "race1": 1002, "race2": 245, "race3": 16, "race4": 315, "race5": 2, "race6": 32, "ethnicity1": 1082, "ethnicity2": 530, "edu1": 249, "edu2": 272, "edu3": 280, "edu4": 247, "Shape_Length": 28685.933002085974, "Shape_Area": 51031484.803957343, "total_2021": 1729, "total_2022": 1612 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.805108112282696, 29.712601172872702 ], [ -95.806026112679504, 29.711800172807017 ], [ -95.805100112274104, 29.710995172355712 ], [ -95.805021112713035, 29.710927172080481 ], [ -95.804733112317379, 29.710677171803624 ], [ -95.80469311209427, 29.71064217219309 ], [ -95.804454112252657, 29.710432171978042 ], [ -95.80355711144108, 29.709643172280185 ], [ -95.803426112107957, 29.709518172124355 ], [ -95.803156111354724, 29.709290172165481 ], [ -95.802779111640774, 29.708946171981097 ], [ -95.802650111597842, 29.708838171915978 ], [ -95.802147110971518, 29.708391172006689 ], [ -95.802023111640239, 29.7082951713728 ], [ -95.800806111031349, 29.707228172024678 ], [ -95.800202111188128, 29.706703171209156 ], [ -95.79995611104026, 29.70648817166218 ], [ -95.798932111006351, 29.705626170991138 ], [ -95.798865110605803, 29.705570170917103 ], [ -95.794984109333825, 29.702301170454881 ], [ -95.794247109344411, 29.701680171114322 ], [ -95.792882108228596, 29.700531170772198 ], [ -95.791867108378625, 29.699677169990053 ], [ -95.791588108201267, 29.699435170278733 ], [ -95.791478107943973, 29.699326170560258 ], [ -95.791444108229854, 29.699292170599268 ], [ -95.791369108445153, 29.699225169972358 ], [ -95.79133210805405, 29.699185169900485 ], [ -95.785303107007508, 29.69968017023638 ], [ -95.785100107183226, 29.69969717055864 ], [ -95.783451106191123, 29.699830170659123 ], [ -95.782724106425306, 29.699890170478749 ], [ -95.78161910539994, 29.69997917036055 ], [ -95.781102106200251, 29.70002117113934 ], [ -95.780919105381557, 29.700040171214223 ], [ -95.780222105262268, 29.700090171207691 ], [ -95.778865104978607, 29.700310171244158 ], [ -95.77884210513993, 29.700312170569696 ], [ -95.776492105062133, 29.700499171032146 ], [ -95.776204104818078, 29.700519170992212 ], [ -95.775942103965548, 29.700540170817867 ], [ -95.775668104665911, 29.700562171061108 ], [ -95.775477104051134, 29.700577171242994 ], [ -95.775484104098595, 29.700743170719111 ], [ -95.775502104107304, 29.700884171559945 ], [ -95.775554103834239, 29.701264171650536 ], [ -95.775577104390678, 29.701440171605313 ], [ -95.775702104760413, 29.702405171278446 ], [ -95.775722104584148, 29.703102171521124 ], [ -95.775738104039448, 29.704124171451152 ], [ -95.775830104658695, 29.704880172119978 ], [ -95.775921104235394, 29.705519172126817 ], [ -95.775932104646444, 29.705592171997434 ], [ -95.775938104843618, 29.706441172444173 ], [ -95.77581210483325, 29.706971172431246 ], [ -95.775626104547854, 29.707790172375457 ], [ -95.775425104531095, 29.708513172658474 ], [ -95.775120104444355, 29.709559173095119 ], [ -95.774808104972053, 29.710296173128739 ], [ -95.774765104664453, 29.710397173353126 ], [ -95.774614104536624, 29.710676173296164 ], [ -95.774352104008784, 29.711162173562606 ], [ -95.773788104085781, 29.71254017380673 ], [ -95.773513104184971, 29.713207173628394 ], [ -95.773303104737309, 29.713914173598386 ], [ -95.773259104075137, 29.714068174374884 ], [ -95.773586104407144, 29.714148173688969 ], [ -95.773866104397101, 29.714216173909353 ], [ -95.774269104235671, 29.714312173541749 ], [ -95.774930105176736, 29.714449173630697 ], [ -95.77507010439291, 29.714483173722563 ], [ -95.775699105374201, 29.714633173858324 ], [ -95.775925105497535, 29.714711173779108 ], [ -95.77624810512917, 29.714822174192694 ], [ -95.776554105485971, 29.714959174365347 ], [ -95.776838104827334, 29.71508617446392 ], [ -95.777126105187889, 29.715256173709189 ], [ -95.777506105971597, 29.715480174276493 ], [ -95.777588105023952, 29.715528174368149 ], [ -95.77760710527069, 29.715540173734315 ], [ -95.777979105795026, 29.715819174411426 ], [ -95.77809410535987, 29.715916174167425 ], [ -95.778380106172662, 29.716158174033517 ], [ -95.778511105715609, 29.716268174564792 ], [ -95.778722105581807, 29.71644617446022 ], [ -95.778790105863706, 29.716503174351676 ], [ -95.779116105741082, 29.716794174518032 ], [ -95.780627106259644, 29.718141174835154 ], [ -95.781091107000833, 29.718537174336362 ], [ -95.78164610719071, 29.718940174742819 ], [ -95.782217106951521, 29.719268175086452 ], [ -95.782854106521057, 29.719532174548327 ], [ -95.783504107305305, 29.719735175124189 ], [ -95.784012107196872, 29.719852175126629 ], [ -95.784101107728176, 29.719873174980425 ], [ -95.784159107680196, 29.719886174658985 ], [ -95.784915107456328, 29.719966174583789 ], [ -95.785761108244785, 29.719951175000897 ], [ -95.786572107729171, 29.719849174413405 ], [ -95.787356108138781, 29.71966517438057 ], [ -95.787558108131421, 29.719600174464574 ], [ -95.787792108046858, 29.719519174364439 ], [ -95.788097107986843, 29.719411174240513 ], [ -95.788559108188025, 29.719175174165549 ], [ -95.788962108862847, 29.718939174353924 ], [ -95.789306108382391, 29.718703174386505 ], [ -95.789816108325681, 29.718268173936092 ], [ -95.790096109252204, 29.71800117430643 ], [ -95.79036610870449, 29.717768173905078 ], [ -95.790731109362127, 29.717509173977746 ], [ -95.790990109175567, 29.717345173860309 ], [ -95.791339109067579, 29.717149173709778 ], [ -95.791793109460471, 29.716956174120263 ], [ -95.792409109815836, 29.716734174168327 ], [ -95.792858109439933, 29.716614173956398 ], [ -95.79304610957044, 29.716580173790035 ], [ -95.793206109140783, 29.716553174046471 ], [ -95.793677109792569, 29.716466173643372 ], [ -95.795025109687444, 29.716321173932993 ], [ -95.79683511012928, 29.716130173912564 ], [ -95.797786110347459, 29.716042173291829 ], [ -95.800198111760096, 29.715817173802186 ], [ -95.800376111294398, 29.715801173806476 ], [ -95.800972111115868, 29.715707172970536 ], [ -95.801432111899402, 29.71554017325214 ], [ -95.801850111416471, 29.715341173628843 ], [ -95.802195111444121, 29.715121173396142 ], [ -95.802519112137787, 29.714860173134952 ], [ -95.80307311190505, 29.714389172659047 ], [ -95.804571112487267, 29.713069172639681 ], [ -95.804592112281412, 29.713051172539817 ], [ -95.804702112044609, 29.712955172700131 ], [ -95.805108112282696, 29.712601172872702 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1586, "Tract": "48157673502", "Area_SqMi": 0.93247692732548426, "total_2009": 133, "total_2010": 196, "total_2011": 217, "total_2012": 278, "total_2013": 316, "total_2014": 304, "total_2015": 309, "total_2016": 519, "total_2017": 504, "total_2018": 398, "total_2019": 428, "total_2020": 430, "age1": 106, "age2": 319, "age3": 177, "earn1": 119, "earn2": 145, "earn3": 338, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 2, "naics_s06": 19, "naics_s07": 1, "naics_s08": 0, "naics_s09": 0, "naics_s10": 11, "naics_s11": 6, "naics_s12": 225, "naics_s13": 0, "naics_s14": 196, "naics_s15": 7, "naics_s16": 54, "naics_s17": 58, "naics_s18": 0, "naics_s19": 11, "naics_s20": 1, "race1": 402, "race2": 143, "race3": 1, "race4": 44, "race5": 0, "race6": 12, "ethnicity1": 477, "ethnicity2": 125, "edu1": 75, "edu2": 82, "edu3": 160, "edu4": 179, "Shape_Length": 23681.924368115338, "Shape_Area": 25995860.783623222, "total_2021": 436, "total_2022": 602 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.744017093897355, 29.639712159898348 ], [ -95.744021093124033, 29.639411160028438 ], [ -95.743993093943885, 29.639128159599522 ], [ -95.743958093084814, 29.638786159381777 ], [ -95.743931093392135, 29.638360159189958 ], [ -95.743833093060189, 29.637191159113069 ], [ -95.743784093525178, 29.63652615913016 ], [ -95.74376309355695, 29.635891158846302 ], [ -95.743756092775953, 29.634320158273241 ], [ -95.743756093376618, 29.634269158948733 ], [ -95.743763093170642, 29.633070158624168 ], [ -95.743715092855126, 29.630814158291582 ], [ -95.743713092821636, 29.630725158117937 ], [ -95.743705092746467, 29.63039715823642 ], [ -95.743698092941287, 29.630139157672218 ], [ -95.743684093055791, 29.629503157795416 ], [ -95.743682093229793, 29.629429158110707 ], [ -95.743661093385967, 29.628462157756161 ], [ -95.743648092581367, 29.627740157516673 ], [ -95.743643092614562, 29.627499157408511 ], [ -95.743629092790641, 29.626685157334339 ], [ -95.743627092608108, 29.626601157539334 ], [ -95.743625092801992, 29.626436157265935 ], [ -95.743611092499535, 29.625582156760274 ], [ -95.743623092983057, 29.625402157212982 ], [ -95.74361909310278, 29.625035156634297 ], [ -95.743618093162368, 29.624966156401499 ], [ -95.743567092572675, 29.624734156846682 ], [ -95.743509092598316, 29.62365815614233 ], [ -95.743509093033538, 29.623605156488509 ], [ -95.74329109221722, 29.623612156608932 ], [ -95.742899092273262, 29.623598156292196 ], [ -95.742648092637438, 29.623580156722795 ], [ -95.741487092123307, 29.623340156132929 ], [ -95.741143091649761, 29.623292156285387 ], [ -95.74091409252631, 29.623277156954472 ], [ -95.740736092062974, 29.623280156383771 ], [ -95.74050909214121, 29.62330115617759 ], [ -95.740282091527547, 29.623335156828738 ], [ -95.739996091863631, 29.623412156429993 ], [ -95.739805091521532, 29.62347615614177 ], [ -95.739621092204558, 29.623551156629713 ], [ -95.739432091832597, 29.623648156292457 ], [ -95.739280091444513, 29.623743156257561 ], [ -95.739125091140934, 29.623852156518879 ], [ -95.738833091497014, 29.624096156339167 ], [ -95.738597091982484, 29.624271157046504 ], [ -95.738335091358081, 29.624438156477392 ], [ -95.738147091922272, 29.62454315698108 ], [ -95.738047091081611, 29.624592156740423 ], [ -95.735873090601672, 29.625568157459995 ], [ -95.735538090544168, 29.625717157298261 ], [ -95.73530409064081, 29.625812157252501 ], [ -95.735034090404341, 29.625898157658348 ], [ -95.734846090318911, 29.625943156806247 ], [ -95.734661090866467, 29.625983157117112 ], [ -95.734491090103461, 29.626011157345026 ], [ -95.734320090591993, 29.626027157090235 ], [ -95.734094090596798, 29.626037156864243 ], [ -95.733913090506121, 29.626033157395547 ], [ -95.733701090776322, 29.626019157374593 ], [ -95.73331309017145, 29.625978157368699 ], [ -95.732460090153722, 29.625875157410036 ], [ -95.732034090352784, 29.625812156985557 ], [ -95.731727089363417, 29.62575415736524 ], [ -95.731337089656563, 29.625654157439712 ], [ -95.731055089620199, 29.625566157403235 ], [ -95.73087108977559, 29.62549815726295 ], [ -95.730513089822338, 29.625349157330845 ], [ -95.730253089286563, 29.625224156850674 ], [ -95.730009089721932, 29.625091157021533 ], [ -95.729783089172429, 29.624953157409358 ], [ -95.729578088806363, 29.624815157028031 ], [ -95.729320089145972, 29.624625157407909 ], [ -95.72912408925454, 29.624492157427159 ], [ -95.729005089012162, 29.624429157043974 ], [ -95.728858089255183, 29.624366157211462 ], [ -95.728648089224762, 29.624291156706555 ], [ -95.728513089124164, 29.624253157150964 ], [ -95.728346088391305, 29.624222157465596 ], [ -95.728154089259945, 29.624202156730561 ], [ -95.727926089295309, 29.624195156800226 ], [ -95.727770088779621, 29.624207157045454 ], [ -95.727524089026659, 29.624244157535536 ], [ -95.727421088464524, 29.624268157576068 ], [ -95.727321088893461, 29.624298157512765 ], [ -95.727180089037731, 29.624351157035047 ], [ -95.726837088622673, 29.624503157519136 ], [ -95.726673088380139, 29.624570157666991 ], [ -95.726441087961163, 29.624647156910655 ], [ -95.726261088179129, 29.624695157726549 ], [ -95.72614008844252, 29.624717157651421 ], [ -95.726149087903892, 29.625122157336296 ], [ -95.725663088481028, 29.625134157263687 ], [ -95.725705087966574, 29.626363157370363 ], [ -95.725750088651225, 29.628414158478442 ], [ -95.725796088449556, 29.630533158063717 ], [ -95.725798088166471, 29.630590158441063 ], [ -95.725850088611367, 29.63298815855865 ], [ -95.725860088663978, 29.633437159168835 ], [ -95.734170090962891, 29.633324158638544 ], [ -95.734339091071419, 29.639792160518681 ], [ -95.734977090889231, 29.639785159687925 ], [ -95.735486091889598, 29.63992816013095 ], [ -95.735726091122302, 29.6399811598341 ], [ -95.736588091532965, 29.640257160097804 ], [ -95.737202091619451, 29.640480159846387 ], [ -95.738618092402163, 29.640943159903998 ], [ -95.739088092283026, 29.641094159819712 ], [ -95.739262092090513, 29.641139159982632 ], [ -95.739584092996381, 29.641215160434577 ], [ -95.739935092972999, 29.641267160187045 ], [ -95.740135092995104, 29.641302160641544 ], [ -95.740434092403916, 29.641234160464499 ], [ -95.740599092808154, 29.64119616039963 ], [ -95.741239092874153, 29.641220160333585 ], [ -95.741623092753173, 29.641306159812103 ], [ -95.742062092655743, 29.641481160250752 ], [ -95.74222709352405, 29.641571160025173 ], [ -95.74259209282539, 29.641164159817134 ], [ -95.743088093611206, 29.640608160125616 ], [ -95.743681093396148, 29.639920159724564 ], [ -95.743807093095526, 29.639842159986873 ], [ -95.743982093339028, 29.639734159805226 ], [ -95.744017093897355, 29.639712159898348 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1587, "Tract": "48157673404", "Area_SqMi": 15.539446346698044, "total_2009": 364, "total_2010": 432, "total_2011": 407, "total_2012": 1227, "total_2013": 1378, "total_2014": 1468, "total_2015": 1445, "total_2016": 1434, "total_2017": 1485, "total_2018": 1596, "total_2019": 1110, "total_2020": 1143, "age1": 369, "age2": 721, "age3": 308, "earn1": 324, "earn2": 413, "earn3": 661, "naics_s01": 8, "naics_s02": 61, "naics_s03": 1, "naics_s04": 298, "naics_s05": 86, "naics_s06": 29, "naics_s07": 190, "naics_s08": 14, "naics_s09": 2, "naics_s10": 16, "naics_s11": 25, "naics_s12": 176, "naics_s13": 0, "naics_s14": 62, "naics_s15": 56, "naics_s16": 194, "naics_s17": 12, "naics_s18": 118, "naics_s19": 50, "naics_s20": 0, "race1": 1047, "race2": 216, "race3": 7, "race4": 102, "race5": 1, "race6": 25, "ethnicity1": 954, "ethnicity2": 444, "edu1": 240, "edu2": 260, "edu3": 292, "edu4": 237, "Shape_Length": 85369.142717106501, "Shape_Area": 433213168.11771446, "total_2021": 1239, "total_2022": 1398 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.81280011342507, 29.685764166864136 ], [ -95.81279911288361, 29.685714166921002 ], [ -95.812724113477046, 29.682741166596909 ], [ -95.812689113385076, 29.681345165951267 ], [ -95.812630112622514, 29.678967165187981 ], [ -95.812613112636384, 29.67820416505355 ], [ -95.812570112733013, 29.676305165332355 ], [ -95.812535112950428, 29.67507016490832 ], [ -95.812528112887733, 29.674720164369933 ], [ -95.812520112724599, 29.674383164329114 ], [ -95.812467112374577, 29.672905164200465 ], [ -95.812446112360604, 29.67234416428591 ], [ -95.812447112108941, 29.672147163930397 ], [ -95.812435112874113, 29.671017163557558 ], [ -95.812424112122585, 29.670342163498297 ], [ -95.812404112581234, 29.669638163709415 ], [ -95.812356112268048, 29.668501163317877 ], [ -95.812367111903413, 29.668311163057488 ], [ -95.812347111882573, 29.66738916319936 ], [ -95.812319111714501, 29.666094162544173 ], [ -95.812285112505762, 29.665000162552086 ], [ -95.812276112204117, 29.66470316226356 ], [ -95.81225611208103, 29.663711162043398 ], [ -95.81225211176573, 29.662818162273233 ], [ -95.81223511210159, 29.662263161726496 ], [ -95.812208112181594, 29.659825161912384 ], [ -95.812227111901478, 29.659509161416448 ], [ -95.812203111982726, 29.658531161288185 ], [ -95.812203112245314, 29.658254161433206 ], [ -95.812203112152716, 29.657432161472887 ], [ -95.812173111181437, 29.654772160559002 ], [ -95.812145112062026, 29.653440160216746 ], [ -95.81212611188289, 29.652557159960665 ], [ -95.812107111854843, 29.651405159749583 ], [ -95.812097111916444, 29.65084815982992 ], [ -95.812085111200247, 29.650105159933016 ], [ -95.812055111301092, 29.648324159390395 ], [ -95.812048110953754, 29.647943159523262 ], [ -95.812036111754438, 29.647225159154427 ], [ -95.812020111200923, 29.646318158544439 ], [ -95.811977111371277, 29.644573158018904 ], [ -95.811956110778425, 29.64346015855838 ], [ -95.811876110701746, 29.639069157333054 ], [ -95.811874110300948, 29.637758156935384 ], [ -95.811874111284695, 29.637639156898757 ], [ -95.81187311067562, 29.637541157169487 ], [ -95.81187211078813, 29.636753157021069 ], [ -95.81186811074042, 29.636584157102632 ], [ -95.81182011036536, 29.634008156729315 ], [ -95.811813110611695, 29.63364715613422 ], [ -95.811784110631052, 29.632133155729239 ], [ -95.811770110946426, 29.631680156150473 ], [ -95.811266110256952, 29.631469155618809 ], [ -95.810572110562177, 29.631162156016039 ], [ -95.809846110359175, 29.630852155963897 ], [ -95.809209109325536, 29.630634155420765 ], [ -95.808136109612505, 29.630359155416421 ], [ -95.807686109355615, 29.630224155946721 ], [ -95.806767108878063, 29.629982155255099 ], [ -95.806127108917053, 29.629847155999123 ], [ -95.805675109259582, 29.629719155730584 ], [ -95.805209108649223, 29.629665155932869 ], [ -95.804478108135399, 29.629606155813384 ], [ -95.803979108351584, 29.629585155274803 ], [ -95.80355210800586, 29.62959415552282 ], [ -95.803326107960103, 29.629599155362641 ], [ -95.803017107920112, 29.629605156089763 ], [ -95.802263108385674, 29.629626155960388 ], [ -95.801738107806401, 29.629639155838145 ], [ -95.800583107715227, 29.629641155595017 ], [ -95.799832107059885, 29.629653155890455 ], [ -95.799234107249973, 29.629661155504905 ], [ -95.797507106544955, 29.629688155987807 ], [ -95.794561106343991, 29.629732155761513 ], [ -95.793656105918203, 29.629750155609972 ], [ -95.788741104876635, 29.629839155803264 ], [ -95.787739104247009, 29.629791156424247 ], [ -95.786268104149428, 29.629720155868089 ], [ -95.785579103807592, 29.629651156518353 ], [ -95.785201103192378, 29.629551156671003 ], [ -95.784844103106437, 29.629439156498155 ], [ -95.78439410340998, 29.629227156191632 ], [ -95.784131102819956, 29.629021156269797 ], [ -95.783836103233568, 29.628801156427027 ], [ -95.782827103360248, 29.627841156367165 ], [ -95.782662102486299, 29.62772315642906 ], [ -95.782538102851262, 29.627615156349698 ], [ -95.782394102320183, 29.627524156001176 ], [ -95.782131102276281, 29.627376155951421 ], [ -95.781620102361799, 29.627202156298384 ], [ -95.781360102418247, 29.627150155657674 ], [ -95.78101110292539, 29.627081155988318 ], [ -95.78063010240308, 29.627060156016878 ], [ -95.778718101393707, 29.627039155571651 ], [ -95.776432101037571, 29.627024155951936 ], [ -95.776318100731586, 29.627024156499324 ], [ -95.775254100666558, 29.627024155790384 ], [ -95.773410100381142, 29.626986155962996 ], [ -95.770216099529506, 29.626921156677504 ], [ -95.769427099271994, 29.626923156554298 ], [ -95.768149099446475, 29.626934156613061 ], [ -95.766353099230258, 29.626924156088286 ], [ -95.765203097966335, 29.626900156044858 ], [ -95.764167097686354, 29.626871156478604 ], [ -95.763540097602672, 29.626854156634078 ], [ -95.76255609807653, 29.626841156216305 ], [ -95.762097097225293, 29.626857156747221 ], [ -95.761410097158631, 29.626844156879361 ], [ -95.760295096841972, 29.626836156174409 ], [ -95.758556096614853, 29.626793156961931 ], [ -95.757889096074393, 29.626778156589296 ], [ -95.757657096542459, 29.626773156814199 ], [ -95.757314095881583, 29.626769156889981 ], [ -95.755939095852625, 29.626744157045316 ], [ -95.754674095893066, 29.626729157030116 ], [ -95.752781094970189, 29.626706157046382 ], [ -95.752183094695383, 29.626700156945368 ], [ -95.750062094985424, 29.626674157352369 ], [ -95.749116094215296, 29.626666157238486 ], [ -95.748706094066392, 29.626663156819887 ], [ -95.746500093978852, 29.626644157405767 ], [ -95.744984093260427, 29.626621157101201 ], [ -95.743794092777435, 29.626603156826508 ], [ -95.743627092608108, 29.626601157539334 ], [ -95.743629092790641, 29.626685157334339 ], [ -95.743643092614562, 29.627499157408511 ], [ -95.743648092581367, 29.627740157516673 ], [ -95.743661093385967, 29.628462157756161 ], [ -95.743682093229793, 29.629429158110707 ], [ -95.743684093055791, 29.629503157795416 ], [ -95.743698092941287, 29.630139157672218 ], [ -95.743705092746467, 29.63039715823642 ], [ -95.743713092821636, 29.630725158117937 ], [ -95.743715092855126, 29.630814158291582 ], [ -95.743763093170642, 29.633070158624168 ], [ -95.743756093376618, 29.634269158948733 ], [ -95.743756092775953, 29.634320158273241 ], [ -95.74376309355695, 29.635891158846302 ], [ -95.743784093525178, 29.63652615913016 ], [ -95.743833093060189, 29.637191159113069 ], [ -95.743931093392135, 29.638360159189958 ], [ -95.743958093084814, 29.638786159381777 ], [ -95.743993093943885, 29.639128159599522 ], [ -95.744021093124033, 29.639411160028438 ], [ -95.744017093897355, 29.639712159898348 ], [ -95.743982093339028, 29.639734159805226 ], [ -95.743807093095526, 29.639842159986873 ], [ -95.743681093396148, 29.639920159724564 ], [ -95.743088093611206, 29.640608160125616 ], [ -95.74259209282539, 29.641164159817134 ], [ -95.74222709352405, 29.641571160025173 ], [ -95.741825093622069, 29.642019160428418 ], [ -95.741302093101211, 29.642607160071837 ], [ -95.741277093012499, 29.642638160797294 ], [ -95.741233093170408, 29.642693160558629 ], [ -95.741142092553687, 29.642810160726498 ], [ -95.741083093310564, 29.642904160760704 ], [ -95.741033093447697, 29.643004160206697 ], [ -95.740975093284391, 29.643158160238883 ], [ -95.740943092663642, 29.643308160221206 ], [ -95.740940092727286, 29.643339160421316 ], [ -95.740935093249448, 29.643521160978711 ], [ -95.740942092738877, 29.64362316023702 ], [ -95.740964092947294, 29.643756161126007 ], [ -95.741003093028823, 29.643925160416522 ], [ -95.741073093048385, 29.644223160866414 ], [ -95.741087092796604, 29.644347161053282 ], [ -95.741086093154919, 29.644410160525243 ], [ -95.741072093257969, 29.644469160819046 ], [ -95.741046092930418, 29.64452916055647 ], [ -95.741007092814442, 29.644589160579887 ], [ -95.740960092955831, 29.644649160771561 ], [ -95.740845092521283, 29.644760160705076 ], [ -95.740715093312218, 29.644868160597021 ], [ -95.740571093038412, 29.644961161038772 ], [ -95.740493092405885, 29.644998161334716 ], [ -95.740408092539653, 29.645020161259648 ], [ -95.740316092892641, 29.645031161151934 ], [ -95.739603092823415, 29.645043160663537 ], [ -95.739467093081444, 29.645050161010868 ], [ -95.739334092104158, 29.64504916133107 ], [ -95.7391990921694, 29.645062161040094 ], [ -95.738945092776007, 29.645069160922542 ], [ -95.73883209292444, 29.645076161371424 ], [ -95.73873309236437, 29.645096161025737 ], [ -95.738646092845983, 29.645131161054852 ], [ -95.738571092926719, 29.645177161080024 ], [ -95.73851309240942, 29.645231160823741 ], [ -95.738471092820774, 29.645311161097684 ], [ -95.7384460929037, 29.645391161300381 ], [ -95.738439092585992, 29.64547816117539 ], [ -95.738447091943584, 29.645569161362463 ], [ -95.738457092752185, 29.645902161200961 ], [ -95.738466092851255, 29.646820161275841 ], [ -95.738446092775618, 29.647175161295653 ], [ -95.738478092689746, 29.647505161525284 ], [ -95.738487093014939, 29.647675161666353 ], [ -95.738497092062772, 29.648891162229095 ], [ -95.738502092957091, 29.649160162307993 ], [ -95.738509093081191, 29.650413162197097 ], [ -95.73853909318133, 29.652330162762865 ], [ -95.738541092840819, 29.652488162528936 ], [ -95.738546092870109, 29.652850162580517 ], [ -95.73854809278312, 29.652979162432612 ], [ -95.738556092463043, 29.653516162781528 ], [ -95.73857709317906, 29.654898162831298 ], [ -95.738607092711078, 29.65686716309143 ], [ -95.738624092777513, 29.657703163208122 ], [ -95.73862609319805, 29.657908163331797 ], [ -95.738644093343737, 29.659495163677487 ], [ -95.738649093259241, 29.65962116392312 ], [ -95.738657093565777, 29.660703164404989 ], [ -95.738681093327813, 29.660858164288989 ], [ -95.738683093409321, 29.660872164602146 ], [ -95.738691093466699, 29.661183164783012 ], [ -95.73869809334461, 29.661485164152726 ], [ -95.739132092900434, 29.661563164678036 ], [ -95.739741093751661, 29.661699164293818 ], [ -95.740490094033177, 29.661944164846059 ], [ -95.741266094205102, 29.662241164869695 ], [ -95.741983093966624, 29.662623164198109 ], [ -95.74265309377428, 29.66303616492695 ], [ -95.743375093994032, 29.663576164473994 ], [ -95.744337094764504, 29.664503164661909 ], [ -95.744399094452959, 29.664562164689642 ], [ -95.74537809511439, 29.665559165395894 ], [ -95.74622709484747, 29.666409165253025 ], [ -95.747361096075394, 29.66754816526408 ], [ -95.748319096183124, 29.668506165893024 ], [ -95.749400096580572, 29.669541166065102 ], [ -95.750703096767936, 29.670731166320866 ], [ -95.751782097471761, 29.671692165837214 ], [ -95.753522097903925, 29.673097166229194 ], [ -95.7547730974307, 29.674009166115827 ], [ -95.755259098451162, 29.674364166847905 ], [ -95.756874098728389, 29.675408166319947 ], [ -95.757703098541455, 29.675943166895447 ], [ -95.761339100155766, 29.678134166921136 ], [ -95.761892099595272, 29.678605166962949 ], [ -95.762443099986669, 29.679008166884309 ], [ -95.762640099917732, 29.679153167597772 ], [ -95.764455100355747, 29.680314167538778 ], [ -95.764686100703813, 29.680461167260056 ], [ -95.764933100758043, 29.680635167083619 ], [ -95.765368101011703, 29.680938167172432 ], [ -95.765938100581479, 29.681574167342671 ], [ -95.766411101109099, 29.682148168021584 ], [ -95.766778100794255, 29.682695167721359 ], [ -95.766967100849769, 29.683150167879319 ], [ -95.767191101088684, 29.684097167918818 ], [ -95.767268101381177, 29.684594167934726 ], [ -95.767312101373733, 29.684853168328505 ], [ -95.767374101313678, 29.685210168305399 ], [ -95.767397101382954, 29.685431167865069 ], [ -95.767482102085523, 29.686206168424253 ], [ -95.767666101991168, 29.687417168364302 ], [ -95.767688101691476, 29.687485168318968 ], [ -95.767987102209332, 29.688467168834158 ], [ -95.768189101646755, 29.689073168866603 ], [ -95.768214101791713, 29.689146169264049 ], [ -95.768523101970359, 29.689861169420794 ], [ -95.768993102557587, 29.690675169530742 ], [ -95.769196101977514, 29.690906169629617 ], [ -95.769552102467273, 29.69069816932101 ], [ -95.769787102825816, 29.690561169002496 ], [ -95.770088102375865, 29.690385168792286 ], [ -95.771081103207592, 29.689808169155189 ], [ -95.771290102688909, 29.689606169098614 ], [ -95.772299102918353, 29.689040169042475 ], [ -95.772334102931623, 29.689021169171063 ], [ -95.772791103214033, 29.688762168620912 ], [ -95.773810103285669, 29.68818716854749 ], [ -95.773838103713473, 29.688171168655934 ], [ -95.774700103371075, 29.687704168151164 ], [ -95.77527810387754, 29.68739816846325 ], [ -95.775816103953957, 29.687048168508877 ], [ -95.778154103944729, 29.685739168165117 ], [ -95.7784561040433, 29.685555167701295 ], [ -95.778544103951603, 29.685502168038827 ], [ -95.779019104970246, 29.685254168133422 ], [ -95.779381104217279, 29.68507416772303 ], [ -95.779751105113164, 29.684950167865743 ], [ -95.782042105352303, 29.684188167380512 ], [ -95.782984105436469, 29.68387616746238 ], [ -95.78351710594751, 29.683771167423679 ], [ -95.78419210610673, 29.683648167098017 ], [ -95.784743105745449, 29.683600167126041 ], [ -95.785333106336367, 29.683571167497394 ], [ -95.786264106294539, 29.683619167128928 ], [ -95.786802106184453, 29.683705167581135 ], [ -95.788057106785033, 29.683942167659119 ], [ -95.788684107263549, 29.684085167404422 ], [ -95.788960106719344, 29.684170167252773 ], [ -95.789115106608818, 29.684185167423379 ], [ -95.789378106909197, 29.684247167173286 ], [ -95.790263107259008, 29.684418167248513 ], [ -95.791470107919324, 29.684703167315547 ], [ -95.792022108082136, 29.684779167208912 ], [ -95.792877107772526, 29.684874167714415 ], [ -95.793239108554673, 29.684884167051827 ], [ -95.794099108224444, 29.684912167436504 ], [ -95.795145109129365, 29.684808167127414 ], [ -95.796030108706802, 29.684642167073182 ], [ -95.797203109451999, 29.684376167473747 ], [ -95.799889109354794, 29.683686166900674 ], [ -95.800835109633752, 29.683533167194334 ], [ -95.801406110081103, 29.68348616702227 ], [ -95.80216711034636, 29.683476166417165 ], [ -95.802639110401273, 29.683487167119079 ], [ -95.802789110134114, 29.683525166270258 ], [ -95.803671110546659, 29.683589166498873 ], [ -95.804812110949968, 29.683826166625213 ], [ -95.80614611141489, 29.684343166773921 ], [ -95.807266112213028, 29.684945166919157 ], [ -95.808171112322839, 29.68530016659804 ], [ -95.808858112162312, 29.685569167208509 ], [ -95.810042112512576, 29.685828166903413 ], [ -95.812641112653182, 29.685767166961835 ], [ -95.81280011342507, 29.685764166864136 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1588, "Tract": "48157673007", "Area_SqMi": 2.4659842130588872, "total_2009": 172, "total_2010": 195, "total_2011": 277, "total_2012": 272, "total_2013": 346, "total_2014": 316, "total_2015": 270, "total_2016": 312, "total_2017": 375, "total_2018": 330, "total_2019": 325, "total_2020": 444, "age1": 167, "age2": 461, "age3": 167, "earn1": 179, "earn2": 211, "earn3": 405, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 30, "naics_s05": 0, "naics_s06": 6, "naics_s07": 119, "naics_s08": 64, "naics_s09": 0, "naics_s10": 3, "naics_s11": 10, "naics_s12": 108, "naics_s13": 0, "naics_s14": 281, "naics_s15": 0, "naics_s16": 164, "naics_s17": 0, "naics_s18": 0, "naics_s19": 10, "naics_s20": 0, "race1": 447, "race2": 205, "race3": 10, "race4": 128, "race5": 0, "race6": 5, "ethnicity1": 518, "ethnicity2": 277, "edu1": 178, "edu2": 152, "edu3": 152, "edu4": 146, "Shape_Length": 45549.15721803037, "Shape_Area": 68747419.285920084, "total_2021": 578, "total_2022": 795 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.744050096757107, 29.712665174481209 ], [ -95.744028096992167, 29.712475174534546 ], [ -95.744026097083506, 29.712460174460805 ], [ -95.743806097182514, 29.710473173980205 ], [ -95.743768096612826, 29.710087173809562 ], [ -95.743572096486545, 29.708440173739241 ], [ -95.743567096414054, 29.708398173597388 ], [ -95.74355709640605, 29.708301174150968 ], [ -95.743451096238246, 29.70677717352088 ], [ -95.743431096352694, 29.706601173156635 ], [ -95.743387096357665, 29.70627617372757 ], [ -95.743378096297832, 29.706149173699234 ], [ -95.743279096176835, 29.705267173103277 ], [ -95.743260096765937, 29.70509917319086 ], [ -95.743039095997702, 29.703245172464538 ], [ -95.743015095680363, 29.703035173058534 ], [ -95.742861095878553, 29.703050172924272 ], [ -95.742704095583662, 29.703064172671652 ], [ -95.741290095415266, 29.703193172419027 ], [ -95.739594095589354, 29.703332172780875 ], [ -95.738483094493091, 29.703409172518182 ], [ -95.732377093668205, 29.703933173612061 ], [ -95.727911092343589, 29.704357173266796 ], [ -95.727173091770325, 29.704428173852445 ], [ -95.726945092206122, 29.704446173351116 ], [ -95.72356509125207, 29.704687173996529 ], [ -95.72214509057774, 29.704789173983315 ], [ -95.721721090469686, 29.704813173359931 ], [ -95.721216090214199, 29.704853173616158 ], [ -95.720449090297166, 29.704916174103278 ], [ -95.720113090812958, 29.70494917401945 ], [ -95.719872090769513, 29.704973173994603 ], [ -95.719616090076912, 29.704993174057115 ], [ -95.715681088868479, 29.705304174538057 ], [ -95.713212088937397, 29.705512173920017 ], [ -95.709220087650152, 29.705809174095208 ], [ -95.709151087955561, 29.705812174023421 ], [ -95.709096087418814, 29.705815174011697 ], [ -95.707783086995533, 29.705950174943439 ], [ -95.706135087155033, 29.706103174939063 ], [ -95.701983085823983, 29.706512175125955 ], [ -95.701564085912509, 29.706553175087315 ], [ -95.701457085897005, 29.706559175058164 ], [ -95.701158085747664, 29.706584174473111 ], [ -95.700035085742428, 29.706676174559874 ], [ -95.698892084946266, 29.706769175140423 ], [ -95.691010082883707, 29.707415175599152 ], [ -95.688132082442209, 29.707650175074001 ], [ -95.688037081903772, 29.707659175233751 ], [ -95.687916082641891, 29.707669175132526 ], [ -95.683402080903534, 29.708041175555039 ], [ -95.683505080719755, 29.708098175926384 ], [ -95.683572080969697, 29.708136175785274 ], [ -95.684349081520509, 29.70856717581206 ], [ -95.684381081587802, 29.708585176210395 ], [ -95.684399081378558, 29.708595175906002 ], [ -95.684463081588902, 29.708631175768854 ], [ -95.684519081248212, 29.708662175678114 ], [ -95.684603081603086, 29.708709176013091 ], [ -95.685942081849717, 29.709454175763643 ], [ -95.686851082037947, 29.709960175825543 ], [ -95.686927081786592, 29.709999176399393 ], [ -95.687089082630138, 29.710083176205217 ], [ -95.687110082055966, 29.710094175790172 ], [ -95.687627081989419, 29.71042717586138 ], [ -95.687696082522763, 29.710471175714083 ], [ -95.687746082193129, 29.710504175833737 ], [ -95.687796081895812, 29.710537175934444 ], [ -95.688001082158877, 29.710672176422086 ], [ -95.688224082775093, 29.710811176128225 ], [ -95.688356082882208, 29.710867176522008 ], [ -95.688528083054948, 29.710942176354557 ], [ -95.688624082409717, 29.710991175736133 ], [ -95.688645082551403, 29.711001175902439 ], [ -95.688724082880412, 29.711041176570468 ], [ -95.688803082909217, 29.711082176366986 ], [ -95.689448083001551, 29.711411176681029 ], [ -95.689775082454389, 29.711593176418649 ], [ -95.695740084867879, 29.714913176499667 ], [ -95.697676085170386, 29.715991176575606 ], [ -95.70170508602078, 29.718233177367761 ], [ -95.701927086800254, 29.718357176913056 ], [ -95.705809087842269, 29.720516177845322 ], [ -95.708219087668439, 29.721856177498029 ], [ -95.708440087753445, 29.721978177999297 ], [ -95.711048088600904, 29.723465177801476 ], [ -95.711104088419887, 29.723497177892483 ], [ -95.711160089307313, 29.723529177985196 ], [ -95.711160089107267, 29.723372178330955 ], [ -95.711066089137233, 29.723071178225226 ], [ -95.71120308841644, 29.722916177496099 ], [ -95.711396088547673, 29.722844177927136 ], [ -95.711630089350336, 29.72288117772235 ], [ -95.712016088645129, 29.723050178082694 ], [ -95.712387089076742, 29.723099177998996 ], [ -95.712594089598099, 29.72299117814644 ], [ -95.712815089260047, 29.722788177439522 ], [ -95.713149089611576, 29.721456177517336 ], [ -95.713233088868876, 29.720988177450547 ], [ -95.713330089694352, 29.720881177134491 ], [ -95.713427088956919, 29.720797177612987 ], [ -95.713854089711603, 29.720702177094566 ], [ -95.714035089517722, 29.720667177476006 ], [ -95.714227089821648, 29.7206301774244 ], [ -95.71505408982371, 29.720200176851364 ], [ -95.71580109043596, 29.719920177507309 ], [ -95.71603709045543, 29.719428176565437 ], [ -95.717726090095383, 29.716966176107665 ], [ -95.720095091190743, 29.714316175581729 ], [ -95.720579090996111, 29.713941175973545 ], [ -95.7212390912958, 29.713743175399195 ], [ -95.722864091889818, 29.713681175566585 ], [ -95.726752092960268, 29.713667175723067 ], [ -95.727299092692363, 29.713665175530039 ], [ -95.727419093053882, 29.713664175855723 ], [ -95.730481093361306, 29.713652174932164 ], [ -95.73227609417566, 29.713646174980173 ], [ -95.733405094111362, 29.713642174857533 ], [ -95.73365009372236, 29.71364217550525 ], [ -95.734515094901013, 29.713633175509035 ], [ -95.735668094434743, 29.713623175055652 ], [ -95.736901094731721, 29.713612174863517 ], [ -95.737483094782874, 29.713607175032866 ], [ -95.738006095308705, 29.713532174749417 ], [ -95.741388096048638, 29.713046174872499 ], [ -95.743921097078186, 29.712684174648341 ], [ -95.744050096757107, 29.712665174481209 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1589, "Tract": "48157673004", "Area_SqMi": 0.94291201401499214, "total_2009": 615, "total_2010": 667, "total_2011": 686, "total_2012": 664, "total_2013": 692, "total_2014": 657, "total_2015": 706, "total_2016": 721, "total_2017": 646, "total_2018": 580, "total_2019": 620, "total_2020": 611, "age1": 217, "age2": 309, "age3": 145, "earn1": 237, "earn2": 252, "earn3": 182, "naics_s01": 7, "naics_s02": 6, "naics_s03": 0, "naics_s04": 11, "naics_s05": 4, "naics_s06": 27, "naics_s07": 157, "naics_s08": 2, "naics_s09": 0, "naics_s10": 16, "naics_s11": 17, "naics_s12": 35, "naics_s13": 0, "naics_s14": 15, "naics_s15": 37, "naics_s16": 93, "naics_s17": 74, "naics_s18": 115, "naics_s19": 55, "naics_s20": 0, "race1": 483, "race2": 84, "race3": 5, "race4": 89, "race5": 2, "race6": 8, "ethnicity1": 496, "ethnicity2": 175, "edu1": 84, "edu2": 119, "edu3": 127, "edu4": 124, "Shape_Length": 28720.893195853867, "Shape_Area": 26286773.140697338, "total_2021": 704, "total_2022": 671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.768529104345504, 29.744769180744303 ], [ -95.768522104351163, 29.744162180175827 ], [ -95.767244103815017, 29.744176180665836 ], [ -95.76665410443465, 29.744181180434666 ], [ -95.766231103897738, 29.744186180140598 ], [ -95.766132103625935, 29.744182180451375 ], [ -95.76603510426672, 29.744188179938529 ], [ -95.765465104154401, 29.744189180400376 ], [ -95.765406103794248, 29.744179180609031 ], [ -95.765342103647654, 29.744186180239794 ], [ -95.765091103200049, 29.744178180600571 ], [ -95.764951103766307, 29.74416818081092 ], [ -95.764905103420958, 29.74415818058835 ], [ -95.764855103284532, 29.744159180102084 ], [ -95.764479103314784, 29.744119180031809 ], [ -95.764183103130293, 29.744069180686939 ], [ -95.763903102935615, 29.744011180347261 ], [ -95.763605103393417, 29.743935180399514 ], [ -95.763200102689112, 29.743811180543002 ], [ -95.76293610330525, 29.743714180556601 ], [ -95.762850103078236, 29.74367517991292 ], [ -95.762690103001617, 29.743614180613715 ], [ -95.762467103142853, 29.743516180121521 ], [ -95.76228510243763, 29.743424180245135 ], [ -95.762141102955283, 29.743346180495404 ], [ -95.761834102593085, 29.743170180371109 ], [ -95.761540102743453, 29.742977180417892 ], [ -95.760794102504065, 29.742443180115508 ], [ -95.760544102027964, 29.742282180320476 ], [ -95.760281101833172, 29.742135179747397 ], [ -95.76001610246, 29.742006180135618 ], [ -95.759754102226424, 29.741891180266055 ], [ -95.759494102470427, 29.741785180067357 ], [ -95.759146101462363, 29.74166718004226 ], [ -95.758909101538293, 29.741602179763849 ], [ -95.758571101986092, 29.741519180432711 ], [ -95.758292101239803, 29.741464179813342 ], [ -95.757959101965625, 29.741416180225784 ], [ -95.756470101484126, 29.741214180028788 ], [ -95.75395110109794, 29.740879179887941 ], [ -95.753850100723199, 29.740866179769245 ], [ -95.753323100190215, 29.740791180432886 ], [ -95.753074100762277, 29.740759179748029 ], [ -95.752586100644493, 29.740696180212016 ], [ -95.751447100259, 29.7405361801484 ], [ -95.751477099936537, 29.740371180338105 ], [ -95.751534100376517, 29.740122179950632 ], [ -95.751607099609629, 29.739879179710027 ], [ -95.751703100020535, 29.739613179627973 ], [ -95.751839100421321, 29.739289179762164 ], [ -95.75201109968377, 29.738947179430202 ], [ -95.752164100086674, 29.738686179316737 ], [ -95.75233010012407, 29.738439180052115 ], [ -95.752518099975987, 29.738194179652439 ], [ -95.752647099958367, 29.738039179902046 ], [ -95.752814099993259, 29.737853179332163 ], [ -95.752912100541479, 29.737751179635911 ], [ -95.753107099898841, 29.737564179416005 ], [ -95.753329100254462, 29.737374179594319 ], [ -95.753782100326561, 29.737015178961336 ], [ -95.754053100408228, 29.736784179322935 ], [ -95.754272100253374, 29.736574178911045 ], [ -95.754493100717326, 29.73634117910364 ], [ -95.754717100718565, 29.736077179202784 ], [ -95.754965100806217, 29.735735179391465 ], [ -95.754998100910854, 29.73568217921855 ], [ -95.755150100277859, 29.735442179049063 ], [ -95.75527610104173, 29.735217179100818 ], [ -95.755383100989121, 29.734988178914016 ], [ -95.755477100391076, 29.734762178983704 ], [ -95.755609100810261, 29.73439217835594 ], [ -95.755468100493928, 29.734361178791072 ], [ -95.754700100613562, 29.7341861785068 ], [ -95.754235099912449, 29.734084178225395 ], [ -95.753910100539699, 29.734022178435513 ], [ -95.753576099877222, 29.733968178668878 ], [ -95.753239099983645, 29.733925178298975 ], [ -95.752900100197323, 29.73389517909418 ], [ -95.752578100286868, 29.733877178510941 ], [ -95.752546100276874, 29.733876178977589 ], [ -95.752240100349255, 29.733867178806573 ], [ -95.751924099642991, 29.733866178786911 ], [ -95.751869099838885, 29.733867178483738 ], [ -95.751612100140264, 29.733874179056141 ], [ -95.75129809960292, 29.73389217857072 ], [ -95.751130099443884, 29.733907178855407 ], [ -95.750671099931651, 29.733960178332566 ], [ -95.750215099512928, 29.734030178818475 ], [ -95.74991809925703, 29.734088178570413 ], [ -95.749566099430297, 29.734166178592513 ], [ -95.749318099051408, 29.734228179252501 ], [ -95.748876099082054, 29.73435917870966 ], [ -95.748447099206501, 29.734503179019196 ], [ -95.748044098900223, 29.73466417931348 ], [ -95.747945098495393, 29.734707178983815 ], [ -95.747681098409316, 29.734822179004215 ], [ -95.747585098435522, 29.734868179246686 ], [ -95.747141098887496, 29.735093179526174 ], [ -95.746913098844999, 29.735222179389844 ], [ -95.746459098412956, 29.735499179069016 ], [ -95.746349098119737, 29.735562178944473 ], [ -95.746155098059035, 29.735688179020261 ], [ -95.745784098237806, 29.735912179658605 ], [ -95.745730098004628, 29.735948179104582 ], [ -95.745673097995322, 29.735981179473256 ], [ -95.745660098148164, 29.735988179158536 ], [ -95.745497097975473, 29.736096179182002 ], [ -95.744997098593942, 29.736401179470775 ], [ -95.744583097871441, 29.736676179793854 ], [ -95.744249098294475, 29.736920179527019 ], [ -95.743988098309941, 29.737128179346108 ], [ -95.743713097722221, 29.737369179951965 ], [ -95.743341097867713, 29.737688179499997 ], [ -95.743094097338712, 29.737888179827234 ], [ -95.742906097925172, 29.738024180161215 ], [ -95.742878097816799, 29.738043179447594 ], [ -95.742697097344504, 29.738163179800861 ], [ -95.742383097181289, 29.738351180049548 ], [ -95.742193097525657, 29.738454180018238 ], [ -95.741946097828773, 29.738574180187147 ], [ -95.7417030972139, 29.738680179657745 ], [ -95.741459097534644, 29.738774179770541 ], [ -95.741404097098112, 29.73879318003587 ], [ -95.74121809685299, 29.738861179719812 ], [ -95.740893097287454, 29.738960180151235 ], [ -95.740531097221137, 29.739051179875478 ], [ -95.740335096930437, 29.739093179727856 ], [ -95.740066096566323, 29.73914417994574 ], [ -95.739654096504069, 29.739215180560141 ], [ -95.73930609665598, 29.739264180035672 ], [ -95.73878909687744, 29.739313179840821 ], [ -95.738677096543498, 29.739313180211425 ], [ -95.738757096605752, 29.739357180077622 ], [ -95.738924097083682, 29.739449180637539 ], [ -95.73921109716737, 29.739599180274723 ], [ -95.739486096997382, 29.739733180396794 ], [ -95.739882096647662, 29.739925180377419 ], [ -95.740659097578302, 29.74029318080926 ], [ -95.740879096863452, 29.740397180061123 ], [ -95.740989097162057, 29.74044918046496 ], [ -95.741610097152403, 29.740743180711128 ], [ -95.741632097106617, 29.740753180284706 ], [ -95.741701097704578, 29.740786180854442 ], [ -95.742546097838144, 29.741186180336232 ], [ -95.743436098412175, 29.741723180443408 ], [ -95.744034098262048, 29.742085180302269 ], [ -95.7442380980698, 29.742208180660107 ], [ -95.744888098691746, 29.742603180480685 ], [ -95.745171098941981, 29.742760181089288 ], [ -95.745377098284479, 29.742881181135743 ], [ -95.745451098556572, 29.742923180778359 ], [ -95.745710098395165, 29.743070180517172 ], [ -95.74729909949211, 29.74397418059727 ], [ -95.748309099498982, 29.744548181217471 ], [ -95.748795099725342, 29.744823180659107 ], [ -95.749886099703261, 29.745440181156617 ], [ -95.75068710035481, 29.745970180792831 ], [ -95.751076100428193, 29.746227180954204 ], [ -95.751287099990307, 29.746367181071253 ], [ -95.751453099720749, 29.746477180956152 ], [ -95.752279100568146, 29.747026181239796 ], [ -95.753192101191388, 29.747529181223495 ], [ -95.753656100882239, 29.747786181200187 ], [ -95.753770100439823, 29.747850181642367 ], [ -95.754154101088815, 29.748059181890753 ], [ -95.754360100958792, 29.748173181460633 ], [ -95.754806101529454, 29.748421181178138 ], [ -95.754860100858551, 29.748449181997845 ], [ -95.756790101985786, 29.749456182104318 ], [ -95.756900102046629, 29.749515181936861 ], [ -95.757905101836613, 29.750056181389169 ], [ -95.758499101822181, 29.750394182208225 ], [ -95.759095102300975, 29.750733181779804 ], [ -95.759222102330838, 29.750805181804402 ], [ -95.760500103153191, 29.751533182176999 ], [ -95.761299103290256, 29.751987182236459 ], [ -95.761381103028071, 29.752033182118673 ], [ -95.761623103146277, 29.752169182160966 ], [ -95.761775102634601, 29.752255181734398 ], [ -95.762906103501649, 29.752897181838875 ], [ -95.763097102995459, 29.75300718201424 ], [ -95.763302103869677, 29.753122181936057 ], [ -95.763772103413132, 29.753389182455233 ], [ -95.763842104114417, 29.753428182090463 ], [ -95.763911103582473, 29.753467181876406 ], [ -95.763952104065751, 29.753490182355726 ], [ -95.764064103971094, 29.753553182142795 ], [ -95.764078104008661, 29.753561182230456 ], [ -95.764357103921796, 29.753712182445994 ], [ -95.764450104294724, 29.753762182674468 ], [ -95.764487104004687, 29.753782182780999 ], [ -95.764536104035543, 29.753809182408332 ], [ -95.76471310430361, 29.753904182459991 ], [ -95.765538104646282, 29.754348182125785 ], [ -95.765835104611696, 29.754509182754099 ], [ -95.766159104190635, 29.754684182527608 ], [ -95.766376104189149, 29.754801182913376 ], [ -95.766370104787754, 29.754430182328463 ], [ -95.766378104517173, 29.753835181899891 ], [ -95.766380103999353, 29.753584182500944 ], [ -95.766381104474249, 29.753473182283358 ], [ -95.766383104265785, 29.75334018236218 ], [ -95.766396103960972, 29.752229181777164 ], [ -95.766375104365139, 29.752115182044587 ], [ -95.766351104473856, 29.751759181773583 ], [ -95.766371104582291, 29.751267182193338 ], [ -95.766410104496714, 29.750970182051997 ], [ -95.766479103789678, 29.75060718177766 ], [ -95.766581104337746, 29.750177181491523 ], [ -95.767213103882796, 29.748616181288664 ], [ -95.768165104193585, 29.746224181011797 ], [ -95.768336104290427, 29.745795180968187 ], [ -95.768469104139029, 29.74525318089017 ], [ -95.768529104345504, 29.744769180744303 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1590, "Tract": "48157673006", "Area_SqMi": 3.1146309137262218, "total_2009": 407, "total_2010": 413, "total_2011": 401, "total_2012": 514, "total_2013": 530, "total_2014": 492, "total_2015": 431, "total_2016": 443, "total_2017": 403, "total_2018": 428, "total_2019": 467, "total_2020": 375, "age1": 82, "age2": 232, "age3": 127, "earn1": 108, "earn2": 147, "earn3": 186, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 21, "naics_s05": 1, "naics_s06": 8, "naics_s07": 0, "naics_s08": 0, "naics_s09": 40, "naics_s10": 47, "naics_s11": 33, "naics_s12": 21, "naics_s13": 0, "naics_s14": 12, "naics_s15": 53, "naics_s16": 76, "naics_s17": 51, "naics_s18": 38, "naics_s19": 40, "naics_s20": 0, "race1": 306, "race2": 24, "race3": 2, "race4": 100, "race5": 1, "race6": 8, "ethnicity1": 308, "ethnicity2": 133, "edu1": 60, "edu2": 65, "edu3": 114, "edu4": 120, "Shape_Length": 38397.301400140357, "Shape_Area": 86830579.130601972, "total_2021": 400, "total_2022": 441 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.755835100534554, 29.732932178174085 ], [ -95.755830100677699, 29.732427178571708 ], [ -95.755830100446133, 29.732314178422843 ], [ -95.75582610106116, 29.731822178538749 ], [ -95.755823100676309, 29.731442178518602 ], [ -95.755815100993559, 29.73045017789914 ], [ -95.755801100726387, 29.730098177650543 ], [ -95.755813100107105, 29.729971177373258 ], [ -95.755793100898131, 29.728876177701817 ], [ -95.755780100483804, 29.727438177266905 ], [ -95.755773100352428, 29.726988177249165 ], [ -95.755771100390007, 29.726837177416265 ], [ -95.755769100112403, 29.726708177232069 ], [ -95.755758100779474, 29.725958176637828 ], [ -95.755739100148332, 29.72567117652596 ], [ -95.75568910024883, 29.725290176579261 ], [ -95.755639099952674, 29.725019176729418 ], [ -95.755618100732391, 29.724926176359595 ], [ -95.755602099965571, 29.724855176675575 ], [ -95.755562100405811, 29.724723176506828 ], [ -95.755435100713498, 29.724367176891228 ], [ -95.755332100642292, 29.724120176393985 ], [ -95.755204100224717, 29.723854176363034 ], [ -95.755109100470392, 29.723681176769652 ], [ -95.754860099836904, 29.723284176042903 ], [ -95.754589100166754, 29.722879176465984 ], [ -95.75446210039604, 29.722716176124496 ], [ -95.754313100395009, 29.722554176078781 ], [ -95.754258099554789, 29.722502176581511 ], [ -95.754181099660514, 29.722428175929384 ], [ -95.753965099785759, 29.722252176570613 ], [ -95.753597099426628, 29.721963176059084 ], [ -95.753581099217101, 29.721954175780915 ], [ -95.7534880993326, 29.721881176010466 ], [ -95.752849099544903, 29.721429176378368 ], [ -95.751538099050364, 29.720514175944995 ], [ -95.75143809874298, 29.72044317561496 ], [ -95.750580098550643, 29.719837175796421 ], [ -95.749742098410564, 29.719251175763208 ], [ -95.748381098609201, 29.718294175512021 ], [ -95.746911097485594, 29.71726017590877 ], [ -95.746247097306224, 29.716789175120358 ], [ -95.746033097928503, 29.71662717558301 ], [ -95.745837097400809, 29.716460175747304 ], [ -95.745778097815361, 29.716405175322695 ], [ -95.745657097278695, 29.716290175119504 ], [ -95.745500097286708, 29.716127174873652 ], [ -95.745297097083935, 29.715902175027509 ], [ -95.745122097076305, 29.715687175424449 ], [ -95.745024097166976, 29.715545175563605 ], [ -95.744983097622296, 29.715485174956466 ], [ -95.744881097289507, 29.715335175561385 ], [ -95.744741097544036, 29.715105175539957 ], [ -95.744695096588515, 29.715030174943408 ], [ -95.744583097077864, 29.714819175148101 ], [ -95.744466097242025, 29.714559174698088 ], [ -95.744337096739287, 29.714234174641593 ], [ -95.744263096917351, 29.71399717469302 ], [ -95.744197096895348, 29.713730174697123 ], [ -95.744147096454995, 29.713466174764946 ], [ -95.744113097048739, 29.713222174391163 ], [ -95.744091096746189, 29.713030174329329 ], [ -95.744050096757107, 29.712665174481209 ], [ -95.743921097078186, 29.712684174648341 ], [ -95.741388096048638, 29.713046174872499 ], [ -95.738006095308705, 29.713532174749417 ], [ -95.737483094782874, 29.713607175032866 ], [ -95.736901094731721, 29.713612174863517 ], [ -95.735668094434743, 29.713623175055652 ], [ -95.734515094901013, 29.713633175509035 ], [ -95.73365009372236, 29.71364217550525 ], [ -95.733405094111362, 29.713642174857533 ], [ -95.73227609417566, 29.713646174980173 ], [ -95.730481093361306, 29.713652174932164 ], [ -95.727419093053882, 29.713664175855723 ], [ -95.727299092692363, 29.713665175530039 ], [ -95.726752092960268, 29.713667175723067 ], [ -95.722864091889818, 29.713681175566585 ], [ -95.7212390912958, 29.713743175399195 ], [ -95.720579090996111, 29.713941175973545 ], [ -95.720095091190743, 29.714316175581729 ], [ -95.717726090095383, 29.716966176107665 ], [ -95.71603709045543, 29.719428176565437 ], [ -95.71580109043596, 29.719920177507309 ], [ -95.71505408982371, 29.720200176851364 ], [ -95.714227089821648, 29.7206301774244 ], [ -95.714035089517722, 29.720667177476006 ], [ -95.713854089711603, 29.720702177094566 ], [ -95.713427088956919, 29.720797177612987 ], [ -95.713330089694352, 29.720881177134491 ], [ -95.713233088868876, 29.720988177450547 ], [ -95.713149089611576, 29.721456177517336 ], [ -95.712815089260047, 29.722788177439522 ], [ -95.712594089598099, 29.72299117814644 ], [ -95.712387089076742, 29.723099177998996 ], [ -95.712016088645129, 29.723050178082694 ], [ -95.711630089350336, 29.72288117772235 ], [ -95.711396088547673, 29.722844177927136 ], [ -95.71120308841644, 29.722916177496099 ], [ -95.711066089137233, 29.723071178225226 ], [ -95.711160089107267, 29.723372178330955 ], [ -95.711160089307313, 29.723529177985196 ], [ -95.711261088773796, 29.723585178129564 ], [ -95.711361089253003, 29.72364217811678 ], [ -95.711456088619016, 29.723695177689919 ], [ -95.713412089446436, 29.724797177998237 ], [ -95.715463090547303, 29.725952178404818 ], [ -95.718015091043355, 29.727389178212562 ], [ -95.720568091405184, 29.728827178726718 ], [ -95.72422709211969, 29.730887178851532 ], [ -95.727885093478264, 29.732947178960899 ], [ -95.727959094106254, 29.732989179710493 ], [ -95.727985093385243, 29.733003179398626 ], [ -95.728294093253183, 29.733170179738785 ], [ -95.728415093748538, 29.733235179779868 ], [ -95.729684094556987, 29.733921179714898 ], [ -95.730403094055603, 29.734301179264229 ], [ -95.730782094302654, 29.734529179511124 ], [ -95.731323094938134, 29.73485817968109 ], [ -95.731573094704046, 29.735011179338322 ], [ -95.732002094643121, 29.735272179599754 ], [ -95.732089094759914, 29.735324179856324 ], [ -95.732286094596319, 29.735446180131341 ], [ -95.732394094936538, 29.735507179458658 ], [ -95.732479095225116, 29.735557179272107 ], [ -95.733137094630152, 29.735961180133391 ], [ -95.733455094955048, 29.736155179963514 ], [ -95.733621095248424, 29.736275179454182 ], [ -95.733764094804599, 29.736352180006509 ], [ -95.734004095450558, 29.736481179463198 ], [ -95.734205095751619, 29.736600180215913 ], [ -95.73739609654254, 29.738539179873026 ], [ -95.738677096543498, 29.739313180211425 ], [ -95.73878909687744, 29.739313179840821 ], [ -95.73930609665598, 29.739264180035672 ], [ -95.739654096504069, 29.739215180560141 ], [ -95.740066096566323, 29.73914417994574 ], [ -95.740335096930437, 29.739093179727856 ], [ -95.740531097221137, 29.739051179875478 ], [ -95.740893097287454, 29.738960180151235 ], [ -95.74121809685299, 29.738861179719812 ], [ -95.741404097098112, 29.73879318003587 ], [ -95.741459097534644, 29.738774179770541 ], [ -95.7417030972139, 29.738680179657745 ], [ -95.741946097828773, 29.738574180187147 ], [ -95.742193097525657, 29.738454180018238 ], [ -95.742383097181289, 29.738351180049548 ], [ -95.742697097344504, 29.738163179800861 ], [ -95.742878097816799, 29.738043179447594 ], [ -95.742906097925172, 29.738024180161215 ], [ -95.743094097338712, 29.737888179827234 ], [ -95.743341097867713, 29.737688179499997 ], [ -95.743713097722221, 29.737369179951965 ], [ -95.743988098309941, 29.737128179346108 ], [ -95.744249098294475, 29.736920179527019 ], [ -95.744583097871441, 29.736676179793854 ], [ -95.744997098593942, 29.736401179470775 ], [ -95.745497097975473, 29.736096179182002 ], [ -95.745660098148164, 29.735988179158536 ], [ -95.745673097995322, 29.735981179473256 ], [ -95.745730098004628, 29.735948179104582 ], [ -95.745784098237806, 29.735912179658605 ], [ -95.746155098059035, 29.735688179020261 ], [ -95.746349098119737, 29.735562178944473 ], [ -95.746459098412956, 29.735499179069016 ], [ -95.746913098844999, 29.735222179389844 ], [ -95.747141098887496, 29.735093179526174 ], [ -95.747585098435522, 29.734868179246686 ], [ -95.747681098409316, 29.734822179004215 ], [ -95.747945098495393, 29.734707178983815 ], [ -95.748044098900223, 29.73466417931348 ], [ -95.748447099206501, 29.734503179019196 ], [ -95.748876099082054, 29.73435917870966 ], [ -95.749318099051408, 29.734228179252501 ], [ -95.749566099430297, 29.734166178592513 ], [ -95.74991809925703, 29.734088178570413 ], [ -95.750215099512928, 29.734030178818475 ], [ -95.750671099931651, 29.733960178332566 ], [ -95.751130099443884, 29.733907178855407 ], [ -95.75129809960292, 29.73389217857072 ], [ -95.751612100140264, 29.733874179056141 ], [ -95.751869099838885, 29.733867178483738 ], [ -95.751924099642991, 29.733866178786911 ], [ -95.752240100349255, 29.733867178806573 ], [ -95.752546100276874, 29.733876178977589 ], [ -95.752578100286868, 29.733877178510941 ], [ -95.752900100197323, 29.73389517909418 ], [ -95.753239099983645, 29.733925178298975 ], [ -95.753576099877222, 29.733968178668878 ], [ -95.753910100539699, 29.734022178435513 ], [ -95.754235099912449, 29.734084178225395 ], [ -95.754700100613562, 29.7341861785068 ], [ -95.755468100493928, 29.734361178791072 ], [ -95.755609100810261, 29.73439217835594 ], [ -95.755657100327142, 29.734239178277424 ], [ -95.755691100381028, 29.734115178599456 ], [ -95.755746100854637, 29.73387217882852 ], [ -95.755798100302712, 29.733557178402808 ], [ -95.755825100429419, 29.733266178843323 ], [ -95.755835100534554, 29.732932178174085 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1591, "Tract": "48157674702", "Area_SqMi": 6.7090280384831642, "total_2009": 1252, "total_2010": 1325, "total_2011": 1265, "total_2012": 1036, "total_2013": 1068, "total_2014": 1247, "total_2015": 1213, "total_2016": 1090, "total_2017": 1202, "total_2018": 1263, "total_2019": 1499, "total_2020": 1662, "age1": 462, "age2": 826, "age3": 339, "earn1": 376, "earn2": 629, "earn3": 622, "naics_s01": 0, "naics_s02": 14, "naics_s03": 0, "naics_s04": 35, "naics_s05": 11, "naics_s06": 10, "naics_s07": 317, "naics_s08": 3, "naics_s09": 3, "naics_s10": 14, "naics_s11": 29, "naics_s12": 67, "naics_s13": 0, "naics_s14": 43, "naics_s15": 16, "naics_s16": 747, "naics_s17": 3, "naics_s18": 215, "naics_s19": 94, "naics_s20": 6, "race1": 1000, "race2": 387, "race3": 13, "race4": 197, "race5": 2, "race6": 28, "ethnicity1": 1069, "ethnicity2": 558, "edu1": 241, "edu2": 299, "edu3": 371, "edu4": 254, "Shape_Length": 71944.198721462511, "Shape_Area": 187036219.0966638, "total_2021": 1489, "total_2022": 1627 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.766274096607162, 29.580273147013788 ], [ -95.767068096381578, 29.579945146987473 ], [ -95.766009096225389, 29.577749146187202 ], [ -95.765647096172501, 29.577053145923937 ], [ -95.765330095757534, 29.576319145693422 ], [ -95.765270096697421, 29.576183145835888 ], [ -95.765028096417737, 29.575638146227224 ], [ -95.764994096563967, 29.575560146379164 ], [ -95.764717096501471, 29.57497014612677 ], [ -95.764436096234903, 29.574324145551039 ], [ -95.764276095867089, 29.57395114605049 ], [ -95.764135096094023, 29.573632145762268 ], [ -95.763334095806272, 29.571822145670367 ], [ -95.763311095715963, 29.571770145151998 ], [ -95.762988095222696, 29.571024144710005 ], [ -95.762605094973281, 29.570071145298677 ], [ -95.762557095040663, 29.569991144948311 ], [ -95.762500094761364, 29.569868145203291 ], [ -95.762298095148694, 29.569358144353352 ], [ -95.761617095291854, 29.567553144108945 ], [ -95.760930094410583, 29.565763144265482 ], [ -95.760918094951791, 29.565682143915332 ], [ -95.760720094957989, 29.565199143847313 ], [ -95.760463094481977, 29.564569143876597 ], [ -95.760354093929209, 29.564303143674749 ], [ -95.76025309455423, 29.564057143418758 ], [ -95.760183094726344, 29.563882143316512 ], [ -95.759999094329089, 29.563435143574022 ], [ -95.759917094321466, 29.563234143169261 ], [ -95.759826093825779, 29.563010143345014 ], [ -95.759764094215129, 29.56289014312032 ], [ -95.759285094134569, 29.562052143348243 ], [ -95.759061094407187, 29.561631143067817 ], [ -95.758641093374749, 29.560941142724179 ], [ -95.758398094272081, 29.560638142718762 ], [ -95.756985093271169, 29.558868142660092 ], [ -95.756256092938969, 29.55798814308184 ], [ -95.755407093210465, 29.556964142909681 ], [ -95.754364092297024, 29.555705142531782 ], [ -95.753717091968213, 29.554943141958297 ], [ -95.753607092573873, 29.554814141977808 ], [ -95.752241091401373, 29.553093141590786 ], [ -95.751525091244318, 29.552214141942201 ], [ -95.750051091140065, 29.550403141141679 ], [ -95.749668091261029, 29.549931140951511 ], [ -95.749390091061201, 29.54958914120779 ], [ -95.74877809061789, 29.548846140922489 ], [ -95.748638090598618, 29.548666141404535 ], [ -95.748519090935858, 29.548536140741785 ], [ -95.748344090603268, 29.548347140892997 ], [ -95.748098090944524, 29.548073141325123 ], [ -95.747992090548848, 29.547976140436493 ], [ -95.747733090039958, 29.547725140643244 ], [ -95.747577090422837, 29.547566141233535 ], [ -95.746829090194993, 29.546804140803534 ], [ -95.746380090190016, 29.546984140435161 ], [ -95.743621089848432, 29.548121141059145 ], [ -95.7427080888055, 29.548532140832883 ], [ -95.741268089102249, 29.549179141251123 ], [ -95.741152088762675, 29.54923214101478 ], [ -95.741036089185599, 29.549284141488055 ], [ -95.740978088321256, 29.549310141661625 ], [ -95.740313088351883, 29.549592141571249 ], [ -95.735227087885633, 29.551749141703361 ], [ -95.733236087061826, 29.552477141943395 ], [ -95.732140086761589, 29.552839142376506 ], [ -95.731386086688275, 29.55308814239179 ], [ -95.729770085752051, 29.553539142549948 ], [ -95.725123085233889, 29.55449914330104 ], [ -95.724328084840806, 29.554663142680965 ], [ -95.722167084022757, 29.555097143068878 ], [ -95.717427083051675, 29.55605014373873 ], [ -95.716905082871705, 29.556155143824885 ], [ -95.712123081488073, 29.557116143501382 ], [ -95.708381080398851, 29.557895143862584 ], [ -95.706026080611153, 29.558386144055348 ], [ -95.70577007991578, 29.558439144032878 ], [ -95.70213807929035, 29.559172144971026 ], [ -95.699477078267535, 29.559709144764859 ], [ -95.699000078475507, 29.559808144940341 ], [ -95.698935078632346, 29.559821145160175 ], [ -95.698907078214276, 29.559827145240025 ], [ -95.698872078614315, 29.55983414506829 ], [ -95.698822078874358, 29.559844145057447 ], [ -95.697777077891232, 29.560061144666079 ], [ -95.696967078516508, 29.560229145151656 ], [ -95.696190077521038, 29.560390145482486 ], [ -95.69563507734189, 29.560504144814683 ], [ -95.695465077686293, 29.560540145020365 ], [ -95.692876077198591, 29.561077145055183 ], [ -95.691574076888813, 29.56134514535557 ], [ -95.690364076697449, 29.561594145608961 ], [ -95.690212076009743, 29.561882145328035 ], [ -95.690202075989617, 29.561903145936384 ], [ -95.689938076316466, 29.562368145539356 ], [ -95.689843076406831, 29.562534146089391 ], [ -95.689702076183082, 29.562783145548295 ], [ -95.689658076826007, 29.562861145583181 ], [ -95.689608076340249, 29.562948146195293 ], [ -95.68972507678285, 29.562998145501211 ], [ -95.690455076577706, 29.563205146295193 ], [ -95.690838076882301, 29.563256145911584 ], [ -95.691031077085682, 29.56328514629061 ], [ -95.691120076498891, 29.563299145775638 ], [ -95.69421907758111, 29.563733145923614 ], [ -95.694647077159956, 29.563808145815823 ], [ -95.695060077817089, 29.563866146204397 ], [ -95.6953490773531, 29.563907145521618 ], [ -95.695607078298536, 29.563937146018905 ], [ -95.695940078402856, 29.563965145560722 ], [ -95.696248077752216, 29.563991145643786 ], [ -95.697646078608756, 29.564034146215395 ], [ -95.6979070789926, 29.564039145606113 ], [ -95.697902078813826, 29.564132146179841 ], [ -95.697899078539464, 29.564194145460426 ], [ -95.697899078605118, 29.564263145647221 ], [ -95.697900078225828, 29.564484145483611 ], [ -95.697901078786344, 29.564636146056515 ], [ -95.697901078428075, 29.564748145983522 ], [ -95.697904078810808, 29.565174145826923 ], [ -95.697907078173628, 29.565735146473038 ], [ -95.697909078448134, 29.566153145843373 ], [ -95.697895079085285, 29.566536146716924 ], [ -95.697860078743219, 29.56719114634344 ], [ -95.697832079107414, 29.567709146178068 ], [ -95.697741078390564, 29.569275147192037 ], [ -95.697692078367496, 29.570073147272474 ], [ -95.697640078254196, 29.570908147043653 ], [ -95.697611078903023, 29.571272147690497 ], [ -95.69760407894195, 29.571345146912257 ], [ -95.697573078665584, 29.571485147312377 ], [ -95.697304078741837, 29.571259147771123 ], [ -95.697265079152345, 29.571605147491592 ], [ -95.697225078729119, 29.571951147739966 ], [ -95.697217078280147, 29.571999147242803 ], [ -95.697321078197277, 29.572076147483681 ], [ -95.697646078500924, 29.572298147177566 ], [ -95.697847078455013, 29.572457147944149 ], [ -95.697935078951446, 29.572533147901964 ], [ -95.698068079059453, 29.572671147707076 ], [ -95.698328079057802, 29.572996148083931 ], [ -95.698465079298813, 29.57313114745423 ], [ -95.698621078916545, 29.573299147458133 ], [ -95.698967079589153, 29.573609148027202 ], [ -95.69912607888962, 29.573775148069554 ], [ -95.699199079070823, 29.573862147402433 ], [ -95.699437079242216, 29.574063147470394 ], [ -95.6995220789548, 29.574141147398702 ], [ -95.699711079822606, 29.574332147977117 ], [ -95.699955079078961, 29.574623147700464 ], [ -95.699983079473, 29.574650147592241 ], [ -95.700015079430159, 29.574672148083437 ], [ -95.700088079133479, 29.574706147858034 ], [ -95.700260080002508, 29.574775147998849 ], [ -95.700313079819836, 29.574797148376334 ], [ -95.700467079624772, 29.574848147942834 ], [ -95.70061808004553, 29.57490614817765 ], [ -95.700763080120623, 29.574976147864163 ], [ -95.700936079822753, 29.575074148069209 ], [ -95.701736080207326, 29.575584148218972 ], [ -95.702258080084107, 29.575872147953493 ], [ -95.702438080539835, 29.575954148068348 ], [ -95.70257408038735, 29.575994147781824 ], [ -95.70279707987514, 29.576047147974471 ], [ -95.702959079951555, 29.576074148543068 ], [ -95.703246080182367, 29.576103147679721 ], [ -95.703575080484697, 29.576128148227109 ], [ -95.703699080251923, 29.576133148439908 ], [ -95.704070080692958, 29.576128148526934 ], [ -95.704439080627566, 29.576089148503186 ], [ -95.704804080341447, 29.576026148129046 ], [ -95.704963080804546, 29.575987147740271 ], [ -95.705277080428218, 29.575898147659895 ], [ -95.705390081185953, 29.575855147818004 ], [ -95.705723081074666, 29.575709147762595 ], [ -95.705794081073208, 29.575673148361059 ], [ -95.705896080965815, 29.5756121476708 ], [ -95.706025081156255, 29.575522147755894 ], [ -95.706552081343446, 29.575237147510659 ], [ -95.707133081552911, 29.574894147407761 ], [ -95.707197081593677, 29.574848147999443 ], [ -95.707409080923398, 29.574678148081624 ], [ -95.707632081705299, 29.574498147598078 ], [ -95.707968081298489, 29.574230147656433 ], [ -95.708365081744162, 29.57392014761658 ], [ -95.708553081617325, 29.573774147513902 ], [ -95.709054081411011, 29.573398147156855 ], [ -95.710108082380827, 29.572702147535693 ], [ -95.711061082143104, 29.572197147008502 ], [ -95.711533082423855, 29.57197414716034 ], [ -95.711866082801691, 29.571830146900218 ], [ -95.712132082914323, 29.571731146804581 ], [ -95.713031082389733, 29.571467147128832 ], [ -95.713229082866604, 29.571416146428607 ], [ -95.713351082927971, 29.571395147074924 ], [ -95.713670082894751, 29.571320146609146 ], [ -95.713997082930149, 29.571279146370557 ], [ -95.714091082504908, 29.571269146584434 ], [ -95.714324082717411, 29.571245147039708 ], [ -95.714736082819911, 29.571226146931036 ], [ -95.715108083320217, 29.571227146620853 ], [ -95.715726083420009, 29.571253146807518 ], [ -95.715931083295942, 29.571273147043762 ], [ -95.716219083969165, 29.571291146442022 ], [ -95.716426083070004, 29.571284146779959 ], [ -95.716630083843469, 29.571311146583202 ], [ -95.716873083459802, 29.571353146500496 ], [ -95.717066083684514, 29.571417147006862 ], [ -95.717302084113825, 29.571506146686197 ], [ -95.717444084202796, 29.571559146487651 ], [ -95.717592084346748, 29.571624146721614 ], [ -95.717840083838979, 29.571754146702972 ], [ -95.718116084018448, 29.571912146853322 ], [ -95.718215084097608, 29.571977147229262 ], [ -95.718692083931998, 29.572322146389673 ], [ -95.718783083731836, 29.57239514682842 ], [ -95.719137084560757, 29.57274814697492 ], [ -95.719214084566175, 29.572832147029899 ], [ -95.719331084634376, 29.572981147156185 ], [ -95.719482084821621, 29.57319614731427 ], [ -95.719583084244476, 29.573354146598003 ], [ -95.719670084950025, 29.573517146935341 ], [ -95.719734084695489, 29.573688147253176 ], [ -95.719759084666009, 29.573794146834583 ], [ -95.719776084103515, 29.573902147197231 ], [ -95.719845084501472, 29.574092146756247 ], [ -95.719948084131062, 29.574328147591935 ], [ -95.720009085044509, 29.574501147521222 ], [ -95.720028085000592, 29.574571147465921 ], [ -95.720041084561544, 29.574642147503472 ], [ -95.720057084365294, 29.574858147195666 ], [ -95.720087084897841, 29.575000146986472 ], [ -95.720140085089625, 29.575503147543778 ], [ -95.720170084179401, 29.575718147342503 ], [ -95.720299084359596, 29.576430147398028 ], [ -95.720363085006497, 29.576639147910466 ], [ -95.720380084345791, 29.576710147556074 ], [ -95.720452084436204, 29.577138147560923 ], [ -95.720467084586232, 29.57731814739185 ], [ -95.720478085143824, 29.578075148054648 ], [ -95.720507085088428, 29.578544147912449 ], [ -95.720507084694162, 29.578616147827546 ], [ -95.720500084453604, 29.578724148031572 ], [ -95.72048408496866, 29.578831147718724 ], [ -95.720475084473733, 29.578939148519392 ], [ -95.720471085325443, 29.579083147788474 ], [ -95.720473084597216, 29.579228148008632 ], [ -95.720469084794999, 29.579300148241966 ], [ -95.720425084624452, 29.579695147928014 ], [ -95.720431084639003, 29.579875148127421 ], [ -95.720415084746733, 29.5802351479932 ], [ -95.72038408482274, 29.580631148725299 ], [ -95.720380084824114, 29.580783148811221 ], [ -95.72037108446672, 29.581070148725708 ], [ -95.720374085380797, 29.58121414896144 ], [ -95.720401084992957, 29.581320148468382 ], [ -95.720435084522947, 29.581498148871432 ], [ -95.720452085319124, 29.581641148321673 ], [ -95.7204420850086, 29.581894148774261 ], [ -95.720416085364391, 29.582072148484123 ], [ -95.720435085337712, 29.582216149203294 ], [ -95.720505084819365, 29.582461148708369 ], [ -95.720532085209896, 29.582603148547683 ], [ -95.720592084680959, 29.583323148573069 ], [ -95.720614085481941, 29.583502149029943 ], [ -95.720633085388982, 29.583790149337823 ], [ -95.720735085311802, 29.584140149492807 ], [ -95.720775085357701, 29.584316149411329 ], [ -95.720832085246471, 29.584747149186533 ], [ -95.720879085030887, 29.584996149056906 ], [ -95.720947085103816, 29.585127149713738 ], [ -95.721017084943767, 29.585297149485402 ], [ -95.721107085767898, 29.585574149386851 ], [ -95.721133085555877, 29.585680149360815 ], [ -95.72115508521513, 29.585823149220342 ], [ -95.72120108515179, 29.585961149182577 ], [ -95.721225085739007, 29.58606814987666 ], [ -95.721245085281822, 29.586211149421164 ], [ -95.721246085621075, 29.586319149700934 ], [ -95.721320085958666, 29.586600149356222 ], [ -95.721368085774813, 29.586738149497588 ], [ -95.721449085393942, 29.586943149780687 ], [ -95.721637085284925, 29.587382149668667 ], [ -95.721699085138212, 29.587476149447973 ], [ -95.721753085484551, 29.587573150255352 ], [ -95.721869085207814, 29.587843150324897 ], [ -95.72205208524629, 29.588245150160777 ], [ -95.722110085742401, 29.588381150167535 ], [ -95.722202086215376, 29.588542150138345 ], [ -95.722291086219514, 29.58866314977811 ], [ -95.722349085507844, 29.58875914977688 ], [ -95.722399086263451, 29.588858149968424 ], [ -95.722437085576871, 29.588961149879268 ], [ -95.722489086299163, 29.589017150116078 ], [ -95.722559085645159, 29.589106149898441 ], [ -95.722601086249142, 29.589168150347824 ], [ -95.722676086077939, 29.589297150557201 ], [ -95.722700086133969, 29.589326150471415 ], [ -95.722897085994632, 29.589510150425955 ], [ -95.722994086376715, 29.589627150116804 ], [ -95.723056085714887, 29.589721150045257 ], [ -95.723131086193149, 29.589856150626915 ], [ -95.7232620862587, 29.589945150384082 ], [ -95.723354086059501, 29.590017150584998 ], [ -95.723439085757235, 29.590096150618987 ], [ -95.723514086291516, 29.590182150156739 ], [ -95.723619086327062, 29.59023815001526 ], [ -95.723720086347157, 29.590301150065311 ], [ -95.72406608656658, 29.590558150424947 ], [ -95.724181085925366, 29.590598150150782 ], [ -95.724328085948969, 29.590663150780657 ], [ -95.724871087060293, 29.590924150366448 ], [ -95.724951086104937, 29.590940150128546 ], [ -95.725073086876066, 29.59095815020989 ], [ -95.725234086733494, 29.590993150819095 ], [ -95.725351086601123, 29.591027149997956 ], [ -95.725581086322165, 29.591107150715555 ], [ -95.725742086647287, 29.591140150498461 ], [ -95.725864086707759, 29.591160150046438 ], [ -95.725946086653408, 29.591169150486298 ], [ -95.726234086702519, 29.59118215064705 ], [ -95.726523086792625, 29.591180150479154 ], [ -95.727015087513365, 29.5911291504109 ], [ -95.727382087168152, 29.591075150216636 ], [ -95.72766608764357, 29.591028150431921 ], [ -95.728067087725321, 29.590943149942071 ], [ -95.728694087355464, 29.590762150579025 ], [ -95.729191087408168, 29.59058515026112 ], [ -95.729754087421824, 29.590360149775638 ], [ -95.730152088211042, 29.590168150446612 ], [ -95.73024608770767, 29.590098149704232 ], [ -95.730312088014159, 29.590054149710941 ], [ -95.7305160879162, 29.589931149992374 ], [ -95.730698087890801, 29.58984714993284 ], [ -95.730813088008532, 29.589807149840972 ], [ -95.73084808789686, 29.589788150160135 ], [ -95.731045087579361, 29.589657150132624 ], [ -95.731225088151277, 29.589568149625901 ], [ -95.731292088427537, 29.58952615034223 ], [ -95.731792088671099, 29.589149150122495 ], [ -95.73194008784597, 29.588976149491241 ], [ -95.732142088273392, 29.5887951500974 ], [ -95.732221088462296, 29.588712149385234 ], [ -95.732290088378363, 29.588622150017478 ], [ -95.732699088118991, 29.588057149254606 ], [ -95.732992088838074, 29.587687149553943 ], [ -95.733065088401105, 29.58755814944395 ], [ -95.73316808875046, 29.58740214974798 ], [ -95.733263088175704, 29.587284149099833 ], [ -95.733330088526969, 29.587185149065586 ], [ -95.733398088982938, 29.586992148940883 ], [ -95.733455088211755, 29.586745149671092 ], [ -95.73348408870082, 29.586457149186749 ], [ -95.733485088968905, 29.586241149614501 ], [ -95.73352308842496, 29.58591814936824 ], [ -95.733584088293171, 29.585525149022885 ], [ -95.733656088367965, 29.585243149309218 ], [ -95.733775088937463, 29.584712148521966 ], [ -95.733813088304856, 29.584572148790212 ], [ -95.73383508900551, 29.584465149175529 ], [ -95.733851088938323, 29.584322149009846 ], [ -95.733872088913458, 29.58421514841903 ], [ -95.734133088996231, 29.583194148875513 ], [ -95.734192088752465, 29.582947148372682 ], [ -95.734275088498947, 29.582668148139462 ], [ -95.734299088702898, 29.582599148073307 ], [ -95.734433088311349, 29.582296148235272 ], [ -95.734465088287621, 29.582192148312448 ], [ -95.734523088954063, 29.581908148150923 ], [ -95.734614088194718, 29.581668148594584 ], [ -95.734796088193917, 29.581265147694808 ], [ -95.73502508863082, 29.580881147688434 ], [ -95.735241088758741, 29.58053214788449 ], [ -95.73530408894807, 29.580440148372947 ], [ -95.735932088931946, 29.579678147845836 ], [ -95.736284089186071, 29.579325147484415 ], [ -95.736619088606659, 29.579006147619928 ], [ -95.73721908896448, 29.578459147457714 ], [ -95.737579089270653, 29.578162147310952 ], [ -95.737862089520462, 29.577951146951602 ], [ -95.738299089094212, 29.57767914711896 ], [ -95.738404089580428, 29.577623147065733 ], [ -95.738727089597276, 29.577462147231611 ], [ -95.739477089450588, 29.577199146825802 ], [ -95.739832089818762, 29.577103147040376 ], [ -95.739949089924295, 29.57706714707448 ], [ -95.740294089842664, 29.57694614697547 ], [ -95.740607090302348, 29.576856146730904 ], [ -95.740878090492643, 29.576768147085538 ], [ -95.740997089556373, 29.57673714672022 ], [ -95.741077090180326, 29.576721147246467 ], [ -95.741363090421487, 29.576684146593742 ], [ -95.741729090342076, 29.576627146828304 ], [ -95.741971090288445, 29.576584146525718 ], [ -95.742215089949823, 29.576555147252197 ], [ -95.743035090771968, 29.576459146763632 ], [ -95.743281090936122, 29.576437147180652 ], [ -95.743939090494607, 29.576391146465518 ], [ -95.744888091268081, 29.576419146973862 ], [ -95.745300090976542, 29.576449146955472 ], [ -95.745544091161236, 29.576481147233789 ], [ -95.746195091674267, 29.57658314693338 ], [ -95.746399091354945, 29.576607146551414 ], [ -95.746522091805474, 29.576617146414886 ], [ -95.746604091340075, 29.576629146506413 ], [ -95.746685091339117, 29.576641146606686 ], [ -95.746806091298211, 29.576666146978116 ], [ -95.747239091999049, 29.576784146543623 ], [ -95.747560091928648, 29.576853146569071 ], [ -95.747844091957077, 29.576899146399693 ], [ -95.748084091599793, 29.576953147241767 ], [ -95.748347091419774, 29.577027146561026 ], [ -95.748516091963324, 29.577075146684216 ], [ -95.748710091609041, 29.577137146459112 ], [ -95.74878609223839, 29.577164147182984 ], [ -95.749361091747375, 29.57736514651172 ], [ -95.749779092566655, 29.577519147017128 ], [ -95.749886092242534, 29.577574146892982 ], [ -95.750113092506808, 29.577660146529951 ], [ -95.750333092165306, 29.577761146956441 ], [ -95.750706092654397, 29.577914146863563 ], [ -95.751112092908642, 29.578093146625132 ], [ -95.751753092842137, 29.578420146758837 ], [ -95.752210092588257, 29.578666147426123 ], [ -95.75274109353262, 29.578945147504424 ], [ -95.752838093604254, 29.579036146911371 ], [ -95.752991092782707, 29.579157146685436 ], [ -95.753217092878003, 29.579314147437024 ], [ -95.753523093734429, 29.579499147245404 ], [ -95.753604093613745, 29.579553147425433 ], [ -95.753720093886486, 29.579630147301923 ], [ -95.755065093682688, 29.580467147285965 ], [ -95.755451094237912, 29.580738147769374 ], [ -95.755596093780326, 29.58083514735107 ], [ -95.755615093615233, 29.580848147385936 ], [ -95.755677093529229, 29.580896146924527 ], [ -95.756099093825767, 29.581292147747973 ], [ -95.756280094144472, 29.581440147480837 ], [ -95.756600094051848, 29.581667147875454 ], [ -95.756626094483778, 29.581695147541627 ], [ -95.756742093794202, 29.581845147586492 ], [ -95.75678209431878, 29.581908147254445 ], [ -95.756817094311458, 29.581973147726238 ], [ -95.756922094800501, 29.582128147702996 ], [ -95.756991094734389, 29.58221814729065 ], [ -95.75732409399896, 29.582538147333359 ], [ -95.757421094881565, 29.582606148055319 ], [ -95.757631094884218, 29.582720147594724 ], [ -95.757719094738732, 29.582796147354536 ], [ -95.757781094425752, 29.582861147571791 ], [ -95.758128094358113, 29.583229147596501 ], [ -95.758393094668321, 29.583536148117915 ], [ -95.758792095032106, 29.583321147620286 ], [ -95.758994095356925, 29.583178147944533 ], [ -95.759197094902447, 29.583063147946369 ], [ -95.759511094926623, 29.582879148013323 ], [ -95.759843095293746, 29.582716147742616 ], [ -95.760637094870702, 29.582402147703888 ], [ -95.761428095230158, 29.582131146997707 ], [ -95.762263095222963, 29.581813147701205 ], [ -95.7630500963202, 29.581533147285562 ], [ -95.763858096363975, 29.581216147478042 ], [ -95.764653096656886, 29.580873147175442 ], [ -95.765467096709216, 29.58056914708434 ], [ -95.766274096607162, 29.580273147013788 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1592, "Tract": "48157671700", "Area_SqMi": 2.4491820474991397, "total_2009": 4210, "total_2010": 4158, "total_2011": 4241, "total_2012": 5373, "total_2013": 4942, "total_2014": 3768, "total_2015": 4058, "total_2016": 4578, "total_2017": 4603, "total_2018": 5074, "total_2019": 4867, "total_2020": 6188, "age1": 1230, "age2": 3498, "age3": 1791, "earn1": 1095, "earn2": 2258, "earn3": 3166, "naics_s01": 0, "naics_s02": 8, "naics_s03": 0, "naics_s04": 123, "naics_s05": 108, "naics_s06": 197, "naics_s07": 753, "naics_s08": 17, "naics_s09": 137, "naics_s10": 725, "naics_s11": 108, "naics_s12": 841, "naics_s13": 57, "naics_s14": 1414, "naics_s15": 160, "naics_s16": 814, "naics_s17": 277, "naics_s18": 362, "naics_s19": 418, "naics_s20": 0, "race1": 4488, "race2": 1142, "race3": 62, "race4": 689, "race5": 9, "race6": 129, "ethnicity1": 4288, "ethnicity2": 2231, "edu1": 1150, "edu2": 1316, "edu3": 1483, "edu4": 1340, "Shape_Length": 42747.795514410303, "Shape_Area": 68279003.667308077, "total_2021": 6352, "total_2022": 6519 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.619019060361254, 29.602076155991906 ], [ -95.618970059551827, 29.602014156096818 ], [ -95.618741059515941, 29.601764156160357 ], [ -95.618671060088261, 29.60168815615889 ], [ -95.618576059411595, 29.601673155963145 ], [ -95.617414059609331, 29.601483156013526 ], [ -95.61632605885984, 29.601605155815133 ], [ -95.615153058970776, 29.601800156119964 ], [ -95.61460705921337, 29.602198156415149 ], [ -95.614264058954376, 29.602297156055368 ], [ -95.613634058533989, 29.602370156345359 ], [ -95.611804058091167, 29.602313156521522 ], [ -95.61100205761683, 29.602510156605696 ], [ -95.610100057664553, 29.603400156659866 ], [ -95.61006305763496, 29.603437156522482 ], [ -95.60994805744393, 29.603552157225355 ], [ -95.609740057324487, 29.603757156479663 ], [ -95.609163057337369, 29.604327156920739 ], [ -95.60844405707806, 29.605174156810325 ], [ -95.607898057130797, 29.60559715733077 ], [ -95.606746056582907, 29.605941157391079 ], [ -95.605463056922744, 29.605896157098915 ], [ -95.604706056054525, 29.605713157779778 ], [ -95.604455056859493, 29.605652157807768 ], [ -95.603608056607641, 29.605179157040954 ], [ -95.603373056049847, 29.60504815725735 ], [ -95.602003055612442, 29.603815157396721 ], [ -95.60141405540584, 29.603389157382171 ], [ -95.601242055806409, 29.603265157252824 ], [ -95.601084055910931, 29.603241156901039 ], [ -95.600692055746705, 29.603182157527907 ], [ -95.598494054516152, 29.603611157383476 ], [ -95.59761605470149, 29.603782157028586 ], [ -95.597465054976013, 29.603811157108289 ], [ -95.596560053879529, 29.604369157711755 ], [ -95.59602305445037, 29.604927157960855 ], [ -95.595677053932988, 29.605868157918504 ], [ -95.595202053808507, 29.607167157958759 ], [ -95.595127053756372, 29.607297158051324 ], [ -95.594708053954804, 29.608019158087455 ], [ -95.594463053608834, 29.608152158664609 ], [ -95.59384805409826, 29.608236158748486 ], [ -95.593607053458271, 29.608269158460846 ], [ -95.592920054127632, 29.608093158796553 ], [ -95.592341053066747, 29.607637158252739 ], [ -95.592173053415337, 29.607107158613214 ], [ -95.592118053477179, 29.606279158237676 ], [ -95.592213053229784, 29.605708158332781 ], [ -95.592360053007596, 29.605211157870162 ], [ -95.592399052904071, 29.605080157464702 ], [ -95.593205053944615, 29.60395315716525 ], [ -95.593554053544153, 29.603597157799165 ], [ -95.593708053592607, 29.603326157479508 ], [ -95.593790053997978, 29.603180157202427 ], [ -95.593853053571991, 29.60289715711572 ], [ -95.593824053987206, 29.602213157150324 ], [ -95.593740053114345, 29.601897156782023 ], [ -95.593685053715973, 29.601691157044431 ], [ -95.593643053123714, 29.601486157097902 ], [ -95.593610053219876, 29.601393157089209 ], [ -95.593598053834285, 29.601333156530991 ], [ -95.593608053584006, 29.601198156966245 ], [ -95.593365053497806, 29.600729156766345 ], [ -95.593339053136106, 29.600678156542315 ], [ -95.593151053086146, 29.600162157050079 ], [ -95.593088053692497, 29.600174156611356 ], [ -95.592603053276633, 29.600267157008339 ], [ -95.591912052950519, 29.600474156550916 ], [ -95.591800052639712, 29.600506156568155 ], [ -95.589916052922533, 29.601170157508935 ], [ -95.589300052395643, 29.601369156979867 ], [ -95.588451052452669, 29.601501156998626 ], [ -95.586808051688664, 29.601558156875225 ], [ -95.585884051536084, 29.601524157472848 ], [ -95.584974050895354, 29.601503157002483 ], [ -95.583481050566121, 29.601304157598481 ], [ -95.583030051240002, 29.60123215729319 ], [ -95.582172050936251, 29.601161157141178 ], [ -95.582001050616242, 29.601148157314871 ], [ -95.582007050725096, 29.601352156939921 ], [ -95.58202905081373, 29.602077157354415 ], [ -95.582037050436853, 29.602936157233746 ], [ -95.582069050247327, 29.603323157897186 ], [ -95.58206205048343, 29.603915157616694 ], [ -95.582051050793936, 29.604244158214769 ], [ -95.58205105032981, 29.604403157866312 ], [ -95.582084051093062, 29.604786158119381 ], [ -95.582145050809686, 29.60511415823429 ], [ -95.582180050499517, 29.605363158258925 ], [ -95.582210051028099, 29.605656158543979 ], [ -95.582225050813605, 29.605800158314086 ], [ -95.582230050698669, 29.606043158335556 ], [ -95.582232051216252, 29.606158158668322 ], [ -95.582231051009671, 29.606229158355283 ], [ -95.582231050911034, 29.606276158582016 ], [ -95.582228050575949, 29.606457158600371 ], [ -95.582310050575117, 29.606467158713993 ], [ -95.582427050612679, 29.606472158489805 ], [ -95.582416050494672, 29.606961158581299 ], [ -95.582434050835218, 29.607668158820292 ], [ -95.582475050763207, 29.608324158928372 ], [ -95.582473050862319, 29.608502158719624 ], [ -95.582432051192981, 29.609579158891382 ], [ -95.582434050729361, 29.609867158671968 ], [ -95.582435051501037, 29.609951158852098 ], [ -95.582437051517871, 29.610243159172771 ], [ -95.582438051050687, 29.610385159211468 ], [ -95.582444051288036, 29.611300159093474 ], [ -95.58245505138612, 29.612753159327816 ], [ -95.582451051241733, 29.612955159894874 ], [ -95.582432051177065, 29.613861160312172 ], [ -95.582462051207088, 29.614490159982239 ], [ -95.582491050929718, 29.615560160162598 ], [ -95.582580051396477, 29.617091160533182 ], [ -95.582584051282254, 29.617251160892458 ], [ -95.582587051470441, 29.617371160939058 ], [ -95.58258505116774, 29.617875160622702 ], [ -95.582592051574721, 29.618157160353284 ], [ -95.582606051943216, 29.618759161310798 ], [ -95.582609051372515, 29.619222161075424 ], [ -95.58262305125443, 29.620542161075669 ], [ -95.582623051552389, 29.620995161220382 ], [ -95.582630051480095, 29.621397161654361 ], [ -95.582655051549324, 29.62207616191581 ], [ -95.582644051545415, 29.622752162086009 ], [ -95.582666051236075, 29.623858162137612 ], [ -95.582655051957317, 29.624419161873675 ], [ -95.58267705209181, 29.625202162207213 ], [ -95.582693051685467, 29.626170162209597 ], [ -95.582665052171762, 29.627153162401989 ], [ -95.582659051345431, 29.62734816261186 ], [ -95.583352051619045, 29.627568162790322 ], [ -95.584855052379766, 29.627966162703341 ], [ -95.585911052556227, 29.628201162496371 ], [ -95.586844053166061, 29.628387162297788 ], [ -95.587333053043949, 29.62843916299526 ], [ -95.588339053554293, 29.628495162415838 ], [ -95.589667054084089, 29.628499162969963 ], [ -95.590488053673653, 29.628413162497761 ], [ -95.590725053770896, 29.628404162447364 ], [ -95.591856054577207, 29.628321162145706 ], [ -95.592444054666032, 29.62822616286056 ], [ -95.593074054416206, 29.628117162410781 ], [ -95.593488054875365, 29.628035162395214 ], [ -95.593627055135244, 29.627906162479007 ], [ -95.595445055321377, 29.626212162144917 ], [ -95.5965110550096, 29.625272161437685 ], [ -95.597117055267987, 29.624821161473893 ], [ -95.59726005563634, 29.62471416142354 ], [ -95.598175056003825, 29.624040161282675 ], [ -95.59847305613728, 29.623850161012193 ], [ -95.600101055929699, 29.622816161054114 ], [ -95.601489056466505, 29.621865161318176 ], [ -95.601612056240526, 29.621780160772904 ], [ -95.601743056212115, 29.621689161211574 ], [ -95.60181005628209, 29.621643160599643 ], [ -95.601843056981011, 29.621614160807219 ], [ -95.602435056682552, 29.621094161095492 ], [ -95.603077056277016, 29.620441160589941 ], [ -95.603288057007646, 29.620191160338873 ], [ -95.603768057302617, 29.61967216075309 ], [ -95.604285057326862, 29.619009159822589 ], [ -95.604592057071144, 29.61864416049422 ], [ -95.605254056851692, 29.617500159880066 ], [ -95.605711057471012, 29.616710160096559 ], [ -95.606249057841552, 29.615781159532443 ], [ -95.60665705794203, 29.615208158987066 ], [ -95.607138057652037, 29.614534159067425 ], [ -95.608402057725073, 29.612992158579406 ], [ -95.609542058220086, 29.611601158320415 ], [ -95.611284057950201, 29.609639158371497 ], [ -95.611891058389787, 29.608954157973852 ], [ -95.612814058852393, 29.608099157963245 ], [ -95.612944059257998, 29.607973157659824 ], [ -95.613597059202689, 29.607342157850244 ], [ -95.613739059311285, 29.607205157590652 ], [ -95.613837059442872, 29.607110157574095 ], [ -95.613937058488958, 29.607011157003491 ], [ -95.614787059240243, 29.606177157671901 ], [ -95.615573059536317, 29.60540415702091 ], [ -95.616705059486392, 29.604291156748243 ], [ -95.618825059692043, 29.602261156292418 ], [ -95.618923060513495, 29.602167156440796 ], [ -95.619019060361254, 29.602076155991906 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1593, "Tract": "48157671800", "Area_SqMi": 4.9663588781394044, "total_2009": 17191, "total_2010": 16559, "total_2011": 18039, "total_2012": 19661, "total_2013": 19130, "total_2014": 20815, "total_2015": 19355, "total_2016": 19455, "total_2017": 19080, "total_2018": 19740, "total_2019": 20565, "total_2020": 20607, "age1": 4746, "age2": 12531, "age3": 5358, "earn1": 2953, "earn2": 6520, "earn3": 13162, "naics_s01": 3, "naics_s02": 94, "naics_s03": 12, "naics_s04": 2604, "naics_s05": 4652, "naics_s06": 2784, "naics_s07": 3033, "naics_s08": 2644, "naics_s09": 151, "naics_s10": 240, "naics_s11": 123, "naics_s12": 1092, "naics_s13": 335, "naics_s14": 1324, "naics_s15": 82, "naics_s16": 880, "naics_s17": 65, "naics_s18": 1552, "naics_s19": 635, "naics_s20": 330, "race1": 14792, "race2": 4607, "race3": 177, "race4": 2679, "race5": 27, "race6": 353, "ethnicity1": 15324, "ethnicity2": 7311, "edu1": 3884, "edu2": 4595, "edu3": 5347, "edu4": 4063, "Shape_Length": 53751.336746988913, "Shape_Area": 138453585.51435632, "total_2021": 20908, "total_2022": 22635 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.593274054511014, 29.628235162307796 ], [ -95.593488054875365, 29.628035162395214 ], [ -95.593074054416206, 29.628117162410781 ], [ -95.592444054666032, 29.62822616286056 ], [ -95.591856054577207, 29.628321162145706 ], [ -95.590725053770896, 29.628404162447364 ], [ -95.590488053673653, 29.628413162497761 ], [ -95.589667054084089, 29.628499162969963 ], [ -95.588339053554293, 29.628495162415838 ], [ -95.587333053043949, 29.62843916299526 ], [ -95.586844053166061, 29.628387162297788 ], [ -95.585911052556227, 29.628201162496371 ], [ -95.584855052379766, 29.627966162703341 ], [ -95.583352051619045, 29.627568162790322 ], [ -95.582659051345431, 29.62734816261186 ], [ -95.581801051309668, 29.627014162342885 ], [ -95.581251051263649, 29.626794162374324 ], [ -95.580480051310658, 29.626446162574108 ], [ -95.580259050825717, 29.626340162232257 ], [ -95.579896051220885, 29.626167162857673 ], [ -95.579428050498748, 29.625932162764474 ], [ -95.578810051108775, 29.625642162235 ], [ -95.578038050389068, 29.62530516256162 ], [ -95.576959050366142, 29.624796162335102 ], [ -95.575772050067485, 29.624240162345586 ], [ -95.57377304916912, 29.62325916169236 ], [ -95.572453049150965, 29.622640162473218 ], [ -95.570771048650542, 29.621848161985184 ], [ -95.570482048977368, 29.621711161728527 ], [ -95.566084047153268, 29.619613161364626 ], [ -95.565583047185754, 29.619190161982022 ], [ -95.565435046797162, 29.61906416198083 ], [ -95.565013047233762, 29.618691161358971 ], [ -95.564681046916107, 29.618398161356907 ], [ -95.564641046541013, 29.618362161069602 ], [ -95.564438046818793, 29.618224161503882 ], [ -95.563930046856385, 29.61787816170353 ], [ -95.563639046655481, 29.617639161475086 ], [ -95.563242046482713, 29.61734816123991 ], [ -95.562859046059046, 29.61710516149148 ], [ -95.562385046312883, 29.616853161167199 ], [ -95.561795046472014, 29.616595160895159 ], [ -95.561158046126792, 29.616294161580814 ], [ -95.56049504521441, 29.616021160917185 ], [ -95.559763045337576, 29.615687161411589 ], [ -95.559042045164418, 29.615392160962731 ], [ -95.558076044562725, 29.615081160808913 ], [ -95.556944044670502, 29.614820160649597 ], [ -95.556090044059502, 29.614597160967204 ], [ -95.555166043879069, 29.614382160940636 ], [ -95.554504044473063, 29.614282160655396 ], [ -95.553937043843504, 29.614233161325778 ], [ -95.552736043476315, 29.614139161161074 ], [ -95.552052043862034, 29.61412016135127 ], [ -95.551332043384349, 29.614144160714652 ], [ -95.550806042816788, 29.614185160870786 ], [ -95.550505042695278, 29.614222161411639 ], [ -95.550167043359693, 29.614265161417347 ], [ -95.549665042350952, 29.614363161358199 ], [ -95.549201043246597, 29.614497160864655 ], [ -95.548389042716067, 29.614756161068268 ], [ -95.547962042898732, 29.614913160935803 ], [ -95.547389042112698, 29.615141161247735 ], [ -95.546784041789124, 29.615349161748465 ], [ -95.546380042203978, 29.615519161821897 ], [ -95.545483042088108, 29.615896161511081 ], [ -95.544422042080981, 29.616297161565864 ], [ -95.543881041312162, 29.616469162022756 ], [ -95.543241041017183, 29.616709161887439 ], [ -95.542403041111854, 29.617020162007304 ], [ -95.54150204113219, 29.617349162395723 ], [ -95.540718040219005, 29.617666162282308 ], [ -95.539819040937942, 29.618008161888142 ], [ -95.539047039877943, 29.618325161924414 ], [ -95.538616040312121, 29.61850016268485 ], [ -95.538131040301252, 29.618674162180522 ], [ -95.537206039570577, 29.619030162699453 ], [ -95.536801039849351, 29.619191162350315 ], [ -95.536424039908994, 29.619327162448581 ], [ -95.535186039269547, 29.619794163103659 ], [ -95.534767039439544, 29.619952162963223 ], [ -95.53393403864041, 29.620272162535031 ], [ -95.532320039217211, 29.620918162651652 ], [ -95.531382038907481, 29.62129316342828 ], [ -95.529822038622868, 29.621870163247426 ], [ -95.527670037626208, 29.622736163157374 ], [ -95.526623037807852, 29.623153163326549 ], [ -95.525810037025195, 29.62347816392888 ], [ -95.523578036835275, 29.62426616364046 ], [ -95.523142036814221, 29.624413163896204 ], [ -95.520831036412346, 29.625332164591629 ], [ -95.520792036144371, 29.625360163986283 ], [ -95.521056036286723, 29.625484164383344 ], [ -95.52117803656823, 29.625541164535612 ], [ -95.521461036631294, 29.625675163978048 ], [ -95.52158203620904, 29.625732164814679 ], [ -95.521636035735796, 29.625754164501448 ], [ -95.528389037618567, 29.628928165032193 ], [ -95.530547038831969, 29.629941165368109 ], [ -95.53225903878122, 29.63071116493423 ], [ -95.532700039227592, 29.630910165075502 ], [ -95.5329490397082, 29.631022165044712 ], [ -95.533428039384901, 29.631238164831235 ], [ -95.533803039383386, 29.631407164918908 ], [ -95.534423040190035, 29.631686165487373 ], [ -95.534983040164477, 29.631938165430824 ], [ -95.535096039715867, 29.631989164917488 ], [ -95.535262039983266, 29.632064165225732 ], [ -95.535348039717675, 29.632102164949472 ], [ -95.535418040185206, 29.632134165673818 ], [ -95.536117039997336, 29.632448165614253 ], [ -95.536395040138032, 29.632573164922913 ], [ -95.536477039891537, 29.63261016493411 ], [ -95.536527040449059, 29.632633165173285 ], [ -95.536584040591279, 29.632659165540225 ], [ -95.53661603986265, 29.632673165247994 ], [ -95.536634039980541, 29.632681165563167 ], [ -95.536790039969318, 29.632751165250415 ], [ -95.536872040008717, 29.632788165018088 ], [ -95.536999040555855, 29.632845164953252 ], [ -95.537192040934613, 29.632933165570339 ], [ -95.537592040094609, 29.633116165345449 ], [ -95.537855040746308, 29.633238165663368 ], [ -95.5379550406128, 29.633287165453829 ], [ -95.53799904045681, 29.633308165759331 ], [ -95.538380040840806, 29.633488165832489 ], [ -95.540942041989879, 29.634697165805978 ], [ -95.54110204189324, 29.634774165370548 ], [ -95.541875042105715, 29.635163165399316 ], [ -95.542070041529783, 29.635258165329159 ], [ -95.54377904207314, 29.635975165309414 ], [ -95.543859042826384, 29.63600916544593 ], [ -95.543927042195094, 29.636038165414202 ], [ -95.546197042876756, 29.637078165910861 ], [ -95.54632804289686, 29.637138165521844 ], [ -95.546728043393315, 29.637337166331946 ], [ -95.546855043445376, 29.637412166308724 ], [ -95.546874043134252, 29.637423166134209 ], [ -95.548051043912409, 29.637969165904458 ], [ -95.549113043910026, 29.638460166209082 ], [ -95.549278043679067, 29.638519166481849 ], [ -95.549328044156056, 29.638537166472183 ], [ -95.549806044415845, 29.638776165948109 ], [ -95.550062043909847, 29.638904165716458 ], [ -95.551042044784694, 29.639394166493268 ], [ -95.551128044431351, 29.639437166324353 ], [ -95.551614044173107, 29.639651165863778 ], [ -95.552728044565669, 29.640141166314244 ], [ -95.553628044817174, 29.640537166125981 ], [ -95.554252045039064, 29.640829166265878 ], [ -95.554659044989165, 29.64101616662586 ], [ -95.55594104590925, 29.641609166232239 ], [ -95.557735045763891, 29.642439166957391 ], [ -95.55794404626279, 29.642549166510229 ], [ -95.559818046541466, 29.643409166972386 ], [ -95.563462048131157, 29.645083166525623 ], [ -95.564017047477705, 29.64533816701552 ], [ -95.565229047709565, 29.645836167288465 ], [ -95.565486047809173, 29.645965166715921 ], [ -95.566523048088655, 29.646484166697704 ], [ -95.567027048696062, 29.646728166898239 ], [ -95.567409048663492, 29.646904166745195 ], [ -95.568445049579495, 29.647377167322656 ], [ -95.570661049308782, 29.648403167055761 ], [ -95.570740049814319, 29.648440167739054 ], [ -95.570822049752252, 29.648478167723077 ], [ -95.570997050047012, 29.648558167347623 ], [ -95.571072049601412, 29.648593167064661 ], [ -95.571227049828764, 29.648664167338602 ], [ -95.571370050220537, 29.648730167187768 ], [ -95.571561049492118, 29.648558167151009 ], [ -95.571976049779479, 29.648137167307731 ], [ -95.572206049821617, 29.647928167442693 ], [ -95.572518049659521, 29.647615167282645 ], [ -95.572885050726541, 29.647256166841533 ], [ -95.576079050637929, 29.644252165899172 ], [ -95.576242050753336, 29.644101166227291 ], [ -95.576369050485624, 29.643982165902777 ], [ -95.576746051351606, 29.643631166562024 ], [ -95.578905051603201, 29.641618165887778 ], [ -95.579041051149645, 29.641492165673075 ], [ -95.581348052381841, 29.639342165610987 ], [ -95.581526051614944, 29.639177165507814 ], [ -95.581708052083656, 29.63900716471349 ], [ -95.582467052089982, 29.638300164547136 ], [ -95.585285053329599, 29.635675164435806 ], [ -95.588938053864169, 29.632280163800985 ], [ -95.589619053981295, 29.631643162970157 ], [ -95.59034305426934, 29.630969162720852 ], [ -95.590855054256721, 29.630490162733913 ], [ -95.592468054672565, 29.628987162740234 ], [ -95.592786054905417, 29.628690162635419 ], [ -95.593089054664603, 29.628408162801218 ], [ -95.593274054511014, 29.628235162307796 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1594, "Tract": "48157671900", "Area_SqMi": 0.81861258703657314, "total_2009": 642, "total_2010": 570, "total_2011": 635, "total_2012": 796, "total_2013": 1030, "total_2014": 1050, "total_2015": 1299, "total_2016": 1337, "total_2017": 1424, "total_2018": 1497, "total_2019": 1385, "total_2020": 1314, "age1": 214, "age2": 395, "age3": 181, "earn1": 125, "earn2": 220, "earn3": 445, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 5, "naics_s05": 4, "naics_s06": 96, "naics_s07": 447, "naics_s08": 0, "naics_s09": 2, "naics_s10": 0, "naics_s11": 6, "naics_s12": 24, "naics_s13": 0, "naics_s14": 10, "naics_s15": 0, "naics_s16": 65, "naics_s17": 0, "naics_s18": 45, "naics_s19": 12, "naics_s20": 71, "race1": 550, "race2": 127, "race3": 4, "race4": 97, "race5": 3, "race6": 9, "ethnicity1": 493, "ethnicity2": 297, "edu1": 117, "edu2": 168, "edu3": 173, "edu4": 118, "Shape_Length": 23824.755598153406, "Shape_Area": 22821517.85713445, "total_2021": 1257, "total_2022": 790 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.597882057059294, 29.658202168804468 ], [ -95.597884057473735, 29.657233168153311 ], [ -95.597856057159149, 29.65505416789221 ], [ -95.597855056601531, 29.654979167486236 ], [ -95.597832056419804, 29.654201167191417 ], [ -95.597836056668953, 29.651813167281922 ], [ -95.597833056688685, 29.650221166948665 ], [ -95.597815056374984, 29.648196166422132 ], [ -95.595685056644029, 29.648630166239446 ], [ -95.595027056407758, 29.648694166777918 ], [ -95.594188055889404, 29.648694166712307 ], [ -95.593862055893453, 29.648650166385035 ], [ -95.593561055797906, 29.64860416668887 ], [ -95.59330505599695, 29.648550166988496 ], [ -95.593104055980348, 29.648507166308292 ], [ -95.592709055602811, 29.648413166989965 ], [ -95.592393055113604, 29.648316166261559 ], [ -95.59096205538458, 29.647970166507974 ], [ -95.590208055044869, 29.64783616704144 ], [ -95.5896410543087, 29.647772166471192 ], [ -95.589549054090114, 29.647774166764307 ], [ -95.589405054124498, 29.647777166304436 ], [ -95.589176054147686, 29.647781167060948 ], [ -95.588888054106093, 29.647787166987722 ], [ -95.588229054424176, 29.647800167099163 ], [ -95.585467053707447, 29.647869167135589 ], [ -95.584570053319226, 29.647889166791593 ], [ -95.583672052576176, 29.647905166893288 ], [ -95.583063052946144, 29.647883166724398 ], [ -95.582066052649182, 29.647760167028938 ], [ -95.58138605197108, 29.647606166785575 ], [ -95.580672052569895, 29.647365166884189 ], [ -95.580185051983818, 29.647145167242041 ], [ -95.579751052111831, 29.646895166759613 ], [ -95.579731051520824, 29.646888166563922 ], [ -95.577687051546732, 29.645250166842779 ], [ -95.577452051797593, 29.645065166887886 ], [ -95.576572050701941, 29.644373166380721 ], [ -95.576327050822172, 29.644171166248992 ], [ -95.576242050753336, 29.644101166227291 ], [ -95.576079050637929, 29.644252165899172 ], [ -95.572885050726541, 29.647256166841533 ], [ -95.572518049659521, 29.647615167282645 ], [ -95.572206049821617, 29.647928167442693 ], [ -95.571976049779479, 29.648137167307731 ], [ -95.571561049492118, 29.648558167151009 ], [ -95.571370050220537, 29.648730167187768 ], [ -95.571495049867224, 29.648787167669067 ], [ -95.571614049893867, 29.648842167543371 ], [ -95.571720050145089, 29.648891167535506 ], [ -95.572715050245975, 29.64935016770696 ], [ -95.577369051727914, 29.651495167781277 ], [ -95.577683051883398, 29.65164016810721 ], [ -95.578477051866074, 29.652006168156969 ], [ -95.580060052071545, 29.652736168214037 ], [ -95.581021052150135, 29.653178167676455 ], [ -95.581781053121517, 29.653529167957991 ], [ -95.582202053072777, 29.653723168126774 ], [ -95.582709053378665, 29.653957167860305 ], [ -95.582916053404631, 29.654052167716198 ], [ -95.583133052813466, 29.654132167833527 ], [ -95.583319053254002, 29.65423016845665 ], [ -95.5837130532598, 29.654438167729488 ], [ -95.584794054023448, 29.654921168593226 ], [ -95.584851054064302, 29.65494816851869 ], [ -95.585510054070681, 29.655252168090492 ], [ -95.585994054265655, 29.655481168744824 ], [ -95.586247053612453, 29.655601167971138 ], [ -95.5869250537704, 29.655921168485051 ], [ -95.586978054498289, 29.655945168020132 ], [ -95.587702054454439, 29.656289168695373 ], [ -95.58813705443788, 29.65648716838658 ], [ -95.588258055060294, 29.656542168693989 ], [ -95.58875105466025, 29.656763168922801 ], [ -95.58904205478423, 29.656899168138612 ], [ -95.590010055028074, 29.657350168208893 ], [ -95.590702055196161, 29.657674168408629 ], [ -95.590783055719086, 29.657712169061835 ], [ -95.591506055370331, 29.658052168432572 ], [ -95.591892055895997, 29.658233168475618 ], [ -95.592283055732779, 29.658410168665448 ], [ -95.592703056145226, 29.658600169096101 ], [ -95.593170055772987, 29.6588191691879 ], [ -95.59379305562706, 29.659098168446871 ], [ -95.594161056637915, 29.659261169038253 ], [ -95.595200056202671, 29.659764169269955 ], [ -95.596261056974512, 29.660236168825133 ], [ -95.597064057027836, 29.660606169168567 ], [ -95.597311056850089, 29.660719169329582 ], [ -95.597845057613569, 29.660964168995307 ], [ -95.597845057140361, 29.660928169097058 ], [ -95.597844057103714, 29.660699168944234 ], [ -95.597844057383782, 29.660601168702133 ], [ -95.597857057551295, 29.660483168740594 ], [ -95.597871056955697, 29.660357168820202 ], [ -95.597875057450608, 29.660020168768924 ], [ -95.597882057059294, 29.658202168804468 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1595, "Tract": "48157672100", "Area_SqMi": 2.9351104523589395, "total_2009": 8216, "total_2010": 5325, "total_2011": 11039, "total_2012": 8527, "total_2013": 9441, "total_2014": 9867, "total_2015": 10269, "total_2016": 10770, "total_2017": 11096, "total_2018": 11151, "total_2019": 11163, "total_2020": 10091, "age1": 2185, "age2": 5639, "age3": 2341, "earn1": 1644, "earn2": 2807, "earn3": 5714, "naics_s01": 7, "naics_s02": 48, "naics_s03": 0, "naics_s04": 1392, "naics_s05": 39, "naics_s06": 66, "naics_s07": 978, "naics_s08": 98, "naics_s09": 92, "naics_s10": 628, "naics_s11": 53, "naics_s12": 897, "naics_s13": 262, "naics_s14": 304, "naics_s15": 41, "naics_s16": 3681, "naics_s17": 415, "naics_s18": 1034, "naics_s19": 130, "naics_s20": 0, "race1": 6584, "race2": 1854, "race3": 70, "race4": 1475, "race5": 7, "race6": 175, "ethnicity1": 7532, "ethnicity2": 2633, "edu1": 1296, "edu2": 1742, "edu3": 2385, "edu4": 2557, "Shape_Length": 42990.862608209776, "Shape_Area": 81825855.920022503, "total_2021": 9495, "total_2022": 10165 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.648991068502113, 29.61345515768776 ], [ -95.6491170680587, 29.61341215777459 ], [ -95.648923067646081, 29.613058157658099 ], [ -95.648582068164075, 29.612694157778442 ], [ -95.648321067989144, 29.612387157655675 ], [ -95.647957067728001, 29.612058157289177 ], [ -95.646677067298995, 29.611152157176818 ], [ -95.645281066903706, 29.610288157256917 ], [ -95.64363906614625, 29.609272157250654 ], [ -95.643066066217131, 29.608974156887555 ], [ -95.640054065418184, 29.607027156587375 ], [ -95.639992066061566, 29.606985156834305 ], [ -95.639888065120189, 29.606914156507731 ], [ -95.639829065701576, 29.606873156317818 ], [ -95.639673065781849, 29.606767156145832 ], [ -95.639419065580441, 29.606593156322074 ], [ -95.639058065612986, 29.606347156248091 ], [ -95.637498064525346, 29.605281156299945 ], [ -95.635909064655024, 29.604199156004825 ], [ -95.635027064386719, 29.603593156309874 ], [ -95.63487906418483, 29.603491156053497 ], [ -95.633925063941575, 29.602809155876795 ], [ -95.633642063752674, 29.602642155863514 ], [ -95.633409063336828, 29.602505156231775 ], [ -95.632783063153013, 29.602216155469577 ], [ -95.63233306337672, 29.602032156235268 ], [ -95.632192063304743, 29.601982156076119 ], [ -95.630941062892148, 29.601565155780257 ], [ -95.628620062700108, 29.600697155669881 ], [ -95.627677061677048, 29.600344155969005 ], [ -95.627212062361167, 29.600193156023206 ], [ -95.626675061575952, 29.600017155453077 ], [ -95.6262550616147, 29.599895155865099 ], [ -95.625552061443045, 29.599670155401025 ], [ -95.625249061076076, 29.599546155302232 ], [ -95.624333061364453, 29.599238155826377 ], [ -95.623376061398986, 29.598862155084063 ], [ -95.62291506042375, 29.598696155733162 ], [ -95.622788061235042, 29.598658155578551 ], [ -95.622521060674714, 29.598560155035898 ], [ -95.622369060875883, 29.59869415514715 ], [ -95.621416060241685, 29.599662155649217 ], [ -95.62049606055632, 29.60056615613712 ], [ -95.619495059703823, 29.601620156258072 ], [ -95.619264059639363, 29.601841155820118 ], [ -95.619019060361254, 29.602076155991906 ], [ -95.618923060513495, 29.602167156440796 ], [ -95.618825059692043, 29.602261156292418 ], [ -95.616705059486392, 29.604291156748243 ], [ -95.615573059536317, 29.60540415702091 ], [ -95.614787059240243, 29.606177157671901 ], [ -95.613937058488958, 29.607011157003491 ], [ -95.613837059442872, 29.607110157574095 ], [ -95.613739059311285, 29.607205157590652 ], [ -95.613597059202689, 29.607342157850244 ], [ -95.612944059257998, 29.607973157659824 ], [ -95.612814058852393, 29.608099157963245 ], [ -95.611891058389787, 29.608954157973852 ], [ -95.611284057950201, 29.609639158371497 ], [ -95.609542058220086, 29.611601158320415 ], [ -95.608402057725073, 29.612992158579406 ], [ -95.607138057652037, 29.614534159067425 ], [ -95.60665705794203, 29.615208158987066 ], [ -95.606249057841552, 29.615781159532443 ], [ -95.605711057471012, 29.616710160096559 ], [ -95.605254056851692, 29.617500159880066 ], [ -95.604592057071144, 29.61864416049422 ], [ -95.604285057326862, 29.619009159822589 ], [ -95.603768057302617, 29.61967216075309 ], [ -95.603288057007646, 29.620191160338873 ], [ -95.603077056277016, 29.620441160589941 ], [ -95.602435056682552, 29.621094161095492 ], [ -95.601843056981011, 29.621614160807219 ], [ -95.60181005628209, 29.621643160599643 ], [ -95.601743056212115, 29.621689161211574 ], [ -95.601612056240526, 29.621780160772904 ], [ -95.601489056466505, 29.621865161318176 ], [ -95.600101055929699, 29.622816161054114 ], [ -95.59847305613728, 29.623850161012193 ], [ -95.598175056003825, 29.624040161282675 ], [ -95.59726005563634, 29.62471416142354 ], [ -95.597117055267987, 29.624821161473893 ], [ -95.5965110550096, 29.625272161437685 ], [ -95.595445055321377, 29.626212162144917 ], [ -95.593627055135244, 29.627906162479007 ], [ -95.593488054875365, 29.628035162395214 ], [ -95.593994054641769, 29.62795016263571 ], [ -95.594678054992571, 29.627836162755706 ], [ -95.597784055675888, 29.627281162498736 ], [ -95.598334056196734, 29.627167161951963 ], [ -95.598899055510273, 29.627049161643662 ], [ -95.599089055581587, 29.627009162374975 ], [ -95.599883056170626, 29.626844162039315 ], [ -95.600673056817541, 29.62667916195775 ], [ -95.601041056223124, 29.626608162340517 ], [ -95.602843057098582, 29.626278161880041 ], [ -95.60302805739795, 29.626240162209079 ], [ -95.604923057038619, 29.625840161419127 ], [ -95.605787057455331, 29.625642161466203 ], [ -95.608444058487777, 29.625132161117907 ], [ -95.609897058502852, 29.624842161529877 ], [ -95.610064058862434, 29.624809160847601 ], [ -95.611132058545152, 29.624597161145637 ], [ -95.612160059545204, 29.624416160721374 ], [ -95.613769059541312, 29.624105160512723 ], [ -95.615242059857735, 29.623787161133066 ], [ -95.618742061343852, 29.623048160560245 ], [ -95.619343061200055, 29.622933160939954 ], [ -95.621992061613994, 29.622427160776898 ], [ -95.623515062227625, 29.622111160496573 ], [ -95.625036062839115, 29.621830160219119 ], [ -95.626610063129093, 29.621528160287845 ], [ -95.628126063394589, 29.621237159564199 ], [ -95.629653063758767, 29.62094415962077 ], [ -95.631899063723978, 29.620461159141296 ], [ -95.632920064011785, 29.620242159570985 ], [ -95.633487064568001, 29.620140159449718 ], [ -95.633654065065997, 29.62011615968262 ], [ -95.633724065000635, 29.620102159696458 ], [ -95.633793064804181, 29.620087159665236 ], [ -95.634029064703384, 29.620037159808312 ], [ -95.634306065092943, 29.620001159007984 ], [ -95.634651064777501, 29.619941159784119 ], [ -95.635166064568025, 29.619821159545815 ], [ -95.635393065491286, 29.6197821589396 ], [ -95.636355065047141, 29.619531158838438 ], [ -95.637714065338571, 29.619073159144385 ], [ -95.638336065992533, 29.618821159229249 ], [ -95.641300065897312, 29.617347158815171 ], [ -95.642553067072313, 29.616761158890618 ], [ -95.643762066592259, 29.616196158452887 ], [ -95.643832066657993, 29.616163158181191 ], [ -95.645895067651693, 29.615061158137166 ], [ -95.646296067839643, 29.614824157719248 ], [ -95.646523067968531, 29.614690157712204 ], [ -95.648400068083248, 29.613717157772744 ], [ -95.648745068306468, 29.613564157654498 ], [ -95.648991068502113, 29.61345515768776 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1596, "Tract": "48157672002", "Area_SqMi": 1.0371958398810022, "total_2009": 4053, "total_2010": 4041, "total_2011": 3943, "total_2012": 4166, "total_2013": 3994, "total_2014": 3997, "total_2015": 3976, "total_2016": 4214, "total_2017": 4610, "total_2018": 4289, "total_2019": 4330, "total_2020": 4308, "age1": 1271, "age2": 2258, "age3": 1068, "earn1": 1681, "earn2": 1401, "earn3": 1515, "naics_s01": 0, "naics_s02": 0, "naics_s03": 4, "naics_s04": 65, "naics_s05": 238, "naics_s06": 149, "naics_s07": 767, "naics_s08": 72, "naics_s09": 339, "naics_s10": 31, "naics_s11": 17, "naics_s12": 373, "naics_s13": 52, "naics_s14": 288, "naics_s15": 181, "naics_s16": 942, "naics_s17": 186, "naics_s18": 826, "naics_s19": 66, "naics_s20": 1, "race1": 2766, "race2": 1163, "race3": 27, "race4": 566, "race5": 7, "race6": 68, "ethnicity1": 3423, "ethnicity2": 1174, "edu1": 623, "edu2": 784, "edu3": 980, "edu4": 939, "Shape_Length": 21910.22672881202, "Shape_Area": 28915244.837460987, "total_2021": 4454, "total_2022": 4597 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.597824056913751, 29.646958165778855 ], [ -95.597824056367656, 29.646817166094618 ], [ -95.597796056537717, 29.644833165783989 ], [ -95.597806056957396, 29.644101165963882 ], [ -95.597745056693441, 29.642277165329887 ], [ -95.59779905634727, 29.640642164984737 ], [ -95.597786056271801, 29.638814164779355 ], [ -95.597810055907743, 29.636574164216164 ], [ -95.597819055614096, 29.635773163849308 ], [ -95.59781105637768, 29.635036163666868 ], [ -95.597788056356904, 29.633027163205302 ], [ -95.594727055694861, 29.633062163405146 ], [ -95.592936054825785, 29.633120163391727 ], [ -95.591831054621807, 29.633141163761536 ], [ -95.591629054115074, 29.633129163761048 ], [ -95.591401054187585, 29.633073163465774 ], [ -95.590146054037675, 29.632094163600524 ], [ -95.589802053824087, 29.631825163694501 ], [ -95.589619053981295, 29.631643162970157 ], [ -95.588938053864169, 29.632280163800985 ], [ -95.585285053329599, 29.635675164435806 ], [ -95.582467052089982, 29.638300164547136 ], [ -95.581708052083656, 29.63900716471349 ], [ -95.581526051614944, 29.639177165507814 ], [ -95.581348052381841, 29.639342165610987 ], [ -95.579041051149645, 29.641492165673075 ], [ -95.578905051603201, 29.641618165887778 ], [ -95.576746051351606, 29.643631166562024 ], [ -95.576369050485624, 29.643982165902777 ], [ -95.576242050753336, 29.644101166227291 ], [ -95.576327050822172, 29.644171166248992 ], [ -95.576572050701941, 29.644373166380721 ], [ -95.577452051797593, 29.645065166887886 ], [ -95.577687051546732, 29.645250166842779 ], [ -95.579731051520824, 29.646888166563922 ], [ -95.579751052111831, 29.646895166759613 ], [ -95.580185051983818, 29.647145167242041 ], [ -95.580672052569895, 29.647365166884189 ], [ -95.58138605197108, 29.647606166785575 ], [ -95.582066052649182, 29.647760167028938 ], [ -95.583063052946144, 29.647883166724398 ], [ -95.583672052576176, 29.647905166893288 ], [ -95.584570053319226, 29.647889166791593 ], [ -95.585467053707447, 29.647869167135589 ], [ -95.588229054424176, 29.647800167099163 ], [ -95.588888054106093, 29.647787166987722 ], [ -95.589176054147686, 29.647781167060948 ], [ -95.589405054124498, 29.647777166304436 ], [ -95.589549054090114, 29.647774166764307 ], [ -95.5896410543087, 29.647772166471192 ], [ -95.590208055044869, 29.64783616704144 ], [ -95.59096205538458, 29.647970166507974 ], [ -95.592393055113604, 29.648316166261559 ], [ -95.592709055602811, 29.648413166989965 ], [ -95.593104055980348, 29.648507166308292 ], [ -95.59330505599695, 29.648550166988496 ], [ -95.593561055797906, 29.64860416668887 ], [ -95.593862055893453, 29.648650166385035 ], [ -95.594188055889404, 29.648694166712307 ], [ -95.595027056407758, 29.648694166777918 ], [ -95.595685056644029, 29.648630166239446 ], [ -95.597815056374984, 29.648196166422132 ], [ -95.597818057061176, 29.647742166792018 ], [ -95.597823056590812, 29.647055166081724 ], [ -95.597824056913751, 29.646958165778855 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1597, "Tract": "48157670101", "Area_SqMi": 1.2915228094784545, "total_2009": 515, "total_2010": 541, "total_2011": 527, "total_2012": 529, "total_2013": 595, "total_2014": 636, "total_2015": 1182, "total_2016": 745, "total_2017": 870, "total_2018": 1216, "total_2019": 752, "total_2020": 858, "age1": 459, "age2": 912, "age3": 275, "earn1": 390, "earn2": 601, "earn3": 655, "naics_s01": 47, "naics_s02": 6, "naics_s03": 0, "naics_s04": 203, "naics_s05": 130, "naics_s06": 107, "naics_s07": 62, "naics_s08": 2, "naics_s09": 1, "naics_s10": 8, "naics_s11": 25, "naics_s12": 65, "naics_s13": 0, "naics_s14": 865, "naics_s15": 0, "naics_s16": 36, "naics_s17": 0, "naics_s18": 71, "naics_s19": 18, "naics_s20": 0, "race1": 913, "race2": 588, "race3": 16, "race4": 105, "race5": 2, "race6": 22, "ethnicity1": 1152, "ethnicity2": 494, "edu1": 297, "edu2": 321, "edu3": 383, "edu4": 186, "Shape_Length": 30437.843264104227, "Shape_Area": 36005445.464879192, "total_2021": 934, "total_2022": 1646 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.468291021624623, 29.593016159077436 ], [ -95.469578021770303, 29.590509158612619 ], [ -95.46813502069557, 29.589976159078475 ], [ -95.467520021161008, 29.58971715881583 ], [ -95.466905020490884, 29.589458159209769 ], [ -95.466104019990226, 29.589157159001264 ], [ -95.465286020555666, 29.588839158482184 ], [ -95.461302019449349, 29.587287158653467 ], [ -95.457520017957179, 29.585819158199008 ], [ -95.456293017896556, 29.585343157939391 ], [ -95.45598201712707, 29.585219157874132 ], [ -95.455638017431227, 29.585083157968526 ], [ -95.455273017243826, 29.58493915798163 ], [ -95.453742016860744, 29.584366157999128 ], [ -95.45399101681005, 29.583602158000858 ], [ -95.453998016718558, 29.583567157734336 ], [ -95.454137017104742, 29.582877158309099 ], [ -95.454129017240149, 29.582284157896719 ], [ -95.454082016784085, 29.581173157126742 ], [ -95.451769016540283, 29.581216157824432 ], [ -95.448496015559712, 29.58128415734906 ], [ -95.447424015100509, 29.581307157873823 ], [ -95.44678201461636, 29.581320157997897 ], [ -95.446227015071997, 29.581332158245225 ], [ -95.44206301434933, 29.581427157850214 ], [ -95.441206013500889, 29.581438158213402 ], [ -95.440427013136286, 29.581472157772986 ], [ -95.43953601347566, 29.581511157653498 ], [ -95.438256013029914, 29.581533157968288 ], [ -95.436972012709276, 29.581550157747976 ], [ -95.435851012188508, 29.581573157776049 ], [ -95.435482011865375, 29.581577158431024 ], [ -95.43402201167379, 29.581624157975831 ], [ -95.432525011630474, 29.581618157902309 ], [ -95.432296011378284, 29.581617158280594 ], [ -95.432002011631539, 29.581649158203319 ], [ -95.431541011665118, 29.581699158514301 ], [ -95.431264011128349, 29.582697158339393 ], [ -95.431058010791702, 29.583439159051395 ], [ -95.431034011568684, 29.583514158911434 ], [ -95.431069011704722, 29.58354315839178 ], [ -95.431206010967585, 29.583647158793998 ], [ -95.431325011347766, 29.583738158498281 ], [ -95.431524011235368, 29.583826158754874 ], [ -95.435625012542289, 29.585638159480219 ], [ -95.435797012737424, 29.58572615944281 ], [ -95.437146013099152, 29.586416159390424 ], [ -95.438109013237067, 29.586908159145704 ], [ -95.440115013554461, 29.587933159294803 ], [ -95.440253013545757, 29.587995159081657 ], [ -95.440388013883876, 29.588055159780097 ], [ -95.440422013440212, 29.588070159124033 ], [ -95.445437014722216, 29.59029915945068 ], [ -95.446277015789718, 29.590672160065182 ], [ -95.446346015244814, 29.590703159826408 ], [ -95.446977015268899, 29.590983160153755 ], [ -95.447326016100007, 29.591138160139661 ], [ -95.447400015399481, 29.591176159766302 ], [ -95.44787601610544, 29.59142116007154 ], [ -95.448520015884384, 29.591754159874764 ], [ -95.448831015699994, 29.591915159851961 ], [ -95.450130016863, 29.592587159796377 ], [ -95.450452017007194, 29.592753159774102 ], [ -95.450649016867828, 29.592848159905987 ], [ -95.451173016985209, 29.59310015989832 ], [ -95.451264016731216, 29.593144159813669 ], [ -95.451449016820348, 29.593232160513548 ], [ -95.451616016493901, 29.59331116032185 ], [ -95.451860016449771, 29.593426160388947 ], [ -95.452088016476736, 29.593534160485561 ], [ -95.453262017067914, 29.594024160278479 ], [ -95.453751017649395, 29.594228160357552 ], [ -95.45488201756973, 29.594760160156167 ], [ -95.455096017396698, 29.594864160540507 ], [ -95.455110017640152, 29.594871159944631 ], [ -95.455187017825338, 29.594907160235689 ], [ -95.45532901754315, 29.594974160471821 ], [ -95.455632017734231, 29.595117159964175 ], [ -95.456272018513118, 29.595418160120481 ], [ -95.456297017934858, 29.595430160066876 ], [ -95.45638601821905, 29.595472160820517 ], [ -95.456526018382675, 29.595538160756679 ], [ -95.456708018260926, 29.595621160221615 ], [ -95.458198018862376, 29.596298160914383 ], [ -95.458726019084295, 29.596538160879806 ], [ -95.460250019300403, 29.597259160841102 ], [ -95.465052020936852, 29.599604161000379 ], [ -95.465143020094885, 29.599378160974556 ], [ -95.46551902109131, 29.598635160972037 ], [ -95.465857020900103, 29.597964160375792 ], [ -95.466203021108768, 29.597206160425181 ], [ -95.466442020427934, 29.596724159878871 ], [ -95.467041020707285, 29.59551315965648 ], [ -95.467568021314236, 29.594470160127731 ], [ -95.468291021624623, 29.593016159077436 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1598, "Tract": "48157672701", "Area_SqMi": 1.2217323715650914, "total_2009": 101, "total_2010": 122, "total_2011": 162, "total_2012": 230, "total_2013": 211, "total_2014": 258, "total_2015": 257, "total_2016": 253, "total_2017": 290, "total_2018": 340, "total_2019": 324, "total_2020": 328, "age1": 45, "age2": 229, "age3": 118, "earn1": 116, "earn2": 123, "earn3": 153, "naics_s01": 8, "naics_s02": 0, "naics_s03": 0, "naics_s04": 106, "naics_s05": 28, "naics_s06": 48, "naics_s07": 9, "naics_s08": 10, "naics_s09": 2, "naics_s10": 0, "naics_s11": 4, "naics_s12": 7, "naics_s13": 0, "naics_s14": 4, "naics_s15": 1, "naics_s16": 146, "naics_s17": 0, "naics_s18": 7, "naics_s19": 12, "naics_s20": 0, "race1": 208, "race2": 131, "race3": 0, "race4": 49, "race5": 0, "race6": 4, "ethnicity1": 303, "ethnicity2": 89, "edu1": 93, "edu2": 78, "edu3": 105, "edu4": 71, "Shape_Length": 24091.011746865133, "Shape_Area": 34059807.503382891, "total_2021": 321, "total_2022": 392 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.680057079306025, 29.680386169992339 ], [ -95.680055078635178, 29.680289170540014 ], [ -95.680041078532128, 29.679396169839954 ], [ -95.67999207941952, 29.677456170004657 ], [ -95.679975079379332, 29.676755169930413 ], [ -95.679973078407002, 29.676696169588414 ], [ -95.679972079047673, 29.676650169181059 ], [ -95.679971078487654, 29.676613169626005 ], [ -95.679804078952998, 29.669365167719803 ], [ -95.679741078076532, 29.668862167960018 ], [ -95.679642078163596, 29.668401167658576 ], [ -95.679528078340752, 29.667897167252825 ], [ -95.679470078189482, 29.667389167894331 ], [ -95.679464078248998, 29.667325167894955 ], [ -95.678613077663556, 29.667413167279925 ], [ -95.678405077916324, 29.667427167580776 ], [ -95.678142077528534, 29.667433167709159 ], [ -95.677872077774282, 29.667427167531567 ], [ -95.677475077891827, 29.667400167543846 ], [ -95.677246077533866, 29.667373167844161 ], [ -95.676808078054833, 29.667319167307291 ], [ -95.676538077430777, 29.667299167504343 ], [ -95.676295077905309, 29.66728516746441 ], [ -95.676026077455276, 29.667292168016633 ], [ -95.675689076882676, 29.667305168033987 ], [ -95.675386077237704, 29.667332168137499 ], [ -95.675042077157329, 29.667373167955418 ], [ -95.673838076684532, 29.667465167795797 ], [ -95.673357077255901, 29.667472167939167 ], [ -95.673252076894983, 29.667479168080614 ], [ -95.673156076780913, 29.667476167829282 ], [ -95.672616076920349, 29.66746616776997 ], [ -95.672479076442002, 29.667484167399969 ], [ -95.672264076152373, 29.667487168099768 ], [ -95.671776076156121, 29.667496167482142 ], [ -95.671144076208989, 29.667508168310896 ], [ -95.670986076497982, 29.6675161676696 ], [ -95.670794075829392, 29.667507168041727 ], [ -95.670773075634528, 29.667514168247255 ], [ -95.670291076461154, 29.667522167832256 ], [ -95.670171075908272, 29.667513168138928 ], [ -95.670106075505998, 29.667521167925678 ], [ -95.669896075650584, 29.667525168353681 ], [ -95.669474075553225, 29.667532167999504 ], [ -95.66898207586766, 29.667543168034815 ], [ -95.66880407595032, 29.667558167967549 ], [ -95.667900075757345, 29.667632168458585 ], [ -95.667725075434234, 29.667672168384811 ], [ -95.667183075215576, 29.667802167984828 ], [ -95.667118074700767, 29.66781816805824 ], [ -95.667056074961508, 29.667835167992301 ], [ -95.66693707479709, 29.667867168374627 ], [ -95.666054074697101, 29.668029168534709 ], [ -95.665319074762905, 29.668049168280241 ], [ -95.664277074046453, 29.668055167825987 ], [ -95.663562074299278, 29.66803616839875 ], [ -95.66295607388885, 29.667964167819623 ], [ -95.662581074151106, 29.667878168500806 ], [ -95.662098074330785, 29.66773816862645 ], [ -95.661786073517916, 29.66762016834857 ], [ -95.661669074223852, 29.667566167957332 ], [ -95.661438073502296, 29.667941168592318 ], [ -95.661410073643239, 29.667998168627058 ], [ -95.661395073543417, 29.668041168236154 ], [ -95.661381073624142, 29.66809716797146 ], [ -95.66137407345802, 29.668141168606496 ], [ -95.661369073413596, 29.668213168797323 ], [ -95.661368073965136, 29.668320168616333 ], [ -95.661350073482282, 29.668322168533571 ], [ -95.658399072873735, 29.668624168288343 ], [ -95.657957072887356, 29.668666168810812 ], [ -95.657827072428276, 29.668679168904422 ], [ -95.657726072356269, 29.668677168287783 ], [ -95.657422073043875, 29.670639168688041 ], [ -95.657220072583542, 29.671655169248737 ], [ -95.657189073035141, 29.672131169040643 ], [ -95.657089072839767, 29.672749169451833 ], [ -95.656950073369032, 29.673592169895745 ], [ -95.656590073268632, 29.676041170256834 ], [ -95.656422073248351, 29.677005170190611 ], [ -95.656399072913061, 29.677144170749227 ], [ -95.656350072789849, 29.677224170291026 ], [ -95.656340073004429, 29.677286170698853 ], [ -95.65622507241352, 29.678014170444367 ], [ -95.656152073303474, 29.678487170836583 ], [ -95.65607507298752, 29.678940171149971 ], [ -95.656061073377103, 29.679052170659617 ], [ -95.655981072531361, 29.679556170699946 ], [ -95.655975072945239, 29.679632171311564 ], [ -95.655976072798708, 29.679866170766825 ], [ -95.655978073024826, 29.679994170731717 ], [ -95.656162072787822, 29.680008171343076 ], [ -95.657382073271506, 29.679997171152102 ], [ -95.659064074213319, 29.679981170632928 ], [ -95.660623074167304, 29.67997317092717 ], [ -95.661988073953495, 29.679966171117535 ], [ -95.662094074949493, 29.679966170847734 ], [ -95.662262074589108, 29.679965170643413 ], [ -95.662842074800722, 29.679955170442316 ], [ -95.662980074451539, 29.679933170466651 ], [ -95.66347107452583, 29.679828171028799 ], [ -95.663817074391332, 29.679817170628635 ], [ -95.664182075445396, 29.679856170302045 ], [ -95.664384074575835, 29.679905171088592 ], [ -95.665378075468197, 29.680213171004933 ], [ -95.668180076376927, 29.681159170754853 ], [ -95.669053076782816, 29.68144317114789 ], [ -95.66912407632185, 29.681467170654567 ], [ -95.669502076193439, 29.681597171203734 ], [ -95.670584076951528, 29.681967171096606 ], [ -95.67086807634665, 29.682044170933104 ], [ -95.671145076997959, 29.682077170527606 ], [ -95.67131507721875, 29.682088170993691 ], [ -95.671510076859448, 29.682066171147149 ], [ -95.671805076758957, 29.682003170468118 ], [ -95.671995077391983, 29.681962171058725 ], [ -95.67234107675263, 29.681759171067426 ], [ -95.672523077521134, 29.681621171047919 ], [ -95.672637077144174, 29.681478171058579 ], [ -95.67280007773995, 29.681225170973441 ], [ -95.672958077581029, 29.681033170694498 ], [ -95.673103076995545, 29.68091817072397 ], [ -95.673247077444529, 29.680830170106425 ], [ -95.673720076966873, 29.680648170369494 ], [ -95.674011077843076, 29.680605170466592 ], [ -95.674196077460309, 29.680577170523293 ], [ -95.676767077746703, 29.680511170050902 ], [ -95.6768140779118, 29.68051217049408 ], [ -95.676965078660331, 29.680516169987278 ], [ -95.67720107860859, 29.680522170406629 ], [ -95.677919078117924, 29.680511170733432 ], [ -95.678768078563408, 29.680445170086251 ], [ -95.679574079279135, 29.680429170400739 ], [ -95.679713079015428, 29.680418170103579 ], [ -95.679902078875216, 29.680379170191692 ], [ -95.679988079125621, 29.68038217007015 ], [ -95.680057079306025, 29.680386169992339 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1599, "Tract": "48157672201", "Area_SqMi": 1.4231909254253829, "total_2009": 23, "total_2010": 28, "total_2011": 5, "total_2012": 191, "total_2013": 214, "total_2014": 206, "total_2015": 291, "total_2016": 356, "total_2017": 406, "total_2018": 346, "total_2019": 300, "total_2020": 114, "age1": 74, "age2": 91, "age3": 80, "earn1": 120, "earn2": 89, "earn3": 36, "naics_s01": 0, "naics_s02": 0, "naics_s03": 1, "naics_s04": 0, "naics_s05": 0, "naics_s06": 10, "naics_s07": 62, "naics_s08": 0, "naics_s09": 5, "naics_s10": 1, "naics_s11": 3, "naics_s12": 15, "naics_s13": 0, "naics_s14": 2, "naics_s15": 0, "naics_s16": 28, "naics_s17": 92, "naics_s18": 16, "naics_s19": 10, "naics_s20": 0, "race1": 143, "race2": 36, "race3": 2, "race4": 62, "race5": 0, "race6": 2, "ethnicity1": 196, "ethnicity2": 49, "edu1": 28, "edu2": 43, "edu3": 48, "edu4": 52, "Shape_Length": 30533.358099440171, "Shape_Area": 39676127.185246907, "total_2021": 155, "total_2022": 245 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.651600070479077, 29.644400163411461 ], [ -95.651600070498731, 29.644356163854148 ], [ -95.651553069814057, 29.642751163823984 ], [ -95.651555069631527, 29.642572163757364 ], [ -95.651555070411845, 29.642560163317675 ], [ -95.651532070381265, 29.638808162268536 ], [ -95.651531069489451, 29.638577162241656 ], [ -95.651513070129525, 29.637223162363213 ], [ -95.651501069701013, 29.636277162297993 ], [ -95.651498070027586, 29.635472162455045 ], [ -95.65149506978895, 29.634495161538275 ], [ -95.651494069594676, 29.634410161900291 ], [ -95.651494069550552, 29.634325162010825 ], [ -95.651493069431439, 29.633993161809634 ], [ -95.651490069890826, 29.633247161131553 ], [ -95.651424069279628, 29.631652161615985 ], [ -95.651373069328486, 29.630469161424191 ], [ -95.651345069556157, 29.630061160646331 ], [ -95.651269069977005, 29.629502160556719 ], [ -95.651162069884961, 29.6289071611426 ], [ -95.650770069486342, 29.627290160102746 ], [ -95.650238069172346, 29.625263159720642 ], [ -95.650128068785293, 29.623203159271544 ], [ -95.650070068612266, 29.620636158808857 ], [ -95.650043068548868, 29.617750158014154 ], [ -95.65000706816987, 29.616641158105406 ], [ -95.649945068072356, 29.615830158396808 ], [ -95.64987706884628, 29.615205157962233 ], [ -95.649718068353849, 29.614660157759729 ], [ -95.64943106804526, 29.613954157772142 ], [ -95.64935406829818, 29.613830158001683 ], [ -95.649241067860842, 29.613626157726699 ], [ -95.649228068674631, 29.613586157721738 ], [ -95.649171067909109, 29.613485157756088 ], [ -95.6491170680587, 29.61341215777459 ], [ -95.648991068502113, 29.61345515768776 ], [ -95.648745068306468, 29.613564157654498 ], [ -95.648400068083248, 29.613717157772744 ], [ -95.646523067968531, 29.614690157712204 ], [ -95.646296067839643, 29.614824157719248 ], [ -95.645895067651693, 29.615061158137166 ], [ -95.643832066657993, 29.616163158181191 ], [ -95.643762066592259, 29.616196158452887 ], [ -95.643827066516621, 29.616383157929487 ], [ -95.643925066789024, 29.616661158473221 ], [ -95.644003067346787, 29.616885158030815 ], [ -95.644089067433129, 29.617151158351994 ], [ -95.644805067825928, 29.619367159340083 ], [ -95.645225067330003, 29.621012159119456 ], [ -95.645178067543085, 29.621271159192954 ], [ -95.644186067207158, 29.621624159364771 ], [ -95.643783067102035, 29.62170415972604 ], [ -95.642836067149887, 29.621758159501738 ], [ -95.642305066488021, 29.62171115929689 ], [ -95.640911066055892, 29.621837159755707 ], [ -95.640548066269616, 29.621995159374887 ], [ -95.640186066496398, 29.622233159437958 ], [ -95.640161065978987, 29.6222581593819 ], [ -95.639942066093653, 29.622477159789337 ], [ -95.639674066368698, 29.62288115954523 ], [ -95.639428065830572, 29.623939160371823 ], [ -95.639346066223055, 29.624834159869856 ], [ -95.639478066202642, 29.626230160722923 ], [ -95.63947106636509, 29.626590160960237 ], [ -95.639324065875158, 29.626886160686059 ], [ -95.638910066512082, 29.627471160691083 ], [ -95.638566066475477, 29.627958161170632 ], [ -95.638441066181585, 29.628104161066378 ], [ -95.637975066159058, 29.628651160801208 ], [ -95.637591065937713, 29.629028161595414 ], [ -95.637083066175094, 29.629395160973001 ], [ -95.636745066241303, 29.629527161217116 ], [ -95.635811065494295, 29.629625161671413 ], [ -95.635533065016062, 29.629566161141927 ], [ -95.635485064989112, 29.629520161070133 ], [ -95.63546306531785, 29.629540160992129 ], [ -95.635421065886348, 29.629578161220387 ], [ -95.634868065100889, 29.630094161861166 ], [ -95.636478065509081, 29.631385162114395 ], [ -95.636495066126685, 29.631398161297753 ], [ -95.636522065439124, 29.63141616144193 ], [ -95.636619065473823, 29.631479161608521 ], [ -95.636772065692, 29.631578161642775 ], [ -95.637016066262731, 29.63179416146831 ], [ -95.637185065726896, 29.631986161664788 ], [ -95.63731106631657, 29.632197162125898 ], [ -95.637374066284423, 29.632346161624074 ], [ -95.6373930658836, 29.632392161596446 ], [ -95.637503066551233, 29.632633162361966 ], [ -95.637606066453145, 29.63299316198022 ], [ -95.637630065975358, 29.633247161578808 ], [ -95.637688066137272, 29.634464162331369 ], [ -95.637704066467663, 29.634842162420419 ], [ -95.63769406667717, 29.634982162503857 ], [ -95.637660066318517, 29.63517916211271 ], [ -95.637618065930525, 29.635321162698652 ], [ -95.637568065878497, 29.63545316238681 ], [ -95.637502066668901, 29.635595162943975 ], [ -95.637425066438723, 29.635714162350759 ], [ -95.637325066452036, 29.635840162346117 ], [ -95.636917065987404, 29.636353162916695 ], [ -95.636833066017644, 29.636469162658944 ], [ -95.636754065750793, 29.636601162617602 ], [ -95.636688066385886, 29.636748162467317 ], [ -95.63660406571627, 29.636948162982659 ], [ -95.636525066309019, 29.637161162499254 ], [ -95.636451065820495, 29.637432162684664 ], [ -95.636407065754184, 29.637669162685519 ], [ -95.636386065743707, 29.637830163054051 ], [ -95.636366066093004, 29.638024162674053 ], [ -95.636352066176443, 29.638522163075681 ], [ -95.636366065623335, 29.638694163356451 ], [ -95.636403065720927, 29.63886916344525 ], [ -95.636460066551876, 29.639051163318285 ], [ -95.636551066166916, 29.639274163101138 ], [ -95.636716065968955, 29.639687163704824 ], [ -95.636808066414744, 29.640005163480836 ], [ -95.636840065861591, 29.640166163326676 ], [ -95.636856066651305, 29.640322163126815 ], [ -95.636869066712904, 29.640545163994709 ], [ -95.636880066792727, 29.640876163389734 ], [ -95.636901066496549, 29.641309163331336 ], [ -95.636928066558212, 29.64153116377415 ], [ -95.636981065971682, 29.641744163821613 ], [ -95.637048066489811, 29.641904163707707 ], [ -95.637141066678751, 29.642086164073447 ], [ -95.637243066112291, 29.642246164033647 ], [ -95.637358066561958, 29.642405163668126 ], [ -95.637532066837991, 29.642605163583816 ], [ -95.637687066135172, 29.642752163536997 ], [ -95.637851066608974, 29.642876163768548 ], [ -95.638177066473958, 29.643112164278303 ], [ -95.638640066872043, 29.643491164220322 ], [ -95.638842067338814, 29.643702164495096 ], [ -95.638992067282345, 29.643904164609619 ], [ -95.639062066484954, 29.64402916411716 ], [ -95.63913006679438, 29.644163164077533 ], [ -95.639181066907028, 29.644301164534092 ], [ -95.639207067362648, 29.644381164151614 ], [ -95.639242067172134, 29.644482164702577 ], [ -95.639361067140982, 29.644482164035651 ], [ -95.639487067565199, 29.644481164702565 ], [ -95.643391067848853, 29.644452163897871 ], [ -95.643934068674298, 29.64444716444363 ], [ -95.645218068666566, 29.644435164349563 ], [ -95.646522069001975, 29.644429163613193 ], [ -95.647413069178668, 29.644429164277067 ], [ -95.647764068739519, 29.644429164101297 ], [ -95.64787606901298, 29.644430163903852 ], [ -95.64859706982098, 29.64441916357092 ], [ -95.649173069177962, 29.644418163542348 ], [ -95.649740069363062, 29.644413163691215 ], [ -95.650188069370913, 29.644410163932083 ], [ -95.651531070235364, 29.644399163838674 ], [ -95.651600070479077, 29.644400163411461 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1600, "Tract": "48157672500", "Area_SqMi": 1.0086089485800669, "total_2009": 211, "total_2010": 238, "total_2011": 346, "total_2012": 280, "total_2013": 275, "total_2014": 259, "total_2015": 326, "total_2016": 338, "total_2017": 272, "total_2018": 577, "total_2019": 760, "total_2020": 1223, "age1": 215, "age2": 448, "age3": 104, "earn1": 254, "earn2": 267, "earn3": 246, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 0, "naics_s06": 3, "naics_s07": 74, "naics_s08": 0, "naics_s09": 0, "naics_s10": 27, "naics_s11": 47, "naics_s12": 5, "naics_s13": 0, "naics_s14": 491, "naics_s15": 0, "naics_s16": 43, "naics_s17": 0, "naics_s18": 56, "naics_s19": 5, "naics_s20": 0, "race1": 460, "race2": 196, "race3": 12, "race4": 85, "race5": 1, "race6": 13, "ethnicity1": 541, "ethnicity2": 226, "edu1": 95, "edu2": 153, "edu3": 186, "edu4": 118, "Shape_Length": 24133.911417842377, "Shape_Area": 28118291.234944358, "total_2021": 1130, "total_2022": 767 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.664700076004877, 29.697539174615631 ], [ -95.664692076017005, 29.697392174216361 ], [ -95.664692075503822, 29.697191173772694 ], [ -95.664683076346805, 29.697015174558089 ], [ -95.664650076314047, 29.696658173858509 ], [ -95.664603075671522, 29.696322173941294 ], [ -95.664553076071002, 29.696011173904594 ], [ -95.664469076072805, 29.695671173493423 ], [ -95.66440207605271, 29.695360174111862 ], [ -95.664331075415802, 29.695125173554366 ], [ -95.66425907525668, 29.694882173437346 ], [ -95.663978075591587, 29.694038173290885 ], [ -95.663719075290189, 29.693258173302024 ], [ -95.663596075089885, 29.692728173689055 ], [ -95.663533075173788, 29.692422173483408 ], [ -95.663487075418971, 29.692140173112353 ], [ -95.663462075489264, 29.691997173427204 ], [ -95.663446075850075, 29.69184917274378 ], [ -95.66342207577155, 29.691654172985057 ], [ -95.663395074913424, 29.691389172794789 ], [ -95.66337707542084, 29.691020172714026 ], [ -95.663354075482545, 29.690546173042524 ], [ -95.663347074908629, 29.688927172715292 ], [ -95.663327075008098, 29.688031172292337 ], [ -95.663295075067936, 29.687031171880687 ], [ -95.663272074604023, 29.686856172540107 ], [ -95.663241075293669, 29.686668172044463 ], [ -95.663188074810222, 29.686450171778468 ], [ -95.663117075165204, 29.686229172134059 ], [ -95.663033074591866, 29.685984171886172 ], [ -95.662857074667542, 29.685560171563385 ], [ -95.662745075174982, 29.685342171876083 ], [ -95.662632075155187, 29.685139172103224 ], [ -95.662472074435456, 29.684863171308095 ], [ -95.662274074630147, 29.684483171225736 ], [ -95.662058074847124, 29.683840171298012 ], [ -95.662033074619387, 29.683737171345644 ], [ -95.661984074660666, 29.683560171294985 ], [ -95.66195907463225, 29.683422171408722 ], [ -95.661915074347064, 29.683146171342749 ], [ -95.661885074365742, 29.682910171381089 ], [ -95.661866074327634, 29.682561171562558 ], [ -95.661866074336771, 29.682374171635647 ], [ -95.661880074577965, 29.682084170941234 ], [ -95.661935074799416, 29.681670170703111 ], [ -95.661966074644994, 29.681437170785877 ], [ -95.661969074181997, 29.681423171035583 ], [ -95.66200507463833, 29.681249170858973 ], [ -95.662027074244179, 29.681130171099166 ], [ -95.662050074147857, 29.680951171236821 ], [ -95.662065074173043, 29.680739170772735 ], [ -95.662076074495175, 29.680553170705977 ], [ -95.662087074831575, 29.680289170839838 ], [ -95.662094074949493, 29.679966170847734 ], [ -95.661988073953495, 29.679966171117535 ], [ -95.660623074167304, 29.67997317092717 ], [ -95.659064074213319, 29.679981170632928 ], [ -95.657382073271506, 29.679997171152102 ], [ -95.656162072787822, 29.680008171343076 ], [ -95.655978073024826, 29.679994170731717 ], [ -95.65595507335054, 29.679992171070364 ], [ -95.655848072463897, 29.679937171040965 ], [ -95.655615072842323, 29.679777171222899 ], [ -95.654834072317996, 29.679172170937214 ], [ -95.653947071991396, 29.678513170307326 ], [ -95.653664072006151, 29.678337170300143 ], [ -95.653468071728682, 29.678216171000351 ], [ -95.653355071878323, 29.678155170851408 ], [ -95.653248072507481, 29.678122170966088 ], [ -95.65304007249334, 29.678106170849247 ], [ -95.652386071574867, 29.678138170567831 ], [ -95.651678071505884, 29.678163170815136 ], [ -95.649250071213402, 29.678248170714291 ], [ -95.648344071394249, 29.678280170476533 ], [ -95.648126071330736, 29.678282170630677 ], [ -95.647236070128258, 29.678291171065194 ], [ -95.646991070721128, 29.678274170946665 ], [ -95.646600070068104, 29.678219170763541 ], [ -95.645801069733778, 29.678087171108128 ], [ -95.645417070422567, 29.678005171174341 ], [ -95.645247069792447, 29.677939170546416 ], [ -95.64517807026597, 29.677851170784159 ], [ -95.645178070344087, 29.677785170994728 ], [ -95.645228070148647, 29.677394170924146 ], [ -95.645265069670003, 29.677150170313375 ], [ -95.645271070100407, 29.677113170498306 ], [ -95.645284070364653, 29.677029170472515 ], [ -95.645022069482863, 29.677082170555646 ], [ -95.644968069489849, 29.677093170722518 ], [ -95.644673070304108, 29.677131171159782 ], [ -95.644493069451855, 29.677150170767597 ], [ -95.644292069321608, 29.677170171064724 ], [ -95.643944069848089, 29.677193170402866 ], [ -95.643872069887053, 29.67719417099558 ], [ -95.643547069346525, 29.677200170823358 ], [ -95.643488069886303, 29.677198170949076 ], [ -95.64348807002564, 29.677209171224952 ], [ -95.64348906935767, 29.677249170763464 ], [ -95.643550069528288, 29.678533170647373 ], [ -95.643559070017162, 29.679006171304017 ], [ -95.643627069573895, 29.682118171956137 ], [ -95.64362806951641, 29.682181172077673 ], [ -95.643618070086887, 29.683989172249142 ], [ -95.643619069843112, 29.684051172230475 ], [ -95.643622069817013, 29.684266172522641 ], [ -95.643632070451076, 29.684916172757617 ], [ -95.643633070217604, 29.684983172345252 ], [ -95.643634069860326, 29.685075172742579 ], [ -95.643641069801603, 29.68555717211343 ], [ -95.643643070005908, 29.685939172845128 ], [ -95.643737069944322, 29.68599517269881 ], [ -95.643961069685346, 29.686127173049758 ], [ -95.644531070556141, 29.686463172982673 ], [ -95.645314070579573, 29.686924172709499 ], [ -95.646055070952642, 29.68736017273336 ], [ -95.646855070971483, 29.687830172723896 ], [ -95.647007071454581, 29.68791617244888 ], [ -95.64725207119352, 29.688050173159578 ], [ -95.647489070862207, 29.688186172792047 ], [ -95.649008071807827, 29.689038172651472 ], [ -95.649249071442824, 29.689174173440513 ], [ -95.649639071632876, 29.68939317352871 ], [ -95.649986072125657, 29.689585173462458 ], [ -95.651022072508781, 29.690168173229555 ], [ -95.651454072081464, 29.690410173466315 ], [ -95.651907072244498, 29.690665173315264 ], [ -95.652118072385377, 29.690784173287138 ], [ -95.652201072046637, 29.690831173489375 ], [ -95.652693072923398, 29.691107173792897 ], [ -95.652730072946724, 29.69111817370143 ], [ -95.652762073067635, 29.691127172979154 ], [ -95.652850073113484, 29.691158173381467 ], [ -95.6540850724395, 29.691593173789318 ], [ -95.654162072927562, 29.691621173462334 ], [ -95.654272073070004, 29.691660173704566 ], [ -95.65466907297494, 29.691905173523619 ], [ -95.655008073170023, 29.692091173328311 ], [ -95.655201073297434, 29.692194173727643 ], [ -95.655270073387186, 29.692233173485587 ], [ -95.655321073117179, 29.692262173919648 ], [ -95.656240073756891, 29.692783173472602 ], [ -95.656561074033235, 29.692966173418334 ], [ -95.656648074037321, 29.69301617343783 ], [ -95.656885073397035, 29.693152173713781 ], [ -95.657566074065414, 29.693544173464179 ], [ -95.657937073622776, 29.693757173480563 ], [ -95.657949074317614, 29.693764174007544 ], [ -95.658333074167743, 29.693985174074275 ], [ -95.658427074065443, 29.694036173451636 ], [ -95.658468074168169, 29.694058173339613 ], [ -95.659048073854095, 29.69437317360601 ], [ -95.659384074378409, 29.69454517405303 ], [ -95.659918074225132, 29.694824173759134 ], [ -95.660183074303376, 29.69498217345981 ], [ -95.660787074812902, 29.695341173920081 ], [ -95.660956074827055, 29.695432174374936 ], [ -95.661491074658798, 29.695716173990022 ], [ -95.661754075534787, 29.695895174084555 ], [ -95.661803074779058, 29.695928173902256 ], [ -95.66182007541282, 29.695940173726381 ], [ -95.661947074851298, 29.696025174144609 ], [ -95.66266407522221, 29.696407173873368 ], [ -95.663023075673664, 29.696598173868601 ], [ -95.663666075957011, 29.696988174228434 ], [ -95.663931075187861, 29.697147174339694 ], [ -95.664155075764484, 29.697261174564083 ], [ -95.664423075982157, 29.697398174076199 ], [ -95.664644075984683, 29.697511174433618 ], [ -95.664700076004877, 29.697539174615631 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1601, "Tract": "48157674602", "Area_SqMi": 11.235500163657534, "total_2009": 443, "total_2010": 410, "total_2011": 287, "total_2012": 273, "total_2013": 306, "total_2014": 402, "total_2015": 374, "total_2016": 529, "total_2017": 506, "total_2018": 501, "total_2019": 413, "total_2020": 460, "age1": 97, "age2": 255, "age3": 87, "earn1": 65, "earn2": 123, "earn3": 251, "naics_s01": 0, "naics_s02": 0, "naics_s03": 3, "naics_s04": 24, "naics_s05": 0, "naics_s06": 48, "naics_s07": 11, "naics_s08": 54, "naics_s09": 12, "naics_s10": 14, "naics_s11": 18, "naics_s12": 174, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 25, "naics_s17": 21, "naics_s18": 24, "naics_s19": 5, "naics_s20": 0, "race1": 313, "race2": 36, "race3": 6, "race4": 74, "race5": 1, "race6": 9, "ethnicity1": 348, "ethnicity2": 91, "edu1": 32, "edu2": 79, "edu3": 98, "edu4": 133, "Shape_Length": 137535.21968267518, "Shape_Area": 313226514.81205696, "total_2021": 528, "total_2022": 439 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.685732074138642, 29.536936140751266 ], [ -95.686487074161974, 29.53551914037147 ], [ -95.683211073850003, 29.535081140463063 ], [ -95.680097072494277, 29.534664140477741 ], [ -95.675851071906422, 29.534154140656678 ], [ -95.675323071406638, 29.5340901405654 ], [ -95.672101070098122, 29.533640140308052 ], [ -95.668765069505113, 29.533198140618971 ], [ -95.667540069005867, 29.533008140716326 ], [ -95.665451068628244, 29.532723140845778 ], [ -95.665128068486979, 29.532680140185334 ], [ -95.663018067803193, 29.532425140939935 ], [ -95.661557068069982, 29.532244140235427 ], [ -95.661499067834427, 29.53223714063207 ], [ -95.65874906671381, 29.53184414067049 ], [ -95.658644067516207, 29.531829140288949 ], [ -95.657660066934241, 29.531702140206992 ], [ -95.656783066229309, 29.531589140423804 ], [ -95.655458066566538, 29.531412140347825 ], [ -95.654938066022922, 29.531342141021476 ], [ -95.653661065841931, 29.531101140722946 ], [ -95.653499065602972, 29.531071140857566 ], [ -95.651874065507116, 29.530583140681802 ], [ -95.651103065529426, 29.530307140904647 ], [ -95.650285064920283, 29.529952140346094 ], [ -95.649304064800248, 29.529508140512366 ], [ -95.649216064173757, 29.529468139944331 ], [ -95.64852306451742, 29.529154140078877 ], [ -95.643539063393902, 29.526856139792731 ], [ -95.641026061857758, 29.525604139832048 ], [ -95.638702061973149, 29.524519139800212 ], [ -95.635008061048765, 29.522842139705315 ], [ -95.634330060104361, 29.522520139426788 ], [ -95.631138060078385, 29.52102513938998 ], [ -95.62659605822995, 29.518899138877305 ], [ -95.623149057113537, 29.51732913832808 ], [ -95.618975056294659, 29.515334138193268 ], [ -95.613822055230457, 29.512953138433815 ], [ -95.613126055120119, 29.512631138450079 ], [ -95.612781054540918, 29.512444138241019 ], [ -95.612126054631972, 29.512089137741871 ], [ -95.61137805407661, 29.51160813823174 ], [ -95.610761054206279, 29.51116413807317 ], [ -95.609467053667785, 29.510235137672826 ], [ -95.603714052363642, 29.505935136903705 ], [ -95.600759050591677, 29.503700136492888 ], [ -95.598332050096317, 29.50186513650085 ], [ -95.595149049527663, 29.499457135663253 ], [ -95.59465404953572, 29.499121136039616 ], [ -95.594448049151453, 29.498981136343076 ], [ -95.593952049354414, 29.498650135470456 ], [ -95.593192048885825, 29.498320135625292 ], [ -95.59264804846643, 29.498123136238885 ], [ -95.592420048783637, 29.498049135405804 ], [ -95.592325048853965, 29.498012135455866 ], [ -95.591831048539873, 29.497869136182775 ], [ -95.591401048818653, 29.497785135763795 ], [ -95.590977048621355, 29.497725135570814 ], [ -95.590539048452129, 29.497686135899034 ], [ -95.589947048562578, 29.497651135513571 ], [ -95.589433047511733, 29.497645135448021 ], [ -95.586646047652309, 29.497749135810341 ], [ -95.586230047095171, 29.497757136309122 ], [ -95.585142046799746, 29.497799135780184 ], [ -95.576419044333079, 29.498085136492659 ], [ -95.576409044473607, 29.497867136095447 ], [ -95.574523044296853, 29.497934136792772 ], [ -95.572597043911941, 29.497983136498274 ], [ -95.571091043102484, 29.498023136934187 ], [ -95.569933043015595, 29.498090136529999 ], [ -95.569426043001158, 29.498095136363499 ], [ -95.567081042174294, 29.49817613652684 ], [ -95.565294041680815, 29.49823113716187 ], [ -95.564074041180405, 29.498271136534779 ], [ -95.561700041358876, 29.498355136983246 ], [ -95.561645040789969, 29.498358137000693 ], [ -95.560287040065674, 29.498400137275151 ], [ -95.558742040522915, 29.498456137034911 ], [ -95.557775040177361, 29.498503137537462 ], [ -95.557387039908718, 29.498516136750322 ], [ -95.556966039791632, 29.498516137345632 ], [ -95.556695039868757, 29.498501137094024 ], [ -95.556523039945034, 29.498485136845591 ], [ -95.556201039753986, 29.498473137257353 ], [ -95.556096039087123, 29.498470137323153 ], [ -95.555987039167334, 29.498473137267094 ], [ -95.555871039541515, 29.498630137164696 ], [ -95.555803039018187, 29.498761137378953 ], [ -95.555746039221845, 29.498857137110608 ], [ -95.555723039247809, 29.4989261373807 ], [ -95.555690039386789, 29.498992137595387 ], [ -95.555649039396982, 29.499055136929424 ], [ -95.555603038839749, 29.499115136855345 ], [ -95.555523039731142, 29.49919813732523 ], [ -95.555493039050006, 29.499222137273183 ], [ -95.554905038871496, 29.499619137120231 ], [ -95.554826038665794, 29.499702137663085 ], [ -95.554780039396988, 29.499762137351208 ], [ -95.554738039643993, 29.499825137727093 ], [ -95.554633039213357, 29.499880137479181 ], [ -95.554498039331378, 29.499964137762127 ], [ -95.554461039052029, 29.499974137910321 ], [ -95.554337038792539, 29.499973137311642 ], [ -95.554296039506454, 29.49997613784058 ], [ -95.55405203906993, 29.500010137135867 ], [ -95.553894039172036, 29.500051137702918 ], [ -95.553703038524347, 29.500120137692772 ], [ -95.553519038652979, 29.50020013747001 ], [ -95.553461038623141, 29.500251137155381 ], [ -95.553383039036845, 29.500335137575966 ], [ -95.553212039054941, 29.500538137386151 ], [ -95.553079038549839, 29.500721137827139 ], [ -95.553039039195681, 29.50078413783265 ], [ -95.552941038867047, 29.500983138141194 ], [ -95.552822038570966, 29.501328137824348 ], [ -95.552738038888137, 29.501607138036668 ], [ -95.55272403913709, 29.501678138311132 ], [ -95.552716039128711, 29.501750138242937 ], [ -95.552720038960359, 29.501822138064789 ], [ -95.552727038800455, 29.501880137969916 ], [ -95.552753038282091, 29.502073138066027 ], [ -95.552799038943135, 29.502322138142176 ], [ -95.552820038629463, 29.50239213827323 ], [ -95.552847039154372, 29.502460138474632 ], [ -95.552966038380902, 29.502690137701538 ], [ -95.553005038667848, 29.502754137951719 ], [ -95.553084038724009, 29.502848138579782 ], [ -95.553127038737387, 29.502900137909311 ], [ -95.553318039040448, 29.503089138005461 ], [ -95.553472039181059, 29.503258138055962 ], [ -95.553529039386802, 29.503310138093006 ], [ -95.553652038800209, 29.50340713786381 ], [ -95.553766038557285, 29.503511138631765 ], [ -95.55380203886196, 29.503523138242372 ], [ -95.55395903944283, 29.503575138433749 ], [ -95.554085039017238, 29.503611138046978 ], [ -95.554430038917275, 29.503708138450985 ], [ -95.554628038802889, 29.503757138135796 ], [ -95.555013039035828, 29.503886138146608 ], [ -95.555178039529181, 29.503878137990412 ], [ -95.555260039581611, 29.503879138423731 ], [ -95.555507039038787, 29.503894138308901 ], [ -95.556040040016001, 29.503948138339545 ], [ -95.55628703977338, 29.503947138608165 ], [ -95.556369040021494, 29.503951137966101 ], [ -95.557108040321793, 29.504014138494771 ], [ -95.557928040218968, 29.504095137871047 ], [ -95.558172039993096, 29.504129138176342 ], [ -95.558696039888886, 29.504229138154678 ], [ -95.558856040599224, 29.504266138627614 ], [ -95.558932040254959, 29.504292138145352 ], [ -95.55899804089006, 29.504321137957636 ], [ -95.559118040768411, 29.504348138363156 ], [ -95.559195040460523, 29.504374138197889 ], [ -95.559529040565963, 29.504515138273788 ], [ -95.559822040199847, 29.504648137884466 ], [ -95.560268040971891, 29.504835137897437 ], [ -95.560610040385399, 29.505037138190346 ], [ -95.560620041200423, 29.505043138375228 ], [ -95.561181041312722, 29.505393138255371 ], [ -95.56169904162897, 29.505750138261163 ], [ -95.562149041693743, 29.50600713884069 ], [ -95.56243504155448, 29.506188138244241 ], [ -95.562934041369957, 29.506537138760965 ], [ -95.563427041683411, 29.506783138392052 ], [ -95.563556041946057, 29.506826138576777 ], [ -95.563766041507847, 29.506940138604985 ], [ -95.564050042129622, 29.507086138570902 ], [ -95.564348041437498, 29.507211138609303 ], [ -95.564464042073084, 29.507247138380333 ], [ -95.564904041570401, 29.507345138410891 ], [ -95.565220042221355, 29.507427138845664 ], [ -95.565380041873127, 29.507462139064522 ], [ -95.56558304179741, 29.507495138785956 ], [ -95.566031042366532, 29.507555138488836 ], [ -95.566195042787342, 29.507535138463091 ], [ -95.566648042908426, 29.507521138597056 ], [ -95.567141042184019, 29.507556139023304 ], [ -95.567430042625929, 29.507561138445261 ], [ -95.568046042986822, 29.50761313861798 ], [ -95.568417042462656, 29.507611138755344 ], [ -95.568705042939428, 29.507626138465039 ], [ -95.569282043080463, 29.507642138604854 ], [ -95.569611042851449, 29.507659138308586 ], [ -95.570017043285972, 29.507724138792653 ], [ -95.570451043688976, 29.507838138744265 ], [ -95.570717043937506, 29.507938138654815 ], [ -95.571083043696021, 29.508103138721317 ], [ -95.571408043596492, 29.508261138334795 ], [ -95.571585043532096, 29.508354138789141 ], [ -95.571687044127884, 29.508415138238014 ], [ -95.571948043981976, 29.508592139082541 ], [ -95.572073044325052, 29.508686138619847 ], [ -95.572251044217651, 29.508836138789214 ], [ -95.572490043838386, 29.509059138761813 ], [ -95.572621044149798, 29.509199138425352 ], [ -95.572714043841472, 29.509318138648595 ], [ -95.572812044155683, 29.509476138868319 ], [ -95.573010044261039, 29.509833139217086 ], [ -95.57309604461652, 29.510036138527912 ], [ -95.573170044258362, 29.510165139419232 ], [ -95.573219044254969, 29.510265139138117 ], [ -95.573254044394034, 29.510406138627637 ], [ -95.573285044176103, 29.510612139081118 ], [ -95.573341044781671, 29.510978139348499 ], [ -95.573364044622451, 29.511266139339682 ], [ -95.573377044539583, 29.511518138886558 ], [ -95.573394044152934, 29.511698139006281 ], [ -95.573423044222622, 29.511877139680056 ], [ -95.573435044131031, 29.511984139687925 ], [ -95.573451044927268, 29.512055138929693 ], [ -95.573501044483322, 29.512154139565901 ], [ -95.57359504465812, 29.512314139706366 ], [ -95.573732044356589, 29.512495139599974 ], [ -95.573808044981433, 29.512580139039983 ], [ -95.573826044108245, 29.512612139798158 ], [ -95.573847044707676, 29.512682139690295 ], [ -95.573912044338542, 29.513074139655849 ], [ -95.573932045096953, 29.513144139171708 ], [ -95.573960044808842, 29.513212139375984 ], [ -95.57404704467848, 29.513376139975396 ], [ -95.574085044489962, 29.513440139445049 ], [ -95.574116045182649, 29.513463139742147 ], [ -95.574176045144256, 29.513549139714847 ], [ -95.574448044701242, 29.513794139991056 ], [ -95.574646044492653, 29.513995140037199 ], [ -95.575095045236651, 29.513939139713298 ], [ -95.57525104455793, 29.513943139380991 ], [ -95.575392045231595, 29.513928139687277 ], [ -95.575557044839712, 29.51394513969408 ], [ -95.575760044613844, 29.513918140010478 ], [ -95.575921044773906, 29.513891139246077 ], [ -95.57615804513091, 29.513793140042019 ], [ -95.576169044858418, 29.513769139902863 ], [ -95.576930045744859, 29.513760139144601 ], [ -95.577321045360691, 29.513430139244292 ], [ -95.57774804548832, 29.512995139490897 ], [ -95.577973045663541, 29.512740139553845 ], [ -95.57838404590936, 29.512092138992529 ], [ -95.578663045815148, 29.511113139062161 ], [ -95.578723045972851, 29.510689138803652 ], [ -95.578735045360773, 29.510606139199844 ], [ -95.578745045565753, 29.510538138681667 ], [ -95.578764045662751, 29.51040513869847 ], [ -95.578767045507107, 29.510374139175333 ], [ -95.578789046181981, 29.510177138875545 ], [ -95.578800045417395, 29.510075138581094 ], [ -95.578837045416904, 29.509739138699835 ], [ -95.578817045315958, 29.508809138400654 ], [ -95.578846045521288, 29.508203138305596 ], [ -95.578991045473074, 29.507369138425393 ], [ -95.579187045592761, 29.506752138227018 ], [ -95.579504045507989, 29.506263138091487 ], [ -95.579990046185287, 29.505543137510887 ], [ -95.580528045835692, 29.504919137935925 ], [ -95.580963046218059, 29.504550137965687 ], [ -95.581568046091945, 29.504142137433409 ], [ -95.581965045788849, 29.50392813706879 ], [ -95.58215304610043, 29.503827137026867 ], [ -95.582429046266668, 29.503834137743937 ], [ -95.582494046640974, 29.503790137172693 ], [ -95.5826670466667, 29.50369113773661 ], [ -95.582813046606162, 29.503624137165765 ], [ -95.582955046569637, 29.503552137175959 ], [ -95.583195047030017, 29.503458137528831 ], [ -95.583285046842221, 29.503384137155898 ], [ -95.583383046806262, 29.5033181376165 ], [ -95.583451047060848, 29.503277137036903 ], [ -95.583559047108722, 29.503224136931991 ], [ -95.583746046361611, 29.503148137526232 ], [ -95.583862047168097, 29.50311213681147 ], [ -95.584101046628021, 29.503054137462733 ], [ -95.584255046794482, 29.50300413675415 ], [ -95.584807046491619, 29.502855137068714 ], [ -95.585166047083618, 29.502773137273962 ], [ -95.585651047124145, 29.502688136870439 ], [ -95.585856047566338, 29.502668136759187 ], [ -95.586144046917184, 29.502648136878499 ], [ -95.586309047841567, 29.502643136818762 ], [ -95.586432046855933, 29.502655137125579 ], [ -95.586716047587515, 29.502699137151058 ], [ -95.586997047360711, 29.502759137425773 ], [ -95.587299048012554, 29.502874136947796 ], [ -95.587517048103123, 29.502977136619567 ], [ -95.587620047504757, 29.503037136576914 ], [ -95.58787904731912, 29.503216136657223 ], [ -95.58803104731409, 29.503338137028869 ], [ -95.588205048260832, 29.503492137078002 ], [ -95.588330047505792, 29.503635137231655 ], [ -95.588465047928452, 29.503816136839976 ], [ -95.588505048051246, 29.50387913705681 ], [ -95.588596047865536, 29.504041136907716 ], [ -95.588656048220443, 29.504176137320563 ], [ -95.588686047836831, 29.504281137176921 ], [ -95.588740048510232, 29.50452913696888 ], [ -95.588761048285377, 29.504599137101824 ], [ -95.588761047942612, 29.504631137693377 ], [ -95.588743047939502, 29.50477813776968 ], [ -95.588740047734802, 29.504922137460209 ], [ -95.588717048211194, 29.504991137381985 ], [ -95.588585048227898, 29.505333137579559 ], [ -95.588537048524415, 29.505432137843076 ], [ -95.588478048473078, 29.505528137566845 ], [ -95.588386048413497, 29.505649137522742 ], [ -95.588364048455503, 29.505678137554295 ], [ -95.588306048364728, 29.505773137294668 ], [ -95.588215047805292, 29.505894137375506 ], [ -95.588182048179206, 29.50593013754542 ], [ -95.588111047856756, 29.506006137213109 ], [ -95.587999048159801, 29.506112137609527 ], [ -95.58784804803679, 29.506235137943104 ], [ -95.587188047495133, 29.506572138105579 ], [ -95.586999047683562, 29.506746137636632 ], [ -95.586622047391984, 29.506950137527838 ], [ -95.586395047222197, 29.507071137614425 ], [ -95.585882047188704, 29.507425137863571 ], [ -95.58549604743915, 29.507740138296043 ], [ -95.585134047279766, 29.507912138484333 ], [ -95.585041047171686, 29.507983137887948 ], [ -95.584560047377508, 29.508324138132384 ], [ -95.584143047027325, 29.508673137920297 ], [ -95.583686046925777, 29.509139138416138 ], [ -95.583400046671997, 29.5094471386167 ], [ -95.583166046405822, 29.509776138529968 ], [ -95.583131046964482, 29.509841138867092 ], [ -95.583103047163007, 29.509909138978337 ], [ -95.583068046974219, 29.510013138304107 ], [ -95.582976046888461, 29.510327138513496 ], [ -95.582894046632688, 29.510531138385637 ], [ -95.582855047095904, 29.510672138821583 ], [ -95.582805047160875, 29.510809139010011 ], [ -95.582775046879533, 29.510951138564792 ], [ -95.58276404714934, 29.511022138609881 ], [ -95.58276404715491, 29.51116713924095 ], [ -95.582772046430705, 29.511311139306464 ], [ -95.582780047078529, 29.511383138719989 ], [ -95.582799047316428, 29.511490138788435 ], [ -95.582748046319367, 29.5117921388272 ], [ -95.58279904650874, 29.512086139248296 ], [ -95.58294904663596, 29.512253138968266 ], [ -95.583108047084835, 29.512423138871792 ], [ -95.583127046988864, 29.512455139515485 ], [ -95.583253046524646, 29.512597138776592 ], [ -95.583335046788832, 29.512679139243385 ], [ -95.583505046680301, 29.512835139526274 ], [ -95.583633047109174, 29.512926138980419 ], [ -95.583901047403145, 29.51309513879486 ], [ -95.583971047671326, 29.513133139283187 ], [ -95.58438104739227, 29.513303139280868 ], [ -95.584501047253156, 29.513330138979562 ], [ -95.584542047094999, 29.513331139661538 ], [ -95.584707047277206, 29.513322139589718 ], [ -95.584789047396043, 29.513323138861523 ], [ -95.585200047520772, 29.513357139334197 ], [ -95.585489047991459, 29.513366139626864 ], [ -95.58561204810843, 29.513362139627642 ], [ -95.5856670475752, 29.513353139422097 ], [ -95.585734047153736, 29.513341139228942 ], [ -95.585854047926063, 29.513315139241591 ], [ -95.585976047833299, 29.513297139122798 ], [ -95.586264048158981, 29.513280138763925 ], [ -95.586345047292241, 29.513269139402372 ], [ -95.586505048116535, 29.513231139341752 ], [ -95.586580047366269, 29.513202139024663 ], [ -95.58677404794085, 29.513141139373158 ], [ -95.5871730479588, 29.513050138831918 ], [ -95.587328048110436, 29.513000139109518 ], [ -95.587441048388911, 29.512955139219226 ], [ -95.587845048511966, 29.512775139233241 ], [ -95.587948047939491, 29.512716138675401 ], [ -95.588064048314166, 29.512678139233788 ], [ -95.588461048634571, 29.51258013873019 ], [ -95.588537048193928, 29.512553138812727 ], [ -95.588684048097036, 29.512487139352327 ], [ -95.588760048559578, 29.512460139333868 ], [ -95.58923104875602, 29.512325138948672 ], [ -95.589549048698942, 29.512247139131947 ], [ -95.590317048765556, 29.512115138612995 ], [ -95.590728048593988, 29.512076138635148 ], [ -95.591140048798124, 29.512088138460197 ], [ -95.591912049678669, 29.512208138789386 ], [ -95.591992049172148, 29.512225138432029 ], [ -95.592502049447603, 29.512369138560977 ], [ -95.592655049191805, 29.512423138728465 ], [ -95.592758049156629, 29.512467139013481 ], [ -95.592836049910801, 29.51250913896396 ], [ -95.593100049138329, 29.512682138691215 ], [ -95.593289049542818, 29.512822138532862 ], [ -95.593407049264115, 29.512923138676022 ], [ -95.593520049378142, 29.513027139041323 ], [ -95.593760049800352, 29.513226139162089 ], [ -95.593962050031536, 29.513454139132158 ], [ -95.594376049925756, 29.514078139284742 ], [ -95.594413049845372, 29.514143138911024 ], [ -95.594515049754207, 29.514379138702797 ], [ -95.594582050211486, 29.514549139096037 ], [ -95.59460504974146, 29.514728139199075 ], [ -95.594677049666942, 29.515157139450384 ], [ -95.594684049919138, 29.515228139311908 ], [ -95.59463005015958, 29.515579139051287 ], [ -95.594623050529222, 29.515622138950761 ], [ -95.594520050095554, 29.516118139651333 ], [ -95.594419050035583, 29.516468139555265 ], [ -95.59430404958502, 29.516815139666761 ], [ -95.594236050147316, 29.516985139729911 ], [ -95.594152050312701, 29.517109140144299 ], [ -95.594037049780084, 29.517311139983565 ], [ -95.593949049673526, 29.517386139933677 ], [ -95.593894049596898, 29.517440139743606 ], [ -95.593796049598353, 29.51755613941889 ], [ -95.593707050115555, 29.517678140034089 ], [ -95.593669049773638, 29.517742139413926 ], [ -95.593620050188292, 29.517841140167331 ], [ -95.593547049434008, 29.517929139575212 ], [ -95.593493049926408, 29.517983139449846 ], [ -95.593429050089327, 29.518029139566469 ], [ -95.593370050330464, 29.518079139522289 ], [ -95.593287049918303, 29.518159139971473 ], [ -95.593189049543682, 29.518275140112831 ], [ -95.593126050245544, 29.518368140420986 ], [ -95.593031049988994, 29.518529139980071 ], [ -95.592957049753082, 29.518615140373427 ], [ -95.592875049395815, 29.518696140044653 ], [ -95.592815049199814, 29.518745140287766 ], [ -95.592667049824911, 29.518809140242521 ], [ -95.592561049915943, 29.518865139711341 ], [ -95.592100049297727, 29.519170140382773 ], [ -95.591859049607578, 29.519308140542982 ], [ -95.591788049439401, 29.519345140554464 ], [ -95.591599049354457, 29.519418140696001 ], [ -95.591521049756267, 29.519441140450997 ], [ -95.591407049201109, 29.51948314045891 ], [ -95.591288049556482, 29.519514140261197 ], [ -95.590964048963045, 29.519568140413426 ], [ -95.590718048736008, 29.519590140055911 ], [ -95.590594049280057, 29.519592139893852 ], [ -95.590483048762351, 29.519564140610804 ], [ -95.590436049492922, 29.519552140529932 ], [ -95.59031504932679, 29.519531139895417 ], [ -95.590027048650072, 29.519510140728265 ], [ -95.589619048667871, 29.519457140009223 ], [ -95.58953904933847, 29.51943914075914 ], [ -95.589421048416881, 29.519406139927675 ], [ -95.589192049007309, 29.519325140050235 ], [ -95.58878004851185, 29.519158140453403 ], [ -95.588601048629627, 29.519069140514837 ], [ -95.588238048489401, 29.518897140486089 ], [ -95.587762048799306, 29.518681140269269 ], [ -95.587589048870512, 29.518613140122351 ], [ -95.58724004838372, 29.518504139894524 ], [ -95.587160048479134, 29.518485139918521 ], [ -95.586999048290721, 29.518454140655351 ], [ -95.586835048324346, 29.518434140352674 ], [ -95.586671048007901, 29.518421140038072 ], [ -95.586424048570095, 29.518416139882586 ], [ -95.585971047984344, 29.518440139944524 ], [ -95.585370047920904, 29.518569140543139 ], [ -95.58494304769377, 29.518702140604564 ], [ -95.584791047593427, 29.518759140584528 ], [ -95.584324047739202, 29.519056140129582 ], [ -95.584262047485652, 29.519104140440824 ], [ -95.584153047269538, 29.519215140311736 ], [ -95.583805047111426, 29.519569140456909 ], [ -95.583594047273408, 29.519836140374903 ], [ -95.583487047710349, 29.519990140780365 ], [ -95.583371047370264, 29.520181140762642 ], [ -95.583319047038373, 29.520279140557406 ], [ -95.58328904743766, 29.520347140971058 ], [ -95.583157047293554, 29.520764141225655 ], [ -95.583064047082658, 29.521115141178704 ], [ -95.583013047130009, 29.521327141090119 ], [ -95.582961046914846, 29.521576141106795 ], [ -95.582885047747951, 29.522004140803258 ], [ -95.582787047117591, 29.522901141184285 ], [ -95.582754047054706, 29.523043141420448 ], [ -95.582676047067991, 29.523286140976239 ], [ -95.582617047129702, 29.523533141186288 ], [ -95.582480047525266, 29.52402414186367 ], [ -95.582344046777166, 29.524588141492167 ], [ -95.58221304683876, 29.525080141943448 ], [ -95.582073046811189, 29.525644141904674 ], [ -95.581966047522101, 29.526177142 ], [ -95.581878047431658, 29.526530141842276 ], [ -95.581814047435316, 29.526923142315546 ], [ -95.581788047047397, 29.527247142177931 ], [ -95.581773047043768, 29.527499142094037 ], [ -95.581774047277406, 29.527594141947898 ], [ -95.581782047440086, 29.527702142283594 ], [ -95.581802047741093, 29.527809142377723 ], [ -95.581840046855163, 29.527949142058809 ], [ -95.581899047217689, 29.528045141916419 ], [ -95.581947047491866, 29.528145142760202 ], [ -95.581995047192606, 29.528283142298093 ], [ -95.582024046897899, 29.528388142832966 ], [ -95.582038047592974, 29.528459142709622 ], [ -95.5820490477427, 29.52849414237652 ], [ -95.582080047597287, 29.528566142826421 ], [ -95.582164047025529, 29.528764142293323 ], [ -95.582292047824978, 29.528990142616443 ], [ -95.582508048007, 29.529339142250979 ], [ -95.582597047557641, 29.52946114268175 ], [ -95.582671047140039, 29.529543142425918 ], [ -95.582699047848479, 29.529574142676715 ], [ -95.582747047104846, 29.529633143053495 ], [ -95.582829048128787, 29.529755142245211 ], [ -95.583112047320753, 29.530017142667042 ], [ -95.583381047815223, 29.530241142540312 ], [ -95.583669047652933, 29.530446142355505 ], [ -95.584145048492047, 29.53073314304163 ], [ -95.584433047711059, 29.530873142729362 ], [ -95.584545048309536, 29.530919142548495 ], [ -95.584698048153129, 29.530973142890478 ], [ -95.584931047847547, 29.531047142469493 ], [ -95.585212048544321, 29.531106143149053 ], [ -95.585374048505017, 29.531132142569234 ], [ -95.585456048702298, 29.531135143181064 ], [ -95.585827048475352, 29.531123142756286 ], [ -95.585992048344096, 29.531111142636718 ], [ -95.586404048124322, 29.531090142719286 ], [ -95.586733049067291, 29.531064143032722 ], [ -95.586814048827421, 29.531053143085284 ], [ -95.586874048630932, 29.531040142842684 ], [ -95.587095048360467, 29.530994143151467 ], [ -95.587291048333668, 29.530937142328884 ], [ -95.587631049043338, 29.530807142474522 ], [ -95.587722048784457, 29.530734143011944 ], [ -95.587786048568475, 29.530689142925429 ], [ -95.587922049022509, 29.530606143039492 ], [ -95.5881040489719, 29.530523142594038 ], [ -95.5881800485204, 29.530493143075724 ], [ -95.588258049480942, 29.530469142260472 ], [ -95.588474048671983, 29.530364142612225 ], [ -95.588540049601818, 29.530321143000556 ], [ -95.588759049073317, 29.530156142491375 ], [ -95.588954049700362, 29.529970142597875 ], [ -95.589028049537575, 29.529883142357477 ], [ -95.589156049131347, 29.529698142513602 ], [ -95.589252048939571, 29.52958014260361 ], [ -95.589316049267296, 29.529488142684148 ], [ -95.589334049571534, 29.529455142762259 ], [ -95.589376049148342, 29.52935414250706 ], [ -95.589494048830275, 29.529163142669315 ], [ -95.589538049491352, 29.529062141960974 ], [ -95.589675049736073, 29.528800141801241 ], [ -95.5897050495727, 29.528732141931094 ], [ -95.589977049824924, 29.527975141640599 ], [ -95.589997049420006, 29.527905141770415 ], [ -95.590024049000107, 29.527690141848435 ], [ -95.590162049489777, 29.527350141996944 ], [ -95.590273049625239, 29.527003141906821 ], [ -95.590321049510564, 29.526865141528255 ], [ -95.59053904929047, 29.526358141930906 ], [ -95.590816049207845, 29.525795141287844 ], [ -95.591197049786018, 29.525237141660039 ], [ -95.591338049811924, 29.525017141810658 ], [ -95.591587049529892, 29.524685141181148 ], [ -95.591826049945936, 29.524437141016929 ], [ -95.591887049627303, 29.524389141539164 ], [ -95.592048049324177, 29.524275141009916 ], [ -95.592180049456161, 29.524189141058759 ], [ -95.592473050204646, 29.524055141177175 ], [ -95.592688050373667, 29.523948140856344 ], [ -95.59280604943622, 29.523917141294042 ], [ -95.592997049769295, 29.523848141274883 ], [ -95.593106050390631, 29.523797141010192 ], [ -95.593206050072951, 29.523742140838664 ], [ -95.593328050277265, 29.523725141150024 ], [ -95.593568049969193, 29.523670140958338 ], [ -95.593649050045514, 29.523656141079336 ], [ -95.593689049929964, 29.523653140730772 ], [ -95.593854050541495, 29.523657140937061 ], [ -95.59401905050963, 29.523667140947882 ], [ -95.594267050061106, 29.523669140919328 ], [ -95.594590050512622, 29.523726141339509 ], [ -95.594670050590068, 29.523745141227753 ], [ -95.594902050923025, 29.523818141498058 ], [ -95.59497705015788, 29.523850141296862 ], [ -95.595151050914097, 29.523946141411557 ], [ -95.59539905028403, 29.524136141163957 ], [ -95.595456050837257, 29.524188141225601 ], [ -95.595509050979857, 29.524244141098261 ], [ -95.59571405036138, 29.52442114078211 ], [ -95.595793050645426, 29.524504141521867 ], [ -95.596057050549248, 29.524827140913985 ], [ -95.596121051215931, 29.524920141069117 ], [ -95.596189051174889, 29.525010141457042 ], [ -95.596246050470754, 29.525106141563622 ], [ -95.596313051053642, 29.525238140942307 ], [ -95.596342051357567, 29.525306141442318 ], [ -95.596431050734552, 29.525546141531972 ], [ -95.596615050654492, 29.525868141817956 ], [ -95.596649051486907, 29.525934141051181 ], [ -95.596756050531042, 29.526169141575611 ], [ -95.596813051428683, 29.526304141089863 ], [ -95.596976051536643, 29.526751141657932 ], [ -95.597126051279986, 29.527087141572657 ], [ -95.597226051152617, 29.527324141580372 ], [ -95.597456051717899, 29.527826141880059 ], [ -95.59764105160815, 29.528149141645688 ], [ -95.597846051326385, 29.528494141612626 ], [ -95.597965051893567, 29.528693142048184 ], [ -95.598154051698259, 29.528972142166609 ], [ -95.598285051687995, 29.529156142021002 ], [ -95.598503051314907, 29.529419142258821 ], [ -95.598608052132249, 29.529530142524784 ], [ -95.598743051205261, 29.529613142494451 ], [ -95.598871051615646, 29.529704142412346 ], [ -95.59910505161838, 29.52990814248119 ], [ -95.599161051660971, 29.529961142551564 ], [ -95.599213051447478, 29.53001714239371 ], [ -95.599335051781438, 29.530162141838204 ], [ -95.599424052368036, 29.53028314212829 ], [ -95.599663052085702, 29.530425142453485 ], [ -95.600059052466335, 29.530576142206055 ], [ -95.600382051676377, 29.53069914240011 ], [ -95.600461051809546, 29.530718142088013 ], [ -95.600605051721217, 29.530742142474566 ], [ -95.600893051792283, 29.53076114200363 ], [ -95.601470052350322, 29.530784142496511 ], [ -95.601577052617088, 29.530787142282829 ], [ -95.601841052255153, 29.530794142575875 ], [ -95.602047052610345, 29.530784142426278 ], [ -95.602163052930791, 29.530774141957782 ], [ -95.602622053234256, 29.530733141831167 ], [ -95.602744052894408, 29.530715142266462 ], [ -95.603021053166117, 29.53064414198791 ], [ -95.603387052857812, 29.53052314172599 ], [ -95.603523053378865, 29.530478141960792 ], [ -95.604018053124292, 29.530299141738144 ], [ -95.604355053358262, 29.530163141972611 ], [ -95.604540053015441, 29.530082141841781 ], [ -95.604683052836137, 29.530012141610264 ], [ -95.604923053498837, 29.529873141667128 ], [ -95.605322052977058, 29.529615142125692 ], [ -95.605413053108677, 29.529542141796867 ], [ -95.605595053116247, 29.529346141551578 ], [ -95.605806053089793, 29.529173141517632 ], [ -95.606378053714963, 29.528604141548783 ], [ -95.606659053675202, 29.528341141564198 ], [ -95.606998053434566, 29.52797714185915 ], [ -95.607299053896071, 29.527680141193638 ], [ -95.607386053976512, 29.527603141264382 ], [ -95.607566053812306, 29.527468141088885 ], [ -95.607637053785865, 29.527416141334868 ], [ -95.608025054228122, 29.527147141204068 ], [ -95.608227054050118, 29.527021140963924 ], [ -95.608815053787609, 29.526760140862031 ], [ -95.609114054702346, 29.526637141467134 ], [ -95.609219054088356, 29.526581141527579 ], [ -95.60948905381332, 29.526415141268171 ], [ -95.609593054045348, 29.526356141429947 ], [ -95.609749053934735, 29.526310140672948 ], [ -95.60982605468611, 29.526283141368168 ], [ -95.610049054276828, 29.526189141413845 ], [ -95.610203054170881, 29.526137140876525 ], [ -95.610321054192667, 29.526105141163182 ], [ -95.610511054115634, 29.52603614063668 ], [ -95.610915054920596, 29.525961141071701 ], [ -95.611035054306527, 29.525933140571727 ], [ -95.611112055108507, 29.525909140990944 ], [ -95.611153054596613, 29.525903141344539 ], [ -95.611330054304673, 29.525896140765081 ], [ -95.611393054777267, 29.525868141193765 ], [ -95.612434054798143, 29.525630140491359 ], [ -95.61344705572192, 29.525877141259592 ], [ -95.613764055772975, 29.526113141098946 ], [ -95.613813054992377, 29.526132141191766 ], [ -95.614034055455321, 29.526229140514488 ], [ -95.614142055133314, 29.526282140560106 ], [ -95.614314055951496, 29.526382140896711 ], [ -95.614682056099866, 29.526613141193707 ], [ -95.614772055553118, 29.526688141301889 ], [ -95.614875055944751, 29.526801141310642 ], [ -95.61507405602184, 29.527074141399208 ], [ -95.615126055572844, 29.527172141139634 ], [ -95.615168055639103, 29.527274141019134 ], [ -95.615224055434425, 29.527448141353208 ], [ -95.615386055773158, 29.527819141172127 ], [ -95.615469055643374, 29.528098140941495 ], [ -95.615490055626594, 29.528241141365204 ], [ -95.615504055617066, 29.528385141637298 ], [ -95.615512055806903, 29.528529141658755 ], [ -95.615580055732252, 29.528774141051901 ], [ -95.615606055798423, 29.528916141488121 ], [ -95.615612056335365, 29.529024141494592 ], [ -95.615607056254007, 29.529132141035792 ], [ -95.615688056348006, 29.529887141397062 ], [ -95.615698056369169, 29.530103141242279 ], [ -95.615755055565486, 29.530533142036287 ], [ -95.615970055736341, 29.531452141516844 ], [ -95.615980055848041, 29.531523141533313 ], [ -95.61598705604726, 29.531631142381332 ], [ -95.615985055992994, 29.531704142238162 ], [ -95.615977056090102, 29.531774142334847 ], [ -95.616095056395494, 29.532232141961593 ], [ -95.616242056072792, 29.532720142318027 ], [ -95.616434056238546, 29.53319614218821 ], [ -95.616602056840861, 29.533565142365802 ], [ -95.616803056705336, 29.533921142259775 ], [ -95.616897056625248, 29.53412114284766 ], [ -95.617158056458777, 29.534626142247475 ], [ -95.617186056143154, 29.534680142800635 ], [ -95.617258056781665, 29.53480914291162 ], [ -95.61731305678201, 29.534945142633372 ], [ -95.617401056303933, 29.535068142166548 ], [ -95.6174490571386, 29.535126142878635 ], [ -95.617841056423117, 29.535545143099586 ], [ -95.618066056779725, 29.535756142670344 ], [ -95.61824805669913, 29.53590214234173 ], [ -95.618493057512907, 29.536146142734538 ], [ -95.618614057413211, 29.536245142965768 ], [ -95.61892405718703, 29.536482142508401 ], [ -95.619334057290516, 29.536838142590032 ], [ -95.61990605777585, 29.537358142838098 ], [ -95.620489057526299, 29.53786914274427 ], [ -95.620584057870929, 29.537938142983283 ], [ -95.620833058123409, 29.538100143077056 ], [ -95.620979057251432, 29.538195143101635 ], [ -95.621081057884808, 29.538261143429704 ], [ -95.621233057727437, 29.538367142951557 ], [ -95.621436057369166, 29.538509142721967 ], [ -95.621672058336372, 29.538654143306637 ], [ -95.621687057776796, 29.538664142826157 ], [ -95.62173705827945, 29.538698142872263 ], [ -95.621940057892246, 29.538878142809061 ], [ -95.62227505845793, 29.539146143733593 ], [ -95.622479058081026, 29.539324143391458 ], [ -95.622795058760346, 29.539557143542542 ], [ -95.622887058331642, 29.539629143404369 ], [ -95.623293058647306, 29.53998814358383 ], [ -95.623712058881082, 29.540336143261566 ], [ -95.624275059048315, 29.540863143537884 ], [ -95.624517059215393, 29.541110143301413 ], [ -95.624717059157561, 29.541339143995781 ], [ -95.624877059202674, 29.541504143693935 ], [ -95.624926059230276, 29.541562144115609 ], [ -95.624971059360604, 29.541623143273732 ], [ -95.625010058936553, 29.541686143786222 ], [ -95.625040059329152, 29.541754143513373 ], [ -95.625152059381392, 29.541905143316693 ], [ -95.625217059018937, 29.542008144083471 ], [ -95.6252630587163, 29.542068143842574 ], [ -95.625347059217034, 29.54219214419005 ], [ -95.625574059453072, 29.542617144306206 ], [ -95.625821059442089, 29.542950143581095 ], [ -95.6260160597013, 29.543226143565526 ], [ -95.626178059515681, 29.543435144083265 ], [ -95.626303059818284, 29.543622143754643 ], [ -95.62638705922484, 29.54370214427486 ], [ -95.626491059579962, 29.543813143773484 ], [ -95.62658405928947, 29.543933144040597 ], [ -95.626647059645762, 29.544026144490473 ], [ -95.626814059252368, 29.544232144380363 ], [ -95.627306059690113, 29.544811143925916 ], [ -95.627863059951878, 29.545392144486559 ], [ -95.628549059526662, 29.546065144153012 ], [ -95.629358059958307, 29.546624144687112 ], [ -95.629859060611736, 29.546942144399644 ], [ -95.630363060041631, 29.547189144536713 ], [ -95.631369061145747, 29.547608144838353 ], [ -95.632477060598958, 29.548002144489718 ], [ -95.632556060929943, 29.548022144663683 ], [ -95.632797061434005, 29.54807214492498 ], [ -95.632876060943872, 29.548093145025785 ], [ -95.633256061660205, 29.54823314490719 ], [ -95.633929061064407, 29.548509145044878 ], [ -95.634083061851342, 29.548569144986601 ], [ -95.634230061243969, 29.54862714515599 ], [ -95.634674061341329, 29.54881814495424 ], [ -95.634934061301337, 29.548942145020046 ], [ -95.635471061658407, 29.54919814458847 ], [ -95.635878062134111, 29.549375145191846 ], [ -95.636257062076879, 29.549517144782957 ], [ -95.636403061744019, 29.54958414476279 ], [ -95.636596062066459, 29.549648144801427 ], [ -95.637003061901737, 29.549824145326507 ], [ -95.637093061994122, 29.549858145122347 ], [ -95.637248062249824, 29.549907145060576 ], [ -95.637438062721117, 29.549979145339943 ], [ -95.637512062347881, 29.55001114479505 ], [ -95.637695062378469, 29.550066145041392 ], [ -95.637785062894011, 29.550093145207605 ], [ -95.637873062170286, 29.550123145054517 ], [ -95.638180062526573, 29.550230145435716 ], [ -95.638338062643243, 29.550271145280153 ], [ -95.638597062914457, 29.550328145133154 ], [ -95.63870906270904, 29.550337144575906 ], [ -95.639239062603167, 29.550408144610913 ], [ -95.639719062694454, 29.5505151448099 ], [ -95.640000062963438, 29.550573145174109 ], [ -95.640405063389366, 29.55064314519074 ], [ -95.640566063590853, 29.550676145327564 ], [ -95.640838063178052, 29.550761145345803 ], [ -95.640957063246859, 29.550789145331688 ], [ -95.64152706386426, 29.550873145359226 ], [ -95.642058064093092, 29.55093714472283 ], [ -95.642181063717757, 29.550947144993241 ], [ -95.64251106403043, 29.550960144795095 ], [ -95.642839063912007, 29.55099014462548 ], [ -95.643042064147267, 29.551024144734797 ], [ -95.643206064020177, 29.55103814485965 ], [ -95.643287064185273, 29.551053144762509 ], [ -95.643440063911484, 29.551106144587425 ], [ -95.643620064117002, 29.551194145222723 ], [ -95.643688064027231, 29.551235145267864 ], [ -95.644019064422778, 29.551451145357717 ], [ -95.64416506458565, 29.551578144828568 ], [ -95.644239064389083, 29.551665145258362 ], [ -95.644350064750327, 29.551817145150746 ], [ -95.644412064212773, 29.551951144993005 ], [ -95.644434064197739, 29.552020144998774 ], [ -95.64446606478424, 29.552162145016027 ], [ -95.644548064548147, 29.55269814527761 ], [ -95.64455306418688, 29.552770145120331 ], [ -95.644546064298339, 29.552987145192077 ], [ -95.644517064225994, 29.553165145750906 ], [ -95.644501063904826, 29.553236145651773 ], [ -95.644470063995342, 29.55334114567453 ], [ -95.644411064782588, 29.553476145816994 ], [ -95.644385064477902, 29.553654145789594 ], [ -95.644353063930623, 29.553759145946458 ], [ -95.644311063987857, 29.553861145698633 ], [ -95.644285064785592, 29.55408014581905 ], [ -95.644269063954994, 29.554150145537225 ], [ -95.644225064742045, 29.554290145377262 ], [ -95.644189064671906, 29.554540146027978 ], [ -95.644059064383086, 29.555143145415666 ], [ -95.643928063972069, 29.555635146025974 ], [ -95.643840064845449, 29.555913146045334 ], [ -95.643785064113615, 29.556049146185963 ], [ -95.643749064624515, 29.556189146233184 ], [ -95.643650063925719, 29.556760146140107 ], [ -95.643620064802661, 29.557120145958962 ], [ -95.643611064678311, 29.557336146044069 ], [ -95.643678064198795, 29.557838146089153 ], [ -95.643760064058625, 29.558191146750197 ], [ -95.643808064035596, 29.558367146641 ], [ -95.643841064552404, 29.558471146696498 ], [ -95.644001064867481, 29.558881146351688 ], [ -95.644159064861782, 29.559253146400426 ], [ -95.644278064310654, 29.559483146801508 ], [ -95.644341064255002, 29.559576146974699 ], [ -95.64443506479931, 29.559694146643213 ], [ -95.644684064601805, 29.559982146893457 ], [ -95.644738065056472, 29.560040146532668 ], [ -95.644762064863144, 29.560066146484804 ], [ -95.64496406444573, 29.560247146789731 ], [ -95.645230065284522, 29.560473147095941 ], [ -95.64532606477681, 29.560541147087889 ], [ -95.645494065196758, 29.560647146543218 ], [ -95.645782065112698, 29.560787147096658 ], [ -95.646153064648601, 29.560946146870599 ], [ -95.646626065719417, 29.561168147300279 ], [ -95.647227065466879, 29.561406147356109 ], [ -95.647306065596638, 29.561427146679879 ], [ -95.648189065402065, 29.561614147110483 ], [ -95.648835065443521, 29.561731146681087 ], [ -95.649604066441427, 29.561865147056942 ], [ -95.650174065760893, 29.561946146691675 ], [ -95.65029606617459, 29.561967147145783 ], [ -95.650477065992462, 29.562052147013567 ], [ -95.650741066390552, 29.562155147096611 ], [ -95.650859065964966, 29.562186147444539 ], [ -95.651182066530438, 29.5622471472984 ], [ -95.651615066880581, 29.562365146845224 ], [ -95.651732066845099, 29.5624011473157 ], [ -95.651998066337811, 29.562501146669966 ], [ -95.652565067279895, 29.562795146745284 ], [ -95.652746066781319, 29.562882147309733 ], [ -95.653386067254857, 29.563134147384911 ], [ -95.653729066928932, 29.563259147051994 ], [ -95.653922066944403, 29.563323147150857 ], [ -95.654164067246199, 29.563368147285111 ], [ -95.654244067654133, 29.56338614720201 ], [ -95.654593066957943, 29.563498146761397 ], [ -95.654716067637423, 29.563500147586264 ], [ -95.65488106754546, 29.563511147510305 ], [ -95.65496206782251, 29.56352314684311 ], [ -95.655122067788014, 29.563558147312506 ], [ -95.655238068054445, 29.563595146849106 ], [ -95.655349068034027, 29.56364514749686 ], [ -95.655418067170814, 29.56368414691482 ], [ -95.655549068167105, 29.563771146944806 ], [ -95.655585067580134, 29.563786147416963 ], [ -95.655747067534506, 29.563816146836178 ], [ -95.656073067810112, 29.563864147491884 ], [ -95.65647706748841, 29.563936147207745 ], [ -95.656640068149102, 29.563956147581802 ], [ -95.656802067591698, 29.563986147500312 ], [ -95.657038068157703, 29.564051147530449 ], [ -95.657153067753413, 29.564090146795483 ], [ -95.657438068009142, 29.564107146946988 ], [ -95.657565067879219, 29.564114147348434 ], [ -95.657648068155098, 29.564115147550879 ], [ -95.657936067969175, 29.564093147022088 ], [ -95.658212068589194, 29.56402214747305 ], [ -95.659079068251046, 29.564004146685228 ], [ -95.659581069216998, 29.56399014672877 ], [ -95.659821068293169, 29.563984146715924 ], [ -95.660399068895515, 29.563974146771372 ], [ -95.661224069280067, 29.56398514677732 ], [ -95.661883069216358, 29.564026147219902 ], [ -95.66249906909897, 29.564082147403578 ], [ -95.662825069896897, 29.564125147117728 ], [ -95.663394069768714, 29.56421514726377 ], [ -95.663838069747271, 29.564297147158204 ], [ -95.664511070370722, 29.564471147079885 ], [ -95.664704069637096, 29.564535146706785 ], [ -95.665193070309542, 29.564772146844778 ], [ -95.66544107026543, 29.564907146678841 ], [ -95.665543070383634, 29.564968146783031 ], [ -95.666040070848766, 29.565291147452669 ], [ -95.666446070500172, 29.565539147548431 ], [ -95.666509070846516, 29.565585146814485 ], [ -95.666624070287668, 29.565689146990213 ], [ -95.666924070341238, 29.565987147443909 ], [ -95.667181070387201, 29.566269147717634 ], [ -95.667330070950968, 29.56644214761716 ], [ -95.667687071204043, 29.566839147562554 ], [ -95.667876071441682, 29.567076147809175 ], [ -95.667999071337746, 29.567263147148296 ], [ -95.668223071537767, 29.567649147711794 ], [ -95.668279071460049, 29.567823147678553 ], [ -95.668282071000576, 29.56784414743678 ], [ -95.668293071558836, 29.567930148046489 ], [ -95.668296071065186, 29.568002147949809 ], [ -95.668292070993488, 29.56811114787072 ], [ -95.668297071612756, 29.56814614779989 ], [ -95.668338071316072, 29.568262147607339 ], [ -95.668902070934365, 29.567903147951448 ], [ -95.669707070977452, 29.567391147021848 ], [ -95.670347071300867, 29.566989147359362 ], [ -95.672702072546542, 29.565670147264537 ], [ -95.672580072192289, 29.565382147312818 ], [ -95.672462071643551, 29.565103146774202 ], [ -95.672417072273703, 29.564971146889008 ], [ -95.672363071512436, 29.564813147191309 ], [ -95.672341071873944, 29.564757146943471 ], [ -95.672303072504747, 29.564660146879756 ], [ -95.6722530714502, 29.564486147128601 ], [ -95.672242071903852, 29.564436146922322 ], [ -95.672217071759533, 29.564309146941216 ], [ -95.672197071703934, 29.564130146534509 ], [ -95.67219407214121, 29.563950146577238 ], [ -95.672198071846978, 29.563877146587132 ], [ -95.672206072031244, 29.563769146926166 ], [ -95.672237072259477, 29.563585146685455 ], [ -95.672284072103224, 29.563404146858993 ], [ -95.672344072107492, 29.563228146167461 ], [ -95.672381072127962, 29.563143146154818 ], [ -95.672456071896335, 29.562991146177428 ], [ -95.672509071748408, 29.562897146823378 ], [ -95.672612071470908, 29.56274014685042 ], [ -95.672729072522216, 29.562592146061942 ], [ -95.672858072248729, 29.56245614643127 ], [ -95.673062072478245, 29.562272146047821 ], [ -95.673113071755211, 29.562231146745599 ], [ -95.673259072125376, 29.562120145880126 ], [ -95.673419072302394, 29.561988146526563 ], [ -95.673560071680484, 29.561854146204883 ], [ -95.673600072247694, 29.561812146522318 ], [ -95.673467072032182, 29.561724146189249 ], [ -95.673207072427715, 29.561547146220679 ], [ -95.672768071714316, 29.561323146386279 ], [ -95.672430072208357, 29.56117614601391 ], [ -95.672108071638149, 29.561087145886486 ], [ -95.671606071339752, 29.560977145980445 ], [ -95.671419071812821, 29.560951146099065 ], [ -95.67117507143422, 29.560903145990807 ], [ -95.67080907096495, 29.560804146500288 ], [ -95.670602071299399, 29.560734146528976 ], [ -95.670391071422145, 29.560649145812679 ], [ -95.670186070944609, 29.560554145721422 ], [ -95.669602071166153, 29.560240146383133 ], [ -95.669331070653598, 29.560115145675915 ], [ -95.669144070583499, 29.560040146184164 ], [ -95.669118071084043, 29.560030146334874 ], [ -95.668802071336643, 29.559907145959784 ], [ -95.668548071049372, 29.559808146174358 ], [ -95.668415070952577, 29.559756146140192 ], [ -95.668241070361972, 29.559671145664005 ], [ -95.668028070516371, 29.559544146342738 ], [ -95.6678350709619, 29.559406146235972 ], [ -95.667729070787829, 29.559318145647286 ], [ -95.667699071099449, 29.559292145775107 ], [ -95.66756807098082, 29.5591601455763 ], [ -95.667439070218961, 29.559012146059814 ], [ -95.667314070691091, 29.558843145923827 ], [ -95.667298070660223, 29.558816145382391 ], [ -95.667202070362222, 29.558656145951861 ], [ -95.66714007090124, 29.558528145854634 ], [ -95.667065069874653, 29.558342145464668 ], [ -95.667012070779023, 29.558167145992908 ], [ -95.66696707006075, 29.557968145957897 ], [ -95.666953070071216, 29.557831145784398 ], [ -95.666954070488075, 29.557654146018308 ], [ -95.666961070445794, 29.557494145429711 ], [ -95.666985070657972, 29.557194145134719 ], [ -95.667027070732118, 29.55666214546034 ], [ -95.667049070445017, 29.556440145076341 ], [ -95.667093070093514, 29.556219145212864 ], [ -95.667146069860408, 29.556038145552471 ], [ -95.667219070805842, 29.555863145057259 ], [ -95.667315070301441, 29.555676144752901 ], [ -95.6674070703274, 29.555535145455465 ], [ -95.667429069861768, 29.555502145126667 ], [ -95.667594070508983, 29.5552971450063 ], [ -95.6677110701891, 29.555172145028234 ], [ -95.667776070489481, 29.555112144830847 ], [ -95.667917070436729, 29.554993145046701 ], [ -95.66807907031, 29.554877145211002 ], [ -95.668170070341489, 29.554820144926918 ], [ -95.668360070117529, 29.554713144906678 ], [ -95.668449070570901, 29.554671145308447 ], [ -95.668560070942306, 29.554619144525727 ], [ -95.668770071074974, 29.554541144986931 ], [ -95.66898507019242, 29.554480144576537 ], [ -95.669094070571163, 29.554456145009443 ], [ -95.66920407047715, 29.554437144721515 ], [ -95.669423070763685, 29.554408144519499 ], [ -95.669852070572531, 29.554377144447407 ], [ -95.670062071406164, 29.554353144498837 ], [ -95.670106071245144, 29.554345145107082 ], [ -95.670273071175387, 29.554315144720029 ], [ -95.670377071293373, 29.554289144821976 ], [ -95.670578071142785, 29.554229144573981 ], [ -95.670674071034611, 29.554194144486726 ], [ -95.670857070983772, 29.554119145070139 ], [ -95.671028071692305, 29.554034145084 ], [ -95.671060071410849, 29.554014144777266 ], [ -95.671184070796713, 29.553943144369804 ], [ -95.671324071205376, 29.553853144337719 ], [ -95.671432071255552, 29.553771144803854 ], [ -95.671566071000157, 29.553655144352152 ], [ -95.671595071173542, 29.553628144180148 ], [ -95.671679071216488, 29.553540144768554 ], [ -95.671732071040935, 29.553487144607043 ], [ -95.671854070929641, 29.553337144109953 ], [ -95.671922071218219, 29.553235144409236 ], [ -95.671990071371155, 29.553133144671694 ], [ -95.672035071899899, 29.553052144793408 ], [ -95.672076071708375, 29.552977144499085 ], [ -95.672115071042938, 29.55289214456727 ], [ -95.672229071231342, 29.552604144368747 ], [ -95.672270071893905, 29.552493143899245 ], [ -95.672513071849821, 29.551842143819098 ], [ -95.672639071560837, 29.551532143845048 ], [ -95.672773071135907, 29.551245144487286 ], [ -95.67291107119776, 29.550985144220817 ], [ -95.67300107163247, 29.550835143569596 ], [ -95.673138071403571, 29.55063214361488 ], [ -95.673182071182765, 29.550569144256848 ], [ -95.673339071914683, 29.550370143962386 ], [ -95.673568071914815, 29.550098144211336 ], [ -95.673634071200283, 29.550026143804441 ], [ -95.673989071969942, 29.549671143768148 ], [ -95.674135071742015, 29.549541143250242 ], [ -95.674237071553932, 29.549468143309191 ], [ -95.674308071836876, 29.54941914356845 ], [ -95.674478072188052, 29.549286143466986 ], [ -95.67480507207415, 29.549060143150822 ], [ -95.67507007235497, 29.548898143209843 ], [ -95.675349072239584, 29.548744143447738 ], [ -95.67565607220034, 29.548592143549818 ], [ -95.675875072068123, 29.548493143007185 ], [ -95.676191072533882, 29.548373143226158 ], [ -95.676511072133863, 29.54826814295096 ], [ -95.676785072333786, 29.548135143278657 ], [ -95.677107072194843, 29.548065143478485 ], [ -95.677519072377322, 29.547977142828866 ], [ -95.677930072348346, 29.547906143540605 ], [ -95.678222072588753, 29.547884143024032 ], [ -95.678576073278109, 29.547857143183901 ], [ -95.678908073137535, 29.547853143235095 ], [ -95.679253073061901, 29.547866143444971 ], [ -95.67960307314064, 29.547906143118762 ], [ -95.679939072860918, 29.547977143042392 ], [ -95.680262073147148, 29.548052143037431 ], [ -95.680905073701112, 29.548274143098421 ], [ -95.681451073487267, 29.547148142651753 ], [ -95.681514073477913, 29.546995143043006 ], [ -95.681573073422868, 29.546821142539553 ], [ -95.681601073196049, 29.546696142600787 ], [ -95.681616073933469, 29.546551142447864 ], [ -95.681619073453803, 29.546396142853204 ], [ -95.681600073097357, 29.545662142188366 ], [ -95.681594073110617, 29.545570143044642 ], [ -95.681590073919025, 29.545410142394019 ], [ -95.681602073912856, 29.545165142443061 ], [ -95.68163507368557, 29.544936142158157 ], [ -95.681666073510613, 29.544816142345965 ], [ -95.681708073454871, 29.544689142012789 ], [ -95.681795073775746, 29.544485142761122 ], [ -95.681966073306569, 29.544130142326356 ], [ -95.682056073583126, 29.543960142290317 ], [ -95.682120073221412, 29.54385014201101 ], [ -95.682352073808715, 29.543461142050713 ], [ -95.682412073399789, 29.543361142061112 ], [ -95.68246307323075, 29.543257142090653 ], [ -95.682909074009515, 29.54234414154265 ], [ -95.683182073947961, 29.541583141727184 ], [ -95.683443074047901, 29.541212141295819 ], [ -95.68392507354686, 29.54053314161731 ], [ -95.683928073471066, 29.540390141614868 ], [ -95.683977074375747, 29.540342141147125 ], [ -95.684053073437369, 29.540199141749174 ], [ -95.68411707394516, 29.540036140943986 ], [ -95.684766074307831, 29.538799141396524 ], [ -95.685001074177976, 29.538350141293726 ], [ -95.685303074571962, 29.537756141198582 ], [ -95.685732074138642, 29.536936140751266 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1602, "Tract": "48157671502", "Area_SqMi": 0.69365446857886226, "total_2009": 1878, "total_2010": 1772, "total_2011": 1971, "total_2012": 1854, "total_2013": 2103, "total_2014": 2218, "total_2015": 2438, "total_2016": 2527, "total_2017": 2470, "total_2018": 2574, "total_2019": 2404, "total_2020": 2083, "age1": 696, "age2": 977, "age3": 493, "earn1": 680, "earn2": 820, "earn3": 666, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 10, "naics_s05": 3, "naics_s06": 19, "naics_s07": 474, "naics_s08": 1, "naics_s09": 150, "naics_s10": 95, "naics_s11": 1, "naics_s12": 45, "naics_s13": 0, "naics_s14": 38, "naics_s15": 72, "naics_s16": 331, "naics_s17": 30, "naics_s18": 408, "naics_s19": 222, "naics_s20": 267, "race1": 1234, "race2": 544, "race3": 14, "race4": 342, "race5": 0, "race6": 32, "ethnicity1": 1621, "ethnicity2": 545, "edu1": 316, "edu2": 381, "edu3": 428, "edu4": 345, "Shape_Length": 20756.89147788562, "Shape_Area": 19337899.382490639, "total_2021": 2152, "total_2022": 2166 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.5828330503589, 29.580587152716511 ], [ -95.582757049563611, 29.580534153133094 ], [ -95.58091904915095, 29.579239153316053 ], [ -95.580704049188995, 29.579087153100485 ], [ -95.580192049131981, 29.578725152482839 ], [ -95.579737049258384, 29.578404152845071 ], [ -95.57767204864183, 29.577030152103212 ], [ -95.575716047825381, 29.575692152366845 ], [ -95.57494004719193, 29.575150152504715 ], [ -95.574689047039783, 29.574964152065458 ], [ -95.573595046885401, 29.574219152177509 ], [ -95.572454046483628, 29.573443152322731 ], [ -95.572349046373304, 29.57335415165462 ], [ -95.571914046415486, 29.573022151764672 ], [ -95.570241045986037, 29.571891151696406 ], [ -95.569623045685404, 29.571468151886709 ], [ -95.569095045561141, 29.570962151641886 ], [ -95.568595046267745, 29.570428151099424 ], [ -95.567454045247899, 29.569120150794728 ], [ -95.567376045483641, 29.569032151203348 ], [ -95.564779044365793, 29.566076151139537 ], [ -95.564652044968781, 29.565932150847591 ], [ -95.564498044463448, 29.566106150843957 ], [ -95.564459044234326, 29.566150150457638 ], [ -95.564274044620078, 29.566289151001712 ], [ -95.564112044036591, 29.566495151236968 ], [ -95.563958044192702, 29.56671515046369 ], [ -95.56384204455847, 29.567638150967149 ], [ -95.563844044684132, 29.567756150867659 ], [ -95.563888044681931, 29.569601151758224 ], [ -95.563897044148831, 29.569720151049058 ], [ -95.564099045121338, 29.57245415212639 ], [ -95.563948044321833, 29.573312152564391 ], [ -95.563933044811719, 29.573396151835453 ], [ -95.563920044521581, 29.573469152056017 ], [ -95.563931045165759, 29.574327152858409 ], [ -95.563984045055747, 29.574950152574907 ], [ -95.563986044456584, 29.575068152254811 ], [ -95.563998044794005, 29.575884153117627 ], [ -95.564023045450369, 29.579568153437553 ], [ -95.564066045536066, 29.58249115371634 ], [ -95.564068045584605, 29.582637153775135 ], [ -95.565096044990412, 29.58262115364705 ], [ -95.566127045295119, 29.582606154213785 ], [ -95.56730904546059, 29.582578153995488 ], [ -95.56872904658789, 29.582543153932679 ], [ -95.569878046152851, 29.582516153921002 ], [ -95.570770046712951, 29.582494153894224 ], [ -95.570940046589442, 29.58249015344456 ], [ -95.572831047080768, 29.582593154203707 ], [ -95.572945047009256, 29.582599153987395 ], [ -95.573042047119628, 29.582604153976799 ], [ -95.574484048092231, 29.582683154204602 ], [ -95.575383048055926, 29.582647153478511 ], [ -95.576112048618754, 29.58264215341282 ], [ -95.576564048665077, 29.582672153903768 ], [ -95.577065048611843, 29.582764153907288 ], [ -95.578091048697246, 29.582984153627734 ], [ -95.57896904947539, 29.583188153630353 ], [ -95.580707049961831, 29.583640153467414 ], [ -95.580830049527464, 29.583673153885947 ], [ -95.580878049792844, 29.583497153902126 ], [ -95.580967049763345, 29.58320915391149 ], [ -95.581191049315706, 29.582667153702221 ], [ -95.581462049697393, 29.582224153708427 ], [ -95.581868049712384, 29.581674152925295 ], [ -95.58266804940321, 29.580773153506527 ], [ -95.5828330503589, 29.580587152716511 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1603, "Tract": "48157674604", "Area_SqMi": 2.9784099716049921, "total_2009": 198, "total_2010": 222, "total_2011": 341, "total_2012": 409, "total_2013": 437, "total_2014": 477, "total_2015": 576, "total_2016": 618, "total_2017": 681, "total_2018": 759, "total_2019": 988, "total_2020": 952, "age1": 291, "age2": 518, "age3": 195, "earn1": 268, "earn2": 354, "earn3": 382, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 7, "naics_s05": 2, "naics_s06": 4, "naics_s07": 471, "naics_s08": 1, "naics_s09": 0, "naics_s10": 1, "naics_s11": 5, "naics_s12": 57, "naics_s13": 0, "naics_s14": 15, "naics_s15": 67, "naics_s16": 297, "naics_s17": 23, "naics_s18": 53, "naics_s19": 0, "naics_s20": 0, "race1": 626, "race2": 228, "race3": 8, "race4": 132, "race5": 0, "race6": 10, "ethnicity1": 668, "ethnicity2": 336, "edu1": 156, "edu2": 178, "edu3": 233, "edu4": 146, "Shape_Length": 43064.9346815506, "Shape_Area": 83032972.40873462, "total_2021": 1060, "total_2022": 1004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.746829090194993, 29.546804140803534 ], [ -95.746724089737739, 29.546697140361147 ], [ -95.746499090235815, 29.546518141069424 ], [ -95.744739089790301, 29.545123140633592 ], [ -95.744703089724098, 29.545101139977394 ], [ -95.743696089545949, 29.544409140445563 ], [ -95.743550089570562, 29.544307140440878 ], [ -95.743400089524087, 29.544224140687412 ], [ -95.742814088788705, 29.543903140096152 ], [ -95.742269089095473, 29.543689139755546 ], [ -95.740908088959671, 29.54312813989355 ], [ -95.739510088224065, 29.542676140495853 ], [ -95.737660087304818, 29.542237140357059 ], [ -95.736592087628864, 29.542060140405493 ], [ -95.73382708678615, 29.541666140105399 ], [ -95.726552084971971, 29.540681140048076 ], [ -95.726143084675584, 29.54062214030985 ], [ -95.725387084946988, 29.540528140131393 ], [ -95.724948084111588, 29.540462140389462 ], [ -95.722950084201031, 29.540232140274568 ], [ -95.722603084167829, 29.540196140004994 ], [ -95.721749083136643, 29.540112139850716 ], [ -95.72089008352792, 29.539995140342789 ], [ -95.718469082294206, 29.539661139968796 ], [ -95.715674081591459, 29.539276140438844 ], [ -95.715247081846968, 29.53921714062389 ], [ -95.713355081509349, 29.538957140286396 ], [ -95.711539081294077, 29.53870814032803 ], [ -95.710749080856417, 29.538617140599907 ], [ -95.710391080494659, 29.538566140120626 ], [ -95.708319080181766, 29.538312140442759 ], [ -95.70452307953056, 29.537838140307816 ], [ -95.702665078541742, 29.537607140275938 ], [ -95.702233078666367, 29.538468140809915 ], [ -95.701650078679847, 29.539630140853493 ], [ -95.700953078650357, 29.541019141325169 ], [ -95.70059307779627, 29.541708141425378 ], [ -95.700368078044662, 29.542146141717954 ], [ -95.699378078177972, 29.544069141289796 ], [ -95.699056078174181, 29.544689141564362 ], [ -95.698792077618123, 29.545195141698304 ], [ -95.698716077564953, 29.54534014190374 ], [ -95.698369077915842, 29.546008142191546 ], [ -95.697989077855041, 29.546736141992952 ], [ -95.697889077271583, 29.546930142763763 ], [ -95.697070077597473, 29.548570142941589 ], [ -95.697011078110563, 29.5486881426541 ], [ -95.696953077360902, 29.548804142391965 ], [ -95.695899077045453, 29.550914143034767 ], [ -95.695170077322246, 29.552374143417303 ], [ -95.69513607701434, 29.55244214377317 ], [ -95.695109077261918, 29.552497143123581 ], [ -95.69509407754397, 29.552527143497645 ], [ -95.694832077530222, 29.553056144000404 ], [ -95.694420076951644, 29.553889143864964 ], [ -95.693338076826208, 29.555770144385622 ], [ -95.693119076603068, 29.556152144149831 ], [ -95.692839077032232, 29.556638144441006 ], [ -95.692531077094571, 29.557185144265272 ], [ -95.692248076608394, 29.557692144830465 ], [ -95.692121077166661, 29.557918144549948 ], [ -95.691706076666009, 29.55865914454688 ], [ -95.691472076290196, 29.559221144785031 ], [ -95.691471076532324, 29.559385144745093 ], [ -95.69143807682741, 29.559562145331164 ], [ -95.69128307621159, 29.56008214568481 ], [ -95.691130076259284, 29.560451145193902 ], [ -95.690851076812748, 29.56087414576081 ], [ -95.690678076786881, 29.561119145533514 ], [ -95.690441076594112, 29.561446145559312 ], [ -95.690434076129762, 29.561461145661625 ], [ -95.690364076697449, 29.561594145608961 ], [ -95.691574076888813, 29.56134514535557 ], [ -95.692876077198591, 29.561077145055183 ], [ -95.695465077686293, 29.560540145020365 ], [ -95.69563507734189, 29.560504144814683 ], [ -95.696190077521038, 29.560390145482486 ], [ -95.696967078516508, 29.560229145151656 ], [ -95.697777077891232, 29.560061144666079 ], [ -95.698822078874358, 29.559844145057447 ], [ -95.698872078614315, 29.55983414506829 ], [ -95.698907078214276, 29.559827145240025 ], [ -95.698935078632346, 29.559821145160175 ], [ -95.699000078475507, 29.559808144940341 ], [ -95.699477078267535, 29.559709144764859 ], [ -95.70213807929035, 29.559172144971026 ], [ -95.70577007991578, 29.558439144032878 ], [ -95.706026080611153, 29.558386144055348 ], [ -95.708381080398851, 29.557895143862584 ], [ -95.712123081488073, 29.557116143501382 ], [ -95.716905082871705, 29.556155143824885 ], [ -95.717427083051675, 29.55605014373873 ], [ -95.722167084022757, 29.555097143068878 ], [ -95.724328084840806, 29.554663142680965 ], [ -95.725123085233889, 29.55449914330104 ], [ -95.729770085752051, 29.553539142549948 ], [ -95.731386086688275, 29.55308814239179 ], [ -95.732140086761589, 29.552839142376506 ], [ -95.733236087061826, 29.552477141943395 ], [ -95.735227087885633, 29.551749141703361 ], [ -95.740313088351883, 29.549592141571249 ], [ -95.740978088321256, 29.549310141661625 ], [ -95.741036089185599, 29.549284141488055 ], [ -95.741152088762675, 29.54923214101478 ], [ -95.741268089102249, 29.549179141251123 ], [ -95.7427080888055, 29.548532140832883 ], [ -95.743621089848432, 29.548121141059145 ], [ -95.746380090190016, 29.546984140435161 ], [ -95.746829090194993, 29.546804140803534 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1604, "Tract": "48157673600", "Area_SqMi": 3.3358176555345822, "total_2009": 495, "total_2010": 477, "total_2011": 403, "total_2012": 530, "total_2013": 543, "total_2014": 585, "total_2015": 623, "total_2016": 685, "total_2017": 676, "total_2018": 649, "total_2019": 631, "total_2020": 632, "age1": 197, "age2": 376, "age3": 180, "earn1": 207, "earn2": 269, "earn3": 277, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 173, "naics_s05": 17, "naics_s06": 6, "naics_s07": 129, "naics_s08": 4, "naics_s09": 0, "naics_s10": 0, "naics_s11": 3, "naics_s12": 48, "naics_s13": 0, "naics_s14": 95, "naics_s15": 23, "naics_s16": 94, "naics_s17": 0, "naics_s18": 94, "naics_s19": 66, "naics_s20": 0, "race1": 565, "race2": 98, "race3": 17, "race4": 58, "race5": 1, "race6": 14, "ethnicity1": 490, "ethnicity2": 263, "edu1": 126, "edu2": 135, "edu3": 175, "edu4": 120, "Shape_Length": 39598.372097346895, "Shape_Area": 92996886.927327022, "total_2021": 676, "total_2022": 753 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.743509093033538, 29.623605156488509 ], [ -95.743518092854643, 29.622945156029864 ], [ -95.743470092448675, 29.619708156141474 ], [ -95.74346209291997, 29.619204155451662 ], [ -95.743456092873416, 29.618795155712199 ], [ -95.743448092572095, 29.618524155853393 ], [ -95.743444092108916, 29.618351155426545 ], [ -95.743432092123442, 29.617602155229832 ], [ -95.743367092450882, 29.616644155234066 ], [ -95.743344092495576, 29.616310154987307 ], [ -95.743316092618883, 29.616009155387033 ], [ -95.743303092826679, 29.615870154865323 ], [ -95.743298092405666, 29.615801154589761 ], [ -95.743247091899804, 29.615241154675484 ], [ -95.743182091963803, 29.614452154306651 ], [ -95.743134091725992, 29.613901154937409 ], [ -95.74298709176864, 29.612200154298854 ], [ -95.742915092387705, 29.611178153776521 ], [ -95.742907092019252, 29.61106015405062 ], [ -95.742758091722209, 29.60895315392759 ], [ -95.742704092048839, 29.60756715350654 ], [ -95.742667091965856, 29.60658715307542 ], [ -95.742596091727464, 29.604630152588463 ], [ -95.742561091838994, 29.602930152754649 ], [ -95.742559091408296, 29.602827152321233 ], [ -95.742526091543951, 29.601226151797135 ], [ -95.742470091541833, 29.598453151809363 ], [ -95.742444091565531, 29.597950151581358 ], [ -95.742436091703695, 29.597779151439045 ], [ -95.74240609175331, 29.596346150745667 ], [ -95.742372090869949, 29.595490151146929 ], [ -95.742299091339817, 29.594927150720228 ], [ -95.742241091315577, 29.594713150593833 ], [ -95.742139091126631, 29.594507150260554 ], [ -95.742029090586186, 29.594279150402688 ], [ -95.741442091322057, 29.594622150623273 ], [ -95.74085509076221, 29.594928150806261 ], [ -95.740181090952831, 29.59518915054424 ], [ -95.739507090298176, 29.595418150846935 ], [ -95.738617090561448, 29.595654150712747 ], [ -95.738553089851109, 29.595667150639485 ], [ -95.737312090165389, 29.595990151297485 ], [ -95.737004089645907, 29.596055151468249 ], [ -95.736621090230656, 29.596133151562196 ], [ -95.73576409006462, 29.596221151440176 ], [ -95.735702089728122, 29.596228151266246 ], [ -95.73380908949359, 29.596437151350841 ], [ -95.732863088928312, 29.596513151084 ], [ -95.73221808846354, 29.596564151265895 ], [ -95.731624088816389, 29.59664015134085 ], [ -95.730962088486351, 29.596717151738549 ], [ -95.730746088018961, 29.596758151857976 ], [ -95.730096088084565, 29.596818151529174 ], [ -95.729952088625808, 29.596835151160079 ], [ -95.72934108748332, 29.596912151753646 ], [ -95.72679508759299, 29.597192151790821 ], [ -95.724992086839237, 29.597397151646629 ], [ -95.721567086221555, 29.597758152372602 ], [ -95.720683085417349, 29.597846151925818 ], [ -95.715503084511695, 29.598383151859867 ], [ -95.71433608465567, 29.598504152474536 ], [ -95.71380008402835, 29.598559152102169 ], [ -95.713567084230107, 29.598584152237379 ], [ -95.7136040838828, 29.598814152849585 ], [ -95.713634084396602, 29.599050152755051 ], [ -95.713641083609318, 29.599102152524342 ], [ -95.713656084213028, 29.599361152908983 ], [ -95.713666083913907, 29.599942152954469 ], [ -95.71368408370256, 29.60195915285415 ], [ -95.713697084427707, 29.603428153226393 ], [ -95.713786084990417, 29.611629154965854 ], [ -95.713846084710781, 29.616918155681859 ], [ -95.71384908526629, 29.617181155763213 ], [ -95.713891085184059, 29.618795156825989 ], [ -95.713894085115456, 29.618904156091986 ], [ -95.713969084945461, 29.620964157338705 ], [ -95.714030085118495, 29.622624156970687 ], [ -95.714064085078775, 29.623545157043004 ], [ -95.715026085175083, 29.623545157630858 ], [ -95.716540086287097, 29.623545157367381 ], [ -95.717805085737908, 29.623511157330093 ], [ -95.720081086499945, 29.623461157653438 ], [ -95.720245087305088, 29.62343515703931 ], [ -95.720344086990536, 29.624882157439391 ], [ -95.720330087304163, 29.625198157673704 ], [ -95.725279088132723, 29.625144157340838 ], [ -95.725663088481028, 29.625134157263687 ], [ -95.726149087903892, 29.625122157336296 ], [ -95.72614008844252, 29.624717157651421 ], [ -95.726261088179129, 29.624695157726549 ], [ -95.726441087961163, 29.624647156910655 ], [ -95.726673088380139, 29.624570157666991 ], [ -95.726837088622673, 29.624503157519136 ], [ -95.727180089037731, 29.624351157035047 ], [ -95.727321088893461, 29.624298157512765 ], [ -95.727421088464524, 29.624268157576068 ], [ -95.727524089026659, 29.624244157535536 ], [ -95.727770088779621, 29.624207157045454 ], [ -95.727926089295309, 29.624195156800226 ], [ -95.728154089259945, 29.624202156730561 ], [ -95.728346088391305, 29.624222157465596 ], [ -95.728513089124164, 29.624253157150964 ], [ -95.728648089224762, 29.624291156706555 ], [ -95.728858089255183, 29.624366157211462 ], [ -95.729005089012162, 29.624429157043974 ], [ -95.72912408925454, 29.624492157427159 ], [ -95.729320089145972, 29.624625157407909 ], [ -95.729578088806363, 29.624815157028031 ], [ -95.729783089172429, 29.624953157409358 ], [ -95.730009089721932, 29.625091157021533 ], [ -95.730253089286563, 29.625224156850674 ], [ -95.730513089822338, 29.625349157330845 ], [ -95.73087108977559, 29.62549815726295 ], [ -95.731055089620199, 29.625566157403235 ], [ -95.731337089656563, 29.625654157439712 ], [ -95.731727089363417, 29.62575415736524 ], [ -95.732034090352784, 29.625812156985557 ], [ -95.732460090153722, 29.625875157410036 ], [ -95.73331309017145, 29.625978157368699 ], [ -95.733701090776322, 29.626019157374593 ], [ -95.733913090506121, 29.626033157395547 ], [ -95.734094090596798, 29.626037156864243 ], [ -95.734320090591993, 29.626027157090235 ], [ -95.734491090103461, 29.626011157345026 ], [ -95.734661090866467, 29.625983157117112 ], [ -95.734846090318911, 29.625943156806247 ], [ -95.735034090404341, 29.625898157658348 ], [ -95.73530409064081, 29.625812157252501 ], [ -95.735538090544168, 29.625717157298261 ], [ -95.735873090601672, 29.625568157459995 ], [ -95.738047091081611, 29.624592156740423 ], [ -95.738147091922272, 29.62454315698108 ], [ -95.738335091358081, 29.624438156477392 ], [ -95.738597091982484, 29.624271157046504 ], [ -95.738833091497014, 29.624096156339167 ], [ -95.739125091140934, 29.623852156518879 ], [ -95.739280091444513, 29.623743156257561 ], [ -95.739432091832597, 29.623648156292457 ], [ -95.739621092204558, 29.623551156629713 ], [ -95.739805091521532, 29.62347615614177 ], [ -95.739996091863631, 29.623412156429993 ], [ -95.740282091527547, 29.623335156828738 ], [ -95.74050909214121, 29.62330115617759 ], [ -95.740736092062974, 29.623280156383771 ], [ -95.74091409252631, 29.623277156954472 ], [ -95.741143091649761, 29.623292156285387 ], [ -95.741487092123307, 29.623340156132929 ], [ -95.742648092637438, 29.623580156722795 ], [ -95.742899092273262, 29.623598156292196 ], [ -95.74329109221722, 29.623612156608932 ], [ -95.743509093033538, 29.623605156488509 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1605, "Tract": "48481740600", "Area_SqMi": 135.19440988947758, "total_2009": 877, "total_2010": 1024, "total_2011": 969, "total_2012": 464, "total_2013": 685, "total_2014": 787, "total_2015": 681, "total_2016": 737, "total_2017": 741, "total_2018": 746, "total_2019": 792, "total_2020": 853, "age1": 104, "age2": 310, "age3": 252, "earn1": 101, "earn2": 237, "earn3": 328, "naics_s01": 340, "naics_s02": 23, "naics_s03": 0, "naics_s04": 23, "naics_s05": 92, "naics_s06": 4, "naics_s07": 21, "naics_s08": 2, "naics_s09": 0, "naics_s10": 3, "naics_s11": 5, "naics_s12": 2, "naics_s13": 0, "naics_s14": 129, "naics_s15": 0, "naics_s16": 8, "naics_s17": 3, "naics_s18": 7, "naics_s19": 4, "naics_s20": 0, "race1": 561, "race2": 59, "race3": 6, "race4": 25, "race5": 3, "race6": 12, "ethnicity1": 394, "ethnicity2": 272, "edu1": 151, "edu2": 178, "edu3": 153, "edu4": 80, "Shape_Length": 299816.50391461793, "Shape_Area": 3768988760.1735878, "total_2021": 683, "total_2022": 666 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.109021169227688, 29.24676006774683 ], [ -96.10903916892434, 29.244920067248277 ], [ -96.108682168659698, 29.243894066920571 ], [ -96.108770169596383, 29.24380206689743 ], [ -96.108755169250003, 29.243570066413099 ], [ -96.108512169007085, 29.242816066927944 ], [ -96.108177168665435, 29.242462066589731 ], [ -96.107501169080209, 29.24199406661922 ], [ -96.106789168684656, 29.241249066658188 ], [ -96.106364168939464, 29.240970065959697 ], [ -96.106129168366436, 29.240720065720847 ], [ -96.104502167693894, 29.239624065831109 ], [ -96.103489167250075, 29.239332066015415 ], [ -96.102712167004213, 29.239272065727274 ], [ -96.101280167047037, 29.239389066072043 ], [ -96.100189166437559, 29.23956706622689 ], [ -96.099655166842936, 29.239561065956849 ], [ -96.09927716640955, 29.239349066504193 ], [ -96.098938166740666, 29.239035065654161 ], [ -96.098774166337478, 29.238258065546081 ], [ -96.098638166153464, 29.236931065335547 ], [ -96.098504166150988, 29.236219065941555 ], [ -96.098409165788439, 29.235321065272288 ], [ -96.098337165792202, 29.235077064958979 ], [ -96.09814016589408, 29.232704064972772 ], [ -96.098018165538576, 29.232064064761957 ], [ -96.097828165528412, 29.230199064387765 ], [ -96.097357165377218, 29.22774606404171 ], [ -96.097340165615691, 29.227169063620224 ], [ -96.097209165039501, 29.226719063914256 ], [ -96.097220165889084, 29.226287063825293 ], [ -96.097024165001059, 29.224241062991823 ], [ -96.096825165373772, 29.223175062451411 ], [ -96.096762165701691, 29.222166062663177 ], [ -96.096524165380998, 29.220727062797412 ], [ -96.096486164760989, 29.220469062692853 ], [ -96.096419165507399, 29.22000706196572 ], [ -96.095875164326628, 29.218460062042634 ], [ -96.095069164409423, 29.217170062083092 ], [ -96.094786164244056, 29.216821061289565 ], [ -96.094593164274031, 29.216583062047121 ], [ -96.094226164783947, 29.21602006119528 ], [ -96.093689163789421, 29.21496706102581 ], [ -96.093382164273137, 29.21418206077206 ], [ -96.093302164404733, 29.213573060813875 ], [ -96.09331316426632, 29.213070060941593 ], [ -96.093443164056595, 29.212617061162913 ], [ -96.093722163932355, 29.212219060498974 ], [ -96.09383916416094, 29.211912060680699 ], [ -96.094020164469427, 29.211024060440195 ], [ -96.094192163805076, 29.209734059777016 ], [ -96.094154163718059, 29.208265060353117 ], [ -96.093826163883236, 29.207151059307858 ], [ -96.093642163881299, 29.206749059905516 ], [ -96.093432164044557, 29.206439059242257 ], [ -96.092554163603921, 29.205400059748808 ], [ -96.092264163656225, 29.205201059291628 ], [ -96.091963163434087, 29.205097059592912 ], [ -96.09054416238375, 29.204004059301162 ], [ -96.088844162371657, 29.202391058668834 ], [ -96.088002162617045, 29.201653058360005 ], [ -96.087199161661033, 29.201219058974175 ], [ -96.086718161921098, 29.20101605877721 ], [ -96.085078161352399, 29.199968058600739 ], [ -96.084505161328494, 29.199504058070129 ], [ -96.083390160861782, 29.198495058545049 ], [ -96.082200160465149, 29.197301057755595 ], [ -96.081531160454418, 29.19639405754668 ], [ -96.080996159816706, 29.195755057980364 ], [ -96.079851159775288, 29.194581057277208 ], [ -96.079466159824477, 29.194257057781581 ], [ -96.078887159520008, 29.193917057064311 ], [ -96.078620159843751, 29.193824057579015 ], [ -96.077849159070723, 29.193739057763146 ], [ -96.077335159248591, 29.19361205777777 ], [ -96.076807159340888, 29.193544057533419 ], [ -96.075073158624974, 29.19302505782878 ], [ -96.074181158390815, 29.19275805755068 ], [ -96.072591157439348, 29.19239105737342 ], [ -96.072117157190974, 29.19217905727356 ], [ -96.070951157270102, 29.191833056959382 ], [ -96.070635157447796, 29.191792057652933 ], [ -96.070264157083798, 29.191364057563447 ], [ -96.070057156690311, 29.191015056939229 ], [ -96.070127157271671, 29.190553056788922 ], [ -96.070285157237123, 29.190185057160029 ], [ -96.070248157226303, 29.189610056457735 ], [ -96.070157157134062, 29.189336056423357 ], [ -96.070189157268686, 29.18825405698939 ], [ -96.070100156998194, 29.187791056349425 ], [ -96.069890157283155, 29.187208056801712 ], [ -96.069310156881386, 29.186554055857272 ], [ -96.069036156727378, 29.186385056556613 ], [ -96.068487156499657, 29.186142056080026 ], [ -96.067643156575087, 29.185989056458574 ], [ -96.066660156223975, 29.186019056584009 ], [ -96.065846155910037, 29.186110056460421 ], [ -96.065478155924581, 29.186092056080426 ], [ -96.064456155472683, 29.185723056229918 ], [ -96.064256155731201, 29.185598055873061 ], [ -96.063978155324946, 29.185333056651618 ], [ -96.063310155633545, 29.184470056268097 ], [ -96.063033155281687, 29.183908055772495 ], [ -96.062982155113914, 29.1834790554195 ], [ -96.063024155064468, 29.183121055860862 ], [ -96.063145154690687, 29.182777056019859 ], [ -96.063576155399943, 29.181926055144253 ], [ -96.064079155546665, 29.179851055349019 ], [ -96.064360155233473, 29.178643054661638 ], [ -96.064674155503951, 29.177672054725424 ], [ -96.065108155423374, 29.176698054359065 ], [ -96.066045155763348, 29.17529905385372 ], [ -96.066643156033209, 29.174657053715531 ], [ -96.066964155487057, 29.174238053436742 ], [ -96.067129155911076, 29.173832054145119 ], [ -96.067137155341712, 29.173367053376975 ], [ -96.067044155846787, 29.173207053630566 ], [ -96.066806155912559, 29.173013053416891 ], [ -96.066607155869775, 29.172619053102476 ], [ -96.066435155692446, 29.171992053394789 ], [ -96.066095154988361, 29.171738053649271 ], [ -96.065822154769748, 29.171664053587666 ], [ -96.065207155396692, 29.171674053113993 ], [ -96.065037155071238, 29.171627052933996 ], [ -96.062891154766248, 29.171800053244276 ], [ -96.062017154679083, 29.172361053330512 ], [ -96.060979153658707, 29.173250053596778 ], [ -96.060217153593698, 29.173867053526841 ], [ -96.059057153218845, 29.174535053747665 ], [ -96.057991153748745, 29.174836053871452 ], [ -96.05698315272997, 29.175019053903355 ], [ -96.056354152482257, 29.174996054247618 ], [ -96.055346152505166, 29.175136054811333 ], [ -96.053481151830226, 29.174942054417674 ], [ -96.053145152077562, 29.174821054637409 ], [ -96.052620152390517, 29.174688054501583 ], [ -96.050469150972489, 29.17388805429843 ], [ -96.049210150722431, 29.172966053982545 ], [ -96.048652150834457, 29.172843054455171 ], [ -96.048347150968894, 29.172664054182501 ], [ -96.04716915096553, 29.172240053732786 ], [ -96.046249150345133, 29.171768054332166 ], [ -96.045886149909151, 29.171477054076096 ], [ -96.045546150410345, 29.170987053882293 ], [ -96.045432149567276, 29.170458054071869 ], [ -96.045486150448255, 29.170030053641629 ], [ -96.04590415044477, 29.169260053423375 ], [ -96.046896150110939, 29.167681053552883 ], [ -96.04751715045245, 29.166963053246892 ], [ -96.047673150443558, 29.166709053279501 ], [ -96.047760150642333, 29.166469052760263 ], [ -96.047734150015671, 29.166002052703455 ], [ -96.047447150243016, 29.16536505265303 ], [ -96.047207149744168, 29.165123052479402 ], [ -96.046445150308926, 29.16476905222661 ], [ -96.044606150020201, 29.164258052750451 ], [ -96.043675149375886, 29.163879052715352 ], [ -96.043023149250558, 29.163505052309855 ], [ -96.042735149052859, 29.163249052704899 ], [ -96.042437148478413, 29.162904052119156 ], [ -96.042401148915033, 29.162844052595684 ], [ -96.042189148578359, 29.162489052431063 ], [ -96.041966148754938, 29.161721052017 ], [ -96.041990149143302, 29.160930051975733 ], [ -96.042190148389338, 29.160166051648137 ], [ -96.042248148922141, 29.159956051824597 ], [ -96.042848149186071, 29.158892051348783 ], [ -96.043050149373641, 29.158534051346997 ], [ -96.043683149343224, 29.157692051400009 ], [ -96.044428148957707, 29.157074050716233 ], [ -96.0450811494878, 29.156288050942234 ], [ -96.045280149544183, 29.155949050902517 ], [ -96.045400149455403, 29.155743050778884 ], [ -96.045654149846229, 29.155171050543874 ], [ -96.045926149245034, 29.153969050490122 ], [ -96.045964148906407, 29.152097049520648 ], [ -96.046486149226837, 29.149541049039925 ], [ -96.046491149183055, 29.148997049156023 ], [ -96.046395149336874, 29.14853504958128 ], [ -96.046292149015187, 29.147458048880328 ], [ -96.045384149340308, 29.144910048641076 ], [ -96.045060148853011, 29.144249048496029 ], [ -96.044987148898556, 29.143895048425879 ], [ -96.045001149252499, 29.143643047872999 ], [ -96.04515914897317, 29.14312104779426 ], [ -96.045275149048749, 29.142407047604827 ], [ -96.045562148478112, 29.141970047541413 ], [ -96.045747149184635, 29.141454047957833 ], [ -96.046141149349722, 29.140702047836303 ], [ -96.046243149286255, 29.140243047860732 ], [ -96.046246148717074, 29.13988304712429 ], [ -96.046111148590597, 29.139283047127481 ], [ -96.045838149086819, 29.138759046794302 ], [ -96.045199148063091, 29.138009047263903 ], [ -96.044857148754716, 29.137715046736144 ], [ -96.04459314879422, 29.137443047298408 ], [ -96.043819148538134, 29.136077046671481 ], [ -96.04373414827802, 29.135926046397344 ], [ -96.043532147678349, 29.135657046498721 ], [ -96.043389148160912, 29.135243046149803 ], [ -96.043181148377258, 29.134067046712389 ], [ -96.043218148004371, 29.133672046633347 ], [ -96.043154148282341, 29.132701046385762 ], [ -96.043226147608607, 29.132508046329722 ], [ -96.043294147404836, 29.13232304585912 ], [ -96.043359147753776, 29.131604045683439 ], [ -96.04352014797999, 29.131275046209158 ], [ -96.043713147416014, 29.130648045956622 ], [ -96.044174147868745, 29.128551045064341 ], [ -96.044701147638662, 29.126399044530011 ], [ -96.045355148210135, 29.124014043831277 ], [ -96.045705147929496, 29.123129043855727 ], [ -96.046366148580304, 29.12200804354357 ], [ -96.046672148276173, 29.12137804328724 ], [ -96.047005148568289, 29.121012043273389 ], [ -96.047966148311986, 29.120341043660982 ], [ -96.048469148603516, 29.120097043576827 ], [ -96.049232148672615, 29.119831043231727 ], [ -96.050136148968548, 29.119408043057849 ], [ -96.051110148878863, 29.119129042848044 ], [ -96.051576149158308, 29.118876043151353 ], [ -96.052001149950499, 29.11843604292574 ], [ -96.052131149079969, 29.118021043120969 ], [ -96.052129149717842, 29.117409042428999 ], [ -96.051964149160781, 29.116816042794294 ], [ -96.051666149123022, 29.116472042076833 ], [ -96.051564149328016, 29.116276042489947 ], [ -96.05102114931762, 29.115786042058865 ], [ -96.050412149060605, 29.115360041901898 ], [ -96.049895149221072, 29.115143042701792 ], [ -96.049498148248063, 29.115054042600871 ], [ -96.049026148431423, 29.115092041996817 ], [ -96.04842514882516, 29.115196042412329 ], [ -96.047450147944247, 29.115456042384885 ], [ -96.047123148561923, 29.115446042552854 ], [ -96.045858147450872, 29.115559042658901 ], [ -96.045540147604953, 29.1154890425248 ], [ -96.045204147575575, 29.115355042290773 ], [ -96.044670147954506, 29.115019042127464 ], [ -96.044313147700663, 29.114708042468546 ], [ -96.043812147626824, 29.114121042439653 ], [ -96.04366214767083, 29.11385304234139 ], [ -96.043357147447864, 29.112549042265499 ], [ -96.043176146784688, 29.11214904178625 ], [ -96.043100146499114, 29.111765041336703 ], [ -96.042829147078933, 29.111085041770249 ], [ -96.042231146727019, 29.110186041494522 ], [ -96.04120514628687, 29.109205041386716 ], [ -96.04038014606202, 29.108617041265372 ], [ -96.040315146602708, 29.108571040923913 ], [ -96.039376145913408, 29.107522041363566 ], [ -96.038939145437993, 29.106914041168459 ], [ -96.03882914543442, 29.106760040897107 ], [ -96.038650145160574, 29.106557041166479 ], [ -96.038625145163977, 29.106570040766069 ], [ -96.038578145346008, 29.106595040680933 ], [ -96.038337145260414, 29.106725040668554 ], [ -96.037965145099051, 29.106925041046196 ], [ -96.037593145517206, 29.107125041329148 ], [ -96.036450145270351, 29.10774004153998 ], [ -96.035307144427676, 29.10835504122776 ], [ -96.034957145214278, 29.108543041791734 ], [ -96.034607144822644, 29.108730041323433 ], [ -96.034334145059944, 29.108874041621764 ], [ -96.032533144369509, 29.109823041786353 ], [ -96.030455143410222, 29.110918041888503 ], [ -96.023353141942422, 29.114786043308406 ], [ -96.010427139046612, 29.121829045120489 ], [ -96.008743138190624, 29.122768045552633 ], [ -96.004279137895892, 29.125257046171889 ], [ -96.003097137714548, 29.125900045877565 ], [ -96.000241136259447, 29.127459046445662 ], [ -95.998330135784457, 29.128383046981533 ], [ -95.998311136360357, 29.128393046852725 ], [ -95.998297135875092, 29.12839704676546 ], [ -95.984452133117031, 29.136128048854747 ], [ -95.98419613254768, 29.136271048820962 ], [ -95.982203132691197, 29.137382048881477 ], [ -95.979933131655187, 29.138648049077286 ], [ -95.979808132388214, 29.138717049020009 ], [ -95.979623132248548, 29.138821049034632 ], [ -95.965203128686753, 29.146870051753716 ], [ -95.964056128462147, 29.14791005163428 ], [ -95.942657124239318, 29.167296056826071 ], [ -95.933708121903905, 29.175403058777263 ], [ -95.932694121723273, 29.176322058476973 ], [ -95.925598119606477, 29.182752060566781 ], [ -95.920958119121607, 29.186956060842963 ], [ -95.917364118023528, 29.190212062119649 ], [ -95.917318118341484, 29.190254062197212 ], [ -95.917272117812573, 29.190295062109847 ], [ -95.917193118312113, 29.190366061581944 ], [ -95.91278011747724, 29.194363063045657 ], [ -95.912713117223092, 29.194424063165506 ], [ -95.912303117557968, 29.19479506267243 ], [ -95.899240114727874, 29.206664066105009 ], [ -95.899160114517102, 29.206748066279076 ], [ -95.899067114678473, 29.20683506581242 ], [ -95.898996114140118, 29.206912065859147 ], [ -95.896942114012063, 29.208813066506661 ], [ -95.895704113791268, 29.209976066430652 ], [ -95.895615113296572, 29.210056066523642 ], [ -95.895031113072179, 29.210577066434599 ], [ -95.89365511343297, 29.211822067285919 ], [ -95.893526113596252, 29.211939067498815 ], [ -95.891176113095867, 29.214008067940025 ], [ -95.890973112810585, 29.214196067770061 ], [ -95.887248111347517, 29.21756506819915 ], [ -95.885833111946056, 29.218855069026155 ], [ -95.885658110974063, 29.219013068593632 ], [ -95.884690110777242, 29.219886068882921 ], [ -95.884312111470834, 29.220272068871846 ], [ -95.884216110900041, 29.220370069257648 ], [ -95.884133110765973, 29.220490069545136 ], [ -95.884100111258363, 29.220584068959472 ], [ -95.884098110636202, 29.220596068934469 ], [ -95.884093111621155, 29.220627069065561 ], [ -95.88121311050854, 29.223239069584288 ], [ -95.875237109618652, 29.228512071540802 ], [ -95.874035108456241, 29.22970707181312 ], [ -95.873878109086903, 29.229989071291453 ], [ -95.873870108596549, 29.230001071237215 ], [ -95.87386410911283, 29.230009071532777 ], [ -95.872289108099125, 29.231419071865297 ], [ -95.872259108906192, 29.231446072098517 ], [ -95.872250109040493, 29.231453072195901 ], [ -95.872238108825243, 29.231464071940049 ], [ -95.872133108759812, 29.231558071651069 ], [ -95.871415107889902, 29.232200072465318 ], [ -95.870525108303994, 29.232996072220317 ], [ -95.869842108203201, 29.233607072712704 ], [ -95.869805107750551, 29.233640072213902 ], [ -95.860072106409547, 29.242459074432528 ], [ -95.859959105469613, 29.242562074531417 ], [ -95.859915105808938, 29.242602074499217 ], [ -95.858143105061231, 29.244161074522658 ], [ -95.858008105416658, 29.244280074920596 ], [ -95.857775105329495, 29.244485075390237 ], [ -95.85772910544263, 29.244526075500879 ], [ -95.857697105920096, 29.244553075094295 ], [ -95.855200105024082, 29.246750075520914 ], [ -95.852231104176568, 29.24936207603157 ], [ -95.852209103725656, 29.249381076448024 ], [ -95.851910104393724, 29.24963207587723 ], [ -95.851068103974171, 29.250339076622364 ], [ -95.848225103370808, 29.25295107720962 ], [ -95.848164102840798, 29.253007077281087 ], [ -95.848141103724629, 29.253028077192457 ], [ -95.848129103459129, 29.253039077565212 ], [ -95.847964102892917, 29.253191077572872 ], [ -95.847027102870882, 29.254051077668922 ], [ -95.84693010361346, 29.254140077173464 ], [ -95.846909102654251, 29.254159077821811 ], [ -95.846901102621416, 29.254166077355073 ], [ -95.846889103118286, 29.254177077639021 ], [ -95.846805103494376, 29.254254077719146 ], [ -95.843293102525351, 29.257470078150963 ], [ -95.842641102119813, 29.258075077969448 ], [ -95.842622102608232, 29.258093078287676 ], [ -95.841983102398842, 29.258686078808783 ], [ -95.841955102495263, 29.258712078201363 ], [ -95.841964102092064, 29.258813078864765 ], [ -95.84196710156435, 29.258850078337126 ], [ -95.842009102151437, 29.259031078321016 ], [ -95.842061102167804, 29.25926207835743 ], [ -95.84211810215406, 29.259405078913169 ], [ -95.842187102470945, 29.259531078743194 ], [ -95.842345102167386, 29.2597550786131 ], [ -95.842388102610599, 29.259817078332649 ], [ -95.842507102326209, 29.259938078842627 ], [ -95.842732102317214, 29.260119079159221 ], [ -95.842946102810913, 29.260251079015831 ], [ -95.843209102277029, 29.260367079148459 ], [ -95.843347102495443, 29.260416079108559 ], [ -95.843466102356729, 29.260443079205984 ], [ -95.843777102908732, 29.260449079058144 ], [ -95.844055102207747, 29.260454078653641 ], [ -95.844413102834594, 29.260482078614103 ], [ -95.844563102557288, 29.260504078615966 ], [ -95.845008103276285, 29.260635078451354 ], [ -95.845265102664513, 29.260734079060892 ], [ -95.845522103024933, 29.260855078616817 ], [ -95.845735102978225, 29.260971078673045 ], [ -95.845867103221977, 29.261059078436965 ], [ -95.846388103561367, 29.261471078601684 ], [ -95.846902103320403, 29.261894078672835 ], [ -95.847033103610457, 29.262026078593198 ], [ -95.847259103094146, 29.262191078817903 ], [ -95.847441103847544, 29.2623830792588 ], [ -95.84745410363503, 29.262394079415923 ], [ -95.847487104012032, 29.262422079077115 ], [ -95.847610103415633, 29.262526079445763 ], [ -95.847663103634758, 29.262595079119301 ], [ -95.847849103338092, 29.262834078863147 ], [ -95.848018103861918, 29.262982079203631 ], [ -95.848123103797491, 29.263091079421969 ], [ -95.84862610436025, 29.263361079356411 ], [ -95.849115103570895, 29.263619078808098 ], [ -95.849529104105628, 29.263921079671388 ], [ -95.849654103810366, 29.264081079715339 ], [ -95.849755104069928, 29.264229079673974 ], [ -95.849805104235529, 29.264367079275907 ], [ -95.849836104331743, 29.264564079460712 ], [ -95.849843104595962, 29.264828079659534 ], [ -95.849887104038103, 29.265087079463022 ], [ -95.849924104833605, 29.26523007948181 ], [ -95.850006104780533, 29.265427079334696 ], [ -95.85011310439215, 29.265614079773002 ], [ -95.850251104538984, 29.265779080028381 ], [ -95.850401104310649, 29.265944080122718 ], [ -95.85057010425669, 29.266098079572672 ], [ -95.850752105002414, 29.266230079542723 ], [ -95.850840104980051, 29.266279079367916 ], [ -95.850934105027719, 29.266318079554019 ], [ -95.851191105058035, 29.266378080051943 ], [ -95.851536104499473, 29.26637807988757 ], [ -95.851837104707343, 29.266345079942383 ], [ -95.85207510507405, 29.266268079995676 ], [ -95.85215710446947, 29.266262079636576 ], [ -95.85230710498287, 29.266268079347917 ], [ -95.852389105291323, 29.266290079968304 ], [ -95.852483104770769, 29.266334079715023 ], [ -95.852608105160172, 29.266328079487145 ], [ -95.852664105118066, 29.266301079705492 ], [ -95.852821104869264, 29.266196080013628 ], [ -95.85295310553073, 29.266004079495286 ], [ -95.853211105014964, 29.265953079186328 ], [ -95.853536105777778, 29.265888079642131 ], [ -95.853686104915724, 29.265932079329509 ], [ -95.853931105164349, 29.265976079882122 ], [ -95.854169105797581, 29.266053079996325 ], [ -95.854463105173494, 29.26619007918201 ], [ -95.854696105504175, 29.266327079533941 ], [ -95.854777106103398, 29.266366079961127 ], [ -95.855191106080909, 29.266663079850915 ], [ -95.855762105988433, 29.267042079805329 ], [ -95.856031106041527, 29.267256079444355 ], [ -95.856157106400588, 29.267536080285012 ], [ -95.856533106508437, 29.267783080285568 ], [ -95.856727106590753, 29.267882080344311 ], [ -95.856941106306934, 29.267976079650197 ], [ -95.857241105919087, 29.268058080110443 ], [ -95.857574106870217, 29.268124080047905 ], [ -95.857850106308462, 29.268157080131367 ], [ -95.858671106276319, 29.267959079783285 ], [ -95.85928510713488, 29.267788079875672 ], [ -95.859530106958331, 29.267755079489326 ], [ -95.859956107201583, 29.267711079830409 ], [ -95.860125107127629, 29.267711079487984 ], [ -95.860495107413769, 29.267722079330639 ], [ -95.860702106745435, 29.267738079607557 ], [ -95.861285107450882, 29.267804080170922 ], [ -95.861504107354023, 29.26779308003437 ], [ -95.861981107498835, 29.267683079348565 ], [ -95.862858108102614, 29.267418079709984 ], [ -95.86320910779915, 29.267325079638244 ], [ -95.863635108118032, 29.267248079253985 ], [ -95.863961107573971, 29.267226079082313 ], [ -95.864444108170261, 29.26722007933914 ], [ -95.864676107719589, 29.267231079342189 ], [ -95.864896108244892, 29.267253079925432 ], [ -95.865109108073881, 29.267280079608096 ], [ -95.865410108225745, 29.267439079101216 ], [ -95.865566108138907, 29.267544079912067 ], [ -95.865673108546744, 29.267643079802347 ], [ -95.865843108221767, 29.267829079784494 ], [ -95.866213108389118, 29.26820907927118 ], [ -95.866382108354443, 29.268324079905458 ], [ -95.866714108854026, 29.268593080094512 ], [ -95.866978109006936, 29.268752079351518 ], [ -95.8673291091322, 29.268939080199946 ], [ -95.867636109349021, 29.269093080238271 ], [ -95.867812108841761, 29.26915907985909 ], [ -95.868012108661873, 29.269219079793732 ], [ -95.868257108736614, 29.269263079856131 ], [ -95.868520109090184, 29.269285079531901 ], [ -95.868752109779408, 29.269279080036608 ], [ -95.86893410904284, 29.269246079612426 ], [ -95.869009109091309, 29.269213079683801 ], [ -95.869091109136804, 29.269164079480053 ], [ -95.869360109565179, 29.268944079979967 ], [ -95.869523109942264, 29.268795079608811 ], [ -95.870068109458416, 29.268245079260083 ], [ -95.870344109164876, 29.267954079341603 ], [ -95.870607109995774, 29.267745079784603 ], [ -95.871033110186715, 29.26745907891485 ], [ -95.871409109520272, 29.267184079418783 ], [ -95.871797109818615, 29.266958078928585 ], [ -95.87231810996856, 29.266744078962631 ], [ -95.872669110340993, 29.266727079583447 ], [ -95.873133110315351, 29.266650079138621 ], [ -95.873336109996984, 29.266622079405714 ], [ -95.873578110170229, 29.266589078728291 ], [ -95.87387911030649, 29.266600079187366 ], [ -95.874073110560133, 29.266578079367246 ], [ -95.874170110222494, 29.266558078613784 ], [ -95.874247110739574, 29.266543079029773 ], [ -95.874568110816, 29.266479079287571 ], [ -95.874806110913298, 29.26641807917386 ], [ -95.875006110654226, 29.266369078784429 ], [ -95.875796110981398, 29.266033078972505 ], [ -95.876373111171233, 29.265918078657936 ], [ -95.876774111596035, 29.265798079089759 ], [ -95.877050110753856, 29.265748079172319 ], [ -95.877419111593852, 29.26579207898094 ], [ -95.877777111736421, 29.265787079183191 ], [ -95.878084111538968, 29.265820079046239 ], [ -95.87847311197946, 29.265947078351015 ], [ -95.87871711209641, 29.266079078921315 ], [ -95.879200111682664, 29.266414079175721 ], [ -95.879607111994176, 29.266766078714394 ], [ -95.879713112380401, 29.266926078640545 ], [ -95.87978211165408, 29.267102078592501 ], [ -95.879763112145284, 29.267327079303321 ], [ -95.879763112264484, 29.267651078864095 ], [ -95.879524112245804, 29.268613079131079 ], [ -95.879493111733836, 29.269102079544194 ], [ -95.879611111950993, 29.269707079323602 ], [ -95.879699112105968, 29.269987079631271 ], [ -95.879868112178386, 29.270290079799409 ], [ -95.879912111790674, 29.2704220792609 ], [ -95.880194111894383, 29.270774079864371 ], [ -95.880520112131151, 29.270961079563133 ], [ -95.881341112731064, 29.271197080093049 ], [ -95.88159211313814, 29.271219080070086 ], [ -95.882820112689345, 29.271748079434808 ], [ -95.882945112796492, 29.271847079476178 ], [ -95.883033112540176, 29.271962079550331 ], [ -95.883541113394003, 29.272462079823114 ], [ -95.88370411333652, 29.272600080321237 ], [ -95.883841112989757, 29.272743080270931 ], [ -95.884004113797005, 29.272963080053838 ], [ -95.884305113748439, 29.27326508015954 ], [ -95.884462113821968, 29.273359080092039 ], [ -95.884575113948856, 29.273507079716325 ], [ -95.884706113969273, 29.273733080020605 ], [ -95.884838113917141, 29.27406808043029 ], [ -95.884894113680232, 29.274145080504542 ], [ -95.88495011385497, 29.274299080451257 ], [ -95.884982113726636, 29.274805080036455 ], [ -95.884988113934085, 29.275294080295499 ], [ -95.88496811412918, 29.276750080974725 ], [ -95.884924114035428, 29.277294080996143 ], [ -95.884836114057123, 29.278135081137169 ], [ -95.884691113620889, 29.278652081456173 ], [ -95.884697113365846, 29.278823080844273 ], [ -95.884678114183785, 29.279218081630102 ], [ -95.884816113367975, 29.27939408157367 ], [ -95.884923114298132, 29.279691081237324 ], [ -95.885142114314945, 29.279933081060022 ], [ -95.885343113767988, 29.28021308103283 ], [ -95.885574114116338, 29.280395081952054 ], [ -95.885718113994287, 29.2805980817907 ], [ -95.885957113875918, 29.281005081509793 ], [ -95.88613211404234, 29.281472081612062 ], [ -95.886295113909725, 29.28172008141452 ], [ -95.886514114103974, 29.282110082067771 ], [ -95.887015114449795, 29.283056082353131 ], [ -95.887241114798499, 29.283512081801199 ], [ -95.88770411489412, 29.284397082580881 ], [ -95.888168114492046, 29.285150082824071 ], [ -95.888682115450891, 29.285887082147841 ], [ -95.889202114895269, 29.286492082614991 ], [ -95.88928311484554, 29.286717082709917 ], [ -95.889609114868975, 29.287135082527772 ], [ -95.889759115147385, 29.287515083253627 ], [ -95.889872115774878, 29.288130083400933 ], [ -95.889972115149376, 29.288790082780661 ], [ -95.890617115577939, 29.290840083904772 ], [ -95.890798115513007, 29.291709083707307 ], [ -95.890930115655436, 29.292143084020442 ], [ -95.891281115790093, 29.292704083555634 ], [ -95.891927116075706, 29.293270084331823 ], [ -95.892447116473065, 29.293710084221143 ], [ -95.892817116433946, 29.294057083992801 ], [ -95.892835116694556, 29.294738084305301 ], [ -95.892942116762029, 29.29513908425195 ], [ -95.893286116278361, 29.295535084017995 ], [ -95.893593117248386, 29.295799084151643 ], [ -95.894013117328115, 29.296129084500922 ], [ -95.894691117301861, 29.296503084748561 ], [ -95.895512116956183, 29.296938084591382 ], [ -95.895951117676859, 29.297267084659676 ], [ -95.896496117621538, 29.297790084526195 ], [ -95.896817117241042, 29.298181084876408 ], [ -95.897160117470349, 29.298836084811963 ], [ -95.897475118189718, 29.299134085110868 ], [ -95.897499117590215, 29.299170085331397 ], [ -95.897548118201755, 29.299288084849298 ], [ -95.897477117465399, 29.299410084749947 ], [ -95.897373117865683, 29.299466085343923 ], [ -95.896903118256262, 29.300401084967461 ], [ -95.896740117233819, 29.300665085396307 ], [ -95.896526117604424, 29.301005085387608 ], [ -95.895685117964362, 29.303929086245361 ], [ -95.895653117274591, 29.304770085970631 ], [ -95.895697117623826, 29.305062086414079 ], [ -95.895866117745754, 29.305446086650512 ], [ -95.896180118099636, 29.30595808647157 ], [ -95.896186117821614, 29.30634208643734 ], [ -95.896161117452479, 29.30673308625337 ], [ -95.896029118082581, 29.307024086506843 ], [ -95.89580311777766, 29.307288086754461 ], [ -95.895458118114718, 29.307557087219848 ], [ -95.895169117220036, 29.307854086521051 ], [ -95.895000117776974, 29.30812908655458 ], [ -95.894717117293624, 29.308541086809765 ], [ -95.894473117830387, 29.308870087178278 ], [ -95.894128117351457, 29.309200087177082 ], [ -95.893707117135449, 29.309711086957112 ], [ -95.893438117794346, 29.309959087562756 ], [ -95.893017117117708, 29.310404087214128 ], [ -95.892760117463112, 29.310942087773594 ], [ -95.892710117364686, 29.311343087240747 ], [ -95.892728117283966, 29.31186008774479 ], [ -95.892753117507581, 29.312058087335998 ], [ -95.892860116887363, 29.312377087799344 ], [ -95.893248117311799, 29.312932087642512 ], [ -95.893634117385517, 29.313610087812631 ], [ -95.893836117083794, 29.313853087746054 ], [ -95.893947117877048, 29.314274087828093 ], [ -95.894118117233958, 29.314640087927806 ], [ -95.894475118007762, 29.314985088732481 ], [ -95.895077117596514, 29.315196087999258 ], [ -95.895609118298751, 29.315236087994261 ], [ -95.896537118610212, 29.31508008787463 ], [ -95.897149118533846, 29.314875088353279 ], [ -95.897718118427676, 29.314524087875402 ], [ -95.898272118443145, 29.314387087618464 ], [ -95.898639119308129, 29.3144180880292 ], [ -95.899122118947417, 29.314617088459496 ], [ -95.89967211882778, 29.315106088054325 ], [ -95.899930119481809, 29.315335088162051 ], [ -95.900501119478676, 29.315687088314565 ], [ -95.900744119711121, 29.315762088330168 ], [ -95.901160119748909, 29.315890088657728 ], [ -95.901929119488784, 29.316000088207328 ], [ -95.903304119900596, 29.316650087950357 ], [ -95.903814120389185, 29.317014088723553 ], [ -95.904194120522149, 29.317129088144778 ], [ -95.904358119919422, 29.317179088484494 ], [ -95.904598120483683, 29.317228088103377 ], [ -95.905091121076381, 29.317237088330497 ], [ -95.90602312111146, 29.316955088532669 ], [ -95.906348121280104, 29.316907087935459 ], [ -95.906594121307933, 29.31692108810951 ], [ -95.907796121609422, 29.317284088312565 ], [ -95.908992121722392, 29.317764088334489 ], [ -95.90970512225627, 29.31793908853744 ], [ -95.910996122385413, 29.318157088454402 ], [ -95.911519121813825, 29.318366088335882 ], [ -95.911887122557829, 29.318385088075559 ], [ -95.91275212293597, 29.31861008804837 ], [ -95.913693123272978, 29.318548088855263 ], [ -95.914613122911163, 29.318655088847532 ], [ -95.915354123100656, 29.319042088483112 ], [ -95.91593512310277, 29.319225088171983 ], [ -95.916613123532372, 29.319373088155171 ], [ -95.917004123565874, 29.319693088906774 ], [ -95.917221123913961, 29.319999088644529 ], [ -95.917376124320626, 29.32037208838209 ], [ -95.91780512452452, 29.321875088854735 ], [ -95.918681123800724, 29.323051088763549 ], [ -95.918931124086328, 29.323584089559095 ], [ -95.918984124107808, 29.324267088958656 ], [ -95.918933124790911, 29.32542008925914 ], [ -95.919004124178088, 29.325773089625606 ], [ -95.919399124779204, 29.326277089788732 ], [ -95.920013124271961, 29.326858089897168 ], [ -95.92063212471821, 29.32738608993937 ], [ -95.921544124880313, 29.328060090256187 ], [ -95.922213125123392, 29.328647090010168 ], [ -95.922383125578861, 29.328814089868921 ], [ -95.922771125696585, 29.329384090226913 ], [ -95.922892125382873, 29.329331090194813 ], [ -95.923012125771521, 29.329278090479576 ], [ -95.92338812534129, 29.329454090627937 ], [ -95.92357012569606, 29.329504089912493 ], [ -95.923809126096572, 29.3295860905796 ], [ -95.923965125832723, 29.329630090367594 ], [ -95.924542126224694, 29.329713090796876 ], [ -95.924963125671951, 29.329696090380075 ], [ -95.925464126726112, 29.329696090773027 ], [ -95.926104126155423, 29.329526090048102 ], [ -95.926631126722654, 29.329438090419963 ], [ -95.927227126366304, 29.329295090251183 ], [ -95.927691127332508, 29.329125089784508 ], [ -95.928168127012995, 29.328993089696993 ], [ -95.92849512736565, 29.328999090206516 ], [ -95.928696126822828, 29.328977090368269 ], [ -95.928978127127365, 29.328972089789527 ], [ -95.929254127501878, 29.32894408972097 ], [ -95.929549127089402, 29.328873090111028 ], [ -95.929850126914246, 29.328818089767591 ], [ -95.93052112741249, 29.328653089676923 ], [ -95.93160012742905, 29.328483089603758 ], [ -95.932033128127344, 29.328483089423077 ], [ -95.932403127944923, 29.328510090208617 ], [ -95.932691127822224, 29.328565090000538 ], [ -95.932942127797915, 29.328631090156442 ], [ -95.933268127867066, 29.328774089884327 ], [ -95.934379128381593, 29.329307089521198 ], [ -95.934460128496013, 29.329406090102424 ], [ -95.934749129016254, 29.329642090084032 ], [ -95.934924129160223, 29.329719090072288 ], [ -95.935232128436112, 29.329895090122715 ], [ -95.93541412895452, 29.330044090145936 ], [ -95.93563912919187, 29.330192089845578 ], [ -95.936016129128234, 29.3303400900115 ], [ -95.936386128605861, 29.330351090469645 ], [ -95.936794129407687, 29.330324089870341 ], [ -95.936988129461966, 29.330280090482788 ], [ -95.9371761288985, 29.330203090328055 ], [ -95.937327129450949, 29.330159090004951 ], [ -95.937477129156548, 29.330142090214043 ], [ -95.93786012953872, 29.330219089723379 ], [ -95.938243129888889, 29.330346089889424 ], [ -95.938744129979028, 29.330774089946125 ], [ -95.939033129352666, 29.331055090508006 ], [ -95.939459129690164, 29.331286089930618 ], [ -95.939886130370326, 29.331588090503608 ], [ -95.940212130249193, 29.331703090529448 ], [ -95.940363130243782, 29.331731089934511 ], [ -95.940589130191142, 29.331725090174942 ], [ -95.940708130056805, 29.331698090657142 ], [ -95.940833130179428, 29.33160409055909 ], [ -95.940996129981087, 29.331527090478978 ], [ -95.941266130142012, 29.331511089890384 ], [ -95.941592130675033, 29.331505089869832 ], [ -95.94175513008291, 29.331533090140127 ], [ -95.941950130333211, 29.331654089758732 ], [ -95.942056130593897, 29.331764090050012 ], [ -95.942201130148078, 29.331841090461715 ], [ -95.942419130771611, 29.331878090292783 ], [ -95.94255713117326, 29.331883090151038 ], [ -95.942720130341726, 29.3318780902183 ], [ -95.942921130827742, 29.331889090492247 ], [ -95.943705130653939, 29.332120089836909 ], [ -95.943981131575143, 29.332186089967401 ], [ -95.944320130792008, 29.332208090556332 ], [ -95.944734131481383, 29.332323089830879 ], [ -95.945054131208721, 29.33254809019083 ], [ -95.945367131506131, 29.332697090272248 ], [ -95.945869131913909, 29.332878090013502 ], [ -95.946051131365962, 29.332999090064092 ], [ -95.946459131949879, 29.333224089905706 ], [ -95.946817131483527, 29.333438090461019 ], [ -95.947174132206001, 29.333746090584814 ], [ -95.947369132368507, 29.334103090542349 ], [ -95.947795131947103, 29.334466090800944 ], [ -95.948266132346319, 29.334823090968559 ], [ -95.948743132256055, 29.334988090953949 ], [ -95.9491881321552, 29.33517509100902 ], [ -95.949470132400819, 29.335323090718884 ], [ -95.949878132924809, 29.335065090657924 ], [ -95.950311133159261, 29.3348840901924 ], [ -95.951026132641459, 29.33447709002861 ], [ -95.95165913299391, 29.334180090093703 ], [ -95.952280133409232, 29.33397608999276 ], [ -95.952537132902719, 29.333971090237238 ], [ -95.952970133199273, 29.334026090481828 ], [ -95.953516133668089, 29.334212090476019 ], [ -95.953817133966282, 29.33434209043121 ], [ -95.953873133884429, 29.334366090470294 ], [ -95.954256134237113, 29.334564089952924 ], [ -95.954482133666602, 29.334795090125244 ], [ -95.9548581341367, 29.334987090799263 ], [ -95.955298133806849, 29.335152090148995 ], [ -95.955674133715149, 29.33517409078517 ], [ -95.955925133806574, 29.335146090524105 ], [ -95.956213134295467, 29.335080090438652 ], [ -95.956696134623201, 29.334899090769532 ], [ -95.957223134432354, 29.334772090022078 ], [ -95.957857134609483, 29.334750090425654 ], [ -95.958032134662034, 29.334756090086938 ], [ -95.958446135176175, 29.33481109059446 ], [ -95.95887913467007, 29.334981090479538 ], [ -95.959607134904928, 29.335135090031535 ], [ -95.96010213575984, 29.335151090082366 ], [ -95.960447135506897, 29.335145090270892 ], [ -95.960830135278428, 29.335101090076776 ], [ -95.961244135759301, 29.335013089846662 ], [ -95.961827136177163, 29.334793090327494 ], [ -95.962536136163308, 29.334667090291191 ], [ -95.963032136468215, 29.334595089730009 ], [ -95.963315135995956, 29.334589090378792 ], [ -95.963363136035625, 29.334581089730563 ], [ -95.963389136270138, 29.334587089898214 ], [ -95.963866135825825, 29.334578089893892 ], [ -95.96440513636513, 29.334540090344738 ], [ -95.965045137046417, 29.334518090277559 ], [ -95.965353136833144, 29.334496090369857 ], [ -95.965754136844524, 29.334408090229481 ], [ -95.965911136372668, 29.334358089736945 ], [ -95.966111136412565, 29.334265090281622 ], [ -95.966481136521807, 29.334144090201416 ], [ -95.967178137183566, 29.333786090020698 ], [ -95.967485136861526, 29.333583089441412 ], [ -95.967830137647269, 29.333429090115398 ], [ -95.968056137530368, 29.333258089490418 ], [ -95.968275137260406, 29.332890089266641 ], [ -95.968400137359481, 29.332741089972433 ], [ -95.968519137627709, 29.33262008975894 ], [ -95.968657136903943, 29.332450089190601 ], [ -95.968852137681907, 29.332181088971538 ], [ -95.968971137521223, 29.331895088924334 ], [ -95.969015137114383, 29.331752089245807 ], [ -95.969109137915211, 29.331252089105487 ], [ -95.969146137212519, 29.331164089351905 ], [ -95.969159137804326, 29.331026089145933 ], [ -95.96915913788051, 29.33092708911331 ], [ -95.969115137019173, 29.330730088891027 ], [ -95.969108137668343, 29.330499088970967 ], [ -95.969114137019389, 29.330152089191969 ], [ -95.96910213749328, 29.329966088523868 ], [ -95.969051137729437, 29.329619089242033 ], [ -95.969076137236854, 29.329438089155857 ], [ -95.969114137329242, 29.329301089138664 ], [ -95.969177137801239, 29.329207089058293 ], [ -95.969371137422158, 29.329059088420127 ], [ -95.969578137384147, 29.32886108888529 ], [ -95.969860137384956, 29.328674088326789 ], [ -95.969923137434193, 29.328641088634537 ], [ -95.970186137222569, 29.32860208876042 ], [ -95.970494137606522, 29.328591088448491 ], [ -95.970707137743403, 29.328596088635521 ], [ -95.970977137746971, 29.328739088432627 ], [ -95.971328137510199, 29.328959089027371 ], [ -95.971761138214916, 29.329206088494175 ], [ -95.972213137932684, 29.329420088275572 ], [ -95.972564138689691, 29.329558089033728 ], [ -95.972708138306118, 29.329657088643579 ], [ -95.972840138102811, 29.329712088557297 ], [ -95.973016138036584, 29.329755088816448 ], [ -95.973254138301641, 29.329761088882666 ], [ -95.973448138524972, 29.329788089101001 ], [ -95.973743138941316, 29.329849088692981 ], [ -95.973957138997847, 29.329937088409501 ], [ -95.974396139067835, 29.330140088873502 ], [ -95.974609138352335, 29.330244088979921 ], [ -95.974822139187211, 29.330387089039093 ], [ -95.975036138570189, 29.330568088980307 ], [ -95.975230139482676, 29.330777089310168 ], [ -95.975381138699433, 29.330991089023083 ], [ -95.975607138600552, 29.331382089280627 ], [ -95.975764138763864, 29.331579089246056 ], [ -95.976052139142737, 29.331744088659526 ], [ -95.976284138883855, 29.331925089100864 ], [ -95.976473139653336, 29.332057089304765 ], [ -95.97667313942398, 29.332156088762719 ], [ -95.977088139406661, 29.332145089129298 ], [ -95.977351139153768, 29.332079089499302 ], [ -95.977508139570517, 29.332013089343558 ], [ -95.97772713987105, 29.331897089309429 ], [ -95.978072139539861, 29.331776088837358 ], [ -95.978361139348479, 29.331633089008243 ], [ -95.978768140348762, 29.331402089012407 ], [ -95.978981140293243, 29.331298088588046 ], [ -95.979596140134802, 29.33109408883961 ], [ -95.979784140486871, 29.331083089133209 ], [ -95.979960140156265, 29.331045088391431 ], [ -95.980606140309149, 29.3310280891647 ], [ -95.980938140152475, 29.331039089025072 ], [ -95.981264140844388, 29.331264088829844 ], [ -95.981384140964835, 29.331418089131589 ], [ -95.981434140132762, 29.331550088618044 ], [ -95.981434140956907, 29.331665089055498 ], [ -95.981409140830038, 29.331918088914996 ], [ -95.981365141051768, 29.332149089151031 ], [ -95.981227140818632, 29.332369089193719 ], [ -95.981083140360312, 29.332512089337076 ], [ -95.980876140752684, 29.332622088647721 ], [ -95.980494140090087, 29.332748089056423 ], [ -95.980318140470644, 29.3327980890225 ], [ -95.980105140699607, 29.33280308912639 ], [ -95.979904140373975, 29.332782088948758 ], [ -95.979735140608767, 29.332732088749957 ], [ -95.97953414016456, 29.33265508883273 ], [ -95.979201140094517, 29.332546089437667 ], [ -95.97900113997413, 29.332502089312573 ], [ -95.978888140087946, 29.332502088968369 ], [ -95.978831139961031, 29.332562088747238 ], [ -95.978825139476129, 29.332639089528769 ], [ -95.978769139846648, 29.332826089209984 ], [ -95.978788140481001, 29.333002089002189 ], [ -95.979058139848135, 29.33345808899055 ], [ -95.979340139813189, 29.333612089421234 ], [ -95.979773140545348, 29.333919089374906 ], [ -95.979974140447183, 29.334079089740619 ], [ -95.980344140236724, 29.334232089206072 ], [ -95.980563140210734, 29.33438608921103 ], [ -95.980727140172959, 29.33459508904533 ], [ -95.981216140981061, 29.335128089641859 ], [ -95.98131714040673, 29.335381089314136 ], [ -95.981348140490141, 29.335557089229916 ], [ -95.981354141098606, 29.335716089698412 ], [ -95.981329140456722, 29.33587508929353 ], [ -95.981298140238664, 29.335991089788529 ], [ -95.981054140790164, 29.336310089645966 ], [ -95.980427140879357, 29.3367280895833 ], [ -95.980276140304923, 29.336772089681759 ], [ -95.979862140871859, 29.336827089559907 ], [ -95.979235140163851, 29.336827090209479 ], [ -95.979003139910319, 29.336849089926961 ], [ -95.978783140339672, 29.336959089726118 ], [ -95.978300140445, 29.337245090410978 ], [ -95.978125139794187, 29.337405090329224 ], [ -95.977893140005222, 29.337597090332455 ], [ -95.977793139734402, 29.337745090262509 ], [ -95.977724140381667, 29.338026090364558 ], [ -95.977724139904794, 29.338680090121962 ], [ -95.977768140214948, 29.338751090760955 ], [ -95.977824139968135, 29.338883090181039 ], [ -95.97788713964006, 29.338971090363092 ], [ -95.978226140412374, 29.339295090452278 ], [ -95.978496140109286, 29.339526090611365 ], [ -95.978960140149184, 29.339713090342336 ], [ -95.979682140009942, 29.339960090309166 ], [ -95.980083140165533, 29.340081090702856 ], [ -95.981219140804001, 29.340223091022303 ], [ -95.981495141416971, 29.340212090761877 ], [ -95.981802141201413, 29.340173090628667 ], [ -95.982210141092636, 29.340074090786956 ], [ -95.98251714166274, 29.340019090208308 ], [ -95.982950141016786, 29.339920090183835 ], [ -95.983858141217226, 29.339491090624687 ], [ -95.98439214204582, 29.339249090399647 ], [ -95.984668142102407, 29.339139090376325 ], [ -95.984900141596015, 29.339100089913192 ], [ -95.985120142113956, 29.339078090377541 ], [ -95.985503141480422, 29.339095090140912 ], [ -95.985797142388563, 29.339089090108331 ], [ -95.986456141782483, 29.339001090147764 ], [ -95.986682142729777, 29.338913089978615 ], [ -95.986813141937162, 29.338786089729677 ], [ -95.986926142004791, 29.338632090159685 ], [ -95.987171141974812, 29.338209089910112 ], [ -95.987490142514673, 29.337753089539703 ], [ -95.987823142124142, 29.337335089446238 ], [ -95.988199142597594, 29.336928089834167 ], [ -95.988738142276631, 29.336406089250257 ], [ -95.988939142221525, 29.336268089607557 ], [ -95.989647142758244, 29.335855089347884 ], [ -95.990387142548087, 29.335553089314242 ], [ -95.990920142738346, 29.335459089456105 ], [ -95.991152143205142, 29.335454089725321 ], [ -95.991943143430191, 29.335492089157704 ], [ -95.992375143624514, 29.335557089164901 ], [ -95.992727143211155, 29.335579089627139 ], [ -95.99294014393638, 29.335640089076332 ], [ -95.993222144199422, 29.335749089568012 ], [ -95.993800144398037, 29.335947089010691 ], [ -95.994207143977889, 29.336161088957034 ], [ -95.994264144449033, 29.336167089035222 ], [ -95.994791143749751, 29.336529089828243 ], [ -95.995230144750892, 29.336848089590958 ], [ -95.995695144214181, 29.336990089702915 ], [ -95.995808144504849, 29.337033089679508 ], [ -95.996146144565884, 29.337160089772727 ], [ -95.99668614446756, 29.337292089417826 ], [ -95.997319144504104, 29.337517089637927 ], [ -95.997683144728143, 29.33760508947838 ], [ -95.997909145217449, 29.337709089373675 ], [ -95.998330145140059, 29.337830089291241 ], [ -95.998625145636311, 29.337978089798852 ], [ -95.999020144896662, 29.338154089991484 ], [ -95.999428145232955, 29.338264089962006 ], [ -96.00000514547051, 29.338390089574133 ], [ -96.000605146018245, 29.338549089487618 ], [ -96.00106214600369, 29.338808089281276 ], [ -96.001188146347744, 29.338912089936596 ], [ -96.001276146227198, 29.339006089490592 ], [ -96.001357145722793, 29.339138089531641 ], [ -96.001520146169355, 29.339600089589293 ], [ -96.00169514624713, 29.340001089811445 ], [ -96.001789146549697, 29.340133090100139 ], [ -96.002021146374489, 29.340408089778297 ], [ -96.002115146206833, 29.340474090051082 ], [ -96.002209146058803, 29.3405230895948 ], [ -96.002347146641782, 29.340578089663115 ], [ -96.002548146222324, 29.340639089915204 ], [ -96.002717146226274, 29.340650090446566 ], [ -96.002993146828601, 29.340628089881207 ], [ -96.003144146997144, 29.340606089676569 ], [ -96.003294146067603, 29.340601090042803 ], [ -96.003564146466431, 29.340623090276083 ], [ -96.004530146920004, 29.340794089691748 ], [ -96.004850146887179, 29.340871089989896 ], [ -96.005195146929353, 29.340986089889299 ], [ -96.005465146837764, 29.341141090228419 ], [ -96.005809147267911, 29.34137708971781 ], [ -96.005985146748586, 29.341515090397525 ], [ -96.006117147641177, 29.341652090209301 ], [ -96.006217147565678, 29.341784090002495 ], [ -96.006417147178482, 29.342141090552936 ], [ -96.00652414694369, 29.34230609034006 ], [ -96.006706147959534, 29.34250409014836 ], [ -96.006844147342875, 29.342570090016785 ], [ -96.006969147792134, 29.342598089910553 ], [ -96.007201147880139, 29.342614090011566 ], [ -96.007433147247809, 29.34260409004753 ], [ -96.007496147887537, 29.342609090661067 ], [ -96.007578147531618, 29.342576090509219 ], [ -96.007816148073289, 29.342411090391572 ], [ -96.008789148287008, 29.341565090175447 ], [ -96.009360147793799, 29.341181090138086 ], [ -96.009630147840539, 29.341011089592079 ], [ -96.009981148264202, 29.340835089537475 ], [ -96.010315148695369, 29.340632089804469 ], [ -96.010383148553373, 29.33989208967806 ], [ -96.010388147832487, 29.339831089665179 ], [ -96.011149148188807, 29.33834608917909 ], [ -96.011942149034425, 29.336802089000699 ], [ -96.012255149002087, 29.33591408867688 ], [ -96.012549148570315, 29.335205088223923 ], [ -96.013125148559013, 29.333816088439338 ], [ -96.01358814880922, 29.332614087985981 ], [ -96.014144149263643, 29.331194087498485 ], [ -96.015240149540517, 29.328450087045457 ], [ -96.015934149439502, 29.32671308648726 ], [ -96.016059148809134, 29.326399086889285 ], [ -96.016646148912727, 29.324930086231266 ], [ -96.016772149453374, 29.324615086612418 ], [ -96.017017149230483, 29.324001086304079 ], [ -96.017437149414235, 29.322952085736286 ], [ -96.017561149456199, 29.322643085446067 ], [ -96.018922150071162, 29.319266084733435 ], [ -96.018972149921055, 29.319122084842579 ], [ -96.021516149457511, 29.312763083826031 ], [ -96.021664150241506, 29.312392083733098 ], [ -96.021777150135279, 29.312116083492171 ], [ -96.022370149633716, 29.310669083204722 ], [ -96.022806150228348, 29.309603083246444 ], [ -96.022942150621375, 29.309269082736538 ], [ -96.02486915035729, 29.304256081964013 ], [ -96.02493815034218, 29.304155081559799 ], [ -96.026976151202703, 29.299031081158589 ], [ -96.027722151351398, 29.297073079838938 ], [ -96.027772150595325, 29.296941080521218 ], [ -96.027892151176331, 29.29663807980587 ], [ -96.029040151352973, 29.293750079791341 ], [ -96.029309150982968, 29.292988079179342 ], [ -96.029712151513081, 29.291947079241172 ], [ -96.031541151120649, 29.287217077899758 ], [ -96.031634150975975, 29.286979078375577 ], [ -96.03178815185089, 29.286579078151433 ], [ -96.033496151370343, 29.282164077103754 ], [ -96.035532152124063, 29.28388307748774 ], [ -96.036120151991938, 29.284379077432142 ], [ -96.036532152219664, 29.284724077497547 ], [ -96.036992152847418, 29.28512007769066 ], [ -96.039545153179787, 29.287317077440004 ], [ -96.040008153486568, 29.287711077916704 ], [ -96.041220153746664, 29.288743078100136 ], [ -96.041297154155657, 29.288809078123109 ], [ -96.041869154590501, 29.289297078226465 ], [ -96.042228154694399, 29.289606078659503 ], [ -96.04322115476252, 29.290486078602889 ], [ -96.043476154483002, 29.290702078582232 ], [ -96.044360154389736, 29.291449078452906 ], [ -96.044595154844828, 29.291297078346425 ], [ -96.044902154975347, 29.29113807837005 ], [ -96.045961155271371, 29.290587078645164 ], [ -96.049728156279713, 29.288551077365661 ], [ -96.054758157663727, 29.285947077157218 ], [ -96.054975157792654, 29.285835076905823 ], [ -96.055263156888728, 29.28567907667394 ], [ -96.05584915739432, 29.285362077216231 ], [ -96.056407157156272, 29.28508607646792 ], [ -96.056702157279744, 29.28494007696305 ], [ -96.058859157833155, 29.283806076879898 ], [ -96.062408159476348, 29.281940076265418 ], [ -96.063818159278696, 29.281200075924016 ], [ -96.064913159352287, 29.280625075523233 ], [ -96.065470159873911, 29.280340075499435 ], [ -96.065896159560594, 29.280122075489381 ], [ -96.061093157896352, 29.272169074128296 ], [ -96.06722815990517, 29.26916307311004 ], [ -96.07349216103708, 29.2660940723752 ], [ -96.075207161100977, 29.265254072034057 ], [ -96.082685163477294, 29.261639071059346 ], [ -96.088421165160355, 29.258865070732938 ], [ -96.095836166753813, 29.255250069049474 ], [ -96.097059166390778, 29.254653069748759 ], [ -96.097735166384098, 29.254322069118455 ], [ -96.104977168790569, 29.250803068349001 ], [ -96.106232168549425, 29.250230068116533 ], [ -96.106380169108164, 29.250532068201167 ], [ -96.106523168876649, 29.250809068541749 ], [ -96.106728169427328, 29.250606067903362 ], [ -96.106916168929729, 29.250358068061932 ], [ -96.106991169351261, 29.250274068401481 ], [ -96.107199169308927, 29.250212067860012 ], [ -96.107871168725936, 29.249577067856453 ], [ -96.109022169778143, 29.248168067290788 ], [ -96.109021169227688, 29.24676006774683 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1606, "Tract": "48481740700", "Area_SqMi": 90.037881082611364, "total_2009": 887, "total_2010": 778, "total_2011": 893, "total_2012": 1107, "total_2013": 1155, "total_2014": 3305, "total_2015": 1325, "total_2016": 970, "total_2017": 1019, "total_2018": 1108, "total_2019": 1529, "total_2020": 923, "age1": 210, "age2": 496, "age3": 302, "earn1": 200, "earn2": 290, "earn3": 518, "naics_s01": 120, "naics_s02": 56, "naics_s03": 15, "naics_s04": 94, "naics_s05": 85, "naics_s06": 321, "naics_s07": 25, "naics_s08": 45, "naics_s09": 0, "naics_s10": 42, "naics_s11": 17, "naics_s12": 18, "naics_s13": 0, "naics_s14": 21, "naics_s15": 5, "naics_s16": 17, "naics_s17": 25, "naics_s18": 78, "naics_s19": 24, "naics_s20": 0, "race1": 914, "race2": 56, "race3": 13, "race4": 17, "race5": 2, "race6": 6, "ethnicity1": 608, "ethnicity2": 400, "edu1": 196, "edu2": 253, "edu3": 238, "edu4": 111, "Shape_Length": 258002.87349681972, "Shape_Area": 2510102023.20962, "total_2021": 1031, "total_2022": 1008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.26988520754314, 29.196741051713648 ], [ -96.269167207420395, 29.195837051677071 ], [ -96.268886208103439, 29.195502051216284 ], [ -96.268753207423103, 29.195343051468267 ], [ -96.268445207863081, 29.194990051617008 ], [ -96.26799720715573, 29.194444051265478 ], [ -96.267305207197495, 29.193588051603619 ], [ -96.266615207061776, 29.192812051079304 ], [ -96.265917206923547, 29.191945050783215 ], [ -96.265268206296383, 29.191155050949646 ], [ -96.264627206348223, 29.190336050530817 ], [ -96.263996206559113, 29.189562050632066 ], [ -96.263161205482035, 29.188527050741762 ], [ -96.263081206443459, 29.188428050127936 ], [ -96.262861206175998, 29.188155050324681 ], [ -96.262555205858661, 29.187776050049042 ], [ -96.261907205525404, 29.186971050316487 ], [ -96.261687205611082, 29.186648050065028 ], [ -96.26136620504613, 29.18606504998721 ], [ -96.261179205829862, 29.185543049515175 ], [ -96.261050205460506, 29.184805049718282 ], [ -96.260970205616744, 29.183482049361444 ], [ -96.260916204598345, 29.181366049003415 ], [ -96.260904205206714, 29.181046049151096 ], [ -96.260899204850546, 29.180921049228015 ], [ -96.260897205500683, 29.180857048643411 ], [ -96.260874205112032, 29.180053049057936 ], [ -96.260863205484853, 29.179663048490241 ], [ -96.260831205248408, 29.178527048428666 ], [ -96.260816204452908, 29.177968048649824 ], [ -96.260809205242424, 29.17769404854003 ], [ -96.260796205145766, 29.177181048296827 ], [ -96.26078220531295, 29.176310048067435 ], [ -96.260775204594438, 29.175844047474481 ], [ -96.260771204452553, 29.175612048234747 ], [ -96.260769205241075, 29.175547047554119 ], [ -96.260756204852129, 29.174640047554355 ], [ -96.260714204433839, 29.172732047659185 ], [ -96.260628204681694, 29.171420047028658 ], [ -96.260655204093283, 29.170982046512616 ], [ -96.260643204956807, 29.170623046668378 ], [ -96.260637204621972, 29.170426047044632 ], [ -96.260639204568022, 29.169964046421367 ], [ -96.260616204155085, 29.169587046716597 ], [ -96.260576204336076, 29.167861046210586 ], [ -96.260524203885993, 29.166927046085618 ], [ -96.260509204159519, 29.166386045743465 ], [ -96.260518204125518, 29.16547004539327 ], [ -96.260501204066074, 29.164731045274454 ], [ -96.260436203920733, 29.161826044864476 ], [ -96.260429203737203, 29.161743044856777 ], [ -96.260422204038306, 29.161337045335738 ], [ -96.2604132037185, 29.160772044746782 ], [ -96.260336204263297, 29.158201043904736 ], [ -96.258665203444806, 29.158229043970035 ], [ -96.256871203314333, 29.158258044706933 ], [ -96.254664202745417, 29.158294044904117 ], [ -96.252026202041876, 29.158347044189579 ], [ -96.251383201706588, 29.158365044901604 ], [ -96.25024120164322, 29.158350044994524 ], [ -96.248243200694532, 29.158419044418647 ], [ -96.246900200408689, 29.158441044984382 ], [ -96.245331200084735, 29.158466045230288 ], [ -96.244054199947016, 29.158487045126254 ], [ -96.243904199632325, 29.158490045064397 ], [ -96.243676200227199, 29.158494044850496 ], [ -96.240536198962602, 29.158546045089889 ], [ -96.238628198435649, 29.158578044832005 ], [ -96.236606198127234, 29.158608045112565 ], [ -96.235230197762959, 29.158628044950703 ], [ -96.229690195936428, 29.158753045683888 ], [ -96.229640196445018, 29.158754045725477 ], [ -96.227276195376689, 29.158807045511136 ], [ -96.226192195021923, 29.158827045386296 ], [ -96.224871194693591, 29.1588510458595 ], [ -96.22100319404224, 29.158921046041467 ], [ -96.218963193252875, 29.158973045652719 ], [ -96.216700192687895, 29.15901204574832 ], [ -96.215824192670866, 29.159028045674944 ], [ -96.21552619262134, 29.159033046198495 ], [ -96.212585192413783, 29.159074045897487 ], [ -96.211789191296745, 29.159088045866245 ], [ -96.210725191494873, 29.159100045647278 ], [ -96.20781819027539, 29.159167046484512 ], [ -96.200323188483381, 29.159339046141973 ], [ -96.19877318871616, 29.159363046822165 ], [ -96.198288188590027, 29.15937104624831 ], [ -96.196704187625343, 29.159395046991683 ], [ -96.194179186921389, 29.159434046975406 ], [ -96.19273918717046, 29.159432046793114 ], [ -96.192481186877799, 29.159436047101408 ], [ -96.191168186449985, 29.159457046401126 ], [ -96.188738186223759, 29.159497046539023 ], [ -96.185886184990935, 29.159534047263062 ], [ -96.184718184717042, 29.159542046689715 ], [ -96.184568184796035, 29.159543047446629 ], [ -96.183083184854127, 29.159581047317516 ], [ -96.181734184300836, 29.159615047313228 ], [ -96.179114183848881, 29.159681046843129 ], [ -96.177618183495142, 29.159707047171562 ], [ -96.169328180551474, 29.159869047352515 ], [ -96.167195180202967, 29.159911047472523 ], [ -96.166779180573428, 29.159919047508481 ], [ -96.161577179005249, 29.160017047665683 ], [ -96.161260178883879, 29.160067048312545 ], [ -96.161108178959751, 29.16017404815253 ], [ -96.161057179089354, 29.160644047886844 ], [ -96.160810179132881, 29.160742048425078 ], [ -96.160371178824647, 29.160750048289618 ], [ -96.160017178973149, 29.160756048078841 ], [ -96.159447178232213, 29.160767047641855 ], [ -96.155441177452786, 29.160827048632264 ], [ -96.155280177083327, 29.16086004863763 ], [ -96.155122177205484, 29.160892048361855 ], [ -96.150247176389129, 29.154242046791079 ], [ -96.147275174879113, 29.150249046407612 ], [ -96.145515174677755, 29.147885045781358 ], [ -96.14241417318685, 29.143679044687815 ], [ -96.140817173221151, 29.14147604513068 ], [ -96.139916172686242, 29.14029004495292 ], [ -96.139612173110322, 29.139878044465906 ], [ -96.1371181721819, 29.136498044029405 ], [ -96.136728172105123, 29.135998043797741 ], [ -96.13588617169124, 29.134916043928694 ], [ -96.135799171548953, 29.134795043292296 ], [ -96.133637170389349, 29.131808042970718 ], [ -96.133395170166338, 29.131474043215814 ], [ -96.130878169869206, 29.128080042007038 ], [ -96.128385169120222, 29.124666041336006 ], [ -96.12644716830556, 29.122012041629873 ], [ -96.126543168209636, 29.121889041342627 ], [ -96.126621168164846, 29.121702041200027 ], [ -96.126187168698621, 29.121561040904762 ], [ -96.125705168016069, 29.121339040899791 ], [ -96.125422168474728, 29.121187041479345 ], [ -96.125126168250034, 29.120982041139492 ], [ -96.124897167820009, 29.120812041246964 ], [ -96.124625168308469, 29.120555041400831 ], [ -96.12434316784281, 29.120248040642931 ], [ -96.124115168255159, 29.11984604056298 ], [ -96.123656168041038, 29.119037040584182 ], [ -96.123565167938963, 29.118634040706628 ], [ -96.123451167864346, 29.115752040273797 ], [ -96.123369167851251, 29.112453039095321 ], [ -96.123258167148052, 29.107954038073856 ], [ -96.123125166687046, 29.102744037663271 ], [ -96.123133166343806, 29.102196037497297 ], [ -96.123134167161254, 29.102162036992805 ], [ -96.123051166634255, 29.098261036573309 ], [ -96.122993166519947, 29.095713036110126 ], [ -96.122896166389069, 29.091453034604701 ], [ -96.122691166123559, 29.082516032818759 ], [ -96.122687165831209, 29.082364033002854 ], [ -96.122630165804708, 29.08001403242276 ], [ -96.122438165442816, 29.071766031342911 ], [ -96.12240316493866, 29.07002503108853 ], [ -96.12230416568589, 29.069268030273523 ], [ -96.12213916565328, 29.068682030316566 ], [ -96.121786165585547, 29.067957030131435 ], [ -96.12090916495778, 29.066347029870389 ], [ -96.120491164232618, 29.065738029872541 ], [ -96.11996416413578, 29.065068029573943 ], [ -96.119168164582348, 29.063968029755731 ], [ -96.119136164376968, 29.063921029325179 ], [ -96.118662163910003, 29.064168029472334 ], [ -96.116732163616945, 29.065178030206379 ], [ -96.105391160541984, 29.071112031420412 ], [ -96.100045160163063, 29.073909032409212 ], [ -96.098096159271194, 29.074929032416872 ], [ -96.09775715891665, 29.075106032320502 ], [ -96.092461157601051, 29.077878033075972 ], [ -96.080987155298175, 29.083994035136659 ], [ -96.077115154655118, 29.086082035083084 ], [ -96.073439153859056, 29.088063036217786 ], [ -96.073390153671781, 29.088090035905193 ], [ -96.073356154051396, 29.088108035869915 ], [ -96.064573151158228, 29.092777036888343 ], [ -96.062397151009719, 29.09393503734124 ], [ -96.05215514884523, 29.099378038655697 ], [ -96.049934148255275, 29.100559039506745 ], [ -96.04986214773183, 29.100597039522796 ], [ -96.046461147289818, 29.102405039494037 ], [ -96.045203147449982, 29.103075039822414 ], [ -96.042515146974679, 29.104504040176447 ], [ -96.042251146761473, 29.104644039999418 ], [ -96.038976145877172, 29.106386040911698 ], [ -96.038813145172043, 29.106471041072847 ], [ -96.038650145160574, 29.106557041166479 ], [ -96.03882914543442, 29.106760040897107 ], [ -96.038939145437993, 29.106914041168459 ], [ -96.039376145913408, 29.107522041363566 ], [ -96.040315146602708, 29.108571040923913 ], [ -96.04038014606202, 29.108617041265372 ], [ -96.04120514628687, 29.109205041386716 ], [ -96.042231146727019, 29.110186041494522 ], [ -96.042829147078933, 29.111085041770249 ], [ -96.043100146499114, 29.111765041336703 ], [ -96.043176146784688, 29.11214904178625 ], [ -96.043357147447864, 29.112549042265499 ], [ -96.04366214767083, 29.11385304234139 ], [ -96.043812147626824, 29.114121042439653 ], [ -96.044313147700663, 29.114708042468546 ], [ -96.044670147954506, 29.115019042127464 ], [ -96.045204147575575, 29.115355042290773 ], [ -96.045540147604953, 29.1154890425248 ], [ -96.045858147450872, 29.115559042658901 ], [ -96.047123148561923, 29.115446042552854 ], [ -96.047450147944247, 29.115456042384885 ], [ -96.04842514882516, 29.115196042412329 ], [ -96.049026148431423, 29.115092041996817 ], [ -96.049498148248063, 29.115054042600871 ], [ -96.049895149221072, 29.115143042701792 ], [ -96.050412149060605, 29.115360041901898 ], [ -96.05102114931762, 29.115786042058865 ], [ -96.051564149328016, 29.116276042489947 ], [ -96.051666149123022, 29.116472042076833 ], [ -96.051964149160781, 29.116816042794294 ], [ -96.052129149717842, 29.117409042428999 ], [ -96.052131149079969, 29.118021043120969 ], [ -96.052001149950499, 29.11843604292574 ], [ -96.051576149158308, 29.118876043151353 ], [ -96.051110148878863, 29.119129042848044 ], [ -96.050136148968548, 29.119408043057849 ], [ -96.049232148672615, 29.119831043231727 ], [ -96.048469148603516, 29.120097043576827 ], [ -96.047966148311986, 29.120341043660982 ], [ -96.047005148568289, 29.121012043273389 ], [ -96.046672148276173, 29.12137804328724 ], [ -96.046366148580304, 29.12200804354357 ], [ -96.045705147929496, 29.123129043855727 ], [ -96.045355148210135, 29.124014043831277 ], [ -96.044701147638662, 29.126399044530011 ], [ -96.044174147868745, 29.128551045064341 ], [ -96.043713147416014, 29.130648045956622 ], [ -96.04352014797999, 29.131275046209158 ], [ -96.043359147753776, 29.131604045683439 ], [ -96.043294147404836, 29.13232304585912 ], [ -96.043226147608607, 29.132508046329722 ], [ -96.043154148282341, 29.132701046385762 ], [ -96.043218148004371, 29.133672046633347 ], [ -96.043181148377258, 29.134067046712389 ], [ -96.043389148160912, 29.135243046149803 ], [ -96.043532147678349, 29.135657046498721 ], [ -96.04373414827802, 29.135926046397344 ], [ -96.043819148538134, 29.136077046671481 ], [ -96.04459314879422, 29.137443047298408 ], [ -96.044857148754716, 29.137715046736144 ], [ -96.045199148063091, 29.138009047263903 ], [ -96.045838149086819, 29.138759046794302 ], [ -96.046111148590597, 29.139283047127481 ], [ -96.046246148717074, 29.13988304712429 ], [ -96.046243149286255, 29.140243047860732 ], [ -96.046141149349722, 29.140702047836303 ], [ -96.045747149184635, 29.141454047957833 ], [ -96.045562148478112, 29.141970047541413 ], [ -96.045275149048749, 29.142407047604827 ], [ -96.04515914897317, 29.14312104779426 ], [ -96.045001149252499, 29.143643047872999 ], [ -96.044987148898556, 29.143895048425879 ], [ -96.045060148853011, 29.144249048496029 ], [ -96.045384149340308, 29.144910048641076 ], [ -96.046292149015187, 29.147458048880328 ], [ -96.046395149336874, 29.14853504958128 ], [ -96.046491149183055, 29.148997049156023 ], [ -96.046486149226837, 29.149541049039925 ], [ -96.045964148906407, 29.152097049520648 ], [ -96.045926149245034, 29.153969050490122 ], [ -96.045654149846229, 29.155171050543874 ], [ -96.045400149455403, 29.155743050778884 ], [ -96.045280149544183, 29.155949050902517 ], [ -96.0450811494878, 29.156288050942234 ], [ -96.044428148957707, 29.157074050716233 ], [ -96.043683149343224, 29.157692051400009 ], [ -96.043050149373641, 29.158534051346997 ], [ -96.042848149186071, 29.158892051348783 ], [ -96.042248148922141, 29.159956051824597 ], [ -96.042190148389338, 29.160166051648137 ], [ -96.041990149143302, 29.160930051975733 ], [ -96.041966148754938, 29.161721052017 ], [ -96.042189148578359, 29.162489052431063 ], [ -96.042401148915033, 29.162844052595684 ], [ -96.042437148478413, 29.162904052119156 ], [ -96.042735149052859, 29.163249052704899 ], [ -96.043023149250558, 29.163505052309855 ], [ -96.043675149375886, 29.163879052715352 ], [ -96.044606150020201, 29.164258052750451 ], [ -96.046445150308926, 29.16476905222661 ], [ -96.047207149744168, 29.165123052479402 ], [ -96.047447150243016, 29.16536505265303 ], [ -96.047734150015671, 29.166002052703455 ], [ -96.047760150642333, 29.166469052760263 ], [ -96.047673150443558, 29.166709053279501 ], [ -96.04751715045245, 29.166963053246892 ], [ -96.046896150110939, 29.167681053552883 ], [ -96.04590415044477, 29.169260053423375 ], [ -96.045486150448255, 29.170030053641629 ], [ -96.045432149567276, 29.170458054071869 ], [ -96.045546150410345, 29.170987053882293 ], [ -96.045886149909151, 29.171477054076096 ], [ -96.046249150345133, 29.171768054332166 ], [ -96.04716915096553, 29.172240053732786 ], [ -96.048347150968894, 29.172664054182501 ], [ -96.048652150834457, 29.172843054455171 ], [ -96.049210150722431, 29.172966053982545 ], [ -96.050469150972489, 29.17388805429843 ], [ -96.052620152390517, 29.174688054501583 ], [ -96.053145152077562, 29.174821054637409 ], [ -96.053481151830226, 29.174942054417674 ], [ -96.055346152505166, 29.175136054811333 ], [ -96.056354152482257, 29.174996054247618 ], [ -96.05698315272997, 29.175019053903355 ], [ -96.057991153748745, 29.174836053871452 ], [ -96.059057153218845, 29.174535053747665 ], [ -96.060217153593698, 29.173867053526841 ], [ -96.060979153658707, 29.173250053596778 ], [ -96.062017154679083, 29.172361053330512 ], [ -96.062891154766248, 29.171800053244276 ], [ -96.065037155071238, 29.171627052933996 ], [ -96.065207155396692, 29.171674053113993 ], [ -96.065822154769748, 29.171664053587666 ], [ -96.066095154988361, 29.171738053649271 ], [ -96.066435155692446, 29.171992053394789 ], [ -96.066607155869775, 29.172619053102476 ], [ -96.066806155912559, 29.173013053416891 ], [ -96.067044155846787, 29.173207053630566 ], [ -96.067137155341712, 29.173367053376975 ], [ -96.067129155911076, 29.173832054145119 ], [ -96.066964155487057, 29.174238053436742 ], [ -96.066643156033209, 29.174657053715531 ], [ -96.066045155763348, 29.17529905385372 ], [ -96.065108155423374, 29.176698054359065 ], [ -96.064674155503951, 29.177672054725424 ], [ -96.064360155233473, 29.178643054661638 ], [ -96.064079155546665, 29.179851055349019 ], [ -96.063576155399943, 29.181926055144253 ], [ -96.063145154690687, 29.182777056019859 ], [ -96.063024155064468, 29.183121055860862 ], [ -96.062982155113914, 29.1834790554195 ], [ -96.063033155281687, 29.183908055772495 ], [ -96.063310155633545, 29.184470056268097 ], [ -96.063978155324946, 29.185333056651618 ], [ -96.064256155731201, 29.185598055873061 ], [ -96.064456155472683, 29.185723056229918 ], [ -96.065478155924581, 29.186092056080426 ], [ -96.065846155910037, 29.186110056460421 ], [ -96.066660156223975, 29.186019056584009 ], [ -96.067643156575087, 29.185989056458574 ], [ -96.068487156499657, 29.186142056080026 ], [ -96.069036156727378, 29.186385056556613 ], [ -96.069310156881386, 29.186554055857272 ], [ -96.069890157283155, 29.187208056801712 ], [ -96.070100156998194, 29.187791056349425 ], [ -96.070189157268686, 29.18825405698939 ], [ -96.070157157134062, 29.189336056423357 ], [ -96.070248157226303, 29.189610056457735 ], [ -96.070285157237123, 29.190185057160029 ], [ -96.070127157271671, 29.190553056788922 ], [ -96.070057156690311, 29.191015056939229 ], [ -96.070264157083798, 29.191364057563447 ], [ -96.070635157447796, 29.191792057652933 ], [ -96.070951157270102, 29.191833056959382 ], [ -96.072117157190974, 29.19217905727356 ], [ -96.072591157439348, 29.19239105737342 ], [ -96.074181158390815, 29.19275805755068 ], [ -96.075073158624974, 29.19302505782878 ], [ -96.076807159340888, 29.193544057533419 ], [ -96.077335159248591, 29.19361205777777 ], [ -96.077849159070723, 29.193739057763146 ], [ -96.078620159843751, 29.193824057579015 ], [ -96.078887159520008, 29.193917057064311 ], [ -96.079466159824477, 29.194257057781581 ], [ -96.079851159775288, 29.194581057277208 ], [ -96.080996159816706, 29.195755057980364 ], [ -96.081531160454418, 29.19639405754668 ], [ -96.082200160465149, 29.197301057755595 ], [ -96.083390160861782, 29.198495058545049 ], [ -96.084505161328494, 29.199504058070129 ], [ -96.085078161352399, 29.199968058600739 ], [ -96.086718161921098, 29.20101605877721 ], [ -96.087199161661033, 29.201219058974175 ], [ -96.088002162617045, 29.201653058360005 ], [ -96.088844162371657, 29.202391058668834 ], [ -96.09054416238375, 29.204004059301162 ], [ -96.091963163434087, 29.205097059592912 ], [ -96.092264163656225, 29.205201059291628 ], [ -96.092554163603921, 29.205400059748808 ], [ -96.093432164044557, 29.206439059242257 ], [ -96.093642163881299, 29.206749059905516 ], [ -96.093826163883236, 29.207151059307858 ], [ -96.094154163718059, 29.208265060353117 ], [ -96.094192163805076, 29.209734059777016 ], [ -96.094020164469427, 29.211024060440195 ], [ -96.09383916416094, 29.211912060680699 ], [ -96.093722163932355, 29.212219060498974 ], [ -96.093443164056595, 29.212617061162913 ], [ -96.09331316426632, 29.213070060941593 ], [ -96.093302164404733, 29.213573060813875 ], [ -96.093382164273137, 29.21418206077206 ], [ -96.093689163789421, 29.21496706102581 ], [ -96.094226164783947, 29.21602006119528 ], [ -96.094593164274031, 29.216583062047121 ], [ -96.094786164244056, 29.216821061289565 ], [ -96.095069164409423, 29.217170062083092 ], [ -96.095875164326628, 29.218460062042634 ], [ -96.096419165507399, 29.22000706196572 ], [ -96.096486164760989, 29.220469062692853 ], [ -96.096524165380998, 29.220727062797412 ], [ -96.096762165701691, 29.222166062663177 ], [ -96.096825165373772, 29.223175062451411 ], [ -96.097024165001059, 29.224241062991823 ], [ -96.097220165889084, 29.226287063825293 ], [ -96.097209165039501, 29.226719063914256 ], [ -96.097340165615691, 29.227169063620224 ], [ -96.097357165377218, 29.22774606404171 ], [ -96.097828165528412, 29.230199064387765 ], [ -96.098018165538576, 29.232064064761957 ], [ -96.09814016589408, 29.232704064972772 ], [ -96.098337165792202, 29.235077064958979 ], [ -96.098409165788439, 29.235321065272288 ], [ -96.098504166150988, 29.236219065941555 ], [ -96.098638166153464, 29.236931065335547 ], [ -96.098774166337478, 29.238258065546081 ], [ -96.098938166740666, 29.239035065654161 ], [ -96.09927716640955, 29.239349066504193 ], [ -96.099655166842936, 29.239561065956849 ], [ -96.100189166437559, 29.23956706622689 ], [ -96.101280167047037, 29.239389066072043 ], [ -96.102712167004213, 29.239272065727274 ], [ -96.103489167250075, 29.239332066015415 ], [ -96.104502167693894, 29.239624065831109 ], [ -96.106129168366436, 29.240720065720847 ], [ -96.106364168939464, 29.240970065959697 ], [ -96.106789168684656, 29.241249066658188 ], [ -96.107501169080209, 29.24199406661922 ], [ -96.108177168665435, 29.242462066589731 ], [ -96.108512169007085, 29.242816066927944 ], [ -96.108755169250003, 29.243570066413099 ], [ -96.108924169257477, 29.243469066530761 ], [ -96.109088169298985, 29.243470066594369 ], [ -96.109182169464347, 29.243465066349195 ], [ -96.109244169624333, 29.243443066709279 ], [ -96.109363169690013, 29.243349066746521 ], [ -96.109395168980626, 29.243360066441358 ], [ -96.109495169176228, 29.243437066507024 ], [ -96.10960816912818, 29.243552066222982 ], [ -96.109702169070815, 29.243602066507204 ], [ -96.109746169497186, 29.243613066338813 ], [ -96.109796169455322, 29.243607066652295 ], [ -96.110072169714357, 29.243695066250442 ], [ -96.110197169145579, 29.243756066590024 ], [ -96.110310169071028, 29.243937066571949 ], [ -96.110373169182623, 29.244003066400555 ], [ -96.110410169415374, 29.244080066810117 ], [ -96.110460169373908, 29.244151066852343 ], [ -96.110605169272546, 29.244289066992252 ], [ -96.110786170211838, 29.24442606720984 ], [ -96.111043169681594, 29.244552066746405 ], [ -96.111081170153355, 29.244607066970495 ], [ -96.111087169781058, 29.244651066979703 ], [ -96.11113116934456, 29.244706067203964 ], [ -96.111181170204858, 29.244723067079988 ], [ -96.111269169670564, 29.244690066620951 ], [ -96.11131316976018, 29.244690066820993 ], [ -96.111338170274365, 29.24472806642699 ], [ -96.111363169794103, 29.244882066438382 ], [ -96.111413169438137, 29.244943067076825 ], [ -96.111445170380847, 29.244965067194389 ], [ -96.111595170294038, 29.245030066578689 ], [ -96.112015170282916, 29.245322067108841 ], [ -96.11211616996026, 29.24557406668459 ], [ -96.112178169631065, 29.245679066956605 ], [ -96.112354169984698, 29.245822067215528 ], [ -96.112492170370203, 29.245976067406612 ], [ -96.112636170165686, 29.246108067415843 ], [ -96.11269216981978, 29.246201067387954 ], [ -96.112724170745594, 29.246278067126511 ], [ -96.112699170704559, 29.246404067573756 ], [ -96.112642169999276, 29.246547066867876 ], [ -96.112561170463863, 29.246910066976376 ], [ -96.112561170445503, 29.246949067428137 ], [ -96.11258016986848, 29.246981067194575 ], [ -96.112862170565094, 29.247130067451319 ], [ -96.112943170361987, 29.247152067668665 ], [ -96.113238170323811, 29.247152067569694 ], [ -96.113388170345345, 29.247163067684777 ], [ -96.113426170677585, 29.247273067103031 ], [ -96.113439170970864, 29.247377067230989 ], [ -96.1135081709578, 29.247421067218898 ], [ -96.113583170829614, 29.247426067548943 ], [ -96.113614170999938, 29.24742106763674 ], [ -96.113677171069938, 29.24734406687498 ], [ -96.1137021705416, 29.247234067559628 ], [ -96.113727170440598, 29.247229067701092 ], [ -96.113752170073766, 29.24731106763512 ], [ -96.113771170706073, 29.247338066843536 ], [ -96.113796170225399, 29.247360067337475 ], [ -96.113827170552696, 29.247366067364979 ], [ -96.113865170617331, 29.247360067206362 ], [ -96.1139021701524, 29.247415067450042 ], [ -96.113928171021129, 29.24749806743689 ], [ -96.113909170653386, 29.247525067199266 ], [ -96.114034170176836, 29.247915067721781 ], [ -96.114229170313124, 29.24837706721933 ], [ -96.114304170698446, 29.248476067482112 ], [ -96.114448171168604, 29.248520067330695 ], [ -96.114749170471015, 29.248646067476869 ], [ -96.114856170818868, 29.248635067786008 ], [ -96.114925171005439, 29.248641067565288 ], [ -96.115188170525116, 29.248630067431318 ], [ -96.115257171058047, 29.248641067447181 ], [ -96.115338170833056, 29.248701067411574 ], [ -96.115464171148773, 29.248745067524098 ], [ -96.115808170779346, 29.24876106786995 ], [ -96.115846171491924, 29.248800067147503 ], [ -96.115971171340206, 29.248888067608668 ], [ -96.116109171059122, 29.249020067432554 ], [ -96.116304171587032, 29.249141067924523 ], [ -96.116366171757804, 29.249174067539691 ], [ -96.116573171524124, 29.249245067710316 ], [ -96.116711170983109, 29.249344067847961 ], [ -96.116799171304194, 29.249437067469945 ], [ -96.116874171321157, 29.249481067222781 ], [ -96.117075171319698, 29.249531067858694 ], [ -96.117156171418912, 29.249608068036348 ], [ -96.117213171334029, 29.249723067658334 ], [ -96.117181171075302, 29.249827067319981 ], [ -96.117194171415719, 29.24991506749101 ], [ -96.117269171109996, 29.249987067426002 ], [ -96.117308171361884, 29.250003067986409 ], [ -96.117314171415345, 29.250074067975731 ], [ -96.117289171481048, 29.250173067877466 ], [ -96.117289171188048, 29.25022806773746 ], [ -96.117302171944687, 29.250277067502452 ], [ -96.117333171805655, 29.250310067925881 ], [ -96.117396171339422, 29.250343067881758 ], [ -96.117521172043496, 29.250371067464958 ], [ -96.117627171823656, 29.250365067754611 ], [ -96.117690171438539, 29.250382068103338 ], [ -96.11773417149395, 29.250409067375312 ], [ -96.1179411714498, 29.25066206806563 ], [ -96.118010172120691, 29.250733067775499 ], [ -96.118198171801183, 29.250783068154309 ], [ -96.118317171985296, 29.250794067710196 ], [ -96.118718171827609, 29.250898068143297 ], [ -96.118875172438081, 29.250969068152347 ], [ -96.119063172577256, 29.251074068044293 ], [ -96.119201172494556, 29.251167067720829 ], [ -96.119270172294875, 29.251238067631878 ], [ -96.119289171680578, 29.251293068180765 ], [ -96.11927617245729, 29.251381067770364 ], [ -96.119239171632827, 29.251475068254205 ], [ -96.119170171768957, 29.251596068167245 ], [ -96.119133172615363, 29.251711067611229 ], [ -96.119051172538036, 29.25187106765798 ], [ -96.118845172451785, 29.252344068425703 ], [ -96.118707171914636, 29.252558068306691 ], [ -96.118632171848816, 29.252657068333043 ], [ -96.118462172439507, 29.252794068090267 ], [ -96.118400172445064, 29.252860068331511 ], [ -96.118343171764636, 29.252948068214007 ], [ -96.118306172244559, 29.253053068446452 ], [ -96.11831217203401, 29.253190068140455 ], [ -96.118306171784937, 29.253317068542668 ], [ -96.118337172276412, 29.253421067998232 ], [ -96.118388172355907, 29.253663068296603 ], [ -96.118488171831416, 29.253954068101049 ], [ -96.118519172171048, 29.254020068107277 ], [ -96.118595171785287, 29.254136068785996 ], [ -96.118664171628112, 29.254212068442712 ], [ -96.118764172390883, 29.25430006827213 ], [ -96.119040172001561, 29.254504068353381 ], [ -96.119128171884924, 29.254559068653315 ], [ -96.119184172693011, 29.254625068891094 ], [ -96.119228171831111, 29.254696068341286 ], [ -96.119310172191092, 29.254965068541576 ], [ -96.119360172178233, 29.255053068947394 ], [ -96.11952317227454, 29.255471068719164 ], [ -96.119605172030816, 29.255603068751999 ], [ -96.119843172235434, 29.255905068878437 ], [ -96.11995017286317, 29.255982069151152 ], [ -96.120295172466029, 29.256108068621629 ], [ -96.120495173092479, 29.256130068854958 ], [ -96.120834172818448, 29.256086068467102 ], [ -96.121103172900234, 29.256146068639321 ], [ -96.121536172994581, 29.256272068471016 ], [ -96.121674172505166, 29.256300069280101 ], [ -96.1218811728546, 29.256300068779908 ], [ -96.122376173455308, 29.256272068924588 ], [ -96.122608173384478, 29.256278068433492 ], [ -96.122708172878419, 29.256299068957851 ], [ -96.122827173295107, 29.256338069221314 ], [ -96.122984172889133, 29.256431068497605 ], [ -96.123197173754662, 29.256657068539109 ], [ -96.123404173104504, 29.256788068572245 ], [ -96.123511172981395, 29.256799068895109 ], [ -96.123592173143919, 29.256794068443178 ], [ -96.124100173307554, 29.256722069295204 ], [ -96.124332173965826, 29.256705068530792 ], [ -96.124413173254155, 29.256711068414134 ], [ -96.124626173934146, 29.256793068496599 ], [ -96.12470817411689, 29.256859069143704 ], [ -96.124858173397655, 29.257024068784286 ], [ -96.125151173576512, 29.257173068756821 ], [ -96.125176173763862, 29.257316069106452 ], [ -96.125213174002695, 29.257382068603061 ], [ -96.125276174188627, 29.257398068778748 ], [ -96.12533817373108, 29.257398068684054 ], [ -96.125483173863358, 29.25742606929435 ], [ -96.125545174274578, 29.257486069227401 ], [ -96.125602174045852, 29.257624069327353 ], [ -96.125714173998546, 29.257794068728984 ], [ -96.125752173600162, 29.25788806919083 ], [ -96.125802174591428, 29.258069068752356 ], [ -96.125958174195134, 29.258311068720541 ], [ -96.126015173700026, 29.25835506951007 ], [ -96.12627217388409, 29.258405069514257 ], [ -96.126335173835059, 29.258421069165426 ], [ -96.126422173850472, 29.258460068771427 ], [ -96.126617174635186, 29.258504069159283 ], [ -96.127068174815676, 29.258509069119555 ], [ -96.127287174930672, 29.25847706891533 ], [ -96.127394174870133, 29.258433069090259 ], [ -96.127519174338232, 29.258356069001167 ], [ -96.127914174167273, 29.258054069224883 ], [ -96.128811175325808, 29.257323068976167 ], [ -96.129175175426084, 29.257219068461414 ], [ -96.129726174553966, 29.257164068778827 ], [ -96.1307481749256, 29.257164069024125 ], [ -96.131387175307637, 29.257500068623155 ], [ -96.131626175620198, 29.257599069208592 ], [ -96.131757176091767, 29.257610069199735 ], [ -96.131920175257306, 29.257610068728123 ], [ -96.132108175276613, 29.257522068399805 ], [ -96.132485176143433, 29.257209069113639 ], [ -96.132848175518035, 29.256973068694485 ], [ -96.132917175582705, 29.256945068179306 ], [ -96.133005175767508, 29.256962068875112 ], [ -96.133769175918573, 29.257204068488136 ], [ -96.133845175961966, 29.257221068812786 ], [ -96.134164175779517, 29.257331068473423 ], [ -96.134246176595681, 29.257375068691051 ], [ -96.134371175791614, 29.257474068304948 ], [ -96.134640176112967, 29.257809068775888 ], [ -96.134691176494684, 29.257864068572491 ], [ -96.134769176412917, 29.257919069049457 ], [ -96.134791176226599, 29.257935069115771 ], [ -96.134885176039916, 29.25794706891935 ], [ -96.134966176874471, 29.257925068416441 ], [ -96.135393176623523, 29.257765069133448 ], [ -96.135481176728973, 29.257776068621578 ], [ -96.135512176634165, 29.257793068832456 ], [ -96.135618177067244, 29.257925068634062 ], [ -96.135643176349035, 29.257991069035338 ], [ -96.135650176439782, 29.258035068353646 ], [ -96.135643176200162, 29.258106068606285 ], [ -96.135612176193817, 29.258238068737285 ], [ -96.135631176423388, 29.258271068676876 ], [ -96.13574317673212, 29.258321068362587 ], [ -96.135825176984639, 29.258343068624463 ], [ -96.135881176446901, 29.258348068692278 ], [ -96.135988176854951, 29.258469068968683 ], [ -96.136263176677403, 29.259041068969353 ], [ -96.136282176823102, 29.259107068554648 ], [ -96.136282177038765, 29.259217068631859 ], [ -96.136263176663832, 29.259316068699789 ], [ -96.13616917637863, 29.259563069327715 ], [ -96.136150177008929, 29.259580068708846 ], [ -96.136131176694903, 29.259942069386835 ], [ -96.136131176349508, 29.260283069483904 ], [ -96.136162176460161, 29.2603270688248 ], [ -96.136213177325445, 29.26037106897493 ], [ -96.136363176499884, 29.260459069225689 ], [ -96.136432176808057, 29.260514069437178 ], [ -96.136469177248415, 29.260564068932361 ], [ -96.136563176565886, 29.260773069475025 ], [ -96.136613176893746, 29.261102069125958 ], [ -96.136689176784358, 29.261229069586392 ], [ -96.136820176603237, 29.26130606936654 ], [ -96.136977176715519, 29.26135006971856 ], [ -96.137071176910979, 29.261361069642842 ], [ -96.137334177662211, 29.261350069455478 ], [ -96.137503177022268, 29.261361069808206 ], [ -96.137629177431108, 29.261378068940033 ], [ -96.137685177513461, 29.261400069481144 ], [ -96.137735177724423, 29.261438069659768 ], [ -96.137804177186823, 29.26158606965992 ], [ -96.137879176883217, 29.261784069416215 ], [ -96.138017177812912, 29.262191069300659 ], [ -96.13802917757468, 29.262312069505622 ], [ -96.138123177853018, 29.262527069262422 ], [ -96.138261177565951, 29.262900069894837 ], [ -96.138330177483937, 29.26297206939034 ], [ -96.138399177689763, 29.263016069501301 ], [ -96.138769177681951, 29.263098069546494 ], [ -96.138926177141144, 29.263115070033187 ], [ -96.138976177306958, 29.263110069259337 ], [ -96.139095178165235, 29.263055069441215 ], [ -96.139226178159191, 29.26296106954825 ], [ -96.139496177613637, 29.262791069914183 ], [ -96.139621177883583, 29.262736069263592 ], [ -96.139766177606901, 29.262637069128864 ], [ -96.139822178191608, 29.262566069156524 ], [ -96.139860178269458, 29.262478069942407 ], [ -96.139885178357588, 29.262384069445474 ], [ -96.139929177745259, 29.262302069355783 ], [ -96.139985177952212, 29.262252069045211 ], [ -96.140061177947459, 29.262214069803747 ], [ -96.140130178181607, 29.262209069037215 ], [ -96.140192178231615, 29.262231069013861 ], [ -96.140249177616298, 29.262275069835571 ], [ -96.14030517837287, 29.262363069588442 ], [ -96.140343177837266, 29.262516069832486 ], [ -96.140368177641818, 29.262577069768003 ], [ -96.140405178258121, 29.262610069568002 ], [ -96.140512178019762, 29.262615069170661 ], [ -96.140574178486872, 29.26260406926372 ], [ -96.140656178023576, 29.26260406933589 ], [ -96.140725178493369, 29.262577069360422 ], [ -96.140737178039501, 29.262561069150689 ], [ -96.140737178176408, 29.262462069132511 ], [ -96.140700178188794, 29.262357069585782 ], [ -96.140719177781406, 29.261989069152513 ], [ -96.140819177614759, 29.261434069668066 ], [ -96.140838177615805, 29.261362069229051 ], [ -96.140926178142195, 29.261285069433839 ], [ -96.141001177611784, 29.261247068982218 ], [ -96.141128177820235, 29.261264069086135 ], [ -96.14116417815741, 29.261269069560402 ], [ -96.141296177661786, 29.261346069153817 ], [ -96.141402178052388, 29.261428069428064 ], [ -96.141597178321192, 29.261456069021854 ], [ -96.141685178082753, 29.261478069638599 ], [ -96.14179417819939, 29.261453069209793 ], [ -96.142017177859003, 29.261401069490571 ], [ -96.142117178795672, 29.261434068798845 ], [ -96.142161178628172, 29.261484069531011 ], [ -96.142205178550739, 29.261572069411656 ], [ -96.142236178390462, 29.261720069434091 ], [ -96.142305178040743, 29.261923069165455 ], [ -96.142355177946143, 29.26198906960142 ], [ -96.142468178911784, 29.262050069457509 ], [ -96.142537178279866, 29.26206606896136 ], [ -96.14256817817585, 29.262061069478072 ], [ -96.142606178896031, 29.262039068935024 ], [ -96.142681178956423, 29.261951069331516 ], [ -96.142700178237476, 29.26191306931311 ], [ -96.142687178426044, 29.261863069628205 ], [ -96.14271917870704, 29.261682069703049 ], [ -96.142788178081048, 29.261599069092828 ], [ -96.142857178749338, 29.261566069409902 ], [ -96.142951178901029, 29.261489069594617 ], [ -96.143070178787681, 29.261462069224603 ], [ -96.143158179117691, 29.261495068772703 ], [ -96.143321179186685, 29.261594069578052 ], [ -96.143396178260033, 29.261671068927637 ], [ -96.143515178689185, 29.261819069154193 ], [ -96.143671178846461, 29.261891069235631 ], [ -96.143759178777628, 29.261891069579509 ], [ -96.1440161787215, 29.261979069335023 ], [ -96.144330178663381, 29.262238069620466 ], [ -96.14459317918039, 29.262501069495592 ], [ -96.144718178889889, 29.262545069474641 ], [ -96.144831179548206, 29.262535069362915 ], [ -96.145136179313596, 29.262482069036203 ], [ -96.145213178796539, 29.262469069341527 ], [ -96.145972179450169, 29.262123069110359 ], [ -96.146003179438353, 29.262018068843986 ], [ -96.146148179660585, 29.261952068818342 ], [ -96.146298179301169, 29.26190806890358 ], [ -96.146380179488347, 29.261875069422878 ], [ -96.146492179071558, 29.261776068971038 ], [ -96.146561179655194, 29.261689068919445 ], [ -96.14658717959675, 29.261634068932864 ], [ -96.146630179740555, 29.261447069389735 ], [ -96.146750179727718, 29.261287069453452 ], [ -96.146856180074664, 29.261227068611699 ], [ -96.14699417944, 29.261183069315361 ], [ -96.147082179249281, 29.261167069032936 ], [ -96.1472891795664, 29.26115006918166 ], [ -96.147540179705686, 29.261051069255874 ], [ -96.147784179773623, 29.260919069303853 ], [ -96.147853179828218, 29.260908068645609 ], [ -96.147909180232958, 29.26090806869535 ], [ -96.14807317969499, 29.260941068524559 ], [ -96.148417179799907, 29.261057068552084 ], [ -96.148586180216356, 29.261084068652607 ], [ -96.148649180505174, 29.261063068541816 ], [ -96.148743179584656, 29.261002068574005 ], [ -96.148850180359204, 29.260914069315035 ], [ -96.149176180116839, 29.260562068683473 ], [ -96.149333180008441, 29.260502068616127 ], [ -96.14950817999086, 29.2604910685465 ], [ -96.149803179816033, 29.260524068525321 ], [ -96.150097180281293, 29.260574068462869 ], [ -96.150423180539036, 29.26065106844295 ], [ -96.150630180216297, 29.260684068796834 ], [ -96.151226180429276, 29.260722068348475 ], [ -96.151458181054764, 29.260690068883136 ], [ -96.151665181166919, 29.260728068888998 ], [ -96.151740181137384, 29.260767068876252 ], [ -96.151878180795734, 29.260877069210665 ], [ -96.151978180534883, 29.260942068732749 ], [ -96.152247181222421, 29.261075069246917 ], [ -96.152341180648392, 29.261097069071724 ], [ -96.152460180987731, 29.261097068626647 ], [ -96.152893181001247, 29.261003068865264 ], [ -96.152975181385955, 29.261014068505872 ], [ -96.153050181494933, 29.261113068378265 ], [ -96.15313318091799, 29.261342068563664 ], [ -96.153194181258286, 29.261509068505998 ], [ -96.153200181351039, 29.261553068835543 ], [ -96.153169180850227, 29.261586069131631 ], [ -96.153131181635644, 29.261608069055281 ], [ -96.152968180743159, 29.261641068999811 ], [ -96.152918181519411, 29.261663068991655 ], [ -96.152886180770849, 29.261712068856362 ], [ -96.152893181561382, 29.261987068989054 ], [ -96.152880181334453, 29.26217406909381 ], [ -96.152918181616812, 29.262229069284906 ], [ -96.152987180935725, 29.262262069057339 ], [ -96.153388181208229, 29.262312068791989 ], [ -96.153469181600002, 29.262339068644238 ], [ -96.153538181477089, 29.262383068913149 ], [ -96.153601181215578, 29.262455069403774 ], [ -96.153739181402216, 29.262707068683113 ], [ -96.153776181832512, 29.262795069450515 ], [ -96.153783181438854, 29.262861069154784 ], [ -96.153776181686922, 29.262982069069928 ], [ -96.153751181196313, 29.263021068917993 ], [ -96.153676181093502, 29.263054068871199 ], [ -96.153620181624504, 29.263054069482717 ], [ -96.153488180882192, 29.263032069045902 ], [ -96.153438181637824, 29.263037068945664 ], [ -96.153400181626125, 29.263048069062854 ], [ -96.153369180920279, 29.263087068923063 ], [ -96.15337518143069, 29.263213069600859 ], [ -96.153419181738741, 29.263351069069135 ], [ -96.153519180928868, 29.263493069138701 ], [ -96.153601181096278, 29.263565069022423 ], [ -96.153644181656119, 29.263581069170474 ], [ -96.153795181030887, 29.263609069199685 ], [ -96.15396418182894, 29.263669069195942 ], [ -96.1540141816388, 29.263702069066412 ], [ -96.154064181427003, 29.263763069077569 ], [ -96.154121181744458, 29.263878069722544 ], [ -96.154146181934195, 29.263972069206204 ], [ -96.154227181421831, 29.264412069519611 ], [ -96.15430218127139, 29.264654069552552 ], [ -96.154371182052685, 29.264780069682008 ], [ -96.15447118203187, 29.2650050693628 ], [ -96.154528181993953, 29.265082069833465 ], [ -96.154590181830883, 29.265137069821872 ], [ -96.154641181349817, 29.265203069602521 ], [ -96.154678181996829, 29.265280069291716 ], [ -96.154716181838339, 29.26542306962676 ], [ -96.154716181935143, 29.265500069592168 ], [ -96.154735182158348, 29.265528069880247 ], [ -96.154835182264506, 29.265599069317965 ], [ -96.15501718232656, 29.265627069512821 ], [ -96.155086182001625, 29.265649070069866 ], [ -96.155129182112091, 29.265676069566229 ], [ -96.155292181982801, 29.265830069959421 ], [ -96.155549181588555, 29.265940069309281 ], [ -96.155645182008371, 29.266063069457498 ], [ -96.155769182402082, 29.266220069779035 ], [ -96.157519182054457, 29.265135069231558 ], [ -96.158880182298645, 29.264291069561708 ], [ -96.160198182763963, 29.263472069357121 ], [ -96.160686182794663, 29.263169069285155 ], [ -96.161938183325134, 29.262392068816126 ], [ -96.163590184136012, 29.261365068948777 ], [ -96.163674183822181, 29.261313068599851 ], [ -96.165495184698798, 29.260190068576104 ], [ -96.166204184006034, 29.259753068223858 ], [ -96.174458186669838, 29.254606066369174 ], [ -96.175916186710921, 29.253697066901083 ], [ -96.176455186529878, 29.253364066266265 ], [ -96.177300186578009, 29.252829066742684 ], [ -96.177718187455142, 29.252565066607488 ], [ -96.181204187727403, 29.250393065321056 ], [ -96.182699188353467, 29.249461065034485 ], [ -96.182733188001976, 29.249474065846567 ], [ -96.185489188999085, 29.247763064923401 ], [ -96.188162189035978, 29.246103064873363 ], [ -96.188930190038121, 29.245714064461822 ], [ -96.189647189284514, 29.245406064038008 ], [ -96.190248189662611, 29.2451850642442 ], [ -96.191221189981306, 29.244881063956647 ], [ -96.191320189890121, 29.24485106444968 ], [ -96.191780189905998, 29.244713064121711 ], [ -96.193326190814702, 29.244493064323443 ], [ -96.19459819090757, 29.24443906421439 ], [ -96.195278191257344, 29.244390063656446 ], [ -96.196018191723894, 29.2443700642844 ], [ -96.196300191248653, 29.244332064179961 ], [ -96.19682219135882, 29.244261064016015 ], [ -96.198040191352987, 29.243980063747184 ], [ -96.198952191613174, 29.243657063957311 ], [ -96.199462192376942, 29.243424063778939 ], [ -96.19956619263057, 29.243376063737937 ], [ -96.199702192241219, 29.243314063320486 ], [ -96.199742192311589, 29.243296063827739 ], [ -96.200432192615466, 29.24284206366621 ], [ -96.201098192366942, 29.242350063742581 ], [ -96.201165192644311, 29.24230006362232 ], [ -96.202115192961344, 29.241620063324621 ], [ -96.20263619280351, 29.241209063333809 ], [ -96.202822192638081, 29.241061062829921 ], [ -96.202885192582414, 29.241012062848156 ], [ -96.203620193574508, 29.240335062466151 ], [ -96.204216193263392, 29.239573062325949 ], [ -96.204260193205002, 29.23950206263763 ], [ -96.204709193081499, 29.238773062970132 ], [ -96.205620193615616, 29.236722062553309 ], [ -96.205911193276762, 29.236142061770021 ], [ -96.206190193481561, 29.23565606213651 ], [ -96.206409193237761, 29.235325061767554 ], [ -96.206791193799276, 29.234871061412768 ], [ -96.206963194116796, 29.23467606147155 ], [ -96.207258193490873, 29.234397061332693 ], [ -96.207662193427126, 29.234053061529416 ], [ -96.2079291940464, 29.233853061526972 ], [ -96.208736194367532, 29.23330806109772 ], [ -96.211406194553106, 29.231639060928988 ], [ -96.213441194733988, 29.230384060959164 ], [ -96.216015196051472, 29.228796059725827 ], [ -96.217761196086983, 29.227725059919749 ], [ -96.21869019620641, 29.22714605942824 ], [ -96.220922196937806, 29.225760059368707 ], [ -96.221227197078306, 29.225566058921945 ], [ -96.223122197081025, 29.224364058848359 ], [ -96.224010197318435, 29.22381105882792 ], [ -96.224997197759478, 29.223234058363676 ], [ -96.22582819794502, 29.222786058581555 ], [ -96.227454198124207, 29.22210405799548 ], [ -96.231593199032559, 29.220366058297721 ], [ -96.234164200105198, 29.219287057400742 ], [ -96.234631200517853, 29.219079057154584 ], [ -96.23496619990776, 29.21890805772793 ], [ -96.235098199959708, 29.21884105712612 ], [ -96.235722199755415, 29.218419057743393 ], [ -96.235997200140531, 29.218201056981474 ], [ -96.236299200526673, 29.217954056902773 ], [ -96.236554200912479, 29.217705057313506 ], [ -96.236760200768089, 29.217480057344542 ], [ -96.236966200050603, 29.217231057451396 ], [ -96.237187200699481, 29.216985056988154 ], [ -96.237311200504593, 29.216816056632023 ], [ -96.237436200939214, 29.216579056659036 ], [ -96.237588200380955, 29.216306057123756 ], [ -96.237895201184728, 29.215713056529065 ], [ -96.237968200598417, 29.215571056314012 ], [ -96.2383222010548, 29.214863056192794 ], [ -96.238590200807621, 29.214697056334334 ], [ -96.238674201165551, 29.214645056093055 ], [ -96.239252200774629, 29.21428805648527 ], [ -96.240226200923104, 29.21372205587657 ], [ -96.241664201349295, 29.212814056253208 ], [ -96.241791201903339, 29.21273505608205 ], [ -96.241992201457592, 29.212609056247402 ], [ -96.242310201395242, 29.212410055590226 ], [ -96.248205202954452, 29.208727055242839 ], [ -96.24908420372816, 29.208165054898199 ], [ -96.249759203558256, 29.207734054751576 ], [ -96.250416203874551, 29.207315054298004 ], [ -96.250489203467353, 29.207268054821135 ], [ -96.250633203119222, 29.207183054730752 ], [ -96.251124203658449, 29.206896054697282 ], [ -96.251353203732833, 29.20676205408958 ], [ -96.252132204200763, 29.206515054858645 ], [ -96.252916204402609, 29.206414054191324 ], [ -96.253588204030692, 29.206287054632245 ], [ -96.254406204660768, 29.206156054641355 ], [ -96.254910204838836, 29.205991053897744 ], [ -96.255437204964409, 29.205672054117311 ], [ -96.257148204626944, 29.204636053805686 ], [ -96.258342205181833, 29.203912053654324 ], [ -96.259566206125228, 29.203171053412177 ], [ -96.260487205658947, 29.202564052942552 ], [ -96.261391206006266, 29.202016053161987 ], [ -96.26161820601898, 29.201879052748584 ], [ -96.261842205729479, 29.201743053550814 ], [ -96.262242205859863, 29.201501053488638 ], [ -96.263791206848353, 29.200529052969419 ], [ -96.264765207214339, 29.19992005221825 ], [ -96.265799207174538, 29.19928005266571 ], [ -96.266809206891693, 29.198645052484924 ], [ -96.267849207838907, 29.198014051824103 ], [ -96.268833207525191, 29.197406052122631 ], [ -96.26988520754314, 29.196741051713648 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1607, "Tract": "48481740200", "Area_SqMi": 11.150702531619638, "total_2009": 1361, "total_2010": 1595, "total_2011": 1724, "total_2012": 1824, "total_2013": 1743, "total_2014": 1907, "total_2015": 1944, "total_2016": 1667, "total_2017": 1660, "total_2018": 1600, "total_2019": 1482, "total_2020": 1505, "age1": 344, "age2": 769, "age3": 342, "earn1": 518, "earn2": 446, "earn3": 491, "naics_s01": 6, "naics_s02": 0, "naics_s03": 0, "naics_s04": 49, "naics_s05": 7, "naics_s06": 69, "naics_s07": 205, "naics_s08": 0, "naics_s09": 0, "naics_s10": 50, "naics_s11": 2, "naics_s12": 33, "naics_s13": 0, "naics_s14": 6, "naics_s15": 1, "naics_s16": 737, "naics_s17": 0, "naics_s18": 262, "naics_s19": 26, "naics_s20": 2, "race1": 954, "race2": 386, "race3": 8, "race4": 87, "race5": 1, "race6": 19, "ethnicity1": 999, "ethnicity2": 456, "edu1": 218, "edu2": 328, "edu3": 366, "edu4": 199, "Shape_Length": 84942.623712680768, "Shape_Area": 310862501.96343815, "total_2021": 1457, "total_2022": 1455 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.129340177684398, 29.330413083997737 ], [ -96.129556177903197, 29.329851084000865 ], [ -96.127050177531203, 29.328216083338045 ], [ -96.126790177009823, 29.328071083102543 ], [ -96.126422176779926, 29.327867083061484 ], [ -96.125429176510735, 29.327434083677435 ], [ -96.122186175785842, 29.326355082840298 ], [ -96.121502176356543, 29.32614808275677 ], [ -96.12126717551277, 29.326077083290791 ], [ -96.120534176134285, 29.325856083275706 ], [ -96.11545517443993, 29.324257083256601 ], [ -96.114657174210436, 29.32403508285763 ], [ -96.114422173964826, 29.323974082655813 ], [ -96.114079174262429, 29.323886082864949 ], [ -96.11342417369751, 29.323669083129875 ], [ -96.11268217387537, 29.323419082495182 ], [ -96.112067173722124, 29.323212082988423 ], [ -96.11176817306206, 29.323124082652566 ], [ -96.111108173052259, 29.322929082897538 ], [ -96.10859817270871, 29.322189082625467 ], [ -96.10773917236493, 29.322126082625008 ], [ -96.107302172647479, 29.322094083089077 ], [ -96.106546172363878, 29.322077083223927 ], [ -96.105488171819303, 29.321821083228201 ], [ -96.103813171539002, 29.321318083175186 ], [ -96.103502170898096, 29.321223082835449 ], [ -96.102769171095545, 29.320999082564853 ], [ -96.10261517042467, 29.320951082637396 ], [ -96.10216017101844, 29.320813082662479 ], [ -96.101074170272781, 29.320486082702317 ], [ -96.100446169995379, 29.320270082207713 ], [ -96.10033516981143, 29.320235082658698 ], [ -96.099887170117512, 29.320094082271201 ], [ -96.09932217015411, 29.319917083011724 ], [ -96.099197170091003, 29.32025208262144 ], [ -96.09896617012528, 29.320819082635101 ], [ -96.098711170125398, 29.321461083115331 ], [ -96.098547170422947, 29.321873082797072 ], [ -96.098447169539838, 29.32213908320076 ], [ -96.098275170362726, 29.322603083024152 ], [ -96.098180169498747, 29.322859082919742 ], [ -96.09805116986341, 29.323172083122262 ], [ -96.097955169310794, 29.323415083625317 ], [ -96.097811169460456, 29.323775083039543 ], [ -96.097583169603524, 29.324312083275551 ], [ -96.097341170101728, 29.324946083586468 ], [ -96.097133169242653, 29.325529083763833 ], [ -96.097031169997976, 29.325813084295941 ], [ -96.096238169185426, 29.325597084226739 ], [ -96.094474168577818, 29.32511608391739 ], [ -96.09397716912035, 29.326514084426471 ], [ -96.093651168497246, 29.327264084400429 ], [ -96.093549168435842, 29.327540084543216 ], [ -96.093344169050368, 29.328069084592514 ], [ -96.093157169159596, 29.32860908463654 ], [ -96.093062168758493, 29.32880008438212 ], [ -96.092834168944819, 29.329428084531614 ], [ -96.092545168442086, 29.330106084762171 ], [ -96.092259168423084, 29.330828085324466 ], [ -96.091732168678902, 29.332182085780268 ], [ -96.091353168160609, 29.333099085558825 ], [ -96.09117016824591, 29.333576085958143 ], [ -96.091001168822146, 29.334015086149538 ], [ -96.090644167997681, 29.33498808567844 ], [ -96.090282168613754, 29.335910086141975 ], [ -96.090060168713492, 29.336467086259379 ], [ -96.089885168076435, 29.33690708604248 ], [ -96.089768167991849, 29.337215086207394 ], [ -96.089741168066723, 29.337286086574597 ], [ -96.089689168313498, 29.337425086465355 ], [ -96.089464168118781, 29.338017086827982 ], [ -96.08915216830853, 29.338787086822343 ], [ -96.088898168665835, 29.339414087165515 ], [ -96.088521167701828, 29.340355087413013 ], [ -96.088451168493222, 29.340565087448031 ], [ -96.088432168410336, 29.340613087107549 ], [ -96.088053168541691, 29.341586087204956 ], [ -96.087611168112517, 29.342801087464167 ], [ -96.087406168439344, 29.343336087973295 ], [ -96.087255168078428, 29.343706087658521 ], [ -96.087069167830435, 29.344162087689345 ], [ -96.0865511675226, 29.345464088196529 ], [ -96.084263167391029, 29.344820087813734 ], [ -96.084008167631367, 29.344739088383474 ], [ -96.083693167165137, 29.344638088208956 ], [ -96.083200166891544, 29.344482088547604 ], [ -96.0822841664138, 29.344191088452281 ], [ -96.081885166638557, 29.344064087686053 ], [ -96.080036166342751, 29.343514088449776 ], [ -96.078257165914891, 29.342985088119129 ], [ -96.076900165394179, 29.342582088165656 ], [ -96.076675165742756, 29.34326008840338 ], [ -96.076137165516812, 29.344917088674549 ], [ -96.075725165141691, 29.346190088479759 ], [ -96.075560164969403, 29.346698088981444 ], [ -96.075278165625321, 29.347568088757445 ], [ -96.075143165282341, 29.347951088732763 ], [ -96.073889165375363, 29.351502089894424 ], [ -96.072826164584853, 29.354512090522398 ], [ -96.072470164257524, 29.355521090914451 ], [ -96.071488164793308, 29.358180091218987 ], [ -96.069495164565353, 29.363600092659421 ], [ -96.069205164357086, 29.364390092869254 ], [ -96.069017164514932, 29.364901093088864 ], [ -96.068848164721459, 29.365361093127976 ], [ -96.068681164075471, 29.365815093088777 ], [ -96.068277164114278, 29.366914093528553 ], [ -96.068059164310526, 29.367505093760041 ], [ -96.066477164246336, 29.371413094405732 ], [ -96.066069163840638, 29.372434094759331 ], [ -96.065850163903733, 29.372981094183881 ], [ -96.064881163805552, 29.375266095018535 ], [ -96.064171163389801, 29.377158095356375 ], [ -96.063933163422348, 29.377785095729841 ], [ -96.06237916366085, 29.381932096458893 ], [ -96.060972163627653, 29.385687097158158 ], [ -96.060342163216703, 29.387368098109665 ], [ -96.061744163329863, 29.388039097937749 ], [ -96.062017163477108, 29.388268098140905 ], [ -96.062688163445159, 29.388830097727443 ], [ -96.063168163450513, 29.389231098024425 ], [ -96.063725163728876, 29.38949009834343 ], [ -96.065701165031015, 29.390080097862604 ], [ -96.066084164286877, 29.39019909819184 ], [ -96.067360165043667, 29.390578098257951 ], [ -96.067808164689154, 29.390711097942024 ], [ -96.068956165401005, 29.391053098383679 ], [ -96.069445165582593, 29.391196097865087 ], [ -96.069688165912893, 29.391267098270063 ], [ -96.070041165641868, 29.391370098137536 ], [ -96.070329166257451, 29.391454098323212 ], [ -96.070715165362529, 29.391568098241528 ], [ -96.071002166278092, 29.391652098483195 ], [ -96.071238166165429, 29.391722098523239 ], [ -96.071826166487085, 29.391839098125356 ], [ -96.073632166407833, 29.39239709790548 ], [ -96.073895166280508, 29.391965098342084 ], [ -96.074055167076907, 29.391727098217238 ], [ -96.074468166672304, 29.391031098361061 ], [ -96.075436166855212, 29.389468097929505 ], [ -96.076184167615637, 29.388243097042633 ], [ -96.078901167289175, 29.383791096243154 ], [ -96.079441167606504, 29.382915095901499 ], [ -96.079901167356596, 29.382095095800373 ], [ -96.080114167886066, 29.381668095886258 ], [ -96.080124168042857, 29.381646095568929 ], [ -96.0803771675196, 29.381100095416624 ], [ -96.080583167950039, 29.380591095815724 ], [ -96.08164516836662, 29.377970095063908 ], [ -96.081888168200379, 29.378042094742689 ], [ -96.082228168287216, 29.37813809461873 ], [ -96.082352168725862, 29.378173094850769 ], [ -96.082691168637609, 29.378268095066577 ], [ -96.086198168951711, 29.379410094845138 ], [ -96.085459169413397, 29.381279095340787 ], [ -96.084735169385553, 29.383108096183641 ], [ -96.085426168950349, 29.383316096003988 ], [ -96.085571168791674, 29.383360096290104 ], [ -96.088740169728467, 29.383640095552909 ], [ -96.091418170411131, 29.383877096346868 ], [ -96.092473171371637, 29.383992095992035 ], [ -96.092675170929482, 29.384014096332319 ], [ -96.097446172100561, 29.385383095759686 ], [ -96.09981417321147, 29.38604809625155 ], [ -96.100028173531527, 29.386109095782714 ], [ -96.100637173378502, 29.386281096087654 ], [ -96.102599173966041, 29.386770096412949 ], [ -96.103016173538549, 29.386380095858257 ], [ -96.103685174361914, 29.384651095618125 ], [ -96.105959174568312, 29.378637094436026 ], [ -96.105998173828453, 29.378648093937603 ], [ -96.108276174676504, 29.379306094315641 ], [ -96.110542175634464, 29.379995094290106 ], [ -96.111551176008277, 29.377322093763425 ], [ -96.112920175743824, 29.373711093010019 ], [ -96.113572175427677, 29.371990093066515 ], [ -96.11510017621201, 29.367979091628907 ], [ -96.115387175893815, 29.367227091581146 ], [ -96.116448176345045, 29.364566090880331 ], [ -96.116612175984969, 29.364154090918298 ], [ -96.116667176282178, 29.364016091434465 ], [ -96.117080176217755, 29.362943091183368 ], [ -96.117187176446507, 29.362665090965741 ], [ -96.117505176866032, 29.361839090505299 ], [ -96.117632176686058, 29.361510090746762 ], [ -96.117703176018509, 29.36132509034357 ], [ -96.117715176256254, 29.360965089997844 ], [ -96.11773517594095, 29.360856090684472 ], [ -96.117810176678915, 29.36045409053844 ], [ -96.118590176973342, 29.358429090102732 ], [ -96.11964817681158, 29.355684089524964 ], [ -96.120803177381347, 29.352742089036941 ], [ -96.12097817697645, 29.352296088674017 ], [ -96.121030176589343, 29.352164088045107 ], [ -96.121108176761766, 29.351966087982863 ], [ -96.12122217699347, 29.351647088465047 ], [ -96.121357176642306, 29.351271088606296 ], [ -96.121855177088847, 29.349986088048663 ], [ -96.122187176904973, 29.349127087393491 ], [ -96.124375177056095, 29.343463086557566 ], [ -96.124658177298755, 29.342707086713752 ], [ -96.124786177525948, 29.342359086051278 ], [ -96.125177177774034, 29.341407085787885 ], [ -96.125635177377745, 29.340239085479098 ], [ -96.125778177559212, 29.33983308544741 ], [ -96.126196177401198, 29.33865208553102 ], [ -96.126706177544563, 29.33730008546787 ], [ -96.127402178319443, 29.335474085004648 ], [ -96.127500177951873, 29.335203084548152 ], [ -96.127603177457033, 29.334930085006757 ], [ -96.127619177468887, 29.334889084631044 ], [ -96.129340177684398, 29.330413083997737 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1608, "Tract": "48481740100", "Area_SqMi": 271.19320863429988, "total_2009": 2092, "total_2010": 1604, "total_2011": 2105, "total_2012": 2023, "total_2013": 2142, "total_2014": 2195, "total_2015": 2292, "total_2016": 2115, "total_2017": 2115, "total_2018": 2076, "total_2019": 2068, "total_2020": 2060, "age1": 464, "age2": 1158, "age3": 656, "earn1": 415, "earn2": 711, "earn3": 1152, "naics_s01": 369, "naics_s02": 0, "naics_s03": 4, "naics_s04": 92, "naics_s05": 720, "naics_s06": 90, "naics_s07": 486, "naics_s08": 21, "naics_s09": 0, "naics_s10": 32, "naics_s11": 7, "naics_s12": 7, "naics_s13": 0, "naics_s14": 16, "naics_s15": 213, "naics_s16": 81, "naics_s17": 0, "naics_s18": 101, "naics_s19": 32, "naics_s20": 7, "race1": 1903, "race2": 248, "race3": 43, "race4": 55, "race5": 2, "race6": 27, "ethnicity1": 1468, "ethnicity2": 810, "edu1": 412, "edu2": 527, "edu3": 541, "edu4": 334, "Shape_Length": 466861.74963068118, "Shape_Area": 7560402504.9089012, "total_2021": 2162, "total_2022": 2278 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.362832240229011, 29.398454089468114 ], [ -96.362829240303711, 29.398128089777764 ], [ -96.362781240044526, 29.398001090187311 ], [ -96.362696240328916, 29.397268089339402 ], [ -96.362371239660433, 29.396343089775911 ], [ -96.361957239784033, 29.395854089301181 ], [ -96.361363239697681, 29.395418089728992 ], [ -96.360406239376076, 29.395110089230965 ], [ -96.360493239656478, 29.394953089155372 ], [ -96.359047238995018, 29.394780088825758 ], [ -96.357501238460401, 29.394829089678471 ], [ -96.355879238006025, 29.394979089524188 ], [ -96.355374238599026, 29.395138089296854 ], [ -96.354649237540116, 29.395164089402289 ], [ -96.354325237806151, 29.395196089294394 ], [ -96.354088238129464, 29.395137089390676 ], [ -96.353629237742112, 29.394776089648246 ], [ -96.352624237114185, 29.393508088903953 ], [ -96.352333236801115, 29.392873088962808 ], [ -96.352163237400603, 29.392355089312886 ], [ -96.352055237300533, 29.391640089199679 ], [ -96.351981236726587, 29.390598088762623 ], [ -96.351839236647507, 29.389745088256412 ], [ -96.351691237284058, 29.389429088613468 ], [ -96.351203237033204, 29.38867808801383 ], [ -96.350643237111157, 29.388105088567251 ], [ -96.350607236245125, 29.387859087761463 ], [ -96.350514236221784, 29.38766308826898 ], [ -96.350012236773338, 29.387508087785449 ], [ -96.349643236037366, 29.387492088275192 ], [ -96.348363236383875, 29.38774508784865 ], [ -96.347381235812549, 29.388223088234898 ], [ -96.34694323525882, 29.388604088406403 ], [ -96.346486236113734, 29.389158088225489 ], [ -96.346389235450232, 29.389394088614743 ], [ -96.346143235616111, 29.389725089038997 ], [ -96.346081235259845, 29.390117088333344 ], [ -96.346105235963918, 29.39033108890235 ], [ -96.346002235108259, 29.390791089053288 ], [ -96.345969235895865, 29.391618089016909 ], [ -96.346049235230012, 29.39186008924051 ], [ -96.34628923521602, 29.392196089184225 ], [ -96.346393235317564, 29.392432089541916 ], [ -96.346473235620167, 29.392783089016032 ], [ -96.346496235903842, 29.393395089770404 ], [ -96.346369236267606, 29.39373408993001 ], [ -96.346212235469281, 29.393847089308309 ], [ -96.345710236003839, 29.394411089397025 ], [ -96.34544223581824, 29.394577089606681 ], [ -96.344973235619662, 29.39498208945097 ], [ -96.344656235225401, 29.395149089452783 ], [ -96.344188235269087, 29.39528708964902 ], [ -96.343619234878304, 29.39536008990639 ], [ -96.343249234707088, 29.395343089498251 ], [ -96.342523234988235, 29.395214089560071 ], [ -96.341381234949637, 29.394806089551697 ], [ -96.34005523456851, 29.394560089748413 ], [ -96.339444234517231, 29.39460508985642 ], [ -96.338873234199127, 29.394805089530802 ], [ -96.337941233344722, 29.395564090139949 ], [ -96.337384233181666, 29.396142089876573 ], [ -96.337059233212955, 29.396557090189514 ], [ -96.336538233737045, 29.397841090201023 ], [ -96.336147233092419, 29.398634091047999 ], [ -96.335837233259141, 29.398970090615357 ], [ -96.335302233654275, 29.399422091382693 ], [ -96.335186233384348, 29.399520091019092 ], [ -96.33459423292166, 29.399622091161056 ], [ -96.333856233336689, 29.399579091446309 ], [ -96.332990232229065, 29.399252091309563 ], [ -96.332252232799561, 29.399029090952425 ], [ -96.331221231885536, 29.398580091327414 ], [ -96.330463231870212, 29.398085090530341 ], [ -96.329875232119392, 29.397633090949736 ], [ -96.329317231421172, 29.397430090392572 ], [ -96.329037231468547, 29.397371091075222 ], [ -96.327155231470158, 29.397199091018756 ], [ -96.326838231107942, 29.397260091061739 ], [ -96.326591230867749, 29.397254090979942 ], [ -96.326001230767474, 29.397106090917692 ], [ -96.32562223074865, 29.396830091187393 ], [ -96.325245230226528, 29.3964030909687 ], [ -96.325053230769043, 29.396085090853219 ], [ -96.324881230064463, 29.395566090718237 ], [ -96.324736230496057, 29.394893090841432 ], [ -96.324722230704225, 29.394569090255565 ], [ -96.324724230351435, 29.394028089851179 ], [ -96.324842230201668, 29.392845089657825 ], [ -96.325034230653102, 29.391962090270567 ], [ -96.325038230660596, 29.391350089729087 ], [ -96.325296230238465, 29.390785089796147 ], [ -96.325388230136539, 29.390433089197547 ], [ -96.325329230649814, 29.389710089102536 ], [ -96.325065229732715, 29.389262089672979 ], [ -96.324506229767607, 29.388785088879406 ], [ -96.323797229527386, 29.387990088888127 ], [ -96.323516229860729, 29.387784088973785 ], [ -96.323389229362959, 29.387718088850413 ], [ -96.322971229198615, 29.387098089255669 ], [ -96.322445229245616, 29.385848088720039 ], [ -96.322113228985955, 29.384070087893868 ], [ -96.32212522875146, 29.383639088579891 ], [ -96.322214229017035, 29.38332508797059 ], [ -96.322558229401508, 29.382712088275063 ], [ -96.322723229160104, 29.382505088131051 ], [ -96.323886229624321, 29.38138708754558 ], [ -96.324604230221581, 29.380909087625589 ], [ -96.324876230073514, 29.380639087966497 ], [ -96.325043230156311, 29.380233087115275 ], [ -96.325098229597131, 29.379767087381254 ], [ -96.325036229532543, 29.379375086895159 ], [ -96.324925230217247, 29.379143086825906 ], [ -96.324663229560386, 29.378715086889795 ], [ -96.323945229025313, 29.377793087202527 ], [ -96.323058229511005, 29.376942086897021 ], [ -96.322936229502474, 29.376624086494523 ], [ -96.322313229083818, 29.376157086797953 ], [ -96.321949228435116, 29.375999086520423 ], [ -96.32095622840211, 29.374591086136167 ], [ -96.320635228459281, 29.374048086009182 ], [ -96.32044822840426, 29.373857086066245 ], [ -96.320069227935875, 29.373642085893568 ], [ -96.319248227929265, 29.373406086566625 ], [ -96.318304228278791, 29.373395086361196 ], [ -96.316962227542902, 29.373735085966839 ], [ -96.314997227106446, 29.374384086561161 ], [ -96.31443422663844, 29.374483086556303 ], [ -96.31373822664149, 29.374442086455364 ], [ -96.313187226484402, 29.374298086304666 ], [ -96.312901226724378, 29.374196086813729 ], [ -96.312196226587687, 29.373945086845854 ], [ -96.311452226343221, 29.373597086102066 ], [ -96.310775225856986, 29.373280086688936 ], [ -96.310263226214559, 29.372979086430124 ], [ -96.309868225621017, 29.372660086718735 ], [ -96.309348225166204, 29.372105086299239 ], [ -96.308986225475351, 29.371499086132527 ], [ -96.308715224929728, 29.370818086421892 ], [ -96.308481225348103, 29.369793085639635 ], [ -96.308123225420033, 29.369187085665541 ], [ -96.30778922459227, 29.368921085749051 ], [ -96.307171224352288, 29.368636085222892 ], [ -96.306488224327481, 29.368512085537116 ], [ -96.306262224453306, 29.368430085614737 ], [ -96.30560922459091, 29.368384085759697 ], [ -96.304492223952835, 29.368407086114328 ], [ -96.302567223706447, 29.368561085472905 ], [ -96.301497223383649, 29.368577086159359 ], [ -96.301005223419722, 29.368541085591538 ], [ -96.299464222311983, 29.36830708602589 ], [ -96.298393222977964, 29.368051085989816 ], [ -96.297284222332365, 29.367994085634887 ], [ -96.296752222581077, 29.36802408610011 ], [ -96.296304221967787, 29.367969085858597 ], [ -96.295977221937818, 29.367977085534505 ], [ -96.295345222024807, 29.368138086219272 ], [ -96.292926220804375, 29.369048086489084 ], [ -96.292007221343013, 29.36923708603743 ], [ -96.291514220555712, 29.369250086575356 ], [ -96.291076220305825, 29.369344086267056 ], [ -96.289803219970167, 29.369395086091423 ], [ -96.289691220674797, 29.369387086399772 ], [ -96.288533219968201, 29.369301086513659 ], [ -96.288112220105432, 29.369221086691198 ], [ -96.287609220135238, 29.369125086870323 ], [ -96.286495219874695, 29.368945086028699 ], [ -96.285021219607316, 29.368647086167471 ], [ -96.28286921881957, 29.368342086325217 ], [ -96.281274218547239, 29.368183086754904 ], [ -96.279543217563415, 29.367862086862964 ], [ -96.278850217459919, 29.3679040864074 ], [ -96.278040216908721, 29.36778308626991 ], [ -96.276932216985912, 29.367730086924038 ], [ -96.27620521709369, 29.367609086338501 ], [ -96.275025217050256, 29.367738086804369 ], [ -96.273983216489825, 29.367559086787779 ], [ -96.273508216582911, 29.367423086776242 ], [ -96.273318216131344, 29.36732208646097 ], [ -96.27253021625026, 29.366100086757239 ], [ -96.272425215700622, 29.36582808624966 ], [ -96.272366215457339, 29.365289085764314 ], [ -96.272463216241576, 29.364502086264672 ], [ -96.272620216287692, 29.364094086263588 ], [ -96.272834215800685, 29.363829085444877 ], [ -96.273095215726002, 29.363601085316134 ], [ -96.273374216485053, 29.3634470855859 ], [ -96.273696216225289, 29.363270085509292 ], [ -96.274155215997311, 29.362970086033044 ], [ -96.274501216169369, 29.362615085698007 ], [ -96.275076216630822, 29.362335085771967 ], [ -96.275482216453881, 29.361793085282258 ], [ -96.275590216089839, 29.36145408487597 ], [ -96.275659216953784, 29.361239084766432 ], [ -96.275674216162912, 29.36091608468265 ], [ -96.275584216076624, 29.360602085363638 ], [ -96.275374216329297, 29.360252084926589 ], [ -96.275073215866897, 29.359466085302056 ], [ -96.274525216530307, 29.358560084785367 ], [ -96.273769216342217, 29.35785708475122 ], [ -96.272750216077284, 29.357185084151261 ], [ -96.272016215335753, 29.356786084535383 ], [ -96.270838214892265, 29.356357084377496 ], [ -96.270203214808362, 29.35621008450758 ], [ -96.269916214827035, 29.356184084750399 ], [ -96.269674214999213, 29.356216084429605 ], [ -96.268526214323046, 29.356020083931472 ], [ -96.26734621438419, 29.355706084018045 ], [ -96.266711214252169, 29.355456084575309 ], [ -96.266100213942806, 29.355377083994444 ], [ -96.265195213497478, 29.355378084286983 ], [ -96.264668213162054, 29.355303084404621 ], [ -96.264223212900589, 29.355369084827228 ], [ -96.26349021317273, 29.355695084863832 ], [ -96.262727213090315, 29.356121084743428 ], [ -96.26190721307259, 29.356666084952401 ], [ -96.261609212962938, 29.357052084427096 ], [ -96.261100212832943, 29.357472084481596 ], [ -96.260064212041527, 29.358730085106302 ], [ -96.259418212606008, 29.359609085158027 ], [ -96.258937212592187, 29.360103085215005 ], [ -96.258326211655032, 29.36046508578854 ], [ -96.257679211491194, 29.360689085602061 ], [ -96.256292211219062, 29.36082408566768 ], [ -96.255392211702485, 29.36077008613093 ], [ -96.254927210744924, 29.360628086006372 ], [ -96.254202210513171, 29.360291085721958 ], [ -96.253774210581525, 29.359906085653478 ], [ -96.25357721108729, 29.359590085176634 ], [ -96.253452211204376, 29.359247085641535 ], [ -96.253429210452765, 29.359069085159067 ], [ -96.253475210989734, 29.358857085353318 ], [ -96.253754211271556, 29.358503085507738 ], [ -96.254081210832027, 29.358229085363206 ], [ -96.254485211066836, 29.357985085417766 ], [ -96.254940210738241, 29.357489085176169 ], [ -96.255321211570774, 29.356652084683876 ], [ -96.255501211192751, 29.355692084903698 ], [ -96.255493211213278, 29.355152084850694 ], [ -96.255269211391081, 29.354235084279662 ], [ -96.254721211285656, 29.352761083957713 ], [ -96.254205210846564, 29.351566084278009 ], [ -96.254131210484147, 29.350921083848977 ], [ -96.254248211075691, 29.350281083285431 ], [ -96.254565210238297, 29.349617083840464 ], [ -96.255282210832462, 29.348875083339244 ], [ -96.256138211183639, 29.348257083119016 ], [ -96.25662421160493, 29.348065083523696 ], [ -96.257383211155187, 29.347907083482106 ], [ -96.257835211718799, 29.347892083305531 ], [ -96.259199211961061, 29.348160083330519 ], [ -96.25989121215612, 29.348243082934609 ], [ -96.260549212172009, 29.348229083304503 ], [ -96.261145212103798, 29.348098082780137 ], [ -96.261378212123731, 29.347896083093246 ], [ -96.261448211833212, 29.347766083259881 ], [ -96.261704212294674, 29.34758508279651 ], [ -96.262133212605221, 29.347148082680118 ], [ -96.263760212269304, 29.345127082681234 ], [ -96.264437212631947, 29.344391081966911 ], [ -96.265143212862569, 29.343785082150539 ], [ -96.266752213494698, 29.342194081794087 ], [ -96.267092213856074, 29.34175608194494 ], [ -96.268049213379797, 29.340524081304544 ], [ -96.268216213506491, 29.340276081059194 ], [ -96.268425213862827, 29.339806081145348 ], [ -96.268535213774527, 29.339311080858202 ], [ -96.268540213773335, 29.339023080674391 ], [ -96.26837721325262, 29.338097080698738 ], [ -96.268123213055119, 29.337412080174452 ], [ -96.267569213266256, 29.336445080823971 ], [ -96.267105213206889, 29.335250080410404 ], [ -96.266818212858396, 29.334626080156941 ], [ -96.266551212718213, 29.334220080027649 ], [ -96.265323212986317, 29.332865079365604 ], [ -96.265105212747244, 29.332701079415806 ], [ -96.264757212911846, 29.332592080029098 ], [ -96.263970212544308, 29.332070079271151 ], [ -96.263269212043582, 29.331864079704513 ], [ -96.262907211801149, 29.331801079744601 ], [ -96.262578212362143, 29.33180007944712 ], [ -96.261773211247345, 29.331654079798515 ], [ -96.260171211524593, 29.331568079309204 ], [ -96.259432210765979, 29.331601080052707 ], [ -96.256791210504716, 29.331971079794464 ], [ -96.255475210450754, 29.332264080362396 ], [ -96.25407821028422, 29.332695080230206 ], [ -96.25321020947699, 29.333107079927114 ], [ -96.251304208837624, 29.334175080243696 ], [ -96.249777208570876, 29.334957080955093 ], [ -96.248330208027369, 29.335677080741203 ], [ -96.247698208074539, 29.336191080679217 ], [ -96.247467208289848, 29.336260080927484 ], [ -96.247233208204676, 29.33640608071623 ], [ -96.246550207791429, 29.337263081664421 ], [ -96.24601420810157, 29.338075081218705 ], [ -96.245696207443387, 29.33846008127205 ], [ -96.244957207897869, 29.339234082176155 ], [ -96.24325020776314, 29.340743082287464 ], [ -96.242584207138833, 29.341101081978355 ], [ -96.241982206780975, 29.341332082621051 ], [ -96.241322207049492, 29.34153508273533 ], [ -96.240362206229449, 29.341728081990489 ], [ -96.23886520666349, 29.342234082461928 ], [ -96.238321206382267, 29.342489082791619 ], [ -96.237621206160341, 29.342989082645904 ], [ -96.236385205743076, 29.343636082822051 ], [ -96.235465205331337, 29.344074082784147 ], [ -96.234817205149085, 29.34416308292024 ], [ -96.234201205353287, 29.344169083431186 ], [ -96.2333052053052, 29.344064082695287 ], [ -96.230476204245434, 29.34391108286616 ], [ -96.229182203895263, 29.344123082842781 ], [ -96.228884204384499, 29.344308083399493 ], [ -96.227608203714894, 29.344845083473018 ], [ -96.226714203595478, 29.345212083587825 ], [ -96.225485202787823, 29.345627083741579 ], [ -96.223896202515121, 29.346303084095425 ], [ -96.223028202961345, 29.346785084233165 ], [ -96.221815201827425, 29.347318084294429 ], [ -96.220199202291482, 29.347853084216034 ], [ -96.219079201949384, 29.348087084488245 ], [ -96.2170602014628, 29.348419084306652 ], [ -96.216808200703539, 29.348497084958694 ], [ -96.216028200695661, 29.348510084327099 ], [ -96.21493620101495, 29.348682084452701 ], [ -96.213991200359047, 29.348725085066999 ], [ -96.213304199695528, 29.34862408486438 ], [ -96.212854200373769, 29.348661084667331 ], [ -96.211711199817785, 29.348618084645654 ], [ -96.210966199752718, 29.348590085184775 ], [ -96.209920199810213, 29.348781085105188 ], [ -96.208642198617241, 29.349179084950617 ], [ -96.207804198581073, 29.349320084817247 ], [ -96.207020198456874, 29.349538084951398 ], [ -96.206096198708508, 29.349715084916724 ], [ -96.204576198334266, 29.349673084915999 ], [ -96.202958197622806, 29.349422085086903 ], [ -96.202015197240101, 29.349062085019781 ], [ -96.201281197421977, 29.348599084913381 ], [ -96.200372196591317, 29.347717085304168 ], [ -96.200037196621068, 29.347510084778069 ], [ -96.199777196620587, 29.34718608442396 ], [ -96.199442196286213, 29.346489084409406 ], [ -96.199389196406585, 29.346097084758391 ], [ -96.199199195980825, 29.345622084190566 ], [ -96.19919819610503, 29.34526308428341 ], [ -96.199307196834354, 29.344695084551507 ], [ -96.19956619627709, 29.344245084605912 ], [ -96.200282196911076, 29.343330083747819 ], [ -96.20023319665053, 29.342363083695862 ], [ -96.200276196914857, 29.342188083566111 ], [ -96.200547196849243, 29.341704083629196 ], [ -96.200773196951488, 29.341496083544246 ], [ -96.200900196453304, 29.341196083398167 ], [ -96.200896196960329, 29.340845083145254 ], [ -96.200771196809271, 29.340390083128412 ], [ -96.200465196913001, 29.339923083467951 ], [ -96.200322196530536, 29.339794083539768 ], [ -96.200218196576245, 29.339483082958189 ], [ -96.200103196411092, 29.338952083225234 ], [ -96.20010219630241, 29.338484082957383 ], [ -96.199961196582308, 29.337518083270453 ], [ -96.199829196253901, 29.337177082554255 ], [ -96.199670196422701, 29.336967083128247 ], [ -96.199029196463158, 29.336462082940667 ], [ -96.198747196383366, 29.336315082413016 ], [ -96.198355196054436, 29.336208082720699 ], [ -96.198182195793805, 29.336135082373229 ], [ -96.197948195877274, 29.336037082236082 ], [ -96.197503195643677, 29.335722082869427 ], [ -96.196670194845552, 29.335269082880334 ], [ -96.19584519504572, 29.335050082631462 ], [ -96.19507719522214, 29.334922082326493 ], [ -96.193559194698267, 29.334908082218774 ], [ -96.19228819397118, 29.334960082912826 ], [ -96.191699193660128, 29.334816082636941 ], [ -96.190493193799256, 29.334135082169741 ], [ -96.189561193220797, 29.333127082731565 ], [ -96.188913193341861, 29.33262708262129 ], [ -96.188586193616814, 29.332216082605886 ], [ -96.188014192993165, 29.331805081745824 ], [ -96.187270192872759, 29.331422081855365 ], [ -96.186588193063656, 29.330957081653686 ], [ -96.186308192560602, 29.330695081824548 ], [ -96.184678191766039, 29.329484082108426 ], [ -96.18451219189626, 29.329279082135852 ], [ -96.183377192142999, 29.328394081495155 ], [ -96.182993191188714, 29.327883081892917 ], [ -96.182739191218261, 29.327430081684398 ], [ -96.182620191451306, 29.327123081097884 ], [ -96.182511191824091, 29.32648108154369 ], [ -96.182549191008775, 29.325833080612792 ], [ -96.182649191129201, 29.325263080770611 ], [ -96.182836190936712, 29.324560080757514 ], [ -96.183075191384631, 29.323909080965912 ], [ -96.183259190968798, 29.322804080213576 ], [ -96.183646191912999, 29.321331079756806 ], [ -96.183646191342277, 29.321014079974415 ], [ -96.18351019139422, 29.320413079858632 ], [ -96.183164191026052, 29.319681079447285 ], [ -96.182759190856473, 29.319274079920003 ], [ -96.18208719068133, 29.318801079409333 ], [ -96.181703191304408, 29.31842707962133 ], [ -96.180964190401355, 29.317517079690933 ], [ -96.180568191014984, 29.317103079573041 ], [ -96.179616190521287, 29.316363079454153 ], [ -96.17918618999397, 29.316157079462613 ], [ -96.177756189950927, 29.316022079177241 ], [ -96.176896189824333, 29.316080079461766 ], [ -96.175663189039795, 29.316054079489938 ], [ -96.175183189138792, 29.316007079622587 ], [ -96.174611188827527, 29.316055079516762 ], [ -96.172888188162332, 29.315972079704519 ], [ -96.171903187902288, 29.316019079088402 ], [ -96.170557187487574, 29.316174079828997 ], [ -96.170244188025436, 29.316260079814281 ], [ -96.167823187477737, 29.3166680800908 ], [ -96.167069187322511, 29.316738079320245 ], [ -96.165877187022275, 29.316771079744189 ], [ -96.163620186629416, 29.316823079781749 ], [ -96.162402185453317, 29.316851080116404 ], [ -96.160799185095541, 29.316799080188403 ], [ -96.158920184732395, 29.316613079501131 ], [ -96.157769184669689, 29.316569079723813 ], [ -96.156139184683212, 29.31658608010888 ], [ -96.156000184640547, 29.316587080461002 ], [ -96.155432183661901, 29.316664080055805 ], [ -96.15410618354683, 29.317047080135282 ], [ -96.153552183519636, 29.317356080000376 ], [ -96.153006183694075, 29.317594080489215 ], [ -96.151205183078773, 29.318793080668744 ], [ -96.150500183044556, 29.319343080575401 ], [ -96.150541182789638, 29.31938108039089 ], [ -96.150751183200441, 29.319577080854881 ], [ -96.150814183049121, 29.319593080558992 ], [ -96.151335182686324, 29.31965408113906 ], [ -96.151378183151678, 29.319714080564975 ], [ -96.151347183235302, 29.320148080602902 ], [ -96.151359183264532, 29.320203081234418 ], [ -96.151422183712356, 29.320346080533554 ], [ -96.151422183473116, 29.320434080657787 ], [ -96.151453183536972, 29.320594081054505 ], [ -96.151497183436106, 29.320649080687179 ], [ -96.151698183222635, 29.320814081285501 ], [ -96.151836183704972, 29.320951080751353 ], [ -96.151961183045728, 29.321039081076091 ], [ -96.15204918364158, 29.321072081465122 ], [ -96.152306183352692, 29.321056080862164 ], [ -96.152406183139348, 29.32111108125471 ], [ -96.152444183508976, 29.321226080828989 ], [ -96.152444183416861, 29.321276081252826 ], [ -96.152526183279534, 29.32132508151766 ], [ -96.152651183785892, 29.321320080786411 ], [ -96.152745184014393, 29.321298080740188 ], [ -96.152802183124095, 29.321331081551907 ], [ -96.152795183159796, 29.321397080721432 ], [ -96.152820184155544, 29.321463081315056 ], [ -96.152858184101419, 29.32149008155805 ], [ -96.152927183383071, 29.321490080886438 ], [ -96.153052183700581, 29.321430080846412 ], [ -96.153203183568493, 29.321336080921267 ], [ -96.153310183746484, 29.321325081443209 ], [ -96.153410184115216, 29.3213360810363 ], [ -96.153491183413976, 29.321386081074557 ], [ -96.153535183466133, 29.321468080784218 ], [ -96.153542183973798, 29.32164408135586 ], [ -96.153617183489217, 29.321738081514361 ], [ -96.153711184237579, 29.321826081334862 ], [ -96.15393718409878, 29.321892081149596 ], [ -96.154037184239016, 29.32196908165389 ], [ -96.154106184260215, 29.322040081188526 ], [ -96.154144183900414, 29.322101081354258 ], [ -96.154156183999092, 29.322167081464578 ], [ -96.154137184519428, 29.322277081103213 ], [ -96.153716184278821, 29.323326081845941 ], [ -96.153396184267805, 29.324178082027601 ], [ -96.153271183554821, 29.324453081323139 ], [ -96.153114184306503, 29.324893082242667 ], [ -96.152668183806114, 29.326041082270152 ], [ -96.152461183765936, 29.326619081808747 ], [ -96.152097183448234, 29.327547082390613 ], [ -96.151990183763914, 29.327910082939827 ], [ -96.15156918395644, 29.32889908233458 ], [ -96.151205183601533, 29.329938082846379 ], [ -96.150928183537772, 29.330537083324796 ], [ -96.150533183286583, 29.331554083073748 ], [ -96.150225183415671, 29.332400083399772 ], [ -96.14970418346239, 29.333780083741459 ], [ -96.149361183472365, 29.334660083908989 ], [ -96.148950182824152, 29.335714084269309 ], [ -96.148880183369187, 29.335820084460583 ], [ -96.148567183648382, 29.335577084336649 ], [ -96.147046182300315, 29.33439608429174 ], [ -96.146639182306657, 29.334163083959684 ], [ -96.146297182749706, 29.334033084315411 ], [ -96.140184181106378, 29.332700084178306 ], [ -96.132812179176156, 29.331141084157398 ], [ -96.132221178735122, 29.331027084036371 ], [ -96.131836178266553, 29.330926083846823 ], [ -96.131248178575063, 29.330740084074911 ], [ -96.130760178119658, 29.330538083632398 ], [ -96.130335177908137, 29.330331083838988 ], [ -96.129951177825589, 29.330086083788064 ], [ -96.129556177903197, 29.329851084000865 ], [ -96.129340177684398, 29.330413083997737 ], [ -96.127619177468887, 29.334889084631044 ], [ -96.127603177457033, 29.334930085006757 ], [ -96.127500177951873, 29.335203084548152 ], [ -96.127402178319443, 29.335474085004648 ], [ -96.126706177544563, 29.33730008546787 ], [ -96.126196177401198, 29.33865208553102 ], [ -96.125778177559212, 29.33983308544741 ], [ -96.125635177377745, 29.340239085479098 ], [ -96.125177177774034, 29.341407085787885 ], [ -96.124786177525948, 29.342359086051278 ], [ -96.124658177298755, 29.342707086713752 ], [ -96.124375177056095, 29.343463086557566 ], [ -96.122187176904973, 29.349127087393491 ], [ -96.121855177088847, 29.349986088048663 ], [ -96.121357176642306, 29.351271088606296 ], [ -96.12122217699347, 29.351647088465047 ], [ -96.121108176761766, 29.351966087982863 ], [ -96.121030176589343, 29.352164088045107 ], [ -96.12097817697645, 29.352296088674017 ], [ -96.120803177381347, 29.352742089036941 ], [ -96.11964817681158, 29.355684089524964 ], [ -96.118590176973342, 29.358429090102732 ], [ -96.117810176678915, 29.36045409053844 ], [ -96.11773517594095, 29.360856090684472 ], [ -96.117715176256254, 29.360965089997844 ], [ -96.117703176018509, 29.36132509034357 ], [ -96.117632176686058, 29.361510090746762 ], [ -96.117505176866032, 29.361839090505299 ], [ -96.117187176446507, 29.362665090965741 ], [ -96.117080176217755, 29.362943091183368 ], [ -96.116667176282178, 29.364016091434465 ], [ -96.116612175984969, 29.364154090918298 ], [ -96.116448176345045, 29.364566090880331 ], [ -96.115387175893815, 29.367227091581146 ], [ -96.11510017621201, 29.367979091628907 ], [ -96.113572175427677, 29.371990093066515 ], [ -96.112920175743824, 29.373711093010019 ], [ -96.111551176008277, 29.377322093763425 ], [ -96.110542175634464, 29.379995094290106 ], [ -96.108276174676504, 29.379306094315641 ], [ -96.105998173828453, 29.378648093937603 ], [ -96.105959174568312, 29.378637094436026 ], [ -96.103685174361914, 29.384651095618125 ], [ -96.103016173538549, 29.386380095858257 ], [ -96.102599173966041, 29.386770096412949 ], [ -96.100637173378502, 29.386281096087654 ], [ -96.100028173531527, 29.386109095782714 ], [ -96.09981417321147, 29.38604809625155 ], [ -96.097446172100561, 29.385383095759686 ], [ -96.092675170929482, 29.384014096332319 ], [ -96.092473171371637, 29.383992095992035 ], [ -96.091418170411131, 29.383877096346868 ], [ -96.088740169728467, 29.383640095552909 ], [ -96.085571168791674, 29.383360096290104 ], [ -96.085426168950349, 29.383316096003988 ], [ -96.084735169385553, 29.383108096183641 ], [ -96.085459169413397, 29.381279095340787 ], [ -96.086198168951711, 29.379410094845138 ], [ -96.082691168637609, 29.378268095066577 ], [ -96.082352168725862, 29.378173094850769 ], [ -96.082228168287216, 29.37813809461873 ], [ -96.081888168200379, 29.378042094742689 ], [ -96.08164516836662, 29.377970095063908 ], [ -96.080583167950039, 29.380591095815724 ], [ -96.0803771675196, 29.381100095416624 ], [ -96.080124168042857, 29.381646095568929 ], [ -96.080114167886066, 29.381668095886258 ], [ -96.079901167356596, 29.382095095800373 ], [ -96.079441167606504, 29.382915095901499 ], [ -96.078901167289175, 29.383791096243154 ], [ -96.076184167615637, 29.388243097042633 ], [ -96.075436166855212, 29.389468097929505 ], [ -96.074468166672304, 29.391031098361061 ], [ -96.074055167076907, 29.391727098217238 ], [ -96.073895166280508, 29.391965098342084 ], [ -96.073632166407833, 29.39239709790548 ], [ -96.07332316707479, 29.392905098445002 ], [ -96.072217166882965, 29.394714098569565 ], [ -96.071804166184464, 29.395388099199767 ], [ -96.07083216637777, 29.396977099238793 ], [ -96.068878165305193, 29.400165100020317 ], [ -96.068593165215404, 29.400634099670643 ], [ -96.067700165503126, 29.402101100503064 ], [ -96.066884165706014, 29.403447100820237 ], [ -96.066405164796706, 29.404261100914731 ], [ -96.065346164815296, 29.40598210141 ], [ -96.064615164733567, 29.407098101258942 ], [ -96.064250165152473, 29.40758410180851 ], [ -96.063865164842028, 29.407990102108471 ], [ -96.063493164948142, 29.40835410186579 ], [ -96.063122164421088, 29.40867210234018 ], [ -96.062676164104587, 29.408994102353525 ], [ -96.061180163882568, 29.409924101902071 ], [ -96.060891164610254, 29.410098102235001 ], [ -96.060704164301939, 29.410211102667731 ], [ -96.059270163591592, 29.411075102087544 ], [ -96.056369163298214, 29.412832103184318 ], [ -96.05504816299667, 29.413694103065637 ], [ -96.054549162592465, 29.414097103103824 ], [ -96.054246162303457, 29.414399103518072 ], [ -96.053954162342791, 29.414612103353779 ], [ -96.053595162054449, 29.414833103372889 ], [ -96.052957161959483, 29.415227103570039 ], [ -96.050885161421505, 29.416481103511067 ], [ -96.048865161555611, 29.417709103850797 ], [ -96.040288159959744, 29.42293410551029 ], [ -96.035395158501871, 29.42589710612226 ], [ -96.028177156725192, 29.430310107651877 ], [ -96.025895156534972, 29.431668107840089 ], [ -96.022841155817346, 29.433528108358107 ], [ -96.022460154961109, 29.433760108689064 ], [ -96.022214155037773, 29.433910108838596 ], [ -96.019728155063959, 29.435415109255477 ], [ -96.016752154312144, 29.437221109460843 ], [ -96.016774153882537, 29.437223109022213 ], [ -96.016803154637174, 29.437233109372006 ], [ -96.017058154259871, 29.43728210959366 ], [ -96.017211153991951, 29.437312109352288 ], [ -96.017443154681928, 29.437384109596227 ], [ -96.017538154242644, 29.437389109122471 ], [ -96.017594153973093, 29.437392109584643 ], [ -96.017644154615894, 29.437395109665779 ], [ -96.017751154580694, 29.437384109548965 ], [ -96.017857154837458, 29.437340109009952 ], [ -96.017996154510215, 29.437318109255944 ], [ -96.018127154445949, 29.437340109062813 ], [ -96.018259154252547, 29.437395109074526 ], [ -96.018366154053453, 29.43741210958342 ], [ -96.018579154902014, 29.437401109170494 ], [ -96.018655154146302, 29.437373109260182 ], [ -96.018818154193951, 29.437351109088066 ], [ -96.01894415481236, 29.437351109555564 ], [ -96.019088154911174, 29.437428109163953 ], [ -96.019182154689773, 29.437538109019865 ], [ -96.019207154272678, 29.437604109332483 ], [ -96.019257154420416, 29.437995109647222 ], [ -96.019301154960246, 29.43822510977428 ], [ -96.01934515504179, 29.438363109570144 ], [ -96.019427154684237, 29.438555109079296 ], [ -96.019470155350305, 29.438753109779128 ], [ -96.019495155108089, 29.438990109646127 ], [ -96.019520154535343, 29.439121110013858 ], [ -96.019520154467202, 29.439171109986042 ], [ -96.019470154978308, 29.439259109956403 ], [ -96.0194261547325, 29.439264109653909 ], [ -96.019338154532662, 29.439248109855821 ], [ -96.019232155259147, 29.439242109825457 ], [ -96.019006154304037, 29.439297109622633 ], [ -96.018918155145911, 29.439358109681951 ], [ -96.01890515507877, 29.43939610931093 ], [ -96.01888015443194, 29.439418109846056 ], [ -96.018867154442233, 29.439500109922953 ], [ -96.01889215432746, 29.43956610936889 ], [ -96.018907155168606, 29.439725109855043 ], [ -96.018911154893459, 29.439770109376447 ], [ -96.018955155295927, 29.439891109852933 ], [ -96.018999154616097, 29.439968109841317 ], [ -96.019018154901985, 29.440028109421657 ], [ -96.019024155231364, 29.440105109840992 ], [ -96.019080154791183, 29.440188109952928 ], [ -96.019225155105062, 29.440314109835732 ], [ -96.019618155418144, 29.440748109566648 ], [ -96.020460154909301, 29.441222109604468 ], [ -96.020615154876282, 29.441238110098809 ], [ -96.020879155208334, 29.441272110161862 ], [ -96.021304155833548, 29.441355110145849 ], [ -96.021444155866703, 29.441357109963469 ], [ -96.021629155050533, 29.441431109856911 ], [ -96.021786155201781, 29.441464109651029 ], [ -96.021893155116842, 29.441497110154341 ], [ -96.021924155958217, 29.44147511015435 ], [ -96.021937156014729, 29.441447110069706 ], [ -96.021937155524654, 29.441376109549019 ], [ -96.021974155235213, 29.441365109568267 ], [ -96.022056155903272, 29.441387109639745 ], [ -96.022163155437568, 29.441431109793655 ], [ -96.022263155215882, 29.441453110223797 ], [ -96.022295156027695, 29.441469109842874 ], [ -96.022370155273251, 29.441486110345171 ], [ -96.022452155805453, 29.441486110417717 ], [ -96.022483156170338, 29.441475110154279 ], [ -96.02261515623016, 29.441469110376204 ], [ -96.022715155441134, 29.441409110081452 ], [ -96.022841155334547, 29.441354110086738 ], [ -96.022941155424235, 29.44132711016935 ], [ -96.023048155403714, 29.441404110139313 ], [ -96.023136155660964, 29.441426109662647 ], [ -96.023218156118858, 29.4414261101671 ], [ -96.023412156255674, 29.441277110110864 ], [ -96.023450156010497, 29.441266109444559 ], [ -96.023544155603716, 29.441327109738538 ], [ -96.023620155588048, 29.441426109626534 ], [ -96.023670155940863, 29.441470110280708 ], [ -96.023795156343098, 29.441459110078757 ], [ -96.023846155835514, 29.441409110068971 ], [ -96.023927156032741, 29.441349109809373 ], [ -96.023978156415794, 29.441294110321728 ], [ -96.024040156009335, 29.441250110224413 ], [ -96.024135156228866, 29.441250110048038 ], [ -96.024304155894626, 29.441388109886407 ], [ -96.024398156485162, 29.441360109656223 ], [ -96.024461156431755, 29.441294110248904 ], [ -96.024537156676828, 29.441267109784324 ], [ -96.024624156277483, 29.441437109958063 ], [ -96.024681156609546, 29.441476109640909 ], [ -96.02485015624805, 29.441520110293411 ], [ -96.024976156109034, 29.441465110113441 ], [ -96.025070156763732, 29.44139910946036 ], [ -96.025183156496269, 29.441349109652286 ], [ -96.025328156281333, 29.441256109901285 ], [ -96.025378156448525, 29.441256109526012 ], [ -96.025434156757854, 29.441311109398281 ], [ -96.025510156678592, 29.44136011008673 ], [ -96.025604156625548, 29.441377109441678 ], [ -96.025704157065633, 29.441355109634824 ], [ -96.025730156917859, 29.441300109740975 ], [ -96.025786156405985, 29.441333109709237 ], [ -96.025912156702731, 29.441432109504813 ], [ -96.026006156875354, 29.44146510969642 ], [ -96.026156156556709, 29.441482109817521 ], [ -96.026301157133176, 29.441471110255712 ], [ -96.026320157169977, 29.441399109391753 ], [ -96.026389157083941, 29.441300109489902 ], [ -96.026458157134869, 29.441245109919741 ], [ -96.026722157280759, 29.441295109433891 ], [ -96.026803157342471, 29.441295109843466 ], [ -96.026897156540258, 29.441311110004374 ], [ -96.027010156895727, 29.441416109553693 ], [ -96.027111156808942, 29.441432110122044 ], [ -96.027211157262826, 29.441432109822323 ], [ -96.027456157386283, 29.441455110078092 ], [ -96.027538156890074, 29.441400109501412 ], [ -96.027620156849849, 29.441372109860264 ], [ -96.027720157444392, 29.441273109524172 ], [ -96.027971157193306, 29.441218109654571 ], [ -96.028480157524143, 29.441229109274794 ], [ -96.028775157028576, 29.44126810936125 ], [ -96.028938157269209, 29.441268110030173 ], [ -96.029089157141968, 29.441213109675498 ], [ -96.029271157186514, 29.441175109265757 ], [ -96.029503157815569, 29.441037109715388 ], [ -96.029585157378676, 29.441054109279911 ], [ -96.029717157759123, 29.441114109782465 ], [ -96.02988015800976, 29.441175109910386 ], [ -96.029930157935937, 29.441148109573142 ], [ -96.029999157971716, 29.441065109894069 ], [ -96.030100157706542, 29.441104109784874 ], [ -96.030207157903149, 29.441164109962866 ], [ -96.030257157302785, 29.441362109666045 ], [ -96.030282158056679, 29.441411110145257 ], [ -96.030345157977351, 29.441477109923145 ], [ -96.030414157345348, 29.441521109745565 ], [ -96.030495158210542, 29.441538110003975 ], [ -96.030571157599425, 29.441521109516959 ], [ -96.03062115767753, 29.441434109308837 ], [ -96.030703158265553, 29.441351109437136 ], [ -96.030747157901828, 29.441241109608615 ], [ -96.030828157855339, 29.441159110054453 ], [ -96.030929157849499, 29.441109109506584 ], [ -96.031029157417962, 29.44112010980135 ], [ -96.031180157747173, 29.441181109685576 ], [ -96.031293157875709, 29.441203109738758 ], [ -96.031550158514705, 29.441197109947659 ], [ -96.03165715783669, 29.44124711004153 ], [ -96.031783158151129, 29.441340109182406 ], [ -96.03192715784725, 29.441593109321456 ], [ -96.032147157792934, 29.44204910942992 ], [ -96.032216158286317, 29.442126109670319 ], [ -96.03233515835629, 29.442220109836374 ], [ -96.032938157984461, 29.442539109387241 ], [ -96.033629158372435, 29.442938109814932 ], [ -96.033710158493577, 29.442995109879913 ], [ -96.033948158551269, 29.443105110134596 ], [ -96.034049158370408, 29.443127110309948 ], [ -96.034237159205574, 29.443138109696076 ], [ -96.034400159252144, 29.443127110106929 ], [ -96.03452015918613, 29.443094110106447 ], [ -96.034652158706933, 29.443012109498664 ], [ -96.034777158680768, 29.442968109403861 ], [ -96.034922158588486, 29.442952110038458 ], [ -96.035066158726721, 29.442952110167806 ], [ -96.03519815953544, 29.442979110109288 ], [ -96.035298159237001, 29.443012109546121 ], [ -96.035418159190385, 29.44309511026195 ], [ -96.035437158725458, 29.443128109920035 ], [ -96.03549915913672, 29.443188109835834 ], [ -96.035531158863975, 29.443265110312325 ], [ -96.035631159222689, 29.443419109537498 ], [ -96.035763158973921, 29.443523109552043 ], [ -96.035895159274304, 29.443589109590583 ], [ -96.035983158797549, 29.443622110290391 ], [ -96.036083159054073, 29.443694109946293 ], [ -96.036140159677004, 29.443793109542085 ], [ -96.036265159332629, 29.443925109943624 ], [ -96.036460159841269, 29.444277110136657 ], [ -96.036635159414516, 29.44469411022326 ], [ -96.036692159131078, 29.444881109993631 ], [ -96.036736159342524, 29.445277110629153 ], [ -96.036728159601239, 29.44532411051669 ], [ -96.036704159530217, 29.445475109921478 ], [ -96.036662159796705, 29.445561110058353 ], [ -96.036597159106933, 29.445695110409432 ], [ -96.036447159114971, 29.4458381103139 ], [ -96.035793158887898, 29.446233110446748 ], [ -96.035561159426862, 29.446337110489441 ], [ -96.035354159701384, 29.446414110751768 ], [ -96.035109158820475, 29.446486110886749 ], [ -96.03487015930618, 29.446568110872054 ], [ -96.034418159218149, 29.446672110477273 ], [ -96.03370215927464, 29.446876110432417 ], [ -96.03335715884019, 29.446991111075086 ], [ -96.032791159137432, 29.447282110720252 ], [ -96.032389158813743, 29.447452111085827 ], [ -96.031944158227645, 29.447661110673838 ], [ -96.031849158824784, 29.447738110914109 ], [ -96.031573157885973, 29.447925110530015 ], [ -96.031542158822234, 29.447974110990287 ], [ -96.03145415882058, 29.448051111243331 ], [ -96.031385158202824, 29.44820511100604 ], [ -96.031271158157082, 29.448353111308588 ], [ -96.031209158660388, 29.448480111303734 ], [ -96.031096158364392, 29.448628111114473 ], [ -96.031026158661788, 29.44868311160349 ], [ -96.03093815774308, 29.448782111186702 ], [ -96.030832157848181, 29.448870111586483 ], [ -96.030744157884811, 29.448930111145085 ], [ -96.030310158528039, 29.448991111620217 ], [ -96.030103157520841, 29.449068111109309 ], [ -96.029890158291721, 29.449188111611516 ], [ -96.029689158009518, 29.449364111578049 ], [ -96.029588158153175, 29.449485111596999 ], [ -96.029525157794254, 29.449754111725756 ], [ -96.029544157719542, 29.450183111861161 ], [ -96.029531157503968, 29.450403111125446 ], [ -96.029537158201535, 29.450568111261127 ], [ -96.029525157953145, 29.451008111457181 ], [ -96.029531157928474, 29.451601111459542 ], [ -96.029487157560425, 29.451909111455819 ], [ -96.029480157520084, 29.452057111967463 ], [ -96.029524158476747, 29.452189111752322 ], [ -96.02963715755638, 29.452283112289361 ], [ -96.029738158014851, 29.452349112150962 ], [ -96.030227158297961, 29.452497111531944 ], [ -96.030604158094263, 29.452651112200211 ], [ -96.030912158742098, 29.452838112236158 ], [ -96.03107515858477, 29.452976111854635 ], [ -96.031546158632779, 29.453256112177616 ], [ -96.031979158929303, 29.453531111963578 ], [ -96.032124158409275, 29.453658112156159 ], [ -96.032142159168146, 29.45370211240159 ], [ -96.032211158940257, 29.453757111734031 ], [ -96.032287158447872, 29.453801112350419 ], [ -96.032375158604466, 29.453883112133582 ], [ -96.032450158970704, 29.453927112120798 ], [ -96.03261915846339, 29.454031112595295 ], [ -96.032695158808096, 29.454097112635747 ], [ -96.032776158510501, 29.454141112097066 ], [ -96.032902159294579, 29.454163112131528 ], [ -96.033009159455418, 29.454142112359644 ], [ -96.033103158690153, 29.454098111998974 ], [ -96.033172158907789, 29.454004111826322 ], [ -96.033216159242386, 29.453894112297792 ], [ -96.033229159260529, 29.45381711249069 ], [ -96.033241159104691, 29.453559111916171 ], [ -96.03328515953217, 29.453383111614084 ], [ -96.033455159274467, 29.453158112429676 ], [ -96.033637159399518, 29.45296011230301 ], [ -96.0338011593754, 29.45292711220312 ], [ -96.034096159105445, 29.452938112262874 ], [ -96.034290159135381, 29.452971112205667 ], [ -96.034479159328299, 29.453037112267332 ], [ -96.034862159001918, 29.453076111709819 ], [ -96.035251159070484, 29.453070112082798 ], [ -96.035609159104794, 29.453004111816458 ], [ -96.035898159594026, 29.45301011163701 ], [ -96.036363159321681, 29.453043111467828 ], [ -96.036689159585009, 29.453082112052606 ], [ -96.036928159891971, 29.453098111418143 ], [ -96.037072160193659, 29.453093111453828 ], [ -96.037242160360535, 29.453071111871473 ], [ -96.037399159697458, 29.453027112069627 ], [ -96.037744160173091, 29.452999111855835 ], [ -96.037826160463823, 29.4530271122306 ], [ -96.037977160391108, 29.453060111916404 ], [ -96.038247160309552, 29.453197111800524 ], [ -96.038441160693509, 29.45339511188838 ], [ -96.038510160014766, 29.453489112227899 ], [ -96.038636160419927, 29.453621112171202 ], [ -96.038824160393517, 29.453868111793618 ], [ -96.038887160242467, 29.453929112190099 ], [ -96.03892516028489, 29.454066112154781 ], [ -96.03894316049994, 29.454187111871001 ], [ -96.038931160257405, 29.454363111812729 ], [ -96.038837160454591, 29.454610112183676 ], [ -96.038749160527999, 29.454786111817342 ], [ -96.038730160374968, 29.45487911187552 ], [ -96.038698160612213, 29.455006112105256 ], [ -96.03857316041362, 29.455242112208953 ], [ -96.0384911600148, 29.455363112040036 ], [ -96.038359160447257, 29.455440112603636 ], [ -96.038171160475073, 29.455522112042928 ], [ -96.038120160808589, 29.455561112163021 ], [ -96.038045160593555, 29.455599112631962 ], [ -96.037938159854647, 29.455638112176622 ], [ -96.037725160137668, 29.455852112233039 ], [ -96.037662160001418, 29.455989112382269 ], [ -96.03756715973185, 29.456160112772125 ], [ -96.037517160183455, 29.456308112103326 ], [ -96.037486159941153, 29.456462112492019 ], [ -96.037511160178596, 29.456742112682758 ], [ -96.0376301606711, 29.457017112752975 ], [ -96.037743160285089, 29.457281112511975 ], [ -96.037793160805379, 29.457429112335447 ], [ -96.037812160741936, 29.457534112521461 ], [ -96.037850160774667, 29.457655112575676 ], [ -96.037937160237149, 29.457897112801302 ], [ -96.038094160450086, 29.458067113180345 ], [ -96.038201160689354, 29.458166113285124 ], [ -96.038433160765919, 29.458298112651779 ], [ -96.038616160609664, 29.458430113121516 ], [ -96.038760160504893, 29.458502112481948 ], [ -96.038948160530239, 29.458573112898399 ], [ -96.039068160924344, 29.458568113044667 ], [ -96.039168160761136, 29.458524113238933 ], [ -96.039262160967994, 29.458430112602493 ], [ -96.039357160806873, 29.458309112473497 ], [ -96.039407160539213, 29.45822111277084 ], [ -96.039432160641411, 29.458172113050001 ], [ -96.039426160755241, 29.458051113174513 ], [ -96.039175160892995, 29.457919112382534 ], [ -96.039080160289274, 29.457842112343187 ], [ -96.039030160409084, 29.457754112400284 ], [ -96.03902416114785, 29.457666112807704 ], [ -96.039062160258155, 29.457562112499492 ], [ -96.039150160495467, 29.457485112738752 ], [ -96.039326160357277, 29.457391112363215 ], [ -96.039476160873122, 29.457342112566881 ], [ -96.039922160375227, 29.457271112313418 ], [ -96.040155160763803, 29.457254112332866 ], [ -96.040393160784305, 29.457194112549256 ], [ -96.040600161493813, 29.45717211227835 ], [ -96.040889160784616, 29.457166112877957 ], [ -96.041178161047966, 29.457133112961277 ], [ -96.041630161655135, 29.457123112956022 ], [ -96.042177161516548, 29.457178112123813 ], [ -96.042422161498479, 29.457249112271697 ], [ -96.042748161528934, 29.457337112525764 ], [ -96.042868161237607, 29.45738111237878 ], [ -96.043062161473472, 29.457541112754228 ], [ -96.043408161490575, 29.457755112460848 ], [ -96.043646162125924, 29.45796911244523 ], [ -96.04372816187194, 29.458151112409137 ], [ -96.043759162282285, 29.458266112400619 ], [ -96.043746162037607, 29.458541112809002 ], [ -96.043684161733722, 29.458904113091755 ], [ -96.043564161399956, 29.459195112485677 ], [ -96.043514161753691, 29.45934911328882 ], [ -96.043395161500641, 29.459596112945444 ], [ -96.043307162246094, 29.459888112695896 ], [ -96.043187161663894, 29.460124112808053 ], [ -96.043087162261699, 29.460377113364562 ], [ -96.043086162175726, 29.460580112967897 ], [ -96.043124161741886, 29.460844113003738 ], [ -96.043174161449883, 29.46104711302036 ], [ -96.043369162421669, 29.461328113490463 ], [ -96.043620161914433, 29.461498113790622 ], [ -96.043915162130972, 29.461597113319616 ], [ -96.044223162403185, 29.461674113194213 ], [ -96.044920162777387, 29.461773113582474 ], [ -96.045253162465741, 29.461812113749016 ], [ -96.045749162380815, 29.461784113647536 ], [ -96.046007162569978, 29.461740113728357 ], [ -96.04625216237983, 29.461713113080179 ], [ -96.046534162417316, 29.46169611366798 ], [ -96.047043162538458, 29.461713113708015 ], [ -96.047464162877034, 29.461746113241652 ], [ -96.04798516356054, 29.46184511364077 ], [ -96.048286163592167, 29.461994113562152 ], [ -96.048519163017986, 29.462169113231901 ], [ -96.04868816284133, 29.462384113786449 ], [ -96.048751163295194, 29.462499113399776 ], [ -96.048757163552764, 29.462576113440551 ], [ -96.048607163784922, 29.462818113804715 ], [ -96.048519162992704, 29.463010113120649 ], [ -96.04846216316605, 29.463296113362503 ], [ -96.048481163183922, 29.463780113957991 ], [ -96.048569163183757, 29.464077113702889 ], [ -96.048713163225173, 29.464291114162886 ], [ -96.048813163155415, 29.464604113458883 ], [ -96.049196163413939, 29.46546211384225 ], [ -96.04928416404023, 29.465715113915593 ], [ -96.049341163997184, 29.465918114072544 ], [ -96.049378163566558, 29.466253113708351 ], [ -96.049366163893694, 29.466490113891243 ], [ -96.049315163391213, 29.466731114105603 ], [ -96.049271163505608, 29.46686311432375 ], [ -96.049146163842252, 29.467116114674575 ], [ -96.049045163929875, 29.467243114791856 ], [ -96.049020163174148, 29.467292114354557 ], [ -96.048989163754314, 29.467424114577824 ], [ -96.048901163122963, 29.467869114786435 ], [ -96.048901163413873, 29.46798511452597 ], [ -96.048875163795515, 29.468193114161963 ], [ -96.048894163908727, 29.46852311490316 ], [ -96.048850163779761, 29.468628114248705 ], [ -96.04882516318041, 29.468666114922122 ], [ -96.048775163842407, 29.468793114833904 ], [ -96.048900163465078, 29.469221114927915 ], [ -96.049177164159872, 29.469573114964238 ], [ -96.04928316393837, 29.469727114636992 ], [ -96.049434163897274, 29.47026011501973 ], [ -96.04950916381182, 29.470447115150531 ], [ -96.049572163836075, 29.470722115422866 ], [ -96.049560164045744, 29.470958115360805 ], [ -96.049541164230405, 29.471090115226747 ], [ -96.0494901638192, 29.471541115124481 ], [ -96.0495221643707, 29.471667115228858 ], [ -96.049572164201194, 29.471772115277432 ], [ -96.049760164409918, 29.471992115615429 ], [ -96.049880163555272, 29.472102115188878 ], [ -96.049999164142378, 29.472184115322133 ], [ -96.050106164471771, 29.472239115097011 ], [ -96.050194164064081, 29.472272115544584 ], [ -96.050313164054714, 29.472294115454819 ], [ -96.050514164190503, 29.472299115509703 ], [ -96.050715164075939, 29.472299114962695 ], [ -96.050847164137835, 29.472272115039722 ], [ -96.050972164348906, 29.472206115264097 ], [ -96.05150016405662, 29.471832115343965 ], [ -96.051588164333921, 29.47179411524009 ], [ -96.051676164174822, 29.471766114753361 ], [ -96.05183316465704, 29.471750115564973 ], [ -96.051908164340858, 29.471761115599438 ], [ -96.052003164305773, 29.471789115571266 ], [ -96.052166164892029, 29.471833115586993 ], [ -96.052650164300331, 29.472096115523826 ], [ -96.052844165142972, 29.47221711518819 ], [ -96.052995164538601, 29.472327115062718 ], [ -96.053202164703507, 29.472498114958022 ], [ -96.053416165432111, 29.472635115275754 ], [ -96.053617165372273, 29.47274011554034 ], [ -96.053749164625472, 29.472767114968292 ], [ -96.053943165223544, 29.472762115590108 ], [ -96.05433316572875, 29.472767114899916 ], [ -96.054484165079245, 29.47276211540456 ], [ -96.054609164960652, 29.472745115096966 ], [ -96.055080164915537, 29.47259111487632 ], [ -96.055231165882631, 29.472564115114963 ], [ -96.055382165050943, 29.472520115067194 ], [ -96.055721165223744, 29.472454115109599 ], [ -96.056016165863838, 29.472344115363423 ], [ -96.056230165677931, 29.472207115179497 ], [ -96.056249165890947, 29.472597114824762 ], [ -96.056242166012922, 29.472773115140999 ], [ -96.056267165286911, 29.472927115118129 ], [ -96.056311165320849, 29.47307011513832 ], [ -96.056393165449208, 29.473169115736876 ], [ -96.056695166184653, 29.473350115658345 ], [ -96.056889166057559, 29.473509115025276 ], [ -96.056958165917905, 29.473543114930802 ], [ -96.057065166072348, 29.473598115320438 ], [ -96.057210166190202, 29.47359211502339 ], [ -96.057316165727542, 29.473559115228614 ], [ -96.057379166484679, 29.473532115610944 ], [ -96.057580166297129, 29.473405115495549 ], [ -96.057806165985497, 29.473339115738376 ], [ -96.058039165937302, 29.473345114972702 ], [ -96.058359166759729, 29.473427115418676 ], [ -96.058548166431123, 29.473460115126858 ], [ -96.058711166289768, 29.473444115336946 ], [ -96.058906166757652, 29.47340511527339 ], [ -96.059157166403281, 29.473323115628411 ], [ -96.059377166438708, 29.473284115407616 ], [ -96.059634166831799, 29.473334115410829 ], [ -96.059772167036826, 29.473416114925712 ], [ -96.059898166851255, 29.473510115386532 ], [ -96.059942166213176, 29.473598115469983 ], [ -96.059961167093206, 29.473647115695893 ], [ -96.05992316660388, 29.473763115620393 ], [ -96.059666166932928, 29.474065115342903 ], [ -96.059565167076258, 29.474169115489396 ], [ -96.059414166716635, 29.474252115218633 ], [ -96.05929516669616, 29.474362115624736 ], [ -96.058943166029934, 29.474527115849877 ], [ -96.058836166027291, 29.474625115742068 ], [ -96.05883016642909, 29.474851115598607 ], [ -96.058836166908932, 29.475021115564175 ], [ -96.058905166329069, 29.475131115988184 ], [ -96.059000166558263, 29.475208115430846 ], [ -96.059125166928524, 29.475269115263817 ], [ -96.059741166408415, 29.475384115968829 ], [ -96.059948167223411, 29.475456115636593 ], [ -96.060249167154723, 29.475681115586021 ], [ -96.060469166550504, 29.475901115323616 ], [ -96.06057016729379, 29.476049115980974 ], [ -96.060626167251769, 29.476187115364542 ], [ -96.060683166573, 29.476478115449158 ], [ -96.060677166475116, 29.476621115999095 ], [ -96.060639167001781, 29.476901116199933 ], [ -96.060532166652351, 29.477247115879518 ], [ -96.060387167219616, 29.477599115687621 ], [ -96.060193166802591, 29.477879116443958 ], [ -96.060098166935816, 29.478044116085563 ], [ -96.060042167255077, 29.478198116531672 ], [ -96.059954166663303, 29.478369116052129 ], [ -96.059904167271895, 29.478539116661644 ], [ -96.059822166827232, 29.478676116247918 ], [ -96.059778166407412, 29.478781116120761 ], [ -96.059690166639982, 29.478907116599505 ], [ -96.059652166573528, 29.478984116028755 ], [ -96.059652166880454, 29.479116116139519 ], [ -96.059703166656703, 29.479292116214101 ], [ -96.059703166521317, 29.479363116535929 ], [ -96.05963316648517, 29.479611116324122 ], [ -96.059514167304386, 29.479842116441528 ], [ -96.059413166418025, 29.479995116468107 ], [ -96.059175166795242, 29.480309117022593 ], [ -96.059005167057279, 29.480474117109196 ], [ -96.05883616670117, 29.48061111667241 ], [ -96.058540166136055, 29.48082011723033 ], [ -96.058025166132239, 29.481139116516431 ], [ -96.057874166694518, 29.481215116987549 ], [ -96.05773016696277, 29.481347116560077 ], [ -96.057629166841494, 29.481490116552685 ], [ -96.057598166802791, 29.481578116711258 ], [ -96.057629166636545, 29.481815117410111 ], [ -96.05766716647274, 29.481957117124463 ], [ -96.05771716618311, 29.482062117229599 ], [ -96.057780166490673, 29.482139116777827 ], [ -96.057849166404637, 29.482199117469975 ], [ -96.058000166859003, 29.482282116787687 ], [ -96.058082166776629, 29.482309117412274 ], [ -96.058188166394316, 29.48233711744853 ], [ -96.058352166700914, 29.482353117229273 ], [ -96.058408166578502, 29.482337116998806 ], [ -96.058678166319055, 29.482386117326104 ], [ -96.058967166912012, 29.482496117115886 ], [ -96.059250166710953, 29.482623116924106 ], [ -96.059621167277641, 29.48292011754949 ], [ -96.059759167286245, 29.48309011693653 ], [ -96.059859167290185, 29.483238117434961 ], [ -96.059946167374363, 29.483441117357916 ], [ -96.060016167554096, 29.483695116959868 ], [ -96.059997167030062, 29.48403511732084 ], [ -96.059972166804201, 29.484129117598993 ], [ -96.059903166750573, 29.484206117413883 ], [ -96.059809167571146, 29.484294117461879 ], [ -96.059740167373988, 29.484343117473113 ], [ -96.059149167363202, 29.484618117327738 ], [ -96.059011167194285, 29.484711117286388 ], [ -96.0589291664961, 29.48475511753696 ], [ -96.058785166746802, 29.484860117664045 ], [ -96.058728166897424, 29.484937117444268 ], [ -96.058709167361727, 29.484948117778409 ], [ -96.058634166714242, 29.485069117262778 ], [ -96.058533166955556, 29.485272117556548 ], [ -96.05852116689924, 29.485761117445982 ], [ -96.058540166731703, 29.485876117680551 ], [ -96.058659167178888, 29.486096117776874 ], [ -96.058772166677755, 29.486212118126755 ], [ -96.058879167360473, 29.486349118367048 ], [ -96.059036166785717, 29.48650311767766 ], [ -96.059187167355248, 29.486624118384889 ], [ -96.059457167274999, 29.486789117696507 ], [ -96.059884167498069, 29.486987118114481 ], [ -96.060122167127318, 29.4871351178274 ], [ -96.060210167289497, 29.487218118446016 ], [ -96.060324166985751, 29.487366117646072 ], [ -96.060380167195973, 29.487515118197866 ], [ -96.060374167414579, 29.487729117752703 ], [ -96.060355167448762, 29.487822118197691 ], [ -96.060323167167695, 29.487910118530149 ], [ -96.060298167714336, 29.488048118479504 ], [ -96.06022316743416, 29.488174118163844 ], [ -96.060154167484384, 29.488234118096997 ], [ -96.060122167332366, 29.488311118696913 ], [ -96.059978167311428, 29.488482118233939 ], [ -96.059884167028912, 29.488724118446829 ], [ -96.059846166979767, 29.488861118365115 ], [ -96.059846167258399, 29.488927118293358 ], [ -96.059827167554658, 29.489048118355353 ], [ -96.059808167159133, 29.489086118471295 ], [ -96.059745167233771, 29.48931711854344 ], [ -96.059682167124961, 29.489455118120798 ], [ -96.059664167261715, 29.489702118900826 ], [ -96.059601167759865, 29.489883118940849 ], [ -96.059557166817129, 29.489911119013094 ], [ -96.059431167240007, 29.489916118847063 ], [ -96.059362167532953, 29.489960118440145 ], [ -96.05931816769592, 29.490004118411836 ], [ -96.059318167431442, 29.490076118641177 ], [ -96.059343166840023, 29.490109118996124 ], [ -96.059374166871237, 29.490131119013597 ], [ -96.0595441673577, 29.490175118766722 ], [ -96.059613167319881, 29.490219118362266 ], [ -96.059626166965003, 29.490290118424969 ], [ -96.059682167842311, 29.490389118327439 ], [ -96.059701167090068, 29.490449118913716 ], [ -96.05974516714069, 29.490521118680945 ], [ -96.059833167717812, 29.490774118554739 ], [ -96.059864167323113, 29.490983118445335 ], [ -96.059776167763374, 29.491433118957314 ], [ -96.059770167338996, 29.491560119142505 ], [ -96.059688167043532, 29.49187311883318 ], [ -96.059582167146701, 29.491966119449607 ], [ -96.059481166856941, 29.492032119342067 ], [ -96.059362167760142, 29.492060119164329 ], [ -96.059205166947962, 29.492065119079758 ], [ -96.059079167577124, 29.492016119387902 ], [ -96.058884166769431, 29.491834119423935 ], [ -96.058872166893693, 29.491807119274398 ], [ -96.058796167677698, 29.49168111888476 ], [ -96.058595167284636, 29.491098118488061 ], [ -96.058539167018552, 29.490741118803761 ], [ -96.058426166977085, 29.490405118414774 ], [ -96.058376167359413, 29.490290118318967 ], [ -96.058313166984917, 29.490191119017275 ], [ -96.058219166713599, 29.490076118819605 ], [ -96.0581681669956, 29.490043119068151 ], [ -96.058005167074256, 29.490032119082127 ], [ -96.0577221670558, 29.490048118605372 ], [ -96.057634166831264, 29.490119118365619 ], [ -96.057553167283771, 29.490224118784543 ], [ -96.057509166518628, 29.490251119049031 ], [ -96.057452166752412, 29.490268118677303 ], [ -96.057257167036241, 29.490268118739547 ], [ -96.057176167183499, 29.490279118385828 ], [ -96.056422166945595, 29.490762119193604 ], [ -96.056158166932704, 29.491065118868125 ], [ -96.056070166391294, 29.491142118846554 ], [ -96.055825166036698, 29.491323119147701 ], [ -96.055605166091084, 29.49160311914293 ], [ -96.055435165870335, 29.491884119299041 ], [ -96.055341166160275, 29.492004118926914 ], [ -96.055203166199306, 29.492142119349086 ], [ -96.055102165786437, 29.492301119199528 ], [ -96.054958166471039, 29.492466119512716 ], [ -96.054700166566931, 29.492730119248208 ], [ -96.054606165759466, 29.492801119321733 ], [ -96.054556166475521, 29.492856119731549 ], [ -96.054241166200157, 29.493120119692541 ], [ -96.05419116659013, 29.493175119060318 ], [ -96.054103166017072, 29.4933011195217 ], [ -96.053921165897123, 29.493516119628435 ], [ -96.053839166386823, 29.493670119226508 ], [ -96.053732165474145, 29.493785119720528 ], [ -96.053456165414616, 29.494038119576921 ], [ -96.053311165450879, 29.494153119591516 ], [ -96.053223165522979, 29.494208119289969 ], [ -96.053060165368848, 29.494274119370072 ], [ -96.052853165422661, 29.494247119701253 ], [ -96.052740166129965, 29.494219119336805 ], [ -96.052482166150426, 29.494071119734006 ], [ -96.051791165431894, 29.493576120023143 ], [ -96.051577165531782, 29.49339411976251 ], [ -96.051483165280402, 29.493290119911432 ], [ -96.051370165778323, 29.493103119610531 ], [ -96.051226165061294, 29.492922119695276 ], [ -96.051150165154311, 29.49285011953658 ], [ -96.050956165227717, 29.492834119064504 ], [ -96.050660165566825, 29.492729119041254 ], [ -96.050604165294388, 29.492696119771466 ], [ -96.050547165227485, 29.492641119772657 ], [ -96.050434165416021, 29.49255911984077 ], [ -96.050202165272736, 29.492460119874021 ], [ -96.050133165506125, 29.492454119280577 ], [ -96.049969164911445, 29.492405119690098 ], [ -96.049881165102462, 29.492383119302051 ], [ -96.049643165268392, 29.492344119180878 ], [ -96.049454165152497, 29.492262119440632 ], [ -96.048945164254476, 29.492102119621599 ], [ -96.048732164729472, 29.492031119334392 ], [ -96.048079164046726, 29.49171711923 ], [ -96.047639164257177, 29.491580119667898 ], [ -96.04752616416323, 29.49151411897018 ], [ -96.047450164207348, 29.491333119560672 ], [ -96.047356163864364, 29.49127811936027 ], [ -96.047212163815061, 29.491261119493984 ], [ -96.047048164373678, 29.491316119357396 ], [ -96.046810164434277, 29.491371119353047 ], [ -96.04651416373936, 29.491552119577445 ], [ -96.046414163674967, 29.491585119208175 ], [ -96.046194164114553, 29.491805119891126 ], [ -96.046068164333008, 29.491915119376955 ], [ -96.045911163757879, 29.492168119362674 ], [ -96.04582916355173, 29.492338119722163 ], [ -96.045622164266746, 29.492541119781304 ], [ -96.045503163589444, 29.492585119953063 ], [ -96.045389164282426, 29.492596119529399 ], [ -96.045295163964113, 29.492591119789239 ], [ -96.045157163607499, 29.49255211918387 ], [ -96.044051163805761, 29.492134119458523 ], [ -96.043404163704849, 29.491837119782286 ], [ -96.043203163542358, 29.491766119701946 ], [ -96.043122162918834, 29.491716119154674 ], [ -96.04301516333912, 29.491557119324746 ], [ -96.042958162617794, 29.491507119852461 ], [ -96.042801162892616, 29.491486119810919 ], [ -96.042707162969862, 29.491513119145157 ], [ -96.042644163408141, 29.491546119669881 ], [ -96.042556163389918, 29.491623119113065 ], [ -96.042519163431066, 29.491672119970165 ], [ -96.042305162856934, 29.491804119445508 ], [ -96.042135163366524, 29.49194211976468 ], [ -96.04190316339988, 29.492200120030958 ], [ -96.04183416313569, 29.492293119843026 ], [ -96.04165816252879, 29.492414119364575 ], [ -96.041494162910539, 29.492507120077256 ], [ -96.041300163181432, 29.492590120196631 ], [ -96.041117163172743, 29.492612120010808 ], [ -96.040998163126986, 29.492612120047053 ], [ -96.040822162233979, 29.492601120005631 ], [ -96.040590162714565, 29.492546120115787 ], [ -96.040338162270118, 29.492447119364069 ], [ -96.04019416279948, 29.492403119450287 ], [ -96.040068162892112, 29.492342119908013 ], [ -96.039955162269408, 29.492260119928101 ], [ -96.039842162202291, 29.492232119337224 ], [ -96.039761162734209, 29.492243119342 ], [ -96.039629162670892, 29.492287119747161 ], [ -96.039528162303753, 29.492293119467327 ], [ -96.039314162045017, 29.492287119895146 ], [ -96.038919161853912, 29.492309119920186 ], [ -96.038661162282381, 29.492309119599174 ], [ -96.038454162129383, 29.49236412021023 ], [ -96.037932161724029, 29.492463119945935 ], [ -96.037411162056884, 29.492506119469816 ], [ -96.036632161888278, 29.492457120045067 ], [ -96.03614816193712, 29.492402119739968 ], [ -96.035922160976, 29.492385119646435 ], [ -96.035734161689049, 29.492325120130388 ], [ -96.035526161083538, 29.492292119629106 ], [ -96.035369161564901, 29.492335119995694 ], [ -96.035269160984626, 29.492390119868887 ], [ -96.035030161647782, 29.492451119676151 ], [ -96.034810160738843, 29.492467120051685 ], [ -96.034628160802157, 29.492522119775632 ], [ -96.034471160538587, 29.492605119610928 ], [ -96.034395160546936, 29.49262711964619 ], [ -96.034087161431998, 29.492802119627825 ], [ -96.033974161022243, 29.492890119913419 ], [ -96.033861160766193, 29.492956119729119 ], [ -96.033748160525008, 29.493039120443736 ], [ -96.033635160874042, 29.493143120498669 ], [ -96.033522160963216, 29.493330119881858 ], [ -96.033421160502101, 29.493396120321183 ], [ -96.03333316083048, 29.493484119918737 ], [ -96.033245160369844, 29.493649120323994 ], [ -96.032950160824754, 29.493901120183381 ], [ -96.032899160719637, 29.494000120176477 ], [ -96.032855160638732, 29.49405512045211 ], [ -96.032680160480169, 29.4941481199645 ], [ -96.032654160668486, 29.494242120440177 ], [ -96.03265416048022, 29.494346120183856 ], [ -96.032629160320724, 29.494423120193645 ], [ -96.032485160177387, 29.494572120515603 ], [ -96.032246160972591, 29.494940120739155 ], [ -96.032101160623512, 29.495050120547496 ], [ -96.031938160705081, 29.495193120447862 ], [ -96.031605160276797, 29.495401120300542 ], [ -96.031466160082701, 29.495456120422283 ], [ -96.031146160216039, 29.49564312056588 ], [ -96.030976159815012, 29.495621121165442 ], [ -96.030443159883703, 29.495253120984678 ], [ -96.030304159982151, 29.495181120590736 ], [ -96.030097159710778, 29.495093120819885 ], [ -96.030015159960925, 29.495077120958562 ], [ -96.029620160407262, 29.49495012022572 ], [ -96.029481159890906, 29.494895120839828 ], [ -96.02938115937863, 29.4948781202893 ], [ -96.029098159821999, 29.494851120249749 ], [ -96.028841159574398, 29.494855120860528 ], [ -96.028771159308491, 29.494856120819247 ], [ -96.028596159920625, 29.494873120538536 ], [ -96.028420160006547, 29.494939120538536 ], [ -96.028193159925394, 29.495103120345092 ], [ -96.028131159918985, 29.495169121187381 ], [ -96.028049159966017, 29.495224120699586 ], [ -96.027936159742481, 29.49526312033997 ], [ -96.027835159797306, 29.495274120633653 ], [ -96.027703159463741, 29.495246120511943 ], [ -96.027144159214899, 29.495021121088033 ], [ -96.027019159508299, 29.494911120389624 ], [ -96.026981159229607, 29.49486712091738 ], [ -96.026862159079045, 29.494845120656176 ], [ -96.026755159006754, 29.494856121138721 ], [ -96.026529159334473, 29.494905120951376 ], [ -96.026303158592441, 29.494998121178309 ], [ -96.026265158937264, 29.495031120682881 ], [ -96.026233158660602, 29.495075120735486 ], [ -96.026114158989785, 29.495273121194604 ], [ -96.026082158640008, 29.495339120715354 ], [ -96.026082158824053, 29.49541612079101 ], [ -96.026164158918931, 29.495658121179194 ], [ -96.026321159098487, 29.49591612136933 ], [ -96.026453158902896, 29.496092120779238 ], [ -96.02648415940827, 29.496186121060482 ], [ -96.026497158786981, 29.496290121287021 ], [ -96.026452158923803, 29.496724121538065 ], [ -96.026415159225834, 29.496883121005247 ], [ -96.026377159070151, 29.496966120783245 ], [ -96.026352158822405, 29.497059121545185 ], [ -96.026188159342766, 29.49730712116266 ], [ -96.026056158600255, 29.49760312147512 ], [ -96.025943159121866, 29.497708121600422 ], [ -96.025861159111074, 29.497768121010964 ], [ -96.025654158801231, 29.497895121738296 ], [ -96.025585159280936, 29.497988121610803 ], [ -96.025534159035828, 29.498153121010237 ], [ -96.025497159277236, 29.498329121224156 ], [ -96.025465159485691, 29.498428121646135 ], [ -96.025390158695757, 29.498570121630603 ], [ -96.025352158778759, 29.49873012115982 ], [ -96.025327159338502, 29.498785121308043 ], [ -96.025289159404466, 29.498928121618249 ], [ -96.025239158736497, 29.499153121407872 ], [ -96.025207158644676, 29.499219121615919 ], [ -96.025138158991624, 29.499290121767071 ], [ -96.024767158963925, 29.499604122058145 ], [ -96.02453515864002, 29.499724122003862 ], [ -96.024459158424648, 29.499735122188081 ], [ -96.024321158370356, 29.499785121675643 ], [ -96.02421415899498, 29.499862121440025 ], [ -96.024151158885957, 29.499928121695927 ], [ -96.023951158364866, 29.500302121522139 ], [ -96.023850158621769, 29.500450121589534 ], [ -96.023668158971986, 29.500593121880669 ], [ -96.023599158658598, 29.500692121997645 ], [ -96.023511158665841, 29.501049122164332 ], [ -96.023467158181859, 29.501126121642951 ], [ -96.02338515909085, 29.501181122020395 ], [ -96.023109158868621, 29.501214121983885 ], [ -96.02296415817537, 29.501247122048152 ], [ -96.022851158728031, 29.501285122005761 ], [ -96.022757158725668, 29.501368122615727 ], [ -96.022675157992097, 29.501461122068044 ], [ -96.022468158408486, 29.501813122301396 ], [ -96.022425157897828, 29.501898122536264 ], [ -96.022348158011795, 29.502049121992616 ], [ -96.02233615787722, 29.502098122008473 ], [ -96.022335158517961, 29.502296122256023 ], [ -96.022467158906082, 29.502621122399976 ], [ -96.022718158735799, 29.502972122813421 ], [ -96.022976158536935, 29.50325312286105 ], [ -96.02307615814297, 29.503313122392367 ], [ -96.023133158872852, 29.503330122945094 ], [ -96.023435158189841, 29.503363122589764 ], [ -96.023479159158299, 29.503357122786699 ], [ -96.023837158628353, 29.503253122206495 ], [ -96.024547158667914, 29.503204122112052 ], [ -96.024666158934536, 29.503215122650793 ], [ -96.024767159438056, 29.503248122649456 ], [ -96.024829159363151, 29.503281122762484 ], [ -96.024911159063322, 29.503369122618814 ], [ -96.024942158900274, 29.503418122275495 ], [ -96.024968159104191, 29.503528122501908 ], [ -96.024986158799052, 29.503633122167955 ], [ -96.02499915903239, 29.503814122376824 ], [ -96.024929158744484, 29.505012123066404 ], [ -96.024910159569814, 29.505067123074571 ], [ -96.02477215941407, 29.505150123231331 ], [ -96.024747159538038, 29.50517712251472 ], [ -96.02472815945832, 29.505215123299525 ], [ -96.024627159267723, 29.505595122855109 ], [ -96.024445159559022, 29.505765123087301 ], [ -96.024313159137932, 29.505853123054145 ], [ -96.024250159364769, 29.505930123098619 ], [ -96.024181158937765, 29.506040123207899 ], [ -96.024187158899593, 29.506496123367018 ], [ -96.024212159203898, 29.50673812346686 ], [ -96.024256158683869, 29.506919123294619 ], [ -96.024325159456467, 29.507029123198809 ], [ -96.024476159391924, 29.507172123490736 ], [ -96.024721159348928, 29.507342123491672 ], [ -96.025732159083518, 29.507953123153907 ], [ -96.025902159537296, 29.508046123762494 ], [ -96.026021159439949, 29.508140123165262 ], [ -96.026141159771754, 29.508299123141047 ], [ -96.026185159552213, 29.508338123139204 ], [ -96.026712159529296, 29.508530123776723 ], [ -96.02676315955641, 29.508558123416201 ], [ -96.026920159977252, 29.508690123650432 ], [ -96.027020160022659, 29.508761123336594 ], [ -96.027209160097541, 29.508849123894677 ], [ -96.027674159667811, 29.508987123258255 ], [ -96.02776816028279, 29.509003123950585 ], [ -96.028578160098732, 29.508998123523721 ], [ -96.028704160617849, 29.508981123600666 ], [ -96.028761160324663, 29.50896512337572 ], [ -96.028811159783899, 29.508937123903348 ], [ -96.028918160725723, 29.508855123830816 ], [ -96.02966616079884, 29.507668122828846 ], [ -96.029911160233908, 29.507564122937904 ], [ -96.030087161004587, 29.507542123174108 ], [ -96.03015016054438, 29.507542122998256 ], [ -96.030219161126084, 29.507564122871514 ], [ -96.030338160372608, 29.507635123377483 ], [ -96.030432160164452, 29.507723123534042 ], [ -96.030502161177466, 29.507822123625175 ], [ -96.030583160388815, 29.507828123598188 ], [ -96.030665160658771, 29.507877122896573 ], [ -96.030784160528356, 29.508015123140375 ], [ -96.03123016127104, 29.508476123137164 ], [ -96.031312160577045, 29.508592123019895 ], [ -96.031437161471558, 29.508713123176932 ], [ -96.031752160736133, 29.508966123815366 ], [ -96.032110161564844, 29.509131123128313 ], [ -96.032229161167692, 29.509158123038503 ], [ -96.03286416124682, 29.509384123095732 ], [ -96.032989161751985, 29.509444123759661 ], [ -96.033184161300852, 29.509565123438001 ], [ -96.033253161079671, 29.509620123492624 ], [ -96.033366161232934, 29.509747123792341 ], [ -96.033580161909924, 29.50995512332398 ], [ -96.033655161363058, 29.510010123619157 ], [ -96.034126161998756, 29.510207123781242 ], [ -96.034195161334765, 29.510236123692714 ], [ -96.034359161718939, 29.510296123635758 ], [ -96.034428161386245, 29.510313123677012 ], [ -96.034616161369058, 29.510329123511575 ], [ -96.035012162177267, 29.510296123818105 ], [ -96.035138162405772, 29.510307123858752 ], [ -96.035377161929276, 29.51043412347633 ], [ -96.035439162265405, 29.510478123569463 ], [ -96.035515161943948, 29.510577123895342 ], [ -96.035659162027756, 29.510648123329812 ], [ -96.036068162361829, 29.510764123516676 ], [ -96.036313162230996, 29.510819123278402 ], [ -96.036526162323185, 29.510835123196859 ], [ -96.036602162059651, 29.510824123233395 ], [ -96.036727162255943, 29.510770124049895 ], [ -96.036822161920995, 29.510704123376687 ], [ -96.037287162578465, 29.510484123617665 ], [ -96.037362162283756, 29.510429123958481 ], [ -96.03748216233484, 29.510374123325512 ], [ -96.037576162853753, 29.510385123101173 ], [ -96.037727162728288, 29.510418123532528 ], [ -96.037833162963693, 29.51045612333813 ], [ -96.037934163033384, 29.510462123356302 ], [ -96.03811616236294, 29.510402123794378 ], [ -96.038267162313019, 29.51028112343937 ], [ -96.038368163095981, 29.510242123432452 ], [ -96.038462162587592, 29.510220123493689 ], [ -96.038638163007988, 29.510209123840152 ], [ -96.038801162420455, 29.510242123533288 ], [ -96.038883162728382, 29.510248123449475 ], [ -96.038996163246807, 29.510182123785562 ], [ -96.039461163555558, 29.509968123230895 ], [ -96.039643162850084, 29.509874123408302 ], [ -96.039983162709291, 29.5096431236367 ], [ -96.040272163261719, 29.509693123572479 ], [ -96.040925163715727, 29.509731123166141 ], [ -96.041271163382063, 29.509781123588049 ], [ -96.04142816329211, 29.509825123257158 ], [ -96.041824164016518, 29.510006122982407 ], [ -96.042238163756721, 29.510073122892706 ], [ -96.042465163430933, 29.510078122891958 ], [ -96.042929163855391, 29.510023122913971 ], [ -96.04333816441364, 29.509935123369459 ], [ -96.043527163570545, 29.509880123594005 ], [ -96.043778164106001, 29.50985312340703 ], [ -96.043872163661547, 29.509864123244604 ], [ -96.043916163734011, 29.509880123244194 ], [ -96.044130164734426, 29.510001123391845 ], [ -96.044318164229949, 29.510018123144956 ], [ -96.044431164778175, 29.509990122773154 ], [ -96.044752164063553, 29.50998512348022 ], [ -96.045104164392441, 29.510067122802788 ], [ -96.045506164999196, 29.510194123014188 ], [ -96.045657164875479, 29.510232122825311 ], [ -96.045883165038347, 29.510238122951613 ], [ -96.045977164816009, 29.510216123186982 ], [ -96.046222164389164, 29.510123123152859 ], [ -96.046825164646748, 29.509831123452731 ], [ -96.047096164545522, 29.509710123467581 ], [ -96.047196164577315, 29.509677123059483 ], [ -96.047290164937237, 29.509672123284911 ], [ -96.047699164970581, 29.509776123182693 ], [ -96.047812165627661, 29.509837122797062 ], [ -96.047938164882495, 29.509870122709053 ], [ -96.048170165629756, 29.509914123500849 ], [ -96.049207165953547, 29.510486122992333 ], [ -96.049326166053007, 29.510612123478083 ], [ -96.049496166103324, 29.510903123479984 ], [ -96.049584165605381, 29.51100212312064 ], [ -96.049697165523128, 29.511107123310897 ], [ -96.049791165414845, 29.511178122928129 ], [ -96.050005165763608, 29.511305123647787 ], [ -96.050149166147506, 29.511376123473596 ], [ -96.05041916623712, 29.511492123067956 ], [ -96.050821165625337, 29.511536123499216 ], [ -96.050884166191778, 29.511552123362058 ], [ -96.051098165978715, 29.511547123674404 ], [ -96.051381165670605, 29.511508123097062 ], [ -96.051846166112611, 29.511536122932554 ], [ -96.051990166075896, 29.51156312301152 ], [ -96.05229816599396, 29.511662122834601 ], [ -96.0528351663297, 29.51188512365804 ], [ -96.052933166255187, 29.511926123729172 ], [ -96.053077166565771, 29.511947123224964 ], [ -96.053234166596852, 29.511970123115873 ], [ -96.053680166398124, 29.512009123325537 ], [ -96.053925167245367, 29.512014123240185 ], [ -96.054039167205843, 29.512047123606354 ], [ -96.054120167383843, 29.512085123471106 ], [ -96.054164166823938, 29.512124122977646 ], [ -96.054196167057327, 29.512168123652199 ], [ -96.054208167020576, 29.512206123735336 ], [ -96.054189167023353, 29.512470123500968 ], [ -96.054177167151394, 29.512514123008398 ], [ -96.054101167205971, 29.512652123043051 ], [ -96.054082166982113, 29.512696123514623 ], [ -96.053731167286855, 29.513267123513554 ], [ -96.053724166904146, 29.513339123549862 ], [ -96.05373716704463, 29.51340512364165 ], [ -96.053762167202819, 29.513449123559798 ], [ -96.054315166631056, 29.514180124072176 ], [ -96.054309167133866, 29.514350123957001 ], [ -96.05435916747831, 29.514405123705693 ], [ -96.054403167441052, 29.514438123707841 ], [ -96.05446616675593, 29.514449123351529 ], [ -96.054598167369861, 29.514454123980197 ], [ -96.054642166957677, 29.514471124003553 ], [ -96.054679167124334, 29.514498123728661 ], [ -96.054704166923557, 29.514542123438062 ], [ -96.054717167370001, 29.514625124248454 ], [ -96.054667166934905, 29.515471124003486 ], [ -96.054635167035173, 29.515554124350455 ], [ -96.05455416736558, 29.515686124253406 ], [ -96.054478167206696, 29.515752123609335 ], [ -96.054415166982977, 29.515785124335206 ], [ -96.054321167128961, 29.515818124302285 ], [ -96.053969166877266, 29.515839124340729 ], [ -96.053410167035281, 29.515845124529573 ], [ -96.053290166433058, 29.515861123867456 ], [ -96.053209167154634, 29.515894124416551 ], [ -96.053127167101877, 29.515982124534069 ], [ -96.053102166290003, 29.516065124483752 ], [ -96.05309616647493, 29.516153123841377 ], [ -96.053102166601221, 29.516213124594223 ], [ -96.053133167289104, 29.516290124020063 ], [ -96.053234167101465, 29.516433124505905 ], [ -96.053315166541879, 29.516499124315207 ], [ -96.053705166865342, 29.516994124197243 ], [ -96.053868166880818, 29.517301124015791 ], [ -96.053931166691058, 29.517417124516449 ], [ -96.054101167268684, 29.51761512400866 ], [ -96.054189167264838, 29.517664124138882 ], [ -96.054277167516346, 29.517692124089855 ], [ -96.054403167485873, 29.517708124904928 ], [ -96.054673167598821, 29.517664124621913 ], [ -96.054729167270338, 29.517664124578996 ], [ -96.054918167033023, 29.517653124307738 ], [ -96.055018167596089, 29.517637124243823 ], [ -96.055232166936804, 29.517659124390782 ], [ -96.055446167739234, 29.517725124561178 ], [ -96.055634168018429, 29.517818124369015 ], [ -96.055722167935883, 29.517917124089514 ], [ -96.055772167111215, 29.518016124421386 ], [ -96.055797167563171, 29.518093124577867 ], [ -96.055772167723731, 29.518307124106052 ], [ -96.055571167974591, 29.518643124365273 ], [ -96.055521168027823, 29.518709124730858 ], [ -96.055458167143897, 29.518780124176672 ], [ -96.055251167576174, 29.518928124413062 ], [ -96.05519416712815, 29.518989124554686 ], [ -96.055156167298364, 29.519066124300579 ], [ -96.054767167364304, 29.519654125249843 ], [ -96.054767167436609, 29.519698124673308 ], [ -96.054742166932016, 29.519769125185523 ], [ -96.054717167511498, 29.519808125071133 ], [ -96.054687167317738, 29.519837125310566 ], [ -96.054610167101814, 29.519912124815676 ], [ -96.054515167211008, 29.519940125262792 ], [ -96.054396167151992, 29.519945124629469 ], [ -96.054251167524157, 29.519967124958242 ], [ -96.053755167632858, 29.520253125336943 ], [ -96.053648166784882, 29.520357125226887 ], [ -96.052793167306845, 29.521132125453278 ], [ -96.052573167371037, 29.521347125334142 ], [ -96.052485166364235, 29.521445125025661 ], [ -96.051913166928884, 29.522297125916207 ], [ -96.051807166655891, 29.52244012576768 ], [ -96.051744166691634, 29.522490125226479 ], [ -96.051675166407676, 29.52256712541347 ], [ -96.051316166487183, 29.522781125592903 ], [ -96.050920166219697, 29.523028125273871 ], [ -96.050820166537918, 29.523166125619195 ], [ -96.050776166589117, 29.523254125914455 ], [ -96.050751166327871, 29.52341312546902 ], [ -96.050744166107492, 29.523594126033775 ], [ -96.050763166773024, 29.523699126066504 ], [ -96.050814166938849, 29.523831125681454 ], [ -96.050902166105274, 29.523979126279151 ], [ -96.051002166828894, 29.524095125541397 ], [ -96.051084167077136, 29.524166126248453 ], [ -96.051202166461152, 29.524235125660514 ], [ -96.051281166471668, 29.524281125649786 ], [ -96.051348167087014, 29.524320125958042 ], [ -96.05175016706977, 29.524512125875169 ], [ -96.051875166635796, 29.524617125525825 ], [ -96.051970167264741, 29.52473812591025 ], [ -96.05200716726246, 29.524809125648783 ], [ -96.052064166722246, 29.524974125897614 ], [ -96.052209167013217, 29.525265125631119 ], [ -96.052271166475748, 29.52534812649035 ], [ -96.052347167501949, 29.525419125865604 ], [ -96.052422167066112, 29.52546912648258 ], [ -96.05254816724468, 29.52552912640418 ], [ -96.052636166850832, 29.525546125809409 ], [ -96.053314167185107, 29.525733126035757 ], [ -96.053641167388108, 29.525727126440103 ], [ -96.053836167519165, 29.525760126318819 ], [ -96.054006167007628, 29.525766126114522 ], [ -96.054471167340409, 29.525667126445462 ], [ -96.054886167880909, 29.52551312591044 ], [ -96.055024167694938, 29.525447126434486 ], [ -96.055150167938621, 29.525420126091852 ], [ -96.055238167582758, 29.525414126305414 ], [ -96.055363167556948, 29.525447126413365 ], [ -96.055464168042676, 29.525508126249566 ], [ -96.055571167495273, 29.525617125897657 ], [ -96.055646167352023, 29.525793126076241 ], [ -96.055671167348422, 29.525898126493455 ], [ -96.055659167949315, 29.526085126430583 ], [ -96.055640167916437, 29.52617812573212 ], [ -96.05529416755526, 29.52682712638962 ], [ -96.054999168031031, 29.527448126383124 ], [ -96.054898167811899, 29.52773912646602 ], [ -96.054691167487306, 29.528113126583374 ], [ -96.054684167755696, 29.52834912689752 ], [ -96.054709167354233, 29.528519126855244 ], [ -96.054772167857763, 29.528668126261941 ], [ -96.055407167668491, 29.529894126696114 ], [ -96.055457168096723, 29.52997112669285 ], [ -96.055514167937787, 29.530108126533403 ], [ -96.055558167606108, 29.530300126885919 ], [ -96.055545167929594, 29.530482126962212 ], [ -96.055507168297808, 29.530570127221896 ], [ -96.055451167585147, 29.530619127268533 ], [ -96.055149168229562, 29.530773126797364 ], [ -96.05496116822718, 29.53083912718045 ], [ -96.054891168195581, 29.530877126808349 ], [ -96.054659167933792, 29.531119126895216 ], [ -96.054879167674855, 29.531213127034295 ], [ -96.054998168110458, 29.531279127523508 ], [ -96.055074167713457, 29.531356127171133 ], [ -96.055294167770398, 29.531630127636024 ], [ -96.055375167667108, 29.531773127422564 ], [ -96.055419168526669, 29.531911127106994 ], [ -96.055432167963886, 29.532048127224002 ], [ -96.055413168046442, 29.532186127560561 ], [ -96.055375167812343, 29.532306127409736 ], [ -96.055231168459187, 29.532576127272652 ], [ -96.055212168233282, 29.532642127894373 ], [ -96.05524916848799, 29.532768127212695 ], [ -96.055319168044974, 29.5329091274048 ], [ -96.055432167983213, 29.533136127155061 ], [ -96.055434168535143, 29.533160127175272 ], [ -96.055469167877746, 29.533609127686194 ], [ -96.055450167809568, 29.533697127523705 ], [ -96.05545016771795, 29.533757127533192 ], [ -96.055375168321547, 29.533906127961654 ], [ -96.055230168417125, 29.534049127975226 ], [ -96.055149168552731, 29.534236127814509 ], [ -96.055054167766684, 29.535033128397338 ], [ -96.055054167950942, 29.535098127724027 ], [ -96.055017168241591, 29.535153127581911 ], [ -96.054822168072349, 29.535181128134024 ], [ -96.054807167549697, 29.535182128101471 ], [ -96.054570167632221, 29.535197127692957 ], [ -96.054476168059253, 29.535247127899662 ], [ -96.0544891675423, 29.53547212839581 ], [ -96.054579168251323, 29.536002128515928 ], [ -96.054677167904671, 29.536577128006446 ], [ -96.054702168399459, 29.536637128128071 ], [ -96.05475216794585, 29.536643128624892 ], [ -96.054841167733116, 29.536676128310052 ], [ -96.054897168633943, 29.536720128161068 ], [ -96.054916167978718, 29.536742127933085 ], [ -96.054897167807042, 29.536808128474675 ], [ -96.054903168217194, 29.536890128024144 ], [ -96.054972168340782, 29.536929128724083 ], [ -96.055098167945403, 29.536951128555735 ], [ -96.055192167978134, 29.536945128073832 ], [ -96.055299168055697, 29.536841128750066 ], [ -96.0553811683655, 29.536813128238144 ], [ -96.055469168690664, 29.536819128649416 ], [ -96.055526167992923, 29.536863128553055 ], [ -96.055551167832462, 29.536901128406274 ], [ -96.055563168791423, 29.537006128400193 ], [ -96.05552616782748, 29.537204128415652 ], [ -96.055532168109224, 29.53733012807043 ], [ -96.055538168149241, 29.537363128088202 ], [ -96.055582168425985, 29.53744012838132 ], [ -96.055632168549337, 29.537517128099203 ], [ -96.055720168631439, 29.537594128773698 ], [ -96.056016168566643, 29.537687128469795 ], [ -96.056066168506334, 29.537720128764406 ], [ -96.056116168192077, 29.537836128199107 ], [ -96.056079168896858, 29.538435128939923 ], [ -96.056104168861779, 29.538545128236535 ], [ -96.056166168998715, 29.538655128919959 ], [ -96.056242168099232, 29.538726128270678 ], [ -96.05642416882489, 29.538979128816212 ], [ -96.056443168184884, 29.539078129023455 ], [ -96.056430168485633, 29.539265129057323 ], [ -96.056374168247345, 29.539413128439374 ], [ -96.056330168663422, 29.539496129196166 ], [ -96.056135168722733, 29.53977012908166 ], [ -96.055984168079533, 29.539886129273537 ], [ -96.055840168757484, 29.539968128527963 ], [ -96.055758168412964, 29.539979128607929 ], [ -96.055431168043484, 29.539952129297152 ], [ -96.055154168089118, 29.5398691285809 ], [ -96.054564168241015, 29.539517129249884 ], [ -96.054457167644358, 29.539441129044267 ], [ -96.054187168094955, 29.539281129038411 ], [ -96.054092167671286, 29.539204128402424 ], [ -96.053753167653554, 29.539072128446708 ], [ -96.052923168157093, 29.538896129211235 ], [ -96.052854167329556, 29.538869128907042 ], [ -96.05276016756082, 29.53878112899341 ], [ -96.052747167726878, 29.538726128810634 ], [ -96.052766167579463, 29.538660128555879 ], [ -96.052829167207662, 29.538522129134574 ], [ -96.052848167823569, 29.538413128759288 ], [ -96.052842167865379, 29.538330129074815 ], [ -96.052804167237554, 29.538270129087689 ], [ -96.052747167483446, 29.538215128426693 ], [ -96.052691167694462, 29.538171128614071 ], [ -96.052615168041584, 29.538138128871537 ], [ -96.052521167340387, 29.53811012873042 ], [ -96.052408167765819, 29.538105128628928 ], [ -96.052339167195782, 29.538116128855314 ], [ -96.051616167772451, 29.53828012886137 ], [ -96.051471167670144, 29.538341128429984 ], [ -96.051408166942892, 29.538390128623721 ], [ -96.051352167491444, 29.538478128801366 ], [ -96.051333166895574, 29.538748129048766 ], [ -96.051289167767308, 29.538918128568501 ], [ -96.051069167729409, 29.539627129392585 ], [ -96.051100167714338, 29.540122129510564 ], [ -96.051081166954518, 29.540248129503219 ], [ -96.050993167744508, 29.540380128876823 ], [ -96.050534167458537, 29.540759129040243 ], [ -96.050465166804585, 29.540787129098959 ], [ -96.050371166816092, 29.540809128862229 ], [ -96.050170167484509, 29.540809129166817 ], [ -96.050095167606216, 29.540792129149708 ], [ -96.04991916697918, 29.540677129342605 ], [ -96.049837167411795, 29.540600129089331 ], [ -96.04968016713093, 29.540479129092976 ], [ -96.049598167287542, 29.540435129264189 ], [ -96.049479166607597, 29.540413128946764 ], [ -96.049435166679871, 29.540413129207405 ], [ -96.049328166618068, 29.540457129385672 ], [ -96.049057166796715, 29.54066612891393 ], [ -96.049007166610551, 29.540688129386808 ], [ -96.048957166808222, 29.540693129080726 ], [ -96.048900167279569, 29.540682129691717 ], [ -96.04885616642153, 29.540660129650554 ], [ -96.048762166541351, 29.540578128995495 ], [ -96.048680166975117, 29.540446129126369 ], [ -96.048674166929842, 29.540385129312476 ], [ -96.048680166669484, 29.540292129353002 ], [ -96.048706166972678, 29.540154129244968 ], [ -96.049202166908259, 29.539341128729234 ], [ -96.049234166355845, 29.539209129399559 ], [ -96.049209166492318, 29.539127129049323 ], [ -96.049183167084351, 29.539110128547595 ], [ -96.048938166700168, 29.539006128629222 ], [ -96.048775166302846, 29.53889612911038 ], [ -96.048360166118471, 29.538456128686331 ], [ -96.048121166977367, 29.538286128483115 ], [ -96.048008166096523, 29.538275128871909 ], [ -96.047926166334577, 29.538330128885796 ], [ -96.047600166870609, 29.538599128825428 ], [ -96.04681416660226, 29.539275129157627 ], [ -96.046751165894264, 29.539374129510545 ], [ -96.046732166702668, 29.539473128716281 ], [ -96.04674516584619, 29.539550128735218 ], [ -96.046763166324851, 29.539599129617638 ], [ -96.046795165860189, 29.539643128968624 ], [ -96.046889165767126, 29.53968712933278 ], [ -96.047021166237244, 29.539769129401666 ], [ -96.047103166740357, 29.53987412914994 ], [ -96.047128166269133, 29.539962129278877 ], [ -96.04710916675586, 29.540033129036438 ], [ -96.047034165986673, 29.540077129147416 ], [ -96.046902165772423, 29.540204129660534 ], [ -96.046807166153101, 29.540275129658149 ], [ -96.046713166373692, 29.540270129237747 ], [ -96.046223165906099, 29.540116129661527 ], [ -96.046085166224287, 29.540088129632835 ], [ -96.046022166469029, 29.540088129632295 ], [ -96.04593416591571, 29.540099129251722 ], [ -96.045777165946561, 29.540154129045465 ], [ -96.045726166188402, 29.540181129014485 ], [ -96.045594166183051, 29.540297129575848 ], [ -96.045500165845354, 29.54040112970025 ], [ -96.045450166098192, 29.540440129651287 ], [ -96.045286166161148, 29.540462129737026 ], [ -96.045242166183257, 29.540456129243591 ], [ -96.04516116630154, 29.540418129168522 ], [ -96.045010165383729, 29.540368129440125 ], [ -96.044827165500891, 29.540374128934335 ], [ -96.044017166014783, 29.540527129097025 ], [ -96.043627164975391, 29.54058212989106 ], [ -96.043451165224511, 29.5405551291176 ], [ -96.043269165242918, 29.54042812977567 ], [ -96.043156165299138, 29.540373129498242 ], [ -96.043042165096111, 29.540329129176502 ], [ -96.042885164967757, 29.54029612963102 ], [ -96.042257165136732, 29.540252129201452 ], [ -96.041955164752181, 29.54024712922477 ], [ -96.04167816529737, 29.540274129920338 ], [ -96.041446164636824, 29.540335129048763 ], [ -96.041345165111295, 29.540379129322847 ], [ -96.041144164923665, 29.540521129916943 ], [ -96.040993164601204, 29.54068112917696 ], [ -96.040943164307578, 29.54084012949404 ], [ -96.040911164543274, 29.541516129964577 ], [ -96.040918164900276, 29.541742129379639 ], [ -96.040943165140789, 29.541923129682761 ], [ -96.040980164562953, 29.54200012980634 ], [ -96.041049164666788, 29.542077129532554 ], [ -96.041213165145223, 29.542165129783704 ], [ -96.041414165395395, 29.542225129448507 ], [ -96.041659165518581, 29.542319129970853 ], [ -96.041766164731243, 29.54237412957827 ], [ -96.042149165240559, 29.542682129602539 ], [ -96.042200164922747, 29.542737130243495 ], [ -96.042288165693435, 29.542858130110204 ], [ -96.042300165605795, 29.542907129738399 ], [ -96.042300165615416, 29.542945129689251 ], [ -96.042231165639194, 29.543220129770745 ], [ -96.042218165084165, 29.543336130062094 ], [ -96.042218165306991, 29.543402130403745 ], [ -96.042262165353321, 29.543523129946269 ], [ -96.04238816482993, 29.543611130197288 ], [ -96.042514165360998, 29.5436661297312 ], [ -96.042677165405976, 29.543704129823176 ], [ -96.042903165773794, 29.543682130226479 ], [ -96.043274165364224, 29.543490129987052 ], [ -96.043413165652069, 29.543479129680804 ], [ -96.043444165366992, 29.543484130277427 ], [ -96.043482165938144, 29.543523130167195 ], [ -96.043519166039687, 29.543583129646027 ], [ -96.043538165722822, 29.543644130113584 ], [ -96.04355716609939, 29.544012130191373 ], [ -96.043513165319126, 29.544237129772696 ], [ -96.043048165065187, 29.545320130736268 ], [ -96.042978165323618, 29.5453911303503 ], [ -96.042878165619129, 29.545446130071404 ], [ -96.042595164975793, 29.545540130547717 ], [ -96.042463165459509, 29.545628130462124 ], [ -96.042387165268778, 29.545721130743335 ], [ -96.042262165168481, 29.545908130936748 ], [ -96.042249165827485, 29.546007130423529 ], [ -96.042205165222299, 29.546128130245336 ], [ -96.042136165652991, 29.546232130492857 ], [ -96.042098165402479, 29.546271131105659 ], [ -96.042023165070958, 29.546315130311569 ], [ -96.041796165617242, 29.546370130508258 ], [ -96.04171516561621, 29.546419130628223 ], [ -96.041576165161374, 29.546523130784717 ], [ -96.041344165095751, 29.54674313091683 ], [ -96.041268165297254, 29.546859130735374 ], [ -96.04123716466826, 29.546936130668218 ], [ -96.041193165132782, 29.54709513102042 ], [ -96.041168165210848, 29.547458130508907 ], [ -96.041205165350121, 29.547573131271196 ], [ -96.041256165350049, 29.547617130776469 ], [ -96.041394165038383, 29.547694130550514 ], [ -96.041607164948786, 29.547897130807758 ], [ -96.0416391651558, 29.547963131414022 ], [ -96.041651165796893, 29.548123130662976 ], [ -96.041557164938979, 29.548425130710925 ], [ -96.04154416569402, 29.548491131316972 ], [ -96.041551165312725, 29.548552130978003 ], [ -96.041601165166625, 29.548672131488154 ], [ -96.041676164937286, 29.548766131489874 ], [ -96.041720165654993, 29.548854131367669 ], [ -96.041701165755768, 29.548991131500173 ], [ -96.041530165038054, 29.549458131416234 ], [ -96.041488165051959, 29.549656131751298 ], [ -96.041506165287828, 29.549722131302044 ], [ -96.041544165281707, 29.549794131318901 ], [ -96.041576165118954, 29.549827131314551 ], [ -96.04163816543695, 29.549860131601015 ], [ -96.041720165106071, 29.549882131529362 ], [ -96.041921165779286, 29.549893131415885 ], [ -96.042110165394135, 29.549942131702572 ], [ -96.042694165227559, 29.550283131052705 ], [ -96.042870165969887, 29.550459131828823 ], [ -96.042958166140082, 29.550569131290171 ], [ -96.042952165966227, 29.550651131320745 ], [ -96.04292116556671, 29.550723131361448 ], [ -96.042380165375732, 29.551410131605472 ], [ -96.042392166112435, 29.551783131949652 ], [ -96.042373165510142, 29.551921132111648 ], [ -96.042317165380211, 29.552003131916226 ], [ -96.042235165886964, 29.552058132206245 ], [ -96.042116165464492, 29.552108131557787 ], [ -96.042053165390698, 29.552146131526928 ], [ -96.041877165190087, 29.552333132331452 ], [ -96.041851165313261, 29.552426131748842 ], [ -96.041776165462309, 29.55311313221025 ], [ -96.041795166051514, 29.553234131839794 ], [ -96.041826166046064, 29.553289132239787 ], [ -96.041883166066029, 29.553355132396195 ], [ -96.04221016606887, 29.553542132099146 ], [ -96.042524166022034, 29.553790132260946 ], [ -96.04258016620885, 29.553867132129081 ], [ -96.042612165842556, 29.553932132305711 ], [ -96.042750165652905, 29.55437813204373 ], [ -96.042907166005037, 29.554493132042094 ], [ -96.043058165510502, 29.55457613225207 ], [ -96.043102165579953, 29.554620132262137 ], [ -96.043146166315225, 29.554741132009106 ], [ -96.043158165951027, 29.554900132557922 ], [ -96.043177165793068, 29.554944132151455 ], [ -96.043234165518228, 29.555010132564764 ], [ -96.043535165964215, 29.55521313229044 ], [ -96.04359816571619, 29.55529013207499 ], [ -96.043630166400945, 29.555356132932918 ], [ -96.043636166378974, 29.555417132822033 ], [ -96.043567165776921, 29.555829132540921 ], [ -96.043611166120868, 29.555906132881347 ], [ -96.043680166115493, 29.55598813278629 ], [ -96.043762165869978, 29.556016132477968 ], [ -96.04400116585073, 29.556038132722641 ], [ -96.044063166685987, 29.556060132181166 ], [ -96.044126166299662, 29.556137132582037 ], [ -96.044139166717912, 29.556203133033016 ], [ -96.044133165891438, 29.556313132384922 ], [ -96.044051166285911, 29.556445132580837 ], [ -96.043950165779719, 29.556554132348644 ], [ -96.043824165822997, 29.556615132461069 ], [ -96.043755166702084, 29.556664132882393 ], [ -96.04372416636609, 29.556714133002803 ], [ -96.04372416578714, 29.556758133073139 ], [ -96.043755165978766, 29.55680213246988 ], [ -96.04379916647963, 29.556829132384784 ], [ -96.043868165998603, 29.556840132716257 ], [ -96.044026165887772, 29.556813132801008 ], [ -96.044107165864773, 29.556862132721903 ], [ -96.044183165953442, 29.556956133220208 ], [ -96.044195165988825, 29.557049132551192 ], [ -96.044176165960792, 29.557406133116558 ], [ -96.044182166443989, 29.557461132699366 ], [ -96.044208166247003, 29.557522133198617 ], [ -96.044277165918032, 29.557582132689994 ], [ -96.04435916611996, 29.557599133320668 ], [ -96.044503166497037, 29.557582132531632 ], [ -96.044585166801738, 29.557588132557235 ], [ -96.044729166852846, 29.55764313277427 ], [ -96.04482416610702, 29.557758132996618 ], [ -96.044918166220612, 29.557907133267516 ], [ -96.04493116635868, 29.557967133339279 ], [ -96.044924166978589, 29.558061133392691 ], [ -96.044805166144329, 29.55890113340056 ], [ -96.044830166116725, 29.559066133185798 ], [ -96.044880166725704, 29.559154133373678 ], [ -96.044918166338704, 29.559253133283036 ], [ -96.044741166596737, 29.56027013335822 ], [ -96.044508166579988, 29.561831133979283 ], [ -96.044502166777818, 29.561952133691221 ], [ -96.044546166802647, 29.5621391335998 ], [ -96.044603167103404, 29.562243133905895 ], [ -96.044753166496889, 29.562364133818356 ], [ -96.045131167072924, 29.56257313390384 ], [ -96.045294167283998, 29.562666134042608 ], [ -96.045483167179697, 29.562705133878836 ], [ -96.045602166517952, 29.562787134117894 ], [ -96.045671166463507, 29.562859134127006 ], [ -96.045822167270217, 29.562969133686099 ], [ -96.046080167000142, 29.563057134303641 ], [ -96.046444166805088, 29.563150134262809 ], [ -96.046520167595091, 29.563178134080012 ], [ -96.046627166791353, 29.563194133733752 ], [ -96.046740166938918, 29.563189134080442 ], [ -96.046834167155907, 29.563194134001407 ], [ -96.0469221674403, 29.563216133846225 ], [ -96.047016167800521, 29.563282134323966 ], [ -96.047086166882309, 29.563381134161904 ], [ -96.047117167136705, 29.563464134228557 ], [ -96.047249167789985, 29.563656133833959 ], [ -96.047368167019968, 29.563761134262961 ], [ -96.04751916728766, 29.563805133640273 ], [ -96.048010167993311, 29.563893133708049 ], [ -96.048469167699182, 29.564057133717363 ], [ -96.048789168282028, 29.564156133877212 ], [ -96.049349168409051, 29.564206134541671 ], [ -96.049430168322033, 29.564228134404743 ], [ -96.049657167708659, 29.564354134235113 ], [ -96.049789167568704, 29.564492134409228 ], [ -96.050015167853573, 29.564624134366802 ], [ -96.05022316805713, 29.56464013396462 ], [ -96.050329167789457, 29.564635133902037 ], [ -96.050405168322015, 29.564618134173916 ], [ -96.050549167843073, 29.564558134005395 ], [ -96.050713167988036, 29.564574133681784 ], [ -96.050958168044488, 29.56467313449479 ], [ -96.051235168058099, 29.564756133927251 ], [ -96.051492168989896, 29.564827134573296 ], [ -96.0517561682326, 29.564871134484168 ], [ -96.051863168673989, 29.564915133724238 ], [ -96.051958168305347, 29.564987133908527 ], [ -96.052046168278551, 29.565058134039425 ], [ -96.05220316895975, 29.56521213463364 ], [ -96.05227816858168, 29.565245134500284 ], [ -96.052329168745118, 29.565262134578095 ], [ -96.052398169064759, 29.565251134012225 ], [ -96.052530168712437, 29.56517913395415 ], [ -96.052643168407428, 29.565130133860364 ], [ -96.052731168382707, 29.565152134316079 ], [ -96.05286316868829, 29.565229134360333 ], [ -96.052938168707925, 29.565251134333518 ], [ -96.053033169349789, 29.565256133840432 ], [ -96.053246168704547, 29.56522913427828 ], [ -96.05333416946506, 29.565207134439568 ], [ -96.053397169117758, 29.565207134262788 ], [ -96.053441169227895, 29.565218133798744 ], [ -96.053536169527121, 29.565344134040497 ], [ -96.053580169349829, 29.565388133903376 ], [ -96.053693169154613, 29.565454133792436 ], [ -96.053800169083104, 29.565476134190614 ], [ -96.053894169102691, 29.565476134311204 ], [ -96.054101168736352, 29.565454134096701 ], [ -96.054152169348754, 29.565460133955909 ], [ -96.054309169305327, 29.565542134594992 ], [ -96.05460416955728, 29.565729133860419 ], [ -96.054762169208871, 29.565839134476132 ], [ -96.054963169563308, 29.566026134306185 ], [ -96.055327169117476, 29.566411134345255 ], [ -96.055547170085774, 29.566647134631815 ], [ -96.055588169871001, 29.56667913407691 ], [ -96.055698169850814, 29.566763134532881 ], [ -96.055969169637493, 29.566878134748926 ], [ -96.05642716963284, 29.567015134283562 ], [ -96.056622169432202, 29.567109134869252 ], [ -96.056792170051963, 29.567263134270153 ], [ -96.056868169486876, 29.567373134729326 ], [ -96.056911169685577, 29.567422134182433 ], [ -96.056955169961938, 29.567450134075198 ], [ -96.05701216991406, 29.567472134556606 ], [ -96.057094170539045, 29.567444134462001 ], [ -96.057131169668196, 29.567417134320806 ], [ -96.057169169729903, 29.567351134866701 ], [ -96.05725717006743, 29.567257134226733 ], [ -96.05730117055748, 29.567235134834821 ], [ -96.05738317030675, 29.567219134097694 ], [ -96.057490170125817, 29.567219134257499 ], [ -96.057943169953703, 29.567279134758248 ], [ -96.05800617058695, 29.567318134770069 ], [ -96.058056170587236, 29.567395134524126 ], [ -96.057987170156082, 29.567697134479975 ], [ -96.057980170719119, 29.567856134487887 ], [ -96.05799317054101, 29.567933134493146 ], [ -96.058012169856411, 29.56796113466045 ], [ -96.05811217059815, 29.567994135021856 ], [ -96.058244169990914, 29.568005134276795 ], [ -96.058288170602665, 29.567999134258471 ], [ -96.058357170196928, 29.567966134275586 ], [ -96.058471170640104, 29.567879134532376 ], [ -96.058596170366812, 29.567807134357246 ], [ -96.058684170399474, 29.56778013439618 ], [ -96.058854170314703, 29.567791134750411 ], [ -96.058942170607338, 29.567835134560816 ], [ -96.058993170953272, 29.567912134269932 ], [ -96.059030170138442, 29.567994134956884 ], [ -96.059074170968884, 29.568186134813338 ], [ -96.059118170891637, 29.56828013460321 ], [ -96.059219170937581, 29.568412134485502 ], [ -96.059294171049615, 29.568483134417644 ], [ -96.059407170921958, 29.568544134510688 ], [ -96.059527170714901, 29.568582135012786 ], [ -96.059854170569054, 29.568588134857841 ], [ -96.06000517122267, 29.56866513458014 ], [ -96.059998170611337, 29.568901134687508 ], [ -96.060086170887473, 29.569357134364239 ], [ -96.06006117081229, 29.569566134944193 ], [ -96.060168171322985, 29.569995135043424 ], [ -96.060269171003156, 29.570132135092297 ], [ -96.060413170569973, 29.570357134696863 ], [ -96.060545171220838, 29.570594135313577 ], [ -96.060614170659335, 29.570764135192164 ], [ -96.060715170976238, 29.571308135112073 ], [ -96.060866170926673, 29.571765135626308 ], [ -96.061048171283929, 29.572248135642482 ], [ -96.0612491716184, 29.572715135212778 ], [ -96.061362171552574, 29.572941135727078 ], [ -96.061475170907201, 29.573128135630085 ], [ -96.061595171809088, 29.573282135529634 ], [ -96.061708171730018, 29.573639135807031 ], [ -96.061771172033176, 29.573694135332907 ], [ -96.061922171776857, 29.573749135421682 ], [ -96.062067172016413, 29.573979136075064 ], [ -96.062236171414298, 29.574216135888729 ], [ -96.062261171252985, 29.574265136113993 ], [ -96.062274171564425, 29.574370135593714 ], [ -96.062312171826392, 29.574469136065826 ], [ -96.062463171499957, 29.575007136110393 ], [ -96.062551171435345, 29.575161136223358 ], [ -96.062588171948917, 29.575255136119996 ], [ -96.062651171612956, 29.57537013634639 ], [ -96.062752171647702, 29.575519135493192 ], [ -96.063028171542129, 29.575804135989326 ], [ -96.063110171494444, 29.575914135994488 ], [ -96.063154172293707, 29.575991136281424 ], [ -96.063186172119543, 29.576079136088197 ], [ -96.063198172255397, 29.576255135749971 ], [ -96.063192172057683, 29.576382136544652 ], [ -96.06316717169652, 29.576458136311075 ], [ -96.063079171576604, 29.576590135693085 ], [ -96.062934171525725, 29.576750136281849 ], [ -96.062192172166618, 29.577316136429005 ], [ -96.062129172079594, 29.577376136647569 ], [ -96.06207917222261, 29.5774591361447 ], [ -96.061991171362109, 29.577613136473541 ], [ -96.061966171992552, 29.577821136061804 ], [ -96.0619721712537, 29.57786013649277 ], [ -96.061978172140982, 29.577915136604954 ], [ -96.06201617196588, 29.57803013669594 ], [ -96.062116171818403, 29.578239136137167 ], [ -96.06253117163061, 29.578904137063468 ], [ -96.06258817147004, 29.579014137026871 ], [ -96.062594172044101, 29.579113136767937 ], [ -96.062601172350639, 29.579135136897218 ], [ -96.062594171934421, 29.579251136927951 ], [ -96.062550172010177, 29.579481137019179 ], [ -96.062494171732752, 29.57971813644405 ], [ -96.062456171803959, 29.57982813693754 ], [ -96.062336171832698, 29.580069137155387 ], [ -96.061972171914547, 29.580476137039604 ], [ -96.06193417237759, 29.580537136643962 ], [ -96.061909171738236, 29.580592137238419 ], [ -96.061903172068583, 29.58065813675152 ], [ -96.061909172340549, 29.580696137145825 ], [ -96.061965172244115, 29.58078913735233 ], [ -96.062795172302145, 29.582131136966307 ], [ -96.062827171817219, 29.582208137233181 ], [ -96.062833172306924, 29.582328137576781 ], [ -96.062802172235152, 29.582477136959032 ], [ -96.062795171958825, 29.582570137057957 ], [ -96.062720172034133, 29.582873137520821 ], [ -96.062688172078708, 29.583076137450774 ], [ -96.062695171680531, 29.583224137173644 ], [ -96.062732172204448, 29.583444137328566 ], [ -96.062739172334886, 29.583505137797751 ], [ -96.062764172475269, 29.583571137434078 ], [ -96.062776172113686, 29.583642137889168 ], [ -96.062770172480597, 29.583724137913244 ], [ -96.062575172422967, 29.583972137925553 ], [ -96.062506171719846, 29.584005137440915 ], [ -96.062342171626653, 29.58406013729811 ], [ -96.06218517225166, 29.584065137429207 ], [ -96.062041171660098, 29.584104137867495 ], [ -96.061783171882425, 29.584230138152932 ], [ -96.061701171822804, 29.584285137672563 ], [ -96.061537171483977, 29.584434137843928 ], [ -96.061280171617639, 29.584741138028921 ], [ -96.061192171853534, 29.584956137968309 ], [ -96.06116017215372, 29.58506613807911 ], [ -96.061129171750451, 29.585280138276897 ], [ -96.061129171439376, 29.585324137908589 ], [ -96.061261172020977, 29.585676137614094 ], [ -96.061298171504035, 29.585747137715753 ], [ -96.061311171541078, 29.585906137861308 ], [ -96.06129217185466, 29.58600013782841 ], [ -96.061242172076604, 29.586082137830584 ], [ -96.061066171873151, 29.586209138465371 ], [ -96.060393171358285, 29.58624213833307 ], [ -96.060305171826286, 29.586258138393884 ], [ -96.060229171324835, 29.586302138549222 ], [ -96.060110172121924, 29.586407137990491 ], [ -96.059802171413793, 29.586940138456214 ], [ -96.059563171597603, 29.587885138480296 ], [ -96.059531171489141, 29.588033138511889 ], [ -96.059525171725284, 29.588149138571595 ], [ -96.059531171155086, 29.588396138566186 ], [ -96.059556171970371, 29.58845113840604 ], [ -96.059569171773333, 29.588523138558418 ], [ -96.059707171511107, 29.588786138583611 ], [ -96.059839171998561, 29.588990139164391 ], [ -96.059996171473784, 29.589166138427078 ], [ -96.060103171558268, 29.589265139179957 ], [ -96.060808171903076, 29.589787139077835 ], [ -96.061122172579218, 29.590084138643906 ], [ -96.061443172612869, 29.590331138849859 ], [ -96.061543171864173, 29.590424138739206 ], [ -96.061663172232599, 29.59055113937384 ], [ -96.061958172031254, 29.591133139085358 ], [ -96.062141172622077, 29.591364138812899 ], [ -96.062329172371093, 29.591529139477743 ], [ -96.062417172825306, 29.591579139183459 ], [ -96.062505172338888, 29.591617139337842 ], [ -96.062732172219185, 29.591645139467751 ], [ -96.062946172157169, 29.59163913886875 ], [ -96.06318417282084, 29.591612138858778 ], [ -96.063436172397473, 29.591557138876386 ], [ -96.06392017277463, 29.591485139315278 ], [ -96.064059172504329, 29.591474138837306 ], [ -96.064543173401646, 29.591480139444062 ], [ -96.064908173606042, 29.591551138846793 ], [ -96.065379172839371, 29.591689139499451 ], [ -96.065492173403456, 29.591711139541196 ], [ -96.065606173337528, 29.59171613922852 ], [ -96.065838173352105, 29.59167813884406 ], [ -96.066027173300071, 29.591623139501479 ], [ -96.066291173123901, 29.591529138941112 ], [ -96.066423173451057, 29.59148513947131 ], [ -96.066568174007656, 29.591392139140286 ], [ -96.066606173964317, 29.591381138961722 ], [ -96.067071173901141, 29.591035139111881 ], [ -96.067209174039405, 29.591029138889908 ], [ -96.067335174044402, 29.591068138568335 ], [ -96.069027174466058, 29.591667139458618 ], [ -96.069901174267116, 29.5918651390378 ], [ -96.069983174584252, 29.59189813895091 ], [ -96.070322174715059, 29.592090138820346 ], [ -96.070599174239035, 29.59223313893288 ], [ -96.070737174687309, 29.592293138779979 ], [ -96.070857174744674, 29.59233713922421 ], [ -96.07115817438509, 29.592392139377633 ], [ -96.071360174901741, 29.592469139387752 ], [ -96.071687174730428, 29.592777138970849 ], [ -96.072416174929458, 29.593624138911562 ], [ -96.072643175642838, 29.593887139583639 ], [ -96.072718175641583, 29.594019139013056 ], [ -96.072869175229769, 29.594201139223387 ], [ -96.073077174892205, 29.594382139820137 ], [ -96.073272175657195, 29.594503139227648 ], [ -96.073693175509888, 29.594706139875633 ], [ -96.07388817551417, 29.59481613982852 ], [ -96.074429176064669, 29.595267139440075 ], [ -96.075033175832516, 29.59593714005608 ], [ -96.075202175744394, 29.596152140125739 ], [ -96.07532217647281, 29.596278139539198 ], [ -96.075441176139648, 29.596388139983365 ], [ -96.075536176238074, 29.596493139964817 ], [ -96.075831176164044, 29.596745139703653 ], [ -96.076064175898537, 29.596861140252745 ], [ -96.076580175927035, 29.59704814025455 ], [ -96.076875176418156, 29.597169139497314 ], [ -96.07723417667097, 29.597372140339328 ], [ -96.077290176808887, 29.597416140099213 ], [ -96.077485176834742, 29.597674140270982 ], [ -96.077743176362389, 29.597834139892061 ], [ -96.07783117635411, 29.59787213960902 ], [ -96.078504177188734, 29.598114139912926 ], [ -96.07910817701557, 29.598416140091256 ], [ -96.079316176846447, 29.598515140000476 ], [ -96.079523177124429, 29.598647140270003 ], [ -96.079787177429125, 29.598768140319876 ], [ -96.080045177018505, 29.598922139683697 ], [ -96.080215177491709, 29.599065140296691 ], [ -96.080831177740549, 29.599449140039027 ], [ -96.081278177681142, 29.599614140607951 ], [ -96.081680178053389, 29.599713140247381 ], [ -96.082089178109726, 29.599812140589687 ], [ -96.082158177778354, 29.599856140122007 ], [ -96.082573177933497, 29.600070139994315 ], [ -96.082699177673376, 29.600125140487627 ], [ -96.082831177653645, 29.600213140728311 ], [ -96.083014178191945, 29.600367140632358 ], [ -96.083240178207504, 29.600521139921025 ], [ -96.083379177973029, 29.600603140412197 ], [ -96.083467178378001, 29.600669140606453 ], [ -96.083907178612876, 29.600900140012801 ], [ -96.08418417874833, 29.601021140041528 ], [ -96.084397178152287, 29.601059139968768 ], [ -96.084699178222309, 29.601065140281776 ], [ -96.085366178287956, 29.601054140651993 ], [ -96.085882179007058, 29.60105914005543 ], [ -96.087328179155236, 29.601229140586785 ], [ -96.087712178857416, 29.60130113996459 ], [ -96.088228179533971, 29.601389140351241 ], [ -96.088404179494475, 29.601411140558408 ], [ -96.088483179512281, 29.60144414019118 ], [ -96.08860217925475, 29.601493140484493 ], [ -96.088624180011848, 29.601502140171263 ], [ -96.08891917957817, 29.601663140129357 ], [ -96.089278179297878, 29.60186113995001 ], [ -96.089347179257928, 29.601867140205925 ], [ -96.089357179844015, 29.601870140314926 ], [ -96.089404179661258, 29.601883140457264 ], [ -96.089725179844379, 29.601910140634217 ], [ -96.090001179531967, 29.601933140489901 ], [ -96.090146180047498, 29.601955140164034 ], [ -96.090379179594876, 29.602032140320205 ], [ -96.090467180018365, 29.60209714025477 ], [ -96.09072518029744, 29.602361140731315 ], [ -96.090800180666903, 29.602433140415542 ], [ -96.090888180086282, 29.602499140054562 ], [ -96.091140179936758, 29.602614140337721 ], [ -96.092436181117407, 29.603169140129204 ], [ -96.09342318085011, 29.603784140995238 ], [ -96.093631181365737, 29.603988141032019 ], [ -96.093662181244625, 29.604048140586716 ], [ -96.093858180579986, 29.60497714054608 ], [ -96.093864181193481, 29.605213140514877 ], [ -96.093851180884315, 29.605433140803541 ], [ -96.093826180734268, 29.605708140639933 ], [ -96.093744181347049, 29.606258141090262 ], [ -96.093701181242579, 29.606445141559895 ], [ -96.09368218155447, 29.606571141272369 ], [ -96.093575181423205, 29.606895141632361 ], [ -96.093399180775307, 29.607324141647663 ], [ -96.093317181391811, 29.607527141718503 ], [ -96.093292180989778, 29.607626141311069 ], [ -96.093292180842155, 29.607698141902169 ], [ -96.093311180904081, 29.607753141520771 ], [ -96.093361180643925, 29.607813141345623 ], [ -96.093412181046943, 29.607901141805353 ], [ -96.093462180688675, 29.608050141620165 ], [ -96.093449180700645, 29.608330141189157 ], [ -96.093387180969998, 29.60879214148159 ], [ -96.093387180735618, 29.608962141348737 ], [ -96.09341818130018, 29.609132141317971 ], [ -96.093569180783234, 29.609369141728983 ], [ -96.093645181258225, 29.609979141469228 ], [ -96.093770180779998, 29.610232142155066 ], [ -96.093815181146724, 29.610364142007253 ], [ -96.093871181701985, 29.610479142133403 ], [ -96.09388418106559, 29.610550141577093 ], [ -96.093953181592482, 29.610968142118168 ], [ -96.094022181819895, 29.611149142386402 ], [ -96.094085180986127, 29.611215141780406 ], [ -96.094236181463927, 29.611292142601872 ], [ -96.094431181266231, 29.611369141961745 ], [ -96.094551181611578, 29.611435142353933 ], [ -96.094639181482989, 29.611496141786237 ], [ -96.094689181887105, 29.611584142470758 ], [ -96.094746181652539, 29.611941142403719 ], [ -96.094740181645946, 29.612128142128519 ], [ -96.094759181447102, 29.612243142608634 ], [ -96.094847182145742, 29.612408142101 ], [ -96.094941181699411, 29.612496142111166 ], [ -96.095092181592605, 29.612573142778395 ], [ -96.095312181611447, 29.612611142115927 ], [ -96.095601182262385, 29.61262214273664 ], [ -96.095929182078123, 29.612705142102016 ], [ -96.096243181872168, 29.612809142305398 ], [ -96.096671182035763, 29.61290214209356 ], [ -96.096910182572387, 29.612996142322842 ], [ -96.097017181712104, 29.613018142717713 ], [ -96.09704218267774, 29.613012142555029 ], [ -96.097602182760539, 29.613067142025677 ], [ -96.098124182258104, 29.613215142605664 ], [ -96.098212182945474, 29.613215142086965 ], [ -96.098350182342685, 29.613199142364387 ], [ -96.098451182390789, 29.613204142069787 ], [ -96.09855218220514, 29.613254142520272 ], [ -96.098640182375945, 29.613320142015773 ], [ -96.098715182267952, 29.613391142171 ], [ -96.098935182441949, 29.613512142410077 ], [ -96.099225183177452, 29.6136881426653 ], [ -96.099370182561813, 29.613930142145307 ], [ -96.10004918323105, 29.614441142970925 ], [ -96.100596183192437, 29.614831142667821 ], [ -96.101867183583963, 29.615770142625809 ], [ -96.10211318365559, 29.615930142460616 ], [ -96.102182184031832, 29.615952142455189 ], [ -96.102314183357791, 29.616001142430338 ], [ -96.102446183471272, 29.61599614318245 ], [ -96.102635183251323, 29.615858142843745 ], [ -96.102700184242025, 29.615770142569236 ], [ -96.10350118397308, 29.616395142801846 ], [ -96.103535184158318, 29.616418142644722 ], [ -96.104415184464642, 29.617002143257647 ], [ -96.106234185034808, 29.618336142910902 ], [ -96.106422185245137, 29.618479143522617 ], [ -96.106536184762916, 29.618633143301931 ], [ -96.10661118477455, 29.618869143080236 ], [ -96.106718184591969, 29.619045143294088 ], [ -96.106876185158711, 29.619243143449165 ], [ -96.106945185325316, 29.61931414344372 ], [ -96.107146185022856, 29.619573143229275 ], [ -96.107159185000668, 29.619611143231282 ], [ -96.107285185504907, 29.619809143335605 ], [ -96.107348184901738, 29.619919143030248 ], [ -96.107373185219629, 29.62005114386918 ], [ -96.107455185397882, 29.620353143692402 ], [ -96.107511184947015, 29.620419143864414 ], [ -96.107625185239257, 29.620639143550076 ], [ -96.107675185629319, 29.620705143946601 ], [ -96.107971185575309, 29.620980143371273 ], [ -96.10805918509412, 29.621095143291807 ], [ -96.108166185843046, 29.621320143780235 ], [ -96.108241185603617, 29.621436143349744 ], [ -96.108355184953098, 29.621540143329231 ], [ -96.109015186073407, 29.621996143764804 ], [ -96.109166185394855, 29.622134144033556 ], [ -96.109254186120893, 29.622188144065248 ], [ -96.109475185986625, 29.622353143741268 ], [ -96.109563185475992, 29.622452144156181 ], [ -96.109657186275157, 29.622529143853175 ], [ -96.109972185570101, 29.622683143754305 ], [ -96.110060185513589, 29.62271014374581 ], [ -96.11016118546371, 29.622771144175911 ], [ -96.11020518642637, 29.622820143718091 ], [ -96.110274186020959, 29.622886143558752 ], [ -96.110324185899643, 29.622908144066297 ], [ -96.110393186340261, 29.622925144097792 ], [ -96.110626185624156, 29.622908143891358 ], [ -96.11072018645055, 29.622914143655105 ], [ -96.111331186221662, 29.623078144307716 ], [ -96.111721186190763, 29.623232144221248 ], [ -96.111979186706677, 29.623298144409677 ], [ -96.112023186568024, 29.623320143848829 ], [ -96.112061185983023, 29.623358143960679 ], [ -96.112130186021247, 29.623457144145988 ], [ -96.112193186472226, 29.623507144154228 ], [ -96.112356186546322, 29.623567144064257 ], [ -96.112589186894496, 29.623622144081409 ], [ -96.11338218663029, 29.623726144050625 ], [ -96.113615186670245, 29.623770143918865 ], [ -96.113986187454742, 29.623792144418513 ], [ -96.114678186705078, 29.62378614399605 ], [ -96.114866186712121, 29.623764143578679 ], [ -96.115099187019752, 29.623720144277605 ], [ -96.115338187051975, 29.623687144070004 ], [ -96.115596186919944, 29.623605143495084 ], [ -96.116257187866395, 29.623341144189187 ], [ -96.116300187957464, 29.623313143513666 ], [ -96.116357187173961, 29.623269143732106 ], [ -96.116728187402884, 29.622912143764065 ], [ -96.116760188152014, 29.622868144038645 ], [ -96.117646187715707, 29.621917143872867 ], [ -96.117948188238728, 29.621449143179291 ], [ -96.117986188055795, 29.621416143435621 ], [ -96.118143187502511, 29.621317143232481 ], [ -96.118426187508462, 29.621004143070913 ], [ -96.118608188345931, 29.620751143575244 ], [ -96.118702188132062, 29.62057014356051 ], [ -96.118941187841813, 29.619718143141004 ], [ -96.119042188031941, 29.619388142797789 ], [ -96.11909218807331, 29.619256142623158 ], [ -96.119136188218775, 29.619179143021409 ], [ -96.119174188578398, 29.619157143099475 ], [ -96.119343187830808, 29.619113143328772 ], [ -96.119419187923782, 29.61907414250599 ], [ -96.119488187901226, 29.619014143227943 ], [ -96.119659187800181, 29.618891142717487 ], [ -96.119809188338081, 29.618783142391351 ], [ -96.119922188179174, 29.618739142421965 ], [ -96.119997188278234, 29.618733142733682 ], [ -96.120331188044347, 29.618739142707611 ], [ -96.120526188870443, 29.618766143197423 ], [ -96.120652188797109, 29.618761143042661 ], [ -96.120822188448486, 29.618739142466747 ], [ -96.121073188344241, 29.618661142599716 ], [ -96.121249189089951, 29.618524142819453 ], [ -96.121425188912795, 29.618403142990637 ], [ -96.121545188181571, 29.618354142351169 ], [ -96.121633188765088, 29.618332142311161 ], [ -96.121985188952578, 29.618298143096126 ], [ -96.12216118923557, 29.618293142842255 ], [ -96.123281188615081, 29.618452142632357 ], [ -96.124508189731429, 29.618776142600638 ], [ -96.124621189267302, 29.61881414235603 ], [ -96.125005189168746, 29.61895714246355 ], [ -96.12522518966216, 29.619050142313611 ], [ -96.125281189785795, 29.619073142487299 ], [ -96.125941189899265, 29.619441143188247 ], [ -96.126696190114345, 29.619947142953663 ], [ -96.126790190026014, 29.620085142808165 ], [ -96.12685319009455, 29.620233143209614 ], [ -96.126903190468028, 29.620382142469381 ], [ -96.126966190160118, 29.620640143058271 ], [ -96.12703519011508, 29.620860142946899 ], [ -96.127324190144208, 29.621602143432515 ], [ -96.127374190274892, 29.62169014270949 ], [ -96.127450190001341, 29.621756142957441 ], [ -96.127525190766022, 29.621800143153077 ], [ -96.127594190580936, 29.62182814340068 ], [ -96.127758190374124, 29.62193814279707 ], [ -96.128091190762191, 29.622185142947146 ], [ -96.128160190204198, 29.622240143153157 ], [ -96.128544190755477, 29.622609142969672 ], [ -96.128701190251789, 29.622642143617618 ], [ -96.129198191200473, 29.622796143200159 ], [ -96.130607191641829, 29.622857143119123 ], [ -96.130695191682634, 29.622852143567766 ], [ -96.130846190875857, 29.622857143633482 ], [ -96.131160191356571, 29.622797143577699 ], [ -96.131236191403673, 29.622775143493392 ], [ -96.131318190957728, 29.622742142807642 ], [ -96.131544190878529, 29.622621143008306 ], [ -96.131739191936546, 29.622533143015733 ], [ -96.131966191313353, 29.622347143488955 ], [ -96.132759191915113, 29.621511142709696 ], [ -96.132954192037261, 29.621374143229488 ], [ -96.133388191327725, 29.621193142735645 ], [ -96.133514191717609, 29.621111143271055 ], [ -96.133672192132849, 29.620990142809099 ], [ -96.133974191927379, 29.620737142833956 ], [ -96.134137191718168, 29.620616142406107 ], [ -96.134383192073642, 29.620512143103394 ], [ -96.134603192543196, 29.620402142561641 ], [ -96.13481719217063, 29.620325142547298 ], [ -96.135056192121496, 29.620287142565072 ], [ -96.135169192140637, 29.620248142528883 ], [ -96.135434192349152, 29.620111142533556 ], [ -96.13554719261289, 29.620040142805056 ], [ -96.135874191941895, 29.619947142688552 ], [ -96.136220192246242, 29.619930142935189 ], [ -96.136667192996157, 29.619925142819689 ], [ -96.136868192547993, 29.619947142063879 ], [ -96.137082192654717, 29.619931142626054 ], [ -96.137229192497941, 29.619934142061854 ], [ -96.137321192346661, 29.619936142608829 ], [ -96.137459192796015, 29.619942142448146 ], [ -96.139800193325044, 29.619618141896687 ], [ -96.140253193393477, 29.619564142141794 ], [ -96.140831193477212, 29.619558142289883 ], [ -96.141372193578661, 29.619586142268979 ], [ -96.141630193924371, 29.61960814256469 ], [ -96.141844194357034, 29.619641142247129 ], [ -96.142159193661001, 29.619724141829234 ], [ -96.142354194351142, 29.619823142480659 ], [ -96.142693194242199, 29.620048142612625 ], [ -96.142813194469397, 29.620114142028058 ], [ -96.142920193941762, 29.620197141875948 ], [ -96.14318419390122, 29.620494141968731 ], [ -96.14327819410471, 29.62053814260511 ], [ -96.14332819420747, 29.62054914232704 ], [ -96.143712194728622, 29.620686142129731 ], [ -96.143907194788966, 29.620813142413105 ], [ -96.143926194125612, 29.620840142851016 ], [ -96.144039194227787, 29.620945142715954 ], [ -96.144316194968354, 29.621291142925092 ], [ -96.144369194357807, 29.621350142494585 ], [ -96.145127194359205, 29.622182142551683 ], [ -96.145215195254508, 29.622248142980503 ], [ -96.145454195395999, 29.622391142737211 ], [ -96.145605195371402, 29.622518142278871 ], [ -96.145619194516186, 29.622531143113179 ], [ -96.14575519476216, 29.622666142991438 ], [ -96.146057195523795, 29.622990142508026 ], [ -96.146447194828937, 29.623375142566175 ], [ -96.146510195317816, 29.623469142568521 ], [ -96.146579195714878, 29.623634142716984 ], [ -96.146655195301207, 29.623733142751366 ], [ -96.146856195628658, 29.623953143256543 ], [ -96.146988195790172, 29.624052142922707 ], [ -96.147447195727523, 29.624569143066022 ], [ -96.147692195880808, 29.624810143326545 ], [ -96.147730196101477, 29.624860143010856 ], [ -96.147824195394762, 29.624926143084856 ], [ -96.147894196029156, 29.625003143437016 ], [ -96.148365195274167, 29.625451142794791 ], [ -96.148491196145187, 29.625495143633977 ], [ -96.148661196271107, 29.625506142996102 ], [ -96.148768195630169, 29.625479143618708 ], [ -96.148789195374746, 29.62548214337242 ], [ -96.14885619541981, 29.625490143004797 ], [ -96.149233196181839, 29.625765142948062 ], [ -96.150164196538, 29.626348143421929 ], [ -96.15076219643683, 29.626738142965618 ], [ -96.15220819633096, 29.62743114363824 ], [ -96.152856197049744, 29.627684143631946 ], [ -96.153064197476525, 29.6277781436529 ], [ -96.154504197215573, 29.628745143503732 ], [ -96.154567197301432, 29.628767143660603 ], [ -96.154621197212037, 29.628804143819821 ], [ -96.15523419764915, 29.62921814363229 ], [ -96.15542319775561, 29.629295143873033 ], [ -96.156127198248441, 29.629455144207274 ], [ -96.156272197535998, 29.62953714417657 ], [ -96.156379198337589, 29.629554143340858 ], [ -96.15646119771192, 29.629482143514217 ], [ -96.156481197694546, 29.629471143325155 ], [ -96.156530198174963, 29.629444143717965 ], [ -96.156599198376568, 29.629438143955625 ], [ -96.156832197987328, 29.629482143664703 ], [ -96.157102198073915, 29.629576143830146 ], [ -96.157297197937041, 29.629620143297334 ], [ -96.15744219878178, 29.629615143627301 ], [ -96.157574197986008, 29.629582143786173 ], [ -96.157788198521231, 29.629505143296079 ], [ -96.158002198278297, 29.629494143488749 ], [ -96.158342198288594, 29.629510143647416 ], [ -96.158531198321171, 29.629389143567106 ], [ -96.159053198991387, 29.629291143734111 ], [ -96.159418198400232, 29.629181143631502 ], [ -96.159676198301213, 29.629054143423311 ], [ -96.160116198408403, 29.628868143646436 ], [ -96.16106019947118, 29.628390143486911 ], [ -96.161177198829478, 29.62833114321656 ], [ -96.161620199100668, 29.62810714350093 ], [ -96.162180199707649, 29.627824143044631 ], [ -96.162284199874989, 29.627743143231715 ], [ -96.163206199552221, 29.627021143322985 ], [ -96.163445200124613, 29.626851142960199 ], [ -96.164112199370649, 29.626637142539991 ], [ -96.164470199602903, 29.626598143149092 ], [ -96.164904199991511, 29.626620142782333 ], [ -96.165081200512077, 29.62650514299574 ], [ -96.165364200205076, 29.626527142823956 ], [ -96.165408199905315, 29.62690614287694 ], [ -96.165634200642444, 29.62700014250585 ], [ -96.165750200130944, 29.627062142525077 ], [ -96.166181200106038, 29.627291143198764 ], [ -96.166464200342972, 29.627495142600978 ], [ -96.166810200562523, 29.627643142898702 ], [ -96.167005200961611, 29.627819142760153 ], [ -96.167439200593691, 29.628061143149605 ], [ -96.167641200803587, 29.628220143058385 ], [ -96.167741201064516, 29.628305142942974 ], [ -96.168012200393534, 29.628534143056331 ], [ -96.168270201321661, 29.62865514282139 ], [ -96.168811201175728, 29.628880143455923 ], [ -96.16907520128656, 29.628913143091417 ], [ -96.169314201712737, 29.628875143245128 ], [ -96.169503201151642, 29.628858143264132 ], [ -96.169591201487776, 29.628930143337879 ], [ -96.169710201667115, 29.629155143641686 ], [ -96.16978620159253, 29.629243143398423 ], [ -96.169931201922623, 29.629298142824219 ], [ -96.170038201155023, 29.62928714364288 ], [ -96.170145201408502, 29.629238143512527 ], [ -96.170220201430013, 29.629227143576596 ], [ -96.170283201780364, 29.629243143484985 ], [ -96.170447201203928, 29.629348143298561 ], [ -96.170635201651706, 29.629523143036032 ], [ -96.170880201603197, 29.629892143282209 ], [ -96.171182201533625, 29.630293143790677 ], [ -96.171522201661219, 29.63071114335073 ], [ -96.171906202302011, 29.6311451438979 ], [ -96.17304420278667, 29.63226714337182 ], [ -96.173265202563456, 29.63255814363551 ], [ -96.173529202994033, 29.632734143879805 ], [ -96.173762202589032, 29.63284414342025 ], [ -96.174208202849883, 29.633014144205934 ], [ -96.17446020235856, 29.633086143907629 ], [ -96.174623202577962, 29.633146143469965 ], [ -96.174737203323815, 29.633223143659812 ], [ -96.17485520288048, 29.633377144035293 ], [ -96.174894202838644, 29.633427144023241 ], [ -96.174925203035457, 29.633487143890378 ], [ -96.175025203399301, 29.633526143520697 ], [ -96.175051203056512, 29.633536143529497 ], [ -96.17521520340766, 29.633575143649164 ], [ -96.175303203206155, 29.633646144219043 ], [ -96.175404203491382, 29.63377314367364 ], [ -96.175429202772463, 29.633811144081239 ], [ -96.175927202677087, 29.633484143822347 ], [ -96.175971203333376, 29.633455143614338 ], [ -96.176006202840725, 29.633422143915617 ], [ -96.17605720317944, 29.633375144306424 ], [ -96.183764204471672, 29.626373142138707 ], [ -96.183802204684582, 29.626339142224531 ], [ -96.18383120489051, 29.626313142426405 ], [ -96.183850205169392, 29.626295142467555 ], [ -96.185705205367356, 29.624609141887706 ], [ -96.18577720551049, 29.624544141683067 ], [ -96.185828205083268, 29.624497142032965 ], [ -96.185855205082575, 29.624473142159928 ], [ -96.185865205347696, 29.624464142178077 ], [ -96.186025205244704, 29.624320141374888 ], [ -96.187935205979201, 29.622611141695998 ], [ -96.187945205878847, 29.622602141554726 ], [ -96.191498206883736, 29.619423140592424 ], [ -96.191553206103151, 29.619374140627386 ], [ -96.191567206752921, 29.619362140255546 ], [ -96.191661206888924, 29.619279140217941 ], [ -96.196741207118961, 29.614836139575186 ], [ -96.196780207761748, 29.614802138971012 ], [ -96.196834207098718, 29.614755139402568 ], [ -96.19736320814053, 29.614292139744784 ], [ -96.200529207931268, 29.611524138992134 ], [ -96.200539208878169, 29.611509138871714 ], [ -96.200917208796909, 29.611174138413517 ], [ -96.201252208360074, 29.610877138167655 ], [ -96.203313209403774, 29.609065137762229 ], [ -96.203386208565703, 29.609000138360322 ], [ -96.204885209223875, 29.607655137823969 ], [ -96.204909209348713, 29.607641137393685 ], [ -96.204938209193017, 29.607588137703097 ], [ -96.205024209852965, 29.607429137584436 ], [ -96.205062209462469, 29.607378137222142 ], [ -96.205183209194288, 29.607215137919763 ], [ -96.205284209425258, 29.607079137698069 ], [ -96.205463208957454, 29.606846137610749 ], [ -96.205549209154768, 29.606760137875529 ], [ -96.205601209855672, 29.606709137347565 ], [ -96.205785209398272, 29.606525137350737 ], [ -96.206132209768697, 29.606212137561048 ], [ -96.206221209275796, 29.606132137741451 ], [ -96.206583209883561, 29.605807136858513 ], [ -96.206621210167768, 29.605773136939099 ], [ -96.207192209945049, 29.605259136914505 ], [ -96.208828209754586, 29.603786137122636 ], [ -96.208841210606266, 29.603774136693886 ], [ -96.208866210604825, 29.603752136592817 ], [ -96.209154209812326, 29.603493136505111 ], [ -96.214687211298454, 29.598512135052601 ], [ -96.214710211663714, 29.598492135574752 ], [ -96.214741211548642, 29.598464135673581 ], [ -96.217759212036682, 29.595770135112673 ], [ -96.220861212952698, 29.593001134546853 ], [ -96.220935212951119, 29.592935133959148 ], [ -96.221860212830748, 29.592110134071202 ], [ -96.224290213409589, 29.589901133771018 ], [ -96.225718213511655, 29.588603133514177 ], [ -96.225777214208748, 29.58854913331831 ], [ -96.225816213352786, 29.588512133456593 ], [ -96.225823213412966, 29.588505133323498 ], [ -96.226752214124303, 29.587621132993576 ], [ -96.228259214075663, 29.586135132422758 ], [ -96.228719214310345, 29.585692132654568 ], [ -96.228845213957854, 29.585571132007782 ], [ -96.229078214633986, 29.585346132119959 ], [ -96.229165214149376, 29.585268131934612 ], [ -96.229187214016648, 29.58524913186676 ], [ -96.230334214830805, 29.584212131705726 ], [ -96.230344214366511, 29.584203132074805 ], [ -96.230541215131097, 29.584025132454737 ], [ -96.230549215112802, 29.584018132022841 ], [ -96.234178215541107, 29.580744131158912 ], [ -96.234202215163393, 29.58072213102589 ], [ -96.23426121602003, 29.580668130792976 ], [ -96.235123215271358, 29.579890131370561 ], [ -96.235296215591106, 29.579734130611623 ], [ -96.236725215644597, 29.5784441302395 ], [ -96.237759216474643, 29.577511130545989 ], [ -96.237771216038226, 29.577500130161553 ], [ -96.23935521682219, 29.5760601300377 ], [ -96.23944121645988, 29.575982129773177 ], [ -96.240005217184347, 29.575469130253122 ], [ -96.241171217027457, 29.574455129960338 ], [ -96.241239217382073, 29.574396130037698 ], [ -96.242834217021382, 29.573089129444835 ], [ -96.243763217150416, 29.572292129180521 ], [ -96.244516218274683, 29.57160612861901 ], [ -96.246447218062798, 29.569862128327703 ], [ -96.246489218208012, 29.569824128411355 ], [ -96.248778218684919, 29.567754127800015 ], [ -96.248817218799232, 29.56771912772977 ], [ -96.250345219070155, 29.566338127524819 ], [ -96.250376218831192, 29.566310127687924 ], [ -96.250991218756042, 29.56575512788039 ], [ -96.251183219509016, 29.565581127600069 ], [ -96.252818219758836, 29.564104127567308 ], [ -96.25282921984153, 29.564094126994494 ], [ -96.253287219135714, 29.56368012729498 ], [ -96.258938220478328, 29.558489125962527 ], [ -96.260884221274964, 29.556739125152447 ], [ -96.260898221452592, 29.556726125817253 ], [ -96.261435220941578, 29.556243124973594 ], [ -96.261443221720299, 29.556236125463311 ], [ -96.262564221135776, 29.555229124670838 ], [ -96.262574221117802, 29.55522012540645 ], [ -96.262993221522507, 29.554844125271032 ], [ -96.266987222729895, 29.551254124374537 ], [ -96.266999222185234, 29.551243124137969 ], [ -96.267042222475823, 29.551204123928184 ], [ -96.269678223367237, 29.54883512325015 ], [ -96.269688223129464, 29.548826123462575 ], [ -96.272730223484743, 29.546092122497434 ], [ -96.272748223959283, 29.546076123218668 ], [ -96.273006223794368, 29.545844122631596 ], [ -96.273179223989032, 29.545688122816451 ], [ -96.273224223661188, 29.545647122634225 ], [ -96.278872224664852, 29.540555121176677 ], [ -96.278886225450037, 29.540542121822618 ], [ -96.278894224837501, 29.540535121265936 ], [ -96.278903225135764, 29.540527121223544 ], [ -96.278922225608241, 29.540510121630671 ], [ -96.280083225641818, 29.539464121135133 ], [ -96.280311225770532, 29.539258121069537 ], [ -96.282301225894244, 29.53746312112245 ], [ -96.282310225655706, 29.537455120845607 ], [ -96.282319225415719, 29.537447120568167 ], [ -96.282328226181903, 29.537439121213058 ], [ -96.282337225939088, 29.537431120934347 ], [ -96.282346225694909, 29.53742312065501 ], [ -96.284521226227596, 29.535462120443523 ], [ -96.289915227352708, 29.53050211904193 ], [ -96.290304227360409, 29.530153118653011 ], [ -96.290311227167564, 29.530146118833322 ], [ -96.290495227665062, 29.52998111886868 ], [ -96.290504227134676, 29.529973118950732 ], [ -96.290518227367713, 29.529961119298171 ], [ -96.290540227398211, 29.529942119319049 ], [ -96.295079228738246, 29.525882118056074 ], [ -96.295170228823565, 29.52578411817726 ], [ -96.295230229006265, 29.525730118249367 ], [ -96.295837228204235, 29.525169118314103 ], [ -96.296001228777243, 29.52503011793203 ], [ -96.296090228384628, 29.524948117556985 ], [ -96.296173229146007, 29.524874117628048 ], [ -96.296312228767817, 29.524777117478166 ], [ -96.296418229281443, 29.524703117707364 ], [ -96.296443229347076, 29.52469811784426 ], [ -96.305040231176704, 29.516918116268183 ], [ -96.305625230525635, 29.516375115942374 ], [ -96.3057292307968, 29.516279115649702 ], [ -96.305832230438341, 29.516184115868054 ], [ -96.305965230489136, 29.516060115961881 ], [ -96.307602231516796, 29.514596115028954 ], [ -96.30767923161828, 29.514528115426739 ], [ -96.313177231950462, 29.500328111808358 ], [ -96.313208231606069, 29.500247112258105 ], [ -96.313301231953872, 29.500247112478643 ], [ -96.313320231700828, 29.50024711260626 ], [ -96.313331231960433, 29.500218112617755 ], [ -96.313355232286597, 29.500157112222553 ], [ -96.313364232192555, 29.500143112625199 ], [ -96.313366231967535, 29.500127112220341 ], [ -96.313375232464622, 29.500103112642787 ], [ -96.314994232091436, 29.495854111275829 ], [ -96.315009232133207, 29.495816111169926 ], [ -96.315076232086824, 29.495641111454866 ], [ -96.315090232403236, 29.495603111112839 ], [ -96.317478232795992, 29.489339109792134 ], [ -96.317517232215138, 29.489238110007573 ], [ -96.317555232987729, 29.489137110023435 ], [ -96.317735232771511, 29.488665109538008 ], [ -96.31861023293898, 29.486368109037823 ], [ -96.32145023334148, 29.478925107684653 ], [ -96.324672233962005, 29.470447106229589 ], [ -96.325667233324509, 29.467838105426175 ], [ -96.325677234026116, 29.467813105142955 ], [ -96.325685233478112, 29.4677921054321 ], [ -96.327083233878326, 29.464126104010198 ], [ -96.32727623370215, 29.463587104487281 ], [ -96.32847423457649, 29.460421103450496 ], [ -96.32959823449815, 29.45746410321647 ], [ -96.332451235057178, 29.449958101471008 ], [ -96.334375235166959, 29.444992099852236 ], [ -96.334399234620875, 29.444931100036619 ], [ -96.334465235384727, 29.44476110010212 ], [ -96.334473235089263, 29.444741099857286 ], [ -96.334489235261785, 29.444698100267047 ], [ -96.334533234820199, 29.444585100266885 ], [ -96.337155234882587, 29.437830098465497 ], [ -96.340419236132391, 29.429423097045248 ], [ -96.342191235631773, 29.424858096052713 ], [ -96.34343323633847, 29.421658095521128 ], [ -96.343570236221026, 29.421305095518338 ], [ -96.345846236865071, 29.415466093887087 ], [ -96.34602323683032, 29.415013093853599 ], [ -96.346199236356853, 29.414560093557018 ], [ -96.346994236865385, 29.412520093422163 ], [ -96.34710323725092, 29.412239092810864 ], [ -96.347131236595303, 29.412169093314521 ], [ -96.347189236827248, 29.412023093394467 ], [ -96.347248236911241, 29.411876093444572 ], [ -96.3473652367841, 29.411574093380263 ], [ -96.347452237146015, 29.411351092848221 ], [ -96.347489236432608, 29.411210092686431 ], [ -96.347563236533333, 29.410922093205947 ], [ -96.348628237215095, 29.406797091876875 ], [ -96.348934237111592, 29.406396091704877 ], [ -96.349224237184131, 29.406057091548483 ], [ -96.350593237639984, 29.405701092087725 ], [ -96.350853237128177, 29.405633091521008 ], [ -96.351207237722846, 29.405541091955246 ], [ -96.351222237412728, 29.40553709160131 ], [ -96.352162237380526, 29.405141091324666 ], [ -96.352224238122247, 29.405117091190956 ], [ -96.353114237517019, 29.40477409162094 ], [ -96.353201237807696, 29.404741091884034 ], [ -96.353245238451947, 29.404717091918471 ], [ -96.360247239718888, 29.400963090041568 ], [ -96.361383239723665, 29.400490090311489 ], [ -96.362415240588476, 29.399722090405934 ], [ -96.362462240217624, 29.399695089821428 ], [ -96.362832240229011, 29.398454089468114 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1609, "Tract": "48481740400", "Area_SqMi": 20.393734204099619, "total_2009": 2993, "total_2010": 2222, "total_2011": 1516, "total_2012": 1159, "total_2013": 1218, "total_2014": 1262, "total_2015": 1348, "total_2016": 1459, "total_2017": 1493, "total_2018": 1439, "total_2019": 1464, "total_2020": 1404, "age1": 339, "age2": 694, "age3": 431, "earn1": 368, "earn2": 522, "earn3": 574, "naics_s01": 71, "naics_s02": 39, "naics_s03": 0, "naics_s04": 69, "naics_s05": 25, "naics_s06": 16, "naics_s07": 214, "naics_s08": 19, "naics_s09": 25, "naics_s10": 72, "naics_s11": 21, "naics_s12": 94, "naics_s13": 0, "naics_s14": 31, "naics_s15": 27, "naics_s16": 291, "naics_s17": 18, "naics_s18": 156, "naics_s19": 34, "naics_s20": 242, "race1": 1182, "race2": 221, "race3": 11, "race4": 24, "race5": 3, "race6": 23, "ethnicity1": 982, "ethnicity2": 482, "edu1": 206, "edu2": 326, "edu3": 395, "edu4": 198, "Shape_Length": 126080.63512545066, "Shape_Area": 568542405.38536906, "total_2021": 1523, "total_2022": 1464 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.155769182402082, 29.266220069779035 ], [ -96.155645182008371, 29.266063069457498 ], [ -96.155549181588555, 29.265940069309281 ], [ -96.155292181982801, 29.265830069959421 ], [ -96.155129182112091, 29.265676069566229 ], [ -96.155086182001625, 29.265649070069866 ], [ -96.15501718232656, 29.265627069512821 ], [ -96.154835182264506, 29.265599069317965 ], [ -96.154735182158348, 29.265528069880247 ], [ -96.154716181935143, 29.265500069592168 ], [ -96.154716181838339, 29.26542306962676 ], [ -96.154678181996829, 29.265280069291716 ], [ -96.154641181349817, 29.265203069602521 ], [ -96.154590181830883, 29.265137069821872 ], [ -96.154528181993953, 29.265082069833465 ], [ -96.15447118203187, 29.2650050693628 ], [ -96.154371182052685, 29.264780069682008 ], [ -96.15430218127139, 29.264654069552552 ], [ -96.154227181421831, 29.264412069519611 ], [ -96.154146181934195, 29.263972069206204 ], [ -96.154121181744458, 29.263878069722544 ], [ -96.154064181427003, 29.263763069077569 ], [ -96.1540141816388, 29.263702069066412 ], [ -96.15396418182894, 29.263669069195942 ], [ -96.153795181030887, 29.263609069199685 ], [ -96.153644181656119, 29.263581069170474 ], [ -96.153601181096278, 29.263565069022423 ], [ -96.153519180928868, 29.263493069138701 ], [ -96.153419181738741, 29.263351069069135 ], [ -96.15337518143069, 29.263213069600859 ], [ -96.153369180920279, 29.263087068923063 ], [ -96.153400181626125, 29.263048069062854 ], [ -96.153438181637824, 29.263037068945664 ], [ -96.153488180882192, 29.263032069045902 ], [ -96.153620181624504, 29.263054069482717 ], [ -96.153676181093502, 29.263054068871199 ], [ -96.153751181196313, 29.263021068917993 ], [ -96.153776181686922, 29.262982069069928 ], [ -96.153783181438854, 29.262861069154784 ], [ -96.153776181832512, 29.262795069450515 ], [ -96.153739181402216, 29.262707068683113 ], [ -96.153601181215578, 29.262455069403774 ], [ -96.153538181477089, 29.262383068913149 ], [ -96.153469181600002, 29.262339068644238 ], [ -96.153388181208229, 29.262312068791989 ], [ -96.152987180935725, 29.262262069057339 ], [ -96.152918181616812, 29.262229069284906 ], [ -96.152880181334453, 29.26217406909381 ], [ -96.152893181561382, 29.261987068989054 ], [ -96.152886180770849, 29.261712068856362 ], [ -96.152918181519411, 29.261663068991655 ], [ -96.152968180743159, 29.261641068999811 ], [ -96.153131181635644, 29.261608069055281 ], [ -96.153169180850227, 29.261586069131631 ], [ -96.153200181351039, 29.261553068835543 ], [ -96.153194181258286, 29.261509068505998 ], [ -96.15313318091799, 29.261342068563664 ], [ -96.153050181494933, 29.261113068378265 ], [ -96.152975181385955, 29.261014068505872 ], [ -96.152893181001247, 29.261003068865264 ], [ -96.152460180987731, 29.261097068626647 ], [ -96.152341180648392, 29.261097069071724 ], [ -96.152247181222421, 29.261075069246917 ], [ -96.151978180534883, 29.260942068732749 ], [ -96.151878180795734, 29.260877069210665 ], [ -96.151740181137384, 29.260767068876252 ], [ -96.151665181166919, 29.260728068888998 ], [ -96.151458181054764, 29.260690068883136 ], [ -96.151226180429276, 29.260722068348475 ], [ -96.150630180216297, 29.260684068796834 ], [ -96.150423180539036, 29.26065106844295 ], [ -96.150097180281293, 29.260574068462869 ], [ -96.149803179816033, 29.260524068525321 ], [ -96.14950817999086, 29.2604910685465 ], [ -96.149333180008441, 29.260502068616127 ], [ -96.149176180116839, 29.260562068683473 ], [ -96.148850180359204, 29.260914069315035 ], [ -96.148743179584656, 29.261002068574005 ], [ -96.148649180505174, 29.261063068541816 ], [ -96.148586180216356, 29.261084068652607 ], [ -96.148417179799907, 29.261057068552084 ], [ -96.14807317969499, 29.260941068524559 ], [ -96.147909180232958, 29.26090806869535 ], [ -96.147853179828218, 29.260908068645609 ], [ -96.147784179773623, 29.260919069303853 ], [ -96.147540179705686, 29.261051069255874 ], [ -96.1472891795664, 29.26115006918166 ], [ -96.147082179249281, 29.261167069032936 ], [ -96.14699417944, 29.261183069315361 ], [ -96.146856180074664, 29.261227068611699 ], [ -96.146750179727718, 29.261287069453452 ], [ -96.146630179740555, 29.261447069389735 ], [ -96.14658717959675, 29.261634068932864 ], [ -96.146561179655194, 29.261689068919445 ], [ -96.146492179071558, 29.261776068971038 ], [ -96.146380179488347, 29.261875069422878 ], [ -96.146298179301169, 29.26190806890358 ], [ -96.146148179660585, 29.261952068818342 ], [ -96.146003179438353, 29.262018068843986 ], [ -96.145972179450169, 29.262123069110359 ], [ -96.145213178796539, 29.262469069341527 ], [ -96.145136179313596, 29.262482069036203 ], [ -96.144831179548206, 29.262535069362915 ], [ -96.144718178889889, 29.262545069474641 ], [ -96.14459317918039, 29.262501069495592 ], [ -96.144330178663381, 29.262238069620466 ], [ -96.1440161787215, 29.261979069335023 ], [ -96.143759178777628, 29.261891069579509 ], [ -96.143671178846461, 29.261891069235631 ], [ -96.143515178689185, 29.261819069154193 ], [ -96.143396178260033, 29.261671068927637 ], [ -96.143321179186685, 29.261594069578052 ], [ -96.143158179117691, 29.261495068772703 ], [ -96.143070178787681, 29.261462069224603 ], [ -96.142951178901029, 29.261489069594617 ], [ -96.142857178749338, 29.261566069409902 ], [ -96.142788178081048, 29.261599069092828 ], [ -96.14271917870704, 29.261682069703049 ], [ -96.142687178426044, 29.261863069628205 ], [ -96.142700178237476, 29.26191306931311 ], [ -96.142681178956423, 29.261951069331516 ], [ -96.142606178896031, 29.262039068935024 ], [ -96.14256817817585, 29.262061069478072 ], [ -96.142537178279866, 29.26206606896136 ], [ -96.142468178911784, 29.262050069457509 ], [ -96.142355177946143, 29.26198906960142 ], [ -96.142305178040743, 29.261923069165455 ], [ -96.142236178390462, 29.261720069434091 ], [ -96.142205178550739, 29.261572069411656 ], [ -96.142161178628172, 29.261484069531011 ], [ -96.142117178795672, 29.261434068798845 ], [ -96.142017177859003, 29.261401069490571 ], [ -96.14179417819939, 29.261453069209793 ], [ -96.141685178082753, 29.261478069638599 ], [ -96.141597178321192, 29.261456069021854 ], [ -96.141402178052388, 29.261428069428064 ], [ -96.141296177661786, 29.261346069153817 ], [ -96.14116417815741, 29.261269069560402 ], [ -96.141128177820235, 29.261264069086135 ], [ -96.141001177611784, 29.261247068982218 ], [ -96.140926178142195, 29.261285069433839 ], [ -96.140838177615805, 29.261362069229051 ], [ -96.140819177614759, 29.261434069668066 ], [ -96.140719177781406, 29.261989069152513 ], [ -96.140700178188794, 29.262357069585782 ], [ -96.140737178176408, 29.262462069132511 ], [ -96.140737178039501, 29.262561069150689 ], [ -96.140725178493369, 29.262577069360422 ], [ -96.140656178023576, 29.26260406933589 ], [ -96.140574178486872, 29.26260406926372 ], [ -96.140512178019762, 29.262615069170661 ], [ -96.140405178258121, 29.262610069568002 ], [ -96.140368177641818, 29.262577069768003 ], [ -96.140343177837266, 29.262516069832486 ], [ -96.14030517837287, 29.262363069588442 ], [ -96.140249177616298, 29.262275069835571 ], [ -96.140192178231615, 29.262231069013861 ], [ -96.140130178181607, 29.262209069037215 ], [ -96.140061177947459, 29.262214069803747 ], [ -96.139985177952212, 29.262252069045211 ], [ -96.139929177745259, 29.262302069355783 ], [ -96.139885178357588, 29.262384069445474 ], [ -96.139860178269458, 29.262478069942407 ], [ -96.139822178191608, 29.262566069156524 ], [ -96.139766177606901, 29.262637069128864 ], [ -96.139621177883583, 29.262736069263592 ], [ -96.139496177613637, 29.262791069914183 ], [ -96.139226178159191, 29.26296106954825 ], [ -96.139095178165235, 29.263055069441215 ], [ -96.138976177306958, 29.263110069259337 ], [ -96.138926177141144, 29.263115070033187 ], [ -96.138769177681951, 29.263098069546494 ], [ -96.138399177689763, 29.263016069501301 ], [ -96.138330177483937, 29.26297206939034 ], [ -96.138261177565951, 29.262900069894837 ], [ -96.138123177853018, 29.262527069262422 ], [ -96.13802917757468, 29.262312069505622 ], [ -96.138017177812912, 29.262191069300659 ], [ -96.137879176883217, 29.261784069416215 ], [ -96.137804177186823, 29.26158606965992 ], [ -96.137735177724423, 29.261438069659768 ], [ -96.137685177513461, 29.261400069481144 ], [ -96.137629177431108, 29.261378068940033 ], [ -96.137503177022268, 29.261361069808206 ], [ -96.137334177662211, 29.261350069455478 ], [ -96.137071176910979, 29.261361069642842 ], [ -96.136977176715519, 29.26135006971856 ], [ -96.136820176603237, 29.26130606936654 ], [ -96.136689176784358, 29.261229069586392 ], [ -96.136613176893746, 29.261102069125958 ], [ -96.136563176565886, 29.260773069475025 ], [ -96.136469177248415, 29.260564068932361 ], [ -96.136432176808057, 29.260514069437178 ], [ -96.136363176499884, 29.260459069225689 ], [ -96.136213177325445, 29.26037106897493 ], [ -96.136162176460161, 29.2603270688248 ], [ -96.136131176349508, 29.260283069483904 ], [ -96.136131176694903, 29.259942069386835 ], [ -96.136150177008929, 29.259580068708846 ], [ -96.13616917637863, 29.259563069327715 ], [ -96.136263176663832, 29.259316068699789 ], [ -96.136282177038765, 29.259217068631859 ], [ -96.136282176823102, 29.259107068554648 ], [ -96.136263176677403, 29.259041068969353 ], [ -96.135988176854951, 29.258469068968683 ], [ -96.135881176446901, 29.258348068692278 ], [ -96.135825176984639, 29.258343068624463 ], [ -96.13574317673212, 29.258321068362587 ], [ -96.135631176423388, 29.258271068676876 ], [ -96.135612176193817, 29.258238068737285 ], [ -96.135643176200162, 29.258106068606285 ], [ -96.135650176439782, 29.258035068353646 ], [ -96.135643176349035, 29.257991069035338 ], [ -96.135618177067244, 29.257925068634062 ], [ -96.135512176634165, 29.257793068832456 ], [ -96.135481176728973, 29.257776068621578 ], [ -96.135393176623523, 29.257765069133448 ], [ -96.134966176874471, 29.257925068416441 ], [ -96.134885176039916, 29.25794706891935 ], [ -96.134791176226599, 29.257935069115771 ], [ -96.134769176412917, 29.257919069049457 ], [ -96.134691176494684, 29.257864068572491 ], [ -96.134640176112967, 29.257809068775888 ], [ -96.134371175791614, 29.257474068304948 ], [ -96.134246176595681, 29.257375068691051 ], [ -96.134164175779517, 29.257331068473423 ], [ -96.133845175961966, 29.257221068812786 ], [ -96.133769175918573, 29.257204068488136 ], [ -96.133005175767508, 29.256962068875112 ], [ -96.132917175582705, 29.256945068179306 ], [ -96.132848175518035, 29.256973068694485 ], [ -96.132485176143433, 29.257209069113639 ], [ -96.132108175276613, 29.257522068399805 ], [ -96.131920175257306, 29.257610068728123 ], [ -96.131757176091767, 29.257610069199735 ], [ -96.131626175620198, 29.257599069208592 ], [ -96.131387175307637, 29.257500068623155 ], [ -96.1307481749256, 29.257164069024125 ], [ -96.129726174553966, 29.257164068778827 ], [ -96.129175175426084, 29.257219068461414 ], [ -96.128811175325808, 29.257323068976167 ], [ -96.127914174167273, 29.258054069224883 ], [ -96.127519174338232, 29.258356069001167 ], [ -96.127394174870133, 29.258433069090259 ], [ -96.127287174930672, 29.25847706891533 ], [ -96.127068174815676, 29.258509069119555 ], [ -96.126617174635186, 29.258504069159283 ], [ -96.126422173850472, 29.258460068771427 ], [ -96.126335173835059, 29.258421069165426 ], [ -96.12627217388409, 29.258405069514257 ], [ -96.126015173700026, 29.25835506951007 ], [ -96.125958174195134, 29.258311068720541 ], [ -96.125802174591428, 29.258069068752356 ], [ -96.125752173600162, 29.25788806919083 ], [ -96.125714173998546, 29.257794068728984 ], [ -96.125602174045852, 29.257624069327353 ], [ -96.125545174274578, 29.257486069227401 ], [ -96.125483173863358, 29.25742606929435 ], [ -96.12533817373108, 29.257398068684054 ], [ -96.125276174188627, 29.257398068778748 ], [ -96.125213174002695, 29.257382068603061 ], [ -96.125176173763862, 29.257316069106452 ], [ -96.125151173576512, 29.257173068756821 ], [ -96.124858173397655, 29.257024068784286 ], [ -96.12470817411689, 29.256859069143704 ], [ -96.124626173934146, 29.256793068496599 ], [ -96.124413173254155, 29.256711068414134 ], [ -96.124332173965826, 29.256705068530792 ], [ -96.124100173307554, 29.256722069295204 ], [ -96.123592173143919, 29.256794068443178 ], [ -96.123511172981395, 29.256799068895109 ], [ -96.123404173104504, 29.256788068572245 ], [ -96.123197173754662, 29.256657068539109 ], [ -96.122984172889133, 29.256431068497605 ], [ -96.122827173295107, 29.256338069221314 ], [ -96.122708172878419, 29.256299068957851 ], [ -96.122608173384478, 29.256278068433492 ], [ -96.122376173455308, 29.256272068924588 ], [ -96.1218811728546, 29.256300068779908 ], [ -96.121674172505166, 29.256300069280101 ], [ -96.121536172994581, 29.256272068471016 ], [ -96.121103172900234, 29.256146068639321 ], [ -96.120834172818448, 29.256086068467102 ], [ -96.120495173092479, 29.256130068854958 ], [ -96.120295172466029, 29.256108068621629 ], [ -96.11995017286317, 29.255982069151152 ], [ -96.119843172235434, 29.255905068878437 ], [ -96.119605172030816, 29.255603068751999 ], [ -96.11952317227454, 29.255471068719164 ], [ -96.119360172178233, 29.255053068947394 ], [ -96.119310172191092, 29.254965068541576 ], [ -96.119228171831111, 29.254696068341286 ], [ -96.119184172693011, 29.254625068891094 ], [ -96.119128171884924, 29.254559068653315 ], [ -96.119040172001561, 29.254504068353381 ], [ -96.118764172390883, 29.25430006827213 ], [ -96.118664171628112, 29.254212068442712 ], [ -96.118595171785287, 29.254136068785996 ], [ -96.118519172171048, 29.254020068107277 ], [ -96.118488171831416, 29.253954068101049 ], [ -96.118388172355907, 29.253663068296603 ], [ -96.118337172276412, 29.253421067998232 ], [ -96.118306171784937, 29.253317068542668 ], [ -96.11831217203401, 29.253190068140455 ], [ -96.118306172244559, 29.253053068446452 ], [ -96.118343171764636, 29.252948068214007 ], [ -96.118400172445064, 29.252860068331511 ], [ -96.118462172439507, 29.252794068090267 ], [ -96.118632171848816, 29.252657068333043 ], [ -96.118707171914636, 29.252558068306691 ], [ -96.118845172451785, 29.252344068425703 ], [ -96.119051172538036, 29.25187106765798 ], [ -96.119133172615363, 29.251711067611229 ], [ -96.119170171768957, 29.251596068167245 ], [ -96.119239171632827, 29.251475068254205 ], [ -96.11927617245729, 29.251381067770364 ], [ -96.119289171680578, 29.251293068180765 ], [ -96.119270172294875, 29.251238067631878 ], [ -96.119201172494556, 29.251167067720829 ], [ -96.119063172577256, 29.251074068044293 ], [ -96.118875172438081, 29.250969068152347 ], [ -96.118718171827609, 29.250898068143297 ], [ -96.118317171985296, 29.250794067710196 ], [ -96.118198171801183, 29.250783068154309 ], [ -96.118010172120691, 29.250733067775499 ], [ -96.1179411714498, 29.25066206806563 ], [ -96.11773417149395, 29.250409067375312 ], [ -96.117690171438539, 29.250382068103338 ], [ -96.117627171823656, 29.250365067754611 ], [ -96.117521172043496, 29.250371067464958 ], [ -96.117396171339422, 29.250343067881758 ], [ -96.117333171805655, 29.250310067925881 ], [ -96.117302171944687, 29.250277067502452 ], [ -96.117289171188048, 29.25022806773746 ], [ -96.117289171481048, 29.250173067877466 ], [ -96.117314171415345, 29.250074067975731 ], [ -96.117308171361884, 29.250003067986409 ], [ -96.117269171109996, 29.249987067426002 ], [ -96.117194171415719, 29.24991506749101 ], [ -96.117181171075302, 29.249827067319981 ], [ -96.117213171334029, 29.249723067658334 ], [ -96.117156171418912, 29.249608068036348 ], [ -96.117075171319698, 29.249531067858694 ], [ -96.116874171321157, 29.249481067222781 ], [ -96.116799171304194, 29.249437067469945 ], [ -96.116711170983109, 29.249344067847961 ], [ -96.116573171524124, 29.249245067710316 ], [ -96.116366171757804, 29.249174067539691 ], [ -96.116304171587032, 29.249141067924523 ], [ -96.116109171059122, 29.249020067432554 ], [ -96.115971171340206, 29.248888067608668 ], [ -96.115846171491924, 29.248800067147503 ], [ -96.115808170779346, 29.24876106786995 ], [ -96.115464171148773, 29.248745067524098 ], [ -96.115338170833056, 29.248701067411574 ], [ -96.115257171058047, 29.248641067447181 ], [ -96.115188170525116, 29.248630067431318 ], [ -96.114925171005439, 29.248641067565288 ], [ -96.114856170818868, 29.248635067786008 ], [ -96.114749170471015, 29.248646067476869 ], [ -96.114448171168604, 29.248520067330695 ], [ -96.114304170698446, 29.248476067482112 ], [ -96.114229170313124, 29.24837706721933 ], [ -96.114034170176836, 29.247915067721781 ], [ -96.113909170653386, 29.247525067199266 ], [ -96.113928171021129, 29.24749806743689 ], [ -96.1139021701524, 29.247415067450042 ], [ -96.113865170617331, 29.247360067206362 ], [ -96.113827170552696, 29.247366067364979 ], [ -96.113796170225399, 29.247360067337475 ], [ -96.113771170706073, 29.247338066843536 ], [ -96.113752170073766, 29.24731106763512 ], [ -96.113727170440598, 29.247229067701092 ], [ -96.1137021705416, 29.247234067559628 ], [ -96.113677171069938, 29.24734406687498 ], [ -96.113614170999938, 29.24742106763674 ], [ -96.113583170829614, 29.247426067548943 ], [ -96.1135081709578, 29.247421067218898 ], [ -96.113439170970864, 29.247377067230989 ], [ -96.113426170677585, 29.247273067103031 ], [ -96.113388170345345, 29.247163067684777 ], [ -96.113238170323811, 29.247152067569694 ], [ -96.112943170361987, 29.247152067668665 ], [ -96.112862170565094, 29.247130067451319 ], [ -96.11258016986848, 29.246981067194575 ], [ -96.112561170445503, 29.246949067428137 ], [ -96.112561170463863, 29.246910066976376 ], [ -96.112642169999276, 29.246547066867876 ], [ -96.112699170704559, 29.246404067573756 ], [ -96.112724170745594, 29.246278067126511 ], [ -96.11269216981978, 29.246201067387954 ], [ -96.112636170165686, 29.246108067415843 ], [ -96.112492170370203, 29.245976067406612 ], [ -96.112354169984698, 29.245822067215528 ], [ -96.112178169631065, 29.245679066956605 ], [ -96.11211616996026, 29.24557406668459 ], [ -96.112015170282916, 29.245322067108841 ], [ -96.111595170294038, 29.245030066578689 ], [ -96.111445170380847, 29.244965067194389 ], [ -96.111413169438137, 29.244943067076825 ], [ -96.111363169794103, 29.244882066438382 ], [ -96.111338170274365, 29.24472806642699 ], [ -96.11131316976018, 29.244690066820993 ], [ -96.111269169670564, 29.244690066620951 ], [ -96.111181170204858, 29.244723067079988 ], [ -96.11113116934456, 29.244706067203964 ], [ -96.111087169781058, 29.244651066979703 ], [ -96.111081170153355, 29.244607066970495 ], [ -96.111043169681594, 29.244552066746405 ], [ -96.110786170211838, 29.24442606720984 ], [ -96.110605169272546, 29.244289066992252 ], [ -96.110460169373908, 29.244151066852343 ], [ -96.110410169415374, 29.244080066810117 ], [ -96.110373169182623, 29.244003066400555 ], [ -96.110310169071028, 29.243937066571949 ], [ -96.110197169145579, 29.243756066590024 ], [ -96.110072169714357, 29.243695066250442 ], [ -96.109796169455322, 29.243607066652295 ], [ -96.109746169497186, 29.243613066338813 ], [ -96.109702169070815, 29.243602066507204 ], [ -96.10960816912818, 29.243552066222982 ], [ -96.109495169176228, 29.243437066507024 ], [ -96.109395168980626, 29.243360066441358 ], [ -96.109363169690013, 29.243349066746521 ], [ -96.109244169624333, 29.243443066709279 ], [ -96.109182169464347, 29.243465066349195 ], [ -96.109088169298985, 29.243470066594369 ], [ -96.108924169257477, 29.243469066530761 ], [ -96.108755169250003, 29.243570066413099 ], [ -96.108770169596383, 29.24380206689743 ], [ -96.108682168659698, 29.243894066920571 ], [ -96.10903916892434, 29.244920067248277 ], [ -96.109021169227688, 29.24676006774683 ], [ -96.109022169778143, 29.248168067290788 ], [ -96.107871168725936, 29.249577067856453 ], [ -96.107199169308927, 29.250212067860012 ], [ -96.106991169351261, 29.250274068401481 ], [ -96.106916168929729, 29.250358068061932 ], [ -96.106728169427328, 29.250606067903362 ], [ -96.106523168876649, 29.250809068541749 ], [ -96.106380169108164, 29.250532068201167 ], [ -96.106232168549425, 29.250230068116533 ], [ -96.104977168790569, 29.250803068349001 ], [ -96.097735166384098, 29.254322069118455 ], [ -96.097059166390778, 29.254653069748759 ], [ -96.095836166753813, 29.255250069049474 ], [ -96.088421165160355, 29.258865070732938 ], [ -96.082685163477294, 29.261639071059346 ], [ -96.075207161100977, 29.265254072034057 ], [ -96.07349216103708, 29.2660940723752 ], [ -96.06722815990517, 29.26916307311004 ], [ -96.061093157896352, 29.272169074128296 ], [ -96.065896159560594, 29.280122075489381 ], [ -96.065470159873911, 29.280340075499435 ], [ -96.064913159352287, 29.280625075523233 ], [ -96.063818159278696, 29.281200075924016 ], [ -96.062408159476348, 29.281940076265418 ], [ -96.058859157833155, 29.283806076879898 ], [ -96.056702157279744, 29.28494007696305 ], [ -96.056407157156272, 29.28508607646792 ], [ -96.05584915739432, 29.285362077216231 ], [ -96.055263156888728, 29.28567907667394 ], [ -96.054975157792654, 29.285835076905823 ], [ -96.054758157663727, 29.285947077157218 ], [ -96.049728156279713, 29.288551077365661 ], [ -96.045961155271371, 29.290587078645164 ], [ -96.044902154975347, 29.29113807837005 ], [ -96.044595154844828, 29.291297078346425 ], [ -96.044360154389736, 29.291449078452906 ], [ -96.043476154483002, 29.290702078582232 ], [ -96.04322115476252, 29.290486078602889 ], [ -96.042228154694399, 29.289606078659503 ], [ -96.041869154590501, 29.289297078226465 ], [ -96.041297154155657, 29.288809078123109 ], [ -96.041220153746664, 29.288743078100136 ], [ -96.040008153486568, 29.287711077916704 ], [ -96.039545153179787, 29.287317077440004 ], [ -96.036992152847418, 29.28512007769066 ], [ -96.036532152219664, 29.284724077497547 ], [ -96.036120151991938, 29.284379077432142 ], [ -96.035532152124063, 29.28388307748774 ], [ -96.033496151370343, 29.282164077103754 ], [ -96.03178815185089, 29.286579078151433 ], [ -96.031634150975975, 29.286979078375577 ], [ -96.031541151120649, 29.287217077899758 ], [ -96.029712151513081, 29.291947079241172 ], [ -96.029309150982968, 29.292988079179342 ], [ -96.029040151352973, 29.293750079791341 ], [ -96.027892151176331, 29.29663807980587 ], [ -96.027772150595325, 29.296941080521218 ], [ -96.027722151351398, 29.297073079838938 ], [ -96.026976151202703, 29.299031081158589 ], [ -96.02493815034218, 29.304155081559799 ], [ -96.02486915035729, 29.304256081964013 ], [ -96.022942150621375, 29.309269082736538 ], [ -96.022806150228348, 29.309603083246444 ], [ -96.022370149633716, 29.310669083204722 ], [ -96.021777150135279, 29.312116083492171 ], [ -96.021664150241506, 29.312392083733098 ], [ -96.022109150029905, 29.312524083639886 ], [ -96.022753150559865, 29.312715084090794 ], [ -96.023202150807236, 29.312848083902548 ], [ -96.028473151785946, 29.314414084235846 ], [ -96.028993152313859, 29.314568084137534 ], [ -96.030151152618643, 29.314812083910045 ], [ -96.031834153087061, 29.315013083618279 ], [ -96.032268152972335, 29.315065084229445 ], [ -96.033304153285101, 29.315189083844114 ], [ -96.034341153720973, 29.315304084155123 ], [ -96.034564153509336, 29.315329083376874 ], [ -96.035847154227781, 29.315471083885758 ], [ -96.03961315488425, 29.315886083570682 ], [ -96.041169155209303, 29.31607608365568 ], [ -96.04314515519637, 29.316279084108054 ], [ -96.04342815535712, 29.316339083392609 ], [ -96.045904155989376, 29.316612083787248 ], [ -96.04616815634931, 29.316641083488225 ], [ -96.047272156361771, 29.316778083271274 ], [ -96.048402156865762, 29.316910083607734 ], [ -96.049465157452062, 29.317002083928315 ], [ -96.050539157828908, 29.317126083338767 ], [ -96.05076215716953, 29.317163083396164 ], [ -96.051121157862525, 29.317224083683936 ], [ -96.062254160896288, 29.318470083806254 ], [ -96.066914162042195, 29.318982083659467 ], [ -96.068367161662991, 29.319142083523644 ], [ -96.069021162714193, 29.319215083249532 ], [ -96.070119162365543, 29.319334083457445 ], [ -96.070459162486713, 29.319372083345762 ], [ -96.070523162955482, 29.319379083808769 ], [ -96.070593163043171, 29.319387083367211 ], [ -96.070891162721495, 29.319420083836494 ], [ -96.071896162576579, 29.319531083073397 ], [ -96.073256163848185, 29.319731083764047 ], [ -96.074509163631333, 29.320015083170606 ], [ -96.075454163759119, 29.320266083094022 ], [ -96.075684164067042, 29.320328083747771 ], [ -96.077083164762513, 29.320700083833096 ], [ -96.077343164953447, 29.320765083737992 ], [ -96.082192165934529, 29.321985083387244 ], [ -96.082287166157244, 29.322009083143524 ], [ -96.083029165630947, 29.32219508363681 ], [ -96.083184165645406, 29.322234083241895 ], [ -96.084563166743493, 29.322581083505931 ], [ -96.087538167579439, 29.323336084111524 ], [ -96.089035167755199, 29.323722083374644 ], [ -96.091369168293085, 29.324323083495784 ], [ -96.093415168712255, 29.32484608378466 ], [ -96.094474168577818, 29.32511608391739 ], [ -96.096238169185426, 29.325597084226739 ], [ -96.097031169997976, 29.325813084295941 ], [ -96.097133169242653, 29.325529083763833 ], [ -96.097341170101728, 29.324946083586468 ], [ -96.097583169603524, 29.324312083275551 ], [ -96.097811169460456, 29.323775083039543 ], [ -96.097955169310794, 29.323415083625317 ], [ -96.09805116986341, 29.323172083122262 ], [ -96.098180169498747, 29.322859082919742 ], [ -96.098275170362726, 29.322603083024152 ], [ -96.098447169539838, 29.32213908320076 ], [ -96.098547170422947, 29.321873082797072 ], [ -96.098711170125398, 29.321461083115331 ], [ -96.09896617012528, 29.320819082635101 ], [ -96.099197170091003, 29.32025208262144 ], [ -96.09932217015411, 29.319917083011724 ], [ -96.09951716968807, 29.319401082494288 ], [ -96.099595169662663, 29.319194082167691 ], [ -96.099635170088362, 29.319104082170778 ], [ -96.099766170341397, 29.31880308242372 ], [ -96.100011170331271, 29.318198081975108 ], [ -96.100302170339418, 29.317479082244475 ], [ -96.100340170285307, 29.31734308208631 ], [ -96.100715170221235, 29.316441081976119 ], [ -96.100771170094049, 29.316302081802281 ], [ -96.100863169928544, 29.316073081871231 ], [ -96.101183170635963, 29.315277081930024 ], [ -96.101323170550359, 29.315086081325326 ], [ -96.101854170729396, 29.314687081206976 ], [ -96.102006170346399, 29.31431608170773 ], [ -96.102342170944652, 29.313496080971625 ], [ -96.102683170522539, 29.312662081327673 ], [ -96.103060170857432, 29.311706080868927 ], [ -96.10339717066222, 29.310781080585087 ], [ -96.103498171154584, 29.310506080439001 ], [ -96.103483170418613, 29.310356080243675 ], [ -96.103590171087532, 29.309291080060429 ], [ -96.103639171067698, 29.308910080156444 ], [ -96.103669171111818, 29.308679080591631 ], [ -96.103682170823305, 29.308579080055413 ], [ -96.103700171087169, 29.30844108053865 ], [ -96.104044170988701, 29.30576707960838 ], [ -96.10429417016914, 29.304964079300962 ], [ -96.104514170658646, 29.304523079203825 ], [ -96.104862171198505, 29.304094079443864 ], [ -96.105137170895958, 29.303728078956429 ], [ -96.106187170687505, 29.302329078569429 ], [ -96.107185171386618, 29.301092078532349 ], [ -96.107226171295721, 29.301041078362509 ], [ -96.1074831710376, 29.300746078155001 ], [ -96.107939171350168, 29.300224078602444 ], [ -96.108630171984032, 29.299360077710546 ], [ -96.109302171384059, 29.298541077486064 ], [ -96.109466171520481, 29.298327078013635 ], [ -96.111093171596835, 29.296205077664226 ], [ -96.111634171779627, 29.295478077282546 ], [ -96.112720172263153, 29.294020077075288 ], [ -96.113211172325194, 29.293379076925881 ], [ -96.113683172364119, 29.292686076116265 ], [ -96.114181172670712, 29.292121076270107 ], [ -96.114651172385109, 29.291748076304536 ], [ -96.114948172913614, 29.291512076335255 ], [ -96.11519217287227, 29.29130207588965 ], [ -96.11831917366186, 29.289399076074542 ], [ -96.121487173912328, 29.287472074797346 ], [ -96.122451174313539, 29.286884075376445 ], [ -96.122820175003383, 29.28666107468613 ], [ -96.1254331749344, 29.285011074542687 ], [ -96.128151175381902, 29.283321074027938 ], [ -96.129483175897022, 29.282492073879087 ], [ -96.129570176275507, 29.282438074002798 ], [ -96.131935177121534, 29.280968073654812 ], [ -96.133439176763147, 29.280253072912465 ], [ -96.133717176698482, 29.280151073310861 ], [ -96.134092177119172, 29.280038073575597 ], [ -96.134522177624874, 29.279932073509219 ], [ -96.13507917700737, 29.27982207317439 ], [ -96.13542117752759, 29.279324073269805 ], [ -96.135670177401224, 29.279039072651294 ], [ -96.136108177956658, 29.278569073287276 ], [ -96.136640177820411, 29.278124072503431 ], [ -96.136991177881825, 29.277871072897565 ], [ -96.139347177823481, 29.276400071920769 ], [ -96.140635178142787, 29.275605071869325 ], [ -96.144234179236832, 29.273384071513252 ], [ -96.149645180372829, 29.27002207096649 ], [ -96.151374181431962, 29.268945070606222 ], [ -96.152577181690575, 29.26819907048564 ], [ -96.155769182402082, 29.266220069779035 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1610, "Tract": "48167723600", "Area_SqMi": 62.97938518950459, "total_2009": 408, "total_2010": 487, "total_2011": 524, "total_2012": 762, "total_2013": 833, "total_2014": 932, "total_2015": 1109, "total_2016": 834, "total_2017": 863, "total_2018": 1333, "total_2019": 1493, "total_2020": 1338, "age1": 229, "age2": 666, "age3": 327, "earn1": 127, "earn2": 325, "earn3": 770, "naics_s01": 1, "naics_s02": 0, "naics_s03": 0, "naics_s04": 196, "naics_s05": 244, "naics_s06": 37, "naics_s07": 26, "naics_s08": 85, "naics_s09": 4, "naics_s10": 0, "naics_s11": 18, "naics_s12": 19, "naics_s13": 0, "naics_s14": 51, "naics_s15": 320, "naics_s16": 25, "naics_s17": 2, "naics_s18": 53, "naics_s19": 64, "naics_s20": 77, "race1": 949, "race2": 210, "race3": 10, "race4": 31, "race5": 3, "race6": 19, "ethnicity1": 885, "ethnicity2": 337, "edu1": 201, "edu2": 275, "edu3": 316, "edu4": 201, "Shape_Length": 189621.5367010638, "Shape_Area": 1755757468.7883639, "total_2021": 1168, "total_2022": 1222 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.119703919069181, 29.295871109738691 ], [ -95.11975591938355, 29.295845109322354 ], [ -95.1171079179298, 29.291894108604009 ], [ -95.114268917560338, 29.287664107776145 ], [ -95.114258916841806, 29.287649108560647 ], [ -95.113796917558702, 29.286961107824737 ], [ -95.109456915218246, 29.280496106614031 ], [ -95.107749914756525, 29.277953106387475 ], [ -95.106287915118259, 29.275774105727827 ], [ -95.104148913690864, 29.272587105007425 ], [ -95.104022914112022, 29.272399104951429 ], [ -95.103802914390585, 29.272071105454689 ], [ -95.103362914098497, 29.2714161055106 ], [ -95.099516912927399, 29.265738104334481 ], [ -95.099384912352974, 29.265538103892215 ], [ -95.099328912771938, 29.26545410445107 ], [ -95.099236912771275, 29.265315104314951 ], [ -95.099217912718203, 29.265287104352549 ], [ -95.098664912229069, 29.264453104230807 ], [ -95.098578911907154, 29.264323104248124 ], [ -95.098547912256933, 29.264276104279698 ], [ -95.098445912055354, 29.264122103857794 ], [ -95.098133912351656, 29.263652103500782 ], [ -95.098006912152158, 29.263465104060749 ], [ -95.097917912119982, 29.263334103941368 ], [ -95.097516911764046, 29.262724103249347 ], [ -95.097034911333537, 29.261991103372488 ], [ -95.093471910258401, 29.256502101967115 ], [ -95.093217910980428, 29.256111102430168 ], [ -95.093173910321099, 29.256043102149381 ], [ -95.093133910371975, 29.255983102586494 ], [ -95.093086910823729, 29.255911102436112 ], [ -95.093039910313038, 29.255839102238372 ], [ -95.092964910201232, 29.255723101899974 ], [ -95.092888910557051, 29.25560710201243 ], [ -95.090918909284127, 29.252711101786332 ], [ -95.090786910173833, 29.25250610162978 ], [ -95.090635910106002, 29.252272101396166 ], [ -95.090056909424334, 29.251433101289965 ], [ -95.089206908769256, 29.250119101196834 ], [ -95.088572908736808, 29.249151100861599 ], [ -95.088408909169743, 29.248932101412102 ], [ -95.088277908748736, 29.248750101099986 ], [ -95.088094908922884, 29.248493100605284 ], [ -95.087947909278569, 29.248269101143663 ], [ -95.086839908890113, 29.246582100539452 ], [ -95.085379908402288, 29.244359100033481 ], [ -95.085343908043285, 29.244305099888635 ], [ -95.085306908026013, 29.244252100505527 ], [ -95.085209908037044, 29.244109099921801 ], [ -95.085112908284103, 29.243966100166858 ], [ -95.084980907990328, 29.243784100186303 ], [ -95.084110908009592, 29.242405099704879 ], [ -95.08341490694815, 29.241319099447612 ], [ -95.082834907634194, 29.240430099216635 ], [ -95.08246890702776, 29.239869099187288 ], [ -95.082436907271642, 29.239820099135219 ], [ -95.079725906140794, 29.235670098523734 ], [ -95.076896905473191, 29.231338097757313 ], [ -95.076610905125037, 29.230900097755313 ], [ -95.075604904656245, 29.22922109734796 ], [ -95.075348904265496, 29.228812097245029 ], [ -95.071858903270339, 29.222964095932124 ], [ -95.068150902865526, 29.217404095176914 ], [ -95.067369902016011, 29.216232094883644 ], [ -95.066779901626916, 29.215347094845214 ], [ -95.06624190133806, 29.214528094962738 ], [ -95.065179901777157, 29.21294709471826 ], [ -95.061678900153325, 29.207694093461516 ], [ -95.058585899826824, 29.203053092319067 ], [ -95.057604899256745, 29.201583092068422 ], [ -95.057379898827378, 29.201217092286896 ], [ -95.05717889936524, 29.200927092167706 ], [ -95.057151899339999, 29.200885091959545 ], [ -95.056897898954844, 29.200482092275621 ], [ -95.056602898846307, 29.200011091690921 ], [ -95.056570898903473, 29.200070091604356 ], [ -95.056380898193282, 29.20015309218309 ], [ -95.056258898913384, 29.200196092341617 ], [ -95.0560408982072, 29.200215091742546 ], [ -95.055915898786651, 29.200104091466983 ], [ -95.055773898333612, 29.200056092000377 ], [ -95.055506898363262, 29.20010409203994 ], [ -95.055557898074781, 29.200493092311941 ], [ -95.055503898399451, 29.200614091730785 ], [ -95.055479898311262, 29.200667092290111 ], [ -95.055338898591415, 29.200777091626236 ], [ -95.055070898749008, 29.200840091788052 ], [ -95.054646898685235, 29.201077091780789 ], [ -95.054222897770202, 29.201298092061062 ], [ -95.053939898032908, 29.201361091812259 ], [ -95.053845898439363, 29.201487092281415 ], [ -95.05376789828594, 29.201645092040874 ], [ -95.053563898084676, 29.201645091900723 ], [ -95.053186898395296, 29.201676092624879 ], [ -95.053107898227935, 29.201818092001108 ], [ -95.052918897941652, 29.201865092161221 ], [ -95.052856897510566, 29.202055092702423 ], [ -95.052526897983938, 29.202197092788122 ], [ -95.052447897318828, 29.202307092286944 ], [ -95.052276897289445, 29.202128092232996 ], [ -95.052150898105396, 29.202243092134445 ], [ -95.052063897254499, 29.202336092178399 ], [ -95.051897897354465, 29.202449092289136 ], [ -95.046713896423555, 29.204351093509821 ], [ -95.0353698937042, 29.210459094988053 ], [ -95.0336918934767, 29.212126095375513 ], [ -95.033548893340495, 29.212745094816498 ], [ -95.033314893374751, 29.213756095133636 ], [ -95.033047892794073, 29.213929095912633 ], [ -95.032974893507145, 29.214116095631994 ], [ -95.032937893023629, 29.214213095806983 ], [ -95.032811893318637, 29.214465095457147 ], [ -95.032827893156778, 29.214607095904753 ], [ -95.032984893465795, 29.214655095605814 ], [ -95.033078893629963, 29.214828096036868 ], [ -95.032921892919248, 29.215033096096864 ], [ -95.032591893439104, 29.215285095922614 ], [ -95.032120893168354, 29.215727095720659 ], [ -95.031727893359829, 29.216011096129851 ], [ -95.031523893309952, 29.216420095755069 ], [ -95.031083892598119, 29.216909096638016 ], [ -95.030800892387518, 29.217256096635381 ], [ -95.03075389318802, 29.217855096246524 ], [ -95.030691892856936, 29.218296096590354 ], [ -95.030439893008122, 29.218549096514277 ], [ -95.030581892996466, 29.218990097023052 ], [ -95.030471893014052, 29.219511096312381 ], [ -95.030141892336374, 29.22012609685444 ], [ -95.030094893094059, 29.220315096628827 ], [ -95.030204892869975, 29.220504097340033 ], [ -95.03014189312789, 29.220741097118829 ], [ -95.029937892873249, 29.220946096942594 ], [ -95.029764892937038, 29.2212140971419 ], [ -95.02988989230812, 29.221513097420203 ], [ -95.029858892664748, 29.221781097143232 ], [ -95.029732893110904, 29.221876097027593 ], [ -95.02976489236147, 29.222034097122247 ], [ -95.029827893029648, 29.222444097353041 ], [ -95.029669892445824, 29.22301209751021 ], [ -95.029638892680396, 29.223311097348187 ], [ -95.029418892864527, 29.223500097182491 ], [ -95.029309892782038, 29.223745097655975 ], [ -95.029263893034638, 29.223953097573027 ], [ -95.029032892907878, 29.224381097815169 ], [ -95.028881892823662, 29.224959098003886 ], [ -95.028601892611647, 29.225771098510755 ], [ -95.028303892864969, 29.22632309804197 ], [ -95.02791089239588, 29.22709609881176 ], [ -95.027690892460996, 29.227600098800625 ], [ -95.027680892080511, 29.227718098198547 ], [ -95.02766489217349, 29.227927098294646 ], [ -95.027536892857796, 29.228216098466959 ], [ -95.027279892792464, 29.228537099139949 ], [ -95.027022892204982, 29.228939099248791 ], [ -95.026877892361696, 29.229019099182157 ], [ -95.026717892652229, 29.22903509851103 ], [ -95.026652891758886, 29.2290350991147 ], [ -95.026540892004562, 29.229099099021887 ], [ -95.026476892532742, 29.229212099169487 ], [ -95.026444892205376, 29.229485099029024 ], [ -95.02636389268784, 29.229678099256429 ], [ -95.026251891916615, 29.229790098831568 ], [ -95.026122892156906, 29.229854098956885 ], [ -95.026026892200264, 29.229951098810982 ], [ -95.026026892554185, 29.230015099017866 ], [ -95.02593089184721, 29.230079098782891 ], [ -95.025849892567095, 29.230176098889142 ], [ -95.025737892406497, 29.230368099454481 ], [ -95.025640891613975, 29.230449098724577 ], [ -95.025496892029764, 29.230497099426849 ], [ -95.025351892364341, 29.23052909967042 ], [ -95.025271891501419, 29.230497099562673 ], [ -95.025191891549511, 29.230529099640467 ], [ -95.025142892436634, 29.230626099364066 ], [ -95.025110891499537, 29.230850099576458 ], [ -95.025094892167843, 29.23102709892073 ], [ -95.025046891896579, 29.231188099716551 ], [ -95.024998892328611, 29.231316099607593 ], [ -95.024885891779846, 29.231413099069346 ], [ -95.02478989210212, 29.231477098996045 ], [ -95.024757892233822, 29.231541099096518 ], [ -95.024725891809553, 29.231654099459739 ], [ -95.024644892344085, 29.231686099219466 ], [ -95.024580892289464, 29.231686099823623 ], [ -95.024532891728612, 29.231718099669468 ], [ -95.024500892297127, 29.231766099448038 ], [ -95.024468892158325, 29.231830099476948 ], [ -95.024371892009654, 29.23195909963945 ], [ -95.024275891852071, 29.231991099547002 ], [ -95.024195891417477, 29.232023099954031 ], [ -95.024130891417144, 29.232007099131557 ], [ -95.024034891561826, 29.232119099375677 ], [ -95.02401889175205, 29.232216099920628 ], [ -95.023922892075717, 29.232296099535766 ], [ -95.023857892129044, 29.232521099535607 ], [ -95.023729891453328, 29.232730099459946 ], [ -95.02356889125555, 29.232842099530444 ], [ -95.02347289135372, 29.232955099755241 ], [ -95.023359891457631, 29.233067099752152 ], [ -95.023263891608039, 29.233067100218577 ], [ -95.023183891102136, 29.233276099892905 ], [ -95.022845891420147, 29.233597099948366 ], [ -95.022765891380104, 29.233758100367758 ], [ -95.022636891842836, 29.233886100249308 ], [ -95.022331890984631, 29.234047100466729 ], [ -95.022138891285962, 29.234192100067435 ], [ -95.02202689114489, 29.234288099663281 ], [ -95.02180189121438, 29.234320100199028 ], [ -95.021657890972264, 29.234256100337998 ], [ -95.021640890755577, 29.23416010039324 ], [ -95.021560890828482, 29.234143099887358 ], [ -95.021387891018918, 29.234170099888697 ], [ -95.021351891523963, 29.23417610001102 ], [ -95.021207891003854, 29.234304100402099 ], [ -95.021110890686742, 29.234417099857932 ], [ -95.020918891320861, 29.234513100211775 ], [ -95.020693891306337, 29.234561100093323 ], [ -95.020548891159507, 29.234609100105757 ], [ -95.020371890818268, 29.234770100322581 ], [ -95.0203398903992, 29.23488210031028 ], [ -95.020307890834999, 29.235075100326583 ], [ -95.020307890809207, 29.235380100803031 ], [ -95.020147890817597, 29.235589100022548 ], [ -95.019986891254803, 29.23567010028631 ], [ -95.019777891295561, 29.235927100318683 ], [ -95.019665890694853, 29.236039100118834 ], [ -95.019504890324143, 29.236055100982064 ], [ -95.01903889040068, 29.236055101005046 ], [ -95.018797890176188, 29.236087100841811 ], [ -95.018620890575932, 29.236151100355752 ], [ -95.018396890850966, 29.236280100231419 ], [ -95.01818789029177, 29.236441100611707 ], [ -95.018010890036649, 29.236521100525824 ], [ -95.017882890239846, 29.236537100338868 ], [ -95.01776989073511, 29.236665100677069 ], [ -95.017673889980713, 29.236778100558606 ], [ -95.01748089003128, 29.236906101179226 ], [ -95.017287890622228, 29.236955100395807 ], [ -95.017030890526812, 29.237019100858724 ], [ -95.016837889937321, 29.237115100858244 ], [ -95.016683890182492, 29.23726910052039 ], [ -95.016645889785821, 29.237308101071861 ], [ -95.016436890281526, 29.237565100694628 ], [ -95.016259890316476, 29.237694100558418 ], [ -95.016179889807006, 29.23787010089692 ], [ -95.016018889524659, 29.23795110104076 ], [ -95.01590689032065, 29.237951101157378 ], [ -95.015825890149628, 29.237999101469352 ], [ -95.01577789020098, 29.238143101379855 ], [ -95.0156498893177, 29.23822410067233 ], [ -95.015327890228448, 29.238320101248966 ], [ -95.015231890216199, 29.238384100922431 ], [ -95.015247889844574, 29.238529101153684 ], [ -95.015183889250906, 29.238593101303117 ], [ -95.015135889737294, 29.238593100948396 ], [ -95.01505488963727, 29.23865710112571 ], [ -95.015006890075796, 29.238706101107699 ], [ -95.014910889767648, 29.238722101431154 ], [ -95.014669889279716, 29.238979101431529 ], [ -95.014547889882579, 29.239056101667881 ], [ -95.01275888926142, 29.240050101592342 ], [ -95.012564889046999, 29.240099101278055 ], [ -95.012240889512782, 29.240115101816574 ], [ -95.011835888714899, 29.240261101845178 ], [ -95.011138888925103, 29.240666101429479 ], [ -95.010879888852983, 29.240795101728757 ], [ -95.010636889129785, 29.240795101651813 ], [ -95.01044288862802, 29.24086010224773 ], [ -95.010329888652521, 29.240990101852521 ], [ -95.010280888591453, 29.2410711016243 ], [ -95.010037888360003, 29.2412491020768 ], [ -95.009843888909117, 29.241703101605871 ], [ -95.009648888030355, 29.241832102267985 ], [ -95.009324888680027, 29.242027102411296 ], [ -95.009292888326655, 29.24210810248886 ], [ -95.009211887806771, 29.242156102550766 ], [ -95.009178888091995, 29.242302102350084 ], [ -95.009195887935391, 29.242496102266788 ], [ -95.009097888773567, 29.242675102647578 ], [ -95.00877388862898, 29.243047102803676 ], [ -95.008417888391563, 29.243339102062659 ], [ -95.008223887874479, 29.243355102754595 ], [ -95.008109888499746, 29.243355102509057 ], [ -95.007996887727401, 29.243501102382965 ], [ -95.007801888089475, 29.243533102677858 ], [ -95.007704887514691, 29.243566102114485 ], [ -95.00754288794451, 29.243744102794377 ], [ -95.007396888069778, 29.244035102199746 ], [ -95.007348888397374, 29.244084102283143 ], [ -95.007251888229959, 29.244100102531139 ], [ -95.006975888202703, 29.244311102513144 ], [ -95.006732887352555, 29.244619102474712 ], [ -95.00673288748014, 29.244716103051566 ], [ -95.006667888080472, 29.244797102617518 ], [ -95.006538888231603, 29.245024102598219 ], [ -95.006457887404423, 29.245153103112894 ], [ -95.006327887516207, 29.245186102489146 ], [ -95.006133887762729, 29.245218103321029 ], [ -95.005987887768555, 29.245364103321133 ], [ -95.005874887747979, 29.245623103368569 ], [ -95.005663887612968, 29.24593110334639 ], [ -95.00548588784315, 29.246044102653777 ], [ -95.005300887319919, 29.246066102962523 ], [ -95.005099887079737, 29.246190103530679 ], [ -95.004867887077623, 29.246221102786883 ], [ -95.004696886994367, 29.246298102888463 ], [ -95.004588887323493, 29.246375103231554 ], [ -95.004542887418438, 29.246499103533338 ], [ -95.004371886976386, 29.246731103056675 ], [ -95.004201886730826, 29.246839103058903 ], [ -95.003954887021493, 29.246917103251342 ], [ -95.003799887280721, 29.246994103388136 ], [ -95.003675887309527, 29.247102103106645 ], [ -95.003567887404145, 29.247211103349265 ], [ -95.003381887095571, 29.247273103561838 ], [ -95.003180886884877, 29.247304103062795 ], [ -95.002979887418135, 29.247273103417459 ], [ -95.002855887133876, 29.247257103751021 ], [ -95.002809886794665, 29.247381103503162 ], [ -95.002700886889286, 29.247520103766163 ], [ -95.002871886701598, 29.24766010306648 ], [ -95.002979887092806, 29.247706103246937 ], [ -95.003041886530141, 29.24795410325471 ], [ -95.002979886860018, 29.248201103724252 ], [ -95.002932886790745, 29.248541103499118 ], [ -95.002824886575482, 29.248758104167536 ], [ -95.002700886569741, 29.24888210339671 ], [ -95.002546886414692, 29.24905210335989 ], [ -95.002546886836456, 29.249300104240199 ], [ -95.002422887079931, 29.249625104327524 ], [ -95.00217488668028, 29.250027104199262 ], [ -95.001989887103832, 29.250228104174219 ], [ -95.001911886375737, 29.250537104387895 ], [ -95.001757887139135, 29.250754104229571 ], [ -95.001493886937567, 29.251064104534962 ], [ -95.001370886315144, 29.251249104022428 ], [ -95.001122886849032, 29.251358103968872 ], [ -95.000983886172349, 29.251497104054554 ], [ -95.000906886886753, 29.251605104682255 ], [ -95.00073588635405, 29.251667104522348 ], [ -95.000642886034342, 29.251667104274034 ], [ -95.000658886432547, 29.25183710477663 ], [ -95.000581886347192, 29.25210010420265 ], [ -95.000379886015281, 29.252317104322696 ], [ -95.000318886501077, 29.252472104144797 ], [ -95.000209886688737, 29.252503104241026 ], [ -94.999984886178638, 29.252762105084042 ], [ -94.999960886735877, 29.25281210451115 ], [ -94.999903885991174, 29.252829104867438 ], [ -94.999892886738706, 29.252793104924653 ], [ -94.99983788596515, 29.252766104254665 ], [ -94.999689886419574, 29.252774104512646 ], [ -94.999627885985333, 29.252809104768012 ], [ -94.999656886262699, 29.252972104762307 ], [ -94.999570886334212, 29.253101104887083 ], [ -94.999604885987196, 29.253253104681654 ], [ -94.999362885798206, 29.253308104983731 ], [ -94.999346886486677, 29.253358105137842 ], [ -94.999362885967145, 29.253382104593832 ], [ -94.999339886243149, 29.253406104679865 ], [ -94.999365886533568, 29.253449105046634 ], [ -94.99936288606402, 29.253528104889138 ], [ -94.999389885753416, 29.253578105263095 ], [ -94.999339886134052, 29.253623105296569 ], [ -94.999367886378252, 29.253671105185266 ], [ -94.999322886685491, 29.253752104827583 ], [ -94.999183886391222, 29.253996104933023 ], [ -94.999012886111984, 29.254146104650509 ], [ -94.99878788626053, 29.254198104807454 ], [ -94.998737886603919, 29.254260105343278 ], [ -94.998682886230498, 29.254265104938852 ], [ -94.998587886557161, 29.254292105424692 ], [ -94.998489885684478, 29.254432105285094 ], [ -94.998460886304315, 29.254513105513045 ], [ -94.99842988618903, 29.254568104915865 ], [ -94.998355886429451, 29.25457610486465 ], [ -94.998293886472098, 29.254611105455481 ], [ -94.998351886351486, 29.254826104790027 ], [ -94.998212885636292, 29.25506210557884 ], [ -94.997919886334714, 29.255325105660749 ], [ -94.997809885570703, 29.255411105433907 ], [ -94.99782188580302, 29.255504105610346 ], [ -94.997680885875937, 29.255793105625248 ], [ -94.997305885390503, 29.256232105892291 ], [ -94.997169885703627, 29.256323105529674 ], [ -94.997033885311495, 29.25630110575295 ], [ -94.996816885286179, 29.256473105488176 ], [ -94.996859886086185, 29.256576105806694 ], [ -94.996811885375919, 29.256621105387293 ], [ -94.996747885743218, 29.256635105388888 ], [ -94.996725885400281, 29.256673105810819 ], [ -94.996756886062244, 29.256743105871557 ], [ -94.996692885842037, 29.256848105279786 ], [ -94.996487885369092, 29.257027105336988 ], [ -94.996427885367027, 29.257041105224719 ], [ -94.996396885906179, 29.257191106012275 ], [ -94.996293885928296, 29.257349106110873 ], [ -94.99609688603077, 29.257548105718957 ], [ -94.995990885177051, 29.257647106122331 ], [ -94.995916885504357, 29.257678105873321 ], [ -94.995830885625807, 29.257657105573173 ], [ -94.99571688571821, 29.257695106211699 ], [ -94.995680885726159, 29.257786105989648 ], [ -94.995572885988793, 29.257855105623889 ], [ -94.995539885099419, 29.257898105884649 ], [ -94.995520885283739, 29.257969106149343 ], [ -94.99546388543807, 29.258010106179089 ], [ -94.995410885699343, 29.25802010589803 ], [ -94.995379885266743, 29.258098105725075 ], [ -94.995250885371021, 29.258115105564265 ], [ -94.995224885212693, 29.25815310568478 ], [ -94.99519188544582, 29.258237106266112 ], [ -94.995188885214546, 29.258447105550545 ], [ -94.994971884877657, 29.258678105716982 ], [ -94.994763885309922, 29.258776105802486 ], [ -94.994682885814228, 29.258857105883408 ], [ -94.994508885321039, 29.258781106222322 ], [ -94.994353885374238, 29.258848105939364 ], [ -94.994279884738546, 29.258929105708788 ], [ -94.994052885005871, 29.259034106058774 ], [ -94.994043885535049, 29.259170106005932 ], [ -94.994081885305064, 29.259280105755277 ], [ -94.994279885339552, 29.259354105855017 ], [ -94.994207885186242, 29.259485106125076 ], [ -94.994128884944971, 29.259518106180561 ], [ -94.99402188477606, 29.259602106680685 ], [ -94.993957885262802, 29.259645105960491 ], [ -94.993954885525056, 29.259745106140123 ], [ -94.993878885334667, 29.259824106293795 ], [ -94.993758885135009, 29.259893105980844 ], [ -94.993637884855858, 29.260101106801816 ], [ -94.99353988535843, 29.2601061059895 ], [ -94.993496885469625, 29.260153106485792 ], [ -94.993489884856189, 29.260244105962283 ], [ -94.993381884560094, 29.260351106810909 ], [ -94.993295884695243, 29.260349106388272 ], [ -94.993293885498659, 29.26030610659711 ], [ -94.993174885133485, 29.26027010598774 ], [ -94.99306288504512, 29.260339106256762 ], [ -94.993083885443582, 29.260375106711756 ], [ -94.993066884758463, 29.260411106245005 ], [ -94.993014885329629, 29.260449106421074 ], [ -94.993028885358498, 29.260485106848694 ], [ -94.993007885144337, 29.260509106421438 ], [ -94.992980884804766, 29.26049210674417 ], [ -94.992937885357094, 29.260478106690854 ], [ -94.992899885164945, 29.260504106128 ], [ -94.992873885395596, 29.260509106539239 ], [ -94.992878884814118, 29.260554106052314 ], [ -94.992866884376468, 29.260577106694097 ], [ -94.992821884539964, 29.260597106627689 ], [ -94.99283288525352, 29.260662106865972 ], [ -94.992828884375442, 29.260697106710129 ], [ -94.992799884701299, 29.260714106148903 ], [ -94.992790884822668, 29.260745106872093 ], [ -94.992743884640149, 29.260744106775395 ], [ -94.99268488458263, 29.260783106231891 ], [ -94.992675885251117, 29.260831106793614 ], [ -94.992806884394412, 29.260898106812085 ], [ -94.99285488515001, 29.260891106979557 ], [ -94.992818885374462, 29.261034106812513 ], [ -94.992747884476131, 29.261120106575863 ], [ -94.992594885282031, 29.26121310709933 ], [ -94.992537884736635, 29.26119910680271 ], [ -94.992436884651667, 29.261232106402794 ], [ -94.992396884582647, 29.261392106700765 ], [ -94.992307884780047, 29.261499106380022 ], [ -94.992248885259656, 29.261509106920929 ], [ -94.992169884260548, 29.261557106762574 ], [ -94.992136884429698, 29.261657107028817 ], [ -94.992140885236665, 29.261822106416567 ], [ -94.992073884720014, 29.261885106733196 ], [ -94.991985884211985, 29.2620411070322 ], [ -94.991844884897247, 29.262194107295098 ], [ -94.991773884364576, 29.262318106791575 ], [ -94.991653885028228, 29.262435106736792 ], [ -94.991522885104601, 29.262478106590819 ], [ -94.991486884279865, 29.262547107289855 ], [ -94.991520884617898, 29.262662106697828 ], [ -94.991510884748578, 29.262798107140679 ], [ -94.991448884185985, 29.262908107472136 ], [ -94.991431884394558, 29.262936106656294 ], [ -94.991336884293602, 29.263082107369002 ], [ -94.991279884374691, 29.263141106812963 ], [ -94.99121488465974, 29.263182107466118 ], [ -94.991133884696353, 29.263141107421092 ], [ -94.991057884895966, 29.263163107127564 ], [ -94.990918884278031, 29.263196106897389 ], [ -94.990828884240628, 29.263280106982261 ], [ -94.990758884301158, 29.263454107217768 ], [ -94.990840884382806, 29.263509107415715 ], [ -94.990761884680239, 29.263519107209287 ], [ -94.990787884360373, 29.263583106874474 ], [ -94.990761884482708, 29.263638106933456 ], [ -94.990758884018547, 29.26370210758034 ], [ -94.990727884962638, 29.26374510734551 ], [ -94.99066588483403, 29.263769106928134 ], [ -94.990641884766376, 29.263848107173462 ], [ -94.990606884603167, 29.263908107404589 ], [ -94.990536884118953, 29.263946107050561 ], [ -94.99049188404949, 29.263941107123376 ], [ -94.990427884829145, 29.264106107446416 ], [ -94.990272884122888, 29.264351107515843 ], [ -94.990095883940512, 29.264478107271817 ], [ -94.989937883980318, 29.264514107238231 ], [ -94.989847884018275, 29.264442107107193 ], [ -94.989754884316369, 29.264471107425138 ], [ -94.989739884668296, 29.264547107209317 ], [ -94.989651884177434, 29.264647107482407 ], [ -94.989565884078502, 29.264731107908457 ], [ -94.989565884343037, 29.264798107800583 ], [ -94.989448884040968, 29.264896107059016 ], [ -94.989336884496609, 29.264958107284084 ], [ -94.989269884378984, 29.265132107668684 ], [ -94.989169884206291, 29.265237107813643 ], [ -94.989081884605184, 29.265383107268761 ], [ -94.989024883885619, 29.26559410756629 ], [ -94.989023884026111, 29.265616108025323 ], [ -94.987248883333095, 29.267284107983695 ], [ -94.987138883763791, 29.26738710838606 ], [ -94.985658882890249, 29.26885510875378 ], [ -94.985565883050398, 29.268855108406516 ], [ -94.98544088330874, 29.268990108050527 ], [ -94.985253883477299, 29.269206108297901 ], [ -94.985098883460779, 29.269233108589937 ], [ -94.98488088320201, 29.269395108663026 ], [ -94.984755883274943, 29.269449108998426 ], [ -94.984630882954463, 29.269556108581458 ], [ -94.984537882768862, 29.269799109048591 ], [ -94.984194883134535, 29.270258108737295 ], [ -94.983820883172044, 29.270528109195769 ], [ -94.98366488270365, 29.270636108968812 ], [ -94.983353882652835, 29.270798108603021 ], [ -94.983104882656619, 29.270852108813376 ], [ -94.983072882868555, 29.271095108785378 ], [ -94.982948882678897, 29.271338108764297 ], [ -94.98288588249541, 29.271392109140969 ], [ -94.982854882594282, 29.271473109242386 ], [ -94.982418883083781, 29.271796109010292 ], [ -94.982356882200278, 29.271850109467184 ], [ -94.982231882705022, 29.271985109004458 ], [ -94.982200882336628, 29.272093108832799 ], [ -94.982013882353968, 29.272174109037397 ], [ -94.981982882727323, 29.272282108843342 ], [ -94.98185788265306, 29.272309109418568 ], [ -94.981826882691166, 29.272390109302354 ], [ -94.9816708824155, 29.272525109461036 ], [ -94.981639882321474, 29.272633109182301 ], [ -94.981515882818869, 29.272768109337733 ], [ -94.981297882579469, 29.272822109764256 ], [ -94.981172882695063, 29.272849109726639 ], [ -94.981141882569887, 29.273173109313984 ], [ -94.981078882128571, 29.273308109430971 ], [ -94.980891882855133, 29.273443109738199 ], [ -94.980580882498572, 29.273550109411591 ], [ -94.980549881939822, 29.273658109797832 ], [ -94.98036288209768, 29.273712109719455 ], [ -94.980268882068728, 29.274090109291212 ], [ -94.980081882283926, 29.274144109748676 ], [ -94.979957881648559, 29.274225109637772 ], [ -94.9797088820428, 29.274252109327794 ], [ -94.979552882210925, 29.274387109867838 ], [ -94.979427882472535, 29.274441109962922 ], [ -94.979334882402696, 29.27465710997242 ], [ -94.97927188235559, 29.274711109644553 ], [ -94.979271881550645, 29.274954109549238 ], [ -94.979084882088102, 29.275035110374237 ], [ -94.979053881597196, 29.275143109551969 ], [ -94.978711881550552, 29.275224109666695 ], [ -94.978679882371509, 29.275305110354608 ], [ -94.978212881293558, 29.27535910970871 ], [ -94.977838881541302, 29.275655110043573 ], [ -94.977783881221939, 29.275683109760308 ], [ -94.977620881346056, 29.275763109905562 ], [ -94.977246881201054, 29.276114110625805 ], [ -94.977215881553761, 29.276195110454331 ], [ -94.976748881847669, 29.276519110246632 ], [ -94.97665488167388, 29.276708110073734 ], [ -94.976623881738377, 29.276870110389183 ], [ -94.976561881864114, 29.276924110137198 ], [ -94.97649888175043, 29.277113110805779 ], [ -94.976374881234051, 29.277248110050799 ], [ -94.976249881638338, 29.277463110897664 ], [ -94.976125881021559, 29.277625110734352 ], [ -94.975844881421352, 29.277706110900386 ], [ -94.975719880850463, 29.277814110180461 ], [ -94.97531488127602, 29.278192110927918 ], [ -94.975190881499472, 29.278300111055739 ], [ -94.975034881195086, 29.278327110551214 ], [ -94.974878881184608, 29.278543111077767 ], [ -94.974660881239544, 29.278597111032475 ], [ -94.974411881036389, 29.27892111107748 ], [ -94.974255881314448, 29.279056111184779 ], [ -94.97413188111274, 29.279110110533654 ], [ -94.97397588057926, 29.279218111290092 ], [ -94.973694881166324, 29.279352111088258 ], [ -94.97338388113468, 29.279595110901031 ], [ -94.973040880672869, 29.279703110966043 ], [ -94.972978880956845, 29.279811110795833 ], [ -94.972802880642945, 29.279941111060324 ], [ -94.972760880487783, 29.27997311104502 ], [ -94.97263588016753, 29.280054111277348 ], [ -94.972573880279612, 29.280000111370441 ], [ -94.972542880360621, 29.279919111552029 ], [ -94.972448880196367, 29.279946110899523 ], [ -94.97244888052515, 29.280108111376986 ], [ -94.972323880108902, 29.280162111397097 ], [ -94.971918879939693, 29.280216111317131 ], [ -94.971825880410449, 29.280297111436575 ], [ -94.97157688029489, 29.280405111567564 ], [ -94.971295880442526, 29.280486111480659 ], [ -94.971046880302865, 29.280594111552439 ], [ -94.970766879696498, 29.280513111142163 ], [ -94.970547880323267, 29.280675111132677 ], [ -94.970267880163192, 29.280648111375132 ], [ -94.970080879526805, 29.280567111179394 ], [ -94.969831879667808, 29.280567111056421 ], [ -94.969706879386436, 29.28075611112661 ], [ -94.969582879671648, 29.280783111853591 ], [ -94.969270880011948, 29.280918111268054 ], [ -94.969145880160639, 29.280918111209655 ], [ -94.968959879795349, 29.280837111681741 ], [ -94.968772879111995, 29.280837111299725 ], [ -94.968031879668018, 29.280884111315284 ], [ -94.967218879388582, 29.280995111919299 ], [ -94.96685687877499, 29.281147111224637 ], [ -94.966746878662832, 29.281295111270197 ], [ -94.966809879542069, 29.281457111587777 ], [ -94.967276878902084, 29.281538112120021 ], [ -94.967650878924289, 29.281538111281023 ], [ -94.967899879351762, 29.281592111725725 ], [ -94.96808687942584, 29.281592111465759 ], [ -94.968460880028672, 29.281457111307031 ], [ -94.968616879704584, 29.281349111310806 ], [ -94.968709879708243, 29.281268111543103 ], [ -94.968859879727944, 29.281224111322732 ], [ -94.968941879566955, 29.281191111524361 ], [ -94.969055879225365, 29.281164111538178 ], [ -94.96920887917112, 29.281134111942709 ], [ -94.969395879425093, 29.28110711173634 ], [ -94.97069388046593, 29.281107111468604 ], [ -94.970856879983174, 29.282146112084494 ], [ -94.970040879979251, 29.281952112122816 ], [ -94.968268879394614, 29.283401111828027 ], [ -94.966050878644978, 29.284135111964989 ], [ -94.964301878119102, 29.285061112068011 ], [ -94.962629878188508, 29.28555011297772 ], [ -94.959904877404298, 29.287452113077777 ], [ -94.95468887628752, 29.291953114578806 ], [ -94.955324876457041, 29.292177114377491 ], [ -94.955094876410087, 29.29225211456486 ], [ -94.95496987613528, 29.29241411440066 ], [ -94.95478287642942, 29.292441114060445 ], [ -94.954595876677857, 29.292657114530758 ], [ -94.954564876163403, 29.292846114189892 ], [ -94.954408876358983, 29.292927114787865 ], [ -94.954377876662733, 29.293088114944705 ], [ -94.954221876500071, 29.293223114472564 ], [ -94.954003876382927, 29.293250114309654 ], [ -94.953910876110953, 29.293358114325184 ], [ -94.953910876744018, 29.293871114831113 ], [ -94.953972876533854, 29.29416811453402 ], [ -94.953910876431721, 29.294276115180363 ], [ -94.953941876372511, 29.294492115083369 ], [ -94.954035876812256, 29.29457311482857 ], [ -94.954147876227694, 29.29469011493795 ], [ -94.953972876447921, 29.294732114790829 ], [ -94.953923876370297, 29.294837115090985 ], [ -94.953660876003013, 29.294921114584408 ], [ -94.953221876152043, 29.295174115421425 ], [ -94.953131875718725, 29.295197115034192 ], [ -94.952870876479025, 29.295265115469402 ], [ -94.952860876286991, 29.295370115266422 ], [ -94.952773876563256, 29.295426114952409 ], [ -94.95274387569016, 29.295532114867832 ], [ -94.952509876395098, 29.2954761154054 ], [ -94.952431875472953, 29.295546115065985 ], [ -94.952373875505771, 29.295539115475218 ], [ -94.952275876194804, 29.295469115521364 ], [ -94.952158876030396, 29.295490114984617 ], [ -94.952203875970966, 29.295607115517772 ], [ -94.9522368755419, 29.295693115055123 ], [ -94.951963876321841, 29.295749115298566 ], [ -94.952019876025119, 29.295637115165526 ], [ -94.951854875724379, 29.295733115237642 ], [ -94.951810875319453, 29.295771115457097 ], [ -94.951720875547053, 29.295911114914443 ], [ -94.951603875852186, 29.296016115136023 ], [ -94.951582876077296, 29.296017115458657 ], [ -94.95126287611734, 29.29603711521677 ], [ -94.951067875288658, 29.296121115555277 ], [ -94.950920875363707, 29.29628911517824 ], [ -94.950969875834446, 29.296381115516684 ], [ -94.950911875814626, 29.296500115784358 ], [ -94.950852875849733, 29.296654115748112 ], [ -94.95058987536062, 29.296746115044101 ], [ -94.950462875703778, 29.29676011564737 ], [ -94.950404875773714, 29.296893115469427 ], [ -94.950358875144801, 29.296920115442411 ], [ -94.950265875778769, 29.297001115774101 ], [ -94.950078875475072, 29.297055115460513 ], [ -94.949860875009961, 29.297136115193663 ], [ -94.949828875780824, 29.297217115936846 ], [ -94.949704874970266, 29.297244115107407 ], [ -94.949735875395604, 29.297406115163191 ], [ -94.949735875212284, 29.29746011524713 ], [ -94.94964187493143, 29.297730115781246 ], [ -94.949579874879817, 29.297919115603175 ], [ -94.949673875014241, 29.298027115717865 ], [ -94.949673875179144, 29.298243116064029 ], [ -94.949579875211711, 29.298270116179467 ], [ -94.949548875780039, 29.298513115879395 ], [ -94.949455875688415, 29.298540115584341 ], [ -94.949423875215174, 29.298702115425023 ], [ -94.949330874883529, 29.298729115943932 ], [ -94.949299874897292, 29.29881011622188 ], [ -94.949174875316416, 29.298836115852449 ], [ -94.948800875108603, 29.298998115837833 ], [ -94.948707875618595, 29.299160116193953 ], [ -94.94855187522208, 29.299484116127481 ], [ -94.948458875152866, 29.299565116166299 ], [ -94.94842687527813, 29.299700115773831 ], [ -94.948333874807261, 29.299727115625316 ], [ -94.94833387498808, 29.300078116238325 ], [ -94.948395874677033, 29.300132116441212 ], [ -94.94842687481561, 29.300240115771665 ], [ -94.948426874971574, 29.300294115865629 ], [ -94.94814687474134, 29.300591115993242 ], [ -94.947959875239661, 29.300726116691713 ], [ -94.947897874563765, 29.300779116083614 ], [ -94.947741874828523, 29.300806116452744 ], [ -94.947647875196694, 29.301130116727062 ], [ -94.947554875340288, 29.301238116238746 ], [ -94.947461874547415, 29.30145411675667 ], [ -94.947336874820593, 29.301562116181703 ], [ -94.947274874465023, 29.301670116682526 ], [ -94.947149874754231, 29.301832116944571 ], [ -94.946931874777789, 29.302021116946925 ], [ -94.946837874717701, 29.302210116445465 ], [ -94.946806874759687, 29.302291117100417 ], [ -94.94661987447175, 29.302426116915679 ], [ -94.946495874937952, 29.302561117158081 ], [ -94.946370874522771, 29.302803116504339 ], [ -94.946245875052526, 29.302965116889325 ], [ -94.94609087467876, 29.303100117128462 ], [ -94.94605887472423, 29.303181117025186 ], [ -94.945809874715778, 29.303208117119851 ], [ -94.945778875106527, 29.303451116990797 ], [ -94.945373874122197, 29.303478116932261 ], [ -94.945248874764559, 29.303586117232175 ], [ -94.945280874660085, 29.30372111706372 ], [ -94.945280874271461, 29.303883117390576 ], [ -94.945217874757432, 29.303937117218368 ], [ -94.944937874576937, 29.304234117366832 ], [ -94.944812874866955, 29.304342117278178 ], [ -94.944781874315495, 29.30453111681728 ], [ -94.944688874812087, 29.304612117126712 ], [ -94.944656874270891, 29.304693117602998 ], [ -94.94456387479255, 29.304719117344483 ], [ -94.944594874338648, 29.304827117558357 ], [ -94.944594874116675, 29.304908117725319 ], [ -94.944532873992628, 29.305016117057704 ], [ -94.944501874451149, 29.305097117239029 ], [ -94.944189874590464, 29.305178117548557 ], [ -94.944064873934323, 29.305286117677902 ], [ -94.944002873899493, 29.305448117808801 ], [ -94.943846873722705, 29.305583117697079 ], [ -94.943846874189987, 29.305745117173565 ], [ -94.943753874229913, 29.30585311782329 ], [ -94.943691874670193, 29.305961117714865 ], [ -94.943566874592278, 29.306069117428311 ], [ -94.943597873845547, 29.306204117924757 ], [ -94.943722874062331, 29.306312117760019 ], [ -94.943566873918456, 29.306420117296479 ], [ -94.94359787395743, 29.306528117747423 ], [ -94.943784874671437, 29.306609117860869 ], [ -94.943815874209719, 29.306770117978349 ], [ -94.943878873817042, 29.306824118084258 ], [ -94.943753874693414, 29.306986118128037 ], [ -94.943722874211943, 29.307229117548403 ], [ -94.943659874276392, 29.307391117816522 ], [ -94.943472873929295, 29.307715117537601 ], [ -94.943472874322879, 29.308012118159638 ], [ -94.943379874589112, 29.308174117802835 ], [ -94.943099873828515, 29.308471118024411 ], [ -94.943067874187548, 29.308659118031247 ], [ -94.942756873683663, 29.308929118123494 ], [ -94.942382873573379, 29.309442118336282 ], [ -94.942351874102144, 29.309550118119983 ], [ -94.942289873963432, 29.309928117974309 ], [ -94.942164873559946, 29.310144118531142 ], [ -94.942070873421699, 29.310414118728659 ], [ -94.941977873482912, 29.311061119009636 ], [ -94.941821873779304, 29.311331118862206 ], [ -94.941790874114716, 29.311898118536583 ], [ -94.941759873936661, 29.312492119106881 ], [ -94.938902873212228, 29.313637119609897 ], [ -94.93966787311841, 29.314546119695869 ], [ -94.940261873765266, 29.314714119653882 ], [ -94.940438873688663, 29.314784119807527 ], [ -94.940374873694509, 29.315805119607166 ], [ -94.940502874221593, 29.316253119635935 ], [ -94.943024874561175, 29.317330119840339 ], [ -94.944341874724245, 29.318015120405281 ], [ -94.94474287462107, 29.318812120212822 ], [ -94.944871875076061, 29.32053312073548 ], [ -94.945513875383767, 29.3209941205509 ], [ -94.946220875684276, 29.321302120303688 ], [ -94.947002875497049, 29.322344120754302 ], [ -94.947309875865599, 29.322936120726688 ], [ -94.947285875545532, 29.323005121120541 ], [ -94.947101875547901, 29.323611120705031 ], [ -94.946936875781034, 29.323847121110646 ], [ -94.947151876126995, 29.324694121674415 ], [ -94.947536876428373, 29.326212121659911 ], [ -94.947241875581369, 29.327209121986474 ], [ -94.947064875475292, 29.327806122178128 ], [ -94.946875876444608, 29.328046121729965 ], [ -94.946746876352265, 29.328210122173282 ], [ -94.946575876321532, 29.32842812202917 ], [ -94.946456875566781, 29.328587121741315 ], [ -94.946419875586173, 29.328637121807599 ], [ -94.94593887551261, 29.328848121791175 ], [ -94.945348875859167, 29.329109121987251 ], [ -94.945095875780396, 29.329246122547257 ], [ -94.944760875622805, 29.32942812223143 ], [ -94.945100875353916, 29.329968122721514 ], [ -94.945117875564222, 29.32999512204897 ], [ -94.945775876138498, 29.331760122641491 ], [ -94.946239875709239, 29.331781122732401 ], [ -94.946969875908209, 29.331836122624647 ], [ -94.948268876388269, 29.331921122402346 ], [ -94.949141876984569, 29.331964122327587 ], [ -94.950170877129864, 29.331991122513827 ], [ -94.950990876704964, 29.332000122294385 ], [ -94.951866877534201, 29.332004122518363 ], [ -94.952824877319685, 29.332026122794609 ], [ -94.958108879120047, 29.33210612260849 ], [ -94.960383879948338, 29.332169122213852 ], [ -94.961495879910387, 29.332194122275691 ], [ -94.962158880511282, 29.332244122385053 ], [ -94.962633879676218, 29.332331122278138 ], [ -94.963110880697698, 29.332393122358969 ], [ -94.963856880298678, 29.332562122196208 ], [ -94.964138880634394, 29.332649122803684 ], [ -94.964758880709851, 29.332839122547139 ], [ -94.964825880422239, 29.332861122797713 ], [ -94.965168880621349, 29.332969122841181 ], [ -94.966200880968898, 29.333296122643379 ], [ -94.969348882488248, 29.334243122135184 ], [ -94.970748882298309, 29.334669122605959 ], [ -94.971844882341529, 29.335003122367471 ], [ -94.972347882288588, 29.33515712303387 ], [ -94.977277884172679, 29.336656122437063 ], [ -94.986228886698569, 29.339343123293048 ], [ -94.987165886804007, 29.339634123287315 ], [ -94.989207887614938, 29.340250122867609 ], [ -94.991217887774184, 29.340848122986078 ], [ -94.992117887741543, 29.341130123604799 ], [ -94.992964887972448, 29.341381123425556 ], [ -94.994514888262756, 29.34183712293752 ], [ -94.995445888757828, 29.342126123555769 ], [ -94.996542889058162, 29.342459123749336 ], [ -94.997384889399484, 29.342719123087956 ], [ -94.998226890199163, 29.34296212370435 ], [ -94.998616889752029, 29.343092123826302 ], [ -94.99907989031145, 29.343222123278974 ], [ -95.00048088993708, 29.343640123625327 ], [ -95.002374891315739, 29.344205123945631 ], [ -95.003761891682572, 29.34464312340355 ], [ -95.004570891245734, 29.344885123507996 ], [ -95.004671891456098, 29.344915123747452 ], [ -95.006491892465377, 29.345447123821319 ], [ -95.00729889190589, 29.345702123836165 ], [ -95.007826892416276, 29.345854123551284 ], [ -95.009928893325153, 29.346489123644485 ], [ -95.010048893153524, 29.346528123979351 ], [ -95.011082893262596, 29.346842123652703 ], [ -95.011713893287805, 29.347037123703558 ], [ -95.011959893205926, 29.347102123388737 ], [ -95.012957894022691, 29.3474161237543 ], [ -95.013725894081318, 29.347655123793494 ], [ -95.013842893574122, 29.347689124075131 ], [ -95.014719894464392, 29.347944124296834 ], [ -95.015266893876685, 29.348112124170306 ], [ -95.016180894639376, 29.348384123830172 ], [ -95.017424895285899, 29.34875412415446 ], [ -95.01877889572674, 29.349162123963129 ], [ -95.019050895545519, 29.349243124056756 ], [ -95.020094895255355, 29.349560123984201 ], [ -95.020715895442407, 29.349748123727363 ], [ -95.021467895791673, 29.349981124350599 ], [ -95.022814895902016, 29.350380124096414 ], [ -95.024175897252562, 29.35078512465002 ], [ -95.024311896577473, 29.350830123802766 ], [ -95.024421896685837, 29.350856124519467 ], [ -95.030126898531819, 29.35257812476976 ], [ -95.030559898855358, 29.352709124152085 ], [ -95.030913898671699, 29.352818124010277 ], [ -95.031551898291028, 29.353014124465876 ], [ -95.032808898752606, 29.353395124374607 ], [ -95.033143898891083, 29.353492124376427 ], [ -95.035211900122633, 29.354129124566441 ], [ -95.036666900653032, 29.354624124444985 ], [ -95.037736900062583, 29.35500412434871 ], [ -95.038800901035515, 29.355382124479419 ], [ -95.039091900602202, 29.355481124554313 ], [ -95.039578900809047, 29.355649124631569 ], [ -95.04034190162983, 29.355910124474725 ], [ -95.041106901380061, 29.35616512476377 ], [ -95.044298902240598, 29.357268124775544 ], [ -95.04471890281873, 29.357414124601583 ], [ -95.046540903180642, 29.358037124682507 ], [ -95.046831903345733, 29.358139124664117 ], [ -95.04791690272144, 29.358513125389422 ], [ -95.048096903739562, 29.358577125213472 ], [ -95.049270903944006, 29.358978124701888 ], [ -95.049752903330599, 29.359142125002641 ], [ -95.05086390381463, 29.359515125572266 ], [ -95.051798904736387, 29.359840124884119 ], [ -95.053103904371781, 29.36029012549276 ], [ -95.053170904746409, 29.360080125561414 ], [ -95.05335090503803, 29.359750125327398 ], [ -95.053398904543485, 29.359675125225866 ], [ -95.053436904229102, 29.359615125043071 ], [ -95.05530690526507, 29.358978124936918 ], [ -95.05555390569539, 29.358865124475169 ], [ -95.056415905529164, 29.357624124512149 ], [ -95.056798904935704, 29.357073124261113 ], [ -95.057182905987119, 29.356522124592242 ], [ -95.057399905294503, 29.356210124149651 ], [ -95.057841905392081, 29.355577123661167 ], [ -95.058629906124807, 29.354446123722294 ], [ -95.058669905792044, 29.354390123852628 ], [ -95.060911906467169, 29.354417123358218 ], [ -95.06090190577558, 29.351805123109152 ], [ -95.060900906302919, 29.351462123390757 ], [ -95.060900906508735, 29.350742122968427 ], [ -95.060900906387147, 29.350188122946726 ], [ -95.060900906124118, 29.349949122786047 ], [ -95.060900905940983, 29.347676122321598 ], [ -95.060900906241429, 29.343651121390707 ], [ -95.060923906280877, 29.34354912118085 ], [ -95.060960906037636, 29.343446121335692 ], [ -95.061176906291351, 29.343408121202437 ], [ -95.063835906135452, 29.3434201215325 ], [ -95.065526907514297, 29.34342712157148 ], [ -95.065987907576613, 29.343427121386011 ], [ -95.068109907303167, 29.343425121287328 ], [ -95.070247908224971, 29.343423120850169 ], [ -95.072399908958658, 29.343422121210029 ], [ -95.07434690907688, 29.343420121465019 ], [ -95.07453490932221, 29.343416121379331 ], [ -95.074843909941578, 29.343410120997287 ], [ -95.07557890958887, 29.343410120714083 ], [ -95.077757909884369, 29.343410121313667 ], [ -95.078790910253531, 29.343410120821801 ], [ -95.079045910837152, 29.34341012101406 ], [ -95.080988911534178, 29.343411120910723 ], [ -95.080962911132218, 29.340608119894405 ], [ -95.08095491059332, 29.339788120345556 ], [ -95.080954910715377, 29.339711119692812 ], [ -95.080954910354251, 29.338989119651522 ], [ -95.08095491112249, 29.336031119441756 ], [ -95.080954910606991, 29.335577119624755 ], [ -95.08095491019526, 29.334802119016267 ], [ -95.080954910467753, 29.333358118720287 ], [ -95.080954910079214, 29.332369118470215 ], [ -95.080954910834436, 29.332287118827537 ], [ -95.080939910411118, 29.329940118307828 ], [ -95.080926909926845, 29.328023117642008 ], [ -95.080858910140549, 29.324126116915707 ], [ -95.080849910166705, 29.322072116741161 ], [ -95.080849909586632, 29.321387116075826 ], [ -95.080849910465929, 29.320691116291567 ], [ -95.080849910068096, 29.320603116309183 ], [ -95.080847909864943, 29.320403115635042 ], [ -95.08084990968014, 29.319030115729809 ], [ -95.080849909822518, 29.316430115090323 ], [ -95.080845910210897, 29.315381115069517 ], [ -95.08111091022441, 29.314619115145781 ], [ -95.081338910332093, 29.314532114602486 ], [ -95.081571909493107, 29.314475115101754 ], [ -95.083137910697829, 29.314091114300357 ], [ -95.084819910782713, 29.313785114881419 ], [ -95.085379911349222, 29.313683114350905 ], [ -95.086227911029198, 29.313528114827911 ], [ -95.090767912351041, 29.312652114481157 ], [ -95.091975913028506, 29.312418114123471 ], [ -95.092775912259299, 29.312267113967771 ], [ -95.097841913925507, 29.311315114028321 ], [ -95.100797915049071, 29.31076011382487 ], [ -95.104702915857231, 29.309965112756171 ], [ -95.104813915272331, 29.309942112898128 ], [ -95.104925915984865, 29.309920112717851 ], [ -95.104985916100532, 29.309909113377046 ], [ -95.105112915631366, 29.309855112759983 ], [ -95.105554915437565, 29.309701113467902 ], [ -95.106592916293778, 29.3088541130283 ], [ -95.108670916348288, 29.306749112590857 ], [ -95.108790916904027, 29.306635112621887 ], [ -95.109626917102119, 29.305847111986878 ], [ -95.109739917125239, 29.30573111222451 ], [ -95.111234917278679, 29.304241111673388 ], [ -95.112100917066726, 29.303387111110304 ], [ -95.114559918255097, 29.300900110692265 ], [ -95.115306918149855, 29.300164110462347 ], [ -95.118413918840801, 29.29710110980502 ], [ -95.118708918526778, 29.296795109612635 ], [ -95.119113918979721, 29.296396110133291 ], [ -95.119508919102358, 29.296033109935234 ], [ -95.119703919069181, 29.295871109738691 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1611, "Tract": "48167722900", "Area_SqMi": 0.80851660793775704, "total_2009": 797, "total_2010": 764, "total_2011": 54, "total_2012": 60, "total_2013": 37, "total_2014": 73, "total_2015": 161, "total_2016": 165, "total_2017": 101, "total_2018": 145, "total_2019": 145, "total_2020": 93, "age1": 19, "age2": 61, "age3": 27, "earn1": 31, "earn2": 33, "earn3": 43, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 19, "naics_s05": 0, "naics_s06": 0, "naics_s07": 12, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 10, "naics_s15": 2, "naics_s16": 8, "naics_s17": 0, "naics_s18": 54, "naics_s19": 0, "naics_s20": 0, "race1": 78, "race2": 22, "race3": 3, "race4": 2, "race5": 0, "race6": 2, "ethnicity1": 79, "ethnicity2": 28, "edu1": 20, "edu2": 31, "edu3": 29, "edu4": 8, "Shape_Length": 21974.134128812282, "Shape_Area": 22540059.239300378, "total_2021": 114, "total_2022": 107 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.994997890453291, 29.368261128478601 ], [ -94.995346889915297, 29.368260128648075 ], [ -94.994535889711486, 29.367600128433388 ], [ -94.992548889438311, 29.366021128837694 ], [ -94.992182888834165, 29.365730128665444 ], [ -94.991774889480581, 29.365405128155302 ], [ -94.990525888879688, 29.364397127880821 ], [ -94.98910988785677, 29.363240128088243 ], [ -94.987804887403129, 29.36215712738143 ], [ -94.987367888066032, 29.361810127542888 ], [ -94.987341887470009, 29.36179012786701 ], [ -94.986842887272005, 29.361395127605036 ], [ -94.98673888807123, 29.361307127538414 ], [ -94.98630788736638, 29.360943127786168 ], [ -94.985735887546099, 29.360550127548318 ], [ -94.985180887609189, 29.360219127855256 ], [ -94.979848885378914, 29.357793126801834 ], [ -94.979640886086372, 29.357698127217201 ], [ -94.979418885474672, 29.357603127083763 ], [ -94.977074884674508, 29.356596126846206 ], [ -94.97488488403333, 29.355637127145503 ], [ -94.973102884189331, 29.354840126539127 ], [ -94.972119883504178, 29.354414126383556 ], [ -94.971546883575698, 29.354166126790481 ], [ -94.971537883517911, 29.35452512687062 ], [ -94.97159988321674, 29.358093127244651 ], [ -94.971599883166476, 29.35896212789493 ], [ -94.971614883871553, 29.359693127948951 ], [ -94.971632883229731, 29.360452128115774 ], [ -94.971633883869174, 29.361371128467386 ], [ -94.971626883427405, 29.36148112848419 ], [ -94.97163988332224, 29.361953127974335 ], [ -94.971651883517197, 29.362834128001204 ], [ -94.971669884263392, 29.36378212864177 ], [ -94.971689884147139, 29.364686128796304 ], [ -94.971706884281204, 29.365661129221653 ], [ -94.971712883642255, 29.366175128696202 ], [ -94.971718884464082, 29.366958129135543 ], [ -94.971743883664558, 29.368524129278505 ], [ -94.973242883995667, 29.36850612983649 ], [ -94.974245884349671, 29.368500129154313 ], [ -94.97506588529464, 29.368476129370414 ], [ -94.975176884459017, 29.368476129095409 ], [ -94.976191885632886, 29.368468129225814 ], [ -94.977189885170816, 29.368457129068943 ], [ -94.978341885336945, 29.36845612952683 ], [ -94.979661885697126, 29.368429129440027 ], [ -94.981657886247334, 29.368416129008331 ], [ -94.981995886376538, 29.368409129626379 ], [ -94.982981886813462, 29.368395129293436 ], [ -94.985142887283956, 29.368371129489077 ], [ -94.986100887874471, 29.368359129456035 ], [ -94.986956888161231, 29.368359129391106 ], [ -94.98758088805107, 29.368357129196571 ], [ -94.992369889814924, 29.368289128814343 ], [ -94.992775889350852, 29.368282128930659 ], [ -94.994733889778161, 29.368262128673191 ], [ -94.994997890453291, 29.368261128478601 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1612, "Tract": "48167723100", "Area_SqMi": 1.7088355778525763, "total_2009": 1380, "total_2010": 1359, "total_2011": 1407, "total_2012": 1257, "total_2013": 1335, "total_2014": 1325, "total_2015": 1510, "total_2016": 1564, "total_2017": 1545, "total_2018": 1584, "total_2019": 1413, "total_2020": 1516, "age1": 502, "age2": 706, "age3": 321, "earn1": 426, "earn2": 521, "earn3": 582, "naics_s01": 0, "naics_s02": 0, "naics_s03": 22, "naics_s04": 54, "naics_s05": 8, "naics_s06": 210, "naics_s07": 88, "naics_s08": 4, "naics_s09": 57, "naics_s10": 7, "naics_s11": 16, "naics_s12": 60, "naics_s13": 0, "naics_s14": 120, "naics_s15": 0, "naics_s16": 282, "naics_s17": 105, "naics_s18": 370, "naics_s19": 45, "naics_s20": 81, "race1": 1116, "race2": 345, "race3": 14, "race4": 27, "race5": 1, "race6": 26, "ethnicity1": 1098, "ethnicity2": 431, "edu1": 192, "edu2": 275, "edu3": 362, "edu4": 198, "Shape_Length": 32269.375056041379, "Shape_Area": 47639411.209208436, "total_2021": 1363, "total_2022": 1529 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.032949901534934, 29.402690134322917 ], [ -95.032830901433613, 29.402569134607475 ], [ -95.030110900890946, 29.399799133934351 ], [ -95.029672900039472, 29.399353133717785 ], [ -95.02886789980127, 29.398533133686371 ], [ -95.027475899629437, 29.39711613401699 ], [ -95.027276899412954, 29.396913133471319 ], [ -95.026792899006779, 29.396419133832495 ], [ -95.026429898944173, 29.396050133338974 ], [ -95.025907899133912, 29.395519133428252 ], [ -95.024958898646673, 29.394552133362083 ], [ -95.02298989873367, 29.392547132572737 ], [ -95.02133689794104, 29.390863132401485 ], [ -95.021237897930334, 29.390775132550541 ], [ -95.020568897950326, 29.390091132501045 ], [ -95.020175897564869, 29.38968913240257 ], [ -95.018315896749641, 29.387823132312057 ], [ -95.016950896486463, 29.38645413170677 ], [ -95.014813895397424, 29.384310131430986 ], [ -95.014427895880814, 29.383923131757225 ], [ -95.013921895749732, 29.383415131450057 ], [ -95.013251895712614, 29.382864131369011 ], [ -95.012279895109174, 29.382065131460973 ], [ -95.011471894868279, 29.38140113087448 ], [ -95.010866894564941, 29.380904131012052 ], [ -95.008895893681355, 29.379279130915471 ], [ -95.007720893666757, 29.378311130447713 ], [ -95.005991893109908, 29.376896130303269 ], [ -95.005828893142407, 29.376763130454556 ], [ -95.005741892795641, 29.376845129800316 ], [ -95.005559892781449, 29.377016130575701 ], [ -95.00526789333945, 29.377290130651335 ], [ -95.005221892522059, 29.37734413017122 ], [ -95.004596893265415, 29.377890130912007 ], [ -95.004301892907904, 29.37814813030262 ], [ -95.004083893298173, 29.378210130189505 ], [ -95.003983892324939, 29.378238130697564 ], [ -95.003762892814308, 29.378301130883951 ], [ -95.003011893011646, 29.378390130508773 ], [ -95.002502892396237, 29.378450130451991 ], [ -95.001913891783076, 29.378495130417583 ], [ -95.001820891770777, 29.378495130837774 ], [ -95.001030892399612, 29.378506130697776 ], [ -95.001059892246786, 29.379955130942182 ], [ -95.001109892565594, 29.38251213174912 ], [ -95.001121892605127, 29.383134132116155 ], [ -95.001134891923869, 29.383740131610992 ], [ -95.001143892790893, 29.384427131879693 ], [ -95.001147891867575, 29.384634131797156 ], [ -95.001147892376622, 29.385268132262546 ], [ -95.001183891891131, 29.38561713254856 ], [ -95.001211892474743, 29.38589013179962 ], [ -95.00127689248302, 29.386330132556438 ], [ -95.00130289269633, 29.386473132251556 ], [ -95.001354892671088, 29.387198132176913 ], [ -95.001355892457028, 29.387275132377329 ], [ -95.00136789293623, 29.38801413229675 ], [ -95.001371892838378, 29.388519132419322 ], [ -95.001383892944006, 29.389853133263959 ], [ -95.001393892558724, 29.39090213317828 ], [ -95.001439892646616, 29.392773133541532 ], [ -95.00132689235592, 29.392936133809659 ], [ -95.00132589282812, 29.393115133971971 ], [ -95.001439892222464, 29.39326313382314 ], [ -95.001652892592816, 29.393363133853981 ], [ -95.001929892404405, 29.393501133818727 ], [ -95.002104893369619, 29.393614133411095 ], [ -95.002467892886855, 29.393834133535599 ], [ -95.002551892545526, 29.393885133730947 ], [ -95.002708892921433, 29.39402713416662 ], [ -95.002951893435991, 29.39424713386056 ], [ -95.003227893510626, 29.394773134115699 ], [ -95.00336689325465, 29.394996134109263 ], [ -95.003339893442245, 29.395035134394007 ], [ -95.003349893538143, 29.395190134173546 ], [ -95.003363893089272, 29.395422134403578 ], [ -95.003369893744051, 29.395694134405343 ], [ -95.003390893793821, 29.396725134339324 ], [ -95.003402893646296, 29.39728613448926 ], [ -95.003396893674221, 29.397468134712767 ], [ -95.003384893623846, 29.397869135016105 ], [ -95.003789893647706, 29.397875134955289 ], [ -95.004816893742074, 29.397833134665596 ], [ -95.006575894274093, 29.398000134899252 ], [ -95.008535894508881, 29.398461134473049 ], [ -95.008846894470821, 29.398534134373087 ], [ -95.009369895192322, 29.398662134276019 ], [ -95.010940895784159, 29.39904713454677 ], [ -95.011104894960795, 29.399091134501436 ], [ -95.011370895754936, 29.399163135081334 ], [ -95.012771896423573, 29.399541134649994 ], [ -95.014207896512943, 29.399928134284583 ], [ -95.014559896061826, 29.400024134432584 ], [ -95.015243896378834, 29.400208134484199 ], [ -95.019727898245364, 29.401407134583415 ], [ -95.01983589816308, 29.401434134858729 ], [ -95.02018089829555, 29.401522135133121 ], [ -95.020399897809341, 29.40157913497713 ], [ -95.023980898744355, 29.402495134719324 ], [ -95.026188899078264, 29.403133134706241 ], [ -95.027194899805423, 29.403481134782723 ], [ -95.028760900668217, 29.404104135030661 ], [ -95.030198900802702, 29.404699135457751 ], [ -95.031001901068009, 29.405024135501179 ], [ -95.031107901339837, 29.405067135458488 ], [ -95.031237900662518, 29.405120135173725 ], [ -95.031300900720694, 29.404701134861604 ], [ -95.031592900985231, 29.404072134558628 ], [ -95.031646901016586, 29.403957135396908 ], [ -95.032307901207787, 29.403186134667834 ], [ -95.032667901356049, 29.40290813508139 ], [ -95.032949901534934, 29.402690134322917 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1613, "Tract": "48167723200", "Area_SqMi": 8.0220240654449473, "total_2009": 874, "total_2010": 843, "total_2011": 863, "total_2012": 1042, "total_2013": 1057, "total_2014": 1098, "total_2015": 892, "total_2016": 874, "total_2017": 861, "total_2018": 849, "total_2019": 875, "total_2020": 810, "age1": 122, "age2": 389, "age3": 151, "earn1": 149, "earn2": 227, "earn3": 286, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 22, "naics_s05": 83, "naics_s06": 48, "naics_s07": 62, "naics_s08": 6, "naics_s09": 0, "naics_s10": 20, "naics_s11": 29, "naics_s12": 66, "naics_s13": 1, "naics_s14": 27, "naics_s15": 0, "naics_s16": 156, "naics_s17": 15, "naics_s18": 88, "naics_s19": 17, "naics_s20": 22, "race1": 487, "race2": 126, "race3": 12, "race4": 21, "race5": 3, "race6": 13, "ethnicity1": 517, "ethnicity2": 145, "edu1": 117, "edu2": 172, "edu3": 172, "edu4": 79, "Shape_Length": 68319.756254464359, "Shape_Area": 223640301.11319914, "total_2021": 616, "total_2022": 662 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.0505489051654, 29.392373131654967 ], [ -95.050534904952286, 29.392147132326279 ], [ -95.050504905704472, 29.391650132071536 ], [ -95.050492905328497, 29.39146313144256 ], [ -95.05046190521054, 29.390957131970694 ], [ -95.049616904775064, 29.377250128980602 ], [ -95.049555904809196, 29.376258128553665 ], [ -95.049553903953424, 29.376221128505986 ], [ -95.049501904164899, 29.375377128680771 ], [ -95.049313904231497, 29.372331127775336 ], [ -95.049020904296668, 29.372337128210358 ], [ -95.048856904084786, 29.372200127837104 ], [ -95.048829903667993, 29.372036127690883 ], [ -95.048170904169126, 29.372071127857694 ], [ -95.048112904199698, 29.37206912795131 ], [ -95.047218904065048, 29.372031127924487 ], [ -95.046888903188872, 29.371981127963835 ], [ -95.047298903757664, 29.371462127392846 ], [ -95.048438903839653, 29.370486127340833 ], [ -95.04860290373108, 29.37027612773252 ], [ -95.048786903544524, 29.370039127002819 ], [ -95.049146903787062, 29.369127127351362 ], [ -95.049165903956023, 29.366760126610821 ], [ -95.049166903838099, 29.366570126903234 ], [ -95.049168903618892, 29.36638212675415 ], [ -95.049184903498244, 29.364110126262229 ], [ -95.049196903421546, 29.361994125871814 ], [ -95.049202903272061, 29.360937125292093 ], [ -95.049208903737821, 29.359869125429221 ], [ -95.049212903776947, 29.359660124984583 ], [ -95.049224903252949, 29.359180125338256 ], [ -95.049270903944006, 29.358978124701888 ], [ -95.048096903739562, 29.358577125213472 ], [ -95.04791690272144, 29.358513125389422 ], [ -95.046831903345733, 29.358139124664117 ], [ -95.046540903180642, 29.358037124682507 ], [ -95.04471890281873, 29.357414124601583 ], [ -95.044298902240598, 29.357268124775544 ], [ -95.041106901380061, 29.35616512476377 ], [ -95.04034190162983, 29.355910124474725 ], [ -95.039578900809047, 29.355649124631569 ], [ -95.039091900602202, 29.355481124554313 ], [ -95.038800901035515, 29.355382124479419 ], [ -95.037736900062583, 29.35500412434871 ], [ -95.036666900653032, 29.354624124444985 ], [ -95.035211900122633, 29.354129124566441 ], [ -95.033143898891083, 29.353492124376427 ], [ -95.032808898752606, 29.353395124374607 ], [ -95.031551898291028, 29.353014124465876 ], [ -95.030913898671699, 29.352818124010277 ], [ -95.030559898855358, 29.352709124152085 ], [ -95.030126898531819, 29.35257812476976 ], [ -95.024421896685837, 29.350856124519467 ], [ -95.024311896577473, 29.350830123802766 ], [ -95.024175897252562, 29.35078512465002 ], [ -95.022814895902016, 29.350380124096414 ], [ -95.021467895791673, 29.349981124350599 ], [ -95.020715895442407, 29.349748123727363 ], [ -95.020094895255355, 29.349560123984201 ], [ -95.019050895545519, 29.349243124056756 ], [ -95.01877889572674, 29.349162123963129 ], [ -95.017424895285899, 29.34875412415446 ], [ -95.016180894639376, 29.348384123830172 ], [ -95.015840894453106, 29.349317123927079 ], [ -95.015476894546978, 29.350254124790627 ], [ -95.015369894829291, 29.35055512407412 ], [ -95.015315894273542, 29.350699124565111 ], [ -95.015084894761387, 29.35130512480082 ], [ -95.015018894085799, 29.351478124339138 ], [ -95.014706894154912, 29.352299125062668 ], [ -95.014500894389499, 29.352537124754718 ], [ -95.013817894428286, 29.353318125441504 ], [ -95.013311894219825, 29.35389912494097 ], [ -95.012652893888543, 29.354652125040388 ], [ -95.012606893566215, 29.354705125648692 ], [ -95.012550894142663, 29.354769125552085 ], [ -95.011789893969507, 29.355698126055909 ], [ -95.011453893926927, 29.356086125387471 ], [ -95.010808894008065, 29.356576125653167 ], [ -95.010369893208022, 29.356796125775755 ], [ -95.009762892896035, 29.357067125838739 ], [ -95.009285893274296, 29.35715712620804 ], [ -95.008872892775486, 29.357234125929811 ], [ -95.007955892583865, 29.357262126031948 ], [ -95.007568892773563, 29.357273125721562 ], [ -95.005844892000766, 29.357301126186897 ], [ -95.005193892049661, 29.357312125928711 ], [ -95.004396892239143, 29.357370126234052 ], [ -95.004149891570009, 29.357388126392763 ], [ -95.003766891452983, 29.357459126428207 ], [ -95.003765891432096, 29.357384126603186 ], [ -95.003780891670075, 29.356637125943582 ], [ -95.003826891272126, 29.356439126055868 ], [ -95.003851891550354, 29.356327126455213 ], [ -95.003953891803562, 29.356139125861635 ], [ -95.00404489174683, 29.355890125964564 ], [ -95.004049891456745, 29.355793125757902 ], [ -95.004044891939117, 29.355692126296422 ], [ -95.003945891823932, 29.355518126233466 ], [ -95.003825891570031, 29.3553761257904 ], [ -95.003525891512581, 29.355196125888458 ], [ -95.003394891682674, 29.355082125772853 ], [ -95.003394891505309, 29.354902125925157 ], [ -95.003296891914346, 29.354646126052504 ], [ -95.003160891460141, 29.354477125733752 ], [ -95.003107891988307, 29.354159125807431 ], [ -95.002701891787183, 29.353807125242728 ], [ -95.002016891057792, 29.353807125703792 ], [ -95.001548891082194, 29.353672125701337 ], [ -95.001268891314638, 29.35340312552308 ], [ -95.000987891025204, 29.352701125364582 ], [ -95.000722890846063, 29.352433125025239 ], [ -95.000614890336465, 29.352323125555962 ], [ -95.000008891054279, 29.351971124812255 ], [ -94.99971089072146, 29.35191812492813 ], [ -94.999367890424807, 29.351648125552654 ], [ -94.999149889959185, 29.351621124863382 ], [ -94.999087889969758, 29.351567125106641 ], [ -94.998962890151944, 29.351541124881546 ], [ -94.99833989033398, 29.351541125045745 ], [ -94.998246889787623, 29.351621125630253 ], [ -94.998246890271446, 29.35183712570991 ], [ -94.997996890213585, 29.351891125163359 ], [ -94.997654889857301, 29.352134125398784 ], [ -94.997342889412124, 29.352188125690265 ], [ -94.996439889824998, 29.352215125594288 ], [ -94.996127889973351, 29.352323125617627 ], [ -94.995878889857451, 29.352404125352997 ], [ -94.995691889141156, 29.352458125821897 ], [ -94.995442889780861, 29.352512125322502 ], [ -94.995384889734197, 29.352528125556514 ], [ -94.995255889666936, 29.352566125210615 ], [ -94.995161889224462, 29.352647125672526 ], [ -94.994600888810197, 29.352647125702635 ], [ -94.994195889199062, 29.352566125949927 ], [ -94.993946889229434, 29.352431125447811 ], [ -94.993884888958732, 29.352323125156644 ], [ -94.99363488942825, 29.35221512510671 ], [ -94.993416888406756, 29.352026125371534 ], [ -94.993321889199962, 29.351999125550243 ], [ -94.992941888903019, 29.352689125650894 ], [ -94.99274488829144, 29.353152125973459 ], [ -94.992687888661948, 29.353428125661228 ], [ -94.992657889233641, 29.353795125521778 ], [ -94.99265888856803, 29.354247126169358 ], [ -94.992677888824375, 29.355065125852128 ], [ -94.992683888874836, 29.355342126247205 ], [ -94.992723889363674, 29.357930126464854 ], [ -94.992603888574052, 29.357930127076028 ], [ -94.990672888647879, 29.357937126766561 ], [ -94.989279887968479, 29.357924126399134 ], [ -94.98742588739843, 29.357924126516163 ], [ -94.987442888026436, 29.359177127422658 ], [ -94.98745188779283, 29.359568127381362 ], [ -94.987463888100862, 29.360660127258797 ], [ -94.987472887631995, 29.361438127610086 ], [ -94.987415887740283, 29.36159112747951 ], [ -94.987341887470009, 29.36179012786701 ], [ -94.987367888066032, 29.361810127542888 ], [ -94.987804887403129, 29.36215712738143 ], [ -94.98910988785677, 29.363240128088243 ], [ -94.990525888879688, 29.364397127880821 ], [ -94.991774889480581, 29.365405128155302 ], [ -94.992182888834165, 29.365730128665444 ], [ -94.992548889438311, 29.366021128837694 ], [ -94.994535889711486, 29.367600128433388 ], [ -94.995346889915297, 29.368260128648075 ], [ -94.996655890174139, 29.369324128969531 ], [ -94.998942891030396, 29.371144129201795 ], [ -95.000423891078682, 29.372356129818137 ], [ -95.005693893345665, 29.376653130214656 ], [ -95.005828893142407, 29.376763130454556 ], [ -95.005991893109908, 29.376896130303269 ], [ -95.007720893666757, 29.378311130447713 ], [ -95.008895893681355, 29.379279130915471 ], [ -95.010866894564941, 29.380904131012052 ], [ -95.011471894868279, 29.38140113087448 ], [ -95.012279895109174, 29.382065131460973 ], [ -95.013251895712614, 29.382864131369011 ], [ -95.013921895749732, 29.383415131450057 ], [ -95.014427895880814, 29.383923131757225 ], [ -95.014813895397424, 29.384310131430986 ], [ -95.016950896486463, 29.38645413170677 ], [ -95.018315896749641, 29.387823132312057 ], [ -95.020175897564869, 29.38968913240257 ], [ -95.020568897950326, 29.390091132501045 ], [ -95.021237897930334, 29.390775132550541 ], [ -95.02133689794104, 29.390863132401485 ], [ -95.02298989873367, 29.392547132572737 ], [ -95.024958898646673, 29.394552133362083 ], [ -95.025907899133912, 29.395519133428252 ], [ -95.026429898944173, 29.396050133338974 ], [ -95.026792899006779, 29.396419133832495 ], [ -95.027276899412954, 29.396913133471319 ], [ -95.027475899629437, 29.39711613401699 ], [ -95.02886789980127, 29.398533133686371 ], [ -95.029672900039472, 29.399353133717785 ], [ -95.030110900890946, 29.399799133934351 ], [ -95.032830901433613, 29.402569134607475 ], [ -95.032949901534934, 29.402690134322917 ], [ -95.033285900936406, 29.402429134296415 ], [ -95.033497900851984, 29.402264134789032 ], [ -95.033555901694029, 29.402219134139518 ], [ -95.033626901474548, 29.402164134470365 ], [ -95.033821901174534, 29.402012134752781 ], [ -95.034250902013554, 29.401681134858165 ], [ -95.035276901515999, 29.400883134435567 ], [ -95.036975902590754, 29.399565133655063 ], [ -95.03754490193802, 29.399123133327475 ], [ -95.038738902575162, 29.398184133479603 ], [ -95.040328902806138, 29.396933133477951 ], [ -95.041497902988638, 29.396014132618532 ], [ -95.041920903235606, 29.395681132880334 ], [ -95.042589903626151, 29.395155132408203 ], [ -95.044112903359235, 29.393957132133792 ], [ -95.045525903609885, 29.393129132265337 ], [ -95.0467539041788, 29.392692131892129 ], [ -95.047419904479767, 29.392536132059142 ], [ -95.048572905097316, 29.392386132482052 ], [ -95.050177905514943, 29.392375132257712 ], [ -95.050440905237167, 29.392373131515139 ], [ -95.0505489051654, 29.392373131654967 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1614, "Tract": "48167723300", "Area_SqMi": 13.119813295604233, "total_2009": 566, "total_2010": 472, "total_2011": 495, "total_2012": 1157, "total_2013": 1325, "total_2014": 1442, "total_2015": 1638, "total_2016": 1760, "total_2017": 1831, "total_2018": 1867, "total_2019": 1940, "total_2020": 2153, "age1": 1081, "age2": 1002, "age3": 438, "earn1": 812, "earn2": 1076, "earn3": 633, "naics_s01": 0, "naics_s02": 52, "naics_s03": 23, "naics_s04": 59, "naics_s05": 48, "naics_s06": 33, "naics_s07": 1436, "naics_s08": 280, "naics_s09": 2, "naics_s10": 32, "naics_s11": 24, "naics_s12": 52, "naics_s13": 2, "naics_s14": 16, "naics_s15": 2, "naics_s16": 136, "naics_s17": 0, "naics_s18": 265, "naics_s19": 59, "naics_s20": 0, "race1": 1835, "race2": 492, "race3": 23, "race4": 119, "race5": 2, "race6": 50, "ethnicity1": 1687, "ethnicity2": 834, "edu1": 312, "edu2": 440, "edu3": 421, "edu4": 267, "Shape_Length": 86385.531304248536, "Shape_Area": 365757939.89657414, "total_2021": 1806, "total_2022": 2521 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.092183918050281, 29.436578139819812 ], [ -95.092176918037197, 29.436349139423154 ], [ -95.092171918190019, 29.435635139456767 ], [ -95.092144917420654, 29.431666138757528 ], [ -95.092147917379037, 29.429800137880417 ], [ -95.092148917425362, 29.429382138107847 ], [ -95.092149917293526, 29.428853138510028 ], [ -95.092148917451453, 29.428640137711049 ], [ -95.092148917831253, 29.42729813786065 ], [ -95.09215791723399, 29.427041138016669 ], [ -95.092149917584933, 29.425523137508968 ], [ -95.092149917061789, 29.42538713716425 ], [ -95.092146917649231, 29.422792136619083 ], [ -95.092145917409695, 29.422556136611444 ], [ -95.092144917179368, 29.422046136966152 ], [ -95.09214491768455, 29.421403136365367 ], [ -95.09214491668962, 29.419957136044623 ], [ -95.092144917235856, 29.419194136060486 ], [ -95.092144916592019, 29.418046136122065 ], [ -95.092144917429977, 29.416842135828333 ], [ -95.09214491742992, 29.416451135853368 ], [ -95.092145917409567, 29.415992135046917 ], [ -95.092144917331552, 29.415204135426073 ], [ -95.092144916494163, 29.414180135175084 ], [ -95.092144916460541, 29.413516135289282 ], [ -95.092144916422342, 29.412735135167758 ], [ -95.092142917165205, 29.411716134415755 ], [ -95.092138916504851, 29.408863133739644 ], [ -95.09213791655759, 29.407957133479876 ], [ -95.092136916661588, 29.406971133477185 ], [ -95.092138916335728, 29.406758133879954 ], [ -95.092128916127834, 29.398061132176359 ], [ -95.092127916052476, 29.395721131253641 ], [ -95.092137915625145, 29.392765131059821 ], [ -95.092137916338331, 29.391052130193177 ], [ -95.092128916166587, 29.390480130528399 ], [ -95.092132915608858, 29.389518129811545 ], [ -95.092138915953001, 29.388160129914642 ], [ -95.092138916120291, 29.384382128876357 ], [ -95.092138915965947, 29.384073129085664 ], [ -95.092027915427281, 29.383567129076702 ], [ -95.091817915124551, 29.383123128992846 ], [ -95.091768915988439, 29.382987128510013 ], [ -95.091509915818818, 29.382678128766219 ], [ -95.09106491550358, 29.382271128167176 ], [ -95.090509915301354, 29.381851128619743 ], [ -95.090141914773795, 29.3815241282412 ], [ -95.089880914472289, 29.381164127950441 ], [ -95.089703915346746, 29.380792128459646 ], [ -95.089632915273654, 29.380643128424005 ], [ -95.089545914857183, 29.380184128527194 ], [ -95.089508914516401, 29.379489128365464 ], [ -95.089508914867949, 29.378906128069307 ], [ -95.089508915062979, 29.377392127227367 ], [ -95.089496914675806, 29.37652312780213 ], [ -95.089514915019549, 29.375145127186926 ], [ -95.089515914444263, 29.374575127372331 ], [ -95.08951191494566, 29.374222126630158 ], [ -95.089509914325333, 29.373724126683875 ], [ -95.089495915009678, 29.372791126389597 ], [ -95.086407913534487, 29.371739126747812 ], [ -95.085805912998453, 29.371534126712735 ], [ -95.085524913860354, 29.37143812660111 ], [ -95.08377091265865, 29.370833126244381 ], [ -95.083137913111997, 29.370615126386561 ], [ -95.081729912632952, 29.370131125956487 ], [ -95.079648912156969, 29.369418126669871 ], [ -95.077576911189638, 29.368707126221526 ], [ -95.075373910664496, 29.367939125993569 ], [ -95.073299910321083, 29.367229126076612 ], [ -95.072603910322229, 29.366989126294222 ], [ -95.072455909696004, 29.366938125945246 ], [ -95.072409909480342, 29.366922125802507 ], [ -95.072332910316987, 29.366895126178964 ], [ -95.071882910120237, 29.366742125910601 ], [ -95.068138908465713, 29.365460125548736 ], [ -95.064574907456119, 29.364239125849306 ], [ -95.064280907910984, 29.364143125222459 ], [ -95.060966907105481, 29.362995125973619 ], [ -95.058855905799703, 29.362271125667949 ], [ -95.05815590638602, 29.362029125533244 ], [ -95.05594190525666, 29.36126512535678 ], [ -95.053643904228323, 29.360478125578336 ], [ -95.053103904371781, 29.36029012549276 ], [ -95.051798904736387, 29.359840124884119 ], [ -95.05086390381463, 29.359515125572266 ], [ -95.049752903330599, 29.359142125002641 ], [ -95.049270903944006, 29.358978124701888 ], [ -95.049224903252949, 29.359180125338256 ], [ -95.049212903776947, 29.359660124984583 ], [ -95.049208903737821, 29.359869125429221 ], [ -95.049202903272061, 29.360937125292093 ], [ -95.049196903421546, 29.361994125871814 ], [ -95.049184903498244, 29.364110126262229 ], [ -95.049168903618892, 29.36638212675415 ], [ -95.049166903838099, 29.366570126903234 ], [ -95.049165903956023, 29.366760126610821 ], [ -95.049146903787062, 29.369127127351362 ], [ -95.048786903544524, 29.370039127002819 ], [ -95.04860290373108, 29.37027612773252 ], [ -95.048438903839653, 29.370486127340833 ], [ -95.047298903757664, 29.371462127392846 ], [ -95.046888903188872, 29.371981127963835 ], [ -95.047218904065048, 29.372031127924487 ], [ -95.048112904199698, 29.37206912795131 ], [ -95.048170904169126, 29.372071127857694 ], [ -95.048829903667993, 29.372036127690883 ], [ -95.048856904084786, 29.372200127837104 ], [ -95.049020904296668, 29.372337128210358 ], [ -95.049313904231497, 29.372331127775336 ], [ -95.049501904164899, 29.375377128680771 ], [ -95.049553903953424, 29.376221128505986 ], [ -95.049555904809196, 29.376258128553665 ], [ -95.049616904775064, 29.377250128980602 ], [ -95.05046190521054, 29.390957131970694 ], [ -95.050492905328497, 29.39146313144256 ], [ -95.050504905704472, 29.391650132071536 ], [ -95.050534904952286, 29.392147132326279 ], [ -95.0505489051654, 29.392373131654967 ], [ -95.050440905237167, 29.392373131515139 ], [ -95.050177905514943, 29.392375132257712 ], [ -95.048572905097316, 29.392386132482052 ], [ -95.047419904479767, 29.392536132059142 ], [ -95.0467539041788, 29.392692131892129 ], [ -95.045525903609885, 29.393129132265337 ], [ -95.044112903359235, 29.393957132133792 ], [ -95.042589903626151, 29.395155132408203 ], [ -95.041920903235606, 29.395681132880334 ], [ -95.041497902988638, 29.396014132618532 ], [ -95.040328902806138, 29.396933133477951 ], [ -95.038738902575162, 29.398184133479603 ], [ -95.03754490193802, 29.399123133327475 ], [ -95.036975902590754, 29.399565133655063 ], [ -95.035276901515999, 29.400883134435567 ], [ -95.034250902013554, 29.401681134858165 ], [ -95.033821901174534, 29.402012134752781 ], [ -95.033626901474548, 29.402164134470365 ], [ -95.033555901694029, 29.402219134139518 ], [ -95.033497900851984, 29.402264134789032 ], [ -95.033285900936406, 29.402429134296415 ], [ -95.032949901534934, 29.402690134322917 ], [ -95.033086901608812, 29.402830135110424 ], [ -95.035954902400732, 29.405750135473269 ], [ -95.036408902474506, 29.406209135369686 ], [ -95.036622902224721, 29.406423135518907 ], [ -95.036698902774049, 29.406499135019089 ], [ -95.036904901924458, 29.406705135612675 ], [ -95.040394903742097, 29.410249135993929 ], [ -95.040658903479112, 29.410517136107103 ], [ -95.041705903539921, 29.411580136467759 ], [ -95.041877904395179, 29.411755136244622 ], [ -95.042010903981449, 29.41188913640493 ], [ -95.042106903938375, 29.411987136642047 ], [ -95.04219590426753, 29.412078136504139 ], [ -95.046682905448449, 29.416634137387991 ], [ -95.049176906230869, 29.419160137815229 ], [ -95.052054906540135, 29.422074137650949 ], [ -95.05407690728417, 29.424113137981283 ], [ -95.054590907423957, 29.424631138057883 ], [ -95.055102908285193, 29.425148138870149 ], [ -95.055485908407462, 29.425537138697184 ], [ -95.059972909689819, 29.430130139432809 ], [ -95.060288909687372, 29.430472139413226 ], [ -95.060560909742264, 29.430765139645356 ], [ -95.064166910807444, 29.434429140484898 ], [ -95.065013910959735, 29.435283140220115 ], [ -95.066593911638847, 29.436892140718466 ], [ -95.06714591152614, 29.437452140969302 ], [ -95.069932912507298, 29.440350141408153 ], [ -95.070469912153726, 29.441017140909917 ], [ -95.072241912548861, 29.443218142101752 ], [ -95.073651913081804, 29.444969142103226 ], [ -95.073802913743961, 29.44515714220617 ], [ -95.073841913203438, 29.445206141851404 ], [ -95.073924913903923, 29.445303142465722 ], [ -95.074221913474943, 29.445171141885183 ], [ -95.074323913699899, 29.445125141844244 ], [ -95.074378913417235, 29.445101142124994 ], [ -95.074583913378035, 29.444986142329189 ], [ -95.074635914150477, 29.444938141742117 ], [ -95.074727913442317, 29.444853142377173 ], [ -95.07481591370032, 29.444589141602304 ], [ -95.074806913780648, 29.444376141657084 ], [ -95.074763913336938, 29.444132142233467 ], [ -95.074694914049658, 29.443886141858346 ], [ -95.074677914141645, 29.443665141717897 ], [ -95.074712914058821, 29.443423142064873 ], [ -95.074800913509804, 29.443178141706653 ], [ -95.074889913222123, 29.443027142006816 ], [ -95.074935913319948, 29.442951141380554 ], [ -95.075022913475266, 29.442828141157584 ], [ -95.075053914002993, 29.442791141511542 ], [ -95.075204914328879, 29.4426121411807 ], [ -95.075446914273911, 29.442179141342365 ], [ -95.075540913538347, 29.44200614139563 ], [ -95.075650913510373, 29.441835141783432 ], [ -95.075831913583599, 29.441665141185211 ], [ -95.076016914482381, 29.441587141020072 ], [ -95.076242913620803, 29.441578141303349 ], [ -95.076484914512477, 29.44162414167948 ], [ -95.076647914031994, 29.441666140849495 ], [ -95.076802914178558, 29.441701141020935 ], [ -95.077107914233295, 29.441701141133802 ], [ -95.077319914536957, 29.441653141589807 ], [ -95.077433914170996, 29.441560141339281 ], [ -95.07768691451372, 29.441317141233508 ], [ -95.07789191430922, 29.441171141474463 ], [ -95.078150914593991, 29.440996140926494 ], [ -95.078503914503955, 29.440794140690567 ], [ -95.078835915113842, 29.440615141344693 ], [ -95.078794914671903, 29.440392140781018 ], [ -95.078914914393181, 29.440318140791945 ], [ -95.079360914621432, 29.440328140871518 ], [ -95.079781914444126, 29.440263140861422 ], [ -95.079907915202043, 29.440244140822976 ], [ -95.080312915354526, 29.440352140922712 ], [ -95.081029915562127, 29.440811141296582 ], [ -95.081496915196411, 29.440703140712554 ], [ -95.081652915708815, 29.440379140680395 ], [ -95.081745915061319, 29.440001140767365 ], [ -95.082057914990102, 29.439596140793601 ], [ -95.082573915530375, 29.439204140489593 ], [ -95.082804915297004, 29.439138140692435 ], [ -95.083085916084997, 29.439084140845672 ], [ -95.083320915620348, 29.438765140758115 ], [ -95.083490915934647, 29.438679140461161 ], [ -95.083739915588595, 29.439354140233711 ], [ -95.084767915704958, 29.439354140572071 ], [ -95.085017916451548, 29.439300140648566 ], [ -95.085640916202607, 29.439354140456764 ], [ -95.085900916884711, 29.439405140110573 ], [ -95.086169916039864, 29.439354140514016 ], [ -95.086293916123353, 29.438846140631004 ], [ -95.086611916435771, 29.438453140358465 ], [ -95.08687791619333, 29.438327140450159 ], [ -95.087209916220004, 29.438367140223882 ], [ -95.087287916662973, 29.438377139823316 ], [ -95.08760391714128, 29.438490140064857 ], [ -95.087852916637758, 29.438814140262345 ], [ -95.088039916673068, 29.439327140546084 ], [ -95.088070917316344, 29.439542140318288 ], [ -95.088237917538564, 29.439710140265596 ], [ -95.088257916953424, 29.439731140214466 ], [ -95.088683916648662, 29.439707140472059 ], [ -95.088724916747125, 29.439704140423487 ], [ -95.089191917361916, 29.439359140097718 ], [ -95.089284917333103, 29.439290140045337 ], [ -95.089381917776578, 29.439262140514899 ], [ -95.089721917587681, 29.439165140258421 ], [ -95.090033917089883, 29.438949140691079 ], [ -95.090126917118241, 29.438301139852449 ], [ -95.090189917907495, 29.437869140243425 ], [ -95.090686917914809, 29.43737114029625 ], [ -95.091778918232819, 29.436790139837118 ], [ -95.09199091802229, 29.436673139689962 ], [ -95.092120917842792, 29.436601139751506 ], [ -95.092183918050281, 29.436578139819812 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1615, "Tract": "48167723000", "Area_SqMi": 1.2663522571126553, "total_2009": 292, "total_2010": 320, "total_2011": 1095, "total_2012": 325, "total_2013": 314, "total_2014": 310, "total_2015": 332, "total_2016": 257, "total_2017": 246, "total_2018": 332, "total_2019": 341, "total_2020": 368, "age1": 63, "age2": 201, "age3": 105, "earn1": 83, "earn2": 89, "earn3": 197, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 76, "naics_s06": 0, "naics_s07": 49, "naics_s08": 1, "naics_s09": 29, "naics_s10": 6, "naics_s11": 2, "naics_s12": 42, "naics_s13": 0, "naics_s14": 0, "naics_s15": 64, "naics_s16": 9, "naics_s17": 0, "naics_s18": 56, "naics_s19": 19, "naics_s20": 0, "race1": 262, "race2": 71, "race3": 5, "race4": 22, "race5": 0, "race6": 9, "ethnicity1": 263, "ethnicity2": 106, "edu1": 63, "edu2": 83, "edu3": 108, "edu4": 52, "Shape_Length": 26908.718572642036, "Shape_Area": 35303733.544751629, "total_2021": 352, "total_2022": 369 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.005741892795641, 29.376845129800316 ], [ -95.005828893142407, 29.376763130454556 ], [ -95.005693893345665, 29.376653130214656 ], [ -95.000423891078682, 29.372356129818137 ], [ -94.998942891030396, 29.371144129201795 ], [ -94.996655890174139, 29.369324128969531 ], [ -94.995346889915297, 29.368260128648075 ], [ -94.994997890453291, 29.368261128478601 ], [ -94.994733889778161, 29.368262128673191 ], [ -94.992775889350852, 29.368282128930659 ], [ -94.992369889814924, 29.368289128814343 ], [ -94.98758088805107, 29.368357129196571 ], [ -94.986956888161231, 29.368359129391106 ], [ -94.986100887874471, 29.368359129456035 ], [ -94.985142887283956, 29.368371129489077 ], [ -94.982981886813462, 29.368395129293436 ], [ -94.981995886376538, 29.368409129626379 ], [ -94.981657886247334, 29.368416129008331 ], [ -94.979661885697126, 29.368429129440027 ], [ -94.978341885336945, 29.36845612952683 ], [ -94.977189885170816, 29.368457129068943 ], [ -94.976191885632886, 29.368468129225814 ], [ -94.975176884459017, 29.368476129095409 ], [ -94.97506588529464, 29.368476129370414 ], [ -94.974245884349671, 29.368500129154313 ], [ -94.973242883995667, 29.36850612983649 ], [ -94.971743883664558, 29.368524129278505 ], [ -94.971794884389027, 29.371727130265501 ], [ -94.971820884224599, 29.373811131053507 ], [ -94.971847884238187, 29.376124131547158 ], [ -94.971855884666979, 29.376662131211969 ], [ -94.971862884358529, 29.377163130977234 ], [ -94.971873884466859, 29.377957131217183 ], [ -94.971874884647661, 29.378022131838414 ], [ -94.971886884038113, 29.378979131696401 ], [ -94.972873884713806, 29.378962131842361 ], [ -94.973848885056427, 29.378945131987397 ], [ -94.974835885541054, 29.378928132090149 ], [ -94.97580088565698, 29.378912131869463 ], [ -94.977071885766321, 29.378875131516995 ], [ -94.97778188595295, 29.378850131902787 ], [ -94.978692886361486, 29.378820131770826 ], [ -94.979802887001568, 29.378782131640243 ], [ -94.979890886545562, 29.378780131572018 ], [ -94.980675886754227, 29.378766131252291 ], [ -94.981299887129424, 29.378754131565579 ], [ -94.981586886908218, 29.378749131285723 ], [ -94.982135887124429, 29.378738131681146 ], [ -94.982284886873629, 29.378735131329393 ], [ -94.98325788726757, 29.378717131441704 ], [ -94.983407887821514, 29.378714131065532 ], [ -94.984193888162793, 29.37870013116132 ], [ -94.984355887221383, 29.378697131384296 ], [ -94.985072887673169, 29.378687131039658 ], [ -94.985395887700989, 29.378683131432076 ], [ -94.985941887768917, 29.378677131524167 ], [ -94.9867978879536, 29.378668131280342 ], [ -94.987641888122994, 29.378659131377926 ], [ -94.987716888706601, 29.378658131190964 ], [ -94.988733888939052, 29.378648131207665 ], [ -94.989800889007384, 29.378636130825715 ], [ -94.993014890377665, 29.378602130993389 ], [ -94.995479890892796, 29.378574131285035 ], [ -94.995746890865789, 29.378572130879864 ], [ -94.996884890809483, 29.378558131215325 ], [ -94.997164890951893, 29.378554130769096 ], [ -94.999906891412849, 29.378522130850659 ], [ -95.000356891688625, 29.378514130357694 ], [ -95.001030892399612, 29.378506130697776 ], [ -95.001820891770777, 29.378495130837774 ], [ -95.001913891783076, 29.378495130417583 ], [ -95.002502892396237, 29.378450130451991 ], [ -95.003011893011646, 29.378390130508773 ], [ -95.003762892814308, 29.378301130883951 ], [ -95.003983892324939, 29.378238130697564 ], [ -95.004083893298173, 29.378210130189505 ], [ -95.004301892907904, 29.37814813030262 ], [ -95.004596893265415, 29.377890130912007 ], [ -95.005221892522059, 29.37734413017122 ], [ -95.00526789333945, 29.377290130651335 ], [ -95.005559892781449, 29.377016130575701 ], [ -95.005741892795641, 29.376845129800316 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1616, "Tract": "48167720800", "Area_SqMi": 1.9966936134279161, "total_2009": 264, "total_2010": 304, "total_2011": 249, "total_2012": 450, "total_2013": 447, "total_2014": 515, "total_2015": 557, "total_2016": 636, "total_2017": 685, "total_2018": 684, "total_2019": 796, "total_2020": 748, "age1": 376, "age2": 453, "age3": 148, "earn1": 283, "earn2": 413, "earn3": 281, "naics_s01": 0, "naics_s02": 0, "naics_s03": 14, "naics_s04": 145, "naics_s05": 0, "naics_s06": 3, "naics_s07": 405, "naics_s08": 0, "naics_s09": 2, "naics_s10": 10, "naics_s11": 0, "naics_s12": 21, "naics_s13": 2, "naics_s14": 24, "naics_s15": 33, "naics_s16": 65, "naics_s17": 6, "naics_s18": 194, "naics_s19": 53, "naics_s20": 0, "race1": 783, "race2": 122, "race3": 7, "race4": 40, "race5": 0, "race6": 25, "ethnicity1": 654, "ethnicity2": 323, "edu1": 142, "edu2": 189, "edu3": 170, "edu4": 100, "Shape_Length": 31262.625234117506, "Shape_Area": 55664400.567097165, "total_2021": 868, "total_2022": 977 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.090766918340535, 29.466075145656148 ], [ -95.090612919189752, 29.465889146036684 ], [ -95.090582919132217, 29.465853145658883 ], [ -95.088102918206673, 29.462804145655454 ], [ -95.087849917744308, 29.462496145100953 ], [ -95.087393917600167, 29.461950144698584 ], [ -95.085220917186817, 29.459265144794575 ], [ -95.084918917386204, 29.458900144524208 ], [ -95.084225916432572, 29.458060144531846 ], [ -95.08405491698889, 29.457853144437532 ], [ -95.082928916533348, 29.456458144291844 ], [ -95.08279891628257, 29.456297144365472 ], [ -95.082616916646543, 29.456075143660534 ], [ -95.08228491612175, 29.455667143837314 ], [ -95.082219916354035, 29.455587144151743 ], [ -95.081692916424345, 29.454941144000106 ], [ -95.080522915818349, 29.453506143318361 ], [ -95.080406915411274, 29.453362143264279 ], [ -95.080095915437468, 29.453527143507372 ], [ -95.07940291528314, 29.454031143501471 ], [ -95.078095915126298, 29.454956144026969 ], [ -95.077068915001746, 29.455678144598188 ], [ -95.076619914462057, 29.456013143899785 ], [ -95.07630091501683, 29.456250143962567 ], [ -95.076016914302585, 29.456452144108123 ], [ -95.075482914496533, 29.456832144773752 ], [ -95.075099914613048, 29.457104144946261 ], [ -95.0747219141236, 29.45737414500784 ], [ -95.074658914197414, 29.457419144772636 ], [ -95.074363913805144, 29.457629144885964 ], [ -95.074190913856555, 29.457753144600186 ], [ -95.073617913783352, 29.458162144711302 ], [ -95.072865913484193, 29.458699145036292 ], [ -95.072638913917046, 29.458863144806209 ], [ -95.07207991368459, 29.459275144854896 ], [ -95.070803913749131, 29.460212145442807 ], [ -95.070079913377853, 29.460713145168921 ], [ -95.069732913467718, 29.460954145518027 ], [ -95.069631913051595, 29.461031145286977 ], [ -95.06933191317853, 29.461240145348135 ], [ -95.067543912656845, 29.462485145845339 ], [ -95.067030912284807, 29.462843145934784 ], [ -95.065994912076619, 29.463596146287017 ], [ -95.064561912317146, 29.464637146026416 ], [ -95.064212912230758, 29.46489114633961 ], [ -95.063996911870632, 29.465048146986813 ], [ -95.063677911850093, 29.46526414691354 ], [ -95.06296091170752, 29.465764146801099 ], [ -95.062446911584644, 29.466099146727586 ], [ -95.061823911630214, 29.466544147090016 ], [ -95.061459910960949, 29.466804147058806 ], [ -95.06134291089522, 29.466889147389601 ], [ -95.061170911234683, 29.467014147214616 ], [ -95.06050291074186, 29.467498146853096 ], [ -95.059807911088981, 29.468002147653905 ], [ -95.059724910917083, 29.468062147676594 ], [ -95.059093910631077, 29.468519147356453 ], [ -95.058977910741532, 29.468603147815017 ], [ -95.058584910165976, 29.468888147491249 ], [ -95.058111910937484, 29.469209147712821 ], [ -95.057396910171533, 29.46971414793336 ], [ -95.057313909946402, 29.469772147706646 ], [ -95.056553910278069, 29.470346147852052 ], [ -95.055686909970049, 29.470968147842768 ], [ -95.055516910275742, 29.47109014825886 ], [ -95.057807910238196, 29.473561148146423 ], [ -95.063657912847404, 29.479827149979268 ], [ -95.063677912819173, 29.479849150077008 ], [ -95.063714912811633, 29.47988814973051 ], [ -95.06500491307655, 29.481270149992561 ], [ -95.065081912391193, 29.481352149548002 ], [ -95.065284912662761, 29.481569149681484 ], [ -95.066487913756532, 29.48286014973516 ], [ -95.06665891301013, 29.482738150432009 ], [ -95.068319913465956, 29.481555150058838 ], [ -95.068884913528223, 29.481153149834853 ], [ -95.069463914252523, 29.480741149884093 ], [ -95.06988891418203, 29.480438149584984 ], [ -95.07070891383357, 29.479854149765149 ], [ -95.071552914422341, 29.479254148982996 ], [ -95.072243914191958, 29.478761149453156 ], [ -95.07281891428984, 29.478352148879789 ], [ -95.073680914793542, 29.477737148749366 ], [ -95.073850914941133, 29.477617148888807 ], [ -95.074087914814456, 29.477423148651834 ], [ -95.076258915142105, 29.475894148344882 ], [ -95.077834915495202, 29.474784147885874 ], [ -95.078039916129299, 29.474638147782322 ], [ -95.080458916203085, 29.472917147239333 ], [ -95.081916916576532, 29.471879147173023 ], [ -95.083809917232955, 29.470569147004401 ], [ -95.084535917895153, 29.470067146528123 ], [ -95.085302917633612, 29.469536146798148 ], [ -95.086128918141398, 29.468964146371363 ], [ -95.086322917655494, 29.468830146744271 ], [ -95.087064918329759, 29.468367146804944 ], [ -95.087886918330227, 29.467819146079112 ], [ -95.088646917893342, 29.467362146548155 ], [ -95.090433918875291, 29.466287146368298 ], [ -95.090488919226502, 29.46625214562901 ], [ -95.090766918340535, 29.466075145656148 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1617, "Tract": "48167726000", "Area_SqMi": 28.715796967886792, "total_2009": 261, "total_2010": 174, "total_2011": 222, "total_2012": 66, "total_2013": 89, "total_2014": 127, "total_2015": 122, "total_2016": 117, "total_2017": 124, "total_2018": 137, "total_2019": 128, "total_2020": 141, "age1": 28, "age2": 61, "age3": 56, "earn1": 15, "earn2": 57, "earn3": 73, "naics_s01": 0, "naics_s02": 13, "naics_s03": 0, "naics_s04": 42, "naics_s05": 0, "naics_s06": 19, "naics_s07": 2, "naics_s08": 1, "naics_s09": 3, "naics_s10": 0, "naics_s11": 0, "naics_s12": 5, "naics_s13": 0, "naics_s14": 11, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 26, "naics_s19": 23, "naics_s20": 0, "race1": 130, "race2": 10, "race3": 0, "race4": 4, "race5": 0, "race6": 1, "ethnicity1": 118, "ethnicity2": 27, "edu1": 23, "edu2": 39, "edu3": 37, "edu4": 18, "Shape_Length": 207173.5731704325, "Shape_Area": 800547271.88698506, "total_2021": 150, "total_2022": 145 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.987138883763791, 29.26738710838606 ], [ -94.987248883333095, 29.267284107983695 ], [ -94.984714882623393, 29.264747107852326 ], [ -94.97483388056871, 29.257207106125502 ], [ -94.967470877997329, 29.251682105889394 ], [ -94.964196876818875, 29.247613104453272 ], [ -94.963918877018727, 29.247267104451581 ], [ -94.963310876611871, 29.246435104446292 ], [ -94.961973875973015, 29.244765103764927 ], [ -94.961611875784214, 29.244314103947719 ], [ -94.96144187587069, 29.244101104345933 ], [ -94.955774874710713, 29.237027103228883 ], [ -94.952792873346041, 29.233269102246375 ], [ -94.95233087297872, 29.231944101835136 ], [ -94.952154873545197, 29.231439101683833 ], [ -94.951718872754171, 29.230873101914124 ], [ -94.951202872903892, 29.230703101402057 ], [ -94.950351872694711, 29.230310101674672 ], [ -94.950199872394549, 29.230170101601736 ], [ -94.949286872715064, 29.230328101326563 ], [ -94.947553871915957, 29.230600101661331 ], [ -94.946989872233729, 29.231185102023389 ], [ -94.945381871261702, 29.230934102155782 ], [ -94.943192871084264, 29.228961101782186 ], [ -94.942250870523083, 29.228869101131597 ], [ -94.941371870722705, 29.22850510121668 ], [ -94.941117870705426, 29.228484101874585 ], [ -94.940715869731207, 29.228420101346231 ], [ -94.940355870112839, 29.228484101443897 ], [ -94.939528870099451, 29.228314101946975 ], [ -94.938581869208406, 29.228013101194644 ], [ -94.937983869290889, 29.227427101020304 ], [ -94.937770869109485, 29.227039101300516 ], [ -94.937569869496485, 29.226517101567644 ], [ -94.937478868692963, 29.225356100789522 ], [ -94.937541868655373, 29.222926100518251 ], [ -94.936934868848113, 29.222163100604867 ], [ -94.935864868582868, 29.221519099966216 ], [ -94.935142868023775, 29.221399099861596 ], [ -94.934225867997824, 29.221482100559854 ], [ -94.934105868394823, 29.221526100365917 ], [ -94.933714867645662, 29.22167210028449 ], [ -94.933292868125648, 29.221791100729106 ], [ -94.932769868324968, 29.221970100319552 ], [ -94.932705867822179, 29.221960100635425 ], [ -94.926962866058247, 29.224323101031001 ], [ -94.926907866441255, 29.224337101238469 ], [ -94.926819866209442, 29.224356101451317 ], [ -94.926731866045401, 29.22436310149596 ], [ -94.926665866690911, 29.224348100928534 ], [ -94.926610866125031, 29.224301100934824 ], [ -94.926046866294342, 29.223230100817521 ], [ -94.926006865824235, 29.223155100452804 ], [ -94.924063865076931, 29.219471099911569 ], [ -94.92396586513668, 29.219317100030338 ], [ -94.923888865511898, 29.219233100466631 ], [ -94.923825865206382, 29.219211099813819 ], [ -94.923921865259175, 29.219104100133862 ], [ -94.923965865849752, 29.219068100283334 ], [ -94.924878866029957, 29.217674099904464 ], [ -94.925023865903597, 29.217500099379766 ], [ -94.925249865637653, 29.217280100063391 ], [ -94.925527865857987, 29.217100099583948 ], [ -94.925938865510744, 29.216927099957221 ], [ -94.926488865939191, 29.216706099641897 ], [ -94.927102865959881, 29.216452099263901 ], [ -94.927936866453848, 29.216122099316653 ], [ -94.928498866841338, 29.21589009946657 ], [ -94.929146866862041, 29.215589099404561 ], [ -94.929325866479772, 29.21549509949137 ], [ -94.929431866188608, 29.215439098893832 ], [ -94.929783866833333, 29.215253098934749 ], [ -94.929869867240001, 29.215216099400621 ], [ -94.929668867062574, 29.214894099064903 ], [ -94.929447866789218, 29.214454099193464 ], [ -94.928082865972456, 29.211935098635973 ], [ -94.927962866099875, 29.211681098440899 ], [ -94.927820866247004, 29.211402098704848 ], [ -94.927736866495195, 29.211247098175221 ], [ -94.927222865535782, 29.210280097756456 ], [ -94.926853865916598, 29.209587098354483 ], [ -94.926412865939596, 29.208759097883394 ], [ -94.926053865101053, 29.208437097488389 ], [ -94.925552865152753, 29.207519097813933 ], [ -94.905329860816195, 29.21941110082312 ], [ -94.898037858975613, 29.223860102319549 ], [ -94.894652858193297, 29.226003102490562 ], [ -94.883603855395378, 29.232626104388 ], [ -94.883045855984534, 29.232886103956481 ], [ -94.882524855069491, 29.233406104443745 ], [ -94.877687854057456, 29.236425105235934 ], [ -94.876459853797911, 29.236880105625676 ], [ -94.876421853518082, 29.236782105234546 ], [ -94.874933854056266, 29.237399105772401 ], [ -94.874040853383363, 29.238406105317392 ], [ -94.873445853212544, 29.238990105922184 ], [ -94.870970852837615, 29.240286106437406 ], [ -94.871501852562275, 29.241139105958396 ], [ -94.871835852562455, 29.241495106131449 ], [ -94.871990852727222, 29.241661106394886 ], [ -94.872386853449385, 29.24240810668282 ], [ -94.872500852744281, 29.242623106688104 ], [ -94.872798853753821, 29.243186106816147 ], [ -94.87414585411112, 29.245787107228242 ], [ -94.874451853556195, 29.246378106998467 ], [ -94.875643853853433, 29.248454107956785 ], [ -94.87565685427424, 29.248608107410362 ], [ -94.875656854587447, 29.248724107545247 ], [ -94.875605853861003, 29.248877108216558 ], [ -94.875515853887009, 29.249006107927539 ], [ -94.875387854436525, 29.24912110811179 ], [ -94.87528485400027, 29.249211107928257 ], [ -94.875067854237315, 29.249313107917875 ], [ -94.873158853344833, 29.250144107990476 ], [ -94.872605853953544, 29.250370108099656 ], [ -94.872540853257703, 29.25039710796289 ], [ -94.871529853314243, 29.250811108081344 ], [ -94.870971852678821, 29.251032108154561 ], [ -94.869880852484755, 29.251463108770839 ], [ -94.86940685273737, 29.251642108707749 ], [ -94.86879285266123, 29.251891108538764 ], [ -94.86799685268511, 29.252209108830243 ], [ -94.867371852496618, 29.252453108764186 ], [ -94.866941851910653, 29.252599109315494 ], [ -94.866895852041154, 29.25261410935525 ], [ -94.866809852439076, 29.252639109234714 ], [ -94.866541852547385, 29.252717109332234 ], [ -94.866231851542807, 29.252789108740476 ], [ -94.866064852290108, 29.252827108878325 ], [ -94.86574985229656, 29.252891108769919 ], [ -94.86559585155257, 29.252915108577401 ], [ -94.865691851631965, 29.252975108758122 ], [ -94.865742852179508, 29.253039108952603 ], [ -94.86578785200831, 29.253123108903839 ], [ -94.867051852490093, 29.255511109540869 ], [ -94.867349852390561, 29.25607310944504 ], [ -94.867618852522227, 29.256580109485437 ], [ -94.869072852407925, 29.255985109682364 ], [ -94.869518852469653, 29.255803109326038 ], [ -94.8702518527747, 29.255503109673246 ], [ -94.871648853509583, 29.254932109636663 ], [ -94.873292853932384, 29.258020109848452 ], [ -94.876023854466268, 29.263160110806123 ], [ -94.876854855080495, 29.264738110835179 ], [ -94.876971854876231, 29.265034111015574 ], [ -94.877033855188387, 29.26513011160834 ], [ -94.877150855785146, 29.265281111148628 ], [ -94.877308855230453, 29.265569111624643 ], [ -94.877679855889198, 29.266267111877291 ], [ -94.878070855658649, 29.267003111270604 ], [ -94.878491856259927, 29.267793111790777 ], [ -94.878599855485618, 29.26799611214323 ], [ -94.879476856012204, 29.2696441117711 ], [ -94.880916856100797, 29.272361112792336 ], [ -94.880982856861678, 29.27241911240219 ], [ -94.881017857033115, 29.272449112970197 ], [ -94.881114856485624, 29.272622112271854 ], [ -94.881242857155684, 29.272862112258043 ], [ -94.882083856981765, 29.27444211341658 ], [ -94.884117857955843, 29.278274113913607 ], [ -94.890186859709345, 29.289678116028277 ], [ -94.889666859859858, 29.290564116484862 ], [ -94.887023859364376, 29.295062117478704 ], [ -94.887099859054587, 29.295099117398141 ], [ -94.886979859541199, 29.295300116989132 ], [ -94.886784858704175, 29.295629117437386 ], [ -94.886640859113115, 29.295876117607019 ], [ -94.886527858553109, 29.296070116896985 ], [ -94.886433859293007, 29.296232117332348 ], [ -94.885904859348656, 29.297144117649093 ], [ -94.885876859343725, 29.297193118024587 ], [ -94.885865859073135, 29.297254117489508 ], [ -94.886107859247275, 29.297377117603158 ], [ -94.896387861618649, 29.302453118388243 ], [ -94.898625862370977, 29.303564118655043 ], [ -94.89866186293925, 29.303503118840368 ], [ -94.898830862142589, 29.303359118453386 ], [ -94.898826862012655, 29.303329118463797 ], [ -94.898747862421615, 29.302898118630768 ], [ -94.898965862051625, 29.302912118131033 ], [ -94.899190862158633, 29.303028117956199 ], [ -94.899285863130643, 29.303077117960754 ], [ -94.899139862189358, 29.303273118271633 ], [ -94.899315862820103, 29.30333111845572 ], [ -94.899590863117211, 29.303004117949047 ], [ -94.899358862310706, 29.30282811799912 ], [ -94.89937186235575, 29.302778118396905 ], [ -94.899450862324073, 29.302669118254698 ], [ -94.899601862465872, 29.302438117951041 ], [ -94.899717862867803, 29.302263118437114 ], [ -94.899854862679561, 29.30207411798899 ], [ -94.900071862368236, 29.301940118498056 ], [ -94.900383863086944, 29.30191311849978 ], [ -94.900632863145205, 29.302129118229264 ], [ -94.900913863256548, 29.302156118402117 ], [ -94.900944863226542, 29.302102117789978 ], [ -94.901131862731205, 29.302075117709805 ], [ -94.901380863357019, 29.302129118014289 ], [ -94.901598863146674, 29.301994118460335 ], [ -94.901505863134133, 29.301913117860177 ], [ -94.901473863336648, 29.301778118359671 ], [ -94.901941863124492, 29.301454117857066 ], [ -94.902003862909339, 29.30140011791033 ], [ -94.902252863166296, 29.301238117834963 ], [ -94.902377862889026, 29.301184117591554 ], [ -94.902408863560325, 29.301022117747351 ], [ -94.902533863787681, 29.30099511779347 ], [ -94.902751863484212, 29.300914118174646 ], [ -94.902782863216075, 29.300833117653248 ], [ -94.902907863158461, 29.300779117843614 ], [ -94.9033128633872, 29.300483117575276 ], [ -94.90356186357559, 29.300375117782458 ], [ -94.903917864105253, 29.30034911804281 ], [ -94.904530863755127, 29.299732117955546 ], [ -94.904527863946583, 29.299700117423356 ], [ -94.904651863676676, 29.29959211703256 ], [ -94.904776863519032, 29.299565117740393 ], [ -94.904901863433963, 29.299484117540139 ], [ -94.904558863427226, 29.299133117432451 ], [ -94.90427886387323, 29.298917117383205 ], [ -94.904184863382525, 29.298836117664969 ], [ -94.903810863119688, 29.298459116818901 ], [ -94.903873863957898, 29.298351117100381 ], [ -94.904028864105797, 29.298324117211834 ], [ -94.904184863914509, 29.298459116885756 ], [ -94.904309863763331, 29.298540116982014 ], [ -94.90434886338403, 29.298574116916008 ], [ -94.904371863818199, 29.298594117635847 ], [ -94.904527863807289, 29.298756117286153 ], [ -94.904558863459215, 29.298836117522054 ], [ -94.905056863515014, 29.299322117139898 ], [ -94.905150863471277, 29.299268117817398 ], [ -94.905306864133777, 29.299160117056164 ], [ -94.905119864023874, 29.299025117690348 ], [ -94.905088863686814, 29.298890117304726 ], [ -94.905493864506127, 29.29878311716168 ], [ -94.905898864526904, 29.298648116819763 ], [ -94.906053863773835, 29.298378117346228 ], [ -94.906209864499573, 29.298351116763151 ], [ -94.90639686386848, 29.298459116904052 ], [ -94.906645864330599, 29.298243117255293 ], [ -94.906677864800955, 29.298054117090235 ], [ -94.907050864670282, 29.298000117402708 ], [ -94.907331864377653, 29.297811116635131 ], [ -94.907374864107169, 29.297769117289498 ], [ -94.90758086418802, 29.297568116733327 ], [ -94.908203864812208, 29.29756811685693 ], [ -94.908234865140884, 29.297649116577407 ], [ -94.908390864771889, 29.297838117370976 ], [ -94.908453864508459, 29.298189117461998 ], [ -94.908484865124876, 29.298486117388855 ], [ -94.908733864658387, 29.298486116915537 ], [ -94.90885886513081, 29.298405116760808 ], [ -94.908795865127999, 29.298189116960895 ], [ -94.90873386479565, 29.297865117401095 ], [ -94.908639864788967, 29.297838117136195 ], [ -94.908608865191567, 29.297487116507472 ], [ -94.908764864589557, 29.297325116500897 ], [ -94.909107864401165, 29.297271117207703 ], [ -94.909294864863085, 29.297433116751865 ], [ -94.909325864536981, 29.29754111654437 ], [ -94.909418864927289, 29.297730116770079 ], [ -94.909450864971191, 29.297838116507798 ], [ -94.909512865412935, 29.297946117258036 ], [ -94.909512864524075, 29.298081117254746 ], [ -94.909605864775784, 29.298189117115815 ], [ -94.909636865032027, 29.298135117349052 ], [ -94.909730865189857, 29.29810811707414 ], [ -94.910042865652912, 29.297919117110244 ], [ -94.910073865068853, 29.297811116499677 ], [ -94.910166865270511, 29.297703116681756 ], [ -94.910073864968766, 29.297703116852883 ], [ -94.909886864982369, 29.297730116509978 ], [ -94.909730864894357, 29.297622116819976 ], [ -94.909699865117958, 29.29748711676709 ], [ -94.909543865311463, 29.297325117012612 ], [ -94.909543864596259, 29.297082116380832 ], [ -94.909699864620777, 29.297028116828656 ], [ -94.9097308651574, 29.296920116315995 ], [ -94.909636864995463, 29.296813116903216 ], [ -94.909543864757637, 29.296867116519326 ], [ -94.909294864996411, 29.296920116933155 ], [ -94.909231864563324, 29.296974116493278 ], [ -94.909138864426453, 29.297001116370208 ], [ -94.909076864996038, 29.297055116770679 ], [ -94.908889864361612, 29.297055116416011 ], [ -94.908546864469557, 29.297136116409156 ], [ -94.90842186450125, 29.297082117080045 ], [ -94.908390864889739, 29.296974117039117 ], [ -94.908328864798435, 29.296920116468815 ], [ -94.90827786478377, 29.296877117175516 ], [ -94.908234864336549, 29.296840116394886 ], [ -94.908234864300411, 29.296570117096589 ], [ -94.908484864198584, 29.29632711651314 ], [ -94.908826864742792, 29.296327117023672 ], [ -94.909076864748343, 29.296246116742648 ], [ -94.909387864780328, 29.296192116666628 ], [ -94.90957486456773, 29.296138116503837 ], [ -94.909761864854545, 29.296111116470939 ], [ -94.909855865003024, 29.296003116852134 ], [ -94.909792864596128, 29.295949116979461 ], [ -94.909761865176236, 29.2957331166937 ], [ -94.909730864814961, 29.295436116143364 ], [ -94.909730864649248, 29.295193116381487 ], [ -94.909761864894676, 29.29505811637129 ], [ -94.909855865284413, 29.295031116091383 ], [ -94.909886865293785, 29.294924115901786 ], [ -94.9099798653709, 29.294897116460593 ], [ -94.910099864913803, 29.294740116173148 ], [ -94.909903864679478, 29.294412115872486 ], [ -94.911085865218396, 29.292809115497025 ], [ -94.912062865844916, 29.291840115362689 ], [ -94.912197865209478, 29.291706116022379 ], [ -94.912293865333382, 29.291610115698472 ], [ -94.912530865401152, 29.291435115603985 ], [ -94.912989865739391, 29.291095115181392 ], [ -94.913026866145074, 29.291068115661922 ], [ -94.919575866684966, 29.286180114358395 ], [ -94.919607867280163, 29.286126114175783 ], [ -94.920164867217807, 29.285947113725683 ], [ -94.920442867683164, 29.285854114547693 ], [ -94.920627866886278, 29.285706113725606 ], [ -94.9206618674434, 29.285631114148476 ], [ -94.920646866920166, 29.285511114397625 ], [ -94.920609867721126, 29.285396114401298 ], [ -94.920507866913738, 29.285289114302991 ], [ -94.920456867167871, 29.285187114326874 ], [ -94.920428866963604, 29.285062114006621 ], [ -94.920419867467686, 29.284998114123464 ], [ -94.920336867754145, 29.28483111349869 ], [ -94.920248867570592, 29.28476611415066 ], [ -94.92016486753559, 29.284646114199759 ], [ -94.920158867552615, 29.284577113872526 ], [ -94.920211867538995, 29.28446511372324 ], [ -94.920319866836437, 29.284401113451899 ], [ -94.920405867506304, 29.284345113957883 ], [ -94.920502867262428, 29.284312113843388 ], [ -94.920650867831171, 29.284271113375716 ], [ -94.920715866829738, 29.284229113958258 ], [ -94.920942867249366, 29.284081113747128 ], [ -94.921076867934644, 29.28407611356581 ], [ -94.921141867611666, 29.284076113670356 ], [ -94.921197867148422, 29.28413211342632 ], [ -94.921192867257133, 29.284183113485994 ], [ -94.921160867907176, 29.284183113411213 ], [ -94.921109867290284, 29.284183113564179 ], [ -94.921039867432597, 29.284197113885494 ], [ -94.92091086711865, 29.284257113633018 ], [ -94.920868867846863, 29.284303113986866 ], [ -94.920863867482964, 29.284373114018273 ], [ -94.920868866971446, 29.284428113590558 ], [ -94.920928867497608, 29.284396113938762 ], [ -94.920975867433938, 29.284377113368265 ], [ -94.92103586783324, 29.284373113466497 ], [ -94.921104867924171, 29.284396113769574 ], [ -94.921234867491236, 29.284488113638002 ], [ -94.921308867547765, 29.284530114172551 ], [ -94.921493867224953, 29.284488113669997 ], [ -94.921641867309887, 29.284363113611199 ], [ -94.921831867878396, 29.28426111371483 ], [ -94.922086867366517, 29.284210113572712 ], [ -94.922326868134363, 29.284150114061759 ], [ -94.922470867939552, 29.284099113677232 ], [ -94.922660867692628, 29.284039114099517 ], [ -94.922873867924025, 29.283956113565463 ], [ -94.923044867511507, 29.2839001136824 ], [ -94.92322986756615, 29.283896113510018 ], [ -94.923451867635507, 29.283886113341044 ], [ -94.923701868313088, 29.283993113846087 ], [ -94.923840868228424, 29.28416011402355 ], [ -94.923905868182274, 29.284289113823672 ], [ -94.924002867820548, 29.284400113395975 ], [ -94.924155868269295, 29.28452111381878 ], [ -94.924215868661378, 29.284590113959641 ], [ -94.924243868481994, 29.284669113976186 ], [ -94.92423886837183, 29.284752113575735 ], [ -94.924238868479179, 29.284799113325189 ], [ -94.924243867921888, 29.284826113841635 ], [ -94.924299868462214, 29.284882114061894 ], [ -94.924312868078204, 29.28489611400499 ], [ -94.924405868795986, 29.284966113632919 ], [ -94.924685868852791, 29.284966113646615 ], [ -94.924747868922452, 29.28491211362121 ], [ -94.925339868895307, 29.284939113718153 ], [ -94.925744868993078, 29.284939113650694 ], [ -94.925931868883865, 29.284993114169051 ], [ -94.926305868587747, 29.284993113284202 ], [ -94.926523868926523, 29.285154113605778 ], [ -94.926897869385314, 29.285101113606185 ], [ -94.926991868993539, 29.285181114059206 ], [ -94.927053869272882, 29.285101114011852 ], [ -94.927427869021912, 29.285074113313033 ], [ -94.927489868669682, 29.28502011384905 ], [ -94.927645869199779, 29.28499311331807 ], [ -94.927738868915498, 29.284912113973988 ], [ -94.927801868745092, 29.284804113683741 ], [ -94.92777086950619, 29.284642113437258 ], [ -94.927707869180438, 29.284507113988706 ], [ -94.927645869337439, 29.284399113726348 ], [ -94.927583869371929, 29.284372113335174 ], [ -94.927520869155387, 29.28431811369564 ], [ -94.927115868639788, 29.284318113649945 ], [ -94.927022869200073, 29.284210113354394 ], [ -94.927084868955774, 29.284021113609796 ], [ -94.927178869171541, 29.283913113341814 ], [ -94.927333869475831, 29.283940113916969 ], [ -94.927365869317327, 29.284021113349695 ], [ -94.927520869374248, 29.283994113148399 ], [ -94.927614869553508, 29.283832113847769 ], [ -94.927707868870712, 29.283805113269722 ], [ -94.927738869047047, 29.28380511376756 ], [ -94.927770869166352, 29.283886113104607 ], [ -94.928050869188652, 29.283967113269906 ], [ -94.928143868871658, 29.283967113569787 ], [ -94.928175869522818, 29.283859113649953 ], [ -94.928268869570573, 29.283886113240801 ], [ -94.928455869674622, 29.28404811311885 ], [ -94.928486869355979, 29.284129113315792 ], [ -94.928735869687245, 29.284183113241397 ], [ -94.928704869542258, 29.284291113125008 ], [ -94.928580869231695, 29.28434511344642 ], [ -94.928642869020521, 29.284507113767646 ], [ -94.928829869208982, 29.284642113701192 ], [ -94.928829869920065, 29.284912113605227 ], [ -94.928985869448454, 29.284912113555208 ], [ -94.929016869889907, 29.284777113370179 ], [ -94.929296870064945, 29.284777113656734 ], [ -94.929390869279914, 29.284885113897122 ], [ -94.929359869612654, 29.284993113922763 ], [ -94.929234869873568, 29.285047113245504 ], [ -94.929172869071294, 29.285101113457518 ], [ -94.929234869105855, 29.285235113723562 ], [ -94.929296870063766, 29.285343114105622 ], [ -94.929359870066818, 29.285370113494956 ], [ -94.929390869833455, 29.285451113435983 ], [ -94.929701869401441, 29.285451113786937 ], [ -94.929670869596009, 29.285721113556988 ], [ -94.929577869901181, 29.285775113966082 ], [ -94.929701870070176, 29.285883114177398 ], [ -94.930044869728789, 29.28588311352695 ], [ -94.929982869413081, 29.285829114046205 ], [ -94.930013869847642, 29.285694113677565 ], [ -94.930137869825217, 29.285667114048167 ], [ -94.930543870198932, 29.285667113600457 ], [ -94.930605869493604, 29.285559114043032 ], [ -94.931010870246581, 29.285532113946676 ], [ -94.931072870032153, 29.285424113299811 ], [ -94.931010870240343, 29.285316113838526 ], [ -94.931041870451992, 29.285235113740374 ], [ -94.9312908700973, 29.285235113687129 ], [ -94.931353870126884, 29.285343113735586 ], [ -94.931446870532099, 29.285181113910383 ], [ -94.931633869890206, 29.285181113968612 ], [ -94.93182087028525, 29.285262113593792 ], [ -94.932100869920163, 29.285289113586401 ], [ -94.932163869952291, 29.285343113667107 ], [ -94.932412870277886, 29.285370113566358 ], [ -94.93238187053143, 29.285532113744956 ], [ -94.932194870440455, 29.285586113385133 ], [ -94.931945869826009, 29.285721113567853 ], [ -94.931695870279682, 29.285829113292991 ], [ -94.9316648704051, 29.28591011353663 ], [ -94.931602870396617, 29.285964113969865 ], [ -94.931384870502399, 29.286045114076618 ], [ -94.931290870618554, 29.286126114268949 ], [ -94.930979870435195, 29.286180113625292 ], [ -94.930854870296614, 29.286288114035283 ], [ -94.930449869474018, 29.286477114283798 ], [ -94.930044869447656, 29.286612113785537 ], [ -94.929826869731841, 29.286720114376948 ], [ -94.929546869963701, 29.286774114063796 ], [ -94.929390869534899, 29.286882114011508 ], [ -94.929140869110043, 29.286936113993377 ], [ -94.928860869657569, 29.28709811418263 ], [ -94.928767869324957, 29.287124114323486 ], [ -94.928735869235851, 29.287178113864961 ], [ -94.928580869355287, 29.28717811445372 ], [ -94.928517869952003, 29.287286114206832 ], [ -94.928330869111861, 29.287313113718113 ], [ -94.928268869513289, 29.28736711448941 ], [ -94.928050869705132, 29.287502114332206 ], [ -94.927676869420168, 29.287610114180946 ], [ -94.927520869296728, 29.287664114228676 ], [ -94.927458869059237, 29.287718114620965 ], [ -94.927333869490198, 29.287691114207441 ], [ -94.927302869434357, 29.287583114416918 ], [ -94.926554868941892, 29.287502114150378 ], [ -94.926056869238451, 29.287502114493741 ], [ -94.925994868327862, 29.287556114206801 ], [ -94.92580786927347, 29.28758311388188 ], [ -94.925682868441228, 29.287637114492099 ], [ -94.924903868357916, 29.287853114321909 ], [ -94.924560868223367, 29.287934114524624 ], [ -94.924342867975909, 29.287988114843316 ], [ -94.923719868705462, 29.288285114765586 ], [ -94.923657868084277, 29.288447114597798 ], [ -94.923626868111896, 29.28874411455206 ], [ -94.923470868481857, 29.288717114542809 ], [ -94.923408867749941, 29.288663114670022 ], [ -94.923030868567395, 29.288738115087259 ], [ -94.92253386840278, 29.289334114970764 ], [ -94.921778867458258, 29.290162114733576 ], [ -94.921155867481815, 29.290897114779991 ], [ -94.920852867355137, 29.291307114961555 ], [ -94.920841867519044, 29.291327115624373 ], [ -94.920625867156573, 29.291717115344888 ], [ -94.920558867730819, 29.291943115227753 ], [ -94.92071386791693, 29.292307115386226 ], [ -94.920844867259362, 29.292723115953191 ], [ -94.92101186757175, 29.293222115798297 ], [ -94.921310867658647, 29.293586116113275 ], [ -94.921847867582898, 29.294044116169037 ], [ -94.922766868343331, 29.294970116294365 ], [ -94.922849868374215, 29.295203116274411 ], [ -94.923158868541194, 29.295247116262395 ], [ -94.923408868863646, 29.295301116152562 ], [ -94.923626868669828, 29.295355116153431 ], [ -94.923688868420129, 29.295409115718233 ], [ -94.923875868311782, 29.295409116165757 ], [ -94.924000868625825, 29.295463116201031 ], [ -94.924031868694343, 29.29581411628546 ], [ -94.923813868144791, 29.296084116452977 ], [ -94.923439868545557, 29.296030116486826 ], [ -94.922847868381439, 29.295868115828164 ], [ -94.922847868704977, 29.29611111642587 ], [ -94.923034868081757, 29.296165115816422 ], [ -94.923252868499475, 29.296219116390567 ], [ -94.923563869037309, 29.29630011641347 ], [ -94.923595868186524, 29.29643511617984 ], [ -94.923439868323769, 29.296570116263396 ], [ -94.923377868050892, 29.296678116343763 ], [ -94.92328386805012, 29.296705116161981 ], [ -94.923065868244976, 29.296840116619702 ], [ -94.922785868545958, 29.29678611639012 ], [ -94.922598868088883, 29.296840115906978 ], [ -94.922535868228948, 29.296974116551144 ], [ -94.922722867960886, 29.296974116716875 ], [ -94.922785868355689, 29.297028116568228 ], [ -94.923065868836972, 29.297109116156982 ], [ -94.923377868816374, 29.297163116123169 ], [ -94.923501868718546, 29.296759116293789 ], [ -94.923719869027821, 29.296651116319715 ], [ -94.924031868235204, 29.296651116066492 ], [ -94.924187869264884, 29.296786116069246 ], [ -94.924374869189208, 29.296974116213974 ], [ -94.924374869182344, 29.297352116092178 ], [ -94.924155869115822, 29.297541116237678 ], [ -94.924031868416492, 29.297568116145133 ], [ -94.923875869162572, 29.297676116519767 ], [ -94.923875868239151, 29.297865116442992 ], [ -94.924000869158732, 29.297892116137358 ], [ -94.924031868460361, 29.297811116591411 ], [ -94.924467868615949, 29.297703116371952 ], [ -94.924654868556217, 29.297757116091017 ], [ -94.924779868815008, 29.297649116522383 ], [ -94.924654869063318, 29.297406116526986 ], [ -94.92465486856544, 29.297271116182845 ], [ -94.924685869193425, 29.297082116455385 ], [ -94.924934869400957, 29.296947116245352 ], [ -94.925121869341979, 29.296920116423852 ], [ -94.925152868918502, 29.296840116124965 ], [ -94.925277868545606, 29.296813115934565 ], [ -94.92533986926, 29.296759116434554 ], [ -94.925464869050629, 29.296705115835948 ], [ -94.925308868555902, 29.29657011648592 ], [ -94.925215869128095, 29.296462116295757 ], [ -94.924965869074157, 29.296678116072329 ], [ -94.92481086870238, 29.296759116155719 ], [ -94.924529868868248, 29.296678115882347 ], [ -94.924155868604956, 29.296462116465026 ], [ -94.924124869044732, 29.296192116337632 ], [ -94.924218868255622, 29.295949115690394 ], [ -94.924467869160779, 29.295679116051229 ], [ -94.924685869232761, 29.295679115586744 ], [ -94.924934869083145, 29.295733116294095 ], [ -94.925152869358982, 29.295868116309787 ], [ -94.925433869167122, 29.295976116480201 ], [ -94.925557869054941, 29.296003115797475 ], [ -94.925620869245932, 29.296057116089504 ], [ -94.925744869007374, 29.296111116369403 ], [ -94.926025869204423, 29.296192115925081 ], [ -94.926134869391362, 29.296216115818304 ], [ -94.926149869437708, 29.296219116494857 ], [ -94.926212869044491, 29.296273116474335 ], [ -94.926305869585363, 29.296300116172002 ], [ -94.926492868814947, 29.296381116296146 ], [ -94.926928869748281, 29.296435116012375 ], [ -94.927022869893804, 29.296516116394457 ], [ -94.92736586975137, 29.296570115686649 ], [ -94.927489869145148, 29.296651116314525 ], [ -94.927614869392812, 29.296678116234613 ], [ -94.927620869859993, 29.296694115878893 ], [ -94.927645869142637, 29.29675911639325 ], [ -94.927770869858946, 29.296813116399136 ], [ -94.927801869580136, 29.297001116125251 ], [ -94.927738869612995, 29.297217116446241 ], [ -94.927520869195902, 29.297406116329505 ], [ -94.927427869871892, 29.297433116202399 ], [ -94.927178869866367, 29.297379116710431 ], [ -94.927084869835014, 29.297298116479343 ], [ -94.926991869248184, 29.297271116458102 ], [ -94.926960869860281, 29.297190116153221 ], [ -94.926679869382724, 29.297109115966848 ], [ -94.926336869203865, 29.297001116287131 ], [ -94.926181868924829, 29.296974116100447 ], [ -94.926149869628475, 29.296867115876061 ], [ -94.926025869604217, 29.296840116241896 ], [ -94.925900869467625, 29.297055116594358 ], [ -94.925744869069447, 29.297271116383676 ], [ -94.925651869637363, 29.297595116740801 ], [ -94.92555786966993, 29.297703116171228 ], [ -94.925277868863347, 29.29778411613583 ], [ -94.925090868581549, 29.297730116388362 ], [ -94.924903869009313, 29.297892116529908 ], [ -94.925028869517519, 29.298162116502954 ], [ -94.92518486894393, 29.298297116958047 ], [ -94.925539869256113, 29.298534116642919 ], [ -94.925589869719772, 29.298567116311329 ], [ -94.9256518692886, 29.298621116649198 ], [ -94.925744868725516, 29.298648116634833 ], [ -94.925776869615731, 29.298756116448104 ], [ -94.925869869430144, 29.298836116438643 ], [ -94.925931869396152, 29.298783117004344 ], [ -94.926056869249521, 29.298729116705182 ], [ -94.926212869872572, 29.298594116338887 ], [ -94.926368869791091, 29.298567116691363 ], [ -94.926523869601439, 29.298432116106724 ], [ -94.926523869663413, 29.298351116329332 ], [ -94.926461869860546, 29.298243116842759 ], [ -94.926305869286594, 29.298324116120479 ], [ -94.926212869573689, 29.298405116529068 ], [ -94.92593186949334, 29.29845911694041 ], [ -94.925807868850825, 29.298405116914779 ], [ -94.925728869288363, 29.298337116605296 ], [ -94.925651869504222, 29.298270116319742 ], [ -94.925526869084578, 29.298216116174444 ], [ -94.925526868726507, 29.298054116551004 ], [ -94.925713868929435, 29.297973116287114 ], [ -94.925869869432475, 29.297757116523634 ], [ -94.925900869667373, 29.297622116146417 ], [ -94.925994869199187, 29.297514116473167 ], [ -94.926056869517637, 29.297352116595224 ], [ -94.926274868924637, 29.297352116113949 ], [ -94.926336869148244, 29.29740611617402 ], [ -94.926492869238089, 29.297433115998338 ], [ -94.92680486971129, 29.297541116460661 ], [ -94.927053869913337, 29.297595116649365 ], [ -94.927115869665485, 29.297649116314194 ], [ -94.927209869747003, 29.297676116061574 ], [ -94.92727186959452, 29.297730116555126 ], [ -94.927411869843326, 29.297831116776884 ], [ -94.927458869501052, 29.297865116573679 ], [ -94.927583869409915, 29.297919116683719 ], [ -94.927707869423713, 29.29808111681238 ], [ -94.927925869615393, 29.298270116031475 ], [ -94.92742786943127, 29.298675116440933 ], [ -94.92730286986081, 29.298863116925826 ], [ -94.926835869711624, 29.299052116632947 ], [ -94.926710869910607, 29.299106116757695 ], [ -94.926648869527739, 29.299160116908695 ], [ -94.926430869241415, 29.299268116283205 ], [ -94.926305868927869, 29.299322116928717 ], [ -94.92649286946849, 29.299484116658817 ], [ -94.926710869189222, 29.299430116698229 ], [ -94.926804869566922, 29.299349116704249 ], [ -94.926928869450975, 29.299295116645752 ], [ -94.927053869224736, 29.299214116996595 ], [ -94.92742786994603, 29.299052116428964 ], [ -94.927458869976959, 29.298971116194046 ], [ -94.9276768698127, 29.298890116293258 ], [ -94.928019870014609, 29.298567116440804 ], [ -94.928050869431118, 29.2984861160629 ], [ -94.928175870158611, 29.298459116770626 ], [ -94.928206869419185, 29.298378116355231 ], [ -94.928362869530332, 29.298297116690421 ], [ -94.92801986944707, 29.29800011640684 ], [ -94.927894869260513, 29.297784116300328 ], [ -94.927894870018946, 29.297514115937862 ], [ -94.927988870012399, 29.297379116525768 ], [ -94.928050869605215, 29.297325116671974 ], [ -94.928424869832625, 29.297271116182227 ], [ -94.928611870342692, 29.297352115968039 ], [ -94.928673869668131, 29.297406116682808 ], [ -94.928735869573472, 29.297433116268063 ], [ -94.928798870328308, 29.297541116315671 ], [ -94.928860870348231, 29.297568115842353 ], [ -94.929016870246841, 29.297730116440224 ], [ -94.929078870301993, 29.297838116487913 ], [ -94.929140870539456, 29.297865116785122 ], [ -94.92926587032801, 29.298081116529389 ], [ -94.929275869872811, 29.298153116522275 ], [ -94.929296870187315, 29.298297116364868 ], [ -94.929203870556648, 29.298405116285448 ], [ -94.929047869791731, 29.298567116614063 ], [ -94.9288918700002, 29.298702116594278 ], [ -94.928860870189965, 29.298783116231963 ], [ -94.928455870057832, 29.299133116235662 ], [ -94.92823786959147, 29.299295116209727 ], [ -94.928206869460041, 29.299403116813227 ], [ -94.928112870176406, 29.299484116892575 ], [ -94.927863869659589, 29.299565116292726 ], [ -94.927801869606483, 29.299619116976046 ], [ -94.927614870251702, 29.299700116603614 ], [ -94.927271869972373, 29.299943117051701 ], [ -94.927053869492127, 29.299997117023263 ], [ -94.926991869815652, 29.300051116456533 ], [ -94.926920869614463, 29.300071117125718 ], [ -94.926897869803113, 29.300078117067674 ], [ -94.926835869995543, 29.300132116427871 ], [ -94.926741869977903, 29.30024011668581 ], [ -94.926679869971267, 29.300348117312399 ], [ -94.926492869189289, 29.30056411738482 ], [ -94.92633686914111, 29.300672117016227 ], [ -94.926118869771955, 29.300699117134712 ], [ -94.926056869142556, 29.300753117030066 ], [ -94.92530886933335, 29.300860116780534 ], [ -94.924716868587197, 29.300860116914453 ], [ -94.92437486906411, 29.300591116823114 ], [ -94.924311869297952, 29.300375117338788 ], [ -94.924405869101037, 29.300213117328468 ], [ -94.924498868539033, 29.299997116910617 ], [ -94.924716868959621, 29.299916117223116 ], [ -94.925059868677693, 29.29991611712239 ], [ -94.925402868976178, 29.300213116883253 ], [ -94.925869869286387, 29.300132116570303 ], [ -94.926056869444551, 29.299943116645412 ], [ -94.926212869821597, 29.299808117140852 ], [ -94.926149869333358, 29.299700116776503 ], [ -94.92602586986952, 29.299700116598434 ], [ -94.925838868856204, 29.299781116441217 ], [ -94.925464868733357, 29.299781116749426 ], [ -94.925246869020242, 29.299646116697868 ], [ -94.925184869242457, 29.299133116713026 ], [ -94.924965868672203, 29.299214116347216 ], [ -94.924923868765134, 29.299177116531094 ], [ -94.924903869070235, 29.299160116596777 ], [ -94.924779869114161, 29.299106116554167 ], [ -94.924623869449874, 29.298998116798071 ], [ -94.924560868969579, 29.298944116990494 ], [ -94.924405868796754, 29.298890116389767 ], [ -94.924249869207543, 29.298783116550197 ], [ -94.924000869107701, 29.298702116354225 ], [ -94.923688868267135, 29.298648117080365 ], [ -94.922971868395408, 29.298729116512881 ], [ -94.922847868638314, 29.298513116704704 ], [ -94.922504868130716, 29.29856711688684 ], [ -94.922753868613526, 29.298836116837371 ], [ -94.922816868111454, 29.298890116597281 ], [ -94.923003868771445, 29.299079117162226 ], [ -94.92306586838825, 29.299133116925798 ], [ -94.923408868445364, 29.299538116767774 ], [ -94.923501869223912, 29.299565116541288 ], [ -94.923563869017883, 29.299700116797574 ], [ -94.923657868846192, 29.299700116951914 ], [ -94.923750868366113, 29.299484117008628 ], [ -94.923532868507209, 29.299241116677436 ], [ -94.923532868825845, 29.299025116503458 ], [ -94.923937868847787, 29.298998116361304 ], [ -94.924218868436782, 29.299079116765057 ], [ -94.924529869416958, 29.299295116333539 ], [ -94.924560869403834, 29.299592116441151 ], [ -94.924436868598647, 29.299754117080457 ], [ -94.92440586843901, 29.299862116919567 ], [ -94.924280868943669, 29.299889117309132 ], [ -94.924124868977856, 29.300105117174322 ], [ -94.923937868607027, 29.300348116786097 ], [ -94.923750869230645, 29.300375116958911 ], [ -94.923283868753003, 29.300240116992008 ], [ -94.923221868351845, 29.300186117338047 ], [ -94.923034868701706, 29.300105117306725 ], [ -94.922816868250052, 29.299943116551706 ], [ -94.922753868062713, 29.299835117196857 ], [ -94.922660868265012, 29.299808116934386 ], [ -94.92262986837396, 29.299727117361016 ], [ -94.922535868539214, 29.299700117131323 ], [ -94.922504868842012, 29.299592117274429 ], [ -94.922037868308067, 29.299133116872362 ], [ -94.921725868180474, 29.298783116835519 ], [ -94.92156986841394, 29.298729116628081 ], [ -94.920946867683355, 29.298648116920301 ], [ -94.920666867551461, 29.298621117148933 ], [ -94.920572868371593, 29.29878311652174 ], [ -94.92063586780057, 29.298917116883942 ], [ -94.921133867914875, 29.298998116939043 ], [ -94.921382867721348, 29.298998117207191 ], [ -94.921601868618509, 29.299133116477684 ], [ -94.92188186835709, 29.299403116575352 ], [ -94.922130867896243, 29.299619116574796 ], [ -94.922193868287408, 29.299727117160266 ], [ -94.922255867869438, 29.299781117295403 ], [ -94.922286868510056, 29.299862116986517 ], [ -94.922130868105484, 29.300132116953211 ], [ -94.922051868487443, 29.300149116727624 ], [ -94.922006868810925, 29.300159116929805 ], [ -94.921632868594841, 29.299997116710504 ], [ -94.921009868222129, 29.29986211702693 ], [ -94.920884867587418, 29.299781116769456 ], [ -94.920199867596338, 29.299052116855819 ], [ -94.920074868227019, 29.298944116444915 ], [ -94.920136867791811, 29.298540116892546 ], [ -94.920143867664635, 29.29852811702327 ], [ -94.920199867688495, 29.298432116283216 ], [ -94.920199868236992, 29.298324116992301 ], [ -94.919918867682796, 29.298270116332642 ], [ -94.91990686792424, 29.298331116290953 ], [ -94.919887867845645, 29.298432116750377 ], [ -94.919762867699689, 29.29867511693077 ], [ -94.919731868136594, 29.298944117162524 ], [ -94.920012867857295, 29.299295116664421 ], [ -94.920074868122654, 29.299349116977396 ], [ -94.920136868145889, 29.299457116898754 ], [ -94.920230868336077, 29.299565116969358 ], [ -94.920417867696671, 29.299754116695013 ], [ -94.920759867673766, 29.3000511171882 ], [ -94.920946868185027, 29.300159117147203 ], [ -94.921445868201715, 29.300267116879915 ], [ -94.921663868596113, 29.300402116943602 ], [ -94.921788868761055, 29.30045611705312 ], [ -94.922099868625338, 29.300564116706155 ], [ -94.922337868609617, 29.300377117206708 ], [ -94.922442868355603, 29.300294117129901 ], [ -94.922722868216354, 29.300240116767217 ], [ -94.923034869088042, 29.300537116775779 ], [ -94.923065868564748, 29.300645117365637 ], [ -94.923012868182681, 29.300874117510386 ], [ -94.923000868872023, 29.300916116849518 ], [ -94.922909868857047, 29.300995116766462 ], [ -94.922669868554749, 29.301148117346223 ], [ -94.922364868022314, 29.30130311730132 ], [ -94.922198868701685, 29.301296117090729 ], [ -94.921154867784935, 29.300892117429857 ], [ -94.920732867814351, 29.301005117560305 ], [ -94.920683867654418, 29.301054117140843 ], [ -94.920510867651856, 29.301076117495672 ], [ -94.920163867794628, 29.301289117388997 ], [ -94.919965867661318, 29.301316117105813 ], [ -94.919584868247966, 29.301222116901695 ], [ -94.919457867653861, 29.301135116889792 ], [ -94.91906786717152, 29.300712117149963 ], [ -94.91881186802334, 29.300886116901573 ], [ -94.91938486729164, 29.301419116993362 ], [ -94.919392867870073, 29.301508117332723 ], [ -94.919295867316677, 29.30162211696463 ], [ -94.919229867212749, 29.301695117797681 ], [ -94.919173867692265, 29.301723117762382 ], [ -94.919027867477865, 29.301797117832493 ], [ -94.918983867304561, 29.301805117076462 ], [ -94.918610867343901, 29.301859117820882 ], [ -94.918578867954253, 29.30169711742834 ], [ -94.918485867699687, 29.301589117038585 ], [ -94.918329867247849, 29.301535117635826 ], [ -94.918205867630718, 29.301481117813793 ], [ -94.918080867129717, 29.301400117652932 ], [ -94.91795586719573, 29.301400117338204 ], [ -94.917426867211489, 29.301481117389297 ], [ -94.916865867117167, 29.301427117452295 ], [ -94.916678866779975, 29.30134611745008 ], [ -94.91649186653251, 29.301319117773144 ], [ -94.916460866907954, 29.301238117559389 ], [ -94.916335866729284, 29.301211117220323 ], [ -94.91630486722471, 29.301130117870883 ], [ -94.91617986688955, 29.301076117074615 ], [ -94.91614886658968, 29.300726117728832 ], [ -94.916304866545516, 29.30053711703475 ], [ -94.916331866508287, 29.300532117537081 ], [ -94.916616867049697, 29.300483116948925 ], [ -94.916678867345283, 29.300537117059033 ], [ -94.916802867109652, 29.3005911174685 ], [ -94.916834866985965, 29.300672117533264 ], [ -94.916927867241313, 29.300699117375942 ], [ -94.916989866802581, 29.300753117308382 ], [ -94.917332867581109, 29.300833117654022 ], [ -94.917706866861224, 29.300779116847153 ], [ -94.917831866885194, 29.300726117222574 ], [ -94.917675866914024, 29.300591117044839 ], [ -94.917488867497809, 29.300510117266647 ], [ -94.917363867139713, 29.300321117004739 ], [ -94.917176867397842, 29.3002401176565 ], [ -94.916896866666121, 29.300159117593161 ], [ -94.916335867300944, 29.300213117324198 ], [ -94.916273866776592, 29.300267117343303 ], [ -94.916174866875267, 29.300288117638708 ], [ -94.916148866415909, 29.300294117389853 ], [ -94.915930866940329, 29.300456116890015 ], [ -94.915743866284828, 29.300537117318576 ], [ -94.915556866859831, 29.300537117511205 ], [ -94.915432866884899, 29.300510117126485 ], [ -94.915369867051041, 29.30045611740487 ], [ -94.915276866361722, 29.300429117345548 ], [ -94.915218866704961, 29.300389117094458 ], [ -94.915120867063493, 29.300321117099244 ], [ -94.915089866285072, 29.300024117585714 ], [ -94.915276866247225, 29.299862117122615 ], [ -94.915432866929493, 29.299754117470979 ], [ -94.915619866983775, 29.299754117515189 ], [ -94.915803867146096, 29.299710117087269 ], [ -94.915961867102268, 29.299673117410769 ], [ -94.916553866535111, 29.299538116856009 ], [ -94.916865866945116, 29.299538116876562 ], [ -94.916927866680794, 29.299484117478631 ], [ -94.916771867233933, 29.29926811704054 ], [ -94.916429866928311, 29.299268117340478 ], [ -94.916086866764061, 29.299295117152482 ], [ -94.916024866663747, 29.299349117062775 ], [ -94.915805866581422, 29.299376116638602 ], [ -94.915625866278688, 29.299432116795369 ], [ -94.915463866406469, 29.299484117533542 ], [ -94.915182866727079, 29.299403117475322 ], [ -94.915058866985589, 29.299268117241617 ], [ -94.915058866903863, 29.2991671168237 ], [ -94.915058866518763, 29.298810116726781 ], [ -94.915193866760305, 29.298759116963677 ], [ -94.915276866311714, 29.298729116931021 ], [ -94.915681866286704, 29.298702116536194 ], [ -94.916460866377804, 29.298621116931614 ], [ -94.916397866864756, 29.298405116723348 ], [ -94.915619866875033, 29.298405116705027 ], [ -94.915400866164973, 29.298351117299529 ], [ -94.915213866091449, 29.298189116761442 ], [ -94.915174866666803, 29.298036116463056 ], [ -94.91515186644142, 29.297946116371978 ], [ -94.915338866234777, 29.297703116735121 ], [ -94.91561986656933, 29.297649116859837 ], [ -94.915805866219884, 29.297703116550764 ], [ -94.916460867076566, 29.297730116679318 ], [ -94.916553866484762, 29.297811116569591 ], [ -94.916616866413747, 29.297811116972873 ], [ -94.916678866622377, 29.297541117050187 ], [ -94.916678866801163, 29.297433116718256 ], [ -94.916616867250042, 29.297433116269062 ], [ -94.916086867195887, 29.297379117086027 ], [ -94.914871866216714, 29.297379116807754 ], [ -94.914746866866608, 29.297433116714835 ], [ -94.914808866366485, 29.297568116948344 ], [ -94.914808866279287, 29.297703116762932 ], [ -94.914871866183361, 29.297757116833179 ], [ -94.914871866588513, 29.298025116608699 ], [ -94.914871866141567, 29.29840511644419 ], [ -94.914840866447889, 29.298648116898139 ], [ -94.914777866829439, 29.298810116703162 ], [ -94.914746866622764, 29.29894411726254 ], [ -94.914684865899915, 29.299052117189625 ], [ -94.914559866631549, 29.29937611747426 ], [ -94.914497866479223, 29.299484117339464 ], [ -94.914497865982455, 29.299619117118159 ], [ -94.914372865982344, 29.29983511684312 ], [ -94.914185866185491, 29.299916116930149 ], [ -94.914000865881491, 29.299891116998637 ], [ -94.91378086582742, 29.29986211737069 ], [ -94.913687866510699, 29.299619117219386 ], [ -94.913749865896904, 29.299295116874056 ], [ -94.913811865807133, 29.299079116920243 ], [ -94.91387486607816, 29.299025117048377 ], [ -94.913936866328967, 29.298836117379089 ], [ -94.914030866726861, 29.298621116706105 ], [ -94.914092865820507, 29.298513117013421 ], [ -94.914092865788078, 29.297997116862398 ], [ -94.914092865861662, 29.297973116772777 ], [ -94.914030866468465, 29.297784116438486 ], [ -94.913967865874667, 29.297622116417941 ], [ -94.913874865764924, 29.297514117009733 ], [ -94.913687865657337, 29.297595117200569 ], [ -94.913188865650142, 29.297703116650453 ], [ -94.912970865696494, 29.297757117200319 ], [ -94.912877865925978, 29.29783811675097 ], [ -94.912970865795231, 29.297919116526771 ], [ -94.913219865649225, 29.297919116762131 ], [ -94.913718866289415, 29.298027117137725 ], [ -94.913905866651518, 29.298324116998515 ], [ -94.913749866011699, 29.298567116519624 ], [ -94.913531866277523, 29.298648116559015 ], [ -94.91318886653066, 29.298648116687822 ], [ -94.912908866233977, 29.298594117386052 ], [ -94.912721865996133, 29.298648116855901 ], [ -94.912783866157199, 29.298810116617954 ], [ -94.913344866001154, 29.298836117271229 ], [ -94.913469866577501, 29.299025117112155 ], [ -94.913500866475445, 29.29932211716951 ], [ -94.913313865648647, 29.299484116990666 ], [ -94.912690865632612, 29.299484117628843 ], [ -94.912659865753469, 29.299673117033858 ], [ -94.912970865770589, 29.29972711692049 ], [ -94.9131888659102, 29.299727116922632 ], [ -94.913500866090075, 29.299808117642982 ], [ -94.913593866515598, 29.300024117635182 ], [ -94.913531866563559, 29.300321117561619 ], [ -94.913251865623636, 29.300402117141765 ], [ -94.913095866210526, 29.300537117409224 ], [ -94.913095866569606, 29.300753117328604 ], [ -94.912975865984677, 29.300857117240028 ], [ -94.912939866110179, 29.300887117920588 ], [ -94.912843865819909, 29.300859117756744 ], [ -94.912752866020753, 29.300833117135817 ], [ -94.912690865448837, 29.300779117845813 ], [ -94.912503865777367, 29.300645117001789 ], [ -94.912472866349475, 29.300564117562804 ], [ -94.912347866136969, 29.300483117273618 ], [ -94.912254865502589, 29.300240116920182 ], [ -94.912191865379214, 29.300186117436358 ], [ -94.912067865878029, 29.299997117289255 ], [ -94.912067866213476, 29.299835117076299 ], [ -94.912098865461971, 29.29948411752909 ], [ -94.912129865652773, 29.299322116763207 ], [ -94.912160866103378, 29.299106117122481 ], [ -94.912098865858979, 29.299052117512872 ], [ -94.912160866014261, 29.2988101173605 ], [ -94.912191865699086, 29.298459116871452 ], [ -94.912222866064624, 29.298351116765996 ], [ -94.912160865403948, 29.298135116896823 ], [ -94.91194286549154, 29.298135116924016 ], [ -94.911755865510202, 29.298189116846903 ], [ -94.91141286574863, 29.298351117168792 ], [ -94.911475865362746, 29.298405117065773 ], [ -94.911693865422052, 29.298486117022861 ], [ -94.911786865867853, 29.298810117138942 ], [ -94.911880865602555, 29.298998116801968 ], [ -94.911880865541363, 29.299457117201303 ], [ -94.911817865909072, 29.299754117453841 ], [ -94.911755865268006, 29.29980811724349 ], [ -94.911506865571212, 29.299754117346446 ], [ -94.911225865897123, 29.299673117010464 ], [ -94.911163866058928, 29.299754116904431 ], [ -94.911007865779595, 29.299808117340852 ], [ -94.910852865559107, 29.299808117770375 ], [ -94.910727865101336, 29.299862117627114 ], [ -94.910571865254738, 29.29997011737569 ], [ -94.910447865766784, 29.299997117526054 ], [ -94.910322864865208, 29.300051117001946 ], [ -94.910166864909314, 29.300078117040194 ], [ -94.910104864958711, 29.29991611779954 ], [ -94.909823865244348, 29.299889117009752 ], [ -94.909730865618812, 29.299754117042095 ], [ -94.909636865037513, 29.299538117726826 ], [ -94.909387865545156, 29.299511116895086 ], [ -94.909356864892402, 29.299619117320869 ], [ -94.909294865058214, 29.299673116932738 ], [ -94.909263865562778, 29.299889117013183 ], [ -94.90913886455769, 29.299916117739365 ], [ -94.9090768649843, 29.300051117447815 ], [ -94.909325865501629, 29.300159117221668 ], [ -94.909979865449074, 29.300240117834452 ], [ -94.910104865441212, 29.300591117604277 ], [ -94.910291865774994, 29.300672117098497 ], [ -94.9104158655704, 29.300887117124166 ], [ -94.910322865281856, 29.300914117906334 ], [ -94.910166865239532, 29.301049117571008 ], [ -94.910166865627289, 29.301130117727347 ], [ -94.910447865595742, 29.301184118037302 ], [ -94.910478865561117, 29.301292117442493 ], [ -94.910322865815345, 29.301319117721523 ], [ -94.910291865793681, 29.30140011799633 ], [ -94.910228865836118, 29.301508117867812 ], [ -94.91035386573212, 29.301589117425291 ], [ -94.910353865323344, 29.301994118072493 ], [ -94.910291865606709, 29.302048118161412 ], [ -94.910291865257179, 29.302102117936585 ], [ -94.910322865329078, 29.302372117618006 ], [ -94.910135865718573, 29.302453117663031 ], [ -94.910104865206222, 29.30253411788145 ], [ -94.910010865239514, 29.302561117627722 ], [ -94.909979865349555, 29.302669118183729 ], [ -94.909886865423104, 29.302696117816613 ], [ -94.909761865575064, 29.302615117865706 ], [ -94.909730864936193, 29.302507118282378 ], [ -94.909668864943669, 29.302453117600795 ], [ -94.909636864957804, 29.302372117483493 ], [ -94.908733865359778, 29.302345117552466 ], [ -94.908608864942707, 29.302345117530141 ], [ -94.908381864682994, 29.302295117513882 ], [ -94.907985865043202, 29.302210117496575 ], [ -94.907954865112615, 29.30207511799475 ], [ -94.908079865101726, 29.301751117883917 ], [ -94.908110864658227, 29.301643117692365 ], [ -94.908203865197962, 29.301616117521395 ], [ -94.908764865134955, 29.301724117679029 ], [ -94.909013864766621, 29.301751117703734 ], [ -94.909294864909185, 29.301805117700454 ], [ -94.909730865235218, 29.30180511735394 ], [ -94.910010864846939, 29.301724117712226 ], [ -94.910010864813245, 29.301616118124223 ], [ -94.909792864787661, 29.301508117975036 ], [ -94.909294865504748, 29.301454117629685 ], [ -94.909169865093119, 29.301400117388056 ], [ -94.908858865187767, 29.301373118139267 ], [ -94.908110864425481, 29.301319117828783 ], [ -94.908172864612368, 29.301049117626718 ], [ -94.90823486451319, 29.300672117206794 ], [ -94.908546865014841, 29.300672117617427 ], [ -94.908920865270417, 29.300806117302905 ], [ -94.909107865041236, 29.300833117736438 ], [ -94.909512865653966, 29.30086011754063 ], [ -94.909855864931629, 29.300860117591963 ], [ -94.909855865645483, 29.300726117133962 ], [ -94.909761865338396, 29.300564117785857 ], [ -94.90963686507142, 29.300564117761766 ], [ -94.909138865276702, 29.300510117571051 ], [ -94.908858865360259, 29.300429117649912 ], [ -94.908172864730076, 29.300375117874694 ], [ -94.9078928644646, 29.300375117893172 ], [ -94.907642864374409, 29.300213117407687 ], [ -94.907549864696065, 29.300186117340619 ], [ -94.907393865027998, 29.299997117492079 ], [ -94.907237865005669, 29.299862117279744 ], [ -94.907019864126241, 29.299997117560714 ], [ -94.906988864946882, 29.300105117555187 ], [ -94.907237864798688, 29.300348117729815 ], [ -94.907362864276408, 29.300483117342353 ], [ -94.907424865021042, 29.300537117401475 ], [ -94.90745686477986, 29.300618117231451 ], [ -94.907518864626894, 29.300672117214344 ], [ -94.907549864183807, 29.300779117915912 ], [ -94.907611864177198, 29.300833117854367 ], [ -94.907674864891462, 29.300968117976659 ], [ -94.907736864760551, 29.301130117515648 ], [ -94.907736865003073, 29.301481117791678 ], [ -94.907674864805159, 29.301643118155734 ], [ -94.907736864557236, 29.30172411746765 ], [ -94.907674864582134, 29.30177811817763 ], [ -94.907642864961758, 29.301994117952344 ], [ -94.907611864972225, 29.302129117498026 ], [ -94.907269864474216, 29.302129118079911 ], [ -94.907228865081279, 29.302045118098192 ], [ -94.906895864325307, 29.301940118167629 ], [ -94.906832864039643, 29.301805117695849 ], [ -94.906926864630975, 29.301481117900508 ], [ -94.907019864399629, 29.301319117561324 ], [ -94.907082864607503, 29.301211117303932 ], [ -94.906864864360529, 29.301022117429245 ], [ -94.906770864174888, 29.300914117505165 ], [ -94.906583864538675, 29.300753117690117 ], [ -94.906490864043903, 29.300645117533062 ], [ -94.906427863876914, 29.300537117189911 ], [ -94.906303863888994, 29.300510117275628 ], [ -94.906052864234084, 29.300666117891307 ], [ -94.906334864225769, 29.301049118102618 ], [ -94.906552864617808, 29.301238117972371 ], [ -94.906612864368512, 29.301445118109832 ], [ -94.906614864705773, 29.301454117932881 ], [ -94.906490863980977, 29.301724117841104 ], [ -94.906303864758939, 29.301751118156051 ], [ -94.906152864433494, 29.30175211809394 ], [ -94.90598986449676, 29.301784117991602 ], [ -94.905789864114681, 29.302137118397603 ], [ -94.905663864039482, 29.302311117975272 ], [ -94.905624864185469, 29.302433117584837 ], [ -94.905524864651611, 29.302690118091249 ], [ -94.905181863660502, 29.302992118579255 ], [ -94.90552486436728, 29.302992117851982 ], [ -94.905617864551715, 29.302911117758573 ], [ -94.905711864046864, 29.30288411834016 ], [ -94.905742864014002, 29.302965118579625 ], [ -94.905835863803972, 29.303073118258038 ], [ -94.905835864245503, 29.303208118347598 ], [ -94.905809864725583, 29.303225118545431 ], [ -94.905816864505368, 29.303322118548842 ], [ -94.905804863903924, 29.303397118275445 ], [ -94.905698864769846, 29.303487118355392 ], [ -94.90564886420502, 29.303532118337021 ], [ -94.905472864746315, 29.303646118303387 ], [ -94.905275863698591, 29.303775118239148 ], [ -94.905430864757392, 29.303856118038301 ], [ -94.90549386429268, 29.303802118300226 ], [ -94.905617864054435, 29.303748118608127 ], [ -94.905680864040747, 29.303802118495316 ], [ -94.905617863849841, 29.303910118146277 ], [ -94.905651864264215, 29.304056117934604 ], [ -94.905680864102607, 29.304180118321334 ], [ -94.905804863968243, 29.304315118349379 ], [ -94.905898863912228, 29.304450118298774 ], [ -94.905930864568319, 29.304535118197812 ], [ -94.905941864564483, 29.304562118548606 ], [ -94.90591386393794, 29.304582118082003 ], [ -94.905892864719888, 29.304597118443958 ], [ -94.905904864820812, 29.304614118595421 ], [ -94.905955863947995, 29.304687118342912 ], [ -94.906086864459013, 29.304823118456593 ], [ -94.906077864823104, 29.304998118436146 ], [ -94.906072864107145, 29.305075118907652 ], [ -94.906072864266619, 29.305165118931765 ], [ -94.906088864795407, 29.305217118869912 ], [ -94.906122864937842, 29.305324118944085 ], [ -94.90613086443679, 29.305351118364179 ], [ -94.906152864424698, 29.305441118299616 ], [ -94.906168864929811, 29.305502118946297 ], [ -94.906217864734487, 29.305946118302291 ], [ -94.906264865064372, 29.306020118326114 ], [ -94.906517864528965, 29.306417119229561 ], [ -94.906552865009971, 29.306447118701822 ], [ -94.906832864404137, 29.30647411860669 ], [ -94.906864864386506, 29.306609119185385 ], [ -94.906694864772945, 29.306692118893803 ], [ -94.90664586480689, 29.306716118494986 ], [ -94.906645864470036, 29.306797118649939 ], [ -94.906775864395215, 29.306820119116967 ], [ -94.90686186518991, 29.306956118707379 ], [ -94.906926864578892, 29.307098118879647 ], [ -94.906957864691648, 29.307310118959567 ], [ -94.907082865087744, 29.307553118977314 ], [ -94.90730086536712, 29.307823118925178 ], [ -94.907552865381675, 29.308042119317047 ], [ -94.90767486476166, 29.308147119457242 ], [ -94.907767865043496, 29.308255119324258 ], [ -94.907829865342464, 29.308343119266745 ], [ -94.907990865470936, 29.308433119058055 ], [ -94.908730865477764, 29.308831119315943 ], [ -94.909264865450041, 29.309120119535425 ], [ -94.909662865788931, 29.309320119631575 ], [ -94.910791865563496, 29.309927119500117 ], [ -94.910976865648124, 29.310036119051453 ], [ -94.911257865878184, 29.310171119557499 ], [ -94.911381866295599, 29.310198119863074 ], [ -94.911506866310347, 29.310279119697679 ], [ -94.911755866238394, 29.31038711934001 ], [ -94.912503866374934, 29.31060211919403 ], [ -94.912628866668214, 29.310683119744901 ], [ -94.913219867022846, 29.310764119146768 ], [ -94.913780866991559, 29.310764119625752 ], [ -94.91396786718434, 29.310818119228497 ], [ -94.914497866968546, 29.310845119833118 ], [ -94.914808866744281, 29.310791119497452 ], [ -94.915276867141912, 29.310845119822616 ], [ -94.91586886696291, 29.310899119681881 ], [ -94.915992867273928, 29.310926119243778 ], [ -94.916055867468174, 29.310872119144829 ], [ -94.91652286774989, 29.310818119518938 ], [ -94.916771867703417, 29.310926119523234 ], [ -94.917083867616824, 29.310872119251687 ], [ -94.917644867777256, 29.311034119426331 ], [ -94.91773786761182, 29.311034119010593 ], [ -94.918173867625924, 29.311088119248502 ], [ -94.918734867495175, 29.311142119189157 ], [ -94.918921867613264, 29.311196118966119 ], [ -94.919482868153509, 29.311223119127821 ], [ -94.919731868399353, 29.311277119339934 ], [ -94.920448868775537, 29.311331119599579 ], [ -94.920728868025591, 29.311439119366828 ], [ -94.921445869157225, 29.31146611943921 ], [ -94.921943869141813, 29.311520119642957 ], [ -94.92234886857652, 29.311520119431229 ], [ -94.922722868626408, 29.311601119043896 ], [ -94.923408868883854, 29.311682119230902 ], [ -94.923906869329144, 29.311709119082561 ], [ -94.924405869507524, 29.311817119303349 ], [ -94.924747869694031, 29.311871119325559 ], [ -94.925028870123498, 29.311952119512927 ], [ -94.925215869257073, 29.311952118942834 ], [ -94.92549586995456, 29.312033119187287 ], [ -94.925807869832383, 29.312114119331699 ], [ -94.925838869735898, 29.312195119640073 ], [ -94.926181870027463, 29.312249119383974 ], [ -94.926305869907623, 29.312357119670988 ], [ -94.926368870108476, 29.312465119517341 ], [ -94.926554870317062, 29.312599119530347 ], [ -94.926773870543954, 29.312653119257973 ], [ -94.92705387002151, 29.312707119534657 ], [ -94.927458870137386, 29.312923119456737 ], [ -94.92767687022635, 29.313085119377877 ], [ -94.928050870696737, 29.313193119256617 ], [ -94.928604870546266, 29.313215119680443 ], [ -94.931039871253105, 29.313609119876585 ], [ -94.931573871724467, 29.313697119191104 ], [ -94.93263087197181, 29.313869119285688 ], [ -94.933664872285078, 29.314036119341868 ], [ -94.937459872883665, 29.31421911904388 ], [ -94.938902873212228, 29.313637119609897 ], [ -94.941759873936661, 29.312492119106881 ], [ -94.941790874114716, 29.311898118536583 ], [ -94.941821873779304, 29.311331118862206 ], [ -94.941977873482912, 29.311061119009636 ], [ -94.942070873421699, 29.310414118728659 ], [ -94.942164873559946, 29.310144118531142 ], [ -94.942289873963432, 29.309928117974309 ], [ -94.942351874102144, 29.309550118119983 ], [ -94.942382873573379, 29.309442118336282 ], [ -94.942756873683663, 29.308929118123494 ], [ -94.943067874187548, 29.308659118031247 ], [ -94.943099873828515, 29.308471118024411 ], [ -94.943379874589112, 29.308174117802835 ], [ -94.943472874322879, 29.308012118159638 ], [ -94.943472873929295, 29.307715117537601 ], [ -94.943659874276392, 29.307391117816522 ], [ -94.943722874211943, 29.307229117548403 ], [ -94.943753874693414, 29.306986118128037 ], [ -94.943878873817042, 29.306824118084258 ], [ -94.943815874209719, 29.306770117978349 ], [ -94.943784874671437, 29.306609117860869 ], [ -94.94359787395743, 29.306528117747423 ], [ -94.943566873918456, 29.306420117296479 ], [ -94.943722874062331, 29.306312117760019 ], [ -94.943597873845547, 29.306204117924757 ], [ -94.943566874592278, 29.306069117428311 ], [ -94.943691874670193, 29.305961117714865 ], [ -94.943753874229913, 29.30585311782329 ], [ -94.943846874189987, 29.305745117173565 ], [ -94.943846873722705, 29.305583117697079 ], [ -94.944002873899493, 29.305448117808801 ], [ -94.944064873934323, 29.305286117677902 ], [ -94.944189874590464, 29.305178117548557 ], [ -94.944501874451149, 29.305097117239029 ], [ -94.944532873992628, 29.305016117057704 ], [ -94.944594874116675, 29.304908117725319 ], [ -94.944594874338648, 29.304827117558357 ], [ -94.94456387479255, 29.304719117344483 ], [ -94.944656874270891, 29.304693117602998 ], [ -94.944688874812087, 29.304612117126712 ], [ -94.944781874315495, 29.30453111681728 ], [ -94.944812874866955, 29.304342117278178 ], [ -94.944937874576937, 29.304234117366832 ], [ -94.945217874757432, 29.303937117218368 ], [ -94.945280874271461, 29.303883117390576 ], [ -94.945280874660085, 29.30372111706372 ], [ -94.945248874764559, 29.303586117232175 ], [ -94.945373874122197, 29.303478116932261 ], [ -94.945778875106527, 29.303451116990797 ], [ -94.945809874715778, 29.303208117119851 ], [ -94.94605887472423, 29.303181117025186 ], [ -94.94609087467876, 29.303100117128462 ], [ -94.946245875052526, 29.302965116889325 ], [ -94.946370874522771, 29.302803116504339 ], [ -94.946495874937952, 29.302561117158081 ], [ -94.94661987447175, 29.302426116915679 ], [ -94.946806874759687, 29.302291117100417 ], [ -94.946837874717701, 29.302210116445465 ], [ -94.946931874777789, 29.302021116946925 ], [ -94.947149874754231, 29.301832116944571 ], [ -94.947274874465023, 29.301670116682526 ], [ -94.947336874820593, 29.301562116181703 ], [ -94.947461874547415, 29.30145411675667 ], [ -94.947554875340288, 29.301238116238746 ], [ -94.947647875196694, 29.301130116727062 ], [ -94.947741874828523, 29.300806116452744 ], [ -94.947897874563765, 29.300779116083614 ], [ -94.947959875239661, 29.300726116691713 ], [ -94.94814687474134, 29.300591115993242 ], [ -94.948426874971574, 29.300294115865629 ], [ -94.94842687481561, 29.300240115771665 ], [ -94.948395874677033, 29.300132116441212 ], [ -94.94833387498808, 29.300078116238325 ], [ -94.948333874807261, 29.299727115625316 ], [ -94.94842687527813, 29.299700115773831 ], [ -94.948458875152866, 29.299565116166299 ], [ -94.94855187522208, 29.299484116127481 ], [ -94.948707875618595, 29.299160116193953 ], [ -94.948800875108603, 29.298998115837833 ], [ -94.949174875316416, 29.298836115852449 ], [ -94.949299874897292, 29.29881011622188 ], [ -94.949330874883529, 29.298729115943932 ], [ -94.949423875215174, 29.298702115425023 ], [ -94.949455875688415, 29.298540115584341 ], [ -94.949548875780039, 29.298513115879395 ], [ -94.949579875211711, 29.298270116179467 ], [ -94.949673875179144, 29.298243116064029 ], [ -94.949673875014241, 29.298027115717865 ], [ -94.949579874879817, 29.297919115603175 ], [ -94.94964187493143, 29.297730115781246 ], [ -94.949735875212284, 29.29746011524713 ], [ -94.949735875395604, 29.297406115163191 ], [ -94.949704874970266, 29.297244115107407 ], [ -94.949828875780824, 29.297217115936846 ], [ -94.949860875009961, 29.297136115193663 ], [ -94.950078875475072, 29.297055115460513 ], [ -94.950265875778769, 29.297001115774101 ], [ -94.950358875144801, 29.296920115442411 ], [ -94.950404875773714, 29.296893115469427 ], [ -94.950462875703778, 29.29676011564737 ], [ -94.95058987536062, 29.296746115044101 ], [ -94.950852875849733, 29.296654115748112 ], [ -94.950911875814626, 29.296500115784358 ], [ -94.950969875834446, 29.296381115516684 ], [ -94.950920875363707, 29.29628911517824 ], [ -94.951067875288658, 29.296121115555277 ], [ -94.95126287611734, 29.29603711521677 ], [ -94.951582876077296, 29.296017115458657 ], [ -94.951603875852186, 29.296016115136023 ], [ -94.951720875547053, 29.295911114914443 ], [ -94.951810875319453, 29.295771115457097 ], [ -94.951854875724379, 29.295733115237642 ], [ -94.952019876025119, 29.295637115165526 ], [ -94.951963876321841, 29.295749115298566 ], [ -94.9522368755419, 29.295693115055123 ], [ -94.952203875970966, 29.295607115517772 ], [ -94.952158876030396, 29.295490114984617 ], [ -94.952275876194804, 29.295469115521364 ], [ -94.952373875505771, 29.295539115475218 ], [ -94.952431875472953, 29.295546115065985 ], [ -94.952509876395098, 29.2954761154054 ], [ -94.95274387569016, 29.295532114867832 ], [ -94.952773876563256, 29.295426114952409 ], [ -94.952860876286991, 29.295370115266422 ], [ -94.952870876479025, 29.295265115469402 ], [ -94.953131875718725, 29.295197115034192 ], [ -94.953221876152043, 29.295174115421425 ], [ -94.953660876003013, 29.294921114584408 ], [ -94.953923876370297, 29.294837115090985 ], [ -94.953972876447921, 29.294732114790829 ], [ -94.954147876227694, 29.29469011493795 ], [ -94.954035876812256, 29.29457311482857 ], [ -94.953941876372511, 29.294492115083369 ], [ -94.953910876431721, 29.294276115180363 ], [ -94.953972876533854, 29.29416811453402 ], [ -94.953910876744018, 29.293871114831113 ], [ -94.953910876110953, 29.293358114325184 ], [ -94.954003876382927, 29.293250114309654 ], [ -94.954221876500071, 29.293223114472564 ], [ -94.954377876662733, 29.293088114944705 ], [ -94.954408876358983, 29.292927114787865 ], [ -94.954564876163403, 29.292846114189892 ], [ -94.954595876677857, 29.292657114530758 ], [ -94.95478287642942, 29.292441114060445 ], [ -94.95496987613528, 29.29241411440066 ], [ -94.955094876410087, 29.29225211456486 ], [ -94.955324876457041, 29.292177114377491 ], [ -94.95468887628752, 29.291953114578806 ], [ -94.959904877404298, 29.287452113077777 ], [ -94.962629878188508, 29.28555011297772 ], [ -94.964301878119102, 29.285061112068011 ], [ -94.966050878644978, 29.284135111964989 ], [ -94.968268879394614, 29.283401111828027 ], [ -94.970040879979251, 29.281952112122816 ], [ -94.970856879983174, 29.282146112084494 ], [ -94.97069388046593, 29.281107111468604 ], [ -94.969395879425093, 29.28110711173634 ], [ -94.96920887917112, 29.281134111942709 ], [ -94.969055879225365, 29.281164111538178 ], [ -94.968941879566955, 29.281191111524361 ], [ -94.968859879727944, 29.281224111322732 ], [ -94.968709879708243, 29.281268111543103 ], [ -94.968616879704584, 29.281349111310806 ], [ -94.968460880028672, 29.281457111307031 ], [ -94.96808687942584, 29.281592111465759 ], [ -94.967899879351762, 29.281592111725725 ], [ -94.967650878924289, 29.281538111281023 ], [ -94.967276878902084, 29.281538112120021 ], [ -94.966809879542069, 29.281457111587777 ], [ -94.966746878662832, 29.281295111270197 ], [ -94.96685687877499, 29.281147111224637 ], [ -94.967218879388582, 29.280995111919299 ], [ -94.968031879668018, 29.280884111315284 ], [ -94.968772879111995, 29.280837111299725 ], [ -94.968959879795349, 29.280837111681741 ], [ -94.969145880160639, 29.280918111209655 ], [ -94.969270880011948, 29.280918111268054 ], [ -94.969582879671648, 29.280783111853591 ], [ -94.969706879386436, 29.28075611112661 ], [ -94.969831879667808, 29.280567111056421 ], [ -94.970080879526805, 29.280567111179394 ], [ -94.970267880163192, 29.280648111375132 ], [ -94.970547880323267, 29.280675111132677 ], [ -94.970766879696498, 29.280513111142163 ], [ -94.971046880302865, 29.280594111552439 ], [ -94.971295880442526, 29.280486111480659 ], [ -94.97157688029489, 29.280405111567564 ], [ -94.971825880410449, 29.280297111436575 ], [ -94.971918879939693, 29.280216111317131 ], [ -94.972323880108902, 29.280162111397097 ], [ -94.97244888052515, 29.280108111376986 ], [ -94.972448880196367, 29.279946110899523 ], [ -94.972542880360621, 29.279919111552029 ], [ -94.972573880279612, 29.280000111370441 ], [ -94.97263588016753, 29.280054111277348 ], [ -94.972760880487783, 29.27997311104502 ], [ -94.972802880642945, 29.279941111060324 ], [ -94.972978880956845, 29.279811110795833 ], [ -94.973040880672869, 29.279703110966043 ], [ -94.97338388113468, 29.279595110901031 ], [ -94.973694881166324, 29.279352111088258 ], [ -94.97397588057926, 29.279218111290092 ], [ -94.97413188111274, 29.279110110533654 ], [ -94.974255881314448, 29.279056111184779 ], [ -94.974411881036389, 29.27892111107748 ], [ -94.974660881239544, 29.278597111032475 ], [ -94.974878881184608, 29.278543111077767 ], [ -94.975034881195086, 29.278327110551214 ], [ -94.975190881499472, 29.278300111055739 ], [ -94.97531488127602, 29.278192110927918 ], [ -94.975719880850463, 29.277814110180461 ], [ -94.975844881421352, 29.277706110900386 ], [ -94.976125881021559, 29.277625110734352 ], [ -94.976249881638338, 29.277463110897664 ], [ -94.976374881234051, 29.277248110050799 ], [ -94.97649888175043, 29.277113110805779 ], [ -94.976561881864114, 29.276924110137198 ], [ -94.976623881738377, 29.276870110389183 ], [ -94.97665488167388, 29.276708110073734 ], [ -94.976748881847669, 29.276519110246632 ], [ -94.977215881553761, 29.276195110454331 ], [ -94.977246881201054, 29.276114110625805 ], [ -94.977620881346056, 29.275763109905562 ], [ -94.977783881221939, 29.275683109760308 ], [ -94.977838881541302, 29.275655110043573 ], [ -94.978212881293558, 29.27535910970871 ], [ -94.978679882371509, 29.275305110354608 ], [ -94.978711881550552, 29.275224109666695 ], [ -94.979053881597196, 29.275143109551969 ], [ -94.979084882088102, 29.275035110374237 ], [ -94.979271881550645, 29.274954109549238 ], [ -94.97927188235559, 29.274711109644553 ], [ -94.979334882402696, 29.27465710997242 ], [ -94.979427882472535, 29.274441109962922 ], [ -94.979552882210925, 29.274387109867838 ], [ -94.9797088820428, 29.274252109327794 ], [ -94.979957881648559, 29.274225109637772 ], [ -94.980081882283926, 29.274144109748676 ], [ -94.980268882068728, 29.274090109291212 ], [ -94.98036288209768, 29.273712109719455 ], [ -94.980549881939822, 29.273658109797832 ], [ -94.980580882498572, 29.273550109411591 ], [ -94.980891882855133, 29.273443109738199 ], [ -94.981078882128571, 29.273308109430971 ], [ -94.981141882569887, 29.273173109313984 ], [ -94.981172882695063, 29.272849109726639 ], [ -94.981297882579469, 29.272822109764256 ], [ -94.981515882818869, 29.272768109337733 ], [ -94.981639882321474, 29.272633109182301 ], [ -94.9816708824155, 29.272525109461036 ], [ -94.981826882691166, 29.272390109302354 ], [ -94.98185788265306, 29.272309109418568 ], [ -94.981982882727323, 29.272282108843342 ], [ -94.982013882353968, 29.272174109037397 ], [ -94.982200882336628, 29.272093108832799 ], [ -94.982231882705022, 29.271985109004458 ], [ -94.982356882200278, 29.271850109467184 ], [ -94.982418883083781, 29.271796109010292 ], [ -94.982854882594282, 29.271473109242386 ], [ -94.98288588249541, 29.271392109140969 ], [ -94.982948882678897, 29.271338108764297 ], [ -94.983072882868555, 29.271095108785378 ], [ -94.983104882656619, 29.270852108813376 ], [ -94.983353882652835, 29.270798108603021 ], [ -94.98366488270365, 29.270636108968812 ], [ -94.983820883172044, 29.270528109195769 ], [ -94.984194883134535, 29.270258108737295 ], [ -94.984537882768862, 29.269799109048591 ], [ -94.984630882954463, 29.269556108581458 ], [ -94.984755883274943, 29.269449108998426 ], [ -94.98488088320201, 29.269395108663026 ], [ -94.985098883460779, 29.269233108589937 ], [ -94.985253883477299, 29.269206108297901 ], [ -94.98544088330874, 29.268990108050527 ], [ -94.985565883050398, 29.268855108406516 ], [ -94.985658882890249, 29.26885510875378 ], [ -94.987138883763791, 29.26738710838606 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1618, "Tract": "48167722800", "Area_SqMi": 1.0000710693568686, "total_2009": 518, "total_2010": 497, "total_2011": 521, "total_2012": 904, "total_2013": 973, "total_2014": 915, "total_2015": 850, "total_2016": 885, "total_2017": 552, "total_2018": 528, "total_2019": 506, "total_2020": 531, "age1": 100, "age2": 264, "age3": 113, "earn1": 66, "earn2": 126, "earn3": 285, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 148, "naics_s05": 48, "naics_s06": 0, "naics_s07": 47, "naics_s08": 7, "naics_s09": 7, "naics_s10": 8, "naics_s11": 0, "naics_s12": 10, "naics_s13": 0, "naics_s14": 4, "naics_s15": 0, "naics_s16": 23, "naics_s17": 1, "naics_s18": 1, "naics_s19": 16, "naics_s20": 157, "race1": 367, "race2": 81, "race3": 3, "race4": 18, "race5": 0, "race6": 8, "ethnicity1": 347, "ethnicity2": 130, "edu1": 60, "edu2": 134, "edu3": 124, "edu4": 59, "Shape_Length": 24629.771223883261, "Shape_Area": 27880269.774927925, "total_2021": 483, "total_2022": 477 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.971886884038113, 29.378979131696401 ], [ -94.971874884647661, 29.378022131838414 ], [ -94.971873884466859, 29.377957131217183 ], [ -94.971862884358529, 29.377163130977234 ], [ -94.971855884666979, 29.376662131211969 ], [ -94.971847884238187, 29.376124131547158 ], [ -94.971820884224599, 29.373811131053507 ], [ -94.971794884389027, 29.371727130265501 ], [ -94.971743883664558, 29.368524129278505 ], [ -94.971718884464082, 29.366958129135543 ], [ -94.971712883642255, 29.366175128696202 ], [ -94.971706884281204, 29.365661129221653 ], [ -94.971689884147139, 29.364686128796304 ], [ -94.971669884263392, 29.36378212864177 ], [ -94.971651883517197, 29.362834128001204 ], [ -94.97163988332224, 29.361953127974335 ], [ -94.971626883427405, 29.36148112848419 ], [ -94.971633883869174, 29.361371128467386 ], [ -94.971632883229731, 29.360452128115774 ], [ -94.971614883871553, 29.359693127948951 ], [ -94.971599883166476, 29.35896212789493 ], [ -94.97159988321674, 29.358093127244651 ], [ -94.971217883516047, 29.358113127139536 ], [ -94.969688883377557, 29.358132127158974 ], [ -94.968677883188519, 29.358139127324336 ], [ -94.967964882162136, 29.358139127378568 ], [ -94.967154882528646, 29.358152127580851 ], [ -94.966642882348907, 29.358158127954127 ], [ -94.965683882556434, 29.358177127593326 ], [ -94.963649881714787, 29.358203128005162 ], [ -94.962346880760734, 29.358223127513259 ], [ -94.961031881288875, 29.35823612786487 ], [ -94.959709880852415, 29.358239128156292 ], [ -94.958392880581641, 29.35825512789469 ], [ -94.957307880297094, 29.358265127633857 ], [ -94.957040879592952, 29.35826512831412 ], [ -94.955739879770263, 29.358275127661351 ], [ -94.954418879472883, 29.358296127700712 ], [ -94.953096878457274, 29.358311128225875 ], [ -94.951788878610557, 29.358320128352759 ], [ -94.95099287796684, 29.358324127901643 ], [ -94.950945877801857, 29.358324128338726 ], [ -94.950844878511418, 29.358327128240926 ], [ -94.95061687813795, 29.358334128262491 ], [ -94.951674878545617, 29.359489128765446 ], [ -94.959607880912017, 29.368023130049405 ], [ -94.961597881540555, 29.370163129934095 ], [ -94.963606881616542, 29.372323130560083 ], [ -94.966983883125081, 29.375962131421009 ], [ -94.967599882892628, 29.376624131450047 ], [ -94.969818884098061, 29.379011131775552 ], [ -94.970031884059011, 29.37901013166627 ], [ -94.97010388370046, 29.37900913200901 ], [ -94.97023388452611, 29.379007131577875 ], [ -94.971886884038113, 29.378979131696401 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1619, "Tract": "48167721600", "Area_SqMi": 1.3240869338017003, "total_2009": 1037, "total_2010": 983, "total_2011": 1164, "total_2012": 1046, "total_2013": 1164, "total_2014": 1205, "total_2015": 1344, "total_2016": 1429, "total_2017": 1469, "total_2018": 1613, "total_2019": 1663, "total_2020": 1285, "age1": 498, "age2": 631, "age3": 273, "earn1": 462, "earn2": 534, "earn3": 406, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 57, "naics_s05": 81, "naics_s06": 1, "naics_s07": 40, "naics_s08": 42, "naics_s09": 0, "naics_s10": 9, "naics_s11": 21, "naics_s12": 86, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 69, "naics_s17": 28, "naics_s18": 866, "naics_s19": 51, "naics_s20": 51, "race1": 1131, "race2": 154, "race3": 12, "race4": 69, "race5": 2, "race6": 34, "ethnicity1": 1024, "ethnicity2": 378, "edu1": 199, "edu2": 258, "edu3": 266, "edu4": 181, "Shape_Length": 43876.359192924305, "Shape_Area": 36913277.516955487, "total_2021": 1290, "total_2022": 1402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.023046904886328, 29.549436164961723 ], [ -95.023086904548762, 29.549442165755245 ], [ -95.022978904883743, 29.549058165466992 ], [ -95.022797904676651, 29.548277165214785 ], [ -95.022578904874919, 29.54738116464145 ], [ -95.022317905017559, 29.546302164576495 ], [ -95.022264904834302, 29.546034164666132 ], [ -95.022204904836201, 29.545715164825346 ], [ -95.022040905049849, 29.544977164226239 ], [ -95.021578904515678, 29.54396016394735 ], [ -95.021493904206437, 29.543774164352492 ], [ -95.021178904422143, 29.543254164267008 ], [ -95.020827903979267, 29.542673163752145 ], [ -95.020616903627428, 29.542324164240217 ], [ -95.020056904269907, 29.541400164097723 ], [ -95.019852903347555, 29.541063163914895 ], [ -95.019509903484433, 29.540492163935888 ], [ -95.018871904025289, 29.539443163391621 ], [ -95.018149903189837, 29.538075162973392 ], [ -95.017189902677401, 29.536446162519727 ], [ -95.016074902561499, 29.534523162891933 ], [ -95.015693902748282, 29.533872162124112 ], [ -95.014760902593437, 29.532276161825674 ], [ -95.014268901693413, 29.531436162245093 ], [ -95.014019901673947, 29.531018162187518 ], [ -95.013683901697902, 29.530456161487361 ], [ -95.01256490164964, 29.52858016151923 ], [ -95.01242590097965, 29.528347161545039 ], [ -95.011784900711859, 29.527273160910411 ], [ -95.011270900663447, 29.526411160956684 ], [ -95.011213900832217, 29.526315160855852 ], [ -95.011171901242932, 29.526243160805212 ], [ -95.009911900152233, 29.524071160317607 ], [ -95.008275899565362, 29.521250159645795 ], [ -95.008172899939979, 29.521072159691265 ], [ -95.008141900167033, 29.521018160396931 ], [ -95.006486899064839, 29.518164159270714 ], [ -95.006126899315831, 29.517544159510738 ], [ -95.005146898930562, 29.51584915885244 ], [ -95.004962898421368, 29.515531158956765 ], [ -95.004502898886841, 29.514749158869904 ], [ -95.003790898563167, 29.513535158752003 ], [ -95.003681898527333, 29.513354158404638 ], [ -95.002222898388965, 29.510866157690227 ], [ -95.00166089767059, 29.509910157721503 ], [ -95.001504897277343, 29.509644157590468 ], [ -95.001051897550695, 29.508873157409276 ], [ -95.000040897705901, 29.509566157720169 ], [ -94.999282896879365, 29.510096158218811 ], [ -94.998450897232345, 29.510670157764505 ], [ -94.996792896684497, 29.511814158758543 ], [ -94.996073896211072, 29.51230615849132 ], [ -94.995654896197877, 29.512592158412808 ], [ -94.995097896366701, 29.512971158604536 ], [ -94.994540896633566, 29.513374158817676 ], [ -94.993853895525035, 29.513835159060164 ], [ -94.993768895901781, 29.513893158582007 ], [ -94.993736895472068, 29.513915158880728 ], [ -94.993380896313468, 29.51415315893151 ], [ -94.992932895836134, 29.514453158808461 ], [ -94.992717895423993, 29.514596159473108 ], [ -94.992623896133637, 29.514659159104305 ], [ -94.992301896099093, 29.51487215934695 ], [ -94.991917895573323, 29.515121159165883 ], [ -94.991462895553497, 29.51543015945175 ], [ -94.991352895086948, 29.515509159229168 ], [ -94.991072895707063, 29.515672159851849 ], [ -94.991041895302089, 29.515690159357209 ], [ -94.990603895696111, 29.516028159616223 ], [ -94.990358895674206, 29.516224159339913 ], [ -94.990112895535574, 29.516424159702957 ], [ -94.99009089553158, 29.516452159566317 ], [ -94.990028895122776, 29.51652715978808 ], [ -94.990010895208101, 29.516612159751158 ], [ -94.989663894638966, 29.517095160110724 ], [ -94.990435894977267, 29.517449159665819 ], [ -94.990621895386255, 29.517535160223769 ], [ -94.991578895640046, 29.517975160197057 ], [ -94.992496895698906, 29.51832315964268 ], [ -94.992737896281312, 29.518519160193431 ], [ -94.993159896534479, 29.518863159690831 ], [ -94.993432896161266, 29.519001159839039 ], [ -94.995159897078736, 29.520169160637362 ], [ -94.996231896827155, 29.520894160600548 ], [ -94.999448897455267, 29.523317160555106 ], [ -95.000165898373083, 29.52391116115313 ], [ -95.001281898503123, 29.524953161105113 ], [ -95.001695898999728, 29.525339160950367 ], [ -95.001737898820878, 29.525368161512528 ], [ -95.00176689806851, 29.525388161285797 ], [ -95.001863898642966, 29.525456160731455 ], [ -95.001906898983194, 29.525486160781767 ], [ -95.00191989809683, 29.525491161143034 ], [ -95.001960898133973, 29.525506160727403 ], [ -95.001995898283695, 29.525519160779634 ], [ -95.002125898983593, 29.525569160918128 ], [ -95.002180898612849, 29.5255901612163 ], [ -95.00238189885539, 29.525655161318294 ], [ -95.002653898944985, 29.525744161241015 ], [ -95.002896899117388, 29.525994161056158 ], [ -95.003004898651909, 29.526106161079692 ], [ -95.003055898637314, 29.526081161475993 ], [ -95.003102899298668, 29.526062161520247 ], [ -95.003149899214591, 29.526114161255425 ], [ -95.003395898861584, 29.52638416125129 ], [ -95.003478899319958, 29.526474161259742 ], [ -95.003516898554537, 29.526515160944292 ], [ -95.003630898595247, 29.526639161212064 ], [ -95.003668899110806, 29.526681161200454 ], [ -95.003790899022022, 29.526814161354103 ], [ -95.00415789902425, 29.527214161489656 ], [ -95.004280899605547, 29.5273481615768 ], [ -95.004360899364045, 29.527436161834139 ], [ -95.004602899068431, 29.527700161587333 ], [ -95.00468389967952, 29.527788161750308 ], [ -95.004813899812092, 29.527930161743789 ], [ -95.005205900036529, 29.528357161367126 ], [ -95.005336900005929, 29.528500161191726 ], [ -95.005593899358587, 29.528779161371016 ], [ -95.005673899822767, 29.528864161637692 ], [ -95.005879899895518, 29.529083161429956 ], [ -95.006288899789496, 29.529678161800305 ], [ -95.006504900261618, 29.529992162124877 ], [ -95.006575900450969, 29.530095162143599 ], [ -95.006658899490674, 29.530216162347866 ], [ -95.00679490022894, 29.530401162353044 ], [ -95.006869900080332, 29.530503162184267 ], [ -95.007219899684387, 29.530885162140788 ], [ -95.007362900583175, 29.53104116200695 ], [ -95.007430900334199, 29.53111516215359 ], [ -95.007714900108994, 29.531525161750945 ], [ -95.007982900609733, 29.53216116221509 ], [ -95.008396900515095, 29.532960162864239 ], [ -95.008430900931501, 29.533025162784124 ], [ -95.008773900895974, 29.533586162676748 ], [ -95.009203900604817, 29.534351162413802 ], [ -95.009306900809023, 29.534534163099678 ], [ -95.009475900749393, 29.534500162448563 ], [ -95.009618900681104, 29.534588162769982 ], [ -95.009961901310803, 29.534777162867371 ], [ -95.010223900620389, 29.534884163054048 ], [ -95.010521901610417, 29.535181162982923 ], [ -95.010677901454727, 29.535370162455617 ], [ -95.010938901750677, 29.535698162800401 ], [ -95.011098901075727, 29.535982163318902 ], [ -95.011304901097532, 29.536346163325586 ], [ -95.011290901511202, 29.53647916326516 ], [ -95.011414901599338, 29.536606162808781 ], [ -95.011518901468136, 29.536681163345801 ], [ -95.011539901243538, 29.536685162750366 ], [ -95.01173690197966, 29.53672016275404 ], [ -95.012531901448682, 29.536932163255404 ], [ -95.012573902042476, 29.536944163004449 ], [ -95.012740901593546, 29.537112162712347 ], [ -95.012755901345656, 29.537216162825217 ], [ -95.012931901948889, 29.537585163269835 ], [ -95.01300990236571, 29.537533163182612 ], [ -95.013208902441335, 29.537730163151281 ], [ -95.013543902288603, 29.53791516366978 ], [ -95.013886902618395, 29.538204163084728 ], [ -95.014104902335816, 29.538475163189567 ], [ -95.014217901846379, 29.538522162971955 ], [ -95.014514902579407, 29.538903163613419 ], [ -95.014589902021967, 29.53888916339908 ], [ -95.014610902508991, 29.538923163439275 ], [ -95.014953902823919, 29.539455163348087 ], [ -95.015116903012427, 29.539810163993831 ], [ -95.015162902372808, 29.53991116319639 ], [ -95.015302903009868, 29.540215163797637 ], [ -95.015349902334407, 29.540317164138269 ], [ -95.015395903149013, 29.540418164182331 ], [ -95.015506902745599, 29.540660164016959 ], [ -95.015528902198994, 29.540726163765804 ], [ -95.0155649026932, 29.540833163651794 ], [ -95.015581902392583, 29.540884164148494 ], [ -95.015632903218588, 29.541039163576905 ], [ -95.015649903266137, 29.541091163475517 ], [ -95.015687902785317, 29.541206163955373 ], [ -95.015713903177058, 29.541280163474561 ], [ -95.015818902637989, 29.541577163536299 ], [ -95.01585890253736, 29.541860164098189 ], [ -95.015886902436662, 29.542059164023474 ], [ -95.015944902869833, 29.542145163793752 ], [ -95.01595390260303, 29.542232164374465 ], [ -95.015965902974685, 29.542344164540477 ], [ -95.016005903245599, 29.542792164166304 ], [ -95.016008902799626, 29.542805164550384 ], [ -95.016054903050801, 29.542992164443486 ], [ -95.016108903314986, 29.543208164221618 ], [ -95.01612190319004, 29.543260163989626 ], [ -95.016046903130757, 29.543283164269827 ], [ -95.016083902893001, 29.543546164787287 ], [ -95.016141903138134, 29.543592164785224 ], [ -95.016095902528505, 29.543650164232336 ], [ -95.0161149025801, 29.543771164422857 ], [ -95.016151903055786, 29.543992164671423 ], [ -95.016152903308793, 29.54400316444454 ], [ -95.016236903369872, 29.544092164152953 ], [ -95.016246903391888, 29.544165164902481 ], [ -95.016285903439879, 29.544438164759402 ], [ -95.016361902767656, 29.544779164759156 ], [ -95.016372902769746, 29.544826164746631 ], [ -95.016408902792733, 29.544981164481737 ], [ -95.016385903227459, 29.54504316444746 ], [ -95.016398903095407, 29.545121164895161 ], [ -95.016415902953923, 29.545180164951134 ], [ -95.016462903266543, 29.545343164435348 ], [ -95.016537903671377, 29.545693165209446 ], [ -95.016583902692304, 29.545704165015877 ], [ -95.01658990335585, 29.545750164675976 ], [ -95.016600903038821, 29.545826164464394 ], [ -95.016641903367372, 29.545843165213316 ], [ -95.016618903438172, 29.545927164706793 ], [ -95.016674903565061, 29.545978165023456 ], [ -95.016687902847877, 29.546122164824119 ], [ -95.016718903698177, 29.546332164996649 ], [ -95.016815902898216, 29.546974165346505 ], [ -95.016846902893874, 29.547271164912953 ], [ -95.016894903477024, 29.547619165580521 ], [ -95.016955903093447, 29.548049165004144 ], [ -95.016945903779728, 29.548093164938091 ], [ -95.016914902931816, 29.548224165246992 ], [ -95.016905903309791, 29.548269165471861 ], [ -95.016821903704326, 29.548581165160982 ], [ -95.016743903296828, 29.548873165881634 ], [ -95.016435903675983, 29.550026165552591 ], [ -95.016523903496733, 29.550705166008221 ], [ -95.016605903420015, 29.551326165752215 ], [ -95.01663290382028, 29.5520871665105 ], [ -95.016643903605186, 29.552362166295222 ], [ -95.017011903335941, 29.553194165919813 ], [ -95.017459903406419, 29.55386616647095 ], [ -95.017651903402026, 29.55408516647606 ], [ -95.017683903613616, 29.554122166605026 ], [ -95.018211904136734, 29.554602166597782 ], [ -95.018228904028675, 29.554597166656958 ], [ -95.018812904215508, 29.554432166228313 ], [ -95.019571904194066, 29.55421816614535 ], [ -95.020421904107053, 29.553549166603339 ], [ -95.020547904216073, 29.553450166233304 ], [ -95.020831904621929, 29.553084166461275 ], [ -95.020883904469073, 29.553018166423897 ], [ -95.020888904177866, 29.552968166440468 ], [ -95.020928904801409, 29.552568165737064 ], [ -95.020941904123418, 29.55243616588335 ], [ -95.02094790474095, 29.552374165858883 ], [ -95.020523904296937, 29.551945166339397 ], [ -95.020061904140007, 29.551631166055461 ], [ -95.019841904264524, 29.551481165785411 ], [ -95.01887290425924, 29.550984165723609 ], [ -95.018039903922144, 29.550417165385895 ], [ -95.017778903572093, 29.550133165342061 ], [ -95.017408903753648, 29.549731165556242 ], [ -95.017389903192367, 29.549354165340571 ], [ -95.017367903697064, 29.54893716557109 ], [ -95.017359903490302, 29.54877016521186 ], [ -95.017414903204624, 29.548645165591932 ], [ -95.017465903747279, 29.548527165425675 ], [ -95.017598903738133, 29.548520165155786 ], [ -95.017741903483852, 29.548509165253638 ], [ -95.017797903701435, 29.548505165391767 ], [ -95.017853903648188, 29.54850016519342 ], [ -95.018023903965997, 29.548487165062973 ], [ -95.018720903370749, 29.548433165081615 ], [ -95.019421904524393, 29.548497164900525 ], [ -95.020504904510972, 29.548724164996592 ], [ -95.020951904356835, 29.548866165742123 ], [ -95.021182904840018, 29.548940165312008 ], [ -95.021359904704269, 29.549026165492126 ], [ -95.021508904509119, 29.549097165496864 ], [ -95.021520904247012, 29.549103165071159 ], [ -95.021582904901678, 29.549133165619143 ], [ -95.021622904387769, 29.549152165384275 ], [ -95.02166190441055, 29.549171165190259 ], [ -95.021773905179771, 29.549212165306219 ], [ -95.022191904677683, 29.549368165318167 ], [ -95.022274904359747, 29.549383165496113 ], [ -95.022476904480968, 29.549371164949704 ], [ -95.022531905028174, 29.549369165563892 ], [ -95.022572904672487, 29.549367164943469 ], [ -95.022611904544434, 29.549369165620252 ], [ -95.022703904582215, 29.549374165716262 ], [ -95.022913904857816, 29.549385165715002 ], [ -95.022994904759756, 29.549394165528263 ], [ -95.023046904886328, 29.549436164961723 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1620, "Tract": "48167723800", "Area_SqMi": 7.2138139472366287, "total_2009": 322, "total_2010": 280, "total_2011": 292, "total_2012": 327, "total_2013": 410, "total_2014": 404, "total_2015": 432, "total_2016": 500, "total_2017": 466, "total_2018": 568, "total_2019": 570, "total_2020": 507, "age1": 137, "age2": 272, "age3": 145, "earn1": 122, "earn2": 182, "earn3": 250, "naics_s01": 1, "naics_s02": 6, "naics_s03": 10, "naics_s04": 75, "naics_s05": 0, "naics_s06": 19, "naics_s07": 71, "naics_s08": 3, "naics_s09": 0, "naics_s10": 108, "naics_s11": 28, "naics_s12": 30, "naics_s13": 0, "naics_s14": 31, "naics_s15": 4, "naics_s16": 24, "naics_s17": 16, "naics_s18": 101, "naics_s19": 0, "naics_s20": 27, "race1": 453, "race2": 58, "race3": 6, "race4": 28, "race5": 1, "race6": 8, "ethnicity1": 422, "ethnicity2": 132, "edu1": 68, "edu2": 104, "edu3": 176, "edu4": 69, "Shape_Length": 166900.9753877598, "Shape_Area": 201108786.28299311, "total_2021": 530, "total_2022": 554 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.993321889199962, 29.351999125550243 ], [ -94.993229888917725, 29.351972125423529 ], [ -94.993167888668438, 29.351972125402767 ], [ -94.993105888425603, 29.351918125483301 ], [ -94.99297788847764, 29.351918125275734 ], [ -94.992856888940722, 29.351918125705609 ], [ -94.992762889219549, 29.351999125449968 ], [ -94.992482888705382, 29.352026125229528 ], [ -94.99223288834088, 29.352134125602074 ], [ -94.991765888191125, 29.35218812526114 ], [ -94.991516887944258, 29.352188125689377 ], [ -94.99101788814545, 29.351972125315818 ], [ -94.990977888379817, 29.351946125212418 ], [ -94.990643887880282, 29.351729125304388 ], [ -94.990519888261986, 29.351541125758494 ], [ -94.990457888610891, 29.351487125476439 ], [ -94.990425888224465, 29.35137912562875 ], [ -94.990270888436712, 29.351136125781913 ], [ -94.990202888033025, 29.351045125318635 ], [ -94.990017887628653, 29.350947125715862 ], [ -94.98986288781964, 29.350934125436385 ], [ -94.989241888195053, 29.350704124934584 ], [ -94.988961887413495, 29.350515125586295 ], [ -94.988899887374785, 29.350380125044286 ], [ -94.988798887275493, 29.350267125385752 ], [ -94.988712887636524, 29.350164125043957 ], [ -94.988556887719611, 29.349948124949169 ], [ -94.988369887886591, 29.349921125629656 ], [ -94.987902887713261, 29.349921125123899 ], [ -94.98759088713075, 29.35002912513372 ], [ -94.987465887670666, 29.350056125365239 ], [ -94.98742788680002, 29.350082124838398 ], [ -94.987376887117733, 29.350095125201598 ], [ -94.987326887592801, 29.350078125238969 ], [ -94.987274886902725, 29.350110125598814 ], [ -94.987217887077364, 29.350146125072492 ], [ -94.987196886999186, 29.350151125486793 ], [ -94.98715288684744, 29.350150125501191 ], [ -94.987102887723097, 29.350165124953207 ], [ -94.987018887430509, 29.350184125266662 ], [ -94.986936887097087, 29.350168125547786 ], [ -94.986889887088537, 29.350168124988741 ], [ -94.986852887184241, 29.350170125222505 ], [ -94.986787886654781, 29.350185125713057 ], [ -94.986709887296385, 29.350194124947063 ], [ -94.986600887061286, 29.350188125420619 ], [ -94.986515886894082, 29.350174125298583 ], [ -94.986481887396948, 29.350155125244012 ], [ -94.986441887003565, 29.350143125001082 ], [ -94.98639188748659, 29.350129125737485 ], [ -94.986305886590657, 29.350121125472789 ], [ -94.986257887350121, 29.350108125282432 ], [ -94.986210887384487, 29.350106125588532 ], [ -94.985690886432025, 29.349894125230058 ], [ -94.985409886415709, 29.349813125120264 ], [ -94.985191886439239, 29.349786124889722 ], [ -94.984817886309614, 29.349624125459258 ], [ -94.984288886325984, 29.349166125102357 ], [ -94.984038886669339, 29.348869124861984 ], [ -94.9838518858718, 29.348680125274807 ], [ -94.983805886730821, 29.348648125317517 ], [ -94.983720885760391, 29.348640125450132 ], [ -94.983652886386864, 29.348627125402817 ], [ -94.983579886061619, 29.348575125380425 ], [ -94.983501886459351, 29.348548125381356 ], [ -94.983477886041868, 29.348547124872869 ], [ -94.983433886544503, 29.348546125464736 ], [ -94.983298886275804, 29.348525125253712 ], [ -94.983161885949599, 29.348502125385281 ], [ -94.9830068857855, 29.348497125226704 ], [ -94.98297988588493, 29.348491124659443 ], [ -94.982852886216506, 29.348476124998442 ], [ -94.982765886270059, 29.348468124826329 ], [ -94.982605885608407, 29.348455125221413 ], [ -94.982445886016933, 29.348458124773689 ], [ -94.982429886164311, 29.348461125311864 ], [ -94.982357885708979, 29.348477125397544 ], [ -94.982323885424748, 29.348489125208321 ], [ -94.982294886386441, 29.348437124838842 ], [ -94.981883885843885, 29.348348125479099 ], [ -94.981795886245536, 29.348329124996425 ], [ -94.981670885805116, 29.34824812501623 ], [ -94.981421886168476, 29.348221124809669 ], [ -94.981110885516884, 29.348140124650257 ], [ -94.980860885614817, 29.348113124857267 ], [ -94.980736885559296, 29.348059124808728 ], [ -94.980549885663734, 29.348032125193015 ], [ -94.980331885855193, 29.347951124890532 ], [ -94.979832885417537, 29.347520125341845 ], [ -94.97967688524966, 29.347115124946313 ], [ -94.979552884931962, 29.347061124629366 ], [ -94.979116884938804, 29.347088124721882 ], [ -94.978991884869217, 29.347142124712541 ], [ -94.978804884639359, 29.347169124516725 ], [ -94.978711885010483, 29.347547125203501 ], [ -94.978617884933513, 29.347628125178367 ], [ -94.978430884524244, 29.347520124584484 ], [ -94.978399885129292, 29.34741212535544 ], [ -94.978274885298191, 29.347331124796021 ], [ -94.97827488528057, 29.347196124886203 ], [ -94.977682884625978, 29.347115124548242 ], [ -94.977402885061025, 29.347061125178332 ], [ -94.977371884815483, 29.346980125269546 ], [ -94.977246884147348, 29.346926125112507 ], [ -94.976748884021546, 29.34641312445779 ], [ -94.976634883993896, 29.346164124446865 ], [ -94.976476884492499, 29.346118124471058 ], [ -94.976062884290599, 29.345926125103727 ], [ -94.975938883694965, 29.345899124566937 ], [ -94.975905884451549, 29.345765124622716 ], [ -94.975743884030237, 29.345166124682084 ], [ -94.975846883751473, 29.344979124866548 ], [ -94.975875883639162, 29.344929124933103 ], [ -94.975969883671624, 29.344767124304596 ], [ -94.976093884559816, 29.344443124916022 ], [ -94.976093884369803, 29.343849124463866 ], [ -94.976031884307815, 29.343715124751959 ], [ -94.975969884393294, 29.343661124518128 ], [ -94.975875884436903, 29.343688124165709 ], [ -94.97584488422892, 29.343742124777314 ], [ -94.975797884192644, 29.343740124027338 ], [ -94.975776884130639, 29.343695124737454 ], [ -94.975504884354223, 29.343407123921395 ], [ -94.974962883721915, 29.343205124073712 ], [ -94.975003883508691, 29.34317512415398 ], [ -94.974972884241353, 29.343094124479553 ], [ -94.974754883518798, 29.343013124461834 ], [ -94.974683883861061, 29.343074124097196 ], [ -94.974544883353531, 29.34299112460117 ], [ -94.974384883272009, 29.342639124319152 ], [ -94.974512883593903, 29.342223123882636 ], [ -94.974624884039784, 29.341743124357336 ], [ -94.974607883372897, 29.341392124006966 ], [ -94.974447883304165, 29.341120124126167 ], [ -94.974143883482199, 29.340896123596728 ], [ -94.973679882951473, 29.340848123839205 ], [ -94.973199883148752, 29.340880124031969 ], [ -94.972671883411209, 29.340784124074389 ], [ -94.972143882834544, 29.340816124277008 ], [ -94.971675883282273, 29.340858123692563 ], [ -94.971625882559309, 29.340864123973024 ], [ -94.971360882722067, 29.34080112394836 ], [ -94.971106882690648, 29.340740124003371 ], [ -94.970767882295547, 29.34070412430059 ], [ -94.970575882325889, 29.34036812423469 ], [ -94.97065488206087, 29.340067123734702 ], [ -94.970626882040222, 29.34000612399468 ], [ -94.97062988226449, 29.339940123315834 ], [ -94.970654882671667, 29.339853124067762 ], [ -94.970738882396574, 29.339712124002848 ], [ -94.970743882279464, 29.339699124090192 ], [ -94.970751882600524, 29.339664123868108 ], [ -94.970790882051261, 29.339440123738825 ], [ -94.970800882481043, 29.339370123561995 ], [ -94.970815882267914, 29.339152123081551 ], [ -94.970783882630883, 29.339118123273686 ], [ -94.970740882589325, 29.339071123372275 ], [ -94.970623882421805, 29.338944123519713 ], [ -94.970402882807278, 29.33893612372178 ], [ -94.97011988211348, 29.338912123100112 ], [ -94.969831881830459, 29.338992123604498 ], [ -94.969731882159351, 29.338992123900169 ], [ -94.969654882407667, 29.33904612314387 ], [ -94.96960688183438, 29.33910912399719 ], [ -94.969537881886239, 29.339164123226791 ], [ -94.969444881948135, 29.33929612375108 ], [ -94.969378881745584, 29.339338124005607 ], [ -94.969272882658501, 29.33962412355541 ], [ -94.9692368823994, 29.339843123676744 ], [ -94.969179882449396, 29.340133124182039 ], [ -94.96914188238803, 29.34023312423534 ], [ -94.969122882024791, 29.340282123890585 ], [ -94.96908888226794, 29.340370124025025 ], [ -94.968964882161558, 29.340539123626023 ], [ -94.968770882052269, 29.340668123707868 ], [ -94.968643882084592, 29.340726123612182 ], [ -94.968628881634942, 29.340759123675021 ], [ -94.968207881431383, 29.340912124367364 ], [ -94.967912881591573, 29.340872123787399 ], [ -94.967776881957008, 29.340832123720482 ], [ -94.967764882166065, 29.340824123865843 ], [ -94.967710882131684, 29.340815123756339 ], [ -94.967617881654903, 29.340799124277215 ], [ -94.967519881423101, 29.340774123888355 ], [ -94.96740088153544, 29.340732123675576 ], [ -94.967372881284547, 29.340714124147308 ], [ -94.967297881435655, 29.340665123995141 ], [ -94.967220881824147, 29.34061012440629 ], [ -94.967116881293208, 29.34055812408771 ], [ -94.966984881171726, 29.340524124343318 ], [ -94.966931881411497, 29.340522124151072 ], [ -94.966793881144369, 29.340460124219984 ], [ -94.966597881690333, 29.340396124362005 ], [ -94.966521881680762, 29.340348123670736 ], [ -94.966482881278623, 29.340328123840969 ], [ -94.966395881398583, 29.340299124178824 ], [ -94.966317881215261, 29.340432124149068 ], [ -94.966286881678315, 29.340483124343766 ], [ -94.966240881239656, 29.340584124107814 ], [ -94.966038880882095, 29.340847124202739 ], [ -94.965841881576978, 29.341009124362252 ], [ -94.965683881717496, 29.34107212406542 ], [ -94.965544881306741, 29.341142123674292 ], [ -94.965416880958159, 29.341206124078596 ], [ -94.965232880906839, 29.341298123901453 ], [ -94.965033880806843, 29.341397123793264 ], [ -94.964961880857061, 29.341397124071246 ], [ -94.964814880783422, 29.341421124543157 ], [ -94.964676880832911, 29.341448124567869 ], [ -94.9645028809731, 29.341485124441046 ], [ -94.964396881134547, 29.34150812454607 ], [ -94.964292880490902, 29.34152612455863 ], [ -94.964238881302649, 29.341530124125843 ], [ -94.964117880750123, 29.341538124449105 ], [ -94.963977880682307, 29.341526124201852 ], [ -94.963898881299428, 29.341520124003541 ], [ -94.963886880517819, 29.341521124285972 ], [ -94.963744881152437, 29.341535124108997 ], [ -94.963673880568734, 29.341531124502762 ], [ -94.963612881226268, 29.341528124417586 ], [ -94.963542880913622, 29.3415171245002 ], [ -94.963492881158572, 29.341491123841021 ], [ -94.963446880722401, 29.341456124455654 ], [ -94.963413881171377, 29.341422124189695 ], [ -94.963390880347802, 29.341403123927591 ], [ -94.963362880582466, 29.341385124461727 ], [ -94.963316881169064, 29.3413791246386 ], [ -94.963300880232197, 29.341376124294687 ], [ -94.963187880782428, 29.341361124644493 ], [ -94.963155880424779, 29.341349124522996 ], [ -94.962995880807483, 29.341289123862456 ], [ -94.962903880174977, 29.341132124164513 ], [ -94.962772880879015, 29.341003124512465 ], [ -94.962621880717435, 29.340848124097139 ], [ -94.962606880328252, 29.340762124113937 ], [ -94.962535880882854, 29.340554123726289 ], [ -94.962562880161727, 29.340384123938886 ], [ -94.962682880631093, 29.340286123844429 ], [ -94.962730880227724, 29.34013812365599 ], [ -94.962751880920564, 29.340048123659844 ], [ -94.962855880575844, 29.339881123659971 ], [ -94.962977880146966, 29.339747123920453 ], [ -94.962980880882597, 29.339678124005047 ], [ -94.962996880958741, 29.339635124087224 ], [ -94.963008880150042, 29.339595124270044 ], [ -94.963021880391878, 29.339553124227589 ], [ -94.963025880221878, 29.339542123925863 ], [ -94.963016880748967, 29.339537124298005 ], [ -94.962981880114867, 29.339514124179253 ], [ -94.962911880699977, 29.339473123960431 ], [ -94.962746880588014, 29.339508124017431 ], [ -94.96269488034072, 29.339520123996802 ], [ -94.962575879950208, 29.33954812376103 ], [ -94.962461880319765, 29.339587124318349 ], [ -94.962259880547492, 29.339657123607555 ], [ -94.962060880290664, 29.339761123584406 ], [ -94.962048880660149, 29.339770123900124 ], [ -94.961959880435202, 29.339818123663406 ], [ -94.961941880402975, 29.339824123664918 ], [ -94.961889880369412, 29.339838124063728 ], [ -94.961874880439524, 29.339842123851149 ], [ -94.961787880349604, 29.339866123941754 ], [ -94.961681880316135, 29.33990112437009 ], [ -94.961607880297592, 29.339901123664905 ], [ -94.961575880408489, 29.339901123863296 ], [ -94.961360879702696, 29.339917124194098 ], [ -94.961160880036203, 29.339763124342632 ], [ -94.961209879659194, 29.339232123555799 ], [ -94.960979880241595, 29.33908812351001 ], [ -94.960706879853987, 29.339056123747721 ], [ -94.960431880111059, 29.339822123741698 ], [ -94.95997987955225, 29.340155124266836 ], [ -94.959536879505436, 29.340155124214288 ], [ -94.959394879200261, 29.339999123977503 ], [ -94.959242879139893, 29.339906124227678 ], [ -94.95918487916768, 29.339872124099777 ], [ -94.959070879831543, 29.339799123867632 ], [ -94.958958879395382, 29.339678124329687 ], [ -94.95892087901791, 29.339641123821831 ], [ -94.958869879402528, 29.33943512366179 ], [ -94.958813879580433, 29.339381124359512 ], [ -94.958719879396128, 29.339277124283168 ], [ -94.958606879152981, 29.339188123730015 ], [ -94.958450879744433, 29.339092123572598 ], [ -94.958242879602025, 29.339023124167287 ], [ -94.958147879069386, 29.338935123504143 ], [ -94.957976879758476, 29.338842123577592 ], [ -94.95784387949675, 29.338752123693084 ], [ -94.957689878822237, 29.338698124286864 ], [ -94.957514878898436, 29.338676123881541 ], [ -94.957418878789184, 29.33862112416449 ], [ -94.95724587881142, 29.338547123678293 ], [ -94.957131879007235, 29.338458124018722 ], [ -94.957035879360504, 29.33843912349338 ], [ -94.957019878833847, 29.338430123831202 ], [ -94.956939878701149, 29.338384123398701 ], [ -94.956893879234514, 29.338331124180339 ], [ -94.956845878468712, 29.338279124247205 ], [ -94.956809879281394, 29.338226123780231 ], [ -94.95671587936269, 29.338121123632888 ], [ -94.956569878896175, 29.338039124072001 ], [ -94.956486878711459, 29.337993123618844 ], [ -94.956392879017002, 29.337905123961743 ], [ -94.956276878345577, 29.337852123751013 ], [ -94.956043879051123, 29.337825124056486 ], [ -94.955908878555604, 29.337805123856381 ], [ -94.95579187827316, 29.337785123814466 ], [ -94.955714879101151, 29.337766124032832 ], [ -94.955567878476941, 29.337781123607765 ], [ -94.955346878594298, 29.337782123686303 ], [ -94.955075878685633, 29.337797123995557 ], [ -94.954935878122228, 29.337813124194639 ], [ -94.954673878282705, 29.337820123706759 ], [ -94.954528878745876, 29.337831123586042 ], [ -94.954393878628466, 29.337853123528639 ], [ -94.954219878507558, 29.337863123628459 ], [ -94.954056877941596, 29.337873123908906 ], [ -94.953846878355819, 29.337892123947487 ], [ -94.953671877951535, 29.337892123685307 ], [ -94.953428877895135, 29.337874123632567 ], [ -94.953167878017155, 29.337861123409361 ], [ -94.953010877730804, 29.337867124196666 ], [ -94.952847877748056, 29.337872123917066 ], [ -94.952664878180187, 29.337878123829515 ], [ -94.952615877408334, 29.337880124195166 ], [ -94.952445877258597, 29.337875124128182 ], [ -94.952088877961657, 29.337849123645277 ], [ -94.951797877610346, 29.337831124211021 ], [ -94.951658877231708, 29.337818123653673 ], [ -94.951514877615224, 29.33780712366022 ], [ -94.950644876945105, 29.33759412406117 ], [ -94.949680876870602, 29.337285123829506 ], [ -94.949588876521361, 29.337255124226466 ], [ -94.948018876890188, 29.336706123390289 ], [ -94.947853876083499, 29.336650123354129 ], [ -94.947660876373575, 29.336584124056326 ], [ -94.947230876723793, 29.336437123309313 ], [ -94.946982876136929, 29.336289123339203 ], [ -94.946772876501058, 29.336135124024963 ], [ -94.946455875832172, 29.335837123557841 ], [ -94.946083876504687, 29.335496123772934 ], [ -94.945777875437216, 29.335158123358585 ], [ -94.945463875542956, 29.334786123067659 ], [ -94.945278876068045, 29.33445912344169 ], [ -94.94513287561314, 29.334117123286919 ], [ -94.945063875645118, 29.333720122806952 ], [ -94.944983876139148, 29.333380122970283 ], [ -94.944966875864964, 29.333099122844512 ], [ -94.944972875908547, 29.332991123057024 ], [ -94.944980875357729, 29.33272912318985 ], [ -94.945009875263978, 29.332372122840557 ], [ -94.945074875204796, 29.332006122714521 ], [ -94.945116875678323, 29.331730122756429 ], [ -94.945775876138498, 29.331760122641491 ], [ -94.945117875564222, 29.32999512204897 ], [ -94.945100875353916, 29.329968122721514 ], [ -94.944760875622805, 29.32942812223143 ], [ -94.945095875780396, 29.329246122547257 ], [ -94.945348875859167, 29.329109121987251 ], [ -94.94593887551261, 29.328848121791175 ], [ -94.946419875586173, 29.328637121807599 ], [ -94.946456875566781, 29.328587121741315 ], [ -94.946575876321532, 29.32842812202917 ], [ -94.946746876352265, 29.328210122173282 ], [ -94.946875876444608, 29.328046121729965 ], [ -94.947064875475292, 29.327806122178128 ], [ -94.947241875581369, 29.327209121986474 ], [ -94.947536876428373, 29.326212121659911 ], [ -94.947151876126995, 29.324694121674415 ], [ -94.946936875781034, 29.323847121110646 ], [ -94.947101875547901, 29.323611120705031 ], [ -94.947285875545532, 29.323005121120541 ], [ -94.947309875865599, 29.322936120726688 ], [ -94.947002875497049, 29.322344120754302 ], [ -94.946220875684276, 29.321302120303688 ], [ -94.945513875383767, 29.3209941205509 ], [ -94.944871875076061, 29.32053312073548 ], [ -94.94474287462107, 29.318812120212822 ], [ -94.944341874724245, 29.318015120405281 ], [ -94.943024874561175, 29.317330119840339 ], [ -94.940502874221593, 29.316253119635935 ], [ -94.940374873694509, 29.315805119607166 ], [ -94.940438873688663, 29.314784119807527 ], [ -94.940261873765266, 29.314714119653882 ], [ -94.93966787311841, 29.314546119695869 ], [ -94.938902873212228, 29.313637119609897 ], [ -94.937459872883665, 29.31421911904388 ], [ -94.933664872285078, 29.314036119341868 ], [ -94.93263087197181, 29.313869119285688 ], [ -94.931573871724467, 29.313697119191104 ], [ -94.931039871253105, 29.313609119876585 ], [ -94.928604870546266, 29.313215119680443 ], [ -94.928050870696737, 29.313193119256617 ], [ -94.92767687022635, 29.313085119377877 ], [ -94.927458870137386, 29.312923119456737 ], [ -94.92705387002151, 29.312707119534657 ], [ -94.926773870543954, 29.312653119257973 ], [ -94.926554870317062, 29.312599119530347 ], [ -94.926368870108476, 29.312465119517341 ], [ -94.926305869907623, 29.312357119670988 ], [ -94.926181870027463, 29.312249119383974 ], [ -94.925838869735898, 29.312195119640073 ], [ -94.925807869832383, 29.312114119331699 ], [ -94.92549586995456, 29.312033119187287 ], [ -94.925215869257073, 29.311952118942834 ], [ -94.925028870123498, 29.311952119512927 ], [ -94.924747869694031, 29.311871119325559 ], [ -94.924405869507524, 29.311817119303349 ], [ -94.923906869329144, 29.311709119082561 ], [ -94.923408868883854, 29.311682119230902 ], [ -94.922722868626408, 29.311601119043896 ], [ -94.92234886857652, 29.311520119431229 ], [ -94.921943869141813, 29.311520119642957 ], [ -94.921445869157225, 29.31146611943921 ], [ -94.920728868025591, 29.311439119366828 ], [ -94.920448868775537, 29.311331119599579 ], [ -94.919731868399353, 29.311277119339934 ], [ -94.919482868153509, 29.311223119127821 ], [ -94.918921867613264, 29.311196118966119 ], [ -94.918734867495175, 29.311142119189157 ], [ -94.918173867625924, 29.311088119248502 ], [ -94.91773786761182, 29.311034119010593 ], [ -94.917644867777256, 29.311034119426331 ], [ -94.917083867616824, 29.310872119251687 ], [ -94.916771867703417, 29.310926119523234 ], [ -94.91652286774989, 29.310818119518938 ], [ -94.916055867468174, 29.310872119144829 ], [ -94.915992867273928, 29.310926119243778 ], [ -94.91586886696291, 29.310899119681881 ], [ -94.915276867141912, 29.310845119822616 ], [ -94.914808866744281, 29.310791119497452 ], [ -94.914497866968546, 29.310845119833118 ], [ -94.91396786718434, 29.310818119228497 ], [ -94.913780866991559, 29.310764119625752 ], [ -94.913219867022846, 29.310764119146768 ], [ -94.912628866668214, 29.310683119744901 ], [ -94.912503866374934, 29.31060211919403 ], [ -94.911755866238394, 29.31038711934001 ], [ -94.911506866310347, 29.310279119697679 ], [ -94.911381866295599, 29.310198119863074 ], [ -94.911257865878184, 29.310171119557499 ], [ -94.910976865648124, 29.310036119051453 ], [ -94.910791865563496, 29.309927119500117 ], [ -94.909662865788931, 29.309320119631575 ], [ -94.909264865450041, 29.309120119535425 ], [ -94.908730865477764, 29.308831119315943 ], [ -94.907990865470936, 29.308433119058055 ], [ -94.907829865342464, 29.308343119266745 ], [ -94.907767865043496, 29.308255119324258 ], [ -94.90767486476166, 29.308147119457242 ], [ -94.907552865381675, 29.308042119317047 ], [ -94.90730086536712, 29.307823118925178 ], [ -94.907082865087744, 29.307553118977314 ], [ -94.906957864691648, 29.307310118959567 ], [ -94.906926864578892, 29.307098118879647 ], [ -94.90686186518991, 29.306956118707379 ], [ -94.906775864395215, 29.306820119116967 ], [ -94.906645864470036, 29.306797118649939 ], [ -94.90664586480689, 29.306716118494986 ], [ -94.906694864772945, 29.306692118893803 ], [ -94.906864864386506, 29.306609119185385 ], [ -94.906832864404137, 29.30647411860669 ], [ -94.906552865009971, 29.306447118701822 ], [ -94.906517864528965, 29.306417119229561 ], [ -94.906264865064372, 29.306020118326114 ], [ -94.906217864734487, 29.305946118302291 ], [ -94.906168864929811, 29.305502118946297 ], [ -94.906152864424698, 29.305441118299616 ], [ -94.90613086443679, 29.305351118364179 ], [ -94.906122864937842, 29.305324118944085 ], [ -94.906088864795407, 29.305217118869912 ], [ -94.906072864266619, 29.305165118931765 ], [ -94.906072864107145, 29.305075118907652 ], [ -94.906077864823104, 29.304998118436146 ], [ -94.906086864459013, 29.304823118456593 ], [ -94.905955863947995, 29.304687118342912 ], [ -94.905904864820812, 29.304614118595421 ], [ -94.905892864719888, 29.304597118443958 ], [ -94.90591386393794, 29.304582118082003 ], [ -94.905941864564483, 29.304562118548606 ], [ -94.905930864568319, 29.304535118197812 ], [ -94.905898863912228, 29.304450118298774 ], [ -94.905804863968243, 29.304315118349379 ], [ -94.905680864102607, 29.304180118321334 ], [ -94.905651864264215, 29.304056117934604 ], [ -94.905617863849841, 29.303910118146277 ], [ -94.905680864040747, 29.303802118495316 ], [ -94.905617864054435, 29.303748118608127 ], [ -94.90549386429268, 29.303802118300226 ], [ -94.905430864757392, 29.303856118038301 ], [ -94.905275863698591, 29.303775118239148 ], [ -94.905472864746315, 29.303646118303387 ], [ -94.90564886420502, 29.303532118337021 ], [ -94.905698864769846, 29.303487118355392 ], [ -94.905804863903924, 29.303397118275445 ], [ -94.905816864505368, 29.303322118548842 ], [ -94.905809864725583, 29.303225118545431 ], [ -94.905835864245503, 29.303208118347598 ], [ -94.905835863803972, 29.303073118258038 ], [ -94.905742864014002, 29.302965118579625 ], [ -94.905711864046864, 29.30288411834016 ], [ -94.905617864551715, 29.302911117758573 ], [ -94.90552486436728, 29.302992117851982 ], [ -94.905181863660502, 29.302992118579255 ], [ -94.905524864651611, 29.302690118091249 ], [ -94.905624864185469, 29.302433117584837 ], [ -94.905663864039482, 29.302311117975272 ], [ -94.905789864114681, 29.302137118397603 ], [ -94.90598986449676, 29.301784117991602 ], [ -94.906152864433494, 29.30175211809394 ], [ -94.906303864758939, 29.301751118156051 ], [ -94.906490863980977, 29.301724117841104 ], [ -94.906614864705773, 29.301454117932881 ], [ -94.906612864368512, 29.301445118109832 ], [ -94.906552864617808, 29.301238117972371 ], [ -94.906334864225769, 29.301049118102618 ], [ -94.906052864234084, 29.300666117891307 ], [ -94.906303863888994, 29.300510117275628 ], [ -94.906427863876914, 29.300537117189911 ], [ -94.906490864043903, 29.300645117533062 ], [ -94.906583864538675, 29.300753117690117 ], [ -94.906770864174888, 29.300914117505165 ], [ -94.906864864360529, 29.301022117429245 ], [ -94.907082864607503, 29.301211117303932 ], [ -94.907019864399629, 29.301319117561324 ], [ -94.906926864630975, 29.301481117900508 ], [ -94.906832864039643, 29.301805117695849 ], [ -94.906895864325307, 29.301940118167629 ], [ -94.907228865081279, 29.302045118098192 ], [ -94.907269864474216, 29.302129118079911 ], [ -94.907611864972225, 29.302129117498026 ], [ -94.907642864961758, 29.301994117952344 ], [ -94.907674864582134, 29.30177811817763 ], [ -94.907736864557236, 29.30172411746765 ], [ -94.907674864805159, 29.301643118155734 ], [ -94.907736865003073, 29.301481117791678 ], [ -94.907736864760551, 29.301130117515648 ], [ -94.907674864891462, 29.300968117976659 ], [ -94.907611864177198, 29.300833117854367 ], [ -94.907549864183807, 29.300779117915912 ], [ -94.907518864626894, 29.300672117214344 ], [ -94.90745686477986, 29.300618117231451 ], [ -94.907424865021042, 29.300537117401475 ], [ -94.907362864276408, 29.300483117342353 ], [ -94.907237864798688, 29.300348117729815 ], [ -94.906988864946882, 29.300105117555187 ], [ -94.907019864126241, 29.299997117560714 ], [ -94.907237865005669, 29.299862117279744 ], [ -94.907393865027998, 29.299997117492079 ], [ -94.907549864696065, 29.300186117340619 ], [ -94.907642864374409, 29.300213117407687 ], [ -94.9078928644646, 29.300375117893172 ], [ -94.908172864730076, 29.300375117874694 ], [ -94.908858865360259, 29.300429117649912 ], [ -94.909138865276702, 29.300510117571051 ], [ -94.90963686507142, 29.300564117761766 ], [ -94.909761865338396, 29.300564117785857 ], [ -94.909855865645483, 29.300726117133962 ], [ -94.909855864931629, 29.300860117591963 ], [ -94.909512865653966, 29.30086011754063 ], [ -94.909107865041236, 29.300833117736438 ], [ -94.908920865270417, 29.300806117302905 ], [ -94.908546865014841, 29.300672117617427 ], [ -94.90823486451319, 29.300672117206794 ], [ -94.908172864612368, 29.301049117626718 ], [ -94.908110864425481, 29.301319117828783 ], [ -94.908858865187767, 29.301373118139267 ], [ -94.909169865093119, 29.301400117388056 ], [ -94.909294865504748, 29.301454117629685 ], [ -94.909792864787661, 29.301508117975036 ], [ -94.910010864813245, 29.301616118124223 ], [ -94.910010864846939, 29.301724117712226 ], [ -94.909730865235218, 29.30180511735394 ], [ -94.909294864909185, 29.301805117700454 ], [ -94.909013864766621, 29.301751117703734 ], [ -94.908764865134955, 29.301724117679029 ], [ -94.908203865197962, 29.301616117521395 ], [ -94.908110864658227, 29.301643117692365 ], [ -94.908079865101726, 29.301751117883917 ], [ -94.907954865112615, 29.30207511799475 ], [ -94.907985865043202, 29.302210117496575 ], [ -94.908381864682994, 29.302295117513882 ], [ -94.908608864942707, 29.302345117530141 ], [ -94.908733865359778, 29.302345117552466 ], [ -94.909636864957804, 29.302372117483493 ], [ -94.909668864943669, 29.302453117600795 ], [ -94.909730864936193, 29.302507118282378 ], [ -94.909761865575064, 29.302615117865706 ], [ -94.909886865423104, 29.302696117816613 ], [ -94.909979865349555, 29.302669118183729 ], [ -94.910010865239514, 29.302561117627722 ], [ -94.910104865206222, 29.30253411788145 ], [ -94.910135865718573, 29.302453117663031 ], [ -94.910322865329078, 29.302372117618006 ], [ -94.910291865257179, 29.302102117936585 ], [ -94.910291865606709, 29.302048118161412 ], [ -94.910353865323344, 29.301994118072493 ], [ -94.91035386573212, 29.301589117425291 ], [ -94.910228865836118, 29.301508117867812 ], [ -94.910291865793681, 29.30140011799633 ], [ -94.910322865815345, 29.301319117721523 ], [ -94.910478865561117, 29.301292117442493 ], [ -94.910447865595742, 29.301184118037302 ], [ -94.910166865627289, 29.301130117727347 ], [ -94.910166865239532, 29.301049117571008 ], [ -94.910322865281856, 29.300914117906334 ], [ -94.9104158655704, 29.300887117124166 ], [ -94.910291865774994, 29.300672117098497 ], [ -94.910104865441212, 29.300591117604277 ], [ -94.909979865449074, 29.300240117834452 ], [ -94.909325865501629, 29.300159117221668 ], [ -94.9090768649843, 29.300051117447815 ], [ -94.90913886455769, 29.299916117739365 ], [ -94.909263865562778, 29.299889117013183 ], [ -94.909294865058214, 29.299673116932738 ], [ -94.909356864892402, 29.299619117320869 ], [ -94.909387865545156, 29.299511116895086 ], [ -94.909636865037513, 29.299538117726826 ], [ -94.909730865618812, 29.299754117042095 ], [ -94.909823865244348, 29.299889117009752 ], [ -94.910104864958711, 29.29991611779954 ], [ -94.910166864909314, 29.300078117040194 ], [ -94.910322864865208, 29.300051117001946 ], [ -94.910447865766784, 29.299997117526054 ], [ -94.910571865254738, 29.29997011737569 ], [ -94.910727865101336, 29.299862117627114 ], [ -94.910852865559107, 29.299808117770375 ], [ -94.911007865779595, 29.299808117340852 ], [ -94.911163866058928, 29.299754116904431 ], [ -94.911225865897123, 29.299673117010464 ], [ -94.911506865571212, 29.299754117346446 ], [ -94.911755865268006, 29.29980811724349 ], [ -94.911817865909072, 29.299754117453841 ], [ -94.911880865541363, 29.299457117201303 ], [ -94.911880865602555, 29.298998116801968 ], [ -94.911786865867853, 29.298810117138942 ], [ -94.911693865422052, 29.298486117022861 ], [ -94.911475865362746, 29.298405117065773 ], [ -94.91141286574863, 29.298351117168792 ], [ -94.911755865510202, 29.298189116846903 ], [ -94.91194286549154, 29.298135116924016 ], [ -94.912160865403948, 29.298135116896823 ], [ -94.912222866064624, 29.298351116765996 ], [ -94.912191865699086, 29.298459116871452 ], [ -94.912160866014261, 29.2988101173605 ], [ -94.912098865858979, 29.299052117512872 ], [ -94.912160866103378, 29.299106117122481 ], [ -94.912129865652773, 29.299322116763207 ], [ -94.912098865461971, 29.29948411752909 ], [ -94.912067866213476, 29.299835117076299 ], [ -94.912067865878029, 29.299997117289255 ], [ -94.912191865379214, 29.300186117436358 ], [ -94.912254865502589, 29.300240116920182 ], [ -94.912347866136969, 29.300483117273618 ], [ -94.912472866349475, 29.300564117562804 ], [ -94.912503865777367, 29.300645117001789 ], [ -94.912690865448837, 29.300779117845813 ], [ -94.912752866020753, 29.300833117135817 ], [ -94.912843865819909, 29.300859117756744 ], [ -94.912939866110179, 29.300887117920588 ], [ -94.912975865984677, 29.300857117240028 ], [ -94.913095866569606, 29.300753117328604 ], [ -94.913095866210526, 29.300537117409224 ], [ -94.913251865623636, 29.300402117141765 ], [ -94.913531866563559, 29.300321117561619 ], [ -94.913593866515598, 29.300024117635182 ], [ -94.913500866090075, 29.299808117642982 ], [ -94.9131888659102, 29.299727116922632 ], [ -94.912970865770589, 29.29972711692049 ], [ -94.912659865753469, 29.299673117033858 ], [ -94.912690865632612, 29.299484117628843 ], [ -94.913313865648647, 29.299484116990666 ], [ -94.913500866475445, 29.29932211716951 ], [ -94.913469866577501, 29.299025117112155 ], [ -94.913344866001154, 29.298836117271229 ], [ -94.912783866157199, 29.298810116617954 ], [ -94.912721865996133, 29.298648116855901 ], [ -94.912908866233977, 29.298594117386052 ], [ -94.91318886653066, 29.298648116687822 ], [ -94.913531866277523, 29.298648116559015 ], [ -94.913749866011699, 29.298567116519624 ], [ -94.913905866651518, 29.298324116998515 ], [ -94.913718866289415, 29.298027117137725 ], [ -94.913219865649225, 29.297919116762131 ], [ -94.912970865795231, 29.297919116526771 ], [ -94.912877865925978, 29.29783811675097 ], [ -94.912970865696494, 29.297757117200319 ], [ -94.913188865650142, 29.297703116650453 ], [ -94.913687865657337, 29.297595117200569 ], [ -94.913874865764924, 29.297514117009733 ], [ -94.913967865874667, 29.297622116417941 ], [ -94.914030866468465, 29.297784116438486 ], [ -94.914092865861662, 29.297973116772777 ], [ -94.914092865788078, 29.297997116862398 ], [ -94.914092865820507, 29.298513117013421 ], [ -94.914030866726861, 29.298621116706105 ], [ -94.913936866328967, 29.298836117379089 ], [ -94.91387486607816, 29.299025117048377 ], [ -94.913811865807133, 29.299079116920243 ], [ -94.913749865896904, 29.299295116874056 ], [ -94.913687866510699, 29.299619117219386 ], [ -94.91378086582742, 29.29986211737069 ], [ -94.914000865881491, 29.299891116998637 ], [ -94.914185866185491, 29.299916116930149 ], [ -94.914372865982344, 29.29983511684312 ], [ -94.914497865982455, 29.299619117118159 ], [ -94.914497866479223, 29.299484117339464 ], [ -94.914559866631549, 29.29937611747426 ], [ -94.914684865899915, 29.299052117189625 ], [ -94.914746866622764, 29.29894411726254 ], [ -94.914777866829439, 29.298810116703162 ], [ -94.914840866447889, 29.298648116898139 ], [ -94.914871866141567, 29.29840511644419 ], [ -94.914871866588513, 29.298025116608699 ], [ -94.914871866183361, 29.297757116833179 ], [ -94.914808866279287, 29.297703116762932 ], [ -94.914808866366485, 29.297568116948344 ], [ -94.914746866866608, 29.297433116714835 ], [ -94.914871866216714, 29.297379116807754 ], [ -94.916086867195887, 29.297379117086027 ], [ -94.916616867250042, 29.297433116269062 ], [ -94.916678866801163, 29.297433116718256 ], [ -94.916678866622377, 29.297541117050187 ], [ -94.916616866413747, 29.297811116972873 ], [ -94.916553866484762, 29.297811116569591 ], [ -94.916460867076566, 29.297730116679318 ], [ -94.915805866219884, 29.297703116550764 ], [ -94.91561986656933, 29.297649116859837 ], [ -94.915338866234777, 29.297703116735121 ], [ -94.91515186644142, 29.297946116371978 ], [ -94.915174866666803, 29.298036116463056 ], [ -94.915213866091449, 29.298189116761442 ], [ -94.915400866164973, 29.298351117299529 ], [ -94.915619866875033, 29.298405116705027 ], [ -94.916397866864756, 29.298405116723348 ], [ -94.916460866377804, 29.298621116931614 ], [ -94.915681866286704, 29.298702116536194 ], [ -94.915276866311714, 29.298729116931021 ], [ -94.915193866760305, 29.298759116963677 ], [ -94.915058866518763, 29.298810116726781 ], [ -94.915058866903863, 29.2991671168237 ], [ -94.915058866985589, 29.299268117241617 ], [ -94.915182866727079, 29.299403117475322 ], [ -94.915463866406469, 29.299484117533542 ], [ -94.915625866278688, 29.299432116795369 ], [ -94.915805866581422, 29.299376116638602 ], [ -94.916024866663747, 29.299349117062775 ], [ -94.916086866764061, 29.299295117152482 ], [ -94.916429866928311, 29.299268117340478 ], [ -94.916771867233933, 29.29926811704054 ], [ -94.916927866680794, 29.299484117478631 ], [ -94.916865866945116, 29.299538116876562 ], [ -94.916553866535111, 29.299538116856009 ], [ -94.915961867102268, 29.299673117410769 ], [ -94.915803867146096, 29.299710117087269 ], [ -94.915619866983775, 29.299754117515189 ], [ -94.915432866929493, 29.299754117470979 ], [ -94.915276866247225, 29.299862117122615 ], [ -94.915089866285072, 29.300024117585714 ], [ -94.915120867063493, 29.300321117099244 ], [ -94.915218866704961, 29.300389117094458 ], [ -94.915276866361722, 29.300429117345548 ], [ -94.915369867051041, 29.30045611740487 ], [ -94.915432866884899, 29.300510117126485 ], [ -94.915556866859831, 29.300537117511205 ], [ -94.915743866284828, 29.300537117318576 ], [ -94.915930866940329, 29.300456116890015 ], [ -94.916148866415909, 29.300294117389853 ], [ -94.916174866875267, 29.300288117638708 ], [ -94.916273866776592, 29.300267117343303 ], [ -94.916335867300944, 29.300213117324198 ], [ -94.916896866666121, 29.300159117593161 ], [ -94.917176867397842, 29.3002401176565 ], [ -94.917363867139713, 29.300321117004739 ], [ -94.917488867497809, 29.300510117266647 ], [ -94.917675866914024, 29.300591117044839 ], [ -94.917831866885194, 29.300726117222574 ], [ -94.917706866861224, 29.300779116847153 ], [ -94.917332867581109, 29.300833117654022 ], [ -94.916989866802581, 29.300753117308382 ], [ -94.916927867241313, 29.300699117375942 ], [ -94.916834866985965, 29.300672117533264 ], [ -94.916802867109652, 29.3005911174685 ], [ -94.916678867345283, 29.300537117059033 ], [ -94.916616867049697, 29.300483116948925 ], [ -94.916331866508287, 29.300532117537081 ], [ -94.916304866545516, 29.30053711703475 ], [ -94.91614886658968, 29.300726117728832 ], [ -94.91617986688955, 29.301076117074615 ], [ -94.91630486722471, 29.301130117870883 ], [ -94.916335866729284, 29.301211117220323 ], [ -94.916460866907954, 29.301238117559389 ], [ -94.91649186653251, 29.301319117773144 ], [ -94.916678866779975, 29.30134611745008 ], [ -94.916865867117167, 29.301427117452295 ], [ -94.917426867211489, 29.301481117389297 ], [ -94.91795586719573, 29.301400117338204 ], [ -94.918080867129717, 29.301400117652932 ], [ -94.918205867630718, 29.301481117813793 ], [ -94.918329867247849, 29.301535117635826 ], [ -94.918485867699687, 29.301589117038585 ], [ -94.918578867954253, 29.30169711742834 ], [ -94.918610867343901, 29.301859117820882 ], [ -94.918983867304561, 29.301805117076462 ], [ -94.919027867477865, 29.301797117832493 ], [ -94.919173867692265, 29.301723117762382 ], [ -94.919229867212749, 29.301695117797681 ], [ -94.919295867316677, 29.30162211696463 ], [ -94.919392867870073, 29.301508117332723 ], [ -94.91938486729164, 29.301419116993362 ], [ -94.91881186802334, 29.300886116901573 ], [ -94.91906786717152, 29.300712117149963 ], [ -94.919457867653861, 29.301135116889792 ], [ -94.919584868247966, 29.301222116901695 ], [ -94.919965867661318, 29.301316117105813 ], [ -94.920163867794628, 29.301289117388997 ], [ -94.920510867651856, 29.301076117495672 ], [ -94.920683867654418, 29.301054117140843 ], [ -94.920732867814351, 29.301005117560305 ], [ -94.921154867784935, 29.300892117429857 ], [ -94.922198868701685, 29.301296117090729 ], [ -94.922364868022314, 29.30130311730132 ], [ -94.922669868554749, 29.301148117346223 ], [ -94.922909868857047, 29.300995116766462 ], [ -94.923000868872023, 29.300916116849518 ], [ -94.923012868182681, 29.300874117510386 ], [ -94.923065868564748, 29.300645117365637 ], [ -94.923034869088042, 29.300537116775779 ], [ -94.922722868216354, 29.300240116767217 ], [ -94.922442868355603, 29.300294117129901 ], [ -94.922337868609617, 29.300377117206708 ], [ -94.922099868625338, 29.300564116706155 ], [ -94.921788868761055, 29.30045611705312 ], [ -94.921663868596113, 29.300402116943602 ], [ -94.921445868201715, 29.300267116879915 ], [ -94.920946868185027, 29.300159117147203 ], [ -94.920759867673766, 29.3000511171882 ], [ -94.920417867696671, 29.299754116695013 ], [ -94.920230868336077, 29.299565116969358 ], [ -94.920136868145889, 29.299457116898754 ], [ -94.920074868122654, 29.299349116977396 ], [ -94.920012867857295, 29.299295116664421 ], [ -94.919731868136594, 29.298944117162524 ], [ -94.919762867699689, 29.29867511693077 ], [ -94.919887867845645, 29.298432116750377 ], [ -94.91990686792424, 29.298331116290953 ], [ -94.919918867682796, 29.298270116332642 ], [ -94.920199868236992, 29.298324116992301 ], [ -94.920199867688495, 29.298432116283216 ], [ -94.920143867664635, 29.29852811702327 ], [ -94.920136867791811, 29.298540116892546 ], [ -94.920074868227019, 29.298944116444915 ], [ -94.920199867596338, 29.299052116855819 ], [ -94.920884867587418, 29.299781116769456 ], [ -94.921009868222129, 29.29986211702693 ], [ -94.921632868594841, 29.299997116710504 ], [ -94.922006868810925, 29.300159116929805 ], [ -94.922051868487443, 29.300149116727624 ], [ -94.922130868105484, 29.300132116953211 ], [ -94.922286868510056, 29.299862116986517 ], [ -94.922255867869438, 29.299781117295403 ], [ -94.922193868287408, 29.299727117160266 ], [ -94.922130867896243, 29.299619116574796 ], [ -94.92188186835709, 29.299403116575352 ], [ -94.921601868618509, 29.299133116477684 ], [ -94.921382867721348, 29.298998117207191 ], [ -94.921133867914875, 29.298998116939043 ], [ -94.92063586780057, 29.298917116883942 ], [ -94.920572868371593, 29.29878311652174 ], [ -94.920666867551461, 29.298621117148933 ], [ -94.920946867683355, 29.298648116920301 ], [ -94.92156986841394, 29.298729116628081 ], [ -94.921725868180474, 29.298783116835519 ], [ -94.922037868308067, 29.299133116872362 ], [ -94.922504868842012, 29.299592117274429 ], [ -94.922535868539214, 29.299700117131323 ], [ -94.92262986837396, 29.299727117361016 ], [ -94.922660868265012, 29.299808116934386 ], [ -94.922753868062713, 29.299835117196857 ], [ -94.922816868250052, 29.299943116551706 ], [ -94.923034868701706, 29.300105117306725 ], [ -94.923221868351845, 29.300186117338047 ], [ -94.923283868753003, 29.300240116992008 ], [ -94.923750869230645, 29.300375116958911 ], [ -94.923937868607027, 29.300348116786097 ], [ -94.924124868977856, 29.300105117174322 ], [ -94.924280868943669, 29.299889117309132 ], [ -94.92440586843901, 29.299862116919567 ], [ -94.924436868598647, 29.299754117080457 ], [ -94.924560869403834, 29.299592116441151 ], [ -94.924529869416958, 29.299295116333539 ], [ -94.924218868436782, 29.299079116765057 ], [ -94.923937868847787, 29.298998116361304 ], [ -94.923532868825845, 29.299025116503458 ], [ -94.923532868507209, 29.299241116677436 ], [ -94.923750868366113, 29.299484117008628 ], [ -94.923657868846192, 29.299700116951914 ], [ -94.923563869017883, 29.299700116797574 ], [ -94.923501869223912, 29.299565116541288 ], [ -94.923408868445364, 29.299538116767774 ], [ -94.92306586838825, 29.299133116925798 ], [ -94.923003868771445, 29.299079117162226 ], [ -94.922816868111454, 29.298890116597281 ], [ -94.922753868613526, 29.298836116837371 ], [ -94.922504868130716, 29.29856711688684 ], [ -94.922847868638314, 29.298513116704704 ], [ -94.922971868395408, 29.298729116512881 ], [ -94.923688868267135, 29.298648117080365 ], [ -94.924000869107701, 29.298702116354225 ], [ -94.924249869207543, 29.298783116550197 ], [ -94.924405868796754, 29.298890116389767 ], [ -94.924560868969579, 29.298944116990494 ], [ -94.924623869449874, 29.298998116798071 ], [ -94.924779869114161, 29.299106116554167 ], [ -94.924903869070235, 29.299160116596777 ], [ -94.924923868765134, 29.299177116531094 ], [ -94.924965868672203, 29.299214116347216 ], [ -94.925184869242457, 29.299133116713026 ], [ -94.925246869020242, 29.299646116697868 ], [ -94.925464868733357, 29.299781116749426 ], [ -94.925838868856204, 29.299781116441217 ], [ -94.92602586986952, 29.299700116598434 ], [ -94.926149869333358, 29.299700116776503 ], [ -94.926212869821597, 29.299808117140852 ], [ -94.926056869444551, 29.299943116645412 ], [ -94.925869869286387, 29.300132116570303 ], [ -94.925402868976178, 29.300213116883253 ], [ -94.925059868677693, 29.29991611712239 ], [ -94.924716868959621, 29.299916117223116 ], [ -94.924498868539033, 29.299997116910617 ], [ -94.924405869101037, 29.300213117328468 ], [ -94.924311869297952, 29.300375117338788 ], [ -94.92437486906411, 29.300591116823114 ], [ -94.924716868587197, 29.300860116914453 ], [ -94.92530886933335, 29.300860116780534 ], [ -94.926056869142556, 29.300753117030066 ], [ -94.926118869771955, 29.300699117134712 ], [ -94.92633686914111, 29.300672117016227 ], [ -94.926492869189289, 29.30056411738482 ], [ -94.926679869971267, 29.300348117312399 ], [ -94.926741869977903, 29.30024011668581 ], [ -94.926835869995543, 29.300132116427871 ], [ -94.926897869803113, 29.300078117067674 ], [ -94.926920869614463, 29.300071117125718 ], [ -94.926991869815652, 29.300051116456533 ], [ -94.927053869492127, 29.299997117023263 ], [ -94.927271869972373, 29.299943117051701 ], [ -94.927614870251702, 29.299700116603614 ], [ -94.927801869606483, 29.299619116976046 ], [ -94.927863869659589, 29.299565116292726 ], [ -94.928112870176406, 29.299484116892575 ], [ -94.928206869460041, 29.299403116813227 ], [ -94.92823786959147, 29.299295116209727 ], [ -94.928455870057832, 29.299133116235662 ], [ -94.928860870189965, 29.298783116231963 ], [ -94.9288918700002, 29.298702116594278 ], [ -94.929047869791731, 29.298567116614063 ], [ -94.929203870556648, 29.298405116285448 ], [ -94.929296870187315, 29.298297116364868 ], [ -94.929275869872811, 29.298153116522275 ], [ -94.92926587032801, 29.298081116529389 ], [ -94.929140870539456, 29.297865116785122 ], [ -94.929078870301993, 29.297838116487913 ], [ -94.929016870246841, 29.297730116440224 ], [ -94.928860870348231, 29.297568115842353 ], [ -94.928798870328308, 29.297541116315671 ], [ -94.928735869573472, 29.297433116268063 ], [ -94.928673869668131, 29.297406116682808 ], [ -94.928611870342692, 29.297352115968039 ], [ -94.928424869832625, 29.297271116182227 ], [ -94.928050869605215, 29.297325116671974 ], [ -94.927988870012399, 29.297379116525768 ], [ -94.927894870018946, 29.297514115937862 ], [ -94.927894869260513, 29.297784116300328 ], [ -94.92801986944707, 29.29800011640684 ], [ -94.928362869530332, 29.298297116690421 ], [ -94.928206869419185, 29.298378116355231 ], [ -94.928175870158611, 29.298459116770626 ], [ -94.928050869431118, 29.2984861160629 ], [ -94.928019870014609, 29.298567116440804 ], [ -94.9276768698127, 29.298890116293258 ], [ -94.927458869976959, 29.298971116194046 ], [ -94.92742786994603, 29.299052116428964 ], [ -94.927053869224736, 29.299214116996595 ], [ -94.926928869450975, 29.299295116645752 ], [ -94.926804869566922, 29.299349116704249 ], [ -94.926710869189222, 29.299430116698229 ], [ -94.92649286946849, 29.299484116658817 ], [ -94.926305868927869, 29.299322116928717 ], [ -94.926430869241415, 29.299268116283205 ], [ -94.926648869527739, 29.299160116908695 ], [ -94.926710869910607, 29.299106116757695 ], [ -94.926835869711624, 29.299052116632947 ], [ -94.92730286986081, 29.298863116925826 ], [ -94.92742786943127, 29.298675116440933 ], [ -94.927925869615393, 29.298270116031475 ], [ -94.927707869423713, 29.29808111681238 ], [ -94.927583869409915, 29.297919116683719 ], [ -94.927458869501052, 29.297865116573679 ], [ -94.927411869843326, 29.297831116776884 ], [ -94.92727186959452, 29.297730116555126 ], [ -94.927209869747003, 29.297676116061574 ], [ -94.927115869665485, 29.297649116314194 ], [ -94.927053869913337, 29.297595116649365 ], [ -94.92680486971129, 29.297541116460661 ], [ -94.926492869238089, 29.297433115998338 ], [ -94.926336869148244, 29.29740611617402 ], [ -94.926274868924637, 29.297352116113949 ], [ -94.926056869517637, 29.297352116595224 ], [ -94.925994869199187, 29.297514116473167 ], [ -94.925900869667373, 29.297622116146417 ], [ -94.925869869432475, 29.297757116523634 ], [ -94.925713868929435, 29.297973116287114 ], [ -94.925526868726507, 29.298054116551004 ], [ -94.925526869084578, 29.298216116174444 ], [ -94.925651869504222, 29.298270116319742 ], [ -94.925728869288363, 29.298337116605296 ], [ -94.925807868850825, 29.298405116914779 ], [ -94.92593186949334, 29.29845911694041 ], [ -94.926212869573689, 29.298405116529068 ], [ -94.926305869286594, 29.298324116120479 ], [ -94.926461869860546, 29.298243116842759 ], [ -94.926523869663413, 29.298351116329332 ], [ -94.926523869601439, 29.298432116106724 ], [ -94.926368869791091, 29.298567116691363 ], [ -94.926212869872572, 29.298594116338887 ], [ -94.926056869249521, 29.298729116705182 ], [ -94.925931869396152, 29.298783117004344 ], [ -94.925869869430144, 29.298836116438643 ], [ -94.925776869615731, 29.298756116448104 ], [ -94.925744868725516, 29.298648116634833 ], [ -94.9256518692886, 29.298621116649198 ], [ -94.925589869719772, 29.298567116311329 ], [ -94.925539869256113, 29.298534116642919 ], [ -94.92518486894393, 29.298297116958047 ], [ -94.925028869517519, 29.298162116502954 ], [ -94.924903869009313, 29.297892116529908 ], [ -94.925090868581549, 29.297730116388362 ], [ -94.925277868863347, 29.29778411613583 ], [ -94.92555786966993, 29.297703116171228 ], [ -94.925651869637363, 29.297595116740801 ], [ -94.925744869069447, 29.297271116383676 ], [ -94.925900869467625, 29.297055116594358 ], [ -94.926025869604217, 29.296840116241896 ], [ -94.926149869628475, 29.296867115876061 ], [ -94.926181868924829, 29.296974116100447 ], [ -94.926336869203865, 29.297001116287131 ], [ -94.926679869382724, 29.297109115966848 ], [ -94.926960869860281, 29.297190116153221 ], [ -94.926991869248184, 29.297271116458102 ], [ -94.927084869835014, 29.297298116479343 ], [ -94.927178869866367, 29.297379116710431 ], [ -94.927427869871892, 29.297433116202399 ], [ -94.927520869195902, 29.297406116329505 ], [ -94.927738869612995, 29.297217116446241 ], [ -94.927801869580136, 29.297001116125251 ], [ -94.927770869858946, 29.296813116399136 ], [ -94.927645869142637, 29.29675911639325 ], [ -94.927620869859993, 29.296694115878893 ], [ -94.927614869392812, 29.296678116234613 ], [ -94.927489869145148, 29.296651116314525 ], [ -94.92736586975137, 29.296570115686649 ], [ -94.927022869893804, 29.296516116394457 ], [ -94.926928869748281, 29.296435116012375 ], [ -94.926492868814947, 29.296381116296146 ], [ -94.926305869585363, 29.296300116172002 ], [ -94.926212869044491, 29.296273116474335 ], [ -94.926149869437708, 29.296219116494857 ], [ -94.926134869391362, 29.296216115818304 ], [ -94.926025869204423, 29.296192115925081 ], [ -94.925744869007374, 29.296111116369403 ], [ -94.925620869245932, 29.296057116089504 ], [ -94.925557869054941, 29.296003115797475 ], [ -94.925433869167122, 29.295976116480201 ], [ -94.925152869358982, 29.295868116309787 ], [ -94.924934869083145, 29.295733116294095 ], [ -94.924685869232761, 29.295679115586744 ], [ -94.924467869160779, 29.295679116051229 ], [ -94.924218868255622, 29.295949115690394 ], [ -94.924124869044732, 29.296192116337632 ], [ -94.924155868604956, 29.296462116465026 ], [ -94.924529868868248, 29.296678115882347 ], [ -94.92481086870238, 29.296759116155719 ], [ -94.924965869074157, 29.296678116072329 ], [ -94.925215869128095, 29.296462116295757 ], [ -94.925308868555902, 29.29657011648592 ], [ -94.925464869050629, 29.296705115835948 ], [ -94.92533986926, 29.296759116434554 ], [ -94.925277868545606, 29.296813115934565 ], [ -94.925152868918502, 29.296840116124965 ], [ -94.925121869341979, 29.296920116423852 ], [ -94.924934869400957, 29.296947116245352 ], [ -94.924685869193425, 29.297082116455385 ], [ -94.92465486856544, 29.297271116182845 ], [ -94.924654869063318, 29.297406116526986 ], [ -94.924779868815008, 29.297649116522383 ], [ -94.924654868556217, 29.297757116091017 ], [ -94.924467868615949, 29.297703116371952 ], [ -94.924031868460361, 29.297811116591411 ], [ -94.924000869158732, 29.297892116137358 ], [ -94.923875868239151, 29.297865116442992 ], [ -94.923875869162572, 29.297676116519767 ], [ -94.924031868416492, 29.297568116145133 ], [ -94.924155869115822, 29.297541116237678 ], [ -94.924374869182344, 29.297352116092178 ], [ -94.924374869189208, 29.296974116213974 ], [ -94.924187869264884, 29.296786116069246 ], [ -94.924031868235204, 29.296651116066492 ], [ -94.923719869027821, 29.296651116319715 ], [ -94.923501868718546, 29.296759116293789 ], [ -94.923377868816374, 29.297163116123169 ], [ -94.923065868836972, 29.297109116156982 ], [ -94.922785868355689, 29.297028116568228 ], [ -94.922722867960886, 29.296974116716875 ], [ -94.922535868228948, 29.296974116551144 ], [ -94.922598868088883, 29.296840115906978 ], [ -94.922785868545958, 29.29678611639012 ], [ -94.923065868244976, 29.296840116619702 ], [ -94.92328386805012, 29.296705116161981 ], [ -94.923377868050892, 29.296678116343763 ], [ -94.923439868323769, 29.296570116263396 ], [ -94.923595868186524, 29.29643511617984 ], [ -94.923563869037309, 29.29630011641347 ], [ -94.923252868499475, 29.296219116390567 ], [ -94.923034868081757, 29.296165115816422 ], [ -94.922847868704977, 29.29611111642587 ], [ -94.922847868381439, 29.295868115828164 ], [ -94.923439868545557, 29.296030116486826 ], [ -94.923813868144791, 29.296084116452977 ], [ -94.924031868694343, 29.29581411628546 ], [ -94.924000868625825, 29.295463116201031 ], [ -94.923875868311782, 29.295409116165757 ], [ -94.923688868420129, 29.295409115718233 ], [ -94.923626868669828, 29.295355116153431 ], [ -94.923408868863646, 29.295301116152562 ], [ -94.923158868541194, 29.295247116262395 ], [ -94.922849868374215, 29.295203116274411 ], [ -94.922766868343331, 29.294970116294365 ], [ -94.921847867582898, 29.294044116169037 ], [ -94.921310867658647, 29.293586116113275 ], [ -94.92101186757175, 29.293222115798297 ], [ -94.920844867259362, 29.292723115953191 ], [ -94.92071386791693, 29.292307115386226 ], [ -94.920558867730819, 29.291943115227753 ], [ -94.920625867156573, 29.291717115344888 ], [ -94.920841867519044, 29.291327115624373 ], [ -94.920852867355137, 29.291307114961555 ], [ -94.921155867481815, 29.290897114779991 ], [ -94.921778867458258, 29.290162114733576 ], [ -94.92253386840278, 29.289334114970764 ], [ -94.923030868567395, 29.288738115087259 ], [ -94.923408867749941, 29.288663114670022 ], [ -94.923470868481857, 29.288717114542809 ], [ -94.923626868111896, 29.28874411455206 ], [ -94.923657868084277, 29.288447114597798 ], [ -94.923719868705462, 29.288285114765586 ], [ -94.924342867975909, 29.287988114843316 ], [ -94.924560868223367, 29.287934114524624 ], [ -94.924903868357916, 29.287853114321909 ], [ -94.925682868441228, 29.287637114492099 ], [ -94.92580786927347, 29.28758311388188 ], [ -94.925994868327862, 29.287556114206801 ], [ -94.926056869238451, 29.287502114493741 ], [ -94.926554868941892, 29.287502114150378 ], [ -94.927302869434357, 29.287583114416918 ], [ -94.927333869490198, 29.287691114207441 ], [ -94.927458869059237, 29.287718114620965 ], [ -94.927520869296728, 29.287664114228676 ], [ -94.927676869420168, 29.287610114180946 ], [ -94.928050869705132, 29.287502114332206 ], [ -94.928268869513289, 29.28736711448941 ], [ -94.928330869111861, 29.287313113718113 ], [ -94.928517869952003, 29.287286114206832 ], [ -94.928580869355287, 29.28717811445372 ], [ -94.928735869235851, 29.287178113864961 ], [ -94.928767869324957, 29.287124114323486 ], [ -94.928860869657569, 29.28709811418263 ], [ -94.929140869110043, 29.286936113993377 ], [ -94.929390869534899, 29.286882114011508 ], [ -94.929546869963701, 29.286774114063796 ], [ -94.929826869731841, 29.286720114376948 ], [ -94.930044869447656, 29.286612113785537 ], [ -94.930449869474018, 29.286477114283798 ], [ -94.930854870296614, 29.286288114035283 ], [ -94.930979870435195, 29.286180113625292 ], [ -94.931290870618554, 29.286126114268949 ], [ -94.931384870502399, 29.286045114076618 ], [ -94.931602870396617, 29.285964113969865 ], [ -94.9316648704051, 29.28591011353663 ], [ -94.931695870279682, 29.285829113292991 ], [ -94.931945869826009, 29.285721113567853 ], [ -94.932194870440455, 29.285586113385133 ], [ -94.93238187053143, 29.285532113744956 ], [ -94.932412870277886, 29.285370113566358 ], [ -94.932163869952291, 29.285343113667107 ], [ -94.932100869920163, 29.285289113586401 ], [ -94.93182087028525, 29.285262113593792 ], [ -94.931633869890206, 29.285181113968612 ], [ -94.931446870532099, 29.285181113910383 ], [ -94.931353870126884, 29.285343113735586 ], [ -94.9312908700973, 29.285235113687129 ], [ -94.931041870451992, 29.285235113740374 ], [ -94.931010870240343, 29.285316113838526 ], [ -94.931072870032153, 29.285424113299811 ], [ -94.931010870246581, 29.285532113946676 ], [ -94.930605869493604, 29.285559114043032 ], [ -94.930543870198932, 29.285667113600457 ], [ -94.930137869825217, 29.285667114048167 ], [ -94.930013869847642, 29.285694113677565 ], [ -94.929982869413081, 29.285829114046205 ], [ -94.930044869728789, 29.28588311352695 ], [ -94.929701870070176, 29.285883114177398 ], [ -94.929577869901181, 29.285775113966082 ], [ -94.929670869596009, 29.285721113556988 ], [ -94.929701869401441, 29.285451113786937 ], [ -94.929390869833455, 29.285451113435983 ], [ -94.929359870066818, 29.285370113494956 ], [ -94.929296870063766, 29.285343114105622 ], [ -94.929234869105855, 29.285235113723562 ], [ -94.929172869071294, 29.285101113457518 ], [ -94.929234869873568, 29.285047113245504 ], [ -94.929359869612654, 29.284993113922763 ], [ -94.929390869279914, 29.284885113897122 ], [ -94.929296870064945, 29.284777113656734 ], [ -94.929016869889907, 29.284777113370179 ], [ -94.928985869448454, 29.284912113555208 ], [ -94.928829869920065, 29.284912113605227 ], [ -94.928829869208982, 29.284642113701192 ], [ -94.928642869020521, 29.284507113767646 ], [ -94.928580869231695, 29.28434511344642 ], [ -94.928704869542258, 29.284291113125008 ], [ -94.928735869687245, 29.284183113241397 ], [ -94.928486869355979, 29.284129113315792 ], [ -94.928455869674622, 29.28404811311885 ], [ -94.928268869570573, 29.283886113240801 ], [ -94.928175869522818, 29.283859113649953 ], [ -94.928143868871658, 29.283967113569787 ], [ -94.928050869188652, 29.283967113269906 ], [ -94.927770869166352, 29.283886113104607 ], [ -94.927738869047047, 29.28380511376756 ], [ -94.927707868870712, 29.283805113269722 ], [ -94.927614869553508, 29.283832113847769 ], [ -94.927520869374248, 29.283994113148399 ], [ -94.927365869317327, 29.284021113349695 ], [ -94.927333869475831, 29.283940113916969 ], [ -94.927178869171541, 29.283913113341814 ], [ -94.927084868955774, 29.284021113609796 ], [ -94.927022869200073, 29.284210113354394 ], [ -94.927115868639788, 29.284318113649945 ], [ -94.927520869155387, 29.28431811369564 ], [ -94.927583869371929, 29.284372113335174 ], [ -94.927645869337439, 29.284399113726348 ], [ -94.927707869180438, 29.284507113988706 ], [ -94.92777086950619, 29.284642113437258 ], [ -94.927801868745092, 29.284804113683741 ], [ -94.927738868915498, 29.284912113973988 ], [ -94.927645869199779, 29.28499311331807 ], [ -94.927489868669682, 29.28502011384905 ], [ -94.927427869021912, 29.285074113313033 ], [ -94.927053869272882, 29.285101114011852 ], [ -94.926991868993539, 29.285181114059206 ], [ -94.926897869385314, 29.285101113606185 ], [ -94.926523868926523, 29.285154113605778 ], [ -94.926305868587747, 29.284993113284202 ], [ -94.925931868883865, 29.284993114169051 ], [ -94.925744868993078, 29.284939113650694 ], [ -94.925339868895307, 29.284939113718153 ], [ -94.924747868922452, 29.28491211362121 ], [ -94.924685868852791, 29.284966113646615 ], [ -94.924405868795986, 29.284966113632919 ], [ -94.924312868078204, 29.28489611400499 ], [ -94.924299868462214, 29.284882114061894 ], [ -94.924243867921888, 29.284826113841635 ], [ -94.924238868479179, 29.284799113325189 ], [ -94.92423886837183, 29.284752113575735 ], [ -94.924243868481994, 29.284669113976186 ], [ -94.924215868661378, 29.284590113959641 ], [ -94.924155868269295, 29.28452111381878 ], [ -94.924002867820548, 29.284400113395975 ], [ -94.923905868182274, 29.284289113823672 ], [ -94.923840868228424, 29.28416011402355 ], [ -94.923701868313088, 29.283993113846087 ], [ -94.923451867635507, 29.283886113341044 ], [ -94.92322986756615, 29.283896113510018 ], [ -94.923044867511507, 29.2839001136824 ], [ -94.922873867924025, 29.283956113565463 ], [ -94.922660867692628, 29.284039114099517 ], [ -94.922470867939552, 29.284099113677232 ], [ -94.922326868134363, 29.284150114061759 ], [ -94.922086867366517, 29.284210113572712 ], [ -94.921831867878396, 29.28426111371483 ], [ -94.921641867309887, 29.284363113611199 ], [ -94.921493867224953, 29.284488113669997 ], [ -94.921308867547765, 29.284530114172551 ], [ -94.921234867491236, 29.284488113638002 ], [ -94.921104867924171, 29.284396113769574 ], [ -94.92103586783324, 29.284373113466497 ], [ -94.920975867433938, 29.284377113368265 ], [ -94.920928867497608, 29.284396113938762 ], [ -94.920868866971446, 29.284428113590558 ], [ -94.920863867482964, 29.284373114018273 ], [ -94.920868867846863, 29.284303113986866 ], [ -94.92091086711865, 29.284257113633018 ], [ -94.921039867432597, 29.284197113885494 ], [ -94.921109867290284, 29.284183113564179 ], [ -94.921160867907176, 29.284183113411213 ], [ -94.921192867257133, 29.284183113485994 ], [ -94.921197867148422, 29.28413211342632 ], [ -94.921141867611666, 29.284076113670356 ], [ -94.921076867934644, 29.28407611356581 ], [ -94.920942867249366, 29.284081113747128 ], [ -94.920715866829738, 29.284229113958258 ], [ -94.920650867831171, 29.284271113375716 ], [ -94.920502867262428, 29.284312113843388 ], [ -94.920405867506304, 29.284345113957883 ], [ -94.920319866836437, 29.284401113451899 ], [ -94.920211867538995, 29.28446511372324 ], [ -94.920158867552615, 29.284577113872526 ], [ -94.92016486753559, 29.284646114199759 ], [ -94.920248867570592, 29.28476611415066 ], [ -94.920336867754145, 29.28483111349869 ], [ -94.920419867467686, 29.284998114123464 ], [ -94.920428866963604, 29.285062114006621 ], [ -94.920456867167871, 29.285187114326874 ], [ -94.920507866913738, 29.285289114302991 ], [ -94.920609867721126, 29.285396114401298 ], [ -94.920646866920166, 29.285511114397625 ], [ -94.9206618674434, 29.285631114148476 ], [ -94.920627866886278, 29.285706113725606 ], [ -94.920442867683164, 29.285854114547693 ], [ -94.920164867217807, 29.285947113725683 ], [ -94.919607867280163, 29.286126114175783 ], [ -94.919575866684966, 29.286180114358395 ], [ -94.913026866145074, 29.291068115661922 ], [ -94.912989865739391, 29.291095115181392 ], [ -94.912530865401152, 29.291435115603985 ], [ -94.912293865333382, 29.291610115698472 ], [ -94.912197865209478, 29.291706116022379 ], [ -94.912062865844916, 29.291840115362689 ], [ -94.911085865218396, 29.292809115497025 ], [ -94.909903864679478, 29.294412115872486 ], [ -94.910099864913803, 29.294740116173148 ], [ -94.9099798653709, 29.294897116460593 ], [ -94.909886865293785, 29.294924115901786 ], [ -94.909855865284413, 29.295031116091383 ], [ -94.909761864894676, 29.29505811637129 ], [ -94.909730864649248, 29.295193116381487 ], [ -94.909730864814961, 29.295436116143364 ], [ -94.909761865176236, 29.2957331166937 ], [ -94.909792864596128, 29.295949116979461 ], [ -94.909855865003024, 29.296003116852134 ], [ -94.909761864854545, 29.296111116470939 ], [ -94.90957486456773, 29.296138116503837 ], [ -94.909387864780328, 29.296192116666628 ], [ -94.909076864748343, 29.296246116742648 ], [ -94.908826864742792, 29.296327117023672 ], [ -94.908484864198584, 29.29632711651314 ], [ -94.908234864300411, 29.296570117096589 ], [ -94.908234864336549, 29.296840116394886 ], [ -94.90827786478377, 29.296877117175516 ], [ -94.908328864798435, 29.296920116468815 ], [ -94.908390864889739, 29.296974117039117 ], [ -94.90842186450125, 29.297082117080045 ], [ -94.908546864469557, 29.297136116409156 ], [ -94.908889864361612, 29.297055116416011 ], [ -94.909076864996038, 29.297055116770679 ], [ -94.909138864426453, 29.297001116370208 ], [ -94.909231864563324, 29.296974116493278 ], [ -94.909294864996411, 29.296920116933155 ], [ -94.909543864757637, 29.296867116519326 ], [ -94.909636864995463, 29.296813116903216 ], [ -94.9097308651574, 29.296920116315995 ], [ -94.909699864620777, 29.297028116828656 ], [ -94.909543864596259, 29.297082116380832 ], [ -94.909543865311463, 29.297325117012612 ], [ -94.909699865117958, 29.29748711676709 ], [ -94.909730864894357, 29.297622116819976 ], [ -94.909886864982369, 29.297730116509978 ], [ -94.910073864968766, 29.297703116852883 ], [ -94.910166865270511, 29.297703116681756 ], [ -94.910073865068853, 29.297811116499677 ], [ -94.910042865652912, 29.297919117110244 ], [ -94.909730865189857, 29.29810811707414 ], [ -94.909636865032027, 29.298135117349052 ], [ -94.909605864775784, 29.298189117115815 ], [ -94.909512864524075, 29.298081117254746 ], [ -94.909512865412935, 29.297946117258036 ], [ -94.909450864971191, 29.297838116507798 ], [ -94.909418864927289, 29.297730116770079 ], [ -94.909325864536981, 29.29754111654437 ], [ -94.909294864863085, 29.297433116751865 ], [ -94.909107864401165, 29.297271117207703 ], [ -94.908764864589557, 29.297325116500897 ], [ -94.908608865191567, 29.297487116507472 ], [ -94.908639864788967, 29.297838117136195 ], [ -94.90873386479565, 29.297865117401095 ], [ -94.908795865127999, 29.298189116960895 ], [ -94.90885886513081, 29.298405116760808 ], [ -94.908733864658387, 29.298486116915537 ], [ -94.908484865124876, 29.298486117388855 ], [ -94.908453864508459, 29.298189117461998 ], [ -94.908390864771889, 29.297838117370976 ], [ -94.908234865140884, 29.297649116577407 ], [ -94.908203864812208, 29.29756811685693 ], [ -94.90758086418802, 29.297568116733327 ], [ -94.907374864107169, 29.297769117289498 ], [ -94.907331864377653, 29.297811116635131 ], [ -94.907050864670282, 29.298000117402708 ], [ -94.906677864800955, 29.298054117090235 ], [ -94.906645864330599, 29.298243117255293 ], [ -94.90639686386848, 29.298459116904052 ], [ -94.906209864499573, 29.298351116763151 ], [ -94.906053863773835, 29.298378117346228 ], [ -94.905898864526904, 29.298648116819763 ], [ -94.905493864506127, 29.29878311716168 ], [ -94.905088863686814, 29.298890117304726 ], [ -94.905119864023874, 29.299025117690348 ], [ -94.905306864133777, 29.299160117056164 ], [ -94.905150863471277, 29.299268117817398 ], [ -94.905056863515014, 29.299322117139898 ], [ -94.904558863459215, 29.298836117522054 ], [ -94.904527863807289, 29.298756117286153 ], [ -94.904371863818199, 29.298594117635847 ], [ -94.90434886338403, 29.298574116916008 ], [ -94.904309863763331, 29.298540116982014 ], [ -94.904184863914509, 29.298459116885756 ], [ -94.904028864105797, 29.298324117211834 ], [ -94.903873863957898, 29.298351117100381 ], [ -94.903810863119688, 29.298459116818901 ], [ -94.904184863382525, 29.298836117664969 ], [ -94.90427886387323, 29.298917117383205 ], [ -94.904558863427226, 29.299133117432451 ], [ -94.904901863433963, 29.299484117540139 ], [ -94.904776863519032, 29.299565117740393 ], [ -94.904651863676676, 29.29959211703256 ], [ -94.904527863946583, 29.299700117423356 ], [ -94.904530863755127, 29.299732117955546 ], [ -94.903917864105253, 29.30034911804281 ], [ -94.90356186357559, 29.300375117782458 ], [ -94.9033128633872, 29.300483117575276 ], [ -94.902907863158461, 29.300779117843614 ], [ -94.902782863216075, 29.300833117653248 ], [ -94.902751863484212, 29.300914118174646 ], [ -94.902533863787681, 29.30099511779347 ], [ -94.902408863560325, 29.301022117747351 ], [ -94.902377862889026, 29.301184117591554 ], [ -94.902252863166296, 29.301238117834963 ], [ -94.902003862909339, 29.30140011791033 ], [ -94.901941863124492, 29.301454117857066 ], [ -94.901473863336648, 29.301778118359671 ], [ -94.901505863134133, 29.301913117860177 ], [ -94.901598863146674, 29.301994118460335 ], [ -94.901380863357019, 29.302129118014289 ], [ -94.901131862731205, 29.302075117709805 ], [ -94.900944863226542, 29.302102117789978 ], [ -94.900913863256548, 29.302156118402117 ], [ -94.900632863145205, 29.302129118229264 ], [ -94.900383863086944, 29.30191311849978 ], [ -94.900071862368236, 29.301940118498056 ], [ -94.899854862679561, 29.30207411798899 ], [ -94.899717862867803, 29.302263118437114 ], [ -94.899601862465872, 29.302438117951041 ], [ -94.899450862324073, 29.302669118254698 ], [ -94.89937186235575, 29.302778118396905 ], [ -94.899358862310706, 29.30282811799912 ], [ -94.899590863117211, 29.303004117949047 ], [ -94.899315862820103, 29.30333111845572 ], [ -94.899139862189358, 29.303273118271633 ], [ -94.899285863130643, 29.303077117960754 ], [ -94.899190862158633, 29.303028117956199 ], [ -94.898965862051625, 29.302912118131033 ], [ -94.898747862421615, 29.302898118630768 ], [ -94.898826862012655, 29.303329118463797 ], [ -94.898830862142589, 29.303359118453386 ], [ -94.89866186293925, 29.303503118840368 ], [ -94.898625862370977, 29.303564118655043 ], [ -94.898728862302406, 29.303621118899013 ], [ -94.899303862927667, 29.303926118636539 ], [ -94.899642862248044, 29.304195118487481 ], [ -94.899991862799894, 29.304441118993495 ], [ -94.90031186272499, 29.304699118327171 ], [ -94.900536862924739, 29.304908118815824 ], [ -94.90154486325703, 29.305990119325752 ], [ -94.9035558641676, 29.308140119426383 ], [ -94.906768864413451, 29.311604119964709 ], [ -94.907571864806499, 29.312473120045105 ], [ -94.907734865466495, 29.312650120428685 ], [ -94.915361867542742, 29.320866121342469 ], [ -94.92225186929582, 29.328275122929295 ], [ -94.930530871927616, 29.3371851247013 ], [ -94.930850871734066, 29.337530124069168 ], [ -94.931527872589513, 29.338299124758915 ], [ -94.936660873543516, 29.343819125889446 ], [ -94.94004487480403, 29.347488126581613 ], [ -94.940688875687513, 29.348152126509298 ], [ -94.941210875209919, 29.348708126754403 ], [ -94.941445874966504, 29.348956126921458 ], [ -94.942173875621506, 29.349753126586418 ], [ -94.94254987547032, 29.350146126946697 ], [ -94.942870875746181, 29.350490127117283 ], [ -94.944355876392663, 29.352080127000182 ], [ -94.944890876184928, 29.352687126765925 ], [ -94.945347876666872, 29.35333012722873 ], [ -94.945569876239801, 29.353719127534514 ], [ -94.945989876917494, 29.354615127545888 ], [ -94.94624687735498, 29.355350127819708 ], [ -94.946771877428688, 29.357651127917347 ], [ -94.946946877441277, 29.358384128405611 ], [ -94.947824877935005, 29.358374128136209 ], [ -94.950392878397309, 29.358336128321429 ], [ -94.95061687813795, 29.358334128262491 ], [ -94.950844878511418, 29.358327128240926 ], [ -94.950945877801857, 29.358324128338726 ], [ -94.95099287796684, 29.358324127901643 ], [ -94.951788878610557, 29.358320128352759 ], [ -94.953096878457274, 29.358311128225875 ], [ -94.954418879472883, 29.358296127700712 ], [ -94.955739879770263, 29.358275127661351 ], [ -94.957040879592952, 29.35826512831412 ], [ -94.957307880297094, 29.358265127633857 ], [ -94.958392880581641, 29.35825512789469 ], [ -94.959709880852415, 29.358239128156292 ], [ -94.961031881288875, 29.35823612786487 ], [ -94.962346880760734, 29.358223127513259 ], [ -94.963649881714787, 29.358203128005162 ], [ -94.965683882556434, 29.358177127593326 ], [ -94.966642882348907, 29.358158127954127 ], [ -94.967154882528646, 29.358152127580851 ], [ -94.967964882162136, 29.358139127378568 ], [ -94.968677883188519, 29.358139127324336 ], [ -94.969688883377557, 29.358132127158974 ], [ -94.971217883516047, 29.358113127139536 ], [ -94.97159988321674, 29.358093127244651 ], [ -94.971537883517911, 29.35452512687062 ], [ -94.971546883575698, 29.354166126790481 ], [ -94.972119883504178, 29.354414126383556 ], [ -94.973102884189331, 29.354840126539127 ], [ -94.97488488403333, 29.355637127145503 ], [ -94.977074884674508, 29.356596126846206 ], [ -94.979418885474672, 29.357603127083763 ], [ -94.979640886086372, 29.357698127217201 ], [ -94.979848885378914, 29.357793126801834 ], [ -94.985180887609189, 29.360219127855256 ], [ -94.985735887546099, 29.360550127548318 ], [ -94.98630788736638, 29.360943127786168 ], [ -94.98673888807123, 29.361307127538414 ], [ -94.986842887272005, 29.361395127605036 ], [ -94.987341887470009, 29.36179012786701 ], [ -94.987415887740283, 29.36159112747951 ], [ -94.987472887631995, 29.361438127610086 ], [ -94.987463888100862, 29.360660127258797 ], [ -94.98745188779283, 29.359568127381362 ], [ -94.987442888026436, 29.359177127422658 ], [ -94.98742588739843, 29.357924126516163 ], [ -94.989279887968479, 29.357924126399134 ], [ -94.990672888647879, 29.357937126766561 ], [ -94.992603888574052, 29.357930127076028 ], [ -94.992723889363674, 29.357930126464854 ], [ -94.992683888874836, 29.355342126247205 ], [ -94.992677888824375, 29.355065125852128 ], [ -94.99265888856803, 29.354247126169358 ], [ -94.992657889233641, 29.353795125521778 ], [ -94.992687888661948, 29.353428125661228 ], [ -94.99274488829144, 29.353152125973459 ], [ -94.992941888903019, 29.352689125650894 ], [ -94.993321889199962, 29.351999125550243 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1621, "Tract": "48167720100", "Area_SqMi": 2.485117892099677, "total_2009": 581, "total_2010": 500, "total_2011": 565, "total_2012": 536, "total_2013": 580, "total_2014": 551, "total_2015": 592, "total_2016": 667, "total_2017": 692, "total_2018": 770, "total_2019": 715, "total_2020": 837, "age1": 251, "age2": 318, "age3": 173, "earn1": 198, "earn2": 297, "earn3": 247, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 48, "naics_s05": 4, "naics_s06": 20, "naics_s07": 194, "naics_s08": 2, "naics_s09": 14, "naics_s10": 28, "naics_s11": 14, "naics_s12": 69, "naics_s13": 1, "naics_s14": 27, "naics_s15": 24, "naics_s16": 51, "naics_s17": 11, "naics_s18": 188, "naics_s19": 46, "naics_s20": 0, "race1": 592, "race2": 91, "race3": 5, "race4": 38, "race5": 5, "race6": 11, "ethnicity1": 515, "ethnicity2": 227, "edu1": 89, "edu2": 134, "edu3": 136, "edu4": 132, "Shape_Length": 55982.740846195236, "Shape_Area": 69280833.509958342, "total_2021": 838, "total_2022": 742 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.223179955214121, 29.517942152255397 ], [ -95.223212955376155, 29.517749152023185 ], [ -95.220428954389774, 29.520301152580053 ], [ -95.217562953446006, 29.522929152965609 ], [ -95.215702953700514, 29.524634154032608 ], [ -95.214578953428912, 29.525672154237164 ], [ -95.213892952643178, 29.526304154573399 ], [ -95.213334953359535, 29.526816154015219 ], [ -95.212431952864605, 29.527645154612909 ], [ -95.210495952140718, 29.529422155024648 ], [ -95.209524951888568, 29.530313155101375 ], [ -95.208860951843945, 29.530922155623838 ], [ -95.208707951774116, 29.531063155013115 ], [ -95.208115952237577, 29.531606155863926 ], [ -95.205974951449036, 29.533565156088684 ], [ -95.205111950958781, 29.534354156565733 ], [ -95.204956951200984, 29.534496155830066 ], [ -95.203768950777416, 29.535595156520568 ], [ -95.203583950587557, 29.535763156687917 ], [ -95.202444950112607, 29.536805157192191 ], [ -95.201262950686242, 29.537886157136374 ], [ -95.200440949667353, 29.538633157306521 ], [ -95.199572950367681, 29.53942215759416 ], [ -95.199210950143936, 29.53975115738017 ], [ -95.19908694964802, 29.539864157361631 ], [ -95.198728949650473, 29.540200157665613 ], [ -95.198697950044334, 29.540229157545095 ], [ -95.198239949471343, 29.540649157661854 ], [ -95.198114949202903, 29.540818157999457 ], [ -95.197874949329545, 29.54107015808178 ], [ -95.197608949233512, 29.541411157817802 ], [ -95.197370949914983, 29.541784158169506 ], [ -95.19724194900634, 29.541997158093952 ], [ -95.197291949232351, 29.5419841577834 ], [ -95.197329949564903, 29.541983157748639 ], [ -95.197496949465517, 29.541979157975799 ], [ -95.19759094963662, 29.542021158226326 ], [ -95.19767394987386, 29.542058158457667 ], [ -95.197712949947373, 29.542082157918077 ], [ -95.19770294911244, 29.542121157890836 ], [ -95.197769950029809, 29.542213157624801 ], [ -95.197867949938654, 29.542298157806467 ], [ -95.198048949376584, 29.542431157970519 ], [ -95.198101949333548, 29.542526158255949 ], [ -95.198107949503566, 29.54266315798132 ], [ -95.198157950048312, 29.542823158122012 ], [ -95.198227949447684, 29.542982157916612 ], [ -95.198319949817019, 29.543082157955027 ], [ -95.198327949431715, 29.543104158114662 ], [ -95.19843595003411, 29.543314158068046 ], [ -95.198588949561469, 29.543525158395912 ], [ -95.198748949910993, 29.543711158009117 ], [ -95.198990950479811, 29.544007158628396 ], [ -95.199170949672776, 29.544229158519734 ], [ -95.199207949905599, 29.544265158768177 ], [ -95.199259949987024, 29.544313158748782 ], [ -95.199346950510076, 29.544412158239442 ], [ -95.199422950073668, 29.544478158850346 ], [ -95.199459950309844, 29.5445331584352 ], [ -95.199466950070089, 29.544637158151819 ], [ -95.19942295047565, 29.544731158170006 ], [ -95.199327950244523, 29.544824158889124 ], [ -95.199271949805237, 29.544901158249743 ], [ -95.199214949845683, 29.544978158965353 ], [ -95.19920895040886, 29.545303158574075 ], [ -95.199183950090728, 29.545391159043511 ], [ -95.199177949805886, 29.545457158707833 ], [ -95.19919594975805, 29.545726159163436 ], [ -95.199152950341613, 29.546094158708541 ], [ -95.198925950247073, 29.546358158624319 ], [ -95.198862950423447, 29.546457158513963 ], [ -95.198661950053889, 29.546589158587068 ], [ -95.198454949847658, 29.546710159216893 ], [ -95.198359950022791, 29.546754158587305 ], [ -95.198183949952337, 29.546798158548217 ], [ -95.197969949940131, 29.546831159131916 ], [ -95.197894949616028, 29.546859158597677 ], [ -95.197781949350571, 29.546996158621564 ], [ -95.197573949891805, 29.547332158874575 ], [ -95.197517949898824, 29.547370159374218 ], [ -95.197398949974129, 29.547577158817123 ], [ -95.19731594957851, 29.547898159268861 ], [ -95.197303949372809, 29.547997159089551 ], [ -95.197303950021379, 29.548074159710364 ], [ -95.19732895002592, 29.54813515950217 ], [ -95.197353949922942, 29.548333159773158 ], [ -95.197334950181485, 29.54841515932219 ], [ -95.197265949935471, 29.548547159619826 ], [ -95.197253949992842, 29.548602159093978 ], [ -95.197253950100574, 29.548663159238924 ], [ -95.197316950115024, 29.548783159707224 ], [ -95.197328949900637, 29.548866159147604 ], [ -95.197316949411075, 29.549003159561288 ], [ -95.197297949671793, 29.54904715938321 ], [ -95.197253949279414, 29.54910815933858 ], [ -95.197240949502131, 29.549141159091906 ], [ -95.197246949794689, 29.549185159458816 ], [ -95.197297950248583, 29.549421159521021 ], [ -95.197341949557597, 29.549498159326916 ], [ -95.197417950186235, 29.549578160002195 ], [ -95.19742394941143, 29.549628159137423 ], [ -95.197469950244113, 29.549725159499619 ], [ -95.197567950002878, 29.549806159450558 ], [ -95.197679949671837, 29.549870159534233 ], [ -95.197902950441971, 29.549980159850669 ], [ -95.19800994981432, 29.550061159886642 ], [ -95.198163949879586, 29.550177160003816 ], [ -95.198278950159647, 29.550312159945342 ], [ -95.198316949831749, 29.550388160067662 ], [ -95.198328950210666, 29.550441159906121 ], [ -95.198310950111022, 29.550579159717646 ], [ -95.198258950412168, 29.550716159421174 ], [ -95.198203949732616, 29.550826159925055 ], [ -95.198161950357388, 29.550919160160536 ], [ -95.198147949890114, 29.551008160155135 ], [ -95.19816195046424, 29.551048160321244 ], [ -95.198189950504656, 29.551089159771443 ], [ -95.198244950022783, 29.551129160196439 ], [ -95.198324950432266, 29.551158159983547 ], [ -95.198519949970844, 29.551194159467968 ], [ -95.198714950719534, 29.551226159492057 ], [ -95.198840950337427, 29.55127115992584 ], [ -95.198947950068501, 29.551328160292968 ], [ -95.199077950261255, 29.551413159754485 ], [ -95.199198950251073, 29.551513159809026 ], [ -95.199253950090906, 29.55157616020308 ], [ -95.199285949959759, 29.551666159997481 ], [ -95.199310950868977, 29.551736159807188 ], [ -95.199341949927216, 29.55177415952355 ], [ -95.199517950934492, 29.551923159690901 ], [ -95.199618950176045, 29.552055160435653 ], [ -95.199850950178885, 29.552247160199379 ], [ -95.19993295014838, 29.552385160263267 ], [ -95.199927950510926, 29.55261116006097 ], [ -95.199926950688706, 29.552671160325772 ], [ -95.19989595052904, 29.55273715989188 ], [ -95.199681950664441, 29.552951160436233 ], [ -95.199618950805686, 29.553028160500553 ], [ -95.199561950763922, 29.553320160520702 ], [ -95.199549950929608, 29.553435159915725 ], [ -95.199737950206483, 29.553523160295317 ], [ -95.199907950506471, 29.553710160417364 ], [ -95.199970951035652, 29.554111160643217 ], [ -95.199907951026063, 29.554133160516507 ], [ -95.19987095085628, 29.554138160147524 ], [ -95.199694950490439, 29.554139160550754 ], [ -95.199624950233456, 29.554128160653342 ], [ -95.199480950212731, 29.554068160264656 ], [ -95.199423950760774, 29.554024160355311 ], [ -95.199310949989197, 29.553974160496757 ], [ -95.199134950697697, 29.553991160610586 ], [ -95.199065950240026, 29.554040160637896 ], [ -95.198989950507666, 29.554144160605073 ], [ -95.198864949987623, 29.554408160263907 ], [ -95.198851950118225, 29.554436160682116 ], [ -95.198750950793851, 29.5545841605778 ], [ -95.198587949973941, 29.554969161028808 ], [ -95.198492950077778, 29.555101160252448 ], [ -95.198485950076048, 29.55512616073705 ], [ -95.198415950211114, 29.555368160839485 ], [ -95.198411949912824, 29.555382160775515 ], [ -95.19840495063967, 29.555470160910094 ], [ -95.198407949852182, 29.555583160919067 ], [ -95.198411950404974, 29.555756161184487 ], [ -95.198398950745599, 29.555860160859165 ], [ -95.198279950683755, 29.555987160630291 ], [ -95.198203950450932, 29.556104160724651 ], [ -95.198197950168165, 29.556113161209531 ], [ -95.198175950338069, 29.556141161157587 ], [ -95.198165949945775, 29.556154160859901 ], [ -95.198157950700462, 29.556163160479407 ], [ -95.198104950121035, 29.556228161286885 ], [ -95.198095950321061, 29.55623816069205 ], [ -95.198087950031294, 29.556246160928545 ], [ -95.198074950081775, 29.556259161101007 ], [ -95.198028950492372, 29.556306160502 ], [ -95.197996950314248, 29.556339160807134 ], [ -95.197988950557303, 29.556367160677301 ], [ -95.197952950015988, 29.556493160942903 ], [ -95.197858950589989, 29.556658161291779 ], [ -95.197769950714488, 29.556889161484783 ], [ -95.197770949771368, 29.557021160862128 ], [ -95.197725950655709, 29.557202160985479 ], [ -95.197699950603479, 29.557259160943438 ], [ -95.197688950173713, 29.557284161378448 ], [ -95.19759395007334, 29.557378161245566 ], [ -95.197543950237574, 29.557405160863226 ], [ -95.197480950002401, 29.557416161386183 ], [ -95.197406950537584, 29.557411161024458 ], [ -95.197325949969141, 29.557386161410307 ], [ -95.19725694987396, 29.557357160771968 ], [ -95.197211949682753, 29.557316160731332 ], [ -95.197178949581371, 29.557249161373125 ], [ -95.197140950323984, 29.557047160931877 ], [ -95.197082949663169, 29.556911160759583 ], [ -95.197040950333061, 29.556869160882894 ], [ -95.196975950373101, 29.556849161468786 ], [ -95.196947949976305, 29.556847160840242 ], [ -95.196926950066839, 29.556848161457943 ], [ -95.196820949994432, 29.556856161171481 ], [ -95.19674495012616, 29.556872161192729 ], [ -95.19657494947522, 29.556944161120317 ], [ -95.196487950392168, 29.557076160872597 ], [ -95.196160949780747, 29.557433160972277 ], [ -95.195952950025003, 29.557618161216862 ], [ -95.195942949355455, 29.557627161549245 ], [ -95.195930949590363, 29.557638161485638 ], [ -95.195894949534477, 29.557642161171149 ], [ -95.195790949795722, 29.55764616092193 ], [ -95.195657949725131, 29.557630161012447 ], [ -95.19559894964307, 29.557611161268859 ], [ -95.195586949406419, 29.557588161606791 ], [ -95.195549949411699, 29.55751616140984 ], [ -95.19554395018092, 29.557455161291358 ], [ -95.195518949935604, 29.557395161569364 ], [ -95.19549994919403, 29.557307161164722 ], [ -95.195480949580272, 29.557092161211084 ], [ -95.195411949361414, 29.556955161201401 ], [ -95.195323950113192, 29.556867161059976 ], [ -95.195210949572484, 29.556729160845642 ], [ -95.195103949081897, 29.55663616117462 ], [ -95.194964949461792, 29.55642716129022 ], [ -95.194876949293302, 29.556240161033045 ], [ -95.194820949136016, 29.556064161428043 ], [ -95.19474494990888, 29.555982160808394 ], [ -95.194656949074528, 29.55591016056221 ], [ -95.19458194953657, 29.555899161121364 ], [ -95.194511948945319, 29.55591616113465 ], [ -95.194461949729714, 29.555965160683805 ], [ -95.19426694923574, 29.556372161117171 ], [ -95.194285949685224, 29.556597161199136 ], [ -95.194342949681371, 29.5567571610596 ], [ -95.194386948978533, 29.55685016122133 ], [ -95.194468949392956, 29.556938160997543 ], [ -95.194581949026954, 29.557043161609961 ], [ -95.194644949328421, 29.557087161008891 ], [ -95.194713949367724, 29.557120161323787 ], [ -95.194788949521453, 29.557136161040347 ], [ -95.194827949122768, 29.557167161069763 ], [ -95.194914949797791, 29.557235161469098 ], [ -95.194904949691448, 29.55725216105559 ], [ -95.194864949261628, 29.557318161597074 ], [ -95.194759949791603, 29.557404160936965 ], [ -95.194675949076625, 29.557472161020144 ], [ -95.194631949136266, 29.557488161428331 ], [ -95.19453794960512, 29.557494160925724 ], [ -95.194367949176197, 29.55748316151163 ], [ -95.194147949666288, 29.557422161569249 ], [ -95.194059948939568, 29.557384161453363 ], [ -95.193939948904088, 29.55737316096365 ], [ -95.193926948848684, 29.557377161177641 ], [ -95.193776949182535, 29.557428160991716 ], [ -95.193711948836324, 29.557479161687535 ], [ -95.193644949322476, 29.557532161020031 ], [ -95.193600949504827, 29.557604161723837 ], [ -95.193552949565216, 29.557842161855842 ], [ -95.193512949326916, 29.558040161103271 ], [ -95.193342948759721, 29.558885162007758 ], [ -95.193200949027499, 29.559381162007277 ], [ -95.193160949465963, 29.559523161432587 ], [ -95.193304949156513, 29.559589161822057 ], [ -95.193321948804083, 29.559700161934853 ], [ -95.193353949076013, 29.559791161524011 ], [ -95.193405948847257, 29.559874161469832 ], [ -95.193442949324549, 29.559915161649077 ], [ -95.193510949179242, 29.559965161813391 ], [ -95.193672949535539, 29.560047161840057 ], [ -95.193845948925983, 29.560101161629515 ], [ -95.19391994893671, 29.560110162224461 ], [ -95.193981949222149, 29.56010616190969 ], [ -95.194034949890181, 29.560097161444983 ], [ -95.19405294915299, 29.560090161912189 ], [ -95.194072949174867, 29.560089162156512 ], [ -95.194091948976435, 29.560083161556857 ], [ -95.194311949822605, 29.56001216153734 ], [ -95.194436949993275, 29.559930162177082 ], [ -95.194619949308219, 29.559729161864034 ], [ -95.194651949707946, 29.559694161831828 ], [ -95.194715949722152, 29.559655161417535 ], [ -95.194836950016381, 29.559591161647891 ], [ -95.194940949665053, 29.559532161349029 ], [ -95.195003949326548, 29.559504161290246 ], [ -95.19507994948593, 29.559486161707934 ], [ -95.195171949395444, 29.559486161465802 ], [ -95.195218949441227, 29.559495161352128 ], [ -95.19525594934106, 29.559518161878742 ], [ -95.195271949739137, 29.559564162006406 ], [ -95.195244949938228, 29.559687161441229 ], [ -95.195244949867117, 29.559728161843644 ], [ -95.195250949793234, 29.559755161521345 ], [ -95.195286949593196, 29.559791162133195 ], [ -95.195333949671465, 29.559823161452339 ], [ -95.195396949666701, 29.559851161788373 ], [ -95.195483950169887, 29.559872161590832 ], [ -95.195501949727131, 29.559898162064837 ], [ -95.19563894948557, 29.560094161381905 ], [ -95.195720949634534, 29.56017716166512 ], [ -95.195801949614463, 29.560210161473528 ], [ -95.195864949447426, 29.560204162038669 ], [ -95.195921949947646, 29.56017716175473 ], [ -95.196003950435681, 29.560166161671749 ], [ -95.196110950215797, 29.560188161488661 ], [ -95.196198949926639, 29.560177162223784 ], [ -95.196272949534873, 29.560152161968503 ], [ -95.196411949615438, 29.560105161601015 ], [ -95.196518950463073, 29.560100161549794 ], [ -95.196657950017595, 29.560116161419899 ], [ -95.196773949984291, 29.560160162229344 ], [ -95.196852950349978, 29.560188161942111 ], [ -95.196927950506534, 29.560188161767844 ], [ -95.19695395037391, 29.560170161835746 ], [ -95.196973949780585, 29.560157161319669 ], [ -95.197009950322766, 29.560133161722693 ], [ -95.197028950411067, 29.560083161389247 ], [ -95.197018950452815, 29.560067161853681 ], [ -95.196952949650367, 29.559968162012016 ], [ -95.196871950076286, 29.559891161776683 ], [ -95.196801949811302, 29.559808161361197 ], [ -95.196663949804929, 29.559693161531939 ], [ -95.196556950335733, 29.559621161302417 ], [ -95.196462949821083, 29.559528161624801 ], [ -95.196367949836016, 29.559413161306836 ], [ -95.196300949925657, 29.559204161847926 ], [ -95.196248949812315, 29.559132161320058 ], [ -95.196233950180712, 29.559121161587321 ], [ -95.196021949546406, 29.55896716134373 ], [ -95.195984949488505, 29.55890116191938 ], [ -95.195958949534102, 29.558786161539807 ], [ -95.195965949411672, 29.55871416106735 ], [ -95.196015950137649, 29.558621161654653 ], [ -95.196090949836105, 29.558582161166004 ], [ -95.196166950134284, 29.558588161624151 ], [ -95.19624894991253, 29.558637161178879 ], [ -95.196304949917817, 29.558659161791166 ], [ -95.196338950236466, 29.558681161307295 ], [ -95.196506949813013, 29.55879116138756 ], [ -95.196568949574456, 29.558802161856253 ], [ -95.196656949696319, 29.55877516191477 ], [ -95.196826949802869, 29.558687161392729 ], [ -95.196889950127144, 29.558610161689824 ], [ -95.196904950000743, 29.558585161318302 ], [ -95.196933950057456, 29.558538161782291 ], [ -95.196938950316309, 29.558521161589269 ], [ -95.196942949896695, 29.558508161026392 ], [ -95.196947950263038, 29.558487161634158 ], [ -95.196968949719675, 29.558479161033592 ], [ -95.197225950106258, 29.558365161435241 ], [ -95.197358950196858, 29.558317161690937 ], [ -95.197389950680616, 29.558317161269965 ], [ -95.197407950219755, 29.558317161263236 ], [ -95.197443950290008, 29.558318161522486 ], [ -95.19748794995192, 29.558307161445462 ], [ -95.197576950417712, 29.558263161610007 ], [ -95.197619949827029, 29.558241160972187 ], [ -95.197688949983629, 29.558219161201023 ], [ -95.197801949830577, 29.558219161398487 ], [ -95.197870950575208, 29.558291161735699 ], [ -95.197879949964275, 29.558306161401802 ], [ -95.197939950361402, 29.558406161089465 ], [ -95.197971950829626, 29.558511161216334 ], [ -95.197996950037719, 29.558555161778784 ], [ -95.197940950224037, 29.558758161613614 ], [ -95.19794695048563, 29.558879161337085 ], [ -95.198021950837813, 29.558956161890215 ], [ -95.198109950032233, 29.559000161673918 ], [ -95.198197950315333, 29.559000161199748 ], [ -95.198292950786978, 29.558978161868005 ], [ -95.198468950762035, 29.55885116118381 ], [ -95.198564950739907, 29.55876616160549 ], [ -95.198682950931811, 29.558703161876394 ], [ -95.198807950141713, 29.558675161263633 ], [ -95.199021950354009, 29.558675161607166 ], [ -95.199178950643812, 29.558714161781619 ], [ -95.19919395056624, 29.558722161335254 ], [ -95.19924195089888, 29.55874716156627 ], [ -95.199249951035853, 29.558760161115629 ], [ -95.199260950665547, 29.558780161012933 ], [ -95.199285950804111, 29.55888416106173 ], [ -95.199292950615899, 29.55896116178803 ], [ -95.199097951142875, 29.559396161228165 ], [ -95.199009950197322, 29.55962716160175 ], [ -95.19902195061097, 29.559704161839484 ], [ -95.199248951148874, 29.56010016211831 ], [ -95.19933095103319, 29.560188161351579 ], [ -95.199384951065312, 29.560237162009123 ], [ -95.199443951024179, 29.560275162061888 ], [ -95.199592950361364, 29.560323161307185 ], [ -95.199732950887139, 29.560368162079989 ], [ -95.199839950456195, 29.560402161886007 ], [ -95.200007950719225, 29.560423162141351 ], [ -95.200085950474957, 29.560457161869394 ], [ -95.200085951205821, 29.560523162176846 ], [ -95.200047950895183, 29.560605161814244 ], [ -95.199946950865012, 29.560660161786199 ], [ -95.199778951224033, 29.560781161859644 ], [ -95.199732950489519, 29.560814161906116 ], [ -95.199526951345362, 29.560927162159956 ], [ -95.199500950784739, 29.560941161559537 ], [ -95.199445951104963, 29.560957161487146 ], [ -95.199412950648238, 29.56096816158491 ], [ -95.199317950670604, 29.560985162314477 ], [ -95.199223950462383, 29.560985161854937 ], [ -95.199135950262814, 29.561007162251162 ], [ -95.199072950420216, 29.561067162328087 ], [ -95.199053951130267, 29.561122161485738 ], [ -95.199066950492906, 29.561183161697137 ], [ -95.19918595070493, 29.56134816219781 ], [ -95.199305950430542, 29.56146316220693 ], [ -95.199393951270181, 29.561507161994292 ], [ -95.199462950918274, 29.561507162254824 ], [ -95.199575950449429, 29.561485161650388 ], [ -95.199934951423359, 29.561333161791975 ], [ -95.199960950880651, 29.56134016211854 ], [ -95.199972950573454, 29.561343161722057 ], [ -95.200078950728653, 29.56135916179349 ], [ -95.200239950556593, 29.561407161825791 ], [ -95.200336950748166, 29.561436161979902 ], [ -95.200437951252965, 29.56147416152173 ], [ -95.200497950787579, 29.561508162288593 ], [ -95.200613950812837, 29.5615731622098 ], [ -95.20064495128895, 29.56165016221253 ], [ -95.200569951201942, 29.561705162012199 ], [ -95.200437951005057, 29.56172716162455 ], [ -95.200330951579559, 29.561859162362204 ], [ -95.200236951056866, 29.562057161610909 ], [ -95.20017395079708, 29.562233162310612 ], [ -95.200079950929009, 29.562365162113267 ], [ -95.200028951535288, 29.562453162174698 ], [ -95.200035950616126, 29.562634162589255 ], [ -95.200097950732513, 29.562706162156097 ], [ -95.200124951131102, 29.562720161937659 ], [ -95.200292950966883, 29.562810161799369 ], [ -95.200582950990821, 29.562865162377339 ], [ -95.20075895113601, 29.563014162641107 ], [ -95.20086495141453, 29.563141162675738 ], [ -95.200896950960328, 29.563179162260791 ], [ -95.200991950820764, 29.563217162362225 ], [ -95.201060951589355, 29.563217162700305 ], [ -95.201110951230561, 29.563184162050128 ], [ -95.20116995143826, 29.56305616224229 ], [ -95.201180951610354, 29.563029161955203 ], [ -95.201184951779339, 29.563009162265768 ], [ -95.201198951714289, 29.56299216212275 ], [ -95.201178950965101, 29.56278816229856 ], [ -95.201159951717301, 29.562717161840723 ], [ -95.201109951599548, 29.562618162019962 ], [ -95.201106951104379, 29.562474161777068 ], [ -95.201100951633265, 29.562088162106242 ], [ -95.201216951184833, 29.56146016156919 ], [ -95.201303950888715, 29.561327161411267 ], [ -95.201404950872544, 29.561283162270801 ], [ -95.201547951238197, 29.561239161751683 ], [ -95.201704951707868, 29.561235161599662 ], [ -95.201812951850812, 29.561233162048232 ], [ -95.20191895111914, 29.561250161784542 ], [ -95.202183951080357, 29.561332161643033 ], [ -95.202219951435509, 29.561348161631194 ], [ -95.202230951654983, 29.561354162282374 ], [ -95.20238795142329, 29.561419162285297 ], [ -95.202462951556342, 29.561430161727891 ], [ -95.202638952134308, 29.561391162292406 ], [ -95.202795951749067, 29.561342162236691 ], [ -95.202858951745029, 29.561243161569905 ], [ -95.202883951655465, 29.561243161887234 ], [ -95.202959951590785, 29.561138161393082 ], [ -95.202971951578277, 29.560979161822058 ], [ -95.202921951620965, 29.560880161768253 ], [ -95.202879951558771, 29.560843161492478 ], [ -95.202688951725563, 29.560786161787842 ], [ -95.202665951822681, 29.560776161562192 ], [ -95.202544952010498, 29.560726161499847 ], [ -95.202481951392357, 29.560682161494228 ], [ -95.202430951793033, 29.560600161466805 ], [ -95.202437951858471, 29.56055616149305 ], [ -95.202588951956557, 29.56045116149545 ], [ -95.202657951664165, 29.56039116138852 ], [ -95.202700951794171, 29.560368161612185 ], [ -95.202802951615581, 29.560314161165028 ], [ -95.202908952019598, 29.560283161725561 ], [ -95.202971952088461, 29.560264162032919 ], [ -95.203047951944242, 29.560231161417054 ], [ -95.203129951315844, 29.560171161868485 ], [ -95.203110952068684, 29.560094161978427 ], [ -95.203026952029703, 29.560001161273203 ], [ -95.202946951358285, 29.559912161324444 ], [ -95.202921951914021, 29.559830161294613 ], [ -95.202921951530712, 29.559725161222278 ], [ -95.20300395121555, 29.559648161124986 ], [ -95.203110951336754, 29.559654161259527 ], [ -95.20326095176415, 29.559698161259334 ], [ -95.203294951552863, 29.559712161450157 ], [ -95.203349952022847, 29.559736161861949 ], [ -95.203474951870376, 29.559808161126472 ], [ -95.203575951529331, 29.559802161757297 ], [ -95.20360095151014, 29.559747161758818 ], [ -95.203590952251758, 29.559544161193617 ], [ -95.20358795201787, 29.559489161580036 ], [ -95.203531952037039, 29.559428161557843 ], [ -95.203537952140692, 29.55931816178936 ], [ -95.203562952083274, 29.559230161673391 ], [ -95.203732952351373, 29.559027161719182 ], [ -95.20381695156496, 29.55897016152041 ], [ -95.203845951474321, 29.558950160999444 ], [ -95.203927952329224, 29.558856161562552 ], [ -95.203946951388346, 29.558730161177984 ], [ -95.203919952208352, 29.558611161214408 ], [ -95.203889952005355, 29.558477160766845 ], [ -95.203914951537655, 29.558361160795226 ], [ -95.204002951853937, 29.558262161565789 ], [ -95.20412395242262, 29.558191160873939 ], [ -95.204184951724301, 29.558195161053753 ], [ -95.204336952096199, 29.558227161321771 ], [ -95.204481951723224, 29.558282160736308 ], [ -95.204536952314086, 29.558322161070578 ], [ -95.204568952051446, 29.558370161421831 ], [ -95.204591952370279, 29.558425160850522 ], [ -95.20458695246478, 29.558497161498138 ], [ -95.204540951754566, 29.558568160896151 ], [ -95.204512951504924, 29.558612161625636 ], [ -95.204498951843263, 29.558659161473997 ], [ -95.204503952521421, 29.558712161374114 ], [ -95.204493951621373, 29.558724161262454 ], [ -95.204342951755365, 29.558851161600739 ], [ -95.204330951521868, 29.55891116094779 ], [ -95.204405952056462, 29.558950160939613 ], [ -95.204669951881442, 29.55904316107797 ], [ -95.204757952259413, 29.559049161398303 ], [ -95.204797952584585, 29.559046161166648 ], [ -95.204818951769937, 29.559045161088111 ], [ -95.204973952643087, 29.559136161160563 ], [ -95.205083952538146, 29.55918016135935 ], [ -95.205174951789559, 29.559212160911386 ], [ -95.205389951911698, 29.559248161305753 ], [ -95.20557695250875, 29.559271161640538 ], [ -95.205682951945448, 29.559260161397297 ], [ -95.205763952053701, 29.559251160894608 ], [ -95.205810952571397, 29.559236160998598 ], [ -95.20587795233412, 29.559212161168865 ], [ -95.205942951977079, 29.559168160960027 ], [ -95.205991952574024, 29.559116161586378 ], [ -95.206006952414228, 29.55909316165824 ], [ -95.206040952457414, 29.559070160962275 ], [ -95.206103952100236, 29.558993161611145 ], [ -95.206122952099491, 29.558933161222271 ], [ -95.206116952101468, 29.558861160820644 ], [ -95.2060919525955, 29.558801161494564 ], [ -95.205994952267062, 29.558808160901219 ], [ -95.205946952886464, 29.55881216137033 ], [ -95.20586495286156, 29.558806161459767 ], [ -95.205789951951701, 29.558768161633562 ], [ -95.205675952833957, 29.558636161092785 ], [ -95.205631952125842, 29.558526160713743 ], [ -95.205606952135341, 29.558407160994015 ], [ -95.205594952045644, 29.558350161044199 ], [ -95.205594952648255, 29.558279161402229 ], [ -95.205562952183058, 29.558015160648189 ], [ -95.205562951775491, 29.557839160943914 ], [ -95.205581952294565, 29.557767161244172 ], [ -95.20567595222046, 29.557679160624016 ], [ -95.205770952414639, 29.557630161044546 ], [ -95.205825952469809, 29.557617161148613 ], [ -95.205864952387117, 29.55760816052128 ], [ -95.206059952379746, 29.557613160677018 ], [ -95.20624195261361, 29.557674161384938 ], [ -95.206361952331463, 29.557729160852784 ], [ -95.206455952468517, 29.55780016054381 ], [ -95.20650595274364, 29.55785516096568 ], [ -95.206600952371872, 29.557905161097178 ], [ -95.206700952678645, 29.55793716131025 ], [ -95.206720952224543, 29.557938161066375 ], [ -95.206826952124132, 29.557943161248684 ], [ -95.207002952802114, 29.557932161433921 ], [ -95.207160952938167, 29.557888160777022 ], [ -95.207273952319468, 29.557844160966336 ], [ -95.207292952472599, 29.557816161176476 ], [ -95.207387953013523, 29.557813161104399 ], [ -95.207620952317754, 29.557804160765524 ], [ -95.207732952630451, 29.55780016115871 ], [ -95.207820953054707, 29.557849161171021 ], [ -95.207845952762241, 29.557959160881833 ], [ -95.20778295266399, 29.558031160660597 ], [ -95.207606953180516, 29.558135161221909 ], [ -95.207524952883347, 29.558163160843279 ], [ -95.20699695267237, 29.558471160726675 ], [ -95.206964952708248, 29.558471161204434 ], [ -95.206940953009777, 29.558471161114131 ], [ -95.206877952277139, 29.558515160715061 ], [ -95.2067579526461, 29.558735160749571 ], [ -95.206745952487623, 29.558790160836455 ], [ -95.206739952630656, 29.558830161290793 ], [ -95.206753953000671, 29.558913161136626 ], [ -95.206800952772539, 29.559009161437743 ], [ -95.206876952878801, 29.559100161594376 ], [ -95.206958952713563, 29.559164160864761 ], [ -95.207050952229622, 29.559200161410285 ], [ -95.207123952340851, 29.55921516122147 ], [ -95.207196953046974, 29.559223161072545 ], [ -95.207294952684904, 29.559224161329109 ], [ -95.207388952316549, 29.559196160916159 ], [ -95.207522953164897, 29.559150161103023 ], [ -95.207575953239399, 29.559175161052032 ], [ -95.207616953166635, 29.559234161320404 ], [ -95.207751952792492, 29.559427161472954 ], [ -95.20803495258933, 29.559658161034214 ], [ -95.208128952781394, 29.559719161466909 ], [ -95.20828695293504, 29.55979616150875 ], [ -95.20835595258994, 29.559840160922768 ], [ -95.208512952871644, 29.559895161175572 ], [ -95.208544953076384, 29.559906161247817 ], [ -95.208726952665074, 29.559878161548625 ], [ -95.208795953441111, 29.559818161119779 ], [ -95.208820952789353, 29.559752161087477 ], [ -95.208820952892708, 29.559664160906429 ], [ -95.20873995284478, 29.559416160823062 ], [ -95.208739952897261, 29.559301161147289 ], [ -95.208751953373138, 29.559224160876703 ], [ -95.208770953672442, 29.55917416084489 ], [ -95.208914953072437, 29.559064160922542 ], [ -95.20904795299802, 29.55903716122419 ], [ -95.209292953532596, 29.559020161224403 ], [ -95.209336952946671, 29.559031160929358 ], [ -95.209386953681886, 29.559031161000185 ], [ -95.209468953797952, 29.559023161586595 ], [ -95.209506952832626, 29.559020160997324 ], [ -95.209687953330459, 29.558960160786775 ], [ -95.20974995319925, 29.558912161224871 ], [ -95.209821953795796, 29.558812161364173 ], [ -95.209896953380834, 29.558707161271368 ], [ -95.209908953740708, 29.558684160773144 ], [ -95.209940953364423, 29.558624160936191 ], [ -95.210015953764426, 29.558553161117572 ], [ -95.210210953388327, 29.558448161256578 ], [ -95.210282953229154, 29.558424161042019 ], [ -95.21032395359272, 29.558410161309524 ], [ -95.210435953454208, 29.558396160541136 ], [ -95.210462953401176, 29.558393161232438 ], [ -95.210663953529192, 29.558393160931093 ], [ -95.210789953442202, 29.558459161175517 ], [ -95.210889953360066, 29.558531160886883 ], [ -95.210940953247615, 29.558591161144061 ], [ -95.211015953507072, 29.558838161077173 ], [ -95.211053954025473, 29.558921160646051 ], [ -95.211116953879127, 29.559014161456957 ], [ -95.211273954100207, 29.559146161298294 ], [ -95.211424954162254, 29.559207161131621 ], [ -95.211537954042385, 29.559201160848144 ], [ -95.211663953638606, 29.559174160647892 ], [ -95.211745954009089, 29.559141160879676 ], [ -95.211833954165243, 29.559086161282 ], [ -95.211971954034482, 29.55886616137871 ], [ -95.212034954175635, 29.558789161180645 ], [ -95.212109954136722, 29.558717160871034 ], [ -95.21216195444147, 29.558678160854249 ], [ -95.212204953663331, 29.558646161257755 ], [ -95.212311953701146, 29.558613160640515 ], [ -95.212374954048911, 29.55861316130251 ], [ -95.212537954393412, 29.558613160612239 ], [ -95.212606954448077, 29.558635160507279 ], [ -95.21270195379762, 29.558679161019015 ], [ -95.212833954300237, 29.558778161365609 ], [ -95.212896954499968, 29.558844160948301 ], [ -95.213021954629028, 29.558909161158507 ], [ -95.213135954744573, 29.558921160718128 ], [ -95.213198953869508, 29.558893161250875 ], [ -95.213236953961186, 29.558867161171559 ], [ -95.21342495429144, 29.558739161348903 ], [ -95.213498954516737, 29.558698161308762 ], [ -95.213524954586504, 29.558684161043612 ], [ -95.213613954210061, 29.558607160601703 ], [ -95.213616954435807, 29.558580161243945 ], [ -95.213622954663606, 29.558532161296643 ], [ -95.213625954528467, 29.558502161186439 ], [ -95.213612954228992, 29.55845816044819 ], [ -95.213468954573727, 29.558371160788923 ], [ -95.2129399538033, 29.558167160421849 ], [ -95.212744954456355, 29.557986161087065 ], [ -95.212782954589713, 29.557876161104844 ], [ -95.212914953754165, 29.557733161048798 ], [ -95.213065954393102, 29.557623160999043 ], [ -95.213241953977018, 29.55747416034389 ], [ -95.213323954165546, 29.557397160487639 ], [ -95.213392953895422, 29.557315160427933 ], [ -95.213537954675004, 29.5572161605993 ], [ -95.213669953905054, 29.557161160851763 ], [ -95.21371095430284, 29.557107161038587 ], [ -95.213732954025744, 29.557078160211216 ], [ -95.213744953940136, 29.556996160121226 ], [ -95.213688953926081, 29.556930160504031 ], [ -95.213511954750146, 29.556919160604373 ], [ -95.213466954260156, 29.5569241604375 ], [ -95.213320953977743, 29.556913160610907 ], [ -95.213057953651742, 29.557104160676683 ], [ -95.212964953757933, 29.557172160780144 ], [ -95.212806953868281, 29.556248160301823 ], [ -95.212992954391979, 29.556021160294389 ], [ -95.213209953958312, 29.555755160708518 ], [ -95.213701954392477, 29.556319160666057 ], [ -95.21384295457591, 29.556316160401153 ], [ -95.213867954647384, 29.556327160525687 ], [ -95.214031953906471, 29.556351160747578 ], [ -95.21410895433398, 29.556330160026096 ], [ -95.214171954003177, 29.556297160720661 ], [ -95.21426095464075, 29.556193160447563 ], [ -95.214260954930154, 29.556149160396124 ], [ -95.21424995421313, 29.556125160774915 ], [ -95.214241954596261, 29.556105160445039 ], [ -95.213888954456721, 29.555775160702815 ], [ -95.213819953953546, 29.555665160354263 ], [ -95.213817954061824, 29.555650160494725 ], [ -95.213874953834676, 29.555438160137985 ], [ -95.21394395390071, 29.555317160083494 ], [ -95.214087954803759, 29.555225160217351 ], [ -95.214140953978273, 29.555193160601007 ], [ -95.214278954802054, 29.555264160137881 ], [ -95.21443995462964, 29.555437160645546 ], [ -95.214497954017887, 29.555584159905667 ], [ -95.214592954858901, 29.555789160243432 ], [ -95.214756954365328, 29.555872160666762 ], [ -95.21486095499948, 29.555830160334267 ], [ -95.215073954997891, 29.555612160340324 ], [ -95.215313955012064, 29.5553831604899 ], [ -95.215500955117079, 29.555164160343477 ], [ -95.215671955018607, 29.555046160015536 ], [ -95.215853955095071, 29.554984159645468 ], [ -95.215953954324206, 29.555065159632882 ], [ -95.21593795436722, 29.555154160373043 ], [ -95.215879954301528, 29.555310159963877 ], [ -95.215900954390733, 29.555445160228803 ], [ -95.215989954857122, 29.555507160173452 ], [ -95.216150954942691, 29.555620159947605 ], [ -95.21617695456527, 29.555631159939644 ], [ -95.216198955058857, 29.555641160261747 ], [ -95.216308955271941, 29.555689160355261 ], [ -95.216355955105229, 29.555771160016569 ], [ -95.216389954691664, 29.555595160481182 ], [ -95.216421955189219, 29.555432159940562 ], [ -95.216427954470987, 29.555401160440404 ], [ -95.216432954930198, 29.555374159845986 ], [ -95.216442954742632, 29.555320160430522 ], [ -95.21645895457894, 29.555233160135788 ], [ -95.216475955445915, 29.555143160338702 ], [ -95.216601955436175, 29.554483159858403 ], [ -95.216614955207817, 29.554348160277964 ], [ -95.216632955369775, 29.55414715946689 ], [ -95.21671695499515, 29.553735160213424 ], [ -95.217117954764717, 29.551701159048505 ], [ -95.217195954926609, 29.551277159105478 ], [ -95.217562955484695, 29.549388159083048 ], [ -95.217691955399445, 29.548718159190198 ], [ -95.217752955241664, 29.548389158253055 ], [ -95.217766955022611, 29.548314158301345 ], [ -95.218569955232411, 29.543830157948793 ], [ -95.218639955016698, 29.543420157881588 ], [ -95.218826955209394, 29.542436157716605 ], [ -95.218937955322545, 29.541774157288046 ], [ -95.2189539549817, 29.541681156865167 ], [ -95.219072954840641, 29.54140315691242 ], [ -95.219097955218444, 29.541251157061843 ], [ -95.219385955121766, 29.539529156630216 ], [ -95.219456954573445, 29.539149156489984 ], [ -95.219592954816235, 29.53834415663432 ], [ -95.219755955022663, 29.537551156571716 ], [ -95.219901955088929, 29.536773155979994 ], [ -95.22030995518233, 29.534625155636206 ], [ -95.220422954604899, 29.533986155193759 ], [ -95.220865954971458, 29.531621155043108 ], [ -95.22089795465233, 29.531419154932536 ], [ -95.221012954587309, 29.530708155222278 ], [ -95.221035954861492, 29.530565154707144 ], [ -95.221252954892066, 29.529243154562145 ], [ -95.221342955030693, 29.528750154321951 ], [ -95.22134995525299, 29.528707154509142 ], [ -95.221743954741754, 29.526422153693691 ], [ -95.221923954836157, 29.525343153994356 ], [ -95.222158954732535, 29.523988153664067 ], [ -95.222254955546433, 29.523404153808535 ], [ -95.222497954866412, 29.521999152983224 ], [ -95.222853954889544, 29.51987315257032 ], [ -95.223074954538404, 29.518565152454585 ], [ -95.223179955214121, 29.517942152255397 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1622, "Tract": "48167724900", "Area_SqMi": 0.22472485471858075, "total_2009": 227, "total_2010": 254, "total_2011": 276, "total_2012": 39, "total_2013": 37, "total_2014": 38, "total_2015": 25, "total_2016": 36, "total_2017": 42, "total_2018": 42, "total_2019": 48, "total_2020": 49, "age1": 2, "age2": 23, "age3": 12, "earn1": 16, "earn2": 12, "earn3": 9, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 2, "naics_s07": 0, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 1, "naics_s12": 0, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 17, "naics_s19": 3, "naics_s20": 0, "race1": 33, "race2": 1, "race3": 1, "race4": 2, "race5": 0, "race6": 0, "ethnicity1": 24, "ethnicity2": 13, "edu1": 9, "edu2": 9, "edu3": 10, "edu4": 7, "Shape_Length": 10481.14560688589, "Shape_Area": 6264944.3291212274, "total_2021": 42, "total_2022": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.805971837916744, 29.289688118259164 ], [ -94.805826837544927, 29.28925111894695 ], [ -94.805685838175421, 29.28882311806252 ], [ -94.805539837792779, 29.288381118192824 ], [ -94.805396838212317, 29.287948118704662 ], [ -94.805310838256204, 29.287689117817123 ], [ -94.805247837265455, 29.287507118316018 ], [ -94.805093837195471, 29.287066118439537 ], [ -94.804946838022744, 29.286645118419475 ], [ -94.804794837867348, 29.286209118045939 ], [ -94.804641837106089, 29.285770118114677 ], [ -94.804494837261984, 29.285336117407876 ], [ -94.804343837898358, 29.28489211740245 ], [ -94.804198837522847, 29.284466117463491 ], [ -94.804038837211877, 29.284022117269938 ], [ -94.803889837296396, 29.283605117546045 ], [ -94.803842836808101, 29.283476117157043 ], [ -94.803598836776132, 29.282728117567029 ], [ -94.803448836963938, 29.282276117194083 ], [ -94.803311836792105, 29.281866117015745 ], [ -94.802661837182214, 29.282034117199661 ], [ -94.802000836236687, 29.282216116856784 ], [ -94.801031836010722, 29.282496117545428 ], [ -94.801097836775909, 29.282746117665699 ], [ -94.801153836232487, 29.282890117128851 ], [ -94.801253836069463, 29.283146117577022 ], [ -94.80131783645615, 29.283327117023763 ], [ -94.800191836391093, 29.283616117287327 ], [ -94.799621836618556, 29.283763117491983 ], [ -94.799042836149582, 29.283917117274637 ], [ -94.798088835567157, 29.284172117889245 ], [ -94.797889835671427, 29.284223118124938 ], [ -94.797080835785366, 29.284429118058071 ], [ -94.796755835359804, 29.284519117968436 ], [ -94.79690183588616, 29.284949117723848 ], [ -94.797050835344308, 29.285388118020677 ], [ -94.797199835701392, 29.285825118181844 ], [ -94.797346836042792, 29.286256118487216 ], [ -94.797497835256038, 29.286700118187905 ], [ -94.797644835578922, 29.287134118381932 ], [ -94.797789835420531, 29.287560118789791 ], [ -94.797939835719788, 29.288001118470103 ], [ -94.798087836116309, 29.288437118726733 ], [ -94.798235835551353, 29.288867118933744 ], [ -94.798385835576497, 29.289303118532228 ], [ -94.798536836102016, 29.28974011913564 ], [ -94.798683836104061, 29.290170118764031 ], [ -94.798832835859727, 29.290607119069399 ], [ -94.798955836469162, 29.29096611909452 ], [ -94.7991318362199, 29.291481118909228 ], [ -94.800317836562385, 29.291170119361599 ], [ -94.801410837196912, 29.290881118711098 ], [ -94.802590837647912, 29.290570119033767 ], [ -94.803694837471227, 29.290278119067608 ], [ -94.804546838046562, 29.290052118939812 ], [ -94.804877838251727, 29.289968118556803 ], [ -94.805971837916744, 29.289688118259164 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1623, "Tract": "48167720200", "Area_SqMi": 2.8376421619336254, "total_2009": 2437, "total_2010": 1739, "total_2011": 1729, "total_2012": 1662, "total_2013": 1751, "total_2014": 1914, "total_2015": 1938, "total_2016": 2186, "total_2017": 2571, "total_2018": 2587, "total_2019": 2037, "total_2020": 2080, "age1": 911, "age2": 1458, "age3": 628, "earn1": 870, "earn2": 1177, "earn3": 950, "naics_s01": 3, "naics_s02": 9, "naics_s03": 24, "naics_s04": 85, "naics_s05": 41, "naics_s06": 28, "naics_s07": 186, "naics_s08": 4, "naics_s09": 75, "naics_s10": 110, "naics_s11": 46, "naics_s12": 591, "naics_s13": 37, "naics_s14": 411, "naics_s15": 13, "naics_s16": 665, "naics_s17": 4, "naics_s18": 522, "naics_s19": 143, "naics_s20": 0, "race1": 2421, "race2": 382, "race3": 21, "race4": 118, "race5": 6, "race6": 49, "ethnicity1": 1945, "ethnicity2": 1052, "edu1": 399, "edu2": 567, "edu3": 627, "edu4": 493, "Shape_Length": 66344.452621033299, "Shape_Area": 79108606.801611021, "total_2021": 2521, "total_2022": 2997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.205974951449036, 29.533565156088684 ], [ -95.205149951518734, 29.532875155876773 ], [ -95.20447995112167, 29.532301156135027 ], [ -95.203457950899946, 29.531425155988288 ], [ -95.203128950893117, 29.531154155868716 ], [ -95.202999950317732, 29.531048155273627 ], [ -95.202188949836625, 29.530380155782623 ], [ -95.201181949746584, 29.529551155221412 ], [ -95.200931949601681, 29.529346155134448 ], [ -95.199975949312375, 29.528558154817105 ], [ -95.199597949155176, 29.52824715493362 ], [ -95.199294949715323, 29.527994155393017 ], [ -95.198480948874916, 29.527313154892752 ], [ -95.197879949021797, 29.52681115468982 ], [ -95.196977948662834, 29.526057154719794 ], [ -95.196354948746148, 29.52553615454703 ], [ -95.195851948279056, 29.525116154726906 ], [ -95.193973947744709, 29.523550154177723 ], [ -95.19317694745682, 29.522886154040474 ], [ -95.191690946981311, 29.521646153597494 ], [ -95.191254946591897, 29.521186153889818 ], [ -95.191081947162488, 29.520919154081849 ], [ -95.190873947387232, 29.52059815358896 ], [ -95.190714947091536, 29.520074153565247 ], [ -95.190611947041361, 29.519503153452128 ], [ -95.190349947031052, 29.51804515290063 ], [ -95.189956946774231, 29.515860153117625 ], [ -95.189747946855178, 29.515002152819243 ], [ -95.189755946765104, 29.514698152831706 ], [ -95.189527946731005, 29.513512152156892 ], [ -95.189306946186079, 29.512517152327817 ], [ -95.18910894580597, 29.511569151962302 ], [ -95.18896994578148, 29.510795151424684 ], [ -95.188808946280162, 29.509902151705209 ], [ -95.188424945357653, 29.509257151827292 ], [ -95.188163946185156, 29.508806151405988 ], [ -95.18756394502897, 29.508165151408814 ], [ -95.186311945453156, 29.507028151605603 ], [ -95.185529944658853, 29.506352151424313 ], [ -95.18539594510672, 29.506233150966025 ], [ -95.184677944204637, 29.505436150491491 ], [ -95.183873944611264, 29.504386150401547 ], [ -95.183526944351058, 29.503932150331032 ], [ -95.183081944024437, 29.503281150483371 ], [ -95.182768944253866, 29.502784150751967 ], [ -95.182355944027549, 29.502019150432016 ], [ -95.18207594361445, 29.501606149743495 ], [ -95.181906944195177, 29.501281150137071 ], [ -95.181756943963819, 29.500988150072683 ], [ -95.181660943721297, 29.500803149908268 ], [ -95.181581943962343, 29.500672149748734 ], [ -95.181319943786676, 29.500237150016758 ], [ -95.181224943516114, 29.500060149495706 ], [ -95.181149943026597, 29.499922149484128 ], [ -95.180927943379601, 29.499526149482225 ], [ -95.17972094337469, 29.497375149402732 ], [ -95.179390943177765, 29.496709149387041 ], [ -95.178597942675552, 29.495616148747281 ], [ -95.177837942410036, 29.494932149066646 ], [ -95.177504942115064, 29.494632148620354 ], [ -95.176876941798213, 29.494249148952008 ], [ -95.176247941811624, 29.493867148530811 ], [ -95.174710941161294, 29.49322814847849 ], [ -95.172536941413753, 29.492356148645804 ], [ -95.171600940553404, 29.491981148489284 ], [ -95.170520940571237, 29.491564148160045 ], [ -95.168468939867736, 29.491094148122855 ], [ -95.166549939580335, 29.490668148311133 ], [ -95.166399939805089, 29.490634148352683 ], [ -95.16632193923418, 29.490617148437391 ], [ -95.166207939301898, 29.49059114867303 ], [ -95.164750938703392, 29.492424148767959 ], [ -95.163697939242709, 29.493751148932255 ], [ -95.163561939180994, 29.493922149124604 ], [ -95.163519939224358, 29.493976148942227 ], [ -95.163440938944788, 29.494075149675577 ], [ -95.163314938956148, 29.494233149686139 ], [ -95.1628039390678, 29.494889149197469 ], [ -95.162761938138132, 29.494949149506738 ], [ -95.161149938664906, 29.496962149997128 ], [ -95.160805938375162, 29.497399149595211 ], [ -95.160731937891143, 29.497495149887637 ], [ -95.160707938442314, 29.497525150243838 ], [ -95.160930938206803, 29.497430149738307 ], [ -95.161302938357892, 29.497326150033981 ], [ -95.161616938507933, 29.497302150245773 ], [ -95.161891938890136, 29.49732215032693 ], [ -95.16285893912341, 29.497548149708514 ], [ -95.163013938917643, 29.497626150067571 ], [ -95.16338093881518, 29.497809150103482 ], [ -95.163660939391278, 29.497927149868829 ], [ -95.163681938449457, 29.497942150128377 ], [ -95.163711938655595, 29.497953150390352 ], [ -95.163820939145026, 29.498005150147158 ], [ -95.163937939073733, 29.498061150321355 ], [ -95.163955939303122, 29.498079150136636 ], [ -95.164107939189051, 29.498237149952878 ], [ -95.164223939568771, 29.498357150417931 ], [ -95.164276939428603, 29.498528150299766 ], [ -95.16427193881627, 29.498708149894721 ], [ -95.16415993870244, 29.498978149807396 ], [ -95.163657939441052, 29.499435150566441 ], [ -95.163627938884446, 29.499461150488372 ], [ -95.163384938766754, 29.499684150790237 ], [ -95.163363938399982, 29.499703150734277 ], [ -95.163306938700629, 29.499787150576388 ], [ -95.163267939181495, 29.49984415061849 ], [ -95.163126938569263, 29.500049150665863 ], [ -95.163109939308654, 29.500073150355014 ], [ -95.163095938374482, 29.500124150525931 ], [ -95.163046938887433, 29.500299150262968 ], [ -95.16293893855034, 29.500688150342707 ], [ -95.162924938543938, 29.500736150603252 ], [ -95.162902939319423, 29.500987150937718 ], [ -95.162908938609888, 29.501076150717601 ], [ -95.16292793888968, 29.501345150482599 ], [ -95.162968938413442, 29.501442150746733 ], [ -95.163004939012012, 29.501525150797249 ], [ -95.163027938528558, 29.50158015088553 ], [ -95.163087939081521, 29.501658150679134 ], [ -95.16313893910619, 29.501746151159484 ], [ -95.163296939026665, 29.5019271505505 ], [ -95.16345493910238, 29.502052150695203 ], [ -95.163615938947572, 29.502153150754367 ], [ -95.163848938646368, 29.502260150714058 ], [ -95.164072939040196, 29.502340150900299 ], [ -95.164274939049974, 29.502366150924427 ], [ -95.164370939329174, 29.502327151129673 ], [ -95.164649939218407, 29.502335151004637 ], [ -95.164838939083552, 29.502314150664631 ], [ -95.164903939339126, 29.502312151178383 ], [ -95.164915939470347, 29.502312150678399 ], [ -95.165515939953735, 29.502188150833927 ], [ -95.165699939741671, 29.502108150448525 ], [ -95.16575993911195, 29.502108151158271 ], [ -95.165812939512577, 29.50210815055647 ], [ -95.16593393933239, 29.502108150775687 ], [ -95.166438940159139, 29.502110150478799 ], [ -95.166457939311016, 29.502116150922145 ], [ -95.166530939779463, 29.502141150955875 ], [ -95.166623939811615, 29.5021711509022 ], [ -95.166770940234187, 29.502220151151874 ], [ -95.166783940077806, 29.502224150455547 ], [ -95.167088940155026, 29.502405150822874 ], [ -95.167145939763714, 29.502487151269396 ], [ -95.167195939891656, 29.502558151081669 ], [ -95.167216940332054, 29.502624151094835 ], [ -95.16726694012074, 29.502779151132433 ], [ -95.167045939682694, 29.503570151510196 ], [ -95.167031940216262, 29.503801151315653 ], [ -95.167030940172708, 29.503820151268918 ], [ -95.167044940555172, 29.503883151029473 ], [ -95.16705493994516, 29.503933150771193 ], [ -95.167074939985923, 29.503988151603245 ], [ -95.167100939609966, 29.504026151059204 ], [ -95.167134939978993, 29.50405615119519 ], [ -95.167165939790365, 29.504078151567807 ], [ -95.167231940104955, 29.504130150933104 ], [ -95.167363940611338, 29.504187151237257 ], [ -95.167523939729321, 29.504248151018192 ], [ -95.16760993975079, 29.504297151430869 ], [ -95.167630940695489, 29.504312151050851 ], [ -95.167683940622766, 29.504349151578626 ], [ -95.167731940078696, 29.504413151441085 ], [ -95.167726940179236, 29.504496151567338 ], [ -95.167705940739083, 29.504560150876991 ], [ -95.167668939941052, 29.504604150845886 ], [ -95.167657940642428, 29.50462015123902 ], [ -95.167527939707185, 29.504732151541273 ], [ -95.167469940678799, 29.504768151094186 ], [ -95.167436940337424, 29.504788151777461 ], [ -95.167395940219663, 29.504813150996544 ], [ -95.167335940140532, 29.504858151523873 ], [ -95.167296940418879, 29.504904151488393 ], [ -95.167273940206428, 29.504969151406343 ], [ -95.16725693988478, 29.50505415096686 ], [ -95.16720594016725, 29.505314151024102 ], [ -95.167201939706302, 29.505372151341088 ], [ -95.16720594061394, 29.505579151620083 ], [ -95.16723194006768, 29.505749151620602 ], [ -95.167291940230882, 29.505839151640547 ], [ -95.16736993993463, 29.505930151685813 ], [ -95.167534940525854, 29.50605015188837 ], [ -95.167729939909492, 29.50616015172082 ], [ -95.16819794073642, 29.50638615142844 ], [ -95.168635940426, 29.506541151269147 ], [ -95.169021940574467, 29.506643151498952 ], [ -95.169389940538721, 29.506711151799426 ], [ -95.169875940660262, 29.506797151324701 ], [ -95.170173940771136, 29.506880151576812 ], [ -95.170324941182855, 29.506937151566117 ], [ -95.1704809413569, 29.507035151338968 ], [ -95.170615941264231, 29.507145151897394 ], [ -95.170736941477642, 29.507263151482302 ], [ -95.170758940910943, 29.507294151901679 ], [ -95.170941941431423, 29.507553152032138 ], [ -95.171002940844645, 29.507725152232933 ], [ -95.171041941155067, 29.508191152138163 ], [ -95.171209941077421, 29.508709152065187 ], [ -95.171309941863171, 29.509458151880395 ], [ -95.171250941568658, 29.50970315180113 ], [ -95.171065941775993, 29.510024151997875 ], [ -95.170832940950845, 29.510227152384346 ], [ -95.170491941431294, 29.510429152455398 ], [ -95.169940941477151, 29.510610152553959 ], [ -95.169645940651208, 29.510707152120712 ], [ -95.168907941135885, 29.510717152974884 ], [ -95.168265940918857, 29.51083815230831 ], [ -95.168231940445423, 29.510859152798137 ], [ -95.168062941080038, 29.510961152374495 ], [ -95.167872940691495, 29.511143152597086 ], [ -95.167784940893725, 29.511226152559448 ], [ -95.167779940054004, 29.511240152883527 ], [ -95.167716941001743, 29.511331152280452 ], [ -95.167608940577011, 29.511486152400057 ], [ -95.167538940622038, 29.511599152818071 ], [ -95.167486940513001, 29.511756153093682 ], [ -95.16745294013721, 29.511852152881282 ], [ -95.167417940833658, 29.511992153046322 ], [ -95.167403940464538, 29.512078153063808 ], [ -95.167391940437057, 29.512154152670405 ], [ -95.167382940782019, 29.512252153068719 ], [ -95.167391940977041, 29.512350153224233 ], [ -95.167443940200286, 29.512475153234647 ], [ -95.167504940914696, 29.512554153362242 ], [ -95.167629940844122, 29.512648152721333 ], [ -95.167647940246468, 29.51265615278415 ], [ -95.167746941058581, 29.512697153295846 ], [ -95.168028941001509, 29.512769152863449 ], [ -95.168340941052975, 29.512859152758068 ], [ -95.168639940930234, 29.512973153146675 ], [ -95.168686940836679, 29.512997152715506 ], [ -95.168750940569325, 29.513061152906936 ], [ -95.169062940623917, 29.513374153326065 ], [ -95.16907394123028, 29.513393153256647 ], [ -95.169107940504119, 29.513452153280245 ], [ -95.169118940810691, 29.51347215346695 ], [ -95.169262940739486, 29.513727153200072 ], [ -95.169341940868122, 29.514371153098526 ], [ -95.169443941012872, 29.514644153454245 ], [ -95.169674940924921, 29.514897153712596 ], [ -95.16995894134854, 29.515041153410511 ], [ -95.17031094148382, 29.51513915294754 ], [ -95.170597940970907, 29.515155153159938 ], [ -95.17094794124516, 29.514969152907984 ], [ -95.171394941248082, 29.514457153470808 ], [ -95.171828942213068, 29.514255153259782 ], [ -95.172113942295681, 29.514226153174508 ], [ -95.172646941463086, 29.514259153348597 ], [ -95.173424941636071, 29.514486153555612 ], [ -95.173786942335042, 29.514658153011275 ], [ -95.174134941873106, 29.51491215358304 ], [ -95.17433394203772, 29.515182153041728 ], [ -95.17437494194084, 29.515535153407235 ], [ -95.17429394264434, 29.515739153714431 ], [ -95.173893942804483, 29.516046153066164 ], [ -95.173664942417346, 29.516298153273716 ], [ -95.173624942190187, 29.516387153220084 ], [ -95.173590941770229, 29.516464153790576 ], [ -95.173593942720188, 29.516517153658388 ], [ -95.173588942644187, 29.51654215352 ], [ -95.173580942537214, 29.516636153647752 ], [ -95.17359394267379, 29.516784153695021 ], [ -95.173645942448744, 29.517003153459285 ], [ -95.173723942344168, 29.517202153663785 ], [ -95.173854942528422, 29.51737315404511 ], [ -95.173991942334055, 29.517511153801745 ], [ -95.174174942520168, 29.517717153915935 ], [ -95.174210942820963, 29.517766153806736 ], [ -95.174263942021227, 29.517838153452693 ], [ -95.174459942372593, 29.518068154261961 ], [ -95.174680942942629, 29.518227153451299 ], [ -95.17504094305248, 29.518291154083855 ], [ -95.175277942899768, 29.518155154113977 ], [ -95.175438942440195, 29.517947153704942 ], [ -95.175562942815816, 29.517383153349932 ], [ -95.175845942657219, 29.517033153992827 ], [ -95.17598294247118, 29.516956153940725 ], [ -95.176246942677366, 29.516856153496342 ], [ -95.176556942674708, 29.516832153426581 ], [ -95.177617943035827, 29.516946153083079 ], [ -95.177972943664756, 29.51703315350467 ], [ -95.178331943954944, 29.517208153493346 ], [ -95.178582943748268, 29.517386153990216 ], [ -95.178680943829946, 29.517456153189482 ], [ -95.178737943449022, 29.51752815340549 ], [ -95.17877994389886, 29.51784815357373 ], [ -95.178794943735625, 29.517996154054615 ], [ -95.17880494362916, 29.518043153593105 ], [ -95.178956943835246, 29.51840215343282 ], [ -95.178945943433561, 29.518464153336236 ], [ -95.178930944108757, 29.518547153729923 ], [ -95.178890943876254, 29.518776153434096 ], [ -95.178900943720492, 29.51889715362816 ], [ -95.1789109439963, 29.519016154202266 ], [ -95.178931943497219, 29.519275154255684 ], [ -95.17898294389822, 29.51940315383866 ], [ -95.179064943552106, 29.519610154091822 ], [ -95.17929394385348, 29.519856154192418 ], [ -95.179405944075683, 29.519891153647862 ], [ -95.179529943796936, 29.519949154502939 ], [ -95.179673944489934, 29.519975154177171 ], [ -95.179799943850895, 29.519987153701688 ], [ -95.179894944008311, 29.519983153975765 ], [ -95.180059943879186, 29.519960154496591 ], [ -95.180159943779316, 29.51991515390409 ], [ -95.180203943645367, 29.519877153602323 ], [ -95.180233943842836, 29.519835153897066 ], [ -95.180268944211576, 29.51976015382327 ], [ -95.180290944391203, 29.519669153560155 ], [ -95.18029094414571, 29.51961815359174 ], [ -95.18028194377429, 29.519544153950633 ], [ -95.180262944207328, 29.51949915429762 ], [ -95.18026694441248, 29.519465153982214 ], [ -95.180158944325569, 29.519247154278155 ], [ -95.18012094391041, 29.519170153815203 ], [ -95.180068944548012, 29.519107154203635 ], [ -95.179976944227292, 29.518995153956279 ], [ -95.179915944480854, 29.518753153849143 ], [ -95.179969943693422, 29.518493153961099 ], [ -95.179980944195293, 29.518448153987208 ], [ -95.180029943703204, 29.518413153886652 ], [ -95.180128943912877, 29.518384153392006 ], [ -95.180523943740255, 29.518364153847699 ], [ -95.180608943773251, 29.518371153385193 ], [ -95.181056944414493, 29.518407154063265 ], [ -95.18108994412961, 29.518415153809812 ], [ -95.181330944019933, 29.518470153811371 ], [ -95.181451944034862, 29.518498154071665 ], [ -95.181791944517855, 29.518533154085315 ], [ -95.181847944317212, 29.518539153803349 ], [ -95.181973944125431, 29.518551154047213 ], [ -95.182130944567945, 29.518588153413777 ], [ -95.182280944210731, 29.518635153891434 ], [ -95.18243794441014, 29.518698153437125 ], [ -95.18271894482524, 29.518825154096142 ], [ -95.18289994492099, 29.518933153426484 ], [ -95.183048945112375, 29.519023153886245 ], [ -95.183110945109604, 29.519066153623289 ], [ -95.183145944560607, 29.519110153558593 ], [ -95.183223944998872, 29.519234153954713 ], [ -95.183254945231781, 29.51932515408263 ], [ -95.18325894462879, 29.51934515349387 ], [ -95.183264944385186, 29.519377153608477 ], [ -95.183270945206004, 29.519415153531224 ], [ -95.183271944885107, 29.519424153757804 ], [ -95.183264944486879, 29.519456153702137 ], [ -95.183245944948681, 29.519495154115006 ], [ -95.183179944835587, 29.519581153728808 ], [ -95.183019944870097, 29.519769153776434 ], [ -95.182935944287124, 29.519867154293966 ], [ -95.182839944503144, 29.520013154281024 ], [ -95.18279994490166, 29.520095153984567 ], [ -95.182792944855038, 29.520112153566867 ], [ -95.182788944430413, 29.520134154367309 ], [ -95.182780944492322, 29.520185154230219 ], [ -95.182784944436321, 29.520249154449836 ], [ -95.182793944794497, 29.520298154481765 ], [ -95.182827944523993, 29.520347154334114 ], [ -95.182897944621615, 29.520396153974517 ], [ -95.182970945116779, 29.520428154423264 ], [ -95.183033944870289, 29.520442154294418 ], [ -95.183097944649788, 29.520445153608946 ], [ -95.183409945259768, 29.520391154119949 ], [ -95.183755944982138, 29.520321154415274 ], [ -95.1839219446898, 29.520310153904408 ], [ -95.184026945546961, 29.520313154221 ], [ -95.184092945023778, 29.52032615410409 ], [ -95.184160945120567, 29.520344153703803 ], [ -95.184237945175497, 29.520379153765784 ], [ -95.184291945484006, 29.520419153957381 ], [ -95.184404944794721, 29.520514153759912 ], [ -95.184526945564244, 29.520651154242177 ], [ -95.184778945619499, 29.520971154199778 ], [ -95.185056945801705, 29.521381153796344 ], [ -95.185173945437541, 29.521635154493534 ], [ -95.185176945716833, 29.521644154014577 ], [ -95.185191945467679, 29.521982154586492 ], [ -95.185192945038949, 29.522000154443152 ], [ -95.185181945647173, 29.522016154387785 ], [ -95.185063945745938, 29.52219015467043 ], [ -95.184782944989223, 29.522605154734237 ], [ -95.184751945078304, 29.522651154103897 ], [ -95.184728945682522, 29.522677154480458 ], [ -95.184628945349289, 29.522821154707724 ], [ -95.184575945220359, 29.522938154120141 ], [ -95.18457394504361, 29.522996154705606 ], [ -95.184580945574524, 29.52305515427107 ], [ -95.184605945034235, 29.523105154247723 ], [ -95.184634945092071, 29.523130154406694 ], [ -95.184671944927729, 29.523154154229619 ], [ -95.184724945144055, 29.523177154566536 ], [ -95.184802945769178, 29.523218154559835 ], [ -95.184848944933393, 29.523232154880084 ], [ -95.1848989453228, 29.523237154171639 ], [ -95.185007945902072, 29.523233154905256 ], [ -95.185159945949422, 29.523203154437386 ], [ -95.185311945707014, 29.523181154989114 ], [ -95.185470945415261, 29.523190154725082 ], [ -95.185560945117956, 29.523207154547595 ], [ -95.185702945513583, 29.523237154700453 ], [ -95.185825945574393, 29.523264154324877 ], [ -95.18605294619411, 29.523324154368652 ], [ -95.186294945882054, 29.523430154365627 ], [ -95.186401945416335, 29.523469154187151 ], [ -95.186566945960195, 29.523568154210764 ], [ -95.186714946439409, 29.523689154195278 ], [ -95.186866945553135, 29.5238061541734 ], [ -95.187019946057134, 29.523901154197166 ], [ -95.187267946508996, 29.523981154214905 ], [ -95.187528946616652, 29.524056154884136 ], [ -95.187655946137156, 29.524097154957598 ], [ -95.187711945857785, 29.524130154667706 ], [ -95.187755945769339, 29.524174154449167 ], [ -95.187804945829782, 29.524234154751888 ], [ -95.18784794675372, 29.524302154859562 ], [ -95.187852946539309, 29.524346154586233 ], [ -95.187779946605431, 29.52443315470709 ], [ -95.187424945804949, 29.524694155155089 ], [ -95.187225945647114, 29.524840155230756 ], [ -95.186997945813161, 29.525008155099179 ], [ -95.186816945928584, 29.525289154497969 ], [ -95.186751945705552, 29.525495155240804 ], [ -95.186707946380992, 29.525920155131441 ], [ -95.186956946015968, 29.526573155167984 ], [ -95.186956946322283, 29.526859155017185 ], [ -95.186834945651768, 29.52708215565692 ], [ -95.186852945797426, 29.527261155280041 ], [ -95.186936946030073, 29.527408155011706 ], [ -95.187014946604236, 29.527394155439683 ], [ -95.18716894653484, 29.527395155406239 ], [ -95.187200946123198, 29.527380155109576 ], [ -95.187246945804489, 29.52735915533269 ], [ -95.187338945768531, 29.527344155580149 ], [ -95.187688946087434, 29.527284155392685 ], [ -95.188126946894201, 29.5272421551016 ], [ -95.18821994600944, 29.527234155276073 ], [ -95.188370946384907, 29.527240155400715 ], [ -95.188548946491196, 29.52721715568148 ], [ -95.188629947101461, 29.527206154832413 ], [ -95.188837946655468, 29.527179155004273 ], [ -95.189334946285328, 29.527053155264674 ], [ -95.189567946451731, 29.527053155427232 ], [ -95.189674946670635, 29.527064155109787 ], [ -95.189749946964923, 29.527108154871986 ], [ -95.189812946688107, 29.527179155403157 ], [ -95.189900947281302, 29.52732215509544 ], [ -95.189919947207287, 29.527388155012446 ], [ -95.189918946836215, 29.527439155130438 ], [ -95.189869946590619, 29.527503155515046 ], [ -95.18983194741466, 29.527553155244476 ], [ -95.189678947092503, 29.527654155637769 ], [ -95.1896099467304, 29.527699155062045 ], [ -95.189454946386292, 29.527801155334195 ], [ -95.189014946738595, 29.527850155417752 ], [ -95.188926946423464, 29.527848155786561 ], [ -95.188539947079704, 29.527837155587854 ], [ -95.18837994642405, 29.527833155056264 ], [ -95.187986945962734, 29.527819155592489 ], [ -95.187903946591661, 29.52782015513835 ], [ -95.187781946745318, 29.527845155481923 ], [ -95.187681945992523, 29.527880155580473 ], [ -95.187617946668226, 29.527910155491302 ], [ -95.187567945886158, 29.527963155264974 ], [ -95.187537946541354, 29.528028155331921 ], [ -95.187528946153165, 29.528070155157923 ], [ -95.187524946391193, 29.5281251556471 ], [ -95.187524946125336, 29.528184155690017 ], [ -95.187529946104732, 29.528235155418372 ], [ -95.187531946521545, 29.528252155517698 ], [ -95.187559946499135, 29.528317155827061 ], [ -95.18771194600869, 29.528518155667541 ], [ -95.188364947009916, 29.528848155383848 ], [ -95.188669946845962, 29.529023155671009 ], [ -95.189189946952595, 29.529301155252714 ], [ -95.189371946722261, 29.529407155688233 ], [ -95.189627946793991, 29.529555155485674 ], [ -95.18993094652312, 29.529726156087214 ], [ -95.190240946782723, 29.529962155701011 ], [ -95.190403947452637, 29.530102155565405 ], [ -95.190542947184099, 29.530241156211975 ], [ -95.190618947643131, 29.530410155852973 ], [ -95.190646947152231, 29.53047415604361 ], [ -95.190637947185053, 29.530512155903306 ], [ -95.190640947424242, 29.530529155534239 ], [ -95.190635947558491, 29.530620155847984 ], [ -95.190607947117314, 29.53072515617006 ], [ -95.190557946955536, 29.530795156039432 ], [ -95.190487946899523, 29.530848155705804 ], [ -95.190430947729524, 29.530876155522233 ], [ -95.190355947331739, 29.530896155723838 ], [ -95.189868946603482, 29.530973155662988 ], [ -95.189776946974803, 29.530997155963441 ], [ -95.189683947098871, 29.531030156210072 ], [ -95.189608947327514, 29.531061156166651 ], [ -95.189432947333515, 29.531172156089823 ], [ -95.189308947356636, 29.531547155719604 ], [ -95.189326947014521, 29.531739156253305 ], [ -95.189327946700743, 29.531754156145784 ], [ -95.189325946955933, 29.531803156104015 ], [ -95.189313946469582, 29.531898156472185 ], [ -95.189320947335972, 29.531956156236955 ], [ -95.189339946773273, 29.53201215625619 ], [ -95.189346947293075, 29.532026156319112 ], [ -95.189426947248961, 29.532176156431014 ], [ -95.189448946557036, 29.532252155950864 ], [ -95.189448947054231, 29.532295156293525 ], [ -95.189443947178702, 29.532328155951248 ], [ -95.189432946527219, 29.532380156504331 ], [ -95.189426947325813, 29.53240415603414 ], [ -95.189400947143795, 29.53245815655988 ], [ -95.1893699474941, 29.53248415626155 ], [ -95.189347947139026, 29.532503156083401 ], [ -95.189270946592885, 29.53253415661975 ], [ -95.189069947370555, 29.532573156046681 ], [ -95.188932947334621, 29.532595156188219 ], [ -95.188877946393688, 29.532613156477929 ], [ -95.18883594682859, 29.532644156125649 ], [ -95.188758946455266, 29.532725156723771 ], [ -95.188587947075874, 29.532926156332781 ], [ -95.188486947139594, 29.53310515610649 ], [ -95.188407947255328, 29.533215156686619 ], [ -95.188344946727497, 29.533275156255058 ], [ -95.188284946499479, 29.533322156716807 ], [ -95.18818594718158, 29.533382156235014 ], [ -95.187856946883329, 29.533520156224782 ], [ -95.18757694660944, 29.533648156338973 ], [ -95.187519946564507, 29.533680156882436 ], [ -95.187484946390896, 29.533718156234922 ], [ -95.187468946373059, 29.533760156816825 ], [ -95.18746394691911, 29.533776156519689 ], [ -95.187454946338462, 29.533807157052955 ], [ -95.18744494680017, 29.533868156751446 ], [ -95.187440946493339, 29.533893156591812 ], [ -95.18744994667405, 29.533954156476796 ], [ -95.187466946725692, 29.533987156956425 ], [ -95.187519946131189, 29.53404915703446 ], [ -95.187594946450403, 29.534110156820187 ], [ -95.187664946452244, 29.534137156802373 ], [ -95.18775694719173, 29.534156156434154 ], [ -95.187819947042129, 29.534167156585351 ], [ -95.187905946897359, 29.534178157149636 ], [ -95.188084946679496, 29.534159156584384 ], [ -95.188129946305665, 29.534151156588017 ], [ -95.188289947032686, 29.534125156570941 ], [ -95.18838194643142, 29.534121156985631 ], [ -95.188453946460555, 29.53414615708224 ], [ -95.188500946387222, 29.534167156517452 ], [ -95.188517947277688, 29.534205156366816 ], [ -95.188526946683098, 29.534243156486934 ], [ -95.188517947269133, 29.534293156626152 ], [ -95.188487947354872, 29.534361156714702 ], [ -95.188392946663683, 29.534549156454784 ], [ -95.188207946965264, 29.534761156509234 ], [ -95.188194946453365, 29.534782156895698 ], [ -95.188150946592643, 29.534852157274333 ], [ -95.18812094722135, 29.534955156447623 ], [ -95.188115947112294, 29.534985157073802 ], [ -95.18811594650721, 29.53502415724158 ], [ -95.188130947082101, 29.535085156617555 ], [ -95.188185947262113, 29.535188157265345 ], [ -95.188260946717023, 29.535301156543792 ], [ -95.188283946627294, 29.535416156934271 ], [ -95.188299947017669, 29.53546515730315 ], [ -95.188345947385727, 29.535545157105425 ], [ -95.188390946803821, 29.535596156945086 ], [ -95.18850994668621, 29.535701157247164 ], [ -95.188610946806392, 29.535764156995288 ], [ -95.188674946780623, 29.535804156623868 ], [ -95.18881594698432, 29.53585715739251 ], [ -95.188946947362567, 29.535899157175091 ], [ -95.188986947546667, 29.535905157005651 ], [ -95.189113947436084, 29.535922157078392 ], [ -95.189162947310166, 29.535930156627014 ], [ -95.189202947141453, 29.535930156634564 ], [ -95.189214946957421, 29.535930157443101 ], [ -95.189320946829383, 29.535922157094411 ], [ -95.189416947212251, 29.535869157006257 ], [ -95.189530947452809, 29.535766156822039 ], [ -95.189602947215917, 29.535710156946578 ], [ -95.189648947594279, 29.53567415693918 ], [ -95.189671946740035, 29.53565615690005 ], [ -95.189744947459531, 29.535622156868296 ], [ -95.189831947501972, 29.535618157302864 ], [ -95.189875947408368, 29.535599156965223 ], [ -95.189996947445863, 29.535613156863004 ], [ -95.190162946965032, 29.535717156928261 ], [ -95.190527947811134, 29.536187157032099 ], [ -95.190705947085476, 29.536275157435412 ], [ -95.190780947234543, 29.536255156942616 ], [ -95.190789947616551, 29.536239157385634 ], [ -95.190815947433805, 29.536191157263502 ], [ -95.190816947426484, 29.535890156727774 ], [ -95.190816947367566, 29.535836157214835 ], [ -95.190918947791459, 29.535783157310679 ], [ -95.191076947106964, 29.535795157264353 ], [ -95.1914549472461, 29.535929156642666 ], [ -95.191497947745631, 29.535944156849588 ], [ -95.19152694820086, 29.535954156849488 ], [ -95.191810947291785, 29.535965156545757 ], [ -95.192207947542798, 29.535901157292304 ], [ -95.192381948137708, 29.536019156718908 ], [ -95.192430948330184, 29.536052157005411 ], [ -95.192604948244792, 29.536372156732398 ], [ -95.192793947921245, 29.536462156638819 ], [ -95.192855947964745, 29.536491156703367 ], [ -95.192996948398999, 29.536525157105636 ], [ -95.193143948461199, 29.536522157070131 ], [ -95.193305948468947, 29.536503157368657 ], [ -95.193573948162765, 29.536510157081182 ], [ -95.193841948097329, 29.536545157151789 ], [ -95.193986948210323, 29.536579156621265 ], [ -95.194086947957501, 29.536625157162696 ], [ -95.194210948142199, 29.536713157437308 ], [ -95.194245948846913, 29.536760156609819 ], [ -95.194250948904028, 29.536803157442435 ], [ -95.194254948145741, 29.536838156614493 ], [ -95.194173948354944, 29.537041157204726 ], [ -95.194137948081305, 29.537130157327194 ], [ -95.194102948771828, 29.537373156936706 ], [ -95.194382948657065, 29.537776156931447 ], [ -95.194442948856107, 29.537863157528832 ], [ -95.194450948155719, 29.537887157582436 ], [ -95.194547948105864, 29.538167157733934 ], [ -95.194534948328936, 29.538262156964645 ], [ -95.194533948412868, 29.538272157251718 ], [ -95.194441948376195, 29.538352157199881 ], [ -95.194417949023489, 29.538372157167977 ], [ -95.194390948462555, 29.538377157221255 ], [ -95.194299948217889, 29.538395156967525 ], [ -95.193981948510867, 29.538244157291796 ], [ -95.193821948703714, 29.538215157346535 ], [ -95.193443948734981, 29.538423157325507 ], [ -95.193327948452207, 29.538459156996048 ], [ -95.19319994831352, 29.538432157073121 ], [ -95.192695948148355, 29.538553157635405 ], [ -95.192349948341757, 29.538637157403468 ], [ -95.1922319483417, 29.538665157612019 ], [ -95.192142948404609, 29.538730157272873 ], [ -95.192151947511661, 29.539045157943487 ], [ -95.192199947585053, 29.539105157481231 ], [ -95.192300948094228, 29.539232157174354 ], [ -95.192312948207203, 29.539246157693544 ], [ -95.192693948680102, 29.539279157470528 ], [ -95.192915948363577, 29.539298157685234 ], [ -95.19296894830299, 29.539336157331338 ], [ -95.193039948703657, 29.539387157388045 ], [ -95.192963948357132, 29.53950615796165 ], [ -95.192715948383224, 29.539685158035969 ], [ -95.192761947963405, 29.539750157633364 ], [ -95.192818948449514, 29.539830157468909 ], [ -95.192928948618345, 29.539984158043595 ], [ -95.192949948589089, 29.540159158233752 ], [ -95.192790948011989, 29.540232157642649 ], [ -95.192775948096269, 29.540239157491236 ], [ -95.192375947993057, 29.540275157387097 ], [ -95.192330948425095, 29.540279157842441 ], [ -95.192245947587537, 29.540395158207389 ], [ -95.192257948592442, 29.540502158281633 ], [ -95.192451948178032, 29.540815157671691 ], [ -95.192651948159224, 29.541315158055976 ], [ -95.192944948407018, 29.541558158423641 ], [ -95.193020948117606, 29.541539158235825 ], [ -95.193087948329705, 29.541522157746666 ], [ -95.193082948131305, 29.541058158084798 ], [ -95.193090948803984, 29.541034157658874 ], [ -95.193106947959933, 29.540987157902681 ], [ -95.193138948062241, 29.540968157828022 ], [ -95.193217948204961, 29.54095215798144 ], [ -95.193286948015995, 29.540960157561134 ], [ -95.193342948596168, 29.541004158231491 ], [ -95.193423948062346, 29.541083158318585 ], [ -95.19353094888821, 29.541244157745751 ], [ -95.19362394808303, 29.541293157625077 ], [ -95.193770948969217, 29.541349158321559 ], [ -95.193849948516004, 29.541361158038239 ], [ -95.193943948084424, 29.541366157732103 ], [ -95.194016948477497, 29.54136115824593 ], [ -95.194049948450328, 29.541349158423355 ], [ -95.194091948322509, 29.54132815790544 ], [ -95.19415194838443, 29.54124815813184 ], [ -95.194216949056468, 29.541171157909609 ], [ -95.194291948376446, 29.541126157981346 ], [ -95.194384948523762, 29.541094158256811 ], [ -95.194449948486948, 29.541094157782311 ], [ -95.194528948436854, 29.541114158260942 ], [ -95.194588949005208, 29.541142158007361 ], [ -95.194608948465728, 29.541158158099634 ], [ -95.194616948532399, 29.541174157895341 ], [ -95.194650948519964, 29.541238158018444 ], [ -95.194643949224755, 29.541269158128216 ], [ -95.194627948257761, 29.541341158081028 ], [ -95.194183948722497, 29.541690157714175 ], [ -95.194206948993511, 29.541729157999178 ], [ -95.194313948466785, 29.541909157941241 ], [ -95.194671949045031, 29.542145158412286 ], [ -95.194617948757994, 29.542196158352027 ], [ -95.194542949190136, 29.542323157792381 ], [ -95.194529948446146, 29.542372157788325 ], [ -95.194491948878877, 29.542444158079054 ], [ -95.19442894836483, 29.542504158651109 ], [ -95.194202948872999, 29.542625158088654 ], [ -95.194064948950341, 29.542757158081969 ], [ -95.194020948925967, 29.542856158649887 ], [ -95.194108948777526, 29.543153158740235 ], [ -95.194177948257206, 29.543241158417022 ], [ -95.19425294920255, 29.543279158107303 ], [ -95.194359949063085, 29.543292158521119 ], [ -95.194391948259295, 29.543296158584504 ], [ -95.194447949002083, 29.543263157983215 ], [ -95.194462948980373, 29.543208158301855 ], [ -95.194591948553395, 29.543039158583259 ], [ -95.194638949225336, 29.542995158018531 ], [ -95.194699948366946, 29.5429661579692 ], [ -95.194831948505708, 29.542944158262632 ], [ -95.195001949200062, 29.543038158279479 ], [ -95.195043949085971, 29.543141158472068 ], [ -95.195007948462077, 29.543345158355724 ], [ -95.195025949113855, 29.543487158066046 ], [ -95.195026949277917, 29.543587158829908 ], [ -95.195068949354734, 29.543614158533771 ], [ -95.195087949213672, 29.543645158290957 ], [ -95.195115948704341, 29.543674158168436 ], [ -95.195148949247027, 29.543702158371516 ], [ -95.195204949031975, 29.543726158454135 ], [ -95.195283949309299, 29.543742158303484 ], [ -95.195390948515538, 29.543759158877069 ], [ -95.195478949359085, 29.54375515865619 ], [ -95.195566949584816, 29.543742158769479 ], [ -95.195655949062754, 29.543710158031114 ], [ -95.195738949011798, 29.543658158358664 ], [ -95.195799948907322, 29.543569158756437 ], [ -95.195822949381039, 29.54349215798554 ], [ -95.195825949462559, 29.543426158782506 ], [ -95.195835949337891, 29.543404158738273 ], [ -95.195875948719987, 29.543318158158694 ], [ -95.195872949193628, 29.543258158595894 ], [ -95.195869949518126, 29.543202158244252 ], [ -95.195806949471645, 29.54308115835363 ], [ -95.195705949475084, 29.542926158114309 ], [ -95.19564294865593, 29.542829157922309 ], [ -95.195529949215725, 29.542702158168289 ], [ -95.195510948503156, 29.542647158625144 ], [ -95.195516949450436, 29.542592158243448 ], [ -95.195541948771279, 29.542554158454475 ], [ -95.195654949270391, 29.542439157753975 ], [ -95.195692949509478, 29.542400158390929 ], [ -95.195835949430929, 29.542366157995833 ], [ -95.195986949031678, 29.542291157916832 ], [ -95.196110949668352, 29.542277158010418 ], [ -95.196361948899863, 29.542249158286545 ], [ -95.196403949152653, 29.542241157673924 ], [ -95.196473949203565, 29.542227157646817 ], [ -95.196590949591339, 29.542251158341525 ], [ -95.196608949806588, 29.542241157792876 ], [ -95.19666294928561, 29.542212158160613 ], [ -95.19690194914979, 29.542083157709012 ], [ -95.197030949898632, 29.542050158021343 ], [ -95.197057949290766, 29.542043157773833 ], [ -95.197139949836242, 29.542023157780019 ], [ -95.197166949180215, 29.542016158412245 ], [ -95.19724194900634, 29.541997158093952 ], [ -95.197370949914983, 29.541784158169506 ], [ -95.197608949233512, 29.541411157817802 ], [ -95.197874949329545, 29.54107015808178 ], [ -95.198114949202903, 29.540818157999457 ], [ -95.198239949471343, 29.540649157661854 ], [ -95.198697950044334, 29.540229157545095 ], [ -95.198728949650473, 29.540200157665613 ], [ -95.19908694964802, 29.539864157361631 ], [ -95.199210950143936, 29.53975115738017 ], [ -95.199572950367681, 29.53942215759416 ], [ -95.200440949667353, 29.538633157306521 ], [ -95.201262950686242, 29.537886157136374 ], [ -95.202444950112607, 29.536805157192191 ], [ -95.203583950587557, 29.535763156687917 ], [ -95.203768950777416, 29.535595156520568 ], [ -95.204956951200984, 29.534496155830066 ], [ -95.205111950958781, 29.534354156565733 ], [ -95.205974951449036, 29.533565156088684 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1624, "Tract": "48167722200", "Area_SqMi": 0.78431675086837138, "total_2009": 3011, "total_2010": 3246, "total_2011": 3145, "total_2012": 3132, "total_2013": 3583, "total_2014": 3290, "total_2015": 2342, "total_2016": 877, "total_2017": 1261, "total_2018": 884, "total_2019": 894, "total_2020": 856, "age1": 143, "age2": 485, "age3": 246, "earn1": 130, "earn2": 309, "earn3": 435, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 132, "naics_s05": 170, "naics_s06": 0, "naics_s07": 89, "naics_s08": 2, "naics_s09": 4, "naics_s10": 6, "naics_s11": 7, "naics_s12": 45, "naics_s13": 0, "naics_s14": 119, "naics_s15": 8, "naics_s16": 161, "naics_s17": 4, "naics_s18": 89, "naics_s19": 19, "naics_s20": 19, "race1": 587, "race2": 248, "race3": 7, "race4": 18, "race5": 2, "race6": 12, "ethnicity1": 648, "ethnicity2": 226, "edu1": 167, "edu2": 197, "edu3": 241, "edu4": 126, "Shape_Length": 19990.394053854907, "Shape_Area": 21865408.642675225, "total_2021": 852, "total_2022": 874 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.909752868566386, 29.389294136023835 ], [ -94.909743869048356, 29.388406136171142 ], [ -94.909735868587262, 29.387542135893611 ], [ -94.909728868697272, 29.386704135082056 ], [ -94.90972286872767, 29.385829134924446 ], [ -94.909716868995986, 29.384991134721083 ], [ -94.909712869048292, 29.384537134831358 ], [ -94.909708868391874, 29.383999134647709 ], [ -94.90874086837465, 29.38400613523411 ], [ -94.908616868279154, 29.384006134625761 ], [ -94.907072868379927, 29.384018134662309 ], [ -94.905568867447982, 29.384028135043472 ], [ -94.904078867279381, 29.384039134976554 ], [ -94.902558867253745, 29.384050135464072 ], [ -94.901036866328383, 29.384061134861302 ], [ -94.899492865730039, 29.384069135182912 ], [ -94.897982865875576, 29.384076135624927 ], [ -94.896485865736707, 29.384083134926467 ], [ -94.89497686508895, 29.384090135719134 ], [ -94.893419864341979, 29.384098135533122 ], [ -94.893419864464747, 29.385061135453302 ], [ -94.893427864256196, 29.385536135270979 ], [ -94.893434864937305, 29.38600913606863 ], [ -94.893447864956258, 29.386507135693922 ], [ -94.893463864185463, 29.387136136412892 ], [ -94.893463865192388, 29.387792136172656 ], [ -94.893463864235002, 29.388277136220101 ], [ -94.893434865036468, 29.389388136285547 ], [ -94.893493864911846, 29.390514136684974 ], [ -94.89348086463005, 29.39100913668754 ], [ -94.893468864649194, 29.391476137147787 ], [ -94.893455865110496, 29.39246613694435 ], [ -94.893468865279502, 29.39343013763396 ], [ -94.895049865647351, 29.393429137664349 ], [ -94.896552866109346, 29.393428137405632 ], [ -94.896556865642893, 29.393938136963968 ], [ -94.896559865807689, 29.394429137541863 ], [ -94.896562865956028, 29.394903137198234 ], [ -94.896566865446232, 29.395404137806665 ], [ -94.896569866376836, 29.395851137342543 ], [ -94.896573866307904, 29.396355138089625 ], [ -94.896576865543437, 29.396821138210957 ], [ -94.896580866417196, 29.397307137659485 ], [ -94.898080865986273, 29.397298137922299 ], [ -94.899603866733926, 29.397289138046986 ], [ -94.901142866952227, 29.397280138052896 ], [ -94.902662867577902, 29.397271137595734 ], [ -94.904205868271433, 29.397262137527481 ], [ -94.905648868484832, 29.397254138115255 ], [ -94.907164868999203, 29.397245138012295 ], [ -94.907160869052859, 29.396748137312883 ], [ -94.907157868735595, 29.396276137569618 ], [ -94.907154868911093, 29.395806137634199 ], [ -94.907150868827699, 29.395335137323627 ], [ -94.907147868025191, 29.394838137297999 ], [ -94.907144868288697, 29.39436813724847 ], [ -94.907141868222752, 29.39387413736204 ], [ -94.907137868055003, 29.393375136533322 ], [ -94.908668869055532, 29.393367137188431 ], [ -94.908668868759094, 29.392855137036655 ], [ -94.908668868376964, 29.392368136989496 ], [ -94.908669869170708, 29.391894136247615 ], [ -94.908669868896226, 29.391416136723041 ], [ -94.908669869120899, 29.39092313617844 ], [ -94.90866986887788, 29.390462136504901 ], [ -94.908659868693704, 29.389301136334769 ], [ -94.908806869053663, 29.389300136133468 ], [ -94.909752868566386, 29.389294136023835 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1625, "Tract": "48167723900", "Area_SqMi": 64.486154317697626, "total_2009": 229, "total_2010": 323, "total_2011": 354, "total_2012": 354, "total_2013": 402, "total_2014": 414, "total_2015": 390, "total_2016": 430, "total_2017": 466, "total_2018": 1174, "total_2019": 1139, "total_2020": 414, "age1": 128, "age2": 265, "age3": 124, "earn1": 138, "earn2": 167, "earn3": 212, "naics_s01": 0, "naics_s02": 2, "naics_s03": 20, "naics_s04": 17, "naics_s05": 24, "naics_s06": 35, "naics_s07": 77, "naics_s08": 5, "naics_s09": 10, "naics_s10": 13, "naics_s11": 23, "naics_s12": 12, "naics_s13": 0, "naics_s14": 32, "naics_s15": 1, "naics_s16": 0, "naics_s17": 1, "naics_s18": 239, "naics_s19": 6, "naics_s20": 0, "race1": 446, "race2": 25, "race3": 9, "race4": 25, "race5": 1, "race6": 11, "ethnicity1": 423, "ethnicity2": 94, "edu1": 92, "edu2": 115, "edu3": 119, "edu4": 63, "Shape_Length": 406354.36182197341, "Shape_Area": 1797763613.2212493, "total_2021": 464, "total_2022": 517 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.784967836441666, 29.378142137954892 ], [ -94.785575836257664, 29.376927137732277 ], [ -94.783564835311637, 29.373990137253269 ], [ -94.783260835454826, 29.373717136493251 ], [ -94.782586835593406, 29.373110136771395 ], [ -94.781543835299871, 29.372172136802156 ], [ -94.780426834773323, 29.371167136383253 ], [ -94.780346835021547, 29.370863136080573 ], [ -94.780266834713416, 29.370655136199506 ], [ -94.780138834611023, 29.370479135888488 ], [ -94.780074834489227, 29.370303136624383 ], [ -94.779978834580263, 29.370111136477245 ], [ -94.779666834674615, 29.369953135782907 ], [ -94.777752834133878, 29.368966135935381 ], [ -94.777948834553172, 29.368437135935171 ], [ -94.778053833946061, 29.368394136313036 ], [ -94.778401834358164, 29.367846135702429 ], [ -94.778749834075029, 29.367446135438993 ], [ -94.778875834686502, 29.36738313576657 ], [ -94.779170833933264, 29.366824135366318 ], [ -94.779360833936607, 29.366676135401615 ], [ -94.779719834734564, 29.366687135726529 ], [ -94.779982834072314, 29.366624135263447 ], [ -94.780393834860774, 29.366402135798879 ], [ -94.780541834726932, 29.366265135296668 ], [ -94.780873834774553, 29.366167135228306 ], [ -94.780931834395815, 29.366150135339382 ], [ -94.780973835190565, 29.366076135345132 ], [ -94.78108983482808, 29.365991135313887 ], [ -94.781068835063934, 29.365907134910533 ], [ -94.780730835230173, 29.366012135517803 ], [ -94.780751835066354, 29.366107135080085 ], [ -94.77966683425079, 29.366476135464794 ], [ -94.779371834743358, 29.36561213561108 ], [ -94.780509834536559, 29.365254135079383 ], [ -94.780709835140016, 29.365549135679007 ], [ -94.780836834481917, 29.365464135125549 ], [ -94.780688835144858, 29.365201135159705 ], [ -94.780709835177134, 29.365074134806424 ], [ -94.780477834265682, 29.364864135104082 ], [ -94.780130835026839, 29.364727134800788 ], [ -94.779734834660204, 29.36415313521816 ], [ -94.779149834509496, 29.363304134413202 ], [ -94.779286834095416, 29.363188134620312 ], [ -94.779466834686872, 29.362914134938595 ], [ -94.779434834463743, 29.362787134254503 ], [ -94.779396834408729, 29.362732135035195 ], [ -94.779192834580172, 29.362440134998391 ], [ -94.778892834344219, 29.362332134362752 ], [ -94.778717834042908, 29.362271134639091 ], [ -94.778690834388058, 29.362232134912212 ], [ -94.778506834346075, 29.3619651346879 ], [ -94.778643833756419, 29.361291134234357 ], [ -94.778454833548736, 29.36128013438034 ], [ -94.777979834170239, 29.361386134340645 ], [ -94.77764283344932, 29.361428134288861 ], [ -94.776451833025547, 29.362007134945785 ], [ -94.775872833765604, 29.362303135004929 ], [ -94.775682833813292, 29.362440134504325 ], [ -94.775425833292857, 29.362521134908278 ], [ -94.77525083344365, 29.362577134639078 ], [ -94.774870832686602, 29.362671135014267 ], [ -94.774670833461826, 29.362503134861246 ], [ -94.774586832608932, 29.362440134353076 ], [ -94.774196832726645, 29.362534134932716 ], [ -94.773890832735816, 29.362766134747513 ], [ -94.773574832911791, 29.362914134624916 ], [ -94.773226832976064, 29.363051135061252 ], [ -94.773026832527989, 29.3631351353716 ], [ -94.772960832805964, 29.363192135118009 ], [ -94.772741832475518, 29.363378135141307 ], [ -94.772256832157282, 29.363609135393791 ], [ -94.771635831858632, 29.36376813531264 ], [ -94.771445832550469, 29.363873134761693 ], [ -94.771350831839726, 29.364073135321512 ], [ -94.771249831803289, 29.364228135671159 ], [ -94.771234832071571, 29.364252135281909 ], [ -94.770686831978679, 29.364495134972302 ], [ -94.770075831870514, 29.364695135807974 ], [ -94.770043831906193, 29.364864134998168 ], [ -94.768915831874153, 29.365264135310088 ], [ -94.76790483099623, 29.365433135708461 ], [ -94.766407831191955, 29.365728135920854 ], [ -94.765174831097013, 29.365991135808795 ], [ -94.764510830784147, 29.366034136174282 ], [ -94.764025830797181, 29.365981135679604 ], [ -94.763371829781519, 29.365854136027398 ], [ -94.763161830454649, 29.365717136078132 ], [ -94.762929830427311, 29.365559135498813 ], [ -94.762570830006538, 29.365148135586082 ], [ -94.762191829791959, 29.364558135542588 ], [ -94.762022830055315, 29.363999135736261 ], [ -94.762033829679069, 29.363546135641158 ], [ -94.762033829964864, 29.363399135808741 ], [ -94.762476830364577, 29.362998135419879 ], [ -94.762138829541058, 29.362724135422038 ], [ -94.762073829968003, 29.362674135206678 ], [ -94.761369829572629, 29.36213413546697 ], [ -94.761296829425206, 29.36203313484182 ], [ -94.76095282899874, 29.361993135261642 ], [ -94.76074982941131, 29.362256134778288 ], [ -94.75831882873689, 29.363289135433089 ], [ -94.758035829184251, 29.363208135155716 ], [ -94.757832829109844, 29.363208135242381 ], [ -94.757326828411664, 29.363512135968147 ], [ -94.757265828098426, 29.363877136033683 ], [ -94.753801827727386, 29.366287135926523 ], [ -94.754631828397166, 29.36703713646002 ], [ -94.754267828451802, 29.367584136727096 ], [ -94.753862828042429, 29.367867136867659 ], [ -94.753132827797018, 29.368414137064299 ], [ -94.751834827225039, 29.369193137167496 ], [ -94.751086827319554, 29.36952813667763 ], [ -94.750965827258497, 29.369488137387453 ], [ -94.750915827389221, 29.369544137282151 ], [ -94.750803827403089, 29.36967013731708 ], [ -94.750985827395752, 29.369934136688876 ], [ -94.750924826835927, 29.370258137002253 ], [ -94.750495827028615, 29.370555137575742 ], [ -94.750397827245905, 29.370622137609104 ], [ -94.750256827082538, 29.370622137024284 ], [ -94.750013826652932, 29.370582137164412 ], [ -94.749887826561363, 29.370665137616871 ], [ -94.749769827452226, 29.370744137368863 ], [ -94.749263826342997, 29.370886137777809 ], [ -94.748991826849846, 29.371112137514778 ], [ -94.74889882693121, 29.37119013783936 ], [ -94.748250826326156, 29.371534137442957 ], [ -94.747582826335375, 29.372142137594047 ], [ -94.747197826741626, 29.372466137315719 ], [ -94.746971826427895, 29.372541137850916 ], [ -94.746771826594696, 29.372608138003841 ], [ -94.746245826165477, 29.372587137544855 ], [ -94.745698826245416, 29.372911137871405 ], [ -94.745414825938127, 29.373256137619435 ], [ -94.745212826077932, 29.373438138132581 ], [ -94.744563826018336, 29.373823138441885 ], [ -94.744259825590447, 29.373904138410097 ], [ -94.743814825513979, 29.373924138229278 ], [ -94.742740825487886, 29.37479513883304 ], [ -94.742274825110201, 29.374876138639593 ], [ -94.741788825581764, 29.375079138824148 ], [ -94.741565825204503, 29.375160138437103 ], [ -94.741606825162378, 29.37479513809896 ], [ -94.741606824674435, 29.374411137980431 ], [ -94.741991825205318, 29.374330138664025 ], [ -94.742517825579284, 29.373803138018367 ], [ -94.742862825171969, 29.373114138328127 ], [ -94.743226825758541, 29.372527137614817 ], [ -94.74320682484931, 29.372081138058128 ], [ -94.743287825229743, 29.371696137885937 ], [ -94.743611825310879, 29.37143313809133 ], [ -94.743834825109616, 29.371352138013098 ], [ -94.743996825230042, 29.371352137857226 ], [ -94.744118825921021, 29.371473137235931 ], [ -94.744361825915846, 29.371048137219301 ], [ -94.744340825444397, 29.370258137251774 ], [ -94.744329825376568, 29.369423137347724 ], [ -94.744295825940796, 29.369363137569891 ], [ -94.743814825230331, 29.368900136909577 ], [ -94.746598826202415, 29.368171136541402 ], [ -94.745308825742825, 29.367876136668858 ], [ -94.743519825249365, 29.367222137118024 ], [ -94.741206824943205, 29.366262136870134 ], [ -94.7388508235763, 29.365433136339494 ], [ -94.736886823051137, 29.365171136438143 ], [ -94.734268823030646, 29.365127136566084 ], [ -94.733177822413381, 29.365433137029981 ], [ -94.732173821751857, 29.365869136688961 ], [ -94.731274822043417, 29.366213136701134 ], [ -94.729698822113576, 29.367013136767394 ], [ -94.729703821783957, 29.367331136986468 ], [ -94.729170821837357, 29.367553137465684 ], [ -94.728517821426323, 29.367826137021847 ], [ -94.727761820750843, 29.368970137591866 ], [ -94.727197820639617, 29.370389137964324 ], [ -94.726759820909123, 29.371099138434801 ], [ -94.725819820425343, 29.372574138024195 ], [ -94.725568821351501, 29.373229138257052 ], [ -94.725255821118751, 29.3742661389321 ], [ -94.72487982090361, 29.375031139429836 ], [ -94.724738820451478, 29.375398139425759 ], [ -94.724682820257442, 29.375756138752674 ], [ -94.724538820904797, 29.376335139163004 ], [ -94.722633819937457, 29.38035114049779 ], [ -94.721869820228207, 29.38205014027729 ], [ -94.717607819177488, 29.389449142364445 ], [ -94.716181819427021, 29.39157914259405 ], [ -94.715805818635687, 29.392071143118045 ], [ -94.711264818619739, 29.397891143833039 ], [ -94.708649817539126, 29.400980144689058 ], [ -94.70386381614864, 29.405961145746023 ], [ -94.703242816714123, 29.406617146463514 ], [ -94.702311815867802, 29.407544146756599 ], [ -94.697569815367771, 29.411405147658787 ], [ -94.696993814924156, 29.411946147605917 ], [ -94.695796814583943, 29.41325914778632 ], [ -94.693613814465735, 29.415087148772024 ], [ -94.685626812619063, 29.420832150180509 ], [ -94.680951810978542, 29.423713150234303 ], [ -94.67988581159581, 29.42437115113416 ], [ -94.673100809623662, 29.428657152208874 ], [ -94.663034807131197, 29.434437153191595 ], [ -94.655243805341485, 29.438820154439245 ], [ -94.652820805366858, 29.440054154850817 ], [ -94.642018802347877, 29.445453156231782 ], [ -94.63470080099053, 29.449112157521711 ], [ -94.630076799159625, 29.451418157719548 ], [ -94.625826798081306, 29.453463158448983 ], [ -94.622134797540042, 29.455217159235588 ], [ -94.615310795877861, 29.458366159815306 ], [ -94.610836795010087, 29.460379160241914 ], [ -94.600655792247295, 29.464893161756493 ], [ -94.60061979253058, 29.464908162102979 ], [ -94.584582788619812, 29.471972163911847 ], [ -94.580032788011906, 29.473952164620854 ], [ -94.571155785844908, 29.477492165310064 ], [ -94.570826785774415, 29.477650165635215 ], [ -94.568069784955483, 29.478786166016075 ], [ -94.568059784375123, 29.47879116611891 ], [ -94.553698780888681, 29.484473167660237 ], [ -94.552872781479707, 29.484790167114131 ], [ -94.552094780425691, 29.485090167949949 ], [ -94.552074781072491, 29.485082167526262 ], [ -94.546014779013774, 29.487428168104177 ], [ -94.543126778435877, 29.488692168458197 ], [ -94.540083777794266, 29.490025168619798 ], [ -94.536577776755593, 29.491389169130596 ], [ -94.517439772596362, 29.499116171205074 ], [ -94.503299769330653, 29.504734173034336 ], [ -94.500800768226014, 29.505773173486439 ], [ -94.500315768593921, 29.505740173733898 ], [ -94.499982767739397, 29.505711173910207 ], [ -94.49994276816301, 29.505708173604418 ], [ -94.499741767840717, 29.505767173268371 ], [ -94.499371768245567, 29.505877173889612 ], [ -94.498076768092702, 29.506260173960733 ], [ -94.49733076804948, 29.506714173574466 ], [ -94.494122766674423, 29.50791617452748 ], [ -94.487107765298802, 29.510415175010305 ], [ -94.486361764921526, 29.510805175385521 ], [ -94.471921761807479, 29.51629217711714 ], [ -94.466959759733655, 29.51827317699863 ], [ -94.46554175985132, 29.518630177189731 ], [ -94.464496759274269, 29.519182177631279 ], [ -94.461773758875495, 29.520026177542757 ], [ -94.459422758789103, 29.520838178256664 ], [ -94.457332758317406, 29.521714178643254 ], [ -94.456064757200011, 29.522331178347113 ], [ -94.456051757600832, 29.522337178137033 ], [ -94.454446757340008, 29.52310117834158 ], [ -94.452519756229535, 29.524020178702855 ], [ -94.441100754346294, 29.528241180430008 ], [ -94.438514752938858, 29.52913318031997 ], [ -94.433861751723086, 29.53074118095828 ], [ -94.431697751545727, 29.531585181471829 ], [ -94.429500751183156, 29.53250918143581 ], [ -94.42095974951711, 29.535396182127048 ], [ -94.416333747404749, 29.536749182497616 ], [ -94.411097746309693, 29.538669183487166 ], [ -94.397482742920673, 29.544080184545528 ], [ -94.370841736939539, 29.553988188263546 ], [ -94.370871736907418, 29.555038187887678 ], [ -94.37087573641135, 29.555287188147023 ], [ -94.370822737009576, 29.555556188032831 ], [ -94.370822737065552, 29.555669188477474 ], [ -94.37086973681599, 29.559548189141072 ], [ -94.370974737140045, 29.563151190239594 ], [ -94.37113673798217, 29.574051191834442 ], [ -94.371350738477034, 29.582630194058066 ], [ -94.371360738373951, 29.583064194203804 ], [ -94.371368738368659, 29.583437193851292 ], [ -94.371370738355751, 29.583498194306223 ], [ -94.371390737937944, 29.584355194268284 ], [ -94.371411738736171, 29.585211194791434 ], [ -94.371426738048925, 29.585860194462587 ], [ -94.37144473878206, 29.586611194525727 ], [ -94.371445738241547, 29.586668194421954 ], [ -94.371451738272484, 29.586876194597458 ], [ -94.371480738314844, 29.588784195438855 ], [ -94.371548738972209, 29.593188196368871 ], [ -94.371551738511386, 29.593324196429865 ], [ -94.371554738959091, 29.593459196019033 ], [ -94.371556738946992, 29.593565196184993 ], [ -94.371558738939058, 29.593671196348371 ], [ -94.37158173921766, 29.595098196487921 ], [ -94.371581738699973, 29.595135196845831 ], [ -94.371626739101671, 29.597214197005783 ], [ -94.371628739088393, 29.597252196637985 ], [ -94.371696739378521, 29.597261196571385 ], [ -94.371834738681528, 29.597183196949821 ], [ -94.371995738497787, 29.596264197008292 ], [ -94.372098739455126, 29.596172196358463 ], [ -94.372294739074675, 29.596198196187949 ], [ -94.372439739001777, 29.596365196250282 ], [ -94.372896739418294, 29.597385196951574 ], [ -94.373036739075573, 29.597490196488895 ], [ -94.373218739375162, 29.597450196963599 ], [ -94.373328739677916, 29.597221196937181 ], [ -94.373322739754656, 29.596834196979344 ], [ -94.373237738946216, 29.596629196749404 ], [ -94.373044738946874, 29.596162196503244 ], [ -94.372893739351341, 29.595913196160314 ], [ -94.372891739527802, 29.595761196711923 ], [ -94.37297773904983, 29.595707196829579 ], [ -94.373081739066663, 29.595691196508305 ], [ -94.373457739751615, 29.595862196370273 ], [ -94.373748739828287, 29.596078196728762 ], [ -94.374676740108953, 29.59676719636899 ], [ -94.374823739735163, 29.59680619652444 ], [ -94.374962740182553, 29.596844196619006 ], [ -94.375009740259429, 29.596841196837087 ], [ -94.375060739422082, 29.596841196853422 ], [ -94.375173739443454, 29.596825196375278 ], [ -94.375324739582666, 29.596781196466488 ], [ -94.37537574026743, 29.596654196556425 ], [ -94.375425740027254, 29.596583197053583 ], [ -94.375506740012426, 29.59638319671717 ], [ -94.375532739811987, 29.596320196640864 ], [ -94.375553739786312, 29.595908196182631 ], [ -94.375514740328327, 29.595772196039366 ], [ -94.37548573990324, 29.595672196498537 ], [ -94.375374739991344, 29.595480196420155 ], [ -94.375356739311869, 29.595305196780295 ], [ -94.375462739617731, 29.59514319666749 ], [ -94.375915740007926, 29.595053196682738 ], [ -94.376405739900051, 29.594926196238337 ], [ -94.376508740435739, 29.594900196218358 ], [ -94.376754739902907, 29.594675196008684 ], [ -94.376762739914426, 29.594443195697973 ], [ -94.376776739919023, 29.594354195689803 ], [ -94.376790740304486, 29.59426719578272 ], [ -94.376805739741897, 29.594180196094637 ], [ -94.376849740327813, 29.594097195862261 ], [ -94.376824739758305, 29.593998196303133 ], [ -94.376824739649251, 29.593927196246671 ], [ -94.376893740344357, 29.593811195893419 ], [ -94.376950740102785, 29.593773195967255 ], [ -94.376972740578111, 29.593763195681721 ], [ -94.377063740641333, 29.593723196101429 ], [ -94.377145740489425, 29.593707196176236 ], [ -94.377195740237411, 29.593718196150014 ], [ -94.377264740034008, 29.593778196314361 ], [ -94.377321739847289, 29.593800196236092 ], [ -94.377428740540296, 29.593872195555853 ], [ -94.37751074046885, 29.593905196260835 ], [ -94.377636739888914, 29.59391619599014 ], [ -94.37765774045819, 29.593912195618731 ], [ -94.377761740794156, 29.59394419571661 ], [ -94.377787740564358, 29.593977195937491 ], [ -94.377938739992885, 29.594065196424037 ], [ -94.378013740882395, 29.594076195941188 ], [ -94.378089740876774, 29.59405419640828 ], [ -94.378114740720903, 29.594054196194374 ], [ -94.378145740215345, 29.594087195746322 ], [ -94.37820274090312, 29.594428196481374 ], [ -94.378255740740343, 29.594789196139207 ], [ -94.378283741009412, 29.594972196206161 ], [ -94.378333740166639, 29.595456196416638 ], [ -94.378347740651407, 29.5954781962865 ], [ -94.378389741069441, 29.59554419675257 ], [ -94.37840374054673, 29.595566196580521 ], [ -94.37866774047535, 29.595900196346435 ], [ -94.378768740488695, 29.596051196024543 ], [ -94.379036740714596, 29.596050196068379 ], [ -94.379424741111464, 29.595849195961016 ], [ -94.380170741438178, 29.595260195951365 ], [ -94.380610741377367, 29.595210196116195 ], [ -94.38454174179796, 29.595146196233959 ], [ -94.384583742665598, 29.595178195912073 ], [ -94.384646742449888, 29.59517119573092 ], [ -94.384714741880387, 29.595124195691991 ], [ -94.384757742103588, 29.595124195938812 ], [ -94.384807742001229, 29.595138196304987 ], [ -94.384879742371055, 29.595231195686083 ], [ -94.384893742597853, 29.595251195634276 ], [ -94.384920741877352, 29.595291196194662 ], [ -94.385380742723996, 29.595467195952033 ], [ -94.386297742338556, 29.596041196444812 ], [ -94.386559743126327, 29.596109196304685 ], [ -94.386638743007978, 29.596087196087812 ], [ -94.38674374262834, 29.595834195870847 ], [ -94.386853742415795, 29.594706195743992 ], [ -94.386916742441969, 29.594416195806343 ], [ -94.387036742958728, 29.594324196196194 ], [ -94.387077742627795, 29.594324195334689 ], [ -94.38715974291604, 29.594324195412703 ], [ -94.387452742516544, 29.59437919541509 ], [ -94.387616743193519, 29.594409195404108 ], [ -94.387960743164783, 29.594517195826679 ], [ -94.388415742655098, 29.594531195608415 ], [ -94.388459742859709, 29.594729195769215 ], [ -94.388488743436696, 29.594859196038563 ], [ -94.388502743235776, 29.595060196236627 ], [ -94.388509743404569, 29.595158196011909 ], [ -94.388516742992067, 29.595238195928882 ], [ -94.388517743108892, 29.59528019601559 ], [ -94.388502743570754, 29.595656196298425 ], [ -94.388525743384321, 29.595701196084804 ], [ -94.388538743473447, 29.595725195615419 ], [ -94.388669742896113, 29.595979196033468 ], [ -94.388772743628152, 29.59598719617038 ], [ -94.389021743198256, 29.596008195650295 ], [ -94.38935174347408, 29.595891195733639 ], [ -94.389504743093653, 29.595537195788282 ], [ -94.389528743874209, 29.595483195624919 ], [ -94.389615743544354, 29.595092195755633 ], [ -94.38962974372599, 29.595028196274122 ], [ -94.389748743045175, 29.594798195714421 ], [ -94.389948743563963, 29.594721195451179 ], [ -94.390016743600938, 29.594740195510038 ], [ -94.390397743860149, 29.59484719569144 ], [ -94.390590744238224, 29.594901195544331 ], [ -94.391732744485964, 29.595399195963481 ], [ -94.392001744636858, 29.595549195665949 ], [ -94.392278743963985, 29.595628196216552 ], [ -94.3924597438793, 29.595589195599729 ], [ -94.392658744381066, 29.595497195552827 ], [ -94.393605744755178, 29.595037195647564 ], [ -94.393663744542465, 29.59515719604784 ], [ -94.393673744049025, 29.595183195621416 ], [ -94.39377874464823, 29.595431196167226 ], [ -94.393841744429906, 29.595637195949564 ], [ -94.393849745068408, 29.595661196114982 ], [ -94.393891745122616, 29.595791195659501 ], [ -94.393944745090124, 29.596022195535024 ], [ -94.394290745226314, 29.596300196019904 ], [ -94.395742744721673, 29.596593195642463 ], [ -94.398070745430047, 29.596802195670325 ], [ -94.398703745475729, 29.596612196250266 ], [ -94.398862746388446, 29.596450195384527 ], [ -94.398871746218632, 29.596437196142489 ], [ -94.398932746423071, 29.596347195472468 ], [ -94.3989537458108, 29.59631219554376 ], [ -94.399059745984175, 29.59607419596249 ], [ -94.399041746096913, 29.595894195809201 ], [ -94.399023745948213, 29.595723195519611 ], [ -94.398825746340236, 29.595447195698348 ], [ -94.398769746176953, 29.595377195285732 ], [ -94.398716745416181, 29.595312195734774 ], [ -94.398622745857679, 29.59519519594884 ], [ -94.398490746204118, 29.594848195664735 ], [ -94.398513746035889, 29.594606195855093 ], [ -94.398663745880128, 29.594537195639429 ], [ -94.398735745514983, 29.594504195021361 ], [ -94.398837746128422, 29.594458195240001 ], [ -94.398964745498759, 29.59447619545109 ], [ -94.39924174563474, 29.594516194984589 ], [ -94.399276746419716, 29.594523195132073 ], [ -94.399674746228513, 29.594604195259635 ], [ -94.39990674567585, 29.594670195108897 ], [ -94.400059746277137, 29.594714195581346 ], [ -94.400293746620221, 29.594885195671129 ], [ -94.400480746229462, 29.595179195786663 ], [ -94.400641746350374, 29.595472195859784 ], [ -94.400686746558065, 29.595554195961181 ], [ -94.400893746435258, 29.595868195811512 ], [ -94.401010746861829, 29.595882195865013 ], [ -94.401403747059362, 29.5959301958131 ], [ -94.401655747012271, 29.596047195283337 ], [ -94.401930746451882, 29.596107195940657 ], [ -94.402479746729725, 29.596226195926054 ], [ -94.403020746647016, 29.596288196060872 ], [ -94.40337474686325, 29.596120195503623 ], [ -94.403646747263366, 29.596143195202561 ], [ -94.403838747418277, 29.596161195934741 ], [ -94.403987746873696, 29.596301195838571 ], [ -94.404078746829228, 29.596464195786641 ], [ -94.404115747285559, 29.596529195873043 ], [ -94.404265747073879, 29.596818195787481 ], [ -94.404634747434443, 29.597149195317929 ], [ -94.404969747388776, 29.597450195732904 ], [ -94.40562374804864, 29.598040195501692 ], [ -94.405964748328586, 29.5982461959969 ], [ -94.406038747377366, 29.598249196369668 ], [ -94.40648974802744, 29.598269195538304 ], [ -94.4068077482614, 29.598075195665814 ], [ -94.407016748456542, 29.597948195800434 ], [ -94.40739974856676, 29.597387195989597 ], [ -94.407379748686623, 29.597194195677012 ], [ -94.407370748042354, 29.597105195546984 ], [ -94.407341748159169, 29.596824195582137 ], [ -94.407484747947777, 29.596763195636136 ], [ -94.407915748069684, 29.596581195464591 ], [ -94.408059748825934, 29.5965211954639 ], [ -94.408184748583238, 29.596668195205456 ], [ -94.408337748339136, 29.596970195606634 ], [ -94.408361748892375, 29.597017195382207 ], [ -94.4085197487518, 29.597372196041636 ], [ -94.408731748998051, 29.597503196028015 ], [ -94.408998748784938, 29.597472195407153 ], [ -94.409377748916882, 29.597207195681225 ], [ -94.409486748348897, 29.597073195796142 ], [ -94.409659748700406, 29.596864195208028 ], [ -94.409742748922156, 29.596763195606627 ], [ -94.409825748494384, 29.596663195516712 ], [ -94.409750748646729, 29.596543195498597 ], [ -94.409636748459903, 29.596361195732857 ], [ -94.409525749128832, 29.596183195136668 ], [ -94.409450748424277, 29.596064195368783 ], [ -94.409417749121943, 29.595683195276383 ], [ -94.409410748134064, 29.595598195452688 ], [ -94.409423748426178, 29.595223195055766 ], [ -94.409414749049589, 29.595173195093075 ], [ -94.409745749125847, 29.594633195054701 ], [ -94.40977574836144, 29.594586195016124 ], [ -94.409993748354808, 29.594343195017796 ], [ -94.410850748775133, 29.594043194590775 ], [ -94.411080748529059, 29.593963195246051 ], [ -94.41203174905533, 29.593438194611046 ], [ -94.413059749247253, 29.592493194812278 ], [ -94.413187749471518, 29.592377194230647 ], [ -94.413435749891619, 29.592047194117775 ], [ -94.413503749796178, 29.591890194348395 ], [ -94.413509749250096, 29.591738194555965 ], [ -94.413397749132486, 29.591479193869691 ], [ -94.413435749362421, 29.591265194126873 ], [ -94.413607749352735, 29.590329193685825 ], [ -94.413818749721557, 29.590029193747473 ], [ -94.413995749104885, 29.590031193559224 ], [ -94.414307749760241, 29.590036194074443 ], [ -94.414301749229296, 29.590220194049422 ], [ -94.414473749797025, 29.590352194113528 ], [ -94.414556749256519, 29.590476194235833 ], [ -94.414676750060835, 29.590653193732461 ], [ -94.415063749476943, 29.591041194372625 ], [ -94.415335749601866, 29.591242193720241 ], [ -94.415347749554641, 29.59125119407194 ], [ -94.415631750156038, 29.591460194458101 ], [ -94.415772749665436, 29.591581193826212 ], [ -94.415904750217862, 29.591701193820789 ], [ -94.415940749822596, 29.59173419398968 ], [ -94.416412750285446, 29.592163194333398 ], [ -94.416819750357035, 29.592489194669398 ], [ -94.416902750891978, 29.592500194496793 ], [ -94.417313750293005, 29.592555194737812 ], [ -94.417653750748201, 29.592379194054949 ], [ -94.418133750582413, 29.591969193844402 ], [ -94.418186750854204, 29.591886194213217 ], [ -94.418242750368648, 29.591793194054286 ], [ -94.418500751172559, 29.591374193943913 ], [ -94.418518750581001, 29.5909581940995 ], [ -94.418527750726312, 29.590755193886789 ], [ -94.418291750529676, 29.590319193923655 ], [ -94.418274750689349, 29.5901301937451 ], [ -94.418264750609069, 29.590021193937361 ], [ -94.418415750862735, 29.58993819337714 ], [ -94.418764750683295, 29.589744193546334 ], [ -94.419060750579519, 29.589524193400351 ], [ -94.419183751083438, 29.589198193583577 ], [ -94.4191597511537, 29.588730193545022 ], [ -94.419099750883319, 29.587511193377306 ], [ -94.419264751088647, 29.586993192783975 ], [ -94.419260750946577, 29.5866951932414 ], [ -94.419257750573379, 29.586533192636239 ], [ -94.419256750465124, 29.586433193037127 ], [ -94.419104750450416, 29.586133193217442 ], [ -94.418782750190189, 29.586007193308443 ], [ -94.41752575066775, 29.585978193311725 ], [ -94.416559750518786, 29.586064193370834 ], [ -94.415560749877443, 29.586154193132909 ], [ -94.415333749479458, 29.586235192744223 ], [ -94.415106749712706, 29.586316192905894 ], [ -94.415064749928789, 29.586331193300914 ], [ -94.414658749245987, 29.586864193371422 ], [ -94.414721749858629, 29.587410193156622 ], [ -94.414613749376741, 29.587564193116286 ], [ -94.414500749161419, 29.58731819306011 ], [ -94.413797749343303, 29.586877193366639 ], [ -94.413717749659895, 29.586607192856906 ], [ -94.413748749386968, 29.58640619298663 ], [ -94.413913749548982, 29.586172193363268 ], [ -94.413799749539265, 29.586010192753811 ], [ -94.413691749196346, 29.585863192877113 ], [ -94.41368274980853, 29.585828193206549 ], [ -94.413648749055071, 29.585693193186035 ], [ -94.413773749242338, 29.585422192717232 ], [ -94.414316749701143, 29.58511619319615 ], [ -94.414624749492134, 29.585187193124725 ], [ -94.414933749690618, 29.585258193217697 ], [ -94.415514750013756, 29.585392193038487 ], [ -94.416587750549795, 29.585185192810254 ], [ -94.416770749824153, 29.585012192556047 ], [ -94.416928750642953, 29.58486419267685 ], [ -94.416927750060509, 29.584806192543059 ], [ -94.416926750616483, 29.584565193020907 ], [ -94.416775750396539, 29.584441192420449 ], [ -94.416455750022607, 29.584176193039436 ], [ -94.416036749488399, 29.583993192869681 ], [ -94.415689749468868, 29.583732192622886 ], [ -94.415670749460944, 29.583718192764028 ], [ -94.415263749255246, 29.583658192570191 ], [ -94.41463374968113, 29.58301419274774 ], [ -94.414559749756606, 29.582958192603027 ], [ -94.414313749555049, 29.582772192695849 ], [ -94.414178749188252, 29.582533192172182 ], [ -94.414307749322234, 29.582358192686083 ], [ -94.414463748907195, 29.582367192602813 ], [ -94.414888749079054, 29.582392192381057 ], [ -94.415314749370197, 29.582417192582394 ], [ -94.415464749469606, 29.582338192064078 ], [ -94.415722749564139, 29.581907191879708 ], [ -94.415759749361044, 29.581712192433386 ], [ -94.415775749736696, 29.581632191834942 ], [ -94.415755750122798, 29.581618192014858 ], [ -94.415513749539357, 29.581449192416798 ], [ -94.41549174995707, 29.581449192205266 ], [ -94.41538674985641, 29.581449191771661 ], [ -94.414951749033904, 29.581448191821693 ], [ -94.414891749072339, 29.581448192506098 ], [ -94.414335748922426, 29.581504192553677 ], [ -94.414281749632352, 29.581509192582004 ], [ -94.413652749432174, 29.581502192287857 ], [ -94.413473749344234, 29.581500192421931 ], [ -94.413282748801464, 29.581449192071112 ], [ -94.413231749087743, 29.581424192350081 ], [ -94.412958748962183, 29.581293192478267 ], [ -94.412923749466074, 29.581276191837716 ], [ -94.412781748780773, 29.581090192076452 ], [ -94.412714748793448, 29.580887192192414 ], [ -94.412761749371086, 29.580647192099484 ], [ -94.412859749093187, 29.580501192113385 ], [ -94.412933748758007, 29.580393191898434 ], [ -94.413050748850736, 29.580268191887974 ], [ -94.413115748572679, 29.580199191745098 ], [ -94.413291749040837, 29.580099192152105 ], [ -94.413713749576715, 29.579979192198252 ], [ -94.413829749381264, 29.579947191737205 ], [ -94.414307748998411, 29.579804192151798 ], [ -94.415091749057538, 29.57956919143172 ], [ -94.415840749993748, 29.579396191406939 ], [ -94.416558749627214, 29.579232191881268 ], [ -94.4167727496515, 29.5791341918877 ], [ -94.416862749763737, 29.579073192032208 ], [ -94.417217749473892, 29.57883619111275 ], [ -94.417349749725432, 29.578630191737812 ], [ -94.417349750281204, 29.578267191193913 ], [ -94.417349750206668, 29.578236191455343 ], [ -94.417349750128722, 29.578126191193345 ], [ -94.417270750277325, 29.5779391911773 ], [ -94.417243749848296, 29.577874191376452 ], [ -94.417189749547049, 29.577743191284338 ], [ -94.417167749933284, 29.57769019170339 ], [ -94.416676750031229, 29.577389191223183 ], [ -94.416645749840399, 29.577370191268891 ], [ -94.416473749392125, 29.577340191182699 ], [ -94.41600674915361, 29.577263191625221 ], [ -94.415794749112337, 29.577229190939352 ], [ -94.414825749086006, 29.577628191357245 ], [ -94.414806748888793, 29.577633191542809 ], [ -94.414672749383968, 29.577664191807315 ], [ -94.414507748901087, 29.577703191078825 ], [ -94.414215749145825, 29.577623191599312 ], [ -94.414022749390625, 29.577209191037205 ], [ -94.413446748815787, 29.57596719065452 ], [ -94.413255748389773, 29.575554190863038 ], [ -94.413236749025955, 29.575514191430916 ], [ -94.413180748965459, 29.575394191228323 ], [ -94.413162749131175, 29.575355191340485 ], [ -94.413135748636449, 29.575273191278892 ], [ -94.413079748345723, 29.575106190612033 ], [ -94.412829748955744, 29.574360190356554 ], [ -94.412746748219988, 29.574112190704415 ], [ -94.412687748627363, 29.573964191001277 ], [ -94.412510748465593, 29.573523190382854 ], [ -94.41245174802296, 29.573376190993017 ], [ -94.412552748919282, 29.573142190614377 ], [ -94.412652748422659, 29.572908190121947 ], [ -94.412715748124299, 29.572763190048029 ], [ -94.412737748299932, 29.572708190067338 ], [ -94.412777748207304, 29.572617190379979 ], [ -94.412991748271139, 29.572535190023935 ], [ -94.413306749098652, 29.572441190509139 ], [ -94.413684749152296, 29.572375190424573 ], [ -94.41386074827129, 29.572392190686809 ], [ -94.414080748840277, 29.572474190204005 ], [ -94.414269748813794, 29.572518190286338 ], [ -94.414765749199063, 29.572708189968445 ], [ -94.414841749318484, 29.572738190273967 ], [ -94.41496774918437, 29.572821189958908 ], [ -94.415294748931103, 29.572937190555106 ], [ -94.41540874952436, 29.57292619027422 ], [ -94.415431749269871, 29.572903190140718 ], [ -94.415570749208413, 29.572959190136409 ], [ -94.415750749639301, 29.572850190369419 ], [ -94.415938749148722, 29.572680190097604 ], [ -94.416041749540199, 29.572492189867326 ], [ -94.41621574899952, 29.572164190164315 ], [ -94.41624574904327, 29.572098190348136 ], [ -94.41646874971994, 29.571620190427467 ], [ -94.416794749703897, 29.570571190058935 ], [ -94.417159749315417, 29.569915189754486 ], [ -94.417514749111362, 29.569549189768395 ], [ -94.417831749443806, 29.569285189858213 ], [ -94.418181749449687, 29.569212189779975 ], [ -94.418335749780326, 29.569180189458116 ], [ -94.418346750107148, 29.569178189771865 ], [ -94.419038750222043, 29.569124189868532 ], [ -94.41960174993622, 29.569184189875173 ], [ -94.419841750211276, 29.569210189503618 ], [ -94.421205750121146, 29.569715189106351 ], [ -94.421676750394383, 29.569715189878767 ], [ -94.421772750790737, 29.569534189496437 ], [ -94.421941751268264, 29.569125189024582 ], [ -94.422115750245879, 29.567465188674316 ], [ -94.422643750373211, 29.566311188463537 ], [ -94.422874750806301, 29.566261188980242 ], [ -94.42357175123351, 29.566398188589883 ], [ -94.425816752090128, 29.566799188820582 ], [ -94.425977752156939, 29.56687418875752 ], [ -94.427025751966767, 29.566874188325908 ], [ -94.427241751601514, 29.566790189043541 ], [ -94.427409751912222, 29.566724188362063 ], [ -94.427497752331234, 29.566691188394675 ], [ -94.427681751672438, 29.566531188594709 ], [ -94.427684752370013, 29.566327188484507 ], [ -94.427688752206222, 29.566147188142239 ], [ -94.427704751865178, 29.565911188068725 ], [ -94.42772075168169, 29.565668188198813 ], [ -94.427812752401195, 29.565478188046942 ], [ -94.428139751927461, 29.565233188197634 ], [ -94.428213751921916, 29.565198188490307 ], [ -94.428739752520642, 29.564955188531055 ], [ -94.429698752444907, 29.56470818806234 ], [ -94.430573752479532, 29.564658187834681 ], [ -94.431248753242059, 29.564621188064248 ], [ -94.431408753378719, 29.564634187677392 ], [ -94.43166875318704, 29.564658187791668 ], [ -94.432381753200588, 29.564727188382111 ], [ -94.43281875316093, 29.564888187792011 ], [ -94.43296875325791, 29.564943188444879 ], [ -94.433117753734621, 29.564998188190327 ], [ -94.433259753369839, 29.565050188291323 ], [ -94.433307753963788, 29.565072187760098 ], [ -94.433636753095939, 29.565224188037796 ], [ -94.434232753251095, 29.565325188458861 ], [ -94.434277754192962, 29.565310188230765 ], [ -94.434806753417703, 29.565136187797005 ], [ -94.434846753523445, 29.565123188266416 ], [ -94.435205753983837, 29.564802188268377 ], [ -94.435278754114705, 29.564760187855168 ], [ -94.435352753964537, 29.56471818812361 ], [ -94.435559754009518, 29.564600187982137 ], [ -94.435654753917902, 29.564541187932033 ], [ -94.435898754116224, 29.564391187885537 ], [ -94.436250754733237, 29.564315187541833 ], [ -94.436421754473443, 29.564371188205733 ], [ -94.436715754121636, 29.564463188021524 ], [ -94.436827754038404, 29.564533187682549 ], [ -94.437049754654325, 29.564673188006402 ], [ -94.437076754606494, 29.564682188224808 ], [ -94.437571754523148, 29.564842187640288 ], [ -94.43769575471562, 29.565110187753017 ], [ -94.437741754502639, 29.565132187757733 ], [ -94.438114754849437, 29.565316188350828 ], [ -94.438735755151569, 29.565377187728323 ], [ -94.439080755434304, 29.565412187869278 ], [ -94.43926875507043, 29.565431187871415 ], [ -94.439391754914382, 29.565375188204946 ], [ -94.440028754853259, 29.565087187941881 ], [ -94.440156755655622, 29.564844187652 ], [ -94.44030875494542, 29.564558187603566 ], [ -94.440590755233231, 29.564316187386829 ], [ -94.441302755440233, 29.563978187343174 ], [ -94.441314755675194, 29.563970187203463 ], [ -94.441820755786154, 29.563613187576532 ], [ -94.442087755353867, 29.563270187768662 ], [ -94.442148755661805, 29.563191187551308 ], [ -94.442280756108488, 29.562817187281688 ], [ -94.442665756156245, 29.562393187647263 ], [ -94.443062755623018, 29.562308187643673 ], [ -94.443393755696647, 29.562361187066145 ], [ -94.443491755610268, 29.562377187259568 ], [ -94.443568756478399, 29.56237218764015 ], [ -94.443664755939054, 29.562453186941337 ], [ -94.443778756307609, 29.562549187368369 ], [ -94.443964756024826, 29.562706187318444 ], [ -94.444666756273818, 29.563116187221969 ], [ -94.444693756304318, 29.563132187460187 ], [ -94.44486475620154, 29.563156187158256 ], [ -94.444993756805658, 29.563230187588463 ], [ -94.445534757117542, 29.563539187032369 ], [ -94.446631756624953, 29.563881187040515 ], [ -94.44734475722862, 29.563984187273665 ], [ -94.447788756956697, 29.564048187161657 ], [ -94.447808757702049, 29.564051187813547 ], [ -94.448671756927752, 29.564009187764732 ], [ -94.449299757441835, 29.56384118727194 ], [ -94.449670757865633, 29.563742187180775 ], [ -94.450453758120389, 29.563411187103128 ], [ -94.451085758198616, 29.563088187040101 ], [ -94.451421758255606, 29.562957186996545 ], [ -94.451754758473996, 29.562931186711999 ], [ -94.452376758388326, 29.562948187439261 ], [ -94.453210758359219, 29.562908187125398 ], [ -94.453610758806676, 29.562830187412949 ], [ -94.453980758417046, 29.56275818699174 ], [ -94.4549797588529, 29.562335186823201 ], [ -94.455173758987726, 29.562247186523603 ], [ -94.456184759742996, 29.561785186794623 ], [ -94.456600758887603, 29.561596186896612 ], [ -94.458061760221298, 29.560967186837232 ], [ -94.458934759624313, 29.560774186150411 ], [ -94.459177760320657, 29.560724186692521 ], [ -94.459240760209155, 29.560712185973923 ], [ -94.459256760533094, 29.560712186692079 ], [ -94.459921760608438, 29.560709185933874 ], [ -94.460002760063489, 29.56070918595972 ], [ -94.460170760732311, 29.560701186288341 ], [ -94.460511760511324, 29.560834186780443 ], [ -94.461256760671418, 29.560925186214529 ], [ -94.461278760685062, 29.560928185911067 ], [ -94.461602760805789, 29.560785186692044 ], [ -94.463127761326135, 29.560745185825343 ], [ -94.464746761682633, 29.559864185650607 ], [ -94.466758762013001, 29.559101185397395 ], [ -94.469478762242204, 29.55759518537872 ], [ -94.469836762170317, 29.557125185238135 ], [ -94.469887762802514, 29.557152185203378 ], [ -94.469943763020311, 29.557153185114728 ], [ -94.470012762511118, 29.557114184815696 ], [ -94.470063762399988, 29.557059185568569 ], [ -94.470100763184064, 29.557042185085059 ], [ -94.470245762385375, 29.557053185520576 ], [ -94.470340763092153, 29.557053185119159 ], [ -94.470579762499398, 29.557009185275362 ], [ -94.470793762928167, 29.556993184825377 ], [ -94.470975762701229, 29.556965185103916 ], [ -94.471208762927219, 29.557004185463466 ], [ -94.471447762515865, 29.557020185402266 ], [ -94.471749763080453, 29.557064185645942 ], [ -94.471849763590171, 29.557086185136548 ], [ -94.472076763401489, 29.55717918506949 ], [ -94.476608763986661, 29.553578184544378 ], [ -94.477954764830955, 29.55305518385742 ], [ -94.482232765425906, 29.55139118378646 ], [ -94.488605767014917, 29.547205182894231 ], [ -94.495103768346766, 29.540770180775436 ], [ -94.500196769453098, 29.537483180337389 ], [ -94.495665767576995, 29.527337177894676 ], [ -94.495883767598869, 29.526839177811887 ], [ -94.495864768231499, 29.526398178293519 ], [ -94.500192769104189, 29.52448217784891 ], [ -94.502465769955833, 29.523476177146922 ], [ -94.50253276926216, 29.523456177548482 ], [ -94.50254276943852, 29.523446177065882 ], [ -94.5064597708691, 29.521957176402047 ], [ -94.506650770340713, 29.521829176535192 ], [ -94.515277772782937, 29.518821175433921 ], [ -94.515441773191412, 29.518811175824816 ], [ -94.516536773227685, 29.51814417593787 ], [ -94.51701177263115, 29.517573175459031 ], [ -94.517583773300984, 29.517097175371795 ], [ -94.518725773212026, 29.517097175754511 ], [ -94.520343773990987, 29.517573175639509 ], [ -94.52129477390676, 29.517764175658012 ], [ -94.522437774324757, 29.51771617516815 ], [ -94.523722774858115, 29.517097175409919 ], [ -94.524911775503114, 29.517240175259317 ], [ -94.525530775056396, 29.516955174980339 ], [ -94.526815775576651, 29.516955175100932 ], [ -94.529385776754737, 29.516717175341324 ], [ -94.530099776943871, 29.51681217526734 ], [ -94.530574776684574, 29.517240174880712 ], [ -94.531526776455621, 29.517240175024231 ], [ -94.532478777217889, 29.517573174967655 ], [ -94.533953777146678, 29.517764175139465 ], [ -94.534762778033681, 29.518049174816941 ], [ -94.536095777916984, 29.518335175447433 ], [ -94.536856777949993, 29.518335174920797 ], [ -94.537618778297329, 29.519572175188834 ], [ -94.538141779039222, 29.519905175652603 ], [ -94.538998778657415, 29.51933417524647 ], [ -94.539759778684626, 29.519429175355253 ], [ -94.540330779241785, 29.520238174980545 ], [ -94.540521779455077, 29.520238175181227 ], [ -94.541139779037252, 29.519953175042819 ], [ -94.541377779551723, 29.520572175518573 ], [ -94.541615779378546, 29.521143175064921 ], [ -94.542329779334239, 29.521381175424558 ], [ -94.544090780379463, 29.522570175743652 ], [ -94.5451847808379, 29.522903175677332 ], [ -94.546088781368184, 29.522713175303412 ], [ -94.547183781474615, 29.523141175610839 ], [ -94.547992780988139, 29.523998175670865 ], [ -94.548896781722064, 29.525235175873227 ], [ -94.550134781938851, 29.525426175616641 ], [ -94.552228782553328, 29.52623517608826 ], [ -94.553417783485955, 29.527472176158678 ], [ -94.553988783587982, 29.528281176914511 ], [ -94.555226783579556, 29.528662176685287 ], [ -94.557034783737677, 29.529090176760867 ], [ -94.558509784503173, 29.530042176473817 ], [ -94.559413784732314, 29.530042176885456 ], [ -94.560080784508571, 29.529947176771632 ], [ -94.560984784692494, 29.530137177092808 ], [ -94.561983785008749, 29.53066017666135 ], [ -94.563078785741482, 29.530756176486925 ], [ -94.564410786318703, 29.530756176903623 ], [ -94.566171786552061, 29.530565176848167 ], [ -94.567266786874384, 29.529994175990193 ], [ -94.568979787556103, 29.530185176756095 ], [ -94.570692787373901, 29.529233175769978 ], [ -94.57140678814531, 29.528329176360181 ], [ -94.57159678719421, 29.527472176154067 ], [ -94.572120788165137, 29.527520176062612 ], [ -94.572881787659682, 29.527805175800339 ], [ -94.573690788327212, 29.527567175668821 ], [ -94.57390678819084, 29.527687175728385 ], [ -94.574119788143207, 29.527805175418187 ], [ -94.574594788770497, 29.527757176047643 ], [ -94.575641789067177, 29.52642517502348 ], [ -94.577069788904097, 29.525806174933575 ], [ -94.578687789854342, 29.524141174779274 ], [ -94.580495790063367, 29.522856174656436 ], [ -94.581780789909971, 29.521428173932989 ], [ -94.58330379039964, 29.520048173762781 ], [ -94.584160791018121, 29.51942917344148 ], [ -94.585397791246095, 29.518430173146601 ], [ -94.58649279118373, 29.517335173219909 ], [ -94.586730791565316, 29.516812173266089 ], [ -94.587967791461054, 29.515575173073799 ], [ -94.588681791649194, 29.514528172544253 ], [ -94.589728791920209, 29.513338171776564 ], [ -94.590680792260358, 29.512957171672408 ], [ -94.591441791730873, 29.511815171542565 ], [ -94.592060791951596, 29.511530171801354 ], [ -94.592250792345268, 29.510387171785645 ], [ -94.592726792322182, 29.510197171057303 ], [ -94.59301179237319, 29.509721171344061 ], [ -94.593583792354025, 29.509198170902117 ], [ -94.594249792863621, 29.508246171348219 ], [ -94.594677792914524, 29.507247170436994 ], [ -94.594772792955681, 29.506438170364746 ], [ -94.594677792473419, 29.506152170422737 ], [ -94.595105792981201, 29.505581170280202 ], [ -94.595058792410654, 29.504582170381848 ], [ -94.59499479294162, 29.503607170426037 ], [ -94.594915792428026, 29.502392169490694 ], [ -94.595153792672178, 29.501060169700786 ], [ -94.595264792307717, 29.500920169105544 ], [ -94.595867792898716, 29.500156169064322 ], [ -94.595909792846072, 29.500030169097162 ], [ -94.596343793102832, 29.49872816900416 ], [ -94.596771793210593, 29.496967168317397 ], [ -94.597199792423893, 29.495920168744878 ], [ -94.597580792763736, 29.495254168614292 ], [ -94.596581793012319, 29.494588168000668 ], [ -94.59543979249348, 29.493113168270746 ], [ -94.595058792524298, 29.492875167559887 ], [ -94.5945787921235, 29.49287516811971 ], [ -94.594249791716337, 29.49287516813742 ], [ -94.593059792231841, 29.493160167975002 ], [ -94.591774791490451, 29.492541168265898 ], [ -94.592209791171541, 29.492408167915549 ], [ -94.593114791401405, 29.492810167756289 ], [ -94.593784792306394, 29.492575167996289 ], [ -94.594002791969956, 29.492366168154724 ], [ -94.594622791565058, 29.491771167827434 ], [ -94.595158792164355, 29.491101167539306 ], [ -94.596331792221292, 29.490598167710441 ], [ -94.597336792298137, 29.490062166879188 ], [ -94.598409793137435, 29.489827167477369 ], [ -94.598878792995365, 29.489961167021704 ], [ -94.599079793479177, 29.490296166806235 ], [ -94.599783793257458, 29.489760166550099 ], [ -94.600017792914144, 29.489258166458391 ], [ -94.600386793679036, 29.489325166891522 ], [ -94.6008557933677, 29.488487166504537 ], [ -94.60132479349906, 29.488085166407092 ], [ -94.601324793348923, 29.487716166439721 ], [ -94.601693793797892, 29.487146166058078 ], [ -94.602196794094951, 29.487213166544098 ], [ -94.602394794220913, 29.486990166405697 ], [ -94.602162793649043, 29.486744165924684 ], [ -94.60246479420357, 29.486446165943718 ], [ -94.602696794033989, 29.486486166304953 ], [ -94.603351794290845, 29.485912165685654 ], [ -94.603462794528539, 29.485589165845969 ], [ -94.603775793891643, 29.485388166363631 ], [ -94.603885793774282, 29.485055165856377 ], [ -94.60477679454732, 29.484398165843594 ], [ -94.605614794561561, 29.483996165534879 ], [ -94.606117794309029, 29.483795165323532 ], [ -94.606229795027645, 29.48376316585156 ], [ -94.607318794561309, 29.48309816535124 ], [ -94.607639795049067, 29.482960165655179 ], [ -94.607886794971918, 29.482846164827233 ], [ -94.608171795297011, 29.482846164932045 ], [ -94.608427795030025, 29.482808164952452 ], [ -94.608655795513201, 29.482741164950305 ], [ -94.608807795359638, 29.482741164984287 ], [ -94.609026795102039, 29.482703164918878 ], [ -94.609216795118996, 29.482675164858446 ], [ -94.609358795351909, 29.482646164979915 ], [ -94.609698795313889, 29.482602165605339 ], [ -94.609898795601225, 29.482635165408464 ], [ -94.610006795589811, 29.482693165201717 ], [ -94.610115795606816, 29.482768165571077 ], [ -94.610264795988101, 29.482718165117568 ], [ -94.610639795986046, 29.482485164997058 ], [ -94.611106796044865, 29.48222716469942 ], [ -94.611705796178811, 29.48201016462987 ], [ -94.612297795934637, 29.4818351646427 ], [ -94.613004796521821, 29.481694164723436 ], [ -94.613288796841815, 29.481636165039991 ], [ -94.613504796609021, 29.481519165153244 ], [ -94.613887796278419, 29.481436164737747 ], [ -94.614578797186653, 29.481377165155152 ], [ -94.6152787965611, 29.481302164953068 ], [ -94.615644796742046, 29.481261164684511 ], [ -94.615761796834548, 29.481178164387892 ], [ -94.615961797163678, 29.481078165011098 ], [ -94.616327797129244, 29.480761164664109 ], [ -94.616336796961377, 29.480586164134571 ], [ -94.616619797412611, 29.480403164300554 ], [ -94.616844797464978, 29.480320164325729 ], [ -94.617052797229675, 29.480261164037572 ], [ -94.61708579719766, 29.480228164812804 ], [ -94.61727779742435, 29.48022816467202 ], [ -94.617785797113044, 29.480345164325914 ], [ -94.617926798057582, 29.480228164256886 ], [ -94.618176797271587, 29.480062164390699 ], [ -94.618384797360633, 29.479912164357273 ], [ -94.61856879726308, 29.479912164554811 ], [ -94.618651797577513, 29.479820164260889 ], [ -94.618659797482564, 29.47974516417683 ], [ -94.618767797683972, 29.479678164015056 ], [ -94.618851797873688, 29.479670163932955 ], [ -94.61904279740763, 29.479454164103444 ], [ -94.619176798157881, 29.479412164062261 ], [ -94.619242797468047, 29.479395164534232 ], [ -94.619334797556164, 29.479370164352265 ], [ -94.619542797834498, 29.479345164466949 ], [ -94.619592797923431, 29.479304164130049 ], [ -94.619734798323449, 29.479287164174675 ], [ -94.619892797845438, 29.479270164011108 ], [ -94.620000798277843, 29.479220164072913 ], [ -94.620200798200258, 29.47913716425273 ], [ -94.620350798038572, 29.479071164120771 ], [ -94.620691798065408, 29.479120164119774 ], [ -94.620800797796193, 29.479062163888969 ], [ -94.620949798807587, 29.478962164134348 ], [ -94.621274798064178, 29.478979164030683 ], [ -94.621549798322846, 29.478921163694167 ], [ -94.621716798550636, 29.478937163924147 ], [ -94.622565799001592, 29.478604164321919 ], [ -94.622657798707237, 29.478496164173265 ], [ -94.62296579851936, 29.478313164182136 ], [ -94.623265798554002, 29.478154163911796 ], [ -94.623431798451207, 29.478046164084137 ], [ -94.623914798664032, 29.47793816351388 ], [ -94.624406798765719, 29.477730163710394 ], [ -94.624522799352192, 29.477571163931565 ], [ -94.624689799604184, 29.477413163445203 ], [ -94.625005799215117, 29.477205163444324 ], [ -94.626288800126346, 29.476714163497146 ], [ -94.626463799601112, 29.476689163393537 ], [ -94.626546800041851, 29.476655163176975 ], [ -94.626554800057434, 29.47658016367857 ], [ -94.627221799352043, 29.476381162925001 ], [ -94.627512800245839, 29.476289163720299 ], [ -94.627754800007125, 29.476281163666769 ], [ -94.628012800399588, 29.476247163438419 ], [ -94.628187799943177, 29.476164163651422 ], [ -94.628345800046475, 29.476006163156839 ], [ -94.628836800153209, 29.475848162967836 ], [ -94.629311799870038, 29.475798163471875 ], [ -94.629369800766725, 29.47569816345958 ], [ -94.629502800739957, 29.475623163004744 ], [ -94.629652800324749, 29.475589163167765 ], [ -94.630027800820656, 29.475498162980305 ], [ -94.630227800524594, 29.475514163101689 ], [ -94.630419800653186, 29.475556162778673 ], [ -94.63055280068437, 29.47550616323802 ], [ -94.630710800346776, 29.475456163154281 ], [ -94.630852800600266, 29.475456162666035 ], [ -94.630993800769758, 29.475464162622263 ], [ -94.631260801062069, 29.475389162615382 ], [ -94.631609801228223, 29.475281162645345 ], [ -94.631843800865596, 29.475265162857692 ], [ -94.632151800936384, 29.475256162651409 ], [ -94.632401800833378, 29.475306163127161 ], [ -94.632492801128166, 29.475365162689162 ], [ -94.632659801297365, 29.475340163048514 ], [ -94.63272580164309, 29.475331163252282 ], [ -94.632784801684465, 29.475298162451239 ], [ -94.63311780131356, 29.475340162561498 ], [ -94.633258801384784, 29.475348162833434 ], [ -94.633317800929291, 29.475340162790026 ], [ -94.633592801516428, 29.475373162637656 ], [ -94.633883801204036, 29.475290162750102 ], [ -94.634091801764001, 29.475156162469862 ], [ -94.634283801858558, 29.47510616239817 ], [ -94.63447480180487, 29.475106162967528 ], [ -94.634674801987174, 29.475156163186728 ], [ -94.634949801829791, 29.475081162690817 ], [ -94.635232801823193, 29.475073162455452 ], [ -94.635357801750672, 29.475048162391484 ], [ -94.635582801516122, 29.47497316314584 ], [ -94.63573280197599, 29.474873162995596 ], [ -94.63574980173901, 29.474823162883606 ], [ -94.635940801567543, 29.474865162556927 ], [ -94.636048801664813, 29.474707162438737 ], [ -94.636123801878682, 29.474682162666021 ], [ -94.636207801822238, 29.474690162436978 ], [ -94.636290801914754, 29.474657163060819 ], [ -94.63629080235259, 29.47461516279553 ], [ -94.636381801704843, 29.474640162848107 ], [ -94.636473802578834, 29.474640162965539 ], [ -94.63654080181324, 29.474432162139156 ], [ -94.636631801844288, 29.474340162437169 ], [ -94.636765801943966, 29.474249162589771 ], [ -94.636956802673936, 29.474224162321793 ], [ -94.6371488026642, 29.474299162214244 ], [ -94.63718180183244, 29.474348162421141 ], [ -94.637364802426163, 29.474332162464709 ], [ -94.637756801996176, 29.474290162148268 ], [ -94.637947802288068, 29.474290162330156 ], [ -94.638413802401217, 29.474249162362998 ], [ -94.639038803299258, 29.474215162515129 ], [ -94.639271803004689, 29.474215162090243 ], [ -94.639521802911446, 29.474199162008283 ], [ -94.63969680282797, 29.47422416209325 ], [ -94.639854803307969, 29.474140162800101 ], [ -94.63992180278774, 29.473999162598833 ], [ -94.63995480332882, 29.473840162722009 ], [ -94.639913802887449, 29.473749161896137 ], [ -94.640004802624873, 29.47359116194254 ], [ -94.64001280305331, 29.473499162658221 ], [ -94.640162803238709, 29.473382162043098 ], [ -94.640204803010477, 29.473266162121739 ], [ -94.640329802673094, 29.473191161906559 ], [ -94.640379803220867, 29.473016162574272 ], [ -94.640421803368397, 29.472891162292704 ], [ -94.640424802687761, 29.472846162013969 ], [ -94.640437803302035, 29.472658162161959 ], [ -94.640537803505936, 29.472608162240462 ], [ -94.640820803540322, 29.472658162126873 ], [ -94.641079803390483, 29.472625162013749 ], [ -94.641228802811924, 29.472516161793159 ], [ -94.641328803051579, 29.472508162429168 ], [ -94.641628803746798, 29.472508161697508 ], [ -94.641795803831997, 29.472658162010553 ], [ -94.641811803250505, 29.472808162353633 ], [ -94.641820803684581, 29.472858161716392 ], [ -94.641828803462602, 29.472883161796506 ], [ -94.641961803894446, 29.472824161715909 ], [ -94.641961803232178, 29.472916161999677 ], [ -94.64199280364015, 29.473023162538116 ], [ -94.642011803810064, 29.473091161844554 ], [ -94.64207080401961, 29.47317416239742 ], [ -94.642086803239778, 29.473316161899056 ], [ -94.642169803436786, 29.473432162379989 ], [ -94.642303803148366, 29.473541161971859 ], [ -94.642653803893396, 29.473782161885989 ], [ -94.642711803985705, 29.473791162334756 ], [ -94.642844804180996, 29.473799162490316 ], [ -94.643011803735448, 29.473907161810175 ], [ -94.643252803623099, 29.474015162546181 ], [ -94.643502803466561, 29.474107162241499 ], [ -94.643677804153427, 29.47412416266722 ], [ -94.643853803622591, 29.474160162147271 ], [ -94.64407880437642, 29.474217161960663 ], [ -94.644393804100702, 29.474318162262172 ], [ -94.644754804485757, 29.47437416205473 ], [ -94.645002804684154, 29.474431162461002 ], [ -94.645092804293256, 29.474431162743112 ], [ -94.644957804649309, 29.474250161854087 ], [ -94.644810803977037, 29.474003162585344 ], [ -94.644619804017807, 29.473608162348363 ], [ -94.64466480416597, 29.473361162404757 ], [ -94.644517803935059, 29.473180162490451 ], [ -94.644641804455901, 29.473192161745942 ], [ -94.64476580459197, 29.473057162054669 ], [ -94.644562804080678, 29.472888161976062 ], [ -94.644585804164024, 29.472798162154621 ], [ -94.644697804686402, 29.472753161632717 ], [ -94.645092804430746, 29.472741161530472 ], [ -94.645328804415655, 29.47266216179754 ], [ -94.645632804164833, 29.472707161999431 ], [ -94.645948804990368, 29.472910161614159 ], [ -94.64606080464803, 29.472910162305762 ], [ -94.6462748044477, 29.473259162257776 ], [ -94.646544804939595, 29.47349616214219 ], [ -94.64740080493813, 29.473676161880014 ], [ -94.647817805147142, 29.473766162469367 ], [ -94.648065804959742, 29.473924162087364 ], [ -94.648538805015875, 29.474408162401264 ], [ -94.648662805603465, 29.474476162229344 ], [ -94.648797805135359, 29.474464162320647 ], [ -94.648887805628746, 29.474509162388191 ], [ -94.648831805185907, 29.474644162059956 ], [ -94.649135805404555, 29.475061162339085 ], [ -94.649653805811909, 29.475343162267905 ], [ -94.65030680625415, 29.475748162761619 ], [ -94.650644805759526, 29.475883162050263 ], [ -94.651488806389182, 29.476187162267163 ], [ -94.652333806485473, 29.476413162189694 ], [ -94.653324806628717, 29.476638162611881 ], [ -94.654518806656867, 29.476863162846414 ], [ -94.655272807131553, 29.476919162535165 ], [ -94.656139806916229, 29.476942162042636 ], [ -94.656691807906242, 29.477167162782123 ], [ -94.657209807953166, 29.477302162150707 ], [ -94.657378807591613, 29.477314162047886 ], [ -94.657693807390331, 29.477291162755069 ], [ -94.658031808058027, 29.477291162590781 ], [ -94.658617808257915, 29.477111162723844 ], [ -94.658865807675085, 29.477088162161149 ], [ -94.659630808336118, 29.477257161986049 ], [ -94.659743808524794, 29.47721216246763 ], [ -94.661016808681481, 29.477550162687386 ], [ -94.661838809178107, 29.477482162235745 ], [ -94.662851809003257, 29.477663162599121 ], [ -94.66353880943808, 29.477584162351921 ], [ -94.663865809377498, 29.477595162514536 ], [ -94.663977808897542, 29.477663162625948 ], [ -94.664360809536504, 29.477663162257503 ], [ -94.664541809232816, 29.477741162554068 ], [ -94.665047809559013, 29.477696162361678 ], [ -94.665442809915291, 29.477730162771149 ], [ -94.665712809453609, 29.477685162277691 ], [ -94.66589281026117, 29.477651162688243 ], [ -94.666027809896377, 29.47759516266375 ], [ -94.666534810240691, 29.477257161887806 ], [ -94.66662480977692, 29.477201162531056 ], [ -94.666815809655404, 29.477201161900563 ], [ -94.666917809633034, 29.47730216255253 ], [ -94.66731181023232, 29.477190162133379 ], [ -94.667345810117894, 29.477032161788383 ], [ -94.667536810776525, 29.476987161750159 ], [ -94.667615810801962, 29.477032162300862 ], [ -94.66757080993969, 29.477133161784412 ], [ -94.667638809966675, 29.477201162116298 ], [ -94.667874810459736, 29.47712216171443 ], [ -94.667953810565407, 29.477009162457552 ], [ -94.668223810189517, 29.477032162478277 ], [ -94.66838181051574, 29.476931161707512 ], [ -94.668629811072506, 29.477032161648026 ], [ -94.668899810390215, 29.477009162370106 ], [ -94.669068810716652, 29.477100162151569 ], [ -94.669698811334456, 29.476953161604293 ], [ -94.670239810731971, 29.476908162182443 ], [ -94.670419810734046, 29.476863161811629 ], [ -94.670825811186617, 29.476705162075366 ], [ -94.671444811085038, 29.476514162004865 ], [ -94.671759811097317, 29.476491162252675 ], [ -94.672142811707417, 29.476187161345731 ], [ -94.672626811103839, 29.475996161652436 ], [ -94.673014811738852, 29.475898161317307 ], [ -94.673295811999651, 29.475766161731947 ], [ -94.67341381194575, 29.47561816163477 ], [ -94.673413811771852, 29.475477161346969 ], [ -94.674274811490307, 29.474414161075753 ], [ -94.675133811771218, 29.474116160970649 ], [ -94.67534481240223, 29.474010161250199 ], [ -94.675695812352373, 29.473782160948858 ], [ -94.676028811990733, 29.473677161143542 ], [ -94.676660812059438, 29.473484161260448 ], [ -94.677046812404768, 29.473151161316679 ], [ -94.677186813077967, 29.473203161140436 ], [ -94.677818812263055, 29.472677161057558 ], [ -94.678449813143885, 29.472221160925052 ], [ -94.67902881300337, 29.471835160681248 ], [ -94.679730812786758, 29.471344160156743 ], [ -94.680116812841987, 29.471256160704495 ], [ -94.680572813381914, 29.47102816028503 ], [ -94.680414813820619, 29.470642160181047 ], [ -94.680520813495221, 29.470519160479782 ], [ -94.680642813880823, 29.470466160526371 ], [ -94.680906813341721, 29.470677160030835 ], [ -94.681327813207574, 29.470273160053587 ], [ -94.681678813890258, 29.470238160484673 ], [ -94.682081813513321, 29.469466160190716 ], [ -94.682835813912405, 29.468677159435948 ], [ -94.683485814341836, 29.467975160017165 ], [ -94.684274814019446, 29.467431159983281 ], [ -94.684818814458183, 29.46687015913988 ], [ -94.685678814899092, 29.465940158895826 ], [ -94.685941814381039, 29.465431158863627 ], [ -94.686472814922155, 29.465081158719197 ], [ -94.687049814382007, 29.464776159208519 ], [ -94.687207814794974, 29.46469215878744 ], [ -94.688029815014986, 29.464238158565927 ], [ -94.687661814723896, 29.463806158549382 ], [ -94.687294814831105, 29.46402215919484 ], [ -94.686948814931753, 29.463806158677031 ], [ -94.686558814848482, 29.463611158329758 ], [ -94.687142814901449, 29.462984158274569 ], [ -94.687488814591106, 29.462573158870935 ], [ -94.687164814924202, 29.461578158516769 ], [ -94.687229815174831, 29.461124158200438 ], [ -94.686753814870301, 29.460605157854541 ], [ -94.687229814863372, 29.460605158020961 ], [ -94.687229814551927, 29.460086157790709 ], [ -94.687380815133793, 29.459935157589918 ], [ -94.687748814413055, 29.460302157839749 ], [ -94.688483814497857, 29.460346157920416 ], [ -94.688678815243549, 29.460605158009777 ], [ -94.689024815080202, 29.460367157594447 ], [ -94.689218815044626, 29.460605158114799 ], [ -94.689456814817319, 29.460692158257995 ], [ -94.689607815418057, 29.460519158081102 ], [ -94.68999781548591, 29.460757158060414 ], [ -94.691013815711088, 29.46058415769085 ], [ -94.691662815820308, 29.460584158096353 ], [ -94.692159816246971, 29.46015115785146 ], [ -94.692224815421241, 29.459935157640125 ], [ -94.692548816213218, 29.459870157456869 ], [ -94.692873816539745, 29.459827157372551 ], [ -94.693110816585886, 29.459827157924579 ], [ -94.693132816000045, 29.459264157750987 ], [ -94.693240816272109, 29.459048157621833 ], [ -94.693370816061005, 29.458897157338843 ], [ -94.693392815792905, 29.458551157377734 ], [ -94.693283816369359, 29.458313157017624 ], [ -94.693154816054545, 29.457989157070813 ], [ -94.693154815692566, 29.457491157382741 ], [ -94.693348816149452, 29.456972156754144 ], [ -94.693456815696052, 29.456691156994061 ], [ -94.693262815585939, 29.456280157233905 ], [ -94.692981816310919, 29.455826157048662 ], [ -94.692700816132898, 29.455653156525411 ], [ -94.692721816350755, 29.455394156414215 ], [ -94.692829815515523, 29.455199156369336 ], [ -94.693089816255394, 29.455091156347688 ], [ -94.693543816205207, 29.454961157009453 ], [ -94.693759815654914, 29.454767156227422 ], [ -94.693932816581651, 29.454810156493046 ], [ -94.69423581594603, 29.455091157085231 ], [ -94.694624816576692, 29.455264156721533 ], [ -94.694646816850948, 29.45489615624604 ], [ -94.694711815890528, 29.45452915618846 ], [ -94.694927816756945, 29.454248156673451 ], [ -94.695100815911886, 29.453794156092709 ], [ -94.695295816135015, 29.453491156097048 ], [ -94.69544681666828, 29.453102156126832 ], [ -94.695554816638406, 29.452734156010084 ], [ -94.695705816429523, 29.452301156129131 ], [ -94.695878816398334, 29.451912155867806 ], [ -94.695900817006574, 29.451415155762039 ], [ -94.695965816302163, 29.451047155561781 ], [ -94.696138816560904, 29.450874155877745 ], [ -94.696203816382791, 29.45072315599624 ], [ -94.696159816243338, 29.450485155483282 ], [ -94.696268816887411, 29.450269155496791 ], [ -94.696419816835757, 29.450117155191684 ], [ -94.696678816416679, 29.450009155189004 ], [ -94.696743817014578, 29.449793155640013 ], [ -94.696635816125564, 29.449469155241932 ], [ -94.696700816440753, 29.449231155430635 ], [ -94.696895816433681, 29.449144155084337 ], [ -94.697046816235869, 29.44920915543981 ], [ -94.697457816903309, 29.449252155017206 ], [ -94.697803817022645, 29.449015155362822 ], [ -94.697976816471169, 29.448712155448849 ], [ -94.697976816747612, 29.448539155591792 ], [ -94.697998816880414, 29.44817115543799 ], [ -94.69795481739304, 29.447977155135362 ], [ -94.697889817208235, 29.447955155001932 ], [ -94.697846817123846, 29.447609155170465 ], [ -94.697781816771766, 29.447414155056808 ], [ -94.697889816879666, 29.447263154475717 ], [ -94.697868816952919, 29.447068155037591 ], [ -94.698149817087085, 29.44678715510738 ], [ -94.698279816519687, 29.446722155138414 ], [ -94.698452816674902, 29.446809154999862 ], [ -94.698711817368675, 29.446614154369914 ], [ -94.698927816846364, 29.446420154846759 ], [ -94.698754816835333, 29.446268154334629 ], [ -94.69875481659345, 29.446074154588118 ], [ -94.698776817366365, 29.445814154724399 ], [ -94.698754816663168, 29.445684154247697 ], [ -94.698841817101908, 29.445490154631422 ], [ -94.698927816883625, 29.445317154177477 ], [ -94.699014817497456, 29.445166154562013 ], [ -94.699187817574995, 29.445122154227416 ], [ -94.699230817554465, 29.444992154048901 ], [ -94.69940381704815, 29.444755154102975 ], [ -94.699446817414, 29.4445381541553 ], [ -94.699641817402735, 29.444214153852631 ], [ -94.699814817293969, 29.444192153915576 ], [ -94.699987817622699, 29.443976154032676 ], [ -94.700095817425264, 29.443846154330458 ], [ -94.700225817252857, 29.443782153930876 ], [ -94.700311817305547, 29.443609154467939 ], [ -94.700830817423679, 29.443003153837346 ], [ -94.701306817920923, 29.442592154284796 ], [ -94.701479818030634, 29.442571153617084 ], [ -94.701587818095561, 29.442592154208121 ], [ -94.701544817993323, 29.442700153913112 ], [ -94.701803817866278, 29.44267915423233 ], [ -94.701912817774797, 29.442571153985721 ], [ -94.70178281759803, 29.442527153721812 ], [ -94.70184781805176, 29.442311153693456 ], [ -94.70217181735957, 29.441835153552407 ], [ -94.702885818241214, 29.441057153219234 ], [ -94.703728817981045, 29.44012715310997 ], [ -94.704355818589534, 29.439457153227504 ], [ -94.704442817816513, 29.439089152689274 ], [ -94.704442818355773, 29.438628153316625 ], [ -94.704442817789015, 29.438484153055992 ], [ -94.704269818262674, 29.438030152884611 ], [ -94.704096818441926, 29.437921152629251 ], [ -94.703944817638231, 29.437965152751108 ], [ -94.704149817563291, 29.437417152275763 ], [ -94.704839817693085, 29.43650415212198 ], [ -94.704997818680823, 29.435263152082989 ], [ -94.705371818406178, 29.435068152361403 ], [ -94.705532818647072, 29.435020152245865 ], [ -94.705660817997554, 29.435306151749259 ], [ -94.705784818218149, 29.435174152211147 ], [ -94.705870818260294, 29.435084151952815 ], [ -94.706159818586912, 29.434891151708982 ], [ -94.706288818724829, 29.434795151615667 ], [ -94.706368818618287, 29.43468215158607 ], [ -94.706550818360483, 29.434560152264492 ], [ -94.706658818354299, 29.434489151749609 ], [ -94.70651381838141, 29.434248152012753 ], [ -94.70669781875327, 29.434035152257831 ], [ -94.706914818082808, 29.433759151814005 ], [ -94.707141818344098, 29.433639151900081 ], [ -94.707579819214871, 29.43333215197233 ], [ -94.707564818301591, 29.433261151796742 ], [ -94.707631818982648, 29.433219151418136 ], [ -94.708170818507583, 29.432865151898749 ], [ -94.708395819037776, 29.432994151823092 ], [ -94.708668818573329, 29.432785151849046 ], [ -94.708877818839468, 29.432801151665782 ], [ -94.708925819024714, 29.432575151476218 ], [ -94.709343819639741, 29.432254151149863 ], [ -94.709890819375943, 29.43199715125801 ], [ -94.71013181958169, 29.431792151410622 ], [ -94.710534819637672, 29.431450151595733 ], [ -94.710665819494452, 29.431169150964905 ], [ -94.710775819945511, 29.430935151018875 ], [ -94.710823819083402, 29.430662151171017 ], [ -94.711402819571518, 29.430324151377064 ], [ -94.711707819274494, 29.430308151124045 ], [ -94.712155819440937, 29.430753150582554 ], [ -94.712742820415016, 29.431338150931357 ], [ -94.712923820212026, 29.431276150859205 ], [ -94.713145820324144, 29.431423151495537 ], [ -94.713966820823359, 29.431488151063441 ], [ -94.714902820966671, 29.431304151271569 ], [ -94.715848820434815, 29.431045150843676 ], [ -94.717405821441091, 29.430424150872664 ], [ -94.719592822113214, 29.42914815025582 ], [ -94.720090822288213, 29.428702150258452 ], [ -94.720375822150459, 29.428165149822856 ], [ -94.720534822104369, 29.428024150092803 ], [ -94.721220821835502, 29.427854150339318 ], [ -94.721510822247893, 29.427665150134807 ], [ -94.721581822529743, 29.426946149505547 ], [ -94.721842822585643, 29.426571150175789 ], [ -94.722132822298008, 29.426382149611563 ], [ -94.723167822404619, 29.426464149522783 ], [ -94.723510822504338, 29.426414150042604 ], [ -94.724064823146605, 29.426153149492215 ], [ -94.724274822485171, 29.42596414958787 ], [ -94.724607822800237, 29.42489414948281 ], [ -94.725051822888162, 29.424262149146625 ], [ -94.725654822533087, 29.423745148679131 ], [ -94.726874823453471, 29.423731148976547 ], [ -94.727270822979548, 29.423588148720501 ], [ -94.727717823316425, 29.423235149352848 ], [ -94.728367823862456, 29.422114148422271 ], [ -94.729496823958726, 29.421197148589329 ], [ -94.729490823715551, 29.420593148082109 ], [ -94.730015823963271, 29.420217148104793 ], [ -94.731599824567624, 29.419619148349394 ], [ -94.731993824205077, 29.419290147688571 ], [ -94.732091824203351, 29.418615147607905 ], [ -94.73258682455598, 29.417845148083728 ], [ -94.735368824755156, 29.415355147461163 ], [ -94.735895825159943, 29.415048146847258 ], [ -94.737745825847753, 29.414586146975459 ], [ -94.738932826283857, 29.415491147034725 ], [ -94.739020825907517, 29.416017147199501 ], [ -94.739766825850197, 29.416500147168641 ], [ -94.740534826499399, 29.41770614728205 ], [ -94.740841826638587, 29.417794147175805 ], [ -94.741543827027215, 29.418694147774904 ], [ -94.741740826702852, 29.419374147777319 ], [ -94.742640827145777, 29.420515147785384 ], [ -94.743715827217414, 29.42128314800879 ], [ -94.744702827613096, 29.421502148327832 ], [ -94.750077829333989, 29.419111147342118 ], [ -94.752886829685593, 29.41739914661748 ], [ -94.765962832350795, 29.40811914486024 ], [ -94.774343834715353, 29.399255142361625 ], [ -94.774277834762387, 29.397566142075895 ], [ -94.773838834695184, 29.39548114136019 ], [ -94.773619834237763, 29.395042141917713 ], [ -94.770942833561975, 29.393419141351814 ], [ -94.770591833046652, 29.392454141589095 ], [ -94.769845833057019, 29.391313140671251 ], [ -94.769156832719887, 29.388911140371857 ], [ -94.775004834186518, 29.384749139502343 ], [ -94.784967836441666, 29.378142137954892 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1626, "Tract": "48167725700", "Area_SqMi": 0.50942236998801582, "total_2009": 50, "total_2010": 51, "total_2011": 48, "total_2012": 46, "total_2013": 41, "total_2014": 46, "total_2015": 47, "total_2016": 44, "total_2017": 85, "total_2018": 69, "total_2019": 87, "total_2020": 24, "age1": 2, "age2": 14, "age3": 12, "earn1": 2, "earn2": 13, "earn3": 13, "naics_s01": 4, "naics_s02": 0, "naics_s03": 0, "naics_s04": 13, "naics_s05": 0, "naics_s06": 0, "naics_s07": 6, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 2, "naics_s12": 3, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 0, "naics_s17": 0, "naics_s18": 0, "naics_s19": 0, "naics_s20": 0, "race1": 20, "race2": 3, "race3": 0, "race4": 5, "race5": 0, "race6": 0, "ethnicity1": 23, "ethnicity2": 5, "edu1": 6, "edu2": 8, "edu3": 6, "edu4": 6, "Shape_Length": 14446.254335307503, "Shape_Area": 14201823.790165899, "total_2021": 33, "total_2022": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.84970284862527, 29.264938112182797 ], [ -94.849711848328567, 29.264732112319354 ], [ -94.849682847786582, 29.264467111929651 ], [ -94.849608848606309, 29.264158112247433 ], [ -94.848888848433177, 29.262798111224352 ], [ -94.848087847418356, 29.26128611174952 ], [ -94.847756847615827, 29.260660111460389 ], [ -94.847300847573067, 29.259829110702057 ], [ -94.847034847828638, 29.259324110748551 ], [ -94.846844846797879, 29.258983110990904 ], [ -94.846472847643724, 29.258310110683553 ], [ -94.846068847348604, 29.257580110931549 ], [ -94.844653846994035, 29.258158110900666 ], [ -94.844021846192007, 29.258417110686501 ], [ -94.84392184614471, 29.258457110876037 ], [ -94.842015846442322, 29.259215111378303 ], [ -94.84081884600262, 29.259750111626577 ], [ -94.840421845215303, 29.259967111086986 ], [ -94.840077845866475, 29.260210111629082 ], [ -94.839793845981347, 29.260411111111438 ], [ -94.83934884532907, 29.260879111402861 ], [ -94.839109845216441, 29.261198111943958 ], [ -94.838904844912705, 29.261625111271769 ], [ -94.83867484499838, 29.262102111504753 ], [ -94.838168845424974, 29.263156112455722 ], [ -94.838097844698808, 29.263303112024065 ], [ -94.83739184537194, 29.264772112277093 ], [ -94.83719684482719, 29.265178112222554 ], [ -94.836979845403533, 29.265644112171611 ], [ -94.836874844484043, 29.265930112866855 ], [ -94.836721845228126, 29.266460112688918 ], [ -94.836686844669075, 29.266690112972075 ], [ -94.83670084488999, 29.266976113244898 ], [ -94.836707844851617, 29.267249112624807 ], [ -94.83674684524928, 29.267395113277932 ], [ -94.836783844539866, 29.267533113175396 ], [ -94.836831845154592, 29.267715113350551 ], [ -94.836847845008833, 29.267772113403108 ], [ -94.836930845459463, 29.268009112842062 ], [ -94.836967845223569, 29.26807911297049 ], [ -94.837323845055522, 29.268761113429022 ], [ -94.83759784578973, 29.269285113197451 ], [ -94.837927845439822, 29.269918113403495 ], [ -94.838377845682686, 29.270778113271149 ], [ -94.838472845840158, 29.27096111374766 ], [ -94.838542845460864, 29.271191114071364 ], [ -94.839091846056036, 29.272227114134179 ], [ -94.839623846153088, 29.272005114094263 ], [ -94.84021184618544, 29.271759114060238 ], [ -94.841100846709338, 29.271394113945128 ], [ -94.84205784694872, 29.270998113306359 ], [ -94.842961846844588, 29.270625113336369 ], [ -94.843107847146811, 29.270565113069512 ], [ -94.843720846619561, 29.270312113492906 ], [ -94.84381884653429, 29.270271113600394 ], [ -94.845127847033424, 29.269729113194767 ], [ -94.84615784774978, 29.269303113032585 ], [ -94.846345847039771, 29.269225113080125 ], [ -94.846502847347566, 29.269153112981822 ], [ -94.847430847561753, 29.268775113308084 ], [ -94.8477588483114, 29.268655112849487 ], [ -94.847998848214019, 29.268491112602842 ], [ -94.848049848098967, 29.268453112632965 ], [ -94.848315847687516, 29.268251112517781 ], [ -94.848566848531462, 29.267945113014505 ], [ -94.848774847956761, 29.267661113023046 ], [ -94.848835848643745, 29.267551112480643 ], [ -94.848922847955038, 29.267395112782676 ], [ -94.849068848260615, 29.266995112503068 ], [ -94.849221847655315, 29.266493112732622 ], [ -94.849418847832169, 29.265925112480257 ], [ -94.849682847993165, 29.26515811201357 ], [ -94.849696847986166, 29.265055111676862 ], [ -94.84970284862527, 29.264938112182797 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1627, "Tract": "48167721800", "Area_SqMi": 5.9843737584194967, "total_2009": 504, "total_2010": 628, "total_2011": 610, "total_2012": 1853, "total_2013": 1826, "total_2014": 1960, "total_2015": 685, "total_2016": 593, "total_2017": 592, "total_2018": 2230, "total_2019": 745, "total_2020": 608, "age1": 179, "age2": 330, "age3": 145, "earn1": 136, "earn2": 276, "earn3": 242, "naics_s01": 2, "naics_s02": 19, "naics_s03": 17, "naics_s04": 51, "naics_s05": 123, "naics_s06": 31, "naics_s07": 22, "naics_s08": 10, "naics_s09": 0, "naics_s10": 0, "naics_s11": 4, "naics_s12": 6, "naics_s13": 0, "naics_s14": 239, "naics_s15": 3, "naics_s16": 0, "naics_s17": 3, "naics_s18": 123, "naics_s19": 1, "naics_s20": 0, "race1": 568, "race2": 39, "race3": 10, "race4": 29, "race5": 2, "race6": 6, "ethnicity1": 365, "ethnicity2": 289, "edu1": 159, "edu2": 127, "edu3": 126, "edu4": 63, "Shape_Length": 77452.1054346577, "Shape_Area": 166834098.0266844, "total_2021": 777, "total_2022": 654 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.978951890276846, 29.471365150653845 ], [ -94.978487890431126, 29.470697150261959 ], [ -94.978303889789544, 29.470471150932703 ], [ -94.977293889543461, 29.469328150564642 ], [ -94.976731889163474, 29.468735150534389 ], [ -94.976318889827482, 29.468233150095166 ], [ -94.975782889339115, 29.467416149708853 ], [ -94.975616889337303, 29.467081150044571 ], [ -94.975370888713684, 29.46656915012365 ], [ -94.974903888836039, 29.465469149654023 ], [ -94.974690889422618, 29.4649671490568 ], [ -94.974457888451767, 29.464418149796408 ], [ -94.973906888425546, 29.463406149247593 ], [ -94.97385788875944, 29.463315148796255 ], [ -94.973404888914501, 29.462550149453151 ], [ -94.97251988812782, 29.461050148294792 ], [ -94.972479888591764, 29.461117148449834 ], [ -94.970773887617028, 29.46233814902606 ], [ -94.970461888247456, 29.46256114928736 ], [ -94.968314887521714, 29.463721149783591 ], [ -94.966908886974508, 29.464147149514673 ], [ -94.964836886467467, 29.464331149312184 ], [ -94.962295885401886, 29.465208150085655 ], [ -94.95965988471194, 29.466758149896169 ], [ -94.959546885165835, 29.466847150767851 ], [ -94.958365885168419, 29.467117150057284 ], [ -94.957916884446192, 29.467384150611604 ], [ -94.957312884454666, 29.467745150731425 ], [ -94.956482884029001, 29.468171150937806 ], [ -94.955226884249115, 29.468373151150775 ], [ -94.95403988384642, 29.468575151080831 ], [ -94.953740883659151, 29.468781151323515 ], [ -94.952936883513701, 29.469355150898178 ], [ -94.952477883846797, 29.469738151140739 ], [ -94.953414883570346, 29.470274151675692 ], [ -94.954105884293867, 29.470750151576482 ], [ -94.953858884356791, 29.471176151300376 ], [ -94.953477884211082, 29.471602151992421 ], [ -94.953443883373808, 29.472466151306623 ], [ -94.953097883873369, 29.472611151503227 ], [ -94.952516883946714, 29.472897152223073 ], [ -94.952478883384629, 29.472890151506455 ], [ -94.952676883448575, 29.472568151416322 ], [ -94.953277883817549, 29.471593151725077 ], [ -94.953464883984779, 29.471293151645778 ], [ -94.95333688418053, 29.471113151602989 ], [ -94.953146883738185, 29.471366151198925 ], [ -94.952828883585298, 29.470922151249642 ], [ -94.951537882805397, 29.472242152053308 ], [ -94.950849882846114, 29.472661151639617 ], [ -94.950532883421417, 29.47285615197865 ], [ -94.949426883116786, 29.47384215234047 ], [ -94.9491988825325, 29.474048152212873 ], [ -94.949023882960631, 29.474172151820515 ], [ -94.948253882523602, 29.474715151950775 ], [ -94.946437881747897, 29.475593152683469 ], [ -94.946015882171608, 29.475829152520273 ], [ -94.9451698823013, 29.476768153027152 ], [ -94.942990881435335, 29.477613153205017 ], [ -94.941115881274001, 29.478522153028202 ], [ -94.940421880909341, 29.479038153227386 ], [ -94.939065880723817, 29.479211153777651 ], [ -94.938960879995449, 29.479228153317912 ], [ -94.937149879936086, 29.479634153927336 ], [ -94.9363138802251, 29.480324153677799 ], [ -94.936093879750231, 29.480499153599755 ], [ -94.936061879848495, 29.480537153928729 ], [ -94.935746879397115, 29.480447153930292 ], [ -94.935553879572666, 29.480356153540558 ], [ -94.935145878982027, 29.480509153714962 ], [ -94.934347879098638, 29.480655153894237 ], [ -94.934027879593955, 29.480679154236505 ], [ -94.933505879394502, 29.480631153882644 ], [ -94.933222879081214, 29.480566154452568 ], [ -94.933047878593129, 29.480569153663318 ], [ -94.932902879052065, 29.480471154487329 ], [ -94.93281587885032, 29.480364154374588 ], [ -94.932627878560069, 29.480240154180606 ], [ -94.932375878244457, 29.480235153939002 ], [ -94.931993879073204, 29.480286154452354 ], [ -94.931653878518105, 29.480290154382395 ], [ -94.931390878627354, 29.480232153909153 ], [ -94.931184878836916, 29.480193153731364 ], [ -94.931122878325979, 29.480180154371983 ], [ -94.930926878196189, 29.480078154014798 ], [ -94.930829878319244, 29.480042154144702 ], [ -94.930606878059635, 29.479955154123576 ], [ -94.930144878108251, 29.479702153834591 ], [ -94.929915878238006, 29.479618154170335 ], [ -94.929306878322791, 29.479481153842883 ], [ -94.929190878012605, 29.479433153839736 ], [ -94.928988877408585, 29.479232153797085 ], [ -94.928831877997197, 29.478977153556734 ], [ -94.928683878062714, 29.478640153420137 ], [ -94.928466877931726, 29.478219153824515 ], [ -94.928421877566976, 29.47798715400814 ], [ -94.928288877136609, 29.477686153366076 ], [ -94.928080877357957, 29.477349153864516 ], [ -94.927974877122907, 29.476988153221811 ], [ -94.927989877367992, 29.476694153813938 ], [ -94.927993876919714, 29.476623153626399 ], [ -94.928083877294668, 29.476260153640879 ], [ -94.928043876896851, 29.475945153511077 ], [ -94.928064876937924, 29.475880153496753 ], [ -94.928141877909169, 29.475648152926141 ], [ -94.928099877253189, 29.47549815348258 ], [ -94.927971877152856, 29.475312153094865 ], [ -94.927852877809599, 29.475078152961451 ], [ -94.927821876850643, 29.474854153340271 ], [ -94.92790287724705, 29.474623153234297 ], [ -94.927994877133003, 29.474430153008772 ], [ -94.92813087771016, 29.474131153336351 ], [ -94.928209877722892, 29.47385615266808 ], [ -94.928227877469467, 29.473636152795848 ], [ -94.92829287744425, 29.473363153122239 ], [ -94.928440877665352, 29.473178153010366 ], [ -94.928590877929764, 29.472967152315626 ], [ -94.928622877049492, 29.472858152538894 ], [ -94.92862187771216, 29.472638152330944 ], [ -94.92867587696098, 29.472444152491324 ], [ -94.928782877197705, 29.472349152617923 ], [ -94.928807876902098, 29.472103152904289 ], [ -94.928417877555702, 29.471530152464371 ], [ -94.928338877033383, 29.471434152732559 ], [ -94.927735876745089, 29.471201152148449 ], [ -94.927389877272361, 29.470654152418856 ], [ -94.92658687634345, 29.470551152588882 ], [ -94.926291876387523, 29.470513151957078 ], [ -94.925882876160045, 29.470019152100928 ], [ -94.925691876959306, 29.469986151718967 ], [ -94.925636876880745, 29.470435151946795 ], [ -94.925585876318081, 29.470856152408306 ], [ -94.925433876755562, 29.470873152322447 ], [ -94.92505987621719, 29.472412152745886 ], [ -94.925011876947863, 29.472483152517526 ], [ -94.924779876179954, 29.472659153084507 ], [ -94.924560876835244, 29.47276215250545 ], [ -94.924031876110035, 29.473437152717846 ], [ -94.923813876534766, 29.473599153255943 ], [ -94.923631876140078, 29.474033152967174 ], [ -94.923439875738438, 29.474490153252589 ], [ -94.923351876473504, 29.474576153285675 ], [ -94.923221875884281, 29.474705153268157 ], [ -94.923003875586161, 29.474975153114961 ], [ -94.922753875853232, 29.475299153686315 ], [ -94.922753875670011, 29.475569153744726 ], [ -94.922702875544772, 29.475677153483318 ], [ -94.922535875859097, 29.476028153653047 ], [ -94.922255876264614, 29.476352153256364 ], [ -94.921912876165663, 29.476460153927633 ], [ -94.921663875900336, 29.476972153724805 ], [ -94.921527875286159, 29.477266153728678 ], [ -94.921289875942918, 29.477782154220186 ], [ -94.92103087565431, 29.477894153521543 ], [ -94.92091587594544, 29.477944153928998 ], [ -94.920510875245938, 29.478160153879088 ], [ -94.920074875560758, 29.479050153938498 ], [ -94.91973187521242, 29.479671154539787 ], [ -94.919575875554202, 29.479833154152647 ], [ -94.919139875704545, 29.480454154305068 ], [ -94.918890875460107, 29.480534154161386 ], [ -94.918672875133922, 29.480642154158488 ], [ -94.918298875361828, 29.481371154757738 ], [ -94.918018874982963, 29.481722154479648 ], [ -94.917963874769015, 29.481865154457825 ], [ -94.917893875437485, 29.4820461544893 ], [ -94.917881874675672, 29.482055154817111 ], [ -94.917581874751264, 29.482289154660595 ], [ -94.917488874474813, 29.482531154596554 ], [ -94.917301874952415, 29.483044155520052 ], [ -94.917114874845467, 29.483719155681047 ], [ -94.916678875214757, 29.483773154953411 ], [ -94.916366874690766, 29.484340155132493 ], [ -94.91596187425597, 29.484663155892733 ], [ -94.915774874529703, 29.484906155593734 ], [ -94.915525874069004, 29.48514915572763 ], [ -94.915213874112965, 29.485149155443313 ], [ -94.91533887437248, 29.485365155383036 ], [ -94.914902874261003, 29.485905155860781 ], [ -94.914777874898562, 29.486310156084837 ], [ -94.913843873918125, 29.487308156146941 ], [ -94.913656874592391, 29.48809115607191 ], [ -94.913313874256872, 29.488333156393836 ], [ -94.912690873679381, 29.489440156212844 ], [ -94.912690874143806, 29.489737156730357 ], [ -94.912285874452579, 29.490223156858324 ], [ -94.912036874189965, 29.490951157266295 ], [ -94.91159987335665, 29.491626156803097 ], [ -94.911526874160018, 29.491627157243499 ], [ -94.91145587426675, 29.491595156767854 ], [ -94.911463873985667, 29.491587156792249 ], [ -94.911336873577426, 29.491556156705165 ], [ -94.911257873397432, 29.491545156987929 ], [ -94.91117887340441, 29.49150015712355 ], [ -94.910775874006973, 29.491413157166949 ], [ -94.910736874122051, 29.491492156755928 ], [ -94.9105308730974, 29.492140156979403 ], [ -94.910451873316532, 29.492377157439385 ], [ -94.910447873549714, 29.492516157480168 ], [ -94.91075887413345, 29.492705157386695 ], [ -94.911194873673992, 29.492894157007434 ], [ -94.910894873638227, 29.493626157197493 ], [ -94.910601874071133, 29.493547157363302 ], [ -94.910183873182646, 29.49427415803936 ], [ -94.909898873742605, 29.495048157676656 ], [ -94.909669873547088, 29.495901157653872 ], [ -94.909614873424644, 29.496415157944316 ], [ -94.909713873885806, 29.497049158520845 ], [ -94.909914873685608, 29.496999158576031 ], [ -94.909910873626131, 29.496967158641482 ], [ -94.909851874013057, 29.496446157909396 ], [ -94.910039873952613, 29.496479158026151 ], [ -94.91012087376447, 29.496494157732364 ], [ -94.910260873898025, 29.49656415848558 ], [ -94.910290873661623, 29.49653615773175 ], [ -94.91040187376889, 29.496529157704131 ], [ -94.910501873286179, 29.496517157759758 ], [ -94.910720873994265, 29.496533158057115 ], [ -94.911224873615126, 29.496336158145969 ], [ -94.911461874356803, 29.49624515802719 ], [ -94.911973874137999, 29.496268157812302 ], [ -94.912103873961286, 29.496275158347743 ], [ -94.913446874728351, 29.496379158212047 ], [ -94.913507874396984, 29.496387158437287 ], [ -94.914016875185027, 29.496456157649643 ], [ -94.914125875110415, 29.496471157881594 ], [ -94.914403875124123, 29.496510158371375 ], [ -94.914453875157676, 29.496523157639469 ], [ -94.914561875265179, 29.496552157974172 ], [ -94.915085874785262, 29.496692157688539 ], [ -94.915619875491871, 29.496834158323352 ], [ -94.915712874711687, 29.496942158088945 ], [ -94.915827875540501, 29.496934158117678 ], [ -94.916434875181764, 29.49711715799473 ], [ -94.916647875621194, 29.49705015766671 ], [ -94.916754874979588, 29.497003158033909 ], [ -94.916801874998981, 29.497018158420445 ], [ -94.917601875188041, 29.497278157647063 ], [ -94.917899875350457, 29.497312157832472 ], [ -94.91842387541044, 29.49748215815994 ], [ -94.91854087636942, 29.497358157962484 ], [ -94.918700876007435, 29.497369157810816 ], [ -94.918723875460159, 29.497495157957569 ], [ -94.919090876189756, 29.49757515789674 ], [ -94.919181875899667, 29.497449157829184 ], [ -94.919709876502395, 29.497507158055303 ], [ -94.919914876005222, 29.497530157760405 ], [ -94.92010587626902, 29.497536158148407 ], [ -94.920703876380131, 29.497678158170149 ], [ -94.921288876110211, 29.497816158148787 ], [ -94.921396876402142, 29.497781157927843 ], [ -94.921652876361549, 29.497851157653848 ], [ -94.922754877163626, 29.498155158004749 ], [ -94.922785877303795, 29.498163157710518 ], [ -94.922843877413172, 29.498179157839726 ], [ -94.923164876724968, 29.498209157618852 ], [ -94.923248876648088, 29.498219157819719 ], [ -94.923252876731624, 29.498291158313553 ], [ -94.923357877094503, 29.498369157962863 ], [ -94.923428877462129, 29.49842115779397 ], [ -94.92356387755224, 29.498399157843807 ], [ -94.923772877484083, 29.498435157963939 ], [ -94.923822877525666, 29.498393158258043 ], [ -94.92402987714307, 29.498478158009245 ], [ -94.924350877867951, 29.498532157757261 ], [ -94.924434877681264, 29.498546157666244 ], [ -94.924665877598727, 29.498586157893143 ], [ -94.924841877113366, 29.498615157791189 ], [ -94.925248877373832, 29.498812158112887 ], [ -94.925704878189435, 29.49883015790066 ], [ -94.925770877802023, 29.498832158385138 ], [ -94.925892878079267, 29.498837158111819 ], [ -94.925969877782165, 29.498848158377942 ], [ -94.92603587765754, 29.498858157867041 ], [ -94.926177878272085, 29.498879157710366 ], [ -94.926354878452571, 29.498905157979728 ], [ -94.926529878326207, 29.49902415775686 ], [ -94.926580877994041, 29.499025157997682 ], [ -94.926660877560295, 29.49902515796138 ], [ -94.926712878256666, 29.499048158273304 ], [ -94.926755878546118, 29.499066157880069 ], [ -94.926898878319847, 29.499128158088549 ], [ -94.927077878490536, 29.499206158481613 ], [ -94.927271878101322, 29.499290158268888 ], [ -94.927344878128707, 29.499289158123677 ], [ -94.927481878718353, 29.49929915840729 ], [ -94.927562877858264, 29.49933615850259 ], [ -94.927659878379359, 29.499379157982219 ], [ -94.927809877890382, 29.499447158569374 ], [ -94.927848878471039, 29.499451158445542 ], [ -94.9282048788277, 29.499494157924627 ], [ -94.928254878766452, 29.49950015855935 ], [ -94.928445878130773, 29.499571158242237 ], [ -94.928486878972905, 29.499587157967984 ], [ -94.928580878610248, 29.499587158081319 ], [ -94.928643878518571, 29.499610157776683 ], [ -94.928791878332959, 29.499665157773535 ], [ -94.929016878611563, 29.499749158636089 ], [ -94.929122878391539, 29.499829158501232 ], [ -94.929219879074381, 29.499863158258265 ], [ -94.929269878419277, 29.499881158068284 ], [ -94.929375878939226, 29.499881158434658 ], [ -94.929419878598623, 29.499831158076656 ], [ -94.929506878844805, 29.499842158440394 ], [ -94.929532878935419, 29.49984615816944 ], [ -94.929649878364401, 29.499863157869811 ], [ -94.929695878352589, 29.499869158006138 ], [ -94.929692878471499, 29.499888157982188 ], [ -94.929688878526051, 29.499907158194084 ], [ -94.929919878451031, 29.499957158003021 ], [ -94.93007187937809, 29.499991158388525 ], [ -94.93013787934467, 29.500008158205119 ], [ -94.930166878628285, 29.500012157962903 ], [ -94.930189878709896, 29.500014158507092 ], [ -94.930194879280819, 29.500001158300666 ], [ -94.930201879177304, 29.499984158031843 ], [ -94.93057687899632, 29.50006315785814 ], [ -94.930598879405466, 29.500068157802705 ], [ -94.930674879573303, 29.499985157844467 ], [ -94.930696879514258, 29.499998157776933 ], [ -94.930878878740685, 29.500051158094301 ], [ -94.931027879697936, 29.500089158579712 ], [ -94.931142879161953, 29.500112158594664 ], [ -94.931326878966601, 29.500154158575416 ], [ -94.931508879827732, 29.500207158064924 ], [ -94.931692879463, 29.500248158088553 ], [ -94.931885879143607, 29.500314157755295 ], [ -94.93212387990566, 29.500396158310306 ], [ -94.932315879065897, 29.500473158611719 ], [ -94.932519879172517, 29.500552158031201 ], [ -94.932755879469042, 29.500657158527762 ], [ -94.933048879558129, 29.500779158395325 ], [ -94.933127879778155, 29.500810158045208 ], [ -94.933200879438616, 29.500832157963416 ], [ -94.933241880012758, 29.500845157869527 ], [ -94.933369880315837, 29.500857158700125 ], [ -94.933533879859354, 29.500850158670417 ], [ -94.933759879579426, 29.500825158259524 ], [ -94.9338658804581, 29.500824158318633 ], [ -94.933924879515772, 29.50082115851481 ], [ -94.934043880307627, 29.500814158300464 ], [ -94.934124879796414, 29.500828158236509 ], [ -94.934244879674537, 29.500840158579109 ], [ -94.934325879727695, 29.500855157845731 ], [ -94.934528880604987, 29.500923157908073 ], [ -94.934844880355698, 29.501067158497424 ], [ -94.934987880755372, 29.501132158053842 ], [ -94.935144880556066, 29.501204158608925 ], [ -94.935472880599207, 29.501364157931317 ], [ -94.93613788068275, 29.501802158049571 ], [ -94.936277880693495, 29.501813158577821 ], [ -94.936456880935566, 29.501803158639216 ], [ -94.936693880534449, 29.501768158396899 ], [ -94.936927881145337, 29.50169415808222 ], [ -94.937023880747489, 29.501629158496939 ], [ -94.937160881055817, 29.501580158543511 ], [ -94.937219880417018, 29.501577158187786 ], [ -94.937300881382285, 29.501592158354914 ], [ -94.937363880953569, 29.501648158674481 ], [ -94.937469881333882, 29.501741158758872 ], [ -94.93759488067748, 29.501833158144997 ], [ -94.937739881104903, 29.501924158349745 ], [ -94.938059881457505, 29.501944158524207 ], [ -94.938193881580801, 29.501936158738193 ], [ -94.938436881091022, 29.501922157991821 ], [ -94.938933881019906, 29.501891158032514 ], [ -94.939195881430734, 29.501911157970024 ], [ -94.939374881016207, 29.501925158604802 ], [ -94.940181881483468, 29.502163158008791 ], [ -94.94032688209208, 29.502285158562003 ], [ -94.940886882255128, 29.502420158354987 ], [ -94.941316881585266, 29.502477158292116 ], [ -94.941563881902994, 29.502545158336023 ], [ -94.941674882095754, 29.502576158569482 ], [ -94.943192882388502, 29.503095158384934 ], [ -94.943348882881082, 29.503122158609592 ], [ -94.944076882836683, 29.50323715826223 ], [ -94.944720883328316, 29.503402158724413 ], [ -94.944836883348273, 29.50327015843698 ], [ -94.945233883141768, 29.503430158406925 ], [ -94.945227883206982, 29.50347915803404 ], [ -94.945585882854616, 29.503584158613304 ], [ -94.945640882814487, 29.503496158131462 ], [ -94.946065883359566, 29.503650158879854 ], [ -94.946043883507969, 29.503716158282575 ], [ -94.946245883325631, 29.503797158337406 ], [ -94.947073883762286, 29.504085158554211 ], [ -94.947912883303403, 29.504297158189178 ], [ -94.947959883780712, 29.504309158105034 ], [ -94.948219883533056, 29.5042841582781 ], [ -94.949089884203232, 29.504565158176312 ], [ -94.949238883866272, 29.504691158281052 ], [ -94.949548884315519, 29.504768158941143 ], [ -94.950082883979235, 29.50493415874989 ], [ -94.950200884384259, 29.504971158221796 ], [ -94.950357884728447, 29.504872158196907 ], [ -94.950423884489211, 29.50487315868558 ], [ -94.950514884872888, 29.504876158979666 ], [ -94.950836884587446, 29.504929158272805 ], [ -94.950935884489553, 29.505007158448695 ], [ -94.950956884970793, 29.505190158808336 ], [ -94.951055884297247, 29.505185158251543 ], [ -94.951024884783195, 29.505101158859567 ], [ -94.951055884625148, 29.505002158582645 ], [ -94.951164884920104, 29.505002158363993 ], [ -94.951216884820752, 29.505002158312209 ], [ -94.951248884345972, 29.505153158847207 ], [ -94.951417884356914, 29.505173158176472 ], [ -94.951864884372384, 29.505209158562909 ], [ -94.952334884527303, 29.505246158311067 ], [ -94.952020884590468, 29.505398158252486 ], [ -94.952077884508526, 29.505414158452421 ], [ -94.952220884500235, 29.505451158548201 ], [ -94.952440884645569, 29.505521158724605 ], [ -94.952672885029813, 29.505586158252402 ], [ -94.952944885351116, 29.50564915821932 ], [ -94.953228885019584, 29.505727158511117 ], [ -94.953494885620429, 29.505804159081436 ], [ -94.95374288539962, 29.505894158324839 ], [ -94.953967885212691, 29.505972158280624 ], [ -94.954263885333631, 29.506042158545529 ], [ -94.954331885039863, 29.506055158416984 ], [ -94.954491885913356, 29.506054158778795 ], [ -94.954719885087158, 29.506113158855428 ], [ -94.955023885635697, 29.506150158385609 ], [ -94.955322885224689, 29.506195158392796 ], [ -94.955613886050315, 29.506228159050313 ], [ -94.955959885707557, 29.506274158323333 ], [ -94.956269885803096, 29.506320158957951 ], [ -94.95653688575166, 29.506372159041579 ], [ -94.956837886526671, 29.506447158405795 ], [ -94.957105886287763, 29.506505158874219 ], [ -94.957374886521251, 29.506576159061847 ], [ -94.957624886027787, 29.506647159078415 ], [ -94.957852886690844, 29.506714159115123 ], [ -94.95793788648939, 29.506739158858085 ], [ -94.958154886418228, 29.506809158884202 ], [ -94.958422886595784, 29.506888159110467 ], [ -94.958674886388309, 29.506967158861581 ], [ -94.958809886757436, 29.507021158345403 ], [ -94.959038886265631, 29.507080158582294 ], [ -94.959268886640331, 29.507060158927992 ], [ -94.959478886836195, 29.506990158814485 ], [ -94.959589886671679, 29.50698815909006 ], [ -94.959686886534982, 29.506984158795444 ], [ -94.959882886449492, 29.507019158651278 ], [ -94.959683886870053, 29.506914158710991 ], [ -94.9595168863531, 29.506826158270115 ], [ -94.959017887052894, 29.506564159057291 ], [ -94.958967886165013, 29.50653815893115 ], [ -94.958830886327519, 29.506525158745131 ], [ -94.958895886930407, 29.506384158135276 ], [ -94.959233886951665, 29.505670158213739 ], [ -94.959363886248894, 29.505210158063715 ], [ -94.959147886378361, 29.505135158687892 ], [ -94.958706886177524, 29.504980158585987 ], [ -94.95847888661298, 29.50490015831355 ], [ -94.955700885284983, 29.503926157906459 ], [ -94.955321885720451, 29.503793158323873 ], [ -94.95524888512621, 29.503767158512744 ], [ -94.954918885760733, 29.503652158004172 ], [ -94.954802885846661, 29.503611157813133 ], [ -94.954126885299971, 29.50342915831531 ], [ -94.955118885638441, 29.499967157239443 ], [ -94.955159885557535, 29.499871157311087 ], [ -94.955806885231837, 29.497688156973783 ], [ -94.956207885485853, 29.496308156907766 ], [ -94.957242885652008, 29.492735155791681 ], [ -94.9577768854666, 29.490949155743845 ], [ -94.958280885796938, 29.489245154698995 ], [ -94.961443886831319, 29.489943155455023 ], [ -94.962651886724544, 29.490212155485967 ], [ -94.963097887510699, 29.4903101549795 ], [ -94.964320887081442, 29.490581154692936 ], [ -94.965009887253387, 29.490733155460596 ], [ -94.965524887279614, 29.490799154840573 ], [ -94.965589887862222, 29.490797154868702 ], [ -94.965901887861847, 29.490775155236367 ], [ -94.966098887782479, 29.490758155371335 ], [ -94.966484887666141, 29.490632155398025 ], [ -94.966890888404009, 29.490432154739455 ], [ -94.966971888321368, 29.490343154906355 ], [ -94.967446888262458, 29.489738155127178 ], [ -94.96749688816611, 29.489551154747122 ], [ -94.968267888542087, 29.486881154393906 ], [ -94.968300888332109, 29.486768153759442 ], [ -94.968582888430518, 29.485792153879625 ], [ -94.968604887979367, 29.485636153665254 ], [ -94.968703887967862, 29.485373154187517 ], [ -94.968953888593603, 29.484508153952898 ], [ -94.968994888023943, 29.484369153809311 ], [ -94.969065888071952, 29.484126153811488 ], [ -94.969152887906148, 29.48382615344158 ], [ -94.9700888887525, 29.480622152646912 ], [ -94.971115888974992, 29.477103152449139 ], [ -94.971561888532108, 29.475574151832014 ], [ -94.972140888656398, 29.473591151119773 ], [ -94.97273288867575, 29.471565150663952 ], [ -94.972934889130556, 29.47120615127011 ], [ -94.973169889052627, 29.470987151133365 ], [ -94.973481888426903, 29.470737150645153 ], [ -94.973880889137632, 29.470565150335979 ], [ -94.974279889374415, 29.470471150507215 ], [ -94.974630889640437, 29.470440150725068 ], [ -94.974872889325965, 29.470442150660393 ], [ -94.975341888917512, 29.470547150826381 ], [ -94.976399890013667, 29.470784150784507 ], [ -94.97758089002744, 29.471053151014786 ], [ -94.978951890276846, 29.471365150653845 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1628, "Tract": "48167724200", "Area_SqMi": 0.44587897476169341, "total_2009": 54, "total_2010": 54, "total_2011": 162, "total_2012": 88, "total_2013": 88, "total_2014": 84, "total_2015": 99, "total_2016": 136, "total_2017": 124, "total_2018": 115, "total_2019": 160, "total_2020": 181, "age1": 16, "age2": 89, "age3": 61, "earn1": 28, "earn2": 90, "earn3": 48, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 1, "naics_s06": 0, "naics_s07": 4, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 21, "naics_s12": 7, "naics_s13": 0, "naics_s14": 56, "naics_s15": 1, "naics_s16": 10, "naics_s17": 30, "naics_s18": 31, "naics_s19": 2, "naics_s20": 0, "race1": 112, "race2": 28, "race3": 1, "race4": 20, "race5": 0, "race6": 5, "ethnicity1": 110, "ethnicity2": 56, "edu1": 48, "edu2": 40, "edu3": 31, "edu4": 31, "Shape_Length": 20715.916836509063, "Shape_Area": 12430342.686863879, "total_2021": 317, "total_2022": 166 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.776841832106143, 29.327114127349724 ], [ -94.77658983193696, 29.324159126922517 ], [ -94.776516831468427, 29.323938126807075 ], [ -94.77614483186187, 29.322830126477076 ], [ -94.77602183201455, 29.322255126404631 ], [ -94.775706831528581, 29.320780125797 ], [ -94.775021831541551, 29.318633125655367 ], [ -94.774969831515861, 29.318571125685278 ], [ -94.774638831365777, 29.318672125562955 ], [ -94.774383830647977, 29.317869125852518 ], [ -94.774296830720957, 29.317597125030915 ], [ -94.77378183065089, 29.316043125525347 ], [ -94.773749831083279, 29.315948125425081 ], [ -94.773556830979203, 29.31536512528228 ], [ -94.773312830231248, 29.31462812510782 ], [ -94.773192830595036, 29.31426512458453 ], [ -94.773011830684993, 29.313723124459898 ], [ -94.772706830551684, 29.312885124481419 ], [ -94.772412830140127, 29.31207712456326 ], [ -94.772387830489976, 29.311977124356382 ], [ -94.772237830030761, 29.311531124546388 ], [ -94.772090830192056, 29.311096124024658 ], [ -94.771948830137447, 29.310677124179161 ], [ -94.771793829699561, 29.310217123596235 ], [ -94.77150382988394, 29.309359123698353 ], [ -94.769269829246937, 29.309935123619052 ], [ -94.76918782948448, 29.309673124236173 ], [ -94.769169829512734, 29.309501124373163 ], [ -94.769177829858805, 29.309334124298857 ], [ -94.769194829721542, 29.309192124100424 ], [ -94.769219829030774, 29.309084123847146 ], [ -94.769302829166378, 29.308867124142601 ], [ -94.769394829490196, 29.308651124070618 ], [ -94.769423829000289, 29.308489124012016 ], [ -94.769011829436877, 29.308988123469707 ], [ -94.768512829559697, 29.309593124202877 ], [ -94.768004829590637, 29.310215123825611 ], [ -94.76696082897034, 29.311474124756241 ], [ -94.76695782896951, 29.312430124985468 ], [ -94.76950083001536, 29.319472126089138 ], [ -94.769518830201193, 29.319495126076916 ], [ -94.771923830768813, 29.327561127889492 ], [ -94.772074831024014, 29.326676127583827 ], [ -94.772315830999418, 29.326517127090373 ], [ -94.772369830818462, 29.326682127036058 ], [ -94.772492830618944, 29.327055127220333 ], [ -94.772624830488354, 29.327251127933483 ], [ -94.773060830742423, 29.327586127751136 ], [ -94.773156831516772, 29.327673127992337 ], [ -94.773049831047288, 29.328257127835894 ], [ -94.773135831347687, 29.328265127551575 ], [ -94.77294583129644, 29.329227127778566 ], [ -94.772904830701791, 29.329533127739204 ], [ -94.772903831645365, 29.329545128191146 ], [ -94.774340831495692, 29.329766127702722 ], [ -94.774221831489228, 29.330046128452317 ], [ -94.774527832125671, 29.330140127933635 ], [ -94.774434831318587, 29.330293128201692 ], [ -94.774220832052947, 29.330212128250174 ], [ -94.774488831125765, 29.330584128203604 ], [ -94.775928831602712, 29.332098128735502 ], [ -94.77656783196521, 29.329434127762628 ], [ -94.776389832230365, 29.328839127331747 ], [ -94.776841832106143, 29.327114127349724 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1629, "Tract": "48157674100", "Area_SqMi": 1.6098737118182926, "total_2009": 731, "total_2010": 655, "total_2011": 626, "total_2012": 711, "total_2013": 723, "total_2014": 728, "total_2015": 704, "total_2016": 728, "total_2017": 673, "total_2018": 644, "total_2019": 636, "total_2020": 671, "age1": 164, "age2": 333, "age3": 174, "earn1": 214, "earn2": 269, "earn3": 188, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 18, "naics_s05": 6, "naics_s06": 26, "naics_s07": 227, "naics_s08": 6, "naics_s09": 1, "naics_s10": 19, "naics_s11": 11, "naics_s12": 88, "naics_s13": 0, "naics_s14": 47, "naics_s15": 42, "naics_s16": 48, "naics_s17": 13, "naics_s18": 106, "naics_s19": 13, "naics_s20": 0, "race1": 395, "race2": 69, "race3": 2, "race4": 194, "race5": 1, "race6": 10, "ethnicity1": 510, "ethnicity2": 161, "edu1": 111, "edu2": 122, "edu3": 123, "edu4": 151, "Shape_Length": 27811.241855189714, "Shape_Area": 44880523.759099081, "total_2021": 652, "total_2022": 671 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.614674057571747, 29.578287151795362 ], [ -95.614506057779337, 29.578017151882886 ], [ -95.614311057932198, 29.57765415140608 ], [ -95.613606057886884, 29.576676151691363 ], [ -95.613147057478727, 29.57609415129328 ], [ -95.612675057308067, 29.575555150810942 ], [ -95.612335056694661, 29.575269151052879 ], [ -95.611813057094665, 29.574808150879232 ], [ -95.611240056549562, 29.574374150889533 ], [ -95.610668056587528, 29.573989150689052 ], [ -95.610492056571928, 29.573835150766477 ], [ -95.609750056198592, 29.573484150374153 ], [ -95.609410056159518, 29.573275150761344 ], [ -95.608970055996977, 29.5730881508366 ], [ -95.608562056053515, 29.572874150982656 ], [ -95.608442056212624, 29.572802150784533 ], [ -95.608147056231232, 29.572693150261234 ], [ -95.607951055945819, 29.572594151004182 ], [ -95.607681055319546, 29.572434150723382 ], [ -95.607392056226942, 29.572231150244217 ], [ -95.607360056198914, 29.572116150978871 ], [ -95.607278056133069, 29.572017150251767 ], [ -95.60700205542507, 29.571885150100695 ], [ -95.606775055163197, 29.571808150111739 ], [ -95.606417055835053, 29.571621150229738 ], [ -95.606228055012679, 29.571566150709845 ], [ -95.60598305554997, 29.571511150662175 ], [ -95.605788055591134, 29.57149515001494 ], [ -95.605555055062354, 29.571501150890811 ], [ -95.605284055424946, 29.571484150375735 ], [ -95.604957055366896, 29.571435150367027 ], [ -95.604486054454284, 29.571402150901871 ], [ -95.603939055010045, 29.571408150951878 ], [ -95.603379054537243, 29.571293150740502 ], [ -95.602813054144391, 29.571161150395984 ], [ -95.602329054422043, 29.570996150874084 ], [ -95.601825054687694, 29.570864150689509 ], [ -95.601278053680574, 29.57068315008534 ], [ -95.601033053810795, 29.570617150091834 ], [ -95.600888054306651, 29.57056215085699 ], [ -95.600668053940737, 29.570513150687972 ], [ -95.600310053742248, 29.570502150124998 ], [ -95.599838054036795, 29.570535150691356 ], [ -95.599655053693851, 29.570557150041864 ], [ -95.599441054119609, 29.570535150817612 ], [ -95.599124053321077, 29.570452150166222 ], [ -95.598850053587554, 29.57038115087941 ], [ -95.598667053537312, 29.570310150894926 ], [ -95.598560053191221, 29.570255150519085 ], [ -95.598026053457247, 29.57015115040916 ], [ -95.597718053163504, 29.570129150275591 ], [ -95.597554052665828, 29.570074150530008 ], [ -95.597359053493136, 29.569970150129333 ], [ -95.59724005297295, 29.569893150714897 ], [ -95.597057052569298, 29.569827150083011 ], [ -95.597014052819858, 29.569805150471147 ], [ -95.596875052554466, 29.569738150576232 ], [ -95.59661105246083, 29.569546150727 ], [ -95.596516052616877, 29.569518150120413 ], [ -95.59644105275278, 29.569513149920649 ], [ -95.596287052454102, 29.569429150647593 ], [ -95.596102052457752, 29.569327150354045 ], [ -95.595667052432702, 29.569090150580042 ], [ -95.595120052858277, 29.568793149894347 ], [ -95.594276052525615, 29.568413149930905 ], [ -95.593428051728154, 29.568095149946668 ], [ -95.593304052193503, 29.568062150494338 ], [ -95.592007051232514, 29.567722150551912 ], [ -95.59151805099755, 29.567666150144561 ], [ -95.591239051880805, 29.567634150380698 ], [ -95.590906051333775, 29.56755114986645 ], [ -95.590611051059923, 29.567497150207526 ], [ -95.590170050789766, 29.567436150033991 ], [ -95.58978005088089, 29.567354150457259 ], [ -95.589617050512359, 29.567288150175653 ], [ -95.589535051199988, 29.567266150123086 ], [ -95.589453051329357, 29.567249149834211 ], [ -95.589318050930615, 29.567198150496907 ], [ -95.589261050572986, 29.567176150521011 ], [ -95.589264050779832, 29.568193150181941 ], [ -95.589310051306569, 29.572059151036772 ], [ -95.589313050666831, 29.572208150787155 ], [ -95.589553051919211, 29.585236153784439 ], [ -95.589671051727905, 29.585319153759826 ], [ -95.591736052368958, 29.586799153873372 ], [ -95.593522053376176, 29.587989154473927 ], [ -95.594002052886097, 29.588229154510287 ], [ -95.59416305290145, 29.588298154575043 ], [ -95.594881052862917, 29.588582154714356 ], [ -95.595108053019914, 29.588652153933545 ], [ -95.595765053567604, 29.588875154091383 ], [ -95.596692054045079, 29.589204154279312 ], [ -95.596858054261844, 29.589259154400427 ], [ -95.597210054235461, 29.589383154702759 ], [ -95.597532054395089, 29.589490154090626 ], [ -95.598351054288585, 29.589774154885006 ], [ -95.59912805436889, 29.590078154295604 ], [ -95.599957054812236, 29.59038215467681 ], [ -95.600476054560175, 29.590585154590556 ], [ -95.60055705469955, 29.590610154805717 ], [ -95.601011055357731, 29.590772154202696 ], [ -95.601165055203865, 29.590837154913888 ], [ -95.601530055543265, 29.590967154229634 ], [ -95.602057055273207, 29.591168154915472 ], [ -95.602669055215145, 29.591378154267336 ], [ -95.603284055710859, 29.591588154722768 ], [ -95.603825056154321, 29.591761155089394 ], [ -95.604776056295933, 29.592107155118381 ], [ -95.604869055964059, 29.59191815439441 ], [ -95.605138055632608, 29.591380154794603 ], [ -95.605330056484021, 29.590815154876768 ], [ -95.605491055924205, 29.590376154342117 ], [ -95.605555056308106, 29.590073154436947 ], [ -95.605608055962392, 29.589754153879039 ], [ -95.605624056312237, 29.588885154346201 ], [ -95.605595056377979, 29.587858153621799 ], [ -95.605619055664235, 29.58743315343408 ], [ -95.605703055767819, 29.586755153249648 ], [ -95.605910056401612, 29.586041152994557 ], [ -95.606015056479464, 29.585773153429951 ], [ -95.606083055967005, 29.585686153486609 ], [ -95.606296055870956, 29.585215153333912 ], [ -95.606638056177744, 29.584744153294253 ], [ -95.60685105585128, 29.584450153261386 ], [ -95.60724405580325, 29.584023152571771 ], [ -95.607808055885457, 29.583536152692211 ], [ -95.609004056488132, 29.582656152542274 ], [ -95.609805056386648, 29.582031152484735 ], [ -95.610057057070321, 29.581785152441608 ], [ -95.610448057054342, 29.581362152124221 ], [ -95.610861057138322, 29.58094615216589 ], [ -95.611231057166634, 29.580461152395038 ], [ -95.611320057069534, 29.580366151871996 ], [ -95.611394057467663, 29.58028815185661 ], [ -95.611466057432892, 29.580201152236167 ], [ -95.611731056816865, 29.579880152174493 ], [ -95.612172056983084, 29.579518151949838 ], [ -95.612430057206439, 29.579328152026747 ], [ -95.612777057196993, 29.579082151930944 ], [ -95.613077057872061, 29.578972152178199 ], [ -95.613393057361421, 29.578867151339395 ], [ -95.614674057571747, 29.578287151795362 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1630, "Tract": "48157674200", "Area_SqMi": 2.3122073359098732, "total_2009": 1597, "total_2010": 1537, "total_2011": 1686, "total_2012": 1379, "total_2013": 1388, "total_2014": 1466, "total_2015": 1532, "total_2016": 1799, "total_2017": 1732, "total_2018": 1937, "total_2019": 1992, "total_2020": 1816, "age1": 514, "age2": 1004, "age3": 464, "earn1": 369, "earn2": 647, "earn3": 966, "naics_s01": 3, "naics_s02": 12, "naics_s03": 0, "naics_s04": 14, "naics_s05": 0, "naics_s06": 60, "naics_s07": 560, "naics_s08": 4, "naics_s09": 45, "naics_s10": 46, "naics_s11": 40, "naics_s12": 179, "naics_s13": 2, "naics_s14": 48, "naics_s15": 187, "naics_s16": 273, "naics_s17": 126, "naics_s18": 237, "naics_s19": 146, "naics_s20": 0, "race1": 1345, "race2": 294, "race3": 18, "race4": 288, "race5": 3, "race6": 34, "ethnicity1": 1418, "ethnicity2": 564, "edu1": 282, "edu2": 303, "edu3": 416, "edu4": 467, "Shape_Length": 45743.008101429958, "Shape_Area": 64460383.142761193, "total_2021": 2022, "total_2022": 1982 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.639898065069218, 29.586256152746554 ], [ -95.639858064824978, 29.585816152423533 ], [ -95.639844064721657, 29.585657152007016 ], [ -95.639815064212428, 29.585515152482468 ], [ -95.63980006439246, 29.585299152028309 ], [ -95.639834064296892, 29.584833152138952 ], [ -95.639835064657888, 29.584365151624361 ], [ -95.639857065016955, 29.583718151600554 ], [ -95.639840064191276, 29.583466152067665 ], [ -95.639818064979778, 29.582746151879821 ], [ -95.639834064972263, 29.582495151878625 ], [ -95.639838064825952, 29.582360151695159 ], [ -95.639842064669125, 29.582225151507373 ], [ -95.639871064601635, 29.581309151038312 ], [ -95.639869064252395, 29.578104150857882 ], [ -95.639857064598999, 29.577996150233762 ], [ -95.639790064708478, 29.577751150788924 ], [ -95.639755064361637, 29.577687150386918 ], [ -95.638501063967738, 29.576297150472531 ], [ -95.638140063281682, 29.575904150174093 ], [ -95.638041064087759, 29.575805149940869 ], [ -95.638028063455366, 29.57579114987178 ], [ -95.638015064002275, 29.575778149963437 ], [ -95.637996064163261, 29.575745150029665 ], [ -95.637983063676941, 29.575711150017991 ], [ -95.637963063502355, 29.575568150076005 ], [ -95.637935063174197, 29.574778150267271 ], [ -95.637900064021878, 29.573124150136426 ], [ -95.637861063367183, 29.571650149510379 ], [ -95.637870063804115, 29.570713149567364 ], [ -95.637877063633738, 29.570489149365876 ], [ -95.637885063569072, 29.570164149054118 ], [ -95.637888063268846, 29.569660148908294 ], [ -95.637877063624416, 29.568398148311836 ], [ -95.637879063106951, 29.567749148490638 ], [ -95.637896062930594, 29.566307148218264 ], [ -95.637876063073406, 29.565262148263251 ], [ -95.637891062715383, 29.564732147863239 ], [ -95.637871063632531, 29.56455314808592 ], [ -95.637869063386205, 29.564193147583083 ], [ -95.637906063651258, 29.563834148272726 ], [ -95.637927062802945, 29.563696147534458 ], [ -95.637966063264869, 29.563439148165163 ], [ -95.637779063290353, 29.563442147506528 ], [ -95.632909061768146, 29.5635081479337 ], [ -95.630252061594419, 29.56354614761808 ], [ -95.629811061527576, 29.563552148425259 ], [ -95.629061060633518, 29.563570148348607 ], [ -95.621390059203733, 29.563759148507256 ], [ -95.619209058001118, 29.563812147991538 ], [ -95.618221058417234, 29.563805148229161 ], [ -95.618221058378353, 29.563760148247052 ], [ -95.618220057660807, 29.563742148404369 ], [ -95.615343057673684, 29.563802148488815 ], [ -95.612099056190885, 29.563871148376055 ], [ -95.608868055292334, 29.563939149182119 ], [ -95.6038400542228, 29.564060148737695 ], [ -95.603538054602453, 29.564061149330588 ], [ -95.594065051605853, 29.564211149286379 ], [ -95.593047051968099, 29.564234149094283 ], [ -95.591462051707381, 29.564271149419408 ], [ -95.591461051164544, 29.56443614989859 ], [ -95.591460050953231, 29.564839149124872 ], [ -95.591464051587238, 29.564995149357578 ], [ -95.591496051198533, 29.566569149740396 ], [ -95.59151805099755, 29.567666150144561 ], [ -95.592007051232514, 29.567722150551912 ], [ -95.593304052193503, 29.568062150494338 ], [ -95.593428051728154, 29.568095149946668 ], [ -95.594276052525615, 29.568413149930905 ], [ -95.595120052858277, 29.568793149894347 ], [ -95.595667052432702, 29.569090150580042 ], [ -95.596102052457752, 29.569327150354045 ], [ -95.596287052454102, 29.569429150647593 ], [ -95.59644105275278, 29.569513149920649 ], [ -95.596516052616877, 29.569518150120413 ], [ -95.59661105246083, 29.569546150727 ], [ -95.596875052554466, 29.569738150576232 ], [ -95.597014052819858, 29.569805150471147 ], [ -95.597057052569298, 29.569827150083011 ], [ -95.59724005297295, 29.569893150714897 ], [ -95.597359053493136, 29.569970150129333 ], [ -95.597554052665828, 29.570074150530008 ], [ -95.597718053163504, 29.570129150275591 ], [ -95.598026053457247, 29.57015115040916 ], [ -95.598560053191221, 29.570255150519085 ], [ -95.598667053537312, 29.570310150894926 ], [ -95.598850053587554, 29.57038115087941 ], [ -95.599124053321077, 29.570452150166222 ], [ -95.599441054119609, 29.570535150817612 ], [ -95.599655053693851, 29.570557150041864 ], [ -95.599838054036795, 29.570535150691356 ], [ -95.600310053742248, 29.570502150124998 ], [ -95.600668053940737, 29.570513150687972 ], [ -95.600888054306651, 29.57056215085699 ], [ -95.601033053810795, 29.570617150091834 ], [ -95.601278053680574, 29.57068315008534 ], [ -95.601825054687694, 29.570864150689509 ], [ -95.602329054422043, 29.570996150874084 ], [ -95.602813054144391, 29.571161150395984 ], [ -95.603379054537243, 29.571293150740502 ], [ -95.603939055010045, 29.571408150951878 ], [ -95.604486054454284, 29.571402150901871 ], [ -95.604957055366896, 29.571435150367027 ], [ -95.605284055424946, 29.571484150375735 ], [ -95.605555055062354, 29.571501150890811 ], [ -95.605788055591134, 29.57149515001494 ], [ -95.60598305554997, 29.571511150662175 ], [ -95.606228055012679, 29.571566150709845 ], [ -95.606417055835053, 29.571621150229738 ], [ -95.606775055163197, 29.571808150111739 ], [ -95.60700205542507, 29.571885150100695 ], [ -95.607278056133069, 29.572017150251767 ], [ -95.607360056198914, 29.572116150978871 ], [ -95.607392056226942, 29.572231150244217 ], [ -95.607681055319546, 29.572434150723382 ], [ -95.607951055945819, 29.572594151004182 ], [ -95.608147056231232, 29.572693150261234 ], [ -95.608442056212624, 29.572802150784533 ], [ -95.608562056053515, 29.572874150982656 ], [ -95.608970055996977, 29.5730881508366 ], [ -95.609410056159518, 29.573275150761344 ], [ -95.609750056198592, 29.573484150374153 ], [ -95.610492056571928, 29.573835150766477 ], [ -95.610668056587528, 29.573989150689052 ], [ -95.611240056549562, 29.574374150889533 ], [ -95.611813057094665, 29.574808150879232 ], [ -95.612335056694661, 29.575269151052879 ], [ -95.612675057308067, 29.575555150810942 ], [ -95.613147057478727, 29.57609415129328 ], [ -95.613606057886884, 29.576676151691363 ], [ -95.614311057932198, 29.57765415140608 ], [ -95.614506057779337, 29.578017151882886 ], [ -95.614674057571747, 29.578287151795362 ], [ -95.616214058051156, 29.577591151596145 ], [ -95.617442058095634, 29.576825150812482 ], [ -95.618496058458163, 29.576169151204038 ], [ -95.618563058814644, 29.57612915071946 ], [ -95.619228058915169, 29.575682151079906 ], [ -95.620022059597076, 29.575235150536319 ], [ -95.620244059184685, 29.575110150438061 ], [ -95.620541059312202, 29.574962150811331 ], [ -95.621839059363268, 29.574497150562159 ], [ -95.622367060066438, 29.574376150122834 ], [ -95.622930059566542, 29.574313150121885 ], [ -95.623744059765784, 29.574312150410449 ], [ -95.624501060658829, 29.574281150121685 ], [ -95.624675060630338, 29.57429415075314 ], [ -95.625005060094992, 29.574305150017342 ], [ -95.625344060802561, 29.574317150048699 ], [ -95.625656060329291, 29.574340150113297 ], [ -95.62652806083031, 29.574521150065149 ], [ -95.627155061067626, 29.574806150831559 ], [ -95.627567061032835, 29.574961150389925 ], [ -95.628142060760851, 29.57533515064944 ], [ -95.628543061164606, 29.575609150317952 ], [ -95.629013061014462, 29.576001150669235 ], [ -95.629384061393736, 29.576388150534733 ], [ -95.629463061052064, 29.576482150970477 ], [ -95.629722062035768, 29.576794150747599 ], [ -95.629902061575578, 29.577127150809702 ], [ -95.630103061802444, 29.577560150587637 ], [ -95.630269062117407, 29.578060150957896 ], [ -95.630385061570863, 29.578535150869637 ], [ -95.630426062009747, 29.578762150775155 ], [ -95.630485062229354, 29.579093151312374 ], [ -95.63049806201316, 29.579255151100398 ], [ -95.630555061980672, 29.579921151270955 ], [ -95.630566062146457, 29.580034150979486 ], [ -95.630576061585359, 29.580146151518573 ], [ -95.630682062553333, 29.58118815137826 ], [ -95.630742061659632, 29.581828151903309 ], [ -95.630787061920984, 29.582257151777338 ], [ -95.630805062001897, 29.582395151400213 ], [ -95.630869062294863, 29.582905152157682 ], [ -95.630990062704541, 29.58346615186958 ], [ -95.631019062521347, 29.584095152241005 ], [ -95.631038061835937, 29.584233152554305 ], [ -95.631155062513685, 29.584623152218676 ], [ -95.631334062551161, 29.585060152301388 ], [ -95.631608062354275, 29.585592152178599 ], [ -95.631838062465349, 29.585944152606057 ], [ -95.632090062786062, 29.586280152858631 ], [ -95.632442062350563, 29.586669152318127 ], [ -95.632876063195994, 29.587152152904888 ], [ -95.633306063200507, 29.587615152420337 ], [ -95.633979063090962, 29.58837815285175 ], [ -95.634308063429998, 29.588751152763116 ], [ -95.634410063476452, 29.588868152755737 ], [ -95.634625063619637, 29.589116153026755 ], [ -95.63486406370339, 29.589415153103307 ], [ -95.634964063910061, 29.589352152912415 ], [ -95.636069063916636, 29.588662152944387 ], [ -95.639743064872221, 29.586354152379538 ], [ -95.639898065069218, 29.586256152746554 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1631, "Tract": "48167720501", "Area_SqMi": 1.730195785676337, "total_2009": 433, "total_2010": 421, "total_2011": 475, "total_2012": 444, "total_2013": 470, "total_2014": 497, "total_2015": 496, "total_2016": 481, "total_2017": 466, "total_2018": 415, "total_2019": 400, "total_2020": 417, "age1": 206, "age2": 285, "age3": 126, "earn1": 152, "earn2": 253, "earn3": 212, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 34, "naics_s05": 14, "naics_s06": 23, "naics_s07": 287, "naics_s08": 0, "naics_s09": 0, "naics_s10": 23, "naics_s11": 5, "naics_s12": 16, "naics_s13": 0, "naics_s14": 0, "naics_s15": 9, "naics_s16": 90, "naics_s17": 7, "naics_s18": 91, "naics_s19": 18, "naics_s20": 0, "race1": 468, "race2": 79, "race3": 7, "race4": 54, "race5": 1, "race6": 8, "ethnicity1": 431, "ethnicity2": 186, "edu1": 77, "edu2": 113, "edu3": 126, "edu4": 95, "Shape_Length": 41155.38641211496, "Shape_Area": 48234897.244973823, "total_2021": 456, "total_2022": 617 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.166207939301898, 29.49059114867303 ], [ -95.166117939701891, 29.490572148695538 ], [ -95.165843938767978, 29.490511148017941 ], [ -95.164227939020108, 29.490152148754159 ], [ -95.161283938407209, 29.489498148616033 ], [ -95.160580938213599, 29.489327148189403 ], [ -95.15965693731728, 29.489169148281498 ], [ -95.159413937560927, 29.489147148505438 ], [ -95.158872937559323, 29.489098148711278 ], [ -95.157944937550809, 29.489056148819749 ], [ -95.157479936788292, 29.489083148588342 ], [ -95.157004936417408, 29.489133148116007 ], [ -95.156520937145203, 29.48918414831493 ], [ -95.155922937054939, 29.489247148641432 ], [ -95.155414936797712, 29.489374149008906 ], [ -95.154282936307354, 29.489657148606643 ], [ -95.153152935376269, 29.49008914844676 ], [ -95.152229935917234, 29.490441148835416 ], [ -95.151483935745844, 29.490744148945815 ], [ -95.150013935436817, 29.491343149589916 ], [ -95.149086934915417, 29.49172014962906 ], [ -95.145642933982373, 29.493121149277002 ], [ -95.143422933706319, 29.494024149735424 ], [ -95.141630933449562, 29.494750150441625 ], [ -95.141042932891594, 29.494989149929101 ], [ -95.140002932477785, 29.495410150127356 ], [ -95.139558932976911, 29.495591150687364 ], [ -95.138198932493694, 29.496142150208438 ], [ -95.137414932405548, 29.496460150864607 ], [ -95.137336932303199, 29.49649215056321 ], [ -95.135267931742959, 29.497330151149093 ], [ -95.134600931582384, 29.497601151299943 ], [ -95.133631931624947, 29.49798215134642 ], [ -95.132777931056964, 29.498307151553306 ], [ -95.130928930325425, 29.499024151624013 ], [ -95.130742930797751, 29.499089151018584 ], [ -95.12937893010087, 29.49956715144981 ], [ -95.129110929774512, 29.49966215190031 ], [ -95.128583929742305, 29.499846151168157 ], [ -95.12848892978711, 29.499870151242057 ], [ -95.127087929925167, 29.50022015185089 ], [ -95.126366929933454, 29.500367152167389 ], [ -95.125661929686061, 29.500510151843137 ], [ -95.125309929413262, 29.500582152302187 ], [ -95.1242209285044, 29.500766151642374 ], [ -95.123870928716599, 29.500825152126563 ], [ -95.123194928241475, 29.500940152380476 ], [ -95.121994928638316, 29.5011411524045 ], [ -95.121190928605756, 29.501277151947058 ], [ -95.120717927860909, 29.501390152033665 ], [ -95.120147927449935, 29.50152715256441 ], [ -95.119977927598768, 29.501567152275999 ], [ -95.119472927516412, 29.501701152147067 ], [ -95.118660927807156, 29.501915152384608 ], [ -95.11795392761006, 29.502101152868232 ], [ -95.117625926985369, 29.502189152597435 ], [ -95.117557927458066, 29.502207152192025 ], [ -95.116010927096767, 29.502610152826307 ], [ -95.115428926677509, 29.502761152669013 ], [ -95.114950926719729, 29.502887152716362 ], [ -95.114471926128914, 29.503011153017638 ], [ -95.1141129264591, 29.503104152658189 ], [ -95.114217926301976, 29.503277152370199 ], [ -95.116768926941674, 29.507676153605146 ], [ -95.117042927898041, 29.507938153472129 ], [ -95.117145927266492, 29.508036153994038 ], [ -95.11715992718635, 29.508059153801312 ], [ -95.1172029276795, 29.508022153890824 ], [ -95.11723992756221, 29.507975153736453 ], [ -95.117318927648199, 29.507900153311667 ], [ -95.117338927820541, 29.507875153945307 ], [ -95.11735592702756, 29.507856153966962 ], [ -95.117364927156814, 29.507844153812222 ], [ -95.117404927515793, 29.507794153258484 ], [ -95.117523927891298, 29.507666154005165 ], [ -95.117675927201034, 29.507477153339 ], [ -95.117820927865324, 29.50734515323408 ], [ -95.117968927441709, 29.507241153270652 ], [ -95.118005928012437, 29.507200153741646 ], [ -95.118067927267631, 29.507182153798983 ], [ -95.118133927986506, 29.507142153645351 ], [ -95.1183109277856, 29.507051153424271 ], [ -95.118495928068143, 29.506988153163537 ], [ -95.118679927758777, 29.506946153045778 ], [ -95.118777927706162, 29.506944153796937 ], [ -95.118840927902554, 29.506953153243064 ], [ -95.119001927443918, 29.506988153072669 ], [ -95.119113927663108, 29.507044153225557 ], [ -95.119199927612485, 29.507106153840041 ], [ -95.119214927851147, 29.507120153731609 ], [ -95.119258927723735, 29.507163153507772 ], [ -95.119305928228883, 29.50722515371675 ], [ -95.119341927772496, 29.50727315369668 ], [ -95.119370928369534, 29.507310153151074 ], [ -95.120244928343297, 29.50873515341258 ], [ -95.120398928275634, 29.50898915396392 ], [ -95.120574928596653, 29.509283154238236 ], [ -95.120671927935106, 29.509426153889251 ], [ -95.120729928867036, 29.509511154327576 ], [ -95.120783928024593, 29.509590154246894 ], [ -95.120905928948773, 29.509752153492737 ], [ -95.120952928514541, 29.509814153902141 ], [ -95.121113928834816, 29.50996115389378 ], [ -95.121341928443215, 29.510118153559265 ], [ -95.121402928225038, 29.510150154359295 ], [ -95.121455928355942, 29.510190153655532 ], [ -95.121668928234641, 29.510275153861343 ], [ -95.121680928661618, 29.510280154125674 ], [ -95.122017928529601, 29.510414153732917 ], [ -95.122949929190256, 29.510549153623135 ], [ -95.124017929766666, 29.510489153975655 ], [ -95.125100929204763, 29.510268154272275 ], [ -95.12571292983597, 29.510084154137761 ], [ -95.126112929434498, 29.509963153408847 ], [ -95.126275930280514, 29.50989515335278 ], [ -95.126529929523073, 29.509805153498359 ], [ -95.126954929846249, 29.509653153829714 ], [ -95.127143929925339, 29.509572154086399 ], [ -95.127184930450866, 29.50955215387286 ], [ -95.12730993004287, 29.509492153275207 ], [ -95.127331930274991, 29.509480153613577 ], [ -95.127400929818705, 29.509446153590609 ], [ -95.127531930035332, 29.509371153614367 ], [ -95.127773929938741, 29.509233153183295 ], [ -95.127883930660474, 29.509151153678808 ], [ -95.128003929810916, 29.509062153790634 ], [ -95.128261930537008, 29.508838153091972 ], [ -95.128412929970878, 29.508656153517556 ], [ -95.128581930467931, 29.508440153759761 ], [ -95.128686930474828, 29.508224153397556 ], [ -95.128818930171192, 29.507940153001019 ], [ -95.12887093085422, 29.50771915339493 ], [ -95.128888930789387, 29.507575153010055 ], [ -95.12890393007531, 29.507461153604222 ], [ -95.128903930710209, 29.507292152954516 ], [ -95.128907930922608, 29.507239152774115 ], [ -95.128869930267228, 29.506682152697799 ], [ -95.128838930107179, 29.506233152845077 ], [ -95.128956930322573, 29.505748153223383 ], [ -95.129140930080382, 29.505425152625115 ], [ -95.129157930173037, 29.505395152649044 ], [ -95.129370930226486, 29.505226153104562 ], [ -95.129524930800514, 29.50515115298753 ], [ -95.129623930862266, 29.505104153090493 ], [ -95.130137931033701, 29.504969152203593 ], [ -95.130213930646192, 29.504949152520666 ], [ -95.13038393037057, 29.504947152284362 ], [ -95.130507930403411, 29.504946152791568 ], [ -95.130838930746208, 29.504943152914407 ], [ -95.131247930637542, 29.505054152784446 ], [ -95.131621930648137, 29.505156152316154 ], [ -95.13199193130788, 29.505398152949176 ], [ -95.132342930772538, 29.505629152930027 ], [ -95.132713931422657, 29.505831152893219 ], [ -95.132900931721565, 29.50593315236744 ], [ -95.133459931397894, 29.506162152690152 ], [ -95.133845931680568, 29.506399152580354 ], [ -95.133896932012632, 29.506430152419441 ], [ -95.134237932239486, 29.506301152371559 ], [ -95.134347931597546, 29.506259152599267 ], [ -95.135704932160209, 29.506198152726522 ], [ -95.136445932455018, 29.506222152383376 ], [ -95.138528932402835, 29.506460152659667 ], [ -95.139285932807553, 29.506430152191978 ], [ -95.13992693294243, 29.506404152999909 ], [ -95.141030933016111, 29.506493152261051 ], [ -95.141713933343226, 29.506366152777119 ], [ -95.142124933873973, 29.506197152860565 ], [ -95.14270893368527, 29.505860152696993 ], [ -95.142739933727711, 29.505828151973361 ], [ -95.143035933934868, 29.505593152160937 ], [ -95.14319093376568, 29.505448152273509 ], [ -95.143360934415455, 29.505228152568876 ], [ -95.143560933577874, 29.504943152497958 ], [ -95.143740934364175, 29.504661151915897 ], [ -95.144061934270283, 29.504124151749906 ], [ -95.144080934250965, 29.504084151656734 ], [ -95.144503933707483, 29.503203152079351 ], [ -95.144571933977659, 29.503062151652873 ], [ -95.144954934251473, 29.50264015183874 ], [ -95.145698934573858, 29.502335151967245 ], [ -95.14615093471923, 29.502330151254132 ], [ -95.146595934820169, 29.502260151207953 ], [ -95.14703593500866, 29.502064151118091 ], [ -95.147243935105323, 29.501904151207036 ], [ -95.147282934593647, 29.501874151343209 ], [ -95.147502934887484, 29.501531150975691 ], [ -95.147788935230039, 29.50037015088672 ], [ -95.147939935151769, 29.499997151289275 ], [ -95.148416935283961, 29.49920015088642 ], [ -95.148627935585253, 29.49893415090656 ], [ -95.148891935132383, 29.498708150696196 ], [ -95.149063935433162, 29.49865715028994 ], [ -95.149080935506106, 29.49865215037126 ], [ -95.149629935338197, 29.498491150217518 ], [ -95.149794935379191, 29.498483150526063 ], [ -95.149956934987259, 29.498476150232541 ], [ -95.150233935128043, 29.498542150752566 ], [ -95.150473935875624, 29.498681150574555 ], [ -95.150578935902573, 29.498801150680013 ], [ -95.150647935196844, 29.49888015048565 ], [ -95.150693935468553, 29.499274151099758 ], [ -95.150835935542887, 29.49968815073602 ], [ -95.151109935665801, 29.500087150621756 ], [ -95.151381936137795, 29.500294151066093 ], [ -95.151511936386854, 29.500393151273617 ], [ -95.152164936131854, 29.500449151329867 ], [ -95.152233936474332, 29.500441150570147 ], [ -95.152775936073482, 29.500378150737976 ], [ -95.153094936434059, 29.500266151253829 ], [ -95.153882936616824, 29.499990150961722 ], [ -95.154875937062187, 29.499415150906376 ], [ -95.155578936567352, 29.498833150287322 ], [ -95.156241937467115, 29.498377150786432 ], [ -95.156431937002992, 29.498304150706897 ], [ -95.156728937365031, 29.498190150482738 ], [ -95.157671937128285, 29.498148150127463 ], [ -95.158382937078784, 29.49832315036263 ], [ -95.158708937836465, 29.49835215033066 ], [ -95.159397938361735, 29.498221149904278 ], [ -95.159510937679656, 29.498199150303172 ], [ -95.16027493785127, 29.497737150540125 ], [ -95.160301938477602, 29.497720149783301 ], [ -95.160343937559233, 29.49769514984089 ], [ -95.160384937680021, 29.497670150072921 ], [ -95.160411937834951, 29.497654150458722 ], [ -95.160449938306414, 29.497631149898105 ], [ -95.160638938036712, 29.497551150319669 ], [ -95.160671938172612, 29.497537150248515 ], [ -95.160707938442314, 29.497525150243838 ], [ -95.160731937891143, 29.497495149887637 ], [ -95.160805938375162, 29.497399149595211 ], [ -95.161149938664906, 29.496962149997128 ], [ -95.162761938138132, 29.494949149506738 ], [ -95.1628039390678, 29.494889149197469 ], [ -95.163314938956148, 29.494233149686139 ], [ -95.163440938944788, 29.494075149675577 ], [ -95.163519939224358, 29.493976148942227 ], [ -95.163561939180994, 29.493922149124604 ], [ -95.163697939242709, 29.493751148932255 ], [ -95.164750938703392, 29.492424148767959 ], [ -95.166207939301898, 29.49059114867303 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1632, "Tract": "48167722002", "Area_SqMi": 0.67210749046396845, "total_2009": 379, "total_2010": 420, "total_2011": 420, "total_2012": 396, "total_2013": 436, "total_2014": 386, "total_2015": 431, "total_2016": 444, "total_2017": 386, "total_2018": 359, "total_2019": 360, "total_2020": 456, "age1": 112, "age2": 188, "age3": 97, "earn1": 115, "earn2": 153, "earn3": 129, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 16, "naics_s05": 9, "naics_s06": 0, "naics_s07": 123, "naics_s08": 0, "naics_s09": 0, "naics_s10": 34, "naics_s11": 7, "naics_s12": 17, "naics_s13": 0, "naics_s14": 5, "naics_s15": 0, "naics_s16": 95, "naics_s17": 11, "naics_s18": 72, "naics_s19": 8, "naics_s20": 0, "race1": 294, "race2": 74, "race3": 6, "race4": 14, "race5": 3, "race6": 6, "ethnicity1": 265, "ethnicity2": 132, "edu1": 58, "edu2": 95, "edu3": 96, "edu4": 36, "Shape_Length": 17864.701956016332, "Shape_Area": 18737206.510669008, "total_2021": 465, "total_2022": 397 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.937247876451991, 29.397048136775005 ], [ -94.937248876609104, 29.39659513689379 ], [ -94.937246876413852, 29.396254136325538 ], [ -94.937243875962977, 29.395292136603615 ], [ -94.93382687523669, 29.395257136005565 ], [ -94.932285874677987, 29.395242135973191 ], [ -94.931864874473263, 29.395238136106219 ], [ -94.931738875027904, 29.395212136756736 ], [ -94.930715874153961, 29.395005136507731 ], [ -94.929273874500126, 29.394507136397319 ], [ -94.928048874171793, 29.393958136603981 ], [ -94.927669873375024, 29.393809135917099 ], [ -94.927078873760024, 29.393575135964454 ], [ -94.926569873890401, 29.393473136274832 ], [ -94.925865873068787, 29.393333136643051 ], [ -94.9255608727441, 29.393303136247994 ], [ -94.925062873506917, 29.393256136091821 ], [ -94.925082873122193, 29.394252136625393 ], [ -94.925091873184016, 29.394730136537802 ], [ -94.925101873403804, 29.395259136635556 ], [ -94.925110873560968, 29.395691136978424 ], [ -94.925119873703878, 29.396166136585634 ], [ -94.925122873208622, 29.396643136990445 ], [ -94.925126873534353, 29.397137137032882 ], [ -94.92513087344517, 29.397607137375331 ], [ -94.925134873030899, 29.398099137492324 ], [ -94.925137873338642, 29.398570137399933 ], [ -94.925141873671919, 29.399056137095929 ], [ -94.925144873790572, 29.399529137641473 ], [ -94.925148873622902, 29.400034137779297 ], [ -94.925149873586321, 29.400110137951742 ], [ -94.925151873693594, 29.400527137334869 ], [ -94.925154873229218, 29.400978137929336 ], [ -94.925156873813549, 29.401246137683547 ], [ -94.925157873002021, 29.401460137941065 ], [ -94.925158873405906, 29.40162113807083 ], [ -94.92516087305188, 29.401935138104768 ], [ -94.925160873331947, 29.402012137894037 ], [ -94.925162873024334, 29.402405138404671 ], [ -94.925163873268687, 29.402535138160587 ], [ -94.925176873476275, 29.402816137881079 ], [ -94.925170873074805, 29.402957138285121 ], [ -94.925170874007549, 29.403173138525222 ], [ -94.925171873715101, 29.403556138236709 ], [ -94.925172873857505, 29.40396313845768 ], [ -94.925173873155757, 29.404373138802018 ], [ -94.925173873508143, 29.404819138747964 ], [ -94.925174873816573, 29.405267138299845 ], [ -94.925174874064993, 29.405695138917032 ], [ -94.925175874100063, 29.406122138960111 ], [ -94.925175873900827, 29.40626913859267 ], [ -94.925179873269784, 29.406571139109975 ], [ -94.9251848732589, 29.406991139473316 ], [ -94.925196874098418, 29.408053139255447 ], [ -94.925831873596664, 29.408053139126853 ], [ -94.926933874125723, 29.408052138947337 ], [ -94.927586874170899, 29.408051139352658 ], [ -94.927662874079559, 29.408051138965792 ], [ -94.928201874597676, 29.408051139103517 ], [ -94.929144874313721, 29.408050138733241 ], [ -94.930713874692088, 29.408049139216597 ], [ -94.931968875370004, 29.408048138958957 ], [ -94.932692875219971, 29.408049138655841 ], [ -94.933432875838562, 29.408050138760103 ], [ -94.935391876658244, 29.4080531392692 ], [ -94.937228876505117, 29.408056139132288 ], [ -94.937225876861433, 29.406938139078438 ], [ -94.937226876548294, 29.406527138652919 ], [ -94.937229877045525, 29.405429138421876 ], [ -94.937231877196751, 29.404723138090095 ], [ -94.937233876477819, 29.404043137892689 ], [ -94.937235876217954, 29.403362138176956 ], [ -94.937239876946691, 29.402170137848252 ], [ -94.937239876477918, 29.402110138081529 ], [ -94.937239876437616, 29.401497137685297 ], [ -94.937240876194352, 29.400980137841504 ], [ -94.937240876927376, 29.400804137288649 ], [ -94.937241877035262, 29.400400137143688 ], [ -94.937242876456509, 29.400111137419479 ], [ -94.937243876967287, 29.399292136960284 ], [ -94.937243876121144, 29.399115136854398 ], [ -94.937245876810138, 29.397981137084574 ], [ -94.937246876195175, 29.397288136242931 ], [ -94.937247876451991, 29.397048136775005 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1633, "Tract": "48167720301", "Area_SqMi": 1.2618173067715066, "total_2009": 1142, "total_2010": 1805, "total_2011": 1792, "total_2012": 1981, "total_2013": 2032, "total_2014": 1995, "total_2015": 2182, "total_2016": 2147, "total_2017": 2229, "total_2018": 2199, "total_2019": 2238, "total_2020": 2082, "age1": 481, "age2": 1383, "age3": 654, "earn1": 568, "earn2": 726, "earn3": 1224, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 35, "naics_s05": 7, "naics_s06": 7, "naics_s07": 120, "naics_s08": 9, "naics_s09": 21, "naics_s10": 70, "naics_s11": 28, "naics_s12": 119, "naics_s13": 11, "naics_s14": 23, "naics_s15": 1201, "naics_s16": 247, "naics_s17": 63, "naics_s18": 325, "naics_s19": 122, "naics_s20": 110, "race1": 2178, "race2": 201, "race3": 20, "race4": 83, "race5": 1, "race6": 35, "ethnicity1": 1969, "ethnicity2": 549, "edu1": 306, "edu2": 431, "edu3": 631, "edu4": 669, "Shape_Length": 26358.139067484117, "Shape_Area": 35177306.890885487, "total_2021": 2395, "total_2022": 2518 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.214578953428912, 29.525672154237164 ], [ -95.213928953266418, 29.525097154271382 ], [ -95.213374953086927, 29.524663153691282 ], [ -95.213287952779396, 29.524595153567311 ], [ -95.211934951913179, 29.523464153435445 ], [ -95.211574952085257, 29.523159153938916 ], [ -95.211445951882013, 29.523051153554324 ], [ -95.210864952238609, 29.522577153533014 ], [ -95.210513951594848, 29.522288153750083 ], [ -95.210214952396313, 29.522042153269393 ], [ -95.209794951544225, 29.521637153344336 ], [ -95.209327951959409, 29.521224153205232 ], [ -95.208684951142871, 29.520573152901392 ], [ -95.208594951856099, 29.520482153303554 ], [ -95.208051951609363, 29.520115152990765 ], [ -95.207493950967091, 29.51964815310679 ], [ -95.20680595098618, 29.519068152846948 ], [ -95.206458950654778, 29.518784152534629 ], [ -95.206208951084491, 29.518579153298774 ], [ -95.205834950611518, 29.518349152641409 ], [ -95.205536951008355, 29.518120152851342 ], [ -95.205299950276157, 29.517929152472501 ], [ -95.204462949888878, 29.517236152676347 ], [ -95.204160949960809, 29.516985153079634 ], [ -95.203497950206895, 29.516436152788071 ], [ -95.202737950118717, 29.515805152520489 ], [ -95.202553949795288, 29.515651152756227 ], [ -95.201059949718385, 29.51439515248375 ], [ -95.200593949324315, 29.514003152246584 ], [ -95.199848949042376, 29.513376151791817 ], [ -95.199533948362557, 29.51313015173093 ], [ -95.199207949167189, 29.512874152374692 ], [ -95.199167948576545, 29.512843151507671 ], [ -95.198926948590298, 29.512706152153573 ], [ -95.198487948590696, 29.512539151802752 ], [ -95.198120947999129, 29.512361152163074 ], [ -95.197806948212602, 29.512120152275404 ], [ -95.197670948363566, 29.512016151622266 ], [ -95.195151947229888, 29.509945151602967 ], [ -95.193730946781073, 29.508777151155442 ], [ -95.193039946620672, 29.508209151080738 ], [ -95.19298294662245, 29.508163151167118 ], [ -95.192656946955935, 29.507895151344545 ], [ -95.192300946264325, 29.507602151491302 ], [ -95.191215946340321, 29.506710150859437 ], [ -95.189768945741577, 29.508031151163994 ], [ -95.188424945357653, 29.509257151827292 ], [ -95.188808946280162, 29.509902151705209 ], [ -95.18896994578148, 29.510795151424684 ], [ -95.18910894580597, 29.511569151962302 ], [ -95.189306946186079, 29.512517152327817 ], [ -95.189527946731005, 29.513512152156892 ], [ -95.189755946765104, 29.514698152831706 ], [ -95.189747946855178, 29.515002152819243 ], [ -95.189956946774231, 29.515860153117625 ], [ -95.190349947031052, 29.51804515290063 ], [ -95.190611947041361, 29.519503153452128 ], [ -95.190714947091536, 29.520074153565247 ], [ -95.190873947387232, 29.52059815358896 ], [ -95.191081947162488, 29.520919154081849 ], [ -95.191254946591897, 29.521186153889818 ], [ -95.191690946981311, 29.521646153597494 ], [ -95.19317694745682, 29.522886154040474 ], [ -95.193973947744709, 29.523550154177723 ], [ -95.195851948279056, 29.525116154726906 ], [ -95.196354948746148, 29.52553615454703 ], [ -95.196977948662834, 29.526057154719794 ], [ -95.197879949021797, 29.52681115468982 ], [ -95.198480948874916, 29.527313154892752 ], [ -95.199294949715323, 29.527994155393017 ], [ -95.199597949155176, 29.52824715493362 ], [ -95.199975949312375, 29.528558154817105 ], [ -95.200931949601681, 29.529346155134448 ], [ -95.201181949746584, 29.529551155221412 ], [ -95.202188949836625, 29.530380155782623 ], [ -95.202999950317732, 29.531048155273627 ], [ -95.203128950893117, 29.531154155868716 ], [ -95.203457950899946, 29.531425155988288 ], [ -95.20447995112167, 29.532301156135027 ], [ -95.205149951518734, 29.532875155876773 ], [ -95.205974951449036, 29.533565156088684 ], [ -95.208115952237577, 29.531606155863926 ], [ -95.208707951774116, 29.531063155013115 ], [ -95.208860951843945, 29.530922155623838 ], [ -95.209524951888568, 29.530313155101375 ], [ -95.210495952140718, 29.529422155024648 ], [ -95.212431952864605, 29.527645154612909 ], [ -95.213334953359535, 29.526816154015219 ], [ -95.213892952643178, 29.526304154573399 ], [ -95.214578953428912, 29.525672154237164 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1634, "Tract": "48201323701", "Area_SqMi": 0.89434526326487473, "total_2009": 3350, "total_2010": 3142, "total_2011": 3183, "total_2012": 2924, "total_2013": 3107, "total_2014": 3232, "total_2015": 3340, "total_2016": 3085, "total_2017": 3008, "total_2018": 3184, "total_2019": 3288, "total_2020": 3177, "age1": 774, "age2": 1926, "age3": 781, "earn1": 714, "earn2": 1125, "earn3": 1642, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 23, "naics_s05": 59, "naics_s06": 12, "naics_s07": 99, "naics_s08": 122, "naics_s09": 0, "naics_s10": 37, "naics_s11": 20, "naics_s12": 44, "naics_s13": 0, "naics_s14": 150, "naics_s15": 1, "naics_s16": 2384, "naics_s17": 51, "naics_s18": 454, "naics_s19": 25, "naics_s20": 0, "race1": 2549, "race2": 550, "race3": 30, "race4": 318, "race5": 3, "race6": 31, "ethnicity1": 1986, "ethnicity2": 1495, "edu1": 574, "edu2": 660, "edu3": 845, "edu4": 628, "Shape_Length": 19784.508229095794, "Shape_Area": 24932815.252608716, "total_2021": 3433, "total_2022": 3481 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.186680952612022, 29.665076183878298 ], [ -95.186655951904868, 29.664253183496921 ], [ -95.186644951936003, 29.663876183360316 ], [ -95.186615951689006, 29.662925182835821 ], [ -95.186584951653003, 29.661863183461275 ], [ -95.186565951653662, 29.66123418321283 ], [ -95.186561952022942, 29.66108118292307 ], [ -95.186533951738994, 29.660130183076937 ], [ -95.186517951894984, 29.658580182321518 ], [ -95.186517951891688, 29.658535182743218 ], [ -95.18646695210937, 29.657783182418232 ], [ -95.186238952029669, 29.657281181713916 ], [ -95.186048951247741, 29.656761182110287 ], [ -95.186048951097447, 29.656342181496363 ], [ -95.186048951593932, 29.655911181682431 ], [ -95.186048951342215, 29.655507181752625 ], [ -95.186048951712053, 29.654693181304363 ], [ -95.186048951022514, 29.654321181459498 ], [ -95.186016951756756, 29.654076181302873 ], [ -95.185918951193969, 29.653590181565637 ], [ -95.185819951119299, 29.653211181719261 ], [ -95.18569395186185, 29.652969180884444 ], [ -95.185611950843438, 29.652826181287931 ], [ -95.18542395102132, 29.652577180950509 ], [ -95.185226951351041, 29.652334181577178 ], [ -95.184992951179552, 29.65211018066185 ], [ -95.184699950870097, 29.651901180983195 ], [ -95.184358950695028, 29.651685180966222 ], [ -95.184214950715358, 29.651593180647087 ], [ -95.183830950663193, 29.651301181314146 ], [ -95.183526950538138, 29.65097318135442 ], [ -95.183411950202569, 29.650807180832242 ], [ -95.183014950890481, 29.650809180474646 ], [ -95.181705950611885, 29.650817180916903 ], [ -95.181548949869665, 29.650818180612482 ], [ -95.181169950214496, 29.650806181287557 ], [ -95.181135949987279, 29.650802180689904 ], [ -95.180751949519674, 29.650757181402 ], [ -95.180581949966083, 29.650724181101001 ], [ -95.180359949456061, 29.650679180567845 ], [ -95.179977949960758, 29.650550181179781 ], [ -95.17917094924104, 29.650262181155913 ], [ -95.178218949775996, 29.649943181134208 ], [ -95.177652949276109, 29.649754181305312 ], [ -95.17717194856678, 29.649593180565681 ], [ -95.176938948927287, 29.649563180478683 ], [ -95.176734948498876, 29.649544180444746 ], [ -95.176087949120245, 29.64947218066149 ], [ -95.175480948982297, 29.649486181045287 ], [ -95.173168947501367, 29.649507181165873 ], [ -95.172673947918256, 29.649511181194768 ], [ -95.171606947957798, 29.649521180936823 ], [ -95.171364947179129, 29.649523181229206 ], [ -95.171367947561279, 29.649739181206581 ], [ -95.17137194790854, 29.650166181392212 ], [ -95.17137794791347, 29.65070218157371 ], [ -95.171404947147167, 29.651728181885414 ], [ -95.171418948059639, 29.652238181571349 ], [ -95.17144194751458, 29.65306818130502 ], [ -95.171457947419782, 29.653651182150561 ], [ -95.171468947381712, 29.654049182070388 ], [ -95.171494948264154, 29.654994182503327 ], [ -95.171505947715161, 29.655413181811316 ], [ -95.171547948259828, 29.656040182580348 ], [ -95.171671947941491, 29.656557182542311 ], [ -95.171879948378475, 29.657229182964826 ], [ -95.171975947718778, 29.657801182652619 ], [ -95.171987948046294, 29.658669183199788 ], [ -95.172020948118643, 29.660201182800705 ], [ -95.172052948626558, 29.661718183979279 ], [ -95.172109947938623, 29.664373183616469 ], [ -95.172118948349606, 29.664782184578435 ], [ -95.172240948221599, 29.665324184415045 ], [ -95.172989948238438, 29.665319183843256 ], [ -95.173371949164448, 29.665317184383795 ], [ -95.17376294899789, 29.665315183773973 ], [ -95.174135949340723, 29.665311184391108 ], [ -95.174305948897214, 29.665311184430767 ], [ -95.174525949257301, 29.665310183902392 ], [ -95.174900949090841, 29.665308184026831 ], [ -95.175282949432869, 29.665299183791003 ], [ -95.175477949399607, 29.665296183694405 ], [ -95.176784949340046, 29.66527218432477 ], [ -95.177150949755614, 29.665266183793086 ], [ -95.177427950207658, 29.665260183822102 ], [ -95.177697949504349, 29.665255184008405 ], [ -95.178156949960311, 29.665248183743451 ], [ -95.178495949646432, 29.665240183639845 ], [ -95.178814949658829, 29.665235183906084 ], [ -95.179111950593963, 29.665230183791653 ], [ -95.179517949968769, 29.665221183966345 ], [ -95.180321950686789, 29.665205183973992 ], [ -95.180826950142134, 29.66519518376986 ], [ -95.181739950510803, 29.665175184133922 ], [ -95.181925951186926, 29.665170183811096 ], [ -95.18213895141308, 29.665166183478444 ], [ -95.18231695124858, 29.665163184179733 ], [ -95.182549950688554, 29.665157183471234 ], [ -95.182977951157682, 29.665148184022861 ], [ -95.183182951722145, 29.665145183450932 ], [ -95.183364951636861, 29.665142183973213 ], [ -95.183590951050732, 29.665136184087036 ], [ -95.183805951129528, 29.665132183958185 ], [ -95.18433295129573, 29.665123184123946 ], [ -95.184613951313366, 29.665119183573232 ], [ -95.186005952466033, 29.665100183707438 ], [ -95.18633895162921, 29.665088183274538 ], [ -95.186680952612022, 29.665076183878298 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1635, "Tract": "48201241103", "Area_SqMi": 1.0877476616717776, "total_2009": 357, "total_2010": 276, "total_2011": 245, "total_2012": 243, "total_2013": 278, "total_2014": 260, "total_2015": 234, "total_2016": 184, "total_2017": 182, "total_2018": 189, "total_2019": 192, "total_2020": 195, "age1": 59, "age2": 73, "age3": 27, "earn1": 44, "earn2": 63, "earn3": 52, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 7, "naics_s05": 2, "naics_s06": 0, "naics_s07": 49, "naics_s08": 3, "naics_s09": 0, "naics_s10": 24, "naics_s11": 15, "naics_s12": 1, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 29, "naics_s17": 0, "naics_s18": 9, "naics_s19": 20, "naics_s20": 0, "race1": 99, "race2": 42, "race3": 0, "race4": 15, "race5": 0, "race6": 3, "ethnicity1": 122, "ethnicity2": 37, "edu1": 22, "edu2": 28, "edu3": 26, "edu4": 24, "Shape_Length": 28003.982599031406, "Shape_Area": 30324543.108680114, "total_2021": 167, "total_2022": 159 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.391505021966353, 30.055229256418606 ], [ -95.39161402247737, 30.055172256545355 ], [ -95.391431021796322, 30.05505825611516 ], [ -95.391073021873723, 30.054816256475874 ], [ -95.390934021784034, 30.054705256446088 ], [ -95.390788021551018, 30.054575256803702 ], [ -95.390562021543431, 30.054361256651951 ], [ -95.390341021846453, 30.054130256793115 ], [ -95.390152022012316, 30.053888256202267 ], [ -95.390039021671313, 30.053729255943605 ], [ -95.389722021925962, 30.053212255783258 ], [ -95.389675021640727, 30.053134256205244 ], [ -95.389204021819978, 30.052335255842703 ], [ -95.388740021188084, 30.051549256251452 ], [ -95.388290021259564, 30.050795255389115 ], [ -95.388251021453812, 30.050703255510967 ], [ -95.387995021170113, 30.050259255422311 ], [ -95.387902021073032, 30.050120255479243 ], [ -95.387804020919305, 30.049936255755675 ], [ -95.387567021302104, 30.049546255680482 ], [ -95.387270020940164, 30.04905725579307 ], [ -95.387133020876163, 30.048831255260929 ], [ -95.386855020322443, 30.048340254934253 ], [ -95.386406020044063, 30.047575255217087 ], [ -95.386318020407401, 30.047426255128524 ], [ -95.385887020560247, 30.046694255349575 ], [ -95.385538020541276, 30.046102255198409 ], [ -95.385199019673408, 30.045540254736665 ], [ -95.385017019947554, 30.045257254412817 ], [ -95.384926019907653, 30.045104254366798 ], [ -95.384467020079043, 30.044336254400058 ], [ -95.384299019930381, 30.044040254189991 ], [ -95.384130019966619, 30.043754254474447 ], [ -95.383884019818396, 30.043338254352665 ], [ -95.383576019877438, 30.042838254451507 ], [ -95.383201019460529, 30.042272254315737 ], [ -95.383048019592522, 30.042032253944857 ], [ -95.382972019293021, 30.041889254018308 ], [ -95.382773018930394, 30.041483254294263 ], [ -95.382695018887588, 30.041295253587027 ], [ -95.382673018876176, 30.041244254006568 ], [ -95.382531018899371, 30.04077425351613 ], [ -95.382448019625159, 30.040465254205102 ], [ -95.382422018956063, 30.040367254129407 ], [ -95.382309019407302, 30.040385253885617 ], [ -95.382135018956859, 30.040413253616286 ], [ -95.381315018503827, 30.04044125372921 ], [ -95.380550018394686, 30.040108254209233 ], [ -95.380322018964549, 30.039816254148157 ], [ -95.380177019099207, 30.039521253633247 ], [ -95.379976018536752, 30.039404253517809 ], [ -95.379312017978549, 30.039224253725308 ], [ -95.378349018181211, 30.039407254131341 ], [ -95.378061018395556, 30.039426254200823 ], [ -95.377696018197938, 30.039375254111132 ], [ -95.377262018218303, 30.039171253431334 ], [ -95.37580601742701, 30.038244253686038 ], [ -95.374711017477495, 30.037610253375121 ], [ -95.373991016754033, 30.037345253741623 ], [ -95.370858015763602, 30.036683253606988 ], [ -95.370409015646246, 30.036619253604915 ], [ -95.370314016347137, 30.036616253335925 ], [ -95.369710015633217, 30.03660125334175 ], [ -95.369255015414808, 30.036436253135339 ], [ -95.368808015037743, 30.03603425339282 ], [ -95.367903015604895, 30.034879253340467 ], [ -95.367792015328547, 30.034687252944696 ], [ -95.367496014851142, 30.033860253453565 ], [ -95.367453014695514, 30.033741252768429 ], [ -95.367363014657784, 30.033788253446005 ], [ -95.365791014454658, 30.034645253049774 ], [ -95.365846014703891, 30.0347242530218 ], [ -95.365962014805589, 30.034888253081224 ], [ -95.366069014378752, 30.035031253707654 ], [ -95.366407014387093, 30.035503253660782 ], [ -95.366510014460133, 30.035650253389786 ], [ -95.366769014865213, 30.036021253830953 ], [ -95.366861015249142, 30.036153253578188 ], [ -95.366930014638314, 30.036266253789066 ], [ -95.366983014550684, 30.036422253846329 ], [ -95.366998015297057, 30.036519253347301 ], [ -95.366998015348557, 30.036631253519051 ], [ -95.366972015057243, 30.036773253998732 ], [ -95.366948015218, 30.036844253331623 ], [ -95.366918015181824, 30.036915253796696 ], [ -95.366853014639617, 30.037046253262677 ], [ -95.366826014682644, 30.037112254162114 ], [ -95.366805014869598, 30.037178253921695 ], [ -95.366790015039641, 30.037242253310346 ], [ -95.366782015474229, 30.037301253906399 ], [ -95.366780014740485, 30.037356253971954 ], [ -95.366788015240971, 30.03745325373168 ], [ -95.366807014856732, 30.037548253802125 ], [ -95.366841014637004, 30.037646253473611 ], [ -95.366900015154641, 30.037772253987992 ], [ -95.366934015380153, 30.037811254281259 ], [ -95.367001015188976, 30.037914253791683 ], [ -95.36715901491992, 30.038127253947131 ], [ -95.367326014810928, 30.038363254094637 ], [ -95.367606014964622, 30.038747254016268 ], [ -95.367691014826718, 30.038852254226523 ], [ -95.367865015639765, 30.039054253779703 ], [ -95.368006015733812, 30.039189253937693 ], [ -95.368162015916639, 30.039319253765136 ], [ -95.36831001556439, 30.039431254431001 ], [ -95.368452015768, 30.039525254086861 ], [ -95.368662015515156, 30.039645254319673 ], [ -95.368845015846304, 30.039735253781341 ], [ -95.369008016186783, 30.039816254434342 ], [ -95.369067016239327, 30.039852254316013 ], [ -95.369167016189607, 30.039898254262852 ], [ -95.369393015405493, 30.040020254290916 ], [ -95.369495015667894, 30.040086254250753 ], [ -95.369593016102712, 30.040144253863776 ], [ -95.369751015910765, 30.040246254298943 ], [ -95.369875015711159, 30.040332253852075 ], [ -95.370121016403985, 30.040520254671126 ], [ -95.370402015851312, 30.04075625477979 ], [ -95.370580016420192, 30.040914254598658 ], [ -95.370713016537948, 30.041050254073685 ], [ -95.370960016754353, 30.041319254647021 ], [ -95.371065015855677, 30.041453254661874 ], [ -95.371109016524116, 30.041502254594725 ], [ -95.371276016221927, 30.041723254513961 ], [ -95.371448016567129, 30.041945254796126 ], [ -95.371620016079589, 30.042145254320076 ], [ -95.371659016156954, 30.042209254448721 ], [ -95.371705016444537, 30.042253254581894 ], [ -95.371856017050661, 30.042441254649447 ], [ -95.371905016407766, 30.042491254820689 ], [ -95.37195401686165, 30.042562254508461 ], [ -95.370410016462174, 30.043421254447985 ], [ -95.372209016633974, 30.046143255800594 ], [ -95.374536017461409, 30.049665256044484 ], [ -95.375482017844945, 30.051104256034755 ], [ -95.376762018341978, 30.052661256498446 ], [ -95.380265019781731, 30.05724725727184 ], [ -95.379615019401541, 30.057634257266418 ], [ -95.381599020355338, 30.060729257813612 ], [ -95.383799020183886, 30.059507257313641 ], [ -95.38493802085722, 30.058882257819533 ], [ -95.387086020719352, 30.057685257012654 ], [ -95.38742102095695, 30.057500257145385 ], [ -95.388990021919383, 30.056634256491943 ], [ -95.389975021950491, 30.056082256760533 ], [ -95.391222022654304, 30.055382256443195 ], [ -95.391349022409514, 30.055312256524576 ], [ -95.391505021966353, 30.055229256418606 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1636, "Tract": "48201450801", "Area_SqMi": 0.35554218537799875, "total_2009": 98, "total_2010": 96, "total_2011": 61, "total_2012": 49, "total_2013": 51, "total_2014": 126, "total_2015": 121, "total_2016": 48, "total_2017": 71, "total_2018": 49, "total_2019": 35, "total_2020": 32, "age1": 19, "age2": 38, "age3": 16, "earn1": 17, "earn2": 20, "earn3": 36, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 1, "naics_s07": 0, "naics_s08": 1, "naics_s09": 0, "naics_s10": 0, "naics_s11": 28, "naics_s12": 6, "naics_s13": 0, "naics_s14": 14, "naics_s15": 0, "naics_s16": 20, "naics_s17": 0, "naics_s18": 0, "naics_s19": 3, "naics_s20": 0, "race1": 64, "race2": 5, "race3": 1, "race4": 3, "race5": 0, "race6": 0, "ethnicity1": 31, "ethnicity2": 42, "edu1": 9, "edu2": 19, "edu3": 15, "edu4": 11, "Shape_Length": 18877.477886025026, "Shape_Area": 9911907.6118067261, "total_2021": 65, "total_2022": 73 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.576357056227565, 29.76008219024806 ], [ -95.576351055753236, 29.759800189792905 ], [ -95.576341056248026, 29.75927318954809 ], [ -95.576335055813274, 29.758896190206347 ], [ -95.576329055998997, 29.758364189510992 ], [ -95.576317056389712, 29.757929189740491 ], [ -95.5763020559815, 29.757686189687554 ], [ -95.576279056448939, 29.757449189834265 ], [ -95.576240056082426, 29.757241189355415 ], [ -95.575497056217287, 29.757253189653927 ], [ -95.575433055357223, 29.757254189631571 ], [ -95.574559056064686, 29.757269189321757 ], [ -95.573997055104158, 29.757277189093276 ], [ -95.573630055245317, 29.757285189605234 ], [ -95.573332055531736, 29.757299189662735 ], [ -95.573094055371556, 29.757367189228972 ], [ -95.572906055646413, 29.757463189266748 ], [ -95.572710055345581, 29.757596189503889 ], [ -95.572605054861782, 29.757679189524382 ], [ -95.57243005459253, 29.757551189661104 ], [ -95.572263054510316, 29.757458189306799 ], [ -95.572002055150293, 29.757368189790199 ], [ -95.571814054409302, 29.757336189533294 ], [ -95.571592054320959, 29.757336189830873 ], [ -95.571406054494048, 29.757355189497098 ], [ -95.57122205453372, 29.757406189229634 ], [ -95.571076054803825, 29.757485190100887 ], [ -95.570489054160831, 29.757770189629884 ], [ -95.569949054471039, 29.756921189151129 ], [ -95.56985805465203, 29.75677218922122 ], [ -95.569807054785144, 29.756585189288945 ], [ -95.569796054558125, 29.756396189522235 ], [ -95.568251054042832, 29.756401189860412 ], [ -95.567570053702468, 29.756410189250193 ], [ -95.566983053484719, 29.756419189871373 ], [ -95.566997053797891, 29.757260189679535 ], [ -95.566998053868218, 29.758090189943118 ], [ -95.56699905353409, 29.758785190409526 ], [ -95.566984053385198, 29.758855189778831 ], [ -95.566942053730799, 29.758905190353673 ], [ -95.56687405332427, 29.758938190029383 ], [ -95.566784053933631, 29.758942189858672 ], [ -95.566435053493251, 29.758940190483408 ], [ -95.56612005297869, 29.758926190121127 ], [ -95.565770053403284, 29.758885190031329 ], [ -95.56514605310312, 29.758789190431909 ], [ -95.56493905310262, 29.758750190147182 ], [ -95.564635052848388, 29.758709190144071 ], [ -95.564335052920512, 29.758690190513754 ], [ -95.563787053116499, 29.758687190510688 ], [ -95.563317052634119, 29.758703190549458 ], [ -95.56331105305668, 29.757855190395151 ], [ -95.56273105256632, 29.757851190104141 ], [ -95.562507052853604, 29.757850189874816 ], [ -95.562490052172365, 29.757995189643896 ], [ -95.562422052411733, 29.758163190495296 ], [ -95.562301052171449, 29.758287189917471 ], [ -95.562200052212859, 29.758359190510969 ], [ -95.562069052885676, 29.758409189869909 ], [ -95.561892051969068, 29.758466190167255 ], [ -95.561674052179015, 29.758511190319108 ], [ -95.561468052534622, 29.758540190383393 ], [ -95.561012052557473, 29.758553190164509 ], [ -95.5607230522549, 29.758527190486515 ], [ -95.560488052036462, 29.758491190615246 ], [ -95.560276051486227, 29.758430190482027 ], [ -95.55954305163462, 29.758133190259382 ], [ -95.559237051312365, 29.758062190160334 ], [ -95.558922051648864, 29.758017190272646 ], [ -95.558497051665654, 29.75800219017794 ], [ -95.558095051407122, 29.758008190534664 ], [ -95.558102051180043, 29.760872191127998 ], [ -95.558141051056907, 29.761406190452021 ], [ -95.558140051636229, 29.761424191050928 ], [ -95.558240051319359, 29.761896190769107 ], [ -95.558313051668648, 29.762148191325885 ], [ -95.558343051640648, 29.76222019135141 ], [ -95.558377051392, 29.76220519107185 ], [ -95.558500051227853, 29.76215219072591 ], [ -95.55870605167415, 29.761992191218038 ], [ -95.558764051356519, 29.761947191145911 ], [ -95.558887051552787, 29.761723190530557 ], [ -95.559014052196318, 29.761018190430047 ], [ -95.559081051890345, 29.760888190334263 ], [ -95.559341051759318, 29.760722190336363 ], [ -95.559581051405075, 29.760678191057526 ], [ -95.559704052284403, 29.760686190681501 ], [ -95.559878052008827, 29.760778190481478 ], [ -95.560188052373846, 29.761240190892977 ], [ -95.56042205223666, 29.761438190545547 ], [ -95.56066805223594, 29.761565190645587 ], [ -95.561818052259213, 29.761831190657936 ], [ -95.562717052778552, 29.761967190812491 ], [ -95.564563053495846, 29.762012191133643 ], [ -95.566063053311751, 29.761979190698217 ], [ -95.566953054091911, 29.761961191054887 ], [ -95.567833054243081, 29.761942191023302 ], [ -95.567994054531439, 29.761939191117637 ], [ -95.568517054382127, 29.761929190855913 ], [ -95.568695054134537, 29.761937190589357 ], [ -95.568928054426834, 29.76194819058594 ], [ -95.568969054337785, 29.761950190825253 ], [ -95.569596054257786, 29.762052190688053 ], [ -95.569730054110892, 29.762074190554486 ], [ -95.570103054803411, 29.762211190892092 ], [ -95.570598054291921, 29.762481190290398 ], [ -95.570835055062219, 29.762610190323478 ], [ -95.571106054843099, 29.762780190333817 ], [ -95.571659054679571, 29.763127190947198 ], [ -95.572187054877972, 29.763459190807275 ], [ -95.574377055481307, 29.764835191198678 ], [ -95.5750950562188, 29.76528619079232 ], [ -95.576019056646331, 29.765866191497846 ], [ -95.576019056271534, 29.765768190739244 ], [ -95.575973056045342, 29.765193190953148 ], [ -95.575913056011672, 29.764833190616837 ], [ -95.575687055694161, 29.764059190732901 ], [ -95.575601055815426, 29.763629191122448 ], [ -95.575591055968957, 29.763166190508432 ], [ -95.575604056578641, 29.762906190580033 ], [ -95.575660056313836, 29.762594190235657 ], [ -95.575767055941284, 29.762236190480767 ], [ -95.575922056015415, 29.761892190108497 ], [ -95.576099056057743, 29.761550190450695 ], [ -95.576153055672791, 29.761430190615101 ], [ -95.57623605585735, 29.76115819067644 ], [ -95.57631205603883, 29.760728189920318 ], [ -95.576347055969975, 29.760378190365635 ], [ -95.576357056227565, 29.76008219024806 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1637, "Tract": "48201454302", "Area_SqMi": 1.0624214129738265, "total_2009": 137, "total_2010": 136, "total_2011": 131, "total_2012": 183, "total_2013": 185, "total_2014": 254, "total_2015": 279, "total_2016": 247, "total_2017": 245, "total_2018": 347, "total_2019": 294, "total_2020": 297, "age1": 71, "age2": 191, "age3": 89, "earn1": 128, "earn2": 98, "earn3": 125, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 93, "naics_s05": 21, "naics_s06": 7, "naics_s07": 8, "naics_s08": 22, "naics_s09": 3, "naics_s10": 0, "naics_s11": 0, "naics_s12": 13, "naics_s13": 0, "naics_s14": 39, "naics_s15": 0, "naics_s16": 121, "naics_s17": 5, "naics_s18": 17, "naics_s19": 2, "naics_s20": 0, "race1": 233, "race2": 58, "race3": 3, "race4": 49, "race5": 2, "race6": 6, "ethnicity1": 216, "ethnicity2": 135, "edu1": 88, "edu2": 61, "edu3": 81, "edu4": 50, "Shape_Length": 25364.285128699099, "Shape_Area": 29618490.641289096, "total_2021": 298, "total_2022": 351 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.687089082630138, 29.710083176205217 ], [ -95.686927081786592, 29.709999176399393 ], [ -95.686851082037947, 29.709960175825543 ], [ -95.685942081849717, 29.709454175763643 ], [ -95.684603081603086, 29.708709176013091 ], [ -95.684519081248212, 29.708662175678114 ], [ -95.684463081588902, 29.708631175768854 ], [ -95.684399081378558, 29.708595175906002 ], [ -95.684381081587802, 29.708585176210395 ], [ -95.684349081520509, 29.70856717581206 ], [ -95.683572080969697, 29.708136175785274 ], [ -95.683505080719755, 29.708098175926384 ], [ -95.683402080903534, 29.708041175555039 ], [ -95.682510080912195, 29.708125176201698 ], [ -95.677076079188836, 29.708493176468348 ], [ -95.674159078454707, 29.708753176458586 ], [ -95.670840078033621, 29.70900617674868 ], [ -95.670644077780238, 29.709024176779764 ], [ -95.670410077895255, 29.709036176336404 ], [ -95.666107076957331, 29.709194176657686 ], [ -95.660498075746546, 29.709657176708578 ], [ -95.660515075397072, 29.711442177114254 ], [ -95.660521075839199, 29.712589177727057 ], [ -95.660526075429516, 29.713438177620262 ], [ -95.660513075840328, 29.713966177976587 ], [ -95.660467075590333, 29.7146431780426 ], [ -95.660443075574548, 29.714999177740005 ], [ -95.660438075848276, 29.715156177767998 ], [ -95.660429075750173, 29.715463177702539 ], [ -95.660428075181059, 29.715895178331039 ], [ -95.660427075763209, 29.716009178406271 ], [ -95.660428076132888, 29.716137178184965 ], [ -95.660431075872651, 29.716768178614217 ], [ -95.660431075282247, 29.716879178016487 ], [ -95.660433075354476, 29.717167178639041 ], [ -95.660435075836972, 29.717518178736427 ], [ -95.660438075960059, 29.717978178553576 ], [ -95.660449075231625, 29.718319179070129 ], [ -95.660542075911351, 29.719457178651375 ], [ -95.660556076089819, 29.719676178577107 ], [ -95.660577075453531, 29.720006179002006 ], [ -95.660591075838738, 29.720601178932991 ], [ -95.660595075855682, 29.721084179195454 ], [ -95.66060307609014, 29.722569179731373 ], [ -95.660607076254834, 29.722724179788738 ], [ -95.660607075526315, 29.722879179384414 ], [ -95.660616076107488, 29.724367180033262 ], [ -95.660622076331066, 29.724976179639221 ], [ -95.660626076088491, 29.725365179886424 ], [ -95.660638076325384, 29.726635180610035 ], [ -95.66061207628556, 29.726770179995778 ], [ -95.660647076654371, 29.726941180565341 ], [ -95.662347076863796, 29.725858179824424 ], [ -95.663841077351037, 29.724906179834299 ], [ -95.666377077537433, 29.723294179154696 ], [ -95.667526077499346, 29.722564178984666 ], [ -95.670538078367798, 29.720651178617437 ], [ -95.670610078943213, 29.720605178820524 ], [ -95.671239078568021, 29.720205179049934 ], [ -95.671719078314737, 29.719894178267499 ], [ -95.672044078646223, 29.719684178966673 ], [ -95.672118078843354, 29.719636178241579 ], [ -95.673976079193153, 29.718434178568717 ], [ -95.677082080334955, 29.716461177731798 ], [ -95.677241079701957, 29.716360177874282 ], [ -95.679216080496033, 29.715111176988444 ], [ -95.679403080639545, 29.714993177758771 ], [ -95.681567081018017, 29.713604176851089 ], [ -95.683980081036879, 29.712082176439715 ], [ -95.684114081506905, 29.711995176456497 ], [ -95.686700082500309, 29.710334175748482 ], [ -95.687089082630138, 29.710083176205217 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1638, "Tract": "48201451902", "Area_SqMi": 0.79429111050553425, "total_2009": 1524, "total_2010": 1564, "total_2011": 1582, "total_2012": 1656, "total_2013": 1677, "total_2014": 1710, "total_2015": 1869, "total_2016": 1844, "total_2017": 1726, "total_2018": 1850, "total_2019": 1912, "total_2020": 1870, "age1": 369, "age2": 1026, "age3": 421, "earn1": 274, "earn2": 461, "earn3": 1081, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 65, "naics_s07": 30, "naics_s08": 1, "naics_s09": 10, "naics_s10": 10, "naics_s11": 2, "naics_s12": 26, "naics_s13": 0, "naics_s14": 65, "naics_s15": 7, "naics_s16": 1390, "naics_s17": 0, "naics_s18": 58, "naics_s19": 149, "naics_s20": 0, "race1": 887, "race2": 450, "race3": 8, "race4": 432, "race5": 4, "race6": 35, "ethnicity1": 1379, "ethnicity2": 437, "edu1": 251, "edu2": 287, "edu3": 444, "edu4": 465, "Shape_Length": 19449.103393759662, "Shape_Area": 22143476.718072191, "total_2021": 1794, "total_2022": 1816 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.605741062511569, 29.729784183283311 ], [ -95.605733062244624, 29.729189182313576 ], [ -95.60572306225778, 29.728635182621989 ], [ -95.60571006176977, 29.728182182182795 ], [ -95.605709062058125, 29.727868182342878 ], [ -95.605694061804954, 29.72757318259886 ], [ -95.605663061788803, 29.727299182139109 ], [ -95.605611061726535, 29.727029182474183 ], [ -95.605552062120637, 29.726751182384035 ], [ -95.605489061766974, 29.726497181721157 ], [ -95.605405062006, 29.726239181886474 ], [ -95.605179062411281, 29.725673181783314 ], [ -95.605058062073169, 29.725283181593078 ], [ -95.604985062322413, 29.724996181835351 ], [ -95.604961061670934, 29.724864181743452 ], [ -95.604922061947619, 29.724639181755521 ], [ -95.604886062274574, 29.724292181906915 ], [ -95.604868062260834, 29.723837181993211 ], [ -95.604839061494317, 29.722613181274323 ], [ -95.604827062170784, 29.721865181625539 ], [ -95.604823061321156, 29.721463180731156 ], [ -95.60482206218127, 29.721400181298733 ], [ -95.604782061519174, 29.719935180657387 ], [ -95.604781061752888, 29.71984118062792 ], [ -95.604781061136251, 29.719798180600442 ], [ -95.604753062007447, 29.718704180584101 ], [ -95.60473206153867, 29.717821180478303 ], [ -95.604727061322109, 29.717575180243273 ], [ -95.604726061705605, 29.717521180780064 ], [ -95.604725061986201, 29.717433180421377 ], [ -95.604711061233033, 29.716725180132887 ], [ -95.604679061725193, 29.715459179503082 ], [ -95.604671061316111, 29.714749179977936 ], [ -95.60467606091153, 29.714327179563405 ], [ -95.604430061177567, 29.71434517962301 ], [ -95.596427059757218, 29.715037180413265 ], [ -95.592229057681266, 29.715398180470263 ], [ -95.592232058649799, 29.715607180420804 ], [ -95.59224405848407, 29.716443180902619 ], [ -95.592268058529186, 29.717297180666186 ], [ -95.592275058298412, 29.718036181092994 ], [ -95.592308058674163, 29.719289181062855 ], [ -95.592314058829373, 29.719508181450248 ], [ -95.592329058568282, 29.72052018160425 ], [ -95.592351058163459, 29.721726181894567 ], [ -95.592365058135982, 29.722567181826435 ], [ -95.592364058530663, 29.72265218178751 ], [ -95.592360058997755, 29.72310618210031 ], [ -95.592398058804307, 29.724501181851021 ], [ -95.592446058798132, 29.726899183032987 ], [ -95.59247305854575, 29.728180182718102 ], [ -95.592480058903789, 29.729042183113105 ], [ -95.592489058576589, 29.729862183691907 ], [ -95.592505059036, 29.73073018308213 ], [ -95.593196059236391, 29.730717183458857 ], [ -95.59372905970622, 29.730652183072642 ], [ -95.594015058858162, 29.730592183493133 ], [ -95.594520059754956, 29.730470183301925 ], [ -95.59496205958132, 29.730337183575909 ], [ -95.596152059612521, 29.729962183345719 ], [ -95.596614059934439, 29.729862183544164 ], [ -95.597052060556351, 29.729809183080079 ], [ -95.597540060037886, 29.729786183375779 ], [ -95.598044059861849, 29.729798182996877 ], [ -95.598673060862964, 29.729847183078931 ], [ -95.599125060400198, 29.729858183231443 ], [ -95.599800061251116, 29.72984018349911 ], [ -95.6027820613361, 29.729812182528914 ], [ -95.605741062511569, 29.729784183283311 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1639, "Tract": "48201453403", "Area_SqMi": 0.26398699818651017, "total_2009": 274, "total_2010": 262, "total_2011": 485, "total_2012": 223, "total_2013": 234, "total_2014": 211, "total_2015": 231, "total_2016": 216, "total_2017": 203, "total_2018": 191, "total_2019": 224, "total_2020": 204, "age1": 52, "age2": 71, "age3": 37, "earn1": 24, "earn2": 67, "earn3": 69, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 3, "naics_s05": 0, "naics_s06": 0, "naics_s07": 51, "naics_s08": 0, "naics_s09": 0, "naics_s10": 0, "naics_s11": 8, "naics_s12": 58, "naics_s13": 0, "naics_s14": 0, "naics_s15": 0, "naics_s16": 11, "naics_s17": 0, "naics_s18": 9, "naics_s19": 20, "naics_s20": 0, "race1": 88, "race2": 34, "race3": 4, "race4": 31, "race5": 0, "race6": 3, "ethnicity1": 116, "ethnicity2": 44, "edu1": 24, "edu2": 24, "edu3": 25, "edu4": 35, "Shape_Length": 11866.590260349674, "Shape_Area": 7359505.6911769696, "total_2021": 193, "total_2022": 160 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.58869105475371, 29.668599170457711 ], [ -95.588709054986694, 29.667958170496188 ], [ -95.588658055277151, 29.667458170741376 ], [ -95.588585054888554, 29.667198170533144 ], [ -95.588461055217962, 29.666718170450416 ], [ -95.588368054930413, 29.666384170285944 ], [ -95.588199055205266, 29.666040170800095 ], [ -95.588115055093809, 29.665898170694785 ], [ -95.588046054674336, 29.665781170475931 ], [ -95.587975055232491, 29.665677170515252 ], [ -95.587421054984603, 29.664871169973548 ], [ -95.587272054676163, 29.664633170267095 ], [ -95.587066054824462, 29.664352169646094 ], [ -95.586842054202336, 29.664030170384674 ], [ -95.586071054225101, 29.662942170192654 ], [ -95.585696054060833, 29.662422169971663 ], [ -95.585471053694874, 29.662158169652301 ], [ -95.58538105403683, 29.662066169674198 ], [ -95.583466053946069, 29.666389170603338 ], [ -95.583443054029388, 29.666441170497162 ], [ -95.583439053438482, 29.66645117073886 ], [ -95.581716053389172, 29.670342171228782 ], [ -95.581724053402269, 29.67047017109898 ], [ -95.581604053964114, 29.671086172040443 ], [ -95.581281053514815, 29.673058171696905 ], [ -95.581256053524868, 29.674325172236021 ], [ -95.581529053270287, 29.674887172384068 ], [ -95.581939053611265, 29.674912172716688 ], [ -95.583099053574415, 29.674988172424207 ], [ -95.583459054173787, 29.675017172452687 ], [ -95.584450054899165, 29.675077172087406 ], [ -95.58519305500738, 29.67512317222387 ], [ -95.587286055297554, 29.675222172437593 ], [ -95.587275054855567, 29.674483172452998 ], [ -95.587266055115975, 29.673639171738483 ], [ -95.587291054615264, 29.673454171778474 ], [ -95.587419055375733, 29.672782171780383 ], [ -95.587667054952121, 29.671947171984371 ], [ -95.587692054651569, 29.671887171809331 ], [ -95.587853055479769, 29.671510171892475 ], [ -95.587889055452308, 29.671417171803029 ], [ -95.588110054918729, 29.670903171152901 ], [ -95.58835105510633, 29.67028517155099 ], [ -95.588440055580094, 29.669995170953833 ], [ -95.588574054928927, 29.669528171501064 ], [ -95.588695055754229, 29.668932170590171 ], [ -95.58869105475371, 29.668599170457711 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1640, "Tract": "48201453601", "Area_SqMi": 0.46344298527962985, "total_2009": 127, "total_2010": 114, "total_2011": 132, "total_2012": 151, "total_2013": 141, "total_2014": 124, "total_2015": 145, "total_2016": 156, "total_2017": 120, "total_2018": 178, "total_2019": 160, "total_2020": 136, "age1": 26, "age2": 68, "age3": 30, "earn1": 44, "earn2": 46, "earn3": 34, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 0, "naics_s05": 0, "naics_s06": 2, "naics_s07": 35, "naics_s08": 0, "naics_s09": 5, "naics_s10": 7, "naics_s11": 2, "naics_s12": 2, "naics_s13": 0, "naics_s14": 1, "naics_s15": 0, "naics_s16": 18, "naics_s17": 0, "naics_s18": 33, "naics_s19": 19, "naics_s20": 0, "race1": 58, "race2": 43, "race3": 3, "race4": 18, "race5": 0, "race6": 2, "ethnicity1": 80, "ethnicity2": 44, "edu1": 30, "edu2": 30, "edu3": 25, "edu4": 13, "Shape_Length": 15056.19333891054, "Shape_Area": 12919997.23899951, "total_2021": 138, "total_2022": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.59591205765436, 29.689093175027317 ], [ -95.595884057561207, 29.687982175041995 ], [ -95.595868058013693, 29.687241174331586 ], [ -95.595870057701589, 29.686541174582381 ], [ -95.595867057456161, 29.686273174570335 ], [ -95.595847057539316, 29.685829174095407 ], [ -95.595842058250497, 29.685545173698941 ], [ -95.595836057928153, 29.685243173715044 ], [ -95.595826057995922, 29.684700173888299 ], [ -95.595827058116029, 29.684441173598351 ], [ -95.59581405730016, 29.683879173669812 ], [ -95.595766058001047, 29.681864173186298 ], [ -95.595759057204347, 29.681019172982182 ], [ -95.595742057733375, 29.680609172712874 ], [ -95.595731057902853, 29.679698172885729 ], [ -95.595714057679018, 29.678450172679085 ], [ -95.595703057857548, 29.677630172290275 ], [ -95.595693057654358, 29.677229172854123 ], [ -95.595676057425592, 29.676519172609407 ], [ -95.595665057342615, 29.676066172133684 ], [ -95.595331056793697, 29.675969172179258 ], [ -95.594675057055326, 29.675801172071395 ], [ -95.594375056786774, 29.675744171795664 ], [ -95.594153057228269, 29.675712172258315 ], [ -95.593986056965448, 29.675704172594894 ], [ -95.593908056850836, 29.675700171795231 ], [ -95.593450057095836, 29.675674172036302 ], [ -95.593284056877337, 29.675661171969846 ], [ -95.593162056641248, 29.675651172408134 ], [ -95.592825056828943, 29.67562117182019 ], [ -95.592617056881821, 29.67560517226082 ], [ -95.591161055697469, 29.675480171870152 ], [ -95.59020105629557, 29.675415172494017 ], [ -95.588701055618756, 29.675316172307657 ], [ -95.587286055297554, 29.675222172437593 ], [ -95.587340055222199, 29.676985172653012 ], [ -95.587382055622825, 29.679284173422761 ], [ -95.587428055227235, 29.681684173954963 ], [ -95.587451055422804, 29.68290617401772 ], [ -95.587464055887395, 29.683619174185278 ], [ -95.587486055915605, 29.684562174561432 ], [ -95.587496055564642, 29.684987173883105 ], [ -95.587512055650137, 29.685765174756146 ], [ -95.587518055879826, 29.686545174494434 ], [ -95.587534055344193, 29.68732317502613 ], [ -95.587584055603031, 29.688059174917377 ], [ -95.587594055329305, 29.688931174994291 ], [ -95.589035056290825, 29.688915174984068 ], [ -95.591504056506523, 29.688871174762028 ], [ -95.592415056867807, 29.688871175046177 ], [ -95.592886057432466, 29.688911175210794 ], [ -95.593994057981533, 29.689054175117469 ], [ -95.594241057587098, 29.689070175332208 ], [ -95.594734058101395, 29.689103175283968 ], [ -95.59591205765436, 29.689093175027317 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1641, "Tract": "48201453501", "Area_SqMi": 0.59185215560379545, "total_2009": 411, "total_2010": 489, "total_2011": 438, "total_2012": 450, "total_2013": 369, "total_2014": 348, "total_2015": 382, "total_2016": 385, "total_2017": 336, "total_2018": 258, "total_2019": 403, "total_2020": 349, "age1": 65, "age2": 130, "age3": 75, "earn1": 68, "earn2": 112, "earn3": 90, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 15, "naics_s05": 0, "naics_s06": 3, "naics_s07": 88, "naics_s08": 5, "naics_s09": 0, "naics_s10": 20, "naics_s11": 33, "naics_s12": 8, "naics_s13": 0, "naics_s14": 8, "naics_s15": 14, "naics_s16": 47, "naics_s17": 0, "naics_s18": 11, "naics_s19": 18, "naics_s20": 0, "race1": 141, "race2": 53, "race3": 3, "race4": 61, "race5": 4, "race6": 8, "ethnicity1": 180, "ethnicity2": 90, "edu1": 54, "edu2": 51, "edu3": 54, "edu4": 46, "Shape_Length": 20367.020726269126, "Shape_Area": 16499825.133145779, "total_2021": 255, "total_2022": 270 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.597040056840868, 29.660678169046655 ], [ -95.597064057027836, 29.660606169168567 ], [ -95.596261056974512, 29.660236168825133 ], [ -95.595200056202671, 29.659764169269955 ], [ -95.594161056637915, 29.659261169038253 ], [ -95.59379305562706, 29.659098168446871 ], [ -95.593170055772987, 29.6588191691879 ], [ -95.592703056145226, 29.658600169096101 ], [ -95.592283055732779, 29.658410168665448 ], [ -95.591892055895997, 29.658233168475618 ], [ -95.591506055370331, 29.658052168432572 ], [ -95.590783055719086, 29.657712169061835 ], [ -95.590702055196161, 29.657674168408629 ], [ -95.590010055028074, 29.657350168208893 ], [ -95.58904205478423, 29.656899168138612 ], [ -95.58875105466025, 29.656763168922801 ], [ -95.588258055060294, 29.656542168693989 ], [ -95.58813705443788, 29.65648716838658 ], [ -95.587702054454439, 29.656289168695373 ], [ -95.586978054498289, 29.655945168020132 ], [ -95.5869250537704, 29.655921168485051 ], [ -95.586247053612453, 29.655601167971138 ], [ -95.585994054265655, 29.655481168744824 ], [ -95.585510054070681, 29.655252168090492 ], [ -95.584851054064302, 29.65494816851869 ], [ -95.584794054023448, 29.654921168593226 ], [ -95.5837130532598, 29.654438167729488 ], [ -95.583319053254002, 29.65423016845665 ], [ -95.583133052813466, 29.654132167833527 ], [ -95.582916053404631, 29.654052167716198 ], [ -95.582709053378665, 29.653957167860305 ], [ -95.582858053417141, 29.654733168549566 ], [ -95.582930052994868, 29.655122168687988 ], [ -95.583009053647899, 29.65554016880818 ], [ -95.583066053590045, 29.655832168897671 ], [ -95.583134053664011, 29.65621216844584 ], [ -95.58320905322806, 29.65658016903453 ], [ -95.583451053624415, 29.65797816932929 ], [ -95.583658053788128, 29.659072169367235 ], [ -95.583725053894909, 29.659384169304946 ], [ -95.583741053684477, 29.659431169240719 ], [ -95.583989053346926, 29.660139169438672 ], [ -95.584350053751493, 29.660831169033724 ], [ -95.584821054056349, 29.6614671694423 ], [ -95.585059053975371, 29.661733169775129 ], [ -95.585233053875271, 29.661917169652476 ], [ -95.58538105403683, 29.662066169674198 ], [ -95.585471053694874, 29.662158169652301 ], [ -95.585696054060833, 29.662422169971663 ], [ -95.586071054225101, 29.662942170192654 ], [ -95.586842054202336, 29.664030170384674 ], [ -95.587066054824462, 29.664352169646094 ], [ -95.587272054676163, 29.664633170267095 ], [ -95.587421054984603, 29.664871169973548 ], [ -95.587975055232491, 29.665677170515252 ], [ -95.588046054674336, 29.665781170475931 ], [ -95.588115055093809, 29.665898170694785 ], [ -95.588199055205266, 29.666040170800095 ], [ -95.588368054930413, 29.666384170285944 ], [ -95.588461055217962, 29.666718170450416 ], [ -95.588585054888554, 29.667198170533144 ], [ -95.588658055277151, 29.667458170741376 ], [ -95.588709054986694, 29.667958170496188 ], [ -95.58869105475371, 29.668599170457711 ], [ -95.588695055754229, 29.668932170590171 ], [ -95.588574054928927, 29.669528171501064 ], [ -95.588440055580094, 29.669995170953833 ], [ -95.58835105510633, 29.67028517155099 ], [ -95.588110054918729, 29.670903171152901 ], [ -95.587889055452308, 29.671417171803029 ], [ -95.587853055479769, 29.671510171892475 ], [ -95.587692054651569, 29.671887171809331 ], [ -95.587667054952121, 29.671947171984371 ], [ -95.587419055375733, 29.672782171780383 ], [ -95.587291054615264, 29.673454171778474 ], [ -95.587266055115975, 29.673639171738483 ], [ -95.587275054855567, 29.674483172452998 ], [ -95.587286055297554, 29.675222172437593 ], [ -95.588701055618756, 29.675316172307657 ], [ -95.59020105629557, 29.675415172494017 ], [ -95.591161055697469, 29.675480171870152 ], [ -95.591829056354186, 29.673789172094128 ], [ -95.592332056804267, 29.672512171300383 ], [ -95.592699056270931, 29.671587171755945 ], [ -95.592979055968271, 29.670896171667859 ], [ -95.593252056652076, 29.670219171480884 ], [ -95.593508056941474, 29.669530170858796 ], [ -95.593772056397043, 29.668860170642802 ], [ -95.593836056247611, 29.668728170859858 ], [ -95.594037056223542, 29.668189170839213 ], [ -95.594200056420931, 29.667823170754023 ], [ -95.594319056997961, 29.667498170893847 ], [ -95.59458805688071, 29.66681917054461 ], [ -95.59497605672837, 29.665861170220456 ], [ -95.595006056715675, 29.665787170550871 ], [ -95.59513305662044, 29.665437169956416 ], [ -95.595566056570348, 29.664380170203106 ], [ -95.595839056485147, 29.663680169807897 ], [ -95.596638056904538, 29.661718169097554 ], [ -95.596986057314624, 29.660841169351432 ], [ -95.597005057160445, 29.66078316864969 ], [ -95.597040056840868, 29.660678169046655 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1642, "Tract": "48201453502", "Area_SqMi": 0.50494667471903487, "total_2009": 619, "total_2010": 564, "total_2011": 617, "total_2012": 651, "total_2013": 674, "total_2014": 702, "total_2015": 736, "total_2016": 768, "total_2017": 724, "total_2018": 549, "total_2019": 467, "total_2020": 449, "age1": 97, "age2": 202, "age3": 129, "earn1": 147, "earn2": 200, "earn3": 81, "naics_s01": 0, "naics_s02": 0, "naics_s03": 0, "naics_s04": 9, "naics_s05": 0, "naics_s06": 0, "naics_s07": 287, "naics_s08": 2, "naics_s09": 0, "naics_s10": 10, "naics_s11": 0, "naics_s12": 10, "naics_s13": 0, "naics_s14": 6, "naics_s15": 0, "naics_s16": 40, "naics_s17": 0, "naics_s18": 47, "naics_s19": 17, "naics_s20": 0, "race1": 317, "race2": 69, "race3": 5, "race4": 31, "race5": 0, "race6": 6, "ethnicity1": 219, "ethnicity2": 209, "edu1": 116, "edu2": 82, "edu3": 75, "edu4": 58, "Shape_Length": 16818.421370583408, "Shape_Area": 14077049.066295721, "total_2021": 486, "total_2022": 428 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.604468059568148, 29.672820171350761 ], [ -95.604494059303718, 29.672508171244079 ], [ -95.604463059678338, 29.67185517106974 ], [ -95.604401059132712, 29.671475171305818 ], [ -95.604310059416434, 29.671057170715496 ], [ -95.60418505885518, 29.670683171189783 ], [ -95.604054058955597, 29.670311170287853 ], [ -95.603681058617155, 29.669599170236904 ], [ -95.603196059269393, 29.669004170905801 ], [ -95.603166058908869, 29.668967170755373 ], [ -95.602598058839988, 29.668416170499317 ], [ -95.602237059056591, 29.668135170514081 ], [ -95.601911058451236, 29.667884170534762 ], [ -95.601529057991371, 29.667576170198345 ], [ -95.601230058533048, 29.667338170324143 ], [ -95.600561058099615, 29.666801169788226 ], [ -95.599886058226943, 29.666266169682597 ], [ -95.599440057434151, 29.66588716989046 ], [ -95.599317058040569, 29.665759170316957 ], [ -95.599192057720572, 29.665628169974042 ], [ -95.598875057816912, 29.66521917031589 ], [ -95.598415057777416, 29.664487170048751 ], [ -95.598248057251382, 29.664136169724479 ], [ -95.598066057681748, 29.663648169398012 ], [ -95.597919056877942, 29.663019169062188 ], [ -95.597857056820587, 29.662353169557466 ], [ -95.597851057520472, 29.661674168980429 ], [ -95.597846057505024, 29.661042168735161 ], [ -95.597845057613569, 29.660964168995307 ], [ -95.597311056850089, 29.660719169329582 ], [ -95.597064057027836, 29.660606169168567 ], [ -95.597040056840868, 29.660678169046655 ], [ -95.597005057160445, 29.66078316864969 ], [ -95.596986057314624, 29.660841169351432 ], [ -95.596638056904538, 29.661718169097554 ], [ -95.595839056485147, 29.663680169807897 ], [ -95.595566056570348, 29.664380170203106 ], [ -95.59513305662044, 29.665437169956416 ], [ -95.595006056715675, 29.665787170550871 ], [ -95.59497605672837, 29.665861170220456 ], [ -95.59458805688071, 29.66681917054461 ], [ -95.594319056997961, 29.667498170893847 ], [ -95.594200056420931, 29.667823170754023 ], [ -95.594037056223542, 29.668189170839213 ], [ -95.593836056247611, 29.668728170859858 ], [ -95.593772056397043, 29.668860170642802 ], [ -95.593508056941474, 29.669530170858796 ], [ -95.593252056652076, 29.670219171480884 ], [ -95.592979055968271, 29.670896171667859 ], [ -95.592699056270931, 29.671587171755945 ], [ -95.592332056804267, 29.672512171300383 ], [ -95.591829056354186, 29.673789172094128 ], [ -95.591161055697469, 29.675480171870152 ], [ -95.592617056881821, 29.67560517226082 ], [ -95.592825056828943, 29.67562117182019 ], [ -95.593162056641248, 29.675651172408134 ], [ -95.593284056877337, 29.675661171969846 ], [ -95.593450057095836, 29.675674172036302 ], [ -95.593908056850836, 29.675700171795231 ], [ -95.593986056965448, 29.675704172594894 ], [ -95.594153057228269, 29.675712172258315 ], [ -95.594375056786774, 29.675744171795664 ], [ -95.594675057055326, 29.675801172071395 ], [ -95.595331056793697, 29.675969172179258 ], [ -95.595665057342615, 29.676066172133684 ], [ -95.595912056910137, 29.676136172016744 ], [ -95.596162057724982, 29.676205171795687 ], [ -95.596789057505504, 29.676380171943588 ], [ -95.597064057338301, 29.676456172618416 ], [ -95.59752105737762, 29.676582172506347 ], [ -95.598074057668697, 29.676736172672676 ], [ -95.598815058354717, 29.676942172235126 ], [ -95.599651058563836, 29.677188172303808 ], [ -95.60029105876005, 29.677358172074989 ], [ -95.602243059271927, 29.677933172607219 ], [ -95.602645058952078, 29.678051172353769 ], [ -95.602827059658864, 29.677439172371407 ], [ -95.603027058898405, 29.676844172206781 ], [ -95.603256059328288, 29.676294171683931 ], [ -95.603741058857807, 29.675125171942653 ], [ -95.603897059856465, 29.674727171358352 ], [ -95.604017059247852, 29.674443171606143 ], [ -95.604138059604679, 29.674125171479471 ], [ -95.604214059509829, 29.67392717134226 ], [ -95.604291059268419, 29.673680171811455 ], [ -95.604388059095569, 29.673313171647894 ], [ -95.604468059568148, 29.672820171350761 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1643, "Tract": "48201553401", "Area_SqMi": 1.4755883907940612, "total_2009": 440, "total_2010": 822, "total_2011": 506, "total_2012": 894, "total_2013": 942, "total_2014": 852, "total_2015": 923, "total_2016": 881, "total_2017": 932, "total_2018": 867, "total_2019": 977, "total_2020": 1032, "age1": 359, "age2": 529, "age3": 173, "earn1": 235, "earn2": 351, "earn3": 475, "naics_s01": 0, "naics_s02": 1, "naics_s03": 0, "naics_s04": 132, "naics_s05": 3, "naics_s06": 80, "naics_s07": 406, "naics_s08": 4, "naics_s09": 54, "naics_s10": 8, "naics_s11": 16, "naics_s12": 108, "naics_s13": 4, "naics_s14": 55, "naics_s15": 0, "naics_s16": 47, "naics_s17": 14, "naics_s18": 105, "naics_s19": 24, "naics_s20": 0, "race1": 803, "race2": 180, "race3": 9, "race4": 47, "race5": 1, "race6": 21, "ethnicity1": 713, "ethnicity2": 348, "edu1": 145, "edu2": 186, "edu3": 191, "edu4": 180, "Shape_Length": 34817.344595848459, "Shape_Area": 41136878.840567417, "total_2021": 1138, "total_2022": 1061 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.466626040519884, 30.038046250599322 ], [ -95.466503040693411, 30.037896250575084 ], [ -95.466098040162038, 30.037436250231071 ], [ -95.466044040954387, 30.037363250541503 ], [ -95.465979040621733, 30.037217250121358 ], [ -95.465972039944305, 30.037200250352857 ], [ -95.465897040635838, 30.037140250273772 ], [ -95.465848040171636, 30.03706825022466 ], [ -95.465668040767667, 30.036750249820859 ], [ -95.46552904025306, 30.036484250151354 ], [ -95.465130039700554, 30.035726250431331 ], [ -95.464968039857069, 30.035417249742874 ], [ -95.464821040076799, 30.035115250204846 ], [ -95.463638039257589, 30.033099249174402 ], [ -95.463553039427154, 30.032971249590808 ], [ -95.463482039146783, 30.03295424940961 ], [ -95.463112039744914, 30.032670249103454 ], [ -95.462957039499472, 30.032626249475168 ], [ -95.462751039001091, 30.032639249807524 ], [ -95.462462039713898, 30.032779249795841 ], [ -95.462287039507231, 30.032931249225264 ], [ -95.46211503939432, 30.033296249784129 ], [ -95.462046039438007, 30.033826249667793 ], [ -95.461830039076546, 30.034133249536168 ], [ -95.46164703884476, 30.034573249942163 ], [ -95.461344039294133, 30.034954250065873 ], [ -95.460511039050587, 30.035264250375615 ], [ -95.459295038278185, 30.035597250238474 ], [ -95.459027038696675, 30.035613250511283 ], [ -95.458806038959551, 30.035626250433257 ], [ -95.458201037928461, 30.035735249885253 ], [ -95.457259038334854, 30.035669250277429 ], [ -95.455763038034931, 30.03589125035932 ], [ -95.455164037728409, 30.036125250088645 ], [ -95.454534037928852, 30.036045250598715 ], [ -95.45406003715604, 30.035985250032486 ], [ -95.453775037213333, 30.036000250620283 ], [ -95.453487037211332, 30.036015250850642 ], [ -95.453171037034423, 30.036181250847111 ], [ -95.452564036855989, 30.036812251065115 ], [ -95.451913037089128, 30.037363251263336 ], [ -95.451562036714265, 30.037611251194207 ], [ -95.451234036355615, 30.037755251124409 ], [ -95.451031036890797, 30.037730250914741 ], [ -95.45090703673867, 30.037639250947397 ], [ -95.450713036511047, 30.037170251012224 ], [ -95.450468036088637, 30.036982250735537 ], [ -95.450382036537533, 30.036972251217627 ], [ -95.449706036356403, 30.036894250609826 ], [ -95.449493035789985, 30.036869250933393 ], [ -95.449353036069496, 30.036818250858815 ], [ -95.448729035717164, 30.036591250705467 ], [ -95.448284035926392, 30.03648425039388 ], [ -95.448068035615265, 30.036277250341708 ], [ -95.447966035866813, 30.035901250332511 ], [ -95.447792036150119, 30.035769250510903 ], [ -95.447721035442441, 30.035714250207164 ], [ -95.447562035802434, 30.035593250876573 ], [ -95.447209036004011, 30.035688250343359 ], [ -95.446787035884356, 30.035974250748961 ], [ -95.446238035774954, 30.036525250750824 ], [ -95.445806035750053, 30.036620251233014 ], [ -95.445264035581985, 30.036659251367954 ], [ -95.445118034866653, 30.036678250997532 ], [ -95.444727034703007, 30.036694250545892 ], [ -95.444344034868863, 30.036843251006641 ], [ -95.443972035255072, 30.036807250559004 ], [ -95.443648035166035, 30.036665251001629 ], [ -95.443034034464262, 30.036395251138909 ], [ -95.442845034942692, 30.036311250685959 ], [ -95.442741034133618, 30.036265250916628 ], [ -95.442201034239432, 30.035787250497876 ], [ -95.441729034684357, 30.035443250454232 ], [ -95.441594034361543, 30.035353250832795 ], [ -95.4415000340002, 30.035221250905845 ], [ -95.441407034218543, 30.034906250746964 ], [ -95.441393034028536, 30.034590250488638 ], [ -95.441321034033692, 30.034349250229379 ], [ -95.441236033645637, 30.034177250928842 ], [ -95.440911033374874, 30.034080250648564 ], [ -95.440623034114978, 30.034107250899744 ], [ -95.440057033735911, 30.034335251063279 ], [ -95.43991303415585, 30.034377250366482 ], [ -95.439795033347337, 30.034402250707601 ], [ -95.439723033131813, 30.034418250893065 ], [ -95.439430033337885, 30.034312250575219 ], [ -95.439152033148986, 30.034149250845132 ], [ -95.438909033634488, 30.034056250919953 ], [ -95.438720032970238, 30.034066250681832 ], [ -95.438079033459076, 30.034507250753066 ], [ -95.437915032926696, 30.034626250354599 ], [ -95.437759032719711, 30.034666250467655 ], [ -95.437663033397811, 30.034690250926296 ], [ -95.437290033046452, 30.034528250526211 ], [ -95.436981033344949, 30.03433625056503 ], [ -95.43695103264541, 30.034326250629569 ], [ -95.436923033189998, 30.034317250551016 ], [ -95.436748033177395, 30.034257250780048 ], [ -95.436394032295695, 30.034283250804819 ], [ -95.436062033177478, 30.034408250705507 ], [ -95.435829032804179, 30.034509250848267 ], [ -95.435698032481653, 30.034509250886675 ], [ -95.435626032977751, 30.034509250843637 ], [ -95.435454032907316, 30.034411250387635 ], [ -95.435372032394383, 30.034246250325065 ], [ -95.435228032300657, 30.034084250914535 ], [ -95.435016032643276, 30.034020250858262 ], [ -95.434782032251817, 30.034033250847887 ], [ -95.434658032050649, 30.034074250771436 ], [ -95.434629032299554, 30.034100250655595 ], [ -95.434494032269086, 30.034217251113599 ], [ -95.434351031714854, 30.034413250603979 ], [ -95.433964032442049, 30.034847250579638 ], [ -95.433780031795962, 30.035083250923734 ], [ -95.433746031990211, 30.035150250798534 ], [ -95.433625031690411, 30.035416251069428 ], [ -95.433579031694094, 30.035517250862547 ], [ -95.433434031826906, 30.035694251346538 ], [ -95.433173032377084, 30.035816251266539 ], [ -95.432775031559004, 30.035848251195585 ], [ -95.432280031909258, 30.035737251599841 ], [ -95.431951032005358, 30.035718250911614 ], [ -95.431631031294913, 30.035646251116379 ], [ -95.431459031318269, 30.035523251525937 ], [ -95.431305031751748, 30.035296250766141 ], [ -95.431237031897695, 30.034971250942451 ], [ -95.431207031940488, 30.034769251024411 ], [ -95.43105603127853, 30.034561251041993 ], [ -95.430664030902506, 30.034574251416426 ], [ -95.43040403123473, 30.034681251070296 ], [ -95.430131031577488, 30.034896251427373 ], [ -95.429911031230858, 30.035356250972153 ], [ -95.429809031032704, 30.035468251490791 ], [ -95.429635030661089, 30.035540251201983 ], [ -95.429495031503109, 30.035598250905466 ], [ -95.429405031297506, 30.035635251250003 ], [ -95.429374030646699, 30.035648251272107 ], [ -95.429362030690839, 30.035746251382193 ], [ -95.429360031401941, 30.036672251495048 ], [ -95.429415031512463, 30.037775251956877 ], [ -95.429476031260577, 30.038575252155884 ], [ -95.429544031577876, 30.03911025192037 ], [ -95.429581031266807, 30.03940025175233 ], [ -95.429667031042825, 30.040055252423109 ], [ -95.429772031705937, 30.040668252030834 ], [ -95.430000031531691, 30.041995252364693 ], [ -95.430338032133506, 30.044183253328899 ], [ -95.430476032145606, 30.045055253445963 ], [ -95.430501031967509, 30.045221252734212 ], [ -95.430745031509929, 30.046789253571518 ], [ -95.430914031525433, 30.047661253313574 ], [ -95.43122603202616, 30.049368253998825 ], [ -95.43186003207154, 30.052360254559929 ], [ -95.431902032916, 30.052588254885848 ], [ -95.431937032256656, 30.052599254924452 ], [ -95.431977032806657, 30.05261225423644 ], [ -95.432034032832519, 30.052630254681464 ], [ -95.432082032973469, 30.05264525432079 ], [ -95.432321032809625, 30.05272125460915 ], [ -95.432492032308645, 30.052775254502414 ], [ -95.432700032700581, 30.052829254316851 ], [ -95.432944032646958, 30.052872254812627 ], [ -95.433156032713299, 30.052884254483068 ], [ -95.433448033116051, 30.05287125478749 ], [ -95.433779033120217, 30.05283725500696 ], [ -95.434058032809304, 30.052788254974701 ], [ -95.434321032836635, 30.052720254181413 ], [ -95.434576033074549, 30.05263725482715 ], [ -95.434755032737471, 30.052560254541593 ], [ -95.43503103283301, 30.052419254801855 ], [ -95.435208033313415, 30.052309254557994 ], [ -95.435382032871047, 30.052185254228277 ], [ -95.43555203380329, 30.05204925452411 ], [ -95.436049033244117, 30.051589254608555 ], [ -95.436205033747683, 30.051459254030462 ], [ -95.436308033509434, 30.051373254119827 ], [ -95.436591033108854, 30.051175253939597 ], [ -95.436926033806515, 30.050969254213289 ], [ -95.437265033986563, 30.050760253971777 ], [ -95.437344033215098, 30.05069625426955 ], [ -95.437430033754183, 30.050638254443939 ], [ -95.437618033468993, 30.050484253805656 ], [ -95.437835034226154, 30.050280254121581 ], [ -95.437885033835997, 30.050215253485714 ], [ -95.437949034060907, 30.050166253642438 ], [ -95.438251033655504, 30.049790254212084 ], [ -95.43833403446304, 30.049687253644151 ], [ -95.438512033904175, 30.049489253850865 ], [ -95.438563033824806, 30.049416253863548 ], [ -95.438649033844115, 30.049331253923015 ], [ -95.438799033921725, 30.049181253908916 ], [ -95.439113033602752, 30.048925253441553 ], [ -95.439415034238209, 30.048680253422464 ], [ -95.439701034557999, 30.048473253772169 ], [ -95.439940033794912, 30.048320253569461 ], [ -95.440750034318796, 30.047873253787692 ], [ -95.441273034919021, 30.047589253293037 ], [ -95.441568034406245, 30.047418253130495 ], [ -95.44249003532083, 30.046918253268259 ], [ -95.442759034534888, 30.046775253013909 ], [ -95.443186035307676, 30.046532252859539 ], [ -95.443613035205757, 30.046293253332127 ], [ -95.443680035375607, 30.046240253331167 ], [ -95.443874035253529, 30.046129253131951 ], [ -95.444007035266068, 30.04603425301341 ], [ -95.444769034878092, 30.045547252913828 ], [ -95.444966035790699, 30.045440253119214 ], [ -95.445525036067707, 30.045108252625621 ], [ -95.445994035437351, 30.044821252539208 ], [ -95.446448035572644, 30.044600252334927 ], [ -95.44692003606292, 30.044370252333405 ], [ -95.44723303545301, 30.044254252540465 ], [ -95.447554036098467, 30.044154252117565 ], [ -95.447987035713396, 30.044028252546259 ], [ -95.448214036487499, 30.043980251978123 ], [ -95.448564036288445, 30.043924252103494 ], [ -95.449045036575797, 30.043872252701696 ], [ -95.449289036838167, 30.043859252419221 ], [ -95.449785036432402, 30.043855252472536 ], [ -95.450162036292625, 30.04387625193981 ], [ -95.450424037094763, 30.043906252130121 ], [ -95.450696036660958, 30.043947251894522 ], [ -95.450992036794091, 30.043982252005534 ], [ -95.451137037251627, 30.044009251964642 ], [ -95.451583037255531, 30.044062252244448 ], [ -95.451627036883011, 30.04406425253859 ], [ -95.452040036806991, 30.04408725237635 ], [ -95.45233803717349, 30.044094252427108 ], [ -95.452642037041002, 30.044083252407376 ], [ -95.452910037651236, 30.044075252016373 ], [ -95.453319037835286, 30.044027252280383 ], [ -95.453578037659298, 30.043986251755292 ], [ -95.453701037833923, 30.043956251787748 ], [ -95.453831037489834, 30.043939251916168 ], [ -95.454106037750265, 30.043875251988286 ], [ -95.45421603780332, 30.04385025170415 ], [ -95.454475037964173, 30.043772251594547 ], [ -95.454855038351553, 30.043640252214377 ], [ -95.454990038328233, 30.043585251647702 ], [ -95.455209037887698, 30.043495252249222 ], [ -95.455508037876157, 30.043354252187445 ], [ -95.455887037777003, 30.043153251467896 ], [ -95.456002038285277, 30.043076252272847 ], [ -95.45631703771376, 30.042918252021561 ], [ -95.45644803775707, 30.042844252086294 ], [ -95.45669603883492, 30.042706251371484 ], [ -95.457279038310233, 30.042393251773838 ], [ -95.458181038826567, 30.041894251162542 ], [ -95.45844203877526, 30.041756251446813 ], [ -95.458662038623771, 30.041630251609543 ], [ -95.459038039005648, 30.04146325117323 ], [ -95.459274039275002, 30.041371251838019 ], [ -95.459922039295321, 30.041119251197458 ], [ -95.460258038698541, 30.040966251092151 ], [ -95.460469039040944, 30.040859251242079 ], [ -95.460964039438011, 30.04058625102736 ], [ -95.461779039894751, 30.040123251147492 ], [ -95.461932039295618, 30.040039250812324 ], [ -95.462177039512056, 30.039906250761653 ], [ -95.462532039925634, 30.039780250913026 ], [ -95.462689039552359, 30.039707250780904 ], [ -95.462934040278299, 30.03961225090455 ], [ -95.463302039394065, 30.039489251063383 ], [ -95.463440040362215, 30.039440251013652 ], [ -95.463776039748382, 30.039268250577898 ], [ -95.464015040264343, 30.039177250782505 ], [ -95.464404040382732, 30.039051250819519 ], [ -95.464948040735621, 30.038857250589917 ], [ -95.465519040511481, 30.03860825039331 ], [ -95.465975040578982, 30.03836325078036 ], [ -95.466626040519884, 30.038046250599322 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1644, "Tract": "48201553801", "Area_SqMi": 1.4288600140338441, "total_2009": 902, "total_2010": 798, "total_2011": 898, "total_2012": 910, "total_2013": 1022, "total_2014": 982, "total_2015": 966, "total_2016": 951, "total_2017": 949, "total_2018": 832, "total_2019": 974, "total_2020": 848, "age1": 218, "age2": 549, "age3": 265, "earn1": 121, "earn2": 275, "earn3": 636, "naics_s01": 20, "naics_s02": 15, "naics_s03": 0, "naics_s04": 461, "naics_s05": 17, "naics_s06": 46, "naics_s07": 149, "naics_s08": 0, "naics_s09": 12, "naics_s10": 23, "naics_s11": 9, "naics_s12": 32, "naics_s13": 0, "naics_s14": 110, "naics_s15": 4, "naics_s16": 28, "naics_s17": 26, "naics_s18": 60, "naics_s19": 20, "naics_s20": 0, "race1": 856, "race2": 87, "race3": 17, "race4": 52, "race5": 4, "race6": 16, "ethnicity1": 784, "ethnicity2": 248, "edu1": 170, "edu2": 201, "edu3": 246, "edu4": 197, "Shape_Length": 33890.968632856224, "Shape_Area": 39834171.672908686, "total_2021": 984, "total_2022": 1032 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.527473056755269, 30.049909251133428 ], [ -95.527480056376234, 30.049669250430963 ], [ -95.527417056783889, 30.049054250459211 ], [ -95.527341056619946, 30.048856250282846 ], [ -95.52710105683623, 30.048432250458855 ], [ -95.527019056325301, 30.048361250050057 ], [ -95.526874056763731, 30.048317250221213 ], [ -95.526791056178297, 30.04826725041589 ], [ -95.526684056179533, 30.048141250611664 ], [ -95.526596056281349, 30.047970250783912 ], [ -95.526532056911719, 30.047910250710611 ], [ -95.526463056911538, 30.047883250188775 ], [ -95.52589405599322, 30.047789249966662 ], [ -95.525698056599055, 30.047734250620817 ], [ -95.525534055749873, 30.047662250278407 ], [ -95.525193056137596, 30.047453249991872 ], [ -95.524947056134792, 30.047316250114118 ], [ -95.52485805579721, 30.047222250026159 ], [ -95.524789056377571, 30.047101250257256 ], [ -95.524732055898554, 30.047024250286373 ], [ -95.524694056262177, 30.046997249920356 ], [ -95.524587055912008, 30.046947249890813 ], [ -95.524542055425087, 30.046915250639092 ], [ -95.524505055793398, 30.046870250423513 ], [ -95.524384055945063, 30.046634250637865 ], [ -95.524302055527286, 30.046497249732933 ], [ -95.524265055844978, 30.046464250596653 ], [ -95.524113055761319, 30.046392250117062 ], [ -95.523816055914878, 30.046183250484834 ], [ -95.52366405518346, 30.046123249715393 ], [ -95.523607055903241, 30.046079249953756 ], [ -95.523531056013255, 30.045992250492844 ], [ -95.523424055346723, 30.045870249697288 ], [ -95.523367055985787, 30.045820249689687 ], [ -95.523311055600118, 30.045787249699416 ], [ -95.523089055103, 30.045765250439043 ], [ -95.52279205574996, 30.045760250217867 ], [ -95.522666055307269, 30.045732250236405 ], [ -95.522521055807857, 30.045683249927272 ], [ -95.522142055279772, 30.045507249810957 ], [ -95.521965055256842, 30.045457250141364 ], [ -95.521662054884999, 30.045413250057212 ], [ -95.52127005467905, 30.045380249916526 ], [ -95.520556054460982, 30.045176250348739 ], [ -95.520423055209008, 30.045121249612993 ], [ -95.520183054452275, 30.04496725021977 ], [ -95.519930054244142, 30.044742249641601 ], [ -95.519709054714355, 30.044566249896306 ], [ -95.519394054733269, 30.04418124983037 ], [ -95.519210054008425, 30.044005249844471 ], [ -95.519027054236332, 30.043851249855837 ], [ -95.518876054041684, 30.043752249491313 ], [ -95.518749054582031, 30.043691249744651 ], [ -95.518648054716522, 30.043664250030041 ], [ -95.51845205454201, 30.043631250164545 ], [ -95.518358054045706, 30.043592249862627 ], [ -95.518155054374176, 30.043449249679579 ], [ -95.518073053635433, 30.043405249480291 ], [ -95.517865053519273, 30.043323249811259 ], [ -95.517789054295932, 30.04328424982436 ], [ -95.517524053570696, 30.043059249261052 ], [ -95.517107053291085, 30.042811249607016 ], [ -95.516829053937599, 30.042448249308833 ], [ -95.516671053358664, 30.042261249490867 ], [ -95.516545053290798, 30.042168249184467 ], [ -95.516482053666707, 30.042135249783719 ], [ -95.516324053175694, 30.04209624961894 ], [ -95.516248053262217, 30.04206324973962 ], [ -95.51598205344709, 30.041739249048025 ], [ -95.515799053022619, 30.041590249829845 ], [ -95.515730053248589, 30.041431249219702 ], [ -95.5155780530187, 30.041255249478276 ], [ -95.515540053215815, 30.041156249011138 ], [ -95.515522053464025, 30.041030249273838 ], [ -95.514989053543303, 30.040321248861794 ], [ -95.514922052900133, 30.040232249036663 ], [ -95.51432205343319, 30.039462249124245 ], [ -95.514101052646012, 30.03912124926622 ], [ -95.513958053202671, 30.03895224910335 ], [ -95.513924052569337, 30.038912248670464 ], [ -95.513785052448853, 30.038748249291469 ], [ -95.513602052901959, 30.038583248992957 ], [ -95.51332405232651, 30.038390248471977 ], [ -95.513090052850842, 30.038258249057677 ], [ -95.513046052177984, 30.038187248877438 ], [ -95.513009052566019, 30.037982248874034 ], [ -95.512875052372763, 30.037225248949937 ], [ -95.512851052843786, 30.037093248846013 ], [ -95.512800052470396, 30.037032248580637 ], [ -95.512625052320701, 30.036865248483586 ], [ -95.512541052727329, 30.036785248580664 ], [ -95.512446052294905, 30.036708248395158 ], [ -95.511828051644912, 30.036086248887361 ], [ -95.51179005213892, 30.036059248184138 ], [ -95.511455052000429, 30.03598224809047 ], [ -95.511127051934452, 30.035940248487798 ], [ -95.510204051978391, 30.03582224893788 ], [ -95.510046051516738, 30.035776248907293 ], [ -95.509901051549946, 30.035734248912821 ], [ -95.509566051213952, 30.03521124812637 ], [ -95.509527051908876, 30.035154248780479 ], [ -95.509033051267991, 30.034424248181278 ], [ -95.509004050968215, 30.034381248004639 ], [ -95.50863805115722, 30.033864247899384 ], [ -95.50800405061166, 30.032908248143109 ], [ -95.507413051148646, 30.031928247976033 ], [ -95.507331050626533, 30.031681247892674 ], [ -95.507281050350059, 30.031434247383562 ], [ -95.50709105089787, 30.031060247197011 ], [ -95.507035050211741, 30.030928247600261 ], [ -95.507029050983348, 30.030856247319413 ], [ -95.507029050997701, 30.030708247153807 ], [ -95.507057050593446, 30.030533247439855 ], [ -95.507060050177756, 30.030515247225871 ], [ -95.507160050221827, 30.030169247250541 ], [ -95.506630050347084, 30.030463247586578 ], [ -95.506515050178407, 30.030519247800857 ], [ -95.506489050805584, 30.030532247346081 ], [ -95.506355050077474, 30.030614247937244 ], [ -95.505324050525843, 30.031182247567394 ], [ -95.504309050050566, 30.031738248265796 ], [ -95.504251049540315, 30.031771247642002 ], [ -95.503582049634744, 30.032124248252806 ], [ -95.503400050260595, 30.032222248430958 ], [ -95.503283049341576, 30.03227924806275 ], [ -95.502947050074297, 30.03246424828691 ], [ -95.502772049346106, 30.032560248301671 ], [ -95.502677049234009, 30.032612247652853 ], [ -95.502178049290791, 30.032893248443358 ], [ -95.500918049328234, 30.033607248600255 ], [ -95.500344049397626, 30.033922248408725 ], [ -95.499197049051801, 30.034540248443527 ], [ -95.497668048349468, 30.035384248957669 ], [ -95.497094047985144, 30.035702248830241 ], [ -95.495844048256345, 30.03637324881797 ], [ -95.495428047471307, 30.036596249492259 ], [ -95.495394048023755, 30.036615248782237 ], [ -95.494240047372543, 30.037272249110035 ], [ -95.493390047109898, 30.037739249756381 ], [ -95.493072047350765, 30.037915249414883 ], [ -95.492150046880639, 30.038421250037224 ], [ -95.491527046862828, 30.038765249892414 ], [ -95.48981404640783, 30.039706250330948 ], [ -95.488569045915497, 30.040391250281591 ], [ -95.488653046518962, 30.040519249923584 ], [ -95.488706046165547, 30.04060125025552 ], [ -95.488855046199461, 30.040866250396828 ], [ -95.488978046698904, 30.041122250358136 ], [ -95.48906804679109, 30.041330250168837 ], [ -95.490618047500377, 30.04516525078915 ], [ -95.490771046818523, 30.045540251142423 ], [ -95.490973047188376, 30.04603625095362 ], [ -95.491584047517492, 30.047534251259464 ], [ -95.492559048061949, 30.049922252246322 ], [ -95.492723047729854, 30.050325252018286 ], [ -95.492780048407624, 30.0504642524498 ], [ -95.493249048103621, 30.050205252368638 ], [ -95.493378048137885, 30.050130251532607 ], [ -95.494522048323191, 30.049476251512864 ], [ -95.495730048375236, 30.048803251388776 ], [ -95.497190049273058, 30.047991250984275 ], [ -95.497716049087529, 30.047709251353911 ], [ -95.498342049636335, 30.047362251522166 ], [ -95.498695049684841, 30.047158251644344 ], [ -95.499150048861225, 30.046913251559403 ], [ -95.499402049011096, 30.046771251413915 ], [ -95.500557049780298, 30.046122250535667 ], [ -95.500698049559361, 30.046051251261321 ], [ -95.500788050153702, 30.046001251250583 ], [ -95.500980049840834, 30.045895251008272 ], [ -95.501610050145572, 30.045558250469096 ], [ -95.501710050422872, 30.045502250971822 ], [ -95.501874050017079, 30.045425250653828 ], [ -95.502032049546145, 30.045344250896861 ], [ -95.502297049812199, 30.045222250437607 ], [ -95.50238605009902, 30.045177250560211 ], [ -95.502679050253207, 30.045048250454329 ], [ -95.502767049853034, 30.045005250516773 ], [ -95.502944050105427, 30.044932250705759 ], [ -95.503198050082631, 30.044835250852298 ], [ -95.50327505009848, 30.044796250590771 ], [ -95.503444050813997, 30.044733250749189 ], [ -95.50367304994667, 30.044639250341497 ], [ -95.503901050281257, 30.044540250506888 ], [ -95.504345050948572, 30.044358250274801 ], [ -95.504490050923295, 30.044303250514798 ], [ -95.504546050236343, 30.044277250586894 ], [ -95.504643051078887, 30.044241250006408 ], [ -95.505125050580162, 30.044038250339533 ], [ -95.505205050941896, 30.044020249977201 ], [ -95.505278050560776, 30.04399625056541 ], [ -95.50561305093126, 30.043927250476195 ], [ -95.505867050459557, 30.043887249917276 ], [ -95.506072050772218, 30.04387024995993 ], [ -95.506088050694075, 30.043869249846317 ], [ -95.50627905149652, 30.043831250560952 ], [ -95.506575050785855, 30.043789250243805 ], [ -95.506660051236793, 30.043787250373342 ], [ -95.506833050954455, 30.043776250614652 ], [ -95.507051050876214, 30.043775249959104 ], [ -95.507332051091026, 30.043792250510805 ], [ -95.50744105153386, 30.04380225056688 ], [ -95.50766605161725, 30.043803250385388 ], [ -95.507777051647295, 30.043808250553749 ], [ -95.507931050982464, 30.043822249983403 ], [ -95.508108051783495, 30.043844250542733 ], [ -95.508330051289178, 30.043884249931786 ], [ -95.508554051761436, 30.043939249887032 ], [ -95.508788051557502, 30.044010250626435 ], [ -95.509201051338962, 30.044163250302141 ], [ -95.509677051521578, 30.044318250498829 ], [ -95.510118052482099, 30.044496250428701 ], [ -95.510237051937949, 30.044540250601351 ], [ -95.510335052496302, 30.0445822504647 ], [ -95.510921052193439, 30.044957250641549 ], [ -95.511083052842153, 30.045069249938972 ], [ -95.511302052639493, 30.045208250154033 ], [ -95.511376052271729, 30.04529024991556 ], [ -95.511477052554937, 30.045358250712692 ], [ -95.511567052039041, 30.045430250271547 ], [ -95.511639052201446, 30.045507250191942 ], [ -95.511771052102915, 30.045624250672905 ], [ -95.511872052889956, 30.045730250303997 ], [ -95.511963052825138, 30.045842250359609 ], [ -95.512060052851069, 30.045982250625141 ], [ -95.512134053072117, 30.046112250214158 ], [ -95.512653052597486, 30.046877250214028 ], [ -95.512756053149303, 30.04703425075849 ], [ -95.513032052724938, 30.047441250506203 ], [ -95.513240052564612, 30.047753251157332 ], [ -95.513377053432009, 30.047944250477141 ], [ -95.513524052753965, 30.048131250796892 ], [ -95.513683052958143, 30.048312250732597 ], [ -95.513765053320625, 30.048394250747926 ], [ -95.513948053011788, 30.048562250740822 ], [ -95.514111053513403, 30.048698250837301 ], [ -95.514265053142068, 30.048816250603849 ], [ -95.514503053782974, 30.048981251140258 ], [ -95.514680053619671, 30.049095251139992 ], [ -95.514765053542405, 30.04914525082571 ], [ -95.514952053357135, 30.049242251261841 ], [ -95.515164054075683, 30.049339250779067 ], [ -95.515398053469539, 30.049430250702006 ], [ -95.515645053573223, 30.049521251523124 ], [ -95.51635405377526, 30.049744250921897 ], [ -95.516587054237249, 30.049809251120646 ], [ -95.516854054449652, 30.049883251418105 ], [ -95.517002053663944, 30.049924251308557 ], [ -95.517087054503946, 30.049945251556291 ], [ -95.517540054033915, 30.050059251051675 ], [ -95.517633053905143, 30.050087250789097 ], [ -95.517967054701629, 30.050165251213233 ], [ -95.518462054646946, 30.050289251089886 ], [ -95.518645054923567, 30.050339250790813 ], [ -95.518995055097164, 30.050432250918721 ], [ -95.519277054932104, 30.050497251038376 ], [ -95.519464055110205, 30.050532250890065 ], [ -95.519778054380481, 30.050565251253179 ], [ -95.519883055179974, 30.050572251059677 ], [ -95.519978054737024, 30.050574250735206 ], [ -95.520212054633078, 30.050574250986969 ], [ -95.520463055059679, 30.050560251153801 ], [ -95.521255055275859, 30.050523251198303 ], [ -95.52256605554291, 30.050464250897843 ], [ -95.522666055980636, 30.050454251471507 ], [ -95.522793055767494, 30.050453251247152 ], [ -95.523395055591607, 30.05042125065162 ], [ -95.524168056052076, 30.050383251100701 ], [ -95.52440705588026, 30.050368251231816 ], [ -95.52477805590334, 30.050354250933022 ], [ -95.524886055763062, 30.050343250916391 ], [ -95.525241056020093, 30.050331250835075 ], [ -95.525557055912742, 30.050318250582446 ], [ -95.525952056041248, 30.050291250825744 ], [ -95.526206056818637, 30.050262250783447 ], [ -95.526453056770535, 30.050222250517304 ], [ -95.526588056700817, 30.050194250791861 ], [ -95.52680705710867, 30.050139250679038 ], [ -95.527300056895299, 30.049974250707994 ], [ -95.527473056755269, 30.049909251133428 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1645, "Tract": "48157674800", "Area_SqMi": 1.5077418159013578, "total_2009": 2805, "total_2010": 2854, "total_2011": 2934, "total_2012": 2543, "total_2013": 2583, "total_2014": 2532, "total_2015": 2033, "total_2016": 2844, "total_2017": 2795, "total_2018": 2847, "total_2019": 2665, "total_2020": 2580, "age1": 517, "age2": 1293, "age3": 638, "earn1": 548, "earn2": 991, "earn3": 909, "naics_s01": 3, "naics_s02": 0, "naics_s03": 0, "naics_s04": 11, "naics_s05": 32, "naics_s06": 1, "naics_s07": 598, "naics_s08": 17, "naics_s09": 0, "naics_s10": 93, "naics_s11": 74, "naics_s12": 109, "naics_s13": 5, "naics_s14": 43, "naics_s15": 6, "naics_s16": 1121, "naics_s17": 13, "naics_s18": 273, "naics_s19": 49, "naics_s20": 0, "race1": 1616, "race2": 524, "race3": 23, "race4": 248, "race5": 2, "race6": 35, "ethnicity1": 1605, "ethnicity2": 843, "edu1": 417, "edu2": 503, "edu3": 576, "edu4": 435, "Shape_Length": 26126.034890247447, "Shape_Area": 42033261.301421784, "total_2021": 2443, "total_2022": 2448 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.785188100881669, 29.56602514324706 ], [ -95.785070101080237, 29.565841143525454 ], [ -95.784910100267865, 29.565591142897595 ], [ -95.783992100927847, 29.56383714250283 ], [ -95.783635100416745, 29.563156142559812 ], [ -95.783421099731996, 29.562666142996733 ], [ -95.783383100300597, 29.562606142803709 ], [ -95.783358099818855, 29.562518142835771 ], [ -95.783346100474134, 29.562408142851595 ], [ -95.783383099697048, 29.562029142591157 ], [ -95.78337109984659, 29.561198142239906 ], [ -95.783365100111297, 29.560825142683282 ], [ -95.783359100394023, 29.559148142247427 ], [ -95.78333110009028, 29.557962142030512 ], [ -95.782641099993853, 29.557986141664724 ], [ -95.78066809891142, 29.558031141787893 ], [ -95.777593098062823, 29.558078141563101 ], [ -95.776413098173052, 29.55807714194199 ], [ -95.775832097799906, 29.55807714178135 ], [ -95.773411097837212, 29.558123141666243 ], [ -95.769216096032153, 29.558207142480914 ], [ -95.766221095375101, 29.558283142447831 ], [ -95.765263095405658, 29.558333142062356 ], [ -95.763301095295404, 29.558482142732895 ], [ -95.762827094872407, 29.558712142165739 ], [ -95.761390094820584, 29.55967714323452 ], [ -95.760649094243206, 29.560443142726985 ], [ -95.759619094474587, 29.561552143640583 ], [ -95.75958309454137, 29.561590143734954 ], [ -95.759520093726792, 29.561657143456888 ], [ -95.759285094134569, 29.562052143348243 ], [ -95.759764094215129, 29.56289014312032 ], [ -95.759826093825779, 29.563010143345014 ], [ -95.759917094321466, 29.563234143169261 ], [ -95.759999094329089, 29.563435143574022 ], [ -95.760183094726344, 29.563882143316512 ], [ -95.76025309455423, 29.564057143418758 ], [ -95.760354093929209, 29.564303143674749 ], [ -95.760463094481977, 29.564569143876597 ], [ -95.760720094957989, 29.565199143847313 ], [ -95.760918094951791, 29.565682143915332 ], [ -95.760930094410583, 29.565763144265482 ], [ -95.761617095291854, 29.567553144108945 ], [ -95.762298095148694, 29.569358144353352 ], [ -95.762500094761364, 29.569868145203291 ], [ -95.762557095040663, 29.569991144948311 ], [ -95.762605094973281, 29.570071145298677 ], [ -95.762988095222696, 29.571024144710005 ], [ -95.763311095715963, 29.571770145151998 ], [ -95.763334095806272, 29.571822145670367 ], [ -95.764135096094023, 29.573632145762268 ], [ -95.764276095867089, 29.57395114605049 ], [ -95.764436096234903, 29.574324145551039 ], [ -95.764717096501471, 29.57497014612677 ], [ -95.764994096563967, 29.575560146379164 ], [ -95.765028096417737, 29.575638146227224 ], [ -95.765270096697421, 29.576183145835888 ], [ -95.765330095757534, 29.576319145693422 ], [ -95.765647096172501, 29.577053145923937 ], [ -95.766009096225389, 29.577749146187202 ], [ -95.767068096381578, 29.579945146987473 ], [ -95.767563097313698, 29.579743147129633 ], [ -95.767796096789226, 29.579675146493088 ], [ -95.768990097631672, 29.579161146235272 ], [ -95.77012109758796, 29.578626146646087 ], [ -95.770497097308763, 29.578404146281329 ], [ -95.770846097774111, 29.57813214610109 ], [ -95.771335098289256, 29.577660145811944 ], [ -95.771628097458489, 29.577313146445107 ], [ -95.771876097881332, 29.5769091460289 ], [ -95.772482097702309, 29.576021145479235 ], [ -95.772903097909179, 29.575301145644303 ], [ -95.773572097996876, 29.575297145623708 ], [ -95.774184098110766, 29.575204145129835 ], [ -95.774990098668212, 29.574963145545563 ], [ -95.775692099273414, 29.574602145060719 ], [ -95.776113099252228, 29.574306145297797 ], [ -95.776263099404204, 29.574168145504018 ], [ -95.779852099596681, 29.570875144610639 ], [ -95.779901099869718, 29.570831144747725 ], [ -95.783001100143451, 29.567977143614257 ], [ -95.783811100886737, 29.567264143563751 ], [ -95.785188100881669, 29.56602514324706 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1646, "Tract": "48157674900", "Area_SqMi": 3.887387866294338, "total_2009": 2259, "total_2010": 2286, "total_2011": 2366, "total_2012": 2622, "total_2013": 2513, "total_2014": 2602, "total_2015": 2700, "total_2016": 2876, "total_2017": 2749, "total_2018": 2103, "total_2019": 2192, "total_2020": 2204, "age1": 358, "age2": 1393, "age3": 666, "earn1": 195, "earn2": 805, "earn3": 1417, "naics_s01": 5, "naics_s02": 0, "naics_s03": 0, "naics_s04": 153, "naics_s05": 96, "naics_s06": 208, "naics_s07": 51, "naics_s08": 2, "naics_s09": 19, "naics_s10": 26, "naics_s11": 3, "naics_s12": 39, "naics_s13": 0, "naics_s14": 38, "naics_s15": 0, "naics_s16": 1354, "naics_s17": 47, "naics_s18": 63, "naics_s19": 53, "naics_s20": 260, "race1": 1484, "race2": 747, "race3": 16, "race4": 136, "race5": 0, "race6": 34, "ethnicity1": 1732, "ethnicity2": 685, "edu1": 422, "edu2": 508, "edu3": 714, "edu4": 415, "Shape_Length": 46046.901468983408, "Shape_Area": 108373720.38145861, "total_2021": 2164, "total_2022": 2417 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.790869103294114, 29.597933149923609 ], [ -95.790868103582483, 29.597573149244976 ], [ -95.790824103835405, 29.59717814919161 ], [ -95.790805103142162, 29.597064149698859 ], [ -95.790783103296135, 29.596928149366931 ], [ -95.790755103346712, 29.596713149545486 ], [ -95.790738103129442, 29.596497149014873 ], [ -95.790727103937925, 29.596209149571692 ], [ -95.790729103056719, 29.595956149195914 ], [ -95.790719103772076, 29.595885149265985 ], [ -95.790699103090546, 29.595792149305517 ], [ -95.790668103194562, 29.59563614961036 ], [ -95.790611103561346, 29.595455149407023 ], [ -95.790559102995985, 29.595288149423951 ], [ -95.790274103446905, 29.594422148522447 ], [ -95.790224103785576, 29.594254149322797 ], [ -95.790170103824551, 29.59407314859833 ], [ -95.789991102836296, 29.593369148617988 ], [ -95.789885103571137, 29.592726148204726 ], [ -95.789871103308343, 29.592619149004033 ], [ -95.789853102835309, 29.592403148465355 ], [ -95.789820103510124, 29.592262148737785 ], [ -95.789793103325607, 29.592119148351436 ], [ -95.789774102731272, 29.591723148669995 ], [ -95.789775102888171, 29.591507148201337 ], [ -95.789754103548361, 29.591110148239537 ], [ -95.789728102754893, 29.590823148517153 ], [ -95.789692103560199, 29.590645148191491 ], [ -95.789523103075268, 29.590013147971977 ], [ -95.789324102429006, 29.589539147912511 ], [ -95.789043103307591, 29.588938147792085 ], [ -95.788870103173579, 29.588532148149003 ], [ -95.788785102408454, 29.588368147682857 ], [ -95.788505103122716, 29.58789014732762 ], [ -95.788223102090541, 29.587534147551896 ], [ -95.787396101905316, 29.586681147835428 ], [ -95.786669102427126, 29.585991147405373 ], [ -95.786353101658861, 29.585706147400156 ], [ -95.785827102150435, 29.585300146835856 ], [ -95.785307101891163, 29.584945146858363 ], [ -95.785183101252073, 29.584849147185299 ], [ -95.78511910136956, 29.584804147370548 ], [ -95.784775101449171, 29.584605147477486 ], [ -95.784352101586975, 29.584379146835172 ], [ -95.784242101700983, 29.584331147095234 ], [ -95.784051101759474, 29.584262146679738 ], [ -95.78375310173746, 29.584136146690085 ], [ -95.783683100771128, 29.584100147145737 ], [ -95.783588101421785, 29.584030147083745 ], [ -95.783480100853396, 29.583977147355153 ], [ -95.783404101031692, 29.58394814669461 ], [ -95.783209100941306, 29.583889147291035 ], [ -95.783130101570592, 29.583870146602198 ], [ -95.782805100900248, 29.583818146668797 ], [ -95.782600101115037, 29.583796146795564 ], [ -95.782401100874281, 29.583750146905437 ], [ -95.782246100795859, 29.583699146799137 ], [ -95.781907100741464, 29.583567146822528 ], [ -95.781725100622168, 29.583481146669634 ], [ -95.781649100581404, 29.583454146980326 ], [ -95.781268100906189, 29.583342146794234 ], [ -95.78112210052052, 29.58327314715531 ], [ -95.781053100131203, 29.583234147414394 ], [ -95.780821100444371, 29.583084147030252 ], [ -95.780726100846621, 29.583014146649493 ], [ -95.780636100441214, 29.582940146982338 ], [ -95.780468100012243, 29.58278114728785 ], [ -95.780369100811015, 29.582665147019711 ], [ -95.780214100727264, 29.582452146869421 ], [ -95.780175099834096, 29.582389147038739 ], [ -95.780090099926468, 29.582171146889433 ], [ -95.780082099763149, 29.582150146342908 ], [ -95.780038100276016, 29.581973146879555 ], [ -95.780007100534107, 29.581869146969339 ], [ -95.779986100474602, 29.581762146474745 ], [ -95.779951100385105, 29.581746146331437 ], [ -95.779313099833772, 29.581448146238721 ], [ -95.779035099494124, 29.581206147051414 ], [ -95.778833099428383, 29.581107146412023 ], [ -95.778761100216158, 29.581015146565232 ], [ -95.77866310000212, 29.581069146706465 ], [ -95.77834209923877, 29.581239147085203 ], [ -95.77803409999197, 29.581404147088627 ], [ -95.777993099292217, 29.581417146422329 ], [ -95.77794609941833, 29.581431146656346 ], [ -95.777832099574994, 29.581442146546966 ], [ -95.777738099519496, 29.581431146686572 ], [ -95.777675099798344, 29.58140414642979 ], [ -95.777593099404839, 29.581338146745345 ], [ -95.777537099604857, 29.581250146625489 ], [ -95.777443100004476, 29.581063146523679 ], [ -95.777191099030318, 29.580673146874613 ], [ -95.777153099288014, 29.580530146121419 ], [ -95.777141099725256, 29.580436146570268 ], [ -95.777166099880588, 29.579865146000326 ], [ -95.777204099746029, 29.579535146443174 ], [ -95.777272099285369, 29.579316146714582 ], [ -95.777632099256721, 29.578150145808209 ], [ -95.7777140989337, 29.578040146314386 ], [ -95.77797809979279, 29.577875146085905 ], [ -95.778343099939079, 29.577688146010356 ], [ -95.779198100209172, 29.577117145918923 ], [ -95.780167099647528, 29.576501145440847 ], [ -95.780594099725633, 29.57617714534635 ], [ -95.78060709961315, 29.576144145408616 ], [ -95.780613100270472, 29.57608414585496 ], [ -95.780570100200933, 29.574918145410308 ], [ -95.780551099874899, 29.57374214544506 ], [ -95.780570100381681, 29.573330145138321 ], [ -95.780601099910569, 29.573209144620815 ], [ -95.780809099559519, 29.572895144749889 ], [ -95.780834099856591, 29.572835144811183 ], [ -95.78085310020947, 29.572703144991056 ], [ -95.780828100468142, 29.572615144771763 ], [ -95.780765099589345, 29.572494144612627 ], [ -95.780375099641603, 29.57179114437146 ], [ -95.780231100142899, 29.57146614428942 ], [ -95.780187100066996, 29.571318144502349 ], [ -95.780228099819738, 29.571275144279664 ], [ -95.780145099467077, 29.571185144672601 ], [ -95.780016099484214, 29.571047144848798 ], [ -95.779852099596681, 29.570875144610639 ], [ -95.776263099404204, 29.574168145504018 ], [ -95.776113099252228, 29.574306145297797 ], [ -95.775692099273414, 29.574602145060719 ], [ -95.774990098668212, 29.574963145545563 ], [ -95.774184098110766, 29.575204145129835 ], [ -95.773572097996876, 29.575297145623708 ], [ -95.772903097909179, 29.575301145644303 ], [ -95.772482097702309, 29.576021145479235 ], [ -95.771876097881332, 29.5769091460289 ], [ -95.771628097458489, 29.577313146445107 ], [ -95.771335098289256, 29.577660145811944 ], [ -95.770846097774111, 29.57813214610109 ], [ -95.770497097308763, 29.578404146281329 ], [ -95.77012109758796, 29.578626146646087 ], [ -95.768990097631672, 29.579161146235272 ], [ -95.767796096789226, 29.579675146493088 ], [ -95.767563097313698, 29.579743147129633 ], [ -95.767068096381578, 29.579945146987473 ], [ -95.766274096607162, 29.580273147013788 ], [ -95.765467096709216, 29.58056914708434 ], [ -95.764653096656886, 29.580873147175442 ], [ -95.763858096363975, 29.581216147478042 ], [ -95.7630500963202, 29.581533147285562 ], [ -95.762263095222963, 29.581813147701205 ], [ -95.761428095230158, 29.582131146997707 ], [ -95.760637094870702, 29.582402147703888 ], [ -95.759843095293746, 29.582716147742616 ], [ -95.759511094926623, 29.582879148013323 ], [ -95.759197094902447, 29.583063147946369 ], [ -95.758994095356925, 29.583178147944533 ], [ -95.758792095032106, 29.583321147620286 ], [ -95.758393094668321, 29.583536148117915 ], [ -95.758497095262612, 29.583652147398631 ], [ -95.758583095230307, 29.583763147664207 ], [ -95.758652095012394, 29.583844148090467 ], [ -95.758848095044087, 29.584132148039448 ], [ -95.758865094490048, 29.584162147768787 ], [ -95.75893609455774, 29.584352147967735 ], [ -95.758937095133447, 29.584452148041901 ], [ -95.758954094460975, 29.584623147589884 ], [ -95.758984095200091, 29.584870148493749 ], [ -95.758987095283842, 29.584905148000487 ], [ -95.759002095098836, 29.585092148532564 ], [ -95.759010094839155, 29.585194147773503 ], [ -95.759012094857596, 29.585338148507315 ], [ -95.759003095370488, 29.585446148079463 ], [ -95.758991095167701, 29.585517147930506 ], [ -95.758947094523137, 29.585693148481315 ], [ -95.758913095509016, 29.585797148488851 ], [ -95.758849095192716, 29.58593014840562 ], [ -95.758812094766085, 29.585995148448593 ], [ -95.758801095406866, 29.586029148032686 ], [ -95.75877909479172, 29.58613614838125 ], [ -95.758740094594117, 29.586238147913139 ], [ -95.758703095018546, 29.586303147946463 ], [ -95.75863709477396, 29.58639414831763 ], [ -95.75855709495805, 29.586477148005464 ], [ -95.758468094788782, 29.586552148078912 ], [ -95.758402094847455, 29.586596148114733 ], [ -95.758332094503032, 29.586634148054078 ], [ -95.75826509522318, 29.586676148878592 ], [ -95.758022094956161, 29.586872148511983 ], [ -95.757652094534805, 29.587180148852323 ], [ -95.757558094701338, 29.587251148606892 ], [ -95.757499094220279, 29.58730114878216 ], [ -95.757387094789578, 29.58740714891584 ], [ -95.757288094236557, 29.58752214905353 ], [ -95.757091094988013, 29.587707149001311 ], [ -95.757000094827291, 29.587780149087386 ], [ -95.756861094518158, 29.58791314863425 ], [ -95.75678809479821, 29.588022149038959 ], [ -95.756639094848765, 29.588195149161912 ], [ -95.756596094401203, 29.588257149061135 ], [ -95.756326094132888, 29.588703149057906 ], [ -95.756126094541472, 29.589138148854353 ], [ -95.756014094115756, 29.589410149255301 ], [ -95.755991094383077, 29.58947914907219 ], [ -95.755849094635124, 29.59000514878576 ], [ -95.755792094116856, 29.590290149103595 ], [ -95.755634094417559, 29.591399149514046 ], [ -95.755619093945938, 29.59154314950321 ], [ -95.755609094163503, 29.59194014994408 ], [ -95.755613094869261, 29.59204814949517 ], [ -95.755639094124305, 29.592307149808367 ], [ -95.75566009480778, 29.592515150129369 ], [ -95.755695094473353, 29.592765149337026 ], [ -95.755752094186363, 29.59305014938672 ], [ -95.755907094222962, 29.593685149980022 ], [ -95.756191094868896, 29.594663150537624 ], [ -95.756392095073949, 29.595400150142854 ], [ -95.756661094576458, 29.596640150725925 ], [ -95.756894094773457, 29.597776150992317 ], [ -95.756982094629308, 29.598421150833033 ], [ -95.757044095430544, 29.599140151275094 ], [ -95.757016094686733, 29.599609151396709 ], [ -95.757004095312212, 29.599716150860214 ], [ -95.757014095429568, 29.600149151460915 ], [ -95.757054095239852, 29.600246151217643 ], [ -95.757077095140829, 29.600352151371983 ], [ -95.757094095411887, 29.600495151432888 ], [ -95.757089095564268, 29.600639151771126 ], [ -95.757102094755894, 29.600819151432802 ], [ -95.757114094854145, 29.600891151491318 ], [ -95.757150095581807, 29.601031151440949 ], [ -95.757149095582818, 29.601067151487761 ], [ -95.757132095072492, 29.601137151549157 ], [ -95.75711009543086, 29.601280151310501 ], [ -95.757098095590123, 29.601533151476641 ], [ -95.757099094941879, 29.601605151150327 ], [ -95.757071094852847, 29.601820151492401 ], [ -95.757028095010028, 29.60199615179458 ], [ -95.757006095273624, 29.602066151604401 ], [ -95.756918094918646, 29.60226815127367 ], [ -95.756867095154902, 29.602366151264924 ], [ -95.756722095411675, 29.602476151963941 ], [ -95.756623095298409, 29.602551152199656 ], [ -95.756456094854343, 29.60273515182833 ], [ -95.756315095345542, 29.602890151479368 ], [ -95.756261094893873, 29.602945151922292 ], [ -95.756056094610827, 29.603123151658274 ], [ -95.755929094980885, 29.603215152040125 ], [ -95.754926095192346, 29.603850152068105 ], [ -95.754790094733764, 29.603932152350684 ], [ -95.754597094878207, 29.603993152446176 ], [ -95.754522094465088, 29.604023152153552 ], [ -95.754450094733613, 29.604058151987431 ], [ -95.754106094326858, 29.604257152036581 ], [ -95.753722094431751, 29.604531152052477 ], [ -95.753549094460652, 29.604630152240052 ], [ -95.753399094047097, 29.604690152282942 ], [ -95.75323709473895, 29.604802152211281 ], [ -95.753207094631236, 29.604827152354648 ], [ -95.753128094271062, 29.604910152395465 ], [ -95.753012094298668, 29.605059152725396 ], [ -95.752793094612983, 29.605406152077038 ], [ -95.752653094376996, 29.605668152941561 ], [ -95.752462094575293, 29.606106152454142 ], [ -95.752427094655019, 29.606210152531798 ], [ -95.752390094514013, 29.606497152635313 ], [ -95.752380093842802, 29.60667715314278 ], [ -95.752387094329762, 29.606785153094862 ], [ -95.752417094751607, 29.60700015311178 ], [ -95.752505094598646, 29.607389152609645 ], [ -95.752573094455116, 29.6075971525987 ], [ -95.752734094684143, 29.60804415293368 ], [ -95.752798094629043, 29.60817715308518 ], [ -95.752891094328405, 29.608338152956712 ], [ -95.752951094343899, 29.608433153343896 ], [ -95.753000094328172, 29.608491153041786 ], [ -95.753163094922584, 29.608654152906578 ], [ -95.753373094474867, 29.608828153143371 ], [ -95.75346809452995, 29.608897153359074 ], [ -95.753689095153163, 29.609006152842237 ], [ -95.754435094805203, 29.609303152884774 ], [ -95.75507909547251, 29.609467153409977 ], [ -95.755426095239073, 29.609556152826819 ], [ -95.755668095038601, 29.609601152845165 ], [ -95.756731095420406, 29.609739152818893 ], [ -95.757004095325144, 29.609758152860913 ], [ -95.757636095907984, 29.609803152759877 ], [ -95.757719095362646, 29.60980515319989 ], [ -95.757884096250891, 29.609801153347362 ], [ -95.758131096036266, 29.609786153262778 ], [ -95.758295095867624, 29.609764153104841 ], [ -95.758308096009699, 29.609763152960564 ], [ -95.758377096039794, 29.60976115281948 ], [ -95.758460095765415, 29.609764152902645 ], [ -95.758994096114222, 29.609807153037607 ], [ -95.759572096474102, 29.609816152827104 ], [ -95.759902096717241, 29.609814153399867 ], [ -95.760723096931315, 29.609733153259644 ], [ -95.76101109673786, 29.609714152622864 ], [ -95.76196009726975, 29.609674153163475 ], [ -95.762991097093291, 29.609623153037006 ], [ -95.763732097244954, 29.609567152899164 ], [ -95.764141097212516, 29.609520153163231 ], [ -95.764345097419735, 29.609490152767908 ], [ -95.764587097914827, 29.609446152572925 ], [ -95.765644098054665, 29.609278153177421 ], [ -95.766993097718128, 29.609113153158859 ], [ -95.767240097741194, 29.609097152492453 ], [ -95.767694097759986, 29.609084152874932 ], [ -95.767899098818461, 29.60906215307697 ], [ -95.768023098093011, 29.609066152963852 ], [ -95.768105098251667, 29.609063153056159 ], [ -95.7682290979062, 29.609052152262315 ], [ -95.768310098792526, 29.609040152525743 ], [ -95.768557098120283, 29.609055152314962 ], [ -95.768681098888791, 29.609055153059806 ], [ -95.769052098203062, 29.609034152797836 ], [ -95.769427098741957, 29.609005152599909 ], [ -95.769715098840237, 29.609028152579725 ], [ -95.769826098636727, 29.609029152589351 ], [ -95.770003098539149, 29.609032152867474 ], [ -95.770251098965389, 29.609027152877733 ], [ -95.770497098623551, 29.609002152825322 ], [ -95.771310098778685, 29.608875152481378 ], [ -95.771351099378663, 29.608880152145112 ], [ -95.77163109882629, 29.60894315270971 ], [ -95.771792099216441, 29.608974152591465 ], [ -95.772032099346035, 29.609027152101934 ], [ -95.772271099888741, 29.609085152797348 ], [ -95.772940099306368, 29.609271152807061 ], [ -95.773875099380248, 29.609558152319909 ], [ -95.774388099526959, 29.609697152996009 ], [ -95.774747100120848, 29.609781152449038 ], [ -95.774950100315905, 29.609812152642174 ], [ -95.775029100264149, 29.609832152290281 ], [ -95.775122100338237, 29.609863152752986 ], [ -95.77549110045247, 29.609897152833657 ], [ -95.775573100161708, 29.609908152318095 ], [ -95.775931100302728, 29.609994152603946 ], [ -95.776009099917871, 29.61001915238818 ], [ -95.776128100109958, 29.610063152488554 ], [ -95.776161100483222, 29.610075152600245 ], [ -95.776730100366308, 29.610160152608305 ], [ -95.777220100539466, 29.610223152611219 ], [ -95.777508100599277, 29.61024715292934 ], [ -95.778044100601974, 29.610273152295427 ], [ -95.778251101462203, 29.610273152496433 ], [ -95.778374100594291, 29.610269152238029 ], [ -95.778457101189105, 29.610262152548113 ], [ -95.778661101031815, 29.610234152237616 ], [ -95.778903101459264, 29.610190152444623 ], [ -95.779063101599618, 29.610154152131905 ], [ -95.779225101768162, 29.610123152387963 ], [ -95.779464101718702, 29.610068152384589 ], [ -95.779702101074065, 29.610008152698484 ], [ -95.779932101440167, 29.609928152344065 ], [ -95.780182101880825, 29.609801152058349 ], [ -95.780351101323134, 29.609697152137016 ], [ -95.780523102050438, 29.609597152376679 ], [ -95.78069810148601, 29.609502152793979 ], [ -95.780899101865458, 29.609376152038507 ], [ -95.781460101251071, 29.609071152483502 ], [ -95.781760102166103, 29.608879152039886 ], [ -95.781988102091688, 29.608723151925542 ], [ -95.782168101969106, 29.608620151771238 ], [ -95.782196101938112, 29.608604152169011 ], [ -95.782214102335743, 29.608592152534907 ], [ -95.782462101599521, 29.60843315214289 ], [ -95.782558102317708, 29.608365151982944 ], [ -95.782826102143659, 29.608139151967396 ], [ -95.783224102264057, 29.607825152290609 ], [ -95.78342910262586, 29.607647151765235 ], [ -95.783512102604718, 29.60756715232742 ], [ -95.78369910178688, 29.607374151459275 ], [ -95.783891102634968, 29.607185151779476 ], [ -95.784286102380051, 29.606769151667969 ], [ -95.784458102714723, 29.606613151862948 ], [ -95.78464010265489, 29.606417151157089 ], [ -95.78495910292105, 29.606085151755071 ], [ -95.785119102357328, 29.605896151321012 ], [ -95.78525510290541, 29.605738151837233 ], [ -95.785298102907547, 29.605677151423642 ], [ -95.785353102398091, 29.605580151732926 ], [ -95.785449102269666, 29.605380151175236 ], [ -95.785519103001448, 29.605211151512322 ], [ -95.785554102265763, 29.605145151504892 ], [ -95.785844102726955, 29.604708151501121 ], [ -95.786113102992232, 29.604345151362811 ], [ -95.786228103231991, 29.604153150663105 ], [ -95.786312102460087, 29.603988151426019 ], [ -95.786384102479317, 29.60385915059873 ], [ -95.786589102383203, 29.603588150515822 ], [ -95.786734103236668, 29.603329150814485 ], [ -95.786858102359488, 29.603061151234023 ], [ -95.786908102886002, 29.602924150899749 ], [ -95.786966102816152, 29.602789150576982 ], [ -95.78712810269802, 29.602342150835906 ], [ -95.787258102595416, 29.602076150743159 ], [ -95.787286103048672, 29.602051150212976 ], [ -95.787803102735822, 29.601754150455616 ], [ -95.787945103415012, 29.601679150957427 ], [ -95.788155103564975, 29.601584150929991 ], [ -95.788495103409517, 29.601431150094033 ], [ -95.789091102877734, 29.601181150532678 ], [ -95.789298103329031, 29.60106315050103 ], [ -95.789398103211454, 29.600999150763226 ], [ -95.789591103377418, 29.600811150088013 ], [ -95.789796103039265, 29.600633150035371 ], [ -95.789935103597372, 29.600500149781983 ], [ -95.789987103643597, 29.600444150382117 ], [ -95.790055103746425, 29.60035314988086 ], [ -95.790295103777879, 29.599975150294597 ], [ -95.790469103956653, 29.599648150265992 ], [ -95.7905631034522, 29.599447150411223 ], [ -95.790602103672754, 29.599352149508903 ], [ -95.790731103961662, 29.598972149784238 ], [ -95.790770103372765, 29.598795149513979 ], [ -95.790869103294114, 29.597933149923609 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1647, "Tract": "48157675000", "Area_SqMi": 1.6237660768850077, "total_2009": 1125, "total_2010": 1173, "total_2011": 1080, "total_2012": 5371, "total_2013": 5298, "total_2014": 5367, "total_2015": 5516, "total_2016": 5954, "total_2017": 6573, "total_2018": 6828, "total_2019": 7118, "total_2020": 6730, "age1": 1029, "age2": 4890, "age3": 1839, "earn1": 952, "earn2": 2409, "earn3": 4397, "naics_s01": 0, "naics_s02": 0, "naics_s03": 21, "naics_s04": 55, "naics_s05": 66, "naics_s06": 21, "naics_s07": 450, "naics_s08": 2, "naics_s09": 36, "naics_s10": 54, "naics_s11": 36, "naics_s12": 64, "naics_s13": 0, "naics_s14": 22, "naics_s15": 6542, "naics_s16": 111, "naics_s17": 14, "naics_s18": 221, "naics_s19": 42, "naics_s20": 1, "race1": 5916, "race2": 1404, "race3": 51, "race4": 277, "race5": 8, "race6": 102, "ethnicity1": 5214, "ethnicity2": 2544, "edu1": 1173, "edu2": 1666, "edu3": 1974, "edu4": 1916, "Shape_Length": 34435.251448247174, "Shape_Area": 45267819.12013866, "total_2021": 7288, "total_2022": 7758 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.810429106991734, 29.567003142700546 ], [ -95.810424107084103, 29.566916142630365 ], [ -95.810352106927525, 29.56667014285696 ], [ -95.810228106976638, 29.566248142867575 ], [ -95.810130106834194, 29.56537814236513 ], [ -95.810100107336439, 29.564467142173374 ], [ -95.810042106881468, 29.563037141796439 ], [ -95.81001110663739, 29.561750141323937 ], [ -95.809978107038418, 29.561094141611875 ], [ -95.809974107281533, 29.560923141064848 ], [ -95.809968107245382, 29.560622140976562 ], [ -95.809965106536808, 29.560470141668787 ], [ -95.809940106365843, 29.559253141249002 ], [ -95.809925106563526, 29.558194141339776 ], [ -95.809389106614418, 29.558200140616247 ], [ -95.808821106156742, 29.55822814075858 ], [ -95.808304106110228, 29.558250141098807 ], [ -95.807750105991218, 29.558255140991282 ], [ -95.807233106493229, 29.558273141343943 ], [ -95.806692105862126, 29.558294140952199 ], [ -95.806159105561505, 29.558309141123143 ], [ -95.805615105615914, 29.558325140996811 ], [ -95.805085105776556, 29.558330140809606 ], [ -95.804556104987483, 29.558332141345868 ], [ -95.804018105163294, 29.55833614155117 ], [ -95.803498105085879, 29.558347140857226 ], [ -95.802933104667616, 29.558375140826104 ], [ -95.802419104618082, 29.558382140895755 ], [ -95.801874104998745, 29.558391141615079 ], [ -95.801374105130165, 29.558388141146903 ], [ -95.799948104579926, 29.558413141548172 ], [ -95.79853610394035, 29.558436141286883 ], [ -95.798351104125018, 29.558436141557703 ], [ -95.797214103248464, 29.558446141102642 ], [ -95.795684103375535, 29.558505141455587 ], [ -95.795261102638733, 29.558522141744721 ], [ -95.794487103156499, 29.55853014123154 ], [ -95.793821103188463, 29.558561141785109 ], [ -95.793822103175941, 29.558470141420138 ], [ -95.79382510278009, 29.557911141794989 ], [ -95.793822102438781, 29.557830141275982 ], [ -95.793813102593575, 29.55748414126851 ], [ -95.793812103057135, 29.557445141422146 ], [ -95.79367210218534, 29.557433141412805 ], [ -95.793533103011953, 29.557423141101289 ], [ -95.792987102931576, 29.557417141411733 ], [ -95.792696102595926, 29.557441141357387 ], [ -95.792445102188395, 29.557536141331131 ], [ -95.792240102122022, 29.557607141559011 ], [ -95.791864102594317, 29.557740141685905 ], [ -95.791336102137933, 29.557740141654019 ], [ -95.790878101651955, 29.557768141435439 ], [ -95.790545101489542, 29.557788141214349 ], [ -95.790382101865816, 29.557783141622178 ], [ -95.78985210184851, 29.557796141398843 ], [ -95.789388101195001, 29.557810141401085 ], [ -95.788841100889215, 29.557817141836917 ], [ -95.788541101295877, 29.557826141757033 ], [ -95.787891100873793, 29.557828141102597 ], [ -95.786874100537219, 29.557831141447426 ], [ -95.786790100647522, 29.557831141449487 ], [ -95.784783100040187, 29.55794514138578 ], [ -95.783971100619524, 29.557953142066054 ], [ -95.783478099586247, 29.557957141664055 ], [ -95.78333110009028, 29.557962142030512 ], [ -95.783359100394023, 29.559148142247427 ], [ -95.783365100111297, 29.560825142683282 ], [ -95.78337109984659, 29.561198142239906 ], [ -95.783383099697048, 29.562029142591157 ], [ -95.783346100474134, 29.562408142851595 ], [ -95.783358099818855, 29.562518142835771 ], [ -95.783383100300597, 29.562606142803709 ], [ -95.783421099731996, 29.562666142996733 ], [ -95.783635100416745, 29.563156142559812 ], [ -95.783992100927847, 29.56383714250283 ], [ -95.784910100267865, 29.565591142897595 ], [ -95.785070101080237, 29.565841143525454 ], [ -95.785188100881669, 29.56602514324706 ], [ -95.783811100886737, 29.567264143563751 ], [ -95.783001100143451, 29.567977143614257 ], [ -95.779901099869718, 29.570831144747725 ], [ -95.779852099596681, 29.570875144610639 ], [ -95.780016099484214, 29.571047144848798 ], [ -95.780145099467077, 29.571185144672601 ], [ -95.780228099819738, 29.571275144279664 ], [ -95.780187100066996, 29.571318144502349 ], [ -95.780231100142899, 29.57146614428942 ], [ -95.780375099641603, 29.57179114437146 ], [ -95.780765099589345, 29.572494144612627 ], [ -95.780828100468142, 29.572615144771763 ], [ -95.78085310020947, 29.572703144991056 ], [ -95.780834099856591, 29.572835144811183 ], [ -95.780809099559519, 29.572895144749889 ], [ -95.780601099910569, 29.573209144620815 ], [ -95.780570100381681, 29.573330145138321 ], [ -95.780551099874899, 29.57374214544506 ], [ -95.780570100200933, 29.574918145410308 ], [ -95.780613100270472, 29.57608414585496 ], [ -95.78060709961315, 29.576144145408616 ], [ -95.780594099725633, 29.57617714534635 ], [ -95.780167099647528, 29.576501145440847 ], [ -95.779198100209172, 29.577117145918923 ], [ -95.778343099939079, 29.577688146010356 ], [ -95.77797809979279, 29.577875146085905 ], [ -95.7777140989337, 29.578040146314386 ], [ -95.777632099256721, 29.578150145808209 ], [ -95.777272099285369, 29.579316146714582 ], [ -95.777204099746029, 29.579535146443174 ], [ -95.777166099880588, 29.579865146000326 ], [ -95.777141099725256, 29.580436146570268 ], [ -95.777153099288014, 29.580530146121419 ], [ -95.777191099030318, 29.580673146874613 ], [ -95.777443100004476, 29.581063146523679 ], [ -95.777537099604857, 29.581250146625489 ], [ -95.777593099404839, 29.581338146745345 ], [ -95.777675099798344, 29.58140414642979 ], [ -95.777738099519496, 29.581431146686572 ], [ -95.777832099574994, 29.581442146546966 ], [ -95.77794609941833, 29.581431146656346 ], [ -95.777993099292217, 29.581417146422329 ], [ -95.77803409999197, 29.581404147088627 ], [ -95.77834209923877, 29.581239147085203 ], [ -95.77866310000212, 29.581069146706465 ], [ -95.778761100216158, 29.581015146565232 ], [ -95.778833099428383, 29.581107146412023 ], [ -95.779035099494124, 29.581206147051414 ], [ -95.779313099833772, 29.581448146238721 ], [ -95.779951100385105, 29.581746146331437 ], [ -95.779986100474602, 29.581762146474745 ], [ -95.780023100585922, 29.581659147113776 ], [ -95.780053100420758, 29.581554146925022 ], [ -95.780093099861062, 29.581340146696778 ], [ -95.780133100438377, 29.581200146436945 ], [ -95.780192100243568, 29.581066146450176 ], [ -95.780277100272002, 29.58090114646042 ], [ -95.780333100454442, 29.580766146321238 ], [ -95.780400100518023, 29.580634146744945 ], [ -95.780564099918621, 29.580384146087237 ], [ -95.780630100678593, 29.58029214608807 ], [ -95.780678099928608, 29.58023314655944 ], [ -95.780835100125543, 29.580066146754085 ], [ -95.781179100189874, 29.579755145953825 ], [ -95.781781100744084, 29.579261145803141 ], [ -95.781940100210463, 29.579146146443652 ], [ -95.783129100450466, 29.578198145558783 ], [ -95.784151101279448, 29.577410145331143 ], [ -95.78534210179663, 29.576518145507396 ], [ -95.785506101164742, 29.57640914544444 ], [ -95.785754101259016, 29.576218145728078 ], [ -95.785922101731984, 29.576059145314009 ], [ -95.786107101193338, 29.575979145591667 ], [ -95.786177101592742, 29.575942145092238 ], [ -95.786721101300103, 29.575614144896068 ], [ -95.787861102379694, 29.574963145364471 ], [ -95.78814310154452, 29.574810144637528 ], [ -95.788458101980041, 29.574640145190756 ], [ -95.788683101748546, 29.574536145135902 ], [ -95.789159102697027, 29.574319145326271 ], [ -95.789428102682933, 29.574229144673307 ], [ -95.789504102507365, 29.574200144641377 ], [ -95.789688102756315, 29.574119144885454 ], [ -95.789971102768035, 29.573970144947879 ], [ -95.790530102901315, 29.573737144986563 ], [ -95.790758102398357, 29.573652144923315 ], [ -95.790878102871091, 29.573625144893164 ], [ -95.790956103052267, 29.573603144881972 ], [ -95.791080103024498, 29.573560144316758 ], [ -95.791686103057245, 29.573352144945346 ], [ -95.794416102953875, 29.572274144297339 ], [ -95.79458210368017, 29.572209144055318 ], [ -95.795231103582651, 29.571892144407862 ], [ -95.795343103280956, 29.571847143786151 ], [ -95.795544103902557, 29.571803144439475 ], [ -95.795659103343922, 29.571765143886097 ], [ -95.795770103653027, 29.571716143861916 ], [ -95.795951104132229, 29.571629144471718 ], [ -95.796621104237005, 29.571274143943079 ], [ -95.796857103646104, 29.571128144370288 ], [ -95.797022104532417, 29.571020143810681 ], [ -95.797382104129255, 29.570833143774433 ], [ -95.797518104503226, 29.570751143889705 ], [ -95.797801103808709, 29.570541143609848 ], [ -95.798056103921141, 29.570358143862972 ], [ -95.798148104298974, 29.570285144201641 ], [ -95.798232104646175, 29.57020614375244 ], [ -95.798265104392627, 29.570184143639466 ], [ -95.798319104548298, 29.570153143517071 ], [ -95.798370104823377, 29.570126144153456 ], [ -95.798514104394258, 29.57005614365195 ], [ -95.798684104240877, 29.569954143989232 ], [ -95.799404104409433, 29.569471143777857 ], [ -95.799755104402323, 29.569261143826505 ], [ -95.799916105149947, 29.569166143705782 ], [ -95.800012104365976, 29.569117143277136 ], [ -95.80041610455423, 29.568913142985558 ], [ -95.800528104727746, 29.568868143553139 ], [ -95.80067410472266, 29.568799143602764 ], [ -95.801059105147957, 29.56858914308015 ], [ -95.801178105391301, 29.568559143176987 ], [ -95.801295105129881, 29.568524143591837 ], [ -95.801446104806274, 29.568467143481556 ], [ -95.802093104873009, 29.568353143245801 ], [ -95.802138105405874, 29.56834614353291 ], [ -95.802947105831464, 29.568225143245595 ], [ -95.803220105026298, 29.568202143328595 ], [ -95.803523105945501, 29.5681771430236 ], [ -95.804246106280047, 29.568153143050846 ], [ -95.804356106187299, 29.56815014356647 ], [ -95.80472710547285, 29.568144143220803 ], [ -95.805304106335058, 29.568108143247901 ], [ -95.805368106430265, 29.56810514264399 ], [ -95.805630106438741, 29.568097142785327 ], [ -95.806211105990556, 29.568078143043945 ], [ -95.806542106359913, 29.568051142732305 ], [ -95.8067751062121, 29.568032143081219 ], [ -95.806900106755592, 29.568022143367372 ], [ -95.807197106182286, 29.567993142757143 ], [ -95.807437106340146, 29.567961142675994 ], [ -95.807482106786551, 29.567956143168065 ], [ -95.807604106465575, 29.56793514325221 ], [ -95.808351106478881, 29.567727142472883 ], [ -95.809012106560814, 29.567522143107141 ], [ -95.809300106808791, 29.567424142384084 ], [ -95.809551107510686, 29.567338143222795 ], [ -95.809790107373104, 29.567282142658332 ], [ -95.810034106718334, 29.567246142730554 ], [ -95.810111107307051, 29.567220142723304 ], [ -95.810147107616274, 29.567204142371295 ], [ -95.810237106894135, 29.567130142761663 ], [ -95.810429106991734, 29.567003142700546 ] ] ] } }, +{ "type": "Feature", "properties": { "OBJECTID": 1648, "Tract": "48157675200", "Area_SqMi": 2.3415389251797807, "total_2009": 2020, "total_2010": 2001, "total_2011": 2116, "total_2012": 1841, "total_2013": 1880, "total_2014": 1829, "total_2015": 2214, "total_2016": 2331, "total_2017": 2713, "total_2018": 2790, "total_2019": 2737, "total_2020": 2692, "age1": 587, "age2": 1561, "age3": 691, "earn1": 428, "earn2": 1109, "earn3": 1302, "naics_s01": 2, "naics_s02": 0, "naics_s03": 19, "naics_s04": 81, "naics_s05": 42, "naics_s06": 7, "naics_s07": 195, "naics_s08": 4, "naics_s09": 76, "naics_s10": 80, "naics_s11": 640, "naics_s12": 51, "naics_s13": 0, "naics_s14": 25, "naics_s15": 91, "naics_s16": 816, "naics_s17": 20, "naics_s18": 166, "naics_s19": 59, "naics_s20": 465, "race1": 2164, "race2": 467, "race3": 31, "race4": 134, "race5": 7, "race6": 36, "ethnicity1": 1731, "ethnicity2": 1108, "edu1": 448, "edu2": 628, "edu3": 737, "edu4": 439, "Shape_Length": 40543.675779487821, "Shape_Area": 65278097.65008945, "total_2021": 2688, "total_2022": 2839 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.808821106156742, 29.55822814075858 ], [ -95.808784106766197, 29.557223140306835 ], [ -95.808805106144362, 29.556179140703325 ], [ -95.808791106477202, 29.555888140677403 ], [ -95.808769106154386, 29.555127140155307 ], [ -95.808762106305707, 29.554806139933106 ], [ -95.808754106579968, 29.554060139898745 ], [ -95.80875310664463, 29.553765139964611 ], [ -95.808731106780158, 29.553093139547361 ], [ -95.808731106409738, 29.552726140200537 ], [ -95.808720105898018, 29.55207713987306 ], [ -95.808707106281048, 29.551096139891911 ], [ -95.808671106216238, 29.550657138967189 ], [ -95.80866110569427, 29.550116139296605 ], [ -95.808649105670938, 29.549354138927253 ], [ -95.808644106121491, 29.549129139408148 ], [ -95.808607106384216, 29.547283138550242 ], [ -95.80858210634797, 29.546243138657264 ], [ -95.808601105507606, 29.545930138081999 ], [ -95.808509105531328, 29.54415713824844 ], [ -95.808514105784297, 29.54339313804136 ], [ -95.808473105464429, 29.542786137504869 ], [ -95.808473105339701, 29.542061138015324 ], [ -95.808451105200689, 29.541602137901268 ], [ -95.808453105996207, 29.540677137252029 ], [ -95.808394105338593, 29.539603136781327 ], [ -95.808376105387907, 29.539150136798103 ], [ -95.808286105031911, 29.536403136582841 ], [ -95.808257105063632, 29.535515135992465 ], [ -95.808251105216087, 29.534232136354113 ], [ -95.808144105723841, 29.532551135607406 ], [ -95.808137105156874, 29.532312135674715 ], [ -95.807736105278209, 29.532322135971597 ], [ -95.807378105307762, 29.532323135592357 ], [ -95.804630104643493, 29.532414135865903 ], [ -95.801018103210154, 29.53253213586056 ], [ -95.800357102730274, 29.532554135695889 ], [ -95.793234101179749, 29.532792136645849 ], [ -95.788203100581285, 29.532961136182621 ], [ -95.786629100099134, 29.533021136240738 ], [ -95.783467098456256, 29.533230136294044 ], [ -95.781735098539031, 29.533451136489415 ], [ -95.780085098186746, 29.53367013666389 ], [ -95.778179097848081, 29.534080137090108 ], [ -95.777577096978547, 29.534242137354404 ], [ -95.776351097250298, 29.534571137088207 ], [ -95.776203096770885, 29.534870137393128 ], [ -95.775888097055798, 29.535479137297191 ], [ -95.775705096928064, 29.535807137448643 ], [ -95.775606097422084, 29.535994137778545 ], [ -95.775511097239715, 29.536172137837465 ], [ -95.774937097153469, 29.537325137966402 ], [ -95.774230097252556, 29.538748137843825 ], [ -95.772230096948391, 29.542772138718963 ], [ -95.772120096473387, 29.542994139171775 ], [ -95.772870096379521, 29.542980138805842 ], [ -95.779407098273751, 29.542855138362778 ], [ -95.780522098804354, 29.542834138891742 ], [ -95.782216099476599, 29.542785138234546 ], [ -95.783143098979835, 29.542775138422364 ], [ -95.783593099882467, 29.542790138435215 ], [ -95.783887099232359, 29.542768138541227 ], [ -95.784008099455178, 29.542748138505701 ], [ -95.78732610078066, 29.542683138177608 ], [ -95.787705100735351, 29.542675138223235 ], [ -95.788235100198889, 29.542660138637551 ], [ -95.78877210117102, 29.542645138118726 ], [ -95.78959810062571, 29.542628138611942 ], [ -95.790336101005323, 29.542616137942687 ], [ -95.791053101130146, 29.542604138301353 ], [ -95.792594101199768, 29.542581138071814 ], [ -95.793349101901626, 29.542565138244377 ], [ -95.793525102409191, 29.542564138175699 ], [ -95.793515101886527, 29.542823137880983 ], [ -95.79352510230585, 29.543037138725929 ], [ -95.793515101594963, 29.543346138095803 ], [ -95.793520102385656, 29.54359013852569 ], [ -95.793523101880922, 29.543810138144607 ], [ -95.79353210205177, 29.544424138605947 ], [ -95.793532101785615, 29.544955138552208 ], [ -95.793532102481521, 29.545716139288107 ], [ -95.793531101857795, 29.546976139441021 ], [ -95.79353410223068, 29.547134138951446 ], [ -95.793555102171567, 29.548072139068587 ], [ -95.793556102128662, 29.548444139288517 ], [ -95.793553102499132, 29.548527139836668 ], [ -95.793564101939751, 29.548942139527121 ], [ -95.793565102244543, 29.549159139387097 ], [ -95.793572102666261, 29.550272139638238 ], [ -95.793579102106222, 29.550721139642217 ], [ -95.793581102772706, 29.551142139682632 ], [ -95.793586102226655, 29.551566139680517 ], [ -95.793585102095719, 29.552065140503132 ], [ -95.793960102462165, 29.552057139846813 ], [ -95.793994102166522, 29.554227140227038 ], [ -95.794061102860766, 29.556107140984391 ], [ -95.794093102965746, 29.557414141429408 ], [ -95.793812103057135, 29.557445141422146 ], [ -95.793813102593575, 29.55748414126851 ], [ -95.793822102438781, 29.557830141275982 ], [ -95.79382510278009, 29.557911141794989 ], [ -95.793822103175941, 29.558470141420138 ], [ -95.793821103188463, 29.558561141785109 ], [ -95.794487103156499, 29.55853014123154 ], [ -95.795261102638733, 29.558522141744721 ], [ -95.795684103375535, 29.558505141455587 ], [ -95.797214103248464, 29.558446141102642 ], [ -95.798351104125018, 29.558436141557703 ], [ -95.79853610394035, 29.558436141286883 ], [ -95.799948104579926, 29.558413141548172 ], [ -95.801374105130165, 29.558388141146903 ], [ -95.801874104998745, 29.558391141615079 ], [ -95.802419104618082, 29.558382140895755 ], [ -95.802933104667616, 29.558375140826104 ], [ -95.803498105085879, 29.558347140857226 ], [ -95.804018105163294, 29.55833614155117 ], [ -95.804556104987483, 29.558332141345868 ], [ -95.805085105776556, 29.558330140809606 ], [ -95.805615105615914, 29.558325140996811 ], [ -95.806159105561505, 29.558309141123143 ], [ -95.806692105862126, 29.558294140952199 ], [ -95.807233106493229, 29.558273141343943 ], [ -95.807750105991218, 29.558255140991282 ], [ -95.808304106110228, 29.558250141098807 ], [ -95.808821106156742, 29.55822814075858 ] ] ] } } +] +} diff --git a/public/storybook/roster-100.json b/public/storybook/roster-100.json new file mode 100644 index 000000000..3530c9d5a --- /dev/null +++ b/public/storybook/roster-100.json @@ -0,0 +1 @@ +{"nodes":[{"attributes":{"name":"Moses Crist","age":21,"location":"New Haven"}},{"attributes":{"name":"Warren Effertz","age":29,"location":"New Hollie"}},{"attributes":{"name":"Brody Hilll","age":67,"location":"New Larryton"}},{"attributes":{"name":"Dr. Arthur Wintheiser","age":61,"location":"Bonitamouth"}},{"attributes":{"name":"Destinee Hahn","age":52,"location":"Fort Opheliashire"}},{"attributes":{"name":"Theodora Dietrich","age":38,"location":"West Rhoda"}},{"attributes":{"name":"Lana Schmitt","age":80,"location":"Donnellytown"}},{"attributes":{"name":"Montana Blanda","age":25,"location":"North Miami Beach"}},{"attributes":{"name":"Faye Renner","age":73,"location":"Blakecester"}},{"attributes":{"name":"Ole Ledner","age":19,"location":"North Louieborough"}},{"attributes":{"name":"Delphia Roob","age":22,"location":"East Toby"}},{"attributes":{"name":"Saul Dibbert IV","age":68,"location":"Fontana"}},{"attributes":{"name":"Jeannie Stoltenberg","age":50,"location":"Daltonland"}},{"attributes":{"name":"Enola Prosacco","age":79,"location":"Downey"}},{"attributes":{"name":"Erin Monahan","age":21,"location":"Fort Dawn"}},{"attributes":{"name":"Wendy Osinski","age":32,"location":"Hilllfurt"}},{"attributes":{"name":"Blake Hammes","age":20,"location":"Marianotown"}},{"attributes":{"name":"Marc Pollich","age":77,"location":"West Berylshire"}},{"attributes":{"name":"Marlon Luettgen","age":33,"location":"Fort Stephanfurt"}},{"attributes":{"name":"Dr. Muriel Torphy","age":28,"location":"Newport Beach"}},{"attributes":{"name":"Marlene Crooks","age":61,"location":"Faheycester"}},{"attributes":{"name":"Nicole Stanton","age":53,"location":"West Dillonburgh"}},{"attributes":{"name":"Steve Schimmel","age":54,"location":"Cleoracester"}},{"attributes":{"name":"Margie Weimann DVM","age":41,"location":"Fort Hilbertworth"}},{"attributes":{"name":"Eldridge Stark","age":28,"location":"Tremaynecester"}},{"attributes":{"name":"Lloyd Connelly-Leannon DDS","age":61,"location":"Hesselboro"}},{"attributes":{"name":"Sandra Langosh","age":68,"location":"Prosaccofield"}},{"attributes":{"name":"Gerald Mayert","age":47,"location":"Edmondstead"}},{"attributes":{"name":"Rosa Champlin","age":66,"location":"New Arvid"}},{"attributes":{"name":"Krystal Reinger IV","age":38,"location":"Goldnerport"}},{"attributes":{"name":"Verna Predovic","age":28,"location":"West Katherinecester"}},{"attributes":{"name":"Vernon Luettgen","age":44,"location":"West Nikolas"}},{"attributes":{"name":"Anita Steuber","age":47,"location":"South Jaredville"}},{"attributes":{"name":"Lynda Bayer","age":57,"location":"Russellchester"}},{"attributes":{"name":"Margarita McGlynn V","age":42,"location":"Kochstad"}},{"attributes":{"name":"Virgil Dietrich","age":24,"location":"North Marjorieton"}},{"attributes":{"name":"Alba Grady","age":61,"location":"Thielcester"}},{"attributes":{"name":"Dr. Clinton Schoen DDS","age":39,"location":"St. Louis Park"}},{"attributes":{"name":"Nico Turcotte","age":70,"location":"Fort Gillian"}},{"attributes":{"name":"Audie Wiegand V","age":57,"location":"Eldonborough"}},{"attributes":{"name":"Pauline Bosco","age":21,"location":"Ileneside"}},{"attributes":{"name":"Cassandra Mosciski","age":23,"location":"Binsfield"}},{"attributes":{"name":"Ms. Bert Hirthe-Hilpert","age":65,"location":"North Orin"}},{"attributes":{"name":"Terence Kunde","age":47,"location":"North Billfurt"}},{"attributes":{"name":"Mr. Vilma Grant","age":18,"location":"Athens-Clarke County"}},{"attributes":{"name":"Winston Lueilwitz IV","age":57,"location":"Klingfurt"}},{"attributes":{"name":"Alverta Wiegand IV","age":57,"location":"East Jamaal"}},{"attributes":{"name":"Ariane Yost-Price","age":37,"location":"Pharr"}},{"attributes":{"name":"Remington Reinger","age":44,"location":"Stillwater"}},{"attributes":{"name":"Holly Yost","age":55,"location":"Fort Ronny"}},{"attributes":{"name":"Ms. Hector Bednar","age":80,"location":"Odessashire"}},{"attributes":{"name":"Ivan Wilkinson","age":32,"location":"Mosciskibury"}},{"attributes":{"name":"Mrs. Josue Lebsack","age":73,"location":"Bretttown"}},{"attributes":{"name":"Mckenna Collins","age":40,"location":"Gladyceport"}},{"attributes":{"name":"Joel Hyatt","age":72,"location":"Casas Adobes"}},{"attributes":{"name":"Donnie Wuckert","age":38,"location":"Fisherton"}},{"attributes":{"name":"Cecilia Nitzsche","age":39,"location":"Lakewood"}},{"attributes":{"name":"Courtney Cummings","age":29,"location":"North Jaimeberg"}},{"attributes":{"name":"Melinda Schmidt","age":23,"location":"Twin Falls"}},{"attributes":{"name":"Regina Denesik","age":41,"location":"Lianabury"}},{"attributes":{"name":"Alfredo Ratke IV","age":51,"location":"South Kaceyburgh"}},{"attributes":{"name":"Alma Effertz","age":25,"location":"Nashua"}},{"attributes":{"name":"Jessie Lind","age":64,"location":"Brandynboro"}},{"attributes":{"name":"Khalid Yost","age":32,"location":"East Delaneyville"}},{"attributes":{"name":"Claire Block","age":43,"location":"Broken Arrow"}},{"attributes":{"name":"Samara Gerhold","age":60,"location":"Milford"}},{"attributes":{"name":"Ramon Hane","age":49,"location":"North Leonie"}},{"attributes":{"name":"Cara Lemke","age":39,"location":"North Yeseniaborough"}},{"attributes":{"name":"Merle Mertz","age":43,"location":"Fort Rickey"}},{"attributes":{"name":"Oscar Davis","age":64,"location":"Ronaldoville"}},{"attributes":{"name":"Clark Schultz","age":50,"location":"Fort Gladys"}},{"attributes":{"name":"Gerard Gutkowski","age":49,"location":"Fort Gerard"}},{"attributes":{"name":"Lindsey Weimann","age":39,"location":"Port Lilianestad"}},{"attributes":{"name":"Camron Franey","age":20,"location":"Noraside"}},{"attributes":{"name":"Berniece Champlin","age":68,"location":"East Misaelcester"}},{"attributes":{"name":"Kari Hegmann","age":75,"location":"Gregoryport"}},{"attributes":{"name":"Larry Moore","age":72,"location":"Miramar"}},{"attributes":{"name":"Melba Mayer","age":44,"location":"Watsicashire"}},{"attributes":{"name":"Wendy Casper PhD","age":50,"location":"Greenton"}},{"attributes":{"name":"Abigail Jacobi","age":75,"location":"West Myrl"}},{"attributes":{"name":"Jodi Dare","age":44,"location":"Great Falls"}},{"attributes":{"name":"Adonis Daugherty Sr.","age":44,"location":"Fort Jimmystead"}},{"attributes":{"name":"Cornelius DuBuque","age":20,"location":"Kennaton"}},{"attributes":{"name":"Jon Jacobs","age":27,"location":"Port Tysonbury"}},{"attributes":{"name":"Hal Crist","age":59,"location":"East Darianachester"}},{"attributes":{"name":"Rachel O'Keefe","age":24,"location":"Lake Russ"}},{"attributes":{"name":"Mathew Greenholt Jr.","age":23,"location":"North Cheyanne"}},{"attributes":{"name":"Steve Heaney","age":41,"location":"Domenicfurt"}},{"attributes":{"name":"Hudson White","age":26,"location":"Lee's Summit"}},{"attributes":{"name":"Hermina Glover","age":57,"location":"East Roberto"}},{"attributes":{"name":"Clifford Auer Sr.","age":54,"location":"New Maci"}},{"attributes":{"name":"Mr. Al Tromp","age":59,"location":"Fort Heatherbury"}},{"attributes":{"name":"Clay Boehm","age":33,"location":"West Fiona"}},{"attributes":{"name":"Kent Olson DDS","age":31,"location":"West Laurianneton"}},{"attributes":{"name":"Estelle Breitenberg","age":63,"location":"Martinaport"}},{"attributes":{"name":"Piper Goldner","age":40,"location":"Fort Brielleshire"}},{"attributes":{"name":"Mrs. Krystal Reynolds","age":71,"location":"South Dale"}},{"attributes":{"name":"Alivia Walsh","age":53,"location":"Arden-Arcade"}},{"attributes":{"name":"Miss Timothy Welch-Krajcik","age":70,"location":"New Darbyland"}},{"attributes":{"name":"Eunice Bergnaum","age":51,"location":"Hamillfurt"}}]} \ No newline at end of file diff --git a/public/storybook/roster-1000.json b/public/storybook/roster-1000.json new file mode 100644 index 000000000..0ab5f8c4f --- /dev/null +++ b/public/storybook/roster-1000.json @@ -0,0 +1 @@ +{"nodes":[{"attributes":{"name":"Moses Crist","age":21,"location":"New Haven"}},{"attributes":{"name":"Warren Effertz","age":29,"location":"New Hollie"}},{"attributes":{"name":"Brody Hilll","age":67,"location":"New Larryton"}},{"attributes":{"name":"Dr. Arthur Wintheiser","age":61,"location":"Bonitamouth"}},{"attributes":{"name":"Destinee Hahn","age":52,"location":"Fort Opheliashire"}},{"attributes":{"name":"Theodora Dietrich","age":38,"location":"West Rhoda"}},{"attributes":{"name":"Lana Schmitt","age":80,"location":"Donnellytown"}},{"attributes":{"name":"Montana Blanda","age":25,"location":"North Miami Beach"}},{"attributes":{"name":"Faye Renner","age":73,"location":"Blakecester"}},{"attributes":{"name":"Ole Ledner","age":19,"location":"North Louieborough"}},{"attributes":{"name":"Delphia Roob","age":22,"location":"East Toby"}},{"attributes":{"name":"Saul Dibbert IV","age":68,"location":"Fontana"}},{"attributes":{"name":"Jeannie Stoltenberg","age":50,"location":"Daltonland"}},{"attributes":{"name":"Enola Prosacco","age":79,"location":"Downey"}},{"attributes":{"name":"Erin Monahan","age":21,"location":"Fort Dawn"}},{"attributes":{"name":"Wendy Osinski","age":32,"location":"Hilllfurt"}},{"attributes":{"name":"Blake Hammes","age":20,"location":"Marianotown"}},{"attributes":{"name":"Marc Pollich","age":77,"location":"West Berylshire"}},{"attributes":{"name":"Marlon Luettgen","age":33,"location":"Fort Stephanfurt"}},{"attributes":{"name":"Dr. Muriel Torphy","age":28,"location":"Newport Beach"}},{"attributes":{"name":"Marlene Crooks","age":61,"location":"Faheycester"}},{"attributes":{"name":"Nicole Stanton","age":53,"location":"West Dillonburgh"}},{"attributes":{"name":"Steve Schimmel","age":54,"location":"Cleoracester"}},{"attributes":{"name":"Margie Weimann DVM","age":41,"location":"Fort Hilbertworth"}},{"attributes":{"name":"Eldridge Stark","age":28,"location":"Tremaynecester"}},{"attributes":{"name":"Lloyd Connelly-Leannon DDS","age":61,"location":"Hesselboro"}},{"attributes":{"name":"Sandra Langosh","age":68,"location":"Prosaccofield"}},{"attributes":{"name":"Gerald Mayert","age":47,"location":"Edmondstead"}},{"attributes":{"name":"Rosa Champlin","age":66,"location":"New Arvid"}},{"attributes":{"name":"Krystal Reinger IV","age":38,"location":"Goldnerport"}},{"attributes":{"name":"Verna Predovic","age":28,"location":"West Katherinecester"}},{"attributes":{"name":"Vernon Luettgen","age":44,"location":"West Nikolas"}},{"attributes":{"name":"Anita Steuber","age":47,"location":"South Jaredville"}},{"attributes":{"name":"Lynda Bayer","age":57,"location":"Russellchester"}},{"attributes":{"name":"Margarita McGlynn V","age":42,"location":"Kochstad"}},{"attributes":{"name":"Virgil Dietrich","age":24,"location":"North Marjorieton"}},{"attributes":{"name":"Alba Grady","age":61,"location":"Thielcester"}},{"attributes":{"name":"Dr. Clinton Schoen DDS","age":39,"location":"St. Louis Park"}},{"attributes":{"name":"Nico Turcotte","age":70,"location":"Fort Gillian"}},{"attributes":{"name":"Audie Wiegand V","age":57,"location":"Eldonborough"}},{"attributes":{"name":"Pauline Bosco","age":21,"location":"Ileneside"}},{"attributes":{"name":"Cassandra Mosciski","age":23,"location":"Binsfield"}},{"attributes":{"name":"Ms. Bert Hirthe-Hilpert","age":65,"location":"North Orin"}},{"attributes":{"name":"Terence Kunde","age":47,"location":"North Billfurt"}},{"attributes":{"name":"Mr. Vilma Grant","age":18,"location":"Athens-Clarke County"}},{"attributes":{"name":"Winston Lueilwitz IV","age":57,"location":"Klingfurt"}},{"attributes":{"name":"Alverta Wiegand IV","age":57,"location":"East Jamaal"}},{"attributes":{"name":"Ariane Yost-Price","age":37,"location":"Pharr"}},{"attributes":{"name":"Remington Reinger","age":44,"location":"Stillwater"}},{"attributes":{"name":"Holly Yost","age":55,"location":"Fort Ronny"}},{"attributes":{"name":"Ms. Hector Bednar","age":80,"location":"Odessashire"}},{"attributes":{"name":"Ivan Wilkinson","age":32,"location":"Mosciskibury"}},{"attributes":{"name":"Mrs. Josue Lebsack","age":73,"location":"Bretttown"}},{"attributes":{"name":"Mckenna Collins","age":40,"location":"Gladyceport"}},{"attributes":{"name":"Joel Hyatt","age":72,"location":"Casas Adobes"}},{"attributes":{"name":"Donnie Wuckert","age":38,"location":"Fisherton"}},{"attributes":{"name":"Cecilia Nitzsche","age":39,"location":"Lakewood"}},{"attributes":{"name":"Courtney Cummings","age":29,"location":"North Jaimeberg"}},{"attributes":{"name":"Melinda Schmidt","age":23,"location":"Twin Falls"}},{"attributes":{"name":"Regina Denesik","age":41,"location":"Lianabury"}},{"attributes":{"name":"Alfredo Ratke IV","age":51,"location":"South Kaceyburgh"}},{"attributes":{"name":"Alma Effertz","age":25,"location":"Nashua"}},{"attributes":{"name":"Jessie Lind","age":64,"location":"Brandynboro"}},{"attributes":{"name":"Khalid Yost","age":32,"location":"East Delaneyville"}},{"attributes":{"name":"Claire Block","age":43,"location":"Broken Arrow"}},{"attributes":{"name":"Samara Gerhold","age":60,"location":"Milford"}},{"attributes":{"name":"Ramon Hane","age":49,"location":"North Leonie"}},{"attributes":{"name":"Cara Lemke","age":39,"location":"North Yeseniaborough"}},{"attributes":{"name":"Merle Mertz","age":43,"location":"Fort Rickey"}},{"attributes":{"name":"Oscar Davis","age":64,"location":"Ronaldoville"}},{"attributes":{"name":"Clark Schultz","age":50,"location":"Fort Gladys"}},{"attributes":{"name":"Gerard Gutkowski","age":49,"location":"Fort Gerard"}},{"attributes":{"name":"Lindsey Weimann","age":39,"location":"Port Lilianestad"}},{"attributes":{"name":"Camron Franey","age":20,"location":"Noraside"}},{"attributes":{"name":"Berniece Champlin","age":68,"location":"East Misaelcester"}},{"attributes":{"name":"Kari Hegmann","age":75,"location":"Gregoryport"}},{"attributes":{"name":"Larry Moore","age":72,"location":"Miramar"}},{"attributes":{"name":"Melba Mayer","age":44,"location":"Watsicashire"}},{"attributes":{"name":"Wendy Casper PhD","age":50,"location":"Greenton"}},{"attributes":{"name":"Abigail Jacobi","age":75,"location":"West Myrl"}},{"attributes":{"name":"Jodi Dare","age":44,"location":"Great Falls"}},{"attributes":{"name":"Adonis Daugherty Sr.","age":44,"location":"Fort Jimmystead"}},{"attributes":{"name":"Cornelius DuBuque","age":20,"location":"Kennaton"}},{"attributes":{"name":"Jon Jacobs","age":27,"location":"Port Tysonbury"}},{"attributes":{"name":"Hal Crist","age":59,"location":"East Darianachester"}},{"attributes":{"name":"Rachel O'Keefe","age":24,"location":"Lake Russ"}},{"attributes":{"name":"Mathew Greenholt Jr.","age":23,"location":"North Cheyanne"}},{"attributes":{"name":"Steve Heaney","age":41,"location":"Domenicfurt"}},{"attributes":{"name":"Hudson White","age":26,"location":"Lee's Summit"}},{"attributes":{"name":"Hermina Glover","age":57,"location":"East Roberto"}},{"attributes":{"name":"Clifford Auer Sr.","age":54,"location":"New Maci"}},{"attributes":{"name":"Mr. Al Tromp","age":59,"location":"Fort Heatherbury"}},{"attributes":{"name":"Clay Boehm","age":33,"location":"West Fiona"}},{"attributes":{"name":"Kent Olson DDS","age":31,"location":"West Laurianneton"}},{"attributes":{"name":"Estelle Breitenberg","age":63,"location":"Martinaport"}},{"attributes":{"name":"Piper Goldner","age":40,"location":"Fort Brielleshire"}},{"attributes":{"name":"Mrs. Krystal Reynolds","age":71,"location":"South Dale"}},{"attributes":{"name":"Alivia Walsh","age":53,"location":"Arden-Arcade"}},{"attributes":{"name":"Miss Timothy Welch-Krajcik","age":70,"location":"New Darbyland"}},{"attributes":{"name":"Eunice Bergnaum","age":51,"location":"Hamillfurt"}},{"attributes":{"name":"Daron Strosin","age":73,"location":"Trevorfield"}},{"attributes":{"name":"Ramiro Kris","age":73,"location":"Royal Oak"}},{"attributes":{"name":"Natalie Brown","age":36,"location":"East Allie"}},{"attributes":{"name":"Hilario Parisian","age":77,"location":"Borerview"}},{"attributes":{"name":"Mr. Jammie Cummings MD","age":56,"location":"Darianberg"}},{"attributes":{"name":"Patty Beer PhD","age":76,"location":"Chicago"}},{"attributes":{"name":"Mauricio Schultz","age":32,"location":"Laruestead"}},{"attributes":{"name":"Dina Towne PhD","age":68,"location":"Lubowitzland"}},{"attributes":{"name":"Elena Kunze","age":31,"location":"Blickhaven"}},{"attributes":{"name":"Lorene Heidenreich","age":53,"location":"Fort Phyllis"}},{"attributes":{"name":"Sandrine Smith","age":60,"location":"Romagueraville"}},{"attributes":{"name":"Alessia Champlin","age":64,"location":"Port Rigobertomouth"}},{"attributes":{"name":"Lynette Murray-Gerlach","age":52,"location":"Breitenbergfort"}},{"attributes":{"name":"Evans Waters","age":77,"location":"Bernhardboro"}},{"attributes":{"name":"Lamar Mraz","age":72,"location":"West Sacramento"}},{"attributes":{"name":"Phillip Bahringer","age":48,"location":"Paucekport"}},{"attributes":{"name":"Dr. Hershel Cruickshank","age":23,"location":"O'Konboro"}},{"attributes":{"name":"Hugo Johnston","age":43,"location":"Fort Haley"}},{"attributes":{"name":"Darin O'Keefe","age":72,"location":"Vivianneberg"}},{"attributes":{"name":"Ole Rowe","age":26,"location":"Fort Lexiefield"}},{"attributes":{"name":"Candice Keeling","age":48,"location":"New Domenicofield"}},{"attributes":{"name":"Alexis Huel","age":55,"location":"Lake Ryley"}},{"attributes":{"name":"Dr. Jeffery Flatley V","age":62,"location":"Adeliaborough"}},{"attributes":{"name":"Franklin Block","age":26,"location":"Marvinfield"}},{"attributes":{"name":"Bobbie Quigley","age":76,"location":"New Melvinside"}},{"attributes":{"name":"Euna Block V","age":69,"location":"Luellastad"}},{"attributes":{"name":"Mr. Armando Cronin","age":39,"location":"Port Mafaldamouth"}},{"attributes":{"name":"Dante Wolf-O'Hara","age":60,"location":"North Dessieport"}},{"attributes":{"name":"Nash Hegmann","age":80,"location":"Port Kolbyport"}},{"attributes":{"name":"Shannon Jones","age":55,"location":"Corvallis"}},{"attributes":{"name":"Mozelle Rau Sr.","age":32,"location":"Cicero"}},{"attributes":{"name":"Dexter Kilback","age":40,"location":"Carybury"}},{"attributes":{"name":"Mark Rutherford","age":79,"location":"Darwinton"}},{"attributes":{"name":"Gertrude Keeling","age":56,"location":"Cummingsville"}},{"attributes":{"name":"Ms. Malcolm Sporer","age":30,"location":"West Anaisstad"}},{"attributes":{"name":"Caleb Watsica","age":49,"location":"East Wyattworth"}},{"attributes":{"name":"Lucas Klocko","age":48,"location":"Connellytown"}},{"attributes":{"name":"Collin Wisozk","age":60,"location":"Sanfordberg"}},{"attributes":{"name":"Tyrel Kuphal","age":72,"location":"Alexandershire"}},{"attributes":{"name":"Crystal Huels","age":24,"location":"Zulaufton"}},{"attributes":{"name":"Shane Mante","age":73,"location":"Erickachester"}},{"attributes":{"name":"Pierce Schumm","age":52,"location":"West Frederickview"}},{"attributes":{"name":"Israel Hintz","age":22,"location":"Ortizfurt"}},{"attributes":{"name":"Shawna Kris","age":39,"location":"South Kraig"}},{"attributes":{"name":"Norwood Raynor Jr.","age":30,"location":"Lake Stanburgh"}},{"attributes":{"name":"Tommie Bradtke","age":34,"location":"West Prudence"}},{"attributes":{"name":"Lewis Goldner","age":25,"location":"Lake Cheyannestad"}},{"attributes":{"name":"Kent Windler","age":68,"location":"Altafurt"}},{"attributes":{"name":"Reece Farrell","age":56,"location":"Rolandoside"}},{"attributes":{"name":"Paula Senger","age":60,"location":"New Ivystead"}},{"attributes":{"name":"Sallie Boyer","age":58,"location":"Lockmanburgh"}},{"attributes":{"name":"Jerrold Collins-Powlowski","age":44,"location":"Pourosworth"}},{"attributes":{"name":"Muriel Goodwin","age":23,"location":"Coconut Creek"}},{"attributes":{"name":"Gwen Leannon","age":68,"location":"New Shanelle"}},{"attributes":{"name":"Mr. Ervin Ortiz DDS","age":47,"location":"New Verniceberg"}},{"attributes":{"name":"Jose Klein","age":39,"location":"Schinnershire"}},{"attributes":{"name":"Mrs. Celia Walter-Lindgren","age":23,"location":"Champlinfield"}},{"attributes":{"name":"Alfred Gislason","age":23,"location":"Middletown"}},{"attributes":{"name":"Joann Larkin IV","age":80,"location":"Corona"}},{"attributes":{"name":"Mrs. Roland Thiel","age":37,"location":"South Chaddchester"}},{"attributes":{"name":"Mr. Lucio Cole","age":56,"location":"Danielmouth"}},{"attributes":{"name":"Heather Balistreri","age":78,"location":"Virginiaview"}},{"attributes":{"name":"Jessie Nitzsche","age":57,"location":"Corwinton"}},{"attributes":{"name":"Archie Beer-Powlowski I","age":26,"location":"West Baronchester"}},{"attributes":{"name":"Yvette Morar","age":57,"location":"Hershelville"}},{"attributes":{"name":"Mrs. Craig Jerde","age":18,"location":"Jaydontown"}},{"attributes":{"name":"Brigitte Emard","age":33,"location":"Santa Clara"}},{"attributes":{"name":"Dr. Brent Kling","age":27,"location":"Lake Jarrod"}},{"attributes":{"name":"Johnnie Toy DDS","age":37,"location":"Kertzmannburgh"}},{"attributes":{"name":"Sylvester Nienow","age":74,"location":"Morarton"}},{"attributes":{"name":"Pablo Parisian","age":23,"location":"Binston"}},{"attributes":{"name":"Myrl Gulgowski","age":66,"location":"Denesikberg"}},{"attributes":{"name":"Norris Aufderhar","age":78,"location":"Port Linnie"}},{"attributes":{"name":"Camille Ryan","age":51,"location":"Fort Pinkboro"}},{"attributes":{"name":"Kristoffer Schroeder","age":26,"location":"Fort Dan"}},{"attributes":{"name":"Jessie Welch","age":25,"location":"Fort Lunaboro"}},{"attributes":{"name":"Rose Fritsch","age":47,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Charlotte Wyman Jr.","age":28,"location":"Lake Rebecaberg"}},{"attributes":{"name":"Mozell McLaughlin","age":36,"location":"Martyside"}},{"attributes":{"name":"Carolanne Altenwerth","age":63,"location":"Boulder"}},{"attributes":{"name":"Connie Reynolds","age":29,"location":"Port Kayden"}},{"attributes":{"name":"Alfonzo Douglas III","age":38,"location":"West Selmerworth"}},{"attributes":{"name":"Monique Medhurst","age":43,"location":"Abernathyfurt"}},{"attributes":{"name":"Augusta Kshlerin","age":22,"location":"Kelliestad"}},{"attributes":{"name":"Quinn Shanahan","age":22,"location":"West Owencester"}},{"attributes":{"name":"Irvin Harber","age":23,"location":"New Mya"}},{"attributes":{"name":"Dr. Ludie Nicolas","age":70,"location":"New Lacy"}},{"attributes":{"name":"Mrs. Geraldine Bailey","age":36,"location":"Durham"}},{"attributes":{"name":"Ronny Schmitt","age":48,"location":"North Monroemouth"}},{"attributes":{"name":"Novella Monahan","age":65,"location":"Willton"}},{"attributes":{"name":"Elisa Ullrich","age":35,"location":"Kirlinfort"}},{"attributes":{"name":"Ana Ullrich","age":51,"location":"Faeside"}},{"attributes":{"name":"Vincenzo Wehner","age":44,"location":"Lake Willard"}},{"attributes":{"name":"Clotilde Kohler V","age":40,"location":"East Daneburgh"}},{"attributes":{"name":"Judah Stokes","age":22,"location":"Littleton"}},{"attributes":{"name":"Christina Stark","age":47,"location":"Maceystad"}},{"attributes":{"name":"Miss Regina Bechtelar","age":28,"location":"Port Josiane"}},{"attributes":{"name":"Shanel Ferry","age":80,"location":"Balistreriton"}},{"attributes":{"name":"Kali Braun","age":69,"location":"Port Violet"}},{"attributes":{"name":"Erma Mayert","age":68,"location":"Fort Kaci"}},{"attributes":{"name":"Pearline Stiedemann II","age":79,"location":"East Christianaside"}},{"attributes":{"name":"Irvin Boehm DDS","age":49,"location":"Indio"}},{"attributes":{"name":"Lori Tillman","age":28,"location":"New Juliencester"}},{"attributes":{"name":"Mr. Oscar Stiedemann","age":37,"location":"Reinaport"}},{"attributes":{"name":"Rosemarie Daniel","age":70,"location":"East Bryanabury"}},{"attributes":{"name":"Ms. Macey Herman","age":57,"location":"Lake Erachester"}},{"attributes":{"name":"Sarah Smith","age":58,"location":"Langworthborough"}},{"attributes":{"name":"Mrs. Eva Wehner","age":59,"location":"Fort Marcos"}},{"attributes":{"name":"Ismael Stracke","age":41,"location":"Brockton"}},{"attributes":{"name":"Ms. Natasha Goyette","age":65,"location":"Amarillo"}},{"attributes":{"name":"Mr. Ellis Grady","age":52,"location":"East Adolphport"}},{"attributes":{"name":"Elfrieda Roberts","age":74,"location":"Pasadena"}},{"attributes":{"name":"Mr. Christop Fisher","age":80,"location":"Madison"}},{"attributes":{"name":"Lavon Botsford MD","age":70,"location":"Modesto"}},{"attributes":{"name":"Erick Ryan","age":74,"location":"Lennyfurt"}},{"attributes":{"name":"Dave Braun","age":48,"location":"Wiegandstead"}},{"attributes":{"name":"Lyle Funk","age":47,"location":"East Dovieworth"}},{"attributes":{"name":"Dana Goyette","age":50,"location":"North Dagmartown"}},{"attributes":{"name":"Raquel Langworth","age":76,"location":"North Lexus"}},{"attributes":{"name":"Kayla Kunde","age":80,"location":"West Godfreyview"}},{"attributes":{"name":"Ms. Micah Hagenes","age":18,"location":"Bechtelarburgh"}},{"attributes":{"name":"Marquis Hoppe","age":41,"location":"South Nevaton"}},{"attributes":{"name":"Tina Parisian","age":55,"location":"Lake Tatefurt"}},{"attributes":{"name":"Blaze Bergstrom","age":26,"location":"South Eleanoremouth"}},{"attributes":{"name":"Caleb Heathcote","age":59,"location":"Pittsburg"}},{"attributes":{"name":"Dortha Schamberger","age":68,"location":"St. Louis"}},{"attributes":{"name":"Erik Hilpert","age":62,"location":"Hirtheville"}},{"attributes":{"name":"Sophia Crist","age":58,"location":"Heaneyton"}},{"attributes":{"name":"Maureen Hickle","age":80,"location":"Martinaville"}},{"attributes":{"name":"Kay Hoppe-Batz","age":42,"location":"North Nigelport"}},{"attributes":{"name":"Betty Haley-Towne","age":70,"location":"Enid"}},{"attributes":{"name":"Glen Littel","age":52,"location":"Nolanhaven"}},{"attributes":{"name":"Elena Beer","age":35,"location":"Milford"}},{"attributes":{"name":"Broderick Murazik","age":43,"location":"Tamarac"}},{"attributes":{"name":"Lillian Huels","age":47,"location":"Dannieworth"}},{"attributes":{"name":"Mr. Kacie Christiansen","age":35,"location":"Waltham"}},{"attributes":{"name":"Vivian Stracke","age":41,"location":"East Nolan"}},{"attributes":{"name":"Katherine Streich III","age":70,"location":"Marvinshire"}},{"attributes":{"name":"Sara Stamm Jr.","age":73,"location":"Johnathonfurt"}},{"attributes":{"name":"Jean Reichert","age":26,"location":"West Quincy"}},{"attributes":{"name":"Vanessa Zieme","age":70,"location":"North Myrna"}},{"attributes":{"name":"Bryon Runte","age":66,"location":"Normal"}},{"attributes":{"name":"Belinda Jaskolski","age":39,"location":"Port Unaton"}},{"attributes":{"name":"Dr. Elias Kutch","age":22,"location":"Eleazarburgh"}},{"attributes":{"name":"Tobin Ullrich","age":48,"location":"Lake Wilfred"}},{"attributes":{"name":"Marco Towne","age":46,"location":"Linnieton"}},{"attributes":{"name":"Nick Schneider","age":50,"location":"Port Donavonmouth"}},{"attributes":{"name":"Mae Rohan","age":18,"location":"Alyciaboro"}},{"attributes":{"name":"Rudy Franecki","age":37,"location":"West Donhaven"}},{"attributes":{"name":"Simeon Vandervort","age":78,"location":"Lake Jeremybury"}},{"attributes":{"name":"Abigail Ratke","age":78,"location":"Wiegandcester"}},{"attributes":{"name":"Paula Beahan","age":78,"location":"Hopeport"}},{"attributes":{"name":"Heidi Runte","age":69,"location":"Costa Mesa"}},{"attributes":{"name":"Sherman Pagac","age":36,"location":"Lake Myrticeborough"}},{"attributes":{"name":"Nick Toy","age":41,"location":"North Jorgeboro"}},{"attributes":{"name":"Gerardo Aufderhar","age":44,"location":"Guiseppestad"}},{"attributes":{"name":"Jamie Leannon-Pagac","age":66,"location":"Lebsackworth"}},{"attributes":{"name":"Pat Carter","age":19,"location":"Port Josh"}},{"attributes":{"name":"Ada O'Connell PhD","age":19,"location":"San Diego"}},{"attributes":{"name":"Gregory Bergstrom","age":33,"location":"Nehaport"}},{"attributes":{"name":"Turner Zboncak","age":78,"location":"West Daneberg"}},{"attributes":{"name":"Miss Osvaldo Corkery","age":60,"location":"West Terrell"}},{"attributes":{"name":"Sophia Berge","age":18,"location":"Kingville"}},{"attributes":{"name":"Derrick Parisian","age":35,"location":"La Habra"}},{"attributes":{"name":"Andre Kilback","age":21,"location":"Wichita"}},{"attributes":{"name":"Ms. Deangelo Donnelly-Wilderman V","age":34,"location":"Laurelton"}},{"attributes":{"name":"Clare Upton DVM","age":50,"location":"Rockwall"}},{"attributes":{"name":"Mona Nitzsche","age":28,"location":"Oletamouth"}},{"attributes":{"name":"Gwendolyn Fay","age":31,"location":"Port Montana"}},{"attributes":{"name":"Amelia Olson","age":36,"location":"Fort Zackary"}},{"attributes":{"name":"Gabrielle Romaguera DVM","age":54,"location":"Port Demario"}},{"attributes":{"name":"Mark Dicki Sr.","age":49,"location":"North Alfred"}},{"attributes":{"name":"Earnestine McCullough-Kertzmann","age":50,"location":"Gradybury"}},{"attributes":{"name":"Sincere Sauer","age":49,"location":"New Christy"}},{"attributes":{"name":"Coralie Bernhard IV","age":43,"location":"South Hill"}},{"attributes":{"name":"Olen Corwin IV","age":35,"location":"Alialand"}},{"attributes":{"name":"Henry Becker I","age":37,"location":"East Abbie"}},{"attributes":{"name":"Dr. Dan Robel","age":38,"location":"Schummberg"}},{"attributes":{"name":"Rae Romaguera-Huel","age":59,"location":"New Melvinaville"}},{"attributes":{"name":"Vanessa Gleason","age":36,"location":"Roweland"}},{"attributes":{"name":"Gene Shields","age":63,"location":"Theachester"}},{"attributes":{"name":"Doris Dietrich","age":39,"location":"St. Louis"}},{"attributes":{"name":"Kelsi Kunze","age":28,"location":"Ricebury"}},{"attributes":{"name":"Aditya Wisozk","age":32,"location":"Schummstad"}},{"attributes":{"name":"Jimmie Stracke","age":68,"location":"Gracieville"}},{"attributes":{"name":"Emilio Swaniawski","age":68,"location":"New Kiana"}},{"attributes":{"name":"Adolfo Bechtelar","age":36,"location":"West Lilliana"}},{"attributes":{"name":"Gunnar Sawayn","age":45,"location":"Hartmannton"}},{"attributes":{"name":"Lucius Nader","age":44,"location":"Bradtkeboro"}},{"attributes":{"name":"Vivian Leannon","age":79,"location":"South Myrnacester"}},{"attributes":{"name":"Jacquelyn DuBuque","age":34,"location":"Lake Vivien"}},{"attributes":{"name":"Ben Gulgowski-Bosco","age":57,"location":"Gleichnertown"}},{"attributes":{"name":"Max Monahan","age":35,"location":"Sammieshire"}},{"attributes":{"name":"Tonya Tillman","age":55,"location":"Parisianview"}},{"attributes":{"name":"Dennis Will","age":70,"location":"Lake Whitneyland"}},{"attributes":{"name":"Betty Volkman","age":34,"location":"Mitcheltown"}},{"attributes":{"name":"Lowell Ratke","age":30,"location":"Renton"}},{"attributes":{"name":"Delia Franey","age":46,"location":"Moenchester"}},{"attributes":{"name":"Roel Senger IV","age":30,"location":"Robertscester"}},{"attributes":{"name":"Geoffrey McDermott","age":34,"location":"Fort Manuel"}},{"attributes":{"name":"Luke Purdy","age":45,"location":"Weberton"}},{"attributes":{"name":"Irving Gutkowski","age":21,"location":"Tillmanland"}},{"attributes":{"name":"Marion Cronin","age":22,"location":"Lake Shannonfield"}},{"attributes":{"name":"Edmund Friesen","age":51,"location":"West Rhiannon"}},{"attributes":{"name":"Terrence Hansen-Hermann","age":77,"location":"Boynton Beach"}},{"attributes":{"name":"Joan Stokes","age":70,"location":"Riverton"}},{"attributes":{"name":"Carolanne Daugherty","age":32,"location":"East Abbigailcester"}},{"attributes":{"name":"Clarence Aufderhar","age":74,"location":"West Ben"}},{"attributes":{"name":"Lucy Beer","age":32,"location":"Fort Lewis"}},{"attributes":{"name":"Hubert Predovic","age":28,"location":"Hansside"}},{"attributes":{"name":"Bruce Carroll","age":26,"location":"DuBuqueview"}},{"attributes":{"name":"Dr. Jimmy Auer","age":53,"location":"Pfefferburgh"}},{"attributes":{"name":"Miss Kailee Schuster","age":67,"location":"Christellehaven"}},{"attributes":{"name":"Ben Schneider I","age":22,"location":"Hempstead"}},{"attributes":{"name":"Annabelle Blanda","age":68,"location":"Zionstad"}},{"attributes":{"name":"Gretchen Bernhard","age":47,"location":"O'Reillycester"}},{"attributes":{"name":"Mr. Marjorie Abshire","age":22,"location":"McDermottfort"}},{"attributes":{"name":"Josh Osinski","age":64,"location":"East Sigmundfort"}},{"attributes":{"name":"Lavern Towne","age":57,"location":"South Michelleboro"}},{"attributes":{"name":"Doreen Kassulke IV","age":29,"location":"Lake Geovanyfield"}},{"attributes":{"name":"Donnell Gislason MD","age":38,"location":"East Maude"}},{"attributes":{"name":"Dr. Dillan Schultz","age":23,"location":"Hillsview"}},{"attributes":{"name":"Ana Frami","age":20,"location":"Handside"}},{"attributes":{"name":"Sylvester Shanahan-Sporer","age":54,"location":"North Zoilaborough"}},{"attributes":{"name":"Ryan Flatley-Bauch","age":26,"location":"West Ottisstead"}},{"attributes":{"name":"Darion Runolfsdottir","age":66,"location":"Port Lilianstad"}},{"attributes":{"name":"Kylie Zboncak","age":45,"location":"Hudsonburgh"}},{"attributes":{"name":"Tobin Legros","age":80,"location":"Oshkosh"}},{"attributes":{"name":"Laura Klocko","age":60,"location":"Fort Caterina"}},{"attributes":{"name":"Mavis Gorczany","age":58,"location":"Chazcester"}},{"attributes":{"name":"Mrs. Rodolfo Aufderhar","age":70,"location":"West Covina"}},{"attributes":{"name":"Guadalupe Marquardt","age":76,"location":"Laruebury"}},{"attributes":{"name":"Jeanne Mohr PhD","age":59,"location":"Port Sheldon"}},{"attributes":{"name":"Edison Zieme","age":74,"location":"Wizaport"}},{"attributes":{"name":"Ms. Felix Wolf","age":23,"location":"North Cortez"}},{"attributes":{"name":"Eloise Cummings","age":79,"location":"Wisokyport"}},{"attributes":{"name":"Erich Feeney","age":34,"location":"Lake Angie"}},{"attributes":{"name":"Caesar Stracke","age":23,"location":"Elizastad"}},{"attributes":{"name":"Kyle Considine","age":35,"location":"Arnoport"}},{"attributes":{"name":"Anais Koch","age":54,"location":"Sanfordhaven"}},{"attributes":{"name":"Sabrina Towne-Hilpert","age":48,"location":"Kulasmouth"}},{"attributes":{"name":"Santos Harber","age":66,"location":"East Vanberg"}},{"attributes":{"name":"Jenifer Fay","age":41,"location":"Connellystead"}},{"attributes":{"name":"Delores Shanahan","age":76,"location":"Mobile"}},{"attributes":{"name":"Rachael Bogisich","age":71,"location":"Danielchester"}},{"attributes":{"name":"Sherri Gislason","age":72,"location":"Murazikfort"}},{"attributes":{"name":"Gretchen Kuhic Jr.","age":36,"location":"East Sydnie"}},{"attributes":{"name":"Ollie Kuhlman","age":55,"location":"Sacramento"}},{"attributes":{"name":"Cecile Doyle","age":50,"location":"Vandervortmouth"}},{"attributes":{"name":"Dr. Alonzo Kessler","age":46,"location":"North Modesto"}},{"attributes":{"name":"Ms. Earl Hoeger","age":25,"location":"Ferrychester"}},{"attributes":{"name":"Mr. Gianni Aufderhar","age":32,"location":"North Vida"}},{"attributes":{"name":"Dimitri Pagac","age":71,"location":"Taylor"}},{"attributes":{"name":"Ed Altenwerth-Rau","age":57,"location":"Florin"}},{"attributes":{"name":"Dr. Jo Heathcote","age":41,"location":"Bayonne"}},{"attributes":{"name":"Loretta Wisoky","age":49,"location":"South Major"}},{"attributes":{"name":"Koby Schumm","age":21,"location":"East Malachiview"}},{"attributes":{"name":"Sonny Haley","age":35,"location":"East Eveview"}},{"attributes":{"name":"Owen Green","age":36,"location":"Hortenseville"}},{"attributes":{"name":"Sue Reynolds","age":76,"location":"Mission"}},{"attributes":{"name":"Dr. Greg Anderson","age":54,"location":"Birdieworth"}},{"attributes":{"name":"Loretta Bartoletti","age":51,"location":"East Kenyonboro"}},{"attributes":{"name":"Wilmer Wisozk","age":39,"location":"North Mathiasport"}},{"attributes":{"name":"Mr. Denis Herzog","age":40,"location":"Port Erling"}},{"attributes":{"name":"Joyce Spencer","age":42,"location":"Shreveport"}},{"attributes":{"name":"Eva Carter MD","age":51,"location":"South Haileeville"}},{"attributes":{"name":"Kelsi Bernhard","age":25,"location":"Wehnerchester"}},{"attributes":{"name":"Miss Laurie Skiles","age":34,"location":"West Harmonychester"}},{"attributes":{"name":"Dr. Greg Crona","age":28,"location":"Milford"}},{"attributes":{"name":"Nadine Ernser-Torphy DVM","age":58,"location":"Jacobsonfort"}},{"attributes":{"name":"Hilda Senger","age":70,"location":"Rosalynview"}},{"attributes":{"name":"Demario Kub","age":37,"location":"Eribertotown"}},{"attributes":{"name":"Virginia Huels-Rempel","age":60,"location":"Warren"}},{"attributes":{"name":"Dino Balistreri-Mitchell","age":61,"location":"Fort Chetfurt"}},{"attributes":{"name":"Laura Cronin","age":44,"location":"Treutelton"}},{"attributes":{"name":"Alison Mills","age":32,"location":"Port Weldonville"}},{"attributes":{"name":"Tiffany Beatty","age":54,"location":"North Kristy"}},{"attributes":{"name":"Elmore McKenzie","age":79,"location":"Dorthacester"}},{"attributes":{"name":"Garnett Beatty","age":70,"location":"Daly City"}},{"attributes":{"name":"Tom Kirlin","age":72,"location":"East Nicholaston"}},{"attributes":{"name":"Geraldine Lehner","age":54,"location":"Rogers"}},{"attributes":{"name":"Eloise Jast","age":21,"location":"South Mavisberg"}},{"attributes":{"name":"Spencer Gulgowski","age":43,"location":"Lake Reyes"}},{"attributes":{"name":"Graciela Ritchie","age":60,"location":"North Zachery"}},{"attributes":{"name":"Wilber Oberbrunner","age":72,"location":"South Lilian"}},{"attributes":{"name":"Genevieve Stark","age":76,"location":"Sengerstad"}},{"attributes":{"name":"Dr. Rolando Towne DDS","age":33,"location":"Boynton Beach"}},{"attributes":{"name":"Margie Hane","age":55,"location":"Parkerstead"}},{"attributes":{"name":"Pamela Pouros","age":57,"location":"Erdmanton"}},{"attributes":{"name":"Roslyn Rice","age":48,"location":"Freeport"}},{"attributes":{"name":"Bernice Barrows","age":44,"location":"Chanceboro"}},{"attributes":{"name":"Amber Mayer","age":49,"location":"North Lazaroborough"}},{"attributes":{"name":"Cedric Greenholt","age":61,"location":"San Mateo"}},{"attributes":{"name":"Tyshawn Abbott","age":31,"location":"Naderstead"}},{"attributes":{"name":"Enos Lynch","age":26,"location":"Port Terrillfurt"}},{"attributes":{"name":"Myrtle Carroll","age":62,"location":"West Adolphus"}},{"attributes":{"name":"Vernice Larkin","age":52,"location":"New Giles"}},{"attributes":{"name":"Mrs. Flora Dare PhD","age":80,"location":"Ransomborough"}},{"attributes":{"name":"Maryann Halvorson","age":57,"location":"New Mattcester"}},{"attributes":{"name":"Jett Mosciski","age":19,"location":"South Lexus"}},{"attributes":{"name":"Calvin Brekke-Kris","age":52,"location":"North Benstead"}},{"attributes":{"name":"Lynn Bauch","age":61,"location":"West Lesly"}},{"attributes":{"name":"Kristy Hickle","age":47,"location":"Lake Kayliebury"}},{"attributes":{"name":"Eric Runolfsson","age":38,"location":"Hyattfort"}},{"attributes":{"name":"Thelma Carter","age":79,"location":"North Eulalia"}},{"attributes":{"name":"Marlon Klein-Hermann","age":25,"location":"Idaho Falls"}},{"attributes":{"name":"Mrs. Ima Berge","age":78,"location":"South Leannastead"}},{"attributes":{"name":"Carla Crooks","age":31,"location":"New Laurianneside"}},{"attributes":{"name":"Roberto Block","age":75,"location":"West Bud"}},{"attributes":{"name":"Loretta Weimann","age":54,"location":"Bethlehem"}},{"attributes":{"name":"Rhoda Gottlieb Sr.","age":73,"location":"Chino"}},{"attributes":{"name":"Gustavo McClure MD","age":48,"location":"Waterloo"}},{"attributes":{"name":"Aryanna Goyette","age":45,"location":"Homenickton"}},{"attributes":{"name":"Gerald Kihn","age":69,"location":"Murray"}},{"attributes":{"name":"Miss Kayla Murray","age":78,"location":"Lelandburgh"}},{"attributes":{"name":"Christine Mitchell","age":50,"location":"Lake Arlie"}},{"attributes":{"name":"Cora Howe","age":43,"location":"Jaynebury"}},{"attributes":{"name":"Jimmie Bernier","age":53,"location":"Millcreek"}},{"attributes":{"name":"Brad Denesik","age":58,"location":"Fort Ronnyboro"}},{"attributes":{"name":"Carla Leannon","age":40,"location":"Pharr"}},{"attributes":{"name":"Gilberto Blick","age":60,"location":"Jenkinsmouth"}},{"attributes":{"name":"Geraldine Boyle V","age":63,"location":"South Dashawn"}},{"attributes":{"name":"Rachael Lockman","age":76,"location":"West Fayefort"}},{"attributes":{"name":"Shaun Fahey","age":43,"location":"Cicero"}},{"attributes":{"name":"Ms. Oscar Mayert","age":21,"location":"Connellyview"}},{"attributes":{"name":"Johnathan Collier-Padberg","age":26,"location":"Fort Shanelside"}},{"attributes":{"name":"Freddie Kub","age":40,"location":"Kipville"}},{"attributes":{"name":"Keyon Roberts","age":40,"location":"Maggioboro"}},{"attributes":{"name":"Petra Monahan","age":26,"location":"South Lavonne"}},{"attributes":{"name":"Adam Grant","age":19,"location":"Trudieberg"}},{"attributes":{"name":"Mable Jaskolski","age":74,"location":"North Sadyestead"}},{"attributes":{"name":"Ramiro Rohan V","age":29,"location":"East Delfina"}},{"attributes":{"name":"Lacy Morissette","age":23,"location":"New Cristianboro"}},{"attributes":{"name":"Dr. Adrian Ortiz","age":27,"location":"La Crosse"}},{"attributes":{"name":"Marielle Zieme","age":36,"location":"Aurora"}},{"attributes":{"name":"Mrs. Derrick Conn","age":33,"location":"Roweborough"}},{"attributes":{"name":"Violet Weber","age":67,"location":"Pourosworth"}},{"attributes":{"name":"Mary Mayer","age":49,"location":"South Lula"}},{"attributes":{"name":"Miss Gustavo Donnelly","age":65,"location":"Spring"}},{"attributes":{"name":"Garry Berge","age":24,"location":"West Rahul"}},{"attributes":{"name":"Santos Runolfsdottir","age":61,"location":"Petaluma"}},{"attributes":{"name":"Margie Carter","age":68,"location":"Carlsbad"}},{"attributes":{"name":"Martin Schulist II","age":72,"location":"Lake Napoleonchester"}},{"attributes":{"name":"Cathy Raynor","age":71,"location":"East Rod"}},{"attributes":{"name":"Norman Mitchell","age":70,"location":"Port Charlotte"}},{"attributes":{"name":"Marcus Hettinger MD","age":25,"location":"Shemarton"}},{"attributes":{"name":"Lonnie Franey II","age":66,"location":"East Adella"}},{"attributes":{"name":"Frida Heathcote","age":45,"location":"Lompoc"}},{"attributes":{"name":"Willard Bins","age":55,"location":"Helmerfield"}},{"attributes":{"name":"Lynn Koch","age":65,"location":"Emmiestead"}},{"attributes":{"name":"Tim Becker","age":44,"location":"North Taya"}},{"attributes":{"name":"Catherine Bergstrom","age":76,"location":"Blaisemouth"}},{"attributes":{"name":"Lynne Brown","age":80,"location":"North Clarabelle"}},{"attributes":{"name":"Raquel Kilback","age":50,"location":"Stillwater"}},{"attributes":{"name":"Jaime Kub-Yost","age":33,"location":"Zacharyhaven"}},{"attributes":{"name":"Ezekiel Jacobson","age":69,"location":"Port Aaron"}},{"attributes":{"name":"Dixie Dibbert","age":36,"location":"Garthside"}},{"attributes":{"name":"Everett Wilderman","age":36,"location":"West Casey"}},{"attributes":{"name":"Lyle Bernier I","age":69,"location":"Arianeshire"}},{"attributes":{"name":"Cathy Ankunding","age":66,"location":"Tracy"}},{"attributes":{"name":"Clyde Green","age":42,"location":"Carolchester"}},{"attributes":{"name":"Katrina Ritchie","age":27,"location":"Ashleighbury"}},{"attributes":{"name":"Elsie Wilkinson-Herman","age":29,"location":"Fort Brown"}},{"attributes":{"name":"Wilfred Ryan","age":57,"location":"East Trevashire"}},{"attributes":{"name":"Raheem Harvey","age":58,"location":"East Lauryn"}},{"attributes":{"name":"Carlton Ferry","age":58,"location":"Predovicbury"}},{"attributes":{"name":"Jared Davis","age":73,"location":"Lake Alda"}},{"attributes":{"name":"Anthony Fisher","age":23,"location":"West Assuntaside"}},{"attributes":{"name":"Candace Walter","age":78,"location":"Lake Kasandra"}},{"attributes":{"name":"Kaela Cummerata II","age":41,"location":"Hayesshire"}},{"attributes":{"name":"Shaniya Gerhold","age":32,"location":"VonRuedenview"}},{"attributes":{"name":"Irwin Herman V","age":66,"location":"Gardena"}},{"attributes":{"name":"Francisco Weissnat","age":64,"location":"Spokane Valley"}},{"attributes":{"name":"Jamie Klein","age":40,"location":"Dibbertfort"}},{"attributes":{"name":"Eduardo Kub","age":78,"location":"Willview"}},{"attributes":{"name":"Judy Fritsch","age":25,"location":"North Alison"}},{"attributes":{"name":"Martin Lubowitz","age":63,"location":"Rennerfort"}},{"attributes":{"name":"Evangeline Bernhard Sr.","age":38,"location":"New Bedford"}},{"attributes":{"name":"Sarah Strosin","age":66,"location":"Cincinnati"}},{"attributes":{"name":"Mindy Nicolas","age":31,"location":"West Keirahaven"}},{"attributes":{"name":"Van Ward","age":34,"location":"Lake Bobbieboro"}},{"attributes":{"name":"Layne Hoeger","age":79,"location":"Walkerfort"}},{"attributes":{"name":"Marvin Mills","age":51,"location":"New Clint"}},{"attributes":{"name":"Bert Oberbrunner","age":35,"location":"Fabiolashire"}},{"attributes":{"name":"Eugene Bashirian","age":39,"location":"Aloha"}},{"attributes":{"name":"Jazmyne Witting","age":56,"location":"South Hillard"}},{"attributes":{"name":"Ruby Dietrich","age":66,"location":"New Blaisetown"}},{"attributes":{"name":"Miss Billie Kessler","age":20,"location":"Kobestead"}},{"attributes":{"name":"Ms. Bonnie Bradtke","age":72,"location":"Prohaskaboro"}},{"attributes":{"name":"Jeffrey Grady","age":76,"location":"South Tarafurt"}},{"attributes":{"name":"Francis MacGyver","age":24,"location":"Fort Garthstead"}},{"attributes":{"name":"Torey Cassin","age":66,"location":"Shanelfurt"}},{"attributes":{"name":"Brendan Douglas DDS","age":60,"location":"East Nikita"}},{"attributes":{"name":"Lynette Hansen","age":27,"location":"Corona"}},{"attributes":{"name":"Pamela Mann","age":20,"location":"Reaganside"}},{"attributes":{"name":"Tabitha Simonis","age":76,"location":"Weissnatchester"}},{"attributes":{"name":"Dorthy Prohaska","age":76,"location":"Port Myrtice"}},{"attributes":{"name":"Erika Wunsch","age":63,"location":"Hampton"}},{"attributes":{"name":"Seth White","age":38,"location":"Huelsstead"}},{"attributes":{"name":"Dante Gusikowski","age":28,"location":"South Anastacio"}},{"attributes":{"name":"Camron Ondricka","age":62,"location":"Joannytown"}},{"attributes":{"name":"Alisa Wuckert","age":49,"location":"Potomac"}},{"attributes":{"name":"Sam Krajcik","age":78,"location":"Boehmhaven"}},{"attributes":{"name":"Lauren Thiel","age":70,"location":"Amparoworth"}},{"attributes":{"name":"Jared Haag","age":26,"location":"Port Jannie"}},{"attributes":{"name":"Dr. Georgia Heathcote PhD","age":47,"location":"Wymanton"}},{"attributes":{"name":"Earline Batz","age":66,"location":"South Lempiview"}},{"attributes":{"name":"Adell Trantow","age":51,"location":"Gillianside"}},{"attributes":{"name":"Lloyd Windler","age":46,"location":"Fort Bryon"}},{"attributes":{"name":"Earnest Zulauf","age":54,"location":"East Idellmouth"}},{"attributes":{"name":"Beth Wisoky II","age":53,"location":"Albuquerque"}},{"attributes":{"name":"Audie Willms","age":18,"location":"South Matilde"}},{"attributes":{"name":"Edna Lesch","age":28,"location":"St. Cloud"}},{"attributes":{"name":"Danielle Powlowski","age":80,"location":"Hilpertfort"}},{"attributes":{"name":"Gloria Sauer","age":68,"location":"Evansfield"}},{"attributes":{"name":"Kay Altenwerth","age":50,"location":"Vitostead"}},{"attributes":{"name":"Kerry McCullough","age":41,"location":"South Godfreyhaven"}},{"attributes":{"name":"Vernon Heidenreich DVM","age":45,"location":"New Marta"}},{"attributes":{"name":"Amely Howe","age":37,"location":"Emmettberg"}},{"attributes":{"name":"Hanna Mayer I","age":60,"location":"Mohrland"}},{"attributes":{"name":"Mr. Leo Ebert","age":47,"location":"East Velda"}},{"attributes":{"name":"Gloria Little","age":36,"location":"East Hanna"}},{"attributes":{"name":"Gary Wolf DDS","age":33,"location":"West Dixiemouth"}},{"attributes":{"name":"Rosalyn Pfeffer","age":21,"location":"Altenwerthview"}},{"attributes":{"name":"Nyah Schroeder","age":46,"location":"Pourosworth"}},{"attributes":{"name":"Leone Crist","age":53,"location":"South Estell"}},{"attributes":{"name":"Keven Leannon","age":32,"location":"Eltaberg"}},{"attributes":{"name":"Donnie Collier PhD","age":62,"location":"Port Rafaelafort"}},{"attributes":{"name":"Roberta O'Connell","age":51,"location":"Lake Armaniport"}},{"attributes":{"name":"Carole Schinner","age":24,"location":"Fort Juliusport"}},{"attributes":{"name":"Sanford Murazik","age":25,"location":"West Briceburgh"}},{"attributes":{"name":"Leonie Quitzon","age":64,"location":"Lake Evalyn"}},{"attributes":{"name":"Earnest Bailey","age":63,"location":"Westminster"}},{"attributes":{"name":"Roman O'Conner","age":58,"location":"Trujillo Alto"}},{"attributes":{"name":"Hattie Prohaska","age":21,"location":"Janelleshire"}},{"attributes":{"name":"Jon Wiza","age":48,"location":"Lake Makayla"}},{"attributes":{"name":"Eric O'Reilly","age":55,"location":"Terre Haute"}},{"attributes":{"name":"Belinda Schuster","age":44,"location":"Syracuse"}},{"attributes":{"name":"Dr. Claudine Vandervort","age":71,"location":"Evestad"}},{"attributes":{"name":"Kristoffer Dickens","age":21,"location":"Romatown"}},{"attributes":{"name":"Reed Heller","age":35,"location":"Lake Lisastead"}},{"attributes":{"name":"Constantin Cassin","age":60,"location":"West Hartford"}},{"attributes":{"name":"Brandon Mayert","age":67,"location":"Skileston"}},{"attributes":{"name":"Edgardo Haley Jr.","age":54,"location":"Lake Charityburgh"}},{"attributes":{"name":"Coty Rosenbaum","age":75,"location":"Lake Darleneville"}},{"attributes":{"name":"Nicola King","age":79,"location":"West Filiberto"}},{"attributes":{"name":"Terry Tremblay","age":59,"location":"Chattanooga"}},{"attributes":{"name":"Trevor Gutkowski","age":37,"location":"East Bellaview"}},{"attributes":{"name":"Carlos Donnelly","age":28,"location":"Sheboygan"}},{"attributes":{"name":"Kale Parker","age":34,"location":"South Sigurdstead"}},{"attributes":{"name":"Cary Pacocha DVM","age":61,"location":"Port Benny"}},{"attributes":{"name":"Geovany Keeling","age":37,"location":"Webershire"}},{"attributes":{"name":"Myriam Bergstrom","age":75,"location":"Reichertburgh"}},{"attributes":{"name":"Mr. Gerald Corkery","age":43,"location":"Bentontown"}},{"attributes":{"name":"Rolando Effertz-Gleason","age":78,"location":"Logan"}},{"attributes":{"name":"Wilbert Cruickshank-Gusikowski","age":35,"location":"Hanford"}},{"attributes":{"name":"Vivian Johns","age":80,"location":"Elizabeth"}},{"attributes":{"name":"Camille Ward","age":71,"location":"Melodycester"}},{"attributes":{"name":"Marcella Hettinger","age":80,"location":"Raymondview"}},{"attributes":{"name":"Sheridan Mitchell","age":44,"location":"North Agustinside"}},{"attributes":{"name":"Natalie Lakin","age":78,"location":"State College"}},{"attributes":{"name":"Buddy Aufderhar","age":46,"location":"Adamview"}},{"attributes":{"name":"Otis Schulist","age":31,"location":"Lake Richie"}},{"attributes":{"name":"Shelia King","age":30,"location":"Herzogworth"}},{"attributes":{"name":"Leona Schmidt","age":63,"location":"Jeramieberg"}},{"attributes":{"name":"Tamara Wilderman","age":57,"location":"Braxtonbury"}},{"attributes":{"name":"Isac Ernser","age":43,"location":"Port Orange"}},{"attributes":{"name":"Bessie Orn-Graham","age":24,"location":"Chico"}},{"attributes":{"name":"Noah Pacocha","age":74,"location":"West Delmerworth"}},{"attributes":{"name":"Marlen Fisher","age":43,"location":"North Shane"}},{"attributes":{"name":"Dr. Floyd Parisian","age":67,"location":"Bayerfurt"}},{"attributes":{"name":"Pamela Jacobs III","age":66,"location":"Stacyside"}},{"attributes":{"name":"Miss Rex Douglas","age":77,"location":"East Kalebstead"}},{"attributes":{"name":"Virgil Conroy","age":53,"location":"Parker"}},{"attributes":{"name":"Juan Kutch","age":61,"location":"Novamouth"}},{"attributes":{"name":"Celine Morar","age":78,"location":"Antwanfurt"}},{"attributes":{"name":"Rebeca Kuvalis-Klocko","age":26,"location":"Karsonland"}},{"attributes":{"name":"Russel Borer","age":73,"location":"Lake Barrettfurt"}},{"attributes":{"name":"Darrell Feil","age":73,"location":"Port Laurelland"}},{"attributes":{"name":"Michele Breitenberg","age":69,"location":"Lowell"}},{"attributes":{"name":"Greg Kunde","age":48,"location":"Somerville"}},{"attributes":{"name":"Miss Kate Ferry","age":24,"location":"Fort Ellsworth"}},{"attributes":{"name":"Faith Hand","age":52,"location":"South Virgil"}},{"attributes":{"name":"Doris Rowe","age":62,"location":"South Oralborough"}},{"attributes":{"name":"Patrick Stehr","age":73,"location":"Lake Emmalee"}},{"attributes":{"name":"Clyde Bode","age":77,"location":"Hammond"}},{"attributes":{"name":"Mr. Duane Oberbrunner Jr.","age":25,"location":"Fort Princessfield"}},{"attributes":{"name":"Charlie Hirthe","age":51,"location":"North Bartholomeview"}},{"attributes":{"name":"Prince Hettinger","age":73,"location":"Cummingsmouth"}},{"attributes":{"name":"Tyson Lindgren","age":21,"location":"North Natcester"}},{"attributes":{"name":"Carissa Franey","age":34,"location":"Hadleyworth"}},{"attributes":{"name":"Mrs. Anne Becker","age":53,"location":"East Emmastead"}},{"attributes":{"name":"Dr. Vicky Schmitt","age":27,"location":"Nolanfield"}},{"attributes":{"name":"Carley Spinka","age":22,"location":"Jacobsonshire"}},{"attributes":{"name":"Troy Hauck","age":21,"location":"Bradview"}},{"attributes":{"name":"Prudence Hilll","age":27,"location":"Quigleyberg"}},{"attributes":{"name":"Mrs. Mae Yost","age":75,"location":"Chancebury"}},{"attributes":{"name":"Mac Trantow Sr.","age":52,"location":"Rosenbaumstead"}},{"attributes":{"name":"Milton Kohler","age":39,"location":"South Kathleenfurt"}},{"attributes":{"name":"Cruz Stark","age":79,"location":"Livonia"}},{"attributes":{"name":"Ellis Heller Jr.","age":52,"location":"Macyburgh"}},{"attributes":{"name":"Cleo Maggio","age":62,"location":"New Sandy"}},{"attributes":{"name":"Izabella Hudson II","age":72,"location":"Glen Burnie"}},{"attributes":{"name":"Elvie Kihn","age":67,"location":"South Garrison"}},{"attributes":{"name":"Renee Ledner","age":34,"location":"Fort Mitchell"}},{"attributes":{"name":"Aletha Lang","age":40,"location":"East Valentineview"}},{"attributes":{"name":"Angel Lind","age":33,"location":"Cummingsberg"}},{"attributes":{"name":"Dr. Ebony O'Hara","age":35,"location":"National City"}},{"attributes":{"name":"Johnathan Marks DVM","age":52,"location":"Tyrellchester"}},{"attributes":{"name":"Doreen Klocko","age":40,"location":"New Richmondchester"}},{"attributes":{"name":"Tanya Batz","age":70,"location":"Temple"}},{"attributes":{"name":"Alfred Koelpin","age":53,"location":"Goyettestad"}},{"attributes":{"name":"Nora Zboncak","age":49,"location":"South Ruth"}},{"attributes":{"name":"Concepcion Beier II","age":37,"location":"Tristinton"}},{"attributes":{"name":"Grace Kassulke","age":75,"location":"Labadieworth"}},{"attributes":{"name":"Elizabeth Crona DDS","age":34,"location":"Miracleshire"}},{"attributes":{"name":"Randolph Lueilwitz","age":25,"location":"Domenicktown"}},{"attributes":{"name":"Leland Wisozk","age":22,"location":"Romanworth"}},{"attributes":{"name":"Susie Morissette","age":20,"location":"West Marlon"}},{"attributes":{"name":"Rodolfo Lind","age":76,"location":"Oberbrunnerfield"}},{"attributes":{"name":"Micah Larson","age":51,"location":"New Jaylinfurt"}},{"attributes":{"name":"Kate Hoppe-Kassulke","age":56,"location":"South Cynthia"}},{"attributes":{"name":"Dr. Geoffrey Ernser","age":47,"location":"North Rafaelfort"}},{"attributes":{"name":"Mr. Marjorie Sawayn","age":32,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Darryl Schiller","age":22,"location":"Annandale"}},{"attributes":{"name":"Rufus Turcotte Jr.","age":22,"location":"Lake Shyanne"}},{"attributes":{"name":"Citlalli Wisoky","age":49,"location":"New Joville"}},{"attributes":{"name":"Kim Altenwerth","age":62,"location":"North Nicola"}},{"attributes":{"name":"Ernesto Mayer","age":40,"location":"MacGyverbury"}},{"attributes":{"name":"Abraham Thompson","age":62,"location":"Eden Prairie"}},{"attributes":{"name":"Shannon Ritchie","age":60,"location":"Janieton"}},{"attributes":{"name":"Miss Jacinto Hoppe","age":25,"location":"Fort Kristin"}},{"attributes":{"name":"Freddy Ledner","age":26,"location":"Trentborough"}},{"attributes":{"name":"Dell Brakus","age":30,"location":"New Mohammed"}},{"attributes":{"name":"Karen Schuppe","age":68,"location":"Luettgencester"}},{"attributes":{"name":"Marsha Nikolaus","age":75,"location":"Arvidport"}},{"attributes":{"name":"Jermey Gleichner","age":74,"location":"Philadelphia"}},{"attributes":{"name":"Sean Daugherty","age":44,"location":"West Briana"}},{"attributes":{"name":"Iliana Rogahn DDS","age":38,"location":"Corwinland"}},{"attributes":{"name":"Miss Delbert Cole","age":52,"location":"Madieburgh"}},{"attributes":{"name":"Morris Hintz","age":52,"location":"Port Cynthiachester"}},{"attributes":{"name":"Mr. Nannie Hermiston","age":64,"location":"West Jaeden"}},{"attributes":{"name":"Karley Turner","age":32,"location":"Sengerhaven"}},{"attributes":{"name":"Ms. Jessica Greenfelder","age":44,"location":"Assuntaborough"}},{"attributes":{"name":"Raegan Fadel II","age":28,"location":"Tyreetown"}},{"attributes":{"name":"Ms. Cedrick Marks","age":60,"location":"Fort Haileeboro"}},{"attributes":{"name":"Mr. Bill Kirlin","age":36,"location":"East Casey"}},{"attributes":{"name":"Susanna Feeney-Thompson","age":25,"location":"Oceanside"}},{"attributes":{"name":"Miss Erma Kling IV","age":49,"location":"Lake Seamus"}},{"attributes":{"name":"Rowan Shanahan","age":43,"location":"South Edgar"}},{"attributes":{"name":"Brad Beer","age":31,"location":"Horacefield"}},{"attributes":{"name":"Felipe Ryan","age":18,"location":"Kreigerville"}},{"attributes":{"name":"Rylee Kub","age":79,"location":"Covina"}},{"attributes":{"name":"Darin Jakubowski Jr.","age":50,"location":"Topeka"}},{"attributes":{"name":"Lynn Wisoky Sr.","age":25,"location":"Fort Clementview"}},{"attributes":{"name":"Antonia Waters DDS","age":19,"location":"Lake Dorris"}},{"attributes":{"name":"Antonietta Williamson","age":51,"location":"South Chelsea"}},{"attributes":{"name":"Joan Mraz","age":71,"location":"Clayberg"}},{"attributes":{"name":"Ramiro Hand","age":77,"location":"Coral Gables"}},{"attributes":{"name":"Kelley Turcotte III","age":48,"location":"Santa Maria"}},{"attributes":{"name":"Jeanette Dooley","age":58,"location":"North Dariana"}},{"attributes":{"name":"Jayme Wolff","age":31,"location":"East Genevieve"}},{"attributes":{"name":"Hans Beahan","age":53,"location":"Batzview"}},{"attributes":{"name":"Loy Botsford","age":26,"location":"Lancaster"}},{"attributes":{"name":"Dr. Jessica Schulist","age":53,"location":"Collinsburgh"}},{"attributes":{"name":"Peter King","age":69,"location":"New Marianne"}},{"attributes":{"name":"Justus Wilkinson","age":36,"location":"Port Francescochester"}},{"attributes":{"name":"Louise Jerde","age":45,"location":"Shieldsfort"}},{"attributes":{"name":"Miss Kristine Skiles","age":47,"location":"North Ulicesburgh"}},{"attributes":{"name":"Teri Orn II","age":57,"location":"East Rickiefort"}},{"attributes":{"name":"Kristin Flatley","age":33,"location":"Elgin"}},{"attributes":{"name":"Sheila Block","age":65,"location":"Reaganworth"}},{"attributes":{"name":"Jeremie Wyman","age":27,"location":"Grahamstead"}},{"attributes":{"name":"Rudolph Kirlin","age":59,"location":"Huelsfurt"}},{"attributes":{"name":"Gerald Aufderhar","age":48,"location":"Manteca"}},{"attributes":{"name":"Jermaine Schmitt","age":74,"location":"Walnut Creek"}},{"attributes":{"name":"Orlo Mills","age":49,"location":"East Fredview"}},{"attributes":{"name":"Jim Marvin","age":53,"location":"Harveyfort"}},{"attributes":{"name":"Maria O'Kon","age":37,"location":"North Theresiachester"}},{"attributes":{"name":"Lorene Baumbach","age":74,"location":"East Veronicafurt"}},{"attributes":{"name":"Amelia Thompson","age":63,"location":"Huntersville"}},{"attributes":{"name":"Suzanne Bergstrom","age":54,"location":"Buffalo Grove"}},{"attributes":{"name":"Halle Bernier","age":38,"location":"Elkhart"}},{"attributes":{"name":"Mrs. Carrie Ritchie","age":25,"location":"Camarillo"}},{"attributes":{"name":"Tomas Romaguera","age":45,"location":"Russelland"}},{"attributes":{"name":"Don Leannon","age":37,"location":"Morganview"}},{"attributes":{"name":"Merl Stokes","age":34,"location":"South Sheridan"}},{"attributes":{"name":"Mrs. Ava Zemlak","age":32,"location":"Osbaldofort"}},{"attributes":{"name":"Larry Kuvalis","age":53,"location":"Joanyberg"}},{"attributes":{"name":"Carlos Watsica III","age":26,"location":"Bertramshire"}},{"attributes":{"name":"Jane Schimmel","age":28,"location":"New Cale"}},{"attributes":{"name":"Michaela Veum I","age":26,"location":"Fort Ward"}},{"attributes":{"name":"Troy Altenwerth","age":20,"location":"Eulaport"}},{"attributes":{"name":"Major Schuppe Sr.","age":51,"location":"North Marcelino"}},{"attributes":{"name":"Rogelio Volkman","age":74,"location":"New Amber"}},{"attributes":{"name":"Irving Dicki","age":18,"location":"Bethesda"}},{"attributes":{"name":"Karen Hammes MD","age":19,"location":"Seanboro"}},{"attributes":{"name":"Lemuel Becker","age":57,"location":"New Karley"}},{"attributes":{"name":"Roosevelt Blick","age":49,"location":"Fort Carmellamouth"}},{"attributes":{"name":"Braulio Goodwin Jr.","age":75,"location":"Evansville"}},{"attributes":{"name":"Walter Gutmann","age":22,"location":"Ashburn"}},{"attributes":{"name":"Tyler Lemke","age":62,"location":"East Cristinacester"}},{"attributes":{"name":"Cristopher Weissnat","age":40,"location":"North Domenica"}},{"attributes":{"name":"Trevor Powlowski","age":50,"location":"South Janie"}},{"attributes":{"name":"Ernestina Kunze","age":28,"location":"Wymanshire"}},{"attributes":{"name":"Miss Meagan Lindgren","age":49,"location":"Claireside"}},{"attributes":{"name":"Baby Cartwright","age":51,"location":"Lailaland"}},{"attributes":{"name":"Whitney Pfeffer","age":23,"location":"Elyria"}},{"attributes":{"name":"Albin Leuschke","age":21,"location":"Fort Marlonburgh"}},{"attributes":{"name":"Kiara Hettinger","age":60,"location":"Chico"}},{"attributes":{"name":"Ismael Shanahan","age":52,"location":"East Aryanna"}},{"attributes":{"name":"Milton Johns","age":41,"location":"West Malcolmchester"}},{"attributes":{"name":"Cynthia Bahringer I","age":32,"location":"East Lucas"}},{"attributes":{"name":"Margie Quigley","age":34,"location":"Buckridgestad"}},{"attributes":{"name":"Lucille Zulauf","age":43,"location":"West Jay"}},{"attributes":{"name":"Mrs. Freeda Hoppe","age":39,"location":"Arvada"}},{"attributes":{"name":"Gregory Orn","age":72,"location":"Evelynville"}},{"attributes":{"name":"Jan Jones V","age":68,"location":"South Ethylstead"}},{"attributes":{"name":"Barry Effertz","age":52,"location":"Burien"}},{"attributes":{"name":"Tyson Hansen","age":76,"location":"York"}},{"attributes":{"name":"Lula Graham","age":67,"location":"West Jocelynstad"}},{"attributes":{"name":"Lionel Lowe","age":34,"location":"North Danmouth"}},{"attributes":{"name":"Patience Jakubowski","age":30,"location":"New Yasmineville"}},{"attributes":{"name":"Denis Prosacco III","age":59,"location":"Lonport"}},{"attributes":{"name":"Kristi Rice","age":25,"location":"Kutchside"}},{"attributes":{"name":"Roman Hilll","age":27,"location":"Adamsville"}},{"attributes":{"name":"Terence Osinski","age":18,"location":"New Mariaview"}},{"attributes":{"name":"Ben Spencer","age":74,"location":"Fort Corinetown"}},{"attributes":{"name":"Mathew McClure II","age":60,"location":"New Ethelynberg"}},{"attributes":{"name":"Stephanie Franecki","age":38,"location":"Wittingport"}},{"attributes":{"name":"Carlos Langworth","age":74,"location":"Stephanyfort"}},{"attributes":{"name":"Eric Orn-Baumbach","age":57,"location":"North Issacborough"}},{"attributes":{"name":"Christina Larkin","age":38,"location":"Antoninaville"}},{"attributes":{"name":"Nia Rau","age":48,"location":"Batzfurt"}},{"attributes":{"name":"Frederick Nolan","age":72,"location":"Port Kelli"}},{"attributes":{"name":"John Rohan Jr.","age":21,"location":"Maricopa"}},{"attributes":{"name":"Bob Rogahn","age":37,"location":"Bellflower"}},{"attributes":{"name":"Lee Pagac","age":61,"location":"West Zetta"}},{"attributes":{"name":"Finn Bartell","age":66,"location":"Romainetown"}},{"attributes":{"name":"Joann Wilkinson","age":76,"location":"Winonastad"}},{"attributes":{"name":"Perry Connelly","age":44,"location":"Mentor"}},{"attributes":{"name":"Aaron Bogisich","age":75,"location":"Lake Ariel"}},{"attributes":{"name":"Owen Kohler","age":28,"location":"Gutmannchester"}},{"attributes":{"name":"Branson Franecki","age":34,"location":"Texas City"}},{"attributes":{"name":"Ashley Ratke","age":57,"location":"South Baylee"}},{"attributes":{"name":"Nelson Hane","age":19,"location":"Port Stacey"}},{"attributes":{"name":"Allan Ankunding IV","age":39,"location":"Ann Arbor"}},{"attributes":{"name":"Darrell O'Keefe","age":18,"location":"Chapel Hill"}},{"attributes":{"name":"Angel Yost","age":25,"location":"Lake Rubyeburgh"}},{"attributes":{"name":"Annie Kemmer","age":50,"location":"Fort Susie"}},{"attributes":{"name":"Gilbert Rempel","age":71,"location":"Fullerton"}},{"attributes":{"name":"Dallas DuBuque Sr.","age":46,"location":"Pourosbury"}},{"attributes":{"name":"Mr. Idell Kohler","age":49,"location":"North Ellencester"}},{"attributes":{"name":"Jerry Jenkins","age":26,"location":"North Clotildetown"}},{"attributes":{"name":"Wendell Hegmann","age":18,"location":"Appleton"}},{"attributes":{"name":"Kailee O'Kon","age":58,"location":"North Jacquesstad"}},{"attributes":{"name":"Ron Huels","age":43,"location":"New Priceport"}},{"attributes":{"name":"Meggie Gerhold V","age":31,"location":"Port Alva"}},{"attributes":{"name":"Rickey Kulas III","age":51,"location":"North Dejachester"}},{"attributes":{"name":"Janice Rath","age":23,"location":"Eagan"}},{"attributes":{"name":"Dr. Oliver Schuster","age":34,"location":"New Kylabury"}},{"attributes":{"name":"Margaret Cruickshank","age":26,"location":"Rempelshire"}},{"attributes":{"name":"Anibal Beer IV","age":60,"location":"Castro Valley"}},{"attributes":{"name":"Emely Koss","age":19,"location":"North Helen"}},{"attributes":{"name":"Lourdes Ullrich","age":27,"location":"Rockwall"}},{"attributes":{"name":"Cole Pfeffer","age":45,"location":"Sawaynport"}},{"attributes":{"name":"Madelynn Goodwin","age":25,"location":"East Jacklyn"}},{"attributes":{"name":"Norman Boyer V","age":40,"location":"Gerholdchester"}},{"attributes":{"name":"Isaias Ernser","age":66,"location":"Liamport"}},{"attributes":{"name":"Rufus Jenkins","age":43,"location":"Davie"}},{"attributes":{"name":"Fernando Franecki","age":68,"location":"West Rudyborough"}},{"attributes":{"name":"Domenica Purdy","age":24,"location":"Bartellside"}},{"attributes":{"name":"Clara Pouros-Schmitt","age":39,"location":"South Katrina"}},{"attributes":{"name":"Tyler Wintheiser","age":48,"location":"South Keyshawn"}},{"attributes":{"name":"Nancy Skiles","age":56,"location":"Friedrichmouth"}},{"attributes":{"name":"Debra Paucek","age":77,"location":"Bechtelarside"}},{"attributes":{"name":"Lance Lemke-Ullrich","age":30,"location":"Kurtisfield"}},{"attributes":{"name":"Andrew Mitchell","age":49,"location":"Russelmouth"}},{"attributes":{"name":"Malachi Goyette","age":33,"location":"New Effiefurt"}},{"attributes":{"name":"Ebba Champlin PhD","age":32,"location":"Mohrworth"}},{"attributes":{"name":"Anibal Windler","age":36,"location":"Lake Lukasbury"}},{"attributes":{"name":"Ellis Hammes","age":51,"location":"Boynton Beach"}},{"attributes":{"name":"Chet Howe","age":67,"location":"Burleson"}},{"attributes":{"name":"Holly Bechtelar","age":45,"location":"Port Priscillamouth"}},{"attributes":{"name":"Edward Renner","age":23,"location":"East Annieworth"}},{"attributes":{"name":"Doreen Lebsack","age":73,"location":"West Coralie"}},{"attributes":{"name":"Maureen Mayert","age":30,"location":"Trentonbury"}},{"attributes":{"name":"Cameron Haag","age":28,"location":"Armstrongstad"}},{"attributes":{"name":"Lena Grimes","age":72,"location":"North Stacybury"}},{"attributes":{"name":"Calvin Leffler","age":46,"location":"McLaughlinland"}},{"attributes":{"name":"Pearlie Cremin","age":60,"location":"South Estefaniachester"}},{"attributes":{"name":"Tate Waelchi Jr.","age":57,"location":"Ryleighburgh"}},{"attributes":{"name":"Pedro Deckow","age":19,"location":"Alpharetta"}},{"attributes":{"name":"Lewis Heaney","age":22,"location":"Jovanfort"}},{"attributes":{"name":"Gregory Harvey PhD","age":38,"location":"Rosemarieport"}},{"attributes":{"name":"Kelli Pouros-Bernier","age":66,"location":"North Highlands"}},{"attributes":{"name":"Roosevelt Gerlach","age":31,"location":"East Chaunceyborough"}},{"attributes":{"name":"Julia Barrows","age":42,"location":"Port Neal"}},{"attributes":{"name":"Carlos DuBuque","age":22,"location":"Burke"}},{"attributes":{"name":"Mr. Jamarcus Mosciski","age":47,"location":"League City"}},{"attributes":{"name":"Reilly Davis","age":78,"location":"Schroedertown"}},{"attributes":{"name":"Richmond Stehr","age":30,"location":"West Juston"}},{"attributes":{"name":"Rita Feest","age":50,"location":"Kingfield"}},{"attributes":{"name":"Christian Hyatt","age":54,"location":"East Daniella"}},{"attributes":{"name":"Dr. Joey Olson","age":79,"location":"New Athena"}},{"attributes":{"name":"Vincent Schaefer","age":55,"location":"Ryannworth"}},{"attributes":{"name":"Kristy Kling","age":18,"location":"New Genoveva"}},{"attributes":{"name":"Federico Collier","age":66,"location":"Noemiville"}},{"attributes":{"name":"Dave Christiansen","age":25,"location":"Flagstaff"}},{"attributes":{"name":"Lola Stoltenberg I","age":46,"location":"Lake Harrisonboro"}},{"attributes":{"name":"Haven Pfeffer","age":72,"location":"Port Margeland"}},{"attributes":{"name":"Trevor Nolan","age":78,"location":"Fort Stephany"}},{"attributes":{"name":"Zelda Kertzmann","age":36,"location":"East Earnestport"}},{"attributes":{"name":"Meaghan O'Hara","age":78,"location":"East Timothyshire"}},{"attributes":{"name":"Audie Feeney","age":69,"location":"South Trevionberg"}},{"attributes":{"name":"Kayleigh Halvorson","age":37,"location":"Fort Candice"}},{"attributes":{"name":"Leo Green","age":59,"location":"Pfefferborough"}},{"attributes":{"name":"Theresia Stamm","age":44,"location":"South Kaletown"}},{"attributes":{"name":"Marilou Vandervort","age":53,"location":"Littelborough"}},{"attributes":{"name":"Janie McGlynn","age":68,"location":"Jacobimouth"}},{"attributes":{"name":"Gordon Volkman","age":58,"location":"Gussiechester"}},{"attributes":{"name":"Olga D'Amore MD","age":73,"location":"Karelleshire"}},{"attributes":{"name":"Dwight Howell","age":34,"location":"Bell Gardens"}},{"attributes":{"name":"Miss Francisco Glover","age":47,"location":"Scotfort"}},{"attributes":{"name":"Rosemarie Jacobson DDS","age":52,"location":"Fannymouth"}},{"attributes":{"name":"Nicolas Crist","age":43,"location":"Friesenfurt"}},{"attributes":{"name":"Terrell Breitenberg-Feest DVM","age":24,"location":"East Zelmaberg"}},{"attributes":{"name":"Mr. Akeem Gottlieb","age":60,"location":"North Haleigh"}},{"attributes":{"name":"Precious Moen","age":70,"location":"Dorthaboro"}},{"attributes":{"name":"Irvin Raynor","age":30,"location":"Danniestead"}},{"attributes":{"name":"Kristine Crist III","age":43,"location":"South Kaydenstad"}},{"attributes":{"name":"Dominick White","age":49,"location":"North Eric"}},{"attributes":{"name":"Mrs. Kade Altenwerth","age":39,"location":"Emersonton"}},{"attributes":{"name":"Jenna Gislason","age":50,"location":"Windlerstead"}},{"attributes":{"name":"Timothy Hand","age":34,"location":"Nataliemouth"}},{"attributes":{"name":"Rachael Ondricka","age":74,"location":"Mansfield"}},{"attributes":{"name":"Jeromy Romaguera","age":42,"location":"Raleigh"}},{"attributes":{"name":"Gwen Dare","age":33,"location":"Gerryworth"}},{"attributes":{"name":"Bethany Miller","age":45,"location":"New Joannyville"}},{"attributes":{"name":"Blanca Dietrich","age":28,"location":"St. George"}},{"attributes":{"name":"Debbie Aufderhar","age":50,"location":"Chapel Hill"}},{"attributes":{"name":"Brandy D'Amore","age":34,"location":"Hannahshire"}},{"attributes":{"name":"Darian Hayes","age":72,"location":"Lake Kenny"}},{"attributes":{"name":"Nancy Ortiz Jr.","age":26,"location":"Kertzmannview"}},{"attributes":{"name":"Carla Runolfsdottir","age":48,"location":"Phoenix"}},{"attributes":{"name":"Ramiro Casper","age":43,"location":"Georgetown"}},{"attributes":{"name":"Kyleigh Mayer","age":23,"location":"Burleson"}},{"attributes":{"name":"Elissa Harber","age":34,"location":"South Mina"}},{"attributes":{"name":"Allene McDermott Jr.","age":54,"location":"Denton"}},{"attributes":{"name":"Otis O'Reilly","age":20,"location":"Lake Havasu City"}},{"attributes":{"name":"Jaylan Emard","age":54,"location":"Lakinfield"}},{"attributes":{"name":"Adolphus Johnson","age":58,"location":"Fort Brett"}},{"attributes":{"name":"Timothy Botsford","age":41,"location":"New Imelda"}},{"attributes":{"name":"Rhonda Reilly","age":37,"location":"West Ricoworth"}},{"attributes":{"name":"Casey Mayert","age":77,"location":"Fort Osborne"}},{"attributes":{"name":"Litzy Murphy","age":80,"location":"Sanfordside"}},{"attributes":{"name":"Kara Simonis","age":53,"location":"Aliciafurt"}},{"attributes":{"name":"Leland Cruickshank","age":79,"location":"East Cedrick"}},{"attributes":{"name":"Luella Trantow","age":37,"location":"Giovanihaven"}},{"attributes":{"name":"Scott Waters","age":54,"location":"Port Abigayle"}},{"attributes":{"name":"Ernesto Stark","age":71,"location":"New Itzel"}},{"attributes":{"name":"Maida Rippin","age":22,"location":"New Dorriston"}},{"attributes":{"name":"Erna Nolan","age":65,"location":"Nienowstad"}},{"attributes":{"name":"Garrison Schumm","age":33,"location":"West Jasen"}},{"attributes":{"name":"Christina Brekke-Waters IV","age":63,"location":"Lomaborough"}},{"attributes":{"name":"Jessica Grant","age":23,"location":"West Araland"}},{"attributes":{"name":"Marlon Swaniawski","age":37,"location":"Georgiannastad"}},{"attributes":{"name":"Herminia Quitzon","age":70,"location":"Miloland"}},{"attributes":{"name":"Coty Halvorson I","age":46,"location":"South Khalilshire"}},{"attributes":{"name":"Kassandra Haley","age":77,"location":"Davie"}},{"attributes":{"name":"Tara Ryan","age":49,"location":"Deonmouth"}},{"attributes":{"name":"Sonja Kassulke","age":41,"location":"Sawaynfort"}},{"attributes":{"name":"Fernando Harris","age":38,"location":"South Wilhelmburgh"}},{"attributes":{"name":"Austin Prosacco","age":72,"location":"North Trent"}},{"attributes":{"name":"Paxton Rau","age":36,"location":"Port Dameoncester"}},{"attributes":{"name":"Joshua Hansen","age":55,"location":"Visalia"}},{"attributes":{"name":"Jan Tremblay","age":78,"location":"Leacester"}},{"attributes":{"name":"Mr. Percy Glover","age":38,"location":"Liaview"}},{"attributes":{"name":"Johnpaul Jenkins","age":43,"location":"Karlstad"}},{"attributes":{"name":"Kathryn Cassin V","age":59,"location":"Sylvesterfurt"}},{"attributes":{"name":"Virgil Stehr","age":35,"location":"West Rupert"}},{"attributes":{"name":"Dr. Elsie Feeney","age":45,"location":"Bethchester"}},{"attributes":{"name":"Dr. Monserrate Wilkinson","age":76,"location":"South San Francisco"}},{"attributes":{"name":"Vicente Marks III","age":55,"location":"Torranceton"}},{"attributes":{"name":"Paxton Upton Jr.","age":43,"location":"West Kaitlynside"}},{"attributes":{"name":"Bob Lemke","age":74,"location":"Hollywood"}},{"attributes":{"name":"Pablo Cartwright III","age":64,"location":"North Barney"}},{"attributes":{"name":"Estevan Price","age":49,"location":"Lehi"}},{"attributes":{"name":"Faith Nader","age":37,"location":"Hansenburgh"}},{"attributes":{"name":"Brayan Lakin","age":57,"location":"Atlanta"}},{"attributes":{"name":"Cathy Hagenes","age":59,"location":"Lake Ethel"}},{"attributes":{"name":"Alyssa Johnson MD","age":23,"location":"Redding"}},{"attributes":{"name":"Guiseppe Langworth","age":51,"location":"Uriahside"}},{"attributes":{"name":"Tyra Gleason","age":71,"location":"Neilville"}},{"attributes":{"name":"Casimir Gleason","age":62,"location":"New Bailey"}},{"attributes":{"name":"Marcos Ebert V","age":45,"location":"Fort Nicolaberg"}},{"attributes":{"name":"Maurice Kiehn","age":42,"location":"Lake Werner"}},{"attributes":{"name":"Mattie Spinka","age":21,"location":"Rochester Hills"}},{"attributes":{"name":"Russell Heidenreich I","age":22,"location":"Smithville"}},{"attributes":{"name":"Josie Johnston","age":35,"location":"Justusfield"}},{"attributes":{"name":"Dr. Oscar Beatty","age":61,"location":"Selinaboro"}},{"attributes":{"name":"Lindsay Lesch DVM","age":34,"location":"Katherineshire"}},{"attributes":{"name":"Orlando Adams","age":47,"location":"Alannachester"}},{"attributes":{"name":"Elise Jaskolski","age":51,"location":"New Carloschester"}},{"attributes":{"name":"Jan Metz","age":51,"location":"Thorastad"}},{"attributes":{"name":"Mr. Tyler Graham","age":69,"location":"Lake Efrenboro"}},{"attributes":{"name":"Daphney Rau","age":24,"location":"South Jarrod"}},{"attributes":{"name":"Michele Hamill","age":57,"location":"East Ryleeburgh"}},{"attributes":{"name":"Makenzie Paucek","age":64,"location":"Raphaelshire"}},{"attributes":{"name":"Jon Kohler","age":73,"location":"Fort Raul"}},{"attributes":{"name":"Dusty Bruen","age":56,"location":"Tinley Park"}},{"attributes":{"name":"Corey Hettinger","age":20,"location":"East Luther"}},{"attributes":{"name":"Jeannie Emard-Larson","age":53,"location":"Hanford"}},{"attributes":{"name":"Lula Cronin","age":51,"location":"Lake Lindsayberg"}},{"attributes":{"name":"Junius Hand","age":77,"location":"Blandaport"}},{"attributes":{"name":"Willis Block II","age":71,"location":"Ikefurt"}},{"attributes":{"name":"Lee Hegmann","age":47,"location":"North Burnice"}},{"attributes":{"name":"Valerie West","age":58,"location":"Shieldsland"}},{"attributes":{"name":"Kylie Bins","age":51,"location":"West Lillian"}},{"attributes":{"name":"Ronald Brakus","age":21,"location":"West Milan"}},{"attributes":{"name":"Darren Lowe","age":26,"location":"Santa Cruz"}},{"attributes":{"name":"Gwen Langosh","age":64,"location":"West Garrett"}},{"attributes":{"name":"Dr. Doreen Aufderhar","age":59,"location":"Schulistmouth"}},{"attributes":{"name":"Maximus Turner","age":79,"location":"Pico Rivera"}},{"attributes":{"name":"Clarissa Bernier","age":64,"location":"West Laurie"}},{"attributes":{"name":"Glen Powlowski","age":59,"location":"East Tremayne"}},{"attributes":{"name":"Alma Kutch","age":26,"location":"Lake Otho"}},{"attributes":{"name":"Cole Crooks","age":32,"location":"Kelsieshire"}},{"attributes":{"name":"Reanna Funk","age":20,"location":"Lake Alysha"}},{"attributes":{"name":"Otho Price","age":28,"location":"New Unique"}},{"attributes":{"name":"Geneva Bailey","age":69,"location":"Ivaboro"}},{"attributes":{"name":"Mrs. Roxanne Kessler-Huels","age":32,"location":"Lemkefield"}},{"attributes":{"name":"Nicolas Hegmann","age":18,"location":"Feltonstad"}},{"attributes":{"name":"Dessie Kshlerin","age":31,"location":"East Miles"}},{"attributes":{"name":"Nicolas Conn PhD","age":30,"location":"East Britneyfort"}},{"attributes":{"name":"Nayeli Pfannerstill","age":37,"location":"Altenwerthtown"}},{"attributes":{"name":"Dimitri Schiller","age":20,"location":"Gastonia"}},{"attributes":{"name":"Pamela Glover","age":80,"location":"New Tianaville"}},{"attributes":{"name":"Shayna Nader","age":80,"location":"Port Eulahberg"}},{"attributes":{"name":"Jamarcus Ziemann","age":56,"location":"South Maurice"}},{"attributes":{"name":"Ramon Ebert","age":19,"location":"New Adriel"}},{"attributes":{"name":"Lillian O'Connell","age":76,"location":"Dooleyville"}},{"attributes":{"name":"Dr. Patricia Muller PhD","age":33,"location":"Willcester"}},{"attributes":{"name":"Garry Nienow","age":60,"location":"South Paulineport"}},{"attributes":{"name":"Maida Tremblay","age":80,"location":"North Sierraburgh"}},{"attributes":{"name":"Rylan Grimes-Quitzon","age":43,"location":"Greenwood"}},{"attributes":{"name":"Dr. Marc Bednar-Marvin","age":53,"location":"East Rosina"}},{"attributes":{"name":"Rachel Abshire","age":30,"location":"Chicago"}},{"attributes":{"name":"Elizabeth Miller","age":21,"location":"Lake Kaylah"}},{"attributes":{"name":"Freddie Becker","age":74,"location":"Clarksville"}},{"attributes":{"name":"Arthur Reichel","age":24,"location":"Parisianhaven"}},{"attributes":{"name":"Henrietta MacGyver III","age":71,"location":"East Alexanderborough"}},{"attributes":{"name":"Lester Wehner","age":31,"location":"South Drewside"}},{"attributes":{"name":"Ms. Juvenal Kilback PhD","age":24,"location":"North Ellie"}},{"attributes":{"name":"Maureen Rohan Jr.","age":18,"location":"Greenburgh"}},{"attributes":{"name":"Kelli Langworth","age":42,"location":"East Fay"}},{"attributes":{"name":"Mara McKenzie","age":48,"location":"Jeradstead"}},{"attributes":{"name":"Perry Bergstrom DVM","age":21,"location":"Christymouth"}},{"attributes":{"name":"Lorenza Mitchell","age":75,"location":"Millcreek"}},{"attributes":{"name":"Ana Klein","age":47,"location":"Burien"}},{"attributes":{"name":"Ubaldo Emmerich","age":38,"location":"New Jasenhaven"}},{"attributes":{"name":"Norbert Torphy","age":76,"location":"New Adriana"}},{"attributes":{"name":"Blanca Dare","age":75,"location":"Lake Camylleside"}},{"attributes":{"name":"Margaretta Wyman PhD","age":59,"location":"Fort Eino"}},{"attributes":{"name":"Tim Fahey","age":66,"location":"Feeneytown"}},{"attributes":{"name":"Ralph Turner","age":51,"location":"Isaiahfort"}},{"attributes":{"name":"Donnie McCullough","age":27,"location":"Parkerfort"}},{"attributes":{"name":"Tremayne Nicolas","age":79,"location":"East Ima"}},{"attributes":{"name":"Lafayette O'Reilly","age":20,"location":"Rauview"}},{"attributes":{"name":"Miss Darren Hilpert","age":55,"location":"Flatleyville"}},{"attributes":{"name":"William Prosacco","age":34,"location":"Emmanuelville"}},{"attributes":{"name":"Mildred Botsford","age":24,"location":"Botsfordfort"}},{"attributes":{"name":"Ms. Sophia Bins","age":55,"location":"Zemlakburgh"}},{"attributes":{"name":"Alvin Carter","age":53,"location":"Alexandriaport"}},{"attributes":{"name":"Lowell Sawayn","age":72,"location":"Fort Dax"}},{"attributes":{"name":"Priscilla Fay","age":74,"location":"Middletown"}},{"attributes":{"name":"Grady Cassin","age":39,"location":"Jadamouth"}},{"attributes":{"name":"Doris Bergnaum","age":44,"location":"Rempelchester"}},{"attributes":{"name":"Dr. Hilda Kunze","age":26,"location":"Gutkowskitown"}},{"attributes":{"name":"Todd Ruecker","age":32,"location":"Celiaborough"}},{"attributes":{"name":"Dawn Cummings","age":57,"location":"Freeport"}},{"attributes":{"name":"Suzanne Mueller","age":52,"location":"Lake Mohamedworth"}},{"attributes":{"name":"Latoya Schamberger","age":34,"location":"Ervinhaven"}},{"attributes":{"name":"Mrs. Kris Hartmann","age":31,"location":"Emilioboro"}},{"attributes":{"name":"Rene Aufderhar-Price","age":20,"location":"Travontown"}},{"attributes":{"name":"Shannon Parker","age":60,"location":"Shreveport"}},{"attributes":{"name":"Jacquelyn Klein","age":45,"location":"Bloomington"}},{"attributes":{"name":"Louis Hessel","age":43,"location":"Fort Rhoda"}},{"attributes":{"name":"Jeannie Mosciski","age":50,"location":"West Mariannamouth"}},{"attributes":{"name":"Flossie Sporer PhD","age":26,"location":"Dunwoody"}},{"attributes":{"name":"Darryl Hagenes II","age":78,"location":"Lake Juvenalport"}},{"attributes":{"name":"Clark Fritsch Jr.","age":30,"location":"South Darlene"}},{"attributes":{"name":"Merritt Borer","age":28,"location":"Friesenview"}},{"attributes":{"name":"Brandon Conroy","age":75,"location":"Jeffereyshire"}},{"attributes":{"name":"Dr. Kurt Breitenberg","age":67,"location":"North Lorenz"}},{"attributes":{"name":"Vernice Abernathy","age":69,"location":"New Lemuel"}},{"attributes":{"name":"Joana Zieme","age":29,"location":"Rashadfort"}},{"attributes":{"name":"Deontae Trantow","age":26,"location":"Stratford"}},{"attributes":{"name":"Kareem Little","age":64,"location":"Lydamouth"}},{"attributes":{"name":"Emma Dietrich Sr.","age":34,"location":"Leonelville"}}]} \ No newline at end of file diff --git a/public/storybook/roster-50.json b/public/storybook/roster-50.json new file mode 100644 index 000000000..d80d4495c --- /dev/null +++ b/public/storybook/roster-50.json @@ -0,0 +1 @@ +{"nodes":[{"attributes":{"name":"Moses Crist","age":21,"location":"New Haven"}},{"attributes":{"name":"Warren Effertz","age":29,"location":"New Hollie"}},{"attributes":{"name":"Brody Hilll","age":67,"location":"New Larryton"}},{"attributes":{"name":"Dr. Arthur Wintheiser","age":61,"location":"Bonitamouth"}},{"attributes":{"name":"Destinee Hahn","age":52,"location":"Fort Opheliashire"}},{"attributes":{"name":"Theodora Dietrich","age":38,"location":"West Rhoda"}},{"attributes":{"name":"Lana Schmitt","age":80,"location":"Donnellytown"}},{"attributes":{"name":"Montana Blanda","age":25,"location":"North Miami Beach"}},{"attributes":{"name":"Faye Renner","age":73,"location":"Blakecester"}},{"attributes":{"name":"Ole Ledner","age":19,"location":"North Louieborough"}},{"attributes":{"name":"Delphia Roob","age":22,"location":"East Toby"}},{"attributes":{"name":"Saul Dibbert IV","age":68,"location":"Fontana"}},{"attributes":{"name":"Jeannie Stoltenberg","age":50,"location":"Daltonland"}},{"attributes":{"name":"Enola Prosacco","age":79,"location":"Downey"}},{"attributes":{"name":"Erin Monahan","age":21,"location":"Fort Dawn"}},{"attributes":{"name":"Wendy Osinski","age":32,"location":"Hilllfurt"}},{"attributes":{"name":"Blake Hammes","age":20,"location":"Marianotown"}},{"attributes":{"name":"Marc Pollich","age":77,"location":"West Berylshire"}},{"attributes":{"name":"Marlon Luettgen","age":33,"location":"Fort Stephanfurt"}},{"attributes":{"name":"Dr. Muriel Torphy","age":28,"location":"Newport Beach"}},{"attributes":{"name":"Marlene Crooks","age":61,"location":"Faheycester"}},{"attributes":{"name":"Nicole Stanton","age":53,"location":"West Dillonburgh"}},{"attributes":{"name":"Steve Schimmel","age":54,"location":"Cleoracester"}},{"attributes":{"name":"Margie Weimann DVM","age":41,"location":"Fort Hilbertworth"}},{"attributes":{"name":"Eldridge Stark","age":28,"location":"Tremaynecester"}},{"attributes":{"name":"Lloyd Connelly-Leannon DDS","age":61,"location":"Hesselboro"}},{"attributes":{"name":"Sandra Langosh","age":68,"location":"Prosaccofield"}},{"attributes":{"name":"Gerald Mayert","age":47,"location":"Edmondstead"}},{"attributes":{"name":"Rosa Champlin","age":66,"location":"New Arvid"}},{"attributes":{"name":"Krystal Reinger IV","age":38,"location":"Goldnerport"}},{"attributes":{"name":"Verna Predovic","age":28,"location":"West Katherinecester"}},{"attributes":{"name":"Vernon Luettgen","age":44,"location":"West Nikolas"}},{"attributes":{"name":"Anita Steuber","age":47,"location":"South Jaredville"}},{"attributes":{"name":"Lynda Bayer","age":57,"location":"Russellchester"}},{"attributes":{"name":"Margarita McGlynn V","age":42,"location":"Kochstad"}},{"attributes":{"name":"Virgil Dietrich","age":24,"location":"North Marjorieton"}},{"attributes":{"name":"Alba Grady","age":61,"location":"Thielcester"}},{"attributes":{"name":"Dr. Clinton Schoen DDS","age":39,"location":"St. Louis Park"}},{"attributes":{"name":"Nico Turcotte","age":70,"location":"Fort Gillian"}},{"attributes":{"name":"Audie Wiegand V","age":57,"location":"Eldonborough"}},{"attributes":{"name":"Pauline Bosco","age":21,"location":"Ileneside"}},{"attributes":{"name":"Cassandra Mosciski","age":23,"location":"Binsfield"}},{"attributes":{"name":"Ms. Bert Hirthe-Hilpert","age":65,"location":"North Orin"}},{"attributes":{"name":"Terence Kunde","age":47,"location":"North Billfurt"}},{"attributes":{"name":"Mr. Vilma Grant","age":18,"location":"Athens-Clarke County"}},{"attributes":{"name":"Winston Lueilwitz IV","age":57,"location":"Klingfurt"}},{"attributes":{"name":"Alverta Wiegand IV","age":57,"location":"East Jamaal"}},{"attributes":{"name":"Ariane Yost-Price","age":37,"location":"Pharr"}},{"attributes":{"name":"Remington Reinger","age":44,"location":"Stillwater"}},{"attributes":{"name":"Holly Yost","age":55,"location":"Fort Ronny"}}]} \ No newline at end of file diff --git a/public/storybook/roster-5000.json b/public/storybook/roster-5000.json new file mode 100644 index 000000000..77ce17b8f --- /dev/null +++ b/public/storybook/roster-5000.json @@ -0,0 +1 @@ +{"nodes":[{"attributes":{"name":"Moses Crist","age":21,"location":"New Haven"}},{"attributes":{"name":"Warren Effertz","age":29,"location":"New Hollie"}},{"attributes":{"name":"Brody Hilll","age":67,"location":"New Larryton"}},{"attributes":{"name":"Dr. Arthur Wintheiser","age":61,"location":"Bonitamouth"}},{"attributes":{"name":"Destinee Hahn","age":52,"location":"Fort Opheliashire"}},{"attributes":{"name":"Theodora Dietrich","age":38,"location":"West Rhoda"}},{"attributes":{"name":"Lana Schmitt","age":80,"location":"Donnellytown"}},{"attributes":{"name":"Montana Blanda","age":25,"location":"North Miami Beach"}},{"attributes":{"name":"Faye Renner","age":73,"location":"Blakecester"}},{"attributes":{"name":"Ole Ledner","age":19,"location":"North Louieborough"}},{"attributes":{"name":"Delphia Roob","age":22,"location":"East Toby"}},{"attributes":{"name":"Saul Dibbert IV","age":68,"location":"Fontana"}},{"attributes":{"name":"Jeannie Stoltenberg","age":50,"location":"Daltonland"}},{"attributes":{"name":"Enola Prosacco","age":79,"location":"Downey"}},{"attributes":{"name":"Erin Monahan","age":21,"location":"Fort Dawn"}},{"attributes":{"name":"Wendy Osinski","age":32,"location":"Hilllfurt"}},{"attributes":{"name":"Blake Hammes","age":20,"location":"Marianotown"}},{"attributes":{"name":"Marc Pollich","age":77,"location":"West Berylshire"}},{"attributes":{"name":"Marlon Luettgen","age":33,"location":"Fort Stephanfurt"}},{"attributes":{"name":"Dr. Muriel Torphy","age":28,"location":"Newport Beach"}},{"attributes":{"name":"Marlene Crooks","age":61,"location":"Faheycester"}},{"attributes":{"name":"Nicole Stanton","age":53,"location":"West Dillonburgh"}},{"attributes":{"name":"Steve Schimmel","age":54,"location":"Cleoracester"}},{"attributes":{"name":"Margie Weimann DVM","age":41,"location":"Fort Hilbertworth"}},{"attributes":{"name":"Eldridge Stark","age":28,"location":"Tremaynecester"}},{"attributes":{"name":"Lloyd Connelly-Leannon DDS","age":61,"location":"Hesselboro"}},{"attributes":{"name":"Sandra Langosh","age":68,"location":"Prosaccofield"}},{"attributes":{"name":"Gerald Mayert","age":47,"location":"Edmondstead"}},{"attributes":{"name":"Rosa Champlin","age":66,"location":"New Arvid"}},{"attributes":{"name":"Krystal Reinger IV","age":38,"location":"Goldnerport"}},{"attributes":{"name":"Verna Predovic","age":28,"location":"West Katherinecester"}},{"attributes":{"name":"Vernon Luettgen","age":44,"location":"West Nikolas"}},{"attributes":{"name":"Anita Steuber","age":47,"location":"South Jaredville"}},{"attributes":{"name":"Lynda Bayer","age":57,"location":"Russellchester"}},{"attributes":{"name":"Margarita McGlynn V","age":42,"location":"Kochstad"}},{"attributes":{"name":"Virgil Dietrich","age":24,"location":"North Marjorieton"}},{"attributes":{"name":"Alba Grady","age":61,"location":"Thielcester"}},{"attributes":{"name":"Dr. Clinton Schoen DDS","age":39,"location":"St. Louis Park"}},{"attributes":{"name":"Nico Turcotte","age":70,"location":"Fort Gillian"}},{"attributes":{"name":"Audie Wiegand V","age":57,"location":"Eldonborough"}},{"attributes":{"name":"Pauline Bosco","age":21,"location":"Ileneside"}},{"attributes":{"name":"Cassandra Mosciski","age":23,"location":"Binsfield"}},{"attributes":{"name":"Ms. Bert Hirthe-Hilpert","age":65,"location":"North Orin"}},{"attributes":{"name":"Terence Kunde","age":47,"location":"North Billfurt"}},{"attributes":{"name":"Mr. Vilma Grant","age":18,"location":"Athens-Clarke County"}},{"attributes":{"name":"Winston Lueilwitz IV","age":57,"location":"Klingfurt"}},{"attributes":{"name":"Alverta Wiegand IV","age":57,"location":"East Jamaal"}},{"attributes":{"name":"Ariane Yost-Price","age":37,"location":"Pharr"}},{"attributes":{"name":"Remington Reinger","age":44,"location":"Stillwater"}},{"attributes":{"name":"Holly Yost","age":55,"location":"Fort Ronny"}},{"attributes":{"name":"Ms. Hector Bednar","age":80,"location":"Odessashire"}},{"attributes":{"name":"Ivan Wilkinson","age":32,"location":"Mosciskibury"}},{"attributes":{"name":"Mrs. Josue Lebsack","age":73,"location":"Bretttown"}},{"attributes":{"name":"Mckenna Collins","age":40,"location":"Gladyceport"}},{"attributes":{"name":"Joel Hyatt","age":72,"location":"Casas Adobes"}},{"attributes":{"name":"Donnie Wuckert","age":38,"location":"Fisherton"}},{"attributes":{"name":"Cecilia Nitzsche","age":39,"location":"Lakewood"}},{"attributes":{"name":"Courtney Cummings","age":29,"location":"North Jaimeberg"}},{"attributes":{"name":"Melinda Schmidt","age":23,"location":"Twin Falls"}},{"attributes":{"name":"Regina Denesik","age":41,"location":"Lianabury"}},{"attributes":{"name":"Alfredo Ratke IV","age":51,"location":"South Kaceyburgh"}},{"attributes":{"name":"Alma Effertz","age":25,"location":"Nashua"}},{"attributes":{"name":"Jessie Lind","age":64,"location":"Brandynboro"}},{"attributes":{"name":"Khalid Yost","age":32,"location":"East Delaneyville"}},{"attributes":{"name":"Claire Block","age":43,"location":"Broken Arrow"}},{"attributes":{"name":"Samara Gerhold","age":60,"location":"Milford"}},{"attributes":{"name":"Ramon Hane","age":49,"location":"North Leonie"}},{"attributes":{"name":"Cara Lemke","age":39,"location":"North Yeseniaborough"}},{"attributes":{"name":"Merle Mertz","age":43,"location":"Fort Rickey"}},{"attributes":{"name":"Oscar Davis","age":64,"location":"Ronaldoville"}},{"attributes":{"name":"Clark Schultz","age":50,"location":"Fort Gladys"}},{"attributes":{"name":"Gerard Gutkowski","age":49,"location":"Fort Gerard"}},{"attributes":{"name":"Lindsey Weimann","age":39,"location":"Port Lilianestad"}},{"attributes":{"name":"Camron Franey","age":20,"location":"Noraside"}},{"attributes":{"name":"Berniece Champlin","age":68,"location":"East Misaelcester"}},{"attributes":{"name":"Kari Hegmann","age":75,"location":"Gregoryport"}},{"attributes":{"name":"Larry Moore","age":72,"location":"Miramar"}},{"attributes":{"name":"Melba Mayer","age":44,"location":"Watsicashire"}},{"attributes":{"name":"Wendy Casper PhD","age":50,"location":"Greenton"}},{"attributes":{"name":"Abigail Jacobi","age":75,"location":"West Myrl"}},{"attributes":{"name":"Jodi Dare","age":44,"location":"Great Falls"}},{"attributes":{"name":"Adonis Daugherty Sr.","age":44,"location":"Fort Jimmystead"}},{"attributes":{"name":"Cornelius DuBuque","age":20,"location":"Kennaton"}},{"attributes":{"name":"Jon Jacobs","age":27,"location":"Port Tysonbury"}},{"attributes":{"name":"Hal Crist","age":59,"location":"East Darianachester"}},{"attributes":{"name":"Rachel O'Keefe","age":24,"location":"Lake Russ"}},{"attributes":{"name":"Mathew Greenholt Jr.","age":23,"location":"North Cheyanne"}},{"attributes":{"name":"Steve Heaney","age":41,"location":"Domenicfurt"}},{"attributes":{"name":"Hudson White","age":26,"location":"Lee's Summit"}},{"attributes":{"name":"Hermina Glover","age":57,"location":"East Roberto"}},{"attributes":{"name":"Clifford Auer Sr.","age":54,"location":"New Maci"}},{"attributes":{"name":"Mr. Al Tromp","age":59,"location":"Fort Heatherbury"}},{"attributes":{"name":"Clay Boehm","age":33,"location":"West Fiona"}},{"attributes":{"name":"Kent Olson DDS","age":31,"location":"West Laurianneton"}},{"attributes":{"name":"Estelle Breitenberg","age":63,"location":"Martinaport"}},{"attributes":{"name":"Piper Goldner","age":40,"location":"Fort Brielleshire"}},{"attributes":{"name":"Mrs. Krystal Reynolds","age":71,"location":"South Dale"}},{"attributes":{"name":"Alivia Walsh","age":53,"location":"Arden-Arcade"}},{"attributes":{"name":"Miss Timothy Welch-Krajcik","age":70,"location":"New Darbyland"}},{"attributes":{"name":"Eunice Bergnaum","age":51,"location":"Hamillfurt"}},{"attributes":{"name":"Daron Strosin","age":73,"location":"Trevorfield"}},{"attributes":{"name":"Ramiro Kris","age":73,"location":"Royal Oak"}},{"attributes":{"name":"Natalie Brown","age":36,"location":"East Allie"}},{"attributes":{"name":"Hilario Parisian","age":77,"location":"Borerview"}},{"attributes":{"name":"Mr. Jammie Cummings MD","age":56,"location":"Darianberg"}},{"attributes":{"name":"Patty Beer PhD","age":76,"location":"Chicago"}},{"attributes":{"name":"Mauricio Schultz","age":32,"location":"Laruestead"}},{"attributes":{"name":"Dina Towne PhD","age":68,"location":"Lubowitzland"}},{"attributes":{"name":"Elena Kunze","age":31,"location":"Blickhaven"}},{"attributes":{"name":"Lorene Heidenreich","age":53,"location":"Fort Phyllis"}},{"attributes":{"name":"Sandrine Smith","age":60,"location":"Romagueraville"}},{"attributes":{"name":"Alessia Champlin","age":64,"location":"Port Rigobertomouth"}},{"attributes":{"name":"Lynette Murray-Gerlach","age":52,"location":"Breitenbergfort"}},{"attributes":{"name":"Evans Waters","age":77,"location":"Bernhardboro"}},{"attributes":{"name":"Lamar Mraz","age":72,"location":"West Sacramento"}},{"attributes":{"name":"Phillip Bahringer","age":48,"location":"Paucekport"}},{"attributes":{"name":"Dr. Hershel Cruickshank","age":23,"location":"O'Konboro"}},{"attributes":{"name":"Hugo Johnston","age":43,"location":"Fort Haley"}},{"attributes":{"name":"Darin O'Keefe","age":72,"location":"Vivianneberg"}},{"attributes":{"name":"Ole Rowe","age":26,"location":"Fort Lexiefield"}},{"attributes":{"name":"Candice Keeling","age":48,"location":"New Domenicofield"}},{"attributes":{"name":"Alexis Huel","age":55,"location":"Lake Ryley"}},{"attributes":{"name":"Dr. Jeffery Flatley V","age":62,"location":"Adeliaborough"}},{"attributes":{"name":"Franklin Block","age":26,"location":"Marvinfield"}},{"attributes":{"name":"Bobbie Quigley","age":76,"location":"New Melvinside"}},{"attributes":{"name":"Euna Block V","age":69,"location":"Luellastad"}},{"attributes":{"name":"Mr. Armando Cronin","age":39,"location":"Port Mafaldamouth"}},{"attributes":{"name":"Dante Wolf-O'Hara","age":60,"location":"North Dessieport"}},{"attributes":{"name":"Nash Hegmann","age":80,"location":"Port Kolbyport"}},{"attributes":{"name":"Shannon Jones","age":55,"location":"Corvallis"}},{"attributes":{"name":"Mozelle Rau Sr.","age":32,"location":"Cicero"}},{"attributes":{"name":"Dexter Kilback","age":40,"location":"Carybury"}},{"attributes":{"name":"Mark Rutherford","age":79,"location":"Darwinton"}},{"attributes":{"name":"Gertrude Keeling","age":56,"location":"Cummingsville"}},{"attributes":{"name":"Ms. Malcolm Sporer","age":30,"location":"West Anaisstad"}},{"attributes":{"name":"Caleb Watsica","age":49,"location":"East Wyattworth"}},{"attributes":{"name":"Lucas Klocko","age":48,"location":"Connellytown"}},{"attributes":{"name":"Collin Wisozk","age":60,"location":"Sanfordberg"}},{"attributes":{"name":"Tyrel Kuphal","age":72,"location":"Alexandershire"}},{"attributes":{"name":"Crystal Huels","age":24,"location":"Zulaufton"}},{"attributes":{"name":"Shane Mante","age":73,"location":"Erickachester"}},{"attributes":{"name":"Pierce Schumm","age":52,"location":"West Frederickview"}},{"attributes":{"name":"Israel Hintz","age":22,"location":"Ortizfurt"}},{"attributes":{"name":"Shawna Kris","age":39,"location":"South Kraig"}},{"attributes":{"name":"Norwood Raynor Jr.","age":30,"location":"Lake Stanburgh"}},{"attributes":{"name":"Tommie Bradtke","age":34,"location":"West Prudence"}},{"attributes":{"name":"Lewis Goldner","age":25,"location":"Lake Cheyannestad"}},{"attributes":{"name":"Kent Windler","age":68,"location":"Altafurt"}},{"attributes":{"name":"Reece Farrell","age":56,"location":"Rolandoside"}},{"attributes":{"name":"Paula Senger","age":60,"location":"New Ivystead"}},{"attributes":{"name":"Sallie Boyer","age":58,"location":"Lockmanburgh"}},{"attributes":{"name":"Jerrold Collins-Powlowski","age":44,"location":"Pourosworth"}},{"attributes":{"name":"Muriel Goodwin","age":23,"location":"Coconut Creek"}},{"attributes":{"name":"Gwen Leannon","age":68,"location":"New Shanelle"}},{"attributes":{"name":"Mr. Ervin Ortiz DDS","age":47,"location":"New Verniceberg"}},{"attributes":{"name":"Jose Klein","age":39,"location":"Schinnershire"}},{"attributes":{"name":"Mrs. Celia Walter-Lindgren","age":23,"location":"Champlinfield"}},{"attributes":{"name":"Alfred Gislason","age":23,"location":"Middletown"}},{"attributes":{"name":"Joann Larkin IV","age":80,"location":"Corona"}},{"attributes":{"name":"Mrs. Roland Thiel","age":37,"location":"South Chaddchester"}},{"attributes":{"name":"Mr. Lucio Cole","age":56,"location":"Danielmouth"}},{"attributes":{"name":"Heather Balistreri","age":78,"location":"Virginiaview"}},{"attributes":{"name":"Jessie Nitzsche","age":57,"location":"Corwinton"}},{"attributes":{"name":"Archie Beer-Powlowski I","age":26,"location":"West Baronchester"}},{"attributes":{"name":"Yvette Morar","age":57,"location":"Hershelville"}},{"attributes":{"name":"Mrs. Craig Jerde","age":18,"location":"Jaydontown"}},{"attributes":{"name":"Brigitte Emard","age":33,"location":"Santa Clara"}},{"attributes":{"name":"Dr. Brent Kling","age":27,"location":"Lake Jarrod"}},{"attributes":{"name":"Johnnie Toy DDS","age":37,"location":"Kertzmannburgh"}},{"attributes":{"name":"Sylvester Nienow","age":74,"location":"Morarton"}},{"attributes":{"name":"Pablo Parisian","age":23,"location":"Binston"}},{"attributes":{"name":"Myrl Gulgowski","age":66,"location":"Denesikberg"}},{"attributes":{"name":"Norris Aufderhar","age":78,"location":"Port Linnie"}},{"attributes":{"name":"Camille Ryan","age":51,"location":"Fort Pinkboro"}},{"attributes":{"name":"Kristoffer Schroeder","age":26,"location":"Fort Dan"}},{"attributes":{"name":"Jessie Welch","age":25,"location":"Fort Lunaboro"}},{"attributes":{"name":"Rose Fritsch","age":47,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Charlotte Wyman Jr.","age":28,"location":"Lake Rebecaberg"}},{"attributes":{"name":"Mozell McLaughlin","age":36,"location":"Martyside"}},{"attributes":{"name":"Carolanne Altenwerth","age":63,"location":"Boulder"}},{"attributes":{"name":"Connie Reynolds","age":29,"location":"Port Kayden"}},{"attributes":{"name":"Alfonzo Douglas III","age":38,"location":"West Selmerworth"}},{"attributes":{"name":"Monique Medhurst","age":43,"location":"Abernathyfurt"}},{"attributes":{"name":"Augusta Kshlerin","age":22,"location":"Kelliestad"}},{"attributes":{"name":"Quinn Shanahan","age":22,"location":"West Owencester"}},{"attributes":{"name":"Irvin Harber","age":23,"location":"New Mya"}},{"attributes":{"name":"Dr. Ludie Nicolas","age":70,"location":"New Lacy"}},{"attributes":{"name":"Mrs. Geraldine Bailey","age":36,"location":"Durham"}},{"attributes":{"name":"Ronny Schmitt","age":48,"location":"North Monroemouth"}},{"attributes":{"name":"Novella Monahan","age":65,"location":"Willton"}},{"attributes":{"name":"Elisa Ullrich","age":35,"location":"Kirlinfort"}},{"attributes":{"name":"Ana Ullrich","age":51,"location":"Faeside"}},{"attributes":{"name":"Vincenzo Wehner","age":44,"location":"Lake Willard"}},{"attributes":{"name":"Clotilde Kohler V","age":40,"location":"East Daneburgh"}},{"attributes":{"name":"Judah Stokes","age":22,"location":"Littleton"}},{"attributes":{"name":"Christina Stark","age":47,"location":"Maceystad"}},{"attributes":{"name":"Miss Regina Bechtelar","age":28,"location":"Port Josiane"}},{"attributes":{"name":"Shanel Ferry","age":80,"location":"Balistreriton"}},{"attributes":{"name":"Kali Braun","age":69,"location":"Port Violet"}},{"attributes":{"name":"Erma Mayert","age":68,"location":"Fort Kaci"}},{"attributes":{"name":"Pearline Stiedemann II","age":79,"location":"East Christianaside"}},{"attributes":{"name":"Irvin Boehm DDS","age":49,"location":"Indio"}},{"attributes":{"name":"Lori Tillman","age":28,"location":"New Juliencester"}},{"attributes":{"name":"Mr. Oscar Stiedemann","age":37,"location":"Reinaport"}},{"attributes":{"name":"Rosemarie Daniel","age":70,"location":"East Bryanabury"}},{"attributes":{"name":"Ms. Macey Herman","age":57,"location":"Lake Erachester"}},{"attributes":{"name":"Sarah Smith","age":58,"location":"Langworthborough"}},{"attributes":{"name":"Mrs. Eva Wehner","age":59,"location":"Fort Marcos"}},{"attributes":{"name":"Ismael Stracke","age":41,"location":"Brockton"}},{"attributes":{"name":"Ms. Natasha Goyette","age":65,"location":"Amarillo"}},{"attributes":{"name":"Mr. Ellis Grady","age":52,"location":"East Adolphport"}},{"attributes":{"name":"Elfrieda Roberts","age":74,"location":"Pasadena"}},{"attributes":{"name":"Mr. Christop Fisher","age":80,"location":"Madison"}},{"attributes":{"name":"Lavon Botsford MD","age":70,"location":"Modesto"}},{"attributes":{"name":"Erick Ryan","age":74,"location":"Lennyfurt"}},{"attributes":{"name":"Dave Braun","age":48,"location":"Wiegandstead"}},{"attributes":{"name":"Lyle Funk","age":47,"location":"East Dovieworth"}},{"attributes":{"name":"Dana Goyette","age":50,"location":"North Dagmartown"}},{"attributes":{"name":"Raquel Langworth","age":76,"location":"North Lexus"}},{"attributes":{"name":"Kayla Kunde","age":80,"location":"West Godfreyview"}},{"attributes":{"name":"Ms. Micah Hagenes","age":18,"location":"Bechtelarburgh"}},{"attributes":{"name":"Marquis Hoppe","age":41,"location":"South Nevaton"}},{"attributes":{"name":"Tina Parisian","age":55,"location":"Lake Tatefurt"}},{"attributes":{"name":"Blaze Bergstrom","age":26,"location":"South Eleanoremouth"}},{"attributes":{"name":"Caleb Heathcote","age":59,"location":"Pittsburg"}},{"attributes":{"name":"Dortha Schamberger","age":68,"location":"St. Louis"}},{"attributes":{"name":"Erik Hilpert","age":62,"location":"Hirtheville"}},{"attributes":{"name":"Sophia Crist","age":58,"location":"Heaneyton"}},{"attributes":{"name":"Maureen Hickle","age":80,"location":"Martinaville"}},{"attributes":{"name":"Kay Hoppe-Batz","age":42,"location":"North Nigelport"}},{"attributes":{"name":"Betty Haley-Towne","age":70,"location":"Enid"}},{"attributes":{"name":"Glen Littel","age":52,"location":"Nolanhaven"}},{"attributes":{"name":"Elena Beer","age":35,"location":"Milford"}},{"attributes":{"name":"Broderick Murazik","age":43,"location":"Tamarac"}},{"attributes":{"name":"Lillian Huels","age":47,"location":"Dannieworth"}},{"attributes":{"name":"Mr. Kacie Christiansen","age":35,"location":"Waltham"}},{"attributes":{"name":"Vivian Stracke","age":41,"location":"East Nolan"}},{"attributes":{"name":"Katherine Streich III","age":70,"location":"Marvinshire"}},{"attributes":{"name":"Sara Stamm Jr.","age":73,"location":"Johnathonfurt"}},{"attributes":{"name":"Jean Reichert","age":26,"location":"West Quincy"}},{"attributes":{"name":"Vanessa Zieme","age":70,"location":"North Myrna"}},{"attributes":{"name":"Bryon Runte","age":66,"location":"Normal"}},{"attributes":{"name":"Belinda Jaskolski","age":39,"location":"Port Unaton"}},{"attributes":{"name":"Dr. Elias Kutch","age":22,"location":"Eleazarburgh"}},{"attributes":{"name":"Tobin Ullrich","age":48,"location":"Lake Wilfred"}},{"attributes":{"name":"Marco Towne","age":46,"location":"Linnieton"}},{"attributes":{"name":"Nick Schneider","age":50,"location":"Port Donavonmouth"}},{"attributes":{"name":"Mae Rohan","age":18,"location":"Alyciaboro"}},{"attributes":{"name":"Rudy Franecki","age":37,"location":"West Donhaven"}},{"attributes":{"name":"Simeon Vandervort","age":78,"location":"Lake Jeremybury"}},{"attributes":{"name":"Abigail Ratke","age":78,"location":"Wiegandcester"}},{"attributes":{"name":"Paula Beahan","age":78,"location":"Hopeport"}},{"attributes":{"name":"Heidi Runte","age":69,"location":"Costa Mesa"}},{"attributes":{"name":"Sherman Pagac","age":36,"location":"Lake Myrticeborough"}},{"attributes":{"name":"Nick Toy","age":41,"location":"North Jorgeboro"}},{"attributes":{"name":"Gerardo Aufderhar","age":44,"location":"Guiseppestad"}},{"attributes":{"name":"Jamie Leannon-Pagac","age":66,"location":"Lebsackworth"}},{"attributes":{"name":"Pat Carter","age":19,"location":"Port Josh"}},{"attributes":{"name":"Ada O'Connell PhD","age":19,"location":"San Diego"}},{"attributes":{"name":"Gregory Bergstrom","age":33,"location":"Nehaport"}},{"attributes":{"name":"Turner Zboncak","age":78,"location":"West Daneberg"}},{"attributes":{"name":"Miss Osvaldo Corkery","age":60,"location":"West Terrell"}},{"attributes":{"name":"Sophia Berge","age":18,"location":"Kingville"}},{"attributes":{"name":"Derrick Parisian","age":35,"location":"La Habra"}},{"attributes":{"name":"Andre Kilback","age":21,"location":"Wichita"}},{"attributes":{"name":"Ms. Deangelo Donnelly-Wilderman V","age":34,"location":"Laurelton"}},{"attributes":{"name":"Clare Upton DVM","age":50,"location":"Rockwall"}},{"attributes":{"name":"Mona Nitzsche","age":28,"location":"Oletamouth"}},{"attributes":{"name":"Gwendolyn Fay","age":31,"location":"Port Montana"}},{"attributes":{"name":"Amelia Olson","age":36,"location":"Fort Zackary"}},{"attributes":{"name":"Gabrielle Romaguera DVM","age":54,"location":"Port Demario"}},{"attributes":{"name":"Mark Dicki Sr.","age":49,"location":"North Alfred"}},{"attributes":{"name":"Earnestine McCullough-Kertzmann","age":50,"location":"Gradybury"}},{"attributes":{"name":"Sincere Sauer","age":49,"location":"New Christy"}},{"attributes":{"name":"Coralie Bernhard IV","age":43,"location":"South Hill"}},{"attributes":{"name":"Olen Corwin IV","age":35,"location":"Alialand"}},{"attributes":{"name":"Henry Becker I","age":37,"location":"East Abbie"}},{"attributes":{"name":"Dr. Dan Robel","age":38,"location":"Schummberg"}},{"attributes":{"name":"Rae Romaguera-Huel","age":59,"location":"New Melvinaville"}},{"attributes":{"name":"Vanessa Gleason","age":36,"location":"Roweland"}},{"attributes":{"name":"Gene Shields","age":63,"location":"Theachester"}},{"attributes":{"name":"Doris Dietrich","age":39,"location":"St. Louis"}},{"attributes":{"name":"Kelsi Kunze","age":28,"location":"Ricebury"}},{"attributes":{"name":"Aditya Wisozk","age":32,"location":"Schummstad"}},{"attributes":{"name":"Jimmie Stracke","age":68,"location":"Gracieville"}},{"attributes":{"name":"Emilio Swaniawski","age":68,"location":"New Kiana"}},{"attributes":{"name":"Adolfo Bechtelar","age":36,"location":"West Lilliana"}},{"attributes":{"name":"Gunnar Sawayn","age":45,"location":"Hartmannton"}},{"attributes":{"name":"Lucius Nader","age":44,"location":"Bradtkeboro"}},{"attributes":{"name":"Vivian Leannon","age":79,"location":"South Myrnacester"}},{"attributes":{"name":"Jacquelyn DuBuque","age":34,"location":"Lake Vivien"}},{"attributes":{"name":"Ben Gulgowski-Bosco","age":57,"location":"Gleichnertown"}},{"attributes":{"name":"Max Monahan","age":35,"location":"Sammieshire"}},{"attributes":{"name":"Tonya Tillman","age":55,"location":"Parisianview"}},{"attributes":{"name":"Dennis Will","age":70,"location":"Lake Whitneyland"}},{"attributes":{"name":"Betty Volkman","age":34,"location":"Mitcheltown"}},{"attributes":{"name":"Lowell Ratke","age":30,"location":"Renton"}},{"attributes":{"name":"Delia Franey","age":46,"location":"Moenchester"}},{"attributes":{"name":"Roel Senger IV","age":30,"location":"Robertscester"}},{"attributes":{"name":"Geoffrey McDermott","age":34,"location":"Fort Manuel"}},{"attributes":{"name":"Luke Purdy","age":45,"location":"Weberton"}},{"attributes":{"name":"Irving Gutkowski","age":21,"location":"Tillmanland"}},{"attributes":{"name":"Marion Cronin","age":22,"location":"Lake Shannonfield"}},{"attributes":{"name":"Edmund Friesen","age":51,"location":"West Rhiannon"}},{"attributes":{"name":"Terrence Hansen-Hermann","age":77,"location":"Boynton Beach"}},{"attributes":{"name":"Joan Stokes","age":70,"location":"Riverton"}},{"attributes":{"name":"Carolanne Daugherty","age":32,"location":"East Abbigailcester"}},{"attributes":{"name":"Clarence Aufderhar","age":74,"location":"West Ben"}},{"attributes":{"name":"Lucy Beer","age":32,"location":"Fort Lewis"}},{"attributes":{"name":"Hubert Predovic","age":28,"location":"Hansside"}},{"attributes":{"name":"Bruce Carroll","age":26,"location":"DuBuqueview"}},{"attributes":{"name":"Dr. Jimmy Auer","age":53,"location":"Pfefferburgh"}},{"attributes":{"name":"Miss Kailee Schuster","age":67,"location":"Christellehaven"}},{"attributes":{"name":"Ben Schneider I","age":22,"location":"Hempstead"}},{"attributes":{"name":"Annabelle Blanda","age":68,"location":"Zionstad"}},{"attributes":{"name":"Gretchen Bernhard","age":47,"location":"O'Reillycester"}},{"attributes":{"name":"Mr. Marjorie Abshire","age":22,"location":"McDermottfort"}},{"attributes":{"name":"Josh Osinski","age":64,"location":"East Sigmundfort"}},{"attributes":{"name":"Lavern Towne","age":57,"location":"South Michelleboro"}},{"attributes":{"name":"Doreen Kassulke IV","age":29,"location":"Lake Geovanyfield"}},{"attributes":{"name":"Donnell Gislason MD","age":38,"location":"East Maude"}},{"attributes":{"name":"Dr. Dillan Schultz","age":23,"location":"Hillsview"}},{"attributes":{"name":"Ana Frami","age":20,"location":"Handside"}},{"attributes":{"name":"Sylvester Shanahan-Sporer","age":54,"location":"North Zoilaborough"}},{"attributes":{"name":"Ryan Flatley-Bauch","age":26,"location":"West Ottisstead"}},{"attributes":{"name":"Darion Runolfsdottir","age":66,"location":"Port Lilianstad"}},{"attributes":{"name":"Kylie Zboncak","age":45,"location":"Hudsonburgh"}},{"attributes":{"name":"Tobin Legros","age":80,"location":"Oshkosh"}},{"attributes":{"name":"Laura Klocko","age":60,"location":"Fort Caterina"}},{"attributes":{"name":"Mavis Gorczany","age":58,"location":"Chazcester"}},{"attributes":{"name":"Mrs. Rodolfo Aufderhar","age":70,"location":"West Covina"}},{"attributes":{"name":"Guadalupe Marquardt","age":76,"location":"Laruebury"}},{"attributes":{"name":"Jeanne Mohr PhD","age":59,"location":"Port Sheldon"}},{"attributes":{"name":"Edison Zieme","age":74,"location":"Wizaport"}},{"attributes":{"name":"Ms. Felix Wolf","age":23,"location":"North Cortez"}},{"attributes":{"name":"Eloise Cummings","age":79,"location":"Wisokyport"}},{"attributes":{"name":"Erich Feeney","age":34,"location":"Lake Angie"}},{"attributes":{"name":"Caesar Stracke","age":23,"location":"Elizastad"}},{"attributes":{"name":"Kyle Considine","age":35,"location":"Arnoport"}},{"attributes":{"name":"Anais Koch","age":54,"location":"Sanfordhaven"}},{"attributes":{"name":"Sabrina Towne-Hilpert","age":48,"location":"Kulasmouth"}},{"attributes":{"name":"Santos Harber","age":66,"location":"East Vanberg"}},{"attributes":{"name":"Jenifer Fay","age":41,"location":"Connellystead"}},{"attributes":{"name":"Delores Shanahan","age":76,"location":"Mobile"}},{"attributes":{"name":"Rachael Bogisich","age":71,"location":"Danielchester"}},{"attributes":{"name":"Sherri Gislason","age":72,"location":"Murazikfort"}},{"attributes":{"name":"Gretchen Kuhic Jr.","age":36,"location":"East Sydnie"}},{"attributes":{"name":"Ollie Kuhlman","age":55,"location":"Sacramento"}},{"attributes":{"name":"Cecile Doyle","age":50,"location":"Vandervortmouth"}},{"attributes":{"name":"Dr. Alonzo Kessler","age":46,"location":"North Modesto"}},{"attributes":{"name":"Ms. Earl Hoeger","age":25,"location":"Ferrychester"}},{"attributes":{"name":"Mr. Gianni Aufderhar","age":32,"location":"North Vida"}},{"attributes":{"name":"Dimitri Pagac","age":71,"location":"Taylor"}},{"attributes":{"name":"Ed Altenwerth-Rau","age":57,"location":"Florin"}},{"attributes":{"name":"Dr. Jo Heathcote","age":41,"location":"Bayonne"}},{"attributes":{"name":"Loretta Wisoky","age":49,"location":"South Major"}},{"attributes":{"name":"Koby Schumm","age":21,"location":"East Malachiview"}},{"attributes":{"name":"Sonny Haley","age":35,"location":"East Eveview"}},{"attributes":{"name":"Owen Green","age":36,"location":"Hortenseville"}},{"attributes":{"name":"Sue Reynolds","age":76,"location":"Mission"}},{"attributes":{"name":"Dr. Greg Anderson","age":54,"location":"Birdieworth"}},{"attributes":{"name":"Loretta Bartoletti","age":51,"location":"East Kenyonboro"}},{"attributes":{"name":"Wilmer Wisozk","age":39,"location":"North Mathiasport"}},{"attributes":{"name":"Mr. Denis Herzog","age":40,"location":"Port Erling"}},{"attributes":{"name":"Joyce Spencer","age":42,"location":"Shreveport"}},{"attributes":{"name":"Eva Carter MD","age":51,"location":"South Haileeville"}},{"attributes":{"name":"Kelsi Bernhard","age":25,"location":"Wehnerchester"}},{"attributes":{"name":"Miss Laurie Skiles","age":34,"location":"West Harmonychester"}},{"attributes":{"name":"Dr. Greg Crona","age":28,"location":"Milford"}},{"attributes":{"name":"Nadine Ernser-Torphy DVM","age":58,"location":"Jacobsonfort"}},{"attributes":{"name":"Hilda Senger","age":70,"location":"Rosalynview"}},{"attributes":{"name":"Demario Kub","age":37,"location":"Eribertotown"}},{"attributes":{"name":"Virginia Huels-Rempel","age":60,"location":"Warren"}},{"attributes":{"name":"Dino Balistreri-Mitchell","age":61,"location":"Fort Chetfurt"}},{"attributes":{"name":"Laura Cronin","age":44,"location":"Treutelton"}},{"attributes":{"name":"Alison Mills","age":32,"location":"Port Weldonville"}},{"attributes":{"name":"Tiffany Beatty","age":54,"location":"North Kristy"}},{"attributes":{"name":"Elmore McKenzie","age":79,"location":"Dorthacester"}},{"attributes":{"name":"Garnett Beatty","age":70,"location":"Daly City"}},{"attributes":{"name":"Tom Kirlin","age":72,"location":"East Nicholaston"}},{"attributes":{"name":"Geraldine Lehner","age":54,"location":"Rogers"}},{"attributes":{"name":"Eloise Jast","age":21,"location":"South Mavisberg"}},{"attributes":{"name":"Spencer Gulgowski","age":43,"location":"Lake Reyes"}},{"attributes":{"name":"Graciela Ritchie","age":60,"location":"North Zachery"}},{"attributes":{"name":"Wilber Oberbrunner","age":72,"location":"South Lilian"}},{"attributes":{"name":"Genevieve Stark","age":76,"location":"Sengerstad"}},{"attributes":{"name":"Dr. Rolando Towne DDS","age":33,"location":"Boynton Beach"}},{"attributes":{"name":"Margie Hane","age":55,"location":"Parkerstead"}},{"attributes":{"name":"Pamela Pouros","age":57,"location":"Erdmanton"}},{"attributes":{"name":"Roslyn Rice","age":48,"location":"Freeport"}},{"attributes":{"name":"Bernice Barrows","age":44,"location":"Chanceboro"}},{"attributes":{"name":"Amber Mayer","age":49,"location":"North Lazaroborough"}},{"attributes":{"name":"Cedric Greenholt","age":61,"location":"San Mateo"}},{"attributes":{"name":"Tyshawn Abbott","age":31,"location":"Naderstead"}},{"attributes":{"name":"Enos Lynch","age":26,"location":"Port Terrillfurt"}},{"attributes":{"name":"Myrtle Carroll","age":62,"location":"West Adolphus"}},{"attributes":{"name":"Vernice Larkin","age":52,"location":"New Giles"}},{"attributes":{"name":"Mrs. Flora Dare PhD","age":80,"location":"Ransomborough"}},{"attributes":{"name":"Maryann Halvorson","age":57,"location":"New Mattcester"}},{"attributes":{"name":"Jett Mosciski","age":19,"location":"South Lexus"}},{"attributes":{"name":"Calvin Brekke-Kris","age":52,"location":"North Benstead"}},{"attributes":{"name":"Lynn Bauch","age":61,"location":"West Lesly"}},{"attributes":{"name":"Kristy Hickle","age":47,"location":"Lake Kayliebury"}},{"attributes":{"name":"Eric Runolfsson","age":38,"location":"Hyattfort"}},{"attributes":{"name":"Thelma Carter","age":79,"location":"North Eulalia"}},{"attributes":{"name":"Marlon Klein-Hermann","age":25,"location":"Idaho Falls"}},{"attributes":{"name":"Mrs. Ima Berge","age":78,"location":"South Leannastead"}},{"attributes":{"name":"Carla Crooks","age":31,"location":"New Laurianneside"}},{"attributes":{"name":"Roberto Block","age":75,"location":"West Bud"}},{"attributes":{"name":"Loretta Weimann","age":54,"location":"Bethlehem"}},{"attributes":{"name":"Rhoda Gottlieb Sr.","age":73,"location":"Chino"}},{"attributes":{"name":"Gustavo McClure MD","age":48,"location":"Waterloo"}},{"attributes":{"name":"Aryanna Goyette","age":45,"location":"Homenickton"}},{"attributes":{"name":"Gerald Kihn","age":69,"location":"Murray"}},{"attributes":{"name":"Miss Kayla Murray","age":78,"location":"Lelandburgh"}},{"attributes":{"name":"Christine Mitchell","age":50,"location":"Lake Arlie"}},{"attributes":{"name":"Cora Howe","age":43,"location":"Jaynebury"}},{"attributes":{"name":"Jimmie Bernier","age":53,"location":"Millcreek"}},{"attributes":{"name":"Brad Denesik","age":58,"location":"Fort Ronnyboro"}},{"attributes":{"name":"Carla Leannon","age":40,"location":"Pharr"}},{"attributes":{"name":"Gilberto Blick","age":60,"location":"Jenkinsmouth"}},{"attributes":{"name":"Geraldine Boyle V","age":63,"location":"South Dashawn"}},{"attributes":{"name":"Rachael Lockman","age":76,"location":"West Fayefort"}},{"attributes":{"name":"Shaun Fahey","age":43,"location":"Cicero"}},{"attributes":{"name":"Ms. Oscar Mayert","age":21,"location":"Connellyview"}},{"attributes":{"name":"Johnathan Collier-Padberg","age":26,"location":"Fort Shanelside"}},{"attributes":{"name":"Freddie Kub","age":40,"location":"Kipville"}},{"attributes":{"name":"Keyon Roberts","age":40,"location":"Maggioboro"}},{"attributes":{"name":"Petra Monahan","age":26,"location":"South Lavonne"}},{"attributes":{"name":"Adam Grant","age":19,"location":"Trudieberg"}},{"attributes":{"name":"Mable Jaskolski","age":74,"location":"North Sadyestead"}},{"attributes":{"name":"Ramiro Rohan V","age":29,"location":"East Delfina"}},{"attributes":{"name":"Lacy Morissette","age":23,"location":"New Cristianboro"}},{"attributes":{"name":"Dr. Adrian Ortiz","age":27,"location":"La Crosse"}},{"attributes":{"name":"Marielle Zieme","age":36,"location":"Aurora"}},{"attributes":{"name":"Mrs. Derrick Conn","age":33,"location":"Roweborough"}},{"attributes":{"name":"Violet Weber","age":67,"location":"Pourosworth"}},{"attributes":{"name":"Mary Mayer","age":49,"location":"South Lula"}},{"attributes":{"name":"Miss Gustavo Donnelly","age":65,"location":"Spring"}},{"attributes":{"name":"Garry Berge","age":24,"location":"West Rahul"}},{"attributes":{"name":"Santos Runolfsdottir","age":61,"location":"Petaluma"}},{"attributes":{"name":"Margie Carter","age":68,"location":"Carlsbad"}},{"attributes":{"name":"Martin Schulist II","age":72,"location":"Lake Napoleonchester"}},{"attributes":{"name":"Cathy Raynor","age":71,"location":"East Rod"}},{"attributes":{"name":"Norman Mitchell","age":70,"location":"Port Charlotte"}},{"attributes":{"name":"Marcus Hettinger MD","age":25,"location":"Shemarton"}},{"attributes":{"name":"Lonnie Franey II","age":66,"location":"East Adella"}},{"attributes":{"name":"Frida Heathcote","age":45,"location":"Lompoc"}},{"attributes":{"name":"Willard Bins","age":55,"location":"Helmerfield"}},{"attributes":{"name":"Lynn Koch","age":65,"location":"Emmiestead"}},{"attributes":{"name":"Tim Becker","age":44,"location":"North Taya"}},{"attributes":{"name":"Catherine Bergstrom","age":76,"location":"Blaisemouth"}},{"attributes":{"name":"Lynne Brown","age":80,"location":"North Clarabelle"}},{"attributes":{"name":"Raquel Kilback","age":50,"location":"Stillwater"}},{"attributes":{"name":"Jaime Kub-Yost","age":33,"location":"Zacharyhaven"}},{"attributes":{"name":"Ezekiel Jacobson","age":69,"location":"Port Aaron"}},{"attributes":{"name":"Dixie Dibbert","age":36,"location":"Garthside"}},{"attributes":{"name":"Everett Wilderman","age":36,"location":"West Casey"}},{"attributes":{"name":"Lyle Bernier I","age":69,"location":"Arianeshire"}},{"attributes":{"name":"Cathy Ankunding","age":66,"location":"Tracy"}},{"attributes":{"name":"Clyde Green","age":42,"location":"Carolchester"}},{"attributes":{"name":"Katrina Ritchie","age":27,"location":"Ashleighbury"}},{"attributes":{"name":"Elsie Wilkinson-Herman","age":29,"location":"Fort Brown"}},{"attributes":{"name":"Wilfred Ryan","age":57,"location":"East Trevashire"}},{"attributes":{"name":"Raheem Harvey","age":58,"location":"East Lauryn"}},{"attributes":{"name":"Carlton Ferry","age":58,"location":"Predovicbury"}},{"attributes":{"name":"Jared Davis","age":73,"location":"Lake Alda"}},{"attributes":{"name":"Anthony Fisher","age":23,"location":"West Assuntaside"}},{"attributes":{"name":"Candace Walter","age":78,"location":"Lake Kasandra"}},{"attributes":{"name":"Kaela Cummerata II","age":41,"location":"Hayesshire"}},{"attributes":{"name":"Shaniya Gerhold","age":32,"location":"VonRuedenview"}},{"attributes":{"name":"Irwin Herman V","age":66,"location":"Gardena"}},{"attributes":{"name":"Francisco Weissnat","age":64,"location":"Spokane Valley"}},{"attributes":{"name":"Jamie Klein","age":40,"location":"Dibbertfort"}},{"attributes":{"name":"Eduardo Kub","age":78,"location":"Willview"}},{"attributes":{"name":"Judy Fritsch","age":25,"location":"North Alison"}},{"attributes":{"name":"Martin Lubowitz","age":63,"location":"Rennerfort"}},{"attributes":{"name":"Evangeline Bernhard Sr.","age":38,"location":"New Bedford"}},{"attributes":{"name":"Sarah Strosin","age":66,"location":"Cincinnati"}},{"attributes":{"name":"Mindy Nicolas","age":31,"location":"West Keirahaven"}},{"attributes":{"name":"Van Ward","age":34,"location":"Lake Bobbieboro"}},{"attributes":{"name":"Layne Hoeger","age":79,"location":"Walkerfort"}},{"attributes":{"name":"Marvin Mills","age":51,"location":"New Clint"}},{"attributes":{"name":"Bert Oberbrunner","age":35,"location":"Fabiolashire"}},{"attributes":{"name":"Eugene Bashirian","age":39,"location":"Aloha"}},{"attributes":{"name":"Jazmyne Witting","age":56,"location":"South Hillard"}},{"attributes":{"name":"Ruby Dietrich","age":66,"location":"New Blaisetown"}},{"attributes":{"name":"Miss Billie Kessler","age":20,"location":"Kobestead"}},{"attributes":{"name":"Ms. Bonnie Bradtke","age":72,"location":"Prohaskaboro"}},{"attributes":{"name":"Jeffrey Grady","age":76,"location":"South Tarafurt"}},{"attributes":{"name":"Francis MacGyver","age":24,"location":"Fort Garthstead"}},{"attributes":{"name":"Torey Cassin","age":66,"location":"Shanelfurt"}},{"attributes":{"name":"Brendan Douglas DDS","age":60,"location":"East Nikita"}},{"attributes":{"name":"Lynette Hansen","age":27,"location":"Corona"}},{"attributes":{"name":"Pamela Mann","age":20,"location":"Reaganside"}},{"attributes":{"name":"Tabitha Simonis","age":76,"location":"Weissnatchester"}},{"attributes":{"name":"Dorthy Prohaska","age":76,"location":"Port Myrtice"}},{"attributes":{"name":"Erika Wunsch","age":63,"location":"Hampton"}},{"attributes":{"name":"Seth White","age":38,"location":"Huelsstead"}},{"attributes":{"name":"Dante Gusikowski","age":28,"location":"South Anastacio"}},{"attributes":{"name":"Camron Ondricka","age":62,"location":"Joannytown"}},{"attributes":{"name":"Alisa Wuckert","age":49,"location":"Potomac"}},{"attributes":{"name":"Sam Krajcik","age":78,"location":"Boehmhaven"}},{"attributes":{"name":"Lauren Thiel","age":70,"location":"Amparoworth"}},{"attributes":{"name":"Jared Haag","age":26,"location":"Port Jannie"}},{"attributes":{"name":"Dr. Georgia Heathcote PhD","age":47,"location":"Wymanton"}},{"attributes":{"name":"Earline Batz","age":66,"location":"South Lempiview"}},{"attributes":{"name":"Adell Trantow","age":51,"location":"Gillianside"}},{"attributes":{"name":"Lloyd Windler","age":46,"location":"Fort Bryon"}},{"attributes":{"name":"Earnest Zulauf","age":54,"location":"East Idellmouth"}},{"attributes":{"name":"Beth Wisoky II","age":53,"location":"Albuquerque"}},{"attributes":{"name":"Audie Willms","age":18,"location":"South Matilde"}},{"attributes":{"name":"Edna Lesch","age":28,"location":"St. Cloud"}},{"attributes":{"name":"Danielle Powlowski","age":80,"location":"Hilpertfort"}},{"attributes":{"name":"Gloria Sauer","age":68,"location":"Evansfield"}},{"attributes":{"name":"Kay Altenwerth","age":50,"location":"Vitostead"}},{"attributes":{"name":"Kerry McCullough","age":41,"location":"South Godfreyhaven"}},{"attributes":{"name":"Vernon Heidenreich DVM","age":45,"location":"New Marta"}},{"attributes":{"name":"Amely Howe","age":37,"location":"Emmettberg"}},{"attributes":{"name":"Hanna Mayer I","age":60,"location":"Mohrland"}},{"attributes":{"name":"Mr. Leo Ebert","age":47,"location":"East Velda"}},{"attributes":{"name":"Gloria Little","age":36,"location":"East Hanna"}},{"attributes":{"name":"Gary Wolf DDS","age":33,"location":"West Dixiemouth"}},{"attributes":{"name":"Rosalyn Pfeffer","age":21,"location":"Altenwerthview"}},{"attributes":{"name":"Nyah Schroeder","age":46,"location":"Pourosworth"}},{"attributes":{"name":"Leone Crist","age":53,"location":"South Estell"}},{"attributes":{"name":"Keven Leannon","age":32,"location":"Eltaberg"}},{"attributes":{"name":"Donnie Collier PhD","age":62,"location":"Port Rafaelafort"}},{"attributes":{"name":"Roberta O'Connell","age":51,"location":"Lake Armaniport"}},{"attributes":{"name":"Carole Schinner","age":24,"location":"Fort Juliusport"}},{"attributes":{"name":"Sanford Murazik","age":25,"location":"West Briceburgh"}},{"attributes":{"name":"Leonie Quitzon","age":64,"location":"Lake Evalyn"}},{"attributes":{"name":"Earnest Bailey","age":63,"location":"Westminster"}},{"attributes":{"name":"Roman O'Conner","age":58,"location":"Trujillo Alto"}},{"attributes":{"name":"Hattie Prohaska","age":21,"location":"Janelleshire"}},{"attributes":{"name":"Jon Wiza","age":48,"location":"Lake Makayla"}},{"attributes":{"name":"Eric O'Reilly","age":55,"location":"Terre Haute"}},{"attributes":{"name":"Belinda Schuster","age":44,"location":"Syracuse"}},{"attributes":{"name":"Dr. Claudine Vandervort","age":71,"location":"Evestad"}},{"attributes":{"name":"Kristoffer Dickens","age":21,"location":"Romatown"}},{"attributes":{"name":"Reed Heller","age":35,"location":"Lake Lisastead"}},{"attributes":{"name":"Constantin Cassin","age":60,"location":"West Hartford"}},{"attributes":{"name":"Brandon Mayert","age":67,"location":"Skileston"}},{"attributes":{"name":"Edgardo Haley Jr.","age":54,"location":"Lake Charityburgh"}},{"attributes":{"name":"Coty Rosenbaum","age":75,"location":"Lake Darleneville"}},{"attributes":{"name":"Nicola King","age":79,"location":"West Filiberto"}},{"attributes":{"name":"Terry Tremblay","age":59,"location":"Chattanooga"}},{"attributes":{"name":"Trevor Gutkowski","age":37,"location":"East Bellaview"}},{"attributes":{"name":"Carlos Donnelly","age":28,"location":"Sheboygan"}},{"attributes":{"name":"Kale Parker","age":34,"location":"South Sigurdstead"}},{"attributes":{"name":"Cary Pacocha DVM","age":61,"location":"Port Benny"}},{"attributes":{"name":"Geovany Keeling","age":37,"location":"Webershire"}},{"attributes":{"name":"Myriam Bergstrom","age":75,"location":"Reichertburgh"}},{"attributes":{"name":"Mr. Gerald Corkery","age":43,"location":"Bentontown"}},{"attributes":{"name":"Rolando Effertz-Gleason","age":78,"location":"Logan"}},{"attributes":{"name":"Wilbert Cruickshank-Gusikowski","age":35,"location":"Hanford"}},{"attributes":{"name":"Vivian Johns","age":80,"location":"Elizabeth"}},{"attributes":{"name":"Camille Ward","age":71,"location":"Melodycester"}},{"attributes":{"name":"Marcella Hettinger","age":80,"location":"Raymondview"}},{"attributes":{"name":"Sheridan Mitchell","age":44,"location":"North Agustinside"}},{"attributes":{"name":"Natalie Lakin","age":78,"location":"State College"}},{"attributes":{"name":"Buddy Aufderhar","age":46,"location":"Adamview"}},{"attributes":{"name":"Otis Schulist","age":31,"location":"Lake Richie"}},{"attributes":{"name":"Shelia King","age":30,"location":"Herzogworth"}},{"attributes":{"name":"Leona Schmidt","age":63,"location":"Jeramieberg"}},{"attributes":{"name":"Tamara Wilderman","age":57,"location":"Braxtonbury"}},{"attributes":{"name":"Isac Ernser","age":43,"location":"Port Orange"}},{"attributes":{"name":"Bessie Orn-Graham","age":24,"location":"Chico"}},{"attributes":{"name":"Noah Pacocha","age":74,"location":"West Delmerworth"}},{"attributes":{"name":"Marlen Fisher","age":43,"location":"North Shane"}},{"attributes":{"name":"Dr. Floyd Parisian","age":67,"location":"Bayerfurt"}},{"attributes":{"name":"Pamela Jacobs III","age":66,"location":"Stacyside"}},{"attributes":{"name":"Miss Rex Douglas","age":77,"location":"East Kalebstead"}},{"attributes":{"name":"Virgil Conroy","age":53,"location":"Parker"}},{"attributes":{"name":"Juan Kutch","age":61,"location":"Novamouth"}},{"attributes":{"name":"Celine Morar","age":78,"location":"Antwanfurt"}},{"attributes":{"name":"Rebeca Kuvalis-Klocko","age":26,"location":"Karsonland"}},{"attributes":{"name":"Russel Borer","age":73,"location":"Lake Barrettfurt"}},{"attributes":{"name":"Darrell Feil","age":73,"location":"Port Laurelland"}},{"attributes":{"name":"Michele Breitenberg","age":69,"location":"Lowell"}},{"attributes":{"name":"Greg Kunde","age":48,"location":"Somerville"}},{"attributes":{"name":"Miss Kate Ferry","age":24,"location":"Fort Ellsworth"}},{"attributes":{"name":"Faith Hand","age":52,"location":"South Virgil"}},{"attributes":{"name":"Doris Rowe","age":62,"location":"South Oralborough"}},{"attributes":{"name":"Patrick Stehr","age":73,"location":"Lake Emmalee"}},{"attributes":{"name":"Clyde Bode","age":77,"location":"Hammond"}},{"attributes":{"name":"Mr. Duane Oberbrunner Jr.","age":25,"location":"Fort Princessfield"}},{"attributes":{"name":"Charlie Hirthe","age":51,"location":"North Bartholomeview"}},{"attributes":{"name":"Prince Hettinger","age":73,"location":"Cummingsmouth"}},{"attributes":{"name":"Tyson Lindgren","age":21,"location":"North Natcester"}},{"attributes":{"name":"Carissa Franey","age":34,"location":"Hadleyworth"}},{"attributes":{"name":"Mrs. Anne Becker","age":53,"location":"East Emmastead"}},{"attributes":{"name":"Dr. Vicky Schmitt","age":27,"location":"Nolanfield"}},{"attributes":{"name":"Carley Spinka","age":22,"location":"Jacobsonshire"}},{"attributes":{"name":"Troy Hauck","age":21,"location":"Bradview"}},{"attributes":{"name":"Prudence Hilll","age":27,"location":"Quigleyberg"}},{"attributes":{"name":"Mrs. Mae Yost","age":75,"location":"Chancebury"}},{"attributes":{"name":"Mac Trantow Sr.","age":52,"location":"Rosenbaumstead"}},{"attributes":{"name":"Milton Kohler","age":39,"location":"South Kathleenfurt"}},{"attributes":{"name":"Cruz Stark","age":79,"location":"Livonia"}},{"attributes":{"name":"Ellis Heller Jr.","age":52,"location":"Macyburgh"}},{"attributes":{"name":"Cleo Maggio","age":62,"location":"New Sandy"}},{"attributes":{"name":"Izabella Hudson II","age":72,"location":"Glen Burnie"}},{"attributes":{"name":"Elvie Kihn","age":67,"location":"South Garrison"}},{"attributes":{"name":"Renee Ledner","age":34,"location":"Fort Mitchell"}},{"attributes":{"name":"Aletha Lang","age":40,"location":"East Valentineview"}},{"attributes":{"name":"Angel Lind","age":33,"location":"Cummingsberg"}},{"attributes":{"name":"Dr. Ebony O'Hara","age":35,"location":"National City"}},{"attributes":{"name":"Johnathan Marks DVM","age":52,"location":"Tyrellchester"}},{"attributes":{"name":"Doreen Klocko","age":40,"location":"New Richmondchester"}},{"attributes":{"name":"Tanya Batz","age":70,"location":"Temple"}},{"attributes":{"name":"Alfred Koelpin","age":53,"location":"Goyettestad"}},{"attributes":{"name":"Nora Zboncak","age":49,"location":"South Ruth"}},{"attributes":{"name":"Concepcion Beier II","age":37,"location":"Tristinton"}},{"attributes":{"name":"Grace Kassulke","age":75,"location":"Labadieworth"}},{"attributes":{"name":"Elizabeth Crona DDS","age":34,"location":"Miracleshire"}},{"attributes":{"name":"Randolph Lueilwitz","age":25,"location":"Domenicktown"}},{"attributes":{"name":"Leland Wisozk","age":22,"location":"Romanworth"}},{"attributes":{"name":"Susie Morissette","age":20,"location":"West Marlon"}},{"attributes":{"name":"Rodolfo Lind","age":76,"location":"Oberbrunnerfield"}},{"attributes":{"name":"Micah Larson","age":51,"location":"New Jaylinfurt"}},{"attributes":{"name":"Kate Hoppe-Kassulke","age":56,"location":"South Cynthia"}},{"attributes":{"name":"Dr. Geoffrey Ernser","age":47,"location":"North Rafaelfort"}},{"attributes":{"name":"Mr. Marjorie Sawayn","age":32,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Darryl Schiller","age":22,"location":"Annandale"}},{"attributes":{"name":"Rufus Turcotte Jr.","age":22,"location":"Lake Shyanne"}},{"attributes":{"name":"Citlalli Wisoky","age":49,"location":"New Joville"}},{"attributes":{"name":"Kim Altenwerth","age":62,"location":"North Nicola"}},{"attributes":{"name":"Ernesto Mayer","age":40,"location":"MacGyverbury"}},{"attributes":{"name":"Abraham Thompson","age":62,"location":"Eden Prairie"}},{"attributes":{"name":"Shannon Ritchie","age":60,"location":"Janieton"}},{"attributes":{"name":"Miss Jacinto Hoppe","age":25,"location":"Fort Kristin"}},{"attributes":{"name":"Freddy Ledner","age":26,"location":"Trentborough"}},{"attributes":{"name":"Dell Brakus","age":30,"location":"New Mohammed"}},{"attributes":{"name":"Karen Schuppe","age":68,"location":"Luettgencester"}},{"attributes":{"name":"Marsha Nikolaus","age":75,"location":"Arvidport"}},{"attributes":{"name":"Jermey Gleichner","age":74,"location":"Philadelphia"}},{"attributes":{"name":"Sean Daugherty","age":44,"location":"West Briana"}},{"attributes":{"name":"Iliana Rogahn DDS","age":38,"location":"Corwinland"}},{"attributes":{"name":"Miss Delbert Cole","age":52,"location":"Madieburgh"}},{"attributes":{"name":"Morris Hintz","age":52,"location":"Port Cynthiachester"}},{"attributes":{"name":"Mr. Nannie Hermiston","age":64,"location":"West Jaeden"}},{"attributes":{"name":"Karley Turner","age":32,"location":"Sengerhaven"}},{"attributes":{"name":"Ms. Jessica Greenfelder","age":44,"location":"Assuntaborough"}},{"attributes":{"name":"Raegan Fadel II","age":28,"location":"Tyreetown"}},{"attributes":{"name":"Ms. Cedrick Marks","age":60,"location":"Fort Haileeboro"}},{"attributes":{"name":"Mr. Bill Kirlin","age":36,"location":"East Casey"}},{"attributes":{"name":"Susanna Feeney-Thompson","age":25,"location":"Oceanside"}},{"attributes":{"name":"Miss Erma Kling IV","age":49,"location":"Lake Seamus"}},{"attributes":{"name":"Rowan Shanahan","age":43,"location":"South Edgar"}},{"attributes":{"name":"Brad Beer","age":31,"location":"Horacefield"}},{"attributes":{"name":"Felipe Ryan","age":18,"location":"Kreigerville"}},{"attributes":{"name":"Rylee Kub","age":79,"location":"Covina"}},{"attributes":{"name":"Darin Jakubowski Jr.","age":50,"location":"Topeka"}},{"attributes":{"name":"Lynn Wisoky Sr.","age":25,"location":"Fort Clementview"}},{"attributes":{"name":"Antonia Waters DDS","age":19,"location":"Lake Dorris"}},{"attributes":{"name":"Antonietta Williamson","age":51,"location":"South Chelsea"}},{"attributes":{"name":"Joan Mraz","age":71,"location":"Clayberg"}},{"attributes":{"name":"Ramiro Hand","age":77,"location":"Coral Gables"}},{"attributes":{"name":"Kelley Turcotte III","age":48,"location":"Santa Maria"}},{"attributes":{"name":"Jeanette Dooley","age":58,"location":"North Dariana"}},{"attributes":{"name":"Jayme Wolff","age":31,"location":"East Genevieve"}},{"attributes":{"name":"Hans Beahan","age":53,"location":"Batzview"}},{"attributes":{"name":"Loy Botsford","age":26,"location":"Lancaster"}},{"attributes":{"name":"Dr. Jessica Schulist","age":53,"location":"Collinsburgh"}},{"attributes":{"name":"Peter King","age":69,"location":"New Marianne"}},{"attributes":{"name":"Justus Wilkinson","age":36,"location":"Port Francescochester"}},{"attributes":{"name":"Louise Jerde","age":45,"location":"Shieldsfort"}},{"attributes":{"name":"Miss Kristine Skiles","age":47,"location":"North Ulicesburgh"}},{"attributes":{"name":"Teri Orn II","age":57,"location":"East Rickiefort"}},{"attributes":{"name":"Kristin Flatley","age":33,"location":"Elgin"}},{"attributes":{"name":"Sheila Block","age":65,"location":"Reaganworth"}},{"attributes":{"name":"Jeremie Wyman","age":27,"location":"Grahamstead"}},{"attributes":{"name":"Rudolph Kirlin","age":59,"location":"Huelsfurt"}},{"attributes":{"name":"Gerald Aufderhar","age":48,"location":"Manteca"}},{"attributes":{"name":"Jermaine Schmitt","age":74,"location":"Walnut Creek"}},{"attributes":{"name":"Orlo Mills","age":49,"location":"East Fredview"}},{"attributes":{"name":"Jim Marvin","age":53,"location":"Harveyfort"}},{"attributes":{"name":"Maria O'Kon","age":37,"location":"North Theresiachester"}},{"attributes":{"name":"Lorene Baumbach","age":74,"location":"East Veronicafurt"}},{"attributes":{"name":"Amelia Thompson","age":63,"location":"Huntersville"}},{"attributes":{"name":"Suzanne Bergstrom","age":54,"location":"Buffalo Grove"}},{"attributes":{"name":"Halle Bernier","age":38,"location":"Elkhart"}},{"attributes":{"name":"Mrs. Carrie Ritchie","age":25,"location":"Camarillo"}},{"attributes":{"name":"Tomas Romaguera","age":45,"location":"Russelland"}},{"attributes":{"name":"Don Leannon","age":37,"location":"Morganview"}},{"attributes":{"name":"Merl Stokes","age":34,"location":"South Sheridan"}},{"attributes":{"name":"Mrs. Ava Zemlak","age":32,"location":"Osbaldofort"}},{"attributes":{"name":"Larry Kuvalis","age":53,"location":"Joanyberg"}},{"attributes":{"name":"Carlos Watsica III","age":26,"location":"Bertramshire"}},{"attributes":{"name":"Jane Schimmel","age":28,"location":"New Cale"}},{"attributes":{"name":"Michaela Veum I","age":26,"location":"Fort Ward"}},{"attributes":{"name":"Troy Altenwerth","age":20,"location":"Eulaport"}},{"attributes":{"name":"Major Schuppe Sr.","age":51,"location":"North Marcelino"}},{"attributes":{"name":"Rogelio Volkman","age":74,"location":"New Amber"}},{"attributes":{"name":"Irving Dicki","age":18,"location":"Bethesda"}},{"attributes":{"name":"Karen Hammes MD","age":19,"location":"Seanboro"}},{"attributes":{"name":"Lemuel Becker","age":57,"location":"New Karley"}},{"attributes":{"name":"Roosevelt Blick","age":49,"location":"Fort Carmellamouth"}},{"attributes":{"name":"Braulio Goodwin Jr.","age":75,"location":"Evansville"}},{"attributes":{"name":"Walter Gutmann","age":22,"location":"Ashburn"}},{"attributes":{"name":"Tyler Lemke","age":62,"location":"East Cristinacester"}},{"attributes":{"name":"Cristopher Weissnat","age":40,"location":"North Domenica"}},{"attributes":{"name":"Trevor Powlowski","age":50,"location":"South Janie"}},{"attributes":{"name":"Ernestina Kunze","age":28,"location":"Wymanshire"}},{"attributes":{"name":"Miss Meagan Lindgren","age":49,"location":"Claireside"}},{"attributes":{"name":"Baby Cartwright","age":51,"location":"Lailaland"}},{"attributes":{"name":"Whitney Pfeffer","age":23,"location":"Elyria"}},{"attributes":{"name":"Albin Leuschke","age":21,"location":"Fort Marlonburgh"}},{"attributes":{"name":"Kiara Hettinger","age":60,"location":"Chico"}},{"attributes":{"name":"Ismael Shanahan","age":52,"location":"East Aryanna"}},{"attributes":{"name":"Milton Johns","age":41,"location":"West Malcolmchester"}},{"attributes":{"name":"Cynthia Bahringer I","age":32,"location":"East Lucas"}},{"attributes":{"name":"Margie Quigley","age":34,"location":"Buckridgestad"}},{"attributes":{"name":"Lucille Zulauf","age":43,"location":"West Jay"}},{"attributes":{"name":"Mrs. Freeda Hoppe","age":39,"location":"Arvada"}},{"attributes":{"name":"Gregory Orn","age":72,"location":"Evelynville"}},{"attributes":{"name":"Jan Jones V","age":68,"location":"South Ethylstead"}},{"attributes":{"name":"Barry Effertz","age":52,"location":"Burien"}},{"attributes":{"name":"Tyson Hansen","age":76,"location":"York"}},{"attributes":{"name":"Lula Graham","age":67,"location":"West Jocelynstad"}},{"attributes":{"name":"Lionel Lowe","age":34,"location":"North Danmouth"}},{"attributes":{"name":"Patience Jakubowski","age":30,"location":"New Yasmineville"}},{"attributes":{"name":"Denis Prosacco III","age":59,"location":"Lonport"}},{"attributes":{"name":"Kristi Rice","age":25,"location":"Kutchside"}},{"attributes":{"name":"Roman Hilll","age":27,"location":"Adamsville"}},{"attributes":{"name":"Terence Osinski","age":18,"location":"New Mariaview"}},{"attributes":{"name":"Ben Spencer","age":74,"location":"Fort Corinetown"}},{"attributes":{"name":"Mathew McClure II","age":60,"location":"New Ethelynberg"}},{"attributes":{"name":"Stephanie Franecki","age":38,"location":"Wittingport"}},{"attributes":{"name":"Carlos Langworth","age":74,"location":"Stephanyfort"}},{"attributes":{"name":"Eric Orn-Baumbach","age":57,"location":"North Issacborough"}},{"attributes":{"name":"Christina Larkin","age":38,"location":"Antoninaville"}},{"attributes":{"name":"Nia Rau","age":48,"location":"Batzfurt"}},{"attributes":{"name":"Frederick Nolan","age":72,"location":"Port Kelli"}},{"attributes":{"name":"John Rohan Jr.","age":21,"location":"Maricopa"}},{"attributes":{"name":"Bob Rogahn","age":37,"location":"Bellflower"}},{"attributes":{"name":"Lee Pagac","age":61,"location":"West Zetta"}},{"attributes":{"name":"Finn Bartell","age":66,"location":"Romainetown"}},{"attributes":{"name":"Joann Wilkinson","age":76,"location":"Winonastad"}},{"attributes":{"name":"Perry Connelly","age":44,"location":"Mentor"}},{"attributes":{"name":"Aaron Bogisich","age":75,"location":"Lake Ariel"}},{"attributes":{"name":"Owen Kohler","age":28,"location":"Gutmannchester"}},{"attributes":{"name":"Branson Franecki","age":34,"location":"Texas City"}},{"attributes":{"name":"Ashley Ratke","age":57,"location":"South Baylee"}},{"attributes":{"name":"Nelson Hane","age":19,"location":"Port Stacey"}},{"attributes":{"name":"Allan Ankunding IV","age":39,"location":"Ann Arbor"}},{"attributes":{"name":"Darrell O'Keefe","age":18,"location":"Chapel Hill"}},{"attributes":{"name":"Angel Yost","age":25,"location":"Lake Rubyeburgh"}},{"attributes":{"name":"Annie Kemmer","age":50,"location":"Fort Susie"}},{"attributes":{"name":"Gilbert Rempel","age":71,"location":"Fullerton"}},{"attributes":{"name":"Dallas DuBuque Sr.","age":46,"location":"Pourosbury"}},{"attributes":{"name":"Mr. Idell Kohler","age":49,"location":"North Ellencester"}},{"attributes":{"name":"Jerry Jenkins","age":26,"location":"North Clotildetown"}},{"attributes":{"name":"Wendell Hegmann","age":18,"location":"Appleton"}},{"attributes":{"name":"Kailee O'Kon","age":58,"location":"North Jacquesstad"}},{"attributes":{"name":"Ron Huels","age":43,"location":"New Priceport"}},{"attributes":{"name":"Meggie Gerhold V","age":31,"location":"Port Alva"}},{"attributes":{"name":"Rickey Kulas III","age":51,"location":"North Dejachester"}},{"attributes":{"name":"Janice Rath","age":23,"location":"Eagan"}},{"attributes":{"name":"Dr. Oliver Schuster","age":34,"location":"New Kylabury"}},{"attributes":{"name":"Margaret Cruickshank","age":26,"location":"Rempelshire"}},{"attributes":{"name":"Anibal Beer IV","age":60,"location":"Castro Valley"}},{"attributes":{"name":"Emely Koss","age":19,"location":"North Helen"}},{"attributes":{"name":"Lourdes Ullrich","age":27,"location":"Rockwall"}},{"attributes":{"name":"Cole Pfeffer","age":45,"location":"Sawaynport"}},{"attributes":{"name":"Madelynn Goodwin","age":25,"location":"East Jacklyn"}},{"attributes":{"name":"Norman Boyer V","age":40,"location":"Gerholdchester"}},{"attributes":{"name":"Isaias Ernser","age":66,"location":"Liamport"}},{"attributes":{"name":"Rufus Jenkins","age":43,"location":"Davie"}},{"attributes":{"name":"Fernando Franecki","age":68,"location":"West Rudyborough"}},{"attributes":{"name":"Domenica Purdy","age":24,"location":"Bartellside"}},{"attributes":{"name":"Clara Pouros-Schmitt","age":39,"location":"South Katrina"}},{"attributes":{"name":"Tyler Wintheiser","age":48,"location":"South Keyshawn"}},{"attributes":{"name":"Nancy Skiles","age":56,"location":"Friedrichmouth"}},{"attributes":{"name":"Debra Paucek","age":77,"location":"Bechtelarside"}},{"attributes":{"name":"Lance Lemke-Ullrich","age":30,"location":"Kurtisfield"}},{"attributes":{"name":"Andrew Mitchell","age":49,"location":"Russelmouth"}},{"attributes":{"name":"Malachi Goyette","age":33,"location":"New Effiefurt"}},{"attributes":{"name":"Ebba Champlin PhD","age":32,"location":"Mohrworth"}},{"attributes":{"name":"Anibal Windler","age":36,"location":"Lake Lukasbury"}},{"attributes":{"name":"Ellis Hammes","age":51,"location":"Boynton Beach"}},{"attributes":{"name":"Chet Howe","age":67,"location":"Burleson"}},{"attributes":{"name":"Holly Bechtelar","age":45,"location":"Port Priscillamouth"}},{"attributes":{"name":"Edward Renner","age":23,"location":"East Annieworth"}},{"attributes":{"name":"Doreen Lebsack","age":73,"location":"West Coralie"}},{"attributes":{"name":"Maureen Mayert","age":30,"location":"Trentonbury"}},{"attributes":{"name":"Cameron Haag","age":28,"location":"Armstrongstad"}},{"attributes":{"name":"Lena Grimes","age":72,"location":"North Stacybury"}},{"attributes":{"name":"Calvin Leffler","age":46,"location":"McLaughlinland"}},{"attributes":{"name":"Pearlie Cremin","age":60,"location":"South Estefaniachester"}},{"attributes":{"name":"Tate Waelchi Jr.","age":57,"location":"Ryleighburgh"}},{"attributes":{"name":"Pedro Deckow","age":19,"location":"Alpharetta"}},{"attributes":{"name":"Lewis Heaney","age":22,"location":"Jovanfort"}},{"attributes":{"name":"Gregory Harvey PhD","age":38,"location":"Rosemarieport"}},{"attributes":{"name":"Kelli Pouros-Bernier","age":66,"location":"North Highlands"}},{"attributes":{"name":"Roosevelt Gerlach","age":31,"location":"East Chaunceyborough"}},{"attributes":{"name":"Julia Barrows","age":42,"location":"Port Neal"}},{"attributes":{"name":"Carlos DuBuque","age":22,"location":"Burke"}},{"attributes":{"name":"Mr. Jamarcus Mosciski","age":47,"location":"League City"}},{"attributes":{"name":"Reilly Davis","age":78,"location":"Schroedertown"}},{"attributes":{"name":"Richmond Stehr","age":30,"location":"West Juston"}},{"attributes":{"name":"Rita Feest","age":50,"location":"Kingfield"}},{"attributes":{"name":"Christian Hyatt","age":54,"location":"East Daniella"}},{"attributes":{"name":"Dr. Joey Olson","age":79,"location":"New Athena"}},{"attributes":{"name":"Vincent Schaefer","age":55,"location":"Ryannworth"}},{"attributes":{"name":"Kristy Kling","age":18,"location":"New Genoveva"}},{"attributes":{"name":"Federico Collier","age":66,"location":"Noemiville"}},{"attributes":{"name":"Dave Christiansen","age":25,"location":"Flagstaff"}},{"attributes":{"name":"Lola Stoltenberg I","age":46,"location":"Lake Harrisonboro"}},{"attributes":{"name":"Haven Pfeffer","age":72,"location":"Port Margeland"}},{"attributes":{"name":"Trevor Nolan","age":78,"location":"Fort Stephany"}},{"attributes":{"name":"Zelda Kertzmann","age":36,"location":"East Earnestport"}},{"attributes":{"name":"Meaghan O'Hara","age":78,"location":"East Timothyshire"}},{"attributes":{"name":"Audie Feeney","age":69,"location":"South Trevionberg"}},{"attributes":{"name":"Kayleigh Halvorson","age":37,"location":"Fort Candice"}},{"attributes":{"name":"Leo Green","age":59,"location":"Pfefferborough"}},{"attributes":{"name":"Theresia Stamm","age":44,"location":"South Kaletown"}},{"attributes":{"name":"Marilou Vandervort","age":53,"location":"Littelborough"}},{"attributes":{"name":"Janie McGlynn","age":68,"location":"Jacobimouth"}},{"attributes":{"name":"Gordon Volkman","age":58,"location":"Gussiechester"}},{"attributes":{"name":"Olga D'Amore MD","age":73,"location":"Karelleshire"}},{"attributes":{"name":"Dwight Howell","age":34,"location":"Bell Gardens"}},{"attributes":{"name":"Miss Francisco Glover","age":47,"location":"Scotfort"}},{"attributes":{"name":"Rosemarie Jacobson DDS","age":52,"location":"Fannymouth"}},{"attributes":{"name":"Nicolas Crist","age":43,"location":"Friesenfurt"}},{"attributes":{"name":"Terrell Breitenberg-Feest DVM","age":24,"location":"East Zelmaberg"}},{"attributes":{"name":"Mr. Akeem Gottlieb","age":60,"location":"North Haleigh"}},{"attributes":{"name":"Precious Moen","age":70,"location":"Dorthaboro"}},{"attributes":{"name":"Irvin Raynor","age":30,"location":"Danniestead"}},{"attributes":{"name":"Kristine Crist III","age":43,"location":"South Kaydenstad"}},{"attributes":{"name":"Dominick White","age":49,"location":"North Eric"}},{"attributes":{"name":"Mrs. Kade Altenwerth","age":39,"location":"Emersonton"}},{"attributes":{"name":"Jenna Gislason","age":50,"location":"Windlerstead"}},{"attributes":{"name":"Timothy Hand","age":34,"location":"Nataliemouth"}},{"attributes":{"name":"Rachael Ondricka","age":74,"location":"Mansfield"}},{"attributes":{"name":"Jeromy Romaguera","age":42,"location":"Raleigh"}},{"attributes":{"name":"Gwen Dare","age":33,"location":"Gerryworth"}},{"attributes":{"name":"Bethany Miller","age":45,"location":"New Joannyville"}},{"attributes":{"name":"Blanca Dietrich","age":28,"location":"St. George"}},{"attributes":{"name":"Debbie Aufderhar","age":50,"location":"Chapel Hill"}},{"attributes":{"name":"Brandy D'Amore","age":34,"location":"Hannahshire"}},{"attributes":{"name":"Darian Hayes","age":72,"location":"Lake Kenny"}},{"attributes":{"name":"Nancy Ortiz Jr.","age":26,"location":"Kertzmannview"}},{"attributes":{"name":"Carla Runolfsdottir","age":48,"location":"Phoenix"}},{"attributes":{"name":"Ramiro Casper","age":43,"location":"Georgetown"}},{"attributes":{"name":"Kyleigh Mayer","age":23,"location":"Burleson"}},{"attributes":{"name":"Elissa Harber","age":34,"location":"South Mina"}},{"attributes":{"name":"Allene McDermott Jr.","age":54,"location":"Denton"}},{"attributes":{"name":"Otis O'Reilly","age":20,"location":"Lake Havasu City"}},{"attributes":{"name":"Jaylan Emard","age":54,"location":"Lakinfield"}},{"attributes":{"name":"Adolphus Johnson","age":58,"location":"Fort Brett"}},{"attributes":{"name":"Timothy Botsford","age":41,"location":"New Imelda"}},{"attributes":{"name":"Rhonda Reilly","age":37,"location":"West Ricoworth"}},{"attributes":{"name":"Casey Mayert","age":77,"location":"Fort Osborne"}},{"attributes":{"name":"Litzy Murphy","age":80,"location":"Sanfordside"}},{"attributes":{"name":"Kara Simonis","age":53,"location":"Aliciafurt"}},{"attributes":{"name":"Leland Cruickshank","age":79,"location":"East Cedrick"}},{"attributes":{"name":"Luella Trantow","age":37,"location":"Giovanihaven"}},{"attributes":{"name":"Scott Waters","age":54,"location":"Port Abigayle"}},{"attributes":{"name":"Ernesto Stark","age":71,"location":"New Itzel"}},{"attributes":{"name":"Maida Rippin","age":22,"location":"New Dorriston"}},{"attributes":{"name":"Erna Nolan","age":65,"location":"Nienowstad"}},{"attributes":{"name":"Garrison Schumm","age":33,"location":"West Jasen"}},{"attributes":{"name":"Christina Brekke-Waters IV","age":63,"location":"Lomaborough"}},{"attributes":{"name":"Jessica Grant","age":23,"location":"West Araland"}},{"attributes":{"name":"Marlon Swaniawski","age":37,"location":"Georgiannastad"}},{"attributes":{"name":"Herminia Quitzon","age":70,"location":"Miloland"}},{"attributes":{"name":"Coty Halvorson I","age":46,"location":"South Khalilshire"}},{"attributes":{"name":"Kassandra Haley","age":77,"location":"Davie"}},{"attributes":{"name":"Tara Ryan","age":49,"location":"Deonmouth"}},{"attributes":{"name":"Sonja Kassulke","age":41,"location":"Sawaynfort"}},{"attributes":{"name":"Fernando Harris","age":38,"location":"South Wilhelmburgh"}},{"attributes":{"name":"Austin Prosacco","age":72,"location":"North Trent"}},{"attributes":{"name":"Paxton Rau","age":36,"location":"Port Dameoncester"}},{"attributes":{"name":"Joshua Hansen","age":55,"location":"Visalia"}},{"attributes":{"name":"Jan Tremblay","age":78,"location":"Leacester"}},{"attributes":{"name":"Mr. Percy Glover","age":38,"location":"Liaview"}},{"attributes":{"name":"Johnpaul Jenkins","age":43,"location":"Karlstad"}},{"attributes":{"name":"Kathryn Cassin V","age":59,"location":"Sylvesterfurt"}},{"attributes":{"name":"Virgil Stehr","age":35,"location":"West Rupert"}},{"attributes":{"name":"Dr. Elsie Feeney","age":45,"location":"Bethchester"}},{"attributes":{"name":"Dr. Monserrate Wilkinson","age":76,"location":"South San Francisco"}},{"attributes":{"name":"Vicente Marks III","age":55,"location":"Torranceton"}},{"attributes":{"name":"Paxton Upton Jr.","age":43,"location":"West Kaitlynside"}},{"attributes":{"name":"Bob Lemke","age":74,"location":"Hollywood"}},{"attributes":{"name":"Pablo Cartwright III","age":64,"location":"North Barney"}},{"attributes":{"name":"Estevan Price","age":49,"location":"Lehi"}},{"attributes":{"name":"Faith Nader","age":37,"location":"Hansenburgh"}},{"attributes":{"name":"Brayan Lakin","age":57,"location":"Atlanta"}},{"attributes":{"name":"Cathy Hagenes","age":59,"location":"Lake Ethel"}},{"attributes":{"name":"Alyssa Johnson MD","age":23,"location":"Redding"}},{"attributes":{"name":"Guiseppe Langworth","age":51,"location":"Uriahside"}},{"attributes":{"name":"Tyra Gleason","age":71,"location":"Neilville"}},{"attributes":{"name":"Casimir Gleason","age":62,"location":"New Bailey"}},{"attributes":{"name":"Marcos Ebert V","age":45,"location":"Fort Nicolaberg"}},{"attributes":{"name":"Maurice Kiehn","age":42,"location":"Lake Werner"}},{"attributes":{"name":"Mattie Spinka","age":21,"location":"Rochester Hills"}},{"attributes":{"name":"Russell Heidenreich I","age":22,"location":"Smithville"}},{"attributes":{"name":"Josie Johnston","age":35,"location":"Justusfield"}},{"attributes":{"name":"Dr. Oscar Beatty","age":61,"location":"Selinaboro"}},{"attributes":{"name":"Lindsay Lesch DVM","age":34,"location":"Katherineshire"}},{"attributes":{"name":"Orlando Adams","age":47,"location":"Alannachester"}},{"attributes":{"name":"Elise Jaskolski","age":51,"location":"New Carloschester"}},{"attributes":{"name":"Jan Metz","age":51,"location":"Thorastad"}},{"attributes":{"name":"Mr. Tyler Graham","age":69,"location":"Lake Efrenboro"}},{"attributes":{"name":"Daphney Rau","age":24,"location":"South Jarrod"}},{"attributes":{"name":"Michele Hamill","age":57,"location":"East Ryleeburgh"}},{"attributes":{"name":"Makenzie Paucek","age":64,"location":"Raphaelshire"}},{"attributes":{"name":"Jon Kohler","age":73,"location":"Fort Raul"}},{"attributes":{"name":"Dusty Bruen","age":56,"location":"Tinley Park"}},{"attributes":{"name":"Corey Hettinger","age":20,"location":"East Luther"}},{"attributes":{"name":"Jeannie Emard-Larson","age":53,"location":"Hanford"}},{"attributes":{"name":"Lula Cronin","age":51,"location":"Lake Lindsayberg"}},{"attributes":{"name":"Junius Hand","age":77,"location":"Blandaport"}},{"attributes":{"name":"Willis Block II","age":71,"location":"Ikefurt"}},{"attributes":{"name":"Lee Hegmann","age":47,"location":"North Burnice"}},{"attributes":{"name":"Valerie West","age":58,"location":"Shieldsland"}},{"attributes":{"name":"Kylie Bins","age":51,"location":"West Lillian"}},{"attributes":{"name":"Ronald Brakus","age":21,"location":"West Milan"}},{"attributes":{"name":"Darren Lowe","age":26,"location":"Santa Cruz"}},{"attributes":{"name":"Gwen Langosh","age":64,"location":"West Garrett"}},{"attributes":{"name":"Dr. Doreen Aufderhar","age":59,"location":"Schulistmouth"}},{"attributes":{"name":"Maximus Turner","age":79,"location":"Pico Rivera"}},{"attributes":{"name":"Clarissa Bernier","age":64,"location":"West Laurie"}},{"attributes":{"name":"Glen Powlowski","age":59,"location":"East Tremayne"}},{"attributes":{"name":"Alma Kutch","age":26,"location":"Lake Otho"}},{"attributes":{"name":"Cole Crooks","age":32,"location":"Kelsieshire"}},{"attributes":{"name":"Reanna Funk","age":20,"location":"Lake Alysha"}},{"attributes":{"name":"Otho Price","age":28,"location":"New Unique"}},{"attributes":{"name":"Geneva Bailey","age":69,"location":"Ivaboro"}},{"attributes":{"name":"Mrs. Roxanne Kessler-Huels","age":32,"location":"Lemkefield"}},{"attributes":{"name":"Nicolas Hegmann","age":18,"location":"Feltonstad"}},{"attributes":{"name":"Dessie Kshlerin","age":31,"location":"East Miles"}},{"attributes":{"name":"Nicolas Conn PhD","age":30,"location":"East Britneyfort"}},{"attributes":{"name":"Nayeli Pfannerstill","age":37,"location":"Altenwerthtown"}},{"attributes":{"name":"Dimitri Schiller","age":20,"location":"Gastonia"}},{"attributes":{"name":"Pamela Glover","age":80,"location":"New Tianaville"}},{"attributes":{"name":"Shayna Nader","age":80,"location":"Port Eulahberg"}},{"attributes":{"name":"Jamarcus Ziemann","age":56,"location":"South Maurice"}},{"attributes":{"name":"Ramon Ebert","age":19,"location":"New Adriel"}},{"attributes":{"name":"Lillian O'Connell","age":76,"location":"Dooleyville"}},{"attributes":{"name":"Dr. Patricia Muller PhD","age":33,"location":"Willcester"}},{"attributes":{"name":"Garry Nienow","age":60,"location":"South Paulineport"}},{"attributes":{"name":"Maida Tremblay","age":80,"location":"North Sierraburgh"}},{"attributes":{"name":"Rylan Grimes-Quitzon","age":43,"location":"Greenwood"}},{"attributes":{"name":"Dr. Marc Bednar-Marvin","age":53,"location":"East Rosina"}},{"attributes":{"name":"Rachel Abshire","age":30,"location":"Chicago"}},{"attributes":{"name":"Elizabeth Miller","age":21,"location":"Lake Kaylah"}},{"attributes":{"name":"Freddie Becker","age":74,"location":"Clarksville"}},{"attributes":{"name":"Arthur Reichel","age":24,"location":"Parisianhaven"}},{"attributes":{"name":"Henrietta MacGyver III","age":71,"location":"East Alexanderborough"}},{"attributes":{"name":"Lester Wehner","age":31,"location":"South Drewside"}},{"attributes":{"name":"Ms. Juvenal Kilback PhD","age":24,"location":"North Ellie"}},{"attributes":{"name":"Maureen Rohan Jr.","age":18,"location":"Greenburgh"}},{"attributes":{"name":"Kelli Langworth","age":42,"location":"East Fay"}},{"attributes":{"name":"Mara McKenzie","age":48,"location":"Jeradstead"}},{"attributes":{"name":"Perry Bergstrom DVM","age":21,"location":"Christymouth"}},{"attributes":{"name":"Lorenza Mitchell","age":75,"location":"Millcreek"}},{"attributes":{"name":"Ana Klein","age":47,"location":"Burien"}},{"attributes":{"name":"Ubaldo Emmerich","age":38,"location":"New Jasenhaven"}},{"attributes":{"name":"Norbert Torphy","age":76,"location":"New Adriana"}},{"attributes":{"name":"Blanca Dare","age":75,"location":"Lake Camylleside"}},{"attributes":{"name":"Margaretta Wyman PhD","age":59,"location":"Fort Eino"}},{"attributes":{"name":"Tim Fahey","age":66,"location":"Feeneytown"}},{"attributes":{"name":"Ralph Turner","age":51,"location":"Isaiahfort"}},{"attributes":{"name":"Donnie McCullough","age":27,"location":"Parkerfort"}},{"attributes":{"name":"Tremayne Nicolas","age":79,"location":"East Ima"}},{"attributes":{"name":"Lafayette O'Reilly","age":20,"location":"Rauview"}},{"attributes":{"name":"Miss Darren Hilpert","age":55,"location":"Flatleyville"}},{"attributes":{"name":"William Prosacco","age":34,"location":"Emmanuelville"}},{"attributes":{"name":"Mildred Botsford","age":24,"location":"Botsfordfort"}},{"attributes":{"name":"Ms. Sophia Bins","age":55,"location":"Zemlakburgh"}},{"attributes":{"name":"Alvin Carter","age":53,"location":"Alexandriaport"}},{"attributes":{"name":"Lowell Sawayn","age":72,"location":"Fort Dax"}},{"attributes":{"name":"Priscilla Fay","age":74,"location":"Middletown"}},{"attributes":{"name":"Grady Cassin","age":39,"location":"Jadamouth"}},{"attributes":{"name":"Doris Bergnaum","age":44,"location":"Rempelchester"}},{"attributes":{"name":"Dr. Hilda Kunze","age":26,"location":"Gutkowskitown"}},{"attributes":{"name":"Todd Ruecker","age":32,"location":"Celiaborough"}},{"attributes":{"name":"Dawn Cummings","age":57,"location":"Freeport"}},{"attributes":{"name":"Suzanne Mueller","age":52,"location":"Lake Mohamedworth"}},{"attributes":{"name":"Latoya Schamberger","age":34,"location":"Ervinhaven"}},{"attributes":{"name":"Mrs. Kris Hartmann","age":31,"location":"Emilioboro"}},{"attributes":{"name":"Rene Aufderhar-Price","age":20,"location":"Travontown"}},{"attributes":{"name":"Shannon Parker","age":60,"location":"Shreveport"}},{"attributes":{"name":"Jacquelyn Klein","age":45,"location":"Bloomington"}},{"attributes":{"name":"Louis Hessel","age":43,"location":"Fort Rhoda"}},{"attributes":{"name":"Jeannie Mosciski","age":50,"location":"West Mariannamouth"}},{"attributes":{"name":"Flossie Sporer PhD","age":26,"location":"Dunwoody"}},{"attributes":{"name":"Darryl Hagenes II","age":78,"location":"Lake Juvenalport"}},{"attributes":{"name":"Clark Fritsch Jr.","age":30,"location":"South Darlene"}},{"attributes":{"name":"Merritt Borer","age":28,"location":"Friesenview"}},{"attributes":{"name":"Brandon Conroy","age":75,"location":"Jeffereyshire"}},{"attributes":{"name":"Dr. Kurt Breitenberg","age":67,"location":"North Lorenz"}},{"attributes":{"name":"Vernice Abernathy","age":69,"location":"New Lemuel"}},{"attributes":{"name":"Joana Zieme","age":29,"location":"Rashadfort"}},{"attributes":{"name":"Deontae Trantow","age":26,"location":"Stratford"}},{"attributes":{"name":"Kareem Little","age":64,"location":"Lydamouth"}},{"attributes":{"name":"Emma Dietrich Sr.","age":34,"location":"Leonelville"}},{"attributes":{"name":"Dr. Dave Wehner","age":44,"location":"Cieloport"}},{"attributes":{"name":"Mr. Ray Hane","age":27,"location":"Lake Janyside"}},{"attributes":{"name":"Katie Heathcote","age":65,"location":"Westfield"}},{"attributes":{"name":"Ms. Gloria Kreiger PhD","age":74,"location":"La Crosse"}},{"attributes":{"name":"Alma Labadie","age":79,"location":"Cerritos"}},{"attributes":{"name":"Harriet Ledner","age":71,"location":"Camarillo"}},{"attributes":{"name":"Edwin Kuhlman","age":33,"location":"Runteburgh"}},{"attributes":{"name":"Adelia Murazik","age":33,"location":"East Brionnafurt"}},{"attributes":{"name":"Lorena Barton","age":19,"location":"Hamillfield"}},{"attributes":{"name":"Kellie Goodwin","age":53,"location":"South Luther"}},{"attributes":{"name":"Karl Purdy","age":60,"location":"Johnson City"}},{"attributes":{"name":"Kristoffer Toy","age":65,"location":"Wildermanton"}},{"attributes":{"name":"Everett Maggio","age":24,"location":"Ritchiefort"}},{"attributes":{"name":"Van Gulgowski","age":45,"location":"Kirastead"}},{"attributes":{"name":"Brandon Hagenes Sr.","age":78,"location":"East Alycecester"}},{"attributes":{"name":"Dr. Todd Murphy","age":75,"location":"Weymouth Town"}},{"attributes":{"name":"Ron Zboncak","age":52,"location":"Emmyton"}},{"attributes":{"name":"Brody Murazik","age":34,"location":"Plymouth"}},{"attributes":{"name":"Aubrey Dickinson","age":59,"location":"Homestead"}},{"attributes":{"name":"Sasha Stroman","age":65,"location":"West Ginamouth"}},{"attributes":{"name":"Brian Herzog","age":56,"location":"West Hartford"}},{"attributes":{"name":"Jules Leffler","age":64,"location":"West Frank"}},{"attributes":{"name":"Phil Gleason","age":74,"location":"Tyreseberg"}},{"attributes":{"name":"Mr. Rosemary Parisian-Wehner","age":42,"location":"Johnson City"}},{"attributes":{"name":"Kenny Beahan III","age":55,"location":"North Dejoncester"}},{"attributes":{"name":"Cristopher Davis","age":66,"location":"Norman"}},{"attributes":{"name":"Judy Franecki-Reynolds","age":36,"location":"Antonettafield"}},{"attributes":{"name":"Mr. Annetta Dickinson-Tillman","age":63,"location":"East Immanuel"}},{"attributes":{"name":"Autumn Murazik","age":59,"location":"New Ednashire"}},{"attributes":{"name":"Alia Dietrich","age":33,"location":"Feeneymouth"}},{"attributes":{"name":"Godfrey Klocko","age":57,"location":"Port Nikita"}},{"attributes":{"name":"Daniel Kuhlman","age":30,"location":"Port Daphnestad"}},{"attributes":{"name":"Serena Klein","age":44,"location":"Lynchfurt"}},{"attributes":{"name":"Chris Hayes","age":21,"location":"Meaghanburgh"}},{"attributes":{"name":"Lacey Kub","age":47,"location":"Kerlukeberg"}},{"attributes":{"name":"Eunice Schimmel","age":78,"location":"Teresacester"}},{"attributes":{"name":"Darrell Rau","age":67,"location":"Port Breanne"}},{"attributes":{"name":"Janet Runolfsdottir","age":40,"location":"Beaverton"}},{"attributes":{"name":"Mr. Ashton Hintz","age":65,"location":"Port Meganestead"}},{"attributes":{"name":"Collin Kunde","age":78,"location":"Lake Jodytown"}},{"attributes":{"name":"Judge Cartwright","age":34,"location":"Vitastead"}},{"attributes":{"name":"Dr. Jarret Kovacek","age":71,"location":"Sidshire"}},{"attributes":{"name":"Hilda Schimmel","age":53,"location":"Collierfield"}},{"attributes":{"name":"Euna Lakin","age":79,"location":"Port Judybury"}},{"attributes":{"name":"Kyla Vandervort","age":46,"location":"Barbarashire"}},{"attributes":{"name":"Iris Langworth","age":21,"location":"Port Arlie"}},{"attributes":{"name":"Ruben Moore","age":22,"location":"East Elwin"}},{"attributes":{"name":"Patrick Mohr","age":47,"location":"Ronnyburgh"}},{"attributes":{"name":"Colten Stokes","age":24,"location":"Leonardboro"}},{"attributes":{"name":"Era Rohan","age":70,"location":"Kittyside"}},{"attributes":{"name":"Daniel Kemmer","age":74,"location":"North Aiyanafurt"}},{"attributes":{"name":"Ernest Parisian","age":76,"location":"Fort Celestine"}},{"attributes":{"name":"Benny Stokes","age":62,"location":"Rozellaborough"}},{"attributes":{"name":"Fred Cummerata","age":54,"location":"Dietrichbury"}},{"attributes":{"name":"Mathew King DDS","age":46,"location":"Matildastead"}},{"attributes":{"name":"Elias Bashirian","age":72,"location":"Okunevafurt"}},{"attributes":{"name":"Shane Walter","age":34,"location":"Kaciville"}},{"attributes":{"name":"Angelo Nitzsche MD","age":40,"location":"Mariamworth"}},{"attributes":{"name":"Thomas Waters","age":78,"location":"Bauchside"}},{"attributes":{"name":"Miss Leslie Koss","age":18,"location":"Monserratfield"}},{"attributes":{"name":"Dereck Ryan","age":61,"location":"Portage"}},{"attributes":{"name":"Aliza Jaskolski","age":19,"location":"Lake Princessworth"}},{"attributes":{"name":"Tressa Raynor","age":23,"location":"Sayreville"}},{"attributes":{"name":"Ann Lang","age":34,"location":"Gresham"}},{"attributes":{"name":"Kristie Goodwin","age":69,"location":"Franklin"}},{"attributes":{"name":"Miles Ullrich","age":46,"location":"Wildermanfield"}},{"attributes":{"name":"Ms. Juanita Prohaska","age":35,"location":"Rowland Heights"}},{"attributes":{"name":"Beaulah Lemke","age":59,"location":"Eberttown"}},{"attributes":{"name":"Selmer Lehner","age":45,"location":"Doylebury"}},{"attributes":{"name":"Oliver Jacobi","age":71,"location":"Greenborough"}},{"attributes":{"name":"Carrie Tromp","age":80,"location":"Weissnatberg"}},{"attributes":{"name":"Dr. Matt Heidenreich","age":56,"location":"South Rigoberto"}},{"attributes":{"name":"Chelsea Osinski","age":38,"location":"Rosemead"}},{"attributes":{"name":"Antonia Kuhic","age":71,"location":"Welchchester"}},{"attributes":{"name":"Layla Nitzsche-Bartell","age":75,"location":"McDermottchester"}},{"attributes":{"name":"Marvin Nikolaus","age":27,"location":"New Branson"}},{"attributes":{"name":"Ericka Weissnat","age":42,"location":"Roobside"}},{"attributes":{"name":"Dante Hoppe","age":62,"location":"Baumbachhaven"}},{"attributes":{"name":"Marta Kiehn","age":43,"location":"Volkmanview"}},{"attributes":{"name":"Dr. Twila Kiehn","age":57,"location":"New Juniorside"}},{"attributes":{"name":"Dianne D'Amore","age":29,"location":"Krajcikbury"}},{"attributes":{"name":"Kaycee Treutel II","age":78,"location":"South Sonnyboro"}},{"attributes":{"name":"Lydia Reinger MD","age":30,"location":"East Los Angeles"}},{"attributes":{"name":"Lena Conn","age":35,"location":"Schummfort"}},{"attributes":{"name":"Veronica Thompson","age":77,"location":"South Melany"}},{"attributes":{"name":"Karl Baumbach","age":46,"location":"Lake Cristianview"}},{"attributes":{"name":"Brittany Bechtelar Sr.","age":62,"location":"North Johannaport"}},{"attributes":{"name":"Orval Klocko","age":77,"location":"Mayertburgh"}},{"attributes":{"name":"Ms. Elza Buckridge","age":26,"location":"Rapid City"}},{"attributes":{"name":"Elwyn Stokes","age":43,"location":"South Savanahbury"}},{"attributes":{"name":"Burdette Stracke","age":18,"location":"New Pinkie"}},{"attributes":{"name":"Ms. Tara McKenzie","age":41,"location":"Lake Hector"}},{"attributes":{"name":"Mr. Tim Flatley","age":46,"location":"Konopelskiburgh"}},{"attributes":{"name":"Olga Pfeffer","age":48,"location":"Port Yeseniaview"}},{"attributes":{"name":"Marianne Schaefer","age":66,"location":"Handstad"}},{"attributes":{"name":"Shirley Spencer","age":30,"location":"Jodieview"}},{"attributes":{"name":"Beatrice Johns","age":76,"location":"Port Justina"}},{"attributes":{"name":"Tracy Sipes","age":24,"location":"Adamsport"}},{"attributes":{"name":"Wilfrid Schumm","age":49,"location":"Temple"}},{"attributes":{"name":"Julian Kihn","age":70,"location":"Idaho Falls"}},{"attributes":{"name":"Chaim Bailey","age":80,"location":"South Elnoraside"}},{"attributes":{"name":"Benny Hauck","age":20,"location":"Lake Coyhaven"}},{"attributes":{"name":"Yvonne Prosacco","age":56,"location":"Haleyhaven"}},{"attributes":{"name":"Kelly Cummerata","age":39,"location":"Noemymouth"}},{"attributes":{"name":"Hector Lockman","age":21,"location":"West Zora"}},{"attributes":{"name":"Dr. Mariana Little","age":39,"location":"North Lavina"}},{"attributes":{"name":"Patrick Hirthe","age":62,"location":"Philadelphia"}},{"attributes":{"name":"Audrey Roob","age":70,"location":"Maryamworth"}},{"attributes":{"name":"Brandi Stark IV","age":55,"location":"Sipesland"}},{"attributes":{"name":"Ivan Lang V","age":78,"location":"Lake Randychester"}},{"attributes":{"name":"Dr. Sabryna Cartwright","age":72,"location":"Rahsaanboro"}},{"attributes":{"name":"Blanca Gorczany","age":23,"location":"Port Camron"}},{"attributes":{"name":"Marilie Brekke","age":74,"location":"Nikolauschester"}},{"attributes":{"name":"Pauline Kozey II","age":36,"location":"Sandy"}},{"attributes":{"name":"Ms. Darnell Howe","age":41,"location":"Hermanville"}},{"attributes":{"name":"Sue DuBuque Jr.","age":67,"location":"North Terrell"}},{"attributes":{"name":"Doris Beatty","age":22,"location":"Kuhicborough"}},{"attributes":{"name":"Talon Torp","age":42,"location":"Muellermouth"}},{"attributes":{"name":"Reid Rempel","age":24,"location":"South Agnes"}},{"attributes":{"name":"Kyle Daniel V","age":77,"location":"Hacienda Heights"}},{"attributes":{"name":"Mrs. Zoie Schinner","age":70,"location":"Bahringerborough"}},{"attributes":{"name":"Susan Erdman","age":56,"location":"Cyrilville"}},{"attributes":{"name":"Elsa Kohler","age":63,"location":"Lake Dustin"}},{"attributes":{"name":"Timothy Harvey","age":76,"location":"Blue Springs"}},{"attributes":{"name":"Bonnie Cormier","age":77,"location":"Hamilton"}},{"attributes":{"name":"Bianka Jast","age":43,"location":"Lake Denisborough"}},{"attributes":{"name":"Jeremie Marks","age":30,"location":"Champlinland"}},{"attributes":{"name":"Emanuel Kirlin","age":57,"location":"Ratkeboro"}},{"attributes":{"name":"Faith Schultz-Cruickshank","age":20,"location":"North Kacie"}},{"attributes":{"name":"Ms. Cruz Lang","age":50,"location":"Brownstead"}},{"attributes":{"name":"Mandy Bechtelar","age":19,"location":"North Dawnburgh"}},{"attributes":{"name":"Cameron Stiedemann","age":36,"location":"Michalecester"}},{"attributes":{"name":"Sarah Keeling","age":69,"location":"Fort Christport"}},{"attributes":{"name":"Jean Huels","age":40,"location":"Fort Zaria"}},{"attributes":{"name":"Amely Braun DVM","age":30,"location":"East Jordynstead"}},{"attributes":{"name":"Else O'Reilly","age":67,"location":"Erie"}},{"attributes":{"name":"Ms. Casimir Kling","age":51,"location":"New Orloland"}},{"attributes":{"name":"Lorene Osinski Jr.","age":74,"location":"Flower Mound"}},{"attributes":{"name":"Stanley Rosenbaum","age":25,"location":"Fletcherfield"}},{"attributes":{"name":"Dr. Adriel Wehner","age":19,"location":"Murphyworth"}},{"attributes":{"name":"Mrs. Mable Wehner","age":71,"location":"Curtville"}},{"attributes":{"name":"Bernita Gulgowski","age":43,"location":"Bednarland"}},{"attributes":{"name":"Esther Tremblay","age":25,"location":"Fort Marioview"}},{"attributes":{"name":"Orville Keeling","age":76,"location":"Doyleshire"}},{"attributes":{"name":"Dr. Scottie Frami-Spinka","age":79,"location":"Port Abelardo"}},{"attributes":{"name":"Dora Mann","age":28,"location":"East Payton"}},{"attributes":{"name":"Karen Champlin","age":72,"location":"Silver Spring"}},{"attributes":{"name":"Lauren Zemlak","age":21,"location":"Sipeshaven"}},{"attributes":{"name":"Dr. Johnny Wisoky","age":52,"location":"Sethland"}},{"attributes":{"name":"Aurore Howell","age":27,"location":"Kennewick"}},{"attributes":{"name":"Dwight Abernathy","age":24,"location":"New Dorthy"}},{"attributes":{"name":"Ulices Crist Jr.","age":79,"location":"Port Elodyshire"}},{"attributes":{"name":"Arlie Rutherford","age":76,"location":"Santosport"}},{"attributes":{"name":"Ernestina Stamm","age":57,"location":"Port Chanceton"}},{"attributes":{"name":"Rudy Kessler-Beier","age":53,"location":"Elsamouth"}},{"attributes":{"name":"Karine Little","age":71,"location":"Corafurt"}},{"attributes":{"name":"Jacey Boyer","age":79,"location":"Ceres"}},{"attributes":{"name":"Marian Rohan","age":69,"location":"Bradfordstad"}},{"attributes":{"name":"Kolby Waters","age":38,"location":"State College"}},{"attributes":{"name":"Janis Williamson","age":73,"location":"New Alberthafort"}},{"attributes":{"name":"Amely Blanda","age":57,"location":"Leorastad"}},{"attributes":{"name":"Carolyn Morissette","age":29,"location":"Richardson"}},{"attributes":{"name":"Miss Doug Schmeler-Gutkowski","age":44,"location":"North Missouriboro"}},{"attributes":{"name":"Miss Ardith Schmitt","age":46,"location":"Wayneborough"}},{"attributes":{"name":"Willis Kohler","age":35,"location":"North Beth"}},{"attributes":{"name":"Lenore Stehr","age":78,"location":"Danielport"}},{"attributes":{"name":"Albert Fritsch","age":48,"location":"Lake Lauryboro"}},{"attributes":{"name":"Isabel Hodkiewicz","age":52,"location":"West Lester"}},{"attributes":{"name":"Kay Hickle Jr.","age":80,"location":"Parkertown"}},{"attributes":{"name":"Brandon Toy","age":44,"location":"Lake Mayrafurt"}},{"attributes":{"name":"Lee Weissnat","age":37,"location":"Rachaelville"}},{"attributes":{"name":"Emerson Christiansen","age":22,"location":"Fort Kristianbury"}},{"attributes":{"name":"Johanna Wyman-Nicolas","age":48,"location":"Brakusborough"}},{"attributes":{"name":"Daisy Schaden","age":39,"location":"New Donavonfurt"}},{"attributes":{"name":"Miss Darin Wisozk","age":80,"location":"North Russshire"}},{"attributes":{"name":"Ana Ebert MD","age":67,"location":"Leuschkefield"}},{"attributes":{"name":"Ken Senger III","age":66,"location":"Port Gabriellatown"}},{"attributes":{"name":"Blaise Blick MD","age":38,"location":"Lake Leann"}},{"attributes":{"name":"Jeremiah Emard-Johnson","age":66,"location":"Greenholtton"}},{"attributes":{"name":"Janice Kovacek-Gerhold IV","age":55,"location":"South Tyreekstead"}},{"attributes":{"name":"Talia Labadie Sr.","age":63,"location":"Parisianbury"}},{"attributes":{"name":"Cruz Dickens","age":79,"location":"Vladimirville"}},{"attributes":{"name":"Ricardo Bruen I","age":56,"location":"Tamiami"}},{"attributes":{"name":"Mr. Brandon Kutch","age":38,"location":"Lake Jamison"}},{"attributes":{"name":"Rex Dickinson","age":71,"location":"West Kale"}},{"attributes":{"name":"Mrs. Omari Kohler","age":21,"location":"Creminhaven"}},{"attributes":{"name":"Sabrina Hyatt","age":35,"location":"Rochester"}},{"attributes":{"name":"Julien Haley","age":49,"location":"Jackyberg"}},{"attributes":{"name":"Vincent Parker MD","age":72,"location":"Grand Rapids"}},{"attributes":{"name":"Jose Roberts","age":43,"location":"Fort Antonia"}},{"attributes":{"name":"Vicky O'Kon-Thompson","age":79,"location":"North Berthastead"}},{"attributes":{"name":"Wilbert Corwin","age":60,"location":"La Crosse"}},{"attributes":{"name":"Marc Beatty-Torphy","age":33,"location":"Lawton"}},{"attributes":{"name":"Dorothy Morar I","age":25,"location":"New Zoeychester"}},{"attributes":{"name":"Oswaldo Schumm","age":27,"location":"South Hermann"}},{"attributes":{"name":"Opal Sanford-Grimes","age":31,"location":"New Leliacester"}},{"attributes":{"name":"Everett Heller","age":41,"location":"North Richmond"}},{"attributes":{"name":"Arthur Effertz","age":22,"location":"Port Quincy"}},{"attributes":{"name":"Caroline Zemlak","age":52,"location":"Spencerfield"}},{"attributes":{"name":"Marie Wunsch","age":78,"location":"Port Emmitt"}},{"attributes":{"name":"John Kemmer","age":80,"location":"Leilaniton"}},{"attributes":{"name":"Guiseppe McLaughlin","age":18,"location":"Dickensberg"}},{"attributes":{"name":"Enrique McClure","age":63,"location":"North Ariel"}},{"attributes":{"name":"Cynthia Bradtke","age":60,"location":"Stoltenbergmouth"}},{"attributes":{"name":"Marlene Lemke","age":58,"location":"Muncie"}},{"attributes":{"name":"Dr. Melvin Howe","age":54,"location":"Fort Randallland"}},{"attributes":{"name":"Ewald Littel","age":24,"location":"Tulare"}},{"attributes":{"name":"Cullen Durgan","age":77,"location":"Thompsonfurt"}},{"attributes":{"name":"Becky Powlowski","age":52,"location":"Drakeport"}},{"attributes":{"name":"Rochelle Mitchell PhD","age":74,"location":"North Devin"}},{"attributes":{"name":"Lyric Collins","age":57,"location":"Stokesshire"}},{"attributes":{"name":"Doreen Volkman","age":64,"location":"Alessandroton"}},{"attributes":{"name":"Cruz Schroeder","age":65,"location":"Mariefort"}},{"attributes":{"name":"Harry Doyle","age":75,"location":"East Eddie"}},{"attributes":{"name":"Dixie Adams","age":68,"location":"New Marcelle"}},{"attributes":{"name":"Frank Rosenbaum","age":24,"location":"North Kristopherton"}},{"attributes":{"name":"Eldridge Rodriguez","age":63,"location":"Hyattberg"}},{"attributes":{"name":"Lucie Parker","age":55,"location":"Larkinfield"}},{"attributes":{"name":"Camille Weber","age":48,"location":"Port Mireille"}},{"attributes":{"name":"Chester Koch","age":27,"location":"Lake Kathrynland"}},{"attributes":{"name":"Nettie Beer","age":23,"location":"Town 'n' Country"}},{"attributes":{"name":"Randall Marks","age":31,"location":"Lake Celine"}},{"attributes":{"name":"Dixie Walker","age":59,"location":"Jeffereyberg"}},{"attributes":{"name":"Blake Dare","age":19,"location":"East Amoschester"}},{"attributes":{"name":"Shaun Hane","age":57,"location":"Lesliefort"}},{"attributes":{"name":"Travon Herzog","age":56,"location":"South Janview"}},{"attributes":{"name":"Nona Parisian Sr.","age":33,"location":"Pinkietown"}},{"attributes":{"name":"Mr. Fredrick Daniel","age":78,"location":"Las Vegas"}},{"attributes":{"name":"Kelvin Predovic","age":69,"location":"Decatur"}},{"attributes":{"name":"Lori Medhurst","age":21,"location":"North Paytonworth"}},{"attributes":{"name":"Cathy Considine","age":76,"location":"Port Albertbury"}},{"attributes":{"name":"Claire Johnson","age":59,"location":"Hoboken"}},{"attributes":{"name":"Sarah Klocko","age":46,"location":"Fort Shawna"}},{"attributes":{"name":"Diana Terry","age":39,"location":"Port Linnea"}},{"attributes":{"name":"Geraldine Lebsack-Jacobs","age":67,"location":"East Kurtis"}},{"attributes":{"name":"Shanny Blanda III","age":57,"location":"Lockmanberg"}},{"attributes":{"name":"Kavon Bruen","age":39,"location":"Fort Ottilie"}},{"attributes":{"name":"Clay Hirthe-Breitenberg","age":73,"location":"Allentown"}},{"attributes":{"name":"Alvin Stracke","age":54,"location":"San Jacinto"}},{"attributes":{"name":"Vivian Carroll-Stanton","age":42,"location":"Bednarmouth"}},{"attributes":{"name":"Howard Keebler","age":45,"location":"Lonzofield"}},{"attributes":{"name":"Kade Oberbrunner","age":53,"location":"East Edenboro"}},{"attributes":{"name":"Phil Hagenes","age":31,"location":"Bismarck"}},{"attributes":{"name":"Lew Jones","age":79,"location":"Garland"}},{"attributes":{"name":"Alfred Dooley","age":32,"location":"Morrisfurt"}},{"attributes":{"name":"Teresa Hand MD","age":21,"location":"East Monroeberg"}},{"attributes":{"name":"Tim Upton Jr.","age":47,"location":"Fort Joshuaton"}},{"attributes":{"name":"Tina Stroman","age":20,"location":"Altoona"}},{"attributes":{"name":"Al Wuckert Sr.","age":29,"location":"Louveniafort"}},{"attributes":{"name":"Loyce Lindgren","age":79,"location":"Samsonshire"}},{"attributes":{"name":"Abel Douglas","age":34,"location":"West Helen"}},{"attributes":{"name":"Maryann Kilback","age":70,"location":"Lucioshire"}},{"attributes":{"name":"Marc Macejkovic IV","age":76,"location":"Zoilastead"}},{"attributes":{"name":"Dorothy Schuster","age":68,"location":"East Wayne"}},{"attributes":{"name":"Leone Volkman","age":43,"location":"Cicero"}},{"attributes":{"name":"Miss Lionel O'Kon","age":28,"location":"Mayeburgh"}},{"attributes":{"name":"Vickie Jacobs","age":40,"location":"North Svenworth"}},{"attributes":{"name":"Geneva Doyle","age":30,"location":"Ratkefurt"}},{"attributes":{"name":"Wade Fadel","age":23,"location":"Kristinastad"}},{"attributes":{"name":"Velma O'Kon","age":22,"location":"Belletown"}},{"attributes":{"name":"Mazie Ortiz","age":56,"location":"Maddisonworth"}},{"attributes":{"name":"Simon Wilderman","age":42,"location":"North Mollyshire"}},{"attributes":{"name":"Nolan Bayer","age":40,"location":"North Chelsea"}},{"attributes":{"name":"Brooke Medhurst","age":24,"location":"North Gonzalo"}},{"attributes":{"name":"Matilda Kerluke","age":71,"location":"Lake Niko"}},{"attributes":{"name":"Juanita Bayer","age":29,"location":"Rosinaburgh"}},{"attributes":{"name":"Veronica Hickle","age":53,"location":"Rossieworth"}},{"attributes":{"name":"Conrad Lang","age":69,"location":"Tellyfurt"}},{"attributes":{"name":"Samuel D'Amore","age":76,"location":"South Elyssachester"}},{"attributes":{"name":"Howard Sawayn-Treutel","age":32,"location":"Micheleland"}},{"attributes":{"name":"Jennifer Bailey","age":76,"location":"Lake Wendell"}},{"attributes":{"name":"Bradford Prosacco","age":60,"location":"East Krista"}},{"attributes":{"name":"Ilene Greenholt","age":34,"location":"West Alfredaberg"}},{"attributes":{"name":"Mathew McClure Jr.","age":64,"location":"Stamford"}},{"attributes":{"name":"Claire Rath","age":51,"location":"Joneshaven"}},{"attributes":{"name":"Lorenzo Lynch PhD","age":43,"location":"East Kacey"}},{"attributes":{"name":"Ada Ernser MD","age":40,"location":"New Creolastad"}},{"attributes":{"name":"Lorenz Walter IV","age":37,"location":"Chynafurt"}},{"attributes":{"name":"Curtis Torphy","age":60,"location":"New Isai"}},{"attributes":{"name":"Jerome Hansen I","age":37,"location":"Sallyview"}},{"attributes":{"name":"Dr. Elsie Hermiston","age":60,"location":"Hughstad"}},{"attributes":{"name":"Dr. Katie Gibson","age":63,"location":"Fort Savionboro"}},{"attributes":{"name":"Gwendolyn Hamill","age":28,"location":"Sayreville"}},{"attributes":{"name":"Delia Mosciski","age":53,"location":"West Seneca"}},{"attributes":{"name":"Aron Reynolds","age":46,"location":"New Christop"}},{"attributes":{"name":"Arnold Feeney Jr.","age":29,"location":"Jaydenton"}},{"attributes":{"name":"Mafalda Kovacek","age":39,"location":"Tillmanberg"}},{"attributes":{"name":"Darnell Connelly IV","age":22,"location":"Tacoma"}},{"attributes":{"name":"Miss Daisha Pollich","age":66,"location":"West Bernadette"}},{"attributes":{"name":"Johnnie Willms","age":67,"location":"Joplin"}},{"attributes":{"name":"Taryn Farrell III","age":54,"location":"Clifton"}},{"attributes":{"name":"Dr. Skye Johnston","age":80,"location":"Fort Chris"}},{"attributes":{"name":"Miss Mae Lehner","age":27,"location":"Demarcoborough"}},{"attributes":{"name":"Dr. Betsy Keebler","age":56,"location":"Port Yvonnestad"}},{"attributes":{"name":"Ignacio Cummings","age":46,"location":"Hirtheshire"}},{"attributes":{"name":"Minnie O'Reilly","age":21,"location":"Fort Katrinafield"}},{"attributes":{"name":"Jerod Rogahn","age":20,"location":"Jamisonshire"}},{"attributes":{"name":"Ms. Janice Christiansen","age":70,"location":"New Arnulfo"}},{"attributes":{"name":"Grant Koelpin","age":41,"location":"Skilesboro"}},{"attributes":{"name":"Amie Erdman","age":54,"location":"Ryleeland"}},{"attributes":{"name":"Rhonda Schmitt","age":29,"location":"Borermouth"}},{"attributes":{"name":"Louise Jakubowski","age":32,"location":"Veldahaven"}},{"attributes":{"name":"Miss Terry Lind","age":79,"location":"Creminville"}},{"attributes":{"name":"Eleazar Welch","age":18,"location":"East Helmer"}},{"attributes":{"name":"Jacquelyn Luettgen","age":21,"location":"Cleveland Heights"}},{"attributes":{"name":"Kate Corkery","age":61,"location":"South Keagan"}},{"attributes":{"name":"Carlton Rogahn","age":44,"location":"North Jaymeboro"}},{"attributes":{"name":"Jacinto Kuphal","age":74,"location":"Cincinnati"}},{"attributes":{"name":"Marjorie Stanton","age":46,"location":"Pfeffermouth"}},{"attributes":{"name":"Keanu Moore","age":58,"location":"Marisaport"}},{"attributes":{"name":"Leigh Witting","age":42,"location":"North Ollie"}},{"attributes":{"name":"Marta Terry","age":35,"location":"St. Petersburg"}},{"attributes":{"name":"Bethany Witting","age":41,"location":"Kingsport"}},{"attributes":{"name":"Mrs. Roslyn Langworth","age":79,"location":"Port Jennifer"}},{"attributes":{"name":"Cathryn Bogan II","age":32,"location":"Fort Merrittfort"}},{"attributes":{"name":"Brandy Franecki DDS","age":44,"location":"Port Bonitaberg"}},{"attributes":{"name":"Paolo Bogan","age":65,"location":"East Ulises"}},{"attributes":{"name":"Rafaela Effertz","age":38,"location":"San Leandro"}},{"attributes":{"name":"Dr. Terrance Cruickshank","age":59,"location":"Botsfordborough"}},{"attributes":{"name":"Morgan Block","age":33,"location":"East Kimberly"}},{"attributes":{"name":"Christian Ankunding","age":21,"location":"San Luis Obispo"}},{"attributes":{"name":"Lorene Dicki","age":69,"location":"Schmittside"}},{"attributes":{"name":"Dr. Kerry Predovic II","age":34,"location":"Lake Arturo"}},{"attributes":{"name":"Demarcus Murphy","age":73,"location":"West Jordan"}},{"attributes":{"name":"Rahsaan Anderson IV","age":68,"location":"South Donavonboro"}},{"attributes":{"name":"Adelbert Daniel","age":34,"location":"South Macy"}},{"attributes":{"name":"Ebony Hyatt-Miller","age":48,"location":"North Janeview"}},{"attributes":{"name":"Zack Muller PhD","age":47,"location":"Champlinmouth"}},{"attributes":{"name":"Jeannie Price","age":51,"location":"East Krystalworth"}},{"attributes":{"name":"Shelley Terry","age":43,"location":"West Elmira"}},{"attributes":{"name":"Marcelo Gerhold","age":46,"location":"Hagenesfurt"}},{"attributes":{"name":"Arturo Hegmann","age":77,"location":"Jamiechester"}},{"attributes":{"name":"Tammy Ankunding","age":61,"location":"Spencerboro"}},{"attributes":{"name":"Maverick Casper Sr.","age":34,"location":"North Las Vegas"}},{"attributes":{"name":"Mr. Gerard Bashirian","age":26,"location":"Shyannport"}},{"attributes":{"name":"Myles King","age":21,"location":"East Keara"}},{"attributes":{"name":"Andrea McLaughlin","age":74,"location":"Fort Lewisberg"}},{"attributes":{"name":"Hillary Corwin","age":23,"location":"East Terrell"}},{"attributes":{"name":"Kristin Zieme","age":79,"location":"Windlercester"}},{"attributes":{"name":"Marguerite Goodwin","age":76,"location":"Port Missouriworth"}},{"attributes":{"name":"Josue Little","age":74,"location":"Dietrichstead"}},{"attributes":{"name":"Darla Spinka","age":35,"location":"Harlingen"}},{"attributes":{"name":"Brooke Blick","age":29,"location":"Port Herman"}},{"attributes":{"name":"Gregory Bins","age":59,"location":"Pattieshire"}},{"attributes":{"name":"Jevon Sipes-Veum","age":66,"location":"East Tyreek"}},{"attributes":{"name":"Callie Gorczany","age":31,"location":"Fatimachester"}},{"attributes":{"name":"Billie Schultz I","age":54,"location":"Greenview"}},{"attributes":{"name":"Alfonso Murazik","age":29,"location":"North Claudia"}},{"attributes":{"name":"Mario Pacocha","age":32,"location":"Levittown"}},{"attributes":{"name":"William Wintheiser","age":47,"location":"Thompsonworth"}},{"attributes":{"name":"Corrine Davis","age":76,"location":"Lake Larueland"}},{"attributes":{"name":"Cicero Witting","age":29,"location":"Neilboro"}},{"attributes":{"name":"Vanessa Johnston MD","age":63,"location":"Weldonchester"}},{"attributes":{"name":"Mr. Mustafa Gutmann","age":33,"location":"Brockton"}},{"attributes":{"name":"Ciara Grady","age":40,"location":"Fort Alexandreachester"}},{"attributes":{"name":"Flavio Rempel","age":25,"location":"Goyettetown"}},{"attributes":{"name":"Joyce Hagenes","age":21,"location":"Mantebury"}},{"attributes":{"name":"Jared Nicolas","age":36,"location":"East Lucianoside"}},{"attributes":{"name":"Olive Thompson","age":72,"location":"North Augustcester"}},{"attributes":{"name":"Judith Strosin","age":40,"location":"Bartellchester"}},{"attributes":{"name":"Selina McGlynn","age":34,"location":"West Seanborough"}},{"attributes":{"name":"Jaime Gulgowski-Murazik","age":21,"location":"Raphaelleland"}},{"attributes":{"name":"Ora Mann","age":73,"location":"Schulistfield"}},{"attributes":{"name":"Sean Bailey","age":78,"location":"Port Giles"}},{"attributes":{"name":"Charlotte Kuhn","age":80,"location":"Joshuastad"}},{"attributes":{"name":"Adrian Boyle","age":62,"location":"Fort Tito"}},{"attributes":{"name":"Ms. Donnell Daniel","age":45,"location":"Boyletown"}},{"attributes":{"name":"Wm Steuber","age":70,"location":"Tulsa"}},{"attributes":{"name":"Ms. Camron Kemmer","age":63,"location":"Fort Angela"}},{"attributes":{"name":"Jesus Dach","age":30,"location":"East Jeffry"}},{"attributes":{"name":"Skye Pollich","age":46,"location":"Bernhardhaven"}},{"attributes":{"name":"Ramon Emmerich","age":67,"location":"Schulisttown"}},{"attributes":{"name":"Carlee Boehm","age":47,"location":"Considineberg"}},{"attributes":{"name":"Diane O'Kon","age":66,"location":"Cassinton"}},{"attributes":{"name":"Charles Murphy","age":80,"location":"Huntington Beach"}},{"attributes":{"name":"Celia Cole","age":33,"location":"Fort Kolby"}},{"attributes":{"name":"Jacob Deckow","age":77,"location":"Atlanta"}},{"attributes":{"name":"Courtney Christiansen","age":35,"location":"North Hilbert"}},{"attributes":{"name":"Ms. Shawn Wilderman","age":22,"location":"Yasminefort"}},{"attributes":{"name":"Sean Rowe","age":76,"location":"Spokane"}},{"attributes":{"name":"Alonzo McGlynn","age":27,"location":"South Jordan"}},{"attributes":{"name":"Mr. Freddy Altenwerth","age":49,"location":"Tiffanytown"}},{"attributes":{"name":"Dr. Alvin Berge","age":20,"location":"Schoenport"}},{"attributes":{"name":"Leonie Moore","age":64,"location":"Wisozkberg"}},{"attributes":{"name":"Dr. Matt Homenick","age":52,"location":"Fort Staceytown"}},{"attributes":{"name":"Fernando Kihn","age":39,"location":"South Burnice"}},{"attributes":{"name":"Guadalupe Kunze","age":78,"location":"Cheektowaga"}},{"attributes":{"name":"Gaetano Dietrich","age":64,"location":"Wisozkfort"}},{"attributes":{"name":"Wendy Hahn V","age":31,"location":"Yonkers"}},{"attributes":{"name":"Giovanna Volkman I","age":31,"location":"New Adrainview"}},{"attributes":{"name":"Angela Ebert","age":72,"location":"Erdmanton"}},{"attributes":{"name":"Ramiro Hegmann","age":65,"location":"Austin"}},{"attributes":{"name":"Jared Hettinger V","age":76,"location":"Brakusburgh"}},{"attributes":{"name":"Kathleen Will","age":67,"location":"Surprise"}},{"attributes":{"name":"Mrs. Gloria Hessel","age":79,"location":"South Onaville"}},{"attributes":{"name":"Sergio Harber","age":29,"location":"South Fernando"}},{"attributes":{"name":"Kenny Hackett","age":65,"location":"Dundalk"}},{"attributes":{"name":"Kristin Bauch","age":21,"location":"Rhettport"}},{"attributes":{"name":"Sidney Jenkins","age":77,"location":"Royalborough"}},{"attributes":{"name":"Joy Erdman","age":20,"location":"Heatherfort"}},{"attributes":{"name":"Chester Borer","age":80,"location":"Midwest City"}},{"attributes":{"name":"Tremaine Hyatt-Zboncak","age":33,"location":"West Octaviahaven"}},{"attributes":{"name":"Mrs. Jordan Hudson","age":51,"location":"Downey"}},{"attributes":{"name":"Jeramy Hegmann","age":73,"location":"Jorgeborough"}},{"attributes":{"name":"Blanca Satterfield","age":61,"location":"Denesikboro"}},{"attributes":{"name":"Loyce Runte","age":56,"location":"Harveyside"}},{"attributes":{"name":"Karson Littel","age":61,"location":"Rockychester"}},{"attributes":{"name":"William Schamberger","age":51,"location":"New Busterstad"}},{"attributes":{"name":"Dr. Jessie Brekke","age":29,"location":"Jakubowskiside"}},{"attributes":{"name":"Noah Schamberger","age":39,"location":"Wilkinsonbury"}},{"attributes":{"name":"Roderick Dickinson","age":26,"location":"East Luis"}},{"attributes":{"name":"Joshua Volkman","age":52,"location":"Domenicoton"}},{"attributes":{"name":"Laurie Lesch","age":76,"location":"Coachella"}},{"attributes":{"name":"Austin Friesen PhD","age":54,"location":"Tomasshire"}},{"attributes":{"name":"Clarence Littel","age":21,"location":"Strongsville"}},{"attributes":{"name":"Laurel Keebler","age":45,"location":"Kathryneland"}},{"attributes":{"name":"Dale Lind","age":66,"location":"Leonecester"}},{"attributes":{"name":"Shaylee Jakubowski II","age":46,"location":"Columbus"}},{"attributes":{"name":"Miss Santa Larkin","age":19,"location":"Rylanside"}},{"attributes":{"name":"Kraig Ryan","age":51,"location":"Fort Jacksonbury"}},{"attributes":{"name":"Cortez Greenfelder","age":43,"location":"Wintheiserfield"}},{"attributes":{"name":"Ms. Austin Greenfelder","age":34,"location":"Jewellburgh"}},{"attributes":{"name":"Ismael Auer","age":39,"location":"West Dulceview"}},{"attributes":{"name":"Melissa Schneider","age":50,"location":"Jefferson City"}},{"attributes":{"name":"Henry Daniel","age":32,"location":"East Korey"}},{"attributes":{"name":"Mrs. Franz Medhurst-Jacobi","age":30,"location":"Sadyemouth"}},{"attributes":{"name":"Roosevelt Mayer","age":61,"location":"Baumbachchester"}},{"attributes":{"name":"Jean Johns","age":64,"location":"Mohrtown"}},{"attributes":{"name":"Alexys Dooley","age":47,"location":"Siennaport"}},{"attributes":{"name":"Thalia Koss","age":67,"location":"North Kaleville"}},{"attributes":{"name":"Carolyn Blick","age":63,"location":"Killeen"}},{"attributes":{"name":"Aubrey Little","age":56,"location":"North Oscar"}},{"attributes":{"name":"Jonatan Upton IV","age":50,"location":"Fort Jade"}},{"attributes":{"name":"Carla Macejkovic","age":22,"location":"Salina"}},{"attributes":{"name":"Preston Douglas","age":39,"location":"Fort Amaniport"}},{"attributes":{"name":"Lila Sawayn","age":55,"location":"Townehaven"}},{"attributes":{"name":"Jim Thiel","age":42,"location":"Kemmerborough"}},{"attributes":{"name":"Zula Durgan","age":20,"location":"Karleeberg"}},{"attributes":{"name":"Destiney Zboncak","age":65,"location":"Pedrofort"}},{"attributes":{"name":"Trey Ferry","age":65,"location":"Daughertyton"}},{"attributes":{"name":"Jessie Maggio","age":29,"location":"West Kennedy"}},{"attributes":{"name":"Arturo Wyman","age":72,"location":"Louisville/Jefferson County"}},{"attributes":{"name":"Mike Sipes","age":66,"location":"Fort Elliottchester"}},{"attributes":{"name":"Margie Bauch V","age":68,"location":"South Santiago"}},{"attributes":{"name":"Alma Nitzsche","age":54,"location":"South Finnmouth"}},{"attributes":{"name":"Art Kozey","age":26,"location":"Feilport"}},{"attributes":{"name":"Betty Bradtke","age":19,"location":"Connellyshire"}},{"attributes":{"name":"Lloyd Waters","age":20,"location":"North Glen"}},{"attributes":{"name":"Gilberto Frami","age":68,"location":"New Evelineburgh"}},{"attributes":{"name":"Guadalupe Kulas","age":53,"location":"Balistreriport"}},{"attributes":{"name":"Lela Tillman","age":44,"location":"Caesarfort"}},{"attributes":{"name":"Addison Shields","age":74,"location":"New Keshawntown"}},{"attributes":{"name":"Claud Nikolaus","age":72,"location":"West Winifred"}},{"attributes":{"name":"Randal Barrows","age":34,"location":"Port Orange"}},{"attributes":{"name":"Hazle Zulauf","age":65,"location":"Brookline"}},{"attributes":{"name":"Velva Labadie","age":33,"location":"Gerholdborough"}},{"attributes":{"name":"Joanna Gusikowski","age":20,"location":"New Palmaville"}},{"attributes":{"name":"Elmer Ratke-Hansen","age":50,"location":"North Charityfort"}},{"attributes":{"name":"Matthew Langosh","age":52,"location":"Bellingham"}},{"attributes":{"name":"Edith Schumm I","age":52,"location":"Lebsackview"}},{"attributes":{"name":"Jamie Runolfsdottir","age":23,"location":"McKinney"}},{"attributes":{"name":"Jonathan Stoltenberg","age":33,"location":"Samirshire"}},{"attributes":{"name":"Abraham Corkery","age":70,"location":"Cleveland Heights"}},{"attributes":{"name":"Jamaal Koch","age":54,"location":"Ahmadworth"}},{"attributes":{"name":"Mr. Vernon Dickens","age":35,"location":"New Cliffordfort"}},{"attributes":{"name":"Otilia Schmidt","age":60,"location":"Moline"}},{"attributes":{"name":"Elian Morissette","age":23,"location":"New Francescofort"}},{"attributes":{"name":"Jane Hermiston DVM","age":71,"location":"Kent"}},{"attributes":{"name":"Mr. Mauricio Rau MD","age":61,"location":"Port Stephan"}},{"attributes":{"name":"Gladyce Kris-Farrell","age":59,"location":"New Tommiehaven"}},{"attributes":{"name":"Maximillia Anderson","age":70,"location":"East Nikkostead"}},{"attributes":{"name":"Ambrose Farrell","age":58,"location":"Fort Jeffereyton"}},{"attributes":{"name":"Maximo Skiles","age":34,"location":"Ardithcester"}},{"attributes":{"name":"Adrienne Skiles","age":53,"location":"New Adolfo"}},{"attributes":{"name":"Terrill Runolfsdottir","age":76,"location":"West Sherman"}},{"attributes":{"name":"Dr. Bertha Anderson","age":43,"location":"New Mariettamouth"}},{"attributes":{"name":"Ronny Simonis","age":73,"location":"North Rosalee"}},{"attributes":{"name":"Darien Konopelski Sr.","age":70,"location":"Port Thaddeus"}},{"attributes":{"name":"Raquel Paucek","age":27,"location":"Colorado Springs"}},{"attributes":{"name":"Otis Hamill","age":65,"location":"Sharonborough"}},{"attributes":{"name":"Camron Kub","age":38,"location":"Emmerichcester"}},{"attributes":{"name":"Leopold Stracke","age":56,"location":"National City"}},{"attributes":{"name":"Armando Barton","age":19,"location":"Centennial"}},{"attributes":{"name":"Jacynthe Koss","age":45,"location":"New David"}},{"attributes":{"name":"Craig Streich","age":60,"location":"Ceasarfield"}},{"attributes":{"name":"Rosemarie Treutel","age":64,"location":"Baldwin Park"}},{"attributes":{"name":"Ansel Boehm","age":52,"location":"Citrus Heights"}},{"attributes":{"name":"Dr. Lloyd Reichert","age":39,"location":"Kuphalberg"}},{"attributes":{"name":"Grady Jaskolski","age":21,"location":"West Covina"}},{"attributes":{"name":"Dr. Tony Sporer","age":29,"location":"Port Skylar"}},{"attributes":{"name":"Bill Hirthe","age":56,"location":"Fort Frankhaven"}},{"attributes":{"name":"Rickey Legros","age":23,"location":"Veumland"}},{"attributes":{"name":"Eda Lesch","age":44,"location":"North Natasha"}},{"attributes":{"name":"Dr. Luigi Bahringer","age":24,"location":"West Quinnshire"}},{"attributes":{"name":"Dr. Sydney Erdman","age":32,"location":"Emoryville"}},{"attributes":{"name":"Keyshawn Dietrich","age":54,"location":"Maggiefield"}},{"attributes":{"name":"Granville Lubowitz","age":36,"location":"South Berry"}},{"attributes":{"name":"Leonel Okuneva","age":36,"location":"Port Nedberg"}},{"attributes":{"name":"Laurence Gleason","age":67,"location":"Parkerstad"}},{"attributes":{"name":"Dominique Swaniawski","age":52,"location":"Zulaufport"}},{"attributes":{"name":"Quinton Kohler","age":56,"location":"Taunton"}},{"attributes":{"name":"Joy Pagac-Jaskolski","age":53,"location":"Port Nicholasport"}},{"attributes":{"name":"Dr. Edwardo Weimann","age":27,"location":"East Onaburgh"}},{"attributes":{"name":"Greg Frami-Hodkiewicz","age":24,"location":"Generalchester"}},{"attributes":{"name":"Allen Bednar","age":61,"location":"Port Tamarafield"}},{"attributes":{"name":"Taya Schuppe","age":18,"location":"Rueckerfield"}},{"attributes":{"name":"David Dare","age":51,"location":"West Josuehaven"}},{"attributes":{"name":"Jerrell Carter","age":19,"location":"South Heath"}},{"attributes":{"name":"Katheryn Welch","age":71,"location":"Fort Aishafort"}},{"attributes":{"name":"Greyson Runte","age":76,"location":"South Mistyview"}},{"attributes":{"name":"Otto Hirthe","age":40,"location":"Port Euna"}},{"attributes":{"name":"Miriam Orn","age":67,"location":"Beierland"}},{"attributes":{"name":"Rosalie Hoppe PhD","age":59,"location":"North Aglae"}},{"attributes":{"name":"Laurie Collins","age":57,"location":"Lubowitzburgh"}},{"attributes":{"name":"Diane Wuckert","age":75,"location":"Bartolettiworth"}},{"attributes":{"name":"Denis O'Connell","age":33,"location":"West Vesta"}},{"attributes":{"name":"Dale Crona","age":41,"location":"Camarillo"}},{"attributes":{"name":"Emily Klein","age":25,"location":"Port Sheldonburgh"}},{"attributes":{"name":"Lula Hintz","age":62,"location":"Beavercreek"}},{"attributes":{"name":"Shelia Marvin","age":35,"location":"New Destany"}},{"attributes":{"name":"Ms. Eliezer Champlin","age":49,"location":"Texas City"}},{"attributes":{"name":"Enoch Bayer","age":63,"location":"Cormierport"}},{"attributes":{"name":"Carmel Feeney","age":71,"location":"Alberthamouth"}},{"attributes":{"name":"Ladarius Maggio","age":68,"location":"Sunrise"}},{"attributes":{"name":"Andrea Leuschke","age":75,"location":"North Antwonburgh"}},{"attributes":{"name":"Flora Rohan","age":61,"location":"New Trace"}},{"attributes":{"name":"Sarah Gorczany","age":60,"location":"Aspen Hill"}},{"attributes":{"name":"Dixie Ernser","age":26,"location":"Carson City"}},{"attributes":{"name":"Terry Schamberger","age":70,"location":"Dewittstead"}},{"attributes":{"name":"Sierra Ferry","age":18,"location":"Cedar Hill"}},{"attributes":{"name":"Gene Hansen Jr.","age":43,"location":"West Celineburgh"}},{"attributes":{"name":"Dwayne Conroy","age":52,"location":"Lake Jensen"}},{"attributes":{"name":"Bettie Hammes","age":69,"location":"Kuhicstad"}},{"attributes":{"name":"Paula Gleason","age":40,"location":"Jeffbury"}},{"attributes":{"name":"Abigayle Langosh","age":71,"location":"Robinberg"}},{"attributes":{"name":"Sarah Nolan","age":38,"location":"Fort Lauderdale"}},{"attributes":{"name":"Levi Wintheiser","age":77,"location":"New Mikefort"}},{"attributes":{"name":"Aaron Barrows I","age":47,"location":"New Genovevaton"}},{"attributes":{"name":"Ms. Willie Little DVM","age":48,"location":"Brownport"}},{"attributes":{"name":"Nathaniel Fritsch IV","age":31,"location":"Indio"}},{"attributes":{"name":"Gilbert McDermott","age":24,"location":"Arecibo"}},{"attributes":{"name":"Mack Corwin","age":66,"location":"Lefflerfurt"}},{"attributes":{"name":"Nolan Zieme","age":19,"location":"East Bobbie"}},{"attributes":{"name":"Melba Doyle","age":21,"location":"New Violet"}},{"attributes":{"name":"Mr. Charlene Blick","age":33,"location":"Fort Nikki"}},{"attributes":{"name":"Sasha West","age":55,"location":"Huelside"}},{"attributes":{"name":"Grady Stehr","age":20,"location":"Agustinafort"}},{"attributes":{"name":"Rachel Crona","age":32,"location":"Fort Rex"}},{"attributes":{"name":"Miss Evalyn Feest","age":41,"location":"Juliusside"}},{"attributes":{"name":"Ilene Waters Jr.","age":30,"location":"Holdenfurt"}},{"attributes":{"name":"Ivan Trantow IV","age":24,"location":"Predovicbury"}},{"attributes":{"name":"Keara Gulgowski","age":45,"location":"North Denis"}},{"attributes":{"name":"Louise Howell","age":70,"location":"Xzavierport"}},{"attributes":{"name":"Mr. Mario Weissnat III","age":53,"location":"Port Tabithaport"}},{"attributes":{"name":"Megan Vandervort","age":58,"location":"Alvinashire"}},{"attributes":{"name":"Kale Bednar","age":66,"location":"Russelburgh"}},{"attributes":{"name":"Archibald Green","age":39,"location":"Bowling Green"}},{"attributes":{"name":"Gayle Christiansen","age":79,"location":"St. Peters"}},{"attributes":{"name":"Kendra West","age":74,"location":"Port Camryntown"}},{"attributes":{"name":"Nicolas Brekke III","age":64,"location":"Lelaboro"}},{"attributes":{"name":"Jill Pacocha","age":20,"location":"South Avery"}},{"attributes":{"name":"Yvette Bogisich","age":63,"location":"Pansyshire"}},{"attributes":{"name":"Raymond McClure-Parker","age":42,"location":"Walterfurt"}},{"attributes":{"name":"Danny Dare","age":36,"location":"Schowalterport"}},{"attributes":{"name":"Zack Barton","age":38,"location":"Port Rosalynburgh"}},{"attributes":{"name":"Suzanne O'Reilly","age":57,"location":"West Lorenzo"}},{"attributes":{"name":"Charles Johns","age":75,"location":"East Clementinamouth"}},{"attributes":{"name":"Deanna Torp DVM","age":66,"location":"Dearborn"}},{"attributes":{"name":"Mindy Dibbert","age":65,"location":"Orland Park"}},{"attributes":{"name":"Frankie Hoppe","age":64,"location":"Rogahnborough"}},{"attributes":{"name":"Alberto Casper","age":65,"location":"Fort Jordyworth"}},{"attributes":{"name":"Favian Hessel","age":72,"location":"North Giovani"}},{"attributes":{"name":"Hugh McKenzie","age":44,"location":"Ashlynnberg"}},{"attributes":{"name":"Kristi Bins","age":51,"location":"Scarlettberg"}},{"attributes":{"name":"Ewell Friesen","age":56,"location":"South Jaylinport"}},{"attributes":{"name":"Tyrone Schinner","age":46,"location":"Thornton"}},{"attributes":{"name":"Kathryn Hand","age":62,"location":"Maggioview"}},{"attributes":{"name":"Monserrate Ortiz","age":33,"location":"Lebsackchester"}},{"attributes":{"name":"Irma Greenfelder","age":68,"location":"West Maia"}},{"attributes":{"name":"Marjolaine Huels","age":27,"location":"Botsfordshire"}},{"attributes":{"name":"Sven Stamm","age":19,"location":"Blandaworth"}},{"attributes":{"name":"Mr. Dejuan Baumbach","age":32,"location":"South Caylacester"}},{"attributes":{"name":"Dr. Leslie Hodkiewicz","age":38,"location":"Karibury"}},{"attributes":{"name":"Hugh O'Conner IV","age":80,"location":"North Cassandra"}},{"attributes":{"name":"Beverly Hauck","age":36,"location":"Fargo"}},{"attributes":{"name":"Hester Hills","age":40,"location":"North Shanel"}},{"attributes":{"name":"Jennifer Lockman","age":76,"location":"Brownberg"}},{"attributes":{"name":"Karli Murray","age":60,"location":"Fort Neomafurt"}},{"attributes":{"name":"Janet Nader","age":56,"location":"Antelope"}},{"attributes":{"name":"Miss Karson Larson Sr.","age":28,"location":"East Vincenzo"}},{"attributes":{"name":"Mack Schultz","age":18,"location":"Rogahnmouth"}},{"attributes":{"name":"Jude Zieme","age":38,"location":"Fort Nathanland"}},{"attributes":{"name":"Rowan Labadie","age":52,"location":"Schummbury"}},{"attributes":{"name":"Dustin Hickle","age":68,"location":"Kertzmannfurt"}},{"attributes":{"name":"Madeline Ryan","age":63,"location":"Windlerberg"}},{"attributes":{"name":"Zoie Ledner","age":51,"location":"North Kiara"}},{"attributes":{"name":"Freda Wiegand","age":69,"location":"Stewartmouth"}},{"attributes":{"name":"Otis Goldner","age":56,"location":"Austynview"}},{"attributes":{"name":"Ardella Senger","age":36,"location":"Lewisville"}},{"attributes":{"name":"Ulises Connelly","age":19,"location":"South Tristonside"}},{"attributes":{"name":"Abraham Bailey","age":27,"location":"Ontario"}},{"attributes":{"name":"Madeline Raynor","age":55,"location":"Fort Nelle"}},{"attributes":{"name":"Loren Barrows","age":76,"location":"Boehmside"}},{"attributes":{"name":"Ethel Little","age":63,"location":"Port Chanel"}},{"attributes":{"name":"Marjory Orn","age":71,"location":"East Kirstinfort"}},{"attributes":{"name":"Waylon Kshlerin","age":38,"location":"Tellyshire"}},{"attributes":{"name":"Dean Kiehn","age":41,"location":"Rueckercester"}},{"attributes":{"name":"Andrew Lesch","age":21,"location":"Lake Rylan"}},{"attributes":{"name":"Julian Lind","age":75,"location":"Uptonburgh"}},{"attributes":{"name":"Dr. Bernita Deckow","age":47,"location":"Naderview"}},{"attributes":{"name":"Jimmie Walker","age":51,"location":"Covina"}},{"attributes":{"name":"Phillip Steuber MD","age":63,"location":"Gerdafurt"}},{"attributes":{"name":"Eric Kerluke","age":49,"location":"Lafayettebury"}},{"attributes":{"name":"Vergie Baumbach MD","age":39,"location":"East Catherineton"}},{"attributes":{"name":"Myron Schiller DVM","age":45,"location":"Racine"}},{"attributes":{"name":"Marquis Hintz","age":18,"location":"North Joy"}},{"attributes":{"name":"Jonathan Cartwright","age":22,"location":"Alexandrealand"}},{"attributes":{"name":"Alessia Smitham","age":26,"location":"Margarettatown"}},{"attributes":{"name":"Rowan Rodriguez","age":60,"location":"Palo Alto"}},{"attributes":{"name":"Stacy Price MD","age":80,"location":"Bartonhaven"}},{"attributes":{"name":"Felicia Kemmer","age":57,"location":"Evansville"}},{"attributes":{"name":"Mrs. Marco Armstrong","age":23,"location":"Danikaburgh"}},{"attributes":{"name":"Natalie Lindgren","age":79,"location":"Deontaeburgh"}},{"attributes":{"name":"Adam Purdy","age":22,"location":"Fort Sallie"}},{"attributes":{"name":"Joanna Parker II","age":21,"location":"Arvada"}},{"attributes":{"name":"Trudie Bauch","age":46,"location":"Fort Remington"}},{"attributes":{"name":"Owen Kautzer Sr.","age":34,"location":"Port Lillyborough"}},{"attributes":{"name":"Christine Franecki","age":73,"location":"Montetown"}},{"attributes":{"name":"Courtney Strosin Jr.","age":39,"location":"Binghamton"}},{"attributes":{"name":"Wiley Crooks","age":74,"location":"Newport News"}},{"attributes":{"name":"Maiya Pfannerstill","age":32,"location":"Kozeyboro"}},{"attributes":{"name":"Tressa O'Hara","age":74,"location":"Lake Paulabury"}},{"attributes":{"name":"Eleanora Gulgowski","age":74,"location":"Belleville"}},{"attributes":{"name":"Betty Halvorson","age":59,"location":"Collinsfield"}},{"attributes":{"name":"Isom Streich","age":42,"location":"Portland"}},{"attributes":{"name":"Leonard Greenfelder II","age":23,"location":"Riceboro"}},{"attributes":{"name":"Mrs. Alma Halvorson","age":38,"location":"Irwinborough"}},{"attributes":{"name":"Roy Connelly V","age":50,"location":"Cristophercester"}},{"attributes":{"name":"Khalid Leffler","age":54,"location":"East Alexandremouth"}},{"attributes":{"name":"Terry Blick","age":60,"location":"Arcadia"}},{"attributes":{"name":"Karson Rogahn-Stark","age":52,"location":"Handstead"}},{"attributes":{"name":"Henrietta Von","age":58,"location":"Fort Keshaunfort"}},{"attributes":{"name":"Jonathon Borer-Paucek II","age":72,"location":"Riverside"}},{"attributes":{"name":"Andrea Stanton","age":40,"location":"Port Mollyside"}},{"attributes":{"name":"Nathen Kautzer MD","age":43,"location":"West Karinaboro"}},{"attributes":{"name":"Christy Kuhic","age":27,"location":"South Raheem"}},{"attributes":{"name":"Lonnie Yundt V","age":62,"location":"Pueblo"}},{"attributes":{"name":"Lauryn Stanton","age":64,"location":"West Caitlyn"}},{"attributes":{"name":"Woodrow Schaden","age":70,"location":"Predovicboro"}},{"attributes":{"name":"Laisha Treutel MD","age":79,"location":"Edina"}},{"attributes":{"name":"Agnes Abernathy","age":44,"location":"Port Riley"}},{"attributes":{"name":"Jakayla Fadel","age":43,"location":"Abilene"}},{"attributes":{"name":"Molly Koch","age":43,"location":"New Ayanafield"}},{"attributes":{"name":"Heath Boyle","age":50,"location":"Namehaven"}},{"attributes":{"name":"Louis Powlowski","age":26,"location":"Norman"}},{"attributes":{"name":"Kristine Metz Sr.","age":53,"location":"Lefflerland"}},{"attributes":{"name":"Monserrate Russel","age":31,"location":"Oranshire"}},{"attributes":{"name":"Felicia Lakin","age":18,"location":"Schuppeworth"}},{"attributes":{"name":"Ms. Hertha Mann","age":69,"location":"Rowebury"}},{"attributes":{"name":"Stuart Greenholt","age":38,"location":"Jeramiehaven"}},{"attributes":{"name":"Dexter Larkin","age":25,"location":"South Ford"}},{"attributes":{"name":"Enrique Muller","age":63,"location":"Isacfield"}},{"attributes":{"name":"Ms. Kelley Swift","age":45,"location":"Angelitaland"}},{"attributes":{"name":"Clayton Abbott","age":54,"location":"Orinmouth"}},{"attributes":{"name":"Jessika Treutel","age":42,"location":"New Alexmouth"}},{"attributes":{"name":"Duane Glover","age":56,"location":"Fort Coleworth"}},{"attributes":{"name":"Danielle Reynolds","age":67,"location":"South Magali"}},{"attributes":{"name":"Lorenza Sauer","age":59,"location":"West Glendaboro"}},{"attributes":{"name":"Loy Fahey I","age":68,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Cydney Hane","age":60,"location":"Port Flossie"}},{"attributes":{"name":"Deangelo Roob","age":49,"location":"Port Lilyan"}},{"attributes":{"name":"Darrion Streich DDS","age":43,"location":"Harlingen"}},{"attributes":{"name":"Wilfred Romaguera","age":66,"location":"Osinskiboro"}},{"attributes":{"name":"Juanita Heller","age":32,"location":"Fort Justinaview"}},{"attributes":{"name":"Theodora Grimes III","age":19,"location":"North Yeseniaboro"}},{"attributes":{"name":"Lawson Bode","age":43,"location":"Kesslershire"}},{"attributes":{"name":"Sophia Fay","age":26,"location":"Emmittview"}},{"attributes":{"name":"Joshua Hamill","age":77,"location":"North Gilberto"}},{"attributes":{"name":"Lynn Kohler","age":44,"location":"Fort Frederiquefort"}},{"attributes":{"name":"Irma Bahringer","age":74,"location":"Considinestead"}},{"attributes":{"name":"Cali Gutkowski","age":51,"location":"Vallejo"}},{"attributes":{"name":"Tim Gleason","age":48,"location":"Krisshire"}},{"attributes":{"name":"Tanya Monahan","age":49,"location":"Dachhaven"}},{"attributes":{"name":"Becky Ortiz DDS","age":52,"location":"Largo"}},{"attributes":{"name":"Halie Denesik","age":63,"location":"Taunton"}},{"attributes":{"name":"Gloria Ullrich PhD","age":26,"location":"Washington"}},{"attributes":{"name":"Patty Zemlak","age":62,"location":"Kundehaven"}},{"attributes":{"name":"Brendan Rice I","age":40,"location":"Lake Vickiefurt"}},{"attributes":{"name":"Ashlynn Mills","age":74,"location":"Sauershire"}},{"attributes":{"name":"Bernardo Schaefer","age":21,"location":"Lake Jewellbury"}},{"attributes":{"name":"Emmie O'Keefe","age":40,"location":"Goldnerfield"}},{"attributes":{"name":"Paulette Deckow","age":70,"location":"Hansenchester"}},{"attributes":{"name":"Allison Blanda","age":44,"location":"Alvertabury"}},{"attributes":{"name":"Nicolas Kassulke","age":77,"location":"North Lenoreshire"}},{"attributes":{"name":"Jared Luettgen","age":73,"location":"Kuphalport"}},{"attributes":{"name":"Jacob Daniel","age":69,"location":"New Ewald"}},{"attributes":{"name":"Rudolph Reichel","age":80,"location":"East Kenyon"}},{"attributes":{"name":"Nelson VonRueden","age":75,"location":"Isaiasworth"}},{"attributes":{"name":"Brandt Lehner","age":53,"location":"Lake Mertieland"}},{"attributes":{"name":"Maritza Murazik","age":49,"location":"Purdyland"}},{"attributes":{"name":"Dr. Carlo Prosacco","age":75,"location":"North Layne"}},{"attributes":{"name":"Lucius Schaden","age":42,"location":"Johnsonworth"}},{"attributes":{"name":"Sheldon Connelly","age":72,"location":"Edwinabury"}},{"attributes":{"name":"Doris Tromp","age":29,"location":"Rialto"}},{"attributes":{"name":"Cesar Morar","age":55,"location":"South Maeganview"}},{"attributes":{"name":"Felipe Jenkins","age":60,"location":"Goodyear"}},{"attributes":{"name":"Diana Hills","age":36,"location":"Hassieland"}},{"attributes":{"name":"Leora Cruickshank","age":69,"location":"New Cecile"}},{"attributes":{"name":"Pamela Schumm","age":70,"location":"East Wanda"}},{"attributes":{"name":"Adonis Roberts","age":53,"location":"Ahmadburgh"}},{"attributes":{"name":"Maggie Gottlieb IV","age":42,"location":"Vandervorttown"}},{"attributes":{"name":"Emily Witting I","age":32,"location":"La Crosse"}},{"attributes":{"name":"Eda Thiel","age":22,"location":"New Boyd"}},{"attributes":{"name":"Rosie Schumm","age":60,"location":"Bethelcester"}},{"attributes":{"name":"Hannah Feest","age":18,"location":"Hildegardburgh"}},{"attributes":{"name":"Peggy Stoltenberg","age":78,"location":"Fort Denis"}},{"attributes":{"name":"Miss Gwen Rogahn Jr.","age":80,"location":"Maxwellview"}},{"attributes":{"name":"Dr. Cassie Corwin","age":36,"location":"Gustaveton"}},{"attributes":{"name":"Durward Mayert","age":34,"location":"Heavenboro"}},{"attributes":{"name":"Marion Lesch","age":51,"location":"Runtebury"}},{"attributes":{"name":"Lisa Parisian","age":72,"location":"Germaineton"}},{"attributes":{"name":"Alaina Waters","age":44,"location":"Jalonville"}},{"attributes":{"name":"Thea Ebert","age":68,"location":"Fort Amy"}},{"attributes":{"name":"Mafalda Sauer","age":21,"location":"Port Nicola"}},{"attributes":{"name":"Breana Schaefer","age":47,"location":"Tacoma"}},{"attributes":{"name":"Loren Huels","age":43,"location":"Hilbertboro"}},{"attributes":{"name":"Arturo Torp","age":38,"location":"Berkeley"}},{"attributes":{"name":"Adrian Herzog","age":68,"location":"Hoboken"}},{"attributes":{"name":"Anita Bergnaum","age":51,"location":"New Christport"}},{"attributes":{"name":"Charles Dibbert","age":48,"location":"Roxanecester"}},{"attributes":{"name":"Shelly Little","age":57,"location":"Reingerchester"}},{"attributes":{"name":"Grover Raynor I","age":39,"location":"Moore"}},{"attributes":{"name":"Yoshiko Rodriguez","age":73,"location":"Sidneyborough"}},{"attributes":{"name":"Eloise Will","age":73,"location":"Oletahaven"}},{"attributes":{"name":"Mr. Lowell Fritsch","age":62,"location":"Olsonstad"}},{"attributes":{"name":"Dr. Armando Pacocha","age":76,"location":"Port Reneecester"}},{"attributes":{"name":"Sid Jerde","age":23,"location":"Strongsville"}},{"attributes":{"name":"Neva Orn","age":74,"location":"Visalia"}},{"attributes":{"name":"Anika Mohr","age":21,"location":"Harberport"}},{"attributes":{"name":"Rex Howell","age":41,"location":"Fort Kieranland"}},{"attributes":{"name":"Kristin Wiegand","age":19,"location":"New Brisatown"}},{"attributes":{"name":"Berta Johnson","age":49,"location":"North Josieburgh"}},{"attributes":{"name":"Mrs. Tamara Schultz","age":56,"location":"East Marquis"}},{"attributes":{"name":"Oliver Kemmer","age":49,"location":"Lake Scotty"}},{"attributes":{"name":"Steven Hagenes","age":37,"location":"West Mireilleborough"}},{"attributes":{"name":"Muhammad Kemmer","age":38,"location":"Micahtown"}},{"attributes":{"name":"Miss Marcos Schroeder","age":79,"location":"Coltonboro"}},{"attributes":{"name":"Chaya Thompson II","age":41,"location":"Harrisside"}},{"attributes":{"name":"Debbie Bruen","age":65,"location":"Fort Fredychester"}},{"attributes":{"name":"Lillie Runte","age":60,"location":"Sigridfurt"}},{"attributes":{"name":"Alvah Marquardt","age":52,"location":"Gradyberg"}},{"attributes":{"name":"Martine Morar","age":24,"location":"Hillschester"}},{"attributes":{"name":"Miss Celia Rice","age":30,"location":"Nannieborough"}},{"attributes":{"name":"Elinor Corkery","age":55,"location":"North Avery"}},{"attributes":{"name":"Ayla Carter","age":28,"location":"Lake Jalynhaven"}},{"attributes":{"name":"Faith Haag","age":37,"location":"Fort Katelynnfield"}},{"attributes":{"name":"Billy Crist","age":57,"location":"Pfannerstillchester"}},{"attributes":{"name":"Angelina Wilderman","age":23,"location":"Rustystad"}},{"attributes":{"name":"Rhoda Walker","age":41,"location":"Robertachester"}},{"attributes":{"name":"Caleb Nicolas","age":28,"location":"Iowa City"}},{"attributes":{"name":"Orlando Grant","age":72,"location":"Creolashire"}},{"attributes":{"name":"Zachary Cronin","age":61,"location":"Fisherburgh"}},{"attributes":{"name":"Miss Celestino Parisian","age":45,"location":"Fort Oda"}},{"attributes":{"name":"Mr. Latoya Koss","age":71,"location":"Satterfieldshire"}},{"attributes":{"name":"Sonya Walter","age":57,"location":"New Carleyland"}},{"attributes":{"name":"Florine Hand","age":77,"location":"West Rolando"}},{"attributes":{"name":"Mr. Lou DuBuque MD","age":58,"location":"East Vidastad"}},{"attributes":{"name":"Judson Rippin","age":28,"location":"Daly City"}},{"attributes":{"name":"Ms. Lucia Hermann","age":54,"location":"Murrieta"}},{"attributes":{"name":"Silvia Hegmann","age":48,"location":"Waterbury"}},{"attributes":{"name":"Tabitha Sipes","age":78,"location":"Arvelstead"}},{"attributes":{"name":"Greg Hintz","age":26,"location":"Roanoke"}},{"attributes":{"name":"Nadia Hills","age":46,"location":"Kautzerville"}},{"attributes":{"name":"Noah Harber","age":30,"location":"Carlosstad"}},{"attributes":{"name":"Shane Fahey","age":47,"location":"Bransonfield"}},{"attributes":{"name":"George Mante","age":41,"location":"New Rosalee"}},{"attributes":{"name":"Susan Mann","age":56,"location":"Gracielaworth"}},{"attributes":{"name":"Kale Denesik","age":66,"location":"Shanonville"}},{"attributes":{"name":"Josefina Zboncak","age":26,"location":"Lake Gagecester"}},{"attributes":{"name":"Okey Lindgren","age":43,"location":"Jakobside"}},{"attributes":{"name":"Garret Huels","age":39,"location":"West Jaimeshire"}},{"attributes":{"name":"Danyka Leannon","age":20,"location":"South Erwin"}},{"attributes":{"name":"Clarence Greenholt","age":67,"location":"Littleton"}},{"attributes":{"name":"Mr. Melvin Kessler","age":71,"location":"Jenniferbury"}},{"attributes":{"name":"Dr. Lawrence Watsica","age":41,"location":"Fort Nelsfort"}},{"attributes":{"name":"Charles Collins","age":28,"location":"Pourosport"}},{"attributes":{"name":"Dr. Francis Bruen","age":63,"location":"Rogahnberg"}},{"attributes":{"name":"Hazel Ritchie Jr.","age":18,"location":"Goyetteborough"}},{"attributes":{"name":"Mr. Manuel Nader","age":51,"location":"Coral Springs"}},{"attributes":{"name":"Randolph Kunde III","age":31,"location":"Mullerport"}},{"attributes":{"name":"Mossie Effertz MD","age":75,"location":"Lake Micah"}},{"attributes":{"name":"Ms. Lizeth Shields","age":48,"location":"Port Jennifer"}},{"attributes":{"name":"Casey Harvey","age":78,"location":"Schaeferfurt"}},{"attributes":{"name":"Lavon Dicki-Welch","age":51,"location":"New Leonoraworth"}},{"attributes":{"name":"Fatima Klocko-Stark","age":49,"location":"Warren"}},{"attributes":{"name":"Charles Mosciski","age":25,"location":"Lake Bruceport"}},{"attributes":{"name":"Meghan Larkin","age":43,"location":"Frederick"}},{"attributes":{"name":"Floyd Harber","age":20,"location":"West Reagan"}},{"attributes":{"name":"Mr. Ronald Wisoky","age":51,"location":"West Theoshire"}},{"attributes":{"name":"Rachelle Green","age":23,"location":"New Rosemarie"}},{"attributes":{"name":"Tina Towne","age":35,"location":"Hemet"}},{"attributes":{"name":"Martin Balistreri-Tromp","age":40,"location":"Port Ambrosestad"}},{"attributes":{"name":"Pat Fadel","age":54,"location":"Auerburgh"}},{"attributes":{"name":"Sonia Murazik","age":62,"location":"Nashville-Davidson"}},{"attributes":{"name":"Kiana Rodriguez","age":67,"location":"Shoreline"}},{"attributes":{"name":"Billie Torphy","age":27,"location":"Worcester"}},{"attributes":{"name":"Orin Wisoky","age":54,"location":"Toyside"}},{"attributes":{"name":"Ross Jones","age":69,"location":"Duluth"}},{"attributes":{"name":"Liliane Fritsch-Bernier","age":23,"location":"East Damon"}},{"attributes":{"name":"Dulce Tromp","age":56,"location":"Simonisside"}},{"attributes":{"name":"Kaia Thompson","age":75,"location":"South Uniqueburgh"}},{"attributes":{"name":"Mrs. Shanny O'Conner","age":79,"location":"Wolfton"}},{"attributes":{"name":"Irene Cronin II","age":45,"location":"New Andreane"}},{"attributes":{"name":"Chyna Schimmel","age":45,"location":"West Maximillianland"}},{"attributes":{"name":"Belle Gulgowski-Boehm","age":43,"location":"Hartmannhaven"}},{"attributes":{"name":"Owen Botsford","age":47,"location":"Karenboro"}},{"attributes":{"name":"Koby Kreiger","age":48,"location":"Las Vegas"}},{"attributes":{"name":"Rochelle Langworth","age":47,"location":"Zulafurt"}},{"attributes":{"name":"Dr. Freddie Kunze MD","age":20,"location":"West Myrtle"}},{"attributes":{"name":"Lynette Walker","age":62,"location":"Port Minnie"}},{"attributes":{"name":"Ismael Boyer","age":77,"location":"Winonaton"}},{"attributes":{"name":"Jevon Christiansen-Tremblay","age":34,"location":"Jeffersonville"}},{"attributes":{"name":"Sam Connelly","age":30,"location":"Ceciltown"}},{"attributes":{"name":"June Franey","age":62,"location":"Fort Luis"}},{"attributes":{"name":"Aaron Senger","age":41,"location":"O'Keefehaven"}},{"attributes":{"name":"Beverly Armstrong IV","age":71,"location":"East Destinibury"}},{"attributes":{"name":"Dan Block","age":46,"location":"Parkerville"}},{"attributes":{"name":"Miracle Blick","age":36,"location":"East Heberland"}},{"attributes":{"name":"Kyle Hegmann","age":30,"location":"Christiansentown"}},{"attributes":{"name":"Tillman Harber","age":62,"location":"Tianatown"}},{"attributes":{"name":"Cody Labadie","age":30,"location":"Halborough"}},{"attributes":{"name":"Dr. Vicky Kub Sr.","age":75,"location":"Spinkaside"}},{"attributes":{"name":"Cristina Dickens","age":25,"location":"South Eusebioport"}},{"attributes":{"name":"Ms. Tressa Boyle","age":31,"location":"University"}},{"attributes":{"name":"Steven Rolfson","age":68,"location":"East Kittyboro"}},{"attributes":{"name":"Bernadette Walsh","age":55,"location":"South Edmund"}},{"attributes":{"name":"Vivian Kutch","age":51,"location":"West Jamal"}},{"attributes":{"name":"Lee Cremin","age":33,"location":"Sioux Falls"}},{"attributes":{"name":"Isabel Gulgowski-Fisher","age":41,"location":"Haagfurt"}},{"attributes":{"name":"Tabitha Witting","age":61,"location":"Brandiberg"}},{"attributes":{"name":"Cesar Ledner","age":24,"location":"Fort Dino"}},{"attributes":{"name":"Carmen Nitzsche","age":52,"location":"Port Ottotown"}},{"attributes":{"name":"Phyllis Turcotte","age":46,"location":"West Joyceton"}},{"attributes":{"name":"Mrs. Roosevelt Turner DDS","age":54,"location":"Lake Mervinworth"}},{"attributes":{"name":"Michael Dare-Hansen","age":28,"location":"West Samaratown"}},{"attributes":{"name":"Velda Jones-Wiegand","age":64,"location":"Friesenmouth"}},{"attributes":{"name":"Florencio Cronin","age":80,"location":"Windlerboro"}},{"attributes":{"name":"Kathleen Reynolds","age":29,"location":"New Molly"}},{"attributes":{"name":"Carrie Ward","age":19,"location":"Loisworth"}},{"attributes":{"name":"Anika Moore-Schmidt","age":38,"location":"Caesarbury"}},{"attributes":{"name":"Dr. Charlie Jacobson DVM","age":73,"location":"Port Madiefort"}},{"attributes":{"name":"Althea Hyatt","age":76,"location":"Alveraview"}},{"attributes":{"name":"Dr. Lavonne Ratke","age":73,"location":"Robelworth"}},{"attributes":{"name":"Vallie Kuphal","age":38,"location":"Rosemead"}},{"attributes":{"name":"Destini Lubowitz","age":28,"location":"Nashville-Davidson"}},{"attributes":{"name":"Darrell Homenick Jr.","age":80,"location":"Youngstown"}},{"attributes":{"name":"Gonzalo Fahey Jr.","age":52,"location":"West Ashlyhaven"}},{"attributes":{"name":"Martina Langosh-Nikolaus","age":48,"location":"Orange"}},{"attributes":{"name":"Claud Dooley","age":60,"location":"Apple Valley"}},{"attributes":{"name":"Jaime Sporer","age":74,"location":"North Anderson"}},{"attributes":{"name":"Maximillia Hoeger Jr.","age":66,"location":"North Nash"}},{"attributes":{"name":"Melisa Sanford","age":36,"location":"McKenzietown"}},{"attributes":{"name":"Seth Kilback","age":44,"location":"Solonfield"}},{"attributes":{"name":"Miss Zella Schaden","age":63,"location":"Keyshawncester"}},{"attributes":{"name":"Chad Lang","age":53,"location":"New Fredystad"}},{"attributes":{"name":"Susan Parker IV","age":73,"location":"South Jacquestown"}},{"attributes":{"name":"Martha Bogan","age":45,"location":"Opalport"}},{"attributes":{"name":"Shayna McClure","age":31,"location":"South Tina"}},{"attributes":{"name":"Drew Mueller","age":42,"location":"Deanton"}},{"attributes":{"name":"Betsy Rutherford","age":56,"location":"Elk Grove"}},{"attributes":{"name":"Guadalupe Boyle Sr.","age":39,"location":"North Camylle"}},{"attributes":{"name":"Shelia Casper","age":80,"location":"West Wanda"}},{"attributes":{"name":"Miss Dora Wunsch","age":33,"location":"Tucson"}},{"attributes":{"name":"Cassandra Murray","age":40,"location":"Port Sidneyworth"}},{"attributes":{"name":"Duane McKenzie-Parker","age":71,"location":"East Malvinaside"}},{"attributes":{"name":"Gabriel Robel","age":36,"location":"Miami Beach"}},{"attributes":{"name":"Francisco Beatty","age":48,"location":"Gradyburgh"}},{"attributes":{"name":"Bella Zulauf","age":56,"location":"Sheilafort"}},{"attributes":{"name":"Sheldon Waters","age":61,"location":"Lake Eugenebury"}},{"attributes":{"name":"Cora Toy","age":63,"location":"New Jaylenworth"}},{"attributes":{"name":"Randolph Macejkovic","age":39,"location":"Lake Jennie"}},{"attributes":{"name":"Bill Skiles V","age":65,"location":"Cristville"}},{"attributes":{"name":"Judith Keeling-Reinger","age":30,"location":"New Maxwellworth"}},{"attributes":{"name":"Georgianna Metz","age":22,"location":"West Nathenville"}},{"attributes":{"name":"Rickey Ryan","age":35,"location":"Cleveland"}},{"attributes":{"name":"Mattie O'Keefe","age":24,"location":"Longmont"}},{"attributes":{"name":"Clay Jakubowski","age":33,"location":"Marietta"}},{"attributes":{"name":"Van Skiles","age":27,"location":"South Mason"}},{"attributes":{"name":"Ms. Meghan Stracke","age":22,"location":"South Leafurt"}},{"attributes":{"name":"Cindy Stroman","age":59,"location":"Coltonview"}},{"attributes":{"name":"Alejandro Sporer-Gibson","age":76,"location":"New Jaclynview"}},{"attributes":{"name":"Arnold Baumbach","age":63,"location":"Lake Marquise"}},{"attributes":{"name":"Marlene Hauck","age":79,"location":"Giuseppeport"}},{"attributes":{"name":"Erna Konopelski","age":43,"location":"North Rettashire"}},{"attributes":{"name":"Emily Kertzmann","age":62,"location":"North Ociechester"}},{"attributes":{"name":"Kathryn Huel","age":51,"location":"Rathbury"}},{"attributes":{"name":"Kristine Towne","age":74,"location":"Wittingfurt"}},{"attributes":{"name":"Angelo Wyman","age":31,"location":"Lynnborough"}},{"attributes":{"name":"Spencer Hansen","age":42,"location":"Port Fredaside"}},{"attributes":{"name":"Willis Lebsack","age":50,"location":"New Augusta"}},{"attributes":{"name":"Alberto Mayert","age":22,"location":"Noblesville"}},{"attributes":{"name":"Miss Kathryn Mohr","age":72,"location":"Fort Antonia"}},{"attributes":{"name":"Dell Murazik","age":56,"location":"Cleveworth"}},{"attributes":{"name":"Joshua Ryan II","age":68,"location":"Gracieshire"}},{"attributes":{"name":"Matthew Hane MD","age":70,"location":"New Walton"}},{"attributes":{"name":"Kelli Cronin DVM","age":53,"location":"Stokescester"}},{"attributes":{"name":"Barbara Haag","age":33,"location":"New Dorcasfield"}},{"attributes":{"name":"Verda Rice I","age":80,"location":"Reingerbury"}},{"attributes":{"name":"Lilla Bode","age":45,"location":"East Brock"}},{"attributes":{"name":"April Runolfsdottir","age":28,"location":"Lehnerworth"}},{"attributes":{"name":"Rowena Armstrong","age":24,"location":"Lake Donfurt"}},{"attributes":{"name":"Darrel Christiansen","age":23,"location":"Emmiecester"}},{"attributes":{"name":"Justine Quitzon","age":23,"location":"Gaithersburg"}},{"attributes":{"name":"Stephon Hermann","age":64,"location":"New Vedaboro"}},{"attributes":{"name":"Domenico Ferry","age":68,"location":"Lake Randy"}},{"attributes":{"name":"Mrs. Betsy Wolff","age":35,"location":"South Jalynstad"}},{"attributes":{"name":"Mr. Lempi Zieme","age":49,"location":"Clementinechester"}},{"attributes":{"name":"Bill Goodwin","age":61,"location":"Port Kathleen"}},{"attributes":{"name":"Santiago Frami","age":45,"location":"Lake Elsinore"}},{"attributes":{"name":"Mr. Floyd Kautzer","age":54,"location":"Borermouth"}},{"attributes":{"name":"Alycia Kihn","age":63,"location":"West Malachimouth"}},{"attributes":{"name":"Beulah Fay","age":20,"location":"West Evansside"}},{"attributes":{"name":"Lavonne Hansen","age":38,"location":"Lemkebury"}},{"attributes":{"name":"Delores Schaden","age":63,"location":"North Raoul"}},{"attributes":{"name":"Steven Douglas","age":62,"location":"North Ryan"}},{"attributes":{"name":"Miss Kendra Baumbach","age":64,"location":"Davis"}},{"attributes":{"name":"Marcelle Marvin","age":66,"location":"Janesville"}},{"attributes":{"name":"Hattie Johnston","age":47,"location":"Schmidtmouth"}},{"attributes":{"name":"Pearl Predovic","age":33,"location":"Boehmstad"}},{"attributes":{"name":"Katrina Quigley","age":63,"location":"Lonnystead"}},{"attributes":{"name":"Ulises Ullrich","age":37,"location":"Lake Brendan"}},{"attributes":{"name":"Mr. Mack Watsica","age":53,"location":"Erwinport"}},{"attributes":{"name":"Melody Windler-Luettgen","age":29,"location":"Bernierboro"}},{"attributes":{"name":"Andy Hagenes","age":22,"location":"East Ona"}},{"attributes":{"name":"Chadrick Pfeffer","age":55,"location":"Davie"}},{"attributes":{"name":"Arianna Feest","age":34,"location":"South Leslyburgh"}},{"attributes":{"name":"Tyrique Sawayn","age":35,"location":"Raeganport"}},{"attributes":{"name":"Antonietta Cormier","age":26,"location":"Ankeny"}},{"attributes":{"name":"Terri Veum IV","age":32,"location":"East Melodytown"}},{"attributes":{"name":"Dr. Lucy Hilpert","age":68,"location":"Battle Creek"}},{"attributes":{"name":"Mrs. Cathy Graham","age":30,"location":"North Dayna"}},{"attributes":{"name":"Miss Frederick Kessler","age":72,"location":"Schummfurt"}},{"attributes":{"name":"Barbara Zboncak","age":38,"location":"Royal Oak"}},{"attributes":{"name":"Brooke Smith","age":35,"location":"Wehnerfort"}},{"attributes":{"name":"Jon Schowalter","age":70,"location":"Port Estel"}},{"attributes":{"name":"Antoinette Marvin","age":70,"location":"Malden"}},{"attributes":{"name":"Brian Hermann","age":38,"location":"Renestead"}},{"attributes":{"name":"Dr. Dorian Harvey","age":75,"location":"Farrellburgh"}},{"attributes":{"name":"Mr. Derrick Skiles","age":75,"location":"East Melody"}},{"attributes":{"name":"Armando Greenholt","age":20,"location":"Raynorbury"}},{"attributes":{"name":"Rosie Fritsch","age":77,"location":"North Oswald"}},{"attributes":{"name":"William Kutch","age":74,"location":"West Bonnie"}},{"attributes":{"name":"Leonard O'Keefe","age":40,"location":"Gilroy"}},{"attributes":{"name":"Justin Wunsch-Grady","age":21,"location":"Missoula"}},{"attributes":{"name":"Tracey Grady","age":35,"location":"Wardhaven"}},{"attributes":{"name":"Henri Wyman","age":38,"location":"Camden"}},{"attributes":{"name":"Johnson Hirthe","age":44,"location":"Kesslerview"}},{"attributes":{"name":"Russell Schuster","age":36,"location":"West Lina"}},{"attributes":{"name":"Kimberly Bayer","age":19,"location":"Port Alfredo"}},{"attributes":{"name":"Jasmine Mueller","age":39,"location":"Port Charlotte"}},{"attributes":{"name":"Tammy Quigley","age":32,"location":"Mohrmouth"}},{"attributes":{"name":"Richard Toy","age":43,"location":"Nashville-Davidson"}},{"attributes":{"name":"Kailey Bauch","age":18,"location":"Huntersville"}},{"attributes":{"name":"Dr. Leonard Gulgowski","age":30,"location":"West Marco"}},{"attributes":{"name":"Aubrey Lang PhD","age":79,"location":"Padbergfurt"}},{"attributes":{"name":"Juan Kihn","age":26,"location":"North Wilfrid"}},{"attributes":{"name":"Sophia Collins","age":25,"location":"North Ian"}},{"attributes":{"name":"Mr. Lenna Heathcote","age":48,"location":"Fontana"}},{"attributes":{"name":"Owen Wiza","age":22,"location":"Missouriworth"}},{"attributes":{"name":"Lucia Kemmer","age":22,"location":"Hertacester"}},{"attributes":{"name":"Dana Daugherty","age":80,"location":"Moenview"}},{"attributes":{"name":"Ms. Vivienne Greenfelder","age":69,"location":"Fort Winonashire"}},{"attributes":{"name":"Lisa DuBuque","age":59,"location":"West Ahmedfort"}},{"attributes":{"name":"Dr. Wallace McLaughlin","age":75,"location":"Minneapolis"}},{"attributes":{"name":"Lela Rutherford","age":61,"location":"East Brodyton"}},{"attributes":{"name":"Leonie Parisian","age":40,"location":"Lake Carolyn"}},{"attributes":{"name":"Trystan Sawayn","age":49,"location":"Sengerburgh"}},{"attributes":{"name":"Jodi Hegmann","age":72,"location":"Kaileehaven"}},{"attributes":{"name":"Arvilla Jakubowski","age":78,"location":"St. Charles"}},{"attributes":{"name":"Marvin Prohaska","age":27,"location":"Orem"}},{"attributes":{"name":"Susan Jacobi","age":36,"location":"Jurupa Valley"}},{"attributes":{"name":"Sonia Powlowski","age":19,"location":"Washington"}},{"attributes":{"name":"Raul Sporer","age":26,"location":"Fort Felicity"}},{"attributes":{"name":"Felix Bechtelar","age":30,"location":"Baytown"}},{"attributes":{"name":"Melody O'Connell","age":31,"location":"Schroederville"}},{"attributes":{"name":"Christy Lind","age":37,"location":"Spring Valley"}},{"attributes":{"name":"Louis Blick","age":55,"location":"Port Camren"}},{"attributes":{"name":"Jana Goldner","age":48,"location":"Dorrisstad"}},{"attributes":{"name":"Ross Hartmann PhD","age":79,"location":"Hodkiewiczboro"}},{"attributes":{"name":"Litzy Harber","age":75,"location":"Wunschfort"}},{"attributes":{"name":"Stephanie Funk","age":50,"location":"Lake Berneiceview"}},{"attributes":{"name":"Russell Will","age":20,"location":"Rochester Hills"}},{"attributes":{"name":"Jimmy Labadie-Kozey","age":39,"location":"Izaiahtown"}},{"attributes":{"name":"Shelia Runolfsdottir MD","age":79,"location":"East Gudrun"}},{"attributes":{"name":"Keira Roberts","age":28,"location":"Tamiahaven"}},{"attributes":{"name":"Bill Rolfson","age":32,"location":"Sheboygan"}},{"attributes":{"name":"Cesar Morissette","age":71,"location":"Greenville"}},{"attributes":{"name":"Tressa Beer","age":65,"location":"Colliermouth"}},{"attributes":{"name":"Shane Sauer","age":37,"location":"Sawaynshire"}},{"attributes":{"name":"Leatha Toy","age":35,"location":"Chasityside"}},{"attributes":{"name":"Roger MacGyver","age":41,"location":"Lake Javonteboro"}},{"attributes":{"name":"Tasha Streich","age":56,"location":"Fort Earline"}},{"attributes":{"name":"Shaniya Zboncak","age":31,"location":"Estevanborough"}},{"attributes":{"name":"Ms. Alicia Gulgowski DDS","age":31,"location":"Danburgh"}},{"attributes":{"name":"Warren Homenick","age":47,"location":"Pine Bluff"}},{"attributes":{"name":"Jenna Daniel-Borer PhD","age":72,"location":"Magdalenastad"}},{"attributes":{"name":"Adrain Waters","age":77,"location":"West Lloyd"}},{"attributes":{"name":"Sidney Walker","age":73,"location":"Ritachester"}},{"attributes":{"name":"Dejon Schultz","age":31,"location":"Rickville"}},{"attributes":{"name":"Sabrina Schaden","age":45,"location":"Lake Zackcester"}},{"attributes":{"name":"Lynda Reichel","age":32,"location":"Plainfield"}},{"attributes":{"name":"Tanya Jakubowski","age":21,"location":"Lake Krystina"}},{"attributes":{"name":"Aileen Hessel","age":22,"location":"Schultzfort"}},{"attributes":{"name":"Mustafa Zemlak","age":31,"location":"Fort Yadira"}},{"attributes":{"name":"Josie Predovic-Welch","age":39,"location":"Castle Rock"}},{"attributes":{"name":"Toby Rau","age":57,"location":"Vivachester"}},{"attributes":{"name":"Eldred Brakus II","age":34,"location":"Santa Fe"}},{"attributes":{"name":"Taryn Shanahan","age":60,"location":"Maxietown"}},{"attributes":{"name":"Jackie Senger","age":46,"location":"Olivermouth"}},{"attributes":{"name":"Cory West","age":20,"location":"Lake Graysonfield"}},{"attributes":{"name":"Eunice Pfannerstill","age":77,"location":"Lake Judge"}},{"attributes":{"name":"Rebecca McKenzie","age":61,"location":"Port Cydney"}},{"attributes":{"name":"Crystal Doyle","age":33,"location":"Mayertworth"}},{"attributes":{"name":"Noel Romaguera Jr.","age":51,"location":"New Jamil"}},{"attributes":{"name":"Vickie Stamm","age":45,"location":"Dulcebury"}},{"attributes":{"name":"Louie Halvorson","age":26,"location":"North Antonio"}},{"attributes":{"name":"Dorothy Beier","age":75,"location":"Haagshire"}},{"attributes":{"name":"Yolanda Konopelski","age":60,"location":"East Janetside"}},{"attributes":{"name":"Anastacio Nienow","age":21,"location":"Krystelton"}},{"attributes":{"name":"Jovany Leuschke Jr.","age":58,"location":"North Camillaview"}},{"attributes":{"name":"Lowell Feest","age":68,"location":"Spring"}},{"attributes":{"name":"Courtney White","age":45,"location":"Prohaskaberg"}},{"attributes":{"name":"Casey Sawayn","age":26,"location":"Leifchester"}},{"attributes":{"name":"Webster Prosacco MD","age":60,"location":"New Kelsie"}},{"attributes":{"name":"Alexis Blick","age":26,"location":"Haneport"}},{"attributes":{"name":"Kyleigh Marvin","age":28,"location":"Rancho Cordova"}},{"attributes":{"name":"Miss Hardy Cremin","age":37,"location":"New Adolfboro"}},{"attributes":{"name":"Mr. Gabriel Macejkovic","age":65,"location":"Bogisichtown"}},{"attributes":{"name":"Kurt Borer","age":63,"location":"North Haileystead"}},{"attributes":{"name":"Leonie Parker PhD","age":72,"location":"Port Rowland"}},{"attributes":{"name":"Van Christiansen","age":58,"location":"Aureliefort"}},{"attributes":{"name":"Colt Anderson","age":43,"location":"Henderson"}},{"attributes":{"name":"Kathy Weissnat","age":29,"location":"Port Adaland"}},{"attributes":{"name":"Bob Goodwin","age":79,"location":"West Toniside"}},{"attributes":{"name":"Ashly Wiza","age":49,"location":"Lake Lancefurt"}},{"attributes":{"name":"Loretta Durgan","age":62,"location":"Stammboro"}},{"attributes":{"name":"Golden Gerhold II","age":38,"location":"Port Dorthyborough"}},{"attributes":{"name":"Dr. Janice Schultz","age":68,"location":"North Uniquefield"}},{"attributes":{"name":"Yazmin Moore","age":32,"location":"Port Ewaldville"}},{"attributes":{"name":"Veronica Lemke PhD","age":50,"location":"Homestead"}},{"attributes":{"name":"Marlene Oberbrunner","age":19,"location":"New Claudfurt"}},{"attributes":{"name":"Mr. Eliza Simonis I","age":60,"location":"Costa Mesa"}},{"attributes":{"name":"Miss Natalie Berge","age":39,"location":"South Ethyl"}},{"attributes":{"name":"Dr. Margret Lehner","age":53,"location":"Ebertfort"}},{"attributes":{"name":"Cathy Boehm","age":52,"location":"Port Abigail"}},{"attributes":{"name":"Dr. Paul Sipes","age":57,"location":"Port Mistystad"}},{"attributes":{"name":"Ms. Jonathon Wiza","age":39,"location":"Fort Worth"}},{"attributes":{"name":"Mr. Aidan Aufderhar DDS","age":30,"location":"Lenoraville"}},{"attributes":{"name":"Danny Jenkins PhD","age":48,"location":"West Dolores"}},{"attributes":{"name":"Elton Krajcik","age":62,"location":"Jerrodboro"}},{"attributes":{"name":"Seth Thompson","age":24,"location":"Petaluma"}},{"attributes":{"name":"Mandy Rogahn","age":59,"location":"Mayerburgh"}},{"attributes":{"name":"Gary Keebler","age":22,"location":"Wintheiserstad"}},{"attributes":{"name":"Donald Goodwin","age":30,"location":"Lake Soledadshire"}},{"attributes":{"name":"Ms. Patrick Ortiz","age":64,"location":"Gibsonshire"}},{"attributes":{"name":"Elwyn Shields","age":70,"location":"Fort Mateo"}},{"attributes":{"name":"Archie D'Amore","age":55,"location":"Clovisville"}},{"attributes":{"name":"Alexandrea Donnelly-Brown","age":23,"location":"Starkton"}},{"attributes":{"name":"Christopher VonRueden","age":72,"location":"Alisonport"}},{"attributes":{"name":"Jeffrey Carter PhD","age":62,"location":"Meriden"}},{"attributes":{"name":"Fiona Gerhold","age":35,"location":"West Roybury"}},{"attributes":{"name":"Horace Conn","age":56,"location":"South Salma"}},{"attributes":{"name":"Marian Wuckert","age":47,"location":"Kielland"}},{"attributes":{"name":"Christian Collier","age":57,"location":"McDermottberg"}},{"attributes":{"name":"Levi O'Kon PhD","age":79,"location":"Salem"}},{"attributes":{"name":"Mr. Monique Beatty","age":37,"location":"Lake Taylor"}},{"attributes":{"name":"Pearline Hermiston","age":18,"location":"Austinberg"}},{"attributes":{"name":"Mr. Lorenz Shields","age":71,"location":"Riceland"}},{"attributes":{"name":"Alexandra Thompson","age":79,"location":"Dasiamouth"}},{"attributes":{"name":"Rosemarie White","age":23,"location":"O'Connellburgh"}},{"attributes":{"name":"Jeremy Wisozk","age":28,"location":"East Nyasia"}},{"attributes":{"name":"Trystan Effertz","age":48,"location":"Ortizstad"}},{"attributes":{"name":"Armani Ryan","age":62,"location":"Palm Springs"}},{"attributes":{"name":"Gladys Windler","age":36,"location":"Revere"}},{"attributes":{"name":"Danielle Larson-Tremblay","age":72,"location":"Fort Tannerbury"}},{"attributes":{"name":"Miss Stephany Konopelski","age":71,"location":"Port Coraboro"}},{"attributes":{"name":"Kim Harris","age":66,"location":"New Lukas"}},{"attributes":{"name":"Alverta Yundt","age":79,"location":"Jaidaborough"}},{"attributes":{"name":"Brandon Greenholt","age":52,"location":"Fort Eino"}},{"attributes":{"name":"Elisa MacGyver","age":30,"location":"North Rogers"}},{"attributes":{"name":"Garry Huel-Leffler","age":55,"location":"Yuba City"}},{"attributes":{"name":"Jerry Yost","age":46,"location":"New Wilsonstad"}},{"attributes":{"name":"Gwen Zieme DDS","age":53,"location":"Kalliecester"}},{"attributes":{"name":"Bobby Smith IV","age":19,"location":"Pocatello"}},{"attributes":{"name":"Hilma Torphy","age":24,"location":"West Caitlynburgh"}},{"attributes":{"name":"Georgia Mohr","age":24,"location":"Zoieshire"}},{"attributes":{"name":"Fernando Gulgowski","age":50,"location":"Rohanburgh"}},{"attributes":{"name":"Hattie Sanford-Wolf","age":43,"location":"South Haylee"}},{"attributes":{"name":"Edwin Steuber","age":60,"location":"New Alveratown"}},{"attributes":{"name":"Paul Conn","age":50,"location":"Lake Leonardomouth"}},{"attributes":{"name":"Wilson Buckridge","age":29,"location":"Matildeport"}},{"attributes":{"name":"Bernice Schamberger Sr.","age":51,"location":"Theresafurt"}},{"attributes":{"name":"Marie Stracke","age":77,"location":"Fort Ruthiechester"}},{"attributes":{"name":"Amos Bogisich","age":31,"location":"Kenner"}},{"attributes":{"name":"Dr. Emmanuelle Heaney","age":69,"location":"Lake Idacester"}},{"attributes":{"name":"Ima Schoen","age":22,"location":"Greenholtton"}},{"attributes":{"name":"Ed Torphy","age":61,"location":"Ebertmouth"}},{"attributes":{"name":"Mrs. Rosemarie Schumm","age":18,"location":"Miami"}},{"attributes":{"name":"Kelli Monahan V","age":28,"location":"Perth Amboy"}},{"attributes":{"name":"Aracely Fisher","age":68,"location":"Kirkland"}},{"attributes":{"name":"Marjory Mohr DVM","age":58,"location":"Commerce City"}},{"attributes":{"name":"Brianne Johnston","age":56,"location":"Fort Taya"}},{"attributes":{"name":"Michelle Homenick","age":39,"location":"South Marques"}},{"attributes":{"name":"Garnett Adams","age":68,"location":"Krajcikfurt"}},{"attributes":{"name":"Polly Purdy-Marvin","age":41,"location":"Phoebeport"}},{"attributes":{"name":"Dr. Pedro Kuhic","age":50,"location":"Phoebeworth"}},{"attributes":{"name":"Marion Weissnat-Rath","age":28,"location":"New Mohammad"}},{"attributes":{"name":"Hillard Conroy","age":28,"location":"Bentonville"}},{"attributes":{"name":"Jared McGlynn","age":35,"location":"Janesville"}},{"attributes":{"name":"Gerardo Pfannerstill","age":35,"location":"Steubershire"}},{"attributes":{"name":"Miss Sharon Abernathy","age":46,"location":"Gaithersburg"}},{"attributes":{"name":"Julien Frami","age":46,"location":"Lenexa"}},{"attributes":{"name":"Mr. Rex Glover","age":56,"location":"Haleytown"}},{"attributes":{"name":"Norman Hirthe","age":50,"location":"Dachbury"}},{"attributes":{"name":"Roberto Wiza II","age":78,"location":"South San Francisco"}},{"attributes":{"name":"Orlando Bode","age":78,"location":"Granthaven"}},{"attributes":{"name":"Hilda Hackett","age":28,"location":"VonRuedenmouth"}},{"attributes":{"name":"Rosemary Heller-Greenfelder","age":66,"location":"Lomacester"}},{"attributes":{"name":"Woodrow Reilly","age":48,"location":"Hyattland"}},{"attributes":{"name":"Darla Farrell","age":27,"location":"Eloisamouth"}},{"attributes":{"name":"Patty Heaney","age":72,"location":"Fort Javonborough"}},{"attributes":{"name":"Furman Kemmer MD","age":33,"location":"East Dianaburgh"}},{"attributes":{"name":"Glenn Greenfelder","age":23,"location":"Port Maeton"}},{"attributes":{"name":"Lindsay Kshlerin","age":26,"location":"Thompsonshire"}},{"attributes":{"name":"Molly Fritsch","age":21,"location":"Hellerfort"}},{"attributes":{"name":"Jon Johnson","age":29,"location":"Casper"}},{"attributes":{"name":"Mr. Tanner Dare","age":62,"location":"Boganstead"}},{"attributes":{"name":"Alessandro Baumbach","age":61,"location":"North Owenbury"}},{"attributes":{"name":"Rosina Crooks","age":62,"location":"Macfield"}},{"attributes":{"name":"Tiffany Morissette DVM","age":54,"location":"Fort Marina"}},{"attributes":{"name":"Ms. Hattie Kub","age":63,"location":"Hayward"}},{"attributes":{"name":"Jessica Buckridge","age":65,"location":"Doylehaven"}},{"attributes":{"name":"Jeffrey Homenick","age":71,"location":"Fort Lydiaview"}},{"attributes":{"name":"Joey Feil-Reichert","age":59,"location":"South Wilhelmine"}},{"attributes":{"name":"Kip Morar","age":19,"location":"Simi Valley"}},{"attributes":{"name":"Pat Wiegand-Tromp","age":75,"location":"Hampton"}},{"attributes":{"name":"Marilyn Bahringer","age":45,"location":"Port Bennie"}},{"attributes":{"name":"Sylvan Breitenberg","age":26,"location":"Fremont"}},{"attributes":{"name":"Thalia Padberg","age":56,"location":"Fort Karinetown"}},{"attributes":{"name":"Seth Schultz","age":33,"location":"Tinley Park"}},{"attributes":{"name":"Clara Effertz-Dicki","age":33,"location":"Allentown"}},{"attributes":{"name":"Karla Kunde","age":74,"location":"Fort Linneaville"}},{"attributes":{"name":"Dolores Frami","age":52,"location":"New Paulaton"}},{"attributes":{"name":"Valentine Zemlak","age":53,"location":"Albertashire"}},{"attributes":{"name":"Alex Monahan","age":49,"location":"New Jose"}},{"attributes":{"name":"Ms. Anne Reinger V","age":46,"location":"Lake Stuart"}},{"attributes":{"name":"Mercedes Rohan-Graham","age":42,"location":"Salem"}},{"attributes":{"name":"Tommy Witting","age":69,"location":"Gainesville"}},{"attributes":{"name":"Ramon Hayes-O'Conner","age":65,"location":"New Rochelle"}},{"attributes":{"name":"Dave Pagac","age":60,"location":"Port Alfredo"}},{"attributes":{"name":"Triston Schinner MD","age":36,"location":"Riverton"}},{"attributes":{"name":"Sandy Wilderman-Hane","age":24,"location":"Fort Forrest"}},{"attributes":{"name":"Oswaldo Haag","age":40,"location":"South Gate"}},{"attributes":{"name":"Dr. Fannie Fadel","age":35,"location":"Nellieton"}},{"attributes":{"name":"Madeline Daugherty","age":77,"location":"Moorecester"}},{"attributes":{"name":"Telly Strosin","age":46,"location":"Shreveport"}},{"attributes":{"name":"Isadore Hudson","age":45,"location":"Kuvalisfield"}},{"attributes":{"name":"Mr. Luke Klocko","age":62,"location":"Nicotown"}},{"attributes":{"name":"Jessica Wyman","age":59,"location":"West Etha"}},{"attributes":{"name":"John Runte","age":66,"location":"Marcelleborough"}},{"attributes":{"name":"Virginia Zieme","age":31,"location":"Aliviaside"}},{"attributes":{"name":"Leone Zieme","age":67,"location":"Wernerhaven"}},{"attributes":{"name":"Mr. Connor Rath","age":32,"location":"Cathedral City"}},{"attributes":{"name":"Frederick Fisher","age":22,"location":"Luciusborough"}},{"attributes":{"name":"Santiago Yost II","age":43,"location":"Collierborough"}},{"attributes":{"name":"Laverne Balistreri","age":19,"location":"Dale City"}},{"attributes":{"name":"Dr. Archie Larson","age":31,"location":"North Jacquelyn"}},{"attributes":{"name":"Patrick Stark","age":65,"location":"Chesapeake"}},{"attributes":{"name":"Oscar Maggio","age":48,"location":"West Marguerite"}},{"attributes":{"name":"Carlee Funk","age":74,"location":"Cliftonville"}},{"attributes":{"name":"Zion Terry","age":74,"location":"Fort Gracieshire"}},{"attributes":{"name":"Mya Runte-Homenick","age":41,"location":"East Daltonstad"}},{"attributes":{"name":"Amparo Frami","age":23,"location":"New Kody"}},{"attributes":{"name":"Neil Hegmann","age":36,"location":"South Carleyport"}},{"attributes":{"name":"Alek D'Amore","age":72,"location":"Boylechester"}},{"attributes":{"name":"Herbert Frami","age":38,"location":"Vonhaven"}},{"attributes":{"name":"Mavis Wunsch","age":57,"location":"VonRuedenside"}},{"attributes":{"name":"Kale Anderson","age":45,"location":"Gregorioshire"}},{"attributes":{"name":"Stevie King","age":62,"location":"North Dillan"}},{"attributes":{"name":"Elisa Wilkinson","age":76,"location":"Rempelview"}},{"attributes":{"name":"Dr. Susana Altenwerth","age":68,"location":"Marleyshire"}},{"attributes":{"name":"Eduardo Schinner","age":28,"location":"South Jamelchester"}},{"attributes":{"name":"Kayla Cronin","age":55,"location":"Corwinshire"}},{"attributes":{"name":"Delfina Sauer","age":42,"location":"Botsfordcester"}},{"attributes":{"name":"Ms. Marsha Witting","age":73,"location":"Port Cleo"}},{"attributes":{"name":"Micah Greenfelder","age":40,"location":"O'Keefeburgh"}},{"attributes":{"name":"Itzel Hansen","age":24,"location":"Norenestead"}},{"attributes":{"name":"Ian Padberg","age":63,"location":"Botsfordchester"}},{"attributes":{"name":"Mrs. Matt Larkin","age":56,"location":"Lake Melodyfort"}},{"attributes":{"name":"Electa Fisher","age":36,"location":"Lake Berylchester"}},{"attributes":{"name":"Darryl Hermann DDS","age":22,"location":"Ettiefield"}},{"attributes":{"name":"Leatha Wehner-Keebler","age":70,"location":"Bel Air South"}},{"attributes":{"name":"Jenny Kunze","age":49,"location":"Bergstromside"}},{"attributes":{"name":"Shanna Schmeler","age":43,"location":"New Elisha"}},{"attributes":{"name":"Saul Emard","age":71,"location":"New Lyric"}},{"attributes":{"name":"Judy Graham","age":37,"location":"Fort Lambert"}},{"attributes":{"name":"Brendan Mueller","age":43,"location":"Rosaliaton"}},{"attributes":{"name":"Wilburn Gorczany","age":66,"location":"Schuppeside"}},{"attributes":{"name":"Rachael Beer","age":69,"location":"Lake Abeland"}},{"attributes":{"name":"Sally Roob","age":50,"location":"West Jorgecester"}},{"attributes":{"name":"Miss Teresa Weimann DDS","age":28,"location":"Port Hortense"}},{"attributes":{"name":"Mossie Gottlieb","age":41,"location":"Ratkechester"}},{"attributes":{"name":"Desiree Corkery","age":22,"location":"Schaeferstead"}},{"attributes":{"name":"Miss Virgil Purdy","age":48,"location":"Gregorioshire"}},{"attributes":{"name":"Lance Connelly","age":75,"location":"Curtisland"}},{"attributes":{"name":"Felix Bernhard","age":52,"location":"Fort Brycechester"}},{"attributes":{"name":"Ora Reinger","age":55,"location":"Mohrfurt"}},{"attributes":{"name":"Garth Bogan","age":43,"location":"Loveland"}},{"attributes":{"name":"Jamie Fahey","age":45,"location":"Klingport"}},{"attributes":{"name":"Pete Hyatt","age":70,"location":"Reichertbury"}},{"attributes":{"name":"Sheila Wilderman","age":51,"location":"Rathfurt"}},{"attributes":{"name":"Clyde Anderson","age":23,"location":"Lake Sofia"}},{"attributes":{"name":"Carroll Witting","age":29,"location":"High Point"}},{"attributes":{"name":"Dr. Grant Trantow","age":43,"location":"Newport News"}},{"attributes":{"name":"Dr. Jorge Prosacco","age":39,"location":"Fort Emeryfield"}},{"attributes":{"name":"Trent Treutel","age":57,"location":"Goldnerfort"}},{"attributes":{"name":"Elyse Gutmann","age":47,"location":"Hattieville"}},{"attributes":{"name":"Lynn Aufderhar","age":46,"location":"Cronaboro"}},{"attributes":{"name":"Diana Rempel","age":23,"location":"Kreigershire"}},{"attributes":{"name":"Mortimer Turner","age":60,"location":"West Kyleighborough"}},{"attributes":{"name":"Margaret Abshire","age":44,"location":"North Daisy"}},{"attributes":{"name":"Holly Conn","age":55,"location":"South Fritzfield"}},{"attributes":{"name":"Monica Schimmel","age":43,"location":"Vivachester"}},{"attributes":{"name":"Jeffrey Hand Sr.","age":74,"location":"Anyaside"}},{"attributes":{"name":"Caroline Wolff","age":47,"location":"Lake Billieburgh"}},{"attributes":{"name":"Scarlett Beer","age":68,"location":"North Cierrafort"}},{"attributes":{"name":"Domingo Wintheiser","age":74,"location":"Bradport"}},{"attributes":{"name":"Mr. Scott Marquardt","age":58,"location":"West Dulceland"}},{"attributes":{"name":"Miss Vickie Kautzer MD","age":21,"location":"Bradtkeville"}},{"attributes":{"name":"Marjory Luettgen","age":57,"location":"Burleychester"}},{"attributes":{"name":"Robin Murray","age":42,"location":"Robelmouth"}},{"attributes":{"name":"Harley Littel","age":21,"location":"Stephaniafort"}},{"attributes":{"name":"Fredrick Halvorson","age":40,"location":"Ibrahimboro"}},{"attributes":{"name":"Dr. Aditya Shields I","age":79,"location":"Mission"}},{"attributes":{"name":"Mrs. Alma Bahringer Sr.","age":52,"location":"Port Kurtiston"}},{"attributes":{"name":"Tim Waelchi","age":25,"location":"Leesburg"}},{"attributes":{"name":"Miss Diego Smitham","age":44,"location":"Caterinaport"}},{"attributes":{"name":"Rolando Feeney","age":68,"location":"Lake Caesar"}},{"attributes":{"name":"Mr. Tamia Prosacco","age":53,"location":"Antoniettaview"}},{"attributes":{"name":"Simone Legros","age":30,"location":"Linden"}},{"attributes":{"name":"Henry Collier","age":22,"location":"Wittinghaven"}},{"attributes":{"name":"Rudy Leannon","age":69,"location":"North Uniquetown"}},{"attributes":{"name":"Erna Schumm","age":66,"location":"Dothan"}},{"attributes":{"name":"Darla Reinger","age":73,"location":"South Lucas"}},{"attributes":{"name":"George Hagenes","age":46,"location":"Bartellstead"}},{"attributes":{"name":"Edison Kiehn","age":64,"location":"Rosenbaumfield"}},{"attributes":{"name":"William Ratke","age":69,"location":"Ottisshire"}},{"attributes":{"name":"Annalise Wiza","age":53,"location":"North Frida"}},{"attributes":{"name":"Claire McGlynn","age":55,"location":"Lakeville"}},{"attributes":{"name":"Audrey Kreiger","age":44,"location":"Lake Abby"}},{"attributes":{"name":"Theodore Ferry","age":80,"location":"Lake Santoschester"}},{"attributes":{"name":"Skyla Marvin DVM","age":46,"location":"Fargo"}},{"attributes":{"name":"Debbie Langosh","age":43,"location":"Fort Ruben"}},{"attributes":{"name":"Eveline Wisoky","age":60,"location":"West Kiley"}},{"attributes":{"name":"Tommy Funk","age":58,"location":"Austynworth"}},{"attributes":{"name":"Loren Kunze PhD","age":39,"location":"Maxborough"}},{"attributes":{"name":"Louise Boyer","age":39,"location":"Eldoraboro"}},{"attributes":{"name":"Jerry Muller-Raynor","age":19,"location":"Murrayland"}},{"attributes":{"name":"Mrs. Conrad Koepp","age":41,"location":"West Mariliecester"}},{"attributes":{"name":"Luther Corwin","age":52,"location":"Greenville"}},{"attributes":{"name":"Devin Conroy","age":19,"location":"Yasmeenchester"}},{"attributes":{"name":"Javier Trantow","age":46,"location":"Jordanhaven"}},{"attributes":{"name":"Phyllis Jacobson","age":65,"location":"North Little Rock"}},{"attributes":{"name":"David O'Kon","age":67,"location":"Yundtmouth"}},{"attributes":{"name":"Julia Baumbach DVM","age":55,"location":"East Douglas"}},{"attributes":{"name":"Annie Hilpert","age":52,"location":"Placentia"}},{"attributes":{"name":"Ms. Myrl Doyle","age":35,"location":"West Haven"}},{"attributes":{"name":"Mrs. Arvilla Kilback MD","age":79,"location":"Faheyboro"}},{"attributes":{"name":"Chester Towne","age":53,"location":"North Francisca"}},{"attributes":{"name":"Enrique Sawayn","age":68,"location":"San Tan Valley"}},{"attributes":{"name":"Johann Gutmann","age":27,"location":"North Shyanneshire"}},{"attributes":{"name":"Christelle Lakin","age":26,"location":"North Elsa"}},{"attributes":{"name":"Ella Feil-Fisher","age":72,"location":"Fort Eusebio"}},{"attributes":{"name":"Lula Pacocha","age":62,"location":"South Keara"}},{"attributes":{"name":"Ruben Feest MD","age":46,"location":"New Casimirview"}},{"attributes":{"name":"Claudine Hansen","age":66,"location":"Hackettbury"}},{"attributes":{"name":"Esteban McClure","age":37,"location":"South Jorge"}},{"attributes":{"name":"Claire Heathcote","age":61,"location":"Hanford"}},{"attributes":{"name":"Mrs. Obie Shields","age":79,"location":"Annamaeport"}},{"attributes":{"name":"Ms. Lola Pfannerstill","age":23,"location":"Sioux Falls"}},{"attributes":{"name":"Evelyn Sipes","age":55,"location":"South Zoilaville"}},{"attributes":{"name":"Ward Effertz","age":63,"location":"Daughertyfield"}},{"attributes":{"name":"Jeanne Gislason","age":71,"location":"Kihncester"}},{"attributes":{"name":"Omar Mosciski","age":61,"location":"Port Carrie"}},{"attributes":{"name":"Mr. Calvin Hirthe","age":37,"location":"South Lennie"}},{"attributes":{"name":"Yadira Waters","age":21,"location":"East Julian"}},{"attributes":{"name":"Nathanial Thiel-Carroll","age":34,"location":"New Kayburgh"}},{"attributes":{"name":"Alaina Toy","age":39,"location":"East Bailee"}},{"attributes":{"name":"Edward Sauer","age":37,"location":"Haleyboro"}},{"attributes":{"name":"Wayne Batz","age":65,"location":"Ottiliecester"}},{"attributes":{"name":"Pascale Hackett","age":49,"location":"Dibbertchester"}},{"attributes":{"name":"Dawson Ebert IV","age":32,"location":"Lake Cristobalworth"}},{"attributes":{"name":"Mark Schuppe","age":80,"location":"Sporerton"}},{"attributes":{"name":"Madge Hermiston","age":56,"location":"West Corbin"}},{"attributes":{"name":"Verna Veum","age":41,"location":"Lake Marlin"}},{"attributes":{"name":"Tammy Keeling-Morar","age":38,"location":"South Rebekatown"}},{"attributes":{"name":"Cydney Rutherford","age":30,"location":"South Scottie"}},{"attributes":{"name":"Jose Bruen-Durgan DVM","age":29,"location":"South Amarichester"}},{"attributes":{"name":"Miss Karen Kautzer-Hermiston III","age":30,"location":"Icieboro"}},{"attributes":{"name":"Kelley Cremin IV","age":21,"location":"Bergecester"}},{"attributes":{"name":"Moshe Reinger","age":39,"location":"Logan"}},{"attributes":{"name":"Jean Murray","age":29,"location":"Lake Casandra"}},{"attributes":{"name":"Alonzo Wuckert","age":24,"location":"Hahncester"}},{"attributes":{"name":"Ella Runte","age":50,"location":"East Lansing"}},{"attributes":{"name":"Lilliana Mohr","age":65,"location":"Miami Beach"}},{"attributes":{"name":"Nelle Kohler II","age":32,"location":"New Valentin"}},{"attributes":{"name":"Mack Metz","age":57,"location":"Aidanstad"}},{"attributes":{"name":"Wallace Reynolds","age":35,"location":"Laruefort"}},{"attributes":{"name":"Tanya Fahey","age":43,"location":"Baumbachland"}},{"attributes":{"name":"Deborah Medhurst","age":38,"location":"Ayanashire"}},{"attributes":{"name":"Wilford Aufderhar","age":23,"location":"San Leandro"}},{"attributes":{"name":"Joyce Howe","age":58,"location":"National City"}},{"attributes":{"name":"Josiah Nikolaus","age":23,"location":"Fort Amalia"}},{"attributes":{"name":"Lynn Quigley","age":23,"location":"Johnson City"}},{"attributes":{"name":"Anthony Schiller-Cormier DDS","age":47,"location":"Breitenbergstad"}},{"attributes":{"name":"Laverne Reilly","age":73,"location":"Lennaville"}},{"attributes":{"name":"Dr. Opal Gutkowski","age":60,"location":"Granttown"}},{"attributes":{"name":"Christine Huel DDS","age":38,"location":"Orem"}},{"attributes":{"name":"Janice Howe","age":51,"location":"Herzogcester"}},{"attributes":{"name":"Germaine Schuster","age":59,"location":"Fort Bennystad"}},{"attributes":{"name":"Dr. Luz Koch I","age":63,"location":"South Caleighview"}},{"attributes":{"name":"Clark Hilll","age":54,"location":"Bergeview"}},{"attributes":{"name":"Mrs. Lee Johns","age":49,"location":"Lake Katlyn"}},{"attributes":{"name":"Princess Murphy-Swift","age":51,"location":"North Juvenal"}},{"attributes":{"name":"Matt Kertzmann","age":42,"location":"Lake Betty"}},{"attributes":{"name":"Karson Cremin","age":67,"location":"Poinciana"}},{"attributes":{"name":"Mrs. Dayne Dietrich","age":60,"location":"South Loren"}},{"attributes":{"name":"Edmund Kiehn","age":46,"location":"Chula Vista"}},{"attributes":{"name":"Cesar Schmeler","age":29,"location":"Potomac"}},{"attributes":{"name":"Mrs. Kadin Rempel","age":20,"location":"Lake Albertostead"}},{"attributes":{"name":"Andres Ward","age":54,"location":"North Maude"}},{"attributes":{"name":"Ms. Jamil Romaguera","age":79,"location":"Sierra Vista"}},{"attributes":{"name":"Beau Abshire","age":45,"location":"Fort Rachaelton"}},{"attributes":{"name":"Prudence Zieme III","age":33,"location":"Gusikowskifield"}},{"attributes":{"name":"Doug Maggio I","age":77,"location":"Reading"}},{"attributes":{"name":"Dee Streich","age":31,"location":"Kingville"}},{"attributes":{"name":"Boyd McLaughlin","age":43,"location":"North Brain"}},{"attributes":{"name":"Raquel Corkery","age":36,"location":"Hickleville"}},{"attributes":{"name":"Aletha Huels","age":60,"location":"Murphyborough"}},{"attributes":{"name":"Nathan Bode","age":61,"location":"Fort Rosa"}},{"attributes":{"name":"Ike Schultz","age":43,"location":"Daytona Beach"}},{"attributes":{"name":"Ms. Shari Ernser","age":55,"location":"North Caleberg"}},{"attributes":{"name":"Warren Pouros","age":74,"location":"Strackeshire"}},{"attributes":{"name":"Raquel McDermott","age":59,"location":"East Jefferey"}},{"attributes":{"name":"Ms. Vanessa Weissnat","age":76,"location":"Pflugerville"}},{"attributes":{"name":"Cathy Koepp-Steuber","age":59,"location":"East Hudsonfurt"}},{"attributes":{"name":"Franz Boyle","age":36,"location":"Jacobsonchester"}},{"attributes":{"name":"Al O'Connell","age":49,"location":"East Hermanhaven"}},{"attributes":{"name":"Miss Scot Prohaska","age":79,"location":"Dallas"}},{"attributes":{"name":"Jacquelyn Mosciski II","age":71,"location":"North Joanneton"}},{"attributes":{"name":"Dayton Gutmann","age":53,"location":"Huntington"}},{"attributes":{"name":"Patrick Reynolds","age":64,"location":"Brannonstead"}},{"attributes":{"name":"Sheryl Kling","age":50,"location":"Valentinafurt"}},{"attributes":{"name":"Madeline McDermott","age":20,"location":"South Angeline"}},{"attributes":{"name":"Terrence Bednar","age":29,"location":"Allen"}},{"attributes":{"name":"Gerda Gutmann","age":29,"location":"Rodside"}},{"attributes":{"name":"Dr. Elvira Hessel","age":57,"location":"West Chaseville"}},{"attributes":{"name":"Charity Jones-Boyer","age":54,"location":"Modesto"}},{"attributes":{"name":"Ian Predovic","age":72,"location":"South Johnnystead"}},{"attributes":{"name":"Karen Rutherford","age":39,"location":"Spring Valley"}},{"attributes":{"name":"Miss Flora Stark","age":55,"location":"North Marlee"}},{"attributes":{"name":"Ms. Lydia Connelly","age":65,"location":"Jonescester"}},{"attributes":{"name":"Petra Cartwright","age":34,"location":"North Geovany"}},{"attributes":{"name":"Adrian Greenfelder","age":43,"location":"Aspen Hill"}},{"attributes":{"name":"Vesta Lemke","age":49,"location":"Port Bethmouth"}},{"attributes":{"name":"Madge Fisher","age":65,"location":"Monahantown"}},{"attributes":{"name":"Vinnie Gutmann","age":29,"location":"Quigleyberg"}},{"attributes":{"name":"Sylvia Heathcote","age":44,"location":"Strosinberg"}},{"attributes":{"name":"Wilfred Adams","age":27,"location":"Lake Mosheport"}},{"attributes":{"name":"Luis Ondricka","age":34,"location":"Isabellafort"}},{"attributes":{"name":"Edna Reynolds","age":62,"location":"Siennaworth"}},{"attributes":{"name":"Mr. Joey Sipes IV","age":34,"location":"Fort Anabel"}},{"attributes":{"name":"Glenn Stehr","age":35,"location":"Haileybury"}},{"attributes":{"name":"Eunice Hamill","age":21,"location":"Longmont"}},{"attributes":{"name":"Shelly Prohaska","age":59,"location":"Marquardtside"}},{"attributes":{"name":"Shelley Abbott","age":72,"location":"North Earleneshire"}},{"attributes":{"name":"Dr. Karl Frami","age":57,"location":"New Kobefort"}},{"attributes":{"name":"Leticia Emmerich-Yost","age":70,"location":"West Anastasiabury"}},{"attributes":{"name":"Kenneth Ratke","age":26,"location":"Port Bennie"}},{"attributes":{"name":"Vickie Reichel","age":27,"location":"Brendanview"}},{"attributes":{"name":"Blair Schmeler","age":23,"location":"Fort Odieworth"}},{"attributes":{"name":"Donna Buckridge","age":22,"location":"Kundefurt"}},{"attributes":{"name":"Mr. Jake Klocko-Bruen II","age":49,"location":"Daxstad"}},{"attributes":{"name":"Gilberto Schuster","age":72,"location":"North Blaiseville"}},{"attributes":{"name":"Flo Batz-Walter","age":75,"location":"Fort Colemanboro"}},{"attributes":{"name":"Marta Moen-Reichert","age":57,"location":"Sheilabury"}},{"attributes":{"name":"Donnie Gutmann","age":21,"location":"Beaumont"}},{"attributes":{"name":"Arthur Kuvalis","age":54,"location":"Lake Jimmy"}},{"attributes":{"name":"Monique Stamm IV","age":31,"location":"Clovis"}},{"attributes":{"name":"Myra Nienow Sr.","age":21,"location":"Wintheisermouth"}},{"attributes":{"name":"Dorothy Baumbach IV","age":60,"location":"North Kylerside"}},{"attributes":{"name":"Randal Douglas","age":45,"location":"South Isaac"}},{"attributes":{"name":"Earnest Price","age":77,"location":"Lynchberg"}},{"attributes":{"name":"Rodrigo Moen-Legros","age":22,"location":"North Gregoryborough"}},{"attributes":{"name":"Leland Gottlieb Jr.","age":77,"location":"New Bernardo"}},{"attributes":{"name":"Nellie Macejkovic","age":42,"location":"St. Joseph"}},{"attributes":{"name":"Courtney Douglas-Schowalter","age":80,"location":"West Louvenia"}},{"attributes":{"name":"Melba Maggio","age":72,"location":"Lilianastad"}},{"attributes":{"name":"Fiona Klocko","age":49,"location":"North Highlands"}},{"attributes":{"name":"Sylvester Bartoletti","age":77,"location":"New Teagantown"}},{"attributes":{"name":"Frank Bechtelar","age":18,"location":"New Garth"}},{"attributes":{"name":"Travis Ledner DVM","age":43,"location":"North Javonte"}},{"attributes":{"name":"Marcel Conroy","age":77,"location":"Fort Blanche"}},{"attributes":{"name":"Ryleigh Dickens","age":77,"location":"North Kaelastad"}},{"attributes":{"name":"Kali Reinger","age":76,"location":"Jerdechester"}},{"attributes":{"name":"Mona Rempel","age":78,"location":"West Devanton"}},{"attributes":{"name":"Shany Schowalter-Koss","age":71,"location":"Ozellamouth"}},{"attributes":{"name":"Mattie Hermiston","age":75,"location":"Davenport"}},{"attributes":{"name":"Mr. Haskell Heidenreich","age":47,"location":"Dahliastad"}},{"attributes":{"name":"Gertrude Nienow","age":18,"location":"Lake Antonina"}},{"attributes":{"name":"Nicolette Kuhn DVM","age":37,"location":"Nashua"}},{"attributes":{"name":"Dr. Randolph Kuphal","age":44,"location":"Livonia"}},{"attributes":{"name":"Brennan Quigley Sr.","age":43,"location":"East Garthstad"}},{"attributes":{"name":"Patti Hane-Pfeffer","age":76,"location":"Schmittton"}},{"attributes":{"name":"Edward McClure","age":20,"location":"Cecileville"}},{"attributes":{"name":"Irvin O'Conner","age":78,"location":"Lake Desmond"}},{"attributes":{"name":"Ernest Goyette","age":31,"location":"Russelboro"}},{"attributes":{"name":"Donna Moen","age":34,"location":"Corona"}},{"attributes":{"name":"Kelli Tromp","age":64,"location":"New Sarinaport"}},{"attributes":{"name":"Bridget Waelchi","age":29,"location":"West Beaumouth"}},{"attributes":{"name":"Jessie Mann","age":20,"location":"North Henritown"}},{"attributes":{"name":"Mrs. Tony King","age":76,"location":"Rahsaanbury"}},{"attributes":{"name":"Edmund Effertz","age":37,"location":"Townechester"}},{"attributes":{"name":"Aubrey Luettgen","age":31,"location":"Manuelbury"}},{"attributes":{"name":"Mr. Murray Grimes-Nolan","age":44,"location":"Anaworth"}},{"attributes":{"name":"Dr. Maud Bartell","age":53,"location":"Maciemouth"}},{"attributes":{"name":"Cleta Kertzmann III","age":42,"location":"Johnstonshire"}},{"attributes":{"name":"Marc Predovic","age":40,"location":"Fort Hertha"}},{"attributes":{"name":"Hector Howell","age":31,"location":"Timmystead"}},{"attributes":{"name":"Tyreek Abernathy Sr.","age":20,"location":"West Lillianview"}},{"attributes":{"name":"Jo Goyette","age":34,"location":"New Janiya"}},{"attributes":{"name":"Helen Feest-Schumm","age":18,"location":"Rockville"}},{"attributes":{"name":"Dr. Keith Barton","age":67,"location":"Daughertyview"}},{"attributes":{"name":"Rodrick Maggio","age":67,"location":"New Rutheborough"}},{"attributes":{"name":"Asia Hahn","age":32,"location":"North Matildaberg"}},{"attributes":{"name":"Jake Pouros","age":26,"location":"Jeffersonville"}},{"attributes":{"name":"Marguerite Schmidt","age":58,"location":"Vidalboro"}},{"attributes":{"name":"Dr. Pedro Bayer","age":56,"location":"Douglasberg"}},{"attributes":{"name":"Giovani Leffler","age":31,"location":"Port Angelina"}},{"attributes":{"name":"Bobby Effertz","age":42,"location":"New Marjoriechester"}},{"attributes":{"name":"Johnathan Pollich","age":54,"location":"East Devanshire"}},{"attributes":{"name":"Demond Tromp Sr.","age":68,"location":"Enricocester"}},{"attributes":{"name":"Ara Hammes","age":49,"location":"South Fredy"}},{"attributes":{"name":"Maddison Hane","age":24,"location":"North Leatha"}},{"attributes":{"name":"Roman Ortiz","age":74,"location":"West Aubreeview"}},{"attributes":{"name":"Misty Tillman","age":27,"location":"Elgin"}},{"attributes":{"name":"Lula Gibson","age":66,"location":"Mountain View"}},{"attributes":{"name":"Dessie Kris","age":36,"location":"Bernadetteland"}},{"attributes":{"name":"Robbie Krajcik","age":30,"location":"Port Jamelfield"}},{"attributes":{"name":"Joe Kassulke","age":79,"location":"Tonawanda"}},{"attributes":{"name":"Bessie Kihn","age":49,"location":"Waco"}},{"attributes":{"name":"Jaylan Schaden","age":73,"location":"Swiftworth"}},{"attributes":{"name":"Mr. Clay Brakus","age":62,"location":"South Jamirmouth"}},{"attributes":{"name":"Dr. Miguel Schiller","age":62,"location":"Kennewick"}},{"attributes":{"name":"Erma Kassulke","age":35,"location":"West Russmouth"}},{"attributes":{"name":"Dwight Powlowski","age":56,"location":"Reingertown"}},{"attributes":{"name":"Grady Moore","age":44,"location":"West Audie"}},{"attributes":{"name":"Henrietta DuBuque","age":37,"location":"Beattyberg"}},{"attributes":{"name":"Khalid Goldner","age":25,"location":"Kunzefurt"}},{"attributes":{"name":"Desmond O'Keefe","age":56,"location":"Buena Park"}},{"attributes":{"name":"Frankie MacGyver","age":68,"location":"Cicero"}},{"attributes":{"name":"Tremaine Schiller","age":73,"location":"Hilpertberg"}},{"attributes":{"name":"Forest Shanahan","age":23,"location":"Hemet"}},{"attributes":{"name":"Stacy Nienow Jr.","age":70,"location":"Maeganbury"}},{"attributes":{"name":"Dr. Alex Armstrong","age":69,"location":"Port Jesse"}},{"attributes":{"name":"Evan Reynolds","age":30,"location":"Santa Fe"}},{"attributes":{"name":"Mrs. Mercedes Johnson PhD","age":61,"location":"Fullerton"}},{"attributes":{"name":"Gloria Corkery","age":52,"location":"South Mavis"}},{"attributes":{"name":"Kareem Romaguera","age":35,"location":"Marianshire"}},{"attributes":{"name":"Ashley King","age":38,"location":"McAllen"}},{"attributes":{"name":"Joey Miller","age":79,"location":"East Jeanette"}},{"attributes":{"name":"Glenda Leuschke","age":75,"location":"Kirkland"}},{"attributes":{"name":"Bradley Cremin","age":68,"location":"Verlieburgh"}},{"attributes":{"name":"Mrs. Reymundo Dickens","age":56,"location":"Reingerchester"}},{"attributes":{"name":"Marsha Haley","age":44,"location":"Elmhurst"}},{"attributes":{"name":"Dr. Adrain Howe","age":38,"location":"Port Adelle"}},{"attributes":{"name":"Ron Kutch","age":57,"location":"East Litzyworth"}},{"attributes":{"name":"Kali Lockman-Johnston I","age":24,"location":"Boyerbury"}},{"attributes":{"name":"Wilma Hirthe","age":56,"location":"Kubburgh"}},{"attributes":{"name":"Clifford Kerluke PhD","age":64,"location":"Redondo Beach"}},{"attributes":{"name":"Jacob McCullough","age":39,"location":"West Everardo"}},{"attributes":{"name":"Napoleon Tillman","age":39,"location":"Fort Annafort"}},{"attributes":{"name":"Heber Grady","age":55,"location":"Lynn"}},{"attributes":{"name":"Peter Howe","age":78,"location":"Riverside"}},{"attributes":{"name":"Willie Sporer","age":44,"location":"Blue Springs"}},{"attributes":{"name":"Maximillian Rosenbaum","age":30,"location":"Freedaview"}},{"attributes":{"name":"Marshall Berge","age":70,"location":"New Marieburgh"}},{"attributes":{"name":"Jon Murazik","age":19,"location":"East Bridgetteburgh"}},{"attributes":{"name":"Sophia Terry","age":23,"location":"Reinholdberg"}},{"attributes":{"name":"Irma Collier","age":60,"location":"Lake Kailyn"}},{"attributes":{"name":"Johnnie Kemmer","age":29,"location":"East Antone"}},{"attributes":{"name":"Ferne O'Keefe","age":77,"location":"San Rafael"}},{"attributes":{"name":"Lonnie Muller Sr.","age":45,"location":"Harlingen"}},{"attributes":{"name":"Morris Hoppe","age":19,"location":"Quincy"}},{"attributes":{"name":"Rebecca Cartwright","age":67,"location":"Vernmouth"}},{"attributes":{"name":"Travis Fay","age":71,"location":"Fidelstad"}},{"attributes":{"name":"Mr. Erica Rath","age":64,"location":"North Bradyport"}},{"attributes":{"name":"Marguerite Lynch","age":28,"location":"East Anastasiafurt"}},{"attributes":{"name":"Glenn Fadel","age":49,"location":"Millercester"}},{"attributes":{"name":"Dora Swaniawski","age":23,"location":"North Ena"}},{"attributes":{"name":"Greg Cummerata","age":30,"location":"Beierworth"}},{"attributes":{"name":"Frederick Kovacek","age":34,"location":"Erie"}},{"attributes":{"name":"Beth Dickens","age":43,"location":"Quitzonberg"}},{"attributes":{"name":"Loren Ritchie","age":64,"location":"New Deanna"}},{"attributes":{"name":"Manuel Tremblay","age":27,"location":"North Las Vegas"}},{"attributes":{"name":"Delores Langworth","age":46,"location":"Klingfurt"}},{"attributes":{"name":"Morris King","age":18,"location":"Harberbury"}},{"attributes":{"name":"Michelle Huel","age":63,"location":"North Soledad"}},{"attributes":{"name":"Ms. Andreanne Mann","age":71,"location":"Fort Aracelyhaven"}},{"attributes":{"name":"Alicia Brown","age":69,"location":"Abshireview"}},{"attributes":{"name":"Vivienne Fahey","age":79,"location":"New Gregorio"}},{"attributes":{"name":"Evalyn Lowe","age":35,"location":"Candidofield"}},{"attributes":{"name":"Gladys Kreiger","age":63,"location":"Rock Hill"}},{"attributes":{"name":"Gladyce Jones","age":74,"location":"New Dax"}},{"attributes":{"name":"Elenor Prosacco","age":55,"location":"Arnechester"}},{"attributes":{"name":"Shari Friesen","age":20,"location":"Fort Don"}},{"attributes":{"name":"Dr. Leonard Greenholt-Stanton MD","age":71,"location":"South Emmaleeboro"}},{"attributes":{"name":"Floyd Erdman","age":50,"location":"Eleanoreton"}},{"attributes":{"name":"Mr. Roxane Miller","age":74,"location":"West Chesley"}},{"attributes":{"name":"Tommie Medhurst","age":42,"location":"Whiteville"}},{"attributes":{"name":"Hattie Keeling","age":65,"location":"West Reyna"}},{"attributes":{"name":"Eric Block","age":46,"location":"East Hermannfort"}},{"attributes":{"name":"April Roob","age":38,"location":"West Hillary"}},{"attributes":{"name":"Berenice Spinka-Kassulke","age":60,"location":"West Jonatan"}},{"attributes":{"name":"Javier Kuphal","age":52,"location":"Oakland"}},{"attributes":{"name":"Dr. Lue Balistreri Sr.","age":24,"location":"Kautzerfield"}},{"attributes":{"name":"Edna Schultz","age":41,"location":"Brownsville"}},{"attributes":{"name":"Billie Barrows V","age":69,"location":"Lawrencecester"}},{"attributes":{"name":"Everett Williamson MD","age":30,"location":"Fort Hortenseberg"}},{"attributes":{"name":"Orville Bogisich","age":27,"location":"Kreigertown"}},{"attributes":{"name":"Dr. Donnie Cronin PhD","age":58,"location":"Fort Nels"}},{"attributes":{"name":"Theodore Reynolds MD","age":24,"location":"New Dorthy"}},{"attributes":{"name":"Jacob Ledner","age":22,"location":"Sandychester"}},{"attributes":{"name":"Robin Howell","age":43,"location":"Rodton"}},{"attributes":{"name":"Floyd Balistreri","age":35,"location":"Connellycester"}},{"attributes":{"name":"Tamia Balistreri","age":55,"location":"North Kurtisside"}},{"attributes":{"name":"Glen Koss","age":67,"location":"Austynbury"}},{"attributes":{"name":"Erik Reynolds III","age":50,"location":"Timmyfort"}},{"attributes":{"name":"Ricardo Bailey","age":60,"location":"Port Murl"}},{"attributes":{"name":"Ms. Claudine Muller","age":67,"location":"Jewelcester"}},{"attributes":{"name":"Okey Wunsch","age":75,"location":"Port Jaclyn"}},{"attributes":{"name":"Duane Streich","age":61,"location":"Toledo"}},{"attributes":{"name":"Clifton Rempel","age":31,"location":"Heidishire"}},{"attributes":{"name":"Jaeden Rippin-Simonis","age":54,"location":"West Lindacester"}},{"attributes":{"name":"Leona Kutch","age":21,"location":"Mayerhaven"}},{"attributes":{"name":"Aurelio Dooley MD","age":19,"location":"West Buckfurt"}},{"attributes":{"name":"Vance Abshire","age":50,"location":"Leifworth"}},{"attributes":{"name":"Doyle Senger","age":64,"location":"Kozeyberg"}},{"attributes":{"name":"Cathy Robel I","age":80,"location":"New Madonnaview"}},{"attributes":{"name":"Lulu Champlin","age":25,"location":"Roswell"}},{"attributes":{"name":"Merle Sauer","age":24,"location":"Dustychester"}},{"attributes":{"name":"Dr. Zachery Konopelski","age":71,"location":"East Bartton"}},{"attributes":{"name":"Jo Cassin","age":32,"location":"South Eltaborough"}},{"attributes":{"name":"Lexi Larson","age":31,"location":"Connellymouth"}},{"attributes":{"name":"Terrell Cummings","age":69,"location":"Jacecester"}},{"attributes":{"name":"Mr. Krystel Littel","age":79,"location":"Hoegerchester"}},{"attributes":{"name":"Mr. Jan Kutch","age":36,"location":"South Kareembury"}},{"attributes":{"name":"Gaston Satterfield","age":41,"location":"Israelside"}},{"attributes":{"name":"Blake Hilll","age":59,"location":"Lake Tressie"}},{"attributes":{"name":"Kurt Strosin","age":44,"location":"Judgecester"}},{"attributes":{"name":"Bobby Okuneva","age":37,"location":"O'Haraland"}},{"attributes":{"name":"Mr. Dominick Brekke PhD","age":80,"location":"Scottieworth"}},{"attributes":{"name":"Antonia McCullough","age":68,"location":"Port Alejandrachester"}},{"attributes":{"name":"Monica Langosh Jr.","age":69,"location":"East Blaiseworth"}},{"attributes":{"name":"Dr. Yoshiko Murray","age":45,"location":"Sauerburgh"}},{"attributes":{"name":"Miss Alva Bayer","age":22,"location":"Elianeview"}},{"attributes":{"name":"Frederick Nolan","age":59,"location":"Medhurstburgh"}},{"attributes":{"name":"Rene Blick","age":69,"location":"East Lacey"}},{"attributes":{"name":"Leo Mills","age":57,"location":"East Lilatown"}},{"attributes":{"name":"Davonte Lesch","age":47,"location":"Janesville"}},{"attributes":{"name":"Benjamin Satterfield","age":32,"location":"D'Amoreburgh"}},{"attributes":{"name":"Ms. Lois Huel","age":72,"location":"Lupestad"}},{"attributes":{"name":"Dr. Bernita Rowe","age":36,"location":"Brettbury"}},{"attributes":{"name":"Mindy Bahringer","age":20,"location":"Lake Myafield"}},{"attributes":{"name":"Dr. Catalina Collier","age":57,"location":"North Bennietown"}},{"attributes":{"name":"Cornelius Schroeder","age":62,"location":"Davidworth"}},{"attributes":{"name":"Guy Emard PhD","age":30,"location":"Port Cordia"}},{"attributes":{"name":"Madeline Quigley II","age":73,"location":"West Amandafurt"}},{"attributes":{"name":"Dr. Lurline Rau","age":72,"location":"Hoegerborough"}},{"attributes":{"name":"Demond Stracke","age":75,"location":"New Brenna"}},{"attributes":{"name":"Thora Denesik","age":48,"location":"Walterbury"}},{"attributes":{"name":"Camylle Johnston","age":36,"location":"North Walton"}},{"attributes":{"name":"Zachary Stehr","age":42,"location":"Breitenbergmouth"}},{"attributes":{"name":"Eunice Green-Effertz","age":60,"location":"Romagueratown"}},{"attributes":{"name":"Susan Bechtelar","age":22,"location":"Bergnaumberg"}},{"attributes":{"name":"Jane Ratke","age":52,"location":"West Lessie"}},{"attributes":{"name":"Kellen Kihn","age":60,"location":"South Linnie"}},{"attributes":{"name":"Lorraine Terry-Goyette","age":21,"location":"Port Brad"}},{"attributes":{"name":"Reta Stracke","age":25,"location":"Irmaborough"}},{"attributes":{"name":"Armando Fay MD","age":53,"location":"Mabellefort"}},{"attributes":{"name":"Whitney Ortiz-Watsica","age":72,"location":"Topeka"}},{"attributes":{"name":"Christopher Runolfsson","age":48,"location":"Leilashire"}},{"attributes":{"name":"Kristina Gislason","age":76,"location":"Osinskiport"}},{"attributes":{"name":"Blaze Klocko","age":57,"location":"Owensboro"}},{"attributes":{"name":"Litzy Collier","age":42,"location":"Littelside"}},{"attributes":{"name":"Greg Haag","age":69,"location":"Salinas"}},{"attributes":{"name":"Josh Kuvalis","age":74,"location":"Parkershire"}},{"attributes":{"name":"Mrs. Rose Mayert-Beer","age":35,"location":"Kettering"}},{"attributes":{"name":"Glenn Douglas","age":42,"location":"Christiansenport"}},{"attributes":{"name":"Archie Labadie","age":56,"location":"Brockton"}},{"attributes":{"name":"Mr. Antone Kohler","age":59,"location":"New Virgil"}},{"attributes":{"name":"Mable Baumbach","age":38,"location":"Port Zionton"}},{"attributes":{"name":"Carole Huels III","age":49,"location":"North Stefan"}},{"attributes":{"name":"Brenda Zulauf","age":44,"location":"Bartolettichester"}},{"attributes":{"name":"Cheryl Davis","age":55,"location":"South Blair"}},{"attributes":{"name":"Dr. Frankie Medhurst","age":31,"location":"Yundttown"}},{"attributes":{"name":"Florence Waelchi","age":66,"location":"Port Jonathan"}},{"attributes":{"name":"Arnold Thiel","age":52,"location":"Woodbury"}},{"attributes":{"name":"Dr. Myron Prohaska","age":58,"location":"Laguna Niguel"}},{"attributes":{"name":"Dr. Stevie Treutel","age":26,"location":"North Beulahshire"}},{"attributes":{"name":"Richard Conroy II","age":62,"location":"New Raymond"}},{"attributes":{"name":"Anthony Von I","age":27,"location":"Bauchmouth"}},{"attributes":{"name":"Cierra Waelchi","age":63,"location":"East Deron"}},{"attributes":{"name":"Joshua Rice","age":65,"location":"Andersonton"}},{"attributes":{"name":"Chad Cronin DDS","age":51,"location":"North Las Vegas"}},{"attributes":{"name":"Laurence Jakubowski","age":31,"location":"South Rosabury"}},{"attributes":{"name":"John Walker","age":61,"location":"Kiehnburgh"}},{"attributes":{"name":"Roderick Hackett","age":19,"location":"Franklin"}},{"attributes":{"name":"Julianne Dare","age":75,"location":"Derektown"}},{"attributes":{"name":"Ms. Ally Ledner","age":50,"location":"Fort Carolanne"}},{"attributes":{"name":"Jonathan Borer","age":57,"location":"Borerboro"}},{"attributes":{"name":"Mrs. Max Harvey","age":72,"location":"Leannonworth"}},{"attributes":{"name":"Hal Grimes","age":30,"location":"West Reyfurt"}},{"attributes":{"name":"Dr. Joannie Hettinger","age":37,"location":"Oberbrunnerberg"}},{"attributes":{"name":"Mariana Spinka I","age":54,"location":"Lake Harryberg"}},{"attributes":{"name":"Berry Harvey","age":67,"location":"Kristafield"}},{"attributes":{"name":"Jose Feil","age":26,"location":"Huntington Park"}},{"attributes":{"name":"Tillman Conroy-Toy","age":18,"location":"New Bernadine"}},{"attributes":{"name":"Gavin Hayes Jr.","age":46,"location":"Fort Austyn"}},{"attributes":{"name":"Sonya O'Connell","age":78,"location":"Lisandroview"}},{"attributes":{"name":"Lucia Hessel-Tillman","age":76,"location":"South Jalen"}},{"attributes":{"name":"Jayce Bartell","age":39,"location":"Keatoncester"}},{"attributes":{"name":"Randal Rau","age":63,"location":"Humbertochester"}},{"attributes":{"name":"Lynette Homenick","age":50,"location":"Johnstonside"}},{"attributes":{"name":"Darrin Price","age":79,"location":"New Aiden"}},{"attributes":{"name":"Cleta Halvorson","age":69,"location":"VonRuedenhaven"}},{"attributes":{"name":"Elmer Reynolds","age":22,"location":"West Covina"}},{"attributes":{"name":"Allison Prohaska Sr.","age":52,"location":"Gorczanystead"}},{"attributes":{"name":"Izaiah Gutkowski","age":29,"location":"North Easton"}},{"attributes":{"name":"Anya Marks","age":44,"location":"Altenwerthboro"}},{"attributes":{"name":"Velma Legros","age":20,"location":"Port Sage"}},{"attributes":{"name":"Olive Carroll","age":42,"location":"South Nadiamouth"}},{"attributes":{"name":"Minnie Beier","age":30,"location":"Morgan Hill"}},{"attributes":{"name":"Garnett Ferry","age":21,"location":"East Colin"}},{"attributes":{"name":"Michele Von","age":28,"location":"Gageview"}},{"attributes":{"name":"Kelley Huel","age":62,"location":"East Enrique"}},{"attributes":{"name":"Ladarius Hagenes","age":76,"location":"Balistrerichester"}},{"attributes":{"name":"Reece Reichel","age":29,"location":"Lockmantown"}},{"attributes":{"name":"Buddy McGlynn","age":71,"location":"North Bettystad"}},{"attributes":{"name":"Edmund Bernhard","age":20,"location":"West Cleoboro"}},{"attributes":{"name":"Ray Hansen","age":45,"location":"Fort Kevinside"}},{"attributes":{"name":"Dr. Dana Simonis","age":26,"location":"Vacaville"}},{"attributes":{"name":"Genevieve Shields","age":58,"location":"Ezekielburgh"}},{"attributes":{"name":"Forest Abbott","age":57,"location":"Howardhaven"}},{"attributes":{"name":"Clarence Mayer","age":58,"location":"Randallshire"}},{"attributes":{"name":"Anahi Roob","age":55,"location":"Columbia"}},{"attributes":{"name":"Dr. Rene Nitzsche","age":66,"location":"East Godfreyborough"}},{"attributes":{"name":"Ms. Estelle Kozey","age":44,"location":"Greenton"}},{"attributes":{"name":"Mr. Price Crona","age":66,"location":"North Charles"}},{"attributes":{"name":"Johnnie Swaniawski","age":19,"location":"Lake Braulio"}},{"attributes":{"name":"Fidel Cormier","age":19,"location":"Lake Merrittfurt"}},{"attributes":{"name":"Omer Towne-Schimmel","age":54,"location":"East Reganfield"}},{"attributes":{"name":"Alfred Johnston","age":76,"location":"New Fredyworth"}},{"attributes":{"name":"Zachary Cummings","age":32,"location":"Wehnerfield"}},{"attributes":{"name":"Audrey Bosco","age":62,"location":"Beierborough"}},{"attributes":{"name":"Hattie Nicolas IV","age":65,"location":"Fort Candaceberg"}},{"attributes":{"name":"Laverne Schimmel-Hoeger","age":57,"location":"Redwood City"}},{"attributes":{"name":"Nathen Dooley","age":71,"location":"Wilhelmberg"}},{"attributes":{"name":"Terri Kovacek","age":50,"location":"Farmington Hills"}},{"attributes":{"name":"Antwan Funk","age":55,"location":"Huelstown"}},{"attributes":{"name":"Donna Barrows","age":50,"location":"Cordellfort"}},{"attributes":{"name":"Donavon Durgan","age":44,"location":"North Janisberg"}},{"attributes":{"name":"Marion Lehner-Schaefer","age":76,"location":"Port Susanna"}},{"attributes":{"name":"Dr. Tricia Homenick","age":52,"location":"Reyport"}},{"attributes":{"name":"Mr. Kirk Howe","age":35,"location":"North Nathenboro"}},{"attributes":{"name":"Ewell Jacobson II","age":29,"location":"Lake Max"}},{"attributes":{"name":"Edwardo Rogahn II","age":45,"location":"Grand Prairie"}},{"attributes":{"name":"Princess Hane","age":75,"location":"Salinas"}},{"attributes":{"name":"Mercedes Nader","age":48,"location":"Ankeny"}},{"attributes":{"name":"Nick Altenwerth","age":29,"location":"Lake Dawnport"}},{"attributes":{"name":"Mrs. Minerva Mitchell","age":38,"location":"New Danialfield"}},{"attributes":{"name":"Kim Renner","age":71,"location":"Littleton"}},{"attributes":{"name":"Mr. Aubrey Bogisich II","age":59,"location":"Port Berniece"}},{"attributes":{"name":"Dr. Mariela Durgan","age":52,"location":"East Kira"}},{"attributes":{"name":"Kristina Rice","age":57,"location":"Gustaveburgh"}},{"attributes":{"name":"Erich White","age":43,"location":"Fort Marisol"}},{"attributes":{"name":"Ryan Grady","age":45,"location":"Port Boydmouth"}},{"attributes":{"name":"Julia Jast-Deckow","age":32,"location":"North Alaynaview"}},{"attributes":{"name":"Pauline Volkman","age":19,"location":"Fishers"}},{"attributes":{"name":"Myrtle Cole","age":63,"location":"East Jessyca"}},{"attributes":{"name":"Earl Corkery","age":78,"location":"Bayonne"}},{"attributes":{"name":"Dr. Traci Feil-Ortiz","age":18,"location":"Stefanside"}},{"attributes":{"name":"Janet Moore","age":55,"location":"South Zacharyland"}},{"attributes":{"name":"Mr. Josh Mayert","age":18,"location":"Gerlachfield"}},{"attributes":{"name":"Charlene Hammes-Brekke","age":37,"location":"New Cristalmouth"}},{"attributes":{"name":"Lori Jacobi","age":33,"location":"McKenziefurt"}},{"attributes":{"name":"Debbie Koepp","age":67,"location":"Fort Beulahfort"}},{"attributes":{"name":"Dr. April Harvey V","age":51,"location":"East Yasmineport"}},{"attributes":{"name":"Eloise Harvey","age":28,"location":"North Sienna"}},{"attributes":{"name":"Fay Greenfelder","age":71,"location":"East Marion"}},{"attributes":{"name":"Aurelie Langworth","age":58,"location":"Curtisbury"}},{"attributes":{"name":"Mrs. Vanessa Brakus","age":35,"location":"Reichertstad"}},{"attributes":{"name":"Inez Hauck","age":70,"location":"East Rita"}},{"attributes":{"name":"Alfred Sawayn","age":55,"location":"Genesisfort"}},{"attributes":{"name":"Josefina Moen","age":79,"location":"North Xzavier"}},{"attributes":{"name":"Mr. Beaulah Collier","age":29,"location":"New Jodychester"}},{"attributes":{"name":"Alma Kassulke MD","age":43,"location":"Fort Aglae"}},{"attributes":{"name":"Dr. Madeline Doyle","age":30,"location":"Fort Leannefurt"}},{"attributes":{"name":"Abraham Lang","age":21,"location":"Eduardoboro"}},{"attributes":{"name":"Guadalupe Wolff V","age":79,"location":"Grand Forks"}},{"attributes":{"name":"Leola Pollich","age":39,"location":"East Abigail"}},{"attributes":{"name":"Dr. Bill Luettgen III","age":53,"location":"West Herman"}},{"attributes":{"name":"Ms. Allie Schowalter","age":61,"location":"South Eleonore"}},{"attributes":{"name":"Lindsey Hettinger","age":47,"location":"Rolfsonborough"}},{"attributes":{"name":"Noah Gerhold","age":74,"location":"Virgilland"}},{"attributes":{"name":"Louise Spinka","age":58,"location":"Hattiesburg"}},{"attributes":{"name":"Jerad Hodkiewicz","age":54,"location":"South Scarlettton"}},{"attributes":{"name":"Erwin Jakubowski","age":18,"location":"Cupertino"}},{"attributes":{"name":"Reyna Lang","age":61,"location":"Kochberg"}},{"attributes":{"name":"Leola Bergnaum Sr.","age":36,"location":"Jastberg"}},{"attributes":{"name":"Jabari Graham","age":25,"location":"Lake Dana"}},{"attributes":{"name":"Bradley Padberg","age":75,"location":"North Colton"}},{"attributes":{"name":"Rachael Howell III","age":28,"location":"East Jessika"}},{"attributes":{"name":"Martha Quitzon","age":25,"location":"Cloydton"}},{"attributes":{"name":"Philip Wolff","age":21,"location":"Kelsiechester"}},{"attributes":{"name":"Heather West","age":21,"location":"Port Kylerfort"}},{"attributes":{"name":"Kathryn Cormier","age":41,"location":"Jessiestead"}},{"attributes":{"name":"Monica O'Keefe","age":79,"location":"Huntsville"}},{"attributes":{"name":"Glenn Mueller","age":29,"location":"Edmond"}},{"attributes":{"name":"Gail Feeney DDS","age":54,"location":"Lutherport"}},{"attributes":{"name":"Dr. Rudy Harris","age":22,"location":"Streichfield"}},{"attributes":{"name":"Bobby Steuber I","age":66,"location":"Alexandriastad"}},{"attributes":{"name":"Stewart Blick","age":70,"location":"Philipstad"}},{"attributes":{"name":"Henriette Bradtke","age":62,"location":"Daly City"}},{"attributes":{"name":"Miss Gilberto Collier","age":70,"location":"New Sanfordhaven"}},{"attributes":{"name":"Hettie Lemke","age":22,"location":"Kathlynfurt"}},{"attributes":{"name":"Pablo Shanahan","age":57,"location":"Bowie"}},{"attributes":{"name":"Joanie Jakubowski I","age":54,"location":"East Norbertoboro"}},{"attributes":{"name":"John Will","age":51,"location":"South Luella"}},{"attributes":{"name":"Jessie Kihn","age":37,"location":"East Gavin"}},{"attributes":{"name":"Leroy Wintheiser-Simonis","age":19,"location":"Baltimore"}},{"attributes":{"name":"Colleen Sanford","age":69,"location":"Lake Finn"}},{"attributes":{"name":"Neal Baumbach-Botsford","age":45,"location":"Port Jaren"}},{"attributes":{"name":"Dr. Francesca Rosenbaum","age":31,"location":"West Marcelino"}},{"attributes":{"name":"Kenneth Lakin","age":74,"location":"North Lizaview"}},{"attributes":{"name":"Leigh Zieme","age":31,"location":"Framimouth"}},{"attributes":{"name":"Dr. Rachael Turner","age":35,"location":"New Alyce"}},{"attributes":{"name":"Dr. Earnest Gerhold","age":72,"location":"Rock Hill"}},{"attributes":{"name":"Jewell Fadel","age":74,"location":"Tevinbury"}},{"attributes":{"name":"Marco Ernser","age":79,"location":"South Herminabury"}},{"attributes":{"name":"Susana Maggio DVM","age":79,"location":"Conroytown"}},{"attributes":{"name":"Nayeli Nikolaus","age":46,"location":"Fort Darren"}},{"attributes":{"name":"Martin Walsh","age":31,"location":"Hillsville"}},{"attributes":{"name":"Alvena Schowalter","age":20,"location":"Lake Coby"}},{"attributes":{"name":"Janiya Huel","age":59,"location":"Estrellaborough"}},{"attributes":{"name":"Miranda Kiehn","age":40,"location":"North Domenic"}},{"attributes":{"name":"Ms. Patricia Welch","age":56,"location":"Brayancester"}},{"attributes":{"name":"Mitchell Ledner","age":63,"location":"Southaven"}},{"attributes":{"name":"Terrell Towne","age":45,"location":"Nikolausview"}},{"attributes":{"name":"Dwight Doyle","age":18,"location":"Gretaboro"}},{"attributes":{"name":"Virgie Raynor","age":42,"location":"West Rosettabury"}},{"attributes":{"name":"Elvira Morar","age":56,"location":"Pinkfort"}},{"attributes":{"name":"Fred Becker","age":44,"location":"Adamscester"}},{"attributes":{"name":"Homer Crooks","age":36,"location":"McKenziemouth"}},{"attributes":{"name":"Elnora Treutel","age":61,"location":"Nikitastead"}},{"attributes":{"name":"Elmira Bogisich","age":62,"location":"Vonbury"}},{"attributes":{"name":"Wilfrid Will","age":66,"location":"Schummtown"}},{"attributes":{"name":"Lorene Ullrich","age":22,"location":"North Orie"}},{"attributes":{"name":"Hardy Feil","age":78,"location":"North Maybellechester"}},{"attributes":{"name":"Brant Douglas","age":39,"location":"New Marquismouth"}},{"attributes":{"name":"Alfred Schuppe-Bins","age":58,"location":"New Kadeberg"}},{"attributes":{"name":"Enid Ritchie","age":35,"location":"Pine Bluff"}},{"attributes":{"name":"Myra Koss","age":51,"location":"Lockmanberg"}},{"attributes":{"name":"Paula Kautzer Sr.","age":31,"location":"East Lionel"}},{"attributes":{"name":"Mrs. Estelle Terry","age":19,"location":"Port Jacquelyn"}},{"attributes":{"name":"Danielle Kuhlman","age":77,"location":"Roryfort"}},{"attributes":{"name":"Abel Hermiston","age":46,"location":"Willmsbury"}},{"attributes":{"name":"Estella Grady Sr.","age":38,"location":"Roselynshire"}},{"attributes":{"name":"Carolyn White","age":29,"location":"Otishaven"}},{"attributes":{"name":"Sandra Mohr","age":44,"location":"West Lindsayberg"}},{"attributes":{"name":"Ana Gerlach","age":62,"location":"Anaheim"}},{"attributes":{"name":"Germaine Goodwin","age":31,"location":"Fort Wilhelmshire"}},{"attributes":{"name":"Maia Durgan","age":58,"location":"Palm Springs"}},{"attributes":{"name":"Noah Cremin-Walter","age":58,"location":"Huntington"}},{"attributes":{"name":"Allison Greenfelder Jr.","age":46,"location":"Toledo"}},{"attributes":{"name":"Mr. Dylan Borer","age":40,"location":"Kaylahfield"}},{"attributes":{"name":"Carol Moen","age":21,"location":"McAllen"}},{"attributes":{"name":"Brooke Ortiz","age":27,"location":"Jakubowskiport"}},{"attributes":{"name":"Chad Effertz","age":62,"location":"Schmidtberg"}},{"attributes":{"name":"Krystal Pfeffer","age":21,"location":"Vernonside"}},{"attributes":{"name":"Andrew Padberg","age":36,"location":"South Cordieland"}},{"attributes":{"name":"Miss Kristine Bruen","age":55,"location":"Monroe"}},{"attributes":{"name":"Jacqueline Donnelly","age":27,"location":"Medhurstton"}},{"attributes":{"name":"Emery Nader","age":75,"location":"North Ursulaworth"}},{"attributes":{"name":"Dallas Stroman","age":33,"location":"North Alexfield"}},{"attributes":{"name":"Pearl Keeling","age":53,"location":"Port Dessiechester"}},{"attributes":{"name":"Dock Stracke","age":29,"location":"Schummbury"}},{"attributes":{"name":"Mr. Anita Schulist III","age":18,"location":"Cartwrightbury"}},{"attributes":{"name":"Katherine Lueilwitz","age":58,"location":"Daly City"}},{"attributes":{"name":"Kendrick Nitzsche","age":41,"location":"Akeemmouth"}},{"attributes":{"name":"Beryl Moen-Hettinger","age":54,"location":"Madera"}},{"attributes":{"name":"Gordon Purdy","age":30,"location":"Port Myron"}},{"attributes":{"name":"Araceli Champlin","age":23,"location":"Millsfurt"}},{"attributes":{"name":"Coralie McClure I","age":21,"location":"Robelboro"}},{"attributes":{"name":"Virgil Bergstrom","age":44,"location":"Lake Stantonburgh"}},{"attributes":{"name":"Glenn Fay","age":26,"location":"Paramount"}},{"attributes":{"name":"Trystan Kunze","age":63,"location":"Torranceburgh"}},{"attributes":{"name":"Rebecca Klocko","age":22,"location":"Jonathanton"}},{"attributes":{"name":"Wilfred Larkin","age":80,"location":"South Abdul"}},{"attributes":{"name":"Nettie Marquardt","age":69,"location":"West Magdalenside"}},{"attributes":{"name":"Kristine Beatty","age":29,"location":"East Westonberg"}},{"attributes":{"name":"Tom Bruen","age":38,"location":"South Henderson"}},{"attributes":{"name":"Ernestina Wehner","age":18,"location":"Lanceboro"}},{"attributes":{"name":"Leanna Torp","age":40,"location":"Bruenport"}},{"attributes":{"name":"Gina Nader","age":27,"location":"Port Abbyborough"}},{"attributes":{"name":"Roel Franecki","age":33,"location":"New Mariela"}},{"attributes":{"name":"Pauline Mitchell","age":71,"location":"McClureborough"}},{"attributes":{"name":"Erma Larkin","age":68,"location":"South Nathenmouth"}},{"attributes":{"name":"Sandra Murray-Schimmel","age":73,"location":"Montebello"}},{"attributes":{"name":"Edmond Metz","age":59,"location":"Redding"}},{"attributes":{"name":"Miss Vivian Wehner","age":37,"location":"Kemmerfield"}},{"attributes":{"name":"Nathaniel Hand","age":74,"location":"West Felipe"}},{"attributes":{"name":"Cathy Fahey","age":25,"location":"Kirkland"}},{"attributes":{"name":"Micaela Bradtke","age":34,"location":"Willside"}},{"attributes":{"name":"Hazel Boyle","age":80,"location":"Lillyport"}},{"attributes":{"name":"Mr. Laila Kunde Sr.","age":26,"location":"Fall River"}},{"attributes":{"name":"Vicki Schuppe","age":71,"location":"Gilroy"}},{"attributes":{"name":"Olivia Gibson","age":40,"location":"Port Ryleyview"}},{"attributes":{"name":"Nellie Langosh","age":62,"location":"West Dominic"}},{"attributes":{"name":"Joshua Smith","age":54,"location":"Gerardview"}},{"attributes":{"name":"Mr. Shane O'Hara","age":78,"location":"East Edna"}},{"attributes":{"name":"Terrance Stark","age":37,"location":"West Jennifershire"}},{"attributes":{"name":"Hilario Labadie","age":73,"location":"Hoegerfurt"}},{"attributes":{"name":"Rene Graham","age":50,"location":"Twin Falls"}},{"attributes":{"name":"Thelma Simonis","age":39,"location":"New Rosaleestad"}},{"attributes":{"name":"Lena Mayer","age":65,"location":"Los Angeles"}},{"attributes":{"name":"Ludwig Reichert","age":54,"location":"Evanston"}},{"attributes":{"name":"Mr. Henri Jacobson","age":50,"location":"Ziemeville"}},{"attributes":{"name":"Dr. Rudy Wehner","age":55,"location":"Cathrynland"}},{"attributes":{"name":"Shannon Schaden","age":21,"location":"Zaneborough"}},{"attributes":{"name":"Mattie Bradtke","age":60,"location":"Margretfield"}},{"attributes":{"name":"Rubie Howell","age":69,"location":"Fort Alayna"}},{"attributes":{"name":"Opal Zemlak","age":34,"location":"Fort Jackychester"}},{"attributes":{"name":"Mallory Quitzon","age":29,"location":"North Garlandmouth"}},{"attributes":{"name":"Erwin Lemke","age":56,"location":"Burien"}},{"attributes":{"name":"Ernest Spencer","age":47,"location":"Farmington"}},{"attributes":{"name":"Stuart Turcotte","age":60,"location":"Robertsmouth"}},{"attributes":{"name":"Freda Spencer","age":77,"location":"South Cristopherhaven"}},{"attributes":{"name":"Merle Homenick","age":32,"location":"Peoria"}},{"attributes":{"name":"Alison Legros","age":62,"location":"Emieshire"}},{"attributes":{"name":"Inez Emmerich","age":72,"location":"Parkerport"}},{"attributes":{"name":"Ben Kunze","age":23,"location":"West Glenda"}},{"attributes":{"name":"Elisa Hansen","age":62,"location":"West Brandon"}},{"attributes":{"name":"Wendy Armstrong","age":34,"location":"Lake Brendenport"}},{"attributes":{"name":"Wilbert Ryan","age":18,"location":"Zulaufview"}},{"attributes":{"name":"Mr. Elbert Krajcik","age":52,"location":"Paololand"}},{"attributes":{"name":"Ed Turcotte","age":58,"location":"Gerlachhaven"}},{"attributes":{"name":"Gretchen Fay","age":29,"location":"McClurefurt"}},{"attributes":{"name":"Brayan Gorczany","age":38,"location":"Toyfort"}},{"attributes":{"name":"Tammy Weissnat","age":77,"location":"Palm Springs"}},{"attributes":{"name":"Sylvia Dibbert","age":70,"location":"Rosemariehaven"}},{"attributes":{"name":"Cesar Weber","age":22,"location":"West Raleigh"}},{"attributes":{"name":"Alana Emard","age":21,"location":"North Kennethfurt"}},{"attributes":{"name":"Sandy Emmerich","age":71,"location":"Fort Finn"}},{"attributes":{"name":"May Murphy","age":42,"location":"Renton"}},{"attributes":{"name":"Logan Konopelski","age":47,"location":"Cronaland"}},{"attributes":{"name":"Neil Jacobs","age":58,"location":"Violetburgh"}},{"attributes":{"name":"Rex Pfannerstill","age":45,"location":"Waterbury"}},{"attributes":{"name":"Roman Brakus","age":36,"location":"Jupiter"}},{"attributes":{"name":"Dr. Ocie Emard","age":57,"location":"Fort Loraworth"}},{"attributes":{"name":"Burnice Bartoletti","age":23,"location":"Erikaborough"}},{"attributes":{"name":"Ramiro Volkman","age":79,"location":"Waylontown"}},{"attributes":{"name":"Amina Schmitt","age":22,"location":"Beierfield"}},{"attributes":{"name":"Elvira Wolf","age":26,"location":"Port Jammie"}},{"attributes":{"name":"Mrs. Devante Hartmann","age":45,"location":"Bradyfort"}},{"attributes":{"name":"Cole Paucek","age":60,"location":"Tuscaloosa"}},{"attributes":{"name":"Shannon Hagenes","age":25,"location":"Port Darryltown"}},{"attributes":{"name":"Christy Dickens","age":23,"location":"Cadeberg"}},{"attributes":{"name":"Claire Harber","age":22,"location":"Scottsdale"}},{"attributes":{"name":"Ron Casper","age":77,"location":"Fort Donny"}},{"attributes":{"name":"Theron Streich II","age":44,"location":"Gutkowskifort"}},{"attributes":{"name":"Ms. Candace Gerlach","age":68,"location":"Darrellburgh"}},{"attributes":{"name":"Kristie Crist-Marvin PhD","age":71,"location":"Flagstaff"}},{"attributes":{"name":"Jeromy Jerde","age":31,"location":"Maggioport"}},{"attributes":{"name":"Chandler Mueller","age":21,"location":"Port Letitia"}},{"attributes":{"name":"Mrs. Maggie O'Connell","age":74,"location":"Vandervortview"}},{"attributes":{"name":"Mr. Sarah Oberbrunner","age":69,"location":"South Kevin"}},{"attributes":{"name":"Brad Gislason","age":64,"location":"Normaton"}},{"attributes":{"name":"Sandra Strosin","age":63,"location":"Revamouth"}},{"attributes":{"name":"Mathew Aufderhar","age":78,"location":"Port Vicenta"}},{"attributes":{"name":"Solon Corwin","age":48,"location":"Lake Keltonhaven"}},{"attributes":{"name":"Ike Wilkinson","age":46,"location":"Kemmerboro"}},{"attributes":{"name":"Gladys Labadie","age":42,"location":"Fort Haileyworth"}},{"attributes":{"name":"Deshaun Bartoletti","age":37,"location":"Rebekahburgh"}},{"attributes":{"name":"Jeramy Hirthe","age":28,"location":"Thousand Oaks"}},{"attributes":{"name":"Dr. Rolando Kling","age":37,"location":"Hintzbury"}},{"attributes":{"name":"Dexter Schmitt","age":56,"location":"New Desireeborough"}},{"attributes":{"name":"Meredith Okuneva","age":34,"location":"Ontario"}},{"attributes":{"name":"Elbert Hansen","age":45,"location":"Hahnton"}},{"attributes":{"name":"Kelly Toy","age":76,"location":"Elbertbury"}},{"attributes":{"name":"Mr. Miguel Oberbrunner","age":80,"location":"Benniefield"}},{"attributes":{"name":"Chaya Cronin","age":24,"location":"Port Okeyfield"}},{"attributes":{"name":"Sergio Kovacek","age":31,"location":"Keelingland"}},{"attributes":{"name":"Sophia Hermiston-Greenholt","age":69,"location":"Fort Marc"}},{"attributes":{"name":"Mr. Maryse Sipes","age":76,"location":"Paradise"}},{"attributes":{"name":"Shannon Effertz","age":55,"location":"Edythberg"}},{"attributes":{"name":"Mrs. Amie Nitzsche","age":73,"location":"North Levi"}},{"attributes":{"name":"Vincent Prohaska","age":24,"location":"Donnellytown"}},{"attributes":{"name":"Cyrus Beahan","age":57,"location":"Altenwerthborough"}},{"attributes":{"name":"Marcus Blanda","age":58,"location":"Enid"}},{"attributes":{"name":"Edwin Leannon DDS","age":54,"location":"East Jimmycester"}},{"attributes":{"name":"Bradford VonRueden","age":38,"location":"East Jared"}},{"attributes":{"name":"Jillian Paucek","age":22,"location":"Sioux Falls"}},{"attributes":{"name":"Mia Armstrong","age":28,"location":"Kiehnstad"}},{"attributes":{"name":"Perry Hodkiewicz","age":78,"location":"Aufderharworth"}},{"attributes":{"name":"Benjamin Muller","age":35,"location":"Cotyton"}},{"attributes":{"name":"Juan Conroy","age":22,"location":"Melanystead"}},{"attributes":{"name":"Fannie Moore","age":66,"location":"Domenicomouth"}},{"attributes":{"name":"Dale Nienow","age":76,"location":"Thielborough"}},{"attributes":{"name":"Dominick Bosco IV","age":80,"location":"Nikotown"}},{"attributes":{"name":"Otilia Johnston","age":24,"location":"Raeganboro"}},{"attributes":{"name":"Alexandria Roberts","age":63,"location":"Beerstad"}},{"attributes":{"name":"Alan Rath","age":77,"location":"Wisokyshire"}},{"attributes":{"name":"Marcelle Schaefer","age":32,"location":"Port Ramona"}},{"attributes":{"name":"Reyna Beatty","age":75,"location":"Hilllton"}},{"attributes":{"name":"Mallory Casper II","age":32,"location":"Wichita"}},{"attributes":{"name":"Emmalee Dicki","age":27,"location":"Clifton"}},{"attributes":{"name":"Leroy Swift","age":62,"location":"Carrollfurt"}},{"attributes":{"name":"Shaniya Bode","age":80,"location":"Lake Leolafurt"}},{"attributes":{"name":"Jennie Blanda","age":54,"location":"West Emery"}},{"attributes":{"name":"Darlene Casper Jr.","age":77,"location":"Perth Amboy"}},{"attributes":{"name":"Clinton Frami","age":54,"location":"South Delbertstead"}},{"attributes":{"name":"Horace Schaden","age":78,"location":"Elzaworth"}},{"attributes":{"name":"Aidan Harvey","age":28,"location":"Nathanboro"}},{"attributes":{"name":"Arturo Stanton DDS","age":30,"location":"Tustin"}},{"attributes":{"name":"Kayleigh Wyman","age":57,"location":"New Orville"}},{"attributes":{"name":"Tracy Marquardt","age":44,"location":"Schusterburgh"}},{"attributes":{"name":"Alexander Fahey","age":63,"location":"Petrachester"}},{"attributes":{"name":"Dr. Douglas Dooley","age":57,"location":"Biloxi"}},{"attributes":{"name":"Bernhard Heidenreich","age":53,"location":"Tatefort"}},{"attributes":{"name":"Bert Abernathy-Sanford","age":65,"location":"Hempstead"}},{"attributes":{"name":"Kate Pacocha","age":38,"location":"Kariville"}},{"attributes":{"name":"Duane Rowe","age":20,"location":"Fisherville"}},{"attributes":{"name":"Taylor Schuppe","age":22,"location":"Toyville"}},{"attributes":{"name":"Peter Balistreri","age":47,"location":"Garland"}},{"attributes":{"name":"Nicholas Rau Sr.","age":34,"location":"Cedar Park"}},{"attributes":{"name":"Marjorie Emard","age":29,"location":"Kulasbury"}},{"attributes":{"name":"Joey White","age":78,"location":"Port Estrellafield"}},{"attributes":{"name":"Harold Boyle","age":24,"location":"El Dorado Hills"}},{"attributes":{"name":"Duane Kuhlman","age":73,"location":"Port Janiestad"}},{"attributes":{"name":"Kale Ferry","age":22,"location":"East Marilieborough"}},{"attributes":{"name":"Lillie Padberg","age":54,"location":"New Demond"}},{"attributes":{"name":"Jerel Lockman-Harber","age":52,"location":"Stockton"}},{"attributes":{"name":"Marcus Jenkins","age":60,"location":"San Marcos"}},{"attributes":{"name":"Sara Howell","age":75,"location":"San Clemente"}},{"attributes":{"name":"Baron Cormier","age":56,"location":"Lubowitzton"}},{"attributes":{"name":"Ernest McLaughlin-Rath","age":66,"location":"O'Reillyworth"}},{"attributes":{"name":"Pierce Koch Jr.","age":39,"location":"Abbieside"}},{"attributes":{"name":"Mrs. Rochelle Oberbrunner","age":23,"location":"West Alfredmouth"}},{"attributes":{"name":"Elias Harvey","age":58,"location":"Simonisside"}},{"attributes":{"name":"Anahi Schulist","age":40,"location":"East Oraboro"}},{"attributes":{"name":"Mrs. Maureen Hettinger","age":63,"location":"DeKalb"}},{"attributes":{"name":"Candace Harvey","age":74,"location":"Fort Ramiroside"}},{"attributes":{"name":"Pat Langosh III","age":20,"location":"Marvinfield"}},{"attributes":{"name":"Dr. Dell Brekke","age":32,"location":"Lake Brenden"}},{"attributes":{"name":"Sarah Hermiston","age":75,"location":"The Woodlands"}},{"attributes":{"name":"Orville Hahn III","age":57,"location":"Hilariostad"}},{"attributes":{"name":"Lorenz Feeney MD","age":30,"location":"Danielton"}},{"attributes":{"name":"Clair West","age":27,"location":"Farmington"}},{"attributes":{"name":"Justin Willms","age":54,"location":"Wylie"}},{"attributes":{"name":"Geovanni Hirthe","age":28,"location":"Kasandraberg"}},{"attributes":{"name":"Michael Von","age":26,"location":"Chesterfort"}},{"attributes":{"name":"Dr. Ian Graham","age":70,"location":"Fort Garryfurt"}},{"attributes":{"name":"Raquel Turner","age":76,"location":"Kingsport"}},{"attributes":{"name":"Dallas McLaughlin","age":23,"location":"Hahnfield"}},{"attributes":{"name":"Van Yost","age":58,"location":"Pfeffertown"}},{"attributes":{"name":"Henry Effertz-Zieme","age":66,"location":"Fort Karlie"}},{"attributes":{"name":"Luke Daugherty","age":19,"location":"Wilmington"}},{"attributes":{"name":"Marion Kub","age":47,"location":"North Aglaefurt"}},{"attributes":{"name":"Dr. Marco Gottlieb","age":41,"location":"Moseboro"}},{"attributes":{"name":"Gail Davis","age":49,"location":"Reingerberg"}},{"attributes":{"name":"Mrs. Gregory Jacobi","age":27,"location":"North Leda"}},{"attributes":{"name":"Palma Stark","age":72,"location":"Greenfelderworth"}},{"attributes":{"name":"Rosa Johns","age":50,"location":"Craigchester"}},{"attributes":{"name":"Irene Hammes","age":39,"location":"South Sunnyburgh"}},{"attributes":{"name":"Fred Wehner","age":61,"location":"Connellyshire"}},{"attributes":{"name":"Eunice Bosco","age":39,"location":"Adamsworth"}},{"attributes":{"name":"Michel Brown","age":33,"location":"Lake Helenastad"}},{"attributes":{"name":"Cecile Bins","age":59,"location":"Pagacstad"}},{"attributes":{"name":"Israel Boyle","age":37,"location":"Consuelohaven"}},{"attributes":{"name":"Russell Zieme","age":65,"location":"New Meaghan"}},{"attributes":{"name":"Salvatore Emmerich","age":72,"location":"Riverton"}},{"attributes":{"name":"Belinda Hoppe","age":25,"location":"North Bethesda"}},{"attributes":{"name":"Harry Kessler","age":49,"location":"Titusville"}},{"attributes":{"name":"Tonya Nikolaus","age":22,"location":"East Caleview"}},{"attributes":{"name":"Kody Bernhard","age":25,"location":"Schmittstad"}},{"attributes":{"name":"Eloise Kovacek II","age":75,"location":"North Maximilliaberg"}},{"attributes":{"name":"Georgia Rippin","age":78,"location":"Powlowskichester"}},{"attributes":{"name":"Elijah Fay IV","age":36,"location":"Hahnworth"}},{"attributes":{"name":"Dr. Bessie Larkin","age":22,"location":"Shaynatown"}},{"attributes":{"name":"Rey Schaden","age":43,"location":"Worcester"}},{"attributes":{"name":"Vallie Collins","age":78,"location":"Schmittview"}},{"attributes":{"name":"Wanda Anderson IV","age":70,"location":"Barryfurt"}},{"attributes":{"name":"Rufus Huels","age":74,"location":"Isadorefield"}},{"attributes":{"name":"Alma Leffler IV","age":31,"location":"Eugene"}},{"attributes":{"name":"Clay Beatty","age":49,"location":"North Elena"}},{"attributes":{"name":"Caroline Quitzon","age":42,"location":"South Sigmundport"}},{"attributes":{"name":"Toni Haley","age":74,"location":"New Micaelaview"}},{"attributes":{"name":"Stephanie Schultz","age":77,"location":"Lawrence"}},{"attributes":{"name":"Maria Schuster","age":39,"location":"Franeckiport"}},{"attributes":{"name":"Uriel Reilly","age":26,"location":"Denisworth"}},{"attributes":{"name":"Mabel Bahringer","age":69,"location":"Busterport"}},{"attributes":{"name":"Vanessa Bayer DDS","age":34,"location":"Saigebury"}},{"attributes":{"name":"Guadalupe Kozey","age":69,"location":"South Korycester"}},{"attributes":{"name":"Brendan Shanahan V","age":37,"location":"West Kamrenberg"}},{"attributes":{"name":"Alexanne Schamberger","age":51,"location":"Clevelandfurt"}},{"attributes":{"name":"Mr. Karl Terry","age":27,"location":"Lake Gerrystad"}},{"attributes":{"name":"Edward Gleichner","age":23,"location":"Troy"}},{"attributes":{"name":"Marianne Gusikowski-Steuber","age":78,"location":"Fort Ilashire"}},{"attributes":{"name":"Rebecca Mraz","age":67,"location":"Allen"}},{"attributes":{"name":"Madaline Tremblay","age":63,"location":"State College"}},{"attributes":{"name":"Derek Quitzon","age":23,"location":"Port Serenity"}},{"attributes":{"name":"George Hirthe","age":40,"location":"South Damontown"}},{"attributes":{"name":"Mrs. Jodi Mitchell DVM","age":41,"location":"West Guadalupefurt"}},{"attributes":{"name":"Dr. Ardella Wiegand MD","age":30,"location":"Fond du Lac"}},{"attributes":{"name":"Adonis Jones","age":58,"location":"Thompsonland"}},{"attributes":{"name":"Lou Auer","age":25,"location":"North Hershel"}},{"attributes":{"name":"Saul Langosh IV","age":80,"location":"Port Jesstown"}},{"attributes":{"name":"Gerald Connelly-Parisian","age":33,"location":"Hodkiewicztown"}},{"attributes":{"name":"Megan Spinka","age":42,"location":"Lake Baron"}},{"attributes":{"name":"Sonia Simonis","age":23,"location":"North Jovani"}},{"attributes":{"name":"Jake Hayes","age":74,"location":"Port Dennisbury"}},{"attributes":{"name":"Mrs. Betty Gusikowski","age":36,"location":"Jeffersonville"}},{"attributes":{"name":"Charles Marks","age":77,"location":"Skokie"}},{"attributes":{"name":"Boyd Homenick","age":48,"location":"Chesapeake"}},{"attributes":{"name":"Cary Wisozk","age":37,"location":"Port Adell"}},{"attributes":{"name":"Gussie Swaniawski DVM","age":35,"location":"Reno"}},{"attributes":{"name":"Mrs. Aleen Reynolds","age":29,"location":"Pearl City"}},{"attributes":{"name":"Marlene Rippin","age":59,"location":"New Verniefurt"}},{"attributes":{"name":"Carlo Lemke","age":29,"location":"Port Scarlettport"}},{"attributes":{"name":"Jedediah Jaskolski","age":51,"location":"Konopelskiside"}},{"attributes":{"name":"Elinore Brakus","age":68,"location":"Lake Waldostad"}},{"attributes":{"name":"Ms. Rosa Reilly","age":37,"location":"Marquisville"}},{"attributes":{"name":"Madie Schinner","age":73,"location":"Haleyview"}},{"attributes":{"name":"Chaya Carter","age":61,"location":"Lake Stephaniaworth"}},{"attributes":{"name":"Tierra Jerde I","age":76,"location":"Baileyport"}},{"attributes":{"name":"Krystal Kshlerin","age":68,"location":"Reginaldfield"}},{"attributes":{"name":"Sylvia Breitenberg","age":19,"location":"New Austynworth"}},{"attributes":{"name":"Anika Hilpert","age":28,"location":"Hubertshire"}},{"attributes":{"name":"Luisa Fadel MD","age":29,"location":"Tracyborough"}},{"attributes":{"name":"Jakayla Gleichner PhD","age":43,"location":"South Chesterville"}},{"attributes":{"name":"Vanessa Jacobs","age":61,"location":"New Omashire"}},{"attributes":{"name":"Billy Emard","age":79,"location":"Spring"}},{"attributes":{"name":"Natalie Zulauf","age":55,"location":"North Kenyatta"}},{"attributes":{"name":"Keegan Casper","age":69,"location":"South Jeremy"}},{"attributes":{"name":"Barbara Sipes","age":47,"location":"Kriscester"}},{"attributes":{"name":"Jackeline Bradtke","age":52,"location":"Creminport"}},{"attributes":{"name":"Ms. Rudy Hodkiewicz MD","age":80,"location":"Macon-Bibb County"}},{"attributes":{"name":"Lamont Heathcote","age":53,"location":"Roseville"}},{"attributes":{"name":"Miss Amber Fahey","age":53,"location":"Wildermanside"}},{"attributes":{"name":"Ann Rath","age":71,"location":"Zoietown"}},{"attributes":{"name":"Amanda Bechtelar","age":21,"location":"Port Vallie"}},{"attributes":{"name":"Litzy Schmitt","age":34,"location":"Hudsonville"}},{"attributes":{"name":"Marian Tremblay","age":62,"location":"Southaven"}},{"attributes":{"name":"Harrison Gerhold","age":31,"location":"New Samtown"}},{"attributes":{"name":"Marsha Bednar","age":69,"location":"West Malachiville"}},{"attributes":{"name":"Tricia Kuhlman","age":74,"location":"New Roscoeworth"}},{"attributes":{"name":"Harry Mitchell","age":69,"location":"Miguelshire"}},{"attributes":{"name":"Louisa Deckow","age":48,"location":"New Lunastad"}},{"attributes":{"name":"Brenda Zboncak","age":36,"location":"Lake Mackberg"}},{"attributes":{"name":"Daren Koch","age":69,"location":"South Hilbertport"}},{"attributes":{"name":"Bradley Daniel","age":44,"location":"West Destiny"}},{"attributes":{"name":"Mrs. Alejandrin Heaney-Powlowski","age":70,"location":"Fort Al"}},{"attributes":{"name":"Clementine Steuber IV","age":79,"location":"Cyrilmouth"}},{"attributes":{"name":"Kent Leffler IV","age":33,"location":"Hauckfield"}},{"attributes":{"name":"Beulah Oberbrunner","age":72,"location":"Eleazarcester"}},{"attributes":{"name":"Luella Osinski","age":47,"location":"Grand Rapids"}},{"attributes":{"name":"Bobby Metz","age":42,"location":"Apopka"}},{"attributes":{"name":"Thalia Towne","age":31,"location":"Tonawanda"}},{"attributes":{"name":"Betsy Ruecker","age":46,"location":"Sigmundland"}},{"attributes":{"name":"Creola Price","age":32,"location":"Kuvalisstad"}},{"attributes":{"name":"Dion Hills","age":23,"location":"East Bernadine"}},{"attributes":{"name":"Moshe Krajcik","age":78,"location":"Lake Taryncester"}},{"attributes":{"name":"Amy Moore","age":18,"location":"Renton"}},{"attributes":{"name":"Marcia Buckridge","age":67,"location":"East Rickeyfurt"}},{"attributes":{"name":"Kerry Wisoky","age":31,"location":"Lake Katharinaland"}},{"attributes":{"name":"Genevieve Paucek-Adams","age":18,"location":"Kovacekworth"}},{"attributes":{"name":"Robin Frami","age":53,"location":"Chazburgh"}},{"attributes":{"name":"Tami Pollich","age":61,"location":"Hawthorne"}},{"attributes":{"name":"Samuel Turcotte","age":36,"location":"South Jeromeburgh"}},{"attributes":{"name":"Sammy Hilll","age":56,"location":"Port Lavinaside"}},{"attributes":{"name":"Mr. Terrell Williamson","age":31,"location":"Quincy"}},{"attributes":{"name":"Melanie Bode","age":64,"location":"New Nyasia"}},{"attributes":{"name":"Brad Robel","age":41,"location":"Waltham"}},{"attributes":{"name":"Eleanor Fisher","age":54,"location":"Fort Lilianestead"}},{"attributes":{"name":"Titus Fisher","age":50,"location":"Lake Alex"}},{"attributes":{"name":"Mike Wolff","age":79,"location":"Lake Jacintofield"}},{"attributes":{"name":"Aurelio Emard","age":31,"location":"Narcisoburgh"}},{"attributes":{"name":"Wilson Pollich","age":67,"location":"Meriden"}},{"attributes":{"name":"Miss Waino Mayert","age":59,"location":"West Zachary"}},{"attributes":{"name":"Rafaela Spencer","age":58,"location":"Lilyanville"}},{"attributes":{"name":"Louise Wilkinson-Farrell","age":20,"location":"Port Teagan"}},{"attributes":{"name":"Denise Schneider","age":67,"location":"Dessieburgh"}},{"attributes":{"name":"Roselyn Blanda","age":20,"location":"South Jarrodfield"}},{"attributes":{"name":"Daryl Casper","age":63,"location":"Port Janessa"}},{"attributes":{"name":"Minnie Adams Jr.","age":77,"location":"Port Kaelamouth"}},{"attributes":{"name":"Patti Lehner","age":21,"location":"Gottliebton"}},{"attributes":{"name":"Al Price","age":72,"location":"North Noel"}},{"attributes":{"name":"Guy Olson","age":62,"location":"O'Keefefield"}},{"attributes":{"name":"Gordon Satterfield","age":33,"location":"Murrieta"}},{"attributes":{"name":"Inez Borer","age":80,"location":"Lockmanstad"}},{"attributes":{"name":"Tina Boyle","age":29,"location":"Cordeliacester"}},{"attributes":{"name":"Pedro Shanahan","age":39,"location":"Fort Leoraview"}},{"attributes":{"name":"Easter Wiegand-Rice Sr.","age":35,"location":"North Ward"}},{"attributes":{"name":"Oda Auer","age":30,"location":"Jadestead"}},{"attributes":{"name":"Clarence Hartmann","age":66,"location":"Tulare"}},{"attributes":{"name":"Betty Emard-Donnelly DVM","age":61,"location":"South Raymundostead"}},{"attributes":{"name":"Sheila Purdy","age":51,"location":"Franklin"}},{"attributes":{"name":"Byron Sporer","age":27,"location":"Fort Edwin"}},{"attributes":{"name":"Dr. Tony Baumbach","age":46,"location":"Ericastead"}},{"attributes":{"name":"Lila Pollich","age":74,"location":"Addisonfurt"}},{"attributes":{"name":"Mike Cormier","age":33,"location":"Jeradport"}},{"attributes":{"name":"Willis Kautzer","age":23,"location":"Halvorsonburgh"}},{"attributes":{"name":"Margarete Stracke","age":58,"location":"New Krystelberg"}},{"attributes":{"name":"Caleigh Watsica","age":63,"location":"Conroe"}},{"attributes":{"name":"Nichole Hand","age":70,"location":"Tiaraworth"}},{"attributes":{"name":"Giuseppe Marvin","age":40,"location":"Kohlerfort"}},{"attributes":{"name":"Josefina Schmitt-DuBuque","age":76,"location":"West Devynstead"}},{"attributes":{"name":"Mae Moen","age":49,"location":"Lake Holdenview"}},{"attributes":{"name":"Adrien Feil","age":54,"location":"Robelhaven"}},{"attributes":{"name":"Rosemary Koepp","age":75,"location":"Coychester"}},{"attributes":{"name":"Mrs. Fredrick Hegmann","age":71,"location":"Fort Linneahaven"}},{"attributes":{"name":"Levi Predovic","age":27,"location":"Toledo"}},{"attributes":{"name":"Mathias Breitenberg PhD","age":65,"location":"Miami Gardens"}},{"attributes":{"name":"Jamal Hintz","age":63,"location":"Larkinboro"}},{"attributes":{"name":"Adalberto Carter MD","age":77,"location":"Jakefield"}},{"attributes":{"name":"Joyce Hilpert","age":30,"location":"Port Chris"}},{"attributes":{"name":"Dr. Lee Streich","age":27,"location":"Peabody"}},{"attributes":{"name":"Karen Schneider","age":56,"location":"Derrickstead"}},{"attributes":{"name":"Jimmie Cormier","age":39,"location":"Auerchester"}},{"attributes":{"name":"Muriel Tremblay","age":51,"location":"Handtown"}},{"attributes":{"name":"Geraldine Schneider DVM","age":45,"location":"New Shaniya"}},{"attributes":{"name":"Caroline Howell","age":73,"location":"Fort Addieshire"}},{"attributes":{"name":"Cicero Tillman","age":26,"location":"East Berniece"}},{"attributes":{"name":"Marvin O'Keefe","age":54,"location":"West Emily"}},{"attributes":{"name":"Brett Hamill DVM","age":38,"location":"New Jay"}},{"attributes":{"name":"Estelle Hoppe","age":60,"location":"Meaganport"}},{"attributes":{"name":"Dorothy Rath","age":23,"location":"Pflugerville"}},{"attributes":{"name":"Cecilia Torp","age":53,"location":"Odessa"}},{"attributes":{"name":"Retta Swaniawski","age":70,"location":"Livonia"}},{"attributes":{"name":"Oswald Balistreri","age":67,"location":"Ratketown"}},{"attributes":{"name":"Mrs. Trace Mayert","age":19,"location":"Rutherfordcester"}},{"attributes":{"name":"Winston Mayert PhD","age":69,"location":"Julieborough"}},{"attributes":{"name":"Linda Walker","age":51,"location":"Andersonside"}},{"attributes":{"name":"Lenora Leffler","age":35,"location":"Patienceview"}},{"attributes":{"name":"Marlene Cassin","age":31,"location":"Elmoreshire"}},{"attributes":{"name":"Velma Nolan","age":24,"location":"Vonport"}},{"attributes":{"name":"Hassan Gerlach","age":45,"location":"Gilbert"}},{"attributes":{"name":"Dominick Ruecker","age":39,"location":"Canton"}},{"attributes":{"name":"Maryjane Rempel","age":40,"location":"North Tatum"}},{"attributes":{"name":"Moriah Lueilwitz","age":37,"location":"Heathcoteside"}},{"attributes":{"name":"Kathy Rohan","age":27,"location":"South Kallie"}},{"attributes":{"name":"Hettie Gibson","age":56,"location":"South Freddie"}},{"attributes":{"name":"Iris Kirlin","age":26,"location":"Lake Mekhishire"}},{"attributes":{"name":"Anna Mueller","age":68,"location":"Yostville"}},{"attributes":{"name":"Allison Gutmann","age":38,"location":"East Emmet"}},{"attributes":{"name":"Mr. Keaton Barton","age":51,"location":"South Zariaborough"}},{"attributes":{"name":"Lori Runolfsson DVM","age":24,"location":"Averystead"}},{"attributes":{"name":"Shannon Gorczany","age":18,"location":"East Tressa"}},{"attributes":{"name":"Moses Rippin","age":61,"location":"Lavernatown"}},{"attributes":{"name":"Effie Dibbert","age":31,"location":"Tessborough"}},{"attributes":{"name":"Fletcher Hodkiewicz","age":51,"location":"Maggioburgh"}},{"attributes":{"name":"Price Schuster","age":50,"location":"Port Clotildecester"}},{"attributes":{"name":"Alba Gleichner","age":48,"location":"Fort Kory"}},{"attributes":{"name":"Harold Ruecker","age":65,"location":"Fort Cedrick"}},{"attributes":{"name":"Veda Bogan","age":75,"location":"East Rashawnside"}},{"attributes":{"name":"Athena Pfannerstill","age":67,"location":"Great Falls"}},{"attributes":{"name":"Mary Schroeder","age":18,"location":"Mollybury"}},{"attributes":{"name":"Clifford Rath","age":75,"location":"Faustinobury"}},{"attributes":{"name":"Kristofer Douglas","age":24,"location":"South Vinnie"}},{"attributes":{"name":"Eric Gerhold","age":54,"location":"Port Yasmeen"}},{"attributes":{"name":"Madyson VonRueden","age":64,"location":"West Jacklyn"}},{"attributes":{"name":"Anthony Bednar","age":65,"location":"Richland"}},{"attributes":{"name":"Ms. Tremaine Kutch Jr.","age":72,"location":"D'Amoretown"}},{"attributes":{"name":"Marcelina King IV","age":30,"location":"Fort Estellaville"}},{"attributes":{"name":"Sonya Nader IV","age":70,"location":"Fort Ariel"}},{"attributes":{"name":"Claude Hahn","age":54,"location":"Milpitas"}},{"attributes":{"name":"Casey Wyman II","age":52,"location":"Marleychester"}},{"attributes":{"name":"Travis Kreiger IV","age":22,"location":"New Ashly"}},{"attributes":{"name":"Roberta Parker","age":55,"location":"New Margot"}},{"attributes":{"name":"Sadie Mitchell","age":18,"location":"Fort Kayleigh"}},{"attributes":{"name":"Alessandra Reichert","age":26,"location":"Schroederfort"}},{"attributes":{"name":"Dr. Vicki Hamill","age":29,"location":"Port Koleburgh"}},{"attributes":{"name":"Baron Reichert","age":63,"location":"West Rosalindside"}},{"attributes":{"name":"Shari Harber","age":44,"location":"New Arielle"}},{"attributes":{"name":"Tracey Okuneva","age":21,"location":"West Joanneworth"}},{"attributes":{"name":"Melody Watsica","age":35,"location":"North Richland Hills"}},{"attributes":{"name":"Nelda Streich V","age":60,"location":"Hamilton"}},{"attributes":{"name":"Herbert Lebsack","age":68,"location":"Peterville"}},{"attributes":{"name":"Yadira Stracke","age":70,"location":"East Bernicehaven"}},{"attributes":{"name":"Dorothy Thompson","age":52,"location":"West Brettview"}},{"attributes":{"name":"Dr. Ryan Carter-Auer","age":42,"location":"Palm Desert"}},{"attributes":{"name":"Miss Danielle Kuhic","age":38,"location":"Fort Brockboro"}},{"attributes":{"name":"Terry Kiehn","age":66,"location":"Priceport"}},{"attributes":{"name":"Joey Lebsack","age":37,"location":"South Leonardoland"}},{"attributes":{"name":"Eudora Trantow","age":24,"location":"Margotstead"}},{"attributes":{"name":"Mr. Pierre Quitzon I","age":35,"location":"Antelope"}},{"attributes":{"name":"Jamie Dickinson","age":41,"location":"Kellystead"}},{"attributes":{"name":"Ralph Donnelly","age":35,"location":"Erikmouth"}},{"attributes":{"name":"Florence Towne","age":53,"location":"Jerrodfield"}},{"attributes":{"name":"Mrs. Kyleigh Altenwerth","age":44,"location":"Murphyville"}},{"attributes":{"name":"Ken Bode","age":56,"location":"Fort Josue"}},{"attributes":{"name":"Krystal Dickinson","age":53,"location":"Bryanastead"}},{"attributes":{"name":"Shyanne Ebert","age":46,"location":"Starkburgh"}},{"attributes":{"name":"Mrs. Isabell Fahey I","age":50,"location":"East Dorthy"}},{"attributes":{"name":"Gideon Bauch","age":73,"location":"North Chayafield"}},{"attributes":{"name":"Mathew Turner","age":69,"location":"South Claudiacester"}},{"attributes":{"name":"Myron Sanford","age":45,"location":"South Maybellechester"}},{"attributes":{"name":"Martin Welch","age":55,"location":"Ullrichport"}},{"attributes":{"name":"Freda Watsica","age":53,"location":"Bountiful"}},{"attributes":{"name":"Stephan Bailey","age":54,"location":"East Olinfort"}},{"attributes":{"name":"Ms. Dale Reichert","age":50,"location":"New Loyal"}},{"attributes":{"name":"August Bartoletti","age":72,"location":"New Carmenside"}},{"attributes":{"name":"Sean Denesik","age":49,"location":"Othaburgh"}},{"attributes":{"name":"Charlotte Mayer","age":21,"location":"Abilene"}},{"attributes":{"name":"Alvera Blick","age":74,"location":"Leifborough"}},{"attributes":{"name":"Sonya Zulauf","age":60,"location":"Great Falls"}},{"attributes":{"name":"Elmer Schuster","age":35,"location":"Fountainebleau"}},{"attributes":{"name":"Frida Shields","age":32,"location":"Maytown"}},{"attributes":{"name":"Dorothy Greenfelder","age":49,"location":"West Cecile"}},{"attributes":{"name":"Margarette Morissette Jr.","age":48,"location":"Bayerfort"}},{"attributes":{"name":"Ron Considine","age":22,"location":"Aimeecester"}},{"attributes":{"name":"Dana Deckow","age":30,"location":"Goyettechester"}},{"attributes":{"name":"Matthew Schuster","age":52,"location":"Sioux Falls"}},{"attributes":{"name":"Kenny Lindgren","age":58,"location":"Parisianland"}},{"attributes":{"name":"Hailey Cassin","age":53,"location":"Dionview"}},{"attributes":{"name":"Beulah Stracke","age":20,"location":"Steuberville"}},{"attributes":{"name":"Bonnie Wisoky","age":80,"location":"Stanberg"}},{"attributes":{"name":"Gabriella Osinski","age":54,"location":"Port Elwin"}},{"attributes":{"name":"Ricardo Dicki","age":34,"location":"Katelynboro"}},{"attributes":{"name":"Alta Medhurst","age":19,"location":"North Keshawn"}},{"attributes":{"name":"Felipe Schuppe","age":52,"location":"Simonischester"}},{"attributes":{"name":"Narciso Bergstrom","age":61,"location":"Salinas"}},{"attributes":{"name":"Elmer Rath","age":77,"location":"North Sydnie"}},{"attributes":{"name":"Scarlett Simonis","age":68,"location":"Lake Mariannamouth"}},{"attributes":{"name":"Muriel Kirlin-Legros","age":80,"location":"West Elibury"}},{"attributes":{"name":"Theodore Steuber","age":37,"location":"Hermanburgh"}},{"attributes":{"name":"Gertrude Howe","age":80,"location":"South Casey"}},{"attributes":{"name":"Ms. Cydney Hodkiewicz","age":74,"location":"North Greenstad"}},{"attributes":{"name":"Calvin Stark Sr.","age":31,"location":"Fort Veronaboro"}},{"attributes":{"name":"Katrina Labadie Sr.","age":68,"location":"South Melvin"}},{"attributes":{"name":"Oral Hammes","age":67,"location":"Kaitlinfort"}},{"attributes":{"name":"Robert Feest","age":29,"location":"New Sylvantown"}},{"attributes":{"name":"Dr. Saul Terry","age":37,"location":"Lake Candida"}},{"attributes":{"name":"Meggie Conn","age":35,"location":"West Gennaroland"}},{"attributes":{"name":"Mr. Andrew Rempel","age":75,"location":"Isaactown"}},{"attributes":{"name":"Miss Tressie Zemlak","age":27,"location":"Schadenberg"}},{"attributes":{"name":"Bernhard Waters","age":67,"location":"Lake Ulicesmouth"}},{"attributes":{"name":"Telly Jacobson","age":49,"location":"Tyreekview"}},{"attributes":{"name":"Emmitt Rosenbaum","age":28,"location":"Fletcherboro"}},{"attributes":{"name":"Miss Santiago Weimann","age":48,"location":"Patrickhaven"}},{"attributes":{"name":"Ms. Tressie Dibbert","age":69,"location":"New Jaymeshire"}},{"attributes":{"name":"Stacy Pfannerstill","age":53,"location":"Johnsonworth"}},{"attributes":{"name":"Jennie Jaskolski","age":77,"location":"Evelineport"}},{"attributes":{"name":"Cecelia Donnelly","age":57,"location":"Abbottshire"}},{"attributes":{"name":"Dr. Floyd Cummings","age":48,"location":"Keenanland"}},{"attributes":{"name":"Savannah Marquardt","age":30,"location":"South Morton"}},{"attributes":{"name":"Jessie Rolfson","age":48,"location":"Farrellton"}},{"attributes":{"name":"Larry Harber","age":76,"location":"Zenaville"}},{"attributes":{"name":"Savannah Goyette","age":76,"location":"Tadboro"}},{"attributes":{"name":"Lori Howe I","age":61,"location":"Goodwintown"}},{"attributes":{"name":"Stephanie Rice-Reinger","age":22,"location":"Milpitas"}},{"attributes":{"name":"Haley Schinner","age":70,"location":"Curtisville"}},{"attributes":{"name":"Gunnar Lowe","age":41,"location":"South Jevon"}},{"attributes":{"name":"Irene Zulauf","age":58,"location":"Port Taureanview"}},{"attributes":{"name":"Cecil Heaney","age":41,"location":"Melyssaburgh"}},{"attributes":{"name":"Joanna Collier","age":32,"location":"Cheyenne"}},{"attributes":{"name":"Whitney Hermann","age":48,"location":"Lake Kristopher"}},{"attributes":{"name":"Olga Spinka","age":59,"location":"West Madisonfield"}},{"attributes":{"name":"Mariano Terry","age":58,"location":"Jabarihaven"}},{"attributes":{"name":"Sheryl Hilll","age":60,"location":"South Aryannastead"}},{"attributes":{"name":"Margarita Daniel","age":37,"location":"Lucytown"}},{"attributes":{"name":"Miss Irving Spinka","age":75,"location":"South Jamesonport"}},{"attributes":{"name":"Sergio Turner","age":57,"location":"Joanyfort"}},{"attributes":{"name":"Michelle Feest","age":46,"location":"Abernathystead"}},{"attributes":{"name":"Sidney Heathcote","age":39,"location":"Port Raeganview"}},{"attributes":{"name":"Sandy Gleason","age":34,"location":"North Kitty"}},{"attributes":{"name":"Bobbie Ortiz","age":73,"location":"West Cyril"}},{"attributes":{"name":"Esther Pfeffer Sr.","age":46,"location":"Lake Waldo"}},{"attributes":{"name":"Erick Batz","age":35,"location":"South Gunner"}},{"attributes":{"name":"Christian Marquardt","age":71,"location":"West Helen"}},{"attributes":{"name":"Gilda Turner","age":62,"location":"South Darwin"}},{"attributes":{"name":"Alanis Walker IV","age":49,"location":"Carmel"}},{"attributes":{"name":"Paul Medhurst","age":70,"location":"Thompsonside"}},{"attributes":{"name":"Maggie Blanda","age":25,"location":"Lake Marisastead"}},{"attributes":{"name":"Brandon Labadie","age":64,"location":"Pine Hills"}},{"attributes":{"name":"Edmund Morar","age":51,"location":"Erdmanchester"}},{"attributes":{"name":"Maryann Fadel MD","age":49,"location":"West Kiley"}},{"attributes":{"name":"Janet Braun","age":78,"location":"Janesville"}},{"attributes":{"name":"Beverly Haley","age":54,"location":"San Luis Obispo"}},{"attributes":{"name":"Preston Emard","age":61,"location":"Port Vicky"}},{"attributes":{"name":"Mr. Russell Christiansen","age":73,"location":"Lake Lorenzo"}},{"attributes":{"name":"Tami Daniel","age":23,"location":"Bountiful"}},{"attributes":{"name":"Robin Howell Jr.","age":54,"location":"Pinellas Park"}},{"attributes":{"name":"Alex Zemlak II","age":36,"location":"West Fritzfort"}},{"attributes":{"name":"Lura Ritchie","age":39,"location":"Lake Vesta"}},{"attributes":{"name":"Adriana Stehr","age":76,"location":"Dayanaberg"}},{"attributes":{"name":"Antonina Russel","age":25,"location":"West Clotilde"}},{"attributes":{"name":"Luz Prosacco","age":78,"location":"Wesley Chapel"}},{"attributes":{"name":"Norbert Breitenberg","age":26,"location":"New Marilou"}},{"attributes":{"name":"Margaret Pfeffer","age":71,"location":"South Holly"}},{"attributes":{"name":"Erik Purdy IV","age":24,"location":"New Haylie"}},{"attributes":{"name":"Mrs. Melanie VonRueden-Paucek","age":21,"location":"Wisozkhaven"}},{"attributes":{"name":"Tyree Schimmel","age":73,"location":"East Minervaberg"}},{"attributes":{"name":"Mrs. Robin Spencer","age":20,"location":"West Cameron"}},{"attributes":{"name":"Myrtle Veum","age":21,"location":"Abbeyfield"}},{"attributes":{"name":"Garrett Keeling","age":23,"location":"Camilafort"}},{"attributes":{"name":"Dolores Barton","age":38,"location":"Port Rosa"}},{"attributes":{"name":"Mandy Windler","age":44,"location":"Shieldston"}},{"attributes":{"name":"Ben Crona","age":64,"location":"Hanford"}},{"attributes":{"name":"Joyce Homenick","age":51,"location":"New Idafield"}},{"attributes":{"name":"Mr. Jeremy Bogisich","age":77,"location":"Herberttown"}},{"attributes":{"name":"Jeremy Walker","age":51,"location":"Julietport"}},{"attributes":{"name":"Iva O'Reilly","age":67,"location":"Madonnafort"}},{"attributes":{"name":"Rodolfo Okuneva","age":19,"location":"West Alexandrefurt"}},{"attributes":{"name":"Alvina Jaskolski","age":26,"location":"Ellicott City"}},{"attributes":{"name":"Shawn Turcotte","age":18,"location":"Judsonland"}},{"attributes":{"name":"Alfredo Lehner","age":20,"location":"Abdullahboro"}},{"attributes":{"name":"Brandon Ortiz","age":57,"location":"Woodbury"}},{"attributes":{"name":"Susan Klein","age":36,"location":"Redmond"}},{"attributes":{"name":"Jenifer Gleason","age":33,"location":"Einarville"}},{"attributes":{"name":"Lorine Weber","age":50,"location":"Mission Viejo"}},{"attributes":{"name":"Joan Oberbrunner DDS","age":37,"location":"Dietrichview"}},{"attributes":{"name":"Rex Rohan","age":52,"location":"Kaylieville"}},{"attributes":{"name":"Keegan Langosh DVM","age":40,"location":"New Austin"}},{"attributes":{"name":"Desiree Hoppe","age":73,"location":"Stamford"}},{"attributes":{"name":"Ms. Bonnie Ernser","age":63,"location":"Okeyshire"}},{"attributes":{"name":"Clark Hartmann V","age":60,"location":"South Hobartcester"}},{"attributes":{"name":"Ms. Marcia VonRueden Sr.","age":46,"location":"New Janaefurt"}},{"attributes":{"name":"Eldred Lubowitz","age":80,"location":"New Maritza"}},{"attributes":{"name":"Ramona Kunde","age":60,"location":"Streichview"}},{"attributes":{"name":"Elisa Streich-Greenfelder","age":63,"location":"Salvadorchester"}},{"attributes":{"name":"Guy Rice","age":23,"location":"South Myles"}},{"attributes":{"name":"Dr. Bryan Funk","age":60,"location":"Yuma"}},{"attributes":{"name":"Neal Stracke III","age":44,"location":"Magdalenafort"}},{"attributes":{"name":"Garrett Feeney-Fadel","age":29,"location":"West Cathryn"}},{"attributes":{"name":"James Runte","age":39,"location":"South Jamaal"}},{"attributes":{"name":"Sunny Batz","age":23,"location":"Hudsonhaven"}},{"attributes":{"name":"Jake Donnelly III","age":28,"location":"Erdmanville"}},{"attributes":{"name":"Kevin Buckridge","age":40,"location":"Austin"}},{"attributes":{"name":"Wilmer Blanda","age":43,"location":"Baltimore"}},{"attributes":{"name":"Charlotte Schuster","age":45,"location":"Carlsbad"}},{"attributes":{"name":"Antonia Hyatt PhD","age":47,"location":"East Gavinberg"}},{"attributes":{"name":"Dr. Kristin Satterfield","age":75,"location":"Franeckifurt"}},{"attributes":{"name":"Jaren Rippin","age":23,"location":"West Hiltonboro"}},{"attributes":{"name":"Neal Casper","age":78,"location":"Fort Lemuelstead"}},{"attributes":{"name":"Javier Schowalter","age":34,"location":"East Sandraland"}},{"attributes":{"name":"Sheila Zieme","age":71,"location":"West Briceport"}},{"attributes":{"name":"Carlos Fay","age":21,"location":"Littelfurt"}},{"attributes":{"name":"Ramona McClure","age":23,"location":"Sacramento"}},{"attributes":{"name":"Cathryn Windler","age":18,"location":"Adamsside"}},{"attributes":{"name":"Gaston Treutel","age":39,"location":"Lake Rod"}},{"attributes":{"name":"Dannie Rohan","age":50,"location":"Rhiannafort"}},{"attributes":{"name":"Lowell Feeney","age":57,"location":"Altamonte Springs"}},{"attributes":{"name":"Gayle McLaughlin MD","age":33,"location":"Oak Park"}},{"attributes":{"name":"Peggy Mayer","age":68,"location":"Port Luz"}},{"attributes":{"name":"Carol Crona","age":55,"location":"Luciusfield"}},{"attributes":{"name":"Larry Carter","age":48,"location":"Kautzerland"}},{"attributes":{"name":"Cornelius Ziemann","age":49,"location":"Nienowhaven"}},{"attributes":{"name":"Philip Homenick MD","age":57,"location":"Macejkovicville"}},{"attributes":{"name":"Aida Roob","age":22,"location":"North Highlands"}},{"attributes":{"name":"Maegan Hirthe","age":70,"location":"Kaylinside"}},{"attributes":{"name":"Cheryl Oberbrunner","age":31,"location":"East Veldachester"}},{"attributes":{"name":"Hugo Zulauf","age":57,"location":"Joannieburgh"}},{"attributes":{"name":"Barbara Macejkovic DVM","age":18,"location":"New Rosettashire"}},{"attributes":{"name":"Cole Beahan","age":20,"location":"Rathton"}},{"attributes":{"name":"Ted Donnelly","age":26,"location":"Labadieshire"}},{"attributes":{"name":"Yasmine Bernhard","age":29,"location":"West Dinofield"}},{"attributes":{"name":"Aglae Barrows","age":41,"location":"Yostbury"}},{"attributes":{"name":"Stacy Schamberger","age":26,"location":"Port Corneliusfurt"}},{"attributes":{"name":"Dr. Craig Baumbach II","age":70,"location":"South Aida"}},{"attributes":{"name":"Miss Clemmie Schaden","age":77,"location":"Carrollmouth"}},{"attributes":{"name":"Rudolph Breitenberg","age":20,"location":"Fort Mabellecester"}},{"attributes":{"name":"Darrel Larkin","age":80,"location":"Port Saige"}},{"attributes":{"name":"Viola Abernathy","age":57,"location":"Welchshire"}},{"attributes":{"name":"Mr. Nicholas Dibbert","age":20,"location":"Cape Coral"}},{"attributes":{"name":"Jacqueline Weimann","age":36,"location":"South Ivystead"}},{"attributes":{"name":"Ayden Mueller","age":70,"location":"O'Connellmouth"}},{"attributes":{"name":"Georgianna Bernier","age":80,"location":"Stanleyville"}},{"attributes":{"name":"Aubrey VonRueden PhD","age":71,"location":"Ernsercester"}},{"attributes":{"name":"Doug Pollich","age":63,"location":"Leraborough"}},{"attributes":{"name":"Kyleigh Grimes","age":48,"location":"Roseville"}},{"attributes":{"name":"Jonathan Reichert","age":64,"location":"Bernardville"}},{"attributes":{"name":"Doyle Oberbrunner","age":27,"location":"New Nicholaus"}},{"attributes":{"name":"Berneice Witting","age":73,"location":"Binsmouth"}},{"attributes":{"name":"Helene Bruen","age":31,"location":"Fort Dominicville"}},{"attributes":{"name":"Anissa Borer","age":59,"location":"Makennamouth"}},{"attributes":{"name":"Thomas Schamberger","age":45,"location":"Brentwood"}},{"attributes":{"name":"Nestor King","age":75,"location":"Port Alexandria"}},{"attributes":{"name":"Mary Bauch","age":34,"location":"East Odessaview"}},{"attributes":{"name":"Isac Gusikowski","age":42,"location":"Krystinaburgh"}},{"attributes":{"name":"Adam Schmeler","age":20,"location":"Weymouth Town"}},{"attributes":{"name":"Flossie O'Conner DDS","age":19,"location":"New Brayanport"}},{"attributes":{"name":"Jeremy Murphy","age":34,"location":"Savannah"}},{"attributes":{"name":"Jaeden Howell","age":42,"location":"South Elfriedastead"}},{"attributes":{"name":"Jon Bosco","age":60,"location":"Hacienda Heights"}},{"attributes":{"name":"Ella Smitham","age":27,"location":"North Tiffany"}},{"attributes":{"name":"Dexter Abbott","age":75,"location":"Abdulburgh"}},{"attributes":{"name":"Greg Smitham","age":32,"location":"Dianaburgh"}},{"attributes":{"name":"Abraham Kulas","age":67,"location":"Murazikchester"}},{"attributes":{"name":"Lynette Grimes","age":51,"location":"Milanport"}},{"attributes":{"name":"Dr. Jon Hagenes","age":52,"location":"New Elliebury"}},{"attributes":{"name":"Isabella Runolfsson","age":29,"location":"West Cielo"}},{"attributes":{"name":"Renee Heaney","age":64,"location":"South Anissa"}},{"attributes":{"name":"Hugo Nader","age":44,"location":"New Shanelfort"}},{"attributes":{"name":"Darrin Feil","age":43,"location":"West Velda"}},{"attributes":{"name":"Candice Rau","age":31,"location":"Goodwinworth"}},{"attributes":{"name":"Santos Green","age":66,"location":"South Alexandrahaven"}},{"attributes":{"name":"Lindsay Schulist","age":69,"location":"Baronhaven"}},{"attributes":{"name":"Mr. Tressie Abshire","age":30,"location":"Lake Hillary"}},{"attributes":{"name":"Evalyn Sanford","age":52,"location":"South Horace"}},{"attributes":{"name":"Braeden Satterfield-Gusikowski","age":62,"location":"Windlerburgh"}},{"attributes":{"name":"Destinee Beier","age":26,"location":"Lemkeshire"}},{"attributes":{"name":"Audrey Medhurst","age":26,"location":"Graysonborough"}},{"attributes":{"name":"Marco Upton","age":35,"location":"Connellyland"}},{"attributes":{"name":"Annamae Mann","age":56,"location":"North Karlie"}},{"attributes":{"name":"Rebekah Torphy","age":71,"location":"Doloresburgh"}},{"attributes":{"name":"Tom Harvey","age":18,"location":"McLaughlinfield"}},{"attributes":{"name":"Erwin Breitenberg","age":54,"location":"North Lelah"}},{"attributes":{"name":"Lucille Zboncak","age":38,"location":"Lake Toni"}},{"attributes":{"name":"Shane Hirthe-White","age":28,"location":"East Orphafurt"}},{"attributes":{"name":"Brown Schimmel Sr.","age":75,"location":"South Janae"}},{"attributes":{"name":"Lawson Funk","age":49,"location":"Fort Mohammed"}},{"attributes":{"name":"Jammie Littel","age":79,"location":"New Ayanaville"}},{"attributes":{"name":"Perry Erdman","age":18,"location":"Aloha"}},{"attributes":{"name":"Waylon Fritsch","age":57,"location":"Great Falls"}},{"attributes":{"name":"Celia Brakus","age":32,"location":"Alvinamouth"}},{"attributes":{"name":"Luke Hahn","age":20,"location":"Lueilwitzburgh"}},{"attributes":{"name":"Douglas Frami","age":25,"location":"Ferrystead"}},{"attributes":{"name":"Angela Denesik","age":64,"location":"San Antonio"}},{"attributes":{"name":"Bryan Wolff","age":41,"location":"East Franciscacester"}},{"attributes":{"name":"Trudie Veum","age":79,"location":"Port Ciara"}},{"attributes":{"name":"Angelica Schroeder","age":51,"location":"Heaneyfort"}},{"attributes":{"name":"Violette Johnson PhD","age":80,"location":"Evertburgh"}},{"attributes":{"name":"Darrel Von Jr.","age":37,"location":"McLean"}},{"attributes":{"name":"Imelda Klocko","age":41,"location":"Turnerboro"}},{"attributes":{"name":"Shad Friesen","age":37,"location":"Port Heathworth"}},{"attributes":{"name":"Julian Mann-Abbott I","age":61,"location":"Eribertoboro"}},{"attributes":{"name":"Jonatan Brakus","age":50,"location":"North Jackie"}},{"attributes":{"name":"Kyla Hickle","age":63,"location":"Kassulkestad"}},{"attributes":{"name":"Ludie Buckridge","age":78,"location":"West Lea"}},{"attributes":{"name":"Carleton Mills","age":42,"location":"West Jessie"}},{"attributes":{"name":"Melvin Boyle","age":55,"location":"North Flossie"}},{"attributes":{"name":"Ruthie Bins","age":78,"location":"South Godfrey"}},{"attributes":{"name":"Jose Kilback-Lubowitz","age":68,"location":"East Nickolas"}},{"attributes":{"name":"Luis Bernier","age":61,"location":"Gleichnershire"}},{"attributes":{"name":"Whitney Johns Sr.","age":23,"location":"Daughertyshire"}},{"attributes":{"name":"Stanley Lowe PhD","age":40,"location":"East Jordistead"}},{"attributes":{"name":"Rosemary D'Amore I","age":68,"location":"South Jennifermouth"}},{"attributes":{"name":"Ms. Joey Durgan MD","age":28,"location":"Reillytown"}},{"attributes":{"name":"Debra Wyman","age":36,"location":"Franeckifurt"}},{"attributes":{"name":"Mozelle Ledner","age":69,"location":"Wolfffield"}},{"attributes":{"name":"Earlene Maggio","age":71,"location":"East Shannonton"}},{"attributes":{"name":"Nora Wilkinson","age":72,"location":"East Jessie"}},{"attributes":{"name":"Gwen Stoltenberg","age":79,"location":"Collierville"}},{"attributes":{"name":"Rebekah Muller","age":48,"location":"Porterville"}},{"attributes":{"name":"Alva VonRueden-Cassin","age":51,"location":"Homenickville"}},{"attributes":{"name":"Franklin Torp","age":61,"location":"Lubowitzborough"}},{"attributes":{"name":"Tami McClure PhD","age":76,"location":"Lake Leonard"}},{"attributes":{"name":"Dr. Morris Skiles","age":63,"location":"Keaganfort"}},{"attributes":{"name":"Keith Swaniawski","age":24,"location":"Fort Jaleel"}},{"attributes":{"name":"Anna McKenzie","age":24,"location":"Port Chandler"}},{"attributes":{"name":"Clayton West","age":59,"location":"Camdenburgh"}},{"attributes":{"name":"Morris Carter-Jacobi","age":31,"location":"Lake Nayelichester"}},{"attributes":{"name":"Erik Feeney","age":48,"location":"Waukesha"}},{"attributes":{"name":"Ms. Retta Brown IV","age":42,"location":"Fort Deon"}},{"attributes":{"name":"Holly Nicolas","age":43,"location":"New Bonitaberg"}},{"attributes":{"name":"Clark Emard","age":57,"location":"Ritchiemouth"}},{"attributes":{"name":"Clemens Ondricka","age":62,"location":"West Sophie"}},{"attributes":{"name":"Bennie Barton","age":80,"location":"Oakland"}},{"attributes":{"name":"Freida O'Keefe","age":44,"location":"Burnsville"}},{"attributes":{"name":"Laurie Labadie","age":49,"location":"Fort Jeramy"}},{"attributes":{"name":"Jennings Langosh","age":46,"location":"North Erinville"}},{"attributes":{"name":"Greg Schultz","age":29,"location":"South Franz"}},{"attributes":{"name":"Tabitha Kiehn MD","age":40,"location":"Fort Adrianachester"}},{"attributes":{"name":"Mr. Omar Nikolaus-Johns","age":55,"location":"East Arielland"}},{"attributes":{"name":"Colleen Rohan","age":48,"location":"South Lucio"}},{"attributes":{"name":"Nelson MacGyver","age":51,"location":"Jarrettport"}},{"attributes":{"name":"Beverly Gislason","age":31,"location":"Schuppeborough"}},{"attributes":{"name":"Lindsay Ratke","age":54,"location":"Fargo"}},{"attributes":{"name":"Joshua Sawayn","age":57,"location":"Kozeyland"}},{"attributes":{"name":"Sonia Macejkovic","age":43,"location":"Lake Winifred"}},{"attributes":{"name":"Kristopher Franecki","age":39,"location":"Kutchshire"}},{"attributes":{"name":"Geneva Zemlak","age":77,"location":"East Blaise"}},{"attributes":{"name":"Wallace Franey","age":26,"location":"Port Hermannmouth"}},{"attributes":{"name":"Heather Runolfsson","age":67,"location":"North Carmelofort"}},{"attributes":{"name":"Allan Steuber","age":30,"location":"Nikkoburgh"}},{"attributes":{"name":"Darryl Veum-Kilback","age":63,"location":"East Georgiana"}},{"attributes":{"name":"Kevin Toy DDS","age":47,"location":"Lake Toni"}},{"attributes":{"name":"Flora Jakubowski I","age":49,"location":"Lansing"}},{"attributes":{"name":"Van Wuckert","age":45,"location":"South Demarco"}},{"attributes":{"name":"Mario Senger","age":79,"location":"Cletaborough"}},{"attributes":{"name":"Orlando McClure Sr.","age":23,"location":"Halvorsonchester"}},{"attributes":{"name":"Sid Gibson","age":73,"location":"Patienceport"}},{"attributes":{"name":"Cheryl Prohaska","age":57,"location":"Plano"}},{"attributes":{"name":"Ms. Spencer Steuber","age":65,"location":"East Alfonsoberg"}},{"attributes":{"name":"Amelia Tromp","age":77,"location":"New Emily"}},{"attributes":{"name":"Miss Alfred Purdy","age":43,"location":"Fort Santiagoton"}},{"attributes":{"name":"Darius Roob","age":18,"location":"Kassulkefurt"}},{"attributes":{"name":"Mattie Feil","age":54,"location":"Grahamcester"}},{"attributes":{"name":"Nichole Glover","age":20,"location":"Bend"}},{"attributes":{"name":"Joan Franey","age":23,"location":"Charlotteberg"}},{"attributes":{"name":"Natalie Carter","age":49,"location":"West Palm Beach"}},{"attributes":{"name":"Mitchell Muller","age":34,"location":"South Lianafield"}},{"attributes":{"name":"Dr. Ashley Lebsack","age":37,"location":"Tinley Park"}},{"attributes":{"name":"Alexane Reinger","age":30,"location":"North Bethesda"}},{"attributes":{"name":"Frederick Thompson","age":40,"location":"Port Davidton"}},{"attributes":{"name":"Claudia Treutel","age":24,"location":"Fort Arvid"}},{"attributes":{"name":"Gayle Pagac","age":67,"location":"Eastvale"}},{"attributes":{"name":"Joe Crooks","age":30,"location":"Shirleystad"}},{"attributes":{"name":"Brandon Haley","age":73,"location":"Joshuahtown"}},{"attributes":{"name":"Meredith Dickinson","age":52,"location":"Lake Oceaneboro"}},{"attributes":{"name":"Philip Kihn","age":43,"location":"North Mable"}},{"attributes":{"name":"Monique Bins","age":76,"location":"South Montechester"}},{"attributes":{"name":"Pauline Runte-Windler","age":76,"location":"Uptonville"}},{"attributes":{"name":"Alfred Hamill","age":79,"location":"Turcotteworth"}},{"attributes":{"name":"Constance Moen","age":42,"location":"South Arvidhaven"}},{"attributes":{"name":"Blanca Hahn","age":51,"location":"Tracy"}},{"attributes":{"name":"Alexander Kutch","age":68,"location":"Albany"}},{"attributes":{"name":"Lena Toy","age":34,"location":"Douglasworth"}},{"attributes":{"name":"Ashlynn Nicolas","age":67,"location":"Demetrisside"}},{"attributes":{"name":"Ronnie Nienow-Grady","age":39,"location":"Littleshire"}},{"attributes":{"name":"Omar Goldner","age":18,"location":"Marysville"}},{"attributes":{"name":"Percy Kassulke IV","age":59,"location":"West Sibylfort"}},{"attributes":{"name":"Jeanne Homenick","age":38,"location":"Fort Berry"}},{"attributes":{"name":"Francis Botsford","age":54,"location":"Wolffurt"}},{"attributes":{"name":"Patti Crooks","age":65,"location":"Kurtisberg"}},{"attributes":{"name":"Shea Mayer","age":48,"location":"Fort Kacey"}},{"attributes":{"name":"Winifred Barton","age":77,"location":"Fort Arthur"}},{"attributes":{"name":"Don Mosciski","age":42,"location":"Gulgowskiside"}},{"attributes":{"name":"Dr. Catherine Gutkowski I","age":57,"location":"Rolfsontown"}},{"attributes":{"name":"Josephine Schmeler","age":32,"location":"South Cristian"}},{"attributes":{"name":"Laurie Schinner","age":41,"location":"Rennerburgh"}},{"attributes":{"name":"Whitney Cummings","age":72,"location":"Port Marian"}},{"attributes":{"name":"Adriana Simonis DDS","age":73,"location":"West Emerald"}},{"attributes":{"name":"Bridgette Ryan DDS","age":69,"location":"Shirleymouth"}},{"attributes":{"name":"Rodney McClure","age":70,"location":"Chico"}},{"attributes":{"name":"Carol Reichert","age":65,"location":"Kayleighland"}},{"attributes":{"name":"Mrs. Eloisa Erdman","age":33,"location":"North Alvinaberg"}},{"attributes":{"name":"Florian Medhurst","age":58,"location":"Port Terrell"}},{"attributes":{"name":"Stella Bechtelar","age":69,"location":"Fort Curt"}},{"attributes":{"name":"Dr. Doug Feeney-Cole","age":38,"location":"Rathside"}},{"attributes":{"name":"Fredrick Reilly DVM","age":36,"location":"Lonnyville"}},{"attributes":{"name":"Kailee Luettgen","age":27,"location":"Kovacekside"}},{"attributes":{"name":"Fern Swift-McDermott","age":41,"location":"McClureview"}},{"attributes":{"name":"Alayna Botsford","age":44,"location":"Glendale"}},{"attributes":{"name":"Yvette Willms","age":28,"location":"Kuvalisfort"}},{"attributes":{"name":"Michael Stoltenberg","age":21,"location":"Veronicatown"}},{"attributes":{"name":"Ora Fisher","age":20,"location":"South Fionaborough"}},{"attributes":{"name":"Rachael McGlynn","age":22,"location":"Freeport"}},{"attributes":{"name":"Melisa Parker","age":78,"location":"Dearborn Heights"}},{"attributes":{"name":"Michael Lind","age":51,"location":"South Marcelina"}},{"attributes":{"name":"Steve Sporer","age":72,"location":"Langborough"}},{"attributes":{"name":"Mr. Georgette Satterfield Sr.","age":77,"location":"Hegmannborough"}},{"attributes":{"name":"Tess Lindgren V","age":71,"location":"Tustin"}},{"attributes":{"name":"Miss Janae Koelpin","age":30,"location":"Lake Beverly"}},{"attributes":{"name":"Miss Angelina Stracke","age":77,"location":"New Lavernafield"}},{"attributes":{"name":"Ignacio Wisoky MD","age":71,"location":"South Adonisberg"}},{"attributes":{"name":"Loraine Braun","age":46,"location":"Hansenstead"}},{"attributes":{"name":"Caitlyn Hirthe","age":62,"location":"Oak Park"}},{"attributes":{"name":"Jerry Rogahn","age":29,"location":"Russelfield"}},{"attributes":{"name":"Missouri Quitzon","age":24,"location":"Pollichborough"}},{"attributes":{"name":"Keenan Carroll","age":66,"location":"North Zion"}},{"attributes":{"name":"Tillman Schmeler PhD","age":53,"location":"South Ronaldo"}},{"attributes":{"name":"Lavern Hahn","age":66,"location":"West Rosalee"}},{"attributes":{"name":"Abbie Klocko","age":60,"location":"Kalamazoo"}},{"attributes":{"name":"Dayna Grimes","age":35,"location":"Abigayleboro"}},{"attributes":{"name":"Louvenia Greenholt III","age":31,"location":"Nelletown"}},{"attributes":{"name":"Joel Waters","age":56,"location":"North Cristal"}},{"attributes":{"name":"Lee Schinner-Hegmann","age":47,"location":"Fort Yesenia"}},{"attributes":{"name":"Sylvia Langosh","age":46,"location":"Clearwater"}},{"attributes":{"name":"Tim Farrell","age":53,"location":"Lake Earl"}},{"attributes":{"name":"Leona Koch","age":51,"location":"East Bryanachester"}},{"attributes":{"name":"Ricky Mante","age":64,"location":"Schmittside"}},{"attributes":{"name":"Ezekiel Welch V","age":41,"location":"Fort Smith"}},{"attributes":{"name":"Ally Schowalter","age":76,"location":"Scottsdale"}},{"attributes":{"name":"Kerry Kunde","age":56,"location":"Rolfsonchester"}},{"attributes":{"name":"Jayda Schaden","age":80,"location":"Passaic"}},{"attributes":{"name":"Anabelle Gottlieb","age":46,"location":"Kuvalisport"}},{"attributes":{"name":"Edith Rosenbaum","age":21,"location":"Lake Rashad"}},{"attributes":{"name":"Hildegard Christiansen","age":50,"location":"Ferryborough"}},{"attributes":{"name":"Cedrick Bechtelar","age":22,"location":"North Fabianborough"}},{"attributes":{"name":"Bill Pfeffer","age":55,"location":"Heidenreichstad"}},{"attributes":{"name":"Vivian Gottlieb DDS","age":54,"location":"Quitzonfort"}},{"attributes":{"name":"Esther Jerde","age":29,"location":"Lake Korbin"}},{"attributes":{"name":"Mrs. Virgil Price","age":49,"location":"Fort Oren"}},{"attributes":{"name":"Eric Smitham II","age":61,"location":"South Jedfort"}},{"attributes":{"name":"Miss Jonathan Harber IV","age":32,"location":"Marjoryton"}},{"attributes":{"name":"Dr. Yazmin Sipes","age":73,"location":"Gretaside"}},{"attributes":{"name":"Marianne Gleason","age":62,"location":"Marleeburgh"}},{"attributes":{"name":"Willie Hoeger","age":53,"location":"Lake Shanny"}},{"attributes":{"name":"Sherri Kerluke","age":44,"location":"Lake Jessy"}},{"attributes":{"name":"Jimmie Weber","age":28,"location":"North Alena"}},{"attributes":{"name":"Wade Schimmel","age":32,"location":"Santa Clara"}},{"attributes":{"name":"Yvonne Brakus","age":59,"location":"Rogahnland"}},{"attributes":{"name":"Lysanne Willms","age":53,"location":"Vacaville"}},{"attributes":{"name":"Myles Fisher","age":54,"location":"Eberthaven"}},{"attributes":{"name":"Dr. Thea Ernser","age":79,"location":"New Omerfield"}},{"attributes":{"name":"Marcus Kunde","age":71,"location":"New Addison"}},{"attributes":{"name":"Jeffery Bailey","age":44,"location":"Cordieshire"}},{"attributes":{"name":"Dr. Myra Kozey IV","age":47,"location":"Tulsa"}},{"attributes":{"name":"Eula MacGyver-Thompson","age":63,"location":"Fort Jackie"}},{"attributes":{"name":"Mitchell Bartell","age":52,"location":"East Jamarcusborough"}},{"attributes":{"name":"Casey Stanton","age":59,"location":"Vivianneton"}},{"attributes":{"name":"Abraham Jaskolski","age":40,"location":"Grapevine"}},{"attributes":{"name":"Peggie Purdy","age":26,"location":"North Ford"}},{"attributes":{"name":"Lindsey Moen","age":72,"location":"St. Peters"}},{"attributes":{"name":"Katrina Cole","age":79,"location":"South Adah"}},{"attributes":{"name":"Bradley Sanford-Reinger III","age":63,"location":"Lake Adriana"}},{"attributes":{"name":"Alice Ledner","age":24,"location":"New Maegantown"}},{"attributes":{"name":"Annie Hansen I","age":38,"location":"Frederick"}},{"attributes":{"name":"William Nicolas","age":22,"location":"Eddiefurt"}},{"attributes":{"name":"Earlene Sanford","age":70,"location":"Lake Twilaborough"}},{"attributes":{"name":"Margaret Bauch","age":70,"location":"Meridian"}},{"attributes":{"name":"Grayson Morissette","age":23,"location":"South Jaydonfield"}},{"attributes":{"name":"Josephine Bosco","age":38,"location":"East Parisburgh"}},{"attributes":{"name":"Lilyan Berge","age":52,"location":"East Titusstead"}},{"attributes":{"name":"Carole Walker","age":80,"location":"South Alvera"}},{"attributes":{"name":"Marvin Jacobi","age":19,"location":"Bethport"}},{"attributes":{"name":"Tommie Johns","age":67,"location":"Chicago"}},{"attributes":{"name":"Janiya Kilback","age":38,"location":"Lake Abbiestead"}},{"attributes":{"name":"Mr. Felipe Franecki","age":32,"location":"East Alvisport"}},{"attributes":{"name":"Blake Schmidt","age":24,"location":"Turlock"}},{"attributes":{"name":"Jeramie Lang I","age":39,"location":"Sawayncester"}},{"attributes":{"name":"Lou Konopelski","age":57,"location":"Caleland"}},{"attributes":{"name":"Brandon Gislason","age":25,"location":"Port Nobleland"}},{"attributes":{"name":"Mia Glover","age":41,"location":"South Norberto"}},{"attributes":{"name":"Rosemary Kemmer","age":56,"location":"Lake Othaview"}},{"attributes":{"name":"Marcella Kohler","age":29,"location":"Jaidafurt"}},{"attributes":{"name":"Roberta Rutherford","age":32,"location":"Ruthside"}},{"attributes":{"name":"Roman Bednar","age":51,"location":"New Sheldon"}},{"attributes":{"name":"Jazlyn Ondricka","age":20,"location":"Goyetteton"}},{"attributes":{"name":"Demond Wiegand","age":22,"location":"Ashlynnland"}},{"attributes":{"name":"Melvin Fadel","age":22,"location":"New Dante"}},{"attributes":{"name":"Mr. Jerald Keeling","age":35,"location":"Newport Beach"}},{"attributes":{"name":"Katlyn Littel","age":46,"location":"New Wilbertfield"}},{"attributes":{"name":"Fanny Fahey","age":60,"location":"Eau Claire"}},{"attributes":{"name":"Estelle Gislason","age":75,"location":"Port Lisa"}},{"attributes":{"name":"Laurianne Bernhard","age":46,"location":"Busterville"}},{"attributes":{"name":"Keira Watsica","age":68,"location":"South Sashaborough"}},{"attributes":{"name":"Camylle Bruen","age":80,"location":"Santa Ana"}},{"attributes":{"name":"Monroe Brakus","age":18,"location":"Lehi"}},{"attributes":{"name":"Mrs. Sandy Buckridge","age":67,"location":"New Emmalee"}},{"attributes":{"name":"Carolyn Breitenberg","age":55,"location":"Norwalk"}},{"attributes":{"name":"Neal Rempel","age":56,"location":"East Mitchell"}},{"attributes":{"name":"Tim Rice Sr.","age":45,"location":"South Nichole"}},{"attributes":{"name":"Christophe Kirlin Jr.","age":80,"location":"Lionelbury"}},{"attributes":{"name":"Makenna Hickle","age":68,"location":"Port Leola"}},{"attributes":{"name":"Lulu Schuster","age":77,"location":"Sabinaburgh"}},{"attributes":{"name":"Ephraim Braun-Beahan","age":31,"location":"Jocelynbury"}},{"attributes":{"name":"Ms. Cora Satterfield","age":49,"location":"Teaganfurt"}},{"attributes":{"name":"Zachary Grady DVM","age":32,"location":"Tampa"}},{"attributes":{"name":"Elmer Volkman","age":44,"location":"Westminster"}},{"attributes":{"name":"Dr. Arnold Ruecker","age":26,"location":"Billings"}},{"attributes":{"name":"Lucious Cummerata DVM","age":21,"location":"Devonhaven"}},{"attributes":{"name":"Kamille Stiedemann","age":71,"location":"East Jacklyn"}},{"attributes":{"name":"Renee Towne","age":32,"location":"Port Anabelland"}},{"attributes":{"name":"Kristin Larkin","age":66,"location":"Pharr"}},{"attributes":{"name":"Samantha Hermiston DVM","age":74,"location":"Strongsville"}},{"attributes":{"name":"Van Fisher","age":22,"location":"Modesto"}},{"attributes":{"name":"Vivian Johnston","age":24,"location":"New Joliebury"}},{"attributes":{"name":"Travis Bernier","age":24,"location":"South Myrnaboro"}},{"attributes":{"name":"Electa Crona","age":46,"location":"Fort Ambrose"}},{"attributes":{"name":"Annabel Koss","age":70,"location":"South Deven"}},{"attributes":{"name":"Verna Ankunding","age":36,"location":"West Angustown"}},{"attributes":{"name":"Mr. Haley Barrows","age":73,"location":"Schusterstad"}},{"attributes":{"name":"Idell Kreiger","age":18,"location":"O'Keefeville"}},{"attributes":{"name":"Shawna Heller","age":20,"location":"Fort Verona"}},{"attributes":{"name":"Cedric O'Connell","age":61,"location":"Sawaynmouth"}},{"attributes":{"name":"Merle Glover","age":30,"location":"Independence"}},{"attributes":{"name":"Dan Heller","age":44,"location":"Johnson City"}},{"attributes":{"name":"Neal Hyatt","age":56,"location":"Camarillo"}},{"attributes":{"name":"Jon Moen-Simonis","age":33,"location":"Walkerhaven"}},{"attributes":{"name":"Kendra Dickinson","age":65,"location":"Smithamshire"}},{"attributes":{"name":"Manley Goldner-Glover","age":76,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Preston Pagac","age":59,"location":"Vidastead"}},{"attributes":{"name":"Augustus O'Reilly","age":39,"location":"Moreno Valley"}},{"attributes":{"name":"Dr. Belinda Dach","age":36,"location":"Harveymouth"}},{"attributes":{"name":"Felix Hamill","age":29,"location":"Victoria"}},{"attributes":{"name":"Brigitte Denesik","age":69,"location":"North Robbie"}},{"attributes":{"name":"Tamia Champlin","age":38,"location":"New Adriannaport"}},{"attributes":{"name":"Mrs. Mattie Heaney V","age":57,"location":"North Lyricbury"}},{"attributes":{"name":"Carol Douglas","age":57,"location":"Kiraport"}},{"attributes":{"name":"Daija Williamson","age":36,"location":"North Dominicton"}},{"attributes":{"name":"Alma Schinner","age":80,"location":"Robertsberg"}},{"attributes":{"name":"Daryl Rogahn","age":47,"location":"East Angelinestad"}},{"attributes":{"name":"Karen Beier IV","age":64,"location":"South Erictown"}},{"attributes":{"name":"Felipe King","age":77,"location":"Port Raymundo"}},{"attributes":{"name":"Angelica Renner","age":25,"location":"Kaitlynchester"}},{"attributes":{"name":"Rosanna Marks","age":78,"location":"Vicentafort"}},{"attributes":{"name":"Irving Greenholt DDS","age":68,"location":"Antonettachester"}},{"attributes":{"name":"Osbaldo Mills","age":53,"location":"Dannieburgh"}},{"attributes":{"name":"Mr. Raul Weber IV","age":30,"location":"New Quintonboro"}},{"attributes":{"name":"Sydni Ferry Jr.","age":59,"location":"Hoppeport"}},{"attributes":{"name":"David Jast","age":76,"location":"Dayton"}},{"attributes":{"name":"Dr. Teresa Kirlin","age":45,"location":"Reichelfurt"}},{"attributes":{"name":"Nancy Beahan","age":58,"location":"Carleestad"}},{"attributes":{"name":"Isobel Effertz","age":51,"location":"Theaboro"}},{"attributes":{"name":"Curtis Lemke IV","age":46,"location":"Wallacefield"}},{"attributes":{"name":"Roman O'Reilly","age":58,"location":"Casperburgh"}},{"attributes":{"name":"Marilou Shanahan","age":75,"location":"New Mekhiberg"}},{"attributes":{"name":"Priscilla Kunde","age":32,"location":"Fontana"}},{"attributes":{"name":"Ian Ziemann","age":27,"location":"West Luisa"}},{"attributes":{"name":"Ms. Maybell Sawayn","age":67,"location":"Suzannestead"}},{"attributes":{"name":"Sidney Kozey","age":52,"location":"Lakinburgh"}},{"attributes":{"name":"Ryan Nienow","age":42,"location":"Alafaya"}},{"attributes":{"name":"Kaden Cummings","age":39,"location":"Estefaniaport"}},{"attributes":{"name":"Jayne Kuhlman","age":39,"location":"Keltonboro"}},{"attributes":{"name":"Guadalupe McCullough","age":41,"location":"Lake Rowan"}},{"attributes":{"name":"Mathew Casper","age":24,"location":"New Bethel"}},{"attributes":{"name":"Mr. Walton Stark","age":67,"location":"North Birdieshire"}},{"attributes":{"name":"Dr. Terri Strosin","age":51,"location":"Tacoma"}},{"attributes":{"name":"Iris Heaney","age":65,"location":"Ardithfield"}},{"attributes":{"name":"Mr. Matthew O'Conner","age":56,"location":"Celestinoborough"}},{"attributes":{"name":"Guy Abshire","age":48,"location":"West Cesar"}},{"attributes":{"name":"Dr. Jessica Kling","age":35,"location":"Fort Sheridanton"}},{"attributes":{"name":"Nedra Flatley","age":64,"location":"Lehnerland"}},{"attributes":{"name":"Brooklyn Leuschke","age":35,"location":"Fort Richmondland"}},{"attributes":{"name":"Mr. Eriberto Metz","age":36,"location":"New Ulices"}},{"attributes":{"name":"Adam Hickle","age":68,"location":"Riverton"}},{"attributes":{"name":"Olivia Zulauf","age":69,"location":"West Gabriellaworth"}},{"attributes":{"name":"Terri Fahey","age":64,"location":"Ulicesberg"}},{"attributes":{"name":"Freeda Collier","age":76,"location":"North Gillianland"}},{"attributes":{"name":"Jaylin Lind","age":36,"location":"South Leopoldoshire"}},{"attributes":{"name":"Eloise West Jr.","age":56,"location":"Grimesworth"}},{"attributes":{"name":"Karen Walsh","age":43,"location":"Bodefort"}},{"attributes":{"name":"Vernon Powlowski MD","age":45,"location":"Lake Violetteport"}},{"attributes":{"name":"Myrtle Torphy IV","age":25,"location":"Connmouth"}},{"attributes":{"name":"Dr. Emilie Schmidt III","age":23,"location":"New Larontown"}},{"attributes":{"name":"Eloise Crooks","age":27,"location":"Fort Drewcester"}},{"attributes":{"name":"Miss Tina Bernhard","age":60,"location":"Bonita Springs"}},{"attributes":{"name":"Gilbert Lockman","age":50,"location":"Lehnerville"}},{"attributes":{"name":"Maegan Schaden","age":54,"location":"East Colton"}},{"attributes":{"name":"Enrique Beatty","age":66,"location":"North Minastead"}},{"attributes":{"name":"Roberto Monahan","age":30,"location":"Fadelland"}},{"attributes":{"name":"Lester Kutch","age":76,"location":"Lexusboro"}},{"attributes":{"name":"Kelly Mitchell","age":63,"location":"South Rickieburgh"}},{"attributes":{"name":"Violet Bernier","age":33,"location":"Rickberg"}},{"attributes":{"name":"Ted Kuhic-McDermott","age":38,"location":"Fort Hope"}},{"attributes":{"name":"Lawrence Bartell","age":76,"location":"Florence-Graham"}},{"attributes":{"name":"Marion Larson","age":21,"location":"West Westleyworth"}},{"attributes":{"name":"Irvin Howell","age":51,"location":"Port Mateobury"}},{"attributes":{"name":"Doyle Schinner","age":53,"location":"West Darron"}},{"attributes":{"name":"Norman Altenwerth","age":25,"location":"West Ned"}},{"attributes":{"name":"Leo Howell","age":60,"location":"Blickchester"}},{"attributes":{"name":"Clark Littel","age":42,"location":"Manncester"}},{"attributes":{"name":"Jakayla Feest","age":46,"location":"Fort Santa"}},{"attributes":{"name":"Roderick Macejkovic","age":28,"location":"New Axelcester"}},{"attributes":{"name":"Jason Grant PhD","age":24,"location":"Fort Vernview"}},{"attributes":{"name":"Eldon Schimmel","age":35,"location":"Greentown"}},{"attributes":{"name":"Rafael Hermann","age":47,"location":"Lake Joy"}},{"attributes":{"name":"Coty Hintz","age":43,"location":"Fort Burnicechester"}},{"attributes":{"name":"Fannie Kuphal","age":54,"location":"Sporerside"}},{"attributes":{"name":"Virgil Rath","age":33,"location":"Thielchester"}},{"attributes":{"name":"Frederick Armstrong","age":66,"location":"North Reece"}},{"attributes":{"name":"Mindy Stoltenberg","age":47,"location":"Minnetonka"}},{"attributes":{"name":"George Hickle","age":80,"location":"West Ferne"}},{"attributes":{"name":"Parker Stokes I","age":46,"location":"South Mackenzie"}},{"attributes":{"name":"Ms. Geovanni Hermann","age":70,"location":"Deannachester"}},{"attributes":{"name":"Dave Funk V","age":36,"location":"Lake Melisa"}},{"attributes":{"name":"Leila Wehner","age":19,"location":"East Francisco"}},{"attributes":{"name":"Shane Grimes","age":47,"location":"North Aleen"}},{"attributes":{"name":"Alyssa Goodwin","age":29,"location":"Lake Bradytown"}},{"attributes":{"name":"Ignacio Hammes","age":78,"location":"Kiarachester"}},{"attributes":{"name":"Dr. Nona Hilpert","age":52,"location":"Boehmshire"}},{"attributes":{"name":"Chasity Cartwright","age":49,"location":"Mayaguez"}},{"attributes":{"name":"Dr. Lynne Wyman","age":67,"location":"New Isaistead"}},{"attributes":{"name":"Angel Oberbrunner DDS","age":47,"location":"North Carmelworth"}},{"attributes":{"name":"Meaghan White","age":46,"location":"Miami Beach"}},{"attributes":{"name":"Norma Volkman","age":57,"location":"Mayertport"}},{"attributes":{"name":"Oswaldo Beatty","age":27,"location":"Kundefort"}},{"attributes":{"name":"Ms. Sonya Waelchi","age":62,"location":"Ann Arbor"}},{"attributes":{"name":"Bert Stehr","age":79,"location":"South Esperanzamouth"}},{"attributes":{"name":"Dr. Abbey Barton","age":46,"location":"Altadena"}},{"attributes":{"name":"Vinnie Gibson","age":79,"location":"Garettbury"}},{"attributes":{"name":"Marquise MacGyver","age":33,"location":"Hattiesburg"}},{"attributes":{"name":"Clint O'Keefe PhD","age":62,"location":"South Tyrel"}},{"attributes":{"name":"Demetrius Feeney","age":80,"location":"Madison"}},{"attributes":{"name":"Randall Feest","age":57,"location":"Petaluma"}},{"attributes":{"name":"Kristofer Hodkiewicz","age":67,"location":"West Leolaview"}},{"attributes":{"name":"Jo Reilly","age":29,"location":"Rippinburgh"}},{"attributes":{"name":"Daryl Feest","age":71,"location":"Dundalk"}},{"attributes":{"name":"Bryan Flatley","age":76,"location":"West Murl"}},{"attributes":{"name":"Hollis Rice","age":36,"location":"South Marilou"}},{"attributes":{"name":"Laurine Watsica V","age":22,"location":"Christinamouth"}},{"attributes":{"name":"Arlo Dietrich-Okuneva I","age":76,"location":"Fort Walter"}},{"attributes":{"name":"Clement Boehm","age":57,"location":"Paulborough"}},{"attributes":{"name":"Dr. Arnold Torphy","age":18,"location":"Jarrettborough"}},{"attributes":{"name":"Maya McDermott","age":25,"location":"Powlowskifort"}},{"attributes":{"name":"Brent Herman","age":36,"location":"South Vadaborough"}},{"attributes":{"name":"Loma Zboncak","age":50,"location":"Abbottcester"}},{"attributes":{"name":"Elvira Toy-Emard","age":40,"location":"Sandraworth"}},{"attributes":{"name":"Bryce Mertz","age":71,"location":"North Henry"}},{"attributes":{"name":"Alexis Kozey","age":39,"location":"Justinechester"}},{"attributes":{"name":"Donald Olson","age":29,"location":"West Amparomouth"}},{"attributes":{"name":"Salvador Cassin","age":27,"location":"Conroyview"}},{"attributes":{"name":"Dr. Chester Koepp","age":47,"location":"Lake Deshawn"}},{"attributes":{"name":"Bill Marks","age":18,"location":"South Cody"}},{"attributes":{"name":"Russel Pfeffer","age":80,"location":"West Brando"}},{"attributes":{"name":"Elsa Will DDS","age":42,"location":"Sunrise Manor"}},{"attributes":{"name":"Collin Volkman","age":36,"location":"Alanisside"}},{"attributes":{"name":"Winifred Terry","age":59,"location":"New Dessie"}},{"attributes":{"name":"Dwight Kshlerin","age":59,"location":"North Trevaboro"}},{"attributes":{"name":"Dr. Daryl Koch","age":70,"location":"South Peggie"}},{"attributes":{"name":"Domingo Davis Sr.","age":68,"location":"Christopherview"}},{"attributes":{"name":"Dora Breitenberg Jr.","age":59,"location":"Victoria"}},{"attributes":{"name":"Benton Reynolds","age":37,"location":"North Betteside"}},{"attributes":{"name":"Odell Renner","age":46,"location":"Fort Wanda"}},{"attributes":{"name":"Ismael Rosenbaum","age":50,"location":"Baileyfort"}},{"attributes":{"name":"Beth Barton V","age":40,"location":"Murazikfurt"}},{"attributes":{"name":"Elena Olson","age":46,"location":"East Vernon"}},{"attributes":{"name":"Ronnie Rutherford","age":26,"location":"Tigard"}},{"attributes":{"name":"Marc Harber","age":66,"location":"Mesa"}},{"attributes":{"name":"Damon Jerde","age":71,"location":"South Newell"}},{"attributes":{"name":"Catherine Runte","age":71,"location":"East Jameson"}},{"attributes":{"name":"Eugene Herzog","age":38,"location":"West Palm Beach"}},{"attributes":{"name":"Ben Adams","age":66,"location":"West Vernieworth"}},{"attributes":{"name":"Keely Walsh","age":66,"location":"South Jedidiah"}},{"attributes":{"name":"Carla Doyle","age":34,"location":"Johnborough"}},{"attributes":{"name":"Paris Cruickshank","age":45,"location":"North Ray"}},{"attributes":{"name":"Ollie Crist","age":34,"location":"Port Geoffrey"}},{"attributes":{"name":"Ashley Mayert","age":70,"location":"Laguna Niguel"}},{"attributes":{"name":"Monique Fadel","age":77,"location":"Lake Rhiannon"}},{"attributes":{"name":"Bernadette Beer-Kessler","age":67,"location":"South Elinorborough"}},{"attributes":{"name":"Perry Turcotte","age":39,"location":"Wainoside"}},{"attributes":{"name":"Dr. Rene Paucek","age":78,"location":"South Paxton"}},{"attributes":{"name":"Gregorio Bartell","age":63,"location":"South Dahlia"}},{"attributes":{"name":"Mr. Neal Bauch","age":64,"location":"Rennerfort"}},{"attributes":{"name":"Devin Wisozk","age":25,"location":"Lake Cesar"}},{"attributes":{"name":"Vincenzo Williamson","age":23,"location":"Maxineworth"}},{"attributes":{"name":"Judith Witting-Farrell","age":75,"location":"Wittingside"}},{"attributes":{"name":"Amalia Mills DVM","age":21,"location":"South Shanefield"}},{"attributes":{"name":"Deshaun Fadel","age":76,"location":"Fort Golda"}},{"attributes":{"name":"Jo Koss","age":71,"location":"Orlando"}},{"attributes":{"name":"Annie Volkman","age":48,"location":"Starkville"}},{"attributes":{"name":"Elaine McGlynn","age":43,"location":"Fort Kristopherhaven"}},{"attributes":{"name":"Haskell Ruecker","age":80,"location":"Considineborough"}},{"attributes":{"name":"Peggy Welch","age":50,"location":"East Roslynworth"}},{"attributes":{"name":"Lizeth Ferry-Little","age":52,"location":"South Linnie"}},{"attributes":{"name":"Mekhi Kautzer","age":47,"location":"Lake Alysabury"}},{"attributes":{"name":"Vera Luettgen-Fisher DVM","age":71,"location":"Araceliland"}},{"attributes":{"name":"Mrs. Houston Nolan","age":32,"location":"Lake Priscilla"}},{"attributes":{"name":"May Maggio","age":66,"location":"Elgin"}},{"attributes":{"name":"Russell Gusikowski","age":22,"location":"Audiechester"}},{"attributes":{"name":"Selmer Turcotte","age":25,"location":"Laurentown"}},{"attributes":{"name":"Spencer McKenzie DDS","age":45,"location":"Lydiaberg"}},{"attributes":{"name":"Patty Christiansen","age":60,"location":"Pfefferborough"}},{"attributes":{"name":"Joel Wuckert","age":77,"location":"Elodyborough"}},{"attributes":{"name":"Idella Kautzer","age":18,"location":"Sierra Vista"}},{"attributes":{"name":"Ramiro Howe","age":24,"location":"Winston-Salem"}},{"attributes":{"name":"Jesse Greenholt","age":21,"location":"Jackson"}},{"attributes":{"name":"Dr. Effie Ziemann","age":61,"location":"East Murray"}},{"attributes":{"name":"Travis Trantow","age":36,"location":"West Wandaworth"}},{"attributes":{"name":"Ray Abernathy","age":55,"location":"East Dorian"}},{"attributes":{"name":"Dr. Norman Hermann","age":73,"location":"Port Joannie"}},{"attributes":{"name":"Eden Bogan","age":64,"location":"St. Petersburg"}},{"attributes":{"name":"Daren Torphy","age":80,"location":"Rosemead"}},{"attributes":{"name":"Zane Herman","age":39,"location":"Titusville"}},{"attributes":{"name":"Tabitha McClure","age":66,"location":"Lake Guadalupe"}},{"attributes":{"name":"Brooke Lesch","age":25,"location":"Metzville"}},{"attributes":{"name":"Agustin Zieme","age":47,"location":"Stammhaven"}},{"attributes":{"name":"Marcia West","age":41,"location":"Bryan"}},{"attributes":{"name":"Gerhard Bernhard","age":32,"location":"Farrellport"}},{"attributes":{"name":"Missouri Marquardt","age":73,"location":"Vallejo"}},{"attributes":{"name":"Percy Thiel IV","age":59,"location":"New Jaquelineworth"}},{"attributes":{"name":"Anais Predovic","age":32,"location":"Caguas"}},{"attributes":{"name":"Ubaldo Wolf","age":45,"location":"Janesville"}},{"attributes":{"name":"Rita Herzog","age":74,"location":"Port Jacintobury"}},{"attributes":{"name":"Miss Olive Kulas","age":55,"location":"Baileyview"}},{"attributes":{"name":"Estelle Ebert","age":30,"location":"West Lennyville"}},{"attributes":{"name":"Ellen Lindgren","age":38,"location":"Lompoc"}},{"attributes":{"name":"Victoria Funk-Cummings","age":48,"location":"Juniusburgh"}},{"attributes":{"name":"Torey Purdy","age":36,"location":"Knoxville"}},{"attributes":{"name":"Benny Johnston","age":55,"location":"East Osvaldotown"}},{"attributes":{"name":"Cedrick Mayer","age":57,"location":"Caliland"}},{"attributes":{"name":"Salvador Beatty","age":36,"location":"Ralphton"}},{"attributes":{"name":"Constance Kris","age":50,"location":"West Dimitri"}},{"attributes":{"name":"Curtis Corwin","age":45,"location":"South Ernestina"}},{"attributes":{"name":"Jay Auer","age":44,"location":"West Shermanland"}},{"attributes":{"name":"Rico Block","age":26,"location":"West Richmondburgh"}},{"attributes":{"name":"Mrs. Avery Grimes","age":26,"location":"Fort Pierce"}},{"attributes":{"name":"Johann Carroll","age":71,"location":"Fort Marcview"}},{"attributes":{"name":"Darrel Howe III","age":51,"location":"Lake Keithport"}},{"attributes":{"name":"Dr. Magdalen Mann","age":80,"location":"West Carterborough"}},{"attributes":{"name":"Zena Satterfield","age":19,"location":"Swiftberg"}},{"attributes":{"name":"Susie Kilback V","age":76,"location":"La Mesa"}},{"attributes":{"name":"Wilson Sawayn","age":37,"location":"New Dejaville"}},{"attributes":{"name":"Kay Blanda","age":67,"location":"Weldonland"}},{"attributes":{"name":"Johnnie Hane","age":57,"location":"New Modestobury"}},{"attributes":{"name":"Bernice Cummerata","age":34,"location":"Fort Zachariah"}},{"attributes":{"name":"Kate Labadie","age":38,"location":"Sioux City"}},{"attributes":{"name":"Stanley McLaughlin DVM","age":63,"location":"South Letitia"}},{"attributes":{"name":"Freddie Beatty Jr.","age":54,"location":"Irondequoit"}},{"attributes":{"name":"Andrew Pollich","age":52,"location":"Camrenview"}},{"attributes":{"name":"Kellie Corkery","age":41,"location":"Hemet"}},{"attributes":{"name":"Kenyon Hermiston","age":39,"location":"New Sophiefield"}},{"attributes":{"name":"Izaiah Rolfson","age":33,"location":"South Augustinefield"}},{"attributes":{"name":"Ada Kunde","age":65,"location":"West Kiraport"}},{"attributes":{"name":"Miss Eunice Hansen-DuBuque","age":52,"location":"Lancetown"}},{"attributes":{"name":"Edward Runolfsson","age":65,"location":"Braunboro"}},{"attributes":{"name":"Dana Rogahn","age":66,"location":"Abernathybury"}},{"attributes":{"name":"Dr. Edna Kuhlman","age":73,"location":"Solonton"}},{"attributes":{"name":"Chris Schinner","age":80,"location":"Handville"}},{"attributes":{"name":"Kathleen Okuneva","age":25,"location":"Eden Prairie"}},{"attributes":{"name":"Olaf Wisozk-Volkman","age":28,"location":"Agustinaberg"}},{"attributes":{"name":"Ms. Judy Hills","age":46,"location":"North Margarett"}},{"attributes":{"name":"Sheldon Considine","age":50,"location":"South Owenstad"}},{"attributes":{"name":"David Hermann IV","age":60,"location":"San Diego"}},{"attributes":{"name":"Nelda Hane","age":33,"location":"Lake Shanie"}},{"attributes":{"name":"Lucy Zieme","age":57,"location":"Bayamon"}},{"attributes":{"name":"Florida Haag","age":73,"location":"New Elenachester"}},{"attributes":{"name":"Alice Dickinson","age":71,"location":"Hillsboro"}},{"attributes":{"name":"Adam Carter","age":40,"location":"North Rashad"}},{"attributes":{"name":"Ella Runolfsson DVM","age":44,"location":"Euless"}},{"attributes":{"name":"Ms. Chauncey Walsh","age":71,"location":"Meriden"}},{"attributes":{"name":"Martine Lockman","age":80,"location":"North Norwood"}},{"attributes":{"name":"Beulah Welch","age":31,"location":"Findlay"}},{"attributes":{"name":"Wilma Predovic","age":22,"location":"Murrieta"}},{"attributes":{"name":"Preston Keeling","age":79,"location":"Kendall"}},{"attributes":{"name":"Alberto Wyman PhD","age":24,"location":"Niagara Falls"}},{"attributes":{"name":"Russell Von Jr.","age":74,"location":"Arlington Heights"}},{"attributes":{"name":"Grace Herzog DVM","age":37,"location":"Keanustead"}},{"attributes":{"name":"Annette Turcotte","age":22,"location":"Blandaton"}},{"attributes":{"name":"Allen Kertzmann","age":64,"location":"South Pearlie"}},{"attributes":{"name":"Miss Jasper Lehner","age":28,"location":"West Valerie"}},{"attributes":{"name":"Stella Gibson","age":55,"location":"South Cloyd"}},{"attributes":{"name":"Salvatore Kihn","age":25,"location":"Port Dorcaschester"}},{"attributes":{"name":"Yadira Lakin","age":74,"location":"Lake Mackenziebury"}},{"attributes":{"name":"Ramona Maggio","age":34,"location":"Stanfurt"}},{"attributes":{"name":"Maxie Walsh","age":52,"location":"Emieburgh"}},{"attributes":{"name":"Edyth Waelchi","age":24,"location":"Gerholdstad"}},{"attributes":{"name":"Bruce Boyle","age":80,"location":"Salvadorstad"}},{"attributes":{"name":"Dwight Thompson","age":49,"location":"South Loganfort"}},{"attributes":{"name":"Juanita Hermiston-Keebler","age":23,"location":"Fritschcester"}},{"attributes":{"name":"Amiya Frami","age":68,"location":"Ettieworth"}},{"attributes":{"name":"Carli Conn","age":34,"location":"Fort Nolatown"}},{"attributes":{"name":"Grayce Labadie","age":55,"location":"Faybury"}},{"attributes":{"name":"Jaeden DuBuque","age":29,"location":"Stantonfort"}},{"attributes":{"name":"Olga Erdman","age":80,"location":"Clydeshire"}},{"attributes":{"name":"Miss Pascale Schuster","age":60,"location":"Glendale"}},{"attributes":{"name":"Laurie Satterfield","age":26,"location":"New Edgarbury"}},{"attributes":{"name":"Dr. Roy Streich","age":19,"location":"Fort Leliaview"}},{"attributes":{"name":"Titus Rowe","age":47,"location":"San Jacinto"}},{"attributes":{"name":"Alvin McClure","age":77,"location":"Grimesville"}},{"attributes":{"name":"Mario Breitenberg","age":41,"location":"Lake Lonzo"}},{"attributes":{"name":"Jerrold Pacocha","age":80,"location":"Tadworth"}},{"attributes":{"name":"Kim Schamberger","age":47,"location":"Wyoming"}},{"attributes":{"name":"Cade Gottlieb MD","age":43,"location":"East Marina"}},{"attributes":{"name":"Roberto Wuckert","age":31,"location":"Handworth"}},{"attributes":{"name":"Dora Brekke II","age":36,"location":"East Heavenbury"}},{"attributes":{"name":"Eunice Kessler","age":37,"location":"Elizafurt"}},{"attributes":{"name":"Clayton King","age":48,"location":"Allentown"}},{"attributes":{"name":"Carey Murray","age":68,"location":"New Nakiaburgh"}},{"attributes":{"name":"Sarah Donnelly","age":62,"location":"Hendersonville"}},{"attributes":{"name":"Miss Stewart Daniel","age":55,"location":"North Alec"}},{"attributes":{"name":"Durward Weissnat","age":60,"location":"Chandler"}},{"attributes":{"name":"Johan Luettgen Jr.","age":65,"location":"West Asia"}},{"attributes":{"name":"Ayla Hintz","age":66,"location":"Smithstead"}},{"attributes":{"name":"Marion Witting PhD","age":40,"location":"Port Monte"}},{"attributes":{"name":"Mr. Roy King","age":47,"location":"Alizaport"}},{"attributes":{"name":"Salvador Torp","age":61,"location":"East Noemytown"}},{"attributes":{"name":"Sylvester Mann","age":41,"location":"New Kathryncester"}},{"attributes":{"name":"Dean Stamm","age":57,"location":"East Laneyport"}},{"attributes":{"name":"Darrick Paucek","age":18,"location":"Mrazton"}},{"attributes":{"name":"Dan Mertz DDS","age":37,"location":"Port Roscoeberg"}},{"attributes":{"name":"Missouri Ortiz","age":34,"location":"New Quincy"}},{"attributes":{"name":"Dr. Silvia Schmeler","age":73,"location":"Alvisside"}},{"attributes":{"name":"Margarita Hermann","age":52,"location":"Stokesmouth"}},{"attributes":{"name":"Steven Nader DDS","age":58,"location":"Waelchifield"}},{"attributes":{"name":"Caitlyn Gutkowski","age":59,"location":"North Gracielaborough"}},{"attributes":{"name":"Melany Daugherty","age":59,"location":"Craigtown"}},{"attributes":{"name":"Mrs. Pearl Jerde","age":63,"location":"Gaithersburg"}},{"attributes":{"name":"Jennifer Schulist","age":52,"location":"Daishaland"}},{"attributes":{"name":"Dr. Frank Quigley","age":80,"location":"West Dulcebury"}},{"attributes":{"name":"Eleanor Hudson","age":50,"location":"Port Janyville"}},{"attributes":{"name":"Mayra Haag","age":58,"location":"Midwest City"}},{"attributes":{"name":"Clara Cronin","age":62,"location":"Lake Kristian"}},{"attributes":{"name":"Mathias Schneider","age":67,"location":"Hoegerbury"}},{"attributes":{"name":"Rolando Murray","age":50,"location":"Murazikburgh"}},{"attributes":{"name":"Shayne Hagenes","age":77,"location":"East Cheyenne"}},{"attributes":{"name":"Glenna McGlynn","age":22,"location":"Sugar Land"}},{"attributes":{"name":"Edwin Davis","age":34,"location":"Rapid City"}},{"attributes":{"name":"Sadie Osinski","age":48,"location":"Watersville"}},{"attributes":{"name":"Irving Smith","age":44,"location":"Sammyfort"}},{"attributes":{"name":"Ms. Laurie Gorczany","age":19,"location":"West Johannaberg"}},{"attributes":{"name":"Alvin Welch","age":68,"location":"West Eribertoworth"}},{"attributes":{"name":"Gilbert Ferry","age":38,"location":"North Kathrynechester"}},{"attributes":{"name":"Carter Spencer","age":45,"location":"Jackson"}},{"attributes":{"name":"Adriana Hand","age":52,"location":"Onashire"}},{"attributes":{"name":"Brant Will","age":27,"location":"Diamondport"}},{"attributes":{"name":"Abdullah Boyer","age":77,"location":"Riverview"}},{"attributes":{"name":"Mr. Andre Halvorson","age":32,"location":"Torphyborough"}},{"attributes":{"name":"Richard Hayes","age":23,"location":"West Allis"}},{"attributes":{"name":"Marsha Fritsch","age":74,"location":"Simonisport"}},{"attributes":{"name":"Garnett Zulauf DDS","age":65,"location":"Stehrmouth"}},{"attributes":{"name":"Tevin Sawayn","age":77,"location":"Marksfort"}},{"attributes":{"name":"Miss Stephanie Casper","age":18,"location":"South Noemie"}},{"attributes":{"name":"Sophie Rowe","age":59,"location":"West Hermannhaven"}},{"attributes":{"name":"Robert Watsica","age":48,"location":"New Jessview"}},{"attributes":{"name":"Priscilla Marquardt","age":27,"location":"Ellicott City"}},{"attributes":{"name":"Louisa Grimes","age":55,"location":"South Rodrigoborough"}},{"attributes":{"name":"Lynn Daniel","age":44,"location":"Fort Addie"}},{"attributes":{"name":"Diamond Sipes","age":30,"location":"East Dockhaven"}},{"attributes":{"name":"Shaun O'Kon","age":21,"location":"Konopelskistead"}},{"attributes":{"name":"Natasha Bauch","age":53,"location":"Mayertchester"}},{"attributes":{"name":"Kelly Medhurst","age":57,"location":"McDermottberg"}},{"attributes":{"name":"Santiago Predovic","age":46,"location":"Port Eileenfort"}},{"attributes":{"name":"Nicklaus Metz","age":29,"location":"East Traceville"}},{"attributes":{"name":"Wesley Jenkins","age":69,"location":"Port Madonna"}},{"attributes":{"name":"Patsy Towne","age":56,"location":"Oberbrunnerborough"}},{"attributes":{"name":"Johnathon Mann PhD","age":32,"location":"Fort Daryl"}},{"attributes":{"name":"Dr. Amaya Kreiger","age":75,"location":"New Joannieton"}},{"attributes":{"name":"Caroline Monahan","age":52,"location":"East Delilah"}},{"attributes":{"name":"Colten Reynolds","age":78,"location":"North Enaville"}},{"attributes":{"name":"Martina Buckridge IV","age":76,"location":"Zemlakside"}},{"attributes":{"name":"Janiya Flatley","age":25,"location":"New Velmastead"}},{"attributes":{"name":"Daisy Stanton","age":52,"location":"Beerbury"}},{"attributes":{"name":"Amir Parisian","age":69,"location":"East Earleneshire"}},{"attributes":{"name":"Ignatius Stehr","age":80,"location":"Westland"}},{"attributes":{"name":"Tyree Sawayn","age":64,"location":"Rauhaven"}},{"attributes":{"name":"Alexis Nolan","age":30,"location":"West Michelle"}},{"attributes":{"name":"Phillip Osinski","age":80,"location":"Lake Karaton"}},{"attributes":{"name":"Raquel Purdy","age":34,"location":"Fort Elisaland"}},{"attributes":{"name":"Jay Zemlak","age":80,"location":"West Tavares"}},{"attributes":{"name":"Bernadette Bogan-Russel","age":21,"location":"Fort Narcisochester"}},{"attributes":{"name":"Maxine Reinger","age":80,"location":"North Teresafurt"}},{"attributes":{"name":"Jabari O'Hara","age":25,"location":"South Amari"}},{"attributes":{"name":"Elda Schneider","age":30,"location":"Port Darrintown"}},{"attributes":{"name":"Mr. Wilson Mohr","age":58,"location":"Fort Sabrynashire"}},{"attributes":{"name":"Dana Considine","age":52,"location":"Haleystad"}},{"attributes":{"name":"Yasmeen Beer","age":66,"location":"Valerieton"}},{"attributes":{"name":"Pam Conn","age":50,"location":"Green Bay"}},{"attributes":{"name":"Faye Konopelski","age":75,"location":"Port Ursula"}},{"attributes":{"name":"Rochelle Effertz","age":54,"location":"Lake Maryamside"}},{"attributes":{"name":"Lilian Rosenbaum","age":70,"location":"Nikolausville"}},{"attributes":{"name":"Wallace Corkery DDS","age":67,"location":"Fort Laurynport"}},{"attributes":{"name":"Brennon Nienow II","age":68,"location":"Champlintown"}},{"attributes":{"name":"Kayla Mueller","age":19,"location":"Lake Norbertstad"}},{"attributes":{"name":"Belle Kris","age":53,"location":"Hamillbury"}},{"attributes":{"name":"Hobart Wunsch","age":24,"location":"Ritchiemouth"}},{"attributes":{"name":"Gary Howell","age":45,"location":"Jillianborough"}},{"attributes":{"name":"Darla Schuppe","age":58,"location":"Lake Leland"}},{"attributes":{"name":"Ms. Arlie Langworth","age":53,"location":"Bogisichmouth"}},{"attributes":{"name":"Aubrey Keeling","age":42,"location":"West Aubrey"}},{"attributes":{"name":"Dr. Linda Hyatt","age":22,"location":"Feilside"}},{"attributes":{"name":"Hector Connelly Jr.","age":79,"location":"Lake Aliyaview"}},{"attributes":{"name":"Irving Kuphal","age":67,"location":"North Greysonside"}},{"attributes":{"name":"Sibyl Gottlieb","age":36,"location":"New Kurtis"}},{"attributes":{"name":"Dr. Ricardo Kozey MD","age":73,"location":"Lake Terrillview"}},{"attributes":{"name":"Delaney Treutel","age":23,"location":"Lake Jaydon"}},{"attributes":{"name":"Jayde Volkman-Beier","age":36,"location":"West Hermannton"}},{"attributes":{"name":"Anita Hartmann Sr.","age":76,"location":"New Dellhaven"}},{"attributes":{"name":"Alysha Kohler","age":77,"location":"Nikkocester"}},{"attributes":{"name":"Alicia Schaden","age":73,"location":"State College"}},{"attributes":{"name":"Amelia Feil-Hilll","age":20,"location":"North Gloria"}},{"attributes":{"name":"Melany Schroeder DVM","age":24,"location":"Danbury"}},{"attributes":{"name":"Dr. Mattie Brekke","age":44,"location":"Annetteville"}},{"attributes":{"name":"Brent Hoeger","age":47,"location":"West Brainmouth"}},{"attributes":{"name":"Tyreek Armstrong-Renner","age":72,"location":"Irving"}},{"attributes":{"name":"Ernestine Towne-Dicki","age":24,"location":"Town 'n' Country"}},{"attributes":{"name":"Neil Weber","age":23,"location":"New Fermin"}},{"attributes":{"name":"Olga Langworth","age":46,"location":"Fort Sydnee"}},{"attributes":{"name":"Mayra Kohler-Reichert","age":22,"location":"North Elenorburgh"}},{"attributes":{"name":"Walton Wehner","age":49,"location":"Prosaccoville"}},{"attributes":{"name":"Zita Paucek","age":77,"location":"Simi Valley"}},{"attributes":{"name":"Ross Maggio","age":39,"location":"Port Odie"}},{"attributes":{"name":"Winfield Lubowitz","age":76,"location":"Fort Ellis"}},{"attributes":{"name":"Jeannie Larson","age":53,"location":"South Valley"}},{"attributes":{"name":"Lamont Greenfelder","age":52,"location":"South San Francisco"}},{"attributes":{"name":"Miss Marion Bartell-Kohler Jr.","age":54,"location":"Fort Wayne"}},{"attributes":{"name":"Lewis Hegmann","age":47,"location":"Bowie"}},{"attributes":{"name":"Keara Mills","age":55,"location":"Collinsside"}},{"attributes":{"name":"Levi Bauch","age":35,"location":"St. Joseph"}},{"attributes":{"name":"Sonya Zieme","age":64,"location":"Bridgetteburgh"}},{"attributes":{"name":"Leslie Kirlin","age":44,"location":"South Matildeworth"}},{"attributes":{"name":"Dwayne Collins","age":30,"location":"East Elisabeth"}},{"attributes":{"name":"Melba Dach","age":49,"location":"Baton Rouge"}},{"attributes":{"name":"Larry Streich","age":40,"location":"Wildermanfield"}},{"attributes":{"name":"Opal Lockman","age":24,"location":"State College"}},{"attributes":{"name":"Maggie Bruen","age":75,"location":"North Jamey"}},{"attributes":{"name":"Karla McClure","age":60,"location":"Luellaborough"}},{"attributes":{"name":"Geneva Block","age":51,"location":"Fort Kaylin"}},{"attributes":{"name":"Clarabelle Torp-Kovacek","age":32,"location":"Bell Gardens"}},{"attributes":{"name":"Chris Purdy","age":48,"location":"Malden"}},{"attributes":{"name":"Charles Lemke-Hauck","age":57,"location":"Fort Antonetta"}},{"attributes":{"name":"Erik O'Reilly","age":44,"location":"Gastonia"}},{"attributes":{"name":"Arnoldo Ziemann DDS","age":48,"location":"Desireeview"}},{"attributes":{"name":"Jodi Ondricka","age":72,"location":"South Kian"}},{"attributes":{"name":"Melanie Ullrich","age":27,"location":"Norwoodfurt"}},{"attributes":{"name":"Angeline O'Hara","age":55,"location":"Mayerview"}},{"attributes":{"name":"Oliver Larkin","age":68,"location":"Andreanneshire"}},{"attributes":{"name":"Hulda Ryan-Leuschke","age":35,"location":"West Eldafort"}},{"attributes":{"name":"Judah Gutkowski","age":38,"location":"Myrtiefurt"}},{"attributes":{"name":"Raul Ziemann","age":63,"location":"Mannworth"}},{"attributes":{"name":"Carla Ratke","age":74,"location":"Kiehnborough"}},{"attributes":{"name":"Mertie Bernier","age":29,"location":"Reichelmouth"}},{"attributes":{"name":"Ivan Bernhard","age":54,"location":"South Leo"}},{"attributes":{"name":"Carrie Daniel PhD","age":39,"location":"Mayaguez"}},{"attributes":{"name":"Marietta Haley","age":37,"location":"Lake Clyde"}},{"attributes":{"name":"Rosalie Johns","age":65,"location":"Audieberg"}},{"attributes":{"name":"Amelia Mohr","age":62,"location":"Fort Virgie"}},{"attributes":{"name":"Conor Hand","age":41,"location":"Fort Cornelius"}},{"attributes":{"name":"Ellen Conroy DVM","age":64,"location":"Biloxi"}},{"attributes":{"name":"Leona Maggio","age":26,"location":"North Noemieborough"}},{"attributes":{"name":"Buck Rodriguez","age":52,"location":"East Kristoffertown"}},{"attributes":{"name":"Henry Terry","age":46,"location":"Geoffreyport"}},{"attributes":{"name":"Flora Bashirian","age":33,"location":"Noblesville"}},{"attributes":{"name":"Guadalupe Mayert","age":54,"location":"Nyachester"}},{"attributes":{"name":"Hellen Anderson","age":22,"location":"North Linnie"}},{"attributes":{"name":"Blanche Satterfield","age":75,"location":"Port Karolannborough"}},{"attributes":{"name":"Shawna Ferry","age":24,"location":"Fort Jadabury"}},{"attributes":{"name":"Fernando Mann","age":19,"location":"Schaeferfurt"}},{"attributes":{"name":"Cory Dickens","age":24,"location":"Barrowsboro"}},{"attributes":{"name":"Joana Rohan","age":50,"location":"New Toy"}},{"attributes":{"name":"Erin O'Keefe","age":31,"location":"Rockville"}},{"attributes":{"name":"Griffin Murphy","age":44,"location":"Trentton"}},{"attributes":{"name":"Shawn MacGyver","age":40,"location":"Livermore"}},{"attributes":{"name":"Mr. Alfonso Skiles V","age":69,"location":"Fort Justusshire"}},{"attributes":{"name":"Claude Gislason","age":56,"location":"Anabelleworth"}},{"attributes":{"name":"April Daniel","age":59,"location":"Fort Myers"}},{"attributes":{"name":"Esmeralda Kuhic","age":36,"location":"West Itzel"}},{"attributes":{"name":"Terrill Senger MD","age":80,"location":"Port Margie"}},{"attributes":{"name":"John Daniel","age":62,"location":"Jewellberg"}},{"attributes":{"name":"Rudolph Zieme Sr.","age":43,"location":"South Orenville"}},{"attributes":{"name":"Nelle Botsford","age":70,"location":"Pine Bluff"}},{"attributes":{"name":"Shirley Pfannerstill","age":44,"location":"Tyresehaven"}},{"attributes":{"name":"Brendan Considine-Larkin","age":50,"location":"Fort Vivianne"}},{"attributes":{"name":"Marlene Yost","age":25,"location":"Rosenbaumport"}},{"attributes":{"name":"Gertrude Stark","age":43,"location":"Abernathyside"}},{"attributes":{"name":"Steven O'Keefe PhD","age":43,"location":"West Nya"}},{"attributes":{"name":"Albert Howe","age":29,"location":"Fort Wilber"}},{"attributes":{"name":"Dr. Elinore Effertz","age":76,"location":"Fort Bernard"}},{"attributes":{"name":"Kyler Bode","age":42,"location":"Lonfurt"}},{"attributes":{"name":"Eulalia Kreiger","age":41,"location":"St. Paul"}},{"attributes":{"name":"Hester Schoen","age":20,"location":"Reichelland"}},{"attributes":{"name":"Keeley Denesik","age":28,"location":"Judahhaven"}},{"attributes":{"name":"Ariel Boehm","age":34,"location":"Coleland"}},{"attributes":{"name":"Mrs. Rosemarie Carroll","age":23,"location":"Beierboro"}},{"attributes":{"name":"Margie Rice DDS","age":36,"location":"Jadestead"}},{"attributes":{"name":"Arnoldo Conroy","age":50,"location":"Alfmouth"}},{"attributes":{"name":"Nicholas Schimmel","age":48,"location":"Santa Maria"}},{"attributes":{"name":"Andy Jenkins II","age":43,"location":"Peytonboro"}},{"attributes":{"name":"Rufus Rutherford","age":68,"location":"Isomland"}},{"attributes":{"name":"Courtney Adams","age":35,"location":"West Jessymouth"}},{"attributes":{"name":"Mrs. Jeannie Bartell","age":43,"location":"New Odessa"}},{"attributes":{"name":"Antoinette Stamm","age":66,"location":"Lake Josefa"}},{"attributes":{"name":"Veronica Schimmel","age":36,"location":"Roscoeshire"}},{"attributes":{"name":"Mittie Jaskolski","age":62,"location":"Syracuse"}},{"attributes":{"name":"Marshall Murazik","age":75,"location":"Tampa"}},{"attributes":{"name":"Santos Batz","age":47,"location":"Fort Amy"}},{"attributes":{"name":"Gerard Renner","age":80,"location":"Schambergerland"}},{"attributes":{"name":"Dominique Kuhic IV","age":43,"location":"Wehnerton"}},{"attributes":{"name":"Bessie Fay","age":38,"location":"Tryciaville"}},{"attributes":{"name":"Lauren Schumm","age":71,"location":"Cronaburgh"}},{"attributes":{"name":"Garrison Strosin","age":61,"location":"North Ivorychester"}},{"attributes":{"name":"Brant Hackett","age":68,"location":"East Sincereview"}},{"attributes":{"name":"Yolanda Abbott","age":72,"location":"Huldabury"}},{"attributes":{"name":"Mr. Jacquelyn Funk","age":74,"location":"Port Keeganburgh"}},{"attributes":{"name":"Shannon O'Connell","age":78,"location":"New Prudence"}},{"attributes":{"name":"Alexandro Reilly","age":45,"location":"South Ari"}},{"attributes":{"name":"Dr. Rudolph Johnson","age":26,"location":"Fort Carolina"}},{"attributes":{"name":"Afton Witting IV","age":31,"location":"New Genesis"}},{"attributes":{"name":"Corine Williamson","age":39,"location":"West Gabeland"}},{"attributes":{"name":"Elisha Stokes","age":28,"location":"Dublin"}},{"attributes":{"name":"Chelsea Schmitt","age":20,"location":"North Sigridview"}},{"attributes":{"name":"Cordell Crooks","age":18,"location":"Ashleestad"}},{"attributes":{"name":"Josefina Franey","age":41,"location":"Mayerthaven"}},{"attributes":{"name":"Ron Witting","age":55,"location":"Marcosworth"}},{"attributes":{"name":"Fae Harvey","age":35,"location":"South Jaimefort"}},{"attributes":{"name":"David Bosco IV","age":29,"location":"North Cassie"}},{"attributes":{"name":"Brayan Sporer","age":36,"location":"North Mosesfurt"}},{"attributes":{"name":"Deanna Kris DVM","age":68,"location":"East Deondre"}},{"attributes":{"name":"Neil Schuppe-Metz","age":29,"location":"Vanceside"}},{"attributes":{"name":"Lora Carter","age":78,"location":"Milpitas"}},{"attributes":{"name":"Patrick Ernser","age":42,"location":"Wichita Falls"}},{"attributes":{"name":"Dewitt Rippin","age":23,"location":"Erdmanland"}},{"attributes":{"name":"Mae Gerhold PhD","age":24,"location":"Hermannfort"}},{"attributes":{"name":"Marshall Hand","age":19,"location":"North Erickaboro"}},{"attributes":{"name":"Ms. Zachariah Fritsch","age":73,"location":"Greenholtton"}},{"attributes":{"name":"Dr. Yvonne Williamson","age":32,"location":"Simonisworth"}},{"attributes":{"name":"Angelina Schuster","age":52,"location":"Ericafurt"}},{"attributes":{"name":"Mike Nolan DDS","age":44,"location":"Schowalterborough"}},{"attributes":{"name":"Rolando Wehner","age":40,"location":"Fannyville"}},{"attributes":{"name":"Johnnie Ankunding","age":27,"location":"North Josue"}},{"attributes":{"name":"Joanne King","age":72,"location":"Zemlakstad"}},{"attributes":{"name":"Greg Hoeger","age":23,"location":"Yostton"}},{"attributes":{"name":"Curtis Baumbach","age":18,"location":"Jakobshire"}},{"attributes":{"name":"Freddie Reinger","age":53,"location":"New Oleta"}},{"attributes":{"name":"Dawn Bahringer","age":42,"location":"Fort Hilbert"}},{"attributes":{"name":"Brittany Hauck","age":71,"location":"New Aliceborough"}},{"attributes":{"name":"Lana Zemlak","age":33,"location":"North Aubreechester"}},{"attributes":{"name":"Guillermo Nolan","age":78,"location":"Wilkinsonboro"}},{"attributes":{"name":"Merl Zulauf Sr.","age":52,"location":"Fort Maxie"}},{"attributes":{"name":"Essie Connelly","age":64,"location":"Laylaville"}},{"attributes":{"name":"Fred Dickinson","age":69,"location":"Bettiehaven"}},{"attributes":{"name":"Elisa Rippin","age":60,"location":"Calecester"}},{"attributes":{"name":"Alvera McKenzie","age":32,"location":"Lake Andreanne"}},{"attributes":{"name":"Miss Fannie Bednar","age":76,"location":"Watersport"}},{"attributes":{"name":"Arlene Orn","age":76,"location":"Chandler"}},{"attributes":{"name":"Jairo Stark-Predovic","age":59,"location":"Delphiaport"}},{"attributes":{"name":"Monica Runolfsson","age":50,"location":"Noemyfort"}},{"attributes":{"name":"Melissa Hartmann","age":25,"location":"South Jasper"}},{"attributes":{"name":"Thomas Kassulke","age":55,"location":"McCulloughside"}},{"attributes":{"name":"Andres Hamill","age":46,"location":"Hoppeburgh"}},{"attributes":{"name":"Dana Armstrong","age":43,"location":"West Susanamouth"}},{"attributes":{"name":"Wade Greenfelder","age":80,"location":"Middletown"}},{"attributes":{"name":"Beth Gerlach","age":70,"location":"West Devinboro"}},{"attributes":{"name":"Toni Bruen","age":29,"location":"West Bradly"}},{"attributes":{"name":"Gloria Howell","age":43,"location":"Allanchester"}},{"attributes":{"name":"Barton Bins DDS","age":70,"location":"Julianneboro"}},{"attributes":{"name":"Gladyce Ritchie","age":72,"location":"Ilenechester"}},{"attributes":{"name":"Travis Leffler-Macejkovic","age":48,"location":"Des Moines"}},{"attributes":{"name":"Crawford Doyle DDS","age":75,"location":"Birmingham"}},{"attributes":{"name":"Priscilla Volkman","age":72,"location":"Jordybury"}},{"attributes":{"name":"Jeannie Ritchie","age":43,"location":"Rochester Hills"}},{"attributes":{"name":"Yesenia Smith","age":35,"location":"Predovicboro"}},{"attributes":{"name":"Margaret Luettgen II","age":78,"location":"Baronton"}},{"attributes":{"name":"Sadie Torp","age":45,"location":"New Liana"}},{"attributes":{"name":"Lucienne Mraz","age":64,"location":"New Grover"}},{"attributes":{"name":"Faye Senger","age":39,"location":"Nicotown"}},{"attributes":{"name":"Steve Collins","age":57,"location":"Fort Annamarietown"}},{"attributes":{"name":"Jacky Steuber","age":38,"location":"Fort Nikolascester"}},{"attributes":{"name":"Mrs. Lillie Hand","age":42,"location":"Donnellyburgh"}},{"attributes":{"name":"Weldon Brakus","age":44,"location":"Legrosmouth"}},{"attributes":{"name":"Max Schuppe","age":36,"location":"Miami Gardens"}},{"attributes":{"name":"Mrs. Tierra Borer","age":54,"location":"Chicopee"}},{"attributes":{"name":"Cecil Schuster","age":79,"location":"South Carmelotown"}},{"attributes":{"name":"Jeanette Kuhn DDS","age":71,"location":"Henderson"}},{"attributes":{"name":"Constance Koch","age":58,"location":"Lubowitzberg"}},{"attributes":{"name":"Viola Ruecker","age":38,"location":"South Alexa"}},{"attributes":{"name":"Mr. Ken Hand","age":62,"location":"Alexandria"}},{"attributes":{"name":"Tina Klocko","age":49,"location":"Orloview"}},{"attributes":{"name":"Anita Heidenreich","age":62,"location":"South Sageport"}},{"attributes":{"name":"Gordon Cassin","age":67,"location":"Fort Ramiro"}},{"attributes":{"name":"Alyson Weissnat","age":36,"location":"New Bettyemouth"}},{"attributes":{"name":"Phil Cormier","age":68,"location":"Cypress"}},{"attributes":{"name":"Dr. Lysanne Lynch","age":35,"location":"Daughertyfield"}},{"attributes":{"name":"Mr. Betty Kuhn-Klein III","age":24,"location":"Spokane"}},{"attributes":{"name":"Norbert Morar","age":67,"location":"Lake Ericatown"}},{"attributes":{"name":"Dawson Johns","age":49,"location":"East Evan"}},{"attributes":{"name":"Carolanne Daugherty","age":51,"location":"Lake Verla"}},{"attributes":{"name":"Theresia Hilll","age":58,"location":"Ondrickastad"}},{"attributes":{"name":"Victor Cartwright PhD","age":66,"location":"Port Leonardcester"}},{"attributes":{"name":"Jimmie Kerluke","age":25,"location":"Grahamville"}},{"attributes":{"name":"Alyssa Tillman","age":66,"location":"Maggioberg"}},{"attributes":{"name":"Clifton Dietrich","age":49,"location":"Lake Tremaine"}},{"attributes":{"name":"Mr. Natasha Keebler","age":29,"location":"Joannieview"}},{"attributes":{"name":"Joann Turner DDS","age":43,"location":"Lake Leo"}},{"attributes":{"name":"Loren Bogan","age":50,"location":"Borerside"}},{"attributes":{"name":"Dr. Alena Schmidt","age":51,"location":"East Chanceton"}},{"attributes":{"name":"Mr. Luis Donnelly DVM","age":77,"location":"Funkland"}},{"attributes":{"name":"Ross Gorczany","age":32,"location":"Ariellechester"}},{"attributes":{"name":"Leo Kris Sr.","age":43,"location":"Hayward"}},{"attributes":{"name":"Mandy Klocko","age":57,"location":"Macchester"}},{"attributes":{"name":"Helen Parker","age":31,"location":"La Mesa"}},{"attributes":{"name":"Kristy Stark","age":75,"location":"Lake Sheilaboro"}},{"attributes":{"name":"Vera Nolan","age":20,"location":"Arianeborough"}},{"attributes":{"name":"Dr. Zelda Hyatt","age":44,"location":"Fort Jaclyn"}},{"attributes":{"name":"Carmel Gottlieb","age":73,"location":"West Enrico"}},{"attributes":{"name":"Jenna Von","age":19,"location":"Lake Landenshire"}},{"attributes":{"name":"Byron Ondricka","age":55,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Beaulah Batz","age":75,"location":"Lake Mathew"}},{"attributes":{"name":"Jeanie Von","age":21,"location":"Ervinview"}},{"attributes":{"name":"Mr. Serenity Fisher","age":74,"location":"Lake Ridge"}},{"attributes":{"name":"Willie Mosciski","age":31,"location":"Emeliehaven"}},{"attributes":{"name":"Cody Stark","age":29,"location":"New Camilastead"}},{"attributes":{"name":"Taylor Kunde","age":73,"location":"Hilo"}},{"attributes":{"name":"Shari Thompson","age":47,"location":"Treutelbury"}},{"attributes":{"name":"Alysha Koch","age":42,"location":"Hilllborough"}},{"attributes":{"name":"Mrs. Orrin Weimann","age":59,"location":"Trompchester"}},{"attributes":{"name":"Dr. Terrence Crooks","age":34,"location":"North Larryhaven"}},{"attributes":{"name":"Ralph O'Kon","age":58,"location":"Fort Ardella"}},{"attributes":{"name":"Leonard Hackett","age":29,"location":"Fadelfort"}},{"attributes":{"name":"Christina Mitchell","age":62,"location":"Frederick"}},{"attributes":{"name":"Benny Rolfson","age":43,"location":"South Emilio"}},{"attributes":{"name":"Roderick Nader","age":66,"location":"Conway"}},{"attributes":{"name":"Caleb Cruickshank","age":26,"location":"Tevinboro"}},{"attributes":{"name":"Fernando MacGyver","age":71,"location":"North Yoshikofort"}},{"attributes":{"name":"Hector Bosco","age":52,"location":"Odessa"}},{"attributes":{"name":"Annie Kuvalis","age":79,"location":"Waukegan"}},{"attributes":{"name":"Mrs. Tyrese Emard","age":36,"location":"New Jaylonchester"}},{"attributes":{"name":"Hattie Mosciski","age":61,"location":"Dibbertshire"}},{"attributes":{"name":"Sylvester Jones","age":46,"location":"Lewiston"}},{"attributes":{"name":"Cristina Ortiz","age":20,"location":"Lake Yesseniaborough"}},{"attributes":{"name":"Alysson Konopelski IV","age":32,"location":"Denver"}},{"attributes":{"name":"Maurice Witting","age":43,"location":"Wolffboro"}},{"attributes":{"name":"Eileen Bosco","age":51,"location":"South Richie"}},{"attributes":{"name":"Angelica Harris V","age":45,"location":"Jacquesside"}},{"attributes":{"name":"Lori Runolfsson III","age":40,"location":"Stephanworth"}},{"attributes":{"name":"Jesse Hills","age":28,"location":"West Dulce"}},{"attributes":{"name":"Dr. Eleanora Hills","age":60,"location":"Carson"}},{"attributes":{"name":"Ms. Bianka Ward","age":53,"location":"Lake Kalestead"}},{"attributes":{"name":"Mark Goldner","age":60,"location":"Tacoma"}},{"attributes":{"name":"Jonathon Gottlieb","age":59,"location":"Venaboro"}},{"attributes":{"name":"Layne Hahn","age":70,"location":"Ellicott City"}},{"attributes":{"name":"Claudia Feest","age":38,"location":"Evertfield"}},{"attributes":{"name":"Andy Brakus","age":58,"location":"Deborahfort"}},{"attributes":{"name":"Maureen Parisian PhD","age":28,"location":"Heloiseworth"}},{"attributes":{"name":"Terrance Hammes","age":36,"location":"Franklin"}},{"attributes":{"name":"Romaine Rath","age":67,"location":"Lake Omarifort"}},{"attributes":{"name":"Francisco Hagenes","age":29,"location":"Towson"}},{"attributes":{"name":"Dianna Schiller","age":58,"location":"Fort Stanleyshire"}},{"attributes":{"name":"Mrs. Christina Feest","age":69,"location":"Dominicfurt"}},{"attributes":{"name":"Mr. Lolita Larkin I","age":46,"location":"East Cortezborough"}},{"attributes":{"name":"Dakota Armstrong","age":74,"location":"Southaven"}},{"attributes":{"name":"Bonnie Shields II","age":38,"location":"Port Dorthymouth"}},{"attributes":{"name":"Amie Schaefer","age":63,"location":"Port Omaside"}},{"attributes":{"name":"Cecilia Dare","age":30,"location":"Townefield"}},{"attributes":{"name":"Annette Keebler","age":26,"location":"West Chandlermouth"}},{"attributes":{"name":"Sherry Wintheiser","age":66,"location":"Palm Desert"}},{"attributes":{"name":"Donna Predovic","age":19,"location":"Lake Jon"}},{"attributes":{"name":"Lucy Turcotte-Bartell","age":38,"location":"Lemuelberg"}},{"attributes":{"name":"Winston Dickens","age":61,"location":"Wandaview"}},{"attributes":{"name":"Kali Reichel","age":37,"location":"South Antonia"}},{"attributes":{"name":"Courtney Reilly","age":41,"location":"Meriden"}},{"attributes":{"name":"Dedric Lind I","age":76,"location":"Mosciskiview"}},{"attributes":{"name":"Jessie Graham","age":66,"location":"Port Linwoodstad"}},{"attributes":{"name":"Quinn Hudson","age":65,"location":"DuBuquefield"}},{"attributes":{"name":"Randall Zboncak","age":41,"location":"Bonita Springs"}},{"attributes":{"name":"Lester Walsh","age":58,"location":"Dixieberg"}},{"attributes":{"name":"Leilani Bode","age":28,"location":"Connellyhaven"}},{"attributes":{"name":"Fredrick Turner","age":47,"location":"Fort Kylee"}},{"attributes":{"name":"Yvonne Koch","age":23,"location":"New Nicklaus"}},{"attributes":{"name":"Brain McCullough","age":54,"location":"North Julianville"}},{"attributes":{"name":"Terence Wuckert DVM","age":62,"location":"Olympia"}},{"attributes":{"name":"Michael Lindgren","age":51,"location":"Russelstad"}},{"attributes":{"name":"Omari Schroeder","age":37,"location":"Sunnyvale"}},{"attributes":{"name":"Courtney Tromp","age":37,"location":"Fort Ephraim"}},{"attributes":{"name":"Corine Herzog","age":69,"location":"Brennonport"}},{"attributes":{"name":"Lora Smitham-Ryan","age":74,"location":"Murazikbury"}},{"attributes":{"name":"Tasha Denesik","age":47,"location":"Cerritos"}},{"attributes":{"name":"Wilmer Swaniawski","age":25,"location":"New Isobel"}},{"attributes":{"name":"Kenny Borer V","age":34,"location":"Hamillmouth"}},{"attributes":{"name":"Zakary Bailey","age":55,"location":"Port Halfurt"}},{"attributes":{"name":"Alfonso O'Keefe","age":44,"location":"Lake Richardton"}},{"attributes":{"name":"Luz Orn","age":26,"location":"Hanetown"}},{"attributes":{"name":"Rufus Kerluke","age":61,"location":"Paulport"}},{"attributes":{"name":"Yvonne Mraz Jr.","age":59,"location":"West Dana"}},{"attributes":{"name":"Arturo Cormier III","age":75,"location":"South San Francisco"}},{"attributes":{"name":"Lela Lang","age":79,"location":"East Maribelville"}},{"attributes":{"name":"Antonia Goldner","age":45,"location":"Lewisburgh"}},{"attributes":{"name":"Lorenz Willms","age":27,"location":"Greensboro"}},{"attributes":{"name":"Christopher Bahringer","age":67,"location":"Fort Herminioside"}},{"attributes":{"name":"Florence Hamill","age":23,"location":"West Mylesberg"}},{"attributes":{"name":"Lucas Veum","age":78,"location":"Fort Kasandrastad"}},{"attributes":{"name":"Mr. Lexus Brown","age":51,"location":"New Olin"}},{"attributes":{"name":"Troy Schulist-Thompson","age":20,"location":"Nedrashire"}},{"attributes":{"name":"Meaghan Crist","age":32,"location":"Lake Patience"}},{"attributes":{"name":"Dr. Cory Nienow","age":60,"location":"El Dorado Hills"}},{"attributes":{"name":"Angelina Auer","age":42,"location":"North Reynoldtown"}},{"attributes":{"name":"Breanne Nitzsche","age":48,"location":"Carlsbad"}},{"attributes":{"name":"Anastacio Luettgen I","age":38,"location":"West Alvahbury"}},{"attributes":{"name":"Rebeka Farrell","age":55,"location":"Josefaland"}},{"attributes":{"name":"Jeanne Stiedemann","age":77,"location":"Rochester Hills"}},{"attributes":{"name":"Malcolm Cassin","age":42,"location":"Tarastad"}},{"attributes":{"name":"Christop Witting MD","age":64,"location":"Koelpinboro"}},{"attributes":{"name":"Dr. Lisandro O'Keefe","age":40,"location":"New Angelina"}},{"attributes":{"name":"Dustin Bechtelar","age":76,"location":"Ratkefield"}},{"attributes":{"name":"Elroy Dickinson","age":68,"location":"Jeffersonville"}},{"attributes":{"name":"Osbaldo Gulgowski","age":45,"location":"Labadieland"}},{"attributes":{"name":"Danika Renner","age":55,"location":"Wadeland"}},{"attributes":{"name":"Alanna Sawayn","age":73,"location":"Runolfssonfield"}},{"attributes":{"name":"Maureen Mann","age":70,"location":"New Delphia"}},{"attributes":{"name":"Prince Mante","age":30,"location":"South Tyrel"}},{"attributes":{"name":"Theodore Friesen","age":41,"location":"Gulgowskicester"}},{"attributes":{"name":"Carroll Hessel","age":57,"location":"Thurmanview"}},{"attributes":{"name":"Bridgette Weber","age":27,"location":"Alyciafurt"}},{"attributes":{"name":"Ed Glover","age":77,"location":"Carolynton"}},{"attributes":{"name":"Tess Heaney","age":76,"location":"Graciestead"}},{"attributes":{"name":"Marcella Collier","age":57,"location":"North Vernontown"}},{"attributes":{"name":"Desiree Trantow","age":66,"location":"Clovis"}},{"attributes":{"name":"Esperanza Purdy","age":23,"location":"West Arnefort"}},{"attributes":{"name":"Dr. Ezra Towne","age":41,"location":"Vickiestead"}},{"attributes":{"name":"Keon Franecki","age":63,"location":"Huntington Park"}},{"attributes":{"name":"Ivan Rowe","age":52,"location":"New Coltenbury"}},{"attributes":{"name":"Diane Keebler","age":56,"location":"MacGyverfield"}},{"attributes":{"name":"Lyle Borer","age":74,"location":"Ortizville"}},{"attributes":{"name":"Paulette Lindgren PhD","age":71,"location":"Fort Quinten"}},{"attributes":{"name":"Trenton Champlin","age":53,"location":"Lake Angelita"}},{"attributes":{"name":"Cynthia White","age":59,"location":"New Reannachester"}},{"attributes":{"name":"Viola DuBuque","age":21,"location":"Vacaville"}},{"attributes":{"name":"Dr. Marcella Murray","age":47,"location":"Port Jewell"}},{"attributes":{"name":"Jaren Toy","age":19,"location":"East Kaleighfurt"}},{"attributes":{"name":"Carole Mann","age":31,"location":"North Benedictfort"}},{"attributes":{"name":"Kelley Keebler","age":65,"location":"Huelsbury"}},{"attributes":{"name":"Lawrence Hodkiewicz III","age":38,"location":"Doylestad"}},{"attributes":{"name":"Mathilde Runte IV","age":18,"location":"Charleston"}},{"attributes":{"name":"Hope Hudson","age":58,"location":"Schultzview"}},{"attributes":{"name":"Bo Satterfield","age":51,"location":"Jacobston"}},{"attributes":{"name":"Violet Klein","age":25,"location":"Warner Robins"}},{"attributes":{"name":"Ms. Geoffrey Brakus","age":32,"location":"Carrollland"}},{"attributes":{"name":"Madilyn Hoppe","age":35,"location":"Tucson"}},{"attributes":{"name":"Madaline Hickle","age":76,"location":"Bayerstad"}},{"attributes":{"name":"Everette Cummerata","age":36,"location":"New Loyceworth"}},{"attributes":{"name":"Terrence Lowe","age":77,"location":"Ratketon"}},{"attributes":{"name":"Bruce Pollich","age":45,"location":"North Favianville"}},{"attributes":{"name":"Bethel Turcotte","age":21,"location":"Lake Fritzcester"}},{"attributes":{"name":"Maud Harris","age":26,"location":"North Judgefurt"}},{"attributes":{"name":"Lexus Spencer DVM","age":45,"location":"Earlinemouth"}},{"attributes":{"name":"Albin Durgan Sr.","age":74,"location":"Lake Emmanuelleborough"}},{"attributes":{"name":"Damon Robel MD","age":53,"location":"Lauriannestead"}},{"attributes":{"name":"Connor Gerlach","age":56,"location":"North Breanneville"}},{"attributes":{"name":"Isac Nolan","age":18,"location":"Worcester"}},{"attributes":{"name":"Miss Abdiel Graham","age":45,"location":"Elvaside"}},{"attributes":{"name":"Jamie Reilly","age":45,"location":"Fort Hassie"}},{"attributes":{"name":"Francis Fahey","age":24,"location":"West Roberta"}},{"attributes":{"name":"Paula Kulas","age":66,"location":"Fort Samarastad"}},{"attributes":{"name":"Yvonne Hayes","age":58,"location":"Pontiac"}},{"attributes":{"name":"Brandi Harris","age":23,"location":"Lake Rosaleeberg"}},{"attributes":{"name":"Petra Boyer","age":73,"location":"Mountain View"}},{"attributes":{"name":"Jeff Connelly II","age":40,"location":"West Kobe"}},{"attributes":{"name":"Renee Skiles","age":49,"location":"New Peter"}},{"attributes":{"name":"Dr. Karl Zulauf","age":33,"location":"Sporerworth"}},{"attributes":{"name":"Isabella Heidenreich","age":19,"location":"Lake Tomasfurt"}},{"attributes":{"name":"Frances Watsica III","age":31,"location":"Port Arthur"}},{"attributes":{"name":"Wanda Grady","age":29,"location":"West Dominic"}},{"attributes":{"name":"Earnest Batz","age":63,"location":"South Rooseveltbury"}},{"attributes":{"name":"Samanta Marquardt PhD","age":44,"location":"Cartwrightstad"}},{"attributes":{"name":"Candice Kshlerin","age":37,"location":"Lebsackfurt"}},{"attributes":{"name":"Lindsey Cronin","age":25,"location":"South Soledad"}},{"attributes":{"name":"Percy Hilpert","age":54,"location":"Effertzborough"}},{"attributes":{"name":"Elvis Flatley","age":67,"location":"Rossfurt"}},{"attributes":{"name":"Perry Kozey-Cronin II","age":43,"location":"North Cullenstad"}},{"attributes":{"name":"Krystel Schmitt I","age":26,"location":"Aleenside"}},{"attributes":{"name":"Miss Bridget Batz","age":34,"location":"Lilianeberg"}},{"attributes":{"name":"Abraham Buckridge","age":28,"location":"Lake Ridge"}},{"attributes":{"name":"Chad Funk","age":48,"location":"Port Trey"}},{"attributes":{"name":"Shany Daniel","age":51,"location":"West Holden"}},{"attributes":{"name":"Nicholas Runolfsdottir","age":23,"location":"Vernfield"}},{"attributes":{"name":"Nick Weber","age":50,"location":"Welchfurt"}},{"attributes":{"name":"Shanel Kuvalis","age":59,"location":"Lake Hadleyshire"}},{"attributes":{"name":"Warren Parker","age":27,"location":"The Villages"}},{"attributes":{"name":"Ivan Ebert","age":67,"location":"Bolingbrook"}},{"attributes":{"name":"Darian Rempel","age":49,"location":"Dickiport"}},{"attributes":{"name":"Della Connelly","age":35,"location":"Priceland"}},{"attributes":{"name":"Lew Daugherty Jr.","age":61,"location":"Stevebury"}},{"attributes":{"name":"Alysha Effertz","age":18,"location":"Schinnerworth"}},{"attributes":{"name":"Shawna Muller","age":75,"location":"North Peytonstad"}},{"attributes":{"name":"Nyasia Grady","age":50,"location":"Coral Springs"}},{"attributes":{"name":"Miss Alice Collier","age":77,"location":"Pfannerstillfort"}},{"attributes":{"name":"Don Miller","age":74,"location":"Jerodtown"}},{"attributes":{"name":"Kelsie Hessel","age":54,"location":"Fort Charityfort"}},{"attributes":{"name":"Lee Reinger","age":38,"location":"Racine"}},{"attributes":{"name":"Richard Jacobs","age":25,"location":"Agustinport"}},{"attributes":{"name":"Ariel Kunde","age":25,"location":"Kristafield"}},{"attributes":{"name":"Dallas Lind","age":76,"location":"Parkertown"}},{"attributes":{"name":"Eliezer Becker","age":60,"location":"Fort Rooseveltbury"}},{"attributes":{"name":"Betty Klein DVM","age":69,"location":"Steubermouth"}},{"attributes":{"name":"Thalia Friesen","age":24,"location":"South Trisha"}},{"attributes":{"name":"Blaze Brekke Sr.","age":54,"location":"North Arturo"}},{"attributes":{"name":"Dave O'Reilly","age":77,"location":"Clydestad"}},{"attributes":{"name":"Travon Hudson","age":75,"location":"Port Yazmin"}},{"attributes":{"name":"Myron Kuhlman","age":28,"location":"Mayerfort"}},{"attributes":{"name":"Mr. Raul Murphy","age":48,"location":"Predovicfort"}},{"attributes":{"name":"Lempi Hodkiewicz","age":18,"location":"North Rosettahaven"}},{"attributes":{"name":"Dallas Upton","age":18,"location":"Adellaboro"}},{"attributes":{"name":"Mrs. Madelyn Kulas","age":34,"location":"Albinhaven"}},{"attributes":{"name":"Georgia Reichel","age":20,"location":"Rathhaven"}},{"attributes":{"name":"Genevieve Schneider","age":44,"location":"Lemkechester"}},{"attributes":{"name":"Amelia Welch","age":27,"location":"East Estelleburgh"}},{"attributes":{"name":"Armando Lebsack","age":64,"location":"East Callieshire"}},{"attributes":{"name":"Ron Waters","age":53,"location":"Nolanside"}},{"attributes":{"name":"Derek Ernser","age":19,"location":"Port Roma"}},{"attributes":{"name":"Cathy Koss PhD","age":74,"location":"South Zackeryville"}},{"attributes":{"name":"Glenn McKenzie","age":60,"location":"Paxtonworth"}},{"attributes":{"name":"Jedidiah Bayer","age":39,"location":"East Aronstad"}},{"attributes":{"name":"Esteban Tillman","age":80,"location":"Beckerborough"}},{"attributes":{"name":"Edna Schaefer","age":73,"location":"Grantstead"}},{"attributes":{"name":"Clark Dickinson","age":70,"location":"Catalina Foothills"}},{"attributes":{"name":"Doug Friesen","age":38,"location":"North Sydnie"}},{"attributes":{"name":"Travis Padberg","age":37,"location":"San Jose"}},{"attributes":{"name":"Gwendolyn Bradtke","age":74,"location":"Port Ameliechester"}},{"attributes":{"name":"Damon Aufderhar","age":41,"location":"Kaitlinstad"}},{"attributes":{"name":"Aileen Kris","age":35,"location":"Jorgebury"}},{"attributes":{"name":"Jennings Franey","age":58,"location":"Trantowburgh"}},{"attributes":{"name":"Myra Jakubowski","age":59,"location":"West Fredericmouth"}},{"attributes":{"name":"Krystal Balistreri","age":57,"location":"Orem"}},{"attributes":{"name":"Dolores Leannon","age":23,"location":"West Modesta"}},{"attributes":{"name":"Ben Pollich-Torphy","age":68,"location":"Catalina Foothills"}},{"attributes":{"name":"Mrs. Della Hettinger-Ruecker","age":24,"location":"Fort Cathryn"}},{"attributes":{"name":"Malvina Stehr","age":66,"location":"Altamonte Springs"}},{"attributes":{"name":"Angel Nolan V","age":71,"location":"East Waldoside"}},{"attributes":{"name":"Francis Stoltenberg","age":33,"location":"West Osborne"}},{"attributes":{"name":"Reagan Schaden","age":33,"location":"Fort Jazlyn"}},{"attributes":{"name":"Geoffrey Stanton","age":35,"location":"Emilfield"}},{"attributes":{"name":"Liam Heathcote","age":33,"location":"Hirthechester"}},{"attributes":{"name":"Jessie Gulgowski","age":30,"location":"West Gillianfort"}},{"attributes":{"name":"Ms. Mamie Harris","age":39,"location":"Tobinfort"}},{"attributes":{"name":"Elta Roberts","age":22,"location":"Alberthabury"}},{"attributes":{"name":"Jody Waters","age":37,"location":"Tampa"}},{"attributes":{"name":"Keith Feest","age":38,"location":"Bothell"}},{"attributes":{"name":"Myrtice Rau","age":57,"location":"Port Aliza"}},{"attributes":{"name":"Lura Graham","age":38,"location":"North Octaviaton"}},{"attributes":{"name":"Phillip Walter","age":20,"location":"North Jedfield"}},{"attributes":{"name":"Ona Cormier","age":25,"location":"South Jake"}},{"attributes":{"name":"Eugenia Braun","age":59,"location":"Turnerfort"}},{"attributes":{"name":"Tamara Sawayn","age":34,"location":"Carson"}},{"attributes":{"name":"Lela Koelpin","age":44,"location":"Lake Pattie"}},{"attributes":{"name":"Kaia Kassulke","age":59,"location":"Brandtstad"}},{"attributes":{"name":"Willard Schaden-Schulist","age":43,"location":"Greenville"}},{"attributes":{"name":"Mrs. Miranda Dooley","age":27,"location":"East Jordifort"}},{"attributes":{"name":"Mr. Sam Bruen","age":18,"location":"New Christown"}},{"attributes":{"name":"Raquel Morar","age":47,"location":"Bernhardborough"}},{"attributes":{"name":"Lowell Sanford","age":72,"location":"Fort Frankfurt"}},{"attributes":{"name":"Doyle Howell","age":26,"location":"Binscester"}},{"attributes":{"name":"Christine Hauck","age":59,"location":"Port Myrtisstead"}},{"attributes":{"name":"Aida Gutmann","age":28,"location":"Salinas"}},{"attributes":{"name":"Miss Brooke O'Reilly","age":57,"location":"North Monty"}},{"attributes":{"name":"Ellis Robel","age":69,"location":"Rosenbaumburgh"}},{"attributes":{"name":"Ayla Swift-Lesch","age":51,"location":"Roobton"}},{"attributes":{"name":"Aliza Langosh","age":27,"location":"Fort Anabelbury"}},{"attributes":{"name":"Melba Morissette","age":43,"location":"Buckridgechester"}},{"attributes":{"name":"Miss Jocelyn McDermott","age":36,"location":"East Aaronhaven"}},{"attributes":{"name":"Mr. Abel Jerde","age":24,"location":"Fort Adolf"}},{"attributes":{"name":"Kristie Strosin PhD","age":43,"location":"Redondo Beach"}},{"attributes":{"name":"Marta Cartwright","age":80,"location":"West Stewart"}},{"attributes":{"name":"Orval Boehm","age":41,"location":"Kuhlmancester"}},{"attributes":{"name":"Vivian Volkman","age":62,"location":"Thoramouth"}},{"attributes":{"name":"Delores Kovacek I","age":36,"location":"Galveston"}},{"attributes":{"name":"Irving Zemlak DDS","age":27,"location":"Vacaville"}},{"attributes":{"name":"Ms. Zachery Bruen","age":52,"location":"South Milantown"}},{"attributes":{"name":"Margarita Muller-Powlowski","age":53,"location":"Noehaven"}},{"attributes":{"name":"Rhiannon Lang DVM","age":41,"location":"Jenkinsland"}},{"attributes":{"name":"Joanny Schultz","age":22,"location":"East Marquesboro"}},{"attributes":{"name":"Vern Fay","age":27,"location":"West Ursulaworth"}},{"attributes":{"name":"Minerva Lehner","age":64,"location":"East Vincentborough"}},{"attributes":{"name":"Essie Durgan","age":32,"location":"Bradtketown"}},{"attributes":{"name":"Mr. Manley Fisher","age":54,"location":"Nolanview"}},{"attributes":{"name":"Rae Hoeger","age":53,"location":"Fort Katelynnshire"}},{"attributes":{"name":"Carlton Leuschke","age":76,"location":"Elisemouth"}},{"attributes":{"name":"Mr. Fredrick Spencer","age":42,"location":"Yvettestad"}},{"attributes":{"name":"Blaze Crooks","age":56,"location":"Corvallis"}},{"attributes":{"name":"Asia Gerlach","age":78,"location":"New Kavon"}},{"attributes":{"name":"Alvis Welch IV","age":28,"location":"Serenaton"}},{"attributes":{"name":"Hassie Conn IV","age":28,"location":"Spokane Valley"}},{"attributes":{"name":"Deion Goyette","age":55,"location":"Goldenland"}},{"attributes":{"name":"Luther Pfeffer","age":32,"location":"Gradystad"}},{"attributes":{"name":"Nancy Brown","age":19,"location":"West Augustahaven"}},{"attributes":{"name":"Rene Bailey","age":55,"location":"Mrazstad"}},{"attributes":{"name":"Erika Howe-Gislason V","age":63,"location":"Shermanshire"}},{"attributes":{"name":"Marguerite Mueller-Wilkinson","age":75,"location":"West Jermainechester"}},{"attributes":{"name":"Stone Buckridge","age":49,"location":"Casperfurt"}},{"attributes":{"name":"Hoyt Cronin","age":74,"location":"Fort Alvis"}},{"attributes":{"name":"Yolanda Feil-Gleichner","age":74,"location":"Streichton"}},{"attributes":{"name":"Clare Welch I","age":38,"location":"Carmelashire"}},{"attributes":{"name":"Evan Beahan","age":45,"location":"Sanfordtown"}},{"attributes":{"name":"Raphael Fay","age":27,"location":"New Stuartville"}},{"attributes":{"name":"Trisha Stehr","age":69,"location":"East Tara"}},{"attributes":{"name":"Sergio Gusikowski","age":53,"location":"Dereckworth"}},{"attributes":{"name":"Fernando Stark IV","age":70,"location":"Kutchbury"}},{"attributes":{"name":"Lena Daniel","age":56,"location":"Temple"}},{"attributes":{"name":"Haylee Hills","age":57,"location":"Port Clarabelleburgh"}},{"attributes":{"name":"Jessie Borer","age":57,"location":"Port Maymieboro"}},{"attributes":{"name":"Muhammad Heller","age":36,"location":"Fort Neoma"}},{"attributes":{"name":"Aaron Lueilwitz","age":30,"location":"Fort Laylaland"}},{"attributes":{"name":"Edyth Schultz","age":71,"location":"South Chelseachester"}},{"attributes":{"name":"Mr. Bradford Toy","age":57,"location":"New Ivoryfield"}},{"attributes":{"name":"Randi Gerlach V","age":75,"location":"Fort Raymond"}},{"attributes":{"name":"Hugh Collins","age":77,"location":"Haleyshire"}},{"attributes":{"name":"Mr. Timmothy Frami PhD","age":29,"location":"Hirtheburgh"}},{"attributes":{"name":"Bridget Mills","age":70,"location":"Floville"}},{"attributes":{"name":"Mr. Eldred Kessler","age":50,"location":"Madera"}},{"attributes":{"name":"Guadalupe Fadel","age":70,"location":"Eddview"}},{"attributes":{"name":"Miss Reid Padberg","age":40,"location":"Sheilafield"}},{"attributes":{"name":"Ida Schuppe DVM","age":49,"location":"South Rubiehaven"}},{"attributes":{"name":"Mrs. Kelley Bogan","age":24,"location":"Reston"}},{"attributes":{"name":"Cielo Schinner-Schamberger","age":19,"location":"Bufordfort"}},{"attributes":{"name":"Beatrice Will-Cole","age":42,"location":"Fort Miracle"}},{"attributes":{"name":"Nico Streich","age":29,"location":"Larkinworth"}},{"attributes":{"name":"Doyle Windler","age":21,"location":"South Zulahaven"}},{"attributes":{"name":"Rylan Balistreri I","age":63,"location":"Cronaberg"}},{"attributes":{"name":"Alison Ondricka","age":25,"location":"West Lyric"}},{"attributes":{"name":"Dr. Taylor Ondricka","age":26,"location":"Faystead"}},{"attributes":{"name":"Pearl O'Connell","age":32,"location":"Reannastead"}},{"attributes":{"name":"Zachary Sipes","age":50,"location":"Roweborough"}},{"attributes":{"name":"Toy Herman MD","age":42,"location":"Lake Ferminton"}},{"attributes":{"name":"Floyd Raynor","age":23,"location":"Amycester"}},{"attributes":{"name":"Dortha Feest","age":37,"location":"Fort Shaynefurt"}},{"attributes":{"name":"Angeline Hane","age":40,"location":"North Ryleebury"}},{"attributes":{"name":"Angel Franey","age":56,"location":"Dayton"}},{"attributes":{"name":"Monica Walter-Monahan","age":65,"location":"McKenziecester"}},{"attributes":{"name":"Dr. Hector Streich","age":19,"location":"North Floydberg"}},{"attributes":{"name":"Miss Vesta Konopelski II","age":33,"location":"South Evanfort"}},{"attributes":{"name":"Edward Nienow","age":29,"location":"East Kirk"}},{"attributes":{"name":"Beth Pfannerstill","age":35,"location":"Robelburgh"}},{"attributes":{"name":"Virgie O'Kon IV","age":37,"location":"Bartellbury"}},{"attributes":{"name":"Colleen Wilkinson","age":21,"location":"Lindcester"}},{"attributes":{"name":"Brooklyn Heaney","age":76,"location":"Summerville"}},{"attributes":{"name":"Geraldine Emard","age":71,"location":"Schusterville"}},{"attributes":{"name":"Maci Runolfsdottir","age":26,"location":"Neldaville"}},{"attributes":{"name":"Dominic Towne","age":39,"location":"Jarrodbury"}},{"attributes":{"name":"Floy Kuvalis","age":76,"location":"Lake Orland"}},{"attributes":{"name":"Joseph Schneider","age":27,"location":"Harrisland"}},{"attributes":{"name":"Tracy Marquardt III","age":40,"location":"Fort Presleyburgh"}},{"attributes":{"name":"Kale O'Conner","age":77,"location":"Victorville"}},{"attributes":{"name":"Mr. Bryan Barrows","age":40,"location":"North Nathanialton"}},{"attributes":{"name":"Rick Leuschke","age":19,"location":"Welchtown"}},{"attributes":{"name":"Saul Bernier","age":31,"location":"West Ignaciomouth"}},{"attributes":{"name":"Alexandra Hills","age":69,"location":"Port Jarod"}},{"attributes":{"name":"Alvah Hansen","age":45,"location":"Abbottworth"}},{"attributes":{"name":"Susan Zboncak","age":25,"location":"South Joshua"}},{"attributes":{"name":"Amy Waelchi","age":66,"location":"North Kaydenfield"}},{"attributes":{"name":"Edwin Orn","age":71,"location":"Stokesstead"}},{"attributes":{"name":"Jim Mohr","age":65,"location":"Murazikton"}},{"attributes":{"name":"Roberto Schumm","age":58,"location":"Lake Deontae"}},{"attributes":{"name":"Mrs. Oliver Gottlieb","age":76,"location":"West Eldredborough"}},{"attributes":{"name":"Donald Marks","age":40,"location":"Fort Emiliahaven"}},{"attributes":{"name":"Courtney Wintheiser","age":25,"location":"South Rachel"}},{"attributes":{"name":"Tanya Ortiz","age":21,"location":"North Vernfield"}},{"attributes":{"name":"Leopoldo Keebler","age":29,"location":"Palm Springs"}},{"attributes":{"name":"Aimee Hartmann","age":67,"location":"West John"}},{"attributes":{"name":"Winston Goodwin","age":45,"location":"Framingham"}},{"attributes":{"name":"Wendy Ernser","age":36,"location":"New Araceli"}},{"attributes":{"name":"Jorge Marks","age":41,"location":"South Grayce"}},{"attributes":{"name":"Harold McCullough I","age":22,"location":"South Elmore"}},{"attributes":{"name":"Dexter Cassin-Casper","age":22,"location":"Hahncester"}},{"attributes":{"name":"Johnathan Swaniawski","age":37,"location":"Decatur"}},{"attributes":{"name":"Elmo Schuppe","age":50,"location":"Port Nadia"}},{"attributes":{"name":"Peggy Jacobson","age":28,"location":"Port Jennyfer"}},{"attributes":{"name":"Claudia Ankunding","age":43,"location":"Fort Grant"}},{"attributes":{"name":"Dexter Abernathy","age":26,"location":"New Marques"}},{"attributes":{"name":"Rosa Pagac I","age":23,"location":"Edina"}},{"attributes":{"name":"Dianne Baumbach-Klein","age":47,"location":"Xavierside"}},{"attributes":{"name":"Aaliyah Cruickshank","age":31,"location":"Haleyshire"}},{"attributes":{"name":"Llewellyn Roberts-Rempel","age":49,"location":"North Meredith"}},{"attributes":{"name":"Erin Bergstrom","age":23,"location":"Aimeeshire"}},{"attributes":{"name":"Doug Ullrich","age":56,"location":"Troy"}},{"attributes":{"name":"Serenity Hills MD","age":41,"location":"Marquisebury"}},{"attributes":{"name":"Mr. Terence Cremin","age":36,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Cassandra Senger","age":46,"location":"West Felipastead"}},{"attributes":{"name":"Evan Dach","age":43,"location":"O'Fallon"}},{"attributes":{"name":"Rogelio Gislason","age":46,"location":"West Nicholaus"}},{"attributes":{"name":"Casey Gottlieb","age":79,"location":"Eulahhaven"}},{"attributes":{"name":"Glenda Schmeler IV","age":49,"location":"South Theron"}},{"attributes":{"name":"Gertrude Miller","age":65,"location":"Malloryhaven"}},{"attributes":{"name":"Mr. Louis Considine","age":28,"location":"Cormierbury"}},{"attributes":{"name":"Wendy Jaskolski","age":23,"location":"East Lulaside"}},{"attributes":{"name":"Kody Haag-Jones","age":20,"location":"Ann Arbor"}},{"attributes":{"name":"Adam Hegmann MD","age":52,"location":"South Alfordfort"}},{"attributes":{"name":"Maximo Nader","age":29,"location":"Ricebury"}},{"attributes":{"name":"Terry Breitenberg","age":29,"location":"South Fanniehaven"}},{"attributes":{"name":"Stanley Nitzsche","age":21,"location":"West Nettieville"}},{"attributes":{"name":"Mrs. Martine Botsford","age":60,"location":"Tamiaton"}},{"attributes":{"name":"Leonora McCullough-Schinner","age":68,"location":"Wisokyshire"}},{"attributes":{"name":"Sylvia Kohler","age":40,"location":"Sanfordport"}},{"attributes":{"name":"Theo Ward","age":73,"location":"Willmsfield"}},{"attributes":{"name":"Marcelo Bayer","age":67,"location":"Legrostown"}},{"attributes":{"name":"Jody Thompson-Hagenes","age":49,"location":"Fort Herminamouth"}},{"attributes":{"name":"Darrin Hoppe","age":76,"location":"Treutelhaven"}},{"attributes":{"name":"Lloyd Cole","age":57,"location":"West Annabellcester"}},{"attributes":{"name":"Rosalind Boyer","age":34,"location":"Lake Sunny"}},{"attributes":{"name":"Mrs. Josie Leannon","age":52,"location":"Eddberg"}},{"attributes":{"name":"Renee Cruickshank","age":44,"location":"Lydaboro"}},{"attributes":{"name":"Ben Bartoletti","age":78,"location":"Hanechester"}},{"attributes":{"name":"Akeem Stehr","age":48,"location":"East Jenniferhaven"}},{"attributes":{"name":"Reginald Mayert","age":39,"location":"North Arlofort"}},{"attributes":{"name":"Wendy Rolfson","age":58,"location":"Lindsayport"}},{"attributes":{"name":"Ernestina Kirlin","age":23,"location":"Irvine"}},{"attributes":{"name":"Oma Daniel-Hegmann","age":73,"location":"Royalworth"}},{"attributes":{"name":"Gabriel Stanton","age":55,"location":"North Derrickstad"}},{"attributes":{"name":"Mrs. Margarett Tromp-Mante","age":43,"location":"Lake Elenora"}},{"attributes":{"name":"Shelly Homenick Jr.","age":77,"location":"Indio"}},{"attributes":{"name":"Kaylah Stehr","age":34,"location":"Duluth"}},{"attributes":{"name":"Phillip Johnston","age":33,"location":"West Verdie"}},{"attributes":{"name":"Jim O'Kon-Prosacco","age":47,"location":"Lake Eviefort"}},{"attributes":{"name":"Juanita Bernhard","age":52,"location":"Kautzermouth"}},{"attributes":{"name":"Blake Doyle","age":65,"location":"Dallinberg"}},{"attributes":{"name":"Jennifer Runolfsdottir","age":60,"location":"Moenside"}},{"attributes":{"name":"Monique Yost","age":29,"location":"Durwardborough"}},{"attributes":{"name":"Jordan Hegmann","age":26,"location":"Fort Magnoliafort"}},{"attributes":{"name":"Louise Huels","age":42,"location":"Port Cristopherborough"}},{"attributes":{"name":"Ramiro Bechtelar","age":43,"location":"Lake Lerafurt"}},{"attributes":{"name":"Max Cummings II","age":62,"location":"Labadieland"}},{"attributes":{"name":"Kerry Lockman","age":18,"location":"New Omari"}},{"attributes":{"name":"Wendy Sanford","age":25,"location":"Wisokyside"}},{"attributes":{"name":"Erik Hegmann I","age":41,"location":"Haltown"}},{"attributes":{"name":"Ollie Howe","age":59,"location":"North Prudence"}},{"attributes":{"name":"Douglas O'Keefe IV","age":21,"location":"Funkborough"}},{"attributes":{"name":"Rosemarie Brekke","age":57,"location":"St. Paul"}},{"attributes":{"name":"Ambrose Brown","age":68,"location":"Pfannerstillshire"}},{"attributes":{"name":"Marcia Wolf","age":69,"location":"Carson City"}},{"attributes":{"name":"Ismael Schamberger","age":68,"location":"East Cordiefort"}},{"attributes":{"name":"Vernie Maggio","age":71,"location":"East Dionside"}},{"attributes":{"name":"Dr. Timmy Kozey","age":19,"location":"Lake Antwoncester"}},{"attributes":{"name":"Dr. Nelson Franecki-Lynch","age":50,"location":"Asaview"}},{"attributes":{"name":"Nathan Koelpin","age":62,"location":"Saraimouth"}},{"attributes":{"name":"Ruben Reichel","age":18,"location":"Caleview"}},{"attributes":{"name":"Candace Roob","age":49,"location":"Finnboro"}},{"attributes":{"name":"Robb Reichert","age":23,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Milton Prosacco","age":20,"location":"Riverview"}},{"attributes":{"name":"Jaime Frami","age":70,"location":"Lynn"}},{"attributes":{"name":"Nicholas O'Reilly Jr.","age":60,"location":"Lake Lloydtown"}},{"attributes":{"name":"Cedric Kub","age":25,"location":"North Dorthy"}},{"attributes":{"name":"Wade Streich","age":42,"location":"North Javier"}},{"attributes":{"name":"Vincent Mueller","age":73,"location":"Crookschester"}},{"attributes":{"name":"Dr. Stanford Weimann","age":42,"location":"Dayton"}},{"attributes":{"name":"Percy Fisher","age":52,"location":"Port Fabiola"}},{"attributes":{"name":"Lennie Simonis","age":34,"location":"East Leilani"}},{"attributes":{"name":"Edwin Greenfelder","age":40,"location":"O'Connerboro"}},{"attributes":{"name":"Nick Ondricka","age":53,"location":"South Nyahfort"}},{"attributes":{"name":"Adrienne Cassin","age":65,"location":"Pearlfort"}},{"attributes":{"name":"Mr. Tom Kub","age":25,"location":"San Mateo"}},{"attributes":{"name":"Oliver Ullrich","age":74,"location":"Hersheltown"}},{"attributes":{"name":"Hildegard Kuhn","age":48,"location":"Fort Kendall"}},{"attributes":{"name":"Coy Bogisich","age":33,"location":"Elinorecester"}},{"attributes":{"name":"Finn Towne","age":25,"location":"South Moshechester"}},{"attributes":{"name":"Lorenza Douglas","age":39,"location":"Salt Lake City"}},{"attributes":{"name":"Pam Erdman","age":18,"location":"Eunacester"}},{"attributes":{"name":"Devin Konopelski","age":40,"location":"Lake Percivalburgh"}},{"attributes":{"name":"Debbie Sanford","age":68,"location":"Erdmanstad"}},{"attributes":{"name":"Cesar Powlowski","age":22,"location":"Placentia"}},{"attributes":{"name":"Grayce Cole-Ritchie","age":73,"location":"Macejkovicshire"}},{"attributes":{"name":"Courtney Walker","age":20,"location":"Dietrichstad"}},{"attributes":{"name":"Tony Barton","age":38,"location":"Kovacekfort"}},{"attributes":{"name":"Willis Nolan","age":31,"location":"Bayerland"}},{"attributes":{"name":"Aglae Muller","age":22,"location":"Moenmouth"}},{"attributes":{"name":"Melvin Huel","age":69,"location":"Waltershire"}},{"attributes":{"name":"Lester Lemke","age":21,"location":"Wintheiserstad"}},{"attributes":{"name":"Franz Steuber","age":60,"location":"Nitzscheville"}},{"attributes":{"name":"Dr. Nicholas Gerlach","age":19,"location":"Caterinaboro"}},{"attributes":{"name":"Josefina Marquardt","age":72,"location":"New Sammietown"}},{"attributes":{"name":"Clark Schaden","age":37,"location":"Rogahnborough"}},{"attributes":{"name":"Everardo Friesen","age":37,"location":"South Bend"}},{"attributes":{"name":"Anabel Harber","age":70,"location":"New Kendraberg"}},{"attributes":{"name":"Mrs. Oceane Kihn II","age":23,"location":"Bradenton"}},{"attributes":{"name":"Miss Clifford Langworth","age":19,"location":"Rathview"}},{"attributes":{"name":"Marie Roberts","age":71,"location":"West Lanecester"}},{"attributes":{"name":"Meggie Reinger","age":65,"location":"Port St. Lucie"}},{"attributes":{"name":"Mauricio Hermann IV","age":57,"location":"Oscarborough"}},{"attributes":{"name":"Nelson Price","age":26,"location":"Violetfort"}},{"attributes":{"name":"Orpha Mitchell","age":24,"location":"Coconut Creek"}},{"attributes":{"name":"Tony Huel","age":67,"location":"Abilene"}},{"attributes":{"name":"Rene Tremblay","age":66,"location":"New Leola"}},{"attributes":{"name":"Bonnie Fisher","age":62,"location":"Bernhardboro"}},{"attributes":{"name":"Colin Glover","age":66,"location":"Fort Shyann"}},{"attributes":{"name":"Earnest Hermann Sr.","age":63,"location":"Schoenstad"}},{"attributes":{"name":"Audreanne Huels","age":30,"location":"North Norvalmouth"}},{"attributes":{"name":"Nathaniel Moore","age":23,"location":"South Jordan"}},{"attributes":{"name":"Elisa Roob","age":38,"location":"Janaeland"}},{"attributes":{"name":"Fern Rowe","age":29,"location":"Twin Falls"}},{"attributes":{"name":"Sigurd Lehner","age":25,"location":"Schusterchester"}},{"attributes":{"name":"Laura Bins","age":64,"location":"East Destineeshire"}},{"attributes":{"name":"Muriel Braun","age":60,"location":"North Malvina"}},{"attributes":{"name":"Mitchell Daugherty","age":61,"location":"Port Sanford"}},{"attributes":{"name":"Robin Gleichner","age":75,"location":"Samirville"}},{"attributes":{"name":"Alberto Bins-Koepp PhD","age":47,"location":"Murphyland"}},{"attributes":{"name":"Hope Friesen","age":41,"location":"Chaddfield"}},{"attributes":{"name":"Caleb Walsh","age":18,"location":"Lake Violettefort"}},{"attributes":{"name":"Darian Hand","age":32,"location":"Runolfssonstead"}},{"attributes":{"name":"Della Jakubowski","age":63,"location":"Hegmannstad"}},{"attributes":{"name":"Miss Shannon Braun","age":61,"location":"New Liamshire"}},{"attributes":{"name":"Theresa Schulist","age":19,"location":"Port Beaulah"}},{"attributes":{"name":"Desiree Hamill","age":42,"location":"Cartermouth"}},{"attributes":{"name":"Rochelle Flatley","age":60,"location":"Tinley Park"}},{"attributes":{"name":"Wallace Littel","age":41,"location":"Larkintown"}},{"attributes":{"name":"Alec Howe","age":49,"location":"Jeromehaven"}},{"attributes":{"name":"Ms. Mike Block-Howell","age":20,"location":"San Marcos"}},{"attributes":{"name":"America Jaskolski","age":64,"location":"Elbertstead"}},{"attributes":{"name":"Jamie Senger","age":72,"location":"Fort Theostead"}},{"attributes":{"name":"Colleen Dickens","age":30,"location":"East Alessiacester"}},{"attributes":{"name":"Madalyn Hahn","age":75,"location":"Joannyfort"}},{"attributes":{"name":"Jess Runolfsdottir","age":44,"location":"Pouroscester"}},{"attributes":{"name":"Chauncey Ondricka V","age":55,"location":"Allychester"}},{"attributes":{"name":"Ciara Labadie","age":43,"location":"East Reginald"}},{"attributes":{"name":"Kasandra Purdy","age":35,"location":"Deionstead"}},{"attributes":{"name":"Nancy Waelchi","age":80,"location":"Aleenton"}},{"attributes":{"name":"Ellen Brown","age":41,"location":"Dietrichshire"}},{"attributes":{"name":"Alivia Hills PhD","age":58,"location":"Nolantown"}},{"attributes":{"name":"Michael Hahn","age":38,"location":"Lednerworth"}},{"attributes":{"name":"Rocio Romaguera","age":26,"location":"Lake Christyton"}},{"attributes":{"name":"Melinda Cole","age":50,"location":"Mountain View"}},{"attributes":{"name":"Dr. Leo Reinger PhD","age":29,"location":"South Deliaview"}},{"attributes":{"name":"Neil Gutmann","age":54,"location":"Lake Marilyne"}},{"attributes":{"name":"Alyssa Smitham","age":45,"location":"Colton"}},{"attributes":{"name":"Eino Klein-Bechtelar","age":51,"location":"Wiltonstead"}},{"attributes":{"name":"Brendan Streich","age":45,"location":"Janeville"}},{"attributes":{"name":"Gregory Flatley","age":57,"location":"Lake Jovani"}},{"attributes":{"name":"Jermey Rippin","age":55,"location":"Lake Garettborough"}},{"attributes":{"name":"Melvin Braun","age":38,"location":"Mohrborough"}},{"attributes":{"name":"Mrs. Kathleen Crona","age":25,"location":"Lake Doris"}},{"attributes":{"name":"Sarai Barton","age":39,"location":"Mariocester"}},{"attributes":{"name":"Jeremy Gulgowski","age":62,"location":"Howellchester"}},{"attributes":{"name":"Leone Kreiger","age":45,"location":"West Courtney"}},{"attributes":{"name":"Mr. Spencer Wuckert PhD","age":23,"location":"Atascocita"}},{"attributes":{"name":"Mr. Armand Wilkinson PhD","age":25,"location":"Glendale"}},{"attributes":{"name":"Vickie Torphy","age":70,"location":"Crooksfurt"}},{"attributes":{"name":"Annabel Jacobs-D'Amore Jr.","age":47,"location":"Halvorsonstad"}},{"attributes":{"name":"Barton Lang","age":43,"location":"New Shaun"}},{"attributes":{"name":"Mary Pacocha","age":40,"location":"Fayhaven"}},{"attributes":{"name":"Kyle Ratke","age":21,"location":"East Ceciliachester"}},{"attributes":{"name":"Jason Howe","age":40,"location":"New Giovanni"}},{"attributes":{"name":"Elvira Hermann","age":32,"location":"Fort Elysetown"}},{"attributes":{"name":"Kent Wyman MD","age":62,"location":"Vilmaview"}},{"attributes":{"name":"Debbie Frami","age":42,"location":"Millcreek"}},{"attributes":{"name":"Sheila Bergstrom","age":66,"location":"Felixboro"}},{"attributes":{"name":"Eleanore Schaefer","age":20,"location":"Lake Deven"}},{"attributes":{"name":"Betsy Hartmann","age":62,"location":"Lake Lavonne"}},{"attributes":{"name":"Darnell Schuster","age":24,"location":"Chino Hills"}},{"attributes":{"name":"Dr. Dakota Kassulke","age":62,"location":"Fort Hazelton"}},{"attributes":{"name":"Emmie Dach","age":73,"location":"West Tadstead"}},{"attributes":{"name":"Judd Nikolaus","age":27,"location":"San Tan Valley"}},{"attributes":{"name":"Garry Ziemann","age":78,"location":"South Jaylenboro"}},{"attributes":{"name":"Eldred Nader","age":78,"location":"Fort Jaylenburgh"}},{"attributes":{"name":"Otis Keeling","age":54,"location":"Port Timothymouth"}},{"attributes":{"name":"Jeff Denesik DDS","age":72,"location":"Torpchester"}},{"attributes":{"name":"Idella D'Amore I","age":30,"location":"South Dorianfort"}},{"attributes":{"name":"Cletus Schoen","age":25,"location":"Chino"}},{"attributes":{"name":"Beulah Stamm","age":25,"location":"Kendale Lakes"}},{"attributes":{"name":"Allen McLaughlin II","age":66,"location":"South Damianmouth"}},{"attributes":{"name":"Terrell Dare","age":67,"location":"South Allyburgh"}},{"attributes":{"name":"Cathy Witting","age":65,"location":"New Adalberto"}},{"attributes":{"name":"Jordane Schaefer","age":58,"location":"Port Franciscamouth"}},{"attributes":{"name":"Stephania Romaguera","age":19,"location":"Caldwell"}},{"attributes":{"name":"Reagan Buckridge","age":19,"location":"Fort Austenstead"}},{"attributes":{"name":"Alexane Turner","age":37,"location":"New Davin"}},{"attributes":{"name":"Gregory Boyle","age":55,"location":"Bergnaumfurt"}},{"attributes":{"name":"Francis Jones","age":44,"location":"Gusikowskiboro"}},{"attributes":{"name":"Kenya Runte","age":53,"location":"Forrestworth"}},{"attributes":{"name":"Viva Becker","age":20,"location":"Fort Vickiechester"}},{"attributes":{"name":"Leland Hodkiewicz","age":56,"location":"North Leonefurt"}},{"attributes":{"name":"Sonja Raynor","age":58,"location":"Schneiderview"}},{"attributes":{"name":"Irma Sanford","age":80,"location":"Maurinechester"}},{"attributes":{"name":"Pietro Kirlin","age":20,"location":"East Herminioside"}},{"attributes":{"name":"Aliyah Haley","age":70,"location":"East Evafield"}},{"attributes":{"name":"Ms. Clayton Cormier","age":70,"location":"Scottsdale"}},{"attributes":{"name":"Jakob McDermott","age":54,"location":"Priceland"}},{"attributes":{"name":"Lamont Stark","age":43,"location":"Port Monserrat"}},{"attributes":{"name":"Timmothy Toy","age":57,"location":"Dorcaston"}},{"attributes":{"name":"Harry Klocko","age":70,"location":"Waipahu"}},{"attributes":{"name":"Gregory Gerhold Sr.","age":56,"location":"Mertzton"}},{"attributes":{"name":"Dr. Cierra Thiel III","age":59,"location":"Visalia"}},{"attributes":{"name":"Maritza Hickle MD","age":47,"location":"East Kaylahside"}},{"attributes":{"name":"Marie D'Amore","age":49,"location":"Summerstad"}},{"attributes":{"name":"Nick Emmerich","age":31,"location":"Marcellachester"}},{"attributes":{"name":"Ramiro Aufderhar","age":20,"location":"South Sandy"}},{"attributes":{"name":"Francisca Schultz","age":76,"location":"Fort Alessandra"}},{"attributes":{"name":"Leone Parker","age":21,"location":"East Theron"}},{"attributes":{"name":"Dr. Rudolph Dooley","age":63,"location":"Mishawaka"}},{"attributes":{"name":"Maria Torphy PhD","age":58,"location":"Mariettachester"}},{"attributes":{"name":"Ms. Debbie Hand","age":31,"location":"Daughertymouth"}},{"attributes":{"name":"Rochelle Beatty","age":71,"location":"Beierborough"}},{"attributes":{"name":"Merle Douglas","age":69,"location":"East Maybell"}},{"attributes":{"name":"Dr. Tyra Kemmer-Mueller","age":42,"location":"Lompoc"}},{"attributes":{"name":"Kim Macejkovic","age":58,"location":"Leannonside"}},{"attributes":{"name":"Paula O'Conner","age":38,"location":"West Keyonfield"}},{"attributes":{"name":"Ms. Donnie Quitzon","age":47,"location":"Fisherton"}},{"attributes":{"name":"Ms. Angel Kuhn","age":77,"location":"Kihnstead"}},{"attributes":{"name":"Vern Lindgren DVM","age":48,"location":"Schowalterview"}},{"attributes":{"name":"Jeffery Paucek","age":24,"location":"Farmington Hills"}},{"attributes":{"name":"Haskell Jacobs","age":51,"location":"Fountainebleau"}},{"attributes":{"name":"Myrl Grimes","age":37,"location":"New Xzavier"}},{"attributes":{"name":"Doris Langosh","age":71,"location":"South Anya"}},{"attributes":{"name":"Gloria Abbott","age":29,"location":"East Cleora"}},{"attributes":{"name":"Nora Orn","age":57,"location":"Wardberg"}},{"attributes":{"name":"Ruby Upton","age":45,"location":"Lerafort"}},{"attributes":{"name":"Conner Lockman PhD","age":48,"location":"Port Aaronport"}},{"attributes":{"name":"Marcella Walter","age":58,"location":"North Myron"}},{"attributes":{"name":"Henry Rogahn","age":59,"location":"Niagara Falls"}},{"attributes":{"name":"Lera Keebler","age":62,"location":"Southaven"}},{"attributes":{"name":"Lauryn Denesik","age":29,"location":"Casper"}},{"attributes":{"name":"Miriam Bailey","age":37,"location":"Port Adolph"}},{"attributes":{"name":"Mrs. Sonya Zieme","age":50,"location":"Kristafurt"}},{"attributes":{"name":"Mikayla Wolff","age":75,"location":"Ondrickaside"}},{"attributes":{"name":"Neal Kohler II","age":21,"location":"Finnbury"}},{"attributes":{"name":"Hunter Zemlak MD","age":28,"location":"Fort Henriette"}},{"attributes":{"name":"Saul Kerluke","age":72,"location":"Dachside"}},{"attributes":{"name":"Mr. James Klein","age":31,"location":"Dameonburgh"}},{"attributes":{"name":"Christie Christiansen","age":78,"location":"Guillermoboro"}},{"attributes":{"name":"Hazle Prohaska PhD","age":25,"location":"Adamsfurt"}},{"attributes":{"name":"Lora Renner","age":64,"location":"Bel Air South"}},{"attributes":{"name":"Jerel Kuvalis DVM","age":35,"location":"South Bell"}},{"attributes":{"name":"Dr. Rosella Ankunding","age":49,"location":"Jonesboro"}},{"attributes":{"name":"Jenifer Anderson","age":54,"location":"Kalebhaven"}},{"attributes":{"name":"Maxine Walsh","age":21,"location":"Vacaville"}},{"attributes":{"name":"Wm Leuschke","age":45,"location":"San Ramon"}},{"attributes":{"name":"Tommie Batz","age":40,"location":"Fort Lourdesshire"}},{"attributes":{"name":"Alfredo Batz","age":36,"location":"Grahamtown"}},{"attributes":{"name":"Justin Prosacco","age":65,"location":"Niagara Falls"}},{"attributes":{"name":"Rosalia Zemlak","age":80,"location":"South Shawn"}},{"attributes":{"name":"Margarita Adams","age":48,"location":"New Carey"}},{"attributes":{"name":"Scot Blanda","age":74,"location":"Jeremyworth"}},{"attributes":{"name":"Lura Graham","age":46,"location":"Alannaside"}},{"attributes":{"name":"Nathan Labadie","age":59,"location":"Jessieboro"}},{"attributes":{"name":"Adolfo King","age":52,"location":"Derickland"}},{"attributes":{"name":"Mrs. Sally Pagac","age":61,"location":"Toyview"}},{"attributes":{"name":"April Tillman","age":45,"location":"West Dashawn"}},{"attributes":{"name":"Kaelyn Rolfson DVM","age":57,"location":"Lillatown"}},{"attributes":{"name":"Mireya Prohaska","age":25,"location":"North Miami Beach"}},{"attributes":{"name":"Thomas Parisian DVM","age":58,"location":"Fort Wiltonland"}},{"attributes":{"name":"Betty Lind Jr.","age":75,"location":"St. Louis"}},{"attributes":{"name":"Jan Lebsack","age":35,"location":"Vellastead"}},{"attributes":{"name":"Shawn Waelchi","age":61,"location":"Brycenboro"}},{"attributes":{"name":"Maria Kuhn","age":51,"location":"New Frankieboro"}},{"attributes":{"name":"Sylvester Okuneva","age":57,"location":"Huelboro"}},{"attributes":{"name":"Marianne Howe","age":18,"location":"Dariusborough"}},{"attributes":{"name":"Loyal Price","age":65,"location":"New Arelyton"}},{"attributes":{"name":"Faith Runte","age":49,"location":"Doylefield"}},{"attributes":{"name":"Irma Prosacco","age":20,"location":"Lake Bettye"}},{"attributes":{"name":"Marcus Buckridge","age":31,"location":"South Venachester"}},{"attributes":{"name":"Kamryn Walter","age":78,"location":"Ryanside"}},{"attributes":{"name":"Jany Rutherford","age":49,"location":"Barrowsburgh"}},{"attributes":{"name":"Esmeralda Sipes","age":25,"location":"Pompano Beach"}},{"attributes":{"name":"Paolo Gorczany","age":61,"location":"North Bridie"}},{"attributes":{"name":"Abraham Johnson","age":62,"location":"Maudetown"}},{"attributes":{"name":"Willis Paucek","age":37,"location":"Fort Eltaburgh"}},{"attributes":{"name":"Derrick Windler","age":80,"location":"North Sonnystead"}},{"attributes":{"name":"Elisa Morissette","age":75,"location":"Cleoraborough"}},{"attributes":{"name":"Ken O'Keefe","age":33,"location":"Huelsside"}},{"attributes":{"name":"Mrs. Ashley Cormier","age":24,"location":"Fort Bridgette"}},{"attributes":{"name":"Zachary Beahan","age":38,"location":"Braunstad"}},{"attributes":{"name":"Sara Romaguera-Runolfsson","age":24,"location":"Corkeryburgh"}},{"attributes":{"name":"Emelia Weimann","age":60,"location":"Fort Dorian"}},{"attributes":{"name":"Milo Koch DDS","age":38,"location":"New Romainehaven"}},{"attributes":{"name":"Howard Orn","age":61,"location":"Kentonchester"}},{"attributes":{"name":"Shaun Rodriguez","age":59,"location":"Allen"}},{"attributes":{"name":"Al Quitzon","age":77,"location":"Brownhaven"}},{"attributes":{"name":"Rosalie Mueller PhD","age":32,"location":"Haltom City"}},{"attributes":{"name":"Noel O'Conner","age":25,"location":"Sheboygan"}},{"attributes":{"name":"Dakota Herman","age":79,"location":"North Miami Beach"}},{"attributes":{"name":"Mrs. Jodi Quigley","age":69,"location":"Wilkinsonside"}},{"attributes":{"name":"Connie Prohaska-Murazik","age":26,"location":"Port Hollystad"}},{"attributes":{"name":"Dr. Rafael Effertz","age":52,"location":"Bedford"}},{"attributes":{"name":"Ryann Haag","age":64,"location":"New Minahaven"}},{"attributes":{"name":"Krystal Renner","age":18,"location":"Vandervortfield"}},{"attributes":{"name":"Horace Anderson V","age":42,"location":"West Abeborough"}},{"attributes":{"name":"Julian Sawayn","age":30,"location":"San Diego"}},{"attributes":{"name":"Jacob Schroeder-Sipes","age":62,"location":"Boise City"}},{"attributes":{"name":"Mrs. Alize Hane","age":68,"location":"Seanburgh"}},{"attributes":{"name":"Dr. Alvin Kunde","age":80,"location":"Fort Tremayne"}},{"attributes":{"name":"Morris Kilback","age":68,"location":"Clintshire"}},{"attributes":{"name":"Arthur Hamill","age":74,"location":"Glen Burnie"}},{"attributes":{"name":"Gene Bednar","age":68,"location":"Judgeboro"}},{"attributes":{"name":"Arturo Champlin","age":22,"location":"Towson"}},{"attributes":{"name":"Kerry Bergstrom-Orn","age":49,"location":"East Dedric"}},{"attributes":{"name":"Melinda Luettgen","age":25,"location":"Edina"}},{"attributes":{"name":"Carissa Murazik","age":71,"location":"Mustafachester"}},{"attributes":{"name":"Arlie Weimann","age":47,"location":"North Chet"}},{"attributes":{"name":"Sherri O'Keefe","age":72,"location":"Borerport"}},{"attributes":{"name":"Susana Wolff","age":21,"location":"Berniechester"}},{"attributes":{"name":"Lenny Ziemann","age":76,"location":"Enterprise"}},{"attributes":{"name":"Sharon Mitchell","age":24,"location":"Irondequoit"}},{"attributes":{"name":"Sarah Kuhlman","age":40,"location":"Bahringerfield"}},{"attributes":{"name":"Floyd Feil","age":46,"location":"Auerview"}},{"attributes":{"name":"Bennie Nienow","age":40,"location":"East Aliza"}},{"attributes":{"name":"Abdullah Champlin","age":39,"location":"North Trevorside"}},{"attributes":{"name":"Ernesto Greenfelder","age":59,"location":"Harmonybury"}},{"attributes":{"name":"Maurine Ryan MD","age":43,"location":"Monahanside"}},{"attributes":{"name":"Marc Kuhic","age":46,"location":"Jonestown"}},{"attributes":{"name":"Paula Schoen","age":20,"location":"Burbank"}},{"attributes":{"name":"Isaiah Farrell II","age":31,"location":"Clarissachester"}},{"attributes":{"name":"Arturo Collins","age":70,"location":"East Ellastad"}},{"attributes":{"name":"Hardy Effertz","age":67,"location":"Durganhaven"}},{"attributes":{"name":"Dorris Braun","age":45,"location":"Eastvale"}},{"attributes":{"name":"Domenico Ortiz","age":78,"location":"Shoreline"}},{"attributes":{"name":"Rodney Hudson","age":50,"location":"Avondale"}},{"attributes":{"name":"Pat Waelchi","age":33,"location":"North Furman"}},{"attributes":{"name":"Haskell Greenholt","age":26,"location":"North Daisy"}},{"attributes":{"name":"Francis Trantow","age":39,"location":"Port Jayson"}},{"attributes":{"name":"Lavern Hahn IV","age":44,"location":"Port Brentland"}},{"attributes":{"name":"Vivian Kub","age":62,"location":"Lake Eugenia"}},{"attributes":{"name":"Mr. Gerald Hoppe","age":32,"location":"South Christelleview"}},{"attributes":{"name":"Kenyon Schaefer","age":71,"location":"Bridgettefield"}},{"attributes":{"name":"Skyla Trantow","age":65,"location":"Port Evangeline"}},{"attributes":{"name":"Rachael Hettinger-Corwin IV","age":74,"location":"Swiftchester"}},{"attributes":{"name":"Warren Bailey","age":62,"location":"Hayesfort"}},{"attributes":{"name":"Gerry Stoltenberg Jr.","age":25,"location":"South Hughstad"}},{"attributes":{"name":"Mr. Daniel Altenwerth","age":38,"location":"Lindgrenberg"}},{"attributes":{"name":"Jeffery Lowe","age":35,"location":"North Domenickview"}},{"attributes":{"name":"Rolando Kohler","age":44,"location":"New Rebecca"}},{"attributes":{"name":"Dr. Tony Volkman","age":77,"location":"Friesenstad"}},{"attributes":{"name":"Bob Beahan","age":27,"location":"East Tressastead"}},{"attributes":{"name":"Abraham Lemke","age":77,"location":"Hauckshire"}},{"attributes":{"name":"Autumn Littel-Osinski","age":26,"location":"South Dallaston"}},{"attributes":{"name":"Josh Moore","age":57,"location":"Ferryborough"}},{"attributes":{"name":"Brandt Hegmann","age":76,"location":"Reno"}},{"attributes":{"name":"Lottie Stroman","age":58,"location":"West Jovan"}},{"attributes":{"name":"Noah Wisozk","age":80,"location":"Langview"}},{"attributes":{"name":"Marcella Swaniawski","age":53,"location":"Greenholtworth"}},{"attributes":{"name":"Fredrick Anderson","age":39,"location":"San Marcos"}},{"attributes":{"name":"Mrs. Tatum Cronin","age":20,"location":"Geochester"}}]} \ No newline at end of file diff --git a/public/storybook/roster-50000.json b/public/storybook/roster-50000.json new file mode 100644 index 000000000..c7911f452 --- /dev/null +++ b/public/storybook/roster-50000.json @@ -0,0 +1 @@ +{"nodes":[{"attributes":{"name":"Moses Crist","age":21,"location":"New Haven"}},{"attributes":{"name":"Warren Effertz","age":29,"location":"New Hollie"}},{"attributes":{"name":"Brody Hilll","age":67,"location":"New Larryton"}},{"attributes":{"name":"Dr. Arthur Wintheiser","age":61,"location":"Bonitamouth"}},{"attributes":{"name":"Destinee Hahn","age":52,"location":"Fort Opheliashire"}},{"attributes":{"name":"Theodora Dietrich","age":38,"location":"West Rhoda"}},{"attributes":{"name":"Lana Schmitt","age":80,"location":"Donnellytown"}},{"attributes":{"name":"Montana Blanda","age":25,"location":"North Miami Beach"}},{"attributes":{"name":"Faye Renner","age":73,"location":"Blakecester"}},{"attributes":{"name":"Ole Ledner","age":19,"location":"North Louieborough"}},{"attributes":{"name":"Delphia Roob","age":22,"location":"East Toby"}},{"attributes":{"name":"Saul Dibbert IV","age":68,"location":"Fontana"}},{"attributes":{"name":"Jeannie Stoltenberg","age":50,"location":"Daltonland"}},{"attributes":{"name":"Enola Prosacco","age":79,"location":"Downey"}},{"attributes":{"name":"Erin Monahan","age":21,"location":"Fort Dawn"}},{"attributes":{"name":"Wendy Osinski","age":32,"location":"Hilllfurt"}},{"attributes":{"name":"Blake Hammes","age":20,"location":"Marianotown"}},{"attributes":{"name":"Marc Pollich","age":77,"location":"West Berylshire"}},{"attributes":{"name":"Marlon Luettgen","age":33,"location":"Fort Stephanfurt"}},{"attributes":{"name":"Dr. Muriel Torphy","age":28,"location":"Newport Beach"}},{"attributes":{"name":"Marlene Crooks","age":61,"location":"Faheycester"}},{"attributes":{"name":"Nicole Stanton","age":53,"location":"West Dillonburgh"}},{"attributes":{"name":"Steve Schimmel","age":54,"location":"Cleoracester"}},{"attributes":{"name":"Margie Weimann DVM","age":41,"location":"Fort Hilbertworth"}},{"attributes":{"name":"Eldridge Stark","age":28,"location":"Tremaynecester"}},{"attributes":{"name":"Lloyd Connelly-Leannon DDS","age":61,"location":"Hesselboro"}},{"attributes":{"name":"Sandra Langosh","age":68,"location":"Prosaccofield"}},{"attributes":{"name":"Gerald Mayert","age":47,"location":"Edmondstead"}},{"attributes":{"name":"Rosa Champlin","age":66,"location":"New Arvid"}},{"attributes":{"name":"Krystal Reinger IV","age":38,"location":"Goldnerport"}},{"attributes":{"name":"Verna Predovic","age":28,"location":"West Katherinecester"}},{"attributes":{"name":"Vernon Luettgen","age":44,"location":"West Nikolas"}},{"attributes":{"name":"Anita Steuber","age":47,"location":"South Jaredville"}},{"attributes":{"name":"Lynda Bayer","age":57,"location":"Russellchester"}},{"attributes":{"name":"Margarita McGlynn V","age":42,"location":"Kochstad"}},{"attributes":{"name":"Virgil Dietrich","age":24,"location":"North Marjorieton"}},{"attributes":{"name":"Alba Grady","age":61,"location":"Thielcester"}},{"attributes":{"name":"Dr. Clinton Schoen DDS","age":39,"location":"St. Louis Park"}},{"attributes":{"name":"Nico Turcotte","age":70,"location":"Fort Gillian"}},{"attributes":{"name":"Audie Wiegand V","age":57,"location":"Eldonborough"}},{"attributes":{"name":"Pauline Bosco","age":21,"location":"Ileneside"}},{"attributes":{"name":"Cassandra Mosciski","age":23,"location":"Binsfield"}},{"attributes":{"name":"Ms. Bert Hirthe-Hilpert","age":65,"location":"North Orin"}},{"attributes":{"name":"Terence Kunde","age":47,"location":"North Billfurt"}},{"attributes":{"name":"Mr. Vilma Grant","age":18,"location":"Athens-Clarke County"}},{"attributes":{"name":"Winston Lueilwitz IV","age":57,"location":"Klingfurt"}},{"attributes":{"name":"Alverta Wiegand IV","age":57,"location":"East Jamaal"}},{"attributes":{"name":"Ariane Yost-Price","age":37,"location":"Pharr"}},{"attributes":{"name":"Remington Reinger","age":44,"location":"Stillwater"}},{"attributes":{"name":"Holly Yost","age":55,"location":"Fort Ronny"}},{"attributes":{"name":"Ms. Hector Bednar","age":80,"location":"Odessashire"}},{"attributes":{"name":"Ivan Wilkinson","age":32,"location":"Mosciskibury"}},{"attributes":{"name":"Mrs. Josue Lebsack","age":73,"location":"Bretttown"}},{"attributes":{"name":"Mckenna Collins","age":40,"location":"Gladyceport"}},{"attributes":{"name":"Joel Hyatt","age":72,"location":"Casas Adobes"}},{"attributes":{"name":"Donnie Wuckert","age":38,"location":"Fisherton"}},{"attributes":{"name":"Cecilia Nitzsche","age":39,"location":"Lakewood"}},{"attributes":{"name":"Courtney Cummings","age":29,"location":"North Jaimeberg"}},{"attributes":{"name":"Melinda Schmidt","age":23,"location":"Twin Falls"}},{"attributes":{"name":"Regina Denesik","age":41,"location":"Lianabury"}},{"attributes":{"name":"Alfredo Ratke IV","age":51,"location":"South Kaceyburgh"}},{"attributes":{"name":"Alma Effertz","age":25,"location":"Nashua"}},{"attributes":{"name":"Jessie Lind","age":64,"location":"Brandynboro"}},{"attributes":{"name":"Khalid Yost","age":32,"location":"East Delaneyville"}},{"attributes":{"name":"Claire Block","age":43,"location":"Broken Arrow"}},{"attributes":{"name":"Samara Gerhold","age":60,"location":"Milford"}},{"attributes":{"name":"Ramon Hane","age":49,"location":"North Leonie"}},{"attributes":{"name":"Cara Lemke","age":39,"location":"North Yeseniaborough"}},{"attributes":{"name":"Merle Mertz","age":43,"location":"Fort Rickey"}},{"attributes":{"name":"Oscar Davis","age":64,"location":"Ronaldoville"}},{"attributes":{"name":"Clark Schultz","age":50,"location":"Fort Gladys"}},{"attributes":{"name":"Gerard Gutkowski","age":49,"location":"Fort Gerard"}},{"attributes":{"name":"Lindsey Weimann","age":39,"location":"Port Lilianestad"}},{"attributes":{"name":"Camron Franey","age":20,"location":"Noraside"}},{"attributes":{"name":"Berniece Champlin","age":68,"location":"East Misaelcester"}},{"attributes":{"name":"Kari Hegmann","age":75,"location":"Gregoryport"}},{"attributes":{"name":"Larry Moore","age":72,"location":"Miramar"}},{"attributes":{"name":"Melba Mayer","age":44,"location":"Watsicashire"}},{"attributes":{"name":"Wendy Casper PhD","age":50,"location":"Greenton"}},{"attributes":{"name":"Abigail Jacobi","age":75,"location":"West Myrl"}},{"attributes":{"name":"Jodi Dare","age":44,"location":"Great Falls"}},{"attributes":{"name":"Adonis Daugherty Sr.","age":44,"location":"Fort Jimmystead"}},{"attributes":{"name":"Cornelius DuBuque","age":20,"location":"Kennaton"}},{"attributes":{"name":"Jon Jacobs","age":27,"location":"Port Tysonbury"}},{"attributes":{"name":"Hal Crist","age":59,"location":"East Darianachester"}},{"attributes":{"name":"Rachel O'Keefe","age":24,"location":"Lake Russ"}},{"attributes":{"name":"Mathew Greenholt Jr.","age":23,"location":"North Cheyanne"}},{"attributes":{"name":"Steve Heaney","age":41,"location":"Domenicfurt"}},{"attributes":{"name":"Hudson White","age":26,"location":"Lee's Summit"}},{"attributes":{"name":"Hermina Glover","age":57,"location":"East Roberto"}},{"attributes":{"name":"Clifford Auer Sr.","age":54,"location":"New Maci"}},{"attributes":{"name":"Mr. Al Tromp","age":59,"location":"Fort Heatherbury"}},{"attributes":{"name":"Clay Boehm","age":33,"location":"West Fiona"}},{"attributes":{"name":"Kent Olson DDS","age":31,"location":"West Laurianneton"}},{"attributes":{"name":"Estelle Breitenberg","age":63,"location":"Martinaport"}},{"attributes":{"name":"Piper Goldner","age":40,"location":"Fort Brielleshire"}},{"attributes":{"name":"Mrs. Krystal Reynolds","age":71,"location":"South Dale"}},{"attributes":{"name":"Alivia Walsh","age":53,"location":"Arden-Arcade"}},{"attributes":{"name":"Miss Timothy Welch-Krajcik","age":70,"location":"New Darbyland"}},{"attributes":{"name":"Eunice Bergnaum","age":51,"location":"Hamillfurt"}},{"attributes":{"name":"Daron Strosin","age":73,"location":"Trevorfield"}},{"attributes":{"name":"Ramiro Kris","age":73,"location":"Royal Oak"}},{"attributes":{"name":"Natalie Brown","age":36,"location":"East Allie"}},{"attributes":{"name":"Hilario Parisian","age":77,"location":"Borerview"}},{"attributes":{"name":"Mr. Jammie Cummings MD","age":56,"location":"Darianberg"}},{"attributes":{"name":"Patty Beer PhD","age":76,"location":"Chicago"}},{"attributes":{"name":"Mauricio Schultz","age":32,"location":"Laruestead"}},{"attributes":{"name":"Dina Towne PhD","age":68,"location":"Lubowitzland"}},{"attributes":{"name":"Elena Kunze","age":31,"location":"Blickhaven"}},{"attributes":{"name":"Lorene Heidenreich","age":53,"location":"Fort Phyllis"}},{"attributes":{"name":"Sandrine Smith","age":60,"location":"Romagueraville"}},{"attributes":{"name":"Alessia Champlin","age":64,"location":"Port Rigobertomouth"}},{"attributes":{"name":"Lynette Murray-Gerlach","age":52,"location":"Breitenbergfort"}},{"attributes":{"name":"Evans Waters","age":77,"location":"Bernhardboro"}},{"attributes":{"name":"Lamar Mraz","age":72,"location":"West Sacramento"}},{"attributes":{"name":"Phillip Bahringer","age":48,"location":"Paucekport"}},{"attributes":{"name":"Dr. Hershel Cruickshank","age":23,"location":"O'Konboro"}},{"attributes":{"name":"Hugo Johnston","age":43,"location":"Fort Haley"}},{"attributes":{"name":"Darin O'Keefe","age":72,"location":"Vivianneberg"}},{"attributes":{"name":"Ole Rowe","age":26,"location":"Fort Lexiefield"}},{"attributes":{"name":"Candice Keeling","age":48,"location":"New Domenicofield"}},{"attributes":{"name":"Alexis Huel","age":55,"location":"Lake Ryley"}},{"attributes":{"name":"Dr. Jeffery Flatley V","age":62,"location":"Adeliaborough"}},{"attributes":{"name":"Franklin Block","age":26,"location":"Marvinfield"}},{"attributes":{"name":"Bobbie Quigley","age":76,"location":"New Melvinside"}},{"attributes":{"name":"Euna Block V","age":69,"location":"Luellastad"}},{"attributes":{"name":"Mr. Armando Cronin","age":39,"location":"Port Mafaldamouth"}},{"attributes":{"name":"Dante Wolf-O'Hara","age":60,"location":"North Dessieport"}},{"attributes":{"name":"Nash Hegmann","age":80,"location":"Port Kolbyport"}},{"attributes":{"name":"Shannon Jones","age":55,"location":"Corvallis"}},{"attributes":{"name":"Mozelle Rau Sr.","age":32,"location":"Cicero"}},{"attributes":{"name":"Dexter Kilback","age":40,"location":"Carybury"}},{"attributes":{"name":"Mark Rutherford","age":79,"location":"Darwinton"}},{"attributes":{"name":"Gertrude Keeling","age":56,"location":"Cummingsville"}},{"attributes":{"name":"Ms. Malcolm Sporer","age":30,"location":"West Anaisstad"}},{"attributes":{"name":"Caleb Watsica","age":49,"location":"East Wyattworth"}},{"attributes":{"name":"Lucas Klocko","age":48,"location":"Connellytown"}},{"attributes":{"name":"Collin Wisozk","age":60,"location":"Sanfordberg"}},{"attributes":{"name":"Tyrel Kuphal","age":72,"location":"Alexandershire"}},{"attributes":{"name":"Crystal Huels","age":24,"location":"Zulaufton"}},{"attributes":{"name":"Shane Mante","age":73,"location":"Erickachester"}},{"attributes":{"name":"Pierce Schumm","age":52,"location":"West Frederickview"}},{"attributes":{"name":"Israel Hintz","age":22,"location":"Ortizfurt"}},{"attributes":{"name":"Shawna Kris","age":39,"location":"South Kraig"}},{"attributes":{"name":"Norwood Raynor Jr.","age":30,"location":"Lake Stanburgh"}},{"attributes":{"name":"Tommie Bradtke","age":34,"location":"West Prudence"}},{"attributes":{"name":"Lewis Goldner","age":25,"location":"Lake Cheyannestad"}},{"attributes":{"name":"Kent Windler","age":68,"location":"Altafurt"}},{"attributes":{"name":"Reece Farrell","age":56,"location":"Rolandoside"}},{"attributes":{"name":"Paula Senger","age":60,"location":"New Ivystead"}},{"attributes":{"name":"Sallie Boyer","age":58,"location":"Lockmanburgh"}},{"attributes":{"name":"Jerrold Collins-Powlowski","age":44,"location":"Pourosworth"}},{"attributes":{"name":"Muriel Goodwin","age":23,"location":"Coconut Creek"}},{"attributes":{"name":"Gwen Leannon","age":68,"location":"New Shanelle"}},{"attributes":{"name":"Mr. Ervin Ortiz DDS","age":47,"location":"New Verniceberg"}},{"attributes":{"name":"Jose Klein","age":39,"location":"Schinnershire"}},{"attributes":{"name":"Mrs. Celia Walter-Lindgren","age":23,"location":"Champlinfield"}},{"attributes":{"name":"Alfred Gislason","age":23,"location":"Middletown"}},{"attributes":{"name":"Joann Larkin IV","age":80,"location":"Corona"}},{"attributes":{"name":"Mrs. Roland Thiel","age":37,"location":"South Chaddchester"}},{"attributes":{"name":"Mr. Lucio Cole","age":56,"location":"Danielmouth"}},{"attributes":{"name":"Heather Balistreri","age":78,"location":"Virginiaview"}},{"attributes":{"name":"Jessie Nitzsche","age":57,"location":"Corwinton"}},{"attributes":{"name":"Archie Beer-Powlowski I","age":26,"location":"West Baronchester"}},{"attributes":{"name":"Yvette Morar","age":57,"location":"Hershelville"}},{"attributes":{"name":"Mrs. Craig Jerde","age":18,"location":"Jaydontown"}},{"attributes":{"name":"Brigitte Emard","age":33,"location":"Santa Clara"}},{"attributes":{"name":"Dr. Brent Kling","age":27,"location":"Lake Jarrod"}},{"attributes":{"name":"Johnnie Toy DDS","age":37,"location":"Kertzmannburgh"}},{"attributes":{"name":"Sylvester Nienow","age":74,"location":"Morarton"}},{"attributes":{"name":"Pablo Parisian","age":23,"location":"Binston"}},{"attributes":{"name":"Myrl Gulgowski","age":66,"location":"Denesikberg"}},{"attributes":{"name":"Norris Aufderhar","age":78,"location":"Port Linnie"}},{"attributes":{"name":"Camille Ryan","age":51,"location":"Fort Pinkboro"}},{"attributes":{"name":"Kristoffer Schroeder","age":26,"location":"Fort Dan"}},{"attributes":{"name":"Jessie Welch","age":25,"location":"Fort Lunaboro"}},{"attributes":{"name":"Rose Fritsch","age":47,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Charlotte Wyman Jr.","age":28,"location":"Lake Rebecaberg"}},{"attributes":{"name":"Mozell McLaughlin","age":36,"location":"Martyside"}},{"attributes":{"name":"Carolanne Altenwerth","age":63,"location":"Boulder"}},{"attributes":{"name":"Connie Reynolds","age":29,"location":"Port Kayden"}},{"attributes":{"name":"Alfonzo Douglas III","age":38,"location":"West Selmerworth"}},{"attributes":{"name":"Monique Medhurst","age":43,"location":"Abernathyfurt"}},{"attributes":{"name":"Augusta Kshlerin","age":22,"location":"Kelliestad"}},{"attributes":{"name":"Quinn Shanahan","age":22,"location":"West Owencester"}},{"attributes":{"name":"Irvin Harber","age":23,"location":"New Mya"}},{"attributes":{"name":"Dr. Ludie Nicolas","age":70,"location":"New Lacy"}},{"attributes":{"name":"Mrs. Geraldine Bailey","age":36,"location":"Durham"}},{"attributes":{"name":"Ronny Schmitt","age":48,"location":"North Monroemouth"}},{"attributes":{"name":"Novella Monahan","age":65,"location":"Willton"}},{"attributes":{"name":"Elisa Ullrich","age":35,"location":"Kirlinfort"}},{"attributes":{"name":"Ana Ullrich","age":51,"location":"Faeside"}},{"attributes":{"name":"Vincenzo Wehner","age":44,"location":"Lake Willard"}},{"attributes":{"name":"Clotilde Kohler V","age":40,"location":"East Daneburgh"}},{"attributes":{"name":"Judah Stokes","age":22,"location":"Littleton"}},{"attributes":{"name":"Christina Stark","age":47,"location":"Maceystad"}},{"attributes":{"name":"Miss Regina Bechtelar","age":28,"location":"Port Josiane"}},{"attributes":{"name":"Shanel Ferry","age":80,"location":"Balistreriton"}},{"attributes":{"name":"Kali Braun","age":69,"location":"Port Violet"}},{"attributes":{"name":"Erma Mayert","age":68,"location":"Fort Kaci"}},{"attributes":{"name":"Pearline Stiedemann II","age":79,"location":"East Christianaside"}},{"attributes":{"name":"Irvin Boehm DDS","age":49,"location":"Indio"}},{"attributes":{"name":"Lori Tillman","age":28,"location":"New Juliencester"}},{"attributes":{"name":"Mr. Oscar Stiedemann","age":37,"location":"Reinaport"}},{"attributes":{"name":"Rosemarie Daniel","age":70,"location":"East Bryanabury"}},{"attributes":{"name":"Ms. Macey Herman","age":57,"location":"Lake Erachester"}},{"attributes":{"name":"Sarah Smith","age":58,"location":"Langworthborough"}},{"attributes":{"name":"Mrs. Eva Wehner","age":59,"location":"Fort Marcos"}},{"attributes":{"name":"Ismael Stracke","age":41,"location":"Brockton"}},{"attributes":{"name":"Ms. Natasha Goyette","age":65,"location":"Amarillo"}},{"attributes":{"name":"Mr. Ellis Grady","age":52,"location":"East Adolphport"}},{"attributes":{"name":"Elfrieda Roberts","age":74,"location":"Pasadena"}},{"attributes":{"name":"Mr. Christop Fisher","age":80,"location":"Madison"}},{"attributes":{"name":"Lavon Botsford MD","age":70,"location":"Modesto"}},{"attributes":{"name":"Erick Ryan","age":74,"location":"Lennyfurt"}},{"attributes":{"name":"Dave Braun","age":48,"location":"Wiegandstead"}},{"attributes":{"name":"Lyle Funk","age":47,"location":"East Dovieworth"}},{"attributes":{"name":"Dana Goyette","age":50,"location":"North Dagmartown"}},{"attributes":{"name":"Raquel Langworth","age":76,"location":"North Lexus"}},{"attributes":{"name":"Kayla Kunde","age":80,"location":"West Godfreyview"}},{"attributes":{"name":"Ms. Micah Hagenes","age":18,"location":"Bechtelarburgh"}},{"attributes":{"name":"Marquis Hoppe","age":41,"location":"South Nevaton"}},{"attributes":{"name":"Tina Parisian","age":55,"location":"Lake Tatefurt"}},{"attributes":{"name":"Blaze Bergstrom","age":26,"location":"South Eleanoremouth"}},{"attributes":{"name":"Caleb Heathcote","age":59,"location":"Pittsburg"}},{"attributes":{"name":"Dortha Schamberger","age":68,"location":"St. Louis"}},{"attributes":{"name":"Erik Hilpert","age":62,"location":"Hirtheville"}},{"attributes":{"name":"Sophia Crist","age":58,"location":"Heaneyton"}},{"attributes":{"name":"Maureen Hickle","age":80,"location":"Martinaville"}},{"attributes":{"name":"Kay Hoppe-Batz","age":42,"location":"North Nigelport"}},{"attributes":{"name":"Betty Haley-Towne","age":70,"location":"Enid"}},{"attributes":{"name":"Glen Littel","age":52,"location":"Nolanhaven"}},{"attributes":{"name":"Elena Beer","age":35,"location":"Milford"}},{"attributes":{"name":"Broderick Murazik","age":43,"location":"Tamarac"}},{"attributes":{"name":"Lillian Huels","age":47,"location":"Dannieworth"}},{"attributes":{"name":"Mr. Kacie Christiansen","age":35,"location":"Waltham"}},{"attributes":{"name":"Vivian Stracke","age":41,"location":"East Nolan"}},{"attributes":{"name":"Katherine Streich III","age":70,"location":"Marvinshire"}},{"attributes":{"name":"Sara Stamm Jr.","age":73,"location":"Johnathonfurt"}},{"attributes":{"name":"Jean Reichert","age":26,"location":"West Quincy"}},{"attributes":{"name":"Vanessa Zieme","age":70,"location":"North Myrna"}},{"attributes":{"name":"Bryon Runte","age":66,"location":"Normal"}},{"attributes":{"name":"Belinda Jaskolski","age":39,"location":"Port Unaton"}},{"attributes":{"name":"Dr. Elias Kutch","age":22,"location":"Eleazarburgh"}},{"attributes":{"name":"Tobin Ullrich","age":48,"location":"Lake Wilfred"}},{"attributes":{"name":"Marco Towne","age":46,"location":"Linnieton"}},{"attributes":{"name":"Nick Schneider","age":50,"location":"Port Donavonmouth"}},{"attributes":{"name":"Mae Rohan","age":18,"location":"Alyciaboro"}},{"attributes":{"name":"Rudy Franecki","age":37,"location":"West Donhaven"}},{"attributes":{"name":"Simeon Vandervort","age":78,"location":"Lake Jeremybury"}},{"attributes":{"name":"Abigail Ratke","age":78,"location":"Wiegandcester"}},{"attributes":{"name":"Paula Beahan","age":78,"location":"Hopeport"}},{"attributes":{"name":"Heidi Runte","age":69,"location":"Costa Mesa"}},{"attributes":{"name":"Sherman Pagac","age":36,"location":"Lake Myrticeborough"}},{"attributes":{"name":"Nick Toy","age":41,"location":"North Jorgeboro"}},{"attributes":{"name":"Gerardo Aufderhar","age":44,"location":"Guiseppestad"}},{"attributes":{"name":"Jamie Leannon-Pagac","age":66,"location":"Lebsackworth"}},{"attributes":{"name":"Pat Carter","age":19,"location":"Port Josh"}},{"attributes":{"name":"Ada O'Connell PhD","age":19,"location":"San Diego"}},{"attributes":{"name":"Gregory Bergstrom","age":33,"location":"Nehaport"}},{"attributes":{"name":"Turner Zboncak","age":78,"location":"West Daneberg"}},{"attributes":{"name":"Miss Osvaldo Corkery","age":60,"location":"West Terrell"}},{"attributes":{"name":"Sophia Berge","age":18,"location":"Kingville"}},{"attributes":{"name":"Derrick Parisian","age":35,"location":"La Habra"}},{"attributes":{"name":"Andre Kilback","age":21,"location":"Wichita"}},{"attributes":{"name":"Ms. Deangelo Donnelly-Wilderman V","age":34,"location":"Laurelton"}},{"attributes":{"name":"Clare Upton DVM","age":50,"location":"Rockwall"}},{"attributes":{"name":"Mona Nitzsche","age":28,"location":"Oletamouth"}},{"attributes":{"name":"Gwendolyn Fay","age":31,"location":"Port Montana"}},{"attributes":{"name":"Amelia Olson","age":36,"location":"Fort Zackary"}},{"attributes":{"name":"Gabrielle Romaguera DVM","age":54,"location":"Port Demario"}},{"attributes":{"name":"Mark Dicki Sr.","age":49,"location":"North Alfred"}},{"attributes":{"name":"Earnestine McCullough-Kertzmann","age":50,"location":"Gradybury"}},{"attributes":{"name":"Sincere Sauer","age":49,"location":"New Christy"}},{"attributes":{"name":"Coralie Bernhard IV","age":43,"location":"South Hill"}},{"attributes":{"name":"Olen Corwin IV","age":35,"location":"Alialand"}},{"attributes":{"name":"Henry Becker I","age":37,"location":"East Abbie"}},{"attributes":{"name":"Dr. Dan Robel","age":38,"location":"Schummberg"}},{"attributes":{"name":"Rae Romaguera-Huel","age":59,"location":"New Melvinaville"}},{"attributes":{"name":"Vanessa Gleason","age":36,"location":"Roweland"}},{"attributes":{"name":"Gene Shields","age":63,"location":"Theachester"}},{"attributes":{"name":"Doris Dietrich","age":39,"location":"St. Louis"}},{"attributes":{"name":"Kelsi Kunze","age":28,"location":"Ricebury"}},{"attributes":{"name":"Aditya Wisozk","age":32,"location":"Schummstad"}},{"attributes":{"name":"Jimmie Stracke","age":68,"location":"Gracieville"}},{"attributes":{"name":"Emilio Swaniawski","age":68,"location":"New Kiana"}},{"attributes":{"name":"Adolfo Bechtelar","age":36,"location":"West Lilliana"}},{"attributes":{"name":"Gunnar Sawayn","age":45,"location":"Hartmannton"}},{"attributes":{"name":"Lucius Nader","age":44,"location":"Bradtkeboro"}},{"attributes":{"name":"Vivian Leannon","age":79,"location":"South Myrnacester"}},{"attributes":{"name":"Jacquelyn DuBuque","age":34,"location":"Lake Vivien"}},{"attributes":{"name":"Ben Gulgowski-Bosco","age":57,"location":"Gleichnertown"}},{"attributes":{"name":"Max Monahan","age":35,"location":"Sammieshire"}},{"attributes":{"name":"Tonya Tillman","age":55,"location":"Parisianview"}},{"attributes":{"name":"Dennis Will","age":70,"location":"Lake Whitneyland"}},{"attributes":{"name":"Betty Volkman","age":34,"location":"Mitcheltown"}},{"attributes":{"name":"Lowell Ratke","age":30,"location":"Renton"}},{"attributes":{"name":"Delia Franey","age":46,"location":"Moenchester"}},{"attributes":{"name":"Roel Senger IV","age":30,"location":"Robertscester"}},{"attributes":{"name":"Geoffrey McDermott","age":34,"location":"Fort Manuel"}},{"attributes":{"name":"Luke Purdy","age":45,"location":"Weberton"}},{"attributes":{"name":"Irving Gutkowski","age":21,"location":"Tillmanland"}},{"attributes":{"name":"Marion Cronin","age":22,"location":"Lake Shannonfield"}},{"attributes":{"name":"Edmund Friesen","age":51,"location":"West Rhiannon"}},{"attributes":{"name":"Terrence Hansen-Hermann","age":77,"location":"Boynton Beach"}},{"attributes":{"name":"Joan Stokes","age":70,"location":"Riverton"}},{"attributes":{"name":"Carolanne Daugherty","age":32,"location":"East Abbigailcester"}},{"attributes":{"name":"Clarence Aufderhar","age":74,"location":"West Ben"}},{"attributes":{"name":"Lucy Beer","age":32,"location":"Fort Lewis"}},{"attributes":{"name":"Hubert Predovic","age":28,"location":"Hansside"}},{"attributes":{"name":"Bruce Carroll","age":26,"location":"DuBuqueview"}},{"attributes":{"name":"Dr. Jimmy Auer","age":53,"location":"Pfefferburgh"}},{"attributes":{"name":"Miss Kailee Schuster","age":67,"location":"Christellehaven"}},{"attributes":{"name":"Ben Schneider I","age":22,"location":"Hempstead"}},{"attributes":{"name":"Annabelle Blanda","age":68,"location":"Zionstad"}},{"attributes":{"name":"Gretchen Bernhard","age":47,"location":"O'Reillycester"}},{"attributes":{"name":"Mr. Marjorie Abshire","age":22,"location":"McDermottfort"}},{"attributes":{"name":"Josh Osinski","age":64,"location":"East Sigmundfort"}},{"attributes":{"name":"Lavern Towne","age":57,"location":"South Michelleboro"}},{"attributes":{"name":"Doreen Kassulke IV","age":29,"location":"Lake Geovanyfield"}},{"attributes":{"name":"Donnell Gislason MD","age":38,"location":"East Maude"}},{"attributes":{"name":"Dr. Dillan Schultz","age":23,"location":"Hillsview"}},{"attributes":{"name":"Ana Frami","age":20,"location":"Handside"}},{"attributes":{"name":"Sylvester Shanahan-Sporer","age":54,"location":"North Zoilaborough"}},{"attributes":{"name":"Ryan Flatley-Bauch","age":26,"location":"West Ottisstead"}},{"attributes":{"name":"Darion Runolfsdottir","age":66,"location":"Port Lilianstad"}},{"attributes":{"name":"Kylie Zboncak","age":45,"location":"Hudsonburgh"}},{"attributes":{"name":"Tobin Legros","age":80,"location":"Oshkosh"}},{"attributes":{"name":"Laura Klocko","age":60,"location":"Fort Caterina"}},{"attributes":{"name":"Mavis Gorczany","age":58,"location":"Chazcester"}},{"attributes":{"name":"Mrs. Rodolfo Aufderhar","age":70,"location":"West Covina"}},{"attributes":{"name":"Guadalupe Marquardt","age":76,"location":"Laruebury"}},{"attributes":{"name":"Jeanne Mohr PhD","age":59,"location":"Port Sheldon"}},{"attributes":{"name":"Edison Zieme","age":74,"location":"Wizaport"}},{"attributes":{"name":"Ms. Felix Wolf","age":23,"location":"North Cortez"}},{"attributes":{"name":"Eloise Cummings","age":79,"location":"Wisokyport"}},{"attributes":{"name":"Erich Feeney","age":34,"location":"Lake Angie"}},{"attributes":{"name":"Caesar Stracke","age":23,"location":"Elizastad"}},{"attributes":{"name":"Kyle Considine","age":35,"location":"Arnoport"}},{"attributes":{"name":"Anais Koch","age":54,"location":"Sanfordhaven"}},{"attributes":{"name":"Sabrina Towne-Hilpert","age":48,"location":"Kulasmouth"}},{"attributes":{"name":"Santos Harber","age":66,"location":"East Vanberg"}},{"attributes":{"name":"Jenifer Fay","age":41,"location":"Connellystead"}},{"attributes":{"name":"Delores Shanahan","age":76,"location":"Mobile"}},{"attributes":{"name":"Rachael Bogisich","age":71,"location":"Danielchester"}},{"attributes":{"name":"Sherri Gislason","age":72,"location":"Murazikfort"}},{"attributes":{"name":"Gretchen Kuhic Jr.","age":36,"location":"East Sydnie"}},{"attributes":{"name":"Ollie Kuhlman","age":55,"location":"Sacramento"}},{"attributes":{"name":"Cecile Doyle","age":50,"location":"Vandervortmouth"}},{"attributes":{"name":"Dr. Alonzo Kessler","age":46,"location":"North Modesto"}},{"attributes":{"name":"Ms. Earl Hoeger","age":25,"location":"Ferrychester"}},{"attributes":{"name":"Mr. Gianni Aufderhar","age":32,"location":"North Vida"}},{"attributes":{"name":"Dimitri Pagac","age":71,"location":"Taylor"}},{"attributes":{"name":"Ed Altenwerth-Rau","age":57,"location":"Florin"}},{"attributes":{"name":"Dr. Jo Heathcote","age":41,"location":"Bayonne"}},{"attributes":{"name":"Loretta Wisoky","age":49,"location":"South Major"}},{"attributes":{"name":"Koby Schumm","age":21,"location":"East Malachiview"}},{"attributes":{"name":"Sonny Haley","age":35,"location":"East Eveview"}},{"attributes":{"name":"Owen Green","age":36,"location":"Hortenseville"}},{"attributes":{"name":"Sue Reynolds","age":76,"location":"Mission"}},{"attributes":{"name":"Dr. Greg Anderson","age":54,"location":"Birdieworth"}},{"attributes":{"name":"Loretta Bartoletti","age":51,"location":"East Kenyonboro"}},{"attributes":{"name":"Wilmer Wisozk","age":39,"location":"North Mathiasport"}},{"attributes":{"name":"Mr. Denis Herzog","age":40,"location":"Port Erling"}},{"attributes":{"name":"Joyce Spencer","age":42,"location":"Shreveport"}},{"attributes":{"name":"Eva Carter MD","age":51,"location":"South Haileeville"}},{"attributes":{"name":"Kelsi Bernhard","age":25,"location":"Wehnerchester"}},{"attributes":{"name":"Miss Laurie Skiles","age":34,"location":"West Harmonychester"}},{"attributes":{"name":"Dr. Greg Crona","age":28,"location":"Milford"}},{"attributes":{"name":"Nadine Ernser-Torphy DVM","age":58,"location":"Jacobsonfort"}},{"attributes":{"name":"Hilda Senger","age":70,"location":"Rosalynview"}},{"attributes":{"name":"Demario Kub","age":37,"location":"Eribertotown"}},{"attributes":{"name":"Virginia Huels-Rempel","age":60,"location":"Warren"}},{"attributes":{"name":"Dino Balistreri-Mitchell","age":61,"location":"Fort Chetfurt"}},{"attributes":{"name":"Laura Cronin","age":44,"location":"Treutelton"}},{"attributes":{"name":"Alison Mills","age":32,"location":"Port Weldonville"}},{"attributes":{"name":"Tiffany Beatty","age":54,"location":"North Kristy"}},{"attributes":{"name":"Elmore McKenzie","age":79,"location":"Dorthacester"}},{"attributes":{"name":"Garnett Beatty","age":70,"location":"Daly City"}},{"attributes":{"name":"Tom Kirlin","age":72,"location":"East Nicholaston"}},{"attributes":{"name":"Geraldine Lehner","age":54,"location":"Rogers"}},{"attributes":{"name":"Eloise Jast","age":21,"location":"South Mavisberg"}},{"attributes":{"name":"Spencer Gulgowski","age":43,"location":"Lake Reyes"}},{"attributes":{"name":"Graciela Ritchie","age":60,"location":"North Zachery"}},{"attributes":{"name":"Wilber Oberbrunner","age":72,"location":"South Lilian"}},{"attributes":{"name":"Genevieve Stark","age":76,"location":"Sengerstad"}},{"attributes":{"name":"Dr. Rolando Towne DDS","age":33,"location":"Boynton Beach"}},{"attributes":{"name":"Margie Hane","age":55,"location":"Parkerstead"}},{"attributes":{"name":"Pamela Pouros","age":57,"location":"Erdmanton"}},{"attributes":{"name":"Roslyn Rice","age":48,"location":"Freeport"}},{"attributes":{"name":"Bernice Barrows","age":44,"location":"Chanceboro"}},{"attributes":{"name":"Amber Mayer","age":49,"location":"North Lazaroborough"}},{"attributes":{"name":"Cedric Greenholt","age":61,"location":"San Mateo"}},{"attributes":{"name":"Tyshawn Abbott","age":31,"location":"Naderstead"}},{"attributes":{"name":"Enos Lynch","age":26,"location":"Port Terrillfurt"}},{"attributes":{"name":"Myrtle Carroll","age":62,"location":"West Adolphus"}},{"attributes":{"name":"Vernice Larkin","age":52,"location":"New Giles"}},{"attributes":{"name":"Mrs. Flora Dare PhD","age":80,"location":"Ransomborough"}},{"attributes":{"name":"Maryann Halvorson","age":57,"location":"New Mattcester"}},{"attributes":{"name":"Jett Mosciski","age":19,"location":"South Lexus"}},{"attributes":{"name":"Calvin Brekke-Kris","age":52,"location":"North Benstead"}},{"attributes":{"name":"Lynn Bauch","age":61,"location":"West Lesly"}},{"attributes":{"name":"Kristy Hickle","age":47,"location":"Lake Kayliebury"}},{"attributes":{"name":"Eric Runolfsson","age":38,"location":"Hyattfort"}},{"attributes":{"name":"Thelma Carter","age":79,"location":"North Eulalia"}},{"attributes":{"name":"Marlon Klein-Hermann","age":25,"location":"Idaho Falls"}},{"attributes":{"name":"Mrs. Ima Berge","age":78,"location":"South Leannastead"}},{"attributes":{"name":"Carla Crooks","age":31,"location":"New Laurianneside"}},{"attributes":{"name":"Roberto Block","age":75,"location":"West Bud"}},{"attributes":{"name":"Loretta Weimann","age":54,"location":"Bethlehem"}},{"attributes":{"name":"Rhoda Gottlieb Sr.","age":73,"location":"Chino"}},{"attributes":{"name":"Gustavo McClure MD","age":48,"location":"Waterloo"}},{"attributes":{"name":"Aryanna Goyette","age":45,"location":"Homenickton"}},{"attributes":{"name":"Gerald Kihn","age":69,"location":"Murray"}},{"attributes":{"name":"Miss Kayla Murray","age":78,"location":"Lelandburgh"}},{"attributes":{"name":"Christine Mitchell","age":50,"location":"Lake Arlie"}},{"attributes":{"name":"Cora Howe","age":43,"location":"Jaynebury"}},{"attributes":{"name":"Jimmie Bernier","age":53,"location":"Millcreek"}},{"attributes":{"name":"Brad Denesik","age":58,"location":"Fort Ronnyboro"}},{"attributes":{"name":"Carla Leannon","age":40,"location":"Pharr"}},{"attributes":{"name":"Gilberto Blick","age":60,"location":"Jenkinsmouth"}},{"attributes":{"name":"Geraldine Boyle V","age":63,"location":"South Dashawn"}},{"attributes":{"name":"Rachael Lockman","age":76,"location":"West Fayefort"}},{"attributes":{"name":"Shaun Fahey","age":43,"location":"Cicero"}},{"attributes":{"name":"Ms. Oscar Mayert","age":21,"location":"Connellyview"}},{"attributes":{"name":"Johnathan Collier-Padberg","age":26,"location":"Fort Shanelside"}},{"attributes":{"name":"Freddie Kub","age":40,"location":"Kipville"}},{"attributes":{"name":"Keyon Roberts","age":40,"location":"Maggioboro"}},{"attributes":{"name":"Petra Monahan","age":26,"location":"South Lavonne"}},{"attributes":{"name":"Adam Grant","age":19,"location":"Trudieberg"}},{"attributes":{"name":"Mable Jaskolski","age":74,"location":"North Sadyestead"}},{"attributes":{"name":"Ramiro Rohan V","age":29,"location":"East Delfina"}},{"attributes":{"name":"Lacy Morissette","age":23,"location":"New Cristianboro"}},{"attributes":{"name":"Dr. Adrian Ortiz","age":27,"location":"La Crosse"}},{"attributes":{"name":"Marielle Zieme","age":36,"location":"Aurora"}},{"attributes":{"name":"Mrs. Derrick Conn","age":33,"location":"Roweborough"}},{"attributes":{"name":"Violet Weber","age":67,"location":"Pourosworth"}},{"attributes":{"name":"Mary Mayer","age":49,"location":"South Lula"}},{"attributes":{"name":"Miss Gustavo Donnelly","age":65,"location":"Spring"}},{"attributes":{"name":"Garry Berge","age":24,"location":"West Rahul"}},{"attributes":{"name":"Santos Runolfsdottir","age":61,"location":"Petaluma"}},{"attributes":{"name":"Margie Carter","age":68,"location":"Carlsbad"}},{"attributes":{"name":"Martin Schulist II","age":72,"location":"Lake Napoleonchester"}},{"attributes":{"name":"Cathy Raynor","age":71,"location":"East Rod"}},{"attributes":{"name":"Norman Mitchell","age":70,"location":"Port Charlotte"}},{"attributes":{"name":"Marcus Hettinger MD","age":25,"location":"Shemarton"}},{"attributes":{"name":"Lonnie Franey II","age":66,"location":"East Adella"}},{"attributes":{"name":"Frida Heathcote","age":45,"location":"Lompoc"}},{"attributes":{"name":"Willard Bins","age":55,"location":"Helmerfield"}},{"attributes":{"name":"Lynn Koch","age":65,"location":"Emmiestead"}},{"attributes":{"name":"Tim Becker","age":44,"location":"North Taya"}},{"attributes":{"name":"Catherine Bergstrom","age":76,"location":"Blaisemouth"}},{"attributes":{"name":"Lynne Brown","age":80,"location":"North Clarabelle"}},{"attributes":{"name":"Raquel Kilback","age":50,"location":"Stillwater"}},{"attributes":{"name":"Jaime Kub-Yost","age":33,"location":"Zacharyhaven"}},{"attributes":{"name":"Ezekiel Jacobson","age":69,"location":"Port Aaron"}},{"attributes":{"name":"Dixie Dibbert","age":36,"location":"Garthside"}},{"attributes":{"name":"Everett Wilderman","age":36,"location":"West Casey"}},{"attributes":{"name":"Lyle Bernier I","age":69,"location":"Arianeshire"}},{"attributes":{"name":"Cathy Ankunding","age":66,"location":"Tracy"}},{"attributes":{"name":"Clyde Green","age":42,"location":"Carolchester"}},{"attributes":{"name":"Katrina Ritchie","age":27,"location":"Ashleighbury"}},{"attributes":{"name":"Elsie Wilkinson-Herman","age":29,"location":"Fort Brown"}},{"attributes":{"name":"Wilfred Ryan","age":57,"location":"East Trevashire"}},{"attributes":{"name":"Raheem Harvey","age":58,"location":"East Lauryn"}},{"attributes":{"name":"Carlton Ferry","age":58,"location":"Predovicbury"}},{"attributes":{"name":"Jared Davis","age":73,"location":"Lake Alda"}},{"attributes":{"name":"Anthony Fisher","age":23,"location":"West Assuntaside"}},{"attributes":{"name":"Candace Walter","age":78,"location":"Lake Kasandra"}},{"attributes":{"name":"Kaela Cummerata II","age":41,"location":"Hayesshire"}},{"attributes":{"name":"Shaniya Gerhold","age":32,"location":"VonRuedenview"}},{"attributes":{"name":"Irwin Herman V","age":66,"location":"Gardena"}},{"attributes":{"name":"Francisco Weissnat","age":64,"location":"Spokane Valley"}},{"attributes":{"name":"Jamie Klein","age":40,"location":"Dibbertfort"}},{"attributes":{"name":"Eduardo Kub","age":78,"location":"Willview"}},{"attributes":{"name":"Judy Fritsch","age":25,"location":"North Alison"}},{"attributes":{"name":"Martin Lubowitz","age":63,"location":"Rennerfort"}},{"attributes":{"name":"Evangeline Bernhard Sr.","age":38,"location":"New Bedford"}},{"attributes":{"name":"Sarah Strosin","age":66,"location":"Cincinnati"}},{"attributes":{"name":"Mindy Nicolas","age":31,"location":"West Keirahaven"}},{"attributes":{"name":"Van Ward","age":34,"location":"Lake Bobbieboro"}},{"attributes":{"name":"Layne Hoeger","age":79,"location":"Walkerfort"}},{"attributes":{"name":"Marvin Mills","age":51,"location":"New Clint"}},{"attributes":{"name":"Bert Oberbrunner","age":35,"location":"Fabiolashire"}},{"attributes":{"name":"Eugene Bashirian","age":39,"location":"Aloha"}},{"attributes":{"name":"Jazmyne Witting","age":56,"location":"South Hillard"}},{"attributes":{"name":"Ruby Dietrich","age":66,"location":"New Blaisetown"}},{"attributes":{"name":"Miss Billie Kessler","age":20,"location":"Kobestead"}},{"attributes":{"name":"Ms. Bonnie Bradtke","age":72,"location":"Prohaskaboro"}},{"attributes":{"name":"Jeffrey Grady","age":76,"location":"South Tarafurt"}},{"attributes":{"name":"Francis MacGyver","age":24,"location":"Fort Garthstead"}},{"attributes":{"name":"Torey Cassin","age":66,"location":"Shanelfurt"}},{"attributes":{"name":"Brendan Douglas DDS","age":60,"location":"East Nikita"}},{"attributes":{"name":"Lynette Hansen","age":27,"location":"Corona"}},{"attributes":{"name":"Pamela Mann","age":20,"location":"Reaganside"}},{"attributes":{"name":"Tabitha Simonis","age":76,"location":"Weissnatchester"}},{"attributes":{"name":"Dorthy Prohaska","age":76,"location":"Port Myrtice"}},{"attributes":{"name":"Erika Wunsch","age":63,"location":"Hampton"}},{"attributes":{"name":"Seth White","age":38,"location":"Huelsstead"}},{"attributes":{"name":"Dante Gusikowski","age":28,"location":"South Anastacio"}},{"attributes":{"name":"Camron Ondricka","age":62,"location":"Joannytown"}},{"attributes":{"name":"Alisa Wuckert","age":49,"location":"Potomac"}},{"attributes":{"name":"Sam Krajcik","age":78,"location":"Boehmhaven"}},{"attributes":{"name":"Lauren Thiel","age":70,"location":"Amparoworth"}},{"attributes":{"name":"Jared Haag","age":26,"location":"Port Jannie"}},{"attributes":{"name":"Dr. Georgia Heathcote PhD","age":47,"location":"Wymanton"}},{"attributes":{"name":"Earline Batz","age":66,"location":"South Lempiview"}},{"attributes":{"name":"Adell Trantow","age":51,"location":"Gillianside"}},{"attributes":{"name":"Lloyd Windler","age":46,"location":"Fort Bryon"}},{"attributes":{"name":"Earnest Zulauf","age":54,"location":"East Idellmouth"}},{"attributes":{"name":"Beth Wisoky II","age":53,"location":"Albuquerque"}},{"attributes":{"name":"Audie Willms","age":18,"location":"South Matilde"}},{"attributes":{"name":"Edna Lesch","age":28,"location":"St. Cloud"}},{"attributes":{"name":"Danielle Powlowski","age":80,"location":"Hilpertfort"}},{"attributes":{"name":"Gloria Sauer","age":68,"location":"Evansfield"}},{"attributes":{"name":"Kay Altenwerth","age":50,"location":"Vitostead"}},{"attributes":{"name":"Kerry McCullough","age":41,"location":"South Godfreyhaven"}},{"attributes":{"name":"Vernon Heidenreich DVM","age":45,"location":"New Marta"}},{"attributes":{"name":"Amely Howe","age":37,"location":"Emmettberg"}},{"attributes":{"name":"Hanna Mayer I","age":60,"location":"Mohrland"}},{"attributes":{"name":"Mr. Leo Ebert","age":47,"location":"East Velda"}},{"attributes":{"name":"Gloria Little","age":36,"location":"East Hanna"}},{"attributes":{"name":"Gary Wolf DDS","age":33,"location":"West Dixiemouth"}},{"attributes":{"name":"Rosalyn Pfeffer","age":21,"location":"Altenwerthview"}},{"attributes":{"name":"Nyah Schroeder","age":46,"location":"Pourosworth"}},{"attributes":{"name":"Leone Crist","age":53,"location":"South Estell"}},{"attributes":{"name":"Keven Leannon","age":32,"location":"Eltaberg"}},{"attributes":{"name":"Donnie Collier PhD","age":62,"location":"Port Rafaelafort"}},{"attributes":{"name":"Roberta O'Connell","age":51,"location":"Lake Armaniport"}},{"attributes":{"name":"Carole Schinner","age":24,"location":"Fort Juliusport"}},{"attributes":{"name":"Sanford Murazik","age":25,"location":"West Briceburgh"}},{"attributes":{"name":"Leonie Quitzon","age":64,"location":"Lake Evalyn"}},{"attributes":{"name":"Earnest Bailey","age":63,"location":"Westminster"}},{"attributes":{"name":"Roman O'Conner","age":58,"location":"Trujillo Alto"}},{"attributes":{"name":"Hattie Prohaska","age":21,"location":"Janelleshire"}},{"attributes":{"name":"Jon Wiza","age":48,"location":"Lake Makayla"}},{"attributes":{"name":"Eric O'Reilly","age":55,"location":"Terre Haute"}},{"attributes":{"name":"Belinda Schuster","age":44,"location":"Syracuse"}},{"attributes":{"name":"Dr. Claudine Vandervort","age":71,"location":"Evestad"}},{"attributes":{"name":"Kristoffer Dickens","age":21,"location":"Romatown"}},{"attributes":{"name":"Reed Heller","age":35,"location":"Lake Lisastead"}},{"attributes":{"name":"Constantin Cassin","age":60,"location":"West Hartford"}},{"attributes":{"name":"Brandon Mayert","age":67,"location":"Skileston"}},{"attributes":{"name":"Edgardo Haley Jr.","age":54,"location":"Lake Charityburgh"}},{"attributes":{"name":"Coty Rosenbaum","age":75,"location":"Lake Darleneville"}},{"attributes":{"name":"Nicola King","age":79,"location":"West Filiberto"}},{"attributes":{"name":"Terry Tremblay","age":59,"location":"Chattanooga"}},{"attributes":{"name":"Trevor Gutkowski","age":37,"location":"East Bellaview"}},{"attributes":{"name":"Carlos Donnelly","age":28,"location":"Sheboygan"}},{"attributes":{"name":"Kale Parker","age":34,"location":"South Sigurdstead"}},{"attributes":{"name":"Cary Pacocha DVM","age":61,"location":"Port Benny"}},{"attributes":{"name":"Geovany Keeling","age":37,"location":"Webershire"}},{"attributes":{"name":"Myriam Bergstrom","age":75,"location":"Reichertburgh"}},{"attributes":{"name":"Mr. Gerald Corkery","age":43,"location":"Bentontown"}},{"attributes":{"name":"Rolando Effertz-Gleason","age":78,"location":"Logan"}},{"attributes":{"name":"Wilbert Cruickshank-Gusikowski","age":35,"location":"Hanford"}},{"attributes":{"name":"Vivian Johns","age":80,"location":"Elizabeth"}},{"attributes":{"name":"Camille Ward","age":71,"location":"Melodycester"}},{"attributes":{"name":"Marcella Hettinger","age":80,"location":"Raymondview"}},{"attributes":{"name":"Sheridan Mitchell","age":44,"location":"North Agustinside"}},{"attributes":{"name":"Natalie Lakin","age":78,"location":"State College"}},{"attributes":{"name":"Buddy Aufderhar","age":46,"location":"Adamview"}},{"attributes":{"name":"Otis Schulist","age":31,"location":"Lake Richie"}},{"attributes":{"name":"Shelia King","age":30,"location":"Herzogworth"}},{"attributes":{"name":"Leona Schmidt","age":63,"location":"Jeramieberg"}},{"attributes":{"name":"Tamara Wilderman","age":57,"location":"Braxtonbury"}},{"attributes":{"name":"Isac Ernser","age":43,"location":"Port Orange"}},{"attributes":{"name":"Bessie Orn-Graham","age":24,"location":"Chico"}},{"attributes":{"name":"Noah Pacocha","age":74,"location":"West Delmerworth"}},{"attributes":{"name":"Marlen Fisher","age":43,"location":"North Shane"}},{"attributes":{"name":"Dr. Floyd Parisian","age":67,"location":"Bayerfurt"}},{"attributes":{"name":"Pamela Jacobs III","age":66,"location":"Stacyside"}},{"attributes":{"name":"Miss Rex Douglas","age":77,"location":"East Kalebstead"}},{"attributes":{"name":"Virgil Conroy","age":53,"location":"Parker"}},{"attributes":{"name":"Juan Kutch","age":61,"location":"Novamouth"}},{"attributes":{"name":"Celine Morar","age":78,"location":"Antwanfurt"}},{"attributes":{"name":"Rebeca Kuvalis-Klocko","age":26,"location":"Karsonland"}},{"attributes":{"name":"Russel Borer","age":73,"location":"Lake Barrettfurt"}},{"attributes":{"name":"Darrell Feil","age":73,"location":"Port Laurelland"}},{"attributes":{"name":"Michele Breitenberg","age":69,"location":"Lowell"}},{"attributes":{"name":"Greg Kunde","age":48,"location":"Somerville"}},{"attributes":{"name":"Miss Kate Ferry","age":24,"location":"Fort Ellsworth"}},{"attributes":{"name":"Faith Hand","age":52,"location":"South Virgil"}},{"attributes":{"name":"Doris Rowe","age":62,"location":"South Oralborough"}},{"attributes":{"name":"Patrick Stehr","age":73,"location":"Lake Emmalee"}},{"attributes":{"name":"Clyde Bode","age":77,"location":"Hammond"}},{"attributes":{"name":"Mr. Duane Oberbrunner Jr.","age":25,"location":"Fort Princessfield"}},{"attributes":{"name":"Charlie Hirthe","age":51,"location":"North Bartholomeview"}},{"attributes":{"name":"Prince Hettinger","age":73,"location":"Cummingsmouth"}},{"attributes":{"name":"Tyson Lindgren","age":21,"location":"North Natcester"}},{"attributes":{"name":"Carissa Franey","age":34,"location":"Hadleyworth"}},{"attributes":{"name":"Mrs. Anne Becker","age":53,"location":"East Emmastead"}},{"attributes":{"name":"Dr. Vicky Schmitt","age":27,"location":"Nolanfield"}},{"attributes":{"name":"Carley Spinka","age":22,"location":"Jacobsonshire"}},{"attributes":{"name":"Troy Hauck","age":21,"location":"Bradview"}},{"attributes":{"name":"Prudence Hilll","age":27,"location":"Quigleyberg"}},{"attributes":{"name":"Mrs. Mae Yost","age":75,"location":"Chancebury"}},{"attributes":{"name":"Mac Trantow Sr.","age":52,"location":"Rosenbaumstead"}},{"attributes":{"name":"Milton Kohler","age":39,"location":"South Kathleenfurt"}},{"attributes":{"name":"Cruz Stark","age":79,"location":"Livonia"}},{"attributes":{"name":"Ellis Heller Jr.","age":52,"location":"Macyburgh"}},{"attributes":{"name":"Cleo Maggio","age":62,"location":"New Sandy"}},{"attributes":{"name":"Izabella Hudson II","age":72,"location":"Glen Burnie"}},{"attributes":{"name":"Elvie Kihn","age":67,"location":"South Garrison"}},{"attributes":{"name":"Renee Ledner","age":34,"location":"Fort Mitchell"}},{"attributes":{"name":"Aletha Lang","age":40,"location":"East Valentineview"}},{"attributes":{"name":"Angel Lind","age":33,"location":"Cummingsberg"}},{"attributes":{"name":"Dr. Ebony O'Hara","age":35,"location":"National City"}},{"attributes":{"name":"Johnathan Marks DVM","age":52,"location":"Tyrellchester"}},{"attributes":{"name":"Doreen Klocko","age":40,"location":"New Richmondchester"}},{"attributes":{"name":"Tanya Batz","age":70,"location":"Temple"}},{"attributes":{"name":"Alfred Koelpin","age":53,"location":"Goyettestad"}},{"attributes":{"name":"Nora Zboncak","age":49,"location":"South Ruth"}},{"attributes":{"name":"Concepcion Beier II","age":37,"location":"Tristinton"}},{"attributes":{"name":"Grace Kassulke","age":75,"location":"Labadieworth"}},{"attributes":{"name":"Elizabeth Crona DDS","age":34,"location":"Miracleshire"}},{"attributes":{"name":"Randolph Lueilwitz","age":25,"location":"Domenicktown"}},{"attributes":{"name":"Leland Wisozk","age":22,"location":"Romanworth"}},{"attributes":{"name":"Susie Morissette","age":20,"location":"West Marlon"}},{"attributes":{"name":"Rodolfo Lind","age":76,"location":"Oberbrunnerfield"}},{"attributes":{"name":"Micah Larson","age":51,"location":"New Jaylinfurt"}},{"attributes":{"name":"Kate Hoppe-Kassulke","age":56,"location":"South Cynthia"}},{"attributes":{"name":"Dr. Geoffrey Ernser","age":47,"location":"North Rafaelfort"}},{"attributes":{"name":"Mr. Marjorie Sawayn","age":32,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Darryl Schiller","age":22,"location":"Annandale"}},{"attributes":{"name":"Rufus Turcotte Jr.","age":22,"location":"Lake Shyanne"}},{"attributes":{"name":"Citlalli Wisoky","age":49,"location":"New Joville"}},{"attributes":{"name":"Kim Altenwerth","age":62,"location":"North Nicola"}},{"attributes":{"name":"Ernesto Mayer","age":40,"location":"MacGyverbury"}},{"attributes":{"name":"Abraham Thompson","age":62,"location":"Eden Prairie"}},{"attributes":{"name":"Shannon Ritchie","age":60,"location":"Janieton"}},{"attributes":{"name":"Miss Jacinto Hoppe","age":25,"location":"Fort Kristin"}},{"attributes":{"name":"Freddy Ledner","age":26,"location":"Trentborough"}},{"attributes":{"name":"Dell Brakus","age":30,"location":"New Mohammed"}},{"attributes":{"name":"Karen Schuppe","age":68,"location":"Luettgencester"}},{"attributes":{"name":"Marsha Nikolaus","age":75,"location":"Arvidport"}},{"attributes":{"name":"Jermey Gleichner","age":74,"location":"Philadelphia"}},{"attributes":{"name":"Sean Daugherty","age":44,"location":"West Briana"}},{"attributes":{"name":"Iliana Rogahn DDS","age":38,"location":"Corwinland"}},{"attributes":{"name":"Miss Delbert Cole","age":52,"location":"Madieburgh"}},{"attributes":{"name":"Morris Hintz","age":52,"location":"Port Cynthiachester"}},{"attributes":{"name":"Mr. Nannie Hermiston","age":64,"location":"West Jaeden"}},{"attributes":{"name":"Karley Turner","age":32,"location":"Sengerhaven"}},{"attributes":{"name":"Ms. Jessica Greenfelder","age":44,"location":"Assuntaborough"}},{"attributes":{"name":"Raegan Fadel II","age":28,"location":"Tyreetown"}},{"attributes":{"name":"Ms. Cedrick Marks","age":60,"location":"Fort Haileeboro"}},{"attributes":{"name":"Mr. Bill Kirlin","age":36,"location":"East Casey"}},{"attributes":{"name":"Susanna Feeney-Thompson","age":25,"location":"Oceanside"}},{"attributes":{"name":"Miss Erma Kling IV","age":49,"location":"Lake Seamus"}},{"attributes":{"name":"Rowan Shanahan","age":43,"location":"South Edgar"}},{"attributes":{"name":"Brad Beer","age":31,"location":"Horacefield"}},{"attributes":{"name":"Felipe Ryan","age":18,"location":"Kreigerville"}},{"attributes":{"name":"Rylee Kub","age":79,"location":"Covina"}},{"attributes":{"name":"Darin Jakubowski Jr.","age":50,"location":"Topeka"}},{"attributes":{"name":"Lynn Wisoky Sr.","age":25,"location":"Fort Clementview"}},{"attributes":{"name":"Antonia Waters DDS","age":19,"location":"Lake Dorris"}},{"attributes":{"name":"Antonietta Williamson","age":51,"location":"South Chelsea"}},{"attributes":{"name":"Joan Mraz","age":71,"location":"Clayberg"}},{"attributes":{"name":"Ramiro Hand","age":77,"location":"Coral Gables"}},{"attributes":{"name":"Kelley Turcotte III","age":48,"location":"Santa Maria"}},{"attributes":{"name":"Jeanette Dooley","age":58,"location":"North Dariana"}},{"attributes":{"name":"Jayme Wolff","age":31,"location":"East Genevieve"}},{"attributes":{"name":"Hans Beahan","age":53,"location":"Batzview"}},{"attributes":{"name":"Loy Botsford","age":26,"location":"Lancaster"}},{"attributes":{"name":"Dr. Jessica Schulist","age":53,"location":"Collinsburgh"}},{"attributes":{"name":"Peter King","age":69,"location":"New Marianne"}},{"attributes":{"name":"Justus Wilkinson","age":36,"location":"Port Francescochester"}},{"attributes":{"name":"Louise Jerde","age":45,"location":"Shieldsfort"}},{"attributes":{"name":"Miss Kristine Skiles","age":47,"location":"North Ulicesburgh"}},{"attributes":{"name":"Teri Orn II","age":57,"location":"East Rickiefort"}},{"attributes":{"name":"Kristin Flatley","age":33,"location":"Elgin"}},{"attributes":{"name":"Sheila Block","age":65,"location":"Reaganworth"}},{"attributes":{"name":"Jeremie Wyman","age":27,"location":"Grahamstead"}},{"attributes":{"name":"Rudolph Kirlin","age":59,"location":"Huelsfurt"}},{"attributes":{"name":"Gerald Aufderhar","age":48,"location":"Manteca"}},{"attributes":{"name":"Jermaine Schmitt","age":74,"location":"Walnut Creek"}},{"attributes":{"name":"Orlo Mills","age":49,"location":"East Fredview"}},{"attributes":{"name":"Jim Marvin","age":53,"location":"Harveyfort"}},{"attributes":{"name":"Maria O'Kon","age":37,"location":"North Theresiachester"}},{"attributes":{"name":"Lorene Baumbach","age":74,"location":"East Veronicafurt"}},{"attributes":{"name":"Amelia Thompson","age":63,"location":"Huntersville"}},{"attributes":{"name":"Suzanne Bergstrom","age":54,"location":"Buffalo Grove"}},{"attributes":{"name":"Halle Bernier","age":38,"location":"Elkhart"}},{"attributes":{"name":"Mrs. Carrie Ritchie","age":25,"location":"Camarillo"}},{"attributes":{"name":"Tomas Romaguera","age":45,"location":"Russelland"}},{"attributes":{"name":"Don Leannon","age":37,"location":"Morganview"}},{"attributes":{"name":"Merl Stokes","age":34,"location":"South Sheridan"}},{"attributes":{"name":"Mrs. Ava Zemlak","age":32,"location":"Osbaldofort"}},{"attributes":{"name":"Larry Kuvalis","age":53,"location":"Joanyberg"}},{"attributes":{"name":"Carlos Watsica III","age":26,"location":"Bertramshire"}},{"attributes":{"name":"Jane Schimmel","age":28,"location":"New Cale"}},{"attributes":{"name":"Michaela Veum I","age":26,"location":"Fort Ward"}},{"attributes":{"name":"Troy Altenwerth","age":20,"location":"Eulaport"}},{"attributes":{"name":"Major Schuppe Sr.","age":51,"location":"North Marcelino"}},{"attributes":{"name":"Rogelio Volkman","age":74,"location":"New Amber"}},{"attributes":{"name":"Irving Dicki","age":18,"location":"Bethesda"}},{"attributes":{"name":"Karen Hammes MD","age":19,"location":"Seanboro"}},{"attributes":{"name":"Lemuel Becker","age":57,"location":"New Karley"}},{"attributes":{"name":"Roosevelt Blick","age":49,"location":"Fort Carmellamouth"}},{"attributes":{"name":"Braulio Goodwin Jr.","age":75,"location":"Evansville"}},{"attributes":{"name":"Walter Gutmann","age":22,"location":"Ashburn"}},{"attributes":{"name":"Tyler Lemke","age":62,"location":"East Cristinacester"}},{"attributes":{"name":"Cristopher Weissnat","age":40,"location":"North Domenica"}},{"attributes":{"name":"Trevor Powlowski","age":50,"location":"South Janie"}},{"attributes":{"name":"Ernestina Kunze","age":28,"location":"Wymanshire"}},{"attributes":{"name":"Miss Meagan Lindgren","age":49,"location":"Claireside"}},{"attributes":{"name":"Baby Cartwright","age":51,"location":"Lailaland"}},{"attributes":{"name":"Whitney Pfeffer","age":23,"location":"Elyria"}},{"attributes":{"name":"Albin Leuschke","age":21,"location":"Fort Marlonburgh"}},{"attributes":{"name":"Kiara Hettinger","age":60,"location":"Chico"}},{"attributes":{"name":"Ismael Shanahan","age":52,"location":"East Aryanna"}},{"attributes":{"name":"Milton Johns","age":41,"location":"West Malcolmchester"}},{"attributes":{"name":"Cynthia Bahringer I","age":32,"location":"East Lucas"}},{"attributes":{"name":"Margie Quigley","age":34,"location":"Buckridgestad"}},{"attributes":{"name":"Lucille Zulauf","age":43,"location":"West Jay"}},{"attributes":{"name":"Mrs. Freeda Hoppe","age":39,"location":"Arvada"}},{"attributes":{"name":"Gregory Orn","age":72,"location":"Evelynville"}},{"attributes":{"name":"Jan Jones V","age":68,"location":"South Ethylstead"}},{"attributes":{"name":"Barry Effertz","age":52,"location":"Burien"}},{"attributes":{"name":"Tyson Hansen","age":76,"location":"York"}},{"attributes":{"name":"Lula Graham","age":67,"location":"West Jocelynstad"}},{"attributes":{"name":"Lionel Lowe","age":34,"location":"North Danmouth"}},{"attributes":{"name":"Patience Jakubowski","age":30,"location":"New Yasmineville"}},{"attributes":{"name":"Denis Prosacco III","age":59,"location":"Lonport"}},{"attributes":{"name":"Kristi Rice","age":25,"location":"Kutchside"}},{"attributes":{"name":"Roman Hilll","age":27,"location":"Adamsville"}},{"attributes":{"name":"Terence Osinski","age":18,"location":"New Mariaview"}},{"attributes":{"name":"Ben Spencer","age":74,"location":"Fort Corinetown"}},{"attributes":{"name":"Mathew McClure II","age":60,"location":"New Ethelynberg"}},{"attributes":{"name":"Stephanie Franecki","age":38,"location":"Wittingport"}},{"attributes":{"name":"Carlos Langworth","age":74,"location":"Stephanyfort"}},{"attributes":{"name":"Eric Orn-Baumbach","age":57,"location":"North Issacborough"}},{"attributes":{"name":"Christina Larkin","age":38,"location":"Antoninaville"}},{"attributes":{"name":"Nia Rau","age":48,"location":"Batzfurt"}},{"attributes":{"name":"Frederick Nolan","age":72,"location":"Port Kelli"}},{"attributes":{"name":"John Rohan Jr.","age":21,"location":"Maricopa"}},{"attributes":{"name":"Bob Rogahn","age":37,"location":"Bellflower"}},{"attributes":{"name":"Lee Pagac","age":61,"location":"West Zetta"}},{"attributes":{"name":"Finn Bartell","age":66,"location":"Romainetown"}},{"attributes":{"name":"Joann Wilkinson","age":76,"location":"Winonastad"}},{"attributes":{"name":"Perry Connelly","age":44,"location":"Mentor"}},{"attributes":{"name":"Aaron Bogisich","age":75,"location":"Lake Ariel"}},{"attributes":{"name":"Owen Kohler","age":28,"location":"Gutmannchester"}},{"attributes":{"name":"Branson Franecki","age":34,"location":"Texas City"}},{"attributes":{"name":"Ashley Ratke","age":57,"location":"South Baylee"}},{"attributes":{"name":"Nelson Hane","age":19,"location":"Port Stacey"}},{"attributes":{"name":"Allan Ankunding IV","age":39,"location":"Ann Arbor"}},{"attributes":{"name":"Darrell O'Keefe","age":18,"location":"Chapel Hill"}},{"attributes":{"name":"Angel Yost","age":25,"location":"Lake Rubyeburgh"}},{"attributes":{"name":"Annie Kemmer","age":50,"location":"Fort Susie"}},{"attributes":{"name":"Gilbert Rempel","age":71,"location":"Fullerton"}},{"attributes":{"name":"Dallas DuBuque Sr.","age":46,"location":"Pourosbury"}},{"attributes":{"name":"Mr. Idell Kohler","age":49,"location":"North Ellencester"}},{"attributes":{"name":"Jerry Jenkins","age":26,"location":"North Clotildetown"}},{"attributes":{"name":"Wendell Hegmann","age":18,"location":"Appleton"}},{"attributes":{"name":"Kailee O'Kon","age":58,"location":"North Jacquesstad"}},{"attributes":{"name":"Ron Huels","age":43,"location":"New Priceport"}},{"attributes":{"name":"Meggie Gerhold V","age":31,"location":"Port Alva"}},{"attributes":{"name":"Rickey Kulas III","age":51,"location":"North Dejachester"}},{"attributes":{"name":"Janice Rath","age":23,"location":"Eagan"}},{"attributes":{"name":"Dr. Oliver Schuster","age":34,"location":"New Kylabury"}},{"attributes":{"name":"Margaret Cruickshank","age":26,"location":"Rempelshire"}},{"attributes":{"name":"Anibal Beer IV","age":60,"location":"Castro Valley"}},{"attributes":{"name":"Emely Koss","age":19,"location":"North Helen"}},{"attributes":{"name":"Lourdes Ullrich","age":27,"location":"Rockwall"}},{"attributes":{"name":"Cole Pfeffer","age":45,"location":"Sawaynport"}},{"attributes":{"name":"Madelynn Goodwin","age":25,"location":"East Jacklyn"}},{"attributes":{"name":"Norman Boyer V","age":40,"location":"Gerholdchester"}},{"attributes":{"name":"Isaias Ernser","age":66,"location":"Liamport"}},{"attributes":{"name":"Rufus Jenkins","age":43,"location":"Davie"}},{"attributes":{"name":"Fernando Franecki","age":68,"location":"West Rudyborough"}},{"attributes":{"name":"Domenica Purdy","age":24,"location":"Bartellside"}},{"attributes":{"name":"Clara Pouros-Schmitt","age":39,"location":"South Katrina"}},{"attributes":{"name":"Tyler Wintheiser","age":48,"location":"South Keyshawn"}},{"attributes":{"name":"Nancy Skiles","age":56,"location":"Friedrichmouth"}},{"attributes":{"name":"Debra Paucek","age":77,"location":"Bechtelarside"}},{"attributes":{"name":"Lance Lemke-Ullrich","age":30,"location":"Kurtisfield"}},{"attributes":{"name":"Andrew Mitchell","age":49,"location":"Russelmouth"}},{"attributes":{"name":"Malachi Goyette","age":33,"location":"New Effiefurt"}},{"attributes":{"name":"Ebba Champlin PhD","age":32,"location":"Mohrworth"}},{"attributes":{"name":"Anibal Windler","age":36,"location":"Lake Lukasbury"}},{"attributes":{"name":"Ellis Hammes","age":51,"location":"Boynton Beach"}},{"attributes":{"name":"Chet Howe","age":67,"location":"Burleson"}},{"attributes":{"name":"Holly Bechtelar","age":45,"location":"Port Priscillamouth"}},{"attributes":{"name":"Edward Renner","age":23,"location":"East Annieworth"}},{"attributes":{"name":"Doreen Lebsack","age":73,"location":"West Coralie"}},{"attributes":{"name":"Maureen Mayert","age":30,"location":"Trentonbury"}},{"attributes":{"name":"Cameron Haag","age":28,"location":"Armstrongstad"}},{"attributes":{"name":"Lena Grimes","age":72,"location":"North Stacybury"}},{"attributes":{"name":"Calvin Leffler","age":46,"location":"McLaughlinland"}},{"attributes":{"name":"Pearlie Cremin","age":60,"location":"South Estefaniachester"}},{"attributes":{"name":"Tate Waelchi Jr.","age":57,"location":"Ryleighburgh"}},{"attributes":{"name":"Pedro Deckow","age":19,"location":"Alpharetta"}},{"attributes":{"name":"Lewis Heaney","age":22,"location":"Jovanfort"}},{"attributes":{"name":"Gregory Harvey PhD","age":38,"location":"Rosemarieport"}},{"attributes":{"name":"Kelli Pouros-Bernier","age":66,"location":"North Highlands"}},{"attributes":{"name":"Roosevelt Gerlach","age":31,"location":"East Chaunceyborough"}},{"attributes":{"name":"Julia Barrows","age":42,"location":"Port Neal"}},{"attributes":{"name":"Carlos DuBuque","age":22,"location":"Burke"}},{"attributes":{"name":"Mr. Jamarcus Mosciski","age":47,"location":"League City"}},{"attributes":{"name":"Reilly Davis","age":78,"location":"Schroedertown"}},{"attributes":{"name":"Richmond Stehr","age":30,"location":"West Juston"}},{"attributes":{"name":"Rita Feest","age":50,"location":"Kingfield"}},{"attributes":{"name":"Christian Hyatt","age":54,"location":"East Daniella"}},{"attributes":{"name":"Dr. Joey Olson","age":79,"location":"New Athena"}},{"attributes":{"name":"Vincent Schaefer","age":55,"location":"Ryannworth"}},{"attributes":{"name":"Kristy Kling","age":18,"location":"New Genoveva"}},{"attributes":{"name":"Federico Collier","age":66,"location":"Noemiville"}},{"attributes":{"name":"Dave Christiansen","age":25,"location":"Flagstaff"}},{"attributes":{"name":"Lola Stoltenberg I","age":46,"location":"Lake Harrisonboro"}},{"attributes":{"name":"Haven Pfeffer","age":72,"location":"Port Margeland"}},{"attributes":{"name":"Trevor Nolan","age":78,"location":"Fort Stephany"}},{"attributes":{"name":"Zelda Kertzmann","age":36,"location":"East Earnestport"}},{"attributes":{"name":"Meaghan O'Hara","age":78,"location":"East Timothyshire"}},{"attributes":{"name":"Audie Feeney","age":69,"location":"South Trevionberg"}},{"attributes":{"name":"Kayleigh Halvorson","age":37,"location":"Fort Candice"}},{"attributes":{"name":"Leo Green","age":59,"location":"Pfefferborough"}},{"attributes":{"name":"Theresia Stamm","age":44,"location":"South Kaletown"}},{"attributes":{"name":"Marilou Vandervort","age":53,"location":"Littelborough"}},{"attributes":{"name":"Janie McGlynn","age":68,"location":"Jacobimouth"}},{"attributes":{"name":"Gordon Volkman","age":58,"location":"Gussiechester"}},{"attributes":{"name":"Olga D'Amore MD","age":73,"location":"Karelleshire"}},{"attributes":{"name":"Dwight Howell","age":34,"location":"Bell Gardens"}},{"attributes":{"name":"Miss Francisco Glover","age":47,"location":"Scotfort"}},{"attributes":{"name":"Rosemarie Jacobson DDS","age":52,"location":"Fannymouth"}},{"attributes":{"name":"Nicolas Crist","age":43,"location":"Friesenfurt"}},{"attributes":{"name":"Terrell Breitenberg-Feest DVM","age":24,"location":"East Zelmaberg"}},{"attributes":{"name":"Mr. Akeem Gottlieb","age":60,"location":"North Haleigh"}},{"attributes":{"name":"Precious Moen","age":70,"location":"Dorthaboro"}},{"attributes":{"name":"Irvin Raynor","age":30,"location":"Danniestead"}},{"attributes":{"name":"Kristine Crist III","age":43,"location":"South Kaydenstad"}},{"attributes":{"name":"Dominick White","age":49,"location":"North Eric"}},{"attributes":{"name":"Mrs. Kade Altenwerth","age":39,"location":"Emersonton"}},{"attributes":{"name":"Jenna Gislason","age":50,"location":"Windlerstead"}},{"attributes":{"name":"Timothy Hand","age":34,"location":"Nataliemouth"}},{"attributes":{"name":"Rachael Ondricka","age":74,"location":"Mansfield"}},{"attributes":{"name":"Jeromy Romaguera","age":42,"location":"Raleigh"}},{"attributes":{"name":"Gwen Dare","age":33,"location":"Gerryworth"}},{"attributes":{"name":"Bethany Miller","age":45,"location":"New Joannyville"}},{"attributes":{"name":"Blanca Dietrich","age":28,"location":"St. George"}},{"attributes":{"name":"Debbie Aufderhar","age":50,"location":"Chapel Hill"}},{"attributes":{"name":"Brandy D'Amore","age":34,"location":"Hannahshire"}},{"attributes":{"name":"Darian Hayes","age":72,"location":"Lake Kenny"}},{"attributes":{"name":"Nancy Ortiz Jr.","age":26,"location":"Kertzmannview"}},{"attributes":{"name":"Carla Runolfsdottir","age":48,"location":"Phoenix"}},{"attributes":{"name":"Ramiro Casper","age":43,"location":"Georgetown"}},{"attributes":{"name":"Kyleigh Mayer","age":23,"location":"Burleson"}},{"attributes":{"name":"Elissa Harber","age":34,"location":"South Mina"}},{"attributes":{"name":"Allene McDermott Jr.","age":54,"location":"Denton"}},{"attributes":{"name":"Otis O'Reilly","age":20,"location":"Lake Havasu City"}},{"attributes":{"name":"Jaylan Emard","age":54,"location":"Lakinfield"}},{"attributes":{"name":"Adolphus Johnson","age":58,"location":"Fort Brett"}},{"attributes":{"name":"Timothy Botsford","age":41,"location":"New Imelda"}},{"attributes":{"name":"Rhonda Reilly","age":37,"location":"West Ricoworth"}},{"attributes":{"name":"Casey Mayert","age":77,"location":"Fort Osborne"}},{"attributes":{"name":"Litzy Murphy","age":80,"location":"Sanfordside"}},{"attributes":{"name":"Kara Simonis","age":53,"location":"Aliciafurt"}},{"attributes":{"name":"Leland Cruickshank","age":79,"location":"East Cedrick"}},{"attributes":{"name":"Luella Trantow","age":37,"location":"Giovanihaven"}},{"attributes":{"name":"Scott Waters","age":54,"location":"Port Abigayle"}},{"attributes":{"name":"Ernesto Stark","age":71,"location":"New Itzel"}},{"attributes":{"name":"Maida Rippin","age":22,"location":"New Dorriston"}},{"attributes":{"name":"Erna Nolan","age":65,"location":"Nienowstad"}},{"attributes":{"name":"Garrison Schumm","age":33,"location":"West Jasen"}},{"attributes":{"name":"Christina Brekke-Waters IV","age":63,"location":"Lomaborough"}},{"attributes":{"name":"Jessica Grant","age":23,"location":"West Araland"}},{"attributes":{"name":"Marlon Swaniawski","age":37,"location":"Georgiannastad"}},{"attributes":{"name":"Herminia Quitzon","age":70,"location":"Miloland"}},{"attributes":{"name":"Coty Halvorson I","age":46,"location":"South Khalilshire"}},{"attributes":{"name":"Kassandra Haley","age":77,"location":"Davie"}},{"attributes":{"name":"Tara Ryan","age":49,"location":"Deonmouth"}},{"attributes":{"name":"Sonja Kassulke","age":41,"location":"Sawaynfort"}},{"attributes":{"name":"Fernando Harris","age":38,"location":"South Wilhelmburgh"}},{"attributes":{"name":"Austin Prosacco","age":72,"location":"North Trent"}},{"attributes":{"name":"Paxton Rau","age":36,"location":"Port Dameoncester"}},{"attributes":{"name":"Joshua Hansen","age":55,"location":"Visalia"}},{"attributes":{"name":"Jan Tremblay","age":78,"location":"Leacester"}},{"attributes":{"name":"Mr. Percy Glover","age":38,"location":"Liaview"}},{"attributes":{"name":"Johnpaul Jenkins","age":43,"location":"Karlstad"}},{"attributes":{"name":"Kathryn Cassin V","age":59,"location":"Sylvesterfurt"}},{"attributes":{"name":"Virgil Stehr","age":35,"location":"West Rupert"}},{"attributes":{"name":"Dr. Elsie Feeney","age":45,"location":"Bethchester"}},{"attributes":{"name":"Dr. Monserrate Wilkinson","age":76,"location":"South San Francisco"}},{"attributes":{"name":"Vicente Marks III","age":55,"location":"Torranceton"}},{"attributes":{"name":"Paxton Upton Jr.","age":43,"location":"West Kaitlynside"}},{"attributes":{"name":"Bob Lemke","age":74,"location":"Hollywood"}},{"attributes":{"name":"Pablo Cartwright III","age":64,"location":"North Barney"}},{"attributes":{"name":"Estevan Price","age":49,"location":"Lehi"}},{"attributes":{"name":"Faith Nader","age":37,"location":"Hansenburgh"}},{"attributes":{"name":"Brayan Lakin","age":57,"location":"Atlanta"}},{"attributes":{"name":"Cathy Hagenes","age":59,"location":"Lake Ethel"}},{"attributes":{"name":"Alyssa Johnson MD","age":23,"location":"Redding"}},{"attributes":{"name":"Guiseppe Langworth","age":51,"location":"Uriahside"}},{"attributes":{"name":"Tyra Gleason","age":71,"location":"Neilville"}},{"attributes":{"name":"Casimir Gleason","age":62,"location":"New Bailey"}},{"attributes":{"name":"Marcos Ebert V","age":45,"location":"Fort Nicolaberg"}},{"attributes":{"name":"Maurice Kiehn","age":42,"location":"Lake Werner"}},{"attributes":{"name":"Mattie Spinka","age":21,"location":"Rochester Hills"}},{"attributes":{"name":"Russell Heidenreich I","age":22,"location":"Smithville"}},{"attributes":{"name":"Josie Johnston","age":35,"location":"Justusfield"}},{"attributes":{"name":"Dr. Oscar Beatty","age":61,"location":"Selinaboro"}},{"attributes":{"name":"Lindsay Lesch DVM","age":34,"location":"Katherineshire"}},{"attributes":{"name":"Orlando Adams","age":47,"location":"Alannachester"}},{"attributes":{"name":"Elise Jaskolski","age":51,"location":"New Carloschester"}},{"attributes":{"name":"Jan Metz","age":51,"location":"Thorastad"}},{"attributes":{"name":"Mr. Tyler Graham","age":69,"location":"Lake Efrenboro"}},{"attributes":{"name":"Daphney Rau","age":24,"location":"South Jarrod"}},{"attributes":{"name":"Michele Hamill","age":57,"location":"East Ryleeburgh"}},{"attributes":{"name":"Makenzie Paucek","age":64,"location":"Raphaelshire"}},{"attributes":{"name":"Jon Kohler","age":73,"location":"Fort Raul"}},{"attributes":{"name":"Dusty Bruen","age":56,"location":"Tinley Park"}},{"attributes":{"name":"Corey Hettinger","age":20,"location":"East Luther"}},{"attributes":{"name":"Jeannie Emard-Larson","age":53,"location":"Hanford"}},{"attributes":{"name":"Lula Cronin","age":51,"location":"Lake Lindsayberg"}},{"attributes":{"name":"Junius Hand","age":77,"location":"Blandaport"}},{"attributes":{"name":"Willis Block II","age":71,"location":"Ikefurt"}},{"attributes":{"name":"Lee Hegmann","age":47,"location":"North Burnice"}},{"attributes":{"name":"Valerie West","age":58,"location":"Shieldsland"}},{"attributes":{"name":"Kylie Bins","age":51,"location":"West Lillian"}},{"attributes":{"name":"Ronald Brakus","age":21,"location":"West Milan"}},{"attributes":{"name":"Darren Lowe","age":26,"location":"Santa Cruz"}},{"attributes":{"name":"Gwen Langosh","age":64,"location":"West Garrett"}},{"attributes":{"name":"Dr. Doreen Aufderhar","age":59,"location":"Schulistmouth"}},{"attributes":{"name":"Maximus Turner","age":79,"location":"Pico Rivera"}},{"attributes":{"name":"Clarissa Bernier","age":64,"location":"West Laurie"}},{"attributes":{"name":"Glen Powlowski","age":59,"location":"East Tremayne"}},{"attributes":{"name":"Alma Kutch","age":26,"location":"Lake Otho"}},{"attributes":{"name":"Cole Crooks","age":32,"location":"Kelsieshire"}},{"attributes":{"name":"Reanna Funk","age":20,"location":"Lake Alysha"}},{"attributes":{"name":"Otho Price","age":28,"location":"New Unique"}},{"attributes":{"name":"Geneva Bailey","age":69,"location":"Ivaboro"}},{"attributes":{"name":"Mrs. Roxanne Kessler-Huels","age":32,"location":"Lemkefield"}},{"attributes":{"name":"Nicolas Hegmann","age":18,"location":"Feltonstad"}},{"attributes":{"name":"Dessie Kshlerin","age":31,"location":"East Miles"}},{"attributes":{"name":"Nicolas Conn PhD","age":30,"location":"East Britneyfort"}},{"attributes":{"name":"Nayeli Pfannerstill","age":37,"location":"Altenwerthtown"}},{"attributes":{"name":"Dimitri Schiller","age":20,"location":"Gastonia"}},{"attributes":{"name":"Pamela Glover","age":80,"location":"New Tianaville"}},{"attributes":{"name":"Shayna Nader","age":80,"location":"Port Eulahberg"}},{"attributes":{"name":"Jamarcus Ziemann","age":56,"location":"South Maurice"}},{"attributes":{"name":"Ramon Ebert","age":19,"location":"New Adriel"}},{"attributes":{"name":"Lillian O'Connell","age":76,"location":"Dooleyville"}},{"attributes":{"name":"Dr. Patricia Muller PhD","age":33,"location":"Willcester"}},{"attributes":{"name":"Garry Nienow","age":60,"location":"South Paulineport"}},{"attributes":{"name":"Maida Tremblay","age":80,"location":"North Sierraburgh"}},{"attributes":{"name":"Rylan Grimes-Quitzon","age":43,"location":"Greenwood"}},{"attributes":{"name":"Dr. Marc Bednar-Marvin","age":53,"location":"East Rosina"}},{"attributes":{"name":"Rachel Abshire","age":30,"location":"Chicago"}},{"attributes":{"name":"Elizabeth Miller","age":21,"location":"Lake Kaylah"}},{"attributes":{"name":"Freddie Becker","age":74,"location":"Clarksville"}},{"attributes":{"name":"Arthur Reichel","age":24,"location":"Parisianhaven"}},{"attributes":{"name":"Henrietta MacGyver III","age":71,"location":"East Alexanderborough"}},{"attributes":{"name":"Lester Wehner","age":31,"location":"South Drewside"}},{"attributes":{"name":"Ms. Juvenal Kilback PhD","age":24,"location":"North Ellie"}},{"attributes":{"name":"Maureen Rohan Jr.","age":18,"location":"Greenburgh"}},{"attributes":{"name":"Kelli Langworth","age":42,"location":"East Fay"}},{"attributes":{"name":"Mara McKenzie","age":48,"location":"Jeradstead"}},{"attributes":{"name":"Perry Bergstrom DVM","age":21,"location":"Christymouth"}},{"attributes":{"name":"Lorenza Mitchell","age":75,"location":"Millcreek"}},{"attributes":{"name":"Ana Klein","age":47,"location":"Burien"}},{"attributes":{"name":"Ubaldo Emmerich","age":38,"location":"New Jasenhaven"}},{"attributes":{"name":"Norbert Torphy","age":76,"location":"New Adriana"}},{"attributes":{"name":"Blanca Dare","age":75,"location":"Lake Camylleside"}},{"attributes":{"name":"Margaretta Wyman PhD","age":59,"location":"Fort Eino"}},{"attributes":{"name":"Tim Fahey","age":66,"location":"Feeneytown"}},{"attributes":{"name":"Ralph Turner","age":51,"location":"Isaiahfort"}},{"attributes":{"name":"Donnie McCullough","age":27,"location":"Parkerfort"}},{"attributes":{"name":"Tremayne Nicolas","age":79,"location":"East Ima"}},{"attributes":{"name":"Lafayette O'Reilly","age":20,"location":"Rauview"}},{"attributes":{"name":"Miss Darren Hilpert","age":55,"location":"Flatleyville"}},{"attributes":{"name":"William Prosacco","age":34,"location":"Emmanuelville"}},{"attributes":{"name":"Mildred Botsford","age":24,"location":"Botsfordfort"}},{"attributes":{"name":"Ms. Sophia Bins","age":55,"location":"Zemlakburgh"}},{"attributes":{"name":"Alvin Carter","age":53,"location":"Alexandriaport"}},{"attributes":{"name":"Lowell Sawayn","age":72,"location":"Fort Dax"}},{"attributes":{"name":"Priscilla Fay","age":74,"location":"Middletown"}},{"attributes":{"name":"Grady Cassin","age":39,"location":"Jadamouth"}},{"attributes":{"name":"Doris Bergnaum","age":44,"location":"Rempelchester"}},{"attributes":{"name":"Dr. Hilda Kunze","age":26,"location":"Gutkowskitown"}},{"attributes":{"name":"Todd Ruecker","age":32,"location":"Celiaborough"}},{"attributes":{"name":"Dawn Cummings","age":57,"location":"Freeport"}},{"attributes":{"name":"Suzanne Mueller","age":52,"location":"Lake Mohamedworth"}},{"attributes":{"name":"Latoya Schamberger","age":34,"location":"Ervinhaven"}},{"attributes":{"name":"Mrs. Kris Hartmann","age":31,"location":"Emilioboro"}},{"attributes":{"name":"Rene Aufderhar-Price","age":20,"location":"Travontown"}},{"attributes":{"name":"Shannon Parker","age":60,"location":"Shreveport"}},{"attributes":{"name":"Jacquelyn Klein","age":45,"location":"Bloomington"}},{"attributes":{"name":"Louis Hessel","age":43,"location":"Fort Rhoda"}},{"attributes":{"name":"Jeannie Mosciski","age":50,"location":"West Mariannamouth"}},{"attributes":{"name":"Flossie Sporer PhD","age":26,"location":"Dunwoody"}},{"attributes":{"name":"Darryl Hagenes II","age":78,"location":"Lake Juvenalport"}},{"attributes":{"name":"Clark Fritsch Jr.","age":30,"location":"South Darlene"}},{"attributes":{"name":"Merritt Borer","age":28,"location":"Friesenview"}},{"attributes":{"name":"Brandon Conroy","age":75,"location":"Jeffereyshire"}},{"attributes":{"name":"Dr. Kurt Breitenberg","age":67,"location":"North Lorenz"}},{"attributes":{"name":"Vernice Abernathy","age":69,"location":"New Lemuel"}},{"attributes":{"name":"Joana Zieme","age":29,"location":"Rashadfort"}},{"attributes":{"name":"Deontae Trantow","age":26,"location":"Stratford"}},{"attributes":{"name":"Kareem Little","age":64,"location":"Lydamouth"}},{"attributes":{"name":"Emma Dietrich Sr.","age":34,"location":"Leonelville"}},{"attributes":{"name":"Dr. Dave Wehner","age":44,"location":"Cieloport"}},{"attributes":{"name":"Mr. Ray Hane","age":27,"location":"Lake Janyside"}},{"attributes":{"name":"Katie Heathcote","age":65,"location":"Westfield"}},{"attributes":{"name":"Ms. Gloria Kreiger PhD","age":74,"location":"La Crosse"}},{"attributes":{"name":"Alma Labadie","age":79,"location":"Cerritos"}},{"attributes":{"name":"Harriet Ledner","age":71,"location":"Camarillo"}},{"attributes":{"name":"Edwin Kuhlman","age":33,"location":"Runteburgh"}},{"attributes":{"name":"Adelia Murazik","age":33,"location":"East Brionnafurt"}},{"attributes":{"name":"Lorena Barton","age":19,"location":"Hamillfield"}},{"attributes":{"name":"Kellie Goodwin","age":53,"location":"South Luther"}},{"attributes":{"name":"Karl Purdy","age":60,"location":"Johnson City"}},{"attributes":{"name":"Kristoffer Toy","age":65,"location":"Wildermanton"}},{"attributes":{"name":"Everett Maggio","age":24,"location":"Ritchiefort"}},{"attributes":{"name":"Van Gulgowski","age":45,"location":"Kirastead"}},{"attributes":{"name":"Brandon Hagenes Sr.","age":78,"location":"East Alycecester"}},{"attributes":{"name":"Dr. Todd Murphy","age":75,"location":"Weymouth Town"}},{"attributes":{"name":"Ron Zboncak","age":52,"location":"Emmyton"}},{"attributes":{"name":"Brody Murazik","age":34,"location":"Plymouth"}},{"attributes":{"name":"Aubrey Dickinson","age":59,"location":"Homestead"}},{"attributes":{"name":"Sasha Stroman","age":65,"location":"West Ginamouth"}},{"attributes":{"name":"Brian Herzog","age":56,"location":"West Hartford"}},{"attributes":{"name":"Jules Leffler","age":64,"location":"West Frank"}},{"attributes":{"name":"Phil Gleason","age":74,"location":"Tyreseberg"}},{"attributes":{"name":"Mr. Rosemary Parisian-Wehner","age":42,"location":"Johnson City"}},{"attributes":{"name":"Kenny Beahan III","age":55,"location":"North Dejoncester"}},{"attributes":{"name":"Cristopher Davis","age":66,"location":"Norman"}},{"attributes":{"name":"Judy Franecki-Reynolds","age":36,"location":"Antonettafield"}},{"attributes":{"name":"Mr. Annetta Dickinson-Tillman","age":63,"location":"East Immanuel"}},{"attributes":{"name":"Autumn Murazik","age":59,"location":"New Ednashire"}},{"attributes":{"name":"Alia Dietrich","age":33,"location":"Feeneymouth"}},{"attributes":{"name":"Godfrey Klocko","age":57,"location":"Port Nikita"}},{"attributes":{"name":"Daniel Kuhlman","age":30,"location":"Port Daphnestad"}},{"attributes":{"name":"Serena Klein","age":44,"location":"Lynchfurt"}},{"attributes":{"name":"Chris Hayes","age":21,"location":"Meaghanburgh"}},{"attributes":{"name":"Lacey Kub","age":47,"location":"Kerlukeberg"}},{"attributes":{"name":"Eunice Schimmel","age":78,"location":"Teresacester"}},{"attributes":{"name":"Darrell Rau","age":67,"location":"Port Breanne"}},{"attributes":{"name":"Janet Runolfsdottir","age":40,"location":"Beaverton"}},{"attributes":{"name":"Mr. Ashton Hintz","age":65,"location":"Port Meganestead"}},{"attributes":{"name":"Collin Kunde","age":78,"location":"Lake Jodytown"}},{"attributes":{"name":"Judge Cartwright","age":34,"location":"Vitastead"}},{"attributes":{"name":"Dr. Jarret Kovacek","age":71,"location":"Sidshire"}},{"attributes":{"name":"Hilda Schimmel","age":53,"location":"Collierfield"}},{"attributes":{"name":"Euna Lakin","age":79,"location":"Port Judybury"}},{"attributes":{"name":"Kyla Vandervort","age":46,"location":"Barbarashire"}},{"attributes":{"name":"Iris Langworth","age":21,"location":"Port Arlie"}},{"attributes":{"name":"Ruben Moore","age":22,"location":"East Elwin"}},{"attributes":{"name":"Patrick Mohr","age":47,"location":"Ronnyburgh"}},{"attributes":{"name":"Colten Stokes","age":24,"location":"Leonardboro"}},{"attributes":{"name":"Era Rohan","age":70,"location":"Kittyside"}},{"attributes":{"name":"Daniel Kemmer","age":74,"location":"North Aiyanafurt"}},{"attributes":{"name":"Ernest Parisian","age":76,"location":"Fort Celestine"}},{"attributes":{"name":"Benny Stokes","age":62,"location":"Rozellaborough"}},{"attributes":{"name":"Fred Cummerata","age":54,"location":"Dietrichbury"}},{"attributes":{"name":"Mathew King DDS","age":46,"location":"Matildastead"}},{"attributes":{"name":"Elias Bashirian","age":72,"location":"Okunevafurt"}},{"attributes":{"name":"Shane Walter","age":34,"location":"Kaciville"}},{"attributes":{"name":"Angelo Nitzsche MD","age":40,"location":"Mariamworth"}},{"attributes":{"name":"Thomas Waters","age":78,"location":"Bauchside"}},{"attributes":{"name":"Miss Leslie Koss","age":18,"location":"Monserratfield"}},{"attributes":{"name":"Dereck Ryan","age":61,"location":"Portage"}},{"attributes":{"name":"Aliza Jaskolski","age":19,"location":"Lake Princessworth"}},{"attributes":{"name":"Tressa Raynor","age":23,"location":"Sayreville"}},{"attributes":{"name":"Ann Lang","age":34,"location":"Gresham"}},{"attributes":{"name":"Kristie Goodwin","age":69,"location":"Franklin"}},{"attributes":{"name":"Miles Ullrich","age":46,"location":"Wildermanfield"}},{"attributes":{"name":"Ms. Juanita Prohaska","age":35,"location":"Rowland Heights"}},{"attributes":{"name":"Beaulah Lemke","age":59,"location":"Eberttown"}},{"attributes":{"name":"Selmer Lehner","age":45,"location":"Doylebury"}},{"attributes":{"name":"Oliver Jacobi","age":71,"location":"Greenborough"}},{"attributes":{"name":"Carrie Tromp","age":80,"location":"Weissnatberg"}},{"attributes":{"name":"Dr. Matt Heidenreich","age":56,"location":"South Rigoberto"}},{"attributes":{"name":"Chelsea Osinski","age":38,"location":"Rosemead"}},{"attributes":{"name":"Antonia Kuhic","age":71,"location":"Welchchester"}},{"attributes":{"name":"Layla Nitzsche-Bartell","age":75,"location":"McDermottchester"}},{"attributes":{"name":"Marvin Nikolaus","age":27,"location":"New Branson"}},{"attributes":{"name":"Ericka Weissnat","age":42,"location":"Roobside"}},{"attributes":{"name":"Dante Hoppe","age":62,"location":"Baumbachhaven"}},{"attributes":{"name":"Marta Kiehn","age":43,"location":"Volkmanview"}},{"attributes":{"name":"Dr. Twila Kiehn","age":57,"location":"New Juniorside"}},{"attributes":{"name":"Dianne D'Amore","age":29,"location":"Krajcikbury"}},{"attributes":{"name":"Kaycee Treutel II","age":78,"location":"South Sonnyboro"}},{"attributes":{"name":"Lydia Reinger MD","age":30,"location":"East Los Angeles"}},{"attributes":{"name":"Lena Conn","age":35,"location":"Schummfort"}},{"attributes":{"name":"Veronica Thompson","age":77,"location":"South Melany"}},{"attributes":{"name":"Karl Baumbach","age":46,"location":"Lake Cristianview"}},{"attributes":{"name":"Brittany Bechtelar Sr.","age":62,"location":"North Johannaport"}},{"attributes":{"name":"Orval Klocko","age":77,"location":"Mayertburgh"}},{"attributes":{"name":"Ms. Elza Buckridge","age":26,"location":"Rapid City"}},{"attributes":{"name":"Elwyn Stokes","age":43,"location":"South Savanahbury"}},{"attributes":{"name":"Burdette Stracke","age":18,"location":"New Pinkie"}},{"attributes":{"name":"Ms. Tara McKenzie","age":41,"location":"Lake Hector"}},{"attributes":{"name":"Mr. Tim Flatley","age":46,"location":"Konopelskiburgh"}},{"attributes":{"name":"Olga Pfeffer","age":48,"location":"Port Yeseniaview"}},{"attributes":{"name":"Marianne Schaefer","age":66,"location":"Handstad"}},{"attributes":{"name":"Shirley Spencer","age":30,"location":"Jodieview"}},{"attributes":{"name":"Beatrice Johns","age":76,"location":"Port Justina"}},{"attributes":{"name":"Tracy Sipes","age":24,"location":"Adamsport"}},{"attributes":{"name":"Wilfrid Schumm","age":49,"location":"Temple"}},{"attributes":{"name":"Julian Kihn","age":70,"location":"Idaho Falls"}},{"attributes":{"name":"Chaim Bailey","age":80,"location":"South Elnoraside"}},{"attributes":{"name":"Benny Hauck","age":20,"location":"Lake Coyhaven"}},{"attributes":{"name":"Yvonne Prosacco","age":56,"location":"Haleyhaven"}},{"attributes":{"name":"Kelly Cummerata","age":39,"location":"Noemymouth"}},{"attributes":{"name":"Hector Lockman","age":21,"location":"West Zora"}},{"attributes":{"name":"Dr. Mariana Little","age":39,"location":"North Lavina"}},{"attributes":{"name":"Patrick Hirthe","age":62,"location":"Philadelphia"}},{"attributes":{"name":"Audrey Roob","age":70,"location":"Maryamworth"}},{"attributes":{"name":"Brandi Stark IV","age":55,"location":"Sipesland"}},{"attributes":{"name":"Ivan Lang V","age":78,"location":"Lake Randychester"}},{"attributes":{"name":"Dr. Sabryna Cartwright","age":72,"location":"Rahsaanboro"}},{"attributes":{"name":"Blanca Gorczany","age":23,"location":"Port Camron"}},{"attributes":{"name":"Marilie Brekke","age":74,"location":"Nikolauschester"}},{"attributes":{"name":"Pauline Kozey II","age":36,"location":"Sandy"}},{"attributes":{"name":"Ms. Darnell Howe","age":41,"location":"Hermanville"}},{"attributes":{"name":"Sue DuBuque Jr.","age":67,"location":"North Terrell"}},{"attributes":{"name":"Doris Beatty","age":22,"location":"Kuhicborough"}},{"attributes":{"name":"Talon Torp","age":42,"location":"Muellermouth"}},{"attributes":{"name":"Reid Rempel","age":24,"location":"South Agnes"}},{"attributes":{"name":"Kyle Daniel V","age":77,"location":"Hacienda Heights"}},{"attributes":{"name":"Mrs. Zoie Schinner","age":70,"location":"Bahringerborough"}},{"attributes":{"name":"Susan Erdman","age":56,"location":"Cyrilville"}},{"attributes":{"name":"Elsa Kohler","age":63,"location":"Lake Dustin"}},{"attributes":{"name":"Timothy Harvey","age":76,"location":"Blue Springs"}},{"attributes":{"name":"Bonnie Cormier","age":77,"location":"Hamilton"}},{"attributes":{"name":"Bianka Jast","age":43,"location":"Lake Denisborough"}},{"attributes":{"name":"Jeremie Marks","age":30,"location":"Champlinland"}},{"attributes":{"name":"Emanuel Kirlin","age":57,"location":"Ratkeboro"}},{"attributes":{"name":"Faith Schultz-Cruickshank","age":20,"location":"North Kacie"}},{"attributes":{"name":"Ms. Cruz Lang","age":50,"location":"Brownstead"}},{"attributes":{"name":"Mandy Bechtelar","age":19,"location":"North Dawnburgh"}},{"attributes":{"name":"Cameron Stiedemann","age":36,"location":"Michalecester"}},{"attributes":{"name":"Sarah Keeling","age":69,"location":"Fort Christport"}},{"attributes":{"name":"Jean Huels","age":40,"location":"Fort Zaria"}},{"attributes":{"name":"Amely Braun DVM","age":30,"location":"East Jordynstead"}},{"attributes":{"name":"Else O'Reilly","age":67,"location":"Erie"}},{"attributes":{"name":"Ms. Casimir Kling","age":51,"location":"New Orloland"}},{"attributes":{"name":"Lorene Osinski Jr.","age":74,"location":"Flower Mound"}},{"attributes":{"name":"Stanley Rosenbaum","age":25,"location":"Fletcherfield"}},{"attributes":{"name":"Dr. Adriel Wehner","age":19,"location":"Murphyworth"}},{"attributes":{"name":"Mrs. Mable Wehner","age":71,"location":"Curtville"}},{"attributes":{"name":"Bernita Gulgowski","age":43,"location":"Bednarland"}},{"attributes":{"name":"Esther Tremblay","age":25,"location":"Fort Marioview"}},{"attributes":{"name":"Orville Keeling","age":76,"location":"Doyleshire"}},{"attributes":{"name":"Dr. Scottie Frami-Spinka","age":79,"location":"Port Abelardo"}},{"attributes":{"name":"Dora Mann","age":28,"location":"East Payton"}},{"attributes":{"name":"Karen Champlin","age":72,"location":"Silver Spring"}},{"attributes":{"name":"Lauren Zemlak","age":21,"location":"Sipeshaven"}},{"attributes":{"name":"Dr. Johnny Wisoky","age":52,"location":"Sethland"}},{"attributes":{"name":"Aurore Howell","age":27,"location":"Kennewick"}},{"attributes":{"name":"Dwight Abernathy","age":24,"location":"New Dorthy"}},{"attributes":{"name":"Ulices Crist Jr.","age":79,"location":"Port Elodyshire"}},{"attributes":{"name":"Arlie Rutherford","age":76,"location":"Santosport"}},{"attributes":{"name":"Ernestina Stamm","age":57,"location":"Port Chanceton"}},{"attributes":{"name":"Rudy Kessler-Beier","age":53,"location":"Elsamouth"}},{"attributes":{"name":"Karine Little","age":71,"location":"Corafurt"}},{"attributes":{"name":"Jacey Boyer","age":79,"location":"Ceres"}},{"attributes":{"name":"Marian Rohan","age":69,"location":"Bradfordstad"}},{"attributes":{"name":"Kolby Waters","age":38,"location":"State College"}},{"attributes":{"name":"Janis Williamson","age":73,"location":"New Alberthafort"}},{"attributes":{"name":"Amely Blanda","age":57,"location":"Leorastad"}},{"attributes":{"name":"Carolyn Morissette","age":29,"location":"Richardson"}},{"attributes":{"name":"Miss Doug Schmeler-Gutkowski","age":44,"location":"North Missouriboro"}},{"attributes":{"name":"Miss Ardith Schmitt","age":46,"location":"Wayneborough"}},{"attributes":{"name":"Willis Kohler","age":35,"location":"North Beth"}},{"attributes":{"name":"Lenore Stehr","age":78,"location":"Danielport"}},{"attributes":{"name":"Albert Fritsch","age":48,"location":"Lake Lauryboro"}},{"attributes":{"name":"Isabel Hodkiewicz","age":52,"location":"West Lester"}},{"attributes":{"name":"Kay Hickle Jr.","age":80,"location":"Parkertown"}},{"attributes":{"name":"Brandon Toy","age":44,"location":"Lake Mayrafurt"}},{"attributes":{"name":"Lee Weissnat","age":37,"location":"Rachaelville"}},{"attributes":{"name":"Emerson Christiansen","age":22,"location":"Fort Kristianbury"}},{"attributes":{"name":"Johanna Wyman-Nicolas","age":48,"location":"Brakusborough"}},{"attributes":{"name":"Daisy Schaden","age":39,"location":"New Donavonfurt"}},{"attributes":{"name":"Miss Darin Wisozk","age":80,"location":"North Russshire"}},{"attributes":{"name":"Ana Ebert MD","age":67,"location":"Leuschkefield"}},{"attributes":{"name":"Ken Senger III","age":66,"location":"Port Gabriellatown"}},{"attributes":{"name":"Blaise Blick MD","age":38,"location":"Lake Leann"}},{"attributes":{"name":"Jeremiah Emard-Johnson","age":66,"location":"Greenholtton"}},{"attributes":{"name":"Janice Kovacek-Gerhold IV","age":55,"location":"South Tyreekstead"}},{"attributes":{"name":"Talia Labadie Sr.","age":63,"location":"Parisianbury"}},{"attributes":{"name":"Cruz Dickens","age":79,"location":"Vladimirville"}},{"attributes":{"name":"Ricardo Bruen I","age":56,"location":"Tamiami"}},{"attributes":{"name":"Mr. Brandon Kutch","age":38,"location":"Lake Jamison"}},{"attributes":{"name":"Rex Dickinson","age":71,"location":"West Kale"}},{"attributes":{"name":"Mrs. Omari Kohler","age":21,"location":"Creminhaven"}},{"attributes":{"name":"Sabrina Hyatt","age":35,"location":"Rochester"}},{"attributes":{"name":"Julien Haley","age":49,"location":"Jackyberg"}},{"attributes":{"name":"Vincent Parker MD","age":72,"location":"Grand Rapids"}},{"attributes":{"name":"Jose Roberts","age":43,"location":"Fort Antonia"}},{"attributes":{"name":"Vicky O'Kon-Thompson","age":79,"location":"North Berthastead"}},{"attributes":{"name":"Wilbert Corwin","age":60,"location":"La Crosse"}},{"attributes":{"name":"Marc Beatty-Torphy","age":33,"location":"Lawton"}},{"attributes":{"name":"Dorothy Morar I","age":25,"location":"New Zoeychester"}},{"attributes":{"name":"Oswaldo Schumm","age":27,"location":"South Hermann"}},{"attributes":{"name":"Opal Sanford-Grimes","age":31,"location":"New Leliacester"}},{"attributes":{"name":"Everett Heller","age":41,"location":"North Richmond"}},{"attributes":{"name":"Arthur Effertz","age":22,"location":"Port Quincy"}},{"attributes":{"name":"Caroline Zemlak","age":52,"location":"Spencerfield"}},{"attributes":{"name":"Marie Wunsch","age":78,"location":"Port Emmitt"}},{"attributes":{"name":"John Kemmer","age":80,"location":"Leilaniton"}},{"attributes":{"name":"Guiseppe McLaughlin","age":18,"location":"Dickensberg"}},{"attributes":{"name":"Enrique McClure","age":63,"location":"North Ariel"}},{"attributes":{"name":"Cynthia Bradtke","age":60,"location":"Stoltenbergmouth"}},{"attributes":{"name":"Marlene Lemke","age":58,"location":"Muncie"}},{"attributes":{"name":"Dr. Melvin Howe","age":54,"location":"Fort Randallland"}},{"attributes":{"name":"Ewald Littel","age":24,"location":"Tulare"}},{"attributes":{"name":"Cullen Durgan","age":77,"location":"Thompsonfurt"}},{"attributes":{"name":"Becky Powlowski","age":52,"location":"Drakeport"}},{"attributes":{"name":"Rochelle Mitchell PhD","age":74,"location":"North Devin"}},{"attributes":{"name":"Lyric Collins","age":57,"location":"Stokesshire"}},{"attributes":{"name":"Doreen Volkman","age":64,"location":"Alessandroton"}},{"attributes":{"name":"Cruz Schroeder","age":65,"location":"Mariefort"}},{"attributes":{"name":"Harry Doyle","age":75,"location":"East Eddie"}},{"attributes":{"name":"Dixie Adams","age":68,"location":"New Marcelle"}},{"attributes":{"name":"Frank Rosenbaum","age":24,"location":"North Kristopherton"}},{"attributes":{"name":"Eldridge Rodriguez","age":63,"location":"Hyattberg"}},{"attributes":{"name":"Lucie Parker","age":55,"location":"Larkinfield"}},{"attributes":{"name":"Camille Weber","age":48,"location":"Port Mireille"}},{"attributes":{"name":"Chester Koch","age":27,"location":"Lake Kathrynland"}},{"attributes":{"name":"Nettie Beer","age":23,"location":"Town 'n' Country"}},{"attributes":{"name":"Randall Marks","age":31,"location":"Lake Celine"}},{"attributes":{"name":"Dixie Walker","age":59,"location":"Jeffereyberg"}},{"attributes":{"name":"Blake Dare","age":19,"location":"East Amoschester"}},{"attributes":{"name":"Shaun Hane","age":57,"location":"Lesliefort"}},{"attributes":{"name":"Travon Herzog","age":56,"location":"South Janview"}},{"attributes":{"name":"Nona Parisian Sr.","age":33,"location":"Pinkietown"}},{"attributes":{"name":"Mr. Fredrick Daniel","age":78,"location":"Las Vegas"}},{"attributes":{"name":"Kelvin Predovic","age":69,"location":"Decatur"}},{"attributes":{"name":"Lori Medhurst","age":21,"location":"North Paytonworth"}},{"attributes":{"name":"Cathy Considine","age":76,"location":"Port Albertbury"}},{"attributes":{"name":"Claire Johnson","age":59,"location":"Hoboken"}},{"attributes":{"name":"Sarah Klocko","age":46,"location":"Fort Shawna"}},{"attributes":{"name":"Diana Terry","age":39,"location":"Port Linnea"}},{"attributes":{"name":"Geraldine Lebsack-Jacobs","age":67,"location":"East Kurtis"}},{"attributes":{"name":"Shanny Blanda III","age":57,"location":"Lockmanberg"}},{"attributes":{"name":"Kavon Bruen","age":39,"location":"Fort Ottilie"}},{"attributes":{"name":"Clay Hirthe-Breitenberg","age":73,"location":"Allentown"}},{"attributes":{"name":"Alvin Stracke","age":54,"location":"San Jacinto"}},{"attributes":{"name":"Vivian Carroll-Stanton","age":42,"location":"Bednarmouth"}},{"attributes":{"name":"Howard Keebler","age":45,"location":"Lonzofield"}},{"attributes":{"name":"Kade Oberbrunner","age":53,"location":"East Edenboro"}},{"attributes":{"name":"Phil Hagenes","age":31,"location":"Bismarck"}},{"attributes":{"name":"Lew Jones","age":79,"location":"Garland"}},{"attributes":{"name":"Alfred Dooley","age":32,"location":"Morrisfurt"}},{"attributes":{"name":"Teresa Hand MD","age":21,"location":"East Monroeberg"}},{"attributes":{"name":"Tim Upton Jr.","age":47,"location":"Fort Joshuaton"}},{"attributes":{"name":"Tina Stroman","age":20,"location":"Altoona"}},{"attributes":{"name":"Al Wuckert Sr.","age":29,"location":"Louveniafort"}},{"attributes":{"name":"Loyce Lindgren","age":79,"location":"Samsonshire"}},{"attributes":{"name":"Abel Douglas","age":34,"location":"West Helen"}},{"attributes":{"name":"Maryann Kilback","age":70,"location":"Lucioshire"}},{"attributes":{"name":"Marc Macejkovic IV","age":76,"location":"Zoilastead"}},{"attributes":{"name":"Dorothy Schuster","age":68,"location":"East Wayne"}},{"attributes":{"name":"Leone Volkman","age":43,"location":"Cicero"}},{"attributes":{"name":"Miss Lionel O'Kon","age":28,"location":"Mayeburgh"}},{"attributes":{"name":"Vickie Jacobs","age":40,"location":"North Svenworth"}},{"attributes":{"name":"Geneva Doyle","age":30,"location":"Ratkefurt"}},{"attributes":{"name":"Wade Fadel","age":23,"location":"Kristinastad"}},{"attributes":{"name":"Velma O'Kon","age":22,"location":"Belletown"}},{"attributes":{"name":"Mazie Ortiz","age":56,"location":"Maddisonworth"}},{"attributes":{"name":"Simon Wilderman","age":42,"location":"North Mollyshire"}},{"attributes":{"name":"Nolan Bayer","age":40,"location":"North Chelsea"}},{"attributes":{"name":"Brooke Medhurst","age":24,"location":"North Gonzalo"}},{"attributes":{"name":"Matilda Kerluke","age":71,"location":"Lake Niko"}},{"attributes":{"name":"Juanita Bayer","age":29,"location":"Rosinaburgh"}},{"attributes":{"name":"Veronica Hickle","age":53,"location":"Rossieworth"}},{"attributes":{"name":"Conrad Lang","age":69,"location":"Tellyfurt"}},{"attributes":{"name":"Samuel D'Amore","age":76,"location":"South Elyssachester"}},{"attributes":{"name":"Howard Sawayn-Treutel","age":32,"location":"Micheleland"}},{"attributes":{"name":"Jennifer Bailey","age":76,"location":"Lake Wendell"}},{"attributes":{"name":"Bradford Prosacco","age":60,"location":"East Krista"}},{"attributes":{"name":"Ilene Greenholt","age":34,"location":"West Alfredaberg"}},{"attributes":{"name":"Mathew McClure Jr.","age":64,"location":"Stamford"}},{"attributes":{"name":"Claire Rath","age":51,"location":"Joneshaven"}},{"attributes":{"name":"Lorenzo Lynch PhD","age":43,"location":"East Kacey"}},{"attributes":{"name":"Ada Ernser MD","age":40,"location":"New Creolastad"}},{"attributes":{"name":"Lorenz Walter IV","age":37,"location":"Chynafurt"}},{"attributes":{"name":"Curtis Torphy","age":60,"location":"New Isai"}},{"attributes":{"name":"Jerome Hansen I","age":37,"location":"Sallyview"}},{"attributes":{"name":"Dr. Elsie Hermiston","age":60,"location":"Hughstad"}},{"attributes":{"name":"Dr. Katie Gibson","age":63,"location":"Fort Savionboro"}},{"attributes":{"name":"Gwendolyn Hamill","age":28,"location":"Sayreville"}},{"attributes":{"name":"Delia Mosciski","age":53,"location":"West Seneca"}},{"attributes":{"name":"Aron Reynolds","age":46,"location":"New Christop"}},{"attributes":{"name":"Arnold Feeney Jr.","age":29,"location":"Jaydenton"}},{"attributes":{"name":"Mafalda Kovacek","age":39,"location":"Tillmanberg"}},{"attributes":{"name":"Darnell Connelly IV","age":22,"location":"Tacoma"}},{"attributes":{"name":"Miss Daisha Pollich","age":66,"location":"West Bernadette"}},{"attributes":{"name":"Johnnie Willms","age":67,"location":"Joplin"}},{"attributes":{"name":"Taryn Farrell III","age":54,"location":"Clifton"}},{"attributes":{"name":"Dr. Skye Johnston","age":80,"location":"Fort Chris"}},{"attributes":{"name":"Miss Mae Lehner","age":27,"location":"Demarcoborough"}},{"attributes":{"name":"Dr. Betsy Keebler","age":56,"location":"Port Yvonnestad"}},{"attributes":{"name":"Ignacio Cummings","age":46,"location":"Hirtheshire"}},{"attributes":{"name":"Minnie O'Reilly","age":21,"location":"Fort Katrinafield"}},{"attributes":{"name":"Jerod Rogahn","age":20,"location":"Jamisonshire"}},{"attributes":{"name":"Ms. Janice Christiansen","age":70,"location":"New Arnulfo"}},{"attributes":{"name":"Grant Koelpin","age":41,"location":"Skilesboro"}},{"attributes":{"name":"Amie Erdman","age":54,"location":"Ryleeland"}},{"attributes":{"name":"Rhonda Schmitt","age":29,"location":"Borermouth"}},{"attributes":{"name":"Louise Jakubowski","age":32,"location":"Veldahaven"}},{"attributes":{"name":"Miss Terry Lind","age":79,"location":"Creminville"}},{"attributes":{"name":"Eleazar Welch","age":18,"location":"East Helmer"}},{"attributes":{"name":"Jacquelyn Luettgen","age":21,"location":"Cleveland Heights"}},{"attributes":{"name":"Kate Corkery","age":61,"location":"South Keagan"}},{"attributes":{"name":"Carlton Rogahn","age":44,"location":"North Jaymeboro"}},{"attributes":{"name":"Jacinto Kuphal","age":74,"location":"Cincinnati"}},{"attributes":{"name":"Marjorie Stanton","age":46,"location":"Pfeffermouth"}},{"attributes":{"name":"Keanu Moore","age":58,"location":"Marisaport"}},{"attributes":{"name":"Leigh Witting","age":42,"location":"North Ollie"}},{"attributes":{"name":"Marta Terry","age":35,"location":"St. Petersburg"}},{"attributes":{"name":"Bethany Witting","age":41,"location":"Kingsport"}},{"attributes":{"name":"Mrs. Roslyn Langworth","age":79,"location":"Port Jennifer"}},{"attributes":{"name":"Cathryn Bogan II","age":32,"location":"Fort Merrittfort"}},{"attributes":{"name":"Brandy Franecki DDS","age":44,"location":"Port Bonitaberg"}},{"attributes":{"name":"Paolo Bogan","age":65,"location":"East Ulises"}},{"attributes":{"name":"Rafaela Effertz","age":38,"location":"San Leandro"}},{"attributes":{"name":"Dr. Terrance Cruickshank","age":59,"location":"Botsfordborough"}},{"attributes":{"name":"Morgan Block","age":33,"location":"East Kimberly"}},{"attributes":{"name":"Christian Ankunding","age":21,"location":"San Luis Obispo"}},{"attributes":{"name":"Lorene Dicki","age":69,"location":"Schmittside"}},{"attributes":{"name":"Dr. Kerry Predovic II","age":34,"location":"Lake Arturo"}},{"attributes":{"name":"Demarcus Murphy","age":73,"location":"West Jordan"}},{"attributes":{"name":"Rahsaan Anderson IV","age":68,"location":"South Donavonboro"}},{"attributes":{"name":"Adelbert Daniel","age":34,"location":"South Macy"}},{"attributes":{"name":"Ebony Hyatt-Miller","age":48,"location":"North Janeview"}},{"attributes":{"name":"Zack Muller PhD","age":47,"location":"Champlinmouth"}},{"attributes":{"name":"Jeannie Price","age":51,"location":"East Krystalworth"}},{"attributes":{"name":"Shelley Terry","age":43,"location":"West Elmira"}},{"attributes":{"name":"Marcelo Gerhold","age":46,"location":"Hagenesfurt"}},{"attributes":{"name":"Arturo Hegmann","age":77,"location":"Jamiechester"}},{"attributes":{"name":"Tammy Ankunding","age":61,"location":"Spencerboro"}},{"attributes":{"name":"Maverick Casper Sr.","age":34,"location":"North Las Vegas"}},{"attributes":{"name":"Mr. Gerard Bashirian","age":26,"location":"Shyannport"}},{"attributes":{"name":"Myles King","age":21,"location":"East Keara"}},{"attributes":{"name":"Andrea McLaughlin","age":74,"location":"Fort Lewisberg"}},{"attributes":{"name":"Hillary Corwin","age":23,"location":"East Terrell"}},{"attributes":{"name":"Kristin Zieme","age":79,"location":"Windlercester"}},{"attributes":{"name":"Marguerite Goodwin","age":76,"location":"Port Missouriworth"}},{"attributes":{"name":"Josue Little","age":74,"location":"Dietrichstead"}},{"attributes":{"name":"Darla Spinka","age":35,"location":"Harlingen"}},{"attributes":{"name":"Brooke Blick","age":29,"location":"Port Herman"}},{"attributes":{"name":"Gregory Bins","age":59,"location":"Pattieshire"}},{"attributes":{"name":"Jevon Sipes-Veum","age":66,"location":"East Tyreek"}},{"attributes":{"name":"Callie Gorczany","age":31,"location":"Fatimachester"}},{"attributes":{"name":"Billie Schultz I","age":54,"location":"Greenview"}},{"attributes":{"name":"Alfonso Murazik","age":29,"location":"North Claudia"}},{"attributes":{"name":"Mario Pacocha","age":32,"location":"Levittown"}},{"attributes":{"name":"William Wintheiser","age":47,"location":"Thompsonworth"}},{"attributes":{"name":"Corrine Davis","age":76,"location":"Lake Larueland"}},{"attributes":{"name":"Cicero Witting","age":29,"location":"Neilboro"}},{"attributes":{"name":"Vanessa Johnston MD","age":63,"location":"Weldonchester"}},{"attributes":{"name":"Mr. Mustafa Gutmann","age":33,"location":"Brockton"}},{"attributes":{"name":"Ciara Grady","age":40,"location":"Fort Alexandreachester"}},{"attributes":{"name":"Flavio Rempel","age":25,"location":"Goyettetown"}},{"attributes":{"name":"Joyce Hagenes","age":21,"location":"Mantebury"}},{"attributes":{"name":"Jared Nicolas","age":36,"location":"East Lucianoside"}},{"attributes":{"name":"Olive Thompson","age":72,"location":"North Augustcester"}},{"attributes":{"name":"Judith Strosin","age":40,"location":"Bartellchester"}},{"attributes":{"name":"Selina McGlynn","age":34,"location":"West Seanborough"}},{"attributes":{"name":"Jaime Gulgowski-Murazik","age":21,"location":"Raphaelleland"}},{"attributes":{"name":"Ora Mann","age":73,"location":"Schulistfield"}},{"attributes":{"name":"Sean Bailey","age":78,"location":"Port Giles"}},{"attributes":{"name":"Charlotte Kuhn","age":80,"location":"Joshuastad"}},{"attributes":{"name":"Adrian Boyle","age":62,"location":"Fort Tito"}},{"attributes":{"name":"Ms. Donnell Daniel","age":45,"location":"Boyletown"}},{"attributes":{"name":"Wm Steuber","age":70,"location":"Tulsa"}},{"attributes":{"name":"Ms. Camron Kemmer","age":63,"location":"Fort Angela"}},{"attributes":{"name":"Jesus Dach","age":30,"location":"East Jeffry"}},{"attributes":{"name":"Skye Pollich","age":46,"location":"Bernhardhaven"}},{"attributes":{"name":"Ramon Emmerich","age":67,"location":"Schulisttown"}},{"attributes":{"name":"Carlee Boehm","age":47,"location":"Considineberg"}},{"attributes":{"name":"Diane O'Kon","age":66,"location":"Cassinton"}},{"attributes":{"name":"Charles Murphy","age":80,"location":"Huntington Beach"}},{"attributes":{"name":"Celia Cole","age":33,"location":"Fort Kolby"}},{"attributes":{"name":"Jacob Deckow","age":77,"location":"Atlanta"}},{"attributes":{"name":"Courtney Christiansen","age":35,"location":"North Hilbert"}},{"attributes":{"name":"Ms. Shawn Wilderman","age":22,"location":"Yasminefort"}},{"attributes":{"name":"Sean Rowe","age":76,"location":"Spokane"}},{"attributes":{"name":"Alonzo McGlynn","age":27,"location":"South Jordan"}},{"attributes":{"name":"Mr. Freddy Altenwerth","age":49,"location":"Tiffanytown"}},{"attributes":{"name":"Dr. Alvin Berge","age":20,"location":"Schoenport"}},{"attributes":{"name":"Leonie Moore","age":64,"location":"Wisozkberg"}},{"attributes":{"name":"Dr. Matt Homenick","age":52,"location":"Fort Staceytown"}},{"attributes":{"name":"Fernando Kihn","age":39,"location":"South Burnice"}},{"attributes":{"name":"Guadalupe Kunze","age":78,"location":"Cheektowaga"}},{"attributes":{"name":"Gaetano Dietrich","age":64,"location":"Wisozkfort"}},{"attributes":{"name":"Wendy Hahn V","age":31,"location":"Yonkers"}},{"attributes":{"name":"Giovanna Volkman I","age":31,"location":"New Adrainview"}},{"attributes":{"name":"Angela Ebert","age":72,"location":"Erdmanton"}},{"attributes":{"name":"Ramiro Hegmann","age":65,"location":"Austin"}},{"attributes":{"name":"Jared Hettinger V","age":76,"location":"Brakusburgh"}},{"attributes":{"name":"Kathleen Will","age":67,"location":"Surprise"}},{"attributes":{"name":"Mrs. Gloria Hessel","age":79,"location":"South Onaville"}},{"attributes":{"name":"Sergio Harber","age":29,"location":"South Fernando"}},{"attributes":{"name":"Kenny Hackett","age":65,"location":"Dundalk"}},{"attributes":{"name":"Kristin Bauch","age":21,"location":"Rhettport"}},{"attributes":{"name":"Sidney Jenkins","age":77,"location":"Royalborough"}},{"attributes":{"name":"Joy Erdman","age":20,"location":"Heatherfort"}},{"attributes":{"name":"Chester Borer","age":80,"location":"Midwest City"}},{"attributes":{"name":"Tremaine Hyatt-Zboncak","age":33,"location":"West Octaviahaven"}},{"attributes":{"name":"Mrs. Jordan Hudson","age":51,"location":"Downey"}},{"attributes":{"name":"Jeramy Hegmann","age":73,"location":"Jorgeborough"}},{"attributes":{"name":"Blanca Satterfield","age":61,"location":"Denesikboro"}},{"attributes":{"name":"Loyce Runte","age":56,"location":"Harveyside"}},{"attributes":{"name":"Karson Littel","age":61,"location":"Rockychester"}},{"attributes":{"name":"William Schamberger","age":51,"location":"New Busterstad"}},{"attributes":{"name":"Dr. Jessie Brekke","age":29,"location":"Jakubowskiside"}},{"attributes":{"name":"Noah Schamberger","age":39,"location":"Wilkinsonbury"}},{"attributes":{"name":"Roderick Dickinson","age":26,"location":"East Luis"}},{"attributes":{"name":"Joshua Volkman","age":52,"location":"Domenicoton"}},{"attributes":{"name":"Laurie Lesch","age":76,"location":"Coachella"}},{"attributes":{"name":"Austin Friesen PhD","age":54,"location":"Tomasshire"}},{"attributes":{"name":"Clarence Littel","age":21,"location":"Strongsville"}},{"attributes":{"name":"Laurel Keebler","age":45,"location":"Kathryneland"}},{"attributes":{"name":"Dale Lind","age":66,"location":"Leonecester"}},{"attributes":{"name":"Shaylee Jakubowski II","age":46,"location":"Columbus"}},{"attributes":{"name":"Miss Santa Larkin","age":19,"location":"Rylanside"}},{"attributes":{"name":"Kraig Ryan","age":51,"location":"Fort Jacksonbury"}},{"attributes":{"name":"Cortez Greenfelder","age":43,"location":"Wintheiserfield"}},{"attributes":{"name":"Ms. Austin Greenfelder","age":34,"location":"Jewellburgh"}},{"attributes":{"name":"Ismael Auer","age":39,"location":"West Dulceview"}},{"attributes":{"name":"Melissa Schneider","age":50,"location":"Jefferson City"}},{"attributes":{"name":"Henry Daniel","age":32,"location":"East Korey"}},{"attributes":{"name":"Mrs. Franz Medhurst-Jacobi","age":30,"location":"Sadyemouth"}},{"attributes":{"name":"Roosevelt Mayer","age":61,"location":"Baumbachchester"}},{"attributes":{"name":"Jean Johns","age":64,"location":"Mohrtown"}},{"attributes":{"name":"Alexys Dooley","age":47,"location":"Siennaport"}},{"attributes":{"name":"Thalia Koss","age":67,"location":"North Kaleville"}},{"attributes":{"name":"Carolyn Blick","age":63,"location":"Killeen"}},{"attributes":{"name":"Aubrey Little","age":56,"location":"North Oscar"}},{"attributes":{"name":"Jonatan Upton IV","age":50,"location":"Fort Jade"}},{"attributes":{"name":"Carla Macejkovic","age":22,"location":"Salina"}},{"attributes":{"name":"Preston Douglas","age":39,"location":"Fort Amaniport"}},{"attributes":{"name":"Lila Sawayn","age":55,"location":"Townehaven"}},{"attributes":{"name":"Jim Thiel","age":42,"location":"Kemmerborough"}},{"attributes":{"name":"Zula Durgan","age":20,"location":"Karleeberg"}},{"attributes":{"name":"Destiney Zboncak","age":65,"location":"Pedrofort"}},{"attributes":{"name":"Trey Ferry","age":65,"location":"Daughertyton"}},{"attributes":{"name":"Jessie Maggio","age":29,"location":"West Kennedy"}},{"attributes":{"name":"Arturo Wyman","age":72,"location":"Louisville/Jefferson County"}},{"attributes":{"name":"Mike Sipes","age":66,"location":"Fort Elliottchester"}},{"attributes":{"name":"Margie Bauch V","age":68,"location":"South Santiago"}},{"attributes":{"name":"Alma Nitzsche","age":54,"location":"South Finnmouth"}},{"attributes":{"name":"Art Kozey","age":26,"location":"Feilport"}},{"attributes":{"name":"Betty Bradtke","age":19,"location":"Connellyshire"}},{"attributes":{"name":"Lloyd Waters","age":20,"location":"North Glen"}},{"attributes":{"name":"Gilberto Frami","age":68,"location":"New Evelineburgh"}},{"attributes":{"name":"Guadalupe Kulas","age":53,"location":"Balistreriport"}},{"attributes":{"name":"Lela Tillman","age":44,"location":"Caesarfort"}},{"attributes":{"name":"Addison Shields","age":74,"location":"New Keshawntown"}},{"attributes":{"name":"Claud Nikolaus","age":72,"location":"West Winifred"}},{"attributes":{"name":"Randal Barrows","age":34,"location":"Port Orange"}},{"attributes":{"name":"Hazle Zulauf","age":65,"location":"Brookline"}},{"attributes":{"name":"Velva Labadie","age":33,"location":"Gerholdborough"}},{"attributes":{"name":"Joanna Gusikowski","age":20,"location":"New Palmaville"}},{"attributes":{"name":"Elmer Ratke-Hansen","age":50,"location":"North Charityfort"}},{"attributes":{"name":"Matthew Langosh","age":52,"location":"Bellingham"}},{"attributes":{"name":"Edith Schumm I","age":52,"location":"Lebsackview"}},{"attributes":{"name":"Jamie Runolfsdottir","age":23,"location":"McKinney"}},{"attributes":{"name":"Jonathan Stoltenberg","age":33,"location":"Samirshire"}},{"attributes":{"name":"Abraham Corkery","age":70,"location":"Cleveland Heights"}},{"attributes":{"name":"Jamaal Koch","age":54,"location":"Ahmadworth"}},{"attributes":{"name":"Mr. Vernon Dickens","age":35,"location":"New Cliffordfort"}},{"attributes":{"name":"Otilia Schmidt","age":60,"location":"Moline"}},{"attributes":{"name":"Elian Morissette","age":23,"location":"New Francescofort"}},{"attributes":{"name":"Jane Hermiston DVM","age":71,"location":"Kent"}},{"attributes":{"name":"Mr. Mauricio Rau MD","age":61,"location":"Port Stephan"}},{"attributes":{"name":"Gladyce Kris-Farrell","age":59,"location":"New Tommiehaven"}},{"attributes":{"name":"Maximillia Anderson","age":70,"location":"East Nikkostead"}},{"attributes":{"name":"Ambrose Farrell","age":58,"location":"Fort Jeffereyton"}},{"attributes":{"name":"Maximo Skiles","age":34,"location":"Ardithcester"}},{"attributes":{"name":"Adrienne Skiles","age":53,"location":"New Adolfo"}},{"attributes":{"name":"Terrill Runolfsdottir","age":76,"location":"West Sherman"}},{"attributes":{"name":"Dr. Bertha Anderson","age":43,"location":"New Mariettamouth"}},{"attributes":{"name":"Ronny Simonis","age":73,"location":"North Rosalee"}},{"attributes":{"name":"Darien Konopelski Sr.","age":70,"location":"Port Thaddeus"}},{"attributes":{"name":"Raquel Paucek","age":27,"location":"Colorado Springs"}},{"attributes":{"name":"Otis Hamill","age":65,"location":"Sharonborough"}},{"attributes":{"name":"Camron Kub","age":38,"location":"Emmerichcester"}},{"attributes":{"name":"Leopold Stracke","age":56,"location":"National City"}},{"attributes":{"name":"Armando Barton","age":19,"location":"Centennial"}},{"attributes":{"name":"Jacynthe Koss","age":45,"location":"New David"}},{"attributes":{"name":"Craig Streich","age":60,"location":"Ceasarfield"}},{"attributes":{"name":"Rosemarie Treutel","age":64,"location":"Baldwin Park"}},{"attributes":{"name":"Ansel Boehm","age":52,"location":"Citrus Heights"}},{"attributes":{"name":"Dr. Lloyd Reichert","age":39,"location":"Kuphalberg"}},{"attributes":{"name":"Grady Jaskolski","age":21,"location":"West Covina"}},{"attributes":{"name":"Dr. Tony Sporer","age":29,"location":"Port Skylar"}},{"attributes":{"name":"Bill Hirthe","age":56,"location":"Fort Frankhaven"}},{"attributes":{"name":"Rickey Legros","age":23,"location":"Veumland"}},{"attributes":{"name":"Eda Lesch","age":44,"location":"North Natasha"}},{"attributes":{"name":"Dr. Luigi Bahringer","age":24,"location":"West Quinnshire"}},{"attributes":{"name":"Dr. Sydney Erdman","age":32,"location":"Emoryville"}},{"attributes":{"name":"Keyshawn Dietrich","age":54,"location":"Maggiefield"}},{"attributes":{"name":"Granville Lubowitz","age":36,"location":"South Berry"}},{"attributes":{"name":"Leonel Okuneva","age":36,"location":"Port Nedberg"}},{"attributes":{"name":"Laurence Gleason","age":67,"location":"Parkerstad"}},{"attributes":{"name":"Dominique Swaniawski","age":52,"location":"Zulaufport"}},{"attributes":{"name":"Quinton Kohler","age":56,"location":"Taunton"}},{"attributes":{"name":"Joy Pagac-Jaskolski","age":53,"location":"Port Nicholasport"}},{"attributes":{"name":"Dr. Edwardo Weimann","age":27,"location":"East Onaburgh"}},{"attributes":{"name":"Greg Frami-Hodkiewicz","age":24,"location":"Generalchester"}},{"attributes":{"name":"Allen Bednar","age":61,"location":"Port Tamarafield"}},{"attributes":{"name":"Taya Schuppe","age":18,"location":"Rueckerfield"}},{"attributes":{"name":"David Dare","age":51,"location":"West Josuehaven"}},{"attributes":{"name":"Jerrell Carter","age":19,"location":"South Heath"}},{"attributes":{"name":"Katheryn Welch","age":71,"location":"Fort Aishafort"}},{"attributes":{"name":"Greyson Runte","age":76,"location":"South Mistyview"}},{"attributes":{"name":"Otto Hirthe","age":40,"location":"Port Euna"}},{"attributes":{"name":"Miriam Orn","age":67,"location":"Beierland"}},{"attributes":{"name":"Rosalie Hoppe PhD","age":59,"location":"North Aglae"}},{"attributes":{"name":"Laurie Collins","age":57,"location":"Lubowitzburgh"}},{"attributes":{"name":"Diane Wuckert","age":75,"location":"Bartolettiworth"}},{"attributes":{"name":"Denis O'Connell","age":33,"location":"West Vesta"}},{"attributes":{"name":"Dale Crona","age":41,"location":"Camarillo"}},{"attributes":{"name":"Emily Klein","age":25,"location":"Port Sheldonburgh"}},{"attributes":{"name":"Lula Hintz","age":62,"location":"Beavercreek"}},{"attributes":{"name":"Shelia Marvin","age":35,"location":"New Destany"}},{"attributes":{"name":"Ms. Eliezer Champlin","age":49,"location":"Texas City"}},{"attributes":{"name":"Enoch Bayer","age":63,"location":"Cormierport"}},{"attributes":{"name":"Carmel Feeney","age":71,"location":"Alberthamouth"}},{"attributes":{"name":"Ladarius Maggio","age":68,"location":"Sunrise"}},{"attributes":{"name":"Andrea Leuschke","age":75,"location":"North Antwonburgh"}},{"attributes":{"name":"Flora Rohan","age":61,"location":"New Trace"}},{"attributes":{"name":"Sarah Gorczany","age":60,"location":"Aspen Hill"}},{"attributes":{"name":"Dixie Ernser","age":26,"location":"Carson City"}},{"attributes":{"name":"Terry Schamberger","age":70,"location":"Dewittstead"}},{"attributes":{"name":"Sierra Ferry","age":18,"location":"Cedar Hill"}},{"attributes":{"name":"Gene Hansen Jr.","age":43,"location":"West Celineburgh"}},{"attributes":{"name":"Dwayne Conroy","age":52,"location":"Lake Jensen"}},{"attributes":{"name":"Bettie Hammes","age":69,"location":"Kuhicstad"}},{"attributes":{"name":"Paula Gleason","age":40,"location":"Jeffbury"}},{"attributes":{"name":"Abigayle Langosh","age":71,"location":"Robinberg"}},{"attributes":{"name":"Sarah Nolan","age":38,"location":"Fort Lauderdale"}},{"attributes":{"name":"Levi Wintheiser","age":77,"location":"New Mikefort"}},{"attributes":{"name":"Aaron Barrows I","age":47,"location":"New Genovevaton"}},{"attributes":{"name":"Ms. Willie Little DVM","age":48,"location":"Brownport"}},{"attributes":{"name":"Nathaniel Fritsch IV","age":31,"location":"Indio"}},{"attributes":{"name":"Gilbert McDermott","age":24,"location":"Arecibo"}},{"attributes":{"name":"Mack Corwin","age":66,"location":"Lefflerfurt"}},{"attributes":{"name":"Nolan Zieme","age":19,"location":"East Bobbie"}},{"attributes":{"name":"Melba Doyle","age":21,"location":"New Violet"}},{"attributes":{"name":"Mr. Charlene Blick","age":33,"location":"Fort Nikki"}},{"attributes":{"name":"Sasha West","age":55,"location":"Huelside"}},{"attributes":{"name":"Grady Stehr","age":20,"location":"Agustinafort"}},{"attributes":{"name":"Rachel Crona","age":32,"location":"Fort Rex"}},{"attributes":{"name":"Miss Evalyn Feest","age":41,"location":"Juliusside"}},{"attributes":{"name":"Ilene Waters Jr.","age":30,"location":"Holdenfurt"}},{"attributes":{"name":"Ivan Trantow IV","age":24,"location":"Predovicbury"}},{"attributes":{"name":"Keara Gulgowski","age":45,"location":"North Denis"}},{"attributes":{"name":"Louise Howell","age":70,"location":"Xzavierport"}},{"attributes":{"name":"Mr. Mario Weissnat III","age":53,"location":"Port Tabithaport"}},{"attributes":{"name":"Megan Vandervort","age":58,"location":"Alvinashire"}},{"attributes":{"name":"Kale Bednar","age":66,"location":"Russelburgh"}},{"attributes":{"name":"Archibald Green","age":39,"location":"Bowling Green"}},{"attributes":{"name":"Gayle Christiansen","age":79,"location":"St. Peters"}},{"attributes":{"name":"Kendra West","age":74,"location":"Port Camryntown"}},{"attributes":{"name":"Nicolas Brekke III","age":64,"location":"Lelaboro"}},{"attributes":{"name":"Jill Pacocha","age":20,"location":"South Avery"}},{"attributes":{"name":"Yvette Bogisich","age":63,"location":"Pansyshire"}},{"attributes":{"name":"Raymond McClure-Parker","age":42,"location":"Walterfurt"}},{"attributes":{"name":"Danny Dare","age":36,"location":"Schowalterport"}},{"attributes":{"name":"Zack Barton","age":38,"location":"Port Rosalynburgh"}},{"attributes":{"name":"Suzanne O'Reilly","age":57,"location":"West Lorenzo"}},{"attributes":{"name":"Charles Johns","age":75,"location":"East Clementinamouth"}},{"attributes":{"name":"Deanna Torp DVM","age":66,"location":"Dearborn"}},{"attributes":{"name":"Mindy Dibbert","age":65,"location":"Orland Park"}},{"attributes":{"name":"Frankie Hoppe","age":64,"location":"Rogahnborough"}},{"attributes":{"name":"Alberto Casper","age":65,"location":"Fort Jordyworth"}},{"attributes":{"name":"Favian Hessel","age":72,"location":"North Giovani"}},{"attributes":{"name":"Hugh McKenzie","age":44,"location":"Ashlynnberg"}},{"attributes":{"name":"Kristi Bins","age":51,"location":"Scarlettberg"}},{"attributes":{"name":"Ewell Friesen","age":56,"location":"South Jaylinport"}},{"attributes":{"name":"Tyrone Schinner","age":46,"location":"Thornton"}},{"attributes":{"name":"Kathryn Hand","age":62,"location":"Maggioview"}},{"attributes":{"name":"Monserrate Ortiz","age":33,"location":"Lebsackchester"}},{"attributes":{"name":"Irma Greenfelder","age":68,"location":"West Maia"}},{"attributes":{"name":"Marjolaine Huels","age":27,"location":"Botsfordshire"}},{"attributes":{"name":"Sven Stamm","age":19,"location":"Blandaworth"}},{"attributes":{"name":"Mr. Dejuan Baumbach","age":32,"location":"South Caylacester"}},{"attributes":{"name":"Dr. Leslie Hodkiewicz","age":38,"location":"Karibury"}},{"attributes":{"name":"Hugh O'Conner IV","age":80,"location":"North Cassandra"}},{"attributes":{"name":"Beverly Hauck","age":36,"location":"Fargo"}},{"attributes":{"name":"Hester Hills","age":40,"location":"North Shanel"}},{"attributes":{"name":"Jennifer Lockman","age":76,"location":"Brownberg"}},{"attributes":{"name":"Karli Murray","age":60,"location":"Fort Neomafurt"}},{"attributes":{"name":"Janet Nader","age":56,"location":"Antelope"}},{"attributes":{"name":"Miss Karson Larson Sr.","age":28,"location":"East Vincenzo"}},{"attributes":{"name":"Mack Schultz","age":18,"location":"Rogahnmouth"}},{"attributes":{"name":"Jude Zieme","age":38,"location":"Fort Nathanland"}},{"attributes":{"name":"Rowan Labadie","age":52,"location":"Schummbury"}},{"attributes":{"name":"Dustin Hickle","age":68,"location":"Kertzmannfurt"}},{"attributes":{"name":"Madeline Ryan","age":63,"location":"Windlerberg"}},{"attributes":{"name":"Zoie Ledner","age":51,"location":"North Kiara"}},{"attributes":{"name":"Freda Wiegand","age":69,"location":"Stewartmouth"}},{"attributes":{"name":"Otis Goldner","age":56,"location":"Austynview"}},{"attributes":{"name":"Ardella Senger","age":36,"location":"Lewisville"}},{"attributes":{"name":"Ulises Connelly","age":19,"location":"South Tristonside"}},{"attributes":{"name":"Abraham Bailey","age":27,"location":"Ontario"}},{"attributes":{"name":"Madeline Raynor","age":55,"location":"Fort Nelle"}},{"attributes":{"name":"Loren Barrows","age":76,"location":"Boehmside"}},{"attributes":{"name":"Ethel Little","age":63,"location":"Port Chanel"}},{"attributes":{"name":"Marjory Orn","age":71,"location":"East Kirstinfort"}},{"attributes":{"name":"Waylon Kshlerin","age":38,"location":"Tellyshire"}},{"attributes":{"name":"Dean Kiehn","age":41,"location":"Rueckercester"}},{"attributes":{"name":"Andrew Lesch","age":21,"location":"Lake Rylan"}},{"attributes":{"name":"Julian Lind","age":75,"location":"Uptonburgh"}},{"attributes":{"name":"Dr. Bernita Deckow","age":47,"location":"Naderview"}},{"attributes":{"name":"Jimmie Walker","age":51,"location":"Covina"}},{"attributes":{"name":"Phillip Steuber MD","age":63,"location":"Gerdafurt"}},{"attributes":{"name":"Eric Kerluke","age":49,"location":"Lafayettebury"}},{"attributes":{"name":"Vergie Baumbach MD","age":39,"location":"East Catherineton"}},{"attributes":{"name":"Myron Schiller DVM","age":45,"location":"Racine"}},{"attributes":{"name":"Marquis Hintz","age":18,"location":"North Joy"}},{"attributes":{"name":"Jonathan Cartwright","age":22,"location":"Alexandrealand"}},{"attributes":{"name":"Alessia Smitham","age":26,"location":"Margarettatown"}},{"attributes":{"name":"Rowan Rodriguez","age":60,"location":"Palo Alto"}},{"attributes":{"name":"Stacy Price MD","age":80,"location":"Bartonhaven"}},{"attributes":{"name":"Felicia Kemmer","age":57,"location":"Evansville"}},{"attributes":{"name":"Mrs. Marco Armstrong","age":23,"location":"Danikaburgh"}},{"attributes":{"name":"Natalie Lindgren","age":79,"location":"Deontaeburgh"}},{"attributes":{"name":"Adam Purdy","age":22,"location":"Fort Sallie"}},{"attributes":{"name":"Joanna Parker II","age":21,"location":"Arvada"}},{"attributes":{"name":"Trudie Bauch","age":46,"location":"Fort Remington"}},{"attributes":{"name":"Owen Kautzer Sr.","age":34,"location":"Port Lillyborough"}},{"attributes":{"name":"Christine Franecki","age":73,"location":"Montetown"}},{"attributes":{"name":"Courtney Strosin Jr.","age":39,"location":"Binghamton"}},{"attributes":{"name":"Wiley Crooks","age":74,"location":"Newport News"}},{"attributes":{"name":"Maiya Pfannerstill","age":32,"location":"Kozeyboro"}},{"attributes":{"name":"Tressa O'Hara","age":74,"location":"Lake Paulabury"}},{"attributes":{"name":"Eleanora Gulgowski","age":74,"location":"Belleville"}},{"attributes":{"name":"Betty Halvorson","age":59,"location":"Collinsfield"}},{"attributes":{"name":"Isom Streich","age":42,"location":"Portland"}},{"attributes":{"name":"Leonard Greenfelder II","age":23,"location":"Riceboro"}},{"attributes":{"name":"Mrs. Alma Halvorson","age":38,"location":"Irwinborough"}},{"attributes":{"name":"Roy Connelly V","age":50,"location":"Cristophercester"}},{"attributes":{"name":"Khalid Leffler","age":54,"location":"East Alexandremouth"}},{"attributes":{"name":"Terry Blick","age":60,"location":"Arcadia"}},{"attributes":{"name":"Karson Rogahn-Stark","age":52,"location":"Handstead"}},{"attributes":{"name":"Henrietta Von","age":58,"location":"Fort Keshaunfort"}},{"attributes":{"name":"Jonathon Borer-Paucek II","age":72,"location":"Riverside"}},{"attributes":{"name":"Andrea Stanton","age":40,"location":"Port Mollyside"}},{"attributes":{"name":"Nathen Kautzer MD","age":43,"location":"West Karinaboro"}},{"attributes":{"name":"Christy Kuhic","age":27,"location":"South Raheem"}},{"attributes":{"name":"Lonnie Yundt V","age":62,"location":"Pueblo"}},{"attributes":{"name":"Lauryn Stanton","age":64,"location":"West Caitlyn"}},{"attributes":{"name":"Woodrow Schaden","age":70,"location":"Predovicboro"}},{"attributes":{"name":"Laisha Treutel MD","age":79,"location":"Edina"}},{"attributes":{"name":"Agnes Abernathy","age":44,"location":"Port Riley"}},{"attributes":{"name":"Jakayla Fadel","age":43,"location":"Abilene"}},{"attributes":{"name":"Molly Koch","age":43,"location":"New Ayanafield"}},{"attributes":{"name":"Heath Boyle","age":50,"location":"Namehaven"}},{"attributes":{"name":"Louis Powlowski","age":26,"location":"Norman"}},{"attributes":{"name":"Kristine Metz Sr.","age":53,"location":"Lefflerland"}},{"attributes":{"name":"Monserrate Russel","age":31,"location":"Oranshire"}},{"attributes":{"name":"Felicia Lakin","age":18,"location":"Schuppeworth"}},{"attributes":{"name":"Ms. Hertha Mann","age":69,"location":"Rowebury"}},{"attributes":{"name":"Stuart Greenholt","age":38,"location":"Jeramiehaven"}},{"attributes":{"name":"Dexter Larkin","age":25,"location":"South Ford"}},{"attributes":{"name":"Enrique Muller","age":63,"location":"Isacfield"}},{"attributes":{"name":"Ms. Kelley Swift","age":45,"location":"Angelitaland"}},{"attributes":{"name":"Clayton Abbott","age":54,"location":"Orinmouth"}},{"attributes":{"name":"Jessika Treutel","age":42,"location":"New Alexmouth"}},{"attributes":{"name":"Duane Glover","age":56,"location":"Fort Coleworth"}},{"attributes":{"name":"Danielle Reynolds","age":67,"location":"South Magali"}},{"attributes":{"name":"Lorenza Sauer","age":59,"location":"West Glendaboro"}},{"attributes":{"name":"Loy Fahey I","age":68,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Cydney Hane","age":60,"location":"Port Flossie"}},{"attributes":{"name":"Deangelo Roob","age":49,"location":"Port Lilyan"}},{"attributes":{"name":"Darrion Streich DDS","age":43,"location":"Harlingen"}},{"attributes":{"name":"Wilfred Romaguera","age":66,"location":"Osinskiboro"}},{"attributes":{"name":"Juanita Heller","age":32,"location":"Fort Justinaview"}},{"attributes":{"name":"Theodora Grimes III","age":19,"location":"North Yeseniaboro"}},{"attributes":{"name":"Lawson Bode","age":43,"location":"Kesslershire"}},{"attributes":{"name":"Sophia Fay","age":26,"location":"Emmittview"}},{"attributes":{"name":"Joshua Hamill","age":77,"location":"North Gilberto"}},{"attributes":{"name":"Lynn Kohler","age":44,"location":"Fort Frederiquefort"}},{"attributes":{"name":"Irma Bahringer","age":74,"location":"Considinestead"}},{"attributes":{"name":"Cali Gutkowski","age":51,"location":"Vallejo"}},{"attributes":{"name":"Tim Gleason","age":48,"location":"Krisshire"}},{"attributes":{"name":"Tanya Monahan","age":49,"location":"Dachhaven"}},{"attributes":{"name":"Becky Ortiz DDS","age":52,"location":"Largo"}},{"attributes":{"name":"Halie Denesik","age":63,"location":"Taunton"}},{"attributes":{"name":"Gloria Ullrich PhD","age":26,"location":"Washington"}},{"attributes":{"name":"Patty Zemlak","age":62,"location":"Kundehaven"}},{"attributes":{"name":"Brendan Rice I","age":40,"location":"Lake Vickiefurt"}},{"attributes":{"name":"Ashlynn Mills","age":74,"location":"Sauershire"}},{"attributes":{"name":"Bernardo Schaefer","age":21,"location":"Lake Jewellbury"}},{"attributes":{"name":"Emmie O'Keefe","age":40,"location":"Goldnerfield"}},{"attributes":{"name":"Paulette Deckow","age":70,"location":"Hansenchester"}},{"attributes":{"name":"Allison Blanda","age":44,"location":"Alvertabury"}},{"attributes":{"name":"Nicolas Kassulke","age":77,"location":"North Lenoreshire"}},{"attributes":{"name":"Jared Luettgen","age":73,"location":"Kuphalport"}},{"attributes":{"name":"Jacob Daniel","age":69,"location":"New Ewald"}},{"attributes":{"name":"Rudolph Reichel","age":80,"location":"East Kenyon"}},{"attributes":{"name":"Nelson VonRueden","age":75,"location":"Isaiasworth"}},{"attributes":{"name":"Brandt Lehner","age":53,"location":"Lake Mertieland"}},{"attributes":{"name":"Maritza Murazik","age":49,"location":"Purdyland"}},{"attributes":{"name":"Dr. Carlo Prosacco","age":75,"location":"North Layne"}},{"attributes":{"name":"Lucius Schaden","age":42,"location":"Johnsonworth"}},{"attributes":{"name":"Sheldon Connelly","age":72,"location":"Edwinabury"}},{"attributes":{"name":"Doris Tromp","age":29,"location":"Rialto"}},{"attributes":{"name":"Cesar Morar","age":55,"location":"South Maeganview"}},{"attributes":{"name":"Felipe Jenkins","age":60,"location":"Goodyear"}},{"attributes":{"name":"Diana Hills","age":36,"location":"Hassieland"}},{"attributes":{"name":"Leora Cruickshank","age":69,"location":"New Cecile"}},{"attributes":{"name":"Pamela Schumm","age":70,"location":"East Wanda"}},{"attributes":{"name":"Adonis Roberts","age":53,"location":"Ahmadburgh"}},{"attributes":{"name":"Maggie Gottlieb IV","age":42,"location":"Vandervorttown"}},{"attributes":{"name":"Emily Witting I","age":32,"location":"La Crosse"}},{"attributes":{"name":"Eda Thiel","age":22,"location":"New Boyd"}},{"attributes":{"name":"Rosie Schumm","age":60,"location":"Bethelcester"}},{"attributes":{"name":"Hannah Feest","age":18,"location":"Hildegardburgh"}},{"attributes":{"name":"Peggy Stoltenberg","age":78,"location":"Fort Denis"}},{"attributes":{"name":"Miss Gwen Rogahn Jr.","age":80,"location":"Maxwellview"}},{"attributes":{"name":"Dr. Cassie Corwin","age":36,"location":"Gustaveton"}},{"attributes":{"name":"Durward Mayert","age":34,"location":"Heavenboro"}},{"attributes":{"name":"Marion Lesch","age":51,"location":"Runtebury"}},{"attributes":{"name":"Lisa Parisian","age":72,"location":"Germaineton"}},{"attributes":{"name":"Alaina Waters","age":44,"location":"Jalonville"}},{"attributes":{"name":"Thea Ebert","age":68,"location":"Fort Amy"}},{"attributes":{"name":"Mafalda Sauer","age":21,"location":"Port Nicola"}},{"attributes":{"name":"Breana Schaefer","age":47,"location":"Tacoma"}},{"attributes":{"name":"Loren Huels","age":43,"location":"Hilbertboro"}},{"attributes":{"name":"Arturo Torp","age":38,"location":"Berkeley"}},{"attributes":{"name":"Adrian Herzog","age":68,"location":"Hoboken"}},{"attributes":{"name":"Anita Bergnaum","age":51,"location":"New Christport"}},{"attributes":{"name":"Charles Dibbert","age":48,"location":"Roxanecester"}},{"attributes":{"name":"Shelly Little","age":57,"location":"Reingerchester"}},{"attributes":{"name":"Grover Raynor I","age":39,"location":"Moore"}},{"attributes":{"name":"Yoshiko Rodriguez","age":73,"location":"Sidneyborough"}},{"attributes":{"name":"Eloise Will","age":73,"location":"Oletahaven"}},{"attributes":{"name":"Mr. Lowell Fritsch","age":62,"location":"Olsonstad"}},{"attributes":{"name":"Dr. Armando Pacocha","age":76,"location":"Port Reneecester"}},{"attributes":{"name":"Sid Jerde","age":23,"location":"Strongsville"}},{"attributes":{"name":"Neva Orn","age":74,"location":"Visalia"}},{"attributes":{"name":"Anika Mohr","age":21,"location":"Harberport"}},{"attributes":{"name":"Rex Howell","age":41,"location":"Fort Kieranland"}},{"attributes":{"name":"Kristin Wiegand","age":19,"location":"New Brisatown"}},{"attributes":{"name":"Berta Johnson","age":49,"location":"North Josieburgh"}},{"attributes":{"name":"Mrs. Tamara Schultz","age":56,"location":"East Marquis"}},{"attributes":{"name":"Oliver Kemmer","age":49,"location":"Lake Scotty"}},{"attributes":{"name":"Steven Hagenes","age":37,"location":"West Mireilleborough"}},{"attributes":{"name":"Muhammad Kemmer","age":38,"location":"Micahtown"}},{"attributes":{"name":"Miss Marcos Schroeder","age":79,"location":"Coltonboro"}},{"attributes":{"name":"Chaya Thompson II","age":41,"location":"Harrisside"}},{"attributes":{"name":"Debbie Bruen","age":65,"location":"Fort Fredychester"}},{"attributes":{"name":"Lillie Runte","age":60,"location":"Sigridfurt"}},{"attributes":{"name":"Alvah Marquardt","age":52,"location":"Gradyberg"}},{"attributes":{"name":"Martine Morar","age":24,"location":"Hillschester"}},{"attributes":{"name":"Miss Celia Rice","age":30,"location":"Nannieborough"}},{"attributes":{"name":"Elinor Corkery","age":55,"location":"North Avery"}},{"attributes":{"name":"Ayla Carter","age":28,"location":"Lake Jalynhaven"}},{"attributes":{"name":"Faith Haag","age":37,"location":"Fort Katelynnfield"}},{"attributes":{"name":"Billy Crist","age":57,"location":"Pfannerstillchester"}},{"attributes":{"name":"Angelina Wilderman","age":23,"location":"Rustystad"}},{"attributes":{"name":"Rhoda Walker","age":41,"location":"Robertachester"}},{"attributes":{"name":"Caleb Nicolas","age":28,"location":"Iowa City"}},{"attributes":{"name":"Orlando Grant","age":72,"location":"Creolashire"}},{"attributes":{"name":"Zachary Cronin","age":61,"location":"Fisherburgh"}},{"attributes":{"name":"Miss Celestino Parisian","age":45,"location":"Fort Oda"}},{"attributes":{"name":"Mr. Latoya Koss","age":71,"location":"Satterfieldshire"}},{"attributes":{"name":"Sonya Walter","age":57,"location":"New Carleyland"}},{"attributes":{"name":"Florine Hand","age":77,"location":"West Rolando"}},{"attributes":{"name":"Mr. Lou DuBuque MD","age":58,"location":"East Vidastad"}},{"attributes":{"name":"Judson Rippin","age":28,"location":"Daly City"}},{"attributes":{"name":"Ms. Lucia Hermann","age":54,"location":"Murrieta"}},{"attributes":{"name":"Silvia Hegmann","age":48,"location":"Waterbury"}},{"attributes":{"name":"Tabitha Sipes","age":78,"location":"Arvelstead"}},{"attributes":{"name":"Greg Hintz","age":26,"location":"Roanoke"}},{"attributes":{"name":"Nadia Hills","age":46,"location":"Kautzerville"}},{"attributes":{"name":"Noah Harber","age":30,"location":"Carlosstad"}},{"attributes":{"name":"Shane Fahey","age":47,"location":"Bransonfield"}},{"attributes":{"name":"George Mante","age":41,"location":"New Rosalee"}},{"attributes":{"name":"Susan Mann","age":56,"location":"Gracielaworth"}},{"attributes":{"name":"Kale Denesik","age":66,"location":"Shanonville"}},{"attributes":{"name":"Josefina Zboncak","age":26,"location":"Lake Gagecester"}},{"attributes":{"name":"Okey Lindgren","age":43,"location":"Jakobside"}},{"attributes":{"name":"Garret Huels","age":39,"location":"West Jaimeshire"}},{"attributes":{"name":"Danyka Leannon","age":20,"location":"South Erwin"}},{"attributes":{"name":"Clarence Greenholt","age":67,"location":"Littleton"}},{"attributes":{"name":"Mr. Melvin Kessler","age":71,"location":"Jenniferbury"}},{"attributes":{"name":"Dr. Lawrence Watsica","age":41,"location":"Fort Nelsfort"}},{"attributes":{"name":"Charles Collins","age":28,"location":"Pourosport"}},{"attributes":{"name":"Dr. Francis Bruen","age":63,"location":"Rogahnberg"}},{"attributes":{"name":"Hazel Ritchie Jr.","age":18,"location":"Goyetteborough"}},{"attributes":{"name":"Mr. Manuel Nader","age":51,"location":"Coral Springs"}},{"attributes":{"name":"Randolph Kunde III","age":31,"location":"Mullerport"}},{"attributes":{"name":"Mossie Effertz MD","age":75,"location":"Lake Micah"}},{"attributes":{"name":"Ms. Lizeth Shields","age":48,"location":"Port Jennifer"}},{"attributes":{"name":"Casey Harvey","age":78,"location":"Schaeferfurt"}},{"attributes":{"name":"Lavon Dicki-Welch","age":51,"location":"New Leonoraworth"}},{"attributes":{"name":"Fatima Klocko-Stark","age":49,"location":"Warren"}},{"attributes":{"name":"Charles Mosciski","age":25,"location":"Lake Bruceport"}},{"attributes":{"name":"Meghan Larkin","age":43,"location":"Frederick"}},{"attributes":{"name":"Floyd Harber","age":20,"location":"West Reagan"}},{"attributes":{"name":"Mr. Ronald Wisoky","age":51,"location":"West Theoshire"}},{"attributes":{"name":"Rachelle Green","age":23,"location":"New Rosemarie"}},{"attributes":{"name":"Tina Towne","age":35,"location":"Hemet"}},{"attributes":{"name":"Martin Balistreri-Tromp","age":40,"location":"Port Ambrosestad"}},{"attributes":{"name":"Pat Fadel","age":54,"location":"Auerburgh"}},{"attributes":{"name":"Sonia Murazik","age":62,"location":"Nashville-Davidson"}},{"attributes":{"name":"Kiana Rodriguez","age":67,"location":"Shoreline"}},{"attributes":{"name":"Billie Torphy","age":27,"location":"Worcester"}},{"attributes":{"name":"Orin Wisoky","age":54,"location":"Toyside"}},{"attributes":{"name":"Ross Jones","age":69,"location":"Duluth"}},{"attributes":{"name":"Liliane Fritsch-Bernier","age":23,"location":"East Damon"}},{"attributes":{"name":"Dulce Tromp","age":56,"location":"Simonisside"}},{"attributes":{"name":"Kaia Thompson","age":75,"location":"South Uniqueburgh"}},{"attributes":{"name":"Mrs. Shanny O'Conner","age":79,"location":"Wolfton"}},{"attributes":{"name":"Irene Cronin II","age":45,"location":"New Andreane"}},{"attributes":{"name":"Chyna Schimmel","age":45,"location":"West Maximillianland"}},{"attributes":{"name":"Belle Gulgowski-Boehm","age":43,"location":"Hartmannhaven"}},{"attributes":{"name":"Owen Botsford","age":47,"location":"Karenboro"}},{"attributes":{"name":"Koby Kreiger","age":48,"location":"Las Vegas"}},{"attributes":{"name":"Rochelle Langworth","age":47,"location":"Zulafurt"}},{"attributes":{"name":"Dr. Freddie Kunze MD","age":20,"location":"West Myrtle"}},{"attributes":{"name":"Lynette Walker","age":62,"location":"Port Minnie"}},{"attributes":{"name":"Ismael Boyer","age":77,"location":"Winonaton"}},{"attributes":{"name":"Jevon Christiansen-Tremblay","age":34,"location":"Jeffersonville"}},{"attributes":{"name":"Sam Connelly","age":30,"location":"Ceciltown"}},{"attributes":{"name":"June Franey","age":62,"location":"Fort Luis"}},{"attributes":{"name":"Aaron Senger","age":41,"location":"O'Keefehaven"}},{"attributes":{"name":"Beverly Armstrong IV","age":71,"location":"East Destinibury"}},{"attributes":{"name":"Dan Block","age":46,"location":"Parkerville"}},{"attributes":{"name":"Miracle Blick","age":36,"location":"East Heberland"}},{"attributes":{"name":"Kyle Hegmann","age":30,"location":"Christiansentown"}},{"attributes":{"name":"Tillman Harber","age":62,"location":"Tianatown"}},{"attributes":{"name":"Cody Labadie","age":30,"location":"Halborough"}},{"attributes":{"name":"Dr. Vicky Kub Sr.","age":75,"location":"Spinkaside"}},{"attributes":{"name":"Cristina Dickens","age":25,"location":"South Eusebioport"}},{"attributes":{"name":"Ms. Tressa Boyle","age":31,"location":"University"}},{"attributes":{"name":"Steven Rolfson","age":68,"location":"East Kittyboro"}},{"attributes":{"name":"Bernadette Walsh","age":55,"location":"South Edmund"}},{"attributes":{"name":"Vivian Kutch","age":51,"location":"West Jamal"}},{"attributes":{"name":"Lee Cremin","age":33,"location":"Sioux Falls"}},{"attributes":{"name":"Isabel Gulgowski-Fisher","age":41,"location":"Haagfurt"}},{"attributes":{"name":"Tabitha Witting","age":61,"location":"Brandiberg"}},{"attributes":{"name":"Cesar Ledner","age":24,"location":"Fort Dino"}},{"attributes":{"name":"Carmen Nitzsche","age":52,"location":"Port Ottotown"}},{"attributes":{"name":"Phyllis Turcotte","age":46,"location":"West Joyceton"}},{"attributes":{"name":"Mrs. Roosevelt Turner DDS","age":54,"location":"Lake Mervinworth"}},{"attributes":{"name":"Michael Dare-Hansen","age":28,"location":"West Samaratown"}},{"attributes":{"name":"Velda Jones-Wiegand","age":64,"location":"Friesenmouth"}},{"attributes":{"name":"Florencio Cronin","age":80,"location":"Windlerboro"}},{"attributes":{"name":"Kathleen Reynolds","age":29,"location":"New Molly"}},{"attributes":{"name":"Carrie Ward","age":19,"location":"Loisworth"}},{"attributes":{"name":"Anika Moore-Schmidt","age":38,"location":"Caesarbury"}},{"attributes":{"name":"Dr. Charlie Jacobson DVM","age":73,"location":"Port Madiefort"}},{"attributes":{"name":"Althea Hyatt","age":76,"location":"Alveraview"}},{"attributes":{"name":"Dr. Lavonne Ratke","age":73,"location":"Robelworth"}},{"attributes":{"name":"Vallie Kuphal","age":38,"location":"Rosemead"}},{"attributes":{"name":"Destini Lubowitz","age":28,"location":"Nashville-Davidson"}},{"attributes":{"name":"Darrell Homenick Jr.","age":80,"location":"Youngstown"}},{"attributes":{"name":"Gonzalo Fahey Jr.","age":52,"location":"West Ashlyhaven"}},{"attributes":{"name":"Martina Langosh-Nikolaus","age":48,"location":"Orange"}},{"attributes":{"name":"Claud Dooley","age":60,"location":"Apple Valley"}},{"attributes":{"name":"Jaime Sporer","age":74,"location":"North Anderson"}},{"attributes":{"name":"Maximillia Hoeger Jr.","age":66,"location":"North Nash"}},{"attributes":{"name":"Melisa Sanford","age":36,"location":"McKenzietown"}},{"attributes":{"name":"Seth Kilback","age":44,"location":"Solonfield"}},{"attributes":{"name":"Miss Zella Schaden","age":63,"location":"Keyshawncester"}},{"attributes":{"name":"Chad Lang","age":53,"location":"New Fredystad"}},{"attributes":{"name":"Susan Parker IV","age":73,"location":"South Jacquestown"}},{"attributes":{"name":"Martha Bogan","age":45,"location":"Opalport"}},{"attributes":{"name":"Shayna McClure","age":31,"location":"South Tina"}},{"attributes":{"name":"Drew Mueller","age":42,"location":"Deanton"}},{"attributes":{"name":"Betsy Rutherford","age":56,"location":"Elk Grove"}},{"attributes":{"name":"Guadalupe Boyle Sr.","age":39,"location":"North Camylle"}},{"attributes":{"name":"Shelia Casper","age":80,"location":"West Wanda"}},{"attributes":{"name":"Miss Dora Wunsch","age":33,"location":"Tucson"}},{"attributes":{"name":"Cassandra Murray","age":40,"location":"Port Sidneyworth"}},{"attributes":{"name":"Duane McKenzie-Parker","age":71,"location":"East Malvinaside"}},{"attributes":{"name":"Gabriel Robel","age":36,"location":"Miami Beach"}},{"attributes":{"name":"Francisco Beatty","age":48,"location":"Gradyburgh"}},{"attributes":{"name":"Bella Zulauf","age":56,"location":"Sheilafort"}},{"attributes":{"name":"Sheldon Waters","age":61,"location":"Lake Eugenebury"}},{"attributes":{"name":"Cora Toy","age":63,"location":"New Jaylenworth"}},{"attributes":{"name":"Randolph Macejkovic","age":39,"location":"Lake Jennie"}},{"attributes":{"name":"Bill Skiles V","age":65,"location":"Cristville"}},{"attributes":{"name":"Judith Keeling-Reinger","age":30,"location":"New Maxwellworth"}},{"attributes":{"name":"Georgianna Metz","age":22,"location":"West Nathenville"}},{"attributes":{"name":"Rickey Ryan","age":35,"location":"Cleveland"}},{"attributes":{"name":"Mattie O'Keefe","age":24,"location":"Longmont"}},{"attributes":{"name":"Clay Jakubowski","age":33,"location":"Marietta"}},{"attributes":{"name":"Van Skiles","age":27,"location":"South Mason"}},{"attributes":{"name":"Ms. Meghan Stracke","age":22,"location":"South Leafurt"}},{"attributes":{"name":"Cindy Stroman","age":59,"location":"Coltonview"}},{"attributes":{"name":"Alejandro Sporer-Gibson","age":76,"location":"New Jaclynview"}},{"attributes":{"name":"Arnold Baumbach","age":63,"location":"Lake Marquise"}},{"attributes":{"name":"Marlene Hauck","age":79,"location":"Giuseppeport"}},{"attributes":{"name":"Erna Konopelski","age":43,"location":"North Rettashire"}},{"attributes":{"name":"Emily Kertzmann","age":62,"location":"North Ociechester"}},{"attributes":{"name":"Kathryn Huel","age":51,"location":"Rathbury"}},{"attributes":{"name":"Kristine Towne","age":74,"location":"Wittingfurt"}},{"attributes":{"name":"Angelo Wyman","age":31,"location":"Lynnborough"}},{"attributes":{"name":"Spencer Hansen","age":42,"location":"Port Fredaside"}},{"attributes":{"name":"Willis Lebsack","age":50,"location":"New Augusta"}},{"attributes":{"name":"Alberto Mayert","age":22,"location":"Noblesville"}},{"attributes":{"name":"Miss Kathryn Mohr","age":72,"location":"Fort Antonia"}},{"attributes":{"name":"Dell Murazik","age":56,"location":"Cleveworth"}},{"attributes":{"name":"Joshua Ryan II","age":68,"location":"Gracieshire"}},{"attributes":{"name":"Matthew Hane MD","age":70,"location":"New Walton"}},{"attributes":{"name":"Kelli Cronin DVM","age":53,"location":"Stokescester"}},{"attributes":{"name":"Barbara Haag","age":33,"location":"New Dorcasfield"}},{"attributes":{"name":"Verda Rice I","age":80,"location":"Reingerbury"}},{"attributes":{"name":"Lilla Bode","age":45,"location":"East Brock"}},{"attributes":{"name":"April Runolfsdottir","age":28,"location":"Lehnerworth"}},{"attributes":{"name":"Rowena Armstrong","age":24,"location":"Lake Donfurt"}},{"attributes":{"name":"Darrel Christiansen","age":23,"location":"Emmiecester"}},{"attributes":{"name":"Justine Quitzon","age":23,"location":"Gaithersburg"}},{"attributes":{"name":"Stephon Hermann","age":64,"location":"New Vedaboro"}},{"attributes":{"name":"Domenico Ferry","age":68,"location":"Lake Randy"}},{"attributes":{"name":"Mrs. Betsy Wolff","age":35,"location":"South Jalynstad"}},{"attributes":{"name":"Mr. Lempi Zieme","age":49,"location":"Clementinechester"}},{"attributes":{"name":"Bill Goodwin","age":61,"location":"Port Kathleen"}},{"attributes":{"name":"Santiago Frami","age":45,"location":"Lake Elsinore"}},{"attributes":{"name":"Mr. Floyd Kautzer","age":54,"location":"Borermouth"}},{"attributes":{"name":"Alycia Kihn","age":63,"location":"West Malachimouth"}},{"attributes":{"name":"Beulah Fay","age":20,"location":"West Evansside"}},{"attributes":{"name":"Lavonne Hansen","age":38,"location":"Lemkebury"}},{"attributes":{"name":"Delores Schaden","age":63,"location":"North Raoul"}},{"attributes":{"name":"Steven Douglas","age":62,"location":"North Ryan"}},{"attributes":{"name":"Miss Kendra Baumbach","age":64,"location":"Davis"}},{"attributes":{"name":"Marcelle Marvin","age":66,"location":"Janesville"}},{"attributes":{"name":"Hattie Johnston","age":47,"location":"Schmidtmouth"}},{"attributes":{"name":"Pearl Predovic","age":33,"location":"Boehmstad"}},{"attributes":{"name":"Katrina Quigley","age":63,"location":"Lonnystead"}},{"attributes":{"name":"Ulises Ullrich","age":37,"location":"Lake Brendan"}},{"attributes":{"name":"Mr. Mack Watsica","age":53,"location":"Erwinport"}},{"attributes":{"name":"Melody Windler-Luettgen","age":29,"location":"Bernierboro"}},{"attributes":{"name":"Andy Hagenes","age":22,"location":"East Ona"}},{"attributes":{"name":"Chadrick Pfeffer","age":55,"location":"Davie"}},{"attributes":{"name":"Arianna Feest","age":34,"location":"South Leslyburgh"}},{"attributes":{"name":"Tyrique Sawayn","age":35,"location":"Raeganport"}},{"attributes":{"name":"Antonietta Cormier","age":26,"location":"Ankeny"}},{"attributes":{"name":"Terri Veum IV","age":32,"location":"East Melodytown"}},{"attributes":{"name":"Dr. Lucy Hilpert","age":68,"location":"Battle Creek"}},{"attributes":{"name":"Mrs. Cathy Graham","age":30,"location":"North Dayna"}},{"attributes":{"name":"Miss Frederick Kessler","age":72,"location":"Schummfurt"}},{"attributes":{"name":"Barbara Zboncak","age":38,"location":"Royal Oak"}},{"attributes":{"name":"Brooke Smith","age":35,"location":"Wehnerfort"}},{"attributes":{"name":"Jon Schowalter","age":70,"location":"Port Estel"}},{"attributes":{"name":"Antoinette Marvin","age":70,"location":"Malden"}},{"attributes":{"name":"Brian Hermann","age":38,"location":"Renestead"}},{"attributes":{"name":"Dr. Dorian Harvey","age":75,"location":"Farrellburgh"}},{"attributes":{"name":"Mr. Derrick Skiles","age":75,"location":"East Melody"}},{"attributes":{"name":"Armando Greenholt","age":20,"location":"Raynorbury"}},{"attributes":{"name":"Rosie Fritsch","age":77,"location":"North Oswald"}},{"attributes":{"name":"William Kutch","age":74,"location":"West Bonnie"}},{"attributes":{"name":"Leonard O'Keefe","age":40,"location":"Gilroy"}},{"attributes":{"name":"Justin Wunsch-Grady","age":21,"location":"Missoula"}},{"attributes":{"name":"Tracey Grady","age":35,"location":"Wardhaven"}},{"attributes":{"name":"Henri Wyman","age":38,"location":"Camden"}},{"attributes":{"name":"Johnson Hirthe","age":44,"location":"Kesslerview"}},{"attributes":{"name":"Russell Schuster","age":36,"location":"West Lina"}},{"attributes":{"name":"Kimberly Bayer","age":19,"location":"Port Alfredo"}},{"attributes":{"name":"Jasmine Mueller","age":39,"location":"Port Charlotte"}},{"attributes":{"name":"Tammy Quigley","age":32,"location":"Mohrmouth"}},{"attributes":{"name":"Richard Toy","age":43,"location":"Nashville-Davidson"}},{"attributes":{"name":"Kailey Bauch","age":18,"location":"Huntersville"}},{"attributes":{"name":"Dr. Leonard Gulgowski","age":30,"location":"West Marco"}},{"attributes":{"name":"Aubrey Lang PhD","age":79,"location":"Padbergfurt"}},{"attributes":{"name":"Juan Kihn","age":26,"location":"North Wilfrid"}},{"attributes":{"name":"Sophia Collins","age":25,"location":"North Ian"}},{"attributes":{"name":"Mr. Lenna Heathcote","age":48,"location":"Fontana"}},{"attributes":{"name":"Owen Wiza","age":22,"location":"Missouriworth"}},{"attributes":{"name":"Lucia Kemmer","age":22,"location":"Hertacester"}},{"attributes":{"name":"Dana Daugherty","age":80,"location":"Moenview"}},{"attributes":{"name":"Ms. Vivienne Greenfelder","age":69,"location":"Fort Winonashire"}},{"attributes":{"name":"Lisa DuBuque","age":59,"location":"West Ahmedfort"}},{"attributes":{"name":"Dr. Wallace McLaughlin","age":75,"location":"Minneapolis"}},{"attributes":{"name":"Lela Rutherford","age":61,"location":"East Brodyton"}},{"attributes":{"name":"Leonie Parisian","age":40,"location":"Lake Carolyn"}},{"attributes":{"name":"Trystan Sawayn","age":49,"location":"Sengerburgh"}},{"attributes":{"name":"Jodi Hegmann","age":72,"location":"Kaileehaven"}},{"attributes":{"name":"Arvilla Jakubowski","age":78,"location":"St. Charles"}},{"attributes":{"name":"Marvin Prohaska","age":27,"location":"Orem"}},{"attributes":{"name":"Susan Jacobi","age":36,"location":"Jurupa Valley"}},{"attributes":{"name":"Sonia Powlowski","age":19,"location":"Washington"}},{"attributes":{"name":"Raul Sporer","age":26,"location":"Fort Felicity"}},{"attributes":{"name":"Felix Bechtelar","age":30,"location":"Baytown"}},{"attributes":{"name":"Melody O'Connell","age":31,"location":"Schroederville"}},{"attributes":{"name":"Christy Lind","age":37,"location":"Spring Valley"}},{"attributes":{"name":"Louis Blick","age":55,"location":"Port Camren"}},{"attributes":{"name":"Jana Goldner","age":48,"location":"Dorrisstad"}},{"attributes":{"name":"Ross Hartmann PhD","age":79,"location":"Hodkiewiczboro"}},{"attributes":{"name":"Litzy Harber","age":75,"location":"Wunschfort"}},{"attributes":{"name":"Stephanie Funk","age":50,"location":"Lake Berneiceview"}},{"attributes":{"name":"Russell Will","age":20,"location":"Rochester Hills"}},{"attributes":{"name":"Jimmy Labadie-Kozey","age":39,"location":"Izaiahtown"}},{"attributes":{"name":"Shelia Runolfsdottir MD","age":79,"location":"East Gudrun"}},{"attributes":{"name":"Keira Roberts","age":28,"location":"Tamiahaven"}},{"attributes":{"name":"Bill Rolfson","age":32,"location":"Sheboygan"}},{"attributes":{"name":"Cesar Morissette","age":71,"location":"Greenville"}},{"attributes":{"name":"Tressa Beer","age":65,"location":"Colliermouth"}},{"attributes":{"name":"Shane Sauer","age":37,"location":"Sawaynshire"}},{"attributes":{"name":"Leatha Toy","age":35,"location":"Chasityside"}},{"attributes":{"name":"Roger MacGyver","age":41,"location":"Lake Javonteboro"}},{"attributes":{"name":"Tasha Streich","age":56,"location":"Fort Earline"}},{"attributes":{"name":"Shaniya Zboncak","age":31,"location":"Estevanborough"}},{"attributes":{"name":"Ms. Alicia Gulgowski DDS","age":31,"location":"Danburgh"}},{"attributes":{"name":"Warren Homenick","age":47,"location":"Pine Bluff"}},{"attributes":{"name":"Jenna Daniel-Borer PhD","age":72,"location":"Magdalenastad"}},{"attributes":{"name":"Adrain Waters","age":77,"location":"West Lloyd"}},{"attributes":{"name":"Sidney Walker","age":73,"location":"Ritachester"}},{"attributes":{"name":"Dejon Schultz","age":31,"location":"Rickville"}},{"attributes":{"name":"Sabrina Schaden","age":45,"location":"Lake Zackcester"}},{"attributes":{"name":"Lynda Reichel","age":32,"location":"Plainfield"}},{"attributes":{"name":"Tanya Jakubowski","age":21,"location":"Lake Krystina"}},{"attributes":{"name":"Aileen Hessel","age":22,"location":"Schultzfort"}},{"attributes":{"name":"Mustafa Zemlak","age":31,"location":"Fort Yadira"}},{"attributes":{"name":"Josie Predovic-Welch","age":39,"location":"Castle Rock"}},{"attributes":{"name":"Toby Rau","age":57,"location":"Vivachester"}},{"attributes":{"name":"Eldred Brakus II","age":34,"location":"Santa Fe"}},{"attributes":{"name":"Taryn Shanahan","age":60,"location":"Maxietown"}},{"attributes":{"name":"Jackie Senger","age":46,"location":"Olivermouth"}},{"attributes":{"name":"Cory West","age":20,"location":"Lake Graysonfield"}},{"attributes":{"name":"Eunice Pfannerstill","age":77,"location":"Lake Judge"}},{"attributes":{"name":"Rebecca McKenzie","age":61,"location":"Port Cydney"}},{"attributes":{"name":"Crystal Doyle","age":33,"location":"Mayertworth"}},{"attributes":{"name":"Noel Romaguera Jr.","age":51,"location":"New Jamil"}},{"attributes":{"name":"Vickie Stamm","age":45,"location":"Dulcebury"}},{"attributes":{"name":"Louie Halvorson","age":26,"location":"North Antonio"}},{"attributes":{"name":"Dorothy Beier","age":75,"location":"Haagshire"}},{"attributes":{"name":"Yolanda Konopelski","age":60,"location":"East Janetside"}},{"attributes":{"name":"Anastacio Nienow","age":21,"location":"Krystelton"}},{"attributes":{"name":"Jovany Leuschke Jr.","age":58,"location":"North Camillaview"}},{"attributes":{"name":"Lowell Feest","age":68,"location":"Spring"}},{"attributes":{"name":"Courtney White","age":45,"location":"Prohaskaberg"}},{"attributes":{"name":"Casey Sawayn","age":26,"location":"Leifchester"}},{"attributes":{"name":"Webster Prosacco MD","age":60,"location":"New Kelsie"}},{"attributes":{"name":"Alexis Blick","age":26,"location":"Haneport"}},{"attributes":{"name":"Kyleigh Marvin","age":28,"location":"Rancho Cordova"}},{"attributes":{"name":"Miss Hardy Cremin","age":37,"location":"New Adolfboro"}},{"attributes":{"name":"Mr. Gabriel Macejkovic","age":65,"location":"Bogisichtown"}},{"attributes":{"name":"Kurt Borer","age":63,"location":"North Haileystead"}},{"attributes":{"name":"Leonie Parker PhD","age":72,"location":"Port Rowland"}},{"attributes":{"name":"Van Christiansen","age":58,"location":"Aureliefort"}},{"attributes":{"name":"Colt Anderson","age":43,"location":"Henderson"}},{"attributes":{"name":"Kathy Weissnat","age":29,"location":"Port Adaland"}},{"attributes":{"name":"Bob Goodwin","age":79,"location":"West Toniside"}},{"attributes":{"name":"Ashly Wiza","age":49,"location":"Lake Lancefurt"}},{"attributes":{"name":"Loretta Durgan","age":62,"location":"Stammboro"}},{"attributes":{"name":"Golden Gerhold II","age":38,"location":"Port Dorthyborough"}},{"attributes":{"name":"Dr. Janice Schultz","age":68,"location":"North Uniquefield"}},{"attributes":{"name":"Yazmin Moore","age":32,"location":"Port Ewaldville"}},{"attributes":{"name":"Veronica Lemke PhD","age":50,"location":"Homestead"}},{"attributes":{"name":"Marlene Oberbrunner","age":19,"location":"New Claudfurt"}},{"attributes":{"name":"Mr. Eliza Simonis I","age":60,"location":"Costa Mesa"}},{"attributes":{"name":"Miss Natalie Berge","age":39,"location":"South Ethyl"}},{"attributes":{"name":"Dr. Margret Lehner","age":53,"location":"Ebertfort"}},{"attributes":{"name":"Cathy Boehm","age":52,"location":"Port Abigail"}},{"attributes":{"name":"Dr. Paul Sipes","age":57,"location":"Port Mistystad"}},{"attributes":{"name":"Ms. Jonathon Wiza","age":39,"location":"Fort Worth"}},{"attributes":{"name":"Mr. Aidan Aufderhar DDS","age":30,"location":"Lenoraville"}},{"attributes":{"name":"Danny Jenkins PhD","age":48,"location":"West Dolores"}},{"attributes":{"name":"Elton Krajcik","age":62,"location":"Jerrodboro"}},{"attributes":{"name":"Seth Thompson","age":24,"location":"Petaluma"}},{"attributes":{"name":"Mandy Rogahn","age":59,"location":"Mayerburgh"}},{"attributes":{"name":"Gary Keebler","age":22,"location":"Wintheiserstad"}},{"attributes":{"name":"Donald Goodwin","age":30,"location":"Lake Soledadshire"}},{"attributes":{"name":"Ms. Patrick Ortiz","age":64,"location":"Gibsonshire"}},{"attributes":{"name":"Elwyn Shields","age":70,"location":"Fort Mateo"}},{"attributes":{"name":"Archie D'Amore","age":55,"location":"Clovisville"}},{"attributes":{"name":"Alexandrea Donnelly-Brown","age":23,"location":"Starkton"}},{"attributes":{"name":"Christopher VonRueden","age":72,"location":"Alisonport"}},{"attributes":{"name":"Jeffrey Carter PhD","age":62,"location":"Meriden"}},{"attributes":{"name":"Fiona Gerhold","age":35,"location":"West Roybury"}},{"attributes":{"name":"Horace Conn","age":56,"location":"South Salma"}},{"attributes":{"name":"Marian Wuckert","age":47,"location":"Kielland"}},{"attributes":{"name":"Christian Collier","age":57,"location":"McDermottberg"}},{"attributes":{"name":"Levi O'Kon PhD","age":79,"location":"Salem"}},{"attributes":{"name":"Mr. Monique Beatty","age":37,"location":"Lake Taylor"}},{"attributes":{"name":"Pearline Hermiston","age":18,"location":"Austinberg"}},{"attributes":{"name":"Mr. Lorenz Shields","age":71,"location":"Riceland"}},{"attributes":{"name":"Alexandra Thompson","age":79,"location":"Dasiamouth"}},{"attributes":{"name":"Rosemarie White","age":23,"location":"O'Connellburgh"}},{"attributes":{"name":"Jeremy Wisozk","age":28,"location":"East Nyasia"}},{"attributes":{"name":"Trystan Effertz","age":48,"location":"Ortizstad"}},{"attributes":{"name":"Armani Ryan","age":62,"location":"Palm Springs"}},{"attributes":{"name":"Gladys Windler","age":36,"location":"Revere"}},{"attributes":{"name":"Danielle Larson-Tremblay","age":72,"location":"Fort Tannerbury"}},{"attributes":{"name":"Miss Stephany Konopelski","age":71,"location":"Port Coraboro"}},{"attributes":{"name":"Kim Harris","age":66,"location":"New Lukas"}},{"attributes":{"name":"Alverta Yundt","age":79,"location":"Jaidaborough"}},{"attributes":{"name":"Brandon Greenholt","age":52,"location":"Fort Eino"}},{"attributes":{"name":"Elisa MacGyver","age":30,"location":"North Rogers"}},{"attributes":{"name":"Garry Huel-Leffler","age":55,"location":"Yuba City"}},{"attributes":{"name":"Jerry Yost","age":46,"location":"New Wilsonstad"}},{"attributes":{"name":"Gwen Zieme DDS","age":53,"location":"Kalliecester"}},{"attributes":{"name":"Bobby Smith IV","age":19,"location":"Pocatello"}},{"attributes":{"name":"Hilma Torphy","age":24,"location":"West Caitlynburgh"}},{"attributes":{"name":"Georgia Mohr","age":24,"location":"Zoieshire"}},{"attributes":{"name":"Fernando Gulgowski","age":50,"location":"Rohanburgh"}},{"attributes":{"name":"Hattie Sanford-Wolf","age":43,"location":"South Haylee"}},{"attributes":{"name":"Edwin Steuber","age":60,"location":"New Alveratown"}},{"attributes":{"name":"Paul Conn","age":50,"location":"Lake Leonardomouth"}},{"attributes":{"name":"Wilson Buckridge","age":29,"location":"Matildeport"}},{"attributes":{"name":"Bernice Schamberger Sr.","age":51,"location":"Theresafurt"}},{"attributes":{"name":"Marie Stracke","age":77,"location":"Fort Ruthiechester"}},{"attributes":{"name":"Amos Bogisich","age":31,"location":"Kenner"}},{"attributes":{"name":"Dr. Emmanuelle Heaney","age":69,"location":"Lake Idacester"}},{"attributes":{"name":"Ima Schoen","age":22,"location":"Greenholtton"}},{"attributes":{"name":"Ed Torphy","age":61,"location":"Ebertmouth"}},{"attributes":{"name":"Mrs. Rosemarie Schumm","age":18,"location":"Miami"}},{"attributes":{"name":"Kelli Monahan V","age":28,"location":"Perth Amboy"}},{"attributes":{"name":"Aracely Fisher","age":68,"location":"Kirkland"}},{"attributes":{"name":"Marjory Mohr DVM","age":58,"location":"Commerce City"}},{"attributes":{"name":"Brianne Johnston","age":56,"location":"Fort Taya"}},{"attributes":{"name":"Michelle Homenick","age":39,"location":"South Marques"}},{"attributes":{"name":"Garnett Adams","age":68,"location":"Krajcikfurt"}},{"attributes":{"name":"Polly Purdy-Marvin","age":41,"location":"Phoebeport"}},{"attributes":{"name":"Dr. Pedro Kuhic","age":50,"location":"Phoebeworth"}},{"attributes":{"name":"Marion Weissnat-Rath","age":28,"location":"New Mohammad"}},{"attributes":{"name":"Hillard Conroy","age":28,"location":"Bentonville"}},{"attributes":{"name":"Jared McGlynn","age":35,"location":"Janesville"}},{"attributes":{"name":"Gerardo Pfannerstill","age":35,"location":"Steubershire"}},{"attributes":{"name":"Miss Sharon Abernathy","age":46,"location":"Gaithersburg"}},{"attributes":{"name":"Julien Frami","age":46,"location":"Lenexa"}},{"attributes":{"name":"Mr. Rex Glover","age":56,"location":"Haleytown"}},{"attributes":{"name":"Norman Hirthe","age":50,"location":"Dachbury"}},{"attributes":{"name":"Roberto Wiza II","age":78,"location":"South San Francisco"}},{"attributes":{"name":"Orlando Bode","age":78,"location":"Granthaven"}},{"attributes":{"name":"Hilda Hackett","age":28,"location":"VonRuedenmouth"}},{"attributes":{"name":"Rosemary Heller-Greenfelder","age":66,"location":"Lomacester"}},{"attributes":{"name":"Woodrow Reilly","age":48,"location":"Hyattland"}},{"attributes":{"name":"Darla Farrell","age":27,"location":"Eloisamouth"}},{"attributes":{"name":"Patty Heaney","age":72,"location":"Fort Javonborough"}},{"attributes":{"name":"Furman Kemmer MD","age":33,"location":"East Dianaburgh"}},{"attributes":{"name":"Glenn Greenfelder","age":23,"location":"Port Maeton"}},{"attributes":{"name":"Lindsay Kshlerin","age":26,"location":"Thompsonshire"}},{"attributes":{"name":"Molly Fritsch","age":21,"location":"Hellerfort"}},{"attributes":{"name":"Jon Johnson","age":29,"location":"Casper"}},{"attributes":{"name":"Mr. Tanner Dare","age":62,"location":"Boganstead"}},{"attributes":{"name":"Alessandro Baumbach","age":61,"location":"North Owenbury"}},{"attributes":{"name":"Rosina Crooks","age":62,"location":"Macfield"}},{"attributes":{"name":"Tiffany Morissette DVM","age":54,"location":"Fort Marina"}},{"attributes":{"name":"Ms. Hattie Kub","age":63,"location":"Hayward"}},{"attributes":{"name":"Jessica Buckridge","age":65,"location":"Doylehaven"}},{"attributes":{"name":"Jeffrey Homenick","age":71,"location":"Fort Lydiaview"}},{"attributes":{"name":"Joey Feil-Reichert","age":59,"location":"South Wilhelmine"}},{"attributes":{"name":"Kip Morar","age":19,"location":"Simi Valley"}},{"attributes":{"name":"Pat Wiegand-Tromp","age":75,"location":"Hampton"}},{"attributes":{"name":"Marilyn Bahringer","age":45,"location":"Port Bennie"}},{"attributes":{"name":"Sylvan Breitenberg","age":26,"location":"Fremont"}},{"attributes":{"name":"Thalia Padberg","age":56,"location":"Fort Karinetown"}},{"attributes":{"name":"Seth Schultz","age":33,"location":"Tinley Park"}},{"attributes":{"name":"Clara Effertz-Dicki","age":33,"location":"Allentown"}},{"attributes":{"name":"Karla Kunde","age":74,"location":"Fort Linneaville"}},{"attributes":{"name":"Dolores Frami","age":52,"location":"New Paulaton"}},{"attributes":{"name":"Valentine Zemlak","age":53,"location":"Albertashire"}},{"attributes":{"name":"Alex Monahan","age":49,"location":"New Jose"}},{"attributes":{"name":"Ms. Anne Reinger V","age":46,"location":"Lake Stuart"}},{"attributes":{"name":"Mercedes Rohan-Graham","age":42,"location":"Salem"}},{"attributes":{"name":"Tommy Witting","age":69,"location":"Gainesville"}},{"attributes":{"name":"Ramon Hayes-O'Conner","age":65,"location":"New Rochelle"}},{"attributes":{"name":"Dave Pagac","age":60,"location":"Port Alfredo"}},{"attributes":{"name":"Triston Schinner MD","age":36,"location":"Riverton"}},{"attributes":{"name":"Sandy Wilderman-Hane","age":24,"location":"Fort Forrest"}},{"attributes":{"name":"Oswaldo Haag","age":40,"location":"South Gate"}},{"attributes":{"name":"Dr. Fannie Fadel","age":35,"location":"Nellieton"}},{"attributes":{"name":"Madeline Daugherty","age":77,"location":"Moorecester"}},{"attributes":{"name":"Telly Strosin","age":46,"location":"Shreveport"}},{"attributes":{"name":"Isadore Hudson","age":45,"location":"Kuvalisfield"}},{"attributes":{"name":"Mr. Luke Klocko","age":62,"location":"Nicotown"}},{"attributes":{"name":"Jessica Wyman","age":59,"location":"West Etha"}},{"attributes":{"name":"John Runte","age":66,"location":"Marcelleborough"}},{"attributes":{"name":"Virginia Zieme","age":31,"location":"Aliviaside"}},{"attributes":{"name":"Leone Zieme","age":67,"location":"Wernerhaven"}},{"attributes":{"name":"Mr. Connor Rath","age":32,"location":"Cathedral City"}},{"attributes":{"name":"Frederick Fisher","age":22,"location":"Luciusborough"}},{"attributes":{"name":"Santiago Yost II","age":43,"location":"Collierborough"}},{"attributes":{"name":"Laverne Balistreri","age":19,"location":"Dale City"}},{"attributes":{"name":"Dr. Archie Larson","age":31,"location":"North Jacquelyn"}},{"attributes":{"name":"Patrick Stark","age":65,"location":"Chesapeake"}},{"attributes":{"name":"Oscar Maggio","age":48,"location":"West Marguerite"}},{"attributes":{"name":"Carlee Funk","age":74,"location":"Cliftonville"}},{"attributes":{"name":"Zion Terry","age":74,"location":"Fort Gracieshire"}},{"attributes":{"name":"Mya Runte-Homenick","age":41,"location":"East Daltonstad"}},{"attributes":{"name":"Amparo Frami","age":23,"location":"New Kody"}},{"attributes":{"name":"Neil Hegmann","age":36,"location":"South Carleyport"}},{"attributes":{"name":"Alek D'Amore","age":72,"location":"Boylechester"}},{"attributes":{"name":"Herbert Frami","age":38,"location":"Vonhaven"}},{"attributes":{"name":"Mavis Wunsch","age":57,"location":"VonRuedenside"}},{"attributes":{"name":"Kale Anderson","age":45,"location":"Gregorioshire"}},{"attributes":{"name":"Stevie King","age":62,"location":"North Dillan"}},{"attributes":{"name":"Elisa Wilkinson","age":76,"location":"Rempelview"}},{"attributes":{"name":"Dr. Susana Altenwerth","age":68,"location":"Marleyshire"}},{"attributes":{"name":"Eduardo Schinner","age":28,"location":"South Jamelchester"}},{"attributes":{"name":"Kayla Cronin","age":55,"location":"Corwinshire"}},{"attributes":{"name":"Delfina Sauer","age":42,"location":"Botsfordcester"}},{"attributes":{"name":"Ms. Marsha Witting","age":73,"location":"Port Cleo"}},{"attributes":{"name":"Micah Greenfelder","age":40,"location":"O'Keefeburgh"}},{"attributes":{"name":"Itzel Hansen","age":24,"location":"Norenestead"}},{"attributes":{"name":"Ian Padberg","age":63,"location":"Botsfordchester"}},{"attributes":{"name":"Mrs. Matt Larkin","age":56,"location":"Lake Melodyfort"}},{"attributes":{"name":"Electa Fisher","age":36,"location":"Lake Berylchester"}},{"attributes":{"name":"Darryl Hermann DDS","age":22,"location":"Ettiefield"}},{"attributes":{"name":"Leatha Wehner-Keebler","age":70,"location":"Bel Air South"}},{"attributes":{"name":"Jenny Kunze","age":49,"location":"Bergstromside"}},{"attributes":{"name":"Shanna Schmeler","age":43,"location":"New Elisha"}},{"attributes":{"name":"Saul Emard","age":71,"location":"New Lyric"}},{"attributes":{"name":"Judy Graham","age":37,"location":"Fort Lambert"}},{"attributes":{"name":"Brendan Mueller","age":43,"location":"Rosaliaton"}},{"attributes":{"name":"Wilburn Gorczany","age":66,"location":"Schuppeside"}},{"attributes":{"name":"Rachael Beer","age":69,"location":"Lake Abeland"}},{"attributes":{"name":"Sally Roob","age":50,"location":"West Jorgecester"}},{"attributes":{"name":"Miss Teresa Weimann DDS","age":28,"location":"Port Hortense"}},{"attributes":{"name":"Mossie Gottlieb","age":41,"location":"Ratkechester"}},{"attributes":{"name":"Desiree Corkery","age":22,"location":"Schaeferstead"}},{"attributes":{"name":"Miss Virgil Purdy","age":48,"location":"Gregorioshire"}},{"attributes":{"name":"Lance Connelly","age":75,"location":"Curtisland"}},{"attributes":{"name":"Felix Bernhard","age":52,"location":"Fort Brycechester"}},{"attributes":{"name":"Ora Reinger","age":55,"location":"Mohrfurt"}},{"attributes":{"name":"Garth Bogan","age":43,"location":"Loveland"}},{"attributes":{"name":"Jamie Fahey","age":45,"location":"Klingport"}},{"attributes":{"name":"Pete Hyatt","age":70,"location":"Reichertbury"}},{"attributes":{"name":"Sheila Wilderman","age":51,"location":"Rathfurt"}},{"attributes":{"name":"Clyde Anderson","age":23,"location":"Lake Sofia"}},{"attributes":{"name":"Carroll Witting","age":29,"location":"High Point"}},{"attributes":{"name":"Dr. Grant Trantow","age":43,"location":"Newport News"}},{"attributes":{"name":"Dr. Jorge Prosacco","age":39,"location":"Fort Emeryfield"}},{"attributes":{"name":"Trent Treutel","age":57,"location":"Goldnerfort"}},{"attributes":{"name":"Elyse Gutmann","age":47,"location":"Hattieville"}},{"attributes":{"name":"Lynn Aufderhar","age":46,"location":"Cronaboro"}},{"attributes":{"name":"Diana Rempel","age":23,"location":"Kreigershire"}},{"attributes":{"name":"Mortimer Turner","age":60,"location":"West Kyleighborough"}},{"attributes":{"name":"Margaret Abshire","age":44,"location":"North Daisy"}},{"attributes":{"name":"Holly Conn","age":55,"location":"South Fritzfield"}},{"attributes":{"name":"Monica Schimmel","age":43,"location":"Vivachester"}},{"attributes":{"name":"Jeffrey Hand Sr.","age":74,"location":"Anyaside"}},{"attributes":{"name":"Caroline Wolff","age":47,"location":"Lake Billieburgh"}},{"attributes":{"name":"Scarlett Beer","age":68,"location":"North Cierrafort"}},{"attributes":{"name":"Domingo Wintheiser","age":74,"location":"Bradport"}},{"attributes":{"name":"Mr. Scott Marquardt","age":58,"location":"West Dulceland"}},{"attributes":{"name":"Miss Vickie Kautzer MD","age":21,"location":"Bradtkeville"}},{"attributes":{"name":"Marjory Luettgen","age":57,"location":"Burleychester"}},{"attributes":{"name":"Robin Murray","age":42,"location":"Robelmouth"}},{"attributes":{"name":"Harley Littel","age":21,"location":"Stephaniafort"}},{"attributes":{"name":"Fredrick Halvorson","age":40,"location":"Ibrahimboro"}},{"attributes":{"name":"Dr. Aditya Shields I","age":79,"location":"Mission"}},{"attributes":{"name":"Mrs. Alma Bahringer Sr.","age":52,"location":"Port Kurtiston"}},{"attributes":{"name":"Tim Waelchi","age":25,"location":"Leesburg"}},{"attributes":{"name":"Miss Diego Smitham","age":44,"location":"Caterinaport"}},{"attributes":{"name":"Rolando Feeney","age":68,"location":"Lake Caesar"}},{"attributes":{"name":"Mr. Tamia Prosacco","age":53,"location":"Antoniettaview"}},{"attributes":{"name":"Simone Legros","age":30,"location":"Linden"}},{"attributes":{"name":"Henry Collier","age":22,"location":"Wittinghaven"}},{"attributes":{"name":"Rudy Leannon","age":69,"location":"North Uniquetown"}},{"attributes":{"name":"Erna Schumm","age":66,"location":"Dothan"}},{"attributes":{"name":"Darla Reinger","age":73,"location":"South Lucas"}},{"attributes":{"name":"George Hagenes","age":46,"location":"Bartellstead"}},{"attributes":{"name":"Edison Kiehn","age":64,"location":"Rosenbaumfield"}},{"attributes":{"name":"William Ratke","age":69,"location":"Ottisshire"}},{"attributes":{"name":"Annalise Wiza","age":53,"location":"North Frida"}},{"attributes":{"name":"Claire McGlynn","age":55,"location":"Lakeville"}},{"attributes":{"name":"Audrey Kreiger","age":44,"location":"Lake Abby"}},{"attributes":{"name":"Theodore Ferry","age":80,"location":"Lake Santoschester"}},{"attributes":{"name":"Skyla Marvin DVM","age":46,"location":"Fargo"}},{"attributes":{"name":"Debbie Langosh","age":43,"location":"Fort Ruben"}},{"attributes":{"name":"Eveline Wisoky","age":60,"location":"West Kiley"}},{"attributes":{"name":"Tommy Funk","age":58,"location":"Austynworth"}},{"attributes":{"name":"Loren Kunze PhD","age":39,"location":"Maxborough"}},{"attributes":{"name":"Louise Boyer","age":39,"location":"Eldoraboro"}},{"attributes":{"name":"Jerry Muller-Raynor","age":19,"location":"Murrayland"}},{"attributes":{"name":"Mrs. Conrad Koepp","age":41,"location":"West Mariliecester"}},{"attributes":{"name":"Luther Corwin","age":52,"location":"Greenville"}},{"attributes":{"name":"Devin Conroy","age":19,"location":"Yasmeenchester"}},{"attributes":{"name":"Javier Trantow","age":46,"location":"Jordanhaven"}},{"attributes":{"name":"Phyllis Jacobson","age":65,"location":"North Little Rock"}},{"attributes":{"name":"David O'Kon","age":67,"location":"Yundtmouth"}},{"attributes":{"name":"Julia Baumbach DVM","age":55,"location":"East Douglas"}},{"attributes":{"name":"Annie Hilpert","age":52,"location":"Placentia"}},{"attributes":{"name":"Ms. Myrl Doyle","age":35,"location":"West Haven"}},{"attributes":{"name":"Mrs. Arvilla Kilback MD","age":79,"location":"Faheyboro"}},{"attributes":{"name":"Chester Towne","age":53,"location":"North Francisca"}},{"attributes":{"name":"Enrique Sawayn","age":68,"location":"San Tan Valley"}},{"attributes":{"name":"Johann Gutmann","age":27,"location":"North Shyanneshire"}},{"attributes":{"name":"Christelle Lakin","age":26,"location":"North Elsa"}},{"attributes":{"name":"Ella Feil-Fisher","age":72,"location":"Fort Eusebio"}},{"attributes":{"name":"Lula Pacocha","age":62,"location":"South Keara"}},{"attributes":{"name":"Ruben Feest MD","age":46,"location":"New Casimirview"}},{"attributes":{"name":"Claudine Hansen","age":66,"location":"Hackettbury"}},{"attributes":{"name":"Esteban McClure","age":37,"location":"South Jorge"}},{"attributes":{"name":"Claire Heathcote","age":61,"location":"Hanford"}},{"attributes":{"name":"Mrs. Obie Shields","age":79,"location":"Annamaeport"}},{"attributes":{"name":"Ms. Lola Pfannerstill","age":23,"location":"Sioux Falls"}},{"attributes":{"name":"Evelyn Sipes","age":55,"location":"South Zoilaville"}},{"attributes":{"name":"Ward Effertz","age":63,"location":"Daughertyfield"}},{"attributes":{"name":"Jeanne Gislason","age":71,"location":"Kihncester"}},{"attributes":{"name":"Omar Mosciski","age":61,"location":"Port Carrie"}},{"attributes":{"name":"Mr. Calvin Hirthe","age":37,"location":"South Lennie"}},{"attributes":{"name":"Yadira Waters","age":21,"location":"East Julian"}},{"attributes":{"name":"Nathanial Thiel-Carroll","age":34,"location":"New Kayburgh"}},{"attributes":{"name":"Alaina Toy","age":39,"location":"East Bailee"}},{"attributes":{"name":"Edward Sauer","age":37,"location":"Haleyboro"}},{"attributes":{"name":"Wayne Batz","age":65,"location":"Ottiliecester"}},{"attributes":{"name":"Pascale Hackett","age":49,"location":"Dibbertchester"}},{"attributes":{"name":"Dawson Ebert IV","age":32,"location":"Lake Cristobalworth"}},{"attributes":{"name":"Mark Schuppe","age":80,"location":"Sporerton"}},{"attributes":{"name":"Madge Hermiston","age":56,"location":"West Corbin"}},{"attributes":{"name":"Verna Veum","age":41,"location":"Lake Marlin"}},{"attributes":{"name":"Tammy Keeling-Morar","age":38,"location":"South Rebekatown"}},{"attributes":{"name":"Cydney Rutherford","age":30,"location":"South Scottie"}},{"attributes":{"name":"Jose Bruen-Durgan DVM","age":29,"location":"South Amarichester"}},{"attributes":{"name":"Miss Karen Kautzer-Hermiston III","age":30,"location":"Icieboro"}},{"attributes":{"name":"Kelley Cremin IV","age":21,"location":"Bergecester"}},{"attributes":{"name":"Moshe Reinger","age":39,"location":"Logan"}},{"attributes":{"name":"Jean Murray","age":29,"location":"Lake Casandra"}},{"attributes":{"name":"Alonzo Wuckert","age":24,"location":"Hahncester"}},{"attributes":{"name":"Ella Runte","age":50,"location":"East Lansing"}},{"attributes":{"name":"Lilliana Mohr","age":65,"location":"Miami Beach"}},{"attributes":{"name":"Nelle Kohler II","age":32,"location":"New Valentin"}},{"attributes":{"name":"Mack Metz","age":57,"location":"Aidanstad"}},{"attributes":{"name":"Wallace Reynolds","age":35,"location":"Laruefort"}},{"attributes":{"name":"Tanya Fahey","age":43,"location":"Baumbachland"}},{"attributes":{"name":"Deborah Medhurst","age":38,"location":"Ayanashire"}},{"attributes":{"name":"Wilford Aufderhar","age":23,"location":"San Leandro"}},{"attributes":{"name":"Joyce Howe","age":58,"location":"National City"}},{"attributes":{"name":"Josiah Nikolaus","age":23,"location":"Fort Amalia"}},{"attributes":{"name":"Lynn Quigley","age":23,"location":"Johnson City"}},{"attributes":{"name":"Anthony Schiller-Cormier DDS","age":47,"location":"Breitenbergstad"}},{"attributes":{"name":"Laverne Reilly","age":73,"location":"Lennaville"}},{"attributes":{"name":"Dr. Opal Gutkowski","age":60,"location":"Granttown"}},{"attributes":{"name":"Christine Huel DDS","age":38,"location":"Orem"}},{"attributes":{"name":"Janice Howe","age":51,"location":"Herzogcester"}},{"attributes":{"name":"Germaine Schuster","age":59,"location":"Fort Bennystad"}},{"attributes":{"name":"Dr. Luz Koch I","age":63,"location":"South Caleighview"}},{"attributes":{"name":"Clark Hilll","age":54,"location":"Bergeview"}},{"attributes":{"name":"Mrs. Lee Johns","age":49,"location":"Lake Katlyn"}},{"attributes":{"name":"Princess Murphy-Swift","age":51,"location":"North Juvenal"}},{"attributes":{"name":"Matt Kertzmann","age":42,"location":"Lake Betty"}},{"attributes":{"name":"Karson Cremin","age":67,"location":"Poinciana"}},{"attributes":{"name":"Mrs. Dayne Dietrich","age":60,"location":"South Loren"}},{"attributes":{"name":"Edmund Kiehn","age":46,"location":"Chula Vista"}},{"attributes":{"name":"Cesar Schmeler","age":29,"location":"Potomac"}},{"attributes":{"name":"Mrs. Kadin Rempel","age":20,"location":"Lake Albertostead"}},{"attributes":{"name":"Andres Ward","age":54,"location":"North Maude"}},{"attributes":{"name":"Ms. Jamil Romaguera","age":79,"location":"Sierra Vista"}},{"attributes":{"name":"Beau Abshire","age":45,"location":"Fort Rachaelton"}},{"attributes":{"name":"Prudence Zieme III","age":33,"location":"Gusikowskifield"}},{"attributes":{"name":"Doug Maggio I","age":77,"location":"Reading"}},{"attributes":{"name":"Dee Streich","age":31,"location":"Kingville"}},{"attributes":{"name":"Boyd McLaughlin","age":43,"location":"North Brain"}},{"attributes":{"name":"Raquel Corkery","age":36,"location":"Hickleville"}},{"attributes":{"name":"Aletha Huels","age":60,"location":"Murphyborough"}},{"attributes":{"name":"Nathan Bode","age":61,"location":"Fort Rosa"}},{"attributes":{"name":"Ike Schultz","age":43,"location":"Daytona Beach"}},{"attributes":{"name":"Ms. Shari Ernser","age":55,"location":"North Caleberg"}},{"attributes":{"name":"Warren Pouros","age":74,"location":"Strackeshire"}},{"attributes":{"name":"Raquel McDermott","age":59,"location":"East Jefferey"}},{"attributes":{"name":"Ms. Vanessa Weissnat","age":76,"location":"Pflugerville"}},{"attributes":{"name":"Cathy Koepp-Steuber","age":59,"location":"East Hudsonfurt"}},{"attributes":{"name":"Franz Boyle","age":36,"location":"Jacobsonchester"}},{"attributes":{"name":"Al O'Connell","age":49,"location":"East Hermanhaven"}},{"attributes":{"name":"Miss Scot Prohaska","age":79,"location":"Dallas"}},{"attributes":{"name":"Jacquelyn Mosciski II","age":71,"location":"North Joanneton"}},{"attributes":{"name":"Dayton Gutmann","age":53,"location":"Huntington"}},{"attributes":{"name":"Patrick Reynolds","age":64,"location":"Brannonstead"}},{"attributes":{"name":"Sheryl Kling","age":50,"location":"Valentinafurt"}},{"attributes":{"name":"Madeline McDermott","age":20,"location":"South Angeline"}},{"attributes":{"name":"Terrence Bednar","age":29,"location":"Allen"}},{"attributes":{"name":"Gerda Gutmann","age":29,"location":"Rodside"}},{"attributes":{"name":"Dr. Elvira Hessel","age":57,"location":"West Chaseville"}},{"attributes":{"name":"Charity Jones-Boyer","age":54,"location":"Modesto"}},{"attributes":{"name":"Ian Predovic","age":72,"location":"South Johnnystead"}},{"attributes":{"name":"Karen Rutherford","age":39,"location":"Spring Valley"}},{"attributes":{"name":"Miss Flora Stark","age":55,"location":"North Marlee"}},{"attributes":{"name":"Ms. Lydia Connelly","age":65,"location":"Jonescester"}},{"attributes":{"name":"Petra Cartwright","age":34,"location":"North Geovany"}},{"attributes":{"name":"Adrian Greenfelder","age":43,"location":"Aspen Hill"}},{"attributes":{"name":"Vesta Lemke","age":49,"location":"Port Bethmouth"}},{"attributes":{"name":"Madge Fisher","age":65,"location":"Monahantown"}},{"attributes":{"name":"Vinnie Gutmann","age":29,"location":"Quigleyberg"}},{"attributes":{"name":"Sylvia Heathcote","age":44,"location":"Strosinberg"}},{"attributes":{"name":"Wilfred Adams","age":27,"location":"Lake Mosheport"}},{"attributes":{"name":"Luis Ondricka","age":34,"location":"Isabellafort"}},{"attributes":{"name":"Edna Reynolds","age":62,"location":"Siennaworth"}},{"attributes":{"name":"Mr. Joey Sipes IV","age":34,"location":"Fort Anabel"}},{"attributes":{"name":"Glenn Stehr","age":35,"location":"Haileybury"}},{"attributes":{"name":"Eunice Hamill","age":21,"location":"Longmont"}},{"attributes":{"name":"Shelly Prohaska","age":59,"location":"Marquardtside"}},{"attributes":{"name":"Shelley Abbott","age":72,"location":"North Earleneshire"}},{"attributes":{"name":"Dr. Karl Frami","age":57,"location":"New Kobefort"}},{"attributes":{"name":"Leticia Emmerich-Yost","age":70,"location":"West Anastasiabury"}},{"attributes":{"name":"Kenneth Ratke","age":26,"location":"Port Bennie"}},{"attributes":{"name":"Vickie Reichel","age":27,"location":"Brendanview"}},{"attributes":{"name":"Blair Schmeler","age":23,"location":"Fort Odieworth"}},{"attributes":{"name":"Donna Buckridge","age":22,"location":"Kundefurt"}},{"attributes":{"name":"Mr. Jake Klocko-Bruen II","age":49,"location":"Daxstad"}},{"attributes":{"name":"Gilberto Schuster","age":72,"location":"North Blaiseville"}},{"attributes":{"name":"Flo Batz-Walter","age":75,"location":"Fort Colemanboro"}},{"attributes":{"name":"Marta Moen-Reichert","age":57,"location":"Sheilabury"}},{"attributes":{"name":"Donnie Gutmann","age":21,"location":"Beaumont"}},{"attributes":{"name":"Arthur Kuvalis","age":54,"location":"Lake Jimmy"}},{"attributes":{"name":"Monique Stamm IV","age":31,"location":"Clovis"}},{"attributes":{"name":"Myra Nienow Sr.","age":21,"location":"Wintheisermouth"}},{"attributes":{"name":"Dorothy Baumbach IV","age":60,"location":"North Kylerside"}},{"attributes":{"name":"Randal Douglas","age":45,"location":"South Isaac"}},{"attributes":{"name":"Earnest Price","age":77,"location":"Lynchberg"}},{"attributes":{"name":"Rodrigo Moen-Legros","age":22,"location":"North Gregoryborough"}},{"attributes":{"name":"Leland Gottlieb Jr.","age":77,"location":"New Bernardo"}},{"attributes":{"name":"Nellie Macejkovic","age":42,"location":"St. Joseph"}},{"attributes":{"name":"Courtney Douglas-Schowalter","age":80,"location":"West Louvenia"}},{"attributes":{"name":"Melba Maggio","age":72,"location":"Lilianastad"}},{"attributes":{"name":"Fiona Klocko","age":49,"location":"North Highlands"}},{"attributes":{"name":"Sylvester Bartoletti","age":77,"location":"New Teagantown"}},{"attributes":{"name":"Frank Bechtelar","age":18,"location":"New Garth"}},{"attributes":{"name":"Travis Ledner DVM","age":43,"location":"North Javonte"}},{"attributes":{"name":"Marcel Conroy","age":77,"location":"Fort Blanche"}},{"attributes":{"name":"Ryleigh Dickens","age":77,"location":"North Kaelastad"}},{"attributes":{"name":"Kali Reinger","age":76,"location":"Jerdechester"}},{"attributes":{"name":"Mona Rempel","age":78,"location":"West Devanton"}},{"attributes":{"name":"Shany Schowalter-Koss","age":71,"location":"Ozellamouth"}},{"attributes":{"name":"Mattie Hermiston","age":75,"location":"Davenport"}},{"attributes":{"name":"Mr. Haskell Heidenreich","age":47,"location":"Dahliastad"}},{"attributes":{"name":"Gertrude Nienow","age":18,"location":"Lake Antonina"}},{"attributes":{"name":"Nicolette Kuhn DVM","age":37,"location":"Nashua"}},{"attributes":{"name":"Dr. Randolph Kuphal","age":44,"location":"Livonia"}},{"attributes":{"name":"Brennan Quigley Sr.","age":43,"location":"East Garthstad"}},{"attributes":{"name":"Patti Hane-Pfeffer","age":76,"location":"Schmittton"}},{"attributes":{"name":"Edward McClure","age":20,"location":"Cecileville"}},{"attributes":{"name":"Irvin O'Conner","age":78,"location":"Lake Desmond"}},{"attributes":{"name":"Ernest Goyette","age":31,"location":"Russelboro"}},{"attributes":{"name":"Donna Moen","age":34,"location":"Corona"}},{"attributes":{"name":"Kelli Tromp","age":64,"location":"New Sarinaport"}},{"attributes":{"name":"Bridget Waelchi","age":29,"location":"West Beaumouth"}},{"attributes":{"name":"Jessie Mann","age":20,"location":"North Henritown"}},{"attributes":{"name":"Mrs. Tony King","age":76,"location":"Rahsaanbury"}},{"attributes":{"name":"Edmund Effertz","age":37,"location":"Townechester"}},{"attributes":{"name":"Aubrey Luettgen","age":31,"location":"Manuelbury"}},{"attributes":{"name":"Mr. Murray Grimes-Nolan","age":44,"location":"Anaworth"}},{"attributes":{"name":"Dr. Maud Bartell","age":53,"location":"Maciemouth"}},{"attributes":{"name":"Cleta Kertzmann III","age":42,"location":"Johnstonshire"}},{"attributes":{"name":"Marc Predovic","age":40,"location":"Fort Hertha"}},{"attributes":{"name":"Hector Howell","age":31,"location":"Timmystead"}},{"attributes":{"name":"Tyreek Abernathy Sr.","age":20,"location":"West Lillianview"}},{"attributes":{"name":"Jo Goyette","age":34,"location":"New Janiya"}},{"attributes":{"name":"Helen Feest-Schumm","age":18,"location":"Rockville"}},{"attributes":{"name":"Dr. Keith Barton","age":67,"location":"Daughertyview"}},{"attributes":{"name":"Rodrick Maggio","age":67,"location":"New Rutheborough"}},{"attributes":{"name":"Asia Hahn","age":32,"location":"North Matildaberg"}},{"attributes":{"name":"Jake Pouros","age":26,"location":"Jeffersonville"}},{"attributes":{"name":"Marguerite Schmidt","age":58,"location":"Vidalboro"}},{"attributes":{"name":"Dr. Pedro Bayer","age":56,"location":"Douglasberg"}},{"attributes":{"name":"Giovani Leffler","age":31,"location":"Port Angelina"}},{"attributes":{"name":"Bobby Effertz","age":42,"location":"New Marjoriechester"}},{"attributes":{"name":"Johnathan Pollich","age":54,"location":"East Devanshire"}},{"attributes":{"name":"Demond Tromp Sr.","age":68,"location":"Enricocester"}},{"attributes":{"name":"Ara Hammes","age":49,"location":"South Fredy"}},{"attributes":{"name":"Maddison Hane","age":24,"location":"North Leatha"}},{"attributes":{"name":"Roman Ortiz","age":74,"location":"West Aubreeview"}},{"attributes":{"name":"Misty Tillman","age":27,"location":"Elgin"}},{"attributes":{"name":"Lula Gibson","age":66,"location":"Mountain View"}},{"attributes":{"name":"Dessie Kris","age":36,"location":"Bernadetteland"}},{"attributes":{"name":"Robbie Krajcik","age":30,"location":"Port Jamelfield"}},{"attributes":{"name":"Joe Kassulke","age":79,"location":"Tonawanda"}},{"attributes":{"name":"Bessie Kihn","age":49,"location":"Waco"}},{"attributes":{"name":"Jaylan Schaden","age":73,"location":"Swiftworth"}},{"attributes":{"name":"Mr. Clay Brakus","age":62,"location":"South Jamirmouth"}},{"attributes":{"name":"Dr. Miguel Schiller","age":62,"location":"Kennewick"}},{"attributes":{"name":"Erma Kassulke","age":35,"location":"West Russmouth"}},{"attributes":{"name":"Dwight Powlowski","age":56,"location":"Reingertown"}},{"attributes":{"name":"Grady Moore","age":44,"location":"West Audie"}},{"attributes":{"name":"Henrietta DuBuque","age":37,"location":"Beattyberg"}},{"attributes":{"name":"Khalid Goldner","age":25,"location":"Kunzefurt"}},{"attributes":{"name":"Desmond O'Keefe","age":56,"location":"Buena Park"}},{"attributes":{"name":"Frankie MacGyver","age":68,"location":"Cicero"}},{"attributes":{"name":"Tremaine Schiller","age":73,"location":"Hilpertberg"}},{"attributes":{"name":"Forest Shanahan","age":23,"location":"Hemet"}},{"attributes":{"name":"Stacy Nienow Jr.","age":70,"location":"Maeganbury"}},{"attributes":{"name":"Dr. Alex Armstrong","age":69,"location":"Port Jesse"}},{"attributes":{"name":"Evan Reynolds","age":30,"location":"Santa Fe"}},{"attributes":{"name":"Mrs. Mercedes Johnson PhD","age":61,"location":"Fullerton"}},{"attributes":{"name":"Gloria Corkery","age":52,"location":"South Mavis"}},{"attributes":{"name":"Kareem Romaguera","age":35,"location":"Marianshire"}},{"attributes":{"name":"Ashley King","age":38,"location":"McAllen"}},{"attributes":{"name":"Joey Miller","age":79,"location":"East Jeanette"}},{"attributes":{"name":"Glenda Leuschke","age":75,"location":"Kirkland"}},{"attributes":{"name":"Bradley Cremin","age":68,"location":"Verlieburgh"}},{"attributes":{"name":"Mrs. Reymundo Dickens","age":56,"location":"Reingerchester"}},{"attributes":{"name":"Marsha Haley","age":44,"location":"Elmhurst"}},{"attributes":{"name":"Dr. Adrain Howe","age":38,"location":"Port Adelle"}},{"attributes":{"name":"Ron Kutch","age":57,"location":"East Litzyworth"}},{"attributes":{"name":"Kali Lockman-Johnston I","age":24,"location":"Boyerbury"}},{"attributes":{"name":"Wilma Hirthe","age":56,"location":"Kubburgh"}},{"attributes":{"name":"Clifford Kerluke PhD","age":64,"location":"Redondo Beach"}},{"attributes":{"name":"Jacob McCullough","age":39,"location":"West Everardo"}},{"attributes":{"name":"Napoleon Tillman","age":39,"location":"Fort Annafort"}},{"attributes":{"name":"Heber Grady","age":55,"location":"Lynn"}},{"attributes":{"name":"Peter Howe","age":78,"location":"Riverside"}},{"attributes":{"name":"Willie Sporer","age":44,"location":"Blue Springs"}},{"attributes":{"name":"Maximillian Rosenbaum","age":30,"location":"Freedaview"}},{"attributes":{"name":"Marshall Berge","age":70,"location":"New Marieburgh"}},{"attributes":{"name":"Jon Murazik","age":19,"location":"East Bridgetteburgh"}},{"attributes":{"name":"Sophia Terry","age":23,"location":"Reinholdberg"}},{"attributes":{"name":"Irma Collier","age":60,"location":"Lake Kailyn"}},{"attributes":{"name":"Johnnie Kemmer","age":29,"location":"East Antone"}},{"attributes":{"name":"Ferne O'Keefe","age":77,"location":"San Rafael"}},{"attributes":{"name":"Lonnie Muller Sr.","age":45,"location":"Harlingen"}},{"attributes":{"name":"Morris Hoppe","age":19,"location":"Quincy"}},{"attributes":{"name":"Rebecca Cartwright","age":67,"location":"Vernmouth"}},{"attributes":{"name":"Travis Fay","age":71,"location":"Fidelstad"}},{"attributes":{"name":"Mr. Erica Rath","age":64,"location":"North Bradyport"}},{"attributes":{"name":"Marguerite Lynch","age":28,"location":"East Anastasiafurt"}},{"attributes":{"name":"Glenn Fadel","age":49,"location":"Millercester"}},{"attributes":{"name":"Dora Swaniawski","age":23,"location":"North Ena"}},{"attributes":{"name":"Greg Cummerata","age":30,"location":"Beierworth"}},{"attributes":{"name":"Frederick Kovacek","age":34,"location":"Erie"}},{"attributes":{"name":"Beth Dickens","age":43,"location":"Quitzonberg"}},{"attributes":{"name":"Loren Ritchie","age":64,"location":"New Deanna"}},{"attributes":{"name":"Manuel Tremblay","age":27,"location":"North Las Vegas"}},{"attributes":{"name":"Delores Langworth","age":46,"location":"Klingfurt"}},{"attributes":{"name":"Morris King","age":18,"location":"Harberbury"}},{"attributes":{"name":"Michelle Huel","age":63,"location":"North Soledad"}},{"attributes":{"name":"Ms. Andreanne Mann","age":71,"location":"Fort Aracelyhaven"}},{"attributes":{"name":"Alicia Brown","age":69,"location":"Abshireview"}},{"attributes":{"name":"Vivienne Fahey","age":79,"location":"New Gregorio"}},{"attributes":{"name":"Evalyn Lowe","age":35,"location":"Candidofield"}},{"attributes":{"name":"Gladys Kreiger","age":63,"location":"Rock Hill"}},{"attributes":{"name":"Gladyce Jones","age":74,"location":"New Dax"}},{"attributes":{"name":"Elenor Prosacco","age":55,"location":"Arnechester"}},{"attributes":{"name":"Shari Friesen","age":20,"location":"Fort Don"}},{"attributes":{"name":"Dr. Leonard Greenholt-Stanton MD","age":71,"location":"South Emmaleeboro"}},{"attributes":{"name":"Floyd Erdman","age":50,"location":"Eleanoreton"}},{"attributes":{"name":"Mr. Roxane Miller","age":74,"location":"West Chesley"}},{"attributes":{"name":"Tommie Medhurst","age":42,"location":"Whiteville"}},{"attributes":{"name":"Hattie Keeling","age":65,"location":"West Reyna"}},{"attributes":{"name":"Eric Block","age":46,"location":"East Hermannfort"}},{"attributes":{"name":"April Roob","age":38,"location":"West Hillary"}},{"attributes":{"name":"Berenice Spinka-Kassulke","age":60,"location":"West Jonatan"}},{"attributes":{"name":"Javier Kuphal","age":52,"location":"Oakland"}},{"attributes":{"name":"Dr. Lue Balistreri Sr.","age":24,"location":"Kautzerfield"}},{"attributes":{"name":"Edna Schultz","age":41,"location":"Brownsville"}},{"attributes":{"name":"Billie Barrows V","age":69,"location":"Lawrencecester"}},{"attributes":{"name":"Everett Williamson MD","age":30,"location":"Fort Hortenseberg"}},{"attributes":{"name":"Orville Bogisich","age":27,"location":"Kreigertown"}},{"attributes":{"name":"Dr. Donnie Cronin PhD","age":58,"location":"Fort Nels"}},{"attributes":{"name":"Theodore Reynolds MD","age":24,"location":"New Dorthy"}},{"attributes":{"name":"Jacob Ledner","age":22,"location":"Sandychester"}},{"attributes":{"name":"Robin Howell","age":43,"location":"Rodton"}},{"attributes":{"name":"Floyd Balistreri","age":35,"location":"Connellycester"}},{"attributes":{"name":"Tamia Balistreri","age":55,"location":"North Kurtisside"}},{"attributes":{"name":"Glen Koss","age":67,"location":"Austynbury"}},{"attributes":{"name":"Erik Reynolds III","age":50,"location":"Timmyfort"}},{"attributes":{"name":"Ricardo Bailey","age":60,"location":"Port Murl"}},{"attributes":{"name":"Ms. Claudine Muller","age":67,"location":"Jewelcester"}},{"attributes":{"name":"Okey Wunsch","age":75,"location":"Port Jaclyn"}},{"attributes":{"name":"Duane Streich","age":61,"location":"Toledo"}},{"attributes":{"name":"Clifton Rempel","age":31,"location":"Heidishire"}},{"attributes":{"name":"Jaeden Rippin-Simonis","age":54,"location":"West Lindacester"}},{"attributes":{"name":"Leona Kutch","age":21,"location":"Mayerhaven"}},{"attributes":{"name":"Aurelio Dooley MD","age":19,"location":"West Buckfurt"}},{"attributes":{"name":"Vance Abshire","age":50,"location":"Leifworth"}},{"attributes":{"name":"Doyle Senger","age":64,"location":"Kozeyberg"}},{"attributes":{"name":"Cathy Robel I","age":80,"location":"New Madonnaview"}},{"attributes":{"name":"Lulu Champlin","age":25,"location":"Roswell"}},{"attributes":{"name":"Merle Sauer","age":24,"location":"Dustychester"}},{"attributes":{"name":"Dr. Zachery Konopelski","age":71,"location":"East Bartton"}},{"attributes":{"name":"Jo Cassin","age":32,"location":"South Eltaborough"}},{"attributes":{"name":"Lexi Larson","age":31,"location":"Connellymouth"}},{"attributes":{"name":"Terrell Cummings","age":69,"location":"Jacecester"}},{"attributes":{"name":"Mr. Krystel Littel","age":79,"location":"Hoegerchester"}},{"attributes":{"name":"Mr. Jan Kutch","age":36,"location":"South Kareembury"}},{"attributes":{"name":"Gaston Satterfield","age":41,"location":"Israelside"}},{"attributes":{"name":"Blake Hilll","age":59,"location":"Lake Tressie"}},{"attributes":{"name":"Kurt Strosin","age":44,"location":"Judgecester"}},{"attributes":{"name":"Bobby Okuneva","age":37,"location":"O'Haraland"}},{"attributes":{"name":"Mr. Dominick Brekke PhD","age":80,"location":"Scottieworth"}},{"attributes":{"name":"Antonia McCullough","age":68,"location":"Port Alejandrachester"}},{"attributes":{"name":"Monica Langosh Jr.","age":69,"location":"East Blaiseworth"}},{"attributes":{"name":"Dr. Yoshiko Murray","age":45,"location":"Sauerburgh"}},{"attributes":{"name":"Miss Alva Bayer","age":22,"location":"Elianeview"}},{"attributes":{"name":"Frederick Nolan","age":59,"location":"Medhurstburgh"}},{"attributes":{"name":"Rene Blick","age":69,"location":"East Lacey"}},{"attributes":{"name":"Leo Mills","age":57,"location":"East Lilatown"}},{"attributes":{"name":"Davonte Lesch","age":47,"location":"Janesville"}},{"attributes":{"name":"Benjamin Satterfield","age":32,"location":"D'Amoreburgh"}},{"attributes":{"name":"Ms. Lois Huel","age":72,"location":"Lupestad"}},{"attributes":{"name":"Dr. Bernita Rowe","age":36,"location":"Brettbury"}},{"attributes":{"name":"Mindy Bahringer","age":20,"location":"Lake Myafield"}},{"attributes":{"name":"Dr. Catalina Collier","age":57,"location":"North Bennietown"}},{"attributes":{"name":"Cornelius Schroeder","age":62,"location":"Davidworth"}},{"attributes":{"name":"Guy Emard PhD","age":30,"location":"Port Cordia"}},{"attributes":{"name":"Madeline Quigley II","age":73,"location":"West Amandafurt"}},{"attributes":{"name":"Dr. Lurline Rau","age":72,"location":"Hoegerborough"}},{"attributes":{"name":"Demond Stracke","age":75,"location":"New Brenna"}},{"attributes":{"name":"Thora Denesik","age":48,"location":"Walterbury"}},{"attributes":{"name":"Camylle Johnston","age":36,"location":"North Walton"}},{"attributes":{"name":"Zachary Stehr","age":42,"location":"Breitenbergmouth"}},{"attributes":{"name":"Eunice Green-Effertz","age":60,"location":"Romagueratown"}},{"attributes":{"name":"Susan Bechtelar","age":22,"location":"Bergnaumberg"}},{"attributes":{"name":"Jane Ratke","age":52,"location":"West Lessie"}},{"attributes":{"name":"Kellen Kihn","age":60,"location":"South Linnie"}},{"attributes":{"name":"Lorraine Terry-Goyette","age":21,"location":"Port Brad"}},{"attributes":{"name":"Reta Stracke","age":25,"location":"Irmaborough"}},{"attributes":{"name":"Armando Fay MD","age":53,"location":"Mabellefort"}},{"attributes":{"name":"Whitney Ortiz-Watsica","age":72,"location":"Topeka"}},{"attributes":{"name":"Christopher Runolfsson","age":48,"location":"Leilashire"}},{"attributes":{"name":"Kristina Gislason","age":76,"location":"Osinskiport"}},{"attributes":{"name":"Blaze Klocko","age":57,"location":"Owensboro"}},{"attributes":{"name":"Litzy Collier","age":42,"location":"Littelside"}},{"attributes":{"name":"Greg Haag","age":69,"location":"Salinas"}},{"attributes":{"name":"Josh Kuvalis","age":74,"location":"Parkershire"}},{"attributes":{"name":"Mrs. Rose Mayert-Beer","age":35,"location":"Kettering"}},{"attributes":{"name":"Glenn Douglas","age":42,"location":"Christiansenport"}},{"attributes":{"name":"Archie Labadie","age":56,"location":"Brockton"}},{"attributes":{"name":"Mr. Antone Kohler","age":59,"location":"New Virgil"}},{"attributes":{"name":"Mable Baumbach","age":38,"location":"Port Zionton"}},{"attributes":{"name":"Carole Huels III","age":49,"location":"North Stefan"}},{"attributes":{"name":"Brenda Zulauf","age":44,"location":"Bartolettichester"}},{"attributes":{"name":"Cheryl Davis","age":55,"location":"South Blair"}},{"attributes":{"name":"Dr. Frankie Medhurst","age":31,"location":"Yundttown"}},{"attributes":{"name":"Florence Waelchi","age":66,"location":"Port Jonathan"}},{"attributes":{"name":"Arnold Thiel","age":52,"location":"Woodbury"}},{"attributes":{"name":"Dr. Myron Prohaska","age":58,"location":"Laguna Niguel"}},{"attributes":{"name":"Dr. Stevie Treutel","age":26,"location":"North Beulahshire"}},{"attributes":{"name":"Richard Conroy II","age":62,"location":"New Raymond"}},{"attributes":{"name":"Anthony Von I","age":27,"location":"Bauchmouth"}},{"attributes":{"name":"Cierra Waelchi","age":63,"location":"East Deron"}},{"attributes":{"name":"Joshua Rice","age":65,"location":"Andersonton"}},{"attributes":{"name":"Chad Cronin DDS","age":51,"location":"North Las Vegas"}},{"attributes":{"name":"Laurence Jakubowski","age":31,"location":"South Rosabury"}},{"attributes":{"name":"John Walker","age":61,"location":"Kiehnburgh"}},{"attributes":{"name":"Roderick Hackett","age":19,"location":"Franklin"}},{"attributes":{"name":"Julianne Dare","age":75,"location":"Derektown"}},{"attributes":{"name":"Ms. Ally Ledner","age":50,"location":"Fort Carolanne"}},{"attributes":{"name":"Jonathan Borer","age":57,"location":"Borerboro"}},{"attributes":{"name":"Mrs. Max Harvey","age":72,"location":"Leannonworth"}},{"attributes":{"name":"Hal Grimes","age":30,"location":"West Reyfurt"}},{"attributes":{"name":"Dr. Joannie Hettinger","age":37,"location":"Oberbrunnerberg"}},{"attributes":{"name":"Mariana Spinka I","age":54,"location":"Lake Harryberg"}},{"attributes":{"name":"Berry Harvey","age":67,"location":"Kristafield"}},{"attributes":{"name":"Jose Feil","age":26,"location":"Huntington Park"}},{"attributes":{"name":"Tillman Conroy-Toy","age":18,"location":"New Bernadine"}},{"attributes":{"name":"Gavin Hayes Jr.","age":46,"location":"Fort Austyn"}},{"attributes":{"name":"Sonya O'Connell","age":78,"location":"Lisandroview"}},{"attributes":{"name":"Lucia Hessel-Tillman","age":76,"location":"South Jalen"}},{"attributes":{"name":"Jayce Bartell","age":39,"location":"Keatoncester"}},{"attributes":{"name":"Randal Rau","age":63,"location":"Humbertochester"}},{"attributes":{"name":"Lynette Homenick","age":50,"location":"Johnstonside"}},{"attributes":{"name":"Darrin Price","age":79,"location":"New Aiden"}},{"attributes":{"name":"Cleta Halvorson","age":69,"location":"VonRuedenhaven"}},{"attributes":{"name":"Elmer Reynolds","age":22,"location":"West Covina"}},{"attributes":{"name":"Allison Prohaska Sr.","age":52,"location":"Gorczanystead"}},{"attributes":{"name":"Izaiah Gutkowski","age":29,"location":"North Easton"}},{"attributes":{"name":"Anya Marks","age":44,"location":"Altenwerthboro"}},{"attributes":{"name":"Velma Legros","age":20,"location":"Port Sage"}},{"attributes":{"name":"Olive Carroll","age":42,"location":"South Nadiamouth"}},{"attributes":{"name":"Minnie Beier","age":30,"location":"Morgan Hill"}},{"attributes":{"name":"Garnett Ferry","age":21,"location":"East Colin"}},{"attributes":{"name":"Michele Von","age":28,"location":"Gageview"}},{"attributes":{"name":"Kelley Huel","age":62,"location":"East Enrique"}},{"attributes":{"name":"Ladarius Hagenes","age":76,"location":"Balistrerichester"}},{"attributes":{"name":"Reece Reichel","age":29,"location":"Lockmantown"}},{"attributes":{"name":"Buddy McGlynn","age":71,"location":"North Bettystad"}},{"attributes":{"name":"Edmund Bernhard","age":20,"location":"West Cleoboro"}},{"attributes":{"name":"Ray Hansen","age":45,"location":"Fort Kevinside"}},{"attributes":{"name":"Dr. Dana Simonis","age":26,"location":"Vacaville"}},{"attributes":{"name":"Genevieve Shields","age":58,"location":"Ezekielburgh"}},{"attributes":{"name":"Forest Abbott","age":57,"location":"Howardhaven"}},{"attributes":{"name":"Clarence Mayer","age":58,"location":"Randallshire"}},{"attributes":{"name":"Anahi Roob","age":55,"location":"Columbia"}},{"attributes":{"name":"Dr. Rene Nitzsche","age":66,"location":"East Godfreyborough"}},{"attributes":{"name":"Ms. Estelle Kozey","age":44,"location":"Greenton"}},{"attributes":{"name":"Mr. Price Crona","age":66,"location":"North Charles"}},{"attributes":{"name":"Johnnie Swaniawski","age":19,"location":"Lake Braulio"}},{"attributes":{"name":"Fidel Cormier","age":19,"location":"Lake Merrittfurt"}},{"attributes":{"name":"Omer Towne-Schimmel","age":54,"location":"East Reganfield"}},{"attributes":{"name":"Alfred Johnston","age":76,"location":"New Fredyworth"}},{"attributes":{"name":"Zachary Cummings","age":32,"location":"Wehnerfield"}},{"attributes":{"name":"Audrey Bosco","age":62,"location":"Beierborough"}},{"attributes":{"name":"Hattie Nicolas IV","age":65,"location":"Fort Candaceberg"}},{"attributes":{"name":"Laverne Schimmel-Hoeger","age":57,"location":"Redwood City"}},{"attributes":{"name":"Nathen Dooley","age":71,"location":"Wilhelmberg"}},{"attributes":{"name":"Terri Kovacek","age":50,"location":"Farmington Hills"}},{"attributes":{"name":"Antwan Funk","age":55,"location":"Huelstown"}},{"attributes":{"name":"Donna Barrows","age":50,"location":"Cordellfort"}},{"attributes":{"name":"Donavon Durgan","age":44,"location":"North Janisberg"}},{"attributes":{"name":"Marion Lehner-Schaefer","age":76,"location":"Port Susanna"}},{"attributes":{"name":"Dr. Tricia Homenick","age":52,"location":"Reyport"}},{"attributes":{"name":"Mr. Kirk Howe","age":35,"location":"North Nathenboro"}},{"attributes":{"name":"Ewell Jacobson II","age":29,"location":"Lake Max"}},{"attributes":{"name":"Edwardo Rogahn II","age":45,"location":"Grand Prairie"}},{"attributes":{"name":"Princess Hane","age":75,"location":"Salinas"}},{"attributes":{"name":"Mercedes Nader","age":48,"location":"Ankeny"}},{"attributes":{"name":"Nick Altenwerth","age":29,"location":"Lake Dawnport"}},{"attributes":{"name":"Mrs. Minerva Mitchell","age":38,"location":"New Danialfield"}},{"attributes":{"name":"Kim Renner","age":71,"location":"Littleton"}},{"attributes":{"name":"Mr. Aubrey Bogisich II","age":59,"location":"Port Berniece"}},{"attributes":{"name":"Dr. Mariela Durgan","age":52,"location":"East Kira"}},{"attributes":{"name":"Kristina Rice","age":57,"location":"Gustaveburgh"}},{"attributes":{"name":"Erich White","age":43,"location":"Fort Marisol"}},{"attributes":{"name":"Ryan Grady","age":45,"location":"Port Boydmouth"}},{"attributes":{"name":"Julia Jast-Deckow","age":32,"location":"North Alaynaview"}},{"attributes":{"name":"Pauline Volkman","age":19,"location":"Fishers"}},{"attributes":{"name":"Myrtle Cole","age":63,"location":"East Jessyca"}},{"attributes":{"name":"Earl Corkery","age":78,"location":"Bayonne"}},{"attributes":{"name":"Dr. Traci Feil-Ortiz","age":18,"location":"Stefanside"}},{"attributes":{"name":"Janet Moore","age":55,"location":"South Zacharyland"}},{"attributes":{"name":"Mr. Josh Mayert","age":18,"location":"Gerlachfield"}},{"attributes":{"name":"Charlene Hammes-Brekke","age":37,"location":"New Cristalmouth"}},{"attributes":{"name":"Lori Jacobi","age":33,"location":"McKenziefurt"}},{"attributes":{"name":"Debbie Koepp","age":67,"location":"Fort Beulahfort"}},{"attributes":{"name":"Dr. April Harvey V","age":51,"location":"East Yasmineport"}},{"attributes":{"name":"Eloise Harvey","age":28,"location":"North Sienna"}},{"attributes":{"name":"Fay Greenfelder","age":71,"location":"East Marion"}},{"attributes":{"name":"Aurelie Langworth","age":58,"location":"Curtisbury"}},{"attributes":{"name":"Mrs. Vanessa Brakus","age":35,"location":"Reichertstad"}},{"attributes":{"name":"Inez Hauck","age":70,"location":"East Rita"}},{"attributes":{"name":"Alfred Sawayn","age":55,"location":"Genesisfort"}},{"attributes":{"name":"Josefina Moen","age":79,"location":"North Xzavier"}},{"attributes":{"name":"Mr. Beaulah Collier","age":29,"location":"New Jodychester"}},{"attributes":{"name":"Alma Kassulke MD","age":43,"location":"Fort Aglae"}},{"attributes":{"name":"Dr. Madeline Doyle","age":30,"location":"Fort Leannefurt"}},{"attributes":{"name":"Abraham Lang","age":21,"location":"Eduardoboro"}},{"attributes":{"name":"Guadalupe Wolff V","age":79,"location":"Grand Forks"}},{"attributes":{"name":"Leola Pollich","age":39,"location":"East Abigail"}},{"attributes":{"name":"Dr. Bill Luettgen III","age":53,"location":"West Herman"}},{"attributes":{"name":"Ms. Allie Schowalter","age":61,"location":"South Eleonore"}},{"attributes":{"name":"Lindsey Hettinger","age":47,"location":"Rolfsonborough"}},{"attributes":{"name":"Noah Gerhold","age":74,"location":"Virgilland"}},{"attributes":{"name":"Louise Spinka","age":58,"location":"Hattiesburg"}},{"attributes":{"name":"Jerad Hodkiewicz","age":54,"location":"South Scarlettton"}},{"attributes":{"name":"Erwin Jakubowski","age":18,"location":"Cupertino"}},{"attributes":{"name":"Reyna Lang","age":61,"location":"Kochberg"}},{"attributes":{"name":"Leola Bergnaum Sr.","age":36,"location":"Jastberg"}},{"attributes":{"name":"Jabari Graham","age":25,"location":"Lake Dana"}},{"attributes":{"name":"Bradley Padberg","age":75,"location":"North Colton"}},{"attributes":{"name":"Rachael Howell III","age":28,"location":"East Jessika"}},{"attributes":{"name":"Martha Quitzon","age":25,"location":"Cloydton"}},{"attributes":{"name":"Philip Wolff","age":21,"location":"Kelsiechester"}},{"attributes":{"name":"Heather West","age":21,"location":"Port Kylerfort"}},{"attributes":{"name":"Kathryn Cormier","age":41,"location":"Jessiestead"}},{"attributes":{"name":"Monica O'Keefe","age":79,"location":"Huntsville"}},{"attributes":{"name":"Glenn Mueller","age":29,"location":"Edmond"}},{"attributes":{"name":"Gail Feeney DDS","age":54,"location":"Lutherport"}},{"attributes":{"name":"Dr. Rudy Harris","age":22,"location":"Streichfield"}},{"attributes":{"name":"Bobby Steuber I","age":66,"location":"Alexandriastad"}},{"attributes":{"name":"Stewart Blick","age":70,"location":"Philipstad"}},{"attributes":{"name":"Henriette Bradtke","age":62,"location":"Daly City"}},{"attributes":{"name":"Miss Gilberto Collier","age":70,"location":"New Sanfordhaven"}},{"attributes":{"name":"Hettie Lemke","age":22,"location":"Kathlynfurt"}},{"attributes":{"name":"Pablo Shanahan","age":57,"location":"Bowie"}},{"attributes":{"name":"Joanie Jakubowski I","age":54,"location":"East Norbertoboro"}},{"attributes":{"name":"John Will","age":51,"location":"South Luella"}},{"attributes":{"name":"Jessie Kihn","age":37,"location":"East Gavin"}},{"attributes":{"name":"Leroy Wintheiser-Simonis","age":19,"location":"Baltimore"}},{"attributes":{"name":"Colleen Sanford","age":69,"location":"Lake Finn"}},{"attributes":{"name":"Neal Baumbach-Botsford","age":45,"location":"Port Jaren"}},{"attributes":{"name":"Dr. Francesca Rosenbaum","age":31,"location":"West Marcelino"}},{"attributes":{"name":"Kenneth Lakin","age":74,"location":"North Lizaview"}},{"attributes":{"name":"Leigh Zieme","age":31,"location":"Framimouth"}},{"attributes":{"name":"Dr. Rachael Turner","age":35,"location":"New Alyce"}},{"attributes":{"name":"Dr. Earnest Gerhold","age":72,"location":"Rock Hill"}},{"attributes":{"name":"Jewell Fadel","age":74,"location":"Tevinbury"}},{"attributes":{"name":"Marco Ernser","age":79,"location":"South Herminabury"}},{"attributes":{"name":"Susana Maggio DVM","age":79,"location":"Conroytown"}},{"attributes":{"name":"Nayeli Nikolaus","age":46,"location":"Fort Darren"}},{"attributes":{"name":"Martin Walsh","age":31,"location":"Hillsville"}},{"attributes":{"name":"Alvena Schowalter","age":20,"location":"Lake Coby"}},{"attributes":{"name":"Janiya Huel","age":59,"location":"Estrellaborough"}},{"attributes":{"name":"Miranda Kiehn","age":40,"location":"North Domenic"}},{"attributes":{"name":"Ms. Patricia Welch","age":56,"location":"Brayancester"}},{"attributes":{"name":"Mitchell Ledner","age":63,"location":"Southaven"}},{"attributes":{"name":"Terrell Towne","age":45,"location":"Nikolausview"}},{"attributes":{"name":"Dwight Doyle","age":18,"location":"Gretaboro"}},{"attributes":{"name":"Virgie Raynor","age":42,"location":"West Rosettabury"}},{"attributes":{"name":"Elvira Morar","age":56,"location":"Pinkfort"}},{"attributes":{"name":"Fred Becker","age":44,"location":"Adamscester"}},{"attributes":{"name":"Homer Crooks","age":36,"location":"McKenziemouth"}},{"attributes":{"name":"Elnora Treutel","age":61,"location":"Nikitastead"}},{"attributes":{"name":"Elmira Bogisich","age":62,"location":"Vonbury"}},{"attributes":{"name":"Wilfrid Will","age":66,"location":"Schummtown"}},{"attributes":{"name":"Lorene Ullrich","age":22,"location":"North Orie"}},{"attributes":{"name":"Hardy Feil","age":78,"location":"North Maybellechester"}},{"attributes":{"name":"Brant Douglas","age":39,"location":"New Marquismouth"}},{"attributes":{"name":"Alfred Schuppe-Bins","age":58,"location":"New Kadeberg"}},{"attributes":{"name":"Enid Ritchie","age":35,"location":"Pine Bluff"}},{"attributes":{"name":"Myra Koss","age":51,"location":"Lockmanberg"}},{"attributes":{"name":"Paula Kautzer Sr.","age":31,"location":"East Lionel"}},{"attributes":{"name":"Mrs. Estelle Terry","age":19,"location":"Port Jacquelyn"}},{"attributes":{"name":"Danielle Kuhlman","age":77,"location":"Roryfort"}},{"attributes":{"name":"Abel Hermiston","age":46,"location":"Willmsbury"}},{"attributes":{"name":"Estella Grady Sr.","age":38,"location":"Roselynshire"}},{"attributes":{"name":"Carolyn White","age":29,"location":"Otishaven"}},{"attributes":{"name":"Sandra Mohr","age":44,"location":"West Lindsayberg"}},{"attributes":{"name":"Ana Gerlach","age":62,"location":"Anaheim"}},{"attributes":{"name":"Germaine Goodwin","age":31,"location":"Fort Wilhelmshire"}},{"attributes":{"name":"Maia Durgan","age":58,"location":"Palm Springs"}},{"attributes":{"name":"Noah Cremin-Walter","age":58,"location":"Huntington"}},{"attributes":{"name":"Allison Greenfelder Jr.","age":46,"location":"Toledo"}},{"attributes":{"name":"Mr. Dylan Borer","age":40,"location":"Kaylahfield"}},{"attributes":{"name":"Carol Moen","age":21,"location":"McAllen"}},{"attributes":{"name":"Brooke Ortiz","age":27,"location":"Jakubowskiport"}},{"attributes":{"name":"Chad Effertz","age":62,"location":"Schmidtberg"}},{"attributes":{"name":"Krystal Pfeffer","age":21,"location":"Vernonside"}},{"attributes":{"name":"Andrew Padberg","age":36,"location":"South Cordieland"}},{"attributes":{"name":"Miss Kristine Bruen","age":55,"location":"Monroe"}},{"attributes":{"name":"Jacqueline Donnelly","age":27,"location":"Medhurstton"}},{"attributes":{"name":"Emery Nader","age":75,"location":"North Ursulaworth"}},{"attributes":{"name":"Dallas Stroman","age":33,"location":"North Alexfield"}},{"attributes":{"name":"Pearl Keeling","age":53,"location":"Port Dessiechester"}},{"attributes":{"name":"Dock Stracke","age":29,"location":"Schummbury"}},{"attributes":{"name":"Mr. Anita Schulist III","age":18,"location":"Cartwrightbury"}},{"attributes":{"name":"Katherine Lueilwitz","age":58,"location":"Daly City"}},{"attributes":{"name":"Kendrick Nitzsche","age":41,"location":"Akeemmouth"}},{"attributes":{"name":"Beryl Moen-Hettinger","age":54,"location":"Madera"}},{"attributes":{"name":"Gordon Purdy","age":30,"location":"Port Myron"}},{"attributes":{"name":"Araceli Champlin","age":23,"location":"Millsfurt"}},{"attributes":{"name":"Coralie McClure I","age":21,"location":"Robelboro"}},{"attributes":{"name":"Virgil Bergstrom","age":44,"location":"Lake Stantonburgh"}},{"attributes":{"name":"Glenn Fay","age":26,"location":"Paramount"}},{"attributes":{"name":"Trystan Kunze","age":63,"location":"Torranceburgh"}},{"attributes":{"name":"Rebecca Klocko","age":22,"location":"Jonathanton"}},{"attributes":{"name":"Wilfred Larkin","age":80,"location":"South Abdul"}},{"attributes":{"name":"Nettie Marquardt","age":69,"location":"West Magdalenside"}},{"attributes":{"name":"Kristine Beatty","age":29,"location":"East Westonberg"}},{"attributes":{"name":"Tom Bruen","age":38,"location":"South Henderson"}},{"attributes":{"name":"Ernestina Wehner","age":18,"location":"Lanceboro"}},{"attributes":{"name":"Leanna Torp","age":40,"location":"Bruenport"}},{"attributes":{"name":"Gina Nader","age":27,"location":"Port Abbyborough"}},{"attributes":{"name":"Roel Franecki","age":33,"location":"New Mariela"}},{"attributes":{"name":"Pauline Mitchell","age":71,"location":"McClureborough"}},{"attributes":{"name":"Erma Larkin","age":68,"location":"South Nathenmouth"}},{"attributes":{"name":"Sandra Murray-Schimmel","age":73,"location":"Montebello"}},{"attributes":{"name":"Edmond Metz","age":59,"location":"Redding"}},{"attributes":{"name":"Miss Vivian Wehner","age":37,"location":"Kemmerfield"}},{"attributes":{"name":"Nathaniel Hand","age":74,"location":"West Felipe"}},{"attributes":{"name":"Cathy Fahey","age":25,"location":"Kirkland"}},{"attributes":{"name":"Micaela Bradtke","age":34,"location":"Willside"}},{"attributes":{"name":"Hazel Boyle","age":80,"location":"Lillyport"}},{"attributes":{"name":"Mr. Laila Kunde Sr.","age":26,"location":"Fall River"}},{"attributes":{"name":"Vicki Schuppe","age":71,"location":"Gilroy"}},{"attributes":{"name":"Olivia Gibson","age":40,"location":"Port Ryleyview"}},{"attributes":{"name":"Nellie Langosh","age":62,"location":"West Dominic"}},{"attributes":{"name":"Joshua Smith","age":54,"location":"Gerardview"}},{"attributes":{"name":"Mr. Shane O'Hara","age":78,"location":"East Edna"}},{"attributes":{"name":"Terrance Stark","age":37,"location":"West Jennifershire"}},{"attributes":{"name":"Hilario Labadie","age":73,"location":"Hoegerfurt"}},{"attributes":{"name":"Rene Graham","age":50,"location":"Twin Falls"}},{"attributes":{"name":"Thelma Simonis","age":39,"location":"New Rosaleestad"}},{"attributes":{"name":"Lena Mayer","age":65,"location":"Los Angeles"}},{"attributes":{"name":"Ludwig Reichert","age":54,"location":"Evanston"}},{"attributes":{"name":"Mr. Henri Jacobson","age":50,"location":"Ziemeville"}},{"attributes":{"name":"Dr. Rudy Wehner","age":55,"location":"Cathrynland"}},{"attributes":{"name":"Shannon Schaden","age":21,"location":"Zaneborough"}},{"attributes":{"name":"Mattie Bradtke","age":60,"location":"Margretfield"}},{"attributes":{"name":"Rubie Howell","age":69,"location":"Fort Alayna"}},{"attributes":{"name":"Opal Zemlak","age":34,"location":"Fort Jackychester"}},{"attributes":{"name":"Mallory Quitzon","age":29,"location":"North Garlandmouth"}},{"attributes":{"name":"Erwin Lemke","age":56,"location":"Burien"}},{"attributes":{"name":"Ernest Spencer","age":47,"location":"Farmington"}},{"attributes":{"name":"Stuart Turcotte","age":60,"location":"Robertsmouth"}},{"attributes":{"name":"Freda Spencer","age":77,"location":"South Cristopherhaven"}},{"attributes":{"name":"Merle Homenick","age":32,"location":"Peoria"}},{"attributes":{"name":"Alison Legros","age":62,"location":"Emieshire"}},{"attributes":{"name":"Inez Emmerich","age":72,"location":"Parkerport"}},{"attributes":{"name":"Ben Kunze","age":23,"location":"West Glenda"}},{"attributes":{"name":"Elisa Hansen","age":62,"location":"West Brandon"}},{"attributes":{"name":"Wendy Armstrong","age":34,"location":"Lake Brendenport"}},{"attributes":{"name":"Wilbert Ryan","age":18,"location":"Zulaufview"}},{"attributes":{"name":"Mr. Elbert Krajcik","age":52,"location":"Paololand"}},{"attributes":{"name":"Ed Turcotte","age":58,"location":"Gerlachhaven"}},{"attributes":{"name":"Gretchen Fay","age":29,"location":"McClurefurt"}},{"attributes":{"name":"Brayan Gorczany","age":38,"location":"Toyfort"}},{"attributes":{"name":"Tammy Weissnat","age":77,"location":"Palm Springs"}},{"attributes":{"name":"Sylvia Dibbert","age":70,"location":"Rosemariehaven"}},{"attributes":{"name":"Cesar Weber","age":22,"location":"West Raleigh"}},{"attributes":{"name":"Alana Emard","age":21,"location":"North Kennethfurt"}},{"attributes":{"name":"Sandy Emmerich","age":71,"location":"Fort Finn"}},{"attributes":{"name":"May Murphy","age":42,"location":"Renton"}},{"attributes":{"name":"Logan Konopelski","age":47,"location":"Cronaland"}},{"attributes":{"name":"Neil Jacobs","age":58,"location":"Violetburgh"}},{"attributes":{"name":"Rex Pfannerstill","age":45,"location":"Waterbury"}},{"attributes":{"name":"Roman Brakus","age":36,"location":"Jupiter"}},{"attributes":{"name":"Dr. Ocie Emard","age":57,"location":"Fort Loraworth"}},{"attributes":{"name":"Burnice Bartoletti","age":23,"location":"Erikaborough"}},{"attributes":{"name":"Ramiro Volkman","age":79,"location":"Waylontown"}},{"attributes":{"name":"Amina Schmitt","age":22,"location":"Beierfield"}},{"attributes":{"name":"Elvira Wolf","age":26,"location":"Port Jammie"}},{"attributes":{"name":"Mrs. Devante Hartmann","age":45,"location":"Bradyfort"}},{"attributes":{"name":"Cole Paucek","age":60,"location":"Tuscaloosa"}},{"attributes":{"name":"Shannon Hagenes","age":25,"location":"Port Darryltown"}},{"attributes":{"name":"Christy Dickens","age":23,"location":"Cadeberg"}},{"attributes":{"name":"Claire Harber","age":22,"location":"Scottsdale"}},{"attributes":{"name":"Ron Casper","age":77,"location":"Fort Donny"}},{"attributes":{"name":"Theron Streich II","age":44,"location":"Gutkowskifort"}},{"attributes":{"name":"Ms. Candace Gerlach","age":68,"location":"Darrellburgh"}},{"attributes":{"name":"Kristie Crist-Marvin PhD","age":71,"location":"Flagstaff"}},{"attributes":{"name":"Jeromy Jerde","age":31,"location":"Maggioport"}},{"attributes":{"name":"Chandler Mueller","age":21,"location":"Port Letitia"}},{"attributes":{"name":"Mrs. Maggie O'Connell","age":74,"location":"Vandervortview"}},{"attributes":{"name":"Mr. Sarah Oberbrunner","age":69,"location":"South Kevin"}},{"attributes":{"name":"Brad Gislason","age":64,"location":"Normaton"}},{"attributes":{"name":"Sandra Strosin","age":63,"location":"Revamouth"}},{"attributes":{"name":"Mathew Aufderhar","age":78,"location":"Port Vicenta"}},{"attributes":{"name":"Solon Corwin","age":48,"location":"Lake Keltonhaven"}},{"attributes":{"name":"Ike Wilkinson","age":46,"location":"Kemmerboro"}},{"attributes":{"name":"Gladys Labadie","age":42,"location":"Fort Haileyworth"}},{"attributes":{"name":"Deshaun Bartoletti","age":37,"location":"Rebekahburgh"}},{"attributes":{"name":"Jeramy Hirthe","age":28,"location":"Thousand Oaks"}},{"attributes":{"name":"Dr. Rolando Kling","age":37,"location":"Hintzbury"}},{"attributes":{"name":"Dexter Schmitt","age":56,"location":"New Desireeborough"}},{"attributes":{"name":"Meredith Okuneva","age":34,"location":"Ontario"}},{"attributes":{"name":"Elbert Hansen","age":45,"location":"Hahnton"}},{"attributes":{"name":"Kelly Toy","age":76,"location":"Elbertbury"}},{"attributes":{"name":"Mr. Miguel Oberbrunner","age":80,"location":"Benniefield"}},{"attributes":{"name":"Chaya Cronin","age":24,"location":"Port Okeyfield"}},{"attributes":{"name":"Sergio Kovacek","age":31,"location":"Keelingland"}},{"attributes":{"name":"Sophia Hermiston-Greenholt","age":69,"location":"Fort Marc"}},{"attributes":{"name":"Mr. Maryse Sipes","age":76,"location":"Paradise"}},{"attributes":{"name":"Shannon Effertz","age":55,"location":"Edythberg"}},{"attributes":{"name":"Mrs. Amie Nitzsche","age":73,"location":"North Levi"}},{"attributes":{"name":"Vincent Prohaska","age":24,"location":"Donnellytown"}},{"attributes":{"name":"Cyrus Beahan","age":57,"location":"Altenwerthborough"}},{"attributes":{"name":"Marcus Blanda","age":58,"location":"Enid"}},{"attributes":{"name":"Edwin Leannon DDS","age":54,"location":"East Jimmycester"}},{"attributes":{"name":"Bradford VonRueden","age":38,"location":"East Jared"}},{"attributes":{"name":"Jillian Paucek","age":22,"location":"Sioux Falls"}},{"attributes":{"name":"Mia Armstrong","age":28,"location":"Kiehnstad"}},{"attributes":{"name":"Perry Hodkiewicz","age":78,"location":"Aufderharworth"}},{"attributes":{"name":"Benjamin Muller","age":35,"location":"Cotyton"}},{"attributes":{"name":"Juan Conroy","age":22,"location":"Melanystead"}},{"attributes":{"name":"Fannie Moore","age":66,"location":"Domenicomouth"}},{"attributes":{"name":"Dale Nienow","age":76,"location":"Thielborough"}},{"attributes":{"name":"Dominick Bosco IV","age":80,"location":"Nikotown"}},{"attributes":{"name":"Otilia Johnston","age":24,"location":"Raeganboro"}},{"attributes":{"name":"Alexandria Roberts","age":63,"location":"Beerstad"}},{"attributes":{"name":"Alan Rath","age":77,"location":"Wisokyshire"}},{"attributes":{"name":"Marcelle Schaefer","age":32,"location":"Port Ramona"}},{"attributes":{"name":"Reyna Beatty","age":75,"location":"Hilllton"}},{"attributes":{"name":"Mallory Casper II","age":32,"location":"Wichita"}},{"attributes":{"name":"Emmalee Dicki","age":27,"location":"Clifton"}},{"attributes":{"name":"Leroy Swift","age":62,"location":"Carrollfurt"}},{"attributes":{"name":"Shaniya Bode","age":80,"location":"Lake Leolafurt"}},{"attributes":{"name":"Jennie Blanda","age":54,"location":"West Emery"}},{"attributes":{"name":"Darlene Casper Jr.","age":77,"location":"Perth Amboy"}},{"attributes":{"name":"Clinton Frami","age":54,"location":"South Delbertstead"}},{"attributes":{"name":"Horace Schaden","age":78,"location":"Elzaworth"}},{"attributes":{"name":"Aidan Harvey","age":28,"location":"Nathanboro"}},{"attributes":{"name":"Arturo Stanton DDS","age":30,"location":"Tustin"}},{"attributes":{"name":"Kayleigh Wyman","age":57,"location":"New Orville"}},{"attributes":{"name":"Tracy Marquardt","age":44,"location":"Schusterburgh"}},{"attributes":{"name":"Alexander Fahey","age":63,"location":"Petrachester"}},{"attributes":{"name":"Dr. Douglas Dooley","age":57,"location":"Biloxi"}},{"attributes":{"name":"Bernhard Heidenreich","age":53,"location":"Tatefort"}},{"attributes":{"name":"Bert Abernathy-Sanford","age":65,"location":"Hempstead"}},{"attributes":{"name":"Kate Pacocha","age":38,"location":"Kariville"}},{"attributes":{"name":"Duane Rowe","age":20,"location":"Fisherville"}},{"attributes":{"name":"Taylor Schuppe","age":22,"location":"Toyville"}},{"attributes":{"name":"Peter Balistreri","age":47,"location":"Garland"}},{"attributes":{"name":"Nicholas Rau Sr.","age":34,"location":"Cedar Park"}},{"attributes":{"name":"Marjorie Emard","age":29,"location":"Kulasbury"}},{"attributes":{"name":"Joey White","age":78,"location":"Port Estrellafield"}},{"attributes":{"name":"Harold Boyle","age":24,"location":"El Dorado Hills"}},{"attributes":{"name":"Duane Kuhlman","age":73,"location":"Port Janiestad"}},{"attributes":{"name":"Kale Ferry","age":22,"location":"East Marilieborough"}},{"attributes":{"name":"Lillie Padberg","age":54,"location":"New Demond"}},{"attributes":{"name":"Jerel Lockman-Harber","age":52,"location":"Stockton"}},{"attributes":{"name":"Marcus Jenkins","age":60,"location":"San Marcos"}},{"attributes":{"name":"Sara Howell","age":75,"location":"San Clemente"}},{"attributes":{"name":"Baron Cormier","age":56,"location":"Lubowitzton"}},{"attributes":{"name":"Ernest McLaughlin-Rath","age":66,"location":"O'Reillyworth"}},{"attributes":{"name":"Pierce Koch Jr.","age":39,"location":"Abbieside"}},{"attributes":{"name":"Mrs. Rochelle Oberbrunner","age":23,"location":"West Alfredmouth"}},{"attributes":{"name":"Elias Harvey","age":58,"location":"Simonisside"}},{"attributes":{"name":"Anahi Schulist","age":40,"location":"East Oraboro"}},{"attributes":{"name":"Mrs. Maureen Hettinger","age":63,"location":"DeKalb"}},{"attributes":{"name":"Candace Harvey","age":74,"location":"Fort Ramiroside"}},{"attributes":{"name":"Pat Langosh III","age":20,"location":"Marvinfield"}},{"attributes":{"name":"Dr. Dell Brekke","age":32,"location":"Lake Brenden"}},{"attributes":{"name":"Sarah Hermiston","age":75,"location":"The Woodlands"}},{"attributes":{"name":"Orville Hahn III","age":57,"location":"Hilariostad"}},{"attributes":{"name":"Lorenz Feeney MD","age":30,"location":"Danielton"}},{"attributes":{"name":"Clair West","age":27,"location":"Farmington"}},{"attributes":{"name":"Justin Willms","age":54,"location":"Wylie"}},{"attributes":{"name":"Geovanni Hirthe","age":28,"location":"Kasandraberg"}},{"attributes":{"name":"Michael Von","age":26,"location":"Chesterfort"}},{"attributes":{"name":"Dr. Ian Graham","age":70,"location":"Fort Garryfurt"}},{"attributes":{"name":"Raquel Turner","age":76,"location":"Kingsport"}},{"attributes":{"name":"Dallas McLaughlin","age":23,"location":"Hahnfield"}},{"attributes":{"name":"Van Yost","age":58,"location":"Pfeffertown"}},{"attributes":{"name":"Henry Effertz-Zieme","age":66,"location":"Fort Karlie"}},{"attributes":{"name":"Luke Daugherty","age":19,"location":"Wilmington"}},{"attributes":{"name":"Marion Kub","age":47,"location":"North Aglaefurt"}},{"attributes":{"name":"Dr. Marco Gottlieb","age":41,"location":"Moseboro"}},{"attributes":{"name":"Gail Davis","age":49,"location":"Reingerberg"}},{"attributes":{"name":"Mrs. Gregory Jacobi","age":27,"location":"North Leda"}},{"attributes":{"name":"Palma Stark","age":72,"location":"Greenfelderworth"}},{"attributes":{"name":"Rosa Johns","age":50,"location":"Craigchester"}},{"attributes":{"name":"Irene Hammes","age":39,"location":"South Sunnyburgh"}},{"attributes":{"name":"Fred Wehner","age":61,"location":"Connellyshire"}},{"attributes":{"name":"Eunice Bosco","age":39,"location":"Adamsworth"}},{"attributes":{"name":"Michel Brown","age":33,"location":"Lake Helenastad"}},{"attributes":{"name":"Cecile Bins","age":59,"location":"Pagacstad"}},{"attributes":{"name":"Israel Boyle","age":37,"location":"Consuelohaven"}},{"attributes":{"name":"Russell Zieme","age":65,"location":"New Meaghan"}},{"attributes":{"name":"Salvatore Emmerich","age":72,"location":"Riverton"}},{"attributes":{"name":"Belinda Hoppe","age":25,"location":"North Bethesda"}},{"attributes":{"name":"Harry Kessler","age":49,"location":"Titusville"}},{"attributes":{"name":"Tonya Nikolaus","age":22,"location":"East Caleview"}},{"attributes":{"name":"Kody Bernhard","age":25,"location":"Schmittstad"}},{"attributes":{"name":"Eloise Kovacek II","age":75,"location":"North Maximilliaberg"}},{"attributes":{"name":"Georgia Rippin","age":78,"location":"Powlowskichester"}},{"attributes":{"name":"Elijah Fay IV","age":36,"location":"Hahnworth"}},{"attributes":{"name":"Dr. Bessie Larkin","age":22,"location":"Shaynatown"}},{"attributes":{"name":"Rey Schaden","age":43,"location":"Worcester"}},{"attributes":{"name":"Vallie Collins","age":78,"location":"Schmittview"}},{"attributes":{"name":"Wanda Anderson IV","age":70,"location":"Barryfurt"}},{"attributes":{"name":"Rufus Huels","age":74,"location":"Isadorefield"}},{"attributes":{"name":"Alma Leffler IV","age":31,"location":"Eugene"}},{"attributes":{"name":"Clay Beatty","age":49,"location":"North Elena"}},{"attributes":{"name":"Caroline Quitzon","age":42,"location":"South Sigmundport"}},{"attributes":{"name":"Toni Haley","age":74,"location":"New Micaelaview"}},{"attributes":{"name":"Stephanie Schultz","age":77,"location":"Lawrence"}},{"attributes":{"name":"Maria Schuster","age":39,"location":"Franeckiport"}},{"attributes":{"name":"Uriel Reilly","age":26,"location":"Denisworth"}},{"attributes":{"name":"Mabel Bahringer","age":69,"location":"Busterport"}},{"attributes":{"name":"Vanessa Bayer DDS","age":34,"location":"Saigebury"}},{"attributes":{"name":"Guadalupe Kozey","age":69,"location":"South Korycester"}},{"attributes":{"name":"Brendan Shanahan V","age":37,"location":"West Kamrenberg"}},{"attributes":{"name":"Alexanne Schamberger","age":51,"location":"Clevelandfurt"}},{"attributes":{"name":"Mr. Karl Terry","age":27,"location":"Lake Gerrystad"}},{"attributes":{"name":"Edward Gleichner","age":23,"location":"Troy"}},{"attributes":{"name":"Marianne Gusikowski-Steuber","age":78,"location":"Fort Ilashire"}},{"attributes":{"name":"Rebecca Mraz","age":67,"location":"Allen"}},{"attributes":{"name":"Madaline Tremblay","age":63,"location":"State College"}},{"attributes":{"name":"Derek Quitzon","age":23,"location":"Port Serenity"}},{"attributes":{"name":"George Hirthe","age":40,"location":"South Damontown"}},{"attributes":{"name":"Mrs. Jodi Mitchell DVM","age":41,"location":"West Guadalupefurt"}},{"attributes":{"name":"Dr. Ardella Wiegand MD","age":30,"location":"Fond du Lac"}},{"attributes":{"name":"Adonis Jones","age":58,"location":"Thompsonland"}},{"attributes":{"name":"Lou Auer","age":25,"location":"North Hershel"}},{"attributes":{"name":"Saul Langosh IV","age":80,"location":"Port Jesstown"}},{"attributes":{"name":"Gerald Connelly-Parisian","age":33,"location":"Hodkiewicztown"}},{"attributes":{"name":"Megan Spinka","age":42,"location":"Lake Baron"}},{"attributes":{"name":"Sonia Simonis","age":23,"location":"North Jovani"}},{"attributes":{"name":"Jake Hayes","age":74,"location":"Port Dennisbury"}},{"attributes":{"name":"Mrs. Betty Gusikowski","age":36,"location":"Jeffersonville"}},{"attributes":{"name":"Charles Marks","age":77,"location":"Skokie"}},{"attributes":{"name":"Boyd Homenick","age":48,"location":"Chesapeake"}},{"attributes":{"name":"Cary Wisozk","age":37,"location":"Port Adell"}},{"attributes":{"name":"Gussie Swaniawski DVM","age":35,"location":"Reno"}},{"attributes":{"name":"Mrs. Aleen Reynolds","age":29,"location":"Pearl City"}},{"attributes":{"name":"Marlene Rippin","age":59,"location":"New Verniefurt"}},{"attributes":{"name":"Carlo Lemke","age":29,"location":"Port Scarlettport"}},{"attributes":{"name":"Jedediah Jaskolski","age":51,"location":"Konopelskiside"}},{"attributes":{"name":"Elinore Brakus","age":68,"location":"Lake Waldostad"}},{"attributes":{"name":"Ms. Rosa Reilly","age":37,"location":"Marquisville"}},{"attributes":{"name":"Madie Schinner","age":73,"location":"Haleyview"}},{"attributes":{"name":"Chaya Carter","age":61,"location":"Lake Stephaniaworth"}},{"attributes":{"name":"Tierra Jerde I","age":76,"location":"Baileyport"}},{"attributes":{"name":"Krystal Kshlerin","age":68,"location":"Reginaldfield"}},{"attributes":{"name":"Sylvia Breitenberg","age":19,"location":"New Austynworth"}},{"attributes":{"name":"Anika Hilpert","age":28,"location":"Hubertshire"}},{"attributes":{"name":"Luisa Fadel MD","age":29,"location":"Tracyborough"}},{"attributes":{"name":"Jakayla Gleichner PhD","age":43,"location":"South Chesterville"}},{"attributes":{"name":"Vanessa Jacobs","age":61,"location":"New Omashire"}},{"attributes":{"name":"Billy Emard","age":79,"location":"Spring"}},{"attributes":{"name":"Natalie Zulauf","age":55,"location":"North Kenyatta"}},{"attributes":{"name":"Keegan Casper","age":69,"location":"South Jeremy"}},{"attributes":{"name":"Barbara Sipes","age":47,"location":"Kriscester"}},{"attributes":{"name":"Jackeline Bradtke","age":52,"location":"Creminport"}},{"attributes":{"name":"Ms. Rudy Hodkiewicz MD","age":80,"location":"Macon-Bibb County"}},{"attributes":{"name":"Lamont Heathcote","age":53,"location":"Roseville"}},{"attributes":{"name":"Miss Amber Fahey","age":53,"location":"Wildermanside"}},{"attributes":{"name":"Ann Rath","age":71,"location":"Zoietown"}},{"attributes":{"name":"Amanda Bechtelar","age":21,"location":"Port Vallie"}},{"attributes":{"name":"Litzy Schmitt","age":34,"location":"Hudsonville"}},{"attributes":{"name":"Marian Tremblay","age":62,"location":"Southaven"}},{"attributes":{"name":"Harrison Gerhold","age":31,"location":"New Samtown"}},{"attributes":{"name":"Marsha Bednar","age":69,"location":"West Malachiville"}},{"attributes":{"name":"Tricia Kuhlman","age":74,"location":"New Roscoeworth"}},{"attributes":{"name":"Harry Mitchell","age":69,"location":"Miguelshire"}},{"attributes":{"name":"Louisa Deckow","age":48,"location":"New Lunastad"}},{"attributes":{"name":"Brenda Zboncak","age":36,"location":"Lake Mackberg"}},{"attributes":{"name":"Daren Koch","age":69,"location":"South Hilbertport"}},{"attributes":{"name":"Bradley Daniel","age":44,"location":"West Destiny"}},{"attributes":{"name":"Mrs. Alejandrin Heaney-Powlowski","age":70,"location":"Fort Al"}},{"attributes":{"name":"Clementine Steuber IV","age":79,"location":"Cyrilmouth"}},{"attributes":{"name":"Kent Leffler IV","age":33,"location":"Hauckfield"}},{"attributes":{"name":"Beulah Oberbrunner","age":72,"location":"Eleazarcester"}},{"attributes":{"name":"Luella Osinski","age":47,"location":"Grand Rapids"}},{"attributes":{"name":"Bobby Metz","age":42,"location":"Apopka"}},{"attributes":{"name":"Thalia Towne","age":31,"location":"Tonawanda"}},{"attributes":{"name":"Betsy Ruecker","age":46,"location":"Sigmundland"}},{"attributes":{"name":"Creola Price","age":32,"location":"Kuvalisstad"}},{"attributes":{"name":"Dion Hills","age":23,"location":"East Bernadine"}},{"attributes":{"name":"Moshe Krajcik","age":78,"location":"Lake Taryncester"}},{"attributes":{"name":"Amy Moore","age":18,"location":"Renton"}},{"attributes":{"name":"Marcia Buckridge","age":67,"location":"East Rickeyfurt"}},{"attributes":{"name":"Kerry Wisoky","age":31,"location":"Lake Katharinaland"}},{"attributes":{"name":"Genevieve Paucek-Adams","age":18,"location":"Kovacekworth"}},{"attributes":{"name":"Robin Frami","age":53,"location":"Chazburgh"}},{"attributes":{"name":"Tami Pollich","age":61,"location":"Hawthorne"}},{"attributes":{"name":"Samuel Turcotte","age":36,"location":"South Jeromeburgh"}},{"attributes":{"name":"Sammy Hilll","age":56,"location":"Port Lavinaside"}},{"attributes":{"name":"Mr. Terrell Williamson","age":31,"location":"Quincy"}},{"attributes":{"name":"Melanie Bode","age":64,"location":"New Nyasia"}},{"attributes":{"name":"Brad Robel","age":41,"location":"Waltham"}},{"attributes":{"name":"Eleanor Fisher","age":54,"location":"Fort Lilianestead"}},{"attributes":{"name":"Titus Fisher","age":50,"location":"Lake Alex"}},{"attributes":{"name":"Mike Wolff","age":79,"location":"Lake Jacintofield"}},{"attributes":{"name":"Aurelio Emard","age":31,"location":"Narcisoburgh"}},{"attributes":{"name":"Wilson Pollich","age":67,"location":"Meriden"}},{"attributes":{"name":"Miss Waino Mayert","age":59,"location":"West Zachary"}},{"attributes":{"name":"Rafaela Spencer","age":58,"location":"Lilyanville"}},{"attributes":{"name":"Louise Wilkinson-Farrell","age":20,"location":"Port Teagan"}},{"attributes":{"name":"Denise Schneider","age":67,"location":"Dessieburgh"}},{"attributes":{"name":"Roselyn Blanda","age":20,"location":"South Jarrodfield"}},{"attributes":{"name":"Daryl Casper","age":63,"location":"Port Janessa"}},{"attributes":{"name":"Minnie Adams Jr.","age":77,"location":"Port Kaelamouth"}},{"attributes":{"name":"Patti Lehner","age":21,"location":"Gottliebton"}},{"attributes":{"name":"Al Price","age":72,"location":"North Noel"}},{"attributes":{"name":"Guy Olson","age":62,"location":"O'Keefefield"}},{"attributes":{"name":"Gordon Satterfield","age":33,"location":"Murrieta"}},{"attributes":{"name":"Inez Borer","age":80,"location":"Lockmanstad"}},{"attributes":{"name":"Tina Boyle","age":29,"location":"Cordeliacester"}},{"attributes":{"name":"Pedro Shanahan","age":39,"location":"Fort Leoraview"}},{"attributes":{"name":"Easter Wiegand-Rice Sr.","age":35,"location":"North Ward"}},{"attributes":{"name":"Oda Auer","age":30,"location":"Jadestead"}},{"attributes":{"name":"Clarence Hartmann","age":66,"location":"Tulare"}},{"attributes":{"name":"Betty Emard-Donnelly DVM","age":61,"location":"South Raymundostead"}},{"attributes":{"name":"Sheila Purdy","age":51,"location":"Franklin"}},{"attributes":{"name":"Byron Sporer","age":27,"location":"Fort Edwin"}},{"attributes":{"name":"Dr. Tony Baumbach","age":46,"location":"Ericastead"}},{"attributes":{"name":"Lila Pollich","age":74,"location":"Addisonfurt"}},{"attributes":{"name":"Mike Cormier","age":33,"location":"Jeradport"}},{"attributes":{"name":"Willis Kautzer","age":23,"location":"Halvorsonburgh"}},{"attributes":{"name":"Margarete Stracke","age":58,"location":"New Krystelberg"}},{"attributes":{"name":"Caleigh Watsica","age":63,"location":"Conroe"}},{"attributes":{"name":"Nichole Hand","age":70,"location":"Tiaraworth"}},{"attributes":{"name":"Giuseppe Marvin","age":40,"location":"Kohlerfort"}},{"attributes":{"name":"Josefina Schmitt-DuBuque","age":76,"location":"West Devynstead"}},{"attributes":{"name":"Mae Moen","age":49,"location":"Lake Holdenview"}},{"attributes":{"name":"Adrien Feil","age":54,"location":"Robelhaven"}},{"attributes":{"name":"Rosemary Koepp","age":75,"location":"Coychester"}},{"attributes":{"name":"Mrs. Fredrick Hegmann","age":71,"location":"Fort Linneahaven"}},{"attributes":{"name":"Levi Predovic","age":27,"location":"Toledo"}},{"attributes":{"name":"Mathias Breitenberg PhD","age":65,"location":"Miami Gardens"}},{"attributes":{"name":"Jamal Hintz","age":63,"location":"Larkinboro"}},{"attributes":{"name":"Adalberto Carter MD","age":77,"location":"Jakefield"}},{"attributes":{"name":"Joyce Hilpert","age":30,"location":"Port Chris"}},{"attributes":{"name":"Dr. Lee Streich","age":27,"location":"Peabody"}},{"attributes":{"name":"Karen Schneider","age":56,"location":"Derrickstead"}},{"attributes":{"name":"Jimmie Cormier","age":39,"location":"Auerchester"}},{"attributes":{"name":"Muriel Tremblay","age":51,"location":"Handtown"}},{"attributes":{"name":"Geraldine Schneider DVM","age":45,"location":"New Shaniya"}},{"attributes":{"name":"Caroline Howell","age":73,"location":"Fort Addieshire"}},{"attributes":{"name":"Cicero Tillman","age":26,"location":"East Berniece"}},{"attributes":{"name":"Marvin O'Keefe","age":54,"location":"West Emily"}},{"attributes":{"name":"Brett Hamill DVM","age":38,"location":"New Jay"}},{"attributes":{"name":"Estelle Hoppe","age":60,"location":"Meaganport"}},{"attributes":{"name":"Dorothy Rath","age":23,"location":"Pflugerville"}},{"attributes":{"name":"Cecilia Torp","age":53,"location":"Odessa"}},{"attributes":{"name":"Retta Swaniawski","age":70,"location":"Livonia"}},{"attributes":{"name":"Oswald Balistreri","age":67,"location":"Ratketown"}},{"attributes":{"name":"Mrs. Trace Mayert","age":19,"location":"Rutherfordcester"}},{"attributes":{"name":"Winston Mayert PhD","age":69,"location":"Julieborough"}},{"attributes":{"name":"Linda Walker","age":51,"location":"Andersonside"}},{"attributes":{"name":"Lenora Leffler","age":35,"location":"Patienceview"}},{"attributes":{"name":"Marlene Cassin","age":31,"location":"Elmoreshire"}},{"attributes":{"name":"Velma Nolan","age":24,"location":"Vonport"}},{"attributes":{"name":"Hassan Gerlach","age":45,"location":"Gilbert"}},{"attributes":{"name":"Dominick Ruecker","age":39,"location":"Canton"}},{"attributes":{"name":"Maryjane Rempel","age":40,"location":"North Tatum"}},{"attributes":{"name":"Moriah Lueilwitz","age":37,"location":"Heathcoteside"}},{"attributes":{"name":"Kathy Rohan","age":27,"location":"South Kallie"}},{"attributes":{"name":"Hettie Gibson","age":56,"location":"South Freddie"}},{"attributes":{"name":"Iris Kirlin","age":26,"location":"Lake Mekhishire"}},{"attributes":{"name":"Anna Mueller","age":68,"location":"Yostville"}},{"attributes":{"name":"Allison Gutmann","age":38,"location":"East Emmet"}},{"attributes":{"name":"Mr. Keaton Barton","age":51,"location":"South Zariaborough"}},{"attributes":{"name":"Lori Runolfsson DVM","age":24,"location":"Averystead"}},{"attributes":{"name":"Shannon Gorczany","age":18,"location":"East Tressa"}},{"attributes":{"name":"Moses Rippin","age":61,"location":"Lavernatown"}},{"attributes":{"name":"Effie Dibbert","age":31,"location":"Tessborough"}},{"attributes":{"name":"Fletcher Hodkiewicz","age":51,"location":"Maggioburgh"}},{"attributes":{"name":"Price Schuster","age":50,"location":"Port Clotildecester"}},{"attributes":{"name":"Alba Gleichner","age":48,"location":"Fort Kory"}},{"attributes":{"name":"Harold Ruecker","age":65,"location":"Fort Cedrick"}},{"attributes":{"name":"Veda Bogan","age":75,"location":"East Rashawnside"}},{"attributes":{"name":"Athena Pfannerstill","age":67,"location":"Great Falls"}},{"attributes":{"name":"Mary Schroeder","age":18,"location":"Mollybury"}},{"attributes":{"name":"Clifford Rath","age":75,"location":"Faustinobury"}},{"attributes":{"name":"Kristofer Douglas","age":24,"location":"South Vinnie"}},{"attributes":{"name":"Eric Gerhold","age":54,"location":"Port Yasmeen"}},{"attributes":{"name":"Madyson VonRueden","age":64,"location":"West Jacklyn"}},{"attributes":{"name":"Anthony Bednar","age":65,"location":"Richland"}},{"attributes":{"name":"Ms. Tremaine Kutch Jr.","age":72,"location":"D'Amoretown"}},{"attributes":{"name":"Marcelina King IV","age":30,"location":"Fort Estellaville"}},{"attributes":{"name":"Sonya Nader IV","age":70,"location":"Fort Ariel"}},{"attributes":{"name":"Claude Hahn","age":54,"location":"Milpitas"}},{"attributes":{"name":"Casey Wyman II","age":52,"location":"Marleychester"}},{"attributes":{"name":"Travis Kreiger IV","age":22,"location":"New Ashly"}},{"attributes":{"name":"Roberta Parker","age":55,"location":"New Margot"}},{"attributes":{"name":"Sadie Mitchell","age":18,"location":"Fort Kayleigh"}},{"attributes":{"name":"Alessandra Reichert","age":26,"location":"Schroederfort"}},{"attributes":{"name":"Dr. Vicki Hamill","age":29,"location":"Port Koleburgh"}},{"attributes":{"name":"Baron Reichert","age":63,"location":"West Rosalindside"}},{"attributes":{"name":"Shari Harber","age":44,"location":"New Arielle"}},{"attributes":{"name":"Tracey Okuneva","age":21,"location":"West Joanneworth"}},{"attributes":{"name":"Melody Watsica","age":35,"location":"North Richland Hills"}},{"attributes":{"name":"Nelda Streich V","age":60,"location":"Hamilton"}},{"attributes":{"name":"Herbert Lebsack","age":68,"location":"Peterville"}},{"attributes":{"name":"Yadira Stracke","age":70,"location":"East Bernicehaven"}},{"attributes":{"name":"Dorothy Thompson","age":52,"location":"West Brettview"}},{"attributes":{"name":"Dr. Ryan Carter-Auer","age":42,"location":"Palm Desert"}},{"attributes":{"name":"Miss Danielle Kuhic","age":38,"location":"Fort Brockboro"}},{"attributes":{"name":"Terry Kiehn","age":66,"location":"Priceport"}},{"attributes":{"name":"Joey Lebsack","age":37,"location":"South Leonardoland"}},{"attributes":{"name":"Eudora Trantow","age":24,"location":"Margotstead"}},{"attributes":{"name":"Mr. Pierre Quitzon I","age":35,"location":"Antelope"}},{"attributes":{"name":"Jamie Dickinson","age":41,"location":"Kellystead"}},{"attributes":{"name":"Ralph Donnelly","age":35,"location":"Erikmouth"}},{"attributes":{"name":"Florence Towne","age":53,"location":"Jerrodfield"}},{"attributes":{"name":"Mrs. Kyleigh Altenwerth","age":44,"location":"Murphyville"}},{"attributes":{"name":"Ken Bode","age":56,"location":"Fort Josue"}},{"attributes":{"name":"Krystal Dickinson","age":53,"location":"Bryanastead"}},{"attributes":{"name":"Shyanne Ebert","age":46,"location":"Starkburgh"}},{"attributes":{"name":"Mrs. Isabell Fahey I","age":50,"location":"East Dorthy"}},{"attributes":{"name":"Gideon Bauch","age":73,"location":"North Chayafield"}},{"attributes":{"name":"Mathew Turner","age":69,"location":"South Claudiacester"}},{"attributes":{"name":"Myron Sanford","age":45,"location":"South Maybellechester"}},{"attributes":{"name":"Martin Welch","age":55,"location":"Ullrichport"}},{"attributes":{"name":"Freda Watsica","age":53,"location":"Bountiful"}},{"attributes":{"name":"Stephan Bailey","age":54,"location":"East Olinfort"}},{"attributes":{"name":"Ms. Dale Reichert","age":50,"location":"New Loyal"}},{"attributes":{"name":"August Bartoletti","age":72,"location":"New Carmenside"}},{"attributes":{"name":"Sean Denesik","age":49,"location":"Othaburgh"}},{"attributes":{"name":"Charlotte Mayer","age":21,"location":"Abilene"}},{"attributes":{"name":"Alvera Blick","age":74,"location":"Leifborough"}},{"attributes":{"name":"Sonya Zulauf","age":60,"location":"Great Falls"}},{"attributes":{"name":"Elmer Schuster","age":35,"location":"Fountainebleau"}},{"attributes":{"name":"Frida Shields","age":32,"location":"Maytown"}},{"attributes":{"name":"Dorothy Greenfelder","age":49,"location":"West Cecile"}},{"attributes":{"name":"Margarette Morissette Jr.","age":48,"location":"Bayerfort"}},{"attributes":{"name":"Ron Considine","age":22,"location":"Aimeecester"}},{"attributes":{"name":"Dana Deckow","age":30,"location":"Goyettechester"}},{"attributes":{"name":"Matthew Schuster","age":52,"location":"Sioux Falls"}},{"attributes":{"name":"Kenny Lindgren","age":58,"location":"Parisianland"}},{"attributes":{"name":"Hailey Cassin","age":53,"location":"Dionview"}},{"attributes":{"name":"Beulah Stracke","age":20,"location":"Steuberville"}},{"attributes":{"name":"Bonnie Wisoky","age":80,"location":"Stanberg"}},{"attributes":{"name":"Gabriella Osinski","age":54,"location":"Port Elwin"}},{"attributes":{"name":"Ricardo Dicki","age":34,"location":"Katelynboro"}},{"attributes":{"name":"Alta Medhurst","age":19,"location":"North Keshawn"}},{"attributes":{"name":"Felipe Schuppe","age":52,"location":"Simonischester"}},{"attributes":{"name":"Narciso Bergstrom","age":61,"location":"Salinas"}},{"attributes":{"name":"Elmer Rath","age":77,"location":"North Sydnie"}},{"attributes":{"name":"Scarlett Simonis","age":68,"location":"Lake Mariannamouth"}},{"attributes":{"name":"Muriel Kirlin-Legros","age":80,"location":"West Elibury"}},{"attributes":{"name":"Theodore Steuber","age":37,"location":"Hermanburgh"}},{"attributes":{"name":"Gertrude Howe","age":80,"location":"South Casey"}},{"attributes":{"name":"Ms. Cydney Hodkiewicz","age":74,"location":"North Greenstad"}},{"attributes":{"name":"Calvin Stark Sr.","age":31,"location":"Fort Veronaboro"}},{"attributes":{"name":"Katrina Labadie Sr.","age":68,"location":"South Melvin"}},{"attributes":{"name":"Oral Hammes","age":67,"location":"Kaitlinfort"}},{"attributes":{"name":"Robert Feest","age":29,"location":"New Sylvantown"}},{"attributes":{"name":"Dr. Saul Terry","age":37,"location":"Lake Candida"}},{"attributes":{"name":"Meggie Conn","age":35,"location":"West Gennaroland"}},{"attributes":{"name":"Mr. Andrew Rempel","age":75,"location":"Isaactown"}},{"attributes":{"name":"Miss Tressie Zemlak","age":27,"location":"Schadenberg"}},{"attributes":{"name":"Bernhard Waters","age":67,"location":"Lake Ulicesmouth"}},{"attributes":{"name":"Telly Jacobson","age":49,"location":"Tyreekview"}},{"attributes":{"name":"Emmitt Rosenbaum","age":28,"location":"Fletcherboro"}},{"attributes":{"name":"Miss Santiago Weimann","age":48,"location":"Patrickhaven"}},{"attributes":{"name":"Ms. Tressie Dibbert","age":69,"location":"New Jaymeshire"}},{"attributes":{"name":"Stacy Pfannerstill","age":53,"location":"Johnsonworth"}},{"attributes":{"name":"Jennie Jaskolski","age":77,"location":"Evelineport"}},{"attributes":{"name":"Cecelia Donnelly","age":57,"location":"Abbottshire"}},{"attributes":{"name":"Dr. Floyd Cummings","age":48,"location":"Keenanland"}},{"attributes":{"name":"Savannah Marquardt","age":30,"location":"South Morton"}},{"attributes":{"name":"Jessie Rolfson","age":48,"location":"Farrellton"}},{"attributes":{"name":"Larry Harber","age":76,"location":"Zenaville"}},{"attributes":{"name":"Savannah Goyette","age":76,"location":"Tadboro"}},{"attributes":{"name":"Lori Howe I","age":61,"location":"Goodwintown"}},{"attributes":{"name":"Stephanie Rice-Reinger","age":22,"location":"Milpitas"}},{"attributes":{"name":"Haley Schinner","age":70,"location":"Curtisville"}},{"attributes":{"name":"Gunnar Lowe","age":41,"location":"South Jevon"}},{"attributes":{"name":"Irene Zulauf","age":58,"location":"Port Taureanview"}},{"attributes":{"name":"Cecil Heaney","age":41,"location":"Melyssaburgh"}},{"attributes":{"name":"Joanna Collier","age":32,"location":"Cheyenne"}},{"attributes":{"name":"Whitney Hermann","age":48,"location":"Lake Kristopher"}},{"attributes":{"name":"Olga Spinka","age":59,"location":"West Madisonfield"}},{"attributes":{"name":"Mariano Terry","age":58,"location":"Jabarihaven"}},{"attributes":{"name":"Sheryl Hilll","age":60,"location":"South Aryannastead"}},{"attributes":{"name":"Margarita Daniel","age":37,"location":"Lucytown"}},{"attributes":{"name":"Miss Irving Spinka","age":75,"location":"South Jamesonport"}},{"attributes":{"name":"Sergio Turner","age":57,"location":"Joanyfort"}},{"attributes":{"name":"Michelle Feest","age":46,"location":"Abernathystead"}},{"attributes":{"name":"Sidney Heathcote","age":39,"location":"Port Raeganview"}},{"attributes":{"name":"Sandy Gleason","age":34,"location":"North Kitty"}},{"attributes":{"name":"Bobbie Ortiz","age":73,"location":"West Cyril"}},{"attributes":{"name":"Esther Pfeffer Sr.","age":46,"location":"Lake Waldo"}},{"attributes":{"name":"Erick Batz","age":35,"location":"South Gunner"}},{"attributes":{"name":"Christian Marquardt","age":71,"location":"West Helen"}},{"attributes":{"name":"Gilda Turner","age":62,"location":"South Darwin"}},{"attributes":{"name":"Alanis Walker IV","age":49,"location":"Carmel"}},{"attributes":{"name":"Paul Medhurst","age":70,"location":"Thompsonside"}},{"attributes":{"name":"Maggie Blanda","age":25,"location":"Lake Marisastead"}},{"attributes":{"name":"Brandon Labadie","age":64,"location":"Pine Hills"}},{"attributes":{"name":"Edmund Morar","age":51,"location":"Erdmanchester"}},{"attributes":{"name":"Maryann Fadel MD","age":49,"location":"West Kiley"}},{"attributes":{"name":"Janet Braun","age":78,"location":"Janesville"}},{"attributes":{"name":"Beverly Haley","age":54,"location":"San Luis Obispo"}},{"attributes":{"name":"Preston Emard","age":61,"location":"Port Vicky"}},{"attributes":{"name":"Mr. Russell Christiansen","age":73,"location":"Lake Lorenzo"}},{"attributes":{"name":"Tami Daniel","age":23,"location":"Bountiful"}},{"attributes":{"name":"Robin Howell Jr.","age":54,"location":"Pinellas Park"}},{"attributes":{"name":"Alex Zemlak II","age":36,"location":"West Fritzfort"}},{"attributes":{"name":"Lura Ritchie","age":39,"location":"Lake Vesta"}},{"attributes":{"name":"Adriana Stehr","age":76,"location":"Dayanaberg"}},{"attributes":{"name":"Antonina Russel","age":25,"location":"West Clotilde"}},{"attributes":{"name":"Luz Prosacco","age":78,"location":"Wesley Chapel"}},{"attributes":{"name":"Norbert Breitenberg","age":26,"location":"New Marilou"}},{"attributes":{"name":"Margaret Pfeffer","age":71,"location":"South Holly"}},{"attributes":{"name":"Erik Purdy IV","age":24,"location":"New Haylie"}},{"attributes":{"name":"Mrs. Melanie VonRueden-Paucek","age":21,"location":"Wisozkhaven"}},{"attributes":{"name":"Tyree Schimmel","age":73,"location":"East Minervaberg"}},{"attributes":{"name":"Mrs. Robin Spencer","age":20,"location":"West Cameron"}},{"attributes":{"name":"Myrtle Veum","age":21,"location":"Abbeyfield"}},{"attributes":{"name":"Garrett Keeling","age":23,"location":"Camilafort"}},{"attributes":{"name":"Dolores Barton","age":38,"location":"Port Rosa"}},{"attributes":{"name":"Mandy Windler","age":44,"location":"Shieldston"}},{"attributes":{"name":"Ben Crona","age":64,"location":"Hanford"}},{"attributes":{"name":"Joyce Homenick","age":51,"location":"New Idafield"}},{"attributes":{"name":"Mr. Jeremy Bogisich","age":77,"location":"Herberttown"}},{"attributes":{"name":"Jeremy Walker","age":51,"location":"Julietport"}},{"attributes":{"name":"Iva O'Reilly","age":67,"location":"Madonnafort"}},{"attributes":{"name":"Rodolfo Okuneva","age":19,"location":"West Alexandrefurt"}},{"attributes":{"name":"Alvina Jaskolski","age":26,"location":"Ellicott City"}},{"attributes":{"name":"Shawn Turcotte","age":18,"location":"Judsonland"}},{"attributes":{"name":"Alfredo Lehner","age":20,"location":"Abdullahboro"}},{"attributes":{"name":"Brandon Ortiz","age":57,"location":"Woodbury"}},{"attributes":{"name":"Susan Klein","age":36,"location":"Redmond"}},{"attributes":{"name":"Jenifer Gleason","age":33,"location":"Einarville"}},{"attributes":{"name":"Lorine Weber","age":50,"location":"Mission Viejo"}},{"attributes":{"name":"Joan Oberbrunner DDS","age":37,"location":"Dietrichview"}},{"attributes":{"name":"Rex Rohan","age":52,"location":"Kaylieville"}},{"attributes":{"name":"Keegan Langosh DVM","age":40,"location":"New Austin"}},{"attributes":{"name":"Desiree Hoppe","age":73,"location":"Stamford"}},{"attributes":{"name":"Ms. Bonnie Ernser","age":63,"location":"Okeyshire"}},{"attributes":{"name":"Clark Hartmann V","age":60,"location":"South Hobartcester"}},{"attributes":{"name":"Ms. Marcia VonRueden Sr.","age":46,"location":"New Janaefurt"}},{"attributes":{"name":"Eldred Lubowitz","age":80,"location":"New Maritza"}},{"attributes":{"name":"Ramona Kunde","age":60,"location":"Streichview"}},{"attributes":{"name":"Elisa Streich-Greenfelder","age":63,"location":"Salvadorchester"}},{"attributes":{"name":"Guy Rice","age":23,"location":"South Myles"}},{"attributes":{"name":"Dr. Bryan Funk","age":60,"location":"Yuma"}},{"attributes":{"name":"Neal Stracke III","age":44,"location":"Magdalenafort"}},{"attributes":{"name":"Garrett Feeney-Fadel","age":29,"location":"West Cathryn"}},{"attributes":{"name":"James Runte","age":39,"location":"South Jamaal"}},{"attributes":{"name":"Sunny Batz","age":23,"location":"Hudsonhaven"}},{"attributes":{"name":"Jake Donnelly III","age":28,"location":"Erdmanville"}},{"attributes":{"name":"Kevin Buckridge","age":40,"location":"Austin"}},{"attributes":{"name":"Wilmer Blanda","age":43,"location":"Baltimore"}},{"attributes":{"name":"Charlotte Schuster","age":45,"location":"Carlsbad"}},{"attributes":{"name":"Antonia Hyatt PhD","age":47,"location":"East Gavinberg"}},{"attributes":{"name":"Dr. Kristin Satterfield","age":75,"location":"Franeckifurt"}},{"attributes":{"name":"Jaren Rippin","age":23,"location":"West Hiltonboro"}},{"attributes":{"name":"Neal Casper","age":78,"location":"Fort Lemuelstead"}},{"attributes":{"name":"Javier Schowalter","age":34,"location":"East Sandraland"}},{"attributes":{"name":"Sheila Zieme","age":71,"location":"West Briceport"}},{"attributes":{"name":"Carlos Fay","age":21,"location":"Littelfurt"}},{"attributes":{"name":"Ramona McClure","age":23,"location":"Sacramento"}},{"attributes":{"name":"Cathryn Windler","age":18,"location":"Adamsside"}},{"attributes":{"name":"Gaston Treutel","age":39,"location":"Lake Rod"}},{"attributes":{"name":"Dannie Rohan","age":50,"location":"Rhiannafort"}},{"attributes":{"name":"Lowell Feeney","age":57,"location":"Altamonte Springs"}},{"attributes":{"name":"Gayle McLaughlin MD","age":33,"location":"Oak Park"}},{"attributes":{"name":"Peggy Mayer","age":68,"location":"Port Luz"}},{"attributes":{"name":"Carol Crona","age":55,"location":"Luciusfield"}},{"attributes":{"name":"Larry Carter","age":48,"location":"Kautzerland"}},{"attributes":{"name":"Cornelius Ziemann","age":49,"location":"Nienowhaven"}},{"attributes":{"name":"Philip Homenick MD","age":57,"location":"Macejkovicville"}},{"attributes":{"name":"Aida Roob","age":22,"location":"North Highlands"}},{"attributes":{"name":"Maegan Hirthe","age":70,"location":"Kaylinside"}},{"attributes":{"name":"Cheryl Oberbrunner","age":31,"location":"East Veldachester"}},{"attributes":{"name":"Hugo Zulauf","age":57,"location":"Joannieburgh"}},{"attributes":{"name":"Barbara Macejkovic DVM","age":18,"location":"New Rosettashire"}},{"attributes":{"name":"Cole Beahan","age":20,"location":"Rathton"}},{"attributes":{"name":"Ted Donnelly","age":26,"location":"Labadieshire"}},{"attributes":{"name":"Yasmine Bernhard","age":29,"location":"West Dinofield"}},{"attributes":{"name":"Aglae Barrows","age":41,"location":"Yostbury"}},{"attributes":{"name":"Stacy Schamberger","age":26,"location":"Port Corneliusfurt"}},{"attributes":{"name":"Dr. Craig Baumbach II","age":70,"location":"South Aida"}},{"attributes":{"name":"Miss Clemmie Schaden","age":77,"location":"Carrollmouth"}},{"attributes":{"name":"Rudolph Breitenberg","age":20,"location":"Fort Mabellecester"}},{"attributes":{"name":"Darrel Larkin","age":80,"location":"Port Saige"}},{"attributes":{"name":"Viola Abernathy","age":57,"location":"Welchshire"}},{"attributes":{"name":"Mr. Nicholas Dibbert","age":20,"location":"Cape Coral"}},{"attributes":{"name":"Jacqueline Weimann","age":36,"location":"South Ivystead"}},{"attributes":{"name":"Ayden Mueller","age":70,"location":"O'Connellmouth"}},{"attributes":{"name":"Georgianna Bernier","age":80,"location":"Stanleyville"}},{"attributes":{"name":"Aubrey VonRueden PhD","age":71,"location":"Ernsercester"}},{"attributes":{"name":"Doug Pollich","age":63,"location":"Leraborough"}},{"attributes":{"name":"Kyleigh Grimes","age":48,"location":"Roseville"}},{"attributes":{"name":"Jonathan Reichert","age":64,"location":"Bernardville"}},{"attributes":{"name":"Doyle Oberbrunner","age":27,"location":"New Nicholaus"}},{"attributes":{"name":"Berneice Witting","age":73,"location":"Binsmouth"}},{"attributes":{"name":"Helene Bruen","age":31,"location":"Fort Dominicville"}},{"attributes":{"name":"Anissa Borer","age":59,"location":"Makennamouth"}},{"attributes":{"name":"Thomas Schamberger","age":45,"location":"Brentwood"}},{"attributes":{"name":"Nestor King","age":75,"location":"Port Alexandria"}},{"attributes":{"name":"Mary Bauch","age":34,"location":"East Odessaview"}},{"attributes":{"name":"Isac Gusikowski","age":42,"location":"Krystinaburgh"}},{"attributes":{"name":"Adam Schmeler","age":20,"location":"Weymouth Town"}},{"attributes":{"name":"Flossie O'Conner DDS","age":19,"location":"New Brayanport"}},{"attributes":{"name":"Jeremy Murphy","age":34,"location":"Savannah"}},{"attributes":{"name":"Jaeden Howell","age":42,"location":"South Elfriedastead"}},{"attributes":{"name":"Jon Bosco","age":60,"location":"Hacienda Heights"}},{"attributes":{"name":"Ella Smitham","age":27,"location":"North Tiffany"}},{"attributes":{"name":"Dexter Abbott","age":75,"location":"Abdulburgh"}},{"attributes":{"name":"Greg Smitham","age":32,"location":"Dianaburgh"}},{"attributes":{"name":"Abraham Kulas","age":67,"location":"Murazikchester"}},{"attributes":{"name":"Lynette Grimes","age":51,"location":"Milanport"}},{"attributes":{"name":"Dr. Jon Hagenes","age":52,"location":"New Elliebury"}},{"attributes":{"name":"Isabella Runolfsson","age":29,"location":"West Cielo"}},{"attributes":{"name":"Renee Heaney","age":64,"location":"South Anissa"}},{"attributes":{"name":"Hugo Nader","age":44,"location":"New Shanelfort"}},{"attributes":{"name":"Darrin Feil","age":43,"location":"West Velda"}},{"attributes":{"name":"Candice Rau","age":31,"location":"Goodwinworth"}},{"attributes":{"name":"Santos Green","age":66,"location":"South Alexandrahaven"}},{"attributes":{"name":"Lindsay Schulist","age":69,"location":"Baronhaven"}},{"attributes":{"name":"Mr. Tressie Abshire","age":30,"location":"Lake Hillary"}},{"attributes":{"name":"Evalyn Sanford","age":52,"location":"South Horace"}},{"attributes":{"name":"Braeden Satterfield-Gusikowski","age":62,"location":"Windlerburgh"}},{"attributes":{"name":"Destinee Beier","age":26,"location":"Lemkeshire"}},{"attributes":{"name":"Audrey Medhurst","age":26,"location":"Graysonborough"}},{"attributes":{"name":"Marco Upton","age":35,"location":"Connellyland"}},{"attributes":{"name":"Annamae Mann","age":56,"location":"North Karlie"}},{"attributes":{"name":"Rebekah Torphy","age":71,"location":"Doloresburgh"}},{"attributes":{"name":"Tom Harvey","age":18,"location":"McLaughlinfield"}},{"attributes":{"name":"Erwin Breitenberg","age":54,"location":"North Lelah"}},{"attributes":{"name":"Lucille Zboncak","age":38,"location":"Lake Toni"}},{"attributes":{"name":"Shane Hirthe-White","age":28,"location":"East Orphafurt"}},{"attributes":{"name":"Brown Schimmel Sr.","age":75,"location":"South Janae"}},{"attributes":{"name":"Lawson Funk","age":49,"location":"Fort Mohammed"}},{"attributes":{"name":"Jammie Littel","age":79,"location":"New Ayanaville"}},{"attributes":{"name":"Perry Erdman","age":18,"location":"Aloha"}},{"attributes":{"name":"Waylon Fritsch","age":57,"location":"Great Falls"}},{"attributes":{"name":"Celia Brakus","age":32,"location":"Alvinamouth"}},{"attributes":{"name":"Luke Hahn","age":20,"location":"Lueilwitzburgh"}},{"attributes":{"name":"Douglas Frami","age":25,"location":"Ferrystead"}},{"attributes":{"name":"Angela Denesik","age":64,"location":"San Antonio"}},{"attributes":{"name":"Bryan Wolff","age":41,"location":"East Franciscacester"}},{"attributes":{"name":"Trudie Veum","age":79,"location":"Port Ciara"}},{"attributes":{"name":"Angelica Schroeder","age":51,"location":"Heaneyfort"}},{"attributes":{"name":"Violette Johnson PhD","age":80,"location":"Evertburgh"}},{"attributes":{"name":"Darrel Von Jr.","age":37,"location":"McLean"}},{"attributes":{"name":"Imelda Klocko","age":41,"location":"Turnerboro"}},{"attributes":{"name":"Shad Friesen","age":37,"location":"Port Heathworth"}},{"attributes":{"name":"Julian Mann-Abbott I","age":61,"location":"Eribertoboro"}},{"attributes":{"name":"Jonatan Brakus","age":50,"location":"North Jackie"}},{"attributes":{"name":"Kyla Hickle","age":63,"location":"Kassulkestad"}},{"attributes":{"name":"Ludie Buckridge","age":78,"location":"West Lea"}},{"attributes":{"name":"Carleton Mills","age":42,"location":"West Jessie"}},{"attributes":{"name":"Melvin Boyle","age":55,"location":"North Flossie"}},{"attributes":{"name":"Ruthie Bins","age":78,"location":"South Godfrey"}},{"attributes":{"name":"Jose Kilback-Lubowitz","age":68,"location":"East Nickolas"}},{"attributes":{"name":"Luis Bernier","age":61,"location":"Gleichnershire"}},{"attributes":{"name":"Whitney Johns Sr.","age":23,"location":"Daughertyshire"}},{"attributes":{"name":"Stanley Lowe PhD","age":40,"location":"East Jordistead"}},{"attributes":{"name":"Rosemary D'Amore I","age":68,"location":"South Jennifermouth"}},{"attributes":{"name":"Ms. Joey Durgan MD","age":28,"location":"Reillytown"}},{"attributes":{"name":"Debra Wyman","age":36,"location":"Franeckifurt"}},{"attributes":{"name":"Mozelle Ledner","age":69,"location":"Wolfffield"}},{"attributes":{"name":"Earlene Maggio","age":71,"location":"East Shannonton"}},{"attributes":{"name":"Nora Wilkinson","age":72,"location":"East Jessie"}},{"attributes":{"name":"Gwen Stoltenberg","age":79,"location":"Collierville"}},{"attributes":{"name":"Rebekah Muller","age":48,"location":"Porterville"}},{"attributes":{"name":"Alva VonRueden-Cassin","age":51,"location":"Homenickville"}},{"attributes":{"name":"Franklin Torp","age":61,"location":"Lubowitzborough"}},{"attributes":{"name":"Tami McClure PhD","age":76,"location":"Lake Leonard"}},{"attributes":{"name":"Dr. Morris Skiles","age":63,"location":"Keaganfort"}},{"attributes":{"name":"Keith Swaniawski","age":24,"location":"Fort Jaleel"}},{"attributes":{"name":"Anna McKenzie","age":24,"location":"Port Chandler"}},{"attributes":{"name":"Clayton West","age":59,"location":"Camdenburgh"}},{"attributes":{"name":"Morris Carter-Jacobi","age":31,"location":"Lake Nayelichester"}},{"attributes":{"name":"Erik Feeney","age":48,"location":"Waukesha"}},{"attributes":{"name":"Ms. Retta Brown IV","age":42,"location":"Fort Deon"}},{"attributes":{"name":"Holly Nicolas","age":43,"location":"New Bonitaberg"}},{"attributes":{"name":"Clark Emard","age":57,"location":"Ritchiemouth"}},{"attributes":{"name":"Clemens Ondricka","age":62,"location":"West Sophie"}},{"attributes":{"name":"Bennie Barton","age":80,"location":"Oakland"}},{"attributes":{"name":"Freida O'Keefe","age":44,"location":"Burnsville"}},{"attributes":{"name":"Laurie Labadie","age":49,"location":"Fort Jeramy"}},{"attributes":{"name":"Jennings Langosh","age":46,"location":"North Erinville"}},{"attributes":{"name":"Greg Schultz","age":29,"location":"South Franz"}},{"attributes":{"name":"Tabitha Kiehn MD","age":40,"location":"Fort Adrianachester"}},{"attributes":{"name":"Mr. Omar Nikolaus-Johns","age":55,"location":"East Arielland"}},{"attributes":{"name":"Colleen Rohan","age":48,"location":"South Lucio"}},{"attributes":{"name":"Nelson MacGyver","age":51,"location":"Jarrettport"}},{"attributes":{"name":"Beverly Gislason","age":31,"location":"Schuppeborough"}},{"attributes":{"name":"Lindsay Ratke","age":54,"location":"Fargo"}},{"attributes":{"name":"Joshua Sawayn","age":57,"location":"Kozeyland"}},{"attributes":{"name":"Sonia Macejkovic","age":43,"location":"Lake Winifred"}},{"attributes":{"name":"Kristopher Franecki","age":39,"location":"Kutchshire"}},{"attributes":{"name":"Geneva Zemlak","age":77,"location":"East Blaise"}},{"attributes":{"name":"Wallace Franey","age":26,"location":"Port Hermannmouth"}},{"attributes":{"name":"Heather Runolfsson","age":67,"location":"North Carmelofort"}},{"attributes":{"name":"Allan Steuber","age":30,"location":"Nikkoburgh"}},{"attributes":{"name":"Darryl Veum-Kilback","age":63,"location":"East Georgiana"}},{"attributes":{"name":"Kevin Toy DDS","age":47,"location":"Lake Toni"}},{"attributes":{"name":"Flora Jakubowski I","age":49,"location":"Lansing"}},{"attributes":{"name":"Van Wuckert","age":45,"location":"South Demarco"}},{"attributes":{"name":"Mario Senger","age":79,"location":"Cletaborough"}},{"attributes":{"name":"Orlando McClure Sr.","age":23,"location":"Halvorsonchester"}},{"attributes":{"name":"Sid Gibson","age":73,"location":"Patienceport"}},{"attributes":{"name":"Cheryl Prohaska","age":57,"location":"Plano"}},{"attributes":{"name":"Ms. Spencer Steuber","age":65,"location":"East Alfonsoberg"}},{"attributes":{"name":"Amelia Tromp","age":77,"location":"New Emily"}},{"attributes":{"name":"Miss Alfred Purdy","age":43,"location":"Fort Santiagoton"}},{"attributes":{"name":"Darius Roob","age":18,"location":"Kassulkefurt"}},{"attributes":{"name":"Mattie Feil","age":54,"location":"Grahamcester"}},{"attributes":{"name":"Nichole Glover","age":20,"location":"Bend"}},{"attributes":{"name":"Joan Franey","age":23,"location":"Charlotteberg"}},{"attributes":{"name":"Natalie Carter","age":49,"location":"West Palm Beach"}},{"attributes":{"name":"Mitchell Muller","age":34,"location":"South Lianafield"}},{"attributes":{"name":"Dr. Ashley Lebsack","age":37,"location":"Tinley Park"}},{"attributes":{"name":"Alexane Reinger","age":30,"location":"North Bethesda"}},{"attributes":{"name":"Frederick Thompson","age":40,"location":"Port Davidton"}},{"attributes":{"name":"Claudia Treutel","age":24,"location":"Fort Arvid"}},{"attributes":{"name":"Gayle Pagac","age":67,"location":"Eastvale"}},{"attributes":{"name":"Joe Crooks","age":30,"location":"Shirleystad"}},{"attributes":{"name":"Brandon Haley","age":73,"location":"Joshuahtown"}},{"attributes":{"name":"Meredith Dickinson","age":52,"location":"Lake Oceaneboro"}},{"attributes":{"name":"Philip Kihn","age":43,"location":"North Mable"}},{"attributes":{"name":"Monique Bins","age":76,"location":"South Montechester"}},{"attributes":{"name":"Pauline Runte-Windler","age":76,"location":"Uptonville"}},{"attributes":{"name":"Alfred Hamill","age":79,"location":"Turcotteworth"}},{"attributes":{"name":"Constance Moen","age":42,"location":"South Arvidhaven"}},{"attributes":{"name":"Blanca Hahn","age":51,"location":"Tracy"}},{"attributes":{"name":"Alexander Kutch","age":68,"location":"Albany"}},{"attributes":{"name":"Lena Toy","age":34,"location":"Douglasworth"}},{"attributes":{"name":"Ashlynn Nicolas","age":67,"location":"Demetrisside"}},{"attributes":{"name":"Ronnie Nienow-Grady","age":39,"location":"Littleshire"}},{"attributes":{"name":"Omar Goldner","age":18,"location":"Marysville"}},{"attributes":{"name":"Percy Kassulke IV","age":59,"location":"West Sibylfort"}},{"attributes":{"name":"Jeanne Homenick","age":38,"location":"Fort Berry"}},{"attributes":{"name":"Francis Botsford","age":54,"location":"Wolffurt"}},{"attributes":{"name":"Patti Crooks","age":65,"location":"Kurtisberg"}},{"attributes":{"name":"Shea Mayer","age":48,"location":"Fort Kacey"}},{"attributes":{"name":"Winifred Barton","age":77,"location":"Fort Arthur"}},{"attributes":{"name":"Don Mosciski","age":42,"location":"Gulgowskiside"}},{"attributes":{"name":"Dr. Catherine Gutkowski I","age":57,"location":"Rolfsontown"}},{"attributes":{"name":"Josephine Schmeler","age":32,"location":"South Cristian"}},{"attributes":{"name":"Laurie Schinner","age":41,"location":"Rennerburgh"}},{"attributes":{"name":"Whitney Cummings","age":72,"location":"Port Marian"}},{"attributes":{"name":"Adriana Simonis DDS","age":73,"location":"West Emerald"}},{"attributes":{"name":"Bridgette Ryan DDS","age":69,"location":"Shirleymouth"}},{"attributes":{"name":"Rodney McClure","age":70,"location":"Chico"}},{"attributes":{"name":"Carol Reichert","age":65,"location":"Kayleighland"}},{"attributes":{"name":"Mrs. Eloisa Erdman","age":33,"location":"North Alvinaberg"}},{"attributes":{"name":"Florian Medhurst","age":58,"location":"Port Terrell"}},{"attributes":{"name":"Stella Bechtelar","age":69,"location":"Fort Curt"}},{"attributes":{"name":"Dr. Doug Feeney-Cole","age":38,"location":"Rathside"}},{"attributes":{"name":"Fredrick Reilly DVM","age":36,"location":"Lonnyville"}},{"attributes":{"name":"Kailee Luettgen","age":27,"location":"Kovacekside"}},{"attributes":{"name":"Fern Swift-McDermott","age":41,"location":"McClureview"}},{"attributes":{"name":"Alayna Botsford","age":44,"location":"Glendale"}},{"attributes":{"name":"Yvette Willms","age":28,"location":"Kuvalisfort"}},{"attributes":{"name":"Michael Stoltenberg","age":21,"location":"Veronicatown"}},{"attributes":{"name":"Ora Fisher","age":20,"location":"South Fionaborough"}},{"attributes":{"name":"Rachael McGlynn","age":22,"location":"Freeport"}},{"attributes":{"name":"Melisa Parker","age":78,"location":"Dearborn Heights"}},{"attributes":{"name":"Michael Lind","age":51,"location":"South Marcelina"}},{"attributes":{"name":"Steve Sporer","age":72,"location":"Langborough"}},{"attributes":{"name":"Mr. Georgette Satterfield Sr.","age":77,"location":"Hegmannborough"}},{"attributes":{"name":"Tess Lindgren V","age":71,"location":"Tustin"}},{"attributes":{"name":"Miss Janae Koelpin","age":30,"location":"Lake Beverly"}},{"attributes":{"name":"Miss Angelina Stracke","age":77,"location":"New Lavernafield"}},{"attributes":{"name":"Ignacio Wisoky MD","age":71,"location":"South Adonisberg"}},{"attributes":{"name":"Loraine Braun","age":46,"location":"Hansenstead"}},{"attributes":{"name":"Caitlyn Hirthe","age":62,"location":"Oak Park"}},{"attributes":{"name":"Jerry Rogahn","age":29,"location":"Russelfield"}},{"attributes":{"name":"Missouri Quitzon","age":24,"location":"Pollichborough"}},{"attributes":{"name":"Keenan Carroll","age":66,"location":"North Zion"}},{"attributes":{"name":"Tillman Schmeler PhD","age":53,"location":"South Ronaldo"}},{"attributes":{"name":"Lavern Hahn","age":66,"location":"West Rosalee"}},{"attributes":{"name":"Abbie Klocko","age":60,"location":"Kalamazoo"}},{"attributes":{"name":"Dayna Grimes","age":35,"location":"Abigayleboro"}},{"attributes":{"name":"Louvenia Greenholt III","age":31,"location":"Nelletown"}},{"attributes":{"name":"Joel Waters","age":56,"location":"North Cristal"}},{"attributes":{"name":"Lee Schinner-Hegmann","age":47,"location":"Fort Yesenia"}},{"attributes":{"name":"Sylvia Langosh","age":46,"location":"Clearwater"}},{"attributes":{"name":"Tim Farrell","age":53,"location":"Lake Earl"}},{"attributes":{"name":"Leona Koch","age":51,"location":"East Bryanachester"}},{"attributes":{"name":"Ricky Mante","age":64,"location":"Schmittside"}},{"attributes":{"name":"Ezekiel Welch V","age":41,"location":"Fort Smith"}},{"attributes":{"name":"Ally Schowalter","age":76,"location":"Scottsdale"}},{"attributes":{"name":"Kerry Kunde","age":56,"location":"Rolfsonchester"}},{"attributes":{"name":"Jayda Schaden","age":80,"location":"Passaic"}},{"attributes":{"name":"Anabelle Gottlieb","age":46,"location":"Kuvalisport"}},{"attributes":{"name":"Edith Rosenbaum","age":21,"location":"Lake Rashad"}},{"attributes":{"name":"Hildegard Christiansen","age":50,"location":"Ferryborough"}},{"attributes":{"name":"Cedrick Bechtelar","age":22,"location":"North Fabianborough"}},{"attributes":{"name":"Bill Pfeffer","age":55,"location":"Heidenreichstad"}},{"attributes":{"name":"Vivian Gottlieb DDS","age":54,"location":"Quitzonfort"}},{"attributes":{"name":"Esther Jerde","age":29,"location":"Lake Korbin"}},{"attributes":{"name":"Mrs. Virgil Price","age":49,"location":"Fort Oren"}},{"attributes":{"name":"Eric Smitham II","age":61,"location":"South Jedfort"}},{"attributes":{"name":"Miss Jonathan Harber IV","age":32,"location":"Marjoryton"}},{"attributes":{"name":"Dr. Yazmin Sipes","age":73,"location":"Gretaside"}},{"attributes":{"name":"Marianne Gleason","age":62,"location":"Marleeburgh"}},{"attributes":{"name":"Willie Hoeger","age":53,"location":"Lake Shanny"}},{"attributes":{"name":"Sherri Kerluke","age":44,"location":"Lake Jessy"}},{"attributes":{"name":"Jimmie Weber","age":28,"location":"North Alena"}},{"attributes":{"name":"Wade Schimmel","age":32,"location":"Santa Clara"}},{"attributes":{"name":"Yvonne Brakus","age":59,"location":"Rogahnland"}},{"attributes":{"name":"Lysanne Willms","age":53,"location":"Vacaville"}},{"attributes":{"name":"Myles Fisher","age":54,"location":"Eberthaven"}},{"attributes":{"name":"Dr. Thea Ernser","age":79,"location":"New Omerfield"}},{"attributes":{"name":"Marcus Kunde","age":71,"location":"New Addison"}},{"attributes":{"name":"Jeffery Bailey","age":44,"location":"Cordieshire"}},{"attributes":{"name":"Dr. Myra Kozey IV","age":47,"location":"Tulsa"}},{"attributes":{"name":"Eula MacGyver-Thompson","age":63,"location":"Fort Jackie"}},{"attributes":{"name":"Mitchell Bartell","age":52,"location":"East Jamarcusborough"}},{"attributes":{"name":"Casey Stanton","age":59,"location":"Vivianneton"}},{"attributes":{"name":"Abraham Jaskolski","age":40,"location":"Grapevine"}},{"attributes":{"name":"Peggie Purdy","age":26,"location":"North Ford"}},{"attributes":{"name":"Lindsey Moen","age":72,"location":"St. Peters"}},{"attributes":{"name":"Katrina Cole","age":79,"location":"South Adah"}},{"attributes":{"name":"Bradley Sanford-Reinger III","age":63,"location":"Lake Adriana"}},{"attributes":{"name":"Alice Ledner","age":24,"location":"New Maegantown"}},{"attributes":{"name":"Annie Hansen I","age":38,"location":"Frederick"}},{"attributes":{"name":"William Nicolas","age":22,"location":"Eddiefurt"}},{"attributes":{"name":"Earlene Sanford","age":70,"location":"Lake Twilaborough"}},{"attributes":{"name":"Margaret Bauch","age":70,"location":"Meridian"}},{"attributes":{"name":"Grayson Morissette","age":23,"location":"South Jaydonfield"}},{"attributes":{"name":"Josephine Bosco","age":38,"location":"East Parisburgh"}},{"attributes":{"name":"Lilyan Berge","age":52,"location":"East Titusstead"}},{"attributes":{"name":"Carole Walker","age":80,"location":"South Alvera"}},{"attributes":{"name":"Marvin Jacobi","age":19,"location":"Bethport"}},{"attributes":{"name":"Tommie Johns","age":67,"location":"Chicago"}},{"attributes":{"name":"Janiya Kilback","age":38,"location":"Lake Abbiestead"}},{"attributes":{"name":"Mr. Felipe Franecki","age":32,"location":"East Alvisport"}},{"attributes":{"name":"Blake Schmidt","age":24,"location":"Turlock"}},{"attributes":{"name":"Jeramie Lang I","age":39,"location":"Sawayncester"}},{"attributes":{"name":"Lou Konopelski","age":57,"location":"Caleland"}},{"attributes":{"name":"Brandon Gislason","age":25,"location":"Port Nobleland"}},{"attributes":{"name":"Mia Glover","age":41,"location":"South Norberto"}},{"attributes":{"name":"Rosemary Kemmer","age":56,"location":"Lake Othaview"}},{"attributes":{"name":"Marcella Kohler","age":29,"location":"Jaidafurt"}},{"attributes":{"name":"Roberta Rutherford","age":32,"location":"Ruthside"}},{"attributes":{"name":"Roman Bednar","age":51,"location":"New Sheldon"}},{"attributes":{"name":"Jazlyn Ondricka","age":20,"location":"Goyetteton"}},{"attributes":{"name":"Demond Wiegand","age":22,"location":"Ashlynnland"}},{"attributes":{"name":"Melvin Fadel","age":22,"location":"New Dante"}},{"attributes":{"name":"Mr. Jerald Keeling","age":35,"location":"Newport Beach"}},{"attributes":{"name":"Katlyn Littel","age":46,"location":"New Wilbertfield"}},{"attributes":{"name":"Fanny Fahey","age":60,"location":"Eau Claire"}},{"attributes":{"name":"Estelle Gislason","age":75,"location":"Port Lisa"}},{"attributes":{"name":"Laurianne Bernhard","age":46,"location":"Busterville"}},{"attributes":{"name":"Keira Watsica","age":68,"location":"South Sashaborough"}},{"attributes":{"name":"Camylle Bruen","age":80,"location":"Santa Ana"}},{"attributes":{"name":"Monroe Brakus","age":18,"location":"Lehi"}},{"attributes":{"name":"Mrs. Sandy Buckridge","age":67,"location":"New Emmalee"}},{"attributes":{"name":"Carolyn Breitenberg","age":55,"location":"Norwalk"}},{"attributes":{"name":"Neal Rempel","age":56,"location":"East Mitchell"}},{"attributes":{"name":"Tim Rice Sr.","age":45,"location":"South Nichole"}},{"attributes":{"name":"Christophe Kirlin Jr.","age":80,"location":"Lionelbury"}},{"attributes":{"name":"Makenna Hickle","age":68,"location":"Port Leola"}},{"attributes":{"name":"Lulu Schuster","age":77,"location":"Sabinaburgh"}},{"attributes":{"name":"Ephraim Braun-Beahan","age":31,"location":"Jocelynbury"}},{"attributes":{"name":"Ms. Cora Satterfield","age":49,"location":"Teaganfurt"}},{"attributes":{"name":"Zachary Grady DVM","age":32,"location":"Tampa"}},{"attributes":{"name":"Elmer Volkman","age":44,"location":"Westminster"}},{"attributes":{"name":"Dr. Arnold Ruecker","age":26,"location":"Billings"}},{"attributes":{"name":"Lucious Cummerata DVM","age":21,"location":"Devonhaven"}},{"attributes":{"name":"Kamille Stiedemann","age":71,"location":"East Jacklyn"}},{"attributes":{"name":"Renee Towne","age":32,"location":"Port Anabelland"}},{"attributes":{"name":"Kristin Larkin","age":66,"location":"Pharr"}},{"attributes":{"name":"Samantha Hermiston DVM","age":74,"location":"Strongsville"}},{"attributes":{"name":"Van Fisher","age":22,"location":"Modesto"}},{"attributes":{"name":"Vivian Johnston","age":24,"location":"New Joliebury"}},{"attributes":{"name":"Travis Bernier","age":24,"location":"South Myrnaboro"}},{"attributes":{"name":"Electa Crona","age":46,"location":"Fort Ambrose"}},{"attributes":{"name":"Annabel Koss","age":70,"location":"South Deven"}},{"attributes":{"name":"Verna Ankunding","age":36,"location":"West Angustown"}},{"attributes":{"name":"Mr. Haley Barrows","age":73,"location":"Schusterstad"}},{"attributes":{"name":"Idell Kreiger","age":18,"location":"O'Keefeville"}},{"attributes":{"name":"Shawna Heller","age":20,"location":"Fort Verona"}},{"attributes":{"name":"Cedric O'Connell","age":61,"location":"Sawaynmouth"}},{"attributes":{"name":"Merle Glover","age":30,"location":"Independence"}},{"attributes":{"name":"Dan Heller","age":44,"location":"Johnson City"}},{"attributes":{"name":"Neal Hyatt","age":56,"location":"Camarillo"}},{"attributes":{"name":"Jon Moen-Simonis","age":33,"location":"Walkerhaven"}},{"attributes":{"name":"Kendra Dickinson","age":65,"location":"Smithamshire"}},{"attributes":{"name":"Manley Goldner-Glover","age":76,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Preston Pagac","age":59,"location":"Vidastead"}},{"attributes":{"name":"Augustus O'Reilly","age":39,"location":"Moreno Valley"}},{"attributes":{"name":"Dr. Belinda Dach","age":36,"location":"Harveymouth"}},{"attributes":{"name":"Felix Hamill","age":29,"location":"Victoria"}},{"attributes":{"name":"Brigitte Denesik","age":69,"location":"North Robbie"}},{"attributes":{"name":"Tamia Champlin","age":38,"location":"New Adriannaport"}},{"attributes":{"name":"Mrs. Mattie Heaney V","age":57,"location":"North Lyricbury"}},{"attributes":{"name":"Carol Douglas","age":57,"location":"Kiraport"}},{"attributes":{"name":"Daija Williamson","age":36,"location":"North Dominicton"}},{"attributes":{"name":"Alma Schinner","age":80,"location":"Robertsberg"}},{"attributes":{"name":"Daryl Rogahn","age":47,"location":"East Angelinestad"}},{"attributes":{"name":"Karen Beier IV","age":64,"location":"South Erictown"}},{"attributes":{"name":"Felipe King","age":77,"location":"Port Raymundo"}},{"attributes":{"name":"Angelica Renner","age":25,"location":"Kaitlynchester"}},{"attributes":{"name":"Rosanna Marks","age":78,"location":"Vicentafort"}},{"attributes":{"name":"Irving Greenholt DDS","age":68,"location":"Antonettachester"}},{"attributes":{"name":"Osbaldo Mills","age":53,"location":"Dannieburgh"}},{"attributes":{"name":"Mr. Raul Weber IV","age":30,"location":"New Quintonboro"}},{"attributes":{"name":"Sydni Ferry Jr.","age":59,"location":"Hoppeport"}},{"attributes":{"name":"David Jast","age":76,"location":"Dayton"}},{"attributes":{"name":"Dr. Teresa Kirlin","age":45,"location":"Reichelfurt"}},{"attributes":{"name":"Nancy Beahan","age":58,"location":"Carleestad"}},{"attributes":{"name":"Isobel Effertz","age":51,"location":"Theaboro"}},{"attributes":{"name":"Curtis Lemke IV","age":46,"location":"Wallacefield"}},{"attributes":{"name":"Roman O'Reilly","age":58,"location":"Casperburgh"}},{"attributes":{"name":"Marilou Shanahan","age":75,"location":"New Mekhiberg"}},{"attributes":{"name":"Priscilla Kunde","age":32,"location":"Fontana"}},{"attributes":{"name":"Ian Ziemann","age":27,"location":"West Luisa"}},{"attributes":{"name":"Ms. Maybell Sawayn","age":67,"location":"Suzannestead"}},{"attributes":{"name":"Sidney Kozey","age":52,"location":"Lakinburgh"}},{"attributes":{"name":"Ryan Nienow","age":42,"location":"Alafaya"}},{"attributes":{"name":"Kaden Cummings","age":39,"location":"Estefaniaport"}},{"attributes":{"name":"Jayne Kuhlman","age":39,"location":"Keltonboro"}},{"attributes":{"name":"Guadalupe McCullough","age":41,"location":"Lake Rowan"}},{"attributes":{"name":"Mathew Casper","age":24,"location":"New Bethel"}},{"attributes":{"name":"Mr. Walton Stark","age":67,"location":"North Birdieshire"}},{"attributes":{"name":"Dr. Terri Strosin","age":51,"location":"Tacoma"}},{"attributes":{"name":"Iris Heaney","age":65,"location":"Ardithfield"}},{"attributes":{"name":"Mr. Matthew O'Conner","age":56,"location":"Celestinoborough"}},{"attributes":{"name":"Guy Abshire","age":48,"location":"West Cesar"}},{"attributes":{"name":"Dr. Jessica Kling","age":35,"location":"Fort Sheridanton"}},{"attributes":{"name":"Nedra Flatley","age":64,"location":"Lehnerland"}},{"attributes":{"name":"Brooklyn Leuschke","age":35,"location":"Fort Richmondland"}},{"attributes":{"name":"Mr. Eriberto Metz","age":36,"location":"New Ulices"}},{"attributes":{"name":"Adam Hickle","age":68,"location":"Riverton"}},{"attributes":{"name":"Olivia Zulauf","age":69,"location":"West Gabriellaworth"}},{"attributes":{"name":"Terri Fahey","age":64,"location":"Ulicesberg"}},{"attributes":{"name":"Freeda Collier","age":76,"location":"North Gillianland"}},{"attributes":{"name":"Jaylin Lind","age":36,"location":"South Leopoldoshire"}},{"attributes":{"name":"Eloise West Jr.","age":56,"location":"Grimesworth"}},{"attributes":{"name":"Karen Walsh","age":43,"location":"Bodefort"}},{"attributes":{"name":"Vernon Powlowski MD","age":45,"location":"Lake Violetteport"}},{"attributes":{"name":"Myrtle Torphy IV","age":25,"location":"Connmouth"}},{"attributes":{"name":"Dr. Emilie Schmidt III","age":23,"location":"New Larontown"}},{"attributes":{"name":"Eloise Crooks","age":27,"location":"Fort Drewcester"}},{"attributes":{"name":"Miss Tina Bernhard","age":60,"location":"Bonita Springs"}},{"attributes":{"name":"Gilbert Lockman","age":50,"location":"Lehnerville"}},{"attributes":{"name":"Maegan Schaden","age":54,"location":"East Colton"}},{"attributes":{"name":"Enrique Beatty","age":66,"location":"North Minastead"}},{"attributes":{"name":"Roberto Monahan","age":30,"location":"Fadelland"}},{"attributes":{"name":"Lester Kutch","age":76,"location":"Lexusboro"}},{"attributes":{"name":"Kelly Mitchell","age":63,"location":"South Rickieburgh"}},{"attributes":{"name":"Violet Bernier","age":33,"location":"Rickberg"}},{"attributes":{"name":"Ted Kuhic-McDermott","age":38,"location":"Fort Hope"}},{"attributes":{"name":"Lawrence Bartell","age":76,"location":"Florence-Graham"}},{"attributes":{"name":"Marion Larson","age":21,"location":"West Westleyworth"}},{"attributes":{"name":"Irvin Howell","age":51,"location":"Port Mateobury"}},{"attributes":{"name":"Doyle Schinner","age":53,"location":"West Darron"}},{"attributes":{"name":"Norman Altenwerth","age":25,"location":"West Ned"}},{"attributes":{"name":"Leo Howell","age":60,"location":"Blickchester"}},{"attributes":{"name":"Clark Littel","age":42,"location":"Manncester"}},{"attributes":{"name":"Jakayla Feest","age":46,"location":"Fort Santa"}},{"attributes":{"name":"Roderick Macejkovic","age":28,"location":"New Axelcester"}},{"attributes":{"name":"Jason Grant PhD","age":24,"location":"Fort Vernview"}},{"attributes":{"name":"Eldon Schimmel","age":35,"location":"Greentown"}},{"attributes":{"name":"Rafael Hermann","age":47,"location":"Lake Joy"}},{"attributes":{"name":"Coty Hintz","age":43,"location":"Fort Burnicechester"}},{"attributes":{"name":"Fannie Kuphal","age":54,"location":"Sporerside"}},{"attributes":{"name":"Virgil Rath","age":33,"location":"Thielchester"}},{"attributes":{"name":"Frederick Armstrong","age":66,"location":"North Reece"}},{"attributes":{"name":"Mindy Stoltenberg","age":47,"location":"Minnetonka"}},{"attributes":{"name":"George Hickle","age":80,"location":"West Ferne"}},{"attributes":{"name":"Parker Stokes I","age":46,"location":"South Mackenzie"}},{"attributes":{"name":"Ms. Geovanni Hermann","age":70,"location":"Deannachester"}},{"attributes":{"name":"Dave Funk V","age":36,"location":"Lake Melisa"}},{"attributes":{"name":"Leila Wehner","age":19,"location":"East Francisco"}},{"attributes":{"name":"Shane Grimes","age":47,"location":"North Aleen"}},{"attributes":{"name":"Alyssa Goodwin","age":29,"location":"Lake Bradytown"}},{"attributes":{"name":"Ignacio Hammes","age":78,"location":"Kiarachester"}},{"attributes":{"name":"Dr. Nona Hilpert","age":52,"location":"Boehmshire"}},{"attributes":{"name":"Chasity Cartwright","age":49,"location":"Mayaguez"}},{"attributes":{"name":"Dr. Lynne Wyman","age":67,"location":"New Isaistead"}},{"attributes":{"name":"Angel Oberbrunner DDS","age":47,"location":"North Carmelworth"}},{"attributes":{"name":"Meaghan White","age":46,"location":"Miami Beach"}},{"attributes":{"name":"Norma Volkman","age":57,"location":"Mayertport"}},{"attributes":{"name":"Oswaldo Beatty","age":27,"location":"Kundefort"}},{"attributes":{"name":"Ms. Sonya Waelchi","age":62,"location":"Ann Arbor"}},{"attributes":{"name":"Bert Stehr","age":79,"location":"South Esperanzamouth"}},{"attributes":{"name":"Dr. Abbey Barton","age":46,"location":"Altadena"}},{"attributes":{"name":"Vinnie Gibson","age":79,"location":"Garettbury"}},{"attributes":{"name":"Marquise MacGyver","age":33,"location":"Hattiesburg"}},{"attributes":{"name":"Clint O'Keefe PhD","age":62,"location":"South Tyrel"}},{"attributes":{"name":"Demetrius Feeney","age":80,"location":"Madison"}},{"attributes":{"name":"Randall Feest","age":57,"location":"Petaluma"}},{"attributes":{"name":"Kristofer Hodkiewicz","age":67,"location":"West Leolaview"}},{"attributes":{"name":"Jo Reilly","age":29,"location":"Rippinburgh"}},{"attributes":{"name":"Daryl Feest","age":71,"location":"Dundalk"}},{"attributes":{"name":"Bryan Flatley","age":76,"location":"West Murl"}},{"attributes":{"name":"Hollis Rice","age":36,"location":"South Marilou"}},{"attributes":{"name":"Laurine Watsica V","age":22,"location":"Christinamouth"}},{"attributes":{"name":"Arlo Dietrich-Okuneva I","age":76,"location":"Fort Walter"}},{"attributes":{"name":"Clement Boehm","age":57,"location":"Paulborough"}},{"attributes":{"name":"Dr. Arnold Torphy","age":18,"location":"Jarrettborough"}},{"attributes":{"name":"Maya McDermott","age":25,"location":"Powlowskifort"}},{"attributes":{"name":"Brent Herman","age":36,"location":"South Vadaborough"}},{"attributes":{"name":"Loma Zboncak","age":50,"location":"Abbottcester"}},{"attributes":{"name":"Elvira Toy-Emard","age":40,"location":"Sandraworth"}},{"attributes":{"name":"Bryce Mertz","age":71,"location":"North Henry"}},{"attributes":{"name":"Alexis Kozey","age":39,"location":"Justinechester"}},{"attributes":{"name":"Donald Olson","age":29,"location":"West Amparomouth"}},{"attributes":{"name":"Salvador Cassin","age":27,"location":"Conroyview"}},{"attributes":{"name":"Dr. Chester Koepp","age":47,"location":"Lake Deshawn"}},{"attributes":{"name":"Bill Marks","age":18,"location":"South Cody"}},{"attributes":{"name":"Russel Pfeffer","age":80,"location":"West Brando"}},{"attributes":{"name":"Elsa Will DDS","age":42,"location":"Sunrise Manor"}},{"attributes":{"name":"Collin Volkman","age":36,"location":"Alanisside"}},{"attributes":{"name":"Winifred Terry","age":59,"location":"New Dessie"}},{"attributes":{"name":"Dwight Kshlerin","age":59,"location":"North Trevaboro"}},{"attributes":{"name":"Dr. Daryl Koch","age":70,"location":"South Peggie"}},{"attributes":{"name":"Domingo Davis Sr.","age":68,"location":"Christopherview"}},{"attributes":{"name":"Dora Breitenberg Jr.","age":59,"location":"Victoria"}},{"attributes":{"name":"Benton Reynolds","age":37,"location":"North Betteside"}},{"attributes":{"name":"Odell Renner","age":46,"location":"Fort Wanda"}},{"attributes":{"name":"Ismael Rosenbaum","age":50,"location":"Baileyfort"}},{"attributes":{"name":"Beth Barton V","age":40,"location":"Murazikfurt"}},{"attributes":{"name":"Elena Olson","age":46,"location":"East Vernon"}},{"attributes":{"name":"Ronnie Rutherford","age":26,"location":"Tigard"}},{"attributes":{"name":"Marc Harber","age":66,"location":"Mesa"}},{"attributes":{"name":"Damon Jerde","age":71,"location":"South Newell"}},{"attributes":{"name":"Catherine Runte","age":71,"location":"East Jameson"}},{"attributes":{"name":"Eugene Herzog","age":38,"location":"West Palm Beach"}},{"attributes":{"name":"Ben Adams","age":66,"location":"West Vernieworth"}},{"attributes":{"name":"Keely Walsh","age":66,"location":"South Jedidiah"}},{"attributes":{"name":"Carla Doyle","age":34,"location":"Johnborough"}},{"attributes":{"name":"Paris Cruickshank","age":45,"location":"North Ray"}},{"attributes":{"name":"Ollie Crist","age":34,"location":"Port Geoffrey"}},{"attributes":{"name":"Ashley Mayert","age":70,"location":"Laguna Niguel"}},{"attributes":{"name":"Monique Fadel","age":77,"location":"Lake Rhiannon"}},{"attributes":{"name":"Bernadette Beer-Kessler","age":67,"location":"South Elinorborough"}},{"attributes":{"name":"Perry Turcotte","age":39,"location":"Wainoside"}},{"attributes":{"name":"Dr. Rene Paucek","age":78,"location":"South Paxton"}},{"attributes":{"name":"Gregorio Bartell","age":63,"location":"South Dahlia"}},{"attributes":{"name":"Mr. Neal Bauch","age":64,"location":"Rennerfort"}},{"attributes":{"name":"Devin Wisozk","age":25,"location":"Lake Cesar"}},{"attributes":{"name":"Vincenzo Williamson","age":23,"location":"Maxineworth"}},{"attributes":{"name":"Judith Witting-Farrell","age":75,"location":"Wittingside"}},{"attributes":{"name":"Amalia Mills DVM","age":21,"location":"South Shanefield"}},{"attributes":{"name":"Deshaun Fadel","age":76,"location":"Fort Golda"}},{"attributes":{"name":"Jo Koss","age":71,"location":"Orlando"}},{"attributes":{"name":"Annie Volkman","age":48,"location":"Starkville"}},{"attributes":{"name":"Elaine McGlynn","age":43,"location":"Fort Kristopherhaven"}},{"attributes":{"name":"Haskell Ruecker","age":80,"location":"Considineborough"}},{"attributes":{"name":"Peggy Welch","age":50,"location":"East Roslynworth"}},{"attributes":{"name":"Lizeth Ferry-Little","age":52,"location":"South Linnie"}},{"attributes":{"name":"Mekhi Kautzer","age":47,"location":"Lake Alysabury"}},{"attributes":{"name":"Vera Luettgen-Fisher DVM","age":71,"location":"Araceliland"}},{"attributes":{"name":"Mrs. Houston Nolan","age":32,"location":"Lake Priscilla"}},{"attributes":{"name":"May Maggio","age":66,"location":"Elgin"}},{"attributes":{"name":"Russell Gusikowski","age":22,"location":"Audiechester"}},{"attributes":{"name":"Selmer Turcotte","age":25,"location":"Laurentown"}},{"attributes":{"name":"Spencer McKenzie DDS","age":45,"location":"Lydiaberg"}},{"attributes":{"name":"Patty Christiansen","age":60,"location":"Pfefferborough"}},{"attributes":{"name":"Joel Wuckert","age":77,"location":"Elodyborough"}},{"attributes":{"name":"Idella Kautzer","age":18,"location":"Sierra Vista"}},{"attributes":{"name":"Ramiro Howe","age":24,"location":"Winston-Salem"}},{"attributes":{"name":"Jesse Greenholt","age":21,"location":"Jackson"}},{"attributes":{"name":"Dr. Effie Ziemann","age":61,"location":"East Murray"}},{"attributes":{"name":"Travis Trantow","age":36,"location":"West Wandaworth"}},{"attributes":{"name":"Ray Abernathy","age":55,"location":"East Dorian"}},{"attributes":{"name":"Dr. Norman Hermann","age":73,"location":"Port Joannie"}},{"attributes":{"name":"Eden Bogan","age":64,"location":"St. Petersburg"}},{"attributes":{"name":"Daren Torphy","age":80,"location":"Rosemead"}},{"attributes":{"name":"Zane Herman","age":39,"location":"Titusville"}},{"attributes":{"name":"Tabitha McClure","age":66,"location":"Lake Guadalupe"}},{"attributes":{"name":"Brooke Lesch","age":25,"location":"Metzville"}},{"attributes":{"name":"Agustin Zieme","age":47,"location":"Stammhaven"}},{"attributes":{"name":"Marcia West","age":41,"location":"Bryan"}},{"attributes":{"name":"Gerhard Bernhard","age":32,"location":"Farrellport"}},{"attributes":{"name":"Missouri Marquardt","age":73,"location":"Vallejo"}},{"attributes":{"name":"Percy Thiel IV","age":59,"location":"New Jaquelineworth"}},{"attributes":{"name":"Anais Predovic","age":32,"location":"Caguas"}},{"attributes":{"name":"Ubaldo Wolf","age":45,"location":"Janesville"}},{"attributes":{"name":"Rita Herzog","age":74,"location":"Port Jacintobury"}},{"attributes":{"name":"Miss Olive Kulas","age":55,"location":"Baileyview"}},{"attributes":{"name":"Estelle Ebert","age":30,"location":"West Lennyville"}},{"attributes":{"name":"Ellen Lindgren","age":38,"location":"Lompoc"}},{"attributes":{"name":"Victoria Funk-Cummings","age":48,"location":"Juniusburgh"}},{"attributes":{"name":"Torey Purdy","age":36,"location":"Knoxville"}},{"attributes":{"name":"Benny Johnston","age":55,"location":"East Osvaldotown"}},{"attributes":{"name":"Cedrick Mayer","age":57,"location":"Caliland"}},{"attributes":{"name":"Salvador Beatty","age":36,"location":"Ralphton"}},{"attributes":{"name":"Constance Kris","age":50,"location":"West Dimitri"}},{"attributes":{"name":"Curtis Corwin","age":45,"location":"South Ernestina"}},{"attributes":{"name":"Jay Auer","age":44,"location":"West Shermanland"}},{"attributes":{"name":"Rico Block","age":26,"location":"West Richmondburgh"}},{"attributes":{"name":"Mrs. Avery Grimes","age":26,"location":"Fort Pierce"}},{"attributes":{"name":"Johann Carroll","age":71,"location":"Fort Marcview"}},{"attributes":{"name":"Darrel Howe III","age":51,"location":"Lake Keithport"}},{"attributes":{"name":"Dr. Magdalen Mann","age":80,"location":"West Carterborough"}},{"attributes":{"name":"Zena Satterfield","age":19,"location":"Swiftberg"}},{"attributes":{"name":"Susie Kilback V","age":76,"location":"La Mesa"}},{"attributes":{"name":"Wilson Sawayn","age":37,"location":"New Dejaville"}},{"attributes":{"name":"Kay Blanda","age":67,"location":"Weldonland"}},{"attributes":{"name":"Johnnie Hane","age":57,"location":"New Modestobury"}},{"attributes":{"name":"Bernice Cummerata","age":34,"location":"Fort Zachariah"}},{"attributes":{"name":"Kate Labadie","age":38,"location":"Sioux City"}},{"attributes":{"name":"Stanley McLaughlin DVM","age":63,"location":"South Letitia"}},{"attributes":{"name":"Freddie Beatty Jr.","age":54,"location":"Irondequoit"}},{"attributes":{"name":"Andrew Pollich","age":52,"location":"Camrenview"}},{"attributes":{"name":"Kellie Corkery","age":41,"location":"Hemet"}},{"attributes":{"name":"Kenyon Hermiston","age":39,"location":"New Sophiefield"}},{"attributes":{"name":"Izaiah Rolfson","age":33,"location":"South Augustinefield"}},{"attributes":{"name":"Ada Kunde","age":65,"location":"West Kiraport"}},{"attributes":{"name":"Miss Eunice Hansen-DuBuque","age":52,"location":"Lancetown"}},{"attributes":{"name":"Edward Runolfsson","age":65,"location":"Braunboro"}},{"attributes":{"name":"Dana Rogahn","age":66,"location":"Abernathybury"}},{"attributes":{"name":"Dr. Edna Kuhlman","age":73,"location":"Solonton"}},{"attributes":{"name":"Chris Schinner","age":80,"location":"Handville"}},{"attributes":{"name":"Kathleen Okuneva","age":25,"location":"Eden Prairie"}},{"attributes":{"name":"Olaf Wisozk-Volkman","age":28,"location":"Agustinaberg"}},{"attributes":{"name":"Ms. Judy Hills","age":46,"location":"North Margarett"}},{"attributes":{"name":"Sheldon Considine","age":50,"location":"South Owenstad"}},{"attributes":{"name":"David Hermann IV","age":60,"location":"San Diego"}},{"attributes":{"name":"Nelda Hane","age":33,"location":"Lake Shanie"}},{"attributes":{"name":"Lucy Zieme","age":57,"location":"Bayamon"}},{"attributes":{"name":"Florida Haag","age":73,"location":"New Elenachester"}},{"attributes":{"name":"Alice Dickinson","age":71,"location":"Hillsboro"}},{"attributes":{"name":"Adam Carter","age":40,"location":"North Rashad"}},{"attributes":{"name":"Ella Runolfsson DVM","age":44,"location":"Euless"}},{"attributes":{"name":"Ms. Chauncey Walsh","age":71,"location":"Meriden"}},{"attributes":{"name":"Martine Lockman","age":80,"location":"North Norwood"}},{"attributes":{"name":"Beulah Welch","age":31,"location":"Findlay"}},{"attributes":{"name":"Wilma Predovic","age":22,"location":"Murrieta"}},{"attributes":{"name":"Preston Keeling","age":79,"location":"Kendall"}},{"attributes":{"name":"Alberto Wyman PhD","age":24,"location":"Niagara Falls"}},{"attributes":{"name":"Russell Von Jr.","age":74,"location":"Arlington Heights"}},{"attributes":{"name":"Grace Herzog DVM","age":37,"location":"Keanustead"}},{"attributes":{"name":"Annette Turcotte","age":22,"location":"Blandaton"}},{"attributes":{"name":"Allen Kertzmann","age":64,"location":"South Pearlie"}},{"attributes":{"name":"Miss Jasper Lehner","age":28,"location":"West Valerie"}},{"attributes":{"name":"Stella Gibson","age":55,"location":"South Cloyd"}},{"attributes":{"name":"Salvatore Kihn","age":25,"location":"Port Dorcaschester"}},{"attributes":{"name":"Yadira Lakin","age":74,"location":"Lake Mackenziebury"}},{"attributes":{"name":"Ramona Maggio","age":34,"location":"Stanfurt"}},{"attributes":{"name":"Maxie Walsh","age":52,"location":"Emieburgh"}},{"attributes":{"name":"Edyth Waelchi","age":24,"location":"Gerholdstad"}},{"attributes":{"name":"Bruce Boyle","age":80,"location":"Salvadorstad"}},{"attributes":{"name":"Dwight Thompson","age":49,"location":"South Loganfort"}},{"attributes":{"name":"Juanita Hermiston-Keebler","age":23,"location":"Fritschcester"}},{"attributes":{"name":"Amiya Frami","age":68,"location":"Ettieworth"}},{"attributes":{"name":"Carli Conn","age":34,"location":"Fort Nolatown"}},{"attributes":{"name":"Grayce Labadie","age":55,"location":"Faybury"}},{"attributes":{"name":"Jaeden DuBuque","age":29,"location":"Stantonfort"}},{"attributes":{"name":"Olga Erdman","age":80,"location":"Clydeshire"}},{"attributes":{"name":"Miss Pascale Schuster","age":60,"location":"Glendale"}},{"attributes":{"name":"Laurie Satterfield","age":26,"location":"New Edgarbury"}},{"attributes":{"name":"Dr. Roy Streich","age":19,"location":"Fort Leliaview"}},{"attributes":{"name":"Titus Rowe","age":47,"location":"San Jacinto"}},{"attributes":{"name":"Alvin McClure","age":77,"location":"Grimesville"}},{"attributes":{"name":"Mario Breitenberg","age":41,"location":"Lake Lonzo"}},{"attributes":{"name":"Jerrold Pacocha","age":80,"location":"Tadworth"}},{"attributes":{"name":"Kim Schamberger","age":47,"location":"Wyoming"}},{"attributes":{"name":"Cade Gottlieb MD","age":43,"location":"East Marina"}},{"attributes":{"name":"Roberto Wuckert","age":31,"location":"Handworth"}},{"attributes":{"name":"Dora Brekke II","age":36,"location":"East Heavenbury"}},{"attributes":{"name":"Eunice Kessler","age":37,"location":"Elizafurt"}},{"attributes":{"name":"Clayton King","age":48,"location":"Allentown"}},{"attributes":{"name":"Carey Murray","age":68,"location":"New Nakiaburgh"}},{"attributes":{"name":"Sarah Donnelly","age":62,"location":"Hendersonville"}},{"attributes":{"name":"Miss Stewart Daniel","age":55,"location":"North Alec"}},{"attributes":{"name":"Durward Weissnat","age":60,"location":"Chandler"}},{"attributes":{"name":"Johan Luettgen Jr.","age":65,"location":"West Asia"}},{"attributes":{"name":"Ayla Hintz","age":66,"location":"Smithstead"}},{"attributes":{"name":"Marion Witting PhD","age":40,"location":"Port Monte"}},{"attributes":{"name":"Mr. Roy King","age":47,"location":"Alizaport"}},{"attributes":{"name":"Salvador Torp","age":61,"location":"East Noemytown"}},{"attributes":{"name":"Sylvester Mann","age":41,"location":"New Kathryncester"}},{"attributes":{"name":"Dean Stamm","age":57,"location":"East Laneyport"}},{"attributes":{"name":"Darrick Paucek","age":18,"location":"Mrazton"}},{"attributes":{"name":"Dan Mertz DDS","age":37,"location":"Port Roscoeberg"}},{"attributes":{"name":"Missouri Ortiz","age":34,"location":"New Quincy"}},{"attributes":{"name":"Dr. Silvia Schmeler","age":73,"location":"Alvisside"}},{"attributes":{"name":"Margarita Hermann","age":52,"location":"Stokesmouth"}},{"attributes":{"name":"Steven Nader DDS","age":58,"location":"Waelchifield"}},{"attributes":{"name":"Caitlyn Gutkowski","age":59,"location":"North Gracielaborough"}},{"attributes":{"name":"Melany Daugherty","age":59,"location":"Craigtown"}},{"attributes":{"name":"Mrs. Pearl Jerde","age":63,"location":"Gaithersburg"}},{"attributes":{"name":"Jennifer Schulist","age":52,"location":"Daishaland"}},{"attributes":{"name":"Dr. Frank Quigley","age":80,"location":"West Dulcebury"}},{"attributes":{"name":"Eleanor Hudson","age":50,"location":"Port Janyville"}},{"attributes":{"name":"Mayra Haag","age":58,"location":"Midwest City"}},{"attributes":{"name":"Clara Cronin","age":62,"location":"Lake Kristian"}},{"attributes":{"name":"Mathias Schneider","age":67,"location":"Hoegerbury"}},{"attributes":{"name":"Rolando Murray","age":50,"location":"Murazikburgh"}},{"attributes":{"name":"Shayne Hagenes","age":77,"location":"East Cheyenne"}},{"attributes":{"name":"Glenna McGlynn","age":22,"location":"Sugar Land"}},{"attributes":{"name":"Edwin Davis","age":34,"location":"Rapid City"}},{"attributes":{"name":"Sadie Osinski","age":48,"location":"Watersville"}},{"attributes":{"name":"Irving Smith","age":44,"location":"Sammyfort"}},{"attributes":{"name":"Ms. Laurie Gorczany","age":19,"location":"West Johannaberg"}},{"attributes":{"name":"Alvin Welch","age":68,"location":"West Eribertoworth"}},{"attributes":{"name":"Gilbert Ferry","age":38,"location":"North Kathrynechester"}},{"attributes":{"name":"Carter Spencer","age":45,"location":"Jackson"}},{"attributes":{"name":"Adriana Hand","age":52,"location":"Onashire"}},{"attributes":{"name":"Brant Will","age":27,"location":"Diamondport"}},{"attributes":{"name":"Abdullah Boyer","age":77,"location":"Riverview"}},{"attributes":{"name":"Mr. Andre Halvorson","age":32,"location":"Torphyborough"}},{"attributes":{"name":"Richard Hayes","age":23,"location":"West Allis"}},{"attributes":{"name":"Marsha Fritsch","age":74,"location":"Simonisport"}},{"attributes":{"name":"Garnett Zulauf DDS","age":65,"location":"Stehrmouth"}},{"attributes":{"name":"Tevin Sawayn","age":77,"location":"Marksfort"}},{"attributes":{"name":"Miss Stephanie Casper","age":18,"location":"South Noemie"}},{"attributes":{"name":"Sophie Rowe","age":59,"location":"West Hermannhaven"}},{"attributes":{"name":"Robert Watsica","age":48,"location":"New Jessview"}},{"attributes":{"name":"Priscilla Marquardt","age":27,"location":"Ellicott City"}},{"attributes":{"name":"Louisa Grimes","age":55,"location":"South Rodrigoborough"}},{"attributes":{"name":"Lynn Daniel","age":44,"location":"Fort Addie"}},{"attributes":{"name":"Diamond Sipes","age":30,"location":"East Dockhaven"}},{"attributes":{"name":"Shaun O'Kon","age":21,"location":"Konopelskistead"}},{"attributes":{"name":"Natasha Bauch","age":53,"location":"Mayertchester"}},{"attributes":{"name":"Kelly Medhurst","age":57,"location":"McDermottberg"}},{"attributes":{"name":"Santiago Predovic","age":46,"location":"Port Eileenfort"}},{"attributes":{"name":"Nicklaus Metz","age":29,"location":"East Traceville"}},{"attributes":{"name":"Wesley Jenkins","age":69,"location":"Port Madonna"}},{"attributes":{"name":"Patsy Towne","age":56,"location":"Oberbrunnerborough"}},{"attributes":{"name":"Johnathon Mann PhD","age":32,"location":"Fort Daryl"}},{"attributes":{"name":"Dr. Amaya Kreiger","age":75,"location":"New Joannieton"}},{"attributes":{"name":"Caroline Monahan","age":52,"location":"East Delilah"}},{"attributes":{"name":"Colten Reynolds","age":78,"location":"North Enaville"}},{"attributes":{"name":"Martina Buckridge IV","age":76,"location":"Zemlakside"}},{"attributes":{"name":"Janiya Flatley","age":25,"location":"New Velmastead"}},{"attributes":{"name":"Daisy Stanton","age":52,"location":"Beerbury"}},{"attributes":{"name":"Amir Parisian","age":69,"location":"East Earleneshire"}},{"attributes":{"name":"Ignatius Stehr","age":80,"location":"Westland"}},{"attributes":{"name":"Tyree Sawayn","age":64,"location":"Rauhaven"}},{"attributes":{"name":"Alexis Nolan","age":30,"location":"West Michelle"}},{"attributes":{"name":"Phillip Osinski","age":80,"location":"Lake Karaton"}},{"attributes":{"name":"Raquel Purdy","age":34,"location":"Fort Elisaland"}},{"attributes":{"name":"Jay Zemlak","age":80,"location":"West Tavares"}},{"attributes":{"name":"Bernadette Bogan-Russel","age":21,"location":"Fort Narcisochester"}},{"attributes":{"name":"Maxine Reinger","age":80,"location":"North Teresafurt"}},{"attributes":{"name":"Jabari O'Hara","age":25,"location":"South Amari"}},{"attributes":{"name":"Elda Schneider","age":30,"location":"Port Darrintown"}},{"attributes":{"name":"Mr. Wilson Mohr","age":58,"location":"Fort Sabrynashire"}},{"attributes":{"name":"Dana Considine","age":52,"location":"Haleystad"}},{"attributes":{"name":"Yasmeen Beer","age":66,"location":"Valerieton"}},{"attributes":{"name":"Pam Conn","age":50,"location":"Green Bay"}},{"attributes":{"name":"Faye Konopelski","age":75,"location":"Port Ursula"}},{"attributes":{"name":"Rochelle Effertz","age":54,"location":"Lake Maryamside"}},{"attributes":{"name":"Lilian Rosenbaum","age":70,"location":"Nikolausville"}},{"attributes":{"name":"Wallace Corkery DDS","age":67,"location":"Fort Laurynport"}},{"attributes":{"name":"Brennon Nienow II","age":68,"location":"Champlintown"}},{"attributes":{"name":"Kayla Mueller","age":19,"location":"Lake Norbertstad"}},{"attributes":{"name":"Belle Kris","age":53,"location":"Hamillbury"}},{"attributes":{"name":"Hobart Wunsch","age":24,"location":"Ritchiemouth"}},{"attributes":{"name":"Gary Howell","age":45,"location":"Jillianborough"}},{"attributes":{"name":"Darla Schuppe","age":58,"location":"Lake Leland"}},{"attributes":{"name":"Ms. Arlie Langworth","age":53,"location":"Bogisichmouth"}},{"attributes":{"name":"Aubrey Keeling","age":42,"location":"West Aubrey"}},{"attributes":{"name":"Dr. Linda Hyatt","age":22,"location":"Feilside"}},{"attributes":{"name":"Hector Connelly Jr.","age":79,"location":"Lake Aliyaview"}},{"attributes":{"name":"Irving Kuphal","age":67,"location":"North Greysonside"}},{"attributes":{"name":"Sibyl Gottlieb","age":36,"location":"New Kurtis"}},{"attributes":{"name":"Dr. Ricardo Kozey MD","age":73,"location":"Lake Terrillview"}},{"attributes":{"name":"Delaney Treutel","age":23,"location":"Lake Jaydon"}},{"attributes":{"name":"Jayde Volkman-Beier","age":36,"location":"West Hermannton"}},{"attributes":{"name":"Anita Hartmann Sr.","age":76,"location":"New Dellhaven"}},{"attributes":{"name":"Alysha Kohler","age":77,"location":"Nikkocester"}},{"attributes":{"name":"Alicia Schaden","age":73,"location":"State College"}},{"attributes":{"name":"Amelia Feil-Hilll","age":20,"location":"North Gloria"}},{"attributes":{"name":"Melany Schroeder DVM","age":24,"location":"Danbury"}},{"attributes":{"name":"Dr. Mattie Brekke","age":44,"location":"Annetteville"}},{"attributes":{"name":"Brent Hoeger","age":47,"location":"West Brainmouth"}},{"attributes":{"name":"Tyreek Armstrong-Renner","age":72,"location":"Irving"}},{"attributes":{"name":"Ernestine Towne-Dicki","age":24,"location":"Town 'n' Country"}},{"attributes":{"name":"Neil Weber","age":23,"location":"New Fermin"}},{"attributes":{"name":"Olga Langworth","age":46,"location":"Fort Sydnee"}},{"attributes":{"name":"Mayra Kohler-Reichert","age":22,"location":"North Elenorburgh"}},{"attributes":{"name":"Walton Wehner","age":49,"location":"Prosaccoville"}},{"attributes":{"name":"Zita Paucek","age":77,"location":"Simi Valley"}},{"attributes":{"name":"Ross Maggio","age":39,"location":"Port Odie"}},{"attributes":{"name":"Winfield Lubowitz","age":76,"location":"Fort Ellis"}},{"attributes":{"name":"Jeannie Larson","age":53,"location":"South Valley"}},{"attributes":{"name":"Lamont Greenfelder","age":52,"location":"South San Francisco"}},{"attributes":{"name":"Miss Marion Bartell-Kohler Jr.","age":54,"location":"Fort Wayne"}},{"attributes":{"name":"Lewis Hegmann","age":47,"location":"Bowie"}},{"attributes":{"name":"Keara Mills","age":55,"location":"Collinsside"}},{"attributes":{"name":"Levi Bauch","age":35,"location":"St. Joseph"}},{"attributes":{"name":"Sonya Zieme","age":64,"location":"Bridgetteburgh"}},{"attributes":{"name":"Leslie Kirlin","age":44,"location":"South Matildeworth"}},{"attributes":{"name":"Dwayne Collins","age":30,"location":"East Elisabeth"}},{"attributes":{"name":"Melba Dach","age":49,"location":"Baton Rouge"}},{"attributes":{"name":"Larry Streich","age":40,"location":"Wildermanfield"}},{"attributes":{"name":"Opal Lockman","age":24,"location":"State College"}},{"attributes":{"name":"Maggie Bruen","age":75,"location":"North Jamey"}},{"attributes":{"name":"Karla McClure","age":60,"location":"Luellaborough"}},{"attributes":{"name":"Geneva Block","age":51,"location":"Fort Kaylin"}},{"attributes":{"name":"Clarabelle Torp-Kovacek","age":32,"location":"Bell Gardens"}},{"attributes":{"name":"Chris Purdy","age":48,"location":"Malden"}},{"attributes":{"name":"Charles Lemke-Hauck","age":57,"location":"Fort Antonetta"}},{"attributes":{"name":"Erik O'Reilly","age":44,"location":"Gastonia"}},{"attributes":{"name":"Arnoldo Ziemann DDS","age":48,"location":"Desireeview"}},{"attributes":{"name":"Jodi Ondricka","age":72,"location":"South Kian"}},{"attributes":{"name":"Melanie Ullrich","age":27,"location":"Norwoodfurt"}},{"attributes":{"name":"Angeline O'Hara","age":55,"location":"Mayerview"}},{"attributes":{"name":"Oliver Larkin","age":68,"location":"Andreanneshire"}},{"attributes":{"name":"Hulda Ryan-Leuschke","age":35,"location":"West Eldafort"}},{"attributes":{"name":"Judah Gutkowski","age":38,"location":"Myrtiefurt"}},{"attributes":{"name":"Raul Ziemann","age":63,"location":"Mannworth"}},{"attributes":{"name":"Carla Ratke","age":74,"location":"Kiehnborough"}},{"attributes":{"name":"Mertie Bernier","age":29,"location":"Reichelmouth"}},{"attributes":{"name":"Ivan Bernhard","age":54,"location":"South Leo"}},{"attributes":{"name":"Carrie Daniel PhD","age":39,"location":"Mayaguez"}},{"attributes":{"name":"Marietta Haley","age":37,"location":"Lake Clyde"}},{"attributes":{"name":"Rosalie Johns","age":65,"location":"Audieberg"}},{"attributes":{"name":"Amelia Mohr","age":62,"location":"Fort Virgie"}},{"attributes":{"name":"Conor Hand","age":41,"location":"Fort Cornelius"}},{"attributes":{"name":"Ellen Conroy DVM","age":64,"location":"Biloxi"}},{"attributes":{"name":"Leona Maggio","age":26,"location":"North Noemieborough"}},{"attributes":{"name":"Buck Rodriguez","age":52,"location":"East Kristoffertown"}},{"attributes":{"name":"Henry Terry","age":46,"location":"Geoffreyport"}},{"attributes":{"name":"Flora Bashirian","age":33,"location":"Noblesville"}},{"attributes":{"name":"Guadalupe Mayert","age":54,"location":"Nyachester"}},{"attributes":{"name":"Hellen Anderson","age":22,"location":"North Linnie"}},{"attributes":{"name":"Blanche Satterfield","age":75,"location":"Port Karolannborough"}},{"attributes":{"name":"Shawna Ferry","age":24,"location":"Fort Jadabury"}},{"attributes":{"name":"Fernando Mann","age":19,"location":"Schaeferfurt"}},{"attributes":{"name":"Cory Dickens","age":24,"location":"Barrowsboro"}},{"attributes":{"name":"Joana Rohan","age":50,"location":"New Toy"}},{"attributes":{"name":"Erin O'Keefe","age":31,"location":"Rockville"}},{"attributes":{"name":"Griffin Murphy","age":44,"location":"Trentton"}},{"attributes":{"name":"Shawn MacGyver","age":40,"location":"Livermore"}},{"attributes":{"name":"Mr. Alfonso Skiles V","age":69,"location":"Fort Justusshire"}},{"attributes":{"name":"Claude Gislason","age":56,"location":"Anabelleworth"}},{"attributes":{"name":"April Daniel","age":59,"location":"Fort Myers"}},{"attributes":{"name":"Esmeralda Kuhic","age":36,"location":"West Itzel"}},{"attributes":{"name":"Terrill Senger MD","age":80,"location":"Port Margie"}},{"attributes":{"name":"John Daniel","age":62,"location":"Jewellberg"}},{"attributes":{"name":"Rudolph Zieme Sr.","age":43,"location":"South Orenville"}},{"attributes":{"name":"Nelle Botsford","age":70,"location":"Pine Bluff"}},{"attributes":{"name":"Shirley Pfannerstill","age":44,"location":"Tyresehaven"}},{"attributes":{"name":"Brendan Considine-Larkin","age":50,"location":"Fort Vivianne"}},{"attributes":{"name":"Marlene Yost","age":25,"location":"Rosenbaumport"}},{"attributes":{"name":"Gertrude Stark","age":43,"location":"Abernathyside"}},{"attributes":{"name":"Steven O'Keefe PhD","age":43,"location":"West Nya"}},{"attributes":{"name":"Albert Howe","age":29,"location":"Fort Wilber"}},{"attributes":{"name":"Dr. Elinore Effertz","age":76,"location":"Fort Bernard"}},{"attributes":{"name":"Kyler Bode","age":42,"location":"Lonfurt"}},{"attributes":{"name":"Eulalia Kreiger","age":41,"location":"St. Paul"}},{"attributes":{"name":"Hester Schoen","age":20,"location":"Reichelland"}},{"attributes":{"name":"Keeley Denesik","age":28,"location":"Judahhaven"}},{"attributes":{"name":"Ariel Boehm","age":34,"location":"Coleland"}},{"attributes":{"name":"Mrs. Rosemarie Carroll","age":23,"location":"Beierboro"}},{"attributes":{"name":"Margie Rice DDS","age":36,"location":"Jadestead"}},{"attributes":{"name":"Arnoldo Conroy","age":50,"location":"Alfmouth"}},{"attributes":{"name":"Nicholas Schimmel","age":48,"location":"Santa Maria"}},{"attributes":{"name":"Andy Jenkins II","age":43,"location":"Peytonboro"}},{"attributes":{"name":"Rufus Rutherford","age":68,"location":"Isomland"}},{"attributes":{"name":"Courtney Adams","age":35,"location":"West Jessymouth"}},{"attributes":{"name":"Mrs. Jeannie Bartell","age":43,"location":"New Odessa"}},{"attributes":{"name":"Antoinette Stamm","age":66,"location":"Lake Josefa"}},{"attributes":{"name":"Veronica Schimmel","age":36,"location":"Roscoeshire"}},{"attributes":{"name":"Mittie Jaskolski","age":62,"location":"Syracuse"}},{"attributes":{"name":"Marshall Murazik","age":75,"location":"Tampa"}},{"attributes":{"name":"Santos Batz","age":47,"location":"Fort Amy"}},{"attributes":{"name":"Gerard Renner","age":80,"location":"Schambergerland"}},{"attributes":{"name":"Dominique Kuhic IV","age":43,"location":"Wehnerton"}},{"attributes":{"name":"Bessie Fay","age":38,"location":"Tryciaville"}},{"attributes":{"name":"Lauren Schumm","age":71,"location":"Cronaburgh"}},{"attributes":{"name":"Garrison Strosin","age":61,"location":"North Ivorychester"}},{"attributes":{"name":"Brant Hackett","age":68,"location":"East Sincereview"}},{"attributes":{"name":"Yolanda Abbott","age":72,"location":"Huldabury"}},{"attributes":{"name":"Mr. Jacquelyn Funk","age":74,"location":"Port Keeganburgh"}},{"attributes":{"name":"Shannon O'Connell","age":78,"location":"New Prudence"}},{"attributes":{"name":"Alexandro Reilly","age":45,"location":"South Ari"}},{"attributes":{"name":"Dr. Rudolph Johnson","age":26,"location":"Fort Carolina"}},{"attributes":{"name":"Afton Witting IV","age":31,"location":"New Genesis"}},{"attributes":{"name":"Corine Williamson","age":39,"location":"West Gabeland"}},{"attributes":{"name":"Elisha Stokes","age":28,"location":"Dublin"}},{"attributes":{"name":"Chelsea Schmitt","age":20,"location":"North Sigridview"}},{"attributes":{"name":"Cordell Crooks","age":18,"location":"Ashleestad"}},{"attributes":{"name":"Josefina Franey","age":41,"location":"Mayerthaven"}},{"attributes":{"name":"Ron Witting","age":55,"location":"Marcosworth"}},{"attributes":{"name":"Fae Harvey","age":35,"location":"South Jaimefort"}},{"attributes":{"name":"David Bosco IV","age":29,"location":"North Cassie"}},{"attributes":{"name":"Brayan Sporer","age":36,"location":"North Mosesfurt"}},{"attributes":{"name":"Deanna Kris DVM","age":68,"location":"East Deondre"}},{"attributes":{"name":"Neil Schuppe-Metz","age":29,"location":"Vanceside"}},{"attributes":{"name":"Lora Carter","age":78,"location":"Milpitas"}},{"attributes":{"name":"Patrick Ernser","age":42,"location":"Wichita Falls"}},{"attributes":{"name":"Dewitt Rippin","age":23,"location":"Erdmanland"}},{"attributes":{"name":"Mae Gerhold PhD","age":24,"location":"Hermannfort"}},{"attributes":{"name":"Marshall Hand","age":19,"location":"North Erickaboro"}},{"attributes":{"name":"Ms. Zachariah Fritsch","age":73,"location":"Greenholtton"}},{"attributes":{"name":"Dr. Yvonne Williamson","age":32,"location":"Simonisworth"}},{"attributes":{"name":"Angelina Schuster","age":52,"location":"Ericafurt"}},{"attributes":{"name":"Mike Nolan DDS","age":44,"location":"Schowalterborough"}},{"attributes":{"name":"Rolando Wehner","age":40,"location":"Fannyville"}},{"attributes":{"name":"Johnnie Ankunding","age":27,"location":"North Josue"}},{"attributes":{"name":"Joanne King","age":72,"location":"Zemlakstad"}},{"attributes":{"name":"Greg Hoeger","age":23,"location":"Yostton"}},{"attributes":{"name":"Curtis Baumbach","age":18,"location":"Jakobshire"}},{"attributes":{"name":"Freddie Reinger","age":53,"location":"New Oleta"}},{"attributes":{"name":"Dawn Bahringer","age":42,"location":"Fort Hilbert"}},{"attributes":{"name":"Brittany Hauck","age":71,"location":"New Aliceborough"}},{"attributes":{"name":"Lana Zemlak","age":33,"location":"North Aubreechester"}},{"attributes":{"name":"Guillermo Nolan","age":78,"location":"Wilkinsonboro"}},{"attributes":{"name":"Merl Zulauf Sr.","age":52,"location":"Fort Maxie"}},{"attributes":{"name":"Essie Connelly","age":64,"location":"Laylaville"}},{"attributes":{"name":"Fred Dickinson","age":69,"location":"Bettiehaven"}},{"attributes":{"name":"Elisa Rippin","age":60,"location":"Calecester"}},{"attributes":{"name":"Alvera McKenzie","age":32,"location":"Lake Andreanne"}},{"attributes":{"name":"Miss Fannie Bednar","age":76,"location":"Watersport"}},{"attributes":{"name":"Arlene Orn","age":76,"location":"Chandler"}},{"attributes":{"name":"Jairo Stark-Predovic","age":59,"location":"Delphiaport"}},{"attributes":{"name":"Monica Runolfsson","age":50,"location":"Noemyfort"}},{"attributes":{"name":"Melissa Hartmann","age":25,"location":"South Jasper"}},{"attributes":{"name":"Thomas Kassulke","age":55,"location":"McCulloughside"}},{"attributes":{"name":"Andres Hamill","age":46,"location":"Hoppeburgh"}},{"attributes":{"name":"Dana Armstrong","age":43,"location":"West Susanamouth"}},{"attributes":{"name":"Wade Greenfelder","age":80,"location":"Middletown"}},{"attributes":{"name":"Beth Gerlach","age":70,"location":"West Devinboro"}},{"attributes":{"name":"Toni Bruen","age":29,"location":"West Bradly"}},{"attributes":{"name":"Gloria Howell","age":43,"location":"Allanchester"}},{"attributes":{"name":"Barton Bins DDS","age":70,"location":"Julianneboro"}},{"attributes":{"name":"Gladyce Ritchie","age":72,"location":"Ilenechester"}},{"attributes":{"name":"Travis Leffler-Macejkovic","age":48,"location":"Des Moines"}},{"attributes":{"name":"Crawford Doyle DDS","age":75,"location":"Birmingham"}},{"attributes":{"name":"Priscilla Volkman","age":72,"location":"Jordybury"}},{"attributes":{"name":"Jeannie Ritchie","age":43,"location":"Rochester Hills"}},{"attributes":{"name":"Yesenia Smith","age":35,"location":"Predovicboro"}},{"attributes":{"name":"Margaret Luettgen II","age":78,"location":"Baronton"}},{"attributes":{"name":"Sadie Torp","age":45,"location":"New Liana"}},{"attributes":{"name":"Lucienne Mraz","age":64,"location":"New Grover"}},{"attributes":{"name":"Faye Senger","age":39,"location":"Nicotown"}},{"attributes":{"name":"Steve Collins","age":57,"location":"Fort Annamarietown"}},{"attributes":{"name":"Jacky Steuber","age":38,"location":"Fort Nikolascester"}},{"attributes":{"name":"Mrs. Lillie Hand","age":42,"location":"Donnellyburgh"}},{"attributes":{"name":"Weldon Brakus","age":44,"location":"Legrosmouth"}},{"attributes":{"name":"Max Schuppe","age":36,"location":"Miami Gardens"}},{"attributes":{"name":"Mrs. Tierra Borer","age":54,"location":"Chicopee"}},{"attributes":{"name":"Cecil Schuster","age":79,"location":"South Carmelotown"}},{"attributes":{"name":"Jeanette Kuhn DDS","age":71,"location":"Henderson"}},{"attributes":{"name":"Constance Koch","age":58,"location":"Lubowitzberg"}},{"attributes":{"name":"Viola Ruecker","age":38,"location":"South Alexa"}},{"attributes":{"name":"Mr. Ken Hand","age":62,"location":"Alexandria"}},{"attributes":{"name":"Tina Klocko","age":49,"location":"Orloview"}},{"attributes":{"name":"Anita Heidenreich","age":62,"location":"South Sageport"}},{"attributes":{"name":"Gordon Cassin","age":67,"location":"Fort Ramiro"}},{"attributes":{"name":"Alyson Weissnat","age":36,"location":"New Bettyemouth"}},{"attributes":{"name":"Phil Cormier","age":68,"location":"Cypress"}},{"attributes":{"name":"Dr. Lysanne Lynch","age":35,"location":"Daughertyfield"}},{"attributes":{"name":"Mr. Betty Kuhn-Klein III","age":24,"location":"Spokane"}},{"attributes":{"name":"Norbert Morar","age":67,"location":"Lake Ericatown"}},{"attributes":{"name":"Dawson Johns","age":49,"location":"East Evan"}},{"attributes":{"name":"Carolanne Daugherty","age":51,"location":"Lake Verla"}},{"attributes":{"name":"Theresia Hilll","age":58,"location":"Ondrickastad"}},{"attributes":{"name":"Victor Cartwright PhD","age":66,"location":"Port Leonardcester"}},{"attributes":{"name":"Jimmie Kerluke","age":25,"location":"Grahamville"}},{"attributes":{"name":"Alyssa Tillman","age":66,"location":"Maggioberg"}},{"attributes":{"name":"Clifton Dietrich","age":49,"location":"Lake Tremaine"}},{"attributes":{"name":"Mr. Natasha Keebler","age":29,"location":"Joannieview"}},{"attributes":{"name":"Joann Turner DDS","age":43,"location":"Lake Leo"}},{"attributes":{"name":"Loren Bogan","age":50,"location":"Borerside"}},{"attributes":{"name":"Dr. Alena Schmidt","age":51,"location":"East Chanceton"}},{"attributes":{"name":"Mr. Luis Donnelly DVM","age":77,"location":"Funkland"}},{"attributes":{"name":"Ross Gorczany","age":32,"location":"Ariellechester"}},{"attributes":{"name":"Leo Kris Sr.","age":43,"location":"Hayward"}},{"attributes":{"name":"Mandy Klocko","age":57,"location":"Macchester"}},{"attributes":{"name":"Helen Parker","age":31,"location":"La Mesa"}},{"attributes":{"name":"Kristy Stark","age":75,"location":"Lake Sheilaboro"}},{"attributes":{"name":"Vera Nolan","age":20,"location":"Arianeborough"}},{"attributes":{"name":"Dr. Zelda Hyatt","age":44,"location":"Fort Jaclyn"}},{"attributes":{"name":"Carmel Gottlieb","age":73,"location":"West Enrico"}},{"attributes":{"name":"Jenna Von","age":19,"location":"Lake Landenshire"}},{"attributes":{"name":"Byron Ondricka","age":55,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Beaulah Batz","age":75,"location":"Lake Mathew"}},{"attributes":{"name":"Jeanie Von","age":21,"location":"Ervinview"}},{"attributes":{"name":"Mr. Serenity Fisher","age":74,"location":"Lake Ridge"}},{"attributes":{"name":"Willie Mosciski","age":31,"location":"Emeliehaven"}},{"attributes":{"name":"Cody Stark","age":29,"location":"New Camilastead"}},{"attributes":{"name":"Taylor Kunde","age":73,"location":"Hilo"}},{"attributes":{"name":"Shari Thompson","age":47,"location":"Treutelbury"}},{"attributes":{"name":"Alysha Koch","age":42,"location":"Hilllborough"}},{"attributes":{"name":"Mrs. Orrin Weimann","age":59,"location":"Trompchester"}},{"attributes":{"name":"Dr. Terrence Crooks","age":34,"location":"North Larryhaven"}},{"attributes":{"name":"Ralph O'Kon","age":58,"location":"Fort Ardella"}},{"attributes":{"name":"Leonard Hackett","age":29,"location":"Fadelfort"}},{"attributes":{"name":"Christina Mitchell","age":62,"location":"Frederick"}},{"attributes":{"name":"Benny Rolfson","age":43,"location":"South Emilio"}},{"attributes":{"name":"Roderick Nader","age":66,"location":"Conway"}},{"attributes":{"name":"Caleb Cruickshank","age":26,"location":"Tevinboro"}},{"attributes":{"name":"Fernando MacGyver","age":71,"location":"North Yoshikofort"}},{"attributes":{"name":"Hector Bosco","age":52,"location":"Odessa"}},{"attributes":{"name":"Annie Kuvalis","age":79,"location":"Waukegan"}},{"attributes":{"name":"Mrs. Tyrese Emard","age":36,"location":"New Jaylonchester"}},{"attributes":{"name":"Hattie Mosciski","age":61,"location":"Dibbertshire"}},{"attributes":{"name":"Sylvester Jones","age":46,"location":"Lewiston"}},{"attributes":{"name":"Cristina Ortiz","age":20,"location":"Lake Yesseniaborough"}},{"attributes":{"name":"Alysson Konopelski IV","age":32,"location":"Denver"}},{"attributes":{"name":"Maurice Witting","age":43,"location":"Wolffboro"}},{"attributes":{"name":"Eileen Bosco","age":51,"location":"South Richie"}},{"attributes":{"name":"Angelica Harris V","age":45,"location":"Jacquesside"}},{"attributes":{"name":"Lori Runolfsson III","age":40,"location":"Stephanworth"}},{"attributes":{"name":"Jesse Hills","age":28,"location":"West Dulce"}},{"attributes":{"name":"Dr. Eleanora Hills","age":60,"location":"Carson"}},{"attributes":{"name":"Ms. Bianka Ward","age":53,"location":"Lake Kalestead"}},{"attributes":{"name":"Mark Goldner","age":60,"location":"Tacoma"}},{"attributes":{"name":"Jonathon Gottlieb","age":59,"location":"Venaboro"}},{"attributes":{"name":"Layne Hahn","age":70,"location":"Ellicott City"}},{"attributes":{"name":"Claudia Feest","age":38,"location":"Evertfield"}},{"attributes":{"name":"Andy Brakus","age":58,"location":"Deborahfort"}},{"attributes":{"name":"Maureen Parisian PhD","age":28,"location":"Heloiseworth"}},{"attributes":{"name":"Terrance Hammes","age":36,"location":"Franklin"}},{"attributes":{"name":"Romaine Rath","age":67,"location":"Lake Omarifort"}},{"attributes":{"name":"Francisco Hagenes","age":29,"location":"Towson"}},{"attributes":{"name":"Dianna Schiller","age":58,"location":"Fort Stanleyshire"}},{"attributes":{"name":"Mrs. Christina Feest","age":69,"location":"Dominicfurt"}},{"attributes":{"name":"Mr. Lolita Larkin I","age":46,"location":"East Cortezborough"}},{"attributes":{"name":"Dakota Armstrong","age":74,"location":"Southaven"}},{"attributes":{"name":"Bonnie Shields II","age":38,"location":"Port Dorthymouth"}},{"attributes":{"name":"Amie Schaefer","age":63,"location":"Port Omaside"}},{"attributes":{"name":"Cecilia Dare","age":30,"location":"Townefield"}},{"attributes":{"name":"Annette Keebler","age":26,"location":"West Chandlermouth"}},{"attributes":{"name":"Sherry Wintheiser","age":66,"location":"Palm Desert"}},{"attributes":{"name":"Donna Predovic","age":19,"location":"Lake Jon"}},{"attributes":{"name":"Lucy Turcotte-Bartell","age":38,"location":"Lemuelberg"}},{"attributes":{"name":"Winston Dickens","age":61,"location":"Wandaview"}},{"attributes":{"name":"Kali Reichel","age":37,"location":"South Antonia"}},{"attributes":{"name":"Courtney Reilly","age":41,"location":"Meriden"}},{"attributes":{"name":"Dedric Lind I","age":76,"location":"Mosciskiview"}},{"attributes":{"name":"Jessie Graham","age":66,"location":"Port Linwoodstad"}},{"attributes":{"name":"Quinn Hudson","age":65,"location":"DuBuquefield"}},{"attributes":{"name":"Randall Zboncak","age":41,"location":"Bonita Springs"}},{"attributes":{"name":"Lester Walsh","age":58,"location":"Dixieberg"}},{"attributes":{"name":"Leilani Bode","age":28,"location":"Connellyhaven"}},{"attributes":{"name":"Fredrick Turner","age":47,"location":"Fort Kylee"}},{"attributes":{"name":"Yvonne Koch","age":23,"location":"New Nicklaus"}},{"attributes":{"name":"Brain McCullough","age":54,"location":"North Julianville"}},{"attributes":{"name":"Terence Wuckert DVM","age":62,"location":"Olympia"}},{"attributes":{"name":"Michael Lindgren","age":51,"location":"Russelstad"}},{"attributes":{"name":"Omari Schroeder","age":37,"location":"Sunnyvale"}},{"attributes":{"name":"Courtney Tromp","age":37,"location":"Fort Ephraim"}},{"attributes":{"name":"Corine Herzog","age":69,"location":"Brennonport"}},{"attributes":{"name":"Lora Smitham-Ryan","age":74,"location":"Murazikbury"}},{"attributes":{"name":"Tasha Denesik","age":47,"location":"Cerritos"}},{"attributes":{"name":"Wilmer Swaniawski","age":25,"location":"New Isobel"}},{"attributes":{"name":"Kenny Borer V","age":34,"location":"Hamillmouth"}},{"attributes":{"name":"Zakary Bailey","age":55,"location":"Port Halfurt"}},{"attributes":{"name":"Alfonso O'Keefe","age":44,"location":"Lake Richardton"}},{"attributes":{"name":"Luz Orn","age":26,"location":"Hanetown"}},{"attributes":{"name":"Rufus Kerluke","age":61,"location":"Paulport"}},{"attributes":{"name":"Yvonne Mraz Jr.","age":59,"location":"West Dana"}},{"attributes":{"name":"Arturo Cormier III","age":75,"location":"South San Francisco"}},{"attributes":{"name":"Lela Lang","age":79,"location":"East Maribelville"}},{"attributes":{"name":"Antonia Goldner","age":45,"location":"Lewisburgh"}},{"attributes":{"name":"Lorenz Willms","age":27,"location":"Greensboro"}},{"attributes":{"name":"Christopher Bahringer","age":67,"location":"Fort Herminioside"}},{"attributes":{"name":"Florence Hamill","age":23,"location":"West Mylesberg"}},{"attributes":{"name":"Lucas Veum","age":78,"location":"Fort Kasandrastad"}},{"attributes":{"name":"Mr. Lexus Brown","age":51,"location":"New Olin"}},{"attributes":{"name":"Troy Schulist-Thompson","age":20,"location":"Nedrashire"}},{"attributes":{"name":"Meaghan Crist","age":32,"location":"Lake Patience"}},{"attributes":{"name":"Dr. Cory Nienow","age":60,"location":"El Dorado Hills"}},{"attributes":{"name":"Angelina Auer","age":42,"location":"North Reynoldtown"}},{"attributes":{"name":"Breanne Nitzsche","age":48,"location":"Carlsbad"}},{"attributes":{"name":"Anastacio Luettgen I","age":38,"location":"West Alvahbury"}},{"attributes":{"name":"Rebeka Farrell","age":55,"location":"Josefaland"}},{"attributes":{"name":"Jeanne Stiedemann","age":77,"location":"Rochester Hills"}},{"attributes":{"name":"Malcolm Cassin","age":42,"location":"Tarastad"}},{"attributes":{"name":"Christop Witting MD","age":64,"location":"Koelpinboro"}},{"attributes":{"name":"Dr. Lisandro O'Keefe","age":40,"location":"New Angelina"}},{"attributes":{"name":"Dustin Bechtelar","age":76,"location":"Ratkefield"}},{"attributes":{"name":"Elroy Dickinson","age":68,"location":"Jeffersonville"}},{"attributes":{"name":"Osbaldo Gulgowski","age":45,"location":"Labadieland"}},{"attributes":{"name":"Danika Renner","age":55,"location":"Wadeland"}},{"attributes":{"name":"Alanna Sawayn","age":73,"location":"Runolfssonfield"}},{"attributes":{"name":"Maureen Mann","age":70,"location":"New Delphia"}},{"attributes":{"name":"Prince Mante","age":30,"location":"South Tyrel"}},{"attributes":{"name":"Theodore Friesen","age":41,"location":"Gulgowskicester"}},{"attributes":{"name":"Carroll Hessel","age":57,"location":"Thurmanview"}},{"attributes":{"name":"Bridgette Weber","age":27,"location":"Alyciafurt"}},{"attributes":{"name":"Ed Glover","age":77,"location":"Carolynton"}},{"attributes":{"name":"Tess Heaney","age":76,"location":"Graciestead"}},{"attributes":{"name":"Marcella Collier","age":57,"location":"North Vernontown"}},{"attributes":{"name":"Desiree Trantow","age":66,"location":"Clovis"}},{"attributes":{"name":"Esperanza Purdy","age":23,"location":"West Arnefort"}},{"attributes":{"name":"Dr. Ezra Towne","age":41,"location":"Vickiestead"}},{"attributes":{"name":"Keon Franecki","age":63,"location":"Huntington Park"}},{"attributes":{"name":"Ivan Rowe","age":52,"location":"New Coltenbury"}},{"attributes":{"name":"Diane Keebler","age":56,"location":"MacGyverfield"}},{"attributes":{"name":"Lyle Borer","age":74,"location":"Ortizville"}},{"attributes":{"name":"Paulette Lindgren PhD","age":71,"location":"Fort Quinten"}},{"attributes":{"name":"Trenton Champlin","age":53,"location":"Lake Angelita"}},{"attributes":{"name":"Cynthia White","age":59,"location":"New Reannachester"}},{"attributes":{"name":"Viola DuBuque","age":21,"location":"Vacaville"}},{"attributes":{"name":"Dr. Marcella Murray","age":47,"location":"Port Jewell"}},{"attributes":{"name":"Jaren Toy","age":19,"location":"East Kaleighfurt"}},{"attributes":{"name":"Carole Mann","age":31,"location":"North Benedictfort"}},{"attributes":{"name":"Kelley Keebler","age":65,"location":"Huelsbury"}},{"attributes":{"name":"Lawrence Hodkiewicz III","age":38,"location":"Doylestad"}},{"attributes":{"name":"Mathilde Runte IV","age":18,"location":"Charleston"}},{"attributes":{"name":"Hope Hudson","age":58,"location":"Schultzview"}},{"attributes":{"name":"Bo Satterfield","age":51,"location":"Jacobston"}},{"attributes":{"name":"Violet Klein","age":25,"location":"Warner Robins"}},{"attributes":{"name":"Ms. Geoffrey Brakus","age":32,"location":"Carrollland"}},{"attributes":{"name":"Madilyn Hoppe","age":35,"location":"Tucson"}},{"attributes":{"name":"Madaline Hickle","age":76,"location":"Bayerstad"}},{"attributes":{"name":"Everette Cummerata","age":36,"location":"New Loyceworth"}},{"attributes":{"name":"Terrence Lowe","age":77,"location":"Ratketon"}},{"attributes":{"name":"Bruce Pollich","age":45,"location":"North Favianville"}},{"attributes":{"name":"Bethel Turcotte","age":21,"location":"Lake Fritzcester"}},{"attributes":{"name":"Maud Harris","age":26,"location":"North Judgefurt"}},{"attributes":{"name":"Lexus Spencer DVM","age":45,"location":"Earlinemouth"}},{"attributes":{"name":"Albin Durgan Sr.","age":74,"location":"Lake Emmanuelleborough"}},{"attributes":{"name":"Damon Robel MD","age":53,"location":"Lauriannestead"}},{"attributes":{"name":"Connor Gerlach","age":56,"location":"North Breanneville"}},{"attributes":{"name":"Isac Nolan","age":18,"location":"Worcester"}},{"attributes":{"name":"Miss Abdiel Graham","age":45,"location":"Elvaside"}},{"attributes":{"name":"Jamie Reilly","age":45,"location":"Fort Hassie"}},{"attributes":{"name":"Francis Fahey","age":24,"location":"West Roberta"}},{"attributes":{"name":"Paula Kulas","age":66,"location":"Fort Samarastad"}},{"attributes":{"name":"Yvonne Hayes","age":58,"location":"Pontiac"}},{"attributes":{"name":"Brandi Harris","age":23,"location":"Lake Rosaleeberg"}},{"attributes":{"name":"Petra Boyer","age":73,"location":"Mountain View"}},{"attributes":{"name":"Jeff Connelly II","age":40,"location":"West Kobe"}},{"attributes":{"name":"Renee Skiles","age":49,"location":"New Peter"}},{"attributes":{"name":"Dr. Karl Zulauf","age":33,"location":"Sporerworth"}},{"attributes":{"name":"Isabella Heidenreich","age":19,"location":"Lake Tomasfurt"}},{"attributes":{"name":"Frances Watsica III","age":31,"location":"Port Arthur"}},{"attributes":{"name":"Wanda Grady","age":29,"location":"West Dominic"}},{"attributes":{"name":"Earnest Batz","age":63,"location":"South Rooseveltbury"}},{"attributes":{"name":"Samanta Marquardt PhD","age":44,"location":"Cartwrightstad"}},{"attributes":{"name":"Candice Kshlerin","age":37,"location":"Lebsackfurt"}},{"attributes":{"name":"Lindsey Cronin","age":25,"location":"South Soledad"}},{"attributes":{"name":"Percy Hilpert","age":54,"location":"Effertzborough"}},{"attributes":{"name":"Elvis Flatley","age":67,"location":"Rossfurt"}},{"attributes":{"name":"Perry Kozey-Cronin II","age":43,"location":"North Cullenstad"}},{"attributes":{"name":"Krystel Schmitt I","age":26,"location":"Aleenside"}},{"attributes":{"name":"Miss Bridget Batz","age":34,"location":"Lilianeberg"}},{"attributes":{"name":"Abraham Buckridge","age":28,"location":"Lake Ridge"}},{"attributes":{"name":"Chad Funk","age":48,"location":"Port Trey"}},{"attributes":{"name":"Shany Daniel","age":51,"location":"West Holden"}},{"attributes":{"name":"Nicholas Runolfsdottir","age":23,"location":"Vernfield"}},{"attributes":{"name":"Nick Weber","age":50,"location":"Welchfurt"}},{"attributes":{"name":"Shanel Kuvalis","age":59,"location":"Lake Hadleyshire"}},{"attributes":{"name":"Warren Parker","age":27,"location":"The Villages"}},{"attributes":{"name":"Ivan Ebert","age":67,"location":"Bolingbrook"}},{"attributes":{"name":"Darian Rempel","age":49,"location":"Dickiport"}},{"attributes":{"name":"Della Connelly","age":35,"location":"Priceland"}},{"attributes":{"name":"Lew Daugherty Jr.","age":61,"location":"Stevebury"}},{"attributes":{"name":"Alysha Effertz","age":18,"location":"Schinnerworth"}},{"attributes":{"name":"Shawna Muller","age":75,"location":"North Peytonstad"}},{"attributes":{"name":"Nyasia Grady","age":50,"location":"Coral Springs"}},{"attributes":{"name":"Miss Alice Collier","age":77,"location":"Pfannerstillfort"}},{"attributes":{"name":"Don Miller","age":74,"location":"Jerodtown"}},{"attributes":{"name":"Kelsie Hessel","age":54,"location":"Fort Charityfort"}},{"attributes":{"name":"Lee Reinger","age":38,"location":"Racine"}},{"attributes":{"name":"Richard Jacobs","age":25,"location":"Agustinport"}},{"attributes":{"name":"Ariel Kunde","age":25,"location":"Kristafield"}},{"attributes":{"name":"Dallas Lind","age":76,"location":"Parkertown"}},{"attributes":{"name":"Eliezer Becker","age":60,"location":"Fort Rooseveltbury"}},{"attributes":{"name":"Betty Klein DVM","age":69,"location":"Steubermouth"}},{"attributes":{"name":"Thalia Friesen","age":24,"location":"South Trisha"}},{"attributes":{"name":"Blaze Brekke Sr.","age":54,"location":"North Arturo"}},{"attributes":{"name":"Dave O'Reilly","age":77,"location":"Clydestad"}},{"attributes":{"name":"Travon Hudson","age":75,"location":"Port Yazmin"}},{"attributes":{"name":"Myron Kuhlman","age":28,"location":"Mayerfort"}},{"attributes":{"name":"Mr. Raul Murphy","age":48,"location":"Predovicfort"}},{"attributes":{"name":"Lempi Hodkiewicz","age":18,"location":"North Rosettahaven"}},{"attributes":{"name":"Dallas Upton","age":18,"location":"Adellaboro"}},{"attributes":{"name":"Mrs. Madelyn Kulas","age":34,"location":"Albinhaven"}},{"attributes":{"name":"Georgia Reichel","age":20,"location":"Rathhaven"}},{"attributes":{"name":"Genevieve Schneider","age":44,"location":"Lemkechester"}},{"attributes":{"name":"Amelia Welch","age":27,"location":"East Estelleburgh"}},{"attributes":{"name":"Armando Lebsack","age":64,"location":"East Callieshire"}},{"attributes":{"name":"Ron Waters","age":53,"location":"Nolanside"}},{"attributes":{"name":"Derek Ernser","age":19,"location":"Port Roma"}},{"attributes":{"name":"Cathy Koss PhD","age":74,"location":"South Zackeryville"}},{"attributes":{"name":"Glenn McKenzie","age":60,"location":"Paxtonworth"}},{"attributes":{"name":"Jedidiah Bayer","age":39,"location":"East Aronstad"}},{"attributes":{"name":"Esteban Tillman","age":80,"location":"Beckerborough"}},{"attributes":{"name":"Edna Schaefer","age":73,"location":"Grantstead"}},{"attributes":{"name":"Clark Dickinson","age":70,"location":"Catalina Foothills"}},{"attributes":{"name":"Doug Friesen","age":38,"location":"North Sydnie"}},{"attributes":{"name":"Travis Padberg","age":37,"location":"San Jose"}},{"attributes":{"name":"Gwendolyn Bradtke","age":74,"location":"Port Ameliechester"}},{"attributes":{"name":"Damon Aufderhar","age":41,"location":"Kaitlinstad"}},{"attributes":{"name":"Aileen Kris","age":35,"location":"Jorgebury"}},{"attributes":{"name":"Jennings Franey","age":58,"location":"Trantowburgh"}},{"attributes":{"name":"Myra Jakubowski","age":59,"location":"West Fredericmouth"}},{"attributes":{"name":"Krystal Balistreri","age":57,"location":"Orem"}},{"attributes":{"name":"Dolores Leannon","age":23,"location":"West Modesta"}},{"attributes":{"name":"Ben Pollich-Torphy","age":68,"location":"Catalina Foothills"}},{"attributes":{"name":"Mrs. Della Hettinger-Ruecker","age":24,"location":"Fort Cathryn"}},{"attributes":{"name":"Malvina Stehr","age":66,"location":"Altamonte Springs"}},{"attributes":{"name":"Angel Nolan V","age":71,"location":"East Waldoside"}},{"attributes":{"name":"Francis Stoltenberg","age":33,"location":"West Osborne"}},{"attributes":{"name":"Reagan Schaden","age":33,"location":"Fort Jazlyn"}},{"attributes":{"name":"Geoffrey Stanton","age":35,"location":"Emilfield"}},{"attributes":{"name":"Liam Heathcote","age":33,"location":"Hirthechester"}},{"attributes":{"name":"Jessie Gulgowski","age":30,"location":"West Gillianfort"}},{"attributes":{"name":"Ms. Mamie Harris","age":39,"location":"Tobinfort"}},{"attributes":{"name":"Elta Roberts","age":22,"location":"Alberthabury"}},{"attributes":{"name":"Jody Waters","age":37,"location":"Tampa"}},{"attributes":{"name":"Keith Feest","age":38,"location":"Bothell"}},{"attributes":{"name":"Myrtice Rau","age":57,"location":"Port Aliza"}},{"attributes":{"name":"Lura Graham","age":38,"location":"North Octaviaton"}},{"attributes":{"name":"Phillip Walter","age":20,"location":"North Jedfield"}},{"attributes":{"name":"Ona Cormier","age":25,"location":"South Jake"}},{"attributes":{"name":"Eugenia Braun","age":59,"location":"Turnerfort"}},{"attributes":{"name":"Tamara Sawayn","age":34,"location":"Carson"}},{"attributes":{"name":"Lela Koelpin","age":44,"location":"Lake Pattie"}},{"attributes":{"name":"Kaia Kassulke","age":59,"location":"Brandtstad"}},{"attributes":{"name":"Willard Schaden-Schulist","age":43,"location":"Greenville"}},{"attributes":{"name":"Mrs. Miranda Dooley","age":27,"location":"East Jordifort"}},{"attributes":{"name":"Mr. Sam Bruen","age":18,"location":"New Christown"}},{"attributes":{"name":"Raquel Morar","age":47,"location":"Bernhardborough"}},{"attributes":{"name":"Lowell Sanford","age":72,"location":"Fort Frankfurt"}},{"attributes":{"name":"Doyle Howell","age":26,"location":"Binscester"}},{"attributes":{"name":"Christine Hauck","age":59,"location":"Port Myrtisstead"}},{"attributes":{"name":"Aida Gutmann","age":28,"location":"Salinas"}},{"attributes":{"name":"Miss Brooke O'Reilly","age":57,"location":"North Monty"}},{"attributes":{"name":"Ellis Robel","age":69,"location":"Rosenbaumburgh"}},{"attributes":{"name":"Ayla Swift-Lesch","age":51,"location":"Roobton"}},{"attributes":{"name":"Aliza Langosh","age":27,"location":"Fort Anabelbury"}},{"attributes":{"name":"Melba Morissette","age":43,"location":"Buckridgechester"}},{"attributes":{"name":"Miss Jocelyn McDermott","age":36,"location":"East Aaronhaven"}},{"attributes":{"name":"Mr. Abel Jerde","age":24,"location":"Fort Adolf"}},{"attributes":{"name":"Kristie Strosin PhD","age":43,"location":"Redondo Beach"}},{"attributes":{"name":"Marta Cartwright","age":80,"location":"West Stewart"}},{"attributes":{"name":"Orval Boehm","age":41,"location":"Kuhlmancester"}},{"attributes":{"name":"Vivian Volkman","age":62,"location":"Thoramouth"}},{"attributes":{"name":"Delores Kovacek I","age":36,"location":"Galveston"}},{"attributes":{"name":"Irving Zemlak DDS","age":27,"location":"Vacaville"}},{"attributes":{"name":"Ms. Zachery Bruen","age":52,"location":"South Milantown"}},{"attributes":{"name":"Margarita Muller-Powlowski","age":53,"location":"Noehaven"}},{"attributes":{"name":"Rhiannon Lang DVM","age":41,"location":"Jenkinsland"}},{"attributes":{"name":"Joanny Schultz","age":22,"location":"East Marquesboro"}},{"attributes":{"name":"Vern Fay","age":27,"location":"West Ursulaworth"}},{"attributes":{"name":"Minerva Lehner","age":64,"location":"East Vincentborough"}},{"attributes":{"name":"Essie Durgan","age":32,"location":"Bradtketown"}},{"attributes":{"name":"Mr. Manley Fisher","age":54,"location":"Nolanview"}},{"attributes":{"name":"Rae Hoeger","age":53,"location":"Fort Katelynnshire"}},{"attributes":{"name":"Carlton Leuschke","age":76,"location":"Elisemouth"}},{"attributes":{"name":"Mr. Fredrick Spencer","age":42,"location":"Yvettestad"}},{"attributes":{"name":"Blaze Crooks","age":56,"location":"Corvallis"}},{"attributes":{"name":"Asia Gerlach","age":78,"location":"New Kavon"}},{"attributes":{"name":"Alvis Welch IV","age":28,"location":"Serenaton"}},{"attributes":{"name":"Hassie Conn IV","age":28,"location":"Spokane Valley"}},{"attributes":{"name":"Deion Goyette","age":55,"location":"Goldenland"}},{"attributes":{"name":"Luther Pfeffer","age":32,"location":"Gradystad"}},{"attributes":{"name":"Nancy Brown","age":19,"location":"West Augustahaven"}},{"attributes":{"name":"Rene Bailey","age":55,"location":"Mrazstad"}},{"attributes":{"name":"Erika Howe-Gislason V","age":63,"location":"Shermanshire"}},{"attributes":{"name":"Marguerite Mueller-Wilkinson","age":75,"location":"West Jermainechester"}},{"attributes":{"name":"Stone Buckridge","age":49,"location":"Casperfurt"}},{"attributes":{"name":"Hoyt Cronin","age":74,"location":"Fort Alvis"}},{"attributes":{"name":"Yolanda Feil-Gleichner","age":74,"location":"Streichton"}},{"attributes":{"name":"Clare Welch I","age":38,"location":"Carmelashire"}},{"attributes":{"name":"Evan Beahan","age":45,"location":"Sanfordtown"}},{"attributes":{"name":"Raphael Fay","age":27,"location":"New Stuartville"}},{"attributes":{"name":"Trisha Stehr","age":69,"location":"East Tara"}},{"attributes":{"name":"Sergio Gusikowski","age":53,"location":"Dereckworth"}},{"attributes":{"name":"Fernando Stark IV","age":70,"location":"Kutchbury"}},{"attributes":{"name":"Lena Daniel","age":56,"location":"Temple"}},{"attributes":{"name":"Haylee Hills","age":57,"location":"Port Clarabelleburgh"}},{"attributes":{"name":"Jessie Borer","age":57,"location":"Port Maymieboro"}},{"attributes":{"name":"Muhammad Heller","age":36,"location":"Fort Neoma"}},{"attributes":{"name":"Aaron Lueilwitz","age":30,"location":"Fort Laylaland"}},{"attributes":{"name":"Edyth Schultz","age":71,"location":"South Chelseachester"}},{"attributes":{"name":"Mr. Bradford Toy","age":57,"location":"New Ivoryfield"}},{"attributes":{"name":"Randi Gerlach V","age":75,"location":"Fort Raymond"}},{"attributes":{"name":"Hugh Collins","age":77,"location":"Haleyshire"}},{"attributes":{"name":"Mr. Timmothy Frami PhD","age":29,"location":"Hirtheburgh"}},{"attributes":{"name":"Bridget Mills","age":70,"location":"Floville"}},{"attributes":{"name":"Mr. Eldred Kessler","age":50,"location":"Madera"}},{"attributes":{"name":"Guadalupe Fadel","age":70,"location":"Eddview"}},{"attributes":{"name":"Miss Reid Padberg","age":40,"location":"Sheilafield"}},{"attributes":{"name":"Ida Schuppe DVM","age":49,"location":"South Rubiehaven"}},{"attributes":{"name":"Mrs. Kelley Bogan","age":24,"location":"Reston"}},{"attributes":{"name":"Cielo Schinner-Schamberger","age":19,"location":"Bufordfort"}},{"attributes":{"name":"Beatrice Will-Cole","age":42,"location":"Fort Miracle"}},{"attributes":{"name":"Nico Streich","age":29,"location":"Larkinworth"}},{"attributes":{"name":"Doyle Windler","age":21,"location":"South Zulahaven"}},{"attributes":{"name":"Rylan Balistreri I","age":63,"location":"Cronaberg"}},{"attributes":{"name":"Alison Ondricka","age":25,"location":"West Lyric"}},{"attributes":{"name":"Dr. Taylor Ondricka","age":26,"location":"Faystead"}},{"attributes":{"name":"Pearl O'Connell","age":32,"location":"Reannastead"}},{"attributes":{"name":"Zachary Sipes","age":50,"location":"Roweborough"}},{"attributes":{"name":"Toy Herman MD","age":42,"location":"Lake Ferminton"}},{"attributes":{"name":"Floyd Raynor","age":23,"location":"Amycester"}},{"attributes":{"name":"Dortha Feest","age":37,"location":"Fort Shaynefurt"}},{"attributes":{"name":"Angeline Hane","age":40,"location":"North Ryleebury"}},{"attributes":{"name":"Angel Franey","age":56,"location":"Dayton"}},{"attributes":{"name":"Monica Walter-Monahan","age":65,"location":"McKenziecester"}},{"attributes":{"name":"Dr. Hector Streich","age":19,"location":"North Floydberg"}},{"attributes":{"name":"Miss Vesta Konopelski II","age":33,"location":"South Evanfort"}},{"attributes":{"name":"Edward Nienow","age":29,"location":"East Kirk"}},{"attributes":{"name":"Beth Pfannerstill","age":35,"location":"Robelburgh"}},{"attributes":{"name":"Virgie O'Kon IV","age":37,"location":"Bartellbury"}},{"attributes":{"name":"Colleen Wilkinson","age":21,"location":"Lindcester"}},{"attributes":{"name":"Brooklyn Heaney","age":76,"location":"Summerville"}},{"attributes":{"name":"Geraldine Emard","age":71,"location":"Schusterville"}},{"attributes":{"name":"Maci Runolfsdottir","age":26,"location":"Neldaville"}},{"attributes":{"name":"Dominic Towne","age":39,"location":"Jarrodbury"}},{"attributes":{"name":"Floy Kuvalis","age":76,"location":"Lake Orland"}},{"attributes":{"name":"Joseph Schneider","age":27,"location":"Harrisland"}},{"attributes":{"name":"Tracy Marquardt III","age":40,"location":"Fort Presleyburgh"}},{"attributes":{"name":"Kale O'Conner","age":77,"location":"Victorville"}},{"attributes":{"name":"Mr. Bryan Barrows","age":40,"location":"North Nathanialton"}},{"attributes":{"name":"Rick Leuschke","age":19,"location":"Welchtown"}},{"attributes":{"name":"Saul Bernier","age":31,"location":"West Ignaciomouth"}},{"attributes":{"name":"Alexandra Hills","age":69,"location":"Port Jarod"}},{"attributes":{"name":"Alvah Hansen","age":45,"location":"Abbottworth"}},{"attributes":{"name":"Susan Zboncak","age":25,"location":"South Joshua"}},{"attributes":{"name":"Amy Waelchi","age":66,"location":"North Kaydenfield"}},{"attributes":{"name":"Edwin Orn","age":71,"location":"Stokesstead"}},{"attributes":{"name":"Jim Mohr","age":65,"location":"Murazikton"}},{"attributes":{"name":"Roberto Schumm","age":58,"location":"Lake Deontae"}},{"attributes":{"name":"Mrs. Oliver Gottlieb","age":76,"location":"West Eldredborough"}},{"attributes":{"name":"Donald Marks","age":40,"location":"Fort Emiliahaven"}},{"attributes":{"name":"Courtney Wintheiser","age":25,"location":"South Rachel"}},{"attributes":{"name":"Tanya Ortiz","age":21,"location":"North Vernfield"}},{"attributes":{"name":"Leopoldo Keebler","age":29,"location":"Palm Springs"}},{"attributes":{"name":"Aimee Hartmann","age":67,"location":"West John"}},{"attributes":{"name":"Winston Goodwin","age":45,"location":"Framingham"}},{"attributes":{"name":"Wendy Ernser","age":36,"location":"New Araceli"}},{"attributes":{"name":"Jorge Marks","age":41,"location":"South Grayce"}},{"attributes":{"name":"Harold McCullough I","age":22,"location":"South Elmore"}},{"attributes":{"name":"Dexter Cassin-Casper","age":22,"location":"Hahncester"}},{"attributes":{"name":"Johnathan Swaniawski","age":37,"location":"Decatur"}},{"attributes":{"name":"Elmo Schuppe","age":50,"location":"Port Nadia"}},{"attributes":{"name":"Peggy Jacobson","age":28,"location":"Port Jennyfer"}},{"attributes":{"name":"Claudia Ankunding","age":43,"location":"Fort Grant"}},{"attributes":{"name":"Dexter Abernathy","age":26,"location":"New Marques"}},{"attributes":{"name":"Rosa Pagac I","age":23,"location":"Edina"}},{"attributes":{"name":"Dianne Baumbach-Klein","age":47,"location":"Xavierside"}},{"attributes":{"name":"Aaliyah Cruickshank","age":31,"location":"Haleyshire"}},{"attributes":{"name":"Llewellyn Roberts-Rempel","age":49,"location":"North Meredith"}},{"attributes":{"name":"Erin Bergstrom","age":23,"location":"Aimeeshire"}},{"attributes":{"name":"Doug Ullrich","age":56,"location":"Troy"}},{"attributes":{"name":"Serenity Hills MD","age":41,"location":"Marquisebury"}},{"attributes":{"name":"Mr. Terence Cremin","age":36,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Cassandra Senger","age":46,"location":"West Felipastead"}},{"attributes":{"name":"Evan Dach","age":43,"location":"O'Fallon"}},{"attributes":{"name":"Rogelio Gislason","age":46,"location":"West Nicholaus"}},{"attributes":{"name":"Casey Gottlieb","age":79,"location":"Eulahhaven"}},{"attributes":{"name":"Glenda Schmeler IV","age":49,"location":"South Theron"}},{"attributes":{"name":"Gertrude Miller","age":65,"location":"Malloryhaven"}},{"attributes":{"name":"Mr. Louis Considine","age":28,"location":"Cormierbury"}},{"attributes":{"name":"Wendy Jaskolski","age":23,"location":"East Lulaside"}},{"attributes":{"name":"Kody Haag-Jones","age":20,"location":"Ann Arbor"}},{"attributes":{"name":"Adam Hegmann MD","age":52,"location":"South Alfordfort"}},{"attributes":{"name":"Maximo Nader","age":29,"location":"Ricebury"}},{"attributes":{"name":"Terry Breitenberg","age":29,"location":"South Fanniehaven"}},{"attributes":{"name":"Stanley Nitzsche","age":21,"location":"West Nettieville"}},{"attributes":{"name":"Mrs. Martine Botsford","age":60,"location":"Tamiaton"}},{"attributes":{"name":"Leonora McCullough-Schinner","age":68,"location":"Wisokyshire"}},{"attributes":{"name":"Sylvia Kohler","age":40,"location":"Sanfordport"}},{"attributes":{"name":"Theo Ward","age":73,"location":"Willmsfield"}},{"attributes":{"name":"Marcelo Bayer","age":67,"location":"Legrostown"}},{"attributes":{"name":"Jody Thompson-Hagenes","age":49,"location":"Fort Herminamouth"}},{"attributes":{"name":"Darrin Hoppe","age":76,"location":"Treutelhaven"}},{"attributes":{"name":"Lloyd Cole","age":57,"location":"West Annabellcester"}},{"attributes":{"name":"Rosalind Boyer","age":34,"location":"Lake Sunny"}},{"attributes":{"name":"Mrs. Josie Leannon","age":52,"location":"Eddberg"}},{"attributes":{"name":"Renee Cruickshank","age":44,"location":"Lydaboro"}},{"attributes":{"name":"Ben Bartoletti","age":78,"location":"Hanechester"}},{"attributes":{"name":"Akeem Stehr","age":48,"location":"East Jenniferhaven"}},{"attributes":{"name":"Reginald Mayert","age":39,"location":"North Arlofort"}},{"attributes":{"name":"Wendy Rolfson","age":58,"location":"Lindsayport"}},{"attributes":{"name":"Ernestina Kirlin","age":23,"location":"Irvine"}},{"attributes":{"name":"Oma Daniel-Hegmann","age":73,"location":"Royalworth"}},{"attributes":{"name":"Gabriel Stanton","age":55,"location":"North Derrickstad"}},{"attributes":{"name":"Mrs. Margarett Tromp-Mante","age":43,"location":"Lake Elenora"}},{"attributes":{"name":"Shelly Homenick Jr.","age":77,"location":"Indio"}},{"attributes":{"name":"Kaylah Stehr","age":34,"location":"Duluth"}},{"attributes":{"name":"Phillip Johnston","age":33,"location":"West Verdie"}},{"attributes":{"name":"Jim O'Kon-Prosacco","age":47,"location":"Lake Eviefort"}},{"attributes":{"name":"Juanita Bernhard","age":52,"location":"Kautzermouth"}},{"attributes":{"name":"Blake Doyle","age":65,"location":"Dallinberg"}},{"attributes":{"name":"Jennifer Runolfsdottir","age":60,"location":"Moenside"}},{"attributes":{"name":"Monique Yost","age":29,"location":"Durwardborough"}},{"attributes":{"name":"Jordan Hegmann","age":26,"location":"Fort Magnoliafort"}},{"attributes":{"name":"Louise Huels","age":42,"location":"Port Cristopherborough"}},{"attributes":{"name":"Ramiro Bechtelar","age":43,"location":"Lake Lerafurt"}},{"attributes":{"name":"Max Cummings II","age":62,"location":"Labadieland"}},{"attributes":{"name":"Kerry Lockman","age":18,"location":"New Omari"}},{"attributes":{"name":"Wendy Sanford","age":25,"location":"Wisokyside"}},{"attributes":{"name":"Erik Hegmann I","age":41,"location":"Haltown"}},{"attributes":{"name":"Ollie Howe","age":59,"location":"North Prudence"}},{"attributes":{"name":"Douglas O'Keefe IV","age":21,"location":"Funkborough"}},{"attributes":{"name":"Rosemarie Brekke","age":57,"location":"St. Paul"}},{"attributes":{"name":"Ambrose Brown","age":68,"location":"Pfannerstillshire"}},{"attributes":{"name":"Marcia Wolf","age":69,"location":"Carson City"}},{"attributes":{"name":"Ismael Schamberger","age":68,"location":"East Cordiefort"}},{"attributes":{"name":"Vernie Maggio","age":71,"location":"East Dionside"}},{"attributes":{"name":"Dr. Timmy Kozey","age":19,"location":"Lake Antwoncester"}},{"attributes":{"name":"Dr. Nelson Franecki-Lynch","age":50,"location":"Asaview"}},{"attributes":{"name":"Nathan Koelpin","age":62,"location":"Saraimouth"}},{"attributes":{"name":"Ruben Reichel","age":18,"location":"Caleview"}},{"attributes":{"name":"Candace Roob","age":49,"location":"Finnboro"}},{"attributes":{"name":"Robb Reichert","age":23,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Milton Prosacco","age":20,"location":"Riverview"}},{"attributes":{"name":"Jaime Frami","age":70,"location":"Lynn"}},{"attributes":{"name":"Nicholas O'Reilly Jr.","age":60,"location":"Lake Lloydtown"}},{"attributes":{"name":"Cedric Kub","age":25,"location":"North Dorthy"}},{"attributes":{"name":"Wade Streich","age":42,"location":"North Javier"}},{"attributes":{"name":"Vincent Mueller","age":73,"location":"Crookschester"}},{"attributes":{"name":"Dr. Stanford Weimann","age":42,"location":"Dayton"}},{"attributes":{"name":"Percy Fisher","age":52,"location":"Port Fabiola"}},{"attributes":{"name":"Lennie Simonis","age":34,"location":"East Leilani"}},{"attributes":{"name":"Edwin Greenfelder","age":40,"location":"O'Connerboro"}},{"attributes":{"name":"Nick Ondricka","age":53,"location":"South Nyahfort"}},{"attributes":{"name":"Adrienne Cassin","age":65,"location":"Pearlfort"}},{"attributes":{"name":"Mr. Tom Kub","age":25,"location":"San Mateo"}},{"attributes":{"name":"Oliver Ullrich","age":74,"location":"Hersheltown"}},{"attributes":{"name":"Hildegard Kuhn","age":48,"location":"Fort Kendall"}},{"attributes":{"name":"Coy Bogisich","age":33,"location":"Elinorecester"}},{"attributes":{"name":"Finn Towne","age":25,"location":"South Moshechester"}},{"attributes":{"name":"Lorenza Douglas","age":39,"location":"Salt Lake City"}},{"attributes":{"name":"Pam Erdman","age":18,"location":"Eunacester"}},{"attributes":{"name":"Devin Konopelski","age":40,"location":"Lake Percivalburgh"}},{"attributes":{"name":"Debbie Sanford","age":68,"location":"Erdmanstad"}},{"attributes":{"name":"Cesar Powlowski","age":22,"location":"Placentia"}},{"attributes":{"name":"Grayce Cole-Ritchie","age":73,"location":"Macejkovicshire"}},{"attributes":{"name":"Courtney Walker","age":20,"location":"Dietrichstad"}},{"attributes":{"name":"Tony Barton","age":38,"location":"Kovacekfort"}},{"attributes":{"name":"Willis Nolan","age":31,"location":"Bayerland"}},{"attributes":{"name":"Aglae Muller","age":22,"location":"Moenmouth"}},{"attributes":{"name":"Melvin Huel","age":69,"location":"Waltershire"}},{"attributes":{"name":"Lester Lemke","age":21,"location":"Wintheiserstad"}},{"attributes":{"name":"Franz Steuber","age":60,"location":"Nitzscheville"}},{"attributes":{"name":"Dr. Nicholas Gerlach","age":19,"location":"Caterinaboro"}},{"attributes":{"name":"Josefina Marquardt","age":72,"location":"New Sammietown"}},{"attributes":{"name":"Clark Schaden","age":37,"location":"Rogahnborough"}},{"attributes":{"name":"Everardo Friesen","age":37,"location":"South Bend"}},{"attributes":{"name":"Anabel Harber","age":70,"location":"New Kendraberg"}},{"attributes":{"name":"Mrs. Oceane Kihn II","age":23,"location":"Bradenton"}},{"attributes":{"name":"Miss Clifford Langworth","age":19,"location":"Rathview"}},{"attributes":{"name":"Marie Roberts","age":71,"location":"West Lanecester"}},{"attributes":{"name":"Meggie Reinger","age":65,"location":"Port St. Lucie"}},{"attributes":{"name":"Mauricio Hermann IV","age":57,"location":"Oscarborough"}},{"attributes":{"name":"Nelson Price","age":26,"location":"Violetfort"}},{"attributes":{"name":"Orpha Mitchell","age":24,"location":"Coconut Creek"}},{"attributes":{"name":"Tony Huel","age":67,"location":"Abilene"}},{"attributes":{"name":"Rene Tremblay","age":66,"location":"New Leola"}},{"attributes":{"name":"Bonnie Fisher","age":62,"location":"Bernhardboro"}},{"attributes":{"name":"Colin Glover","age":66,"location":"Fort Shyann"}},{"attributes":{"name":"Earnest Hermann Sr.","age":63,"location":"Schoenstad"}},{"attributes":{"name":"Audreanne Huels","age":30,"location":"North Norvalmouth"}},{"attributes":{"name":"Nathaniel Moore","age":23,"location":"South Jordan"}},{"attributes":{"name":"Elisa Roob","age":38,"location":"Janaeland"}},{"attributes":{"name":"Fern Rowe","age":29,"location":"Twin Falls"}},{"attributes":{"name":"Sigurd Lehner","age":25,"location":"Schusterchester"}},{"attributes":{"name":"Laura Bins","age":64,"location":"East Destineeshire"}},{"attributes":{"name":"Muriel Braun","age":60,"location":"North Malvina"}},{"attributes":{"name":"Mitchell Daugherty","age":61,"location":"Port Sanford"}},{"attributes":{"name":"Robin Gleichner","age":75,"location":"Samirville"}},{"attributes":{"name":"Alberto Bins-Koepp PhD","age":47,"location":"Murphyland"}},{"attributes":{"name":"Hope Friesen","age":41,"location":"Chaddfield"}},{"attributes":{"name":"Caleb Walsh","age":18,"location":"Lake Violettefort"}},{"attributes":{"name":"Darian Hand","age":32,"location":"Runolfssonstead"}},{"attributes":{"name":"Della Jakubowski","age":63,"location":"Hegmannstad"}},{"attributes":{"name":"Miss Shannon Braun","age":61,"location":"New Liamshire"}},{"attributes":{"name":"Theresa Schulist","age":19,"location":"Port Beaulah"}},{"attributes":{"name":"Desiree Hamill","age":42,"location":"Cartermouth"}},{"attributes":{"name":"Rochelle Flatley","age":60,"location":"Tinley Park"}},{"attributes":{"name":"Wallace Littel","age":41,"location":"Larkintown"}},{"attributes":{"name":"Alec Howe","age":49,"location":"Jeromehaven"}},{"attributes":{"name":"Ms. Mike Block-Howell","age":20,"location":"San Marcos"}},{"attributes":{"name":"America Jaskolski","age":64,"location":"Elbertstead"}},{"attributes":{"name":"Jamie Senger","age":72,"location":"Fort Theostead"}},{"attributes":{"name":"Colleen Dickens","age":30,"location":"East Alessiacester"}},{"attributes":{"name":"Madalyn Hahn","age":75,"location":"Joannyfort"}},{"attributes":{"name":"Jess Runolfsdottir","age":44,"location":"Pouroscester"}},{"attributes":{"name":"Chauncey Ondricka V","age":55,"location":"Allychester"}},{"attributes":{"name":"Ciara Labadie","age":43,"location":"East Reginald"}},{"attributes":{"name":"Kasandra Purdy","age":35,"location":"Deionstead"}},{"attributes":{"name":"Nancy Waelchi","age":80,"location":"Aleenton"}},{"attributes":{"name":"Ellen Brown","age":41,"location":"Dietrichshire"}},{"attributes":{"name":"Alivia Hills PhD","age":58,"location":"Nolantown"}},{"attributes":{"name":"Michael Hahn","age":38,"location":"Lednerworth"}},{"attributes":{"name":"Rocio Romaguera","age":26,"location":"Lake Christyton"}},{"attributes":{"name":"Melinda Cole","age":50,"location":"Mountain View"}},{"attributes":{"name":"Dr. Leo Reinger PhD","age":29,"location":"South Deliaview"}},{"attributes":{"name":"Neil Gutmann","age":54,"location":"Lake Marilyne"}},{"attributes":{"name":"Alyssa Smitham","age":45,"location":"Colton"}},{"attributes":{"name":"Eino Klein-Bechtelar","age":51,"location":"Wiltonstead"}},{"attributes":{"name":"Brendan Streich","age":45,"location":"Janeville"}},{"attributes":{"name":"Gregory Flatley","age":57,"location":"Lake Jovani"}},{"attributes":{"name":"Jermey Rippin","age":55,"location":"Lake Garettborough"}},{"attributes":{"name":"Melvin Braun","age":38,"location":"Mohrborough"}},{"attributes":{"name":"Mrs. Kathleen Crona","age":25,"location":"Lake Doris"}},{"attributes":{"name":"Sarai Barton","age":39,"location":"Mariocester"}},{"attributes":{"name":"Jeremy Gulgowski","age":62,"location":"Howellchester"}},{"attributes":{"name":"Leone Kreiger","age":45,"location":"West Courtney"}},{"attributes":{"name":"Mr. Spencer Wuckert PhD","age":23,"location":"Atascocita"}},{"attributes":{"name":"Mr. Armand Wilkinson PhD","age":25,"location":"Glendale"}},{"attributes":{"name":"Vickie Torphy","age":70,"location":"Crooksfurt"}},{"attributes":{"name":"Annabel Jacobs-D'Amore Jr.","age":47,"location":"Halvorsonstad"}},{"attributes":{"name":"Barton Lang","age":43,"location":"New Shaun"}},{"attributes":{"name":"Mary Pacocha","age":40,"location":"Fayhaven"}},{"attributes":{"name":"Kyle Ratke","age":21,"location":"East Ceciliachester"}},{"attributes":{"name":"Jason Howe","age":40,"location":"New Giovanni"}},{"attributes":{"name":"Elvira Hermann","age":32,"location":"Fort Elysetown"}},{"attributes":{"name":"Kent Wyman MD","age":62,"location":"Vilmaview"}},{"attributes":{"name":"Debbie Frami","age":42,"location":"Millcreek"}},{"attributes":{"name":"Sheila Bergstrom","age":66,"location":"Felixboro"}},{"attributes":{"name":"Eleanore Schaefer","age":20,"location":"Lake Deven"}},{"attributes":{"name":"Betsy Hartmann","age":62,"location":"Lake Lavonne"}},{"attributes":{"name":"Darnell Schuster","age":24,"location":"Chino Hills"}},{"attributes":{"name":"Dr. Dakota Kassulke","age":62,"location":"Fort Hazelton"}},{"attributes":{"name":"Emmie Dach","age":73,"location":"West Tadstead"}},{"attributes":{"name":"Judd Nikolaus","age":27,"location":"San Tan Valley"}},{"attributes":{"name":"Garry Ziemann","age":78,"location":"South Jaylenboro"}},{"attributes":{"name":"Eldred Nader","age":78,"location":"Fort Jaylenburgh"}},{"attributes":{"name":"Otis Keeling","age":54,"location":"Port Timothymouth"}},{"attributes":{"name":"Jeff Denesik DDS","age":72,"location":"Torpchester"}},{"attributes":{"name":"Idella D'Amore I","age":30,"location":"South Dorianfort"}},{"attributes":{"name":"Cletus Schoen","age":25,"location":"Chino"}},{"attributes":{"name":"Beulah Stamm","age":25,"location":"Kendale Lakes"}},{"attributes":{"name":"Allen McLaughlin II","age":66,"location":"South Damianmouth"}},{"attributes":{"name":"Terrell Dare","age":67,"location":"South Allyburgh"}},{"attributes":{"name":"Cathy Witting","age":65,"location":"New Adalberto"}},{"attributes":{"name":"Jordane Schaefer","age":58,"location":"Port Franciscamouth"}},{"attributes":{"name":"Stephania Romaguera","age":19,"location":"Caldwell"}},{"attributes":{"name":"Reagan Buckridge","age":19,"location":"Fort Austenstead"}},{"attributes":{"name":"Alexane Turner","age":37,"location":"New Davin"}},{"attributes":{"name":"Gregory Boyle","age":55,"location":"Bergnaumfurt"}},{"attributes":{"name":"Francis Jones","age":44,"location":"Gusikowskiboro"}},{"attributes":{"name":"Kenya Runte","age":53,"location":"Forrestworth"}},{"attributes":{"name":"Viva Becker","age":20,"location":"Fort Vickiechester"}},{"attributes":{"name":"Leland Hodkiewicz","age":56,"location":"North Leonefurt"}},{"attributes":{"name":"Sonja Raynor","age":58,"location":"Schneiderview"}},{"attributes":{"name":"Irma Sanford","age":80,"location":"Maurinechester"}},{"attributes":{"name":"Pietro Kirlin","age":20,"location":"East Herminioside"}},{"attributes":{"name":"Aliyah Haley","age":70,"location":"East Evafield"}},{"attributes":{"name":"Ms. Clayton Cormier","age":70,"location":"Scottsdale"}},{"attributes":{"name":"Jakob McDermott","age":54,"location":"Priceland"}},{"attributes":{"name":"Lamont Stark","age":43,"location":"Port Monserrat"}},{"attributes":{"name":"Timmothy Toy","age":57,"location":"Dorcaston"}},{"attributes":{"name":"Harry Klocko","age":70,"location":"Waipahu"}},{"attributes":{"name":"Gregory Gerhold Sr.","age":56,"location":"Mertzton"}},{"attributes":{"name":"Dr. Cierra Thiel III","age":59,"location":"Visalia"}},{"attributes":{"name":"Maritza Hickle MD","age":47,"location":"East Kaylahside"}},{"attributes":{"name":"Marie D'Amore","age":49,"location":"Summerstad"}},{"attributes":{"name":"Nick Emmerich","age":31,"location":"Marcellachester"}},{"attributes":{"name":"Ramiro Aufderhar","age":20,"location":"South Sandy"}},{"attributes":{"name":"Francisca Schultz","age":76,"location":"Fort Alessandra"}},{"attributes":{"name":"Leone Parker","age":21,"location":"East Theron"}},{"attributes":{"name":"Dr. Rudolph Dooley","age":63,"location":"Mishawaka"}},{"attributes":{"name":"Maria Torphy PhD","age":58,"location":"Mariettachester"}},{"attributes":{"name":"Ms. Debbie Hand","age":31,"location":"Daughertymouth"}},{"attributes":{"name":"Rochelle Beatty","age":71,"location":"Beierborough"}},{"attributes":{"name":"Merle Douglas","age":69,"location":"East Maybell"}},{"attributes":{"name":"Dr. Tyra Kemmer-Mueller","age":42,"location":"Lompoc"}},{"attributes":{"name":"Kim Macejkovic","age":58,"location":"Leannonside"}},{"attributes":{"name":"Paula O'Conner","age":38,"location":"West Keyonfield"}},{"attributes":{"name":"Ms. Donnie Quitzon","age":47,"location":"Fisherton"}},{"attributes":{"name":"Ms. Angel Kuhn","age":77,"location":"Kihnstead"}},{"attributes":{"name":"Vern Lindgren DVM","age":48,"location":"Schowalterview"}},{"attributes":{"name":"Jeffery Paucek","age":24,"location":"Farmington Hills"}},{"attributes":{"name":"Haskell Jacobs","age":51,"location":"Fountainebleau"}},{"attributes":{"name":"Myrl Grimes","age":37,"location":"New Xzavier"}},{"attributes":{"name":"Doris Langosh","age":71,"location":"South Anya"}},{"attributes":{"name":"Gloria Abbott","age":29,"location":"East Cleora"}},{"attributes":{"name":"Nora Orn","age":57,"location":"Wardberg"}},{"attributes":{"name":"Ruby Upton","age":45,"location":"Lerafort"}},{"attributes":{"name":"Conner Lockman PhD","age":48,"location":"Port Aaronport"}},{"attributes":{"name":"Marcella Walter","age":58,"location":"North Myron"}},{"attributes":{"name":"Henry Rogahn","age":59,"location":"Niagara Falls"}},{"attributes":{"name":"Lera Keebler","age":62,"location":"Southaven"}},{"attributes":{"name":"Lauryn Denesik","age":29,"location":"Casper"}},{"attributes":{"name":"Miriam Bailey","age":37,"location":"Port Adolph"}},{"attributes":{"name":"Mrs. Sonya Zieme","age":50,"location":"Kristafurt"}},{"attributes":{"name":"Mikayla Wolff","age":75,"location":"Ondrickaside"}},{"attributes":{"name":"Neal Kohler II","age":21,"location":"Finnbury"}},{"attributes":{"name":"Hunter Zemlak MD","age":28,"location":"Fort Henriette"}},{"attributes":{"name":"Saul Kerluke","age":72,"location":"Dachside"}},{"attributes":{"name":"Mr. James Klein","age":31,"location":"Dameonburgh"}},{"attributes":{"name":"Christie Christiansen","age":78,"location":"Guillermoboro"}},{"attributes":{"name":"Hazle Prohaska PhD","age":25,"location":"Adamsfurt"}},{"attributes":{"name":"Lora Renner","age":64,"location":"Bel Air South"}},{"attributes":{"name":"Jerel Kuvalis DVM","age":35,"location":"South Bell"}},{"attributes":{"name":"Dr. Rosella Ankunding","age":49,"location":"Jonesboro"}},{"attributes":{"name":"Jenifer Anderson","age":54,"location":"Kalebhaven"}},{"attributes":{"name":"Maxine Walsh","age":21,"location":"Vacaville"}},{"attributes":{"name":"Wm Leuschke","age":45,"location":"San Ramon"}},{"attributes":{"name":"Tommie Batz","age":40,"location":"Fort Lourdesshire"}},{"attributes":{"name":"Alfredo Batz","age":36,"location":"Grahamtown"}},{"attributes":{"name":"Justin Prosacco","age":65,"location":"Niagara Falls"}},{"attributes":{"name":"Rosalia Zemlak","age":80,"location":"South Shawn"}},{"attributes":{"name":"Margarita Adams","age":48,"location":"New Carey"}},{"attributes":{"name":"Scot Blanda","age":74,"location":"Jeremyworth"}},{"attributes":{"name":"Lura Graham","age":46,"location":"Alannaside"}},{"attributes":{"name":"Nathan Labadie","age":59,"location":"Jessieboro"}},{"attributes":{"name":"Adolfo King","age":52,"location":"Derickland"}},{"attributes":{"name":"Mrs. Sally Pagac","age":61,"location":"Toyview"}},{"attributes":{"name":"April Tillman","age":45,"location":"West Dashawn"}},{"attributes":{"name":"Kaelyn Rolfson DVM","age":57,"location":"Lillatown"}},{"attributes":{"name":"Mireya Prohaska","age":25,"location":"North Miami Beach"}},{"attributes":{"name":"Thomas Parisian DVM","age":58,"location":"Fort Wiltonland"}},{"attributes":{"name":"Betty Lind Jr.","age":75,"location":"St. Louis"}},{"attributes":{"name":"Jan Lebsack","age":35,"location":"Vellastead"}},{"attributes":{"name":"Shawn Waelchi","age":61,"location":"Brycenboro"}},{"attributes":{"name":"Maria Kuhn","age":51,"location":"New Frankieboro"}},{"attributes":{"name":"Sylvester Okuneva","age":57,"location":"Huelboro"}},{"attributes":{"name":"Marianne Howe","age":18,"location":"Dariusborough"}},{"attributes":{"name":"Loyal Price","age":65,"location":"New Arelyton"}},{"attributes":{"name":"Faith Runte","age":49,"location":"Doylefield"}},{"attributes":{"name":"Irma Prosacco","age":20,"location":"Lake Bettye"}},{"attributes":{"name":"Marcus Buckridge","age":31,"location":"South Venachester"}},{"attributes":{"name":"Kamryn Walter","age":78,"location":"Ryanside"}},{"attributes":{"name":"Jany Rutherford","age":49,"location":"Barrowsburgh"}},{"attributes":{"name":"Esmeralda Sipes","age":25,"location":"Pompano Beach"}},{"attributes":{"name":"Paolo Gorczany","age":61,"location":"North Bridie"}},{"attributes":{"name":"Abraham Johnson","age":62,"location":"Maudetown"}},{"attributes":{"name":"Willis Paucek","age":37,"location":"Fort Eltaburgh"}},{"attributes":{"name":"Derrick Windler","age":80,"location":"North Sonnystead"}},{"attributes":{"name":"Elisa Morissette","age":75,"location":"Cleoraborough"}},{"attributes":{"name":"Ken O'Keefe","age":33,"location":"Huelsside"}},{"attributes":{"name":"Mrs. Ashley Cormier","age":24,"location":"Fort Bridgette"}},{"attributes":{"name":"Zachary Beahan","age":38,"location":"Braunstad"}},{"attributes":{"name":"Sara Romaguera-Runolfsson","age":24,"location":"Corkeryburgh"}},{"attributes":{"name":"Emelia Weimann","age":60,"location":"Fort Dorian"}},{"attributes":{"name":"Milo Koch DDS","age":38,"location":"New Romainehaven"}},{"attributes":{"name":"Howard Orn","age":61,"location":"Kentonchester"}},{"attributes":{"name":"Shaun Rodriguez","age":59,"location":"Allen"}},{"attributes":{"name":"Al Quitzon","age":77,"location":"Brownhaven"}},{"attributes":{"name":"Rosalie Mueller PhD","age":32,"location":"Haltom City"}},{"attributes":{"name":"Noel O'Conner","age":25,"location":"Sheboygan"}},{"attributes":{"name":"Dakota Herman","age":79,"location":"North Miami Beach"}},{"attributes":{"name":"Mrs. Jodi Quigley","age":69,"location":"Wilkinsonside"}},{"attributes":{"name":"Connie Prohaska-Murazik","age":26,"location":"Port Hollystad"}},{"attributes":{"name":"Dr. Rafael Effertz","age":52,"location":"Bedford"}},{"attributes":{"name":"Ryann Haag","age":64,"location":"New Minahaven"}},{"attributes":{"name":"Krystal Renner","age":18,"location":"Vandervortfield"}},{"attributes":{"name":"Horace Anderson V","age":42,"location":"West Abeborough"}},{"attributes":{"name":"Julian Sawayn","age":30,"location":"San Diego"}},{"attributes":{"name":"Jacob Schroeder-Sipes","age":62,"location":"Boise City"}},{"attributes":{"name":"Mrs. Alize Hane","age":68,"location":"Seanburgh"}},{"attributes":{"name":"Dr. Alvin Kunde","age":80,"location":"Fort Tremayne"}},{"attributes":{"name":"Morris Kilback","age":68,"location":"Clintshire"}},{"attributes":{"name":"Arthur Hamill","age":74,"location":"Glen Burnie"}},{"attributes":{"name":"Gene Bednar","age":68,"location":"Judgeboro"}},{"attributes":{"name":"Arturo Champlin","age":22,"location":"Towson"}},{"attributes":{"name":"Kerry Bergstrom-Orn","age":49,"location":"East Dedric"}},{"attributes":{"name":"Melinda Luettgen","age":25,"location":"Edina"}},{"attributes":{"name":"Carissa Murazik","age":71,"location":"Mustafachester"}},{"attributes":{"name":"Arlie Weimann","age":47,"location":"North Chet"}},{"attributes":{"name":"Sherri O'Keefe","age":72,"location":"Borerport"}},{"attributes":{"name":"Susana Wolff","age":21,"location":"Berniechester"}},{"attributes":{"name":"Lenny Ziemann","age":76,"location":"Enterprise"}},{"attributes":{"name":"Sharon Mitchell","age":24,"location":"Irondequoit"}},{"attributes":{"name":"Sarah Kuhlman","age":40,"location":"Bahringerfield"}},{"attributes":{"name":"Floyd Feil","age":46,"location":"Auerview"}},{"attributes":{"name":"Bennie Nienow","age":40,"location":"East Aliza"}},{"attributes":{"name":"Abdullah Champlin","age":39,"location":"North Trevorside"}},{"attributes":{"name":"Ernesto Greenfelder","age":59,"location":"Harmonybury"}},{"attributes":{"name":"Maurine Ryan MD","age":43,"location":"Monahanside"}},{"attributes":{"name":"Marc Kuhic","age":46,"location":"Jonestown"}},{"attributes":{"name":"Paula Schoen","age":20,"location":"Burbank"}},{"attributes":{"name":"Isaiah Farrell II","age":31,"location":"Clarissachester"}},{"attributes":{"name":"Arturo Collins","age":70,"location":"East Ellastad"}},{"attributes":{"name":"Hardy Effertz","age":67,"location":"Durganhaven"}},{"attributes":{"name":"Dorris Braun","age":45,"location":"Eastvale"}},{"attributes":{"name":"Domenico Ortiz","age":78,"location":"Shoreline"}},{"attributes":{"name":"Rodney Hudson","age":50,"location":"Avondale"}},{"attributes":{"name":"Pat Waelchi","age":33,"location":"North Furman"}},{"attributes":{"name":"Haskell Greenholt","age":26,"location":"North Daisy"}},{"attributes":{"name":"Francis Trantow","age":39,"location":"Port Jayson"}},{"attributes":{"name":"Lavern Hahn IV","age":44,"location":"Port Brentland"}},{"attributes":{"name":"Vivian Kub","age":62,"location":"Lake Eugenia"}},{"attributes":{"name":"Mr. Gerald Hoppe","age":32,"location":"South Christelleview"}},{"attributes":{"name":"Kenyon Schaefer","age":71,"location":"Bridgettefield"}},{"attributes":{"name":"Skyla Trantow","age":65,"location":"Port Evangeline"}},{"attributes":{"name":"Rachael Hettinger-Corwin IV","age":74,"location":"Swiftchester"}},{"attributes":{"name":"Warren Bailey","age":62,"location":"Hayesfort"}},{"attributes":{"name":"Gerry Stoltenberg Jr.","age":25,"location":"South Hughstad"}},{"attributes":{"name":"Mr. Daniel Altenwerth","age":38,"location":"Lindgrenberg"}},{"attributes":{"name":"Jeffery Lowe","age":35,"location":"North Domenickview"}},{"attributes":{"name":"Rolando Kohler","age":44,"location":"New Rebecca"}},{"attributes":{"name":"Dr. Tony Volkman","age":77,"location":"Friesenstad"}},{"attributes":{"name":"Bob Beahan","age":27,"location":"East Tressastead"}},{"attributes":{"name":"Abraham Lemke","age":77,"location":"Hauckshire"}},{"attributes":{"name":"Autumn Littel-Osinski","age":26,"location":"South Dallaston"}},{"attributes":{"name":"Josh Moore","age":57,"location":"Ferryborough"}},{"attributes":{"name":"Brandt Hegmann","age":76,"location":"Reno"}},{"attributes":{"name":"Lottie Stroman","age":58,"location":"West Jovan"}},{"attributes":{"name":"Noah Wisozk","age":80,"location":"Langview"}},{"attributes":{"name":"Marcella Swaniawski","age":53,"location":"Greenholtworth"}},{"attributes":{"name":"Fredrick Anderson","age":39,"location":"San Marcos"}},{"attributes":{"name":"Mrs. Tatum Cronin","age":20,"location":"Geochester"}},{"attributes":{"name":"Olga Rohan","age":61,"location":"Katrinaborough"}},{"attributes":{"name":"Mr. Sheila Wunsch","age":23,"location":"Bryan"}},{"attributes":{"name":"Mrs. Jaquan Hintz PhD","age":20,"location":"West Adolfo"}},{"attributes":{"name":"Dr. Kendra Glover","age":33,"location":"Murfreesboro"}},{"attributes":{"name":"Javier Hauck","age":73,"location":"Port Amandaborough"}},{"attributes":{"name":"Chase Cruickshank","age":44,"location":"Port Osbaldoboro"}},{"attributes":{"name":"Dr. Ramon Borer","age":64,"location":"North Ethahaven"}},{"attributes":{"name":"Erma Ratke","age":65,"location":"Hesselview"}},{"attributes":{"name":"Dr. Seth Raynor IV","age":32,"location":"South Eleanore"}},{"attributes":{"name":"Erma Runolfsson","age":70,"location":"Rochester"}},{"attributes":{"name":"Carlee Jaskolski","age":65,"location":"Ludieberg"}},{"attributes":{"name":"Hubert Hahn","age":62,"location":"Alexaton"}},{"attributes":{"name":"Alva Stark","age":35,"location":"Billings"}},{"attributes":{"name":"Charlie Kuvalis","age":29,"location":"Lockmanbury"}},{"attributes":{"name":"Jacob Koch","age":64,"location":"Nikolausside"}},{"attributes":{"name":"Fatima Conroy","age":51,"location":"Wyoming"}},{"attributes":{"name":"Julio Simonis","age":66,"location":"South Kaleland"}},{"attributes":{"name":"Velma Mraz","age":39,"location":"New Reggietown"}},{"attributes":{"name":"Misty Romaguera","age":24,"location":"Braunborough"}},{"attributes":{"name":"Mr. Geneva Dach","age":24,"location":"Reginaldboro"}},{"attributes":{"name":"Xander Douglas","age":24,"location":"Lake Tarynworth"}},{"attributes":{"name":"Ms. Lela Grimes","age":48,"location":"Olafburgh"}},{"attributes":{"name":"Rickey Gutkowski","age":31,"location":"Maycester"}},{"attributes":{"name":"Jeffery Macejkovic III","age":68,"location":"Spring"}},{"attributes":{"name":"Ira Davis","age":78,"location":"Rubieshire"}},{"attributes":{"name":"Dr. Essie Berge","age":42,"location":"Shannaworth"}},{"attributes":{"name":"Luke Cassin","age":40,"location":"North Wilfred"}},{"attributes":{"name":"Theodore Schroeder","age":41,"location":"Jackieshire"}},{"attributes":{"name":"Lowell Schulist","age":62,"location":"East Mose"}},{"attributes":{"name":"Carroll Schneider-Green","age":26,"location":"Beierborough"}},{"attributes":{"name":"Leo Ortiz","age":37,"location":"East Trudie"}},{"attributes":{"name":"Bennett Moore V","age":38,"location":"Canton"}},{"attributes":{"name":"Vivian Lowe","age":30,"location":"Luraborough"}},{"attributes":{"name":"Vanessa Rowe","age":57,"location":"Lake Lillianahaven"}},{"attributes":{"name":"Tamara Klocko","age":49,"location":"Reinacester"}},{"attributes":{"name":"Brice Jacobi","age":70,"location":"Kyliestead"}},{"attributes":{"name":"Rosina Considine","age":45,"location":"North Hudson"}},{"attributes":{"name":"Omer Hand","age":79,"location":"New Ernestinaland"}},{"attributes":{"name":"Julius Mayert","age":39,"location":"Port Alysha"}},{"attributes":{"name":"Lynn Rempel","age":30,"location":"Hutchinson"}},{"attributes":{"name":"Leilani Willms","age":47,"location":"East Veda"}},{"attributes":{"name":"Lonie Nicolas","age":61,"location":"Virginiecester"}},{"attributes":{"name":"Kara Dare","age":70,"location":"Lake Annettatown"}},{"attributes":{"name":"Wava Funk","age":56,"location":"Port Declanboro"}},{"attributes":{"name":"Dina Lindgren","age":78,"location":"North Kane"}},{"attributes":{"name":"Ms. Courtney Hansen","age":51,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Jane Schiller","age":73,"location":"Fort Lauderdale"}},{"attributes":{"name":"Kiel Davis","age":55,"location":"East Karliville"}},{"attributes":{"name":"Mavis Terry","age":55,"location":"Port Gabriella"}},{"attributes":{"name":"Nathanial Rau","age":68,"location":"Cleveside"}},{"attributes":{"name":"Keshawn Stracke","age":75,"location":"North David"}},{"attributes":{"name":"Dr. Aaron Kling","age":22,"location":"Freddyborough"}},{"attributes":{"name":"Ben Dietrich","age":34,"location":"Jermaineside"}},{"attributes":{"name":"Mr. Earlene Schimmel","age":71,"location":"Rolfsonfort"}},{"attributes":{"name":"Payton Waelchi","age":19,"location":"Fort Ettiebury"}},{"attributes":{"name":"Lorena Gerhold","age":60,"location":"Eribertoside"}},{"attributes":{"name":"Margaret Lang","age":46,"location":"North Bridgette"}},{"attributes":{"name":"Brenda Wunsch","age":46,"location":"Lake Leo"}},{"attributes":{"name":"Margie Raynor DDS","age":37,"location":"Kirlinfort"}},{"attributes":{"name":"Derek Bechtelar","age":65,"location":"South Lance"}},{"attributes":{"name":"Julianne Reilly","age":24,"location":"Monahancester"}},{"attributes":{"name":"Rose Mayer","age":54,"location":"West Annabellmouth"}},{"attributes":{"name":"Raymond Stiedemann","age":40,"location":"Langworthborough"}},{"attributes":{"name":"Patricia Cummings","age":20,"location":"South Myah"}},{"attributes":{"name":"Colten Muller","age":63,"location":"East Angeline"}},{"attributes":{"name":"Jean Crist DDS","age":32,"location":"Ortizberg"}},{"attributes":{"name":"Myrtice Maggio","age":50,"location":"Reynoldstown"}},{"attributes":{"name":"Annamae Tromp DDS","age":27,"location":"East Mack"}},{"attributes":{"name":"Sabrina Cassin PhD","age":47,"location":"Kavonstead"}},{"attributes":{"name":"Lynn Zulauf","age":52,"location":"Ivoryburgh"}},{"attributes":{"name":"Glenn Casper MD","age":28,"location":"Cranston"}},{"attributes":{"name":"Myra Beer","age":51,"location":"Sengermouth"}},{"attributes":{"name":"Leslie Cole","age":66,"location":"South Gradyberg"}},{"attributes":{"name":"Jean Luettgen","age":54,"location":"West Jimmiechester"}},{"attributes":{"name":"Joseph Powlowski","age":64,"location":"Schambergerworth"}},{"attributes":{"name":"Skyla Baumbach","age":79,"location":"Haagchester"}},{"attributes":{"name":"Donna Friesen","age":52,"location":"South Niashire"}},{"attributes":{"name":"Darrell Jerde","age":27,"location":"San Angelo"}},{"attributes":{"name":"Karelle Stokes","age":61,"location":"South Lottietown"}},{"attributes":{"name":"Hilda Zieme","age":26,"location":"Bustertown"}},{"attributes":{"name":"Sabrina Corkery","age":41,"location":"Kunzetown"}},{"attributes":{"name":"Johnson Jacobson","age":28,"location":"Schaeferland"}},{"attributes":{"name":"Marcella Ortiz","age":49,"location":"Addisonville"}},{"attributes":{"name":"Rahul Kuhlman","age":46,"location":"New Araceliville"}},{"attributes":{"name":"Kim Schaefer","age":18,"location":"Greenfelderside"}},{"attributes":{"name":"Berneice Tillman","age":61,"location":"Fort Linda"}},{"attributes":{"name":"Alicia Veum","age":36,"location":"Haleyburgh"}},{"attributes":{"name":"Lorraine Turcotte","age":49,"location":"Lodi"}},{"attributes":{"name":"Nicholas McKenzie","age":51,"location":"Hutchinson"}},{"attributes":{"name":"Tressie Hackett II","age":79,"location":"Fort Ardellacester"}},{"attributes":{"name":"Orion Becker","age":58,"location":"Dietrichburgh"}},{"attributes":{"name":"Royce Walsh Jr.","age":49,"location":"Kayafurt"}},{"attributes":{"name":"Bobby Robel","age":70,"location":"Harveyhaven"}},{"attributes":{"name":"Wendy Dicki","age":72,"location":"Betsyside"}},{"attributes":{"name":"Earline Dach","age":29,"location":"West Easton"}},{"attributes":{"name":"Jesse Okuneva","age":65,"location":"Rocklin"}},{"attributes":{"name":"Mark Gorczany","age":40,"location":"New Dell"}},{"attributes":{"name":"Gust Heidenreich DVM","age":73,"location":"South Wellington"}},{"attributes":{"name":"Erika Johns-Watsica","age":66,"location":"East Lewisview"}},{"attributes":{"name":"Amie Nikolaus DDS","age":47,"location":"Durgantown"}},{"attributes":{"name":"Horacio Jones","age":73,"location":"Adamfield"}},{"attributes":{"name":"Stephanie Kuvalis","age":39,"location":"Plano"}},{"attributes":{"name":"Mr. Destany Ryan","age":24,"location":"Mayaguez"}},{"attributes":{"name":"Mr. Leonard Walker","age":55,"location":"Rockville"}},{"attributes":{"name":"Calvin Runolfsdottir","age":32,"location":"Rock Hill"}},{"attributes":{"name":"Brian Herman MD","age":42,"location":"Lake Lavonneworth"}},{"attributes":{"name":"Orville Willms","age":33,"location":"Arielleborough"}},{"attributes":{"name":"Josefina Lakin Sr.","age":35,"location":"Gradyborough"}},{"attributes":{"name":"Felix Bernier","age":24,"location":"North Stephenton"}},{"attributes":{"name":"Gilberto Kirlin","age":75,"location":"North Skylar"}},{"attributes":{"name":"Jackie Krajcik","age":80,"location":"South Lexiborough"}},{"attributes":{"name":"Joey Baumbach","age":77,"location":"Lake Isabellaview"}},{"attributes":{"name":"Toni Price","age":63,"location":"South Christelleborough"}},{"attributes":{"name":"Micheal Bosco","age":72,"location":"Gresham"}},{"attributes":{"name":"Peggy Graham","age":69,"location":"Nicoletteboro"}},{"attributes":{"name":"Julian Klein","age":34,"location":"Torrance"}},{"attributes":{"name":"Clayton Waters","age":64,"location":"Gutmannport"}},{"attributes":{"name":"Cornelius Turcotte","age":50,"location":"Yundtville"}},{"attributes":{"name":"Sue Schimmel","age":49,"location":"South Dewaynestad"}},{"attributes":{"name":"Ebony Torp","age":54,"location":"Goldnertown"}},{"attributes":{"name":"Cleveland Quigley","age":22,"location":"Fort Devin"}},{"attributes":{"name":"Elsa Wintheiser","age":43,"location":"North Abdiel"}},{"attributes":{"name":"Mr. Allen Hermiston","age":57,"location":"Fort Cheyanneboro"}},{"attributes":{"name":"Guadalupe Nienow","age":58,"location":"Homestead"}},{"attributes":{"name":"Violet Boyer","age":34,"location":"Hermancester"}},{"attributes":{"name":"Bridie Sauer","age":47,"location":"Murrieta"}},{"attributes":{"name":"Mr. Matt Koelpin","age":68,"location":"McKenzieview"}},{"attributes":{"name":"Anita Hand-Prohaska","age":54,"location":"Elizaside"}},{"attributes":{"name":"Salvatore Bradtke","age":71,"location":"New Adelia"}},{"attributes":{"name":"Frances Bosco-Kohler","age":39,"location":"West Ulises"}},{"attributes":{"name":"Margaret Wyman","age":65,"location":"East Hilma"}},{"attributes":{"name":"Melody Wilkinson IV","age":53,"location":"Fionaworth"}},{"attributes":{"name":"Cecilia Dickinson III","age":75,"location":"Saginaw"}},{"attributes":{"name":"Tomas Green","age":22,"location":"Cassinfurt"}},{"attributes":{"name":"Tyler Kunze PhD","age":61,"location":"South Samfurt"}},{"attributes":{"name":"Agnes Trantow","age":38,"location":"Pinellas Park"}},{"attributes":{"name":"Emiliano Murphy","age":68,"location":"North Colleen"}},{"attributes":{"name":"Hattie Dietrich","age":29,"location":"Lake Ottohaven"}},{"attributes":{"name":"Owen Bailey","age":21,"location":"North Victorhaven"}},{"attributes":{"name":"Miss Beatrice Miller","age":79,"location":"South Dorrisville"}},{"attributes":{"name":"Hannah Shields","age":27,"location":"Scranton"}},{"attributes":{"name":"Elaina Kulas","age":41,"location":"West Cierraville"}},{"attributes":{"name":"Blanche Collins","age":44,"location":"Enaville"}},{"attributes":{"name":"Patrick Graham","age":55,"location":"Lake Pattie"}},{"attributes":{"name":"Grace Crist","age":31,"location":"Oxnard"}},{"attributes":{"name":"Bradley Hudson","age":70,"location":"South Webster"}},{"attributes":{"name":"Uriel Streich","age":73,"location":"Fort Luther"}},{"attributes":{"name":"Hugh Gislason","age":56,"location":"Livermore"}},{"attributes":{"name":"Edythe Breitenberg","age":58,"location":"East Linneaport"}},{"attributes":{"name":"Lonzo Hoeger","age":18,"location":"Annieburgh"}},{"attributes":{"name":"Gerhard Kuphal","age":19,"location":"Adrianaborough"}},{"attributes":{"name":"Mr. Jerald Pfannerstill","age":27,"location":"Lavernside"}},{"attributes":{"name":"Viola Cremin","age":49,"location":"Kenosha"}},{"attributes":{"name":"Kerry Boyle Jr.","age":60,"location":"Chula Vista"}},{"attributes":{"name":"Ms. Esther Hauck Jr.","age":29,"location":"Lake Adolffield"}},{"attributes":{"name":"Kale Donnelly","age":48,"location":"Goldnerfield"}},{"attributes":{"name":"Mr. Ken Dicki","age":75,"location":"Mannmouth"}},{"attributes":{"name":"Jo Lang","age":30,"location":"South Chyna"}},{"attributes":{"name":"Audreanne Lowe","age":80,"location":"Treutelshire"}},{"attributes":{"name":"Mrs. Jenny Senger","age":63,"location":"East Lillie"}},{"attributes":{"name":"Crawford Quitzon DVM","age":50,"location":"Apopka"}},{"attributes":{"name":"Ray Stroman","age":33,"location":"East Herman"}},{"attributes":{"name":"Roberta Friesen-Breitenberg","age":27,"location":"Livonia"}},{"attributes":{"name":"Perry Kub-Windler","age":20,"location":"Plymouth"}},{"attributes":{"name":"Kayla Spinka","age":59,"location":"Lavernamouth"}},{"attributes":{"name":"Judith Bayer","age":19,"location":"Antoninaport"}},{"attributes":{"name":"Gary Cronin","age":34,"location":"Fort Columbus"}},{"attributes":{"name":"Erika Hansen","age":64,"location":"Leoniefield"}},{"attributes":{"name":"Tommy Sauer","age":73,"location":"Mauriceport"}},{"attributes":{"name":"Dedric Bode","age":76,"location":"Goldenchester"}},{"attributes":{"name":"Daryl Dickens","age":38,"location":"Arlington Heights"}},{"attributes":{"name":"Miss Aliza Kautzer","age":67,"location":"West Claudine"}},{"attributes":{"name":"Mr. Jamie Schiller","age":75,"location":"Port Delaneychester"}},{"attributes":{"name":"Johann Bayer","age":45,"location":"Jaydonworth"}},{"attributes":{"name":"Vickie Marquardt","age":35,"location":"East Lorenafort"}},{"attributes":{"name":"Mr. Felipe Boehm","age":25,"location":"West Coracester"}},{"attributes":{"name":"Devin Lang","age":63,"location":"Marquardtstead"}},{"attributes":{"name":"Alan Barton","age":40,"location":"Port Kavonburgh"}},{"attributes":{"name":"Claude Dare-Rutherford MD","age":59,"location":"Eau Claire"}},{"attributes":{"name":"Shanny Wolff","age":70,"location":"Janesville"}},{"attributes":{"name":"Van Bergstrom","age":51,"location":"North Abigaylestad"}},{"attributes":{"name":"Eve Adams","age":75,"location":"West Lisandro"}},{"attributes":{"name":"Elsie Parisian V","age":18,"location":"Fort Talia"}},{"attributes":{"name":"Violet Prohaska","age":39,"location":"West Timothyfield"}},{"attributes":{"name":"Jana Ruecker","age":29,"location":"New Matilda"}},{"attributes":{"name":"Patricia Wolff","age":75,"location":"New Jackson"}},{"attributes":{"name":"Donnie Schneider","age":79,"location":"Tavareschester"}},{"attributes":{"name":"Randal Luettgen","age":37,"location":"Fort Llewellynchester"}},{"attributes":{"name":"Bradley Wolff","age":57,"location":"Gisselleshire"}},{"attributes":{"name":"Verna Heaney","age":76,"location":"New Cristobal"}},{"attributes":{"name":"Kenyatta Von DDS","age":71,"location":"South Raheem"}},{"attributes":{"name":"Mr. Brennon O'Conner","age":38,"location":"Morissetteport"}},{"attributes":{"name":"Dr. Enos Haley","age":66,"location":"Dixieworth"}},{"attributes":{"name":"Lura Deckow","age":42,"location":"Edgarchester"}},{"attributes":{"name":"Ms. Milan Gusikowski","age":38,"location":"Portsmouth"}},{"attributes":{"name":"Marsha Turcotte","age":23,"location":"Homestead"}},{"attributes":{"name":"Luis Gerlach","age":54,"location":"Moenfurt"}},{"attributes":{"name":"Edwin Mohr","age":22,"location":"East Garland"}},{"attributes":{"name":"Mrs. Ebony Herman","age":24,"location":"South Jakaylaberg"}},{"attributes":{"name":"Miss Rachael Erdman","age":34,"location":"North Tracy"}},{"attributes":{"name":"Dr. Isaac Kris","age":25,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Gunner Hagenes","age":59,"location":"Kingbury"}},{"attributes":{"name":"Taurean Block","age":43,"location":"Kuphalfurt"}},{"attributes":{"name":"Mrs. Timmy Beahan","age":68,"location":"Malden"}},{"attributes":{"name":"Domingo Rice","age":43,"location":"Lynwood"}},{"attributes":{"name":"Lucie Grimes","age":59,"location":"Port Makenzie"}},{"attributes":{"name":"Ella Dach","age":70,"location":"Markschester"}},{"attributes":{"name":"Dr. Roosevelt Schneider","age":70,"location":"Ann Arbor"}},{"attributes":{"name":"Anita Gerlach","age":42,"location":"Des Moines"}},{"attributes":{"name":"Rebeca Fadel PhD","age":57,"location":"North Chrisberg"}},{"attributes":{"name":"Gertrude Quitzon","age":79,"location":"Cruickshankland"}},{"attributes":{"name":"Daryl Jones","age":37,"location":"Claudineview"}},{"attributes":{"name":"Joy Botsford","age":25,"location":"North Felicia"}},{"attributes":{"name":"Ryan Krajcik IV","age":71,"location":"Waipahu"}},{"attributes":{"name":"Blanche Lehner","age":33,"location":"Heaneystead"}},{"attributes":{"name":"Mr. Courtney Botsford","age":57,"location":"Port Diana"}},{"attributes":{"name":"Tony Rath","age":29,"location":"Paulinestead"}},{"attributes":{"name":"Elyse Kessler","age":64,"location":"Layton"}},{"attributes":{"name":"Miss Shayna Hegmann-Mertz","age":54,"location":"East Annabelle"}},{"attributes":{"name":"Sidney Hagenes V","age":39,"location":"Richland"}},{"attributes":{"name":"Aurelia Schroeder","age":76,"location":"West Herminiochester"}},{"attributes":{"name":"Violet Gutkowski","age":48,"location":"New Bedford"}},{"attributes":{"name":"Mr. Kenneth Kuphal","age":74,"location":"South Maribel"}},{"attributes":{"name":"Cecelia Weissnat","age":60,"location":"Rowecester"}},{"attributes":{"name":"Christina Lebsack III","age":52,"location":"Schmelerburgh"}},{"attributes":{"name":"Rebecca Bode","age":46,"location":"Juanaworth"}},{"attributes":{"name":"Dr. Edward Halvorson","age":51,"location":"West Orville"}},{"attributes":{"name":"Leslie Rippin","age":73,"location":"South Othahaven"}},{"attributes":{"name":"Chester Renner","age":57,"location":"Destineeside"}},{"attributes":{"name":"Lisa Corwin","age":18,"location":"Dearborn"}},{"attributes":{"name":"Amaya Gleichner IV","age":75,"location":"North Urbancester"}},{"attributes":{"name":"Winfield Crona","age":69,"location":"New Rudy"}},{"attributes":{"name":"Isaac Kris","age":18,"location":"West Sacramento"}},{"attributes":{"name":"Dr. Roosevelt Schmidt","age":66,"location":"Greenview"}},{"attributes":{"name":"Shane Langworth","age":67,"location":"South Sabinafurt"}},{"attributes":{"name":"Edmond Beatty","age":40,"location":"Francescoport"}},{"attributes":{"name":"Cody Koelpin","age":45,"location":"East Jordynbury"}},{"attributes":{"name":"Charlotte Hoeger Jr.","age":80,"location":"Mentor"}},{"attributes":{"name":"Demario Brown","age":28,"location":"Johnson City"}},{"attributes":{"name":"Morris Jacobs III","age":30,"location":"Kearny"}},{"attributes":{"name":"Lydia Nicolas","age":25,"location":"Lake Mable"}},{"attributes":{"name":"Terri Osinski","age":56,"location":"Lake Mortonmouth"}},{"attributes":{"name":"Reese Quitzon","age":63,"location":"Harrischester"}},{"attributes":{"name":"Christ Zboncak","age":21,"location":"Cheyenne"}},{"attributes":{"name":"Verna Quitzon","age":20,"location":"South Yesenia"}},{"attributes":{"name":"Elza Larkin","age":63,"location":"Sunnyvale"}},{"attributes":{"name":"Leonor Murphy IV","age":28,"location":"Thurmanfield"}},{"attributes":{"name":"Derrick Koss","age":19,"location":"Stammstad"}},{"attributes":{"name":"Carla Terry","age":24,"location":"Fort Johathan"}},{"attributes":{"name":"Brett Boehm-Prohaska","age":45,"location":"Royal Oak"}},{"attributes":{"name":"Casper Quitzon-Hirthe","age":33,"location":"Kerlukeborough"}},{"attributes":{"name":"Douglas Gerlach","age":55,"location":"East Cloviston"}},{"attributes":{"name":"Glenda Erdman","age":21,"location":"Schimmelstead"}},{"attributes":{"name":"Rebecca Funk MD","age":68,"location":"West Jadonstead"}},{"attributes":{"name":"Meghan Pouros","age":47,"location":"Lake Damonhaven"}},{"attributes":{"name":"Tanya Lehner","age":78,"location":"Rosenbaumberg"}},{"attributes":{"name":"Marcia Hahn","age":70,"location":"Fort Alexysland"}},{"attributes":{"name":"Tony Walter","age":56,"location":"Hammond"}},{"attributes":{"name":"Mr. Shari Leuschke","age":72,"location":"Mariatown"}},{"attributes":{"name":"Elyse Olson","age":23,"location":"Morissettehaven"}},{"attributes":{"name":"Geoffrey Batz","age":76,"location":"Linden"}},{"attributes":{"name":"Mrs. Eleanor Lebsack","age":56,"location":"South Salvatoremouth"}},{"attributes":{"name":"Ida Collins Jr.","age":48,"location":"North Macie"}},{"attributes":{"name":"Deontae Beatty","age":24,"location":"Bednartown"}},{"attributes":{"name":"Asha Robel","age":77,"location":"North Aisha"}},{"attributes":{"name":"Pattie Fay","age":70,"location":"Huntington Park"}},{"attributes":{"name":"Laverna Paucek","age":30,"location":"Helmerfort"}},{"attributes":{"name":"Mario Feeney","age":19,"location":"Yostborough"}},{"attributes":{"name":"Dana Reilly","age":32,"location":"Fort Carlos"}},{"attributes":{"name":"Jeffery Kozey","age":33,"location":"Gorczanyfurt"}},{"attributes":{"name":"Caterina Mills","age":42,"location":"New Queen"}},{"attributes":{"name":"Dr. Jayne Maggio-Kris","age":67,"location":"Bellflower"}},{"attributes":{"name":"Nathaniel Wiza III","age":74,"location":"La Mesa"}},{"attributes":{"name":"Curtis Harris","age":23,"location":"Fort Myriamside"}},{"attributes":{"name":"Miguel Lubowitz","age":28,"location":"New Valentinland"}},{"attributes":{"name":"Jerrell Cummerata","age":42,"location":"Deonteville"}},{"attributes":{"name":"Irving Moore-Kuphal","age":50,"location":"Sengerfurt"}},{"attributes":{"name":"Albert Gibson IV","age":48,"location":"Robelcester"}},{"attributes":{"name":"Mrs. Toby Harber","age":53,"location":"Cruickshankland"}},{"attributes":{"name":"Boris Gusikowski IV","age":54,"location":"Port Tod"}},{"attributes":{"name":"Ruben Bruen","age":29,"location":"New Guillermo"}},{"attributes":{"name":"Woodrow Larkin","age":54,"location":"Riverview"}},{"attributes":{"name":"Jeannette Torphy","age":49,"location":"East Stephon"}},{"attributes":{"name":"Nadine Kilback","age":80,"location":"Wisokychester"}},{"attributes":{"name":"Rosa Hilpert Jr.","age":51,"location":"Rippinbury"}},{"attributes":{"name":"Jose Swift","age":69,"location":"Ornview"}},{"attributes":{"name":"Yessenia VonRueden","age":72,"location":"Port Robin"}},{"attributes":{"name":"Elliott Gusikowski","age":36,"location":"Lake Mable"}},{"attributes":{"name":"Eileen Rogahn","age":53,"location":"New Cordell"}},{"attributes":{"name":"Penny Carroll","age":44,"location":"West Willie"}},{"attributes":{"name":"Whitney Predovic","age":75,"location":"Hayward"}},{"attributes":{"name":"Ms. Veronica Wunsch","age":21,"location":"Floview"}},{"attributes":{"name":"Marilyn Wolf","age":61,"location":"North Andreane"}},{"attributes":{"name":"Mabelle Homenick-Murazik III","age":48,"location":"Miami"}},{"attributes":{"name":"Mr. Khalil Schuster","age":48,"location":"El Cajon"}},{"attributes":{"name":"Joseph Willms-Bode","age":18,"location":"Majorport"}},{"attributes":{"name":"Claire Pagac","age":26,"location":"Stokesboro"}},{"attributes":{"name":"Diane Hickle","age":77,"location":"Klingbury"}},{"attributes":{"name":"Bertha Braun","age":57,"location":"Yonkers"}},{"attributes":{"name":"Earl Buckridge","age":75,"location":"Schmidtmouth"}},{"attributes":{"name":"Mireya Hartmann","age":69,"location":"New Louveniafort"}},{"attributes":{"name":"Mindy Davis DDS","age":54,"location":"Cristworth"}},{"attributes":{"name":"Marcelino Ondricka","age":52,"location":"South Hudson"}},{"attributes":{"name":"Halie Crist","age":65,"location":"Kearacester"}},{"attributes":{"name":"Bessie Quigley","age":35,"location":"East Alysa"}},{"attributes":{"name":"Melinda Bins-Trantow","age":72,"location":"Fort Vernieside"}},{"attributes":{"name":"Darren Fay","age":21,"location":"Maggioworth"}},{"attributes":{"name":"Dr. Levi Cole","age":22,"location":"Jacobsburgh"}},{"attributes":{"name":"Dr. Joey Stanton","age":77,"location":"West Artshire"}},{"attributes":{"name":"Christine Morar","age":55,"location":"Millshaven"}},{"attributes":{"name":"Dr. Monica Kuvalis","age":47,"location":"South Cale"}},{"attributes":{"name":"Betty Ziemann","age":54,"location":"Manhattan"}},{"attributes":{"name":"Olga Goodwin","age":38,"location":"Dudleyside"}},{"attributes":{"name":"Waldo Schultz","age":34,"location":"South Pauline"}},{"attributes":{"name":"Mireille Robel","age":32,"location":"Loveland"}},{"attributes":{"name":"Tomas Lockman","age":30,"location":"South Regan"}},{"attributes":{"name":"Thomas Beatty","age":20,"location":"West Monroeburgh"}},{"attributes":{"name":"Lorena Wyman","age":49,"location":"Ornstad"}},{"attributes":{"name":"Woodrow Kihn","age":66,"location":"South Maximestead"}},{"attributes":{"name":"Peter Swift","age":26,"location":"Bayerbury"}},{"attributes":{"name":"Chesley Dicki IV","age":62,"location":"Gutmannside"}},{"attributes":{"name":"Jonathon Beer","age":71,"location":"Lake Gudrunberg"}},{"attributes":{"name":"Jammie Haag Sr.","age":28,"location":"Tamiami"}},{"attributes":{"name":"Derrick Murray","age":21,"location":"Port Petra"}},{"attributes":{"name":"Sidney Kunde Jr.","age":53,"location":"Bergnaumbury"}},{"attributes":{"name":"Jordan Hudson","age":21,"location":"Fort Rebekaborough"}},{"attributes":{"name":"Glenda Ankunding II","age":72,"location":"Oranfield"}},{"attributes":{"name":"Lenora Kovacek","age":37,"location":"Alexandrineshire"}},{"attributes":{"name":"Armando Auer","age":22,"location":"Jakubowskichester"}},{"attributes":{"name":"Ebony Fritsch","age":38,"location":"McCulloughworth"}},{"attributes":{"name":"Melissa Mosciski IV","age":49,"location":"Roobmouth"}},{"attributes":{"name":"Miss Gaston Wunsch","age":63,"location":"West Wilfrid"}},{"attributes":{"name":"Meta Turner","age":65,"location":"Westcester"}},{"attributes":{"name":"Cameron Considine","age":25,"location":"Edinburg"}},{"attributes":{"name":"Billy Cronin","age":78,"location":"Tallahassee"}},{"attributes":{"name":"Reginald Walsh","age":44,"location":"West Mackenzie"}},{"attributes":{"name":"Marguerite Gerhold DDS","age":60,"location":"Alpharetta"}},{"attributes":{"name":"Kathleen Bruen","age":70,"location":"Zacheryburgh"}},{"attributes":{"name":"Savion Dickinson","age":60,"location":"Lavontown"}},{"attributes":{"name":"Shawna Keeling","age":21,"location":"Boyercester"}},{"attributes":{"name":"Geoffrey Hand IV","age":47,"location":"Kuhicbury"}},{"attributes":{"name":"Nelle Abernathy","age":74,"location":"Williamsonview"}},{"attributes":{"name":"Cassandra Ankunding","age":71,"location":"North Wayne"}},{"attributes":{"name":"Renee Spinka","age":38,"location":"North Miami"}},{"attributes":{"name":"Dwight Bogisich","age":35,"location":"North Donchester"}},{"attributes":{"name":"Kayla Monahan V","age":19,"location":"Lake Jarrell"}},{"attributes":{"name":"Edgar Jerde","age":79,"location":"Lemkehaven"}},{"attributes":{"name":"Shannon Jaskolski","age":62,"location":"Lake Ezraland"}},{"attributes":{"name":"Miss Frankie Olson","age":51,"location":"Murphycester"}},{"attributes":{"name":"Clayton Kreiger","age":46,"location":"New Enola"}},{"attributes":{"name":"Philip Mayert","age":18,"location":"North Adelinecester"}},{"attributes":{"name":"Brian Pfeffer","age":80,"location":"Marcelochester"}},{"attributes":{"name":"Della Bartell","age":41,"location":"North Ole"}},{"attributes":{"name":"Rocio Jones","age":49,"location":"Mobile"}},{"attributes":{"name":"Bonnie Bogan","age":31,"location":"Rosaliaville"}},{"attributes":{"name":"Cornelius Altenwerth","age":31,"location":"West Beatrice"}},{"attributes":{"name":"Mable Gulgowski","age":41,"location":"Port Lorenzatown"}},{"attributes":{"name":"Rhonda Hyatt","age":42,"location":"Killeen"}},{"attributes":{"name":"Georgia Rodriguez","age":73,"location":"Huelsfurt"}},{"attributes":{"name":"Veronica Adams","age":28,"location":"North Dejah"}},{"attributes":{"name":"Fae Bauch","age":52,"location":"Blaine"}},{"attributes":{"name":"Myrtie Graham I","age":45,"location":"South Daryl"}},{"attributes":{"name":"Leroy Friesen","age":78,"location":"Blacksburg"}},{"attributes":{"name":"Kelsie Wolf","age":66,"location":"Port Orlomouth"}},{"attributes":{"name":"Dr. Katrine Christiansen I","age":35,"location":"Bartonshire"}},{"attributes":{"name":"Shawna Osinski","age":66,"location":"Fort Margaret"}},{"attributes":{"name":"Laurence Metz","age":39,"location":"Lake Kirk"}},{"attributes":{"name":"Jules Anderson","age":19,"location":"Lake Camron"}},{"attributes":{"name":"Dr. Zetta Brekke","age":54,"location":"Fort Reyesburgh"}},{"attributes":{"name":"Sharon Beahan","age":31,"location":"University"}},{"attributes":{"name":"Kendra Glover","age":28,"location":"Port Hilbert"}},{"attributes":{"name":"Mrs. Norbert Johns","age":37,"location":"East Greysonbury"}},{"attributes":{"name":"Miss Lucas Lemke","age":23,"location":"Omaha"}},{"attributes":{"name":"Lesley Wyman","age":71,"location":"Sunnycester"}},{"attributes":{"name":"Lonnie Ortiz","age":25,"location":"Ivoryfort"}},{"attributes":{"name":"Noel Zemlak","age":61,"location":"Port Palmacester"}},{"attributes":{"name":"Turner Mayert IV","age":55,"location":"O'Harastead"}},{"attributes":{"name":"Shelly Rutherford","age":67,"location":"Lake Kenyatta"}},{"attributes":{"name":"Rosemary DuBuque","age":45,"location":"Westonmouth"}},{"attributes":{"name":"Benton O'Conner","age":22,"location":"Port Furman"}},{"attributes":{"name":"Aaron Langworth","age":19,"location":"East Kristopherfort"}},{"attributes":{"name":"Stefanie Ryan","age":22,"location":"Lake Marlon"}},{"attributes":{"name":"Dr. Hanna Cremin","age":28,"location":"North Miami Beach"}},{"attributes":{"name":"Henrietta Brekke","age":67,"location":"Bedford"}},{"attributes":{"name":"Eugene Yost PhD","age":23,"location":"Ocala"}},{"attributes":{"name":"Melba Stanton","age":51,"location":"Sanfordville"}},{"attributes":{"name":"Gilberto McKenzie","age":75,"location":"Zboncakburgh"}},{"attributes":{"name":"Elias Nader","age":35,"location":"Rockford"}},{"attributes":{"name":"Crystal Kuhlman","age":19,"location":"Merced"}},{"attributes":{"name":"Dr. Antonette Prohaska Sr.","age":22,"location":"Providence"}},{"attributes":{"name":"Roberto Turner","age":67,"location":"East Meagan"}},{"attributes":{"name":"Mr. Elyse Dickens","age":55,"location":"Rodrickchester"}},{"attributes":{"name":"Claire Brown","age":28,"location":"Plymouth"}},{"attributes":{"name":"Dr. Ricky Bayer III","age":18,"location":"Eastvale"}},{"attributes":{"name":"Paula Raynor","age":62,"location":"Birmingham"}},{"attributes":{"name":"Alyce Dickens","age":33,"location":"Jovannycester"}},{"attributes":{"name":"Freddie Nicolas DDS","age":30,"location":"Redondo Beach"}},{"attributes":{"name":"Edyth Gutkowski","age":66,"location":"DeKalb"}},{"attributes":{"name":"Rhonda Schowalter V","age":21,"location":"North Destini"}},{"attributes":{"name":"Eddie Swift","age":67,"location":"Marianahaven"}},{"attributes":{"name":"Nicole Cole","age":22,"location":"St. Louis"}},{"attributes":{"name":"Mr. Blanche Wunsch","age":80,"location":"Fullerton"}},{"attributes":{"name":"Marshall Franecki-Schinner","age":77,"location":"Lake Aliburgh"}},{"attributes":{"name":"Veronica Cummings","age":44,"location":"Fort Keirafield"}},{"attributes":{"name":"Summer Champlin IV","age":34,"location":"Goyettemouth"}},{"attributes":{"name":"Colin Kilback-Gutmann DVM","age":20,"location":"Fort Chelsey"}},{"attributes":{"name":"Pablo Mertz","age":33,"location":"East Sabinashire"}},{"attributes":{"name":"Mr. Darian Hagenes","age":68,"location":"La Crosse"}},{"attributes":{"name":"Leroy Bartell-Green","age":79,"location":"Port Dorothyhaven"}},{"attributes":{"name":"Minnie Kovacek","age":29,"location":"Boston"}},{"attributes":{"name":"Celia Koch","age":20,"location":"Port Ramon"}},{"attributes":{"name":"Constance Will","age":67,"location":"North Lawson"}},{"attributes":{"name":"Nelle Kessler","age":43,"location":"Lake Rhianna"}},{"attributes":{"name":"Mark Zulauf","age":22,"location":"Strosinville"}},{"attributes":{"name":"Ms. Freda Abernathy","age":23,"location":"Wilkinsonland"}},{"attributes":{"name":"Miss Lula Wintheiser","age":27,"location":"South Devin"}},{"attributes":{"name":"Larry Reynolds","age":43,"location":"Framingham"}},{"attributes":{"name":"Branson Sanford","age":41,"location":"Athens-Clarke County"}},{"attributes":{"name":"Dr. Randal Beahan","age":23,"location":"McCulloughhaven"}},{"attributes":{"name":"Sherwood Blick Jr.","age":55,"location":"Robinmouth"}},{"attributes":{"name":"Miss Vinnie Klocko","age":54,"location":"Lake Robertberg"}},{"attributes":{"name":"Sally Halvorson","age":61,"location":"Laurelfurt"}},{"attributes":{"name":"Sherwood Cormier","age":45,"location":"Lake Johnny"}},{"attributes":{"name":"Ellis Rodriguez V","age":56,"location":"New Julietown"}},{"attributes":{"name":"Oliver Ziemann","age":21,"location":"Des Moines"}},{"attributes":{"name":"Mack Quigley","age":70,"location":"Josiahview"}},{"attributes":{"name":"Dr. Elvera Kertzmann","age":45,"location":"Deckowboro"}},{"attributes":{"name":"Dallas Terry","age":51,"location":"Port Bradfordbury"}},{"attributes":{"name":"Miss Joanie Conn","age":58,"location":"Kiehnburgh"}},{"attributes":{"name":"Zachary Pfeffer","age":46,"location":"Garryville"}},{"attributes":{"name":"Essie Rolfson","age":77,"location":"Port Lacey"}},{"attributes":{"name":"Raul Bode","age":36,"location":"Lunacester"}},{"attributes":{"name":"Bill Powlowski","age":57,"location":"Fort Sedrick"}},{"attributes":{"name":"Elias Walter","age":47,"location":"East Carmelstead"}},{"attributes":{"name":"Miss Kelley Rippin","age":61,"location":"Lake Gustport"}},{"attributes":{"name":"Jamie Willms MD","age":74,"location":"Hegmannstead"}},{"attributes":{"name":"Alvena McCullough","age":72,"location":"St. Clair Shores"}},{"attributes":{"name":"Graciela Green","age":40,"location":"Cordiaberg"}},{"attributes":{"name":"Charles Cormier MD","age":45,"location":"South Macworth"}},{"attributes":{"name":"Cleta Fisher","age":50,"location":"Lake Tressa"}},{"attributes":{"name":"Clara MacGyver","age":57,"location":"Boylecester"}},{"attributes":{"name":"Justin Quitzon","age":69,"location":"Halcester"}},{"attributes":{"name":"Tomas Carter","age":20,"location":"Fisherport"}},{"attributes":{"name":"Dennis Runolfsdottir","age":62,"location":"Garrickville"}},{"attributes":{"name":"Mitchell Schinner","age":57,"location":"Palm Springs"}},{"attributes":{"name":"Kelvin Friesen","age":77,"location":"Mohammedchester"}},{"attributes":{"name":"Lizzie Hettinger","age":71,"location":"Kaiaworth"}},{"attributes":{"name":"Bryce Cassin","age":43,"location":"Lake Clemmiestead"}},{"attributes":{"name":"Zackery Hahn","age":49,"location":"Warren"}},{"attributes":{"name":"Leslie Konopelski","age":22,"location":"Christyside"}},{"attributes":{"name":"Alysha Mraz","age":59,"location":"Rockwall"}},{"attributes":{"name":"Julia Schuppe","age":67,"location":"New Rachellestad"}},{"attributes":{"name":"Ms. Evelyn Shanahan","age":20,"location":"New Gwen"}},{"attributes":{"name":"Luz Armstrong","age":37,"location":"Todborough"}},{"attributes":{"name":"Billy Rohan","age":36,"location":"Willworth"}},{"attributes":{"name":"Miss Reinhold Zemlak","age":55,"location":"Federal Way"}},{"attributes":{"name":"Vera Dibbert","age":60,"location":"Arnoldoworth"}},{"attributes":{"name":"Rubie MacGyver","age":78,"location":"Port Kinghaven"}},{"attributes":{"name":"Donald Koepp Jr.","age":48,"location":"Urbana"}},{"attributes":{"name":"Enrico Beatty","age":46,"location":"North Darian"}},{"attributes":{"name":"Vita D'Amore Jr.","age":77,"location":"New Norma"}},{"attributes":{"name":"Renee Oberbrunner-Shanahan I","age":40,"location":"North Moshe"}},{"attributes":{"name":"Gwendolyn Daugherty","age":73,"location":"Stokeshaven"}},{"attributes":{"name":"Sylvester Cummerata","age":38,"location":"North Henryhaven"}},{"attributes":{"name":"Miss Ana Champlin","age":80,"location":"Abbottmouth"}},{"attributes":{"name":"Julius Huels","age":57,"location":"Schambergerfurt"}},{"attributes":{"name":"Stacey Mills","age":26,"location":"Port Lurafurt"}},{"attributes":{"name":"Mr. Clifford Kassulke","age":59,"location":"North Port"}},{"attributes":{"name":"Okey Goodwin","age":47,"location":"South Carolinemouth"}},{"attributes":{"name":"Delbert Bartoletti","age":61,"location":"Lake Abbyport"}},{"attributes":{"name":"Jeramy Schmitt","age":73,"location":"Braunshire"}},{"attributes":{"name":"Joyce Ondricka","age":40,"location":"East Revafort"}},{"attributes":{"name":"Joanna Sanford","age":46,"location":"Winstonland"}},{"attributes":{"name":"Gussie Sawayn","age":31,"location":"Port Roma"}},{"attributes":{"name":"Dr. Douglas Volkman","age":67,"location":"Kiarraview"}},{"attributes":{"name":"Carrie Goyette","age":34,"location":"West Josieshire"}},{"attributes":{"name":"Hattie Hayes","age":75,"location":"Fort Rita"}},{"attributes":{"name":"Dana Heidenreich","age":24,"location":"New Jana"}},{"attributes":{"name":"Nichole Lakin","age":71,"location":"Urbanbury"}},{"attributes":{"name":"Charity Howe","age":53,"location":"Lake Patrickworth"}},{"attributes":{"name":"Sherri Dickens","age":79,"location":"Port Israel"}},{"attributes":{"name":"Jamaal Fadel","age":65,"location":"New Bethany"}},{"attributes":{"name":"Noemie Kunze","age":37,"location":"Fort Zack"}},{"attributes":{"name":"Irvin Schmidt","age":58,"location":"Utica"}},{"attributes":{"name":"Viola Stark","age":37,"location":"West Shaylee"}},{"attributes":{"name":"Emmitt Conn","age":58,"location":"South Peteland"}},{"attributes":{"name":"Meredith Olson I","age":39,"location":"Sarasota"}},{"attributes":{"name":"Alberto Crona","age":66,"location":"West Wilbertview"}},{"attributes":{"name":"Ralph Schowalter","age":61,"location":"South Jovancester"}},{"attributes":{"name":"Christiana Champlin","age":51,"location":"North Rogersboro"}},{"attributes":{"name":"Dakota Jones","age":75,"location":"Kenosha"}},{"attributes":{"name":"Billie Bins","age":35,"location":"Adrainstad"}},{"attributes":{"name":"Jewel Heaney","age":51,"location":"South Elmirafort"}},{"attributes":{"name":"Troy Gibson-Runte","age":44,"location":"Casa Grande"}},{"attributes":{"name":"Annabel Haley","age":76,"location":"Torphyton"}},{"attributes":{"name":"Marty O'Reilly","age":22,"location":"Layneworth"}},{"attributes":{"name":"Cristina Mohr","age":62,"location":"West Omahaven"}},{"attributes":{"name":"Velma Schoen","age":44,"location":"North Dakotaboro"}},{"attributes":{"name":"Moses Franecki","age":33,"location":"Parker"}},{"attributes":{"name":"Dr. Dashawn Mante","age":47,"location":"Lake Kittymouth"}},{"attributes":{"name":"Mr. Callie Hammes","age":69,"location":"Queentown"}},{"attributes":{"name":"Bethany Reilly","age":69,"location":"Spencerstead"}},{"attributes":{"name":"Terrence Powlowski","age":23,"location":"Caguas"}},{"attributes":{"name":"Rudolph Considine","age":19,"location":"Maxwellburgh"}},{"attributes":{"name":"Alonzo Goyette","age":24,"location":"Yuma"}},{"attributes":{"name":"Dr. Tillman Cummings","age":51,"location":"Corwinton"}},{"attributes":{"name":"Judah Reichel","age":34,"location":"Valeriehaven"}},{"attributes":{"name":"Sonya Jakubowski","age":65,"location":"New Kevin"}},{"attributes":{"name":"Luke Ondricka","age":42,"location":"Marquisefort"}},{"attributes":{"name":"Glenn Jacobi","age":30,"location":"Shaynecester"}},{"attributes":{"name":"Green Beer","age":38,"location":"New Christaworth"}},{"attributes":{"name":"Rafaela Hills-Kuphal","age":58,"location":"Kuphalboro"}},{"attributes":{"name":"Norman Treutel Sr.","age":80,"location":"Novato"}},{"attributes":{"name":"Wayne Vandervort","age":67,"location":"Francisshire"}},{"attributes":{"name":"Karianne Robel","age":66,"location":"Port Esperanzastead"}},{"attributes":{"name":"Margaretta Hintz","age":29,"location":"Cameronfurt"}},{"attributes":{"name":"Everett Kulas","age":30,"location":"Kuphalberg"}},{"attributes":{"name":"Nettie Franey","age":78,"location":"Destinystead"}},{"attributes":{"name":"Kelvin Emard V","age":50,"location":"Caguas"}},{"attributes":{"name":"Jeffrey Leffler","age":53,"location":"Lemkefurt"}},{"attributes":{"name":"Sandy Graham IV","age":60,"location":"West Johanna"}},{"attributes":{"name":"Kim Hilll","age":34,"location":"Emilboro"}},{"attributes":{"name":"Devonte Schroeder MD","age":45,"location":"Wehnerville"}},{"attributes":{"name":"Frederick Mann","age":27,"location":"Lenexa"}},{"attributes":{"name":"Kay Franey","age":29,"location":"Port Dasia"}},{"attributes":{"name":"Lindsay Nitzsche","age":39,"location":"East Geovannymouth"}},{"attributes":{"name":"Mattie Dare","age":63,"location":"New Fordfield"}},{"attributes":{"name":"Gerhard Nikolaus","age":73,"location":"Flower Mound"}},{"attributes":{"name":"James Greenholt DDS","age":45,"location":"Raynorboro"}},{"attributes":{"name":"Randall Aufderhar-Lindgren","age":54,"location":"Collinstown"}},{"attributes":{"name":"Geneva Boehm","age":78,"location":"Brennaboro"}},{"attributes":{"name":"Warren Purdy","age":78,"location":"Majorhaven"}},{"attributes":{"name":"Eddie Adams II","age":39,"location":"Fort Reyesstead"}},{"attributes":{"name":"Madisyn Reichel","age":63,"location":"Verliefurt"}},{"attributes":{"name":"Genevieve Kuvalis","age":31,"location":"Schmittstead"}},{"attributes":{"name":"Terrance Kshlerin","age":39,"location":"East Arjunmouth"}},{"attributes":{"name":"Jordan Russel","age":57,"location":"Christianstad"}},{"attributes":{"name":"Dr. Gary Mertz","age":59,"location":"Port Theostead"}},{"attributes":{"name":"Dave Rutherford","age":39,"location":"Port Akeemborough"}},{"attributes":{"name":"Claire Kautzer","age":63,"location":"Bryan"}},{"attributes":{"name":"Laura Rau","age":65,"location":"South Rafael"}},{"attributes":{"name":"Alice Stark","age":56,"location":"Lewisville"}},{"attributes":{"name":"Aniya Torp","age":69,"location":"Port Marlin"}},{"attributes":{"name":"Ms. Claudia Raynor","age":74,"location":"Treutelville"}},{"attributes":{"name":"Candido Altenwerth","age":19,"location":"Hardyfurt"}},{"attributes":{"name":"Mr. Misael Johnson","age":32,"location":"Fort Roselyn"}},{"attributes":{"name":"Kate Kovacek","age":78,"location":"Sunrise Manor"}},{"attributes":{"name":"Irvin Spinka III","age":36,"location":"New Dorris"}},{"attributes":{"name":"Wilson Dibbert","age":72,"location":"Port Herminia"}},{"attributes":{"name":"Jason Emard","age":39,"location":"Rogahnbury"}},{"attributes":{"name":"Terrence Jerde","age":18,"location":"Lueilwitzfurt"}},{"attributes":{"name":"Morris Larson","age":19,"location":"Casper"}},{"attributes":{"name":"Dallas Hodkiewicz","age":44,"location":"Aleenmouth"}},{"attributes":{"name":"Mabelle Shields","age":32,"location":"New Arnaldo"}},{"attributes":{"name":"Willie Jerde I","age":33,"location":"Orland Park"}},{"attributes":{"name":"Regan Hoppe","age":57,"location":"Bernhardchester"}},{"attributes":{"name":"Keith Keeling II","age":22,"location":"Moenworth"}},{"attributes":{"name":"Miss Josefina Johns","age":27,"location":"Chino"}},{"attributes":{"name":"Tanya Windler","age":29,"location":"New Ernestine"}},{"attributes":{"name":"Leonard Lang","age":21,"location":"San Jacinto"}},{"attributes":{"name":"Ana Kautzer","age":69,"location":"East Jovanychester"}},{"attributes":{"name":"Ms. Eula Koss","age":63,"location":"Sayreville"}},{"attributes":{"name":"Dr. Ora Borer","age":58,"location":"St. Petersburg"}},{"attributes":{"name":"Moses Ebert Jr.","age":41,"location":"Fort Alfonzoview"}},{"attributes":{"name":"Brandon Jakubowski","age":63,"location":"Lake Zoila"}},{"attributes":{"name":"Trisha Marks-Goodwin PhD","age":23,"location":"Greenville"}},{"attributes":{"name":"Francis McClure","age":43,"location":"Abernathyshire"}},{"attributes":{"name":"Miss Hellen Abbott-Blick","age":55,"location":"Juliestead"}},{"attributes":{"name":"William Hamill","age":57,"location":"Lake Lily"}},{"attributes":{"name":"Moses Christiansen","age":21,"location":"North Tiana"}},{"attributes":{"name":"Susie Becker","age":32,"location":"New Flaviocester"}},{"attributes":{"name":"Andre Mante DDS","age":60,"location":"Lonnieberg"}},{"attributes":{"name":"Glen Simonis","age":80,"location":"East Tyree"}},{"attributes":{"name":"Edwardo Sipes","age":62,"location":"Killeen"}},{"attributes":{"name":"Gertrude Bauch-Jacobson","age":45,"location":"South Shanna"}},{"attributes":{"name":"Matt Macejkovic","age":22,"location":"Johnstonview"}},{"attributes":{"name":"Pearl Brekke","age":32,"location":"Lexusville"}},{"attributes":{"name":"Miss Angel Oberbrunner","age":45,"location":"Leschstad"}},{"attributes":{"name":"Rosa Dooley","age":65,"location":"New Virgiebury"}},{"attributes":{"name":"Alysa Beahan","age":71,"location":"Heaneyside"}},{"attributes":{"name":"Aubrey Hirthe","age":36,"location":"Lake Burleymouth"}},{"attributes":{"name":"Frieda Borer","age":24,"location":"Brekkefurt"}},{"attributes":{"name":"Hayden Bauch","age":74,"location":"Port Hayliefield"}},{"attributes":{"name":"Anne Bernhard","age":58,"location":"Kennediworth"}},{"attributes":{"name":"Leon Kling","age":63,"location":"Elkhart"}},{"attributes":{"name":"Ariane Kreiger","age":25,"location":"Brendenshire"}},{"attributes":{"name":"Arturo Medhurst Jr.","age":61,"location":"Chandlerland"}},{"attributes":{"name":"Zachary Mann","age":28,"location":"La Crosse"}},{"attributes":{"name":"Ada Murazik","age":22,"location":"Katarinaborough"}},{"attributes":{"name":"John Anderson","age":51,"location":"Kirlinboro"}},{"attributes":{"name":"Dean Leuschke","age":60,"location":"Rocky Mount"}},{"attributes":{"name":"Randy Marquardt","age":28,"location":"Fort Travonfield"}},{"attributes":{"name":"Mrs. Gwendolyn Harvey","age":76,"location":"Port St. Lucie"}},{"attributes":{"name":"Danielle Shields","age":58,"location":"Lindseyworth"}},{"attributes":{"name":"Antonio McDermott-Dach","age":20,"location":"Lake Groverborough"}},{"attributes":{"name":"Mariela Oberbrunner","age":66,"location":"North Marisol"}},{"attributes":{"name":"Dianne Kovacek MD","age":28,"location":"Livonia"}},{"attributes":{"name":"Crystal Schoen","age":48,"location":"West Wiley"}},{"attributes":{"name":"Jesus Welch","age":59,"location":"Riverview"}},{"attributes":{"name":"Isabel Veum","age":48,"location":"Duncanland"}},{"attributes":{"name":"Kariane Rodriguez","age":29,"location":"Tremainehaven"}},{"attributes":{"name":"Juliet Grant","age":37,"location":"Hintzland"}},{"attributes":{"name":"Dennis Jacobson-Parisian Sr.","age":73,"location":"Cummingschester"}},{"attributes":{"name":"Noemi Dicki","age":54,"location":"Lake Forest"}},{"attributes":{"name":"Annette Marvin","age":71,"location":"Samantaview"}},{"attributes":{"name":"Willie Mertz","age":33,"location":"Wunschland"}},{"attributes":{"name":"Sam Collins","age":28,"location":"Connellyfurt"}},{"attributes":{"name":"Alfred Pacocha-Connelly","age":80,"location":"Port Dayne"}},{"attributes":{"name":"Alessandra Kuhlman","age":19,"location":"Everttown"}},{"attributes":{"name":"Dorothy Gulgowski","age":36,"location":"Elenorfurt"}},{"attributes":{"name":"Noah Abbott","age":48,"location":"Lake Alessiamouth"}},{"attributes":{"name":"Mr. Kurt Emard","age":31,"location":"North Jerrod"}},{"attributes":{"name":"Joy Smith","age":61,"location":"Avondale"}},{"attributes":{"name":"Ann Kris","age":21,"location":"East Elenora"}},{"attributes":{"name":"Eulah Johnson","age":27,"location":"Lake Wilber"}},{"attributes":{"name":"Cedric Reynolds","age":65,"location":"Oniestad"}},{"attributes":{"name":"Norman Swaniawski","age":57,"location":"Murfreesboro"}},{"attributes":{"name":"Diego Keeling","age":25,"location":"Lesleyside"}},{"attributes":{"name":"Hans Medhurst","age":53,"location":"West Isidro"}},{"attributes":{"name":"Johnpaul Dach","age":76,"location":"West Gilberto"}},{"attributes":{"name":"Glennie Kuhic","age":77,"location":"New Angela"}},{"attributes":{"name":"Franz Russel","age":62,"location":"Nampa"}},{"attributes":{"name":"Terrell Fahey V","age":68,"location":"Orland Park"}},{"attributes":{"name":"Anika Nolan DDS","age":38,"location":"West New York"}},{"attributes":{"name":"Dana Bechtelar","age":64,"location":"Waldoport"}},{"attributes":{"name":"Teri Fadel","age":36,"location":"Johnstonfield"}},{"attributes":{"name":"Glenn Schroeder","age":66,"location":"Lake Anjali"}},{"attributes":{"name":"Patricia Jast IV","age":56,"location":"Malden"}},{"attributes":{"name":"Alton Welch","age":49,"location":"Zettaside"}},{"attributes":{"name":"Lazaro Kilback","age":73,"location":"Port Tristonton"}},{"attributes":{"name":"Vernon Powlowski Sr.","age":41,"location":"Bowling Green"}},{"attributes":{"name":"Idell Corkery","age":44,"location":"Marysville"}},{"attributes":{"name":"Miss Charlotte Balistreri-Hahn","age":80,"location":"Grimeshaven"}},{"attributes":{"name":"Ruth Hoppe-Conn","age":77,"location":"Millsborough"}},{"attributes":{"name":"Garrett Kshlerin","age":47,"location":"West Reymundoview"}},{"attributes":{"name":"Freddy Pfannerstill","age":76,"location":"North Dalestead"}},{"attributes":{"name":"Lance Maggio","age":53,"location":"Allychester"}},{"attributes":{"name":"Justen Leffler DVM","age":63,"location":"Union City"}},{"attributes":{"name":"Dolly Windler","age":54,"location":"Aurora"}},{"attributes":{"name":"Nora Torp","age":41,"location":"Rauborough"}},{"attributes":{"name":"Sophie Armstrong","age":42,"location":"Waltham"}},{"attributes":{"name":"Cory Williamson","age":67,"location":"New Obiechester"}},{"attributes":{"name":"Elmira Schultz","age":50,"location":"Taylor"}},{"attributes":{"name":"Spencer Olson","age":48,"location":"Schulistborough"}},{"attributes":{"name":"Marques Johnston","age":20,"location":"New Cornellfort"}},{"attributes":{"name":"Stone Gerlach","age":67,"location":"Denisville"}},{"attributes":{"name":"June Stanton-Daugherty","age":48,"location":"Castle Rock"}},{"attributes":{"name":"Tyrese Lesch","age":71,"location":"Thielside"}},{"attributes":{"name":"Emmett Pagac","age":38,"location":"Verdieport"}},{"attributes":{"name":"Donna Wilkinson","age":58,"location":"Bednarbury"}},{"attributes":{"name":"Mona Vandervort","age":70,"location":"North Cassidy"}},{"attributes":{"name":"Leo Keeling","age":22,"location":"North Amiraton"}},{"attributes":{"name":"Doug Bruen IV","age":78,"location":"North Lamontborough"}},{"attributes":{"name":"Jacob Dicki","age":44,"location":"Beattystad"}},{"attributes":{"name":"Miss Nicolette Lang","age":41,"location":"North Morris"}},{"attributes":{"name":"Luke Frami","age":68,"location":"Sawaynbury"}},{"attributes":{"name":"Derrick Herzog","age":52,"location":"Somerville"}},{"attributes":{"name":"Shelly Larkin","age":52,"location":"Port Colby"}},{"attributes":{"name":"Lola Dach","age":44,"location":"Wolfton"}},{"attributes":{"name":"Mr. Chester Walker","age":24,"location":"Lake Zora"}},{"attributes":{"name":"Ted Green","age":66,"location":"Austinview"}},{"attributes":{"name":"Orval Kuhlman","age":65,"location":"Reichertton"}},{"attributes":{"name":"Mia DuBuque","age":45,"location":"Demondbury"}},{"attributes":{"name":"Bernie Maggio-Kub Sr.","age":52,"location":"Hillsboro"}},{"attributes":{"name":"Devonte Hessel","age":24,"location":"Port Kenny"}},{"attributes":{"name":"Ona Runolfsson","age":61,"location":"East Deondre"}},{"attributes":{"name":"Jane Stiedemann","age":46,"location":"Waco"}},{"attributes":{"name":"Reanna Champlin","age":35,"location":"San Bruno"}},{"attributes":{"name":"Ceasar Hamill","age":37,"location":"Gleichnerfield"}},{"attributes":{"name":"Sally Nicolas","age":38,"location":"Lake Elsaborough"}},{"attributes":{"name":"Estell Will","age":51,"location":"Port Edmundborough"}},{"attributes":{"name":"Gregg Will MD","age":77,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Jimmy Altenwerth","age":65,"location":"Noemieshire"}},{"attributes":{"name":"Madeline Mraz","age":62,"location":"East Darwin"}},{"attributes":{"name":"Mr. Joshua Smith Sr.","age":64,"location":"Lelandburgh"}},{"attributes":{"name":"Todd Green","age":72,"location":"Crystelhaven"}},{"attributes":{"name":"Ken Parisian","age":74,"location":"Newport News"}},{"attributes":{"name":"Ms. Wellington Mohr","age":47,"location":"Aliciaside"}},{"attributes":{"name":"Colt Kuhic","age":45,"location":"New Vernon"}},{"attributes":{"name":"Merle O'Kon","age":51,"location":"Dooleybury"}},{"attributes":{"name":"Ryann Rowe","age":61,"location":"Janyside"}},{"attributes":{"name":"Brett Cremin","age":49,"location":"Port Summerland"}},{"attributes":{"name":"Jewel Kiehn","age":36,"location":"Carolcester"}},{"attributes":{"name":"Thea Mills","age":40,"location":"Rathville"}},{"attributes":{"name":"Lester McLaughlin","age":21,"location":"Wichita"}},{"attributes":{"name":"Colin Moore","age":44,"location":"Savionton"}},{"attributes":{"name":"Ms. Walker Lowe","age":23,"location":"Pamelachester"}},{"attributes":{"name":"Mrs. Madeline Huel","age":73,"location":"Kundetown"}},{"attributes":{"name":"Rahsaan Koss","age":61,"location":"Fort Ferneview"}},{"attributes":{"name":"May Prohaska","age":41,"location":"Port Adolf"}},{"attributes":{"name":"Noah Boehm Jr.","age":27,"location":"Tyrelboro"}},{"attributes":{"name":"Everett Kuvalis","age":31,"location":"Brockton"}},{"attributes":{"name":"Ms. Art Hartmann","age":43,"location":"Greenville"}},{"attributes":{"name":"Darrell Dickinson","age":40,"location":"New Alfonzoview"}},{"attributes":{"name":"Cary Schiller","age":42,"location":"Gibsonmouth"}},{"attributes":{"name":"Debbie Schuster","age":41,"location":"West Guido"}},{"attributes":{"name":"Lowell Johnson","age":54,"location":"East Dahlia"}},{"attributes":{"name":"Dr. Kaci Greenfelder","age":51,"location":"Idaho Falls"}},{"attributes":{"name":"Jacob Jones","age":64,"location":"New Majorbury"}},{"attributes":{"name":"Mr. Jamel Shanahan IV","age":46,"location":"Trenton"}},{"attributes":{"name":"Sandy Green I","age":56,"location":"Ivoryland"}},{"attributes":{"name":"Nina Schimmel","age":26,"location":"Clifton"}},{"attributes":{"name":"Brooklyn Terry","age":59,"location":"Westland"}},{"attributes":{"name":"Nellie McClure","age":53,"location":"Starkboro"}},{"attributes":{"name":"Erik Miller DDS","age":33,"location":"Gulgowskifort"}},{"attributes":{"name":"Abel DuBuque","age":36,"location":"New Seamusport"}},{"attributes":{"name":"Iris Ziemann","age":33,"location":"Port Hayliefield"}},{"attributes":{"name":"Alberta Prosacco","age":61,"location":"Kristashire"}},{"attributes":{"name":"Harvey Herzog","age":47,"location":"Bellevue"}},{"attributes":{"name":"Miss Kristopher Heller","age":58,"location":"Arelytown"}},{"attributes":{"name":"Mr. Emanuel Bogan-Glover","age":21,"location":"Cape Coral"}},{"attributes":{"name":"Kathryn Gleichner","age":43,"location":"Allentown"}},{"attributes":{"name":"Rae Blanda","age":22,"location":"Blickton"}},{"attributes":{"name":"Melyssa Graham","age":36,"location":"Rowefield"}},{"attributes":{"name":"Scott Lind DVM","age":74,"location":"East Stephanie"}},{"attributes":{"name":"Marquise Balistreri","age":71,"location":"Maryamfort"}},{"attributes":{"name":"Muriel Heaney V","age":75,"location":"Lake Edmond"}},{"attributes":{"name":"Dr. Charlene Spinka","age":23,"location":"Larissatown"}},{"attributes":{"name":"Marcelino Waters","age":73,"location":"Lehigh Acres"}},{"attributes":{"name":"Regina Mueller","age":33,"location":"Spring"}},{"attributes":{"name":"Dr. Hannah Gleason MD","age":28,"location":"Bristol"}},{"attributes":{"name":"Rolando Langworth","age":80,"location":"South Vivienbury"}},{"attributes":{"name":"Sydnee White","age":69,"location":"North Randy"}},{"attributes":{"name":"Jenna Gislason","age":48,"location":"Lake Renecester"}},{"attributes":{"name":"Alec Lynch","age":36,"location":"McDermottberg"}},{"attributes":{"name":"Eli Funk","age":42,"location":"Emardfort"}},{"attributes":{"name":"Wayne Maggio","age":35,"location":"Thornton"}},{"attributes":{"name":"Nathaniel Dickens","age":78,"location":"East Dagmarworth"}},{"attributes":{"name":"Joany Greenfelder","age":67,"location":"Derrickfurt"}},{"attributes":{"name":"Crystal Hammes","age":65,"location":"Jacobston"}},{"attributes":{"name":"Owen Hackett","age":33,"location":"South Jules"}},{"attributes":{"name":"Jamarcus Champlin","age":25,"location":"Uptonside"}},{"attributes":{"name":"Elvira Bode","age":31,"location":"North Maximilliafurt"}},{"attributes":{"name":"Isaac Cremin","age":32,"location":"Purdyfort"}},{"attributes":{"name":"Kasey Leffler","age":31,"location":"Adrianside"}},{"attributes":{"name":"Jeannette Hyatt","age":52,"location":"Noblefield"}},{"attributes":{"name":"Abel Gislason-Grady","age":54,"location":"Bettyeton"}},{"attributes":{"name":"Miss Ian Walker","age":76,"location":"Torphyland"}},{"attributes":{"name":"Rosemarie Torp","age":20,"location":"Murazikport"}},{"attributes":{"name":"Ephraim Hegmann","age":30,"location":"South Emelie"}},{"attributes":{"name":"Kelli Daniel","age":19,"location":"East Tess"}},{"attributes":{"name":"Jana Berge","age":53,"location":"South Alishabury"}},{"attributes":{"name":"Mustafa Connelly","age":19,"location":"Greenville"}},{"attributes":{"name":"Erma Cassin","age":68,"location":"Webertown"}},{"attributes":{"name":"Ana Pfeffer","age":43,"location":"East Los Angeles"}},{"attributes":{"name":"Aniya Raynor Jr.","age":79,"location":"West Arturoton"}},{"attributes":{"name":"Jocelyn Leffler","age":35,"location":"Schillerport"}},{"attributes":{"name":"Bradly Smith","age":29,"location":"Benjaminfort"}},{"attributes":{"name":"Tonya Schamberger","age":37,"location":"Port Noraville"}},{"attributes":{"name":"Wilmer Paucek II","age":18,"location":"Fort Shanny"}},{"attributes":{"name":"Bernadette Hintz Jr.","age":64,"location":"West Joseph"}},{"attributes":{"name":"Maria Blick","age":62,"location":"Lake Queeniehaven"}},{"attributes":{"name":"Philip Littel","age":37,"location":"Camrenbury"}},{"attributes":{"name":"Kara Flatley","age":34,"location":"Fort Lorenland"}},{"attributes":{"name":"Spencer Schoen","age":53,"location":"Evanston"}},{"attributes":{"name":"Celia McLaughlin","age":62,"location":"Fort Fabiola"}},{"attributes":{"name":"Nicolas Grimes","age":46,"location":"Florineworth"}},{"attributes":{"name":"Isai Doyle","age":39,"location":"West Palm Beach"}},{"attributes":{"name":"Flora Gutkowski DDS","age":78,"location":"West Hadley"}},{"attributes":{"name":"Shaniya Green","age":61,"location":"Jeanneberg"}},{"attributes":{"name":"Brooklyn Littel","age":43,"location":"Beckerport"}},{"attributes":{"name":"Joy Gerlach","age":79,"location":"Goyettebury"}},{"attributes":{"name":"Cheryl Lebsack","age":55,"location":"Burke"}},{"attributes":{"name":"Darrell Koss","age":31,"location":"Fort Elliot"}},{"attributes":{"name":"David Jenkins","age":61,"location":"Port Robert"}},{"attributes":{"name":"Ruthe Hilll","age":67,"location":"West Carolina"}},{"attributes":{"name":"Francis Funk","age":50,"location":"Fullerton"}},{"attributes":{"name":"Sharon Christiansen","age":27,"location":"West Cathrinestead"}},{"attributes":{"name":"Johnson Leffler","age":20,"location":"Windlerview"}},{"attributes":{"name":"Sophia Schulist","age":74,"location":"South Jevonhaven"}},{"attributes":{"name":"Sanford Sauer","age":46,"location":"Fort Veronaton"}},{"attributes":{"name":"Francis Cassin","age":54,"location":"New Emmahaven"}},{"attributes":{"name":"Bethany Zieme","age":40,"location":"Arcadia"}},{"attributes":{"name":"Gene Bashirian","age":67,"location":"North Port"}},{"attributes":{"name":"Ms. Joaquin Daugherty","age":68,"location":"Nannieport"}},{"attributes":{"name":"Sheila Marvin","age":18,"location":"Fort Molly"}},{"attributes":{"name":"Liliane Kling","age":72,"location":"Port Rodrick"}},{"attributes":{"name":"Dr. Chad Stamm","age":71,"location":"Fort Jena"}},{"attributes":{"name":"Ernesto Torp","age":60,"location":"Trudieville"}},{"attributes":{"name":"Miss Lindsay Beier","age":43,"location":"Agnesfield"}},{"attributes":{"name":"Aniya Upton","age":30,"location":"Port Davonworth"}},{"attributes":{"name":"Johanna Lemke","age":64,"location":"Ransomfort"}},{"attributes":{"name":"Cassandra Rath","age":55,"location":"Gottliebview"}},{"attributes":{"name":"Dr. Roy Oberbrunner I","age":21,"location":"Greenholtville"}},{"attributes":{"name":"Leonard Harvey","age":37,"location":"Bellflower"}},{"attributes":{"name":"Claire Hermann","age":40,"location":"West Kenyon"}},{"attributes":{"name":"Ernest Bahringer","age":46,"location":"Cristview"}},{"attributes":{"name":"Kirk Hoeger","age":21,"location":"Pembroke Pines"}},{"attributes":{"name":"Nestor O'Reilly","age":78,"location":"Daltonberg"}},{"attributes":{"name":"Amos Schumm","age":68,"location":"St. Louis Park"}},{"attributes":{"name":"Devonte Lesch","age":47,"location":"North Sarinafurt"}},{"attributes":{"name":"Harvey Kerluke","age":29,"location":"South Gerhard"}},{"attributes":{"name":"Dr. Ethan Wolf","age":23,"location":"Halvorsonstad"}},{"attributes":{"name":"Eriberto Stanton","age":69,"location":"Fort Jaymeville"}},{"attributes":{"name":"Dr. Gillian Mayer","age":21,"location":"North Hildegard"}},{"attributes":{"name":"Louisa Rippin","age":72,"location":"Chelsiefurt"}},{"attributes":{"name":"Mazie Parisian","age":47,"location":"Faychester"}},{"attributes":{"name":"Dale Abshire","age":43,"location":"Ziemebury"}},{"attributes":{"name":"Dr. Morris Koelpin","age":50,"location":"Daphneeside"}},{"attributes":{"name":"Woodrow Stanton","age":33,"location":"Majorchester"}},{"attributes":{"name":"Marjorie Ortiz","age":49,"location":"Collinsstad"}},{"attributes":{"name":"Mabel Witting","age":51,"location":"New Alfredville"}},{"attributes":{"name":"Kenya Kohler","age":28,"location":"Abernathyview"}},{"attributes":{"name":"Marge Cormier","age":61,"location":"West Ashleighchester"}},{"attributes":{"name":"Dr. Bernadette Bartoletti","age":58,"location":"Texas City"}},{"attributes":{"name":"Kim Lehner","age":55,"location":"El Cajon"}},{"attributes":{"name":"Dr. Ian Wiegand","age":44,"location":"Erdmanstead"}},{"attributes":{"name":"Cielo Murazik","age":46,"location":"Turcotteland"}},{"attributes":{"name":"Willie Morar","age":44,"location":"Tremblaybury"}},{"attributes":{"name":"Mr. Glenn O'Hara","age":32,"location":"Maggiofort"}},{"attributes":{"name":"Stephon Roberts","age":47,"location":"Orem"}},{"attributes":{"name":"Keith Rempel","age":40,"location":"South Cortney"}},{"attributes":{"name":"Wilber Corkery","age":55,"location":"East Daniella"}},{"attributes":{"name":"Edith Satterfield","age":38,"location":"Angelachester"}},{"attributes":{"name":"Mrs. Ella Stoltenberg","age":54,"location":"Lake Suzanne"}},{"attributes":{"name":"Cecelia Morar Jr.","age":75,"location":"West Carliville"}},{"attributes":{"name":"Pauline Mante","age":22,"location":"Novafurt"}},{"attributes":{"name":"Harry Metz","age":30,"location":"Longview"}},{"attributes":{"name":"Lance Gulgowski","age":46,"location":"West Lindsay"}},{"attributes":{"name":"Olivia Torphy","age":35,"location":"Elgin"}},{"attributes":{"name":"Luis Lindgren","age":80,"location":"West Terryfurt"}},{"attributes":{"name":"Emory Gorczany","age":48,"location":"New Cleve"}},{"attributes":{"name":"Judith Mayer","age":29,"location":"Commerce City"}},{"attributes":{"name":"Dr. Maverick Schinner","age":18,"location":"East Chrismouth"}},{"attributes":{"name":"Colleen Orn","age":59,"location":"Port Marjolaine"}},{"attributes":{"name":"Santos Collins","age":48,"location":"Port Howellfort"}},{"attributes":{"name":"Lionel Lockman","age":55,"location":"Yostborough"}},{"attributes":{"name":"Allison Volkman","age":48,"location":"Chelseyborough"}},{"attributes":{"name":"Lyle Ortiz","age":32,"location":"North Vivianeview"}},{"attributes":{"name":"Connie Quigley","age":68,"location":"West Brendaside"}},{"attributes":{"name":"Bernice Okuneva II","age":38,"location":"White Plains"}},{"attributes":{"name":"Dedrick Rutherford","age":45,"location":"New Patienceside"}},{"attributes":{"name":"Brooke Leuschke","age":28,"location":"Fort Ramonaview"}},{"attributes":{"name":"Corbin Auer V","age":48,"location":"Bergstromberg"}},{"attributes":{"name":"Bulah Gibson","age":75,"location":"East Layneport"}},{"attributes":{"name":"Julian Grady","age":68,"location":"New Chauncey"}},{"attributes":{"name":"Clifford Jones","age":68,"location":"Mannbury"}},{"attributes":{"name":"Sidney Marquardt","age":27,"location":"Ottisfort"}},{"attributes":{"name":"Warren Dickinson","age":71,"location":"Ethanfort"}},{"attributes":{"name":"Katherine Greenfelder-Streich","age":69,"location":"North Miami Beach"}},{"attributes":{"name":"Garret Treutel","age":73,"location":"Ritchietown"}},{"attributes":{"name":"Guiseppe Wilderman","age":30,"location":"Joshuahworth"}},{"attributes":{"name":"Hugh O'Connell","age":47,"location":"Fort Maye"}},{"attributes":{"name":"Claudia Koss","age":71,"location":"Goodyear"}},{"attributes":{"name":"Israel Davis","age":18,"location":"Jersey City"}},{"attributes":{"name":"Freda Prosacco","age":78,"location":"Shanahanborough"}},{"attributes":{"name":"Ms. Joanne Zieme","age":54,"location":"West Aldenland"}},{"attributes":{"name":"Ida Huels","age":43,"location":"New Alvahbury"}},{"attributes":{"name":"Irvin Moen II","age":42,"location":"Augustineshire"}},{"attributes":{"name":"Geraldine Hegmann","age":39,"location":"West Orland"}},{"attributes":{"name":"Hazel Upton","age":32,"location":"Detroit"}},{"attributes":{"name":"Jakob Swaniawski","age":41,"location":"West Hal"}},{"attributes":{"name":"Krystal Daniel","age":27,"location":"South Clement"}},{"attributes":{"name":"Calvin King-D'Amore I","age":76,"location":"Port Christianashire"}},{"attributes":{"name":"Ryan Reynolds","age":63,"location":"Fort Keira"}},{"attributes":{"name":"Natasha Powlowski","age":32,"location":"Cliffordbury"}},{"attributes":{"name":"Gerald Koelpin","age":67,"location":"Balistreriside"}},{"attributes":{"name":"Vinnie Von","age":34,"location":"South Martineworth"}},{"attributes":{"name":"Mr. Sonya Cummerata","age":59,"location":"East Edisonboro"}},{"attributes":{"name":"Arnulfo Lynch","age":20,"location":"South Sunny"}},{"attributes":{"name":"Jason Gerlach","age":18,"location":"East Lucileberg"}},{"attributes":{"name":"Macie Rutherford","age":43,"location":"Allen"}},{"attributes":{"name":"Evan Ortiz","age":80,"location":"Vonburgh"}},{"attributes":{"name":"Ruth West","age":74,"location":"Julianworth"}},{"attributes":{"name":"Kyle Pfeffer-Schuppe","age":67,"location":"Reingerport"}},{"attributes":{"name":"Lyle Tromp","age":55,"location":"Port Amiya"}},{"attributes":{"name":"Clara Hansen","age":38,"location":"Rochester Hills"}},{"attributes":{"name":"Bernard Kub","age":52,"location":"North Jan"}},{"attributes":{"name":"Theo Crona","age":53,"location":"Turnerside"}},{"attributes":{"name":"Carlo McGlynn","age":56,"location":"Odessa"}},{"attributes":{"name":"Sergio Okuneva-Wolf","age":70,"location":"New Malikachester"}},{"attributes":{"name":"Mrs. Wendell Mraz","age":54,"location":"Isomview"}},{"attributes":{"name":"Jordi Legros","age":71,"location":"East Providence"}},{"attributes":{"name":"Dr. Calvin Blick","age":31,"location":"Lake Loyal"}},{"attributes":{"name":"Fausto Cassin","age":41,"location":"Keeblerton"}},{"attributes":{"name":"Hosea Muller","age":45,"location":"Port Astridside"}},{"attributes":{"name":"Sydnie Torphy-Bruen","age":22,"location":"Justenshire"}},{"attributes":{"name":"Lamar Lockman","age":75,"location":"Buffalo Grove"}},{"attributes":{"name":"Markus Ziemann","age":50,"location":"Placentia"}},{"attributes":{"name":"Dexter Kohler","age":74,"location":"East Budcester"}},{"attributes":{"name":"Dr. Mitchel Heidenreich","age":47,"location":"New Stephanietown"}},{"attributes":{"name":"Wilson Morissette","age":73,"location":"South Christophefield"}},{"attributes":{"name":"Muriel Koepp","age":57,"location":"Okunevaboro"}},{"attributes":{"name":"Dr. Gerald Waters","age":61,"location":"Fort Justine"}},{"attributes":{"name":"Joseph Macejkovic","age":47,"location":"Trompton"}},{"attributes":{"name":"Gayle Daugherty","age":39,"location":"Veronafort"}},{"attributes":{"name":"Ervin Wisozk","age":19,"location":"Diamondstad"}},{"attributes":{"name":"Freda Raynor","age":36,"location":"Antonettechester"}},{"attributes":{"name":"Erika Wilderman","age":35,"location":"South Chloeville"}},{"attributes":{"name":"Miss Nicholas Anderson","age":22,"location":"East Torey"}},{"attributes":{"name":"Mr. Felicity Dickens","age":42,"location":"Laroncester"}},{"attributes":{"name":"Jeannie Kunze DVM","age":35,"location":"Surprise"}},{"attributes":{"name":"Sarah Hills","age":28,"location":"Port Allenefield"}},{"attributes":{"name":"Miss Lana Torp","age":51,"location":"East Fredericborough"}},{"attributes":{"name":"Jeanette Grant","age":31,"location":"South Isidroshire"}},{"attributes":{"name":"Emmanuel Huel","age":40,"location":"Smithamville"}},{"attributes":{"name":"Francis Zieme","age":66,"location":"Nolanboro"}},{"attributes":{"name":"Dr. Lydia Padberg-Kihn V","age":34,"location":"Jefferson City"}},{"attributes":{"name":"Maria Hickle","age":31,"location":"Lake Abigayleside"}},{"attributes":{"name":"Deborah Skiles","age":37,"location":"East Kayla"}},{"attributes":{"name":"Felipe Rippin","age":42,"location":"Revere"}},{"attributes":{"name":"Victoria Reichel","age":70,"location":"Darebury"}},{"attributes":{"name":"Nathanael Klein","age":20,"location":"East Christine"}},{"attributes":{"name":"Jeffrey Jerde","age":28,"location":"New Fred"}},{"attributes":{"name":"Roberta Auer","age":61,"location":"Beattyside"}},{"attributes":{"name":"Dominick West V","age":54,"location":"Fort Nicolas"}},{"attributes":{"name":"Coty Schiller","age":53,"location":"Brandibury"}},{"attributes":{"name":"Jimmie Weissnat","age":45,"location":"Cleveland Heights"}},{"attributes":{"name":"Sam Witting","age":61,"location":"Reichelland"}},{"attributes":{"name":"Gail Becker","age":51,"location":"East Axelport"}},{"attributes":{"name":"Vilma Ruecker","age":21,"location":"Vallejo"}},{"attributes":{"name":"Robyn Schmidt","age":33,"location":"South Rubystead"}},{"attributes":{"name":"Arnold Marks III","age":43,"location":"Carolina"}},{"attributes":{"name":"Kimberly Effertz MD","age":34,"location":"Fort Geo"}},{"attributes":{"name":"Dominic O'Reilly","age":77,"location":"Port Franz"}},{"attributes":{"name":"Ciara Crist","age":70,"location":"South Conner"}},{"attributes":{"name":"Charlene Upton","age":35,"location":"Fort Norval"}},{"attributes":{"name":"Nyah Toy-Boyer","age":62,"location":"Birmingham"}},{"attributes":{"name":"Janie Hills DDS","age":64,"location":"Shannaland"}},{"attributes":{"name":"Kenton White PhD","age":33,"location":"South Korbin"}},{"attributes":{"name":"Thelma Rosenbaum II","age":31,"location":"Borershire"}},{"attributes":{"name":"Wanda Sanford-Smitham DVM","age":57,"location":"Medhurstmouth"}},{"attributes":{"name":"Ryleigh Mayer","age":50,"location":"Stammtown"}},{"attributes":{"name":"Viva Harris","age":65,"location":"Mannchester"}},{"attributes":{"name":"Phil Steuber DDS","age":21,"location":"Lake Anabelborough"}},{"attributes":{"name":"Emie Wiegand","age":20,"location":"Cathedral City"}},{"attributes":{"name":"Charlie Kling","age":72,"location":"West Zion"}},{"attributes":{"name":"Eden Kuvalis","age":33,"location":"Deckowstad"}},{"attributes":{"name":"Pedro Zemlak DDS","age":39,"location":"Yucaipa"}},{"attributes":{"name":"Abraham Kutch","age":37,"location":"Port Heatherfurt"}},{"attributes":{"name":"Dr. Clyde Hand","age":45,"location":"Reichelborough"}},{"attributes":{"name":"Randal Schuppe DVM","age":71,"location":"South Ashton"}},{"attributes":{"name":"Margaret Von","age":58,"location":"Richardshire"}},{"attributes":{"name":"Mrs. Christie Hane","age":69,"location":"Nadertown"}},{"attributes":{"name":"Vicky Mayer","age":24,"location":"Briaton"}},{"attributes":{"name":"Samson Grimes","age":43,"location":"West Keely"}},{"attributes":{"name":"Leigh Orn","age":27,"location":"North Darwin"}},{"attributes":{"name":"Miranda Abernathy","age":61,"location":"West Jennings"}},{"attributes":{"name":"Miss Mozelle Harber","age":34,"location":"Quitzonmouth"}},{"attributes":{"name":"Jean Bechtelar","age":48,"location":"Abefurt"}},{"attributes":{"name":"Alicia Miller","age":58,"location":"Fort Hankfort"}},{"attributes":{"name":"Kim Mraz","age":35,"location":"Ellicott City"}},{"attributes":{"name":"Gayle Quigley","age":37,"location":"Palm Bay"}},{"attributes":{"name":"Katlynn Russel Sr.","age":68,"location":"Edenshire"}},{"attributes":{"name":"Sonja Miller","age":27,"location":"Fort Dave"}},{"attributes":{"name":"Mr. Sam Connelly-Mills","age":32,"location":"Port Zakary"}},{"attributes":{"name":"Amos Kub","age":59,"location":"East Orange"}},{"attributes":{"name":"Kyle Dickinson","age":80,"location":"Port Arianna"}},{"attributes":{"name":"Stanton Fay","age":21,"location":"Great Falls"}},{"attributes":{"name":"Ana Cartwright","age":68,"location":"New Ravenport"}},{"attributes":{"name":"Ernesto Zieme","age":42,"location":"Valdosta"}},{"attributes":{"name":"Malachi Mohr","age":64,"location":"Fort Bud"}},{"attributes":{"name":"Douglas Cormier DVM","age":25,"location":"South Jaunita"}},{"attributes":{"name":"Sylvan O'Hara","age":55,"location":"Oshkosh"}},{"attributes":{"name":"Neal Howell","age":19,"location":"Port Alphonsochester"}},{"attributes":{"name":"Rosemarie Boyer-Kassulke","age":75,"location":"North Collin"}},{"attributes":{"name":"Maryse Ruecker","age":43,"location":"Octaviaboro"}},{"attributes":{"name":"Taylor Okuneva","age":75,"location":"Lake Shayna"}},{"attributes":{"name":"Leopoldo Volkman","age":45,"location":"Luettgenton"}},{"attributes":{"name":"Brandi Abshire","age":46,"location":"Fountainebleau"}},{"attributes":{"name":"Brad Kemmer","age":54,"location":"Maynardberg"}},{"attributes":{"name":"Oliver Morar IV","age":30,"location":"Grand Prairie"}},{"attributes":{"name":"Dr. Elias Crist","age":37,"location":"Stokesstead"}},{"attributes":{"name":"Ruby Howe","age":73,"location":"Corbinland"}},{"attributes":{"name":"Remington Kunze","age":26,"location":"Schroederton"}},{"attributes":{"name":"Elisa Hartmann","age":66,"location":"Sunnyvale"}},{"attributes":{"name":"Charlie Brakus III","age":72,"location":"Stiedemannside"}},{"attributes":{"name":"Daniela Satterfield-Abernathy II","age":44,"location":"Vonshire"}},{"attributes":{"name":"Earnest Davis","age":51,"location":"Botsfordview"}},{"attributes":{"name":"Juana Halvorson","age":48,"location":"New Lauryn"}},{"attributes":{"name":"Doris Ferry","age":34,"location":"Fort Lauderdale"}},{"attributes":{"name":"Vicki Monahan","age":39,"location":"Cathedral City"}},{"attributes":{"name":"Penny Lueilwitz","age":46,"location":"Fort Amina"}},{"attributes":{"name":"Sid Wolff","age":35,"location":"New Frederique"}},{"attributes":{"name":"Mr. Alberto Tillman","age":50,"location":"Douglasstad"}},{"attributes":{"name":"Jarod Mitchell","age":52,"location":"Michelborough"}},{"attributes":{"name":"Alivia Ullrich","age":41,"location":"Celestinestead"}},{"attributes":{"name":"Ernest Hudson","age":70,"location":"Robelbury"}},{"attributes":{"name":"Olga Lind","age":22,"location":"Batzton"}},{"attributes":{"name":"Zachary Kozey","age":69,"location":"Schowalterstad"}},{"attributes":{"name":"Stephanie Moen","age":55,"location":"Romaguerastead"}},{"attributes":{"name":"Elian Shanahan","age":57,"location":"Blaine"}},{"attributes":{"name":"Avery Abbott Jr.","age":76,"location":"Memphis"}},{"attributes":{"name":"Mr. Carroll Lind","age":60,"location":"San Angelo"}},{"attributes":{"name":"Dana Schiller","age":79,"location":"Beaumont"}},{"attributes":{"name":"Dale Wisozk","age":69,"location":"Lake Conorton"}},{"attributes":{"name":"Kasandra Predovic","age":76,"location":"Port Caliworth"}},{"attributes":{"name":"Joyce Kunde","age":68,"location":"Santa Rosa"}},{"attributes":{"name":"Ms. Angel Parisian","age":49,"location":"Fayborough"}},{"attributes":{"name":"Frieda Heathcote","age":54,"location":"South King"}},{"attributes":{"name":"Jerad Schuster","age":51,"location":"Cicero"}},{"attributes":{"name":"Ross Gutmann","age":72,"location":"Blickcester"}},{"attributes":{"name":"Lorene Spencer","age":78,"location":"Garden Grove"}},{"attributes":{"name":"Waino Swift","age":51,"location":"Thadview"}},{"attributes":{"name":"Aileen Leannon","age":22,"location":"East Santinobury"}},{"attributes":{"name":"Misty Bernhard","age":63,"location":"Avondale"}},{"attributes":{"name":"Everett Veum","age":41,"location":"Lake Assunta"}},{"attributes":{"name":"Colt Fahey","age":74,"location":"Newark"}},{"attributes":{"name":"Ms. Hailey Romaguera","age":27,"location":"Lake Benstad"}},{"attributes":{"name":"Andre Baumbach Jr.","age":64,"location":"Town 'n' Country"}},{"attributes":{"name":"Johnathon Mraz PhD","age":67,"location":"Mosciskishire"}},{"attributes":{"name":"Dr. Wanda Kub","age":28,"location":"Schadenburgh"}},{"attributes":{"name":"Jared Leannon-Collins","age":39,"location":"East Lansing"}},{"attributes":{"name":"Doris Durgan","age":80,"location":"Lake Rollin"}},{"attributes":{"name":"Patricia Hettinger","age":72,"location":"North Doris"}},{"attributes":{"name":"Mrs. Sally Thompson","age":68,"location":"Severn"}},{"attributes":{"name":"Miss Ron Emard","age":41,"location":"Fort Rachael"}},{"attributes":{"name":"Henrietta Adams PhD","age":71,"location":"Redlands"}},{"attributes":{"name":"Merlin Schamberger","age":78,"location":"Lake Arelyhaven"}},{"attributes":{"name":"Santiago Cronin","age":37,"location":"Schinnerberg"}},{"attributes":{"name":"Ethel Ernser","age":71,"location":"Port Jerrychester"}},{"attributes":{"name":"Vernon Legros","age":43,"location":"Tavaresport"}},{"attributes":{"name":"Miss Jermey Wiza","age":61,"location":"Port Torrance"}},{"attributes":{"name":"Darla Goldner","age":40,"location":"Killeen"}},{"attributes":{"name":"Beatrice Ryan Jr.","age":68,"location":"Port Evans"}},{"attributes":{"name":"Skylar Bahringer MD","age":68,"location":"Fort Heavenside"}},{"attributes":{"name":"Marge Berge","age":55,"location":"Raynorport"}},{"attributes":{"name":"Tianna Murray","age":72,"location":"Fort Leonortown"}},{"attributes":{"name":"Max Hauck V","age":19,"location":"New Caleb"}},{"attributes":{"name":"Maggie Hintz","age":64,"location":"Simonisfurt"}},{"attributes":{"name":"Jerad Becker","age":61,"location":"Duluth"}},{"attributes":{"name":"Lucas Casper","age":74,"location":"New Titofurt"}},{"attributes":{"name":"Mable Purdy","age":53,"location":"South Hill"}},{"attributes":{"name":"Oliver Grimes","age":26,"location":"Trevionborough"}},{"attributes":{"name":"Jackie Kautzer","age":73,"location":"Port Beatricebury"}},{"attributes":{"name":"Alexander Wiegand","age":32,"location":"Feestton"}},{"attributes":{"name":"Kelly Cole","age":55,"location":"New Mellie"}},{"attributes":{"name":"Sabryna Weimann","age":31,"location":"Port Jovani"}},{"attributes":{"name":"Sven Metz","age":25,"location":"Fort Toyside"}},{"attributes":{"name":"Toni Schuppe","age":58,"location":"Mayerstead"}},{"attributes":{"name":"Dax Sauer","age":75,"location":"Thornton"}},{"attributes":{"name":"Blanca Haag","age":32,"location":"Katelynview"}},{"attributes":{"name":"Hilario Bashirian","age":36,"location":"Wittingboro"}},{"attributes":{"name":"Gisselle Kulas Jr.","age":48,"location":"Millsmouth"}},{"attributes":{"name":"Marisol Larson","age":79,"location":"East Domenickshire"}},{"attributes":{"name":"Timothy Jacobs","age":75,"location":"South Pearline"}},{"attributes":{"name":"Bryan Bartell I","age":55,"location":"Gracetown"}},{"attributes":{"name":"Isabelle Boyle","age":51,"location":"North Jeradstad"}},{"attributes":{"name":"Rachael Hane","age":70,"location":"Fort Myers"}},{"attributes":{"name":"Douglas Koepp","age":24,"location":"Tacoma"}},{"attributes":{"name":"Carroll Upton","age":39,"location":"Riceview"}},{"attributes":{"name":"Jabari Lang","age":31,"location":"West Adityacester"}},{"attributes":{"name":"Mrs. Darrick Lemke-Bauch","age":77,"location":"Quincyboro"}},{"attributes":{"name":"Steve Gutkowski Sr.","age":34,"location":"Willchester"}},{"attributes":{"name":"Hershel Murphy-Lemke","age":58,"location":"Blockville"}},{"attributes":{"name":"Faye Walsh","age":77,"location":"Pflugerville"}},{"attributes":{"name":"Mrs. Virginia Wintheiser PhD","age":38,"location":"Ebonytown"}},{"attributes":{"name":"Dr. Kristen Hackett","age":21,"location":"Lake Joelle"}},{"attributes":{"name":"Gretchen Heaney-McLaughlin","age":22,"location":"Leilanibury"}},{"attributes":{"name":"Brook Will","age":30,"location":"Lompoc"}},{"attributes":{"name":"Hipolito D'Amore","age":55,"location":"Kyrafort"}},{"attributes":{"name":"Cecelia Bergnaum","age":34,"location":"Jacobsberg"}},{"attributes":{"name":"Palma Rau","age":63,"location":"Kossville"}},{"attributes":{"name":"Steven Robel","age":22,"location":"St. Louis Park"}},{"attributes":{"name":"Myrtis Funk","age":68,"location":"Lednerview"}},{"attributes":{"name":"Rafael Hagenes","age":68,"location":"Castle Rock"}},{"attributes":{"name":"Mr. Brendan Harris","age":36,"location":"North Jaylen"}},{"attributes":{"name":"Diane Schowalter IV","age":43,"location":"West Hartford"}},{"attributes":{"name":"Rochelle Paucek","age":43,"location":"Danville"}},{"attributes":{"name":"Rico Lowe","age":70,"location":"Schuppeton"}},{"attributes":{"name":"Maryann Ryan","age":50,"location":"New Lenoraport"}},{"attributes":{"name":"Marlene Rice DVM","age":46,"location":"Hyattshire"}},{"attributes":{"name":"Adrianna Robel","age":18,"location":"Hauckview"}},{"attributes":{"name":"Bradley Hayes-Funk","age":28,"location":"Evansview"}},{"attributes":{"name":"Jerel Stiedemann","age":25,"location":"Lorenzoton"}},{"attributes":{"name":"Morgan Kilback","age":18,"location":"Lake Velva"}},{"attributes":{"name":"Dr. Fernando Dicki","age":54,"location":"New Tyreekchester"}},{"attributes":{"name":"Garry Okuneva","age":47,"location":"Lake Mohammadberg"}},{"attributes":{"name":"Chance Terry","age":69,"location":"North Andres"}},{"attributes":{"name":"Sean Batz","age":49,"location":"Fort Stellaville"}},{"attributes":{"name":"Willard Kovacek","age":63,"location":"Lake Uniqueport"}},{"attributes":{"name":"Miss Janis Kohler I","age":52,"location":"Fort Justusside"}},{"attributes":{"name":"Mrs. Cynthia Bauch","age":74,"location":"Jaystad"}},{"attributes":{"name":"Krystal Heidenreich","age":55,"location":"Wisozkland"}},{"attributes":{"name":"Mrs. Adrienne Balistreri","age":25,"location":"Tinley Park"}},{"attributes":{"name":"Jerome Bechtelar","age":53,"location":"New Larry"}},{"attributes":{"name":"Milford Abernathy","age":46,"location":"Schimmelport"}},{"attributes":{"name":"Barton Ziemann","age":42,"location":"South Morgan"}},{"attributes":{"name":"Terrell Von","age":46,"location":"Port Vaughnboro"}},{"attributes":{"name":"Gerardo Schiller","age":27,"location":"North Luella"}},{"attributes":{"name":"Dr. Meghan Ullrich","age":74,"location":"South Ramiro"}},{"attributes":{"name":"Misty Torp","age":71,"location":"West Adellville"}},{"attributes":{"name":"Johnny Casper","age":61,"location":"Runolfsdottirborough"}},{"attributes":{"name":"Marco Fahey-Gottlieb","age":67,"location":"Port Dayne"}},{"attributes":{"name":"Lonnie Hand","age":49,"location":"Rocky Mount"}},{"attributes":{"name":"Sarah Kling","age":41,"location":"West Marisolfort"}},{"attributes":{"name":"Jeremiah Paucek","age":53,"location":"Russelboro"}},{"attributes":{"name":"Miss Lorraine Cronin Jr.","age":55,"location":"New Julian"}},{"attributes":{"name":"Kevin Jones","age":61,"location":"South Hoseaport"}},{"attributes":{"name":"Mrs. Joanna Flatley","age":57,"location":"Burlington"}},{"attributes":{"name":"Dr. Randy Schroeder","age":19,"location":"Marianneburgh"}},{"attributes":{"name":"Easter Bartell","age":57,"location":"Fayetteville"}},{"attributes":{"name":"Marcelo Mosciski","age":79,"location":"West Oscarview"}},{"attributes":{"name":"Nelson McGlynn","age":73,"location":"Burlington"}},{"attributes":{"name":"Felipe MacGyver","age":67,"location":"Ryanland"}},{"attributes":{"name":"Darryl Ferry","age":59,"location":"West Baby"}},{"attributes":{"name":"Catherine Stehr","age":34,"location":"Strosinton"}},{"attributes":{"name":"Luther Ward","age":58,"location":"West Nedraworth"}},{"attributes":{"name":"Roselyn Bauch-D'Amore","age":49,"location":"Mount Pleasant"}},{"attributes":{"name":"Titus Tremblay","age":49,"location":"West Cristian"}},{"attributes":{"name":"Jordan Windler","age":18,"location":"Fort Wellington"}},{"attributes":{"name":"Stephen Waters","age":79,"location":"Lukaston"}},{"attributes":{"name":"Idell Huels IV","age":25,"location":"Port Katarinatown"}},{"attributes":{"name":"Unique Casper","age":72,"location":"North Dannieshire"}},{"attributes":{"name":"Ova Rodriguez","age":55,"location":"Manntown"}},{"attributes":{"name":"Meagan Okuneva","age":18,"location":"Irvingfield"}},{"attributes":{"name":"Bernadette Gerhold","age":34,"location":"West Kaitlin"}},{"attributes":{"name":"Jeannette Bradtke II","age":18,"location":"North Kennith"}},{"attributes":{"name":"Mossie Macejkovic","age":35,"location":"South Auroreborough"}},{"attributes":{"name":"Byron Borer","age":43,"location":"East Cruz"}},{"attributes":{"name":"Miss Delia Botsford","age":27,"location":"North Carolanneview"}},{"attributes":{"name":"Victor Schowalter","age":59,"location":"Fort Marciaborough"}},{"attributes":{"name":"Gerard Gislason","age":40,"location":"Lake Talia"}},{"attributes":{"name":"Mr. Kari Koss","age":20,"location":"South Timmystead"}},{"attributes":{"name":"Mrs. Camylle Hegmann III","age":52,"location":"Lake Heather"}},{"attributes":{"name":"Mrs. Lula Boyer","age":61,"location":"Fort Domenick"}},{"attributes":{"name":"Frankie Koelpin","age":78,"location":"Joshuahbury"}},{"attributes":{"name":"Alan Walsh","age":34,"location":"Ryanport"}},{"attributes":{"name":"Gary Hahn","age":39,"location":"Lake Markusport"}},{"attributes":{"name":"Theresa Renner","age":23,"location":"South Miguelfort"}},{"attributes":{"name":"America Okuneva","age":60,"location":"Florineburgh"}},{"attributes":{"name":"Bertha Medhurst","age":46,"location":"Fort Lauderdale"}},{"attributes":{"name":"Cole Kerluke","age":67,"location":"Smyrna"}},{"attributes":{"name":"Janet Lang Jr.","age":34,"location":"Lake Jamarcus"}},{"attributes":{"name":"Francesca Deckow DVM","age":22,"location":"Lake Marco"}},{"attributes":{"name":"Maynard Reilly-Brown","age":22,"location":"Juliefort"}},{"attributes":{"name":"Malcolm Cronin","age":66,"location":"North Brisastad"}},{"attributes":{"name":"Toni Haley","age":50,"location":"Keeblerstad"}},{"attributes":{"name":"Kayley Becker PhD","age":69,"location":"West Wilhelmineshire"}},{"attributes":{"name":"Charlene Denesik","age":54,"location":"Fort Jordy"}},{"attributes":{"name":"Lillian Kuphal","age":66,"location":"Hilpertport"}},{"attributes":{"name":"Brendan Pacocha","age":53,"location":"New Nathen"}},{"attributes":{"name":"James Romaguera","age":33,"location":"Satterfieldstad"}},{"attributes":{"name":"Chadrick Mills","age":77,"location":"West Zanderberg"}},{"attributes":{"name":"Renee Crooks II","age":64,"location":"East Priscilla"}},{"attributes":{"name":"Paula Pollich","age":65,"location":"Port Kendrafort"}},{"attributes":{"name":"Miss Raquel Farrell","age":77,"location":"Evansville"}},{"attributes":{"name":"June Hermiston","age":34,"location":"Kennewick"}},{"attributes":{"name":"Vergie Muller III","age":59,"location":"Vilmamouth"}},{"attributes":{"name":"Mathew VonRueden","age":19,"location":"Lake Bethanycester"}},{"attributes":{"name":"Clara Kertzmann","age":27,"location":"East Sallie"}},{"attributes":{"name":"Troy Waters","age":26,"location":"Douglasborough"}},{"attributes":{"name":"Alex Senger","age":24,"location":"Federal Way"}},{"attributes":{"name":"Rickey Berge DVM","age":62,"location":"Adamsfort"}},{"attributes":{"name":"Krystal Predovic","age":53,"location":"Lake Claraville"}},{"attributes":{"name":"Dixie Hansen","age":76,"location":"Lake Kaelynstad"}},{"attributes":{"name":"Patty Koch","age":45,"location":"Riverview"}},{"attributes":{"name":"Joshuah Streich","age":65,"location":"Kautzerfield"}},{"attributes":{"name":"Alyce Miller","age":34,"location":"Greenville"}},{"attributes":{"name":"Arnold Langworth","age":22,"location":"Fort Chadrick"}},{"attributes":{"name":"Sophia Tillman DVM","age":48,"location":"Rhodaborough"}},{"attributes":{"name":"Dr. Molly Schaden","age":30,"location":"New Jeanette"}},{"attributes":{"name":"Moses Rippin","age":47,"location":"North Garnettmouth"}},{"attributes":{"name":"Tyshawn Becker","age":31,"location":"Kerluketon"}},{"attributes":{"name":"Natalie Grant","age":56,"location":"Titusfort"}},{"attributes":{"name":"Dr. Drew Ankunding","age":71,"location":"North Amyamouth"}},{"attributes":{"name":"Mr. Randal Zboncak","age":33,"location":"South Groverchester"}},{"attributes":{"name":"Matt Satterfield","age":28,"location":"West Carmelastad"}},{"attributes":{"name":"Enos Wilkinson","age":75,"location":"Sandy Springs"}},{"attributes":{"name":"Frankie Bernhard-Trantow","age":20,"location":"Stockton"}},{"attributes":{"name":"Sadye Mertz DDS","age":77,"location":"New Sandy"}},{"attributes":{"name":"Wava Halvorson","age":35,"location":"Andersonberg"}},{"attributes":{"name":"Amelia Lubowitz","age":33,"location":"New Amyashire"}},{"attributes":{"name":"Orlando Dach","age":69,"location":"Kathryneville"}},{"attributes":{"name":"Victoria Beahan","age":58,"location":"Lake Charlieview"}},{"attributes":{"name":"Gilbert Hagenes","age":71,"location":"North Rexstad"}},{"attributes":{"name":"Mr. Roy Tillman","age":39,"location":"South Madyson"}},{"attributes":{"name":"Houston Brekke","age":44,"location":"Hendersonville"}},{"attributes":{"name":"Meredith Stroman","age":38,"location":"Johnsoncester"}},{"attributes":{"name":"Ruth Ondricka Jr.","age":76,"location":"East Rebaview"}},{"attributes":{"name":"Diana Donnelly","age":62,"location":"Hilpertshire"}},{"attributes":{"name":"Tonya Witting","age":65,"location":"Port Cecileton"}},{"attributes":{"name":"Ms. Eladio Stehr-Schmitt","age":76,"location":"Everett"}},{"attributes":{"name":"Brad Rutherford","age":59,"location":"Parma"}},{"attributes":{"name":"Gina Barton","age":70,"location":"Muellerside"}},{"attributes":{"name":"Alexandrea King","age":33,"location":"Bridgeport"}},{"attributes":{"name":"Dominic Jast","age":54,"location":"Isabelleboro"}},{"attributes":{"name":"Lori Runolfsdottir","age":36,"location":"Ulicestown"}},{"attributes":{"name":"Loren Klocko","age":75,"location":"MacGyverport"}},{"attributes":{"name":"Adolph Beahan","age":38,"location":"Boganstad"}},{"attributes":{"name":"Bert Mraz","age":22,"location":"Corineberg"}},{"attributes":{"name":"Delores Greenfelder","age":61,"location":"Courtneystead"}},{"attributes":{"name":"Juvenal Koch","age":44,"location":"Lake Elsinore"}},{"attributes":{"name":"Albert Hauck-Goyette","age":64,"location":"New Esteban"}},{"attributes":{"name":"Kelli Spencer","age":77,"location":"Chloemouth"}},{"attributes":{"name":"Karl Sanford II","age":67,"location":"East Jakebury"}},{"attributes":{"name":"Ashleigh Bechtelar MD","age":71,"location":"Clementinafurt"}},{"attributes":{"name":"Geoffrey Mosciski","age":69,"location":"Leuschkefort"}},{"attributes":{"name":"Donald Schultz","age":70,"location":"New Darian"}},{"attributes":{"name":"Stuart Kozey","age":79,"location":"Kennewick"}},{"attributes":{"name":"Kaci Kuhlman","age":46,"location":"Elk Grove"}},{"attributes":{"name":"Mr. Quinten Maggio","age":51,"location":"Port Dion"}},{"attributes":{"name":"Leonel Effertz","age":63,"location":"West Rileyfurt"}},{"attributes":{"name":"Luther Jacobson","age":22,"location":"Markville"}},{"attributes":{"name":"Carley Mohr","age":58,"location":"McCulloughhaven"}},{"attributes":{"name":"Ms. Kip Batz-Dietrich","age":72,"location":"Toniberg"}},{"attributes":{"name":"Casandra Grimes","age":28,"location":"Port Jeanneworth"}},{"attributes":{"name":"Vivianne Braun","age":72,"location":"Greenville"}},{"attributes":{"name":"Lavada Schneider Jr.","age":36,"location":"Mount Vernon"}},{"attributes":{"name":"Chasity O'Kon","age":23,"location":"Guadalupestad"}},{"attributes":{"name":"Mrs. Geraldine Haag","age":36,"location":"Spokane"}},{"attributes":{"name":"Ellis Williamson","age":78,"location":"Port Miles"}},{"attributes":{"name":"Jayda Waters","age":77,"location":"North Jeremyhaven"}},{"attributes":{"name":"Kasey Grant","age":51,"location":"Edythworth"}},{"attributes":{"name":"Johnnie O'Hara PhD","age":23,"location":"Fort Codystad"}},{"attributes":{"name":"Billie Bednar","age":50,"location":"East Bridgettetown"}},{"attributes":{"name":"Santos Baumbach","age":20,"location":"Broderickchester"}},{"attributes":{"name":"Mr. Juliet Batz","age":68,"location":"Schadenfort"}},{"attributes":{"name":"Buford Abernathy PhD","age":61,"location":"Port Seanchester"}},{"attributes":{"name":"Nelson Considine","age":68,"location":"Port Augustastead"}},{"attributes":{"name":"Kevin Mohr","age":33,"location":"Port Carlie"}},{"attributes":{"name":"Becky Cronin","age":34,"location":"North Kareemcester"}},{"attributes":{"name":"Ignatius Turcotte","age":21,"location":"Judgeport"}},{"attributes":{"name":"Ali Schumm","age":22,"location":"Weissnathaven"}},{"attributes":{"name":"Lorena Orn","age":71,"location":"Homestead"}},{"attributes":{"name":"Flo Halvorson","age":72,"location":"Boganchester"}},{"attributes":{"name":"Walter Weimann","age":56,"location":"Zacharyview"}},{"attributes":{"name":"Allie Brown","age":62,"location":"Port Lauren"}},{"attributes":{"name":"Brenda Hickle","age":77,"location":"Fort Wellington"}},{"attributes":{"name":"Mr. Seth Hermann II","age":41,"location":"Urbanboro"}},{"attributes":{"name":"Darlene Berge","age":25,"location":"Clairshire"}},{"attributes":{"name":"Ruby Schuppe","age":49,"location":"Kearaview"}},{"attributes":{"name":"Haskell Ratke","age":47,"location":"Port Sylvesterchester"}},{"attributes":{"name":"Lucinda Berge-Bahringer III","age":56,"location":"Robertsfurt"}},{"attributes":{"name":"Monty Champlin","age":43,"location":"Hyattburgh"}},{"attributes":{"name":"Heather Lemke","age":43,"location":"Rippinfort"}},{"attributes":{"name":"Rosemary Reilly II","age":30,"location":"Cullenside"}},{"attributes":{"name":"Sonya Torp","age":75,"location":"East Jasmin"}},{"attributes":{"name":"Dr. Gina Sipes","age":44,"location":"North Myahfield"}},{"attributes":{"name":"Lamont Kub-Tillman","age":27,"location":"Bradleyton"}},{"attributes":{"name":"Mrs. Timmy Wolf","age":79,"location":"Greeley"}},{"attributes":{"name":"Katherine Harber","age":27,"location":"Quitzonboro"}},{"attributes":{"name":"Nellie Larson","age":55,"location":"Abernathyland"}},{"attributes":{"name":"Mrs. Wanda Hane","age":64,"location":"Fort Claudton"}},{"attributes":{"name":"Darien Beer","age":26,"location":"East Evert"}},{"attributes":{"name":"Miss Danika Schultz V","age":48,"location":"South Wilfredofurt"}},{"attributes":{"name":"Gilda Morissette","age":36,"location":"Estebancester"}},{"attributes":{"name":"Ms. Caroline Hartmann V","age":79,"location":"New Phyllisfurt"}},{"attributes":{"name":"Reymundo Gibson","age":71,"location":"Lizethview"}},{"attributes":{"name":"Lee Jacobson","age":19,"location":"Gilbert"}},{"attributes":{"name":"Corey Schmeler","age":43,"location":"Huntersville"}},{"attributes":{"name":"Barbara Bosco","age":72,"location":"Jaydeburgh"}},{"attributes":{"name":"Leslie Ernser","age":53,"location":"Hammesboro"}},{"attributes":{"name":"Santiago Russel","age":54,"location":"North Lexie"}},{"attributes":{"name":"Lee Ortiz","age":63,"location":"Jeanneland"}},{"attributes":{"name":"Dixie Von-Lockman","age":75,"location":"Batzmouth"}},{"attributes":{"name":"Andy Abbott","age":28,"location":"Rowland Heights"}},{"attributes":{"name":"Melanie Bergnaum","age":21,"location":"Sadyeland"}},{"attributes":{"name":"Winston Wisozk","age":33,"location":"Norwalk"}},{"attributes":{"name":"Mr. Edgar Hilll","age":70,"location":"West Ameliestead"}},{"attributes":{"name":"Lewis Von","age":53,"location":"Arneshire"}},{"attributes":{"name":"Willow Schneider","age":79,"location":"North Christopher"}},{"attributes":{"name":"Belinda Boyer","age":34,"location":"Ashtynmouth"}},{"attributes":{"name":"Faye Schaefer IV","age":37,"location":"Harrisonburg"}},{"attributes":{"name":"Cayla Armstrong","age":48,"location":"Fort Nelsonborough"}},{"attributes":{"name":"Nicolas Tromp I","age":75,"location":"Towneview"}},{"attributes":{"name":"Pete Kshlerin","age":52,"location":"Stokesfield"}},{"attributes":{"name":"Dr. Mabel Baumbach IV","age":43,"location":"Levittown"}},{"attributes":{"name":"Giovanni Runte Jr.","age":72,"location":"Edwinatown"}},{"attributes":{"name":"Barbara Rippin","age":66,"location":"North Janeborough"}},{"attributes":{"name":"Tom Hickle","age":25,"location":"Aliyahcester"}},{"attributes":{"name":"Aniyah Crist","age":63,"location":"Ritchieview"}},{"attributes":{"name":"Dewey Wolff-McLaughlin","age":33,"location":"Oranton"}},{"attributes":{"name":"Ryan Zboncak","age":49,"location":"New Bethanyside"}},{"attributes":{"name":"Elliot Gutmann","age":51,"location":"East Generalborough"}},{"attributes":{"name":"Ciara Brakus","age":71,"location":"Schambergerboro"}},{"attributes":{"name":"Roman Gleichner","age":21,"location":"West Luther"}},{"attributes":{"name":"Alvin Legros","age":79,"location":"Clevechester"}},{"attributes":{"name":"Milton Jaskolski","age":28,"location":"Graciehaven"}},{"attributes":{"name":"Beth Mertz","age":27,"location":"Ociechester"}},{"attributes":{"name":"Shelly Towne","age":32,"location":"South Lester"}},{"attributes":{"name":"Corey Weber","age":39,"location":"Kaylihaven"}},{"attributes":{"name":"Florence Hintz","age":71,"location":"Santa Fe"}},{"attributes":{"name":"Charles Mertz","age":63,"location":"Ocala"}},{"attributes":{"name":"Jennifer Grady","age":80,"location":"Cullenville"}},{"attributes":{"name":"Lesly Wilderman","age":44,"location":"South Gerardoshire"}},{"attributes":{"name":"Nyasia Windler","age":55,"location":"Lake Anaberg"}},{"attributes":{"name":"Dr. Priscilla Breitenberg","age":32,"location":"Reynoldsberg"}},{"attributes":{"name":"Priscilla Marquardt","age":49,"location":"Vista"}},{"attributes":{"name":"Hershel Tremblay","age":66,"location":"Tigard"}},{"attributes":{"name":"Randy Hammes","age":52,"location":"Judsonburgh"}},{"attributes":{"name":"Rae Roob","age":25,"location":"Port Kayliport"}},{"attributes":{"name":"Adam Franey","age":79,"location":"Laishachester"}},{"attributes":{"name":"Wava Effertz Sr.","age":57,"location":"Alisonside"}},{"attributes":{"name":"Claudine Will","age":54,"location":"Camrynside"}},{"attributes":{"name":"Emilio Ebert","age":80,"location":"Pflugerville"}},{"attributes":{"name":"Jaquelin Tremblay","age":26,"location":"Bahringerhaven"}},{"attributes":{"name":"Albert Morar-Schmidt","age":39,"location":"North Kari"}},{"attributes":{"name":"Linnie Crist","age":73,"location":"Evelinefurt"}},{"attributes":{"name":"Dennis Hilll","age":46,"location":"West Omari"}},{"attributes":{"name":"Uriah Funk","age":51,"location":"Milpitas"}},{"attributes":{"name":"Angie Mann","age":30,"location":"Justinefurt"}},{"attributes":{"name":"Kasey Herzog","age":58,"location":"Francesland"}},{"attributes":{"name":"Casey Pfeffer","age":79,"location":"Huelstead"}},{"attributes":{"name":"Donato Rosenbaum","age":53,"location":"Sammamish"}},{"attributes":{"name":"Giles Moore","age":55,"location":"Schuylerbury"}},{"attributes":{"name":"Melanie Conn","age":22,"location":"Tillmanton"}},{"attributes":{"name":"Icie Quitzon","age":75,"location":"Antoniashire"}},{"attributes":{"name":"Julie Langworth","age":41,"location":"Murphyworth"}},{"attributes":{"name":"Andre Towne","age":48,"location":"Delray Beach"}},{"attributes":{"name":"Ann Dickens","age":44,"location":"Bergnaumborough"}},{"attributes":{"name":"Ms. Melinda Cummerata","age":61,"location":"West Valentinfurt"}},{"attributes":{"name":"Jalen Corwin","age":73,"location":"New Zachary"}},{"attributes":{"name":"Hattie Langosh","age":26,"location":"Runolfssonside"}},{"attributes":{"name":"Boris Cartwright","age":25,"location":"Raynorville"}},{"attributes":{"name":"Ian Zulauf Sr.","age":75,"location":"Kirstenstad"}},{"attributes":{"name":"Aubrey Little","age":67,"location":"Fort Yolandaland"}},{"attributes":{"name":"Gardner Hansen","age":40,"location":"Kiraworth"}},{"attributes":{"name":"Erik Robel","age":59,"location":"Bozeman"}},{"attributes":{"name":"Reese Hagenes-Keebler","age":38,"location":"Port Angus"}},{"attributes":{"name":"Nova Beahan","age":29,"location":"Yucaipa"}},{"attributes":{"name":"Raphael Powlowski","age":26,"location":"Omaha"}},{"attributes":{"name":"Chris Tillman","age":31,"location":"West Ayla"}},{"attributes":{"name":"Roosevelt Koch","age":62,"location":"Nitzschefort"}},{"attributes":{"name":"Krista Lynch","age":47,"location":"South Nyasiaview"}},{"attributes":{"name":"Savanah Blick","age":32,"location":"Mariliestead"}},{"attributes":{"name":"Marjolaine Waters","age":42,"location":"West Gracie"}},{"attributes":{"name":"Roger Kutch","age":25,"location":"North Rebekah"}},{"attributes":{"name":"Mr. Alejandro Rolfson","age":53,"location":"South Bradley"}},{"attributes":{"name":"Haley Kreiger MD","age":21,"location":"Port Fletcherberg"}},{"attributes":{"name":"Rahul Abbott","age":60,"location":"Aimeefort"}},{"attributes":{"name":"Ms. Janae Nicolas","age":29,"location":"Julienborough"}},{"attributes":{"name":"Dr. Michael Stoltenberg I","age":33,"location":"Lake Madelineboro"}},{"attributes":{"name":"Annie Conroy","age":73,"location":"Douglasburgh"}},{"attributes":{"name":"Miss Emil Toy","age":61,"location":"New Elliotcester"}},{"attributes":{"name":"Melody Pfannerstill","age":67,"location":"Lake Modesto"}},{"attributes":{"name":"Flavio Gutmann","age":39,"location":"South Orlandton"}},{"attributes":{"name":"Dr. Simon Kulas","age":33,"location":"Keelingshire"}},{"attributes":{"name":"Ken Stroman","age":56,"location":"Hudsonworth"}},{"attributes":{"name":"Janis Little","age":46,"location":"East Irwin"}},{"attributes":{"name":"Carol Waters","age":47,"location":"Canton"}},{"attributes":{"name":"Mr. Sean Zboncak","age":76,"location":"Fort Fordtown"}},{"attributes":{"name":"Willow Kiehn III","age":25,"location":"Fort Lisa"}},{"attributes":{"name":"Hillard Douglas","age":34,"location":"Dickinsonstad"}},{"attributes":{"name":"Albert Kiehn","age":52,"location":"Cielofort"}},{"attributes":{"name":"Miss Olive Kemmer","age":74,"location":"West Maxieside"}},{"attributes":{"name":"Dr. Adolf Harris","age":45,"location":"Carolynboro"}},{"attributes":{"name":"Bill Bauch","age":72,"location":"Gresham"}},{"attributes":{"name":"Jayme Davis","age":39,"location":"Miami Gardens"}},{"attributes":{"name":"Mr. Kathryn Schuppe","age":72,"location":"Cathrineview"}},{"attributes":{"name":"Marion Fahey","age":55,"location":"Lake Chayahaven"}},{"attributes":{"name":"Dr. Marta Dach","age":68,"location":"Fort Ilianacester"}},{"attributes":{"name":"Olivia Parker","age":33,"location":"Raymondfurt"}},{"attributes":{"name":"Kory Hermann","age":41,"location":"Port Maribelchester"}},{"attributes":{"name":"Darion Hartmann","age":75,"location":"Port Barrychester"}},{"attributes":{"name":"Courtney Jacobs","age":57,"location":"Ryleighview"}},{"attributes":{"name":"Shari Ortiz","age":77,"location":"Urbandale"}},{"attributes":{"name":"Darlene Simonis","age":21,"location":"Lake Delmer"}},{"attributes":{"name":"Douglas Gerhold IV","age":23,"location":"San Marcos"}},{"attributes":{"name":"Merlin Champlin","age":25,"location":"Minnetonka"}},{"attributes":{"name":"Dr. Joan Schneider","age":63,"location":"Molliemouth"}},{"attributes":{"name":"Susan McCullough","age":41,"location":"Corpus Christi"}},{"attributes":{"name":"Lillie Daniel","age":75,"location":"Lake Kylerborough"}},{"attributes":{"name":"Roy Mante","age":73,"location":"Priscillashire"}},{"attributes":{"name":"Miss Mollie Braun","age":74,"location":"Brookhaven"}},{"attributes":{"name":"Reese Brakus","age":54,"location":"Port Elvisfurt"}},{"attributes":{"name":"Krista Bernier","age":56,"location":"North Tyreeland"}},{"attributes":{"name":"Ms. Tiffany Brown","age":62,"location":"New Gerardofort"}},{"attributes":{"name":"Chesley Kemmer Jr.","age":69,"location":"North Erlingcester"}},{"attributes":{"name":"Onie Nader","age":59,"location":"Dallasshire"}},{"attributes":{"name":"Irma Brekke","age":79,"location":"Kellenshire"}},{"attributes":{"name":"Domenico Stracke IV","age":23,"location":"Hilllville"}},{"attributes":{"name":"Nicholas Shields","age":25,"location":"Destinycester"}},{"attributes":{"name":"Evan Emard","age":56,"location":"Port Jazmin"}},{"attributes":{"name":"Rosendo Parisian","age":66,"location":"West Bellberg"}},{"attributes":{"name":"Mr. Margie Hamill","age":68,"location":"Simi Valley"}},{"attributes":{"name":"Sherri Stiedemann","age":19,"location":"Lake Bethanyfort"}},{"attributes":{"name":"Preston Jerde","age":75,"location":"New Vallie"}},{"attributes":{"name":"Trinity Rosenbaum","age":24,"location":"West Alexanne"}},{"attributes":{"name":"Betsy Becker","age":69,"location":"Topeka"}},{"attributes":{"name":"Mr. Nathaniel Littel","age":48,"location":"Burlington"}},{"attributes":{"name":"Ulises Roberts","age":24,"location":"New Reynold"}},{"attributes":{"name":"Edgar Russel","age":27,"location":"Willmsland"}},{"attributes":{"name":"Alfonso Lang","age":74,"location":"Myraview"}},{"attributes":{"name":"Erma Nolan","age":43,"location":"Melyssafurt"}},{"attributes":{"name":"Tressa Pfannerstill","age":51,"location":"Jerdebury"}},{"attributes":{"name":"Devin O'Keefe","age":70,"location":"Hermancester"}},{"attributes":{"name":"Ms. Antone Gibson","age":59,"location":"Kesslerchester"}},{"attributes":{"name":"Marlen Russel","age":35,"location":"Denesikland"}},{"attributes":{"name":"Billie Kuhic","age":55,"location":"Lake Jewelltown"}},{"attributes":{"name":"Cindy Treutel-Satterfield","age":40,"location":"East Zora"}},{"attributes":{"name":"Shirley Kovacek I","age":62,"location":"New Eulahcester"}},{"attributes":{"name":"Laura Schultz","age":52,"location":"Fort Lorenzo"}},{"attributes":{"name":"Lorine Buckridge II","age":59,"location":"New Darianaville"}},{"attributes":{"name":"Micheal Graham","age":61,"location":"Murazikfield"}},{"attributes":{"name":"Arlene Kemmer","age":41,"location":"East Brett"}},{"attributes":{"name":"Mr. Korbin Hilll","age":43,"location":"Lake Keatonworth"}},{"attributes":{"name":"Kenneth Reilly-Champlin","age":36,"location":"Noblesville"}},{"attributes":{"name":"Terrance Hirthe","age":29,"location":"Berwyn"}},{"attributes":{"name":"Miss Mercedes Bernhard","age":40,"location":"Katlynfield"}},{"attributes":{"name":"Mr. Monte Pagac","age":62,"location":"Port Tremayneboro"}},{"attributes":{"name":"Ralph Pacocha","age":68,"location":"Lake Laura"}},{"attributes":{"name":"Patrick Krajcik","age":39,"location":"Rockford"}},{"attributes":{"name":"Dr. Fausto Pfannerstill Jr.","age":24,"location":"Cedrickton"}},{"attributes":{"name":"Eriberto Swaniawski","age":32,"location":"East Philipbury"}},{"attributes":{"name":"Dr. Greg Hartmann","age":26,"location":"Harveyfurt"}},{"attributes":{"name":"Amira Aufderhar","age":32,"location":"Bellflower"}},{"attributes":{"name":"Mr. Brent Stamm","age":22,"location":"South Annamarie"}},{"attributes":{"name":"Mr. Zachary Jacobi","age":21,"location":"New Maymie"}},{"attributes":{"name":"Stella Runolfsson","age":50,"location":"Howetown"}},{"attributes":{"name":"Bernadine Schowalter","age":40,"location":"North Letastad"}},{"attributes":{"name":"Irma Stoltenberg","age":18,"location":"South Roxanneburgh"}},{"attributes":{"name":"Barry Crooks","age":38,"location":"Lake Vincenzochester"}},{"attributes":{"name":"Buck Kovacek","age":64,"location":"New Rubyeberg"}},{"attributes":{"name":"Oliver Hessel","age":35,"location":"Croninview"}},{"attributes":{"name":"Alejandro Green","age":18,"location":"Fort Nelsonshire"}},{"attributes":{"name":"Arnulfo Konopelski","age":22,"location":"North Francesco"}},{"attributes":{"name":"Linda Hartmann","age":45,"location":"Port Brook"}},{"attributes":{"name":"Oliver Torphy","age":34,"location":"Denesikfield"}},{"attributes":{"name":"Horace Brakus","age":48,"location":"Roselynfort"}},{"attributes":{"name":"Ismael Corwin","age":61,"location":"Kissimmee"}},{"attributes":{"name":"Mark Nikolaus-Klein","age":71,"location":"Kingsport"}},{"attributes":{"name":"Earnest Ziemann","age":57,"location":"Creminfield"}},{"attributes":{"name":"Margarita Hane","age":39,"location":"Bernadinehaven"}},{"attributes":{"name":"Penny Miller","age":30,"location":"North Zackaryfort"}},{"attributes":{"name":"Maria Goldner","age":67,"location":"Coon Rapids"}},{"attributes":{"name":"Janis Bins","age":30,"location":"Lake Kiarahaven"}},{"attributes":{"name":"Harriet Flatley","age":27,"location":"West New York"}},{"attributes":{"name":"Mr. Ramiro Rohan","age":74,"location":"Marlenview"}},{"attributes":{"name":"Ernesto O'Keefe I","age":42,"location":"Burbank"}},{"attributes":{"name":"Talon Sanford","age":43,"location":"Port Marilyne"}},{"attributes":{"name":"Audrey Johnson","age":50,"location":"West Chanelshire"}},{"attributes":{"name":"Joan Goyette","age":23,"location":"South Darwinview"}},{"attributes":{"name":"Shad Erdman","age":36,"location":"North Tanyacester"}},{"attributes":{"name":"Sheldon Swift","age":59,"location":"Karlimouth"}},{"attributes":{"name":"Rhoda Kub","age":44,"location":"Fort Susana"}},{"attributes":{"name":"Ford Schuster","age":20,"location":"South Carey"}},{"attributes":{"name":"Ryann Quitzon","age":65,"location":"Missourifurt"}},{"attributes":{"name":"Kianna Botsford","age":36,"location":"Waterbury"}},{"attributes":{"name":"Baylee Casper","age":33,"location":"Greenholtstead"}},{"attributes":{"name":"Josh Terry","age":73,"location":"Lessieburgh"}},{"attributes":{"name":"Ellen Kiehn","age":36,"location":"Murfreesboro"}},{"attributes":{"name":"Aaron Shields","age":56,"location":"Fort Justenland"}},{"attributes":{"name":"Jean Hane","age":50,"location":"Jamisonmouth"}},{"attributes":{"name":"Winifred Green","age":38,"location":"Port Corinehaven"}},{"attributes":{"name":"Destiny Effertz","age":69,"location":"Tamarac"}},{"attributes":{"name":"Rocio Kovacek","age":45,"location":"Indio"}},{"attributes":{"name":"Mattie Beier","age":61,"location":"Fort Parkerchester"}},{"attributes":{"name":"Dr. Jackie Balistreri","age":38,"location":"Padbergville"}},{"attributes":{"name":"Ray Keeling","age":48,"location":"Florin"}},{"attributes":{"name":"Leila Carroll","age":27,"location":"Piperhaven"}},{"attributes":{"name":"Luther Macejkovic I","age":45,"location":"Runolfssonfort"}},{"attributes":{"name":"Sylvia Abernathy","age":79,"location":"New Molly"}},{"attributes":{"name":"Hugh Olson","age":30,"location":"West Kirstin"}},{"attributes":{"name":"Jaren Keebler","age":63,"location":"Lake Justen"}},{"attributes":{"name":"Dr. Christy Hoppe","age":71,"location":"Bellingham"}},{"attributes":{"name":"Zion Boyle","age":59,"location":"Manteboro"}},{"attributes":{"name":"Kira Erdman","age":26,"location":"Port Marianafurt"}},{"attributes":{"name":"Gregory Konopelski","age":67,"location":"South Joany"}},{"attributes":{"name":"Anabelle Douglas","age":37,"location":"Reannaview"}},{"attributes":{"name":"Clay Frami","age":54,"location":"New Kristachester"}},{"attributes":{"name":"Lucious Prohaska","age":31,"location":"North Claraberg"}},{"attributes":{"name":"Ervin Lind","age":73,"location":"Adanton"}},{"attributes":{"name":"Pat Crooks","age":33,"location":"State College"}},{"attributes":{"name":"Antonio Hodkiewicz","age":25,"location":"Feeneychester"}},{"attributes":{"name":"Phoebe Monahan","age":72,"location":"Connellyburgh"}},{"attributes":{"name":"Sim Simonis","age":47,"location":"Lake Lawrence"}},{"attributes":{"name":"Genevieve Huel","age":28,"location":"Schroederport"}},{"attributes":{"name":"Mrs. Lori Abbott","age":39,"location":"Rudyville"}},{"attributes":{"name":"Tim Schimmel","age":38,"location":"Oberbrunnercester"}},{"attributes":{"name":"Hilda Lockman","age":71,"location":"Conroe"}},{"attributes":{"name":"Ms. Lauren Rosenbaum","age":71,"location":"Dorothyberg"}},{"attributes":{"name":"Mr. Marian Weber","age":20,"location":"West Lesterborough"}},{"attributes":{"name":"Winifred Borer","age":39,"location":"O'Konton"}},{"attributes":{"name":"Wallace Walter","age":24,"location":"Fort Karlee"}},{"attributes":{"name":"Dr. Brett O'Connell","age":58,"location":"New Bartholomefield"}},{"attributes":{"name":"Alvin Conn","age":24,"location":"Springfield"}},{"attributes":{"name":"Maurine Cremin","age":64,"location":"New Samir"}},{"attributes":{"name":"Lulu Stehr","age":79,"location":"Veldaberg"}},{"attributes":{"name":"Billie Gleason","age":60,"location":"Sipesville"}},{"attributes":{"name":"Blanche Wisoky","age":46,"location":"Tuscaloosa"}},{"attributes":{"name":"Jo Miller","age":21,"location":"Layton"}},{"attributes":{"name":"Dr. Ivory Volkman","age":59,"location":"Nyahcester"}},{"attributes":{"name":"Nyasia Swaniawski","age":75,"location":"Bellingham"}},{"attributes":{"name":"Wilbert Bergstrom","age":45,"location":"Camyllemouth"}},{"attributes":{"name":"Eliza Howell","age":70,"location":"Kohlerfurt"}},{"attributes":{"name":"Frances Kessler","age":76,"location":"North Alexie"}},{"attributes":{"name":"Zelda Herzog","age":29,"location":"Raphaellehaven"}},{"attributes":{"name":"Frankie Dickinson-Kling","age":30,"location":"East Serenity"}},{"attributes":{"name":"Trystan Mills-Goldner","age":65,"location":"Berkeley"}},{"attributes":{"name":"Elias Gulgowski","age":44,"location":"New Albertha"}},{"attributes":{"name":"Troy Reynolds","age":41,"location":"West Hiram"}},{"attributes":{"name":"Shannon Sanford","age":68,"location":"Haagfurt"}},{"attributes":{"name":"Jarret Bayer","age":53,"location":"Ceasarton"}},{"attributes":{"name":"Genevieve Kirlin","age":71,"location":"O'Connellbury"}},{"attributes":{"name":"Guillermo Buckridge","age":45,"location":"Hahntown"}},{"attributes":{"name":"Oliver Hahn","age":72,"location":"Kirlincester"}},{"attributes":{"name":"Olin Braun-Heaney","age":57,"location":"Doyleview"}},{"attributes":{"name":"Barton Barton II","age":37,"location":"Maudieville"}},{"attributes":{"name":"Selmer Marvin","age":52,"location":"West Lorine"}},{"attributes":{"name":"Tasha Hoppe","age":59,"location":"St. Peters"}},{"attributes":{"name":"Noel Stehr","age":55,"location":"Eltontown"}},{"attributes":{"name":"Clyde Weimann","age":54,"location":"Lake Veda"}},{"attributes":{"name":"Miss Sarina Rosenbaum","age":69,"location":"Port Derick"}},{"attributes":{"name":"Herminio Walsh","age":20,"location":"Millsborough"}},{"attributes":{"name":"Esperanza Nitzsche","age":79,"location":"New Geo"}},{"attributes":{"name":"Dixie Kihn","age":77,"location":"Port Genevieveborough"}},{"attributes":{"name":"Faustino Aufderhar","age":57,"location":"Trevashire"}},{"attributes":{"name":"Phyllis Johnson","age":69,"location":"South Brice"}},{"attributes":{"name":"Lawrence Rogahn","age":28,"location":"Hoppestad"}},{"attributes":{"name":"Dr. Chester Kris","age":21,"location":"Robertsport"}},{"attributes":{"name":"Domenica Windler","age":22,"location":"New Antonio"}},{"attributes":{"name":"Selina Pouros","age":18,"location":"North Hilarioport"}},{"attributes":{"name":"Darnell Mayer","age":71,"location":"Dibbertburgh"}},{"attributes":{"name":"Quinten Lowe","age":53,"location":"South Eulahworth"}},{"attributes":{"name":"Kara Moore","age":75,"location":"East Los Angeles"}},{"attributes":{"name":"Kane Dietrich","age":57,"location":"North Abnerburgh"}},{"attributes":{"name":"Christop Carroll","age":45,"location":"Russellville"}},{"attributes":{"name":"Micah Abbott-Torp","age":18,"location":"Ocieberg"}},{"attributes":{"name":"Roberto Barton","age":72,"location":"West Kentonberg"}},{"attributes":{"name":"Eileen Reichert PhD","age":52,"location":"Tianafort"}},{"attributes":{"name":"Leanna Stiedemann-Lubowitz II","age":62,"location":"Fort Dellashire"}},{"attributes":{"name":"Cameron Kulas MD","age":66,"location":"North Rowanburgh"}},{"attributes":{"name":"Emilio Spencer","age":46,"location":"Altadena"}},{"attributes":{"name":"Mr. Belle Lang","age":50,"location":"Dickinsonshire"}},{"attributes":{"name":"Mable Jacobi","age":43,"location":"Pleasanton"}},{"attributes":{"name":"Mrs. Kayla Ondricka","age":66,"location":"Bowie"}},{"attributes":{"name":"Krystal Stoltenberg Jr.","age":62,"location":"Fort Bryceworth"}},{"attributes":{"name":"Lola Feil","age":63,"location":"Huntington"}},{"attributes":{"name":"Ricky Hermiston","age":53,"location":"Schenectady"}},{"attributes":{"name":"Andrew Osinski","age":25,"location":"North Ernesto"}},{"attributes":{"name":"Ross Kertzmann-Welch","age":79,"location":"Taylor"}},{"attributes":{"name":"Trycia Bosco","age":40,"location":"Andersonshire"}},{"attributes":{"name":"Ken Goodwin","age":47,"location":"Quigleyborough"}},{"attributes":{"name":"Krystal Mosciski","age":36,"location":"Lake Horace"}},{"attributes":{"name":"Amelia Koch","age":76,"location":"South Kalliehaven"}},{"attributes":{"name":"Mr. Lucius Smitham","age":67,"location":"Port Adelbertstead"}},{"attributes":{"name":"Pat O'Conner","age":47,"location":"Boise City"}},{"attributes":{"name":"Mr. Kenneth Beer-Jones","age":25,"location":"Lake Rhiannon"}},{"attributes":{"name":"Lempi Wunsch","age":48,"location":"South Jesusfurt"}},{"attributes":{"name":"Angelina Daniel","age":44,"location":"Port Marjoryborough"}},{"attributes":{"name":"Dejah Zemlak","age":22,"location":"Janaeton"}},{"attributes":{"name":"Rosa Volkman","age":37,"location":"Adamberg"}},{"attributes":{"name":"Jody Abernathy","age":73,"location":"Fort Rebekaberg"}},{"attributes":{"name":"Dr. Berry Littel","age":55,"location":"Runolfssonhaven"}},{"attributes":{"name":"Orlo Hammes","age":40,"location":"Vidaton"}},{"attributes":{"name":"Rhonda Klocko","age":23,"location":"Port Brionna"}},{"attributes":{"name":"Edmund Herzog","age":29,"location":"Daughertyhaven"}},{"attributes":{"name":"Mr. Tomas Roberts","age":32,"location":"North Skyla"}},{"attributes":{"name":"Eugene Kunde","age":47,"location":"Torpview"}},{"attributes":{"name":"Mr. Byron DuBuque MD","age":46,"location":"South Jaren"}},{"attributes":{"name":"Waino Considine","age":67,"location":"Baileeland"}},{"attributes":{"name":"Richmond Rodriguez","age":51,"location":"Fort Dorthy"}},{"attributes":{"name":"Beulah Hansen","age":46,"location":"Elifield"}},{"attributes":{"name":"Sylvester Reynolds","age":22,"location":"Fond du Lac"}},{"attributes":{"name":"Jon Monahan-Gulgowski","age":60,"location":"Talonhaven"}},{"attributes":{"name":"Trystan Ferry","age":25,"location":"Hendersonville"}},{"attributes":{"name":"Christina Reilly","age":20,"location":"Vallejo"}},{"attributes":{"name":"Miss Dianna Nolan","age":46,"location":"Fort Medaview"}},{"attributes":{"name":"Jayson Bartoletti","age":57,"location":"Eleanoreberg"}},{"attributes":{"name":"Christian Kassulke","age":30,"location":"South Cassie"}},{"attributes":{"name":"Wilma Bernhard","age":73,"location":"West Des Moines"}},{"attributes":{"name":"Abel Prosacco","age":28,"location":"Walnut Creek"}},{"attributes":{"name":"Sophie Schmeler","age":64,"location":"Fort Eric"}},{"attributes":{"name":"Marcos Nitzsche","age":74,"location":"Port Matildeborough"}},{"attributes":{"name":"Cleo Deckow DDS","age":76,"location":"Methuen Town"}},{"attributes":{"name":"Dr. Darla Kreiger","age":55,"location":"Evansville"}},{"attributes":{"name":"Ms. Estelle O'Reilly","age":52,"location":"East Lamontshire"}},{"attributes":{"name":"Dewayne Schinner III","age":24,"location":"North Idaburgh"}},{"attributes":{"name":"Johnnie Parisian","age":39,"location":"North Emmy"}},{"attributes":{"name":"Misty Walker-Schuster","age":77,"location":"Kovacekstead"}},{"attributes":{"name":"Miss Guadalupe Reynolds","age":78,"location":"Bartellstead"}},{"attributes":{"name":"Kristie Fritsch V","age":29,"location":"Kutchport"}},{"attributes":{"name":"Jermaine Okuneva","age":67,"location":"Pompano Beach"}},{"attributes":{"name":"Franklin Rice PhD","age":27,"location":"Ziemeboro"}},{"attributes":{"name":"Stefanie Botsford","age":77,"location":"Jadahaven"}},{"attributes":{"name":"Gilda Dibbert","age":73,"location":"North Kristoferstad"}},{"attributes":{"name":"Cecil Bayer IV","age":43,"location":"Mackbury"}},{"attributes":{"name":"Gary Gibson","age":40,"location":"Alveraville"}},{"attributes":{"name":"Vida Blick","age":49,"location":"Rippinfield"}},{"attributes":{"name":"Sonya Witting","age":50,"location":"D'Amoreburgh"}},{"attributes":{"name":"Dean Nitzsche","age":46,"location":"Port Rolando"}},{"attributes":{"name":"Pansy Daniel","age":61,"location":"Parma"}},{"attributes":{"name":"Noelia Ruecker","age":19,"location":"Fort Edwin"}},{"attributes":{"name":"Terence Murray","age":21,"location":"Bergstromcester"}},{"attributes":{"name":"Constantin Morar","age":64,"location":"East Gianni"}},{"attributes":{"name":"Jacquelyn Fritsch","age":67,"location":"North Terranceborough"}},{"attributes":{"name":"Judy Lebsack","age":48,"location":"Lake Judd"}},{"attributes":{"name":"Lora Hahn","age":38,"location":"Ferrybury"}},{"attributes":{"name":"Marcella Hamill Jr.","age":29,"location":"Lake Dorianberg"}},{"attributes":{"name":"Ms. Lila Zemlak","age":53,"location":"North Piperstad"}},{"attributes":{"name":"Tom Walter","age":54,"location":"Cassinborough"}},{"attributes":{"name":"Karianne Ondricka","age":39,"location":"Santa Rosa"}},{"attributes":{"name":"Miss Meredith Thiel","age":26,"location":"North Tristianhaven"}},{"attributes":{"name":"Dejon Greenholt","age":19,"location":"Lake Dante"}},{"attributes":{"name":"Alessandra Hoppe","age":32,"location":"Morrisberg"}},{"attributes":{"name":"Haylee Klein","age":37,"location":"Kreigerchester"}},{"attributes":{"name":"Mrs. Camren McCullough","age":55,"location":"West Ledaville"}},{"attributes":{"name":"Verlie Stoltenberg IV","age":46,"location":"Alexandria"}},{"attributes":{"name":"Mr. Malcolm Ledner","age":74,"location":"The Villages"}},{"attributes":{"name":"Isac Graham","age":20,"location":"Eloyberg"}},{"attributes":{"name":"Stella Lynch","age":50,"location":"Corwinworth"}},{"attributes":{"name":"Ford Harber","age":77,"location":"East Bellfield"}},{"attributes":{"name":"Randall Wiegand","age":45,"location":"La Mesa"}},{"attributes":{"name":"Murphy Hermiston Jr.","age":38,"location":"Little Rock"}},{"attributes":{"name":"Gregg Runolfsson","age":55,"location":"New Nehastead"}},{"attributes":{"name":"Jermaine Prohaska","age":51,"location":"Fort Olgaview"}},{"attributes":{"name":"Victor Heller II","age":54,"location":"Goldnershire"}},{"attributes":{"name":"Colleen Ernser","age":20,"location":"Juanatown"}},{"attributes":{"name":"Martha Maggio","age":74,"location":"Port Reyna"}},{"attributes":{"name":"Imelda Beahan III","age":65,"location":"Shanelfort"}},{"attributes":{"name":"Dixie White Sr.","age":21,"location":"Quitzonberg"}},{"attributes":{"name":"Luke Nitzsche","age":80,"location":"South Arturo"}},{"attributes":{"name":"Miss Rachel McDermott","age":42,"location":"Nolantown"}},{"attributes":{"name":"Mr. Winston Paucek","age":52,"location":"Lake Darrickstad"}},{"attributes":{"name":"Edna Kunde","age":38,"location":"Trenton"}},{"attributes":{"name":"Kyle Zemlak","age":33,"location":"Lake Enoch"}},{"attributes":{"name":"Dock Weber","age":27,"location":"Conroe"}},{"attributes":{"name":"Earnestine Farrell DDS","age":55,"location":"Budshire"}},{"attributes":{"name":"Mr. Troy Oberbrunner Sr.","age":61,"location":"McKinney"}},{"attributes":{"name":"Luther Bashirian","age":54,"location":"New Marlee"}},{"attributes":{"name":"Mr. Melvin Ortiz","age":79,"location":"Herzogville"}},{"attributes":{"name":"Chad MacGyver","age":78,"location":"Leschborough"}},{"attributes":{"name":"Merritt Predovic","age":71,"location":"Corkeryborough"}},{"attributes":{"name":"Dameon Armstrong","age":19,"location":"Parker"}},{"attributes":{"name":"Leif Torp","age":32,"location":"Aminaboro"}},{"attributes":{"name":"Laurie Leuschke","age":42,"location":"Lake Reymundoland"}},{"attributes":{"name":"Eva Ebert","age":78,"location":"New Haven"}},{"attributes":{"name":"Brett Nolan I","age":26,"location":"Huntington"}},{"attributes":{"name":"Clint Jones","age":74,"location":"South Elisabethton"}},{"attributes":{"name":"Kay Smitham","age":63,"location":"North Dillan"}},{"attributes":{"name":"Francisco Murray III","age":54,"location":"Wavacester"}},{"attributes":{"name":"Juanita Greenfelder","age":54,"location":"Kristofershire"}},{"attributes":{"name":"Adolf Wiegand","age":57,"location":"East Genoveva"}},{"attributes":{"name":"Ceasar Mante V","age":54,"location":"Johnstonbury"}},{"attributes":{"name":"Louvenia Jacobi","age":50,"location":"New Margarita"}},{"attributes":{"name":"Miss Ramona Jones Jr.","age":70,"location":"Paucekberg"}},{"attributes":{"name":"Seth Erdman IV","age":46,"location":"Port Felton"}},{"attributes":{"name":"Ms. Kim Will V","age":52,"location":"South Hill"}},{"attributes":{"name":"Renee Stehr","age":66,"location":"Karianeberg"}},{"attributes":{"name":"Walter Greenfelder","age":71,"location":"Klockocester"}},{"attributes":{"name":"Addie Rosenbaum","age":21,"location":"Angieborough"}},{"attributes":{"name":"Daisy Brekke","age":43,"location":"Silver Spring"}},{"attributes":{"name":"Eduardo Pfeffer","age":57,"location":"VonRuedenshire"}},{"attributes":{"name":"Wilbur Pouros","age":48,"location":"Gottliebton"}},{"attributes":{"name":"Andres Breitenberg","age":35,"location":"Arecibo"}},{"attributes":{"name":"Erik Ziemann","age":52,"location":"Rutherfordfurt"}},{"attributes":{"name":"Wellington Kling","age":26,"location":"Dwightland"}},{"attributes":{"name":"Dr. Camille Zboncak","age":50,"location":"Abshireworth"}},{"attributes":{"name":"Janelle Koepp","age":71,"location":"Janisbury"}},{"attributes":{"name":"May Wolf","age":39,"location":"Carafort"}},{"attributes":{"name":"Sean Barton","age":74,"location":"Fort Justen"}},{"attributes":{"name":"Bartholome Murazik MD","age":21,"location":"Justusshire"}},{"attributes":{"name":"Christopher Lowe","age":45,"location":"Derrickcester"}},{"attributes":{"name":"Adrienne Bartell IV","age":61,"location":"Dearborn Heights"}},{"attributes":{"name":"Kaleigh Hills","age":56,"location":"South Kellenfield"}},{"attributes":{"name":"Ines Auer","age":69,"location":"Tysonfort"}},{"attributes":{"name":"Mrs. Jan Beahan","age":27,"location":"Sierra Vista"}},{"attributes":{"name":"Jovanny Towne III","age":38,"location":"Port Misty"}},{"attributes":{"name":"Marguerite Bosco","age":73,"location":"Lake Stephania"}},{"attributes":{"name":"Sydney Yundt","age":31,"location":"Lake Elsinore"}},{"attributes":{"name":"Manuel Heller","age":40,"location":"Willmstown"}},{"attributes":{"name":"Theodore Marks","age":65,"location":"DeKalb"}},{"attributes":{"name":"Sally Mueller","age":73,"location":"Fort Adrienne"}},{"attributes":{"name":"Eleanor Schultz","age":79,"location":"Wilhelmland"}},{"attributes":{"name":"Jordan Stiedemann","age":45,"location":"Taylorsville"}},{"attributes":{"name":"Julianne Davis","age":63,"location":"New Martine"}},{"attributes":{"name":"Dr. Lilla Borer","age":70,"location":"West Haroldchester"}},{"attributes":{"name":"Turner Bosco-VonRueden","age":63,"location":"Palm Springs"}},{"attributes":{"name":"Meghan Towne","age":31,"location":"West Edwina"}},{"attributes":{"name":"Emmanuelle Rice","age":62,"location":"Macejkovicport"}},{"attributes":{"name":"Theresa Olson PhD","age":25,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Rey Strosin","age":51,"location":"Lake Chandler"}},{"attributes":{"name":"Rhonda Reilly","age":26,"location":"Jerrystead"}},{"attributes":{"name":"Roman Cassin","age":62,"location":"Joanborough"}},{"attributes":{"name":"Jake Borer","age":48,"location":"New Adrienne"}},{"attributes":{"name":"Kendra Durgan","age":23,"location":"Port Beau"}},{"attributes":{"name":"Bruce MacGyver","age":24,"location":"North Wilmer"}},{"attributes":{"name":"Jenna Kuphal","age":72,"location":"East Wilton"}},{"attributes":{"name":"Ms. Steven Kertzmann","age":44,"location":"Hilllcester"}},{"attributes":{"name":"Rachael Ward","age":58,"location":"Lunacester"}},{"attributes":{"name":"Florencio Sauer","age":74,"location":"Poway"}},{"attributes":{"name":"Rodrick Sauer I","age":21,"location":"East Tevinland"}},{"attributes":{"name":"Serenity Kunze","age":27,"location":"East Hadley"}},{"attributes":{"name":"Ms. Sandy Olson","age":30,"location":"West Benedict"}},{"attributes":{"name":"Mrs. Layla Rosenbaum","age":76,"location":"Lesterside"}},{"attributes":{"name":"Easter Moore","age":73,"location":"Bartlett"}},{"attributes":{"name":"Dan Walker","age":21,"location":"Carterfort"}},{"attributes":{"name":"Rosemarie Rutherford","age":45,"location":"Ankundingborough"}},{"attributes":{"name":"Sherwood Weissnat","age":49,"location":"Port Mathiasport"}},{"attributes":{"name":"Ms. Bridget Cronin","age":56,"location":"Sigurdview"}},{"attributes":{"name":"Miss Laverne Cronin","age":52,"location":"Adamsboro"}},{"attributes":{"name":"Pink Koepp","age":43,"location":"Jessycaville"}},{"attributes":{"name":"Sabrina Douglas Jr.","age":20,"location":"East Kenneth"}},{"attributes":{"name":"Mr. Yvonne Nitzsche","age":79,"location":"McCulloughchester"}},{"attributes":{"name":"Lola Runte","age":68,"location":"East Nicholeboro"}},{"attributes":{"name":"Desmond Cummerata","age":71,"location":"East Arch"}},{"attributes":{"name":"Cecil Schaden","age":51,"location":"Mayecester"}},{"attributes":{"name":"Sabrina Lesch","age":58,"location":"Olsonside"}},{"attributes":{"name":"Mavis Turner","age":44,"location":"Lehi"}},{"attributes":{"name":"Miss Enid Boyle","age":32,"location":"Port Alexandrea"}},{"attributes":{"name":"Sherri Price","age":38,"location":"Lake Viola"}},{"attributes":{"name":"Dimitri Littel","age":49,"location":"Bloomington"}},{"attributes":{"name":"Felipe Schultz","age":63,"location":"South Tatum"}},{"attributes":{"name":"Nels McGlynn","age":78,"location":"O'Konberg"}},{"attributes":{"name":"Travis Batz","age":74,"location":"Port Leslyton"}},{"attributes":{"name":"Ada Rohan","age":25,"location":"Fort Lionelville"}},{"attributes":{"name":"Pascale Schultz","age":23,"location":"Taunton"}},{"attributes":{"name":"Daryl Kemmer","age":28,"location":"Fort Jermain"}},{"attributes":{"name":"William Koch-Wiegand","age":56,"location":"Tucson"}},{"attributes":{"name":"Miss Orville Osinski","age":54,"location":"Port Bradyside"}},{"attributes":{"name":"Priscilla Huels","age":40,"location":"South Bufordcester"}},{"attributes":{"name":"Lela Block I","age":70,"location":"Fort Rafaelton"}},{"attributes":{"name":"Kimberly Kohler","age":39,"location":"North Ephraimview"}},{"attributes":{"name":"Dax Feest MD","age":60,"location":"Earlineberg"}},{"attributes":{"name":"Craig Lehner","age":55,"location":"Lake Donny"}},{"attributes":{"name":"Bernard Skiles","age":38,"location":"North Lawrence"}},{"attributes":{"name":"Tremaine Gerhold","age":73,"location":"New Magdalena"}},{"attributes":{"name":"Ambrose Hoeger","age":32,"location":"Tamiami"}},{"attributes":{"name":"Donnie Pacocha","age":35,"location":"New Carolyne"}},{"attributes":{"name":"Alycia Beatty","age":36,"location":"Raynorton"}},{"attributes":{"name":"Lloyd Homenick-Koelpin","age":76,"location":"Fort Karianne"}},{"attributes":{"name":"Claire Pouros","age":64,"location":"Watersland"}},{"attributes":{"name":"Carmen Orn","age":71,"location":"Keller"}},{"attributes":{"name":"Shane Waelchi","age":64,"location":"Georgianaton"}},{"attributes":{"name":"James Mitchell","age":55,"location":"Twin Falls"}},{"attributes":{"name":"Angelina Franey","age":32,"location":"White Plains"}},{"attributes":{"name":"Lilla Reichert","age":21,"location":"Harveymouth"}},{"attributes":{"name":"Quinten Grant","age":26,"location":"North Donatoboro"}},{"attributes":{"name":"Noble Rowe","age":80,"location":"Port Clarissa"}},{"attributes":{"name":"Flossie Abernathy","age":36,"location":"Brockmouth"}},{"attributes":{"name":"Dean Barrows","age":51,"location":"West Rosetta"}},{"attributes":{"name":"Aylin Rath I","age":74,"location":"Wymanland"}},{"attributes":{"name":"Miss Maryann Ullrich","age":43,"location":"Jefferson City"}},{"attributes":{"name":"Mr. Lloyd Mitchell","age":79,"location":"East Janieside"}},{"attributes":{"name":"Bill Heidenreich-Fritsch","age":44,"location":"Martinehaven"}},{"attributes":{"name":"Janie Schumm","age":25,"location":"East Charleybury"}},{"attributes":{"name":"Saul Moen","age":41,"location":"East Isaiahstad"}},{"attributes":{"name":"Clair Hartmann","age":80,"location":"Hershelton"}},{"attributes":{"name":"Pedro Runte","age":56,"location":"Bulahfort"}},{"attributes":{"name":"Garfield Schoen","age":72,"location":"Skokie"}},{"attributes":{"name":"Josiane Botsford","age":26,"location":"Fort Rickycester"}},{"attributes":{"name":"Miss Karen Windler","age":27,"location":"East Pietro"}},{"attributes":{"name":"Shawn Pagac","age":35,"location":"Effertzview"}},{"attributes":{"name":"Samuel Douglas","age":45,"location":"Jimmieton"}},{"attributes":{"name":"Aaron O'Hara MD","age":38,"location":"Greensboro"}},{"attributes":{"name":"Andy Heller","age":63,"location":"North Gunnar"}},{"attributes":{"name":"Keith Beatty","age":59,"location":"South Jensen"}},{"attributes":{"name":"Mr. Abdiel O'Reilly","age":71,"location":"East Jan"}},{"attributes":{"name":"Herman Lynch","age":29,"location":"Evantown"}},{"attributes":{"name":"Libby Doyle","age":46,"location":"Fort Jenningsborough"}},{"attributes":{"name":"Erma Kshlerin","age":52,"location":"Beerfield"}},{"attributes":{"name":"Lorraine Auer-Pacocha","age":54,"location":"New Betsyton"}},{"attributes":{"name":"Sierra Hoeger","age":40,"location":"Justenbury"}},{"attributes":{"name":"John Daniel","age":50,"location":"Kautzerton"}},{"attributes":{"name":"Dr. Missouri Lockman DVM","age":51,"location":"New Antoinettestad"}},{"attributes":{"name":"George Walter","age":49,"location":"Chino Hills"}},{"attributes":{"name":"Blanca Little","age":61,"location":"North Norval"}},{"attributes":{"name":"Mr. Ford Beahan","age":70,"location":"Port Craigmouth"}},{"attributes":{"name":"Calvin Nitzsche","age":51,"location":"Lake Herman"}},{"attributes":{"name":"Taryn Koch","age":70,"location":"New Leonard"}},{"attributes":{"name":"Delfina Friesen","age":22,"location":"Weissnatchester"}},{"attributes":{"name":"Krystal Douglas","age":49,"location":"McLean"}},{"attributes":{"name":"Eugene Pagac V","age":36,"location":"Merlinfield"}},{"attributes":{"name":"Marshall Hamill","age":66,"location":"Apopka"}},{"attributes":{"name":"Jeremiah Lakin","age":75,"location":"Tommiehaven"}},{"attributes":{"name":"Willie Hauck DDS","age":63,"location":"North Maudeboro"}},{"attributes":{"name":"Dr. Ruby Morissette","age":38,"location":"Lawrence"}},{"attributes":{"name":"Betsy Gulgowski","age":34,"location":"West Aureliohaven"}},{"attributes":{"name":"Elenora Ratke","age":31,"location":"Abshireberg"}},{"attributes":{"name":"Damon Konopelski","age":22,"location":"Baton Rouge"}},{"attributes":{"name":"Ewald Roob","age":29,"location":"Port Clementineboro"}},{"attributes":{"name":"Dr. Dianne Sauer","age":79,"location":"East Eleanora"}},{"attributes":{"name":"Pat Mante","age":74,"location":"Medford"}},{"attributes":{"name":"Jose Cormier","age":55,"location":"Gerryland"}},{"attributes":{"name":"Lynne Johnston","age":26,"location":"North Conner"}},{"attributes":{"name":"Marsha Morissette","age":46,"location":"Kristinboro"}},{"attributes":{"name":"Leola Terry","age":37,"location":"Windlercester"}},{"attributes":{"name":"Byron Prosacco","age":48,"location":"Lake Rosanna"}},{"attributes":{"name":"Gina Lemke","age":67,"location":"East Franco"}},{"attributes":{"name":"Doris McKenzie","age":32,"location":"Arden-Arcade"}},{"attributes":{"name":"Einar Stroman","age":50,"location":"West Briellefurt"}},{"attributes":{"name":"Dawn Fahey","age":78,"location":"Laynefield"}},{"attributes":{"name":"Tracy Ernser","age":58,"location":"Simonischester"}},{"attributes":{"name":"Mr. Dillan Prohaska","age":48,"location":"Oberbrunnercester"}},{"attributes":{"name":"Mr. Helen Monahan","age":66,"location":"Fayton"}},{"attributes":{"name":"Julius Schumm","age":71,"location":"Zulaufhaven"}},{"attributes":{"name":"Eusebio Weissnat","age":72,"location":"St. Cloud"}},{"attributes":{"name":"Guy Carroll I","age":53,"location":"East Kylefurt"}},{"attributes":{"name":"Lauren Douglas","age":42,"location":"Biloxi"}},{"attributes":{"name":"Paulette Senger","age":21,"location":"Fort Lina"}},{"attributes":{"name":"Chauncey O'Reilly","age":46,"location":"Fishers"}},{"attributes":{"name":"Bernice Pagac DDS","age":54,"location":"The Hammocks"}},{"attributes":{"name":"Eduardo Zieme","age":65,"location":"Oxnard"}},{"attributes":{"name":"Robyn Leuschke","age":23,"location":"New Karolannshire"}},{"attributes":{"name":"Ron Rolfson","age":42,"location":"Fort Roberta"}},{"attributes":{"name":"Miss Lindsey Emard","age":76,"location":"Jacobsshire"}},{"attributes":{"name":"Mr. Cameron Ward","age":63,"location":"Lake Friedrich"}},{"attributes":{"name":"Tracy Volkman Sr.","age":74,"location":"Port Karelle"}},{"attributes":{"name":"Mrs. Jennifer Moen","age":67,"location":"South Sheldoncester"}},{"attributes":{"name":"Beverly Frami","age":29,"location":"Port Delphiastad"}},{"attributes":{"name":"Emily Wunsch","age":42,"location":"South Lorineborough"}},{"attributes":{"name":"Kristen Beier","age":43,"location":"Fort Destinystad"}},{"attributes":{"name":"Kristen Schaden","age":51,"location":"Larsonworth"}},{"attributes":{"name":"Ismael Graham","age":45,"location":"Dubuque"}},{"attributes":{"name":"Arno Reichel","age":31,"location":"East Nolashire"}},{"attributes":{"name":"Tyrone O'Reilly","age":36,"location":"West Gina"}},{"attributes":{"name":"Mathias Hauck","age":46,"location":"South Carli"}},{"attributes":{"name":"Alberta Nitzsche","age":50,"location":"Rippinshire"}},{"attributes":{"name":"Yvette Hintz","age":69,"location":"New Sincereville"}},{"attributes":{"name":"Mrs. Reyes Jacobi","age":43,"location":"Aylaville"}},{"attributes":{"name":"Andy D'Amore","age":43,"location":"Ebonymouth"}},{"attributes":{"name":"Shelia Monahan","age":30,"location":"Port Jesseview"}},{"attributes":{"name":"Ralph Lubowitz","age":52,"location":"Lake Palmaport"}},{"attributes":{"name":"Miss Margie O'Reilly","age":43,"location":"Keeleyton"}},{"attributes":{"name":"Dr. Roderick Greenfelder-Lakin","age":64,"location":"Marksshire"}},{"attributes":{"name":"Elda Smith","age":42,"location":"Rubenville"}},{"attributes":{"name":"Pauline McGlynn","age":45,"location":"Kristoferton"}},{"attributes":{"name":"Earlene Rodriguez","age":39,"location":"New Harley"}},{"attributes":{"name":"Mindy Zemlak","age":25,"location":"Camrynfurt"}},{"attributes":{"name":"Miss Luz Hammes","age":69,"location":"South Dario"}},{"attributes":{"name":"Lawrence Romaguera-Tremblay","age":26,"location":"North Jillian"}},{"attributes":{"name":"Kenneth Bogan","age":52,"location":"Germantown"}},{"attributes":{"name":"Estrella Hayes Jr.","age":57,"location":"Goyetteland"}},{"attributes":{"name":"Lana Berge","age":18,"location":"Fort Douglas"}},{"attributes":{"name":"Brittany Ebert","age":67,"location":"Kamrenbury"}},{"attributes":{"name":"Becky Stark","age":40,"location":"Johnpaulchester"}},{"attributes":{"name":"Pam Witting","age":60,"location":"Ruthieport"}},{"attributes":{"name":"Sean Schmeler","age":35,"location":"Fort Collins"}},{"attributes":{"name":"Charlie Cummerata","age":57,"location":"South Wilburnborough"}},{"attributes":{"name":"Douglas Champlin","age":50,"location":"Gutmannchester"}},{"attributes":{"name":"Mr. Armando Monahan","age":73,"location":"Josephcester"}},{"attributes":{"name":"Tyreek Walsh","age":51,"location":"Schmittboro"}},{"attributes":{"name":"Alonzo Schuppe","age":71,"location":"North Wadefurt"}},{"attributes":{"name":"Madaline Hessel","age":61,"location":"Meriden"}},{"attributes":{"name":"Blanca Mann","age":52,"location":"Port Erna"}},{"attributes":{"name":"Barry Wintheiser","age":24,"location":"Fort Elmo"}},{"attributes":{"name":"Willie Kub-Schaden","age":41,"location":"Grantburgh"}},{"attributes":{"name":"Archie Frami","age":25,"location":"South Ethylmouth"}},{"attributes":{"name":"Dr. Leroy Torphy","age":44,"location":"Fort Jennings"}},{"attributes":{"name":"Dora Leuschke","age":36,"location":"North Wilber"}},{"attributes":{"name":"Harley Gerhold","age":30,"location":"Kuphalstad"}},{"attributes":{"name":"Virginie Koepp","age":46,"location":"Evahaven"}},{"attributes":{"name":"Connie Hayes","age":20,"location":"Tonawanda"}},{"attributes":{"name":"Glen Grant","age":75,"location":"Kyrashire"}},{"attributes":{"name":"Nicolas Stokes","age":58,"location":"Lake Douglas"}},{"attributes":{"name":"Maria Deckow","age":35,"location":"West Meghan"}},{"attributes":{"name":"Stephanie Kunde","age":69,"location":"Lake Alainatown"}},{"attributes":{"name":"Eric Wyman","age":20,"location":"Milford"}},{"attributes":{"name":"Mr. Janie Hudson","age":33,"location":"Arvidport"}},{"attributes":{"name":"Mr. Guy Gorczany","age":42,"location":"Lynchchester"}},{"attributes":{"name":"Dr. Emil Cole","age":71,"location":"Kihnworth"}},{"attributes":{"name":"Ms. Nancy Beer","age":25,"location":"Erdmanview"}},{"attributes":{"name":"Brenda Bernier","age":36,"location":"Jaclynburgh"}},{"attributes":{"name":"Loren Yundt","age":31,"location":"Tamiami"}},{"attributes":{"name":"Alessia Beer","age":39,"location":"Fort Briannehaven"}},{"attributes":{"name":"Deontae Schmidt","age":37,"location":"East Rogelio"}},{"attributes":{"name":"Domingo Mraz","age":40,"location":"Lake Lemuel"}},{"attributes":{"name":"Constance Mante","age":48,"location":"Thompsonburgh"}},{"attributes":{"name":"Harriet Osinski","age":26,"location":"Brownfield"}},{"attributes":{"name":"Ally Murazik","age":43,"location":"Denesikside"}},{"attributes":{"name":"Joe Kovacek","age":64,"location":"St. George"}},{"attributes":{"name":"Cody Gorczany","age":69,"location":"Boganborough"}},{"attributes":{"name":"Kareem Vandervort","age":59,"location":"Mentor"}},{"attributes":{"name":"Olga Rohan","age":75,"location":"Steuberstead"}},{"attributes":{"name":"Sarai Pfannerstill","age":52,"location":"South Bertacester"}},{"attributes":{"name":"Dewey McGlynn","age":53,"location":"East Vada"}},{"attributes":{"name":"Darrin Graham","age":30,"location":"New Susiebury"}},{"attributes":{"name":"Terry Konopelski IV","age":48,"location":"Lakewood"}},{"attributes":{"name":"Wilber Ryan-Kutch III","age":58,"location":"Lake Dougfort"}},{"attributes":{"name":"Miss Nicole Ratke","age":77,"location":"Westland"}},{"attributes":{"name":"Clyde Emmerich","age":75,"location":"Barrettfort"}},{"attributes":{"name":"Cristina Schimmel","age":54,"location":"West Cheyanneton"}},{"attributes":{"name":"Alyce Waters","age":65,"location":"Handberg"}},{"attributes":{"name":"Georgette Schroeder","age":80,"location":"Durganmouth"}},{"attributes":{"name":"Orville Weissnat","age":28,"location":"Billings"}},{"attributes":{"name":"Tressa Simonis","age":20,"location":"Lake Caraton"}},{"attributes":{"name":"James Considine","age":58,"location":"Spinkaport"}},{"attributes":{"name":"Kelsi Marvin","age":65,"location":"Lehnerstead"}},{"attributes":{"name":"Carroll Wintheiser","age":80,"location":"North Kiara"}},{"attributes":{"name":"Dr. Adele Reilly","age":78,"location":"Bridgetside"}},{"attributes":{"name":"Beverly Russel","age":49,"location":"Hellercester"}},{"attributes":{"name":"Sherry DuBuque","age":42,"location":"South Tessiefield"}},{"attributes":{"name":"Courtney Brekke II","age":42,"location":"Nathanaelfield"}},{"attributes":{"name":"Mr. Elijah Kilback","age":30,"location":"Schmelerhaven"}},{"attributes":{"name":"Mr. Randall Cormier","age":75,"location":"New Keeleyhaven"}},{"attributes":{"name":"Kerry Kovacek","age":30,"location":"Johns Creek"}},{"attributes":{"name":"Bethany Ziemann-Treutel","age":68,"location":"Fairfield"}},{"attributes":{"name":"Dusty Olson","age":48,"location":"Jovaniville"}},{"attributes":{"name":"Wayne Corkery","age":50,"location":"South Ludwig"}},{"attributes":{"name":"Trinity Sanford","age":59,"location":"Grimesfield"}},{"attributes":{"name":"Ms. Ethyl Conn","age":58,"location":"Port Earlene"}},{"attributes":{"name":"Eileen Gulgowski","age":54,"location":"Lake Brent"}},{"attributes":{"name":"Terrance Quitzon","age":28,"location":"Kansas City"}},{"attributes":{"name":"Ethan McGlynn","age":66,"location":"Fishers"}},{"attributes":{"name":"Raymond Kutch","age":53,"location":"Fort Kaydenstad"}},{"attributes":{"name":"Max Quitzon","age":67,"location":"Folsom"}},{"attributes":{"name":"Kevin Kreiger DVM","age":46,"location":"Bettyeborough"}},{"attributes":{"name":"Kristopher O'Hara","age":66,"location":"South Dominique"}},{"attributes":{"name":"Darrel Goyette IV","age":59,"location":"Cincinnati"}},{"attributes":{"name":"Santiago Goodwin","age":59,"location":"Port Demarcoburgh"}},{"attributes":{"name":"Thora Bradtke","age":60,"location":"Hellerhaven"}},{"attributes":{"name":"Dora Howell IV","age":79,"location":"Port Mikayla"}},{"attributes":{"name":"Maritza Wyman","age":19,"location":"Dachchester"}},{"attributes":{"name":"Pamela Fahey","age":26,"location":"North Miami"}},{"attributes":{"name":"Zachariah Becker","age":55,"location":"North Davin"}},{"attributes":{"name":"Thelma Herzog","age":25,"location":"Larkinport"}},{"attributes":{"name":"Floyd Ledner","age":34,"location":"North Clementburgh"}},{"attributes":{"name":"Robin Muller","age":44,"location":"Hahnborough"}},{"attributes":{"name":"Kaci Rippin","age":53,"location":"Lindgrenhaven"}},{"attributes":{"name":"Mamie Runolfsdottir","age":60,"location":"Port Mayrastead"}},{"attributes":{"name":"Anais Douglas","age":48,"location":"Dickinsonboro"}},{"attributes":{"name":"Dr. Elias Bogan","age":43,"location":"New Marcellusview"}},{"attributes":{"name":"Kirk Champlin","age":46,"location":"Fort Amiya"}},{"attributes":{"name":"Mrs. Gail Jacobs","age":41,"location":"Minaland"}},{"attributes":{"name":"Salvatore Hirthe","age":76,"location":"West Sylvester"}},{"attributes":{"name":"Billy Kessler","age":35,"location":"West Dexter"}},{"attributes":{"name":"Rhoda Kerluke","age":79,"location":"Sandy Springs"}},{"attributes":{"name":"Steven Larson","age":27,"location":"Elenaboro"}},{"attributes":{"name":"Paulette Towne","age":65,"location":"San Mateo"}},{"attributes":{"name":"William Watsica","age":21,"location":"Schaeferberg"}},{"attributes":{"name":"Charlie Greenfelder","age":78,"location":"Isaiasmouth"}},{"attributes":{"name":"Margarette Davis","age":54,"location":"Goldnerworth"}},{"attributes":{"name":"Dr. Dianna Bashirian III","age":30,"location":"Kacifield"}},{"attributes":{"name":"Tristin Kshlerin","age":19,"location":"Kunzeboro"}},{"attributes":{"name":"Meredith Howell","age":73,"location":"Raufurt"}},{"attributes":{"name":"Jenna Leffler Sr.","age":63,"location":"New Elda"}},{"attributes":{"name":"James Grady","age":52,"location":"West Justineboro"}},{"attributes":{"name":"Wendell Labadie PhD","age":41,"location":"West Cordiefort"}},{"attributes":{"name":"Jenifer Hand","age":58,"location":"Schmidtboro"}},{"attributes":{"name":"Miss Nicole Hudson","age":59,"location":"Baytown"}},{"attributes":{"name":"Francisco Raynor Sr.","age":64,"location":"Fort Dudley"}},{"attributes":{"name":"Victor Feest","age":71,"location":"Cheyenne"}},{"attributes":{"name":"Alexandro Kassulke","age":51,"location":"Ornfurt"}},{"attributes":{"name":"Mr. Micah Schaefer","age":77,"location":"Port Einar"}},{"attributes":{"name":"Regina Grimes","age":31,"location":"Framishire"}},{"attributes":{"name":"Janet Kassulke-Maggio","age":28,"location":"South Kathrynboro"}},{"attributes":{"name":"Wava Kirlin","age":37,"location":"South Otha"}},{"attributes":{"name":"Dr. Effie Corwin","age":37,"location":"Fort Ephraimmouth"}},{"attributes":{"name":"Yvonne Grady","age":28,"location":"Hoegerstead"}},{"attributes":{"name":"Marc Boehm","age":45,"location":"South Lorna"}},{"attributes":{"name":"Rebecca Hills","age":45,"location":"Dibbertville"}},{"attributes":{"name":"Jaime Glover","age":38,"location":"Luettgencester"}},{"attributes":{"name":"Ernest Torphy","age":51,"location":"Lake Marlonchester"}},{"attributes":{"name":"Helen Wuckert","age":52,"location":"North Aracester"}},{"attributes":{"name":"Hollie Strosin IV","age":67,"location":"Dibbertbury"}},{"attributes":{"name":"Dexter Funk","age":76,"location":"Frankieburgh"}},{"attributes":{"name":"Enos Williamson","age":47,"location":"Alexanneboro"}},{"attributes":{"name":"Keshawn Kautzer","age":27,"location":"South Devyn"}},{"attributes":{"name":"Lydia Lubowitz","age":29,"location":"North Delfinaberg"}},{"attributes":{"name":"Colleen Considine","age":36,"location":"New Stanstad"}},{"attributes":{"name":"Jazmyne Hettinger","age":20,"location":"Bauchborough"}},{"attributes":{"name":"Tia Moen","age":48,"location":"Alishaberg"}},{"attributes":{"name":"Jenny Cummerata","age":35,"location":"Lisettestead"}},{"attributes":{"name":"Maddison Nader","age":69,"location":"Lake Emilyfield"}},{"attributes":{"name":"Devante Barton","age":28,"location":"North Elyssa"}},{"attributes":{"name":"Dianne Hansen","age":32,"location":"Pensacola"}},{"attributes":{"name":"Sheldon Mills","age":77,"location":"East Jakobshire"}},{"attributes":{"name":"Miss Erika Bailey","age":21,"location":"Rogahncester"}},{"attributes":{"name":"Haylee Denesik","age":18,"location":"South Sylvia"}},{"attributes":{"name":"Robert D'Amore","age":35,"location":"Collierville"}},{"attributes":{"name":"Mr. Delfina Lemke","age":23,"location":"Spring"}},{"attributes":{"name":"Sadye Tromp","age":77,"location":"Lake Mercedes"}},{"attributes":{"name":"Alfonzo Bailey","age":70,"location":"Southaven"}},{"attributes":{"name":"Jimmy Hane","age":72,"location":"Meaganmouth"}},{"attributes":{"name":"Tom Rogahn","age":68,"location":"Fort Richiehaven"}},{"attributes":{"name":"King Schaden","age":22,"location":"New Stone"}},{"attributes":{"name":"Deonte Kemmer","age":21,"location":"East Lexusview"}},{"attributes":{"name":"Gail Cummings","age":58,"location":"Lake Andre"}},{"attributes":{"name":"Essie Kunze","age":57,"location":"New Yessenia"}},{"attributes":{"name":"Sadie Stamm","age":19,"location":"New Isai"}},{"attributes":{"name":"Karl Reichert","age":52,"location":"Rochester"}},{"attributes":{"name":"Eva Boyle","age":49,"location":"Lenorafield"}},{"attributes":{"name":"Sheri Schuster","age":21,"location":"Sarahburgh"}},{"attributes":{"name":"Dr. Elias Corwin","age":27,"location":"Agustinaland"}},{"attributes":{"name":"Yvette Rempel","age":73,"location":"New Emmystad"}},{"attributes":{"name":"Maryann Tremblay","age":56,"location":"Binsside"}},{"attributes":{"name":"Annette Crooks","age":45,"location":"Eudorafort"}},{"attributes":{"name":"Jeffrey Medhurst","age":68,"location":"McLaughlinfort"}},{"attributes":{"name":"Leopold Lesch","age":48,"location":"Zemlakton"}},{"attributes":{"name":"Rosie Leffler","age":71,"location":"Marceltown"}},{"attributes":{"name":"Sergio Brekke","age":36,"location":"Lake Wymanchester"}},{"attributes":{"name":"Quinton Abshire-Ledner","age":44,"location":"Guidoborough"}},{"attributes":{"name":"Rochelle Ritchie","age":42,"location":"Pearl City"}},{"attributes":{"name":"Mr. Ena Koch","age":71,"location":"Hoffman Estates"}},{"attributes":{"name":"Buck Cartwright","age":56,"location":"Burnsville"}},{"attributes":{"name":"Loren Quitzon","age":25,"location":"Bethesda"}},{"attributes":{"name":"Rochelle Marquardt","age":68,"location":"North Brandy"}},{"attributes":{"name":"Nicole Rath","age":56,"location":"Reeseshire"}},{"attributes":{"name":"Joe Cartwright","age":39,"location":"Bergstromborough"}},{"attributes":{"name":"Josephine Muller Sr.","age":45,"location":"Bertramville"}},{"attributes":{"name":"Camila Padberg","age":24,"location":"Casper"}},{"attributes":{"name":"Amber Mayert III","age":37,"location":"Bayamon"}},{"attributes":{"name":"Ida Little","age":80,"location":"Port Ameliaview"}},{"attributes":{"name":"Missouri Wilderman","age":77,"location":"Blickfurt"}},{"attributes":{"name":"Richard Klein","age":39,"location":"Bayerborough"}},{"attributes":{"name":"Dejon Doyle","age":58,"location":"Manchester"}},{"attributes":{"name":"Carmela Moen","age":43,"location":"Fort Eugene"}},{"attributes":{"name":"Bessie Stroman","age":67,"location":"East Brendenview"}},{"attributes":{"name":"Leroy Hessel","age":23,"location":"Lake Rosalyn"}},{"attributes":{"name":"Bryan Weissnat","age":32,"location":"Fort Aylinville"}},{"attributes":{"name":"Daryl Welch","age":76,"location":"Port Valentin"}},{"attributes":{"name":"Dr. Dino Lueilwitz","age":37,"location":"Delray Beach"}},{"attributes":{"name":"Mrs. Charlene Schumm","age":51,"location":"Lake Zenaburgh"}},{"attributes":{"name":"Bruce Padberg","age":39,"location":"Spinkatown"}},{"attributes":{"name":"Alda Wilderman","age":25,"location":"Santa Fe"}},{"attributes":{"name":"Bethel Dickinson","age":73,"location":"Lake Violetfurt"}},{"attributes":{"name":"Michaela Auer","age":47,"location":"Hollyside"}},{"attributes":{"name":"Jorge Miller-Schmitt","age":41,"location":"North Tia"}},{"attributes":{"name":"Olivia Hettinger PhD","age":79,"location":"Pollichborough"}},{"attributes":{"name":"Margie Ullrich","age":32,"location":"Lake Retha"}},{"attributes":{"name":"Mr. Carlee Schiller","age":78,"location":"Lake Destiney"}},{"attributes":{"name":"Miss Stacey Zboncak","age":48,"location":"Amarillo"}},{"attributes":{"name":"Bruce Feest","age":28,"location":"Port Linnie"}},{"attributes":{"name":"Brian Connelly","age":34,"location":"New Casey"}},{"attributes":{"name":"Santina Hamill","age":49,"location":"West Garret"}},{"attributes":{"name":"Ryan Mitchell DVM","age":45,"location":"Fort Brandtshire"}},{"attributes":{"name":"Malvina Konopelski-Harber","age":40,"location":"Sheastead"}},{"attributes":{"name":"Miss Willis Cronin","age":52,"location":"Eldredfield"}},{"attributes":{"name":"Jackie Nienow MD","age":49,"location":"Fort Eloiseboro"}},{"attributes":{"name":"Verna Pfeffer","age":35,"location":"Schneiderport"}},{"attributes":{"name":"Tremaine Hahn","age":59,"location":"East Libbie"}},{"attributes":{"name":"Miss Marcia Hickle","age":78,"location":"East Generalboro"}},{"attributes":{"name":"Ewald Tromp","age":64,"location":"Fort Eduardo"}},{"attributes":{"name":"David Schiller DVM","age":42,"location":"Tianatown"}},{"attributes":{"name":"Mr. Pat Ratke III","age":79,"location":"Woodbury"}},{"attributes":{"name":"Tomasa Daniel MD","age":73,"location":"Connellyshire"}},{"attributes":{"name":"Miss Juwan Hudson","age":20,"location":"Port Santa"}},{"attributes":{"name":"Shari Flatley","age":75,"location":"East Vella"}},{"attributes":{"name":"Daren Feeney","age":45,"location":"Rennershire"}},{"attributes":{"name":"Miss Vivienne Greenfelder","age":52,"location":"Binghamton"}},{"attributes":{"name":"Silvia Borer V","age":70,"location":"Hubertside"}},{"attributes":{"name":"Terrill Little I","age":73,"location":"North Paolo"}},{"attributes":{"name":"Jose Harris","age":42,"location":"Narcisoberg"}},{"attributes":{"name":"Taylor King","age":24,"location":"South Keon"}},{"attributes":{"name":"Eric Rice","age":28,"location":"North Stewart"}},{"attributes":{"name":"Reggie Kihn I","age":21,"location":"New Ana"}},{"attributes":{"name":"Debra Braun","age":55,"location":"Santa Cruz"}},{"attributes":{"name":"Verla Satterfield-Rau","age":23,"location":"Lake Alessandrafield"}},{"attributes":{"name":"Jane Gorczany","age":64,"location":"Mountain View"}},{"attributes":{"name":"Mossie Grady DVM","age":50,"location":"Aaronchester"}},{"attributes":{"name":"Evelyn Kertzmann","age":63,"location":"Strongsville"}},{"attributes":{"name":"Shea Kulas","age":74,"location":"Port Sylvan"}},{"attributes":{"name":"Dr. Ambrose Orn","age":37,"location":"Langworthtown"}},{"attributes":{"name":"Mrs. Eli Bechtelar","age":21,"location":"Lunaland"}},{"attributes":{"name":"Prince Hartmann","age":32,"location":"New Javonville"}},{"attributes":{"name":"Mrs. Shane Emmerich","age":67,"location":"Fort Charles"}},{"attributes":{"name":"Mr. Frederick Kiehn","age":59,"location":"Bradtkeworth"}},{"attributes":{"name":"Wyatt Trantow","age":69,"location":"Port Lisandromouth"}},{"attributes":{"name":"Eli Hackett Jr.","age":75,"location":"Burien"}},{"attributes":{"name":"Jeff Effertz III","age":19,"location":"Zariaborough"}},{"attributes":{"name":"Thad O'Reilly","age":67,"location":"Springdale"}},{"attributes":{"name":"Charlene Rippin","age":19,"location":"Amarillo"}},{"attributes":{"name":"Randy Parker","age":71,"location":"Monserratport"}},{"attributes":{"name":"Nick Koepp","age":25,"location":"Felixport"}},{"attributes":{"name":"Hazel Stiedemann","age":65,"location":"Baumbachfurt"}},{"attributes":{"name":"Dr. Kareem Lang","age":45,"location":"Heatherburgh"}},{"attributes":{"name":"Ms. Ethel Paucek DDS","age":55,"location":"South Brycen"}},{"attributes":{"name":"Cornelius Gorczany","age":70,"location":"North Daphnechester"}},{"attributes":{"name":"Felipe Feest","age":71,"location":"Denaview"}},{"attributes":{"name":"Marion Padberg V","age":77,"location":"Wolfcester"}},{"attributes":{"name":"Adelle Emmerich","age":77,"location":"West Estrellafurt"}},{"attributes":{"name":"Nelle Zieme","age":43,"location":"Detroit"}},{"attributes":{"name":"Clinton Schaden","age":50,"location":"Rolfsonbury"}},{"attributes":{"name":"Cordia Johnston-Gorczany","age":25,"location":"O'Haraburgh"}},{"attributes":{"name":"Domingo Denesik","age":62,"location":"Lake Yvonne"}},{"attributes":{"name":"Dr. Garfield Wilkinson","age":65,"location":"Marksfurt"}},{"attributes":{"name":"Christian Adams Jr.","age":67,"location":"Norfolk"}},{"attributes":{"name":"Danny Senger","age":69,"location":"Kellenland"}},{"attributes":{"name":"Martha Lowe","age":28,"location":"Fort Stephenfield"}},{"attributes":{"name":"Cielo Rice","age":55,"location":"South Gerard"}},{"attributes":{"name":"Mr. Elijah Williamson","age":55,"location":"North Moisesfort"}},{"attributes":{"name":"Luciano Medhurst","age":32,"location":"Cormierfurt"}},{"attributes":{"name":"Hubert Balistreri","age":28,"location":"Malden"}},{"attributes":{"name":"Keshawn Ruecker","age":51,"location":"Botsfordshire"}},{"attributes":{"name":"Mrs. Rupert Murazik III","age":46,"location":"Maryjaneville"}},{"attributes":{"name":"Clayton Fritsch","age":38,"location":"South Joaquin"}},{"attributes":{"name":"Eloise Labadie","age":25,"location":"Lewisville"}},{"attributes":{"name":"Jaime Hintz","age":46,"location":"Lenorashire"}},{"attributes":{"name":"Lena Okuneva","age":57,"location":"East Rico"}},{"attributes":{"name":"Teri Pagac","age":31,"location":"Mackenzieview"}},{"attributes":{"name":"Omer Jast","age":76,"location":"Bergnaumstead"}},{"attributes":{"name":"Barbara Kuhn","age":23,"location":"Melodyton"}},{"attributes":{"name":"Josiane Huels","age":25,"location":"West Maraboro"}},{"attributes":{"name":"Luke Kuphal","age":50,"location":"South Isidrocester"}},{"attributes":{"name":"Chance Lakin","age":60,"location":"North Mitchell"}},{"attributes":{"name":"Mrs. Lewis Mann","age":23,"location":"Lake Kamrynfort"}},{"attributes":{"name":"Jeanie Dibbert","age":27,"location":"Shannachester"}},{"attributes":{"name":"Dr. Jack Smitham PhD","age":78,"location":"Salem"}},{"attributes":{"name":"Michele Wilderman","age":19,"location":"West Mckaylacester"}},{"attributes":{"name":"Alexandria Leuschke","age":75,"location":"Blancashire"}},{"attributes":{"name":"Sarah Gutkowski","age":57,"location":"Dearborn"}},{"attributes":{"name":"Alverta Hegmann","age":71,"location":"East Reneeville"}},{"attributes":{"name":"Cassidy Kulas","age":26,"location":"Torpchester"}},{"attributes":{"name":"Johnathan Koelpin","age":24,"location":"New Cecelia"}},{"attributes":{"name":"Miss Gloria Kling","age":77,"location":"Port Marion"}},{"attributes":{"name":"Dr. Stephanie Pfannerstill","age":34,"location":"Gersonchester"}},{"attributes":{"name":"Dr. Micaela Simonis","age":57,"location":"Lake Angelicaworth"}},{"attributes":{"name":"Jared Davis","age":18,"location":"Dietrichbury"}},{"attributes":{"name":"Toby Feeney","age":74,"location":"Johns Creek"}},{"attributes":{"name":"Amie Dare","age":78,"location":"Judahton"}},{"attributes":{"name":"Sherri Carroll","age":69,"location":"East Karaville"}},{"attributes":{"name":"Karine Olson","age":71,"location":"Fort Crystelshire"}},{"attributes":{"name":"Clarence Franecki","age":50,"location":"Bartellton"}},{"attributes":{"name":"Floy Hackett","age":57,"location":"Spencerview"}},{"attributes":{"name":"Joy Strosin","age":18,"location":"Davie"}},{"attributes":{"name":"Dr. Guiseppe Osinski","age":65,"location":"Pabloton"}},{"attributes":{"name":"Clayton Skiles","age":78,"location":"Maximilliacester"}},{"attributes":{"name":"Miss Tyson Smith","age":44,"location":"South Yazmin"}},{"attributes":{"name":"Emmanuel Boehm","age":59,"location":"New Savannah"}},{"attributes":{"name":"Janie Stoltenberg","age":67,"location":"Baumbachshire"}},{"attributes":{"name":"Caleb Beer","age":77,"location":"Morarberg"}},{"attributes":{"name":"Mrs. Olga Baumbach","age":49,"location":"North Susanabury"}},{"attributes":{"name":"Oscar Kuhic","age":33,"location":"Kaitlynmouth"}},{"attributes":{"name":"Geoffrey Runte","age":35,"location":"Fall River"}},{"attributes":{"name":"Alyson Steuber I","age":36,"location":"Danielaville"}},{"attributes":{"name":"Ms. Stacey Hauck","age":29,"location":"Odellport"}},{"attributes":{"name":"Jermain Zemlak Jr.","age":55,"location":"North Adelle"}},{"attributes":{"name":"Mr. Nathaniel Runolfsson","age":80,"location":"New Josue"}},{"attributes":{"name":"Guadalupe Tromp","age":36,"location":"Rozellashire"}},{"attributes":{"name":"Virginie Ziemann MD","age":71,"location":"Fort Larissa"}},{"attributes":{"name":"Sidney Bailey","age":69,"location":"Travisside"}},{"attributes":{"name":"Anthony Gleason","age":68,"location":"Adriennehaven"}},{"attributes":{"name":"Luther Corkery","age":36,"location":"Waipahu"}},{"attributes":{"name":"Stewart Barrows","age":39,"location":"North Cleveburgh"}},{"attributes":{"name":"Jermaine VonRueden PhD","age":41,"location":"Fort Tiffany"}},{"attributes":{"name":"Keaton Fisher","age":63,"location":"Herzogtown"}},{"attributes":{"name":"Wesley Casper","age":59,"location":"Feeneyberg"}},{"attributes":{"name":"Dean Strosin","age":18,"location":"West Clarabelleboro"}},{"attributes":{"name":"Arthur Ledner Jr.","age":18,"location":"Kreigershire"}},{"attributes":{"name":"Jeff Schneider","age":60,"location":"Steuberhaven"}},{"attributes":{"name":"Thurman Marvin","age":43,"location":"Christiansenfield"}},{"attributes":{"name":"Miss Dane Leffler IV","age":38,"location":"Jonesland"}},{"attributes":{"name":"Elbert Botsford","age":68,"location":"Milpitas"}},{"attributes":{"name":"Nellie Gottlieb","age":30,"location":"Brekkeland"}},{"attributes":{"name":"Cristina Gerhold DVM","age":65,"location":"East Dollystad"}},{"attributes":{"name":"Claudia Beatty","age":28,"location":"D'Amorefield"}},{"attributes":{"name":"Mr. Itzel Gorczany","age":19,"location":"Helenefurt"}},{"attributes":{"name":"Ms. Sadye Frami","age":52,"location":"North Norberthaven"}},{"attributes":{"name":"Valerie Cummings","age":75,"location":"Jaskolskiville"}},{"attributes":{"name":"Kenny Luettgen","age":62,"location":"Guillermoton"}},{"attributes":{"name":"Penny Waters","age":51,"location":"East Carolanneport"}},{"attributes":{"name":"Austyn Kshlerin","age":36,"location":"Josefastead"}},{"attributes":{"name":"Eulah Schmidt","age":49,"location":"Levittown"}},{"attributes":{"name":"Sydni Wolf II","age":56,"location":"East Krystelfurt"}},{"attributes":{"name":"Pearlie Oberbrunner","age":25,"location":"South Salvador"}},{"attributes":{"name":"Monica King-Heller","age":21,"location":"North Jermainworth"}},{"attributes":{"name":"Jed Hirthe","age":55,"location":"Tyrelfurt"}},{"attributes":{"name":"Preston O'Reilly-Roberts III","age":69,"location":"South Maeve"}},{"attributes":{"name":"Mrs. Ernestina Hand","age":76,"location":"East Avery"}},{"attributes":{"name":"Jodi Sanford","age":71,"location":"New Bettiemouth"}},{"attributes":{"name":"Rosemarie Lueilwitz","age":45,"location":"Lake Adolphusfield"}},{"attributes":{"name":"Jasmine Hagenes","age":19,"location":"Torphyland"}},{"attributes":{"name":"Sonia Walsh","age":72,"location":"Frisco"}},{"attributes":{"name":"Alan Steuber PhD","age":79,"location":"Feeststead"}},{"attributes":{"name":"Patricia Schamberger","age":74,"location":"New Anahi"}},{"attributes":{"name":"Mr. Felipe Trantow","age":32,"location":"Heidenreichburgh"}},{"attributes":{"name":"Miguel Lueilwitz","age":53,"location":"West Brooke"}},{"attributes":{"name":"Gerard Dietrich","age":44,"location":"Lake Alexandra"}},{"attributes":{"name":"Lizeth Paucek","age":51,"location":"Fort Myriam"}},{"attributes":{"name":"Patsy Bosco","age":44,"location":"Melanystead"}},{"attributes":{"name":"Lowell Bernhard","age":63,"location":"Gloverview"}},{"attributes":{"name":"Ms. Vickie Stanton","age":70,"location":"Elseton"}},{"attributes":{"name":"Miranda Sipes","age":47,"location":"Fort Graycehaven"}},{"attributes":{"name":"Mandy O'Conner-Mohr","age":35,"location":"Calistaboro"}},{"attributes":{"name":"Penny Hand","age":76,"location":"Eleanorebury"}},{"attributes":{"name":"Catherine Glover","age":31,"location":"Deshawnburgh"}},{"attributes":{"name":"Dayne Runolfsdottir","age":22,"location":"Lake Chelsea"}},{"attributes":{"name":"Ebony Ledner","age":49,"location":"Brandon"}},{"attributes":{"name":"Miss Roland Kub","age":69,"location":"Jastworth"}},{"attributes":{"name":"Faith Bradtke","age":63,"location":"East Alysonville"}},{"attributes":{"name":"Dr. Stephany Reinger","age":31,"location":"Reston"}},{"attributes":{"name":"Grant Kozey","age":39,"location":"New Josiestead"}},{"attributes":{"name":"Napoleon Block","age":39,"location":"Port Ewell"}},{"attributes":{"name":"Douglas Welch","age":67,"location":"Belleville"}},{"attributes":{"name":"Hosea Crooks","age":62,"location":"Collinsworth"}},{"attributes":{"name":"Mr. Shaun Maggio","age":46,"location":"Krisstead"}},{"attributes":{"name":"Juliet Cassin","age":78,"location":"West Leonorhaven"}},{"attributes":{"name":"Wiley Jacobs IV","age":72,"location":"New Theodoreboro"}},{"attributes":{"name":"Bennie Breitenberg","age":36,"location":"Giovannashire"}},{"attributes":{"name":"Magdalen Mills","age":46,"location":"Maryhaven"}},{"attributes":{"name":"Anita Kuhlman","age":20,"location":"Brielleview"}},{"attributes":{"name":"Dale McDermott","age":73,"location":"Lynchmouth"}},{"attributes":{"name":"Vito Sanford","age":67,"location":"West Joelle"}},{"attributes":{"name":"Lorene Kilback","age":72,"location":"Fort Erica"}},{"attributes":{"name":"Kaylee Gutkowski","age":32,"location":"Pflugerville"}},{"attributes":{"name":"Marshall Heaney","age":61,"location":"Mayerberg"}},{"attributes":{"name":"Dr. Lesly Runte","age":30,"location":"Fort Brigitte"}},{"attributes":{"name":"Frankie Brakus","age":39,"location":"Colemanshire"}},{"attributes":{"name":"Calista Stamm","age":77,"location":"North Terencecester"}},{"attributes":{"name":"Abel Zboncak Jr.","age":29,"location":"Port Reuben"}},{"attributes":{"name":"Katie Leuschke","age":51,"location":"Bergeworth"}},{"attributes":{"name":"Miss Juanita Lowe","age":53,"location":"Fritschstad"}},{"attributes":{"name":"Beulah Crooks","age":38,"location":"Teresafurt"}},{"attributes":{"name":"Quinton Ritchie","age":44,"location":"Clementinafurt"}},{"attributes":{"name":"Steve Pollich DVM","age":70,"location":"West Caleighshire"}},{"attributes":{"name":"Wilbur Nitzsche","age":39,"location":"Darronchester"}},{"attributes":{"name":"Tracy Purdy","age":26,"location":"Nampa"}},{"attributes":{"name":"Donna Emard","age":76,"location":"Port Oliver"}},{"attributes":{"name":"Olivia Funk MD","age":75,"location":"Bransonshire"}},{"attributes":{"name":"Krystina Funk","age":63,"location":"Bellevue"}},{"attributes":{"name":"Ophelia Denesik","age":21,"location":"Ortizhaven"}},{"attributes":{"name":"Velma Bernier-Abbott IV","age":62,"location":"Joliet"}},{"attributes":{"name":"Susan Davis","age":38,"location":"East Keelystad"}},{"attributes":{"name":"Terry Doyle","age":76,"location":"Seamusville"}},{"attributes":{"name":"Tommy Okuneva","age":31,"location":"Loweborough"}},{"attributes":{"name":"Abigayle Hartmann DVM","age":54,"location":"Stewarttown"}},{"attributes":{"name":"Warren Lebsack","age":74,"location":"Bel Air South"}},{"attributes":{"name":"Casey Zulauf","age":35,"location":"Stratford"}},{"attributes":{"name":"Marguerite Kub","age":37,"location":"Lake Earnestine"}},{"attributes":{"name":"Armando Gutkowski","age":34,"location":"East Dustin"}},{"attributes":{"name":"Dana Heidenreich","age":33,"location":"Vanessastad"}},{"attributes":{"name":"Kelly Funk-Weissnat","age":24,"location":"Friesenport"}},{"attributes":{"name":"Alan Bergnaum DDS","age":79,"location":"Lancaster"}},{"attributes":{"name":"Judson Parker","age":56,"location":"Lake Armani"}},{"attributes":{"name":"Jorge Leannon","age":35,"location":"Margeberg"}},{"attributes":{"name":"Marilie Bartoletti","age":74,"location":"Waelchichester"}},{"attributes":{"name":"Leon Abernathy","age":27,"location":"Hipolitostad"}},{"attributes":{"name":"Whitney Heidenreich","age":39,"location":"South Aracely"}},{"attributes":{"name":"Jakob Botsford","age":20,"location":"Ziemannstead"}},{"attributes":{"name":"Marvin Senger","age":65,"location":"Jazminport"}},{"attributes":{"name":"Ana Turcotte V","age":23,"location":"Riverton"}},{"attributes":{"name":"Dr. Jany Franey","age":53,"location":"Criststad"}},{"attributes":{"name":"Kamron Bins","age":52,"location":"South Maryamfield"}},{"attributes":{"name":"Francisco Considine","age":70,"location":"Port Jabarifield"}},{"attributes":{"name":"Maurice Collins","age":24,"location":"Loumouth"}},{"attributes":{"name":"Savannah Gorczany","age":42,"location":"New Alayna"}},{"attributes":{"name":"Zora Borer","age":26,"location":"Alvisshire"}},{"attributes":{"name":"Sophie Konopelski","age":58,"location":"Ephraimfort"}},{"attributes":{"name":"Bradford Langosh","age":59,"location":"Scottsdale"}},{"attributes":{"name":"Mariana Spinka","age":34,"location":"Eliasbury"}},{"attributes":{"name":"Elsa Zemlak V","age":51,"location":"Port Eugene"}},{"attributes":{"name":"Flora D'Amore","age":22,"location":"Raleigh"}},{"attributes":{"name":"Christine Ullrich","age":66,"location":"West Roselynport"}},{"attributes":{"name":"Michael Schneider","age":74,"location":"Rebecaberg"}},{"attributes":{"name":"Lurline Feil","age":34,"location":"East Zechariahburgh"}},{"attributes":{"name":"Leanne O'Kon","age":49,"location":"West Wymancester"}},{"attributes":{"name":"Mr. Gilberto Cormier","age":52,"location":"Florin"}},{"attributes":{"name":"Dallas Dicki PhD","age":67,"location":"Alexisville"}},{"attributes":{"name":"April Gibson","age":21,"location":"Edmond"}},{"attributes":{"name":"Lucia Botsford","age":59,"location":"South Valentin"}},{"attributes":{"name":"Jill Considine","age":60,"location":"Fort Francis"}},{"attributes":{"name":"Dr. Orlando Lehner","age":68,"location":"Lake Arely"}},{"attributes":{"name":"Jaclyn Lindgren","age":40,"location":"New Heavenstad"}},{"attributes":{"name":"Jimmie Koelpin","age":41,"location":"Marytown"}},{"attributes":{"name":"Manuel Marquardt","age":27,"location":"Rockwall"}},{"attributes":{"name":"Sean Buckridge","age":33,"location":"Kallieport"}},{"attributes":{"name":"Dax Streich","age":62,"location":"North Cliftonbury"}},{"attributes":{"name":"Doyle Macejkovic","age":74,"location":"Shawnee"}},{"attributes":{"name":"Frederik O'Conner","age":70,"location":"Bothell"}},{"attributes":{"name":"Olivia Hintz","age":45,"location":"Murphymouth"}},{"attributes":{"name":"Santos Fay-Gleason","age":29,"location":"Marleeton"}},{"attributes":{"name":"Elias Cruickshank","age":55,"location":"West Lennaport"}},{"attributes":{"name":"Dr. Briana Orn","age":55,"location":"Jenniefield"}},{"attributes":{"name":"Naomi West","age":45,"location":"Mossietown"}},{"attributes":{"name":"Cleta Weimann","age":36,"location":"Hamilton"}},{"attributes":{"name":"Santa Gibson","age":45,"location":"South Virginie"}},{"attributes":{"name":"Allison Ankunding","age":72,"location":"West Gaylebury"}},{"attributes":{"name":"Raul Kemmer III","age":61,"location":"North Arnulfo"}},{"attributes":{"name":"Charlotte VonRueden","age":47,"location":"Olafland"}},{"attributes":{"name":"Sheryl Rogahn","age":63,"location":"Galveston"}},{"attributes":{"name":"Zita Schinner","age":41,"location":"Champlinmouth"}},{"attributes":{"name":"Dr. Tevin Murray","age":32,"location":"Lake Anna"}},{"attributes":{"name":"Greg Klein","age":23,"location":"Lake Tyra"}},{"attributes":{"name":"Mr. Vivien Witting","age":39,"location":"Bothell"}},{"attributes":{"name":"Mr. Alexander Kilback","age":60,"location":"North Laurenworth"}},{"attributes":{"name":"Tony Schaden-Raynor","age":37,"location":"Gresham"}},{"attributes":{"name":"Joann Bode","age":61,"location":"Independence"}},{"attributes":{"name":"Mohamed Crona","age":33,"location":"Lemkestad"}},{"attributes":{"name":"Richie Bergstrom","age":51,"location":"Pagacville"}},{"attributes":{"name":"Wanda Ward","age":49,"location":"Braunfort"}},{"attributes":{"name":"Brooks West","age":39,"location":"Fort Antoniettaworth"}},{"attributes":{"name":"Miss Kayden Kautzer","age":71,"location":"Lake Huldamouth"}},{"attributes":{"name":"Boyd Keeling","age":57,"location":"Labadiefurt"}},{"attributes":{"name":"Rufus Jenkins","age":59,"location":"North Alverta"}},{"attributes":{"name":"Miles Conn","age":78,"location":"Merlinstead"}},{"attributes":{"name":"Antonietta Wuckert","age":28,"location":"Perryshire"}},{"attributes":{"name":"Jerry Schaefer","age":56,"location":"San Francisco"}},{"attributes":{"name":"Joan Luettgen","age":64,"location":"Coon Rapids"}},{"attributes":{"name":"Lucile Mante","age":78,"location":"Jenkinsside"}},{"attributes":{"name":"Steve Emard","age":40,"location":"Miltonside"}},{"attributes":{"name":"Kayla Powlowski","age":52,"location":"St. Peters"}},{"attributes":{"name":"Vincent Schoen","age":74,"location":"Pfannerstillland"}},{"attributes":{"name":"Anthony Bahringer","age":63,"location":"Chula Vista"}},{"attributes":{"name":"Dr. Victor Becker","age":50,"location":"Bentonville"}},{"attributes":{"name":"Forrest Waters","age":46,"location":"Miltonmouth"}},{"attributes":{"name":"Mrs. Noel Fadel","age":50,"location":"Port Avis"}},{"attributes":{"name":"Dr. Laurie Schiller IV","age":36,"location":"Kundemouth"}},{"attributes":{"name":"Debra Parker","age":38,"location":"Yoshikoland"}},{"attributes":{"name":"Viola Mante","age":18,"location":"Lake Mathew"}},{"attributes":{"name":"Bettie Schaefer","age":77,"location":"Carrollton"}},{"attributes":{"name":"Guillermo Koepp","age":33,"location":"South Maverickchester"}},{"attributes":{"name":"Doyle Weissnat","age":29,"location":"West Rebekahborough"}},{"attributes":{"name":"Sincere Herzog","age":79,"location":"Fritschville"}},{"attributes":{"name":"Diane Larkin","age":27,"location":"East Sherwoodfield"}},{"attributes":{"name":"Gwen Deckow","age":22,"location":"East Pietro"}},{"attributes":{"name":"Olive Doyle","age":75,"location":"Quigleybury"}},{"attributes":{"name":"Belinda O'Kon","age":53,"location":"Laynefield"}},{"attributes":{"name":"Kattie Lindgren","age":20,"location":"Vonmouth"}},{"attributes":{"name":"Miss Tom Doyle","age":71,"location":"Port Martinbury"}},{"attributes":{"name":"Damon Thompson","age":53,"location":"Robertsfurt"}},{"attributes":{"name":"Sherman Rippin","age":28,"location":"Lake Garrystead"}},{"attributes":{"name":"John Ryan","age":77,"location":"Riverside"}},{"attributes":{"name":"Sandra Sauer","age":68,"location":"Juliecester"}},{"attributes":{"name":"Iva Sporer","age":67,"location":"Ontario"}},{"attributes":{"name":"Dorian Bins","age":72,"location":"North Felton"}},{"attributes":{"name":"Emilio Bahringer","age":80,"location":"Bernierchester"}},{"attributes":{"name":"Dr. Ayla Schiller","age":74,"location":"North Rebekah"}},{"attributes":{"name":"Dr. Ramona Mohr","age":78,"location":"Fort Ada"}},{"attributes":{"name":"Suzanne Funk","age":40,"location":"Lake Troyfurt"}},{"attributes":{"name":"Lee Schinner","age":62,"location":"Tinley Park"}},{"attributes":{"name":"Mathew Mosciski","age":63,"location":"Trenton"}},{"attributes":{"name":"Norval Barton","age":54,"location":"Maurinehaven"}},{"attributes":{"name":"Ayana Stark","age":36,"location":"Port Cynthiaport"}},{"attributes":{"name":"Jedidiah Schultz","age":36,"location":"Miami"}},{"attributes":{"name":"Miss Jayne Johnston","age":24,"location":"Chattanooga"}},{"attributes":{"name":"Elaine Dach","age":67,"location":"New Briannemouth"}},{"attributes":{"name":"Traci Maggio-Dibbert","age":76,"location":"East Matteo"}},{"attributes":{"name":"Sammy Dietrich","age":79,"location":"Hickleview"}},{"attributes":{"name":"Mr. Cesar Beahan III","age":32,"location":"Maryjanechester"}},{"attributes":{"name":"Mrs. Sammy Roob","age":24,"location":"Langoshhaven"}},{"attributes":{"name":"Terry Barton","age":28,"location":"Lake Braxton"}},{"attributes":{"name":"Lucious Littel V","age":42,"location":"Rohanborough"}},{"attributes":{"name":"Jackson Wunsch","age":58,"location":"Dearborn Heights"}},{"attributes":{"name":"Miss Becky O'Connell","age":67,"location":"Binstown"}},{"attributes":{"name":"Kristopher Grimes","age":64,"location":"Collierton"}},{"attributes":{"name":"Alexandra Emard","age":72,"location":"East Gilbert"}},{"attributes":{"name":"Dedric Lynch","age":57,"location":"Fort Smith"}},{"attributes":{"name":"Mae Lehner","age":44,"location":"Monahancester"}},{"attributes":{"name":"Miss Alfonso Schulist","age":20,"location":"Casperview"}},{"attributes":{"name":"Ernesto Fritsch","age":63,"location":"East Enola"}},{"attributes":{"name":"Aleen Stoltenberg","age":31,"location":"Talialand"}},{"attributes":{"name":"Cedric Shields","age":28,"location":"El Paso"}},{"attributes":{"name":"Naomi Crist","age":45,"location":"Oberbrunnerborough"}},{"attributes":{"name":"Delores Wolf","age":70,"location":"Wardville"}},{"attributes":{"name":"Mona Strosin","age":54,"location":"Destanyton"}},{"attributes":{"name":"Susan Mraz","age":46,"location":"Nathanielland"}},{"attributes":{"name":"Johnathan Frami","age":76,"location":"Shoreline"}},{"attributes":{"name":"Alan Mayer","age":20,"location":"Codycester"}},{"attributes":{"name":"Selmer Schamberger","age":21,"location":"Rogahnville"}},{"attributes":{"name":"Javier Ritchie DDS","age":41,"location":"Green Bay"}},{"attributes":{"name":"Patrick Blick","age":19,"location":"Gottliebville"}},{"attributes":{"name":"Mrs. Horace Hilll","age":28,"location":"Boganchester"}},{"attributes":{"name":"June Crist","age":51,"location":"Johnstonboro"}},{"attributes":{"name":"Angelica Cole","age":80,"location":"Atascocita"}},{"attributes":{"name":"Amiya Yundt","age":46,"location":"Rippinfield"}},{"attributes":{"name":"Salvatore Batz","age":49,"location":"Eugene"}},{"attributes":{"name":"Jose Lind","age":71,"location":"East Lydia"}},{"attributes":{"name":"Jess Kub","age":79,"location":"Edmondcester"}},{"attributes":{"name":"Dr. Ervin Emmerich","age":80,"location":"Sierramouth"}},{"attributes":{"name":"Homer Windler","age":51,"location":"Fort Kayleighfield"}},{"attributes":{"name":"Kadin Klocko","age":41,"location":"Pearland"}},{"attributes":{"name":"Dr. Jermaine Pagac","age":33,"location":"Roweboro"}},{"attributes":{"name":"Agnes Ortiz","age":61,"location":"Lake Jacques"}},{"attributes":{"name":"Conrad Sanford","age":21,"location":"Port Emmetmouth"}},{"attributes":{"name":"Richmond Johns","age":56,"location":"Eileenport"}},{"attributes":{"name":"Jaylan Orn","age":46,"location":"East Eulalia"}},{"attributes":{"name":"Sigurd Koelpin","age":28,"location":"Jonesville"}},{"attributes":{"name":"Jaylin Senger","age":20,"location":"Lake Andreanne"}},{"attributes":{"name":"Raymond Runte","age":47,"location":"New Virginia"}},{"attributes":{"name":"Yoshiko Schinner-Konopelski","age":56,"location":"Halvorsonfurt"}},{"attributes":{"name":"Sophie Runolfsdottir","age":18,"location":"Port Alizashire"}},{"attributes":{"name":"Emmett Moore","age":31,"location":"Schmidtberg"}},{"attributes":{"name":"Billie Stark","age":34,"location":"Jacobscester"}},{"attributes":{"name":"Gennaro McLaughlin-Parker","age":80,"location":"North Archibaldside"}},{"attributes":{"name":"Annabelle Lesch","age":50,"location":"Uptonstead"}},{"attributes":{"name":"Samantha Leannon","age":70,"location":"North Josiah"}},{"attributes":{"name":"Mr. Marcelo Schowalter","age":21,"location":"Eberthaven"}},{"attributes":{"name":"Edison Legros","age":69,"location":"Clarkborough"}},{"attributes":{"name":"Cristina Powlowski I","age":36,"location":"East Heathport"}},{"attributes":{"name":"Lena Kautzer V","age":42,"location":"South Sadye"}},{"attributes":{"name":"Daniel Considine","age":30,"location":"Hailieboro"}},{"attributes":{"name":"Zelda Sporer","age":18,"location":"New Ramiroton"}},{"attributes":{"name":"Alexzander Blanda","age":53,"location":"North Glen"}},{"attributes":{"name":"Santiago Mohr","age":23,"location":"Lake Bo"}},{"attributes":{"name":"Ms. Jeannie Heller II","age":23,"location":"New Todton"}},{"attributes":{"name":"Mackenzie Bernier","age":33,"location":"East Dillan"}},{"attributes":{"name":"Mr. Theodore Bergstrom IV","age":73,"location":"Lilystad"}},{"attributes":{"name":"Amparo Strosin","age":22,"location":"North Drew"}},{"attributes":{"name":"Magdalen Kilback","age":39,"location":"Stanleyside"}},{"attributes":{"name":"Kendra Berge","age":54,"location":"Harrisonshire"}},{"attributes":{"name":"Velma Welch","age":28,"location":"East Emory"}},{"attributes":{"name":"Forrest Turner","age":18,"location":"Deerfield Beach"}},{"attributes":{"name":"Courtney Nicolas","age":54,"location":"East Laurie"}},{"attributes":{"name":"Rafael Von","age":31,"location":"Brekkeberg"}},{"attributes":{"name":"Annabelle Murphy V","age":69,"location":"Macon-Bibb County"}},{"attributes":{"name":"Margaret Mueller","age":58,"location":"Damarischester"}},{"attributes":{"name":"Sandy Lindgren","age":58,"location":"East Calistaton"}},{"attributes":{"name":"Claire Price-McCullough","age":45,"location":"Sibylcester"}},{"attributes":{"name":"Makenna Beahan","age":76,"location":"East Rahulbury"}},{"attributes":{"name":"Keegan Greenholt","age":72,"location":"Moorebury"}},{"attributes":{"name":"Sienna O'Kon III","age":77,"location":"South Rachelle"}},{"attributes":{"name":"Eliane Sanford","age":23,"location":"Scottsdale"}},{"attributes":{"name":"Noah Kemmer-Stamm","age":52,"location":"New Beth"}},{"attributes":{"name":"Jodi Harber Jr.","age":69,"location":"East Donny"}},{"attributes":{"name":"Afton Padberg","age":75,"location":"Swiftberg"}},{"attributes":{"name":"Guiseppe Paucek","age":73,"location":"Fremont"}},{"attributes":{"name":"Delia Barrows","age":50,"location":"Wymanville"}},{"attributes":{"name":"Jaunita Ferry","age":42,"location":"South Brendonborough"}},{"attributes":{"name":"Dr. Gwen Corwin Jr.","age":59,"location":"Turcotteland"}},{"attributes":{"name":"Pierce Towne","age":34,"location":"South Metaboro"}},{"attributes":{"name":"Sadie Monahan","age":67,"location":"O'Keefeport"}},{"attributes":{"name":"Kristina Koss","age":45,"location":"Ronnyfurt"}},{"attributes":{"name":"Hazel O'Conner","age":66,"location":"Bellbury"}},{"attributes":{"name":"Ramona Morar IV","age":34,"location":"Kertzmannstad"}},{"attributes":{"name":"Felix Collier DVM","age":54,"location":"South Henrietteboro"}},{"attributes":{"name":"Leah Wuckert","age":30,"location":"Fort Georgiannashire"}},{"attributes":{"name":"Earnest Gottlieb","age":49,"location":"Gleichnerboro"}},{"attributes":{"name":"Miss Javier Donnelly","age":44,"location":"North Kylabury"}},{"attributes":{"name":"May Upton","age":33,"location":"Modesto"}},{"attributes":{"name":"Fannie Blick IV","age":64,"location":"Daughertyside"}},{"attributes":{"name":"Kim Haley-Wintheiser","age":70,"location":"Conradside"}},{"attributes":{"name":"Rickey O'Kon","age":51,"location":"Towneville"}},{"attributes":{"name":"Mrs. Jeannie Emmerich","age":74,"location":"West Eloy"}},{"attributes":{"name":"Mr. Janiya Kub","age":25,"location":"Lake Ginoport"}},{"attributes":{"name":"Andre Tremblay","age":54,"location":"South Jayde"}},{"attributes":{"name":"Gretchen Cummerata","age":58,"location":"New Richard"}},{"attributes":{"name":"Bradford Greenfelder","age":34,"location":"Rexside"}},{"attributes":{"name":"Terrell Mosciski","age":76,"location":"North Candidachester"}},{"attributes":{"name":"Fausto Ortiz","age":47,"location":"New Ottisberg"}},{"attributes":{"name":"Lynda Shanahan DVM","age":24,"location":"Patriciachester"}},{"attributes":{"name":"Howard Armstrong","age":47,"location":"Ferryhaven"}},{"attributes":{"name":"Drew Muller V","age":70,"location":"Margueritestead"}},{"attributes":{"name":"Grace Stracke","age":64,"location":"Rileyshire"}},{"attributes":{"name":"Dr. Rene Mohr I","age":26,"location":"New Tabithafield"}},{"attributes":{"name":"Roselyn Veum II","age":73,"location":"Jaycefort"}},{"attributes":{"name":"Ms. Ramona Swaniawski-Blanda","age":64,"location":"Allen"}},{"attributes":{"name":"Sean Abernathy PhD","age":76,"location":"Port Jedidiahburgh"}},{"attributes":{"name":"Stuart Conn","age":34,"location":"Lake Sofia"}},{"attributes":{"name":"Emil Labadie","age":50,"location":"East Dereck"}},{"attributes":{"name":"Roderick Borer","age":46,"location":"Stamford"}},{"attributes":{"name":"Sarai Legros","age":67,"location":"East Celestine"}},{"attributes":{"name":"Gerald Schimmel","age":71,"location":"Fort Hayleeborough"}},{"attributes":{"name":"Mr. Frederick Kassulke","age":80,"location":"Perth Amboy"}},{"attributes":{"name":"Debra Pfannerstill","age":23,"location":"Abagailfurt"}},{"attributes":{"name":"Gilberto Prosacco","age":42,"location":"Ondrickaville"}},{"attributes":{"name":"Leonard Wolf","age":42,"location":"Port Vinceberg"}},{"attributes":{"name":"Julio Ward","age":36,"location":"Jettiestad"}},{"attributes":{"name":"Dr. Glenna Ondricka","age":43,"location":"Bayonne"}},{"attributes":{"name":"Ronald Reilly DVM","age":37,"location":"South Chesley"}},{"attributes":{"name":"Jenifer Bernier-Batz","age":64,"location":"New Scarlett"}},{"attributes":{"name":"Felix Reichel II","age":55,"location":"Centennial"}},{"attributes":{"name":"Wilson Klein","age":19,"location":"Mission Viejo"}},{"attributes":{"name":"Mr. Cali Murazik","age":64,"location":"Lake Hanna"}},{"attributes":{"name":"Cary Schneider","age":40,"location":"Kirlinburgh"}},{"attributes":{"name":"Leona Turner","age":43,"location":"Toybury"}},{"attributes":{"name":"Mr. Colleen Friesen","age":21,"location":"Konopelskiland"}},{"attributes":{"name":"Myra McGlynn","age":63,"location":"Kirlinville"}},{"attributes":{"name":"Velma Koch-Barrows","age":74,"location":"New Christian"}},{"attributes":{"name":"Letitia Hoeger","age":48,"location":"Wisozkfield"}},{"attributes":{"name":"Mr. Lenny Renner","age":76,"location":"New Dorothy"}},{"attributes":{"name":"Hilbert Welch","age":68,"location":"Port Carol"}},{"attributes":{"name":"Bethany Kuhic","age":44,"location":"Fort Johathanshire"}},{"attributes":{"name":"Gina Sawayn","age":36,"location":"Fort Shemarboro"}},{"attributes":{"name":"Bill Bruen","age":23,"location":"Amanifurt"}},{"attributes":{"name":"Janessa Anderson","age":66,"location":"Cassinchester"}},{"attributes":{"name":"Phil Feeney","age":41,"location":"Port Reginaldborough"}},{"attributes":{"name":"Dr. Clinton Sporer","age":75,"location":"Salt Lake City"}},{"attributes":{"name":"Ms. Shelley Conroy","age":55,"location":"Oraltown"}},{"attributes":{"name":"Judd Simonis","age":48,"location":"Fort Clemmiefield"}},{"attributes":{"name":"Ms. Jeanette Pfeffer","age":22,"location":"DuBuquehaven"}},{"attributes":{"name":"Guadalupe Swift","age":75,"location":"Osinskistead"}},{"attributes":{"name":"Kelli Watsica","age":43,"location":"New Brendancester"}},{"attributes":{"name":"Kasandra O'Connell","age":65,"location":"McKinney"}},{"attributes":{"name":"Hilda Fahey","age":26,"location":"Lake Winona"}},{"attributes":{"name":"Gretchen Doyle","age":75,"location":"Greenfelderburgh"}},{"attributes":{"name":"Dennis Greenfelder","age":42,"location":"Madieview"}},{"attributes":{"name":"Sheridan Schuster","age":45,"location":"South Eldoraland"}},{"attributes":{"name":"Zola Harris","age":45,"location":"Fort Christ"}},{"attributes":{"name":"Sophia Sawayn","age":57,"location":"Hansencester"}},{"attributes":{"name":"Angelo Mraz","age":49,"location":"South Buddy"}},{"attributes":{"name":"Jamaal Shields","age":55,"location":"Lake Jaimeview"}},{"attributes":{"name":"Alberto Anderson-Leuschke","age":74,"location":"Schroederfort"}},{"attributes":{"name":"Louvenia Champlin","age":79,"location":"Rohanville"}},{"attributes":{"name":"Alexandrea Considine","age":38,"location":"New Fosterton"}},{"attributes":{"name":"Breanna Gutkowski","age":68,"location":"Gaylefield"}},{"attributes":{"name":"Angel Rau","age":61,"location":"Willhaven"}},{"attributes":{"name":"Jody Waters","age":56,"location":"Austin"}},{"attributes":{"name":"Cordelia Hagenes","age":58,"location":"Charlotte"}},{"attributes":{"name":"Mr. Theresa Effertz","age":28,"location":"East Colleen"}},{"attributes":{"name":"Aryanna Ankunding","age":62,"location":"Fort Amalia"}},{"attributes":{"name":"Ms. Werner Schmeler-Wiza","age":48,"location":"Abdielfurt"}},{"attributes":{"name":"Erica Kiehn","age":65,"location":"East Ignacio"}},{"attributes":{"name":"Bruce Willms MD","age":66,"location":"West Lelah"}},{"attributes":{"name":"Mrs. Jacob Nader","age":28,"location":"Frisco"}},{"attributes":{"name":"Jay Barton IV","age":30,"location":"Lake Arnaldoport"}},{"attributes":{"name":"Carl Hayes","age":31,"location":"Brennonshire"}},{"attributes":{"name":"Dr. Donnie Kautzer","age":69,"location":"Marianoburgh"}},{"attributes":{"name":"Crystal Borer Sr.","age":66,"location":"Casper"}},{"attributes":{"name":"Michael Bernier","age":53,"location":"New Evelinechester"}},{"attributes":{"name":"Alice McGlynn V","age":48,"location":"Erdmanland"}},{"attributes":{"name":"Dr. Tanya Turner V","age":40,"location":"Lake Aubree"}},{"attributes":{"name":"Deven Hackett","age":27,"location":"Walshhaven"}},{"attributes":{"name":"Gaetano Kunze","age":65,"location":"North Meagan"}},{"attributes":{"name":"Shirley Runolfsdottir","age":74,"location":"Haleighview"}},{"attributes":{"name":"Neal Tillman","age":39,"location":"Reichertfurt"}},{"attributes":{"name":"Ms. Amos Kling-Haag","age":61,"location":"Corwinfurt"}},{"attributes":{"name":"Mrs. Britney Kreiger","age":33,"location":"South Aiden"}},{"attributes":{"name":"Arturo Wisoky","age":40,"location":"Derrickcester"}},{"attributes":{"name":"Anita Greenfelder","age":52,"location":"North Clement"}},{"attributes":{"name":"Savanna Wiegand","age":60,"location":"Beckerboro"}},{"attributes":{"name":"Amparo O'Conner MD","age":58,"location":"Palm Springs"}},{"attributes":{"name":"Noel Lueilwitz","age":74,"location":"East Merritt"}},{"attributes":{"name":"Shane Bergnaum","age":76,"location":"Creolastead"}},{"attributes":{"name":"Shyanne Price","age":40,"location":"Lake Kaleigh"}},{"attributes":{"name":"Horace Abernathy","age":67,"location":"Fort Mya"}},{"attributes":{"name":"Matt Renner","age":63,"location":"Allentown"}},{"attributes":{"name":"Loyce Senger MD","age":50,"location":"West Mitchel"}},{"attributes":{"name":"Cecil Paucek","age":19,"location":"Port Dell"}},{"attributes":{"name":"Julius Klocko","age":53,"location":"East Sophie"}},{"attributes":{"name":"Josh Franecki-White","age":52,"location":"Fresno"}},{"attributes":{"name":"Nora Brakus","age":32,"location":"East Reeceshire"}},{"attributes":{"name":"Ignacio Thompson","age":23,"location":"New Phoebe"}},{"attributes":{"name":"Ruben Fisher","age":22,"location":"East Selinaboro"}},{"attributes":{"name":"Yolanda Gleason V","age":36,"location":"North Kaylin"}},{"attributes":{"name":"Simon Hegmann","age":33,"location":"Fort Forrest"}},{"attributes":{"name":"Cedric Little","age":73,"location":"Estrellafort"}},{"attributes":{"name":"Ms. Lauren Hilpert","age":79,"location":"Germantown"}},{"attributes":{"name":"Ms. Judy Dach","age":62,"location":"Champaign"}},{"attributes":{"name":"Raven Walter","age":19,"location":"Pflugerville"}},{"attributes":{"name":"Nina D'Amore","age":68,"location":"North Miami Beach"}},{"attributes":{"name":"Josh Heller","age":35,"location":"Fort Abigayle"}},{"attributes":{"name":"Duncan Gusikowski","age":71,"location":"Beattyfield"}},{"attributes":{"name":"Lurline Lakin","age":50,"location":"Reillyberg"}},{"attributes":{"name":"Mr. Paul Quitzon","age":62,"location":"Rempelhaven"}},{"attributes":{"name":"Vicky McLaughlin","age":71,"location":"Willtown"}},{"attributes":{"name":"Shannon Hammes-Bashirian","age":73,"location":"Rubenport"}},{"attributes":{"name":"Hubert White","age":68,"location":"South Kylieland"}},{"attributes":{"name":"Mrs. Christian Gusikowski","age":38,"location":"North Kyleighcester"}},{"attributes":{"name":"Emma Renner","age":19,"location":"Eau Claire"}},{"attributes":{"name":"Jessie Walker","age":56,"location":"Fort Cayla"}},{"attributes":{"name":"Marshall Huels","age":79,"location":"Fort Heath"}},{"attributes":{"name":"Lorraine Leffler","age":38,"location":"Lake Heather"}},{"attributes":{"name":"Omar Yundt","age":27,"location":"Schaeferfield"}},{"attributes":{"name":"Ahmed Braun","age":21,"location":"Bergefurt"}},{"attributes":{"name":"Gloria Mayert","age":75,"location":"South Dina"}},{"attributes":{"name":"Mr. Kelvin Lubowitz","age":76,"location":"Pattieport"}},{"attributes":{"name":"Walter Trantow","age":35,"location":"Shanellehaven"}},{"attributes":{"name":"Judy Emard","age":19,"location":"Fort Marlen"}},{"attributes":{"name":"Helmer Hessel","age":66,"location":"Schaumburg"}},{"attributes":{"name":"Lorene Corwin","age":50,"location":"Zulauffurt"}},{"attributes":{"name":"Khalil Herzog","age":44,"location":"Santee"}},{"attributes":{"name":"Annette Goyette","age":66,"location":"West Oletamouth"}},{"attributes":{"name":"Roger Bogisich","age":52,"location":"Walterberg"}},{"attributes":{"name":"Dr. Sierra Emard","age":32,"location":"Layton"}},{"attributes":{"name":"Jaden Fadel-Hettinger","age":21,"location":"Port Dolly"}},{"attributes":{"name":"Johnathan Mosciski","age":31,"location":"Rosannaville"}},{"attributes":{"name":"Cristina Abshire-Kirlin","age":60,"location":"Schoenstad"}},{"attributes":{"name":"Monique Fadel","age":27,"location":"Port Lillian"}},{"attributes":{"name":"Johnnie McGlynn","age":31,"location":"West Celiamouth"}},{"attributes":{"name":"Leda Feeney","age":51,"location":"Lydamouth"}},{"attributes":{"name":"Roberto Leannon","age":52,"location":"South Marcellashire"}},{"attributes":{"name":"Oswald Kassulke","age":33,"location":"South Leone"}},{"attributes":{"name":"Dwight Yundt I","age":56,"location":"East Marlee"}},{"attributes":{"name":"Archie Lemke MD","age":62,"location":"Lake Jillian"}},{"attributes":{"name":"Mrs. Joey Grant","age":22,"location":"Kulasport"}},{"attributes":{"name":"Charlotte Ward","age":80,"location":"North Little Rock"}},{"attributes":{"name":"Cindy Purdy","age":53,"location":"East Yesenia"}},{"attributes":{"name":"General Reichert","age":63,"location":"Country Club"}},{"attributes":{"name":"Reilly Bernhard","age":58,"location":"Zionfort"}},{"attributes":{"name":"Inez King","age":63,"location":"New Eltaworth"}},{"attributes":{"name":"Mindy Hane","age":19,"location":"North Camila"}},{"attributes":{"name":"Christian Bednar","age":24,"location":"North Mavisshire"}},{"attributes":{"name":"Dan Crist","age":80,"location":"Lubbock"}},{"attributes":{"name":"Jean Mertz","age":69,"location":"Jaquelinborough"}},{"attributes":{"name":"Freda MacGyver","age":66,"location":"Lake Lenny"}},{"attributes":{"name":"Lena Blick IV","age":62,"location":"Catalina Foothills"}},{"attributes":{"name":"Ginger Baumbach-Waelchi","age":24,"location":"Lake Leolaville"}},{"attributes":{"name":"Joe Strosin","age":26,"location":"North Lonnieburgh"}},{"attributes":{"name":"Hailie Sanford","age":18,"location":"Port Gushaven"}},{"attributes":{"name":"Nick Herman","age":24,"location":"Lake Monroefurt"}},{"attributes":{"name":"Minnie Rutherford","age":18,"location":"West Vicky"}},{"attributes":{"name":"Lilyan Jacobson","age":39,"location":"West Kyla"}},{"attributes":{"name":"Tracy Toy","age":18,"location":"Rebeccastad"}},{"attributes":{"name":"Frederic Labadie","age":27,"location":"Sengerview"}},{"attributes":{"name":"Desmond Predovic II","age":75,"location":"North Aracely"}},{"attributes":{"name":"Mr. Courtney Tremblay","age":44,"location":"Devontestead"}},{"attributes":{"name":"Jordan Wiza MD","age":45,"location":"Lake Colleen"}},{"attributes":{"name":"Gloria O'Connell","age":67,"location":"Fort Dallas"}},{"attributes":{"name":"Alison Rohan I","age":53,"location":"Cormierhaven"}},{"attributes":{"name":"Allie Kris","age":78,"location":"Streichport"}},{"attributes":{"name":"Gideon Lehner","age":58,"location":"Kilbackboro"}},{"attributes":{"name":"Abe Goodwin","age":49,"location":"Lake Dorthaburgh"}},{"attributes":{"name":"Kole Padberg","age":53,"location":"North Kelli"}},{"attributes":{"name":"Ivy Mohr","age":65,"location":"Raoulville"}},{"attributes":{"name":"Antonia Reinger-Hansen","age":30,"location":"North Bayleechester"}},{"attributes":{"name":"Murphy Heaney","age":55,"location":"State College"}},{"attributes":{"name":"Zachary Strosin","age":21,"location":"Broken Arrow"}},{"attributes":{"name":"Sylvester Connelly","age":49,"location":"Rosemead"}},{"attributes":{"name":"Linda Stoltenberg","age":74,"location":"Port Elliott"}},{"attributes":{"name":"Mr. Sedrick Prohaska","age":60,"location":"East Dollyhaven"}},{"attributes":{"name":"Tanya Reynolds","age":62,"location":"Antonettestead"}},{"attributes":{"name":"Glenda Schneider MD","age":57,"location":"North Delfinaborough"}},{"attributes":{"name":"Sigrid Marvin","age":77,"location":"Leschland"}},{"attributes":{"name":"Sylvester Beahan","age":22,"location":"Lake Desmondfurt"}},{"attributes":{"name":"Glen Jones","age":24,"location":"North Nikolas"}},{"attributes":{"name":"Miss Riley Lynch","age":52,"location":"Ortizfield"}},{"attributes":{"name":"Melvina Rohan","age":72,"location":"Daughertyton"}},{"attributes":{"name":"Alana Breitenberg","age":69,"location":"Lake Bryana"}},{"attributes":{"name":"Adrienne Kshlerin","age":22,"location":"Orvilleton"}},{"attributes":{"name":"Miss Sophia Welch","age":58,"location":"Mariettaview"}},{"attributes":{"name":"Dr. Bobby O'Keefe-Oberbrunner","age":77,"location":"North Eloise"}},{"attributes":{"name":"Noah Rodriguez","age":58,"location":"East Anibal"}},{"attributes":{"name":"Eldon Skiles","age":62,"location":"South Hilton"}},{"attributes":{"name":"Barry Willms","age":51,"location":"Lake Leonorafurt"}},{"attributes":{"name":"Ottilie Glover","age":67,"location":"Heaneyville"}},{"attributes":{"name":"Cornelius Waelchi","age":40,"location":"Jastport"}},{"attributes":{"name":"Jamison Jaskolski","age":47,"location":"South Tyrique"}},{"attributes":{"name":"Jedediah Kozey","age":72,"location":"Lefflerhaven"}},{"attributes":{"name":"Fred Klocko","age":40,"location":"Pontiac"}},{"attributes":{"name":"Devin Witting","age":55,"location":"Mosciskichester"}},{"attributes":{"name":"Michele Blanda","age":36,"location":"Sadiestad"}},{"attributes":{"name":"Velma Schumm","age":53,"location":"South Antonietta"}},{"attributes":{"name":"Leonel Schowalter","age":62,"location":"Bergestad"}},{"attributes":{"name":"Anna Schmitt","age":58,"location":"Fort Joannietown"}},{"attributes":{"name":"Craig Farrell","age":52,"location":"North Hailey"}},{"attributes":{"name":"Ivory Fahey IV","age":40,"location":"South Coty"}},{"attributes":{"name":"Pete Abbott IV","age":23,"location":"South Maureenview"}},{"attributes":{"name":"Dr. Andres Stokes DVM","age":24,"location":"Port Zoe"}},{"attributes":{"name":"Samantha Goldner","age":71,"location":"South Irma"}},{"attributes":{"name":"Osborne Medhurst","age":70,"location":"Prohaskafort"}},{"attributes":{"name":"Ms. Krystal Gerlach","age":61,"location":"West Julio"}},{"attributes":{"name":"Ralph Hayes","age":60,"location":"Port Ova"}},{"attributes":{"name":"Evan McKenzie I","age":79,"location":"South Davon"}},{"attributes":{"name":"Javier Cronin","age":74,"location":"South Kody"}},{"attributes":{"name":"Jakayla Grimes-Bins","age":69,"location":"East Myron"}},{"attributes":{"name":"Dewayne Torphy","age":69,"location":"Lake Dedrick"}},{"attributes":{"name":"Lauriane Bashirian","age":27,"location":"New Trey"}},{"attributes":{"name":"Troy Nolan","age":65,"location":"South Olaf"}},{"attributes":{"name":"Elbert Stiedemann II","age":42,"location":"Halieview"}},{"attributes":{"name":"Ms. Annie Stamm","age":18,"location":"West Fay"}},{"attributes":{"name":"Jonathan Sporer","age":42,"location":"Larkinstad"}},{"attributes":{"name":"Gwen Bradtke","age":79,"location":"New Katherine"}},{"attributes":{"name":"Randal Wolff","age":52,"location":"Burien"}},{"attributes":{"name":"Ed Haley","age":45,"location":"Fort Cristalboro"}},{"attributes":{"name":"Catherine Larkin","age":61,"location":"Romainehaven"}},{"attributes":{"name":"Gustavo Feest Jr.","age":44,"location":"Lake Meaghanside"}},{"attributes":{"name":"Katheryn Bogan","age":27,"location":"Cremintown"}},{"attributes":{"name":"William McLaughlin","age":35,"location":"Lake Johnniehaven"}},{"attributes":{"name":"Cora Rowe","age":48,"location":"Nicolastead"}},{"attributes":{"name":"Tanya Sanford","age":30,"location":"Breitenbergtown"}},{"attributes":{"name":"Colin Lesch","age":29,"location":"Aiyanaboro"}},{"attributes":{"name":"Diana Wiegand","age":22,"location":"Riceland"}},{"attributes":{"name":"Faye Christiansen","age":64,"location":"Corrinefield"}},{"attributes":{"name":"Gwendolyn Mills","age":66,"location":"Shawnshire"}},{"attributes":{"name":"Kay Kautzer","age":46,"location":"Lizethtown"}},{"attributes":{"name":"Miranda Reinger Jr.","age":47,"location":"Fort Collins"}},{"attributes":{"name":"Wilford Johnson","age":28,"location":"Houston"}},{"attributes":{"name":"Dr. Ian Wehner-Parisian Jr.","age":77,"location":"Walterland"}},{"attributes":{"name":"Mrs. Clara Johnston","age":60,"location":"Fort Gregorio"}},{"attributes":{"name":"Lou Stark-Graham","age":24,"location":"South Lourdes"}},{"attributes":{"name":"Hal Mills","age":23,"location":"Fort Mariamchester"}},{"attributes":{"name":"Hector Okuneva","age":61,"location":"South Rebecca"}},{"attributes":{"name":"Sandy Jakubowski","age":39,"location":"Brittanyside"}},{"attributes":{"name":"Kevin Block","age":22,"location":"Schmidtworth"}},{"attributes":{"name":"Alanis Cruickshank","age":64,"location":"East Gabrielle"}},{"attributes":{"name":"Cathy Strosin","age":35,"location":"North Carolannecester"}},{"attributes":{"name":"Rozella Gulgowski","age":65,"location":"Fort Zoe"}},{"attributes":{"name":"Frederick Adams","age":21,"location":"Mitchellstead"}},{"attributes":{"name":"Kadin Little","age":77,"location":"Kuhicfort"}},{"attributes":{"name":"Jessie Greenholt","age":54,"location":"Fredrickborough"}},{"attributes":{"name":"Dariana Aufderhar IV","age":19,"location":"Fort Garrett"}},{"attributes":{"name":"Jany Bauch MD","age":72,"location":"North Constantinstead"}},{"attributes":{"name":"Nella McDermott","age":31,"location":"Oro Valley"}},{"attributes":{"name":"Salvador Walsh","age":44,"location":"Fort Kameronside"}},{"attributes":{"name":"Urban Ebert","age":57,"location":"Port Unaland"}},{"attributes":{"name":"Mohammad Hills","age":59,"location":"Greenborough"}},{"attributes":{"name":"Sadie Wolff","age":61,"location":"Murraybury"}},{"attributes":{"name":"Dr. Mafalda Hauck","age":76,"location":"Kunzeberg"}},{"attributes":{"name":"Aniyah Terry Jr.","age":67,"location":"New Ottis"}},{"attributes":{"name":"Lawrence Heidenreich","age":80,"location":"Gutmannside"}},{"attributes":{"name":"Marguerite Renner","age":60,"location":"Amyside"}},{"attributes":{"name":"Eunice Farrell","age":78,"location":"Mobile"}},{"attributes":{"name":"Roberto Conroy","age":39,"location":"East Zacharycester"}},{"attributes":{"name":"Hubert Sawayn Sr.","age":30,"location":"Trevionport"}},{"attributes":{"name":"Rodolfo Homenick","age":61,"location":"West Demarco"}},{"attributes":{"name":"Antonio Lind","age":71,"location":"West Jeffereyberg"}},{"attributes":{"name":"Josue Glover","age":66,"location":"Linniehaven"}},{"attributes":{"name":"Rosa Lynch","age":59,"location":"Mayertshire"}},{"attributes":{"name":"Jena Goodwin","age":66,"location":"South Alysha"}},{"attributes":{"name":"Stephen Purdy","age":41,"location":"East Ulises"}},{"attributes":{"name":"Troy VonRueden","age":39,"location":"Damonport"}},{"attributes":{"name":"Mrs. Carrie Ward","age":45,"location":"Ashleeton"}},{"attributes":{"name":"Anthony Paucek","age":43,"location":"Laurymouth"}},{"attributes":{"name":"Alyssa Douglas MD","age":54,"location":"Ernestineberg"}},{"attributes":{"name":"Orrin Reilly DVM","age":78,"location":"Damonland"}},{"attributes":{"name":"Allen Rogahn IV","age":36,"location":"Labadieton"}},{"attributes":{"name":"Dr. Alfredo Bogisich","age":33,"location":"Arnoldofurt"}},{"attributes":{"name":"Nico Cummerata","age":59,"location":"Schummton"}},{"attributes":{"name":"Mittie Crist I","age":33,"location":"North Ralphtown"}},{"attributes":{"name":"Angie Shanahan","age":46,"location":"Sandy"}},{"attributes":{"name":"Lester Legros","age":72,"location":"East Cortez"}},{"attributes":{"name":"Davion Murphy","age":32,"location":"Missouri City"}},{"attributes":{"name":"Constance Kerluke","age":70,"location":"East Claudshire"}},{"attributes":{"name":"Bernadine Schroeder","age":20,"location":"Jarretville"}},{"attributes":{"name":"Rodolfo Swaniawski","age":50,"location":"Lockmanstead"}},{"attributes":{"name":"Ms. Robin Turcotte","age":51,"location":"Denton"}},{"attributes":{"name":"Elisha Blick IV","age":18,"location":"Patrickhaven"}},{"attributes":{"name":"Susie Berge-Blick","age":51,"location":"Emileton"}},{"attributes":{"name":"Forrest Durgan","age":63,"location":"New Johathanland"}},{"attributes":{"name":"Colin Lockman","age":28,"location":"Framingham"}},{"attributes":{"name":"Camille Padberg-Schaefer","age":44,"location":"Compton"}},{"attributes":{"name":"Erika Hagenes Jr.","age":40,"location":"North Miami"}},{"attributes":{"name":"Gene Rohan","age":31,"location":"Port Maxiestead"}},{"attributes":{"name":"Nola Dare","age":33,"location":"Hayesville"}},{"attributes":{"name":"Hope Fahey","age":72,"location":"West Kelsiside"}},{"attributes":{"name":"Rachael Stark","age":53,"location":"Blaisebury"}},{"attributes":{"name":"Toy Bosco","age":42,"location":"Fort Tristianhaven"}},{"attributes":{"name":"Lorene Douglas","age":65,"location":"Emmanuellemouth"}},{"attributes":{"name":"Irving Christiansen","age":39,"location":"Lehi"}},{"attributes":{"name":"Vanessa Hilll-Ward","age":67,"location":"North Jordanton"}},{"attributes":{"name":"Michale Koch","age":76,"location":"Cronastad"}},{"attributes":{"name":"Bernice Lockman","age":18,"location":"Jonasborough"}},{"attributes":{"name":"Tara White","age":71,"location":"Rosalindatown"}},{"attributes":{"name":"Ethel Huels MD","age":70,"location":"East Amber"}},{"attributes":{"name":"Miss Billy Hickle DDS","age":64,"location":"Boehmfield"}},{"attributes":{"name":"Bette Ullrich","age":71,"location":"Enaton"}},{"attributes":{"name":"Tracy McGlynn","age":39,"location":"Citrus Heights"}},{"attributes":{"name":"Alvin Nienow","age":34,"location":"Lake Joshuahborough"}},{"attributes":{"name":"Sienna Schimmel","age":68,"location":"Port Kayleighland"}},{"attributes":{"name":"Craig Wintheiser PhD","age":71,"location":"Garnettside"}},{"attributes":{"name":"Kavon Greenholt","age":60,"location":"West Carrie"}},{"attributes":{"name":"Immanuel Kulas","age":26,"location":"Margaretmouth"}},{"attributes":{"name":"Bradley Altenwerth I","age":69,"location":"Purdyport"}},{"attributes":{"name":"Brendan Shanahan","age":66,"location":"Milwaukee"}},{"attributes":{"name":"Daphney Beatty","age":74,"location":"Haleighstead"}},{"attributes":{"name":"Fae Bailey","age":66,"location":"Garryborough"}},{"attributes":{"name":"Leon Harris","age":73,"location":"Fort Rollin"}},{"attributes":{"name":"Drew Leffler","age":79,"location":"Nedraville"}},{"attributes":{"name":"Lionel Kub","age":45,"location":"Portland"}},{"attributes":{"name":"Dr. Robert Spinka","age":76,"location":"Worcester"}},{"attributes":{"name":"Chester Nikolaus","age":18,"location":"East Selina"}},{"attributes":{"name":"Aurelio Collins","age":22,"location":"St. George"}},{"attributes":{"name":"Elizabeth Ratke","age":75,"location":"East Clarabelleton"}},{"attributes":{"name":"Jeffrey Mertz","age":44,"location":"Port Hector"}},{"attributes":{"name":"Clinton Harber","age":77,"location":"Carlistad"}},{"attributes":{"name":"Judith Dooley","age":69,"location":"New Virginia"}},{"attributes":{"name":"Nellie Yost","age":63,"location":"East Mireyafort"}},{"attributes":{"name":"Brooke Kling","age":69,"location":"Walkershire"}},{"attributes":{"name":"Karelle Muller","age":74,"location":"South Eladiostad"}},{"attributes":{"name":"Leroy Kohler DVM","age":52,"location":"Abernathystad"}},{"attributes":{"name":"Sylvester Russel","age":29,"location":"Macejkovicstead"}},{"attributes":{"name":"Pearl Marquardt","age":71,"location":"Kissimmee"}},{"attributes":{"name":"Kim McLaughlin","age":65,"location":"North Soledad"}},{"attributes":{"name":"Jess Cassin","age":18,"location":"Sandy"}},{"attributes":{"name":"Destiny Schneider","age":38,"location":"Vernerton"}},{"attributes":{"name":"Marie Schoen Jr.","age":79,"location":"West Alvena"}},{"attributes":{"name":"Carolina Goodwin","age":80,"location":"Ricechester"}},{"attributes":{"name":"Irene Pacocha-Kihn","age":76,"location":"West Gabeside"}},{"attributes":{"name":"Emelie Harris DVM","age":44,"location":"Fort Isabella"}},{"attributes":{"name":"Lucy Kassulke","age":42,"location":"Fort Alexietown"}},{"attributes":{"name":"Elbert Schiller","age":78,"location":"Thadport"}},{"attributes":{"name":"Maria Miller","age":37,"location":"Petaluma"}},{"attributes":{"name":"Kristie Barrows","age":60,"location":"Dewayneside"}},{"attributes":{"name":"Dwight Romaguera","age":56,"location":"Schummberg"}},{"attributes":{"name":"Mr. Terri Runolfsdottir PhD","age":60,"location":"Cerritos"}},{"attributes":{"name":"Kamron Goodwin","age":49,"location":"West Zoie"}},{"attributes":{"name":"Georgia Strosin","age":56,"location":"Port Leanna"}},{"attributes":{"name":"Tanner Mosciski-Nienow","age":24,"location":"Matteoburgh"}},{"attributes":{"name":"Coty Lind III","age":31,"location":"West Duncanfort"}},{"attributes":{"name":"Dr. Lon Ward","age":36,"location":"Heathcotefurt"}},{"attributes":{"name":"Miss Alexandra Erdman-Sipes","age":70,"location":"Hillsshire"}},{"attributes":{"name":"Miss Cathy Barrows","age":68,"location":"Hilo"}},{"attributes":{"name":"Miss Martine Sporer","age":34,"location":"Port Angelaville"}},{"attributes":{"name":"Byron Hagenes III","age":41,"location":"Fort Nolaburgh"}},{"attributes":{"name":"Johnny Stark","age":76,"location":"Joannechester"}},{"attributes":{"name":"Johnny Jaskolski","age":19,"location":"Donnellyberg"}},{"attributes":{"name":"Anne Gutmann","age":72,"location":"Pine Bluff"}},{"attributes":{"name":"Rex Becker","age":64,"location":"North Raegan"}},{"attributes":{"name":"Sylvia Tremblay","age":75,"location":"Idaho Falls"}},{"attributes":{"name":"Dr. Jarrett Berge","age":63,"location":"New Helga"}},{"attributes":{"name":"Simon Feest","age":51,"location":"Toreyburgh"}},{"attributes":{"name":"Jarvis Stoltenberg","age":24,"location":"New Dejonstad"}},{"attributes":{"name":"Kevon Ebert","age":49,"location":"North Constance"}},{"attributes":{"name":"Carlton Jones","age":73,"location":"West Mariane"}},{"attributes":{"name":"Clayton Kovacek","age":52,"location":"Port Lucio"}},{"attributes":{"name":"Loren Tremblay","age":65,"location":"Mohrside"}},{"attributes":{"name":"Luna Bruen","age":60,"location":"Port Columbusstad"}},{"attributes":{"name":"Geraldine Ferry","age":73,"location":"Lillianaside"}},{"attributes":{"name":"Jaycee Windler V","age":23,"location":"Danville"}},{"attributes":{"name":"Christine Champlin","age":28,"location":"Lake Luigi"}},{"attributes":{"name":"Abdullah Paucek","age":44,"location":"East Jenifertown"}},{"attributes":{"name":"Candice Moore","age":72,"location":"Pinellas Park"}},{"attributes":{"name":"Heather Satterfield","age":49,"location":"Bradtkeville"}},{"attributes":{"name":"Mr. Dariana Dibbert","age":79,"location":"Carlsbad"}},{"attributes":{"name":"Fredrick O'Connell","age":66,"location":"Jefferson City"}},{"attributes":{"name":"Marc VonRueden","age":65,"location":"South Roxane"}},{"attributes":{"name":"Iva Reichert","age":74,"location":"New Titustown"}},{"attributes":{"name":"Courtney Turcotte","age":32,"location":"Fort Pierce"}},{"attributes":{"name":"Melvin Pagac Sr.","age":38,"location":"Danbury"}},{"attributes":{"name":"Elvira Glover","age":70,"location":"Hahnborough"}},{"attributes":{"name":"Wava Murphy","age":79,"location":"Rathfield"}},{"attributes":{"name":"Foster Kessler","age":73,"location":"Sharonborough"}},{"attributes":{"name":"Jon Grimes","age":60,"location":"Fort Mertie"}},{"attributes":{"name":"Annabel Orn","age":60,"location":"Jaycecester"}},{"attributes":{"name":"Mrs. Eula Bernier","age":39,"location":"Port Bartholome"}},{"attributes":{"name":"Gretchen Veum","age":68,"location":"Rockyfield"}},{"attributes":{"name":"General Stark","age":48,"location":"Karineburgh"}},{"attributes":{"name":"Alexane Fadel","age":61,"location":"Kamryncester"}},{"attributes":{"name":"Brent Shields","age":26,"location":"Fort Frederikburgh"}},{"attributes":{"name":"Imani Keeling","age":54,"location":"Fort Worth"}},{"attributes":{"name":"Rogelio Koelpin","age":70,"location":"Kent"}},{"attributes":{"name":"Bobby Greenfelder","age":69,"location":"Fort Katrinashire"}},{"attributes":{"name":"Miss Jennie Waters","age":39,"location":"Port Glen"}},{"attributes":{"name":"Clayton Sawayn","age":72,"location":"St. Petersburg"}},{"attributes":{"name":"Joe Leffler","age":76,"location":"New Ken"}},{"attributes":{"name":"Pamela Nader","age":65,"location":"Biloxi"}},{"attributes":{"name":"Leonel Will","age":37,"location":"Lake Marcus"}},{"attributes":{"name":"Frances Ward","age":51,"location":"New Llewellyn"}},{"attributes":{"name":"Sheldon Zulauf","age":20,"location":"Sawaynshire"}},{"attributes":{"name":"Mrs. Josefa Ernser","age":50,"location":"Port Eliane"}},{"attributes":{"name":"Allan Tromp","age":54,"location":"Port Xzaviermouth"}},{"attributes":{"name":"Jovan Farrell","age":56,"location":"East Ibrahim"}},{"attributes":{"name":"Emily Turcotte","age":73,"location":"Malvinashire"}},{"attributes":{"name":"Ms. Margarete Bayer-Klocko DDS","age":39,"location":"West Bradenview"}},{"attributes":{"name":"Ismael Mraz","age":66,"location":"Sheridanfield"}},{"attributes":{"name":"Amanda Becker","age":33,"location":"Carmelastad"}},{"attributes":{"name":"Kendra Abshire","age":80,"location":"Borerborough"}},{"attributes":{"name":"Kyleigh Lang","age":39,"location":"South Marcellusfort"}},{"attributes":{"name":"Santina Emard","age":28,"location":"Fort Chesleyland"}},{"attributes":{"name":"Carol VonRueden","age":31,"location":"Des Plaines"}},{"attributes":{"name":"Priscilla Champlin V","age":68,"location":"Leannonfort"}},{"attributes":{"name":"Gladys Wunsch Sr.","age":39,"location":"Graysoncester"}},{"attributes":{"name":"Mariano Anderson","age":63,"location":"Fort Aric"}},{"attributes":{"name":"Wendell McGlynn Jr.","age":50,"location":"Felipachester"}},{"attributes":{"name":"Neal Kovacek IV","age":67,"location":"Morgan Hill"}},{"attributes":{"name":"Cody Walter","age":66,"location":"South Mariannaview"}},{"attributes":{"name":"Violet Champlin","age":33,"location":"Newtonworth"}},{"attributes":{"name":"Dr. Manuel Kerluke","age":79,"location":"Jessikahaven"}},{"attributes":{"name":"Ms. Lowell Becker PhD","age":44,"location":"San Jose"}},{"attributes":{"name":"Ellsworth Bode","age":42,"location":"Lake Mistyburgh"}},{"attributes":{"name":"Mr. Quinten Wolff V","age":26,"location":"Millcreek"}},{"attributes":{"name":"Kerry Terry","age":44,"location":"Kuphalfurt"}},{"attributes":{"name":"Lily Trantow Sr.","age":46,"location":"West Babylon"}},{"attributes":{"name":"Emma Stehr","age":60,"location":"Port Charlotte"}},{"attributes":{"name":"Carmelo Hartmann","age":32,"location":"Zanderburgh"}},{"attributes":{"name":"Virgil Conroy-Shields","age":61,"location":"Casperfield"}},{"attributes":{"name":"Mr. Kiera Mueller","age":42,"location":"Port Vito"}},{"attributes":{"name":"Pat Schultz","age":75,"location":"South Dorthyshire"}},{"attributes":{"name":"Sonya Treutel","age":22,"location":"Charleston"}},{"attributes":{"name":"Bill Weber","age":53,"location":"Plymouth"}},{"attributes":{"name":"Leopoldo Macejkovic","age":35,"location":"West Kirstinstead"}},{"attributes":{"name":"Macie Balistreri","age":75,"location":"Rosieburgh"}},{"attributes":{"name":"Raleigh Schimmel DVM","age":25,"location":"Bruenshire"}},{"attributes":{"name":"Vincent Predovic","age":43,"location":"Colton"}},{"attributes":{"name":"Peter Hintz V","age":48,"location":"Johnsonmouth"}},{"attributes":{"name":"Quinton Sawayn","age":32,"location":"Eden Prairie"}},{"attributes":{"name":"Violet Cormier","age":39,"location":"Fort Rogersworth"}},{"attributes":{"name":"Billy Stamm","age":48,"location":"Masonburgh"}},{"attributes":{"name":"Lucio Franecki","age":73,"location":"South Janae"}},{"attributes":{"name":"Tamara Lebsack","age":79,"location":"North Brycen"}},{"attributes":{"name":"Marcelina Ullrich","age":62,"location":"Lake Tiara"}},{"attributes":{"name":"Turner Windler Sr.","age":47,"location":"North Jamison"}},{"attributes":{"name":"Ms. Joan Weber","age":63,"location":"Anjaliboro"}},{"attributes":{"name":"Ervin Bernier","age":70,"location":"Heaneyton"}},{"attributes":{"name":"Celia Schamberger","age":63,"location":"Vilmafield"}},{"attributes":{"name":"Chaya MacGyver","age":54,"location":"Port Saige"}},{"attributes":{"name":"Colleen Harvey V","age":55,"location":"San Marcos"}},{"attributes":{"name":"Mrs. Ebony Skiles","age":24,"location":"East Susanabury"}},{"attributes":{"name":"Mr. Nellie Boyer","age":71,"location":"Virginia Beach"}},{"attributes":{"name":"Ernie Schuppe","age":30,"location":"Boynton Beach"}},{"attributes":{"name":"Rebecca Langworth","age":71,"location":"Keelytown"}},{"attributes":{"name":"Monique O'Reilly","age":25,"location":"South Whittier"}},{"attributes":{"name":"Erica Kuhn","age":33,"location":"Lake Westley"}},{"attributes":{"name":"Annamae Pollich","age":42,"location":"Blacksburg"}},{"attributes":{"name":"Fernando Hermiston IV","age":64,"location":"Skileshaven"}},{"attributes":{"name":"Madalyn Dach","age":61,"location":"South Jennie"}},{"attributes":{"name":"Kendall Homenick","age":53,"location":"Auerville"}},{"attributes":{"name":"Jayda Jast","age":79,"location":"Rancho Cordova"}},{"attributes":{"name":"Melba Leffler","age":23,"location":"Port Clarabelleshire"}},{"attributes":{"name":"Rosalie Howell","age":38,"location":"Lindgrenport"}},{"attributes":{"name":"Rose Schmitt","age":79,"location":"Ryanfort"}},{"attributes":{"name":"Cory Torphy","age":27,"location":"West Kay"}},{"attributes":{"name":"Antwon Labadie","age":73,"location":"Kuhntown"}},{"attributes":{"name":"Jordan Wehner","age":22,"location":"Lake Braxtonmouth"}},{"attributes":{"name":"Guy Wiegand","age":60,"location":"Coyborough"}},{"attributes":{"name":"Adrianna Orn-Kihn","age":30,"location":"East Grady"}},{"attributes":{"name":"Edmund Strosin","age":68,"location":"East Jaqueline"}},{"attributes":{"name":"Scotty Gutmann","age":62,"location":"South Ashtonview"}},{"attributes":{"name":"Joanna Kessler","age":22,"location":"Lake Aftonhaven"}},{"attributes":{"name":"Shakira Stamm","age":36,"location":"Morissettetown"}},{"attributes":{"name":"Josephine Keebler","age":31,"location":"Greenholtboro"}},{"attributes":{"name":"Scott Hammes-Walter","age":34,"location":"Porterchester"}},{"attributes":{"name":"Muriel Harris","age":53,"location":"Lake Destanyfort"}},{"attributes":{"name":"Mrs. Lazaro O'Hara","age":79,"location":"Dereckchester"}},{"attributes":{"name":"Doyle Runolfsson-Beatty","age":32,"location":"North Dariana"}},{"attributes":{"name":"Stanley Homenick","age":80,"location":"Henriberg"}},{"attributes":{"name":"Mrs. Josie Wilderman-DuBuque III","age":32,"location":"North Reginaldshire"}},{"attributes":{"name":"Hassan Osinski","age":64,"location":"West Lambertstad"}},{"attributes":{"name":"Mr. Amara Runolfsdottir-Thompson","age":79,"location":"East Yesseniaboro"}},{"attributes":{"name":"Otis Wehner","age":20,"location":"Fannystead"}},{"attributes":{"name":"Marjorie Stark","age":50,"location":"Shoreline"}},{"attributes":{"name":"Kelly Erdman","age":54,"location":"Eldaview"}},{"attributes":{"name":"Rosemarie Bradtke I","age":37,"location":"Cicero"}},{"attributes":{"name":"Mr. Hertha Lang","age":79,"location":"Claudeland"}},{"attributes":{"name":"Dianna Johns IV","age":27,"location":"Lake Lorenzcester"}},{"attributes":{"name":"Bessie Roberts","age":49,"location":"North Cleorafurt"}},{"attributes":{"name":"Prudence Nolan","age":53,"location":"Reichelboro"}},{"attributes":{"name":"Rosie McGlynn","age":59,"location":"Gislasonview"}},{"attributes":{"name":"Ramon Spencer","age":34,"location":"Fort Hildastad"}},{"attributes":{"name":"Lorraine Ward","age":26,"location":"East Emmanuelleberg"}},{"attributes":{"name":"Alysson Kautzer MD","age":28,"location":"Cedar Hill"}},{"attributes":{"name":"Coty Wolff","age":59,"location":"Luettgenshire"}},{"attributes":{"name":"Myrtie Torphy","age":42,"location":"Auershire"}},{"attributes":{"name":"Mr. Everett Heaney","age":47,"location":"Cathrynworth"}},{"attributes":{"name":"Ana Bartoletti","age":74,"location":"Altaboro"}},{"attributes":{"name":"Dax Wintheiser","age":43,"location":"Marietta"}},{"attributes":{"name":"Donna Schmitt V","age":49,"location":"New Erickmouth"}},{"attributes":{"name":"Avery Dooley","age":31,"location":"Portage"}},{"attributes":{"name":"Dr. Aaron Considine","age":72,"location":"New Euna"}},{"attributes":{"name":"Miss Jacinto Reinger","age":30,"location":"Kaceyhaven"}},{"attributes":{"name":"Kristen Bergstrom","age":27,"location":"Hildegardberg"}},{"attributes":{"name":"Dr. Cornell Bergnaum","age":67,"location":"Fort Izabellastad"}},{"attributes":{"name":"Mr. Gregory Morar","age":66,"location":"Lake Abigailberg"}},{"attributes":{"name":"Harry Marquardt","age":47,"location":"League City"}},{"attributes":{"name":"Jorge McLaughlin","age":53,"location":"Jackside"}},{"attributes":{"name":"Deborah Franey","age":62,"location":"Fort Eda"}},{"attributes":{"name":"Harvey Lynch","age":68,"location":"Volkmanburgh"}},{"attributes":{"name":"Ebba Franecki","age":55,"location":"East Irving"}},{"attributes":{"name":"Lynette Bailey","age":76,"location":"West Jana"}},{"attributes":{"name":"Roger Oberbrunner PhD","age":52,"location":"Lake Murrayfort"}},{"attributes":{"name":"Jamie Hand","age":63,"location":"North Estelleshire"}},{"attributes":{"name":"Stacy Hills","age":45,"location":"Erdmanville"}},{"attributes":{"name":"Lucille Turcotte","age":39,"location":"Lehnerside"}},{"attributes":{"name":"Bennie Hickle","age":68,"location":"North Dewayne"}},{"attributes":{"name":"Dewayne Beatty II","age":76,"location":"Frisco"}},{"attributes":{"name":"Wilbert Leannon","age":31,"location":"Lake Aron"}},{"attributes":{"name":"Zella Sipes","age":68,"location":"Jadenburgh"}},{"attributes":{"name":"Mariah Keeling DDS","age":73,"location":"North Felipa"}},{"attributes":{"name":"Kristen Wehner I","age":59,"location":"Deltaside"}},{"attributes":{"name":"Dr. Estrella Mraz","age":31,"location":"Fond du Lac"}},{"attributes":{"name":"Elvira Hand","age":46,"location":"West Jimmie"}},{"attributes":{"name":"Ms. Angela Baumbach","age":58,"location":"Burdetteburgh"}},{"attributes":{"name":"Joey Krajcik","age":25,"location":"Skokie"}},{"attributes":{"name":"Keeley Kessler","age":38,"location":"Miami Beach"}},{"attributes":{"name":"Mrs. Zoie Paucek","age":75,"location":"North Briantown"}},{"attributes":{"name":"Sophia Will","age":28,"location":"Johnstontown"}},{"attributes":{"name":"Lesly Skiles-Hettinger","age":32,"location":"Fort Sibyl"}},{"attributes":{"name":"Desiree Carroll","age":49,"location":"Hegmannside"}},{"attributes":{"name":"Mr. Noel Heaney","age":43,"location":"Fort Ilene"}},{"attributes":{"name":"Colten Blick","age":50,"location":"Port Quincycester"}},{"attributes":{"name":"Koby O'Conner","age":68,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Dr. Amelia Farrell IV","age":31,"location":"New Lavonne"}},{"attributes":{"name":"Jesse Waters","age":39,"location":"East Vilma"}},{"attributes":{"name":"Pedro Labadie","age":71,"location":"Stillwater"}},{"attributes":{"name":"Fabiola Gusikowski","age":71,"location":"New Garrickfort"}},{"attributes":{"name":"Anibal Konopelski","age":36,"location":"Albuquerque"}},{"attributes":{"name":"Delta Crooks","age":56,"location":"Corwinmouth"}},{"attributes":{"name":"Kayla Emmerich","age":22,"location":"Ellenport"}},{"attributes":{"name":"Calista Hintz","age":49,"location":"Fort Jana"}},{"attributes":{"name":"Raquel Strosin-Crooks","age":30,"location":"South Marcoland"}},{"attributes":{"name":"Mrs. Corene Kuphal","age":60,"location":"Langbury"}},{"attributes":{"name":"Keyshawn Conroy-Kiehn","age":41,"location":"Shanahantown"}},{"attributes":{"name":"Susan Kuphal","age":43,"location":"Port Kristianville"}},{"attributes":{"name":"Toby Raynor","age":67,"location":"Fayeboro"}},{"attributes":{"name":"Russell O'Reilly V","age":64,"location":"Attleboro"}},{"attributes":{"name":"Nathaniel Ruecker-Fay","age":44,"location":"Ledafield"}},{"attributes":{"name":"Dwayne Ankunding","age":40,"location":"Barbaraview"}},{"attributes":{"name":"Nyasia Hudson","age":23,"location":"Santa Maria"}},{"attributes":{"name":"Lessie Kuvalis","age":40,"location":"Nicklausfield"}},{"attributes":{"name":"Martin Yundt","age":63,"location":"West Nellecester"}},{"attributes":{"name":"Conner Mitchell-Abernathy","age":32,"location":"New Constance"}},{"attributes":{"name":"Marta Murphy III","age":31,"location":"Bartlett"}},{"attributes":{"name":"Marty Smitham","age":28,"location":"Emmerichville"}},{"attributes":{"name":"Miss Michelle Padberg-Quitzon","age":56,"location":"New Cordie"}},{"attributes":{"name":"Violet Pollich III","age":62,"location":"New Tre"}},{"attributes":{"name":"Bobbie Russel Sr.","age":20,"location":"Fort Emmanuelleboro"}},{"attributes":{"name":"Frankie Wiza","age":34,"location":"Armstrongchester"}},{"attributes":{"name":"Kari Smitham-Wiza PhD","age":39,"location":"Huelview"}},{"attributes":{"name":"Elbert Price","age":25,"location":"Pinkfield"}},{"attributes":{"name":"Pearl Kilback","age":56,"location":"New Cesarmouth"}},{"attributes":{"name":"Ronnie Crist","age":78,"location":"Florence-Graham"}},{"attributes":{"name":"Dr. Marie Morar","age":74,"location":"West Rollinworth"}},{"attributes":{"name":"Ms. Karen Rohan","age":36,"location":"New Marquis"}},{"attributes":{"name":"Darlene Cummings","age":47,"location":"Lyricview"}},{"attributes":{"name":"Anastacio Dietrich","age":20,"location":"South Kennyfield"}},{"attributes":{"name":"Alton Pouros","age":55,"location":"Haagstead"}},{"attributes":{"name":"Alanna Strosin","age":28,"location":"Hillsboro"}},{"attributes":{"name":"Edward Cummerata","age":24,"location":"West Maximilliachester"}},{"attributes":{"name":"Jeramy Swift","age":74,"location":"East Derek"}},{"attributes":{"name":"Charlie Emmerich","age":47,"location":"Steuberborough"}},{"attributes":{"name":"Tommy Treutel","age":65,"location":"Trujillo Alto"}},{"attributes":{"name":"Mrs. Lydia Lindgren","age":51,"location":"North Lemuelland"}},{"attributes":{"name":"Charlotte McLaughlin","age":58,"location":"West Seneca"}},{"attributes":{"name":"Lenora Bergnaum","age":41,"location":"Blandastad"}},{"attributes":{"name":"Mara Marquardt PhD","age":67,"location":"North Emmitt"}},{"attributes":{"name":"Megane Crona","age":41,"location":"South Peter"}},{"attributes":{"name":"Francisco Wolf I","age":22,"location":"Gustaveberg"}},{"attributes":{"name":"Franklin Paucek","age":76,"location":"Lake Biankaville"}},{"attributes":{"name":"Jesus Mills","age":23,"location":"Hudsonport"}},{"attributes":{"name":"Johnnie Turner","age":22,"location":"North Blaisemouth"}},{"attributes":{"name":"Alexandro Pagac DVM","age":61,"location":"East Drewview"}},{"attributes":{"name":"Dr. Archibald Beer","age":44,"location":"Austenshire"}},{"attributes":{"name":"Doris Adams","age":47,"location":"Arecibo"}},{"attributes":{"name":"Mya Mayer","age":46,"location":"Waylonbury"}},{"attributes":{"name":"Vera Halvorson","age":18,"location":"Reillybury"}},{"attributes":{"name":"Lazaro Runte","age":43,"location":"South Kathlynshire"}},{"attributes":{"name":"Dayna Mertz-Kemmer","age":30,"location":"Nicolasside"}},{"attributes":{"name":"Michael Zboncak","age":36,"location":"Jordonmouth"}},{"attributes":{"name":"Krista Davis","age":65,"location":"Kuhicton"}},{"attributes":{"name":"Adell Schowalter","age":59,"location":"Gusikowskiboro"}},{"attributes":{"name":"Evelyn Bogan-Fisher","age":27,"location":"East Juliostead"}},{"attributes":{"name":"Alberta Abbott","age":48,"location":"North Adalbertostad"}},{"attributes":{"name":"Keven Stoltenberg","age":40,"location":"Hesperia"}},{"attributes":{"name":"Timothy Dare","age":37,"location":"Elicester"}},{"attributes":{"name":"Miss Darin Pacocha","age":18,"location":"Thomasburgh"}},{"attributes":{"name":"Grady Koepp","age":52,"location":"Hamillside"}},{"attributes":{"name":"Alvin Hermann","age":21,"location":"Yasminview"}},{"attributes":{"name":"Dan Skiles DDS","age":19,"location":"Helenashire"}},{"attributes":{"name":"Kenna Price","age":71,"location":"Fort Omaristad"}},{"attributes":{"name":"Heber Dickens","age":32,"location":"Fort Frederikchester"}},{"attributes":{"name":"Grace Schaden","age":72,"location":"Port Mabelle"}},{"attributes":{"name":"Kianna Reynolds","age":38,"location":"Barnstable Town"}},{"attributes":{"name":"Perry Hoppe","age":78,"location":"South Estevanfield"}},{"attributes":{"name":"Jody Auer","age":40,"location":"East Jacinthe"}},{"attributes":{"name":"Abigail Bins","age":67,"location":"Garryshire"}},{"attributes":{"name":"Shelly Hintz","age":28,"location":"Lake Forest"}},{"attributes":{"name":"Lloyd Grimes I","age":74,"location":"Simoniscester"}},{"attributes":{"name":"Naomi Berge","age":65,"location":"Gorczanyborough"}},{"attributes":{"name":"Lester Cartwright","age":33,"location":"Fort Maeveberg"}},{"attributes":{"name":"Meghan Jacobs","age":43,"location":"Alfordstead"}},{"attributes":{"name":"Sadie Mohr Jr.","age":73,"location":"Fort Artbury"}},{"attributes":{"name":"Shelia Schiller DVM","age":72,"location":"Azusa"}},{"attributes":{"name":"Clay Roberts","age":36,"location":"Kuphalville"}},{"attributes":{"name":"Dr. Lance Zboncak","age":75,"location":"Noemouth"}},{"attributes":{"name":"Pablo Gleason","age":55,"location":"Towson"}},{"attributes":{"name":"Scarlett Shanahan","age":54,"location":"Louisville/Jefferson County"}},{"attributes":{"name":"Kurtis Altenwerth","age":25,"location":"Metzhaven"}},{"attributes":{"name":"Angel Walsh","age":49,"location":"Wardberg"}},{"attributes":{"name":"Chelsea Nicolas","age":38,"location":"Abernathyside"}},{"attributes":{"name":"Devin Schroeder-Auer","age":24,"location":"North Martaburgh"}},{"attributes":{"name":"Alberta Okuneva","age":22,"location":"Walterstad"}},{"attributes":{"name":"Antonette Kovacek","age":76,"location":"El Dorado Hills"}},{"attributes":{"name":"Kerry O'Hara","age":76,"location":"Lake Nya"}},{"attributes":{"name":"Nicholas Satterfield","age":43,"location":"South Aubree"}},{"attributes":{"name":"Mandy Zboncak","age":39,"location":"Lebsackworth"}},{"attributes":{"name":"Abbey Murazik","age":59,"location":"Muellerport"}},{"attributes":{"name":"Mauricio White","age":75,"location":"New Trystan"}},{"attributes":{"name":"Ms. Jessie Jenkins","age":34,"location":"Estrellastad"}},{"attributes":{"name":"Viola Dach","age":61,"location":"Kuvalischester"}},{"attributes":{"name":"Nora Ullrich","age":26,"location":"South Hunterburgh"}},{"attributes":{"name":"Darrel Welch","age":29,"location":"Blaiseboro"}},{"attributes":{"name":"Meggie Gleason","age":62,"location":"Denesikport"}},{"attributes":{"name":"Keanu VonRueden IV","age":61,"location":"West Katheryn"}},{"attributes":{"name":"Mr. Jadyn Schulist","age":18,"location":"Sydneycester"}},{"attributes":{"name":"Lamar Effertz-Hansen","age":40,"location":"Feestmouth"}},{"attributes":{"name":"Deangelo Robel","age":70,"location":"St. Cloud"}},{"attributes":{"name":"Mr. Luis Schowalter","age":71,"location":"Herminiaton"}},{"attributes":{"name":"Dr. Leo Johnston","age":75,"location":"West Sarinachester"}},{"attributes":{"name":"Iris Braun-Stamm","age":59,"location":"Hansenton"}},{"attributes":{"name":"Uriel Bruen I","age":75,"location":"Willmsport"}},{"attributes":{"name":"Dr. Jerrell Frami-Yost","age":34,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Steven Wintheiser","age":49,"location":"New Mosheburgh"}},{"attributes":{"name":"Glenda Kovacek","age":30,"location":"Annieland"}},{"attributes":{"name":"Dion Becker","age":50,"location":"Alafaya"}},{"attributes":{"name":"Sonja Bergstrom","age":56,"location":"Eau Claire"}},{"attributes":{"name":"Brooke Lindgren-Goldner","age":72,"location":"Lueilwitzcester"}},{"attributes":{"name":"Christopher Denesik-Kohler III","age":50,"location":"Heaneyview"}},{"attributes":{"name":"Juanita Stroman","age":38,"location":"Fullerton"}},{"attributes":{"name":"Mr. Amari Marquardt","age":64,"location":"Kelleyton"}},{"attributes":{"name":"Carey Abshire","age":37,"location":"Kreigerhaven"}},{"attributes":{"name":"Sean Green","age":67,"location":"Beavercreek"}},{"attributes":{"name":"Ahmad Berge","age":30,"location":"Madiehaven"}},{"attributes":{"name":"Adrienne Thiel","age":18,"location":"Olathe"}},{"attributes":{"name":"Randall Hudson","age":53,"location":"Ellicott City"}},{"attributes":{"name":"Darrell Hilll","age":23,"location":"Port Shaynamouth"}},{"attributes":{"name":"Maya Cronin","age":61,"location":"Bloomington"}},{"attributes":{"name":"Ronald Predovic","age":49,"location":"Port Orin"}},{"attributes":{"name":"Dale Emmerich II","age":79,"location":"Darestad"}},{"attributes":{"name":"Brennan Fahey","age":38,"location":"Homenickport"}},{"attributes":{"name":"Kyleigh Kiehn","age":71,"location":"Harberstead"}},{"attributes":{"name":"Roberta Heathcote","age":63,"location":"Kshlerinfurt"}},{"attributes":{"name":"Marc Hoeger","age":58,"location":"Port Celestinofort"}},{"attributes":{"name":"Jalyn Pagac","age":23,"location":"Carmichael"}},{"attributes":{"name":"Clyde Harris","age":26,"location":"Kunzeworth"}},{"attributes":{"name":"Clyde Lynch","age":67,"location":"Bonita Springs"}},{"attributes":{"name":"Emerald Schimmel DVM","age":21,"location":"Muncie"}},{"attributes":{"name":"Precious Jenkins","age":38,"location":"Toyburgh"}},{"attributes":{"name":"Carlos Kris","age":18,"location":"Leannonworth"}},{"attributes":{"name":"Curtis Auer","age":29,"location":"North Mikemouth"}},{"attributes":{"name":"Georgia Zulauf","age":19,"location":"West Jacky"}},{"attributes":{"name":"Johathan Dietrich","age":70,"location":"Kayhaven"}},{"attributes":{"name":"Randy Bartoletti DDS","age":65,"location":"Turnermouth"}},{"attributes":{"name":"Mr. Darrell McClure","age":74,"location":"North Miami"}},{"attributes":{"name":"Kaylee Jones","age":21,"location":"Carolina"}},{"attributes":{"name":"Dr. Bridget Wisozk","age":29,"location":"Grantside"}},{"attributes":{"name":"Mitchell Emard","age":70,"location":"Baton Rouge"}},{"attributes":{"name":"Ms. Eugene Rutherford","age":49,"location":"Andersonworth"}},{"attributes":{"name":"Lacy Corwin","age":34,"location":"New Estebanbury"}},{"attributes":{"name":"Marilyn Cole","age":26,"location":"Mesa"}},{"attributes":{"name":"Bryana Mosciski","age":56,"location":"Vandervortcester"}},{"attributes":{"name":"Ferne Sporer","age":39,"location":"Susiefurt"}},{"attributes":{"name":"Edward Kulas","age":71,"location":"New Guidoshire"}},{"attributes":{"name":"Malcolm Bernier","age":26,"location":"South Wilfridshire"}},{"attributes":{"name":"Sammy Kuphal","age":65,"location":"Lake Margaretestad"}},{"attributes":{"name":"Jeff Rau","age":35,"location":"Lake Abraham"}},{"attributes":{"name":"Matthew Hodkiewicz","age":65,"location":"South Jo"}},{"attributes":{"name":"Alberta Crona","age":19,"location":"Champaign"}},{"attributes":{"name":"Tina Padberg-Daugherty","age":39,"location":"Port Vladimirton"}},{"attributes":{"name":"Monserrat Walker","age":61,"location":"Murrayborough"}},{"attributes":{"name":"Dr. Isaac Anderson","age":43,"location":"Hudsonberg"}},{"attributes":{"name":"Alfredo Klocko","age":68,"location":"Port Autumnport"}},{"attributes":{"name":"Wade Roob","age":45,"location":"North Kianfurt"}},{"attributes":{"name":"Rosalinda Jenkins","age":54,"location":"South Kennithburgh"}},{"attributes":{"name":"Caleb Littel-Balistreri","age":79,"location":"Catalina Foothills"}},{"attributes":{"name":"Alana Jerde","age":42,"location":"Michaelfurt"}},{"attributes":{"name":"Brice Krajcik-Bosco","age":54,"location":"North Zelmabury"}},{"attributes":{"name":"Mrs. Alexandra Bruen","age":32,"location":"Johannview"}},{"attributes":{"name":"Ms. Ronny Lemke","age":65,"location":"South Constance"}},{"attributes":{"name":"Abel Yost","age":70,"location":"Kilbackcester"}},{"attributes":{"name":"Ruth Gutkowski","age":71,"location":"Jacksonville"}},{"attributes":{"name":"Jeanette Considine","age":66,"location":"South Elody"}},{"attributes":{"name":"Helen Sipes","age":23,"location":"Hirtheshire"}},{"attributes":{"name":"Daniella Schimmel","age":36,"location":"New Solon"}},{"attributes":{"name":"Ned Vandervort","age":80,"location":"West John"}},{"attributes":{"name":"Vicki Zboncak","age":78,"location":"Oro Valley"}},{"attributes":{"name":"Jordy Zemlak","age":23,"location":"Kilbackbury"}},{"attributes":{"name":"Myron Kuhn PhD","age":51,"location":"Raeview"}},{"attributes":{"name":"Jessie Auer-Johns DVM","age":65,"location":"Maryseburgh"}},{"attributes":{"name":"April Koch III","age":43,"location":"Lake Katelynn"}},{"attributes":{"name":"Marcos Hammes III","age":58,"location":"Jonesberg"}},{"attributes":{"name":"Gerardo Pagac","age":44,"location":"Port Marcellusfield"}},{"attributes":{"name":"Ms. Dewitt Leuschke Jr.","age":32,"location":"Lake Bessie"}},{"attributes":{"name":"Marlene Jacobi","age":42,"location":"Gottliebfurt"}},{"attributes":{"name":"Orin Bailey","age":48,"location":"West Korbin"}},{"attributes":{"name":"Darlene Beahan-Armstrong","age":21,"location":"Severn"}},{"attributes":{"name":"Ms. Name Stokes","age":74,"location":"Botsfordland"}},{"attributes":{"name":"Marc Adams","age":53,"location":"New Rowlandton"}},{"attributes":{"name":"Miss Thaddeus Stokes","age":47,"location":"North Lavern"}},{"attributes":{"name":"Verna Swift","age":59,"location":"North Nikki"}},{"attributes":{"name":"Violette Kerluke","age":40,"location":"Trompcester"}},{"attributes":{"name":"Bernhard Jaskolski","age":49,"location":"Huntsville"}},{"attributes":{"name":"Dr. Telly Schuppe","age":39,"location":"Delphiahaven"}},{"attributes":{"name":"Stacey Braun","age":62,"location":"Henrimouth"}},{"attributes":{"name":"Delia Lemke","age":57,"location":"Lauriemouth"}},{"attributes":{"name":"Stuart Wehner","age":42,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Graciela Ebert IV","age":23,"location":"The Woodlands"}},{"attributes":{"name":"Tina Schiller","age":63,"location":"Hartford"}},{"attributes":{"name":"Lyle Streich","age":46,"location":"Covina"}},{"attributes":{"name":"Emely Tremblay","age":32,"location":"Port Lucy"}},{"attributes":{"name":"Patsy Howell IV","age":28,"location":"Lake Gaston"}},{"attributes":{"name":"Dr. Otha Kirlin","age":59,"location":"Josephineville"}},{"attributes":{"name":"Delbert Hackett","age":37,"location":"Port Chloecester"}},{"attributes":{"name":"Gladys Volkman-Bogan","age":39,"location":"South Neil"}},{"attributes":{"name":"Deven Parker","age":72,"location":"Rocky Mount"}},{"attributes":{"name":"Theresa Lesch","age":61,"location":"Franklin"}},{"attributes":{"name":"Jeremiah Langworth","age":20,"location":"North Iva"}},{"attributes":{"name":"Joey Cremin","age":48,"location":"Kochtown"}},{"attributes":{"name":"Tami Beatty","age":57,"location":"North Rocky"}},{"attributes":{"name":"Max Legros Sr.","age":71,"location":"Whitemouth"}},{"attributes":{"name":"Marcia Herman","age":54,"location":"South Judgecester"}},{"attributes":{"name":"Sonja Pacocha","age":42,"location":"Greeley"}},{"attributes":{"name":"Ervin Macejkovic","age":34,"location":"Catonsville"}},{"attributes":{"name":"Salvador Shields","age":54,"location":"Lake Riley"}},{"attributes":{"name":"Cedric Gleichner","age":22,"location":"Padbergland"}},{"attributes":{"name":"Gilberto Farrell","age":30,"location":"Deancester"}},{"attributes":{"name":"Duane Rolfson II","age":75,"location":"North Pearlmouth"}},{"attributes":{"name":"Alice Rice","age":80,"location":"Bernieworth"}},{"attributes":{"name":"Dexter Will","age":48,"location":"West Haven"}},{"attributes":{"name":"Arch Wiegand","age":52,"location":"Hermanville"}},{"attributes":{"name":"Dr. Kassandra Hartmann","age":39,"location":"Sunrise Manor"}},{"attributes":{"name":"Victor Cremin","age":72,"location":"Kerlukeberg"}},{"attributes":{"name":"Charlotte Corkery MD","age":24,"location":"Fort Joesph"}},{"attributes":{"name":"Miss Bessie Sanford","age":57,"location":"Bartonshire"}},{"attributes":{"name":"Vincent West-Towne","age":79,"location":"Nitzscheshire"}},{"attributes":{"name":"Lempi O'Connell","age":46,"location":"Bloomington"}},{"attributes":{"name":"Tad Simonis","age":70,"location":"Fort Thora"}},{"attributes":{"name":"Lillie Kunze III","age":64,"location":"Gibsonstad"}},{"attributes":{"name":"Mavis Beatty","age":25,"location":"Port Hoytberg"}},{"attributes":{"name":"Brook Dickinson","age":26,"location":"Durganton"}},{"attributes":{"name":"Jim Kris","age":70,"location":"Olsonfort"}},{"attributes":{"name":"Miss Beth Harber","age":78,"location":"Janeworth"}},{"attributes":{"name":"Jodi Cormier","age":31,"location":"South Gate"}},{"attributes":{"name":"Marian Tillman","age":32,"location":"Fort Albin"}},{"attributes":{"name":"Antonia Schumm","age":56,"location":"West Terrellberg"}},{"attributes":{"name":"Jo Pacocha Sr.","age":18,"location":"Millsmouth"}},{"attributes":{"name":"Hilda Ryan","age":69,"location":"Chesterfield"}},{"attributes":{"name":"Mr. Modesta Treutel","age":63,"location":"Fort Xavierborough"}},{"attributes":{"name":"Mr. Alfred Conroy-Blanda","age":76,"location":"Annettaburgh"}},{"attributes":{"name":"Joshua VonRueden","age":51,"location":"Oceaneberg"}},{"attributes":{"name":"Curtis Aufderhar","age":29,"location":"Fort Tobin"}},{"attributes":{"name":"Estelle Boyle","age":29,"location":"Murraybury"}},{"attributes":{"name":"Arely Fritsch","age":50,"location":"South Hugh"}},{"attributes":{"name":"Bryana Auer","age":58,"location":"Krajcikberg"}},{"attributes":{"name":"Ida Hayes","age":34,"location":"New Alfordside"}},{"attributes":{"name":"Zackary Sanford","age":31,"location":"Eden Prairie"}},{"attributes":{"name":"Kendra Greenholt","age":77,"location":"Bofurt"}},{"attributes":{"name":"Miss Cecilia Schaefer","age":75,"location":"Quigleychester"}},{"attributes":{"name":"Travis Dare","age":64,"location":"Cleveland"}},{"attributes":{"name":"Silvia Bradtke","age":77,"location":"Fort Jaredview"}},{"attributes":{"name":"Ms. Ginger Lang DDS","age":43,"location":"Cristberg"}},{"attributes":{"name":"Luigi Conn","age":56,"location":"Lake Darrick"}},{"attributes":{"name":"Elsie Kub","age":69,"location":"New Kareem"}},{"attributes":{"name":"Cesar Mayer","age":39,"location":"Carrollshire"}},{"attributes":{"name":"Garrett Kub","age":21,"location":"Shawnee"}},{"attributes":{"name":"Kathy Abbott","age":19,"location":"North Shanelleville"}},{"attributes":{"name":"Kristi Vandervort","age":77,"location":"North Wanda"}},{"attributes":{"name":"Murl Sporer","age":49,"location":"West Nikki"}},{"attributes":{"name":"Andres Prosacco PhD","age":25,"location":"New Maefurt"}},{"attributes":{"name":"Clifton Reichert","age":39,"location":"Reingerstead"}},{"attributes":{"name":"Willis Anderson","age":78,"location":"Blazeville"}},{"attributes":{"name":"Whitney Friesen","age":60,"location":"Rapid City"}},{"attributes":{"name":"Neoma Gibson I","age":32,"location":"Lake Hilma"}},{"attributes":{"name":"Candice Goodwin","age":18,"location":"Maurineshire"}},{"attributes":{"name":"Foster Treutel II","age":34,"location":"Kaylachester"}},{"attributes":{"name":"Lewis Rath DDS","age":61,"location":"East Finnshire"}},{"attributes":{"name":"Beau Satterfield","age":66,"location":"Kreigerhaven"}},{"attributes":{"name":"Kristy Larkin","age":34,"location":"Ernestinehaven"}},{"attributes":{"name":"Vivian Cole DVM","age":32,"location":"Lexington-Fayette"}},{"attributes":{"name":"Sandra Lubowitz","age":71,"location":"North Toyside"}},{"attributes":{"name":"Julian Moore","age":75,"location":"Mesa"}},{"attributes":{"name":"Jake Smitham DVM","age":49,"location":"Sydniecester"}},{"attributes":{"name":"Tracy Dibbert","age":73,"location":"West Stella"}},{"attributes":{"name":"Alison Stoltenberg","age":32,"location":"Mentor"}},{"attributes":{"name":"Ralph Carter","age":60,"location":"New Alexandriaborough"}},{"attributes":{"name":"Claud Cartwright","age":24,"location":"Maximilliaville"}},{"attributes":{"name":"Garett Kreiger MD","age":62,"location":"Uptonland"}},{"attributes":{"name":"Oral Swift","age":43,"location":"Fort Augustaworth"}},{"attributes":{"name":"Brant Batz III","age":64,"location":"Bel Air South"}},{"attributes":{"name":"Aubrey Bruen","age":30,"location":"New Kayleetown"}},{"attributes":{"name":"Marie Tremblay","age":48,"location":"East Leonard"}},{"attributes":{"name":"Brad Abbott","age":21,"location":"Suffolk"}},{"attributes":{"name":"Tricia Weissnat","age":24,"location":"Wisokyland"}},{"attributes":{"name":"Bruce Kuhn","age":47,"location":"Runolfsdottirland"}},{"attributes":{"name":"Marlon Thompson","age":30,"location":"West Eulahland"}},{"attributes":{"name":"Ben Ward","age":35,"location":"Carlottaview"}},{"attributes":{"name":"Tasha Krajcik","age":75,"location":"Diamond Bar"}},{"attributes":{"name":"Steven Donnelly","age":36,"location":"Centreville"}},{"attributes":{"name":"Elvira Kassulke III","age":69,"location":"Adrielstead"}},{"attributes":{"name":"Julio Strosin","age":43,"location":"North Lynnfurt"}},{"attributes":{"name":"Dustin Berge","age":36,"location":"Santa Barbara"}},{"attributes":{"name":"Francis Heathcote","age":26,"location":"South Winifred"}},{"attributes":{"name":"Keira Stiedemann","age":55,"location":"Port Jordi"}},{"attributes":{"name":"Casey Kuvalis-Friesen","age":25,"location":"South Vanceland"}},{"attributes":{"name":"Rachelle McLaughlin","age":54,"location":"North Queenie"}},{"attributes":{"name":"Jay Rath","age":71,"location":"Melodyborough"}},{"attributes":{"name":"Todd Ondricka","age":71,"location":"Klingberg"}},{"attributes":{"name":"Paulette Kunde","age":33,"location":"East Adolphuschester"}},{"attributes":{"name":"Norbert Quigley","age":80,"location":"Cartermouth"}},{"attributes":{"name":"Eliezer Stehr DVM","age":77,"location":"Sadieborough"}},{"attributes":{"name":"Levi Trantow","age":77,"location":"Jaydonhaven"}},{"attributes":{"name":"Kasandra Witting I","age":37,"location":"Weimannstad"}},{"attributes":{"name":"Johnny Gibson","age":28,"location":"Everett"}},{"attributes":{"name":"Roderick Fay","age":35,"location":"Armstrongton"}},{"attributes":{"name":"Maggie Zemlak","age":27,"location":"South Rainaport"}},{"attributes":{"name":"Gertrude Huel","age":68,"location":"Rialto"}},{"attributes":{"name":"Margaret Prohaska","age":59,"location":"New Clinton"}},{"attributes":{"name":"Gennaro Greenholt","age":67,"location":"Smithhaven"}},{"attributes":{"name":"Ezequiel Pollich","age":46,"location":"South Shaynefurt"}},{"attributes":{"name":"Rosemary Roberts","age":56,"location":"Arlington"}},{"attributes":{"name":"Rex Bogan","age":78,"location":"University"}},{"attributes":{"name":"Dr. Wilbert Boyle","age":64,"location":"Rubiefield"}},{"attributes":{"name":"Nicholas Sanford","age":49,"location":"New Helenborough"}},{"attributes":{"name":"Kamren Farrell","age":72,"location":"East Arnoldworth"}},{"attributes":{"name":"Floyd Ryan Sr.","age":36,"location":"South Justinecester"}},{"attributes":{"name":"Jeremy Towne","age":67,"location":"Walkerfield"}},{"attributes":{"name":"Jammie Ullrich","age":63,"location":"West Keanutown"}},{"attributes":{"name":"Miss Oliver Lowe","age":69,"location":"Croninfort"}},{"attributes":{"name":"Rufus Lueilwitz","age":63,"location":"Janicktown"}},{"attributes":{"name":"Chet Thiel","age":45,"location":"Savannah"}},{"attributes":{"name":"Camden Blanda","age":58,"location":"Balistreriberg"}},{"attributes":{"name":"Angel Rosenbaum","age":51,"location":"South Laury"}},{"attributes":{"name":"Jamel Gislason","age":18,"location":"Wuckertview"}},{"attributes":{"name":"Ms. Kellie Wyman-Bradtke","age":71,"location":"East Anabellemouth"}},{"attributes":{"name":"Mrs. Keaton Koepp MD","age":59,"location":"East Mac"}},{"attributes":{"name":"Mr. Jayden Heller","age":39,"location":"Elkhart"}},{"attributes":{"name":"Erling Schneider","age":56,"location":"Highlands Ranch"}},{"attributes":{"name":"Laurel Veum","age":47,"location":"Lednertown"}},{"attributes":{"name":"Billy Miller DVM","age":59,"location":"Rathchester"}},{"attributes":{"name":"Darren Beahan DDS","age":31,"location":"Fort Oda"}},{"attributes":{"name":"Angelica Satterfield","age":18,"location":"Lake Thomas"}},{"attributes":{"name":"Rashad Frami","age":29,"location":"Valdosta"}},{"attributes":{"name":"Henrietta Harber","age":68,"location":"Concord"}},{"attributes":{"name":"Dr. Mindy Koss","age":75,"location":"Priceland"}},{"attributes":{"name":"Mr. Danny Walker III","age":19,"location":"West Otilia"}},{"attributes":{"name":"Lynda Kunze","age":60,"location":"Sunrise Manor"}},{"attributes":{"name":"Beaulah Monahan","age":23,"location":"West Eveline"}},{"attributes":{"name":"Miss Fernando Bartell","age":46,"location":"Heathcoteport"}},{"attributes":{"name":"Gabriel Monahan","age":43,"location":"Greeley"}},{"attributes":{"name":"Stewart Bernier","age":37,"location":"North Chaimbury"}},{"attributes":{"name":"Grayce Mante","age":27,"location":"North Port"}},{"attributes":{"name":"Ora Johnson","age":23,"location":"Georgecester"}},{"attributes":{"name":"Iliana McDermott","age":80,"location":"Union City"}},{"attributes":{"name":"Neil Stehr","age":68,"location":"Cheektowaga"}},{"attributes":{"name":"Vesta Weissnat DVM","age":44,"location":"Lake Clair"}},{"attributes":{"name":"Rachelle Mills III","age":54,"location":"Friesenland"}},{"attributes":{"name":"Gilbert Jaskolski Sr.","age":39,"location":"Cassinbury"}},{"attributes":{"name":"Earnest Labadie","age":27,"location":"Antwonview"}},{"attributes":{"name":"Genevieve Gleason","age":51,"location":"Fort Pierce"}},{"attributes":{"name":"Mr. Kurt Lind","age":49,"location":"Ezraville"}},{"attributes":{"name":"Roosevelt Moen","age":23,"location":"Port Jeanette"}},{"attributes":{"name":"Claudia Sanford","age":31,"location":"Tayaboro"}},{"attributes":{"name":"Judson Gorczany","age":22,"location":"Lednercester"}},{"attributes":{"name":"Teri Batz Jr.","age":73,"location":"Leesburg"}},{"attributes":{"name":"Rafael Bechtelar","age":77,"location":"Wilson"}},{"attributes":{"name":"Mrs. Harvey Graham","age":39,"location":"Binsborough"}},{"attributes":{"name":"Emily Goodwin-Okuneva V","age":43,"location":"East Carmelo"}},{"attributes":{"name":"Ruth Roob","age":57,"location":"West Noah"}},{"attributes":{"name":"Veronica Abbott-Pfannerstill","age":46,"location":"New Jacquelyn"}},{"attributes":{"name":"Donald Stracke V","age":50,"location":"Clifton"}},{"attributes":{"name":"Dr. Marshall Berge","age":70,"location":"Lake Eleanoraburgh"}},{"attributes":{"name":"Mr. Kirk Stark","age":67,"location":"East Lansing"}},{"attributes":{"name":"Alfred Runolfsson","age":21,"location":"East Geovanni"}},{"attributes":{"name":"Gail Waelchi V","age":40,"location":"Olsonstad"}},{"attributes":{"name":"Ms. Tom Hermann-West","age":30,"location":"West Aurelie"}},{"attributes":{"name":"Gladys Berge","age":36,"location":"Urbana"}},{"attributes":{"name":"Rowena Roob Sr.","age":22,"location":"Langboro"}},{"attributes":{"name":"Diego Shields","age":24,"location":"Boston"}},{"attributes":{"name":"Teresa Carroll","age":30,"location":"East Laurineburgh"}},{"attributes":{"name":"Miss Chanelle Ryan","age":62,"location":"Lake Blancaboro"}},{"attributes":{"name":"Lilly Orn","age":78,"location":"Port Thaddeus"}},{"attributes":{"name":"Mr. Sherri Cremin","age":77,"location":"Imeldatown"}},{"attributes":{"name":"Elbert Abshire","age":28,"location":"Lake Ledacester"}},{"attributes":{"name":"Dr. Jeff Boehm","age":34,"location":"West Babylon"}},{"attributes":{"name":"Mr. Santina Price","age":31,"location":"Port Kendallview"}},{"attributes":{"name":"Skylar Lockman","age":67,"location":"Casa Grande"}},{"attributes":{"name":"Lorenzo Schowalter","age":72,"location":"Victoria"}},{"attributes":{"name":"Kara Armstrong III","age":57,"location":"Tampa"}},{"attributes":{"name":"Pamela Purdy","age":30,"location":"West Autumn"}},{"attributes":{"name":"Randolph Haley","age":23,"location":"New Chelsie"}},{"attributes":{"name":"Wilson Batz","age":39,"location":"West Shaniya"}},{"attributes":{"name":"Mrs. Phyllis Considine PhD","age":40,"location":"South Jaylinworth"}},{"attributes":{"name":"Quincy Murphy V","age":73,"location":"New Alexie"}},{"attributes":{"name":"Kallie Hilpert","age":44,"location":"New Pamela"}},{"attributes":{"name":"Tyler Nikolaus","age":60,"location":"Sawaynchester"}},{"attributes":{"name":"Misty Bartoletti","age":67,"location":"Madera"}},{"attributes":{"name":"Paula Beer","age":65,"location":"South Susan"}},{"attributes":{"name":"Dax Gutmann","age":29,"location":"Lake Lera"}},{"attributes":{"name":"Mable Corkery","age":53,"location":"Pfannerstillbury"}},{"attributes":{"name":"Jerome Rodriguez","age":24,"location":"New Keyontown"}},{"attributes":{"name":"Beulah Stark","age":37,"location":"Torphyborough"}},{"attributes":{"name":"Miss Archie Kulas","age":50,"location":"Goldnerbury"}},{"attributes":{"name":"Luz Cummings","age":28,"location":"Botsfordview"}},{"attributes":{"name":"Kelli Rutherford-Wehner","age":64,"location":"Aspen Hill"}},{"attributes":{"name":"Neal Brekke DVM","age":59,"location":"New Evertshire"}},{"attributes":{"name":"Lourdes Leuschke","age":41,"location":"Carmichael"}},{"attributes":{"name":"Elisa Bogisich","age":73,"location":"Bernierworth"}},{"attributes":{"name":"Tim Ward MD","age":36,"location":"Moline"}},{"attributes":{"name":"Jane Schuppe","age":18,"location":"New Rashawnmouth"}},{"attributes":{"name":"Jaime Goodwin","age":20,"location":"Tucson"}},{"attributes":{"name":"Raphael Graham-Hickle","age":58,"location":"Germantown"}},{"attributes":{"name":"Buster Frami","age":18,"location":"Littelchester"}},{"attributes":{"name":"Antonia Brakus-Borer","age":38,"location":"Smyrna"}},{"attributes":{"name":"Ms. Brendon Bergnaum","age":58,"location":"North Freddie"}},{"attributes":{"name":"Austyn Predovic","age":78,"location":"Schaeferton"}},{"attributes":{"name":"Jerome Daugherty-Barton","age":27,"location":"Gottliebton"}},{"attributes":{"name":"Dustin Bailey","age":69,"location":"North Lorenzaland"}},{"attributes":{"name":"Hattie Moore","age":60,"location":"San Tan Valley"}},{"attributes":{"name":"Wilson Gorczany","age":67,"location":"Middletown"}},{"attributes":{"name":"Mrs. Jana Ferry","age":48,"location":"O'Fallon"}},{"attributes":{"name":"Mr. Emma Kuhic","age":62,"location":"Schroederland"}},{"attributes":{"name":"Alberta Collier","age":72,"location":"Manteborough"}},{"attributes":{"name":"Orlando Kris","age":62,"location":"Kissimmee"}},{"attributes":{"name":"Isadore Dickens","age":30,"location":"Fort Coreneport"}},{"attributes":{"name":"Vern Marks-Rolfson","age":45,"location":"Lake Donaldton"}},{"attributes":{"name":"Danyka Ullrich","age":68,"location":"Olinborough"}},{"attributes":{"name":"Gerson Pfannerstill","age":80,"location":"South Hill"}},{"attributes":{"name":"Tommie Jacobi","age":37,"location":"Lake Leliaview"}},{"attributes":{"name":"Deborah Larkin","age":35,"location":"West Vincenza"}},{"attributes":{"name":"Monica Nolan","age":22,"location":"South Robyncester"}},{"attributes":{"name":"Johnson Waelchi","age":40,"location":"West Jerome"}},{"attributes":{"name":"Loretta Kulas","age":69,"location":"Prohaskachester"}},{"attributes":{"name":"Stanford Huels","age":63,"location":"Port Gustside"}},{"attributes":{"name":"Garrett Anderson","age":74,"location":"Saigeworth"}},{"attributes":{"name":"Haylee Fisher","age":63,"location":"West Sheldon"}},{"attributes":{"name":"Vicky Lowe","age":49,"location":"Port Randi"}},{"attributes":{"name":"Shari Kshlerin DVM","age":32,"location":"Port Declanhaven"}},{"attributes":{"name":"Jeanette Durgan","age":20,"location":"East Jalenworth"}},{"attributes":{"name":"Jerry Barton","age":61,"location":"Midwest City"}},{"attributes":{"name":"Toni Mills","age":22,"location":"Fort Nolan"}},{"attributes":{"name":"Ms. Katherine Jakubowski","age":67,"location":"Pattieland"}},{"attributes":{"name":"Mrs. Abraham Hoeger","age":77,"location":"Compton"}},{"attributes":{"name":"Camren Roob","age":76,"location":"Daijaberg"}},{"attributes":{"name":"Mr. Dennis Jones","age":41,"location":"Lake Mellie"}},{"attributes":{"name":"Chester Mayer-Cassin","age":73,"location":"Jonesboro"}},{"attributes":{"name":"Ollie Streich","age":38,"location":"Lake Elta"}},{"attributes":{"name":"Jeremy Carroll","age":39,"location":"South Domenicoboro"}},{"attributes":{"name":"Nola Zboncak","age":61,"location":"Fort Daniellabury"}},{"attributes":{"name":"Alysa Schuppe","age":71,"location":"Ann Arbor"}},{"attributes":{"name":"Beatrice Renner","age":42,"location":"East Kristoffer"}},{"attributes":{"name":"Tony Simonis","age":72,"location":"Plymouth"}},{"attributes":{"name":"Dr. Laurie Schiller","age":40,"location":"Fayborough"}},{"attributes":{"name":"Mr. Stephen Herzog","age":36,"location":"West Hartford"}},{"attributes":{"name":"Allene Herman","age":52,"location":"East Ewald"}},{"attributes":{"name":"Lee Reynolds","age":25,"location":"Eagan"}},{"attributes":{"name":"Mr. Norene Bartoletti","age":28,"location":"Clementinaworth"}},{"attributes":{"name":"Raphaelle Beier","age":79,"location":"Urbandale"}},{"attributes":{"name":"April Daniel","age":34,"location":"Newport News"}},{"attributes":{"name":"Lera Fisher","age":36,"location":"Jonesstad"}},{"attributes":{"name":"Homer Becker","age":22,"location":"Gusikowskiview"}},{"attributes":{"name":"Randal Haag","age":21,"location":"West Darienbury"}},{"attributes":{"name":"Felicia Hintz","age":60,"location":"New Bette"}},{"attributes":{"name":"Shyanne Jenkins","age":75,"location":"East Bruce"}},{"attributes":{"name":"Liliana Streich","age":76,"location":"Aufderharport"}},{"attributes":{"name":"Willie Romaguera","age":24,"location":"Okunevaville"}},{"attributes":{"name":"Hayden Langosh","age":23,"location":"Kuhlmanfurt"}},{"attributes":{"name":"Alfredo Koss","age":19,"location":"North Carissaburgh"}},{"attributes":{"name":"Dayton Senger","age":63,"location":"West Marjolaineshire"}},{"attributes":{"name":"Enrique O'Keefe","age":47,"location":"Ferrycester"}},{"attributes":{"name":"Alberta Wilkinson","age":48,"location":"Port Autumnton"}},{"attributes":{"name":"Dr. Marshall McGlynn","age":22,"location":"Robelhaven"}},{"attributes":{"name":"Dr. Linda Gulgowski","age":59,"location":"East Agnesstead"}},{"attributes":{"name":"Angel Sauer Jr.","age":62,"location":"North Estevanstead"}},{"attributes":{"name":"Toby Emmerich","age":77,"location":"Abilene"}},{"attributes":{"name":"Melody Friesen","age":18,"location":"Harlingen"}},{"attributes":{"name":"Philip Schroeder I","age":26,"location":"Port Edisonburgh"}},{"attributes":{"name":"Mr. Rigoberto Hintz","age":38,"location":"St. George"}},{"attributes":{"name":"Nina Harvey","age":30,"location":"Temple"}},{"attributes":{"name":"Bennie Schiller","age":33,"location":"Jaylenmouth"}},{"attributes":{"name":"Letha Reichel","age":74,"location":"West Karen"}},{"attributes":{"name":"Belinda Veum","age":53,"location":"Wisokyborough"}},{"attributes":{"name":"Miss Alison Bernier","age":38,"location":"Pierrecester"}},{"attributes":{"name":"Shanna Russel","age":28,"location":"Kattieport"}},{"attributes":{"name":"Leroy Swift","age":23,"location":"Montgomery"}},{"attributes":{"name":"Leslie Yost","age":25,"location":"Anacester"}},{"attributes":{"name":"Dina Murazik","age":53,"location":"Enterprise"}},{"attributes":{"name":"Ruben Mohr","age":52,"location":"New Leda"}},{"attributes":{"name":"Claude Raynor","age":43,"location":"New Bradenmouth"}},{"attributes":{"name":"Beulah Stroman","age":67,"location":"West Gildahaven"}},{"attributes":{"name":"Elijah Towne","age":20,"location":"Lake Gideon"}},{"attributes":{"name":"Terence Kilback","age":68,"location":"Lake Abdullah"}},{"attributes":{"name":"Janice Morissette V","age":22,"location":"Heavenfort"}},{"attributes":{"name":"Porter Herman","age":24,"location":"Monahanborough"}},{"attributes":{"name":"Van Harber III","age":73,"location":"North Bernadineworth"}},{"attributes":{"name":"Ike Grimes","age":65,"location":"Houstonborough"}},{"attributes":{"name":"Dr. Cecil Bins","age":67,"location":"Howellton"}},{"attributes":{"name":"Helena Shields","age":28,"location":"O'Reillyside"}},{"attributes":{"name":"Jenna Wehner III","age":43,"location":"Mortimerstad"}},{"attributes":{"name":"Mrs. Stuart Dietrich","age":33,"location":"South Janickside"}},{"attributes":{"name":"Milton Effertz","age":36,"location":"South Maeganfield"}},{"attributes":{"name":"Lee Donnelly","age":34,"location":"Macstad"}},{"attributes":{"name":"Eladio Nikolaus","age":38,"location":"Ernserstad"}},{"attributes":{"name":"Vivian West-Mertz","age":40,"location":"North Cathy"}},{"attributes":{"name":"Tiffany Daniel","age":41,"location":"Buena Park"}},{"attributes":{"name":"Gardner Heaney","age":25,"location":"Belleville"}},{"attributes":{"name":"Jackie Mitchell","age":53,"location":"Dickishire"}},{"attributes":{"name":"Justyn Murazik","age":65,"location":"Abbyworth"}},{"attributes":{"name":"Gust Skiles","age":70,"location":"Paxtonfield"}},{"attributes":{"name":"Shari Stroman","age":57,"location":"South Elvis"}},{"attributes":{"name":"Austyn Leuschke PhD","age":48,"location":"San Luis Obispo"}},{"attributes":{"name":"Martin Ratke","age":19,"location":"Port Lavern"}},{"attributes":{"name":"Rachel Moore","age":45,"location":"Port Delphiaville"}},{"attributes":{"name":"Curtis Senger","age":78,"location":"Feilville"}},{"attributes":{"name":"Tania Schimmel","age":64,"location":"West Jadechester"}},{"attributes":{"name":"Lena Bins DVM","age":20,"location":"Mervinfurt"}},{"attributes":{"name":"Letha Moore","age":55,"location":"Gutmannboro"}},{"attributes":{"name":"Casey Olson","age":57,"location":"Fort Dax"}},{"attributes":{"name":"Anastasia Murphy-Schoen","age":67,"location":"Kirstinchester"}},{"attributes":{"name":"Brent Heathcote","age":32,"location":"Krisland"}},{"attributes":{"name":"Osvaldo Bahringer","age":65,"location":"New Toby"}},{"attributes":{"name":"Emilio Ratke","age":65,"location":"New Katelynn"}},{"attributes":{"name":"Faith Feest","age":52,"location":"Fort Jamison"}},{"attributes":{"name":"Gregory Hahn","age":30,"location":"Antonettaburgh"}},{"attributes":{"name":"Bryan Yundt","age":45,"location":"Violetside"}},{"attributes":{"name":"Jessica Swaniawski","age":77,"location":"Franzmouth"}},{"attributes":{"name":"Yvonne Berge","age":24,"location":"Port Brannon"}},{"attributes":{"name":"Shelly Leuschke","age":49,"location":"Port Luetown"}},{"attributes":{"name":"Eli Kutch","age":36,"location":"Blockview"}},{"attributes":{"name":"Savanah Flatley","age":44,"location":"Alhambra"}},{"attributes":{"name":"Sidney Lind","age":44,"location":"Nehaland"}},{"attributes":{"name":"Laila Towne","age":62,"location":"South Lizzie"}},{"attributes":{"name":"Mrs. Violet Boehm","age":37,"location":"East Cletaburgh"}},{"attributes":{"name":"Kacie Hegmann I","age":73,"location":"Morarfurt"}},{"attributes":{"name":"Miss Rachael Marquardt","age":57,"location":"Ayanafurt"}},{"attributes":{"name":"Austin Skiles","age":47,"location":"West Okeyhaven"}},{"attributes":{"name":"Mr. Rusty O'Connell","age":57,"location":"Lake Lacy"}},{"attributes":{"name":"Calvin Keeling","age":23,"location":"West Willy"}},{"attributes":{"name":"Perry Fay","age":19,"location":"Tremblayside"}},{"attributes":{"name":"Melba Balistreri","age":67,"location":"Provo"}},{"attributes":{"name":"Miss Troy Kuhn","age":50,"location":"Fort Blazeshire"}},{"attributes":{"name":"Izaiah Barton","age":49,"location":"Lake Rogeliotown"}},{"attributes":{"name":"Dr. Sheri Beer","age":58,"location":"Manteborough"}},{"attributes":{"name":"Kadin Quigley","age":36,"location":"Lake Leila"}},{"attributes":{"name":"Clifton Trantow","age":55,"location":"East Ayden"}},{"attributes":{"name":"Chad Klocko I","age":63,"location":"Larsonboro"}},{"attributes":{"name":"Glenda Zulauf","age":51,"location":"Dietrichmouth"}},{"attributes":{"name":"Jaquelin Miller","age":67,"location":"Tulsa"}},{"attributes":{"name":"Carley Schuster","age":75,"location":"Germantown"}},{"attributes":{"name":"Marsha Lesch","age":46,"location":"New Emeliamouth"}},{"attributes":{"name":"Noel Strosin","age":21,"location":"Great Falls"}},{"attributes":{"name":"Clarissa Roob","age":19,"location":"Fort Kay"}},{"attributes":{"name":"Mr. Pedro Feeney DVM","age":63,"location":"Abigailfurt"}},{"attributes":{"name":"Celia Lubowitz","age":70,"location":"Connellytown"}},{"attributes":{"name":"Jessica Adams","age":43,"location":"York"}},{"attributes":{"name":"Jayda Lakin IV","age":28,"location":"Larkinland"}},{"attributes":{"name":"Electa Stark","age":21,"location":"Hassiecester"}},{"attributes":{"name":"Kayla Buckridge","age":52,"location":"La Mesa"}},{"attributes":{"name":"Cleora Ritchie","age":74,"location":"Evansville"}},{"attributes":{"name":"Miss Ashley Corkery","age":49,"location":"Prohaskaborough"}},{"attributes":{"name":"Ruben Sanford","age":58,"location":"New Tony"}},{"attributes":{"name":"Mrs. Monica Kassulke","age":76,"location":"West Stanfordfield"}},{"attributes":{"name":"Rosalie Stokes Jr.","age":79,"location":"Skilesfurt"}},{"attributes":{"name":"Jorge Luettgen","age":61,"location":"Fort Jedworth"}},{"attributes":{"name":"Diane Kuphal","age":40,"location":"North Ryanncester"}},{"attributes":{"name":"Andy Lebsack","age":24,"location":"New Mariam"}},{"attributes":{"name":"Alexa Bogisich","age":41,"location":"South Georgiana"}},{"attributes":{"name":"Cary Frami","age":42,"location":"Johnson City"}},{"attributes":{"name":"Miranda Rempel","age":51,"location":"Cliffordboro"}},{"attributes":{"name":"Vida Bins III","age":24,"location":"Elizabeth"}},{"attributes":{"name":"Ms. Noel Wyman-Cassin","age":38,"location":"Evansfort"}},{"attributes":{"name":"Kim Ankunding","age":70,"location":"North Little Rock"}},{"attributes":{"name":"Shaun Hackett","age":21,"location":"Fort Adeliaberg"}},{"attributes":{"name":"Dr. Benedict Waters","age":60,"location":"Westminster"}},{"attributes":{"name":"Dr. Hipolito Schowalter","age":33,"location":"High Point"}},{"attributes":{"name":"Hailie Mitchell","age":79,"location":"Spencershire"}},{"attributes":{"name":"Renee Abshire III","age":47,"location":"Enterprise"}},{"attributes":{"name":"Brian Dach","age":51,"location":"Chadrickland"}},{"attributes":{"name":"Esther Berge","age":29,"location":"West Aliya"}},{"attributes":{"name":"Ms. Evalyn Donnelly Jr.","age":73,"location":"Leonburgh"}},{"attributes":{"name":"Dr. Mariam Cassin","age":60,"location":"Fort Bradleychester"}},{"attributes":{"name":"Dr. Horacio Wolff","age":74,"location":"Collinsberg"}},{"attributes":{"name":"Harold Dach","age":49,"location":"West Corrineberg"}},{"attributes":{"name":"Cheryl Bradtke IV","age":49,"location":"Port Rhianna"}},{"attributes":{"name":"Christiana Strosin I","age":77,"location":"Fort Olinshire"}},{"attributes":{"name":"Rebeka Hayes","age":55,"location":"South Annamariebury"}},{"attributes":{"name":"Emil Hansen","age":34,"location":"Daughertyville"}},{"attributes":{"name":"Dominic Kozey","age":53,"location":"Kuhicside"}},{"attributes":{"name":"Ms. Wendell Lehner","age":65,"location":"Elenastad"}},{"attributes":{"name":"Drew Satterfield","age":44,"location":"Medford"}},{"attributes":{"name":"Ryann Yundt","age":28,"location":"Swiftton"}},{"attributes":{"name":"Marjory Littel","age":69,"location":"Jordoncester"}},{"attributes":{"name":"Elliott Rohan","age":74,"location":"Adelineview"}},{"attributes":{"name":"Isabell Hickle","age":23,"location":"Malachibury"}},{"attributes":{"name":"Kaitlin Gulgowski","age":21,"location":"Providenciville"}},{"attributes":{"name":"Alfred Davis-Harvey","age":77,"location":"Susanastad"}},{"attributes":{"name":"Barbara Buckridge","age":27,"location":"North Ada"}},{"attributes":{"name":"Julia Kuhlman","age":24,"location":"Robertstad"}},{"attributes":{"name":"Ronald Mitchell","age":25,"location":"Jacobiton"}},{"attributes":{"name":"Winifred Cormier Jr.","age":25,"location":"Auguststead"}},{"attributes":{"name":"Bill Rice Jr.","age":52,"location":"Turcottemouth"}},{"attributes":{"name":"Hugo Crist","age":59,"location":"Cheyannetown"}},{"attributes":{"name":"Cameron Fritsch","age":35,"location":"South Novella"}},{"attributes":{"name":"Miranda Robel","age":73,"location":"Port Kiannaport"}},{"attributes":{"name":"Pearl Legros","age":48,"location":"West Priscilla"}},{"attributes":{"name":"Emmalee Ernser","age":46,"location":"Swaniawskihaven"}},{"attributes":{"name":"Tasha Thompson","age":79,"location":"North Johannchester"}},{"attributes":{"name":"Rosario Torp","age":32,"location":"Mitchellland"}},{"attributes":{"name":"Miss Alden Ebert","age":55,"location":"New Braunfels"}},{"attributes":{"name":"Mario Gusikowski-Dooley Jr.","age":70,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Heather Langosh","age":43,"location":"Kutchhaven"}},{"attributes":{"name":"Alysha Bogisich","age":63,"location":"West Aureliaview"}},{"attributes":{"name":"Lyle Renner","age":26,"location":"Howehaven"}},{"attributes":{"name":"Johnson Harvey","age":77,"location":"Fort Rozella"}},{"attributes":{"name":"Jeannie Steuber","age":52,"location":"Tyrelworth"}},{"attributes":{"name":"Mr. Valentine Johns","age":49,"location":"East Zelma"}},{"attributes":{"name":"Helen Hane","age":79,"location":"Lake Herminia"}},{"attributes":{"name":"Bobby Raynor","age":64,"location":"Celestinefield"}},{"attributes":{"name":"Clyde Crooks","age":33,"location":"Parisianton"}},{"attributes":{"name":"Ted Reilly","age":80,"location":"Lehigh Acres"}},{"attributes":{"name":"Celia Yost","age":38,"location":"Fort Bernie"}},{"attributes":{"name":"Hector Huels","age":48,"location":"D'Amorestead"}},{"attributes":{"name":"Arturo Hirthe","age":54,"location":"Roderickview"}},{"attributes":{"name":"Miss Jedidiah Streich","age":43,"location":"Murazikshire"}},{"attributes":{"name":"Edward Jaskolski","age":19,"location":"South Simoneborough"}},{"attributes":{"name":"Heidi Lakin","age":77,"location":"Port Jordon"}},{"attributes":{"name":"Mrs. Shari Parisian","age":39,"location":"O'Reillyport"}},{"attributes":{"name":"Mark Kilback","age":68,"location":"Beermouth"}},{"attributes":{"name":"Jeanne Koss","age":45,"location":"South Larry"}},{"attributes":{"name":"Spencer MacGyver-Corkery PhD","age":72,"location":"El Dorado Hills"}},{"attributes":{"name":"Kendall Funk","age":77,"location":"West Hadley"}},{"attributes":{"name":"Inez Hettinger","age":72,"location":"Treutelberg"}},{"attributes":{"name":"Annie Dibbert","age":67,"location":"Bednarmouth"}},{"attributes":{"name":"Carla Fisher","age":73,"location":"North Sid"}},{"attributes":{"name":"Laurie Rau","age":36,"location":"Rohancester"}},{"attributes":{"name":"Makenna Wisoky","age":61,"location":"Gilbertfield"}},{"attributes":{"name":"Kellen Koch","age":33,"location":"Lake Natashafurt"}},{"attributes":{"name":"Roman Bernhard","age":54,"location":"Sengerport"}},{"attributes":{"name":"Tami Schaden","age":29,"location":"West Gussieland"}},{"attributes":{"name":"Randall Bogan","age":55,"location":"South Katherine"}},{"attributes":{"name":"Anthony Greenholt","age":24,"location":"Lake Jany"}},{"attributes":{"name":"Amanda Schaefer","age":69,"location":"East Prudence"}},{"attributes":{"name":"Shirley Leffler","age":56,"location":"Donnyshire"}},{"attributes":{"name":"Jordan Becker","age":52,"location":"Port Scarlettcester"}},{"attributes":{"name":"Bryana Stanton","age":43,"location":"Beckerborough"}},{"attributes":{"name":"Nellie McCullough","age":56,"location":"Grand Junction"}},{"attributes":{"name":"Mark Stokes","age":58,"location":"Grimestown"}},{"attributes":{"name":"Bobby Gulgowski-Krajcik","age":41,"location":"Lake Cletachester"}},{"attributes":{"name":"Oscar Dietrich","age":44,"location":"New Wavafurt"}},{"attributes":{"name":"Myrna Lehner","age":41,"location":"Manncester"}},{"attributes":{"name":"Dr. Lorenz Fahey","age":74,"location":"Port Jarretberg"}},{"attributes":{"name":"Mr. Max Marks","age":27,"location":"Jaststad"}},{"attributes":{"name":"Dr. Lucie Rogahn","age":79,"location":"East Laneborough"}},{"attributes":{"name":"Howard Hintz-Bogan","age":55,"location":"Sylvanville"}},{"attributes":{"name":"Bertha White","age":32,"location":"Phyllisberg"}},{"attributes":{"name":"Mrs. Lucy McGlynn","age":31,"location":"Wesley Chapel"}},{"attributes":{"name":"Rozella Hammes-Watsica","age":29,"location":"South Adolfobury"}},{"attributes":{"name":"Rolando Bayer","age":26,"location":"Hartmannland"}},{"attributes":{"name":"Elvira Runte","age":31,"location":"Fayetteville"}},{"attributes":{"name":"Cristal Kshlerin","age":37,"location":"Ricefield"}},{"attributes":{"name":"Tremayne Moen PhD","age":53,"location":"Davisview"}},{"attributes":{"name":"Jack Treutel IV","age":30,"location":"Emardburgh"}},{"attributes":{"name":"Gerardo Breitenberg","age":52,"location":"West Jessborough"}},{"attributes":{"name":"Nichole Howell-Haag","age":73,"location":"Lake Marguerite"}},{"attributes":{"name":"Jed Wuckert","age":56,"location":"Rockville"}},{"attributes":{"name":"Laverna Schumm","age":59,"location":"North Fernebury"}},{"attributes":{"name":"Dr. Martin Strosin","age":48,"location":"Torrance"}},{"attributes":{"name":"Annette Hahn","age":57,"location":"Catharineworth"}},{"attributes":{"name":"Ramona Schmeler","age":60,"location":"Mayertchester"}},{"attributes":{"name":"Dwayne Flatley","age":51,"location":"Gerlachstead"}},{"attributes":{"name":"Katrina Ledner","age":56,"location":"Maricopa"}},{"attributes":{"name":"Stephanie Schmitt","age":42,"location":"Fort Chazburgh"}},{"attributes":{"name":"Lamar Lynch","age":21,"location":"Jackieside"}},{"attributes":{"name":"Omer Gibson PhD","age":74,"location":"West Terry"}},{"attributes":{"name":"Elaina Skiles","age":27,"location":"Bednartown"}},{"attributes":{"name":"Kristina Wilderman","age":31,"location":"Gislasonberg"}},{"attributes":{"name":"Corrine Leannon","age":48,"location":"Rio Rancho"}},{"attributes":{"name":"Alexander Rohan","age":65,"location":"North Michael"}},{"attributes":{"name":"Ralph Stehr","age":78,"location":"Surprise"}},{"attributes":{"name":"Arnaldo Collier","age":44,"location":"South Peytonland"}},{"attributes":{"name":"Ada Shanahan","age":19,"location":"Marcusstead"}},{"attributes":{"name":"Freda Koepp V","age":54,"location":"Gayleville"}},{"attributes":{"name":"Charlene Abernathy Sr.","age":21,"location":"Yuma"}},{"attributes":{"name":"Dana Hammes","age":69,"location":"West Seneca"}},{"attributes":{"name":"Keith Bartell I","age":37,"location":"Fort Charity"}},{"attributes":{"name":"Tracy Ledner PhD","age":77,"location":"Flower Mound"}},{"attributes":{"name":"Merritt Ratke","age":54,"location":"New Theresia"}},{"attributes":{"name":"Delaney Rath","age":31,"location":"Miami Beach"}},{"attributes":{"name":"Sheldon Rau","age":23,"location":"Bryceborough"}},{"attributes":{"name":"Toni Conn","age":19,"location":"Marietta"}},{"attributes":{"name":"Jacob Oberbrunner","age":39,"location":"East Dawson"}},{"attributes":{"name":"Marshall Hagenes PhD","age":46,"location":"Metzborough"}},{"attributes":{"name":"Ruby Hayes","age":23,"location":"Port Stephanyborough"}},{"attributes":{"name":"Julie Howe","age":35,"location":"Fishers"}},{"attributes":{"name":"Danyka Harber","age":78,"location":"Lake Saige"}},{"attributes":{"name":"Ova Murphy","age":21,"location":"Boise City"}},{"attributes":{"name":"Tara Schaefer","age":20,"location":"Wisozkmouth"}},{"attributes":{"name":"Camille Hickle-Koch","age":19,"location":"New Jimmyworth"}},{"attributes":{"name":"Whitney Nitzsche","age":77,"location":"Port Tamia"}},{"attributes":{"name":"Waylon Schaden","age":44,"location":"Busterworth"}},{"attributes":{"name":"Anderson Mueller","age":18,"location":"West Savanah"}},{"attributes":{"name":"Valerie Cronin Sr.","age":30,"location":"East Aidan"}},{"attributes":{"name":"Helene Tillman","age":70,"location":"West Queentown"}},{"attributes":{"name":"Wilbert Wiegand","age":63,"location":"Woodland"}},{"attributes":{"name":"Nadine Anderson","age":51,"location":"Ankundingmouth"}},{"attributes":{"name":"Fatima O'Kon","age":21,"location":"Oberbrunnerport"}},{"attributes":{"name":"Warren Mertz","age":62,"location":"Vickieview"}},{"attributes":{"name":"Arthur Fritsch Jr.","age":58,"location":"Virginieview"}},{"attributes":{"name":"Dr. Rosalie Bashirian","age":59,"location":"Port Elmerburgh"}},{"attributes":{"name":"Allen Funk PhD","age":75,"location":"East Claude"}},{"attributes":{"name":"Jordan Kuphal","age":36,"location":"Estefaniahaven"}},{"attributes":{"name":"Delbert Gusikowski","age":29,"location":"West Leraport"}},{"attributes":{"name":"Jane Bartell","age":46,"location":"East Coltenland"}},{"attributes":{"name":"Harriet Kertzmann","age":56,"location":"Lake Alejandrin"}},{"attributes":{"name":"Geoffrey Monahan","age":77,"location":"Danbury"}},{"attributes":{"name":"Curt Wolf II","age":33,"location":"Lake Nicolasview"}},{"attributes":{"name":"Kendra Kihn","age":47,"location":"New Ansel"}},{"attributes":{"name":"Kendra Kessler","age":56,"location":"Fort Leatha"}},{"attributes":{"name":"Allen O'Hara V","age":47,"location":"East Amircester"}},{"attributes":{"name":"Ervin Conroy","age":78,"location":"Cummerataland"}},{"attributes":{"name":"Pearline Balistreri","age":28,"location":"East Milotown"}},{"attributes":{"name":"Carlie Blick","age":28,"location":"Mobile"}},{"attributes":{"name":"Eddie Rosenbaum","age":69,"location":"Izabellatown"}},{"attributes":{"name":"Vivian Altenwerth","age":19,"location":"West Abdiel"}},{"attributes":{"name":"Zoila Hackett","age":64,"location":"New Reina"}},{"attributes":{"name":"Kristy Marvin","age":42,"location":"Baumbachville"}},{"attributes":{"name":"Dr. Luisa Koch","age":44,"location":"Fort Elmer"}},{"attributes":{"name":"Angelina McLaughlin","age":40,"location":"Parkerberg"}},{"attributes":{"name":"Rylan Schinner Jr.","age":55,"location":"Ontario"}},{"attributes":{"name":"Melba Baumbach","age":31,"location":"Lake Jace"}},{"attributes":{"name":"Shane Kunde","age":49,"location":"Port Micah"}},{"attributes":{"name":"Dr. Angie Turcotte","age":67,"location":"Henryfield"}},{"attributes":{"name":"Luz Kautzer","age":30,"location":"Port Ottiliestead"}},{"attributes":{"name":"Claudia Predovic","age":18,"location":"Ashburn"}},{"attributes":{"name":"Eloise O'Conner","age":31,"location":"Destineeville"}},{"attributes":{"name":"Alfred Batz I","age":26,"location":"South Kylieside"}},{"attributes":{"name":"Clay Pfeffer","age":26,"location":"Corwinville"}},{"attributes":{"name":"Alberta Ryan","age":68,"location":"Fort Grant"}},{"attributes":{"name":"Ivan Heidenreich","age":27,"location":"Donnyshire"}},{"attributes":{"name":"Jack Pollich","age":52,"location":"Clovis"}},{"attributes":{"name":"Lorenzo Kassulke-Orn","age":76,"location":"Derrickmouth"}},{"attributes":{"name":"Chad Howell","age":33,"location":"New Billy"}},{"attributes":{"name":"Miss Trey Wehner-Weissnat","age":45,"location":"Lake Jarret"}},{"attributes":{"name":"Nelson Johnston DDS","age":61,"location":"Brakusstad"}},{"attributes":{"name":"Nadine Hagenes","age":59,"location":"Kayliehaven"}},{"attributes":{"name":"Marilyn Denesik","age":64,"location":"Mertzville"}},{"attributes":{"name":"Peggy Reynolds V","age":32,"location":"North Chanelleboro"}},{"attributes":{"name":"Camila Abshire","age":20,"location":"Hermannmouth"}},{"attributes":{"name":"Josefa Rippin","age":62,"location":"Kihnborough"}},{"attributes":{"name":"Maudie Rolfson","age":52,"location":"Fort Darleneview"}},{"attributes":{"name":"Amanda Ritchie","age":61,"location":"Lake Joaquinworth"}},{"attributes":{"name":"Allen Maggio","age":25,"location":"Rodriguezton"}},{"attributes":{"name":"Sandy Rodriguez-Abshire Jr.","age":74,"location":"Napoleonland"}},{"attributes":{"name":"Angela Rolfson","age":40,"location":"West Oranborough"}},{"attributes":{"name":"Louise Keeling","age":73,"location":"Littleshire"}},{"attributes":{"name":"King Kutch","age":46,"location":"Fort Sadyecester"}},{"attributes":{"name":"Angel Larkin","age":24,"location":"West Jena"}},{"attributes":{"name":"Valerie Yost","age":38,"location":"Pico Rivera"}},{"attributes":{"name":"Malachi Vandervort-Wolf","age":62,"location":"Akron"}},{"attributes":{"name":"Zachary Luettgen","age":37,"location":"Gerholdboro"}},{"attributes":{"name":"Cecelia Green","age":47,"location":"Feesthaven"}},{"attributes":{"name":"Byron Wuckert","age":71,"location":"Deckowport"}},{"attributes":{"name":"Thelma Harber","age":24,"location":"Wellington"}},{"attributes":{"name":"Mr. Doris Kuvalis","age":43,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Kylee Macejkovic","age":29,"location":"Gleichnerhaven"}},{"attributes":{"name":"Melody Goldner-Nicolas","age":69,"location":"Tempe"}},{"attributes":{"name":"Marvin Schneider","age":52,"location":"Port Jaymefurt"}},{"attributes":{"name":"Rick Larkin Sr.","age":44,"location":"South Zionport"}},{"attributes":{"name":"Amanda Lesch","age":58,"location":"South Lorenaboro"}},{"attributes":{"name":"Mr. Tom Daugherty","age":56,"location":"West Emma"}},{"attributes":{"name":"Ethelyn Mertz","age":19,"location":"North Obie"}},{"attributes":{"name":"Kelvin Auer","age":59,"location":"Murazikshire"}},{"attributes":{"name":"Verlie Bartell","age":64,"location":"Port Jimmieton"}},{"attributes":{"name":"Heather Toy","age":78,"location":"Tremblayberg"}},{"attributes":{"name":"Arvid Stoltenberg","age":58,"location":"Manteca"}},{"attributes":{"name":"Kareem Emard","age":55,"location":"Fort Lukas"}},{"attributes":{"name":"Miranda Franecki","age":38,"location":"Marcellestead"}},{"attributes":{"name":"Peter Dibbert Jr.","age":59,"location":"St. Paul"}},{"attributes":{"name":"Flo Cartwright","age":59,"location":"West Lupe"}},{"attributes":{"name":"Raquel Howe","age":32,"location":"North Dorian"}},{"attributes":{"name":"Kerry Heaney","age":46,"location":"Wilmington"}},{"attributes":{"name":"Houston Schneider","age":31,"location":"Port Tracy"}},{"attributes":{"name":"Mrs. Alf Stiedemann","age":27,"location":"Carolina"}},{"attributes":{"name":"Kathryn Ruecker","age":59,"location":"Ramonaboro"}},{"attributes":{"name":"Kirk Herman","age":43,"location":"East Martinastead"}},{"attributes":{"name":"Blanca Littel","age":47,"location":"Clearwater"}},{"attributes":{"name":"Mr. Stephen Stracke PhD","age":37,"location":"Kierabury"}},{"attributes":{"name":"Miss Jeanne Kozey","age":27,"location":"Louisville/Jefferson County"}},{"attributes":{"name":"Clint Boehm","age":30,"location":"East Monserratecester"}},{"attributes":{"name":"Carmelo Cruickshank","age":57,"location":"Lake Dovieburgh"}},{"attributes":{"name":"Sean Zboncak PhD","age":72,"location":"O'Fallon"}},{"attributes":{"name":"Ronny Romaguera III","age":76,"location":"North Brannon"}},{"attributes":{"name":"Greta Schulist","age":22,"location":"Anselboro"}},{"attributes":{"name":"Bill Langworth","age":28,"location":"Bernhardworth"}},{"attributes":{"name":"Bret Dibbert","age":72,"location":"Dorthashire"}},{"attributes":{"name":"Claudia Lockman-Schulist","age":37,"location":"Daughertymouth"}},{"attributes":{"name":"Filomena Donnelly IV","age":30,"location":"Iowa City"}},{"attributes":{"name":"Elsa Bednar","age":26,"location":"Funkfort"}},{"attributes":{"name":"Brennan Parisian","age":34,"location":"Hermanburgh"}},{"attributes":{"name":"Mr. Orie Daniel","age":46,"location":"Gavinchester"}},{"attributes":{"name":"Corey Bosco","age":53,"location":"Kochview"}},{"attributes":{"name":"Mrs. Mustafa Boyer","age":39,"location":"Murfreesboro"}},{"attributes":{"name":"Debra Quitzon","age":34,"location":"Allyfort"}},{"attributes":{"name":"Domenic Jenkins","age":34,"location":"Federal Way"}},{"attributes":{"name":"Melody Dach","age":25,"location":"Port Gail"}},{"attributes":{"name":"Jorge Emard DDS","age":65,"location":"Fernchester"}},{"attributes":{"name":"Joanie Kerluke","age":31,"location":"Port Emmanuel"}},{"attributes":{"name":"Levi Kunde Sr.","age":39,"location":"West Tara"}},{"attributes":{"name":"Natalie Skiles","age":25,"location":"Johnpaultown"}},{"attributes":{"name":"Darin Toy","age":69,"location":"Crooksbury"}},{"attributes":{"name":"Brett Kovacek","age":28,"location":"Kesslerburgh"}},{"attributes":{"name":"Fern Kunze","age":70,"location":"Fort Faystad"}},{"attributes":{"name":"James Konopelski","age":25,"location":"Katlynnburgh"}},{"attributes":{"name":"Jeannie Hartmann","age":70,"location":"San Rafael"}},{"attributes":{"name":"Mia Bartoletti","age":40,"location":"Port Luciouscester"}},{"attributes":{"name":"Johnnie Schmitt Jr.","age":58,"location":"West Olinworth"}},{"attributes":{"name":"Mr. Darnell Turner","age":70,"location":"Vista"}},{"attributes":{"name":"Enrique Daniel","age":72,"location":"Baumbachville"}},{"attributes":{"name":"Lyle Feest","age":48,"location":"Cummingsboro"}},{"attributes":{"name":"Terrance Kessler","age":61,"location":"North Larry"}},{"attributes":{"name":"Mayra Stokes Jr.","age":25,"location":"Griffinboro"}},{"attributes":{"name":"Pat Gutkowski","age":67,"location":"Theatown"}},{"attributes":{"name":"Brielle Larson","age":74,"location":"Caspershire"}},{"attributes":{"name":"Juana Predovic IV","age":50,"location":"Fort Timothy"}},{"attributes":{"name":"Connor Fritsch","age":71,"location":"Bergstromfort"}},{"attributes":{"name":"Laura Kunze","age":37,"location":"South Audiechester"}},{"attributes":{"name":"Dr. Corbin Rath","age":24,"location":"Kerluketown"}},{"attributes":{"name":"Mr. Alvah Kshlerin Sr.","age":78,"location":"East Georgianna"}},{"attributes":{"name":"Kathryn Kilback","age":62,"location":"West Ziontown"}},{"attributes":{"name":"Edwardo Kuhic-Volkman","age":43,"location":"Williamsonbury"}},{"attributes":{"name":"Mr. General Hahn","age":50,"location":"Weimannfort"}},{"attributes":{"name":"Maybelle Reilly","age":23,"location":"Fort Demondville"}},{"attributes":{"name":"Alyce Marquardt","age":26,"location":"West Luciusberg"}},{"attributes":{"name":"Sage White","age":66,"location":"Wizafurt"}},{"attributes":{"name":"Faith O'Reilly","age":72,"location":"Rockville"}},{"attributes":{"name":"Tressie McDermott","age":73,"location":"Green Bay"}},{"attributes":{"name":"Florence Barrows","age":64,"location":"Yostbury"}},{"attributes":{"name":"Arielle Mante","age":34,"location":"Santacester"}},{"attributes":{"name":"Miss Lisa Reynolds","age":27,"location":"Silver Spring"}},{"attributes":{"name":"Dr. Bryana Bartoletti","age":79,"location":"Lake Woodrow"}},{"attributes":{"name":"Marie Brown","age":20,"location":"La Mirada"}},{"attributes":{"name":"Abe Torphy","age":38,"location":"Purdyfurt"}},{"attributes":{"name":"Tara Schinner","age":49,"location":"North Ernestina"}},{"attributes":{"name":"Keith Aufderhar-Bernhard DDS","age":52,"location":"Wellingtontown"}},{"attributes":{"name":"Brooke Hilpert III","age":76,"location":"Reno"}},{"attributes":{"name":"Miss Angie Strosin","age":31,"location":"O'Keefeberg"}},{"attributes":{"name":"Spencer Fay","age":74,"location":"Jacksonville"}},{"attributes":{"name":"Irene Bergstrom DDS","age":69,"location":"Fredland"}},{"attributes":{"name":"Dr. Cletus Walter","age":28,"location":"West Braulio"}},{"attributes":{"name":"Ann Kunze","age":60,"location":"Lake Zanderton"}},{"attributes":{"name":"Mrs. Heidi Ward","age":25,"location":"West Amaya"}},{"attributes":{"name":"Angelo Wisozk DVM","age":78,"location":"Gorczanyborough"}},{"attributes":{"name":"Tiffany Gutkowski","age":34,"location":"East Eleanorefort"}},{"attributes":{"name":"Leo Monahan","age":33,"location":"West Alberto"}},{"attributes":{"name":"Stewart Yundt","age":73,"location":"Lakeland"}},{"attributes":{"name":"King Predovic DDS","age":67,"location":"Lake Alexandrineshire"}},{"attributes":{"name":"Ellen Mayert","age":43,"location":"Taylorsville"}},{"attributes":{"name":"Ms. Michael Quigley","age":26,"location":"Lonnyboro"}},{"attributes":{"name":"Destiney Upton","age":73,"location":"South Ludwig"}},{"attributes":{"name":"Alf Sporer","age":79,"location":"Nelsonchester"}},{"attributes":{"name":"Devin Torp","age":55,"location":"Legrosport"}},{"attributes":{"name":"Oral Baumbach","age":54,"location":"Floydside"}},{"attributes":{"name":"Lowell Thiel","age":70,"location":"Macejkovicstad"}},{"attributes":{"name":"Irene McCullough","age":27,"location":"Ondrickabury"}},{"attributes":{"name":"Don Reinger DVM","age":39,"location":"Guillermoton"}},{"attributes":{"name":"Claire Greenholt","age":22,"location":"Fort Boydfort"}},{"attributes":{"name":"Alton Tromp V","age":54,"location":"Oraside"}},{"attributes":{"name":"Lyle Zboncak DVM","age":28,"location":"O'Reillybury"}},{"attributes":{"name":"Milo Zboncak","age":79,"location":"Lake Nathanaelton"}},{"attributes":{"name":"Pierce Rutherford","age":79,"location":"Lake Junius"}},{"attributes":{"name":"Lacy Hoppe","age":56,"location":"New Elroy"}},{"attributes":{"name":"Jesse Effertz","age":27,"location":"Idaho Falls"}},{"attributes":{"name":"Mr. Chad Reichel","age":28,"location":"Kautzershire"}},{"attributes":{"name":"Mr. Kurt Anderson","age":49,"location":"East Bradford"}},{"attributes":{"name":"Miguel Parker-Blanda","age":70,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Paulette Kuhlman","age":60,"location":"Adolffurt"}},{"attributes":{"name":"Dr. Margie Lemke","age":22,"location":"Feeststead"}},{"attributes":{"name":"Eugene Lind","age":45,"location":"Port Fritz"}},{"attributes":{"name":"Louie Corwin","age":22,"location":"Fort Camilla"}},{"attributes":{"name":"Tabitha Beier Sr.","age":43,"location":"Jaleelville"}},{"attributes":{"name":"Troy Keeling","age":21,"location":"Port Eddiemouth"}},{"attributes":{"name":"Dr. John Zulauf","age":20,"location":"East Astridstad"}},{"attributes":{"name":"Dr. Concepcion Wunsch","age":65,"location":"Gulgowskiburgh"}},{"attributes":{"name":"Al Dicki-Heller","age":21,"location":"New Stephanie"}},{"attributes":{"name":"Jasmine Dibbert-Hills","age":75,"location":"McKenzieton"}},{"attributes":{"name":"Katheryn Lubowitz Sr.","age":79,"location":"Considinefield"}},{"attributes":{"name":"Ona Reichert","age":35,"location":"Parisianburgh"}},{"attributes":{"name":"Jaime Kertzmann","age":47,"location":"Lake Soniamouth"}},{"attributes":{"name":"Ms. Jammie Stokes","age":26,"location":"Claudeville"}},{"attributes":{"name":"Blake Zemlak","age":43,"location":"Cobyworth"}},{"attributes":{"name":"Ismael Cartwright","age":52,"location":"North Karaview"}},{"attributes":{"name":"Ashly Bradtke","age":57,"location":"New Maurinetown"}},{"attributes":{"name":"Carroll Moen","age":70,"location":"North Uriah"}},{"attributes":{"name":"Whitney Zemlak","age":78,"location":"New Tyreekville"}},{"attributes":{"name":"Mrs. Veronica Cartwright","age":56,"location":"Klingworth"}},{"attributes":{"name":"Elaina Muller II","age":22,"location":"Winnifredbury"}},{"attributes":{"name":"Inez Swift","age":27,"location":"Monterey Park"}},{"attributes":{"name":"Wiley Armstrong","age":48,"location":"New Eugenia"}},{"attributes":{"name":"Antonio Conn","age":47,"location":"Binsfort"}},{"attributes":{"name":"Eileen Skiles","age":75,"location":"Fort Clemens"}},{"attributes":{"name":"Armand Parker DVM","age":48,"location":"Cristburgh"}},{"attributes":{"name":"Darrel Bins","age":18,"location":"Berwyn"}},{"attributes":{"name":"Myra Franecki","age":69,"location":"Jadefurt"}},{"attributes":{"name":"Rachel Lowe","age":77,"location":"O'Konstead"}},{"attributes":{"name":"Paula Jenkins-Flatley","age":66,"location":"Samantaburgh"}},{"attributes":{"name":"Ricky Yundt","age":64,"location":"Lake Heatherborough"}},{"attributes":{"name":"Cody Murphy","age":53,"location":"South Columbus"}},{"attributes":{"name":"Doris Kemmer","age":78,"location":"Koeppborough"}},{"attributes":{"name":"Shannon Goyette","age":74,"location":"Boganside"}},{"attributes":{"name":"Arnold Feest","age":23,"location":"Alanstad"}},{"attributes":{"name":"Shayna Pfeffer","age":36,"location":"North Deonte"}},{"attributes":{"name":"Kathleen Rice","age":60,"location":"Kissimmee"}},{"attributes":{"name":"Jermain Greenholt","age":61,"location":"Port Madisen"}},{"attributes":{"name":"Mr. Herminio Weber Jr.","age":19,"location":"Funkhaven"}},{"attributes":{"name":"Beatrice Dickens","age":56,"location":"Fort Elizacester"}},{"attributes":{"name":"Scott Franey","age":33,"location":"Douglasport"}},{"attributes":{"name":"Maxwell Hoppe","age":72,"location":"Jensenburgh"}},{"attributes":{"name":"Miss Leona West","age":61,"location":"North Shayna"}},{"attributes":{"name":"Allison Beer","age":71,"location":"Murazikfield"}},{"attributes":{"name":"Miss Jaiden Prosacco","age":61,"location":"Sierraport"}},{"attributes":{"name":"Todd Lindgren","age":34,"location":"New Donald"}},{"attributes":{"name":"Mrs. Ephraim Lockman","age":40,"location":"Palm Springs"}},{"attributes":{"name":"Angel Jerde","age":18,"location":"St. Clair Shores"}},{"attributes":{"name":"Lillie Hackett","age":29,"location":"East Adonisview"}},{"attributes":{"name":"Jorge Carter","age":56,"location":"New Clarissahaven"}},{"attributes":{"name":"Ollie Considine","age":52,"location":"Rolfsonfurt"}},{"attributes":{"name":"Ken Rowe","age":33,"location":"Portland"}},{"attributes":{"name":"Jerald Satterfield","age":52,"location":"Port Tatyana"}},{"attributes":{"name":"Geneva Lueilwitz","age":55,"location":"Mattieburgh"}},{"attributes":{"name":"Mr. Jose Rempel","age":47,"location":"West Bart"}},{"attributes":{"name":"Candace Christiansen","age":20,"location":"Andersonburgh"}},{"attributes":{"name":"Iva Franey","age":27,"location":"Lynn"}},{"attributes":{"name":"Lawrence Schamberger","age":20,"location":"West Emilio"}},{"attributes":{"name":"Kerry Fay","age":64,"location":"Judyborough"}},{"attributes":{"name":"Francesca Roberts PhD","age":75,"location":"Deltona"}},{"attributes":{"name":"Sean Smitham PhD","age":69,"location":"Port Cassandre"}},{"attributes":{"name":"Johnathan Hyatt","age":59,"location":"Kertzmannton"}},{"attributes":{"name":"Timmothy Denesik","age":77,"location":"Highlands Ranch"}},{"attributes":{"name":"Mr. Britney VonRueden","age":30,"location":"North Billie"}},{"attributes":{"name":"Seth Carroll","age":64,"location":"Braunborough"}},{"attributes":{"name":"Dr. Rashad Kshlerin","age":58,"location":"West Irwinborough"}},{"attributes":{"name":"Terrance Corwin","age":50,"location":"Port Myrlmouth"}},{"attributes":{"name":"Penelope Rippin","age":25,"location":"Maybelleshire"}},{"attributes":{"name":"Otis Bednar","age":79,"location":"Port Daisy"}},{"attributes":{"name":"Rodney Purdy","age":69,"location":"Harleyborough"}},{"attributes":{"name":"Santiago Hintz PhD","age":35,"location":"Boulder"}},{"attributes":{"name":"Wesley Feest","age":54,"location":"Nadiatown"}},{"attributes":{"name":"Corene O'Kon","age":34,"location":"Donniefort"}},{"attributes":{"name":"Kent Sipes DVM","age":29,"location":"Nolantown"}},{"attributes":{"name":"Theodore Runte","age":47,"location":"Schuppeland"}},{"attributes":{"name":"Candice McDermott-McKenzie","age":66,"location":"Narcisoside"}},{"attributes":{"name":"Pansy Schroeder","age":33,"location":"Chesapeake"}},{"attributes":{"name":"Ms. Jasmine Rohan","age":74,"location":"Eliseocester"}},{"attributes":{"name":"Leslie Gottlieb","age":58,"location":"South Jeramy"}},{"attributes":{"name":"Delia Fahey","age":67,"location":"Torreyfurt"}},{"attributes":{"name":"Vella Gorczany","age":51,"location":"Deliacester"}},{"attributes":{"name":"Rogelio Corkery","age":51,"location":"Hoboken"}},{"attributes":{"name":"Alfredo Roob","age":73,"location":"Nyasiaview"}},{"attributes":{"name":"Chelsea Schroeder","age":54,"location":"Lake Brookeville"}},{"attributes":{"name":"Marguerite Bauch PhD","age":47,"location":"Santa Barbara"}},{"attributes":{"name":"Marcus Schuster","age":65,"location":"Lake Andersonchester"}},{"attributes":{"name":"Hellen Harvey","age":66,"location":"East Daijaburgh"}},{"attributes":{"name":"Harvey Champlin","age":75,"location":"Victoria"}},{"attributes":{"name":"Elaine Schimmel","age":24,"location":"East Christafield"}},{"attributes":{"name":"Heather Johnson","age":57,"location":"East Trevion"}},{"attributes":{"name":"Katheryn Borer","age":68,"location":"San Leandro"}},{"attributes":{"name":"Noah Crooks","age":52,"location":"Murraystad"}},{"attributes":{"name":"Llewellyn Keeling","age":66,"location":"Aishastead"}},{"attributes":{"name":"Ed Schuster","age":60,"location":"North Rolando"}},{"attributes":{"name":"Mr. Graham Willms IV","age":30,"location":"D'Amoreberg"}},{"attributes":{"name":"Manley Powlowski","age":59,"location":"Ankundingburgh"}},{"attributes":{"name":"Mr. Johnny Legros","age":44,"location":"Bessiehaven"}},{"attributes":{"name":"Bethany Johnson","age":65,"location":"East Jaimebury"}},{"attributes":{"name":"Judge Sanford","age":79,"location":"Brandon"}},{"attributes":{"name":"Juana Legros","age":47,"location":"Midwest City"}},{"attributes":{"name":"Sylvia Sipes","age":61,"location":"Bernardoport"}},{"attributes":{"name":"Cyrus Hessel","age":72,"location":"East Joe"}},{"attributes":{"name":"Miss Kelly Schuppe","age":79,"location":"East Madonna"}},{"attributes":{"name":"Reid Klein","age":80,"location":"Bodeburgh"}},{"attributes":{"name":"Flora Feil","age":31,"location":"Redding"}},{"attributes":{"name":"Wanda Carroll","age":62,"location":"Annamariebury"}},{"attributes":{"name":"Mrs. Cindy Satterfield","age":33,"location":"Jaidenstad"}},{"attributes":{"name":"Crystel Cormier","age":54,"location":"Macon-Bibb County"}},{"attributes":{"name":"Morris Corwin","age":73,"location":"New Britain"}},{"attributes":{"name":"Charley Haley MD","age":22,"location":"Jersey City"}},{"attributes":{"name":"Zoila Stracke","age":80,"location":"Maggieworth"}},{"attributes":{"name":"Zoie Ernser","age":44,"location":"Schambergerstead"}},{"attributes":{"name":"Irvin Paucek","age":61,"location":"San Jacinto"}},{"attributes":{"name":"Mr. Rick Lowe","age":32,"location":"Candidoton"}},{"attributes":{"name":"Marguerite Rice","age":62,"location":"Makenzieworth"}},{"attributes":{"name":"Einar Kerluke","age":46,"location":"Lindseyhaven"}},{"attributes":{"name":"Madisyn Murray","age":61,"location":"Torrance"}},{"attributes":{"name":"Ms. Marilyn Torp","age":73,"location":"Redondo Beach"}},{"attributes":{"name":"Antonia Dicki","age":54,"location":"Fort Reannastead"}},{"attributes":{"name":"Miss Stewart Ankunding","age":49,"location":"Lake Margretworth"}},{"attributes":{"name":"Cody Hermann II","age":30,"location":"Vonville"}},{"attributes":{"name":"Bridie Dooley","age":27,"location":"Roweland"}},{"attributes":{"name":"Laila Bode","age":42,"location":"Gagecester"}},{"attributes":{"name":"Bennie Flatley","age":18,"location":"Maximillianstead"}},{"attributes":{"name":"Lora Marquardt","age":38,"location":"New Judd"}},{"attributes":{"name":"Corey Schinner","age":25,"location":"Federal Way"}},{"attributes":{"name":"Terrance Gorczany","age":36,"location":"South Layla"}},{"attributes":{"name":"Kody Lowe","age":60,"location":"East Honolulu"}},{"attributes":{"name":"Bert Stoltenberg","age":26,"location":"New Macie"}},{"attributes":{"name":"Cornelius Anderson","age":37,"location":"South Rosiecester"}},{"attributes":{"name":"Maxwell Lueilwitz","age":57,"location":"Welchcester"}},{"attributes":{"name":"Edmund Wuckert","age":79,"location":"West Dorianview"}},{"attributes":{"name":"Melany Daniel","age":75,"location":"South Colbyberg"}},{"attributes":{"name":"Thelma Bergstrom","age":45,"location":"New Darlene"}},{"attributes":{"name":"Howard Herzog","age":52,"location":"Port Jordy"}},{"attributes":{"name":"Colin Luettgen","age":43,"location":"Arvillafort"}},{"attributes":{"name":"Patricia Romaguera DVM","age":45,"location":"North Medaton"}},{"attributes":{"name":"Zoie Altenwerth","age":32,"location":"Berkeley"}},{"attributes":{"name":"Damon Farrell","age":19,"location":"Dickiland"}},{"attributes":{"name":"Dana Emmerich","age":50,"location":"Gradyport"}},{"attributes":{"name":"Darren Wilderman V","age":44,"location":"Princeland"}},{"attributes":{"name":"Domenico Block III","age":69,"location":"New Alexieboro"}},{"attributes":{"name":"Marlon Lehner","age":66,"location":"North Lillyworth"}},{"attributes":{"name":"Mr. Maeve Donnelly","age":22,"location":"North Rylan"}},{"attributes":{"name":"Mariela Jaskolski","age":40,"location":"Grahamstad"}},{"attributes":{"name":"Imani Bednar","age":53,"location":"Wilkinsonstead"}},{"attributes":{"name":"Sterling Mitchell Jr.","age":35,"location":"Kovacekville"}},{"attributes":{"name":"Jackie Bechtelar","age":50,"location":"Abdielton"}},{"attributes":{"name":"Regina Schowalter","age":65,"location":"Scottsdale"}},{"attributes":{"name":"Everett Krajcik","age":56,"location":"Hiramfort"}},{"attributes":{"name":"Abdul Thompson","age":65,"location":"Rowlandworth"}},{"attributes":{"name":"Charles Willms","age":35,"location":"Port Charlotte"}},{"attributes":{"name":"Douglas Rippin","age":30,"location":"Hermanside"}},{"attributes":{"name":"Earnest Frami","age":60,"location":"Mckaylaton"}},{"attributes":{"name":"Jaron Collier","age":27,"location":"South Laura"}},{"attributes":{"name":"Heather Schneider","age":67,"location":"New Erniebury"}},{"attributes":{"name":"Trinity Steuber","age":53,"location":"Lednerville"}},{"attributes":{"name":"Oscar Lindgren","age":33,"location":"South Miltonside"}},{"attributes":{"name":"Dixie Hyatt","age":20,"location":"Lake Clydeport"}},{"attributes":{"name":"Anika Considine","age":33,"location":"North Jailyn"}},{"attributes":{"name":"Guy Nolan III","age":36,"location":"Terryworth"}},{"attributes":{"name":"Susan Hegmann","age":53,"location":"Norfolk"}},{"attributes":{"name":"Viola Marquardt","age":64,"location":"Heathcotemouth"}},{"attributes":{"name":"Dr. Vena Kuhic","age":57,"location":"North Cristian"}},{"attributes":{"name":"Molly Watsica","age":28,"location":"Orland Park"}},{"attributes":{"name":"Earline Kautzer","age":73,"location":"North Flossieberg"}},{"attributes":{"name":"Tommy Towne","age":21,"location":"Flaviostead"}},{"attributes":{"name":"Vaughn Durgan","age":24,"location":"Fort Franz"}},{"attributes":{"name":"Mr. Bennie Price","age":57,"location":"Ratkestead"}},{"attributes":{"name":"Cheyenne Brown","age":73,"location":"Weberside"}},{"attributes":{"name":"Gennaro Rice","age":33,"location":"Franeckistad"}},{"attributes":{"name":"Aracely Hauck","age":48,"location":"Fort Aaliyahbury"}},{"attributes":{"name":"Blanche Dickinson","age":18,"location":"Easterborough"}},{"attributes":{"name":"Nikolas Walsh","age":43,"location":"New Lessieville"}},{"attributes":{"name":"Chester Jones","age":28,"location":"South Carlosville"}},{"attributes":{"name":"Rudy Mohr","age":32,"location":"Lake Martymouth"}},{"attributes":{"name":"Ima Veum","age":18,"location":"Esmeraldaland"}},{"attributes":{"name":"Billie Cole","age":61,"location":"Strosintown"}},{"attributes":{"name":"Alexander Davis","age":78,"location":"Hillschester"}},{"attributes":{"name":"Evie Padberg-Grant","age":41,"location":"Schambergerport"}},{"attributes":{"name":"Harmon Ritchie","age":69,"location":"West Emelieshire"}},{"attributes":{"name":"Adrienne Bruen DDS","age":53,"location":"Schimmelfort"}},{"attributes":{"name":"Henri Wisozk","age":65,"location":"South Etha"}},{"attributes":{"name":"Isai O'Connell","age":52,"location":"Cletusworth"}},{"attributes":{"name":"Roy Renner","age":28,"location":"New Marcelinoville"}},{"attributes":{"name":"Caroline Dooley","age":52,"location":"Rosamondstead"}},{"attributes":{"name":"Elena Gerhold","age":26,"location":"Lake Rhea"}},{"attributes":{"name":"Sarah Hahn","age":72,"location":"Port Janfield"}},{"attributes":{"name":"Beth Farrell","age":58,"location":"Connellyfort"}},{"attributes":{"name":"Winifred Carroll","age":76,"location":"New Pearlineshire"}},{"attributes":{"name":"Rose Koepp","age":62,"location":"Port Rebeccaborough"}},{"attributes":{"name":"Vivian Glover","age":69,"location":"Boehmboro"}},{"attributes":{"name":"June Bashirian","age":45,"location":"Fort Maceyton"}},{"attributes":{"name":"Derek Rodriguez I","age":44,"location":"New Saul"}},{"attributes":{"name":"Christina Christiansen","age":20,"location":"Conroyboro"}},{"attributes":{"name":"Claire Tremblay","age":19,"location":"South Ebba"}},{"attributes":{"name":"Vanessa Leuschke","age":56,"location":"Martyland"}},{"attributes":{"name":"Muriel Jacobi","age":25,"location":"Lake Elvis"}},{"attributes":{"name":"Clayton Kessler I","age":46,"location":"West Lucienneside"}},{"attributes":{"name":"Tricia Hahn","age":67,"location":"Monahanhaven"}},{"attributes":{"name":"Janet Lakin","age":26,"location":"Collierville"}},{"attributes":{"name":"Dr. Allison Kreiger","age":46,"location":"East Doug"}},{"attributes":{"name":"Hoyt Wisoky Sr.","age":38,"location":"New Athena"}},{"attributes":{"name":"Boris Conroy","age":74,"location":"Moenton"}},{"attributes":{"name":"Sylvester Lehner","age":36,"location":"West Allis"}},{"attributes":{"name":"Krista Bergnaum","age":36,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Danielle Nolan","age":76,"location":"Stokeshaven"}},{"attributes":{"name":"Brad Lesch","age":31,"location":"St. Louis Park"}},{"attributes":{"name":"Andres White","age":66,"location":"Bakersfield"}},{"attributes":{"name":"Rolando Runte II","age":47,"location":"Martahaven"}},{"attributes":{"name":"Pablo Harvey","age":28,"location":"Bergstromstead"}},{"attributes":{"name":"Jeremy Reichel DDS","age":25,"location":"East Lamar"}},{"attributes":{"name":"Joan Breitenberg","age":32,"location":"South Valliechester"}},{"attributes":{"name":"Cathy Gerlach","age":25,"location":"Walkerberg"}},{"attributes":{"name":"Lester Fisher","age":28,"location":"Green Bay"}},{"attributes":{"name":"Maryann Wuckert","age":46,"location":"North Shanie"}},{"attributes":{"name":"Emory Sawayn","age":58,"location":"Freedafort"}},{"attributes":{"name":"Mrs. Clarissa Herzog","age":23,"location":"Oscarhaven"}},{"attributes":{"name":"Donald Macejkovic","age":75,"location":"Port Kaela"}},{"attributes":{"name":"Mr. Edward Rolfson","age":37,"location":"North Jocelynbury"}},{"attributes":{"name":"Janice Beer III","age":56,"location":"Port Jadon"}},{"attributes":{"name":"Samantha Prohaska","age":20,"location":"DeKalb"}},{"attributes":{"name":"Jolie Padberg","age":72,"location":"Herminioside"}},{"attributes":{"name":"Mario Paucek","age":29,"location":"Norwalk"}},{"attributes":{"name":"Josefa Farrell III","age":44,"location":"Maybury"}},{"attributes":{"name":"Jairo Windler III","age":32,"location":"Port Arlene"}},{"attributes":{"name":"Tad Becker II","age":52,"location":"Dothan"}},{"attributes":{"name":"Naomi Runte","age":31,"location":"Gislasonland"}},{"attributes":{"name":"Mrs. Jeanette Smitham","age":71,"location":"Boca Raton"}},{"attributes":{"name":"Alex Mayer","age":25,"location":"Johanfield"}},{"attributes":{"name":"Ervin Sipes","age":31,"location":"Bernierboro"}},{"attributes":{"name":"Charlotte Kovacek","age":35,"location":"New Alana"}},{"attributes":{"name":"Julie Greenholt","age":42,"location":"Kshlerinstad"}},{"attributes":{"name":"Cindy Boyle","age":57,"location":"Champlinhaven"}},{"attributes":{"name":"Jesse Ruecker","age":37,"location":"Hettingerchester"}},{"attributes":{"name":"Ozella Klocko","age":36,"location":"East Rosalindastad"}},{"attributes":{"name":"Bessie Schiller","age":25,"location":"Fort Mathildeton"}},{"attributes":{"name":"Brent Davis-Schmeler IV","age":79,"location":"Fort Antoneport"}},{"attributes":{"name":"Krystal Wyman","age":72,"location":"Elizabeth"}},{"attributes":{"name":"Patrick Carroll MD","age":28,"location":"Ericacester"}},{"attributes":{"name":"Devin Padberg","age":48,"location":"Bradleyfurt"}},{"attributes":{"name":"Barbara Spencer","age":55,"location":"Dietrichton"}},{"attributes":{"name":"Karlee Schumm","age":72,"location":"Anastaciofield"}},{"attributes":{"name":"Jack Doyle","age":67,"location":"Strosinborough"}},{"attributes":{"name":"Salvador Buckridge","age":64,"location":"East Emerson"}},{"attributes":{"name":"Dominic Ullrich","age":32,"location":"North Delbertcester"}},{"attributes":{"name":"Enrique Dare","age":77,"location":"Citrus Heights"}},{"attributes":{"name":"Casper Blanda","age":45,"location":"Alexaneworth"}},{"attributes":{"name":"Lori Gutmann II","age":77,"location":"North Mollyfurt"}},{"attributes":{"name":"Julien Schowalter","age":24,"location":"Lake Arelyhaven"}},{"attributes":{"name":"Sidney Smitham","age":59,"location":"Kallieview"}},{"attributes":{"name":"Patricia Fay","age":37,"location":"Billycester"}},{"attributes":{"name":"Martin Jakubowski","age":78,"location":"Fort Brandoberg"}},{"attributes":{"name":"Felipa Gusikowski","age":21,"location":"New Justicefort"}},{"attributes":{"name":"Tasha Lesch","age":27,"location":"Liaworth"}},{"attributes":{"name":"Franklin Adams","age":22,"location":"Fort Mikeport"}},{"attributes":{"name":"Gordon Ziemann IV","age":44,"location":"Coral Gables"}},{"attributes":{"name":"Mckenna Wilderman","age":53,"location":"DeKalb"}},{"attributes":{"name":"Mr. Georgette Walter Jr.","age":18,"location":"Kshlerinport"}},{"attributes":{"name":"Agustin Hilll","age":50,"location":"Schulistport"}},{"attributes":{"name":"Lindsay Hamill","age":53,"location":"South Melisa"}},{"attributes":{"name":"Margaret Streich","age":61,"location":"Lake Drake"}},{"attributes":{"name":"Emanuel Nader","age":38,"location":"Port Wilmerboro"}},{"attributes":{"name":"Christina Larson","age":21,"location":"Fort Trinitytown"}},{"attributes":{"name":"Richard Lowe","age":24,"location":"Trudieland"}},{"attributes":{"name":"Dwayne Walter","age":80,"location":"Fort Ahmedville"}},{"attributes":{"name":"Adam Volkman","age":77,"location":"Lake Narciso"}},{"attributes":{"name":"Dr. Andreanne Morar","age":29,"location":"Angelicatown"}},{"attributes":{"name":"Meredith Kertzmann","age":34,"location":"Kirlinboro"}},{"attributes":{"name":"Rosalie Hickle","age":22,"location":"Town 'n' Country"}},{"attributes":{"name":"Jared Krajcik","age":70,"location":"West Winstonview"}},{"attributes":{"name":"Ross Langosh PhD","age":39,"location":"Boynton Beach"}},{"attributes":{"name":"Mrs. Pamela Block","age":79,"location":"Downey"}},{"attributes":{"name":"Magdalena Raynor","age":77,"location":"Altenwerthcester"}},{"attributes":{"name":"Ian Koss","age":57,"location":"Predovicfort"}},{"attributes":{"name":"Antwan Abernathy","age":79,"location":"League City"}},{"attributes":{"name":"Lauriane Hand","age":22,"location":"Fort Karianefort"}},{"attributes":{"name":"Assunta Murphy","age":27,"location":"Halvorsonburgh"}},{"attributes":{"name":"Jessie Senger PhD","age":43,"location":"Lake Stoneview"}},{"attributes":{"name":"Inez Greenfelder","age":78,"location":"Port Jacklynchester"}},{"attributes":{"name":"Boyd Gleason Jr.","age":32,"location":"Tamarac"}},{"attributes":{"name":"Asa Deckow","age":48,"location":"New Martine"}},{"attributes":{"name":"Bernard Hagenes","age":61,"location":"Connorfort"}},{"attributes":{"name":"Jana Larson","age":77,"location":"Fort Valentinfort"}},{"attributes":{"name":"Fidel Gutkowski","age":54,"location":"New Evertstad"}},{"attributes":{"name":"Lindsey Crona","age":50,"location":"New Darioshire"}},{"attributes":{"name":"Ms. Kristofer Turcotte","age":26,"location":"New Torrey"}},{"attributes":{"name":"Trudie Kshlerin","age":35,"location":"Alyssonburgh"}},{"attributes":{"name":"Garrison Sawayn DDS","age":25,"location":"New Cleve"}},{"attributes":{"name":"Dr. Juan Schaefer","age":80,"location":"Brauncester"}},{"attributes":{"name":"Maureen Zulauf","age":55,"location":"Lempichester"}},{"attributes":{"name":"Dr. Elaine Rippin","age":30,"location":"East Justyn"}},{"attributes":{"name":"Dion Bechtelar","age":44,"location":"Stoltenbergview"}},{"attributes":{"name":"Ms. Joan Littel","age":76,"location":"North Liamcester"}},{"attributes":{"name":"Dr. Marcia Cormier","age":47,"location":"South Jakayla"}},{"attributes":{"name":"Jared Dare","age":29,"location":"North Peytonberg"}},{"attributes":{"name":"Evan Kuhic","age":46,"location":"Lake Alysa"}},{"attributes":{"name":"Alexie Hintz","age":62,"location":"Bashirianport"}},{"attributes":{"name":"Curtis Klein","age":32,"location":"Handworth"}},{"attributes":{"name":"Beatrice Koelpin","age":45,"location":"Port Theohaven"}},{"attributes":{"name":"Felipe Schuppe","age":29,"location":"Clemmiestead"}},{"attributes":{"name":"Corrine Raynor","age":42,"location":"Hirtheville"}},{"attributes":{"name":"Mattie Marvin PhD","age":22,"location":"Pollichboro"}},{"attributes":{"name":"Kayden Koch","age":34,"location":"Darrickview"}},{"attributes":{"name":"Lexie Christiansen","age":19,"location":"Tyrellfield"}},{"attributes":{"name":"Geoffrey Reichel","age":38,"location":"Port Georgianna"}},{"attributes":{"name":"Caroline Barrows","age":46,"location":"Blaine"}},{"attributes":{"name":"Doyle Wilderman","age":69,"location":"Hansenberg"}},{"attributes":{"name":"Jermaine Balistreri","age":37,"location":"Lake Eric"}},{"attributes":{"name":"Lorena Lynch","age":34,"location":"Fort Luz"}},{"attributes":{"name":"Melba Waelchi","age":42,"location":"Baltimore"}},{"attributes":{"name":"Marty Corkery","age":47,"location":"Bel Air South"}},{"attributes":{"name":"Mamie Cormier","age":60,"location":"Savionview"}},{"attributes":{"name":"Vella Ryan","age":79,"location":"Lake Breanne"}},{"attributes":{"name":"Athena Nitzsche","age":60,"location":"New Timmyshire"}},{"attributes":{"name":"Kirsten Corwin","age":22,"location":"Ornchester"}},{"attributes":{"name":"Nichole Johns","age":49,"location":"Waelchichester"}},{"attributes":{"name":"Roy Lowe","age":30,"location":"Silasburgh"}},{"attributes":{"name":"Aleen Lehner","age":30,"location":"Berneiceboro"}},{"attributes":{"name":"Clara Heathcote","age":59,"location":"Lake Rolando"}},{"attributes":{"name":"Luigi Heidenreich","age":33,"location":"East Osbaldo"}},{"attributes":{"name":"Gene Bogan","age":62,"location":"Mozelleboro"}},{"attributes":{"name":"Jeannie Cartwright Jr.","age":37,"location":"Raynorstead"}},{"attributes":{"name":"Lori Howe","age":63,"location":"Sayreville"}},{"attributes":{"name":"Darren Lakin","age":70,"location":"Port Alannaborough"}},{"attributes":{"name":"Kimberly Green","age":62,"location":"Fort Annetta"}},{"attributes":{"name":"Dr. Laura Murazik","age":45,"location":"West Mohamed"}},{"attributes":{"name":"Angelina McGlynn PhD","age":72,"location":"Lake Gregorioport"}},{"attributes":{"name":"Faith Jast","age":70,"location":"North Yoshiko"}},{"attributes":{"name":"Clark Feeney-Ernser","age":36,"location":"Missouri City"}},{"attributes":{"name":"Kamille Sawayn","age":74,"location":"Ortizborough"}},{"attributes":{"name":"Iliana Luettgen","age":41,"location":"Port Madelinechester"}},{"attributes":{"name":"Jodi Sauer","age":26,"location":"Fort Lonnyview"}},{"attributes":{"name":"Bethany West","age":38,"location":"South Daishabury"}},{"attributes":{"name":"Allison Langworth","age":62,"location":"South Goldenside"}},{"attributes":{"name":"Mr. Zoey Berge","age":37,"location":"Lake Kariannemouth"}},{"attributes":{"name":"Nakia Jacobi DDS","age":41,"location":"Coltenton"}},{"attributes":{"name":"Sarai Wisozk","age":29,"location":"Upland"}},{"attributes":{"name":"Daryl Wintheiser","age":44,"location":"Sengerview"}},{"attributes":{"name":"Dr. Irma Berge","age":25,"location":"Port Kaleigh"}},{"attributes":{"name":"Pamela Carter","age":46,"location":"West Ernest"}},{"attributes":{"name":"Alden Bins","age":52,"location":"Kertzmannside"}},{"attributes":{"name":"Miguel Runolfsson","age":27,"location":"Morissettestead"}},{"attributes":{"name":"Mrs. Tabitha Jaskolski","age":27,"location":"Lake Dustin"}},{"attributes":{"name":"Ernesto Murphy","age":46,"location":"North Elizabeth"}},{"attributes":{"name":"Juana Breitenberg","age":29,"location":"Lake Whitney"}},{"attributes":{"name":"Jensen Cummings","age":73,"location":"East Florencioworth"}},{"attributes":{"name":"Dr. Dallas Beatty I","age":19,"location":"Fort Seamus"}},{"attributes":{"name":"Nathen Skiles","age":49,"location":"McAllen"}},{"attributes":{"name":"Anya Schaden","age":32,"location":"Fort Mable"}},{"attributes":{"name":"Dedrick Klein","age":65,"location":"West Cristina"}},{"attributes":{"name":"Darrell Cormier","age":50,"location":"Santa Clara"}},{"attributes":{"name":"Pedro Bode I","age":49,"location":"North Jonathan"}},{"attributes":{"name":"Ruthe Dach III","age":78,"location":"West Melany"}},{"attributes":{"name":"Ida Hahn","age":21,"location":"New Constantinbury"}},{"attributes":{"name":"Charlene Ruecker IV","age":69,"location":"South Bryonworth"}},{"attributes":{"name":"Brenda Rice","age":19,"location":"Clearwater"}},{"attributes":{"name":"Newton D'Amore","age":59,"location":"North Jadenstead"}},{"attributes":{"name":"Dr. Johanna Will","age":72,"location":"Bodecester"}},{"attributes":{"name":"Muriel Vandervort","age":77,"location":"North Kristinafurt"}},{"attributes":{"name":"Mrs. Princess Kihn","age":34,"location":"Naderstad"}},{"attributes":{"name":"Santiago Bayer","age":56,"location":"Vergiestead"}},{"attributes":{"name":"Stewart Emard","age":79,"location":"Anderson"}},{"attributes":{"name":"Alexandro Howell-Buckridge","age":68,"location":"Camden"}},{"attributes":{"name":"Stefanie Streich","age":57,"location":"Otiliaburgh"}},{"attributes":{"name":"Miss Arthur Durgan DDS","age":69,"location":"Burnsville"}},{"attributes":{"name":"Mark Bode","age":51,"location":"East Jovanhaven"}},{"attributes":{"name":"Cameron O'Keefe","age":55,"location":"Fort Bonnieton"}},{"attributes":{"name":"Dr. Dorian Hermiston","age":37,"location":"Jonesboro"}},{"attributes":{"name":"Keegan Thompson","age":25,"location":"Port Madgestead"}},{"attributes":{"name":"Alyson Emard","age":29,"location":"Tillmanton"}},{"attributes":{"name":"Merle Conn","age":75,"location":"Waterbury"}},{"attributes":{"name":"Elena Simonis","age":26,"location":"Pouroshaven"}},{"attributes":{"name":"Christian Thiel","age":50,"location":"New Alexandrea"}},{"attributes":{"name":"Cecilia Dare","age":79,"location":"Hudsonmouth"}},{"attributes":{"name":"Aaron Yundt","age":22,"location":"Efrenstad"}},{"attributes":{"name":"Ira Crooks","age":43,"location":"Lefflerport"}},{"attributes":{"name":"Jenny Treutel","age":70,"location":"Crystelcester"}},{"attributes":{"name":"Jeff Wyman","age":63,"location":"West Mireillechester"}},{"attributes":{"name":"Hillary Hilll Jr.","age":71,"location":"Lake Amy"}},{"attributes":{"name":"Karen Hamill","age":37,"location":"Minnetonka"}},{"attributes":{"name":"Shelia Keebler","age":34,"location":"Mylesbury"}},{"attributes":{"name":"Rahsaan Nader Jr.","age":74,"location":"Fort Johnsoncester"}},{"attributes":{"name":"Verna Gottlieb-Heaney","age":78,"location":"Broomfield"}},{"attributes":{"name":"Brain Douglas","age":26,"location":"Collinstown"}},{"attributes":{"name":"Shad Bayer","age":67,"location":"Santa Ana"}},{"attributes":{"name":"Ariane Friesen II","age":39,"location":"Lake Avery"}},{"attributes":{"name":"Tyrique Friesen","age":30,"location":"Ferrystead"}},{"attributes":{"name":"Lee Hamill-Schmeler","age":25,"location":"Pine Hills"}},{"attributes":{"name":"Brett Heidenreich","age":64,"location":"Legrosstead"}},{"attributes":{"name":"Gretchen Streich","age":79,"location":"Lake Cierrafurt"}},{"attributes":{"name":"Mohammad Kunde","age":40,"location":"Lake Doug"}},{"attributes":{"name":"Rhiannon Bogan","age":46,"location":"Mesquite"}},{"attributes":{"name":"Marvin Hammes","age":67,"location":"Redmond"}},{"attributes":{"name":"Lesley Bergstrom","age":53,"location":"Russelview"}},{"attributes":{"name":"Oren Hermann Sr.","age":76,"location":"Avabury"}},{"attributes":{"name":"Jerome Morissette","age":27,"location":"South Bernice"}},{"attributes":{"name":"Alanis Pfannerstill","age":66,"location":"East Providence"}},{"attributes":{"name":"Veronica Hodkiewicz","age":28,"location":"Parisiancester"}},{"attributes":{"name":"Sister Nikolaus-Heidenreich","age":53,"location":"Pearlton"}},{"attributes":{"name":"Roy Koss","age":36,"location":"Herminioberg"}},{"attributes":{"name":"Shirley Farrell","age":76,"location":"East Tessie"}},{"attributes":{"name":"Dana Gleichner","age":20,"location":"Irvine"}},{"attributes":{"name":"Jacinto Labadie","age":46,"location":"East Orlandfurt"}},{"attributes":{"name":"Bobbie Boyer PhD","age":29,"location":"North Rahulton"}},{"attributes":{"name":"Dr. Elnora Schuster","age":22,"location":"Imaniside"}},{"attributes":{"name":"Nancy Ferry","age":80,"location":"East Jenningsstead"}},{"attributes":{"name":"Caleb Blanda","age":54,"location":"West Efrain"}},{"attributes":{"name":"Brittany Rowe","age":65,"location":"Tyler"}},{"attributes":{"name":"Noble Schroeder","age":58,"location":"Allen"}},{"attributes":{"name":"Mrs. Haley Hahn","age":46,"location":"Amberchester"}},{"attributes":{"name":"Mrs. Ella Ritchie I","age":52,"location":"Port Jacksonbury"}},{"attributes":{"name":"Oren Runte","age":42,"location":"Koelpinton"}},{"attributes":{"name":"Larissa Haag","age":67,"location":"North Lorenzostead"}},{"attributes":{"name":"Mr. Lena Boyer","age":26,"location":"Duncanmouth"}},{"attributes":{"name":"Anderson Okuneva","age":36,"location":"Jerryville"}},{"attributes":{"name":"Annie Kerluke","age":80,"location":"Elijahberg"}},{"attributes":{"name":"Douglas Kilback","age":79,"location":"Laurianneworth"}},{"attributes":{"name":"Ernesto Greenholt-Buckridge II","age":55,"location":"Gibsonview"}},{"attributes":{"name":"Kurt Gerhold","age":31,"location":"West Katheryn"}},{"attributes":{"name":"Andrew Leffler","age":21,"location":"South Jaysonbury"}},{"attributes":{"name":"Marianna Morissette","age":27,"location":"West Mack"}},{"attributes":{"name":"Manuel Kulas","age":48,"location":"North Hallieshire"}},{"attributes":{"name":"Miller Von","age":42,"location":"North Lydiaview"}},{"attributes":{"name":"Juana Haley","age":20,"location":"West Valley City"}},{"attributes":{"name":"Norval Little-Roob","age":27,"location":"Walshstead"}},{"attributes":{"name":"Shanel Schmitt","age":65,"location":"Coleport"}},{"attributes":{"name":"Margaret Cole","age":70,"location":"Fort Myrachester"}},{"attributes":{"name":"Jared Langworth","age":69,"location":"South Lessieland"}},{"attributes":{"name":"Darrin Bogan","age":27,"location":"Towneburgh"}},{"attributes":{"name":"Krystal Frami-Cronin","age":71,"location":"Georgetown"}},{"attributes":{"name":"Mozell Champlin","age":66,"location":"Cartwrightport"}},{"attributes":{"name":"Krista Hane","age":67,"location":"Hyattstead"}},{"attributes":{"name":"Miss Rosalind Jacobi","age":23,"location":"Pollichstead"}},{"attributes":{"name":"Amely Strosin","age":71,"location":"Effiemouth"}},{"attributes":{"name":"Leanne Weber","age":63,"location":"Susietown"}},{"attributes":{"name":"Armando Huel","age":62,"location":"West Fleta"}},{"attributes":{"name":"Francisca Hane DVM","age":29,"location":"Ullrichport"}},{"attributes":{"name":"Dessie Thompson","age":29,"location":"Terryland"}},{"attributes":{"name":"Betsy Medhurst","age":21,"location":"Cleofield"}},{"attributes":{"name":"Margaret Schamberger","age":34,"location":"Port Emeraldland"}},{"attributes":{"name":"Ruby Heller I","age":30,"location":"Wardside"}},{"attributes":{"name":"Jeff Jacobs","age":62,"location":"Montebello"}},{"attributes":{"name":"Providenci Rutherford","age":72,"location":"Southaven"}},{"attributes":{"name":"Chet Greenfelder","age":35,"location":"West Jordan"}},{"attributes":{"name":"Cesar Spinka","age":21,"location":"Sheboygan"}},{"attributes":{"name":"Mark Heaney","age":51,"location":"Port Tyreeview"}},{"attributes":{"name":"Frank Lebsack","age":59,"location":"Lancestead"}},{"attributes":{"name":"Ms. Robin Reichert-Conn","age":48,"location":"Catonsville"}},{"attributes":{"name":"Sophie Rau","age":68,"location":"Schummshire"}},{"attributes":{"name":"Watson Stamm","age":19,"location":"West Babylon"}},{"attributes":{"name":"Maximo Koelpin","age":41,"location":"Fort Ray"}},{"attributes":{"name":"Madison Bosco","age":33,"location":"Lake Solon"}},{"attributes":{"name":"Roger Quigley","age":33,"location":"Hoegerboro"}},{"attributes":{"name":"Hershel Crona","age":19,"location":"Coral Gables"}},{"attributes":{"name":"Ruben Cremin","age":34,"location":"West Ezequiel"}},{"attributes":{"name":"Eleanor Roob","age":34,"location":"Willardstad"}},{"attributes":{"name":"Louisa Runolfsdottir","age":79,"location":"Tinafort"}},{"attributes":{"name":"Ms. Grace Armstrong","age":48,"location":"Kaitlinshire"}},{"attributes":{"name":"Lynda Mohr","age":66,"location":"Weymouth Town"}},{"attributes":{"name":"Jeanne Roberts Sr.","age":35,"location":"Fayetteville"}},{"attributes":{"name":"Brandi Brekke","age":32,"location":"Corwinchester"}},{"attributes":{"name":"Miss Selmer Reichel","age":78,"location":"West Reillybury"}},{"attributes":{"name":"Santiago Wyman","age":30,"location":"Donnyfurt"}},{"attributes":{"name":"Abel Klein-Bernhard","age":65,"location":"Missoula"}},{"attributes":{"name":"Loren Yundt-Murazik","age":39,"location":"Fort Mallory"}},{"attributes":{"name":"Bo Ledner","age":18,"location":"Wisozkstad"}},{"attributes":{"name":"Leticia Deckow III","age":57,"location":"Moore"}},{"attributes":{"name":"Mr. Della Kozey-Boyle DVM","age":52,"location":"East Ramon"}},{"attributes":{"name":"Kelley Paucek","age":44,"location":"West Merle"}},{"attributes":{"name":"Jody Brekke-Braun","age":78,"location":"West Annaliseboro"}},{"attributes":{"name":"Garrett Mraz","age":59,"location":"Rennerworth"}},{"attributes":{"name":"Celia Schaefer","age":62,"location":"Lehnertown"}},{"attributes":{"name":"Dwayne Stanton","age":78,"location":"Cathrineborough"}},{"attributes":{"name":"Carmine Walker","age":43,"location":"Port Elliott"}},{"attributes":{"name":"Abel Bernhard","age":46,"location":"Fort Ewald"}},{"attributes":{"name":"Fannie Franecki","age":80,"location":"New Lawrence"}},{"attributes":{"name":"Paige Barrows","age":40,"location":"Raeganfurt"}},{"attributes":{"name":"Schuyler Nitzsche","age":60,"location":"Fall River"}},{"attributes":{"name":"Rhonda Leuschke","age":49,"location":"Longmont"}},{"attributes":{"name":"Jacklyn Maggio","age":25,"location":"North Natashaberg"}},{"attributes":{"name":"Vernon Will Sr.","age":25,"location":"Harrisonfurt"}},{"attributes":{"name":"Dana Schimmel","age":62,"location":"Lake Pattiestead"}},{"attributes":{"name":"Ms. Renee Wiza","age":61,"location":"West Kylestead"}},{"attributes":{"name":"Natalie Treutel PhD","age":52,"location":"Friedaside"}},{"attributes":{"name":"Mrs. Orlo VonRueden","age":46,"location":"Kaiafield"}},{"attributes":{"name":"Lee Kuhn-Cassin","age":56,"location":"St. George"}},{"attributes":{"name":"Mrs. Pauline Connelly Jr.","age":31,"location":"North Rhea"}},{"attributes":{"name":"Frances Gleason DVM","age":57,"location":"Lake Wendyworth"}},{"attributes":{"name":"Ross Klein","age":33,"location":"Devenport"}},{"attributes":{"name":"Althea Champlin DDS","age":43,"location":"Marianestad"}},{"attributes":{"name":"Mr. Anais Rogahn","age":34,"location":"Handborough"}},{"attributes":{"name":"Morris Yost","age":46,"location":"Mayertton"}},{"attributes":{"name":"Jeramy Nikolaus PhD","age":39,"location":"Jarvisboro"}},{"attributes":{"name":"Christopher Grant","age":25,"location":"Strosinview"}},{"attributes":{"name":"Benjamin Wolf","age":59,"location":"Pfannerstillstead"}},{"attributes":{"name":"Alice Carter","age":23,"location":"New Anaisworth"}},{"attributes":{"name":"Jeff Spencer","age":20,"location":"New Howardville"}},{"attributes":{"name":"Molly Hammes","age":26,"location":"Karsonland"}},{"attributes":{"name":"Macie Morar","age":74,"location":"Carmelland"}},{"attributes":{"name":"Michael Mann","age":47,"location":"Buffalo"}},{"attributes":{"name":"Angelo Schaefer","age":54,"location":"East Sigurdbury"}},{"attributes":{"name":"Mr. Ernesto Lesch MD","age":57,"location":"Ottiliefort"}},{"attributes":{"name":"Cristopher Stiedemann Sr.","age":77,"location":"New Madelyn"}},{"attributes":{"name":"Tracy Hayes","age":27,"location":"Fort Jeanneworth"}},{"attributes":{"name":"Santiago Fahey","age":41,"location":"Lake Kayleeland"}},{"attributes":{"name":"Birdie Friesen","age":77,"location":"Parkerboro"}},{"attributes":{"name":"Nicholas Ankunding","age":36,"location":"Rodriguezfield"}},{"attributes":{"name":"Jaylin Rogahn","age":38,"location":"Furmanworth"}},{"attributes":{"name":"Faith Gusikowski","age":57,"location":"Rutherfordton"}},{"attributes":{"name":"Melissa Emard","age":51,"location":"Predovicfort"}},{"attributes":{"name":"Augustine Braun-Thiel","age":51,"location":"Ocala"}},{"attributes":{"name":"Marion Koch","age":31,"location":"West Jordan"}},{"attributes":{"name":"Willis Kautzer","age":47,"location":"North Adeliabury"}},{"attributes":{"name":"Marc Lueilwitz","age":51,"location":"Lake Mitcheltown"}},{"attributes":{"name":"Ruth Kerluke Jr.","age":26,"location":"Brekkeville"}},{"attributes":{"name":"Louis Collins","age":44,"location":"Cremintown"}},{"attributes":{"name":"Chester Bahringer-Nitzsche","age":69,"location":"Jaquanport"}},{"attributes":{"name":"Adalberto Goldner","age":30,"location":"Joesphbury"}},{"attributes":{"name":"Mrs. Daphne Legros","age":73,"location":"Lake Damionville"}},{"attributes":{"name":"Lucia Brown","age":21,"location":"Marjorieshire"}},{"attributes":{"name":"Eleanor Leannon","age":18,"location":"West Adellahaven"}},{"attributes":{"name":"Dave Bartell","age":24,"location":"Fort Jackie"}},{"attributes":{"name":"Eric Mraz","age":19,"location":"Padbergton"}},{"attributes":{"name":"Harriet Rowe","age":46,"location":"New Reynold"}},{"attributes":{"name":"Haylie Vandervort","age":70,"location":"Casperstad"}},{"attributes":{"name":"Luke Bahringer IV","age":54,"location":"Port Justynland"}},{"attributes":{"name":"Felix Schuster","age":62,"location":"North D'angeloton"}},{"attributes":{"name":"Chasity Collier","age":48,"location":"West Ashlystead"}},{"attributes":{"name":"Naomi Kuhic","age":36,"location":"Elizabeth"}},{"attributes":{"name":"Mrs. Suzanne Feeney","age":58,"location":"Aspen Hill"}},{"attributes":{"name":"Antonio Romaguera","age":40,"location":"Port Alyshafort"}},{"attributes":{"name":"Grace Botsford","age":67,"location":"East Lafayetteton"}},{"attributes":{"name":"Dr. Glenn Bruen","age":79,"location":"New Missouri"}},{"attributes":{"name":"Mr. Laverna Sporer","age":51,"location":"West Guy"}},{"attributes":{"name":"Sherman West III","age":72,"location":"New Mervinborough"}},{"attributes":{"name":"Stacey Cremin DVM","age":38,"location":"Ericacester"}},{"attributes":{"name":"Jason Pfeffer","age":42,"location":"Nathanaelport"}},{"attributes":{"name":"Vicki Hartmann","age":43,"location":"Clementineview"}},{"attributes":{"name":"Dr. Marietta Jast DDS","age":50,"location":"East Reilly"}},{"attributes":{"name":"Jaleel Hauck","age":39,"location":"Monroe"}},{"attributes":{"name":"Ocie Morissette","age":42,"location":"North Arvilla"}},{"attributes":{"name":"Vidal Fahey DVM","age":45,"location":"Ezequielhaven"}},{"attributes":{"name":"Johanna Keeling","age":68,"location":"Ritchiestead"}},{"attributes":{"name":"Maxime Weissnat DVM","age":34,"location":"West Allis"}},{"attributes":{"name":"Shaylee Dicki","age":77,"location":"South Marysefurt"}},{"attributes":{"name":"Dean Shanahan","age":45,"location":"Jonathanhaven"}},{"attributes":{"name":"Edmund VonRueden","age":22,"location":"Lake Corene"}},{"attributes":{"name":"Ernest Wiegand","age":62,"location":"Danville"}},{"attributes":{"name":"Cielo Pfeffer Sr.","age":58,"location":"West Chelsie"}},{"attributes":{"name":"Irving Mohr","age":30,"location":"South Arely"}},{"attributes":{"name":"Timmy Frami","age":45,"location":"Lake Gwendolyn"}},{"attributes":{"name":"Mr. Alfred Yundt","age":46,"location":"Fritschburgh"}},{"attributes":{"name":"Mrs. Alma Moore","age":32,"location":"Steuberport"}},{"attributes":{"name":"Jamey Emard","age":20,"location":"Fort Laurianne"}},{"attributes":{"name":"Dr. Ada Considine","age":50,"location":"South Mohammed"}},{"attributes":{"name":"Mrs. Deshawn Sanford","age":54,"location":"Fosterbury"}},{"attributes":{"name":"Rollin Kozey","age":33,"location":"Highland"}},{"attributes":{"name":"Kirk Lynch-Durgan","age":27,"location":"Lake Otisfield"}},{"attributes":{"name":"Libbie Bogan","age":33,"location":"North Jaylin"}},{"attributes":{"name":"Chelsea Brakus","age":34,"location":"East Alphonsofort"}},{"attributes":{"name":"Shannon Bashirian","age":34,"location":"Stewartport"}},{"attributes":{"name":"Giles Connelly","age":19,"location":"Lake Elda"}},{"attributes":{"name":"Lucia Schmeler","age":37,"location":"Lynchworth"}},{"attributes":{"name":"Lawrence Powlowski","age":67,"location":"Port Mariettashire"}},{"attributes":{"name":"Rubye Casper","age":60,"location":"Sporerstad"}},{"attributes":{"name":"Dr. Horacio Kulas","age":25,"location":"Fort Julius"}},{"attributes":{"name":"Katharina Cormier","age":50,"location":"Jaidenport"}},{"attributes":{"name":"Vinnie Gleason Sr.","age":37,"location":"Walnut Creek"}},{"attributes":{"name":"Irving Towne II","age":69,"location":"Trantowfurt"}},{"attributes":{"name":"Miss Florencio Schumm","age":26,"location":"New Diegoside"}},{"attributes":{"name":"Dr. Shane Strosin","age":21,"location":"West Lewiston"}},{"attributes":{"name":"Mary Gorczany","age":23,"location":"Lorenafort"}},{"attributes":{"name":"Estelle Kautzer","age":18,"location":"Port Mallie"}},{"attributes":{"name":"Catherine Brown","age":54,"location":"Fort Lafayette"}},{"attributes":{"name":"Tami Doyle","age":38,"location":"South Rickie"}},{"attributes":{"name":"Kitty Mann PhD","age":27,"location":"Cranston"}},{"attributes":{"name":"Casey Hagenes","age":56,"location":"Elianeshire"}},{"attributes":{"name":"Jeanne Keebler","age":22,"location":"Port St. Lucie"}},{"attributes":{"name":"Susan Swift","age":70,"location":"Oralland"}},{"attributes":{"name":"Kelly Hudson","age":41,"location":"Uptonland"}},{"attributes":{"name":"Tiffany Conroy","age":47,"location":"Emardmouth"}},{"attributes":{"name":"Bell Hayes","age":61,"location":"Lacyport"}},{"attributes":{"name":"Faye Douglas","age":62,"location":"Port Frankburgh"}},{"attributes":{"name":"Sandra Kunde","age":20,"location":"Lynchton"}},{"attributes":{"name":"Howard Fahey","age":33,"location":"Silver Spring"}},{"attributes":{"name":"Winifred Berge","age":55,"location":"Port Lucio"}},{"attributes":{"name":"Ira Kerluke III","age":68,"location":"Kuhlmanchester"}},{"attributes":{"name":"Vicki Gutmann","age":57,"location":"The Woodlands"}},{"attributes":{"name":"Jacques Dibbert","age":75,"location":"Davenport"}},{"attributes":{"name":"Roselyn Kling Jr.","age":76,"location":"Fort Anissaworth"}},{"attributes":{"name":"Mr. Angelita Windler","age":23,"location":"Fort Gerdafort"}},{"attributes":{"name":"Dr. Saul Ritchie","age":65,"location":"New Braunfels"}},{"attributes":{"name":"Precious Hartmann","age":23,"location":"Jenkinsfurt"}},{"attributes":{"name":"Andrew O'Reilly","age":77,"location":"North Bethany"}},{"attributes":{"name":"Hope Franey","age":48,"location":"South Gerald"}},{"attributes":{"name":"Mr. Ramiro Denesik","age":44,"location":"Matildefort"}},{"attributes":{"name":"Nathan Paucek","age":62,"location":"Boyerfurt"}},{"attributes":{"name":"Carlton Fisher","age":60,"location":"Eloyhaven"}},{"attributes":{"name":"Rosemarie Kuhlman","age":39,"location":"Lake Frederic"}},{"attributes":{"name":"Myra Cole","age":52,"location":"East Wallaceberg"}},{"attributes":{"name":"Beatrice Armstrong","age":22,"location":"Lake Edwardostead"}},{"attributes":{"name":"Mrs. Maurine Leannon","age":61,"location":"East Rachelle"}},{"attributes":{"name":"Yasmin Roberts IV","age":54,"location":"South Loma"}},{"attributes":{"name":"Karianne Rippin","age":47,"location":"Champlinside"}},{"attributes":{"name":"Shelley Barton","age":27,"location":"Mishawaka"}},{"attributes":{"name":"Destin Conroy","age":45,"location":"Kansas City"}},{"attributes":{"name":"Miss Edgardo Cruickshank","age":35,"location":"East Frieda"}},{"attributes":{"name":"Sidney Stanton","age":79,"location":"Jedidiahshire"}},{"attributes":{"name":"Jared Gorczany","age":39,"location":"Utica"}},{"attributes":{"name":"Ferne Pfannerstill","age":34,"location":"Grand Junction"}},{"attributes":{"name":"Edmond Flatley V","age":64,"location":"Gwenfield"}},{"attributes":{"name":"Shirley Durgan DVM","age":42,"location":"Murazikmouth"}},{"attributes":{"name":"Aubrey Goodwin","age":66,"location":"Upland"}},{"attributes":{"name":"Lindsey Boehm","age":67,"location":"Darrionland"}},{"attributes":{"name":"Amina Beer","age":78,"location":"North Ashleechester"}},{"attributes":{"name":"Tricia Waters","age":26,"location":"Framitown"}},{"attributes":{"name":"Terrance Ortiz","age":27,"location":"Murray"}},{"attributes":{"name":"Grant Murphy","age":33,"location":"New Dellview"}},{"attributes":{"name":"Kara Hintz","age":50,"location":"West Brianneburgh"}},{"attributes":{"name":"Rachael Feest","age":41,"location":"Ellicott City"}},{"attributes":{"name":"Evelyn Muller","age":21,"location":"Delray Beach"}},{"attributes":{"name":"Cyril Quigley","age":26,"location":"Kirlinburgh"}},{"attributes":{"name":"Gus O'Conner","age":59,"location":"North Jamey"}},{"attributes":{"name":"Kathy Grimes","age":23,"location":"East Eden"}},{"attributes":{"name":"Magali Marquardt","age":73,"location":"Vadachester"}},{"attributes":{"name":"Samuel Wolf","age":61,"location":"Javonview"}},{"attributes":{"name":"Lori Osinski-Rosenbaum","age":50,"location":"Fort Smith"}},{"attributes":{"name":"Lindsay Smith","age":55,"location":"South Annetown"}},{"attributes":{"name":"Roger O'Conner","age":30,"location":"Ignatiusberg"}},{"attributes":{"name":"Howard Ziemann","age":34,"location":"Cedar Rapids"}},{"attributes":{"name":"Damian Rath","age":63,"location":"Port Brady"}},{"attributes":{"name":"Sheryl Sporer","age":28,"location":"New Gildahaven"}},{"attributes":{"name":"Dayana Nicolas","age":56,"location":"Garland"}},{"attributes":{"name":"Victoria Torp","age":45,"location":"Windlerchester"}},{"attributes":{"name":"Mabel Mraz Jr.","age":79,"location":"New Drew"}},{"attributes":{"name":"Douglas Herman","age":55,"location":"Connellyshire"}},{"attributes":{"name":"Miss Gladys Borer","age":61,"location":"Quigleyport"}},{"attributes":{"name":"Briana Thiel Jr.","age":77,"location":"Reillyville"}},{"attributes":{"name":"Lance Deckow","age":40,"location":"Pacochafurt"}},{"attributes":{"name":"Joanny Schmeler PhD","age":49,"location":"Palmastead"}},{"attributes":{"name":"Jeremie Lueilwitz-Howell","age":39,"location":"Fort Layne"}},{"attributes":{"name":"Arnold Weber","age":67,"location":"East Morganberg"}},{"attributes":{"name":"Nancy Lockman","age":27,"location":"East Melba"}},{"attributes":{"name":"Clifton Weimann","age":61,"location":"Lake Deionhaven"}},{"attributes":{"name":"Marlene Tromp","age":26,"location":"Legrosland"}},{"attributes":{"name":"Kennedy Schaefer","age":28,"location":"Titusfort"}},{"attributes":{"name":"Diana Hodkiewicz Sr.","age":21,"location":"South Annamaestad"}},{"attributes":{"name":"Charlotte Homenick","age":40,"location":"Porterville"}},{"attributes":{"name":"Ms. Katharina Ullrich","age":64,"location":"North Mike"}},{"attributes":{"name":"Amanda Mosciski","age":52,"location":"Thurmanboro"}},{"attributes":{"name":"Edgar Schmitt","age":80,"location":"New Caroline"}},{"attributes":{"name":"Michael Price","age":41,"location":"North Paytonfort"}},{"attributes":{"name":"Rita Blick","age":22,"location":"Logan"}},{"attributes":{"name":"Nathen Simonis","age":18,"location":"Port Brannonfurt"}},{"attributes":{"name":"Dane Rutherford","age":38,"location":"Wuckertville"}},{"attributes":{"name":"Miss Felicia Keebler","age":52,"location":"Pleasanton"}},{"attributes":{"name":"Maryse Powlowski IV","age":63,"location":"North Llewellynview"}},{"attributes":{"name":"Jody Brekke","age":46,"location":"Frederick"}},{"attributes":{"name":"Emanuel Macejkovic","age":48,"location":"Rio Rancho"}},{"attributes":{"name":"Marcellus Hettinger","age":20,"location":"Wuckerthaven"}},{"attributes":{"name":"Spencer King","age":54,"location":"Greenville"}},{"attributes":{"name":"Marcia Lowe","age":62,"location":"Narcisoburgh"}},{"attributes":{"name":"Humberto Lakin","age":55,"location":"Tuscaloosa"}},{"attributes":{"name":"Breana Harris","age":63,"location":"Joburgh"}},{"attributes":{"name":"Annie Schuppe","age":79,"location":"Fort Mackenziefurt"}},{"attributes":{"name":"Alf Swift","age":25,"location":"Maricopa"}},{"attributes":{"name":"Casimer Miller","age":43,"location":"Port Dorothy"}},{"attributes":{"name":"Eli Hamill","age":22,"location":"Raymondfurt"}},{"attributes":{"name":"Ilene Koelpin-Nolan","age":62,"location":"East Caleigh"}},{"attributes":{"name":"Mazie Streich","age":25,"location":"North Nicolette"}},{"attributes":{"name":"Norwood Lesch","age":61,"location":"Guidofurt"}},{"attributes":{"name":"Isadore Huel","age":64,"location":"Bayamon"}},{"attributes":{"name":"Mckayla Friesen","age":47,"location":"Fort Justice"}},{"attributes":{"name":"Dr. Luther Harber","age":64,"location":"Fort Quincy"}},{"attributes":{"name":"Franco Bins","age":36,"location":"West Joycechester"}},{"attributes":{"name":"Inez Howell","age":30,"location":"Devanteton"}},{"attributes":{"name":"Joaquin Fahey-Greenholt","age":40,"location":"Port Alessia"}},{"attributes":{"name":"Chaim Schowalter","age":40,"location":"Hanefurt"}},{"attributes":{"name":"Alicia Christiansen","age":77,"location":"East Kaia"}},{"attributes":{"name":"Kay Wintheiser","age":74,"location":"East Bennie"}},{"attributes":{"name":"Theodore Reilly","age":72,"location":"Rickieport"}},{"attributes":{"name":"Elsie Turner","age":68,"location":"Abbottside"}},{"attributes":{"name":"Dave Bosco","age":18,"location":"Fort Kaylee"}},{"attributes":{"name":"Mr. Darryl Gislason","age":48,"location":"Skilesborough"}},{"attributes":{"name":"George Altenwerth","age":70,"location":"Pittsfield"}},{"attributes":{"name":"Art Bosco","age":55,"location":"Lake Faustoton"}},{"attributes":{"name":"Heather Kuvalis","age":74,"location":"West Kaya"}},{"attributes":{"name":"Alberta Sawayn Jr.","age":22,"location":"Albaboro"}},{"attributes":{"name":"Wilbur Howe","age":55,"location":"New Percy"}},{"attributes":{"name":"Miss Jany Mills","age":51,"location":"St. Paul"}},{"attributes":{"name":"Miss Deborah Considine II","age":37,"location":"Loveland"}},{"attributes":{"name":"Neoma Pfeffer","age":21,"location":"Encinitas"}},{"attributes":{"name":"Aileen Wintheiser","age":56,"location":"Modesto"}},{"attributes":{"name":"Grace Emard","age":28,"location":"Port Freddy"}},{"attributes":{"name":"Kristina Lueilwitz","age":29,"location":"Largo"}},{"attributes":{"name":"Brent Stark","age":64,"location":"Rogahnborough"}},{"attributes":{"name":"Price Auer","age":23,"location":"East Johathanberg"}},{"attributes":{"name":"Pam Marks","age":29,"location":"West Horace"}},{"attributes":{"name":"Colin Wisoky","age":69,"location":"Fort Lois"}},{"attributes":{"name":"Brandyn Lindgren","age":31,"location":"South Bend"}},{"attributes":{"name":"Jonas Rolfson","age":43,"location":"Lake Nyasia"}},{"attributes":{"name":"Guillermo Barrows-Casper","age":65,"location":"Lehigh Acres"}},{"attributes":{"name":"Ignatius Lebsack","age":32,"location":"East Ressiemouth"}},{"attributes":{"name":"Paxton Johnston","age":62,"location":"Elmhurst"}},{"attributes":{"name":"Shane Barrows","age":76,"location":"Biankaworth"}},{"attributes":{"name":"Vicki Padberg","age":65,"location":"Bend"}},{"attributes":{"name":"Jorge Hackett","age":37,"location":"Kemmerberg"}},{"attributes":{"name":"Mr. Adriana Hoeger","age":75,"location":"Aliso Viejo"}},{"attributes":{"name":"Lane Monahan","age":52,"location":"New Antoninatown"}},{"attributes":{"name":"Leif Howell","age":62,"location":"Georgetteport"}},{"attributes":{"name":"Lucia McLaughlin","age":45,"location":"St. Petersburg"}},{"attributes":{"name":"Maria Sanford","age":71,"location":"Port Earlene"}},{"attributes":{"name":"Noel Auer","age":30,"location":"Destinyton"}},{"attributes":{"name":"Alverta Murray","age":35,"location":"Clementinefurt"}},{"attributes":{"name":"Bridget Parker","age":27,"location":"Boehmberg"}},{"attributes":{"name":"Waylon Schneider","age":65,"location":"Predovicport"}},{"attributes":{"name":"Neal O'Reilly","age":51,"location":"Boscofurt"}},{"attributes":{"name":"Tabitha Koch","age":57,"location":"Lake Feltoncester"}},{"attributes":{"name":"Noah Gutmann","age":54,"location":"Lake Isaacville"}},{"attributes":{"name":"Ezra Predovic","age":21,"location":"Rowenachester"}},{"attributes":{"name":"Miss Frieda Langworth","age":59,"location":"Port Virginiaberg"}},{"attributes":{"name":"Jermaine Dicki","age":68,"location":"Alhambra"}},{"attributes":{"name":"Israel Ullrich","age":47,"location":"Gunnarport"}},{"attributes":{"name":"Ms. David Simonis","age":24,"location":"Spokane Valley"}},{"attributes":{"name":"Tiffany Hermann V","age":23,"location":"Toms River"}},{"attributes":{"name":"Jeanie Haag","age":31,"location":"Darrellborough"}},{"attributes":{"name":"Ramiro Conn","age":22,"location":"Southaven"}},{"attributes":{"name":"Jeffery Jones","age":71,"location":"East Diannacester"}},{"attributes":{"name":"Leslie Klein","age":51,"location":"North Christy"}},{"attributes":{"name":"Elbert Turner","age":32,"location":"Salinas"}},{"attributes":{"name":"Mr. Herminia Emmerich","age":69,"location":"Lake Elizabethbury"}},{"attributes":{"name":"Queenie Quigley","age":45,"location":"Port Lurlinehaven"}},{"attributes":{"name":"Roberta Dach","age":28,"location":"New Valentinastead"}},{"attributes":{"name":"Erica Durgan","age":65,"location":"East Leilani"}},{"attributes":{"name":"Claudia Shanahan","age":39,"location":"South Keegan"}},{"attributes":{"name":"Jasmine Ward","age":72,"location":"Bednarport"}},{"attributes":{"name":"Nina Franey-Wyman","age":75,"location":"Lake Otisfield"}},{"attributes":{"name":"Rachael Gerhold","age":36,"location":"Santa Cruz"}},{"attributes":{"name":"Marshall Rogahn DDS","age":75,"location":"New Jarred"}},{"attributes":{"name":"Melyssa Stoltenberg","age":24,"location":"Midwest City"}},{"attributes":{"name":"Miss Hollie Reynolds-Feeney DVM","age":56,"location":"Fort Bartfurt"}},{"attributes":{"name":"Ada Bogisich","age":77,"location":"Palm Harbor"}},{"attributes":{"name":"Roosevelt Rice","age":39,"location":"East Donavonstead"}},{"attributes":{"name":"Anthony Christiansen","age":25,"location":"Bennettfort"}},{"attributes":{"name":"Jeanette Keeling","age":52,"location":"Hauckstead"}},{"attributes":{"name":"Christina Nitzsche","age":37,"location":"Elmhurst"}},{"attributes":{"name":"Mrs. Mabel Schimmel MD","age":27,"location":"West Erika"}},{"attributes":{"name":"Michele Wilkinson","age":56,"location":"North Raven"}},{"attributes":{"name":"Mr. Price Marvin","age":60,"location":"Zeldastad"}},{"attributes":{"name":"Justin Hyatt","age":34,"location":"Miracleside"}},{"attributes":{"name":"Miss Alberto Mertz","age":24,"location":"Port Eleonorebury"}},{"attributes":{"name":"Dr. Alycia Monahan","age":47,"location":"Greeley"}},{"attributes":{"name":"Major Kuhn","age":51,"location":"New Jeffryshire"}},{"attributes":{"name":"Ollie Little","age":51,"location":"Maiyabury"}},{"attributes":{"name":"Sam Friesen","age":52,"location":"New Berneiceberg"}},{"attributes":{"name":"Reta Lind","age":80,"location":"Faheyside"}},{"attributes":{"name":"Ethel Bartoletti","age":77,"location":"Sarasota"}},{"attributes":{"name":"Mr. Cory Dach","age":36,"location":"Port Pinkstad"}},{"attributes":{"name":"Annie Fisher","age":77,"location":"Muellerhaven"}},{"attributes":{"name":"Caleb Deckow","age":19,"location":"North Burnice"}},{"attributes":{"name":"Kenna Hodkiewicz","age":21,"location":"Mentor"}},{"attributes":{"name":"Cedrick Mills","age":74,"location":"Chrisport"}},{"attributes":{"name":"Emmitt Ondricka","age":22,"location":"Jackelinefield"}},{"attributes":{"name":"Rochelle Bartell","age":73,"location":"West Leonieberg"}},{"attributes":{"name":"Dariana Jacobson","age":69,"location":"New Desmondview"}},{"attributes":{"name":"Aliya Morissette","age":31,"location":"Fort Franciscaview"}},{"attributes":{"name":"Zachary Hahn-Willms","age":42,"location":"San Marcos"}},{"attributes":{"name":"Vickie Stoltenberg","age":24,"location":"North Alfonsostead"}},{"attributes":{"name":"Dorothy Fay","age":40,"location":"Fort Wade"}},{"attributes":{"name":"Ms. Annette Stark","age":79,"location":"Fort Oleland"}},{"attributes":{"name":"Alfredo Tremblay","age":19,"location":"Darrelstad"}},{"attributes":{"name":"Devante Rolfson","age":37,"location":"Grantbury"}},{"attributes":{"name":"Jill Witting","age":77,"location":"South Barney"}},{"attributes":{"name":"Mr. Melvin Wunsch","age":35,"location":"Jamirview"}},{"attributes":{"name":"Naomi O'Connell","age":45,"location":"New Brookeshire"}},{"attributes":{"name":"Dr. Ada Moore","age":28,"location":"North Chasity"}},{"attributes":{"name":"Mr. Saul Leuschke","age":39,"location":"Petaluma"}},{"attributes":{"name":"Ms. Tracy Brekke","age":49,"location":"Krystalboro"}},{"attributes":{"name":"Rosalie Cole","age":29,"location":"Coltonfurt"}},{"attributes":{"name":"Sandrine Hahn","age":60,"location":"Abernathyville"}},{"attributes":{"name":"Laurie Shanahan","age":55,"location":"Ivastead"}},{"attributes":{"name":"Minnie Funk","age":48,"location":"Vernonville"}},{"attributes":{"name":"Marco Schoen","age":43,"location":"Leoneboro"}},{"attributes":{"name":"Iliana Leuschke","age":50,"location":"South Nathanialville"}},{"attributes":{"name":"Emilio Runolfsdottir","age":34,"location":"Richland"}},{"attributes":{"name":"Ricardo Harris","age":46,"location":"Ontario"}},{"attributes":{"name":"Dr. Wilbert Anderson","age":19,"location":"Orlando"}},{"attributes":{"name":"Dr. Beatrice Hills III","age":68,"location":"Framibury"}},{"attributes":{"name":"Christy Schowalter","age":48,"location":"Huntington Beach"}},{"attributes":{"name":"Katherine Borer","age":66,"location":"Lenexa"}},{"attributes":{"name":"Frieda Renner PhD","age":38,"location":"Lake Emilia"}},{"attributes":{"name":"Edward Sawayn","age":76,"location":"Rosaliafield"}},{"attributes":{"name":"Jessyca McClure","age":40,"location":"Fredachester"}},{"attributes":{"name":"Dr. Eva Anderson","age":27,"location":"Littlebury"}},{"attributes":{"name":"Randolph Morar Jr.","age":42,"location":"Fort Fordberg"}},{"attributes":{"name":"Roland Wolf","age":23,"location":"Wauwatosa"}},{"attributes":{"name":"Heidi Russel","age":42,"location":"North Anabel"}},{"attributes":{"name":"Jeanne Stamm","age":67,"location":"Ondrickaland"}},{"attributes":{"name":"Miss Gail Cronin","age":60,"location":"Altadena"}},{"attributes":{"name":"Bobby Bogisich","age":39,"location":"Marquardtstead"}},{"attributes":{"name":"Mr. Kallie Hand","age":76,"location":"Aimeeworth"}},{"attributes":{"name":"Lauren Maggio II","age":20,"location":"Coconut Creek"}},{"attributes":{"name":"Roosevelt Braun","age":76,"location":"Batzberg"}},{"attributes":{"name":"Camille Boehm","age":63,"location":"East Paxtonville"}},{"attributes":{"name":"Josue Johnson","age":73,"location":"Mohrburgh"}},{"attributes":{"name":"Malinda Witting MD","age":41,"location":"Fort Imogene"}},{"attributes":{"name":"Jerald Bogan","age":31,"location":"Bradtkemouth"}},{"attributes":{"name":"Philip Quigley","age":74,"location":"Fatimaton"}},{"attributes":{"name":"Glenn Nitzsche II","age":68,"location":"Lake Arleneburgh"}},{"attributes":{"name":"Cora Boyer DDS","age":40,"location":"Reichelstead"}},{"attributes":{"name":"Shaniya Torp","age":48,"location":"Oletashire"}},{"attributes":{"name":"Ross O'Reilly PhD","age":21,"location":"Cheyenne"}},{"attributes":{"name":"Kara Gleichner","age":26,"location":"Fort Marina"}},{"attributes":{"name":"Chad Welch","age":51,"location":"Myronboro"}},{"attributes":{"name":"Ron Haley","age":31,"location":"Bel Air South"}},{"attributes":{"name":"Rhea Ruecker-Maggio","age":18,"location":"Bauchside"}},{"attributes":{"name":"Melvin Kuphal","age":25,"location":"Lehnerton"}},{"attributes":{"name":"Dr. Sigmund Olson","age":48,"location":"Christinachester"}},{"attributes":{"name":"Enrique Gottlieb","age":45,"location":"Jazmynefurt"}},{"attributes":{"name":"Kayla Murphy","age":20,"location":"Beahanport"}},{"attributes":{"name":"Jordon Kulas","age":45,"location":"Cape Coral"}},{"attributes":{"name":"Elyse Olson","age":58,"location":"New Brunswick"}},{"attributes":{"name":"Mariam Smith V","age":73,"location":"Kassulkemouth"}},{"attributes":{"name":"Lydia Casper","age":52,"location":"Garland"}},{"attributes":{"name":"Clifford Tremblay","age":35,"location":"Merrittview"}},{"attributes":{"name":"Lynne Nicolas-West Sr.","age":73,"location":"New Juanacester"}},{"attributes":{"name":"Mrs. Sidney Willms DVM","age":33,"location":"Jaskolskiville"}},{"attributes":{"name":"Daphne Ferry","age":64,"location":"Saulstad"}},{"attributes":{"name":"Hazel Feeney","age":28,"location":"Fort Adellstead"}},{"attributes":{"name":"Bailey Greenholt","age":33,"location":"New Isaiahstad"}},{"attributes":{"name":"Harvey Hand","age":56,"location":"Rolfsonborough"}},{"attributes":{"name":"Marta Considine","age":30,"location":"Macon-Bibb County"}},{"attributes":{"name":"Elliot Considine","age":30,"location":"Lake Edison"}},{"attributes":{"name":"Jaren Schultz","age":69,"location":"Fort Theron"}},{"attributes":{"name":"Orlando Hettinger","age":34,"location":"Demetriuschester"}},{"attributes":{"name":"Lydia Muller MD","age":38,"location":"Maple Grove"}},{"attributes":{"name":"Angelo Schuppe","age":43,"location":"Gradyfield"}},{"attributes":{"name":"Kirk Luettgen","age":18,"location":"Emmerichstad"}},{"attributes":{"name":"Dr. Dustin Kulas","age":75,"location":"Waylonfort"}},{"attributes":{"name":"Yazmin Nitzsche","age":77,"location":"Lake Forest"}},{"attributes":{"name":"Sylvester Will","age":49,"location":"West Brad"}},{"attributes":{"name":"Arthur Stokes","age":33,"location":"Lake Rowenaside"}},{"attributes":{"name":"Mr. Kelvin Volkman","age":39,"location":"East Esmeraldastead"}},{"attributes":{"name":"Kayla Pouros","age":24,"location":"Lake Stantonchester"}},{"attributes":{"name":"Mr. Tracey Rippin","age":45,"location":"Fort Breanneport"}},{"attributes":{"name":"Green Wilderman","age":51,"location":"Rebecatown"}},{"attributes":{"name":"Ramiro Murazik","age":64,"location":"Lake Dariuschester"}},{"attributes":{"name":"Joanne Johns","age":21,"location":"North Kennithchester"}},{"attributes":{"name":"Jeannette McKenzie","age":55,"location":"Lionelhaven"}},{"attributes":{"name":"Hannah DuBuque","age":49,"location":"Rochester Hills"}},{"attributes":{"name":"Byron Lesch","age":41,"location":"West Desireestad"}},{"attributes":{"name":"Gladys Gusikowski","age":19,"location":"Port Federicostad"}},{"attributes":{"name":"Ms. Sadie Effertz","age":43,"location":"Dickensworth"}},{"attributes":{"name":"Mr. Shawn Hartmann-Lind III","age":22,"location":"Reynatown"}},{"attributes":{"name":"Fernando Hoppe-Sawayn","age":38,"location":"Bednarland"}},{"attributes":{"name":"Ashley Greenholt-Reichert","age":80,"location":"West Holliecester"}},{"attributes":{"name":"Roman Schneider","age":22,"location":"Port Giles"}},{"attributes":{"name":"Rowan Littel","age":39,"location":"Abigaylebury"}},{"attributes":{"name":"Shanelle Kub","age":80,"location":"Carrollbury"}},{"attributes":{"name":"Jedediah Marvin","age":18,"location":"Boise City"}},{"attributes":{"name":"Sammy Jacobi","age":35,"location":"Retatown"}},{"attributes":{"name":"Millie Wunsch","age":41,"location":"New Alfred"}},{"attributes":{"name":"Mario Ullrich","age":64,"location":"Bedford"}},{"attributes":{"name":"Dawn Walker","age":18,"location":"Sedrickstad"}},{"attributes":{"name":"Elody Hermiston","age":62,"location":"South Diamond"}},{"attributes":{"name":"Edythe Erdman","age":23,"location":"Missouri City"}},{"attributes":{"name":"Jerald Jast","age":34,"location":"Krajcikmouth"}},{"attributes":{"name":"Jeannette Homenick","age":76,"location":"Alexland"}},{"attributes":{"name":"Claire Will","age":51,"location":"South Madelynport"}},{"attributes":{"name":"Vincenzo Aufderhar","age":22,"location":"Dickensfort"}},{"attributes":{"name":"Mrs. Lionel Harvey","age":55,"location":"Hadleyshire"}},{"attributes":{"name":"Wade Moen","age":44,"location":"Casas Adobes"}},{"attributes":{"name":"Gerardo Wisozk","age":66,"location":"Rhiannamouth"}},{"attributes":{"name":"Lexi Gerlach","age":59,"location":"Port Larissafort"}},{"attributes":{"name":"Isaiah Nicolas","age":36,"location":"East Sylvia"}},{"attributes":{"name":"Mable Cartwright","age":43,"location":"High Point"}},{"attributes":{"name":"Miss Hosea Moore","age":33,"location":"College Station"}},{"attributes":{"name":"Herbert Nader-Hagenes","age":40,"location":"Dearborn"}},{"attributes":{"name":"Perry Green","age":31,"location":"Fort Jaydenmouth"}},{"attributes":{"name":"Jack Krajcik II","age":20,"location":"Port Tierraton"}},{"attributes":{"name":"Nickolas Abbott","age":31,"location":"Madonnaside"}},{"attributes":{"name":"Annette West-Bins","age":39,"location":"Macieview"}},{"attributes":{"name":"Bertha Hodkiewicz DVM","age":23,"location":"Schuppefurt"}},{"attributes":{"name":"Josephine Tremblay","age":25,"location":"Oberbrunnercester"}},{"attributes":{"name":"Janie Hodkiewicz","age":49,"location":"Moreno Valley"}},{"attributes":{"name":"Delores Kihn DDS","age":36,"location":"Waterschester"}},{"attributes":{"name":"Bennie Olson","age":51,"location":"Lloydton"}},{"attributes":{"name":"Mireille Block","age":24,"location":"North Miami"}},{"attributes":{"name":"Providenci Jacobs","age":64,"location":"San Rafael"}},{"attributes":{"name":"Mackenzie Waelchi","age":42,"location":"Waterbury"}},{"attributes":{"name":"Orville Bins","age":37,"location":"Dedrickberg"}},{"attributes":{"name":"Angelo Rosenbaum","age":75,"location":"Jolieboro"}},{"attributes":{"name":"Pat Kilback","age":28,"location":"Anjaliville"}},{"attributes":{"name":"Floy Crooks","age":23,"location":"Fort Zackworth"}},{"attributes":{"name":"Edmond Becker","age":52,"location":"McCluretown"}},{"attributes":{"name":"Sabryna Carroll DVM","age":65,"location":"Lake Bransonhaven"}},{"attributes":{"name":"Courtney Kuvalis","age":38,"location":"Fort Deonte"}},{"attributes":{"name":"Christopher Ziemann IV","age":51,"location":"Paytonstad"}},{"attributes":{"name":"Shea Johnston","age":25,"location":"Drakeview"}},{"attributes":{"name":"Jessie Fahey","age":22,"location":"Lake Cameronside"}},{"attributes":{"name":"Felix Blick","age":76,"location":"Port Madalinechester"}},{"attributes":{"name":"Leroy Smith","age":50,"location":"Kylieview"}},{"attributes":{"name":"Miss Janie Kling","age":49,"location":"North Earl"}},{"attributes":{"name":"Mona Gulgowski","age":73,"location":"Abrahammouth"}},{"attributes":{"name":"Kaden Huels PhD","age":65,"location":"Harryview"}},{"attributes":{"name":"Pierce McCullough","age":61,"location":"Rolandoboro"}},{"attributes":{"name":"Miss Nettie Beier","age":61,"location":"Ferryfurt"}},{"attributes":{"name":"Edmund Moen","age":78,"location":"Kingshire"}},{"attributes":{"name":"Erik Rodriguez","age":66,"location":"Downey"}},{"attributes":{"name":"Timothy Braun-Lowe","age":72,"location":"Grantstad"}},{"attributes":{"name":"Nadine Dooley","age":47,"location":"North Tito"}},{"attributes":{"name":"Kelly Leannon","age":47,"location":"South Rosendo"}},{"attributes":{"name":"Darlene Kautzer Jr.","age":40,"location":"Hendersonville"}},{"attributes":{"name":"Larissa Jacobs","age":54,"location":"Griffinton"}},{"attributes":{"name":"Keely Gutmann","age":64,"location":"Port Emmalee"}},{"attributes":{"name":"Michael Hodkiewicz","age":60,"location":"South Garrick"}},{"attributes":{"name":"Orlando Lindgren","age":18,"location":"Laguna Niguel"}},{"attributes":{"name":"Mellie Stiedemann","age":78,"location":"Hartmannfort"}},{"attributes":{"name":"Dr. Eldon Towne","age":47,"location":"East Jeanie"}},{"attributes":{"name":"Jedidiah Rowe-Cole","age":47,"location":"Parkerborough"}},{"attributes":{"name":"Bethany Walter","age":76,"location":"Fort Alec"}},{"attributes":{"name":"Samantha Spencer","age":26,"location":"Bentonville"}},{"attributes":{"name":"Blanca Bechtelar","age":67,"location":"East Demetrius"}},{"attributes":{"name":"Dante Cassin","age":60,"location":"Arjunshire"}},{"attributes":{"name":"Roman Lang","age":64,"location":"Bloomington"}},{"attributes":{"name":"Alyson Jones","age":74,"location":"New Adelia"}},{"attributes":{"name":"Vivianne Douglas","age":27,"location":"New Jedidiah"}},{"attributes":{"name":"Hugo Wunsch","age":70,"location":"Collierfield"}},{"attributes":{"name":"Dayna Sawayn","age":64,"location":"Arecibo"}},{"attributes":{"name":"Perry Graham","age":26,"location":"Billings"}},{"attributes":{"name":"Milton Fay","age":78,"location":"North Heberstead"}},{"attributes":{"name":"Juanita Schimmel","age":20,"location":"Port Pierrehaven"}},{"attributes":{"name":"Frances Sporer","age":53,"location":"Port Verna"}},{"attributes":{"name":"Ellis Shanahan","age":76,"location":"Natalieport"}},{"attributes":{"name":"Marshall Waters V","age":66,"location":"Quigleyworth"}},{"attributes":{"name":"Arielle Heathcote","age":71,"location":"Russeltown"}},{"attributes":{"name":"Corine Lowe","age":66,"location":"Dunwoody"}},{"attributes":{"name":"Margie Kris","age":38,"location":"Tillmanmouth"}},{"attributes":{"name":"Ms. Luciano Graham","age":24,"location":"Laredo"}},{"attributes":{"name":"Frank Lubowitz","age":32,"location":"Waltham"}},{"attributes":{"name":"Rebecca Wiza PhD","age":54,"location":"New Olen"}},{"attributes":{"name":"Sonya Schroeder Jr.","age":78,"location":"Jadastead"}},{"attributes":{"name":"Rahul Funk IV","age":57,"location":"Potomac"}},{"attributes":{"name":"Juana Johnston","age":72,"location":"Dietrichborough"}},{"attributes":{"name":"Karlie Pouros-Boyer IV","age":54,"location":"Council Bluffs"}},{"attributes":{"name":"Myles McKenzie","age":20,"location":"Lake Lilianeshire"}},{"attributes":{"name":"Sergio Altenwerth","age":26,"location":"West Jacklyn"}},{"attributes":{"name":"Dr. Walter Terry","age":68,"location":"Oakland"}},{"attributes":{"name":"Cordia Roob","age":23,"location":"Lake Julius"}},{"attributes":{"name":"Arjun Turner","age":20,"location":"Fort Gagefurt"}},{"attributes":{"name":"Sherry Yundt","age":21,"location":"Chicopee"}},{"attributes":{"name":"Major Hackett","age":28,"location":"Sioux Falls"}},{"attributes":{"name":"Halle Greenfelder","age":74,"location":"Gilroy"}},{"attributes":{"name":"Irvin Bode","age":53,"location":"Bashirianbury"}},{"attributes":{"name":"Dr. Samanta Torp","age":65,"location":"Cummerataberg"}},{"attributes":{"name":"Francis Bashirian","age":73,"location":"Racine"}},{"attributes":{"name":"Randal Pollich","age":53,"location":"New Efren"}},{"attributes":{"name":"Darla Waters","age":56,"location":"Dimitritown"}},{"attributes":{"name":"Mrs. Berneice Veum","age":50,"location":"South Camille"}},{"attributes":{"name":"Corey Effertz","age":20,"location":"Flatleyworth"}},{"attributes":{"name":"Clara Rogahn","age":72,"location":"Brittanyberg"}},{"attributes":{"name":"Jaiden Blanda","age":47,"location":"North Emeraldfield"}},{"attributes":{"name":"Ryan Gottlieb","age":55,"location":"New Blanca"}},{"attributes":{"name":"Ilene Harris","age":77,"location":"Whiteland"}},{"attributes":{"name":"Dorothy D'Amore-D'Amore","age":61,"location":"North Nya"}},{"attributes":{"name":"Dr. Rollin Rowe","age":22,"location":"Daynetown"}},{"attributes":{"name":"Mrs. Madeline Stamm I","age":59,"location":"Cicero"}},{"attributes":{"name":"Doyle Medhurst","age":68,"location":"Robertsville"}},{"attributes":{"name":"Vernice Leannon","age":24,"location":"West Tyrese"}},{"attributes":{"name":"Mr. Gonzalo Jenkins","age":29,"location":"West Dallas"}},{"attributes":{"name":"Mario Corkery","age":42,"location":"North Antwonfield"}},{"attributes":{"name":"Dr. Ellis Mann","age":27,"location":"Lake Greenshire"}},{"attributes":{"name":"Jerome Macejkovic","age":68,"location":"New Cletusborough"}},{"attributes":{"name":"Miss Filiberto Dibbert","age":51,"location":"Seanstad"}},{"attributes":{"name":"Dr. Muriel Fahey","age":58,"location":"Bryceport"}},{"attributes":{"name":"Asa Langosh","age":66,"location":"National City"}},{"attributes":{"name":"Alba Crooks","age":60,"location":"Kuhncester"}},{"attributes":{"name":"Rosa Bartoletti","age":24,"location":"Roanoke"}},{"attributes":{"name":"Kelli Greenholt","age":51,"location":"Berthacester"}},{"attributes":{"name":"Oma D'Amore-Welch","age":73,"location":"West Alethaberg"}},{"attributes":{"name":"Matt Krajcik","age":45,"location":"Port Dorcaschester"}},{"attributes":{"name":"Claude Heaney","age":37,"location":"North Ashly"}},{"attributes":{"name":"Jermaine Pfannerstill","age":24,"location":"Lake Reillystad"}},{"attributes":{"name":"Rosa Klein","age":40,"location":"Fort Meredithworth"}},{"attributes":{"name":"Gerardo Schoen","age":34,"location":"Rowlett"}},{"attributes":{"name":"Lee Heller-Jacobson","age":20,"location":"West Adelbert"}},{"attributes":{"name":"Allison Schmidt","age":78,"location":"Ibrahimmouth"}},{"attributes":{"name":"Chase Stroman","age":67,"location":"Krajcikville"}},{"attributes":{"name":"Mandy Thiel","age":45,"location":"Irmashire"}},{"attributes":{"name":"Ms. Iris Stehr","age":30,"location":"Ernaboro"}},{"attributes":{"name":"Andrea Krajcik","age":66,"location":"North Clyde"}},{"attributes":{"name":"Kitty Rohan","age":31,"location":"West Dorisshire"}},{"attributes":{"name":"Nadine Wintheiser","age":30,"location":"Florissant"}},{"attributes":{"name":"Guido Corwin","age":41,"location":"Costa Mesa"}},{"attributes":{"name":"Laura Hahn","age":72,"location":"Legrosview"}},{"attributes":{"name":"Branson Kirlin","age":58,"location":"Jesseworth"}},{"attributes":{"name":"Leonardo Berge","age":46,"location":"Port Jerroldport"}},{"attributes":{"name":"Amely Turcotte","age":56,"location":"New Juston"}},{"attributes":{"name":"Dr. Malcolm Dare","age":40,"location":"Lake Domenico"}},{"attributes":{"name":"Erik Howe","age":65,"location":"Lake Anitastad"}},{"attributes":{"name":"Mrs. Sam Crist","age":43,"location":"Mazieboro"}},{"attributes":{"name":"Dalton Cruickshank","age":65,"location":"Santa Ana"}},{"attributes":{"name":"Tom Huels","age":48,"location":"Borerworth"}},{"attributes":{"name":"Haley Cassin PhD","age":54,"location":"Hellershire"}},{"attributes":{"name":"Devon Beatty","age":30,"location":"Corpus Christi"}},{"attributes":{"name":"Wendy Hessel MD","age":62,"location":"Jessecester"}},{"attributes":{"name":"Vivian Hoeger","age":40,"location":"Londonworth"}},{"attributes":{"name":"Eileen Kohler","age":35,"location":"Fort Darrel"}},{"attributes":{"name":"Krista Witting","age":21,"location":"South Darien"}},{"attributes":{"name":"Rachael Kautzer","age":78,"location":"North Ethelyn"}},{"attributes":{"name":"Dr. Colin Lubowitz","age":44,"location":"Fort Shakiraton"}},{"attributes":{"name":"Dr. Ernesto Bernier","age":66,"location":"West Kelliland"}},{"attributes":{"name":"Francis Hayes","age":26,"location":"Fort Tyrel"}},{"attributes":{"name":"Carroll Wehner","age":19,"location":"Batzview"}},{"attributes":{"name":"Nichole Goodwin","age":56,"location":"Amanifort"}},{"attributes":{"name":"Willie Kassulke","age":57,"location":"Kelleyfort"}},{"attributes":{"name":"Minnie Franey","age":71,"location":"Bartoletticester"}},{"attributes":{"name":"Lindsay Jacobi","age":56,"location":"North Bethesda"}},{"attributes":{"name":"Arthur Jacobson","age":71,"location":"Ravenside"}},{"attributes":{"name":"Dallas Maggio","age":79,"location":"North Derek"}},{"attributes":{"name":"Alberta Berge-Feeney","age":79,"location":"Evansville"}},{"attributes":{"name":"Aubrey Konopelski V","age":40,"location":"New Ilene"}},{"attributes":{"name":"Loretta Mohr","age":27,"location":"Prosaccohaven"}},{"attributes":{"name":"Doyle Lind","age":35,"location":"Beahanfield"}},{"attributes":{"name":"Mona Ebert","age":33,"location":"Mackenzieboro"}},{"attributes":{"name":"Jean Considine","age":21,"location":"Bellingham"}},{"attributes":{"name":"Rowena Nikolaus","age":75,"location":"Joplin"}},{"attributes":{"name":"Miss Lavon Wiegand I","age":49,"location":"Gloverview"}},{"attributes":{"name":"Myriam Rippin","age":76,"location":"Fletchercester"}},{"attributes":{"name":"Veronica Zulauf","age":42,"location":"West Brownview"}},{"attributes":{"name":"Tiffany Flatley","age":37,"location":"Fort Marcelcester"}},{"attributes":{"name":"Roland Howell","age":78,"location":"North Verliechester"}},{"attributes":{"name":"Mr. Teresa Towne","age":48,"location":"Wilkinsonbury"}},{"attributes":{"name":"Ms. Herman Bogisich","age":18,"location":"Thousand Oaks"}},{"attributes":{"name":"Dr. Kenneth Renner","age":73,"location":"Franeychester"}},{"attributes":{"name":"Jaquelin Veum","age":62,"location":"Langworthcester"}},{"attributes":{"name":"Dr. Melinda Wisoky","age":60,"location":"Fort Janischester"}},{"attributes":{"name":"Dora Pacocha II","age":76,"location":"Lake Justinebury"}},{"attributes":{"name":"Ms. Keara Wunsch","age":49,"location":"Port Ferminworth"}},{"attributes":{"name":"Pete Bailey","age":59,"location":"East Calista"}},{"attributes":{"name":"Jonathon Franey","age":80,"location":"Port Samirshire"}},{"attributes":{"name":"Mr. Alexander Heller","age":53,"location":"East Golden"}},{"attributes":{"name":"Elsie Krajcik","age":24,"location":"Welchbury"}},{"attributes":{"name":"Adele Langosh","age":56,"location":"South Joshuah"}},{"attributes":{"name":"Terry Kassulke-Franecki","age":24,"location":"Flower Mound"}},{"attributes":{"name":"Kelli Kuhic","age":37,"location":"Fort Guadalupe"}},{"attributes":{"name":"Orlando Bechtelar IV","age":52,"location":"Amarichester"}},{"attributes":{"name":"Johnny Nikolaus","age":36,"location":"Port Louiestead"}},{"attributes":{"name":"Dante Ernser","age":75,"location":"North Emoryborough"}},{"attributes":{"name":"Bianka Bogisich","age":28,"location":"Colemanhaven"}},{"attributes":{"name":"Laverne Emard","age":19,"location":"Legrosshire"}},{"attributes":{"name":"Dr. Hector Smitham","age":68,"location":"Dickensburgh"}},{"attributes":{"name":"Beryl Labadie","age":53,"location":"Baltimore"}},{"attributes":{"name":"Abbigail Feil IV","age":57,"location":"South Isadorehaven"}},{"attributes":{"name":"Rosalie Pollich","age":60,"location":"Timothyberg"}},{"attributes":{"name":"Tami Skiles","age":24,"location":"Joyhaven"}},{"attributes":{"name":"Lilla Harber-Bayer","age":47,"location":"Lake Dina"}},{"attributes":{"name":"Myra Olson","age":65,"location":"Port Jaydenboro"}},{"attributes":{"name":"Mr. Lorenzo Huel I","age":28,"location":"Lockmanstad"}},{"attributes":{"name":"Jack Keebler DDS","age":30,"location":"McClureview"}},{"attributes":{"name":"Janelle Rutherford III","age":44,"location":"Caguas"}},{"attributes":{"name":"Hector Casper","age":74,"location":"Claudiaborough"}},{"attributes":{"name":"Jovan Rutherford-Reinger","age":39,"location":"Fort Darian"}},{"attributes":{"name":"Kendra Heller","age":64,"location":"Orinland"}},{"attributes":{"name":"Mrs. Johnnie Gibson","age":62,"location":"Ethashire"}},{"attributes":{"name":"Jabari Blick","age":42,"location":"Jarrellshire"}},{"attributes":{"name":"Branson Lind","age":33,"location":"Jovannyside"}},{"attributes":{"name":"Doreen Emmerich DVM","age":25,"location":"South Sandra"}},{"attributes":{"name":"Michele Hermiston II","age":56,"location":"Schmidtbury"}},{"attributes":{"name":"Mrs. Antoinette Runte","age":53,"location":"Adamsport"}},{"attributes":{"name":"Cecelia Renner","age":42,"location":"Fort Camillemouth"}},{"attributes":{"name":"Kellie Hessel","age":42,"location":"Darioncester"}},{"attributes":{"name":"Euna Muller","age":79,"location":"Maximilianbury"}},{"attributes":{"name":"Samara Zboncak-Mertz","age":54,"location":"Lake Etha"}},{"attributes":{"name":"Sydnie Aufderhar","age":72,"location":"Corkerystead"}},{"attributes":{"name":"Raphaelle Ratke","age":27,"location":"Kovacekworth"}},{"attributes":{"name":"Terrell Koss","age":57,"location":"Joannieberg"}},{"attributes":{"name":"Ms. Alma Turcotte","age":47,"location":"Littelfort"}},{"attributes":{"name":"Terrence Ernser","age":61,"location":"Bogisichside"}},{"attributes":{"name":"Mr. Hope Ullrich","age":18,"location":"Port Margie"}},{"attributes":{"name":"Ona Kuvalis","age":26,"location":"Steuberville"}},{"attributes":{"name":"Ms. Elvera Nitzsche","age":19,"location":"West Lucio"}},{"attributes":{"name":"Rudolph Romaguera","age":26,"location":"Shanahantown"}},{"attributes":{"name":"Antoinette Spencer","age":26,"location":"New Elliotfield"}},{"attributes":{"name":"Eloisa Hilpert","age":61,"location":"Annabellebury"}},{"attributes":{"name":"Mr. Rita Block","age":61,"location":"Burnsville"}},{"attributes":{"name":"Mekhi Funk","age":53,"location":"New Ivahhaven"}},{"attributes":{"name":"Steven Friesen","age":60,"location":"Elkhart"}},{"attributes":{"name":"Caitlyn Kuvalis","age":26,"location":"Fort Claudebury"}},{"attributes":{"name":"Mr. Carrie Price","age":36,"location":"Lincolnboro"}},{"attributes":{"name":"Edwin Langosh","age":60,"location":"North Savanna"}},{"attributes":{"name":"Rubye Boyer","age":33,"location":"Jenkinsview"}},{"attributes":{"name":"Carlton Smith I","age":39,"location":"Lake Oswaldfurt"}},{"attributes":{"name":"Ashlynn Trantow","age":61,"location":"Sengerview"}},{"attributes":{"name":"Bruce Boyle","age":55,"location":"Mannberg"}},{"attributes":{"name":"Ronald Hermiston","age":69,"location":"Denver"}},{"attributes":{"name":"Benny Auer III","age":42,"location":"West Augustine"}},{"attributes":{"name":"Frank Hayes IV","age":50,"location":"Hackettfort"}},{"attributes":{"name":"Buddy Koss","age":55,"location":"Douglasshire"}},{"attributes":{"name":"Naomi Waelchi","age":65,"location":"Port Keshawnfort"}},{"attributes":{"name":"Mary Smith I","age":21,"location":"Kshlerinton"}},{"attributes":{"name":"Agnes Hilpert","age":33,"location":"Schoentown"}},{"attributes":{"name":"Lynn Hoeger","age":49,"location":"Lake Kiara"}},{"attributes":{"name":"Simon Corkery","age":21,"location":"Lake Curt"}},{"attributes":{"name":"Alena Armstrong","age":39,"location":"Turlock"}},{"attributes":{"name":"Samson Hermiston","age":37,"location":"Gutkowskibury"}},{"attributes":{"name":"Brittany Schmeler","age":18,"location":"East Jessicacester"}},{"attributes":{"name":"Kasandra Walter DDS","age":61,"location":"Pacochatown"}},{"attributes":{"name":"Jeffrey Feest","age":64,"location":"Port Cortez"}},{"attributes":{"name":"Rodrick Hammes","age":40,"location":"Revere"}},{"attributes":{"name":"Lee Wisozk","age":33,"location":"New Blaise"}},{"attributes":{"name":"Kim Swaniawski-Sporer","age":76,"location":"Champaign"}},{"attributes":{"name":"Dorothy Bauch Jr.","age":51,"location":"North Effie"}},{"attributes":{"name":"Sam Beer","age":68,"location":"O'Fallon"}},{"attributes":{"name":"Jack Mayert","age":73,"location":"Champlinshire"}},{"attributes":{"name":"Eden Ankunding","age":23,"location":"Dickinsonshire"}},{"attributes":{"name":"Reuben Koepp-Osinski","age":35,"location":"Jakubowskistead"}},{"attributes":{"name":"Miss Wade Leannon","age":28,"location":"Lexishire"}},{"attributes":{"name":"Onie Marquardt","age":19,"location":"Elk Grove"}},{"attributes":{"name":"Angelina Brakus-Wisoky","age":77,"location":"South Vedafurt"}},{"attributes":{"name":"Christy Gorczany","age":55,"location":"North Aftonfort"}},{"attributes":{"name":"Lucy Hilll","age":72,"location":"Fort Darrylmouth"}},{"attributes":{"name":"Demetris Schultz-Haley","age":53,"location":"Cartwrightfurt"}},{"attributes":{"name":"Latoya Trantow","age":28,"location":"Port Rhiannonton"}},{"attributes":{"name":"Sydnie Heidenreich","age":45,"location":"New Maria"}},{"attributes":{"name":"Dr. Ricky Mann","age":27,"location":"Fort Vernieview"}},{"attributes":{"name":"Isaac Steuber","age":62,"location":"West Dahlia"}},{"attributes":{"name":"Ramon O'Hara IV","age":22,"location":"Gainesville"}},{"attributes":{"name":"Hannah Langosh","age":32,"location":"Port Anna"}},{"attributes":{"name":"Lesly MacGyver","age":60,"location":"Aspen Hill"}},{"attributes":{"name":"Cecelia Balistreri","age":56,"location":"Emanuelworth"}},{"attributes":{"name":"Elmo Abshire","age":65,"location":"Fort Jessie"}},{"attributes":{"name":"Charlene Leuschke","age":51,"location":"Akron"}},{"attributes":{"name":"Mrs. Bailey Hansen","age":76,"location":"Ulicesville"}},{"attributes":{"name":"Camila Homenick I","age":78,"location":"Kovacektown"}},{"attributes":{"name":"Ricardo Wiza","age":75,"location":"New Rozella"}},{"attributes":{"name":"Winfield MacGyver","age":35,"location":"Port Levi"}},{"attributes":{"name":"Skye Swift","age":75,"location":"Janesville"}},{"attributes":{"name":"Desmond Gerlach","age":61,"location":"Greggberg"}},{"attributes":{"name":"Ms. Wanda Sporer-Bernhard","age":47,"location":"Kenyattastad"}},{"attributes":{"name":"Mrs. Miranda Orn","age":80,"location":"Newton"}},{"attributes":{"name":"Mary Wuckert","age":28,"location":"East Aryanna"}},{"attributes":{"name":"Gregg Crooks I","age":56,"location":"Bossier City"}},{"attributes":{"name":"Gwendolyn Lind","age":56,"location":"Feltonbury"}},{"attributes":{"name":"Ida Hammes","age":31,"location":"Fort Connie"}},{"attributes":{"name":"Aditya Strosin","age":69,"location":"Schusterton"}},{"attributes":{"name":"Virginia Marquardt","age":34,"location":"East Morgan"}},{"attributes":{"name":"Mr. Roy Bashirian","age":43,"location":"Alannastad"}},{"attributes":{"name":"Carolyn Upton Jr.","age":75,"location":"Lynchburg"}},{"attributes":{"name":"Marianne Blanda PhD","age":41,"location":"Fort Amelietown"}},{"attributes":{"name":"Rosamond Koelpin","age":39,"location":"East Annettaside"}},{"attributes":{"name":"Tom Wilkinson","age":68,"location":"East Maiya"}},{"attributes":{"name":"Doug Waelchi","age":44,"location":"Fort Leo"}},{"attributes":{"name":"Sidney Crona","age":72,"location":"West Tysonboro"}},{"attributes":{"name":"Elisa Stark","age":62,"location":"East Raegan"}},{"attributes":{"name":"Louie Koelpin","age":25,"location":"North Maximillian"}},{"attributes":{"name":"Melody Prosacco","age":33,"location":"Jalonboro"}},{"attributes":{"name":"Corbin Gerhold","age":35,"location":"Hicksville"}},{"attributes":{"name":"Agustin Pollich","age":34,"location":"Manuelside"}},{"attributes":{"name":"Mercedes Farrell","age":21,"location":"Lucindabury"}},{"attributes":{"name":"Jennie Kuhn","age":74,"location":"Lake Mireyafurt"}},{"attributes":{"name":"Mr. Levi Veum","age":53,"location":"Castle Rock"}},{"attributes":{"name":"Carroll Emmerich","age":55,"location":"Fort Lora"}},{"attributes":{"name":"Mr. Drew Koss II","age":44,"location":"Port Nikko"}},{"attributes":{"name":"Forest Walker","age":41,"location":"Wichita"}},{"attributes":{"name":"Rowena Donnelly","age":56,"location":"Marilouboro"}},{"attributes":{"name":"Angela Bahringer","age":50,"location":"McKenziestad"}},{"attributes":{"name":"Carmen Walter-Hahn","age":74,"location":"East Billieside"}},{"attributes":{"name":"Rita Maggio IV","age":47,"location":"Mackborough"}},{"attributes":{"name":"Cory Reinger DVM","age":30,"location":"Janessabury"}},{"attributes":{"name":"Alfreda Kling","age":64,"location":"Xanderhaven"}},{"attributes":{"name":"Jarret Herman","age":46,"location":"Pierreboro"}},{"attributes":{"name":"Destany Mitchell II","age":79,"location":"Jackelineside"}},{"attributes":{"name":"Candice Baumbach Jr.","age":76,"location":"Sengerbury"}},{"attributes":{"name":"Kristie Thompson","age":23,"location":"North Rhianna"}},{"attributes":{"name":"Jacklyn Jenkins","age":58,"location":"North Horace"}},{"attributes":{"name":"Gabriella Kessler","age":72,"location":"Hortenseburgh"}},{"attributes":{"name":"Dana Homenick","age":68,"location":"Lake Telly"}},{"attributes":{"name":"Julia Bosco","age":19,"location":"Tyreekville"}},{"attributes":{"name":"Maryjane Flatley","age":32,"location":"Gulgowskihaven"}},{"attributes":{"name":"Billy Marvin Sr.","age":70,"location":"Frankfurt"}},{"attributes":{"name":"Thomas Crona","age":66,"location":"Krystinatown"}},{"attributes":{"name":"Angelina Deckow","age":54,"location":"Maybellehaven"}},{"attributes":{"name":"Cora Block","age":26,"location":"Southaven"}},{"attributes":{"name":"Dan Wyman-Goyette","age":31,"location":"Cape Coral"}},{"attributes":{"name":"George Keebler","age":60,"location":"Lake Hayley"}},{"attributes":{"name":"Earline Rodriguez","age":58,"location":"Fishers"}},{"attributes":{"name":"Shelly Brakus","age":47,"location":"North Cullen"}},{"attributes":{"name":"Destini Denesik-Trantow","age":80,"location":"New Rochelle"}},{"attributes":{"name":"Zita McDermott","age":42,"location":"Labadiefield"}},{"attributes":{"name":"Veronica Glover","age":21,"location":"West Rosettaburgh"}},{"attributes":{"name":"Cameron Rath","age":40,"location":"South Michelcester"}},{"attributes":{"name":"Michelle Schiller","age":78,"location":"Bruenborough"}},{"attributes":{"name":"Justen Casper","age":20,"location":"Orinport"}},{"attributes":{"name":"Clemens Heller","age":60,"location":"East Adolphland"}},{"attributes":{"name":"Leslie Zemlak","age":62,"location":"Fort Emmanuelleborough"}},{"attributes":{"name":"Eldridge Franecki","age":61,"location":"Trenton"}},{"attributes":{"name":"Erma Beatty","age":78,"location":"Curtisfield"}},{"attributes":{"name":"Guadalupe Ernser","age":35,"location":"Eugene"}},{"attributes":{"name":"Mrs. Zula Weber","age":67,"location":"Lehnermouth"}},{"attributes":{"name":"Pearlie Wisoky","age":44,"location":"Luciefield"}},{"attributes":{"name":"Golda Dickens","age":43,"location":"Mitchellhaven"}},{"attributes":{"name":"Daisy Kuphal","age":51,"location":"Rolfsonberg"}},{"attributes":{"name":"Rocky Haag","age":21,"location":"Oceanside"}},{"attributes":{"name":"Jade Kuvalis","age":70,"location":"North Eusebiotown"}},{"attributes":{"name":"Fannie Marvin DVM","age":57,"location":"East Collinstead"}},{"attributes":{"name":"Edmund Russel","age":49,"location":"Tiffanyhaven"}},{"attributes":{"name":"Sylvester Little","age":45,"location":"East Jonathon"}},{"attributes":{"name":"Johnathan Ankunding","age":29,"location":"Thaliaborough"}},{"attributes":{"name":"Wallace Jaskolski","age":32,"location":"North Lloydfield"}},{"attributes":{"name":"Francis Metz","age":41,"location":"Wolffcester"}},{"attributes":{"name":"Abe Hegmann Jr.","age":34,"location":"South Theresia"}},{"attributes":{"name":"Ronald Armstrong Jr.","age":56,"location":"Mohrhaven"}},{"attributes":{"name":"Lillian Legros","age":65,"location":"North Toneyborough"}},{"attributes":{"name":"Mr. Abel Braun","age":56,"location":"New Vida"}},{"attributes":{"name":"Jeremy Wyman","age":52,"location":"Kent"}},{"attributes":{"name":"Carol Mosciski","age":45,"location":"Flint"}},{"attributes":{"name":"Alvin Kerluke","age":47,"location":"Turnerport"}},{"attributes":{"name":"Mr. Sherwood Grant","age":24,"location":"Kshlerinstead"}},{"attributes":{"name":"Michael Towne","age":29,"location":"Emmaleecester"}},{"attributes":{"name":"Dr. Holly Runte I","age":80,"location":"West Lina"}},{"attributes":{"name":"Dr. Nellie Schroeder","age":34,"location":"North Rowantown"}},{"attributes":{"name":"Catharine Will","age":60,"location":"Fort Myrtlemouth"}},{"attributes":{"name":"Christy Bernier","age":54,"location":"North Kathlyn"}},{"attributes":{"name":"Jenna Bogan","age":52,"location":"East Lon"}},{"attributes":{"name":"Tommy Dickens MD","age":65,"location":"Sandy"}},{"attributes":{"name":"Ms. Lloyd Greenholt Sr.","age":20,"location":"Port Karsonborough"}},{"attributes":{"name":"Lila Koss","age":75,"location":"Doral"}},{"attributes":{"name":"Ward Bechtelar","age":66,"location":"Mariantown"}},{"attributes":{"name":"Claudine Hilll-Dickinson","age":29,"location":"New Sharon"}},{"attributes":{"name":"Loraine Hauck","age":28,"location":"East Rolando"}},{"attributes":{"name":"Annabell Runolfsson","age":66,"location":"Marloncester"}},{"attributes":{"name":"Miss Oswaldo Labadie","age":51,"location":"Herminahaven"}},{"attributes":{"name":"Rex Jaskolski","age":75,"location":"Huntington"}},{"attributes":{"name":"Andrew Ryan","age":59,"location":"Clementinafield"}},{"attributes":{"name":"Lynette Streich","age":61,"location":"Cranston"}},{"attributes":{"name":"Rogers Mraz","age":76,"location":"Tyler"}},{"attributes":{"name":"Cortez Davis","age":27,"location":"Richland"}},{"attributes":{"name":"Alfred Klocko","age":49,"location":"Carrollside"}},{"attributes":{"name":"Jaron Tremblay","age":43,"location":"Catalinacester"}},{"attributes":{"name":"Latoya Kub","age":22,"location":"Toyberg"}},{"attributes":{"name":"Dolly Brakus","age":59,"location":"New Hiltonland"}},{"attributes":{"name":"Shari Price","age":30,"location":"Ronland"}},{"attributes":{"name":"Derrick Nienow","age":52,"location":"O'Connerberg"}},{"attributes":{"name":"Alberta Kerluke","age":42,"location":"Champlinfield"}},{"attributes":{"name":"Dorothy Kuvalis","age":66,"location":"East Neldafort"}},{"attributes":{"name":"Darryl Block","age":48,"location":"Croninport"}},{"attributes":{"name":"Lee Streich","age":44,"location":"West Genovevaport"}},{"attributes":{"name":"Annie Hammes","age":65,"location":"Port Teresachester"}},{"attributes":{"name":"Bobbie Bruen","age":72,"location":"Ethylburgh"}},{"attributes":{"name":"Vincent West","age":54,"location":"Port Maximillian"}},{"attributes":{"name":"Dr. Sylvan Schulist","age":28,"location":"Janieland"}},{"attributes":{"name":"Robin Mitchell","age":61,"location":"Brockton"}},{"attributes":{"name":"Ginger Gibson PhD","age":28,"location":"Lake Greenburgh"}},{"attributes":{"name":"Ross Cartwright","age":51,"location":"East Dorastad"}},{"attributes":{"name":"Caleigh Wunsch","age":65,"location":"Boehmfield"}},{"attributes":{"name":"Emily Spencer","age":50,"location":"Port Jaylon"}},{"attributes":{"name":"Erika Stiedemann-Haag","age":80,"location":"Hayestown"}},{"attributes":{"name":"Cedric Breitenberg","age":50,"location":"Trantowchester"}},{"attributes":{"name":"Abraham Wunsch MD","age":51,"location":"North Richland Hills"}},{"attributes":{"name":"Mack Schowalter","age":34,"location":"Fort Sammie"}},{"attributes":{"name":"Gregory Little DVM","age":76,"location":"Jakubowskifort"}},{"attributes":{"name":"Rolando Rolfson","age":31,"location":"Murraybury"}},{"attributes":{"name":"Tanya Hermann","age":47,"location":"Pfannerstillside"}},{"attributes":{"name":"Eleanor Johnston","age":69,"location":"Kozeybury"}},{"attributes":{"name":"Herman Thiel","age":74,"location":"Palm Harbor"}},{"attributes":{"name":"Samuel Dare","age":67,"location":"Sunrise"}},{"attributes":{"name":"Jeremy Kreiger-Fritsch","age":59,"location":"Port Eltonchester"}},{"attributes":{"name":"Amina Trantow","age":53,"location":"Tamaraberg"}},{"attributes":{"name":"Santiago Schamberger","age":25,"location":"Mandyfield"}},{"attributes":{"name":"Tommy Hamill","age":58,"location":"Port Emieberg"}},{"attributes":{"name":"Everett Schamberger","age":44,"location":"Kentonboro"}},{"attributes":{"name":"Marlon Ferry-Pagac Sr.","age":53,"location":"Bayamon"}},{"attributes":{"name":"Lois Flatley","age":51,"location":"Port Brett"}},{"attributes":{"name":"Mr. Adrien Volkman","age":23,"location":"Blickfurt"}},{"attributes":{"name":"Harriet Mayert","age":32,"location":"Lake Aminachester"}},{"attributes":{"name":"Erich Willms","age":40,"location":"East Naomieberg"}},{"attributes":{"name":"Tabitha Ryan","age":77,"location":"Cassinberg"}},{"attributes":{"name":"Ronnie Johns","age":25,"location":"Lee's Summit"}},{"attributes":{"name":"Josh Metz","age":56,"location":"Petaluma"}},{"attributes":{"name":"Janie Lynch","age":22,"location":"Lake Jeff"}},{"attributes":{"name":"Darrin Schuppe","age":45,"location":"Pearland"}},{"attributes":{"name":"Justice Orn DDS","age":20,"location":"Santiagotown"}},{"attributes":{"name":"Elvis Hahn","age":76,"location":"Fort Geovanni"}},{"attributes":{"name":"Forrest Denesik","age":70,"location":"Maceyport"}},{"attributes":{"name":"Bernadette Langworth","age":57,"location":"East Wilber"}},{"attributes":{"name":"Mavis Bogan","age":28,"location":"Boulder"}},{"attributes":{"name":"Pauline Prohaska","age":67,"location":"Ziemannport"}},{"attributes":{"name":"Mable Schaden","age":50,"location":"West Earnestchester"}},{"attributes":{"name":"Allen Treutel IV","age":33,"location":"D'Amorefield"}},{"attributes":{"name":"Colin Monahan III","age":34,"location":"Porterville"}},{"attributes":{"name":"Henrietta Tillman","age":67,"location":"Andersonboro"}},{"attributes":{"name":"Roland Cummerata","age":19,"location":"Maricopa"}},{"attributes":{"name":"Vernon Champlin","age":26,"location":"Lompoc"}},{"attributes":{"name":"Dean Wintheiser","age":21,"location":"Deecester"}},{"attributes":{"name":"Ms. Hoyt Stanton","age":33,"location":"Bartolettiborough"}},{"attributes":{"name":"Jaren Kovacek","age":77,"location":"Nitzschemouth"}},{"attributes":{"name":"Myrtice Wehner","age":20,"location":"West Regan"}},{"attributes":{"name":"Nathan Toy","age":43,"location":"Los Angeles"}},{"attributes":{"name":"Dominic Stokes Jr.","age":77,"location":"Kubburgh"}},{"attributes":{"name":"Helen Wintheiser","age":67,"location":"Ratketown"}},{"attributes":{"name":"Verna Zulauf","age":22,"location":"Apple Valley"}},{"attributes":{"name":"Kara Pfeffer","age":71,"location":"Curtisworth"}},{"attributes":{"name":"Shane Brakus","age":32,"location":"Rancho Cordova"}},{"attributes":{"name":"Kaci Reichel","age":32,"location":"Phoenix"}},{"attributes":{"name":"Brandt Ruecker","age":25,"location":"Davontefort"}},{"attributes":{"name":"Alene Borer","age":48,"location":"Fort Dontown"}},{"attributes":{"name":"Shaun Cartwright","age":64,"location":"Hirtheside"}},{"attributes":{"name":"Hassie Lind","age":32,"location":"Julienfield"}},{"attributes":{"name":"Miguel Davis","age":53,"location":"Lorenzaville"}},{"attributes":{"name":"Jovani Schuppe","age":45,"location":"Watersboro"}},{"attributes":{"name":"Norbert Cartwright","age":25,"location":"Ethelynport"}},{"attributes":{"name":"Mrs. Humberto O'Connell","age":46,"location":"New Maybell"}},{"attributes":{"name":"Ryley Dach","age":72,"location":"Christiansenmouth"}},{"attributes":{"name":"Dr. Terrell Medhurst","age":66,"location":"Chesterboro"}},{"attributes":{"name":"Charles Torphy I","age":55,"location":"North Candida"}},{"attributes":{"name":"Mabel Reynolds","age":31,"location":"Leoniebury"}},{"attributes":{"name":"Cameron Friesen","age":42,"location":"New Muhammadfort"}},{"attributes":{"name":"Virgil O'Connell","age":42,"location":"North Thea"}},{"attributes":{"name":"Dawn Herman","age":47,"location":"Joannieville"}},{"attributes":{"name":"Bernice Boyle","age":58,"location":"Camden"}},{"attributes":{"name":"June Mayert","age":70,"location":"New Rashadland"}},{"attributes":{"name":"Dale Hills MD","age":53,"location":"South Hill"}},{"attributes":{"name":"Sherman Dach","age":23,"location":"Port Haylie"}},{"attributes":{"name":"Katherine Von","age":59,"location":"Pembroke Pines"}},{"attributes":{"name":"Henrietta Purdy","age":43,"location":"Midland"}},{"attributes":{"name":"Henderson Hilpert","age":40,"location":"Constantinberg"}},{"attributes":{"name":"Katherine McKenzie","age":72,"location":"North Briancester"}},{"attributes":{"name":"Ms. Enrique Towne","age":59,"location":"Oak Lawn"}},{"attributes":{"name":"Jennie Connelly","age":22,"location":"East Keeganbury"}},{"attributes":{"name":"Kerry Rempel","age":29,"location":"Mayaguez"}},{"attributes":{"name":"Benjamin Weber","age":39,"location":"Lake Lexie"}},{"attributes":{"name":"Eveline Stark","age":45,"location":"North Virginiestad"}},{"attributes":{"name":"Winnifred Thiel","age":64,"location":"Weymouth Town"}},{"attributes":{"name":"Ms. Shawn Maggio","age":70,"location":"Justineburgh"}},{"attributes":{"name":"Raymundo Nader","age":31,"location":"Celestinostad"}},{"attributes":{"name":"Michele Toy","age":31,"location":"Wolfhaven"}},{"attributes":{"name":"Aglae Jacobi","age":73,"location":"Kirkland"}},{"attributes":{"name":"Dolores Hegmann","age":19,"location":"Quincy"}},{"attributes":{"name":"Brandi Sauer","age":34,"location":"Enidcester"}},{"attributes":{"name":"Felton Torp","age":46,"location":"South Chance"}},{"attributes":{"name":"Mr. Guiseppe Boehm","age":35,"location":"Kettering"}},{"attributes":{"name":"Emily Hackett","age":46,"location":"Fort Gail"}},{"attributes":{"name":"Amelia Yost","age":76,"location":"New Ceasarside"}},{"attributes":{"name":"Mathilde Lehner","age":67,"location":"Hopecester"}},{"attributes":{"name":"Eriberto Will","age":26,"location":"Isabellastad"}},{"attributes":{"name":"Raquel Von","age":19,"location":"Fond du Lac"}},{"attributes":{"name":"Shad Altenwerth","age":29,"location":"Skilesburgh"}},{"attributes":{"name":"Teri Reynolds","age":71,"location":"Whittier"}},{"attributes":{"name":"Rex Sawayn","age":54,"location":"East Fridacester"}},{"attributes":{"name":"Rachel Spencer","age":46,"location":"Rathview"}},{"attributes":{"name":"Maribel Nolan","age":20,"location":"East Fionafort"}},{"attributes":{"name":"Jesse Sanford","age":20,"location":"Ortizbury"}},{"attributes":{"name":"Larry Bruen","age":25,"location":"Fort Stantoncester"}},{"attributes":{"name":"Juan Kuhn","age":44,"location":"Port Esteban"}},{"attributes":{"name":"Kelley Hudson","age":45,"location":"Hendersonhaven"}},{"attributes":{"name":"Mr. Mack Klocko","age":40,"location":"Fort Jeniferstad"}},{"attributes":{"name":"Lance White","age":41,"location":"Mayrastad"}},{"attributes":{"name":"Sibyl Bernier DDS","age":43,"location":"Fort Penelopestead"}},{"attributes":{"name":"Margie Jaskolski","age":67,"location":"New Faye"}},{"attributes":{"name":"Brenda Carter","age":64,"location":"Rohanmouth"}},{"attributes":{"name":"Demarcus Weber","age":79,"location":"East Stevetown"}},{"attributes":{"name":"Jackie Dickens","age":30,"location":"Olafchester"}},{"attributes":{"name":"Cornelius Kovacek","age":55,"location":"Erikberg"}},{"attributes":{"name":"Trey Medhurst IV","age":20,"location":"East Mathew"}},{"attributes":{"name":"Thelma Leuschke-Gorczany","age":73,"location":"North Rebeca"}},{"attributes":{"name":"Marley Schaefer","age":25,"location":"Ikeboro"}},{"attributes":{"name":"Jeremie Johnson","age":52,"location":"West Johnson"}},{"attributes":{"name":"Bernard Larson","age":61,"location":"Port Michelleberg"}},{"attributes":{"name":"Max Roob","age":33,"location":"Michaelafurt"}},{"attributes":{"name":"Elisha Blanda","age":50,"location":"Des Moines"}},{"attributes":{"name":"Allan Mueller","age":71,"location":"East Orpha"}},{"attributes":{"name":"David Larson","age":26,"location":"East Bria"}},{"attributes":{"name":"Neha Hickle","age":69,"location":"Namestead"}},{"attributes":{"name":"Myrna Conroy","age":48,"location":"West Marlinburgh"}},{"attributes":{"name":"Bridget Reinger","age":57,"location":"Kyleighmouth"}},{"attributes":{"name":"Sally Lehner-King","age":18,"location":"West Artton"}},{"attributes":{"name":"Lee Grant","age":38,"location":"Georgeside"}},{"attributes":{"name":"Dexter Halvorson","age":52,"location":"Hattiesburg"}},{"attributes":{"name":"Marlene Morar","age":77,"location":"Fort Kathrynshire"}},{"attributes":{"name":"Dana Wehner","age":55,"location":"Isacchester"}},{"attributes":{"name":"Ricky Larkin","age":68,"location":"Thereseside"}},{"attributes":{"name":"Lionel Abshire","age":75,"location":"Cecileport"}},{"attributes":{"name":"Marcelino Kerluke","age":35,"location":"Gresham"}},{"attributes":{"name":"Marshall McClure-Jaskolski","age":20,"location":"Charlottesville"}},{"attributes":{"name":"Mr. Sam Berge-DuBuque","age":41,"location":"Dixiestead"}},{"attributes":{"name":"Leo Dicki","age":40,"location":"North Maribel"}},{"attributes":{"name":"Daron Hoeger","age":78,"location":"Ferryborough"}},{"attributes":{"name":"Bob Predovic","age":52,"location":"Vandervortfield"}},{"attributes":{"name":"Margaret Vandervort","age":23,"location":"Lake Tinastead"}},{"attributes":{"name":"Mrs. Zachary Mohr Sr.","age":36,"location":"Maxieberg"}},{"attributes":{"name":"Dr. Roxanne Hayes","age":49,"location":"Missoula"}},{"attributes":{"name":"Diane Fritsch","age":22,"location":"South Noble"}},{"attributes":{"name":"Cameron Larson","age":78,"location":"Paradise"}},{"attributes":{"name":"Sonya Hodkiewicz","age":31,"location":"Marvinside"}},{"attributes":{"name":"Kathleen Wunsch","age":43,"location":"New Kasandra"}},{"attributes":{"name":"Joannie Crist DVM","age":55,"location":"Johnstonhaven"}},{"attributes":{"name":"Angela Jones III","age":77,"location":"Mireilleboro"}},{"attributes":{"name":"Max Herzog","age":37,"location":"South Lilly"}},{"attributes":{"name":"Miss Alma Schroeder","age":29,"location":"Mayerview"}},{"attributes":{"name":"Miss Bridget Marks-Sipes IV","age":56,"location":"Farrellshire"}},{"attributes":{"name":"Wilson Hermann-Stanton","age":28,"location":"Minneapolis"}},{"attributes":{"name":"Geraldine Legros","age":68,"location":"Malikabury"}},{"attributes":{"name":"Francis Anderson","age":27,"location":"Nayelistad"}},{"attributes":{"name":"Jacynthe Heathcote","age":66,"location":"Dale City"}},{"attributes":{"name":"Edna Schoen","age":43,"location":"Prosaccoburgh"}},{"attributes":{"name":"Lisandro Larkin","age":51,"location":"Camden"}},{"attributes":{"name":"Miss Jamel Crooks","age":25,"location":"Glendale"}},{"attributes":{"name":"Mr. Annette Ferry II","age":27,"location":"Sybleworth"}},{"attributes":{"name":"Christopher Crooks","age":24,"location":"East Bulah"}},{"attributes":{"name":"Adam Harber","age":74,"location":"Chino"}},{"attributes":{"name":"Miss James Doyle","age":33,"location":"Lake Anabelleton"}},{"attributes":{"name":"Eileen Huels-Kovacek","age":62,"location":"Harveycester"}},{"attributes":{"name":"Karen Reichel","age":51,"location":"Port Hollie"}},{"attributes":{"name":"Terri Koepp III","age":19,"location":"Lake Carli"}},{"attributes":{"name":"Jodi Erdman","age":66,"location":"Hammesberg"}},{"attributes":{"name":"Lamar Stiedemann","age":37,"location":"Missoula"}},{"attributes":{"name":"Cecelia Satterfield","age":31,"location":"Port Helen"}},{"attributes":{"name":"Emma Tillman","age":39,"location":"Salina"}},{"attributes":{"name":"Terry Hickle","age":25,"location":"West Freedaworth"}},{"attributes":{"name":"Brant Cruickshank","age":75,"location":"New Teagan"}},{"attributes":{"name":"Dr. Karl Johnson","age":25,"location":"Arnoldoboro"}},{"attributes":{"name":"Lillie Ferry","age":52,"location":"Somerville"}},{"attributes":{"name":"Della Graham I","age":41,"location":"Emmyboro"}},{"attributes":{"name":"Omer Haley","age":72,"location":"Beaverton"}},{"attributes":{"name":"Mylene Keebler","age":52,"location":"Paterson"}},{"attributes":{"name":"Abagail Kertzmann","age":80,"location":"Homenickcester"}},{"attributes":{"name":"Felipa Kohler","age":78,"location":"Elzafurt"}},{"attributes":{"name":"Ellis Cruickshank","age":71,"location":"Hialeah"}},{"attributes":{"name":"Darrel Pagac","age":77,"location":"Waelchiland"}},{"attributes":{"name":"Sergio Runolfsson","age":74,"location":"Celiafield"}},{"attributes":{"name":"Allen Ratke","age":51,"location":"Lake Fosterborough"}},{"attributes":{"name":"Mrs. Albertha Boyer","age":20,"location":"Stromanshire"}},{"attributes":{"name":"Jaime Krajcik","age":23,"location":"Alafaya"}},{"attributes":{"name":"Stephanie Gulgowski-Cassin","age":74,"location":"South Garret"}},{"attributes":{"name":"Sophia Emmerich","age":31,"location":"Fort Sasha"}},{"attributes":{"name":"Lindsay Dickinson I","age":56,"location":"Erneststad"}},{"attributes":{"name":"Simon Lesch","age":76,"location":"North Raleighfort"}},{"attributes":{"name":"Scot Paucek","age":53,"location":"Murrayland"}},{"attributes":{"name":"Isaac Boehm","age":67,"location":"Waylonshire"}},{"attributes":{"name":"Erica Klein","age":50,"location":"Gutmannstad"}},{"attributes":{"name":"Thurman Hartmann","age":48,"location":"Kaylistad"}},{"attributes":{"name":"Lesley Adams","age":65,"location":"South Wardmouth"}},{"attributes":{"name":"Jack Barrows","age":43,"location":"Lockmanport"}},{"attributes":{"name":"Dr. Vicky Howe","age":51,"location":"Pine Hills"}},{"attributes":{"name":"Clyde Cremin","age":32,"location":"North Hershel"}},{"attributes":{"name":"Miss Carole Heaney","age":43,"location":"Stevechester"}},{"attributes":{"name":"Rudy Grimes MD","age":47,"location":"Adamsborough"}},{"attributes":{"name":"Porter Kuphal","age":24,"location":"Corvallis"}},{"attributes":{"name":"Nicolette Blanda","age":69,"location":"Oshkosh"}},{"attributes":{"name":"Darin Lehner","age":69,"location":"Johnstonworth"}},{"attributes":{"name":"Marta Hoeger","age":39,"location":"New Olafort"}},{"attributes":{"name":"Clyde Beatty","age":21,"location":"Torphaven"}},{"attributes":{"name":"Joshua McCullough","age":29,"location":"East Danteside"}},{"attributes":{"name":"Eva Rippin-Labadie","age":46,"location":"VonRuedenmouth"}},{"attributes":{"name":"Valerie Stoltenberg","age":64,"location":"Kaydenborough"}},{"attributes":{"name":"Lucille Skiles","age":46,"location":"Adamsstead"}},{"attributes":{"name":"Leroy Bayer","age":18,"location":"Fort Garett"}},{"attributes":{"name":"Liza Schneider","age":80,"location":"Ziemannside"}},{"attributes":{"name":"Jessica Mante","age":66,"location":"Port Maritza"}},{"attributes":{"name":"Mr. Marc Farrell","age":50,"location":"Hillsfield"}},{"attributes":{"name":"Bethany Konopelski","age":36,"location":"Darrionshire"}},{"attributes":{"name":"Jefferey Schneider","age":34,"location":"Idellaboro"}},{"attributes":{"name":"Mrs. Tina Dickinson","age":75,"location":"Cartwrightstad"}},{"attributes":{"name":"Miss Bradford Windler","age":53,"location":"Robertaview"}},{"attributes":{"name":"Gabriel Kunze","age":20,"location":"Johnnyville"}},{"attributes":{"name":"Clarissa Gulgowski","age":58,"location":"Hollywood"}},{"attributes":{"name":"Derrick Kub","age":75,"location":"Kettering"}},{"attributes":{"name":"Lula Swift DDS","age":72,"location":"South Whittier"}},{"attributes":{"name":"Florence Hartmann DVM","age":27,"location":"Wisokyberg"}},{"attributes":{"name":"Harry Beer","age":49,"location":"Moline"}},{"attributes":{"name":"Jerome Yundt","age":76,"location":"Casperview"}},{"attributes":{"name":"Olen Lindgren","age":54,"location":"Brookhaven"}},{"attributes":{"name":"Nathanial Ebert","age":70,"location":"Lake Camille"}},{"attributes":{"name":"Walton Fisher","age":33,"location":"Kertzmannport"}},{"attributes":{"name":"Ricky VonRueden","age":33,"location":"Buffalo Grove"}},{"attributes":{"name":"Jarrett Flatley","age":21,"location":"Aaronborough"}},{"attributes":{"name":"Hilario Christiansen","age":19,"location":"New Brain"}},{"attributes":{"name":"Randolph Moore","age":44,"location":"Farrellmouth"}},{"attributes":{"name":"Bob Windler","age":69,"location":"Darrinmouth"}},{"attributes":{"name":"Guadalupe Stokes","age":76,"location":"East Alejandrinfort"}},{"attributes":{"name":"Dr. Orland Boyle","age":66,"location":"New Helenview"}},{"attributes":{"name":"Patrick Towne","age":28,"location":"South Minatown"}},{"attributes":{"name":"Daren Rogahn","age":66,"location":"Fort Augustus"}},{"attributes":{"name":"Ryan McGlynn","age":56,"location":"Fort Michaelborough"}},{"attributes":{"name":"Ms. Liam Crist","age":76,"location":"West Justonville"}},{"attributes":{"name":"May Bartell","age":43,"location":"North Eduardo"}},{"attributes":{"name":"Guadalupe Volkman","age":62,"location":"South Hiram"}},{"attributes":{"name":"Aidan Hayes","age":18,"location":"Tillmanborough"}},{"attributes":{"name":"Casey Schumm","age":55,"location":"Minervastad"}},{"attributes":{"name":"Kathleen Price-Schoen","age":78,"location":"Ezrashire"}},{"attributes":{"name":"Dr. Lee Harris","age":46,"location":"South Adolph"}},{"attributes":{"name":"Shane Schneider","age":69,"location":"New Woodrow"}},{"attributes":{"name":"Serenity Frami","age":36,"location":"Timothyview"}},{"attributes":{"name":"Laurence Mills-Howell","age":52,"location":"South Julianafort"}},{"attributes":{"name":"Ms. Dominique Rutherford","age":57,"location":"Prosaccomouth"}},{"attributes":{"name":"Rolando Kuhn","age":58,"location":"New Stella"}},{"attributes":{"name":"Aliya Torp V","age":55,"location":"Lavadaside"}},{"attributes":{"name":"Sherry Douglas","age":56,"location":"Denesikstead"}},{"attributes":{"name":"April Schmeler","age":65,"location":"San Rafael"}},{"attributes":{"name":"Barry Windler","age":52,"location":"Lindsayport"}},{"attributes":{"name":"Ollie Runolfsdottir","age":72,"location":"Ortizburgh"}},{"attributes":{"name":"Mr. Lindsey Lesch","age":47,"location":"Beerport"}},{"attributes":{"name":"Krystal Schmidt","age":77,"location":"South Olaf"}},{"attributes":{"name":"Johnathan Cormier","age":23,"location":"Fort Martinchester"}},{"attributes":{"name":"Leon Price","age":24,"location":"East Lilliestad"}},{"attributes":{"name":"Ron Bechtelar","age":52,"location":"East Adeleworth"}},{"attributes":{"name":"Madeline Schultz","age":61,"location":"Lake Aminaborough"}},{"attributes":{"name":"Leigh Collier","age":54,"location":"South Maryjane"}},{"attributes":{"name":"Mathias Leannon","age":76,"location":"Scottsdale"}},{"attributes":{"name":"Timmy Ullrich","age":33,"location":"Ebonyfield"}},{"attributes":{"name":"Ella McKenzie","age":27,"location":"Titoshire"}},{"attributes":{"name":"Winifred Spencer","age":75,"location":"West Lueland"}},{"attributes":{"name":"Kelli O'Keefe","age":33,"location":"Port Edison"}},{"attributes":{"name":"Wayne Jakubowski","age":57,"location":"West Sacramento"}},{"attributes":{"name":"Ayden Dibbert","age":26,"location":"Langworthland"}},{"attributes":{"name":"Jesus Roob","age":26,"location":"Lylatown"}},{"attributes":{"name":"Chad Kulas","age":55,"location":"McAllen"}},{"attributes":{"name":"Ms. Terry Dickens V","age":30,"location":"New Sincerebury"}},{"attributes":{"name":"Mrs. Natasha Reichel","age":42,"location":"Cotychester"}},{"attributes":{"name":"Ned Goldner","age":58,"location":"East Carleton"}},{"attributes":{"name":"Miss Betty Zulauf-Swaniawski","age":45,"location":"East Kasandrashire"}},{"attributes":{"name":"Mr. Jazmyne Jerde PhD","age":65,"location":"Jermainport"}},{"attributes":{"name":"Angela McGlynn","age":24,"location":"West Gordonstead"}},{"attributes":{"name":"Maxine Leffler","age":67,"location":"East Patricia"}},{"attributes":{"name":"Conrad Kiehn","age":40,"location":"Logan"}},{"attributes":{"name":"Natalie Gleichner","age":64,"location":"Schuppechester"}},{"attributes":{"name":"Felicia Goodwin","age":52,"location":"Nicolasfurt"}},{"attributes":{"name":"Antoinette Mueller","age":27,"location":"Hansenview"}},{"attributes":{"name":"Doreen Wiza","age":57,"location":"Lake Seanport"}},{"attributes":{"name":"Maddison Schumm","age":32,"location":"Mohamedfurt"}},{"attributes":{"name":"Johann Schaden","age":43,"location":"Othafurt"}},{"attributes":{"name":"Alessandra Ullrich","age":66,"location":"Haylieville"}},{"attributes":{"name":"Dr. Jessica Kuhlman","age":48,"location":"Lemkechester"}},{"attributes":{"name":"Derrick Brekke","age":66,"location":"Tinley Park"}},{"attributes":{"name":"Miss Mildred Gulgowski III","age":29,"location":"Bradlyhaven"}},{"attributes":{"name":"Ramona Barton DDS","age":57,"location":"New Traceland"}},{"attributes":{"name":"Maia Toy","age":72,"location":"Haleyside"}},{"attributes":{"name":"Darrel Kozey-Zieme","age":24,"location":"West Kurtisburgh"}},{"attributes":{"name":"Wayne Wiza","age":47,"location":"North Jonathonborough"}},{"attributes":{"name":"Leigh Schoen","age":18,"location":"Altoona"}},{"attributes":{"name":"Ulices Muller","age":79,"location":"Reichelbury"}},{"attributes":{"name":"Armani Lemke","age":54,"location":"North Mellie"}},{"attributes":{"name":"Clotilde Koelpin","age":49,"location":"Boehmton"}},{"attributes":{"name":"Ms. Nora Robel","age":27,"location":"Fort Catalina"}},{"attributes":{"name":"Luciano Lang","age":38,"location":"North Maxworth"}},{"attributes":{"name":"Fernando Feeney-Batz","age":39,"location":"Maximechester"}},{"attributes":{"name":"Kris Hessel","age":51,"location":"Elianeboro"}},{"attributes":{"name":"Jennifer Beier","age":18,"location":"South Cesar"}},{"attributes":{"name":"Laverna Bode","age":66,"location":"Menifee"}},{"attributes":{"name":"Elta Wolf-Muller","age":71,"location":"New Patiencetown"}},{"attributes":{"name":"Rachel Dach","age":78,"location":"Axelton"}},{"attributes":{"name":"Travis Reichert","age":22,"location":"Cummingscester"}},{"attributes":{"name":"Nichole Howell","age":68,"location":"Port Lyda"}},{"attributes":{"name":"Michelle Nienow","age":19,"location":"Leoraburgh"}},{"attributes":{"name":"Chelsey Mueller","age":45,"location":"Tomasaburgh"}},{"attributes":{"name":"Anna Wuckert","age":35,"location":"Thousand Oaks"}},{"attributes":{"name":"Koby Bahringer-Schaden","age":64,"location":"Fountain Valley"}},{"attributes":{"name":"Jennie Marquardt","age":56,"location":"Lake Claystad"}},{"attributes":{"name":"Mr. Henry Feil","age":29,"location":"Humbertoview"}},{"attributes":{"name":"Priscilla Lindgren","age":63,"location":"Priceside"}},{"attributes":{"name":"Grant Senger PhD","age":26,"location":"West Genesis"}},{"attributes":{"name":"May Davis","age":37,"location":"Hillsview"}},{"attributes":{"name":"Jill Douglas","age":63,"location":"Herzogton"}},{"attributes":{"name":"Shane Hammes","age":37,"location":"Mobile"}},{"attributes":{"name":"Dale Roob","age":34,"location":"Pearl City"}},{"attributes":{"name":"Christina Bergnaum","age":37,"location":"Sunnyvale"}},{"attributes":{"name":"Vena Schuppe","age":62,"location":"Mackburgh"}},{"attributes":{"name":"Dr. Marlen Feil","age":46,"location":"Tillmanstad"}},{"attributes":{"name":"Laurie Zemlak","age":31,"location":"Nampa"}},{"attributes":{"name":"Nestor Hettinger","age":78,"location":"Olenstad"}},{"attributes":{"name":"Arturo Kertzmann","age":75,"location":"Norman"}},{"attributes":{"name":"Chasity Schoen","age":65,"location":"Costa Mesa"}},{"attributes":{"name":"Blake Schulist","age":53,"location":"West Caitlynbury"}},{"attributes":{"name":"Jonathan Bradtke","age":75,"location":"Port Derek"}},{"attributes":{"name":"Madalyn McGlynn","age":38,"location":"Julioside"}},{"attributes":{"name":"Israel Cartwright","age":46,"location":"Tillmanfield"}},{"attributes":{"name":"Waylon Treutel","age":64,"location":"Quigleyside"}},{"attributes":{"name":"Mathew Wilkinson","age":33,"location":"Port Tedton"}},{"attributes":{"name":"Ramona Heathcote","age":45,"location":"Wisozkstad"}},{"attributes":{"name":"Cheryl Gerlach","age":28,"location":"Goldastead"}},{"attributes":{"name":"Carroll Cruickshank","age":69,"location":"Hamillhaven"}},{"attributes":{"name":"Vidal Kohler","age":25,"location":"Rogahnmouth"}},{"attributes":{"name":"Abel MacGyver","age":70,"location":"Terrychester"}},{"attributes":{"name":"Dr. Gwendolyn Windler","age":74,"location":"Burleyhaven"}},{"attributes":{"name":"Noemy Maggio","age":21,"location":"Woodland"}},{"attributes":{"name":"Zita Hand","age":42,"location":"Coconut Creek"}},{"attributes":{"name":"Philip Ernser","age":49,"location":"Myriamside"}},{"attributes":{"name":"June Legros","age":76,"location":"Burke"}},{"attributes":{"name":"Lamar Denesik","age":34,"location":"Lake Amariland"}},{"attributes":{"name":"Betty Wehner","age":61,"location":"Aspen Hill"}},{"attributes":{"name":"Ollie Bauch-Hoeger","age":78,"location":"Weberville"}},{"attributes":{"name":"Erwin Crona","age":77,"location":"Kleinshire"}},{"attributes":{"name":"Lillian Auer","age":59,"location":"Flint"}},{"attributes":{"name":"Napoleon Mosciski","age":63,"location":"Kittychester"}},{"attributes":{"name":"Turner Brekke","age":24,"location":"Tamarac"}},{"attributes":{"name":"Ellen Lind","age":55,"location":"Warner Robins"}},{"attributes":{"name":"Liza Casper","age":37,"location":"Bruceburgh"}},{"attributes":{"name":"Jaden Stroman","age":30,"location":"New Manley"}},{"attributes":{"name":"Isabelle Bins","age":20,"location":"North Laurence"}},{"attributes":{"name":"Patricia Lowe DDS","age":56,"location":"Port Estrellaville"}},{"attributes":{"name":"Noel Spencer","age":74,"location":"Enosworth"}},{"attributes":{"name":"Rollin Kutch","age":53,"location":"Dayanafield"}},{"attributes":{"name":"Dr. Xzavier Stracke-Stiedemann","age":24,"location":"Marianeview"}},{"attributes":{"name":"Dominic Lang","age":30,"location":"Ericamouth"}},{"attributes":{"name":"Jamie Corkery","age":31,"location":"Kennedyland"}},{"attributes":{"name":"Lorena Kuhn","age":45,"location":"South Lisandroburgh"}},{"attributes":{"name":"David Feil","age":62,"location":"New Trycia"}},{"attributes":{"name":"Craig Kris","age":40,"location":"Robertsstead"}},{"attributes":{"name":"Jean Greenholt","age":59,"location":"Fort Collins"}},{"attributes":{"name":"Dr. Ted Schaefer","age":22,"location":"Palatine"}},{"attributes":{"name":"Carmine Hauck","age":21,"location":"Glovermouth"}},{"attributes":{"name":"Katelin Donnelly PhD","age":36,"location":"Escondido"}},{"attributes":{"name":"Paris Bruen","age":71,"location":"Amaliaview"}},{"attributes":{"name":"Whitney Swaniawski","age":72,"location":"Oakland Park"}},{"attributes":{"name":"Lexus Klein","age":75,"location":"Westfield"}},{"attributes":{"name":"Luis Bailey","age":28,"location":"South Jalyn"}},{"attributes":{"name":"Destany Wolf","age":20,"location":"Port Forrestview"}},{"attributes":{"name":"Merritt Nader","age":62,"location":"East Bernardfield"}},{"attributes":{"name":"Milan Watsica V","age":57,"location":"Arturofort"}},{"attributes":{"name":"Dr. Clement Tremblay","age":46,"location":"Lake Melissaworth"}},{"attributes":{"name":"Jerrold Veum","age":20,"location":"Fort Al"}},{"attributes":{"name":"Flora Hintz","age":39,"location":"New Kattieboro"}},{"attributes":{"name":"Lena Casper","age":41,"location":"Esperanzafurt"}},{"attributes":{"name":"Chadrick Little","age":47,"location":"Meggieburgh"}},{"attributes":{"name":"Mrs. Beulah Satterfield","age":80,"location":"McKenzietown"}},{"attributes":{"name":"Phyllis Haag DDS","age":67,"location":"Dickiside"}},{"attributes":{"name":"Sim Quitzon","age":37,"location":"Kiaraborough"}},{"attributes":{"name":"Gordon Ward","age":47,"location":"Port Maiahaven"}},{"attributes":{"name":"Verona Turner III","age":38,"location":"Port Mark"}},{"attributes":{"name":"Claude Buckridge","age":59,"location":"North Karolann"}},{"attributes":{"name":"Kiley O'Reilly","age":64,"location":"South Flaviotown"}},{"attributes":{"name":"Alma Yost","age":73,"location":"West Odaberg"}},{"attributes":{"name":"Leroy Runolfsson-Yundt","age":47,"location":"Lake Adriana"}},{"attributes":{"name":"Marcos Rodriguez","age":77,"location":"North Lonnie"}},{"attributes":{"name":"Maximo Hauck","age":39,"location":"Summerville"}},{"attributes":{"name":"Eduardo Fay","age":58,"location":"Fort Xavierville"}},{"attributes":{"name":"Golda Veum","age":19,"location":"Robertaview"}},{"attributes":{"name":"Dr. Patty Hammes","age":42,"location":"Port Jadestead"}},{"attributes":{"name":"Miss Wade Paucek","age":27,"location":"Fort Ethelyn"}},{"attributes":{"name":"Miss Cathrine Skiles","age":37,"location":"Port Agustina"}},{"attributes":{"name":"Nia Bode","age":31,"location":"Klingstead"}},{"attributes":{"name":"Marielle Dach","age":34,"location":"Lake Charles"}},{"attributes":{"name":"Constantin D'Amore","age":21,"location":"Lake Gilbertshire"}},{"attributes":{"name":"Mr. Earnestine Kilback","age":40,"location":"Jocelynport"}},{"attributes":{"name":"Rene Hermann","age":41,"location":"Gladycebury"}},{"attributes":{"name":"Ian Altenwerth","age":79,"location":"Kameronville"}},{"attributes":{"name":"Ramon Blanda","age":28,"location":"Rockwall"}},{"attributes":{"name":"Edmond Breitenberg-Kuhn","age":32,"location":"Stehrview"}},{"attributes":{"name":"Merle Barton","age":36,"location":"Kalamazoo"}},{"attributes":{"name":"Luther Bayer","age":42,"location":"North Patsy"}},{"attributes":{"name":"Susanna Littel III","age":47,"location":"Lake Nolanville"}},{"attributes":{"name":"Kenny Bradtke","age":71,"location":"Lake Rodfurt"}},{"attributes":{"name":"Sidney Heaney","age":58,"location":"Cummingsworth"}},{"attributes":{"name":"Alison Abernathy","age":52,"location":"Anibalshire"}},{"attributes":{"name":"Vince Parker","age":58,"location":"South Tatyanaland"}},{"attributes":{"name":"Dr. Clarence Jaskolski","age":29,"location":"Fort Dallas"}},{"attributes":{"name":"Ms. Joanne Armstrong","age":37,"location":"Linden"}},{"attributes":{"name":"Suzanne Koch","age":22,"location":"North Kaylin"}},{"attributes":{"name":"Brett Streich","age":31,"location":"West Art"}},{"attributes":{"name":"Queen Waelchi","age":68,"location":"East Sandrineburgh"}},{"attributes":{"name":"Mr. Lester Schumm","age":79,"location":"Ibrahimton"}},{"attributes":{"name":"Syble Hayes","age":52,"location":"Reedburgh"}},{"attributes":{"name":"Tianna Kris","age":70,"location":"West Mariana"}},{"attributes":{"name":"Ana Prosacco","age":26,"location":"Frisco"}},{"attributes":{"name":"Cade Blick","age":28,"location":"North Aaronfield"}},{"attributes":{"name":"Ms. Desiree Bayer","age":30,"location":"Rockwall"}},{"attributes":{"name":"Elsie Franecki","age":59,"location":"Port Ocie"}},{"attributes":{"name":"Dr. Jaime Turcotte","age":66,"location":"East Tysonbury"}},{"attributes":{"name":"Merle Rice","age":26,"location":"Lake Makennatown"}},{"attributes":{"name":"Alvin Fahey","age":63,"location":"Gardena"}},{"attributes":{"name":"Monica Purdy","age":53,"location":"Lake Maida"}},{"attributes":{"name":"Nellie Smith","age":47,"location":"Port Rahulborough"}},{"attributes":{"name":"Gertrude Labadie","age":34,"location":"Lake Milfordboro"}},{"attributes":{"name":"Chris Ryan","age":50,"location":"North Diamondfield"}},{"attributes":{"name":"Arnold Mraz","age":62,"location":"Brisatown"}},{"attributes":{"name":"Julio Pagac","age":70,"location":"Baileestad"}},{"attributes":{"name":"Maryann Carroll","age":28,"location":"Abelardochester"}},{"attributes":{"name":"Sandra Mosciski","age":53,"location":"East Sylvan"}},{"attributes":{"name":"Mr. Tanya Treutel","age":53,"location":"Bradhaven"}},{"attributes":{"name":"Rosemarie Dooley","age":74,"location":"Celinemouth"}},{"attributes":{"name":"Rae Kulas PhD","age":65,"location":"Ullrichborough"}},{"attributes":{"name":"Sheldon Lynch","age":76,"location":"South Buford"}},{"attributes":{"name":"Isaac Skiles","age":58,"location":"Nicolasburgh"}},{"attributes":{"name":"Leticia Jacobi Jr.","age":58,"location":"Ryleighfort"}},{"attributes":{"name":"Marcella Schmitt","age":70,"location":"East Trudie"}},{"attributes":{"name":"Andy Casper","age":34,"location":"Fort Arvelhaven"}},{"attributes":{"name":"Kristen Towne","age":60,"location":"South Danielleboro"}},{"attributes":{"name":"Ms. Ressie Kreiger","age":28,"location":"East Katlyn"}},{"attributes":{"name":"Amber Rath","age":69,"location":"Selenaview"}},{"attributes":{"name":"Josefina Ratke","age":76,"location":"Damarisshire"}},{"attributes":{"name":"Rosa Donnelly","age":79,"location":"South Jonathanchester"}},{"attributes":{"name":"Nellie Franecki","age":68,"location":"Thompsonton"}},{"attributes":{"name":"Mattie Gislason","age":69,"location":"Berwyn"}},{"attributes":{"name":"Americo Wilkinson","age":37,"location":"Fort Agustin"}},{"attributes":{"name":"Mack Krajcik","age":43,"location":"Fort Maci"}},{"attributes":{"name":"Aaron Terry-Koch","age":46,"location":"New Waylon"}},{"attributes":{"name":"Andreanne Considine","age":50,"location":"Moencester"}},{"attributes":{"name":"Dr. Pat Schimmel","age":22,"location":"South Giles"}},{"attributes":{"name":"Juana Hammes MD","age":77,"location":"Akeemfield"}},{"attributes":{"name":"Elmore Stamm","age":45,"location":"Lake Eulaliafurt"}},{"attributes":{"name":"Maurine Brakus","age":20,"location":"West Nyastad"}},{"attributes":{"name":"Bobbie Gutmann","age":57,"location":"Washington"}},{"attributes":{"name":"Belinda Metz","age":29,"location":"North Wava"}},{"attributes":{"name":"Cornelius Hagenes","age":21,"location":"Ebertstad"}},{"attributes":{"name":"Yvonne Hegmann Jr.","age":28,"location":"Eladiocester"}},{"attributes":{"name":"Sarah Doyle","age":41,"location":"Port Roxane"}},{"attributes":{"name":"Milford Hartmann","age":75,"location":"North Royalstead"}},{"attributes":{"name":"Bennett Kub","age":56,"location":"New Jennieburgh"}},{"attributes":{"name":"Sam Russel","age":37,"location":"Commerce City"}},{"attributes":{"name":"Ethel Ullrich V","age":38,"location":"Wintheiserside"}},{"attributes":{"name":"Mrs. Pierce Beahan","age":40,"location":"Kassulkebury"}},{"attributes":{"name":"Richard Robel","age":50,"location":"North Marianahaven"}},{"attributes":{"name":"Mrs. Johnnie Bechtelar","age":66,"location":"North Carol"}},{"attributes":{"name":"Albert Fay-Abshire","age":31,"location":"Fort Lilliana"}},{"attributes":{"name":"Bessie Steuber","age":64,"location":"South German"}},{"attributes":{"name":"Rudolph Herzog","age":32,"location":"Port Nia"}},{"attributes":{"name":"Carlton Rodriguez","age":27,"location":"Alberthaland"}},{"attributes":{"name":"Harriet Emmerich","age":73,"location":"North Lonnie"}},{"attributes":{"name":"Hubert Johns","age":74,"location":"New Kaylah"}},{"attributes":{"name":"Patrick Weimann","age":66,"location":"Wisozkstad"}},{"attributes":{"name":"Gwendolyn Emmerich IV","age":74,"location":"West Floytown"}},{"attributes":{"name":"Frank Ward-Gibson","age":52,"location":"Lake Kenya"}},{"attributes":{"name":"Cydney Reinger","age":29,"location":"Arliemouth"}},{"attributes":{"name":"Lavada Hansen","age":51,"location":"Nashville-Davidson"}},{"attributes":{"name":"Robbie Kling I","age":68,"location":"Wildermanboro"}},{"attributes":{"name":"Woodrow Brakus","age":63,"location":"Trishafield"}},{"attributes":{"name":"Ruben Swift","age":62,"location":"Fort Nicostead"}},{"attributes":{"name":"Alvina Borer","age":38,"location":"Watersworth"}},{"attributes":{"name":"Dr. Ernesto Smitham","age":58,"location":"New Troyton"}},{"attributes":{"name":"Mrs. Heidi Will","age":59,"location":"West Luratown"}},{"attributes":{"name":"Karley Rogahn","age":41,"location":"Kuphalworth"}},{"attributes":{"name":"Wade Toy","age":62,"location":"New Colin"}},{"attributes":{"name":"Joanna Gislason","age":35,"location":"Marlinton"}},{"attributes":{"name":"John Wiegand","age":57,"location":"Jeffersonville"}},{"attributes":{"name":"Miss Monica Haley","age":35,"location":"Fort Oren"}},{"attributes":{"name":"Lorenzo Gleichner","age":73,"location":"Lake Tess"}},{"attributes":{"name":"Tyrone Flatley","age":65,"location":"East Jasenton"}},{"attributes":{"name":"Oliver Kirlin","age":41,"location":"Graceborough"}},{"attributes":{"name":"Eldon Corkery","age":53,"location":"South Rubyport"}},{"attributes":{"name":"Jermaine Mills","age":73,"location":"Lake Antoninastad"}},{"attributes":{"name":"Stefanie Stehr","age":50,"location":"Pharr"}},{"attributes":{"name":"Essie Collins","age":80,"location":"Port Rolandotown"}},{"attributes":{"name":"Kenyon Ziemann V","age":50,"location":"Port Edgartown"}},{"attributes":{"name":"Ms. Rita Rau-Cummerata","age":29,"location":"Lisettechester"}},{"attributes":{"name":"Dr. Vincent Dickinson","age":42,"location":"Hazelboro"}},{"attributes":{"name":"Dr. Melvin Corwin","age":79,"location":"Herzogbury"}},{"attributes":{"name":"Viola Kilback","age":58,"location":"Elyria"}},{"attributes":{"name":"Meghan Corkery","age":36,"location":"Longview"}},{"attributes":{"name":"Marion Dooley","age":59,"location":"Pharr"}},{"attributes":{"name":"Zetta Legros","age":47,"location":"Sporercester"}},{"attributes":{"name":"Mrs. Lorena Bernhard-Dickens","age":80,"location":"Krishaven"}},{"attributes":{"name":"Bianka Ankunding","age":20,"location":"South Tysonton"}},{"attributes":{"name":"Dwight Bahringer","age":24,"location":"South Jasonchester"}},{"attributes":{"name":"Nelson Conroy III","age":23,"location":"Normal"}},{"attributes":{"name":"Philip Bauch","age":62,"location":"Franeckiborough"}},{"attributes":{"name":"Denise Runolfsson-Metz","age":28,"location":"Hegmannport"}},{"attributes":{"name":"Odell Rodriguez","age":30,"location":"Anahitown"}},{"attributes":{"name":"Alberto Paucek PhD","age":46,"location":"West Muhammad"}},{"attributes":{"name":"Louis Stamm","age":72,"location":"Lake Griffin"}},{"attributes":{"name":"Miss Rene Parker","age":25,"location":"Arlington Heights"}},{"attributes":{"name":"Leah Bayer-Russel","age":34,"location":"Goodwinfurt"}},{"attributes":{"name":"Miss Rod Goldner","age":45,"location":"Lefflerport"}},{"attributes":{"name":"Winifred Powlowski","age":68,"location":"Welchfurt"}},{"attributes":{"name":"Guy Kshlerin Sr.","age":48,"location":"Rockwall"}},{"attributes":{"name":"Floyd Douglas","age":67,"location":"New Kipboro"}},{"attributes":{"name":"Stanley Rohan","age":22,"location":"Lake Zettafield"}},{"attributes":{"name":"Jarred Morissette","age":51,"location":"North Jesusbury"}},{"attributes":{"name":"Miranda Weissnat","age":39,"location":"West Lisafield"}},{"attributes":{"name":"Hudson Willms DDS","age":28,"location":"Orlando"}},{"attributes":{"name":"Jarvis Keeling IV","age":31,"location":"East Kayden"}},{"attributes":{"name":"Tomasa Haag-Ernser","age":35,"location":"Leathaland"}},{"attributes":{"name":"Patti Marks","age":48,"location":"Jenkinsburgh"}},{"attributes":{"name":"Ms. Kelsi Schaden-Shanahan","age":57,"location":"North Jessy"}},{"attributes":{"name":"Luis Schoen","age":63,"location":"Delano"}},{"attributes":{"name":"Andre Wiegand","age":55,"location":"Lake Jenaberg"}},{"attributes":{"name":"Charlie Homenick","age":20,"location":"Jonathonfort"}},{"attributes":{"name":"Mrs. Fanny Flatley","age":68,"location":"Port Edythestead"}},{"attributes":{"name":"Pasquale Friesen","age":23,"location":"Kreigerville"}},{"attributes":{"name":"Keara Bogisich V","age":52,"location":"South Jazmynville"}},{"attributes":{"name":"Alexie Sauer MD","age":20,"location":"Rempelstad"}},{"attributes":{"name":"Tonya Graham","age":64,"location":"Lucienneshire"}},{"attributes":{"name":"Dillon Stamm","age":43,"location":"Port Berenice"}},{"attributes":{"name":"Timothy Blick V","age":60,"location":"Shieldscester"}},{"attributes":{"name":"Burley Lemke","age":25,"location":"Port Leannland"}},{"attributes":{"name":"Christopher Hoppe","age":79,"location":"Langworthfurt"}},{"attributes":{"name":"Carroll Rodriguez","age":30,"location":"Pagacfield"}},{"attributes":{"name":"Ms. Darrell Jacobs","age":19,"location":"Lake Karellecester"}},{"attributes":{"name":"Meredith Gerlach","age":31,"location":"Lake Murrayfield"}},{"attributes":{"name":"Eryn Goldner","age":50,"location":"Stephaniechester"}},{"attributes":{"name":"Jeff Reilly","age":33,"location":"New Damianshire"}},{"attributes":{"name":"Serenity Daniel","age":61,"location":"Lake Lorenza"}},{"attributes":{"name":"Simon Toy","age":28,"location":"Turnermouth"}},{"attributes":{"name":"Jesse Emmerich","age":56,"location":"Calebworth"}},{"attributes":{"name":"Virginia Ankunding","age":31,"location":"Draper"}},{"attributes":{"name":"Robin Roob","age":44,"location":"Natport"}},{"attributes":{"name":"Haskell Bode","age":69,"location":"Coleport"}},{"attributes":{"name":"Ronald Hermiston MD","age":37,"location":"Fort Laneytown"}},{"attributes":{"name":"Patsy Koch","age":25,"location":"Lednerbury"}},{"attributes":{"name":"Jana Wyman","age":41,"location":"Goldenstad"}},{"attributes":{"name":"Mose Boyer","age":35,"location":"Port Raphaelfield"}},{"attributes":{"name":"Julien Schaefer","age":30,"location":"South Kylee"}},{"attributes":{"name":"Kayla Hickle","age":31,"location":"South Darronton"}},{"attributes":{"name":"Roosevelt Huel DVM","age":78,"location":"Port Ethelynport"}},{"attributes":{"name":"Stefanie Russel-Fisher","age":39,"location":"Lincoln"}},{"attributes":{"name":"Eduardo Emard","age":68,"location":"Schmittshire"}},{"attributes":{"name":"Geneva Rempel","age":27,"location":"Lincoln"}},{"attributes":{"name":"Kristopher Turcotte","age":54,"location":"Jacobiboro"}},{"attributes":{"name":"Ms. Wanda Hegmann","age":20,"location":"Mayhaven"}},{"attributes":{"name":"Nathaniel Larson","age":45,"location":"Port Jimmy"}},{"attributes":{"name":"Rosalyn Sauer","age":79,"location":"Fort Zoeboro"}},{"attributes":{"name":"Vaughn Mraz","age":47,"location":"North Edgar"}},{"attributes":{"name":"Allen Schowalter","age":70,"location":"Mrazton"}},{"attributes":{"name":"Noel West II","age":32,"location":"Travoncester"}},{"attributes":{"name":"Ms. Aubrey Bernier","age":43,"location":"Clarissaport"}},{"attributes":{"name":"Miss Aglae Wyman I","age":20,"location":"Jaimeton"}},{"attributes":{"name":"Mr. Genoveva Jenkins","age":24,"location":"Lake Hank"}},{"attributes":{"name":"Mindy Reichert","age":78,"location":"Jonesboro"}},{"attributes":{"name":"Chad Spinka","age":51,"location":"Fort Art"}},{"attributes":{"name":"Blaze Goldner","age":33,"location":"West Leila"}},{"attributes":{"name":"Charles Fisher","age":80,"location":"El Centro"}},{"attributes":{"name":"Ms. Ashleigh Klocko DVM","age":58,"location":"Buddychester"}},{"attributes":{"name":"Arlene Fay","age":42,"location":"Manncester"}},{"attributes":{"name":"Eli Schinner","age":77,"location":"Port Lulaborough"}},{"attributes":{"name":"Rubie Howell","age":44,"location":"Kleincester"}},{"attributes":{"name":"Marlon Brakus","age":25,"location":"Pleasanton"}},{"attributes":{"name":"Joshuah Harvey IV","age":31,"location":"Hauckburgh"}},{"attributes":{"name":"Damon Schumm","age":32,"location":"Port Isaiahside"}},{"attributes":{"name":"Myron Donnelly","age":75,"location":"Weberfort"}},{"attributes":{"name":"Ladarius Effertz","age":41,"location":"Lake Stanshire"}},{"attributes":{"name":"Glen Kirlin","age":74,"location":"Port Kileychester"}},{"attributes":{"name":"Adell Davis","age":75,"location":"High Point"}},{"attributes":{"name":"Miss Roscoe Wunsch","age":39,"location":"Mosciskifort"}},{"attributes":{"name":"Shaun Rempel","age":34,"location":"West Durward"}},{"attributes":{"name":"Ms. Alice Blanda-Hermann","age":44,"location":"East Roberto"}},{"attributes":{"name":"Gwendolyn Conroy Jr.","age":30,"location":"Chanceburgh"}},{"attributes":{"name":"Alvera McCullough","age":73,"location":"Homestead"}},{"attributes":{"name":"Rogelio Brown","age":57,"location":"Tamiami"}},{"attributes":{"name":"Dr. Corey Herman","age":25,"location":"Grantfurt"}},{"attributes":{"name":"Tyson Schmitt","age":34,"location":"Lake Dwightmouth"}},{"attributes":{"name":"Nicole Funk","age":24,"location":"East Preciousworth"}},{"attributes":{"name":"Derek Toy","age":62,"location":"West Alexandreville"}},{"attributes":{"name":"Aliza Russel","age":54,"location":"Overland Park"}},{"attributes":{"name":"Mrs. Rick Aufderhar","age":74,"location":"New Isomtown"}},{"attributes":{"name":"Alvena Green","age":58,"location":"Frederiqueview"}},{"attributes":{"name":"Corey Wolff","age":69,"location":"Blickboro"}},{"attributes":{"name":"Gregory O'Keefe","age":67,"location":"Gailville"}},{"attributes":{"name":"Rosendo Wuckert","age":33,"location":"South Kyle"}},{"attributes":{"name":"Earnest Emard","age":65,"location":"Robelburgh"}},{"attributes":{"name":"Mrs. Tracey Wehner","age":49,"location":"South Alberthamouth"}},{"attributes":{"name":"Calvin Spinka","age":54,"location":"Margarettborough"}},{"attributes":{"name":"Lonnie Fay","age":63,"location":"West Mitcheltown"}},{"attributes":{"name":"Traci Treutel","age":24,"location":"Attleboro"}},{"attributes":{"name":"Mr. Marie Gleichner","age":46,"location":"South Altaville"}},{"attributes":{"name":"Alaina Weber","age":18,"location":"Lake Marilouside"}},{"attributes":{"name":"Kariane Cole","age":25,"location":"Gustfield"}},{"attributes":{"name":"Lynette McLaughlin","age":42,"location":"Santa Clarita"}},{"attributes":{"name":"Lucia Carter","age":53,"location":"South Abdullahcester"}},{"attributes":{"name":"Phyllis Pouros","age":27,"location":"Lake Davinport"}},{"attributes":{"name":"Francis Rodriguez","age":42,"location":"Johnnyboro"}},{"attributes":{"name":"Jaime Schaden","age":80,"location":"Sigridstead"}},{"attributes":{"name":"Blaze Runolfsdottir","age":46,"location":"Magnusstad"}},{"attributes":{"name":"Mazie Kreiger Jr.","age":61,"location":"Nampa"}},{"attributes":{"name":"Alberta Stamm","age":79,"location":"Isadorechester"}},{"attributes":{"name":"Sharon Marquardt","age":58,"location":"South Joanport"}},{"attributes":{"name":"Lindsay McKenzie","age":40,"location":"Baumbachboro"}},{"attributes":{"name":"Antonietta D'Amore","age":72,"location":"El Cajon"}},{"attributes":{"name":"Andrew O'Hara","age":54,"location":"East Mariahside"}},{"attributes":{"name":"Timmy Rempel","age":46,"location":"Austynworth"}},{"attributes":{"name":"Delpha Rosenbaum MD","age":25,"location":"New Wyatt"}},{"attributes":{"name":"Erica D'Amore","age":71,"location":"Caguas"}},{"attributes":{"name":"Dr. Otho Larson","age":49,"location":"MacGyverchester"}},{"attributes":{"name":"Wm Mohr Sr.","age":80,"location":"St. Cloud"}},{"attributes":{"name":"Billy McKenzie","age":31,"location":"Juneside"}},{"attributes":{"name":"Olen Franey","age":67,"location":"Lizziehaven"}},{"attributes":{"name":"Jeanette Wiegand","age":74,"location":"Austynchester"}},{"attributes":{"name":"Herbert Dare","age":49,"location":"Fort Maryseton"}},{"attributes":{"name":"Gussie Greenfelder","age":79,"location":"New Ayanastead"}},{"attributes":{"name":"Mildred Schimmel","age":18,"location":"Deckowborough"}},{"attributes":{"name":"Serena Schiller","age":47,"location":"Port Marianoville"}},{"attributes":{"name":"Oda Kohler-Shanahan","age":58,"location":"East Myron"}},{"attributes":{"name":"Rick Kessler","age":80,"location":"West Traceyworth"}},{"attributes":{"name":"Ross Leffler Sr.","age":39,"location":"Abshirehaven"}},{"attributes":{"name":"Emanuel Stoltenberg","age":35,"location":"Mayertbury"}},{"attributes":{"name":"Mr. Itzel Rice III","age":53,"location":"Port Augustine"}},{"attributes":{"name":"Miss Francis Dicki","age":75,"location":"New Aaron"}},{"attributes":{"name":"Amelia Runolfsdottir-Hauck","age":51,"location":"Doral"}},{"attributes":{"name":"Orlando Mueller","age":42,"location":"East Mosesworth"}},{"attributes":{"name":"Audrey Rau","age":36,"location":"Karianneberg"}},{"attributes":{"name":"Nicholas Toy","age":72,"location":"Windlerberg"}},{"attributes":{"name":"Miss Alyssa Welch","age":79,"location":"South Shermancester"}},{"attributes":{"name":"Dr. Nia Muller","age":60,"location":"Lake Buster"}},{"attributes":{"name":"Mrs. Sadie Walter","age":45,"location":"Phoenix"}},{"attributes":{"name":"Helene Herman","age":40,"location":"Haleyberg"}},{"attributes":{"name":"Alexandrine Padberg","age":61,"location":"Covina"}},{"attributes":{"name":"Arnulfo Runolfsdottir","age":67,"location":"Haneville"}},{"attributes":{"name":"Mertie Roberts","age":31,"location":"Baldwin Park"}},{"attributes":{"name":"Leticia Ritchie","age":44,"location":"North Daniella"}},{"attributes":{"name":"Joseph Stracke","age":25,"location":"Cobyport"}},{"attributes":{"name":"Melvin Littel","age":80,"location":"North Efrenborough"}},{"attributes":{"name":"Dexter Keebler","age":31,"location":"Tremblaycester"}},{"attributes":{"name":"Blanca Monahan","age":70,"location":"Lake Roxanne"}},{"attributes":{"name":"Quentin Howell Sr.","age":79,"location":"New Ericka"}},{"attributes":{"name":"Mr. Charles Jacobs","age":21,"location":"Lafayette"}},{"attributes":{"name":"Diane Rempel","age":73,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Brenda Quigley","age":44,"location":"Wiegandside"}},{"attributes":{"name":"Richard Schowalter","age":34,"location":"Patchester"}},{"attributes":{"name":"River Berge","age":19,"location":"Port Myrticeshire"}},{"attributes":{"name":"Hank Kessler","age":33,"location":"Devonville"}},{"attributes":{"name":"Mr. Elda Balistreri Jr.","age":62,"location":"Fort Emerald"}},{"attributes":{"name":"Sarah Shields","age":35,"location":"Rancho Cordova"}},{"attributes":{"name":"Judy Rath","age":40,"location":"Dachstead"}},{"attributes":{"name":"Deborah Wisoky","age":39,"location":"Nashua"}},{"attributes":{"name":"Ms. Sabrina Nolan-Fritsch","age":26,"location":"East Crystel"}},{"attributes":{"name":"Sandra Welch","age":53,"location":"New Avisbury"}},{"attributes":{"name":"Crystal Armstrong","age":75,"location":"Oakland Park"}},{"attributes":{"name":"Ayana Stiedemann","age":76,"location":"East Jillian"}},{"attributes":{"name":"Clifton Pouros","age":33,"location":"Lake Juneside"}},{"attributes":{"name":"Floyd Boyle MD","age":63,"location":"Kihnbury"}},{"attributes":{"name":"Flavio O'Keefe","age":70,"location":"Port Abigale"}},{"attributes":{"name":"Dexter Effertz","age":53,"location":"Ogden"}},{"attributes":{"name":"Sheila Bechtelar","age":25,"location":"Fort Maximusland"}},{"attributes":{"name":"Susanna Boehm","age":52,"location":"Caseystad"}},{"attributes":{"name":"Ana Howell","age":32,"location":"Marksfort"}},{"attributes":{"name":"Precious Parker","age":66,"location":"Dooleyboro"}},{"attributes":{"name":"Ian Haley","age":49,"location":"Fort Maciemouth"}},{"attributes":{"name":"Florence Gerlach","age":74,"location":"Denver"}},{"attributes":{"name":"Dayne Blick","age":32,"location":"Washington"}},{"attributes":{"name":"Freda Lueilwitz","age":54,"location":"New Kennedy"}},{"attributes":{"name":"Charlotte Robel","age":35,"location":"Swaniawskicester"}},{"attributes":{"name":"Yolanda Kemmer","age":53,"location":"Fort Shanialand"}},{"attributes":{"name":"Devin Wolff","age":42,"location":"Daronshire"}},{"attributes":{"name":"Dr. Carey Homenick IV","age":69,"location":"Willberg"}},{"attributes":{"name":"Holly Ryan","age":38,"location":"Toreyboro"}},{"attributes":{"name":"Lillie O'Keefe","age":26,"location":"Port Jannieview"}},{"attributes":{"name":"Guadalupe Quigley","age":59,"location":"Luciofort"}},{"attributes":{"name":"Dr. Easter Gorczany","age":50,"location":"East Kaylie"}},{"attributes":{"name":"Rocky Lowe","age":38,"location":"Trenton"}},{"attributes":{"name":"Al Powlowski","age":66,"location":"Harrishaven"}},{"attributes":{"name":"Mr. Curtis Yost","age":71,"location":"Lynchfort"}},{"attributes":{"name":"Brannon Erdman","age":65,"location":"Fort Nellieburgh"}},{"attributes":{"name":"Mr. Al Brakus","age":69,"location":"Fort Maciton"}},{"attributes":{"name":"Stan Witting","age":43,"location":"South Ruthe"}},{"attributes":{"name":"Mrs. Vicky Gottlieb","age":30,"location":"Lonnycester"}},{"attributes":{"name":"Eliane Berge","age":48,"location":"Mayton"}},{"attributes":{"name":"Roger Rice MD","age":32,"location":"Prohaskashire"}},{"attributes":{"name":"Marlene Langosh","age":20,"location":"Fort Benny"}},{"attributes":{"name":"Edmund Vandervort","age":28,"location":"Chula Vista"}},{"attributes":{"name":"Ms. Winfield Ledner","age":56,"location":"Estellworth"}},{"attributes":{"name":"Clemmie Bahringer","age":22,"location":"West Reannaland"}},{"attributes":{"name":"Bernard Abbott-Cruickshank","age":72,"location":"Port Allie"}},{"attributes":{"name":"Jarrod Fadel","age":62,"location":"North Gerardo"}},{"attributes":{"name":"Justin Maggio","age":40,"location":"Rosemarietown"}},{"attributes":{"name":"Rickie Hermann","age":63,"location":"South Stevieville"}},{"attributes":{"name":"Lonzo Williamson II","age":36,"location":"South Onieburgh"}},{"attributes":{"name":"Ford Russel","age":63,"location":"Rayberg"}},{"attributes":{"name":"Nina Turner","age":19,"location":"Rhodaville"}},{"attributes":{"name":"Nichole Medhurst Jr.","age":73,"location":"North Emmalee"}},{"attributes":{"name":"Carlton Abbott","age":70,"location":"Francoview"}},{"attributes":{"name":"Myra Mayer","age":19,"location":"West Brockchester"}},{"attributes":{"name":"Peter Konopelski","age":44,"location":"West Jonathanfield"}},{"attributes":{"name":"Terri Hodkiewicz","age":41,"location":"Fort Jovani"}},{"attributes":{"name":"Bartholome Schroeder","age":29,"location":"Wellington"}},{"attributes":{"name":"Gerson Koch","age":51,"location":"O'Fallon"}},{"attributes":{"name":"Athena Daniel","age":51,"location":"Hayesworth"}},{"attributes":{"name":"Elsa Rowe","age":67,"location":"East Brooke"}},{"attributes":{"name":"Mr. Darren Hickle I","age":30,"location":"Urbana"}},{"attributes":{"name":"Kristy Hauck","age":33,"location":"Castle Rock"}},{"attributes":{"name":"Angel Monahan","age":77,"location":"East Modesto"}},{"attributes":{"name":"Terri Marvin","age":48,"location":"New Gregg"}},{"attributes":{"name":"Lola O'Hara","age":53,"location":"Port Taliafurt"}},{"attributes":{"name":"Monserrat Kohler","age":55,"location":"Cecilefield"}},{"attributes":{"name":"Sigrid Fritsch","age":59,"location":"Masonshire"}},{"attributes":{"name":"Brycen Kunde","age":80,"location":"Terrancefield"}},{"attributes":{"name":"Karelle Klocko","age":62,"location":"South Albertoland"}},{"attributes":{"name":"Margie Dicki","age":49,"location":"Olathe"}},{"attributes":{"name":"Minnie Moore","age":71,"location":"Maynardport"}},{"attributes":{"name":"Mr. Sigrid Stamm","age":55,"location":"West Ashley"}},{"attributes":{"name":"German Skiles","age":77,"location":"Bernitaborough"}},{"attributes":{"name":"Jamil Armstrong","age":60,"location":"Port Jonatan"}},{"attributes":{"name":"Mr. Shawn Jenkins","age":63,"location":"Cristbury"}},{"attributes":{"name":"Mustafa Emard","age":80,"location":"Modestaville"}},{"attributes":{"name":"Preston Howell IV","age":68,"location":"Buddychester"}},{"attributes":{"name":"Marian Ward","age":45,"location":"South Rory"}},{"attributes":{"name":"Loren Ruecker IV","age":72,"location":"Newport News"}},{"attributes":{"name":"Rene Altenwerth","age":20,"location":"Dareland"}},{"attributes":{"name":"Candida Jaskolski","age":59,"location":"West Ariccester"}},{"attributes":{"name":"Heather Ernser","age":77,"location":"East Kaycee"}},{"attributes":{"name":"Judy Larkin","age":54,"location":"Warrenland"}},{"attributes":{"name":"Moses Treutel-Bruen III","age":22,"location":"North Broderick"}},{"attributes":{"name":"Ralph Hane","age":21,"location":"Littleland"}},{"attributes":{"name":"Rudolph Hartmann","age":80,"location":"Gleasonstead"}},{"attributes":{"name":"Erin Hagenes","age":65,"location":"West Stevie"}},{"attributes":{"name":"Mr. Lea Fadel","age":64,"location":"Fort Darron"}},{"attributes":{"name":"Wesley Larkin","age":74,"location":"Margarettburgh"}},{"attributes":{"name":"Brad Dickinson","age":48,"location":"South Arjun"}},{"attributes":{"name":"Dereck Gutmann","age":60,"location":"Catonsville"}},{"attributes":{"name":"Oma Tillman","age":80,"location":"Athens-Clarke County"}},{"attributes":{"name":"Ms. Shannon Beatty","age":38,"location":"Grapevine"}},{"attributes":{"name":"Caleb Schulist","age":44,"location":"Las Cruces"}},{"attributes":{"name":"Antonio Koss Sr.","age":37,"location":"Port Karina"}},{"attributes":{"name":"Vicky Bednar","age":33,"location":"Lake Conradside"}},{"attributes":{"name":"Brian Cartwright","age":24,"location":"Port Caden"}},{"attributes":{"name":"Lydia Morar","age":57,"location":"Bahringershire"}},{"attributes":{"name":"Dillan Kling","age":64,"location":"Walkerboro"}},{"attributes":{"name":"Dr. Savannah Thiel","age":80,"location":"Faheyfort"}},{"attributes":{"name":"Leona Wolf DDS","age":21,"location":"Lake Pollyton"}},{"attributes":{"name":"Cary Waters","age":35,"location":"North Destanyfurt"}},{"attributes":{"name":"Paul Schmidt I","age":46,"location":"Port Enidfurt"}},{"attributes":{"name":"Alberta Watsica DVM","age":61,"location":"Julianacester"}},{"attributes":{"name":"Ashley Bosco","age":69,"location":"North Dejonton"}},{"attributes":{"name":"Jany Carter","age":44,"location":"Annetteton"}},{"attributes":{"name":"Ada Jenkins","age":19,"location":"Trevafort"}},{"attributes":{"name":"Meredith Bins","age":64,"location":"Maureencester"}},{"attributes":{"name":"Kailey Mann","age":39,"location":"Olafcester"}},{"attributes":{"name":"Lila Rohan","age":38,"location":"South Nyah"}},{"attributes":{"name":"Laurie Wilderman","age":36,"location":"Willmsworth"}},{"attributes":{"name":"Vernie Carroll-Hermann","age":53,"location":"Hipolitohaven"}},{"attributes":{"name":"Michelle Witting","age":31,"location":"East Jasen"}},{"attributes":{"name":"Miss Anne Schumm","age":34,"location":"Fort Georgiannabury"}},{"attributes":{"name":"Maeve Blanda V","age":76,"location":"Yostberg"}},{"attributes":{"name":"Brionna Volkman","age":45,"location":"Mission"}},{"attributes":{"name":"Dr. Kristine Kovacek","age":52,"location":"Kenner"}},{"attributes":{"name":"Janet Trantow","age":78,"location":"West Pearlhaven"}},{"attributes":{"name":"Manley Bartoletti","age":40,"location":"New Deltaborough"}},{"attributes":{"name":"Sadye Crona","age":40,"location":"Mohamedtown"}},{"attributes":{"name":"Hannah Hansen","age":72,"location":"West Dionstad"}},{"attributes":{"name":"Steve Heathcote","age":52,"location":"Johnsborough"}},{"attributes":{"name":"Roosevelt Rippin","age":72,"location":"Castro Valley"}},{"attributes":{"name":"Maud Brekke-Murphy","age":18,"location":"Kuphalfort"}},{"attributes":{"name":"Mr. Ray Murray","age":76,"location":"West Merl"}},{"attributes":{"name":"Edwardo Schumm","age":79,"location":"Idellcester"}},{"attributes":{"name":"Mr. Darin Walker DVM","age":43,"location":"Weimannberg"}},{"attributes":{"name":"Giles Stroman-Ziemann","age":31,"location":"Port Frances"}},{"attributes":{"name":"Evalyn Mann","age":44,"location":"Daijaboro"}},{"attributes":{"name":"Wilhelmine Ullrich","age":46,"location":"Fort Jacques"}},{"attributes":{"name":"Webster Kertzmann","age":30,"location":"Port Jordyboro"}},{"attributes":{"name":"Ms. Trent Streich","age":68,"location":"Thornton"}},{"attributes":{"name":"Miss Beatrice Stracke III","age":52,"location":"Markusboro"}},{"attributes":{"name":"Frances Lindgren","age":33,"location":"Evieside"}},{"attributes":{"name":"Marjorie Rau","age":73,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Emil Bode","age":71,"location":"Arcadia"}},{"attributes":{"name":"Darrin Koch","age":18,"location":"South Jarret"}},{"attributes":{"name":"Verna Huel Jr.","age":18,"location":"East Mckenzie"}},{"attributes":{"name":"Nicklaus Glover","age":34,"location":"Port Ericachester"}},{"attributes":{"name":"Alexander Walsh","age":71,"location":"South Andreaneborough"}},{"attributes":{"name":"Rebecca Bailey","age":24,"location":"Killeen"}},{"attributes":{"name":"Edward Mann","age":35,"location":"Greenborough"}},{"attributes":{"name":"Edwin Reichel","age":72,"location":"Fort Sydni"}},{"attributes":{"name":"Kailee Stoltenberg","age":53,"location":"Fort Lemuel"}},{"attributes":{"name":"Craig Yost DDS","age":54,"location":"West Ethelyn"}},{"attributes":{"name":"Diana Rosenbaum","age":45,"location":"Cerritos"}},{"attributes":{"name":"Trystan Konopelski DDS","age":66,"location":"Waelchiborough"}},{"attributes":{"name":"Felicia Windler Jr.","age":72,"location":"Joanyville"}},{"attributes":{"name":"Dr. Lee Gorczany","age":44,"location":"Haneborough"}},{"attributes":{"name":"Mrs. Estelle Lind","age":26,"location":"Apopka"}},{"attributes":{"name":"Dena Kirlin-Schneider IV","age":57,"location":"McCulloughberg"}},{"attributes":{"name":"Jenny Daniel","age":44,"location":"Lake Stellaborough"}},{"attributes":{"name":"Gust Schaefer DVM","age":61,"location":"Baldwin Park"}},{"attributes":{"name":"Phyllis Rosenbaum","age":73,"location":"New Baileyton"}},{"attributes":{"name":"Dr. Cornelius Hahn","age":50,"location":"Reichertmouth"}},{"attributes":{"name":"Haylie Smith","age":48,"location":"Keyonville"}},{"attributes":{"name":"Lillie Fadel","age":53,"location":"East Shanieville"}},{"attributes":{"name":"Shaun Smith-Rath IV","age":36,"location":"Jaskolskibury"}},{"attributes":{"name":"Sterling O'Kon-Bashirian","age":26,"location":"Gonzalocester"}},{"attributes":{"name":"Chester Roberts","age":45,"location":"Magaliton"}},{"attributes":{"name":"Ann Jones","age":47,"location":"Lake Colt"}},{"attributes":{"name":"Richard Crona","age":37,"location":"Kirkland"}},{"attributes":{"name":"Mr. Aubrey Mills","age":75,"location":"Lefflerview"}},{"attributes":{"name":"Cleora Denesik","age":42,"location":"Schroederton"}},{"attributes":{"name":"Briana Boehm","age":79,"location":"Sunrise"}},{"attributes":{"name":"Aiyana Gusikowski","age":64,"location":"Harveyfield"}},{"attributes":{"name":"Frederic Hilpert","age":27,"location":"Maidatown"}},{"attributes":{"name":"Cedric Bosco","age":64,"location":"Fort Meredith"}},{"attributes":{"name":"Jaime Huels","age":31,"location":"South Merlin"}},{"attributes":{"name":"Doug Block","age":50,"location":"Hyattberg"}},{"attributes":{"name":"Angie Anderson","age":36,"location":"Kuhnmouth"}},{"attributes":{"name":"Vincent Senger","age":45,"location":"West Christineside"}},{"attributes":{"name":"Caroline Marquardt-Marvin","age":60,"location":"Turnerboro"}},{"attributes":{"name":"Dr. Darryl Bartoletti","age":27,"location":"Verniceville"}},{"attributes":{"name":"Tiffany Mohr","age":63,"location":"Williamsonborough"}},{"attributes":{"name":"Dr. Carmela Rutherford","age":39,"location":"Port Masonmouth"}},{"attributes":{"name":"Stephen Wilkinson","age":68,"location":"South Virginiaborough"}},{"attributes":{"name":"Leslie Marks","age":30,"location":"Lake Meggiefort"}},{"attributes":{"name":"Stephen Littel","age":26,"location":"West Walterport"}},{"attributes":{"name":"Collin Schiller","age":79,"location":"Greenworth"}},{"attributes":{"name":"Eduardo Littel","age":31,"location":"New Lennaworth"}},{"attributes":{"name":"Emanuel Armstrong","age":59,"location":"Oakland Park"}},{"attributes":{"name":"Shanelle Ledner","age":45,"location":"Fort Sydnie"}},{"attributes":{"name":"Arvid Sporer","age":22,"location":"Amparofield"}},{"attributes":{"name":"Genesis Weimann Jr.","age":72,"location":"Kingsport"}},{"attributes":{"name":"Antonio Weber","age":26,"location":"Bennettstead"}},{"attributes":{"name":"Amie Von","age":67,"location":"Justusburgh"}},{"attributes":{"name":"Madelynn Lesch","age":46,"location":"Bernierberg"}},{"attributes":{"name":"Dr. Leonard Turcotte","age":80,"location":"Port Garrickshire"}},{"attributes":{"name":"Zelda Quigley","age":79,"location":"Kuphalburgh"}},{"attributes":{"name":"Arnold Hills","age":66,"location":"Bradenton"}},{"attributes":{"name":"Rose Hudson V","age":68,"location":"North Fidelchester"}},{"attributes":{"name":"Viola Muller","age":20,"location":"Colbyland"}},{"attributes":{"name":"Vladimir Torphy III","age":27,"location":"South Jack"}},{"attributes":{"name":"Karianne Hettinger","age":59,"location":"East Edmouth"}},{"attributes":{"name":"Narciso Fisher Jr.","age":52,"location":"New Alyshafurt"}},{"attributes":{"name":"Norma Torp","age":51,"location":"Huntsville"}},{"attributes":{"name":"Herbert Waelchi","age":53,"location":"Johnstonchester"}},{"attributes":{"name":"Ernesto Wilkinson","age":47,"location":"Brooksmouth"}},{"attributes":{"name":"Renee Kerluke","age":40,"location":"Isacport"}},{"attributes":{"name":"Jennifer Conroy","age":25,"location":"New Arnoldton"}},{"attributes":{"name":"Dr. Ben Sanford","age":66,"location":"Keonfurt"}},{"attributes":{"name":"Miss Winifred Herzog V","age":57,"location":"Redwood City"}},{"attributes":{"name":"Lavinia Morissette","age":75,"location":"North Brandt"}},{"attributes":{"name":"Darius Kozey","age":21,"location":"Lakeland"}},{"attributes":{"name":"Santiago Hammes","age":67,"location":"Port Melody"}},{"attributes":{"name":"Mrs. Jovani Anderson","age":55,"location":"Rogelioworth"}},{"attributes":{"name":"Cheyanne D'Amore","age":63,"location":"Port Jensen"}},{"attributes":{"name":"Roy Konopelski II","age":41,"location":"Neldaview"}},{"attributes":{"name":"Sheri D'Amore MD","age":66,"location":"Nicholausstead"}},{"attributes":{"name":"Ms. Jose Crooks","age":53,"location":"Raulton"}},{"attributes":{"name":"Alford Leannon","age":37,"location":"West Wilbertport"}},{"attributes":{"name":"Devyn Gusikowski","age":37,"location":"Anyafield"}},{"attributes":{"name":"Audrey Kirlin","age":45,"location":"Fort Lavon"}},{"attributes":{"name":"Cameron Welch","age":48,"location":"Port Gerhardfurt"}},{"attributes":{"name":"Carole Dickens","age":74,"location":"Fort Opal"}},{"attributes":{"name":"Meredith Smitham","age":34,"location":"North Highlands"}},{"attributes":{"name":"Kallie Legros Sr.","age":36,"location":"East Ari"}},{"attributes":{"name":"Dax Marvin","age":53,"location":"Dangelotown"}},{"attributes":{"name":"Erika Quitzon Jr.","age":75,"location":"Oberbrunnerworth"}},{"attributes":{"name":"Laurel Russel","age":33,"location":"Jasminville"}},{"attributes":{"name":"Jerome Kiehn","age":48,"location":"West Crawfordbury"}},{"attributes":{"name":"Homer Schaden","age":68,"location":"Port Robb"}},{"attributes":{"name":"Mr. Hector Bode","age":74,"location":"Nicholausberg"}},{"attributes":{"name":"Bethel Runolfsson","age":59,"location":"Gilbert"}},{"attributes":{"name":"Courtney Prosacco-Bechtelar Sr.","age":76,"location":"Jeanettestad"}},{"attributes":{"name":"Madeline Torphy","age":62,"location":"Fort Toni"}},{"attributes":{"name":"Ms. Daron Bogan","age":67,"location":"South Karenhaven"}},{"attributes":{"name":"Nick Rohan","age":63,"location":"Cincinnati"}},{"attributes":{"name":"Carmella Osinski","age":20,"location":"Deionview"}},{"attributes":{"name":"Crystal Schamberger","age":25,"location":"San Jose"}},{"attributes":{"name":"Angel Watsica","age":27,"location":"East Tristin"}},{"attributes":{"name":"Audrey Gleason","age":79,"location":"East Jonathanstad"}},{"attributes":{"name":"Greg Skiles","age":34,"location":"Breitenberghaven"}},{"attributes":{"name":"Yvonne Dicki","age":23,"location":"Camillaport"}},{"attributes":{"name":"Elvira Hessel","age":69,"location":"Eltaboro"}},{"attributes":{"name":"Kristie Murphy-Lemke","age":52,"location":"Sophiecester"}},{"attributes":{"name":"Misty Herman","age":37,"location":"South Malachi"}},{"attributes":{"name":"Dominick Morissette-Altenwerth II","age":52,"location":"East Leanna"}},{"attributes":{"name":"Raquel VonRueden","age":49,"location":"West Amandabury"}},{"attributes":{"name":"Sarah Becker","age":52,"location":"Kelvinside"}},{"attributes":{"name":"Garrick McLaughlin","age":24,"location":"Danielboro"}},{"attributes":{"name":"Nikko Lebsack","age":60,"location":"Scottsdale"}},{"attributes":{"name":"Valerie Medhurst","age":22,"location":"East Alverta"}},{"attributes":{"name":"Marina Bergstrom","age":55,"location":"Pontiac"}},{"attributes":{"name":"Jana Ondricka","age":22,"location":"Ortizberg"}},{"attributes":{"name":"Melanie Aufderhar","age":20,"location":"East Minnieshire"}},{"attributes":{"name":"Amara Kirlin","age":68,"location":"South Kameronfurt"}},{"attributes":{"name":"Rosemary Armstrong-Jerde","age":65,"location":"North Araceli"}},{"attributes":{"name":"Deshaun Terry","age":33,"location":"East Clintonfield"}},{"attributes":{"name":"Odell Emard","age":26,"location":"Santa Maria"}},{"attributes":{"name":"Lyric Kunze","age":60,"location":"Plano"}},{"attributes":{"name":"Maurine Hansen","age":72,"location":"Wintheisertown"}},{"attributes":{"name":"Mr. Isaac Barton","age":53,"location":"Lake Timmothy"}},{"attributes":{"name":"Emilio Renner","age":64,"location":"Port Jordanehaven"}},{"attributes":{"name":"Dr. Merle Bosco","age":76,"location":"Lake Alana"}},{"attributes":{"name":"Leah Kuphal","age":75,"location":"Annandale"}},{"attributes":{"name":"Mr. Magdalen Torp","age":69,"location":"Westland"}},{"attributes":{"name":"Quentin Franecki","age":52,"location":"Emmetmouth"}},{"attributes":{"name":"Antonio Moore III","age":50,"location":"Fort Ryannmouth"}},{"attributes":{"name":"Jacob Hand I","age":78,"location":"Georgetown"}},{"attributes":{"name":"Lance Rohan","age":24,"location":"Turcottetown"}},{"attributes":{"name":"Amber Johns","age":40,"location":"Katherineville"}},{"attributes":{"name":"Clark Nienow PhD","age":72,"location":"South Isabelle"}},{"attributes":{"name":"Sadie Krajcik","age":39,"location":"Zemlakside"}},{"attributes":{"name":"Cory Baumbach","age":40,"location":"Lueilwitzworth"}},{"attributes":{"name":"Elisa Langosh","age":50,"location":"Portland"}},{"attributes":{"name":"Chanel Vandervort","age":78,"location":"East Jayde"}},{"attributes":{"name":"Adam Marvin","age":21,"location":"Catalinaview"}},{"attributes":{"name":"Dr. Winnifred Prosacco","age":63,"location":"Kristoferport"}},{"attributes":{"name":"Jacinto Walker","age":47,"location":"Beaverton"}},{"attributes":{"name":"Israel Kerluke IV","age":54,"location":"Fort Wellington"}},{"attributes":{"name":"Hilbert Vandervort","age":53,"location":"Port Katrineburgh"}},{"attributes":{"name":"Salvatore Stoltenberg","age":52,"location":"Enochland"}},{"attributes":{"name":"Francesco Schultz","age":48,"location":"Spencerfurt"}},{"attributes":{"name":"Sabrina Johns","age":53,"location":"Gastonia"}},{"attributes":{"name":"Pearl Rowe","age":70,"location":"Bozeman"}},{"attributes":{"name":"Michelle Lebsack","age":55,"location":"Willmsboro"}},{"attributes":{"name":"Dorthy Robel","age":32,"location":"Bolingbrook"}},{"attributes":{"name":"Colton Crooks","age":18,"location":"Hamilton"}},{"attributes":{"name":"Andre Thompson-Gorczany","age":46,"location":"Keyshawnshire"}},{"attributes":{"name":"Arvid Lueilwitz","age":28,"location":"Modesto"}},{"attributes":{"name":"Bulah Reichert III","age":57,"location":"Judemouth"}},{"attributes":{"name":"Adan Rowe","age":66,"location":"Victorville"}},{"attributes":{"name":"Danny Swift","age":21,"location":"Port Kelsi"}},{"attributes":{"name":"Dr. Alejandro Blanda DVM","age":68,"location":"Santee"}},{"attributes":{"name":"Juliana Goyette","age":37,"location":"Bernadetteworth"}},{"attributes":{"name":"Lois Leffler","age":76,"location":"West Tyrese"}},{"attributes":{"name":"Doug Schmeler","age":24,"location":"Treutelton"}},{"attributes":{"name":"Rhonda Corwin","age":71,"location":"Mesa"}},{"attributes":{"name":"Carrie Robel","age":48,"location":"Tyresestad"}},{"attributes":{"name":"Mrs. Kelly Corwin","age":50,"location":"Grahamland"}},{"attributes":{"name":"Miss Howard Dickens Jr.","age":38,"location":"Daly City"}},{"attributes":{"name":"Kelvin Christiansen-Donnelly","age":67,"location":"McKenzieview"}},{"attributes":{"name":"Dewey Grady","age":71,"location":"Nikolauschester"}},{"attributes":{"name":"Emely Gerlach","age":50,"location":"Joliet"}},{"attributes":{"name":"Zula Gutkowski","age":61,"location":"Kuhncester"}},{"attributes":{"name":"Jazlyn Lemke","age":67,"location":"Fort Everardofurt"}},{"attributes":{"name":"Roberta Hessel","age":22,"location":"Port Marcelle"}},{"attributes":{"name":"Dereck Zieme","age":22,"location":"West Merlstad"}},{"attributes":{"name":"Loretta Bogan","age":66,"location":"East Rolandoburgh"}},{"attributes":{"name":"Geraldine Wisozk","age":75,"location":"New Jameson"}},{"attributes":{"name":"Miguel Connelly","age":54,"location":"Sunrise"}},{"attributes":{"name":"Shanelle Bailey","age":41,"location":"Koelpinchester"}},{"attributes":{"name":"Mrs. Tanya Welch","age":53,"location":"Port Orval"}},{"attributes":{"name":"Oda Zemlak","age":72,"location":"Elroyhaven"}},{"attributes":{"name":"Kip Hayes","age":20,"location":"New Emorymouth"}},{"attributes":{"name":"Ross Hettinger","age":64,"location":"West Mariah"}},{"attributes":{"name":"Jesse McKenzie","age":80,"location":"Imafort"}},{"attributes":{"name":"Everett Powlowski","age":64,"location":"Wilkinsonbury"}},{"attributes":{"name":"Angelina Emard","age":19,"location":"East Aryanna"}},{"attributes":{"name":"Benny Stroman","age":51,"location":"New Myah"}},{"attributes":{"name":"Garrett Stiedemann","age":69,"location":"Wilfredoboro"}},{"attributes":{"name":"Allison Hammes","age":28,"location":"Handside"}},{"attributes":{"name":"Miss Christy Beer","age":58,"location":"Port Nelda"}},{"attributes":{"name":"Kerry Medhurst","age":59,"location":"Fort Rebekah"}},{"attributes":{"name":"Jody Ritchie","age":40,"location":"New Noahview"}},{"attributes":{"name":"Stephen Veum","age":24,"location":"Richmond"}},{"attributes":{"name":"Don Kirlin","age":47,"location":"Walshshire"}},{"attributes":{"name":"Dexter Wiza","age":25,"location":"Riverside"}},{"attributes":{"name":"Dan Ferry","age":37,"location":"North Lonnystead"}},{"attributes":{"name":"Carolyn Ledner I","age":31,"location":"Longview"}},{"attributes":{"name":"Rudy Turner","age":68,"location":"Lake Bruceside"}},{"attributes":{"name":"Kenneth Moore","age":69,"location":"Lake Adrianworth"}},{"attributes":{"name":"Maximus Champlin","age":23,"location":"New Waino"}},{"attributes":{"name":"Jane Pfeffer","age":73,"location":"Scottiecester"}},{"attributes":{"name":"Rogelio Cummings III","age":74,"location":"Ameliefield"}},{"attributes":{"name":"Gertrude Keebler","age":44,"location":"Lake Colinport"}},{"attributes":{"name":"Dr. Odell Pfannerstill","age":36,"location":"East Deshaunchester"}},{"attributes":{"name":"Alice Russel","age":74,"location":"Alysonport"}},{"attributes":{"name":"Mrs. Madisyn Prohaska","age":68,"location":"Fort Rigoberto"}},{"attributes":{"name":"Suzanne Schoen Jr.","age":21,"location":"Tarastad"}},{"attributes":{"name":"Pablo Pagac","age":37,"location":"Henderson"}},{"attributes":{"name":"Claudia Becker","age":46,"location":"Pfefferside"}},{"attributes":{"name":"Robert Pacocha","age":30,"location":"East Pedrohaven"}},{"attributes":{"name":"Annie Mante","age":21,"location":"DeKalb"}},{"attributes":{"name":"Neal Mitchell","age":25,"location":"Glenview"}},{"attributes":{"name":"Christa Bogan","age":31,"location":"Port Arlie"}},{"attributes":{"name":"Jeffrey Wilkinson","age":30,"location":"Carleeside"}},{"attributes":{"name":"Cecilia Dietrich","age":44,"location":"Lianashire"}},{"attributes":{"name":"Steven Thompson-Bechtelar","age":24,"location":"Hellerberg"}},{"attributes":{"name":"Loretta Bahringer Jr.","age":79,"location":"Fort Shanelle"}},{"attributes":{"name":"Mallie Lynch","age":44,"location":"West Vivianview"}},{"attributes":{"name":"Noel Schamberger","age":78,"location":"New Caseyboro"}},{"attributes":{"name":"Brent Hickle","age":48,"location":"Gibsonland"}},{"attributes":{"name":"Uriel Swift","age":80,"location":"O'Konborough"}},{"attributes":{"name":"Amber Grant","age":18,"location":"Chetburgh"}},{"attributes":{"name":"Andy Goldner","age":70,"location":"Sisterchester"}},{"attributes":{"name":"D'angelo Spencer Sr.","age":51,"location":"North Jettiestead"}},{"attributes":{"name":"Dariana Maggio","age":46,"location":"West Kattie"}},{"attributes":{"name":"Dr. Johnny Deckow","age":51,"location":"Port Jacinto"}},{"attributes":{"name":"Rodney Strosin PhD","age":74,"location":"Ulicesland"}},{"attributes":{"name":"Laura Thiel","age":75,"location":"East Nasir"}},{"attributes":{"name":"Tracy Schulist II","age":67,"location":"Port Jamelburgh"}},{"attributes":{"name":"Rickey Bins","age":34,"location":"Lorinemouth"}},{"attributes":{"name":"Kiley Stoltenberg","age":70,"location":"West Sally"}},{"attributes":{"name":"Cory Jerde","age":30,"location":"Vivianneville"}},{"attributes":{"name":"Delia Jast-Kiehn","age":68,"location":"Lylaberg"}},{"attributes":{"name":"Chase Zulauf","age":19,"location":"Gerlachshire"}},{"attributes":{"name":"Aida Goodwin-Sauer","age":41,"location":"Waldorf"}},{"attributes":{"name":"Pasquale Tremblay","age":77,"location":"Myrticefurt"}},{"attributes":{"name":"Stanley Murray","age":54,"location":"Aidashire"}},{"attributes":{"name":"Dr. Lee Kessler","age":24,"location":"South Myleneside"}},{"attributes":{"name":"Glenn Bartoletti","age":22,"location":"Ratkeworth"}},{"attributes":{"name":"Bertha Larkin Sr.","age":38,"location":"Gorczanyshire"}},{"attributes":{"name":"Miss Felicita Schmeler","age":71,"location":"West Elijah"}},{"attributes":{"name":"Edna Stark","age":34,"location":"Fort Lavada"}},{"attributes":{"name":"Magdalena Hoppe","age":24,"location":"South Madonna"}},{"attributes":{"name":"Barbara Turner","age":59,"location":"Angelville"}},{"attributes":{"name":"Heidi Reynolds","age":73,"location":"Carson"}},{"attributes":{"name":"Lee Mante","age":27,"location":"Caseyberg"}},{"attributes":{"name":"Ila Mayer DVM","age":70,"location":"Dothan"}},{"attributes":{"name":"Precious Hammes","age":72,"location":"O'Haraberg"}},{"attributes":{"name":"Dana O'Kon","age":71,"location":"Dustyhaven"}},{"attributes":{"name":"Makenzie Block","age":41,"location":"Aloha"}},{"attributes":{"name":"Robin Kohler","age":30,"location":"Sengerbury"}},{"attributes":{"name":"Marilyn Prosacco","age":69,"location":"Coraliestead"}},{"attributes":{"name":"Cedrick Williamson","age":70,"location":"Lake Charles"}},{"attributes":{"name":"Floyd Barton","age":63,"location":"Laurynfurt"}},{"attributes":{"name":"Brook Gislason","age":28,"location":"Ebertshire"}},{"attributes":{"name":"Katelyn Wolf","age":54,"location":"Fort Londonton"}},{"attributes":{"name":"Armani Labadie I","age":67,"location":"North Otha"}},{"attributes":{"name":"Maryann O'Reilly","age":54,"location":"The Hammocks"}},{"attributes":{"name":"Becky Cummerata","age":69,"location":"Kerlukechester"}},{"attributes":{"name":"Van Mueller","age":56,"location":"Goldentown"}},{"attributes":{"name":"Enrico Collins-Smith","age":48,"location":"Mount Prospect"}},{"attributes":{"name":"Allen Yundt","age":71,"location":"Cristland"}},{"attributes":{"name":"Brennon Rowe","age":43,"location":"Bernhardchester"}},{"attributes":{"name":"April Schmeler","age":53,"location":"Milpitas"}},{"attributes":{"name":"Mrs. Karen Herman","age":65,"location":"Fort Clemmieborough"}},{"attributes":{"name":"Gina Dare","age":22,"location":"North Arne"}},{"attributes":{"name":"Thomas Satterfield","age":28,"location":"Bobbyview"}},{"attributes":{"name":"Nathanael Beahan","age":26,"location":"Oshkosh"}},{"attributes":{"name":"Jerald Robel Jr.","age":58,"location":"South Roslynstad"}},{"attributes":{"name":"Susanna Reilly","age":53,"location":"Laguna Niguel"}},{"attributes":{"name":"Myron Friesen","age":55,"location":"Blaiseport"}},{"attributes":{"name":"Audrey Berge V","age":66,"location":"Ursulafort"}},{"attributes":{"name":"Johnnie Lemke MD","age":47,"location":"Heidenreichfield"}},{"attributes":{"name":"Alexys Cummerata","age":34,"location":"Pablohaven"}},{"attributes":{"name":"Arnold Rath","age":63,"location":"Lake Caitlyn"}},{"attributes":{"name":"Leroy Stehr II","age":30,"location":"Verniefort"}},{"attributes":{"name":"Marques Thompson","age":46,"location":"Vinnietown"}},{"attributes":{"name":"Austen Kunze-Rau","age":37,"location":"Simeonfurt"}},{"attributes":{"name":"Delbert Corkery","age":33,"location":"Leuschkeland"}},{"attributes":{"name":"Efren Swift","age":78,"location":"East Giovanny"}},{"attributes":{"name":"Neal Lebsack Sr.","age":52,"location":"Missouri City"}},{"attributes":{"name":"Alvin Predovic","age":40,"location":"Watersstead"}},{"attributes":{"name":"Nora Kihn","age":22,"location":"Lake Elyse"}},{"attributes":{"name":"Cordia Muller IV","age":32,"location":"Lornashire"}},{"attributes":{"name":"Mr. Owen Nienow","age":24,"location":"North Nayeli"}},{"attributes":{"name":"Beau Hirthe DVM","age":60,"location":"South Werner"}},{"attributes":{"name":"Titus Grimes","age":34,"location":"Vidalmouth"}},{"attributes":{"name":"Darryl Okuneva","age":50,"location":"Omaha"}},{"attributes":{"name":"Julia Hayes","age":36,"location":"West Tonichester"}},{"attributes":{"name":"Salvador Hackett","age":59,"location":"Port Emmanuel"}},{"attributes":{"name":"Yolanda Halvorson","age":29,"location":"Jonesview"}},{"attributes":{"name":"Zachary Daugherty","age":65,"location":"Lake Mina"}},{"attributes":{"name":"Dr. Justin Dickinson","age":40,"location":"Port Vicky"}},{"attributes":{"name":"Byron Mann III","age":27,"location":"Pedrofort"}},{"attributes":{"name":"Miss Maggie Frami","age":35,"location":"Everett"}},{"attributes":{"name":"Dr. Dexter Weissnat","age":56,"location":"Savannastad"}},{"attributes":{"name":"Micheal Breitenberg","age":39,"location":"Lake Gustave"}},{"attributes":{"name":"Kayla Bashirian","age":59,"location":"West Alycia"}},{"attributes":{"name":"Erika Smitham","age":25,"location":"North Miami"}},{"attributes":{"name":"Mariana Rodriguez","age":28,"location":"Lake Donnellstad"}},{"attributes":{"name":"Shawna Kuhlman","age":42,"location":"Dickensborough"}},{"attributes":{"name":"Mr. Sheldon Stehr","age":66,"location":"South Vedashire"}},{"attributes":{"name":"Dr. Eloisa Ziemann","age":54,"location":"East Emmanuelle"}},{"attributes":{"name":"Gabriel Crooks","age":58,"location":"New Deja"}},{"attributes":{"name":"Irving Ondricka-Rath","age":32,"location":"West Seneca"}},{"attributes":{"name":"Clifford Labadie","age":71,"location":"Thaliacester"}},{"attributes":{"name":"Vivianne Haley","age":57,"location":"Lakeland"}},{"attributes":{"name":"Lorenzo Kassulke","age":32,"location":"Rexberg"}},{"attributes":{"name":"Elza Toy","age":66,"location":"Alyciaberg"}},{"attributes":{"name":"Gwen Stamm","age":50,"location":"Ceceliastead"}},{"attributes":{"name":"Claud Terry","age":69,"location":"Waltercester"}},{"attributes":{"name":"Clara Stoltenberg","age":59,"location":"New Rosie"}},{"attributes":{"name":"Brenda Runolfsson-Becker","age":61,"location":"Lillianstad"}},{"attributes":{"name":"Miss Kristie Kshlerin DDS","age":32,"location":"Hutchinson"}},{"attributes":{"name":"Christian Weimann","age":79,"location":"Jarodburgh"}},{"attributes":{"name":"Gordon King PhD","age":69,"location":"Oberbrunnerside"}},{"attributes":{"name":"Moses Rodriguez","age":56,"location":"Port Name"}},{"attributes":{"name":"Stephanie Lakin","age":29,"location":"North Chaneltown"}},{"attributes":{"name":"Harold Steuber","age":31,"location":"Connellyhaven"}},{"attributes":{"name":"Mr. Sean Trantow","age":28,"location":"Amiraview"}},{"attributes":{"name":"Fritz Nitzsche","age":32,"location":"Jupiter"}},{"attributes":{"name":"Gus Keebler","age":61,"location":"Fort Ginotown"}},{"attributes":{"name":"Mathew Beer","age":26,"location":"New Victor"}},{"attributes":{"name":"Coby Rau PhD","age":71,"location":"Lake Eloisaburgh"}},{"attributes":{"name":"Assunta Stiedemann","age":39,"location":"Lake Celestinoboro"}},{"attributes":{"name":"Ramona Bednar","age":37,"location":"East Bert"}},{"attributes":{"name":"Savanah Barton II","age":58,"location":"Dachville"}},{"attributes":{"name":"Heidi Herzog","age":27,"location":"South San Francisco"}},{"attributes":{"name":"Miss Roberta Kassulke V","age":68,"location":"North Ernesto"}},{"attributes":{"name":"Dr. Leo Fisher","age":69,"location":"Deltaville"}},{"attributes":{"name":"Sherry O'Hara","age":22,"location":"Casimerberg"}},{"attributes":{"name":"Ramona Jaskolski","age":18,"location":"Rosemead"}},{"attributes":{"name":"Angelo Leuschke","age":80,"location":"Estachester"}},{"attributes":{"name":"Dr. Caleb Bode","age":49,"location":"New Lew"}},{"attributes":{"name":"Mr. Frida Bartoletti PhD","age":46,"location":"Willcester"}},{"attributes":{"name":"Alanis Windler","age":21,"location":"Annandale"}},{"attributes":{"name":"Alexander Goyette","age":52,"location":"South Lexuscester"}},{"attributes":{"name":"Rafael Davis","age":60,"location":"North Lillianafurt"}},{"attributes":{"name":"Dr. Rosemary Stracke","age":76,"location":"New Margarettaland"}},{"attributes":{"name":"Margarita Goldner","age":27,"location":"Ardithburgh"}},{"attributes":{"name":"Craig Morissette","age":31,"location":"Fort Annabelle"}},{"attributes":{"name":"Isabel Stehr","age":29,"location":"Larkinworth"}},{"attributes":{"name":"Zula Green PhD","age":24,"location":"Lake Dell"}},{"attributes":{"name":"Dr. Eula Leffler","age":59,"location":"Oro Valley"}},{"attributes":{"name":"Timothy Rath","age":57,"location":"East Maximilliachester"}},{"attributes":{"name":"Reed Towne V","age":40,"location":"Fort Clinthaven"}},{"attributes":{"name":"Deanna Kerluke DDS","age":53,"location":"Spinkashire"}},{"attributes":{"name":"Christian Dibbert","age":49,"location":"Blaine"}},{"attributes":{"name":"Rogers O'Conner","age":55,"location":"West Alanboro"}},{"attributes":{"name":"Sharon Von I","age":60,"location":"Lake Anikahaven"}},{"attributes":{"name":"Ira Casper","age":37,"location":"Tempe"}},{"attributes":{"name":"Dr. Faith Gleason","age":25,"location":"Russelview"}},{"attributes":{"name":"Curtis Luettgen","age":54,"location":"Laguna Niguel"}},{"attributes":{"name":"Mrs. Megane Reinger","age":69,"location":"Jessicaside"}},{"attributes":{"name":"Margaret Johnson","age":63,"location":"Cristfort"}},{"attributes":{"name":"Carissa Ryan","age":63,"location":"East Ara"}},{"attributes":{"name":"Zola Moen","age":20,"location":"Blockcester"}},{"attributes":{"name":"Randolph Lynch","age":52,"location":"North Charleston"}},{"attributes":{"name":"Alfonso Langworth","age":29,"location":"Lednerchester"}},{"attributes":{"name":"Mr. Eric Bogan","age":71,"location":"Port Oranworth"}},{"attributes":{"name":"Malcolm Weissnat","age":45,"location":"Adaville"}},{"attributes":{"name":"Donnie Roob","age":36,"location":"Port Garnet"}},{"attributes":{"name":"Antonia Borer IV","age":77,"location":"Wilmerfurt"}},{"attributes":{"name":"Americo Pacocha","age":28,"location":"Goldnerhaven"}},{"attributes":{"name":"Greg Muller-Blick","age":25,"location":"Friesentown"}},{"attributes":{"name":"Alonzo Goodwin","age":18,"location":"West Gracielamouth"}},{"attributes":{"name":"Karen Legros","age":21,"location":"Port Veronabury"}},{"attributes":{"name":"Van Barrows","age":79,"location":"North Arianna"}},{"attributes":{"name":"Phil Hettinger","age":63,"location":"Destinyfort"}},{"attributes":{"name":"Brittany Gusikowski","age":24,"location":"Jayneside"}},{"attributes":{"name":"Virgil Spencer","age":23,"location":"Gonzaloport"}},{"attributes":{"name":"Myrtis Lockman","age":73,"location":"Port St. Lucie"}},{"attributes":{"name":"Myrtle McClure","age":55,"location":"Ansleyberg"}},{"attributes":{"name":"Kenneth Gusikowski","age":26,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Royal Gottlieb","age":24,"location":"Tiaraberg"}},{"attributes":{"name":"Sadie Hammes","age":57,"location":"Wilmerport"}},{"attributes":{"name":"Soledad Shields","age":51,"location":"Solonville"}},{"attributes":{"name":"Lolita Bradtke-Jaskolski","age":53,"location":"Bloomington"}},{"attributes":{"name":"Logan Robel","age":35,"location":"New Quincytown"}},{"attributes":{"name":"Alanis Larkin","age":66,"location":"Dibbertborough"}},{"attributes":{"name":"Vivian Davis","age":55,"location":"Hempstead"}},{"attributes":{"name":"Pat D'Amore","age":50,"location":"Hicklefield"}},{"attributes":{"name":"Dr. Geovany Mann","age":36,"location":"Sydniefield"}},{"attributes":{"name":"Felix Stokes II","age":57,"location":"Turnercester"}},{"attributes":{"name":"Isobel Hickle-Bins","age":36,"location":"Blandaworth"}},{"attributes":{"name":"Ludwig Considine","age":66,"location":"Streichfurt"}},{"attributes":{"name":"Ms. Lexi Treutel","age":43,"location":"Victoria"}},{"attributes":{"name":"Flavio Treutel","age":20,"location":"Hauckcester"}},{"attributes":{"name":"Dr. Erik Ondricka PhD","age":62,"location":"Streichton"}},{"attributes":{"name":"Arnold Hagenes","age":24,"location":"Jolieton"}},{"attributes":{"name":"Judy Leannon","age":18,"location":"Casas Adobes"}},{"attributes":{"name":"Dave O'Connell","age":37,"location":"Kaileybury"}},{"attributes":{"name":"Mrs. Vincenza Stracke","age":22,"location":"Framishire"}},{"attributes":{"name":"Ms. Susana Johnson","age":33,"location":"Percyworth"}},{"attributes":{"name":"Ivory Rolfson","age":76,"location":"South Nikita"}},{"attributes":{"name":"Pierre Hirthe","age":52,"location":"West Carterboro"}},{"attributes":{"name":"Karl Ortiz IV","age":49,"location":"Fort Gildatown"}},{"attributes":{"name":"Landen Bahringer III","age":26,"location":"Lake Holdenton"}},{"attributes":{"name":"Priscilla Bruen","age":51,"location":"Joanside"}},{"attributes":{"name":"Alexandra Trantow","age":53,"location":"Cummingsboro"}},{"attributes":{"name":"Elmer Monahan-Renner","age":24,"location":"Kassulkeville"}},{"attributes":{"name":"Frankie Huel","age":31,"location":"North Carmine"}},{"attributes":{"name":"Joanne Nitzsche","age":20,"location":"Sylvestermouth"}},{"attributes":{"name":"Dwayne Bailey","age":24,"location":"Shannatown"}},{"attributes":{"name":"Freeman Lind","age":18,"location":"Gradymouth"}},{"attributes":{"name":"Stephania Lehner","age":79,"location":"Cedar Rapids"}},{"attributes":{"name":"Dale Bogan","age":47,"location":"Bentonshire"}},{"attributes":{"name":"Fred Ebert","age":51,"location":"Port Darrelview"}},{"attributes":{"name":"Madeline Stroman","age":39,"location":"Fort Ezekielboro"}},{"attributes":{"name":"Dr. Jake Kuhn-Kohler","age":62,"location":"Oro Valley"}},{"attributes":{"name":"Dr. Jeff Weimann","age":61,"location":"Rutherfordburgh"}},{"attributes":{"name":"Bernita Medhurst","age":20,"location":"Rowenabury"}},{"attributes":{"name":"Reta Goyette","age":56,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Mamie Hirthe","age":72,"location":"Cartwrightmouth"}},{"attributes":{"name":"Kevin Durgan V","age":57,"location":"Port Lavinia"}},{"attributes":{"name":"Lester Mayert","age":24,"location":"Johnsonport"}},{"attributes":{"name":"Alicia Kerluke","age":26,"location":"Rauside"}},{"attributes":{"name":"Prince Larkin","age":53,"location":"Bossier City"}},{"attributes":{"name":"Alfonso O'Connell MD","age":34,"location":"Toms River"}},{"attributes":{"name":"Santos McDermott","age":38,"location":"Port Orange"}},{"attributes":{"name":"Efren Blick","age":35,"location":"Urbandale"}},{"attributes":{"name":"Layla Kassulke I","age":32,"location":"East Joesph"}},{"attributes":{"name":"Ellsworth Skiles","age":79,"location":"Fort Darricktown"}},{"attributes":{"name":"Eleanore Ferry","age":74,"location":"East Germaine"}},{"attributes":{"name":"Lee O'Kon","age":22,"location":"Lorenastad"}},{"attributes":{"name":"Jean Bernier II","age":39,"location":"Fort Tyrell"}},{"attributes":{"name":"Devante Greenfelder","age":27,"location":"Rachellechester"}},{"attributes":{"name":"Lorenz Gleichner","age":20,"location":"Stratford"}},{"attributes":{"name":"Eva Auer DDS","age":51,"location":"Metairie"}},{"attributes":{"name":"Jayde Hegmann","age":77,"location":"Titusville"}},{"attributes":{"name":"Trinity Flatley-Emard","age":72,"location":"Paxtonport"}},{"attributes":{"name":"Mr. Ronald Fahey","age":71,"location":"Des Moines"}},{"attributes":{"name":"Mrs. Alyssa Dooley","age":75,"location":"St. Paul"}},{"attributes":{"name":"Cora Fisher","age":52,"location":"West Eunicestead"}},{"attributes":{"name":"Sean Schneider","age":42,"location":"East Robb"}},{"attributes":{"name":"Ross Mitchell","age":76,"location":"Orieworth"}},{"attributes":{"name":"Marie Gibson","age":65,"location":"East Zakaryhaven"}},{"attributes":{"name":"Jodie Hegmann","age":26,"location":"East Ima"}},{"attributes":{"name":"Mr. Kamron Von","age":72,"location":"West Antone"}},{"attributes":{"name":"Bert Schultz","age":53,"location":"Furmanport"}},{"attributes":{"name":"Mrs. Luella Gleichner IV","age":22,"location":"Port Liaton"}},{"attributes":{"name":"Lela Schimmel","age":46,"location":"Antonettebury"}},{"attributes":{"name":"Sonia Stanton","age":18,"location":"Jakubowskicester"}},{"attributes":{"name":"Mathias Wintheiser","age":74,"location":"West Wayneside"}},{"attributes":{"name":"Neal Osinski II","age":48,"location":"North Valerie"}},{"attributes":{"name":"Mina Mohr","age":30,"location":"North Libbyboro"}},{"attributes":{"name":"Shane Herman","age":64,"location":"Eagan"}},{"attributes":{"name":"Ignatius Bechtelar IV","age":37,"location":"Carlsbad"}},{"attributes":{"name":"Oscar Marks","age":45,"location":"Arlington Heights"}},{"attributes":{"name":"Evan Emmerich","age":57,"location":"West Lambert"}},{"attributes":{"name":"Marcos Bruen Jr.","age":51,"location":"Duluth"}},{"attributes":{"name":"Jeffery Lindgren","age":19,"location":"Chesleybury"}},{"attributes":{"name":"Benny Kirlin","age":63,"location":"Riverside"}},{"attributes":{"name":"Kenny Wolf","age":77,"location":"Pedroshire"}},{"attributes":{"name":"Sidney Pacocha","age":44,"location":"Lake Catalinaberg"}},{"attributes":{"name":"Marcos Halvorson","age":55,"location":"Armandocester"}},{"attributes":{"name":"Miss Alexis Ward","age":37,"location":"Santa Ana"}},{"attributes":{"name":"Mr. Alan Barton","age":33,"location":"Adrainstead"}},{"attributes":{"name":"Myrtle Wolff","age":48,"location":"West Scotty"}},{"attributes":{"name":"Alvin Shanahan","age":67,"location":"Severn"}},{"attributes":{"name":"Luke Runolfsdottir","age":58,"location":"Port Emelieworth"}},{"attributes":{"name":"Candice Jacobs-Orn","age":32,"location":"Gordonmouth"}},{"attributes":{"name":"Chris Buckridge","age":55,"location":"West Christy"}},{"attributes":{"name":"Terrell Huel MD","age":21,"location":"Brandyville"}},{"attributes":{"name":"Frankie Farrell","age":25,"location":"Lake Adolfcester"}},{"attributes":{"name":"Mr. Shannon Senger","age":46,"location":"Moreno Valley"}},{"attributes":{"name":"Domenic Bednar","age":57,"location":"South Jacquelyn"}},{"attributes":{"name":"Marianna Crist Jr.","age":24,"location":"Santa Rosa"}},{"attributes":{"name":"Dr. Cullen Donnelly","age":49,"location":"Lake Caterinaville"}},{"attributes":{"name":"Kelley Bergstrom","age":33,"location":"Johannahaven"}},{"attributes":{"name":"Reginald Yundt","age":27,"location":"North Abner"}},{"attributes":{"name":"Lisa Deckow","age":33,"location":"Kaelaton"}},{"attributes":{"name":"Kristopher Schneider","age":63,"location":"Cummeratachester"}},{"attributes":{"name":"Xzavier Maggio","age":34,"location":"Kaiastad"}},{"attributes":{"name":"Mr. Fernando Rosenbaum","age":75,"location":"South Abdul"}},{"attributes":{"name":"Tatyana Hayes","age":39,"location":"North Jamie"}},{"attributes":{"name":"Lee Lang","age":44,"location":"Reichelstead"}},{"attributes":{"name":"Andreanne Howe","age":20,"location":"New Rozella"}},{"attributes":{"name":"Charlotte Graham","age":48,"location":"Noblesville"}},{"attributes":{"name":"Howard Keeling","age":27,"location":"Antoneberg"}},{"attributes":{"name":"Betty Adams","age":79,"location":"Ramonatown"}},{"attributes":{"name":"Mr. Edward McGlynn","age":72,"location":"Schroederchester"}},{"attributes":{"name":"Julian Schamberger","age":36,"location":"Highland"}},{"attributes":{"name":"Alyce Schiller","age":41,"location":"West Clementina"}},{"attributes":{"name":"Levi Sawayn","age":48,"location":"Gutmannfort"}},{"attributes":{"name":"Rosalind Lakin","age":37,"location":"Pocatello"}},{"attributes":{"name":"Shad Welch","age":38,"location":"Overland Park"}},{"attributes":{"name":"Paul O'Hara","age":64,"location":"Fort Johnathon"}},{"attributes":{"name":"Charlie Quitzon","age":66,"location":"South Emmaland"}},{"attributes":{"name":"Mr. Sean Wisoky","age":30,"location":"Fort Thurmanport"}},{"attributes":{"name":"Ralph Dooley","age":73,"location":"Schimmelburgh"}},{"attributes":{"name":"Dr. Al Sanford","age":29,"location":"Roanoke"}},{"attributes":{"name":"Ruby Skiles","age":51,"location":"Johnstonland"}},{"attributes":{"name":"Jaime Conroy","age":36,"location":"North Carli"}},{"attributes":{"name":"Marcos Bernier","age":44,"location":"New Cody"}},{"attributes":{"name":"Mrs. Barbara Schiller","age":41,"location":"East Idellaburgh"}},{"attributes":{"name":"Gerry Hegmann","age":56,"location":"Jacobsonstad"}},{"attributes":{"name":"Claude Erdman Jr.","age":23,"location":"Hesperia"}},{"attributes":{"name":"Ms. Otho Hintz","age":33,"location":"North Karleeboro"}},{"attributes":{"name":"Saige Cole","age":60,"location":"Prohaskahaven"}},{"attributes":{"name":"Fern Nitzsche","age":55,"location":"North Delia"}},{"attributes":{"name":"Marc McLaughlin II","age":73,"location":"Lynwood"}},{"attributes":{"name":"Jeannette Kessler","age":61,"location":"Port Nikolas"}},{"attributes":{"name":"Miss Jimmy Aufderhar V","age":74,"location":"West Uniquetown"}},{"attributes":{"name":"Wilbur Wolf","age":39,"location":"East Zella"}},{"attributes":{"name":"Johnny Casper","age":72,"location":"Bruenfield"}},{"attributes":{"name":"Haylee Okuneva PhD","age":67,"location":"South Mona"}},{"attributes":{"name":"Payton Ernser-Walker PhD","age":26,"location":"Rockwall"}},{"attributes":{"name":"Arlene Franecki","age":53,"location":"North Las Vegas"}},{"attributes":{"name":"Annamae Cruickshank","age":49,"location":"Velmaport"}},{"attributes":{"name":"Eldora Franecki","age":75,"location":"Tomasabury"}},{"attributes":{"name":"Della Mayer III","age":74,"location":"Considinecester"}},{"attributes":{"name":"Jacques Quitzon","age":56,"location":"Oletown"}},{"attributes":{"name":"Tomasa Crona","age":35,"location":"Conorville"}},{"attributes":{"name":"Anderson Dicki","age":23,"location":"Miltonstad"}},{"attributes":{"name":"Blake Hansen","age":80,"location":"Port Kendra"}},{"attributes":{"name":"Ms. Michael Wiegand","age":45,"location":"New Bobbymouth"}},{"attributes":{"name":"Adelbert Koch","age":24,"location":"Kiehnfort"}},{"attributes":{"name":"Letha Robel","age":70,"location":"Loraineview"}},{"attributes":{"name":"Darin Corkery","age":76,"location":"Abbottfield"}},{"attributes":{"name":"Jack Hammes","age":58,"location":"Earnestcester"}},{"attributes":{"name":"Zena Baumbach","age":59,"location":"Gulfport"}},{"attributes":{"name":"Fredrick Morar","age":40,"location":"Fort Jordanehaven"}},{"attributes":{"name":"Kari Vandervort","age":26,"location":"West Lavoncester"}},{"attributes":{"name":"Jailyn Torphy","age":56,"location":"Gregoryview"}},{"attributes":{"name":"Madie Jacobson","age":44,"location":"Summerville"}},{"attributes":{"name":"Ernestine Lindgren","age":67,"location":"Effertzborough"}},{"attributes":{"name":"Sherman Hickle","age":53,"location":"Angeloport"}},{"attributes":{"name":"Nathan Lueilwitz-Kub","age":32,"location":"Marianview"}},{"attributes":{"name":"Kian Brakus","age":55,"location":"West Caitlynborough"}},{"attributes":{"name":"Roland Hackett","age":34,"location":"Blaisestead"}},{"attributes":{"name":"Donna Davis Sr.","age":44,"location":"Carrollborough"}},{"attributes":{"name":"Paris Haag","age":63,"location":"South Quinnfurt"}},{"attributes":{"name":"Geovanny Ankunding","age":58,"location":"Heathcotehaven"}},{"attributes":{"name":"Franklin Gottlieb","age":75,"location":"Chelsieberg"}},{"attributes":{"name":"Jarrod Langosh","age":26,"location":"Rockyshire"}},{"attributes":{"name":"Chase Kertzmann","age":51,"location":"North Aleen"}},{"attributes":{"name":"Liam Leuschke","age":22,"location":"Fort Mozelle"}},{"attributes":{"name":"Darlene Wunsch","age":27,"location":"McGlynnhaven"}},{"attributes":{"name":"Russ Senger","age":24,"location":"Fort Jerodborough"}},{"attributes":{"name":"Cristina Bode","age":36,"location":"Kileyboro"}},{"attributes":{"name":"Madisen Walter","age":31,"location":"Adelineton"}},{"attributes":{"name":"Marjolaine Mraz","age":53,"location":"Friesenbury"}},{"attributes":{"name":"Tracy Murphy","age":32,"location":"Lake Violetchester"}},{"attributes":{"name":"Kole Langworth","age":78,"location":"New Ruby"}},{"attributes":{"name":"Kelley D'Amore","age":31,"location":"Marcview"}},{"attributes":{"name":"Roger Harris","age":65,"location":"Petaluma"}},{"attributes":{"name":"Gust Moore","age":37,"location":"Schmidtworth"}},{"attributes":{"name":"Prince Hoeger","age":79,"location":"Ritchieburgh"}},{"attributes":{"name":"Ross Bergnaum","age":47,"location":"North Johnathonstead"}},{"attributes":{"name":"Johnnie Kuhic","age":53,"location":"Port Alexanneton"}},{"attributes":{"name":"Freeda Block","age":39,"location":"Lake Anita"}},{"attributes":{"name":"Nellie Toy","age":44,"location":"South Catalinaland"}},{"attributes":{"name":"Leslie Torphy II","age":58,"location":"Nicholascester"}},{"attributes":{"name":"Bridget Franecki","age":57,"location":"Connburgh"}},{"attributes":{"name":"Reggie Kilback","age":35,"location":"South Winonabury"}},{"attributes":{"name":"Terrence Ledner V","age":36,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Marion Yundt","age":68,"location":"Lake Bennystad"}},{"attributes":{"name":"Kaitlyn Stracke","age":25,"location":"West Ginotown"}},{"attributes":{"name":"Mrs. Crystal Romaguera II","age":71,"location":"West Kaelyn"}},{"attributes":{"name":"Dr. Damon Trantow","age":23,"location":"Jerdeport"}},{"attributes":{"name":"Tiffany Hand","age":51,"location":"Vinceport"}},{"attributes":{"name":"Gary Walter DDS","age":69,"location":"Fort Urielburgh"}},{"attributes":{"name":"Dr. Pedro Reynolds","age":25,"location":"Anderson"}},{"attributes":{"name":"Darnell Cremin","age":23,"location":"Goodwintown"}},{"attributes":{"name":"Alexandria Hand III","age":61,"location":"Lednerland"}},{"attributes":{"name":"Clifford Tillman","age":46,"location":"Bountiful"}},{"attributes":{"name":"Carole Mertz","age":19,"location":"Kellenside"}},{"attributes":{"name":"Ms. Dianne Gutkowski","age":61,"location":"East Alexysland"}},{"attributes":{"name":"Edward Nikolaus II","age":41,"location":"West Rosarioville"}},{"attributes":{"name":"Daisy Adams PhD","age":29,"location":"Wizaborough"}},{"attributes":{"name":"Larry Morissette","age":63,"location":"Bristol"}},{"attributes":{"name":"Dr. Jessica Harvey III","age":72,"location":"South Omaton"}},{"attributes":{"name":"James Lang-Turcotte III","age":76,"location":"West Shayleestad"}},{"attributes":{"name":"Marty Parisian MD","age":37,"location":"Lake Austyn"}},{"attributes":{"name":"Louise Walter V","age":60,"location":"West Dominic"}},{"attributes":{"name":"Eloy Hansen","age":63,"location":"Janacester"}},{"attributes":{"name":"Ms. Alexander Buckridge","age":74,"location":"South Anastasiaborough"}},{"attributes":{"name":"Lew Fadel","age":37,"location":"South Mckenziefield"}},{"attributes":{"name":"Mrs. Mabel Heathcote","age":39,"location":"Fort Maximillia"}},{"attributes":{"name":"Amiya Wunsch III","age":62,"location":"South Luna"}},{"attributes":{"name":"Fanny Funk DDS","age":74,"location":"Aloha"}},{"attributes":{"name":"Debbie Ward I","age":48,"location":"Nampa"}},{"attributes":{"name":"Cameron Terry","age":35,"location":"South Lisettestad"}},{"attributes":{"name":"Jean O'Hara MD","age":29,"location":"Corwinstad"}},{"attributes":{"name":"Sharon Purdy","age":76,"location":"Keshaunbury"}},{"attributes":{"name":"Julia Sporer","age":25,"location":"Abnerfort"}},{"attributes":{"name":"Cecilia Zulauf","age":53,"location":"Glendora"}},{"attributes":{"name":"Freda Bergstrom PhD","age":71,"location":"Rogahncester"}},{"attributes":{"name":"Dr. Ramon O'Conner","age":56,"location":"East Zakaryfield"}},{"attributes":{"name":"Jackie Wolf-Kozey","age":55,"location":"Gleasonville"}},{"attributes":{"name":"Alvin Rice","age":59,"location":"Shyannbury"}},{"attributes":{"name":"Josephine Grant","age":67,"location":"Fort Name"}},{"attributes":{"name":"Cletus Dickinson","age":37,"location":"Cortezworth"}},{"attributes":{"name":"Dennis Sanford","age":74,"location":"South Jedediahworth"}},{"attributes":{"name":"Kyle VonRueden","age":22,"location":"South Favian"}},{"attributes":{"name":"Rosa Ledner Jr.","age":36,"location":"Chaddstad"}},{"attributes":{"name":"Mr. Adrian Tillman","age":38,"location":"Gerhardtown"}},{"attributes":{"name":"Margie Walter","age":70,"location":"Lake Armandoport"}},{"attributes":{"name":"Darrel Hermiston","age":23,"location":"Lombard"}},{"attributes":{"name":"Webster Reinger","age":28,"location":"East Kodyhaven"}},{"attributes":{"name":"Javon Bartell Jr.","age":36,"location":"Nitzscheview"}},{"attributes":{"name":"Chris Collins II","age":59,"location":"Taylorsville"}},{"attributes":{"name":"Noel Corkery MD","age":76,"location":"La Habra"}},{"attributes":{"name":"Miss Bertram Brown","age":61,"location":"Beattyville"}},{"attributes":{"name":"Phillip Ratke","age":68,"location":"Fort Horace"}},{"attributes":{"name":"Barbara Cartwright V","age":59,"location":"Mentor"}},{"attributes":{"name":"Hattie Murray","age":55,"location":"Ellsworthborough"}},{"attributes":{"name":"Jeannette Hane","age":43,"location":"Fort Cheyenne"}},{"attributes":{"name":"Bettie Heller","age":64,"location":"Lake Einohaven"}},{"attributes":{"name":"Leo Bins","age":79,"location":"Lake Petra"}},{"attributes":{"name":"Ocie Feeney","age":41,"location":"Corwinberg"}},{"attributes":{"name":"Courtney McGlynn","age":30,"location":"Tallahassee"}},{"attributes":{"name":"Rafaela Keeling","age":18,"location":"Jupiter"}},{"attributes":{"name":"Floyd Kuhic","age":59,"location":"Heidenreichshire"}},{"attributes":{"name":"Lauren Pouros","age":62,"location":"Shoreline"}},{"attributes":{"name":"Maxine Miller-Kertzmann","age":46,"location":"West Eliezer"}},{"attributes":{"name":"Amelie Lehner DDS","age":42,"location":"O'Reillychester"}},{"attributes":{"name":"Dahlia Feil","age":56,"location":"Lake Reggie"}},{"attributes":{"name":"Bessie Borer-Walker Jr.","age":51,"location":"Bashirianmouth"}},{"attributes":{"name":"Ms. Lauren Casper MD","age":61,"location":"Taylorsville"}},{"attributes":{"name":"Joany Armstrong","age":24,"location":"North Gregory"}},{"attributes":{"name":"Dr. Anastacio Rempel","age":59,"location":"New Mariela"}},{"attributes":{"name":"Dixie Waters","age":52,"location":"South Burdettecester"}},{"attributes":{"name":"Gilberto Zieme","age":35,"location":"Lake Ronnybury"}},{"attributes":{"name":"Lena Dickens","age":27,"location":"Chula Vista"}},{"attributes":{"name":"Citlalli Emard Jr.","age":54,"location":"San Jacinto"}},{"attributes":{"name":"April Howe","age":28,"location":"Lake Elsinore"}},{"attributes":{"name":"Matt Sanford","age":28,"location":"Silasstead"}},{"attributes":{"name":"Mrs. Lucy Doyle IV","age":66,"location":"Ethelworth"}},{"attributes":{"name":"Irving Barton","age":48,"location":"West Jevonside"}},{"attributes":{"name":"Nikita Mueller","age":45,"location":"D'angelostad"}},{"attributes":{"name":"David Beier PhD","age":27,"location":"Highland"}},{"attributes":{"name":"Moses Gerlach","age":40,"location":"Atlanta"}},{"attributes":{"name":"Mr. Owen Boyle","age":51,"location":"Gleasonchester"}},{"attributes":{"name":"Mr. Rolando Emard","age":40,"location":"Rennermouth"}},{"attributes":{"name":"Sammy Bauch","age":69,"location":"Lake Ivah"}},{"attributes":{"name":"Jaycee Kohler","age":75,"location":"New Cliffordland"}},{"attributes":{"name":"Mrs. Devonte Kunde","age":74,"location":"Ransomhaven"}},{"attributes":{"name":"Robin Heathcote","age":61,"location":"West Laney"}},{"attributes":{"name":"Miss Michelle Ward","age":53,"location":"Fort Alexis"}},{"attributes":{"name":"Dr. Torey VonRueden I","age":69,"location":"Marvinton"}},{"attributes":{"name":"Misty Rogahn","age":30,"location":"Fort Maeganstead"}},{"attributes":{"name":"Bradley Walker","age":44,"location":"North Maya"}},{"attributes":{"name":"Alva Wyman","age":40,"location":"North Thereseview"}},{"attributes":{"name":"Travis Hansen","age":77,"location":"Schneiderfurt"}},{"attributes":{"name":"Orland Powlowski","age":76,"location":"Lake Jarrell"}},{"attributes":{"name":"Cody Barrows","age":40,"location":"Hermanton"}},{"attributes":{"name":"Anthony Kohler I","age":54,"location":"North Louvenia"}},{"attributes":{"name":"Fernando Bartoletti-Lueilwitz","age":44,"location":"East Tyriqueside"}},{"attributes":{"name":"Claire Bradtke","age":62,"location":"Meridian"}},{"attributes":{"name":"Gage Franey","age":39,"location":"Lake Sandrine"}},{"attributes":{"name":"Terrance Hermann","age":35,"location":"Phyllismouth"}},{"attributes":{"name":"Mrs. Adolph Schoen","age":70,"location":"Wuckertport"}},{"attributes":{"name":"Geneva Bartoletti","age":20,"location":"Heloiseshire"}},{"attributes":{"name":"Lynne Franey","age":26,"location":"New Barneyberg"}},{"attributes":{"name":"Casey Flatley","age":26,"location":"Connellyton"}},{"attributes":{"name":"Miss Maximillia Abernathy","age":21,"location":"Elnoratown"}},{"attributes":{"name":"Jessie Lebsack V","age":54,"location":"Wizaborough"}},{"attributes":{"name":"Mark Murray","age":62,"location":"Stehrshire"}},{"attributes":{"name":"Karlee Dicki","age":43,"location":"Emilbury"}},{"attributes":{"name":"Andres Hauck","age":77,"location":"South Leon"}},{"attributes":{"name":"Isaias Marquardt IV","age":37,"location":"East Lizeth"}},{"attributes":{"name":"Spencer Spinka","age":64,"location":"Heaneycester"}},{"attributes":{"name":"Mrs. Max Barrows","age":57,"location":"Apex"}},{"attributes":{"name":"Leonor Berge","age":58,"location":"West Garth"}},{"attributes":{"name":"Robert Ortiz","age":28,"location":"Port Maxwellside"}},{"attributes":{"name":"Juliet Barton","age":49,"location":"New Stefanie"}},{"attributes":{"name":"Dewayne Sipes","age":56,"location":"Gresham"}},{"attributes":{"name":"Callie Shanahan III","age":48,"location":"Dickinsontown"}},{"attributes":{"name":"Mario Macejkovic V","age":26,"location":"West Corene"}},{"attributes":{"name":"Jeff Bauch-Kirlin","age":44,"location":"East Dollyland"}},{"attributes":{"name":"Jamie Sporer V","age":37,"location":"Medhurststead"}},{"attributes":{"name":"Kaylah Kemmer","age":32,"location":"Ankundingshire"}},{"attributes":{"name":"Hollie Breitenberg","age":36,"location":"Albertaport"}},{"attributes":{"name":"Lynda Larson","age":55,"location":"Weston"}},{"attributes":{"name":"Ilene Robel","age":65,"location":"East Rozella"}},{"attributes":{"name":"Maryann Crooks","age":37,"location":"Lake David"}},{"attributes":{"name":"Quinton Waelchi","age":33,"location":"Coachella"}},{"attributes":{"name":"Josiah Bruen","age":76,"location":"Monteland"}},{"attributes":{"name":"John Boyer","age":55,"location":"Tillmanfort"}},{"attributes":{"name":"Ramona Kozey","age":59,"location":"Gradyberg"}},{"attributes":{"name":"Sonya Herzog-Effertz","age":24,"location":"Faheyborough"}},{"attributes":{"name":"Briana O'Kon","age":30,"location":"Vandervortstad"}},{"attributes":{"name":"Eldon Lynch","age":21,"location":"North Madilynstead"}},{"attributes":{"name":"Ada Mayer","age":64,"location":"Port Kristinaboro"}},{"attributes":{"name":"Jeanette Jaskolski","age":70,"location":"Kelvinview"}},{"attributes":{"name":"Akeem Ratke","age":27,"location":"Torpfield"}},{"attributes":{"name":"Joyce Botsford","age":77,"location":"East Carolyne"}},{"attributes":{"name":"Forrest Douglas","age":65,"location":"East Angelinaland"}},{"attributes":{"name":"Dale Kreiger-Pfannerstill DVM","age":78,"location":"Plymouth"}},{"attributes":{"name":"Guadalupe Franecki","age":54,"location":"New Maci"}},{"attributes":{"name":"Joyce Bruen","age":65,"location":"Keelingtown"}},{"attributes":{"name":"Danyka Bogan","age":63,"location":"Sparks"}},{"attributes":{"name":"Viva Cruickshank","age":70,"location":"Wellington"}},{"attributes":{"name":"Dr. Marcelle Weimann","age":53,"location":"Aidenport"}},{"attributes":{"name":"Matt Bartell","age":77,"location":"Wilfredside"}},{"attributes":{"name":"Gwen Treutel","age":67,"location":"Danykaview"}},{"attributes":{"name":"Kathleen Marvin","age":48,"location":"East Constance"}},{"attributes":{"name":"Mrs. Mona Armstrong","age":66,"location":"Pearlfurt"}},{"attributes":{"name":"Cary Kassulke","age":37,"location":"Jovannyside"}},{"attributes":{"name":"Felicia Homenick","age":42,"location":"Botsfordchester"}},{"attributes":{"name":"Irma McDermott","age":38,"location":"Annieburgh"}},{"attributes":{"name":"Elvie Friesen","age":44,"location":"Fort Nickstead"}},{"attributes":{"name":"Meagan Maggio","age":63,"location":"Deondreshire"}},{"attributes":{"name":"Austyn Bode","age":28,"location":"Hoppehaven"}},{"attributes":{"name":"Tomasa Stehr","age":75,"location":"Henderson"}},{"attributes":{"name":"June Lakin","age":21,"location":"Chicago"}},{"attributes":{"name":"Jason Schumm Sr.","age":30,"location":"North Katherineville"}},{"attributes":{"name":"June Wunsch","age":30,"location":"Effiehaven"}},{"attributes":{"name":"Brandi Ritchie","age":75,"location":"West Darrick"}},{"attributes":{"name":"Alva Waters","age":37,"location":"West Selinaberg"}},{"attributes":{"name":"Eunice Hoppe","age":27,"location":"Unaview"}},{"attributes":{"name":"Geneva Stroman I","age":71,"location":"New Ezequielland"}},{"attributes":{"name":"Molly Bartoletti-Schmeler","age":25,"location":"South Modesta"}},{"attributes":{"name":"Mrs. Dorian Haag","age":67,"location":"East Vernberg"}},{"attributes":{"name":"Brent Macejkovic","age":66,"location":"North Kielhaven"}},{"attributes":{"name":"Ignacio Gislason","age":42,"location":"Lawton"}},{"attributes":{"name":"Pat Graham","age":58,"location":"Forestton"}},{"attributes":{"name":"Emmanuelle Thompson","age":63,"location":"Jurupa Valley"}},{"attributes":{"name":"Natasha Dare","age":44,"location":"Warrenville"}},{"attributes":{"name":"August Simonis","age":40,"location":"Odessa"}},{"attributes":{"name":"Jorge Lindgren","age":38,"location":"South Augustaview"}},{"attributes":{"name":"Jacquelyn Williamson","age":56,"location":"Port Marley"}},{"attributes":{"name":"Franklin Purdy","age":79,"location":"Virginia Beach"}},{"attributes":{"name":"Tomas Jerde","age":24,"location":"Port Whitney"}},{"attributes":{"name":"Patsy Nicolas","age":74,"location":"Abbottworth"}},{"attributes":{"name":"Mr. Albert Wisoky","age":28,"location":"New Stuart"}},{"attributes":{"name":"Pat Sanford-Sanford","age":39,"location":"East Imogeneworth"}},{"attributes":{"name":"Deion Renner","age":35,"location":"Maximusport"}},{"attributes":{"name":"Macey Harber","age":22,"location":"Miami"}},{"attributes":{"name":"Mandy Bergstrom","age":22,"location":"Mireyafort"}},{"attributes":{"name":"Willie O'Connell","age":66,"location":"Johnsland"}},{"attributes":{"name":"Mackenzie Kessler I","age":34,"location":"North Jamalfurt"}},{"attributes":{"name":"Gretchen Daniel","age":57,"location":"Cincinnati"}},{"attributes":{"name":"Verlie Hammes","age":28,"location":"Karinaville"}},{"attributes":{"name":"Lucille Haag","age":75,"location":"Tabithafurt"}},{"attributes":{"name":"Lorena Abernathy","age":21,"location":"Phoenix"}},{"attributes":{"name":"Amelia Schaden","age":27,"location":"Spokane Valley"}},{"attributes":{"name":"Gerard Hegmann","age":39,"location":"West Palm Beach"}},{"attributes":{"name":"Barrett Gislason","age":75,"location":"South Giovani"}},{"attributes":{"name":"Marge Schoen","age":35,"location":"Fort Leatha"}},{"attributes":{"name":"Mr. Jorge Jacobs","age":20,"location":"Lake Natashafurt"}},{"attributes":{"name":"Ms. Orlando Morar","age":43,"location":"West Queenie"}},{"attributes":{"name":"Geoffrey Ankunding","age":56,"location":"Lake Elainashire"}},{"attributes":{"name":"Lazaro Armstrong PhD","age":46,"location":"Efrainborough"}},{"attributes":{"name":"Belinda Hodkiewicz Jr.","age":77,"location":"Hackettboro"}},{"attributes":{"name":"Jonathan DuBuque-Deckow","age":32,"location":"Dachtown"}},{"attributes":{"name":"Karlie Bartell","age":38,"location":"Willtown"}},{"attributes":{"name":"Laura Hintz","age":18,"location":"Port Landen"}},{"attributes":{"name":"Marlene Stokes","age":31,"location":"Twin Falls"}},{"attributes":{"name":"Saul Mosciski I","age":57,"location":"South Robbieburgh"}},{"attributes":{"name":"Lori Kirlin","age":59,"location":"Oak Lawn"}},{"attributes":{"name":"Mr. Ada Lueilwitz","age":40,"location":"Enosport"}},{"attributes":{"name":"Erin Mitchell","age":52,"location":"New Generalport"}},{"attributes":{"name":"Tom Hyatt","age":29,"location":"O'Reillymouth"}},{"attributes":{"name":"Johathan Kirlin","age":43,"location":"West Makenna"}},{"attributes":{"name":"Lori Lesch","age":43,"location":"Schuppefurt"}},{"attributes":{"name":"Verna Simonis","age":80,"location":"Fort Amari"}},{"attributes":{"name":"Marc Gusikowski","age":20,"location":"Leiffurt"}},{"attributes":{"name":"Jason Frami","age":77,"location":"North Hanna"}},{"attributes":{"name":"Jodi Smith","age":70,"location":"West Carolshire"}},{"attributes":{"name":"Mr. Marquis Effertz","age":31,"location":"Port Darrelburgh"}},{"attributes":{"name":"Madeline Roob","age":27,"location":"East Wyattfield"}},{"attributes":{"name":"Francis Abshire","age":71,"location":"North Lydiafort"}},{"attributes":{"name":"Marisol Schmidt","age":34,"location":"East Shaina"}},{"attributes":{"name":"Shaun Bauch I","age":42,"location":"Fort Audiefield"}},{"attributes":{"name":"Jailyn Lang","age":33,"location":"Devantestead"}},{"attributes":{"name":"Scott Monahan","age":80,"location":"Wizafort"}},{"attributes":{"name":"Marc Schumm I","age":64,"location":"Hellerville"}},{"attributes":{"name":"Silvia Runolfsdottir","age":43,"location":"Sarasota"}},{"attributes":{"name":"Eddie Parker","age":42,"location":"Bertstead"}},{"attributes":{"name":"Ms. Katherine O'Kon","age":28,"location":"Keelingbury"}},{"attributes":{"name":"Johnnie Lubowitz","age":62,"location":"South Rosendo"}},{"attributes":{"name":"Kristina Ruecker","age":71,"location":"West Vinnie"}},{"attributes":{"name":"Laurie Satterfield-Kertzmann","age":80,"location":"Bradtkefurt"}},{"attributes":{"name":"Dr. Randall Conroy","age":70,"location":"Lindseystad"}},{"attributes":{"name":"Mona Stokes","age":20,"location":"Bellastead"}},{"attributes":{"name":"Carlee Mohr","age":67,"location":"Carson City"}},{"attributes":{"name":"Noelia Russel","age":24,"location":"West Jarrett"}},{"attributes":{"name":"Morris Fay","age":42,"location":"North Treva"}},{"attributes":{"name":"Franklin Emmerich DDS","age":72,"location":"Hermannport"}},{"attributes":{"name":"Ramona Schaden","age":24,"location":"Jaydafurt"}},{"attributes":{"name":"Miss Nicole Ernser","age":25,"location":"Rancho Cordova"}},{"attributes":{"name":"Georgianna Cummerata","age":79,"location":"Maxineworth"}},{"attributes":{"name":"Francis West V","age":22,"location":"Schummfort"}},{"attributes":{"name":"Rita Flatley","age":55,"location":"Everettefort"}},{"attributes":{"name":"Richie Robel","age":41,"location":"Collierchester"}},{"attributes":{"name":"Latoya Powlowski","age":55,"location":"South Owencester"}},{"attributes":{"name":"Laurence MacGyver","age":41,"location":"Fort Tad"}},{"attributes":{"name":"Leslie Block DDS","age":68,"location":"Cummeratabury"}},{"attributes":{"name":"Beryl Rutherford","age":51,"location":"East Maureencester"}},{"attributes":{"name":"Gage Reinger","age":70,"location":"Lisandroton"}},{"attributes":{"name":"Sven Dickens","age":39,"location":"East Michalefort"}},{"attributes":{"name":"Jack Casper","age":28,"location":"New Lillie"}},{"attributes":{"name":"Johnnie Russel MD","age":62,"location":"New Kasandra"}},{"attributes":{"name":"Dovie Leuschke","age":70,"location":"Arjunbury"}},{"attributes":{"name":"Estelle Rath","age":35,"location":"South Paige"}},{"attributes":{"name":"Sandra Simonis","age":34,"location":"Peabody"}},{"attributes":{"name":"Nina Boyle","age":45,"location":"North Estel"}},{"attributes":{"name":"Dr. Otho Koss","age":49,"location":"Linden"}},{"attributes":{"name":"Keon Grant","age":75,"location":"Waco"}},{"attributes":{"name":"Ernest Jaskolski II","age":25,"location":"Johannview"}},{"attributes":{"name":"Mrs. Elmer Tromp","age":55,"location":"New Layne"}},{"attributes":{"name":"Dr. Alverta Becker","age":38,"location":"Galveston"}},{"attributes":{"name":"Della Schimmel","age":66,"location":"Jarenbury"}},{"attributes":{"name":"Joey Cremin","age":34,"location":"Edythefurt"}},{"attributes":{"name":"Harmony Smitham","age":72,"location":"North Shealand"}},{"attributes":{"name":"Cindy Stanton","age":62,"location":"Cristburgh"}},{"attributes":{"name":"Miss Helena Zboncak","age":74,"location":"Mishawaka"}},{"attributes":{"name":"Zachary Krajcik","age":71,"location":"Lake Deja"}},{"attributes":{"name":"Clint McLaughlin","age":23,"location":"Ocala"}},{"attributes":{"name":"Katlyn Emard","age":59,"location":"Boganton"}},{"attributes":{"name":"Patricia Fritsch","age":24,"location":"South Vitaborough"}},{"attributes":{"name":"Remington Schroeder","age":72,"location":"Issaccester"}},{"attributes":{"name":"Homer Moen","age":19,"location":"North Angelburgh"}},{"attributes":{"name":"Darryl Maggio","age":58,"location":"North Hilton"}},{"attributes":{"name":"Athena Rath","age":57,"location":"Craigside"}},{"attributes":{"name":"Dr. Janet Ernser","age":52,"location":"East Candice"}},{"attributes":{"name":"Van Ward","age":53,"location":"Eloisaborough"}},{"attributes":{"name":"Mamie Steuber","age":28,"location":"Santa Monica"}},{"attributes":{"name":"Stuart Hermiston","age":29,"location":"New Genesisville"}},{"attributes":{"name":"Maurice Murazik","age":35,"location":"West Rogersfield"}},{"attributes":{"name":"Serenity Schneider","age":79,"location":"Powlowskishire"}},{"attributes":{"name":"Jenny Green","age":20,"location":"Mitchellcester"}},{"attributes":{"name":"Dr. Corbin Lakin","age":35,"location":"Lake Jimmiebury"}},{"attributes":{"name":"Ms. Teri McClure","age":38,"location":"Earlinestead"}},{"attributes":{"name":"Mr. Jayde Murphy","age":63,"location":"Alaynacester"}},{"attributes":{"name":"Amie Douglas","age":18,"location":"Elisabethberg"}},{"attributes":{"name":"Dianna Hodkiewicz","age":66,"location":"East Eleanora"}},{"attributes":{"name":"Marion Nolan","age":59,"location":"Folsom"}},{"attributes":{"name":"Sigurd D'Amore","age":49,"location":"North Rebekashire"}},{"attributes":{"name":"Dr. Imani Howe","age":78,"location":"Port Kellie"}},{"attributes":{"name":"Janice Quitzon","age":74,"location":"Tuckahoe"}},{"attributes":{"name":"Bert Borer","age":71,"location":"Jonesboro"}},{"attributes":{"name":"Stewart Stiedemann","age":20,"location":"Rosemead"}},{"attributes":{"name":"Tyrique Weimann","age":71,"location":"Cicero"}},{"attributes":{"name":"Martine Ferry","age":33,"location":"Danville"}},{"attributes":{"name":"Mrs. Tasha Kris","age":23,"location":"Carmelbury"}},{"attributes":{"name":"Brett Koch","age":76,"location":"Justenhaven"}},{"attributes":{"name":"Roberto Schowalter","age":48,"location":"New Rodger"}},{"attributes":{"name":"Dr. Adeline Mraz PhD","age":53,"location":"Dublin"}},{"attributes":{"name":"Linda Howell","age":59,"location":"Fort Baylee"}},{"attributes":{"name":"Marion Quigley","age":59,"location":"Lake Izabella"}},{"attributes":{"name":"Ed King III","age":62,"location":"East Jalen"}},{"attributes":{"name":"Delia Beahan","age":61,"location":"North Albertacester"}},{"attributes":{"name":"April Greenholt","age":45,"location":"South Bend"}},{"attributes":{"name":"Lee Hagenes DDS","age":42,"location":"Dickichester"}},{"attributes":{"name":"Sheridan Heaney","age":38,"location":"North Demetrius"}},{"attributes":{"name":"Mr. Luther Fahey","age":18,"location":"South Jarrellstad"}},{"attributes":{"name":"Emilia Gleason","age":54,"location":"Grimesville"}},{"attributes":{"name":"Janet Ernser","age":61,"location":"East Jorge"}},{"attributes":{"name":"Lionel Homenick Jr.","age":25,"location":"Jessikaworth"}},{"attributes":{"name":"Roy Hilll","age":75,"location":"North Kobe"}},{"attributes":{"name":"Juana Kuhn","age":62,"location":"Fort Narciso"}},{"attributes":{"name":"Hannah Beatty","age":38,"location":"West Willow"}},{"attributes":{"name":"Benjamin Altenwerth","age":57,"location":"East Holdencester"}},{"attributes":{"name":"August Toy PhD","age":63,"location":"Fort Cortezview"}},{"attributes":{"name":"Wilson Ernser","age":38,"location":"Batzboro"}},{"attributes":{"name":"Robb Hodkiewicz","age":54,"location":"Spring"}},{"attributes":{"name":"Teagan Ritchie-Bernhard IV","age":40,"location":"Port Stanford"}},{"attributes":{"name":"Willie Shields","age":39,"location":"Fayetteville"}},{"attributes":{"name":"Alphonso Feest","age":59,"location":"Fort Jarrod"}},{"attributes":{"name":"Herminia Borer","age":38,"location":"North Oscar"}},{"attributes":{"name":"Christy Fritsch-Dibbert V","age":60,"location":"Mesa"}},{"attributes":{"name":"Maryam Bogisich","age":49,"location":"Romaguerafield"}},{"attributes":{"name":"Roy Hintz","age":52,"location":"Richland"}},{"attributes":{"name":"Jimmie Baumbach","age":31,"location":"Salt Lake City"}},{"attributes":{"name":"Jovanny Graham","age":21,"location":"Elmerworth"}},{"attributes":{"name":"Alberto Emard","age":68,"location":"Yuma"}},{"attributes":{"name":"Madaline Collier PhD","age":73,"location":"Severn"}},{"attributes":{"name":"Miss Hattie Sawayn","age":46,"location":"Petraburgh"}},{"attributes":{"name":"Roberto Berge","age":24,"location":"Port Alexandra"}},{"attributes":{"name":"Mr. Garth Cummerata","age":30,"location":"Lynchbury"}},{"attributes":{"name":"Ramiro Smith IV","age":60,"location":"Larissatown"}},{"attributes":{"name":"Hector Effertz","age":74,"location":"Brianside"}},{"attributes":{"name":"Rupert Adams","age":53,"location":"Elmofurt"}},{"attributes":{"name":"Miss Geneva Gislason","age":53,"location":"New Vergie"}},{"attributes":{"name":"Kelli Miller","age":54,"location":"Laurenstead"}},{"attributes":{"name":"Katarina Pfannerstill","age":77,"location":"Lake Leraport"}},{"attributes":{"name":"Misael Emard","age":63,"location":"Grahamshire"}},{"attributes":{"name":"Dr. Kelvin Zulauf","age":65,"location":"Malden"}},{"attributes":{"name":"Cullen Jones","age":61,"location":"Corona"}},{"attributes":{"name":"Felipe Jacobs","age":69,"location":"Port Deonte"}},{"attributes":{"name":"Fay Hermiston","age":66,"location":"Owensboro"}},{"attributes":{"name":"Charlotte Spinka","age":34,"location":"New Andersonstead"}},{"attributes":{"name":"Kaelyn Feeney DVM","age":65,"location":"Port Modesta"}},{"attributes":{"name":"Mrs. Cynthia Crist","age":74,"location":"Lindtown"}},{"attributes":{"name":"Avery Wisozk-Grimes","age":65,"location":"Lake Estherbury"}},{"attributes":{"name":"Warren White","age":59,"location":"Decatur"}},{"attributes":{"name":"Delia Romaguera","age":48,"location":"East Marianatown"}},{"attributes":{"name":"Lamar Swift","age":56,"location":"Kamrenbury"}},{"attributes":{"name":"Lee Heathcote","age":45,"location":"Melodystad"}},{"attributes":{"name":"Jason Quigley","age":50,"location":"Wilfordhaven"}},{"attributes":{"name":"Franz Boyer PhD","age":76,"location":"Breitenbergtown"}},{"attributes":{"name":"Dennis Considine","age":58,"location":"West Lavon"}},{"attributes":{"name":"Alvin Paucek","age":18,"location":"Opalburgh"}},{"attributes":{"name":"Dr. Laisha Jast","age":67,"location":"Fort Anyafield"}},{"attributes":{"name":"Louise Boyle MD","age":25,"location":"Robertoland"}},{"attributes":{"name":"Evangeline Huel-Turcotte MD","age":18,"location":"Botsfordtown"}},{"attributes":{"name":"Josefina Lesch","age":37,"location":"South Michael"}},{"attributes":{"name":"Jensen Langworth","age":48,"location":"Port Fabiolatown"}},{"attributes":{"name":"Antonio Kris","age":20,"location":"Botsfordbury"}},{"attributes":{"name":"Freda Rutherford","age":73,"location":"Edina"}},{"attributes":{"name":"Micheal Schamberger","age":76,"location":"Abbyfort"}},{"attributes":{"name":"Francisca Heaney PhD","age":41,"location":"Lake Malikafurt"}},{"attributes":{"name":"Alfreda Turcotte-Ziemann","age":56,"location":"North Nicola"}},{"attributes":{"name":"Sherri Kris","age":18,"location":"Cummeratahaven"}},{"attributes":{"name":"Kirk Barrows","age":21,"location":"Tillmanview"}},{"attributes":{"name":"Jacky Zieme","age":54,"location":"Schambergertown"}},{"attributes":{"name":"Eunice Jacobson","age":37,"location":"Boca Raton"}},{"attributes":{"name":"Morgan Gibson","age":51,"location":"Port Briastead"}},{"attributes":{"name":"Anita Goyette","age":45,"location":"New Salvatore"}},{"attributes":{"name":"Dr. Sherry Williamson","age":51,"location":"San Juan"}},{"attributes":{"name":"Terry Feil","age":35,"location":"Quigleyville"}},{"attributes":{"name":"Louisa Beahan","age":77,"location":"Sauerside"}},{"attributes":{"name":"Imelda Haag","age":21,"location":"Brownsville"}},{"attributes":{"name":"Joel Feeney","age":45,"location":"South Emerald"}},{"attributes":{"name":"Tasha Konopelski","age":25,"location":"East Jaystead"}},{"attributes":{"name":"Aryanna Roob","age":71,"location":"Rebeccaton"}},{"attributes":{"name":"Mr. Jackie Hickle","age":72,"location":"Langworthfurt"}},{"attributes":{"name":"Ms. Alexandre Hyatt","age":35,"location":"East Chadborough"}},{"attributes":{"name":"Adrain Huel","age":22,"location":"Hettingershire"}},{"attributes":{"name":"Felipa Green","age":51,"location":"Judahland"}},{"attributes":{"name":"Lloyd Roberts","age":24,"location":"Bruenton"}},{"attributes":{"name":"Alfonso Tremblay","age":39,"location":"Dublin"}},{"attributes":{"name":"Sheila Smith","age":43,"location":"Goldenside"}},{"attributes":{"name":"Robb Funk","age":53,"location":"South Adalineburgh"}},{"attributes":{"name":"George Schamberger","age":37,"location":"Lubowitzfield"}},{"attributes":{"name":"Olive Ondricka","age":59,"location":"Port Karenview"}},{"attributes":{"name":"Clare Crist","age":61,"location":"Jammieport"}},{"attributes":{"name":"Mrs. Cheryl Bradtke","age":21,"location":"Adahboro"}},{"attributes":{"name":"Mr. Jennie Simonis","age":18,"location":"Tustin"}},{"attributes":{"name":"Dixie Pollich","age":71,"location":"Caterinahaven"}},{"attributes":{"name":"Jesse Ondricka","age":65,"location":"Dearborn Heights"}},{"attributes":{"name":"Claudia Simonis","age":57,"location":"Joannystad"}},{"attributes":{"name":"Charley Bruen","age":37,"location":"Reingertown"}},{"attributes":{"name":"Maybelle Dooley","age":33,"location":"West Jenningschester"}},{"attributes":{"name":"Mack Turner","age":57,"location":"Fort Ruthiebury"}},{"attributes":{"name":"Ryan Cole","age":25,"location":"Charlotte"}},{"attributes":{"name":"Hope Ward-Maggio","age":40,"location":"West Arjun"}},{"attributes":{"name":"Henrietta Hudson","age":51,"location":"North Nola"}},{"attributes":{"name":"Beth Auer","age":39,"location":"Sydneetown"}},{"attributes":{"name":"Deion Hudson V","age":77,"location":"Lake Dortha"}},{"attributes":{"name":"Ashlynn Hermann","age":32,"location":"West Alenatown"}},{"attributes":{"name":"Jaime Langworth IV","age":24,"location":"Wilkinsonberg"}},{"attributes":{"name":"Dr. Ann Homenick","age":52,"location":"Beahanview"}},{"attributes":{"name":"Maxime Goyette","age":76,"location":"East Jonas"}},{"attributes":{"name":"Enoch Hermiston","age":40,"location":"Franztown"}},{"attributes":{"name":"Carl Pollich","age":33,"location":"Drewville"}},{"attributes":{"name":"Tina Nitzsche","age":53,"location":"Faustoberg"}},{"attributes":{"name":"Buck Boyer","age":21,"location":"Kanemouth"}},{"attributes":{"name":"Betsy Crist","age":64,"location":"Swaniawskichester"}},{"attributes":{"name":"Amos Doyle","age":34,"location":"East Honolulu"}},{"attributes":{"name":"Ignacio Kunde","age":40,"location":"Belleville"}},{"attributes":{"name":"Irving Frami","age":66,"location":"Ethafurt"}},{"attributes":{"name":"Arden Kiehn I","age":52,"location":"Jamelboro"}},{"attributes":{"name":"Doug Simonis","age":74,"location":"Aurelioburgh"}},{"attributes":{"name":"Allison Carter","age":18,"location":"North Austyn"}},{"attributes":{"name":"Dr. Rene Greenholt","age":68,"location":"Blockborough"}},{"attributes":{"name":"Lloyd Durgan","age":40,"location":"McLaughlinview"}},{"attributes":{"name":"Arno Ratke","age":21,"location":"Scarlettville"}},{"attributes":{"name":"Sean Sanford","age":40,"location":"Addiebury"}},{"attributes":{"name":"Addie Adams","age":80,"location":"Sistertown"}},{"attributes":{"name":"Julio Haag-Stoltenberg II","age":20,"location":"Watsicaport"}},{"attributes":{"name":"Philip Legros","age":33,"location":"Marquardthaven"}},{"attributes":{"name":"Darnell Hodkiewicz","age":44,"location":"Mariahbury"}},{"attributes":{"name":"Liam Stroman","age":68,"location":"Kalamazoo"}},{"attributes":{"name":"Mr. Charlie Jacobi","age":64,"location":"South Leslie"}},{"attributes":{"name":"Shelley Boehm","age":74,"location":"Marvinberg"}},{"attributes":{"name":"Vernie Harris","age":58,"location":"Gilesbury"}},{"attributes":{"name":"Edna Abernathy","age":35,"location":"New Jonatanhaven"}},{"attributes":{"name":"Sylvia Stark","age":66,"location":"East Astridside"}},{"attributes":{"name":"Jorge Pouros","age":33,"location":"West Malika"}},{"attributes":{"name":"Ellie Wunsch","age":51,"location":"North Dangelomouth"}},{"attributes":{"name":"Lia Rippin","age":75,"location":"Jolieburgh"}},{"attributes":{"name":"Nestor Harris","age":42,"location":"Port Adanstad"}},{"attributes":{"name":"Alberto Quigley","age":38,"location":"Websterstad"}},{"attributes":{"name":"Allan Kerluke","age":34,"location":"Giovanniville"}},{"attributes":{"name":"Eric Walker","age":64,"location":"Croninland"}},{"attributes":{"name":"Simon Lueilwitz","age":55,"location":"Westleybury"}},{"attributes":{"name":"Clifford DuBuque","age":40,"location":"Spring Valley"}},{"attributes":{"name":"Burley Price","age":52,"location":"Dunwoody"}},{"attributes":{"name":"Mrs. Ulises Gleichner","age":27,"location":"East Norwood"}},{"attributes":{"name":"Carli Kertzmann","age":57,"location":"New Waltonstead"}},{"attributes":{"name":"Catalina Lesch","age":29,"location":"New Carlottaborough"}},{"attributes":{"name":"Yvette Kuvalis","age":28,"location":"Gregoriafurt"}},{"attributes":{"name":"Sylvia Rath MD","age":58,"location":"Pittsburgh"}},{"attributes":{"name":"Alfred Schuppe","age":23,"location":"Lelahburgh"}},{"attributes":{"name":"Ashley Robel","age":20,"location":"Adonisborough"}},{"attributes":{"name":"Alicia Cormier-Williamson","age":22,"location":"Hutchinson"}},{"attributes":{"name":"Estelle Witting","age":31,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Madelynn Flatley","age":38,"location":"North Kamilleboro"}},{"attributes":{"name":"Wilburn Haley","age":47,"location":"Justenchester"}},{"attributes":{"name":"Miss Chadd Padberg","age":44,"location":"New Garland"}},{"attributes":{"name":"Max Kunde","age":36,"location":"Jenkinston"}},{"attributes":{"name":"Mr. Arnold Boyer Sr.","age":34,"location":"Port Zachariahbury"}},{"attributes":{"name":"Elisa Reichert","age":50,"location":"New Kelvin"}},{"attributes":{"name":"Lulu Kshlerin","age":55,"location":"Colbychester"}},{"attributes":{"name":"Pauline Wiegand","age":48,"location":"Sporerstead"}},{"attributes":{"name":"Eugene Glover","age":59,"location":"Miloport"}},{"attributes":{"name":"Leonard Morar","age":55,"location":"East Cleo"}},{"attributes":{"name":"Lynn Tillman","age":52,"location":"Brandtberg"}},{"attributes":{"name":"Laurence Emmerich","age":24,"location":"New Jeanette"}},{"attributes":{"name":"Mr. Delia Harris","age":46,"location":"East Evalyn"}},{"attributes":{"name":"Sonja Boyer","age":33,"location":"Vincenzoberg"}},{"attributes":{"name":"Jeannette Rodriguez","age":34,"location":"Homenickborough"}},{"attributes":{"name":"Terrance Connelly","age":60,"location":"Ziemannstad"}},{"attributes":{"name":"Manuel Schuster","age":57,"location":"South Daphne"}},{"attributes":{"name":"Clemens Hauck","age":62,"location":"Winonafort"}},{"attributes":{"name":"Raquel Lemke","age":27,"location":"Lake Amani"}},{"attributes":{"name":"Darren Klein","age":27,"location":"East Justina"}},{"attributes":{"name":"Anabelle Quigley I","age":60,"location":"Mayerhaven"}},{"attributes":{"name":"Christiana Morar-Rice","age":44,"location":"Fort Susannaville"}},{"attributes":{"name":"Brooke Gleason","age":22,"location":"New Maudiestead"}},{"attributes":{"name":"Dorothea Crooks-Monahan","age":39,"location":"Blaiseview"}},{"attributes":{"name":"Ken Schuppe","age":64,"location":"Lockmanview"}},{"attributes":{"name":"Lisa Goyette","age":76,"location":"Lake Alishachester"}},{"attributes":{"name":"Laron Williamson","age":33,"location":"Prosaccocester"}},{"attributes":{"name":"Lora Donnelly","age":42,"location":"Upland"}},{"attributes":{"name":"Lee Koepp","age":25,"location":"Camden"}},{"attributes":{"name":"Guadalupe Cronin","age":73,"location":"Greenfelderstead"}},{"attributes":{"name":"Brittany Okuneva","age":54,"location":"Lake Destinstead"}},{"attributes":{"name":"Cynthia Tillman","age":45,"location":"Gunnarburgh"}},{"attributes":{"name":"Melba Hodkiewicz","age":67,"location":"New Braunfels"}},{"attributes":{"name":"Alexandra Hackett","age":36,"location":"East Natbury"}},{"attributes":{"name":"Aisha Bradtke","age":77,"location":"East Darrenhaven"}},{"attributes":{"name":"Joaquin Glover","age":44,"location":"Port Mya"}},{"attributes":{"name":"Ethyl Douglas","age":78,"location":"Micheleport"}},{"attributes":{"name":"Kristy Effertz","age":73,"location":"Port Hobarttown"}},{"attributes":{"name":"Issac Waelchi","age":65,"location":"Lake Brittany"}},{"attributes":{"name":"Gavin Macejkovic-Becker","age":74,"location":"New Ahmadcester"}},{"attributes":{"name":"Erika Ledner MD","age":78,"location":"East Fanniefort"}},{"attributes":{"name":"Kyleigh Russel","age":69,"location":"Bernhardtown"}},{"attributes":{"name":"Velma Monahan","age":28,"location":"New Etha"}},{"attributes":{"name":"Bethany Considine","age":52,"location":"East Hillardview"}},{"attributes":{"name":"Sheridan Haley","age":31,"location":"North Justice"}},{"attributes":{"name":"Francisco Rempel","age":61,"location":"Steuberside"}},{"attributes":{"name":"Wilson Nikolaus","age":78,"location":"Fort Norrisland"}},{"attributes":{"name":"Maureen Rippin","age":26,"location":"West Laynebury"}},{"attributes":{"name":"Cynthia Simonis III","age":75,"location":"Gulgowskiborough"}},{"attributes":{"name":"Hazel Hackett","age":26,"location":"Bauchfort"}},{"attributes":{"name":"Yasmin Ankunding-Emmerich","age":64,"location":"Canton"}},{"attributes":{"name":"Edythe Veum","age":40,"location":"Palo Alto"}},{"attributes":{"name":"Emmalee Murphy","age":54,"location":"Fort Jeff"}},{"attributes":{"name":"Caitlyn MacGyver","age":25,"location":"Burlington"}},{"attributes":{"name":"Rickey Schmeler","age":62,"location":"North Halstead"}},{"attributes":{"name":"Becky Monahan","age":75,"location":"East Millie"}},{"attributes":{"name":"Ramon Heidenreich","age":58,"location":"Murielland"}},{"attributes":{"name":"Annie Grady","age":74,"location":"Lake Lorena"}},{"attributes":{"name":"Angelina Carter","age":37,"location":"Lehi"}},{"attributes":{"name":"Adonis Glover I","age":60,"location":"North Angie"}},{"attributes":{"name":"Miss Ross Kemmer V","age":27,"location":"Brandifurt"}},{"attributes":{"name":"Brain Hartmann","age":59,"location":"Lawrence"}},{"attributes":{"name":"Linwood Hahn","age":78,"location":"Mertzborough"}},{"attributes":{"name":"Charlotte McCullough","age":47,"location":"South Allisonshire"}},{"attributes":{"name":"Diane Durgan","age":56,"location":"South Marieville"}},{"attributes":{"name":"Nicholas Kertzmann","age":36,"location":"Daughertychester"}},{"attributes":{"name":"Norris Rosenbaum","age":24,"location":"Bergstrombury"}},{"attributes":{"name":"Joseph Rohan","age":65,"location":"Carson City"}},{"attributes":{"name":"Cecil O'Reilly","age":65,"location":"New Sophie"}},{"attributes":{"name":"Dr. Albert Bernhard IV","age":72,"location":"New Codymouth"}},{"attributes":{"name":"Janice Cronin","age":22,"location":"Baton Rouge"}},{"attributes":{"name":"Laurie Kessler","age":68,"location":"Bridgeport"}},{"attributes":{"name":"Marco Miller","age":38,"location":"Paterson"}},{"attributes":{"name":"Forrest Balistreri II","age":24,"location":"Ismaelhaven"}},{"attributes":{"name":"Tony McKenzie","age":47,"location":"Fort Stephania"}},{"attributes":{"name":"Abel Leffler","age":24,"location":"Lemkeburgh"}},{"attributes":{"name":"Gilbert Jacobs","age":35,"location":"Modesto"}},{"attributes":{"name":"Odell Harber","age":46,"location":"Eulaside"}},{"attributes":{"name":"Robbie Rau","age":66,"location":"Jordanestad"}},{"attributes":{"name":"Laverne Veum","age":58,"location":"Lexieborough"}},{"attributes":{"name":"Giovanny Bartell","age":61,"location":"Port Betty"}},{"attributes":{"name":"Wade Robel","age":77,"location":"Lambertville"}},{"attributes":{"name":"Keith Prohaska","age":62,"location":"South Bessiemouth"}},{"attributes":{"name":"Dr. Eugene Herzog","age":73,"location":"Waukesha"}},{"attributes":{"name":"Ellie Larkin","age":78,"location":"Beahanburgh"}},{"attributes":{"name":"Wendy Bechtelar Sr.","age":46,"location":"North Alexandro"}},{"attributes":{"name":"Nicole Kohler","age":71,"location":"Heidenreichside"}},{"attributes":{"name":"Dr. Seth Walsh","age":37,"location":"Lindboro"}},{"attributes":{"name":"Pearline Morar","age":30,"location":"Steubermouth"}},{"attributes":{"name":"Oscar Rogahn","age":33,"location":"Clarabelleland"}},{"attributes":{"name":"Mara Lebsack","age":64,"location":"Donnellyborough"}},{"attributes":{"name":"Dale Hermiston-Rodriguez","age":80,"location":"Elyria"}},{"attributes":{"name":"Elmira Hartmann","age":47,"location":"Emeliefurt"}},{"attributes":{"name":"Courtney Jacobson","age":31,"location":"Favianhaven"}},{"attributes":{"name":"Tommie Beier","age":45,"location":"Antoninaboro"}},{"attributes":{"name":"Mr. Cale Rogahn","age":45,"location":"Pearliestead"}},{"attributes":{"name":"Ernesto Volkman","age":47,"location":"Ebonyland"}},{"attributes":{"name":"Cyrus Armstrong","age":69,"location":"Ayanaton"}},{"attributes":{"name":"Ramiro Casper","age":24,"location":"Aurora"}},{"attributes":{"name":"Sheila Funk","age":32,"location":"O'Reillyboro"}},{"attributes":{"name":"Mercedes Walsh","age":37,"location":"South Myrlfield"}},{"attributes":{"name":"Gina Ratke III","age":63,"location":"Bransonmouth"}},{"attributes":{"name":"Isobel Kshlerin","age":80,"location":"Pontiac"}},{"attributes":{"name":"Lorena Dickinson","age":47,"location":"New Sylvester"}},{"attributes":{"name":"Ms. Monty Reichert","age":50,"location":"Florianmouth"}},{"attributes":{"name":"Darrin Balistreri PhD","age":59,"location":"Millerstead"}},{"attributes":{"name":"Ruben Kuhlman","age":39,"location":"Carmelostead"}},{"attributes":{"name":"Kendall Jacobi MD","age":18,"location":"Vitoworth"}},{"attributes":{"name":"Dashawn Hyatt","age":62,"location":"North Jovanstead"}},{"attributes":{"name":"Cathryn Heller-Harris","age":70,"location":"South Dino"}},{"attributes":{"name":"Becky Connelly-Wyman","age":28,"location":"South Marie"}},{"attributes":{"name":"Curtis Klein","age":57,"location":"Sofiaville"}},{"attributes":{"name":"Bonnie Bergstrom","age":71,"location":"Lake Breana"}},{"attributes":{"name":"Tessie Nolan","age":55,"location":"Yadiraboro"}},{"attributes":{"name":"Aaliyah Huel","age":19,"location":"Bristol"}},{"attributes":{"name":"Kellie Blick","age":40,"location":"Dinohaven"}},{"attributes":{"name":"Penny Kuhic","age":55,"location":"Fort Olinchester"}},{"attributes":{"name":"Koby Bailey","age":50,"location":"West Frederic"}},{"attributes":{"name":"Ms. Lacey Haag","age":58,"location":"Hoffman Estates"}},{"attributes":{"name":"Mathew Leffler","age":53,"location":"Bashirianview"}},{"attributes":{"name":"Jayme Balistreri","age":74,"location":"Vaughnboro"}},{"attributes":{"name":"Abel Gibson","age":31,"location":"Tulare"}},{"attributes":{"name":"Lula Barrows III","age":45,"location":"New Laceyport"}},{"attributes":{"name":"Conrad Monahan","age":71,"location":"East Sim"}},{"attributes":{"name":"Garrett Considine PhD","age":51,"location":"East Claudestad"}},{"attributes":{"name":"Daisy Gutkowski","age":34,"location":"Port Warrenfort"}},{"attributes":{"name":"Angus Hyatt","age":77,"location":"Xzavierboro"}},{"attributes":{"name":"Dr. Haven Littel","age":56,"location":"Beahanview"}},{"attributes":{"name":"Wanda Langworth","age":76,"location":"McKinney"}},{"attributes":{"name":"Dr. Reggie Kohler Sr.","age":22,"location":"Alejandrafield"}},{"attributes":{"name":"Ollie Legros","age":24,"location":"Lake Makenzie"}},{"attributes":{"name":"Christelle Hane","age":69,"location":"Port Bomouth"}},{"attributes":{"name":"Celia Gutmann","age":18,"location":"Pagacton"}},{"attributes":{"name":"Bruce Dickinson","age":44,"location":"Fort Marvinville"}},{"attributes":{"name":"Gerald Kassulke","age":60,"location":"West Lyla"}},{"attributes":{"name":"Pat West","age":73,"location":"Chandler"}},{"attributes":{"name":"Santino Huels","age":66,"location":"Fort Makenzie"}},{"attributes":{"name":"Reba Littel","age":39,"location":"Harrisville"}},{"attributes":{"name":"Harmon Ullrich","age":22,"location":"McLaughlinstead"}},{"attributes":{"name":"Ms. Sharon Corkery","age":56,"location":"New Ressie"}},{"attributes":{"name":"Darin Leannon","age":62,"location":"San Luis Obispo"}},{"attributes":{"name":"Johanna Robel","age":25,"location":"Dayneburgh"}},{"attributes":{"name":"Thomas Treutel","age":29,"location":"South Cordie"}},{"attributes":{"name":"Josh Koepp","age":40,"location":"Chayamouth"}},{"attributes":{"name":"Ruth Bashirian","age":75,"location":"Pfefferstad"}},{"attributes":{"name":"Perry Hegmann","age":29,"location":"Lake Ladariuscester"}},{"attributes":{"name":"Emanuel Stamm","age":28,"location":"Dennisstad"}},{"attributes":{"name":"Lilla Hegmann","age":60,"location":"New Rusty"}},{"attributes":{"name":"Dr. Gilberto Hagenes","age":61,"location":"Town 'n' Country"}},{"attributes":{"name":"Jennifer Reichert","age":56,"location":"North Mustafabury"}},{"attributes":{"name":"Dr. Tierra Flatley PhD","age":30,"location":"Ferryport"}},{"attributes":{"name":"Dr. Florence Emard Jr.","age":50,"location":"New Erichside"}},{"attributes":{"name":"Meagan Kihn-Wilkinson","age":42,"location":"Moriahside"}},{"attributes":{"name":"Javier Upton","age":30,"location":"Naderhaven"}},{"attributes":{"name":"Cecelia Altenwerth","age":79,"location":"East Jarenport"}},{"attributes":{"name":"Carrie Heidenreich","age":44,"location":"East Adolphusmouth"}},{"attributes":{"name":"Homer Gerlach","age":62,"location":"Jodyhaven"}},{"attributes":{"name":"Meredith Green","age":39,"location":"Masonbury"}},{"attributes":{"name":"Kay Graham","age":69,"location":"Swaniawskiport"}},{"attributes":{"name":"Vera Moen","age":22,"location":"Lake Watsonstead"}},{"attributes":{"name":"Devyn Quigley","age":56,"location":"Port Eltonborough"}},{"attributes":{"name":"Morgan Waelchi","age":40,"location":"North Caterina"}},{"attributes":{"name":"Donald Sporer","age":37,"location":"Largo"}},{"attributes":{"name":"Jimmy Strosin","age":72,"location":"Andersonworth"}},{"attributes":{"name":"Faye Fadel","age":78,"location":"Bertside"}},{"attributes":{"name":"Josefina Parisian","age":58,"location":"Dachworth"}},{"attributes":{"name":"Kole McGlynn","age":73,"location":"New Collinland"}},{"attributes":{"name":"Mrs. Ezequiel Pfannerstill","age":63,"location":"Sipesborough"}},{"attributes":{"name":"Lucia Christiansen III","age":74,"location":"Heidenreichville"}},{"attributes":{"name":"Christ Maggio MD","age":35,"location":"Legrosborough"}},{"attributes":{"name":"Reba Blick","age":56,"location":"Lake Elissaville"}},{"attributes":{"name":"Melody Bartoletti","age":54,"location":"National City"}},{"attributes":{"name":"Jaime Cremin","age":37,"location":"Mathiasmouth"}},{"attributes":{"name":"Alejandro Frami DDS","age":57,"location":"Schmidtchester"}},{"attributes":{"name":"Flora Adams","age":27,"location":"Providence"}},{"attributes":{"name":"Alejandro Kunze","age":54,"location":"South Idellahaven"}},{"attributes":{"name":"Nathaniel Keeling","age":19,"location":"Chesleyton"}},{"attributes":{"name":"Ryan Weissnat-Muller","age":71,"location":"Murrieta"}},{"attributes":{"name":"Marion Moore Jr.","age":29,"location":"Lehi"}},{"attributes":{"name":"Shawna Nicolas","age":52,"location":"Hayesview"}},{"attributes":{"name":"Elliott Lowe","age":18,"location":"Port Ebba"}},{"attributes":{"name":"Sergio Greenholt","age":37,"location":"Port Willieview"}},{"attributes":{"name":"Miss Hipolito Heathcote","age":79,"location":"Port Stanton"}},{"attributes":{"name":"Vernon Nicolas-Rodriguez Sr.","age":53,"location":"Tuckahoe"}},{"attributes":{"name":"Corene Zboncak","age":42,"location":"West Myah"}},{"attributes":{"name":"Mr. Litzy Labadie","age":60,"location":"North Garnettbury"}},{"attributes":{"name":"Lennie Feeney","age":78,"location":"Kochton"}},{"attributes":{"name":"Julia Lind","age":62,"location":"West Lulaland"}},{"attributes":{"name":"Alton Homenick Jr.","age":40,"location":"Karlmouth"}},{"attributes":{"name":"Brisa Marquardt II","age":35,"location":"El Dorado Hills"}},{"attributes":{"name":"Olivia Ruecker","age":77,"location":"West Cornellside"}},{"attributes":{"name":"Mildred McLaughlin MD","age":30,"location":"Gulgowskiborough"}},{"attributes":{"name":"Felipe D'Amore-Murray","age":38,"location":"New Kevonchester"}},{"attributes":{"name":"Josh Johnson","age":18,"location":"North Gladycebury"}},{"attributes":{"name":"Bernadette Bayer","age":54,"location":"Gerlachchester"}},{"attributes":{"name":"Dr. Constance Ebert","age":41,"location":"Fort Ressiebury"}},{"attributes":{"name":"Marilyn Effertz","age":68,"location":"South Gordonstad"}},{"attributes":{"name":"Melody Cartwright","age":51,"location":"North Camilla"}},{"attributes":{"name":"Myrtle Thompson","age":56,"location":"Mohrbury"}},{"attributes":{"name":"Vicky Parker PhD","age":76,"location":"Christiansenmouth"}},{"attributes":{"name":"Jaden Jenkins","age":77,"location":"Rueckercester"}},{"attributes":{"name":"Winston Rosenbaum","age":38,"location":"North Tatyana"}},{"attributes":{"name":"Juwan Walter","age":49,"location":"Fort Orval"}},{"attributes":{"name":"Leonora Waters","age":70,"location":"Reystad"}},{"attributes":{"name":"Sheryl Carter","age":69,"location":"Ziemeside"}},{"attributes":{"name":"Milan Sauer","age":46,"location":"South Elissa"}},{"attributes":{"name":"Aidan Considine","age":79,"location":"Kleinview"}},{"attributes":{"name":"Nelle Tillman","age":48,"location":"Kohlerboro"}},{"attributes":{"name":"Ronaldo Roberts","age":49,"location":"Troy"}},{"attributes":{"name":"Sincere Veum II","age":26,"location":"Watsicaside"}},{"attributes":{"name":"Mr. Ibrahim Nienow","age":25,"location":"Port Tyreestad"}},{"attributes":{"name":"Rickie Bauch IV","age":58,"location":"Myrticeside"}},{"attributes":{"name":"Johnathan Kertzmann","age":79,"location":"Lakinfield"}},{"attributes":{"name":"Mrs. Meredith Dietrich V","age":39,"location":"Herminioland"}},{"attributes":{"name":"Andre Johnston","age":30,"location":"East Bethelside"}},{"attributes":{"name":"Brittany Turcotte Jr.","age":41,"location":"East Cara"}},{"attributes":{"name":"Morris Schaden","age":68,"location":"Moreno Valley"}},{"attributes":{"name":"Taryn VonRueden","age":61,"location":"Fort Cydney"}},{"attributes":{"name":"Jeanette Wyman","age":56,"location":"Stephonborough"}},{"attributes":{"name":"Sharon Kutch","age":29,"location":"Rudyborough"}},{"attributes":{"name":"Myrtle Carroll","age":23,"location":"Montgomery"}},{"attributes":{"name":"Meredith Schoen","age":66,"location":"Port Camrenburgh"}},{"attributes":{"name":"Dr. Alf Feeney","age":34,"location":"Aronview"}},{"attributes":{"name":"Reginald Jakubowski III","age":64,"location":"Vonboro"}},{"attributes":{"name":"Sherri Goodwin","age":62,"location":"Skilesmouth"}},{"attributes":{"name":"Kenneth Treutel DVM","age":40,"location":"East Nash"}},{"attributes":{"name":"Yolanda Emard","age":40,"location":"Lake Columbus"}},{"attributes":{"name":"Dr. Stephen Waters Jr.","age":27,"location":"Rapid City"}},{"attributes":{"name":"Madge Ratke","age":22,"location":"New Jostead"}},{"attributes":{"name":"Fletcher Graham PhD","age":77,"location":"South Finn"}},{"attributes":{"name":"Sabrina Herman","age":76,"location":"Nolanland"}},{"attributes":{"name":"Dr. Mack Blick","age":40,"location":"Parisianmouth"}},{"attributes":{"name":"Chad Lehner","age":53,"location":"Fort Letitialand"}},{"attributes":{"name":"Virginie Sipes","age":29,"location":"Oklahoma City"}},{"attributes":{"name":"Noble Funk","age":46,"location":"Port Maye"}},{"attributes":{"name":"Vallie Deckow MD","age":44,"location":"Earnestland"}},{"attributes":{"name":"Tyshawn Johnston","age":39,"location":"Fort Ulices"}},{"attributes":{"name":"Marjorie Berge","age":64,"location":"New Emil"}},{"attributes":{"name":"Albert Jacobson","age":70,"location":"Romaineport"}},{"attributes":{"name":"Raymond Goldner","age":33,"location":"Lake Goldafort"}},{"attributes":{"name":"Gwen Wiza","age":50,"location":"Aurora"}},{"attributes":{"name":"Jodi Koelpin","age":78,"location":"South Marlinstead"}},{"attributes":{"name":"Janice Heaney","age":80,"location":"Westtown"}},{"attributes":{"name":"Loren Grimes","age":55,"location":"Lueilwitzview"}},{"attributes":{"name":"Mireille Hills IV","age":50,"location":"Visalia"}},{"attributes":{"name":"Dr. Barry Predovic","age":39,"location":"Port Arvidstead"}},{"attributes":{"name":"Estelle Harris","age":42,"location":"Karliport"}},{"attributes":{"name":"Francesca Swift","age":53,"location":"Port Gabemouth"}},{"attributes":{"name":"Wilfrid Rohan DDS","age":70,"location":"East Marielaside"}},{"attributes":{"name":"Chyna Sporer","age":59,"location":"Novato"}},{"attributes":{"name":"Miss Christ Huel","age":74,"location":"Elvieboro"}},{"attributes":{"name":"Dr. Harry Hackett","age":76,"location":"Fort Antonina"}},{"attributes":{"name":"Dr. Bessie Jaskolski","age":19,"location":"Darienbury"}},{"attributes":{"name":"Mrs. Victoria Ratke-Feil","age":73,"location":"Dejahfurt"}},{"attributes":{"name":"Denis Goodwin","age":78,"location":"Fort Kirsten"}},{"attributes":{"name":"Zackery King","age":42,"location":"Lednertown"}},{"attributes":{"name":"Israel Kub","age":57,"location":"East Graciela"}},{"attributes":{"name":"Mollie Toy","age":49,"location":"Larkinfurt"}},{"attributes":{"name":"George Ledner","age":54,"location":"Hudsonshire"}},{"attributes":{"name":"Conrad Kohler-Barton","age":39,"location":"East Marianoborough"}},{"attributes":{"name":"Luna Heaney III","age":45,"location":"West Nils"}},{"attributes":{"name":"Tony Quitzon","age":19,"location":"Oak Park"}},{"attributes":{"name":"Mallory Rosenbaum","age":44,"location":"East Raebury"}},{"attributes":{"name":"Mr. Seth Hand","age":63,"location":"Hacienda Heights"}},{"attributes":{"name":"Glenn Jacobi","age":56,"location":"East Kaleview"}},{"attributes":{"name":"Dianne Bogan DDS","age":41,"location":"New Arturo"}},{"attributes":{"name":"Tommie Little","age":37,"location":"Warren"}},{"attributes":{"name":"Christ Gislason","age":22,"location":"New Philip"}},{"attributes":{"name":"Mae Ward","age":65,"location":"Nitzscheview"}},{"attributes":{"name":"Kendall MacGyver","age":52,"location":"Waelchicester"}},{"attributes":{"name":"Erin Ankunding V","age":77,"location":"Lake Lucius"}},{"attributes":{"name":"Jan Harber","age":33,"location":"Fort Jannie"}},{"attributes":{"name":"Leland Gutmann","age":71,"location":"Trantowberg"}},{"attributes":{"name":"Derrick Roob","age":49,"location":"Anaisfort"}},{"attributes":{"name":"Zander Gleichner","age":46,"location":"Centennial"}},{"attributes":{"name":"Miss Brittany Emard Jr.","age":20,"location":"Vernicehaven"}},{"attributes":{"name":"Ashley Schumm","age":47,"location":"Coryfield"}},{"attributes":{"name":"Colin Wolff","age":28,"location":"Jaylonville"}},{"attributes":{"name":"Jerome Hoeger III","age":39,"location":"Katrinetown"}},{"attributes":{"name":"Mr. Salvador Keeling II","age":58,"location":"Port Louveniahaven"}},{"attributes":{"name":"Seth Kuhn","age":32,"location":"Port Jarrell"}},{"attributes":{"name":"Dasia Gerlach","age":73,"location":"Aaliyahville"}},{"attributes":{"name":"Steve Wunsch","age":79,"location":"Otisboro"}},{"attributes":{"name":"Genevieve Hammes Sr.","age":30,"location":"Lake Mara"}},{"attributes":{"name":"Angela Roob PhD","age":45,"location":"Poway"}},{"attributes":{"name":"Kari McGlynn","age":28,"location":"Kileyton"}},{"attributes":{"name":"Fletcher Cormier","age":71,"location":"Lake Einar"}},{"attributes":{"name":"Nancy Koelpin","age":38,"location":"Sedrickton"}},{"attributes":{"name":"Jennifer Roob","age":67,"location":"East Lelahtown"}},{"attributes":{"name":"Ronny Watsica","age":64,"location":"Ocala"}},{"attributes":{"name":"Darryl Herzog","age":53,"location":"Tigard"}},{"attributes":{"name":"Vicky Zboncak","age":74,"location":"Lake Zola"}},{"attributes":{"name":"Delores Konopelski","age":21,"location":"Wolffurt"}},{"attributes":{"name":"Zoie Kassulke DVM","age":66,"location":"Salina"}},{"attributes":{"name":"Caleigh Franecki","age":53,"location":"Cassintown"}},{"attributes":{"name":"Norman Windler","age":22,"location":"Reichertshire"}},{"attributes":{"name":"Dallas Flatley","age":62,"location":"Anthonyshire"}},{"attributes":{"name":"Phoebe Franey","age":40,"location":"Trujillo Alto"}},{"attributes":{"name":"Ryan Ledner","age":56,"location":"New Macey"}},{"attributes":{"name":"Aubrey Turcotte","age":20,"location":"New Dwight"}},{"attributes":{"name":"Lenora Bosco","age":65,"location":"North Louvenia"}},{"attributes":{"name":"Miguel Ferry","age":78,"location":"Cierraton"}},{"attributes":{"name":"Bobbie Heaney","age":39,"location":"Zoeyside"}},{"attributes":{"name":"Kristofer Lebsack","age":42,"location":"New Jarret"}},{"attributes":{"name":"Mike Donnelly","age":79,"location":"New Neha"}},{"attributes":{"name":"Bethany Gutmann","age":29,"location":"Liashire"}},{"attributes":{"name":"Josh Green","age":59,"location":"Cristalhaven"}},{"attributes":{"name":"Cathy Frami-Stark","age":62,"location":"New Dionton"}},{"attributes":{"name":"Denise Skiles","age":44,"location":"Janisburgh"}},{"attributes":{"name":"Omer Rowe","age":70,"location":"North Kevenbury"}},{"attributes":{"name":"Dominic Trantow","age":66,"location":"Roanoke"}},{"attributes":{"name":"Casey Lehner","age":25,"location":"West Jovanyville"}},{"attributes":{"name":"Martha Predovic","age":35,"location":"Dinaberg"}},{"attributes":{"name":"Alaina Okuneva","age":50,"location":"Buckridgefurt"}},{"attributes":{"name":"Freda Wunsch","age":65,"location":"Janastead"}},{"attributes":{"name":"Providenci O'Hara","age":72,"location":"Lake Jovannyboro"}},{"attributes":{"name":"Dr. Raul Marquardt","age":53,"location":"Herbertland"}},{"attributes":{"name":"Eduardo Roberts","age":22,"location":"New Adolfostad"}},{"attributes":{"name":"Colleen Krajcik","age":21,"location":"Juniorstead"}},{"attributes":{"name":"Glenda Towne","age":58,"location":"Albany"}},{"attributes":{"name":"Tad Will","age":22,"location":"Baileyworth"}},{"attributes":{"name":"Beaulah Cartwright","age":53,"location":"East Micahchester"}},{"attributes":{"name":"Maureen Fritsch III","age":61,"location":"Waukegan"}},{"attributes":{"name":"Corene Wolff","age":75,"location":"Kettering"}},{"attributes":{"name":"Elroy Connelly","age":73,"location":"Fort Keegancester"}},{"attributes":{"name":"Kara Lebsack","age":75,"location":"Lake Lyda"}},{"attributes":{"name":"Jayson Bartell","age":24,"location":"Lake Brooks"}},{"attributes":{"name":"Diane Lang","age":37,"location":"East Jaunita"}},{"attributes":{"name":"Eino Buckridge","age":40,"location":"Kirlincester"}},{"attributes":{"name":"Rozella Adams","age":31,"location":"West Leathafort"}},{"attributes":{"name":"Sophie Crist","age":48,"location":"New Carolyn"}},{"attributes":{"name":"Mr. Geraldine Johns","age":18,"location":"Laurinehaven"}},{"attributes":{"name":"Rusty Mante IV","age":74,"location":"Belleville"}},{"attributes":{"name":"Guillermo Bernier","age":32,"location":"Strosinfort"}},{"attributes":{"name":"Russ Steuber Jr.","age":73,"location":"West Kaydenburgh"}},{"attributes":{"name":"Jazmin Schumm","age":22,"location":"Pabloshire"}},{"attributes":{"name":"Megan Fahey","age":73,"location":"Yonkers"}},{"attributes":{"name":"Regina Romaguera","age":32,"location":"Kilbackchester"}},{"attributes":{"name":"Mr. Ramiro Mosciski","age":30,"location":"Dorthatown"}},{"attributes":{"name":"Marguerite Hamill","age":60,"location":"Durham"}},{"attributes":{"name":"Felix Hermiston","age":74,"location":"Camronview"}},{"attributes":{"name":"Margarita Schaefer","age":52,"location":"South Jeramietown"}},{"attributes":{"name":"Colleen Thiel","age":52,"location":"Decatur"}},{"attributes":{"name":"Jerome Hartmann-Cummings","age":32,"location":"Waelchihaven"}},{"attributes":{"name":"Mya Lubowitz","age":33,"location":"Quinnborough"}},{"attributes":{"name":"Dr. Andy Ward","age":24,"location":"Harrisborough"}},{"attributes":{"name":"Tomas Robel","age":59,"location":"Alexandriaton"}},{"attributes":{"name":"Presley Rohan","age":35,"location":"Gladyceville"}},{"attributes":{"name":"Michael Gottlieb","age":23,"location":"West Alex"}},{"attributes":{"name":"Marianna Larson","age":80,"location":"Phoenix"}},{"attributes":{"name":"Olivia Feest","age":41,"location":"Melbourne"}},{"attributes":{"name":"Connie Rosenbaum","age":47,"location":"West Margarete"}},{"attributes":{"name":"Stefanie Moore","age":79,"location":"Atascocita"}},{"attributes":{"name":"Mr. Eloise Klein","age":34,"location":"Chasebury"}},{"attributes":{"name":"Janelle Brown","age":28,"location":"Port Martina"}},{"attributes":{"name":"Randal Hartmann-Orn","age":24,"location":"Conroe"}},{"attributes":{"name":"Mercedes Jacobi","age":49,"location":"Candicecester"}},{"attributes":{"name":"Leroy Cassin","age":34,"location":"Ortizstead"}},{"attributes":{"name":"Judith Johnson","age":18,"location":"Keelingmouth"}},{"attributes":{"name":"Ms. Kay Mraz-Murray DDS","age":20,"location":"Josephtown"}},{"attributes":{"name":"Alessandra Smitham","age":75,"location":"Weimannshire"}},{"attributes":{"name":"Karla McCullough IV","age":41,"location":"Nashua"}},{"attributes":{"name":"Mindy Dare","age":22,"location":"Fort Lula"}},{"attributes":{"name":"Dr. Xander Reichert","age":28,"location":"Schuppebury"}},{"attributes":{"name":"Mitchel Thiel","age":65,"location":"Athens-Clarke County"}},{"attributes":{"name":"Ms. Freddie Fahey","age":27,"location":"Terranceburgh"}},{"attributes":{"name":"Lila Leannon V","age":67,"location":"Howefield"}},{"attributes":{"name":"Mr. Rene Murray-Franey","age":74,"location":"Wittingview"}},{"attributes":{"name":"Mario Goldner","age":79,"location":"Port Trentfort"}},{"attributes":{"name":"Amy Schaefer","age":46,"location":"Port Polly"}},{"attributes":{"name":"Carlee Schultz DDS","age":74,"location":"Port Brooksfort"}},{"attributes":{"name":"Megan Schaden","age":70,"location":"Aidanburgh"}},{"attributes":{"name":"Margie Kessler","age":34,"location":"Port Cameronbury"}},{"attributes":{"name":"Daisy Kulas","age":77,"location":"South Larissa"}},{"attributes":{"name":"Kasandra Hand","age":67,"location":"Ortizhaven"}},{"attributes":{"name":"Krystal Wolf-Kuphal","age":73,"location":"South Jessieville"}},{"attributes":{"name":"Maximillia Marvin","age":18,"location":"Maggiofurt"}},{"attributes":{"name":"Neil Schaden","age":34,"location":"Port Katarina"}},{"attributes":{"name":"Freda Stark","age":18,"location":"Rodricktown"}},{"attributes":{"name":"Beryl Bradtke","age":49,"location":"Walkerborough"}},{"attributes":{"name":"Miss Ulises Carter","age":67,"location":"Lake Pearlie"}},{"attributes":{"name":"Darryl Schroeder-Hammes","age":35,"location":"Nashville-Davidson"}},{"attributes":{"name":"Rudolph Murray-Moen","age":76,"location":"Lake Nasirborough"}},{"attributes":{"name":"Dora Barton","age":54,"location":"West Seantown"}},{"attributes":{"name":"Geo Lueilwitz","age":66,"location":"East Kayla"}},{"attributes":{"name":"Holly Schimmel","age":45,"location":"Leannonshire"}},{"attributes":{"name":"Gregory Jacobs","age":69,"location":"North Dillonfort"}},{"attributes":{"name":"Glenda Moen","age":73,"location":"South Peytonport"}},{"attributes":{"name":"Marcelina Walter II","age":39,"location":"West Bud"}},{"attributes":{"name":"Mr. Israel Ortiz","age":71,"location":"Traceyfort"}},{"attributes":{"name":"Ellis McClure","age":45,"location":"North Zacharystad"}},{"attributes":{"name":"Miss Lyle O'Kon-Crooks","age":32,"location":"East Cory"}},{"attributes":{"name":"Spencer VonRueden","age":20,"location":"Runtecester"}},{"attributes":{"name":"Dianne Weissnat III","age":59,"location":"Port Larry"}},{"attributes":{"name":"Delaney Wyman","age":35,"location":"Chesapeake"}},{"attributes":{"name":"Cameron Tillman V","age":18,"location":"New Vivianne"}},{"attributes":{"name":"Tara Will","age":64,"location":"Temecula"}},{"attributes":{"name":"Dr. Nash Rowe","age":26,"location":"Miguelbury"}},{"attributes":{"name":"Michele Lynch","age":59,"location":"Fort Zaria"}},{"attributes":{"name":"Drew Becker I","age":41,"location":"Port Isaias"}},{"attributes":{"name":"Mrs. Kristen Morissette","age":69,"location":"New Ed"}},{"attributes":{"name":"Darrin Koelpin","age":67,"location":"Patiencefort"}},{"attributes":{"name":"Russell Will","age":79,"location":"New Janet"}},{"attributes":{"name":"Mr. Rosemarie Adams","age":55,"location":"Fort Courtneystad"}},{"attributes":{"name":"Bob Bernier","age":55,"location":"Evieville"}},{"attributes":{"name":"Ernie Cummerata","age":28,"location":"New Madgeworth"}},{"attributes":{"name":"Dave Treutel","age":56,"location":"Creminbury"}},{"attributes":{"name":"Clemmie Ullrich MD","age":80,"location":"Lake Cielobury"}},{"attributes":{"name":"Bianka Roob","age":52,"location":"Birmingham"}},{"attributes":{"name":"Robyn Hoppe","age":26,"location":"Lucileton"}},{"attributes":{"name":"Howell Kub","age":19,"location":"West Grover"}},{"attributes":{"name":"Susan Jacobi","age":58,"location":"South Annabelle"}},{"attributes":{"name":"Carolyne Carroll","age":69,"location":"Nienowfield"}},{"attributes":{"name":"Roberto Moen","age":76,"location":"Aubreeside"}},{"attributes":{"name":"Daisy Lebsack I","age":21,"location":"West Samir"}},{"attributes":{"name":"Edmund Becker","age":73,"location":"Baton Rouge"}},{"attributes":{"name":"Jesus Jast","age":38,"location":"Walterland"}},{"attributes":{"name":"Jill Reinger","age":73,"location":"New Destiny"}},{"attributes":{"name":"Helena Mohr","age":37,"location":"East Kaleboro"}},{"attributes":{"name":"Jettie Wiegand","age":19,"location":"Danbury"}},{"attributes":{"name":"Nathanael Kassulke","age":21,"location":"Rodriguezstad"}},{"attributes":{"name":"Bill Stracke","age":22,"location":"Priceville"}},{"attributes":{"name":"Dr. Alfredo Cartwright","age":67,"location":"Tillmantown"}},{"attributes":{"name":"Vicky Bashirian","age":19,"location":"Fritschbury"}},{"attributes":{"name":"Colleen Bernhard","age":44,"location":"North Madisyn"}},{"attributes":{"name":"Juwan Frami","age":51,"location":"Lake Tommieworth"}},{"attributes":{"name":"Casper Ruecker","age":23,"location":"Kerlukechester"}},{"attributes":{"name":"Rosemarie Koepp I","age":41,"location":"North Macy"}},{"attributes":{"name":"Santos Kirlin","age":20,"location":"Port Breana"}},{"attributes":{"name":"Mr. Preston Purdy","age":48,"location":"Lake Daytonworth"}},{"attributes":{"name":"Carroll Murphy","age":63,"location":"West Kaleighville"}},{"attributes":{"name":"Marisol McCullough","age":55,"location":"East Fatimafurt"}},{"attributes":{"name":"Mrs. Kathryn Hudson","age":68,"location":"Kirktown"}},{"attributes":{"name":"Kelvin Howell PhD","age":46,"location":"Ottilieview"}},{"attributes":{"name":"Clemens Zieme","age":19,"location":"Kilbackberg"}},{"attributes":{"name":"Juana Marks","age":70,"location":"New Glenda"}},{"attributes":{"name":"Mable Heller","age":39,"location":"Waukesha"}},{"attributes":{"name":"Tabitha Collier","age":74,"location":"New Violette"}},{"attributes":{"name":"Tara Quigley","age":67,"location":"Rickeyview"}},{"attributes":{"name":"Carol Flatley","age":26,"location":"Naderfield"}},{"attributes":{"name":"Marion Hoppe","age":49,"location":"Kassandraworth"}},{"attributes":{"name":"Marcelino Ritchie","age":22,"location":"Ullrichfield"}},{"attributes":{"name":"Barry Abshire","age":20,"location":"Goodwinstad"}},{"attributes":{"name":"Dewey Fisher","age":64,"location":"South Tanya"}},{"attributes":{"name":"Jenna Konopelski","age":43,"location":"Uliceston"}},{"attributes":{"name":"Shannon Huels","age":46,"location":"Schambergerchester"}},{"attributes":{"name":"Carrie McDermott","age":47,"location":"North Fernando"}},{"attributes":{"name":"Nola Botsford","age":21,"location":"Magaliland"}},{"attributes":{"name":"Sigmund Schuppe","age":42,"location":"Longview"}},{"attributes":{"name":"Heaven Kunde","age":51,"location":"Lindchester"}},{"attributes":{"name":"Mr. Mabel Gusikowski","age":29,"location":"New Haven"}},{"attributes":{"name":"Kari Gulgowski","age":32,"location":"Milpitas"}},{"attributes":{"name":"Ramon Dicki","age":62,"location":"Karelleton"}},{"attributes":{"name":"Miss Ophelia Schultz","age":47,"location":"North Roelworth"}},{"attributes":{"name":"Levi Glover","age":18,"location":"Dominicberg"}},{"attributes":{"name":"Simone Fay II","age":73,"location":"Bashirianville"}},{"attributes":{"name":"Kirk Pacocha","age":70,"location":"Hammesport"}},{"attributes":{"name":"Vanessa Kris","age":32,"location":"Johnsonville"}},{"attributes":{"name":"Schuyler Effertz","age":65,"location":"Fort Yvetteport"}},{"attributes":{"name":"Brandon Dare","age":68,"location":"West Francescoside"}},{"attributes":{"name":"Ed Rippin","age":32,"location":"Lake Joshboro"}},{"attributes":{"name":"Cheyanne Borer","age":22,"location":"North Ara"}},{"attributes":{"name":"Gladys Bednar","age":62,"location":"Tremblayside"}},{"attributes":{"name":"Brent Shanahan","age":40,"location":"Lake Harleybury"}},{"attributes":{"name":"Ludwig Hammes","age":80,"location":"Dariocester"}},{"attributes":{"name":"Rene Simonis","age":67,"location":"Bennieside"}},{"attributes":{"name":"Lavinia Mayert V","age":69,"location":"Hendersonville"}},{"attributes":{"name":"Sibyl West","age":57,"location":"Shanahanborough"}},{"attributes":{"name":"Renee Erdman","age":72,"location":"Roosevelttown"}},{"attributes":{"name":"Ebony Roob","age":19,"location":"Lefflerville"}},{"attributes":{"name":"Jeremiah Anderson","age":41,"location":"Vidalton"}},{"attributes":{"name":"Grace Schneider","age":37,"location":"Port August"}},{"attributes":{"name":"Mamie Hegmann","age":26,"location":"Kundefield"}},{"attributes":{"name":"Tanner Lind","age":30,"location":"Port Lolita"}},{"attributes":{"name":"Dr. Drew Emard DVM","age":27,"location":"Hoegerstad"}},{"attributes":{"name":"Bradley Balistreri","age":18,"location":"Tillmanborough"}},{"attributes":{"name":"Angelina Stokes","age":18,"location":"Beattyview"}},{"attributes":{"name":"Leopoldo Conn","age":41,"location":"North Eusebiomouth"}},{"attributes":{"name":"Nova Thompson","age":45,"location":"Cliftonbury"}},{"attributes":{"name":"Colin O'Hara","age":79,"location":"Casa Grande"}},{"attributes":{"name":"Dr. Sadye Schoen Jr.","age":69,"location":"Destanychester"}},{"attributes":{"name":"Hope Heathcote","age":18,"location":"Antoinettecester"}},{"attributes":{"name":"Angeline Hettinger-Gusikowski","age":33,"location":"Port Jakaylaland"}},{"attributes":{"name":"Theron Krajcik","age":71,"location":"Kochfort"}},{"attributes":{"name":"Lisa Kuhlman","age":71,"location":"North Brookland"}},{"attributes":{"name":"Edd Jakubowski","age":38,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Tyrell Corwin","age":79,"location":"Sethworth"}},{"attributes":{"name":"Elvira Murazik","age":30,"location":"Lourdescester"}},{"attributes":{"name":"Lew Lockman Sr.","age":32,"location":"Antwonbury"}},{"attributes":{"name":"Winnifred Durgan PhD","age":78,"location":"Mesa"}},{"attributes":{"name":"Al Thiel","age":31,"location":"North Brockport"}},{"attributes":{"name":"Herman Walsh","age":59,"location":"Wisokytown"}},{"attributes":{"name":"Antonetta Lowe","age":62,"location":"Mesquite"}},{"attributes":{"name":"Mr. Anderson Spinka","age":76,"location":"Santa Cruz"}},{"attributes":{"name":"Stacy Smith","age":53,"location":"Bayamon"}},{"attributes":{"name":"Freeda Ratke","age":63,"location":"New Emersonland"}},{"attributes":{"name":"Dr. Zora Jast","age":43,"location":"Schneiderport"}},{"attributes":{"name":"Dominique Stark","age":69,"location":"Port Gust"}},{"attributes":{"name":"Stewart Watsica","age":32,"location":"Gerholdhaven"}},{"attributes":{"name":"Miss Paulette Cronin II","age":22,"location":"West Khalil"}},{"attributes":{"name":"Wesley McCullough","age":71,"location":"Rock Hill"}},{"attributes":{"name":"Valerie Heidenreich","age":23,"location":"Kamronfield"}},{"attributes":{"name":"Russell Wiza MD","age":29,"location":"Brownsville"}},{"attributes":{"name":"Lewis Schimmel","age":41,"location":"Grand Forks"}},{"attributes":{"name":"Verla Koch","age":36,"location":"Lake Frederik"}},{"attributes":{"name":"Wilson Hermiston","age":40,"location":"Julianfort"}},{"attributes":{"name":"Ayden Rogahn","age":25,"location":"Paradise"}},{"attributes":{"name":"Dr. Roberta Little","age":42,"location":"New Petra"}},{"attributes":{"name":"Sara Kemmer","age":45,"location":"West Tressa"}},{"attributes":{"name":"Jamir White","age":19,"location":"Donnellyshire"}},{"attributes":{"name":"Burdette Corwin","age":24,"location":"West Napoleon"}},{"attributes":{"name":"Jennings Hermann","age":24,"location":"Killeen"}},{"attributes":{"name":"Mr. Destini McKenzie","age":25,"location":"Sageburgh"}},{"attributes":{"name":"Cristina Trantow","age":68,"location":"South Judge"}},{"attributes":{"name":"Waldo Weimann II","age":56,"location":"Mosciskistead"}},{"attributes":{"name":"Ginger Hoeger","age":27,"location":"Lourdesland"}},{"attributes":{"name":"Santiago Frami","age":59,"location":"Ledastead"}},{"attributes":{"name":"Macy Klocko","age":26,"location":"Cristfort"}},{"attributes":{"name":"Dr. Shannon Emard","age":32,"location":"Tamiami"}},{"attributes":{"name":"Austin Gleichner","age":38,"location":"Fort Russ"}},{"attributes":{"name":"Albina Dietrich","age":38,"location":"Isabelletown"}},{"attributes":{"name":"Daniel Deckow","age":45,"location":"Kierantown"}},{"attributes":{"name":"Floyd Davis","age":22,"location":"Davenport"}},{"attributes":{"name":"Hilma Mante","age":39,"location":"San Bruno"}},{"attributes":{"name":"Francis Konopelski","age":42,"location":"East Emanuelfurt"}},{"attributes":{"name":"Brad Kuphal","age":19,"location":"New Destiny"}},{"attributes":{"name":"Verdie Cremin","age":27,"location":"Frederick"}},{"attributes":{"name":"Dillan Schaden","age":35,"location":"Lake Caesarworth"}},{"attributes":{"name":"Desiree Fisher","age":78,"location":"Joaniehaven"}},{"attributes":{"name":"Alayna Rogahn","age":58,"location":"West Florencio"}},{"attributes":{"name":"Mireya Prohaska","age":26,"location":"Stevebury"}},{"attributes":{"name":"Rosemary Labadie II","age":22,"location":"Lake Whitney"}},{"attributes":{"name":"Travon Kilback","age":75,"location":"Minot"}},{"attributes":{"name":"Braulio Spencer","age":42,"location":"Winonabury"}},{"attributes":{"name":"Chandler Thiel DDS","age":19,"location":"Port Rae"}},{"attributes":{"name":"Mrs. Rubye Rosenbaum","age":45,"location":"Fort Kadehaven"}},{"attributes":{"name":"Kendra Denesik","age":72,"location":"Woodrowhaven"}},{"attributes":{"name":"Jim Becker","age":74,"location":"Lemkefurt"}},{"attributes":{"name":"Nellie D'Amore","age":64,"location":"South Katheryn"}},{"attributes":{"name":"Rubye McGlynn","age":75,"location":"Casa Grande"}},{"attributes":{"name":"Winston Ortiz","age":67,"location":"Hellerbury"}},{"attributes":{"name":"Tyler Gleichner","age":24,"location":"Lindaborough"}},{"attributes":{"name":"Ed Reichert","age":29,"location":"Franeyburgh"}},{"attributes":{"name":"Matilda Ratke","age":75,"location":"Pinellas Park"}},{"attributes":{"name":"Israel Waelchi","age":77,"location":"Rodolfoburgh"}},{"attributes":{"name":"Maximo Mraz","age":33,"location":"North Janieworth"}},{"attributes":{"name":"Sigurd Tillman","age":21,"location":"New Lindsaytown"}},{"attributes":{"name":"Marcus Gusikowski DVM","age":21,"location":"New Brunswick"}},{"attributes":{"name":"Micheal Gutmann","age":45,"location":"Boyleton"}},{"attributes":{"name":"Esther Predovic","age":30,"location":"Predovicstead"}},{"attributes":{"name":"Francis Ferry","age":20,"location":"Arnaldoworth"}},{"attributes":{"name":"Elizabeth Kihn","age":41,"location":"Fort Edwardo"}},{"attributes":{"name":"Mae McKenzie-Wyman","age":75,"location":"Lake Amely"}},{"attributes":{"name":"Angela King Sr.","age":46,"location":"North Bennie"}},{"attributes":{"name":"Ralph Veum","age":39,"location":"Blacksburg"}},{"attributes":{"name":"Morton Olson","age":73,"location":"Hemet"}},{"attributes":{"name":"Darla Sanford","age":27,"location":"Zelmastad"}},{"attributes":{"name":"Berniece MacGyver","age":36,"location":"West Kennybury"}},{"attributes":{"name":"Haylee Cruickshank-Borer","age":23,"location":"New Destinee"}},{"attributes":{"name":"Guillermo Glover","age":32,"location":"Homenicktown"}},{"attributes":{"name":"Gayle Kris II","age":62,"location":"Lilianfield"}},{"attributes":{"name":"Beatrice DuBuque","age":25,"location":"Handchester"}},{"attributes":{"name":"Jordan Zemlak","age":50,"location":"Fall River"}},{"attributes":{"name":"Ms. Sydney Bahringer","age":79,"location":"Goyetteburgh"}},{"attributes":{"name":"Marcus Abernathy","age":54,"location":"Deloresshire"}},{"attributes":{"name":"Irma Champlin DVM","age":66,"location":"West Simeon"}},{"attributes":{"name":"Dr. Emma Bayer-O'Conner","age":35,"location":"Dejuanmouth"}},{"attributes":{"name":"Gunnar Schmeler","age":50,"location":"West Chadburgh"}},{"attributes":{"name":"Charles Gusikowski-Robel II","age":58,"location":"South Sonnyfield"}},{"attributes":{"name":"Lynn Schultz","age":43,"location":"New Regan"}},{"attributes":{"name":"Lee Larson","age":22,"location":"Kuhnview"}},{"attributes":{"name":"Ted Lehner","age":25,"location":"New Fermin"}},{"attributes":{"name":"Elijah Bode","age":65,"location":"Port Calista"}},{"attributes":{"name":"Eldred Lynch","age":45,"location":"Fort Pierce"}},{"attributes":{"name":"Jacob Rogahn","age":71,"location":"Jonesboro"}},{"attributes":{"name":"Zoey Hilll","age":79,"location":"Evansville"}},{"attributes":{"name":"Mr. Lawrence Kassulke","age":38,"location":"Fort Heidifort"}},{"attributes":{"name":"Kaley Stroman","age":68,"location":"Watsonton"}},{"attributes":{"name":"Ethel Kutch","age":54,"location":"Champaign"}},{"attributes":{"name":"Cesar Kozey","age":52,"location":"Santa Cruz"}},{"attributes":{"name":"Princess Kovacek Jr.","age":38,"location":"Collinberg"}},{"attributes":{"name":"Jadyn Purdy","age":28,"location":"North Murraytown"}},{"attributes":{"name":"Lavada Bartoletti","age":42,"location":"East Donnie"}},{"attributes":{"name":"Enrique Hartmann Jr.","age":70,"location":"Johnstead"}},{"attributes":{"name":"Amira Kohler Jr.","age":42,"location":"Watersfield"}},{"attributes":{"name":"Orville Jerde","age":21,"location":"Akron"}},{"attributes":{"name":"Graham Christiansen","age":58,"location":"North Arnoldo"}},{"attributes":{"name":"Jesse Douglas","age":58,"location":"New Haven"}},{"attributes":{"name":"Hattie Langosh","age":54,"location":"West Mireillefort"}},{"attributes":{"name":"Mr. Ismael Wintheiser","age":47,"location":"Huntersville"}},{"attributes":{"name":"Christy Kiehn","age":54,"location":"Tomasaton"}},{"attributes":{"name":"Calvin Simonis","age":62,"location":"St. George"}},{"attributes":{"name":"Elian Upton","age":70,"location":"West Connor"}},{"attributes":{"name":"Nancy Upton-Corkery","age":40,"location":"Lake Nedrafort"}},{"attributes":{"name":"Byron Towne","age":38,"location":"Heathcoteside"}},{"attributes":{"name":"Ola Lehner","age":47,"location":"Rolfsonstad"}},{"attributes":{"name":"Malcolm Harvey","age":80,"location":"Kilbackcester"}},{"attributes":{"name":"Katrina Wiegand II","age":22,"location":"Fort Camron"}},{"attributes":{"name":"Jimmy Rath","age":48,"location":"Prohaskafurt"}},{"attributes":{"name":"Vincent Donnelly","age":37,"location":"Ziemannhaven"}},{"attributes":{"name":"Ian Hilpert","age":71,"location":"Fort Deborahberg"}},{"attributes":{"name":"Keven Williamson","age":69,"location":"Hoboken"}},{"attributes":{"name":"Mrs. Ethelyn Conn","age":41,"location":"Grand Prairie"}},{"attributes":{"name":"Cecil Rempel-Balistreri","age":20,"location":"Beckerbury"}},{"attributes":{"name":"Coy Leuschke","age":66,"location":"Treutelmouth"}},{"attributes":{"name":"Lila Christiansen MD","age":33,"location":"Wylie"}},{"attributes":{"name":"Dexter Goyette","age":34,"location":"Schneidercester"}},{"attributes":{"name":"Kristopher Kohler Jr.","age":77,"location":"North Forresthaven"}},{"attributes":{"name":"Miss Dameon Maggio","age":71,"location":"Lake Alexandrobury"}},{"attributes":{"name":"Dr. Leonard DuBuque","age":65,"location":"Farmington"}},{"attributes":{"name":"Kirk Mante","age":24,"location":"Livonia"}},{"attributes":{"name":"Jeffrey Hilll","age":57,"location":"Schmittstad"}},{"attributes":{"name":"Orlo Kunde","age":71,"location":"Violetview"}},{"attributes":{"name":"Ms. Francisco Ziemann","age":75,"location":"West Alyssonborough"}},{"attributes":{"name":"Irwin Bayer","age":23,"location":"Casa Grande"}},{"attributes":{"name":"Loren Bednar PhD","age":36,"location":"North Rosalynstead"}},{"attributes":{"name":"Laura Aufderhar","age":73,"location":"Trujillo Alto"}},{"attributes":{"name":"Jan Wisozk","age":19,"location":"Hackensack"}},{"attributes":{"name":"Candelario Bogisich","age":31,"location":"North Lauderdale"}},{"attributes":{"name":"Clint Cremin","age":26,"location":"Lakewood"}},{"attributes":{"name":"Mr. Lance Yundt","age":69,"location":"Lake Waldo"}},{"attributes":{"name":"Francisco Buckridge","age":46,"location":"Missouri City"}},{"attributes":{"name":"Gilberto Cruickshank","age":49,"location":"Mertzborough"}},{"attributes":{"name":"Miguel Sipes","age":28,"location":"Lake Meaghan"}},{"attributes":{"name":"Mr. Johnny Jacobson-Leffler","age":71,"location":"Kaiaside"}},{"attributes":{"name":"Daphney Kessler","age":44,"location":"Moenchester"}},{"attributes":{"name":"Mercedes Emard","age":63,"location":"Port Roberto"}},{"attributes":{"name":"Wilburn Champlin","age":63,"location":"East Greysontown"}},{"attributes":{"name":"Minnie Kihn PhD","age":63,"location":"Boise City"}},{"attributes":{"name":"Opal Nitzsche","age":25,"location":"Caleighville"}},{"attributes":{"name":"Terrence Shanahan","age":27,"location":"Macon-Bibb County"}},{"attributes":{"name":"Carmen Mraz","age":71,"location":"North Rosarioland"}},{"attributes":{"name":"Miss Jane Dickens","age":19,"location":"Erie"}},{"attributes":{"name":"Guadalupe Mosciski","age":45,"location":"Mablehaven"}},{"attributes":{"name":"Ray Schumm","age":19,"location":"Stoltenbergboro"}},{"attributes":{"name":"Marco Lockman III","age":29,"location":"Sporerboro"}},{"attributes":{"name":"Mr. Giovanna Simonis","age":64,"location":"Port Fidelstead"}},{"attributes":{"name":"Marion Jacobson","age":39,"location":"Murrieta"}},{"attributes":{"name":"Reba Reichert","age":32,"location":"Racine"}},{"attributes":{"name":"Bradford Williamson","age":42,"location":"Lansing"}},{"attributes":{"name":"Nadine O'Conner","age":32,"location":"North Marquisbury"}},{"attributes":{"name":"Keith Schultz","age":21,"location":"East Prudence"}},{"attributes":{"name":"Ms. Jedediah Senger","age":38,"location":"Hauckside"}},{"attributes":{"name":"Adam Klocko","age":42,"location":"Esmeraldafort"}},{"attributes":{"name":"Joel Romaguera","age":38,"location":"Jarretberg"}},{"attributes":{"name":"Annette Ebert","age":29,"location":"Lueilwitzberg"}},{"attributes":{"name":"Dr. Velma Ward DDS","age":56,"location":"South Makaylaport"}},{"attributes":{"name":"Brooklyn Adams","age":31,"location":"East Noble"}},{"attributes":{"name":"Dr. Aaron Abbott","age":57,"location":"East Dayneworth"}},{"attributes":{"name":"Carl Schuster","age":48,"location":"Lakewood"}},{"attributes":{"name":"Todd Nienow-Nader","age":45,"location":"East Mackenzieport"}},{"attributes":{"name":"Velma Dicki","age":28,"location":"Kenyaland"}},{"attributes":{"name":"Princess Quigley","age":38,"location":"Port Jayme"}},{"attributes":{"name":"Mr. Leda McKenzie","age":34,"location":"El Monte"}},{"attributes":{"name":"Ian Hoppe","age":58,"location":"Port Maiafort"}},{"attributes":{"name":"Lexus Metz","age":57,"location":"Mattieboro"}},{"attributes":{"name":"Beau Wisozk Sr.","age":46,"location":"North Patsy"}},{"attributes":{"name":"Audie MacGyver Sr.","age":57,"location":"Desireeview"}},{"attributes":{"name":"Dr. Clara Champlin","age":77,"location":"Bakersfield"}},{"attributes":{"name":"Athena Krajcik","age":44,"location":"Temecula"}},{"attributes":{"name":"Merl Dare-Bergnaum","age":80,"location":"Lulastad"}},{"attributes":{"name":"Vida Macejkovic","age":37,"location":"New Boyd"}},{"attributes":{"name":"Warren Daniel","age":76,"location":"Fort Bereniceville"}},{"attributes":{"name":"Nora Schroeder","age":47,"location":"Jameyview"}},{"attributes":{"name":"Hadley Dickinson","age":80,"location":"Boganstad"}},{"attributes":{"name":"Carroll Auer","age":34,"location":"Hanford"}},{"attributes":{"name":"Lori Hermiston","age":46,"location":"West Trevion"}},{"attributes":{"name":"Dr. Susan Zieme","age":76,"location":"Methuen Town"}},{"attributes":{"name":"Stella Nikolaus","age":52,"location":"North Kipcester"}},{"attributes":{"name":"Megan Schuster","age":62,"location":"East Jocelynhaven"}},{"attributes":{"name":"Lynn Jacobson","age":23,"location":"New Brisa"}},{"attributes":{"name":"Jettie Cremin","age":22,"location":"Ismaelfield"}},{"attributes":{"name":"Dr. Ethel Osinski","age":61,"location":"West Javonview"}},{"attributes":{"name":"Zackary Casper","age":18,"location":"Port Darrion"}},{"attributes":{"name":"Juston Beatty","age":26,"location":"West Aimeeville"}},{"attributes":{"name":"Andreanne Hoppe-Littel","age":18,"location":"Lake Mattie"}},{"attributes":{"name":"Derrick Marvin","age":27,"location":"Dietrichstad"}},{"attributes":{"name":"Patty Bailey","age":31,"location":"Orlando"}},{"attributes":{"name":"Jacqueline Okuneva","age":58,"location":"North Ana"}},{"attributes":{"name":"Travis Spinka","age":72,"location":"Waukesha"}},{"attributes":{"name":"Angelo Harris","age":38,"location":"South Elinorefort"}},{"attributes":{"name":"Anthony D'Amore","age":20,"location":"Fort Simeoncester"}},{"attributes":{"name":"Mrs. Charles Kutch","age":27,"location":"Pittsburg"}},{"attributes":{"name":"Raquel Rohan","age":80,"location":"North Jaimecester"}},{"attributes":{"name":"Edna Haley","age":27,"location":"Lockmanfort"}},{"attributes":{"name":"Donna Kertzmann","age":51,"location":"Kyraville"}},{"attributes":{"name":"Chester Hessel","age":70,"location":"Port St. Lucie"}},{"attributes":{"name":"Bert Kovacek PhD","age":39,"location":"Fort Howard"}},{"attributes":{"name":"Pam Johnson","age":70,"location":"Ritastad"}},{"attributes":{"name":"Gerald Daugherty","age":71,"location":"South Stefanie"}},{"attributes":{"name":"Tyrell Leuschke-Monahan","age":65,"location":"Hoegerton"}},{"attributes":{"name":"Mack Mayer","age":49,"location":"North Emilia"}},{"attributes":{"name":"Alyssa Casper","age":20,"location":"Angelitaside"}},{"attributes":{"name":"Ray Sporer","age":46,"location":"North Walker"}},{"attributes":{"name":"Kayla Purdy","age":71,"location":"Peoria"}},{"attributes":{"name":"Antonio Murray","age":18,"location":"Fidelburgh"}},{"attributes":{"name":"Lyda O'Kon-Renner","age":66,"location":"Kennithville"}},{"attributes":{"name":"Camila Stracke","age":27,"location":"South Stephany"}},{"attributes":{"name":"Salvador Powlowski","age":66,"location":"Shoreline"}},{"attributes":{"name":"Koby Ziemann Sr.","age":65,"location":"Houston"}},{"attributes":{"name":"Lucienne Ritchie","age":37,"location":"Marilynemouth"}},{"attributes":{"name":"Winifred Heathcote PhD","age":64,"location":"New Gia"}},{"attributes":{"name":"Maximus Langosh","age":68,"location":"Port Georgettestad"}},{"attributes":{"name":"Dr. Major Witting","age":40,"location":"Elenachester"}},{"attributes":{"name":"Ana Langosh","age":45,"location":"New Angie"}},{"attributes":{"name":"Julie Romaguera","age":49,"location":"Kuvalisville"}},{"attributes":{"name":"Kylee Witting","age":80,"location":"Deltona"}},{"attributes":{"name":"Cary Connelly","age":38,"location":"Fort Henriette"}},{"attributes":{"name":"Jordan Hagenes","age":56,"location":"Ethaburgh"}},{"attributes":{"name":"Maximus Bosco","age":47,"location":"Saginaw"}},{"attributes":{"name":"Cary Dibbert","age":66,"location":"Pfannerstillville"}},{"attributes":{"name":"Emmie Schoen","age":29,"location":"New Ignacio"}},{"attributes":{"name":"Nina Hahn","age":66,"location":"East Kathryn"}},{"attributes":{"name":"Ms. Bernita Berge","age":77,"location":"South Hunterfurt"}},{"attributes":{"name":"Miss Pablo Dibbert","age":59,"location":"Lake Donville"}},{"attributes":{"name":"Laverne Parker","age":79,"location":"Port Carolyne"}},{"attributes":{"name":"Blanche Osinski","age":53,"location":"West Nyasiastead"}},{"attributes":{"name":"Brennon Ward IV","age":55,"location":"Shaunstad"}},{"attributes":{"name":"Bobby Kunde-Morar","age":26,"location":"Cary"}},{"attributes":{"name":"Magnolia Feeney","age":20,"location":"Lake Palmaville"}},{"attributes":{"name":"Herman Boyle III","age":38,"location":"East Vivienne"}},{"attributes":{"name":"Miranda Goyette","age":39,"location":"Rickeyburgh"}},{"attributes":{"name":"Zane O'Conner DVM","age":20,"location":"O'Keefechester"}},{"attributes":{"name":"Dennis Gutmann","age":33,"location":"Riceland"}},{"attributes":{"name":"Carlton Morar","age":55,"location":"Anaheim"}},{"attributes":{"name":"Dr. Tremaine Dickens DDS","age":51,"location":"Beckerchester"}},{"attributes":{"name":"Pedro Botsford","age":77,"location":"Carolinefort"}},{"attributes":{"name":"Brody Gibson DDS","age":46,"location":"Lake Jakefield"}},{"attributes":{"name":"Mr. Celestine Kovacek","age":35,"location":"Blaine"}},{"attributes":{"name":"Imani Satterfield","age":77,"location":"New Ilene"}},{"attributes":{"name":"Mr. Joelle Hartmann","age":73,"location":"Ferminland"}},{"attributes":{"name":"Carole Kilback","age":71,"location":"Port Cordiaside"}},{"attributes":{"name":"Deondre Ferry","age":72,"location":"Harveyhaven"}},{"attributes":{"name":"Lisette Jerde","age":58,"location":"Fort Abdul"}},{"attributes":{"name":"Gwen Hermiston","age":41,"location":"New Stella"}},{"attributes":{"name":"Eliseo Hettinger","age":35,"location":"North Cordell"}},{"attributes":{"name":"Arturo Mante-Crist","age":53,"location":"West Jerod"}},{"attributes":{"name":"Renee Kirlin","age":63,"location":"New Jimmy"}},{"attributes":{"name":"Jake Ondricka","age":59,"location":"Fort Florenciomouth"}},{"attributes":{"name":"Delilah Mraz","age":80,"location":"Robertaside"}},{"attributes":{"name":"Sonya Ritchie","age":79,"location":"Port Marianostad"}},{"attributes":{"name":"Christop Frami","age":53,"location":"Dublin"}},{"attributes":{"name":"Marianna Blanda","age":38,"location":"D'Amoremouth"}},{"attributes":{"name":"Sonya Pacocha","age":70,"location":"Ann Arbor"}},{"attributes":{"name":"Roderick Wuckert","age":25,"location":"Fort Alberthabury"}},{"attributes":{"name":"Nadine Will III","age":77,"location":"Riverfield"}},{"attributes":{"name":"Walter Ledner","age":76,"location":"North Chesley"}},{"attributes":{"name":"Paul Bashirian","age":44,"location":"Fort Yoshiko"}},{"attributes":{"name":"Thad Rippin","age":43,"location":"East Myrtisland"}},{"attributes":{"name":"Mr. Giuseppe Goldner","age":55,"location":"East Esta"}},{"attributes":{"name":"Haylee Grimes","age":38,"location":"South Ettie"}},{"attributes":{"name":"Marianne Schiller","age":40,"location":"South Elissa"}},{"attributes":{"name":"Mr. Javier Goyette","age":64,"location":"North Austin"}},{"attributes":{"name":"Dr. Irma Crona","age":47,"location":"Landenport"}},{"attributes":{"name":"Moises Senger","age":74,"location":"New Tessieburgh"}},{"attributes":{"name":"Gunner Borer","age":80,"location":"Chapel Hill"}},{"attributes":{"name":"Lena Bahringer","age":80,"location":"Jessikaton"}},{"attributes":{"name":"Katie Upton","age":19,"location":"Mission Viejo"}},{"attributes":{"name":"Kip Beier","age":61,"location":"Fort Caesarstad"}},{"attributes":{"name":"Sheridan Ferry","age":46,"location":"Stoltenbergmouth"}},{"attributes":{"name":"Billy Keeling","age":53,"location":"Rocky Mount"}},{"attributes":{"name":"Alverta Buckridge","age":27,"location":"Owensboro"}},{"attributes":{"name":"Dr. Cesar Bruen","age":72,"location":"Dereckchester"}},{"attributes":{"name":"Edgar Parker","age":75,"location":"East Lamarboro"}},{"attributes":{"name":"Ava Schneider","age":58,"location":"Coral Gables"}},{"attributes":{"name":"Myrtle Kutch","age":25,"location":"Jerdehaven"}},{"attributes":{"name":"Sabrina Littel","age":53,"location":"East Jodie"}},{"attributes":{"name":"Roderick Wolff","age":37,"location":"South Amayafurt"}},{"attributes":{"name":"Aliya Waters","age":73,"location":"North Stephan"}},{"attributes":{"name":"Melba Sanford","age":38,"location":"Bogisichmouth"}},{"attributes":{"name":"Mattie Barton PhD","age":75,"location":"Torpborough"}},{"attributes":{"name":"Felton Medhurst","age":55,"location":"Pine Bluff"}},{"attributes":{"name":"Erik Weber","age":73,"location":"East Americastad"}},{"attributes":{"name":"Marisol Cassin","age":63,"location":"Lake Stephania"}},{"attributes":{"name":"Sherman Kerluke","age":43,"location":"Skilescester"}},{"attributes":{"name":"Maud Renner","age":57,"location":"Monroe"}},{"attributes":{"name":"Rahsaan Bins Jr.","age":60,"location":"Des Moines"}},{"attributes":{"name":"Delbert Mills","age":58,"location":"Mrazmouth"}},{"attributes":{"name":"Shirley Wunsch I","age":44,"location":"Rosarioton"}},{"attributes":{"name":"Angeline Torphy","age":44,"location":"Lyricstad"}},{"attributes":{"name":"Rosie Auer","age":71,"location":"South Tyreek"}},{"attributes":{"name":"Ricky Keeling","age":67,"location":"Roswell"}},{"attributes":{"name":"Walter Carroll","age":19,"location":"Port Fritzfurt"}},{"attributes":{"name":"Duane Mosciski","age":35,"location":"Lake Halle"}},{"attributes":{"name":"Emery Hand","age":77,"location":"Morartown"}},{"attributes":{"name":"Carl Corkery","age":23,"location":"Sanfordport"}},{"attributes":{"name":"Percy Hayes-Monahan Jr.","age":35,"location":"New Charlotteborough"}},{"attributes":{"name":"Dr. Ethel Keeling MD","age":74,"location":"Nadiaview"}},{"attributes":{"name":"Ellis Greenfelder PhD","age":72,"location":"Fort Carmine"}},{"attributes":{"name":"Mario Blick","age":57,"location":"Torphyfurt"}},{"attributes":{"name":"Dr. Vernon Konopelski","age":23,"location":"Lake Maureen"}},{"attributes":{"name":"Dr. Marshall Green-Macejkovic","age":73,"location":"Pharr"}},{"attributes":{"name":"Ray Hoppe-Greenholt IV","age":28,"location":"Bradenton"}},{"attributes":{"name":"Dr. Shane Pagac","age":60,"location":"Vacaville"}},{"attributes":{"name":"Darren Dickens","age":31,"location":"New Duaneworth"}},{"attributes":{"name":"Valentin Schulist PhD","age":74,"location":"Lewisville"}},{"attributes":{"name":"Ronny Satterfield IV","age":51,"location":"Meriden"}},{"attributes":{"name":"Emma Spencer-Rice","age":28,"location":"North Sammy"}},{"attributes":{"name":"Damon Johnson","age":23,"location":"West Londonchester"}},{"attributes":{"name":"Victor Kuhlman","age":52,"location":"Fort Josh"}},{"attributes":{"name":"Drew Becker","age":49,"location":"West Zoey"}},{"attributes":{"name":"Homer Reichert","age":29,"location":"South Pinkieton"}},{"attributes":{"name":"Constantin Berge","age":44,"location":"Port Donny"}},{"attributes":{"name":"Karl Cruickshank","age":63,"location":"North Wilfred"}},{"attributes":{"name":"Daisy Stroman","age":65,"location":"East Finnboro"}},{"attributes":{"name":"Dedrick Mertz","age":23,"location":"Lake Deonte"}},{"attributes":{"name":"Verona Sanford","age":74,"location":"Port Madilyn"}},{"attributes":{"name":"Lynda Williamson","age":36,"location":"North Mellie"}},{"attributes":{"name":"Neal Jakubowski","age":74,"location":"Stokesland"}},{"attributes":{"name":"Cindy Towne","age":34,"location":"Bristol"}},{"attributes":{"name":"Guillermo Bashirian","age":43,"location":"Fort Jess"}},{"attributes":{"name":"Natalia Gutmann","age":80,"location":"South Irwinfield"}},{"attributes":{"name":"Monique Zieme-Davis","age":48,"location":"South Tyrelhaven"}},{"attributes":{"name":"Jean Hilpert","age":39,"location":"North Stuart"}},{"attributes":{"name":"Kelly Emmerich","age":49,"location":"Gusthaven"}},{"attributes":{"name":"Pauline O'Conner","age":50,"location":"Charlieworth"}},{"attributes":{"name":"Karla Shields","age":21,"location":"Champlinstad"}},{"attributes":{"name":"Deonte Bergstrom","age":43,"location":"Olsonfort"}},{"attributes":{"name":"Chesley Satterfield","age":63,"location":"South Roxaneborough"}},{"attributes":{"name":"Broderick Hirthe","age":66,"location":"Port Caryton"}},{"attributes":{"name":"Barry Price DVM","age":48,"location":"Satterfieldshire"}},{"attributes":{"name":"Krista Larson","age":66,"location":"Yorba Linda"}},{"attributes":{"name":"Eduardo Bosco","age":18,"location":"Port Janelle"}},{"attributes":{"name":"Grover Kunde","age":24,"location":"Giaside"}},{"attributes":{"name":"Viola Pollich","age":72,"location":"Port Terenceville"}},{"attributes":{"name":"Chanel Ernser","age":60,"location":"Novellaburgh"}},{"attributes":{"name":"Judith Veum PhD","age":76,"location":"Port Annabellestead"}},{"attributes":{"name":"Abby Lehner","age":49,"location":"Niagara Falls"}},{"attributes":{"name":"Mr. Gino O'Connell","age":71,"location":"Padbergmouth"}},{"attributes":{"name":"Maudie Jacobson","age":62,"location":"West Waino"}},{"attributes":{"name":"Virgil Ankunding","age":31,"location":"Redlands"}},{"attributes":{"name":"Ken Emard","age":68,"location":"Mrazside"}},{"attributes":{"name":"Jeremiah Sipes","age":69,"location":"Bayonne"}},{"attributes":{"name":"Jettie Lubowitz PhD","age":55,"location":"Raleigh"}},{"attributes":{"name":"Maggie Ondricka","age":23,"location":"Adelltown"}},{"attributes":{"name":"Dianna Watsica-Bins","age":54,"location":"Rosemead"}},{"attributes":{"name":"Neal Schiller DDS","age":32,"location":"Misaelfield"}},{"attributes":{"name":"Trey Lindgren","age":53,"location":"South Rico"}},{"attributes":{"name":"Brian Corwin DVM","age":64,"location":"New Lindseyworth"}},{"attributes":{"name":"Zackery Hermann","age":22,"location":"North Wilfridworth"}},{"attributes":{"name":"Marsha Rosenbaum","age":45,"location":"Schulistchester"}},{"attributes":{"name":"Mr. Rosemarie Funk","age":69,"location":"Fort Wilburntown"}},{"attributes":{"name":"Mr. Rudy Wilkinson","age":44,"location":"East Timmy"}},{"attributes":{"name":"Kristi Schinner","age":36,"location":"Yakima"}},{"attributes":{"name":"Andres Bailey","age":70,"location":"North Ressiemouth"}},{"attributes":{"name":"Clint Goyette","age":74,"location":"Lake Lucas"}},{"attributes":{"name":"Deanna Champlin","age":28,"location":"North Ikefield"}},{"attributes":{"name":"Ms. Rosalee Swift","age":22,"location":"West Oswald"}},{"attributes":{"name":"Mr. Edwardo Auer IV","age":42,"location":"Lake Garrison"}},{"attributes":{"name":"Moises Wiza","age":55,"location":"East Penelope"}},{"attributes":{"name":"Tristin McClure","age":43,"location":"Sanfordstad"}},{"attributes":{"name":"Hanna Pacocha","age":25,"location":"New Karineborough"}},{"attributes":{"name":"Sage Wiegand","age":54,"location":"Monahanhaven"}},{"attributes":{"name":"Julian Quitzon","age":19,"location":"Corkerymouth"}},{"attributes":{"name":"Breana Brown-Moen","age":63,"location":"South Abigail"}},{"attributes":{"name":"Vincent Powlowski","age":68,"location":"North Orinview"}},{"attributes":{"name":"Cheryl Zboncak","age":67,"location":"Port Isabelle"}},{"attributes":{"name":"Pedro Osinski","age":32,"location":"Kuphalview"}},{"attributes":{"name":"Omar Hartmann DDS","age":19,"location":"Adamston"}},{"attributes":{"name":"Giovanny Sauer","age":77,"location":"Serenityport"}},{"attributes":{"name":"Everette Berge","age":20,"location":"Schowalterhaven"}},{"attributes":{"name":"Shawn Zboncak","age":80,"location":"Nadiaberg"}},{"attributes":{"name":"Kay Parker","age":59,"location":"Mireilleside"}},{"attributes":{"name":"Jack Kuhic","age":53,"location":"Frisco"}},{"attributes":{"name":"Jesus Schuppe","age":73,"location":"Conway"}},{"attributes":{"name":"Erma Pfannerstill","age":67,"location":"West Lloydhaven"}},{"attributes":{"name":"Everett Cronin","age":19,"location":"Ziemannton"}},{"attributes":{"name":"Latoya Block","age":39,"location":"Maryworth"}},{"attributes":{"name":"Nancy Metz","age":80,"location":"Lake Aubrey"}},{"attributes":{"name":"Elna DuBuque","age":40,"location":"Fort Elissastad"}},{"attributes":{"name":"Mona Cummerata","age":73,"location":"Maialand"}},{"attributes":{"name":"Byron Mertz","age":61,"location":"North Highlands"}},{"attributes":{"name":"Yesenia Brown","age":64,"location":"Corpus Christi"}},{"attributes":{"name":"Yadira Baumbach Jr.","age":32,"location":"Ashleyshire"}},{"attributes":{"name":"Fredrick Schroeder","age":18,"location":"Vonfurt"}},{"attributes":{"name":"Bert Gulgowski-Rau","age":29,"location":"South Nicola"}},{"attributes":{"name":"Reyes Lebsack","age":78,"location":"Stratford"}},{"attributes":{"name":"Mozelle Daugherty","age":46,"location":"Rodriguezstad"}},{"attributes":{"name":"Mr. Hiram Green","age":37,"location":"Caliland"}},{"attributes":{"name":"Marshall Stanton","age":34,"location":"Brandon"}},{"attributes":{"name":"Katarina Schoen DDS","age":34,"location":"Huelville"}},{"attributes":{"name":"Blanche Weissnat","age":79,"location":"Ninaland"}},{"attributes":{"name":"Brayan Parisian","age":38,"location":"New Ida"}},{"attributes":{"name":"Chelsey Kuhn","age":65,"location":"Aureliamouth"}},{"attributes":{"name":"Beth Hermann","age":55,"location":"North Sonny"}},{"attributes":{"name":"Dameon Bartell","age":70,"location":"Sengermouth"}},{"attributes":{"name":"Francisco Bruen","age":44,"location":"Ogden"}},{"attributes":{"name":"Jeramy Hackett","age":74,"location":"Lueilwitzburgh"}},{"attributes":{"name":"Braulio McClure","age":76,"location":"South Sophieberg"}},{"attributes":{"name":"Summer Volkman","age":29,"location":"Port Heavenburgh"}},{"attributes":{"name":"Sylvester Breitenberg","age":27,"location":"East Eliezerside"}},{"attributes":{"name":"Lowell Yost","age":40,"location":"Marysville"}},{"attributes":{"name":"Dr. Edgar Pacocha","age":36,"location":"Cupertino"}},{"attributes":{"name":"Lewis Gerlach","age":61,"location":"Schusterboro"}},{"attributes":{"name":"Marian Durgan-McClure","age":25,"location":"Keaganberg"}},{"attributes":{"name":"Delores Shanahan","age":63,"location":"Corwinboro"}},{"attributes":{"name":"Pattie Hagenes","age":55,"location":"Apopka"}},{"attributes":{"name":"Joel Mraz","age":23,"location":"Novato"}},{"attributes":{"name":"Julius Runolfsson","age":69,"location":"West Fredyport"}},{"attributes":{"name":"Jacey Bruen","age":33,"location":"East Sarina"}},{"attributes":{"name":"Nick Swift","age":58,"location":"South Eldontown"}},{"attributes":{"name":"Simone Wyman MD","age":30,"location":"Lake Gwendolynton"}},{"attributes":{"name":"Ricardo Kautzer","age":48,"location":"Korbinstead"}},{"attributes":{"name":"Emanuel Turcotte","age":76,"location":"Friesenstead"}},{"attributes":{"name":"Clark Mayer","age":65,"location":"Scotborough"}},{"attributes":{"name":"Karl Sipes","age":57,"location":"Littelfield"}},{"attributes":{"name":"Ramiro Torp","age":33,"location":"East Isidro"}},{"attributes":{"name":"Saul Rowe","age":78,"location":"Elizabeth"}},{"attributes":{"name":"Reuben Stanton","age":39,"location":"Balistrerifurt"}},{"attributes":{"name":"Harmony Goldner","age":29,"location":"North Lexie"}},{"attributes":{"name":"Elijah Borer","age":66,"location":"New Jada"}},{"attributes":{"name":"Gerardo Fadel","age":45,"location":"Washington"}},{"attributes":{"name":"Mitchell Parisian-Moore","age":65,"location":"D'Amoreview"}},{"attributes":{"name":"Willard Wintheiser","age":49,"location":"Collierville"}},{"attributes":{"name":"Mr. Homer Lynch","age":75,"location":"Kaelacester"}},{"attributes":{"name":"Gladys Schmitt","age":70,"location":"Lake Sadyeberg"}},{"attributes":{"name":"Van Oberbrunner","age":79,"location":"New Chynashire"}},{"attributes":{"name":"Mr. Hope Purdy","age":65,"location":"Pontiac"}},{"attributes":{"name":"Erick Walker","age":63,"location":"Stokesborough"}},{"attributes":{"name":"Clinton Bosco","age":63,"location":"Chazshire"}},{"attributes":{"name":"Doris Krajcik","age":35,"location":"East Treystead"}},{"attributes":{"name":"Tami Bogan I","age":72,"location":"Harberworth"}},{"attributes":{"name":"Darrin Waelchi MD","age":75,"location":"North Osborne"}},{"attributes":{"name":"Darren Reichel","age":53,"location":"Murielview"}},{"attributes":{"name":"Melany Goldner","age":55,"location":"Fort Isidro"}},{"attributes":{"name":"Dell Welch","age":49,"location":"Lake Robertoview"}},{"attributes":{"name":"Mr. Randy Abshire Jr.","age":59,"location":"Lake Bennettstead"}},{"attributes":{"name":"Ms. Anna Sauer","age":59,"location":"Lake Flavio"}},{"attributes":{"name":"Jacklyn Boyle-Lakin III","age":56,"location":"Vernworth"}},{"attributes":{"name":"Jonathan Welch","age":57,"location":"Palm Desert"}},{"attributes":{"name":"Turner Lind","age":53,"location":"Elkhart"}},{"attributes":{"name":"Cyrus Kassulke","age":72,"location":"South Ian"}},{"attributes":{"name":"Corey Little","age":45,"location":"Collinsport"}},{"attributes":{"name":"Loren Klein","age":23,"location":"Herminahaven"}},{"attributes":{"name":"Dashawn Sanford","age":25,"location":"Fort Johanna"}},{"attributes":{"name":"Daren Kuhn-Strosin","age":77,"location":"Legroscester"}},{"attributes":{"name":"Dora Zboncak","age":28,"location":"Nienowcester"}},{"attributes":{"name":"Troy Kuhn","age":73,"location":"Willmsfort"}},{"attributes":{"name":"Johan Bergstrom","age":18,"location":"West Myrtisview"}},{"attributes":{"name":"Sadie Wyman-Lebsack","age":24,"location":"New Bedford"}},{"attributes":{"name":"Lynda Okuneva","age":55,"location":"East Juniusberg"}},{"attributes":{"name":"Cedric Quitzon","age":40,"location":"Juniusborough"}},{"attributes":{"name":"Andrew Harber","age":58,"location":"Fort Jordanstead"}},{"attributes":{"name":"Johnny Doyle","age":76,"location":"Balistreriview"}},{"attributes":{"name":"Erma Wolf-Borer","age":67,"location":"Blockton"}},{"attributes":{"name":"Sheila Graham","age":57,"location":"South Hailee"}},{"attributes":{"name":"Tasha McLaughlin","age":29,"location":"East Gerard"}},{"attributes":{"name":"Mr. Katheryn Sporer","age":28,"location":"Lake Missouri"}},{"attributes":{"name":"Amber Walsh","age":18,"location":"Welchboro"}},{"attributes":{"name":"Ricardo Ward","age":73,"location":"North Elfrieda"}},{"attributes":{"name":"Marty Hagenes","age":18,"location":"East Rocky"}},{"attributes":{"name":"Lamar Luettgen","age":42,"location":"Krystelmouth"}},{"attributes":{"name":"Emily Crooks","age":68,"location":"New Darwinberg"}},{"attributes":{"name":"Ruby Yost","age":69,"location":"Port Lorenastead"}},{"attributes":{"name":"Dr. Jerry Emmerich","age":51,"location":"Bodebury"}},{"attributes":{"name":"Daniel Shields","age":25,"location":"Paterson"}},{"attributes":{"name":"Mrs. Brenda Ebert","age":79,"location":"Tiannaton"}},{"attributes":{"name":"Lucas Doyle MD","age":75,"location":"New Deondreworth"}},{"attributes":{"name":"Alexane Volkman","age":60,"location":"Aloha"}},{"attributes":{"name":"Onie Lubowitz I","age":44,"location":"Schoenborough"}},{"attributes":{"name":"Erma Murphy","age":50,"location":"Tucson"}},{"attributes":{"name":"Wilma Schuppe DVM","age":45,"location":"Margareteview"}},{"attributes":{"name":"Bessie Denesik","age":79,"location":"Dickensside"}},{"attributes":{"name":"Marcia Schmeler","age":51,"location":"North Janessa"}},{"attributes":{"name":"Ida Kiehn","age":56,"location":"East Michaela"}},{"attributes":{"name":"Johnny Kessler","age":52,"location":"Schusterfort"}},{"attributes":{"name":"Armand Fadel","age":69,"location":"East Providence"}},{"attributes":{"name":"Betsy Hegmann","age":60,"location":"Smithport"}},{"attributes":{"name":"Felton Cummings","age":44,"location":"St. Joseph"}},{"attributes":{"name":"Alfredo Stoltenberg","age":57,"location":"Wizastad"}},{"attributes":{"name":"Ismael Reichel","age":64,"location":"Port Quintonfort"}},{"attributes":{"name":"Rodolfo Wintheiser","age":19,"location":"Lake Zoeland"}},{"attributes":{"name":"Lilliana Stoltenberg","age":36,"location":"Denesikland"}},{"attributes":{"name":"Peter Zemlak","age":74,"location":"Dejuanborough"}},{"attributes":{"name":"Claude Bartoletti","age":41,"location":"Port Hollisfort"}},{"attributes":{"name":"Mr. Brandon Lynch DVM","age":48,"location":"South Efrenmouth"}},{"attributes":{"name":"Jonathon Grady","age":74,"location":"Columbus"}},{"attributes":{"name":"Vance Okuneva","age":49,"location":"South Demond"}},{"attributes":{"name":"Granville Beatty","age":32,"location":"Moreno Valley"}},{"attributes":{"name":"Byron Nader","age":42,"location":"South Ginoland"}},{"attributes":{"name":"Sonny Graham","age":57,"location":"Lake Adalberto"}},{"attributes":{"name":"Lucas Windler","age":29,"location":"Las Vegas"}},{"attributes":{"name":"Miss Tabitha Windler-Kohler","age":70,"location":"Pansyshire"}},{"attributes":{"name":"Kaden Mann","age":34,"location":"Cristmouth"}},{"attributes":{"name":"Colin Ward","age":19,"location":"Cronafurt"}},{"attributes":{"name":"Miss Andrea Shields","age":54,"location":"Mosciskiburgh"}},{"attributes":{"name":"Jack O'Reilly","age":18,"location":"Pleasanton"}},{"attributes":{"name":"Willie Von","age":35,"location":"Lake Marilie"}},{"attributes":{"name":"Mr. Madeline Becker","age":64,"location":"Fort Angel"}},{"attributes":{"name":"Mr. Timothy Rice","age":23,"location":"Fort Dangeloboro"}},{"attributes":{"name":"John Ratke Sr.","age":68,"location":"Karellefurt"}},{"attributes":{"name":"Joanie Jacobson V","age":42,"location":"Fort Darianachester"}},{"attributes":{"name":"Daniel Zieme","age":49,"location":"Brandoworth"}},{"attributes":{"name":"Shirley Grimes","age":26,"location":"South Jayda"}},{"attributes":{"name":"Mabel O'Reilly","age":52,"location":"East Dakota"}},{"attributes":{"name":"Rosalie Effertz","age":19,"location":"Mckennafort"}},{"attributes":{"name":"Silvia Bins","age":24,"location":"East Fredyfort"}},{"attributes":{"name":"Adolf Abshire","age":76,"location":"Evanchester"}},{"attributes":{"name":"Tanner Bayer","age":37,"location":"North Allan"}},{"attributes":{"name":"Abdullah Waelchi","age":21,"location":"North Las Vegas"}},{"attributes":{"name":"Carlos Kunze","age":27,"location":"Fort Jaida"}},{"attributes":{"name":"William Rath-Roob","age":32,"location":"Fort Halstead"}},{"attributes":{"name":"Jean Rolfson","age":61,"location":"Steveton"}},{"attributes":{"name":"Louis Hahn Sr.","age":78,"location":"West Maximilianhaven"}},{"attributes":{"name":"Carlie Torp","age":74,"location":"Fort Jamaalboro"}},{"attributes":{"name":"Angelo Johnson","age":71,"location":"New Juliusstad"}},{"attributes":{"name":"Mackenzie Stamm MD","age":63,"location":"East Nickburgh"}},{"attributes":{"name":"Mr. Don Cummerata","age":47,"location":"West Herta"}},{"attributes":{"name":"Fern Barrows","age":23,"location":"St. Petersburg"}},{"attributes":{"name":"Miss Gail Feeney","age":73,"location":"Fort Brianne"}},{"attributes":{"name":"Ernest Marquardt","age":77,"location":"Shaneside"}},{"attributes":{"name":"Laverne Becker","age":33,"location":"Madelynnberg"}},{"attributes":{"name":"Emma Champlin","age":30,"location":"Port Newell"}},{"attributes":{"name":"Haley Schuppe","age":80,"location":"Port Ryley"}},{"attributes":{"name":"Zachariah Gibson","age":79,"location":"Fort Nikita"}},{"attributes":{"name":"Georgianna Prosacco","age":29,"location":"West Elwinside"}},{"attributes":{"name":"Philip Gibson Sr.","age":24,"location":"Port Immanuel"}},{"attributes":{"name":"Velma Cummerata","age":40,"location":"East Rodrigo"}},{"attributes":{"name":"Armando Reilly PhD","age":37,"location":"Corkeryboro"}},{"attributes":{"name":"Talon Crooks","age":60,"location":"Labadieton"}},{"attributes":{"name":"Sigurd Romaguera","age":29,"location":"Lake Orlofurt"}},{"attributes":{"name":"Anjali D'Amore","age":22,"location":"Fort Ayana"}},{"attributes":{"name":"Geoffrey Berge","age":47,"location":"Vancouver"}},{"attributes":{"name":"Alysson Lubowitz","age":22,"location":"North Mekhifurt"}},{"attributes":{"name":"Lamar Lebsack","age":46,"location":"Paterson"}},{"attributes":{"name":"Desmond Kovacek","age":71,"location":"West Dameon"}},{"attributes":{"name":"Cornelius Jaskolski","age":69,"location":"Cupertino"}},{"attributes":{"name":"Brigitte Crooks","age":20,"location":"Zenaside"}},{"attributes":{"name":"Oda Lowe","age":42,"location":"Ofeliabury"}},{"attributes":{"name":"Waylon Mohr","age":23,"location":"Torreyboro"}},{"attributes":{"name":"Sean Medhurst","age":66,"location":"Lake Micah"}},{"attributes":{"name":"Mr. Christopher Rogahn","age":78,"location":"Lake Jailynview"}},{"attributes":{"name":"Betsy Hammes","age":27,"location":"Billyborough"}},{"attributes":{"name":"Johnathan Pollich","age":26,"location":"Brownborough"}},{"attributes":{"name":"Rosamond Muller","age":37,"location":"Blairworth"}},{"attributes":{"name":"Dr. Tamara Metz","age":42,"location":"Fort Manley"}},{"attributes":{"name":"Johann Schmidt","age":25,"location":"Morissettefield"}},{"attributes":{"name":"Dr. Rhett Moore","age":67,"location":"New Adaport"}},{"attributes":{"name":"Carter Bednar","age":66,"location":"Herminiastad"}},{"attributes":{"name":"Shelly Lubowitz","age":65,"location":"Port Graciela"}},{"attributes":{"name":"Emmie Spinka","age":47,"location":"Oswaldton"}},{"attributes":{"name":"Ettie Gerhold","age":28,"location":"McLaughlinberg"}},{"attributes":{"name":"Maya DuBuque III","age":76,"location":"Fort Karina"}},{"attributes":{"name":"Wilson Botsford","age":60,"location":"Lake Tyshawn"}},{"attributes":{"name":"Stan Quigley","age":25,"location":"Madisenboro"}},{"attributes":{"name":"Lawrence Parker","age":57,"location":"Lake Harvey"}},{"attributes":{"name":"Fritz Berge-Renner","age":79,"location":"Owenberg"}},{"attributes":{"name":"Kallie Ortiz","age":75,"location":"Toybury"}},{"attributes":{"name":"Geraldine Reinger","age":64,"location":"Luettgenchester"}},{"attributes":{"name":"Erick Gusikowski III","age":18,"location":"Verlafurt"}},{"attributes":{"name":"Joanna Mitchell DVM","age":76,"location":"Fort Eloise"}},{"attributes":{"name":"Mafalda Heller-Carter","age":29,"location":"Laguna Niguel"}},{"attributes":{"name":"Darnell Paucek","age":68,"location":"North Ashlynncester"}},{"attributes":{"name":"Dr. Vivien Murphy","age":79,"location":"Niagara Falls"}},{"attributes":{"name":"Melody Marks","age":52,"location":"North Jenamouth"}},{"attributes":{"name":"Bernard Rippin","age":23,"location":"South Jerroldstead"}},{"attributes":{"name":"Noel Robel","age":18,"location":"Felipaburgh"}},{"attributes":{"name":"Mrs. Dustin Botsford","age":35,"location":"New Jane"}},{"attributes":{"name":"Katelyn Dickens","age":20,"location":"Chandlerside"}},{"attributes":{"name":"Elvie Schumm","age":24,"location":"North Jalyn"}},{"attributes":{"name":"Anjali Schinner-Orn","age":79,"location":"Kleinhaven"}},{"attributes":{"name":"Mary VonRueden","age":58,"location":"Bozeman"}},{"attributes":{"name":"Kelsi Lesch I","age":22,"location":"Harrisburg"}},{"attributes":{"name":"Cicero Roberts","age":18,"location":"Tessstad"}},{"attributes":{"name":"Angie Rippin","age":39,"location":"South Camdenboro"}},{"attributes":{"name":"Juanita Roob","age":72,"location":"Brekkebury"}},{"attributes":{"name":"Dr. Cameron Bailey","age":77,"location":"Lake Rudolphfurt"}},{"attributes":{"name":"Jabari Glover","age":30,"location":"Gislasonworth"}},{"attributes":{"name":"Dr. Nathan Parker","age":25,"location":"Kovacekfield"}},{"attributes":{"name":"Chelsea Hane","age":18,"location":"Leecester"}},{"attributes":{"name":"Mackenzie Pfeffer DVM","age":54,"location":"Richietown"}},{"attributes":{"name":"Beatrice Rolfson","age":34,"location":"Florin"}},{"attributes":{"name":"Rufus Toy-Jast","age":37,"location":"Westland"}},{"attributes":{"name":"Rochelle Howe","age":31,"location":"Port Andrewstead"}},{"attributes":{"name":"Bailey Rowe","age":58,"location":"Lake Edmondland"}},{"attributes":{"name":"Emile Hills V","age":38,"location":"New Will"}},{"attributes":{"name":"Justina McKenzie","age":44,"location":"Kundehaven"}},{"attributes":{"name":"Douglas Purdy","age":42,"location":"East Romainefort"}},{"attributes":{"name":"Terry Jaskolski DVM","age":80,"location":"New Macey"}},{"attributes":{"name":"Eugene Skiles","age":54,"location":"Nienowshire"}},{"attributes":{"name":"Iris Kub II","age":33,"location":"Amarichester"}},{"attributes":{"name":"Frederick Lynch","age":53,"location":"Alexabury"}},{"attributes":{"name":"Sallie Price","age":40,"location":"South Lucileshire"}},{"attributes":{"name":"Rafael Schuppe","age":30,"location":"West Clementinefurt"}},{"attributes":{"name":"Jackie Considine","age":22,"location":"Oscarchester"}},{"attributes":{"name":"Angelica Durgan","age":41,"location":"Roweside"}},{"attributes":{"name":"Joe Deckow","age":38,"location":"Boscofield"}},{"attributes":{"name":"Brittany Streich","age":75,"location":"West Garrick"}},{"attributes":{"name":"Adam Kuhn","age":48,"location":"Jazmynport"}},{"attributes":{"name":"Freda Hyatt","age":77,"location":"Vandervortburgh"}},{"attributes":{"name":"Miss Vicki Schuster","age":50,"location":"Jonathonhaven"}},{"attributes":{"name":"Antonio Lang MD","age":37,"location":"Stanleyhaven"}},{"attributes":{"name":"Bonnie Kihn","age":28,"location":"Haagfurt"}},{"attributes":{"name":"Thurman Hills","age":36,"location":"Hansport"}},{"attributes":{"name":"Mr. Charles Mueller","age":58,"location":"Koeppchester"}},{"attributes":{"name":"Jerrod Sporer","age":24,"location":"Sterling Heights"}},{"attributes":{"name":"Anthony Abshire","age":23,"location":"Barnstable Town"}},{"attributes":{"name":"Paris Jones","age":18,"location":"Meriden"}},{"attributes":{"name":"Erika Mante-Bernier","age":36,"location":"Fort Jadeview"}},{"attributes":{"name":"Dr. Dewayne Conroy","age":80,"location":"Port Zula"}},{"attributes":{"name":"Robert Grimes","age":20,"location":"East Franco"}},{"attributes":{"name":"Lamar Hoeger-Emard V","age":21,"location":"New Jayneport"}},{"attributes":{"name":"Roy Haley","age":41,"location":"East Deangelomouth"}},{"attributes":{"name":"Ada Hudson","age":20,"location":"Flint"}},{"attributes":{"name":"Freeman Kunde","age":29,"location":"East Paul"}},{"attributes":{"name":"Miss Jackie Herzog","age":57,"location":"Kerlukestad"}},{"attributes":{"name":"Trevor Prosacco","age":61,"location":"Broomfield"}},{"attributes":{"name":"Toni Langworth","age":27,"location":"Pittsburgh"}},{"attributes":{"name":"Millie Hilpert","age":30,"location":"Camden"}},{"attributes":{"name":"Dr. Jody Walter","age":55,"location":"North Adelleburgh"}},{"attributes":{"name":"Dr. Claude Gleichner","age":44,"location":"Riverside"}},{"attributes":{"name":"Phoebe Bednar","age":42,"location":"Port Willie"}},{"attributes":{"name":"Miss Gunnar Bailey","age":40,"location":"Grimesbury"}},{"attributes":{"name":"Miss Brandi Cronin","age":62,"location":"Hahnside"}},{"attributes":{"name":"Cesar Sawayn DDS","age":19,"location":"New Kirstinhaven"}},{"attributes":{"name":"Carmine Grant","age":67,"location":"North Josephine"}},{"attributes":{"name":"Esta Torp","age":24,"location":"Carlsbad"}},{"attributes":{"name":"Randal Roberts","age":32,"location":"Rylanstad"}},{"attributes":{"name":"Braden Braun","age":71,"location":"Vandervortstad"}},{"attributes":{"name":"Amari Kovacek","age":28,"location":"New Caterinafort"}},{"attributes":{"name":"Lonnie Upton","age":40,"location":"Fayton"}},{"attributes":{"name":"Patricia Haag-Raynor","age":19,"location":"West Hartford"}},{"attributes":{"name":"Carlton Rippin","age":75,"location":"Fort Verniefield"}},{"attributes":{"name":"Mr. Vernon Runolfsdottir","age":78,"location":"Port Brandt"}},{"attributes":{"name":"Leah Hyatt","age":47,"location":"Corwinchester"}},{"attributes":{"name":"Jan Bergstrom","age":64,"location":"Leuschkefurt"}},{"attributes":{"name":"Irma Torp","age":43,"location":"Donnellyside"}},{"attributes":{"name":"Dr. Daniel Williamson","age":61,"location":"Clemmiehaven"}},{"attributes":{"name":"Lee DuBuque III","age":19,"location":"South Cecelia"}},{"attributes":{"name":"Sergio Schiller","age":66,"location":"Laurabury"}},{"attributes":{"name":"Felix Davis","age":54,"location":"New Garfieldberg"}},{"attributes":{"name":"Walter Hyatt","age":65,"location":"Gastonia"}},{"attributes":{"name":"Audra Abshire","age":65,"location":"Warwick"}},{"attributes":{"name":"Johnny Champlin","age":37,"location":"Blockboro"}},{"attributes":{"name":"Dr. Cristina Oberbrunner","age":59,"location":"East Ellsworthshire"}},{"attributes":{"name":"Patricia Boyer","age":65,"location":"Round Rock"}},{"attributes":{"name":"Ms. Jeanne Cartwright","age":31,"location":"Cotyshire"}},{"attributes":{"name":"Sasha Bogisich DVM","age":33,"location":"Mattshire"}},{"attributes":{"name":"Chauncey Dooley","age":51,"location":"Fort Lukas"}},{"attributes":{"name":"Carlos Schultz","age":33,"location":"Schmidtstad"}},{"attributes":{"name":"Kristofer DuBuque","age":32,"location":"Port Austenfield"}},{"attributes":{"name":"Jamil Turcotte","age":75,"location":"Crooksboro"}},{"attributes":{"name":"Ms. Antonio Bartoletti","age":70,"location":"East Coleport"}},{"attributes":{"name":"Daryl Bashirian","age":65,"location":"Lake Elijah"}},{"attributes":{"name":"Cielo Schroeder I","age":49,"location":"South Annabell"}},{"attributes":{"name":"Willis Hermann","age":26,"location":"Santa Monica"}},{"attributes":{"name":"Fredrick Mante-Towne","age":52,"location":"Boyleside"}},{"attributes":{"name":"Pink Hoeger","age":68,"location":"Port Edmundbury"}},{"attributes":{"name":"Meta Boyer-Wisozk","age":19,"location":"East Nedra"}},{"attributes":{"name":"Conrad Wintheiser","age":61,"location":"Port Kira"}},{"attributes":{"name":"Owen Nolan","age":38,"location":"North Brent"}},{"attributes":{"name":"Dwight Schuster-Hegmann","age":67,"location":"East Generalstad"}},{"attributes":{"name":"Dana Weber","age":26,"location":"Lindgrenhaven"}},{"attributes":{"name":"Preston Ortiz","age":64,"location":"North Gideon"}},{"attributes":{"name":"Tony McLaughlin","age":19,"location":"Jaquelinworth"}},{"attributes":{"name":"Lucile Trantow","age":37,"location":"Lake Ruby"}},{"attributes":{"name":"Sallie Douglas","age":61,"location":"Spencerboro"}},{"attributes":{"name":"Ansley Block","age":21,"location":"South Gate"}},{"attributes":{"name":"Bernice Powlowski IV","age":65,"location":"Willmouth"}},{"attributes":{"name":"Cornelius King","age":56,"location":"East Josiahton"}},{"attributes":{"name":"Mr. Cody Marvin I","age":50,"location":"East Emiliofort"}},{"attributes":{"name":"Carlos Reichert","age":23,"location":"North Meredith"}},{"attributes":{"name":"Heather Walter","age":48,"location":"Oakland"}},{"attributes":{"name":"Terry Veum","age":46,"location":"Lubbock"}},{"attributes":{"name":"Ole Ankunding","age":49,"location":"Daughertyfield"}},{"attributes":{"name":"Terrell Koelpin-Klein","age":63,"location":"Lemkeshire"}},{"attributes":{"name":"Monica Huels","age":20,"location":"East Robert"}},{"attributes":{"name":"Nasir Towne","age":24,"location":"Union City"}},{"attributes":{"name":"Martina Keebler","age":57,"location":"Marianland"}},{"attributes":{"name":"Laverne Wisoky","age":35,"location":"South Lera"}},{"attributes":{"name":"Milo Sporer","age":65,"location":"Lake Alex"}},{"attributes":{"name":"Lorene Franecki","age":49,"location":"Framishire"}},{"attributes":{"name":"Meagan Rohan","age":32,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Joann Hickle","age":20,"location":"West Audrahaven"}},{"attributes":{"name":"Laurence Rohan","age":44,"location":"Handfort"}},{"attributes":{"name":"Connie Wisozk","age":63,"location":"New Orphahaven"}},{"attributes":{"name":"Dr. Kiera Gerlach","age":71,"location":"Upland"}},{"attributes":{"name":"Mr. Joe Russel","age":24,"location":"Anabelport"}},{"attributes":{"name":"Miriam Gislason","age":29,"location":"Anissacester"}},{"attributes":{"name":"Tracy Schaefer","age":63,"location":"Fort Pricestead"}},{"attributes":{"name":"Sylvan Bogan Sr.","age":68,"location":"Escondido"}},{"attributes":{"name":"Ansel Renner","age":53,"location":"West Florida"}},{"attributes":{"name":"Chanel Bins","age":23,"location":"New Katlynn"}},{"attributes":{"name":"Ines Becker","age":56,"location":"Claudiatown"}},{"attributes":{"name":"Brendan O'Keefe","age":32,"location":"Blaine"}},{"attributes":{"name":"Stella Upton","age":57,"location":"Dooleyland"}},{"attributes":{"name":"Helga Langosh","age":18,"location":"Kyleighfield"}},{"attributes":{"name":"Zetta Heidenreich III","age":33,"location":"Octaviafort"}},{"attributes":{"name":"Veronica Walter","age":80,"location":"Lake Regan"}},{"attributes":{"name":"Mrs. Beverly Becker","age":61,"location":"Bartonstead"}},{"attributes":{"name":"Marta Gerhold","age":21,"location":"West Bonita"}},{"attributes":{"name":"Ms. Alma Langosh","age":19,"location":"Cathrynport"}},{"attributes":{"name":"Rosemary Pfannerstill","age":54,"location":"Texas City"}},{"attributes":{"name":"Jedidiah Lubowitz","age":23,"location":"Rosenbaumview"}},{"attributes":{"name":"Cory Koelpin","age":57,"location":"Fort Stephany"}},{"attributes":{"name":"Claudia Moen","age":59,"location":"Faheyworth"}},{"attributes":{"name":"Roxanne Auer","age":57,"location":"Mertzboro"}},{"attributes":{"name":"Gordon Marks","age":77,"location":"Lake Loma"}},{"attributes":{"name":"Abe Carroll","age":68,"location":"North Deangelostad"}},{"attributes":{"name":"Dr. Jacey Walsh","age":47,"location":"Florence-Graham"}},{"attributes":{"name":"Ms. Patricia Bayer","age":41,"location":"Cedar Hill"}},{"attributes":{"name":"Frank Mills","age":22,"location":"St. Cloud"}},{"attributes":{"name":"Ms. Cassie Bergstrom-Deckow","age":34,"location":"Lakeland"}},{"attributes":{"name":"Monica Tromp","age":25,"location":"West Mckennahaven"}},{"attributes":{"name":"Robin VonRueden","age":27,"location":"Conway"}},{"attributes":{"name":"Amber Klein","age":45,"location":"Levittown"}},{"attributes":{"name":"Phil Schimmel I","age":35,"location":"San Francisco"}},{"attributes":{"name":"Ewell Treutel-Champlin","age":75,"location":"Lake Makayla"}},{"attributes":{"name":"Edison Lemke","age":39,"location":"Smithstead"}},{"attributes":{"name":"Allison Bernhard","age":74,"location":"East Lesleystad"}},{"attributes":{"name":"Jeffrey McGlynn","age":71,"location":"West Vanessa"}},{"attributes":{"name":"Lucy Howe","age":73,"location":"Huelport"}},{"attributes":{"name":"Bill Kohler","age":26,"location":"Lake Veronica"}},{"attributes":{"name":"Meredith Armstrong","age":24,"location":"Aidanbury"}},{"attributes":{"name":"Lempi Wunsch","age":79,"location":"Tianafurt"}},{"attributes":{"name":"Brennon Barton","age":40,"location":"Port Ivoryfurt"}},{"attributes":{"name":"Vivian Simonis","age":68,"location":"Hudsonstad"}},{"attributes":{"name":"Mack Littel","age":69,"location":"Letacester"}},{"attributes":{"name":"Mrs. Esther Rowe","age":48,"location":"Tustin"}},{"attributes":{"name":"Mr. Cloyd Heaney","age":48,"location":"Fort Brock"}},{"attributes":{"name":"Dejah Brakus","age":68,"location":"Cummeratastad"}},{"attributes":{"name":"Ms. Nathanael Wuckert","age":64,"location":"Isabellafort"}},{"attributes":{"name":"Danny Fisher","age":23,"location":"Julienberg"}},{"attributes":{"name":"Jenna Conroy","age":52,"location":"Muellerfield"}},{"attributes":{"name":"Tasha Jenkins","age":65,"location":"Mayaguez"}},{"attributes":{"name":"Guadalupe Runte","age":25,"location":"Armandhaven"}},{"attributes":{"name":"Jerry Spinka","age":44,"location":"Lake Jett"}},{"attributes":{"name":"Cedric Schneider","age":40,"location":"North Alexandra"}},{"attributes":{"name":"Theresa Turcotte","age":25,"location":"Newton"}},{"attributes":{"name":"Florence Boyer","age":46,"location":"New Melody"}},{"attributes":{"name":"Murphy Hessel","age":52,"location":"Hamillhaven"}},{"attributes":{"name":"Florence Zemlak","age":77,"location":"Santastead"}},{"attributes":{"name":"Nona Oberbrunner","age":43,"location":"St. Clair Shores"}},{"attributes":{"name":"Jaren Baumbach","age":66,"location":"Cruzport"}},{"attributes":{"name":"Miguel Swift","age":35,"location":"Carrollton"}},{"attributes":{"name":"Dr. Shelly Greenholt","age":55,"location":"Robbiemouth"}},{"attributes":{"name":"Miss Katarina Bechtelar","age":36,"location":"New Alan"}},{"attributes":{"name":"Jazmyne Roberts","age":60,"location":"New Bedford"}},{"attributes":{"name":"Jonathan Schaefer","age":66,"location":"Orloboro"}},{"attributes":{"name":"Euna Mayer","age":29,"location":"Kshlerinfield"}},{"attributes":{"name":"Santos Koss","age":30,"location":"Port Alfordworth"}},{"attributes":{"name":"Rodolfo Hills","age":71,"location":"Jonside"}},{"attributes":{"name":"Tiffany Parker","age":53,"location":"McDermottchester"}},{"attributes":{"name":"Kaitlyn Dooley","age":50,"location":"New Xander"}},{"attributes":{"name":"Marcelle Dietrich","age":67,"location":"North Elias"}},{"attributes":{"name":"Betty Bode","age":61,"location":"Schambergerton"}},{"attributes":{"name":"Joesph Pagac","age":80,"location":"North Dorthastead"}},{"attributes":{"name":"Vida Stoltenberg-Lesch","age":19,"location":"Port Frederikbury"}},{"attributes":{"name":"Minnie Hirthe","age":64,"location":"Greenstead"}},{"attributes":{"name":"Fernando Mante II","age":60,"location":"West Jordan"}},{"attributes":{"name":"Barry Renner DDS","age":55,"location":"Mooreside"}},{"attributes":{"name":"Cora Schumm","age":47,"location":"Halvorsoncester"}},{"attributes":{"name":"Walter Kessler","age":25,"location":"Overland Park"}},{"attributes":{"name":"Angelica Roberts","age":19,"location":"Port Destini"}},{"attributes":{"name":"Lavern Mayert","age":61,"location":"West Elouiseton"}},{"attributes":{"name":"Garth Murazik","age":80,"location":"Lee's Summit"}},{"attributes":{"name":"Ada Kulas","age":53,"location":"South Antwan"}},{"attributes":{"name":"Jennie Feil","age":62,"location":"Heiditon"}},{"attributes":{"name":"Christie Jaskolski","age":79,"location":"Linabury"}},{"attributes":{"name":"Jack Kerluke","age":67,"location":"Lake Anita"}},{"attributes":{"name":"Dianna Kris","age":61,"location":"Jacobsonside"}},{"attributes":{"name":"Jameson Leuschke","age":38,"location":"South Lucasfield"}},{"attributes":{"name":"Mr. Glenn Nicolas","age":40,"location":"Country Club"}},{"attributes":{"name":"Drew McGlynn","age":78,"location":"Fort Keira"}},{"attributes":{"name":"Pam Satterfield","age":39,"location":"Sheilashire"}},{"attributes":{"name":"Larry VonRueden","age":48,"location":"South Martina"}},{"attributes":{"name":"Lucienne Kerluke","age":74,"location":"Kraigmouth"}},{"attributes":{"name":"Willard Gleichner","age":71,"location":"Gulgowskibury"}},{"attributes":{"name":"Jeannette Stanton","age":29,"location":"South Creolaberg"}},{"attributes":{"name":"Joanna Kirlin","age":66,"location":"Baileystad"}},{"attributes":{"name":"Sunny Rohan","age":48,"location":"Cheyenne"}},{"attributes":{"name":"Rosalinda Turner","age":80,"location":"Lizzieberg"}},{"attributes":{"name":"Elissa Romaguera","age":75,"location":"New Lavern"}},{"attributes":{"name":"Antonia Cummerata","age":70,"location":"Lake Krystal"}},{"attributes":{"name":"Gerson Nolan","age":41,"location":"Aufderharfort"}},{"attributes":{"name":"Glenn Crona","age":19,"location":"Watsonville"}},{"attributes":{"name":"Frederic Gutmann","age":64,"location":"Jeremyburgh"}},{"attributes":{"name":"Keshawn Miller","age":76,"location":"South Sydnee"}},{"attributes":{"name":"Angie Jaskolski","age":56,"location":"South Maryjane"}},{"attributes":{"name":"Abel Lebsack","age":39,"location":"Handworth"}},{"attributes":{"name":"Tara Kshlerin","age":40,"location":"Assuntacester"}},{"attributes":{"name":"Garland Strosin","age":65,"location":"Port Jeffereybury"}},{"attributes":{"name":"Minnie Nikolaus V","age":54,"location":"West Junior"}},{"attributes":{"name":"Estel Collins","age":46,"location":"Alvertaborough"}},{"attributes":{"name":"Cedric Jaskolski","age":28,"location":"North Zachariahmouth"}},{"attributes":{"name":"Mrs. Heidi Miller","age":34,"location":"East Gretchen"}},{"attributes":{"name":"Wendell Pollich","age":39,"location":"Daxshire"}},{"attributes":{"name":"Lora Renner","age":50,"location":"Carson City"}},{"attributes":{"name":"Dr. Gregory Reilly","age":70,"location":"Laurahaven"}},{"attributes":{"name":"Larry Bauch","age":47,"location":"Laredo"}},{"attributes":{"name":"Lynne Hammes","age":74,"location":"East Gastonport"}},{"attributes":{"name":"Stella Berge","age":31,"location":"Manteburgh"}},{"attributes":{"name":"Grady Gulgowski","age":30,"location":"South Carsonbury"}},{"attributes":{"name":"Ms. Grace Little","age":39,"location":"Ariannaview"}},{"attributes":{"name":"Al Adams","age":74,"location":"Port Verlafurt"}},{"attributes":{"name":"Carrie Schimmel","age":60,"location":"Brownburgh"}},{"attributes":{"name":"Cynthia Gorczany-Reichert","age":40,"location":"North Timmy"}},{"attributes":{"name":"Emanuel Ryan DDS","age":77,"location":"Fadelbury"}},{"attributes":{"name":"Dave Ondricka-Daugherty","age":78,"location":"Helenafield"}},{"attributes":{"name":"Danyka Lindgren","age":49,"location":"Rennerstad"}},{"attributes":{"name":"Donald Mosciski","age":49,"location":"East Jaidenside"}},{"attributes":{"name":"Angela Gibson","age":28,"location":"South Carol"}},{"attributes":{"name":"Sandrine Windler","age":40,"location":"New Meta"}},{"attributes":{"name":"Eulah Smith","age":60,"location":"Dorcasport"}},{"attributes":{"name":"Nico Russel","age":51,"location":"Poway"}},{"attributes":{"name":"Kurt Abernathy","age":36,"location":"Port Jasen"}},{"attributes":{"name":"Caden Murray","age":45,"location":"New Rupert"}},{"attributes":{"name":"Gwendolyn Zboncak","age":50,"location":"West Anahiview"}},{"attributes":{"name":"Audrey Witting","age":37,"location":"New Kaileybury"}},{"attributes":{"name":"Tim Collins","age":60,"location":"Port Adelle"}},{"attributes":{"name":"Mariano Kling","age":47,"location":"Austin"}},{"attributes":{"name":"Ms. Wilma Grady","age":55,"location":"Morissettecester"}},{"attributes":{"name":"Lucia Fay III","age":26,"location":"Utica"}},{"attributes":{"name":"Travis Bogisich","age":41,"location":"Portland"}},{"attributes":{"name":"Ricky Erdman","age":47,"location":"Schimmelhaven"}},{"attributes":{"name":"Mr. Kris Tremblay","age":37,"location":"North Haskellbury"}},{"attributes":{"name":"Clifford Block","age":22,"location":"Rutherfordbury"}},{"attributes":{"name":"Kayla Cartwright-Cremin","age":56,"location":"Lake Aniyah"}},{"attributes":{"name":"Sherri Gleichner","age":69,"location":"Joliet"}},{"attributes":{"name":"Melyna Rippin","age":77,"location":"Lafayettestead"}},{"attributes":{"name":"Constance Gorczany","age":22,"location":"New Johathanland"}},{"attributes":{"name":"Gladyce Ziemann","age":33,"location":"Burleson"}},{"attributes":{"name":"Tamara Bernier","age":66,"location":"Gladycechester"}},{"attributes":{"name":"Ada Stamm","age":53,"location":"New Raul"}},{"attributes":{"name":"Wilton Paucek","age":71,"location":"Schultzbury"}},{"attributes":{"name":"Suzanne Dickens","age":44,"location":"West Briannestad"}},{"attributes":{"name":"Robin Wisozk","age":36,"location":"Lake Sally"}},{"attributes":{"name":"Tre Jones","age":61,"location":"Amarillo"}},{"attributes":{"name":"Travis Denesik","age":23,"location":"Thielbury"}},{"attributes":{"name":"Mr. Randy Zulauf","age":21,"location":"South Claraboro"}},{"attributes":{"name":"Grayson Abbott III","age":48,"location":"Port Zechariahfort"}},{"attributes":{"name":"Kurt Jones","age":19,"location":"Catonsville"}},{"attributes":{"name":"Kevin Heller","age":27,"location":"Rexside"}},{"attributes":{"name":"Dana Schoen","age":68,"location":"West Yesseniaside"}},{"attributes":{"name":"Mr. Nelson Bartell-Gorczany DDS","age":42,"location":"Chapel Hill"}},{"attributes":{"name":"Eduardo Lesch","age":37,"location":"Rodcester"}},{"attributes":{"name":"Tina Jaskolski-Von","age":43,"location":"Christchester"}},{"attributes":{"name":"Mrs. Kristen Weissnat","age":24,"location":"Lydiaberg"}},{"attributes":{"name":"Roxanne Heller","age":39,"location":"Port Friedaworth"}},{"attributes":{"name":"Rafael Casper","age":33,"location":"Plymouth"}},{"attributes":{"name":"Jamal Rath II","age":70,"location":"West Deangelo"}},{"attributes":{"name":"Cleveland Wintheiser","age":33,"location":"University"}},{"attributes":{"name":"Ellen Lueilwitz","age":22,"location":"Russelstad"}},{"attributes":{"name":"Miss Zane Maggio","age":78,"location":"Kameronburgh"}},{"attributes":{"name":"Nancy Rutherford","age":53,"location":"West Philip"}},{"attributes":{"name":"Gust Hammes","age":61,"location":"Fort Ray"}},{"attributes":{"name":"Maryann Adams","age":32,"location":"Lake Haileyshire"}},{"attributes":{"name":"Leona Boyer","age":64,"location":"West Annabelberg"}},{"attributes":{"name":"Joesph Buckridge","age":78,"location":"East Rhea"}},{"attributes":{"name":"Wilma Heidenreich","age":77,"location":"Ritchieland"}},{"attributes":{"name":"Jean Murphy","age":55,"location":"Fridastad"}},{"attributes":{"name":"Arlene O'Reilly","age":60,"location":"New Adolphuston"}},{"attributes":{"name":"Angela Reilly","age":78,"location":"Wadeboro"}},{"attributes":{"name":"Lillian Kuvalis","age":31,"location":"Schadenfurt"}},{"attributes":{"name":"Catherine Runte","age":41,"location":"Michaelaland"}},{"attributes":{"name":"Viola Rempel","age":38,"location":"Lake Alene"}},{"attributes":{"name":"Buford Upton IV","age":27,"location":"Spinkaton"}},{"attributes":{"name":"Manley Beatty","age":23,"location":"North Tyresechester"}},{"attributes":{"name":"Dean Turner","age":70,"location":"Kentwood"}},{"attributes":{"name":"Rudolph Raynor","age":51,"location":"Lake Americofort"}},{"attributes":{"name":"Claude Ebert","age":69,"location":"South Laurianneshire"}},{"attributes":{"name":"Karley Hermann","age":41,"location":"Lockmanstad"}},{"attributes":{"name":"Mrs. Ana Mann","age":28,"location":"Feeneyborough"}},{"attributes":{"name":"Lucas Wintheiser","age":29,"location":"Julianbury"}},{"attributes":{"name":"Mr. Magnus Corkery","age":19,"location":"Costa Mesa"}},{"attributes":{"name":"Noel Walsh","age":57,"location":"North Harveychester"}},{"attributes":{"name":"Leroy Smitham III","age":22,"location":"North Payton"}},{"attributes":{"name":"Krystal Prohaska","age":54,"location":"Stantonberg"}},{"attributes":{"name":"David Hintz","age":23,"location":"Lueborough"}},{"attributes":{"name":"Francisco Nader","age":27,"location":"Thornton"}},{"attributes":{"name":"Ignacio Welch","age":60,"location":"Ralphland"}},{"attributes":{"name":"Bernie Hartmann","age":45,"location":"West Zoeyville"}},{"attributes":{"name":"Wellington Effertz","age":28,"location":"Lancaster"}},{"attributes":{"name":"Donnie Sauer","age":31,"location":"Framiberg"}},{"attributes":{"name":"Jorge Kris","age":64,"location":"Ocala"}},{"attributes":{"name":"Jeremiah Beer","age":45,"location":"Howecester"}},{"attributes":{"name":"Bruce Bode-Schulist","age":44,"location":"Port Jarret"}},{"attributes":{"name":"Frederique Bergstrom","age":37,"location":"Gutmannland"}},{"attributes":{"name":"Chris Senger","age":38,"location":"Henryfield"}},{"attributes":{"name":"Melody Wiza","age":77,"location":"Eagan"}},{"attributes":{"name":"Merle Weissnat","age":66,"location":"St. Louis Park"}},{"attributes":{"name":"Freda Rodriguez","age":46,"location":"South Ervin"}},{"attributes":{"name":"Traci Smith","age":38,"location":"Fort Genevieveview"}},{"attributes":{"name":"Danielle Franecki","age":76,"location":"Pourosfurt"}},{"attributes":{"name":"Kallie Yundt","age":39,"location":"Spokane Valley"}},{"attributes":{"name":"Harvey Jones","age":18,"location":"Lancaster"}},{"attributes":{"name":"Carmella Ortiz","age":45,"location":"South Wallaceland"}},{"attributes":{"name":"Salvatore Abbott","age":69,"location":"Rennerside"}},{"attributes":{"name":"Kailey Pacocha","age":71,"location":"Port Cedrick"}},{"attributes":{"name":"Heather Ratke-Kuhn DVM","age":31,"location":"Port Holly"}},{"attributes":{"name":"Name Yundt","age":50,"location":"Everettborough"}},{"attributes":{"name":"Ebba Bode","age":75,"location":"Fort Finnberg"}},{"attributes":{"name":"Michele Hammes","age":34,"location":"Clementinafort"}},{"attributes":{"name":"Mable Jerde","age":26,"location":"Zoiestad"}},{"attributes":{"name":"Heather Kohler","age":38,"location":"New Ferneland"}},{"attributes":{"name":"Naomi VonRueden","age":73,"location":"Port Aroncester"}},{"attributes":{"name":"Marjorie Wilderman","age":69,"location":"Jaskolskicester"}},{"attributes":{"name":"Abdullah Cormier-Larkin","age":41,"location":"Fort Brendan"}},{"attributes":{"name":"Brenna Lang","age":31,"location":"Dearborn Heights"}},{"attributes":{"name":"Yasmine Olson","age":29,"location":"Loiston"}},{"attributes":{"name":"Arne Funk","age":67,"location":"Conorland"}},{"attributes":{"name":"Dr. Marlene Witting","age":23,"location":"Rocky Mount"}},{"attributes":{"name":"Myrl O'Kon","age":36,"location":"North Hubertberg"}},{"attributes":{"name":"Miss Yolanda Rosenbaum-Fritsch","age":20,"location":"Kylerfurt"}},{"attributes":{"name":"Marjorie Rice","age":70,"location":"Travonworth"}},{"attributes":{"name":"Reginald Sanford","age":75,"location":"East Francescaworth"}},{"attributes":{"name":"Treva Renner","age":42,"location":"Lake Rosettaland"}},{"attributes":{"name":"Mr. Willard Legros","age":72,"location":"Boynton Beach"}},{"attributes":{"name":"Dee Hegmann","age":38,"location":"Revere"}},{"attributes":{"name":"Coy Farrell","age":22,"location":"Leschchester"}},{"attributes":{"name":"Juston Sipes-Lockman I","age":54,"location":"Bodemouth"}},{"attributes":{"name":"Camren Mills","age":56,"location":"North D'angelobury"}},{"attributes":{"name":"Berta Adams","age":54,"location":"West Orvalside"}},{"attributes":{"name":"Audrey O'Reilly","age":55,"location":"Lake Brendenport"}},{"attributes":{"name":"Brad Rippin","age":31,"location":"Orem"}},{"attributes":{"name":"Garry Wilderman","age":45,"location":"New Rosaworth"}},{"attributes":{"name":"Lynn Bradtke","age":19,"location":"Hammond"}},{"attributes":{"name":"Clemens Kilback","age":76,"location":"South Coltfield"}},{"attributes":{"name":"Omari Gleason","age":68,"location":"Lake Ridge"}},{"attributes":{"name":"Jody Ritchie","age":75,"location":"Hiltonburgh"}},{"attributes":{"name":"Wayne Leuschke","age":76,"location":"Stantonton"}},{"attributes":{"name":"Victor Breitenberg","age":36,"location":"North Port"}},{"attributes":{"name":"Wm White","age":38,"location":"Hackensack"}},{"attributes":{"name":"Cicero Gutmann","age":57,"location":"South Mariloustead"}},{"attributes":{"name":"Grady Trantow III","age":70,"location":"Fritschberg"}},{"attributes":{"name":"Easter Stehr","age":56,"location":"Spokane Valley"}},{"attributes":{"name":"Alma Klocko","age":78,"location":"Camrynhaven"}},{"attributes":{"name":"Ms. Francesca Zboncak","age":68,"location":"Doral"}},{"attributes":{"name":"Mildred Jones","age":78,"location":"Vista"}},{"attributes":{"name":"Violet Weimann","age":54,"location":"Fort Camrenside"}},{"attributes":{"name":"Cecelia Ortiz","age":68,"location":"Johnshaven"}},{"attributes":{"name":"Maegan Braun V","age":47,"location":"New Kurtcester"}},{"attributes":{"name":"Lila Nitzsche","age":40,"location":"West Corbinside"}},{"attributes":{"name":"Ludwig Halvorson","age":74,"location":"Fort Phoebeside"}},{"attributes":{"name":"Ford O'Connell IV","age":56,"location":"Dayton"}},{"attributes":{"name":"Miss Richard Bednar","age":60,"location":"Purdyland"}},{"attributes":{"name":"Robin Prosacco","age":80,"location":"Gerlachhaven"}},{"attributes":{"name":"Philip Fisher","age":51,"location":"South Clementina"}},{"attributes":{"name":"Kieran Hayes","age":49,"location":"Washington"}},{"attributes":{"name":"Sherri Klein","age":45,"location":"Parisianport"}},{"attributes":{"name":"Dorothy Orn","age":31,"location":"Fort Marilou"}},{"attributes":{"name":"Lloyd Wiegand","age":58,"location":"Carrollton"}},{"attributes":{"name":"Hubert Raynor","age":61,"location":"South Libbieville"}},{"attributes":{"name":"Vern Leannon","age":46,"location":"Howardview"}},{"attributes":{"name":"Scarlett Windler","age":18,"location":"Fort Marcuston"}},{"attributes":{"name":"Russ Kassulke","age":61,"location":"New Aldabury"}},{"attributes":{"name":"Ryan Jakubowski","age":47,"location":"East Robertochester"}},{"attributes":{"name":"Javier Zboncak-Howe","age":75,"location":"Fort Kaci"}},{"attributes":{"name":"Mr. Hugh Reichel","age":60,"location":"West Silasburgh"}},{"attributes":{"name":"Cody Jaskolski","age":34,"location":"Joshuaberg"}},{"attributes":{"name":"Gerardo Keeling","age":23,"location":"Dickifield"}},{"attributes":{"name":"Lance Oberbrunner Jr.","age":31,"location":"Port Berenice"}},{"attributes":{"name":"Tabitha Hahn","age":23,"location":"Elyssahaven"}},{"attributes":{"name":"Dudley Schuster","age":49,"location":"Smyrna"}},{"attributes":{"name":"Nelson Kunde","age":27,"location":"North Nyah"}},{"attributes":{"name":"Jessica Cummerata","age":54,"location":"West Devoncester"}},{"attributes":{"name":"Ms. Gayle Windler","age":62,"location":"Lake Kurtberg"}},{"attributes":{"name":"Odessa Yundt-Kreiger","age":71,"location":"Blockchester"}},{"attributes":{"name":"Tamara Wilderman","age":58,"location":"Fort Alycia"}},{"attributes":{"name":"Terence Hills","age":71,"location":"East Ted"}},{"attributes":{"name":"Claudia Hamill","age":67,"location":"Vandervortland"}},{"attributes":{"name":"Antonio Bruen","age":35,"location":"Port Hesterfurt"}},{"attributes":{"name":"Orrin Johns","age":31,"location":"Fairfield"}},{"attributes":{"name":"Eunice Sawayn","age":55,"location":"Lulashire"}},{"attributes":{"name":"Otis Rice","age":71,"location":"Lake Johnnie"}},{"attributes":{"name":"Bobbie Gerhold","age":78,"location":"Daisystead"}},{"attributes":{"name":"Marcos Stark","age":56,"location":"North Marisaton"}},{"attributes":{"name":"Mrs. Luna Osinski IV","age":28,"location":"Lomamouth"}},{"attributes":{"name":"Lindsey Ward","age":62,"location":"Schillerstead"}},{"attributes":{"name":"Alessia Leffler","age":29,"location":"Loveland"}},{"attributes":{"name":"Leigh Haley","age":29,"location":"Lake Vita"}},{"attributes":{"name":"Dr. Shanie Schulist","age":76,"location":"Dallinmouth"}},{"attributes":{"name":"Lee Schinner IV","age":35,"location":"Cormierland"}},{"attributes":{"name":"Raquel Gottlieb","age":56,"location":"North Sedricktown"}},{"attributes":{"name":"Alvin Hudson","age":49,"location":"Lodi"}},{"attributes":{"name":"Oswald Hermann","age":25,"location":"East Orange"}},{"attributes":{"name":"Spencer Rosenbaum","age":42,"location":"Jenaton"}},{"attributes":{"name":"Janie Kshlerin","age":78,"location":"Port Mosefort"}},{"attributes":{"name":"Lucinda Cassin","age":41,"location":"East Wilhelmfort"}},{"attributes":{"name":"Darryl Ledner","age":53,"location":"Albinstead"}},{"attributes":{"name":"Rickey Witting","age":22,"location":"Kokomo"}},{"attributes":{"name":"Herbert Casper","age":58,"location":"Winstonview"}},{"attributes":{"name":"Miss Ramona Carroll II","age":66,"location":"Porterville"}},{"attributes":{"name":"Orlando Dicki","age":20,"location":"Lake Francis"}},{"attributes":{"name":"Ora Windler","age":40,"location":"East Michele"}},{"attributes":{"name":"Doug Kris","age":72,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Mr. Willard Hahn PhD","age":34,"location":"Ardithville"}},{"attributes":{"name":"Mr. Major Wilderman","age":30,"location":"Hermannfort"}},{"attributes":{"name":"Jane Bradtke","age":57,"location":"East Antoinetteberg"}},{"attributes":{"name":"Elena Ward","age":40,"location":"Busterfield"}},{"attributes":{"name":"Jesse Corkery","age":35,"location":"Jaquelinside"}},{"attributes":{"name":"Paul Hills","age":71,"location":"New Hoseastead"}},{"attributes":{"name":"Wilfred Runolfsdottir","age":77,"location":"Port Reina"}},{"attributes":{"name":"Burnice MacGyver","age":72,"location":"Lake Dedrick"}},{"attributes":{"name":"Ernestine Zieme","age":25,"location":"Carterburgh"}},{"attributes":{"name":"Mr. Kerry Rath","age":37,"location":"Jaunitamouth"}},{"attributes":{"name":"Ruben Strosin I","age":66,"location":"Quintonbury"}},{"attributes":{"name":"Mr. Joel Kuhic","age":69,"location":"Blaine"}},{"attributes":{"name":"Americo Turcotte","age":34,"location":"Winnifredland"}},{"attributes":{"name":"Nina Miller","age":48,"location":"Newtonbury"}},{"attributes":{"name":"Burdette Lebsack Sr.","age":60,"location":"Parisside"}},{"attributes":{"name":"Jude Steuber","age":36,"location":"Lakinstead"}},{"attributes":{"name":"Dr. Erick Balistreri","age":67,"location":"East Tabitha"}},{"attributes":{"name":"Dr. Camren Weber","age":42,"location":"New Adellestad"}},{"attributes":{"name":"Eunice Langosh","age":60,"location":"Emilioworth"}},{"attributes":{"name":"Avery Mayer IV","age":26,"location":"Trystanstead"}},{"attributes":{"name":"Cooper Bernier","age":43,"location":"East Damoncester"}},{"attributes":{"name":"Keely Blick-Schmidt","age":20,"location":"Macon-Bibb County"}},{"attributes":{"name":"Gilberto Hammes","age":46,"location":"Aylinboro"}},{"attributes":{"name":"Kelley Sipes","age":30,"location":"Verdahaven"}},{"attributes":{"name":"Ed Orn DVM","age":66,"location":"Bergstromfurt"}},{"attributes":{"name":"Howell Crona","age":61,"location":"Lysannestead"}},{"attributes":{"name":"Rasheed Bode Jr.","age":40,"location":"Florence-Graham"}},{"attributes":{"name":"Ray Larkin","age":55,"location":"Monahanburgh"}},{"attributes":{"name":"Boyd Stokes","age":53,"location":"Jordoncester"}},{"attributes":{"name":"Maybelle O'Hara","age":51,"location":"Port Traceboro"}},{"attributes":{"name":"Yvette Hirthe","age":80,"location":"East Hortensebury"}},{"attributes":{"name":"Wilhelm Mills","age":48,"location":"Leesburg"}},{"attributes":{"name":"Willis Rippin","age":31,"location":"East Adriana"}},{"attributes":{"name":"Martha Dickens","age":70,"location":"Flatleymouth"}},{"attributes":{"name":"Jacklyn Kub","age":47,"location":"Reedberg"}},{"attributes":{"name":"Katelyn Bradtke","age":62,"location":"Lake Rethaside"}},{"attributes":{"name":"Willy Pacocha","age":64,"location":"Maggiofort"}},{"attributes":{"name":"Claudia Howell","age":35,"location":"Klingshire"}},{"attributes":{"name":"Patti Walsh","age":64,"location":"Hackettworth"}},{"attributes":{"name":"Axel Tromp","age":22,"location":"Greenview"}},{"attributes":{"name":"Muhammad Turner","age":65,"location":"Lednerworth"}},{"attributes":{"name":"Mrs. Angie Emard","age":59,"location":"Francesborough"}},{"attributes":{"name":"Eric Thiel V","age":29,"location":"Madiemouth"}},{"attributes":{"name":"Ramona Pfeffer-Klocko","age":28,"location":"North Estrella"}},{"attributes":{"name":"Brooke Goldner","age":33,"location":"Croninport"}},{"attributes":{"name":"Billie Renner","age":77,"location":"North Aryanna"}},{"attributes":{"name":"Alexandra Feil","age":42,"location":"Tulsa"}},{"attributes":{"name":"Damon Konopelski V","age":57,"location":"Ceres"}},{"attributes":{"name":"Brandi Mills","age":50,"location":"Carmel"}},{"attributes":{"name":"Danielle Waelchi","age":38,"location":"Jordonstad"}},{"attributes":{"name":"Dwight Blick","age":70,"location":"Omaha"}},{"attributes":{"name":"Charles Terry I","age":56,"location":"Novato"}},{"attributes":{"name":"Ricardo Durgan","age":21,"location":"Rubenboro"}},{"attributes":{"name":"Diamond Cronin","age":52,"location":"St. George"}},{"attributes":{"name":"Luisa Balistreri","age":30,"location":"Fort Lacyburgh"}},{"attributes":{"name":"Dante Davis","age":64,"location":"Port Vivian"}},{"attributes":{"name":"Andrea Weber","age":61,"location":"Kyraworth"}},{"attributes":{"name":"Marcel Hoeger II","age":29,"location":"New Melanymouth"}},{"attributes":{"name":"Celine O'Kon-Dach","age":46,"location":"Wilkinsonbury"}},{"attributes":{"name":"Sylvester Robel-Gibson","age":33,"location":"Ginafort"}},{"attributes":{"name":"Terrence Reilly","age":39,"location":"Cronaburgh"}},{"attributes":{"name":"Ms. Caroline Zulauf V","age":18,"location":"San Francisco"}},{"attributes":{"name":"General Orn","age":60,"location":"West Adolphusborough"}},{"attributes":{"name":"Clinton Farrell","age":39,"location":"East Llewellynton"}},{"attributes":{"name":"Essie Kuhlman","age":41,"location":"Bauchstead"}},{"attributes":{"name":"Myrna Marvin","age":62,"location":"New Jonathoncester"}},{"attributes":{"name":"Theresia Jacobi","age":61,"location":"East Ashtyn"}},{"attributes":{"name":"Bridget Miller III","age":40,"location":"Montgomery"}},{"attributes":{"name":"Randall Dickens","age":52,"location":"West Normashire"}},{"attributes":{"name":"Mr. Amani Labadie Sr.","age":50,"location":"Ritchieberg"}},{"attributes":{"name":"Celestino Stracke","age":22,"location":"Providence"}},{"attributes":{"name":"Ms. Lola Greenfelder","age":65,"location":"High Point"}},{"attributes":{"name":"Buck Schneider","age":65,"location":"Linneaborough"}},{"attributes":{"name":"Jessy DuBuque","age":24,"location":"Littleview"}},{"attributes":{"name":"Dr. Deon Schmeler","age":33,"location":"Paradise"}},{"attributes":{"name":"Franklin Hartmann","age":46,"location":"Deckowfield"}},{"attributes":{"name":"Osvaldo McDermott","age":80,"location":"Mariettafurt"}},{"attributes":{"name":"Katrina Donnelly II","age":39,"location":"San Diego"}},{"attributes":{"name":"Christy Senger","age":42,"location":"Meagantown"}},{"attributes":{"name":"Myrtice Adams-Shanahan","age":65,"location":"North Brandiberg"}},{"attributes":{"name":"Fannie Cremin","age":47,"location":"Sierra Vista"}},{"attributes":{"name":"Terrance Bins-Smitham","age":38,"location":"Halvorsonland"}},{"attributes":{"name":"Pasquale Schmeler","age":66,"location":"Kiannaside"}},{"attributes":{"name":"Caesar Heidenreich DDS","age":49,"location":"Gislasonville"}},{"attributes":{"name":"Jaime Hickle Jr.","age":79,"location":"Jerdetown"}},{"attributes":{"name":"Dolores Hirthe","age":71,"location":"Bechtelarton"}},{"attributes":{"name":"Mr. Shanny Casper DDS","age":64,"location":"San Bernardino"}},{"attributes":{"name":"Jayson Krajcik II","age":59,"location":"Freeport"}},{"attributes":{"name":"Santiago Ebert","age":25,"location":"Lawton"}},{"attributes":{"name":"Shannon Stroman","age":22,"location":"New Sally"}},{"attributes":{"name":"Jennifer Kerluke","age":61,"location":"Maximillianland"}},{"attributes":{"name":"Mercedes Connelly","age":43,"location":"Davie"}},{"attributes":{"name":"Mario Hessel","age":58,"location":"Felixside"}},{"attributes":{"name":"Kathryn Stoltenberg","age":70,"location":"North Josephine"}},{"attributes":{"name":"Mr. Felicia Rogahn","age":57,"location":"Enid"}},{"attributes":{"name":"Ernie Weissnat","age":19,"location":"Port Reyport"}},{"attributes":{"name":"Calista Boehm","age":46,"location":"West Kailey"}},{"attributes":{"name":"Vicky Morissette Jr.","age":58,"location":"Aspen Hill"}},{"attributes":{"name":"Annamae Kuhic","age":42,"location":"Sioux Falls"}},{"attributes":{"name":"Faye Schmidt","age":59,"location":"Streichstead"}},{"attributes":{"name":"Linwood Blanda","age":19,"location":"Lexington-Fayette"}},{"attributes":{"name":"Berta Batz","age":76,"location":"Hackettbury"}},{"attributes":{"name":"Norberto Armstrong I","age":38,"location":"Schuppeborough"}},{"attributes":{"name":"Kamron Purdy","age":62,"location":"Fort Chesleyport"}},{"attributes":{"name":"Johnny Rippin","age":63,"location":"East Monaborough"}},{"attributes":{"name":"Lola Block","age":65,"location":"East Percivalport"}},{"attributes":{"name":"Vickie Reinger","age":47,"location":"Belleville"}},{"attributes":{"name":"Anderson Kirlin","age":54,"location":"Boganchester"}},{"attributes":{"name":"Al Bahringer III","age":19,"location":"Kirstenside"}},{"attributes":{"name":"Kade Willms","age":63,"location":"Pollichland"}},{"attributes":{"name":"Dr. Remington Lind","age":68,"location":"Tuscaloosa"}},{"attributes":{"name":"Jamel Wunsch-Kris","age":39,"location":"Fort Allenefort"}},{"attributes":{"name":"Shanon Schaden","age":80,"location":"Baytown"}},{"attributes":{"name":"Lester Harber","age":22,"location":"Whitecester"}},{"attributes":{"name":"Willard Larson","age":21,"location":"Fritschview"}},{"attributes":{"name":"Mr. Pinkie Doyle","age":53,"location":"Lake Nayelichester"}},{"attributes":{"name":"Maria Hintz","age":28,"location":"Sanfordstead"}},{"attributes":{"name":"Terrell Cummings","age":70,"location":"Erdmanberg"}},{"attributes":{"name":"Brooke Dooley","age":18,"location":"North Amara"}},{"attributes":{"name":"Paulette Connelly","age":75,"location":"Urbanshire"}},{"attributes":{"name":"Parker Lehner","age":49,"location":"Port Lewfurt"}},{"attributes":{"name":"Nelle West","age":40,"location":"Fort Elnora"}},{"attributes":{"name":"Mr. Randolph Wiza-Carter","age":42,"location":"South Zetta"}},{"attributes":{"name":"Mrs. Kaley Bogisich","age":58,"location":"Surprise"}},{"attributes":{"name":"Aric Waters","age":37,"location":"South Timmyshire"}},{"attributes":{"name":"Hubert Robel DVM","age":43,"location":"Sioux City"}},{"attributes":{"name":"William Kertzmann","age":63,"location":"Laylabury"}},{"attributes":{"name":"Liliana Mosciski","age":40,"location":"McKenzieland"}},{"attributes":{"name":"Norwood Wilderman","age":39,"location":"Lake Keegan"}},{"attributes":{"name":"Laila Walsh","age":63,"location":"West Oraborough"}},{"attributes":{"name":"Ricky Fritsch","age":41,"location":"West Annamarie"}},{"attributes":{"name":"Fanny Ortiz","age":69,"location":"New Sierrashire"}},{"attributes":{"name":"Leticia Ortiz-Ebert","age":53,"location":"Stammhaven"}},{"attributes":{"name":"Gage Kohler","age":19,"location":"North Madelyn"}},{"attributes":{"name":"Brandi Stark","age":35,"location":"Trudieside"}},{"attributes":{"name":"Alaina Kshlerin","age":78,"location":"Sparks"}},{"attributes":{"name":"Marianne Padberg","age":76,"location":"San Ramon"}},{"attributes":{"name":"Jessie Senger","age":23,"location":"North Georgette"}},{"attributes":{"name":"Josianne Schuster","age":46,"location":"Carissafield"}},{"attributes":{"name":"Nellie Schuster","age":25,"location":"Cedar Park"}},{"attributes":{"name":"Harley Rogahn","age":24,"location":"South Vernabury"}},{"attributes":{"name":"Kaleb Reichert","age":47,"location":"Alvabury"}},{"attributes":{"name":"Darla Lang","age":48,"location":"New Kattie"}},{"attributes":{"name":"Roosevelt Balistreri","age":53,"location":"Windlerboro"}},{"attributes":{"name":"Faye Morar","age":21,"location":"Oliverchester"}},{"attributes":{"name":"John Runte","age":56,"location":"New Alfredmouth"}},{"attributes":{"name":"Mr. Travis Gutmann","age":72,"location":"Lake Isaac"}},{"attributes":{"name":"Cole Wyman","age":26,"location":"Cruickshanktown"}},{"attributes":{"name":"Jesse Kshlerin","age":75,"location":"Emilefield"}},{"attributes":{"name":"Brett Runolfsdottir","age":29,"location":"West Darrionshire"}},{"attributes":{"name":"Daphne Anderson","age":75,"location":"New Dayton"}},{"attributes":{"name":"Cordia Cole","age":43,"location":"North Keeganworth"}},{"attributes":{"name":"Ardella Quitzon II","age":49,"location":"East Heidi"}},{"attributes":{"name":"Newell Cruickshank","age":32,"location":"Kundebury"}},{"attributes":{"name":"Tiara Padberg","age":74,"location":"Myrlhaven"}},{"attributes":{"name":"Sheridan Kertzmann Jr.","age":45,"location":"Lawton"}},{"attributes":{"name":"Columbus Rodriguez","age":36,"location":"Wisokyberg"}},{"attributes":{"name":"Nikki Rutherford","age":54,"location":"New Nelsonport"}},{"attributes":{"name":"Velda Doyle","age":48,"location":"North Elishaworth"}},{"attributes":{"name":"Gretchen Hermiston","age":76,"location":"Lake Aftonland"}},{"attributes":{"name":"Dr. Keshaun Beahan","age":20,"location":"Huntsville"}},{"attributes":{"name":"Kirk Orn-McLaughlin","age":51,"location":"Gastonia"}},{"attributes":{"name":"Priscilla Bernier","age":24,"location":"North Gabriellaview"}},{"attributes":{"name":"Kristoffer Schoen","age":66,"location":"Hectorville"}},{"attributes":{"name":"Delpha Berge","age":59,"location":"Braunland"}},{"attributes":{"name":"Elisabeth Johnston","age":41,"location":"Gilroy"}},{"attributes":{"name":"Adelia Feest","age":34,"location":"Upland"}},{"attributes":{"name":"Brett Auer","age":23,"location":"Pacochaland"}},{"attributes":{"name":"Elias Smith","age":71,"location":"Giuseppeport"}},{"attributes":{"name":"Josephine Zboncak","age":71,"location":"Kyleetown"}},{"attributes":{"name":"Eudora Barrows","age":80,"location":"Pricemouth"}},{"attributes":{"name":"Kelly Cruickshank","age":71,"location":"Port Amiyafort"}},{"attributes":{"name":"Kadin Beer","age":43,"location":"South Edyth"}},{"attributes":{"name":"Karen Lubowitz II","age":31,"location":"South Amelymouth"}},{"attributes":{"name":"Marion Collier","age":40,"location":"Brayanbury"}},{"attributes":{"name":"Nat D'Amore","age":66,"location":"South Rigoberto"}},{"attributes":{"name":"Ms. Birdie Hermiston","age":29,"location":"Bossier City"}},{"attributes":{"name":"Kristi Okuneva V","age":22,"location":"Oletamouth"}},{"attributes":{"name":"Monte Heathcote","age":64,"location":"South Jeramy"}},{"attributes":{"name":"Clark Lesch","age":73,"location":"Monroe"}},{"attributes":{"name":"Irvin Collins","age":32,"location":"Antoniettaville"}},{"attributes":{"name":"Elaine Berge","age":19,"location":"O'Fallon"}},{"attributes":{"name":"Kaitlyn Johnston","age":79,"location":"Lake Willy"}},{"attributes":{"name":"Ms. Lane Padberg","age":77,"location":"Smithamboro"}},{"attributes":{"name":"Faye Connelly","age":69,"location":"West Gonzalostead"}},{"attributes":{"name":"Marcia Buckridge","age":52,"location":"Riverton"}},{"attributes":{"name":"Mr. Alfonso Farrell I","age":74,"location":"Darianaland"}},{"attributes":{"name":"Ebony Sipes-Ritchie","age":74,"location":"Fort Ismael"}},{"attributes":{"name":"Mr. Rodrick Fritsch","age":66,"location":"Buena Park"}},{"attributes":{"name":"Sydney Ferry","age":43,"location":"Lake Julieburgh"}},{"attributes":{"name":"Luke Armstrong","age":38,"location":"South Florinecester"}},{"attributes":{"name":"Mark Beer","age":47,"location":"Long Beach"}},{"attributes":{"name":"Damon Zulauf","age":30,"location":"Mariettaville"}},{"attributes":{"name":"Jodie Zboncak","age":55,"location":"Lemkeside"}},{"attributes":{"name":"Alicia Hahn","age":58,"location":"Port Joesphton"}},{"attributes":{"name":"Hollis Ondricka","age":63,"location":"Jaydenworth"}},{"attributes":{"name":"Damon Renner Sr.","age":80,"location":"West Kacie"}},{"attributes":{"name":"Aimee Witting","age":33,"location":"South Soledad"}},{"attributes":{"name":"Dr. Francis Yundt","age":27,"location":"West Julietville"}},{"attributes":{"name":"Julien Price","age":69,"location":"Gardena"}},{"attributes":{"name":"Mrs. Christelle Jones","age":66,"location":"West Jordan"}},{"attributes":{"name":"Ms. Modesta Hyatt II","age":26,"location":"Thielshire"}},{"attributes":{"name":"Randolph Deckow","age":35,"location":"Pfefferfurt"}},{"attributes":{"name":"Darrel O'Reilly","age":38,"location":"East Everette"}},{"attributes":{"name":"Mr. Jillian Aufderhar","age":66,"location":"South Dawsonstead"}},{"attributes":{"name":"Aileen White V","age":53,"location":"Crawfordton"}},{"attributes":{"name":"Laverne Keeling","age":62,"location":"East Clairview"}},{"attributes":{"name":"Henry Walker","age":49,"location":"Sheboygan"}},{"attributes":{"name":"Alba Nolan","age":70,"location":"South Rudolph"}},{"attributes":{"name":"Sam Lehner","age":41,"location":"Lake Carlos"}},{"attributes":{"name":"Gilbert Doyle","age":64,"location":"Port Hosea"}},{"attributes":{"name":"Gwendolyn Bartell","age":18,"location":"Collierview"}},{"attributes":{"name":"Zula Lind","age":40,"location":"Wesley Chapel"}},{"attributes":{"name":"Pink Schowalter-Hettinger","age":33,"location":"West Margaritastead"}},{"attributes":{"name":"Ambrose Sauer DVM","age":29,"location":"Fort Annabellchester"}},{"attributes":{"name":"Ms. Elsie Hettinger","age":58,"location":"Kaceyshire"}},{"attributes":{"name":"Melisa Franecki","age":21,"location":"Lucianofort"}},{"attributes":{"name":"Clinton Littel","age":30,"location":"Leaville"}},{"attributes":{"name":"Rene Metz","age":31,"location":"West Koreyfield"}},{"attributes":{"name":"Jeramy Grady","age":26,"location":"Charleston"}},{"attributes":{"name":"Diane Franecki Jr.","age":38,"location":"West George"}},{"attributes":{"name":"Dr. Gabriel Renner","age":46,"location":"Pietroton"}},{"attributes":{"name":"Roman Runolfsson","age":23,"location":"Myrtiechester"}},{"attributes":{"name":"Howard Flatley","age":20,"location":"Emmerichfort"}},{"attributes":{"name":"Denise Torp","age":35,"location":"Lake Myron"}},{"attributes":{"name":"Jeanette Jast","age":80,"location":"Ponce"}},{"attributes":{"name":"Patti Goyette","age":65,"location":"New Gennaroberg"}},{"attributes":{"name":"Nickolas Hackett","age":55,"location":"West Maribel"}},{"attributes":{"name":"Susie Braun","age":19,"location":"Gunnarchester"}},{"attributes":{"name":"Mrs. Colleen Franecki","age":38,"location":"Jabarishire"}},{"attributes":{"name":"Emelie Ernser","age":46,"location":"Chrisview"}},{"attributes":{"name":"Hector Jacobs","age":48,"location":"Oralworth"}},{"attributes":{"name":"Miss Violet Gibson","age":58,"location":"Lednerstead"}},{"attributes":{"name":"Sigrid Schultz","age":66,"location":"Port Enochville"}},{"attributes":{"name":"Justin Hilll","age":43,"location":"Faheyfield"}},{"attributes":{"name":"Lewis Collins","age":46,"location":"Blue Springs"}},{"attributes":{"name":"Gwen Fahey","age":30,"location":"Bentonville"}},{"attributes":{"name":"Orland Hyatt","age":30,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Noemie Leannon","age":71,"location":"Hubertburgh"}},{"attributes":{"name":"Don Hagenes","age":32,"location":"Broken Arrow"}},{"attributes":{"name":"Jessie Quigley","age":58,"location":"Isabelleland"}},{"attributes":{"name":"Adell Durgan","age":76,"location":"Port Kolby"}},{"attributes":{"name":"Cindy Tremblay","age":67,"location":"Port Anselburgh"}},{"attributes":{"name":"Kyra Schuppe","age":19,"location":"West Piper"}},{"attributes":{"name":"Danielle Cummerata","age":59,"location":"Lake Jadenhaven"}},{"attributes":{"name":"Kaylee O'Hara-Ferry","age":27,"location":"Ernestburgh"}},{"attributes":{"name":"Roger Moen","age":57,"location":"Kuhnfield"}},{"attributes":{"name":"Viola Moore","age":62,"location":"West Wadestead"}},{"attributes":{"name":"Gwendolyn Beier III","age":52,"location":"Melvinafort"}},{"attributes":{"name":"Wilfred Dicki","age":39,"location":"Eltaburgh"}},{"attributes":{"name":"Julius Veum","age":67,"location":"Hesperia"}},{"attributes":{"name":"Iva Schneider","age":41,"location":"Heathcotebury"}},{"attributes":{"name":"Layne Howell","age":22,"location":"Fort Brandynfurt"}},{"attributes":{"name":"Maverick Bosco","age":68,"location":"Dunwoody"}},{"attributes":{"name":"Paxton McCullough","age":45,"location":"Franeyton"}},{"attributes":{"name":"Oscar Batz-Kihn","age":58,"location":"Fort Seanchester"}},{"attributes":{"name":"Ms. Vivian Zemlak","age":79,"location":"North Arnold"}},{"attributes":{"name":"Glen Bogan","age":29,"location":"North Andreannecester"}},{"attributes":{"name":"Mr. Raymond Kris","age":45,"location":"Isaiboro"}},{"attributes":{"name":"Andrew Kuvalis","age":21,"location":"New Aniyahfurt"}},{"attributes":{"name":"Mr. Patience Ratke","age":72,"location":"Mannview"}},{"attributes":{"name":"Dejah Conroy","age":60,"location":"Janaefort"}},{"attributes":{"name":"Toni Langworth-Koepp","age":60,"location":"Kaleyshire"}},{"attributes":{"name":"Ayden Ondricka","age":77,"location":"Laurynland"}},{"attributes":{"name":"Cristina Beatty","age":67,"location":"East Mohammadcester"}},{"attributes":{"name":"Heber Kohler","age":18,"location":"Conroe"}},{"attributes":{"name":"Jack Collier-Lueilwitz","age":53,"location":"Breannastead"}},{"attributes":{"name":"Ms. Carrie Raynor","age":33,"location":"Khalidstad"}},{"attributes":{"name":"Lillie Anderson","age":45,"location":"Garland"}},{"attributes":{"name":"Archie Nicolas","age":30,"location":"North Onieside"}},{"attributes":{"name":"Raul Morar-Hoppe","age":37,"location":"Hazlemouth"}},{"attributes":{"name":"Courtney Johnston MD","age":32,"location":"Cydneyville"}},{"attributes":{"name":"Anthony Weber","age":49,"location":"Bashirianshire"}},{"attributes":{"name":"Jorge Senger","age":59,"location":"Lemkeshire"}},{"attributes":{"name":"Harold Schaden","age":56,"location":"Bradfordworth"}},{"attributes":{"name":"Mark Reichel","age":79,"location":"Quinncester"}},{"attributes":{"name":"Miss Andy Lynch","age":65,"location":"Vonhaven"}},{"attributes":{"name":"Elvira Bergstrom","age":76,"location":"Harrisport"}},{"attributes":{"name":"Olga Zemlak-Dicki","age":70,"location":"Kingsport"}},{"attributes":{"name":"Bridget Bode","age":62,"location":"Port Robbfurt"}},{"attributes":{"name":"Don Collins","age":70,"location":"Fargo"}},{"attributes":{"name":"Filiberto Block","age":36,"location":"Mooreport"}},{"attributes":{"name":"Alan Beier DDS","age":18,"location":"Tylerfield"}},{"attributes":{"name":"Octavia Tremblay","age":65,"location":"Wintheiserchester"}},{"attributes":{"name":"Mrs. Marcella Hartmann-O'Reilly","age":44,"location":"New Kattieview"}},{"attributes":{"name":"Terrance Cartwright","age":55,"location":"Cristchester"}},{"attributes":{"name":"Mary Orn","age":71,"location":"Ebertshire"}},{"attributes":{"name":"Lawrence Sporer","age":60,"location":"Hillsview"}},{"attributes":{"name":"Kristy Zieme","age":52,"location":"Fort Wellington"}},{"attributes":{"name":"Leslie Corwin","age":37,"location":"Phyllisfurt"}},{"attributes":{"name":"Carole Bartell PhD","age":52,"location":"Zulaufstead"}},{"attributes":{"name":"Justina Hegmann","age":62,"location":"Rialto"}},{"attributes":{"name":"Alexandre Gerhold","age":53,"location":"West Darrellview"}},{"attributes":{"name":"Dr. Colleen Simonis DDS","age":70,"location":"South Fidel"}},{"attributes":{"name":"Donny Mueller","age":63,"location":"Warren"}},{"attributes":{"name":"Myron Shanahan","age":61,"location":"South Rettafield"}},{"attributes":{"name":"Holly Dooley","age":37,"location":"Monicastead"}},{"attributes":{"name":"Dr. Stephany Spinka","age":76,"location":"New Braunfels"}},{"attributes":{"name":"America DuBuque","age":74,"location":"Jenniferfurt"}},{"attributes":{"name":"Danny Shanahan DDS","age":51,"location":"Leschchester"}},{"attributes":{"name":"Emilio Collier","age":59,"location":"North Gaston"}},{"attributes":{"name":"Charlotte Von","age":28,"location":"Irving"}},{"attributes":{"name":"Mr. Lilyan O'Hara","age":52,"location":"Dickiview"}},{"attributes":{"name":"Ms. Omer Schneider","age":71,"location":"West Brando"}},{"attributes":{"name":"Pauline Koch","age":73,"location":"Toneyhaven"}},{"attributes":{"name":"Otto Durgan-Pollich Jr.","age":24,"location":"South Seanmouth"}},{"attributes":{"name":"Grace Dooley","age":71,"location":"Lewstad"}},{"attributes":{"name":"Travis Rohan","age":55,"location":"South Kareemborough"}},{"attributes":{"name":"Mr. Tara Dietrich","age":45,"location":"East Amya"}},{"attributes":{"name":"Anna Powlowski-Heathcote","age":80,"location":"East Howell"}},{"attributes":{"name":"George Greenholt III","age":77,"location":"Keltonton"}},{"attributes":{"name":"Sam Kuhlman","age":24,"location":"West Clarkside"}},{"attributes":{"name":"Tamia Quitzon","age":72,"location":"Daytona Beach"}},{"attributes":{"name":"Tracy Hamill","age":63,"location":"Damienside"}},{"attributes":{"name":"Jasmin Hilll","age":30,"location":"Bennettside"}},{"attributes":{"name":"Steven Bernhard","age":33,"location":"Port Rasheed"}},{"attributes":{"name":"Ebba Romaguera Jr.","age":71,"location":"South Adashire"}},{"attributes":{"name":"Asia Jacobi DDS","age":58,"location":"Fort Merlin"}},{"attributes":{"name":"Benjamin Conn","age":73,"location":"Weymouth Town"}},{"attributes":{"name":"Naomi Zulauf","age":55,"location":"Lake Efrain"}},{"attributes":{"name":"Chadd Kshlerin","age":27,"location":"North Astrid"}},{"attributes":{"name":"Essie Pagac","age":39,"location":"Fort Itzel"}},{"attributes":{"name":"Sadie Wiza DDS","age":49,"location":"Millsfort"}},{"attributes":{"name":"Javier Streich","age":41,"location":"Enterprise"}},{"attributes":{"name":"Garrett Little","age":66,"location":"Sheboygan"}},{"attributes":{"name":"Kelly Kohler","age":66,"location":"Connellyville"}},{"attributes":{"name":"Durward Keebler","age":47,"location":"Streichboro"}},{"attributes":{"name":"Leanna Medhurst","age":63,"location":"Langfurt"}},{"attributes":{"name":"Ellis Fisher","age":21,"location":"Napa"}},{"attributes":{"name":"Nora Wolf I","age":38,"location":"Port Estella"}},{"attributes":{"name":"Kenneth Farrell","age":39,"location":"Kacieville"}},{"attributes":{"name":"Willie Turcotte","age":78,"location":"Lancaster"}},{"attributes":{"name":"Colten Rau","age":38,"location":"South Aaliyah"}},{"attributes":{"name":"Tiffany Leffler","age":77,"location":"Port Dangelo"}},{"attributes":{"name":"Jimmy Swaniawski","age":43,"location":"North Godfrey"}},{"attributes":{"name":"Elenora O'Conner","age":57,"location":"Kihnville"}},{"attributes":{"name":"Myra Grady","age":71,"location":"Streichworth"}},{"attributes":{"name":"Jesse Gulgowski","age":27,"location":"New Tyrelburgh"}},{"attributes":{"name":"Destin Schneider","age":38,"location":"Domenicoland"}},{"attributes":{"name":"Clark Ullrich-Gorczany","age":38,"location":"South Kennediton"}},{"attributes":{"name":"Mario Miller","age":71,"location":"North Chelsey"}},{"attributes":{"name":"Holly Greenfelder","age":22,"location":"Bartonfurt"}},{"attributes":{"name":"Leslie Cartwright","age":31,"location":"Lake Jairobury"}},{"attributes":{"name":"Jennifer Volkman","age":19,"location":"Gusikowskitown"}},{"attributes":{"name":"Jacqueline Stiedemann","age":67,"location":"West Presley"}},{"attributes":{"name":"Eulah Rogahn","age":50,"location":"Bauchfurt"}},{"attributes":{"name":"Lindsay Donnelly","age":79,"location":"Lake Travonside"}},{"attributes":{"name":"Jean Osinski","age":44,"location":"Cheyenne"}},{"attributes":{"name":"Berenice Beahan","age":19,"location":"South Nealmouth"}},{"attributes":{"name":"Dr. Leslie Upton Sr.","age":49,"location":"Champlinview"}},{"attributes":{"name":"Myron Goldner","age":60,"location":"North Ellen"}},{"attributes":{"name":"Mr. Allan McClure","age":21,"location":"Osbornefort"}},{"attributes":{"name":"Hildegard Cartwright","age":25,"location":"Shaunbury"}},{"attributes":{"name":"Mrs. Kelly Altenwerth I","age":64,"location":"Lake Queeniechester"}},{"attributes":{"name":"Alvin Schiller","age":64,"location":"Lake Thomasport"}},{"attributes":{"name":"Shawn Hilpert","age":24,"location":"South Heath"}},{"attributes":{"name":"Kamryn Weber MD","age":35,"location":"Pueblo"}},{"attributes":{"name":"Cara Gottlieb","age":36,"location":"Hiltonstead"}},{"attributes":{"name":"Paulette Powlowski","age":59,"location":"Quitzonhaven"}},{"attributes":{"name":"Kurt Bogisich","age":20,"location":"Lake Raven"}},{"attributes":{"name":"Alberta Wyman","age":37,"location":"Lake Hannaborough"}},{"attributes":{"name":"Melody Lemke","age":18,"location":"Prudencefurt"}},{"attributes":{"name":"Terry Treutel","age":54,"location":"Independence"}},{"attributes":{"name":"Marcella Ernser","age":22,"location":"Vancouver"}},{"attributes":{"name":"Priscilla Dach","age":69,"location":"Paxtonville"}},{"attributes":{"name":"Elsa Von","age":24,"location":"Port Saulshire"}},{"attributes":{"name":"Jeff Baumbach DDS","age":30,"location":"Schulisthaven"}},{"attributes":{"name":"Lila Gibson","age":41,"location":"Carrollshire"}},{"attributes":{"name":"Geraldine Cremin","age":56,"location":"New Maurineshire"}},{"attributes":{"name":"Mathew Reichert","age":31,"location":"New Chazstead"}},{"attributes":{"name":"Dr. Deion Sawayn PhD","age":28,"location":"West Brando"}},{"attributes":{"name":"Shakira Beatty","age":21,"location":"West Oral"}},{"attributes":{"name":"Miss Lauryn Bahringer","age":60,"location":"Gorczanytown"}},{"attributes":{"name":"Lucio Doyle","age":80,"location":"Aspen Hill"}},{"attributes":{"name":"Mae Bogisich","age":52,"location":"East Josh"}},{"attributes":{"name":"Monique Roberts","age":22,"location":"Lauriannefort"}},{"attributes":{"name":"Mr. Jonas Bahringer","age":46,"location":"Fayetteville"}},{"attributes":{"name":"Leta Lindgren","age":61,"location":"New Sofia"}},{"attributes":{"name":"Ms. Gertrude Gleichner","age":76,"location":"Port Amina"}},{"attributes":{"name":"Antwon Rosenbaum","age":66,"location":"West Ninastead"}},{"attributes":{"name":"Miss Cecile Durgan","age":64,"location":"North Asia"}},{"attributes":{"name":"Miss Sylvia McDermott","age":47,"location":"North Delfinaville"}},{"attributes":{"name":"Dr. Kristina Goyette","age":23,"location":"Great Falls"}},{"attributes":{"name":"Ora Prohaska","age":80,"location":"West Flaviemouth"}},{"attributes":{"name":"Loy Boyle","age":76,"location":"East Vella"}},{"attributes":{"name":"Melody Schroeder","age":65,"location":"West Zechariah"}},{"attributes":{"name":"Gwen Torp","age":67,"location":"New Gwenborough"}},{"attributes":{"name":"Valerie Cartwright","age":61,"location":"Murraycester"}},{"attributes":{"name":"Lillie Lang","age":56,"location":"Port Kyra"}},{"attributes":{"name":"Amina Fritsch","age":75,"location":"Schuliststead"}},{"attributes":{"name":"Arno Kihn","age":71,"location":"Shawnee"}},{"attributes":{"name":"Favian Shanahan","age":75,"location":"Daytonchester"}},{"attributes":{"name":"Shane Kuhn DDS","age":47,"location":"Mikeport"}},{"attributes":{"name":"Foster Hayes-Rolfson","age":21,"location":"Sipesfort"}},{"attributes":{"name":"Emilio Labadie-Glover","age":77,"location":"Cartwrightburgh"}},{"attributes":{"name":"Freda Wunsch-Okuneva","age":49,"location":"Geovannishire"}},{"attributes":{"name":"Ottilie Heaney","age":27,"location":"Drewshire"}},{"attributes":{"name":"Brooke Leffler","age":39,"location":"Brakusland"}},{"attributes":{"name":"Ida Wyman","age":54,"location":"South Zakary"}},{"attributes":{"name":"Cassandre Smith","age":63,"location":"Klockochester"}},{"attributes":{"name":"Kelley Kohler II","age":29,"location":"West Justonborough"}},{"attributes":{"name":"Dimitri Mayer","age":77,"location":"Fort Mckayla"}},{"attributes":{"name":"Ignatius Gleichner","age":77,"location":"Fort Anissa"}},{"attributes":{"name":"Lola Bayer","age":59,"location":"Jaydentown"}},{"attributes":{"name":"Taurean Macejkovic","age":25,"location":"Darrylboro"}},{"attributes":{"name":"Paul Hansen-Feil","age":54,"location":"Cronachester"}},{"attributes":{"name":"Chester Dickens","age":52,"location":"Austin"}},{"attributes":{"name":"Shaina Hoppe","age":66,"location":"Marquiseshire"}},{"attributes":{"name":"Sandra Kub","age":75,"location":"Allentown"}},{"attributes":{"name":"Cicero Cassin","age":67,"location":"Giannistead"}},{"attributes":{"name":"Juanita Lesch","age":36,"location":"Fort Leonard"}},{"attributes":{"name":"Lucy Crooks","age":58,"location":"Mortimerburgh"}},{"attributes":{"name":"Allen Casper","age":79,"location":"La Mesa"}},{"attributes":{"name":"Aaron Ruecker Sr.","age":69,"location":"Greeley"}},{"attributes":{"name":"Gwen Larkin","age":55,"location":"Grimesberg"}},{"attributes":{"name":"Nick Pouros","age":80,"location":"South Millie"}},{"attributes":{"name":"Korbin Littel","age":49,"location":"Dunwoody"}},{"attributes":{"name":"Sandy Crooks","age":51,"location":"East Griffin"}},{"attributes":{"name":"Sheldon Bogisich","age":26,"location":"Dietrichburgh"}},{"attributes":{"name":"Ruben Hammes","age":18,"location":"Rhiannahaven"}},{"attributes":{"name":"Wendell Bailey-Cronin DVM","age":77,"location":"Lake Anjaliport"}},{"attributes":{"name":"Brando Connelly","age":25,"location":"East Teresabury"}},{"attributes":{"name":"Larry Waelchi","age":65,"location":"Lednerburgh"}},{"attributes":{"name":"Kate Gerhold","age":75,"location":"Hermistoncester"}},{"attributes":{"name":"Cassandra Mann","age":78,"location":"Grimesfield"}},{"attributes":{"name":"Lucy Barrows","age":26,"location":"Zariafort"}},{"attributes":{"name":"Ms. Justus Wyman","age":31,"location":"Chesterfield"}},{"attributes":{"name":"Felix Skiles","age":30,"location":"Omaha"}},{"attributes":{"name":"Carole Parker","age":27,"location":"Walkerboro"}},{"attributes":{"name":"Mr. Garry Robel Sr.","age":57,"location":"Somerville"}},{"attributes":{"name":"Breana Mayert","age":29,"location":"Baileyville"}},{"attributes":{"name":"Miss Delta Torp","age":36,"location":"Lebsackhaven"}},{"attributes":{"name":"Ronald Carroll","age":53,"location":"North Chelsiehaven"}},{"attributes":{"name":"Lester Koss","age":61,"location":"St. Louis"}},{"attributes":{"name":"Lizeth Tillman DDS","age":52,"location":"Port Ninafort"}},{"attributes":{"name":"Pierre Kris Jr.","age":26,"location":"Normal"}},{"attributes":{"name":"Gilberto Fahey","age":44,"location":"Crystalport"}},{"attributes":{"name":"Jared Bruen PhD","age":76,"location":"Devinborough"}},{"attributes":{"name":"Luis Toy","age":72,"location":"Jakubowskiton"}},{"attributes":{"name":"Verna Ullrich","age":25,"location":"Lake Forest"}},{"attributes":{"name":"Bailee Cronin","age":43,"location":"Tallahassee"}},{"attributes":{"name":"Breana Hauck-O'Conner","age":66,"location":"Joplin"}},{"attributes":{"name":"Phyllis Kihn DVM","age":61,"location":"South Sylvanmouth"}},{"attributes":{"name":"Leo Schinner Jr.","age":44,"location":"North Freedastead"}},{"attributes":{"name":"Domenick Crona","age":51,"location":"Arvidtown"}},{"attributes":{"name":"Annie Schulist","age":27,"location":"Hellerton"}},{"attributes":{"name":"Miss Connie Heller","age":45,"location":"Downey"}},{"attributes":{"name":"Jason Turner","age":33,"location":"Gleichnerbury"}},{"attributes":{"name":"Bennett Turcotte DVM","age":19,"location":"Fort Edwinacester"}},{"attributes":{"name":"German Kassulke","age":64,"location":"Kettering"}},{"attributes":{"name":"Wesley Kuvalis","age":27,"location":"New Matildeland"}},{"attributes":{"name":"Dr. Charlene Hodkiewicz Sr.","age":68,"location":"Portland"}},{"attributes":{"name":"Payton Russel MD","age":64,"location":"South Vida"}},{"attributes":{"name":"Bobby Dare DDS","age":70,"location":"Schambergerburgh"}},{"attributes":{"name":"Mr. Eula Aufderhar-Pollich","age":62,"location":"North Ona"}},{"attributes":{"name":"Dr. Kevin Ruecker","age":62,"location":"Lexusmouth"}},{"attributes":{"name":"Ms. Elena Ankunding","age":28,"location":"Santa Fe"}},{"attributes":{"name":"Florian Lang","age":19,"location":"North Alexandrostad"}},{"attributes":{"name":"Dwayne Lakin","age":22,"location":"Corkeryview"}},{"attributes":{"name":"Debbie Morar","age":63,"location":"New Keaton"}},{"attributes":{"name":"Stella Carter","age":74,"location":"Lake Freddie"}},{"attributes":{"name":"Heloise Mayert IV","age":75,"location":"Marcusborough"}},{"attributes":{"name":"Percy O'Reilly Jr.","age":74,"location":"Chesleyland"}},{"attributes":{"name":"Yasmeen Lakin","age":38,"location":"New Santa"}},{"attributes":{"name":"Stuart Conn DVM","age":25,"location":"Lawrence"}},{"attributes":{"name":"Neal Schmeler","age":23,"location":"Haltom City"}},{"attributes":{"name":"Mr. Warren O'Conner","age":78,"location":"Edmond"}},{"attributes":{"name":"Jackie Bergstrom","age":51,"location":"North Bridget"}},{"attributes":{"name":"Jasmine Sawayn","age":75,"location":"West Brucechester"}},{"attributes":{"name":"Dr. Allan Kshlerin","age":56,"location":"Minneapolis"}},{"attributes":{"name":"Peggie Bogan DDS","age":44,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Paula Kilback","age":63,"location":"Adolfoborough"}},{"attributes":{"name":"Amos Gorczany","age":68,"location":"East Clotildechester"}},{"attributes":{"name":"Emile Schumm","age":27,"location":"South Carafurt"}},{"attributes":{"name":"Dr. Leilani Metz","age":79,"location":"Binsshire"}},{"attributes":{"name":"Tess Jakubowski","age":75,"location":"Nashville-Davidson"}},{"attributes":{"name":"Herbert Denesik","age":60,"location":"Maurinefield"}},{"attributes":{"name":"Taya Collins","age":51,"location":"Shawnbury"}},{"attributes":{"name":"Katrine Carroll","age":67,"location":"New Roselyn"}},{"attributes":{"name":"Dr. Mariam Cartwright","age":53,"location":"Floridacester"}},{"attributes":{"name":"Braden Hoppe","age":77,"location":"Huelsland"}},{"attributes":{"name":"Celestino Will","age":46,"location":"Conroyview"}},{"attributes":{"name":"Kenny Schaefer","age":31,"location":"Leemouth"}},{"attributes":{"name":"Debra Wintheiser","age":76,"location":"Baldwin Park"}},{"attributes":{"name":"Delta Rowe I","age":66,"location":"Schadenmouth"}},{"attributes":{"name":"Ms. Jeanne Simonis","age":53,"location":"Lake Salvadormouth"}},{"attributes":{"name":"Sim Gibson","age":35,"location":"Lompoc"}},{"attributes":{"name":"Sammy Witting","age":73,"location":"West Gerhardchester"}},{"attributes":{"name":"Hortense White","age":71,"location":"Edmond"}},{"attributes":{"name":"Sean Schumm","age":79,"location":"Elroyberg"}},{"attributes":{"name":"Tom Wolf","age":26,"location":"North Tianafort"}},{"attributes":{"name":"Arthur Kulas-Collins","age":24,"location":"Poway"}},{"attributes":{"name":"Modesta Gutkowski","age":73,"location":"Mentor"}},{"attributes":{"name":"Doug Mann DVM","age":45,"location":"Port Daronstead"}},{"attributes":{"name":"Corbin Langosh","age":76,"location":"North Dimitri"}},{"attributes":{"name":"Dr. Joan Hermann","age":63,"location":"Arielchester"}},{"attributes":{"name":"Tyree Yundt-Steuber","age":34,"location":"Lake Lucile"}},{"attributes":{"name":"Randal Kirlin","age":47,"location":"Fort Nevastad"}},{"attributes":{"name":"Ms. Carroll Hoeger","age":37,"location":"South Arnomouth"}},{"attributes":{"name":"Mr. Corey Strosin","age":19,"location":"Colton"}},{"attributes":{"name":"Josephine Prohaska","age":75,"location":"Hesperia"}},{"attributes":{"name":"Blair Auer III","age":58,"location":"North Sheldonfort"}},{"attributes":{"name":"Lowell Yundt","age":42,"location":"Pfannerstillstead"}},{"attributes":{"name":"Ebony Stoltenberg","age":71,"location":"New Jarrettfort"}},{"attributes":{"name":"Jackie Heaney","age":78,"location":"Dominicland"}},{"attributes":{"name":"Melyssa Anderson","age":78,"location":"South Rebekah"}},{"attributes":{"name":"Ana Armstrong","age":23,"location":"North Alainastead"}},{"attributes":{"name":"Janice Gislason","age":22,"location":"Lake Benjamin"}},{"attributes":{"name":"Nathan Predovic","age":70,"location":"Fredericchester"}},{"attributes":{"name":"Ray Mertz","age":65,"location":"Davis"}},{"attributes":{"name":"Deion Pacocha","age":41,"location":"New Wilfredton"}},{"attributes":{"name":"Andres Prohaska","age":49,"location":"D'Amoreshire"}},{"attributes":{"name":"Miss Alycia Lang","age":27,"location":"Fort Gerhard"}},{"attributes":{"name":"Willis Johnston","age":80,"location":"Ramiroville"}},{"attributes":{"name":"Mrs. Grady Jones","age":66,"location":"West Emiefurt"}},{"attributes":{"name":"Adrienne Kessler","age":28,"location":"Delphaton"}},{"attributes":{"name":"Amie Quigley","age":75,"location":"New Gretchenport"}},{"attributes":{"name":"Lorenzo Purdy","age":29,"location":"Hettingerfield"}},{"attributes":{"name":"Katherine Shanahan","age":77,"location":"Fort Dortha"}},{"attributes":{"name":"Ann Schoen","age":79,"location":"Carmichael"}},{"attributes":{"name":"Corey Kub","age":21,"location":"South Aileenberg"}},{"attributes":{"name":"Dr. Nicolas Homenick","age":50,"location":"Corkeryshire"}},{"attributes":{"name":"Isaac Tromp Sr.","age":49,"location":"Helgabury"}},{"attributes":{"name":"Cierra Parisian","age":24,"location":"Maricopa"}},{"attributes":{"name":"Odell Dickinson","age":27,"location":"Porterville"}},{"attributes":{"name":"Wellington Macejkovic","age":60,"location":"Maritzastead"}},{"attributes":{"name":"Mrs. Delores Gerhold","age":72,"location":"South Hill"}},{"attributes":{"name":"Milo Sauer-Conroy","age":39,"location":"Fort Heathview"}},{"attributes":{"name":"Dana Thompson","age":35,"location":"East Mariahfort"}},{"attributes":{"name":"Karen Cartwright DVM","age":59,"location":"West Saigecester"}},{"attributes":{"name":"Dr. Kara Morar","age":60,"location":"Hillaryboro"}},{"attributes":{"name":"River Nader-Hahn","age":63,"location":"Joyceville"}},{"attributes":{"name":"Ethel Krajcik","age":80,"location":"New Gardner"}},{"attributes":{"name":"Noemi O'Hara","age":79,"location":"Hipolitofurt"}},{"attributes":{"name":"Jonas Wyman","age":26,"location":"Ontario"}},{"attributes":{"name":"Andy Torphy","age":39,"location":"Fort Joycefort"}},{"attributes":{"name":"Andrew Adams","age":75,"location":"Maudfort"}},{"attributes":{"name":"Kirk Homenick","age":30,"location":"Hettingerland"}},{"attributes":{"name":"Jimmie Wilderman","age":58,"location":"Sophiaboro"}},{"attributes":{"name":"Craig Goodwin","age":20,"location":"New Archborough"}},{"attributes":{"name":"Raul Weber-Bogisich","age":65,"location":"North Beaumouth"}},{"attributes":{"name":"Clay Hirthe IV","age":18,"location":"Weberfort"}},{"attributes":{"name":"Kyler Dickens","age":61,"location":"Tampa"}},{"attributes":{"name":"Vicky Stroman II","age":69,"location":"Rutherfordland"}},{"attributes":{"name":"Demario Oberbrunner","age":29,"location":"Louiestad"}},{"attributes":{"name":"Luciano Hoeger","age":71,"location":"South Aureliachester"}},{"attributes":{"name":"Sally Rempel-Altenwerth Sr.","age":36,"location":"Budview"}},{"attributes":{"name":"Doyle Ortiz","age":22,"location":"Redmond"}},{"attributes":{"name":"Wesley Gibson","age":32,"location":"Mosesport"}},{"attributes":{"name":"Sharon Veum","age":56,"location":"Emeliaside"}},{"attributes":{"name":"Hadley Carter PhD","age":50,"location":"Tustin"}},{"attributes":{"name":"Deborah Wyman","age":80,"location":"New Marielletown"}},{"attributes":{"name":"Susie Murazik","age":36,"location":"Elissaport"}},{"attributes":{"name":"Joshua Rutherford DVM","age":59,"location":"New Anne"}},{"attributes":{"name":"Nelda Jenkins","age":72,"location":"New Woodrow"}},{"attributes":{"name":"Ms. Destinee Bahringer","age":29,"location":"St. Petersburg"}},{"attributes":{"name":"Emily Kassulke","age":60,"location":"Port Jayce"}},{"attributes":{"name":"Mr. Benny Satterfield-Wunsch","age":70,"location":"O'Haraberg"}},{"attributes":{"name":"Kennedy McCullough","age":79,"location":"Lake Lethaburgh"}},{"attributes":{"name":"Austin Hansen","age":29,"location":"West Douglasmouth"}},{"attributes":{"name":"Jolie Swift","age":71,"location":"Palmdale"}},{"attributes":{"name":"Antonia Baumbach","age":76,"location":"Austin"}},{"attributes":{"name":"Barbara Mann","age":20,"location":"Meridian"}},{"attributes":{"name":"Arlene Sporer V","age":50,"location":"New Alainafield"}},{"attributes":{"name":"Jasmin Lubowitz","age":41,"location":"Port Meredith"}},{"attributes":{"name":"Anya Rohan-Hegmann","age":66,"location":"Fort Mactown"}},{"attributes":{"name":"Dominic Johnson","age":70,"location":"Antelope"}},{"attributes":{"name":"Ismael Macejkovic I","age":70,"location":"Roweboro"}},{"attributes":{"name":"Jeffrey Langworth","age":61,"location":"Colton"}},{"attributes":{"name":"Opal Kuhn","age":76,"location":"South Summerworth"}},{"attributes":{"name":"Jaylan Rowe","age":70,"location":"Rosemead"}},{"attributes":{"name":"Eunice Stokes","age":25,"location":"Spencerland"}},{"attributes":{"name":"Mrs. Nick Dooley-Vandervort","age":62,"location":"Midland"}},{"attributes":{"name":"Georgia Bradtke","age":80,"location":"Hubertchester"}},{"attributes":{"name":"Jarrod Kassulke","age":59,"location":"Lauryhaven"}},{"attributes":{"name":"Tom Hackett","age":32,"location":"Mayerville"}},{"attributes":{"name":"Ms. Jana Kuhn","age":49,"location":"Lake Samsonmouth"}},{"attributes":{"name":"Bethany Buckridge","age":76,"location":"North Hester"}},{"attributes":{"name":"Brendan Yost","age":75,"location":"North Amaliaville"}},{"attributes":{"name":"Estell Macejkovic","age":60,"location":"Malden"}},{"attributes":{"name":"Ida Stokes-Lockman","age":24,"location":"New Brandotown"}},{"attributes":{"name":"Mr. Nellie Schultz III","age":37,"location":"Port Lowell"}},{"attributes":{"name":"Clementina Toy","age":41,"location":"South Mariannatown"}},{"attributes":{"name":"Syble Cronin","age":42,"location":"Lake Bethanyville"}},{"attributes":{"name":"Lavonne Corwin","age":80,"location":"Vladimirstead"}},{"attributes":{"name":"Sergio Thiel","age":55,"location":"Sawaynfield"}},{"attributes":{"name":"Colton Larson","age":60,"location":"Gradyborough"}},{"attributes":{"name":"Heather Williamson II","age":73,"location":"Madelynview"}},{"attributes":{"name":"Felicia Stroman","age":31,"location":"East Katelinbury"}},{"attributes":{"name":"Miss Cristina Heathcote","age":58,"location":"East Triston"}},{"attributes":{"name":"Winona Hegmann","age":50,"location":"East Nikki"}},{"attributes":{"name":"Eula Fisher","age":71,"location":"Wyoming"}},{"attributes":{"name":"Lucia Predovic","age":27,"location":"Gibsonbury"}},{"attributes":{"name":"Eva Glover","age":36,"location":"Lake Elouise"}},{"attributes":{"name":"Russell Blanda","age":20,"location":"Irving"}},{"attributes":{"name":"Casper Nikolaus","age":59,"location":"Sanfordstead"}},{"attributes":{"name":"Ethel Boyer","age":74,"location":"Shaniyaborough"}},{"attributes":{"name":"Macey Koelpin","age":71,"location":"New Noah"}},{"attributes":{"name":"Bennie Effertz","age":28,"location":"East Shanel"}},{"attributes":{"name":"Evan Murray","age":69,"location":"Port Kailee"}},{"attributes":{"name":"Alysha Feeney","age":37,"location":"New Yasminetown"}},{"attributes":{"name":"Caroline Mitchell","age":25,"location":"Effertzville"}},{"attributes":{"name":"Troy Ankunding","age":68,"location":"Denesikfort"}},{"attributes":{"name":"Tad Koss","age":61,"location":"New Obieton"}},{"attributes":{"name":"Halle Greenholt","age":57,"location":"Guycester"}},{"attributes":{"name":"Pierre Vandervort","age":35,"location":"Windlerburgh"}},{"attributes":{"name":"Miss Juana Tromp","age":25,"location":"Vilmafort"}},{"attributes":{"name":"Kim Beer","age":53,"location":"Belleville"}},{"attributes":{"name":"Hailee Blanda-Bailey","age":77,"location":"Lake Isaimouth"}},{"attributes":{"name":"Johnnie Daniel","age":47,"location":"Fort Abeland"}},{"attributes":{"name":"Tony Kris-McDermott I","age":44,"location":"Grand Prairie"}},{"attributes":{"name":"Miss Nannie Romaguera","age":79,"location":"Macon-Bibb County"}},{"attributes":{"name":"Lucille Pfannerstill","age":52,"location":"Coltonview"}},{"attributes":{"name":"Ezekiel Botsford","age":64,"location":"New Vivianchester"}},{"attributes":{"name":"Mr. Willie Kuvalis","age":69,"location":"East Ellsworth"}},{"attributes":{"name":"Queenie Effertz","age":28,"location":"North April"}},{"attributes":{"name":"Toni Cassin","age":34,"location":"Green Bay"}},{"attributes":{"name":"Scott Tremblay","age":34,"location":"Lake Daron"}},{"attributes":{"name":"Eusebio Walter IV","age":63,"location":"East Macy"}},{"attributes":{"name":"Nadine Langworth","age":62,"location":"Wehnerstad"}},{"attributes":{"name":"Jocelyn Schulist","age":35,"location":"Sioux Falls"}},{"attributes":{"name":"Velma Harber","age":74,"location":"West Jace"}},{"attributes":{"name":"Alfredo Lowe","age":71,"location":"North Naomimouth"}},{"attributes":{"name":"Jackie Bayer","age":48,"location":"Meganebury"}},{"attributes":{"name":"Erika Beahan PhD","age":38,"location":"Lake Vadashire"}},{"attributes":{"name":"Lorene Koss","age":54,"location":"Edina"}},{"attributes":{"name":"Jacey Greenfelder","age":47,"location":"Dundalk"}},{"attributes":{"name":"Mr. Frances Zulauf IV","age":61,"location":"Port Clemmieport"}},{"attributes":{"name":"Aubrey Kilback","age":79,"location":"Leonoraland"}},{"attributes":{"name":"Judy Waelchi","age":32,"location":"North Angeloworth"}},{"attributes":{"name":"Christopher Farrell","age":27,"location":"Milford"}},{"attributes":{"name":"Judd Hyatt","age":31,"location":"Merlberg"}},{"attributes":{"name":"Carmen MacGyver","age":74,"location":"Fort Lisaville"}},{"attributes":{"name":"Alden Thiel V","age":78,"location":"Wehnerhaven"}},{"attributes":{"name":"Jan Zulauf","age":33,"location":"New Robertoburgh"}},{"attributes":{"name":"Arnold Jones","age":23,"location":"Malachistead"}},{"attributes":{"name":"Jimmie Bartell","age":73,"location":"Dameonburgh"}},{"attributes":{"name":"Rubie Senger","age":53,"location":"Veumfield"}},{"attributes":{"name":"Dominic Schmitt DDS","age":32,"location":"Ocala"}},{"attributes":{"name":"Sophia Hickle","age":52,"location":"Prosaccostead"}},{"attributes":{"name":"Mr. Tyler Goyette","age":55,"location":"South Tamaraton"}},{"attributes":{"name":"Alfred Hudson","age":30,"location":"New Niko"}},{"attributes":{"name":"Jamar Littel","age":35,"location":"Kertzmannbury"}},{"attributes":{"name":"Laura Wolff","age":31,"location":"Huelsboro"}},{"attributes":{"name":"Sadye Klocko-Murphy","age":66,"location":"Port Roma"}},{"attributes":{"name":"Rod Rau","age":57,"location":"Goldnershire"}},{"attributes":{"name":"Asha West","age":27,"location":"Barryfort"}},{"attributes":{"name":"Ms. Amber Dibbert III","age":19,"location":"Port Bartholome"}},{"attributes":{"name":"Audrey Heidenreich","age":21,"location":"New Reuben"}},{"attributes":{"name":"Belinda Davis","age":42,"location":"Fort Lexusfort"}},{"attributes":{"name":"Tyler Welch","age":45,"location":"Sipesshire"}},{"attributes":{"name":"Velda Terry","age":70,"location":"Darylberg"}},{"attributes":{"name":"Jan Stoltenberg","age":53,"location":"Lindgrenton"}},{"attributes":{"name":"Dennis Ratke","age":33,"location":"West Alexysside"}},{"attributes":{"name":"Milo Mayert","age":28,"location":"Lindgrenport"}},{"attributes":{"name":"Josephine Bosco","age":24,"location":"Port Kellie"}},{"attributes":{"name":"Mrs. Lance Purdy","age":51,"location":"Erickport"}},{"attributes":{"name":"Audreanne Langosh","age":72,"location":"Lake Henri"}},{"attributes":{"name":"Dr. Rita Altenwerth","age":30,"location":"Paterson"}},{"attributes":{"name":"Lloyd Parisian","age":45,"location":"Boscobury"}},{"attributes":{"name":"Lowell O'Kon Jr.","age":40,"location":"South Delilahburgh"}},{"attributes":{"name":"Lindsey Gerlach","age":44,"location":"Fort Pierre"}},{"attributes":{"name":"Miss Gilberto Daniel","age":78,"location":"Chattanooga"}},{"attributes":{"name":"James Osinski","age":40,"location":"Ariannastad"}},{"attributes":{"name":"Sarah Wilkinson","age":58,"location":"San Luis Obispo"}},{"attributes":{"name":"Glenda Ebert","age":28,"location":"Dublin"}},{"attributes":{"name":"Gayle Reichert","age":40,"location":"Pollichton"}},{"attributes":{"name":"Lacy Bergstrom Sr.","age":72,"location":"Port Lionel"}},{"attributes":{"name":"Olaf Mertz","age":27,"location":"New Chelseabury"}},{"attributes":{"name":"Mrs. Cindy Rice","age":26,"location":"Traceyborough"}},{"attributes":{"name":"Dr. Elias Borer-Russel","age":65,"location":"Port Branson"}},{"attributes":{"name":"Alan Medhurst DVM","age":62,"location":"North Michelle"}},{"attributes":{"name":"Ginger Dicki","age":40,"location":"West Sheilaside"}},{"attributes":{"name":"Tim Conn","age":50,"location":"West Doylestad"}},{"attributes":{"name":"Genevieve Hintz","age":66,"location":"New Carminefield"}},{"attributes":{"name":"Devante Herman","age":65,"location":"Fort Theo"}},{"attributes":{"name":"Miss Ora Kunze","age":66,"location":"Fort Liam"}},{"attributes":{"name":"Anthony Nicolas","age":43,"location":"Cormierbury"}},{"attributes":{"name":"Alvis Herzog","age":50,"location":"Mount Prospect"}},{"attributes":{"name":"Joseph Willms Sr.","age":80,"location":"West Miller"}},{"attributes":{"name":"Roxanne Sporer","age":36,"location":"Tigard"}},{"attributes":{"name":"Kaia Casper","age":63,"location":"New Jacyntheville"}},{"attributes":{"name":"Robin Wyman DDS","age":68,"location":"Port Colemanside"}},{"attributes":{"name":"Ollie Jones","age":72,"location":"Pomona"}},{"attributes":{"name":"Dr. Kayla Torphy","age":50,"location":"Daphneechester"}},{"attributes":{"name":"Terence Johns","age":46,"location":"Gayleburgh"}},{"attributes":{"name":"Johnson Christiansen","age":72,"location":"Brennaburgh"}},{"attributes":{"name":"Jody Gusikowski","age":45,"location":"Hirthechester"}},{"attributes":{"name":"Bridgette Swift PhD","age":75,"location":"San Angelo"}},{"attributes":{"name":"Elsa Toy Sr.","age":48,"location":"West Kody"}},{"attributes":{"name":"Meggie Bruen-Marquardt II","age":50,"location":"Sanfordhaven"}},{"attributes":{"name":"Narciso Reinger","age":49,"location":"Kiannaside"}},{"attributes":{"name":"Vesta Ritchie","age":50,"location":"Lindtown"}},{"attributes":{"name":"Melvina Effertz","age":45,"location":"Considineport"}},{"attributes":{"name":"Calvin Rice","age":67,"location":"Port Lavonne"}},{"attributes":{"name":"Craig Schroeder-Ruecker DVM","age":41,"location":"Lake Sallychester"}},{"attributes":{"name":"Casey Cummings","age":51,"location":"Edberg"}},{"attributes":{"name":"Bob Schamberger","age":39,"location":"Lake Shannonberg"}},{"attributes":{"name":"Cory Sanford-Hermiston","age":52,"location":"Fort Khalilcester"}},{"attributes":{"name":"Dr. Eulalia Wolff","age":24,"location":"Ondrickaborough"}},{"attributes":{"name":"Hilda Hettinger","age":34,"location":"Jarretland"}},{"attributes":{"name":"Nadine Carter","age":18,"location":"Ezraton"}},{"attributes":{"name":"Delfina Kuhlman","age":79,"location":"South Antonio"}},{"attributes":{"name":"Helga Balistreri","age":72,"location":"Fort Scottietown"}},{"attributes":{"name":"Bernice Bahringer-Weissnat","age":52,"location":"Champlinfort"}},{"attributes":{"name":"Reymundo Klocko","age":54,"location":"West Catalinaside"}},{"attributes":{"name":"Paula Swift","age":30,"location":"Kalamazoo"}},{"attributes":{"name":"Miss Margaret Dach","age":53,"location":"Lake Antwontown"}},{"attributes":{"name":"Freda Boehm","age":65,"location":"East Alfred"}},{"attributes":{"name":"Mike Wisozk PhD","age":61,"location":"South Sydney"}},{"attributes":{"name":"Camilla Kassulke","age":64,"location":"South Gabrielleboro"}},{"attributes":{"name":"Keanu Larson","age":52,"location":"Kuvalischester"}},{"attributes":{"name":"Peter Rogahn","age":25,"location":"Gardena"}},{"attributes":{"name":"Sanford Littel-Thiel","age":52,"location":"Scottieburgh"}},{"attributes":{"name":"Boyd Walsh-Lakin","age":72,"location":"Jonatanworth"}},{"attributes":{"name":"Marsha Davis","age":75,"location":"New Patsybury"}},{"attributes":{"name":"Deven Berge IV","age":42,"location":"Lefflerborough"}},{"attributes":{"name":"Dolly Streich PhD","age":66,"location":"Jessycaworth"}},{"attributes":{"name":"Evan Ryan","age":63,"location":"Lake Emelyburgh"}},{"attributes":{"name":"Marty Von-Runolfsdottir","age":36,"location":"Boulder"}},{"attributes":{"name":"Jerrold Hilpert","age":55,"location":"Ornburgh"}},{"attributes":{"name":"Bernard Grant","age":29,"location":"Cheyenne"}},{"attributes":{"name":"Maria Reilly","age":44,"location":"Rodgerburgh"}},{"attributes":{"name":"Mohamed Thompson","age":68,"location":"Schmidtworth"}},{"attributes":{"name":"Ada Huels","age":21,"location":"Burnsville"}},{"attributes":{"name":"Mr. Kamille Purdy Sr.","age":34,"location":"Rohanburgh"}},{"attributes":{"name":"Chauncey Heidenreich","age":35,"location":"Nathanland"}},{"attributes":{"name":"Charlie Walter","age":40,"location":"Myrnaton"}},{"attributes":{"name":"Sheridan McLaughlin","age":36,"location":"North Amiyaberg"}},{"attributes":{"name":"Belle Kiehn V","age":53,"location":"Kundestead"}},{"attributes":{"name":"Theodora Von","age":32,"location":"Port Luigi"}},{"attributes":{"name":"Malika Lakin-Turcotte","age":58,"location":"Watersmouth"}},{"attributes":{"name":"Marcos Senger DDS","age":34,"location":"North Michealfield"}},{"attributes":{"name":"Tess Kunde","age":80,"location":"Dearborn"}},{"attributes":{"name":"Christophe Steuber","age":35,"location":"Celestinestead"}},{"attributes":{"name":"Vickie Heidenreich III","age":63,"location":"West Jared"}},{"attributes":{"name":"Roy Windler","age":52,"location":"El Cajon"}},{"attributes":{"name":"Larissa Glover Jr.","age":52,"location":"Davisstad"}},{"attributes":{"name":"Shaniya Morissette","age":72,"location":"North Rasheedbury"}},{"attributes":{"name":"Mr. Evans Gibson","age":33,"location":"Reichertland"}},{"attributes":{"name":"Shannon Rath","age":56,"location":"East Lurlinetown"}},{"attributes":{"name":"Ardella Ziemann","age":19,"location":"South Keara"}},{"attributes":{"name":"Orie Johnston","age":59,"location":"Schultzhaven"}},{"attributes":{"name":"Sammy Weimann","age":59,"location":"Clifton"}},{"attributes":{"name":"Dr. Colin Gutkowski","age":53,"location":"Fort Alisaberg"}},{"attributes":{"name":"Jana Conn","age":53,"location":"Ryantown"}},{"attributes":{"name":"Kevin Stoltenberg","age":70,"location":"Hilo"}},{"attributes":{"name":"Dejon Larson","age":45,"location":"Irondequoit"}},{"attributes":{"name":"Mr. Andre Von","age":66,"location":"South Axelmouth"}},{"attributes":{"name":"Elijah Herman","age":65,"location":"Port Lunafield"}},{"attributes":{"name":"Carmen Roob MD","age":24,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Jeramy Block Sr.","age":63,"location":"Fort Joey"}},{"attributes":{"name":"Jenny Heller","age":80,"location":"East Webster"}},{"attributes":{"name":"Bartholome Sanford","age":44,"location":"Parkertown"}},{"attributes":{"name":"Sherri Kuhlman","age":64,"location":"Fort Orval"}},{"attributes":{"name":"Rory Champlin","age":65,"location":"Town 'n' Country"}},{"attributes":{"name":"Mr. Oren Champlin MD","age":49,"location":"Jarredstead"}},{"attributes":{"name":"Ariane Wilderman","age":78,"location":"North Aileen"}},{"attributes":{"name":"Doug Cummerata","age":77,"location":"Windlerburgh"}},{"attributes":{"name":"Zackary Reilly","age":69,"location":"Konopelskistead"}},{"attributes":{"name":"Warren Lynch","age":79,"location":"Doral"}},{"attributes":{"name":"Danial Zulauf","age":64,"location":"North Daphney"}},{"attributes":{"name":"Rachael Windler","age":35,"location":"Kossfield"}},{"attributes":{"name":"Ethel Littel","age":77,"location":"Lake Floyd"}},{"attributes":{"name":"Cathy Pfannerstill","age":69,"location":"Urbana"}},{"attributes":{"name":"Opal Hackett Jr.","age":34,"location":"North Kendall"}},{"attributes":{"name":"Mr. Markus Rodriguez II","age":31,"location":"San Diego"}},{"attributes":{"name":"Justine Wisoky","age":47,"location":"Hegmanntown"}},{"attributes":{"name":"Luke Bartoletti","age":70,"location":"West Maryhaven"}},{"attributes":{"name":"Rowena Hammes","age":48,"location":"Alexaside"}},{"attributes":{"name":"Debbie Hessel II","age":32,"location":"East Jeanette"}},{"attributes":{"name":"Sidney Hoppe-Davis","age":60,"location":"Runteberg"}},{"attributes":{"name":"Cathy Koelpin","age":51,"location":"East Hillaryfield"}},{"attributes":{"name":"Roderick Sporer","age":29,"location":"New Constancefurt"}},{"attributes":{"name":"Miss Jeanette Feil","age":34,"location":"Lake Boyd"}},{"attributes":{"name":"Mrs. Leon Bradtke","age":66,"location":"New Deloresfield"}},{"attributes":{"name":"Nick Langworth","age":54,"location":"New Hillardport"}},{"attributes":{"name":"Miles Dooley","age":78,"location":"Fort Bulahtown"}},{"attributes":{"name":"Ms. Elsa Kozey Sr.","age":55,"location":"West Zaria"}},{"attributes":{"name":"Jairo Connelly","age":51,"location":"Skilesfield"}},{"attributes":{"name":"Krista Wiza","age":73,"location":"South Jaimeburgh"}},{"attributes":{"name":"Megan Kutch","age":34,"location":"East Lyda"}},{"attributes":{"name":"Mckenzie Witting","age":73,"location":"Daltonfurt"}},{"attributes":{"name":"Samantha Hand","age":29,"location":"Francescoborough"}},{"attributes":{"name":"Faith Mueller","age":72,"location":"Carrollton"}},{"attributes":{"name":"Bruce Lubowitz-Stroman","age":77,"location":"Medford"}},{"attributes":{"name":"Leroy Stamm","age":79,"location":"Port Eliasland"}},{"attributes":{"name":"Greg Oberbrunner","age":51,"location":"Hortenseburgh"}},{"attributes":{"name":"Miranda Schmeler","age":43,"location":"Manchester"}},{"attributes":{"name":"Todd Dietrich","age":60,"location":"Larkinmouth"}},{"attributes":{"name":"Annie Goyette Jr.","age":69,"location":"Peggieville"}},{"attributes":{"name":"Wilbert Stanton","age":18,"location":"Lake Leonorfield"}},{"attributes":{"name":"Zander Lakin","age":78,"location":"Quitzoncester"}},{"attributes":{"name":"Darian Collins","age":74,"location":"South Lew"}},{"attributes":{"name":"Mrs. Halie Rodriguez-Breitenberg DVM","age":50,"location":"West Kristopherburgh"}},{"attributes":{"name":"Gwen Koch","age":79,"location":"North Doviemouth"}},{"attributes":{"name":"Homer Wunsch","age":57,"location":"Douglasberg"}},{"attributes":{"name":"Freeda Kirlin","age":40,"location":"East Maymie"}},{"attributes":{"name":"Kayla Langworth","age":77,"location":"Klockostad"}},{"attributes":{"name":"Marshall Huel","age":36,"location":"East Gino"}},{"attributes":{"name":"Nella Franecki-Harris","age":60,"location":"Dwightfurt"}},{"attributes":{"name":"Neil Towne","age":42,"location":"Leannonchester"}},{"attributes":{"name":"Annette Mann Sr.","age":32,"location":"Lauderhill"}},{"attributes":{"name":"Stefan Bechtelar","age":74,"location":"Prohaskaside"}},{"attributes":{"name":"Chelsey Runte","age":77,"location":"North Dasia"}},{"attributes":{"name":"Maurice Bradtke","age":80,"location":"Dallasboro"}},{"attributes":{"name":"Vaughn Adams","age":53,"location":"Indio"}},{"attributes":{"name":"Lillian Conn","age":35,"location":"Modesto"}},{"attributes":{"name":"Grady Friesen III","age":39,"location":"West Chasity"}},{"attributes":{"name":"Dr. Adriana Dach","age":65,"location":"Chancefurt"}},{"attributes":{"name":"Drew Romaguera","age":37,"location":"East Freddy"}},{"attributes":{"name":"Dr. Brandt Champlin","age":77,"location":"Kesslerland"}},{"attributes":{"name":"Troy Kuhic","age":26,"location":"Port Mittie"}},{"attributes":{"name":"Claude Price","age":57,"location":"Ratkeberg"}},{"attributes":{"name":"Levi Marvin","age":71,"location":"North Clarissa"}},{"attributes":{"name":"Donnie Bernier II","age":58,"location":"Hodkiewiczside"}},{"attributes":{"name":"Mr. Roman Hyatt DDS","age":63,"location":"Thornton"}},{"attributes":{"name":"Gerardo Bernhard","age":61,"location":"North Charleston"}},{"attributes":{"name":"Michael Schroeder","age":67,"location":"Vidalville"}},{"attributes":{"name":"Leon Tromp","age":24,"location":"Prohaskaberg"}},{"attributes":{"name":"Cecil Dietrich","age":57,"location":"Damianberg"}},{"attributes":{"name":"Domingo Runolfsson I","age":47,"location":"Kareembury"}},{"attributes":{"name":"Rachael Bernhard","age":43,"location":"Schadenstead"}},{"attributes":{"name":"Jarvis Crooks","age":19,"location":"Watersbury"}},{"attributes":{"name":"Ada Armstrong","age":61,"location":"South Emile"}},{"attributes":{"name":"Lela Rice","age":78,"location":"Rosellaton"}},{"attributes":{"name":"Avery Marvin","age":42,"location":"North Adafurt"}},{"attributes":{"name":"Euna Lang","age":30,"location":"Brookline"}},{"attributes":{"name":"Gladys Tromp","age":46,"location":"Lawsonbury"}},{"attributes":{"name":"Derrick Fisher-Stiedemann","age":69,"location":"Johnsonworth"}},{"attributes":{"name":"Gina Weber II","age":77,"location":"Las Cruces"}},{"attributes":{"name":"Sophie Barrows","age":27,"location":"Lake Giovannyborough"}},{"attributes":{"name":"Jessie Schinner","age":45,"location":"Downers Grove"}},{"attributes":{"name":"Mr. Adelbert Treutel","age":26,"location":"Washington"}},{"attributes":{"name":"Dr. Ebony Block","age":80,"location":"Port Jeramie"}},{"attributes":{"name":"Dr. Sadye Bayer II","age":29,"location":"Shannaside"}},{"attributes":{"name":"Krystal Cummings","age":43,"location":"Spring"}},{"attributes":{"name":"Geoffrey Glover V","age":69,"location":"South Lavina"}},{"attributes":{"name":"Rose Howe-Casper","age":26,"location":"East Louie"}},{"attributes":{"name":"Paul Pfannerstill","age":27,"location":"South Erika"}},{"attributes":{"name":"Henry Hermann","age":49,"location":"Monahanworth"}},{"attributes":{"name":"Ms. Caroline Mayer","age":40,"location":"Paterson"}},{"attributes":{"name":"Steven Trantow","age":78,"location":"Smithmouth"}},{"attributes":{"name":"Paul Raynor","age":70,"location":"Idellchester"}},{"attributes":{"name":"Angelica Willms-Yost PhD","age":23,"location":"Lake Colten"}},{"attributes":{"name":"Teri Kuhlman-Monahan","age":35,"location":"Providence"}},{"attributes":{"name":"Ms. Mona Kunze","age":70,"location":"New Dillan"}},{"attributes":{"name":"Gerhard Osinski","age":45,"location":"South Pat"}},{"attributes":{"name":"Bradford Doyle","age":22,"location":"Pricestad"}},{"attributes":{"name":"Dr. Daron Jast","age":30,"location":"Fort Raefield"}},{"attributes":{"name":"Ms. Louise Frami","age":77,"location":"Pacochabury"}},{"attributes":{"name":"Grace Upton","age":75,"location":"Port Lourdes"}},{"attributes":{"name":"Adrienne Friesen DDS","age":23,"location":"Gislasonfield"}},{"attributes":{"name":"Ruth Kuhn-Jast","age":33,"location":"Omaha"}},{"attributes":{"name":"Porter Grady","age":56,"location":"Richland"}},{"attributes":{"name":"Sage Walsh","age":35,"location":"Lake Luisstead"}},{"attributes":{"name":"Brenna Reichel","age":39,"location":"Reichertmouth"}},{"attributes":{"name":"Brannon Miller","age":56,"location":"San Tan Valley"}},{"attributes":{"name":"Erik O'Connell","age":75,"location":"Albuquerque"}},{"attributes":{"name":"Sandra Terry","age":28,"location":"East Kailyn"}},{"attributes":{"name":"Courtney Davis","age":74,"location":"Cleveview"}},{"attributes":{"name":"Ramiro Hayes","age":77,"location":"Port Claude"}},{"attributes":{"name":"Elias Hane","age":79,"location":"West Lucius"}},{"attributes":{"name":"Vera Casper V","age":58,"location":"Jakubowskimouth"}},{"attributes":{"name":"Laron Jast","age":24,"location":"South Elysemouth"}},{"attributes":{"name":"Abelardo Bradtke","age":36,"location":"Castro Valley"}},{"attributes":{"name":"Breanna Larkin","age":52,"location":"Santa Fe"}},{"attributes":{"name":"Wallace Stiedemann","age":60,"location":"Boscobury"}},{"attributes":{"name":"Keeley Heathcote","age":39,"location":"Fort Peytonworth"}},{"attributes":{"name":"Virginia Powlowski","age":33,"location":"Darrinberg"}},{"attributes":{"name":"Kathryn White","age":78,"location":"Beerview"}},{"attributes":{"name":"Mr. Billy Mitchell","age":74,"location":"Lemketon"}},{"attributes":{"name":"Ross Grady","age":61,"location":"Madiehaven"}},{"attributes":{"name":"Toby Stiedemann","age":40,"location":"Leannberg"}},{"attributes":{"name":"Eugene Beahan","age":49,"location":"Westonburgh"}},{"attributes":{"name":"Jacob Stark","age":57,"location":"New Freedaworth"}},{"attributes":{"name":"Catherine Jerde","age":41,"location":"Carson City"}},{"attributes":{"name":"Mafalda Mraz","age":76,"location":"Conroyfort"}},{"attributes":{"name":"Dianne O'Keefe III","age":67,"location":"Nehamouth"}},{"attributes":{"name":"Andrea Murray","age":52,"location":"Fort Domingotown"}},{"attributes":{"name":"Loma Johnson","age":61,"location":"Abnerstad"}},{"attributes":{"name":"Mona Lockman","age":26,"location":"Bustershire"}},{"attributes":{"name":"Matteo Murray","age":31,"location":"South Hollieside"}},{"attributes":{"name":"Delia Cremin","age":39,"location":"DuBuqueboro"}},{"attributes":{"name":"Manuel Frami","age":34,"location":"Langoshton"}},{"attributes":{"name":"Earlene White","age":72,"location":"Lehi"}},{"attributes":{"name":"Miss Katie O'Reilly","age":79,"location":"Fort Sheldon"}},{"attributes":{"name":"Ruby Lynch","age":63,"location":"Amarillo"}},{"attributes":{"name":"Blaise Osinski","age":66,"location":"Diamond Bar"}},{"attributes":{"name":"Ardith Cronin","age":25,"location":"Wehnerboro"}},{"attributes":{"name":"Adam Emmerich","age":26,"location":"Mattieworth"}},{"attributes":{"name":"Irving Kunde","age":21,"location":"Eulaliahaven"}},{"attributes":{"name":"Rocky Barton","age":58,"location":"North Velva"}},{"attributes":{"name":"Mr. Emmie McKenzie","age":44,"location":"Cambridge"}},{"attributes":{"name":"Eula Pfeffer","age":62,"location":"Natashastad"}},{"attributes":{"name":"Hershel Mayert","age":25,"location":"East Arnoldoberg"}},{"attributes":{"name":"Myrtle Walter","age":24,"location":"Fort Jaedenside"}},{"attributes":{"name":"Marcus Leffler","age":70,"location":"New Robynview"}},{"attributes":{"name":"Hattie Hettinger","age":38,"location":"Harlingen"}},{"attributes":{"name":"Lyle Hegmann","age":25,"location":"Sengertown"}},{"attributes":{"name":"Tiffany Grant","age":60,"location":"Fort Dillonboro"}},{"attributes":{"name":"Gino McDermott I","age":72,"location":"Parkerbury"}},{"attributes":{"name":"Kellie Shields","age":38,"location":"Cranston"}},{"attributes":{"name":"Kevin McClure","age":61,"location":"Jeraldfort"}},{"attributes":{"name":"Addison Kertzmann","age":48,"location":"Donnellyboro"}},{"attributes":{"name":"Trevor Rowe","age":58,"location":"Bartolettistead"}},{"attributes":{"name":"Vicky Ullrich","age":18,"location":"North Ernesto"}},{"attributes":{"name":"Brycen Treutel","age":49,"location":"Port Armandville"}},{"attributes":{"name":"Al Keeling","age":43,"location":"East Maraworth"}},{"attributes":{"name":"Humberto Schmidt","age":46,"location":"Bernierton"}},{"attributes":{"name":"Carmine Witting","age":46,"location":"Cristinaport"}},{"attributes":{"name":"Esperanza Lebsack","age":51,"location":"Schinnerchester"}},{"attributes":{"name":"Mr. Damon O'Conner","age":19,"location":"East Sheldonport"}},{"attributes":{"name":"Seamus Gerhold","age":60,"location":"South Marian"}},{"attributes":{"name":"Ruthe Lueilwitz","age":61,"location":"Port Anya"}},{"attributes":{"name":"Courtney Lehner","age":38,"location":"San Jose"}},{"attributes":{"name":"Mr. Vincent Brakus","age":25,"location":"North Bernitaburgh"}},{"attributes":{"name":"Samuel Towne","age":62,"location":"New Ernaboro"}},{"attributes":{"name":"Lorenzo Hirthe","age":24,"location":"Port Orange"}},{"attributes":{"name":"Mervin Marks","age":59,"location":"Hoppefort"}},{"attributes":{"name":"Henrietta Dickinson IV","age":31,"location":"South Janis"}},{"attributes":{"name":"Florine Kling","age":77,"location":"East Geoffrey"}},{"attributes":{"name":"Darren Dietrich","age":38,"location":"Westminster"}},{"attributes":{"name":"Viola Armstrong PhD","age":61,"location":"Casa Grande"}},{"attributes":{"name":"Tasha Ward","age":63,"location":"Gutmannport"}},{"attributes":{"name":"Kennith Wolff","age":66,"location":"Thurmanfort"}},{"attributes":{"name":"Erica Kuhlman","age":18,"location":"Oakland"}},{"attributes":{"name":"Mario Brakus","age":43,"location":"Cotyshire"}},{"attributes":{"name":"Marcia McCullough","age":66,"location":"Fort Lily"}},{"attributes":{"name":"Izabella Cronin","age":80,"location":"Dejuanfield"}},{"attributes":{"name":"Rudolph Stehr","age":68,"location":"New Estherstad"}},{"attributes":{"name":"Phyllis Morissette","age":57,"location":"Sebastiancester"}},{"attributes":{"name":"Dereck Wolf","age":40,"location":"Wilkinsonboro"}},{"attributes":{"name":"Mr. Nicolas Crooks","age":62,"location":"Kreigerport"}},{"attributes":{"name":"Sara Stiedemann II","age":46,"location":"Coachella"}},{"attributes":{"name":"Nelson Gislason","age":77,"location":"Napa"}},{"attributes":{"name":"Gwen McClure","age":43,"location":"San Marcos"}},{"attributes":{"name":"Jayden Schumm","age":18,"location":"North Kathleen"}},{"attributes":{"name":"Whitney Towne PhD","age":46,"location":"Aloha"}},{"attributes":{"name":"Charlene Glover","age":55,"location":"Greenhaven"}},{"attributes":{"name":"Dr. Matt Schuster","age":27,"location":"Novato"}},{"attributes":{"name":"Sherry Bruen","age":80,"location":"Lake Erna"}},{"attributes":{"name":"Jaron Grimes","age":28,"location":"Port Tremayne"}},{"attributes":{"name":"Alfonso Hansen","age":20,"location":"Miami"}},{"attributes":{"name":"Sammy Schmidt Sr.","age":44,"location":"North Norriston"}},{"attributes":{"name":"Jerald McDermott DDS","age":48,"location":"New Mathiasshire"}},{"attributes":{"name":"Angelita Wiza","age":80,"location":"Everett"}},{"attributes":{"name":"Mrs. Rosalie Cruickshank","age":31,"location":"Hyattchester"}},{"attributes":{"name":"Miss Laura Kertzmann","age":79,"location":"Felicitastad"}},{"attributes":{"name":"Johnnie Kuhn","age":70,"location":"Hammesfield"}},{"attributes":{"name":"Rosalie Wisoky","age":58,"location":"Langboro"}},{"attributes":{"name":"Annette Carter","age":41,"location":"Laceyfield"}},{"attributes":{"name":"Jan Effertz","age":20,"location":"Keltonmouth"}},{"attributes":{"name":"Dr. Robin Runolfsdottir","age":73,"location":"Nehafurt"}},{"attributes":{"name":"Alexander Wunsch","age":64,"location":"Fort Luellacester"}},{"attributes":{"name":"Dr. Brenna Dare","age":47,"location":"Turnerland"}},{"attributes":{"name":"Miss Diego Heidenreich","age":50,"location":"Fort Tyrel"}},{"attributes":{"name":"Theron Kub","age":71,"location":"Bodestad"}},{"attributes":{"name":"Hannah Daniel","age":79,"location":"East Mafalda"}},{"attributes":{"name":"Miss Lillie Fisher","age":36,"location":"South Eveline"}},{"attributes":{"name":"Dave Kihn","age":60,"location":"West Dahlia"}},{"attributes":{"name":"Dr. Guy Roob DDS","age":40,"location":"Harrisfort"}},{"attributes":{"name":"Rachael Pacocha","age":65,"location":"Jersey City"}},{"attributes":{"name":"Brett Wilderman","age":56,"location":"Kuhncester"}},{"attributes":{"name":"Arjun Marquardt","age":23,"location":"Bernardochester"}},{"attributes":{"name":"Jan Schmidt","age":47,"location":"Hattiesburg"}},{"attributes":{"name":"Anthony Murray","age":69,"location":"Port Leonardocester"}},{"attributes":{"name":"Dr. Pearlie Spencer","age":72,"location":"Port Olin"}},{"attributes":{"name":"Rose Hand","age":45,"location":"Hermanstead"}},{"attributes":{"name":"Billy Ferry","age":43,"location":"South Ford"}},{"attributes":{"name":"Dean Hamill I","age":23,"location":"West Rahsaan"}},{"attributes":{"name":"Timmy Yost II","age":46,"location":"Fargo"}},{"attributes":{"name":"Kathryn Bruen","age":40,"location":"Kayceestead"}},{"attributes":{"name":"Dr. Noble Huels","age":74,"location":"Friesenchester"}},{"attributes":{"name":"Annie White DDS","age":28,"location":"Alafaya"}},{"attributes":{"name":"Chandler Murazik","age":71,"location":"Kendrickside"}},{"attributes":{"name":"Brandi Volkman","age":35,"location":"Jonesboro"}},{"attributes":{"name":"Dr. Ollie Ondricka","age":80,"location":"West Noreneville"}},{"attributes":{"name":"Marshall Durgan","age":28,"location":"Brookline"}},{"attributes":{"name":"Opal Gusikowski-Haag","age":26,"location":"Lubowitzview"}},{"attributes":{"name":"Russell McClure","age":19,"location":"Port Silas"}},{"attributes":{"name":"Alfredo Paucek","age":67,"location":"North Melbaton"}},{"attributes":{"name":"Naomi Huel","age":41,"location":"Christophestead"}},{"attributes":{"name":"Chris Schoen Sr.","age":44,"location":"Lefflerstead"}},{"attributes":{"name":"Vera Hammes","age":42,"location":"Lake Hallieland"}},{"attributes":{"name":"Iris Kertzmann","age":57,"location":"Nolanshire"}},{"attributes":{"name":"Hiram Schuster","age":29,"location":"Southaven"}},{"attributes":{"name":"Guadalupe Crooks","age":46,"location":"East Carol"}},{"attributes":{"name":"Aisha Barrows","age":22,"location":"Hermistoncester"}},{"attributes":{"name":"Jesse Heathcote DDS","age":45,"location":"East Macmouth"}},{"attributes":{"name":"Gerardo Glover","age":26,"location":"Boganville"}},{"attributes":{"name":"Vivian Maggio","age":23,"location":"Rutherfordview"}},{"attributes":{"name":"Jamie Marvin","age":29,"location":"West Dustyburgh"}},{"attributes":{"name":"Elyssa Konopelski","age":56,"location":"East Nettiehaven"}},{"attributes":{"name":"Guadalupe Mraz","age":66,"location":"Bryonville"}},{"attributes":{"name":"Sylvester Hermiston","age":58,"location":"Blancaworth"}},{"attributes":{"name":"Bessie Kassulke Jr.","age":78,"location":"Jeffersonville"}},{"attributes":{"name":"Fannie Rath","age":43,"location":"Port Diegochester"}},{"attributes":{"name":"Mrs. Neal Konopelski","age":58,"location":"Fort Ferne"}},{"attributes":{"name":"Emerald Botsford","age":59,"location":"McCulloughberg"}},{"attributes":{"name":"Rowan Bins","age":61,"location":"Caldwell"}},{"attributes":{"name":"Laurianne Paucek","age":29,"location":"New Donnellchester"}},{"attributes":{"name":"Jaron Daugherty","age":60,"location":"Visalia"}},{"attributes":{"name":"Shannon Johnson","age":41,"location":"Fort Norastad"}},{"attributes":{"name":"Dr. Terrance Brekke","age":18,"location":"Thompsonchester"}},{"attributes":{"name":"Willis Stark-O'Keefe","age":68,"location":"Sporershire"}},{"attributes":{"name":"Adrian Torp","age":21,"location":"Dibbertmouth"}},{"attributes":{"name":"Charlene Jast","age":29,"location":"Okunevaton"}},{"attributes":{"name":"Yasmine Mohr","age":44,"location":"Pueblo"}},{"attributes":{"name":"Rick Douglas","age":79,"location":"Lynnside"}},{"attributes":{"name":"Mr. Glen Krajcik Jr.","age":41,"location":"New Eddiefurt"}},{"attributes":{"name":"Ryan Romaguera","age":78,"location":"Lake Aniyaville"}},{"attributes":{"name":"Vincent Metz","age":48,"location":"Kamronworth"}},{"attributes":{"name":"Guillermo Leannon","age":42,"location":"Armanichester"}},{"attributes":{"name":"Mr. Tyrone Mayer-Block","age":69,"location":"Alfstead"}},{"attributes":{"name":"Madelyn Lehner","age":31,"location":"Mafaldaville"}},{"attributes":{"name":"Morton Wisoky","age":68,"location":"South Leopold"}},{"attributes":{"name":"Lorena Wilkinson","age":55,"location":"Ottocester"}},{"attributes":{"name":"Caroline Waters","age":74,"location":"Desireeburgh"}},{"attributes":{"name":"Dawn Tromp","age":31,"location":"Deliachester"}},{"attributes":{"name":"Justin Shanahan","age":61,"location":"Sauerstad"}},{"attributes":{"name":"Sheryl Kuphal Jr.","age":71,"location":"Sheboygan"}},{"attributes":{"name":"Dr. Robb Wehner","age":28,"location":"Reno"}},{"attributes":{"name":"Tiana Green","age":19,"location":"Feestshire"}},{"attributes":{"name":"Jenny Veum","age":59,"location":"Schaeferville"}},{"attributes":{"name":"Beverly Steuber","age":39,"location":"New Sebastian"}},{"attributes":{"name":"Dane Dibbert","age":22,"location":"Bridgeport"}},{"attributes":{"name":"Asa Fay","age":65,"location":"Langoshworth"}},{"attributes":{"name":"Santiago Shields","age":65,"location":"Robelcester"}},{"attributes":{"name":"Alanis Funk","age":64,"location":"Biloxi"}},{"attributes":{"name":"Dominick Farrell","age":18,"location":"Bellstead"}},{"attributes":{"name":"Ibrahim Hansen","age":64,"location":"North Ozella"}},{"attributes":{"name":"Lorene Gleason","age":78,"location":"Oranhaven"}},{"attributes":{"name":"Mr. Mona Schumm","age":72,"location":"New Brigitte"}},{"attributes":{"name":"Hank Armstrong DDS","age":64,"location":"East Yasmineport"}},{"attributes":{"name":"Ramiro Dicki","age":70,"location":"Pontiac"}},{"attributes":{"name":"Kenton Runte","age":43,"location":"Hoytworth"}},{"attributes":{"name":"Jason Gusikowski","age":26,"location":"Mafaldashire"}},{"attributes":{"name":"Mrs. Jorge Konopelski","age":31,"location":"Mckaylaland"}},{"attributes":{"name":"Jonathon Rau","age":76,"location":"Fort Seth"}},{"attributes":{"name":"Mathew Mills","age":38,"location":"Blaine"}},{"attributes":{"name":"Buddy Maggio IV","age":77,"location":"Daijaport"}},{"attributes":{"name":"Judge Schuster","age":24,"location":"Waco"}},{"attributes":{"name":"Cedric Paucek Jr.","age":47,"location":"Schowalterport"}},{"attributes":{"name":"Bernice Raynor","age":38,"location":"South Jerrold"}},{"attributes":{"name":"Cassie Kilback","age":76,"location":"Savannah"}},{"attributes":{"name":"Mr. Carol Prohaska","age":24,"location":"Kerlukeberg"}},{"attributes":{"name":"Daphne Ruecker","age":34,"location":"Bogisichstad"}},{"attributes":{"name":"Garret Hickle","age":23,"location":"Omaha"}},{"attributes":{"name":"Caroline Schneider Sr.","age":44,"location":"Sarasota"}},{"attributes":{"name":"Freda Feil III","age":71,"location":"Kacifield"}},{"attributes":{"name":"Clara Will DVM","age":73,"location":"Ankundingport"}},{"attributes":{"name":"Orville Emard I","age":77,"location":"Adamsfurt"}},{"attributes":{"name":"Miss Juanita Medhurst","age":21,"location":"Madelineburgh"}},{"attributes":{"name":"Jackson Roberts-O'Reilly","age":60,"location":"Ankeny"}},{"attributes":{"name":"Dr. Julio Hartmann IV","age":22,"location":"Lake Jaidencester"}},{"attributes":{"name":"Nelda Klocko","age":72,"location":"Ponce"}},{"attributes":{"name":"Jonathan Mayert V","age":80,"location":"Cedrickworth"}},{"attributes":{"name":"Molly Baumbach","age":80,"location":"Moorestead"}},{"attributes":{"name":"Myrtle Veum","age":79,"location":"Austentown"}},{"attributes":{"name":"Craig Boyle","age":23,"location":"Jarretstad"}},{"attributes":{"name":"Shane McCullough","age":70,"location":"Chesapeake"}},{"attributes":{"name":"Robin O'Keefe","age":30,"location":"Bothell"}},{"attributes":{"name":"Reyes Leffler","age":54,"location":"Sydneyport"}},{"attributes":{"name":"Ed Labadie","age":42,"location":"Laceyland"}},{"attributes":{"name":"Jayne Bernier","age":58,"location":"Pamelaboro"}},{"attributes":{"name":"Dariana O'Hara","age":71,"location":"Klingborough"}},{"attributes":{"name":"Yazmin Feest","age":75,"location":"Konopelskiburgh"}},{"attributes":{"name":"Ian Kuhlman","age":31,"location":"Catalina Foothills"}},{"attributes":{"name":"Mindy Bernier","age":41,"location":"Lake Aliyah"}},{"attributes":{"name":"Allen Waelchi","age":76,"location":"Gerlachtown"}},{"attributes":{"name":"Bernadette Bayer","age":66,"location":"Raynorborough"}},{"attributes":{"name":"Flora Upton","age":45,"location":"Monserratetown"}},{"attributes":{"name":"Savion Jacobs","age":23,"location":"Russellbury"}},{"attributes":{"name":"Guillermo Powlowski","age":79,"location":"West Lambert"}},{"attributes":{"name":"Tiana Farrell","age":23,"location":"North Esperanzaview"}},{"attributes":{"name":"Mrs. Shelia Windler","age":28,"location":"Corona"}},{"attributes":{"name":"Billy Feeney","age":22,"location":"Pinkfort"}},{"attributes":{"name":"Zella Kuvalis","age":58,"location":"Port Brandon"}},{"attributes":{"name":"Paul Nader","age":25,"location":"Lorain"}},{"attributes":{"name":"Ms. Destany Schimmel DDS","age":28,"location":"East Jaidaport"}},{"attributes":{"name":"Mr. Alvin Bernhard","age":24,"location":"Edwardfurt"}},{"attributes":{"name":"Kian Kub","age":69,"location":"Cartershire"}},{"attributes":{"name":"Darryl Fahey","age":64,"location":"Darrelshire"}},{"attributes":{"name":"Karianne Lubowitz","age":77,"location":"Koelpinhaven"}},{"attributes":{"name":"Dr. Kieran Vandervort","age":78,"location":"Kingsport"}},{"attributes":{"name":"Lisandro Harber","age":53,"location":"North Clare"}},{"attributes":{"name":"Ocie Brown","age":79,"location":"Fort Magali"}},{"attributes":{"name":"Ruby Monahan","age":30,"location":"Peterfort"}},{"attributes":{"name":"Grace Kunze","age":68,"location":"Fort Wayne"}},{"attributes":{"name":"Dr. Armando Little","age":44,"location":"Fort Abelburgh"}},{"attributes":{"name":"Norman Kilback","age":37,"location":"North Fredyside"}},{"attributes":{"name":"Troy McCullough","age":26,"location":"Alysontown"}},{"attributes":{"name":"Beverly Ritchie","age":59,"location":"Harberside"}},{"attributes":{"name":"Ronald Reilly II","age":54,"location":"South Cynthia"}},{"attributes":{"name":"Evie Harris","age":28,"location":"Wauwatosa"}},{"attributes":{"name":"Emerald Greenholt","age":27,"location":"Delphiamouth"}},{"attributes":{"name":"Roger Crist","age":80,"location":"North Kylee"}},{"attributes":{"name":"Filiberto Stark DVM","age":25,"location":"Lake Bradley"}},{"attributes":{"name":"Clark Beatty","age":55,"location":"Summerville"}},{"attributes":{"name":"Wilhelm Stracke","age":59,"location":"Daughertyworth"}},{"attributes":{"name":"Lauren Konopelski","age":40,"location":"St. Charles"}},{"attributes":{"name":"Cristina Hayes","age":30,"location":"Kertzmannside"}},{"attributes":{"name":"Dr. Lauriane Stokes","age":35,"location":"Port Maverickshire"}},{"attributes":{"name":"Darrel Armstrong","age":54,"location":"Paradise"}},{"attributes":{"name":"Dianna Miller","age":28,"location":"Gusikowskishire"}},{"attributes":{"name":"Kristy Hermann","age":60,"location":"North Tavares"}},{"attributes":{"name":"Catherine Feeney","age":66,"location":"Batzland"}},{"attributes":{"name":"Daniel Roberts","age":23,"location":"Jacobsberg"}},{"attributes":{"name":"Shelly Predovic","age":37,"location":"Goyettestead"}},{"attributes":{"name":"Delores Rogahn","age":33,"location":"Fort Pierce"}},{"attributes":{"name":"Meaghan Breitenberg","age":49,"location":"East Othobury"}},{"attributes":{"name":"Gardner Morissette","age":30,"location":"North Maximilian"}},{"attributes":{"name":"Jazmyn Ortiz","age":66,"location":"Devonland"}},{"attributes":{"name":"Teri Aufderhar-Walker","age":62,"location":"Port Calistafort"}},{"attributes":{"name":"Larry Runte","age":21,"location":"Renestead"}},{"attributes":{"name":"Felicia Harber","age":56,"location":"Normal"}},{"attributes":{"name":"Lorena Dickens-Mohr","age":70,"location":"South Elinoreburgh"}},{"attributes":{"name":"Garrett Russel","age":41,"location":"Croninfurt"}},{"attributes":{"name":"Natalie Sporer","age":26,"location":"Hempstead"}},{"attributes":{"name":"Daniel Emard","age":39,"location":"Schenectady"}},{"attributes":{"name":"Krystal Hagenes","age":22,"location":"Lake Darren"}},{"attributes":{"name":"Mrs. Ramona Reilly","age":48,"location":"South Joesph"}},{"attributes":{"name":"Ms. Lillian Feil","age":70,"location":"Fort Cecile"}},{"attributes":{"name":"Reta Schamberger","age":22,"location":"Caldwell"}},{"attributes":{"name":"Amelia Gleichner","age":42,"location":"Port Edgarview"}},{"attributes":{"name":"Lori Kuhn","age":71,"location":"North Jerrold"}},{"attributes":{"name":"Ms. Carlos Ankunding","age":32,"location":"New Jazmin"}},{"attributes":{"name":"Ana Paucek","age":74,"location":"Onieland"}},{"attributes":{"name":"Cornelius Kuphal","age":32,"location":"Fort Gordonfield"}},{"attributes":{"name":"Mr. Ralph Ratke","age":69,"location":"Inglewood"}},{"attributes":{"name":"Dr. Diane Barrows","age":69,"location":"Greenfelderberg"}},{"attributes":{"name":"Joanne McCullough-Kozey","age":28,"location":"Fort Darrin"}},{"attributes":{"name":"Jordyn Doyle","age":79,"location":"Escondido"}},{"attributes":{"name":"Maria Schamberger","age":49,"location":"Cassinside"}},{"attributes":{"name":"Mr. Misael Hermiston","age":49,"location":"Stantonfurt"}},{"attributes":{"name":"Russell Abernathy","age":29,"location":"Beaumont"}},{"attributes":{"name":"Landen Kutch","age":45,"location":"Arecibo"}},{"attributes":{"name":"Dr. Tianna Price","age":53,"location":"North Amaliatown"}},{"attributes":{"name":"Javier Lubowitz-Wiegand","age":58,"location":"South Rosaleehaven"}},{"attributes":{"name":"Jaeden Hermiston","age":67,"location":"East Wendy"}},{"attributes":{"name":"Israel Green","age":30,"location":"Connellyhaven"}},{"attributes":{"name":"Ronald Pfeffer","age":36,"location":"New Nikki"}},{"attributes":{"name":"Dolly Volkman","age":30,"location":"Fort Collins"}},{"attributes":{"name":"Geraldine Kemmer","age":36,"location":"Lake Charlotteport"}},{"attributes":{"name":"Elinore Prohaska","age":61,"location":"Carrollstead"}},{"attributes":{"name":"Mrs. Hailey Barton","age":26,"location":"West Eloystead"}},{"attributes":{"name":"Valerie Hansen","age":52,"location":"Riverton"}},{"attributes":{"name":"Hannah Shanahan","age":32,"location":"Pontiac"}},{"attributes":{"name":"Gertrude Ratke","age":68,"location":"Jaskolskifort"}},{"attributes":{"name":"Myra Boyer","age":55,"location":"Vancouver"}},{"attributes":{"name":"Myrtle Thompson","age":50,"location":"North Brantfield"}},{"attributes":{"name":"Winifred Lesch","age":29,"location":"Fort Jermaineborough"}},{"attributes":{"name":"Tina Koelpin","age":68,"location":"Fort Raymundo"}},{"attributes":{"name":"Cory Cartwright Sr.","age":62,"location":"New Samsonberg"}},{"attributes":{"name":"Miss Avery Torphy","age":31,"location":"Blandafort"}},{"attributes":{"name":"Name Gusikowski","age":61,"location":"Waltham"}},{"attributes":{"name":"Mertie Harvey","age":59,"location":"Fabiolabury"}},{"attributes":{"name":"Dr. Domenica D'Amore V","age":35,"location":"Fayville"}},{"attributes":{"name":"Jaclyn Fritsch","age":41,"location":"Terrancefield"}},{"attributes":{"name":"Bonita Towne-Stamm","age":30,"location":"Jacyntheview"}},{"attributes":{"name":"Donavon Hickle","age":27,"location":"Schulistton"}},{"attributes":{"name":"Bonnie Bartoletti","age":63,"location":"Duluth"}},{"attributes":{"name":"Alanis Beier","age":64,"location":"Port St. Lucie"}},{"attributes":{"name":"Randy Becker II","age":42,"location":"Shawnfield"}},{"attributes":{"name":"Roy Grady","age":66,"location":"Carterborough"}},{"attributes":{"name":"Mr. Brianne Murazik-Schmidt","age":26,"location":"Flaviohaven"}},{"attributes":{"name":"Ms. Flavio Ondricka II","age":30,"location":"Apple Valley"}},{"attributes":{"name":"Myron Mueller","age":37,"location":"Port Conrad"}},{"attributes":{"name":"Bertha Tillman","age":41,"location":"Taylorsville"}},{"attributes":{"name":"Chris Hoppe","age":70,"location":"Johannaview"}},{"attributes":{"name":"Marlon Runolfsdottir","age":41,"location":"New Elvisside"}},{"attributes":{"name":"Jamarcus Gleichner II","age":54,"location":"Magdalenashire"}},{"attributes":{"name":"Taryn Funk","age":71,"location":"East Maybellberg"}},{"attributes":{"name":"Dwayne Moen","age":47,"location":"New Nikkoport"}},{"attributes":{"name":"Gayle Hills","age":36,"location":"Fort Coreneton"}},{"attributes":{"name":"Austyn Raynor","age":53,"location":"Fort Sabrina"}},{"attributes":{"name":"Jo Abshire","age":53,"location":"Lake Juniusborough"}},{"attributes":{"name":"Miss Clemmie Rippin","age":51,"location":"Port Maggie"}},{"attributes":{"name":"Violet Feeney-Gorczany","age":39,"location":"North Omer"}},{"attributes":{"name":"Wendell Stokes Jr.","age":78,"location":"North Kenton"}},{"attributes":{"name":"Roxanne Witting","age":52,"location":"Fort Aliashire"}},{"attributes":{"name":"Imelda Johnson","age":29,"location":"East Elroy"}},{"attributes":{"name":"Issac Stoltenberg","age":52,"location":"Mrazfurt"}},{"attributes":{"name":"Neil Sanford","age":51,"location":"Hegmanncester"}},{"attributes":{"name":"Dr. Danny Kovacek","age":44,"location":"Javonberg"}},{"attributes":{"name":"Bryant Block","age":32,"location":"Keyonmouth"}},{"attributes":{"name":"Laurence Howell","age":31,"location":"New Leila"}},{"attributes":{"name":"Amanda Lang","age":23,"location":"Riceville"}},{"attributes":{"name":"Chris Wintheiser","age":49,"location":"Centreville"}},{"attributes":{"name":"Martin Altenwerth","age":49,"location":"Emersonside"}},{"attributes":{"name":"Angelina Von","age":67,"location":"Port Elyseton"}},{"attributes":{"name":"Tobin Hintz","age":19,"location":"Batzshire"}},{"attributes":{"name":"Ms. Idell Baumbach","age":34,"location":"Talonbury"}},{"attributes":{"name":"Jaqueline Thompson","age":34,"location":"Wildermanberg"}},{"attributes":{"name":"Jeramy Quigley","age":44,"location":"Medhurstmouth"}},{"attributes":{"name":"Piper Hahn","age":40,"location":"Willland"}},{"attributes":{"name":"Joanne Tromp","age":73,"location":"Fort Telly"}},{"attributes":{"name":"Javier Satterfield","age":55,"location":"Marcelofort"}},{"attributes":{"name":"Lynne Schmidt-Fahey","age":44,"location":"South Marco"}},{"attributes":{"name":"Patrick Pollich","age":71,"location":"Linwoodberg"}},{"attributes":{"name":"Christelle Dibbert","age":34,"location":"Pourosburgh"}},{"attributes":{"name":"Miguel Koepp","age":80,"location":"Bruenshire"}},{"attributes":{"name":"Erin O'Kon","age":45,"location":"Leuschkeside"}},{"attributes":{"name":"Marvin Corkery","age":32,"location":"Longview"}},{"attributes":{"name":"Tyler Kuvalis IV","age":72,"location":"Gutmannfort"}},{"attributes":{"name":"Patricia Marks","age":35,"location":"Yostville"}},{"attributes":{"name":"Marianne Kozey","age":41,"location":"Kearny"}},{"attributes":{"name":"Ms. Lucille Aufderhar","age":70,"location":"Fort Floydberg"}},{"attributes":{"name":"Taurean Abernathy-Feeney","age":68,"location":"Ervinborough"}},{"attributes":{"name":"Milton Lang","age":29,"location":"Fort Santinastead"}},{"attributes":{"name":"Cale Schumm","age":48,"location":"Douglasborough"}},{"attributes":{"name":"Idella Lind","age":31,"location":"East Genesis"}},{"attributes":{"name":"Mrs. Major Huel","age":30,"location":"Sayreville"}},{"attributes":{"name":"Ronaldo Padberg","age":25,"location":"Juanafield"}},{"attributes":{"name":"Paul Deckow","age":44,"location":"East Malcolmstead"}},{"attributes":{"name":"John McCullough","age":23,"location":"Ettieport"}},{"attributes":{"name":"Barbara Kemmer","age":38,"location":"Port Lizziefurt"}},{"attributes":{"name":"Ms. Ellsworth VonRueden MD","age":22,"location":"New Johathanfield"}},{"attributes":{"name":"Zechariah Littel-Runte","age":67,"location":"Keelingmouth"}},{"attributes":{"name":"Mckayla Stoltenberg MD","age":30,"location":"Fort Judgechester"}},{"attributes":{"name":"Dr. Jade Gottlieb IV","age":43,"location":"Evansville"}},{"attributes":{"name":"Asia O'Reilly","age":36,"location":"Daisyborough"}},{"attributes":{"name":"Deangelo Franey","age":73,"location":"Effertzborough"}},{"attributes":{"name":"Mrs. Adolphus Hintz-Grant","age":43,"location":"Bradtkebury"}},{"attributes":{"name":"Bethel Jenkins","age":19,"location":"East Jakechester"}},{"attributes":{"name":"Lowell Hettinger PhD","age":24,"location":"Ziemannfurt"}},{"attributes":{"name":"Chyna Legros","age":39,"location":"Buckridgeside"}},{"attributes":{"name":"Ora Boyle","age":40,"location":"La Mesa"}},{"attributes":{"name":"Alisa Thompson","age":48,"location":"New Fern"}},{"attributes":{"name":"Joe Jacobson","age":62,"location":"Fort Leola"}},{"attributes":{"name":"Burnice Dare MD","age":29,"location":"Lake Lianaville"}},{"attributes":{"name":"Calista Cole","age":57,"location":"North Gracie"}},{"attributes":{"name":"Lamar Jacobson PhD","age":19,"location":"Hayesburgh"}},{"attributes":{"name":"Marta Medhurst","age":78,"location":"Hesselfurt"}},{"attributes":{"name":"Mr. Hosea Wiza","age":43,"location":"North Bart"}},{"attributes":{"name":"Marianne Considine","age":20,"location":"Bahringerton"}},{"attributes":{"name":"Mark Gerlach","age":64,"location":"Lake Tyshawnport"}},{"attributes":{"name":"Rafael Toy","age":79,"location":"Huntersville"}},{"attributes":{"name":"Glen Sipes","age":31,"location":"Daniellaberg"}},{"attributes":{"name":"Camille Rogahn","age":24,"location":"Carriebury"}},{"attributes":{"name":"Noel Sanford DDS","age":73,"location":"Gorczanyburgh"}},{"attributes":{"name":"Joshua Veum","age":41,"location":"Fort Ethanbury"}},{"attributes":{"name":"Miss Terry Moore","age":75,"location":"Port Earl"}},{"attributes":{"name":"Briana Labadie III","age":20,"location":"North Charleston"}},{"attributes":{"name":"Mr. Clinton Douglas","age":47,"location":"Cloydbury"}},{"attributes":{"name":"Grady Turner","age":65,"location":"East Ramonahaven"}},{"attributes":{"name":"Conrad Luettgen","age":55,"location":"Lake Celine"}},{"attributes":{"name":"Amaya Hartmann-Predovic","age":53,"location":"Dianabury"}},{"attributes":{"name":"Mike Langosh","age":67,"location":"East Florianberg"}},{"attributes":{"name":"Lafayette Pouros MD","age":60,"location":"West Allis"}},{"attributes":{"name":"Alexis Reilly Jr.","age":25,"location":"Bernardoton"}},{"attributes":{"name":"Estrella Hegmann","age":40,"location":"Anyastad"}},{"attributes":{"name":"Lorenzo Hane","age":64,"location":"Lake Doyle"}},{"attributes":{"name":"Justina Huel PhD","age":70,"location":"McCulloughmouth"}},{"attributes":{"name":"Josh Bosco","age":47,"location":"Waterbury"}},{"attributes":{"name":"Norman Green","age":64,"location":"Pasqualefurt"}},{"attributes":{"name":"Peggy Effertz","age":22,"location":"Port Kari"}},{"attributes":{"name":"Ransom Hermiston","age":52,"location":"Alyceview"}},{"attributes":{"name":"Willard Crona DVM","age":72,"location":"Little Rock"}},{"attributes":{"name":"Glenn Runolfsdottir","age":40,"location":"Lake Maybellton"}},{"attributes":{"name":"Mark Rempel","age":34,"location":"Schroederfort"}},{"attributes":{"name":"Jean Buckridge","age":31,"location":"New Dee"}},{"attributes":{"name":"Wyatt Reilly Jr.","age":69,"location":"Elissastead"}},{"attributes":{"name":"Colby Bogan","age":63,"location":"Katelynboro"}},{"attributes":{"name":"Ryley Casper Jr.","age":79,"location":"Treutelcester"}},{"attributes":{"name":"Theo Zulauf","age":75,"location":"West Delphine"}},{"attributes":{"name":"Amina Braun","age":72,"location":"Altaborough"}},{"attributes":{"name":"Mr. Paul Schowalter","age":23,"location":"Port Robertostad"}},{"attributes":{"name":"Alexander Stark","age":24,"location":"West Julien"}},{"attributes":{"name":"Julian Purdy DVM","age":45,"location":"Leschberg"}},{"attributes":{"name":"Josh McCullough","age":22,"location":"Camden"}},{"attributes":{"name":"Enrique Konopelski","age":28,"location":"Janesville"}},{"attributes":{"name":"Dianne Treutel","age":57,"location":"Altenwerthcester"}},{"attributes":{"name":"Ms. Graham Vandervort","age":32,"location":"South Arvid"}},{"attributes":{"name":"Mr. Alvis Collier","age":39,"location":"Greentown"}},{"attributes":{"name":"Ray Klocko","age":26,"location":"North Kraigside"}},{"attributes":{"name":"Kristi Reynolds","age":72,"location":"New Luisburgh"}},{"attributes":{"name":"Shirley Glover III","age":25,"location":"Fort Shanelleton"}},{"attributes":{"name":"May Daugherty V","age":40,"location":"Manteca"}},{"attributes":{"name":"Roosevelt Buckridge","age":27,"location":"Boscoland"}},{"attributes":{"name":"Glenn Koch","age":76,"location":"West Haven"}},{"attributes":{"name":"Isabelle Hermann","age":26,"location":"Lake Jordanfort"}},{"attributes":{"name":"Marcus McGlynn-DuBuque","age":29,"location":"Schultzville"}},{"attributes":{"name":"Garrick Rogahn","age":40,"location":"New Jedediahcester"}},{"attributes":{"name":"Mr. Wayne Mayer","age":69,"location":"Kyleton"}},{"attributes":{"name":"Joe Bogan","age":63,"location":"Charlottesville"}},{"attributes":{"name":"Lloyd Pacocha","age":53,"location":"New Riverstead"}},{"attributes":{"name":"Kathryn Champlin","age":78,"location":"South Enola"}},{"attributes":{"name":"Leo Schulist","age":71,"location":"New Jeromybury"}},{"attributes":{"name":"Guadalupe Zieme","age":70,"location":"Lake Evans"}},{"attributes":{"name":"Freddie Cummings-Lubowitz","age":73,"location":"South Glennie"}},{"attributes":{"name":"Katelyn Turner","age":48,"location":"Annetteton"}},{"attributes":{"name":"Nash Gerlach Jr.","age":52,"location":"Imogenecester"}},{"attributes":{"name":"Bernice Nitzsche-Lesch","age":35,"location":"Moniquestead"}},{"attributes":{"name":"Ruben Beier","age":80,"location":"East Kraigfort"}},{"attributes":{"name":"Josefina Hand","age":43,"location":"Marianochester"}},{"attributes":{"name":"Emma Hermann","age":70,"location":"Stellachester"}},{"attributes":{"name":"Alexandro Feest","age":28,"location":"West Nilsshire"}},{"attributes":{"name":"Ian Klein","age":64,"location":"Rolfsonstad"}},{"attributes":{"name":"Theo Mante","age":32,"location":"San Rafael"}},{"attributes":{"name":"Della Towne DDS","age":80,"location":"New Jamalstead"}},{"attributes":{"name":"Elsie Heathcote","age":41,"location":"Wyattcester"}},{"attributes":{"name":"Kelly Johnson","age":52,"location":"Charleyhaven"}},{"attributes":{"name":"Christie Kuhn","age":22,"location":"West Arjunchester"}},{"attributes":{"name":"Laurel Howell","age":23,"location":"West Valley City"}},{"attributes":{"name":"Cary Romaguera","age":66,"location":"Watersport"}},{"attributes":{"name":"Walton Wehner","age":74,"location":"Lake Hermann"}},{"attributes":{"name":"Ernestine Muller","age":69,"location":"Jackson"}},{"attributes":{"name":"Angelo O'Connell","age":57,"location":"Perris"}},{"attributes":{"name":"Davion Will","age":34,"location":"Tracy"}},{"attributes":{"name":"Charlotte Crist","age":80,"location":"South Winona"}},{"attributes":{"name":"Keely Kunde","age":43,"location":"O'Reillyfield"}},{"attributes":{"name":"Ms. Janis Pagac","age":51,"location":"New Zechariahland"}},{"attributes":{"name":"Blake Will","age":45,"location":"Fort Cyrusworth"}},{"attributes":{"name":"Angie Barrows","age":54,"location":"New Orieport"}},{"attributes":{"name":"Dahlia Hansen","age":29,"location":"Strosintown"}},{"attributes":{"name":"Marielle Hyatt V","age":69,"location":"Deanland"}},{"attributes":{"name":"Eric Dare","age":80,"location":"Dale City"}},{"attributes":{"name":"Mary Lemke","age":50,"location":"Gideonfield"}},{"attributes":{"name":"Lynn Waelchi","age":31,"location":"Waipahu"}},{"attributes":{"name":"Mary Grimes","age":22,"location":"Schuppeburgh"}},{"attributes":{"name":"Doyle Mayer","age":59,"location":"Raubury"}},{"attributes":{"name":"Ed Balistreri","age":51,"location":"Lefflerworth"}},{"attributes":{"name":"Emily Ondricka","age":75,"location":"North Tianna"}},{"attributes":{"name":"Alfonzo Glover","age":21,"location":"Utica"}},{"attributes":{"name":"Aaron McGlynn","age":26,"location":"Port Elzaville"}},{"attributes":{"name":"Gregory Gerlach","age":31,"location":"Jayceville"}},{"attributes":{"name":"Ana Reilly","age":33,"location":"Port Stephania"}},{"attributes":{"name":"Mr. Nettie O'Kon","age":33,"location":"Hodkiewiczland"}},{"attributes":{"name":"Colton Carter","age":40,"location":"Loveland"}},{"attributes":{"name":"Randy Schuppe","age":60,"location":"Santa Clara"}},{"attributes":{"name":"Fiona Bogisich","age":76,"location":"Casas Adobes"}},{"attributes":{"name":"Kevon Ruecker","age":68,"location":"Cleveland"}},{"attributes":{"name":"Kyleigh Grady PhD","age":34,"location":"Farmington Hills"}},{"attributes":{"name":"Mr. Randall Bergstrom","age":61,"location":"West Torrance"}},{"attributes":{"name":"Ernie Zboncak","age":21,"location":"Joliet"}},{"attributes":{"name":"Evelyn Simonis","age":47,"location":"North Judah"}},{"attributes":{"name":"Diane Smith","age":26,"location":"Deangelohaven"}},{"attributes":{"name":"Rickey Veum Jr.","age":20,"location":"Fort Katrineport"}},{"attributes":{"name":"Amani Streich","age":22,"location":"Binsbury"}},{"attributes":{"name":"Garett Marks","age":28,"location":"Tuscaloosa"}},{"attributes":{"name":"Rodney Dickens","age":73,"location":"North Devanteport"}},{"attributes":{"name":"Sibyl Steuber","age":19,"location":"Dianafield"}},{"attributes":{"name":"Marco Mayert","age":41,"location":"Bartonfield"}},{"attributes":{"name":"Miss Jackie Blick DDS","age":66,"location":"Port Arne"}},{"attributes":{"name":"Vena Heller","age":79,"location":"Lake Natfield"}},{"attributes":{"name":"Johnathon Gulgowski I","age":71,"location":"Bocester"}},{"attributes":{"name":"Albert Okuneva","age":23,"location":"Kassulkefurt"}},{"attributes":{"name":"Anthony Bechtelar","age":68,"location":"Lake Bertcester"}},{"attributes":{"name":"Sherman Hayes","age":26,"location":"New Nigel"}},{"attributes":{"name":"Leonie Ledner","age":62,"location":"Rolandoburgh"}},{"attributes":{"name":"Martin Jerde","age":74,"location":"Cortneyberg"}},{"attributes":{"name":"Carmen Krajcik","age":37,"location":"Karlport"}},{"attributes":{"name":"Kristen Green","age":31,"location":"Berneiceborough"}},{"attributes":{"name":"Bobbie Kilback","age":77,"location":"Kamrenstad"}},{"attributes":{"name":"Jana Schiller","age":62,"location":"Fort Louie"}},{"attributes":{"name":"Marjory Stroman","age":20,"location":"Litzyview"}},{"attributes":{"name":"Lorraine Ankunding","age":25,"location":"Midland"}},{"attributes":{"name":"Mose Reilly","age":72,"location":"Port Tristianshire"}},{"attributes":{"name":"Viola Hettinger","age":33,"location":"Marcelinatown"}},{"attributes":{"name":"Frankie Cole","age":27,"location":"Swifthaven"}},{"attributes":{"name":"Larry Gleichner","age":76,"location":"Langworthfurt"}},{"attributes":{"name":"Vicky Lowe","age":39,"location":"Vernerton"}},{"attributes":{"name":"Olen Nolan DVM","age":50,"location":"Yundtport"}},{"attributes":{"name":"Marta Lueilwitz","age":80,"location":"Bednarcester"}},{"attributes":{"name":"Randy D'Amore","age":29,"location":"Jacobsonton"}},{"attributes":{"name":"Lena Schowalter","age":30,"location":"Greenwood"}},{"attributes":{"name":"Marian Gerlach","age":30,"location":"Lake Roosevelt"}},{"attributes":{"name":"Mario Kuhn","age":51,"location":"Fort Marcelleside"}},{"attributes":{"name":"Ginger McKenzie","age":50,"location":"Russboro"}},{"attributes":{"name":"Casey Bailey","age":34,"location":"Dextershire"}},{"attributes":{"name":"Claire Homenick","age":75,"location":"Port Camrenbury"}},{"attributes":{"name":"Terrance Muller","age":46,"location":"New Jeromybury"}},{"attributes":{"name":"Amy Corwin","age":28,"location":"Baton Rouge"}},{"attributes":{"name":"Zackery Morar","age":42,"location":"Arden-Arcade"}},{"attributes":{"name":"Dawn Gerlach","age":34,"location":"East Reanna"}},{"attributes":{"name":"Davion Rohan","age":44,"location":"Demariocester"}},{"attributes":{"name":"Garrett Kovacek","age":48,"location":"Lake Beaulahville"}},{"attributes":{"name":"Kevin Bernhard IV","age":46,"location":"Wilmington"}},{"attributes":{"name":"Marcella McDermott MD","age":18,"location":"Vergieberg"}},{"attributes":{"name":"Terrence Hilll Jr.","age":64,"location":"Generalstad"}},{"attributes":{"name":"Doyle Reynolds DVM","age":41,"location":"Sydneeton"}},{"attributes":{"name":"Chloe Blanda","age":52,"location":"North Maximus"}},{"attributes":{"name":"Ms. Tressie Rogahn","age":68,"location":"Enid"}},{"attributes":{"name":"Chad Schaefer","age":73,"location":"Elodyhaven"}},{"attributes":{"name":"Jeremy Heaney","age":20,"location":"Canton"}},{"attributes":{"name":"Anita Klein","age":79,"location":"North Lenore"}},{"attributes":{"name":"Judy Will IV","age":46,"location":"Lake Brisa"}},{"attributes":{"name":"Kenny Renner","age":37,"location":"West Chancehaven"}},{"attributes":{"name":"Theresa Torp-Kutch","age":27,"location":"East Kaela"}},{"attributes":{"name":"Cory Franecki","age":31,"location":"Lillianworth"}},{"attributes":{"name":"Murl Jakubowski","age":62,"location":"Maxstad"}},{"attributes":{"name":"Dr. Devyn Schneider-Rosenbaum","age":43,"location":"East Eugenia"}},{"attributes":{"name":"Enrique Ebert PhD","age":59,"location":"Port Arthur"}},{"attributes":{"name":"Jadon Wolff II","age":41,"location":"South Efrenton"}},{"attributes":{"name":"Ms. Glen Blanda","age":41,"location":"Yakima"}},{"attributes":{"name":"Gabriel Greenfelder","age":57,"location":"Jacksonville"}},{"attributes":{"name":"Michele Kunde","age":56,"location":"Jamieburgh"}},{"attributes":{"name":"Eloy Brekke-Goyette","age":60,"location":"New Tomshire"}},{"attributes":{"name":"Diamond Beier","age":77,"location":"Everetttown"}},{"attributes":{"name":"Zelda Shields","age":80,"location":"Gersonbury"}},{"attributes":{"name":"Ward Lind","age":61,"location":"Fort Shaynafurt"}},{"attributes":{"name":"Dr. Leonie Hettinger","age":67,"location":"Kirlinberg"}},{"attributes":{"name":"Marcella Stoltenberg","age":32,"location":"Ornport"}},{"attributes":{"name":"Bobby Moore","age":71,"location":"Celestinochester"}},{"attributes":{"name":"Candido Block","age":79,"location":"Fort Ozellaville"}},{"attributes":{"name":"Gilberto Wehner","age":32,"location":"Mayertport"}},{"attributes":{"name":"Hollie Considine","age":55,"location":"Portsmouth"}},{"attributes":{"name":"Dr. Nicolas Glover","age":29,"location":"Preciousburgh"}},{"attributes":{"name":"Ivan Wunsch","age":29,"location":"Douglastown"}},{"attributes":{"name":"Eino Greenholt I","age":25,"location":"West Lamont"}},{"attributes":{"name":"Lula Metz-Armstrong","age":40,"location":"West Magali"}},{"attributes":{"name":"Sylvia Abernathy","age":42,"location":"Vernoncester"}},{"attributes":{"name":"Miss Charlie Macejkovic","age":71,"location":"East Jakob"}},{"attributes":{"name":"Jamie Brekke","age":48,"location":"North Lennystad"}},{"attributes":{"name":"Ed Marquardt","age":44,"location":"Vandervortland"}},{"attributes":{"name":"Audra Hansen","age":48,"location":"North Taurean"}},{"attributes":{"name":"Wade McClure","age":21,"location":"Davis"}},{"attributes":{"name":"Newell Kihn","age":18,"location":"Emmettfield"}},{"attributes":{"name":"Arno Rohan","age":28,"location":"West Ernestinebury"}},{"attributes":{"name":"Gust Dooley","age":64,"location":"Mission"}},{"attributes":{"name":"Tyler Lebsack-Stanton","age":41,"location":"Hardyton"}},{"attributes":{"name":"Nils Beatty","age":69,"location":"Santa Ana"}},{"attributes":{"name":"Blaze Witting","age":43,"location":"South Mafaldafort"}},{"attributes":{"name":"Jakayla Oberbrunner","age":60,"location":"North Orrin"}},{"attributes":{"name":"Francisca Ullrich","age":53,"location":"Lake Pattie"}},{"attributes":{"name":"Chauncey Padberg","age":64,"location":"New Jamarcus"}},{"attributes":{"name":"Abdiel Fisher","age":36,"location":"North Giaview"}},{"attributes":{"name":"Mr. Glenn Kshlerin","age":77,"location":"New Tara"}},{"attributes":{"name":"Piper Oberbrunner","age":29,"location":"Arvillaburgh"}},{"attributes":{"name":"Luis Conn","age":62,"location":"Shayneshire"}},{"attributes":{"name":"Jana Dibbert","age":75,"location":"Amosworth"}},{"attributes":{"name":"Hope Gusikowski","age":76,"location":"Handtown"}},{"attributes":{"name":"Jan King","age":52,"location":"Gutkowskiburgh"}},{"attributes":{"name":"Constance Rutherford","age":49,"location":"Jonathonport"}},{"attributes":{"name":"Ms. Becky Kunze","age":46,"location":"Cedar Rapids"}},{"attributes":{"name":"Deanna Gibson-Kuphal","age":18,"location":"New Lauretta"}},{"attributes":{"name":"Willis O'Conner","age":47,"location":"Vicentestead"}},{"attributes":{"name":"Cecelia Bosco","age":65,"location":"North Mitchell"}},{"attributes":{"name":"Keara Goyette","age":22,"location":"Vandervortcester"}},{"attributes":{"name":"Garrett Lockman","age":25,"location":"East Vernon"}},{"attributes":{"name":"Wilson Crooks","age":26,"location":"Omafurt"}},{"attributes":{"name":"Gladys Feeney","age":61,"location":"Dickensfurt"}},{"attributes":{"name":"Yvette Stehr","age":77,"location":"Fort Nicholestad"}},{"attributes":{"name":"Evan Wehner","age":34,"location":"Federal Way"}},{"attributes":{"name":"Violette Spencer","age":49,"location":"Oswaldoborough"}},{"attributes":{"name":"Elmore Prosacco","age":38,"location":"West Amira"}},{"attributes":{"name":"Miss Alvina Schaefer-Rath","age":48,"location":"Tillmancester"}},{"attributes":{"name":"Erik Klein","age":68,"location":"Kundeside"}},{"attributes":{"name":"Norbert McLaughlin MD","age":53,"location":"Caesartown"}},{"attributes":{"name":"Dr. Diana Koepp","age":80,"location":"Roseville"}},{"attributes":{"name":"Connie Padberg","age":47,"location":"Kubshire"}},{"attributes":{"name":"Baron Moore","age":75,"location":"North Harry"}},{"attributes":{"name":"Rosalyn Wiza","age":51,"location":"Dachberg"}},{"attributes":{"name":"Douglas Mueller","age":76,"location":"South Daishafield"}},{"attributes":{"name":"Zetta Koss","age":52,"location":"Morgantown"}},{"attributes":{"name":"Alexandra Hodkiewicz","age":75,"location":"Port Amiyahaven"}},{"attributes":{"name":"Chaya Kuhlman","age":68,"location":"Runolfssonport"}},{"attributes":{"name":"Lorenzo Emmerich","age":77,"location":"Fort Pierce"}},{"attributes":{"name":"Walter Heathcote","age":40,"location":"East Alexzander"}},{"attributes":{"name":"Holly Kohler II","age":67,"location":"Fort Emmaleebury"}},{"attributes":{"name":"Stella Bernier","age":28,"location":"Feilboro"}},{"attributes":{"name":"Renee Abernathy","age":48,"location":"Delfinafurt"}},{"attributes":{"name":"Irene Hirthe","age":33,"location":"East Malvina"}},{"attributes":{"name":"Jessica Will","age":24,"location":"Nellehaven"}},{"attributes":{"name":"Kacie Kuhic","age":18,"location":"Fayview"}},{"attributes":{"name":"Mrs. Marty Bartell","age":49,"location":"Lake Aaliyahbury"}},{"attributes":{"name":"Freddie Bergnaum","age":30,"location":"Lake Angelitaport"}},{"attributes":{"name":"Marion Reynolds","age":42,"location":"Downey"}},{"attributes":{"name":"Daniella Schinner","age":50,"location":"Jaidashire"}},{"attributes":{"name":"Laurine Ryan","age":80,"location":"Marielahaven"}},{"attributes":{"name":"Dr. Wilford Wisozk","age":26,"location":"Oak Park"}},{"attributes":{"name":"Cali Lubowitz","age":45,"location":"Boscoshire"}},{"attributes":{"name":"Melody Grady","age":33,"location":"South Janisburgh"}},{"attributes":{"name":"Travon Howell","age":24,"location":"Fort Trevionstead"}},{"attributes":{"name":"Larissa Kling","age":42,"location":"East Amy"}},{"attributes":{"name":"Teri Schmeler","age":45,"location":"Jarredstad"}},{"attributes":{"name":"Roderick Hoppe","age":35,"location":"Port Nicholastown"}},{"attributes":{"name":"Mona Conn","age":68,"location":"New Braunfels"}},{"attributes":{"name":"Emelia Waelchi","age":75,"location":"West Marianna"}},{"attributes":{"name":"Norma Tromp","age":39,"location":"Trinitystead"}},{"attributes":{"name":"Oran Gerhold","age":51,"location":"New Thelma"}},{"attributes":{"name":"Troy Hermann","age":28,"location":"Nashua"}},{"attributes":{"name":"Shannon Heidenreich","age":22,"location":"Ovafort"}},{"attributes":{"name":"Dr. Dorothy Purdy","age":34,"location":"Littlehaven"}},{"attributes":{"name":"Grace Rodriguez","age":22,"location":"North Glennieside"}},{"attributes":{"name":"Lindsey Quitzon","age":33,"location":"Kundehaven"}},{"attributes":{"name":"Irene Beahan","age":48,"location":"Framifield"}},{"attributes":{"name":"Guillermo Mohr-Kassulke","age":42,"location":"Apple Valley"}},{"attributes":{"name":"Raphaelle Grimes","age":29,"location":"Port Maureen"}},{"attributes":{"name":"Russell Oberbrunner","age":36,"location":"Balistrerishire"}},{"attributes":{"name":"Emily Mante","age":80,"location":"Christiansenworth"}},{"attributes":{"name":"Billy Kreiger-Koelpin","age":42,"location":"Botsfordboro"}},{"attributes":{"name":"Debra Schumm-Erdman III","age":23,"location":"Justonport"}},{"attributes":{"name":"Joshuah Dicki MD","age":48,"location":"Metzview"}},{"attributes":{"name":"Alfonso Gusikowski","age":74,"location":"Fort Chelsey"}},{"attributes":{"name":"Kade Ferry V","age":57,"location":"Fort Faemouth"}},{"attributes":{"name":"Betsy Spencer-Rau","age":67,"location":"North Aidanmouth"}},{"attributes":{"name":"Alexander Crist","age":45,"location":"Port Lutherport"}},{"attributes":{"name":"Andre Wyman-Collins DDS","age":31,"location":"Carmel"}},{"attributes":{"name":"Michelle Langosh","age":28,"location":"West Erynworth"}},{"attributes":{"name":"Kate White","age":23,"location":"Port Kianaberg"}},{"attributes":{"name":"Garret Nienow","age":58,"location":"Hodkiewiczstead"}},{"attributes":{"name":"Kole Bruen-Blanda","age":37,"location":"Yucaipa"}},{"attributes":{"name":"Kerry Kohler","age":55,"location":"Murphymouth"}},{"attributes":{"name":"Geneva Koss","age":35,"location":"North Elwintown"}},{"attributes":{"name":"Miss Lynn Abernathy","age":18,"location":"East Hartford"}},{"attributes":{"name":"Vernon Beer","age":26,"location":"Tryciastead"}},{"attributes":{"name":"Delores Turcotte DVM","age":24,"location":"North Las Vegas"}},{"attributes":{"name":"Beth Oberbrunner","age":39,"location":"Hammestown"}},{"attributes":{"name":"Reid Davis","age":39,"location":"Lake Wendyton"}},{"attributes":{"name":"Al Hickle","age":67,"location":"South Liam"}},{"attributes":{"name":"Gordon Block","age":25,"location":"O'Konhaven"}},{"attributes":{"name":"Kathy Wolf","age":67,"location":"South Eunicefield"}},{"attributes":{"name":"Saige Lemke","age":44,"location":"Wiegandborough"}},{"attributes":{"name":"Josefina Tillman","age":80,"location":"Parkerport"}},{"attributes":{"name":"Rosa Bernier","age":21,"location":"New Antonechester"}},{"attributes":{"name":"Jorge Gutmann-Gorczany","age":69,"location":"Kilbackchester"}},{"attributes":{"name":"Mr. John Fay","age":45,"location":"South Carlos"}},{"attributes":{"name":"Salvador Zemlak V","age":59,"location":"Florence-Graham"}},{"attributes":{"name":"Bernice Grady","age":79,"location":"Fort Magdalenastad"}},{"attributes":{"name":"Dr. Austen Kling","age":76,"location":"Ernserport"}},{"attributes":{"name":"Omar Schamberger","age":39,"location":"Rio Rancho"}},{"attributes":{"name":"Schuyler Mayert","age":48,"location":"East Brainfort"}},{"attributes":{"name":"Elaine Kassulke","age":30,"location":"Port Esther"}},{"attributes":{"name":"Lenora Walker","age":71,"location":"Macon-Bibb County"}},{"attributes":{"name":"Ms. Rickie DuBuque","age":19,"location":"Kiehnborough"}},{"attributes":{"name":"Gerardo Wiza","age":63,"location":"Miami"}},{"attributes":{"name":"Monica Ryan","age":34,"location":"Skokie"}},{"attributes":{"name":"Kaylah Greenfelder","age":77,"location":"Wizastad"}},{"attributes":{"name":"Alessia Friesen","age":53,"location":"Robinstad"}},{"attributes":{"name":"Essie Mohr","age":72,"location":"Henderson"}},{"attributes":{"name":"Mr. Josefina McCullough","age":65,"location":"Mission Viejo"}},{"attributes":{"name":"Joyce Deckow","age":50,"location":"Judsonboro"}},{"attributes":{"name":"Jeff Casper","age":67,"location":"Aufderharfield"}},{"attributes":{"name":"Bessie Cronin","age":29,"location":"Burnsville"}},{"attributes":{"name":"Gina Barrows","age":34,"location":"Cristinafort"}},{"attributes":{"name":"Duane Dickens","age":66,"location":"North Rettastead"}},{"attributes":{"name":"Kaya Trantow","age":22,"location":"Enid"}},{"attributes":{"name":"Franklin Windler","age":19,"location":"Jacquelynmouth"}},{"attributes":{"name":"Edna Reinger","age":76,"location":"West Rodolfo"}},{"attributes":{"name":"Marcus Farrell MD","age":47,"location":"Treutelcester"}},{"attributes":{"name":"Melody Crist","age":70,"location":"Bodeton"}},{"attributes":{"name":"Quentin Barrows","age":70,"location":"Albertafort"}},{"attributes":{"name":"Jeremiah Ullrich","age":70,"location":"Kovacekville"}},{"attributes":{"name":"Colin Greenfelder","age":80,"location":"Boehmton"}},{"attributes":{"name":"Jacquelyn Howe","age":58,"location":"Schroedercester"}},{"attributes":{"name":"Heather Stehr","age":42,"location":"North Muhammad"}},{"attributes":{"name":"Viola Bartell","age":66,"location":"North Elizabeth"}},{"attributes":{"name":"Penny Johns PhD","age":46,"location":"Loveland"}},{"attributes":{"name":"Mr. Mack Halvorson","age":49,"location":"Alainaworth"}},{"attributes":{"name":"Gene Heaney","age":18,"location":"East Deshawnhaven"}},{"attributes":{"name":"Tabitha Moen","age":59,"location":"Frisco"}},{"attributes":{"name":"Mrs. Frank Donnelly","age":69,"location":"South Hill"}},{"attributes":{"name":"Bryant Wunsch","age":62,"location":"Darrylcester"}},{"attributes":{"name":"Alberto Fadel","age":80,"location":"Layton"}},{"attributes":{"name":"Miss Adolph Rempel","age":25,"location":"Leopoldworth"}},{"attributes":{"name":"Beulah Kessler","age":62,"location":"Braunton"}},{"attributes":{"name":"Devonte Nolan","age":31,"location":"Port Leliatown"}},{"attributes":{"name":"Israel VonRueden","age":58,"location":"Lake Louieton"}},{"attributes":{"name":"Skye Klein","age":79,"location":"North Davin"}},{"attributes":{"name":"Julie Hahn","age":69,"location":"Riverside"}},{"attributes":{"name":"Terence Borer","age":34,"location":"Kalamazoo"}},{"attributes":{"name":"Elsa Nikolaus","age":68,"location":"East Barbarastead"}},{"attributes":{"name":"Connor Morissette","age":20,"location":"East Kalliestad"}},{"attributes":{"name":"Misty Ratke","age":25,"location":"O'Fallon"}},{"attributes":{"name":"Dawn Trantow I","age":61,"location":"Compton"}},{"attributes":{"name":"Ian King","age":76,"location":"East Jeramieburgh"}},{"attributes":{"name":"Peter Jacobs","age":70,"location":"Topeka"}},{"attributes":{"name":"Brooklyn Klein","age":38,"location":"Flatleymouth"}},{"attributes":{"name":"Maiya Douglas","age":59,"location":"South Lamarside"}},{"attributes":{"name":"Sean Tremblay","age":72,"location":"South Lacy"}},{"attributes":{"name":"Miss Catherine Langosh","age":23,"location":"South Anselmouth"}},{"attributes":{"name":"Gerard Witting","age":25,"location":"St. Louis Park"}},{"attributes":{"name":"Philip Davis","age":44,"location":"Fort Myrtisland"}},{"attributes":{"name":"Jermaine Bartoletti","age":71,"location":"Erdmanbury"}},{"attributes":{"name":"Oral Walsh","age":31,"location":"Tinley Park"}},{"attributes":{"name":"Chadrick Hirthe","age":66,"location":"Reno"}},{"attributes":{"name":"Ashley Huels","age":62,"location":"Bryan"}},{"attributes":{"name":"Josiane Rau","age":62,"location":"Deckowboro"}},{"attributes":{"name":"Brando Grant","age":45,"location":"Harrisside"}},{"attributes":{"name":"Shannon Ruecker","age":33,"location":"Lake Koreychester"}},{"attributes":{"name":"Rhonda Rippin-Jacobi","age":29,"location":"Poinciana"}},{"attributes":{"name":"Reginald Moore IV","age":41,"location":"New Carlottastad"}},{"attributes":{"name":"Vernon Heaney","age":26,"location":"South Angelina"}},{"attributes":{"name":"Francis Weber","age":27,"location":"Fort Jeanstead"}},{"attributes":{"name":"Arvel Lehner","age":42,"location":"Hamillbury"}},{"attributes":{"name":"Fred Effertz","age":36,"location":"North Elyse"}},{"attributes":{"name":"Lenore Heller","age":18,"location":"Covina"}},{"attributes":{"name":"Ms. Addie Fadel DDS","age":23,"location":"Downers Grove"}},{"attributes":{"name":"Victoria Senger","age":76,"location":"Maudeberg"}},{"attributes":{"name":"Mr. Elda Bechtelar","age":34,"location":"New Mollyport"}},{"attributes":{"name":"Kathy Kassulke","age":66,"location":"Estellafurt"}},{"attributes":{"name":"Dimitri Farrell","age":56,"location":"Bransonworth"}},{"attributes":{"name":"Art Satterfield","age":38,"location":"Stantonport"}},{"attributes":{"name":"Luciano Kutch","age":28,"location":"East Ana"}},{"attributes":{"name":"Woodrow Klocko","age":27,"location":"Daytona Beach"}},{"attributes":{"name":"Marjorie Lemke","age":27,"location":"Friesenland"}},{"attributes":{"name":"Filiberto Satterfield","age":54,"location":"Fort Ozellaworth"}},{"attributes":{"name":"Terrence Boehm","age":19,"location":"East Tara"}},{"attributes":{"name":"Penny Dickens","age":40,"location":"McKenzieberg"}},{"attributes":{"name":"Rickie Spinka","age":74,"location":"East Rodrigofield"}},{"attributes":{"name":"Delia Bernhard-Hilll","age":66,"location":"Herzogburgh"}},{"attributes":{"name":"Bruce Satterfield-Murray","age":69,"location":"North Geraldine"}},{"attributes":{"name":"Deven Ferry","age":50,"location":"Wunschmouth"}},{"attributes":{"name":"Bette Wyman","age":49,"location":"Manteca"}},{"attributes":{"name":"Bradford Towne","age":67,"location":"Fort Dandre"}},{"attributes":{"name":"Jayme Marks","age":51,"location":"Kerlukecester"}},{"attributes":{"name":"Lorena Haag","age":60,"location":"Fort Miacester"}},{"attributes":{"name":"Mr. Valentin Herzog","age":49,"location":"Kuhlmanhaven"}},{"attributes":{"name":"Eileen Pfannerstill","age":48,"location":"Lehnerworth"}},{"attributes":{"name":"Mr. Rosa Howell V","age":54,"location":"Folsom"}},{"attributes":{"name":"Augusta Zulauf","age":47,"location":"Fort Donavon"}},{"attributes":{"name":"Anthony Tillman","age":39,"location":"Gonzaloboro"}},{"attributes":{"name":"Mozelle Murray","age":79,"location":"Creminland"}},{"attributes":{"name":"Paula Little","age":68,"location":"Lake Oraworth"}},{"attributes":{"name":"Nina Reilly","age":38,"location":"New Gerda"}},{"attributes":{"name":"Isabel Keeling","age":27,"location":"Casa Grande"}},{"attributes":{"name":"Gia Kassulke","age":56,"location":"Zoeview"}},{"attributes":{"name":"Nina Kuhn","age":79,"location":"Rippinmouth"}},{"attributes":{"name":"Darren Beer PhD","age":68,"location":"O'Keefefort"}},{"attributes":{"name":"Clayton Legros","age":73,"location":"Port Arthur"}},{"attributes":{"name":"Mr. Eleanore Sipes I","age":55,"location":"Margaritaside"}},{"attributes":{"name":"Miss Karen Towne","age":26,"location":"South Julianastad"}},{"attributes":{"name":"Dr. Kenny Marvin","age":52,"location":"West Georgianaville"}},{"attributes":{"name":"Lynn Kreiger","age":47,"location":"Lake Geovanni"}},{"attributes":{"name":"Dr. Talia Schaefer","age":64,"location":"Carletonfort"}},{"attributes":{"name":"Wendell Ruecker Jr.","age":60,"location":"East Elijahfield"}},{"attributes":{"name":"Adan Ledner","age":56,"location":"Imeldashire"}},{"attributes":{"name":"Mr. Annabell Schaefer III","age":56,"location":"Reillyborough"}},{"attributes":{"name":"Abel Swift","age":67,"location":"Berthachester"}},{"attributes":{"name":"Eladio Schroeder","age":29,"location":"New Catharine"}},{"attributes":{"name":"Celia Frami","age":58,"location":"West Gladysbury"}},{"attributes":{"name":"Carlton Kerluke","age":20,"location":"Florence-Graham"}},{"attributes":{"name":"Israel Rutherford II","age":26,"location":"West Brian"}},{"attributes":{"name":"Dana Orn","age":53,"location":"Vivastad"}},{"attributes":{"name":"Lucy Bernier","age":41,"location":"Port Skyla"}},{"attributes":{"name":"Crystal Gleichner","age":54,"location":"East Tiara"}},{"attributes":{"name":"Erin Kirlin Sr.","age":27,"location":"East Monty"}},{"attributes":{"name":"Henry Zemlak","age":70,"location":"Shanahanstad"}},{"attributes":{"name":"Velma Parker","age":23,"location":"Lake Madilyn"}},{"attributes":{"name":"Evelyn Cormier-Jerde","age":54,"location":"East Tomasa"}},{"attributes":{"name":"Bonnie Powlowski","age":60,"location":"Apple Valley"}},{"attributes":{"name":"Clemmie Kshlerin","age":75,"location":"Kertzmannfort"}},{"attributes":{"name":"Lauren Mayert","age":27,"location":"Pagacton"}},{"attributes":{"name":"Bret Satterfield","age":69,"location":"Gilbertoland"}},{"attributes":{"name":"Nicholas Kuphal","age":42,"location":"Fort Tadbury"}},{"attributes":{"name":"Pedro Witting DDS","age":78,"location":"Port Estafield"}},{"attributes":{"name":"Gwendolyn Roob","age":30,"location":"Port Jackymouth"}},{"attributes":{"name":"Mr. Jammie Padberg","age":70,"location":"Beahanhaven"}},{"attributes":{"name":"Catharine Dickinson","age":57,"location":"Port Llewellynland"}},{"attributes":{"name":"Freda D'Amore","age":48,"location":"Milofield"}},{"attributes":{"name":"Bailee Lang","age":78,"location":"Haydenstead"}},{"attributes":{"name":"Quinton Parker","age":46,"location":"Champaign"}},{"attributes":{"name":"Terrence Dare-Ward","age":80,"location":"Pearl City"}},{"attributes":{"name":"Rickey Schmidt MD","age":52,"location":"New Cindyhaven"}},{"attributes":{"name":"Greg Walker PhD","age":38,"location":"McGlynnborough"}},{"attributes":{"name":"Dominic O'Conner","age":77,"location":"East Curtisbury"}},{"attributes":{"name":"Mr. Tim Schmitt","age":37,"location":"Oberbrunnerstad"}},{"attributes":{"name":"Drew Quigley","age":76,"location":"Port Rossiefurt"}},{"attributes":{"name":"Miss Nellie Wintheiser","age":56,"location":"East Buddystead"}},{"attributes":{"name":"Santos Stracke","age":61,"location":"Port Lisa"}},{"attributes":{"name":"April Wisozk-Lockman","age":69,"location":"Hoseaside"}},{"attributes":{"name":"Toni Cassin","age":79,"location":"Sandy"}},{"attributes":{"name":"Krystina Effertz","age":33,"location":"Arden-Arcade"}},{"attributes":{"name":"Leon Marvin","age":68,"location":"Rautown"}},{"attributes":{"name":"Kelli Dach","age":71,"location":"South Joan"}},{"attributes":{"name":"Hugh Jones","age":35,"location":"Santa Clarita"}},{"attributes":{"name":"Mr. Johnnie Bailey","age":58,"location":"Joliet"}},{"attributes":{"name":"Tommy Barton-Kub","age":48,"location":"Bashirianfield"}},{"attributes":{"name":"Julie Bauch","age":27,"location":"North Joesph"}},{"attributes":{"name":"Mrs. Lola Zulauf","age":41,"location":"Warwick"}},{"attributes":{"name":"Carlos Friesen","age":20,"location":"Caesarberg"}},{"attributes":{"name":"Bridget Tillman","age":20,"location":"Gillianport"}},{"attributes":{"name":"Annette Kuhlman Sr.","age":41,"location":"Yesenialand"}},{"attributes":{"name":"Junius Feeney","age":20,"location":"Marvinchester"}},{"attributes":{"name":"Cecelia Beer","age":62,"location":"Port Erin"}},{"attributes":{"name":"Dr. Cleve Altenwerth","age":18,"location":"Bernitamouth"}},{"attributes":{"name":"Orrin Oberbrunner","age":28,"location":"Lake Mayra"}},{"attributes":{"name":"Miss Aurelio Reilly","age":37,"location":"North Maritzastead"}},{"attributes":{"name":"Esther Gutkowski","age":19,"location":"South Claudiaberg"}},{"attributes":{"name":"Elaine Leannon","age":39,"location":"St. Louis"}},{"attributes":{"name":"Mr. Marvin Swift-Schiller","age":73,"location":"Faemouth"}},{"attributes":{"name":"Esta Smith","age":75,"location":"North Mervinview"}},{"attributes":{"name":"Jeannie Bauch","age":23,"location":"Port Destinee"}},{"attributes":{"name":"Lance Auer","age":57,"location":"Fort Citlallifort"}},{"attributes":{"name":"Jack Hermiston","age":39,"location":"South Lexie"}},{"attributes":{"name":"Demetris Dare","age":24,"location":"Corwinland"}},{"attributes":{"name":"Schuyler Gerhold","age":47,"location":"Clayfort"}},{"attributes":{"name":"Daniel Casper","age":67,"location":"Santa Clara"}},{"attributes":{"name":"Brice Orn","age":65,"location":"Trompmouth"}},{"attributes":{"name":"Mercedes Hayes","age":25,"location":"Calistaberg"}},{"attributes":{"name":"Delpha Rowe","age":32,"location":"Fadelfurt"}},{"attributes":{"name":"Doyle Bashirian Jr.","age":76,"location":"Burbank"}},{"attributes":{"name":"Quentin Hickle","age":73,"location":"Orland Park"}},{"attributes":{"name":"Daniel Keebler","age":41,"location":"Tillmanstad"}},{"attributes":{"name":"Rodney Will","age":55,"location":"New Manuela"}},{"attributes":{"name":"Meghan Hudson","age":64,"location":"North Consuelo"}},{"attributes":{"name":"Mr. Charlie Batz","age":58,"location":"New Karianeberg"}},{"attributes":{"name":"Freddie Schmidt","age":75,"location":"Fort Daren"}},{"attributes":{"name":"Kathleen VonRueden I","age":67,"location":"Arvada"}},{"attributes":{"name":"Heber Wilkinson","age":57,"location":"Schillerfort"}},{"attributes":{"name":"Mrs. Leigh Abbott DVM","age":43,"location":"Rancho Cordova"}},{"attributes":{"name":"Mamie Luettgen-Wilkinson","age":76,"location":"High Point"}},{"attributes":{"name":"Seth Graham-Haley","age":54,"location":"Corytown"}},{"attributes":{"name":"Birdie Dicki","age":28,"location":"Kundeboro"}},{"attributes":{"name":"Garrett Carroll","age":35,"location":"North Lexus"}},{"attributes":{"name":"Jaron Stoltenberg","age":53,"location":"East Doyle"}},{"attributes":{"name":"Billie Rodriguez","age":65,"location":"South Devenstad"}},{"attributes":{"name":"Erick Schamberger","age":25,"location":"New Andresfield"}},{"attributes":{"name":"Mr. Jayda Williamson","age":72,"location":"Somerville"}},{"attributes":{"name":"Sonya Jones","age":64,"location":"Marleyborough"}},{"attributes":{"name":"Wiley O'Reilly","age":26,"location":"Gissellemouth"}},{"attributes":{"name":"Loyce Rath","age":53,"location":"West Bayleeville"}},{"attributes":{"name":"Minnie Bayer","age":79,"location":"Schulistberg"}},{"attributes":{"name":"Dr. Elias Schmeler","age":27,"location":"Fort Crawford"}},{"attributes":{"name":"Roy Stark","age":54,"location":"North Sim"}},{"attributes":{"name":"Corrine Yundt","age":32,"location":"Brekkehaven"}},{"attributes":{"name":"Holly Nolan V","age":30,"location":"Port Rosemariefurt"}},{"attributes":{"name":"Melinda Gottlieb","age":68,"location":"Gibsonfort"}},{"attributes":{"name":"Sylvia Murazik","age":24,"location":"Romaguerachester"}},{"attributes":{"name":"Andy Gottlieb I","age":25,"location":"West Madonna"}},{"attributes":{"name":"Lucille Hyatt","age":25,"location":"Bergstromworth"}},{"attributes":{"name":"Jazmyne Weber DVM","age":39,"location":"West Brianne"}},{"attributes":{"name":"Sandy Bechtelar","age":28,"location":"Marshallview"}},{"attributes":{"name":"Else Hills","age":72,"location":"Edwinaburgh"}},{"attributes":{"name":"Stephanie Kreiger","age":22,"location":"Asiaside"}},{"attributes":{"name":"Rosalia Bosco","age":77,"location":"Bernhardfurt"}},{"attributes":{"name":"Sonia Herzog","age":40,"location":"Fayetteville"}},{"attributes":{"name":"Alta Bartell","age":40,"location":"North Norwoodchester"}},{"attributes":{"name":"Jeffery Kris-Langosh","age":69,"location":"Eltacester"}},{"attributes":{"name":"Jamel Kulas","age":21,"location":"Towson"}},{"attributes":{"name":"Hattie Harvey","age":64,"location":"Port Chasitystead"}},{"attributes":{"name":"Julian Breitenberg","age":70,"location":"Bellingham"}},{"attributes":{"name":"Miss Gerhard Bernier","age":62,"location":"Kshlerinburgh"}},{"attributes":{"name":"Kerry Kemmer","age":55,"location":"South Agnesfield"}},{"attributes":{"name":"Seamus Franecki","age":47,"location":"Myrontown"}},{"attributes":{"name":"Horacio Schroeder","age":58,"location":"Stoltenbergcester"}},{"attributes":{"name":"Alford Herman","age":75,"location":"Elkhart"}},{"attributes":{"name":"Carl Powlowski","age":36,"location":"North Anyaview"}},{"attributes":{"name":"Douglas Hand","age":20,"location":"Aspen Hill"}},{"attributes":{"name":"Georgia Jacobson","age":23,"location":"Johnstonbury"}},{"attributes":{"name":"Tracey Crona","age":53,"location":"Folsom"}},{"attributes":{"name":"Julio Hoeger","age":22,"location":"Winston-Salem"}},{"attributes":{"name":"Lillie Harris","age":60,"location":"Arvada"}},{"attributes":{"name":"Reanna Reinger","age":50,"location":"Schoencester"}},{"attributes":{"name":"Hector Nikolaus","age":18,"location":"East Geostead"}},{"attributes":{"name":"Ethyl Runolfsdottir","age":76,"location":"New Nikolas"}},{"attributes":{"name":"Flavie Howell","age":24,"location":"Frederick"}},{"attributes":{"name":"Violet Purdy","age":49,"location":"Ronport"}},{"attributes":{"name":"Curtis DuBuque","age":23,"location":"North Gust"}},{"attributes":{"name":"Darrion Kohler","age":22,"location":"Doylechester"}},{"attributes":{"name":"Mckenna Treutel","age":56,"location":"New Allan"}},{"attributes":{"name":"Mrs. Dana Gutmann","age":45,"location":"Vandervortcester"}},{"attributes":{"name":"Annie Huels","age":75,"location":"Port Desiree"}},{"attributes":{"name":"Dax Jacobson","age":48,"location":"North Carmel"}},{"attributes":{"name":"Dianne Aufderhar","age":67,"location":"Wehnerfurt"}},{"attributes":{"name":"Godfrey Cruickshank","age":78,"location":"Pacochafield"}},{"attributes":{"name":"Raul Conroy","age":32,"location":"Bellflower"}},{"attributes":{"name":"Lora Franecki","age":41,"location":"Rhiannonton"}},{"attributes":{"name":"Odie O'Hara","age":60,"location":"New Phoebe"}},{"attributes":{"name":"Tiffany O'Keefe","age":22,"location":"Kleintown"}},{"attributes":{"name":"Murl Upton","age":69,"location":"North Stephanyside"}},{"attributes":{"name":"Vicenta Cummings","age":58,"location":"Palm Springs"}},{"attributes":{"name":"Katie Rath","age":51,"location":"Devenboro"}},{"attributes":{"name":"Hannah Bechtelar","age":22,"location":"Mertzbury"}},{"attributes":{"name":"Mr. Johathan Windler","age":78,"location":"Rockyshire"}},{"attributes":{"name":"Sean Veum MD","age":71,"location":"West Malikahaven"}},{"attributes":{"name":"Emanuel Jerde","age":63,"location":"Lake Miltonchester"}},{"attributes":{"name":"Florida Smitham","age":29,"location":"Tigard"}},{"attributes":{"name":"Cayla Kassulke","age":70,"location":"West Kara"}},{"attributes":{"name":"Leo Gerlach","age":48,"location":"Hyattstad"}},{"attributes":{"name":"Claude Williamson","age":34,"location":"Haneborough"}},{"attributes":{"name":"Aaliyah Ritchie","age":65,"location":"Port Lisette"}},{"attributes":{"name":"Sam Grady","age":31,"location":"Port Breanne"}},{"attributes":{"name":"Lawrence Schowalter-Emard II","age":59,"location":"St. Joseph"}},{"attributes":{"name":"Judy Farrell","age":78,"location":"Morgan Hill"}},{"attributes":{"name":"Nella Haley","age":65,"location":"Lake Adriannaboro"}},{"attributes":{"name":"Jermaine McDermott","age":55,"location":"Brantfort"}},{"attributes":{"name":"Cesar Bernier","age":54,"location":"East Theafurt"}},{"attributes":{"name":"Dr. Johnathan Leffler","age":62,"location":"East Federico"}},{"attributes":{"name":"Winnifred Ratke-Bergstrom","age":29,"location":"New Erick"}},{"attributes":{"name":"Grant Wunsch","age":71,"location":"Zoraside"}},{"attributes":{"name":"Todd Trantow","age":45,"location":"South Whittier"}},{"attributes":{"name":"Arvid Hansen IV","age":47,"location":"New Janickville"}},{"attributes":{"name":"Trey Murphy","age":51,"location":"North Arlie"}},{"attributes":{"name":"Cynthia Robel","age":21,"location":"North Curtis"}},{"attributes":{"name":"River Powlowski","age":78,"location":"Alfonzoville"}},{"attributes":{"name":"Alex Witting","age":62,"location":"Adahstad"}},{"attributes":{"name":"Mrs. Erna Howell","age":61,"location":"Lake Vanessa"}},{"attributes":{"name":"Lynn Rosenbaum-Fahey","age":24,"location":"Ericstad"}},{"attributes":{"name":"Frankie Zulauf","age":41,"location":"Bellingham"}},{"attributes":{"name":"Lillie Rohan","age":42,"location":"Skokie"}},{"attributes":{"name":"Adrienne Becker","age":30,"location":"North Oren"}},{"attributes":{"name":"Travon Schaden IV","age":34,"location":"South Candidahaven"}},{"attributes":{"name":"Augustus Hahn","age":79,"location":"Lake Timothyton"}},{"attributes":{"name":"Dr. Larue Reichert","age":77,"location":"Victoria"}},{"attributes":{"name":"Romaine Jakubowski","age":55,"location":"Schoenbury"}},{"attributes":{"name":"Mattie Goyette","age":45,"location":"North Ceciliacester"}},{"attributes":{"name":"Ed O'Connell","age":56,"location":"East Aaron"}},{"attributes":{"name":"Ryan Bashirian","age":39,"location":"Wheaton"}},{"attributes":{"name":"Cathy King","age":37,"location":"Willside"}},{"attributes":{"name":"Davonte Sawayn","age":50,"location":"Port Ryleigh"}},{"attributes":{"name":"Luz Hettinger-Kertzmann","age":68,"location":"Citlallihaven"}},{"attributes":{"name":"Jane Simonis","age":25,"location":"Salt Lake City"}},{"attributes":{"name":"Dr. Carlie Howell","age":54,"location":"Durham"}},{"attributes":{"name":"Felipa Ondricka","age":76,"location":"South Alethaberg"}},{"attributes":{"name":"Geneva McDermott II","age":37,"location":"Ryanshire"}},{"attributes":{"name":"Lindsey Emard","age":30,"location":"Port Ressieworth"}},{"attributes":{"name":"Antoinette Brekke","age":29,"location":"Henryview"}},{"attributes":{"name":"Caroline Turcotte","age":61,"location":"Hesselport"}},{"attributes":{"name":"Krista Gerlach","age":58,"location":"Bradyport"}},{"attributes":{"name":"Stacy Zulauf","age":28,"location":"Cleveland Heights"}},{"attributes":{"name":"Dr. Trevor O'Kon","age":78,"location":"Lake Deven"}},{"attributes":{"name":"Angelo Douglas","age":57,"location":"Kuhicfield"}},{"attributes":{"name":"Jo Renner","age":62,"location":"Naderport"}},{"attributes":{"name":"Minnie Torp","age":56,"location":"Jayceemouth"}},{"attributes":{"name":"Howard Witting","age":65,"location":"Roseborough"}},{"attributes":{"name":"Juana Gerhold","age":29,"location":"Fort Keshawnside"}},{"attributes":{"name":"Leslie Harvey","age":19,"location":"Jerdecester"}},{"attributes":{"name":"Pablo Stokes Sr.","age":23,"location":"New Reyescester"}},{"attributes":{"name":"Mr. Stuart Blick","age":61,"location":"Port Reganside"}},{"attributes":{"name":"Bennett Bayer","age":56,"location":"Port Emmanuelport"}},{"attributes":{"name":"Jonathon Hickle","age":69,"location":"North Modestafort"}},{"attributes":{"name":"Lamar Connelly","age":64,"location":"New Hassan"}},{"attributes":{"name":"Augustus Bashirian","age":18,"location":"Fremont"}},{"attributes":{"name":"Terence Bayer","age":56,"location":"Asheville"}},{"attributes":{"name":"Josh MacGyver","age":69,"location":"Angelamouth"}},{"attributes":{"name":"Trystan Stoltenberg","age":30,"location":"Port Vedafort"}},{"attributes":{"name":"Tre Streich Sr.","age":73,"location":"Reichelworth"}},{"attributes":{"name":"Mose Langworth","age":72,"location":"New Jordon"}},{"attributes":{"name":"Alyce Rempel","age":67,"location":"Calistafurt"}},{"attributes":{"name":"Lydia Kerluke","age":78,"location":"Homenickboro"}},{"attributes":{"name":"Geraldine Johns-Cummings","age":18,"location":"Sigridstead"}},{"attributes":{"name":"Ceasar Douglas IV","age":64,"location":"Manhattan"}},{"attributes":{"name":"Wilbert Bergnaum","age":78,"location":"Anthonychester"}},{"attributes":{"name":"Jean Klein","age":30,"location":"North Onieborough"}},{"attributes":{"name":"Grant Johnson","age":18,"location":"Camdenland"}},{"attributes":{"name":"Brad Jast","age":77,"location":"Fort Myrticeboro"}},{"attributes":{"name":"Willard Harber","age":79,"location":"South Rosa"}},{"attributes":{"name":"Marian Weissnat","age":49,"location":"Tremblayfort"}},{"attributes":{"name":"Eliseo Lindgren","age":36,"location":"Norman"}},{"attributes":{"name":"Justen Ward","age":37,"location":"Fort Smith"}},{"attributes":{"name":"Dr. Isabel Gleichner V","age":68,"location":"Andyview"}},{"attributes":{"name":"Joey Zieme","age":77,"location":"Anaishaven"}},{"attributes":{"name":"Adrienne DuBuque","age":72,"location":"Issacfield"}},{"attributes":{"name":"Blanche Rice","age":73,"location":"South Rickcester"}},{"attributes":{"name":"Janice Cronin","age":63,"location":"Zemlakborough"}},{"attributes":{"name":"Dominick Kuhic","age":74,"location":"McKinney"}},{"attributes":{"name":"Eldora Jacobson","age":73,"location":"Traceycester"}},{"attributes":{"name":"Mr. Esmeralda King","age":45,"location":"St. George"}},{"attributes":{"name":"Gregg Ferry","age":28,"location":"Chicago"}},{"attributes":{"name":"Vesta Terry","age":49,"location":"Johnsonville"}},{"attributes":{"name":"Arthur Rogahn","age":32,"location":"Dahliahaven"}},{"attributes":{"name":"Shirley Emmerich","age":73,"location":"Delano"}},{"attributes":{"name":"Eloise Boyer","age":42,"location":"Port Eddieberg"}},{"attributes":{"name":"Rey Johns I","age":52,"location":"North Domenicaburgh"}},{"attributes":{"name":"Louis Schultz","age":24,"location":"West Magnolia"}},{"attributes":{"name":"Patricia Powlowski","age":58,"location":"Croninhaven"}},{"attributes":{"name":"Carlos Herman","age":80,"location":"Schillerville"}},{"attributes":{"name":"Doug Rosenbaum","age":55,"location":"Cartwrightstad"}},{"attributes":{"name":"Archie Sipes","age":34,"location":"West Kamronfield"}},{"attributes":{"name":"Emily Littel","age":74,"location":"Lebsackstead"}},{"attributes":{"name":"Elenor Shields DDS","age":21,"location":"Lake Casimirstad"}},{"attributes":{"name":"Jamel Hyatt","age":71,"location":"Thousand Oaks"}},{"attributes":{"name":"Robin Rodriguez","age":75,"location":"Cupertino"}},{"attributes":{"name":"Mr. Dillan Ernser","age":19,"location":"New Fabiola"}},{"attributes":{"name":"Patrick Wiza","age":34,"location":"Fort Anikabury"}},{"attributes":{"name":"Blanca Rippin","age":58,"location":"South Bend"}},{"attributes":{"name":"Tyrone Schaefer","age":47,"location":"Randalboro"}},{"attributes":{"name":"Antoinette Waters","age":41,"location":"Lake Ryder"}},{"attributes":{"name":"Doris Gutmann","age":79,"location":"Janyburgh"}},{"attributes":{"name":"Darlene Waelchi III","age":54,"location":"Labadieborough"}},{"attributes":{"name":"Reyes Bosco","age":44,"location":"Ferminfield"}},{"attributes":{"name":"Dr. Tyra Friesen","age":51,"location":"West Rubenstead"}},{"attributes":{"name":"Arlene Waelchi","age":41,"location":"Millsbury"}},{"attributes":{"name":"Loretta Kiehn","age":80,"location":"Hettingerstad"}},{"attributes":{"name":"Lonnie Pagac","age":57,"location":"North Ivahburgh"}},{"attributes":{"name":"Colin Bogan","age":25,"location":"North Lincoln"}},{"attributes":{"name":"Alton Hartmann","age":23,"location":"Port Elias"}},{"attributes":{"name":"Edmond Leffler","age":32,"location":"West Freda"}},{"attributes":{"name":"Shany Morissette","age":73,"location":"Port Vickie"}},{"attributes":{"name":"Lysanne Heaney","age":29,"location":"West Karlfield"}},{"attributes":{"name":"Jennie Crona","age":39,"location":"Port Marciaboro"}},{"attributes":{"name":"Crystel Gerlach","age":35,"location":"Cypress"}},{"attributes":{"name":"Johnnie Johnston","age":38,"location":"Biloxi"}},{"attributes":{"name":"Gianni Davis-Baumbach","age":57,"location":"Lake Tommie"}},{"attributes":{"name":"Delaney Koelpin","age":46,"location":"Hodkiewiczfurt"}},{"attributes":{"name":"Kimberly Okuneva PhD","age":20,"location":"North Sterlington"}},{"attributes":{"name":"Laurie Heller","age":60,"location":"South Raymondmouth"}},{"attributes":{"name":"Deangelo Nienow V","age":24,"location":"Denton"}},{"attributes":{"name":"Paula Sporer DDS","age":18,"location":"Alhambra"}},{"attributes":{"name":"Ellis Weimann","age":70,"location":"Krystalview"}},{"attributes":{"name":"Harriet Bogisich Sr.","age":21,"location":"Zorafield"}},{"attributes":{"name":"Robert Beahan I","age":48,"location":"West Lucas"}},{"attributes":{"name":"Gayle Abshire","age":63,"location":"Dareworth"}},{"attributes":{"name":"Ms. Myra Kling","age":70,"location":"Luismouth"}},{"attributes":{"name":"Daphne Durgan","age":75,"location":"Cleveland Heights"}},{"attributes":{"name":"Loretta Gulgowski","age":29,"location":"East Skylaberg"}},{"attributes":{"name":"Mr. Tammy Hodkiewicz","age":31,"location":"New Kyleigh"}},{"attributes":{"name":"Andre Upton","age":68,"location":"Turcottetown"}},{"attributes":{"name":"Kathy Jacobs","age":32,"location":"Lysannetown"}},{"attributes":{"name":"Miss Mable Auer","age":46,"location":"Niagara Falls"}},{"attributes":{"name":"Keanu Waters","age":26,"location":"Hermannton"}},{"attributes":{"name":"Mikayla Trantow","age":63,"location":"Arlington"}},{"attributes":{"name":"Joe Jakubowski","age":35,"location":"Douglasstad"}},{"attributes":{"name":"Katharina McDermott","age":39,"location":"Herminiofield"}},{"attributes":{"name":"Alfredo Howell","age":30,"location":"North Lindsayberg"}},{"attributes":{"name":"Corey O'Keefe","age":19,"location":"West Brenttown"}},{"attributes":{"name":"Gaston Zieme-Quitzon","age":56,"location":"Gislasonstad"}},{"attributes":{"name":"Esther Schaefer","age":20,"location":"Melbaworth"}},{"attributes":{"name":"Rosa Spencer","age":30,"location":"Springfield"}},{"attributes":{"name":"Moses Ferry","age":66,"location":"San Jacinto"}},{"attributes":{"name":"Werner Towne","age":30,"location":"East Alta"}},{"attributes":{"name":"Creola Reinger","age":43,"location":"Greenville"}},{"attributes":{"name":"Eileen Brown","age":32,"location":"Connport"}},{"attributes":{"name":"Ms. Cecilia Brakus","age":65,"location":"Delmerland"}},{"attributes":{"name":"Hobart Jerde","age":29,"location":"Gleasonborough"}},{"attributes":{"name":"Isobel Okuneva","age":73,"location":"Bergeboro"}},{"attributes":{"name":"Reta Zulauf","age":22,"location":"Jordynmouth"}},{"attributes":{"name":"Darlene Casper","age":55,"location":"West Myrl"}},{"attributes":{"name":"Vance Zulauf","age":35,"location":"Faeville"}},{"attributes":{"name":"Lynn Champlin","age":79,"location":"Hoegercester"}},{"attributes":{"name":"Raphaelle Heidenreich","age":46,"location":"East Nicolette"}},{"attributes":{"name":"Elijah Kohler","age":46,"location":"Reneefield"}},{"attributes":{"name":"Victoria Thompson","age":71,"location":"East Ramonaside"}},{"attributes":{"name":"Molly Orn","age":47,"location":"Osinskistead"}},{"attributes":{"name":"Whitney Homenick","age":18,"location":"Aaronport"}},{"attributes":{"name":"Mr. Eric Roob","age":69,"location":"Jazminfurt"}},{"attributes":{"name":"Yolanda Schuster I","age":67,"location":"Fort Carter"}},{"attributes":{"name":"Erik Schultz","age":49,"location":"East Waino"}},{"attributes":{"name":"Jazlyn Konopelski I","age":20,"location":"Edmundborough"}},{"attributes":{"name":"Antonio Gottlieb-Boehm","age":71,"location":"Gardena"}},{"attributes":{"name":"Clifford Stehr-Vandervort PhD","age":47,"location":"Lockmanton"}},{"attributes":{"name":"Freda Heller","age":44,"location":"South Rosalee"}},{"attributes":{"name":"Claudie Rath","age":69,"location":"Abshirefield"}},{"attributes":{"name":"Myron Predovic","age":80,"location":"Kipfield"}},{"attributes":{"name":"Lemuel Lehner DVM","age":57,"location":"Joannyville"}},{"attributes":{"name":"Maximillian Heller","age":26,"location":"Hilllshire"}},{"attributes":{"name":"Mr. Rogelio Hilpert","age":38,"location":"Rennerworth"}},{"attributes":{"name":"Yolanda Collier","age":28,"location":"Vanmouth"}},{"attributes":{"name":"Rodolfo Larkin","age":71,"location":"Dannieside"}},{"attributes":{"name":"Geovany Pfannerstill-Wilkinson","age":55,"location":"North Caitlyncester"}},{"attributes":{"name":"Gabriel Klocko","age":35,"location":"Alenastad"}},{"attributes":{"name":"Jeffery Harris","age":66,"location":"Fort Jasper"}},{"attributes":{"name":"Rudolph Will","age":61,"location":"Cummeratafurt"}},{"attributes":{"name":"Evangeline Williamson","age":51,"location":"Jastfield"}},{"attributes":{"name":"Israel Carter","age":33,"location":"Muncie"}},{"attributes":{"name":"Joey Sauer","age":26,"location":"Port Ashtonmouth"}},{"attributes":{"name":"Darrell Klein","age":61,"location":"Hammestown"}},{"attributes":{"name":"Emiliano Gutkowski","age":66,"location":"Mannside"}},{"attributes":{"name":"Owen Yost","age":22,"location":"Mullerfort"}},{"attributes":{"name":"Norberto Wehner","age":29,"location":"Francistown"}},{"attributes":{"name":"Ivan McCullough PhD","age":70,"location":"Rohanstead"}},{"attributes":{"name":"Mr. Hiram Little V","age":47,"location":"Palm Harbor"}},{"attributes":{"name":"Maximillian Steuber","age":25,"location":"Ameliaton"}},{"attributes":{"name":"Orpha Batz","age":71,"location":"Cartwrightshire"}},{"attributes":{"name":"Tommie Conroy","age":42,"location":"Lake Charles"}},{"attributes":{"name":"Doyle Spencer","age":41,"location":"Derrickton"}},{"attributes":{"name":"Jamie Strosin","age":73,"location":"Weimannstad"}},{"attributes":{"name":"Antonio Stroman","age":30,"location":"Port Asachester"}},{"attributes":{"name":"Rochelle Barrows","age":44,"location":"North Corenestad"}},{"attributes":{"name":"Abelardo Kertzmann","age":55,"location":"Fort Maude"}},{"attributes":{"name":"Gilbert Nader","age":35,"location":"Uniqueshire"}},{"attributes":{"name":"Gertrude Rodriguez-Lynch","age":27,"location":"West Hartford"}},{"attributes":{"name":"Derrick Cormier","age":64,"location":"Kihnbury"}},{"attributes":{"name":"Brook Braun Jr.","age":61,"location":"Braedenport"}},{"attributes":{"name":"Dr. Stacy Greenholt","age":76,"location":"Tyriquetown"}},{"attributes":{"name":"Felicia Ebert","age":77,"location":"Goodwinstead"}},{"attributes":{"name":"Lee Price","age":63,"location":"Elkhart"}},{"attributes":{"name":"Darlene Kulas-Hackett","age":66,"location":"East Vanessa"}},{"attributes":{"name":"Jeffery Schulist","age":66,"location":"Fort Delphia"}},{"attributes":{"name":"Stuart Shanahan","age":46,"location":"Stephanieville"}},{"attributes":{"name":"Mario Senger Jr.","age":67,"location":"Lake Dovie"}},{"attributes":{"name":"Dr. Hans Schaden-Rau","age":35,"location":"South Janisshire"}},{"attributes":{"name":"Alexander Medhurst","age":40,"location":"Skilesside"}},{"attributes":{"name":"Shelia Rau I","age":69,"location":"Treverborough"}},{"attributes":{"name":"Mr. Aliza Powlowski","age":69,"location":"Delray Beach"}},{"attributes":{"name":"Matilda Schaden","age":56,"location":"Passaic"}},{"attributes":{"name":"Mrs. Raul Pfeffer","age":51,"location":"South Aurelioport"}},{"attributes":{"name":"Dana Grimes","age":67,"location":"Binghamton"}},{"attributes":{"name":"Ms. Celia Wintheiser DVM","age":29,"location":"West Kevinport"}},{"attributes":{"name":"Dana Johnston","age":60,"location":"Yuma"}},{"attributes":{"name":"Carlie Rempel","age":69,"location":"Fort Aishaberg"}},{"attributes":{"name":"Royal Schamberger","age":61,"location":"Pasco"}},{"attributes":{"name":"Florencio Kuhn Sr.","age":76,"location":"Jackyfield"}},{"attributes":{"name":"Ms. Ruby Weissnat","age":36,"location":"Genesisfield"}},{"attributes":{"name":"Don Franecki","age":33,"location":"Cupertino"}},{"attributes":{"name":"Dr. Friedrich Murazik","age":61,"location":"Laviniastad"}},{"attributes":{"name":"Madie Hayes","age":52,"location":"Lisetteside"}},{"attributes":{"name":"Gerardo Grimes-Deckow","age":75,"location":"Pollichburgh"}},{"attributes":{"name":"Edythe Parisian","age":54,"location":"South Julienfort"}},{"attributes":{"name":"Arne Kovacek","age":23,"location":"Delphiachester"}},{"attributes":{"name":"Brennon Champlin","age":77,"location":"North Jaeden"}},{"attributes":{"name":"Pat Klein","age":79,"location":"South Andreanne"}},{"attributes":{"name":"Nina Harber","age":70,"location":"San Marcos"}},{"attributes":{"name":"Miss Maria Ondricka","age":57,"location":"Lavernestad"}},{"attributes":{"name":"Samuel Mitchell","age":68,"location":"Normaboro"}},{"attributes":{"name":"Chad Auer","age":77,"location":"East Daishamouth"}},{"attributes":{"name":"Ms. Sheldon Pacocha","age":64,"location":"Port Enid"}},{"attributes":{"name":"Stuart Hoeger","age":37,"location":"East Danboro"}},{"attributes":{"name":"Chandler Mayer","age":53,"location":"New Abdulport"}},{"attributes":{"name":"Abraham Friesen","age":29,"location":"Lake Maxwell"}},{"attributes":{"name":"Margret Tromp","age":22,"location":"Catherineboro"}},{"attributes":{"name":"Rodger Schulist","age":41,"location":"Port Liamberg"}},{"attributes":{"name":"Mr. Orville Schneider","age":50,"location":"North Billchester"}},{"attributes":{"name":"Dana Greenfelder","age":41,"location":"East Jared"}},{"attributes":{"name":"Casey Schultz","age":20,"location":"Craigmouth"}},{"attributes":{"name":"Eva Predovic","age":25,"location":"Bahringermouth"}},{"attributes":{"name":"Jacquelyn Casper","age":74,"location":"Keelychester"}},{"attributes":{"name":"Ephraim Feil","age":38,"location":"San Clemente"}},{"attributes":{"name":"Cortez Ernser","age":49,"location":"Rennerfort"}},{"attributes":{"name":"Marsha Lakin","age":50,"location":"New Haven"}},{"attributes":{"name":"Karl Reinger","age":27,"location":"Lake Ewald"}},{"attributes":{"name":"June Harber IV","age":51,"location":"Louisville/Jefferson County"}},{"attributes":{"name":"Monserrate Berge","age":75,"location":"Schmittberg"}},{"attributes":{"name":"Gabriel MacGyver","age":55,"location":"Fort Hortensemouth"}},{"attributes":{"name":"Enola Larkin","age":38,"location":"Johns Creek"}},{"attributes":{"name":"Ramona Kertzmann","age":72,"location":"Weissnatton"}},{"attributes":{"name":"Justina Bechtelar","age":67,"location":"Port Tiana"}},{"attributes":{"name":"Dorothy Jones I","age":66,"location":"North Milton"}},{"attributes":{"name":"Vicki Homenick PhD","age":65,"location":"New Nellastad"}},{"attributes":{"name":"Kip Thiel","age":54,"location":"Joanaworth"}},{"attributes":{"name":"Kristin Kuhn","age":72,"location":"Fort Luna"}},{"attributes":{"name":"Mr. Jason Hudson","age":31,"location":"Santa Ana"}},{"attributes":{"name":"Toni Grimes","age":54,"location":"Clifton"}},{"attributes":{"name":"Guadalupe Willms","age":64,"location":"Janesville"}},{"attributes":{"name":"Kristy Durgan","age":36,"location":"West Bridgetworth"}},{"attributes":{"name":"Dr. Homer Grady I","age":67,"location":"Blancheboro"}},{"attributes":{"name":"Chelsey Veum","age":80,"location":"West Chanellehaven"}},{"attributes":{"name":"Jazmin Bradtke","age":71,"location":"Elsieboro"}},{"attributes":{"name":"Anne Lebsack","age":53,"location":"Elyria"}},{"attributes":{"name":"Dr. Donnie Wiegand","age":39,"location":"North Lauderdale"}},{"attributes":{"name":"Cristina Dooley","age":63,"location":"Yakima"}},{"attributes":{"name":"Miss Frances Purdy-Schmeler","age":34,"location":"East Anselbury"}},{"attributes":{"name":"Jenna Williamson PhD","age":35,"location":"Bayonne"}},{"attributes":{"name":"Bernice Cole IV","age":68,"location":"Citlalliland"}},{"attributes":{"name":"Alivia Larkin","age":31,"location":"Andyfort"}},{"attributes":{"name":"Mr. Peter Grimes","age":56,"location":"Fort Libby"}},{"attributes":{"name":"Ryann Gulgowski","age":38,"location":"Inglewood"}},{"attributes":{"name":"Deron Barton","age":48,"location":"Anibalhaven"}},{"attributes":{"name":"Valerie Prosacco","age":78,"location":"Glendora"}},{"attributes":{"name":"Randall Macejkovic","age":43,"location":"Swaniawskifurt"}},{"attributes":{"name":"Jon King","age":21,"location":"North Miami"}},{"attributes":{"name":"Ladarius Cummings","age":44,"location":"Walkertown"}},{"attributes":{"name":"Roberta Padberg","age":20,"location":"Fort Murray"}},{"attributes":{"name":"Mallie Schultz","age":55,"location":"Fort Shannyboro"}},{"attributes":{"name":"Abbey Gusikowski","age":36,"location":"Port Rashawn"}},{"attributes":{"name":"Craig Moore","age":68,"location":"Anchorage"}},{"attributes":{"name":"Kaylie Leuschke","age":28,"location":"Schroedercester"}},{"attributes":{"name":"Violet Larson","age":69,"location":"Araport"}},{"attributes":{"name":"Jim Senger","age":64,"location":"Weberstead"}},{"attributes":{"name":"Erik Hegmann","age":47,"location":"Wisozkstad"}},{"attributes":{"name":"Ervin Abbott","age":66,"location":"West Creola"}},{"attributes":{"name":"Mckenna Halvorson","age":57,"location":"Lake Traceymouth"}},{"attributes":{"name":"Arlene Lemke","age":25,"location":"Lake Rhiannonworth"}},{"attributes":{"name":"Wallace Ziemann","age":21,"location":"Feeneybury"}},{"attributes":{"name":"Katrina Fadel","age":50,"location":"Ebertmouth"}},{"attributes":{"name":"Carole Auer","age":36,"location":"Port Santastad"}},{"attributes":{"name":"Mr. Finn Lueilwitz II","age":36,"location":"East Gunnerfield"}},{"attributes":{"name":"Mr. Rudolph Johns DDS","age":53,"location":"Lake Grantcester"}},{"attributes":{"name":"Esther Trantow MD","age":22,"location":"Archborough"}},{"attributes":{"name":"Hettie Bode","age":32,"location":"Brionnaland"}},{"attributes":{"name":"Christa Feil","age":63,"location":"Leilaville"}},{"attributes":{"name":"Jessyca Zemlak","age":61,"location":"North Jimmieville"}},{"attributes":{"name":"Miss Bobbie Padberg","age":25,"location":"Kenner"}},{"attributes":{"name":"Taylor Lockman","age":37,"location":"Ziemannmouth"}},{"attributes":{"name":"Bettye Schaefer","age":55,"location":"Runolfsdottirboro"}},{"attributes":{"name":"Alba Ernser","age":51,"location":"Evieshire"}},{"attributes":{"name":"Laverne Mayer","age":60,"location":"Grand Island"}},{"attributes":{"name":"Clinton Langworth","age":31,"location":"Loganfurt"}},{"attributes":{"name":"Domenico Lind","age":52,"location":"New Lane"}},{"attributes":{"name":"Natalie Beahan","age":77,"location":"Fort Rubye"}},{"attributes":{"name":"Agustin Lebsack II","age":19,"location":"West Jeramie"}},{"attributes":{"name":"Arch Abshire","age":31,"location":"Kendrafield"}},{"attributes":{"name":"Johnathan Bergstrom DVM","age":44,"location":"Port Sandy"}},{"attributes":{"name":"Marina Mayert","age":55,"location":"West Destiney"}},{"attributes":{"name":"Shawna Hickle","age":52,"location":"Fort Janis"}},{"attributes":{"name":"Cristina Funk","age":30,"location":"Arcadia"}},{"attributes":{"name":"Dr. Andrew O'Hara Sr.","age":69,"location":"Konopelskiborough"}},{"attributes":{"name":"Renee Kunde","age":53,"location":"Buckridgemouth"}},{"attributes":{"name":"Terrance Swaniawski","age":49,"location":"Blandashire"}},{"attributes":{"name":"Gilberto Terry","age":23,"location":"North Alexaneborough"}},{"attributes":{"name":"Marquis Mayert V","age":46,"location":"South Gate"}},{"attributes":{"name":"Rosa Paucek","age":28,"location":"Ebertburgh"}},{"attributes":{"name":"Jedidiah Runolfsdottir","age":65,"location":"Runolfssonville"}},{"attributes":{"name":"Pearl Schimmel","age":20,"location":"West Thadcester"}},{"attributes":{"name":"Abel Prosacco","age":63,"location":"Monahanworth"}},{"attributes":{"name":"Terry VonRueden V","age":44,"location":"East Joany"}},{"attributes":{"name":"Ron Frami","age":76,"location":"New Antoinettefort"}},{"attributes":{"name":"Cecil Renner","age":79,"location":"New Magnolia"}},{"attributes":{"name":"Alicia Christiansen","age":50,"location":"Goldnerfort"}},{"attributes":{"name":"Hanna Hansen","age":55,"location":"Texas City"}},{"attributes":{"name":"Elva Erdman","age":30,"location":"Lincoln"}},{"attributes":{"name":"Kathy Ebert-Grant","age":76,"location":"Omatown"}},{"attributes":{"name":"Miss Willis Crooks","age":20,"location":"Nicolasborough"}},{"attributes":{"name":"Mr. Timmy Cremin","age":56,"location":"South Rhiannonberg"}},{"attributes":{"name":"Silvia Streich III","age":23,"location":"Chula Vista"}},{"attributes":{"name":"Virgil Harber Sr.","age":63,"location":"Andersonside"}},{"attributes":{"name":"Iva Kovacek","age":21,"location":"Framingham"}},{"attributes":{"name":"Harold Gutkowski","age":79,"location":"New Rafaela"}},{"attributes":{"name":"Mr. Flavio Barrows","age":38,"location":"Port Charlotte"}},{"attributes":{"name":"Allan Klocko","age":60,"location":"Erinstead"}},{"attributes":{"name":"Mrs. Leo Bernhard","age":68,"location":"Joycefurt"}},{"attributes":{"name":"Lila Muller-Johns","age":65,"location":"New Adelacester"}},{"attributes":{"name":"Natasha Durgan","age":46,"location":"Lake Helena"}},{"attributes":{"name":"Zachary Huels MD","age":46,"location":"New Ethelyn"}},{"attributes":{"name":"Allison Bednar","age":77,"location":"Sydnieton"}},{"attributes":{"name":"Raul Weimann","age":56,"location":"North Elnaview"}},{"attributes":{"name":"Luz Christiansen","age":34,"location":"Elenoramouth"}},{"attributes":{"name":"Alejandro Monahan","age":30,"location":"Kassulkecester"}},{"attributes":{"name":"Krystel Schoen MD","age":26,"location":"Abernathyborough"}},{"attributes":{"name":"Florian Cruickshank","age":46,"location":"Diamondport"}},{"attributes":{"name":"Mr. Citlalli Schulist","age":31,"location":"San Rafael"}},{"attributes":{"name":"Jeremiah Heathcote","age":73,"location":"North Jadyn"}},{"attributes":{"name":"Gary Paucek","age":77,"location":"South Cale"}},{"attributes":{"name":"Eugenia Runte","age":48,"location":"West Bettie"}},{"attributes":{"name":"Geraldine Bahringer","age":18,"location":"Dickensland"}},{"attributes":{"name":"Theodora Heidenreich","age":42,"location":"New Sydneechester"}},{"attributes":{"name":"Irving Robel-Berge","age":45,"location":"Trenton"}},{"attributes":{"name":"Candice Cronin","age":49,"location":"Gusikowskimouth"}},{"attributes":{"name":"Felicity Bernier","age":55,"location":"Casimirchester"}},{"attributes":{"name":"Ashton Hudson","age":37,"location":"East Rory"}},{"attributes":{"name":"Darion Keebler","age":79,"location":"Port Tommie"}},{"attributes":{"name":"Mrs. Hilario Legros","age":33,"location":"Sunnyvale"}},{"attributes":{"name":"Kristin Lakin","age":75,"location":"East Justyn"}},{"attributes":{"name":"Samanta Strosin","age":35,"location":"North Margueriteshire"}},{"attributes":{"name":"Coby Schmidt","age":19,"location":"Fort Rebeca"}},{"attributes":{"name":"Toni Connelly","age":47,"location":"Orem"}},{"attributes":{"name":"Lydia Ortiz","age":75,"location":"New Pearlieland"}},{"attributes":{"name":"Tina Brekke","age":54,"location":"New Aliyatown"}},{"attributes":{"name":"Kellen Barton","age":35,"location":"East Carmelfort"}},{"attributes":{"name":"Elnora Monahan","age":33,"location":"St. Joseph"}},{"attributes":{"name":"Kenny Sporer","age":29,"location":"Lake Tobyborough"}},{"attributes":{"name":"Lane Gislason","age":47,"location":"Olaton"}},{"attributes":{"name":"Ms. Latoya Purdy","age":59,"location":"Kameronmouth"}},{"attributes":{"name":"Patti Keebler Jr.","age":25,"location":"Buckeye"}},{"attributes":{"name":"Marlene Bode","age":62,"location":"McDermottstad"}},{"attributes":{"name":"Ulises Tillman","age":65,"location":"North Emiliabury"}},{"attributes":{"name":"Erik Medhurst-Bergnaum","age":64,"location":"Soledadfort"}},{"attributes":{"name":"Mr. Frank Spinka","age":18,"location":"El Paso"}},{"attributes":{"name":"Merle Jacobi","age":19,"location":"Utica"}},{"attributes":{"name":"Kenny Upton","age":45,"location":"Ankeny"}},{"attributes":{"name":"Stacy Bauch","age":69,"location":"West Sofiaton"}},{"attributes":{"name":"Alton Nitzsche","age":65,"location":"Fort Arielle"}},{"attributes":{"name":"Rosanna Rolfson","age":36,"location":"Rosalialand"}},{"attributes":{"name":"Helene Marquardt","age":24,"location":"Tucson"}},{"attributes":{"name":"Mrs. Jane Ullrich DDS","age":28,"location":"Nyahside"}},{"attributes":{"name":"Timmy Abbott","age":35,"location":"New Isabellburgh"}},{"attributes":{"name":"Ramiro McCullough-Shanahan","age":37,"location":"Prohaskaland"}},{"attributes":{"name":"Alexandria Conn","age":62,"location":"South Gerardochester"}},{"attributes":{"name":"Conrad Abshire","age":55,"location":"Cupertino"}},{"attributes":{"name":"Ellis Emmerich","age":29,"location":"Wintheiserfort"}},{"attributes":{"name":"Nancy Schmeler","age":41,"location":"West Mike"}},{"attributes":{"name":"Lessie Ferry","age":48,"location":"Tamiami"}},{"attributes":{"name":"Kristy Rath","age":61,"location":"Enosstead"}},{"attributes":{"name":"Scarlett Jacobson","age":26,"location":"Fort Blanca"}},{"attributes":{"name":"Elizabeth Walsh","age":35,"location":"Alenaborough"}},{"attributes":{"name":"Dwight Herman","age":44,"location":"Austynfield"}},{"attributes":{"name":"Cedric Balistreri-Leannon","age":77,"location":"Kirstenside"}},{"attributes":{"name":"Sophia Orn","age":44,"location":"Fort Alysha"}},{"attributes":{"name":"Mr. Louie Russel","age":27,"location":"Concepcionstad"}},{"attributes":{"name":"Rolando Schultz III","age":42,"location":"Fort Nathan"}},{"attributes":{"name":"Blanche Grady MD","age":29,"location":"East Eino"}},{"attributes":{"name":"Anderson Grant","age":74,"location":"Hoytview"}},{"attributes":{"name":"Mrs. Earlene Olson","age":66,"location":"Heathcoteland"}},{"attributes":{"name":"Scott Kirlin DDS","age":48,"location":"West Deven"}},{"attributes":{"name":"Misty Bode","age":49,"location":"West Shaynacester"}},{"attributes":{"name":"Devin VonRueden","age":31,"location":"Thompsonfort"}},{"attributes":{"name":"Collin Smitham DDS","age":42,"location":"West Neoma"}},{"attributes":{"name":"Veronica VonRueden","age":76,"location":"Port Claudebury"}},{"attributes":{"name":"Sophie Dietrich","age":27,"location":"South Elwyn"}},{"attributes":{"name":"Tomas Schmitt","age":40,"location":"Melbourne"}},{"attributes":{"name":"Marvin Dickinson","age":75,"location":"Port Hilma"}},{"attributes":{"name":"Jonathon Pfannerstill","age":64,"location":"Orvalmouth"}},{"attributes":{"name":"Hilma Ullrich DDS","age":25,"location":"Manchester"}},{"attributes":{"name":"Cortez Hills","age":71,"location":"Mansfield"}},{"attributes":{"name":"Elaine Crist III","age":59,"location":"Zionbury"}},{"attributes":{"name":"Betty Wolf","age":20,"location":"Konopelskistad"}},{"attributes":{"name":"Genevieve Marvin","age":63,"location":"East Kayleyport"}},{"attributes":{"name":"Karl Jast","age":72,"location":"South Geostad"}},{"attributes":{"name":"Lynn Bednar","age":71,"location":"South Bettye"}},{"attributes":{"name":"Corey Smitham-Hintz","age":56,"location":"Terryview"}},{"attributes":{"name":"Alison Lakin Sr.","age":37,"location":"North Charleston"}},{"attributes":{"name":"Lois Gleason","age":62,"location":"Jarrellchester"}},{"attributes":{"name":"Anthony Stoltenberg","age":44,"location":"Fort Emile"}},{"attributes":{"name":"Andre Lowe","age":78,"location":"Jayceport"}},{"attributes":{"name":"Rudolph Lynch","age":51,"location":"Ritchiehaven"}},{"attributes":{"name":"Mr. Bobby Gerhold","age":56,"location":"Ryanmouth"}},{"attributes":{"name":"Ann McClure","age":36,"location":"Avondale"}},{"attributes":{"name":"Eladio Corkery","age":44,"location":"South Kasey"}},{"attributes":{"name":"Mrs. Bennie Kshlerin","age":76,"location":"New Thomasland"}},{"attributes":{"name":"Ron Altenwerth","age":44,"location":"Llewellynton"}},{"attributes":{"name":"Pearl Raynor","age":60,"location":"North Moriahshire"}},{"attributes":{"name":"Phyllis Gutmann","age":49,"location":"New Maidamouth"}},{"attributes":{"name":"Wendy Swaniawski","age":68,"location":"Country Club"}},{"attributes":{"name":"Miss Catherine Sanford","age":54,"location":"Destiniland"}},{"attributes":{"name":"Alden Lakin","age":33,"location":"Jupiter"}},{"attributes":{"name":"Adella Hamill-Roberts","age":56,"location":"Reyesstead"}},{"attributes":{"name":"Herta Senger Jr.","age":68,"location":"Lesleybury"}},{"attributes":{"name":"Tremayne Howe","age":53,"location":"North Wilhelmineworth"}},{"attributes":{"name":"Vincent Kozey","age":41,"location":"Rennerworth"}},{"attributes":{"name":"Chloe Reinger","age":66,"location":"Konopelskiborough"}},{"attributes":{"name":"Mattie Hamill","age":36,"location":"High Point"}},{"attributes":{"name":"Frederick Abbott","age":49,"location":"Frederikcester"}},{"attributes":{"name":"Laura Hyatt","age":31,"location":"Kaitlinview"}},{"attributes":{"name":"Rachel Leannon","age":56,"location":"Rexville"}},{"attributes":{"name":"Krista Welch","age":41,"location":"Lake Mellie"}},{"attributes":{"name":"Erin Marvin","age":18,"location":"Jacquelynfurt"}},{"attributes":{"name":"Carlie Miller","age":59,"location":"Erikashire"}},{"attributes":{"name":"Gideon Wolf","age":36,"location":"Dellafort"}},{"attributes":{"name":"Gerald Schulist","age":48,"location":"Port Delaneyville"}},{"attributes":{"name":"Wilbert Bayer","age":76,"location":"Filomenachester"}},{"attributes":{"name":"Nichole Wuckert","age":22,"location":"Barbarafield"}},{"attributes":{"name":"Dr. Stephan Hermann DDS","age":70,"location":"West Hildegard"}},{"attributes":{"name":"Ruben Shanahan","age":48,"location":"Port Caleigh"}},{"attributes":{"name":"Germaine Brekke","age":64,"location":"Lake Lesterborough"}},{"attributes":{"name":"Garrison Leffler","age":38,"location":"Magdalenaport"}},{"attributes":{"name":"Heidi Waters","age":21,"location":"East Chayaburgh"}},{"attributes":{"name":"Dandre O'Connell","age":41,"location":"Las Vegas"}},{"attributes":{"name":"Alton McKenzie","age":59,"location":"East Dusty"}},{"attributes":{"name":"Hilda Kunde","age":40,"location":"Apple Valley"}},{"attributes":{"name":"Shanna Jones Jr.","age":56,"location":"Boscocester"}},{"attributes":{"name":"Salvatore Walter","age":44,"location":"Strackeview"}},{"attributes":{"name":"Lena Hodkiewicz","age":56,"location":"North Americoboro"}},{"attributes":{"name":"Ewell Sauer","age":39,"location":"Fort Wileyland"}},{"attributes":{"name":"Latoya Emard PhD","age":61,"location":"Hellerbury"}},{"attributes":{"name":"Houston Strosin","age":57,"location":"Muellerfort"}},{"attributes":{"name":"Dr. Leigh Wisoky","age":35,"location":"Bradychester"}},{"attributes":{"name":"Willis Jakubowski","age":62,"location":"South Danialfurt"}},{"attributes":{"name":"Miss Arnoldo Torphy","age":36,"location":"Perris"}},{"attributes":{"name":"Sabrina Bauch","age":29,"location":"Fort Maudechester"}},{"attributes":{"name":"Una Barton","age":43,"location":"Fort Nyahmouth"}},{"attributes":{"name":"Ardith Kozey","age":33,"location":"Ernestport"}},{"attributes":{"name":"Johnnie Goldner","age":18,"location":"Kiarraborough"}},{"attributes":{"name":"Ima Stokes","age":77,"location":"Arlington Heights"}},{"attributes":{"name":"Carole Kilback","age":60,"location":"Langoshville"}},{"attributes":{"name":"Theo Miller","age":22,"location":"Alyssonfield"}},{"attributes":{"name":"Timmothy Quigley","age":22,"location":"Valentinhaven"}},{"attributes":{"name":"Destin Klocko","age":40,"location":"West Korbinside"}},{"attributes":{"name":"Randall Conroy","age":67,"location":"North Annabelmouth"}},{"attributes":{"name":"Kristi Wisozk","age":42,"location":"Kendall"}},{"attributes":{"name":"Jakob Aufderhar","age":58,"location":"Somerville"}},{"attributes":{"name":"Arthur Emmerich","age":30,"location":"North Hallie"}},{"attributes":{"name":"Annamarie Kilback","age":78,"location":"Deventown"}},{"attributes":{"name":"Lurline Schamberger","age":31,"location":"Bell Gardens"}},{"attributes":{"name":"Travis Hoppe","age":69,"location":"Portage"}},{"attributes":{"name":"Matthew Reinger I","age":22,"location":"Watsicaside"}},{"attributes":{"name":"Golden VonRueden","age":56,"location":"Smithamton"}},{"attributes":{"name":"Debra Gutkowski","age":49,"location":"Ivystad"}},{"attributes":{"name":"Dr. Frieda Volkman-Rutherford","age":58,"location":"East Hershelland"}},{"attributes":{"name":"Bo Hoeger","age":74,"location":"Lake Telly"}},{"attributes":{"name":"Donnie Durgan","age":52,"location":"Escondido"}},{"attributes":{"name":"Carley Kreiger","age":47,"location":"Lake Bartholomefort"}},{"attributes":{"name":"Bennie Christiansen","age":30,"location":"Champlintown"}},{"attributes":{"name":"Alma Rodriguez","age":49,"location":"Rodriguezchester"}},{"attributes":{"name":"Kylie Cummings DDS","age":45,"location":"South Jay"}},{"attributes":{"name":"Micheal Ondricka","age":78,"location":"Marvinview"}},{"attributes":{"name":"Mr. Watson O'Keefe","age":41,"location":"Corkeryfort"}},{"attributes":{"name":"Rose Labadie II","age":38,"location":"Rosaberg"}},{"attributes":{"name":"Yasmeen Maggio III","age":60,"location":"South Milford"}},{"attributes":{"name":"Cora Bechtelar V","age":29,"location":"Brockton"}},{"attributes":{"name":"Tracy Hilll","age":77,"location":"West Marianoton"}},{"attributes":{"name":"Hunter Wolf-Walter DVM","age":70,"location":"Aliso Viejo"}},{"attributes":{"name":"Jared Hermiston","age":31,"location":"Niagara Falls"}},{"attributes":{"name":"June Dietrich","age":63,"location":"Arlington"}},{"attributes":{"name":"Miss Celestine Schiller","age":55,"location":"Merlfort"}},{"attributes":{"name":"Jed Goyette","age":28,"location":"South Valley"}},{"attributes":{"name":"Dr. Ashley Ferry","age":34,"location":"Ceasarton"}},{"attributes":{"name":"Mrs. Katherine Feest","age":50,"location":"New Horaceville"}},{"attributes":{"name":"Myrtle Cremin","age":35,"location":"Beaverton"}},{"attributes":{"name":"Jan Feest I","age":36,"location":"West Lorna"}},{"attributes":{"name":"Ronald Johnson","age":37,"location":"McAllen"}},{"attributes":{"name":"Arlene Hegmann","age":54,"location":"Queenborough"}},{"attributes":{"name":"Russell Hilll","age":57,"location":"Mitchellworth"}},{"attributes":{"name":"Jeanette Roberts","age":22,"location":"Lake Paulineport"}},{"attributes":{"name":"Julia Bruen","age":19,"location":"Walshborough"}},{"attributes":{"name":"Mr. Danny McCullough","age":35,"location":"Labadiestad"}},{"attributes":{"name":"Daren Zulauf","age":24,"location":"Kaseycester"}},{"attributes":{"name":"Loyal O'Kon","age":77,"location":"Bothell"}},{"attributes":{"name":"Sofia Ullrich","age":27,"location":"West Sashafurt"}},{"attributes":{"name":"Elaine Crooks","age":57,"location":"San Angelo"}},{"attributes":{"name":"Stevie Runte IV","age":52,"location":"DuBuqueview"}},{"attributes":{"name":"Jeff Rohan","age":52,"location":"Denesikborough"}},{"attributes":{"name":"Elizabeth Davis","age":42,"location":"West Carashire"}},{"attributes":{"name":"Sonja Bernier","age":71,"location":"South Caesarport"}},{"attributes":{"name":"Arturo Legros","age":40,"location":"Bowling Green"}},{"attributes":{"name":"Salvador Franecki","age":49,"location":"Hayesside"}},{"attributes":{"name":"Natalie Von","age":36,"location":"Haydenstad"}},{"attributes":{"name":"Lucy Hilpert DDS","age":31,"location":"Bernitaboro"}},{"attributes":{"name":"Doyle Wilkinson","age":77,"location":"Lake Preston"}},{"attributes":{"name":"Alexandre Gerlach","age":41,"location":"Penelopefort"}},{"attributes":{"name":"Marco Kovacek","age":35,"location":"O'Haraland"}},{"attributes":{"name":"Demario Kuhlman Jr.","age":51,"location":"South Shanie"}},{"attributes":{"name":"Pat Considine I","age":55,"location":"North Aliyabury"}},{"attributes":{"name":"Ewald Turcotte","age":37,"location":"Wolfftown"}},{"attributes":{"name":"Andreane Hodkiewicz","age":19,"location":"Port Vella"}},{"attributes":{"name":"Ayana Romaguera","age":61,"location":"Westburgh"}},{"attributes":{"name":"Dr. Terri Gottlieb","age":78,"location":"Toms River"}},{"attributes":{"name":"Zaria Smith","age":24,"location":"Stefanieport"}},{"attributes":{"name":"Vivienne Lemke","age":44,"location":"Walkerboro"}},{"attributes":{"name":"Juanita Kuhic","age":74,"location":"Jastview"}},{"attributes":{"name":"Sonja Williamson","age":27,"location":"Lynwood"}},{"attributes":{"name":"Derek Halvorson","age":74,"location":"Mansfield"}},{"attributes":{"name":"Mr. Andrea Harvey","age":72,"location":"Thoratown"}},{"attributes":{"name":"Eula Prosacco","age":75,"location":"Davis"}},{"attributes":{"name":"Maureen Yundt","age":51,"location":"Port Garett"}},{"attributes":{"name":"Natalie McCullough","age":22,"location":"Beaverton"}},{"attributes":{"name":"Alejandro Kohler-Hamill","age":76,"location":"Fort Armani"}},{"attributes":{"name":"Geraldine Littel","age":51,"location":"Connorfield"}},{"attributes":{"name":"Laurie Schneider","age":61,"location":"Lake Fredrick"}},{"attributes":{"name":"Audra Rodriguez","age":47,"location":"Fort Jessycaport"}},{"attributes":{"name":"Vincent Stamm","age":73,"location":"Luisfurt"}},{"attributes":{"name":"Cora Fay","age":62,"location":"Angelinacester"}},{"attributes":{"name":"Cora Boyle","age":76,"location":"Rolfsonfield"}},{"attributes":{"name":"Julio Smith","age":37,"location":"Port Lailafield"}},{"attributes":{"name":"Walter Stamm Sr.","age":72,"location":"Beahanland"}},{"attributes":{"name":"Chester Schiller","age":61,"location":"Daytona Beach"}},{"attributes":{"name":"Emily Spinka","age":42,"location":"Ruthieland"}},{"attributes":{"name":"Savannah Blanda","age":45,"location":"Lake Norbertoburgh"}},{"attributes":{"name":"Emmett Emmerich","age":34,"location":"Deionborough"}},{"attributes":{"name":"Melvin Price MD","age":48,"location":"New Daynafort"}},{"attributes":{"name":"Casey Powlowski","age":78,"location":"West Cecileside"}},{"attributes":{"name":"Bertha Howell-Hand","age":41,"location":"Port Lorenbury"}},{"attributes":{"name":"Irma Jaskolski","age":29,"location":"Lake Mariofurt"}},{"attributes":{"name":"Calvin Fritsch","age":59,"location":"Port Skylar"}},{"attributes":{"name":"Leon Heathcote","age":37,"location":"Connellyland"}},{"attributes":{"name":"Mr. Fred Lebsack","age":71,"location":"Emmerichbury"}},{"attributes":{"name":"Mr. Angel Lebsack","age":54,"location":"East Robbieland"}},{"attributes":{"name":"Teresa Leannon DDS","age":38,"location":"Heathcotechester"}},{"attributes":{"name":"Jackie Shanahan","age":22,"location":"South Rhiannon"}},{"attributes":{"name":"Roberto Blanda","age":35,"location":"Bradtkefurt"}},{"attributes":{"name":"Vern Ryan","age":21,"location":"Buffalo Grove"}},{"attributes":{"name":"Kaden Lebsack","age":66,"location":"Fort Smith"}},{"attributes":{"name":"Todd Crooks","age":39,"location":"Schmelerhaven"}},{"attributes":{"name":"Tabitha Hirthe","age":77,"location":"Hammesfurt"}},{"attributes":{"name":"Mr. Damon Bahringer","age":64,"location":"Millerworth"}},{"attributes":{"name":"Rosemarie Rodriguez","age":26,"location":"Lehi"}},{"attributes":{"name":"Kristoffer Hane","age":24,"location":"Port Jean"}},{"attributes":{"name":"Omari Marquardt","age":33,"location":"Menifee"}},{"attributes":{"name":"Tomasa Huel","age":70,"location":"Deefort"}},{"attributes":{"name":"Kathryne Yundt","age":63,"location":"Lake Raymond"}},{"attributes":{"name":"Wava Smitham","age":18,"location":"Ulicesfurt"}},{"attributes":{"name":"Jennings Hermiston","age":76,"location":"Champaign"}},{"attributes":{"name":"Zachariah Jacobi-Sawayn DDS","age":41,"location":"Rolandohaven"}},{"attributes":{"name":"Miss Rudolph Reynolds PhD","age":21,"location":"Boydfort"}},{"attributes":{"name":"Dr. Julia Ullrich","age":50,"location":"Turcottestead"}},{"attributes":{"name":"Felipe Mohr Sr.","age":73,"location":"Addiestead"}},{"attributes":{"name":"George Kessler","age":20,"location":"East Rahulside"}},{"attributes":{"name":"Zachariah Mraz","age":71,"location":"East Jeraldland"}},{"attributes":{"name":"Dora Cummings","age":66,"location":"Brooklynside"}},{"attributes":{"name":"Amos O'Connell Jr.","age":23,"location":"Rock Hill"}},{"attributes":{"name":"Maeve Ankunding","age":75,"location":"Bayerworth"}},{"attributes":{"name":"Steve Goyette DDS","age":48,"location":"Aronhaven"}},{"attributes":{"name":"Minnie Pagac","age":25,"location":"New Destinystead"}},{"attributes":{"name":"Alfredo Bergstrom","age":40,"location":"Gorczanybury"}},{"attributes":{"name":"Lionel Quitzon-Hoppe","age":44,"location":"Feltonstad"}},{"attributes":{"name":"Delphia Larkin","age":62,"location":"Greghaven"}},{"attributes":{"name":"Esta Kemmer","age":31,"location":"North Lazaroview"}},{"attributes":{"name":"Chadrick Kuphal II","age":69,"location":"Daynehaven"}},{"attributes":{"name":"Linwood Moen","age":64,"location":"South Brendan"}},{"attributes":{"name":"Arturo Murray","age":50,"location":"Reston"}},{"attributes":{"name":"Gerald Block","age":34,"location":"Davonstead"}},{"attributes":{"name":"Dr. Mitchel Upton","age":77,"location":"Henderson"}},{"attributes":{"name":"Chauncey Lakin","age":58,"location":"West Felicita"}},{"attributes":{"name":"Rylee Hoppe","age":22,"location":"Fort Henriettemouth"}},{"attributes":{"name":"Sigrid Marks","age":53,"location":"Yonkers"}},{"attributes":{"name":"Minnie Goodwin","age":28,"location":"Berneicechester"}},{"attributes":{"name":"Evan Brakus","age":74,"location":"Schuppeberg"}},{"attributes":{"name":"Domingo McDermott","age":62,"location":"Kuhlmancester"}},{"attributes":{"name":"Mauricio Harber","age":77,"location":"Downers Grove"}},{"attributes":{"name":"Shawn Lebsack","age":55,"location":"Lorenzomouth"}},{"attributes":{"name":"Nicole Ledner","age":68,"location":"Lake Ena"}},{"attributes":{"name":"Thora Aufderhar","age":37,"location":"Fort Eloybury"}},{"attributes":{"name":"Lola Powlowski","age":39,"location":"New Bradenchester"}},{"attributes":{"name":"Emanuel Graham","age":67,"location":"North Cordell"}},{"attributes":{"name":"Vince Ryan","age":79,"location":"Lake Abigalefield"}},{"attributes":{"name":"Benny Beahan","age":70,"location":"Avisshire"}},{"attributes":{"name":"Mackenzie Gislason","age":45,"location":"Cassidyfurt"}},{"attributes":{"name":"Donna Lubowitz","age":61,"location":"Schultzland"}},{"attributes":{"name":"Ervin Kshlerin","age":59,"location":"Lake Ramona"}},{"attributes":{"name":"Miss Teagan Hirthe","age":42,"location":"Libbyside"}},{"attributes":{"name":"Dolores Cummings","age":56,"location":"Kuphalland"}},{"attributes":{"name":"Randall Goldner","age":30,"location":"Kallieville"}},{"attributes":{"name":"Fred Schultz","age":71,"location":"North Alexie"}},{"attributes":{"name":"Rafael Satterfield","age":80,"location":"Eulaberg"}},{"attributes":{"name":"Mr. Neil O'Keefe","age":33,"location":"East Charley"}},{"attributes":{"name":"Mr. Willie Bernhard","age":22,"location":"Raynorhaven"}},{"attributes":{"name":"Percy Lesch","age":32,"location":"West Daniella"}},{"attributes":{"name":"Steven Leannon PhD","age":19,"location":"Mohrshire"}},{"attributes":{"name":"Anthony Konopelski DVM","age":48,"location":"Council Bluffs"}},{"attributes":{"name":"Meredith Huel","age":22,"location":"Port Allen"}},{"attributes":{"name":"Dustin Klein MD","age":44,"location":"Tustin"}},{"attributes":{"name":"Leta Konopelski","age":42,"location":"West Glenfort"}},{"attributes":{"name":"Ollie Heathcote","age":65,"location":"Albuquerque"}},{"attributes":{"name":"Roosevelt Herman","age":35,"location":"Terrillberg"}},{"attributes":{"name":"Blanche D'Amore-Bednar III","age":36,"location":"North Margarete"}},{"attributes":{"name":"Darnell Weissnat","age":22,"location":"Fort Furman"}},{"attributes":{"name":"Floyd Larson","age":44,"location":"Shanahanton"}},{"attributes":{"name":"Paul Huel","age":49,"location":"Lake Micah"}},{"attributes":{"name":"Boyd Cassin","age":43,"location":"Thurmanstad"}},{"attributes":{"name":"Ms. Shana Jacobson","age":64,"location":"Indianapolis"}},{"attributes":{"name":"Marguerite Gottlieb","age":74,"location":"Moline"}},{"attributes":{"name":"Cristobal Stroman DVM","age":20,"location":"Kuphalport"}},{"attributes":{"name":"Joy Satterfield","age":41,"location":"Kaileyville"}},{"attributes":{"name":"Miss Bradford Raynor","age":30,"location":"New Camillaberg"}},{"attributes":{"name":"Mae Moen","age":70,"location":"Trenton"}},{"attributes":{"name":"Kennedi Reinger","age":23,"location":"Jastbury"}},{"attributes":{"name":"Duane Fritsch","age":69,"location":"Alhambra"}},{"attributes":{"name":"Willie Halvorson","age":19,"location":"Runteburgh"}},{"attributes":{"name":"Jan Mertz","age":63,"location":"Darwinville"}},{"attributes":{"name":"Tiffany Jones","age":64,"location":"Ofeliafield"}},{"attributes":{"name":"Korbin Runolfsson","age":57,"location":"Fort Mekhi"}},{"attributes":{"name":"Spencer Roob","age":23,"location":"Fort Cristian"}},{"attributes":{"name":"Eryn Kerluke V","age":79,"location":"West Lavinaland"}},{"attributes":{"name":"Lowell Crona","age":45,"location":"Haagchester"}},{"attributes":{"name":"Lorraine McCullough","age":56,"location":"South Carmel"}},{"attributes":{"name":"Kennedy Quigley","age":42,"location":"Andrewfort"}},{"attributes":{"name":"Alexander Strosin","age":74,"location":"Lancaster"}},{"attributes":{"name":"Antonia Schuppe","age":20,"location":"Moshefort"}},{"attributes":{"name":"Adan Harvey","age":67,"location":"Lake Gustaveworth"}},{"attributes":{"name":"Tracey Mayer","age":57,"location":"Collinscester"}},{"attributes":{"name":"Tabitha Prosacco","age":63,"location":"Santa Monica"}},{"attributes":{"name":"Mr. Charles Kuhlman","age":27,"location":"Plano"}},{"attributes":{"name":"Ines Pfannerstill","age":74,"location":"Belleville"}},{"attributes":{"name":"Helen Hilll I","age":29,"location":"Volkmantown"}},{"attributes":{"name":"Aubrey Johnston","age":23,"location":"Brekkemouth"}},{"attributes":{"name":"Cornelius Thompson","age":80,"location":"North Lizaborough"}},{"attributes":{"name":"Summer Dare","age":71,"location":"Champlinfort"}},{"attributes":{"name":"Griffin Zieme","age":60,"location":"North Yasmin"}},{"attributes":{"name":"Nadia Runte","age":19,"location":"Hortensefort"}},{"attributes":{"name":"Miss Geraldine Koss","age":70,"location":"Johnstonland"}},{"attributes":{"name":"Kara Russel","age":56,"location":"Fort Jerad"}},{"attributes":{"name":"Maya Zulauf","age":50,"location":"West Nickolas"}},{"attributes":{"name":"Janice Huels","age":52,"location":"Fountainebleau"}},{"attributes":{"name":"Sadie Stanton","age":53,"location":"Hebercester"}},{"attributes":{"name":"Ali Klein V","age":59,"location":"North Curtisstad"}},{"attributes":{"name":"Dr. Henry Considine","age":29,"location":"New Bradfordmouth"}},{"attributes":{"name":"Jason Larkin","age":18,"location":"Vacaville"}},{"attributes":{"name":"Dario Langosh","age":58,"location":"Port Dallin"}},{"attributes":{"name":"Ben Ondricka","age":30,"location":"Lake Lilliana"}},{"attributes":{"name":"Clay Gutmann","age":50,"location":"Edwinfort"}},{"attributes":{"name":"Dora Lesch","age":77,"location":"Louietown"}},{"attributes":{"name":"Mrs. Carlotta Tillman","age":19,"location":"Farrellburgh"}},{"attributes":{"name":"Kristi Tromp","age":55,"location":"Abdielhaven"}},{"attributes":{"name":"Gaetano Rempel","age":79,"location":"Port Jarenstead"}},{"attributes":{"name":"Troy McGlynn","age":38,"location":"Port Josefachester"}},{"attributes":{"name":"Wiley Steuber","age":79,"location":"East Thalia"}},{"attributes":{"name":"Sara Boehm","age":33,"location":"Evanston"}},{"attributes":{"name":"Mrs. Sherri Denesik","age":48,"location":"New Margareteberg"}},{"attributes":{"name":"Patrick Jenkins DVM","age":20,"location":"East Velda"}},{"attributes":{"name":"Darla Larkin DDS","age":30,"location":"Port Myah"}},{"attributes":{"name":"Kurt Aufderhar","age":62,"location":"Heaneyhaven"}},{"attributes":{"name":"Dejon O'Connell PhD","age":31,"location":"Wehnerland"}},{"attributes":{"name":"Abraham Ebert-Schmidt","age":57,"location":"Port Eugeniastead"}},{"attributes":{"name":"Caroline Adams II","age":60,"location":"Mortimerhaven"}},{"attributes":{"name":"Gilberto Hilll II","age":34,"location":"Austenside"}},{"attributes":{"name":"Mrs. Bruce Johnston","age":76,"location":"Fort Koleport"}},{"attributes":{"name":"Freddie McLaughlin","age":62,"location":"South Pollyview"}},{"attributes":{"name":"Marcelo VonRueden","age":42,"location":"Rogahnborough"}},{"attributes":{"name":"Alverta Oberbrunner","age":59,"location":"North Kristaton"}},{"attributes":{"name":"Mrs. Tricia Kutch","age":78,"location":"South Rudyberg"}},{"attributes":{"name":"Mr. Marty Metz","age":75,"location":"Fort Paige"}},{"attributes":{"name":"Alberta Pfeffer","age":28,"location":"Cathedral City"}},{"attributes":{"name":"Brigitte Thiel","age":54,"location":"Salina"}},{"attributes":{"name":"Lindsey Wisozk","age":27,"location":"North Jany"}},{"attributes":{"name":"Geovany Gulgowski","age":69,"location":"Bechtelarside"}},{"attributes":{"name":"Sven Runolfsson","age":20,"location":"Hoseaburgh"}},{"attributes":{"name":"Miss Henri Wunsch MD","age":68,"location":"South Myrlboro"}},{"attributes":{"name":"Janice Shields","age":54,"location":"Orange"}},{"attributes":{"name":"Gerardo Howe","age":19,"location":"Tempe"}},{"attributes":{"name":"Tyler Swift","age":23,"location":"Lakeville"}},{"attributes":{"name":"Nancy Heidenreich V","age":56,"location":"Fernshire"}},{"attributes":{"name":"Graciela Wintheiser","age":39,"location":"Eden Prairie"}},{"attributes":{"name":"Tracey Morissette","age":63,"location":"West Deja"}},{"attributes":{"name":"Mamie Schroeder","age":57,"location":"Lake Winfield"}},{"attributes":{"name":"Jerald Kulas","age":45,"location":"Adityaland"}},{"attributes":{"name":"Margarita Schaden","age":24,"location":"Abbotthaven"}},{"attributes":{"name":"Rosalyn Upton","age":44,"location":"Port Alvah"}},{"attributes":{"name":"Lincoln Wilkinson IV","age":72,"location":"North Cecile"}},{"attributes":{"name":"Santos Emmerich","age":43,"location":"East Jewelport"}},{"attributes":{"name":"Javier Flatley","age":38,"location":"Clemensberg"}},{"attributes":{"name":"Toby Collins-Daniel","age":35,"location":"Lake Onie"}},{"attributes":{"name":"Stephanie Orn","age":74,"location":"New Joemouth"}},{"attributes":{"name":"Lana West","age":52,"location":"Kellimouth"}},{"attributes":{"name":"Bradly Wiegand","age":45,"location":"New Danika"}},{"attributes":{"name":"Frederick Stroman","age":53,"location":"North Tryciatown"}},{"attributes":{"name":"Garnett Hagenes","age":29,"location":"North Ferne"}},{"attributes":{"name":"Peter Schneider","age":44,"location":"Pomona"}},{"attributes":{"name":"Ashlynn Rowe","age":38,"location":"South Eloiseville"}},{"attributes":{"name":"Stanley Crist-Cole","age":79,"location":"Gustaveshire"}},{"attributes":{"name":"Hugh Waelchi","age":79,"location":"Bergetown"}},{"attributes":{"name":"Amber Zemlak","age":64,"location":"Charlenebury"}},{"attributes":{"name":"Jamison Effertz","age":19,"location":"MacGyverton"}},{"attributes":{"name":"Hugh Beer","age":37,"location":"Jenningshaven"}},{"attributes":{"name":"Stuart Satterfield","age":69,"location":"Schinnerstead"}},{"attributes":{"name":"Matilde Boyer","age":66,"location":"Fort Marianne"}},{"attributes":{"name":"Adrianna Howe","age":63,"location":"Port Dorothy"}},{"attributes":{"name":"Treva Hagenes","age":61,"location":"Kaitlynton"}},{"attributes":{"name":"Randolph Bashirian","age":37,"location":"Lake Elda"}},{"attributes":{"name":"Ellis Hane","age":55,"location":"Fadelfield"}},{"attributes":{"name":"Gloria Lindgren","age":59,"location":"Daviston"}},{"attributes":{"name":"Pauline McLaughlin","age":56,"location":"St. Louis"}},{"attributes":{"name":"Pam Denesik-Mraz III","age":41,"location":"West Trefield"}},{"attributes":{"name":"Belle Koepp-Feest","age":64,"location":"Wisokyshire"}},{"attributes":{"name":"Roman Tremblay","age":32,"location":"Norman"}},{"attributes":{"name":"Stan Dooley","age":55,"location":"North Leannaboro"}},{"attributes":{"name":"Doris Mraz","age":73,"location":"Sheboygan"}},{"attributes":{"name":"Mr. Ervin Russel","age":63,"location":"South Jordan"}},{"attributes":{"name":"Marian Streich","age":24,"location":"Lake Elliehaven"}},{"attributes":{"name":"Carolyne Kilback-Harvey","age":72,"location":"Melbourne"}},{"attributes":{"name":"Kathleen Barton","age":26,"location":"Bodeville"}},{"attributes":{"name":"Dorian Schroeder","age":41,"location":"East Olin"}},{"attributes":{"name":"Kristen Hammes","age":25,"location":"Elizabeth"}},{"attributes":{"name":"Savannah Lueilwitz","age":57,"location":"South Keshaun"}},{"attributes":{"name":"Deborah Schmitt","age":35,"location":"Dibbertcester"}},{"attributes":{"name":"Bernadette Davis","age":78,"location":"Laurettaborough"}},{"attributes":{"name":"Kaitlyn Franey","age":75,"location":"North Cordellchester"}},{"attributes":{"name":"Germaine Padberg DDS","age":45,"location":"Garland"}},{"attributes":{"name":"Misty Morar","age":43,"location":"Heaneyview"}},{"attributes":{"name":"Bell Ebert","age":61,"location":"Hanestad"}},{"attributes":{"name":"Abel Boyer","age":45,"location":"New Austyn"}},{"attributes":{"name":"Andres Erdman","age":32,"location":"South Brodyside"}},{"attributes":{"name":"Emily Shields","age":58,"location":"San Clemente"}},{"attributes":{"name":"Tomas Mueller","age":72,"location":"Bellevue"}},{"attributes":{"name":"Jerald Koss","age":77,"location":"Muncie"}},{"attributes":{"name":"Flora Cronin","age":57,"location":"Cheyennestead"}},{"attributes":{"name":"Kylie O'Hara","age":73,"location":"Wolfworth"}},{"attributes":{"name":"Neal Pollich","age":52,"location":"Plainfield"}},{"attributes":{"name":"Emilie Breitenberg V","age":72,"location":"Thompsonfort"}},{"attributes":{"name":"Jenny Zboncak","age":77,"location":"East Belle"}},{"attributes":{"name":"Mrs. Georgiana Lakin-Hudson","age":73,"location":"Schambergerfurt"}},{"attributes":{"name":"Nina Klocko","age":74,"location":"West Naomie"}},{"attributes":{"name":"Princess Hartmann","age":45,"location":"Mohammadfurt"}},{"attributes":{"name":"Ms. Shelley Jacobson","age":29,"location":"Jenkinsmouth"}},{"attributes":{"name":"Benjamin Reichert","age":41,"location":"South Willow"}},{"attributes":{"name":"Dariana Rau DVM","age":54,"location":"Port Evan"}},{"attributes":{"name":"Merl Zulauf","age":32,"location":"Ankundingstad"}},{"attributes":{"name":"Ms. Helen Lindgren PhD","age":22,"location":"East Aracelishire"}},{"attributes":{"name":"Winifred Goldner IV","age":65,"location":"Jefferyside"}},{"attributes":{"name":"Kenny Watsica-Toy DVM","age":73,"location":"Stephaniemouth"}},{"attributes":{"name":"Elena Nitzsche","age":29,"location":"East Kathryn"}},{"attributes":{"name":"Marion Cormier PhD","age":34,"location":"Taylorsville"}},{"attributes":{"name":"Judah Rath","age":19,"location":"Medhurstmouth"}},{"attributes":{"name":"Felipe Robel","age":50,"location":"Mooreberg"}},{"attributes":{"name":"Harriet Brown","age":25,"location":"South Miguel"}},{"attributes":{"name":"Stuart Roob","age":66,"location":"Hellerstad"}},{"attributes":{"name":"Mary Lynch","age":65,"location":"Schaefertown"}},{"attributes":{"name":"Dr. Alan Terry","age":65,"location":"Beavercreek"}},{"attributes":{"name":"Dr. Heather Stark","age":24,"location":"West Jaiden"}},{"attributes":{"name":"Yolanda Heller","age":62,"location":"Greenwood"}},{"attributes":{"name":"Lawrence Davis","age":78,"location":"Port Mozelleborough"}},{"attributes":{"name":"Misael Hammes I","age":35,"location":"Lake Araceli"}},{"attributes":{"name":"Guadalupe Cronin-Beer","age":26,"location":"Amelieshire"}},{"attributes":{"name":"Dr. Julie Gibson","age":31,"location":"Zariashire"}},{"attributes":{"name":"Sidney Cassin","age":75,"location":"St. Peters"}},{"attributes":{"name":"Allan Weissnat","age":18,"location":"Fishers"}},{"attributes":{"name":"Angela Pollich","age":63,"location":"Schuppeboro"}},{"attributes":{"name":"Drew Hahn IV","age":39,"location":"Alexisborough"}},{"attributes":{"name":"Selena Bashirian","age":43,"location":"Virginiecester"}},{"attributes":{"name":"Marques Yost PhD","age":63,"location":"Beatriceworth"}},{"attributes":{"name":"Kennith Buckridge","age":47,"location":"Stracketown"}},{"attributes":{"name":"Cory Watsica","age":75,"location":"West Destiny"}},{"attributes":{"name":"Nannie Friesen","age":19,"location":"Corwinview"}},{"attributes":{"name":"Lemuel Bernier","age":37,"location":"West Luisa"}},{"attributes":{"name":"Verner Williamson","age":29,"location":"New Ciceroberg"}},{"attributes":{"name":"Nelson Goyette","age":60,"location":"New Wilmaworth"}},{"attributes":{"name":"Ms. Darren Orn","age":25,"location":"Lelialand"}},{"attributes":{"name":"Marianne Kiehn","age":37,"location":"Kiehnworth"}},{"attributes":{"name":"Alvin Marks","age":42,"location":"Thereseberg"}},{"attributes":{"name":"Dr. Gail Gerhold","age":26,"location":"Fayshire"}},{"attributes":{"name":"Amanda Jones","age":38,"location":"North Frederikshire"}},{"attributes":{"name":"Morris Considine","age":46,"location":"Hillarystad"}},{"attributes":{"name":"Ruby Gutkowski","age":78,"location":"Loyalfield"}},{"attributes":{"name":"Stephanie Flatley","age":68,"location":"Lake Buck"}},{"attributes":{"name":"Hannah Stiedemann","age":52,"location":"Vickietown"}},{"attributes":{"name":"Sabrina West","age":44,"location":"Stammchester"}},{"attributes":{"name":"Justin Stiedemann","age":55,"location":"Cronafort"}},{"attributes":{"name":"Ted Bayer","age":42,"location":"Kaylieville"}},{"attributes":{"name":"Myrna Towne","age":42,"location":"O'Connermouth"}},{"attributes":{"name":"Miss June Herman","age":33,"location":"Concord"}},{"attributes":{"name":"Ron Hahn","age":57,"location":"Lake Annabellville"}},{"attributes":{"name":"Bertrand Collins","age":77,"location":"Port Blair"}},{"attributes":{"name":"Courtney Schamberger","age":65,"location":"Eunafield"}},{"attributes":{"name":"Roland Crona","age":46,"location":"Portsmouth"}},{"attributes":{"name":"Katelynn Williamson III","age":39,"location":"New Joshuah"}},{"attributes":{"name":"Neal Kunze","age":35,"location":"Stiedemannview"}},{"attributes":{"name":"Kent Miller","age":42,"location":"Waylonworth"}},{"attributes":{"name":"Ellis Fahey","age":21,"location":"Torreyfort"}},{"attributes":{"name":"Patsy Abernathy","age":56,"location":"East Alizastad"}},{"attributes":{"name":"Julie Larkin","age":56,"location":"Port Mark"}},{"attributes":{"name":"Zoila Hegmann","age":22,"location":"New Monroefort"}},{"attributes":{"name":"Floyd Ernser","age":20,"location":"Pine Hills"}},{"attributes":{"name":"Sheldon Schmidt","age":19,"location":"Noemyworth"}},{"attributes":{"name":"Syble Smith","age":52,"location":"Connland"}},{"attributes":{"name":"Janet Schaden","age":76,"location":"New Carrollborough"}},{"attributes":{"name":"Melanie Lesch","age":40,"location":"North Fernandostead"}},{"attributes":{"name":"Dorian Wintheiser","age":45,"location":"East Ludieshire"}},{"attributes":{"name":"Dr. Jazmyne Luettgen-Watsica","age":50,"location":"Ritchiehaven"}},{"attributes":{"name":"Amy Schroeder","age":20,"location":"Lake Mathew"}},{"attributes":{"name":"Leland Steuber","age":30,"location":"Farmington"}},{"attributes":{"name":"Jannie Hoeger","age":38,"location":"Las Vegas"}},{"attributes":{"name":"Ms. Genevieve Schiller","age":35,"location":"New Annette"}},{"attributes":{"name":"Timothy Ratke","age":78,"location":"Nampa"}},{"attributes":{"name":"Dr. Patti Crona","age":53,"location":"Lionelstad"}},{"attributes":{"name":"Ms. Grant Lowe DVM","age":51,"location":"Jordytown"}},{"attributes":{"name":"Carole Yundt","age":48,"location":"Gresham"}},{"attributes":{"name":"Regina Tillman","age":42,"location":"Lake Bobby"}},{"attributes":{"name":"Carrie Mosciski","age":64,"location":"Schimmelside"}},{"attributes":{"name":"Denis Parisian","age":25,"location":"Lake Percy"}},{"attributes":{"name":"Ms. Susan Cassin","age":76,"location":"Coleboro"}},{"attributes":{"name":"Susan Kiehn","age":79,"location":"Ivatown"}},{"attributes":{"name":"Dalton Breitenberg III","age":23,"location":"West Clemmiefort"}},{"attributes":{"name":"Bonita Murphy","age":52,"location":"East Mauriceland"}},{"attributes":{"name":"Twila Ryan-Moen","age":55,"location":"New Claud"}},{"attributes":{"name":"Geovany Swaniawski II","age":20,"location":"East Jennifer"}},{"attributes":{"name":"Barbara Champlin","age":28,"location":"Romaineberg"}},{"attributes":{"name":"Mr. Marshall Hackett","age":32,"location":"West Michaela"}},{"attributes":{"name":"Russell Gutmann","age":29,"location":"Gailview"}},{"attributes":{"name":"Arnoldo Williamson","age":26,"location":"Rodolfobury"}},{"attributes":{"name":"Mr. Kayley Bahringer","age":23,"location":"Pharr"}},{"attributes":{"name":"Hadley Fadel IV","age":32,"location":"Fort Clintworth"}},{"attributes":{"name":"Kristie Zemlak","age":53,"location":"Mount Pleasant"}},{"attributes":{"name":"Misty Langosh","age":74,"location":"New Emmett"}},{"attributes":{"name":"James Kiehn","age":26,"location":"Weymouth Town"}},{"attributes":{"name":"Jan Blick","age":53,"location":"Boscomouth"}},{"attributes":{"name":"Naomi Ullrich","age":34,"location":"Vivienton"}},{"attributes":{"name":"Francisco Pfeffer","age":65,"location":"North Summerfield"}},{"attributes":{"name":"Anastasia Turner","age":24,"location":"North Augustusstead"}},{"attributes":{"name":"Sylvia Thiel","age":73,"location":"Rogahnborough"}},{"attributes":{"name":"Jonatan Kertzmann-Upton","age":31,"location":"Strosinmouth"}},{"attributes":{"name":"Deshawn Smith","age":19,"location":"North Waylon"}},{"attributes":{"name":"Raphaelle Bosco","age":59,"location":"Zackarymouth"}},{"attributes":{"name":"Gwendolyn Ferry","age":34,"location":"Stillwater"}},{"attributes":{"name":"Marilie Beer","age":55,"location":"Apple Valley"}},{"attributes":{"name":"Dr. Lexus Pacocha","age":70,"location":"South Marvin"}},{"attributes":{"name":"Ford O'Reilly","age":47,"location":"Maritzaview"}},{"attributes":{"name":"Fletcher Wunsch","age":55,"location":"Haverhill"}},{"attributes":{"name":"Dana Russel","age":70,"location":"Port Tremayne"}},{"attributes":{"name":"Miss Shanny Predovic","age":72,"location":"Maribelport"}},{"attributes":{"name":"Jena Wisozk","age":26,"location":"Toms River"}},{"attributes":{"name":"Pete Beier","age":62,"location":"Lake Tremayne"}},{"attributes":{"name":"Andre Osinski","age":41,"location":"West Liana"}},{"attributes":{"name":"Xander Rutherford","age":75,"location":"North Joey"}},{"attributes":{"name":"May Friesen DVM","age":30,"location":"Lake Fritz"}},{"attributes":{"name":"Mildred Ortiz DVM","age":34,"location":"Cummingsburgh"}},{"attributes":{"name":"Aurelia Streich","age":21,"location":"Guidochester"}},{"attributes":{"name":"Susan Casper","age":40,"location":"East Kellihaven"}},{"attributes":{"name":"Darin Koch","age":53,"location":"Lake Hayleybury"}},{"attributes":{"name":"Bailee Ortiz","age":49,"location":"East Stanfordstead"}},{"attributes":{"name":"Preston Ryan","age":46,"location":"South Elianmouth"}},{"attributes":{"name":"Henri Gerlach","age":40,"location":"Edgardostad"}},{"attributes":{"name":"Robin Jones","age":79,"location":"Lynn"}},{"attributes":{"name":"Miss Laury Greenholt","age":39,"location":"Oak Park"}},{"attributes":{"name":"Michelle Leffler","age":71,"location":"Labadiebury"}},{"attributes":{"name":"Jake Walsh","age":41,"location":"Daronboro"}},{"attributes":{"name":"Clifford Konopelski","age":65,"location":"Medford"}},{"attributes":{"name":"Rudolph Hand","age":61,"location":"Fort Mazie"}},{"attributes":{"name":"Mindy Russel","age":35,"location":"North Coralie"}},{"attributes":{"name":"Erick Kshlerin","age":79,"location":"Mayemouth"}},{"attributes":{"name":"Mike Schultz","age":29,"location":"Thousand Oaks"}},{"attributes":{"name":"Enrique Conroy","age":80,"location":"Borerhaven"}},{"attributes":{"name":"Warren Lubowitz","age":38,"location":"Macejkovictown"}},{"attributes":{"name":"Omari Kihn","age":67,"location":"Fort Anahicester"}},{"attributes":{"name":"Bennett Thompson DDS","age":52,"location":"Tryciaberg"}},{"attributes":{"name":"Karli Kiehn","age":34,"location":"Milford"}},{"attributes":{"name":"Marguerite Heller","age":27,"location":"Port Dellafort"}},{"attributes":{"name":"Rodney Nikolaus","age":47,"location":"North Adelbertmouth"}},{"attributes":{"name":"Doug Harber IV","age":25,"location":"Fort Kailee"}},{"attributes":{"name":"Angelica Schowalter","age":69,"location":"Lake Rachaelboro"}},{"attributes":{"name":"Denis Dooley","age":22,"location":"Ebertcester"}},{"attributes":{"name":"Courtney Rogahn","age":70,"location":"Lubowitzshire"}},{"attributes":{"name":"Cleveland Raynor","age":78,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Rosalinda Labadie","age":49,"location":"Port Madisoncester"}},{"attributes":{"name":"Dr. Merl Zboncak-Kuvalis","age":20,"location":"Lake Concepcion"}},{"attributes":{"name":"Raul Legros","age":23,"location":"Bechtelarstad"}},{"attributes":{"name":"Kim Abbott","age":60,"location":"North Krystel"}},{"attributes":{"name":"Dr. Kellie Leffler","age":36,"location":"Ansleyville"}},{"attributes":{"name":"Tommy Willms","age":33,"location":"Fort Mariliefurt"}},{"attributes":{"name":"Agnes Friesen","age":19,"location":"San Diego"}},{"attributes":{"name":"Ed Bins","age":36,"location":"Kalebfurt"}},{"attributes":{"name":"Mr. Kelvin Franecki","age":38,"location":"West Kodystad"}},{"attributes":{"name":"Hyman Crooks","age":30,"location":"Handfield"}},{"attributes":{"name":"Kris Zemlak","age":33,"location":"Pearland"}},{"attributes":{"name":"Tracy Friesen","age":73,"location":"South Carolechester"}},{"attributes":{"name":"Giovanna Hickle","age":24,"location":"Fort Aryannaworth"}},{"attributes":{"name":"Arnold Treutel","age":38,"location":"Leoburgh"}},{"attributes":{"name":"Maddison Rippin","age":72,"location":"Estellboro"}},{"attributes":{"name":"Alexanne Stehr","age":33,"location":"North Stephanie"}},{"attributes":{"name":"Ms. Wilma Sawayn","age":37,"location":"Tallahassee"}},{"attributes":{"name":"Richie Borer","age":39,"location":"New Madisynborough"}},{"attributes":{"name":"Ms. Melyssa Zulauf","age":70,"location":"Stantonland"}},{"attributes":{"name":"Jerald Hammes","age":21,"location":"West Adrien"}},{"attributes":{"name":"Iva Crona","age":69,"location":"Kennithport"}},{"attributes":{"name":"Nels Aufderhar-Marquardt","age":80,"location":"North Alf"}},{"attributes":{"name":"Alton Reichel","age":39,"location":"Fort Hiram"}},{"attributes":{"name":"Gladys Nader","age":27,"location":"Bernhardstad"}},{"attributes":{"name":"Myrtle Kuhlman","age":70,"location":"South Arielton"}},{"attributes":{"name":"Miss Cary Oberbrunner","age":75,"location":"Barrowsboro"}},{"attributes":{"name":"Susan Heaney","age":66,"location":"North Natashastad"}},{"attributes":{"name":"Haylee Wyman Sr.","age":65,"location":"Skilesside"}},{"attributes":{"name":"Jeffrey MacGyver","age":29,"location":"North Guyland"}},{"attributes":{"name":"Haley Bogan DDS","age":46,"location":"Toniview"}},{"attributes":{"name":"Ervin Vandervort","age":63,"location":"Murazikworth"}},{"attributes":{"name":"Maureen Franecki","age":41,"location":"North Gaetano"}},{"attributes":{"name":"Elena Connelly","age":63,"location":"Arvada"}},{"attributes":{"name":"Cameron Orn","age":54,"location":"Fort Jettie"}},{"attributes":{"name":"Emmet Wuckert","age":45,"location":"Brodyport"}},{"attributes":{"name":"Bryan Weissnat","age":34,"location":"New Orleans"}},{"attributes":{"name":"Kyle McClure","age":50,"location":"South Caroleberg"}},{"attributes":{"name":"Jaron Hudson","age":68,"location":"Flint"}},{"attributes":{"name":"Cornelius Pagac DDS","age":30,"location":"North Dudley"}},{"attributes":{"name":"Neal Dickinson DVM","age":38,"location":"Missourihaven"}},{"attributes":{"name":"Orland Smith","age":50,"location":"Fort Candelariochester"}},{"attributes":{"name":"Mercedes Weber","age":37,"location":"Charlotte"}},{"attributes":{"name":"Sandrine Crooks","age":59,"location":"Fort Demetrius"}},{"attributes":{"name":"Cecelia Beier","age":29,"location":"North Lancefurt"}},{"attributes":{"name":"Benjamin Heidenreich","age":33,"location":"Savionstead"}},{"attributes":{"name":"Ross Collins PhD","age":26,"location":"Port Viviennestad"}},{"attributes":{"name":"Ana Wilkinson","age":25,"location":"Lake Esperanzaworth"}},{"attributes":{"name":"Dolores Koepp","age":55,"location":"Anaheim"}},{"attributes":{"name":"Reginald Hirthe","age":19,"location":"Riverton"}},{"attributes":{"name":"Thora Strosin","age":38,"location":"Lake Hoseaboro"}},{"attributes":{"name":"Dr. Justine Collier","age":28,"location":"Little Rock"}},{"attributes":{"name":"Conrad Lesch","age":50,"location":"Rempelstead"}},{"attributes":{"name":"Wellington Runte","age":32,"location":"Mckaylaland"}},{"attributes":{"name":"Preston Kozey-Bartoletti","age":23,"location":"Lake Conor"}},{"attributes":{"name":"Lester Lind","age":59,"location":"Toledo"}},{"attributes":{"name":"Terrell Pouros","age":37,"location":"Godfreyside"}},{"attributes":{"name":"Jessica Pagac","age":69,"location":"Lake Lavinia"}},{"attributes":{"name":"Violet Thompson","age":63,"location":"North Lisandro"}},{"attributes":{"name":"Kathleen Glover","age":56,"location":"Port Agustinahaven"}},{"attributes":{"name":"Lela Mills","age":60,"location":"South Nayeli"}},{"attributes":{"name":"Ms. Friedrich Halvorson","age":52,"location":"Sipesport"}},{"attributes":{"name":"Wayne Simonis","age":26,"location":"Haleyfort"}},{"attributes":{"name":"Lelah Veum MD","age":41,"location":"Lake Grahamport"}},{"attributes":{"name":"Rosemary Kunze","age":66,"location":"South Orpha"}},{"attributes":{"name":"Meredith Mayer","age":57,"location":"Kiehnberg"}},{"attributes":{"name":"Julia Balistreri","age":18,"location":"Feilworth"}},{"attributes":{"name":"Faith Will Jr.","age":40,"location":"Krajcikworth"}},{"attributes":{"name":"Golda Quitzon","age":76,"location":"New Gus"}},{"attributes":{"name":"Kelsie Dietrich","age":48,"location":"South Dean"}},{"attributes":{"name":"Birdie Welch DVM","age":31,"location":"Naperville"}},{"attributes":{"name":"Davion Kuhn","age":44,"location":"Odessacester"}},{"attributes":{"name":"Lisa Thompson","age":72,"location":"Columbus"}},{"attributes":{"name":"Casey Jenkins","age":50,"location":"Fort Americo"}},{"attributes":{"name":"Olen Strosin","age":33,"location":"Livermore"}},{"attributes":{"name":"Kimberly Herman","age":35,"location":"Tillmanstead"}},{"attributes":{"name":"Kitty Kerluke","age":44,"location":"Lemketown"}},{"attributes":{"name":"Stacey Koss","age":43,"location":"Funkfurt"}},{"attributes":{"name":"Viola Schumm-Kozey","age":54,"location":"East Lavonnebury"}},{"attributes":{"name":"Ms. Frances Waters IV","age":50,"location":"West Madilyn"}},{"attributes":{"name":"Lorenz Haag","age":20,"location":"Lucyport"}},{"attributes":{"name":"Ludwig Hudson-Waelchi DDS","age":56,"location":"Vivianneport"}},{"attributes":{"name":"Tate Rutherford","age":62,"location":"Garrettberg"}},{"attributes":{"name":"Dr. Ellen Kunze","age":36,"location":"North Jaylenstad"}},{"attributes":{"name":"Mckayla Will","age":27,"location":"North Jonatanmouth"}},{"attributes":{"name":"Donald Kuhlman","age":44,"location":"Wileyshire"}},{"attributes":{"name":"Ricardo Murray","age":20,"location":"South Angelitacester"}},{"attributes":{"name":"Shemar Fay","age":27,"location":"Elmoreborough"}},{"attributes":{"name":"Kathleen Friesen","age":67,"location":"South Noemiberg"}},{"attributes":{"name":"Olivia Luettgen","age":31,"location":"Spencerberg"}},{"attributes":{"name":"Herta Senger","age":21,"location":"Volkmanbury"}},{"attributes":{"name":"Emmett Block","age":28,"location":"Sanford"}},{"attributes":{"name":"Caitlyn Rohan","age":28,"location":"Kilbackhaven"}},{"attributes":{"name":"Antonetta Larson","age":51,"location":"O'Connerfield"}},{"attributes":{"name":"Helena Reynolds","age":40,"location":"Rafaelcester"}},{"attributes":{"name":"Jeannie West","age":36,"location":"Zitafort"}},{"attributes":{"name":"Mr. Kelly McCullough","age":26,"location":"Kesslerburgh"}},{"attributes":{"name":"Olga Hudson","age":68,"location":"Galveston"}},{"attributes":{"name":"Jan Yost","age":26,"location":"Danielberg"}},{"attributes":{"name":"Celine Turcotte","age":32,"location":"Davinland"}},{"attributes":{"name":"Betty Steuber","age":48,"location":"Feestboro"}},{"attributes":{"name":"Gretchen Goldner","age":19,"location":"Nitzschehaven"}},{"attributes":{"name":"Saul Lind","age":19,"location":"East Katlynnhaven"}},{"attributes":{"name":"Isabel Becker-Senger","age":75,"location":"Robertsbury"}},{"attributes":{"name":"Laura Stoltenberg","age":21,"location":"Wehnerchester"}},{"attributes":{"name":"Tonya Boehm","age":26,"location":"Eleazarfort"}},{"attributes":{"name":"Jacob Spinka","age":52,"location":"Wolffort"}},{"attributes":{"name":"Scot Smith","age":29,"location":"Lake Estebanberg"}},{"attributes":{"name":"Vivianne Fritsch","age":30,"location":"Missouri City"}},{"attributes":{"name":"Mikayla Okuneva","age":58,"location":"Dachcester"}},{"attributes":{"name":"Juanita Monahan","age":20,"location":"Malcolmborough"}},{"attributes":{"name":"Jerrold Johnson","age":28,"location":"East Linwoodburgh"}},{"attributes":{"name":"Gloria Stark","age":30,"location":"Nicoleport"}},{"attributes":{"name":"Oral Wuckert","age":64,"location":"Lake Loganchester"}},{"attributes":{"name":"Iva Okuneva","age":57,"location":"Vancouver"}},{"attributes":{"name":"Eveline Flatley","age":78,"location":"New Akeem"}},{"attributes":{"name":"Tia Kunze","age":46,"location":"Lonniestead"}},{"attributes":{"name":"Guillermo Schuster IV","age":65,"location":"Lake Forest"}},{"attributes":{"name":"Zora Lemke","age":61,"location":"Lefflerview"}},{"attributes":{"name":"Kamryn Mann V","age":19,"location":"Nicolahaven"}},{"attributes":{"name":"Crawford Heaney","age":57,"location":"New Berenice"}},{"attributes":{"name":"Bartholome Schulist","age":35,"location":"East Brigitteview"}},{"attributes":{"name":"Leda Harber","age":24,"location":"Providence"}},{"attributes":{"name":"Lambert Stoltenberg","age":60,"location":"Minnetonka"}},{"attributes":{"name":"Ms. Glennie Herzog","age":66,"location":"Fort Kavonstad"}},{"attributes":{"name":"Breana Franey","age":30,"location":"East Shanelleview"}},{"attributes":{"name":"Marcellus Zieme","age":49,"location":"New Verlie"}},{"attributes":{"name":"Karlie Hand","age":51,"location":"Port Marybury"}},{"attributes":{"name":"Gertrude Herzog","age":57,"location":"Shainafurt"}},{"attributes":{"name":"Gerard Kertzmann","age":40,"location":"Murazikstad"}},{"attributes":{"name":"Stephania Gleichner","age":21,"location":"Menifee"}},{"attributes":{"name":"Kevin Swift","age":36,"location":"Arden-Arcade"}},{"attributes":{"name":"Roxanne Fadel","age":34,"location":"South Jarvisfurt"}},{"attributes":{"name":"Curtis Monahan","age":31,"location":"Padbergport"}},{"attributes":{"name":"Micah Greenfelder I","age":32,"location":"South Halcester"}},{"attributes":{"name":"Erna Wehner","age":41,"location":"Bartonborough"}},{"attributes":{"name":"Dayton Kling","age":18,"location":"Fort Jazmin"}},{"attributes":{"name":"Mr. Wilfred Hilpert","age":40,"location":"Trantowfort"}},{"attributes":{"name":"Alonzo Kling","age":46,"location":"East Zacharyfield"}},{"attributes":{"name":"Lori Kiehn-Volkman","age":51,"location":"Klingview"}},{"attributes":{"name":"Dr. Frederick Ebert","age":41,"location":"Haleyworth"}},{"attributes":{"name":"Duane Armstrong","age":70,"location":"New Odessa"}},{"attributes":{"name":"Loyal Cormier-Crona","age":69,"location":"Kennewick"}},{"attributes":{"name":"Georgette Kovacek DDS","age":50,"location":"North Dawsoncester"}},{"attributes":{"name":"Melba Tromp DVM","age":36,"location":"Fort Warren"}},{"attributes":{"name":"Leah Casper","age":34,"location":"Ceres"}},{"attributes":{"name":"Herta Boyer","age":70,"location":"East Zakary"}},{"attributes":{"name":"Cody Lind","age":25,"location":"Karellefort"}},{"attributes":{"name":"Virginia Mosciski","age":74,"location":"Wayneboro"}},{"attributes":{"name":"Jeannette Boyer V","age":71,"location":"Davisview"}},{"attributes":{"name":"Clara Reilly V","age":28,"location":"East Eleazar"}},{"attributes":{"name":"Ora Carter","age":47,"location":"New Dustin"}},{"attributes":{"name":"Alan Maggio","age":18,"location":"South Virgilcester"}},{"attributes":{"name":"Krystal D'Amore","age":48,"location":"Pompano Beach"}},{"attributes":{"name":"Jody Mante","age":73,"location":"Port Fay"}},{"attributes":{"name":"Maureen Dickinson","age":27,"location":"Kellenworth"}},{"attributes":{"name":"Caleb Stanton","age":22,"location":"West Hulda"}},{"attributes":{"name":"Nestor Bailey","age":52,"location":"Ellicott City"}},{"attributes":{"name":"Margaret Hackett","age":39,"location":"Halvorsoncester"}},{"attributes":{"name":"Shea Hermann","age":54,"location":"Marleytown"}},{"attributes":{"name":"Marcus Feil","age":73,"location":"Fort Clairmouth"}},{"attributes":{"name":"Miss Bert Ryan","age":22,"location":"Sandy"}},{"attributes":{"name":"Dr. Keith Greenholt","age":42,"location":"Waterstown"}},{"attributes":{"name":"Miss Sylvan Wyman","age":52,"location":"Richland"}},{"attributes":{"name":"Mrs. Amos Shanahan","age":60,"location":"South Tremaineborough"}},{"attributes":{"name":"Leona Quigley DVM","age":54,"location":"Port Ara"}},{"attributes":{"name":"Elijah D'Amore I","age":48,"location":"Galveston"}},{"attributes":{"name":"Glenn Bosco","age":34,"location":"Fort Ettieburgh"}},{"attributes":{"name":"Phillip Haag","age":37,"location":"Eddview"}},{"attributes":{"name":"Ambrose Carroll","age":74,"location":"West Keatonborough"}},{"attributes":{"name":"Irving Cummerata","age":59,"location":"Fountainebleau"}},{"attributes":{"name":"Jasper Quigley","age":29,"location":"Conroe"}},{"attributes":{"name":"Dariana Padberg","age":31,"location":"Edgarfurt"}},{"attributes":{"name":"Melanie Sauer","age":37,"location":"Framiside"}},{"attributes":{"name":"Miss Angie Reichert","age":28,"location":"West Paxton"}},{"attributes":{"name":"Domenico Grant","age":58,"location":"New Brent"}},{"attributes":{"name":"Vincent Kris Jr.","age":47,"location":"Kingsport"}},{"attributes":{"name":"Delilah White","age":57,"location":"Florencioland"}},{"attributes":{"name":"Israel Yundt","age":42,"location":"South Kaelyn"}},{"attributes":{"name":"Kylee Abbott","age":36,"location":"Croninland"}},{"attributes":{"name":"Ralph Cormier","age":43,"location":"Jaimefort"}},{"attributes":{"name":"Jesse Mayer","age":21,"location":"Purdystead"}},{"attributes":{"name":"Joanna Nolan","age":45,"location":"Lake Serenitycester"}},{"attributes":{"name":"Murphy Fadel","age":25,"location":"Fort Joannieberg"}},{"attributes":{"name":"Courtney McGlynn","age":54,"location":"Maidashire"}},{"attributes":{"name":"Miss Dora Kovacek","age":69,"location":"Weimannport"}},{"attributes":{"name":"Ernest Larson Jr.","age":47,"location":"Harberport"}},{"attributes":{"name":"Kayla Koepp","age":78,"location":"Schulistfurt"}},{"attributes":{"name":"Raoul Borer","age":40,"location":"East Vincent"}},{"attributes":{"name":"Jacob Boyer","age":28,"location":"South Cristobalside"}},{"attributes":{"name":"Kallie Ruecker","age":38,"location":"East Robin"}},{"attributes":{"name":"Hank Mayert","age":35,"location":"Johns Creek"}},{"attributes":{"name":"Frances Boehm","age":41,"location":"New Nyahville"}},{"attributes":{"name":"Destany Conn","age":27,"location":"Lake Lia"}},{"attributes":{"name":"Maximilian Windler","age":74,"location":"Lake Kurtis"}},{"attributes":{"name":"Alicia Glover II","age":56,"location":"Lake Nyasiahaven"}},{"attributes":{"name":"Judy Howe","age":67,"location":"Olgafield"}},{"attributes":{"name":"Alfonso Wiza","age":80,"location":"Port Justiceside"}},{"attributes":{"name":"Makenzie Graham","age":22,"location":"Glenstead"}},{"attributes":{"name":"Leon Green","age":42,"location":"Port Sarah"}},{"attributes":{"name":"Jerad Ward","age":27,"location":"South Millietown"}},{"attributes":{"name":"Ms. Ernestine Balistreri","age":57,"location":"Fort Frances"}},{"attributes":{"name":"Willie Upton","age":56,"location":"Schmittton"}},{"attributes":{"name":"Alene Johnson II","age":45,"location":"Amparoport"}},{"attributes":{"name":"Carolyn Lindgren","age":55,"location":"Mount Pleasant"}},{"attributes":{"name":"Coby Ullrich","age":26,"location":"Pamelaboro"}},{"attributes":{"name":"Madelynn Stark","age":72,"location":"San Angelo"}},{"attributes":{"name":"Miss Gloria Hyatt","age":69,"location":"Konopelskitown"}},{"attributes":{"name":"Chester Stoltenberg V","age":35,"location":"Lawsonmouth"}},{"attributes":{"name":"Fannie Deckow","age":44,"location":"West Ana"}},{"attributes":{"name":"Luis Jacobson","age":62,"location":"Nitzschetown"}},{"attributes":{"name":"Courtney Gibson MD","age":22,"location":"East Graham"}},{"attributes":{"name":"Liana Okuneva","age":69,"location":"Warren"}},{"attributes":{"name":"Maxine Walker PhD","age":30,"location":"Lake Verna"}},{"attributes":{"name":"Travon Rutherford","age":62,"location":"Gleichnerstead"}},{"attributes":{"name":"Alfredo Gleason","age":75,"location":"Goldacester"}},{"attributes":{"name":"Hazel Lang","age":41,"location":"Cruickshankworth"}},{"attributes":{"name":"Crystal McKenzie","age":46,"location":"West Domenicaville"}},{"attributes":{"name":"Perry Friesen-Ankunding","age":78,"location":"Wizacester"}},{"attributes":{"name":"Carlton Hettinger","age":52,"location":"Florissant"}},{"attributes":{"name":"Samanta Murphy","age":71,"location":"Burnicestad"}},{"attributes":{"name":"Lila Maggio","age":75,"location":"Lake Kiana"}},{"attributes":{"name":"Darion Simonis","age":20,"location":"South Otiliaton"}},{"attributes":{"name":"Jessie Haag","age":22,"location":"North Brayan"}},{"attributes":{"name":"Essie Mayert","age":62,"location":"New Jarrod"}},{"attributes":{"name":"Jordan Towne","age":37,"location":"West Metafield"}},{"attributes":{"name":"Ms. Arlene Bashirian","age":37,"location":"East Glennie"}},{"attributes":{"name":"Austin Haley","age":38,"location":"New Candice"}},{"attributes":{"name":"Georgia Murazik","age":31,"location":"Passaic"}},{"attributes":{"name":"Clyde Heller","age":32,"location":"Fort Zellaside"}},{"attributes":{"name":"Seth Gorczany Jr.","age":77,"location":"Fort Hollie"}},{"attributes":{"name":"Mathilde Kuhn-Wintheiser","age":80,"location":"Franklin"}},{"attributes":{"name":"Marlin Ratke","age":50,"location":"Midwest City"}},{"attributes":{"name":"Faye Rolfson","age":58,"location":"Lake Lavern"}},{"attributes":{"name":"Maggie Rempel","age":43,"location":"Fort Myrtis"}},{"attributes":{"name":"Mathew Kerluke","age":69,"location":"South Kari"}},{"attributes":{"name":"Sharon Kertzmann","age":45,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Ross Schaefer-Kassulke","age":20,"location":"Novi"}},{"attributes":{"name":"Cornelius Doyle","age":66,"location":"Berwyn"}},{"attributes":{"name":"Mr. Kurt Heidenreich","age":43,"location":"Gilbertport"}},{"attributes":{"name":"Wilfred Anderson","age":77,"location":"New Jessica"}},{"attributes":{"name":"Dana McLaughlin","age":26,"location":"Arthurtown"}},{"attributes":{"name":"Emanuel Gislason","age":36,"location":"Hyatthaven"}},{"attributes":{"name":"John Dare","age":73,"location":"Welchstead"}},{"attributes":{"name":"Lilly O'Kon-Kris","age":45,"location":"North Ryannfurt"}},{"attributes":{"name":"Nathaniel D'Amore","age":46,"location":"Port Lilla"}},{"attributes":{"name":"Ruby Douglas","age":66,"location":"Boca Raton"}},{"attributes":{"name":"Calvin Yost","age":70,"location":"East Alexys"}},{"attributes":{"name":"Elizabeth Schimmel","age":36,"location":"Franeckiburgh"}},{"attributes":{"name":"Mr. Verda Wuckert","age":70,"location":"Lake Adan"}},{"attributes":{"name":"Naomie Kuphal DVM","age":36,"location":"Emardview"}},{"attributes":{"name":"Miss Lonny Marvin","age":77,"location":"Rodrickside"}},{"attributes":{"name":"Quentin Dickens","age":49,"location":"Towson"}},{"attributes":{"name":"Dena Beahan","age":62,"location":"Gabriellefort"}},{"attributes":{"name":"Nelson Dibbert","age":26,"location":"Tamarac"}},{"attributes":{"name":"Vance Hintz","age":63,"location":"New Naomietown"}},{"attributes":{"name":"Martha Torphy-Raynor","age":78,"location":"Pagachaven"}},{"attributes":{"name":"Alfred Roob","age":75,"location":"Nitzscheside"}},{"attributes":{"name":"Ms. Katelynn Johnson","age":23,"location":"Lake Alanna"}},{"attributes":{"name":"Sheri Johns-Nader","age":79,"location":"Las Vegas"}},{"attributes":{"name":"Hubert Ankunding","age":52,"location":"Ullrichton"}},{"attributes":{"name":"Nathanael Herman","age":54,"location":"Abnerbury"}},{"attributes":{"name":"Miss Theodora Fisher","age":21,"location":"Reynoldsborough"}},{"attributes":{"name":"Mr. Maurice Doyle","age":72,"location":"Fort Monserratborough"}},{"attributes":{"name":"Genoveva Franecki I","age":30,"location":"Bloomington"}},{"attributes":{"name":"Moses Hegmann","age":63,"location":"East Franco"}},{"attributes":{"name":"Santiago Thiel","age":46,"location":"Lake Gracieboro"}},{"attributes":{"name":"Ms. Latoya Schuster","age":72,"location":"North Saulshire"}},{"attributes":{"name":"Nathan Pfannerstill V","age":33,"location":"Morarchester"}},{"attributes":{"name":"Jarrett Emmerich","age":77,"location":"University"}},{"attributes":{"name":"Gregory Ernser DVM","age":76,"location":"Lexishire"}},{"attributes":{"name":"Keira Huels","age":19,"location":"West Maurine"}},{"attributes":{"name":"Eula Grimes","age":36,"location":"Fort Ashly"}},{"attributes":{"name":"Eulah Gibson","age":73,"location":"Abelburgh"}},{"attributes":{"name":"Warren Schowalter-Ryan","age":26,"location":"Silver Spring"}},{"attributes":{"name":"Mrs. Toney Jacobs","age":37,"location":"Coltonshire"}},{"attributes":{"name":"Tatum McCullough","age":56,"location":"New Celiachester"}},{"attributes":{"name":"Willis Orn","age":35,"location":"Zellachester"}},{"attributes":{"name":"Glen Padberg","age":37,"location":"San Francisco"}},{"attributes":{"name":"Giovanna Bailey","age":28,"location":"Port Franz"}},{"attributes":{"name":"Robin Abshire","age":77,"location":"East Jadon"}},{"attributes":{"name":"Colleen Cummerata","age":67,"location":"Kleinview"}},{"attributes":{"name":"Ms. Maude Dickinson","age":74,"location":"Nelsboro"}},{"attributes":{"name":"Mr. Alexandrea Heaney Jr.","age":62,"location":"North Everettefort"}},{"attributes":{"name":"Hermann Dicki","age":44,"location":"Fort Sierra"}},{"attributes":{"name":"Bennie Schmidt","age":66,"location":"Waelchiburgh"}},{"attributes":{"name":"Rudolph Bartoletti","age":71,"location":"Abdullahfurt"}},{"attributes":{"name":"Celia White","age":22,"location":"Bradtkeside"}},{"attributes":{"name":"Cristopher Orn","age":41,"location":"Hettingertown"}},{"attributes":{"name":"Allan Champlin","age":24,"location":"Colorado Springs"}},{"attributes":{"name":"May Stamm","age":32,"location":"Port Jaysoncester"}},{"attributes":{"name":"Cody Larkin","age":40,"location":"Raeshire"}},{"attributes":{"name":"Emma Mayert","age":73,"location":"Constancehaven"}},{"attributes":{"name":"Bell Anderson IV","age":25,"location":"Schroederberg"}},{"attributes":{"name":"Mark Mitchell IV","age":48,"location":"South Nyasiatown"}},{"attributes":{"name":"Yvette Langworth-Pagac","age":19,"location":"North Bonnie"}},{"attributes":{"name":"Ms. Maud Donnelly","age":40,"location":"Fort Ottisworth"}},{"attributes":{"name":"Gerardo Medhurst","age":51,"location":"Beierfield"}},{"attributes":{"name":"Adolfo Bechtelar","age":54,"location":"New Marcelino"}},{"attributes":{"name":"Peter Reinger","age":38,"location":"Normal"}},{"attributes":{"name":"Elaine Paucek","age":48,"location":"Larkinberg"}},{"attributes":{"name":"Dr. Darian Keebler","age":43,"location":"Liachester"}},{"attributes":{"name":"Byron Gibson","age":64,"location":"Wisokystad"}},{"attributes":{"name":"Justine Collier","age":38,"location":"Terrellview"}},{"attributes":{"name":"Isac Shanahan","age":56,"location":"South Kira"}},{"attributes":{"name":"Abdiel Russel-Kessler","age":67,"location":"Heidenreichstead"}},{"attributes":{"name":"Thad O'Conner","age":54,"location":"Port Othaboro"}},{"attributes":{"name":"Velva Fisher","age":48,"location":"Toycester"}},{"attributes":{"name":"Bethany Dickens DDS","age":52,"location":"Titusville"}},{"attributes":{"name":"Alanis Mayer","age":40,"location":"New Haileeberg"}},{"attributes":{"name":"Odell Kulas","age":18,"location":"Tamiami"}},{"attributes":{"name":"Molly Pagac","age":32,"location":"East Ruthieside"}},{"attributes":{"name":"Ms. Tina Brakus I","age":78,"location":"Bell Gardens"}},{"attributes":{"name":"Cristina Schaefer","age":22,"location":"Kathrynefurt"}},{"attributes":{"name":"Lance Hickle","age":51,"location":"Fort Shawnside"}},{"attributes":{"name":"Beverly Baumbach","age":49,"location":"Quitzonmouth"}},{"attributes":{"name":"Addie Turner","age":53,"location":"Gretastead"}},{"attributes":{"name":"Gilberto Marvin","age":47,"location":"O'Haraview"}},{"attributes":{"name":"Guadalupe Cormier","age":57,"location":"Cortneyview"}},{"attributes":{"name":"Ray Bosco","age":22,"location":"New Emilio"}},{"attributes":{"name":"Irene O'Kon-Schmidt","age":61,"location":"Kennastad"}},{"attributes":{"name":"Quincy Donnelly","age":61,"location":"New Lazaroland"}},{"attributes":{"name":"Nellie Schuppe","age":32,"location":"Eveton"}},{"attributes":{"name":"Terri Funk","age":30,"location":"Lynchland"}},{"attributes":{"name":"Dr. Courtney Von","age":80,"location":"Reno"}},{"attributes":{"name":"Michael Nolan","age":37,"location":"Yasmincester"}},{"attributes":{"name":"Jeremiah Rohan","age":63,"location":"North Cloyd"}},{"attributes":{"name":"Melisa Kiehn","age":18,"location":"Lake Kira"}},{"attributes":{"name":"Mr. Marco Daugherty IV","age":69,"location":"North Queen"}},{"attributes":{"name":"Jamir Robel","age":23,"location":"Fort Rubye"}},{"attributes":{"name":"Miss Delpha Rohan","age":55,"location":"North Martinastead"}},{"attributes":{"name":"Blake Effertz","age":54,"location":"Freidastad"}},{"attributes":{"name":"Ms. Scarlett Nicolas","age":35,"location":"Port Natalia"}},{"attributes":{"name":"Ms. Blanca Quitzon","age":79,"location":"West Concepcionboro"}},{"attributes":{"name":"Anastacio Carroll","age":34,"location":"Turcotteland"}},{"attributes":{"name":"Mrs. Ashley Ondricka","age":75,"location":"Yazmintown"}},{"attributes":{"name":"Marion Moen","age":25,"location":"Jacobihaven"}},{"attributes":{"name":"Kristine Tremblay","age":31,"location":"Hackettfield"}},{"attributes":{"name":"Orion Ortiz","age":65,"location":"West Cindy"}},{"attributes":{"name":"Webster O'Connell","age":28,"location":"North Lon"}},{"attributes":{"name":"Christiana Larkin","age":31,"location":"Fort Elinoremouth"}},{"attributes":{"name":"Giuseppe Hegmann Jr.","age":31,"location":"Port Rollin"}},{"attributes":{"name":"Laura Heathcote-Wilkinson","age":59,"location":"McKenziefurt"}},{"attributes":{"name":"Dr. Marvin Reichert MD","age":43,"location":"South Mary"}},{"attributes":{"name":"Becky Bednar","age":40,"location":"Lednermouth"}},{"attributes":{"name":"Mrs. Gardner Jones","age":75,"location":"Fort Hildegardview"}},{"attributes":{"name":"Madelyn Quitzon","age":47,"location":"Lakewood"}},{"attributes":{"name":"Robyn Lakin","age":42,"location":"Lake Tyreek"}},{"attributes":{"name":"Mercedes Littel","age":58,"location":"Calibury"}},{"attributes":{"name":"Kevin Quigley","age":29,"location":"Wunschboro"}},{"attributes":{"name":"Miss Nina Dickens","age":78,"location":"Gorczanyberg"}},{"attributes":{"name":"Carmine Pacocha","age":64,"location":"Pleasanton"}},{"attributes":{"name":"Crystal O'Keefe","age":50,"location":"Johnsonburgh"}},{"attributes":{"name":"Mr. Jannie Armstrong IV","age":20,"location":"East Green"}},{"attributes":{"name":"Lora Terry","age":35,"location":"South Jordan"}},{"attributes":{"name":"Joann Weber","age":60,"location":"North Ashlynntown"}},{"attributes":{"name":"Tyree Schulist","age":23,"location":"Josueport"}},{"attributes":{"name":"Tavares Gorczany","age":28,"location":"Fort Albertha"}},{"attributes":{"name":"Ruth Padberg","age":79,"location":"Fort Ulisesview"}},{"attributes":{"name":"Marianna Schulist","age":29,"location":"Lakewood"}},{"attributes":{"name":"Jessie Moen","age":27,"location":"Jacobshaven"}},{"attributes":{"name":"Della Weissnat","age":45,"location":"North Patricia"}},{"attributes":{"name":"Brady Turcotte","age":55,"location":"South Louie"}},{"attributes":{"name":"Jaime Gibson","age":78,"location":"Grand Prairie"}},{"attributes":{"name":"Bessie Larkin","age":23,"location":"Howellland"}},{"attributes":{"name":"Rigoberto Trantow II","age":39,"location":"Jakubowskifurt"}},{"attributes":{"name":"Magnus O'Conner","age":50,"location":"Missoula"}},{"attributes":{"name":"Sophia Ward","age":38,"location":"Jarvishaven"}},{"attributes":{"name":"Jaylin Leannon I","age":53,"location":"East Giovannystad"}},{"attributes":{"name":"Mitchell Crona","age":76,"location":"Brycenland"}},{"attributes":{"name":"Grace O'Reilly","age":52,"location":"Hyattmouth"}},{"attributes":{"name":"Harrison Legros","age":55,"location":"Port Kenyon"}},{"attributes":{"name":"Jerry Lueilwitz","age":50,"location":"Fort Justinacester"}},{"attributes":{"name":"Lori Beer Sr.","age":50,"location":"Alpharetta"}},{"attributes":{"name":"Tomas Considine","age":57,"location":"Rippinworth"}},{"attributes":{"name":"Anika Wolf","age":66,"location":"Fort German"}},{"attributes":{"name":"Camilla Quigley","age":33,"location":"North Larissa"}},{"attributes":{"name":"Eugene Hammes","age":52,"location":"Metzcester"}},{"attributes":{"name":"Raoul Grant","age":41,"location":"Lake Giovani"}},{"attributes":{"name":"Pat Koepp","age":24,"location":"Hamillmouth"}},{"attributes":{"name":"Glenn Boyle","age":67,"location":"South Jacinthe"}},{"attributes":{"name":"Clayton Ruecker","age":46,"location":"North Nannie"}},{"attributes":{"name":"Hilario Jakubowski","age":52,"location":"West Toreyhaven"}},{"attributes":{"name":"Linda Lowe","age":80,"location":"North Alvenaland"}},{"attributes":{"name":"Vincent Doyle","age":72,"location":"Lake Keltonstad"}},{"attributes":{"name":"Lucas Leffler","age":23,"location":"West Alexanderworth"}},{"attributes":{"name":"Marcel Funk Jr.","age":19,"location":"Lexington-Fayette"}},{"attributes":{"name":"Halie Stark","age":73,"location":"Donnellyview"}},{"attributes":{"name":"Douglas Mertz","age":78,"location":"West Okeyfurt"}},{"attributes":{"name":"Katherine Hudson","age":33,"location":"North Gileston"}},{"attributes":{"name":"Lila Frami","age":38,"location":"Lake Edgarshire"}},{"attributes":{"name":"Ms. Dan Hermiston-Wiegand","age":23,"location":"New Selenaview"}},{"attributes":{"name":"Olivia Legros","age":30,"location":"Zulaufville"}},{"attributes":{"name":"Sedrick Koelpin","age":22,"location":"South Jalenborough"}},{"attributes":{"name":"Russell Walker","age":57,"location":"West Jeffryfort"}},{"attributes":{"name":"Preston Parisian","age":35,"location":"Beermouth"}},{"attributes":{"name":"Jenna Torp","age":78,"location":"Aryannaport"}},{"attributes":{"name":"Mavis Padberg","age":26,"location":"Frankieton"}},{"attributes":{"name":"Kevin Homenick-Hackett","age":60,"location":"North Dessieberg"}},{"attributes":{"name":"Lavonne Bode","age":35,"location":"New Koryport"}},{"attributes":{"name":"Julius Kirlin","age":50,"location":"Pollichchester"}},{"attributes":{"name":"Lillian Hahn","age":59,"location":"Willmsport"}},{"attributes":{"name":"Carroll Muller","age":46,"location":"Fort Jarrell"}},{"attributes":{"name":"Angie Lynch","age":21,"location":"Lynchberg"}},{"attributes":{"name":"Mafalda Crona","age":27,"location":"Kevonchester"}},{"attributes":{"name":"Hermann Marks","age":19,"location":"Princeboro"}},{"attributes":{"name":"Grace Murphy III","age":48,"location":"West Jillianburgh"}},{"attributes":{"name":"Sean Hirthe","age":20,"location":"South Rosemary"}},{"attributes":{"name":"Dr. Drew Auer","age":70,"location":"Welchburgh"}},{"attributes":{"name":"Vivienne Kris","age":80,"location":"Weissnatworth"}},{"attributes":{"name":"Rodney Hoppe IV","age":51,"location":"Gulgowskiton"}},{"attributes":{"name":"Freda Nader","age":46,"location":"Lake Keeley"}},{"attributes":{"name":"David Lehner","age":69,"location":"East Dayton"}},{"attributes":{"name":"Al Wolff","age":41,"location":"East Hertha"}},{"attributes":{"name":"Tina Wolf","age":20,"location":"North Medacester"}},{"attributes":{"name":"Miss Serenity Stark","age":79,"location":"Elianestead"}},{"attributes":{"name":"Dr. Shyanne Towne","age":40,"location":"Fort Tyreseville"}},{"attributes":{"name":"Arjun Monahan-Hickle","age":53,"location":"New Marcosburgh"}},{"attributes":{"name":"Bertha Kuhlman","age":75,"location":"South Keeley"}},{"attributes":{"name":"Chad Hilpert","age":59,"location":"Cummerataland"}},{"attributes":{"name":"Patrick Tromp","age":58,"location":"Madera"}},{"attributes":{"name":"Mercedes Willms V","age":78,"location":"Davie"}},{"attributes":{"name":"Ricky Feeney I","age":62,"location":"South Jorgefort"}},{"attributes":{"name":"Edd Metz","age":73,"location":"Longview"}},{"attributes":{"name":"Toni Reilly","age":40,"location":"Kendrastead"}},{"attributes":{"name":"Cody Bosco-Schumm","age":78,"location":"Eugeneshire"}},{"attributes":{"name":"Rachel Tremblay","age":30,"location":"Marjorieboro"}},{"attributes":{"name":"Wm Blick","age":55,"location":"Harrisonstead"}},{"attributes":{"name":"Essie Fisher","age":54,"location":"East Monserrat"}},{"attributes":{"name":"Isabell Bednar","age":34,"location":"Janesville"}},{"attributes":{"name":"Leora Gislason","age":71,"location":"Ricestad"}},{"attributes":{"name":"Esteban Corwin","age":24,"location":"Aylaside"}},{"attributes":{"name":"Evangeline Reichel","age":31,"location":"Champlinfield"}},{"attributes":{"name":"Jan Crona","age":46,"location":"Towneborough"}},{"attributes":{"name":"Leslie Blanda","age":56,"location":"North Oswald"}},{"attributes":{"name":"Elmira Purdy Jr.","age":75,"location":"South Brandiside"}},{"attributes":{"name":"Jannie Batz","age":34,"location":"New Davonte"}},{"attributes":{"name":"Dr. Timothy Bogisich","age":49,"location":"North Margarettport"}},{"attributes":{"name":"Homer Labadie","age":79,"location":"West Leopoldfurt"}},{"attributes":{"name":"Neal Pagac","age":53,"location":"Simonisland"}},{"attributes":{"name":"Rose Hettinger","age":59,"location":"Port Jordaneview"}},{"attributes":{"name":"Faye Koelpin","age":47,"location":"Mayerthaven"}},{"attributes":{"name":"Marge Rohan","age":34,"location":"New Carmella"}},{"attributes":{"name":"Hugh Swaniawski","age":52,"location":"New Johnhaven"}},{"attributes":{"name":"Rey MacGyver","age":21,"location":"Darbyshire"}},{"attributes":{"name":"Brady Beatty-Weber","age":31,"location":"Kylemouth"}},{"attributes":{"name":"Edmond Lind","age":45,"location":"East Maidaville"}},{"attributes":{"name":"Mr. Brett Mraz","age":51,"location":"Chancetown"}},{"attributes":{"name":"Ms. Marlene Champlin","age":68,"location":"Chula Vista"}},{"attributes":{"name":"Rosa Kreiger-Dach","age":72,"location":"West Rodboro"}},{"attributes":{"name":"Archie Armstrong Sr.","age":56,"location":"Twin Falls"}},{"attributes":{"name":"Gunner Pouros I","age":26,"location":"East Clemmie"}},{"attributes":{"name":"Beth Jacobi","age":66,"location":"Rubyland"}},{"attributes":{"name":"Toni Howe","age":79,"location":"West Gennaro"}},{"attributes":{"name":"Bruce Hills-Mante","age":18,"location":"Krismouth"}},{"attributes":{"name":"Dr. Ronald Gerhold","age":60,"location":"Kington"}},{"attributes":{"name":"Junius Kshlerin","age":30,"location":"West Emmanuelle"}},{"attributes":{"name":"Anya Jaskolski","age":61,"location":"Terrillworth"}},{"attributes":{"name":"Gene Durgan","age":57,"location":"Boganhaven"}},{"attributes":{"name":"Piper Funk","age":75,"location":"South Sandrafurt"}},{"attributes":{"name":"Rashawn Stark","age":62,"location":"Dahliaport"}},{"attributes":{"name":"Zander Okuneva","age":38,"location":"Coral Gables"}},{"attributes":{"name":"Dean Stokes","age":35,"location":"North Neldaton"}},{"attributes":{"name":"Leilani McDermott","age":55,"location":"DeSoto"}},{"attributes":{"name":"Steven White","age":73,"location":"Fort Sisterfort"}},{"attributes":{"name":"Robyn Hane-Hayes","age":19,"location":"Jedidiahborough"}},{"attributes":{"name":"Forrest Orn","age":48,"location":"West Okeyport"}},{"attributes":{"name":"Dustin Boyer","age":32,"location":"Rathchester"}},{"attributes":{"name":"Daisy Schoen","age":40,"location":"East Jess"}},{"attributes":{"name":"Jessyca Stehr","age":58,"location":"Mitchellstead"}},{"attributes":{"name":"Keon Schultz","age":20,"location":"New Thelma"}},{"attributes":{"name":"Mr. Rick Johnson I","age":40,"location":"Arecibo"}},{"attributes":{"name":"Karen Harris","age":38,"location":"North Earnestfurt"}},{"attributes":{"name":"Dr. Jacinthe Kerluke","age":78,"location":"West Maxwell"}},{"attributes":{"name":"Carlos Veum","age":28,"location":"Ornchester"}},{"attributes":{"name":"Osvaldo Wisozk","age":41,"location":"East Johnny"}},{"attributes":{"name":"Jeff Hermann","age":67,"location":"Lake Marjolaineworth"}},{"attributes":{"name":"Nona King","age":69,"location":"Lake Godfrey"}},{"attributes":{"name":"Mrs. Carmen Ebert DVM","age":53,"location":"Mentor"}},{"attributes":{"name":"Darla Brown","age":72,"location":"Stantontown"}},{"attributes":{"name":"April Zulauf MD","age":19,"location":"Moenfort"}},{"attributes":{"name":"Morgan Dicki","age":76,"location":"Fort Giovannitown"}},{"attributes":{"name":"Leon Kreiger","age":33,"location":"New Jennyfer"}},{"attributes":{"name":"Ladarius Kertzmann-Lubowitz","age":38,"location":"Pleasanton"}},{"attributes":{"name":"Mrs. Jaeden Marquardt II","age":49,"location":"Marysville"}},{"attributes":{"name":"Nickolas McClure","age":73,"location":"Burnsville"}},{"attributes":{"name":"Caroline Haley","age":51,"location":"North Raphaelleland"}},{"attributes":{"name":"Ms. Rosendo Stracke","age":42,"location":"Lauderhill"}},{"attributes":{"name":"Tommie Luettgen","age":48,"location":"South Kobychester"}},{"attributes":{"name":"Guy Waters Sr.","age":54,"location":"Port Trey"}},{"attributes":{"name":"Wilburn Ruecker","age":58,"location":"St. Petersburg"}},{"attributes":{"name":"Hyman Kling","age":75,"location":"New Callieland"}},{"attributes":{"name":"Arnold Orn","age":42,"location":"Sioux Falls"}},{"attributes":{"name":"Estell Ullrich","age":18,"location":"Maricopa"}},{"attributes":{"name":"Kate Lakin","age":67,"location":"East Ninafort"}},{"attributes":{"name":"Alfredo Hayes","age":54,"location":"Lake Frank"}},{"attributes":{"name":"Myra Prosacco","age":71,"location":"Selenabury"}},{"attributes":{"name":"Cleo Cole","age":24,"location":"West Marcos"}},{"attributes":{"name":"Buster Dickens","age":59,"location":"North Nestor"}},{"attributes":{"name":"Mr. Andre Botsford","age":19,"location":"Port Mireilleport"}},{"attributes":{"name":"Mr. Francis Torp","age":38,"location":"Lake Grayce"}},{"attributes":{"name":"Rhianna Mante","age":28,"location":"Reynoldsville"}},{"attributes":{"name":"Everardo Hermiston","age":27,"location":"Maudcester"}},{"attributes":{"name":"Sherri Hagenes","age":50,"location":"Kaiachester"}},{"attributes":{"name":"Ms. Hazel Becker","age":40,"location":"Hermistonhaven"}},{"attributes":{"name":"Johnathan Schmeler II","age":50,"location":"Strosinport"}},{"attributes":{"name":"Orville Lockman","age":18,"location":"Kiehnhaven"}},{"attributes":{"name":"Felipe Adams I","age":27,"location":"Flagstaff"}},{"attributes":{"name":"Kirsten Greenfelder","age":59,"location":"South Madelynport"}},{"attributes":{"name":"Rachael Mills","age":58,"location":"Mishawaka"}},{"attributes":{"name":"Moses Muller PhD","age":80,"location":"Wolfland"}},{"attributes":{"name":"Henrietta Cassin","age":69,"location":"Temple"}},{"attributes":{"name":"Emery Smitham","age":45,"location":"Garrickhaven"}},{"attributes":{"name":"Ted Skiles","age":75,"location":"O'Connerport"}},{"attributes":{"name":"Noel Gusikowski","age":20,"location":"East Dorothyfort"}},{"attributes":{"name":"Christina Farrell","age":33,"location":"Rolfsontown"}},{"attributes":{"name":"Buddy Herman","age":79,"location":"Bayamon"}},{"attributes":{"name":"Violet Ullrich","age":25,"location":"Rowland Heights"}},{"attributes":{"name":"D'angelo Roberts","age":39,"location":"Montgomery"}},{"attributes":{"name":"Brandy Kulas","age":76,"location":"West Jakobchester"}},{"attributes":{"name":"Frank Abbott","age":55,"location":"Christianville"}},{"attributes":{"name":"Margarete Ernser","age":24,"location":"Wesley Chapel"}},{"attributes":{"name":"Ms. Marta Nader","age":69,"location":"Faustostead"}},{"attributes":{"name":"Archibald Roberts","age":55,"location":"Port Dominic"}},{"attributes":{"name":"Dean Wyman","age":41,"location":"West Vito"}},{"attributes":{"name":"Miss Maurice Lubowitz","age":33,"location":"Lake Gillian"}},{"attributes":{"name":"Lon Wolf","age":68,"location":"Lake Everardo"}},{"attributes":{"name":"Bessie Cummings","age":66,"location":"Paucekworth"}},{"attributes":{"name":"Benny Ankunding","age":54,"location":"The Woodlands"}},{"attributes":{"name":"Josephine McGlynn","age":70,"location":"West Gabriella"}},{"attributes":{"name":"Jordyn Abernathy DVM","age":24,"location":"Botsfordboro"}},{"attributes":{"name":"Percival McCullough","age":35,"location":"Bayerborough"}},{"attributes":{"name":"Laury Ziemann III","age":33,"location":"Ornburgh"}},{"attributes":{"name":"Rose Fahey","age":50,"location":"South Micah"}},{"attributes":{"name":"Dr. Rafaela Reilly","age":20,"location":"Shainaboro"}},{"attributes":{"name":"Mrs. Tracey McLaughlin","age":48,"location":"Schambergerhaven"}},{"attributes":{"name":"Miss Jeffery Weber","age":74,"location":"Bartholomeville"}},{"attributes":{"name":"Jacqueline Conroy","age":58,"location":"Fort Susanaboro"}},{"attributes":{"name":"Ms. Eddie Runolfsdottir","age":59,"location":"Cyrilhaven"}},{"attributes":{"name":"Faye Kassulke","age":26,"location":"Bossier City"}},{"attributes":{"name":"Harley Swift","age":70,"location":"North Ned"}},{"attributes":{"name":"Mr. Philip Thompson","age":18,"location":"Gabriellemouth"}},{"attributes":{"name":"Alysha Metz","age":54,"location":"Vellastad"}},{"attributes":{"name":"Monica O'Keefe","age":80,"location":"Fort Benton"}},{"attributes":{"name":"Robert Mitchell","age":42,"location":"Lake Monachester"}},{"attributes":{"name":"Darnell Carter","age":37,"location":"North Dortha"}},{"attributes":{"name":"Gina Miller","age":40,"location":"Redding"}},{"attributes":{"name":"Crystal Torp","age":78,"location":"Port Dixie"}},{"attributes":{"name":"Kellie Fadel","age":74,"location":"West Muhammadberg"}},{"attributes":{"name":"Guillermo Fritsch","age":58,"location":"Nashua"}},{"attributes":{"name":"Cary Abernathy","age":52,"location":"Edythville"}},{"attributes":{"name":"Dakota Kozey","age":64,"location":"Stiedemanntown"}},{"attributes":{"name":"Tanya Vandervort DVM","age":76,"location":"Lake Jacquelyn"}},{"attributes":{"name":"Dr. Mabel Johnston","age":53,"location":"Kiehnboro"}},{"attributes":{"name":"Gail Runte","age":32,"location":"West Jay"}},{"attributes":{"name":"Mrs. June Reilly I","age":48,"location":"Marianfort"}},{"attributes":{"name":"Andy Schumm","age":61,"location":"Pagacfort"}},{"attributes":{"name":"Andrew Upton","age":76,"location":"West Haven"}},{"attributes":{"name":"Rosie Wolf","age":39,"location":"Collinton"}},{"attributes":{"name":"Kent Rippin","age":62,"location":"Medhurstchester"}},{"attributes":{"name":"Alexzander Murphy","age":19,"location":"Robbietown"}},{"attributes":{"name":"Brandon Nicolas","age":20,"location":"Beaverton"}},{"attributes":{"name":"Rachael Schmeler","age":45,"location":"Rathchester"}},{"attributes":{"name":"Chester Jacobson","age":73,"location":"Walterfield"}},{"attributes":{"name":"Dwight Hodkiewicz","age":28,"location":"South Finnworth"}},{"attributes":{"name":"Kelly Weissnat Sr.","age":52,"location":"Lake Misael"}},{"attributes":{"name":"Marianna Lowe","age":46,"location":"New Christa"}},{"attributes":{"name":"Yadira Heidenreich","age":60,"location":"Koreytown"}},{"attributes":{"name":"Amina Paucek","age":77,"location":"Ankeny"}},{"attributes":{"name":"Miss Christian Hackett","age":77,"location":"New Declan"}},{"attributes":{"name":"Alma Graham","age":59,"location":"Hudsonport"}},{"attributes":{"name":"Millie Hickle","age":41,"location":"Katelinhaven"}},{"attributes":{"name":"Katrina Thompson","age":70,"location":"Hansenfurt"}},{"attributes":{"name":"Dr. Sonya Volkman","age":24,"location":"Fort Abagailtown"}},{"attributes":{"name":"Arne Langosh","age":50,"location":"Sammamish"}},{"attributes":{"name":"Belinda Abshire","age":57,"location":"South Ramiroside"}},{"attributes":{"name":"Elissa Bednar","age":64,"location":"Port Mckaylafort"}},{"attributes":{"name":"Janie Cummerata","age":58,"location":"College Station"}},{"attributes":{"name":"Ernest Padberg","age":52,"location":"West Haroldfurt"}},{"attributes":{"name":"Myron VonRueden","age":57,"location":"West Eliseo"}},{"attributes":{"name":"Jessica Sipes","age":65,"location":"West Ari"}},{"attributes":{"name":"Greyson Dietrich-Harber","age":60,"location":"Riverburgh"}},{"attributes":{"name":"Guadalupe Crist","age":47,"location":"Lake Jaronside"}},{"attributes":{"name":"Myron Fadel-Fahey","age":60,"location":"Reichertside"}},{"attributes":{"name":"Natasha Larson Sr.","age":39,"location":"Nashworth"}},{"attributes":{"name":"Javonte Cummerata","age":44,"location":"Juanafurt"}},{"attributes":{"name":"Erik Batz","age":67,"location":"West Marjoryside"}},{"attributes":{"name":"Bryant Bergnaum","age":75,"location":"Santa Cruz"}},{"attributes":{"name":"Erik Keebler","age":30,"location":"Longview"}},{"attributes":{"name":"Delfina Cassin","age":59,"location":"Michellefort"}},{"attributes":{"name":"Virgie Kreiger","age":30,"location":"Wylie"}},{"attributes":{"name":"Eunice Rogahn","age":53,"location":"Port Frank"}},{"attributes":{"name":"Audrey Mayer","age":78,"location":"Chadview"}},{"attributes":{"name":"Jesse Heller","age":66,"location":"New Fabian"}},{"attributes":{"name":"Rasheed Mosciski","age":68,"location":"Fort Itzel"}},{"attributes":{"name":"Jonatan Tillman","age":33,"location":"Council Bluffs"}},{"attributes":{"name":"Delaney Turner","age":77,"location":"Lazaroboro"}},{"attributes":{"name":"Dr. Queenie Powlowski","age":31,"location":"Vandervortton"}},{"attributes":{"name":"Brown Bahringer","age":35,"location":"Port Miracletown"}},{"attributes":{"name":"Damion West","age":21,"location":"Emersonchester"}},{"attributes":{"name":"Marisol Rolfson","age":73,"location":"Eduardostead"}},{"attributes":{"name":"Marty Sanford PhD","age":40,"location":"Dareside"}},{"attributes":{"name":"Miss Kim Wehner","age":47,"location":"San Jose"}},{"attributes":{"name":"Bessie Gibson","age":33,"location":"Bauchfort"}},{"attributes":{"name":"Carrie Kshlerin","age":47,"location":"Grimestown"}},{"attributes":{"name":"Hazel Nolan","age":48,"location":"Diegofield"}},{"attributes":{"name":"Alvin Oberbrunner","age":48,"location":"Janesville"}},{"attributes":{"name":"Shelly Hyatt","age":36,"location":"Elsecester"}},{"attributes":{"name":"Madisyn Ruecker","age":61,"location":"Toyville"}},{"attributes":{"name":"Alfredo Lynch-Cassin","age":51,"location":"South Jessshire"}},{"attributes":{"name":"Sydnie Huels","age":57,"location":"Appleton"}},{"attributes":{"name":"Marjorie Mante","age":39,"location":"East Hartford"}},{"attributes":{"name":"George Schmitt","age":65,"location":"Theamouth"}},{"attributes":{"name":"Hildegard Powlowski","age":68,"location":"Shanahanworth"}},{"attributes":{"name":"Cristian Dach","age":67,"location":"North Abeworth"}},{"attributes":{"name":"Dora Collins","age":77,"location":"Iowa City"}},{"attributes":{"name":"Loy Kerluke","age":54,"location":"Fort Trishaworth"}},{"attributes":{"name":"Mildred Schroeder","age":20,"location":"South Denis"}},{"attributes":{"name":"Woodrow Terry","age":37,"location":"Mattshire"}},{"attributes":{"name":"Adrian Satterfield Jr.","age":67,"location":"Fort Karolann"}},{"attributes":{"name":"Wilbert Kutch","age":61,"location":"Roswell"}},{"attributes":{"name":"Vernice O'Connell-Gleichner","age":30,"location":"East Addison"}},{"attributes":{"name":"Jaime Simonis","age":42,"location":"West Aftonville"}},{"attributes":{"name":"Aubrey O'Connell","age":76,"location":"Calebcester"}},{"attributes":{"name":"Mireya Dickinson-Schmeler","age":46,"location":"Jerdeton"}},{"attributes":{"name":"Clementine Collier","age":27,"location":"Whittier"}},{"attributes":{"name":"Salma Ankunding","age":59,"location":"O'Connerstad"}},{"attributes":{"name":"Abelardo Prohaska","age":65,"location":"Feilworth"}},{"attributes":{"name":"Ernestine Bergstrom III","age":77,"location":"Marvinside"}},{"attributes":{"name":"Cruz Pollich","age":72,"location":"Bednarcester"}},{"attributes":{"name":"Violet Wunsch-Dietrich","age":80,"location":"Hilpertstead"}},{"attributes":{"name":"Elinor Muller","age":20,"location":"Morganbury"}},{"attributes":{"name":"Edgar Moen","age":43,"location":"Kassulkefurt"}},{"attributes":{"name":"Aubrey Stiedemann","age":66,"location":"Fort Bernadettetown"}},{"attributes":{"name":"Gloria Stokes","age":78,"location":"McGlynncester"}},{"attributes":{"name":"Jude Kris","age":19,"location":"North Jaydafield"}},{"attributes":{"name":"Preston Howe","age":53,"location":"Seattle"}},{"attributes":{"name":"Sunny Wisozk","age":68,"location":"Kingland"}},{"attributes":{"name":"Tami Hilll","age":56,"location":"Goldnerboro"}},{"attributes":{"name":"Hugh Fisher","age":69,"location":"Kurtiston"}},{"attributes":{"name":"Kari Dibbert","age":70,"location":"East Jayda"}},{"attributes":{"name":"Daisy Ondricka","age":34,"location":"Tonawanda"}},{"attributes":{"name":"Miranda Rempel I","age":33,"location":"Akron"}},{"attributes":{"name":"Shawna Kub","age":44,"location":"West Sanford"}},{"attributes":{"name":"Cierra Torphy-Strosin","age":53,"location":"West Alfredoview"}},{"attributes":{"name":"Regina Johnston I","age":52,"location":"Yorba Linda"}},{"attributes":{"name":"Miss Terry Fay","age":27,"location":"New Esperanza"}},{"attributes":{"name":"Derek Heaney","age":68,"location":"Fort Amaliaview"}},{"attributes":{"name":"Santos Stiedemann","age":23,"location":"Tamarac"}},{"attributes":{"name":"Oda Cummerata","age":19,"location":"Carolanneshire"}},{"attributes":{"name":"Elaine Harris","age":73,"location":"Germantown"}},{"attributes":{"name":"Amos Kohler","age":28,"location":"Wisokyville"}},{"attributes":{"name":"Yvette Dare-Gislason","age":57,"location":"Tomborough"}},{"attributes":{"name":"Duncan Lang","age":63,"location":"Obieside"}},{"attributes":{"name":"Claud Hudson","age":51,"location":"Eliezerworth"}},{"attributes":{"name":"Lue Douglas","age":67,"location":"East Stewart"}},{"attributes":{"name":"Ed Emard","age":52,"location":"Jennyferhaven"}},{"attributes":{"name":"Sheri Rippin","age":24,"location":"Fort Emiliano"}},{"attributes":{"name":"Andre Hettinger","age":31,"location":"Rosebury"}},{"attributes":{"name":"Freddie Swift I","age":22,"location":"Long Beach"}},{"attributes":{"name":"Mable Stracke","age":79,"location":"Weimannville"}},{"attributes":{"name":"Cruz Rodriguez","age":80,"location":"Mitchellfurt"}},{"attributes":{"name":"Stanford Simonis","age":79,"location":"Wiegandmouth"}},{"attributes":{"name":"Mildred Schmitt","age":76,"location":"Port Lizethhaven"}},{"attributes":{"name":"Mr. Jazmyne Ankunding","age":46,"location":"Galveston"}},{"attributes":{"name":"Willard Sawayn","age":42,"location":"Giovannastad"}},{"attributes":{"name":"Alyssa Pouros","age":39,"location":"Lake Caterinafield"}},{"attributes":{"name":"Mrs. Fred Nienow","age":21,"location":"Geostad"}},{"attributes":{"name":"Travis Emard","age":71,"location":"Schadenstad"}},{"attributes":{"name":"Eduardo Hammes","age":62,"location":"Hamilton"}},{"attributes":{"name":"Shannon Lindgren IV","age":31,"location":"South Hannah"}},{"attributes":{"name":"Traci Mitchell","age":53,"location":"West Babylon"}},{"attributes":{"name":"Dr. Inez Reichel","age":37,"location":"Fort Flostead"}},{"attributes":{"name":"Nyah Macejkovic","age":60,"location":"East Eldridgeburgh"}},{"attributes":{"name":"Ashley Nitzsche","age":22,"location":"South Bette"}},{"attributes":{"name":"Adan Mohr","age":59,"location":"Surprise"}},{"attributes":{"name":"Gladys Funk","age":57,"location":"Lake Macyport"}},{"attributes":{"name":"Brooke Stehr","age":48,"location":"Hagenesstad"}},{"attributes":{"name":"Cecil Huel","age":56,"location":"West Palm Beach"}},{"attributes":{"name":"Ira Wisoky MD","age":40,"location":"Trevacester"}},{"attributes":{"name":"Karen Armstrong","age":29,"location":"Lake Randal"}},{"attributes":{"name":"Johnathan Koepp","age":21,"location":"Metairie"}},{"attributes":{"name":"Roxanne Ullrich","age":61,"location":"Norbertoville"}},{"attributes":{"name":"Mr. Orlo Shields","age":79,"location":"Boulder"}},{"attributes":{"name":"Wendell Paucek","age":38,"location":"Gusikowskiview"}},{"attributes":{"name":"Will Koepp","age":18,"location":"Beiershire"}},{"attributes":{"name":"Susan Champlin","age":55,"location":"Bodeworth"}},{"attributes":{"name":"Melinda Gleason","age":21,"location":"Fort Jade"}},{"attributes":{"name":"Jackie Hahn IV","age":35,"location":"Stammborough"}},{"attributes":{"name":"Brielle Zulauf","age":53,"location":"Lonieport"}},{"attributes":{"name":"Lynne Jones","age":69,"location":"New Wandaberg"}},{"attributes":{"name":"Hiram Quigley","age":65,"location":"Ellenfort"}},{"attributes":{"name":"Miss Ellen Heidenreich DVM","age":18,"location":"Bowie"}},{"attributes":{"name":"Marlene Sanford-Romaguera","age":54,"location":"Fredyworth"}},{"attributes":{"name":"Deven Lynch","age":28,"location":"Jerelchester"}},{"attributes":{"name":"Arthur Morissette","age":29,"location":"Plantation"}},{"attributes":{"name":"Jesus Hessel III","age":40,"location":"Kraigview"}},{"attributes":{"name":"Mable Tromp","age":52,"location":"Harberborough"}},{"attributes":{"name":"Lemuel Harber","age":26,"location":"Bergstromshire"}},{"attributes":{"name":"Zane Rolfson","age":77,"location":"Litteltown"}},{"attributes":{"name":"Connie Lang","age":35,"location":"Gutkowskimouth"}},{"attributes":{"name":"Willie Herman","age":39,"location":"Runolfssonboro"}},{"attributes":{"name":"Cornelius Mayer","age":60,"location":"Abbyfurt"}},{"attributes":{"name":"Jaron Corwin","age":40,"location":"Hermistonland"}},{"attributes":{"name":"Santos Ritchie","age":54,"location":"Nannieborough"}},{"attributes":{"name":"Shanel Kozey","age":21,"location":"Kaileeville"}},{"attributes":{"name":"Lorenzo Hirthe","age":44,"location":"North Mackenziemouth"}},{"attributes":{"name":"Clark Schinner","age":48,"location":"Lake Virgieland"}},{"attributes":{"name":"Mylene Wisozk","age":39,"location":"East Margie"}},{"attributes":{"name":"Miss Marlene Swift","age":61,"location":"Grimeston"}},{"attributes":{"name":"Darin Cassin","age":20,"location":"Oceanside"}},{"attributes":{"name":"Pablo Russel","age":59,"location":"Kemmerstad"}},{"attributes":{"name":"Lisa Koss","age":79,"location":"Lilyton"}},{"attributes":{"name":"Coralie Wisoky","age":76,"location":"Port Orange"}},{"attributes":{"name":"Mrs. Candice Rogahn","age":77,"location":"Lake Yasmeenview"}},{"attributes":{"name":"Tiffany Mayert","age":65,"location":"McDermottland"}},{"attributes":{"name":"Wendell Carroll","age":32,"location":"Hayeshaven"}},{"attributes":{"name":"Julius Ernser","age":77,"location":"Fort Barrett"}},{"attributes":{"name":"Elaine Lehner","age":40,"location":"Davionfield"}},{"attributes":{"name":"Kurt Shanahan","age":77,"location":"Luettgenbury"}},{"attributes":{"name":"Marguerite Ondricka","age":78,"location":"Jazmynville"}},{"attributes":{"name":"Lucy Weber","age":78,"location":"East Clarissa"}},{"attributes":{"name":"Alene Terry","age":40,"location":"Emmerichworth"}},{"attributes":{"name":"Dr. Craig Mayer-O'Kon","age":40,"location":"Fort Vince"}},{"attributes":{"name":"Rowan Jast","age":22,"location":"Fayland"}},{"attributes":{"name":"Jakob Runolfsson","age":62,"location":"Rainabury"}},{"attributes":{"name":"Kristopher Kunde","age":19,"location":"Port Lora"}},{"attributes":{"name":"Eugene Huel","age":45,"location":"West Clementboro"}},{"attributes":{"name":"Emmalee Heidenreich","age":71,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Dr. Janie Skiles","age":22,"location":"East Svenview"}},{"attributes":{"name":"Morris Armstrong","age":31,"location":"Apple Valley"}},{"attributes":{"name":"Charlie Torphy V","age":79,"location":"Wauwatosa"}},{"attributes":{"name":"Patricia Doyle","age":62,"location":"San Juan"}},{"attributes":{"name":"Gloria O'Conner","age":52,"location":"Fort Ebony"}},{"attributes":{"name":"Mr. Cameron Langworth","age":75,"location":"Beavercreek"}},{"attributes":{"name":"Gregg Streich","age":58,"location":"Rathview"}},{"attributes":{"name":"Macey Bailey","age":39,"location":"New Shanny"}},{"attributes":{"name":"Tess Hudson","age":19,"location":"Toyburgh"}},{"attributes":{"name":"Edmund Mertz DDS","age":35,"location":"Winifredchester"}},{"attributes":{"name":"Kristy McKenzie","age":46,"location":"East Guyworth"}},{"attributes":{"name":"Eva Nader","age":41,"location":"Conway"}},{"attributes":{"name":"Maryse Walter","age":24,"location":"Keanuburgh"}},{"attributes":{"name":"Dr. Cade Gleichner Jr.","age":27,"location":"Jamiemouth"}},{"attributes":{"name":"Frances Labadie","age":60,"location":"East Bernieboro"}},{"attributes":{"name":"Wallace Okuneva","age":39,"location":"Camarillo"}},{"attributes":{"name":"Bobbie Veum","age":65,"location":"Starkworth"}},{"attributes":{"name":"Noah Schinner","age":77,"location":"Bauchland"}},{"attributes":{"name":"Darlene Conn","age":53,"location":"Rosaliahaven"}},{"attributes":{"name":"Stewart Ruecker","age":39,"location":"Dariushaven"}},{"attributes":{"name":"Tracy Kautzer III","age":67,"location":"Johnsshire"}},{"attributes":{"name":"Francisco Cummerata","age":45,"location":"Fort Amir"}},{"attributes":{"name":"Ms. Christine Braun","age":60,"location":"Runolfssonton"}},{"attributes":{"name":"Cade Nicolas","age":51,"location":"Lake Kobe"}},{"attributes":{"name":"Jenny Brekke","age":48,"location":"East Santinamouth"}},{"attributes":{"name":"Dr. Marcos Hessel","age":36,"location":"South Isaifort"}},{"attributes":{"name":"Salvatore Kiehn","age":55,"location":"Fargo"}},{"attributes":{"name":"Kimberly Padberg","age":23,"location":"Smyrna"}},{"attributes":{"name":"Jermaine Halvorson","age":30,"location":"San Angelo"}},{"attributes":{"name":"Mrs. Woodrow Hammes","age":52,"location":"Morganton"}},{"attributes":{"name":"Mr. Freddy Cummerata","age":74,"location":"Jazmynport"}},{"attributes":{"name":"Olga Runolfsdottir","age":19,"location":"Port Reagan"}},{"attributes":{"name":"Carmela Stoltenberg","age":40,"location":"Kimberlyhaven"}},{"attributes":{"name":"Christop Abbott PhD","age":19,"location":"Albinashire"}},{"attributes":{"name":"Marjorie Davis","age":77,"location":"McCulloughbury"}},{"attributes":{"name":"Peyton Weissnat","age":35,"location":"Anaheim"}},{"attributes":{"name":"Agnes Jerde","age":69,"location":"North Jeffry"}},{"attributes":{"name":"Emily Fay","age":24,"location":"North Port"}},{"attributes":{"name":"Judge Pfeffer","age":21,"location":"Pearlinecester"}},{"attributes":{"name":"Maximus Goyette","age":20,"location":"Johnstonshire"}},{"attributes":{"name":"Bernard Ebert","age":77,"location":"West Jaylon"}},{"attributes":{"name":"Courtney Beatty","age":67,"location":"Kilbackcester"}},{"attributes":{"name":"Justus Rice-Hilpert","age":23,"location":"Lake Nathanaelborough"}},{"attributes":{"name":"Darion Hoppe","age":57,"location":"Port Aileen"}},{"attributes":{"name":"Shanel Thiel","age":58,"location":"Sporerburgh"}},{"attributes":{"name":"Lucille Hermann-Hudson","age":49,"location":"South Tiaraboro"}},{"attributes":{"name":"Rickey Okuneva","age":23,"location":"Wiegandfurt"}},{"attributes":{"name":"Omar McClure","age":62,"location":"Russport"}},{"attributes":{"name":"Shawn Wyman","age":37,"location":"Christiansenberg"}},{"attributes":{"name":"Mr. Marsha Walsh","age":27,"location":"Ullrichchester"}},{"attributes":{"name":"Christy Schneider","age":28,"location":"Cordeliaside"}},{"attributes":{"name":"Jake Lindgren","age":63,"location":"Lucindaton"}},{"attributes":{"name":"Rene Emard","age":34,"location":"Palmdale"}},{"attributes":{"name":"Gail Bahringer","age":39,"location":"Jodiebury"}},{"attributes":{"name":"Vella Smitham","age":35,"location":"East Claire"}},{"attributes":{"name":"Gustave Schuppe","age":71,"location":"Manhattan"}},{"attributes":{"name":"Amanda Labadie Sr.","age":41,"location":"Justusfield"}},{"attributes":{"name":"Myrtle Jacobson IV","age":61,"location":"Cotyborough"}},{"attributes":{"name":"Tyrone Zboncak","age":69,"location":"Fort Akeemton"}},{"attributes":{"name":"Constance Jerde Jr.","age":39,"location":"South Zelmaside"}},{"attributes":{"name":"Manuel Bergnaum","age":67,"location":"East Rahsaan"}},{"attributes":{"name":"Adrain McDermott","age":65,"location":"Wisozkton"}},{"attributes":{"name":"Meredith Schinner","age":18,"location":"Corneliusshire"}},{"attributes":{"name":"Tony McGlynn","age":62,"location":"Thielview"}},{"attributes":{"name":"Ms. Antonette Streich Jr.","age":73,"location":"North Davon"}},{"attributes":{"name":"Elmira Thiel","age":61,"location":"Lake Destineycester"}},{"attributes":{"name":"Charles Erdman V","age":80,"location":"East Rogerstad"}},{"attributes":{"name":"Taya Ferry","age":69,"location":"Bellaburgh"}},{"attributes":{"name":"Virgil Braun","age":26,"location":"Lake Orin"}},{"attributes":{"name":"Joyce Kautzer","age":35,"location":"Madalinechester"}},{"attributes":{"name":"Anna Luettgen","age":69,"location":"Lake Dixie"}},{"attributes":{"name":"Fabian Moen MD","age":79,"location":"Fort Milo"}},{"attributes":{"name":"Sandy Kling","age":36,"location":"Ottofield"}},{"attributes":{"name":"Garrett Baumbach","age":68,"location":"Elianfurt"}},{"attributes":{"name":"Pearlie Pouros","age":53,"location":"West Cassandreberg"}},{"attributes":{"name":"Bernard Romaguera-Ziemann","age":78,"location":"South Leonardomouth"}},{"attributes":{"name":"Elaine Corkery","age":36,"location":"Ronfurt"}},{"attributes":{"name":"Mrs. Herbert Ferry","age":40,"location":"North Lambert"}},{"attributes":{"name":"Darlene Murray","age":58,"location":"Cristaltown"}},{"attributes":{"name":"Lori Larson","age":73,"location":"Carlsbad"}},{"attributes":{"name":"Ken Goldner","age":32,"location":"Rubieport"}},{"attributes":{"name":"Emilio Kreiger","age":28,"location":"Port Jazmin"}},{"attributes":{"name":"Jo Romaguera","age":46,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Nina Pagac","age":62,"location":"Janesville"}},{"attributes":{"name":"Delbert Orn","age":66,"location":"Baytown"}},{"attributes":{"name":"Johnathan Ebert","age":43,"location":"North Monica"}},{"attributes":{"name":"Diana Lebsack","age":25,"location":"Johnpaulville"}},{"attributes":{"name":"Gabe Davis II","age":33,"location":"Mohrboro"}},{"attributes":{"name":"Sonya Stehr","age":18,"location":"Port Chloehaven"}},{"attributes":{"name":"Carole Strosin","age":47,"location":"Hershelshire"}},{"attributes":{"name":"Dr. Martin Abbott-Emmerich","age":22,"location":"Fort Louie"}},{"attributes":{"name":"Ben Russel","age":66,"location":"Steuberberg"}},{"attributes":{"name":"Gennaro Nikolaus","age":31,"location":"South Juanita"}},{"attributes":{"name":"Tressa Russel II","age":52,"location":"Noblesville"}},{"attributes":{"name":"Alfonso Boehm","age":35,"location":"West Ethyl"}},{"attributes":{"name":"Jimmy Wunsch","age":55,"location":"Fort Myra"}},{"attributes":{"name":"Dr. Alysha Schroeder","age":78,"location":"Jeramiefurt"}},{"attributes":{"name":"Marietta Crooks","age":55,"location":"Beattyville"}},{"attributes":{"name":"Sarah Lesch","age":26,"location":"Deanworth"}},{"attributes":{"name":"Laura Lebsack I","age":32,"location":"Fort Owenview"}},{"attributes":{"name":"Olga Kuphal","age":42,"location":"North Dolly"}},{"attributes":{"name":"Darla Prosacco","age":58,"location":"Rochester"}},{"attributes":{"name":"Jace Moen","age":64,"location":"Altenwerthtown"}},{"attributes":{"name":"George Carroll","age":29,"location":"Hiramborough"}},{"attributes":{"name":"Stephanie Vandervort","age":40,"location":"South Bend"}},{"attributes":{"name":"Alton Veum","age":19,"location":"New Garrettshire"}},{"attributes":{"name":"Irene Haag","age":61,"location":"South Winnifredborough"}},{"attributes":{"name":"Stanley Schaden","age":19,"location":"Morarstead"}},{"attributes":{"name":"Lynn Roberts","age":72,"location":"Johnschester"}},{"attributes":{"name":"Nancy Block PhD","age":39,"location":"Millscester"}},{"attributes":{"name":"Essie Erdman PhD","age":64,"location":"Menifee"}},{"attributes":{"name":"Yadira Grant","age":69,"location":"Lake Tyler"}},{"attributes":{"name":"Carolyn Wintheiser","age":55,"location":"O'Connellstead"}},{"attributes":{"name":"Mr. Brendan Hermiston","age":67,"location":"Fort Ernestostead"}},{"attributes":{"name":"Candice Cormier","age":46,"location":"Bellingham"}},{"attributes":{"name":"Rory Balistreri","age":50,"location":"New Orleans"}},{"attributes":{"name":"Emmie Erdman","age":77,"location":"Port Spencer"}},{"attributes":{"name":"Jessie Kertzmann","age":38,"location":"Chesterfield"}},{"attributes":{"name":"Dameon Kertzmann","age":44,"location":"Port Sophiaboro"}},{"attributes":{"name":"Dr. Ruthe Effertz","age":59,"location":"West Myrl"}},{"attributes":{"name":"Dr. Van Olson","age":79,"location":"South Murray"}},{"attributes":{"name":"Joshuah Smith","age":50,"location":"Hartford"}},{"attributes":{"name":"Josh Ebert","age":30,"location":"Hermannfurt"}},{"attributes":{"name":"Emilie Spinka","age":24,"location":"South Margaretta"}},{"attributes":{"name":"Adrian Greenfelder","age":78,"location":"North Timmyfort"}},{"attributes":{"name":"Danyka Feest","age":48,"location":"Gislasonstad"}},{"attributes":{"name":"Mitchel Fisher-Connelly","age":78,"location":"North Michelleworth"}},{"attributes":{"name":"Leslie Gibson","age":47,"location":"West Jarodfield"}},{"attributes":{"name":"Aimee Fahey","age":63,"location":"Deltafort"}},{"attributes":{"name":"Felix Sipes","age":25,"location":"West Mohamedfort"}},{"attributes":{"name":"Juana Schumm","age":44,"location":"Lake Richmondtown"}},{"attributes":{"name":"Miss Cecelia Lowe","age":34,"location":"Salt Lake City"}},{"attributes":{"name":"Soledad Russel Jr.","age":66,"location":"Luettgenfurt"}},{"attributes":{"name":"Wilson Altenwerth","age":23,"location":"Daijaboro"}},{"attributes":{"name":"Terrill Oberbrunner III","age":74,"location":"Bodecester"}},{"attributes":{"name":"Deion Mertz","age":76,"location":"Fort Novashire"}},{"attributes":{"name":"Leah Marquardt","age":79,"location":"West Martinehaven"}},{"attributes":{"name":"Randal Lind","age":72,"location":"Utica"}},{"attributes":{"name":"Carolyn Greenholt","age":38,"location":"Juanitamouth"}},{"attributes":{"name":"Dr. Francesco Barrows","age":31,"location":"West Marjolaine"}},{"attributes":{"name":"Reuben Yost","age":25,"location":"Clotildeton"}},{"attributes":{"name":"Lina Green","age":68,"location":"Jakobchester"}},{"attributes":{"name":"Monica Dach","age":41,"location":"Wolfmouth"}},{"attributes":{"name":"Wayne Keeling","age":30,"location":"New Amiya"}},{"attributes":{"name":"Theresa Powlowski","age":62,"location":"Lake Jaleel"}},{"attributes":{"name":"Rex Stark","age":72,"location":"Geraldview"}},{"attributes":{"name":"Mark Altenwerth","age":35,"location":"Gislasonside"}},{"attributes":{"name":"Tonya Kuphal","age":41,"location":"New Zioncester"}},{"attributes":{"name":"Miss Sarah Quitzon","age":75,"location":"Kihnburgh"}},{"attributes":{"name":"Zella Abernathy","age":35,"location":"Misaelboro"}},{"attributes":{"name":"Leah Carter","age":59,"location":"Mohammadstad"}},{"attributes":{"name":"Jaime Borer","age":26,"location":"Port Howellberg"}},{"attributes":{"name":"Amy Spencer I","age":53,"location":"New Ebony"}},{"attributes":{"name":"Mikayla Rosenbaum Jr.","age":21,"location":"New Cyrusfield"}},{"attributes":{"name":"Jennifer Ratke","age":23,"location":"North Theronborough"}},{"attributes":{"name":"Mike Baumbach-Connelly","age":38,"location":"Lilyville"}},{"attributes":{"name":"Frances Cormier","age":73,"location":"Hilpertfurt"}},{"attributes":{"name":"Elmer Orn","age":40,"location":"North Imelda"}},{"attributes":{"name":"Richie Wuckert","age":64,"location":"Kundeboro"}},{"attributes":{"name":"Sabrina Feeney DVM","age":55,"location":"Bayerchester"}},{"attributes":{"name":"Luella Friesen","age":18,"location":"Lindstad"}},{"attributes":{"name":"Ms. Jasmin Leannon","age":30,"location":"West Jameyworth"}},{"attributes":{"name":"Owen Kertzmann","age":43,"location":"New Alysa"}},{"attributes":{"name":"Mrs. Stacey Nicolas","age":36,"location":"North Charleston"}},{"attributes":{"name":"Perry Nader","age":30,"location":"Silver Spring"}},{"attributes":{"name":"Ms. Johann Effertz PhD","age":31,"location":"Lemketown"}},{"attributes":{"name":"Janet Zemlak V","age":44,"location":"Nashua"}},{"attributes":{"name":"Erling Stracke","age":31,"location":"Richardson"}},{"attributes":{"name":"Constance Von-Feest","age":54,"location":"Hauckton"}},{"attributes":{"name":"Ricky Jakubowski","age":20,"location":"Fort Araceliport"}},{"attributes":{"name":"Alexander Rosenbaum","age":32,"location":"South Leopold"}},{"attributes":{"name":"Reese Stanton","age":54,"location":"Port Wernerville"}},{"attributes":{"name":"Cara Hintz","age":38,"location":"Vista"}},{"attributes":{"name":"Lavada Kuhic","age":18,"location":"Lake Rae"}},{"attributes":{"name":"Miss Rochelle Spencer DDS","age":40,"location":"New Fredrickland"}},{"attributes":{"name":"Robyn Kunze","age":24,"location":"Jonchester"}},{"attributes":{"name":"Joshua Nicolas Jr.","age":53,"location":"Lake Pearlinetown"}},{"attributes":{"name":"Edwin Brekke","age":42,"location":"Urbana"}},{"attributes":{"name":"Darrell Johns","age":37,"location":"West Ronaldofurt"}},{"attributes":{"name":"Dominic Lowe DVM","age":73,"location":"Rubieside"}},{"attributes":{"name":"Jamie Moen","age":29,"location":"Felixfort"}},{"attributes":{"name":"Hope Bailey","age":31,"location":"Fredyfurt"}},{"attributes":{"name":"Nettie Kertzmann","age":68,"location":"Port Demetris"}},{"attributes":{"name":"Judy McClure","age":53,"location":"Winston-Salem"}},{"attributes":{"name":"Jay Ebert","age":44,"location":"North Kathryneport"}},{"attributes":{"name":"Raheem Nolan","age":71,"location":"Bartellstad"}},{"attributes":{"name":"Marielle King","age":21,"location":"North Deion"}},{"attributes":{"name":"Bobbie Beier","age":34,"location":"Bismarck"}},{"attributes":{"name":"Freddy O'Conner","age":53,"location":"Jettiechester"}},{"attributes":{"name":"Hilda Homenick","age":21,"location":"Alishire"}},{"attributes":{"name":"Mr. Doug Price","age":75,"location":"Fadelboro"}},{"attributes":{"name":"Yasmine Beier","age":73,"location":"Fort Allie"}},{"attributes":{"name":"Miller Rice","age":31,"location":"North Frankie"}},{"attributes":{"name":"Ima Upton","age":55,"location":"North Uliseschester"}},{"attributes":{"name":"Tyler Quigley","age":22,"location":"Mannberg"}},{"attributes":{"name":"Myrtle Fadel","age":80,"location":"Bertview"}},{"attributes":{"name":"Mr. Glenn Lesch Sr.","age":40,"location":"D'angelobury"}},{"attributes":{"name":"Simon Boyer","age":35,"location":"Dubuque"}},{"attributes":{"name":"Franz Tillman","age":62,"location":"Gladyceshire"}},{"attributes":{"name":"Norval Windler","age":66,"location":"South Arlo"}},{"attributes":{"name":"Cesar Dibbert","age":71,"location":"South Kamille"}},{"attributes":{"name":"Mary Greenholt","age":73,"location":"North Josiah"}},{"attributes":{"name":"Antonio Hahn","age":29,"location":"Jaidenworth"}},{"attributes":{"name":"Retta McLaughlin","age":68,"location":"Jacechester"}},{"attributes":{"name":"Irvin Nikolaus","age":37,"location":"New Keshaun"}},{"attributes":{"name":"Candice Macejkovic","age":55,"location":"North Tierra"}},{"attributes":{"name":"Nancy Raynor","age":62,"location":"Meriden"}},{"attributes":{"name":"Casey Krajcik","age":55,"location":"Lake Marcosborough"}},{"attributes":{"name":"Melyna Gulgowski","age":78,"location":"East Obie"}},{"attributes":{"name":"Rolando Gusikowski","age":68,"location":"Lake Adrien"}},{"attributes":{"name":"Sherri Thiel-Feest","age":68,"location":"Fort Roslynton"}},{"attributes":{"name":"Arjun Pacocha","age":42,"location":"East Rasheedside"}},{"attributes":{"name":"Jordan Heathcote","age":39,"location":"West Lafayette"}},{"attributes":{"name":"Marguerite Lueilwitz","age":79,"location":"Durgancester"}},{"attributes":{"name":"Gerald Mueller-Vandervort","age":45,"location":"New Brando"}},{"attributes":{"name":"Mellie Lindgren","age":29,"location":"Fort Alayna"}},{"attributes":{"name":"Mrs. Jace Ankunding","age":69,"location":"Fort Joany"}},{"attributes":{"name":"Columbus Konopelski","age":55,"location":"Fort Glenna"}},{"attributes":{"name":"Ford Steuber","age":76,"location":"Hodkiewiczland"}},{"attributes":{"name":"Meda Bashirian","age":79,"location":"Manleyland"}},{"attributes":{"name":"Makayla Gutkowski","age":78,"location":"North Wilfredo"}},{"attributes":{"name":"Hellen Shields","age":21,"location":"Marksberg"}},{"attributes":{"name":"Barry Block","age":60,"location":"Kalamazoo"}},{"attributes":{"name":"Lindsey Jones Jr.","age":20,"location":"Marcelinofield"}},{"attributes":{"name":"Rosella Bayer","age":74,"location":"Lake Alysha"}},{"attributes":{"name":"Lorenzo Fritsch","age":53,"location":"Lake Kierastad"}},{"attributes":{"name":"Nelson Langworth","age":40,"location":"North Mackenzieboro"}},{"attributes":{"name":"Rupert Marvin","age":25,"location":"McGlynnworth"}},{"attributes":{"name":"Dr. Evert Denesik Jr.","age":63,"location":"East Alysonmouth"}},{"attributes":{"name":"Gene Littel","age":39,"location":"Santa Barbara"}},{"attributes":{"name":"Geraldine Tromp","age":43,"location":"East Filomenacester"}},{"attributes":{"name":"Santina Satterfield","age":55,"location":"Lilyview"}},{"attributes":{"name":"Mr. Nicolas McKenzie","age":74,"location":"Marianomouth"}},{"attributes":{"name":"Mr. Erik Rowe","age":32,"location":"Montetown"}},{"attributes":{"name":"Janis Jacobi","age":37,"location":"Port Deontaefurt"}},{"attributes":{"name":"Darryl Osinski","age":31,"location":"West Enola"}},{"attributes":{"name":"Connie Collins-West","age":37,"location":"Katelyntown"}},{"attributes":{"name":"Trenton Morar IV","age":24,"location":"Port Elishaside"}},{"attributes":{"name":"Shelley Friesen-Stroman","age":35,"location":"Schambergershire"}},{"attributes":{"name":"Kristofer Little II","age":41,"location":"West Kristinchester"}},{"attributes":{"name":"Brendan Davis-Raynor","age":32,"location":"Fort Stuartville"}},{"attributes":{"name":"Damon Lemke","age":40,"location":"Laynetown"}},{"attributes":{"name":"Timothy Bins","age":46,"location":"Arjunmouth"}},{"attributes":{"name":"Roselyn Ledner","age":39,"location":"Christiansenside"}},{"attributes":{"name":"Drew Jaskolski","age":24,"location":"West Vinnie"}},{"attributes":{"name":"Zora Kris IV","age":31,"location":"Elenaside"}},{"attributes":{"name":"Sophie Mitchell","age":68,"location":"Catherineport"}},{"attributes":{"name":"Gilberto Mosciski-Hahn","age":64,"location":"Santa Clarita"}},{"attributes":{"name":"Juwan Franecki","age":57,"location":"West Alessandro"}},{"attributes":{"name":"Theodore Cronin","age":55,"location":"East Hermann"}},{"attributes":{"name":"Bobbie Wiegand","age":50,"location":"Syracuse"}},{"attributes":{"name":"Angela Fay","age":26,"location":"Rio Rancho"}},{"attributes":{"name":"Lucy Fritsch","age":76,"location":"North Domingoburgh"}},{"attributes":{"name":"Angie Murray","age":54,"location":"North Deangeloshire"}},{"attributes":{"name":"Hilda Hudson","age":56,"location":"Hellerview"}},{"attributes":{"name":"Alexis Wyman","age":40,"location":"South Jackfort"}},{"attributes":{"name":"Joel Bauch","age":71,"location":"Monterey Park"}},{"attributes":{"name":"April Quitzon Sr.","age":77,"location":"Eliseoville"}},{"attributes":{"name":"Jerome Stoltenberg","age":30,"location":"Alvisboro"}},{"attributes":{"name":"Violet Bogisich","age":53,"location":"Johannworth"}},{"attributes":{"name":"Kathy Bahringer-Armstrong","age":31,"location":"North Myrnahaven"}},{"attributes":{"name":"Alison Krajcik DDS","age":30,"location":"Dickiville"}},{"attributes":{"name":"Irving Lowe","age":54,"location":"North Lempi"}},{"attributes":{"name":"Emmie Bartoletti","age":59,"location":"Port Jerald"}},{"attributes":{"name":"Jonas Jenkins","age":62,"location":"Mayermouth"}},{"attributes":{"name":"Miss Gail Mante","age":31,"location":"Lake Bobbyworth"}},{"attributes":{"name":"Abdul McGlynn","age":48,"location":"South Amberboro"}},{"attributes":{"name":"Dr. Ken Toy","age":46,"location":"Starkfurt"}},{"attributes":{"name":"Dr. Asha Baumbach","age":67,"location":"New Gregory"}},{"attributes":{"name":"Estelle Emmerich","age":40,"location":"Linden"}},{"attributes":{"name":"Maryann Pouros IV","age":35,"location":"Rodriguezside"}},{"attributes":{"name":"Nick Dach","age":18,"location":"Port Sigridborough"}},{"attributes":{"name":"Lola Kovacek","age":50,"location":"Council Bluffs"}},{"attributes":{"name":"Anna Bayer","age":42,"location":"Malachiville"}},{"attributes":{"name":"Dr. Lynn Bode","age":62,"location":"Lake Douglasville"}},{"attributes":{"name":"Keyshawn Schaefer","age":25,"location":"Fishers"}},{"attributes":{"name":"Mrs. Kristine Haag DDS","age":65,"location":"Lake Arno"}},{"attributes":{"name":"Dr. Abigail Erdman","age":59,"location":"West Travonview"}},{"attributes":{"name":"Lester Hackett","age":46,"location":"Kassulkeside"}},{"attributes":{"name":"Elisa Considine","age":60,"location":"Houston"}},{"attributes":{"name":"Miss Carol Jenkins","age":67,"location":"Skokie"}},{"attributes":{"name":"Genevieve Reynolds","age":43,"location":"Schimmelview"}},{"attributes":{"name":"Felton Hilpert","age":33,"location":"Lombard"}},{"attributes":{"name":"Beth Lesch","age":25,"location":"Collierbury"}},{"attributes":{"name":"Erna Keebler","age":69,"location":"Beaulahborough"}},{"attributes":{"name":"Ruby Turner","age":54,"location":"Port Idellhaven"}},{"attributes":{"name":"Alena Beahan","age":33,"location":"Port Marjolaine"}},{"attributes":{"name":"Lulu Simonis","age":67,"location":"South Roslynborough"}},{"attributes":{"name":"Jacquelyn Lowe","age":45,"location":"Grand Junction"}},{"attributes":{"name":"Irving Murray","age":40,"location":"Hayleetown"}},{"attributes":{"name":"Vickie Jenkins","age":69,"location":"Layton"}},{"attributes":{"name":"Dawn Donnelly","age":62,"location":"Addiemouth"}},{"attributes":{"name":"Casandra Powlowski","age":23,"location":"Samantafort"}},{"attributes":{"name":"Michael Quitzon","age":64,"location":"Fort Tristin"}},{"attributes":{"name":"Melissa Shields","age":38,"location":"Wainoshire"}},{"attributes":{"name":"Aurelio Lang","age":54,"location":"Fort Robinstead"}},{"attributes":{"name":"Kevon Koelpin","age":28,"location":"Dachburgh"}},{"attributes":{"name":"Soledad Ferry","age":53,"location":"Wisokyside"}},{"attributes":{"name":"Laura Hirthe","age":52,"location":"Beahanstad"}},{"attributes":{"name":"Ramiro Schmitt","age":56,"location":"New Brennon"}},{"attributes":{"name":"Elena Hyatt","age":37,"location":"Daleport"}},{"attributes":{"name":"Jacob Macejkovic","age":21,"location":"Gleasonfurt"}},{"attributes":{"name":"Emmanuel Koch","age":38,"location":"North Carolyn"}},{"attributes":{"name":"Marcella Howe","age":29,"location":"Rocky Mount"}},{"attributes":{"name":"Loretta Lehner-Turcotte","age":35,"location":"Chesterfield"}},{"attributes":{"name":"Clifton Wolf","age":79,"location":"Lake Ridge"}},{"attributes":{"name":"Scott Koelpin Sr.","age":78,"location":"Kurtside"}},{"attributes":{"name":"Isai Kshlerin","age":46,"location":"Fort Karianeshire"}},{"attributes":{"name":"Karelle Lynch","age":75,"location":"Ontario"}},{"attributes":{"name":"Camryn Marks","age":74,"location":"North Maritza"}},{"attributes":{"name":"Nina Nitzsche","age":37,"location":"North Zitaville"}},{"attributes":{"name":"Neal Goyette DDS","age":59,"location":"Lourdesstead"}},{"attributes":{"name":"Drake Heidenreich","age":22,"location":"Edgardoton"}},{"attributes":{"name":"Ms. Luther Heathcote","age":25,"location":"West Mathew"}},{"attributes":{"name":"Ernesto Macejkovic","age":60,"location":"Waukegan"}},{"attributes":{"name":"Inez Koch","age":22,"location":"North Lyric"}},{"attributes":{"name":"Joey Flatley","age":35,"location":"Reillystead"}},{"attributes":{"name":"Dr. Oral Sporer","age":45,"location":"Tremblaystead"}},{"attributes":{"name":"Maxine Wunsch","age":62,"location":"Riceshire"}},{"attributes":{"name":"Alexander Torp","age":31,"location":"Joliet"}},{"attributes":{"name":"Tamara Schneider","age":73,"location":"Marilynebury"}},{"attributes":{"name":"Austin Waters Sr.","age":59,"location":"Ethelport"}},{"attributes":{"name":"Dr. Laurence Rosenbaum","age":43,"location":"Roderickmouth"}},{"attributes":{"name":"Kaden Grimes","age":60,"location":"Rocklin"}},{"attributes":{"name":"Noemy King","age":37,"location":"East Ottisboro"}},{"attributes":{"name":"Katie Considine","age":26,"location":"Fort Mariemouth"}},{"attributes":{"name":"Jarvis Jacobs","age":45,"location":"Willville"}},{"attributes":{"name":"Kacey Rath","age":55,"location":"Fort Luther"}},{"attributes":{"name":"Jesse Koepp","age":21,"location":"Stanfordshire"}},{"attributes":{"name":"Mabel Zboncak","age":73,"location":"Deltamouth"}},{"attributes":{"name":"Sally Rosenbaum","age":45,"location":"Ferryshire"}},{"attributes":{"name":"Maureen Carter","age":20,"location":"Port Malachi"}},{"attributes":{"name":"Essie Gleason","age":75,"location":"East Myriam"}},{"attributes":{"name":"Alberto Wiza","age":18,"location":"Port Peyton"}},{"attributes":{"name":"Luciano Macejkovic DVM","age":50,"location":"Erickaburgh"}},{"attributes":{"name":"Nicholas Greenholt-Mitchell","age":77,"location":"Bradyville"}},{"attributes":{"name":"Melanie Hilpert","age":47,"location":"North Hilton"}},{"attributes":{"name":"Dave Bartoletti","age":32,"location":"Schmittbury"}},{"attributes":{"name":"Pat Champlin","age":35,"location":"Rickland"}},{"attributes":{"name":"Eliseo Jakubowski-Klocko","age":44,"location":"West Lilyanfurt"}},{"attributes":{"name":"Dr. Eva Larkin","age":40,"location":"Trantowboro"}},{"attributes":{"name":"Benny Koelpin","age":58,"location":"Taylor"}},{"attributes":{"name":"Leopold Christiansen","age":25,"location":"Antwonboro"}},{"attributes":{"name":"Jordan Goodwin","age":52,"location":"Lake Busterton"}},{"attributes":{"name":"Rachel Hermiston","age":23,"location":"Kaylinport"}},{"attributes":{"name":"Dr. Casey Bartoletti Jr.","age":68,"location":"Annabelworth"}},{"attributes":{"name":"Geovanni Smith","age":18,"location":"West Geraldchester"}},{"attributes":{"name":"Roberta Schuppe","age":79,"location":"New Janellebury"}},{"attributes":{"name":"Aditya Gerlach","age":42,"location":"Lake Kamillechester"}},{"attributes":{"name":"Valentine Hyatt","age":31,"location":"Ryanfield"}},{"attributes":{"name":"Jadon Schultz-Okuneva","age":38,"location":"Feestland"}},{"attributes":{"name":"Torrance White","age":26,"location":"Sheilaside"}},{"attributes":{"name":"Vicki Daugherty","age":43,"location":"Alessiacester"}},{"attributes":{"name":"Candido Schmeler","age":54,"location":"Koelpinland"}},{"attributes":{"name":"Bobbie Huel","age":33,"location":"Eden Prairie"}},{"attributes":{"name":"Zena Hodkiewicz-Padberg DDS","age":54,"location":"Raychester"}},{"attributes":{"name":"Gina Schmidt","age":70,"location":"Port Dangelo"}},{"attributes":{"name":"Mabel Cole","age":67,"location":"Moenshire"}},{"attributes":{"name":"Johnnie Leffler","age":68,"location":"Troy"}},{"attributes":{"name":"Emerald Koepp","age":64,"location":"Melbourne"}},{"attributes":{"name":"Jedidiah Koelpin","age":64,"location":"Orphastad"}},{"attributes":{"name":"Carlotta Douglas","age":32,"location":"Port Ramiro"}},{"attributes":{"name":"Owen Breitenberg","age":22,"location":"O'Connerburgh"}},{"attributes":{"name":"Jayson Langosh Jr.","age":35,"location":"West Gregg"}},{"attributes":{"name":"Belinda Gibson","age":42,"location":"East Los Angeles"}},{"attributes":{"name":"Sydney Hoeger","age":58,"location":"Nitzschefurt"}},{"attributes":{"name":"Evelyn Johns","age":80,"location":"Fort Elwynland"}},{"attributes":{"name":"Phillip Satterfield","age":76,"location":"East Marcel"}},{"attributes":{"name":"Shyanne Senger MD","age":45,"location":"North Vincent"}},{"attributes":{"name":"Alaina Witting","age":56,"location":"North Mayra"}},{"attributes":{"name":"Melyna Larkin","age":58,"location":"Bridgetshire"}},{"attributes":{"name":"Raul Emmerich","age":18,"location":"Leonorahaven"}},{"attributes":{"name":"Mathew Daniel","age":53,"location":"Santosfurt"}},{"attributes":{"name":"Kelly Pfannerstill","age":47,"location":"Fargo"}},{"attributes":{"name":"Dolores Nienow","age":55,"location":"East Mekhi"}},{"attributes":{"name":"Rahul Herzog","age":25,"location":"Russelworth"}},{"attributes":{"name":"Emmett Hane","age":64,"location":"Leolahaven"}},{"attributes":{"name":"Preston Rowe-Ortiz","age":45,"location":"Leonorland"}},{"attributes":{"name":"Katrina Fadel","age":33,"location":"New Braunfels"}},{"attributes":{"name":"Sonia Schmidt","age":21,"location":"Schneiderhaven"}},{"attributes":{"name":"Shane Goyette","age":37,"location":"Missouri City"}},{"attributes":{"name":"Aniyah Homenick","age":32,"location":"North Frank"}},{"attributes":{"name":"Marguerite Luettgen","age":54,"location":"New Johnsonville"}},{"attributes":{"name":"Dr. Karlie Will","age":34,"location":"VonRuedenmouth"}},{"attributes":{"name":"Oswald McLaughlin DDS","age":65,"location":"New Raquel"}},{"attributes":{"name":"Trever Reichel","age":48,"location":"Malachiborough"}},{"attributes":{"name":"Ben Reynolds","age":21,"location":"McClureside"}},{"attributes":{"name":"Miss Phil Homenick","age":61,"location":"Arvelfort"}},{"attributes":{"name":"Malinda Kub","age":25,"location":"East Adaport"}},{"attributes":{"name":"Pierce Turner","age":47,"location":"North Elena"}},{"attributes":{"name":"Ms. Stanley Bahringer","age":58,"location":"Perris"}},{"attributes":{"name":"Dr. Orlando Ortiz","age":40,"location":"Meaganton"}},{"attributes":{"name":"Georgia Schamberger","age":40,"location":"Nadertown"}},{"attributes":{"name":"Arthur Murray","age":70,"location":"Flossieworth"}},{"attributes":{"name":"Alyssa Zboncak","age":41,"location":"New Londonbury"}},{"attributes":{"name":"Jon Koss","age":78,"location":"Anastasiaworth"}},{"attributes":{"name":"Morris Ebert","age":57,"location":"El Dorado Hills"}},{"attributes":{"name":"Mr. Hugh Kling","age":25,"location":"Lake Nyah"}},{"attributes":{"name":"Rafael Jaskolski","age":47,"location":"Kundestad"}},{"attributes":{"name":"Deon Carter","age":43,"location":"South Devinville"}},{"attributes":{"name":"Stewart O'Reilly","age":76,"location":"West Favian"}},{"attributes":{"name":"Ettie Schamberger","age":47,"location":"Yucaipa"}},{"attributes":{"name":"Louisa Krajcik","age":33,"location":"Huntington Park"}},{"attributes":{"name":"Miracle Keebler","age":37,"location":"Fort Devon"}},{"attributes":{"name":"Elody Yost","age":32,"location":"Vernview"}},{"attributes":{"name":"Kamren Nicolas IV","age":44,"location":"Auburn"}},{"attributes":{"name":"Salvatore Bins","age":37,"location":"Port Darionworth"}},{"attributes":{"name":"Stacey Towne","age":36,"location":"Hollisberg"}},{"attributes":{"name":"Barbara Rosenbaum DDS","age":74,"location":"South Titoberg"}},{"attributes":{"name":"Etha Morar","age":74,"location":"Port Joshchester"}},{"attributes":{"name":"Nyasia Weimann","age":80,"location":"Maziechester"}},{"attributes":{"name":"Reed Strosin","age":34,"location":"Cruickshankworth"}},{"attributes":{"name":"Glenn Buckridge","age":65,"location":"New Mark"}},{"attributes":{"name":"Maud Lynch","age":58,"location":"Mosciskiworth"}},{"attributes":{"name":"Kade Gorczany","age":70,"location":"Fort Angelicaburgh"}},{"attributes":{"name":"John Paucek","age":24,"location":"Port Magdalenbury"}},{"attributes":{"name":"Traci Leffler","age":76,"location":"East Meta"}},{"attributes":{"name":"Devin Langworth","age":41,"location":"East Leila"}},{"attributes":{"name":"Yvonne Wiza","age":34,"location":"Sallyshire"}},{"attributes":{"name":"Loy VonRueden","age":18,"location":"East Hillary"}},{"attributes":{"name":"Tim Cronin-Fisher","age":44,"location":"Willmsfort"}},{"attributes":{"name":"Rosemary Skiles","age":28,"location":"Los Angeles"}},{"attributes":{"name":"Gina Jacobs","age":46,"location":"St. Joseph"}},{"attributes":{"name":"Kelly Windler-Gerhold","age":21,"location":"Grahamstead"}},{"attributes":{"name":"Gary Jacobi","age":76,"location":"East Britney"}},{"attributes":{"name":"Wade Wolf","age":71,"location":"Hermannton"}},{"attributes":{"name":"Judith Nader","age":60,"location":"Saginaw"}},{"attributes":{"name":"Mike Romaguera","age":38,"location":"North Gillian"}},{"attributes":{"name":"Candice Pacocha","age":62,"location":"Wisokytown"}},{"attributes":{"name":"Ms. Alysson Walker PhD","age":77,"location":"Rexmouth"}},{"attributes":{"name":"Boyd Schamberger","age":65,"location":"Todmouth"}},{"attributes":{"name":"Lois Ratke","age":70,"location":"Lake Llewellynhaven"}},{"attributes":{"name":"Seamus Bailey","age":54,"location":"East Christina"}},{"attributes":{"name":"Reginald Wilderman","age":58,"location":"East Martinaside"}},{"attributes":{"name":"Leon Nolan","age":39,"location":"Farmington"}},{"attributes":{"name":"Triston Mayert","age":20,"location":"Ottisside"}},{"attributes":{"name":"Carmine Russel","age":56,"location":"MacGyverworth"}},{"attributes":{"name":"Barney Walter","age":45,"location":"Gastonton"}},{"attributes":{"name":"Gideon Dietrich","age":44,"location":"Pansyhaven"}},{"attributes":{"name":"Adalberto Ratke","age":24,"location":"Lorifield"}},{"attributes":{"name":"Destiny Green","age":50,"location":"South Eve"}},{"attributes":{"name":"Marta Hudson","age":41,"location":"New Marisol"}},{"attributes":{"name":"Mr. Adolphus Hickle","age":65,"location":"Fishertown"}},{"attributes":{"name":"Darren Willms","age":30,"location":"Port Graciela"}},{"attributes":{"name":"Archibald Cummings","age":46,"location":"Garden Grove"}},{"attributes":{"name":"Gloria Hackett","age":40,"location":"Port Bayleeville"}},{"attributes":{"name":"Noah Wintheiser","age":76,"location":"Manteton"}},{"attributes":{"name":"Patrick Hilpert DVM","age":24,"location":"Schmittburgh"}},{"attributes":{"name":"Shea Baumbach","age":28,"location":"South Daniella"}},{"attributes":{"name":"Margarette Douglas","age":50,"location":"South Khalid"}},{"attributes":{"name":"Tremayne Ruecker","age":64,"location":"Emmerichfort"}},{"attributes":{"name":"Brain Daugherty","age":47,"location":"Meriden"}},{"attributes":{"name":"Gabriella Robel","age":66,"location":"Lindgrenstead"}},{"attributes":{"name":"Bernadette Heaney DVM","age":22,"location":"North Leta"}},{"attributes":{"name":"Cecil Pfannerstill","age":69,"location":"Prosaccomouth"}},{"attributes":{"name":"Elliot Mosciski-Walsh II","age":74,"location":"Soledadfurt"}},{"attributes":{"name":"Miss Patricia Goldner","age":39,"location":"Schroederfurt"}},{"attributes":{"name":"Hazel Weimann","age":75,"location":"Owensboro"}},{"attributes":{"name":"Ottilie Miller-Shanahan","age":35,"location":"Encinitas"}},{"attributes":{"name":"Haskell Ebert","age":43,"location":"Metamouth"}},{"attributes":{"name":"Edmund Friesen","age":46,"location":"West Flavie"}},{"attributes":{"name":"Amari Larson","age":18,"location":"Randalberg"}},{"attributes":{"name":"Jacquelyn Wilkinson","age":44,"location":"South Evangeline"}},{"attributes":{"name":"Rochelle Simonis","age":28,"location":"Schowalterchester"}},{"attributes":{"name":"Lenny Mante II","age":63,"location":"New Imani"}},{"attributes":{"name":"Ibrahim Little","age":73,"location":"Kesslerton"}},{"attributes":{"name":"Camille Harvey I","age":52,"location":"Schinnerland"}},{"attributes":{"name":"Bert Rau","age":35,"location":"Trantowberg"}},{"attributes":{"name":"Al Ziemann IV","age":62,"location":"Faustoside"}},{"attributes":{"name":"Oswaldo Labadie-D'Amore","age":20,"location":"Sabrinafield"}},{"attributes":{"name":"Angel Watsica","age":63,"location":"Elnaview"}},{"attributes":{"name":"Desiree Gleichner","age":68,"location":"Eldorafield"}},{"attributes":{"name":"Ronald Hauck-Braun","age":27,"location":"Lake Jessica"}},{"attributes":{"name":"Zachary Hammes","age":36,"location":"South Roger"}},{"attributes":{"name":"Kate Baumbach","age":38,"location":"Danielton"}},{"attributes":{"name":"Alyssa Wilkinson","age":24,"location":"Hayesstead"}},{"attributes":{"name":"Simeon Beahan","age":60,"location":"Deionview"}},{"attributes":{"name":"Phil O'Kon","age":30,"location":"North Scot"}},{"attributes":{"name":"Ada Shields-Zboncak","age":19,"location":"West Yessenia"}},{"attributes":{"name":"Barbara Kassulke","age":34,"location":"Lake Tianahaven"}},{"attributes":{"name":"Todd O'Keefe","age":63,"location":"Fabiolastad"}},{"attributes":{"name":"Sylvester Hand MD","age":50,"location":"Katelinmouth"}},{"attributes":{"name":"Pablo Monahan DVM","age":75,"location":"Lake Kaylee"}},{"attributes":{"name":"Fabiola MacGyver","age":64,"location":"East Wilmerville"}},{"attributes":{"name":"Eleanor Gottlieb","age":44,"location":"West Markusview"}},{"attributes":{"name":"Helen Jenkins","age":64,"location":"Fort Serenaview"}},{"attributes":{"name":"Bert Beahan","age":78,"location":"East Nathanialstead"}},{"attributes":{"name":"Maurine Cremin","age":57,"location":"Nedraland"}},{"attributes":{"name":"Chet Toy","age":63,"location":"Ernserboro"}},{"attributes":{"name":"Miss Wade Bogisich","age":44,"location":"Fort Edwardo"}},{"attributes":{"name":"Emiliano Hermann","age":40,"location":"Lake Jamie"}},{"attributes":{"name":"Joey Weissnat","age":34,"location":"South Mittie"}},{"attributes":{"name":"Dominic Hettinger","age":29,"location":"Weymouth Town"}},{"attributes":{"name":"Santa Hessel","age":30,"location":"Lake Alfredabury"}},{"attributes":{"name":"Allen Abshire","age":18,"location":"Fort Darrelview"}},{"attributes":{"name":"Christopher Kautzer","age":24,"location":"South Vanessa"}},{"attributes":{"name":"Miss Sally Rodriguez","age":62,"location":"West Tyriquecester"}},{"attributes":{"name":"Kaycee Rohan","age":32,"location":"Bechtelarbury"}},{"attributes":{"name":"Alicia Strosin","age":29,"location":"Kirkview"}},{"attributes":{"name":"Irene Gottlieb","age":22,"location":"Port Flavie"}},{"attributes":{"name":"Kenyon Kutch PhD","age":39,"location":"Judecester"}},{"attributes":{"name":"Gayle Gislason","age":42,"location":"Fort Krystina"}},{"attributes":{"name":"Joanne Johnson","age":70,"location":"Port Howard"}},{"attributes":{"name":"Virginia Corwin","age":69,"location":"Mertzbury"}},{"attributes":{"name":"Ricky McKenzie","age":45,"location":"East Jayceeville"}},{"attributes":{"name":"Wilson Orn","age":60,"location":"Shannyburgh"}},{"attributes":{"name":"Zachariah Cummings","age":42,"location":"Magdalenabury"}},{"attributes":{"name":"Mr. Rudy Hoeger","age":66,"location":"Mountain View"}},{"attributes":{"name":"Dr. Aliya Nienow","age":21,"location":"Kertzmannview"}},{"attributes":{"name":"Jermaine Kautzer","age":31,"location":"North Wainoside"}},{"attributes":{"name":"Joann Kulas-Zemlak","age":41,"location":"Lake Moniqueland"}},{"attributes":{"name":"Ben Little","age":71,"location":"Lake Marjorieberg"}},{"attributes":{"name":"Kaitlin Williamson III","age":28,"location":"Enricoborough"}},{"attributes":{"name":"Timothy Dicki","age":39,"location":"Emardbury"}},{"attributes":{"name":"Terry Schaden","age":62,"location":"Albuquerque"}},{"attributes":{"name":"Miss Sterling Kohler I","age":22,"location":"Detroit"}},{"attributes":{"name":"Horace Turner","age":77,"location":"Cupertino"}},{"attributes":{"name":"Peter Simonis","age":54,"location":"South Natalia"}},{"attributes":{"name":"Ezekiel Wisoky","age":29,"location":"Hellerfield"}},{"attributes":{"name":"Kim Fisher II","age":56,"location":"Fort Jadynland"}},{"attributes":{"name":"Michael Torphy","age":43,"location":"Fort Brandofurt"}},{"attributes":{"name":"Mike Mitchell","age":25,"location":"Bednarberg"}},{"attributes":{"name":"Eduardo Nienow PhD","age":50,"location":"Napoleonmouth"}},{"attributes":{"name":"Eve Haag","age":76,"location":"Port Justinaland"}},{"attributes":{"name":"Jennie Boyer-Ankunding","age":18,"location":"South Leonardoport"}},{"attributes":{"name":"Jon Jenkins V","age":37,"location":"West Perry"}},{"attributes":{"name":"Dr. Clinton Schimmel","age":67,"location":"Denton"}},{"attributes":{"name":"Miss Ramona Spencer","age":35,"location":"Marksmouth"}},{"attributes":{"name":"Oliver Boyle DDS","age":28,"location":"West Aliviaside"}},{"attributes":{"name":"Deonte Buckridge","age":18,"location":"West Kurtisworth"}},{"attributes":{"name":"Todd Moore","age":26,"location":"Torpview"}},{"attributes":{"name":"Robin Schumm","age":29,"location":"Koeppport"}},{"attributes":{"name":"Katlyn Hermiston","age":30,"location":"Farrellfurt"}},{"attributes":{"name":"Mr. Fatima Wilderman","age":32,"location":"Port Nedraborough"}},{"attributes":{"name":"Lynda Howe","age":60,"location":"Franeyberg"}},{"attributes":{"name":"Lorraine Roob","age":60,"location":"Bogisichtown"}},{"attributes":{"name":"Fleta Sporer","age":33,"location":"Creminworth"}},{"attributes":{"name":"Eugene Rodriguez Jr.","age":38,"location":"Jeremyfield"}},{"attributes":{"name":"Kolby Boehm","age":46,"location":"Jakubowskiport"}},{"attributes":{"name":"Marisol Schuppe","age":58,"location":"New Dandre"}},{"attributes":{"name":"Ashly Upton","age":26,"location":"DuBuquefort"}},{"attributes":{"name":"Devin Kuhic","age":46,"location":"Sageshire"}},{"attributes":{"name":"Ms. Dan Littel","age":25,"location":"East Karlie"}},{"attributes":{"name":"Tobin Steuber-Carroll","age":57,"location":"North Hilario"}},{"attributes":{"name":"Benjamin Hegmann","age":44,"location":"Lake Ubaldo"}},{"attributes":{"name":"Garnett Batz","age":63,"location":"Fort Sandrinefort"}},{"attributes":{"name":"Jenny Bernhard","age":78,"location":"Torphytown"}},{"attributes":{"name":"Merle Wuckert","age":37,"location":"Salmamouth"}},{"attributes":{"name":"Berniece Ziemann","age":75,"location":"New Neldaworth"}},{"attributes":{"name":"Nathan Lockman I","age":34,"location":"Bismarck"}},{"attributes":{"name":"Bailee Bailey","age":66,"location":"Plymouth"}},{"attributes":{"name":"Ms. Maybelle VonRueden","age":73,"location":"Geoberg"}},{"attributes":{"name":"Carole Daniel","age":27,"location":"Santa Fe"}},{"attributes":{"name":"Sophia White","age":59,"location":"Jaylenland"}},{"attributes":{"name":"Jacklyn Harris","age":24,"location":"Waldorf"}},{"attributes":{"name":"Bryan Mayer","age":59,"location":"North Haskell"}},{"attributes":{"name":"Paul Gislason","age":20,"location":"Demarcofort"}},{"attributes":{"name":"Forest Beatty","age":39,"location":"Ovaborough"}},{"attributes":{"name":"Malinda Gleichner","age":80,"location":"West Harmonbury"}},{"attributes":{"name":"Wilbert Gusikowski","age":56,"location":"North Luciennestead"}},{"attributes":{"name":"Dr. Geraldine McClure","age":22,"location":"Emmaleechester"}},{"attributes":{"name":"Chase Howell","age":31,"location":"Greenfelderside"}},{"attributes":{"name":"Josephine Mertz","age":28,"location":"New Zetta"}},{"attributes":{"name":"Helen O'Kon Sr.","age":65,"location":"Romanburgh"}},{"attributes":{"name":"Dennis Feeney","age":51,"location":"Medatown"}},{"attributes":{"name":"Joann Glover PhD","age":32,"location":"Lodi"}},{"attributes":{"name":"Irving White","age":42,"location":"Corkeryton"}},{"attributes":{"name":"Rosa Beer","age":60,"location":"East Kelley"}},{"attributes":{"name":"Frank Blanda","age":39,"location":"East Orange"}},{"attributes":{"name":"Lolita Bergstrom","age":18,"location":"Johnstonhaven"}},{"attributes":{"name":"Maya Fay","age":52,"location":"Shaniyaton"}},{"attributes":{"name":"Ross Yost","age":38,"location":"Jadonhaven"}},{"attributes":{"name":"Orville Stark","age":76,"location":"Fort Shayneburgh"}},{"attributes":{"name":"Rosemary Ondricka","age":61,"location":"North Elenorcester"}},{"attributes":{"name":"Edward Hane","age":63,"location":"Gibsonstad"}},{"attributes":{"name":"Cora Kunze","age":21,"location":"Emmiebury"}},{"attributes":{"name":"Randi Lind","age":31,"location":"Streichfurt"}},{"attributes":{"name":"Kenyon Jacobi","age":77,"location":"Lansing"}},{"attributes":{"name":"Miss Meredith Harvey","age":41,"location":"Grantton"}},{"attributes":{"name":"Nicolas Rowe","age":57,"location":"West Hilariotown"}},{"attributes":{"name":"Winston Prohaska","age":36,"location":"Macejkovicchester"}},{"attributes":{"name":"Wayne Runte","age":56,"location":"Kilbackborough"}},{"attributes":{"name":"Lily Hane","age":73,"location":"Lake Kyleighcester"}},{"attributes":{"name":"Janis Huels","age":63,"location":"Howellview"}},{"attributes":{"name":"Daren Wehner","age":78,"location":"Blacksburg"}},{"attributes":{"name":"Sonya Grant III","age":42,"location":"Fort Woodrow"}},{"attributes":{"name":"Mr. Marc Smith","age":35,"location":"Willbury"}},{"attributes":{"name":"Karina Tillman","age":42,"location":"Fort Marcelle"}},{"attributes":{"name":"Sergio Senger","age":58,"location":"Diannashire"}},{"attributes":{"name":"Roman Shanahan","age":72,"location":"Lake Donnieboro"}},{"attributes":{"name":"Monica Homenick-Adams","age":19,"location":"Mitchelborough"}},{"attributes":{"name":"Sherri Bergstrom","age":45,"location":"Port Haylie"}},{"attributes":{"name":"Helen Yundt","age":30,"location":"Kacieview"}},{"attributes":{"name":"Margarett Lueilwitz","age":48,"location":"Clarkberg"}},{"attributes":{"name":"Mylene Smitham","age":39,"location":"Lake Dangeloport"}},{"attributes":{"name":"Jeffry Fahey","age":39,"location":"Kristinahaven"}},{"attributes":{"name":"Leroy Schuster","age":27,"location":"Corrinestad"}},{"attributes":{"name":"Camylle Fritsch","age":44,"location":"East Kylietown"}},{"attributes":{"name":"Diamond Windler","age":73,"location":"Oro Valley"}},{"attributes":{"name":"Sabrina Stiedemann","age":68,"location":"Huelston"}},{"attributes":{"name":"Mrs. Hilda Yost","age":37,"location":"Unachester"}},{"attributes":{"name":"Alejandro Paucek PhD","age":55,"location":"Naderchester"}},{"attributes":{"name":"Sammy Gislason","age":67,"location":"New Maximilian"}},{"attributes":{"name":"Lance Predovic","age":40,"location":"Grantstad"}},{"attributes":{"name":"Jason Wisoky","age":29,"location":"South Mae"}},{"attributes":{"name":"Deontae Erdman","age":21,"location":"Wesley Chapel"}},{"attributes":{"name":"Mike Trantow","age":65,"location":"Fort Neldamouth"}},{"attributes":{"name":"Annette Batz","age":32,"location":"North Alexanderberg"}},{"attributes":{"name":"Ethel Goldner","age":31,"location":"West Trent"}},{"attributes":{"name":"Otis Walsh","age":70,"location":"Severn"}},{"attributes":{"name":"Madison Hilll","age":71,"location":"Port Malcolm"}},{"attributes":{"name":"Mr. Nicholas Jones","age":75,"location":"Vineland"}},{"attributes":{"name":"Roger Larson","age":19,"location":"Hayward"}},{"attributes":{"name":"Pedro Feeney","age":19,"location":"Sengerfort"}},{"attributes":{"name":"Mr. Charlie Hilll","age":66,"location":"Harrycester"}},{"attributes":{"name":"Miss Lucius Stokes","age":35,"location":"Edmundbury"}},{"attributes":{"name":"Stacey Kuhic","age":61,"location":"East Torrancestad"}},{"attributes":{"name":"Kraig Leannon","age":59,"location":"Markfurt"}},{"attributes":{"name":"Neoma Mayer","age":70,"location":"Rebeccaburgh"}},{"attributes":{"name":"Sonya Kassulke","age":18,"location":"Evansville"}},{"attributes":{"name":"Roel Johnson-Schimmel","age":67,"location":"East Destinybury"}},{"attributes":{"name":"Fernando Howell","age":29,"location":"Turlock"}},{"attributes":{"name":"Madeline Marks","age":58,"location":"Abilene"}},{"attributes":{"name":"Hester Mraz","age":40,"location":"Justenside"}},{"attributes":{"name":"Mr. Lonnie Nicolas","age":49,"location":"West Ava"}},{"attributes":{"name":"Dexter Mayer","age":60,"location":"Rozellaview"}},{"attributes":{"name":"Leon Pouros","age":53,"location":"Kennyland"}},{"attributes":{"name":"Ms. Tricia Stoltenberg MD","age":73,"location":"La Habra"}},{"attributes":{"name":"Rahsaan Pagac","age":37,"location":"Nikolauscester"}},{"attributes":{"name":"Maggie Maggio","age":24,"location":"Hackettton"}},{"attributes":{"name":"Rod Streich","age":49,"location":"Minneapolis"}},{"attributes":{"name":"Rosemary Skiles IV","age":75,"location":"West Dejuanboro"}},{"attributes":{"name":"Pamela Waters","age":57,"location":"Fort Daphney"}},{"attributes":{"name":"Mr. Eva Hessel","age":52,"location":"Fort Alverta"}},{"attributes":{"name":"Rosalie Ortiz","age":38,"location":"Fort Pierce"}},{"attributes":{"name":"Bertha Barrows-Kunde","age":55,"location":"North Jack"}},{"attributes":{"name":"Carlo Krajcik","age":58,"location":"West Yadira"}},{"attributes":{"name":"Lynne Ward Sr.","age":24,"location":"Oralhaven"}},{"attributes":{"name":"Mr. Billie Marks","age":42,"location":"Goldnerstead"}},{"attributes":{"name":"Francis Upton","age":34,"location":"Watsicaboro"}},{"attributes":{"name":"Marjolaine Zulauf","age":68,"location":"West Jackyport"}},{"attributes":{"name":"Mrs. Roxanne Skiles","age":46,"location":"West Deontaeberg"}},{"attributes":{"name":"Ken Schaden","age":38,"location":"North Burley"}},{"attributes":{"name":"Lavern Gerlach","age":79,"location":"East Vilma"}},{"attributes":{"name":"Dr. Joseph Keebler","age":50,"location":"Port Audra"}},{"attributes":{"name":"Joshua Kling","age":45,"location":"DuBuqueview"}},{"attributes":{"name":"Dr. Carolyn Effertz","age":60,"location":"North Tylercester"}},{"attributes":{"name":"Shelia Zieme","age":19,"location":"South Jevon"}},{"attributes":{"name":"Stanton Bahringer","age":39,"location":"Fort Selmerborough"}},{"attributes":{"name":"Violet Rogahn","age":63,"location":"Lake Freda"}},{"attributes":{"name":"Kiera Cassin","age":69,"location":"Schmelerland"}},{"attributes":{"name":"Cedric Shanahan","age":68,"location":"Saigeboro"}},{"attributes":{"name":"Darla Emard","age":26,"location":"Elmhurst"}},{"attributes":{"name":"Charlene Macejkovic","age":66,"location":"Harmonyport"}},{"attributes":{"name":"Bert McClure","age":52,"location":"New Blaze"}},{"attributes":{"name":"Darin Farrell-Weimann","age":52,"location":"Fayfurt"}},{"attributes":{"name":"Sebastian Satterfield Jr.","age":49,"location":"Port St. Lucie"}},{"attributes":{"name":"Anissa Kuhlman","age":19,"location":"Naomieborough"}},{"attributes":{"name":"Dr. Arthur Larkin-Witting V","age":75,"location":"Torphytown"}},{"attributes":{"name":"Willie Jacobs","age":35,"location":"Huntington Beach"}},{"attributes":{"name":"Tamia Greenholt","age":44,"location":"Port Aureliochester"}},{"attributes":{"name":"Matt Ernser","age":69,"location":"Fort Worth"}},{"attributes":{"name":"Della Heller","age":51,"location":"Port Linabury"}},{"attributes":{"name":"Daniel Kozey","age":71,"location":"Gradyburgh"}},{"attributes":{"name":"Freda Moen","age":45,"location":"Kleinstead"}},{"attributes":{"name":"Guadalupe Kemmer","age":25,"location":"Emoryburgh"}},{"attributes":{"name":"Roosevelt Runte","age":40,"location":"Wavaberg"}},{"attributes":{"name":"Casimer Connelly","age":54,"location":"New Archibaldside"}},{"attributes":{"name":"Kiera Mante III","age":79,"location":"Vancouver"}},{"attributes":{"name":"Camren Mraz","age":79,"location":"Port Deondrefield"}},{"attributes":{"name":"Ryan Tillman-Jacobson","age":80,"location":"South Eviefurt"}},{"attributes":{"name":"Mrs. Ron Homenick","age":22,"location":"South Gate"}},{"attributes":{"name":"Sydni Johns","age":41,"location":"Rolandotown"}},{"attributes":{"name":"Mr. Lonnie Kemmer","age":44,"location":"Gastonboro"}},{"attributes":{"name":"Wilma Baumbach","age":71,"location":"South Astridton"}},{"attributes":{"name":"Catalina Ratke DVM","age":39,"location":"New Chandler"}},{"attributes":{"name":"Ally Gutmann","age":24,"location":"North Margaretta"}},{"attributes":{"name":"Jana Lowe","age":42,"location":"Lake Gennaro"}},{"attributes":{"name":"Wiley Auer","age":33,"location":"Pueblo"}},{"attributes":{"name":"Candice Harris III","age":20,"location":"Port Lillian"}},{"attributes":{"name":"Lily Mueller DDS","age":27,"location":"Raymundoton"}},{"attributes":{"name":"Evelyn Mohr","age":27,"location":"East Lue"}},{"attributes":{"name":"Jeffrey Goodwin","age":71,"location":"South Zelda"}},{"attributes":{"name":"Genevieve Nikolaus","age":30,"location":"Monastead"}},{"attributes":{"name":"Bobby Robel-Sawayn","age":37,"location":"San Jose"}},{"attributes":{"name":"Stella Carter","age":26,"location":"New Marilieport"}},{"attributes":{"name":"Gina Jast","age":48,"location":"South Kristoferberg"}},{"attributes":{"name":"Dr. Antonio Sanford DDS","age":31,"location":"Port Charlotte"}},{"attributes":{"name":"Elsa Wiza Jr.","age":70,"location":"Kadinchester"}},{"attributes":{"name":"Margarette Davis","age":69,"location":"New Rosalinda"}},{"attributes":{"name":"Brett Jast","age":80,"location":"New Reagan"}},{"attributes":{"name":"Clyde Kassulke","age":50,"location":"West Niko"}},{"attributes":{"name":"Archie Pagac DDS","age":28,"location":"Emiecester"}},{"attributes":{"name":"Ellis Dietrich","age":69,"location":"East Esther"}},{"attributes":{"name":"Mr. Lloyd D'Amore","age":74,"location":"Greeley"}},{"attributes":{"name":"Randal Hansen","age":28,"location":"The Woodlands"}},{"attributes":{"name":"David Lockman","age":50,"location":"Port Ivoryburgh"}},{"attributes":{"name":"Jaylen Waelchi","age":36,"location":"North Huldamouth"}},{"attributes":{"name":"Mrs. Natasha Thompson","age":74,"location":"Mayerside"}},{"attributes":{"name":"Mr. Murray Bins","age":20,"location":"Fort Cornellfield"}},{"attributes":{"name":"Shad Wiza","age":19,"location":"Langworthchester"}},{"attributes":{"name":"Mr. Dana McDermott","age":55,"location":"Schroederworth"}},{"attributes":{"name":"Ronnie Fay","age":70,"location":"Lake Violetstead"}},{"attributes":{"name":"Gino Russel","age":69,"location":"Fort Deontaestad"}},{"attributes":{"name":"Cathy Hyatt","age":70,"location":"Fort Alfredaside"}},{"attributes":{"name":"Yvette Okuneva","age":70,"location":"Eagan"}},{"attributes":{"name":"Mrs. River Kub III","age":18,"location":"Victorcester"}},{"attributes":{"name":"Marta Abernathy","age":34,"location":"Brownchester"}},{"attributes":{"name":"Beulah Rohan","age":29,"location":"Ernserborough"}},{"attributes":{"name":"Juana Rowe","age":49,"location":"North Lisandromouth"}},{"attributes":{"name":"Dalton Wolf","age":37,"location":"Anissaland"}},{"attributes":{"name":"Clara Hickle","age":75,"location":"South Cheyanne"}},{"attributes":{"name":"Josefina Bernhard","age":58,"location":"Sauerchester"}},{"attributes":{"name":"Clovis West","age":38,"location":"Yucaipa"}},{"attributes":{"name":"Ambrose Heaney","age":72,"location":"Lake Marshallfort"}},{"attributes":{"name":"Alton Bechtelar-McClure","age":63,"location":"Lake Doloresstead"}},{"attributes":{"name":"Genevieve Anderson","age":29,"location":"Rashawnstad"}},{"attributes":{"name":"Ms. Deja Rempel","age":23,"location":"South Lourdesstad"}},{"attributes":{"name":"Jennie Morissette","age":34,"location":"Oak Lawn"}},{"attributes":{"name":"Jamie Hodkiewicz","age":41,"location":"Lake Ward"}},{"attributes":{"name":"Janessa Hilll-Beer","age":28,"location":"Fort Jordan"}},{"attributes":{"name":"Nick Bashirian Jr.","age":19,"location":"Gottliebport"}},{"attributes":{"name":"Hadley Rippin","age":22,"location":"Janesville"}},{"attributes":{"name":"Earline O'Reilly","age":71,"location":"Bothell"}},{"attributes":{"name":"Angelina Beahan-Considine","age":57,"location":"Delano"}},{"attributes":{"name":"Leslie Kozey","age":37,"location":"Schaumburg"}},{"attributes":{"name":"Mr. Dalton McKenzie","age":60,"location":"Alejandraport"}},{"attributes":{"name":"Evans McKenzie V","age":57,"location":"Sayreville"}},{"attributes":{"name":"Paula Waelchi","age":57,"location":"Hudsonstead"}},{"attributes":{"name":"Kristen Nolan","age":27,"location":"West Dominique"}},{"attributes":{"name":"Ian Pollich-Goldner","age":19,"location":"New Zorachester"}},{"attributes":{"name":"Dr. Cletus Schoen","age":79,"location":"North Zita"}},{"attributes":{"name":"Dewey Welch","age":36,"location":"Beierburgh"}},{"attributes":{"name":"Freddie Hagenes","age":46,"location":"West Dexterfurt"}},{"attributes":{"name":"Hannah Hilll","age":26,"location":"Lake Edgardofurt"}},{"attributes":{"name":"Delfina McLaughlin","age":77,"location":"Fort Amiestead"}},{"attributes":{"name":"Maximillian Halvorson","age":22,"location":"Feestworth"}},{"attributes":{"name":"Aurelie Harvey","age":37,"location":"Lake Maggie"}},{"attributes":{"name":"Mrs. Olivia Hammes","age":65,"location":"Cadenville"}},{"attributes":{"name":"Ahmed Jaskolski","age":49,"location":"Lakewood"}},{"attributes":{"name":"Mr. Cristian Fisher III","age":79,"location":"Lottiestead"}},{"attributes":{"name":"Lisette Harris","age":31,"location":"Devanberg"}},{"attributes":{"name":"Sigrid Lueilwitz","age":74,"location":"League City"}},{"attributes":{"name":"Alexis Ankunding","age":70,"location":"Eagan"}},{"attributes":{"name":"Monroe Farrell","age":34,"location":"Corwinshire"}},{"attributes":{"name":"Ron Cummerata","age":18,"location":"Salinas"}},{"attributes":{"name":"Chelsey Dooley","age":76,"location":"Autumnstad"}},{"attributes":{"name":"Hubert Rau","age":42,"location":"Fort Alexane"}},{"attributes":{"name":"Alison Raynor","age":71,"location":"South Rosamondfield"}},{"attributes":{"name":"Alda Torphy","age":62,"location":"Donnellystad"}},{"attributes":{"name":"Rosina Kling","age":38,"location":"Berniecester"}},{"attributes":{"name":"Rupert Stracke","age":44,"location":"Filibertofurt"}},{"attributes":{"name":"Sandra Kassulke","age":25,"location":"Runolfsdottirchester"}},{"attributes":{"name":"Manuela Buckridge-Roberts","age":73,"location":"Atascocita"}},{"attributes":{"name":"Lindsay Hoeger","age":55,"location":"East Patricia"}},{"attributes":{"name":"Dr. Terry Kris","age":19,"location":"North Fernhaven"}},{"attributes":{"name":"Theron Mills","age":30,"location":"West Allis"}},{"attributes":{"name":"Homer Kilback","age":39,"location":"Maurinebury"}},{"attributes":{"name":"Tobin Wiegand","age":48,"location":"Kylaburgh"}},{"attributes":{"name":"Ira Erdman","age":21,"location":"Timothyberg"}},{"attributes":{"name":"Cindy Blick Jr.","age":65,"location":"Ebertshire"}},{"attributes":{"name":"Domenic Moen","age":29,"location":"Placentia"}},{"attributes":{"name":"Jon Bernier","age":79,"location":"Gerlachburgh"}},{"attributes":{"name":"Bethany Hagenes","age":68,"location":"Merlland"}},{"attributes":{"name":"Holly Pfeffer-Rogahn","age":70,"location":"South Lupemouth"}},{"attributes":{"name":"Alan McClure","age":58,"location":"Rogahnton"}},{"attributes":{"name":"Rickey Hettinger DDS","age":20,"location":"New Jan"}},{"attributes":{"name":"Bessie Paucek","age":31,"location":"Mayeworth"}},{"attributes":{"name":"Miss Irma Hettinger-Raynor","age":25,"location":"West Jennifer"}},{"attributes":{"name":"Ms. Willis Kris","age":80,"location":"Brooklyn Park"}},{"attributes":{"name":"Luther Nolan","age":76,"location":"North Rashawn"}},{"attributes":{"name":"Mason Keebler","age":23,"location":"Mountain View"}},{"attributes":{"name":"Miss Lindsey Koch","age":53,"location":"Derekfield"}},{"attributes":{"name":"Joseph Dare","age":39,"location":"Selinaworth"}},{"attributes":{"name":"Miles Maggio","age":54,"location":"West Cortney"}},{"attributes":{"name":"Mr. Pablo Hudson","age":64,"location":"Antioch"}},{"attributes":{"name":"Dewey Smith","age":32,"location":"New Levibury"}},{"attributes":{"name":"Christie Will","age":64,"location":"Jackville"}},{"attributes":{"name":"Michelle Gerhold","age":80,"location":"East Domingofort"}},{"attributes":{"name":"Marion Wisozk V","age":62,"location":"South Valliehaven"}},{"attributes":{"name":"Reilly Koss","age":23,"location":"Oakland"}},{"attributes":{"name":"Cameron Hirthe","age":73,"location":"Cordiebury"}},{"attributes":{"name":"Ms. Owen Zboncak PhD","age":23,"location":"Boulder"}},{"attributes":{"name":"Dave Prosacco","age":62,"location":"Sigridport"}},{"attributes":{"name":"Levi Bins DVM","age":79,"location":"Langville"}},{"attributes":{"name":"Della Pouros","age":79,"location":"North Rosaliaside"}},{"attributes":{"name":"Edward Schuster DVM","age":66,"location":"Zulaufworth"}},{"attributes":{"name":"Mrs. Tammy Cruickshank","age":64,"location":"North Mabelview"}},{"attributes":{"name":"Florence Pacocha-Deckow","age":60,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Lamont Considine","age":47,"location":"North Abel"}},{"attributes":{"name":"Arnold Larkin","age":80,"location":"Manteca"}},{"attributes":{"name":"Estella Donnelly","age":24,"location":"Leonardbury"}},{"attributes":{"name":"Evelyn Ullrich-Treutel","age":77,"location":"Port Merl"}},{"attributes":{"name":"Eda Veum DDS","age":48,"location":"New Arely"}},{"attributes":{"name":"Carrie Gibson","age":49,"location":"Issacshire"}},{"attributes":{"name":"Mr. Tia Hyatt MD","age":75,"location":"Milesshire"}},{"attributes":{"name":"Miss Fernando Spinka-Von","age":57,"location":"Stehrville"}},{"attributes":{"name":"Stephen Herman","age":57,"location":"East Adelacester"}},{"attributes":{"name":"Mable Schneider-Waelchi","age":34,"location":"Fort Laverna"}},{"attributes":{"name":"Kathleen Farrell-Heathcote","age":20,"location":"Lake Donavonport"}},{"attributes":{"name":"Reyna Keebler","age":30,"location":"Bend"}},{"attributes":{"name":"Connor Hansen","age":28,"location":"Paramount"}},{"attributes":{"name":"Kris Yundt","age":33,"location":"Chino Hills"}},{"attributes":{"name":"Shirley Stoltenberg","age":42,"location":"West Consuelo"}},{"attributes":{"name":"Erin Heidenreich","age":77,"location":"Stehrbury"}},{"attributes":{"name":"Gary Schuppe","age":71,"location":"Freedaport"}},{"attributes":{"name":"Derrick Keebler","age":47,"location":"Guiseppetown"}},{"attributes":{"name":"Ebony Schaefer","age":43,"location":"Port Kellyworth"}},{"attributes":{"name":"Harry Hermann","age":52,"location":"North Fleta"}},{"attributes":{"name":"Autumn Carter","age":56,"location":"Lake Cordeliashire"}},{"attributes":{"name":"Leticia Howe","age":53,"location":"Evalynfort"}},{"attributes":{"name":"Aubree Beier","age":74,"location":"Sioux Falls"}},{"attributes":{"name":"Shanon Glover-Roob","age":18,"location":"Peabody"}},{"attributes":{"name":"Felix Schamberger","age":70,"location":"Dillonmouth"}},{"attributes":{"name":"Mrs. Leslie Swift DDS","age":42,"location":"Wisokyfort"}},{"attributes":{"name":"Sedrick Franey","age":43,"location":"South Hugh"}},{"attributes":{"name":"Grace Swaniawski","age":27,"location":"Casas Adobes"}},{"attributes":{"name":"Kristen Bins","age":36,"location":"Folsom"}},{"attributes":{"name":"Darrell Emard","age":34,"location":"Gorczanyfurt"}},{"attributes":{"name":"Kim Wisoky II","age":70,"location":"Port Jakobcester"}},{"attributes":{"name":"Joseph Waters","age":48,"location":"North Andresboro"}},{"attributes":{"name":"Reina Kub","age":39,"location":"East Jovany"}},{"attributes":{"name":"Wayne Huel","age":19,"location":"Newport Beach"}},{"attributes":{"name":"Samuel Prohaska","age":77,"location":"Stratford"}},{"attributes":{"name":"Terry Schulist","age":66,"location":"Robelborough"}},{"attributes":{"name":"Haleigh Powlowski","age":28,"location":"Yundtshire"}},{"attributes":{"name":"Stephanie Collins","age":34,"location":"Schmidtview"}},{"attributes":{"name":"Brendan Prosacco","age":24,"location":"Heathcoteside"}},{"attributes":{"name":"Frances Schulist","age":58,"location":"South Mafaldamouth"}},{"attributes":{"name":"Emily Grant","age":66,"location":"Fort Van"}},{"attributes":{"name":"Jenna Dare","age":32,"location":"New Kattie"}},{"attributes":{"name":"Etha Koelpin","age":34,"location":"Fort Johnathan"}},{"attributes":{"name":"Kieran Berge","age":40,"location":"North Gordon"}},{"attributes":{"name":"Kelley Hansen IV","age":50,"location":"New Torey"}},{"attributes":{"name":"Luz Rogahn","age":61,"location":"Adelineworth"}},{"attributes":{"name":"Becky Barrows","age":38,"location":"West Randalworth"}},{"attributes":{"name":"Marjolaine King III","age":64,"location":"New Bedford"}},{"attributes":{"name":"Mr. Travis Steuber","age":63,"location":"Euless"}},{"attributes":{"name":"Verna Bins","age":32,"location":"Victorville"}},{"attributes":{"name":"Myrtle Pouros","age":18,"location":"Orntown"}},{"attributes":{"name":"Vivienne DuBuque","age":19,"location":"New Albert"}},{"attributes":{"name":"Nathaniel Gottlieb","age":74,"location":"Fort Salvadorfield"}},{"attributes":{"name":"Dr. Ruby Stokes","age":68,"location":"Port Alejandrinport"}},{"attributes":{"name":"Kevin Prosacco-Torp","age":44,"location":"Ardenland"}},{"attributes":{"name":"Judah Schulist","age":51,"location":"Khalidberg"}},{"attributes":{"name":"Travis Gerhold","age":79,"location":"South Jamirview"}},{"attributes":{"name":"Dr. Billie Franey PhD","age":77,"location":"Paucekstead"}},{"attributes":{"name":"Bertha Kohler","age":57,"location":"Babyfurt"}},{"attributes":{"name":"Pascale Hodkiewicz","age":56,"location":"Sarinaside"}},{"attributes":{"name":"Juana Herzog","age":42,"location":"Fredystead"}},{"attributes":{"name":"Olen Steuber","age":78,"location":"Edinburg"}},{"attributes":{"name":"Candace O'Hara","age":54,"location":"Jaylanstead"}},{"attributes":{"name":"Hilton Schaden","age":31,"location":"Garettport"}},{"attributes":{"name":"Letha Altenwerth","age":48,"location":"Jacobitown"}},{"attributes":{"name":"Marshall Little","age":60,"location":"Port Brianborough"}},{"attributes":{"name":"Gussie Durgan","age":46,"location":"East Alivia"}},{"attributes":{"name":"Johnnie Swift","age":19,"location":"Lake Danteland"}},{"attributes":{"name":"Ms. Gilberto Glover","age":64,"location":"East Dovieboro"}},{"attributes":{"name":"Justin Blanda","age":78,"location":"San Marcos"}},{"attributes":{"name":"Vesta Boyer Jr.","age":62,"location":"Hildaside"}},{"attributes":{"name":"Daisy Kertzmann","age":24,"location":"East Tristianbury"}},{"attributes":{"name":"Judd Schinner","age":78,"location":"East Lonzo"}},{"attributes":{"name":"Jaqueline Daniel-Rosenbaum","age":40,"location":"Dustyfort"}},{"attributes":{"name":"Leah Mraz","age":52,"location":"Kieranshire"}},{"attributes":{"name":"Ms. Zakary Sawayn-Gulgowski","age":33,"location":"Marieton"}},{"attributes":{"name":"Joel Ernser","age":40,"location":"Schowalterfort"}},{"attributes":{"name":"Derek Moore II","age":36,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Cody Luettgen","age":30,"location":"Fort Madysonfort"}},{"attributes":{"name":"Wilbur Pagac","age":46,"location":"Littleberg"}},{"attributes":{"name":"Bernadine Shields","age":40,"location":"Haleyberg"}},{"attributes":{"name":"Mrs. Dorcas Sporer","age":63,"location":"Redwood City"}},{"attributes":{"name":"Jessie Gibson","age":49,"location":"San Francisco"}},{"attributes":{"name":"Teri Stoltenberg","age":56,"location":"Maritzafield"}},{"attributes":{"name":"Candace Quigley DDS","age":41,"location":"Kaciland"}},{"attributes":{"name":"Ernesto Dietrich-Gottlieb","age":54,"location":"Salina"}},{"attributes":{"name":"Ralph Hermiston","age":78,"location":"West Tracy"}},{"attributes":{"name":"Earl Ebert","age":25,"location":"East Aryannachester"}},{"attributes":{"name":"Marion Frami I","age":67,"location":"Kochtown"}},{"attributes":{"name":"Martin Hackett","age":48,"location":"New Vince"}},{"attributes":{"name":"Aditya Gutmann","age":53,"location":"Crooksshire"}},{"attributes":{"name":"Martha Smith","age":63,"location":"Erdmanworth"}},{"attributes":{"name":"Ramona Klein","age":22,"location":"Marianoside"}},{"attributes":{"name":"Audrey Collins","age":56,"location":"New Nayeli"}},{"attributes":{"name":"Clay Weber I","age":31,"location":"New Nicholefield"}},{"attributes":{"name":"Adrian Nitzsche","age":61,"location":"Vandervortstead"}},{"attributes":{"name":"Ilene Hodkiewicz","age":20,"location":"Encinitas"}},{"attributes":{"name":"Stephania Yost","age":41,"location":"Lake Glenstead"}},{"attributes":{"name":"Kayla Hayes DDS","age":31,"location":"Marvinbury"}},{"attributes":{"name":"Giovanni Herman","age":32,"location":"New Carriefield"}},{"attributes":{"name":"Lamont Homenick","age":68,"location":"West Katelynhaven"}},{"attributes":{"name":"Skyla Dare","age":70,"location":"Heathcoteburgh"}},{"attributes":{"name":"Toby Mante","age":80,"location":"New Einar"}},{"attributes":{"name":"Tabitha Conn","age":46,"location":"South Emmaleeton"}},{"attributes":{"name":"Parker Jast","age":53,"location":"South Luramouth"}},{"attributes":{"name":"Antonia Schaden","age":64,"location":"East Golden"}},{"attributes":{"name":"Jill Bergnaum","age":76,"location":"Port Elenastad"}},{"attributes":{"name":"Regina Kozey I","age":22,"location":"Morgan Hill"}},{"attributes":{"name":"Edgar Mraz","age":61,"location":"Huelshaven"}},{"attributes":{"name":"Anderson Goodwin","age":28,"location":"West Kirkfurt"}},{"attributes":{"name":"Dr. Laurence Trantow-Koss","age":67,"location":"East Efren"}},{"attributes":{"name":"Miss Susan Sawayn I","age":65,"location":"Lake Anibal"}},{"attributes":{"name":"Mrs. Greg Schowalter","age":53,"location":"North Karianne"}},{"attributes":{"name":"Willis Johnson","age":69,"location":"Koeppstad"}},{"attributes":{"name":"Chet Ratke","age":37,"location":"East Marjoriefurt"}},{"attributes":{"name":"Frances Beier","age":77,"location":"Lake Revabury"}},{"attributes":{"name":"Earl Herzog Jr.","age":24,"location":"North Laverna"}},{"attributes":{"name":"Dr. Marta Friesen","age":62,"location":"Des Plaines"}},{"attributes":{"name":"Janie Greenholt","age":78,"location":"Darenmouth"}},{"attributes":{"name":"Mr. Karlie Rath","age":34,"location":"Lake Lisafort"}},{"attributes":{"name":"Peter Nikolaus","age":34,"location":"Lake Judyside"}},{"attributes":{"name":"Ellen Bartell","age":75,"location":"Betsyfort"}},{"attributes":{"name":"Hope Jast","age":48,"location":"Temecula"}},{"attributes":{"name":"Dr. Tony Beatty DDS","age":22,"location":"Meaghanborough"}},{"attributes":{"name":"Zane Rowe","age":75,"location":"Monterey Park"}},{"attributes":{"name":"Gwendolyn Jacobi","age":55,"location":"Denisborough"}},{"attributes":{"name":"Mr. Grant Ratke PhD","age":62,"location":"Port Herbertfort"}},{"attributes":{"name":"Anderson Hayes-Donnelly","age":51,"location":"Santa Clara"}},{"attributes":{"name":"Zachary Schulist","age":49,"location":"East Dwightville"}},{"attributes":{"name":"Lyric Hodkiewicz","age":34,"location":"Kittymouth"}},{"attributes":{"name":"Dr. Casey Gusikowski","age":73,"location":"South Louiefield"}},{"attributes":{"name":"Nicholaus Brown","age":36,"location":"Bartellside"}},{"attributes":{"name":"Marcella Johnston","age":73,"location":"Temple"}},{"attributes":{"name":"Catherine Mueller","age":71,"location":"South Curtishaven"}},{"attributes":{"name":"Dr. Bob Russel IV","age":32,"location":"East Felipeborough"}},{"attributes":{"name":"Rene Abbott","age":69,"location":"Fort Francesport"}},{"attributes":{"name":"Gertrude Nienow","age":59,"location":"Dubuque"}},{"attributes":{"name":"Miss Mikel Considine","age":55,"location":"Fort Aylinview"}},{"attributes":{"name":"Saul Dach","age":55,"location":"Fort Smith"}},{"attributes":{"name":"Ralph Gottlieb PhD","age":28,"location":"Sydnieshire"}},{"attributes":{"name":"Lionel Pollich","age":51,"location":"Meaghanfurt"}},{"attributes":{"name":"Jean Ondricka","age":56,"location":"West Charlene"}},{"attributes":{"name":"Marjorie Crona Jr.","age":77,"location":"Keelyfield"}},{"attributes":{"name":"Luciano Daniel","age":64,"location":"Arvada"}},{"attributes":{"name":"Hiram Wiegand","age":21,"location":"The Hammocks"}},{"attributes":{"name":"Lukas Cummings","age":49,"location":"Valentinemouth"}},{"attributes":{"name":"Ressie Will","age":73,"location":"New Casimer"}},{"attributes":{"name":"Tomas Kozey","age":64,"location":"Spokane"}},{"attributes":{"name":"Estella Brown","age":33,"location":"North Zionshire"}},{"attributes":{"name":"Gregg Flatley","age":74,"location":"North Imaview"}},{"attributes":{"name":"Francis Blanda","age":20,"location":"North Elouise"}},{"attributes":{"name":"Lynn Reichert","age":27,"location":"North Kameronfield"}},{"attributes":{"name":"Jorge Sipes","age":58,"location":"Zandercester"}},{"attributes":{"name":"Claudine Bruen Jr.","age":56,"location":"Lodi"}},{"attributes":{"name":"Vance Reynolds","age":57,"location":"North Alfonso"}},{"attributes":{"name":"Elza Langosh","age":49,"location":"Fannieburgh"}},{"attributes":{"name":"Irene Thiel","age":22,"location":"Novi"}},{"attributes":{"name":"Merritt Sipes","age":26,"location":"East Penelope"}},{"attributes":{"name":"Nina Zemlak","age":57,"location":"Chelsieview"}},{"attributes":{"name":"Terrance Jaskolski","age":31,"location":"Port Zola"}},{"attributes":{"name":"Pamela Treutel MD","age":18,"location":"Orvalberg"}},{"attributes":{"name":"Brittany Cartwright V","age":26,"location":"Mrazfurt"}},{"attributes":{"name":"Whitney Larkin","age":46,"location":"Glendale"}},{"attributes":{"name":"Dr. Jessie Renner","age":24,"location":"Edaborough"}},{"attributes":{"name":"Greg Adams Sr.","age":76,"location":"Earleneton"}},{"attributes":{"name":"Madeline Willms","age":43,"location":"Anastaciofort"}},{"attributes":{"name":"Brendon Shields","age":67,"location":"Schneidercester"}},{"attributes":{"name":"Dana Frami","age":48,"location":"Lake Lina"}},{"attributes":{"name":"Mr. Sylvester Herzog Sr.","age":70,"location":"Donnellychester"}},{"attributes":{"name":"April White","age":38,"location":"Reynoldsmouth"}},{"attributes":{"name":"Jaquelin Robel","age":30,"location":"Dedrickview"}},{"attributes":{"name":"Edd Goyette","age":46,"location":"East Reymundomouth"}},{"attributes":{"name":"Kristy Jacobi","age":53,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Dr. Sadie Ankunding-Cummings","age":45,"location":"Cincinnati"}},{"attributes":{"name":"Pamela Romaguera","age":59,"location":"Raymundotown"}},{"attributes":{"name":"Rosa Hessel","age":57,"location":"West Brownfield"}},{"attributes":{"name":"Pamela Jacobson","age":21,"location":"Fort Agnes"}},{"attributes":{"name":"Lois Davis","age":37,"location":"Lake Benny"}},{"attributes":{"name":"Mr. Scott McKenzie","age":27,"location":"Hirtheland"}},{"attributes":{"name":"Reagan Altenwerth","age":41,"location":"Abeburgh"}},{"attributes":{"name":"Julie Runolfsdottir","age":36,"location":"South Thomasbury"}},{"attributes":{"name":"Mr. Terrance Glover","age":76,"location":"West Ebbaborough"}},{"attributes":{"name":"Dr. Jessica Towne","age":30,"location":"Plano"}},{"attributes":{"name":"Elijah Ortiz","age":22,"location":"McGlynnview"}},{"attributes":{"name":"Jaime Swaniawski","age":45,"location":"Delphiafield"}},{"attributes":{"name":"Marie Hamill PhD","age":60,"location":"Lake Furman"}},{"attributes":{"name":"Edna Emard IV","age":35,"location":"Zulauftown"}},{"attributes":{"name":"Lenora Fahey","age":71,"location":"Antoinettecester"}},{"attributes":{"name":"Stewart Romaguera","age":56,"location":"New Dan"}},{"attributes":{"name":"Julie Welch","age":47,"location":"South Franz"}},{"attributes":{"name":"Suzanne Herzog","age":69,"location":"Sengerworth"}},{"attributes":{"name":"Teri Collier","age":80,"location":"Darefurt"}},{"attributes":{"name":"Mr. Laurence Goyette","age":24,"location":"North Keaton"}},{"attributes":{"name":"Mrs. Kristy Hauck IV","age":66,"location":"Severn"}},{"attributes":{"name":"Lonzo Welch","age":34,"location":"Port Brooksberg"}},{"attributes":{"name":"Wade Lind","age":68,"location":"Fort Christiana"}},{"attributes":{"name":"Daniel Tromp","age":44,"location":"South Faye"}},{"attributes":{"name":"Martha Batz","age":47,"location":"East Erwinstad"}},{"attributes":{"name":"Henriette Kohler PhD","age":75,"location":"Port Marietta"}},{"attributes":{"name":"Jeffery Stiedemann","age":78,"location":"South Lennie"}},{"attributes":{"name":"Tammy Considine","age":73,"location":"Schenectady"}},{"attributes":{"name":"Danny Lakin","age":20,"location":"Howeport"}},{"attributes":{"name":"Ruthe Weissnat","age":49,"location":"Port Melodyton"}},{"attributes":{"name":"Bennie Toy Jr.","age":41,"location":"Thielfield"}},{"attributes":{"name":"Calvin Hilll","age":57,"location":"Livermore"}},{"attributes":{"name":"Sadie Skiles-Windler I","age":59,"location":"Clemmiehaven"}},{"attributes":{"name":"Julian Erdman","age":78,"location":"Bradenburgh"}},{"attributes":{"name":"Santiago Batz","age":47,"location":"Abbiemouth"}},{"attributes":{"name":"Gary Nikolaus-Howe","age":38,"location":"Pourosstead"}},{"attributes":{"name":"Sandy Bode","age":50,"location":"Elkhart"}},{"attributes":{"name":"Miss Mindy Wehner I","age":57,"location":"Fort Lyda"}},{"attributes":{"name":"Wilma Hauck","age":34,"location":"Marcellusshire"}},{"attributes":{"name":"Vicki Yost","age":56,"location":"South Dagmar"}},{"attributes":{"name":"Mrs. Leatha Greenholt","age":23,"location":"Fort Jany"}},{"attributes":{"name":"Kim Kiehn","age":50,"location":"Rodrigohaven"}},{"attributes":{"name":"Debbie Schoen PhD","age":37,"location":"Lednerstead"}},{"attributes":{"name":"Juvenal Littel","age":54,"location":"Botsfordboro"}},{"attributes":{"name":"Lilla Ullrich","age":69,"location":"Carrollton"}},{"attributes":{"name":"Cali Blick","age":22,"location":"Nitzschestad"}},{"attributes":{"name":"Damian Cartwright","age":69,"location":"Miami"}},{"attributes":{"name":"Ms. Jill Nienow","age":60,"location":"East Taniafurt"}},{"attributes":{"name":"Orland Stoltenberg","age":75,"location":"Davis"}},{"attributes":{"name":"Samuel Feest","age":80,"location":"Sterling Heights"}},{"attributes":{"name":"Constance Brakus","age":65,"location":"Paucekland"}},{"attributes":{"name":"Samson Miller","age":65,"location":"Eugeniaboro"}},{"attributes":{"name":"Bernie Durgan","age":32,"location":"Blacksburg"}},{"attributes":{"name":"Marvin Greenholt","age":68,"location":"Koelpinworth"}},{"attributes":{"name":"Katie Kshlerin","age":19,"location":"Burleson"}},{"attributes":{"name":"Jovany Bahringer","age":19,"location":"Green Bay"}},{"attributes":{"name":"Maggie Beatty","age":56,"location":"West Dallas"}},{"attributes":{"name":"Donny McLaughlin","age":23,"location":"South Crawfordfurt"}},{"attributes":{"name":"Miguel Swift","age":32,"location":"Florianside"}},{"attributes":{"name":"Lola Stokes","age":50,"location":"West Rory"}},{"attributes":{"name":"Mrs. Fannie Labadie","age":25,"location":"Fort Roberttown"}},{"attributes":{"name":"Vida Schimmel","age":69,"location":"Port Audrafield"}},{"attributes":{"name":"Lupe Haag","age":27,"location":"West Shaina"}},{"attributes":{"name":"Heloise Simonis","age":24,"location":"Bentonville"}},{"attributes":{"name":"Dorian Green","age":75,"location":"New Antonetta"}},{"attributes":{"name":"Gerard Will","age":76,"location":"Keyonboro"}},{"attributes":{"name":"Ezekiel Olson","age":59,"location":"Lake Nyahville"}},{"attributes":{"name":"Ms. Saul Gutkowski","age":67,"location":"Fort Lynn"}},{"attributes":{"name":"Ana Barton","age":33,"location":"Amelieberg"}},{"attributes":{"name":"Mrs. Joanna Mueller","age":36,"location":"Port Pink"}},{"attributes":{"name":"Shaun Zemlak","age":32,"location":"Jacobschester"}},{"attributes":{"name":"Forrest Blick","age":47,"location":"Beverlyshire"}},{"attributes":{"name":"Dale Dach","age":80,"location":"New Abigale"}},{"attributes":{"name":"Yvette Goldner DDS","age":23,"location":"Berkeley"}},{"attributes":{"name":"Wilbert Gerhold","age":76,"location":"Edwinside"}},{"attributes":{"name":"Adrianna Mante","age":53,"location":"New Kayaside"}},{"attributes":{"name":"Mr. Carey Graham","age":24,"location":"New Hillary"}},{"attributes":{"name":"Catherine Hagenes","age":41,"location":"Colleenshire"}},{"attributes":{"name":"Francisco Walsh","age":37,"location":"Dedricboro"}},{"attributes":{"name":"Darrel Leffler","age":22,"location":"North Nickolasview"}},{"attributes":{"name":"Tabitha Bailey","age":56,"location":"Fort Rozella"}},{"attributes":{"name":"Mrs. Bernard Donnelly","age":23,"location":"North Larue"}},{"attributes":{"name":"Serena Zulauf","age":21,"location":"Brettton"}},{"attributes":{"name":"Peggy Dickinson","age":31,"location":"Doyleboro"}},{"attributes":{"name":"Ted Tromp","age":31,"location":"West Carmelachester"}},{"attributes":{"name":"Torrance Adams","age":58,"location":"Fort Andreanechester"}},{"attributes":{"name":"Debbie Nikolaus","age":38,"location":"Cristopherfurt"}},{"attributes":{"name":"Keshawn Swaniawski","age":38,"location":"Huntersville"}},{"attributes":{"name":"Kylee Mitchell II","age":28,"location":"North Delaney"}},{"attributes":{"name":"Davon Sipes","age":69,"location":"Cleveland"}},{"attributes":{"name":"Mrs. Geneva Krajcik","age":32,"location":"Lake Jadyn"}},{"attributes":{"name":"Leslie Fisher MD","age":21,"location":"Murphystad"}},{"attributes":{"name":"Robin Hamill","age":32,"location":"East Sydneystead"}},{"attributes":{"name":"Bill Hudson","age":54,"location":"Celestinofield"}},{"attributes":{"name":"Dell Mayert","age":26,"location":"Sterling Heights"}},{"attributes":{"name":"Devonte Yost","age":22,"location":"Kayceebury"}},{"attributes":{"name":"Gilberto Schulist","age":70,"location":"Jameybury"}},{"attributes":{"name":"Theresia Pagac","age":18,"location":"Krystalborough"}},{"attributes":{"name":"Nelson Feil","age":77,"location":"South Anita"}},{"attributes":{"name":"Jeramy Hilll","age":21,"location":"St. Clair Shores"}},{"attributes":{"name":"Lillian Hyatt","age":69,"location":"South Deshaunstead"}},{"attributes":{"name":"Cyril Hegmann","age":55,"location":"Apex"}},{"attributes":{"name":"Lucille Batz","age":72,"location":"Santa Monica"}},{"attributes":{"name":"Lula Haley","age":42,"location":"New Bedford"}},{"attributes":{"name":"Giles Okuneva","age":67,"location":"Destiniton"}},{"attributes":{"name":"Betsy Renner","age":73,"location":"Palm Harbor"}},{"attributes":{"name":"Glenda Reinger","age":74,"location":"Fort Bettie"}},{"attributes":{"name":"Lambert O'Connell","age":49,"location":"Mount Prospect"}},{"attributes":{"name":"Angelo Bosco","age":21,"location":"Lake Yesenia"}},{"attributes":{"name":"Martha Balistreri PhD","age":30,"location":"Revaside"}},{"attributes":{"name":"Norman Hirthe","age":30,"location":"O'Harafort"}},{"attributes":{"name":"Dr. Joey Rau","age":74,"location":"South Phoebe"}},{"attributes":{"name":"Mr. Jakayla Smith","age":52,"location":"Jasonshire"}},{"attributes":{"name":"Dr. Pat McCullough","age":24,"location":"East Winstonboro"}},{"attributes":{"name":"Cornelius Bailey","age":71,"location":"Norfolk"}},{"attributes":{"name":"Sidney Stokes","age":31,"location":"Lake Candelariohaven"}},{"attributes":{"name":"Hattie Carter Sr.","age":36,"location":"Kuphalstad"}},{"attributes":{"name":"Miss Donna Lubowitz","age":63,"location":"Port Blaise"}},{"attributes":{"name":"Kian Jerde","age":69,"location":"New Kirstenport"}},{"attributes":{"name":"Llewellyn Sawayn","age":23,"location":"Eveberg"}},{"attributes":{"name":"Mr. Ronnie Herzog","age":49,"location":"New Jessyville"}},{"attributes":{"name":"Judy Davis","age":76,"location":"Port Diannaview"}},{"attributes":{"name":"Gabriel Tromp","age":47,"location":"South Gabriella"}},{"attributes":{"name":"Josue Block","age":29,"location":"West Willie"}},{"attributes":{"name":"Dejuan Bahringer","age":77,"location":"Glendamouth"}},{"attributes":{"name":"Elmira Marquardt","age":51,"location":"South Madison"}},{"attributes":{"name":"Curtis Auer","age":61,"location":"South Arthur"}},{"attributes":{"name":"Carlos Barrows","age":27,"location":"New Emmalee"}},{"attributes":{"name":"Carmine Cartwright","age":44,"location":"South Christophestad"}},{"attributes":{"name":"Irving Moore","age":30,"location":"Josuebury"}},{"attributes":{"name":"Christine Toy","age":69,"location":"Evansville"}},{"attributes":{"name":"Mr. Camille Schumm","age":36,"location":"Jacobifort"}},{"attributes":{"name":"Kirk Crooks IV","age":46,"location":"Port Ansley"}},{"attributes":{"name":"Lea Stiedemann","age":69,"location":"Baileyborough"}},{"attributes":{"name":"Domingo Deckow","age":72,"location":"North Clemmie"}},{"attributes":{"name":"Caesar Becker","age":78,"location":"West Lucie"}},{"attributes":{"name":"Kattie Ritchie","age":38,"location":"North Sidneyfield"}},{"attributes":{"name":"Ana Flatley","age":38,"location":"Alhambra"}},{"attributes":{"name":"Joey Quitzon III","age":59,"location":"Lindsayton"}},{"attributes":{"name":"Javonte Buckridge","age":65,"location":"Fort Brown"}},{"attributes":{"name":"Marion Lindgren","age":64,"location":"Fort Cornelius"}},{"attributes":{"name":"Walter Howe","age":61,"location":"West Dagmarshire"}},{"attributes":{"name":"Dr. Derick Haley","age":30,"location":"Gleasonchester"}},{"attributes":{"name":"Jennie Jacobi","age":75,"location":"Lake Reneefield"}},{"attributes":{"name":"Mr. Rickey Mayer PhD","age":66,"location":"Moline"}},{"attributes":{"name":"Piper Welch","age":62,"location":"Port Esperanza"}},{"attributes":{"name":"Vincenzo Beahan","age":57,"location":"Paucekport"}},{"attributes":{"name":"Erin Schneider","age":57,"location":"South Brodyshire"}},{"attributes":{"name":"Dwight Becker","age":56,"location":"Pacochaville"}},{"attributes":{"name":"Maritza Wunsch","age":70,"location":"Corvallis"}},{"attributes":{"name":"Nelda Jaskolski","age":71,"location":"Moenhaven"}},{"attributes":{"name":"Dennis Ritchie","age":21,"location":"West Leilanifort"}},{"attributes":{"name":"Tamara Casper","age":78,"location":"East Hestercester"}},{"attributes":{"name":"Krista Rodriguez","age":41,"location":"Flatleyfurt"}},{"attributes":{"name":"Pierce Rippin","age":33,"location":"Schulisttown"}},{"attributes":{"name":"Johnnie Schmeler","age":39,"location":"Dewittbury"}},{"attributes":{"name":"Gregg Grady Sr.","age":79,"location":"Bergeland"}},{"attributes":{"name":"Lucille Rosenbaum","age":34,"location":"North Evangeline"}},{"attributes":{"name":"Grady Mohr","age":40,"location":"Davisville"}},{"attributes":{"name":"Dwayne Jacobs II","age":48,"location":"Wittington"}},{"attributes":{"name":"Dawn Stanton","age":26,"location":"Danbury"}},{"attributes":{"name":"Jakob Schamberger Jr.","age":38,"location":"Norwalk"}},{"attributes":{"name":"Amy Gulgowski","age":33,"location":"Hintzworth"}},{"attributes":{"name":"Frankie Rogahn","age":74,"location":"Ullrichberg"}},{"attributes":{"name":"Alexandre Schroeder","age":70,"location":"Murray"}},{"attributes":{"name":"Jerel Lueilwitz IV","age":33,"location":"North Ronaldostad"}},{"attributes":{"name":"Doug Krajcik","age":71,"location":"Yucaipa"}},{"attributes":{"name":"Lori Ziemann","age":39,"location":"Port Erwin"}},{"attributes":{"name":"Alfreda Kassulke","age":36,"location":"Vandervortton"}},{"attributes":{"name":"Mrs. Janis Runolfsdottir-Walker","age":55,"location":"New Kipfort"}},{"attributes":{"name":"Stephanie Langworth","age":57,"location":"Mandyfield"}},{"attributes":{"name":"Ernesto Stoltenberg","age":51,"location":"Reingertown"}},{"attributes":{"name":"Thomas Reynolds","age":34,"location":"East Chelseafield"}},{"attributes":{"name":"Katie Lynch","age":19,"location":"East Oran"}},{"attributes":{"name":"Sonia Stracke","age":34,"location":"Starkstead"}},{"attributes":{"name":"Juanita Altenwerth IV","age":62,"location":"North Aubreytown"}},{"attributes":{"name":"Tracy Fahey","age":45,"location":"South Fabian"}},{"attributes":{"name":"Patty Brekke","age":26,"location":"West Jaydonfield"}},{"attributes":{"name":"Sherman Lang DVM","age":73,"location":"Fort Amani"}},{"attributes":{"name":"Donna Rolfson","age":41,"location":"New Augustineside"}},{"attributes":{"name":"Cassie Hand-Toy","age":43,"location":"North Agnes"}},{"attributes":{"name":"Constance Cassin PhD","age":34,"location":"Port Kristoffer"}},{"attributes":{"name":"Antonietta Mante-Armstrong","age":54,"location":"Schmittmouth"}},{"attributes":{"name":"Elenora Goldner","age":71,"location":"East Catharinehaven"}},{"attributes":{"name":"Mr. Dasia Howell","age":64,"location":"Germainehaven"}},{"attributes":{"name":"Austin Hagenes","age":45,"location":"Dickensburgh"}},{"attributes":{"name":"Enos Williamson IV","age":39,"location":"Fort Taureancester"}},{"attributes":{"name":"Jovany Sipes","age":79,"location":"Emmerichville"}},{"attributes":{"name":"Eric Wolf","age":19,"location":"Highland"}},{"attributes":{"name":"Debra Wolff","age":68,"location":"Lake Okey"}},{"attributes":{"name":"Betsy Williamson","age":30,"location":"Salina"}},{"attributes":{"name":"Rodolfo Kutch","age":49,"location":"Rosalindville"}},{"attributes":{"name":"Nakia Wisoky","age":20,"location":"North Codyberg"}},{"attributes":{"name":"Francisco Kertzmann","age":62,"location":"West New York"}},{"attributes":{"name":"Josh Herzog","age":64,"location":"West Venaton"}},{"attributes":{"name":"Mr. Floy Corwin","age":51,"location":"Castle Rock"}},{"attributes":{"name":"Olga Schuster","age":41,"location":"Tacoma"}},{"attributes":{"name":"Shaun Schamberger","age":71,"location":"East Ashleemouth"}},{"attributes":{"name":"Mrs. Beverly Bradtke","age":67,"location":"Berneicebury"}},{"attributes":{"name":"Julio Denesik MD","age":54,"location":"East Effie"}},{"attributes":{"name":"Mr. Twila O'Connell","age":25,"location":"West Ettiefurt"}},{"attributes":{"name":"Edith King","age":27,"location":"Nienowbury"}},{"attributes":{"name":"Wilma McDermott MD","age":75,"location":"West Leo"}},{"attributes":{"name":"Zackary Okuneva","age":56,"location":"South Aiyanaborough"}},{"attributes":{"name":"Randal Howell","age":21,"location":"Stoltenbergland"}},{"attributes":{"name":"Sheila Heidenreich","age":80,"location":"Port Brigitte"}},{"attributes":{"name":"Osbaldo Cremin","age":51,"location":"New Bernardoside"}},{"attributes":{"name":"Tomas Kautzer DDS","age":25,"location":"Paramount"}},{"attributes":{"name":"Ms. Juanita White","age":64,"location":"Osinskiborough"}},{"attributes":{"name":"Rosa Blick","age":61,"location":"Swaniawskichester"}},{"attributes":{"name":"Steve Wilkinson","age":43,"location":"Greensboro"}},{"attributes":{"name":"Flossie Beer","age":57,"location":"Bayerburgh"}},{"attributes":{"name":"Emily Ward Sr.","age":46,"location":"North Olen"}},{"attributes":{"name":"Marta Heller","age":49,"location":"Lindport"}},{"attributes":{"name":"Darion Graham","age":66,"location":"Wintheiserbury"}},{"attributes":{"name":"Dalton Leannon","age":24,"location":"Havenville"}},{"attributes":{"name":"Gertrude Miller","age":46,"location":"Leannefield"}},{"attributes":{"name":"Marta Glover IV","age":40,"location":"Mission Viejo"}},{"attributes":{"name":"Joaquin Grady","age":51,"location":"Lake Alvinaside"}},{"attributes":{"name":"Frankie Veum","age":60,"location":"West Haven"}},{"attributes":{"name":"Bennie Durgan","age":49,"location":"West Vito"}},{"attributes":{"name":"Frederick Pacocha","age":74,"location":"Lake Krista"}},{"attributes":{"name":"Janis Boyer","age":54,"location":"Worcester"}},{"attributes":{"name":"Eva Larson","age":62,"location":"Monterey Park"}},{"attributes":{"name":"Kari Sporer","age":23,"location":"Rhiannafort"}},{"attributes":{"name":"Mr. Ignacio Kohler DDS","age":25,"location":"Port Ricky"}},{"attributes":{"name":"Ann Tremblay","age":69,"location":"Lake Chaunceyview"}},{"attributes":{"name":"Ashley Ziemann","age":54,"location":"East Domenick"}},{"attributes":{"name":"Wendell Marks","age":77,"location":"Pansyton"}},{"attributes":{"name":"Mr. Flo Marks","age":46,"location":"North Milton"}},{"attributes":{"name":"Brando Sporer","age":57,"location":"Provo"}},{"attributes":{"name":"Zackery Corwin","age":36,"location":"O'Connellside"}},{"attributes":{"name":"Conrad Auer","age":29,"location":"West Brady"}},{"attributes":{"name":"Vivien Wolf","age":41,"location":"West Donna"}},{"attributes":{"name":"Michelle Jacobson","age":27,"location":"North Stacey"}},{"attributes":{"name":"Dr. Hugo Upton MD","age":50,"location":"Dickensview"}},{"attributes":{"name":"Ezra Luettgen","age":65,"location":"Lake Yadiracester"}},{"attributes":{"name":"Grace Dibbert PhD","age":37,"location":"Port Katelinhaven"}},{"attributes":{"name":"Muhammad Bartoletti","age":52,"location":"Blockville"}},{"attributes":{"name":"Leanna Gutkowski","age":58,"location":"South Martin"}},{"attributes":{"name":"Tamara Marks","age":44,"location":"West Nat"}},{"attributes":{"name":"Miss Stephon Rodriguez","age":32,"location":"East Abdielberg"}},{"attributes":{"name":"Karelle Farrell","age":50,"location":"Lake Marjoriefield"}},{"attributes":{"name":"Misael Grant","age":66,"location":"Euless"}},{"attributes":{"name":"Joann Haley","age":70,"location":"South Margarettetown"}},{"attributes":{"name":"Russ Abernathy","age":72,"location":"Hackensack"}},{"attributes":{"name":"Jules Kohler","age":76,"location":"Port Denatown"}},{"attributes":{"name":"Deborah Murazik-D'Amore II","age":59,"location":"East Brendaberg"}},{"attributes":{"name":"Shania Goyette","age":18,"location":"Rialto"}},{"attributes":{"name":"Christina Marquardt","age":44,"location":"Lexieshire"}},{"attributes":{"name":"Howard Waelchi","age":57,"location":"South Cesarbury"}},{"attributes":{"name":"Johann Harris","age":58,"location":"Tellyshire"}},{"attributes":{"name":"Camille Lynch","age":20,"location":"Wendyburgh"}},{"attributes":{"name":"Penelope Kilback","age":80,"location":"Fort Amparo"}},{"attributes":{"name":"Polly Barrows","age":65,"location":"Lake Kiara"}},{"attributes":{"name":"Estelle Morissette","age":39,"location":"New Ray"}},{"attributes":{"name":"Mr. Norberto Rowe I","age":34,"location":"New Urielchester"}},{"attributes":{"name":"Mr. Gordon Zemlak","age":47,"location":"Weberside"}},{"attributes":{"name":"Gregory Schneider","age":57,"location":"Port Lilyan"}},{"attributes":{"name":"Cary Auer","age":69,"location":"Modesto"}},{"attributes":{"name":"Rhett Von","age":78,"location":"Port Nat"}},{"attributes":{"name":"Dr. Millie Frami","age":48,"location":"Lake Zella"}},{"attributes":{"name":"Lindsey Maggio","age":60,"location":"Largo"}},{"attributes":{"name":"Zachary Boehm","age":43,"location":"Hackettberg"}},{"attributes":{"name":"Ms. Terence Abshire","age":33,"location":"Lake Astridbury"}},{"attributes":{"name":"Tina McCullough","age":40,"location":"New Deontaeborough"}},{"attributes":{"name":"Elwin Jast","age":41,"location":"East Tannerbury"}},{"attributes":{"name":"Kamryn Ledner","age":60,"location":"West Chadside"}},{"attributes":{"name":"Lyric Oberbrunner Jr.","age":58,"location":"Binsfield"}},{"attributes":{"name":"Kyler Will","age":45,"location":"Konopelskiside"}},{"attributes":{"name":"Easter Tromp","age":30,"location":"Port Samantha"}},{"attributes":{"name":"Toby Mann","age":29,"location":"Twin Falls"}},{"attributes":{"name":"Amanda Carroll-Treutel","age":39,"location":"Garfieldbury"}},{"attributes":{"name":"Stanley Schultz","age":77,"location":"Hackettcester"}},{"attributes":{"name":"Jarod Grant","age":73,"location":"Terryport"}},{"attributes":{"name":"Raymond Ward II","age":28,"location":"Wesley Chapel"}},{"attributes":{"name":"Mitchell O'Kon DVM","age":66,"location":"Norabury"}},{"attributes":{"name":"Kian Torp","age":43,"location":"Levittown"}},{"attributes":{"name":"Theodore Kris V","age":46,"location":"Keelyburgh"}},{"attributes":{"name":"Bob Simonis DVM","age":43,"location":"West Mathildeworth"}},{"attributes":{"name":"Darrell Mueller","age":36,"location":"Johnson City"}},{"attributes":{"name":"Benton Fay","age":22,"location":"New Juliet"}},{"attributes":{"name":"Emanuel Zboncak","age":66,"location":"South Yeseniastead"}},{"attributes":{"name":"Francis Reichel","age":25,"location":"South General"}},{"attributes":{"name":"Faith Mann","age":57,"location":"Hegmannview"}},{"attributes":{"name":"Vivianne Dietrich","age":70,"location":"Ebertborough"}},{"attributes":{"name":"Bryan Blanda","age":50,"location":"Fort Joy"}},{"attributes":{"name":"Ms. Abel Mosciski-VonRueden","age":25,"location":"Blaiseworth"}},{"attributes":{"name":"Xander Luettgen","age":78,"location":"Lake Adellafort"}},{"attributes":{"name":"Harold Beahan","age":69,"location":"Port Evelyn"}},{"attributes":{"name":"Delpha Dooley DVM","age":68,"location":"New Javier"}},{"attributes":{"name":"Raquel Reinger","age":28,"location":"Gerholdfield"}},{"attributes":{"name":"Felipe Toy III","age":42,"location":"Port Neha"}},{"attributes":{"name":"Ebony Johnson","age":47,"location":"Gilbertoside"}},{"attributes":{"name":"Mrs. Jacquelyn Hudson","age":18,"location":"Royal Oak"}},{"attributes":{"name":"Albert Denesik","age":19,"location":"Rickieworth"}},{"attributes":{"name":"Jacky Beahan","age":68,"location":"West Johnathanstad"}},{"attributes":{"name":"Princess Gleason","age":62,"location":"South Heather"}},{"attributes":{"name":"Clemens Kunde","age":26,"location":"Monahanboro"}},{"attributes":{"name":"Mona Thompson","age":57,"location":"Newton"}},{"attributes":{"name":"Hardy Hagenes","age":60,"location":"Lake Lindsay"}},{"attributes":{"name":"Shawn Swift","age":20,"location":"Kamronstead"}},{"attributes":{"name":"Brandon Schimmel","age":51,"location":"Elmerville"}},{"attributes":{"name":"Mr. Lonie Bechtelar","age":60,"location":"Feestbury"}},{"attributes":{"name":"Jonathon Leannon","age":28,"location":"Sadieville"}},{"attributes":{"name":"Virgil Anderson Sr.","age":56,"location":"Amparoport"}},{"attributes":{"name":"Shawna Graham","age":43,"location":"Danaview"}},{"attributes":{"name":"Allison Dickinson","age":24,"location":"Fort Santosmouth"}},{"attributes":{"name":"Providenci Pagac","age":66,"location":"Brandon"}},{"attributes":{"name":"Chelsea Grady","age":58,"location":"Fort Pablo"}},{"attributes":{"name":"Loren Dach","age":68,"location":"Deanburgh"}},{"attributes":{"name":"Miss Angelo Hand","age":53,"location":"Konopelskifort"}},{"attributes":{"name":"Vanessa Gleason PhD","age":27,"location":"Monserratboro"}},{"attributes":{"name":"Chelsea O'Keefe","age":18,"location":"New Nedberg"}},{"attributes":{"name":"Clarissa Robel","age":33,"location":"Fort Marionworth"}},{"attributes":{"name":"Jamal Schuster","age":78,"location":"Lacey"}},{"attributes":{"name":"Ulices Cassin","age":79,"location":"Port Devonland"}},{"attributes":{"name":"Lonnie Kris","age":59,"location":"West Breanafield"}},{"attributes":{"name":"Mrs. Dolores Rogahn","age":25,"location":"Roswell"}},{"attributes":{"name":"Dr. Irving Gulgowski","age":31,"location":"Lake Havasu City"}},{"attributes":{"name":"Caleigh Wolf","age":26,"location":"East Otto"}},{"attributes":{"name":"Mae Doyle","age":66,"location":"North Clemens"}},{"attributes":{"name":"Mr. Leann Towne","age":78,"location":"Watsicabury"}},{"attributes":{"name":"Ronald Schmitt","age":47,"location":"New Danikafield"}},{"attributes":{"name":"Colten Feil","age":40,"location":"Port Dorcas"}},{"attributes":{"name":"Kristie Marks","age":62,"location":"New Alexanne"}},{"attributes":{"name":"Ms. Howard Morar","age":46,"location":"Medhurstfield"}},{"attributes":{"name":"Sophia Kassulke","age":70,"location":"Steuberstead"}},{"attributes":{"name":"Corbin Jacobson","age":61,"location":"Marvinhaven"}},{"attributes":{"name":"Florence Hudson-Bruen","age":66,"location":"Carmichael"}},{"attributes":{"name":"Madonna Mann","age":46,"location":"Pfefferview"}},{"attributes":{"name":"Orion Kozey","age":52,"location":"West Noah"}},{"attributes":{"name":"Barry Schmeler","age":49,"location":"Stammton"}},{"attributes":{"name":"Reinhold Lebsack","age":76,"location":"Tracy"}},{"attributes":{"name":"Mr. Gino Mohr","age":22,"location":"North Lucienneberg"}},{"attributes":{"name":"Becky Okuneva","age":71,"location":"Port Obietown"}},{"attributes":{"name":"Max Labadie","age":29,"location":"Koeppland"}},{"attributes":{"name":"Dr. Rodney Rogahn","age":53,"location":"New Kennithtown"}},{"attributes":{"name":"Chance Ondricka","age":78,"location":"Audreanneborough"}},{"attributes":{"name":"Leland Daniel","age":37,"location":"Fort Imogenestead"}},{"attributes":{"name":"Lydia Muller","age":69,"location":"Cathrynland"}},{"attributes":{"name":"Kaleb Yost","age":59,"location":"East Bentonstead"}},{"attributes":{"name":"Kay Mosciski","age":76,"location":"Reillystad"}},{"attributes":{"name":"Annette Cormier","age":26,"location":"Wiegandstad"}},{"attributes":{"name":"Amari Lockman","age":64,"location":"Port Aydenfort"}},{"attributes":{"name":"Faye Prohaska PhD","age":36,"location":"Mauricioberg"}},{"attributes":{"name":"Mrs. Becky White","age":80,"location":"North Luella"}},{"attributes":{"name":"Jeffery Dach","age":30,"location":"Feilborough"}},{"attributes":{"name":"Josefina Hand","age":62,"location":"South Saige"}},{"attributes":{"name":"Yvette Fadel","age":30,"location":"Ezequielville"}},{"attributes":{"name":"Linda Renner","age":50,"location":"Lake Ezekielfurt"}},{"attributes":{"name":"Philip Flatley","age":48,"location":"Lake Leanne"}},{"attributes":{"name":"Jett Keeling","age":54,"location":"West Irmaworth"}},{"attributes":{"name":"Hudson Kshlerin","age":62,"location":"Sawaynworth"}},{"attributes":{"name":"Florian Wiza","age":35,"location":"West Nelson"}},{"attributes":{"name":"Cary Baumbach","age":38,"location":"East Abbigail"}},{"attributes":{"name":"Marsha Thompson","age":80,"location":"South Jena"}},{"attributes":{"name":"Clarissa Smith","age":47,"location":"Lake Sageland"}},{"attributes":{"name":"Laurie Shields","age":71,"location":"Mentor"}},{"attributes":{"name":"Andy Gorczany","age":26,"location":"Gladysbury"}},{"attributes":{"name":"Erma Price","age":52,"location":"Lake Ludie"}},{"attributes":{"name":"Jason Gutkowski","age":74,"location":"Port Alisha"}},{"attributes":{"name":"Norval Rodriguez","age":75,"location":"Gislasonberg"}},{"attributes":{"name":"Darin Schroeder","age":21,"location":"New Rebekafurt"}},{"attributes":{"name":"Molly Becker","age":44,"location":"Aspen Hill"}},{"attributes":{"name":"Kyleigh Schneider V","age":47,"location":"Glendora"}},{"attributes":{"name":"Dr. Derrick Williamson II","age":45,"location":"Wardworth"}},{"attributes":{"name":"Sven Durgan","age":33,"location":"Melissaborough"}},{"attributes":{"name":"Isabel Durgan","age":19,"location":"Fort Danykastad"}},{"attributes":{"name":"Robert Upton","age":73,"location":"Lake Christa"}},{"attributes":{"name":"Lacey Larson","age":58,"location":"Tyrelberg"}},{"attributes":{"name":"Tony Zieme-Schuppe","age":21,"location":"Port Stefan"}},{"attributes":{"name":"Dominick Reichert","age":45,"location":"Nampa"}},{"attributes":{"name":"Robyn Murphy","age":18,"location":"New Ezraworth"}},{"attributes":{"name":"Chyna Bauch II","age":50,"location":"Ankeny"}},{"attributes":{"name":"Brandi O'Conner PhD","age":77,"location":"Zackaryville"}},{"attributes":{"name":"Marjory Koepp","age":69,"location":"Winstonstad"}},{"attributes":{"name":"Rose Bashirian","age":39,"location":"Kovacekstead"}},{"attributes":{"name":"Barbara Upton","age":33,"location":"Williamsonhaven"}},{"attributes":{"name":"Charlotte Champlin","age":76,"location":"Waltonport"}},{"attributes":{"name":"Mr. Freida Schmeler","age":72,"location":"Wyoming"}},{"attributes":{"name":"Trent Morissette","age":50,"location":"Temecula"}},{"attributes":{"name":"Mr. Ray Stoltenberg","age":57,"location":"Jefffort"}},{"attributes":{"name":"Guy Fay","age":69,"location":"Newark"}},{"attributes":{"name":"Javier Gulgowski","age":50,"location":"West Eastonworth"}},{"attributes":{"name":"Richie Hoppe IV","age":52,"location":"Fort Hannaville"}},{"attributes":{"name":"Ms. Bethany Keeling","age":39,"location":"South Carmelo"}},{"attributes":{"name":"Benjamin Block","age":28,"location":"New Jackyport"}},{"attributes":{"name":"Selena Schaefer DDS","age":43,"location":"O'Reillystead"}},{"attributes":{"name":"Kelly Wyman","age":30,"location":"Hendersonville"}},{"attributes":{"name":"Ella Parker-Wolf","age":52,"location":"Lake Johnhaven"}},{"attributes":{"name":"Elnora Will","age":41,"location":"Port Carolyne"}},{"attributes":{"name":"Lew Kshlerin","age":36,"location":"New Zachery"}},{"attributes":{"name":"Elinor Roberts","age":49,"location":"Priceberg"}},{"attributes":{"name":"Raymond Purdy","age":54,"location":"Weimannton"}},{"attributes":{"name":"Lennie Mertz","age":31,"location":"West Jaqueline"}},{"attributes":{"name":"Edgar Nikolaus","age":74,"location":"New Ashlee"}},{"attributes":{"name":"Ms. Arturo D'Amore III","age":25,"location":"Monahanfurt"}},{"attributes":{"name":"Don O'Keefe","age":33,"location":"North Clementside"}},{"attributes":{"name":"Lyle Gottlieb","age":47,"location":"Grand Junction"}},{"attributes":{"name":"Alek Moore","age":59,"location":"North Chasityport"}},{"attributes":{"name":"Casey Wisozk","age":74,"location":"Chicopee"}},{"attributes":{"name":"Kate Ryan","age":33,"location":"North Arturo"}},{"attributes":{"name":"Elroy Dickens","age":60,"location":"Euless"}},{"attributes":{"name":"Dr. Norman Boyer","age":79,"location":"Rashawnstead"}},{"attributes":{"name":"Alan Bashirian","age":34,"location":"Naperville"}},{"attributes":{"name":"Kathryn Okuneva","age":19,"location":"Wolffboro"}},{"attributes":{"name":"Ms. Bob Willms","age":61,"location":"Shoreline"}},{"attributes":{"name":"Chad West","age":21,"location":"Torpport"}},{"attributes":{"name":"Ms. Miguel Donnelly","age":38,"location":"Babycester"}},{"attributes":{"name":"Miss Darrell Mueller","age":35,"location":"Chapel Hill"}},{"attributes":{"name":"Geraldine Beahan","age":47,"location":"Jacobihaven"}},{"attributes":{"name":"Claudia Von-Trantow","age":22,"location":"Arlington Heights"}},{"attributes":{"name":"Aliza Vandervort","age":32,"location":"New Verdie"}},{"attributes":{"name":"Julie Schamberger","age":21,"location":"Stammcester"}},{"attributes":{"name":"Mr. Laurel Zulauf","age":80,"location":"Macejkovicchester"}},{"attributes":{"name":"Sydnee Hauck","age":72,"location":"West Marianport"}},{"attributes":{"name":"Sherry Goodwin MD","age":60,"location":"Wolfffield"}},{"attributes":{"name":"Shad Murazik","age":49,"location":"Faybury"}},{"attributes":{"name":"Melissa Hills III","age":22,"location":"Port Josianneburgh"}},{"attributes":{"name":"Bonnie Jakubowski","age":41,"location":"Port Kacieboro"}},{"attributes":{"name":"Dr. Regina Schulist MD","age":45,"location":"Schaeferchester"}},{"attributes":{"name":"Colton Kautzer","age":30,"location":"Jakubowskiberg"}},{"attributes":{"name":"Abraham Bogan DVM","age":79,"location":"Wildermanbury"}},{"attributes":{"name":"Darrell Walsh","age":75,"location":"Baldwin Park"}},{"attributes":{"name":"Kayli Morissette","age":45,"location":"Reillymouth"}},{"attributes":{"name":"Flora Collier PhD","age":36,"location":"Reichelborough"}},{"attributes":{"name":"Rose Kunze","age":41,"location":"Fort Julieton"}},{"attributes":{"name":"Mohammad Ruecker","age":56,"location":"Belleville"}},{"attributes":{"name":"Crystel Cole","age":26,"location":"South Kiantown"}},{"attributes":{"name":"Florence Mayert","age":64,"location":"Russelville"}},{"attributes":{"name":"Dr. Chester Smith","age":59,"location":"Krystinaboro"}},{"attributes":{"name":"Josephine Renner","age":45,"location":"New Angelo"}},{"attributes":{"name":"Jennifer Mayer","age":62,"location":"West Jerome"}},{"attributes":{"name":"Danny Mueller","age":46,"location":"Smithamport"}},{"attributes":{"name":"Hulda Dickinson","age":60,"location":"Santa Ana"}},{"attributes":{"name":"Tomas Goldner-Runte","age":39,"location":"South Ethyltown"}},{"attributes":{"name":"Hayden Prohaska","age":56,"location":"Grimesfort"}},{"attributes":{"name":"Justin Pfannerstill","age":36,"location":"South Nikki"}},{"attributes":{"name":"Frederick Howe","age":36,"location":"Lake Shaynaside"}},{"attributes":{"name":"Mike Hodkiewicz","age":46,"location":"Port Della"}},{"attributes":{"name":"Mr. Donald Braun","age":21,"location":"Port Kendratown"}},{"attributes":{"name":"Leland Nikolaus V","age":46,"location":"East Luther"}},{"attributes":{"name":"Thalia Harris","age":42,"location":"Dougboro"}},{"attributes":{"name":"Maureen Kilback","age":48,"location":"New Adelestead"}},{"attributes":{"name":"Maxwell Mann","age":39,"location":"Port Hesterhaven"}},{"attributes":{"name":"Moses Leannon","age":37,"location":"Aliaberg"}},{"attributes":{"name":"Rhett Waelchi-Kirlin V","age":25,"location":"Luettgenbury"}},{"attributes":{"name":"Rigoberto Roberts","age":69,"location":"Port Toyburgh"}},{"attributes":{"name":"Willie Stanton","age":80,"location":"West Sarinaborough"}},{"attributes":{"name":"Paul Steuber","age":18,"location":"Potomac"}},{"attributes":{"name":"Wilbert Cruickshank","age":63,"location":"Kelsieburgh"}},{"attributes":{"name":"Domenic West","age":54,"location":"Larsonfield"}},{"attributes":{"name":"Hugh Kuhn","age":69,"location":"Kennedytown"}},{"attributes":{"name":"Dwight Emmerich","age":73,"location":"Hellenfort"}},{"attributes":{"name":"Angela Cruickshank V","age":54,"location":"Scottsdale"}},{"attributes":{"name":"Leopoldo Douglas","age":55,"location":"West Troycester"}},{"attributes":{"name":"Ariel Wiegand","age":28,"location":"New Billieworth"}},{"attributes":{"name":"Adam Murray","age":73,"location":"Dawsonchester"}},{"attributes":{"name":"Abel Kozey","age":42,"location":"Gilbertoton"}},{"attributes":{"name":"Ms. Hermann Bailey","age":35,"location":"Port Una"}},{"attributes":{"name":"Hubert Jenkins","age":53,"location":"South Axel"}},{"attributes":{"name":"Kayla Prohaska","age":80,"location":"Wilfredtown"}},{"attributes":{"name":"Miguel Jerde","age":30,"location":"West Addie"}},{"attributes":{"name":"Mr. Bill Romaguera","age":50,"location":"Pittsburgh"}},{"attributes":{"name":"Tomas Schmeler","age":30,"location":"Rasheedborough"}},{"attributes":{"name":"Nelson Raynor","age":69,"location":"Rosenbaumshire"}},{"attributes":{"name":"Thad Lubowitz","age":65,"location":"Kenner"}},{"attributes":{"name":"Ms. Leann Davis-Halvorson","age":61,"location":"New Trevor"}},{"attributes":{"name":"Rex Schoen","age":51,"location":"Omaha"}},{"attributes":{"name":"Ora Kulas","age":36,"location":"Gardena"}},{"attributes":{"name":"Rene Simonis","age":45,"location":"Denver"}},{"attributes":{"name":"Vernie Gleichner III","age":42,"location":"North Flavie"}},{"attributes":{"name":"Dr. Elijah Berge","age":32,"location":"Kovacekborough"}},{"attributes":{"name":"Ms. Bonnie Glover","age":80,"location":"Fort Cleora"}},{"attributes":{"name":"Alma Mitchell","age":36,"location":"Damarisshire"}},{"attributes":{"name":"Jamie Stark","age":23,"location":"West Oda"}},{"attributes":{"name":"Darrel Langworth","age":21,"location":"Lawton"}},{"attributes":{"name":"Christian Flatley","age":23,"location":"East Barrettstad"}},{"attributes":{"name":"Urban Schuppe","age":75,"location":"Dietrichfield"}},{"attributes":{"name":"Miranda Grady","age":56,"location":"Lake Rosario"}},{"attributes":{"name":"Miss Terry Witting","age":22,"location":"Hahnville"}},{"attributes":{"name":"Frederique O'Reilly","age":50,"location":"Mosciskicester"}},{"attributes":{"name":"Chelsea McClure","age":18,"location":"Centennial"}},{"attributes":{"name":"Corey Powlowski","age":64,"location":"Mayaguez"}},{"attributes":{"name":"Debra Mante-Okuneva","age":40,"location":"Lake Savannahmouth"}},{"attributes":{"name":"Nasir Baumbach","age":48,"location":"Fort Jeffereyboro"}},{"attributes":{"name":"Hayley Nikolaus","age":26,"location":"New Heidi"}},{"attributes":{"name":"Else Ratke","age":42,"location":"New Santinoboro"}},{"attributes":{"name":"Billie Heller","age":54,"location":"Port Alberto"}},{"attributes":{"name":"Mamie Johnson","age":63,"location":"East Liana"}},{"attributes":{"name":"Cody Mosciski","age":70,"location":"Travonfurt"}},{"attributes":{"name":"Jacquelyn Dietrich","age":59,"location":"Gwendolynland"}},{"attributes":{"name":"Cora Hermann-Steuber PhD","age":36,"location":"Port Makayla"}},{"attributes":{"name":"Kelli Reichert","age":36,"location":"Lake Bradfordfort"}},{"attributes":{"name":"Levi Lemke","age":63,"location":"Altadena"}},{"attributes":{"name":"Gregg Smith","age":47,"location":"Port Violetteworth"}},{"attributes":{"name":"Dr. Jaron Konopelski","age":80,"location":"Ankeny"}},{"attributes":{"name":"Caterina Koepp","age":74,"location":"Casandraberg"}},{"attributes":{"name":"Dr. Terry Davis","age":19,"location":"Port Keithstad"}},{"attributes":{"name":"Lorenzo Ledner","age":40,"location":"Bartholomeport"}},{"attributes":{"name":"Irving Feil DDS","age":69,"location":"Dorahaven"}},{"attributes":{"name":"Bryce Kshlerin","age":45,"location":"Port Jasentown"}},{"attributes":{"name":"Kiel Fay","age":61,"location":"Valerieworth"}},{"attributes":{"name":"Grayce Lowe","age":40,"location":"Terrystad"}},{"attributes":{"name":"Charlotte Parker","age":67,"location":"Shawnaboro"}},{"attributes":{"name":"Adolph Marvin","age":49,"location":"Kirlinport"}},{"attributes":{"name":"Pete Gleichner","age":48,"location":"Sheridanport"}},{"attributes":{"name":"Victoria Schiller III","age":74,"location":"West Oraburgh"}},{"attributes":{"name":"Owen Pouros","age":44,"location":"North Tomasaton"}},{"attributes":{"name":"Miss Hannah Hane-Keeling","age":63,"location":"Roseville"}},{"attributes":{"name":"Jammie Weimann PhD","age":32,"location":"North Felicitashire"}},{"attributes":{"name":"Ervin Bradtke","age":44,"location":"O'Connerview"}},{"attributes":{"name":"Carroll Balistreri","age":52,"location":"Lombard"}},{"attributes":{"name":"Dr. Kurt Corwin","age":63,"location":"Larkinborough"}},{"attributes":{"name":"Lucie Mitchell","age":20,"location":"Lake Rosendotown"}},{"attributes":{"name":"Shirley O'Kon","age":23,"location":"Quitzonville"}},{"attributes":{"name":"Claude Dooley","age":22,"location":"Alpharetta"}},{"attributes":{"name":"Lonnie Lubowitz","age":80,"location":"Grand Prairie"}},{"attributes":{"name":"Harold Lubowitz","age":73,"location":"Ullrichfort"}},{"attributes":{"name":"Magdalen Jakubowski","age":22,"location":"Mattieton"}},{"attributes":{"name":"Lillie Parker","age":20,"location":"Esperanzaside"}},{"attributes":{"name":"Dorian Gutmann","age":72,"location":"Jalyncester"}},{"attributes":{"name":"Adolphus Bashirian","age":50,"location":"Port Ellisberg"}},{"attributes":{"name":"Loretta Parisian","age":45,"location":"Fort Fausto"}},{"attributes":{"name":"Margie Mitchell","age":76,"location":"Howeworth"}},{"attributes":{"name":"Janis Schimmel","age":43,"location":"Fort Chloetown"}},{"attributes":{"name":"Edmund Boyle III","age":56,"location":"New Olgaton"}},{"attributes":{"name":"Courtney Medhurst","age":63,"location":"Lake Cleo"}},{"attributes":{"name":"Roger Stiedemann","age":25,"location":"Fort Yadiratown"}},{"attributes":{"name":"Lula Fritsch","age":55,"location":"Feestside"}},{"attributes":{"name":"Sheri Bode II","age":60,"location":"Germantown"}},{"attributes":{"name":"Mr. Abdul Marquardt","age":43,"location":"New Madilynside"}},{"attributes":{"name":"Tanya Hermann","age":77,"location":"Concepcionberg"}},{"attributes":{"name":"Caleb Okuneva","age":61,"location":"Normahaven"}},{"attributes":{"name":"Maximo Stehr","age":68,"location":"North Nestorfurt"}},{"attributes":{"name":"Constance Lubowitz","age":33,"location":"Buckeye"}},{"attributes":{"name":"Bobby Will","age":68,"location":"Hudsonside"}},{"attributes":{"name":"Darrell Herman V","age":72,"location":"Medhurstboro"}},{"attributes":{"name":"Beverly Rogahn","age":32,"location":"Blandaboro"}},{"attributes":{"name":"Jaydon Gleichner","age":50,"location":"West Lafayette"}},{"attributes":{"name":"Sue Rowe","age":42,"location":"Adahtown"}},{"attributes":{"name":"Austin Medhurst","age":76,"location":"Tristincester"}},{"attributes":{"name":"Orlando Kovacek-Monahan","age":60,"location":"West Estell"}},{"attributes":{"name":"Milford Runte III","age":69,"location":"Berkeley"}},{"attributes":{"name":"Ophelia Ziemann","age":59,"location":"Sigridmouth"}},{"attributes":{"name":"Mr. Max Wunsch","age":25,"location":"Anaheim"}},{"attributes":{"name":"Mrs. Woodrow Kovacek PhD","age":76,"location":"Auburn"}},{"attributes":{"name":"Jerome Weissnat III","age":58,"location":"Fort Estefania"}},{"attributes":{"name":"Julianne MacGyver","age":35,"location":"Everardofurt"}},{"attributes":{"name":"Mr. Ira Hermiston","age":33,"location":"North Jaunita"}},{"attributes":{"name":"Stewart Blick DVM","age":77,"location":"Anitastead"}},{"attributes":{"name":"Lucas Schamberger","age":50,"location":"South Jordan"}},{"attributes":{"name":"Bert Sanford","age":44,"location":"West Mia"}},{"attributes":{"name":"Laverne Hoeger IV","age":20,"location":"Oak Park"}},{"attributes":{"name":"Tamara O'Conner","age":64,"location":"Halvorsonshire"}},{"attributes":{"name":"King Mills","age":35,"location":"Dewittland"}},{"attributes":{"name":"Jarred Runte","age":37,"location":"Krystelfield"}},{"attributes":{"name":"Geraldine Gleason","age":49,"location":"Enricoboro"}},{"attributes":{"name":"Natalia Bayer","age":21,"location":"Port Anastacio"}},{"attributes":{"name":"Gloria Larson","age":60,"location":"Edwardoburgh"}},{"attributes":{"name":"Ruth Stiedemann","age":62,"location":"Schummburgh"}},{"attributes":{"name":"Carleton Jones","age":33,"location":"West Sigridfurt"}},{"attributes":{"name":"Dianna Dach MD","age":70,"location":"North Kathleenbury"}},{"attributes":{"name":"Diane Terry","age":44,"location":"Klockofurt"}},{"attributes":{"name":"Raymond Krajcik","age":76,"location":"Lake Jaquelinburgh"}},{"attributes":{"name":"Lindsay Nicolas","age":41,"location":"Lake Raehaven"}},{"attributes":{"name":"Julia Ward","age":43,"location":"West Brendanland"}},{"attributes":{"name":"Kevin Crona","age":44,"location":"Milford"}},{"attributes":{"name":"Marianne Bosco","age":32,"location":"Fort Guyborough"}},{"attributes":{"name":"Cristina Effertz","age":54,"location":"Cedar Park"}},{"attributes":{"name":"Hortense Spencer","age":76,"location":"East Laneytown"}},{"attributes":{"name":"Sydnie Schultz","age":42,"location":"North Blanca"}},{"attributes":{"name":"Juan Windler","age":39,"location":"Carmineside"}},{"attributes":{"name":"Winnifred Kassulke-Tremblay","age":79,"location":"Jeromecester"}},{"attributes":{"name":"Lori O'Hara","age":44,"location":"South August"}},{"attributes":{"name":"Carlton Volkman-Watsica","age":52,"location":"Lorain"}},{"attributes":{"name":"Charlie Tillman","age":19,"location":"Andrefurt"}},{"attributes":{"name":"Anthony Bins","age":80,"location":"South Jackie"}},{"attributes":{"name":"Nichole Lakin","age":80,"location":"Jaylinstad"}},{"attributes":{"name":"Alena Zemlak","age":30,"location":"Kassulkeside"}},{"attributes":{"name":"Nathaniel Wiegand","age":51,"location":"West Kennediport"}},{"attributes":{"name":"Al Reichel","age":79,"location":"New Magdalenmouth"}},{"attributes":{"name":"Ian Johnston","age":22,"location":"Kihnville"}},{"attributes":{"name":"Ellsworth Mitchell","age":53,"location":"Emardburgh"}},{"attributes":{"name":"Faustino Beer","age":74,"location":"New Jeromy"}},{"attributes":{"name":"Carlos Fay","age":54,"location":"Boyerport"}},{"attributes":{"name":"Gabriella Satterfield","age":75,"location":"North Salvador"}},{"attributes":{"name":"Mr. Chester Altenwerth","age":60,"location":"South Flavie"}},{"attributes":{"name":"Dagmar Grady","age":67,"location":"New Haskellport"}},{"attributes":{"name":"Elmer Lebsack","age":76,"location":"Homestead"}},{"attributes":{"name":"Ignacio O'Reilly","age":26,"location":"Fort Marcellashire"}},{"attributes":{"name":"Elmore Goldner-Kub","age":27,"location":"Jonesfield"}},{"attributes":{"name":"Clark Hegmann","age":60,"location":"South Stephan"}},{"attributes":{"name":"Gayle Barrows","age":36,"location":"Plainfield"}},{"attributes":{"name":"Jamal Prosacco Sr.","age":37,"location":"Donnellyborough"}},{"attributes":{"name":"Rufus Harber","age":67,"location":"Port Isabellcester"}},{"attributes":{"name":"Candida Parker MD","age":71,"location":"New Fosterboro"}},{"attributes":{"name":"Lucia Larkin","age":70,"location":"Raheembury"}},{"attributes":{"name":"Aniya Rempel","age":61,"location":"Edgarborough"}},{"attributes":{"name":"Terry Metz-Kutch","age":18,"location":"Andersonfurt"}},{"attributes":{"name":"Elvera Ward","age":47,"location":"Roobchester"}},{"attributes":{"name":"Mrs. Opal Langosh PhD","age":24,"location":"Schaeferview"}},{"attributes":{"name":"Charlie Bosco","age":33,"location":"Mortoncester"}},{"attributes":{"name":"Louis Turner Jr.","age":71,"location":"Michelfort"}},{"attributes":{"name":"Camila Will-Yundt","age":74,"location":"East Brandt"}},{"attributes":{"name":"Dorthy Schoen","age":53,"location":"Lake Kalebton"}},{"attributes":{"name":"Pat Miller","age":32,"location":"O'Fallon"}},{"attributes":{"name":"Miss Rosalinda Kautzer","age":79,"location":"New Waino"}},{"attributes":{"name":"Geovanny Greenfelder","age":77,"location":"Larsonland"}},{"attributes":{"name":"Hazel Conroy","age":37,"location":"Lavernatown"}},{"attributes":{"name":"Bernadette Gleichner","age":80,"location":"Jeanieville"}},{"attributes":{"name":"Miss Tina Mills","age":75,"location":"Schuppeberg"}},{"attributes":{"name":"Leopold Price","age":55,"location":"Gutmannmouth"}},{"attributes":{"name":"Thelma Hane","age":62,"location":"Pearltown"}},{"attributes":{"name":"Luna Ferry","age":72,"location":"Mount Prospect"}},{"attributes":{"name":"Marion Bayer","age":62,"location":"Bakersfield"}},{"attributes":{"name":"Abraham Goyette","age":25,"location":"Franeckifield"}},{"attributes":{"name":"Kimberly Purdy","age":45,"location":"Port Tatyana"}},{"attributes":{"name":"Marian Nader","age":52,"location":"Agustinacester"}},{"attributes":{"name":"Gina Lebsack","age":70,"location":"Myaworth"}},{"attributes":{"name":"Ruben Hamill","age":36,"location":"Concord"}},{"attributes":{"name":"Alyssa Hyatt","age":45,"location":"Jadynmouth"}},{"attributes":{"name":"Dedrick Witting","age":30,"location":"Earlinechester"}},{"attributes":{"name":"Kenna DuBuque","age":61,"location":"North Lauderdale"}},{"attributes":{"name":"Percy Bernier","age":55,"location":"North Irwin"}},{"attributes":{"name":"Orrin Gottlieb","age":63,"location":"Sammamish"}},{"attributes":{"name":"Aliyah Satterfield","age":57,"location":"Julesberg"}},{"attributes":{"name":"Micheal Fay","age":72,"location":"Lake Rahsaan"}},{"attributes":{"name":"Ervin Wintheiser","age":20,"location":"Pacochamouth"}},{"attributes":{"name":"Cassandra Bernhard","age":18,"location":"Ernsertown"}},{"attributes":{"name":"Stacy Grady","age":76,"location":"Lake Korbin"}},{"attributes":{"name":"Howard Yundt","age":73,"location":"Jasperbury"}},{"attributes":{"name":"Emmet Weimann","age":52,"location":"Corkeryport"}},{"attributes":{"name":"Juanita Welch PhD","age":78,"location":"Genesischester"}},{"attributes":{"name":"Merl Hartmann","age":74,"location":"Portage"}},{"attributes":{"name":"Green Spinka","age":56,"location":"Port Roxanneborough"}},{"attributes":{"name":"Blanche Boehm","age":31,"location":"New Cindychester"}},{"attributes":{"name":"Jacky Schumm","age":79,"location":"Fort Collins"}},{"attributes":{"name":"Reanna Shields IV","age":29,"location":"Kianfort"}},{"attributes":{"name":"Priscilla Mayer DDS","age":71,"location":"Gradyport"}},{"attributes":{"name":"Jo Dach","age":64,"location":"Lake Margeberg"}},{"attributes":{"name":"Opal Harber","age":37,"location":"Brockmouth"}},{"attributes":{"name":"Sara Douglas","age":69,"location":"Brendanfort"}},{"attributes":{"name":"Jarod Fisher","age":65,"location":"East Carmelaworth"}},{"attributes":{"name":"Mrs. Lawrence Powlowski","age":19,"location":"New Hubert"}},{"attributes":{"name":"Freddie Bernhard","age":78,"location":"Maxmouth"}},{"attributes":{"name":"Hailie Senger Jr.","age":18,"location":"Lysanneton"}},{"attributes":{"name":"Wilbert Swaniawski MD","age":21,"location":"Doyleshire"}},{"attributes":{"name":"Mr. Corey Hermiston","age":79,"location":"Elianestad"}},{"attributes":{"name":"Brady Bashirian","age":18,"location":"Columbia"}},{"attributes":{"name":"Kenny Smith","age":79,"location":"South Keaton"}},{"attributes":{"name":"Aubrey Gulgowski","age":55,"location":"South Cortneyboro"}},{"attributes":{"name":"Glen Gulgowski IV","age":74,"location":"North Carolefield"}},{"attributes":{"name":"Loyal Anderson","age":18,"location":"Welchburgh"}},{"attributes":{"name":"Adam Durgan","age":34,"location":"Cape Coral"}},{"attributes":{"name":"Chanel Dickinson III","age":60,"location":"South Emmytown"}},{"attributes":{"name":"Antonio Kshlerin","age":33,"location":"Darrellburgh"}},{"attributes":{"name":"Ms. Patsy Howe","age":25,"location":"State College"}},{"attributes":{"name":"Maureen Lindgren","age":26,"location":"West Abdulfield"}},{"attributes":{"name":"Dr. Grace Ondricka","age":49,"location":"Port Jamey"}},{"attributes":{"name":"Doreen Bins","age":27,"location":"New Lavina"}},{"attributes":{"name":"Barbara Crist","age":72,"location":"Mayerview"}},{"attributes":{"name":"Cary Grimes","age":56,"location":"Joyfort"}},{"attributes":{"name":"Virginia Feest","age":26,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Sheila Lowe","age":46,"location":"New York"}},{"attributes":{"name":"Harvey Gerlach","age":57,"location":"South Vivianeborough"}},{"attributes":{"name":"Andy Zieme","age":65,"location":"Port St. Lucie"}},{"attributes":{"name":"Foster King","age":27,"location":"Port Arnoldtown"}},{"attributes":{"name":"Alberta Strosin","age":67,"location":"Mohrhaven"}},{"attributes":{"name":"Ms. Elizabeth Wyman","age":67,"location":"West Chadd"}},{"attributes":{"name":"Santino Kassulke Sr.","age":30,"location":"Fort Izaiahland"}},{"attributes":{"name":"Chelsea Yost","age":37,"location":"Fort Ashlynnburgh"}},{"attributes":{"name":"Nichole Corwin","age":51,"location":"Stantonland"}},{"attributes":{"name":"Audra Streich","age":44,"location":"Pourosbury"}},{"attributes":{"name":"Keyshawn Hammes","age":44,"location":"Lake Magdalenaport"}},{"attributes":{"name":"Theresa Lubowitz","age":74,"location":"Alfredafurt"}},{"attributes":{"name":"Hillary Reichert","age":25,"location":"Zanderfurt"}},{"attributes":{"name":"Rhiannon Hessel","age":63,"location":"Port Avis"}},{"attributes":{"name":"Joyce Jakubowski III","age":54,"location":"West Elmirabury"}},{"attributes":{"name":"Arnold Sporer","age":66,"location":"Spring Valley"}},{"attributes":{"name":"Levi Hermann-Kreiger","age":48,"location":"Newton"}},{"attributes":{"name":"Allen Hirthe I","age":20,"location":"Plano"}},{"attributes":{"name":"Teresa Predovic","age":40,"location":"West Gust"}},{"attributes":{"name":"Bryant Kemmer Sr.","age":42,"location":"Marcelinotown"}},{"attributes":{"name":"Wilbur Goldner","age":78,"location":"Nienowworth"}},{"attributes":{"name":"Marilyn Bradtke","age":78,"location":"Cronaport"}},{"attributes":{"name":"Prudence Mertz","age":23,"location":"Lake Dereck"}},{"attributes":{"name":"Barry Collins DDS","age":69,"location":"East Gardnerfield"}},{"attributes":{"name":"Jesus Thompson","age":56,"location":"Borerland"}},{"attributes":{"name":"Howard Von","age":66,"location":"South Amari"}},{"attributes":{"name":"Millie Hessel","age":21,"location":"Rainaton"}},{"attributes":{"name":"Sherry Jacobson","age":18,"location":"Nikolausworth"}},{"attributes":{"name":"Lavern Collier","age":74,"location":"Noreneboro"}},{"attributes":{"name":"Tre Dietrich","age":77,"location":"Schulistshire"}},{"attributes":{"name":"Kevin Torphy","age":30,"location":"Bergstromchester"}},{"attributes":{"name":"Henriette Corkery","age":72,"location":"Florence-Graham"}},{"attributes":{"name":"Ellis Heathcote","age":51,"location":"Pfefferbury"}},{"attributes":{"name":"Johnnie Pfannerstill","age":66,"location":"Yucaipa"}},{"attributes":{"name":"Kole Wintheiser-Zemlak","age":73,"location":"Fort Elta"}},{"attributes":{"name":"Kylee Brekke","age":74,"location":"Darianaberg"}},{"attributes":{"name":"Kayla Funk","age":27,"location":"Demarcuscester"}},{"attributes":{"name":"Max Krajcik","age":46,"location":"Christaboro"}},{"attributes":{"name":"Lewis Ritchie","age":71,"location":"North Selenashire"}},{"attributes":{"name":"Cleora Thompson","age":78,"location":"Gunnerview"}},{"attributes":{"name":"Mrs. Kaleb Hodkiewicz","age":53,"location":"South Geraldbury"}},{"attributes":{"name":"Avis Hand PhD","age":18,"location":"Enoscester"}},{"attributes":{"name":"Belinda Johnston","age":60,"location":"Kingville"}},{"attributes":{"name":"Leslie Mante","age":44,"location":"Lueilwitzfort"}},{"attributes":{"name":"Brandon Welch","age":22,"location":"Yazminmouth"}},{"attributes":{"name":"Jamie Mraz IV","age":58,"location":"Kearny"}},{"attributes":{"name":"Faith Leannon IV","age":70,"location":"Tyler"}},{"attributes":{"name":"Chaz Bartell","age":39,"location":"Audreyport"}},{"attributes":{"name":"Felipe Bode","age":75,"location":"Delano"}},{"attributes":{"name":"Llewellyn Kuhn","age":26,"location":"East Providenci"}},{"attributes":{"name":"Jerrold Ruecker","age":56,"location":"New Stewart"}},{"attributes":{"name":"Brandi West","age":68,"location":"Yonkers"}},{"attributes":{"name":"Kristen Shanahan","age":44,"location":"Wichita"}},{"attributes":{"name":"Briana Denesik-Bashirian","age":59,"location":"Schummcester"}},{"attributes":{"name":"Coralie McKenzie","age":34,"location":"Zboncakburgh"}},{"attributes":{"name":"Aglae Welch","age":27,"location":"New Mike"}},{"attributes":{"name":"Maria Ruecker","age":49,"location":"Uptonchester"}},{"attributes":{"name":"Alfredo Kiehn","age":42,"location":"Sandrineville"}},{"attributes":{"name":"Dr. Gregg Connelly","age":20,"location":"Corona"}},{"attributes":{"name":"Mrs. Rebecca Bruen","age":42,"location":"East Clemenscester"}},{"attributes":{"name":"Judith Crist","age":31,"location":"Placentia"}},{"attributes":{"name":"Jedediah Murray","age":54,"location":"East Jaquan"}},{"attributes":{"name":"Kerry Erdman","age":62,"location":"Port Ladarius"}},{"attributes":{"name":"Verlie Haag","age":37,"location":"Fort Frank"}},{"attributes":{"name":"Joanne Krajcik I","age":53,"location":"West Susannafort"}},{"attributes":{"name":"Sheldon Stokes MD","age":72,"location":"Hellenville"}},{"attributes":{"name":"Heidi Treutel","age":64,"location":"Fort Chetworth"}},{"attributes":{"name":"Deontae O'Reilly","age":48,"location":"Lacey"}},{"attributes":{"name":"Luella Fisher","age":78,"location":"Juliaport"}},{"attributes":{"name":"Elinore Blanda V","age":24,"location":"Jameyworth"}},{"attributes":{"name":"Michel Graham","age":54,"location":"Vanceberg"}},{"attributes":{"name":"Ms. Christine Lind","age":32,"location":"Brianachester"}},{"attributes":{"name":"Margaret Wilderman","age":37,"location":"Robertsfort"}},{"attributes":{"name":"Bobbie Roob Jr.","age":73,"location":"Rubyeport"}},{"attributes":{"name":"Mercedes Mann","age":33,"location":"Feilstad"}},{"attributes":{"name":"Madeline Schaden","age":60,"location":"Paramount"}},{"attributes":{"name":"Lelah Zieme","age":33,"location":"Rempelview"}},{"attributes":{"name":"Sherman Carroll-Franecki","age":69,"location":"Champlinburgh"}},{"attributes":{"name":"Dr. Woodrow Conroy","age":43,"location":"Berkeley"}},{"attributes":{"name":"Maxine Corwin II","age":69,"location":"Lake Efraincester"}},{"attributes":{"name":"Deshaun Gorczany","age":75,"location":"Lehnerworth"}},{"attributes":{"name":"Mr. Urban Casper","age":46,"location":"Stammville"}},{"attributes":{"name":"Mr. Ralph Spencer IV","age":63,"location":"Hendersonville"}},{"attributes":{"name":"Erma Little","age":57,"location":"Lake Orlomouth"}},{"attributes":{"name":"Elody Goldner","age":34,"location":"West Viviane"}},{"attributes":{"name":"Lacy Schmidt","age":29,"location":"Libbieville"}},{"attributes":{"name":"Renee Ebert V","age":49,"location":"Port Aurelia"}},{"attributes":{"name":"Kari Will","age":44,"location":"East Leonel"}},{"attributes":{"name":"Irving Bednar PhD","age":32,"location":"Carmenburgh"}},{"attributes":{"name":"Moses Cassin","age":51,"location":"Margaretside"}},{"attributes":{"name":"Daphne Prosacco PhD","age":29,"location":"West Camryn"}},{"attributes":{"name":"Dino Cummerata Jr.","age":39,"location":"Hacienda Heights"}},{"attributes":{"name":"Dana Schultz","age":67,"location":"Altadena"}},{"attributes":{"name":"Candace Daugherty","age":64,"location":"Fort Coraliecester"}},{"attributes":{"name":"Lyda O'Reilly","age":28,"location":"Parisianberg"}},{"attributes":{"name":"Luke Haley","age":71,"location":"East Hartford"}},{"attributes":{"name":"Dianne Lubowitz","age":37,"location":"New Edward"}},{"attributes":{"name":"Roderick Bergstrom","age":59,"location":"Bradlyboro"}},{"attributes":{"name":"Aubree Boyer","age":40,"location":"Stokeschester"}},{"attributes":{"name":"Mackenzie Wyman","age":54,"location":"Abdullahview"}},{"attributes":{"name":"Andre Mayer","age":56,"location":"Eugene"}},{"attributes":{"name":"Tanner Green","age":21,"location":"Port Janis"}},{"attributes":{"name":"Cole Bruen","age":40,"location":"Parma"}},{"attributes":{"name":"Oswald Sanford DDS","age":67,"location":"Conroyfurt"}},{"attributes":{"name":"Cameron Wuckert","age":36,"location":"East Ressie"}},{"attributes":{"name":"Janis Morissette","age":80,"location":"Grand Forks"}},{"attributes":{"name":"Colleen Pfannerstill","age":22,"location":"Port Breannafort"}},{"attributes":{"name":"Tammy Marvin","age":36,"location":"East Hermann"}},{"attributes":{"name":"Stan DuBuque","age":77,"location":"South Jana"}},{"attributes":{"name":"Hattie Wolff","age":76,"location":"North Hilarioville"}},{"attributes":{"name":"Natalie Kemmer","age":64,"location":"Krisview"}},{"attributes":{"name":"Mrs. Alexandro Kerluke","age":25,"location":"Leoniehaven"}},{"attributes":{"name":"Kent King","age":50,"location":"Lynn"}},{"attributes":{"name":"Rosemarie Ernser","age":70,"location":"North Hudsonton"}},{"attributes":{"name":"Jody King","age":78,"location":"Bartellstead"}},{"attributes":{"name":"Wilbur Dickinson","age":22,"location":"Port Johnview"}},{"attributes":{"name":"Abraham Ebert","age":18,"location":"South Jordan"}},{"attributes":{"name":"Emmalee Terry","age":74,"location":"West Anna"}},{"attributes":{"name":"Della Nader","age":47,"location":"East Destinifield"}},{"attributes":{"name":"Dawn Parker","age":22,"location":"South Sabrina"}},{"attributes":{"name":"Timmy Reynolds","age":46,"location":"San Clemente"}},{"attributes":{"name":"Brandon Hamill","age":72,"location":"Ashleighstad"}},{"attributes":{"name":"Alycia Christiansen","age":72,"location":"Hamillshire"}},{"attributes":{"name":"Miss Kiley Sanford","age":76,"location":"Beerside"}},{"attributes":{"name":"Katie Rolfson","age":63,"location":"Balistreriville"}},{"attributes":{"name":"Chelsea Trantow","age":30,"location":"Herbertside"}},{"attributes":{"name":"Kenyon Weimann","age":72,"location":"Windlerfort"}},{"attributes":{"name":"Noah Gorczany","age":38,"location":"North Port"}},{"attributes":{"name":"Dr. Edgar Orn","age":67,"location":"West Lavonstead"}},{"attributes":{"name":"Myra Huel","age":33,"location":"Lombard"}},{"attributes":{"name":"Carmen Jacobi","age":62,"location":"Tampa"}},{"attributes":{"name":"Ora Padberg","age":77,"location":"South Milan"}},{"attributes":{"name":"Zackery Goldner-Gerhold","age":37,"location":"Zariabury"}},{"attributes":{"name":"Odell Feest","age":76,"location":"West Beth"}},{"attributes":{"name":"Dr. Kyle Ullrich-Harber","age":21,"location":"Jorgeshire"}},{"attributes":{"name":"Gregory Kunze I","age":46,"location":"Raphaelleport"}},{"attributes":{"name":"Noel Daniel","age":27,"location":"New Mekhichester"}},{"attributes":{"name":"Marlene Veum","age":47,"location":"Schowalterview"}},{"attributes":{"name":"Sonya Lebsack","age":18,"location":"Smyrna"}},{"attributes":{"name":"Mr. Arno Rau","age":56,"location":"Fort Theresa"}},{"attributes":{"name":"Johanna Wolf","age":46,"location":"New Beatricechester"}},{"attributes":{"name":"Mr. Corey Stiedemann III","age":25,"location":"North Weldon"}},{"attributes":{"name":"Melinda Schoen","age":74,"location":"North Katelin"}},{"attributes":{"name":"Dorian Breitenberg","age":80,"location":"West Antwan"}},{"attributes":{"name":"Alexandrea Klein","age":59,"location":"Sengerberg"}},{"attributes":{"name":"Wanda Cummerata","age":24,"location":"Catalina Foothills"}},{"attributes":{"name":"Mrs. Grace Runolfsdottir","age":43,"location":"Lebsackside"}},{"attributes":{"name":"Edwin Bednar","age":39,"location":"Fort Oran"}},{"attributes":{"name":"Maureen Nader","age":73,"location":"Susieview"}},{"attributes":{"name":"Mrs. Kristopher Pollich","age":31,"location":"Darianatown"}},{"attributes":{"name":"Mertie Johnston","age":61,"location":"Virginia Beach"}},{"attributes":{"name":"Marie Shanahan","age":71,"location":"New Paulaton"}},{"attributes":{"name":"Juana Thiel","age":63,"location":"West Buford"}},{"attributes":{"name":"Pam Heaney","age":39,"location":"Lake Sibyl"}},{"attributes":{"name":"Olin Parisian","age":36,"location":"Franciscaland"}},{"attributes":{"name":"Peggy Dooley","age":61,"location":"Sipesfort"}},{"attributes":{"name":"Levi Schmeler II","age":40,"location":"New Braunfels"}},{"attributes":{"name":"Sammy Prohaska","age":53,"location":"South Presleytown"}},{"attributes":{"name":"Marlon Murray","age":69,"location":"Pine Bluff"}},{"attributes":{"name":"Santos Wolff","age":50,"location":"McLaughlinfort"}},{"attributes":{"name":"Malika Pacocha","age":42,"location":"Feeneyview"}},{"attributes":{"name":"Lana Gleichner-Green","age":22,"location":"Alishamouth"}},{"attributes":{"name":"Dr. Tomasa Schaden","age":27,"location":"Monahanborough"}},{"attributes":{"name":"Ms. Cristina Kling","age":79,"location":"Ashleeville"}},{"attributes":{"name":"Rick Pouros III","age":41,"location":"Port Chauncey"}},{"attributes":{"name":"Garry DuBuque","age":46,"location":"Waukegan"}},{"attributes":{"name":"Bennie Graham","age":35,"location":"Spencerburgh"}},{"attributes":{"name":"Brandon Bernier DVM","age":57,"location":"East Providence"}},{"attributes":{"name":"Cassandra Graham V","age":32,"location":"Eribertostead"}},{"attributes":{"name":"Bryce Pagac","age":76,"location":"Devynport"}},{"attributes":{"name":"John Jenkins","age":55,"location":"West Mose"}},{"attributes":{"name":"Jaren Sipes IV","age":23,"location":"Robelland"}},{"attributes":{"name":"Roy Nicolas-Bernier","age":80,"location":"Temple"}},{"attributes":{"name":"Elise Hills","age":60,"location":"Kozeystead"}},{"attributes":{"name":"Lila Zemlak-Barton","age":75,"location":"Bernhardton"}},{"attributes":{"name":"Marcella Goldner","age":39,"location":"North Adeliaton"}},{"attributes":{"name":"Bill MacGyver","age":28,"location":"Elmhurst"}},{"attributes":{"name":"Iva O'Keefe DDS","age":63,"location":"Lake Paula"}},{"attributes":{"name":"Jordi O'Reilly","age":47,"location":"Boston"}},{"attributes":{"name":"Braxton Bartell","age":67,"location":"Indianapolis"}},{"attributes":{"name":"Laurie Berge","age":49,"location":"Trishaberg"}},{"attributes":{"name":"Mortimer Crona","age":22,"location":"Fort Lennyton"}},{"attributes":{"name":"Dr. Terrance Marks","age":34,"location":"South Lewisboro"}},{"attributes":{"name":"Lacy Herzog","age":30,"location":"South Stefaniechester"}},{"attributes":{"name":"Christy Torphy","age":34,"location":"West Lina"}},{"attributes":{"name":"Leo Armstrong","age":67,"location":"Castle Rock"}},{"attributes":{"name":"Hyman Spinka","age":19,"location":"Delano"}},{"attributes":{"name":"Ernest Reichel","age":72,"location":"Mitchellstad"}},{"attributes":{"name":"Margaret Schmitt","age":55,"location":"Fort Lauderdale"}},{"attributes":{"name":"Scarlett Wisoky","age":66,"location":"Omaha"}},{"attributes":{"name":"Christelle McDermott","age":27,"location":"West Jamaal"}},{"attributes":{"name":"Rosemary Botsford","age":23,"location":"Estherfield"}},{"attributes":{"name":"Darren Olson","age":76,"location":"North Corene"}},{"attributes":{"name":"Jameson Conn","age":71,"location":"Lake Queentown"}},{"attributes":{"name":"Silvia Stark","age":18,"location":"Fort Eliza"}},{"attributes":{"name":"Mrs. Eloise Christiansen","age":35,"location":"Delray Beach"}},{"attributes":{"name":"Toni Schumm","age":79,"location":"Jamarland"}},{"attributes":{"name":"Mr. Dale Gerlach","age":72,"location":"Estellaborough"}},{"attributes":{"name":"Miss Amir Cassin","age":50,"location":"South Kaleb"}},{"attributes":{"name":"Tonya Bosco","age":59,"location":"Perryfort"}},{"attributes":{"name":"Lora Huel","age":28,"location":"Port Juanafort"}},{"attributes":{"name":"Victoria McLaughlin","age":66,"location":"East Alejandrin"}},{"attributes":{"name":"Bryan Lebsack","age":28,"location":"Glendale"}},{"attributes":{"name":"Dr. Antonio Sauer DVM","age":74,"location":"Homenickchester"}},{"attributes":{"name":"Rose Ritchie","age":76,"location":"Norman"}},{"attributes":{"name":"Mr. Aniyah Schmidt","age":61,"location":"New Clifton"}},{"attributes":{"name":"Paula Hagenes","age":61,"location":"Evanston"}},{"attributes":{"name":"Clarence Runolfsson","age":50,"location":"Jaleelhaven"}},{"attributes":{"name":"Lew Jerde","age":42,"location":"Bruenhaven"}},{"attributes":{"name":"Dr. Gregg Yost","age":41,"location":"Flagstaff"}},{"attributes":{"name":"Joey Wintheiser V","age":19,"location":"Fort Wayne"}},{"attributes":{"name":"Guy Bernhard","age":43,"location":"South Rodrickborough"}},{"attributes":{"name":"Franklin Mitchell","age":75,"location":"Abeberg"}},{"attributes":{"name":"Jermaine Gorczany","age":27,"location":"Port Trent"}},{"attributes":{"name":"Dr. Patrick Parisian","age":68,"location":"Marksmouth"}},{"attributes":{"name":"Beryl Smith","age":42,"location":"Horacemouth"}},{"attributes":{"name":"Dale Larkin","age":63,"location":"Port Emmanuel"}},{"attributes":{"name":"Rolando Torp-Lehner V","age":23,"location":"New Jazmyneside"}},{"attributes":{"name":"Armand Cronin","age":49,"location":"Jaimetown"}},{"attributes":{"name":"Dr. Gust Kuphal","age":47,"location":"West Camrenport"}},{"attributes":{"name":"Eula Bergstrom","age":26,"location":"Lake Schuyler"}},{"attributes":{"name":"Una West","age":29,"location":"Kamrynborough"}},{"attributes":{"name":"Dianne Marquardt","age":23,"location":"Darefort"}},{"attributes":{"name":"Marina Altenwerth","age":76,"location":"Davis"}},{"attributes":{"name":"Helen Willms","age":49,"location":"Greenfelderview"}},{"attributes":{"name":"Karla Hackett","age":31,"location":"O'Reillyport"}},{"attributes":{"name":"Minnie Doyle","age":50,"location":"Carrollview"}},{"attributes":{"name":"Miss Marcia Lueilwitz Jr.","age":71,"location":"Henrietteburgh"}},{"attributes":{"name":"Donald Turcotte","age":73,"location":"Fort Julio"}},{"attributes":{"name":"Milton Rogahn","age":45,"location":"Greeley"}},{"attributes":{"name":"Destin Yundt-Rohan","age":66,"location":"Wardville"}},{"attributes":{"name":"Mr. Darrin Goldner-Von","age":33,"location":"Weymouth Town"}},{"attributes":{"name":"Darren Deckow","age":31,"location":"South Tyrelport"}},{"attributes":{"name":"Shirley McDermott-Bayer","age":53,"location":"Port Howellport"}},{"attributes":{"name":"Kelli Sauer","age":32,"location":"Dimitricester"}},{"attributes":{"name":"Cristal Wintheiser","age":59,"location":"Haverhill"}},{"attributes":{"name":"Amaya Abshire","age":61,"location":"Port Walton"}},{"attributes":{"name":"Jamel Hintz","age":57,"location":"Eloisamouth"}},{"attributes":{"name":"Bob DuBuque","age":31,"location":"Fountain Valley"}},{"attributes":{"name":"Pascale Pacocha-Zboncak","age":29,"location":"Port Blazecester"}},{"attributes":{"name":"Lauretta Senger","age":41,"location":"West Miaville"}},{"attributes":{"name":"Jerald Wolf","age":30,"location":"Mittiemouth"}},{"attributes":{"name":"Sharon Mueller","age":23,"location":"Fort Frederik"}},{"attributes":{"name":"Dr. Noel Bechtelar","age":32,"location":"West Janessaville"}},{"attributes":{"name":"Casey Schamberger MD","age":75,"location":"Rubyberg"}},{"attributes":{"name":"Ms. Monroe O'Conner","age":31,"location":"West Sacramento"}},{"attributes":{"name":"Landen Kunze","age":32,"location":"Fort Murlstead"}},{"attributes":{"name":"Patty Carter","age":53,"location":"Handfield"}},{"attributes":{"name":"Terrance Torp","age":60,"location":"Gibsonchester"}},{"attributes":{"name":"Estelle Sanford Jr.","age":51,"location":"Gradyborough"}},{"attributes":{"name":"Julie Considine","age":29,"location":"Annandale"}},{"attributes":{"name":"Norma Ledner","age":38,"location":"Rolfsonview"}},{"attributes":{"name":"Freddie Goldner","age":62,"location":"Fort Cruzland"}},{"attributes":{"name":"Lorraine Morar","age":65,"location":"Freedafield"}},{"attributes":{"name":"Marc Dickinson","age":41,"location":"Westworth"}},{"attributes":{"name":"Anika Pfannerstill","age":53,"location":"Danielton"}},{"attributes":{"name":"Dr. Tanya O'Connell","age":26,"location":"Quincy"}},{"attributes":{"name":"Susanna O'Conner","age":71,"location":"South Bellefort"}},{"attributes":{"name":"Gerardo Harvey","age":67,"location":"East Delphia"}},{"attributes":{"name":"Mrs. Jamie Hessel","age":52,"location":"West Wileyshire"}},{"attributes":{"name":"Spencer Jakubowski","age":32,"location":"Inglewood"}},{"attributes":{"name":"Cortney McLaughlin","age":80,"location":"West Maegan"}},{"attributes":{"name":"Minnie Kuhic","age":49,"location":"Borertown"}},{"attributes":{"name":"Edwin Stark","age":63,"location":"Metzland"}},{"attributes":{"name":"Lillian Ondricka","age":75,"location":"Pearl City"}},{"attributes":{"name":"Tremayne Hackett","age":19,"location":"Garland"}},{"attributes":{"name":"Amelie Nicolas","age":75,"location":"South Eladio"}},{"attributes":{"name":"Ms. Deonte Koch II","age":45,"location":"Jerdeburgh"}},{"attributes":{"name":"Davin West","age":28,"location":"West Emorytown"}},{"attributes":{"name":"Maye Berge Jr.","age":27,"location":"Menifee"}},{"attributes":{"name":"Benny Beatty","age":23,"location":"North Neoma"}},{"attributes":{"name":"Thomas Labadie Sr.","age":42,"location":"West Birdie"}},{"attributes":{"name":"Kristi Larkin","age":26,"location":"Homestead"}},{"attributes":{"name":"Shawn Jacobson","age":55,"location":"Port Edwin"}},{"attributes":{"name":"Elnora Schuppe","age":18,"location":"Torphyton"}},{"attributes":{"name":"Rodney Glover","age":40,"location":"North Denis"}},{"attributes":{"name":"Calvin Olson II","age":36,"location":"West Seneca"}},{"attributes":{"name":"Gino Von","age":32,"location":"Shoreline"}},{"attributes":{"name":"Edna Moen","age":21,"location":"Hartmannhaven"}},{"attributes":{"name":"Mrs. Geneva Jerde","age":69,"location":"Murazikcester"}},{"attributes":{"name":"Margaret Keeling DVM","age":42,"location":"South Fernandohaven"}},{"attributes":{"name":"Davin Bradtke","age":60,"location":"New Leslie"}},{"attributes":{"name":"Roger Gulgowski","age":21,"location":"Temple"}},{"attributes":{"name":"Jonathon Renner III","age":27,"location":"Bonita Springs"}},{"attributes":{"name":"Ms. Jaleel Hane","age":32,"location":"Fort Raheemstead"}},{"attributes":{"name":"Robert Bernhard","age":38,"location":"Pearland"}},{"attributes":{"name":"Dr. Kim Kuphal","age":75,"location":"Vickyside"}},{"attributes":{"name":"Reginald Watsica","age":19,"location":"Lake Dallin"}},{"attributes":{"name":"Darrel Volkman","age":34,"location":"Boganborough"}},{"attributes":{"name":"Precious Schinner V","age":67,"location":"New Guiseppeton"}},{"attributes":{"name":"Kianna Bednar","age":22,"location":"Denver"}},{"attributes":{"name":"Dr. Keyshawn Ryan","age":77,"location":"Deltona"}},{"attributes":{"name":"Beaulah Fahey PhD","age":20,"location":"Jacksonville"}},{"attributes":{"name":"Amari Konopelski","age":48,"location":"South Icie"}},{"attributes":{"name":"Domingo Hessel","age":59,"location":"Passaic"}},{"attributes":{"name":"Melyna Smitham","age":30,"location":"Fort Geovany"}},{"attributes":{"name":"Jo Kulas V","age":77,"location":"Walkerland"}},{"attributes":{"name":"Kristine Shanahan","age":73,"location":"New Candelarioworth"}},{"attributes":{"name":"Trevion Murphy","age":47,"location":"Lake Genoveva"}},{"attributes":{"name":"Martha Witting","age":80,"location":"North Hattieboro"}},{"attributes":{"name":"Mindy Rath","age":47,"location":"Oakland Park"}},{"attributes":{"name":"Rex Watsica","age":22,"location":"Leonelworth"}},{"attributes":{"name":"Clark Metz","age":49,"location":"Rueckerhaven"}},{"attributes":{"name":"Clifford Nikolaus","age":32,"location":"New Eulah"}},{"attributes":{"name":"Rachel Murphy-Blanda","age":64,"location":"Cambridge"}},{"attributes":{"name":"Fred Bergstrom","age":45,"location":"Vivianborough"}},{"attributes":{"name":"Mrs. Christine Rice","age":74,"location":"New Brendon"}},{"attributes":{"name":"Cathy Casper","age":39,"location":"East Esta"}},{"attributes":{"name":"Harry Kreiger","age":69,"location":"Manteborough"}},{"attributes":{"name":"Clifton Littel","age":55,"location":"North Chrisborough"}},{"attributes":{"name":"Mr. Eleanora Dickinson","age":25,"location":"Issacfurt"}},{"attributes":{"name":"Kurt Aufderhar-Boyer II","age":23,"location":"Santa Monica"}},{"attributes":{"name":"Lola Hand MD","age":65,"location":"North Darlenechester"}},{"attributes":{"name":"Ricardo Schultz Jr.","age":18,"location":"Visalia"}},{"attributes":{"name":"Liam Keebler","age":59,"location":"Peabody"}},{"attributes":{"name":"Debra Raynor","age":78,"location":"New Jo"}},{"attributes":{"name":"Cecelia Anderson","age":61,"location":"Sunrise Manor"}},{"attributes":{"name":"Mrs. Josephine Jenkins IV","age":48,"location":"Charlottesville"}},{"attributes":{"name":"Jody Williamson","age":31,"location":"Willisfort"}},{"attributes":{"name":"Samir Hammes","age":75,"location":"New Jennieborough"}},{"attributes":{"name":"Brendan Erdman","age":79,"location":"South Manuela"}},{"attributes":{"name":"Wilmer Bashirian","age":75,"location":"Emiliocester"}},{"attributes":{"name":"Doris Little","age":72,"location":"Lake Angelita"}},{"attributes":{"name":"Martina Zboncak","age":29,"location":"Ameliafurt"}},{"attributes":{"name":"Simon Block","age":78,"location":"Casa Grande"}},{"attributes":{"name":"Marilyn Klein","age":78,"location":"South Camdenstad"}},{"attributes":{"name":"Carmel Grady","age":21,"location":"Leonoraside"}},{"attributes":{"name":"Paolo Stroman","age":74,"location":"Fort Boydcester"}},{"attributes":{"name":"Bettye Bechtelar","age":64,"location":"Everett"}},{"attributes":{"name":"Cordelia Wunsch","age":64,"location":"Braunburgh"}},{"attributes":{"name":"Joannie Stroman","age":75,"location":"West Herthahaven"}},{"attributes":{"name":"Arianna Volkman","age":20,"location":"Santa Maria"}},{"attributes":{"name":"Christie Berge","age":40,"location":"Port Burley"}},{"attributes":{"name":"Eduardo Jacobson","age":68,"location":"Bayerbury"}},{"attributes":{"name":"Jillian Weimann","age":31,"location":"Lexishire"}},{"attributes":{"name":"Lila Parker","age":54,"location":"McClurefort"}},{"attributes":{"name":"Brenda Mitchell","age":64,"location":"Fort Sibylview"}},{"attributes":{"name":"Casey Wilkinson","age":52,"location":"North Shyannbury"}},{"attributes":{"name":"Charlotte Boyer","age":20,"location":"Boca Raton"}},{"attributes":{"name":"Sigrid Dietrich","age":40,"location":"Colincester"}},{"attributes":{"name":"Wilma Schuppe","age":70,"location":"New Keegan"}},{"attributes":{"name":"Ms. Otilia Tillman","age":71,"location":"New Cornell"}},{"attributes":{"name":"Leonard Cassin","age":47,"location":"Port Carolynburgh"}},{"attributes":{"name":"Aileen Rohan","age":42,"location":"New Nikita"}},{"attributes":{"name":"Ms. Gerardo Weimann","age":69,"location":"North Charleston"}},{"attributes":{"name":"Myrtle Hartmann","age":74,"location":"Shaynastead"}},{"attributes":{"name":"Arlie Buckridge","age":55,"location":"South Bryana"}},{"attributes":{"name":"Rene Bednar","age":44,"location":"Dominiqueworth"}},{"attributes":{"name":"Neil Wisozk","age":22,"location":"West Kaydenstad"}},{"attributes":{"name":"Presley Beatty","age":71,"location":"Gavincester"}},{"attributes":{"name":"Amari Kiehn","age":73,"location":"Spokane"}},{"attributes":{"name":"Sarah Yost","age":69,"location":"Glenview"}},{"attributes":{"name":"Katherine Kassulke","age":73,"location":"Fort Bethel"}},{"attributes":{"name":"Kari Gulgowski","age":38,"location":"Farmington"}},{"attributes":{"name":"Janet Klocko","age":79,"location":"O'Konchester"}},{"attributes":{"name":"Devin Barton","age":49,"location":"Mariahhaven"}},{"attributes":{"name":"Elijah Carter","age":65,"location":"South Roosevelt"}},{"attributes":{"name":"Elsie Towne","age":28,"location":"Stuartland"}},{"attributes":{"name":"Lorene Ullrich PhD","age":58,"location":"East Louveniastead"}},{"attributes":{"name":"Kendra Conroy","age":18,"location":"Alhambra"}},{"attributes":{"name":"Eusebio Bruen","age":26,"location":"Devinfield"}},{"attributes":{"name":"Andre Hickle","age":35,"location":"Belleview"}},{"attributes":{"name":"Henriette Stroman","age":30,"location":"Lake Wilfridchester"}},{"attributes":{"name":"Jim Schiller","age":72,"location":"Cyrilport"}},{"attributes":{"name":"Ms. Duane Hayes","age":29,"location":"New Neilton"}},{"attributes":{"name":"Scotty Kuhlman","age":64,"location":"Ewellstad"}},{"attributes":{"name":"Roland Stehr","age":18,"location":"Demondstead"}},{"attributes":{"name":"Margie Haley","age":80,"location":"West Luther"}},{"attributes":{"name":"Dr. Kirk Turner","age":42,"location":"Hoytland"}},{"attributes":{"name":"Wiley Cruickshank","age":49,"location":"North Eviecester"}},{"attributes":{"name":"Grant Cole","age":79,"location":"Tressietown"}},{"attributes":{"name":"Vicki Conroy","age":38,"location":"Sauerstad"}},{"attributes":{"name":"Philip Klein","age":33,"location":"Cordiamouth"}},{"attributes":{"name":"Blake Boyle","age":73,"location":"Funktown"}},{"attributes":{"name":"Faustino Kessler","age":72,"location":"West Ryleybury"}},{"attributes":{"name":"Jaida Grimes","age":39,"location":"Elroyside"}},{"attributes":{"name":"Marc Hettinger","age":78,"location":"Herzogshire"}},{"attributes":{"name":"Johnpaul Koepp","age":38,"location":"Fort Eulah"}},{"attributes":{"name":"Schuyler Smitham","age":23,"location":"Fort Herminiofield"}},{"attributes":{"name":"Kenyatta Funk IV","age":28,"location":"Blockfort"}},{"attributes":{"name":"Jamie Schneider","age":26,"location":"Dunwoody"}},{"attributes":{"name":"Chad Emmerich","age":77,"location":"Metztown"}},{"attributes":{"name":"Dangelo Raynor","age":58,"location":"Jamaaltown"}},{"attributes":{"name":"Trystan Nitzsche","age":42,"location":"Abilene"}},{"attributes":{"name":"Casandra Sawayn","age":57,"location":"Alekfurt"}},{"attributes":{"name":"Erika Dibbert V","age":43,"location":"Port Franciscofurt"}},{"attributes":{"name":"Mr. Melvina Bechtelar","age":64,"location":"Lindhaven"}},{"attributes":{"name":"Harry Frami","age":76,"location":"Danville"}},{"attributes":{"name":"Everett Olson","age":50,"location":"Lake Bianka"}},{"attributes":{"name":"Jacquelyn Lynch","age":70,"location":"Abdielview"}},{"attributes":{"name":"Dana Heathcote II","age":30,"location":"Jaydonshire"}},{"attributes":{"name":"Alberto Douglas","age":32,"location":"Alameda"}},{"attributes":{"name":"Felipe Morar","age":22,"location":"Orange"}},{"attributes":{"name":"Al Osinski","age":57,"location":"Lake Weston"}},{"attributes":{"name":"Timmothy Hills V","age":34,"location":"Lake Grace"}},{"attributes":{"name":"Cathy Heathcote","age":33,"location":"Carson"}},{"attributes":{"name":"Jeremy Kihn","age":78,"location":"East Neal"}},{"attributes":{"name":"Mrs. Brenda Goyette","age":18,"location":"New Sammieport"}},{"attributes":{"name":"Dr. Regina Ferry","age":23,"location":"Omaha"}},{"attributes":{"name":"Patsy Medhurst III","age":72,"location":"Lake Glenniecester"}},{"attributes":{"name":"Rusty Wolff","age":51,"location":"Watershaven"}},{"attributes":{"name":"Christy Greenholt","age":57,"location":"Fort Jazmyn"}},{"attributes":{"name":"Cody Kub","age":60,"location":"Fort Worth"}},{"attributes":{"name":"Efrain Walker","age":38,"location":"Jimmiechester"}},{"attributes":{"name":"Green Rice","age":63,"location":"Tysonport"}},{"attributes":{"name":"Ricky Towne","age":33,"location":"Lake Delilahshire"}},{"attributes":{"name":"Cordelia Wilkinson","age":26,"location":"Hilarioberg"}},{"attributes":{"name":"Eunice Kautzer MD","age":39,"location":"Azusa"}},{"attributes":{"name":"Lee Bergnaum DVM","age":37,"location":"Las Vegas"}},{"attributes":{"name":"Lucas Nader","age":57,"location":"Richardson"}},{"attributes":{"name":"Michale Pfannerstill","age":33,"location":"Walshside"}},{"attributes":{"name":"Harry Kutch Jr.","age":77,"location":"Ortizboro"}},{"attributes":{"name":"Leilani Runte","age":45,"location":"North Jarrodboro"}},{"attributes":{"name":"Mrs. Tabitha Considine","age":77,"location":"Schustermouth"}},{"attributes":{"name":"Moses Mohr DVM","age":73,"location":"Trantowberg"}},{"attributes":{"name":"Bradley Franecki","age":53,"location":"New Miaton"}},{"attributes":{"name":"Chaz Powlowski","age":45,"location":"Camronworth"}},{"attributes":{"name":"Everette VonRueden","age":30,"location":"South Dylan"}},{"attributes":{"name":"Larissa Christiansen","age":25,"location":"West Des Moines"}},{"attributes":{"name":"Dr. Cleo Gusikowski","age":43,"location":"Santosfield"}},{"attributes":{"name":"Brittany Langosh","age":28,"location":"North Lennyburgh"}},{"attributes":{"name":"Hazel Kertzmann","age":79,"location":"New Faustino"}},{"attributes":{"name":"Dr. Darlene Stoltenberg","age":77,"location":"West Alecbury"}},{"attributes":{"name":"Mr. Shane Cronin","age":74,"location":"Lake Gianni"}},{"attributes":{"name":"Aliya Waters","age":26,"location":"Chethaven"}},{"attributes":{"name":"Conrad Barrows","age":34,"location":"East Kara"}},{"attributes":{"name":"Annabelle Hirthe","age":23,"location":"Alessandroshire"}},{"attributes":{"name":"Daron Bosco","age":27,"location":"Port Katlynside"}},{"attributes":{"name":"Matthew Hoeger","age":77,"location":"New Yasmine"}},{"attributes":{"name":"Janet Cole II","age":49,"location":"Sanford"}},{"attributes":{"name":"Toby Parisian","age":32,"location":"Port Auroreborough"}},{"attributes":{"name":"Barrett Rodriguez Jr.","age":28,"location":"New Candido"}},{"attributes":{"name":"Eloise Schmitt V","age":63,"location":"Catonsville"}},{"attributes":{"name":"Kailyn Rolfson","age":35,"location":"Fort Gailborough"}},{"attributes":{"name":"Mrs. Lorene Carroll","age":55,"location":"Kenosha"}},{"attributes":{"name":"Jenifer Auer","age":36,"location":"Dayton"}},{"attributes":{"name":"Mr. Beulah Dietrich-Prosacco","age":41,"location":"Nicklausbury"}},{"attributes":{"name":"Clinton Green-Ward","age":52,"location":"Lake Normachester"}},{"attributes":{"name":"Cary Casper","age":27,"location":"Bodeberg"}},{"attributes":{"name":"Nicholas Huels","age":26,"location":"North Kody"}},{"attributes":{"name":"Roel Bruen","age":37,"location":"Palm Harbor"}},{"attributes":{"name":"Ramon Ernser","age":33,"location":"North Petra"}},{"attributes":{"name":"Thelma Rogahn DVM","age":42,"location":"East Katelin"}},{"attributes":{"name":"Ena Weimann I","age":76,"location":"Durganhaven"}},{"attributes":{"name":"Della Swaniawski Sr.","age":21,"location":"Davenport"}},{"attributes":{"name":"Jessie Ritchie","age":37,"location":"Starkside"}},{"attributes":{"name":"Ernesto Rowe","age":78,"location":"Bowie"}},{"attributes":{"name":"Jonathan Brown","age":32,"location":"South Terrillstad"}},{"attributes":{"name":"Anjali Renner DDS","age":53,"location":"Rockville"}},{"attributes":{"name":"Anais Gerhold","age":62,"location":"Wintheiserfurt"}},{"attributes":{"name":"Tom Lowe","age":46,"location":"Eileenfurt"}},{"attributes":{"name":"Penny Pagac","age":23,"location":"West Irma"}},{"attributes":{"name":"Mr. Brown Franey","age":78,"location":"Cielotown"}},{"attributes":{"name":"Vena Bergstrom","age":74,"location":"Ondrickafield"}},{"attributes":{"name":"Cameron Kovacek Sr.","age":51,"location":"Sonnyfurt"}},{"attributes":{"name":"Oma Purdy","age":49,"location":"New Jenafurt"}},{"attributes":{"name":"Lorenzo Sawayn II","age":28,"location":"Kristopherbury"}},{"attributes":{"name":"Destini Hand","age":37,"location":"Mount Vernon"}},{"attributes":{"name":"Ms. Tess Glover","age":42,"location":"Camilleboro"}},{"attributes":{"name":"Erma O'Reilly","age":30,"location":"Lake Skyefield"}},{"attributes":{"name":"Philip Rau-Barton","age":33,"location":"Olathe"}},{"attributes":{"name":"Dr. Myrtie Hartmann","age":37,"location":"North Adelbertview"}},{"attributes":{"name":"Aglae Stoltenberg-Bogan DVM","age":18,"location":"Christshire"}},{"attributes":{"name":"William Littel","age":74,"location":"Jastmouth"}},{"attributes":{"name":"Barbara Emard","age":56,"location":"Luellastead"}},{"attributes":{"name":"Ian Gulgowski","age":35,"location":"Fort Budland"}},{"attributes":{"name":"Felix Howell-Franecki","age":40,"location":"Enterprise"}},{"attributes":{"name":"Craig Koepp IV","age":34,"location":"Bednarchester"}},{"attributes":{"name":"Darrel Klocko","age":20,"location":"Boscoport"}},{"attributes":{"name":"Juliet Rice","age":43,"location":"Schmidthaven"}},{"attributes":{"name":"Rhianna Jacobs","age":79,"location":"New Alfredastead"}},{"attributes":{"name":"Myrtice Lowe","age":34,"location":"Kalamazoo"}},{"attributes":{"name":"Dr. Carmela Nolan","age":59,"location":"West Carissa"}},{"attributes":{"name":"Abigail Wiegand","age":40,"location":"Philadelphia"}},{"attributes":{"name":"Miller Bins","age":55,"location":"New Austin"}},{"attributes":{"name":"Imogene Hoppe","age":77,"location":"Ginoberg"}},{"attributes":{"name":"Kristopher Altenwerth","age":38,"location":"Christiansenfield"}},{"attributes":{"name":"Tremayne Oberbrunner","age":44,"location":"West Jasper"}},{"attributes":{"name":"Megan Feeney","age":79,"location":"Newellville"}},{"attributes":{"name":"Mrs. Mathilde Kessler","age":64,"location":"Chaunceyside"}},{"attributes":{"name":"Stewart Jones","age":70,"location":"Johnstonton"}},{"attributes":{"name":"Deron Cruickshank","age":61,"location":"Nicolaston"}},{"attributes":{"name":"Delbert Lowe","age":75,"location":"Port Keltonbury"}},{"attributes":{"name":"Lee Moore","age":71,"location":"North Rudyberg"}},{"attributes":{"name":"Cindy Schultz","age":68,"location":"Lake Jed"}},{"attributes":{"name":"Felicity Lebsack","age":20,"location":"New Kaycee"}},{"attributes":{"name":"Lyda Hirthe","age":74,"location":"Harrystead"}},{"attributes":{"name":"Jeffery Hilll","age":49,"location":"Reillyton"}},{"attributes":{"name":"Marcus Rice","age":72,"location":"Lake Millerstead"}},{"attributes":{"name":"Laverne Torp","age":25,"location":"South Antonefurt"}},{"attributes":{"name":"Alycia Cartwright DDS","age":51,"location":"Fort Janet"}},{"attributes":{"name":"Marlon Schaden","age":62,"location":"East Chelsiestad"}},{"attributes":{"name":"Noe Cummings","age":80,"location":"South Elyssatown"}},{"attributes":{"name":"Ms. Violet Schoen","age":52,"location":"New Bellestad"}},{"attributes":{"name":"Mr. Billy Robel IV","age":43,"location":"East Wendy"}},{"attributes":{"name":"Brenden Huel-Kub","age":37,"location":"Karinaville"}},{"attributes":{"name":"Dr. Jamie Marvin","age":25,"location":"North Melyssaside"}},{"attributes":{"name":"Dr. Earnest Steuber","age":39,"location":"Fort Orastead"}},{"attributes":{"name":"Fermin Nader","age":60,"location":"Port Devontechester"}},{"attributes":{"name":"Charlotte O'Hara","age":43,"location":"Perth Amboy"}},{"attributes":{"name":"Danielle Lakin-Douglas","age":25,"location":"North Fayside"}},{"attributes":{"name":"Aracely Collier","age":78,"location":"Fort Rickyfurt"}},{"attributes":{"name":"Dr. Ben Dach","age":32,"location":"Littlechester"}},{"attributes":{"name":"Junior Berge Jr.","age":52,"location":"Fort Kaelyn"}},{"attributes":{"name":"Noah McLaughlin","age":36,"location":"Conroyside"}},{"attributes":{"name":"Amy Cummerata","age":35,"location":"Port Brennanworth"}},{"attributes":{"name":"Michael Spencer","age":64,"location":"Berkeley"}},{"attributes":{"name":"Mrs. Isac Tillman","age":59,"location":"Mayaguez"}},{"attributes":{"name":"Pete Bauch","age":80,"location":"Alannabury"}},{"attributes":{"name":"Hilda Weber","age":60,"location":"Thaddeustown"}},{"attributes":{"name":"Lisandro Emmerich IV","age":37,"location":"Manhattan"}},{"attributes":{"name":"Kamren Dare","age":20,"location":"Los Angeles"}},{"attributes":{"name":"Stanford Botsford","age":30,"location":"South Abbie"}},{"attributes":{"name":"Emilio Simonis","age":50,"location":"Lake Marcelburgh"}},{"attributes":{"name":"Ernest Rosenbaum","age":66,"location":"West Russell"}},{"attributes":{"name":"Ahmad Schiller","age":78,"location":"Carleyworth"}},{"attributes":{"name":"Lloyd Leannon-Nicolas","age":76,"location":"West Lafayette"}},{"attributes":{"name":"Marsha Wilkinson","age":32,"location":"Zulaufville"}},{"attributes":{"name":"Miss Cordia MacGyver","age":62,"location":"O'Connerside"}},{"attributes":{"name":"Eva Hackett-Dach","age":48,"location":"Redding"}},{"attributes":{"name":"Angel Bins PhD","age":50,"location":"Fort Demetriuschester"}},{"attributes":{"name":"Hilton Ledner","age":28,"location":"East Myleneton"}},{"attributes":{"name":"Eunice Bruen","age":69,"location":"West Ariannacester"}},{"attributes":{"name":"Keith Walsh","age":41,"location":"Olsonport"}},{"attributes":{"name":"Christopher King","age":25,"location":"Legrosfurt"}},{"attributes":{"name":"Marguerite Baumbach","age":79,"location":"Fort Khalil"}},{"attributes":{"name":"Nicole Wisoky","age":30,"location":"Arthurchester"}},{"attributes":{"name":"Danny Jacobson-Nicolas","age":75,"location":"Torpborough"}},{"attributes":{"name":"Robin Moore","age":19,"location":"Lake Evalyn"}},{"attributes":{"name":"Oscar O'Keefe","age":21,"location":"Cristchester"}},{"attributes":{"name":"Isidro Keeling","age":80,"location":"Bashirianborough"}},{"attributes":{"name":"Lee Von","age":68,"location":"Towneview"}},{"attributes":{"name":"Dr. Gerda Boyle","age":64,"location":"Port Alec"}},{"attributes":{"name":"Maxine Rolfson","age":48,"location":"Meridian"}},{"attributes":{"name":"Justin Langworth II","age":18,"location":"Lacey"}},{"attributes":{"name":"Otto Cassin I","age":61,"location":"Koepphaven"}},{"attributes":{"name":"Nathaniel Rice","age":73,"location":"Oro Valley"}},{"attributes":{"name":"Clarence McClure","age":42,"location":"Jordaneside"}},{"attributes":{"name":"Carol Okuneva Sr.","age":77,"location":"West Jacquelynton"}},{"attributes":{"name":"Mr. Luke Toy","age":28,"location":"Lee's Summit"}},{"attributes":{"name":"Florence Jast","age":61,"location":"West Darioworth"}},{"attributes":{"name":"Cristal Jacobi","age":79,"location":"Hillston"}},{"attributes":{"name":"Paula Considine","age":61,"location":"South Consuelofort"}},{"attributes":{"name":"Myrtle Jerde","age":38,"location":"Mount Vernon"}},{"attributes":{"name":"Selena Mayert","age":65,"location":"Lake Asafort"}},{"attributes":{"name":"Israel Schowalter","age":66,"location":"East Omer"}},{"attributes":{"name":"Miss Claude Muller","age":55,"location":"St. Clair Shores"}},{"attributes":{"name":"Rafael Weissnat","age":59,"location":"Breannahaven"}},{"attributes":{"name":"Anabelle Friesen","age":46,"location":"North Danykachester"}},{"attributes":{"name":"Lucie Kulas","age":50,"location":"New Carolannehaven"}},{"attributes":{"name":"Mercedes Upton","age":68,"location":"Karelleside"}},{"attributes":{"name":"Jamison Gutmann","age":73,"location":"West Abdiel"}},{"attributes":{"name":"Pedro Stehr II","age":51,"location":"New Guadalupe"}},{"attributes":{"name":"Rudy Waters PhD","age":69,"location":"New Meaganborough"}},{"attributes":{"name":"Dr. Erin Weimann","age":36,"location":"East Mckenziefield"}},{"attributes":{"name":"Manuel Frami","age":35,"location":"Hamillshire"}},{"attributes":{"name":"Jarvis Renner","age":57,"location":"Aloha"}},{"attributes":{"name":"Salvatore Ruecker","age":38,"location":"Port Elda"}},{"attributes":{"name":"Douglas McKenzie","age":41,"location":"Kubfort"}},{"attributes":{"name":"Elsa Waelchi V","age":27,"location":"Hilllton"}},{"attributes":{"name":"Elias Berge-Ward","age":46,"location":"Berniecefield"}},{"attributes":{"name":"Sabina Yundt","age":72,"location":"Ziemebury"}},{"attributes":{"name":"Kaelyn Cummerata","age":28,"location":"Fort Alexandrine"}},{"attributes":{"name":"Ms. Felipe Windler","age":67,"location":"North Venacester"}},{"attributes":{"name":"Janet Gutmann","age":59,"location":"Ziemestead"}},{"attributes":{"name":"Miss Lonzo Prosacco","age":32,"location":"New Anais"}},{"attributes":{"name":"Wilbert Connelly IV","age":78,"location":"Kaelynton"}},{"attributes":{"name":"Layla Hoeger","age":60,"location":"Boyerstead"}},{"attributes":{"name":"Guillermo Daniel","age":45,"location":"Wehnerfurt"}},{"attributes":{"name":"Gregg Klocko","age":59,"location":"Vancouver"}},{"attributes":{"name":"Lesley Schumm I","age":70,"location":"Vandervortchester"}},{"attributes":{"name":"Dean Roberts","age":24,"location":"Port Whitney"}},{"attributes":{"name":"Abigayle Bogan V","age":37,"location":"Methuen Town"}},{"attributes":{"name":"Yasmeen Schinner","age":59,"location":"North Bethport"}},{"attributes":{"name":"Viola Mills","age":31,"location":"Haneburgh"}},{"attributes":{"name":"Adolphus Douglas","age":65,"location":"Lowefurt"}},{"attributes":{"name":"Max Tromp","age":72,"location":"Meggietown"}},{"attributes":{"name":"Mr. Ellsworth Auer","age":20,"location":"Lake Emmett"}},{"attributes":{"name":"Roy Maggio-Goyette","age":25,"location":"Palm Bay"}},{"attributes":{"name":"Mable Torp","age":72,"location":"Port Briamouth"}},{"attributes":{"name":"Zita Cormier","age":35,"location":"Bradlyfort"}},{"attributes":{"name":"Toby Schultz","age":61,"location":"Port Keaton"}},{"attributes":{"name":"Nancy Welch DDS","age":65,"location":"Yvonneborough"}},{"attributes":{"name":"Dianna Kassulke","age":49,"location":"East Dayton"}},{"attributes":{"name":"Dominic Tremblay","age":28,"location":"Donnellyfurt"}},{"attributes":{"name":"Percival Veum","age":48,"location":"Brentwood"}},{"attributes":{"name":"Roger Padberg III","age":77,"location":"Dellland"}},{"attributes":{"name":"Doug Tromp","age":41,"location":"Missourifort"}},{"attributes":{"name":"Stacy Lueilwitz DVM","age":47,"location":"Mckenziemouth"}},{"attributes":{"name":"Lamont Hoppe","age":46,"location":"North Robertfield"}},{"attributes":{"name":"Marguerite Littel","age":31,"location":"Maxwellfurt"}},{"attributes":{"name":"Leone Turcotte MD","age":25,"location":"East Emil"}},{"attributes":{"name":"Bernard Wuckert II","age":26,"location":"Milford"}},{"attributes":{"name":"Kenny Keeling","age":60,"location":"Ocala"}},{"attributes":{"name":"Edmond McLaughlin","age":49,"location":"Nolanchester"}},{"attributes":{"name":"Rudolph Leannon PhD","age":70,"location":"Kovacekburgh"}},{"attributes":{"name":"Dr. Efren Kautzer","age":42,"location":"Lacey"}},{"attributes":{"name":"Justice Carroll","age":71,"location":"Amaliaberg"}},{"attributes":{"name":"Dr. Delphine Maggio","age":22,"location":"Port Hermanncester"}},{"attributes":{"name":"Hilton Spencer","age":47,"location":"Sengercester"}},{"attributes":{"name":"Amie Walsh","age":31,"location":"Fort Vilma"}},{"attributes":{"name":"Lauren Schinner Jr.","age":20,"location":"Ephraimbury"}},{"attributes":{"name":"Sonya Cole","age":44,"location":"South Antoneport"}},{"attributes":{"name":"Mary Nicolas","age":52,"location":"Kertzmannville"}},{"attributes":{"name":"Elaine Beier","age":66,"location":"Santa Rosa"}},{"attributes":{"name":"Arlene Murray","age":37,"location":"Casa Grande"}},{"attributes":{"name":"Allison Keebler","age":37,"location":"Centreville"}},{"attributes":{"name":"Walter Brown","age":19,"location":"Parkershire"}},{"attributes":{"name":"Irvin Greenholt","age":28,"location":"San Marcos"}},{"attributes":{"name":"Laurence Ebert","age":24,"location":"West Palm Beach"}},{"attributes":{"name":"Antoinette Marks","age":18,"location":"New Mozellport"}},{"attributes":{"name":"Dominic Gleason","age":75,"location":"Feltonport"}},{"attributes":{"name":"Luther Mante-D'Amore","age":22,"location":"East Elinor"}},{"attributes":{"name":"Jarvis Pollich","age":47,"location":"Nolanchester"}},{"attributes":{"name":"Pietro Schneider","age":53,"location":"Vista"}},{"attributes":{"name":"Kaia Larkin","age":28,"location":"Fort Nickland"}},{"attributes":{"name":"Patsy Langworth","age":52,"location":"Jefferson City"}},{"attributes":{"name":"Mr. Irving Kshlerin","age":56,"location":"Luellafurt"}},{"attributes":{"name":"Johnathon Hegmann","age":78,"location":"Reannaborough"}},{"attributes":{"name":"Cole Harvey","age":22,"location":"Fort Luther"}},{"attributes":{"name":"Mark Williamson","age":53,"location":"Port Tremayneview"}},{"attributes":{"name":"Emie Predovic","age":78,"location":"Muncie"}},{"attributes":{"name":"Steve Prosacco","age":27,"location":"West Jessestad"}},{"attributes":{"name":"Tanya Mitchell","age":46,"location":"Rohanside"}},{"attributes":{"name":"Julie Marks","age":63,"location":"Stancester"}},{"attributes":{"name":"Wilber Goodwin","age":32,"location":"Marysville"}},{"attributes":{"name":"Osbaldo Wilderman","age":43,"location":"South Malachifort"}},{"attributes":{"name":"Madison Roberts DVM","age":59,"location":"Port Chandler"}},{"attributes":{"name":"Annalise Stamm","age":59,"location":"Colton"}},{"attributes":{"name":"Timothy Kessler","age":24,"location":"Zemlakworth"}},{"attributes":{"name":"Jan O'Keefe","age":33,"location":"Manhattan"}},{"attributes":{"name":"Felix Wolf","age":31,"location":"Lake Marian"}},{"attributes":{"name":"Ruth Bogan","age":40,"location":"Laneyborough"}},{"attributes":{"name":"Maverick Wolf-Conroy DVM","age":29,"location":"Lake Krystalhaven"}},{"attributes":{"name":"Jocelyn Stark","age":67,"location":"South Jonasmouth"}},{"attributes":{"name":"Antonina Breitenberg","age":22,"location":"Rockford"}},{"attributes":{"name":"Sabrina Ruecker MD","age":52,"location":"Koeppton"}},{"attributes":{"name":"Alfred Dibbert","age":63,"location":"Clintontown"}},{"attributes":{"name":"Miss Rene Turner IV","age":74,"location":"Gislasonland"}},{"attributes":{"name":"Reed Ziemann PhD","age":54,"location":"Port Jameyfort"}},{"attributes":{"name":"Betty Wuckert","age":74,"location":"West New York"}},{"attributes":{"name":"Dr. Nyasia Littel","age":77,"location":"Larrystead"}},{"attributes":{"name":"Kristopher Schneider","age":65,"location":"West Manuelastad"}},{"attributes":{"name":"Silvia Bednar","age":18,"location":"Millieton"}},{"attributes":{"name":"Blanche Kuhn","age":54,"location":"Broomfield"}},{"attributes":{"name":"Larue Blanda","age":32,"location":"West Medabury"}},{"attributes":{"name":"Mary Hand","age":25,"location":"Ullrichfurt"}},{"attributes":{"name":"Jordan Howell","age":28,"location":"Haneport"}},{"attributes":{"name":"Raul Lehner","age":37,"location":"Rosarioworth"}},{"attributes":{"name":"Carolyn Stamm III","age":74,"location":"Port Jazmyneworth"}},{"attributes":{"name":"Lynn Lesch","age":66,"location":"East Dwight"}},{"attributes":{"name":"Bobbie Lang","age":26,"location":"New Ladarius"}},{"attributes":{"name":"Heidi Flatley","age":37,"location":"East Mercedes"}},{"attributes":{"name":"Ms. Norma Bauch-Kohler","age":60,"location":"Ankundingbury"}},{"attributes":{"name":"Modesta Bernhard","age":46,"location":"Lawrence"}},{"attributes":{"name":"Rosalie Hagenes","age":47,"location":"Orvilleshire"}},{"attributes":{"name":"Carrie Collins MD","age":26,"location":"Ellieport"}},{"attributes":{"name":"Verla Bednar","age":65,"location":"East Scot"}},{"attributes":{"name":"Manuel Mraz","age":45,"location":"New Gunnerton"}},{"attributes":{"name":"Dwight Thompson PhD","age":50,"location":"South Trisha"}},{"attributes":{"name":"Maureen Heaney","age":61,"location":"Farmington Hills"}},{"attributes":{"name":"Dr. Edgar Schowalter-Becker I","age":49,"location":"New Sterlingcester"}},{"attributes":{"name":"Jon Padberg","age":28,"location":"Lake Henderson"}},{"attributes":{"name":"Carla Huels","age":69,"location":"Gleasonstad"}},{"attributes":{"name":"Carlos Gerlach","age":33,"location":"High Point"}},{"attributes":{"name":"Kirk Torp","age":57,"location":"Baytown"}},{"attributes":{"name":"Ralph Labadie","age":20,"location":"North Luisachester"}},{"attributes":{"name":"Dr. Jonathon Keeling","age":37,"location":"Cartwrightborough"}},{"attributes":{"name":"Mathias Bauch","age":19,"location":"Abbigailboro"}},{"attributes":{"name":"Dr. Darla Robel","age":28,"location":"West Anibal"}},{"attributes":{"name":"Jazlyn Schmeler","age":27,"location":"East Vern"}},{"attributes":{"name":"Virgil Ziemann","age":33,"location":"McLean"}},{"attributes":{"name":"Rozella Cummerata","age":68,"location":"South Frank"}},{"attributes":{"name":"Tanya Kris","age":65,"location":"Shoreline"}},{"attributes":{"name":"Kristina Mills","age":50,"location":"Lake Estebanburgh"}},{"attributes":{"name":"Luke Kuphal","age":80,"location":"South Frida"}},{"attributes":{"name":"Kerry Koss","age":27,"location":"Lake Maximilian"}},{"attributes":{"name":"Sean Stroman","age":44,"location":"Pollichstad"}},{"attributes":{"name":"Derrick Hansen","age":25,"location":"Raeganfield"}},{"attributes":{"name":"Dr. Stanton Pacocha III","age":18,"location":"Watsicafurt"}},{"attributes":{"name":"Hattie Jaskolski","age":55,"location":"Finnfort"}},{"attributes":{"name":"Mr. Cameron Kunze","age":25,"location":"Paucekshire"}},{"attributes":{"name":"Jody Dooley-Cremin","age":72,"location":"Lake Henri"}},{"attributes":{"name":"Jimmy Mraz","age":29,"location":"Eldridgeboro"}},{"attributes":{"name":"Sally Murphy","age":75,"location":"Petaluma"}},{"attributes":{"name":"Jenifer Dare","age":61,"location":"Franeckifort"}},{"attributes":{"name":"Clayton Pollich","age":67,"location":"New Kentoncester"}},{"attributes":{"name":"Micheal Schultz Sr.","age":23,"location":"Klinghaven"}},{"attributes":{"name":"Austen Kulas","age":70,"location":"Grantville"}},{"attributes":{"name":"Casey Connelly","age":39,"location":"East Velva"}},{"attributes":{"name":"Alexie Kuvalis","age":49,"location":"Tristianland"}},{"attributes":{"name":"Mr. Priscilla Wehner","age":75,"location":"Port Brian"}},{"attributes":{"name":"Amanda Ratke","age":56,"location":"South Vallieworth"}},{"attributes":{"name":"Joseph Senger","age":47,"location":"Port Stephany"}},{"attributes":{"name":"Dewitt Reichel","age":60,"location":"Fort Orie"}},{"attributes":{"name":"Vincenza Goldner","age":74,"location":"Fort Melody"}},{"attributes":{"name":"Carole Bins","age":69,"location":"West Imanistead"}},{"attributes":{"name":"Loren Grimes II","age":22,"location":"New Toby"}},{"attributes":{"name":"Peggy Flatley","age":64,"location":"Leuschketown"}},{"attributes":{"name":"Joy Turner","age":34,"location":"Port Magnuscester"}},{"attributes":{"name":"Walter Ferry","age":42,"location":"South Hillardtown"}},{"attributes":{"name":"Ted Cartwright","age":57,"location":"Beerboro"}},{"attributes":{"name":"Norma Koelpin","age":74,"location":"West Brettworth"}},{"attributes":{"name":"Dawn O'Kon","age":29,"location":"Cloydtown"}},{"attributes":{"name":"Frederick Ernser","age":38,"location":"Walkerberg"}},{"attributes":{"name":"Maximo Boehm","age":39,"location":"Lake Zelmaborough"}},{"attributes":{"name":"Elise Zulauf","age":54,"location":"South Jimmy"}},{"attributes":{"name":"Trevion Sauer","age":43,"location":"Wilson"}},{"attributes":{"name":"Stewart Feeney","age":59,"location":"Herzogside"}},{"attributes":{"name":"Darnell Tillman","age":77,"location":"North Imogeneborough"}},{"attributes":{"name":"Christina Schroeder","age":70,"location":"Fort Jaydenborough"}},{"attributes":{"name":"Tre Doyle","age":50,"location":"Fort Geovannyfurt"}},{"attributes":{"name":"Irma Spinka","age":57,"location":"College Station"}},{"attributes":{"name":"Devyn Klocko","age":70,"location":"Freidastad"}},{"attributes":{"name":"Flora Keeling","age":36,"location":"Fort Loriberg"}},{"attributes":{"name":"Luciano Prosacco","age":78,"location":"Langport"}},{"attributes":{"name":"Bruce Hammes","age":33,"location":"Dandreshire"}},{"attributes":{"name":"Dax Sporer","age":41,"location":"Spinkastad"}},{"attributes":{"name":"Frederick Miller","age":63,"location":"Lake Korey"}},{"attributes":{"name":"Krystel Murazik","age":18,"location":"Troy"}},{"attributes":{"name":"Alessandro Stroman","age":56,"location":"New Fidel"}},{"attributes":{"name":"Dr. Ricky Flatley IV","age":34,"location":"New Alexandrine"}},{"attributes":{"name":"Moises Nikolaus","age":74,"location":"Brakuschester"}},{"attributes":{"name":"Israel Strosin","age":49,"location":"East Hilario"}},{"attributes":{"name":"Darin Murphy","age":44,"location":"Greenholtberg"}},{"attributes":{"name":"Maryann Anderson","age":73,"location":"New Margareteside"}},{"attributes":{"name":"Laurie Fay Sr.","age":23,"location":"Ondrickastad"}},{"attributes":{"name":"Kelly Johnston","age":59,"location":"New Trechester"}},{"attributes":{"name":"Arvilla Donnelly","age":64,"location":"New Marjoryborough"}},{"attributes":{"name":"Gregory Haag","age":26,"location":"Gregside"}},{"attributes":{"name":"Claudia Zboncak-Muller","age":38,"location":"Leuschkestad"}},{"attributes":{"name":"Tim Hahn","age":28,"location":"South Diamondmouth"}},{"attributes":{"name":"Joseph Prohaska II","age":34,"location":"West Blaise"}},{"attributes":{"name":"Ms. Rachel Kreiger","age":22,"location":"Ontario"}},{"attributes":{"name":"Abraham Jerde","age":58,"location":"Oleland"}},{"attributes":{"name":"Lyle Raynor","age":36,"location":"Fargo"}},{"attributes":{"name":"Cathrine Murphy","age":65,"location":"Trantowtown"}},{"attributes":{"name":"Alia Windler","age":42,"location":"Fort Alexzander"}},{"attributes":{"name":"Pete McDermott","age":44,"location":"Lake Samara"}},{"attributes":{"name":"Ira Kovacek","age":48,"location":"Starkberg"}},{"attributes":{"name":"Dominic Weissnat-Robel","age":76,"location":"Herminiobury"}},{"attributes":{"name":"Arturo Welch","age":37,"location":"Lake Kadenfield"}},{"attributes":{"name":"Miss Chester Funk","age":26,"location":"East Garry"}},{"attributes":{"name":"Tina Christiansen","age":64,"location":"Port Dakota"}},{"attributes":{"name":"Dr. Davin Waters","age":77,"location":"Aloha"}},{"attributes":{"name":"Leticia Morissette","age":77,"location":"North Kennedy"}},{"attributes":{"name":"Johnnie Murazik","age":59,"location":"East Gerhard"}},{"attributes":{"name":"Dr. Jackie O'Keefe","age":45,"location":"Fort Gertrude"}},{"attributes":{"name":"Nicolas Willms","age":58,"location":"Warren"}},{"attributes":{"name":"Kellie Ryan","age":35,"location":"Dale City"}},{"attributes":{"name":"Dusty Kautzer","age":80,"location":"Kulaschester"}},{"attributes":{"name":"Ali Bosco","age":71,"location":"South Zulafield"}},{"attributes":{"name":"Lois Konopelski","age":65,"location":"Detroit"}},{"attributes":{"name":"Audrey Rosenbaum-Berge IV","age":35,"location":"St. Charles"}},{"attributes":{"name":"Mrs. Darrel Cummings-Haag","age":23,"location":"Ewellborough"}},{"attributes":{"name":"Brenda Haley","age":70,"location":"Kielmouth"}},{"attributes":{"name":"Angelica Padberg","age":34,"location":"Lake Kolby"}},{"attributes":{"name":"Zula O'Connell","age":24,"location":"Humbertoton"}},{"attributes":{"name":"Leon Lind","age":55,"location":"Albertton"}},{"attributes":{"name":"Danny Dach","age":24,"location":"South Raphaelport"}},{"attributes":{"name":"Jody Medhurst","age":20,"location":"Marielaburgh"}},{"attributes":{"name":"Colleen VonRueden","age":64,"location":"Kuhlmanfurt"}},{"attributes":{"name":"Nayeli Sauer PhD","age":35,"location":"Danielmouth"}},{"attributes":{"name":"Moses Hilpert-Parisian","age":41,"location":"Abernathyburgh"}},{"attributes":{"name":"Danielle Kiehn","age":64,"location":"Rodolfoberg"}},{"attributes":{"name":"August Bashirian-Fritsch","age":56,"location":"Beavercreek"}},{"attributes":{"name":"Mr. Jayme Wisozk","age":60,"location":"North Richland Hills"}},{"attributes":{"name":"Edmund Okuneva","age":73,"location":"Ankeny"}},{"attributes":{"name":"Loyce Mertz","age":62,"location":"South Tiannaton"}},{"attributes":{"name":"Trevor Parisian","age":45,"location":"Sethview"}},{"attributes":{"name":"Clayton Fisher","age":77,"location":"West Kailynland"}},{"attributes":{"name":"Ora Ernser","age":57,"location":"East Isac"}},{"attributes":{"name":"Mona Mayer-Rempel","age":28,"location":"New Jevonstad"}},{"attributes":{"name":"Fernando Reinger IV","age":23,"location":"Goodyear"}},{"attributes":{"name":"Roberto Sanford","age":52,"location":"Lake Elian"}},{"attributes":{"name":"Victor Hansen IV","age":42,"location":"East Turner"}},{"attributes":{"name":"Darwin Koelpin-Mayert V","age":61,"location":"West Preston"}},{"attributes":{"name":"Lilliana Dare DVM","age":53,"location":"West Weldon"}},{"attributes":{"name":"Ms. Ora Parisian","age":52,"location":"East Lowellhaven"}},{"attributes":{"name":"Wilfrid Swift-Altenwerth","age":77,"location":"West Shirleyview"}},{"attributes":{"name":"Sheri Gibson","age":77,"location":"New Leopoldland"}},{"attributes":{"name":"Nellie Nienow","age":33,"location":"Fort Providencicester"}},{"attributes":{"name":"Loretta Ledner","age":41,"location":"Earlineberg"}},{"attributes":{"name":"Dallas Mitchell","age":51,"location":"Boport"}},{"attributes":{"name":"Edmund Quitzon","age":69,"location":"Gloverchester"}},{"attributes":{"name":"Dan Schneider","age":23,"location":"New Irma"}},{"attributes":{"name":"Laila Glover III","age":48,"location":"South Grayceshire"}},{"attributes":{"name":"Dr. Myron Brakus","age":35,"location":"Denesikstead"}},{"attributes":{"name":"Addison Hegmann","age":28,"location":"Port Florineton"}},{"attributes":{"name":"Wendy Kling","age":43,"location":"North Clotilde"}},{"attributes":{"name":"Mr. Dennis Nitzsche","age":37,"location":"Jodyfurt"}},{"attributes":{"name":"Ross Russel","age":59,"location":"Lexichester"}},{"attributes":{"name":"Dwayne Williamson","age":32,"location":"Fort Winston"}},{"attributes":{"name":"Rolando Thompson","age":69,"location":"Roswell"}},{"attributes":{"name":"Melinda Pouros","age":20,"location":"Wuckertstad"}},{"attributes":{"name":"Marilie Adams","age":31,"location":"East Camille"}},{"attributes":{"name":"Amber Cremin","age":24,"location":"Kodyshire"}},{"attributes":{"name":"Elbert Russel","age":33,"location":"West Sedrick"}},{"attributes":{"name":"Ms. Zakary Welch-Gorczany","age":76,"location":"Corwinhaven"}},{"attributes":{"name":"Marie Schoen","age":26,"location":"Pinellas Park"}},{"attributes":{"name":"Dorris Kirlin","age":63,"location":"Jerdeberg"}},{"attributes":{"name":"Ralph Sanford","age":63,"location":"Sengerton"}},{"attributes":{"name":"Ettie Mann","age":59,"location":"East Olaton"}},{"attributes":{"name":"Kerry Steuber","age":37,"location":"Aliso Viejo"}},{"attributes":{"name":"Gerardo Yost","age":73,"location":"Lake Oniemouth"}},{"attributes":{"name":"Ayla Grady III","age":39,"location":"New Elinor"}},{"attributes":{"name":"Jenny Hermann PhD","age":72,"location":"Port Brennon"}},{"attributes":{"name":"Margarette Wisozk","age":33,"location":"Raehaven"}},{"attributes":{"name":"Inez Swaniawski","age":28,"location":"San Antonio"}},{"attributes":{"name":"Joana Herzog DDS","age":29,"location":"New Estevan"}},{"attributes":{"name":"Veronica Gislason","age":34,"location":"Southfield"}},{"attributes":{"name":"Dianne Schmidt","age":44,"location":"West Eloise"}},{"attributes":{"name":"Gregory MacGyver","age":75,"location":"West Malindachester"}},{"attributes":{"name":"Jamie Beahan","age":18,"location":"West Joanny"}},{"attributes":{"name":"Deontae Mertz","age":54,"location":"Crooksboro"}},{"attributes":{"name":"Dr. Ellis Homenick","age":67,"location":"Darionberg"}},{"attributes":{"name":"Anne Abshire","age":33,"location":"Trantowstad"}},{"attributes":{"name":"Camren Dibbert","age":66,"location":"Lake Jules"}},{"attributes":{"name":"Theresa Barrows","age":31,"location":"Geraldborough"}},{"attributes":{"name":"Sunny Krajcik","age":47,"location":"West Pedrochester"}},{"attributes":{"name":"Orin Wisozk","age":72,"location":"Port Augustland"}},{"attributes":{"name":"Sonya Balistreri","age":57,"location":"Maudetown"}},{"attributes":{"name":"Marjorie Kertzmann","age":30,"location":"New Celestinocester"}},{"attributes":{"name":"Giovanny Hills","age":55,"location":"East Ayden"}},{"attributes":{"name":"Janie Lowe","age":30,"location":"Moreno Valley"}},{"attributes":{"name":"Emmy Parker","age":42,"location":"Cartwrightborough"}},{"attributes":{"name":"Winifred Price","age":57,"location":"Ziemetown"}},{"attributes":{"name":"Ray Heidenreich","age":32,"location":"Domenicaville"}},{"attributes":{"name":"Roberta Feeney","age":76,"location":"Morissettemouth"}},{"attributes":{"name":"Camron Dickinson","age":26,"location":"East Rylee"}},{"attributes":{"name":"Mrs. Agnes Heller","age":60,"location":"East Asiaport"}},{"attributes":{"name":"Irvin Spencer","age":65,"location":"East Kiley"}},{"attributes":{"name":"Todd Nader","age":44,"location":"Normachester"}},{"attributes":{"name":"Felix Price","age":40,"location":"East Melissa"}},{"attributes":{"name":"Lavern Stokes","age":76,"location":"Burke"}},{"attributes":{"name":"Dr. Lionel Schimmel","age":41,"location":"West Cedrick"}},{"attributes":{"name":"Ward Langosh-Pouros","age":25,"location":"Hemet"}},{"attributes":{"name":"Miller Nader","age":52,"location":"South Verla"}},{"attributes":{"name":"Lila Bechtelar IV","age":23,"location":"Shermancester"}},{"attributes":{"name":"Cecilia Batz","age":31,"location":"Marquardtland"}},{"attributes":{"name":"Kay Kutch","age":46,"location":"Malindabury"}},{"attributes":{"name":"Maurice Leuschke","age":74,"location":"New Aditya"}},{"attributes":{"name":"Percy Goyette-Witting","age":71,"location":"Fort Lailafield"}},{"attributes":{"name":"Claudia Runolfsdottir","age":62,"location":"Kayleetown"}},{"attributes":{"name":"Mr. Harley Parker","age":22,"location":"New Maye"}},{"attributes":{"name":"Kaley Dooley","age":28,"location":"Bauchhaven"}},{"attributes":{"name":"Priscilla Donnelly","age":74,"location":"Aileenchester"}},{"attributes":{"name":"Garrett Abshire","age":18,"location":"Tulare"}},{"attributes":{"name":"Christine Larkin","age":51,"location":"Aloha"}},{"attributes":{"name":"Miguel Turner","age":57,"location":"Sunnyvale"}},{"attributes":{"name":"Araceli Koss","age":71,"location":"South Whittier"}},{"attributes":{"name":"Angie Murphy","age":59,"location":"West Jadonland"}},{"attributes":{"name":"Emily Torphy","age":19,"location":"North Christyborough"}},{"attributes":{"name":"Rosalie Hayes","age":64,"location":"Waldoport"}},{"attributes":{"name":"Valerie Daniel","age":47,"location":"Raystad"}},{"attributes":{"name":"Kristopher Ward","age":57,"location":"Lake Adeline"}},{"attributes":{"name":"Serenity Grant","age":77,"location":"Vandervortland"}},{"attributes":{"name":"Reinhold Marks","age":50,"location":"East Brodyhaven"}},{"attributes":{"name":"Delores Leannon","age":65,"location":"Rialto"}},{"attributes":{"name":"Marianne Bosco","age":61,"location":"Murrayfurt"}},{"attributes":{"name":"Mr. Moises Erdman","age":26,"location":"Lorainefield"}},{"attributes":{"name":"Rudy Thompson","age":68,"location":"Fort Christyside"}},{"attributes":{"name":"Wade Greenfelder","age":18,"location":"Port Ricofort"}},{"attributes":{"name":"Dr. Kristin Hoppe","age":61,"location":"North Highlands"}},{"attributes":{"name":"London Zemlak","age":29,"location":"Robertstown"}},{"attributes":{"name":"Raymond Haag","age":75,"location":"Denver"}},{"attributes":{"name":"Garrick Kuphal","age":74,"location":"Beierberg"}},{"attributes":{"name":"Ethel Armstrong","age":59,"location":"Terryshire"}},{"attributes":{"name":"Paul Welch PhD","age":58,"location":"Port Shakirafort"}},{"attributes":{"name":"Miss Frederic Hauck","age":23,"location":"New Dockview"}},{"attributes":{"name":"Ms. Rex Klein","age":62,"location":"South Baron"}},{"attributes":{"name":"Lana Brown","age":22,"location":"Pacochashire"}},{"attributes":{"name":"Theodora Halvorson","age":47,"location":"Port Autumnland"}},{"attributes":{"name":"Mr. Simon Crist-Weimann","age":42,"location":"Jordifort"}},{"attributes":{"name":"Elias Keebler","age":40,"location":"West Maryjaneland"}},{"attributes":{"name":"Consuelo Collins","age":25,"location":"Boyermouth"}},{"attributes":{"name":"Francisca Balistreri","age":74,"location":"Bell Gardens"}},{"attributes":{"name":"Lola Padberg","age":45,"location":"North Marty"}},{"attributes":{"name":"Enola Wuckert","age":66,"location":"Bartolettistad"}},{"attributes":{"name":"Eunice Turcotte","age":31,"location":"Bellflower"}},{"attributes":{"name":"Clara McCullough III","age":46,"location":"Fort Brenda"}},{"attributes":{"name":"Glenda Flatley","age":39,"location":"North Diana"}},{"attributes":{"name":"Mr. Michaela Mayer","age":37,"location":"Karenmouth"}},{"attributes":{"name":"Merle Jakubowski","age":23,"location":"Bradtketon"}},{"attributes":{"name":"Leann Ruecker","age":66,"location":"Nathanaelfield"}},{"attributes":{"name":"Dr. Elnora Baumbach","age":22,"location":"Padbergcester"}},{"attributes":{"name":"Dr. Santos Mann","age":36,"location":"Lake John"}},{"attributes":{"name":"Kimberly Wintheiser","age":74,"location":"Ziemeport"}},{"attributes":{"name":"Nora Hessel","age":62,"location":"Bednarstad"}},{"attributes":{"name":"Connie Cronin","age":51,"location":"West Bernardfurt"}},{"attributes":{"name":"Steven Little I","age":20,"location":"Casperhaven"}},{"attributes":{"name":"Scott Heidenreich","age":67,"location":"Spinkafurt"}},{"attributes":{"name":"Tabitha Spinka","age":30,"location":"Aronhaven"}},{"attributes":{"name":"Cathrine Torphy","age":66,"location":"Diannashire"}},{"attributes":{"name":"Tyrone Lowe","age":44,"location":"Port Jennings"}},{"attributes":{"name":"Lee Franey IV","age":41,"location":"Weimannstad"}},{"attributes":{"name":"Theo Lesch","age":51,"location":"Schneidertown"}},{"attributes":{"name":"Ernestine Bernier","age":64,"location":"Macfort"}},{"attributes":{"name":"Roslyn Hermiston","age":71,"location":"North Audreanne"}},{"attributes":{"name":"Lola O'Keefe","age":66,"location":"Trompport"}},{"attributes":{"name":"Connie Adams DVM","age":74,"location":"East Rheamouth"}},{"attributes":{"name":"Hazel Bergnaum Jr.","age":41,"location":"New Stanside"}},{"attributes":{"name":"Dawn Lueilwitz","age":47,"location":"Cambridge"}},{"attributes":{"name":"Golden Bartoletti","age":52,"location":"Port Rosalyntown"}},{"attributes":{"name":"Maximilian DuBuque","age":53,"location":"East Elisa"}},{"attributes":{"name":"Noel Borer","age":46,"location":"East Orange"}},{"attributes":{"name":"Toy Harvey","age":36,"location":"South Heloise"}},{"attributes":{"name":"Janie Kling V","age":18,"location":"Berniceport"}},{"attributes":{"name":"Henry Bergnaum","age":30,"location":"New Kristastead"}},{"attributes":{"name":"Alysson White","age":25,"location":"Santa Monica"}},{"attributes":{"name":"Charlie Daniel","age":71,"location":"Jeffersonville"}},{"attributes":{"name":"Libby Ryan","age":75,"location":"Deltona"}},{"attributes":{"name":"Darla Terry","age":27,"location":"Port Ashleeborough"}},{"attributes":{"name":"Lucinda Fay","age":50,"location":"East Jerrycester"}},{"attributes":{"name":"Olga Pollich","age":49,"location":"Arjunworth"}},{"attributes":{"name":"Beulah Rodriguez","age":60,"location":"Muellerworth"}},{"attributes":{"name":"Andrea Purdy","age":37,"location":"Mayertview"}},{"attributes":{"name":"Jody Hyatt","age":71,"location":"Turnershire"}},{"attributes":{"name":"Jay Carroll","age":28,"location":"South Kamrenfield"}},{"attributes":{"name":"Ernest Osinski","age":51,"location":"Lake Elsiestad"}},{"attributes":{"name":"Dr. Gonzalo Bins","age":63,"location":"Nilsboro"}},{"attributes":{"name":"Thelma Wilkinson","age":46,"location":"Coral Springs"}},{"attributes":{"name":"Seth Russel","age":55,"location":"Redwood City"}},{"attributes":{"name":"Hattie Ruecker","age":40,"location":"Camden"}},{"attributes":{"name":"Cullen McKenzie III","age":61,"location":"Jenkinsland"}},{"attributes":{"name":"Karson Quitzon","age":55,"location":"Americaville"}},{"attributes":{"name":"Norene Heller","age":75,"location":"South Daynashire"}},{"attributes":{"name":"Ian Jacobi","age":41,"location":"East Doloresfort"}},{"attributes":{"name":"Mrs. Elza Kuvalis","age":70,"location":"North Dana"}},{"attributes":{"name":"Clinton Mosciski","age":38,"location":"Stewartfurt"}},{"attributes":{"name":"Abbigail Lind","age":49,"location":"Moorestad"}},{"attributes":{"name":"Jessie Tremblay II","age":31,"location":"North Spencer"}},{"attributes":{"name":"Joanna Kessler","age":73,"location":"Allentown"}},{"attributes":{"name":"Max Paucek","age":34,"location":"North Hudson"}},{"attributes":{"name":"Guadalupe Blanda","age":50,"location":"Maggioworth"}},{"attributes":{"name":"Katie Franecki","age":72,"location":"Lamarworth"}},{"attributes":{"name":"Zachary Cronin","age":60,"location":"Madera"}},{"attributes":{"name":"Lionel Kessler","age":59,"location":"Jeanieworth"}},{"attributes":{"name":"Marquise Lynch","age":65,"location":"North Alaynafurt"}},{"attributes":{"name":"Scot Kuvalis","age":26,"location":"Heaneyton"}},{"attributes":{"name":"Alexanne Bernhard-Deckow","age":66,"location":"Lake Estella"}},{"attributes":{"name":"Michale Farrell","age":75,"location":"Karliebury"}},{"attributes":{"name":"Miss Tina Hermann","age":37,"location":"Lefflerview"}},{"attributes":{"name":"Emily Berge","age":63,"location":"Port Zane"}},{"attributes":{"name":"Richard Gutmann","age":59,"location":"Port Lorenzashire"}},{"attributes":{"name":"Mafalda Schultz","age":18,"location":"Kamrynstad"}},{"attributes":{"name":"Jerome Ziemann","age":19,"location":"Port Orange"}},{"attributes":{"name":"Ava Jacobson","age":43,"location":"West Madaline"}},{"attributes":{"name":"Miss Conner Kulas","age":47,"location":"East Nashborough"}},{"attributes":{"name":"Dana Mraz","age":72,"location":"East Ambroseboro"}},{"attributes":{"name":"Elias Heidenreich","age":70,"location":"Methuen Town"}},{"attributes":{"name":"Eunice Barton","age":60,"location":"Port Magdalen"}},{"attributes":{"name":"Ms. Lane Hegmann","age":72,"location":"Bednarboro"}},{"attributes":{"name":"Luz Prosacco","age":78,"location":"Julianatown"}},{"attributes":{"name":"Colt Halvorson","age":22,"location":"South Stephanieton"}},{"attributes":{"name":"Mr. Milton Dickinson","age":63,"location":"West Marlenstad"}},{"attributes":{"name":"Gloria Orn-Osinski","age":43,"location":"Fargo"}},{"attributes":{"name":"April Reilly","age":68,"location":"Lake Laurianestead"}},{"attributes":{"name":"Ms. Alena Waelchi Sr.","age":71,"location":"New Lois"}},{"attributes":{"name":"Casey Rath","age":37,"location":"Lee's Summit"}},{"attributes":{"name":"Noel Quitzon","age":65,"location":"New Norval"}},{"attributes":{"name":"Gladyce Ankunding","age":71,"location":"Westshire"}},{"attributes":{"name":"Darin Hermann","age":67,"location":"Trevabury"}},{"attributes":{"name":"Dan Altenwerth","age":57,"location":"New Gordonboro"}},{"attributes":{"name":"Kelly Gerlach IV","age":53,"location":"Loniestead"}},{"attributes":{"name":"Carmine Barton","age":27,"location":"Erdmanstead"}},{"attributes":{"name":"Ms. Alexis Ziemann","age":65,"location":"New Adelinefield"}},{"attributes":{"name":"Alejandra Corwin","age":69,"location":"Waco"}},{"attributes":{"name":"Fred Bednar IV","age":79,"location":"New Veronicaboro"}},{"attributes":{"name":"Tommy Rosenbaum","age":42,"location":"West Fidelboro"}},{"attributes":{"name":"Chad Kessler","age":55,"location":"Monroe"}},{"attributes":{"name":"Billy Quigley","age":39,"location":"Portland"}},{"attributes":{"name":"Bryan Ledner-Cassin","age":65,"location":"North Raleigh"}},{"attributes":{"name":"Danny Wisoky","age":30,"location":"Stephaniaworth"}},{"attributes":{"name":"Brody Anderson","age":55,"location":"South Emilietown"}},{"attributes":{"name":"Tomasa Runte","age":33,"location":"South Damaris"}},{"attributes":{"name":"Christa Lehner","age":45,"location":"Port Melisa"}},{"attributes":{"name":"Neil Kub","age":59,"location":"Jerroldtown"}},{"attributes":{"name":"Torrey Abbott","age":53,"location":"Yvettefield"}},{"attributes":{"name":"Gilberto Rempel","age":38,"location":"Lednerworth"}},{"attributes":{"name":"Oswald Thompson","age":78,"location":"Alexzanderstead"}},{"attributes":{"name":"Hilda White","age":28,"location":"East Kennaland"}},{"attributes":{"name":"Judith Herzog III","age":70,"location":"South Lisettetown"}},{"attributes":{"name":"Coby Olson","age":58,"location":"Lindburgh"}},{"attributes":{"name":"Joseph Steuber","age":72,"location":"Cydneystead"}},{"attributes":{"name":"Davion Daugherty V","age":62,"location":"Port Earlbury"}},{"attributes":{"name":"Cora Bailey","age":66,"location":"West Katlynn"}},{"attributes":{"name":"Cyrus Stiedemann","age":28,"location":"Murray"}},{"attributes":{"name":"Barry Block","age":65,"location":"Ondrickatown"}},{"attributes":{"name":"Kerry Fritsch","age":39,"location":"Spring"}},{"attributes":{"name":"Kerry Waelchi","age":33,"location":"North Jules"}},{"attributes":{"name":"Lucy Hagenes","age":60,"location":"Lake Kimview"}},{"attributes":{"name":"Armand Denesik","age":62,"location":"Cranston"}},{"attributes":{"name":"Griffin Borer","age":80,"location":"Joannyton"}},{"attributes":{"name":"Mrs. Jamie VonRueden","age":61,"location":"Lorain"}},{"attributes":{"name":"Randall Pfannerstill DDS","age":26,"location":"Mayaguez"}},{"attributes":{"name":"Pedro Mohr II","age":39,"location":"Tuscaloosa"}},{"attributes":{"name":"Mabel Pacocha","age":69,"location":"Wilsonland"}},{"attributes":{"name":"Myriam Hintz","age":44,"location":"Minnetonka"}},{"attributes":{"name":"Francisco Hintz","age":62,"location":"Mitchellburgh"}},{"attributes":{"name":"Timothy Reilly","age":57,"location":"Dachstad"}},{"attributes":{"name":"Kerry Rowe-Emard","age":32,"location":"Salt Lake City"}},{"attributes":{"name":"Julius Rice","age":23,"location":"Port Cadeburgh"}},{"attributes":{"name":"Reagan Schamberger","age":32,"location":"Jonesshire"}},{"attributes":{"name":"Alphonso Schimmel PhD","age":29,"location":"San Leandro"}},{"attributes":{"name":"Cecilia Beatty","age":72,"location":"Hesselmouth"}},{"attributes":{"name":"Ms. Dianna Shanahan","age":65,"location":"Tamarac"}},{"attributes":{"name":"Roman Dach","age":57,"location":"Daly City"}},{"attributes":{"name":"Isaac Franecki","age":48,"location":"Nathenmouth"}},{"attributes":{"name":"Freddie Dare-Connelly","age":65,"location":"East Hannahfield"}},{"attributes":{"name":"Kale Volkman","age":71,"location":"West Morris"}},{"attributes":{"name":"Brett Pouros II","age":31,"location":"East Minervaburgh"}},{"attributes":{"name":"Mr. Kylie O'Keefe MD","age":52,"location":"Yvettefield"}},{"attributes":{"name":"Olivia Mante","age":76,"location":"Lake Angie"}},{"attributes":{"name":"Hilton Hauck","age":20,"location":"Fort Carmel"}},{"attributes":{"name":"Rebecca Streich","age":50,"location":"East Donnie"}},{"attributes":{"name":"William Hackett","age":43,"location":"North Erinburgh"}},{"attributes":{"name":"Mr. Felix Stamm-Shanahan","age":70,"location":"New Sarah"}},{"attributes":{"name":"Susie Marvin","age":80,"location":"North Hollis"}},{"attributes":{"name":"Janis Kshlerin","age":36,"location":"Lake Pierreview"}},{"attributes":{"name":"Annie Bechtelar","age":49,"location":"Port Rhea"}},{"attributes":{"name":"Miss Bailey Fritsch II","age":61,"location":"Mishawaka"}},{"attributes":{"name":"Van Hahn","age":31,"location":"Legrosland"}},{"attributes":{"name":"Lauryn Kilback","age":46,"location":"Williamsonboro"}},{"attributes":{"name":"Jimmie Borer","age":77,"location":"Hagenesville"}},{"attributes":{"name":"Teresa Sawayn","age":60,"location":"Bend"}},{"attributes":{"name":"Damaris Kuvalis","age":35,"location":"Schusterworth"}},{"attributes":{"name":"Danial Will","age":25,"location":"Kelleyburgh"}},{"attributes":{"name":"Lynda Dibbert","age":26,"location":"West Gersonport"}},{"attributes":{"name":"Jeannie Rath","age":36,"location":"Francescoton"}},{"attributes":{"name":"Nestor McClure-Schuppe","age":54,"location":"Port Briannemouth"}},{"attributes":{"name":"Geovanni Reinger","age":40,"location":"Alfonsobury"}},{"attributes":{"name":"Omar Berge","age":63,"location":"Turcotteport"}},{"attributes":{"name":"Katelyn Tromp","age":21,"location":"East Saige"}},{"attributes":{"name":"Tracey Greenholt-Ondricka","age":79,"location":"Beahanside"}},{"attributes":{"name":"Rodolfo Kling-Quigley","age":33,"location":"East Diana"}},{"attributes":{"name":"Roberta Kuhn","age":42,"location":"Ondrickahaven"}},{"attributes":{"name":"Dr. Terri Corwin","age":23,"location":"Parkertown"}},{"attributes":{"name":"Mrs. Violet Ondricka DDS","age":32,"location":"Overland Park"}},{"attributes":{"name":"Austyn Cummings-Reilly","age":22,"location":"Vicentaburgh"}},{"attributes":{"name":"Kianna Cronin","age":63,"location":"Lake Angelville"}},{"attributes":{"name":"Edna Walsh","age":48,"location":"Lake Pedroport"}},{"attributes":{"name":"Tracey Hudson","age":58,"location":"Ryanstad"}},{"attributes":{"name":"Kyler Hudson","age":45,"location":"Haagton"}},{"attributes":{"name":"Dr. Arielle Ward","age":35,"location":"Coltshire"}},{"attributes":{"name":"Mrs. Krystal Huel","age":64,"location":"South Americoworth"}},{"attributes":{"name":"Monty Rau","age":24,"location":"Oak Park"}},{"attributes":{"name":"Carmen Schmidt","age":62,"location":"Ebertcester"}},{"attributes":{"name":"Caleigh Hand","age":39,"location":"New Shirley"}},{"attributes":{"name":"Marshall Hane","age":55,"location":"Fort Myriam"}},{"attributes":{"name":"Freda Bailey II","age":62,"location":"East Elaina"}},{"attributes":{"name":"Patsy Mayer","age":64,"location":"South Rupertboro"}},{"attributes":{"name":"Loyce Armstrong","age":31,"location":"Peteberg"}},{"attributes":{"name":"Emily Larson","age":33,"location":"Lake Geovannifort"}},{"attributes":{"name":"Ramon Wehner","age":49,"location":"East Camryncester"}},{"attributes":{"name":"Mrs. Clarabelle Okuneva","age":42,"location":"Andresstead"}},{"attributes":{"name":"Stacey Goldner","age":53,"location":"Katelynmouth"}},{"attributes":{"name":"Miss Corene Krajcik","age":49,"location":"Everttown"}},{"attributes":{"name":"Mr. Nicholas Gerhold","age":38,"location":"Waylonstad"}},{"attributes":{"name":"Alize Simonis","age":35,"location":"Gulgowskistead"}},{"attributes":{"name":"Ayden Ledner","age":60,"location":"Bakersfield"}},{"attributes":{"name":"Ms. Garry Sanford","age":55,"location":"Hilpertbury"}},{"attributes":{"name":"Mariana Krajcik","age":19,"location":"Treverstad"}},{"attributes":{"name":"Tatyana Stamm","age":48,"location":"East Rudolphworth"}},{"attributes":{"name":"Christie Herman","age":39,"location":"Bahringerberg"}},{"attributes":{"name":"Gregory Hilll","age":68,"location":"New Marinaburgh"}},{"attributes":{"name":"Louise Cummings","age":23,"location":"Bristol"}},{"attributes":{"name":"Jerel Wintheiser I","age":35,"location":"Port Margaretttown"}},{"attributes":{"name":"Dr. Tasha Green","age":57,"location":"Marymouth"}},{"attributes":{"name":"Harvey Schuster","age":21,"location":"Port Priscillabury"}},{"attributes":{"name":"Helen Schumm","age":71,"location":"South Berryworth"}},{"attributes":{"name":"Dr. Jerome Boyer","age":21,"location":"Hicklefield"}},{"attributes":{"name":"Marian Keebler","age":49,"location":"Bednarshire"}},{"attributes":{"name":"Darrin Ebert","age":68,"location":"Kuhnboro"}},{"attributes":{"name":"Clyde Jast Jr.","age":38,"location":"Fort Kierachester"}},{"attributes":{"name":"Lydia Trantow","age":28,"location":"Mishawaka"}},{"attributes":{"name":"Malvina Kuhic","age":25,"location":"East Penelopeview"}},{"attributes":{"name":"Murphy Barrows II","age":63,"location":"New Kayden"}},{"attributes":{"name":"Sheridan McDermott-Padberg","age":43,"location":"Port Jakob"}},{"attributes":{"name":"Dianna Schaefer","age":54,"location":"South Eulaliashire"}},{"attributes":{"name":"Mr. Fernando Hodkiewicz","age":65,"location":"Fort Arafield"}},{"attributes":{"name":"Audrey Renner IV","age":43,"location":"North Lucyfurt"}},{"attributes":{"name":"Maryann Crist","age":72,"location":"Michellehaven"}},{"attributes":{"name":"Alphonso Waelchi PhD","age":47,"location":"Fort Flossieworth"}},{"attributes":{"name":"Marcia Volkman","age":59,"location":"East Shea"}},{"attributes":{"name":"Tommie Gutmann","age":44,"location":"North Humberto"}},{"attributes":{"name":"Mrs. Tobin Bode","age":48,"location":"Rosinaberg"}},{"attributes":{"name":"Tessie Bednar","age":39,"location":"North Clovisside"}},{"attributes":{"name":"Etha Bruen","age":63,"location":"McKenzieview"}},{"attributes":{"name":"Jodie Murphy","age":80,"location":"Fort Karsonside"}},{"attributes":{"name":"Demario Willms","age":25,"location":"South Alycechester"}},{"attributes":{"name":"Wilburn Corwin","age":75,"location":"New Millieville"}},{"attributes":{"name":"Fredrick Gislason","age":63,"location":"Port Juvenalbury"}},{"attributes":{"name":"Raul O'Connell","age":42,"location":"South Ethelyn"}},{"attributes":{"name":"Angelina Pouros","age":65,"location":"Lincoln"}},{"attributes":{"name":"Jadon Hane DVM","age":64,"location":"Homenickmouth"}},{"attributes":{"name":"Nedra Hegmann","age":70,"location":"Fort Cameron"}},{"attributes":{"name":"Ricardo Hyatt","age":38,"location":"Aliyaborough"}},{"attributes":{"name":"Mrs. Annalise Moore","age":23,"location":"South Bellfort"}},{"attributes":{"name":"Caesar Runolfsdottir","age":59,"location":"Blaine"}},{"attributes":{"name":"Tre Flatley","age":41,"location":"Mayaworth"}},{"attributes":{"name":"Ray Christiansen","age":38,"location":"Lake Imelda"}},{"attributes":{"name":"Dr. Alta Bruen","age":37,"location":"Fort Kelly"}},{"attributes":{"name":"Ruth Auer","age":60,"location":"West Skyemouth"}},{"attributes":{"name":"Sadie Anderson","age":31,"location":"West Tomasshire"}},{"attributes":{"name":"Mariam DuBuque","age":45,"location":"Towneborough"}},{"attributes":{"name":"Lera Schiller","age":52,"location":"Port Maxine"}},{"attributes":{"name":"Julia Cummings","age":48,"location":"Port Christop"}},{"attributes":{"name":"Sadie Konopelski","age":37,"location":"Santosshire"}},{"attributes":{"name":"Mrs. Esteban McDermott","age":66,"location":"East Freda"}},{"attributes":{"name":"Dan Macejkovic","age":28,"location":"Demetrisfield"}},{"attributes":{"name":"Spencer Turcotte","age":67,"location":"Leopoldoborough"}},{"attributes":{"name":"Jett Mann","age":75,"location":"South Nella"}},{"attributes":{"name":"Gordon Simonis","age":43,"location":"East Jaron"}},{"attributes":{"name":"Brendan Legros II","age":20,"location":"Port Deronfurt"}},{"attributes":{"name":"Darrin Flatley","age":45,"location":"North Ursulaland"}},{"attributes":{"name":"Lucius Huel","age":35,"location":"East Stephanshire"}},{"attributes":{"name":"Miss Blaze Schiller","age":33,"location":"Jastworth"}},{"attributes":{"name":"Vincent Bayer","age":34,"location":"East Albin"}},{"attributes":{"name":"Colby Schumm","age":29,"location":"Emardville"}},{"attributes":{"name":"Dr. Randall Kunze","age":18,"location":"Hillsberg"}},{"attributes":{"name":"Lance Keebler I","age":76,"location":"McCulloughstad"}},{"attributes":{"name":"Dr. Anna Hartmann","age":33,"location":"West Linda"}},{"attributes":{"name":"Pink MacGyver","age":70,"location":"Braunstad"}},{"attributes":{"name":"Kyle Reynolds-Little","age":32,"location":"Adrielbury"}},{"attributes":{"name":"Lysanne Breitenberg","age":68,"location":"Lake Newell"}},{"attributes":{"name":"Makenzie O'Connell","age":40,"location":"New Nels"}},{"attributes":{"name":"Jeremiah Conroy","age":46,"location":"Port Brendastead"}},{"attributes":{"name":"Melany Weber","age":76,"location":"Florin"}},{"attributes":{"name":"Ariane Crona","age":54,"location":"Rutherfordbury"}},{"attributes":{"name":"Dr. Daniel Mueller","age":65,"location":"New Jaydaberg"}},{"attributes":{"name":"Joanny Bartell","age":36,"location":"New Jaden"}},{"attributes":{"name":"Jimmy DuBuque","age":34,"location":"Parisianmouth"}},{"attributes":{"name":"Drew Reichert-Jakubowski","age":55,"location":"Lake Angusmouth"}},{"attributes":{"name":"Sterling Dickens","age":47,"location":"Kochstead"}},{"attributes":{"name":"Dr. Valerie Donnelly","age":27,"location":"New Juvenal"}},{"attributes":{"name":"Dr. Dallas Bartell","age":35,"location":"North Adolfoside"}},{"attributes":{"name":"Johann Jacobi V","age":67,"location":"West Nellie"}},{"attributes":{"name":"Pearl Konopelski","age":20,"location":"Jimmieton"}},{"attributes":{"name":"Grayce Gusikowski-Koepp","age":70,"location":"New Giaview"}},{"attributes":{"name":"Edwardo Hahn","age":77,"location":"Otiliacester"}},{"attributes":{"name":"Miss Vidal Greenfelder Jr.","age":18,"location":"Alexandreabury"}},{"attributes":{"name":"Alex Abernathy","age":67,"location":"East King"}},{"attributes":{"name":"Tom Weissnat","age":78,"location":"Hartmannburgh"}},{"attributes":{"name":"Tracy Hirthe","age":44,"location":"Lake Jettie"}},{"attributes":{"name":"Alejandro Skiles","age":71,"location":"Konopelskiside"}},{"attributes":{"name":"Bennie Jakubowski","age":78,"location":"East Mortimer"}},{"attributes":{"name":"Herman Kuhic-Blanda","age":49,"location":"Littelmouth"}},{"attributes":{"name":"Mona Hagenes","age":68,"location":"South Euna"}},{"attributes":{"name":"Filomena McClure","age":64,"location":"Schmidtborough"}},{"attributes":{"name":"Mr. Bobbie Cummings","age":21,"location":"Towneburgh"}},{"attributes":{"name":"Timmothy Herzog MD","age":54,"location":"Robertshaven"}},{"attributes":{"name":"Hope Hills","age":56,"location":"Anchorage"}},{"attributes":{"name":"Lena Mayer","age":70,"location":"Sebastianport"}},{"attributes":{"name":"Arianna Botsford","age":42,"location":"Port Stacy"}},{"attributes":{"name":"Conner Dooley","age":77,"location":"Meriden"}},{"attributes":{"name":"Mr. Ramiro Stroman","age":53,"location":"Fort Clay"}},{"attributes":{"name":"Betsy Brown I","age":70,"location":"West Marilouborough"}},{"attributes":{"name":"Claude Moore","age":52,"location":"South Jayne"}},{"attributes":{"name":"Katie Swift","age":20,"location":"South Cortez"}},{"attributes":{"name":"Miss Enrique Hansen","age":31,"location":"Toneyville"}},{"attributes":{"name":"Mabel Hermiston","age":60,"location":"Bernardocester"}},{"attributes":{"name":"Mrs. Randi Hermiston","age":37,"location":"Neldaton"}},{"attributes":{"name":"Woodrow Dooley","age":22,"location":"Myrtiscester"}},{"attributes":{"name":"Moses Cronin","age":67,"location":"Kilbackton"}},{"attributes":{"name":"Lyla Stoltenberg MD","age":18,"location":"Dylanview"}},{"attributes":{"name":"Layne Jones","age":44,"location":"Davistown"}},{"attributes":{"name":"Marcia Zieme","age":58,"location":"Yvettechester"}},{"attributes":{"name":"Bertha Gutkowski","age":72,"location":"Koreyview"}},{"attributes":{"name":"Philip Schowalter","age":76,"location":"Scottsdale"}},{"attributes":{"name":"Daija Carter","age":46,"location":"Lake Austenstead"}},{"attributes":{"name":"Vilma Kerluke","age":21,"location":"South Oran"}},{"attributes":{"name":"Hanna Ledner Sr.","age":72,"location":"Fort Vicentechester"}},{"attributes":{"name":"Joyce Stokes","age":34,"location":"East Danielleside"}},{"attributes":{"name":"Estelle Adams","age":68,"location":"Faycester"}},{"attributes":{"name":"Gary Moore","age":58,"location":"North Mackland"}},{"attributes":{"name":"Susie Hansen","age":30,"location":"Marisashire"}},{"attributes":{"name":"Cora O'Kon","age":79,"location":"Fayfurt"}},{"attributes":{"name":"Mr. Taurean Roberts V","age":36,"location":"Langoshhaven"}},{"attributes":{"name":"Wendell Daniel MD","age":61,"location":"Port Nikitaworth"}},{"attributes":{"name":"Gerardo Lind","age":21,"location":"Gwendolynland"}},{"attributes":{"name":"Maurice Brekke","age":34,"location":"Steuberhaven"}},{"attributes":{"name":"Archibald Collier","age":55,"location":"South Nelsonview"}},{"attributes":{"name":"Mrs. Buck Graham","age":64,"location":"Potomac"}},{"attributes":{"name":"Sherri Howe","age":44,"location":"East Kelsi"}},{"attributes":{"name":"Miss Shelia Barton PhD","age":63,"location":"East Lenna"}},{"attributes":{"name":"Mrs. Joanne Mayert DVM","age":37,"location":"Wuckertfurt"}},{"attributes":{"name":"Taylor Rippin","age":50,"location":"West Dillonport"}},{"attributes":{"name":"Leo Hayes","age":27,"location":"Littelfort"}},{"attributes":{"name":"Chasity Simonis","age":78,"location":"West Evelinefurt"}},{"attributes":{"name":"Wilfred Kautzer","age":44,"location":"Gleasonbury"}},{"attributes":{"name":"Roxane Ledner","age":74,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Ellsworth Thompson","age":67,"location":"New Isac"}},{"attributes":{"name":"Meghan Hilll","age":19,"location":"Medhurstchester"}},{"attributes":{"name":"Miss Jody Kertzmann","age":66,"location":"Kianaberg"}},{"attributes":{"name":"James Durgan","age":30,"location":"Minnetonka"}},{"attributes":{"name":"Josefina Rogahn","age":65,"location":"Deckowside"}},{"attributes":{"name":"Domingo Runte","age":42,"location":"New Dena"}},{"attributes":{"name":"Douglas Corkery","age":32,"location":"Treverton"}},{"attributes":{"name":"Antwon Stiedemann","age":52,"location":"North Emmie"}},{"attributes":{"name":"Tasha Deckow","age":66,"location":"Mission"}},{"attributes":{"name":"Vanessa Abshire","age":62,"location":"Reynoldsboro"}},{"attributes":{"name":"Roosevelt Gottlieb Jr.","age":36,"location":"East Izaiahborough"}},{"attributes":{"name":"Perry Abernathy","age":60,"location":"Bergestead"}},{"attributes":{"name":"Sophia Mohr","age":23,"location":"Weymouth Town"}},{"attributes":{"name":"Elmer Morissette","age":33,"location":"Port Quincy"}},{"attributes":{"name":"Amaya Lesch Jr.","age":66,"location":"Elmerfort"}},{"attributes":{"name":"Afton Gleichner","age":34,"location":"Ankundingport"}},{"attributes":{"name":"Terrill Pouros","age":25,"location":"Berkeley"}},{"attributes":{"name":"Vicky Boyle","age":56,"location":"East Murphystead"}},{"attributes":{"name":"Felicia Hickle","age":63,"location":"Nilsville"}},{"attributes":{"name":"Erick Halvorson","age":75,"location":"Olathe"}},{"attributes":{"name":"Larry Smith","age":27,"location":"East Lela"}},{"attributes":{"name":"Shaun Lockman IV","age":38,"location":"Lake Jessieland"}},{"attributes":{"name":"Isadore Lemke Sr.","age":27,"location":"South Germanstead"}},{"attributes":{"name":"Mr. John Macejkovic","age":39,"location":"Vestafield"}},{"attributes":{"name":"Isai Armstrong-Dach","age":28,"location":"East Cassieshire"}},{"attributes":{"name":"Harvey McKenzie","age":31,"location":"New Donavon"}},{"attributes":{"name":"Ana Terry","age":27,"location":"Bend"}},{"attributes":{"name":"Ms. Kate Ratke","age":55,"location":"Myahside"}},{"attributes":{"name":"Darin Kovacek","age":39,"location":"Fort Mortonberg"}},{"attributes":{"name":"Ms. Silvia Hagenes","age":34,"location":"New Daisy"}},{"attributes":{"name":"Ms. Beulah Quigley","age":33,"location":"Fort Taryn"}},{"attributes":{"name":"Noel Huel","age":39,"location":"South Leonstad"}},{"attributes":{"name":"Jermaine Goodwin","age":76,"location":"Bristol"}},{"attributes":{"name":"Teresa Klein","age":40,"location":"Elinoreview"}},{"attributes":{"name":"Lillian Bartell","age":21,"location":"Champlincester"}},{"attributes":{"name":"Dejuan Treutel II","age":38,"location":"Port Noemymouth"}},{"attributes":{"name":"Steven Kemmer","age":80,"location":"Corwinfort"}},{"attributes":{"name":"Robin Herzog","age":37,"location":"East Vada"}},{"attributes":{"name":"Raquel Haley","age":59,"location":"Nienowmouth"}},{"attributes":{"name":"Jazmyn Jaskolski","age":27,"location":"New Hassie"}},{"attributes":{"name":"Christie Purdy","age":33,"location":"Vicentaport"}},{"attributes":{"name":"Donald Mertz","age":37,"location":"Sawaynville"}},{"attributes":{"name":"Miller Zemlak","age":72,"location":"Loweburgh"}},{"attributes":{"name":"Mr. Roderick Koss IV","age":28,"location":"Pansystad"}},{"attributes":{"name":"Santos Altenwerth","age":53,"location":"Gislasonworth"}},{"attributes":{"name":"Franz Parisian","age":26,"location":"Lake Adeliaside"}},{"attributes":{"name":"Mya Yundt","age":43,"location":"East Orange"}},{"attributes":{"name":"Ferne Schowalter","age":51,"location":"East Vickytown"}},{"attributes":{"name":"Charlie Sipes","age":19,"location":"Morissetteworth"}},{"attributes":{"name":"Jim Mills","age":33,"location":"Kirlinborough"}},{"attributes":{"name":"Rick Mills","age":77,"location":"Port Jeramy"}},{"attributes":{"name":"Hermina Beer-Cassin","age":34,"location":"Huntersville"}},{"attributes":{"name":"Stewart Mills","age":61,"location":"Lucieside"}},{"attributes":{"name":"Jeannie Gleichner","age":22,"location":"West Darrion"}},{"attributes":{"name":"Sherri Champlin","age":23,"location":"Lake David"}},{"attributes":{"name":"Marianne Kozey","age":19,"location":"Smyrna"}},{"attributes":{"name":"Isaias Heaney","age":56,"location":"East Cristianshire"}},{"attributes":{"name":"Annie Klocko","age":31,"location":"Fort Coy"}},{"attributes":{"name":"Leanne Lesch","age":59,"location":"New Amanda"}},{"attributes":{"name":"Nelle Legros","age":41,"location":"South Brendonstead"}},{"attributes":{"name":"Penny Zemlak IV","age":24,"location":"Virginiaborough"}},{"attributes":{"name":"Cassandra Orn","age":23,"location":"Delray Beach"}},{"attributes":{"name":"Nancy Miller","age":52,"location":"Fort Roelberg"}},{"attributes":{"name":"Clark Little","age":32,"location":"Independence"}},{"attributes":{"name":"Sherman Murphy","age":36,"location":"Minaboro"}},{"attributes":{"name":"Jonathon Wiegand","age":59,"location":"Lake Jeffrychester"}},{"attributes":{"name":"Dexter Schuppe","age":40,"location":"San Mateo"}},{"attributes":{"name":"Justin Ebert","age":34,"location":"Windlerfield"}},{"attributes":{"name":"Candice Kling-Bradtke","age":79,"location":"East Maynardcester"}},{"attributes":{"name":"Mr. Darrel Ernser DDS","age":19,"location":"Lake Wandaview"}},{"attributes":{"name":"Dr. Broderick Toy","age":22,"location":"Lake Lucietown"}},{"attributes":{"name":"Raquel Hirthe","age":69,"location":"New Braden"}},{"attributes":{"name":"Darlene Medhurst","age":27,"location":"West Alfordboro"}},{"attributes":{"name":"Laurie Krajcik","age":22,"location":"New Napoleonton"}},{"attributes":{"name":"Mattie Batz","age":59,"location":"Baton Rouge"}},{"attributes":{"name":"Lafayette Bashirian","age":29,"location":"Kannapolis"}},{"attributes":{"name":"Cruz Koelpin","age":39,"location":"New Werner"}},{"attributes":{"name":"Kurt Powlowski","age":31,"location":"Boehmville"}},{"attributes":{"name":"Mrs. Tommie Pfeffer","age":63,"location":"Beerstead"}},{"attributes":{"name":"Dr. Rogelio Bode","age":38,"location":"Hempstead"}},{"attributes":{"name":"Katelyn Becker","age":71,"location":"Grantberg"}},{"attributes":{"name":"Grace Kunde","age":39,"location":"South Keanuburgh"}},{"attributes":{"name":"Harrison Nolan","age":51,"location":"Schultzville"}},{"attributes":{"name":"Vicente Greenholt","age":27,"location":"Lonnyfurt"}},{"attributes":{"name":"Mr. Julian O'Reilly","age":61,"location":"Spring"}},{"attributes":{"name":"Tristian Dibbert DVM","age":52,"location":"North Claudine"}},{"attributes":{"name":"Victoria Legros","age":22,"location":"Lake Cloyd"}},{"attributes":{"name":"Cathy Denesik DVM","age":64,"location":"Aniyafield"}},{"attributes":{"name":"Wilhelmine Moore","age":80,"location":"Lake Dulcetown"}},{"attributes":{"name":"Tess Schulist","age":48,"location":"Feestchester"}},{"attributes":{"name":"Alba Veum Jr.","age":27,"location":"Rancho Cordova"}},{"attributes":{"name":"Samantha Gleichner","age":57,"location":"Fort Paulinechester"}},{"attributes":{"name":"Max Deckow","age":50,"location":"Lake Bessieboro"}},{"attributes":{"name":"Mr. Stanton Strosin","age":62,"location":"New Gunnarborough"}},{"attributes":{"name":"Winston O'Kon-Feil","age":29,"location":"Wittingburgh"}},{"attributes":{"name":"Dr. Alexandra Mills-Schaden V","age":62,"location":"New Cristal"}},{"attributes":{"name":"Felipe King","age":19,"location":"Eau Claire"}},{"attributes":{"name":"Miss Rahul Cassin","age":76,"location":"Fort Brant"}},{"attributes":{"name":"Emmie Wintheiser","age":70,"location":"Port Ashleeboro"}},{"attributes":{"name":"Andy Kunde","age":80,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Sage Stroman","age":29,"location":"Pabloworth"}},{"attributes":{"name":"Khalid Willms","age":37,"location":"North Ashleeview"}},{"attributes":{"name":"Tamara Cummerata","age":61,"location":"North Addisonboro"}},{"attributes":{"name":"Mia Cartwright","age":66,"location":"West Cordie"}},{"attributes":{"name":"Santina Wintheiser","age":73,"location":"Lake Laneyville"}},{"attributes":{"name":"Miguel Predovic III","age":64,"location":"Croninmouth"}},{"attributes":{"name":"Ruby Klein","age":28,"location":"Mitchellborough"}},{"attributes":{"name":"Dorothy Pollich","age":40,"location":"Port Buddy"}},{"attributes":{"name":"Jeremy Sporer","age":58,"location":"Lake Kenyashire"}},{"attributes":{"name":"Sheri Romaguera","age":36,"location":"Lavonton"}},{"attributes":{"name":"Lucia Stehr","age":48,"location":"New Devinview"}},{"attributes":{"name":"Tim Greenholt","age":24,"location":"North Stephanyton"}},{"attributes":{"name":"Ida Ernser","age":73,"location":"Larsonboro"}},{"attributes":{"name":"Florian Harvey","age":74,"location":"Keelingcester"}},{"attributes":{"name":"Nora Conn","age":52,"location":"West Israelshire"}},{"attributes":{"name":"Merle Nienow","age":45,"location":"Russelshire"}},{"attributes":{"name":"Rafaela O'Hara II","age":76,"location":"Carrollfield"}},{"attributes":{"name":"Kelli Skiles-Mayert II","age":48,"location":"Camarillo"}},{"attributes":{"name":"Jazlyn Lubowitz","age":65,"location":"North Bethesda"}},{"attributes":{"name":"Natalie Emard DVM","age":41,"location":"Littelfield"}},{"attributes":{"name":"Gary Kris","age":24,"location":"Pacochabury"}},{"attributes":{"name":"Caroline Cassin","age":64,"location":"East Koby"}},{"attributes":{"name":"Lavonne Dibbert","age":48,"location":"Lemkefurt"}},{"attributes":{"name":"Vera Spinka","age":21,"location":"Virgilstad"}},{"attributes":{"name":"Traci Jaskolski","age":47,"location":"Watsonville"}},{"attributes":{"name":"Dr. Rickey Wintheiser","age":27,"location":"Jaidafort"}},{"attributes":{"name":"Crystal Roberts","age":52,"location":"Port Ignaciohaven"}},{"attributes":{"name":"Herminio Keeling","age":45,"location":"Schoenshire"}},{"attributes":{"name":"Rico Murazik","age":59,"location":"Botsfordshire"}},{"attributes":{"name":"Marisa Schuppe","age":36,"location":"Creminstad"}},{"attributes":{"name":"Jimmy Graham V","age":72,"location":"East Todtown"}},{"attributes":{"name":"Scot Hickle","age":38,"location":"East Reaganport"}},{"attributes":{"name":"Ms. Essie Willms","age":23,"location":"South Horacio"}},{"attributes":{"name":"Karson Zemlak","age":29,"location":"Chandler"}},{"attributes":{"name":"Jamar Little","age":49,"location":"Fort Helene"}},{"attributes":{"name":"Gordon McGlynn","age":47,"location":"South Lawrence"}},{"attributes":{"name":"Ida Swift","age":60,"location":"Gardena"}},{"attributes":{"name":"Marta Lynch III","age":34,"location":"Port Randyborough"}},{"attributes":{"name":"Vincent Abernathy","age":21,"location":"East Darbyton"}},{"attributes":{"name":"Herbert Kunze","age":66,"location":"Mansfield"}},{"attributes":{"name":"Kurtis Purdy MD","age":50,"location":"Yakima"}},{"attributes":{"name":"Pat Rempel Jr.","age":26,"location":"Rolfsonshire"}},{"attributes":{"name":"Erma Schiller","age":29,"location":"Maggioshire"}},{"attributes":{"name":"Dr. Brayan Feeney","age":61,"location":"Durganside"}},{"attributes":{"name":"Luther Waelchi","age":79,"location":"South Vernice"}},{"attributes":{"name":"Madisen Kling","age":73,"location":"Cleveland"}},{"attributes":{"name":"Byron Mitchell","age":41,"location":"Herthaport"}},{"attributes":{"name":"Valentina Hammes","age":78,"location":"Amiestad"}},{"attributes":{"name":"Mr. Alan Schaefer","age":18,"location":"Fort Chelseafield"}},{"attributes":{"name":"Leland Wyman","age":36,"location":"South Barrett"}},{"attributes":{"name":"Dr. Donald Keeling","age":36,"location":"Pasadena"}},{"attributes":{"name":"Miss Dolores Abbott","age":33,"location":"South Estrella"}},{"attributes":{"name":"Eulalia Windler","age":31,"location":"West Guyboro"}},{"attributes":{"name":"Otho Brown","age":33,"location":"North Miami Beach"}},{"attributes":{"name":"Viva Wilkinson","age":48,"location":"Roswell"}},{"attributes":{"name":"Dawn Effertz Sr.","age":39,"location":"Jakobcester"}},{"attributes":{"name":"Sammy Nitzsche","age":78,"location":"South Murraybury"}},{"attributes":{"name":"Candice Langworth","age":65,"location":"Flagstaff"}},{"attributes":{"name":"Bob Gusikowski","age":61,"location":"East Honolulu"}},{"attributes":{"name":"Lois Rice","age":65,"location":"Dareworth"}},{"attributes":{"name":"Ms. Samantha Ernser","age":37,"location":"Fort Charlotte"}},{"attributes":{"name":"Vinnie Pfeffer DVM","age":39,"location":"North Domenicchester"}},{"attributes":{"name":"Kurtis Borer","age":46,"location":"Lake Amirhaven"}},{"attributes":{"name":"Augustine Waters","age":44,"location":"Lake Benedict"}},{"attributes":{"name":"Ayana Abbott Sr.","age":56,"location":"Pollichburgh"}},{"attributes":{"name":"Meredith Ernser","age":32,"location":"West Kane"}},{"attributes":{"name":"Pearl Johnson","age":63,"location":"Reeseview"}},{"attributes":{"name":"Ivan Tillman","age":30,"location":"Domenicfurt"}},{"attributes":{"name":"Marty Schoen","age":49,"location":"Konopelskiview"}},{"attributes":{"name":"Brent Kozey","age":68,"location":"Port Nellaport"}},{"attributes":{"name":"Marvin Kozey","age":71,"location":"North Schuyler"}},{"attributes":{"name":"Barney Ferry","age":47,"location":"Lake Jeffrey"}},{"attributes":{"name":"Mrs. Cornelius Hettinger","age":50,"location":"Eribertofort"}},{"attributes":{"name":"Ms. Francisco Steuber","age":70,"location":"Maialand"}},{"attributes":{"name":"Dominique Ritchie","age":29,"location":"West Stephany"}},{"attributes":{"name":"Shane Schulist","age":78,"location":"Ronfield"}},{"attributes":{"name":"Rosetta Hackett-Block","age":39,"location":"North Sigurd"}},{"attributes":{"name":"Alexanne Jacobson","age":73,"location":"Jackworth"}},{"attributes":{"name":"Elsa Schmeler","age":80,"location":"New Madiefurt"}},{"attributes":{"name":"Santos Herzog","age":63,"location":"Port Lula"}},{"attributes":{"name":"Mary Monahan","age":43,"location":"Fort Kareem"}},{"attributes":{"name":"Sarah Schuppe","age":64,"location":"Miami Gardens"}},{"attributes":{"name":"Brooke Rohan","age":25,"location":"West Carolanneport"}},{"attributes":{"name":"Jonathan Kreiger","age":32,"location":"East Loniefort"}},{"attributes":{"name":"Myra Ullrich","age":39,"location":"Port Mariloubury"}},{"attributes":{"name":"Mrs. Keon Mosciski","age":44,"location":"West Samantha"}},{"attributes":{"name":"Kelli Kris","age":71,"location":"New Willaburgh"}},{"attributes":{"name":"Jason Jacobson-Rau","age":59,"location":"South Gladyce"}},{"attributes":{"name":"Nina Botsford","age":80,"location":"Gleasonmouth"}},{"attributes":{"name":"Sim Heidenreich-Crooks","age":75,"location":"The Woodlands"}},{"attributes":{"name":"Sheryl Will","age":48,"location":"Elk Grove"}},{"attributes":{"name":"Ellis Paucek","age":75,"location":"New Cordeliachester"}},{"attributes":{"name":"Amelia Herman","age":43,"location":"East Shania"}},{"attributes":{"name":"Barry Murazik","age":27,"location":"Port Colleen"}},{"attributes":{"name":"Ms. Julio Schultz III","age":64,"location":"Port Adan"}},{"attributes":{"name":"Patty Koss PhD","age":74,"location":"Port Angeline"}},{"attributes":{"name":"Rachel Haag","age":46,"location":"North Tysonworth"}},{"attributes":{"name":"Keely Schroeder","age":57,"location":"Lynn"}},{"attributes":{"name":"Miss Tim Dooley","age":57,"location":"Parma"}},{"attributes":{"name":"Mrs. Lester Hodkiewicz IV","age":36,"location":"Port Archibald"}},{"attributes":{"name":"Angel Wolff","age":33,"location":"Greenfeldercester"}},{"attributes":{"name":"Heather Stamm","age":80,"location":"South Nathanieltown"}},{"attributes":{"name":"Leslie Hand","age":72,"location":"New Lambertfield"}},{"attributes":{"name":"Christina Pagac","age":72,"location":"New Angus"}},{"attributes":{"name":"Sara Cronin","age":30,"location":"Bergnaumhaven"}},{"attributes":{"name":"Eulah Hilll","age":51,"location":"Washington"}},{"attributes":{"name":"Orlando Littel","age":52,"location":"Binsfurt"}},{"attributes":{"name":"Flora Braun","age":40,"location":"South Kaycee"}},{"attributes":{"name":"Kristopher Kunde","age":50,"location":"Kristopherboro"}},{"attributes":{"name":"Bud Ferry-Gleichner II","age":42,"location":"Kuhlmanview"}},{"attributes":{"name":"Oscar Hammes","age":80,"location":"Leschchester"}},{"attributes":{"name":"Mrs. Austin Nicolas","age":56,"location":"North Sashaland"}},{"attributes":{"name":"Manley Bernhard MD","age":24,"location":"Schadenboro"}},{"attributes":{"name":"Adele Emmerich","age":30,"location":"Port Obie"}},{"attributes":{"name":"Jackie Wuckert V","age":78,"location":"Kenner"}},{"attributes":{"name":"Dangelo Bruen","age":45,"location":"Erie"}},{"attributes":{"name":"Jenny Boyer","age":52,"location":"Kingsport"}},{"attributes":{"name":"Nora Wiza-Sipes","age":36,"location":"Pocatello"}},{"attributes":{"name":"Adam VonRueden","age":18,"location":"Aliyaland"}},{"attributes":{"name":"Reymundo Renner Sr.","age":30,"location":"North Broderick"}},{"attributes":{"name":"Cathrine Kerluke","age":52,"location":"Port Joelleside"}},{"attributes":{"name":"Sabrina Bahringer","age":56,"location":"New Evie"}},{"attributes":{"name":"Garret Littel","age":77,"location":"Port Tatyanaview"}},{"attributes":{"name":"Barry Dach","age":51,"location":"North Thurman"}},{"attributes":{"name":"Braxton Hartmann","age":51,"location":"Port Myrna"}},{"attributes":{"name":"Miss Blair Herman","age":56,"location":"Victorville"}},{"attributes":{"name":"Cecilia Grant-Glover","age":55,"location":"Port Ashlee"}},{"attributes":{"name":"Clayton Koepp","age":30,"location":"New Cynthia"}},{"attributes":{"name":"Kari Brekke","age":50,"location":"Delphacester"}},{"attributes":{"name":"Juanita Bradtke","age":33,"location":"Hilllton"}},{"attributes":{"name":"Raquel Bruen","age":61,"location":"Leonorburgh"}},{"attributes":{"name":"Natasha Marvin","age":70,"location":"Kozeyboro"}},{"attributes":{"name":"Faith Christiansen","age":41,"location":"Runtestad"}},{"attributes":{"name":"Abel Auer","age":21,"location":"East Nevachester"}},{"attributes":{"name":"Penny Jacobs","age":36,"location":"South Kaiaborough"}},{"attributes":{"name":"Dr. Magdalena Thiel","age":65,"location":"Port Ruthefort"}},{"attributes":{"name":"Philip Crist","age":31,"location":"Cortneyworth"}},{"attributes":{"name":"Scott Johnston","age":58,"location":"East Kameron"}},{"attributes":{"name":"Lorena Effertz","age":77,"location":"North Gunner"}},{"attributes":{"name":"Mrs. Tami Flatley","age":34,"location":"Vanessaside"}},{"attributes":{"name":"Linda O'Connell","age":42,"location":"North Emmanuellestead"}},{"attributes":{"name":"Isaac Dickinson MD","age":63,"location":"Audreannefurt"}},{"attributes":{"name":"Tyrique Kiehn Jr.","age":35,"location":"New Rochelle"}},{"attributes":{"name":"Ruth Kuhic Sr.","age":45,"location":"Twin Falls"}},{"attributes":{"name":"Cristal Boyer","age":35,"location":"Nicklausmouth"}},{"attributes":{"name":"Dr. Garrett Shields","age":68,"location":"Levichester"}},{"attributes":{"name":"Miss Rodolfo Pfannerstill V","age":35,"location":"Port Domingo"}},{"attributes":{"name":"Dr. Liliane Hackett","age":33,"location":"North Genevieve"}},{"attributes":{"name":"Carole Considine","age":24,"location":"North Jermaine"}},{"attributes":{"name":"Jessie Konopelski","age":66,"location":"Bend"}},{"attributes":{"name":"Tyler Mohr","age":33,"location":"New Armaniborough"}},{"attributes":{"name":"Ken Reichel","age":36,"location":"Millsborough"}},{"attributes":{"name":"Frances Feeney","age":42,"location":"Hellerburgh"}},{"attributes":{"name":"Marshall Huel","age":32,"location":"Schambergerfield"}},{"attributes":{"name":"Rodney McCullough","age":78,"location":"Fort Lexiestad"}},{"attributes":{"name":"Rufus Christiansen","age":79,"location":"Mistystad"}},{"attributes":{"name":"Luella Lockman","age":45,"location":"Fort Libby"}},{"attributes":{"name":"Thurman Maggio","age":75,"location":"South Marcus"}},{"attributes":{"name":"Hope Schowalter","age":60,"location":"Port Yazminshire"}},{"attributes":{"name":"Bryan Morar DVM","age":57,"location":"Walshtown"}},{"attributes":{"name":"Gloria Luettgen DDS","age":36,"location":"North Brycentown"}},{"attributes":{"name":"Ana Sawayn","age":72,"location":"Titusville"}},{"attributes":{"name":"Oswaldo Gibson","age":36,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Sarai Herzog","age":38,"location":"Yuba City"}},{"attributes":{"name":"Dr. Alex Lebsack","age":61,"location":"New Georgiannaville"}},{"attributes":{"name":"Willie Collier","age":61,"location":"Effertzside"}},{"attributes":{"name":"Marion Block","age":32,"location":"Alpharetta"}},{"attributes":{"name":"Abraham Schmitt","age":78,"location":"Thielchester"}},{"attributes":{"name":"Leonard Homenick-Gerhold","age":63,"location":"Port Claudiestead"}},{"attributes":{"name":"Donna McLaughlin","age":71,"location":"Missoula"}},{"attributes":{"name":"Zane Daugherty","age":40,"location":"South Marley"}},{"attributes":{"name":"Mary Medhurst","age":29,"location":"Palm Desert"}},{"attributes":{"name":"Viola Walker-Schuster","age":71,"location":"Roxanefield"}},{"attributes":{"name":"Patrick Breitenberg","age":80,"location":"Fort Jamel"}},{"attributes":{"name":"Larry Leuschke","age":66,"location":"North Damien"}},{"attributes":{"name":"Nadine Moore","age":74,"location":"Rodriguezfurt"}},{"attributes":{"name":"Patricia Herman","age":18,"location":"North Erwinborough"}},{"attributes":{"name":"Ann Rosenbaum","age":21,"location":"Farrellberg"}},{"attributes":{"name":"Naomi Braun","age":23,"location":"Victorville"}},{"attributes":{"name":"Clarence Klein","age":34,"location":"Freddiemouth"}},{"attributes":{"name":"Dr. Arnold Kuhlman","age":39,"location":"North Levishire"}},{"attributes":{"name":"Mr. Ken Bayer","age":37,"location":"Monterey Park"}},{"attributes":{"name":"Terry Trantow","age":71,"location":"Kiehnland"}},{"attributes":{"name":"Patricia Baumbach","age":21,"location":"Rochester Hills"}},{"attributes":{"name":"Jim Wisoky","age":27,"location":"Bernierburgh"}},{"attributes":{"name":"Weldon Lindgren","age":61,"location":"Kirstenstad"}},{"attributes":{"name":"Arielle Jacobi","age":38,"location":"Arvada"}},{"attributes":{"name":"Earnest Bauch","age":25,"location":"Rosalindfort"}},{"attributes":{"name":"Mrs. Jamey Block","age":61,"location":"South Jarodstad"}},{"attributes":{"name":"Abel Zboncak","age":62,"location":"Larsonland"}},{"attributes":{"name":"Kurt Wilderman","age":46,"location":"Rosannaville"}},{"attributes":{"name":"Ms. Jeffrey Kshlerin","age":41,"location":"Aufderharton"}},{"attributes":{"name":"Cecilia Marquardt","age":69,"location":"Mariahhaven"}},{"attributes":{"name":"Cecil Gerhold","age":51,"location":"Dearborn"}},{"attributes":{"name":"Aubrey Williamson","age":55,"location":"Newport Beach"}},{"attributes":{"name":"Ramiro Mraz","age":75,"location":"Baumbachstead"}},{"attributes":{"name":"Leslie Gleichner","age":18,"location":"Sashaburgh"}},{"attributes":{"name":"Lynn Emmerich","age":59,"location":"Strosintown"}},{"attributes":{"name":"Rafael Kling","age":34,"location":"New Margotworth"}},{"attributes":{"name":"Ashton Franecki","age":80,"location":"West Randal"}},{"attributes":{"name":"Mr. Jim McDermott","age":69,"location":"South Leonel"}},{"attributes":{"name":"Wallace Krajcik","age":57,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Angus White","age":43,"location":"Port Deshaun"}},{"attributes":{"name":"Zelma Considine","age":63,"location":"West Vilmaside"}},{"attributes":{"name":"Travis Bogisich","age":80,"location":"Juliaburgh"}},{"attributes":{"name":"Sigrid Rogahn","age":35,"location":"East Cooper"}},{"attributes":{"name":"Dee Schinner","age":48,"location":"Bernhardstad"}},{"attributes":{"name":"Larissa Veum","age":30,"location":"Marshallstead"}},{"attributes":{"name":"Dylan Moore","age":24,"location":"East Rosetta"}},{"attributes":{"name":"Stewart Kutch","age":25,"location":"Medhurstmouth"}},{"attributes":{"name":"Leslie Ebert","age":64,"location":"New Dorisland"}},{"attributes":{"name":"Darin Lebsack III","age":31,"location":"Schillerville"}},{"attributes":{"name":"Justine Schumm","age":46,"location":"Raoulcester"}},{"attributes":{"name":"Timothy Abshire","age":67,"location":"Sunrise"}},{"attributes":{"name":"Devin Ruecker","age":28,"location":"Ziemecester"}},{"attributes":{"name":"Norma Senger","age":46,"location":"Fannyland"}},{"attributes":{"name":"Darla Hayes","age":50,"location":"Murfreesboro"}},{"attributes":{"name":"Tamara Von","age":52,"location":"Lake Aurelia"}},{"attributes":{"name":"Dario Donnelly","age":38,"location":"Carmelaside"}},{"attributes":{"name":"Deborah Nitzsche","age":41,"location":"South Lianaboro"}},{"attributes":{"name":"Derrick Gibson","age":67,"location":"Port Rosalindaside"}},{"attributes":{"name":"Erica Bogisich","age":57,"location":"Santa Clara"}},{"attributes":{"name":"Forrest Dickens","age":68,"location":"Diamond Bar"}},{"attributes":{"name":"Louisa Medhurst","age":57,"location":"Thielview"}},{"attributes":{"name":"Cleta Purdy I","age":63,"location":"New Jamelboro"}},{"attributes":{"name":"Thora Smith","age":23,"location":"Fort Hailey"}},{"attributes":{"name":"Sylvia Hegmann","age":65,"location":"Urbandale"}},{"attributes":{"name":"Tonya Paucek","age":36,"location":"South Demarcus"}},{"attributes":{"name":"Judith Becker","age":37,"location":"West Valerieborough"}},{"attributes":{"name":"Miss Irene Boyle PhD","age":64,"location":"Lake Hudson"}},{"attributes":{"name":"Victoria Parisian","age":69,"location":"Levittown"}},{"attributes":{"name":"Bailey Tillman","age":37,"location":"Ashtynburgh"}},{"attributes":{"name":"Delbert Rau","age":59,"location":"West Destinyhaven"}},{"attributes":{"name":"Dr. Domingo Johnson","age":51,"location":"Ellicott City"}},{"attributes":{"name":"Araceli Buckridge","age":63,"location":"Fort Maia"}},{"attributes":{"name":"Junior Collins","age":72,"location":"Pollichmouth"}},{"attributes":{"name":"Noelia Gutkowski","age":49,"location":"South Sabrynaview"}},{"attributes":{"name":"Kristen Bruen","age":58,"location":"Port Johnniefort"}},{"attributes":{"name":"Brad Farrell","age":77,"location":"Kerlukefield"}},{"attributes":{"name":"Daisy Mills","age":34,"location":"Paradise"}},{"attributes":{"name":"Tracey Braun MD","age":72,"location":"San Antonio"}},{"attributes":{"name":"Maynard Gusikowski","age":47,"location":"Willfort"}},{"attributes":{"name":"Dominic Schiller","age":75,"location":"North Ewaldcester"}},{"attributes":{"name":"Loren Upton","age":69,"location":"Lavonview"}},{"attributes":{"name":"Gloria Wilkinson","age":28,"location":"East Agnes"}},{"attributes":{"name":"Marcelina Bechtelar PhD","age":40,"location":"Marysville"}},{"attributes":{"name":"Miss Elwyn Emmerich","age":53,"location":"Leschtown"}},{"attributes":{"name":"Elisa McKenzie","age":50,"location":"Dachfort"}},{"attributes":{"name":"Ms. Erma Koepp","age":22,"location":"Luettgenside"}},{"attributes":{"name":"Brandi Vandervort II","age":71,"location":"Nathanaeltown"}},{"attributes":{"name":"Amalia Thompson Jr.","age":37,"location":"Sengershire"}},{"attributes":{"name":"Dr. Hugh Mante","age":70,"location":"Fort Prudence"}},{"attributes":{"name":"Myra Leffler","age":63,"location":"Izabellafield"}},{"attributes":{"name":"Homer Abbott-Schowalter","age":28,"location":"North Jeff"}},{"attributes":{"name":"Brad Klocko","age":46,"location":"Nikolaustown"}},{"attributes":{"name":"Ray Berge","age":77,"location":"Fort Abbyshire"}},{"attributes":{"name":"Meredith Durgan","age":63,"location":"Luettgenworth"}},{"attributes":{"name":"Mr. Dale Botsford","age":50,"location":"Lueilwitzburgh"}},{"attributes":{"name":"Tierra Volkman","age":58,"location":"Kennithfurt"}},{"attributes":{"name":"Jaren Kessler","age":75,"location":"Estelfurt"}},{"attributes":{"name":"Dianne Kertzmann","age":72,"location":"Reillyshire"}},{"attributes":{"name":"Malcolm Rogahn","age":59,"location":"North Orie"}},{"attributes":{"name":"Miss Carroll Zemlak","age":53,"location":"Buffalo Grove"}},{"attributes":{"name":"Alfonso Schimmel","age":24,"location":"North Linwood"}},{"attributes":{"name":"Pearl Bogan","age":55,"location":"Port Trevor"}},{"attributes":{"name":"Henri Funk","age":61,"location":"North Howell"}},{"attributes":{"name":"Tony Johns","age":41,"location":"Olsonshire"}},{"attributes":{"name":"Silvia Herzog Jr.","age":63,"location":"St. Louis"}},{"attributes":{"name":"Freddie Kuhic","age":37,"location":"South Jaida"}},{"attributes":{"name":"Tiara Heathcote","age":47,"location":"Boehmfurt"}},{"attributes":{"name":"Sherry Reichert","age":45,"location":"Drakeshire"}},{"attributes":{"name":"Noah Lemke","age":18,"location":"McKenzieworth"}},{"attributes":{"name":"Germaine Deckow","age":67,"location":"Jacobistead"}},{"attributes":{"name":"Ms. Sandra Ward","age":79,"location":"Glendale"}},{"attributes":{"name":"Jana Batz","age":42,"location":"East Ruthe"}},{"attributes":{"name":"Daphney Schmidt","age":73,"location":"Port Brian"}},{"attributes":{"name":"Liliana Kutch PhD","age":38,"location":"Rathborough"}},{"attributes":{"name":"Agnes Murazik Jr.","age":37,"location":"South Theron"}},{"attributes":{"name":"Bertha Towne","age":52,"location":"Kelsiport"}},{"attributes":{"name":"Willard Brown","age":58,"location":"Fort Ambrosemouth"}},{"attributes":{"name":"Cheyenne Heathcote-Kulas","age":78,"location":"Camrynland"}},{"attributes":{"name":"Lucy Breitenberg","age":64,"location":"Javierside"}},{"attributes":{"name":"Emelie Buckridge","age":18,"location":"Fort Roxane"}},{"attributes":{"name":"Carrie Stanton","age":21,"location":"East Vicenta"}},{"attributes":{"name":"Rufus Kertzmann","age":23,"location":"New Aliceville"}},{"attributes":{"name":"Amanda Padberg","age":55,"location":"New Isac"}},{"attributes":{"name":"Mr. Ivan Olson","age":79,"location":"McLaughlinton"}},{"attributes":{"name":"Miss Whitney Kautzer","age":43,"location":"Lake Margret"}},{"attributes":{"name":"Rosa Ratke","age":30,"location":"Maidafurt"}},{"attributes":{"name":"Leanne MacGyver","age":26,"location":"Jacklynburgh"}},{"attributes":{"name":"Clara Keeling","age":55,"location":"Rethastead"}},{"attributes":{"name":"Mrs. Andrea McDermott","age":78,"location":"Port Guy"}},{"attributes":{"name":"Pat Erdman","age":79,"location":"West Jewelview"}},{"attributes":{"name":"Kennedy Effertz","age":77,"location":"Fort Savanna"}},{"attributes":{"name":"Toni Homenick","age":27,"location":"Blakechester"}},{"attributes":{"name":"Antoinette Willms","age":62,"location":"Bradtkebury"}},{"attributes":{"name":"Wesley Kunze-Abbott","age":19,"location":"New Ignatiusworth"}},{"attributes":{"name":"Mr. Clayton Kerluke","age":55,"location":"Stammboro"}},{"attributes":{"name":"Harry Mosciski","age":56,"location":"North Aletha"}},{"attributes":{"name":"Loyal Bednar","age":30,"location":"Othastad"}},{"attributes":{"name":"Arturo Bernhard","age":27,"location":"Lake Marley"}},{"attributes":{"name":"Yessenia Hauck","age":65,"location":"East Rylan"}},{"attributes":{"name":"Tomas Pagac","age":75,"location":"North Lauderdale"}},{"attributes":{"name":"Leroy Lakin","age":39,"location":"West Katharina"}},{"attributes":{"name":"Brisa Zieme-Hermann","age":21,"location":"Judeborough"}},{"attributes":{"name":"Kim Senger MD","age":52,"location":"Downey"}},{"attributes":{"name":"Brian Gibson","age":57,"location":"Kundeport"}},{"attributes":{"name":"Mr. Vance Ferry","age":30,"location":"Fort Sethworth"}},{"attributes":{"name":"Dr. Sigmund Bartoletti","age":40,"location":"East Nathanaelland"}},{"attributes":{"name":"Ana Jaskolski","age":32,"location":"Gabrielfort"}},{"attributes":{"name":"Jody VonRueden","age":46,"location":"Bolingbrook"}},{"attributes":{"name":"Becky Schinner DDS","age":29,"location":"Mitchellstad"}},{"attributes":{"name":"Heather Hintz","age":27,"location":"Cartermouth"}},{"attributes":{"name":"Henriette Gottlieb","age":28,"location":"Baumbachtown"}},{"attributes":{"name":"Jackson Conroy","age":20,"location":"Wilkinsonhaven"}},{"attributes":{"name":"Ismael Ritchie DDS","age":37,"location":"Trompshire"}},{"attributes":{"name":"Miller Gutmann PhD","age":34,"location":"New Lesterville"}},{"attributes":{"name":"Myrtle Kunde-Reinger","age":42,"location":"Jaredton"}},{"attributes":{"name":"Sarah Mitchell","age":74,"location":"Fort Traceybury"}},{"attributes":{"name":"Toni Streich","age":78,"location":"Opheliafort"}},{"attributes":{"name":"Tim Pfeffer","age":46,"location":"Port Hoseaview"}},{"attributes":{"name":"Sherry Nikolaus DDS","age":36,"location":"Littlebury"}},{"attributes":{"name":"Precious Carroll","age":71,"location":"Hintztown"}},{"attributes":{"name":"Gene Hansen","age":56,"location":"Kirlinside"}},{"attributes":{"name":"Icie Mohr Sr.","age":65,"location":"Moorefurt"}},{"attributes":{"name":"Jamie Bartoletti-Wehner","age":46,"location":"New Monte"}},{"attributes":{"name":"Charlene Dickinson II","age":77,"location":"Felicitymouth"}},{"attributes":{"name":"Evans Wyman","age":46,"location":"Idaho Falls"}},{"attributes":{"name":"Rosa Lang","age":64,"location":"Chino Hills"}},{"attributes":{"name":"Dr. Kenna Cassin DDS","age":45,"location":"Port Susanna"}},{"attributes":{"name":"Amari Mohr","age":73,"location":"West Eviecester"}},{"attributes":{"name":"Clayton Stark","age":23,"location":"Downers Grove"}},{"attributes":{"name":"Dr. Roberto Casper","age":31,"location":"Shieldsfort"}},{"attributes":{"name":"Crystal Little","age":49,"location":"Garden Grove"}},{"attributes":{"name":"Emilio Nitzsche","age":50,"location":"Lake Rutheworth"}},{"attributes":{"name":"Warren Rosenbaum","age":24,"location":"New Emory"}},{"attributes":{"name":"Kieran Block","age":21,"location":"Jackshire"}},{"attributes":{"name":"Alberta Goyette","age":22,"location":"West Yvettebury"}},{"attributes":{"name":"Orin Upton","age":71,"location":"Fort Cooperville"}},{"attributes":{"name":"Lester Ankunding","age":38,"location":"North Eddchester"}},{"attributes":{"name":"Kasandra Thompson","age":48,"location":"Marvincester"}},{"attributes":{"name":"Brice Rogahn","age":55,"location":"Lake Wilbert"}},{"attributes":{"name":"Randall Dickinson","age":28,"location":"Gillianport"}},{"attributes":{"name":"Shanel Rosenbaum","age":76,"location":"East Ricardo"}},{"attributes":{"name":"Josh Predovic","age":44,"location":"Altheaport"}},{"attributes":{"name":"Connie Lebsack","age":18,"location":"East Laurianne"}},{"attributes":{"name":"Darion Bailey","age":44,"location":"Norman"}},{"attributes":{"name":"Guy Ward II","age":23,"location":"South Brisashire"}},{"attributes":{"name":"Mrs. Julia Mante V","age":60,"location":"North Cristian"}},{"attributes":{"name":"Damien Olson","age":49,"location":"Malindabury"}},{"attributes":{"name":"Emanuel Hoppe","age":74,"location":"Port Declanboro"}},{"attributes":{"name":"Angie Reynolds","age":26,"location":"Port Bulah"}},{"attributes":{"name":"Mrs. Tasha Brekke II","age":57,"location":"Enidton"}},{"attributes":{"name":"John Renner","age":73,"location":"McCulloughfurt"}},{"attributes":{"name":"Delores Balistreri","age":72,"location":"San Ramon"}},{"attributes":{"name":"Katlynn Witting I","age":35,"location":"North Malinda"}},{"attributes":{"name":"Dr. Stuart Nikolaus","age":21,"location":"Giovannyland"}},{"attributes":{"name":"Raul Abernathy","age":61,"location":"Lacyboro"}},{"attributes":{"name":"Emanuel Fritsch","age":34,"location":"Bernhardtown"}},{"attributes":{"name":"Penny Konopelski","age":36,"location":"Brekkemouth"}},{"attributes":{"name":"Abraham Hauck","age":70,"location":"West Alec"}},{"attributes":{"name":"Jeffery Medhurst","age":70,"location":"Port Ozella"}},{"attributes":{"name":"Colin Maggio","age":48,"location":"Marksland"}},{"attributes":{"name":"Isai Hickle","age":58,"location":"Bertside"}},{"attributes":{"name":"Mrs. Ivory O'Connell-Wisozk","age":61,"location":"Bodefurt"}},{"attributes":{"name":"Bernadette Gusikowski","age":59,"location":"Athens-Clarke County"}},{"attributes":{"name":"Olive Braun","age":39,"location":"Lake Jorge"}},{"attributes":{"name":"Joyce Beahan","age":24,"location":"Delray Beach"}},{"attributes":{"name":"Ray Dooley","age":79,"location":"North Gianni"}},{"attributes":{"name":"Rosamond Price","age":76,"location":"East Geo"}},{"attributes":{"name":"Patricia Blanda","age":45,"location":"Port Margotshire"}},{"attributes":{"name":"Keith Oberbrunner","age":50,"location":"Floydborough"}},{"attributes":{"name":"Rachael Witting","age":53,"location":"Jefferychester"}},{"attributes":{"name":"Pete Brown","age":21,"location":"South Anaville"}},{"attributes":{"name":"Felipe Stokes","age":56,"location":"New Bradleyburgh"}},{"attributes":{"name":"Bryant Hills","age":50,"location":"Davie"}},{"attributes":{"name":"Vincent Kuhic","age":32,"location":"Osbaldoville"}},{"attributes":{"name":"Bo Crist","age":45,"location":"Lorineworth"}},{"attributes":{"name":"Terrell Altenwerth-Osinski","age":28,"location":"Lake Merlinstead"}},{"attributes":{"name":"Kendrick Schroeder","age":29,"location":"Hubertboro"}},{"attributes":{"name":"Lura Beer","age":40,"location":"Wehnerport"}},{"attributes":{"name":"Lowell Trantow","age":63,"location":"Imatown"}},{"attributes":{"name":"Dr. Ricardo Rolfson","age":41,"location":"North Ryleeport"}},{"attributes":{"name":"Leone Cormier","age":29,"location":"Bartonborough"}},{"attributes":{"name":"Kristina Langosh","age":66,"location":"South Rosalee"}},{"attributes":{"name":"Ms. Bill Yost","age":18,"location":"New Chet"}},{"attributes":{"name":"Yvette Wintheiser","age":20,"location":"Omashire"}},{"attributes":{"name":"Leanna Denesik","age":59,"location":"Richiechester"}},{"attributes":{"name":"Nick Haley-Kautzer","age":46,"location":"New Joeystead"}},{"attributes":{"name":"Mr. Gerard Wiza Jr.","age":49,"location":"West Jon"}},{"attributes":{"name":"Susan Kiehn","age":59,"location":"West Des Moines"}},{"attributes":{"name":"Ms. Dominic Heller","age":43,"location":"Cronafurt"}},{"attributes":{"name":"Estrella Abbott","age":47,"location":"North Rodrigochester"}},{"attributes":{"name":"Brent Schulist","age":73,"location":"Gloverfort"}},{"attributes":{"name":"Dr. Evans Ebert","age":80,"location":"Port Ludie"}},{"attributes":{"name":"Phoebe Romaguera","age":21,"location":"North Narciso"}},{"attributes":{"name":"Jacinthe Keeling","age":45,"location":"Katarinaton"}},{"attributes":{"name":"Tyreek Beer MD","age":39,"location":"South Nealshire"}},{"attributes":{"name":"Grace Mills","age":58,"location":"Fall River"}},{"attributes":{"name":"Bobby Bartoletti","age":79,"location":"Port Jacynthe"}},{"attributes":{"name":"Delores Towne","age":36,"location":"Mathildeborough"}},{"attributes":{"name":"Miss Rubie Fadel","age":75,"location":"Reston"}},{"attributes":{"name":"Rolando Considine","age":19,"location":"Mooreton"}},{"attributes":{"name":"Jeremy Kessler-Deckow","age":20,"location":"North Adaborough"}},{"attributes":{"name":"Berneice Spinka","age":24,"location":"North Damianport"}},{"attributes":{"name":"Adalberto Hudson","age":66,"location":"Greenholtport"}},{"attributes":{"name":"Isaac Schaefer","age":58,"location":"Rosariohaven"}},{"attributes":{"name":"Mae Mayert","age":49,"location":"Port Tamiahaven"}},{"attributes":{"name":"Mr. Jena Kshlerin","age":20,"location":"Julietfurt"}},{"attributes":{"name":"Trisha Reilly","age":56,"location":"Garretview"}},{"attributes":{"name":"Vance Cremin","age":32,"location":"Altenwerthmouth"}},{"attributes":{"name":"Saul Kulas","age":47,"location":"Herzogstead"}},{"attributes":{"name":"Bertha Witting","age":54,"location":"Lake Andreanne"}},{"attributes":{"name":"Diane Morar","age":50,"location":"South Pablo"}},{"attributes":{"name":"Marcia Schuster","age":22,"location":"East Camilleworth"}},{"attributes":{"name":"Hillary Robel","age":47,"location":"Schmittworth"}},{"attributes":{"name":"Cleta Flatley","age":66,"location":"East Otha"}},{"attributes":{"name":"Mae Windler","age":73,"location":"South Adellstad"}},{"attributes":{"name":"Antonette Gorczany","age":61,"location":"Port Dariana"}},{"attributes":{"name":"Elroy Christiansen","age":59,"location":"Johnboro"}},{"attributes":{"name":"Amos Turcotte","age":46,"location":"Port Emmie"}},{"attributes":{"name":"Terrence Mann","age":27,"location":"New Alaina"}},{"attributes":{"name":"Estefania Koss","age":29,"location":"New Addisonborough"}},{"attributes":{"name":"Corene Casper","age":44,"location":"Wernerfield"}},{"attributes":{"name":"Mr. Cora Beatty","age":74,"location":"Farmington Hills"}},{"attributes":{"name":"Winifred Robel Jr.","age":42,"location":"South Delphia"}},{"attributes":{"name":"Nikita Leannon","age":46,"location":"South Arlo"}},{"attributes":{"name":"Levi Olson","age":20,"location":"Westland"}},{"attributes":{"name":"Micheal Bergstrom","age":19,"location":"North Keshawn"}},{"attributes":{"name":"Erling Lesch","age":36,"location":"Nitzscheton"}},{"attributes":{"name":"Lucas Lockman","age":75,"location":"Sawaynville"}},{"attributes":{"name":"Daniel O'Hara-Streich","age":45,"location":"South Lillieside"}},{"attributes":{"name":"Izabella Batz","age":45,"location":"Gorczanyland"}},{"attributes":{"name":"Krista Wunsch","age":30,"location":"New Reyesfurt"}},{"attributes":{"name":"Ivan Heidenreich-Morissette","age":27,"location":"Charlotte"}},{"attributes":{"name":"Mabel Funk","age":79,"location":"Port Elta"}},{"attributes":{"name":"Roman Greenholt PhD","age":30,"location":"Everettview"}},{"attributes":{"name":"Horace Dooley","age":28,"location":"Santa Clara"}},{"attributes":{"name":"Doris Schamberger","age":75,"location":"Port Monserratfurt"}},{"attributes":{"name":"Walter Breitenberg","age":36,"location":"Port Roberta"}},{"attributes":{"name":"Karla McClure","age":55,"location":"Lakeland"}},{"attributes":{"name":"Joyce Tremblay","age":43,"location":"Toms River"}},{"attributes":{"name":"Dr. Janice Ondricka","age":76,"location":"West Ayanastad"}},{"attributes":{"name":"Napoleon Collins","age":50,"location":"Fort Teresa"}},{"attributes":{"name":"Grayson Schiller","age":22,"location":"Cassinhaven"}},{"attributes":{"name":"Mae Jast","age":26,"location":"Prosaccostad"}},{"attributes":{"name":"Marcellus Bradtke","age":56,"location":"Lake Theresia"}},{"attributes":{"name":"Rosalyn Will","age":39,"location":"East Caseycester"}},{"attributes":{"name":"Alexanne Bernier","age":52,"location":"Delaneystead"}},{"attributes":{"name":"Onie Beier Sr.","age":30,"location":"Parkerfield"}},{"attributes":{"name":"Erik Mante","age":37,"location":"North Annamarie"}},{"attributes":{"name":"Hattie Stiedemann","age":34,"location":"Flower Mound"}},{"attributes":{"name":"Jasmine Walter","age":68,"location":"Felicitatown"}},{"attributes":{"name":"Margarita Schuster PhD","age":46,"location":"Boscoside"}},{"attributes":{"name":"Kasey Kertzmann","age":40,"location":"Quincy"}},{"attributes":{"name":"Eve Schroeder Jr.","age":47,"location":"South Cecilfort"}},{"attributes":{"name":"Mr. Mozelle Haag-Friesen III","age":40,"location":"Lake Joseph"}},{"attributes":{"name":"Carissa Lebsack","age":23,"location":"North Raven"}},{"attributes":{"name":"Cedrick Wintheiser","age":22,"location":"DuBuquestad"}},{"attributes":{"name":"Margaret Mills-Harber MD","age":32,"location":"Boehmstad"}},{"attributes":{"name":"Wilson Kassulke","age":32,"location":"Lake Pierreburgh"}},{"attributes":{"name":"Vernon Lehner","age":21,"location":"New Joannie"}},{"attributes":{"name":"Clifton Dickens","age":35,"location":"Idaho Falls"}},{"attributes":{"name":"Tyler Stamm","age":70,"location":"East Grayceton"}},{"attributes":{"name":"Rubye Legros","age":39,"location":"West Myah"}},{"attributes":{"name":"Stella Runolfsdottir","age":50,"location":"Corpus Christi"}},{"attributes":{"name":"Jose Lynch","age":67,"location":"Kozeyhaven"}},{"attributes":{"name":"Crystal Feeney","age":47,"location":"South Norris"}},{"attributes":{"name":"Mr. Amos Thiel","age":18,"location":"Cedar Rapids"}},{"attributes":{"name":"Cleo Wuckert","age":34,"location":"Nevaborough"}},{"attributes":{"name":"Merle Hirthe","age":25,"location":"Penelopeworth"}},{"attributes":{"name":"Ron Zemlak","age":43,"location":"Racine"}},{"attributes":{"name":"Aracely Gislason","age":32,"location":"Natcester"}},{"attributes":{"name":"Mariela Swaniawski","age":36,"location":"Watersfurt"}},{"attributes":{"name":"Eula Jast Sr.","age":20,"location":"Louisaburgh"}},{"attributes":{"name":"Mrs. Jesse Mann","age":55,"location":"Mission Viejo"}},{"attributes":{"name":"Deshawn Stokes","age":42,"location":"Monterey Park"}},{"attributes":{"name":"Tyrell Kerluke","age":22,"location":"New Lutherview"}},{"attributes":{"name":"Rene O'Connell IV","age":69,"location":"Kochside"}},{"attributes":{"name":"Megan Kulas","age":43,"location":"Fargo"}},{"attributes":{"name":"Mrs. Joelle Schoen","age":40,"location":"Santa Cruz"}},{"attributes":{"name":"Don Barton","age":77,"location":"Fort Hayley"}},{"attributes":{"name":"Sterling Spencer","age":67,"location":"Port Travisberg"}},{"attributes":{"name":"Jill Klocko","age":72,"location":"Port Peyton"}},{"attributes":{"name":"Enrique Rau","age":78,"location":"Carterhaven"}},{"attributes":{"name":"Santos Feil","age":68,"location":"Sybleville"}},{"attributes":{"name":"Miss Jacynthe Larkin Sr.","age":48,"location":"Stehrtown"}},{"attributes":{"name":"Krista Jerde","age":24,"location":"Port Elyse"}},{"attributes":{"name":"Dr. Archibald Hegmann","age":63,"location":"Haylieview"}},{"attributes":{"name":"Amanda Schaefer","age":26,"location":"Wuckertport"}},{"attributes":{"name":"Johnnie Schmeler","age":31,"location":"Long Beach"}},{"attributes":{"name":"Mr. Shayna Hahn","age":61,"location":"Robertsland"}},{"attributes":{"name":"Bethany Bartell","age":28,"location":"North Theresiabury"}},{"attributes":{"name":"Miss Daisha Heidenreich","age":75,"location":"Feeneystead"}},{"attributes":{"name":"Creola Moore","age":42,"location":"Schowalterworth"}},{"attributes":{"name":"Delores Parker","age":24,"location":"Jenningsbury"}},{"attributes":{"name":"Danny Yost","age":25,"location":"Dooleyville"}},{"attributes":{"name":"Mr. Tommie Bailey","age":42,"location":"Chino"}},{"attributes":{"name":"Ms. Francis Dooley","age":21,"location":"Astridport"}},{"attributes":{"name":"Danielle Skiles","age":20,"location":"Lake Hailee"}},{"attributes":{"name":"Mrs. Andrea Runte-Gleichner","age":23,"location":"Fort Esta"}},{"attributes":{"name":"Burdette Mohr","age":34,"location":"New Lauren"}},{"attributes":{"name":"Melvina Keebler","age":51,"location":"Port Stewartchester"}},{"attributes":{"name":"Melinda Rath","age":50,"location":"Averyworth"}},{"attributes":{"name":"Elwyn Beatty","age":26,"location":"Nestorcester"}},{"attributes":{"name":"Reynold Kub MD","age":62,"location":"Chesapeake"}},{"attributes":{"name":"Roberta Ernser-Kilback","age":76,"location":"East Maidashire"}},{"attributes":{"name":"Leon Kuphal","age":64,"location":"Lake Harleystead"}},{"attributes":{"name":"Edwin Pagac","age":79,"location":"Fort Jennie"}},{"attributes":{"name":"Angelica Hyatt","age":31,"location":"Samirside"}},{"attributes":{"name":"Elliot Kuphal","age":34,"location":"Port Coreneside"}},{"attributes":{"name":"Ms. Muriel Mohr","age":69,"location":"West Sacramento"}},{"attributes":{"name":"Leslie Von DVM","age":57,"location":"Livonia"}},{"attributes":{"name":"Kathleen Kozey","age":23,"location":"Fort Alberg"}},{"attributes":{"name":"Ruby Greenholt","age":67,"location":"Gutkowskiworth"}},{"attributes":{"name":"Chester Sipes","age":25,"location":"San Luis Obispo"}},{"attributes":{"name":"Kaitlin Considine","age":46,"location":"South Emmettworth"}},{"attributes":{"name":"Vivian Lang Sr.","age":28,"location":"Schroederborough"}},{"attributes":{"name":"Chasity Wyman","age":63,"location":"New Karineboro"}},{"attributes":{"name":"Dr. Luke Bins","age":60,"location":"Altenwerthboro"}},{"attributes":{"name":"Lincoln Block","age":67,"location":"Fort Jerald"}},{"attributes":{"name":"Antonetta Brown","age":26,"location":"West Ian"}},{"attributes":{"name":"Eduardo Hayes","age":74,"location":"Lake Ralphfurt"}},{"attributes":{"name":"Mr. Maureen Nolan","age":51,"location":"Port Ignacio"}},{"attributes":{"name":"Jay Haley","age":32,"location":"San Jacinto"}},{"attributes":{"name":"Alverta Watsica","age":39,"location":"Kirkland"}},{"attributes":{"name":"Marco Mayer","age":21,"location":"North Faustino"}},{"attributes":{"name":"Vern Lind","age":76,"location":"New Olliefort"}},{"attributes":{"name":"Glenna Metz","age":21,"location":"Walkerworth"}},{"attributes":{"name":"Clifford Waelchi","age":19,"location":"Boynton Beach"}},{"attributes":{"name":"Jakob Johnson","age":64,"location":"North Arianehaven"}},{"attributes":{"name":"Ollie Yundt","age":79,"location":"Georgetown"}},{"attributes":{"name":"Arturo Nader","age":25,"location":"East Gillian"}},{"attributes":{"name":"Lula Monahan","age":39,"location":"Lakeville"}},{"attributes":{"name":"Merle Von Jr.","age":33,"location":"Wisozkborough"}},{"attributes":{"name":"Domenico Wintheiser","age":30,"location":"Lennyland"}},{"attributes":{"name":"Juwan Weber","age":29,"location":"Charlottesville"}},{"attributes":{"name":"Nettie Rogahn","age":74,"location":"Laguna Niguel"}},{"attributes":{"name":"Alberto Weimann","age":27,"location":"Ricebury"}},{"attributes":{"name":"Miss Angelo Littel","age":43,"location":"Lake Dorisland"}},{"attributes":{"name":"Nathan Gleason","age":54,"location":"Opheliafort"}},{"attributes":{"name":"Ross Boehm","age":58,"location":"Deckowhaven"}},{"attributes":{"name":"Georgia McKenzie-Hane","age":63,"location":"East Easterstead"}},{"attributes":{"name":"Loyal Schoen","age":32,"location":"Lewisville"}},{"attributes":{"name":"Megan Jacobson","age":49,"location":"East Serenityville"}},{"attributes":{"name":"Alexandra Schiller","age":46,"location":"Castro Valley"}},{"attributes":{"name":"Akeem Hermiston","age":58,"location":"Oniemouth"}},{"attributes":{"name":"Jane Reichel","age":37,"location":"Parma"}},{"attributes":{"name":"Araceli Ryan","age":54,"location":"Wellington"}},{"attributes":{"name":"Justin Hoppe","age":50,"location":"Kaceyton"}},{"attributes":{"name":"Jenny White","age":76,"location":"Wendyberg"}},{"attributes":{"name":"Kendrick Grimes","age":59,"location":"O'Konborough"}},{"attributes":{"name":"Juan Daugherty","age":74,"location":"Julianaburgh"}},{"attributes":{"name":"Jamison Wilderman","age":33,"location":"Erickfort"}},{"attributes":{"name":"Maryam Sanford","age":46,"location":"Keeblerville"}},{"attributes":{"name":"Sadie Balistreri","age":46,"location":"Goldnerberg"}},{"attributes":{"name":"Kenya Beier","age":46,"location":"Lake Gertrudestad"}},{"attributes":{"name":"Carolyn Prohaska","age":37,"location":"Kenyonhaven"}},{"attributes":{"name":"Santos Ledner","age":54,"location":"VonRuedentown"}},{"attributes":{"name":"Alison Hoppe","age":73,"location":"Port Stevefurt"}},{"attributes":{"name":"Eleanore Marvin","age":60,"location":"North Coltenside"}},{"attributes":{"name":"Lisa Oberbrunner","age":74,"location":"Fort Reesechester"}},{"attributes":{"name":"Alberto Stiedemann","age":29,"location":"East Evans"}},{"attributes":{"name":"Ms. Tina Aufderhar","age":51,"location":"New Tania"}},{"attributes":{"name":"Frank Dicki","age":62,"location":"Enterprise"}},{"attributes":{"name":"Ena Franey-Lehner","age":21,"location":"Eden Prairie"}},{"attributes":{"name":"Ms. Velma McLaughlin","age":32,"location":"Sauerton"}},{"attributes":{"name":"Ana Nitzsche DVM","age":42,"location":"Lake Angelina"}},{"attributes":{"name":"Kristen Hahn","age":25,"location":"Millscester"}},{"attributes":{"name":"Dwayne Veum","age":63,"location":"New Doyle"}},{"attributes":{"name":"Garret Harris","age":79,"location":"Hollywood"}},{"attributes":{"name":"Andrew Haley","age":36,"location":"Lake Darien"}},{"attributes":{"name":"Molly Upton","age":44,"location":"Pinellas Park"}},{"attributes":{"name":"Ryan McClure III","age":51,"location":"Port Hazleberg"}},{"attributes":{"name":"Elizabeth Reynolds","age":26,"location":"Philadelphia"}},{"attributes":{"name":"Kari Schamberger","age":27,"location":"Lake Greysonville"}},{"attributes":{"name":"Gene Anderson","age":50,"location":"Yundtside"}},{"attributes":{"name":"Antoinette Runolfsson-Lueilwitz","age":75,"location":"Port Selmerberg"}},{"attributes":{"name":"Dewey Stracke","age":53,"location":"East Malindaport"}},{"attributes":{"name":"Aniyah Mayer","age":46,"location":"North Hassanfurt"}},{"attributes":{"name":"Ted Huel","age":31,"location":"Princessside"}},{"attributes":{"name":"Garret Hudson","age":60,"location":"Daughertyville"}},{"attributes":{"name":"Loren Sauer","age":40,"location":"New Britain"}},{"attributes":{"name":"Bernadette Bernhard","age":66,"location":"Fort Brendon"}},{"attributes":{"name":"Joanna Purdy","age":45,"location":"Vivianton"}},{"attributes":{"name":"Samuel Ebert","age":38,"location":"North Margret"}},{"attributes":{"name":"Wilfred Jones","age":46,"location":"East Deborahside"}},{"attributes":{"name":"Devante Hilll","age":44,"location":"Port Jocelynboro"}},{"attributes":{"name":"Dale Raynor DDS","age":37,"location":"Dunwoody"}},{"attributes":{"name":"Delilah Fahey","age":70,"location":"Fort Tomasatown"}},{"attributes":{"name":"Adan Grady","age":57,"location":"Casa Grande"}},{"attributes":{"name":"Elisa Volkman I","age":68,"location":"Gary"}},{"attributes":{"name":"Enrique Murazik","age":42,"location":"McCulloughton"}},{"attributes":{"name":"Mr. Larry Rice","age":77,"location":"Keelingfield"}},{"attributes":{"name":"Flora Herzog","age":35,"location":"Moencester"}},{"attributes":{"name":"Fletcher Lesch IV","age":80,"location":"Port Woodrow"}},{"attributes":{"name":"Mindy Rodriguez","age":52,"location":"North Marcelina"}},{"attributes":{"name":"Cheryl Smitham IV","age":61,"location":"Kallieboro"}},{"attributes":{"name":"Malcolm Pouros","age":38,"location":"Angelatown"}},{"attributes":{"name":"Alberta Rolfson","age":41,"location":"Port Nedburgh"}},{"attributes":{"name":"Maureen Hammes IV","age":32,"location":"Monserratemouth"}},{"attributes":{"name":"Mckenzie Fritsch","age":31,"location":"Lake Timmothy"}},{"attributes":{"name":"Louis Schneider","age":34,"location":"Jennieberg"}},{"attributes":{"name":"Concepcion Bechtelar","age":39,"location":"Fort Elsie"}},{"attributes":{"name":"Gertrude Watsica","age":22,"location":"Salem"}},{"attributes":{"name":"Patti Harvey","age":58,"location":"Greenshire"}},{"attributes":{"name":"Joel Powlowski","age":41,"location":"West Daniellebury"}},{"attributes":{"name":"Ms. Ruth Lind-Towne","age":21,"location":"New Maximillia"}},{"attributes":{"name":"Benjamin Stanton","age":22,"location":"Dickiland"}},{"attributes":{"name":"Cecil Hermann","age":39,"location":"Connorburgh"}},{"attributes":{"name":"Mrs. Madeline Wehner","age":51,"location":"Elsieport"}},{"attributes":{"name":"Itzel Quitzon III","age":32,"location":"South Cleveland"}},{"attributes":{"name":"Eladio Purdy","age":37,"location":"South Amos"}},{"attributes":{"name":"Becky Beatty","age":71,"location":"Darrellborough"}},{"attributes":{"name":"Jackie Schumm","age":41,"location":"Bozeman"}},{"attributes":{"name":"Sydney Stokes","age":43,"location":"Kristopherfield"}},{"attributes":{"name":"Israel Quigley","age":59,"location":"Abshiretown"}},{"attributes":{"name":"Jay Lynch","age":44,"location":"South Sanfordshire"}},{"attributes":{"name":"Miss Connie Bosco","age":32,"location":"North Ianside"}},{"attributes":{"name":"Jenna Hermann","age":73,"location":"Liamburgh"}},{"attributes":{"name":"Gust Moen I","age":19,"location":"Fort Reagan"}},{"attributes":{"name":"Sylvan Schmeler","age":51,"location":"Wilsonmouth"}},{"attributes":{"name":"Bridget Hudson","age":75,"location":"The Woodlands"}},{"attributes":{"name":"Dave Parker","age":48,"location":"North Lurline"}},{"attributes":{"name":"Matt Marvin","age":46,"location":"Fort Alexismouth"}},{"attributes":{"name":"Wilson Beer","age":67,"location":"El Paso"}},{"attributes":{"name":"Roland O'Conner","age":72,"location":"West Ellen"}},{"attributes":{"name":"Erma Williamson V","age":73,"location":"Maximechester"}},{"attributes":{"name":"Curtis Kessler","age":22,"location":"Briellefort"}},{"attributes":{"name":"Skyla Hintz DDS","age":72,"location":"Fridachester"}},{"attributes":{"name":"Dr. Malachi Mraz","age":73,"location":"McKenziestead"}},{"attributes":{"name":"Pearline McKenzie","age":65,"location":"Carleybury"}},{"attributes":{"name":"Paula Thompson","age":41,"location":"Hermistonchester"}},{"attributes":{"name":"Nora Cremin","age":50,"location":"Christiansenborough"}},{"attributes":{"name":"Cary O'Hara","age":49,"location":"Addisonport"}},{"attributes":{"name":"Allen Wisoky","age":33,"location":"Priceport"}},{"attributes":{"name":"Lorenzo Auer","age":50,"location":"East Vernon"}},{"attributes":{"name":"Michael Stamm","age":23,"location":"Bartonside"}},{"attributes":{"name":"Larry Hermiston","age":41,"location":"Zoefort"}},{"attributes":{"name":"Dr. Gordon Pagac","age":38,"location":"Boscoland"}},{"attributes":{"name":"Rick Skiles","age":58,"location":"Bogisichfield"}},{"attributes":{"name":"Donnie Balistreri","age":36,"location":"Mohrfurt"}},{"attributes":{"name":"Cristian Feeney Jr.","age":74,"location":"Lake Carley"}},{"attributes":{"name":"Rodolfo Wisozk","age":26,"location":"Fort Claudeberg"}},{"attributes":{"name":"Sharon Rodriguez","age":45,"location":"Hintzfort"}},{"attributes":{"name":"Miriam Langosh Sr.","age":61,"location":"New Shakirastead"}},{"attributes":{"name":"Eloise Fadel-Cummings","age":37,"location":"Jessside"}},{"attributes":{"name":"Miss Elijah Purdy","age":49,"location":"Junefield"}},{"attributes":{"name":"Terri Bosco","age":60,"location":"Pittsburgh"}},{"attributes":{"name":"Makenzie Dickens","age":57,"location":"Baileychester"}},{"attributes":{"name":"Kip Weimann","age":32,"location":"North Darrenfurt"}},{"attributes":{"name":"Shari Zemlak","age":31,"location":"Goodwinburgh"}},{"attributes":{"name":"Andy Breitenberg","age":59,"location":"South Ruthton"}},{"attributes":{"name":"Rhoda Armstrong","age":73,"location":"West Scottiemouth"}},{"attributes":{"name":"Denise Ryan","age":80,"location":"South Caden"}},{"attributes":{"name":"Donald Raynor","age":22,"location":"Orvilleworth"}},{"attributes":{"name":"Kayla Wehner","age":73,"location":"Hagenesboro"}},{"attributes":{"name":"Alf Franecki","age":44,"location":"Fort John"}},{"attributes":{"name":"Ryleigh Witting","age":58,"location":"Lebsackborough"}},{"attributes":{"name":"Alexandra Rosenbaum","age":64,"location":"Marquesfurt"}},{"attributes":{"name":"Arturo Balistreri","age":41,"location":"Julieton"}},{"attributes":{"name":"Jacqueline Hoppe","age":18,"location":"Ankundingcester"}},{"attributes":{"name":"Gregg Hegmann","age":40,"location":"East Alexandraland"}},{"attributes":{"name":"Doreen Koelpin","age":32,"location":"Lake Avery"}},{"attributes":{"name":"Evalyn Mann","age":55,"location":"Zemlakburgh"}},{"attributes":{"name":"Glennie Howe","age":50,"location":"South Jaron"}},{"attributes":{"name":"Santos Glover","age":69,"location":"Schadenborough"}},{"attributes":{"name":"Gianni Keebler","age":70,"location":"Romamouth"}},{"attributes":{"name":"Juanita Jaskolski","age":30,"location":"Eagan"}},{"attributes":{"name":"Alejandrin Ullrich","age":69,"location":"Dorthyton"}},{"attributes":{"name":"Christine Pollich DDS","age":40,"location":"Portermouth"}},{"attributes":{"name":"Ulises McCullough","age":76,"location":"Evanston"}},{"attributes":{"name":"Loma Gerhold Jr.","age":62,"location":"South Janisfield"}},{"attributes":{"name":"Melissa Miller","age":36,"location":"Predovichaven"}},{"attributes":{"name":"Ricky Moore","age":66,"location":"Portland"}},{"attributes":{"name":"Brenda Weimann","age":80,"location":"Mistyburgh"}},{"attributes":{"name":"Felix Smitham","age":26,"location":"Lancaster"}},{"attributes":{"name":"Viola Boyer I","age":76,"location":"North Jaycee"}},{"attributes":{"name":"Ms. Laverne Weissnat","age":31,"location":"Port Jonatan"}},{"attributes":{"name":"Faye Bosco","age":18,"location":"Bednarton"}},{"attributes":{"name":"Dr. Collin Sawayn","age":31,"location":"Lunashire"}},{"attributes":{"name":"Brenda Schamberger","age":55,"location":"Danieltown"}},{"attributes":{"name":"Kurt Lesch","age":73,"location":"New Keshaun"}},{"attributes":{"name":"Ms. Madonna Bergnaum","age":54,"location":"Newport Beach"}},{"attributes":{"name":"Katelynn Schulist","age":66,"location":"Leonardbury"}},{"attributes":{"name":"Kyle Wiegand","age":18,"location":"Mohrshire"}},{"attributes":{"name":"Janie Smith","age":71,"location":"Koreychester"}},{"attributes":{"name":"Richard Kihn","age":18,"location":"Adelinehaven"}},{"attributes":{"name":"Irma Miller","age":32,"location":"Port Orange"}},{"attributes":{"name":"Marguerite Kuhic","age":40,"location":"Gulgowskiport"}},{"attributes":{"name":"Orland Lang","age":38,"location":"Macieport"}},{"attributes":{"name":"Jordi Wyman","age":72,"location":"New Kory"}},{"attributes":{"name":"Tammy Wolf","age":62,"location":"South Esther"}},{"attributes":{"name":"Miss Otto Smith III","age":75,"location":"Yakima"}},{"attributes":{"name":"Mr. Sammy Brakus","age":38,"location":"New Norbertoside"}},{"attributes":{"name":"Hoyt Halvorson","age":37,"location":"Nathanton"}},{"attributes":{"name":"Syble Mueller","age":41,"location":"Lake Keyonhaven"}},{"attributes":{"name":"Sandrine Kilback","age":71,"location":"New Emmalee"}},{"attributes":{"name":"Miss Al O'Hara","age":69,"location":"New Dorothea"}},{"attributes":{"name":"Vicky Walker","age":36,"location":"Clayshire"}},{"attributes":{"name":"Angie Labadie","age":20,"location":"Zorachester"}},{"attributes":{"name":"Johnnie Harris","age":41,"location":"Kelsiview"}},{"attributes":{"name":"Jill Heathcote","age":24,"location":"Port Nicklaus"}},{"attributes":{"name":"Ethel Herman","age":78,"location":"Esmeraldatown"}},{"attributes":{"name":"Federico Ryan PhD","age":45,"location":"New Guillermo"}},{"attributes":{"name":"Gwendolyn Doyle","age":52,"location":"Youngstown"}},{"attributes":{"name":"Dr. Rudy Ondricka","age":37,"location":"Grand Rapids"}},{"attributes":{"name":"Karl Ortiz","age":47,"location":"New Dejonworth"}},{"attributes":{"name":"Tracy Fisher","age":51,"location":"Keyonside"}},{"attributes":{"name":"Jose Feil","age":69,"location":"Alhambra"}},{"attributes":{"name":"Shelley Kuphal","age":50,"location":"Fort Melynashire"}},{"attributes":{"name":"Rafael Heathcote","age":73,"location":"Kadeberg"}},{"attributes":{"name":"Angelica Tillman II","age":43,"location":"Willowport"}},{"attributes":{"name":"Bradley Hahn","age":34,"location":"New Eve"}},{"attributes":{"name":"Unique Heathcote","age":73,"location":"Maybellfurt"}},{"attributes":{"name":"Kitty Lemke","age":22,"location":"Stantonmouth"}},{"attributes":{"name":"Felipe Rau-Dibbert MD","age":63,"location":"Boehmchester"}},{"attributes":{"name":"Judd Robel","age":59,"location":"Jewelfort"}},{"attributes":{"name":"Brenna Wiza","age":33,"location":"West Golden"}},{"attributes":{"name":"Ms. Timothy Kuhn","age":33,"location":"Lake Wilfredo"}},{"attributes":{"name":"Wilbert Davis","age":47,"location":"Franeckimouth"}},{"attributes":{"name":"Tommy Rohan","age":28,"location":"Meridian"}},{"attributes":{"name":"Mr. Lura Lockman","age":48,"location":"Ashleighshire"}},{"attributes":{"name":"Linnea Altenwerth","age":77,"location":"Kulasstead"}},{"attributes":{"name":"Laurence Treutel","age":48,"location":"Conroyport"}},{"attributes":{"name":"Wayne Bode V","age":48,"location":"Oakland Park"}},{"attributes":{"name":"Gerald Walter","age":68,"location":"Hillsstad"}},{"attributes":{"name":"Samuel Cummerata","age":38,"location":"East Zitaville"}},{"attributes":{"name":"Queen Goldner","age":71,"location":"Fort Horaciocester"}},{"attributes":{"name":"Colleen Abernathy","age":66,"location":"Port Jasperland"}},{"attributes":{"name":"Russell Greenholt","age":48,"location":"Fort Smith"}},{"attributes":{"name":"Mr. Fernando Steuber","age":63,"location":"East Kathrynbury"}},{"attributes":{"name":"Lesly Koepp","age":19,"location":"New Wade"}},{"attributes":{"name":"Franklin Nikolaus","age":19,"location":"West Zionstead"}},{"attributes":{"name":"Ms. Carol Stroman","age":47,"location":"West Bradlyfield"}},{"attributes":{"name":"Carlton Herzog","age":19,"location":"West Haven"}},{"attributes":{"name":"Lawrence Hermiston","age":71,"location":"South Adrianhaven"}},{"attributes":{"name":"Sidney Bergnaum","age":35,"location":"Rohanland"}},{"attributes":{"name":"Lyda Boyer","age":67,"location":"Rohanboro"}},{"attributes":{"name":"Kate Morar","age":71,"location":"Metzshire"}},{"attributes":{"name":"Daryl O'Keefe-Anderson","age":69,"location":"New Linneaville"}},{"attributes":{"name":"Herman Ferry","age":31,"location":"Kenyatown"}},{"attributes":{"name":"Keven Zieme-Bogan III","age":56,"location":"West Sammie"}},{"attributes":{"name":"Alfreda Mitchell-Ortiz","age":45,"location":"Sashaton"}},{"attributes":{"name":"Marilyn Miller","age":19,"location":"Gabeview"}},{"attributes":{"name":"Jordyn Cruickshank","age":64,"location":"South Luraport"}},{"attributes":{"name":"Lola Hammes","age":27,"location":"Orenfort"}},{"attributes":{"name":"Gretchen Gusikowski","age":73,"location":"Blickside"}},{"attributes":{"name":"Archie Kerluke IV","age":48,"location":"Schmittworth"}},{"attributes":{"name":"Noah Altenwerth-Beier","age":53,"location":"Bethesda"}},{"attributes":{"name":"Zachary Schulist","age":67,"location":"East Peggie"}},{"attributes":{"name":"Sean Bartell","age":77,"location":"Cronahaven"}},{"attributes":{"name":"Dr. Cierra Cole","age":37,"location":"New Nannie"}},{"attributes":{"name":"Mr. Michael Corkery Jr.","age":42,"location":"Dallastown"}},{"attributes":{"name":"Dr. Wilfred Armstrong","age":50,"location":"Nicolasshire"}},{"attributes":{"name":"Dr. Lavonne Jacobi","age":59,"location":"North Magnusstead"}},{"attributes":{"name":"Janet Nolan","age":55,"location":"Lake Evelinefield"}},{"attributes":{"name":"Miss Judith Breitenberg","age":59,"location":"Melisashire"}},{"attributes":{"name":"Delaney Windler","age":44,"location":"West Breanatown"}},{"attributes":{"name":"Mrs. Tanya Hackett","age":75,"location":"New Liaside"}},{"attributes":{"name":"Anthony Christiansen","age":28,"location":"Rockyville"}},{"attributes":{"name":"Elijah Fritsch","age":56,"location":"Daughertyshire"}},{"attributes":{"name":"Alison Graham II","age":71,"location":"New Russelburgh"}},{"attributes":{"name":"Filiberto Wuckert MD","age":65,"location":"South Marta"}},{"attributes":{"name":"Tiara Batz","age":57,"location":"Fort Lafayetteberg"}},{"attributes":{"name":"Marlon Glover-Bayer Sr.","age":73,"location":"Lake Ada"}},{"attributes":{"name":"Tom Dietrich","age":71,"location":"North Elinoreville"}},{"attributes":{"name":"Cameron Walsh","age":64,"location":"Garrettfield"}},{"attributes":{"name":"Margarette Lubowitz","age":24,"location":"Medaview"}},{"attributes":{"name":"Jamey Ondricka","age":36,"location":"Samantashire"}},{"attributes":{"name":"Rolando Haley","age":21,"location":"Marquardtport"}},{"attributes":{"name":"Zaria Sanford","age":42,"location":"Moriahfurt"}},{"attributes":{"name":"Dustin Steuber","age":67,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Tina Wilderman","age":63,"location":"West Arjun"}},{"attributes":{"name":"Jeremy Halvorson","age":78,"location":"Beattytown"}},{"attributes":{"name":"Reinhold Johnston","age":45,"location":"New Estellachester"}},{"attributes":{"name":"Kaleigh Halvorson I","age":26,"location":"Fort Keshaun"}},{"attributes":{"name":"Cale Schmeler","age":69,"location":"Lake Amparoview"}},{"attributes":{"name":"Enrique Kuphal","age":26,"location":"Joaquinview"}},{"attributes":{"name":"Beatrice Jenkins","age":21,"location":"East Mckenzieshire"}},{"attributes":{"name":"Jarret Heathcote III","age":35,"location":"South Sigurdhaven"}},{"attributes":{"name":"Herbert Wiegand","age":42,"location":"Fort Edgarcester"}},{"attributes":{"name":"Darrin Roob","age":72,"location":"Gutmannmouth"}},{"attributes":{"name":"Dr. Patricia Hills","age":67,"location":"Wymancester"}},{"attributes":{"name":"Evans Bednar","age":54,"location":"Kulaschester"}},{"attributes":{"name":"Orlo Labadie PhD","age":27,"location":"Moline"}},{"attributes":{"name":"Mekhi Gottlieb","age":36,"location":"Pagacshire"}},{"attributes":{"name":"Santina Crooks","age":50,"location":"Richardson"}},{"attributes":{"name":"Percy Gorczany","age":25,"location":"South Groverside"}},{"attributes":{"name":"Ebony Reynolds","age":19,"location":"O'Reillyburgh"}},{"attributes":{"name":"Allison Feest","age":32,"location":"Redmond"}},{"attributes":{"name":"Teresa O'Conner","age":65,"location":"Piercefield"}},{"attributes":{"name":"Madilyn Littel","age":27,"location":"Vonland"}},{"attributes":{"name":"Marilie Tromp","age":48,"location":"Modesto"}},{"attributes":{"name":"Mr. Kayden Mosciski","age":67,"location":"Bauchfield"}},{"attributes":{"name":"Mabel Homenick","age":50,"location":"Langoshland"}},{"attributes":{"name":"Mrs. Arlene McLaughlin","age":69,"location":"Larkinhaven"}},{"attributes":{"name":"Shelia Hamill","age":39,"location":"East Jalyn"}},{"attributes":{"name":"Joyce Green","age":62,"location":"Lueilwitzhaven"}},{"attributes":{"name":"Lenna Kuhn","age":80,"location":"Memphis"}},{"attributes":{"name":"Bobby Huels-Kertzmann","age":43,"location":"Koelpinland"}},{"attributes":{"name":"Mrs. Everette Reynolds","age":23,"location":"New Dagmar"}},{"attributes":{"name":"Kane Veum-O'Reilly","age":38,"location":"Abelardohaven"}},{"attributes":{"name":"Bill Keeling","age":59,"location":"Franeyfield"}},{"attributes":{"name":"Betty Tromp","age":80,"location":"Botsfordchester"}},{"attributes":{"name":"Rae Rodriguez","age":37,"location":"Altenwerthbury"}},{"attributes":{"name":"Maureen Breitenberg","age":74,"location":"Goldnerhaven"}},{"attributes":{"name":"Tina Schiller","age":57,"location":"Port Stefan"}},{"attributes":{"name":"Kenny Zboncak","age":31,"location":"Santa Monica"}},{"attributes":{"name":"Miss Daniel Moen","age":66,"location":"Hartmannland"}},{"attributes":{"name":"Brionna Bednar-Purdy MD","age":64,"location":"Port Bartonland"}},{"attributes":{"name":"Gladys Gerlach","age":76,"location":"Waterston"}},{"attributes":{"name":"Brett Heller","age":45,"location":"New Fionacester"}},{"attributes":{"name":"Glenn Nikolaus","age":45,"location":"Guadalupeview"}},{"attributes":{"name":"Silvia Schmeler","age":66,"location":"Brookline"}},{"attributes":{"name":"Mr. Carolanne Koelpin","age":44,"location":"Krystalmouth"}},{"attributes":{"name":"Kenyatta Mann PhD","age":42,"location":"Johnson City"}},{"attributes":{"name":"Desiree Rohan III","age":45,"location":"Lake Federicoton"}},{"attributes":{"name":"Dr. Donnie Hilpert","age":69,"location":"Dulcestead"}},{"attributes":{"name":"Irwin Fisher-Mann","age":63,"location":"Lynchburg"}},{"attributes":{"name":"Charlene Wolf PhD","age":70,"location":"Lake Adrien"}},{"attributes":{"name":"Daija Osinski","age":58,"location":"Vadaworth"}},{"attributes":{"name":"Kelsie Collins","age":38,"location":"East Waylon"}},{"attributes":{"name":"Woodrow Borer","age":28,"location":"East Zitamouth"}},{"attributes":{"name":"Sam Harvey","age":24,"location":"Vernicestad"}},{"attributes":{"name":"Armand Hermiston DVM","age":25,"location":"North Jewellville"}},{"attributes":{"name":"Nigel Weber","age":25,"location":"West Rudolphview"}},{"attributes":{"name":"Lindsey Hettinger Jr.","age":34,"location":"Manteshire"}},{"attributes":{"name":"Gloria Wunsch","age":34,"location":"Woodland"}},{"attributes":{"name":"Orlando Davis","age":49,"location":"Council Bluffs"}},{"attributes":{"name":"Hailee Kautzer Jr.","age":30,"location":"Zulaufton"}},{"attributes":{"name":"Becky Ziemann","age":28,"location":"Wiegandborough"}},{"attributes":{"name":"Jaron Tromp-Monahan","age":22,"location":"Lincoln"}},{"attributes":{"name":"Lawson Kozey","age":30,"location":"McAllen"}},{"attributes":{"name":"Bradford Pfeffer","age":38,"location":"Tustin"}},{"attributes":{"name":"Terrence Feil DDS","age":58,"location":"Kraigfurt"}},{"attributes":{"name":"Owen Weissnat","age":49,"location":"Fort Florenceport"}},{"attributes":{"name":"Zoila Smitham","age":30,"location":"North Harleyfield"}},{"attributes":{"name":"Antoinette Marquardt","age":35,"location":"West Bufordfield"}},{"attributes":{"name":"Alfred Grady","age":64,"location":"Gutkowskishire"}},{"attributes":{"name":"Donato Trantow","age":65,"location":"Rockford"}},{"attributes":{"name":"Kevon Goyette","age":74,"location":"Fort Myers"}},{"attributes":{"name":"Kelli Jakubowski","age":28,"location":"Lake Rico"}},{"attributes":{"name":"Rowan Ullrich","age":32,"location":"Wolffield"}},{"attributes":{"name":"Ansley Purdy","age":74,"location":"West Maeville"}},{"attributes":{"name":"Alva Leannon","age":32,"location":"Salvatorefort"}},{"attributes":{"name":"Estell Heidenreich","age":22,"location":"East Watson"}},{"attributes":{"name":"Orlando Ankunding","age":59,"location":"North Owencester"}},{"attributes":{"name":"Micheal Fay","age":23,"location":"West Elianstad"}},{"attributes":{"name":"Dr. Sherri Kuhlman","age":21,"location":"Oberbrunnerfort"}},{"attributes":{"name":"Kathryn Green","age":80,"location":"Edinburg"}},{"attributes":{"name":"Erika Pfeffer","age":27,"location":"New Elvie"}},{"attributes":{"name":"Al Schiller Sr.","age":20,"location":"Pearland"}},{"attributes":{"name":"Floy Romaguera","age":77,"location":"Lake Charlotteburgh"}},{"attributes":{"name":"Dr. Tabitha Erdman","age":41,"location":"South Mauriciohaven"}},{"attributes":{"name":"Edmund Schimmel-Leuschke","age":64,"location":"Watersville"}},{"attributes":{"name":"Katlyn Keeling","age":22,"location":"Pierceville"}},{"attributes":{"name":"Burnice Lockman","age":53,"location":"North Kobeburgh"}},{"attributes":{"name":"Luke Koss","age":53,"location":"Kovacekport"}},{"attributes":{"name":"Carlotta Rutherford Sr.","age":45,"location":"Fort Mablehaven"}},{"attributes":{"name":"Jarrell Mraz","age":73,"location":"Turcotteburgh"}},{"attributes":{"name":"Bobbie Huels","age":51,"location":"Fernberg"}},{"attributes":{"name":"Torey Smith","age":20,"location":"D'Amoreburgh"}},{"attributes":{"name":"Rolando Rippin","age":28,"location":"Fort Kirsten"}},{"attributes":{"name":"Dr. Marilyn Rutherford","age":42,"location":"Altoona"}},{"attributes":{"name":"Randall Watsica","age":55,"location":"Pembroke Pines"}},{"attributes":{"name":"Richmond Johnston","age":52,"location":"Aishaport"}},{"attributes":{"name":"Miriam Wintheiser","age":69,"location":"East Joyce"}},{"attributes":{"name":"Geovanny Kling","age":54,"location":"Marianeland"}},{"attributes":{"name":"Modesta Bahringer","age":45,"location":"Fort Smith"}},{"attributes":{"name":"Justin Cormier","age":45,"location":"South Arvel"}},{"attributes":{"name":"Earline Altenwerth I","age":54,"location":"Lake Greta"}},{"attributes":{"name":"Iva Russel PhD","age":76,"location":"Bartolettiberg"}},{"attributes":{"name":"Erika Langworth","age":39,"location":"Anissafurt"}},{"attributes":{"name":"Summer Kulas","age":29,"location":"Baileechester"}},{"attributes":{"name":"Marianne West","age":75,"location":"Abshirefurt"}},{"attributes":{"name":"Frank Murazik","age":65,"location":"West Normamouth"}},{"attributes":{"name":"Angelina Schneider","age":22,"location":"South Nova"}},{"attributes":{"name":"Francis Feil","age":71,"location":"Bonita Springs"}},{"attributes":{"name":"Dewey Hahn","age":27,"location":"Chicopee"}},{"attributes":{"name":"Miss Stacey Cartwright","age":32,"location":"Fontana"}},{"attributes":{"name":"Mrs. Ofelia Kunde","age":71,"location":"West New York"}},{"attributes":{"name":"Jody Quitzon","age":21,"location":"East Odessa"}},{"attributes":{"name":"Harry Shanahan","age":57,"location":"West Leonel"}},{"attributes":{"name":"Claudia Fisher","age":21,"location":"South Anissaview"}},{"attributes":{"name":"Guiseppe Terry","age":20,"location":"South Brice"}},{"attributes":{"name":"Murphy Rutherford","age":72,"location":"Jaylancester"}},{"attributes":{"name":"Sheri Legros","age":43,"location":"Greenholtview"}},{"attributes":{"name":"Karl Littel","age":70,"location":"Port Maybell"}},{"attributes":{"name":"Rose Gutmann","age":70,"location":"Downers Grove"}},{"attributes":{"name":"Dr. Richard Welch","age":60,"location":"Longview"}},{"attributes":{"name":"Saul Schulist","age":51,"location":"East Jameson"}},{"attributes":{"name":"Charlotte Gottlieb","age":46,"location":"Joplin"}},{"attributes":{"name":"Miss Cody Murazik","age":27,"location":"Brownsville"}},{"attributes":{"name":"Meredith Feest","age":60,"location":"Batzstad"}},{"attributes":{"name":"Corene Hansen","age":74,"location":"Somerville"}},{"attributes":{"name":"Lisa Haley","age":67,"location":"Fort Fabianhaven"}},{"attributes":{"name":"Dr. Marta Simonis","age":27,"location":"Fort Reilly"}},{"attributes":{"name":"Alexzander Fadel","age":26,"location":"Lake Amarafurt"}},{"attributes":{"name":"Fernando Hills","age":45,"location":"Bowie"}},{"attributes":{"name":"Omar Walter","age":45,"location":"East Elenachester"}},{"attributes":{"name":"Dr. Vivian Dare","age":62,"location":"Keyshawnfield"}},{"attributes":{"name":"Carole Russel","age":50,"location":"Bradenton"}},{"attributes":{"name":"Terrence Armstrong","age":28,"location":"Coconut Creek"}},{"attributes":{"name":"Roberto Kiehn","age":46,"location":"Gleichnerview"}},{"attributes":{"name":"Mrs. Otilia Gleichner","age":44,"location":"East Cleta"}},{"attributes":{"name":"Raoul Smitham II","age":56,"location":"Bogisichburgh"}},{"attributes":{"name":"Elyse Block","age":78,"location":"Riverton"}},{"attributes":{"name":"Austin Dickinson","age":61,"location":"Port Hassietown"}},{"attributes":{"name":"Patience Schuppe","age":56,"location":"East Marionbury"}},{"attributes":{"name":"Marcos Considine","age":64,"location":"Westland"}},{"attributes":{"name":"Marty Jacobson","age":73,"location":"Willcester"}},{"attributes":{"name":"Fausto Rutherford Sr.","age":41,"location":"Ceres"}},{"attributes":{"name":"Sherry McClure","age":19,"location":"New Josueville"}},{"attributes":{"name":"Jacquelyn Mertz","age":64,"location":"Murraycester"}},{"attributes":{"name":"Michel Bailey","age":47,"location":"North Bertram"}},{"attributes":{"name":"Henry Schroeder","age":32,"location":"Kochboro"}},{"attributes":{"name":"Jeanette Ziemann","age":51,"location":"Omaland"}},{"attributes":{"name":"Mr. Vincent Reilly","age":79,"location":"Jakubowskiside"}},{"attributes":{"name":"Ms. Anabel Collier PhD","age":57,"location":"Fort Elmerfort"}},{"attributes":{"name":"Dena Leannon","age":45,"location":"North Delphine"}},{"attributes":{"name":"Josephine Nolan","age":73,"location":"Bodefield"}},{"attributes":{"name":"Zander DuBuque","age":36,"location":"South Alannaville"}},{"attributes":{"name":"Gilbert Witting","age":42,"location":"Phoenix"}},{"attributes":{"name":"Jeanette Lang","age":54,"location":"Lehigh Acres"}},{"attributes":{"name":"Paula Jakubowski","age":68,"location":"New Mallory"}},{"attributes":{"name":"Tara O'Connell","age":46,"location":"North Taniastead"}},{"attributes":{"name":"Jess Schroeder","age":44,"location":"McKenziefurt"}},{"attributes":{"name":"Edmond Wilkinson","age":50,"location":"Sanfordshire"}},{"attributes":{"name":"Edgardo Price","age":60,"location":"Koeppburgh"}},{"attributes":{"name":"Percy Dietrich","age":31,"location":"Conroyville"}},{"attributes":{"name":"Dr. Berniece Bechtelar","age":18,"location":"Baileyshire"}},{"attributes":{"name":"Kendra Gislason","age":75,"location":"Brodymouth"}},{"attributes":{"name":"Marion Smith","age":48,"location":"Schambergerland"}},{"attributes":{"name":"Mr. Amalia Fay","age":30,"location":"Maceyboro"}},{"attributes":{"name":"Jaime Kulas","age":44,"location":"Colorado Springs"}},{"attributes":{"name":"Dr. Tina Kiehn","age":64,"location":"Boulder"}},{"attributes":{"name":"Mr. Clyde Klocko","age":31,"location":"Anderson"}},{"attributes":{"name":"Bradley Medhurst","age":27,"location":"Lake Reese"}},{"attributes":{"name":"Howard Kuhic","age":74,"location":"Lake Vesta"}},{"attributes":{"name":"Luther Ullrich","age":25,"location":"New Theronfield"}},{"attributes":{"name":"Bertha Robel","age":26,"location":"Fort Francisco"}},{"attributes":{"name":"Marquise Luettgen","age":57,"location":"Schroederland"}},{"attributes":{"name":"Armando Emmerich IV","age":79,"location":"New Mariannemouth"}},{"attributes":{"name":"Benny Donnelly IV","age":56,"location":"North Ashleigh"}},{"attributes":{"name":"Haley McClure","age":65,"location":"Sanford"}},{"attributes":{"name":"Deshaun Rohan Jr.","age":40,"location":"Lake Rupertville"}},{"attributes":{"name":"Karson Schuppe","age":43,"location":"Priceborough"}},{"attributes":{"name":"Willie Mills-Leannon III","age":21,"location":"South Darleneburgh"}},{"attributes":{"name":"Perry Jenkins","age":71,"location":"Heidenreichworth"}},{"attributes":{"name":"Wilbert Blick-Rempel","age":27,"location":"Pittsburgh"}},{"attributes":{"name":"Randall Dach","age":50,"location":"New Carmela"}},{"attributes":{"name":"Yasmeen Walter","age":51,"location":"Beerton"}},{"attributes":{"name":"Emilio Krajcik","age":51,"location":"Monicaport"}},{"attributes":{"name":"Angie Thompson-Oberbrunner","age":79,"location":"New Hershelport"}},{"attributes":{"name":"Isai Daugherty","age":45,"location":"Lake Kellen"}},{"attributes":{"name":"Mr. Rafael Smitham","age":80,"location":"Tampa"}},{"attributes":{"name":"Howard Howell","age":42,"location":"Lelaside"}},{"attributes":{"name":"Dr. Alison Bayer","age":73,"location":"Vilmastad"}},{"attributes":{"name":"Regan Dickens","age":42,"location":"New Curtside"}},{"attributes":{"name":"Dr. Archie Willms","age":40,"location":"Lake Joany"}},{"attributes":{"name":"Dr. Devin Rogahn","age":51,"location":"Pueblo"}},{"attributes":{"name":"Cecelia Wisoky","age":60,"location":"New Dejaworth"}},{"attributes":{"name":"Luis Koepp DVM","age":27,"location":"Fort Lorenzberg"}},{"attributes":{"name":"Susie Gleichner Jr.","age":73,"location":"Towson"}},{"attributes":{"name":"Floyd Dare III","age":66,"location":"Valdosta"}},{"attributes":{"name":"Jarod Tremblay","age":53,"location":"Stevieborough"}},{"attributes":{"name":"Alice MacGyver IV","age":57,"location":"Predovicshire"}},{"attributes":{"name":"Barbara Ledner","age":62,"location":"Bodemouth"}},{"attributes":{"name":"Gerardo Russel","age":48,"location":"Port Elyssa"}},{"attributes":{"name":"Jules Sipes","age":52,"location":"Port Humberto"}},{"attributes":{"name":"Beth Jacobson","age":42,"location":"La Habra"}},{"attributes":{"name":"Jill Ferry","age":74,"location":"Fletaview"}},{"attributes":{"name":"Gustavo Purdy II","age":22,"location":"Klockoborough"}},{"attributes":{"name":"Amalia Kulas","age":53,"location":"New Wileyland"}},{"attributes":{"name":"Desiree Hansen III","age":67,"location":"North Graysonstead"}},{"attributes":{"name":"Camryn Rowe","age":77,"location":"Fort Kacie"}},{"attributes":{"name":"Elliott Murazik","age":35,"location":"Kobyfort"}},{"attributes":{"name":"Jody Kshlerin","age":39,"location":"Lake Sammyfort"}},{"attributes":{"name":"Lucienne Pouros","age":53,"location":"South Hill"}},{"attributes":{"name":"Dr. Berneice Huel III","age":23,"location":"Seattle"}},{"attributes":{"name":"Lucia Cole","age":39,"location":"Daughertycester"}},{"attributes":{"name":"Mr. Cletus McLaughlin-Moen","age":46,"location":"Armstrongville"}},{"attributes":{"name":"Noel Kilback","age":60,"location":"Steuberstead"}},{"attributes":{"name":"Bridget Mante","age":55,"location":"Shanahanworth"}},{"attributes":{"name":"Carmela Schroeder","age":34,"location":"El Dorado Hills"}},{"attributes":{"name":"Velma Jast","age":19,"location":"Carmelomouth"}},{"attributes":{"name":"Pat Schroeder","age":72,"location":"Noblesville"}},{"attributes":{"name":"Nadine Larkin","age":24,"location":"Pittsburgh"}},{"attributes":{"name":"Matteo Auer IV","age":64,"location":"Wiegandborough"}},{"attributes":{"name":"Andres Heathcote","age":50,"location":"Aidenworth"}},{"attributes":{"name":"Bertha Roberts I","age":79,"location":"New Uriah"}},{"attributes":{"name":"Florence Williamson","age":68,"location":"Bernadineside"}},{"attributes":{"name":"Sheridan Schamberger-Shields","age":44,"location":"New Johanmouth"}},{"attributes":{"name":"Megan Shields","age":52,"location":"Elodychester"}},{"attributes":{"name":"Connie Metz","age":35,"location":"East Carsonmouth"}},{"attributes":{"name":"Forrest Brekke","age":25,"location":"Daughertyville"}},{"attributes":{"name":"Elena Luettgen","age":60,"location":"New Alistad"}},{"attributes":{"name":"Dr. Bennie Schiller","age":57,"location":"North Jonas"}},{"attributes":{"name":"Leslie Trantow","age":29,"location":"New Gregoriaborough"}},{"attributes":{"name":"Mariah Haag","age":34,"location":"Fort Jaylantown"}},{"attributes":{"name":"Hailie Rodriguez-Nikolaus IV","age":57,"location":"Dachland"}},{"attributes":{"name":"Annette Crist","age":33,"location":"Cliftonberg"}},{"attributes":{"name":"Jasper Crona","age":46,"location":"Cedar Park"}},{"attributes":{"name":"Willie Jakubowski","age":42,"location":"New Eleanora"}},{"attributes":{"name":"Evan Keebler","age":40,"location":"Jordiport"}},{"attributes":{"name":"Jenna Heathcote","age":38,"location":"Grimesberg"}},{"attributes":{"name":"Blair O'Keefe","age":71,"location":"Dachboro"}},{"attributes":{"name":"Santiago Bosco","age":78,"location":"Napoleonfield"}},{"attributes":{"name":"Cindy Hagenes","age":26,"location":"South Rickieside"}},{"attributes":{"name":"Darren Funk","age":39,"location":"Carrollton"}},{"attributes":{"name":"Andrew Bartoletti","age":60,"location":"West Kennedishire"}},{"attributes":{"name":"Marguerite Conroy","age":67,"location":"South John"}},{"attributes":{"name":"Dr. Emma Hodkiewicz","age":44,"location":"Suffolk"}},{"attributes":{"name":"Toni Moen","age":21,"location":"East Stewart"}},{"attributes":{"name":"Vincent Feil-Ebert","age":31,"location":"Pfannerstillland"}},{"attributes":{"name":"Lavern Carter","age":26,"location":"Elouiseshire"}},{"attributes":{"name":"Dr. Lynette Stracke","age":34,"location":"West Rollinmouth"}},{"attributes":{"name":"Jannie Hane","age":55,"location":"Lake Charley"}},{"attributes":{"name":"Erika Reilly","age":36,"location":"Port Ferneberg"}},{"attributes":{"name":"Willie Nolan","age":69,"location":"McLaughlinton"}},{"attributes":{"name":"Daphne Cormier","age":64,"location":"South Mylene"}},{"attributes":{"name":"Eldred Shanahan","age":61,"location":"Lacey"}},{"attributes":{"name":"Raul Schiller","age":28,"location":"Florence-Graham"}},{"attributes":{"name":"Madeline Bradtke","age":54,"location":"West Letaberg"}},{"attributes":{"name":"Nina Renner","age":67,"location":"New Gayle"}},{"attributes":{"name":"Mae Lehner","age":53,"location":"Purdystead"}},{"attributes":{"name":"Jean Hyatt","age":41,"location":"East Rosellaburgh"}},{"attributes":{"name":"Dr. Kelli Marks","age":30,"location":"North Port"}},{"attributes":{"name":"Lynette McGlynn","age":30,"location":"South Violetville"}},{"attributes":{"name":"Elbert Lind","age":41,"location":"Bradenton"}},{"attributes":{"name":"Francisco Dicki","age":36,"location":"Connellytown"}},{"attributes":{"name":"Randy Johnston","age":42,"location":"New Zaria"}},{"attributes":{"name":"Jonathan Grady IV","age":33,"location":"Vanstad"}},{"attributes":{"name":"Sharon Stark","age":46,"location":"Madalynside"}},{"attributes":{"name":"Leonard Gulgowski","age":33,"location":"Jupiter"}},{"attributes":{"name":"Marvin Lind","age":28,"location":"Claudiabury"}},{"attributes":{"name":"Lilliana Welch","age":21,"location":"New Orrin"}},{"attributes":{"name":"Margie Greenfelder","age":79,"location":"Allyside"}},{"attributes":{"name":"Daisy McCullough","age":39,"location":"Port Octaviaview"}},{"attributes":{"name":"Emmalee Barton","age":64,"location":"Johnsburgh"}},{"attributes":{"name":"Amina Hodkiewicz-Lang","age":32,"location":"East Willismouth"}},{"attributes":{"name":"Miss Brendan Zulauf","age":63,"location":"Jadetown"}},{"attributes":{"name":"Mae Hackett IV","age":19,"location":"O'Haraworth"}},{"attributes":{"name":"Doyle O'Connell","age":62,"location":"East Zechariahfurt"}},{"attributes":{"name":"Miss Yvette Morissette","age":35,"location":"South Jakayla"}},{"attributes":{"name":"Gwendolyn Schmidt-Koch IV","age":40,"location":"Lake Rowenaport"}},{"attributes":{"name":"Magdalena Becker","age":60,"location":"Fort Adolfo"}},{"attributes":{"name":"Lorraine Hahn","age":74,"location":"Burien"}},{"attributes":{"name":"Todd O'Kon III","age":61,"location":"Midwest City"}},{"attributes":{"name":"Lauren Gibson PhD","age":48,"location":"Millerview"}},{"attributes":{"name":"Carolyn Lubowitz","age":75,"location":"New Oswald"}},{"attributes":{"name":"Zola Witting","age":50,"location":"Zboncakstad"}},{"attributes":{"name":"Cydney Jast","age":23,"location":"Fort Kathryneland"}},{"attributes":{"name":"Ms. Evelyn Greenholt","age":57,"location":"Olsonville"}},{"attributes":{"name":"Mikayla Rodriguez","age":64,"location":"North Rebecastad"}},{"attributes":{"name":"Rosa Stokes","age":76,"location":"Murrieta"}},{"attributes":{"name":"Leora Erdman","age":29,"location":"New Karley"}},{"attributes":{"name":"Arnold Hintz","age":67,"location":"Leathabury"}},{"attributes":{"name":"Bryant Mueller","age":20,"location":"Wizaborough"}},{"attributes":{"name":"Marie Sporer III","age":80,"location":"Aspen Hill"}},{"attributes":{"name":"Mylene Ullrich","age":74,"location":"South Shermanstad"}},{"attributes":{"name":"Emily Macejkovic","age":55,"location":"Lindseyfurt"}},{"attributes":{"name":"Trace Veum","age":78,"location":"Augustshire"}},{"attributes":{"name":"Teagan Bradtke","age":79,"location":"Stiedemannboro"}},{"attributes":{"name":"Miss Aaliyah Rolfson","age":66,"location":"Ratkecester"}},{"attributes":{"name":"Rosalie Batz","age":55,"location":"Lake Rosaleetown"}},{"attributes":{"name":"Leland Jacobson","age":75,"location":"East Armand"}},{"attributes":{"name":"Margie Lang","age":74,"location":"New Maggiebury"}},{"attributes":{"name":"Mr. Tyrese Tillman","age":35,"location":"North Ole"}},{"attributes":{"name":"Shanie Smitham","age":47,"location":"Kuphalborough"}},{"attributes":{"name":"Kristofer Robel","age":62,"location":"Legrosfield"}},{"attributes":{"name":"Ms. Natalie Lindgren","age":50,"location":"Port Rebeccaborough"}},{"attributes":{"name":"Tabitha Cassin","age":22,"location":"Ullrichview"}},{"attributes":{"name":"Franklin Schroeder-Smith","age":66,"location":"New Braunfels"}},{"attributes":{"name":"Jack Dare IV","age":76,"location":"Kohlerhaven"}},{"attributes":{"name":"Santiago Hagenes II","age":33,"location":"Potomac"}},{"attributes":{"name":"Dan Reichert","age":54,"location":"Rowefurt"}},{"attributes":{"name":"Rudolph Feil","age":38,"location":"Simonisberg"}},{"attributes":{"name":"Kristopher Donnelly","age":29,"location":"East Lansing"}},{"attributes":{"name":"Harry O'Hara PhD","age":31,"location":"Las Vegas"}},{"attributes":{"name":"Miss Ally Flatley","age":73,"location":"West Fridaborough"}},{"attributes":{"name":"Karson Wolff DDS","age":45,"location":"Sofiaborough"}},{"attributes":{"name":"Kiana Mraz","age":59,"location":"Cortneyborough"}},{"attributes":{"name":"Orville Cassin","age":22,"location":"Kamronfurt"}},{"attributes":{"name":"Maximillian Wiegand","age":53,"location":"New Skyebury"}},{"attributes":{"name":"Adaline Mraz DDS","age":53,"location":"Fort Eddie"}},{"attributes":{"name":"Celia Koch","age":64,"location":"Alizacester"}},{"attributes":{"name":"Katherine Runolfsdottir","age":25,"location":"Jayworth"}},{"attributes":{"name":"Greta Koch","age":55,"location":"New Julianburgh"}},{"attributes":{"name":"Damon Spencer","age":30,"location":"Osvaldomouth"}},{"attributes":{"name":"Mr. Gerard McKenzie","age":26,"location":"Mervinboro"}},{"attributes":{"name":"Marcel Adams","age":47,"location":"Pfefferview"}},{"attributes":{"name":"Virgil O'Conner","age":70,"location":"Hillardberg"}},{"attributes":{"name":"Stuart Pacocha","age":38,"location":"Ashleighfield"}},{"attributes":{"name":"Bria Deckow","age":18,"location":"Vandervortworth"}},{"attributes":{"name":"Ari Funk IV","age":60,"location":"South Abbiechester"}},{"attributes":{"name":"Sarah Rempel","age":74,"location":"Lake Eliezerstead"}},{"attributes":{"name":"Myrtle Price","age":30,"location":"South Ian"}},{"attributes":{"name":"Todd Ernser","age":27,"location":"South Jalonland"}},{"attributes":{"name":"Mrs. Nella Nicolas","age":18,"location":"Lakeland"}},{"attributes":{"name":"Vilma Stoltenberg","age":76,"location":"Fort Annabelshire"}},{"attributes":{"name":"Gwen Rath","age":40,"location":"Hassieburgh"}},{"attributes":{"name":"Josh Bradtke","age":67,"location":"Ryanbury"}},{"attributes":{"name":"Travis Bayer","age":36,"location":"Lubbock"}},{"attributes":{"name":"Mario Schuppe","age":65,"location":"Agnesshire"}},{"attributes":{"name":"Florian Armstrong","age":27,"location":"New Lillyshire"}},{"attributes":{"name":"Rodolfo Medhurst","age":63,"location":"Fort Christa"}},{"attributes":{"name":"Mrs. Patience Waters","age":20,"location":"West Chaunceyworth"}},{"attributes":{"name":"Raquel Pacocha","age":34,"location":"Ponce"}},{"attributes":{"name":"Coby Rolfson","age":44,"location":"South Janae"}},{"attributes":{"name":"Bernadette Flatley DDS","age":38,"location":"Walkerburgh"}},{"attributes":{"name":"Everett Collins-Lubowitz V","age":47,"location":"Edaborough"}},{"attributes":{"name":"Austin Denesik","age":69,"location":"Adriennechester"}},{"attributes":{"name":"Gerard Ritchie","age":20,"location":"Sarasota"}},{"attributes":{"name":"Tomas Kuhlman","age":76,"location":"La Habra"}},{"attributes":{"name":"Conrad Leuschke PhD","age":18,"location":"Port Michel"}},{"attributes":{"name":"Brandyn Rice MD","age":25,"location":"Bothell"}},{"attributes":{"name":"Leonard Muller","age":61,"location":"Port Lennie"}},{"attributes":{"name":"Betsy Krajcik","age":54,"location":"New Lauraville"}},{"attributes":{"name":"Kris Douglas","age":19,"location":"South Allenborough"}},{"attributes":{"name":"Xavier Kunze","age":48,"location":"Lake Elsinore"}},{"attributes":{"name":"Rachel Stamm","age":53,"location":"Fort Iva"}},{"attributes":{"name":"Mabel Waters-Goyette MD","age":46,"location":"Fort Lucas"}},{"attributes":{"name":"Lynn Gerhold","age":53,"location":"Port Chris"}},{"attributes":{"name":"Precious Barton","age":60,"location":"Fort Louchester"}},{"attributes":{"name":"Heather Gibson","age":41,"location":"Palm Bay"}},{"attributes":{"name":"Rafaela Kunde","age":27,"location":"Port Lottie"}},{"attributes":{"name":"Ms. Darlene Hills","age":58,"location":"Pearlshire"}},{"attributes":{"name":"Kitty Walker","age":21,"location":"Keanustead"}},{"attributes":{"name":"Cecil Hyatt","age":71,"location":"Schuppestead"}},{"attributes":{"name":"Ms. Jeanne Terry","age":43,"location":"Donatoview"}},{"attributes":{"name":"Louie Haag MD","age":50,"location":"South Layne"}},{"attributes":{"name":"Fred Trantow","age":77,"location":"North Sarahburgh"}},{"attributes":{"name":"Mabel Boehm","age":36,"location":"West Josianne"}},{"attributes":{"name":"Dr. Mekhi Sanford","age":58,"location":"Suffolk"}},{"attributes":{"name":"Rosina Upton","age":29,"location":"North Vernie"}},{"attributes":{"name":"Kelly Gusikowski-Armstrong","age":38,"location":"Javierland"}},{"attributes":{"name":"Miss Melissa Turner","age":48,"location":"Dominiqueboro"}},{"attributes":{"name":"Litzy Hammes","age":79,"location":"Boehmton"}},{"attributes":{"name":"Ahmed Lindgren","age":67,"location":"Jonesborough"}},{"attributes":{"name":"Curtis Kris","age":30,"location":"Pine Bluff"}},{"attributes":{"name":"Nicolette Breitenberg","age":32,"location":"Malliemouth"}},{"attributes":{"name":"Cathy Stark DVM","age":29,"location":"Gabrielstad"}},{"attributes":{"name":"Earnest Walter","age":52,"location":"Jacobstown"}},{"attributes":{"name":"Anna Langworth","age":24,"location":"South Kameronhaven"}},{"attributes":{"name":"Barry Schuster","age":75,"location":"Port Aiyanafurt"}},{"attributes":{"name":"Tanya Dooley","age":59,"location":"Gerlachstead"}},{"attributes":{"name":"Kristin Reichel","age":75,"location":"East Estel"}},{"attributes":{"name":"Misael Sipes","age":19,"location":"Sunrise Manor"}},{"attributes":{"name":"Ms. Athena Hackett","age":37,"location":"Lake Arianestad"}},{"attributes":{"name":"Leon Bashirian","age":41,"location":"Clifton"}},{"attributes":{"name":"Mathias Will","age":19,"location":"Texas City"}},{"attributes":{"name":"Macy Kuphal","age":53,"location":"North Rylanside"}},{"attributes":{"name":"Angelo Crooks","age":40,"location":"Boca Raton"}},{"attributes":{"name":"Dr. Lester Bode","age":48,"location":"Aldenshire"}},{"attributes":{"name":"Dr. Mose Grimes","age":30,"location":"Lawrence"}},{"attributes":{"name":"Cornelius Langosh","age":67,"location":"Woodland"}},{"attributes":{"name":"Mr. Kelvin Bernier","age":49,"location":"Vedafort"}},{"attributes":{"name":"Curtis Homenick","age":79,"location":"Millieberg"}},{"attributes":{"name":"Marilyne Paucek","age":42,"location":"Jameyfield"}},{"attributes":{"name":"Ruben Jenkins","age":80,"location":"Wichita"}},{"attributes":{"name":"Daryl Cole","age":47,"location":"Orlando"}},{"attributes":{"name":"Lewis Batz","age":67,"location":"East Jaquelineberg"}},{"attributes":{"name":"Walter Gusikowski","age":43,"location":"Jerroldburgh"}},{"attributes":{"name":"Ricky Conroy I","age":31,"location":"Baumbachstad"}},{"attributes":{"name":"Luz Harber","age":42,"location":"Port Caleigh"}},{"attributes":{"name":"Erik Kub","age":46,"location":"Marquardtland"}},{"attributes":{"name":"Shaun Kilback IV","age":70,"location":"Rocklin"}},{"attributes":{"name":"Timothy Stanton","age":34,"location":"North Braxton"}},{"attributes":{"name":"Adam McKenzie","age":70,"location":"Willyworth"}},{"attributes":{"name":"Ellen Davis","age":19,"location":"Rialto"}},{"attributes":{"name":"Heather Pouros MD","age":53,"location":"Port Pietroton"}},{"attributes":{"name":"Elbert Haley","age":36,"location":"St. Peters"}},{"attributes":{"name":"Eldora Rohan","age":34,"location":"East Trevorfurt"}},{"attributes":{"name":"Taylor Wilderman","age":21,"location":"San Mateo"}},{"attributes":{"name":"Amelia Quigley","age":51,"location":"Benburgh"}},{"attributes":{"name":"Sean Kihn","age":39,"location":"Erdmanbury"}},{"attributes":{"name":"Sean Schaden","age":54,"location":"North Novella"}},{"attributes":{"name":"Mr. Hillard Hagenes Sr.","age":62,"location":"New Busterboro"}},{"attributes":{"name":"Dell Muller","age":71,"location":"Collinbury"}},{"attributes":{"name":"Rachel Harris","age":46,"location":"Hallestad"}},{"attributes":{"name":"Kim Rath","age":53,"location":"New Percy"}},{"attributes":{"name":"Jamal Sawayn-Konopelski MD","age":36,"location":"North Emmanuelle"}},{"attributes":{"name":"Maria Mayer","age":27,"location":"Margarettamouth"}},{"attributes":{"name":"Luis Wehner","age":40,"location":"Franeystad"}},{"attributes":{"name":"Megan Bernier","age":80,"location":"Handbury"}},{"attributes":{"name":"Werner Simonis DVM","age":21,"location":"Lake Ross"}},{"attributes":{"name":"Tim Mitchell","age":65,"location":"New Isacland"}},{"attributes":{"name":"Otha Champlin","age":36,"location":"Alfredocester"}},{"attributes":{"name":"Cameron Vandervort","age":32,"location":"West Wandaton"}},{"attributes":{"name":"Rosemarie Morar","age":72,"location":"Port Evansbury"}},{"attributes":{"name":"Orville Weimann","age":43,"location":"New Constanceton"}},{"attributes":{"name":"Elaine Collins","age":42,"location":"South Emersonland"}},{"attributes":{"name":"Erick Cormier","age":33,"location":"East Ludiecester"}},{"attributes":{"name":"Rolando Jerde","age":73,"location":"Jadamouth"}},{"attributes":{"name":"Curtis Sauer","age":62,"location":"Lake Chanel"}},{"attributes":{"name":"Virgil Reinger","age":69,"location":"East Kaylie"}},{"attributes":{"name":"Carrie Larkin","age":37,"location":"Oceanside"}},{"attributes":{"name":"Willard Smitham V","age":68,"location":"Brooklyncester"}},{"attributes":{"name":"Mrs. Isom Dicki","age":53,"location":"Port Camila"}},{"attributes":{"name":"Brandt Ondricka","age":68,"location":"East Gwenview"}},{"attributes":{"name":"Ruth Nikolaus","age":64,"location":"Deloresberg"}},{"attributes":{"name":"Donna Lubowitz","age":36,"location":"Christopherboro"}},{"attributes":{"name":"Sylvester Bergstrom","age":64,"location":"Taunton"}},{"attributes":{"name":"Todd Schinner","age":61,"location":"New Erynland"}},{"attributes":{"name":"Kate Crist","age":58,"location":"McKinney"}},{"attributes":{"name":"Alysha Rau-Jacobi","age":38,"location":"Hanford"}},{"attributes":{"name":"Rosa Kuhn","age":80,"location":"Moline"}},{"attributes":{"name":"Dr. Ada Christiansen","age":57,"location":"Camarillo"}},{"attributes":{"name":"Alisha Muller","age":35,"location":"West Lemuel"}},{"attributes":{"name":"Kristopher Williamson","age":21,"location":"New Alfordborough"}},{"attributes":{"name":"Terry Morar II","age":78,"location":"Santa Monica"}},{"attributes":{"name":"Rachelle Ziemann","age":69,"location":"Jackfort"}},{"attributes":{"name":"Jessica Pfeffer","age":41,"location":"New Gideonfurt"}},{"attributes":{"name":"Jeffrey Rutherford II","age":72,"location":"Berkeley"}},{"attributes":{"name":"Melvin D'Amore","age":50,"location":"Lake Duanefort"}},{"attributes":{"name":"Jazmin Bashirian","age":80,"location":"Bernhardstad"}},{"attributes":{"name":"Hailee Cartwright","age":67,"location":"South Noemy"}},{"attributes":{"name":"Mrs. Josephine Donnelly","age":49,"location":"Burbank"}},{"attributes":{"name":"Rosemarie Connelly","age":40,"location":"New Jimmie"}},{"attributes":{"name":"Tracy Jerde","age":61,"location":"New Ari"}},{"attributes":{"name":"Miss Mitchell O'Reilly","age":41,"location":"Nayelihaven"}},{"attributes":{"name":"Mina Senger","age":69,"location":"West Schuylerview"}},{"attributes":{"name":"Dewayne Schiller","age":20,"location":"East Vernshire"}},{"attributes":{"name":"Lucius Schaefer","age":75,"location":"Port Bernitaside"}},{"attributes":{"name":"Carrie Stoltenberg","age":42,"location":"East Peter"}},{"attributes":{"name":"Lucy Schamberger","age":63,"location":"Wylie"}},{"attributes":{"name":"Clarence Doyle-Bednar","age":66,"location":"Watsonville"}},{"attributes":{"name":"Garrett Johnson","age":69,"location":"Stanleyland"}},{"attributes":{"name":"Ms. Natasha Rau","age":59,"location":"North Kelvinstead"}},{"attributes":{"name":"Betty Mitchell","age":53,"location":"Susannatown"}},{"attributes":{"name":"Regina Baumbach MD","age":24,"location":"North Marianna"}},{"attributes":{"name":"Mr. Carlo Crona","age":55,"location":"Braunfort"}},{"attributes":{"name":"Kenneth Ritchie","age":48,"location":"Ocala"}},{"attributes":{"name":"Mr. Darla Johnson","age":51,"location":"Delphaburgh"}},{"attributes":{"name":"Mike Collier PhD","age":42,"location":"Kiehnfurt"}},{"attributes":{"name":"Daryl Torp","age":80,"location":"Noreneboro"}},{"attributes":{"name":"Erika Smitham-Breitenberg","age":75,"location":"Lake Oliverport"}},{"attributes":{"name":"Nicolas Jast","age":66,"location":"Rancho Cordova"}},{"attributes":{"name":"Dr. Patsy Johnson","age":35,"location":"Bismarck"}},{"attributes":{"name":"Hattie Wuckert","age":79,"location":"Lowellstad"}},{"attributes":{"name":"Tatyana Leffler PhD","age":66,"location":"Swiftview"}},{"attributes":{"name":"Roxanne Senger","age":46,"location":"South Calebside"}},{"attributes":{"name":"Iris Doyle","age":78,"location":"Euless"}},{"attributes":{"name":"Rudy Zboncak","age":48,"location":"Santa Ana"}},{"attributes":{"name":"Celestine Bayer","age":20,"location":"Des Plaines"}},{"attributes":{"name":"Dr. Glen Stoltenberg-Ondricka","age":57,"location":"Nettieburgh"}},{"attributes":{"name":"Shelly Labadie","age":43,"location":"Adolfostead"}},{"attributes":{"name":"Javier Kunde-McLaughlin","age":61,"location":"Dietrichcester"}},{"attributes":{"name":"Dr. Austin Towne","age":74,"location":"Birdieworth"}},{"attributes":{"name":"Bernice Zieme","age":66,"location":"Bashirianside"}},{"attributes":{"name":"Jesus Keebler","age":28,"location":"St. Joseph"}},{"attributes":{"name":"Dr. Reagan Mayer MD","age":46,"location":"Feilhaven"}},{"attributes":{"name":"Enola Wisoky","age":67,"location":"New Amanda"}},{"attributes":{"name":"Walton Strosin-Konopelski","age":59,"location":"Fort Coltworth"}},{"attributes":{"name":"Katheryn Koelpin","age":58,"location":"Lueilwitzville"}},{"attributes":{"name":"Ethel Bartell","age":79,"location":"Mount Prospect"}},{"attributes":{"name":"Carmen Baumbach","age":70,"location":"Port Rose"}},{"attributes":{"name":"Jermain Kub","age":48,"location":"Baileyfurt"}},{"attributes":{"name":"Erna Anderson","age":18,"location":"Fort Annettafort"}},{"attributes":{"name":"Vincent Durgan","age":79,"location":"Lake Domenick"}},{"attributes":{"name":"Mike Franey","age":50,"location":"Kaleboro"}},{"attributes":{"name":"Essie Kassulke-Lowe","age":68,"location":"South Felipeview"}},{"attributes":{"name":"Naomi McDermott MD","age":69,"location":"Lake Edyth"}},{"attributes":{"name":"Pedro Cormier","age":36,"location":"Fort Natashamouth"}},{"attributes":{"name":"Dr. Filiberto Toy","age":60,"location":"Bellevue"}},{"attributes":{"name":"Ivan Boehm","age":74,"location":"West William"}},{"attributes":{"name":"Miss Clara Schulist","age":26,"location":"West Guido"}},{"attributes":{"name":"Brice Schultz","age":58,"location":"Simonisfurt"}},{"attributes":{"name":"Keagan Mraz","age":55,"location":"Fremont"}},{"attributes":{"name":"Estevan Luettgen","age":66,"location":"Lake Sydnie"}},{"attributes":{"name":"Nathan Parker","age":31,"location":"West Marlenefield"}},{"attributes":{"name":"Jewel Pfannerstill","age":27,"location":"Hialeah"}},{"attributes":{"name":"Terrence Haag MD","age":67,"location":"Oro Valley"}},{"attributes":{"name":"Stephon Goldner","age":75,"location":"Burien"}},{"attributes":{"name":"Tanya Hickle","age":41,"location":"McGlynnfurt"}},{"attributes":{"name":"Julia Zulauf I","age":39,"location":"East Narcisofurt"}},{"attributes":{"name":"Blanca Boyle","age":62,"location":"McCulloughfield"}},{"attributes":{"name":"Rogelio Russel","age":21,"location":"Schowalterworth"}},{"attributes":{"name":"Aubree Renner","age":24,"location":"Mooretown"}},{"attributes":{"name":"Winston Marvin","age":38,"location":"Haleyport"}},{"attributes":{"name":"Dr. Vernon Nienow","age":59,"location":"Orange"}},{"attributes":{"name":"Abigail Ebert","age":77,"location":"Fort Sheldonfurt"}},{"attributes":{"name":"Deanna Considine-Klein","age":30,"location":"Kilbackport"}},{"attributes":{"name":"Ashlynn Lesch","age":41,"location":"Ahmadville"}},{"attributes":{"name":"Jarod Treutel","age":34,"location":"Killeen"}},{"attributes":{"name":"Adell Lemke","age":39,"location":"Balistreritown"}},{"attributes":{"name":"Seth Cronin","age":64,"location":"Salinas"}},{"attributes":{"name":"Carrie Brakus","age":19,"location":"South Drew"}},{"attributes":{"name":"Hobart Morissette","age":42,"location":"East Joannie"}},{"attributes":{"name":"Molly Crist-Bradtke III","age":37,"location":"Dallas"}},{"attributes":{"name":"Jared Langworth","age":32,"location":"East Mya"}},{"attributes":{"name":"Spencer Brekke","age":48,"location":"East Parker"}},{"attributes":{"name":"Adriel Nienow","age":26,"location":"Albany"}},{"attributes":{"name":"Audrey Hamill","age":21,"location":"Clementview"}},{"attributes":{"name":"Monica Moore","age":72,"location":"Jaymefield"}},{"attributes":{"name":"Pat Weber","age":21,"location":"Mariamcester"}},{"attributes":{"name":"Gina Kassulke","age":44,"location":"New Dejah"}},{"attributes":{"name":"Adelbert Cronin","age":66,"location":"New Ellieshire"}},{"attributes":{"name":"Mr. Dave Glover DDS","age":47,"location":"Ollieside"}},{"attributes":{"name":"Shannon Hegmann","age":64,"location":"Wisokyton"}},{"attributes":{"name":"Guadalupe Spinka PhD","age":20,"location":"Elvaland"}},{"attributes":{"name":"Mack Beahan","age":48,"location":"Lake Mariloucester"}},{"attributes":{"name":"Chasity McKenzie","age":35,"location":"Stammview"}},{"attributes":{"name":"Alexa Runolfsson","age":40,"location":"Deontown"}},{"attributes":{"name":"Mrs. Sidney Dietrich IV","age":31,"location":"East Stoneshire"}},{"attributes":{"name":"Taya Schulist DVM","age":74,"location":"Monahancester"}},{"attributes":{"name":"Mr. Hiram Bashirian","age":18,"location":"New Tyreek"}},{"attributes":{"name":"Marcus Mitchell","age":39,"location":"Lake Zita"}},{"attributes":{"name":"Dr. Rachel Pfannerstill","age":34,"location":"Fort Alta"}},{"attributes":{"name":"Stacy Haag","age":41,"location":"Lednerfield"}},{"attributes":{"name":"Wilson Moore","age":77,"location":"Port Layne"}},{"attributes":{"name":"Essie Schmitt V","age":18,"location":"East Glennahaven"}},{"attributes":{"name":"Margie Lueilwitz","age":54,"location":"North Jenningstown"}},{"attributes":{"name":"Orpha O'Conner","age":69,"location":"Conroe"}},{"attributes":{"name":"Rylan Mitchell Jr.","age":68,"location":"East Amaya"}},{"attributes":{"name":"Bradford Dibbert","age":50,"location":"Lake Gaetano"}},{"attributes":{"name":"Isabell Mosciski","age":53,"location":"South Broderick"}},{"attributes":{"name":"Dameon Kiehn","age":18,"location":"Breanneboro"}},{"attributes":{"name":"Mr. Irvin Osinski","age":78,"location":"Port Max"}},{"attributes":{"name":"Steven Skiles","age":56,"location":"Lake Deondre"}},{"attributes":{"name":"Lindsay Berge","age":25,"location":"Tigard"}},{"attributes":{"name":"Paulette Dickinson II","age":50,"location":"New Krystelboro"}},{"attributes":{"name":"George Kshlerin","age":63,"location":"West Harryboro"}},{"attributes":{"name":"Kory Witting","age":72,"location":"Port Nick"}},{"attributes":{"name":"Anne Bailey","age":21,"location":"Fort Marian"}},{"attributes":{"name":"Hattie Rowe","age":48,"location":"Provo"}},{"attributes":{"name":"Linda Adams II","age":75,"location":"North Stone"}},{"attributes":{"name":"Isadore Wintheiser","age":57,"location":"Bergnaumboro"}},{"attributes":{"name":"Lora Davis","age":35,"location":"Hamilton"}},{"attributes":{"name":"Karina O'Connell MD","age":80,"location":"Wellingtonville"}},{"attributes":{"name":"Denise Streich MD","age":34,"location":"Stantonview"}},{"attributes":{"name":"Alba Marquardt","age":45,"location":"St. Louis"}},{"attributes":{"name":"Geneva Braun","age":37,"location":"Spencerberg"}},{"attributes":{"name":"Ludwig Wisoky","age":34,"location":"Allentown"}},{"attributes":{"name":"Christy Waters Jr.","age":30,"location":"Lake Sean"}},{"attributes":{"name":"Miss Claude Shanahan","age":52,"location":"Rowanmouth"}},{"attributes":{"name":"Mrs. Shawna Botsford","age":34,"location":"New Kurtis"}},{"attributes":{"name":"Catharine Okuneva","age":78,"location":"Waukegan"}},{"attributes":{"name":"Willis Beier","age":46,"location":"Davisberg"}},{"attributes":{"name":"Jerome Lakin","age":42,"location":"Lupeport"}},{"attributes":{"name":"Elbert Watsica","age":74,"location":"Cummingsstad"}},{"attributes":{"name":"Lane Larkin-Haag","age":64,"location":"Port Jalyn"}},{"attributes":{"name":"Carol Hagenes","age":31,"location":"Port Dejuan"}},{"attributes":{"name":"Ubaldo Bode","age":79,"location":"Randyton"}},{"attributes":{"name":"Roxanne Hermann Sr.","age":80,"location":"Rozellamouth"}},{"attributes":{"name":"Preston Hagenes V","age":60,"location":"Pollichhaven"}},{"attributes":{"name":"Christine Hegmann","age":57,"location":"Maricopa"}},{"attributes":{"name":"Jody Morar","age":29,"location":"San Clemente"}},{"attributes":{"name":"Raymond Pollich","age":68,"location":"Konopelskifurt"}},{"attributes":{"name":"Terrell Hirthe-Dibbert","age":33,"location":"New Jonatan"}},{"attributes":{"name":"Toy Hirthe","age":77,"location":"West Ola"}},{"attributes":{"name":"Jonathan Cummerata","age":21,"location":"North Lera"}},{"attributes":{"name":"Abner Weissnat","age":44,"location":"San Diego"}},{"attributes":{"name":"Britney Parisian","age":61,"location":"North Las Vegas"}},{"attributes":{"name":"Karen Kulas","age":55,"location":"Spring Hill"}},{"attributes":{"name":"Charity Ledner","age":37,"location":"Brentwood"}},{"attributes":{"name":"Olga Hills","age":75,"location":"Fort Lillian"}},{"attributes":{"name":"Timmothy Hessel PhD","age":46,"location":"Hahnworth"}},{"attributes":{"name":"Sheri Reilly DDS","age":58,"location":"Reaganville"}},{"attributes":{"name":"Flavio Parker","age":51,"location":"South Hildegard"}},{"attributes":{"name":"Mrs. Annie Johnston","age":79,"location":"South Cheyenneview"}},{"attributes":{"name":"Guillermo Wintheiser","age":18,"location":"Hauckland"}},{"attributes":{"name":"Miranda Gibson","age":75,"location":"New Sedrickbury"}},{"attributes":{"name":"Mr. Hyman McGlynn","age":65,"location":"Ritchiefort"}},{"attributes":{"name":"Laverne Greenholt-Smith","age":65,"location":"Merlfort"}},{"attributes":{"name":"Rosie Treutel","age":53,"location":"Lake Chanelchester"}},{"attributes":{"name":"Vincent Pagac MD","age":28,"location":"West Jadenberg"}},{"attributes":{"name":"Tanya Friesen","age":34,"location":"North Manuelfurt"}},{"attributes":{"name":"Jesus D'Amore","age":74,"location":"Fort Martin"}},{"attributes":{"name":"Raina Morar","age":47,"location":"Jersey City"}},{"attributes":{"name":"Crystel Hansen","age":20,"location":"Royborough"}},{"attributes":{"name":"Dr. Dexter Schinner-Beatty","age":44,"location":"West Maryamberg"}},{"attributes":{"name":"Destinee Jakubowski PhD","age":65,"location":"Andersonview"}},{"attributes":{"name":"Charlie Huel","age":61,"location":"Bauchbury"}},{"attributes":{"name":"Alexandrine Rempel","age":45,"location":"New Dorisworth"}},{"attributes":{"name":"Vita Wyman","age":76,"location":"Hiramborough"}},{"attributes":{"name":"Alexander Hamill","age":28,"location":"Honolulu"}},{"attributes":{"name":"Wilma Gislason","age":22,"location":"Tyrafurt"}},{"attributes":{"name":"Fannie Effertz","age":45,"location":"Jaimestead"}},{"attributes":{"name":"Nick Treutel","age":20,"location":"Ondrickaport"}},{"attributes":{"name":"Devyn Kerluke","age":56,"location":"Doral"}},{"attributes":{"name":"Jayne Nader","age":19,"location":"New Eleazar"}},{"attributes":{"name":"Irvin Jacobson","age":18,"location":"West Cortney"}},{"attributes":{"name":"Bria Crona","age":48,"location":"New Barton"}},{"attributes":{"name":"Angie Paucek","age":41,"location":"Hagenesview"}},{"attributes":{"name":"Mariane Wintheiser","age":31,"location":"Pfannerstillborough"}},{"attributes":{"name":"Samanta Koelpin","age":67,"location":"Vonshire"}},{"attributes":{"name":"Gwen West","age":68,"location":"Everardoshire"}},{"attributes":{"name":"Arlene Stokes","age":76,"location":"Brakusstad"}},{"attributes":{"name":"Dixie Moen","age":67,"location":"Roystead"}},{"attributes":{"name":"Osvaldo Ebert Sr.","age":73,"location":"Keelingborough"}},{"attributes":{"name":"Harmon D'Amore DVM","age":53,"location":"East Dollyborough"}},{"attributes":{"name":"Jeffrey Ferry","age":66,"location":"Rodriguezborough"}},{"attributes":{"name":"Thomas Sauer-Green","age":58,"location":"Beaverton"}},{"attributes":{"name":"Sarah Pagac","age":79,"location":"Floydburgh"}},{"attributes":{"name":"Laurie Wolff","age":39,"location":"Fort Rodrigoburgh"}},{"attributes":{"name":"Victor Hoeger-Durgan","age":32,"location":"West Korbinfurt"}},{"attributes":{"name":"Carli Turcotte","age":65,"location":"Cheektowaga"}},{"attributes":{"name":"Dr. Alejandrin Spencer","age":27,"location":"Jaydenland"}},{"attributes":{"name":"Eliane Schultz I","age":61,"location":"Westfield"}},{"attributes":{"name":"Cedric Jast-Blanda","age":43,"location":"Heidenreichchester"}},{"attributes":{"name":"Courtney Walsh","age":20,"location":"South Percivalworth"}},{"attributes":{"name":"Mabelle Renner","age":58,"location":"Hilpertbury"}},{"attributes":{"name":"Hugh Renner","age":48,"location":"Bowie"}},{"attributes":{"name":"Della Gulgowski","age":36,"location":"West Abigalecester"}},{"attributes":{"name":"Angelo Breitenberg","age":67,"location":"Gulgowskichester"}},{"attributes":{"name":"Terence Jerde","age":64,"location":"Huelhaven"}},{"attributes":{"name":"Kristine Wyman","age":29,"location":"South Zula"}},{"attributes":{"name":"Terence Wehner","age":76,"location":"Uriahfurt"}},{"attributes":{"name":"Bill Hirthe","age":62,"location":"Bloomington"}},{"attributes":{"name":"Colt Lang","age":33,"location":"West Lorine"}},{"attributes":{"name":"Ora Lesch","age":43,"location":"Port Bernita"}},{"attributes":{"name":"Dana Davis","age":19,"location":"Blocktown"}},{"attributes":{"name":"Violet Crist V","age":34,"location":"Fort Zelmahaven"}},{"attributes":{"name":"Arden Kovacek","age":41,"location":"South Jamilcester"}},{"attributes":{"name":"Gerardo Kub","age":46,"location":"Volkmanshire"}},{"attributes":{"name":"Becky O'Connell-Muller Jr.","age":28,"location":"West Abefort"}},{"attributes":{"name":"Hector Bins","age":68,"location":"Asheville"}},{"attributes":{"name":"Uriah Jacobi","age":44,"location":"North Kristofer"}},{"attributes":{"name":"Keshawn Kovacek","age":69,"location":"Port Alexandreaberg"}},{"attributes":{"name":"Victoria Kris","age":48,"location":"Priscillastead"}},{"attributes":{"name":"Alton Funk","age":32,"location":"North Zionstead"}},{"attributes":{"name":"Mrs. Whitney Schmitt","age":48,"location":"West Des Moines"}},{"attributes":{"name":"Wallace Crooks","age":68,"location":"West Edythberg"}},{"attributes":{"name":"Allen Thompson","age":25,"location":"Adalbertotown"}},{"attributes":{"name":"Ms. Danielle Carroll","age":32,"location":"Fort Narciso"}},{"attributes":{"name":"Maggie Goodwin PhD","age":18,"location":"Halstad"}},{"attributes":{"name":"Pablo Mraz","age":47,"location":"Chadbury"}},{"attributes":{"name":"Matthew Mitchell","age":62,"location":"Fort Lorine"}},{"attributes":{"name":"Elenora Cassin","age":26,"location":"Port Don"}},{"attributes":{"name":"Melvin Dibbert-Kuhn","age":68,"location":"West Stephanview"}},{"attributes":{"name":"Jennie Koss","age":80,"location":"Savionborough"}},{"attributes":{"name":"Clifton Weber","age":66,"location":"Shayneboro"}},{"attributes":{"name":"Moses Rice Jr.","age":33,"location":"Hegmannburgh"}},{"attributes":{"name":"Garnet Satterfield","age":30,"location":"East Trentonshire"}},{"attributes":{"name":"Leslie Donnelly","age":54,"location":"New Anabelleborough"}},{"attributes":{"name":"William Moore","age":23,"location":"Apopka"}},{"attributes":{"name":"Victor Leuschke","age":51,"location":"Adamsfort"}},{"attributes":{"name":"Benedict Schiller","age":19,"location":"North Emanuelton"}},{"attributes":{"name":"Blanche Cronin","age":37,"location":"Marianachester"}},{"attributes":{"name":"Kay Johnson","age":41,"location":"Fort Gabriellefort"}},{"attributes":{"name":"Filiberto Kuhic","age":44,"location":"East Bernadette"}},{"attributes":{"name":"Lionel Quitzon","age":68,"location":"Fort Vincenthaven"}},{"attributes":{"name":"Irma Jones","age":38,"location":"Perth Amboy"}},{"attributes":{"name":"Gregory Feil","age":37,"location":"Lulustad"}},{"attributes":{"name":"Cesar O'Reilly","age":78,"location":"South Morganside"}},{"attributes":{"name":"Hilario Lubowitz","age":25,"location":"Lynwood"}},{"attributes":{"name":"Miss Amani Goldner III","age":58,"location":"Port Estebanland"}},{"attributes":{"name":"Kayden Spencer","age":74,"location":"Fort Cassiebury"}},{"attributes":{"name":"Mr. Johnson Daugherty","age":32,"location":"North Wileyborough"}},{"attributes":{"name":"Natalie Walker-Gulgowski III","age":46,"location":"Dejonbury"}},{"attributes":{"name":"Yoshiko Cruickshank","age":34,"location":"Waelchiville"}},{"attributes":{"name":"Laurie Towne","age":40,"location":"Wisokyfurt"}},{"attributes":{"name":"Yvonne Nolan","age":45,"location":"Bahringerbury"}},{"attributes":{"name":"Simon Thiel","age":53,"location":"Schmidtmouth"}},{"attributes":{"name":"Taryn Marquardt-Price","age":66,"location":"Hesselville"}},{"attributes":{"name":"Wallace Durgan II","age":72,"location":"Mariellefurt"}},{"attributes":{"name":"Essie Konopelski","age":60,"location":"New Roy"}},{"attributes":{"name":"Laverne Reinger","age":26,"location":"Town 'n' Country"}},{"attributes":{"name":"Johnathan Waters PhD","age":53,"location":"Laurettaland"}},{"attributes":{"name":"Renee Zemlak","age":19,"location":"Deshaunport"}},{"attributes":{"name":"Hope Hahn","age":48,"location":"Wolffcester"}},{"attributes":{"name":"Chester Lebsack","age":47,"location":"West Winona"}},{"attributes":{"name":"Una Schultz","age":38,"location":"Lake Porter"}},{"attributes":{"name":"Mr. Leta Waters","age":40,"location":"Lake Nash"}},{"attributes":{"name":"Pablo Bradtke","age":67,"location":"Braxtonton"}},{"attributes":{"name":"Eva Schaefer PhD","age":25,"location":"Murphyport"}},{"attributes":{"name":"Oswaldo Glover","age":73,"location":"West Isomshire"}},{"attributes":{"name":"Mrs. Maria Cremin","age":79,"location":"Amayabury"}},{"attributes":{"name":"Benjamin Kris","age":47,"location":"Bauchborough"}},{"attributes":{"name":"Elizabeth Kuhn","age":27,"location":"Jamesonview"}},{"attributes":{"name":"Liam Harris","age":26,"location":"Joplin"}},{"attributes":{"name":"Toney Nader","age":19,"location":"North Tamara"}},{"attributes":{"name":"Ms. Janis Fisher","age":75,"location":"North Leonstad"}},{"attributes":{"name":"Jenny Jaskolski I","age":70,"location":"New Orvilleberg"}},{"attributes":{"name":"Charley Lesch","age":30,"location":"Lakeville"}},{"attributes":{"name":"Katrina Collins-Weber","age":80,"location":"North Dakota"}},{"attributes":{"name":"Darian Hodkiewicz","age":22,"location":"Octaviafurt"}},{"attributes":{"name":"Zelda Kuhlman","age":34,"location":"New Ludie"}},{"attributes":{"name":"Leah McClure-Kohler","age":80,"location":"Torrance"}},{"attributes":{"name":"Lindsey Stokes","age":75,"location":"Bismarck"}},{"attributes":{"name":"Jedediah Halvorson","age":75,"location":"Hesselburgh"}},{"attributes":{"name":"Dianna Gorczany","age":55,"location":"North Miracle"}},{"attributes":{"name":"Stuart Turcotte","age":24,"location":"Lake Winfield"}},{"attributes":{"name":"Brittany Nitzsche","age":58,"location":"Jakobside"}},{"attributes":{"name":"Tara Macejkovic","age":72,"location":"Wardburgh"}},{"attributes":{"name":"Karen Senger","age":55,"location":"Davisworth"}},{"attributes":{"name":"Luis Adams","age":75,"location":"Hicklefield"}},{"attributes":{"name":"Irwin Treutel","age":70,"location":"East Reanna"}},{"attributes":{"name":"Johnnie Gulgowski","age":35,"location":"Alfredoburgh"}},{"attributes":{"name":"Spencer Green","age":63,"location":"East Dorothystead"}},{"attributes":{"name":"Estefania Shields Jr.","age":60,"location":"New Krystel"}},{"attributes":{"name":"Jakob Jacobson","age":29,"location":"South Dereck"}},{"attributes":{"name":"Ralph Kulas Jr.","age":21,"location":"South Natalie"}},{"attributes":{"name":"Ricky Schmeler","age":76,"location":"Lonzofield"}},{"attributes":{"name":"Forrest Legros","age":49,"location":"Corwinfield"}},{"attributes":{"name":"Beatrice Rau","age":60,"location":"Wintheiserchester"}},{"attributes":{"name":"Angela Schowalter MD","age":60,"location":"East Omercester"}},{"attributes":{"name":"Dwayne Hauck","age":38,"location":"Halvorsoncester"}},{"attributes":{"name":"Stephan Walsh","age":23,"location":"South Janelle"}},{"attributes":{"name":"Alexa Altenwerth","age":76,"location":"North Angelitamouth"}},{"attributes":{"name":"Carl Torp","age":25,"location":"North Cortneyworth"}},{"attributes":{"name":"Mark Bosco","age":62,"location":"Shanahanworth"}},{"attributes":{"name":"Darrell Purdy","age":63,"location":"South Garrison"}},{"attributes":{"name":"Marlin Runte PhD","age":53,"location":"Lynchview"}},{"attributes":{"name":"Dawn Runolfsson","age":26,"location":"Halvorsonfurt"}},{"attributes":{"name":"Velma Altenwerth DDS","age":28,"location":"Fort Osvaldo"}},{"attributes":{"name":"Celestino Williamson","age":25,"location":"Vicentastad"}},{"attributes":{"name":"Sheila Flatley","age":40,"location":"Blaisestad"}},{"attributes":{"name":"Abby Rohan","age":23,"location":"Terrymouth"}},{"attributes":{"name":"Cathy Harvey Jr.","age":21,"location":"Waukesha"}},{"attributes":{"name":"Shanna Cremin","age":23,"location":"Sandy"}},{"attributes":{"name":"Tania Effertz Sr.","age":65,"location":"Balistrerifurt"}},{"attributes":{"name":"Marcus Rath DDS","age":30,"location":"Loweland"}},{"attributes":{"name":"Dr. Bette Simonis","age":78,"location":"Casperside"}},{"attributes":{"name":"Pauline Kreiger","age":28,"location":"Leannonbury"}},{"attributes":{"name":"Willie Mante","age":56,"location":"East Melynafurt"}},{"attributes":{"name":"Kristi Fadel","age":71,"location":"East Mariaboro"}},{"attributes":{"name":"Chaz Koss","age":31,"location":"Daijaview"}},{"attributes":{"name":"Sim Rath","age":47,"location":"West Arimouth"}},{"attributes":{"name":"Regina Reynolds DDS","age":59,"location":"North Adolfo"}},{"attributes":{"name":"Beth Bergnaum","age":73,"location":"Portage"}},{"attributes":{"name":"Tremaine Quigley","age":30,"location":"Feilland"}},{"attributes":{"name":"Don Vandervort","age":74,"location":"West Anthony"}},{"attributes":{"name":"Doug Tillman MD","age":74,"location":"Salmaside"}},{"attributes":{"name":"Bennie Stehr","age":42,"location":"East Rafael"}},{"attributes":{"name":"Nora Jast","age":23,"location":"Waldorf"}},{"attributes":{"name":"Javon Cormier","age":40,"location":"Maggioside"}},{"attributes":{"name":"Alek Langosh","age":61,"location":"North Gene"}},{"attributes":{"name":"Brenna Wisoky","age":38,"location":"Shaynafield"}},{"attributes":{"name":"Catherine Ritchie","age":58,"location":"Mayermouth"}},{"attributes":{"name":"Susan Schimmel","age":55,"location":"South Fordboro"}},{"attributes":{"name":"Woodrow Schaden","age":59,"location":"Lake Odessatown"}},{"attributes":{"name":"Ms. Germaine Padberg","age":53,"location":"West Carmelaborough"}},{"attributes":{"name":"Brandi Kunze","age":71,"location":"West Jerrod"}},{"attributes":{"name":"Keegan Mayert","age":48,"location":"Lake Doviebury"}},{"attributes":{"name":"Matthew Beahan","age":72,"location":"Manuelaton"}},{"attributes":{"name":"Mr. Vinnie Schuster Sr.","age":37,"location":"Ziememouth"}},{"attributes":{"name":"Roxanne Blick","age":26,"location":"St. Joseph"}},{"attributes":{"name":"Olga Schamberger","age":74,"location":"West Camryn"}},{"attributes":{"name":"Ms. Lucas Lakin","age":66,"location":"South Alexandrine"}},{"attributes":{"name":"Laverna Auer","age":55,"location":"St. Petersburg"}},{"attributes":{"name":"Alba White","age":27,"location":"Douglasland"}},{"attributes":{"name":"Heidi Bradtke","age":69,"location":"East Hulda"}},{"attributes":{"name":"Christina Ryan","age":30,"location":"South Kayla"}},{"attributes":{"name":"Lana Heller","age":70,"location":"Laronton"}},{"attributes":{"name":"Jennie Mayer-Armstrong","age":60,"location":"New Godfrey"}},{"attributes":{"name":"Donnie Rutherford","age":66,"location":"Janickview"}},{"attributes":{"name":"Yvonne Schinner-Legros","age":73,"location":"Wizaview"}},{"attributes":{"name":"Ressie Johns","age":78,"location":"Waldorf"}},{"attributes":{"name":"Rodolfo Fritsch","age":73,"location":"Fort Adelleburgh"}},{"attributes":{"name":"Dorothy Feeney Jr.","age":46,"location":"Welchville"}},{"attributes":{"name":"Shannon Champlin","age":32,"location":"Beattymouth"}},{"attributes":{"name":"Moses Kozey","age":39,"location":"Hahnburgh"}},{"attributes":{"name":"Theron Erdman","age":36,"location":"Suzannefort"}},{"attributes":{"name":"Gloria Schmidt","age":34,"location":"East Dorthystead"}},{"attributes":{"name":"Miss Roscoe Becker","age":58,"location":"Considineborough"}},{"attributes":{"name":"Kelton Littel","age":31,"location":"Irmaside"}},{"attributes":{"name":"Marjorie Ernser","age":44,"location":"North Astrid"}},{"attributes":{"name":"Calvin Bartoletti","age":78,"location":"Keithville"}},{"attributes":{"name":"Mrs. Mandy Mraz","age":21,"location":"Halvorsonboro"}},{"attributes":{"name":"Dean Emard","age":43,"location":"Paxtonstad"}},{"attributes":{"name":"Tianna Kerluke","age":65,"location":"Modestaborough"}},{"attributes":{"name":"Alfredo Armstrong","age":80,"location":"Fort Abnermouth"}},{"attributes":{"name":"Hank Zieme","age":73,"location":"Port Lucileville"}},{"attributes":{"name":"Jon Christiansen","age":60,"location":"Kaciboro"}},{"attributes":{"name":"Nicholaus White","age":47,"location":"Houston"}},{"attributes":{"name":"Claudia Kunde","age":46,"location":"Mariettaport"}},{"attributes":{"name":"Jeanette Lesch","age":79,"location":"East Reanna"}},{"attributes":{"name":"Abagail Russel","age":38,"location":"Chelseyfurt"}},{"attributes":{"name":"Kristin Waters","age":38,"location":"Williamsonview"}},{"attributes":{"name":"Ralph Kassulke","age":19,"location":"New Anne"}},{"attributes":{"name":"Axel O'Connell","age":75,"location":"Fort Georgetteborough"}},{"attributes":{"name":"Jesse Pfannerstill","age":77,"location":"Lake Darwinberg"}},{"attributes":{"name":"Mr. Hellen Denesik MD","age":30,"location":"Lake Rosamondville"}},{"attributes":{"name":"Ervin Krajcik","age":40,"location":"West Astrid"}},{"attributes":{"name":"Arnold Prosacco","age":35,"location":"South Tiannaview"}},{"attributes":{"name":"Mr. Simeon Fadel","age":64,"location":"Hickleworth"}},{"attributes":{"name":"Blake Simonis","age":22,"location":"Kubville"}},{"attributes":{"name":"Meredith Feil","age":70,"location":"Sioux City"}},{"attributes":{"name":"Ronald Hudson","age":62,"location":"Newark"}},{"attributes":{"name":"Armando Krajcik II","age":76,"location":"Port Javier"}},{"attributes":{"name":"Shelly Koss","age":55,"location":"New Brain"}},{"attributes":{"name":"Tim Crona","age":59,"location":"Ceres"}},{"attributes":{"name":"Lawson Labadie","age":42,"location":"Atlanta"}},{"attributes":{"name":"Aaliyah Quigley","age":74,"location":"Wardburgh"}},{"attributes":{"name":"Darlene Ernser","age":40,"location":"Lavernacester"}},{"attributes":{"name":"Maxine Herzog","age":24,"location":"Randiberg"}},{"attributes":{"name":"Deanna Kiehn","age":42,"location":"West Wilhelmine"}},{"attributes":{"name":"Jamie O'Kon","age":73,"location":"Quincy"}},{"attributes":{"name":"Mrs. Beatrice Effertz Sr.","age":43,"location":"Lake Kenny"}},{"attributes":{"name":"Hilton Braun","age":75,"location":"North Maribelfort"}},{"attributes":{"name":"Stella Moen III","age":66,"location":"Port Natalia"}},{"attributes":{"name":"Clara Schimmel","age":40,"location":"Tremblayfield"}},{"attributes":{"name":"Ms. Alexis Hyatt","age":71,"location":"Huelscester"}},{"attributes":{"name":"Terence Bernier-Greenfelder","age":55,"location":"Evanston"}},{"attributes":{"name":"Tracy Schowalter","age":62,"location":"South Madalyn"}},{"attributes":{"name":"Rose Jones","age":48,"location":"Schinnerberg"}},{"attributes":{"name":"Doris Boyle","age":71,"location":"East Pierrefurt"}},{"attributes":{"name":"Ms. Micheal Koss","age":21,"location":"Lake Cicero"}},{"attributes":{"name":"Lavern Watsica Sr.","age":50,"location":"Theresestad"}},{"attributes":{"name":"Harvey Willms","age":39,"location":"Rodrigoton"}},{"attributes":{"name":"Jared Lynch I","age":59,"location":"McAllen"}},{"attributes":{"name":"Rosemary Schimmel","age":30,"location":"Duluth"}},{"attributes":{"name":"Tracy Boehm","age":27,"location":"Seattle"}},{"attributes":{"name":"Jose Durgan","age":56,"location":"Nestorborough"}},{"attributes":{"name":"Madisyn Larkin","age":63,"location":"South Alessandrohaven"}},{"attributes":{"name":"Luna Lang II","age":59,"location":"East Ephraimfort"}},{"attributes":{"name":"Lonzo Bednar","age":22,"location":"Braunmouth"}},{"attributes":{"name":"Bernadette Watsica","age":59,"location":"Haagworth"}},{"attributes":{"name":"Turner Champlin","age":20,"location":"Garden Grove"}},{"attributes":{"name":"Pedro Spinka DDS","age":69,"location":"Bend"}},{"attributes":{"name":"Chelsie Mosciski","age":65,"location":"East Mohammedworth"}},{"attributes":{"name":"Betsy Tremblay","age":47,"location":"Geovannystead"}},{"attributes":{"name":"Travis Hamill","age":19,"location":"Gilbertboro"}},{"attributes":{"name":"Jakayla Abbott","age":51,"location":"Sawayntown"}},{"attributes":{"name":"Garrett Hudson-Hahn Jr.","age":40,"location":"Starkside"}},{"attributes":{"name":"Juan Little","age":34,"location":"Florissant"}},{"attributes":{"name":"Earnest Mosciski IV","age":23,"location":"New Alyce"}},{"attributes":{"name":"Brooklyn Christiansen III","age":18,"location":"Ceres"}},{"attributes":{"name":"Freida Robel","age":71,"location":"Morissetteville"}},{"attributes":{"name":"Sincere Spinka","age":55,"location":"East Lansing"}},{"attributes":{"name":"Vincenza Shields","age":22,"location":"South Miller"}},{"attributes":{"name":"Milton Smitham","age":68,"location":"Theronshire"}},{"attributes":{"name":"Dolores Goyette","age":30,"location":"North Sylvan"}},{"attributes":{"name":"Rita Padberg","age":40,"location":"Denaport"}},{"attributes":{"name":"Zora Cole","age":66,"location":"Lake Maryam"}},{"attributes":{"name":"Lula Schmeler","age":76,"location":"Fort Rocio"}},{"attributes":{"name":"Brad Parker","age":56,"location":"Assuntaberg"}},{"attributes":{"name":"Everett Schroeder","age":37,"location":"Chicago"}},{"attributes":{"name":"Dayana Tillman","age":58,"location":"Fort Salma"}},{"attributes":{"name":"Paxton Corwin-Champlin Sr.","age":71,"location":"Hermanborough"}},{"attributes":{"name":"Jessie Mayer","age":44,"location":"Lesterville"}},{"attributes":{"name":"Felix Reichel","age":35,"location":"Florenciofield"}},{"attributes":{"name":"Elizabeth Keeling","age":27,"location":"Lake Bert"}},{"attributes":{"name":"Ernest Moen","age":47,"location":"Mosciskifield"}},{"attributes":{"name":"Arturo Berge","age":18,"location":"O'Connellview"}},{"attributes":{"name":"Henrietta Huel","age":59,"location":"New Adalberto"}},{"attributes":{"name":"Hettie Conn","age":42,"location":"Konopelskiborough"}},{"attributes":{"name":"Dr. Marcella Bailey","age":55,"location":"Whitecester"}},{"attributes":{"name":"Tanya Corwin","age":19,"location":"Cummerataside"}},{"attributes":{"name":"Carli Armstrong","age":25,"location":"Fort Vincenzastad"}},{"attributes":{"name":"Delmer Jast","age":41,"location":"Fort Estel"}},{"attributes":{"name":"Ricky West","age":45,"location":"Port Minniechester"}},{"attributes":{"name":"Rhiannon Runte","age":71,"location":"Eldoraland"}},{"attributes":{"name":"Grady Crist","age":80,"location":"Hammond"}},{"attributes":{"name":"Gerald Casper","age":75,"location":"Dickinsonborough"}},{"attributes":{"name":"Javier Kuphal","age":71,"location":"Georgetown"}},{"attributes":{"name":"Mabel Flatley PhD","age":29,"location":"North Wilmercester"}},{"attributes":{"name":"Miss Marian Bins","age":21,"location":"Fort Virginie"}},{"attributes":{"name":"Vella McCullough","age":39,"location":"Fort Holden"}},{"attributes":{"name":"Rhea Tremblay DDS","age":72,"location":"Dachfort"}},{"attributes":{"name":"Casey Crooks","age":23,"location":"Metzhaven"}},{"attributes":{"name":"Conner Mayert","age":69,"location":"Tonawanda"}},{"attributes":{"name":"Terry Kiehn","age":78,"location":"Drakeland"}},{"attributes":{"name":"Neoma Willms","age":30,"location":"Norfolk"}},{"attributes":{"name":"Daisy Ferry","age":42,"location":"Laguna Niguel"}},{"attributes":{"name":"Darryl Ferry","age":41,"location":"New Gail"}},{"attributes":{"name":"Eudora Crona","age":24,"location":"Tillmanfurt"}},{"attributes":{"name":"Taylor Hane","age":61,"location":"Logan"}},{"attributes":{"name":"Gregg Koepp","age":43,"location":"South Stefanboro"}},{"attributes":{"name":"Adam Beer","age":23,"location":"East Jewelcester"}},{"attributes":{"name":"Shawna White","age":27,"location":"Hudsonville"}},{"attributes":{"name":"Ms. Betsy Aufderhar","age":53,"location":"Duluth"}},{"attributes":{"name":"Darlene Harris","age":47,"location":"Sagecester"}},{"attributes":{"name":"Ms. Lilla Pacocha","age":38,"location":"Grantstad"}},{"attributes":{"name":"Elva Harris","age":30,"location":"Port Sven"}},{"attributes":{"name":"Dr. Chelsea Reynolds-Conroy","age":72,"location":"New Stuart"}},{"attributes":{"name":"Alfredo Rogahn PhD","age":30,"location":"Ernestinemouth"}},{"attributes":{"name":"Kristina Swaniawski","age":49,"location":"East Austenhaven"}},{"attributes":{"name":"Francisco Abbott","age":57,"location":"Stoneberg"}},{"attributes":{"name":"Sandy Koelpin","age":80,"location":"Port Assuntaworth"}},{"attributes":{"name":"Delbert Kreiger","age":45,"location":"Josianeshire"}},{"attributes":{"name":"Ronnie Koss","age":26,"location":"East Emilborough"}},{"attributes":{"name":"Gloria Fisher","age":54,"location":"Hickleland"}},{"attributes":{"name":"Darlene Stehr","age":63,"location":"South Ovaview"}},{"attributes":{"name":"Ronald Howell III","age":56,"location":"Dustyport"}},{"attributes":{"name":"Edwin Crona","age":74,"location":"High Point"}},{"attributes":{"name":"Ismael Tromp","age":29,"location":"Imaville"}},{"attributes":{"name":"Myra Wilkinson-Ortiz","age":52,"location":"Adityaborough"}},{"attributes":{"name":"Amy Abshire Sr.","age":63,"location":"Scarlettboro"}},{"attributes":{"name":"Estevan Stamm","age":49,"location":"Natview"}},{"attributes":{"name":"Dr. Elliot Nader","age":63,"location":"Fort Garrisonfort"}},{"attributes":{"name":"Mrs. Crawford Reichert","age":30,"location":"East Clairfort"}},{"attributes":{"name":"Gertrude Rodriguez","age":34,"location":"La Habra"}},{"attributes":{"name":"Melissa Hessel","age":27,"location":"Windlerstad"}},{"attributes":{"name":"Dusty Rippin","age":56,"location":"Herzogmouth"}},{"attributes":{"name":"Ardella Schulist","age":61,"location":"Kirlinburgh"}},{"attributes":{"name":"Velma Jenkins","age":74,"location":"Amanifield"}},{"attributes":{"name":"Shany Stamm PhD","age":80,"location":"Jaskolskiborough"}},{"attributes":{"name":"Jean Turcotte","age":70,"location":"Fort Roberta"}},{"attributes":{"name":"Loyce Bogisich","age":35,"location":"Beckerport"}},{"attributes":{"name":"Archie Schmitt","age":70,"location":"Fort Zechariah"}},{"attributes":{"name":"Alfonso Bechtelar I","age":58,"location":"Katelynnview"}},{"attributes":{"name":"Mrs. Krista Waelchi","age":73,"location":"West Romaland"}},{"attributes":{"name":"May Rau","age":52,"location":"Keelingburgh"}},{"attributes":{"name":"Shannon O'Conner I","age":46,"location":"San Bruno"}},{"attributes":{"name":"Eleanor Mitchell","age":63,"location":"Reeseside"}},{"attributes":{"name":"Bo Hayes","age":40,"location":"North Marianport"}},{"attributes":{"name":"Clarissa Ratke","age":34,"location":"Lake Raymundo"}},{"attributes":{"name":"Mrs. Godfrey Rowe","age":65,"location":"Steuberberg"}},{"attributes":{"name":"Wilburn Nolan","age":38,"location":"North Leonebury"}},{"attributes":{"name":"Virginia Hahn","age":55,"location":"Roweport"}},{"attributes":{"name":"Loren Stroman","age":51,"location":"Fosterstad"}},{"attributes":{"name":"Toy Quigley","age":63,"location":"Mariellestead"}},{"attributes":{"name":"Kayley Herzog","age":74,"location":"Denesikbury"}},{"attributes":{"name":"Bertha Medhurst","age":49,"location":"Lake Prince"}},{"attributes":{"name":"Sunny Mosciski","age":45,"location":"Anjalicester"}},{"attributes":{"name":"Nikita Grimes","age":68,"location":"Brookefort"}},{"attributes":{"name":"James Mante Jr.","age":30,"location":"North Dandre"}},{"attributes":{"name":"Darnell Kassulke","age":20,"location":"East Haliefurt"}},{"attributes":{"name":"Nathanael Lebsack","age":24,"location":"Fort Humberto"}},{"attributes":{"name":"Saul Will","age":80,"location":"South Mattiemouth"}},{"attributes":{"name":"Mrs. Cynthia Doyle","age":49,"location":"Paxtonfort"}},{"attributes":{"name":"Tate Walsh DVM","age":58,"location":"West Cleve"}},{"attributes":{"name":"Mr. Benny Jacobs","age":76,"location":"Michealchester"}},{"attributes":{"name":"Van Crooks","age":55,"location":"Apex"}},{"attributes":{"name":"Mr. Edgar Waelchi","age":28,"location":"Columbusside"}},{"attributes":{"name":"Abby Howe","age":19,"location":"Olsoncester"}},{"attributes":{"name":"Mathew King","age":58,"location":"Seattle"}},{"attributes":{"name":"Ms. Angela Botsford","age":75,"location":"Georgeport"}},{"attributes":{"name":"Shemar Kuhic","age":60,"location":"Jarredmouth"}},{"attributes":{"name":"Viola Wuckert","age":35,"location":"Novi"}},{"attributes":{"name":"Nasir Barrows","age":47,"location":"Renton"}},{"attributes":{"name":"Pete Morissette III","age":29,"location":"Tiaraport"}},{"attributes":{"name":"Pietro Schiller","age":38,"location":"Rockford"}},{"attributes":{"name":"Jalen McGlynn","age":32,"location":"Jadeville"}},{"attributes":{"name":"Vincent Oberbrunner","age":40,"location":"Desmondport"}},{"attributes":{"name":"Gwen Douglas","age":41,"location":"Khalidbury"}},{"attributes":{"name":"Lamar Ernser","age":31,"location":"Kathrynburgh"}},{"attributes":{"name":"Millie Thiel","age":44,"location":"Prosaccoboro"}},{"attributes":{"name":"Derek Jaskolski","age":48,"location":"New Blaze"}},{"attributes":{"name":"Candelario Maggio","age":39,"location":"South Quentin"}},{"attributes":{"name":"Nikko Brekke","age":25,"location":"Hoppeworth"}},{"attributes":{"name":"Barry Pouros","age":32,"location":"North Zakary"}},{"attributes":{"name":"Penelope Yundt","age":42,"location":"West Hillaryfield"}},{"attributes":{"name":"Dr. Hanna Bayer","age":50,"location":"Koelpinberg"}},{"attributes":{"name":"Dwight Blick","age":69,"location":"Fort Elliottchester"}},{"attributes":{"name":"Mrs. Harmony Hahn","age":70,"location":"Bergeberg"}},{"attributes":{"name":"Milton Lockman Sr.","age":38,"location":"Bednarport"}},{"attributes":{"name":"Cameron Ullrich-Harris","age":29,"location":"O'Keefebury"}},{"attributes":{"name":"Sadye Bode","age":34,"location":"Ritacester"}},{"attributes":{"name":"Ernestina Bergnaum-Donnelly","age":46,"location":"Maggioburgh"}},{"attributes":{"name":"Mr. Alice Stroman","age":19,"location":"Sylvanville"}},{"attributes":{"name":"Ronald Wisoky","age":24,"location":"Germantown"}},{"attributes":{"name":"Quincy Schuppe","age":47,"location":"Monterey Park"}},{"attributes":{"name":"Lamar Halvorson","age":63,"location":"Port Toby"}},{"attributes":{"name":"Santiago Sanford","age":41,"location":"Jacobibury"}},{"attributes":{"name":"Melinda Hartmann","age":46,"location":"South Frederiqueton"}},{"attributes":{"name":"Andreane Herman","age":67,"location":"Carmichael"}},{"attributes":{"name":"Essie Spinka","age":37,"location":"Cassinmouth"}},{"attributes":{"name":"Troy Windler","age":70,"location":"Deckowton"}},{"attributes":{"name":"Garrett Harris DVM","age":52,"location":"Harmonyboro"}},{"attributes":{"name":"Lisa Ernser","age":65,"location":"Lake Garnettstad"}},{"attributes":{"name":"Haylee Feil","age":24,"location":"South Consuelofield"}},{"attributes":{"name":"Ramon Doyle-Hilpert","age":62,"location":"Iowa City"}},{"attributes":{"name":"Fay Kuhic","age":44,"location":"Elizafurt"}},{"attributes":{"name":"Leon Spinka","age":48,"location":"Kiarraside"}},{"attributes":{"name":"Ottilie Hilpert IV","age":73,"location":"Lake Maverickfort"}},{"attributes":{"name":"Harry Kuhlman","age":26,"location":"North Janisport"}},{"attributes":{"name":"Jack Hudson Jr.","age":22,"location":"Faheyport"}},{"attributes":{"name":"Clifton Mueller DDS","age":34,"location":"Rautown"}},{"attributes":{"name":"Ed Kertzmann","age":23,"location":"Allentown"}},{"attributes":{"name":"Erika Lemke II","age":79,"location":"Royalchester"}},{"attributes":{"name":"Pietro Lynch","age":27,"location":"Lizaland"}},{"attributes":{"name":"Kerry O'Connell","age":51,"location":"Stiedemannstead"}},{"attributes":{"name":"Lorene Kertzmann","age":73,"location":"Itzelboro"}},{"attributes":{"name":"Sheri Corwin","age":48,"location":"Walshshire"}},{"attributes":{"name":"Maybelle O'Connell","age":42,"location":"New Eulalia"}},{"attributes":{"name":"Devon Gutmann","age":36,"location":"Nicolasfield"}},{"attributes":{"name":"Christian Kub","age":53,"location":"Richardson"}},{"attributes":{"name":"Amber Bins","age":68,"location":"Hermannboro"}},{"attributes":{"name":"Eliezer Turner","age":60,"location":"East Madilyn"}},{"attributes":{"name":"Brandy Gutmann","age":71,"location":"Braunfield"}},{"attributes":{"name":"Kristi Brown","age":77,"location":"Brookline"}},{"attributes":{"name":"Nikko Wiegand MD","age":64,"location":"Lake Elva"}},{"attributes":{"name":"Isaiah Brown","age":29,"location":"Hackensack"}},{"attributes":{"name":"Christina Lebsack","age":32,"location":"Yoshikoworth"}},{"attributes":{"name":"Sherman Tremblay MD","age":24,"location":"Rialto"}},{"attributes":{"name":"Mortimer Haley","age":80,"location":"Dasiafurt"}},{"attributes":{"name":"Dana Fisher","age":42,"location":"West Emmy"}},{"attributes":{"name":"Shanel Cormier","age":50,"location":"Port Susanna"}},{"attributes":{"name":"Jacob Bradtke","age":26,"location":"Greenholtshire"}},{"attributes":{"name":"Dale Sporer","age":54,"location":"Treverside"}},{"attributes":{"name":"Clint Veum","age":60,"location":"East Marjorie"}},{"attributes":{"name":"Leslie Pollich","age":42,"location":"East Wilber"}},{"attributes":{"name":"Darren Ratke","age":66,"location":"Margetown"}},{"attributes":{"name":"Damon Cruickshank DVM","age":43,"location":"Schummworth"}},{"attributes":{"name":"Mac O'Connell","age":54,"location":"West Giuseppeshire"}},{"attributes":{"name":"Mario Swaniawski","age":31,"location":"Steuberchester"}},{"attributes":{"name":"Adaline Grimes","age":57,"location":"Lake Destini"}},{"attributes":{"name":"Corene Boyle Sr.","age":69,"location":"South Jalonstead"}},{"attributes":{"name":"Aliya Rippin-Roob","age":64,"location":"West Alphonsoborough"}},{"attributes":{"name":"Kate Cole","age":36,"location":"South Hoseaburgh"}},{"attributes":{"name":"Brooke D'Amore","age":65,"location":"South Wade"}},{"attributes":{"name":"Herbert Prosacco","age":59,"location":"Fort Emilio"}},{"attributes":{"name":"Ms. Wanda Howe","age":32,"location":"Johnstonfield"}},{"attributes":{"name":"Kathryn Hegmann","age":40,"location":"New Aronfield"}},{"attributes":{"name":"Bryan Will","age":28,"location":"South Merlin"}},{"attributes":{"name":"Andrew Zulauf","age":42,"location":"Fort Claudstad"}},{"attributes":{"name":"Luther Huel","age":64,"location":"West Karlieboro"}},{"attributes":{"name":"Mike Smitham Sr.","age":19,"location":"West Owenshire"}},{"attributes":{"name":"Alexis Grady","age":62,"location":"Fort Viviane"}},{"attributes":{"name":"Elmira Carroll","age":30,"location":"North Randalside"}},{"attributes":{"name":"Shannon Shanahan","age":60,"location":"Adelleside"}},{"attributes":{"name":"Mrs. Wanda Blick DDS","age":44,"location":"Davie"}},{"attributes":{"name":"Anais Williamson","age":63,"location":"West Kadecester"}},{"attributes":{"name":"Annie Oberbrunner","age":28,"location":"North Devon"}},{"attributes":{"name":"Dr. Jeremiah Hansen","age":23,"location":"Beerview"}},{"attributes":{"name":"Kitty Green","age":49,"location":"Ferryhaven"}},{"attributes":{"name":"Alma Strosin","age":20,"location":"Dimitrichester"}},{"attributes":{"name":"Mrs. Julius Franey","age":24,"location":"O'Reillyfield"}},{"attributes":{"name":"Joey Hagenes","age":34,"location":"West Adellstead"}},{"attributes":{"name":"Leslie Kohler","age":49,"location":"Hackettland"}},{"attributes":{"name":"Terrell Harber","age":32,"location":"Greencester"}},{"attributes":{"name":"Lesley Lueilwitz-Kertzmann","age":76,"location":"Altadena"}},{"attributes":{"name":"Stella Terry","age":26,"location":"Fort Alfredfield"}},{"attributes":{"name":"Pat Schneider","age":23,"location":"North Guidotown"}},{"attributes":{"name":"Miriam Lueilwitz","age":34,"location":"Eden Prairie"}},{"attributes":{"name":"Major Volkman","age":47,"location":"Coreneview"}},{"attributes":{"name":"Mr. Shemar Haley","age":67,"location":"Heidenreichstad"}},{"attributes":{"name":"Milford Swaniawski","age":64,"location":"Kiannacester"}},{"attributes":{"name":"Kolby O'Reilly V","age":36,"location":"West Melba"}},{"attributes":{"name":"Madison Goodwin","age":33,"location":"Port Rebekahshire"}},{"attributes":{"name":"Halie Koelpin Jr.","age":56,"location":"Fort Lilly"}},{"attributes":{"name":"Joel Satterfield","age":31,"location":"Wheaton"}},{"attributes":{"name":"Marc Crooks","age":47,"location":"Springdale"}},{"attributes":{"name":"Juan Swaniawski","age":76,"location":"Littelfurt"}},{"attributes":{"name":"Anahi Stoltenberg","age":48,"location":"West Sheldonland"}},{"attributes":{"name":"Tanya Leffler","age":48,"location":"Mauricioport"}},{"attributes":{"name":"Wilma Moen","age":57,"location":"Rohanside"}},{"attributes":{"name":"Kara Mante IV","age":29,"location":"Moreno Valley"}},{"attributes":{"name":"Grayce Bernier-Herman","age":51,"location":"Rettaland"}},{"attributes":{"name":"Adeline Davis","age":63,"location":"West Gianni"}},{"attributes":{"name":"Maida Kuphal-Von","age":75,"location":"Bayerbury"}},{"attributes":{"name":"Marcos Flatley IV","age":63,"location":"East Jaylanfield"}},{"attributes":{"name":"Neal Koss","age":22,"location":"Mylestown"}},{"attributes":{"name":"Jazmyne Moen","age":46,"location":"Port Annetta"}},{"attributes":{"name":"Arthur Lueilwitz","age":40,"location":"Port Merle"}},{"attributes":{"name":"Chaim Schroeder","age":57,"location":"Lake Megane"}},{"attributes":{"name":"Addie Hand","age":34,"location":"East Gretaworth"}},{"attributes":{"name":"Angelita Mayert","age":31,"location":"Richmondview"}},{"attributes":{"name":"Jeramy Gusikowski","age":55,"location":"Dallas"}},{"attributes":{"name":"Amelie Runolfsson-Feil","age":19,"location":"Stanleyton"}},{"attributes":{"name":"Jazlyn McCullough","age":69,"location":"Fort Garryfurt"}},{"attributes":{"name":"Dominic Gorczany","age":31,"location":"Dwightbury"}},{"attributes":{"name":"Meredith Willms","age":29,"location":"Hesperia"}},{"attributes":{"name":"Kent Batz","age":18,"location":"Barrowsstead"}},{"attributes":{"name":"Harry Lesch","age":59,"location":"North Rachelle"}},{"attributes":{"name":"Fred Jacobson PhD","age":80,"location":"Ramonaview"}},{"attributes":{"name":"Dayana Ebert","age":65,"location":"East Rettaton"}},{"attributes":{"name":"Freeman Runolfsson IV","age":21,"location":"Hendersonville"}},{"attributes":{"name":"Cameron Hintz-Turner","age":53,"location":"Mesquite"}},{"attributes":{"name":"Terrence Senger","age":28,"location":"Whitneyberg"}},{"attributes":{"name":"Emanuel Reichert","age":71,"location":"East Parisview"}},{"attributes":{"name":"Jean Powlowski","age":56,"location":"New Marley"}},{"attributes":{"name":"Will Kshlerin Jr.","age":38,"location":"East Lois"}},{"attributes":{"name":"Darla Grant","age":23,"location":"Kochhaven"}},{"attributes":{"name":"Andres Lowe","age":48,"location":"East Dejon"}},{"attributes":{"name":"Nicholas Hamill-Gottlieb","age":72,"location":"Florissant"}},{"attributes":{"name":"Doreen Jenkins","age":55,"location":"Fort Pearlietown"}},{"attributes":{"name":"Lily Emard","age":72,"location":"Fort Dejuan"}},{"attributes":{"name":"Guillermo Hand","age":27,"location":"Averyfurt"}},{"attributes":{"name":"Israel Mills","age":18,"location":"New Luella"}},{"attributes":{"name":"Phyllis Senger","age":80,"location":"West Charlottehaven"}},{"attributes":{"name":"Terrance Herman","age":68,"location":"Noahborough"}},{"attributes":{"name":"Edmund Boyer","age":62,"location":"Celestinostead"}},{"attributes":{"name":"Laverne Green","age":48,"location":"New Nadiaburgh"}},{"attributes":{"name":"Chaim Feil-Kreiger","age":45,"location":"Brownchester"}},{"attributes":{"name":"Miss Kelvin Hartmann","age":30,"location":"Westfield"}},{"attributes":{"name":"Mrs. Dwight Gutkowski","age":45,"location":"Sonyaview"}},{"attributes":{"name":"Mozell Borer","age":19,"location":"Rosemead"}},{"attributes":{"name":"Ignacio Franecki","age":24,"location":"Joplin"}},{"attributes":{"name":"Nathaniel Herzog-Mraz","age":19,"location":"Langworthchester"}},{"attributes":{"name":"Duane Turcotte-Koepp IV","age":67,"location":"Nolanchester"}},{"attributes":{"name":"Karla O'Kon","age":55,"location":"West Isidro"}},{"attributes":{"name":"Mrs. Guadalupe Hoeger","age":68,"location":"South Allisonfield"}},{"attributes":{"name":"Homer Dietrich-Maggio I","age":29,"location":"Hollywood"}},{"attributes":{"name":"Wilma Robel","age":61,"location":"Kent"}},{"attributes":{"name":"Halie Dare Sr.","age":55,"location":"Franciscaboro"}},{"attributes":{"name":"Kory Kerluke","age":54,"location":"Fort Elenatown"}},{"attributes":{"name":"Melody Skiles Jr.","age":51,"location":"Reganstad"}},{"attributes":{"name":"Genevieve Grimes","age":41,"location":"Jarvishaven"}},{"attributes":{"name":"Lois Smitham","age":20,"location":"East Theresiachester"}},{"attributes":{"name":"Shelia Watsica","age":77,"location":"South Omer"}},{"attributes":{"name":"Rose Krajcik","age":22,"location":"Sigmundfurt"}},{"attributes":{"name":"Julie Johns","age":80,"location":"Andersonworth"}},{"attributes":{"name":"Glen Koepp","age":21,"location":"Baldwin Park"}},{"attributes":{"name":"Rita Johnson","age":43,"location":"Port Katharinahaven"}},{"attributes":{"name":"Emmanuel Schimmel","age":53,"location":"Fadelland"}},{"attributes":{"name":"Christina Larkin","age":59,"location":"Doral"}},{"attributes":{"name":"Jena Bosco","age":23,"location":"Kuphalfurt"}},{"attributes":{"name":"Mr. Winona Walsh","age":74,"location":"North Othoport"}},{"attributes":{"name":"Charley Torp","age":58,"location":"Palm Desert"}},{"attributes":{"name":"Virginia Corwin","age":21,"location":"Liamland"}},{"attributes":{"name":"Oda Breitenberg","age":32,"location":"Des Plaines"}},{"attributes":{"name":"Jaclyn Grant I","age":57,"location":"Aliaport"}},{"attributes":{"name":"Presley Weber","age":37,"location":"Kobyberg"}},{"attributes":{"name":"Gary Mann","age":58,"location":"Andersontown"}},{"attributes":{"name":"Lauren Fisher","age":78,"location":"Jeremiefort"}},{"attributes":{"name":"Gabe Langworth","age":44,"location":"East Ephraimburgh"}},{"attributes":{"name":"America Koepp","age":71,"location":"East Mariahberg"}},{"attributes":{"name":"Reggie Greenholt","age":59,"location":"Celineboro"}},{"attributes":{"name":"Billy Borer","age":59,"location":"Southfield"}},{"attributes":{"name":"Ruth Stamm","age":62,"location":"South Aureliebury"}},{"attributes":{"name":"Arvel Zulauf Jr.","age":68,"location":"Briannetown"}},{"attributes":{"name":"Earl Reichel","age":24,"location":"West Geoberg"}},{"attributes":{"name":"Ross Lynch","age":50,"location":"East Lempiville"}},{"attributes":{"name":"Dr. Gayle Howell","age":32,"location":"Colliermouth"}},{"attributes":{"name":"Yesenia Kozey","age":24,"location":"Fort Stone"}},{"attributes":{"name":"Fleta Stiedemann","age":62,"location":"Erdmancester"}},{"attributes":{"name":"Kristopher Wintheiser II","age":42,"location":"Tanyaburgh"}},{"attributes":{"name":"Denise Satterfield PhD","age":71,"location":"Swaniawskihaven"}},{"attributes":{"name":"Olga Hirthe","age":74,"location":"Reingerfort"}},{"attributes":{"name":"Clifton Keebler","age":58,"location":"West Louvenia"}},{"attributes":{"name":"Emil Okuneva","age":45,"location":"Port Judeside"}},{"attributes":{"name":"Rochelle Stracke","age":53,"location":"Altoona"}},{"attributes":{"name":"Mr. Harrison Dare","age":19,"location":"Lake Darrellville"}},{"attributes":{"name":"Grover Ortiz","age":69,"location":"Norwalk"}},{"attributes":{"name":"Brycen Koss","age":24,"location":"North Ashaport"}},{"attributes":{"name":"Bobbie Monahan","age":29,"location":"South Dewitt"}},{"attributes":{"name":"Jerrold Ziemann","age":60,"location":"Shanyshire"}},{"attributes":{"name":"Jayme Harris","age":56,"location":"Bertport"}},{"attributes":{"name":"Mrs. Danielle Beatty","age":29,"location":"Amayaport"}},{"attributes":{"name":"Zoila King-Kovacek","age":80,"location":"Spokane Valley"}},{"attributes":{"name":"Carl Spencer","age":31,"location":"West Lucymouth"}},{"attributes":{"name":"Lauretta Dach Jr.","age":71,"location":"Terrychester"}},{"attributes":{"name":"Christy Shields","age":65,"location":"Inglewood"}},{"attributes":{"name":"Antonia Barrows","age":18,"location":"Port Hudson"}},{"attributes":{"name":"Jon Wolf","age":28,"location":"New Danial"}},{"attributes":{"name":"Salvatore Sipes","age":53,"location":"Ortizberg"}},{"attributes":{"name":"Rosario Mueller","age":70,"location":"Devanport"}},{"attributes":{"name":"Nathaniel Kiehn","age":56,"location":"New Helmer"}},{"attributes":{"name":"Miss Bobby Welch","age":77,"location":"New Revafield"}},{"attributes":{"name":"Greg Brown","age":30,"location":"Fort Wilhelmstead"}},{"attributes":{"name":"Dr. Stella Crona","age":47,"location":"Khalidworth"}},{"attributes":{"name":"Marianne Gusikowski","age":64,"location":"East Jaycee"}},{"attributes":{"name":"Mylene Hoeger","age":45,"location":"West Bettye"}},{"attributes":{"name":"Willie Predovic","age":77,"location":"Celiastead"}},{"attributes":{"name":"Paula Kris","age":76,"location":"Susantown"}},{"attributes":{"name":"Dedric Welch","age":44,"location":"Hackettworth"}},{"attributes":{"name":"Kimberly Heaney","age":26,"location":"Bradyboro"}},{"attributes":{"name":"Jared Casper","age":43,"location":"Port Sim"}},{"attributes":{"name":"Estelle Christiansen","age":32,"location":"Port Felicita"}},{"attributes":{"name":"Theresia Gleason","age":58,"location":"Jaysonfield"}},{"attributes":{"name":"Dr. Hillard Legros","age":66,"location":"Bryceton"}},{"attributes":{"name":"Dr. Randolph Boyer","age":76,"location":"South Gustport"}},{"attributes":{"name":"Sylvia Koch","age":29,"location":"Toledo"}},{"attributes":{"name":"Monte Rosenbaum I","age":31,"location":"Battle Creek"}},{"attributes":{"name":"Mrs. Flora Reichert","age":28,"location":"North Joeyborough"}},{"attributes":{"name":"Leland Hamill","age":54,"location":"Daynaland"}},{"attributes":{"name":"Derrick Kris","age":51,"location":"Lake Wellington"}},{"attributes":{"name":"Mr. Sherman Kassulke","age":45,"location":"New Bedford"}},{"attributes":{"name":"Joanna Wyman","age":55,"location":"Schummmouth"}},{"attributes":{"name":"Willis Gusikowski","age":39,"location":"Trentonton"}},{"attributes":{"name":"Janis Ziemann","age":69,"location":"North Camron"}},{"attributes":{"name":"Delores Rosenbaum","age":77,"location":"Gailport"}},{"attributes":{"name":"Lloyd Tremblay","age":67,"location":"Pollichview"}},{"attributes":{"name":"Amir Marvin","age":69,"location":"Lake Amoshaven"}},{"attributes":{"name":"Tina Goldner","age":68,"location":"South Franco"}},{"attributes":{"name":"Bertha Hermiston","age":80,"location":"West Stephen"}},{"attributes":{"name":"Genevieve Huels","age":80,"location":"Port Marques"}},{"attributes":{"name":"Ron McLaughlin","age":46,"location":"Scarlettville"}},{"attributes":{"name":"Brenda McClure-Considine I","age":39,"location":"Roswell"}},{"attributes":{"name":"Rosie Effertz","age":40,"location":"East Nicoletteton"}},{"attributes":{"name":"Mrs. Thurman Will","age":32,"location":"Corenechester"}},{"attributes":{"name":"Reece Marks","age":69,"location":"Kadeland"}},{"attributes":{"name":"Chelsea Pagac V","age":18,"location":"Retacester"}},{"attributes":{"name":"Jeremy Huel","age":34,"location":"Lake Madisyn"}},{"attributes":{"name":"Marian Hoppe","age":33,"location":"East Samanta"}},{"attributes":{"name":"Jade Thiel DVM","age":22,"location":"Dallas"}},{"attributes":{"name":"Dianne Dickinson","age":54,"location":"Andresburgh"}},{"attributes":{"name":"Josiane Toy","age":79,"location":"West Tyresefield"}},{"attributes":{"name":"Max Kilback","age":66,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Gustavo Hand-Christiansen","age":61,"location":"Aspen Hill"}},{"attributes":{"name":"Ignacio Heidenreich","age":37,"location":"Murphychester"}},{"attributes":{"name":"Dion Orn","age":28,"location":"Idellaside"}},{"attributes":{"name":"Miss Edmond Smith-Hodkiewicz III","age":45,"location":"Lake Alexandreastad"}},{"attributes":{"name":"Abraham Rohan","age":68,"location":"North Winfield"}},{"attributes":{"name":"April Koelpin","age":29,"location":"Lake Jeramyfort"}},{"attributes":{"name":"Whitney Quigley","age":54,"location":"Terrellborough"}},{"attributes":{"name":"Antonette Lesch Jr.","age":76,"location":"Davisstad"}},{"attributes":{"name":"Bernard Braun-Klein DDS","age":44,"location":"North Osborneboro"}},{"attributes":{"name":"Sadie Wisoky","age":58,"location":"Asaland"}},{"attributes":{"name":"Norris Labadie","age":32,"location":"Anahifurt"}},{"attributes":{"name":"Ross Mertz","age":70,"location":"East Dana"}},{"attributes":{"name":"Pete Wuckert","age":28,"location":"Opalchester"}},{"attributes":{"name":"Brianne Muller-Schmitt","age":61,"location":"Beaumont"}},{"attributes":{"name":"Johnnie Zulauf","age":77,"location":"Fort Michaela"}},{"attributes":{"name":"Hattie Mueller","age":36,"location":"Port Alta"}},{"attributes":{"name":"Lonnie Fahey","age":29,"location":"West Loyce"}},{"attributes":{"name":"Adonis Bailey-Mraz V","age":41,"location":"Roweview"}},{"attributes":{"name":"Efren Wunsch","age":33,"location":"Morarshire"}},{"attributes":{"name":"Audreanne Heathcote","age":45,"location":"Rodolfofort"}},{"attributes":{"name":"Dr. Brooke Hane","age":44,"location":"Leoport"}},{"attributes":{"name":"Erich Shanahan","age":56,"location":"South Candido"}},{"attributes":{"name":"Garrison Harvey","age":68,"location":"Briellechester"}},{"attributes":{"name":"Vicenta Thiel","age":28,"location":"South Shanonfurt"}},{"attributes":{"name":"Lauren VonRueden Jr.","age":66,"location":"Mesa"}},{"attributes":{"name":"Debbie Dickens","age":49,"location":"Marielabury"}},{"attributes":{"name":"Frank O'Kon","age":59,"location":"New Justiceside"}},{"attributes":{"name":"Jamie Greenfelder","age":80,"location":"Boganfort"}},{"attributes":{"name":"Cielo Daugherty","age":66,"location":"West Kacey"}},{"attributes":{"name":"Toney Boehm","age":77,"location":"West Gildaton"}},{"attributes":{"name":"Mr. Matt Jerde","age":67,"location":"Fort Deronstad"}},{"attributes":{"name":"Miss Ida Nicolas","age":39,"location":"Normal"}},{"attributes":{"name":"Nayeli Mraz","age":49,"location":"Cummingsview"}},{"attributes":{"name":"Kara Pacocha","age":51,"location":"Port Angelineborough"}},{"attributes":{"name":"Dena Will-Wilkinson","age":46,"location":"North Emmanuel"}},{"attributes":{"name":"Irving Anderson","age":77,"location":"Port Linnieworth"}},{"attributes":{"name":"Marquise Lindgren","age":67,"location":"East Wanda"}},{"attributes":{"name":"Mitchel Bechtelar","age":77,"location":"Altenwerthland"}},{"attributes":{"name":"Lexie Stoltenberg-Kerluke","age":44,"location":"East Vicky"}},{"attributes":{"name":"Dedric Greenholt I","age":41,"location":"Lake Elouise"}},{"attributes":{"name":"Colin Kunze","age":48,"location":"South Adrienside"}},{"attributes":{"name":"Jerad Rolfson","age":79,"location":"Fort Pierce"}},{"attributes":{"name":"Anthony Windler DVM","age":28,"location":"West Cassandreville"}},{"attributes":{"name":"Emanuel Bergnaum","age":22,"location":"West Mark"}},{"attributes":{"name":"Warren Gerlach","age":61,"location":"Welchfort"}},{"attributes":{"name":"Wilson Mante","age":79,"location":"Port Sheridan"}},{"attributes":{"name":"Vivian Mayer","age":59,"location":"Johnsonhaven"}},{"attributes":{"name":"Dr. Irvin Tremblay III","age":49,"location":"Durganland"}},{"attributes":{"name":"Jalen Dach-Mills","age":65,"location":"West Roosevelt"}},{"attributes":{"name":"Jarrett Streich","age":69,"location":"Josiannestead"}},{"attributes":{"name":"Laurie Rodriguez","age":43,"location":"Lake Geovanni"}},{"attributes":{"name":"Anna Farrell","age":55,"location":"Cassinside"}},{"attributes":{"name":"Joshua Renner","age":28,"location":"West Gideonview"}},{"attributes":{"name":"Eleazar Abshire","age":36,"location":"Waltham"}},{"attributes":{"name":"Tomas Schamberger","age":77,"location":"Wilhelmineland"}},{"attributes":{"name":"Chris Ward","age":55,"location":"Lake Maximeview"}},{"attributes":{"name":"Adam Toy","age":38,"location":"Tampa"}},{"attributes":{"name":"Cyril Mills V","age":23,"location":"West Breannashire"}},{"attributes":{"name":"Kara Kling","age":54,"location":"New Felicitaton"}},{"attributes":{"name":"Melody Bauch","age":51,"location":"Dublin"}},{"attributes":{"name":"Rhett Shields","age":49,"location":"South Orionstad"}},{"attributes":{"name":"Corey Ondricka","age":53,"location":"Odacester"}},{"attributes":{"name":"Annabel Crona","age":63,"location":"Hodkiewiczfort"}},{"attributes":{"name":"Bethany Prohaska","age":73,"location":"Meganeworth"}},{"attributes":{"name":"Vicki Farrell DDS","age":79,"location":"Lansing"}},{"attributes":{"name":"Ms. Leanne Batz","age":54,"location":"Fort Orval"}},{"attributes":{"name":"Dr. Ruby Steuber","age":29,"location":"Rolfsonborough"}},{"attributes":{"name":"Nettie Jacobs","age":61,"location":"East Kenyatta"}},{"attributes":{"name":"Lela Toy","age":77,"location":"Fort Makennafort"}},{"attributes":{"name":"Amely Lesch","age":70,"location":"Deonteton"}},{"attributes":{"name":"Mrs. Stacey Durgan","age":37,"location":"Fort Devonport"}},{"attributes":{"name":"Deborah Wolff","age":74,"location":"Alisamouth"}},{"attributes":{"name":"Rex Flatley IV","age":78,"location":"Fort Janaboro"}},{"attributes":{"name":"Alice Swift","age":21,"location":"Schillerbury"}},{"attributes":{"name":"Elvira Blanda","age":65,"location":"Fort Odessa"}},{"attributes":{"name":"Bill Roob","age":74,"location":"Carmellaborough"}},{"attributes":{"name":"Gene Keebler","age":43,"location":"Bernhardcester"}},{"attributes":{"name":"Mona Fadel","age":39,"location":"Fort Manuela"}},{"attributes":{"name":"Delbert Crona","age":43,"location":"New Rochelle"}},{"attributes":{"name":"Anita Pfannerstill","age":39,"location":"Stephenland"}},{"attributes":{"name":"Elbert Marquardt","age":24,"location":"Dickensborough"}},{"attributes":{"name":"Geoffrey Beatty II","age":64,"location":"Port Eldridgeport"}},{"attributes":{"name":"Blake Terry","age":66,"location":"Tillmancester"}},{"attributes":{"name":"Ms. Willard Rippin","age":43,"location":"South Maidaville"}},{"attributes":{"name":"Ken Kiehn","age":78,"location":"Hemet"}},{"attributes":{"name":"Sylvia Dibbert","age":60,"location":"South Joshuah"}},{"attributes":{"name":"Ms. Larry Dach DVM","age":64,"location":"West Rafaelabury"}},{"attributes":{"name":"Jo Ankunding","age":80,"location":"Albuquerque"}},{"attributes":{"name":"Emory Oberbrunner","age":66,"location":"Walkerfurt"}},{"attributes":{"name":"Pierce Bergnaum","age":54,"location":"North Noehaven"}},{"attributes":{"name":"Ike Hettinger","age":74,"location":"New Braunfels"}},{"attributes":{"name":"Sunny Boyer","age":64,"location":"Jenaboro"}},{"attributes":{"name":"Glen Heaney DVM","age":45,"location":"McKinney"}},{"attributes":{"name":"Dennis Streich","age":30,"location":"New Sonny"}},{"attributes":{"name":"Melissa Sawayn","age":55,"location":"Krajciktown"}},{"attributes":{"name":"Leslie Mueller","age":70,"location":"Christinaborough"}},{"attributes":{"name":"Yasmine Kuhlman","age":62,"location":"New Remingtonstead"}},{"attributes":{"name":"Verner Satterfield","age":21,"location":"Hoffman Estates"}},{"attributes":{"name":"Della Smith","age":33,"location":"Baileystead"}},{"attributes":{"name":"Christy Bechtelar Sr.","age":63,"location":"Cummeratafield"}},{"attributes":{"name":"Fanny Swift","age":71,"location":"New Xzavier"}},{"attributes":{"name":"Dr. Eliseo Gerhold DVM","age":52,"location":"Buckridgeborough"}},{"attributes":{"name":"Guadalupe Crist","age":39,"location":"West Tyson"}},{"attributes":{"name":"Wallace Franecki","age":74,"location":"Ponce"}},{"attributes":{"name":"Vicky Hane","age":50,"location":"Lednertown"}},{"attributes":{"name":"Vesta Tromp MD","age":50,"location":"Alfredomouth"}},{"attributes":{"name":"Toni Wiegand Sr.","age":26,"location":"Richardson"}},{"attributes":{"name":"Eldridge Adams","age":43,"location":"Anaisland"}},{"attributes":{"name":"Aleen Crooks","age":27,"location":"Virginia Beach"}},{"attributes":{"name":"Ada Dooley","age":29,"location":"East Travon"}},{"attributes":{"name":"Mr. Wilmer Bradtke","age":41,"location":"Port Paige"}},{"attributes":{"name":"Julius Kohler","age":19,"location":"Mauriciochester"}},{"attributes":{"name":"Mrs. Gretchen Wunsch","age":54,"location":"North Lindsey"}},{"attributes":{"name":"Lonnie Hartmann","age":64,"location":"Taunton"}},{"attributes":{"name":"Lionel Swift","age":38,"location":"Calehaven"}},{"attributes":{"name":"Jaeden Luettgen","age":76,"location":"South Jessicacester"}},{"attributes":{"name":"Nora Klocko","age":22,"location":"North Monty"}},{"attributes":{"name":"Elwin Rutherford","age":19,"location":"East Tyson"}},{"attributes":{"name":"Clayton McLaughlin","age":77,"location":"South Moriah"}},{"attributes":{"name":"Gustavo Windler","age":40,"location":"Cedar Rapids"}},{"attributes":{"name":"Otis Lowe PhD","age":58,"location":"Evertport"}},{"attributes":{"name":"Dr. Troy Mertz","age":64,"location":"West Gildaland"}},{"attributes":{"name":"Jerome Hilpert Sr.","age":36,"location":"Willmouth"}},{"attributes":{"name":"Beverly Nikolaus-Pouros","age":58,"location":"Bradtkeborough"}},{"attributes":{"name":"Dr. Raphael Ondricka","age":41,"location":"Maverickfort"}},{"attributes":{"name":"Sigrid McClure","age":29,"location":"Fort Gideon"}},{"attributes":{"name":"Lana Kihn MD","age":74,"location":"Skyefield"}},{"attributes":{"name":"Oliver Klein","age":56,"location":"Birmingham"}},{"attributes":{"name":"Bert Schmeler","age":23,"location":"Rockville"}},{"attributes":{"name":"Katelynn Ward","age":68,"location":"Elinoreland"}},{"attributes":{"name":"Mrs. Lance Stamm","age":23,"location":"McGlynncester"}},{"attributes":{"name":"Jerald Hodkiewicz","age":55,"location":"Rozellastad"}},{"attributes":{"name":"Brandy Kilback V","age":19,"location":"Fort Shainaberg"}},{"attributes":{"name":"Teri Wilderman","age":20,"location":"Fort Rubyechester"}},{"attributes":{"name":"Tabitha Marvin","age":56,"location":"Gleichnerbury"}},{"attributes":{"name":"Sandra Rutherford","age":69,"location":"Davis"}},{"attributes":{"name":"Lottie Witting","age":37,"location":"McAllen"}},{"attributes":{"name":"Jeannie Ernser","age":62,"location":"Sunrise"}},{"attributes":{"name":"Agnes Herzog","age":46,"location":"Russside"}},{"attributes":{"name":"Mrs. Megan Pfeffer","age":60,"location":"Deckowboro"}},{"attributes":{"name":"Ed Hilpert II","age":42,"location":"Fort Xanderburgh"}},{"attributes":{"name":"Georgiana Fay II","age":68,"location":"Rachaelbury"}},{"attributes":{"name":"Joel Ortiz","age":26,"location":"Lake Tavares"}},{"attributes":{"name":"Carlos Hoeger","age":37,"location":"Gaylefort"}},{"attributes":{"name":"Domenica Welch","age":47,"location":"South Katelynnburgh"}},{"attributes":{"name":"Maribel Hilpert","age":72,"location":"Lake Kraigport"}},{"attributes":{"name":"Jedidiah Huels","age":68,"location":"Mertzworth"}},{"attributes":{"name":"Teresa Predovic-Cummerata","age":45,"location":"Kelsieview"}},{"attributes":{"name":"Dr. Lynn Casper-Gleichner","age":37,"location":"New Una"}},{"attributes":{"name":"Laverna Yost","age":54,"location":"Myrtleville"}},{"attributes":{"name":"Tommie Jerde-Herzog","age":71,"location":"Georgetown"}},{"attributes":{"name":"Marlene Goldner","age":32,"location":"Toyhaven"}},{"attributes":{"name":"Jake Stokes","age":45,"location":"Des Plaines"}},{"attributes":{"name":"Eriberto O'Hara","age":33,"location":"Redondo Beach"}},{"attributes":{"name":"Rudolph Paucek-Kihn V","age":75,"location":"Lake Bethel"}},{"attributes":{"name":"Guadalupe Davis","age":49,"location":"South Karinaborough"}},{"attributes":{"name":"Ferne Erdman","age":19,"location":"Lake Titusburgh"}},{"attributes":{"name":"Dexter Armstrong","age":24,"location":"Missouri City"}},{"attributes":{"name":"Jennie Blick","age":23,"location":"Round Rock"}},{"attributes":{"name":"Justyn Wehner Sr.","age":34,"location":"Reyfort"}},{"attributes":{"name":"Gia Roob V","age":25,"location":"Kohlerfort"}},{"attributes":{"name":"Doug Prohaska IV","age":65,"location":"Gorczanycester"}},{"attributes":{"name":"Weldon O'Kon","age":61,"location":"Mortimercester"}},{"attributes":{"name":"Lillian Fisher","age":34,"location":"Mireyashire"}},{"attributes":{"name":"Crystal Emard","age":71,"location":"New Burley"}},{"attributes":{"name":"Boyd Spencer","age":80,"location":"North Cassandreshire"}},{"attributes":{"name":"Mr. Marisa Effertz DVM","age":59,"location":"Lake Daija"}},{"attributes":{"name":"Danny Vandervort-Okuneva DDS","age":47,"location":"Leuschkechester"}},{"attributes":{"name":"Elmo Lebsack","age":44,"location":"Alfredoville"}},{"attributes":{"name":"Marc Watsica","age":79,"location":"Araborough"}},{"attributes":{"name":"Jerry Welch","age":51,"location":"Fort Martine"}},{"attributes":{"name":"Mariah Cummerata MD","age":53,"location":"North Westley"}},{"attributes":{"name":"Cheyenne Parker-Dibbert","age":30,"location":"Wileyton"}},{"attributes":{"name":"Salvatore Cummerata DDS","age":59,"location":"Bartonshire"}},{"attributes":{"name":"Lynn Lowe Sr.","age":55,"location":"South Elijahton"}},{"attributes":{"name":"Miss Mildred Heidenreich","age":51,"location":"Boehmville"}},{"attributes":{"name":"Kyle Kozey","age":62,"location":"Ebertshire"}},{"attributes":{"name":"Jacynthe White","age":70,"location":"Sparks"}},{"attributes":{"name":"Earline Franey","age":76,"location":"New Samara"}},{"attributes":{"name":"Jacquelyn Nikolaus","age":45,"location":"Lake Richardport"}},{"attributes":{"name":"Dr. Isaiah Pagac","age":80,"location":"Beckershire"}},{"attributes":{"name":"Felicity Bednar","age":63,"location":"Rubyeside"}},{"attributes":{"name":"Nancy Barrows","age":36,"location":"Carrollburgh"}},{"attributes":{"name":"Amelia Klocko","age":62,"location":"East Harleyfort"}},{"attributes":{"name":"Blanche Frami","age":48,"location":"Hilpertbury"}},{"attributes":{"name":"Helmer Kemmer","age":59,"location":"Plantation"}},{"attributes":{"name":"Mr. Carroll Becker","age":77,"location":"Ornstead"}},{"attributes":{"name":"Tammy Homenick","age":56,"location":"Fort Keith"}},{"attributes":{"name":"Mack Raynor","age":47,"location":"Port Marlinstad"}},{"attributes":{"name":"Desiree Beier","age":19,"location":"Ulicesfurt"}},{"attributes":{"name":"Mckayla Walsh","age":28,"location":"Ansleyborough"}},{"attributes":{"name":"Casey Marvin","age":59,"location":"Avondale"}},{"attributes":{"name":"Halie Hirthe","age":39,"location":"Orlando"}},{"attributes":{"name":"Micheal Kihn","age":28,"location":"East Cierraside"}},{"attributes":{"name":"Estrella Littel","age":57,"location":"Fort Edastad"}},{"attributes":{"name":"Tom Homenick","age":68,"location":"West Flavie"}},{"attributes":{"name":"Francis Jaskolski","age":72,"location":"Purdyville"}},{"attributes":{"name":"Saige Lowe","age":71,"location":"North Richland Hills"}},{"attributes":{"name":"Jerald Dietrich","age":77,"location":"Christophemouth"}},{"attributes":{"name":"May Aufderhar","age":63,"location":"Colehaven"}},{"attributes":{"name":"Nathaniel Stiedemann","age":72,"location":"Yorba Linda"}},{"attributes":{"name":"Everett Little","age":52,"location":"South Lazaro"}},{"attributes":{"name":"Jeanne Satterfield","age":78,"location":"West Jaylen"}},{"attributes":{"name":"Beverly Okuneva","age":22,"location":"Lake Shaynaland"}},{"attributes":{"name":"Lawrence Howell","age":59,"location":"South Wilfredton"}},{"attributes":{"name":"Merlin Kreiger","age":52,"location":"Altenwerthview"}},{"attributes":{"name":"Zita Jerde IV","age":64,"location":"Lake Cole"}},{"attributes":{"name":"Iris Grant","age":66,"location":"Stromanberg"}},{"attributes":{"name":"Harriet Koch","age":69,"location":"Jaskolskiborough"}},{"attributes":{"name":"Verdie Bruen","age":77,"location":"Gwenstad"}},{"attributes":{"name":"Talon Tremblay","age":65,"location":"Jonasport"}},{"attributes":{"name":"Lue Berge","age":73,"location":"North Meredithcester"}},{"attributes":{"name":"Bill Tillman","age":65,"location":"Toreybury"}},{"attributes":{"name":"Zane Spinka","age":20,"location":"East Katelynnboro"}},{"attributes":{"name":"Roman Effertz","age":66,"location":"New Bedford"}},{"attributes":{"name":"Tabitha Robel","age":69,"location":"East Lavadaland"}},{"attributes":{"name":"Dana Bednar MD","age":23,"location":"Lake Jacintomouth"}},{"attributes":{"name":"Lonnie Koch-Adams IV","age":78,"location":"Cassinville"}},{"attributes":{"name":"Jacqueline Christiansen","age":27,"location":"Pittsburgh"}},{"attributes":{"name":"Darlene Rowe IV","age":52,"location":"East Alannatown"}},{"attributes":{"name":"Dr. Eduardo Feil","age":47,"location":"Bobbyland"}},{"attributes":{"name":"Sheila Marquardt-Altenwerth","age":27,"location":"Pourosfurt"}},{"attributes":{"name":"Theodore Berge","age":40,"location":"West Loraport"}},{"attributes":{"name":"Donnie Hackett","age":55,"location":"New Crystel"}},{"attributes":{"name":"Penelope Dibbert","age":39,"location":"Baileystad"}},{"attributes":{"name":"Gilberto Hackett-Legros","age":33,"location":"Briannebury"}},{"attributes":{"name":"Mandy Cormier","age":57,"location":"Simeonmouth"}},{"attributes":{"name":"Eudora Schmitt III","age":28,"location":"North Minaberg"}},{"attributes":{"name":"Marco Wisoky","age":76,"location":"Austin"}},{"attributes":{"name":"Terry Kreiger","age":50,"location":"Rebekaboro"}},{"attributes":{"name":"Rochelle Schneider","age":54,"location":"New Morgantown"}},{"attributes":{"name":"Nichole Walker","age":62,"location":"Rashadtown"}},{"attributes":{"name":"Grace Turcotte","age":59,"location":"Declanview"}},{"attributes":{"name":"Ms. Shaniya Kohler","age":78,"location":"Aldamouth"}},{"attributes":{"name":"Shakira Braun-Christiansen","age":34,"location":"St. Paul"}},{"attributes":{"name":"Adriel Fahey","age":75,"location":"Port Humberto"}},{"attributes":{"name":"Sonya Thompson","age":33,"location":"Hermistoncester"}},{"attributes":{"name":"Isabel Stamm","age":46,"location":"Kemmerbury"}},{"attributes":{"name":"Dr. Raul Rodriguez","age":26,"location":"Beavercreek"}},{"attributes":{"name":"Frieda Halvorson","age":41,"location":"Elainafield"}},{"attributes":{"name":"Miss Clementine Reichel Sr.","age":45,"location":"Cartwrightborough"}},{"attributes":{"name":"Eva Johnson","age":35,"location":"Lake Ottishaven"}},{"attributes":{"name":"Elaine Hegmann IV","age":60,"location":"Fort Aliya"}},{"attributes":{"name":"Dr. Kathy Hyatt MD","age":45,"location":"West Savannah"}},{"attributes":{"name":"Joseph McGlynn","age":32,"location":"Lebsackboro"}},{"attributes":{"name":"Melyna Hamill","age":68,"location":"Lake Camryn"}},{"attributes":{"name":"Angelo Kreiger","age":41,"location":"Hodkiewiczchester"}},{"attributes":{"name":"Rudy Satterfield","age":47,"location":"Fort Estelle"}},{"attributes":{"name":"Amely Rolfson","age":80,"location":"Syracuse"}},{"attributes":{"name":"Robin Collier-Aufderhar","age":69,"location":"Kuhlmancester"}},{"attributes":{"name":"Dr. Leonor Beer","age":42,"location":"New Gracielabury"}},{"attributes":{"name":"Annette Wiegand PhD","age":57,"location":"Pembroke Pines"}},{"attributes":{"name":"Grace Armstrong II","age":28,"location":"North Danielafort"}},{"attributes":{"name":"Myron Kihn","age":37,"location":"Sipesfurt"}},{"attributes":{"name":"Wilburn Goyette Sr.","age":25,"location":"Tillmanville"}},{"attributes":{"name":"Delores Jones IV","age":60,"location":"Chancecester"}},{"attributes":{"name":"Ora Terry V","age":25,"location":"Mannport"}},{"attributes":{"name":"Barry Ortiz","age":41,"location":"Legrosworth"}},{"attributes":{"name":"Laurie Reichert","age":46,"location":"Kentwood"}},{"attributes":{"name":"Ken Fahey","age":71,"location":"New Meaghan"}},{"attributes":{"name":"Miss Virginia Spencer","age":59,"location":"Thielborough"}},{"attributes":{"name":"Jaron Erdman","age":77,"location":"Port Domenick"}},{"attributes":{"name":"Keith Frami","age":59,"location":"Coral Springs"}},{"attributes":{"name":"Kristine Adams MD","age":28,"location":"Fort Mikechester"}},{"attributes":{"name":"Cathryn Franecki","age":67,"location":"Lake Jodyboro"}},{"attributes":{"name":"Bobby Rolfson","age":29,"location":"Larsonboro"}},{"attributes":{"name":"Alexzander Jerde","age":40,"location":"Plymouth"}},{"attributes":{"name":"Dena Greenholt","age":75,"location":"Port Arthur"}},{"attributes":{"name":"Mrs. Janis Rice","age":73,"location":"Neilville"}},{"attributes":{"name":"Roxanne Schulist","age":32,"location":"Wymancester"}},{"attributes":{"name":"Mr. Louisa Reinger","age":66,"location":"Bethesda"}},{"attributes":{"name":"Dr. Wanda Hane","age":22,"location":"Raynorport"}},{"attributes":{"name":"Misael Thompson","age":71,"location":"East Malvinaboro"}},{"attributes":{"name":"Mr. Alice Littel","age":58,"location":"Fort Malachi"}},{"attributes":{"name":"Rebekah Koelpin","age":40,"location":"Steuberberg"}},{"attributes":{"name":"Mrs. Elisha Ledner","age":56,"location":"North Nilschester"}},{"attributes":{"name":"Charlotte Heller","age":37,"location":"Dooleyville"}},{"attributes":{"name":"Bulah Ledner","age":34,"location":"Ilaland"}},{"attributes":{"name":"Cameron Jones","age":54,"location":"New Asha"}},{"attributes":{"name":"Maye Bernhard","age":22,"location":"Lethaberg"}},{"attributes":{"name":"Garnett Nader","age":46,"location":"Ziemeworth"}},{"attributes":{"name":"Angelica Ondricka","age":79,"location":"North Darien"}},{"attributes":{"name":"Andy Funk","age":61,"location":"North Skylarhaven"}},{"attributes":{"name":"Lorene Murray","age":78,"location":"Gusikowskibury"}},{"attributes":{"name":"Walker Stanton","age":42,"location":"Chino"}},{"attributes":{"name":"Candice Weber","age":80,"location":"Fort Dougburgh"}},{"attributes":{"name":"Kelvin Schimmel","age":76,"location":"Norwalk"}},{"attributes":{"name":"Genevieve Daniel-Witting","age":23,"location":"Hintzstad"}},{"attributes":{"name":"Darrell Greenholt","age":58,"location":"South Amani"}},{"attributes":{"name":"Nick Hilll","age":23,"location":"Port Waylon"}},{"attributes":{"name":"Marlene Huel","age":51,"location":"Fort Jeramyland"}},{"attributes":{"name":"Opal Green","age":77,"location":"West Salma"}},{"attributes":{"name":"Sonia Feest","age":53,"location":"Haleychester"}},{"attributes":{"name":"Dr. Thelma Waelchi","age":58,"location":"Roseville"}},{"attributes":{"name":"Esther Conroy","age":59,"location":"East Tessieberg"}},{"attributes":{"name":"Mr. Clayton Ward","age":28,"location":"Dibbertton"}},{"attributes":{"name":"Arvilla Hamill","age":53,"location":"Hassiefield"}},{"attributes":{"name":"Mrs. Hazel Walker","age":52,"location":"South Horacio"}},{"attributes":{"name":"Matt Mayert","age":42,"location":"Lennystead"}},{"attributes":{"name":"Gia Jenkins","age":41,"location":"Filomenaberg"}},{"attributes":{"name":"Delbert Auer","age":54,"location":"Fort Georgette"}},{"attributes":{"name":"Kaylah Maggio-Leffler","age":55,"location":"East Rebekahfurt"}},{"attributes":{"name":"Brent Hirthe-Renner","age":54,"location":"Ponce"}},{"attributes":{"name":"Ms. Theresa Haag","age":69,"location":"Aidanboro"}},{"attributes":{"name":"Leo Gleichner","age":60,"location":"Moenburgh"}},{"attributes":{"name":"Marquis Skiles","age":68,"location":"Jadebury"}},{"attributes":{"name":"Allan Parisian","age":51,"location":"Buena Park"}},{"attributes":{"name":"Andy Huels","age":73,"location":"Albinstad"}},{"attributes":{"name":"Kelly Wolf","age":52,"location":"Yucaipa"}},{"attributes":{"name":"Winston Windler","age":68,"location":"Fort Dulce"}},{"attributes":{"name":"Terri Muller-Kiehn","age":50,"location":"Liatown"}},{"attributes":{"name":"Viola Feest","age":71,"location":"Flatleymouth"}},{"attributes":{"name":"Cortney Huel","age":78,"location":"Fort Neal"}},{"attributes":{"name":"Otis Kovacek","age":50,"location":"Dewaynetown"}},{"attributes":{"name":"Josue Bechtelar","age":57,"location":"Naperville"}},{"attributes":{"name":"Melvina Goldner","age":79,"location":"East Willa"}},{"attributes":{"name":"Deonte Farrell","age":28,"location":"Diamond Bar"}},{"attributes":{"name":"Karen Waelchi","age":65,"location":"Biankaside"}},{"attributes":{"name":"Ms. Nigel Konopelski","age":61,"location":"East Sydnieworth"}},{"attributes":{"name":"Cassie Senger Sr.","age":23,"location":"Port Greyson"}},{"attributes":{"name":"Rene Batz","age":76,"location":"Virginia Beach"}},{"attributes":{"name":"Rachael Breitenberg","age":20,"location":"Malden"}},{"attributes":{"name":"Maximillian Langosh","age":62,"location":"McGlynnfurt"}},{"attributes":{"name":"Erik Rodriguez","age":65,"location":"Bransonburgh"}},{"attributes":{"name":"Buddy Grant","age":73,"location":"Lake Francescaview"}},{"attributes":{"name":"Morris Casper","age":53,"location":"Beierbury"}},{"attributes":{"name":"Mr. Camden Kovacek","age":24,"location":"West D'angeloborough"}},{"attributes":{"name":"Erin Hoppe-Reynolds","age":23,"location":"Alexandria"}},{"attributes":{"name":"Terry Rutherford","age":53,"location":"West Allis"}},{"attributes":{"name":"Mariana Lubowitz","age":29,"location":"Manteworth"}},{"attributes":{"name":"Albina Bashirian","age":24,"location":"Mountain View"}},{"attributes":{"name":"Wendell Quitzon","age":46,"location":"Claireborough"}},{"attributes":{"name":"Weldon Waelchi","age":54,"location":"Port Lurlinefort"}},{"attributes":{"name":"Leigh Rempel","age":76,"location":"Koelpinshire"}},{"attributes":{"name":"Kayleigh Funk-Dare V","age":54,"location":"Walshhaven"}},{"attributes":{"name":"Deshaun Schuster DVM","age":80,"location":"Appleton"}},{"attributes":{"name":"Vivian Murray III","age":55,"location":"West Krystel"}},{"attributes":{"name":"Crystal Luettgen","age":18,"location":"Grand Island"}},{"attributes":{"name":"Sonya Haley","age":37,"location":"East Cheyannefort"}},{"attributes":{"name":"Gustavo Renner","age":63,"location":"New Donnieworth"}},{"attributes":{"name":"Baylee Hyatt","age":36,"location":"Nolanside"}},{"attributes":{"name":"Arnulfo Cormier","age":22,"location":"Fort Conorton"}},{"attributes":{"name":"Leonardo Smith","age":78,"location":"Port Marleechester"}},{"attributes":{"name":"Sue Lakin","age":56,"location":"Trantowfurt"}},{"attributes":{"name":"Lola Wolf","age":61,"location":"Hirtheborough"}},{"attributes":{"name":"Winston Gleason","age":71,"location":"Cotyton"}},{"attributes":{"name":"Dallin Blick","age":25,"location":"New Delmercester"}},{"attributes":{"name":"Ian Herman","age":39,"location":"West Jordan"}},{"attributes":{"name":"Mrs. Roy Marvin","age":56,"location":"Gordoncester"}},{"attributes":{"name":"Debbie Towne","age":43,"location":"West Emmetborough"}},{"attributes":{"name":"Claudia Murazik","age":71,"location":"East Barbara"}},{"attributes":{"name":"Marty Lesch","age":50,"location":"West Nobleville"}},{"attributes":{"name":"Alberta Berge","age":29,"location":"Daphneyshire"}},{"attributes":{"name":"Myah Kirlin","age":77,"location":"Port Adahbury"}},{"attributes":{"name":"Tomas Reynolds","age":32,"location":"Port Minnieburgh"}},{"attributes":{"name":"Miss Kristofer Kub","age":22,"location":"Farrellstead"}},{"attributes":{"name":"Kavon Lind","age":38,"location":"Port Ken"}},{"attributes":{"name":"Emmanuelle Bradtke","age":62,"location":"Jamirburgh"}},{"attributes":{"name":"Skylar Bauch","age":77,"location":"Rubyborough"}},{"attributes":{"name":"Jacynthe Kunze","age":59,"location":"Grand Forks"}},{"attributes":{"name":"Sadie Robel","age":68,"location":"New Domenick"}},{"attributes":{"name":"Lucius Oberbrunner","age":35,"location":"Kendale Lakes"}},{"attributes":{"name":"Jessie Farrell","age":56,"location":"Avondale"}},{"attributes":{"name":"Miss Antwan Feest","age":73,"location":"Milohaven"}},{"attributes":{"name":"May Dooley","age":19,"location":"New Amani"}},{"attributes":{"name":"Emilio Bergstrom","age":39,"location":"East Colt"}},{"attributes":{"name":"Aubree Considine","age":58,"location":"West Angelita"}},{"attributes":{"name":"Jaime Abshire","age":69,"location":"Fort Zackland"}},{"attributes":{"name":"Casey O'Connell","age":72,"location":"Funkfort"}},{"attributes":{"name":"Jan Zboncak III","age":35,"location":"Prosaccochester"}},{"attributes":{"name":"Lambert Nikolaus","age":50,"location":"Boscostead"}},{"attributes":{"name":"Irvin Little","age":38,"location":"Charlotte"}},{"attributes":{"name":"Irving Barton","age":75,"location":"Lake Rubye"}},{"attributes":{"name":"Gilda Crooks","age":38,"location":"Gastonia"}},{"attributes":{"name":"Kenneth Metz MD","age":50,"location":"North Baylee"}},{"attributes":{"name":"Janie Orn MD","age":50,"location":"Bloomington"}},{"attributes":{"name":"Kristopher Harber","age":32,"location":"Porterstead"}},{"attributes":{"name":"Tyreek Moore","age":62,"location":"Melbourne"}},{"attributes":{"name":"Flossie Osinski","age":35,"location":"Winonaport"}},{"attributes":{"name":"Gaetano Sanford","age":30,"location":"Cummingsbury"}},{"attributes":{"name":"Samara McCullough","age":30,"location":"Pomona"}},{"attributes":{"name":"Bill Considine","age":46,"location":"Davenport"}},{"attributes":{"name":"Mr. Edmond Watsica-Davis","age":66,"location":"Clearwater"}},{"attributes":{"name":"Yvonne Bogan","age":66,"location":"East Rozellaton"}},{"attributes":{"name":"Ansel Kling","age":69,"location":"Feeneyside"}},{"attributes":{"name":"Lela Shields","age":67,"location":"Fort Phoebe"}},{"attributes":{"name":"Miss Jackeline Miller","age":65,"location":"Lynchtown"}},{"attributes":{"name":"Connie Daniel","age":73,"location":"Starkfurt"}},{"attributes":{"name":"Grady Greenholt","age":47,"location":"Baton Rouge"}},{"attributes":{"name":"Ralph Kling","age":51,"location":"Joplin"}},{"attributes":{"name":"Emiliano Medhurst","age":71,"location":"Port Lorenza"}},{"attributes":{"name":"Cameron Oberbrunner","age":30,"location":"North Maureen"}},{"attributes":{"name":"Jaime Parker","age":30,"location":"Marilouhaven"}},{"attributes":{"name":"Mercedes Bergstrom","age":78,"location":"Bergetown"}},{"attributes":{"name":"Alena Okuneva","age":77,"location":"Ellicott City"}},{"attributes":{"name":"Uriel Pacocha IV","age":43,"location":"East Mikel"}},{"attributes":{"name":"Michel Reilly","age":70,"location":"Bartolettistead"}},{"attributes":{"name":"Lucius Ebert","age":73,"location":"Hicklehaven"}},{"attributes":{"name":"Trevor Boyer","age":77,"location":"Fort Freedatown"}},{"attributes":{"name":"Sierra Walsh III","age":36,"location":"New Leslyton"}},{"attributes":{"name":"Triston Larkin","age":48,"location":"South April"}},{"attributes":{"name":"Theodore Smitham","age":79,"location":"Greenholtborough"}},{"attributes":{"name":"Arvel Kertzmann MD","age":56,"location":"Botsfordtown"}},{"attributes":{"name":"Ismael Shields","age":60,"location":"North Jadynshire"}},{"attributes":{"name":"Dalton Donnelly","age":38,"location":"East Coramouth"}},{"attributes":{"name":"Sharon Tillman","age":65,"location":"Holdenview"}},{"attributes":{"name":"Henderson Schmitt","age":37,"location":"Lindgrenhaven"}},{"attributes":{"name":"Sigmund Cruickshank","age":56,"location":"West Stanfordborough"}},{"attributes":{"name":"Margarita Boehm-Hettinger","age":75,"location":"East Kyrafurt"}},{"attributes":{"name":"Maryam Jenkins","age":65,"location":"Stammtown"}},{"attributes":{"name":"Buford Vandervort PhD","age":35,"location":"Jerroldtown"}},{"attributes":{"name":"Christop Rutherford","age":30,"location":"Fort Darrin"}},{"attributes":{"name":"Armando Crooks","age":22,"location":"Southfield"}},{"attributes":{"name":"Kenton Schamberger","age":22,"location":"Lake Steve"}},{"attributes":{"name":"Tony Connelly III","age":80,"location":"Durganstead"}},{"attributes":{"name":"Winifred Lueilwitz","age":31,"location":"Clintview"}},{"attributes":{"name":"Paolo Bode","age":18,"location":"Pollichton"}},{"attributes":{"name":"Denise Crona-Heidenreich","age":22,"location":"New Maybell"}},{"attributes":{"name":"Cynthia Bartell DDS","age":73,"location":"Lake Karson"}},{"attributes":{"name":"Lloyd Wunsch V","age":18,"location":"Hamilton"}},{"attributes":{"name":"Tricia Bergstrom","age":41,"location":"The Hammocks"}},{"attributes":{"name":"Thad Kozey","age":46,"location":"Tessborough"}},{"attributes":{"name":"Dr. Craig Rogahn","age":51,"location":"Tucson"}},{"attributes":{"name":"Jan Larson II","age":60,"location":"Port Alyshaview"}},{"attributes":{"name":"Dimitri Schuppe-Walter","age":46,"location":"Birdieland"}},{"attributes":{"name":"Kellen Kozey","age":60,"location":"West Maverick"}},{"attributes":{"name":"Dr. Lamar Carter","age":53,"location":"Dickenshaven"}},{"attributes":{"name":"Wilbert Bogisich","age":46,"location":"West Jerelland"}},{"attributes":{"name":"Trace Leannon","age":58,"location":"Cheyenne"}},{"attributes":{"name":"Jayne Casper","age":26,"location":"Jacobiberg"}},{"attributes":{"name":"Lindsay Doyle","age":72,"location":"East Hershel"}},{"attributes":{"name":"Teresa Schowalter","age":71,"location":"New Maudie"}},{"attributes":{"name":"David Hagenes","age":75,"location":"Beierland"}},{"attributes":{"name":"Brittany Kilback","age":66,"location":"Cristianland"}},{"attributes":{"name":"Carlotta Hermiston","age":71,"location":"Simonecester"}},{"attributes":{"name":"Vinnie Lueilwitz","age":26,"location":"Port Germaineland"}},{"attributes":{"name":"Dr. Aurelia Vandervort","age":80,"location":"West Abby"}},{"attributes":{"name":"Athena Hilll","age":45,"location":"Schambergerland"}},{"attributes":{"name":"Guillermo Klocko V","age":41,"location":"Mission"}},{"attributes":{"name":"Katarina Spinka","age":64,"location":"South Marilyneberg"}},{"attributes":{"name":"Faith Ratke","age":79,"location":"West Dianamouth"}},{"attributes":{"name":"Ms. Rudy Lebsack","age":62,"location":"Mantebury"}},{"attributes":{"name":"Johnathon Schamberger","age":41,"location":"East Rubyton"}},{"attributes":{"name":"Dr. Marta O'Kon-Zulauf V","age":63,"location":"Ann Arbor"}},{"attributes":{"name":"Calvin Jerde","age":76,"location":"Lake Dave"}},{"attributes":{"name":"Dr. Brian Turner","age":21,"location":"Gavinmouth"}},{"attributes":{"name":"Rogelio Kulas","age":51,"location":"Osinskifort"}},{"attributes":{"name":"Jessie Lesch","age":59,"location":"New Jerrodchester"}},{"attributes":{"name":"Dwight Kreiger","age":40,"location":"Gonzalostead"}},{"attributes":{"name":"Alyce Block-Leannon","age":31,"location":"Edwinfort"}},{"attributes":{"name":"Amanda Kunde","age":18,"location":"Gerhardburgh"}},{"attributes":{"name":"Beulah Jast","age":30,"location":"South Catherinetown"}},{"attributes":{"name":"Deshaun Abernathy","age":55,"location":"Brandonberg"}},{"attributes":{"name":"Jordan Schmeler","age":41,"location":"Harveyfield"}},{"attributes":{"name":"Wilma Douglas","age":79,"location":"East Neil"}},{"attributes":{"name":"Larue Johnston","age":47,"location":"South Maeganbury"}},{"attributes":{"name":"Delbert Kuhic-Prosacco","age":70,"location":"Jefferson City"}},{"attributes":{"name":"Wendy Stroman","age":21,"location":"Fort Phoebe"}},{"attributes":{"name":"Phil Pfannerstill","age":25,"location":"North Nicholauscester"}},{"attributes":{"name":"Tommie Marks","age":63,"location":"Christiansenfort"}},{"attributes":{"name":"Louisa Stark","age":29,"location":"East Gregory"}},{"attributes":{"name":"Nicklaus Hodkiewicz","age":63,"location":"Athenatown"}},{"attributes":{"name":"Chadrick Jerde","age":29,"location":"Compton"}},{"attributes":{"name":"Mr. Mathilde Howell","age":38,"location":"Port Maybellcester"}},{"attributes":{"name":"Sibyl McKenzie","age":34,"location":"East Anabelle"}},{"attributes":{"name":"Ramiro Jacobson","age":59,"location":"North Drew"}},{"attributes":{"name":"Phyllis Lebsack","age":42,"location":"Danielberg"}},{"attributes":{"name":"Ruben Reynolds","age":56,"location":"South Nettie"}},{"attributes":{"name":"Raphaelle Little","age":51,"location":"Lake Cristina"}},{"attributes":{"name":"Sara Pollich","age":56,"location":"Edythetown"}},{"attributes":{"name":"Nathanial Kshlerin","age":48,"location":"Blacksburg"}},{"attributes":{"name":"Jaime Goldner","age":50,"location":"Port Roycetown"}},{"attributes":{"name":"Jaquan Jerde","age":41,"location":"Fort Kayshire"}},{"attributes":{"name":"Steve McKenzie","age":32,"location":"Waukegan"}},{"attributes":{"name":"Dessie Keeling","age":48,"location":"Goyetteborough"}},{"attributes":{"name":"Ms. Vanessa Hilpert","age":63,"location":"Alvenaberg"}},{"attributes":{"name":"Roselyn Weissnat","age":72,"location":"Turcotteshire"}},{"attributes":{"name":"Dr. Naomi Christiansen","age":78,"location":"Naperville"}},{"attributes":{"name":"Sadie Nitzsche","age":20,"location":"North Madelynn"}},{"attributes":{"name":"Ms. Walter Jacobson-Bernier","age":19,"location":"Kubbury"}},{"attributes":{"name":"Cullen Ernser","age":80,"location":"Breitenbergton"}},{"attributes":{"name":"Sylvester Armstrong","age":46,"location":"Denesikchester"}},{"attributes":{"name":"Dr. Rickie Lehner Jr.","age":70,"location":"Jakaylaview"}},{"attributes":{"name":"Darrell O'Connell","age":37,"location":"Zemlakshire"}},{"attributes":{"name":"Verner Adams III","age":52,"location":"Mentor"}},{"attributes":{"name":"Stephany Ward","age":74,"location":"Skylarland"}},{"attributes":{"name":"Onie Hane","age":62,"location":"Torpborough"}},{"attributes":{"name":"Connie Heathcote","age":34,"location":"Ogden"}},{"attributes":{"name":"Presley Dickens Jr.","age":67,"location":"Lake Gavinshire"}},{"attributes":{"name":"Dr. Alexander Dietrich","age":61,"location":"Stehrshire"}},{"attributes":{"name":"Dr. Walter Block-Parisian","age":62,"location":"Waukesha"}},{"attributes":{"name":"Xzavier Wolf","age":35,"location":"South Federico"}},{"attributes":{"name":"Olin Cruickshank","age":20,"location":"Schustertown"}},{"attributes":{"name":"Terri Ankunding","age":19,"location":"Bethlehem"}},{"attributes":{"name":"Taya Treutel PhD","age":28,"location":"West Robbietown"}},{"attributes":{"name":"Cheyanne Grant","age":73,"location":"Shawnee"}},{"attributes":{"name":"Eulah Blanda","age":68,"location":"South Maryjanefort"}},{"attributes":{"name":"Angelica Jacobson","age":48,"location":"Plymouth"}},{"attributes":{"name":"Tonya Rutherford","age":78,"location":"Charlotte"}},{"attributes":{"name":"Noah Koelpin","age":71,"location":"Hickleworth"}},{"attributes":{"name":"Alvin Pfeffer","age":55,"location":"Maziefort"}},{"attributes":{"name":"Ben King","age":63,"location":"North Kirkstad"}},{"attributes":{"name":"Noah Herzog","age":70,"location":"Dickinsontown"}},{"attributes":{"name":"Mrs. Shyanne Stoltenberg-Botsford","age":41,"location":"West Floyhaven"}},{"attributes":{"name":"Simon Sanford","age":61,"location":"Davonberg"}},{"attributes":{"name":"Ted Baumbach","age":45,"location":"New Maude"}},{"attributes":{"name":"Kacey Grady","age":19,"location":"Port Jalenfort"}},{"attributes":{"name":"Shayne Torp","age":74,"location":"Sauerstad"}},{"attributes":{"name":"Darren Koelpin","age":27,"location":"Nayelifort"}},{"attributes":{"name":"Nettie Rempel PhD","age":18,"location":"Zulaufhaven"}},{"attributes":{"name":"Edward Pfeffer","age":72,"location":"Lake Kailyn"}},{"attributes":{"name":"Lazaro Zboncak","age":53,"location":"Brainberg"}},{"attributes":{"name":"Dax Gislason-Blick","age":54,"location":"Loyceborough"}},{"attributes":{"name":"Osbaldo Treutel","age":20,"location":"Watershaven"}},{"attributes":{"name":"Annamarie Altenwerth","age":49,"location":"Bellflower"}},{"attributes":{"name":"Fannie Terry IV","age":38,"location":"Marlenbury"}},{"attributes":{"name":"Ramona Buckridge Jr.","age":29,"location":"Fort Herbert"}},{"attributes":{"name":"Ms. Madelyn Marks-Hermiston","age":79,"location":"Dickinsonborough"}},{"attributes":{"name":"Meredith Pollich","age":49,"location":"Laguna Niguel"}},{"attributes":{"name":"Sedrick Becker","age":52,"location":"Ameliaborough"}},{"attributes":{"name":"Katlyn Jones","age":39,"location":"Caldwell"}},{"attributes":{"name":"Alek Murray","age":50,"location":"East Kieranchester"}},{"attributes":{"name":"Leone Littel","age":45,"location":"Fort Jaquelin"}},{"attributes":{"name":"Billy Abshire-Watsica","age":61,"location":"Lake Forest"}},{"attributes":{"name":"Soledad Stehr V","age":22,"location":"Nienowfort"}},{"attributes":{"name":"Miss Crystal Friesen","age":24,"location":"Jaleeltown"}},{"attributes":{"name":"Guy Hilll","age":73,"location":"Riverton"}},{"attributes":{"name":"Hester Schumm","age":65,"location":"Fort Linneaboro"}},{"attributes":{"name":"Clifton Wisozk","age":63,"location":"Arden-Arcade"}},{"attributes":{"name":"Barrett Abshire-Morissette","age":46,"location":"East Trinity"}},{"attributes":{"name":"Dr. Cesar Tremblay","age":27,"location":"Virginiemouth"}},{"attributes":{"name":"Ernesto Bernier","age":63,"location":"East Coyton"}},{"attributes":{"name":"Roberto O'Hara","age":36,"location":"Fort Daltonland"}},{"attributes":{"name":"Demond Stehr","age":44,"location":"South Kiantown"}},{"attributes":{"name":"Claude Lebsack","age":69,"location":"Germanland"}},{"attributes":{"name":"May Haag","age":80,"location":"Columbus"}},{"attributes":{"name":"Kellie Flatley","age":28,"location":"Adolfstad"}},{"attributes":{"name":"Charles Botsford","age":74,"location":"South Roxane"}},{"attributes":{"name":"Billy Larson","age":50,"location":"Westonville"}},{"attributes":{"name":"Frederic Mills","age":30,"location":"West Eribertoside"}},{"attributes":{"name":"Gretchen Ankunding","age":37,"location":"Keeganfield"}},{"attributes":{"name":"Cleo Erdman","age":74,"location":"Port Cornelius"}},{"attributes":{"name":"Oscar Fritsch","age":42,"location":"Catonsville"}},{"attributes":{"name":"Dominic Becker","age":73,"location":"East Webster"}},{"attributes":{"name":"Reinhold Monahan","age":70,"location":"Tyrellfurt"}},{"attributes":{"name":"Mr. Destinee Adams","age":51,"location":"New Quintonstead"}},{"attributes":{"name":"Anita Welch","age":24,"location":"Port Franciscaworth"}},{"attributes":{"name":"Alexander Rutherford","age":32,"location":"South Gracie"}},{"attributes":{"name":"Yolanda Hills III","age":20,"location":"Kautzerland"}},{"attributes":{"name":"Clayton Howell","age":60,"location":"Mannburgh"}},{"attributes":{"name":"Mandy Runolfsdottir","age":42,"location":"Gary"}},{"attributes":{"name":"Dr. Conor Kshlerin","age":30,"location":"Glovertown"}},{"attributes":{"name":"Willow Ernser","age":34,"location":"West Kirkburgh"}},{"attributes":{"name":"Patty Schroeder","age":70,"location":"South Mercedes"}},{"attributes":{"name":"Stacy Kessler","age":64,"location":"West Vellaworth"}},{"attributes":{"name":"Austin Littel","age":76,"location":"North Kaileeland"}},{"attributes":{"name":"Dolly Fahey","age":39,"location":"North Arianeboro"}},{"attributes":{"name":"Delbert Bradtke","age":79,"location":"North Elibury"}},{"attributes":{"name":"Jimmie Hermann","age":67,"location":"Danteland"}},{"attributes":{"name":"Esmeralda Daniel","age":72,"location":"Farmington Hills"}},{"attributes":{"name":"Eleanor Cartwright DDS","age":67,"location":"Kirlinland"}},{"attributes":{"name":"Rosemarie Jacobson","age":39,"location":"Southaven"}},{"attributes":{"name":"Tristian Volkman","age":47,"location":"Kristown"}},{"attributes":{"name":"Helena Powlowski-Abbott","age":74,"location":"Nicolastown"}},{"attributes":{"name":"Maria Quigley MD","age":19,"location":"Wyattbury"}},{"attributes":{"name":"Jeffery Jakubowski","age":76,"location":"Lake Tyreestad"}},{"attributes":{"name":"Arlene Mills","age":78,"location":"Lansing"}},{"attributes":{"name":"Reinhold Murray","age":29,"location":"Langoshborough"}},{"attributes":{"name":"Hannah Hilpert","age":62,"location":"Wiltonshire"}},{"attributes":{"name":"Kennith Hansen","age":33,"location":"North Arvelcester"}},{"attributes":{"name":"Ian Predovic","age":62,"location":"Fort Altaport"}},{"attributes":{"name":"Silvia Morissette","age":51,"location":"Country Club"}},{"attributes":{"name":"Ms. Russell Littel","age":28,"location":"Davinfurt"}},{"attributes":{"name":"Eva Kutch","age":75,"location":"Port Sammy"}},{"attributes":{"name":"Raoul Satterfield","age":42,"location":"Michelleburgh"}},{"attributes":{"name":"Jamie Zemlak PhD","age":27,"location":"Juanitaside"}},{"attributes":{"name":"Candelario Walter","age":61,"location":"Greenwood"}},{"attributes":{"name":"Mavis Emard","age":34,"location":"Jaycebury"}},{"attributes":{"name":"Guy Rice IV","age":78,"location":"East Arnulfoville"}},{"attributes":{"name":"Belle Will","age":54,"location":"Lake Nora"}},{"attributes":{"name":"Winifred Block III","age":33,"location":"West Ozella"}},{"attributes":{"name":"Meredith DuBuque I","age":53,"location":"Robinfield"}},{"attributes":{"name":"Joe Schultz","age":62,"location":"Port Rigobertochester"}},{"attributes":{"name":"Nolan Lesch","age":64,"location":"Bartonside"}},{"attributes":{"name":"Ansel Upton","age":37,"location":"South Crystel"}},{"attributes":{"name":"Antonio Dare","age":50,"location":"Warren"}},{"attributes":{"name":"Elias Wolff","age":69,"location":"West Katlyn"}},{"attributes":{"name":"Kimberly Paucek","age":80,"location":"Port Louveniahaven"}},{"attributes":{"name":"Velma Runolfsdottir","age":23,"location":"Leonorafield"}},{"attributes":{"name":"Erich Bartoletti","age":54,"location":"Lake Audreyborough"}},{"attributes":{"name":"Dr. Tamara Aufderhar","age":49,"location":"Weimannhaven"}},{"attributes":{"name":"Clifton Ryan","age":26,"location":"West Jonathanburgh"}},{"attributes":{"name":"Dejuan Altenwerth","age":44,"location":"Blickport"}},{"attributes":{"name":"Fritz Mosciski","age":77,"location":"Baumbachfort"}},{"attributes":{"name":"Ralph Kuvalis","age":78,"location":"East Gailstad"}},{"attributes":{"name":"Carl Hermann","age":57,"location":"Salina"}},{"attributes":{"name":"Henry MacGyver","age":48,"location":"St. Petersburg"}},{"attributes":{"name":"Dr. Levi Fay IV","age":47,"location":"Merlestad"}},{"attributes":{"name":"Rosemary Rempel","age":47,"location":"Collinsworth"}},{"attributes":{"name":"Idella Wisoky","age":18,"location":"West Lennie"}},{"attributes":{"name":"Johnny Kunde","age":53,"location":"Lake Alyciabury"}},{"attributes":{"name":"Jaydon Weber","age":64,"location":"Mosciskibury"}},{"attributes":{"name":"Eddie Hahn","age":78,"location":"Huelstead"}},{"attributes":{"name":"Sydney Pollich","age":29,"location":"North Tyree"}},{"attributes":{"name":"Julian Franey","age":70,"location":"South Leopold"}},{"attributes":{"name":"Dr. Emil Bruen","age":36,"location":"Wiegandbury"}},{"attributes":{"name":"Louisa Brown","age":29,"location":"Meganeview"}},{"attributes":{"name":"Coleman Heller","age":49,"location":"Lake Bradfordworth"}},{"attributes":{"name":"Cary Hackett","age":56,"location":"Feeneyville"}},{"attributes":{"name":"Calvin Predovic","age":72,"location":"North Garrick"}},{"attributes":{"name":"Seth Cronin","age":37,"location":"Fort Tevinfort"}},{"attributes":{"name":"Kenny Schamberger","age":74,"location":"North Ivahshire"}},{"attributes":{"name":"Patti Deckow","age":60,"location":"Rickhaven"}},{"attributes":{"name":"Dwight Veum","age":69,"location":"Belleville"}},{"attributes":{"name":"Vella Heidenreich","age":37,"location":"Callieport"}},{"attributes":{"name":"Alfred Murazik","age":25,"location":"Syracuse"}},{"attributes":{"name":"Flavie Howell-Kuvalis","age":62,"location":"Lake Virginie"}},{"attributes":{"name":"Silvia Fahey","age":75,"location":"Nashville-Davidson"}},{"attributes":{"name":"Herbert McClure","age":44,"location":"New Era"}},{"attributes":{"name":"Bob Parker-Stamm","age":78,"location":"Simonetown"}},{"attributes":{"name":"Sandra Kassulke DDS","age":44,"location":"Elgin"}},{"attributes":{"name":"Jeannette Emard","age":46,"location":"Fort Jabariville"}},{"attributes":{"name":"Jamison Lakin","age":59,"location":"Jennieville"}},{"attributes":{"name":"Laverne Kunze","age":26,"location":"Tomasview"}},{"attributes":{"name":"Mr. Ken Williamson","age":27,"location":"New Antonettafurt"}},{"attributes":{"name":"Estell Koepp","age":69,"location":"Rowetown"}},{"attributes":{"name":"Ana Bartell","age":24,"location":"Donnellyfurt"}},{"attributes":{"name":"Corine MacGyver III","age":79,"location":"Margate"}},{"attributes":{"name":"Jodi Simonis","age":74,"location":"New Darlene"}},{"attributes":{"name":"Debra Grimes-Weimann","age":49,"location":"Aspen Hill"}},{"attributes":{"name":"Korey Shields","age":18,"location":"Cupertino"}},{"attributes":{"name":"Harriet Hoppe","age":51,"location":"South Milo"}},{"attributes":{"name":"Rosie Hoppe-Sanford","age":50,"location":"Kenosha"}},{"attributes":{"name":"Roger Hammes","age":26,"location":"Shieldsfield"}},{"attributes":{"name":"Valentin Pouros-Fisher Sr.","age":58,"location":"Zellatown"}},{"attributes":{"name":"Laurence Kemmer","age":31,"location":"Fort Jaydenbury"}},{"attributes":{"name":"Drew Herman","age":47,"location":"Jaquelinfort"}},{"attributes":{"name":"Ramon Crooks","age":64,"location":"Vernicechester"}},{"attributes":{"name":"Faye Nolan","age":38,"location":"South Dimitri"}},{"attributes":{"name":"Monica Renner","age":36,"location":"Santa Cruz"}},{"attributes":{"name":"Karlee McClure","age":79,"location":"Lake Sheldon"}},{"attributes":{"name":"Tommie Farrell","age":69,"location":"Adelleburgh"}},{"attributes":{"name":"Glen Boehm","age":21,"location":"Fort Tiffany"}},{"attributes":{"name":"Ada Metz","age":41,"location":"Tillmanstad"}},{"attributes":{"name":"Randal DuBuque-Ziemann","age":71,"location":"Fort Reymouth"}},{"attributes":{"name":"Gayle Bernier DVM","age":39,"location":"West Estell"}},{"attributes":{"name":"Ms. Florian Oberbrunner","age":50,"location":"Encinitas"}},{"attributes":{"name":"Dr. Horacio Stehr III","age":22,"location":"East Orland"}},{"attributes":{"name":"Anahi Ebert DDS","age":80,"location":"Justynworth"}},{"attributes":{"name":"Mark Shanahan","age":25,"location":"Cleveland"}},{"attributes":{"name":"Eddie Kautzer","age":56,"location":"New Pansychester"}},{"attributes":{"name":"Guillermo Kilback DVM","age":30,"location":"Krajcikland"}},{"attributes":{"name":"Yesenia Cormier","age":26,"location":"New Israel"}},{"attributes":{"name":"Kamron Mohr","age":27,"location":"Rosemead"}},{"attributes":{"name":"Shanon Runolfsson","age":42,"location":"Port Christaport"}},{"attributes":{"name":"Felicita Heller","age":73,"location":"West Cordelia"}},{"attributes":{"name":"Mario Franey","age":22,"location":"North Oswaldoville"}},{"attributes":{"name":"Marcia Yundt","age":37,"location":"South Dayanaborough"}},{"attributes":{"name":"Lysanne King-Nader","age":21,"location":"Vitaside"}},{"attributes":{"name":"Joan Kreiger IV","age":22,"location":"O'Keefemouth"}},{"attributes":{"name":"Arnaldo Crist DVM","age":36,"location":"East Lesly"}},{"attributes":{"name":"Maggie Ullrich","age":76,"location":"Britneybury"}},{"attributes":{"name":"Arturo Ankunding","age":63,"location":"Charleston"}},{"attributes":{"name":"Dr. Russ Glover","age":54,"location":"Keelyside"}},{"attributes":{"name":"Wendy Fritsch","age":77,"location":"Vineland"}},{"attributes":{"name":"Barry Hand","age":66,"location":"Hudsonbury"}},{"attributes":{"name":"Alberta Roob","age":70,"location":"Olympia"}},{"attributes":{"name":"Jake Sawayn I","age":36,"location":"North Jaydonshire"}},{"attributes":{"name":"Travis Ryan","age":67,"location":"New Alice"}},{"attributes":{"name":"Miss Ethel Hauck","age":48,"location":"New Christiana"}},{"attributes":{"name":"Hailie Reinger","age":77,"location":"New Karleeville"}},{"attributes":{"name":"Nichole Dare","age":53,"location":"Nolanmouth"}},{"attributes":{"name":"Mr. Triston Ebert","age":26,"location":"Corpus Christi"}},{"attributes":{"name":"Giovani Moore","age":23,"location":"Brakusborough"}},{"attributes":{"name":"Arlene Zulauf","age":29,"location":"New Brunswick"}},{"attributes":{"name":"Ebony West","age":27,"location":"Jeromymouth"}},{"attributes":{"name":"Dan Leannon","age":35,"location":"Mayertville"}},{"attributes":{"name":"Eileen Daugherty","age":32,"location":"South Trudie"}},{"attributes":{"name":"Marcus Stehr","age":58,"location":"West Jairo"}},{"attributes":{"name":"Rosa Spinka","age":77,"location":"Larkinville"}},{"attributes":{"name":"Sonny Wyman PhD","age":23,"location":"West Kirsten"}},{"attributes":{"name":"Jacey Hermiston MD","age":73,"location":"Clairstead"}},{"attributes":{"name":"Alton Langworth","age":56,"location":"Lake Jermain"}},{"attributes":{"name":"Marlene Nienow","age":45,"location":"Cruickshankfield"}},{"attributes":{"name":"Rodolfo Cassin","age":26,"location":"Jeanworth"}},{"attributes":{"name":"Marcus Stroman","age":37,"location":"Kissimmee"}},{"attributes":{"name":"Faye Rolfson","age":58,"location":"Bradyhaven"}},{"attributes":{"name":"Davonte Osinski","age":20,"location":"Port Neil"}},{"attributes":{"name":"Lucy Thompson","age":79,"location":"Brandymouth"}},{"attributes":{"name":"Johnnie Jenkins","age":57,"location":"Mitchellshire"}},{"attributes":{"name":"Benny Fahey","age":22,"location":"Wilburnmouth"}},{"attributes":{"name":"Manuel Brekke","age":52,"location":"Audiechester"}},{"attributes":{"name":"Yasmeen McLaughlin","age":49,"location":"Niagara Falls"}},{"attributes":{"name":"Terry Windler","age":43,"location":"Mandyburgh"}},{"attributes":{"name":"Jessie Kautzer","age":30,"location":"Lake Raventown"}},{"attributes":{"name":"Maxime Ebert","age":59,"location":"Lake Floydberg"}},{"attributes":{"name":"Dexter Bradtke","age":66,"location":"Jacintheburgh"}},{"attributes":{"name":"Modesta Metz","age":49,"location":"New Keyon"}},{"attributes":{"name":"Isaiah Hagenes V","age":23,"location":"Jamisonchester"}},{"attributes":{"name":"Casey Thompson","age":26,"location":"Port Xzavier"}},{"attributes":{"name":"Mr. Tracy Jacobs","age":40,"location":"Mayertland"}},{"attributes":{"name":"Greg Medhurst","age":78,"location":"Nicolasfurt"}},{"attributes":{"name":"Christian Flatley","age":72,"location":"Hackettworth"}},{"attributes":{"name":"Erwin West","age":49,"location":"Cummeratatown"}},{"attributes":{"name":"Maurice Kris PhD","age":69,"location":"East Adeline"}},{"attributes":{"name":"Dr. Jameson Quigley","age":66,"location":"East Billie"}},{"attributes":{"name":"Dr. Bridie Kozey","age":59,"location":"Goldnerbury"}},{"attributes":{"name":"Sheila Bayer Jr.","age":48,"location":"Botsfordtown"}},{"attributes":{"name":"Kristi Carter","age":33,"location":"Kaelynmouth"}},{"attributes":{"name":"Jimmie Bergstrom","age":52,"location":"North Yadira"}},{"attributes":{"name":"Larry Rohan","age":79,"location":"West Rickey"}},{"attributes":{"name":"Zane O'Hara","age":44,"location":"Graciemouth"}},{"attributes":{"name":"Jim Hegmann","age":38,"location":"Townebury"}},{"attributes":{"name":"Lenora Tremblay MD","age":57,"location":"South Bend"}},{"attributes":{"name":"Alexander Ziemann","age":29,"location":"Hintztown"}},{"attributes":{"name":"Florian Osinski","age":43,"location":"Lake Estevan"}},{"attributes":{"name":"Edward Pagac","age":42,"location":"Bountiful"}},{"attributes":{"name":"Antonia Koch","age":35,"location":"Verniceside"}},{"attributes":{"name":"Lindsay Kiehn MD","age":28,"location":"Armstrongchester"}},{"attributes":{"name":"Jason Bergnaum","age":29,"location":"Fort Providenci"}},{"attributes":{"name":"Antoinette Dicki","age":64,"location":"New Mylenechester"}},{"attributes":{"name":"Derek Collier","age":27,"location":"Lake Jean"}},{"attributes":{"name":"Deborah McClure","age":50,"location":"North Claudineport"}},{"attributes":{"name":"Ivy Vandervort MD","age":51,"location":"Lake Jefferyburgh"}},{"attributes":{"name":"Sara Crooks","age":74,"location":"East Austinport"}},{"attributes":{"name":"Matt Roberts","age":18,"location":"Braunstead"}},{"attributes":{"name":"Dayton Aufderhar","age":24,"location":"Brandonfurt"}},{"attributes":{"name":"Marshall Nienow","age":36,"location":"Shaneltown"}},{"attributes":{"name":"Geraldine Lemke","age":52,"location":"Morgan Hill"}},{"attributes":{"name":"Marty Kozey","age":51,"location":"Ashleighworth"}},{"attributes":{"name":"Janice Turner","age":72,"location":"East Domenickcester"}},{"attributes":{"name":"Dr. Euna Luettgen II","age":60,"location":"Mayafort"}},{"attributes":{"name":"Orville Padberg","age":53,"location":"Burien"}},{"attributes":{"name":"Tyshawn Kunze","age":39,"location":"New Bryana"}},{"attributes":{"name":"Neal Strosin","age":25,"location":"Sabrinashire"}},{"attributes":{"name":"Randall Little II","age":55,"location":"Anchorage"}},{"attributes":{"name":"Alan Veum","age":34,"location":"Lake Aubree"}},{"attributes":{"name":"Justina Thiel","age":49,"location":"Greenworth"}},{"attributes":{"name":"Claudia Funk","age":50,"location":"Walterberg"}},{"attributes":{"name":"Makenna Stark","age":36,"location":"Lowell"}},{"attributes":{"name":"Veronica Emard","age":74,"location":"Amberfort"}},{"attributes":{"name":"Mae Pacocha-Balistreri","age":30,"location":"Lake Neldamouth"}},{"attributes":{"name":"Mr. Martin Rempel","age":63,"location":"North Kennediview"}},{"attributes":{"name":"Gerard Daniel","age":37,"location":"Port Robbieboro"}},{"attributes":{"name":"Ms. Mckayla Gorczany","age":76,"location":"Port Harmon"}},{"attributes":{"name":"Shayna Crooks","age":75,"location":"Killeen"}},{"attributes":{"name":"Genevieve Thompson Jr.","age":68,"location":"Lacey"}},{"attributes":{"name":"Filiberto Mueller","age":48,"location":"Bergnaumhaven"}},{"attributes":{"name":"Arturo Crona","age":38,"location":"Wilmington"}},{"attributes":{"name":"Lucia Fritsch","age":76,"location":"East Norbertoworth"}},{"attributes":{"name":"Jules VonRueden","age":57,"location":"Oberbrunnerfield"}},{"attributes":{"name":"Neil Spinka","age":65,"location":"Abigaylestad"}},{"attributes":{"name":"Dr. Iris Hodkiewicz","age":21,"location":"Maraside"}},{"attributes":{"name":"Samara Rutherford","age":45,"location":"New Karina"}},{"attributes":{"name":"Dr. Rex Dibbert","age":32,"location":"Port Metaland"}},{"attributes":{"name":"Sid Mante","age":54,"location":"North Imeldatown"}},{"attributes":{"name":"Cary Torp","age":72,"location":"Port Carleeland"}},{"attributes":{"name":"Dr. Jody Kuhlman","age":19,"location":"Hunterberg"}},{"attributes":{"name":"Hazel Johns MD","age":19,"location":"DuBuquebury"}},{"attributes":{"name":"Spencer Mosciski","age":68,"location":"Lake Alessiahaven"}},{"attributes":{"name":"Mr. Samuel Schumm","age":25,"location":"New Kathleen"}},{"attributes":{"name":"Loretta Grant","age":22,"location":"South Desmondtown"}},{"attributes":{"name":"Mathias Stanton","age":75,"location":"Chico"}},{"attributes":{"name":"Judith Collier","age":23,"location":"Estebanboro"}},{"attributes":{"name":"Jeffrey Bins","age":79,"location":"Kristianton"}},{"attributes":{"name":"Heather Berge","age":70,"location":"Norman"}},{"attributes":{"name":"Marisol Mayer II","age":20,"location":"Wisozkfurt"}},{"attributes":{"name":"Emmett Brekke","age":52,"location":"Baumbachview"}},{"attributes":{"name":"Mrs. Candice Muller","age":40,"location":"Leonorfurt"}},{"attributes":{"name":"Saul Wisoky","age":36,"location":"Smyrna"}},{"attributes":{"name":"Ernesto Bergstrom IV","age":75,"location":"Reyside"}},{"attributes":{"name":"Evert Mayer","age":36,"location":"Lake Carleton"}},{"attributes":{"name":"Aron Torp","age":64,"location":"Dickenschester"}},{"attributes":{"name":"Luz Bahringer","age":19,"location":"Port Daxside"}},{"attributes":{"name":"Lourdes Huels","age":26,"location":"Moseston"}},{"attributes":{"name":"Erick Nienow","age":38,"location":"Fort Zacherybury"}},{"attributes":{"name":"Shari Monahan-Leffler V","age":63,"location":"West Joanland"}},{"attributes":{"name":"Myra Mitchell-Abbott","age":33,"location":"Bodemouth"}},{"attributes":{"name":"Garnet Zboncak","age":25,"location":"Nitzscheshire"}},{"attributes":{"name":"Julius Keebler","age":53,"location":"Whitefurt"}},{"attributes":{"name":"Oscar Emard","age":23,"location":"Deontaefort"}},{"attributes":{"name":"Bridget Kemmer","age":38,"location":"Steuberside"}},{"attributes":{"name":"Trevion Donnelly","age":21,"location":"East Bailee"}},{"attributes":{"name":"Holly Aufderhar","age":77,"location":"Edmondshire"}},{"attributes":{"name":"Frederick Bergstrom DVM","age":20,"location":"East Narcisobury"}},{"attributes":{"name":"Phil Harber","age":30,"location":"East Harry"}},{"attributes":{"name":"Lavonne Baumbach","age":41,"location":"North Michaleworth"}},{"attributes":{"name":"Terry Morar","age":75,"location":"Gainesville"}},{"attributes":{"name":"Kathy Walker","age":78,"location":"Quincyport"}},{"attributes":{"name":"Crystal Grimes","age":69,"location":"Longmont"}},{"attributes":{"name":"Mildred Heaney","age":43,"location":"West Adela"}},{"attributes":{"name":"Charlene Dach II","age":27,"location":"Coon Rapids"}},{"attributes":{"name":"Casey Kshlerin","age":68,"location":"Isabellaton"}},{"attributes":{"name":"Amelia Wiza","age":68,"location":"Hoytville"}},{"attributes":{"name":"Nina Murphy","age":20,"location":"Titofort"}},{"attributes":{"name":"Dr. Salvatore McKenzie","age":80,"location":"Port Vadacester"}},{"attributes":{"name":"Bob Robel","age":45,"location":"South Estell"}},{"attributes":{"name":"Kathleen Adams","age":51,"location":"Whiteboro"}},{"attributes":{"name":"Carlton Bauch MD","age":32,"location":"Hagenesville"}},{"attributes":{"name":"Kevin Harris","age":68,"location":"Shreveport"}},{"attributes":{"name":"Naomi Effertz","age":67,"location":"South Angelshire"}},{"attributes":{"name":"Nicolas Hermann","age":37,"location":"Livermore"}},{"attributes":{"name":"Kristen Stoltenberg","age":42,"location":"Roobshire"}},{"attributes":{"name":"Ervin Huels-Kreiger","age":61,"location":"Wyoming"}},{"attributes":{"name":"Patrick Pagac","age":28,"location":"New Kelvin"}},{"attributes":{"name":"Enrique Ziemann","age":73,"location":"Royalfield"}},{"attributes":{"name":"Mr. Jody Lowe","age":53,"location":"New Uriah"}},{"attributes":{"name":"Donna Schmidt","age":76,"location":"West Kailyn"}},{"attributes":{"name":"Tracey Kirlin-Huels","age":24,"location":"Brentwood"}},{"attributes":{"name":"Elizabeth Price","age":23,"location":"Port Catharinestad"}},{"attributes":{"name":"Ms. Lawrence Franey Jr.","age":48,"location":"New Euna"}},{"attributes":{"name":"Neva Kreiger","age":43,"location":"Port Odell"}},{"attributes":{"name":"Angel Rath III","age":26,"location":"South Demond"}},{"attributes":{"name":"Erma Roberts","age":67,"location":"Lake Vincenzo"}},{"attributes":{"name":"Nicholas Stamm","age":35,"location":"Auburn"}},{"attributes":{"name":"Mrs. Zula Powlowski","age":60,"location":"Nicolaboro"}},{"attributes":{"name":"Johnny Hermann","age":68,"location":"Lake Adrianbury"}},{"attributes":{"name":"Ceasar Senger","age":79,"location":"Moenview"}},{"attributes":{"name":"Natasha Ratke","age":69,"location":"Lake Timmothyton"}},{"attributes":{"name":"Johathan Gulgowski","age":64,"location":"North Marlonside"}},{"attributes":{"name":"Roy Pouros","age":23,"location":"Pollichberg"}},{"attributes":{"name":"Leticia Abbott","age":61,"location":"East Jaden"}},{"attributes":{"name":"Mr. Daniel Klein","age":79,"location":"East Gisselleshire"}},{"attributes":{"name":"Willie Hagenes I","age":64,"location":"Cerritos"}},{"attributes":{"name":"Gary O'Keefe","age":77,"location":"Antonioburgh"}},{"attributes":{"name":"Daniel Fritsch-Mayert","age":34,"location":"O'Connellworth"}},{"attributes":{"name":"Damion Gusikowski","age":18,"location":"West Jorge"}},{"attributes":{"name":"Cody Windler","age":20,"location":"Reynoldsshire"}},{"attributes":{"name":"Erica Brakus","age":23,"location":"Doral"}},{"attributes":{"name":"Maxine Lind","age":69,"location":"Ondrickaborough"}},{"attributes":{"name":"Miss Daniel Becker MD","age":52,"location":"New Lonny"}},{"attributes":{"name":"Catalina Anderson","age":62,"location":"Bahringerside"}},{"attributes":{"name":"Tina McKenzie","age":51,"location":"Davis"}},{"attributes":{"name":"Allen Frami","age":59,"location":"North Adolf"}},{"attributes":{"name":"Curtis Hegmann","age":79,"location":"Lake Lelia"}},{"attributes":{"name":"Abel Mraz III","age":46,"location":"Smyrna"}},{"attributes":{"name":"Leonor Hermiston","age":59,"location":"Pattiecester"}},{"attributes":{"name":"Leonel Keebler","age":46,"location":"Fort Reina"}},{"attributes":{"name":"Niko Bins","age":55,"location":"Kiehnburgh"}},{"attributes":{"name":"Dagmar Raynor","age":51,"location":"New Burnicehaven"}},{"attributes":{"name":"Faye Conroy","age":19,"location":"Port Juwancester"}},{"attributes":{"name":"Gloria Dach","age":26,"location":"East Destin"}},{"attributes":{"name":"Cristal Johnston","age":56,"location":"Reicherttown"}},{"attributes":{"name":"Lela Schinner","age":31,"location":"South Frederiquestad"}},{"attributes":{"name":"Juana Price","age":77,"location":"New Minnie"}},{"attributes":{"name":"Hermina Krajcik","age":70,"location":"Pearl City"}},{"attributes":{"name":"Ari Kohler","age":80,"location":"Runtemouth"}},{"attributes":{"name":"Alek Cronin","age":75,"location":"Waterloo"}},{"attributes":{"name":"Matt Brown","age":76,"location":"South Melisaside"}},{"attributes":{"name":"Christophe Lehner","age":74,"location":"Port Zoiestead"}},{"attributes":{"name":"Freddie Harris","age":20,"location":"Port Imaboro"}},{"attributes":{"name":"Wade Ziemann","age":64,"location":"West Haven"}},{"attributes":{"name":"Garth Deckow","age":28,"location":"Port Emmanuel"}},{"attributes":{"name":"Earlene Botsford DDS","age":51,"location":"O'Fallon"}},{"attributes":{"name":"Morgan Ferry","age":74,"location":"North Carlee"}},{"attributes":{"name":"Lisa Beahan","age":47,"location":"West Peter"}},{"attributes":{"name":"Douglas Davis","age":35,"location":"Port Hortensemouth"}},{"attributes":{"name":"Derek Kunze","age":79,"location":"Olathe"}},{"attributes":{"name":"Miss Kaitlyn Crooks DVM","age":24,"location":"Florence-Graham"}},{"attributes":{"name":"Eliezer Runte MD","age":68,"location":"North Thadborough"}},{"attributes":{"name":"Johanna Kreiger","age":66,"location":"League City"}},{"attributes":{"name":"Brian Keebler","age":47,"location":"Fort Terencemouth"}},{"attributes":{"name":"Roger Weber Sr.","age":71,"location":"Fort Quinten"}},{"attributes":{"name":"Luke Hickle","age":35,"location":"New Marcosville"}},{"attributes":{"name":"Alysha Halvorson","age":48,"location":"Port Kenny"}},{"attributes":{"name":"Norene Hagenes","age":58,"location":"Donnellychester"}},{"attributes":{"name":"Travis Runolfsson","age":58,"location":"Bednarbury"}},{"attributes":{"name":"Mr. Rachel Bode V","age":61,"location":"Lake Raoul"}},{"attributes":{"name":"Erika Herzog","age":47,"location":"North Warrenchester"}},{"attributes":{"name":"Miss Alessandra Ratke","age":63,"location":"Terrellfurt"}},{"attributes":{"name":"Maggie Veum","age":60,"location":"North Brettbury"}},{"attributes":{"name":"Mr. Fernando Rosenbaum","age":40,"location":"Verlieboro"}},{"attributes":{"name":"Ms. Clint Raynor","age":38,"location":"North Jayme"}},{"attributes":{"name":"Alene Heathcote III","age":19,"location":"East Maxine"}},{"attributes":{"name":"Eleanor Frami","age":52,"location":"Alafaya"}},{"attributes":{"name":"Lorenzo Hegmann","age":53,"location":"West Gilda"}},{"attributes":{"name":"Pat Thompson","age":63,"location":"Sammiestead"}},{"attributes":{"name":"Gudrun Leuschke","age":40,"location":"Hempstead"}},{"attributes":{"name":"Pedro Hayes I","age":79,"location":"Sporerfurt"}},{"attributes":{"name":"Dominic Stoltenberg","age":48,"location":"Adolfcester"}},{"attributes":{"name":"Diamond Lueilwitz","age":41,"location":"Margeberg"}},{"attributes":{"name":"Randy Hand","age":45,"location":"Archibaldburgh"}},{"attributes":{"name":"Harold Johns","age":42,"location":"West Giacester"}},{"attributes":{"name":"Idella Green","age":73,"location":"Independence"}},{"attributes":{"name":"Karla Barrows III","age":61,"location":"Evanston"}},{"attributes":{"name":"Stella Becker","age":62,"location":"South Masonstad"}},{"attributes":{"name":"Elmer Kunde","age":22,"location":"San Tan Valley"}},{"attributes":{"name":"Shayna Reichert","age":42,"location":"Traviscester"}},{"attributes":{"name":"Rafael Boyer","age":24,"location":"South Ofeliaside"}},{"attributes":{"name":"Mitchell Langworth","age":47,"location":"North George"}},{"attributes":{"name":"Elmer Kuphal","age":76,"location":"Carterberg"}},{"attributes":{"name":"Shannon Swaniawski MD","age":50,"location":"Curtisville"}},{"attributes":{"name":"Grady Miller IV","age":47,"location":"South Dejuanside"}},{"attributes":{"name":"Wayne Walsh-Ritchie","age":79,"location":"North Tabitha"}},{"attributes":{"name":"Saul Roob","age":34,"location":"McLaughlinberg"}},{"attributes":{"name":"John Terry","age":74,"location":"South Tabithastad"}},{"attributes":{"name":"Lorraine Gutkowski","age":80,"location":"McKinney"}},{"attributes":{"name":"Oral Hilll","age":72,"location":"Port Trudie"}},{"attributes":{"name":"Kayla Bruen","age":74,"location":"Veummouth"}},{"attributes":{"name":"Brian Fahey","age":47,"location":"West Lexie"}},{"attributes":{"name":"Delbert Schaden","age":27,"location":"Santa Cruz"}},{"attributes":{"name":"Matthew Kutch","age":55,"location":"Katelynworth"}},{"attributes":{"name":"Benny Schaefer-Kohler","age":47,"location":"South Jenniferberg"}},{"attributes":{"name":"Carroll Harvey","age":52,"location":"Port Lynn"}},{"attributes":{"name":"Keon Trantow","age":58,"location":"Duluth"}},{"attributes":{"name":"Devyn Daniel","age":72,"location":"Gerhardcester"}},{"attributes":{"name":"Larue Stehr","age":36,"location":"Pasadena"}},{"attributes":{"name":"Erma Purdy","age":23,"location":"North Kacieworth"}},{"attributes":{"name":"Ralph Barton","age":79,"location":"South Alessialand"}},{"attributes":{"name":"Clifford Rempel","age":23,"location":"Leonefield"}},{"attributes":{"name":"Jeremy Becker","age":48,"location":"Paucekworth"}},{"attributes":{"name":"Reed Armstrong MD","age":71,"location":"Cummingsside"}},{"attributes":{"name":"Elnora Grant","age":30,"location":"Emmetshire"}},{"attributes":{"name":"Marcelina Waelchi","age":24,"location":"Fayetteville"}},{"attributes":{"name":"Tommy Roob","age":39,"location":"Fort Houstonfield"}},{"attributes":{"name":"Dr. Vilma Larkin-Nitzsche","age":41,"location":"East Seamus"}},{"attributes":{"name":"Jon Batz","age":65,"location":"Fort Jacintoland"}},{"attributes":{"name":"Lucienne Ratke","age":63,"location":"Lake Jennifer"}},{"attributes":{"name":"Leonie Murray","age":80,"location":"Lake Colleen"}},{"attributes":{"name":"Florine Marquardt","age":43,"location":"Port Ashtynburgh"}},{"attributes":{"name":"Gerda Collier","age":22,"location":"Wheaton"}},{"attributes":{"name":"Dr. Alfredo Kertzmann","age":55,"location":"New Alvah"}},{"attributes":{"name":"Tracy Gorczany","age":25,"location":"Alexandria"}},{"attributes":{"name":"Mr. Greg Robel","age":35,"location":"East Eulalia"}},{"attributes":{"name":"Dr. Noelia Hammes Sr.","age":23,"location":"Hodkiewiczfield"}},{"attributes":{"name":"Miss Joanna Johnson I","age":43,"location":"Port Fernstad"}},{"attributes":{"name":"Kailey Cremin","age":43,"location":"Raphaelworth"}},{"attributes":{"name":"Avis Ledner-Hoeger","age":58,"location":"Lake Rey"}},{"attributes":{"name":"Stewart Graham II","age":24,"location":"Welchburgh"}},{"attributes":{"name":"Claudia Bergnaum","age":46,"location":"Sierra Vista"}},{"attributes":{"name":"Efren Dickinson Jr.","age":55,"location":"East Noemy"}},{"attributes":{"name":"Amber Windler","age":32,"location":"Christymouth"}},{"attributes":{"name":"Dr. Horace Rutherford","age":51,"location":"Elroyhaven"}},{"attributes":{"name":"Jasper Botsford","age":60,"location":"Cummerataburgh"}},{"attributes":{"name":"Unique Reynolds","age":60,"location":"Greensboro"}},{"attributes":{"name":"Toney Klocko","age":68,"location":"East Idellport"}},{"attributes":{"name":"Minnie Durgan","age":33,"location":"Lake Louveniamouth"}},{"attributes":{"name":"Justin Dietrich","age":45,"location":"Jacobichester"}},{"attributes":{"name":"Ms. Janis Morar","age":52,"location":"DeKalb"}},{"attributes":{"name":"Gail Cruickshank","age":20,"location":"Hackettworth"}},{"attributes":{"name":"Adriel Keebler","age":27,"location":"Fort Mattieville"}},{"attributes":{"name":"Ms. Colleen Wilderman","age":20,"location":"Danbury"}},{"attributes":{"name":"Van Kulas","age":20,"location":"South Demetrius"}},{"attributes":{"name":"Jacob Fadel","age":46,"location":"Brownsville"}},{"attributes":{"name":"Nathan Ritchie","age":61,"location":"New Justine"}},{"attributes":{"name":"Jacqueline Kiehn","age":73,"location":"West Terrence"}},{"attributes":{"name":"Gina Durgan","age":71,"location":"Norwoodcester"}},{"attributes":{"name":"Kaya Carter","age":31,"location":"East Yasminstad"}},{"attributes":{"name":"Reed Goyette","age":59,"location":"Hutchinson"}},{"attributes":{"name":"Mr. Adrian Crooks","age":60,"location":"Newport News"}},{"attributes":{"name":"Henry Reichel","age":39,"location":"Stoltenbergton"}},{"attributes":{"name":"Courtney Wyman","age":39,"location":"North Makenzie"}},{"attributes":{"name":"Theodore Rempel","age":58,"location":"Fort Anderson"}},{"attributes":{"name":"Erika Weissnat","age":34,"location":"Murrieta"}},{"attributes":{"name":"Miss Gilbert Bosco","age":48,"location":"Jacksonville"}},{"attributes":{"name":"Jaron Orn MD","age":45,"location":"Yoststad"}},{"attributes":{"name":"Tyler Corkery PhD","age":24,"location":"Port Abagail"}},{"attributes":{"name":"Chauncey Rosenbaum","age":22,"location":"Diamond Bar"}},{"attributes":{"name":"Edmund Bernhard","age":63,"location":"South Joefield"}},{"attributes":{"name":"Mervin Renner","age":71,"location":"Chandlercester"}},{"attributes":{"name":"Ana Paucek","age":33,"location":"Fort Lorenza"}},{"attributes":{"name":"Danielle Collins I","age":52,"location":"Brettfurt"}},{"attributes":{"name":"Dr. Antonio Adams","age":29,"location":"Willardview"}},{"attributes":{"name":"German Hayes","age":47,"location":"Port Toby"}},{"attributes":{"name":"Anabelle Bahringer","age":49,"location":"Fort Tyrel"}},{"attributes":{"name":"Abagail Bode","age":75,"location":"North Crawfordland"}},{"attributes":{"name":"Bernadette Rempel","age":49,"location":"Rebecaberg"}},{"attributes":{"name":"Ellen Paucek","age":19,"location":"Joanyton"}},{"attributes":{"name":"Jake Kemmer","age":55,"location":"South Johancester"}},{"attributes":{"name":"Susana Hartmann","age":69,"location":"Victoriaview"}},{"attributes":{"name":"Veronica Mante","age":74,"location":"South Wava"}},{"attributes":{"name":"Roger Zieme","age":20,"location":"West Coralie"}},{"attributes":{"name":"Myra Haag MD","age":19,"location":"Port Westleyfield"}},{"attributes":{"name":"Toby McDermott-Spencer","age":29,"location":"West Palm Beach"}},{"attributes":{"name":"Patsy Rogahn","age":71,"location":"New Sienna"}},{"attributes":{"name":"King Kertzmann","age":36,"location":"New Sylvanside"}},{"attributes":{"name":"Hugh Hilll","age":64,"location":"Hoover"}},{"attributes":{"name":"Hubert Wunsch III","age":79,"location":"Izaiahboro"}},{"attributes":{"name":"Danny Cummings","age":40,"location":"Randichester"}},{"attributes":{"name":"Jerome Macejkovic","age":55,"location":"Delray Beach"}},{"attributes":{"name":"Agustina Abbott","age":79,"location":"O'Connerboro"}},{"attributes":{"name":"Aisha Hermann IV","age":33,"location":"Fort Jarviscester"}},{"attributes":{"name":"Archibald Jones","age":32,"location":"New Isaistad"}},{"attributes":{"name":"Marcos Macejkovic","age":40,"location":"Mantechester"}},{"attributes":{"name":"Lorene Marvin","age":44,"location":"Port Sherwood"}},{"attributes":{"name":"Julian Ruecker","age":44,"location":"North Dedric"}},{"attributes":{"name":"Mr. Rufus Trantow","age":65,"location":"New Kierastead"}},{"attributes":{"name":"Dr. Rene Durgan","age":35,"location":"New Leonorhaven"}},{"attributes":{"name":"Lindsey Rempel","age":20,"location":"Ibrahimchester"}},{"attributes":{"name":"Eunice Harber","age":72,"location":"Lansing"}},{"attributes":{"name":"Bridget Mann","age":30,"location":"New Vivienne"}},{"attributes":{"name":"Elmira Boyle","age":50,"location":"Prohaskafield"}},{"attributes":{"name":"Terrell Glover","age":26,"location":"Tannertown"}},{"attributes":{"name":"Annette O'Kon-Bednar","age":40,"location":"Mrazbury"}},{"attributes":{"name":"Marguerite Borer","age":54,"location":"Destinyhaven"}},{"attributes":{"name":"Fermin Dibbert","age":19,"location":"Port Domenickberg"}},{"attributes":{"name":"Patsy Jakubowski","age":21,"location":"Glendora"}},{"attributes":{"name":"Jeanette Schowalter","age":71,"location":"Port Kailyn"}},{"attributes":{"name":"Ms. Cheryl Strosin","age":36,"location":"Verlachester"}},{"attributes":{"name":"Bryan Cronin","age":33,"location":"Olympia"}},{"attributes":{"name":"Mr. Willis Hoeger","age":24,"location":"Lake Claudinecester"}},{"attributes":{"name":"Anita Nicolas-Gleason","age":45,"location":"Port Gillian"}},{"attributes":{"name":"Clinton Denesik","age":37,"location":"South Rasheed"}},{"attributes":{"name":"Ettie Ritchie MD","age":56,"location":"Ziemehaven"}},{"attributes":{"name":"Savion Schroeder","age":31,"location":"Tillmanhaven"}},{"attributes":{"name":"Thurman Aufderhar","age":44,"location":"Collinsstad"}},{"attributes":{"name":"Estell Raynor","age":51,"location":"Pacochamouth"}},{"attributes":{"name":"Melany Johns","age":51,"location":"West Covina"}},{"attributes":{"name":"Elbert Wiegand Jr.","age":30,"location":"Svenfield"}},{"attributes":{"name":"Diana Purdy","age":33,"location":"Richmond"}},{"attributes":{"name":"Leon Funk","age":47,"location":"Gleichnercester"}},{"attributes":{"name":"Maureen Schumm V","age":44,"location":"Port Lula"}},{"attributes":{"name":"Garrett Hintz","age":67,"location":"Caryboro"}},{"attributes":{"name":"Jerrold Schoen II","age":49,"location":"South Arelyland"}},{"attributes":{"name":"Johann Feest","age":22,"location":"Leschshire"}},{"attributes":{"name":"Mr. Adrien Johns II","age":62,"location":"Margefort"}},{"attributes":{"name":"Carmine Ullrich","age":74,"location":"Ivyside"}},{"attributes":{"name":"Sonja DuBuque","age":22,"location":"West Maryjane"}},{"attributes":{"name":"Ms. Juanita Haag","age":71,"location":"Edmond"}},{"attributes":{"name":"Ellis Krajcik","age":70,"location":"South Stanford"}},{"attributes":{"name":"Leigh Reichert","age":31,"location":"Hayward"}},{"attributes":{"name":"Cierra Kutch","age":76,"location":"Ondrickaburgh"}},{"attributes":{"name":"Caesar Torphy","age":74,"location":"Fort Afton"}},{"attributes":{"name":"Danielle McClure","age":70,"location":"South Marielle"}},{"attributes":{"name":"Ford Leffler","age":19,"location":"Taunton"}},{"attributes":{"name":"Yasmine Hodkiewicz","age":58,"location":"Schoencester"}},{"attributes":{"name":"Michel Mills PhD","age":47,"location":"Battle Creek"}},{"attributes":{"name":"Candace Hudson","age":44,"location":"Frederikcester"}},{"attributes":{"name":"Ellis Franecki","age":23,"location":"Zenafort"}},{"attributes":{"name":"Bruce Konopelski","age":76,"location":"Monterey Park"}},{"attributes":{"name":"Rudy O'Hara","age":77,"location":"Hettingerchester"}},{"attributes":{"name":"Georgianna Kuhlman","age":68,"location":"North Addisonfield"}},{"attributes":{"name":"Mrs. Carroll Murphy","age":74,"location":"Port Clevelandboro"}},{"attributes":{"name":"Gwen Kub","age":35,"location":"West Babylon"}},{"attributes":{"name":"Robert Hamill","age":30,"location":"Torpburgh"}},{"attributes":{"name":"Jeremiah Treutel","age":44,"location":"West Grady"}},{"attributes":{"name":"Leslie Jacobi","age":65,"location":"East Scarlett"}},{"attributes":{"name":"Robert Hartmann","age":43,"location":"Lake Eugenia"}},{"attributes":{"name":"Jimmie Murphy","age":31,"location":"Garrickstead"}},{"attributes":{"name":"Sylvia Kutch","age":46,"location":"Malloryhaven"}},{"attributes":{"name":"Nancy Kemmer","age":54,"location":"Shawnastead"}},{"attributes":{"name":"Madie McLaughlin","age":61,"location":"Bogisichchester"}},{"attributes":{"name":"Dawn Stokes","age":39,"location":"Jayside"}},{"attributes":{"name":"Mike Walsh","age":32,"location":"Maxieland"}},{"attributes":{"name":"Mrs. Agnes Feeney-Von","age":78,"location":"North Shanieworth"}},{"attributes":{"name":"Crystal Bartell","age":61,"location":"West Wilma"}},{"attributes":{"name":"Orlando Langworth","age":18,"location":"Folsom"}},{"attributes":{"name":"Nicole Torphy","age":69,"location":"Hagenesmouth"}},{"attributes":{"name":"Deshawn Ebert","age":34,"location":"Port Eugeniaville"}},{"attributes":{"name":"Noah Boyer","age":73,"location":"South Ward"}},{"attributes":{"name":"Cynthia Collier","age":59,"location":"Fort Georgeport"}},{"attributes":{"name":"Christy Grant-Cummings","age":51,"location":"Victorialand"}},{"attributes":{"name":"Gordon Bogisich","age":58,"location":"Fort Chase"}},{"attributes":{"name":"Frida VonRueden","age":77,"location":"Frederick"}},{"attributes":{"name":"Troy Hammes","age":59,"location":"Jakeborough"}},{"attributes":{"name":"Darion Torphy IV","age":37,"location":"Bodefort"}},{"attributes":{"name":"Xavier Parisian","age":29,"location":"North Darwin"}},{"attributes":{"name":"Faye Heller","age":48,"location":"North Miami"}},{"attributes":{"name":"Marcia Shields-Beatty","age":22,"location":"Port Savannahland"}},{"attributes":{"name":"Johanna Kemmer","age":80,"location":"Trantowberg"}},{"attributes":{"name":"Elody Gutmann","age":36,"location":"Port Jaymeburgh"}},{"attributes":{"name":"Braeden Hudson","age":33,"location":"Hegmanncester"}},{"attributes":{"name":"Fredrick Frami","age":19,"location":"Chesapeake"}},{"attributes":{"name":"Jeremy Erdman","age":33,"location":"North Felix"}},{"attributes":{"name":"Sherry Lesch","age":48,"location":"Eveborough"}},{"attributes":{"name":"Jaycee Oberbrunner","age":71,"location":"McGlynnhaven"}},{"attributes":{"name":"Joy Considine","age":18,"location":"Jastboro"}},{"attributes":{"name":"Geraldine Bruen","age":78,"location":"O'Reillyworth"}},{"attributes":{"name":"Craig Murazik II","age":22,"location":"Missouri City"}},{"attributes":{"name":"Carlos Predovic","age":76,"location":"Dale City"}},{"attributes":{"name":"Nick Toy","age":50,"location":"West Myah"}},{"attributes":{"name":"Miss Hudson Tillman","age":51,"location":"Gerlachfurt"}},{"attributes":{"name":"Ruth Predovic","age":77,"location":"North Alfonsochester"}},{"attributes":{"name":"Amy Nienow","age":58,"location":"North Kaleigh"}},{"attributes":{"name":"Sammy Veum IV","age":78,"location":"Thompsonbury"}},{"attributes":{"name":"Kristopher Turner","age":34,"location":"Jaleelland"}},{"attributes":{"name":"Hannah Torphy","age":78,"location":"West Arlo"}},{"attributes":{"name":"Miss Justus Grant","age":49,"location":"Wuckertfort"}},{"attributes":{"name":"Andre Marks","age":80,"location":"Koeppcester"}},{"attributes":{"name":"Brent Nicolas Jr.","age":80,"location":"Port Maciside"}},{"attributes":{"name":"Kian Mertz","age":19,"location":"Fort Lonieview"}},{"attributes":{"name":"Westley Bauch","age":66,"location":"Esteltown"}},{"attributes":{"name":"Burley Okuneva","age":75,"location":"Lake Dorothyhaven"}},{"attributes":{"name":"Stephanie Reichel","age":60,"location":"Schmittside"}},{"attributes":{"name":"Ervin Hirthe","age":63,"location":"Ocala"}},{"attributes":{"name":"Lonzo Friesen","age":40,"location":"Corona"}},{"attributes":{"name":"Joan Miller-Franecki","age":58,"location":"North Una"}},{"attributes":{"name":"Magdalena Cruickshank","age":49,"location":"West Flo"}},{"attributes":{"name":"Shane Hirthe","age":27,"location":"South Rowlandport"}},{"attributes":{"name":"Ms. Tremaine Greenholt","age":77,"location":"South Madelinestead"}},{"attributes":{"name":"Erik Kozey","age":18,"location":"North Horace"}},{"attributes":{"name":"Dr. Adrain Koepp","age":51,"location":"Port Toymouth"}},{"attributes":{"name":"Cecil Hermann","age":51,"location":"Sunrise"}},{"attributes":{"name":"Norman Zemlak","age":37,"location":"Arcadia"}},{"attributes":{"name":"Daisha Klocko","age":58,"location":"Ankundingstad"}},{"attributes":{"name":"Lorene Reichert","age":53,"location":"Port Haliemouth"}},{"attributes":{"name":"Marjorie Zulauf-Homenick","age":69,"location":"Doyleland"}},{"attributes":{"name":"Belinda Herman","age":32,"location":"Daltonland"}},{"attributes":{"name":"Randal Prosacco","age":57,"location":"East Maiachester"}},{"attributes":{"name":"Henrietta Stark","age":19,"location":"Peabody"}},{"attributes":{"name":"Garrett Walsh","age":67,"location":"Port Jasen"}},{"attributes":{"name":"Eileen Breitenberg","age":76,"location":"Marquardtworth"}},{"attributes":{"name":"Doug Dooley PhD","age":34,"location":"Rainamouth"}},{"attributes":{"name":"Otis Gleichner","age":21,"location":"Zakaryshire"}},{"attributes":{"name":"Dr. Edythe Gerhold","age":36,"location":"North Robertoworth"}},{"attributes":{"name":"Andres Hagenes","age":37,"location":"Santa Clarita"}},{"attributes":{"name":"Miss Stephanie Lang","age":43,"location":"East Susanchester"}},{"attributes":{"name":"Edmund Donnelly","age":68,"location":"East Kenny"}},{"attributes":{"name":"Roderick Mann DVM","age":48,"location":"Haagstead"}},{"attributes":{"name":"Walker Douglas II","age":69,"location":"West Eliseofield"}},{"attributes":{"name":"Vickie Breitenberg","age":57,"location":"Myrtiestad"}},{"attributes":{"name":"Cynthia Jast II","age":25,"location":"Pacochafield"}},{"attributes":{"name":"Wayne Shields","age":33,"location":"Attleboro"}},{"attributes":{"name":"Mr. Sophia Beatty","age":59,"location":"North Maximilian"}},{"attributes":{"name":"Kristopher Pfannerstill-Tillman","age":78,"location":"Des Moines"}},{"attributes":{"name":"Delores Mertz","age":78,"location":"Port Meggieworth"}},{"attributes":{"name":"Mrs. Roberto Walker","age":35,"location":"North Ora"}},{"attributes":{"name":"Dr. Annamae Grant","age":69,"location":"North Little Rock"}},{"attributes":{"name":"Jana Legros","age":67,"location":"Runteshire"}},{"attributes":{"name":"Vickie Schumm","age":73,"location":"Kettering"}},{"attributes":{"name":"Todd Yundt","age":51,"location":"Melvinaton"}},{"attributes":{"name":"Cesar Beer","age":59,"location":"Methuen Town"}},{"attributes":{"name":"Javier Halvorson","age":55,"location":"Elainaborough"}},{"attributes":{"name":"Joanna Kreiger IV","age":21,"location":"Jonatanland"}},{"attributes":{"name":"Patrick Gleason","age":61,"location":"South Colbymouth"}},{"attributes":{"name":"Alton Bode","age":58,"location":"Jaskolskifort"}},{"attributes":{"name":"Ursula Harber V","age":79,"location":"Ardenstead"}},{"attributes":{"name":"Allen Luettgen","age":41,"location":"North Idellastad"}},{"attributes":{"name":"Casey Grady","age":22,"location":"North Turnershire"}},{"attributes":{"name":"Kylee Powlowski","age":53,"location":"Grahamboro"}},{"attributes":{"name":"Toby Grady","age":60,"location":"East Deshaunville"}},{"attributes":{"name":"Mr. Elyse Ondricka","age":62,"location":"Conroe"}},{"attributes":{"name":"Tom Schmidt","age":70,"location":"Fort Colton"}},{"attributes":{"name":"Katherine Jaskolski","age":43,"location":"Gustavestad"}},{"attributes":{"name":"Melody Wehner","age":19,"location":"Enricoland"}},{"attributes":{"name":"Alex D'Amore","age":57,"location":"Suffolk"}},{"attributes":{"name":"Velma Olson","age":75,"location":"West Joseph"}},{"attributes":{"name":"Marcus Torphy DVM","age":39,"location":"Ellieton"}},{"attributes":{"name":"Markus Lindgren","age":60,"location":"Bridgeport"}},{"attributes":{"name":"Ms. Danielle Gleason","age":77,"location":"Irvine"}},{"attributes":{"name":"Stephanie Stehr-Abernathy","age":62,"location":"Voncester"}},{"attributes":{"name":"Barton Dickinson","age":29,"location":"Lionelborough"}},{"attributes":{"name":"Dwight Ward","age":38,"location":"East Henryboro"}},{"attributes":{"name":"Marilou Macejkovic","age":49,"location":"South Candelario"}},{"attributes":{"name":"Justice Bergnaum","age":36,"location":"West Curt"}},{"attributes":{"name":"Mr. Annabelle Schamberger","age":68,"location":"Klingland"}},{"attributes":{"name":"Mireille Pouros","age":46,"location":"Denesikview"}},{"attributes":{"name":"Warren Mann","age":31,"location":"Albertoton"}},{"attributes":{"name":"Ray Kris","age":25,"location":"Quigleychester"}},{"attributes":{"name":"Harvey Schamberger DDS","age":76,"location":"Arecibo"}},{"attributes":{"name":"Olin Grady","age":34,"location":"Izabellaport"}},{"attributes":{"name":"Nicolas Koelpin","age":25,"location":"North Kaleigh"}},{"attributes":{"name":"Shannon Boehm","age":25,"location":"South Mikemouth"}},{"attributes":{"name":"Brayan Tremblay","age":28,"location":"Wymanhaven"}},{"attributes":{"name":"Lula Kertzmann IV","age":41,"location":"Klockohaven"}},{"attributes":{"name":"Gabe Ziemann","age":21,"location":"Port Althea"}},{"attributes":{"name":"Angela Kub","age":55,"location":"Lake Marilie"}},{"attributes":{"name":"Rufus Paucek-Huel","age":28,"location":"North Sadyeshire"}},{"attributes":{"name":"Gage Blick","age":37,"location":"Arjunfurt"}},{"attributes":{"name":"Allan Harber","age":63,"location":"Lockmanboro"}},{"attributes":{"name":"Renee Wiza","age":29,"location":"New Caleb"}},{"attributes":{"name":"Ms. Laura Schaefer","age":59,"location":"New Micahcester"}},{"attributes":{"name":"Pedro Hoppe","age":70,"location":"Anaheim"}},{"attributes":{"name":"Eileen Schmeler","age":30,"location":"East Bernardmouth"}},{"attributes":{"name":"Dr. Karla Cassin","age":78,"location":"Cheyenne"}},{"attributes":{"name":"Katie Becker","age":29,"location":"East Lonieton"}},{"attributes":{"name":"Kathryn Simonis","age":28,"location":"Arielleland"}},{"attributes":{"name":"Ethan Stroman DVM","age":66,"location":"Baileytown"}},{"attributes":{"name":"Seamus Jakubowski","age":57,"location":"Port Ivoryfort"}},{"attributes":{"name":"Dr. Jennie Reynolds","age":39,"location":"Fort Worth"}},{"attributes":{"name":"Sophia Jakubowski","age":49,"location":"Mission Viejo"}},{"attributes":{"name":"Seamus Klocko","age":67,"location":"Travonview"}},{"attributes":{"name":"Patricia Renner","age":76,"location":"Schambergerboro"}},{"attributes":{"name":"Misty Rau","age":24,"location":"Marcustown"}},{"attributes":{"name":"Gilbert Weissnat","age":40,"location":"Urbandale"}},{"attributes":{"name":"Brent Wolf","age":78,"location":"Reichelview"}},{"attributes":{"name":"Kathy Schultz","age":32,"location":"Wyatttown"}},{"attributes":{"name":"Dereck Bechtelar","age":19,"location":"Topeka"}},{"attributes":{"name":"Suzanne Aufderhar","age":63,"location":"Port Jaylin"}},{"attributes":{"name":"Camille Barrows","age":19,"location":"Moriahcester"}},{"attributes":{"name":"Dr. Maurice Waelchi","age":42,"location":"Schaeferside"}},{"attributes":{"name":"Alfreda Prohaska","age":55,"location":"South Frances"}},{"attributes":{"name":"Kristy Brekke","age":48,"location":"Cheektowaga"}},{"attributes":{"name":"Marcos Schaefer","age":42,"location":"Alejandrabury"}},{"attributes":{"name":"Pam Cormier","age":46,"location":"Bradenton"}},{"attributes":{"name":"Helen Reynolds","age":54,"location":"Ivyhaven"}},{"attributes":{"name":"Garrett Raynor","age":47,"location":"Lake Jackeline"}},{"attributes":{"name":"Mrs. Angel Nicolas-Pouros DVM","age":25,"location":"Largo"}},{"attributes":{"name":"Dana Bayer-Kutch","age":36,"location":"New Orville"}},{"attributes":{"name":"Brenda Bogan","age":23,"location":"Deerfield Beach"}},{"attributes":{"name":"Lottie Tremblay","age":31,"location":"Rebecastead"}},{"attributes":{"name":"Tracey Little","age":74,"location":"Cruztown"}},{"attributes":{"name":"Jared Stracke","age":52,"location":"North Tara"}},{"attributes":{"name":"Nadine Borer DDS","age":42,"location":"Connerhaven"}},{"attributes":{"name":"Lucienne Cronin","age":79,"location":"Allentown"}},{"attributes":{"name":"Tatyana Bosco","age":61,"location":"Windlershire"}},{"attributes":{"name":"Mrs. Lindsey Wintheiser","age":25,"location":"Ziemannshire"}},{"attributes":{"name":"Miss Tressa Emmerich","age":34,"location":"East Danika"}},{"attributes":{"name":"Dario Kilback","age":20,"location":"Kundeburgh"}},{"attributes":{"name":"Verna Jacobi-King","age":50,"location":"Stamford"}},{"attributes":{"name":"Gregory Dickinson","age":77,"location":"Mitchellland"}},{"attributes":{"name":"Damian Braun","age":50,"location":"Fritschborough"}},{"attributes":{"name":"Raul Donnelly","age":18,"location":"North Hollisstad"}},{"attributes":{"name":"Lynn Kiehn II","age":23,"location":"Mariostad"}},{"attributes":{"name":"Anne Buckridge","age":33,"location":"East Kamronmouth"}},{"attributes":{"name":"Orlando Reynolds","age":56,"location":"Rogahnworth"}},{"attributes":{"name":"Ms. Lorraine Hickle","age":76,"location":"Trompburgh"}},{"attributes":{"name":"Miss Jaime Johnston","age":78,"location":"Vonside"}},{"attributes":{"name":"Dr. Mary Kulas Sr.","age":75,"location":"North Erikstead"}},{"attributes":{"name":"Earl Hoeger-Gerhold MD","age":40,"location":"Port Shanafort"}},{"attributes":{"name":"Johnson Swaniawski","age":56,"location":"Yakima"}},{"attributes":{"name":"Margarita Pacocha","age":22,"location":"Florineworth"}},{"attributes":{"name":"Gail Zulauf","age":39,"location":"Wilson"}},{"attributes":{"name":"Darren McClure","age":77,"location":"West Muhammadton"}},{"attributes":{"name":"Shawna Dach","age":79,"location":"West Burdette"}},{"attributes":{"name":"Erik Leuschke","age":51,"location":"Ziemannshire"}},{"attributes":{"name":"Javon Herzog","age":46,"location":"East Watsonside"}},{"attributes":{"name":"Kendra Schroeder","age":34,"location":"Port Charlotte"}},{"attributes":{"name":"Curtis Schaefer-Marvin","age":54,"location":"South Zion"}},{"attributes":{"name":"Mamie Langworth","age":65,"location":"Malden"}},{"attributes":{"name":"Cassandra Cummings","age":61,"location":"South Madisen"}},{"attributes":{"name":"Arlene Hermann","age":39,"location":"Maribelborough"}},{"attributes":{"name":"Mabel Kuhlman","age":32,"location":"Wilkinsonville"}},{"attributes":{"name":"William Reichel","age":53,"location":"Lennieberg"}},{"attributes":{"name":"Leah Walsh","age":22,"location":"Spring"}},{"attributes":{"name":"Homer Walker","age":74,"location":"South Aydenville"}},{"attributes":{"name":"Aubrey Okuneva","age":45,"location":"South Meghan"}},{"attributes":{"name":"Pearl Harvey","age":29,"location":"North Angelinastead"}},{"attributes":{"name":"Alexandrine Huels","age":73,"location":"McLaughlinberg"}},{"attributes":{"name":"Blanca Schimmel","age":41,"location":"Kiehnburgh"}},{"attributes":{"name":"Erma Thiel","age":24,"location":"West Ocie"}},{"attributes":{"name":"Vergie Bayer","age":69,"location":"Jaronfield"}},{"attributes":{"name":"Wilbert Murphy","age":41,"location":"Fort Darrell"}},{"attributes":{"name":"Loren Sporer","age":56,"location":"Lubowitzberg"}},{"attributes":{"name":"Assunta Konopelski","age":22,"location":"West Nellacester"}},{"attributes":{"name":"Elyse Lockman","age":26,"location":"Port Emmanuelchester"}},{"attributes":{"name":"Alberta Abernathy","age":31,"location":"New Montana"}},{"attributes":{"name":"Miss Lorenza Lebsack","age":51,"location":"North Howardfurt"}},{"attributes":{"name":"Thelma Cole","age":37,"location":"Salinas"}},{"attributes":{"name":"Waino Luettgen","age":32,"location":"West Antoinette"}},{"attributes":{"name":"Lucia Kunze","age":56,"location":"East Darwin"}},{"attributes":{"name":"Lynda Reichel","age":27,"location":"East Trevion"}},{"attributes":{"name":"Mrs. Jedediah Shanahan","age":79,"location":"Tommieburgh"}},{"attributes":{"name":"Vergie Wyman","age":62,"location":"Nikkifort"}},{"attributes":{"name":"Lynette Schmeler","age":70,"location":"Langworth"}},{"attributes":{"name":"Devante Blanda","age":41,"location":"Houstonview"}},{"attributes":{"name":"Kieran Wolff-Zieme","age":27,"location":"Wyoming"}},{"attributes":{"name":"Samantha Balistreri","age":48,"location":"Abigayleview"}},{"attributes":{"name":"Louis Dietrich","age":57,"location":"Fremont"}},{"attributes":{"name":"Bill Nikolaus","age":67,"location":"North Maeganton"}},{"attributes":{"name":"Leonora Rowe","age":43,"location":"Braunville"}},{"attributes":{"name":"Taylor Bartell","age":73,"location":"North Zionshire"}},{"attributes":{"name":"Margarett Veum","age":34,"location":"North Alexys"}},{"attributes":{"name":"Daryl Koelpin","age":33,"location":"Fort Erik"}},{"attributes":{"name":"Mrs. Bill Jaskolski","age":33,"location":"Hemet"}},{"attributes":{"name":"Ken Thiel","age":78,"location":"Hoppeview"}},{"attributes":{"name":"Ebony Bruen","age":67,"location":"Lake Rogershire"}},{"attributes":{"name":"Karley Dicki","age":53,"location":"New Annamarie"}},{"attributes":{"name":"Jesse Yost","age":47,"location":"Budstead"}},{"attributes":{"name":"Oscar Gulgowski-Buckridge","age":29,"location":"Lake Adelbert"}},{"attributes":{"name":"Glenna Carter","age":19,"location":"University"}},{"attributes":{"name":"Meggie Kutch","age":22,"location":"Mount Pleasant"}},{"attributes":{"name":"Irene Kihn Sr.","age":50,"location":"East Bartonboro"}},{"attributes":{"name":"Domenica Bosco","age":27,"location":"Port Fern"}},{"attributes":{"name":"Nathan Gorczany","age":69,"location":"Adrainbury"}},{"attributes":{"name":"Gabriel Labadie-Crist","age":67,"location":"Port Roxane"}},{"attributes":{"name":"Eden Jakubowski","age":29,"location":"Bradtkestad"}},{"attributes":{"name":"Erick Lesch","age":74,"location":"Lake Wilford"}},{"attributes":{"name":"Melba Vandervort-Kirlin","age":78,"location":"Lake Carmelomouth"}},{"attributes":{"name":"Jackie Bayer","age":26,"location":"Port Amelia"}},{"attributes":{"name":"Lynn Schiller","age":48,"location":"Port Clairestad"}},{"attributes":{"name":"Jerrell Swift","age":23,"location":"Emmerichside"}},{"attributes":{"name":"Nikki Hodkiewicz","age":37,"location":"Redmond"}},{"attributes":{"name":"Johnathan Bergstrom","age":25,"location":"Lake Kaya"}},{"attributes":{"name":"Heather Batz","age":26,"location":"Derickboro"}},{"attributes":{"name":"Pearl Barrows","age":64,"location":"South Andreanneport"}},{"attributes":{"name":"Abraham Hand","age":53,"location":"Jimmyland"}},{"attributes":{"name":"Tracy Romaguera","age":71,"location":"Nicolettefurt"}},{"attributes":{"name":"Herbert Fahey","age":38,"location":"New Darlene"}},{"attributes":{"name":"Mr. Martha Lemke","age":42,"location":"New Annalisefield"}},{"attributes":{"name":"Shelley Walter","age":52,"location":"North Neha"}},{"attributes":{"name":"Mr. Rudolph Hessel","age":18,"location":"Highland"}},{"attributes":{"name":"Carol Prosacco","age":65,"location":"San Angelo"}},{"attributes":{"name":"Miss Hilda Carroll","age":40,"location":"Port Jordiworth"}},{"attributes":{"name":"Barbara Kilback","age":61,"location":"New Mariah"}},{"attributes":{"name":"Lempi Gottlieb","age":37,"location":"Kertzmannstead"}},{"attributes":{"name":"Garrett Brakus III","age":39,"location":"Lake Neha"}},{"attributes":{"name":"Kaden Durgan","age":31,"location":"West Johann"}},{"attributes":{"name":"Spencer Yundt I","age":55,"location":"Bobbyville"}},{"attributes":{"name":"Miss Evangeline Gibson","age":51,"location":"South Ruthton"}},{"attributes":{"name":"Maddison Flatley","age":47,"location":"Fort Gabriel"}},{"attributes":{"name":"Christy Grady","age":67,"location":"West Tiaraburgh"}},{"attributes":{"name":"Joanna Hand","age":29,"location":"Lorineburgh"}},{"attributes":{"name":"Tricia Berge IV","age":80,"location":"Walshburgh"}},{"attributes":{"name":"Penny Veum","age":53,"location":"Makennaboro"}},{"attributes":{"name":"Russell Collier","age":46,"location":"Heathcoteton"}},{"attributes":{"name":"Francis MacGyver","age":60,"location":"East Claraworth"}},{"attributes":{"name":"Mack Kessler","age":26,"location":"Huldaboro"}},{"attributes":{"name":"Dwight Skiles","age":77,"location":"Lake Mattie"}},{"attributes":{"name":"Larry Nicolas","age":58,"location":"Federicostead"}},{"attributes":{"name":"Adelle Wolf","age":46,"location":"East Jess"}},{"attributes":{"name":"Mona Bahringer","age":69,"location":"Maple Grove"}},{"attributes":{"name":"Dave Dooley","age":46,"location":"Hillsland"}},{"attributes":{"name":"Miss Loretta Dach IV","age":24,"location":"Lake Trevionshire"}},{"attributes":{"name":"Stuart Grimes","age":28,"location":"Fort Evertborough"}},{"attributes":{"name":"Vera Volkman","age":59,"location":"Susannaborough"}},{"attributes":{"name":"Charity Dibbert","age":60,"location":"Missoula"}},{"attributes":{"name":"Brad Homenick","age":42,"location":"West Sister"}},{"attributes":{"name":"Ms. Abbie Gibson","age":68,"location":"Kendraworth"}},{"attributes":{"name":"Dr. Elton Zulauf","age":40,"location":"West Magnoliaside"}},{"attributes":{"name":"Ms. Rudy Wuckert-Collier","age":73,"location":"Port Kamronville"}},{"attributes":{"name":"Mrs. Laura Bednar Sr.","age":74,"location":"Talonstead"}},{"attributes":{"name":"Kailyn Deckow","age":30,"location":"Fort Reagan"}},{"attributes":{"name":"Forrest Deckow","age":68,"location":"Allentown"}},{"attributes":{"name":"Gloria Satterfield","age":55,"location":"Oshkosh"}},{"attributes":{"name":"Laurine D'Amore","age":49,"location":"West Traceburgh"}},{"attributes":{"name":"Patience O'Hara","age":73,"location":"West Raleighstad"}},{"attributes":{"name":"Jayme Oberbrunner","age":76,"location":"North Charleston"}},{"attributes":{"name":"Randy Stehr","age":55,"location":"South Vaughnmouth"}},{"attributes":{"name":"Kamron Spencer","age":23,"location":"Lake Lurline"}},{"attributes":{"name":"William O'Reilly","age":31,"location":"New Abelardobury"}},{"attributes":{"name":"Eddie Blick","age":28,"location":"Willisbury"}},{"attributes":{"name":"Mrs. Abel Runte","age":59,"location":"East Chaimboro"}},{"attributes":{"name":"Idell Runolfsson","age":69,"location":"Kaleychester"}},{"attributes":{"name":"Pearline Mayert","age":20,"location":"Port Blaze"}},{"attributes":{"name":"Mortimer Kunze","age":18,"location":"Monaboro"}},{"attributes":{"name":"Durward Jaskolski","age":46,"location":"New Rosemary"}},{"attributes":{"name":"Kimberly Hauck","age":49,"location":"Eastonfield"}},{"attributes":{"name":"Luz Purdy","age":24,"location":"Lake Jesseworth"}},{"attributes":{"name":"Mr. Manuel Windler","age":22,"location":"Ashburn"}},{"attributes":{"name":"Mercedes Schmitt","age":20,"location":"McDermottton"}},{"attributes":{"name":"Greyson Runolfsdottir","age":52,"location":"Chapel Hill"}},{"attributes":{"name":"Timmy Wisoky","age":60,"location":"Marcelleton"}},{"attributes":{"name":"Mildred Russel MD","age":74,"location":"Wilmahaven"}},{"attributes":{"name":"Iva Bruen","age":58,"location":"Santa Ana"}},{"attributes":{"name":"Mrs. Faye Ebert","age":33,"location":"East Lorna"}},{"attributes":{"name":"Gregory Johnson","age":38,"location":"Lake Palma"}},{"attributes":{"name":"June Ullrich-Steuber","age":26,"location":"Lake Sandy"}},{"attributes":{"name":"Irving Cormier","age":74,"location":"Fort Erwinstead"}},{"attributes":{"name":"Maverick Huels","age":74,"location":"New Chesterbury"}},{"attributes":{"name":"Shanna McLaughlin","age":46,"location":"South Tessieborough"}},{"attributes":{"name":"Doris Haag","age":67,"location":"Prohaskastead"}},{"attributes":{"name":"Dr. Ciara Bode Sr.","age":47,"location":"Anderson"}},{"attributes":{"name":"Miss Anne Lubowitz","age":27,"location":"Fort Wellington"}},{"attributes":{"name":"Mrs. Adrian Wolff","age":40,"location":"Keeblerfield"}},{"attributes":{"name":"Edward Franey","age":26,"location":"Toyside"}},{"attributes":{"name":"Tabitha Thiel","age":41,"location":"East River"}},{"attributes":{"name":"Sylvia Carter","age":42,"location":"New Shanelleport"}},{"attributes":{"name":"Enrico Reinger","age":68,"location":"North Brigitteboro"}},{"attributes":{"name":"Sara Hamill","age":61,"location":"Kovacekchester"}},{"attributes":{"name":"Mrs. Isabella Barrows","age":63,"location":"Grahamtown"}},{"attributes":{"name":"Isac White","age":53,"location":"South Idell"}},{"attributes":{"name":"Dr. Meredith Schinner","age":78,"location":"Fort Worth"}},{"attributes":{"name":"Sierra Carroll","age":51,"location":"Port Ezequielville"}},{"attributes":{"name":"Alene Quigley","age":51,"location":"East Andre"}},{"attributes":{"name":"Hope Shields","age":51,"location":"South Vivienside"}},{"attributes":{"name":"Loretta Murray","age":69,"location":"South Wilsonside"}},{"attributes":{"name":"Ricky Wolff PhD","age":56,"location":"West Steviefield"}},{"attributes":{"name":"Noe Miller","age":72,"location":"North Arnulfo"}},{"attributes":{"name":"Trenton Kreiger","age":36,"location":"Connorburgh"}},{"attributes":{"name":"Howard Lind","age":58,"location":"Fort Karleefurt"}},{"attributes":{"name":"Sadie Nienow","age":58,"location":"West Jenningsbury"}},{"attributes":{"name":"Mr. Leon Armstrong","age":70,"location":"Laishastad"}},{"attributes":{"name":"Connie Hermann","age":36,"location":"Port Vincenzo"}},{"attributes":{"name":"Elenor Klein","age":50,"location":"Fort Kendrick"}},{"attributes":{"name":"Violet Maggio","age":62,"location":"Mobile"}},{"attributes":{"name":"Teresa Corkery III","age":52,"location":"Majormouth"}},{"attributes":{"name":"Audra Hilll","age":38,"location":"Lionelview"}},{"attributes":{"name":"Sabryna Schimmel","age":50,"location":"New Shirley"}},{"attributes":{"name":"Lori Zboncak","age":23,"location":"Geraldstead"}},{"attributes":{"name":"Irma Stoltenberg","age":66,"location":"Fort Jessietown"}},{"attributes":{"name":"Allene Pacocha V","age":57,"location":"North Karleyland"}},{"attributes":{"name":"Rodrick Lakin","age":74,"location":"Mablebury"}},{"attributes":{"name":"Susie Gorczany","age":58,"location":"Bauchberg"}},{"attributes":{"name":"Herminia Rohan","age":40,"location":"Bakersfield"}},{"attributes":{"name":"Austen Auer","age":51,"location":"Danielhaven"}},{"attributes":{"name":"Emilio Monahan","age":40,"location":"Irvingport"}},{"attributes":{"name":"Arielle Walsh","age":28,"location":"Julialand"}},{"attributes":{"name":"Tracy Hand","age":50,"location":"East Justina"}},{"attributes":{"name":"Bobby Pfeffer","age":59,"location":"South Corrine"}},{"attributes":{"name":"Darrin Gottlieb-Murazik","age":23,"location":"South Valliechester"}},{"attributes":{"name":"Amelia Franey","age":57,"location":"Bridgeport"}},{"attributes":{"name":"Renee Grant","age":29,"location":"Eltaborough"}},{"attributes":{"name":"Ms. Fredrick Hammes","age":48,"location":"Millsborough"}},{"attributes":{"name":"Bernadine Lynch","age":66,"location":"Justenton"}},{"attributes":{"name":"Clifford Kutch","age":53,"location":"Kianaport"}},{"attributes":{"name":"Lance Cartwright","age":19,"location":"New Judy"}},{"attributes":{"name":"Terri Herzog","age":43,"location":"East Vivianbury"}},{"attributes":{"name":"Jorge Stamm PhD","age":69,"location":"Federal Way"}},{"attributes":{"name":"Dr. Rose Altenwerth Jr.","age":22,"location":"Mitchellmouth"}},{"attributes":{"name":"Lucy Wyman DDS","age":37,"location":"Schultzton"}},{"attributes":{"name":"Elvera Nienow","age":19,"location":"East Kalliefurt"}},{"attributes":{"name":"Neal Heidenreich","age":77,"location":"Homenickshire"}},{"attributes":{"name":"Vanessa Krajcik","age":65,"location":"Pleasanton"}},{"attributes":{"name":"Mrs. Dave Zulauf","age":65,"location":"South Howardfort"}},{"attributes":{"name":"Julian Bernier-Lebsack","age":38,"location":"Markusworth"}},{"attributes":{"name":"Vallie Huel","age":38,"location":"New Pedroside"}},{"attributes":{"name":"Wayne Kovacek","age":34,"location":"Homenickfort"}},{"attributes":{"name":"Clement Jast","age":63,"location":"Lake Hardyport"}},{"attributes":{"name":"Guillermo Pacocha","age":25,"location":"Matteostead"}},{"attributes":{"name":"Karlie Hermiston II","age":61,"location":"West Oliver"}},{"attributes":{"name":"Erin Runolfsdottir","age":48,"location":"Palm Coast"}},{"attributes":{"name":"Benny Emmerich","age":78,"location":"Carson City"}},{"attributes":{"name":"Lois Trantow","age":25,"location":"Hilpertmouth"}},{"attributes":{"name":"Antonio Ryan","age":69,"location":"Hettingerbury"}},{"attributes":{"name":"Alfred Crist","age":68,"location":"Gertrudeburgh"}},{"attributes":{"name":"Arlene Anderson","age":26,"location":"Faheytown"}},{"attributes":{"name":"Julian Murphy","age":22,"location":"East Michael"}},{"attributes":{"name":"Conner Greenholt","age":78,"location":"Port Lisandrotown"}},{"attributes":{"name":"Walter Jenkins","age":42,"location":"Muellerstead"}},{"attributes":{"name":"Amya Reichel","age":74,"location":"Hirtheborough"}},{"attributes":{"name":"Gilbert Lebsack","age":18,"location":"Spring Hill"}},{"attributes":{"name":"Dr. Bobby King","age":57,"location":"Oberbrunnerburgh"}},{"attributes":{"name":"Cesar Sauer DDS","age":21,"location":"East Dorian"}},{"attributes":{"name":"Leroy Mohr","age":22,"location":"Lake Elmer"}},{"attributes":{"name":"Floyd Strosin","age":80,"location":"Chapel Hill"}},{"attributes":{"name":"Deon Kozey","age":65,"location":"Elwinmouth"}},{"attributes":{"name":"Kiarra Bode","age":37,"location":"Elijahville"}},{"attributes":{"name":"Darron Larkin","age":18,"location":"Fort Francis"}},{"attributes":{"name":"Victor Legros II","age":39,"location":"Lake Jamelshire"}},{"attributes":{"name":"Magnus Medhurst","age":26,"location":"South Jason"}},{"attributes":{"name":"Glenn Bartell","age":48,"location":"New Dockshire"}},{"attributes":{"name":"Leon Fadel","age":76,"location":"Jastfort"}},{"attributes":{"name":"Elmer Roob","age":27,"location":"Elvisstead"}},{"attributes":{"name":"Bob Moore","age":49,"location":"South Rebecca"}},{"attributes":{"name":"Miss Marques Bogisich DVM","age":61,"location":"Dale City"}},{"attributes":{"name":"Jo Sipes","age":53,"location":"Hudsonfield"}},{"attributes":{"name":"Earnest Kuhn","age":69,"location":"South Briannemouth"}},{"attributes":{"name":"Florence Zulauf DVM","age":44,"location":"East Margaritatown"}},{"attributes":{"name":"Stefanie Leannon","age":80,"location":"Fort Braeden"}},{"attributes":{"name":"Carlie Hamill","age":74,"location":"Rancho Cordova"}},{"attributes":{"name":"Gregg Walker","age":57,"location":"Port Damian"}},{"attributes":{"name":"Dr. Erick Cruickshank","age":64,"location":"Rafaelfort"}},{"attributes":{"name":"Brain Doyle","age":62,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Laisha Prosacco IV","age":60,"location":"Othafort"}},{"attributes":{"name":"Evans Bayer","age":39,"location":"Port Bradyport"}},{"attributes":{"name":"Marie O'Connell III","age":18,"location":"North Huldabury"}},{"attributes":{"name":"Mr. Nichole Rempel","age":80,"location":"Port Amelyville"}},{"attributes":{"name":"Alfred Franey DDS","age":51,"location":"Knoxville"}},{"attributes":{"name":"Dr. Kristopher Kub","age":77,"location":"Kirlinworth"}},{"attributes":{"name":"Mabel Dooley III","age":43,"location":"Rockwall"}},{"attributes":{"name":"Luz Wyman IV","age":45,"location":"North Nickstad"}},{"attributes":{"name":"Jaida Tremblay","age":67,"location":"Severn"}},{"attributes":{"name":"Dell Spinka","age":52,"location":"Dayanahaven"}},{"attributes":{"name":"Donna Rohan","age":72,"location":"Eliaschester"}},{"attributes":{"name":"Elsie Hamill Sr.","age":44,"location":"O'Connellhaven"}},{"attributes":{"name":"Terrence Sipes","age":32,"location":"Pourosbury"}},{"attributes":{"name":"Duane Wuckert","age":39,"location":"Rauville"}},{"attributes":{"name":"Mr. Ivory Schuppe Jr.","age":26,"location":"South Scottiehaven"}},{"attributes":{"name":"Raul Weissnat","age":67,"location":"Paramount"}},{"attributes":{"name":"Clint Braun","age":69,"location":"Mitchellshire"}},{"attributes":{"name":"Violet Pacocha","age":27,"location":"New Edmond"}},{"attributes":{"name":"Armando Schmidt-Lemke","age":43,"location":"West Rudyworth"}},{"attributes":{"name":"Nichole Osinski","age":40,"location":"East Percivalboro"}},{"attributes":{"name":"Dr. Jeremiah Osinski","age":60,"location":"North Lexuschester"}},{"attributes":{"name":"Annie Kessler","age":67,"location":"South Beatrice"}},{"attributes":{"name":"Alaina Hyatt","age":61,"location":"New Nicholausfort"}},{"attributes":{"name":"Laila Mayert","age":23,"location":"Cupertino"}},{"attributes":{"name":"Eino Hartmann","age":57,"location":"New Domenicaside"}},{"attributes":{"name":"Rigoberto Douglas","age":19,"location":"Keelingmouth"}},{"attributes":{"name":"Mr. Bridget Hamill","age":40,"location":"East Shayleeport"}},{"attributes":{"name":"Jasper Hyatt DVM","age":75,"location":"New Gerdaview"}},{"attributes":{"name":"Matteo Bergstrom-Weimann","age":54,"location":"Kaydenside"}},{"attributes":{"name":"Russel Leuschke","age":70,"location":"North Josiefield"}},{"attributes":{"name":"Amiya King","age":55,"location":"Morarboro"}},{"attributes":{"name":"Jamel Wuckert","age":23,"location":"Lake Alyshaside"}},{"attributes":{"name":"Jimmy Bartoletti","age":41,"location":"South Frederiquebury"}},{"attributes":{"name":"Kenneth Hettinger","age":53,"location":"Feilborough"}},{"attributes":{"name":"Justyn McLaughlin","age":21,"location":"Port Dina"}},{"attributes":{"name":"Mr. Nicholas Goyette","age":56,"location":"North Bell"}},{"attributes":{"name":"Joaquin Koch","age":69,"location":"Vancouver"}},{"attributes":{"name":"Tara Dach","age":62,"location":"Great Falls"}},{"attributes":{"name":"Silvia Connelly","age":32,"location":"Joliet"}},{"attributes":{"name":"Muriel Fritsch DDS","age":44,"location":"New Kodyshire"}},{"attributes":{"name":"Heber Graham","age":38,"location":"South Darlene"}},{"attributes":{"name":"Simon Boyer","age":28,"location":"Orem"}},{"attributes":{"name":"Mr. Audreanne Huel","age":38,"location":"West Nico"}},{"attributes":{"name":"Cali Haag I","age":44,"location":"Bell Gardens"}},{"attributes":{"name":"Linda Rosenbaum","age":30,"location":"Croninstad"}},{"attributes":{"name":"Mr. Kip Hodkiewicz","age":71,"location":"Gradyside"}},{"attributes":{"name":"Doris Jones","age":68,"location":"Taunton"}},{"attributes":{"name":"Dwayne Weimann","age":46,"location":"Gwenfield"}},{"attributes":{"name":"Rico Corwin","age":18,"location":"Bernhardburgh"}},{"attributes":{"name":"Carlos Bode","age":66,"location":"North Maverickfort"}},{"attributes":{"name":"Ellis Rutherford","age":35,"location":"Lake Carlieboro"}},{"attributes":{"name":"Chadd Ondricka","age":51,"location":"South Piperport"}},{"attributes":{"name":"Gladyce Corwin","age":30,"location":"East Nellecester"}},{"attributes":{"name":"Eva Ernser","age":23,"location":"Abshireboro"}},{"attributes":{"name":"Kathryn Stiedemann","age":75,"location":"Moorefield"}},{"attributes":{"name":"Noel Murray","age":20,"location":"Jupiter"}},{"attributes":{"name":"Kurt Carter","age":22,"location":"Lowell"}},{"attributes":{"name":"Peyton Volkman","age":21,"location":"Marcosborough"}},{"attributes":{"name":"Dianna Brakus","age":39,"location":"New Amanda"}},{"attributes":{"name":"Mekhi Ziemann","age":79,"location":"Sanfordfort"}},{"attributes":{"name":"Joyce Dickens","age":67,"location":"North Antonio"}},{"attributes":{"name":"Santina Langosh Sr.","age":57,"location":"North Ellsworth"}},{"attributes":{"name":"Gregorio O'Reilly","age":41,"location":"Darehaven"}},{"attributes":{"name":"Susie Rosenbaum Jr.","age":64,"location":"Krisstad"}},{"attributes":{"name":"Callie Leffler-Gerlach","age":44,"location":"West Bailey"}},{"attributes":{"name":"Carole Ledner","age":43,"location":"South Dorthafurt"}},{"attributes":{"name":"Easter Ondricka","age":22,"location":"Kulaston"}},{"attributes":{"name":"Cynthia Little II","age":43,"location":"Port Korbinberg"}},{"attributes":{"name":"Dominic Moen","age":70,"location":"Margaretbury"}},{"attributes":{"name":"Mr. Norval Leannon","age":33,"location":"North Ruthborough"}},{"attributes":{"name":"Douglas Goodwin","age":31,"location":"East Benton"}},{"attributes":{"name":"Salvador O'Hara","age":52,"location":"West Rethaton"}},{"attributes":{"name":"Kara Lockman MD","age":66,"location":"North Simeonstead"}},{"attributes":{"name":"Mrs. Melba DuBuque","age":58,"location":"Altadena"}},{"attributes":{"name":"Lizzie Larson","age":52,"location":"Coleshire"}},{"attributes":{"name":"Mrs. Erma Langosh","age":69,"location":"Littelcester"}},{"attributes":{"name":"Ian Simonis","age":55,"location":"West Haven"}},{"attributes":{"name":"Mr. Darby Durgan","age":45,"location":"St. Joseph"}},{"attributes":{"name":"Dimitri Wolff","age":70,"location":"South Carrollboro"}},{"attributes":{"name":"Christopher Hoeger","age":29,"location":"Hialeah"}},{"attributes":{"name":"Miss Nestor Herzog","age":21,"location":"Port Darrylville"}},{"attributes":{"name":"Selena Keeling","age":70,"location":"Waylonport"}},{"attributes":{"name":"Mara Hegmann I","age":66,"location":"East Adeleworth"}},{"attributes":{"name":"Jerald Stokes DDS","age":36,"location":"Schenectady"}},{"attributes":{"name":"Angelina Howell","age":59,"location":"Fort Alyciabury"}},{"attributes":{"name":"Allison Satterfield-Haag","age":55,"location":"Lake Vincent"}},{"attributes":{"name":"Corbin Sauer","age":47,"location":"Adamsborough"}},{"attributes":{"name":"Lionel Adams","age":76,"location":"West Genesis"}},{"attributes":{"name":"Reid Grimes-Abbott II","age":78,"location":"Arnaldostead"}},{"attributes":{"name":"Wiley Lindgren","age":18,"location":"Sporerstead"}},{"attributes":{"name":"Alice Schiller I","age":31,"location":"South Gate"}},{"attributes":{"name":"Maurice Mertz Jr.","age":54,"location":"Port Lucie"}},{"attributes":{"name":"Lowell Sawayn I","age":77,"location":"Arturoton"}},{"attributes":{"name":"Tyrese Halvorson","age":39,"location":"Weberborough"}},{"attributes":{"name":"Jonathan Rippin","age":39,"location":"Cheyenne"}},{"attributes":{"name":"Cyril Hackett","age":51,"location":"Port Judyfield"}},{"attributes":{"name":"Jessie Friesen PhD","age":45,"location":"New Randallport"}},{"attributes":{"name":"Emmett Dibbert","age":54,"location":"Harrisburg"}},{"attributes":{"name":"Walter Torp-Champlin","age":30,"location":"West Jess"}},{"attributes":{"name":"Alberta Predovic","age":76,"location":"East Manuelchester"}},{"attributes":{"name":"Jerald Zieme III","age":58,"location":"New Fredview"}},{"attributes":{"name":"Emily Legros","age":23,"location":"Bechtelarmouth"}},{"attributes":{"name":"Tyson Parker","age":23,"location":"Windlerborough"}},{"attributes":{"name":"Mattie Beahan","age":63,"location":"Edytheberg"}},{"attributes":{"name":"Viola Crooks","age":63,"location":"New Georgette"}},{"attributes":{"name":"Shelley Hegmann","age":32,"location":"East Shemar"}},{"attributes":{"name":"Dandre Wintheiser","age":22,"location":"Pittsfield"}},{"attributes":{"name":"Dominique Sporer","age":25,"location":"Port Kane"}},{"attributes":{"name":"Ali Rutherford","age":79,"location":"Jessikaboro"}},{"attributes":{"name":"Isabell Padberg","age":21,"location":"Watsicaport"}},{"attributes":{"name":"Chelsea Yost","age":79,"location":"Swaniawskihaven"}},{"attributes":{"name":"Winnifred Schneider","age":58,"location":"Donnellychester"}},{"attributes":{"name":"Christy Kuphal","age":19,"location":"New Albinbury"}},{"attributes":{"name":"Derrick Schumm","age":50,"location":"New Coleburgh"}},{"attributes":{"name":"Harvey Huel DVM","age":36,"location":"Bellingham"}},{"attributes":{"name":"Emmalee Swaniawski-Lubowitz","age":24,"location":"Port Edwinashire"}},{"attributes":{"name":"Aric Ebert-Stokes V","age":35,"location":"Lake Ridge"}},{"attributes":{"name":"Daisy Rogahn","age":29,"location":"Eliasberg"}},{"attributes":{"name":"Perry Quitzon","age":58,"location":"Trompboro"}},{"attributes":{"name":"Aubrey Cruickshank","age":59,"location":"Logan"}},{"attributes":{"name":"Gregory Hackett","age":20,"location":"Haltom City"}},{"attributes":{"name":"Kamron Dach","age":77,"location":"Abigailborough"}},{"attributes":{"name":"Dr. Kathryn Pacocha-Huels","age":45,"location":"North Domenicostead"}},{"attributes":{"name":"Dr. Marquise Bernier Sr.","age":71,"location":"Burnsville"}},{"attributes":{"name":"Cary Hauck MD","age":33,"location":"Ullrichfort"}},{"attributes":{"name":"Bernadette Bailey III","age":68,"location":"Bergstromfurt"}},{"attributes":{"name":"Daisy Smitham","age":75,"location":"North Ofeliaworth"}},{"attributes":{"name":"Anabelle Miller-Weber","age":51,"location":"North Bentonland"}},{"attributes":{"name":"Dominick Mills","age":47,"location":"Jerroldworth"}},{"attributes":{"name":"Stevie Runolfsson","age":52,"location":"Greenholtview"}},{"attributes":{"name":"Thaddeus Blick","age":28,"location":"Lake Gerson"}},{"attributes":{"name":"Estelle Boyer","age":52,"location":"Port Sethmouth"}},{"attributes":{"name":"Andrea Bailey","age":69,"location":"East Lonzo"}},{"attributes":{"name":"Emil Lehner","age":45,"location":"Minnieton"}},{"attributes":{"name":"Natasha Turcotte","age":42,"location":"Lake Metahaven"}},{"attributes":{"name":"Theresa Ondricka","age":73,"location":"North Modestoshire"}},{"attributes":{"name":"Baylee Bins","age":28,"location":"Considineton"}},{"attributes":{"name":"Terry Schimmel","age":75,"location":"Perth Amboy"}},{"attributes":{"name":"Mrs. Trace Schulist PhD","age":65,"location":"San Jose"}},{"attributes":{"name":"Miss Velma Crooks","age":22,"location":"East Clarissa"}},{"attributes":{"name":"Darlene Swaniawski V","age":71,"location":"West Danielle"}},{"attributes":{"name":"Johnnie Lindgren","age":59,"location":"Arlietown"}},{"attributes":{"name":"Emily Robel","age":31,"location":"Margieview"}},{"attributes":{"name":"Courtney Hoeger","age":36,"location":"Colton"}},{"attributes":{"name":"Malcolm Keebler","age":52,"location":"Fort Keaton"}},{"attributes":{"name":"Shaylee Emard DVM","age":71,"location":"Jeromyport"}},{"attributes":{"name":"Santina Gusikowski","age":32,"location":"Port Katrinaworth"}},{"attributes":{"name":"Mrs. Raegan Bayer","age":45,"location":"Burke"}},{"attributes":{"name":"Monique Cummerata","age":31,"location":"New Conorview"}},{"attributes":{"name":"Larry Rippin","age":50,"location":"West Braden"}},{"attributes":{"name":"Loren Ankunding","age":37,"location":"West Jayda"}},{"attributes":{"name":"Myrtie Harris PhD","age":41,"location":"New Felicityfurt"}},{"attributes":{"name":"Macey Cremin","age":43,"location":"Jermeyfurt"}},{"attributes":{"name":"Savanah Cormier","age":24,"location":"South Adelineberg"}},{"attributes":{"name":"Marguerite Wintheiser","age":69,"location":"South Jaquelin"}},{"attributes":{"name":"Mr. Candace Casper-DuBuque","age":50,"location":"Kshlerinhaven"}},{"attributes":{"name":"Zackary Beer","age":63,"location":"Lake Carrietown"}},{"attributes":{"name":"Leah Ortiz","age":80,"location":"Jeanneboro"}},{"attributes":{"name":"Adelia Little","age":30,"location":"Fort Meggiecester"}},{"attributes":{"name":"Breana Collins Jr.","age":59,"location":"Port Harmonyport"}},{"attributes":{"name":"Andrea Welch","age":37,"location":"West Lydiaview"}},{"attributes":{"name":"Dashawn Jerde","age":64,"location":"East Karine"}},{"attributes":{"name":"Kim Langworth Sr.","age":74,"location":"Tonawanda"}},{"attributes":{"name":"Miss Mabel Anderson","age":62,"location":"Chadrickton"}},{"attributes":{"name":"Fred Heidenreich Jr.","age":42,"location":"Feestbury"}},{"attributes":{"name":"Keon Franecki","age":26,"location":"Orphaburgh"}},{"attributes":{"name":"Abigail Leannon","age":46,"location":"South Efrain"}},{"attributes":{"name":"Janice Pfeffer","age":45,"location":"Stromanview"}},{"attributes":{"name":"Franco Oberbrunner","age":54,"location":"Boise City"}},{"attributes":{"name":"Amelia Spencer","age":80,"location":"Modestoside"}},{"attributes":{"name":"May Paucek I","age":79,"location":"Trompville"}},{"attributes":{"name":"Marguerite Considine","age":50,"location":"Victorside"}},{"attributes":{"name":"Justin Pfeffer","age":46,"location":"Ottiliechester"}},{"attributes":{"name":"Silvia Larson","age":62,"location":"Lake Raoul"}},{"attributes":{"name":"Miss Mike Medhurst","age":68,"location":"South Nick"}},{"attributes":{"name":"Brad Murazik-Senger","age":27,"location":"North Freda"}},{"attributes":{"name":"Casey Romaguera","age":54,"location":"Lelialand"}},{"attributes":{"name":"Jerome Murray","age":78,"location":"Lake Cassandra"}},{"attributes":{"name":"Jerrod Spencer","age":65,"location":"Casperhaven"}},{"attributes":{"name":"Eula Heathcote","age":33,"location":"East Cortezborough"}},{"attributes":{"name":"Garrett Jaskolski","age":68,"location":"Mariettaton"}},{"attributes":{"name":"Krista Towne","age":38,"location":"New Palma"}},{"attributes":{"name":"Frederic Abshire","age":35,"location":"Eddiefurt"}},{"attributes":{"name":"Megan Shanahan","age":22,"location":"Rempelhaven"}},{"attributes":{"name":"Sylvester Oberbrunner DVM","age":30,"location":"Concord"}},{"attributes":{"name":"Mathew Dach","age":32,"location":"South Genevieve"}},{"attributes":{"name":"Santos Simonis","age":77,"location":"West Kara"}},{"attributes":{"name":"Burnice Marvin","age":56,"location":"Nashua"}},{"attributes":{"name":"Donald Cartwright-Hettinger","age":62,"location":"Downers Grove"}},{"attributes":{"name":"Hattie Hand","age":42,"location":"East Jaronfurt"}},{"attributes":{"name":"Florian Littel","age":54,"location":"Lake Chester"}},{"attributes":{"name":"Warren Shanahan","age":22,"location":"Williamsonview"}},{"attributes":{"name":"Dr. Virgil Upton","age":45,"location":"South Fredaville"}},{"attributes":{"name":"Marques Nienow","age":71,"location":"South Coltonhaven"}},{"attributes":{"name":"Autumn Blick","age":70,"location":"Brandtworth"}},{"attributes":{"name":"Marlene Barrows Jr.","age":78,"location":"Lake Adah"}},{"attributes":{"name":"Verna Glover","age":66,"location":"Josieborough"}},{"attributes":{"name":"Blake O'Reilly","age":62,"location":"Pricefort"}},{"attributes":{"name":"Kayleigh Schneider","age":77,"location":"Eau Claire"}},{"attributes":{"name":"Lucas Johnston","age":18,"location":"Kalamazoo"}},{"attributes":{"name":"Kara Doyle","age":61,"location":"Baronshire"}},{"attributes":{"name":"Lewis Witting","age":66,"location":"Fort Kristofferville"}},{"attributes":{"name":"Francis Kautzer","age":32,"location":"East Gabriel"}},{"attributes":{"name":"Clarissa Paucek IV","age":68,"location":"Grand Rapids"}},{"attributes":{"name":"Cielo Rodriguez V","age":75,"location":"Miaberg"}},{"attributes":{"name":"Miranda Bradtke","age":77,"location":"Urielbury"}},{"attributes":{"name":"Charles Haag-Boehm","age":38,"location":"Port Alex"}},{"attributes":{"name":"Ronnie Reichel IV","age":55,"location":"Carrollton"}},{"attributes":{"name":"Kay Kulas","age":67,"location":"East Lilliantown"}},{"attributes":{"name":"June Leuschke","age":37,"location":"North April"}},{"attributes":{"name":"Delbert Altenwerth","age":30,"location":"Gibsonborough"}},{"attributes":{"name":"Julius Corwin","age":58,"location":"South Lonnieberg"}},{"attributes":{"name":"Luella Stroman","age":21,"location":"Eau Claire"}},{"attributes":{"name":"Hope Ruecker","age":21,"location":"Lake Deontae"}},{"attributes":{"name":"Candace Prosacco","age":28,"location":"Johnson City"}},{"attributes":{"name":"Brenna Conroy","age":61,"location":"Port Robbie"}},{"attributes":{"name":"Jodi Kovacek","age":19,"location":"South Jordyn"}},{"attributes":{"name":"Sonya West","age":23,"location":"Carson"}},{"attributes":{"name":"Ocie Ondricka","age":54,"location":"Alishaside"}},{"attributes":{"name":"Kenneth Walter","age":28,"location":"Nashland"}},{"attributes":{"name":"Megan Pfannerstill","age":56,"location":"Wheaton"}},{"attributes":{"name":"Arnold Connelly","age":63,"location":"Port Rosatown"}},{"attributes":{"name":"Miss Maximillia Greenfelder I","age":52,"location":"Aufderharberg"}},{"attributes":{"name":"Tom Romaguera","age":42,"location":"Lynchfurt"}},{"attributes":{"name":"Gina Donnelly","age":71,"location":"South Gabriella"}},{"attributes":{"name":"Twila Adams","age":52,"location":"Fort Bryon"}},{"attributes":{"name":"Marc Ferry V","age":80,"location":"Swiftshire"}},{"attributes":{"name":"Liam Lind","age":59,"location":"Lake Duane"}},{"attributes":{"name":"Rahsaan Lesch III","age":24,"location":"Fort Florian"}},{"attributes":{"name":"Jon Dickens","age":30,"location":"Larkincester"}},{"attributes":{"name":"Shari Turcotte","age":54,"location":"Kristaberg"}},{"attributes":{"name":"Perry Dickens","age":65,"location":"North Groverborough"}},{"attributes":{"name":"Dr. Nick Turner","age":74,"location":"Schambergerhaven"}},{"attributes":{"name":"Faith Russel","age":25,"location":"Hartford"}},{"attributes":{"name":"Marcelino Koepp","age":58,"location":"Fort Jocelyn"}},{"attributes":{"name":"Mr. Ilene Gerlach","age":43,"location":"Stillwater"}},{"attributes":{"name":"Ken Maggio","age":65,"location":"Considinefurt"}},{"attributes":{"name":"Beatrice Langosh","age":31,"location":"Emmerichchester"}},{"attributes":{"name":"Minnie Gibson","age":45,"location":"Hoegerborough"}},{"attributes":{"name":"Tiffany Johnston","age":30,"location":"South Rollin"}},{"attributes":{"name":"Lafayette Leannon","age":43,"location":"Port Laurieside"}},{"attributes":{"name":"Sadie Waelchi-Steuber I","age":57,"location":"Homenickmouth"}},{"attributes":{"name":"Verna Crist Jr.","age":31,"location":"Pembroke Pines"}},{"attributes":{"name":"Neva Morissette","age":21,"location":"Stantonstad"}},{"attributes":{"name":"Wade O'Keefe PhD","age":76,"location":"Las Vegas"}},{"attributes":{"name":"Dr. Chris Johnson","age":59,"location":"Favianboro"}},{"attributes":{"name":"Alexis Tillman","age":36,"location":"Marinaport"}},{"attributes":{"name":"Owen Dare","age":51,"location":"North Ludieberg"}},{"attributes":{"name":"Jean Koss DDS","age":20,"location":"East Arnoldochester"}},{"attributes":{"name":"Jerald Cummerata","age":35,"location":"Jupiter"}},{"attributes":{"name":"Glen Waelchi","age":18,"location":"Brannonhaven"}},{"attributes":{"name":"Adrienne Sauer","age":50,"location":"Des Moines"}},{"attributes":{"name":"Delores Stokes","age":36,"location":"West Madalineshire"}},{"attributes":{"name":"Horace Dickens","age":43,"location":"West Aliviabury"}},{"attributes":{"name":"Reba Crona","age":73,"location":"O'Reillyport"}},{"attributes":{"name":"Dr. Abraham Nitzsche PhD","age":72,"location":"Sauerboro"}},{"attributes":{"name":"Willis Windler","age":47,"location":"New Tyrafort"}},{"attributes":{"name":"Wesley Tremblay","age":42,"location":"Fort Marjorie"}},{"attributes":{"name":"Dorcas Casper","age":38,"location":"Napa"}},{"attributes":{"name":"Katherine Heller MD","age":66,"location":"Corwinport"}},{"attributes":{"name":"Mr. Nova Schmeler IV","age":23,"location":"North Lora"}},{"attributes":{"name":"Rose Ward-Russel","age":69,"location":"Lake Ernestina"}},{"attributes":{"name":"Angelina Russel","age":37,"location":"Aurora"}},{"attributes":{"name":"Mr. Hipolito Harber","age":22,"location":"New Norval"}},{"attributes":{"name":"Mrs. Ethel Dicki","age":59,"location":"Jessyland"}},{"attributes":{"name":"Amber Gleichner","age":50,"location":"Fort Oleta"}},{"attributes":{"name":"Reginald Zemlak","age":18,"location":"Lehigh Acres"}},{"attributes":{"name":"Mr. Jeff Turner","age":46,"location":"Passaic"}},{"attributes":{"name":"Mr. Kendall Daugherty","age":51,"location":"South Jaronmouth"}},{"attributes":{"name":"Myrtle Rippin","age":75,"location":"Nedratown"}},{"attributes":{"name":"Lillie Daugherty","age":67,"location":"Macon-Bibb County"}},{"attributes":{"name":"Eddie Fritsch","age":41,"location":"West Percival"}},{"attributes":{"name":"Rosemary Yundt","age":48,"location":"Port Bertram"}},{"attributes":{"name":"Dr. Diane Marquardt","age":59,"location":"Moshefield"}},{"attributes":{"name":"Jason Toy","age":74,"location":"Troyfurt"}},{"attributes":{"name":"Mrs. Jonathan VonRueden","age":68,"location":"South Josephineton"}},{"attributes":{"name":"Marilyn Ortiz MD","age":61,"location":"Fort Eliane"}},{"attributes":{"name":"Lynn Wyman Sr.","age":19,"location":"North Nikkomouth"}},{"attributes":{"name":"Nola Gusikowski","age":78,"location":"North Jacksonstead"}},{"attributes":{"name":"Virgil Lind","age":56,"location":"San Marcos"}},{"attributes":{"name":"Bruce Renner Jr.","age":56,"location":"Raleigh"}},{"attributes":{"name":"Teri Buckridge","age":39,"location":"Sammamish"}},{"attributes":{"name":"Jaime Hagenes","age":69,"location":"Walterfurt"}},{"attributes":{"name":"Jacquelyn Vandervort PhD","age":61,"location":"Covina"}},{"attributes":{"name":"Pedro Crist","age":63,"location":"Joplin"}},{"attributes":{"name":"Lydia McDermott I","age":57,"location":"Wittingport"}},{"attributes":{"name":"Braden Kautzer","age":53,"location":"Leannonland"}},{"attributes":{"name":"Ruby Rath","age":25,"location":"Cotyside"}},{"attributes":{"name":"Robbie Bahringer","age":76,"location":"New Alyce"}},{"attributes":{"name":"Dominick Zulauf","age":18,"location":"Tamarachester"}},{"attributes":{"name":"Cindy O'Keefe","age":64,"location":"Hattiesburg"}},{"attributes":{"name":"Lawrence Kuphal","age":39,"location":"Kiratown"}},{"attributes":{"name":"Charlene Walsh","age":56,"location":"New Dayana"}},{"attributes":{"name":"Carmel Hauck","age":64,"location":"New Bettie"}},{"attributes":{"name":"Gabriel Hammes","age":54,"location":"North Kathlyn"}},{"attributes":{"name":"Nella Parisian V","age":49,"location":"Fall River"}},{"attributes":{"name":"Myriam Koepp","age":22,"location":"East Candelario"}},{"attributes":{"name":"Myra Bernhard","age":28,"location":"Mullerville"}},{"attributes":{"name":"Abel Rosenbaum","age":73,"location":"Port Elisa"}},{"attributes":{"name":"Francisco Grimes","age":78,"location":"Christaville"}},{"attributes":{"name":"Mary Pacocha","age":40,"location":"Sadyebury"}},{"attributes":{"name":"Miss Pat Considine","age":31,"location":"Schinnerstad"}},{"attributes":{"name":"Cesar Prosacco","age":61,"location":"Eduardoberg"}},{"attributes":{"name":"Wayne Towne","age":22,"location":"South Vidal"}},{"attributes":{"name":"Alford Schoen","age":39,"location":"Lake Florencemouth"}},{"attributes":{"name":"Charlotte Armstrong","age":30,"location":"Othofort"}},{"attributes":{"name":"Royce Sipes","age":23,"location":"South Chelseaton"}},{"attributes":{"name":"Everette Rohan","age":28,"location":"North Ambrose"}},{"attributes":{"name":"Luis Schamberger","age":39,"location":"Amaraborough"}},{"attributes":{"name":"Alice Emard","age":79,"location":"Raymundofurt"}},{"attributes":{"name":"Lance Greenholt","age":52,"location":"Lindgrenchester"}},{"attributes":{"name":"Juana Block","age":65,"location":"Jastboro"}},{"attributes":{"name":"Lana Blanda","age":37,"location":"Antioch"}},{"attributes":{"name":"Marjolaine Leffler","age":74,"location":"New Zechariah"}},{"attributes":{"name":"Paul Legros","age":76,"location":"East Lonny"}},{"attributes":{"name":"Dawn Hane","age":33,"location":"West Jonview"}},{"attributes":{"name":"Walter Nicolas","age":41,"location":"New Monroe"}},{"attributes":{"name":"Michael Hintz","age":23,"location":"West Caterina"}},{"attributes":{"name":"Tyrone Haag","age":66,"location":"New Syble"}},{"attributes":{"name":"Ms. Rosemary Abshire","age":64,"location":"Port Boristown"}},{"attributes":{"name":"Tracey Effertz","age":68,"location":"Aufderharborough"}},{"attributes":{"name":"Fritz Simonis","age":31,"location":"East Americacester"}},{"attributes":{"name":"Zola Daniel DVM","age":33,"location":"Whiteport"}},{"attributes":{"name":"Dr. Tiffany Paucek","age":39,"location":"New Lacey"}},{"attributes":{"name":"Alexander Becker","age":61,"location":"South Biankafield"}},{"attributes":{"name":"Tricia Runolfsson","age":63,"location":"Lake Hansstead"}},{"attributes":{"name":"Homer Abbott","age":68,"location":"Apopka"}},{"attributes":{"name":"Elbert Hermiston","age":40,"location":"Bristol"}},{"attributes":{"name":"Marsha Pagac","age":67,"location":"Derekcester"}},{"attributes":{"name":"Hilario Lesch","age":60,"location":"Tustin"}},{"attributes":{"name":"Junior Rosenbaum Jr.","age":40,"location":"East Beaulah"}},{"attributes":{"name":"Mr. Jean Brekke","age":49,"location":"Lake Clarissa"}},{"attributes":{"name":"Marta Lakin","age":71,"location":"Mafaldaview"}},{"attributes":{"name":"Miss Rene Friesen I","age":76,"location":"North Miami"}},{"attributes":{"name":"Tiara Effertz","age":38,"location":"South Hill"}},{"attributes":{"name":"Karolann VonRueden","age":64,"location":"Michaelfort"}},{"attributes":{"name":"Maida Kunde","age":28,"location":"Wymanland"}},{"attributes":{"name":"Jared Russel","age":51,"location":"East Geo"}},{"attributes":{"name":"Luz Lueilwitz","age":20,"location":"Lilianeborough"}},{"attributes":{"name":"Dr. Abbigail Kreiger","age":66,"location":"Nellatown"}},{"attributes":{"name":"Winifred Hane","age":71,"location":"Bufordworth"}},{"attributes":{"name":"Alma Runolfsdottir","age":34,"location":"East Hassanchester"}},{"attributes":{"name":"Karl Hettinger","age":20,"location":"La Habra"}},{"attributes":{"name":"Juana Farrell","age":45,"location":"Port Stewart"}},{"attributes":{"name":"Gudrun Auer","age":18,"location":"Clarksville"}},{"attributes":{"name":"Antonietta Ferry","age":39,"location":"New Carolyn"}},{"attributes":{"name":"Brad Torp","age":62,"location":"Blockcester"}},{"attributes":{"name":"Cassandre Grant","age":28,"location":"Wuckertport"}},{"attributes":{"name":"Emanuel Willms","age":63,"location":"New Caesarboro"}},{"attributes":{"name":"Ewell Mertz","age":24,"location":"East Charlottebury"}},{"attributes":{"name":"Hilario Adams","age":48,"location":"Henrietteview"}},{"attributes":{"name":"Isabell Wiza PhD","age":36,"location":"New Joshuahboro"}},{"attributes":{"name":"Cassandra Hegmann","age":36,"location":"Mount Vernon"}},{"attributes":{"name":"Warren Wolf","age":54,"location":"Wilfredoshire"}},{"attributes":{"name":"Chaya Von","age":23,"location":"South Bentontown"}},{"attributes":{"name":"Jessica Jerde","age":74,"location":"North Sandrinebury"}},{"attributes":{"name":"Jimmie Gleichner","age":18,"location":"Battle Creek"}},{"attributes":{"name":"Isabell Schneider","age":61,"location":"Vivienfurt"}},{"attributes":{"name":"Cesar Kovacek","age":80,"location":"North Jaceyport"}},{"attributes":{"name":"Ryan Kiehn","age":72,"location":"Fort Hipolitofurt"}},{"attributes":{"name":"Inez Greenholt","age":56,"location":"Evansville"}},{"attributes":{"name":"Mrs. Harriet Cronin","age":40,"location":"West Alfredafurt"}},{"attributes":{"name":"Mr. Roland Kub","age":67,"location":"Kadecester"}},{"attributes":{"name":"Eula McGlynn","age":67,"location":"East Marietta"}},{"attributes":{"name":"Emma Davis","age":30,"location":"Lake Zaneville"}},{"attributes":{"name":"Flavio Sawayn","age":75,"location":"New Amber"}},{"attributes":{"name":"Claude Schuppe-Walter DVM","age":56,"location":"East Constantin"}},{"attributes":{"name":"Marty Kris","age":33,"location":"Opheliatown"}},{"attributes":{"name":"Casey Daugherty","age":48,"location":"East Soledad"}},{"attributes":{"name":"Samuel Nikolaus","age":44,"location":"North Okeyfield"}},{"attributes":{"name":"Verdie Moore","age":57,"location":"O'Connellstead"}},{"attributes":{"name":"Mrs. Julia Hegmann-Abbott","age":65,"location":"New Hayley"}},{"attributes":{"name":"Zora Crona","age":30,"location":"Fort Sibylfurt"}},{"attributes":{"name":"Keyshawn Thompson DDS","age":33,"location":"Waco"}},{"attributes":{"name":"Holly Kunde","age":63,"location":"Haneton"}},{"attributes":{"name":"Andy Macejkovic","age":49,"location":"East Theresia"}},{"attributes":{"name":"Liliana Kshlerin-Renner","age":54,"location":"East Lansing"}},{"attributes":{"name":"Mr. Abdiel Klein","age":46,"location":"Port Sydni"}},{"attributes":{"name":"Mr. Bryant Hermann","age":27,"location":"West Valley City"}},{"attributes":{"name":"Mrs. Shelia Dicki","age":53,"location":"Temecula"}},{"attributes":{"name":"Dawn Tillman V","age":40,"location":"Prosaccocester"}},{"attributes":{"name":"Abigayle Ward IV","age":33,"location":"Clintonview"}},{"attributes":{"name":"Rex Veum","age":55,"location":"Goyetteshire"}},{"attributes":{"name":"Lonny Bednar","age":50,"location":"Boyleboro"}},{"attributes":{"name":"Lacy Wolff","age":64,"location":"San Mateo"}},{"attributes":{"name":"Lexie Becker","age":28,"location":"Brennonfield"}},{"attributes":{"name":"Leah Wuckert","age":63,"location":"Langoshboro"}},{"attributes":{"name":"Violet Witting","age":32,"location":"Bonita Springs"}},{"attributes":{"name":"Martine McLaughlin","age":53,"location":"Feeneystad"}},{"attributes":{"name":"Janet Lakin","age":43,"location":"Lornachester"}},{"attributes":{"name":"Garry Davis","age":33,"location":"Whiteshire"}},{"attributes":{"name":"Alford Murazik DVM","age":31,"location":"North Miltonville"}},{"attributes":{"name":"Dangelo Morissette","age":74,"location":"Lake Helene"}},{"attributes":{"name":"Heloise Wolf","age":32,"location":"East Greta"}},{"attributes":{"name":"Dominick Hayes","age":70,"location":"Kochport"}},{"attributes":{"name":"Olga Stanton III","age":42,"location":"Towson"}},{"attributes":{"name":"Melba Fritsch","age":44,"location":"Port Hardy"}},{"attributes":{"name":"Dr. Myles Renner","age":35,"location":"Cranston"}},{"attributes":{"name":"Archie Spencer","age":72,"location":"Hermantown"}},{"attributes":{"name":"Craig Ankunding I","age":25,"location":"Durganshire"}},{"attributes":{"name":"Noel Rodriguez","age":57,"location":"Destiniboro"}},{"attributes":{"name":"Ramiro Maggio","age":20,"location":"West Christopherview"}},{"attributes":{"name":"Sheila Cassin","age":74,"location":"Olympia"}},{"attributes":{"name":"Orrin Stokes","age":71,"location":"Maple Grove"}},{"attributes":{"name":"Meda Spencer","age":67,"location":"Fort Alysonshire"}},{"attributes":{"name":"Macie Reynolds","age":40,"location":"Casandraside"}},{"attributes":{"name":"Hobart Bruen","age":23,"location":"Prohaskafield"}},{"attributes":{"name":"D'angelo Tremblay","age":67,"location":"Harrisburg"}},{"attributes":{"name":"Lorene Anderson II","age":28,"location":"Macejkovicbury"}},{"attributes":{"name":"Sean Mosciski","age":25,"location":"New Halleworth"}},{"attributes":{"name":"Janis Ledner","age":34,"location":"Peabody"}},{"attributes":{"name":"Felicity Hegmann","age":55,"location":"South Turnerworth"}},{"attributes":{"name":"Christ Kessler","age":21,"location":"West Elisa"}},{"attributes":{"name":"Kendrick Frami","age":46,"location":"North Ollie"}},{"attributes":{"name":"Lina Legros Sr.","age":35,"location":"Port Christinestead"}},{"attributes":{"name":"Dr. Chaz Cruickshank MD","age":77,"location":"Lake Stephanfurt"}},{"attributes":{"name":"Jimmy Torp","age":46,"location":"Fort Emil"}},{"attributes":{"name":"Marcia Herman I","age":28,"location":"Herzogborough"}},{"attributes":{"name":"Roderick Gerhold","age":44,"location":"New Fiona"}},{"attributes":{"name":"Boyd Wuckert","age":27,"location":"East Doyle"}},{"attributes":{"name":"Edmond Keeling","age":34,"location":"Brakusfort"}},{"attributes":{"name":"Mindy Braun","age":45,"location":"Binsstead"}},{"attributes":{"name":"Dr. Ken Kuhlman","age":39,"location":"North Leabury"}},{"attributes":{"name":"Davion Ruecker","age":52,"location":"Olathe"}},{"attributes":{"name":"Meagan Emard","age":66,"location":"North Efrainberg"}},{"attributes":{"name":"Billy Mueller","age":18,"location":"East Guillermo"}},{"attributes":{"name":"Ms. Nola Orn","age":25,"location":"Leschland"}},{"attributes":{"name":"Leroy Hoppe","age":31,"location":"Freedaborough"}},{"attributes":{"name":"Lila Zulauf","age":50,"location":"Mayastead"}},{"attributes":{"name":"Jerald Toy","age":50,"location":"Fort Titusland"}},{"attributes":{"name":"Jeffrey Tillman","age":33,"location":"Kautzerport"}},{"attributes":{"name":"Kenny Thompson DVM","age":24,"location":"Rowlett"}},{"attributes":{"name":"Neal Bartell","age":47,"location":"Borermouth"}},{"attributes":{"name":"Jade Wunsch Sr.","age":43,"location":"West Darianland"}},{"attributes":{"name":"Susan Kuhlman","age":73,"location":"Oklahoma City"}},{"attributes":{"name":"Earnest Macejkovic","age":39,"location":"Lawrence"}},{"attributes":{"name":"Nestor Hane","age":47,"location":"Gradyview"}},{"attributes":{"name":"Jermaine Emmerich","age":39,"location":"Fort Louisaberg"}},{"attributes":{"name":"Katie Schoen-Beatty","age":80,"location":"San Bruno"}},{"attributes":{"name":"Ian Terry","age":25,"location":"South Savannachester"}},{"attributes":{"name":"Lula Schmitt","age":62,"location":"Lake Elenorabury"}},{"attributes":{"name":"Genevieve Kertzmann","age":72,"location":"Warren"}},{"attributes":{"name":"Eveline Collier","age":28,"location":"St. Cloud"}},{"attributes":{"name":"Emil Olson","age":41,"location":"Schowalterborough"}},{"attributes":{"name":"Glenn Reichel","age":34,"location":"Fort Cynthiachester"}},{"attributes":{"name":"Rosalie Mueller","age":18,"location":"Lake Liza"}},{"attributes":{"name":"Raphaelle Cartwright","age":78,"location":"North Janaeton"}},{"attributes":{"name":"Noah Reynolds","age":32,"location":"East Hartford"}},{"attributes":{"name":"Lazaro McClure","age":34,"location":"Moore"}},{"attributes":{"name":"Ms. Blanca Zulauf","age":64,"location":"West Lafayette"}},{"attributes":{"name":"Ray Casper","age":56,"location":"Grimesland"}},{"attributes":{"name":"Reyna Herzog","age":54,"location":"Lake Bert"}},{"attributes":{"name":"Betty Mills","age":56,"location":"Russelfort"}},{"attributes":{"name":"Morris Kilback","age":79,"location":"Greenworth"}},{"attributes":{"name":"Hector Kuhn","age":21,"location":"South Bette"}},{"attributes":{"name":"Hope Mraz","age":39,"location":"Franeckiton"}},{"attributes":{"name":"Becky Wilderman-Crist","age":26,"location":"North Las Vegas"}},{"attributes":{"name":"Sabrina Upton","age":37,"location":"North Delphafield"}},{"attributes":{"name":"Fred Harvey","age":47,"location":"Marcelworth"}},{"attributes":{"name":"Perry Littel Jr.","age":31,"location":"North Yessenia"}},{"attributes":{"name":"Krista Schulist","age":25,"location":"West Murphy"}},{"attributes":{"name":"Eula Predovic","age":63,"location":"North Stanton"}},{"attributes":{"name":"Bertrand Kunde","age":74,"location":"Waukesha"}},{"attributes":{"name":"Cecelia Carter","age":21,"location":"Port Jaceberg"}},{"attributes":{"name":"Karl Corkery-Towne","age":71,"location":"Willfield"}},{"attributes":{"name":"Sherwood Gutkowski","age":58,"location":"Los Angeles"}},{"attributes":{"name":"Maci Okuneva","age":24,"location":"Lake Leannaberg"}},{"attributes":{"name":"Josefina Franey I","age":54,"location":"South Kristopher"}},{"attributes":{"name":"Bell Hudson","age":49,"location":"Fort Laisha"}},{"attributes":{"name":"Jeffrey Goldner","age":62,"location":"Verniceland"}},{"attributes":{"name":"Grant O'Reilly","age":58,"location":"Delray Beach"}},{"attributes":{"name":"Ali Wilkinson","age":48,"location":"Kristophercester"}},{"attributes":{"name":"Jermaine Kessler-Mayert","age":19,"location":"West Leilaport"}},{"attributes":{"name":"Sidney Quigley","age":64,"location":"Jackson"}},{"attributes":{"name":"Winifred Hilpert","age":27,"location":"South Isaiasburgh"}},{"attributes":{"name":"Ms. Sallie Predovic","age":19,"location":"Ornland"}},{"attributes":{"name":"Keith Upton PhD","age":80,"location":"Fort Kayceestad"}},{"attributes":{"name":"Theresa Wunsch","age":67,"location":"Ariellehaven"}},{"attributes":{"name":"Roy Quitzon DVM","age":30,"location":"Parkerfurt"}},{"attributes":{"name":"Dayton Stark","age":77,"location":"Buddyton"}},{"attributes":{"name":"Abel Dach-Murray","age":55,"location":"North Earlenehaven"}},{"attributes":{"name":"Vita Veum","age":22,"location":"Fort Aliport"}},{"attributes":{"name":"Wilbur Carter","age":70,"location":"Osinskiborough"}},{"attributes":{"name":"Ellsworth Harvey","age":67,"location":"State College"}},{"attributes":{"name":"Shana Lowe","age":78,"location":"Weissnatfield"}},{"attributes":{"name":"Benny Kris","age":57,"location":"Renechester"}},{"attributes":{"name":"Terry Nienow","age":19,"location":"Maidastead"}},{"attributes":{"name":"Oceane Cartwright","age":20,"location":"Fort Granvilleburgh"}},{"attributes":{"name":"Mark Jacobs","age":72,"location":"Arlington Heights"}},{"attributes":{"name":"Dr. Stevie Luettgen","age":77,"location":"Lauderhill"}},{"attributes":{"name":"Chris Wiza","age":34,"location":"West Sacramento"}},{"attributes":{"name":"Vivienne Schaefer","age":47,"location":"South Neil"}},{"attributes":{"name":"Idell Heaney II","age":49,"location":"Fort Casandraworth"}},{"attributes":{"name":"Edmond Emmerich","age":23,"location":"New Johnpaulbury"}},{"attributes":{"name":"Ms. Blanca Reinger","age":28,"location":"Naperville"}},{"attributes":{"name":"Dahlia D'Amore","age":20,"location":"Lincoln"}},{"attributes":{"name":"Juston Littel","age":37,"location":"Simi Valley"}},{"attributes":{"name":"Herman Morar","age":58,"location":"Overland Park"}},{"attributes":{"name":"Gerald Huel MD","age":79,"location":"Lake Colleenmouth"}},{"attributes":{"name":"Christy Jones","age":60,"location":"North Tressieborough"}},{"attributes":{"name":"Sunny Ferry","age":42,"location":"Labadieborough"}},{"attributes":{"name":"Olaf Wunsch","age":64,"location":"Penelopeshire"}},{"attributes":{"name":"Laura Rau-Bartell","age":51,"location":"Lehnerhaven"}},{"attributes":{"name":"Guillermo Barton","age":18,"location":"Langoshfort"}},{"attributes":{"name":"Tommy Nolan PhD","age":34,"location":"New Abbyfurt"}},{"attributes":{"name":"Joy Howell","age":66,"location":"Sylviachester"}},{"attributes":{"name":"Shane Beahan","age":57,"location":"Toneyworth"}},{"attributes":{"name":"Lauren Wolf","age":31,"location":"North Leonmouth"}},{"attributes":{"name":"Cynthia Bogan","age":42,"location":"Fort Kenny"}},{"attributes":{"name":"Garrett Huel DVM","age":63,"location":"Wilmerland"}},{"attributes":{"name":"Lamar Price","age":49,"location":"West Emie"}},{"attributes":{"name":"Dr. Alfonso Bogisich","age":69,"location":"Olsonfort"}},{"attributes":{"name":"Anthony Schmidt","age":66,"location":"Brentwood"}},{"attributes":{"name":"Russell Bernhard","age":65,"location":"VonRuedenside"}},{"attributes":{"name":"Whitney Kozey DDS","age":61,"location":"Creminville"}},{"attributes":{"name":"Lucas Jacobi","age":72,"location":"Port Paul"}},{"attributes":{"name":"Gregg Parisian","age":26,"location":"Oberbrunnertown"}},{"attributes":{"name":"Christine Bailey","age":41,"location":"Clotildestead"}},{"attributes":{"name":"Dr. Ilene Jones","age":67,"location":"Waltham"}},{"attributes":{"name":"Myrtis Wisozk","age":66,"location":"Chasitymouth"}},{"attributes":{"name":"Reece Anderson","age":57,"location":"Port Lonnie"}},{"attributes":{"name":"Miss Alyssa Purdy","age":69,"location":"East Darrionton"}},{"attributes":{"name":"Taya Wisoky","age":74,"location":"East Wilhelmine"}},{"attributes":{"name":"Leonie Carroll II","age":43,"location":"Ocieport"}},{"attributes":{"name":"Margie Keebler","age":26,"location":"Bauchport"}},{"attributes":{"name":"Lucie Hermann","age":54,"location":"San Antonio"}},{"attributes":{"name":"Breana D'Amore-Mayert","age":56,"location":"Schenectady"}},{"attributes":{"name":"Mr. Lyda Williamson","age":24,"location":"Cormierport"}},{"attributes":{"name":"Breanna Abbott","age":42,"location":"Burnsville"}},{"attributes":{"name":"Alexandrea Runolfsson","age":34,"location":"Koelpinberg"}},{"attributes":{"name":"Beth Bernhard","age":44,"location":"East Dorothyview"}},{"attributes":{"name":"Kurtis Feest","age":56,"location":"East Larissa"}},{"attributes":{"name":"Lynn Hettinger","age":39,"location":"Kylieshire"}},{"attributes":{"name":"Ms. Carmela Schuster","age":64,"location":"North Marionhaven"}},{"attributes":{"name":"Frankie Bartoletti","age":54,"location":"Kiannatown"}},{"attributes":{"name":"Dr. Sammie Becker","age":41,"location":"Fort Marta"}},{"attributes":{"name":"Mckenzie Russel","age":46,"location":"Lake Isac"}},{"attributes":{"name":"Dr. Sonya Toy","age":58,"location":"Lake Antonia"}},{"attributes":{"name":"Rico Hodkiewicz","age":47,"location":"Port Elyseborough"}},{"attributes":{"name":"Mac O'Keefe","age":57,"location":"East Haskell"}},{"attributes":{"name":"Nadine Ortiz","age":25,"location":"South Chestertown"}},{"attributes":{"name":"Anahi Hammes","age":33,"location":"Schummstead"}},{"attributes":{"name":"Christina Blick","age":20,"location":"Henderson"}},{"attributes":{"name":"Daryl Trantow","age":69,"location":"Fort Ameliaton"}},{"attributes":{"name":"Dr. Jared Davis","age":29,"location":"Smithstead"}},{"attributes":{"name":"Orie Nicolas","age":19,"location":"Kendrickfurt"}},{"attributes":{"name":"Matt Brakus","age":22,"location":"South Julie"}},{"attributes":{"name":"Vincent Kilback","age":67,"location":"Fort Howard"}},{"attributes":{"name":"Cassidy Legros","age":25,"location":"East Rogers"}},{"attributes":{"name":"Shelly Parker","age":54,"location":"Fort Grace"}},{"attributes":{"name":"Araceli Green","age":32,"location":"East Ramiro"}},{"attributes":{"name":"Francis Doyle","age":47,"location":"Erichville"}},{"attributes":{"name":"Stacy Stanton-Bins","age":41,"location":"Fort Gregoriaton"}},{"attributes":{"name":"Lilla Lueilwitz","age":30,"location":"Atlanta"}},{"attributes":{"name":"Warren Bergstrom DDS","age":30,"location":"Jovanyside"}},{"attributes":{"name":"Hattie Wuckert III","age":64,"location":"East Kellen"}},{"attributes":{"name":"Isabel Thompson III","age":75,"location":"Maple Grove"}},{"attributes":{"name":"Dr. Anthony Graham V","age":62,"location":"Fort Ryderton"}},{"attributes":{"name":"Viola Witting","age":77,"location":"West Raphaelleberg"}},{"attributes":{"name":"Elena Auer","age":41,"location":"Vedashire"}},{"attributes":{"name":"Vicki Hammes","age":21,"location":"O'Keefestad"}},{"attributes":{"name":"Tonya Leuschke","age":59,"location":"Huntington Park"}},{"attributes":{"name":"Marcia Runte","age":59,"location":"Altoona"}},{"attributes":{"name":"Angelina Schamberger","age":54,"location":"Isaacworth"}},{"attributes":{"name":"Eddie Keeling","age":41,"location":"Lake Hubert"}},{"attributes":{"name":"Jeffrey Lockman","age":21,"location":"Kadinworth"}},{"attributes":{"name":"Evelyn Fritsch Sr.","age":42,"location":"Furmancester"}},{"attributes":{"name":"Mr. Ross Jaskolski","age":22,"location":"West Judgehaven"}},{"attributes":{"name":"Stuart Waelchi","age":38,"location":"Fort Rodrickchester"}},{"attributes":{"name":"Ryann Nikolaus","age":71,"location":"Novato"}},{"attributes":{"name":"Naomie Metz","age":28,"location":"Hempstead"}},{"attributes":{"name":"Virgil Stamm","age":74,"location":"VonRuedenchester"}},{"attributes":{"name":"Dr. Hettie Waelchi MD","age":40,"location":"Marilouborough"}},{"attributes":{"name":"Alessandro Heaney Sr.","age":31,"location":"New Ora"}},{"attributes":{"name":"Cecelia Kassulke","age":54,"location":"Port Tianna"}},{"attributes":{"name":"Cristobal Monahan II","age":52,"location":"West Kevinmouth"}},{"attributes":{"name":"Mr. Sam Goodwin-Zulauf","age":27,"location":"Fort Nonaborough"}},{"attributes":{"name":"Andre Lehner DDS","age":56,"location":"Emmanuelleborough"}},{"attributes":{"name":"Jay Kuvalis","age":77,"location":"Minnetonka"}},{"attributes":{"name":"Eloise Kerluke PhD","age":50,"location":"Durwardcester"}},{"attributes":{"name":"Lois Schaefer IV","age":65,"location":"Muellercester"}},{"attributes":{"name":"Miss Joe Doyle","age":73,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Keanu Walsh","age":37,"location":"East Dewaynefield"}},{"attributes":{"name":"Javonte Gulgowski","age":41,"location":"Rosinabury"}},{"attributes":{"name":"Harley Ankunding","age":68,"location":"Cheektowaga"}},{"attributes":{"name":"Everett Mayert","age":62,"location":"Collinscester"}},{"attributes":{"name":"Terence Adams","age":65,"location":"Deonborough"}},{"attributes":{"name":"Jana Ritchie II","age":23,"location":"Simonisport"}},{"attributes":{"name":"Orville Murazik","age":52,"location":"South Kayleighfurt"}},{"attributes":{"name":"Rickey Oberbrunner","age":50,"location":"East Rodolfo"}},{"attributes":{"name":"Weston Farrell","age":75,"location":"Fort Collins"}},{"attributes":{"name":"Michaela Hermann","age":28,"location":"Port Percyview"}},{"attributes":{"name":"Mr. Alton Schiller","age":38,"location":"Fort Enola"}},{"attributes":{"name":"Johnnie Towne-Romaguera","age":63,"location":"West Palm Beach"}},{"attributes":{"name":"Bertha Hickle","age":80,"location":"Sawaynshire"}},{"attributes":{"name":"Jacynthe Fisher","age":23,"location":"Adaburgh"}},{"attributes":{"name":"Guy Brown","age":23,"location":"South Lolita"}},{"attributes":{"name":"Myron Luettgen II","age":57,"location":"Wardfurt"}},{"attributes":{"name":"Dixie Schuppe IV","age":60,"location":"East Nelsburgh"}},{"attributes":{"name":"Lana Roob","age":79,"location":"East Jedediahborough"}},{"attributes":{"name":"Carol Stehr","age":53,"location":"New Alaynaberg"}},{"attributes":{"name":"Jody Lind","age":39,"location":"East Delphine"}},{"attributes":{"name":"Richard Morissette","age":68,"location":"Fort Reba"}},{"attributes":{"name":"Martin Stanton","age":18,"location":"Port Wilmertown"}},{"attributes":{"name":"Hope Conroy","age":22,"location":"North Yeseniastad"}},{"attributes":{"name":"Dax Franecki","age":61,"location":"Weimannberg"}},{"attributes":{"name":"Marcelino Goodwin","age":54,"location":"Lake Madysonton"}},{"attributes":{"name":"Nina Hodkiewicz","age":23,"location":"New Muhammad"}},{"attributes":{"name":"Lottie Leannon-Abernathy","age":53,"location":"Terryhaven"}},{"attributes":{"name":"Hope Hirthe","age":29,"location":"Fort Kirsten"}},{"attributes":{"name":"Tami Marks","age":47,"location":"Rohanburgh"}},{"attributes":{"name":"Frances Nicolas","age":38,"location":"Rohnert Park"}},{"attributes":{"name":"Iliana Rowe Sr.","age":47,"location":"Metairie"}},{"attributes":{"name":"Isaias DuBuque","age":63,"location":"San Diego"}},{"attributes":{"name":"Miss Gertrude Stanton","age":32,"location":"Levittown"}},{"attributes":{"name":"Jacquelyn Shanahan","age":38,"location":"Vacaville"}},{"attributes":{"name":"Peyton Blanda","age":46,"location":"Weissnatchester"}},{"attributes":{"name":"Jan Ward","age":60,"location":"East Luraburgh"}},{"attributes":{"name":"Lester Larkin","age":62,"location":"North Aylamouth"}},{"attributes":{"name":"Vincent Wyman DVM","age":59,"location":"Cypress"}},{"attributes":{"name":"Florence Gibson","age":26,"location":"Clementinaborough"}},{"attributes":{"name":"Leland Hansen","age":51,"location":"North Shanie"}},{"attributes":{"name":"Mrs. Felicity Jerde","age":61,"location":"Gastonia"}},{"attributes":{"name":"Dianna Cormier","age":49,"location":"Torphybury"}},{"attributes":{"name":"Hollie Mraz","age":27,"location":"Halvorsonville"}},{"attributes":{"name":"Hilton Sauer","age":70,"location":"East Jarenboro"}},{"attributes":{"name":"Amani Schuster","age":33,"location":"Metzworth"}},{"attributes":{"name":"Monique Champlin","age":26,"location":"Powlowskichester"}},{"attributes":{"name":"Terri Ward","age":70,"location":"Connerboro"}},{"attributes":{"name":"Harold Lehner","age":31,"location":"Hialeah"}},{"attributes":{"name":"Terri Boehm","age":29,"location":"West Gretchenville"}},{"attributes":{"name":"Karen Conroy I","age":40,"location":"Hassiemouth"}},{"attributes":{"name":"Ahmed Crooks","age":72,"location":"East Everett"}},{"attributes":{"name":"Marcella Okuneva","age":36,"location":"New Kodyfield"}},{"attributes":{"name":"Marvin Green","age":21,"location":"New Alexisbury"}},{"attributes":{"name":"Rudolph VonRueden","age":29,"location":"Schultzborough"}},{"attributes":{"name":"Ervin Boyer","age":52,"location":"Littelhaven"}},{"attributes":{"name":"Jacquelyn Koch","age":73,"location":"Denesikburgh"}},{"attributes":{"name":"Eusebio Abernathy","age":64,"location":"Nolanberg"}},{"attributes":{"name":"Yvette McClure","age":42,"location":"Temple"}},{"attributes":{"name":"Miss Gabrielle Heaney","age":36,"location":"Lake Quincyberg"}},{"attributes":{"name":"Arturo Kreiger","age":50,"location":"Florence-Graham"}},{"attributes":{"name":"Kimberly Langworth","age":43,"location":"Christshire"}},{"attributes":{"name":"Eric Connelly","age":59,"location":"Beierton"}},{"attributes":{"name":"Sarah Kovacek","age":34,"location":"Eulahfurt"}},{"attributes":{"name":"Bill Kautzer","age":51,"location":"Port Javierstead"}},{"attributes":{"name":"Vicki Jaskolski","age":32,"location":"South Peggie"}},{"attributes":{"name":"Oral Turner-Borer","age":56,"location":"Korymouth"}},{"attributes":{"name":"Harriet Roberts","age":24,"location":"Enterprise"}},{"attributes":{"name":"Dr. Ola Dietrich","age":53,"location":"Coachella"}},{"attributes":{"name":"Eldridge Boehm","age":69,"location":"Kossfurt"}},{"attributes":{"name":"Carrie Heidenreich","age":34,"location":"San Marcos"}},{"attributes":{"name":"Clint Pollich","age":79,"location":"Toledo"}},{"attributes":{"name":"Dr. Boyd McLaughlin","age":75,"location":"Petaluma"}},{"attributes":{"name":"Emmanuelle Schaden III","age":64,"location":"Margarettamouth"}},{"attributes":{"name":"Mrs. Charlotte Legros V","age":60,"location":"North Ozella"}},{"attributes":{"name":"Carolanne Runte","age":63,"location":"Luzworth"}},{"attributes":{"name":"Jany Erdman","age":79,"location":"South Katelynfield"}},{"attributes":{"name":"Tony Kihn","age":25,"location":"Erickhaven"}},{"attributes":{"name":"Sophie Kirlin","age":21,"location":"Corrinestead"}},{"attributes":{"name":"Peggie White","age":24,"location":"Phoenix"}},{"attributes":{"name":"Dr. Lacy Friesen","age":73,"location":"Homenickmouth"}},{"attributes":{"name":"Noel Becker PhD","age":35,"location":"Lake Leonorchester"}},{"attributes":{"name":"Shane Kautzer","age":26,"location":"Lake Glenda"}},{"attributes":{"name":"Ivan McDermott","age":38,"location":"New Nicklaus"}},{"attributes":{"name":"Brendan Bartoletti","age":35,"location":"Round Rock"}},{"attributes":{"name":"Sidney Willms","age":19,"location":"Burbank"}},{"attributes":{"name":"Carol Robel DDS","age":49,"location":"Lake Jake"}},{"attributes":{"name":"Andy Donnelly Jr.","age":25,"location":"Eldridgestad"}},{"attributes":{"name":"Dustin Carroll","age":41,"location":"Aprilchester"}},{"attributes":{"name":"Reese Wuckert","age":60,"location":"Lake Bernhardfort"}},{"attributes":{"name":"Garland Mraz","age":72,"location":"Lake Electa"}},{"attributes":{"name":"Loyce Rosenbaum DVM","age":74,"location":"Shainaborough"}},{"attributes":{"name":"Orion Schmidt","age":54,"location":"New Antonietta"}},{"attributes":{"name":"Jennifer Kuhlman-Stracke","age":21,"location":"New Ethel"}},{"attributes":{"name":"Dallas Hilll","age":42,"location":"Dickinsonberg"}},{"attributes":{"name":"Perry VonRueden","age":71,"location":"Spring"}},{"attributes":{"name":"Katherine Mills","age":52,"location":"West Kayden"}},{"attributes":{"name":"Joaquin Kerluke","age":73,"location":"New Rylan"}},{"attributes":{"name":"Jorge Ankunding","age":48,"location":"New Alworth"}},{"attributes":{"name":"William O'Conner","age":56,"location":"Weymouth Town"}},{"attributes":{"name":"Miss Concepcion Smith","age":49,"location":"Eviecester"}},{"attributes":{"name":"Marquise Auer","age":47,"location":"Sioux Falls"}},{"attributes":{"name":"Craig Dicki","age":47,"location":"Kassulkebury"}},{"attributes":{"name":"Verna Jacobs","age":21,"location":"Lake Birdiefield"}},{"attributes":{"name":"Baylee Swaniawski PhD","age":42,"location":"Zionfield"}},{"attributes":{"name":"Lorenzo Spinka","age":40,"location":"Fort Ricky"}},{"attributes":{"name":"Johnathan O'Connell Jr.","age":35,"location":"East Dedrickfort"}},{"attributes":{"name":"Aiyana Koss","age":40,"location":"Rutherfordstead"}},{"attributes":{"name":"Estrella Oberbrunner","age":79,"location":"Port Shirleybury"}},{"attributes":{"name":"Bernadine Blanda","age":59,"location":"Schadenberg"}},{"attributes":{"name":"Mr. Johnny Koss","age":34,"location":"New Gabe"}},{"attributes":{"name":"Muriel Schaden","age":33,"location":"Stillwater"}},{"attributes":{"name":"Yolanda Wiegand","age":53,"location":"West Erika"}},{"attributes":{"name":"Sharon Jones IV","age":38,"location":"South Maryse"}},{"attributes":{"name":"Estrella Wintheiser","age":22,"location":"Fort Laneyfield"}},{"attributes":{"name":"Oscar Steuber","age":36,"location":"Lake Lempiside"}},{"attributes":{"name":"Blake Bailey-Stoltenberg","age":80,"location":"East Tyriquecester"}},{"attributes":{"name":"Mr. Karl Leannon","age":20,"location":"South Tobin"}},{"attributes":{"name":"Billie Hagenes","age":54,"location":"Dougshire"}},{"attributes":{"name":"Fabian Cronin","age":25,"location":"North Ocieside"}},{"attributes":{"name":"Julian O'Kon","age":74,"location":"New Jannieworth"}},{"attributes":{"name":"Kendall Medhurst","age":61,"location":"Port Demarco"}},{"attributes":{"name":"Garfield Davis","age":73,"location":"New Scottie"}},{"attributes":{"name":"Alden Braun","age":76,"location":"Lake Aliside"}},{"attributes":{"name":"Miss Raina Skiles-MacGyver","age":63,"location":"New Braunfels"}},{"attributes":{"name":"Adan Kutch","age":39,"location":"North Staceyfurt"}},{"attributes":{"name":"Tracy Kerluke III","age":59,"location":"Stiedemannside"}},{"attributes":{"name":"Dr. Lilla Lang","age":56,"location":"Estahaven"}},{"attributes":{"name":"Calvin Bogisich","age":31,"location":"Kodyton"}},{"attributes":{"name":"Mara Wyman","age":44,"location":"Londonshire"}},{"attributes":{"name":"Tricia Schaefer","age":76,"location":"East Jerrodboro"}},{"attributes":{"name":"Mrs. Floyd Mraz","age":34,"location":"Noblesville"}},{"attributes":{"name":"Dr. Kerry Tremblay","age":48,"location":"Wyoming"}},{"attributes":{"name":"Lisa Hoppe","age":76,"location":"Fort Sean"}},{"attributes":{"name":"Neal Stracke","age":69,"location":"North Jairoland"}},{"attributes":{"name":"Saul Weissnat","age":60,"location":"South Tinachester"}},{"attributes":{"name":"Casey Haag","age":46,"location":"New Brook"}},{"attributes":{"name":"Dexter Rippin","age":33,"location":"North Anahistead"}},{"attributes":{"name":"Rhonda Schmeler","age":74,"location":"Newport Beach"}},{"attributes":{"name":"Itzel Olson","age":27,"location":"South Ernashire"}},{"attributes":{"name":"Lorenza Koepp","age":69,"location":"Palm Coast"}},{"attributes":{"name":"Adrienne Hand","age":18,"location":"Port Talon"}},{"attributes":{"name":"Raquel Becker","age":28,"location":"Lake Edna"}},{"attributes":{"name":"Sam Muller","age":22,"location":"East Alden"}},{"attributes":{"name":"Mae Sipes","age":51,"location":"Fort Vida"}},{"attributes":{"name":"Addison Olson","age":53,"location":"Marksview"}},{"attributes":{"name":"Perry Christiansen","age":67,"location":"South Martin"}},{"attributes":{"name":"Hal Lindgren","age":46,"location":"East Matteo"}},{"attributes":{"name":"Shane Moen","age":20,"location":"Fort Aileenboro"}},{"attributes":{"name":"Evan Dicki Sr.","age":47,"location":"Fort Ali"}},{"attributes":{"name":"Eula Wolf","age":38,"location":"Lake Jennyferview"}},{"attributes":{"name":"Zion Flatley Sr.","age":69,"location":"North Tinaburgh"}},{"attributes":{"name":"Dane Runolfsson","age":58,"location":"Buckfurt"}},{"attributes":{"name":"Mrs. Loretta Bechtelar","age":67,"location":"Lake Ivory"}},{"attributes":{"name":"Lisa Conroy","age":25,"location":"Ogden"}},{"attributes":{"name":"Rosalie Bahringer V","age":66,"location":"Denesikmouth"}},{"attributes":{"name":"Cindy Boyle IV","age":22,"location":"Victorland"}},{"attributes":{"name":"Delbert Jacobson MD","age":73,"location":"East Emilianoton"}},{"attributes":{"name":"Whitney Murray","age":29,"location":"Fort Cassiestad"}},{"attributes":{"name":"Roberta Leuschke","age":68,"location":"San Jacinto"}},{"attributes":{"name":"Jermain Shields","age":57,"location":"West Garry"}},{"attributes":{"name":"Archie Stamm","age":46,"location":"Adrianaboro"}},{"attributes":{"name":"Ralph Rau","age":76,"location":"Fort Jedidiah"}},{"attributes":{"name":"Mr. Zane Hahn","age":19,"location":"Port Eloisemouth"}},{"attributes":{"name":"Gabrielle McKenzie","age":33,"location":"South Darwinberg"}},{"attributes":{"name":"Aaron Boyle","age":30,"location":"Hampton"}},{"attributes":{"name":"Donnell Hauck MD","age":24,"location":"New Twila"}},{"attributes":{"name":"Miss Justine Bode MD","age":49,"location":"West Cheyenneview"}},{"attributes":{"name":"Dr. Paul Kuhlman","age":70,"location":"Bogisichboro"}},{"attributes":{"name":"Jayde Jaskolski","age":49,"location":"Lehi"}},{"attributes":{"name":"Jeremiah Barton-Medhurst","age":67,"location":"Port Myrnaworth"}},{"attributes":{"name":"Ms. Wendy Runolfsdottir","age":70,"location":"Cleveland"}},{"attributes":{"name":"Dr. Bridie Hane","age":41,"location":"East Estefania"}},{"attributes":{"name":"Morgan Anderson III","age":23,"location":"New Corrine"}},{"attributes":{"name":"Miss Americo Gulgowski","age":19,"location":"East Aurelie"}},{"attributes":{"name":"Ramon MacGyver","age":35,"location":"Dachfort"}},{"attributes":{"name":"Imelda Little","age":31,"location":"Mikebury"}},{"attributes":{"name":"Dr. Icie Fahey","age":38,"location":"Fort Edwina"}},{"attributes":{"name":"Bertha Gottlieb","age":52,"location":"Rapid City"}},{"attributes":{"name":"Miss Marcia Okuneva","age":29,"location":"Lodi"}},{"attributes":{"name":"Dr. Lance Kling","age":36,"location":"Shanahanside"}},{"attributes":{"name":"Jana Marquardt","age":31,"location":"Kennewick"}},{"attributes":{"name":"Kareem Marks","age":73,"location":"Port Thomasfurt"}},{"attributes":{"name":"Rae Witting","age":38,"location":"Dietrichberg"}},{"attributes":{"name":"Florida Barton IV","age":64,"location":"Port Tessie"}},{"attributes":{"name":"Chelsie Huel","age":21,"location":"South Chadrickport"}},{"attributes":{"name":"Erin Buckridge Jr.","age":45,"location":"The Hammocks"}},{"attributes":{"name":"Patricia Schulist","age":22,"location":"North Heleneberg"}},{"attributes":{"name":"Dr. Estelle Shanahan","age":37,"location":"Koelpintown"}},{"attributes":{"name":"Kenyatta Hilll","age":42,"location":"South Marcmouth"}},{"attributes":{"name":"Bethany Jakubowski","age":31,"location":"Frederickview"}},{"attributes":{"name":"Ferne Ziemann IV","age":80,"location":"Horacioland"}},{"attributes":{"name":"Gordon Keeling","age":42,"location":"Tamiami"}},{"attributes":{"name":"Sergio Koch","age":38,"location":"Lindhaven"}},{"attributes":{"name":"Phillip Rodriguez","age":72,"location":"Fort Lonnyboro"}},{"attributes":{"name":"Reanna Wiza DVM","age":67,"location":"Mosciskiside"}},{"attributes":{"name":"Carroll Osinski","age":23,"location":"Gulgowskiton"}},{"attributes":{"name":"Christie Keebler","age":73,"location":"North Alyshaberg"}},{"attributes":{"name":"Mr. Rex Lubowitz DVM","age":47,"location":"North Dorcas"}},{"attributes":{"name":"Melba Hackett-Aufderhar","age":28,"location":"Maryjanehaven"}},{"attributes":{"name":"Jerrold Shields","age":29,"location":"East Heidishire"}},{"attributes":{"name":"Yolanda Reilly","age":43,"location":"East Montyland"}},{"attributes":{"name":"Milan Koss II","age":60,"location":"New Aliza"}},{"attributes":{"name":"Julia Powlowski","age":43,"location":"Stanville"}},{"attributes":{"name":"Ally Lemke","age":24,"location":"East Jerrod"}},{"attributes":{"name":"Sylvia O'Keefe Sr.","age":46,"location":"Orem"}},{"attributes":{"name":"Cora Ryan","age":53,"location":"East Darron"}},{"attributes":{"name":"Mrs. Jessie Ruecker III","age":26,"location":"Erikchester"}},{"attributes":{"name":"Rhonda Quigley","age":38,"location":"Paucekworth"}},{"attributes":{"name":"Teresa Jast","age":41,"location":"Hettingerburgh"}},{"attributes":{"name":"Rosetta Metz","age":21,"location":"Favianstead"}},{"attributes":{"name":"Kian Pagac","age":45,"location":"West Brayan"}},{"attributes":{"name":"Sonya Schmeler","age":36,"location":"Jovaniview"}},{"attributes":{"name":"Dr. Sue Heidenreich","age":63,"location":"Lake Leonor"}},{"attributes":{"name":"Dave Sauer","age":35,"location":"Zulaufcester"}},{"attributes":{"name":"Sadye Morar","age":53,"location":"Parker"}},{"attributes":{"name":"Emelie Casper","age":22,"location":"Dearborn Heights"}},{"attributes":{"name":"Jessica Kutch","age":70,"location":"San Tan Valley"}},{"attributes":{"name":"Hope Muller","age":67,"location":"Rowemouth"}},{"attributes":{"name":"Brandy Denesik-Lockman","age":79,"location":"Yasminebury"}},{"attributes":{"name":"Steve Lakin","age":18,"location":"Toledo"}},{"attributes":{"name":"Kayla Kirlin","age":73,"location":"West Shanystad"}},{"attributes":{"name":"Mathew Sauer","age":33,"location":"West Bethany"}},{"attributes":{"name":"Kristian Shanahan","age":20,"location":"Hirthefurt"}},{"attributes":{"name":"Yvonne Donnelly","age":76,"location":"Fort Summer"}},{"attributes":{"name":"Angelica Erdman","age":69,"location":"Blockfort"}},{"attributes":{"name":"Marquise Larson","age":67,"location":"Vista"}},{"attributes":{"name":"Elmer Emmerich","age":70,"location":"Ebertshire"}},{"attributes":{"name":"Raheem Cronin IV","age":30,"location":"Fredyfield"}},{"attributes":{"name":"Gwen Crona","age":62,"location":"Port Elysetown"}},{"attributes":{"name":"Tomas Bayer","age":35,"location":"Lakinton"}},{"attributes":{"name":"Sue Krajcik","age":73,"location":"New Rochelle"}},{"attributes":{"name":"Ms. Rochelle Hermann-Grimes","age":52,"location":"Peterhaven"}},{"attributes":{"name":"Marilyn Daugherty","age":49,"location":"Fort Derickborough"}},{"attributes":{"name":"Jessie DuBuque","age":74,"location":"Lake Josefina"}},{"attributes":{"name":"Felicity Feeney","age":51,"location":"Cristview"}},{"attributes":{"name":"Flavio Lemke","age":70,"location":"Trystanport"}},{"attributes":{"name":"Erick Sporer","age":28,"location":"Aryannashire"}},{"attributes":{"name":"Roosevelt Okuneva","age":37,"location":"Port Margarita"}},{"attributes":{"name":"Drake Kunde","age":56,"location":"Martacester"}},{"attributes":{"name":"Rodrigo Cummings","age":44,"location":"Fort Cameron"}},{"attributes":{"name":"Gene Schiller","age":46,"location":"Borerburgh"}},{"attributes":{"name":"Alton Bode","age":40,"location":"Ondrickaworth"}},{"attributes":{"name":"Sally Wuckert","age":40,"location":"Concepcionberg"}},{"attributes":{"name":"Jesse Schimmel","age":76,"location":"Rueckerville"}},{"attributes":{"name":"Dr. Douglas MacGyver","age":75,"location":"New Eugeniaville"}},{"attributes":{"name":"Nella Walter","age":39,"location":"Bechtelarhaven"}},{"attributes":{"name":"Dagmar Rohan","age":29,"location":"West Emanuel"}},{"attributes":{"name":"Janet Graham V","age":53,"location":"Shreveport"}},{"attributes":{"name":"Murphy Satterfield","age":52,"location":"East Laishamouth"}},{"attributes":{"name":"Floyd Donnelly","age":48,"location":"Murraycester"}},{"attributes":{"name":"Joey Weimann","age":79,"location":"Sacramento"}},{"attributes":{"name":"Dr. Benny Turner","age":35,"location":"Corpus Christi"}},{"attributes":{"name":"Mrs. Tracey Langworth","age":26,"location":"Macyland"}},{"attributes":{"name":"Doris Hansen","age":56,"location":"South Della"}},{"attributes":{"name":"Mr. Kyle Wunsch","age":64,"location":"Deshaunton"}},{"attributes":{"name":"Teri Schuppe","age":80,"location":"Bowling Green"}},{"attributes":{"name":"Lambert Moen-Littel","age":18,"location":"New Carlos"}},{"attributes":{"name":"Jada Heidenreich","age":44,"location":"Fort Cicero"}},{"attributes":{"name":"Claude Mills IV","age":73,"location":"Smithambury"}},{"attributes":{"name":"Ewald Terry","age":34,"location":"Katelinstead"}},{"attributes":{"name":"Friedrich Barrows","age":31,"location":"Catalina Foothills"}},{"attributes":{"name":"Madeline Bashirian IV","age":45,"location":"North Mabelton"}},{"attributes":{"name":"Robin Muller","age":47,"location":"Yorba Linda"}},{"attributes":{"name":"Mr. Marcos Marks","age":45,"location":"Everett"}},{"attributes":{"name":"Josie Breitenberg","age":22,"location":"Eleazarport"}},{"attributes":{"name":"Lewis Reynolds","age":43,"location":"Eusebiofort"}},{"attributes":{"name":"Kristina Dietrich","age":25,"location":"Port Lori"}},{"attributes":{"name":"Ramiro Sauer","age":22,"location":"Fort Dena"}},{"attributes":{"name":"Haskell Schimmel","age":32,"location":"Howeton"}},{"attributes":{"name":"Renee Bode Sr.","age":48,"location":"Nienowshire"}},{"attributes":{"name":"Natasha Ratke","age":60,"location":"Lake Janiefort"}},{"attributes":{"name":"Fredrick Doyle","age":48,"location":"Auerbury"}},{"attributes":{"name":"Jo Cummerata","age":53,"location":"Marysville"}},{"attributes":{"name":"Barbara Kulas","age":37,"location":"West Zoe"}},{"attributes":{"name":"Dr. Lester Brekke","age":60,"location":"Gilbertoberg"}},{"attributes":{"name":"Mrs. Alberta Hickle","age":73,"location":"Delray Beach"}},{"attributes":{"name":"Alfred Gleason","age":57,"location":"Fort Yoshikofield"}},{"attributes":{"name":"Clifford Konopelski","age":49,"location":"Ferrystead"}},{"attributes":{"name":"Frederick Koch III","age":22,"location":"Jacobiburgh"}},{"attributes":{"name":"Nedra Leannon MD","age":49,"location":"Mrazfort"}},{"attributes":{"name":"Nelson Auer","age":71,"location":"Jupiter"}},{"attributes":{"name":"Curtis Gusikowski","age":26,"location":"Dearborn Heights"}},{"attributes":{"name":"Anderson Crooks","age":47,"location":"Lexington-Fayette"}},{"attributes":{"name":"Wilma Walsh","age":48,"location":"Loweport"}},{"attributes":{"name":"Garfield Schamberger","age":42,"location":"Krajcikside"}},{"attributes":{"name":"Travis Nolan","age":43,"location":"Port Cary"}},{"attributes":{"name":"Clara Hudson","age":40,"location":"Esmeraldaworth"}},{"attributes":{"name":"Geoffrey Marquardt","age":58,"location":"Tulsa"}},{"attributes":{"name":"Barrett Harris","age":52,"location":"Shyannside"}},{"attributes":{"name":"Cathy Kiehn Jr.","age":79,"location":"East Jordiboro"}},{"attributes":{"name":"Hermann Christiansen","age":45,"location":"Bowie"}},{"attributes":{"name":"Amanda Abernathy","age":60,"location":"Hartford"}},{"attributes":{"name":"Isabel Yundt","age":26,"location":"Noblesville"}},{"attributes":{"name":"Ms. Alexane McCullough","age":50,"location":"East Hulda"}},{"attributes":{"name":"Kelvin Bailey Jr.","age":38,"location":"Turcotteburgh"}},{"attributes":{"name":"Eddie Bauch","age":61,"location":"Gregoriaboro"}},{"attributes":{"name":"Warren Torphy","age":29,"location":"Collierville"}},{"attributes":{"name":"Dr. Benny Little","age":32,"location":"North Richland Hills"}},{"attributes":{"name":"Ms. Nadine Legros","age":80,"location":"Kassandracester"}},{"attributes":{"name":"Tressie Cormier","age":18,"location":"North Myrtis"}},{"attributes":{"name":"Lula Haag","age":36,"location":"Lemkefield"}},{"attributes":{"name":"Vincent Watsica PhD","age":29,"location":"South Hank"}},{"attributes":{"name":"Valerie Hahn","age":26,"location":"Boscoberg"}},{"attributes":{"name":"Marty Hilpert II","age":42,"location":"Grand Forks"}},{"attributes":{"name":"Felicia Pacocha PhD","age":59,"location":"West Magnoliahaven"}},{"attributes":{"name":"Ms. Mattie Parker","age":68,"location":"Twin Falls"}},{"attributes":{"name":"Nellie Brekke","age":55,"location":"Melisacester"}},{"attributes":{"name":"Lavon Towne","age":64,"location":"McDermottport"}},{"attributes":{"name":"Ollie Robel","age":47,"location":"Mekhifield"}},{"attributes":{"name":"Alvin Upton","age":74,"location":"Davisstead"}},{"attributes":{"name":"Isabel Breitenberg Jr.","age":27,"location":"South Jordan"}},{"attributes":{"name":"Andre Nienow","age":24,"location":"Arvillafurt"}},{"attributes":{"name":"Ottilie Armstrong","age":70,"location":"North Cornellstead"}},{"attributes":{"name":"Mr. Violette Larkin","age":31,"location":"Patriciamouth"}},{"attributes":{"name":"Juana Larson","age":55,"location":"Duluth"}},{"attributes":{"name":"Mrs. Penny Schoen","age":31,"location":"East Everettefurt"}},{"attributes":{"name":"Cameron Larkin","age":32,"location":"New Broderickhaven"}},{"attributes":{"name":"Tressa Farrell","age":64,"location":"Oceanefort"}},{"attributes":{"name":"Donny Morissette","age":67,"location":"Ricehaven"}},{"attributes":{"name":"Rogelio Cartwright","age":28,"location":"East Wilburn"}},{"attributes":{"name":"Milton Willms IV","age":49,"location":"Davisburgh"}},{"attributes":{"name":"Dave Feest","age":37,"location":"Port Tina"}},{"attributes":{"name":"Alene Schmeler","age":64,"location":"Perth Amboy"}},{"attributes":{"name":"Gerda Haley","age":35,"location":"Farrellberg"}},{"attributes":{"name":"Dr. Desiree Kutch DDS","age":49,"location":"East Pedro"}},{"attributes":{"name":"David Langworth","age":35,"location":"Layton"}},{"attributes":{"name":"Abraham Franey","age":61,"location":"Marksworth"}},{"attributes":{"name":"Santina Torp","age":31,"location":"Fishers"}},{"attributes":{"name":"Jaylen Skiles","age":58,"location":"North Raphaelle"}},{"attributes":{"name":"Juliana Hilpert","age":40,"location":"Schoenchester"}},{"attributes":{"name":"Mr. Evans Grady","age":55,"location":"West Lilacester"}},{"attributes":{"name":"Cara Rau","age":24,"location":"Isobelstad"}},{"attributes":{"name":"Mr. Enrique Goyette","age":20,"location":"Bernhardport"}},{"attributes":{"name":"Nellie Koelpin","age":32,"location":"Lake Crawford"}},{"attributes":{"name":"Mae Botsford","age":71,"location":"Fort Keegan"}},{"attributes":{"name":"Miss Terri Bogan","age":41,"location":"Powlowskihaven"}},{"attributes":{"name":"Drake Okuneva","age":68,"location":"Fort Declanborough"}},{"attributes":{"name":"Rodney Huel","age":78,"location":"East Rosalyn"}},{"attributes":{"name":"Renee Barton","age":29,"location":"Little Rock"}},{"attributes":{"name":"Armando Tremblay","age":56,"location":"Wunschstead"}},{"attributes":{"name":"Sonja Upton","age":33,"location":"Botsfordview"}},{"attributes":{"name":"Kelly Nitzsche","age":22,"location":"Lake Mozellville"}},{"attributes":{"name":"Celia Ryan","age":79,"location":"Huntington Beach"}},{"attributes":{"name":"Mrs. Linda Wyman","age":74,"location":"Gleasonfurt"}},{"attributes":{"name":"Glen Dickinson","age":56,"location":"Hempstead"}},{"attributes":{"name":"Connie Lehner","age":75,"location":"Verniceport"}},{"attributes":{"name":"Pete Harris DDS","age":29,"location":"Zboncakside"}},{"attributes":{"name":"Misael Watsica IV","age":56,"location":"Thompsonworth"}},{"attributes":{"name":"Lorenz Lesch PhD","age":21,"location":"Lake Noemie"}},{"attributes":{"name":"Manuel Braun-Corkery","age":42,"location":"South Princessfort"}},{"attributes":{"name":"Kiera Walker","age":22,"location":"Isidroworth"}},{"attributes":{"name":"Hal Pollich","age":33,"location":"Colton"}},{"attributes":{"name":"Edgar Wunsch I","age":46,"location":"Nitzscheport"}},{"attributes":{"name":"Toby Von","age":46,"location":"North Highlands"}},{"attributes":{"name":"Evie Larkin","age":66,"location":"Cerritos"}},{"attributes":{"name":"Kristy Bogan-Bartoletti","age":41,"location":"East Arturoberg"}},{"attributes":{"name":"Corey Kerluke","age":36,"location":"Armandville"}},{"attributes":{"name":"Sophie Kozey III","age":49,"location":"West Abdullah"}},{"attributes":{"name":"Dr. Christian Grimes","age":77,"location":"Larkinborough"}},{"attributes":{"name":"Dr. Arnaldo Williamson I","age":51,"location":"Okunevaview"}},{"attributes":{"name":"Arnulfo Torp-Stiedemann","age":46,"location":"Virginiefort"}},{"attributes":{"name":"Caesar Kohler","age":34,"location":"Port Taryn"}},{"attributes":{"name":"Alexandra Wisoky","age":52,"location":"Lake Jamaal"}},{"attributes":{"name":"Elfrieda McClure","age":30,"location":"Jersey City"}},{"attributes":{"name":"Helena Herzog","age":32,"location":"Wauwatosa"}},{"attributes":{"name":"Amber Ondricka","age":57,"location":"East Prudenceland"}},{"attributes":{"name":"Garth Parisian","age":25,"location":"Pinkiestad"}},{"attributes":{"name":"Theodora Bogan","age":75,"location":"Connorborough"}},{"attributes":{"name":"Hilton O'Connell","age":66,"location":"Richmond"}},{"attributes":{"name":"Adella Purdy","age":69,"location":"West Vivianfield"}},{"attributes":{"name":"Bettie Kling-Dickinson","age":79,"location":"North Ephraimboro"}},{"attributes":{"name":"Miss Kathryne Bahringer","age":41,"location":"New Chesley"}},{"attributes":{"name":"Sheridan Rolfson","age":27,"location":"Binstown"}},{"attributes":{"name":"Ms. Janie Torphy","age":67,"location":"Kyleighside"}},{"attributes":{"name":"Roman Stoltenberg","age":55,"location":"Stammland"}},{"attributes":{"name":"Mrs. Carmela Robel","age":38,"location":"South Tierra"}},{"attributes":{"name":"Herminio Reynolds","age":60,"location":"Bernhardcester"}},{"attributes":{"name":"Libby Ruecker","age":36,"location":"North Aurelia"}},{"attributes":{"name":"Jarvis Donnelly","age":61,"location":"Fort Raphaelle"}},{"attributes":{"name":"Adrian Kub","age":80,"location":"Port Kaleyhaven"}},{"attributes":{"name":"Dr. William Schumm","age":30,"location":"East Shainashire"}},{"attributes":{"name":"Regina Halvorson","age":63,"location":"Elbertmouth"}},{"attributes":{"name":"June Hermiston","age":54,"location":"West Josianneshire"}},{"attributes":{"name":"Mr. Candida Koepp","age":19,"location":"Port Sheafort"}},{"attributes":{"name":"Nadine Erdman","age":45,"location":"New Maye"}},{"attributes":{"name":"Edwardo Bartell","age":54,"location":"Stammport"}},{"attributes":{"name":"Vivian Green MD","age":40,"location":"Linden"}},{"attributes":{"name":"Garrett Luettgen","age":20,"location":"West Ferminstad"}},{"attributes":{"name":"Dr. Faye Reichel","age":36,"location":"Fort Marcellastead"}},{"attributes":{"name":"Wesley Breitenberg","age":33,"location":"East Rod"}},{"attributes":{"name":"Tavares Kihn","age":39,"location":"West Bayleestad"}},{"attributes":{"name":"Aliza Rodriguez V","age":50,"location":"Streichhaven"}},{"attributes":{"name":"Boyd Kuhlman","age":28,"location":"Thielworth"}},{"attributes":{"name":"Alexandrea O'Conner II","age":49,"location":"Robertsfield"}},{"attributes":{"name":"Gail Lang","age":80,"location":"New Daisha"}},{"attributes":{"name":"Marielle Rodriguez","age":60,"location":"New Gunnerborough"}},{"attributes":{"name":"Marley Stanton Jr.","age":50,"location":"North Kristopherworth"}},{"attributes":{"name":"Janice Bechtelar","age":35,"location":"Jeromefield"}},{"attributes":{"name":"Anne Hyatt","age":41,"location":"Hermanview"}},{"attributes":{"name":"Kelly Hettinger-Carter","age":50,"location":"Runolfssonstead"}},{"attributes":{"name":"Mabelle Lind","age":64,"location":"West Laneborough"}},{"attributes":{"name":"Felipe Bosco I","age":62,"location":"East Roy"}},{"attributes":{"name":"Elwyn Pouros","age":40,"location":"East Kenna"}},{"attributes":{"name":"Roberta Huel","age":50,"location":"Wolffburgh"}},{"attributes":{"name":"Bobby Dibbert","age":25,"location":"Alexandrofield"}},{"attributes":{"name":"Natasha Harber","age":53,"location":"Jastshire"}},{"attributes":{"name":"Mr. Dawn Beer","age":44,"location":"Narcisostead"}},{"attributes":{"name":"Mrs. Baylee Yost","age":75,"location":"Hirtheborough"}},{"attributes":{"name":"Willie Balistreri I","age":79,"location":"Boganfield"}},{"attributes":{"name":"Mr. Fred Stokes","age":46,"location":"Tacoma"}},{"attributes":{"name":"Corey Lubowitz","age":28,"location":"Lydahaven"}},{"attributes":{"name":"Cleo Reilly","age":61,"location":"West Lafayette"}},{"attributes":{"name":"Abel Barrows","age":68,"location":"Greenholttown"}},{"attributes":{"name":"Pat Yost","age":34,"location":"Port Zoe"}},{"attributes":{"name":"Betsy Hane","age":38,"location":"Midwest City"}},{"attributes":{"name":"Dr. Myron Kuphal","age":72,"location":"Gilesmouth"}},{"attributes":{"name":"Miss Heather Keeling","age":71,"location":"Hartmannside"}},{"attributes":{"name":"Miss Laurie Mosciski","age":28,"location":"Wilfordhaven"}},{"attributes":{"name":"Keyon Bergstrom","age":56,"location":"Kunzeshire"}},{"attributes":{"name":"Abel Hand Jr.","age":23,"location":"East Ardithmouth"}},{"attributes":{"name":"Amy Stokes","age":56,"location":"New Jamilworth"}},{"attributes":{"name":"Joseph Dooley DVM","age":35,"location":"North Celestinofurt"}},{"attributes":{"name":"Mike Nienow","age":20,"location":"South Lera"}},{"attributes":{"name":"Callie Lesch","age":58,"location":"New Waynemouth"}},{"attributes":{"name":"Josianne Pacocha","age":76,"location":"Rethaland"}},{"attributes":{"name":"Ana Cruickshank","age":31,"location":"Paigehaven"}},{"attributes":{"name":"Eloy Schaefer","age":60,"location":"Fort Jeffryfort"}},{"attributes":{"name":"Corey Schmeler","age":50,"location":"Kaydenport"}},{"attributes":{"name":"Dr. Erica Fritsch","age":68,"location":"New Chelsea"}},{"attributes":{"name":"Grace Breitenberg","age":43,"location":"New Keshaun"}},{"attributes":{"name":"Dr. Keith Parisian","age":39,"location":"Fabianville"}},{"attributes":{"name":"Kaitlin Gulgowski","age":20,"location":"Klingshire"}},{"attributes":{"name":"Iva Olson","age":41,"location":"Port Heathtown"}},{"attributes":{"name":"Wiley Mueller","age":55,"location":"Jovaniborough"}},{"attributes":{"name":"Essie Klein","age":45,"location":"Hobartborough"}},{"attributes":{"name":"Anabel Koepp","age":69,"location":"Shirleyboro"}},{"attributes":{"name":"Miss Warren Walter","age":53,"location":"Traceburgh"}},{"attributes":{"name":"Cruz Lakin","age":19,"location":"West Adellaboro"}},{"attributes":{"name":"Kristina Nienow","age":51,"location":"Schillerworth"}},{"attributes":{"name":"Dr. Brady Collins","age":18,"location":"New Maribel"}},{"attributes":{"name":"Abel Cummings","age":65,"location":"Stanberg"}},{"attributes":{"name":"Ricky Okuneva","age":67,"location":"Bartellchester"}},{"attributes":{"name":"Teri Crist","age":33,"location":"Littleburgh"}},{"attributes":{"name":"Clint Hirthe","age":58,"location":"Reichelport"}},{"attributes":{"name":"Theresa Anderson","age":28,"location":"North Marcos"}},{"attributes":{"name":"Austen Yost","age":56,"location":"Torrance"}},{"attributes":{"name":"Vicky Hoeger","age":22,"location":"Port Cordeliaburgh"}},{"attributes":{"name":"Josh Feeney","age":33,"location":"Gunnerburgh"}},{"attributes":{"name":"Kristi Pollich","age":26,"location":"Lake Nathanaelland"}},{"attributes":{"name":"Arvel Feeney","age":20,"location":"New Hayley"}},{"attributes":{"name":"Lazaro Jacobs","age":55,"location":"Denver"}},{"attributes":{"name":"Terri Beahan","age":25,"location":"Port Rachelleport"}},{"attributes":{"name":"Walter Stroman","age":70,"location":"Runtefort"}},{"attributes":{"name":"Lucy Zboncak","age":29,"location":"North Hertha"}},{"attributes":{"name":"Ignacio Langworth-Turcotte","age":76,"location":"Abshiretown"}},{"attributes":{"name":"Thomas Kertzmann","age":72,"location":"Paterson"}},{"attributes":{"name":"Bradford McCullough PhD","age":21,"location":"Judyfurt"}},{"attributes":{"name":"Lincoln Huels","age":70,"location":"Schmitthaven"}},{"attributes":{"name":"Marvin Feil","age":41,"location":"Framifurt"}},{"attributes":{"name":"Luciano Bashirian","age":78,"location":"North Charleston"}},{"attributes":{"name":"Miss Deanna Schaden","age":35,"location":"Quitzonview"}},{"attributes":{"name":"Doug Sipes","age":49,"location":"West Delilah"}},{"attributes":{"name":"Eliezer Schuster","age":58,"location":"Fort Manuelchester"}},{"attributes":{"name":"Isaac Pfeffer","age":49,"location":"Hellerchester"}},{"attributes":{"name":"Ms. Tabitha Hauck DVM","age":24,"location":"Joelstead"}},{"attributes":{"name":"Leticia Collins","age":40,"location":"West Nellie"}},{"attributes":{"name":"Lowell Metz","age":32,"location":"Lake Niafurt"}},{"attributes":{"name":"Ebba Fay","age":24,"location":"Catonsville"}},{"attributes":{"name":"Arturo Goodwin","age":26,"location":"Lake Alfordfield"}},{"attributes":{"name":"Inez Labadie DVM","age":57,"location":"Fort Maceyside"}},{"attributes":{"name":"Joy Cummings","age":75,"location":"West Laury"}},{"attributes":{"name":"Audrey Altenwerth","age":44,"location":"Boristown"}},{"attributes":{"name":"Jamie Bahringer","age":72,"location":"Simeonstad"}},{"attributes":{"name":"Pablo Bartoletti","age":57,"location":"Shayneberg"}},{"attributes":{"name":"Marta Volkman-Schamberger IV","age":43,"location":"New Frederichaven"}},{"attributes":{"name":"Sandrine Schowalter","age":67,"location":"Dinomouth"}},{"attributes":{"name":"Maryann Daniel","age":69,"location":"Moenburgh"}},{"attributes":{"name":"Jamie Nikolaus","age":49,"location":"East Stanley"}},{"attributes":{"name":"Malcolm Cummerata","age":48,"location":"West Beverly"}},{"attributes":{"name":"Cleve Murazik","age":51,"location":"West Donny"}},{"attributes":{"name":"Miss Elody Jenkins","age":50,"location":"Timmothyton"}},{"attributes":{"name":"Ed Jakubowski","age":69,"location":"Buffalo Grove"}},{"attributes":{"name":"Greg King","age":50,"location":"Leolastad"}},{"attributes":{"name":"Gladys Murazik","age":61,"location":"Skilesfield"}},{"attributes":{"name":"Jeremy Cruickshank","age":68,"location":"Reynoldchester"}},{"attributes":{"name":"Stuart Funk","age":80,"location":"North Tobinbury"}},{"attributes":{"name":"Pete Gleason","age":44,"location":"Darioberg"}},{"attributes":{"name":"Ramon Johns","age":39,"location":"Lake Sydni"}},{"attributes":{"name":"Deja Grady","age":50,"location":"Hammond"}},{"attributes":{"name":"Dr. Eric Murazik","age":71,"location":"East Brycen"}},{"attributes":{"name":"Boyd Parisian","age":46,"location":"Lake Charles"}},{"attributes":{"name":"Della Feil PhD","age":65,"location":"Whitefield"}},{"attributes":{"name":"Hubert Witting MD","age":35,"location":"Toyport"}},{"attributes":{"name":"Reinhold Wehner","age":23,"location":"Devonton"}},{"attributes":{"name":"Pat Hudson","age":61,"location":"Ericaworth"}},{"attributes":{"name":"Abdiel Boehm","age":33,"location":"Country Club"}},{"attributes":{"name":"Tammy Schaefer","age":59,"location":"Haileeview"}},{"attributes":{"name":"Elisha Glover II","age":18,"location":"East Mattiefield"}},{"attributes":{"name":"Amina Goldner","age":77,"location":"Blacksburg"}},{"attributes":{"name":"Greg Jast","age":39,"location":"East Adelle"}},{"attributes":{"name":"Jennifer Schaden","age":44,"location":"Ames"}},{"attributes":{"name":"Gordon Pouros","age":70,"location":"West Demetrisstead"}},{"attributes":{"name":"Grace DuBuque","age":22,"location":"East Baileeboro"}},{"attributes":{"name":"Darryl Russel","age":35,"location":"Lake Erik"}},{"attributes":{"name":"Marian Lemke","age":28,"location":"Fort D'angeloton"}},{"attributes":{"name":"Lela Lindgren","age":34,"location":"Cindyworth"}},{"attributes":{"name":"Benny Bruen","age":75,"location":"Santa Fe"}},{"attributes":{"name":"Patsy Wehner","age":33,"location":"Lake Alberto"}},{"attributes":{"name":"Tiffany Toy","age":34,"location":"Kertzmannberg"}},{"attributes":{"name":"Miss Isom Rau-Grimes","age":33,"location":"Korystad"}},{"attributes":{"name":"Harriet Boehm PhD","age":31,"location":"Fredport"}},{"attributes":{"name":"Tommie Schinner","age":49,"location":"Loristad"}},{"attributes":{"name":"Ervin Harber","age":53,"location":"Beauland"}},{"attributes":{"name":"Luz Runolfsdottir-Hartmann","age":38,"location":"Dareview"}},{"attributes":{"name":"Maribel Labadie","age":58,"location":"West Dario"}},{"attributes":{"name":"Mr. Desiree Veum Sr.","age":42,"location":"Tanyachester"}},{"attributes":{"name":"Ismael Runte","age":61,"location":"East Friedaside"}},{"attributes":{"name":"Joel Champlin","age":32,"location":"East Audrey"}},{"attributes":{"name":"Terence Turcotte","age":29,"location":"Grand Island"}},{"attributes":{"name":"Dr. Philip Ferry","age":65,"location":"Lolabury"}},{"attributes":{"name":"Jeremy Hettinger","age":26,"location":"Lake Logan"}},{"attributes":{"name":"Emanuel McClure","age":41,"location":"South Ernieworth"}},{"attributes":{"name":"Henrietta Boehm","age":54,"location":"Gibsonstad"}},{"attributes":{"name":"Nichole Conroy","age":19,"location":"Kendall"}},{"attributes":{"name":"Erik McClure","age":26,"location":"North Urbanborough"}},{"attributes":{"name":"Jana MacGyver","age":52,"location":"Rainaland"}},{"attributes":{"name":"Hollis Blick","age":33,"location":"Linneaville"}},{"attributes":{"name":"Tyrique Braun","age":73,"location":"Franklin"}},{"attributes":{"name":"Vinnie Lehner Sr.","age":21,"location":"South Makenna"}},{"attributes":{"name":"Darrel Senger","age":51,"location":"Kohlerport"}},{"attributes":{"name":"Adolfo Senger","age":57,"location":"Schadenboro"}},{"attributes":{"name":"Kevin Rice","age":38,"location":"Arnoldside"}},{"attributes":{"name":"Ulises Bernier","age":34,"location":"Wilhelmworth"}},{"attributes":{"name":"Remington Walsh","age":43,"location":"Fort Luisfield"}},{"attributes":{"name":"Candace McKenzie","age":78,"location":"Dillonmouth"}},{"attributes":{"name":"Miss Alberto Luettgen","age":25,"location":"West Wilson"}},{"attributes":{"name":"Nellie Heller","age":35,"location":"Juanacester"}},{"attributes":{"name":"Matteo Kihn-Hansen","age":33,"location":"New Boydport"}},{"attributes":{"name":"Lloyd Breitenberg","age":46,"location":"New Tarynburgh"}},{"attributes":{"name":"Mathew Weimann","age":71,"location":"Lake Eli"}},{"attributes":{"name":"Kailee Hintz","age":69,"location":"Lake April"}},{"attributes":{"name":"Mr. Asa Becker","age":27,"location":"Fond du Lac"}},{"attributes":{"name":"Jacklyn Heaney","age":32,"location":"Port Eribertocester"}},{"attributes":{"name":"Warren Blanda","age":68,"location":"North Darion"}},{"attributes":{"name":"Van Stoltenberg","age":36,"location":"New Amelymouth"}},{"attributes":{"name":"Cynthia Funk","age":63,"location":"Homenickcester"}},{"attributes":{"name":"Diana Ritchie","age":37,"location":"Port Katlynnworth"}},{"attributes":{"name":"Dr. Henry Huels","age":64,"location":"New Linwood"}},{"attributes":{"name":"Krystel Conroy","age":43,"location":"North Hayleyburgh"}},{"attributes":{"name":"Maurice Homenick","age":27,"location":"Lake Brayanborough"}},{"attributes":{"name":"Michael Gulgowski","age":23,"location":"Goodyear"}},{"attributes":{"name":"Frances Ledner","age":21,"location":"West Oswald"}},{"attributes":{"name":"Charlotte Kutch","age":58,"location":"West Chasitybury"}},{"attributes":{"name":"Tess Stiedemann","age":41,"location":"Charleston"}},{"attributes":{"name":"Mrs. Burnice Armstrong I","age":27,"location":"Eau Claire"}},{"attributes":{"name":"Wallace Green","age":70,"location":"South Marcellaport"}},{"attributes":{"name":"Jennifer Blick V","age":18,"location":"Schambergerton"}},{"attributes":{"name":"Donnie Beatty I","age":35,"location":"Marvinberg"}},{"attributes":{"name":"Kamille Moen","age":70,"location":"DuBuquestead"}},{"attributes":{"name":"Kaleigh Nolan III","age":30,"location":"Trompstead"}},{"attributes":{"name":"Chauncey Stokes","age":70,"location":"Costa Mesa"}},{"attributes":{"name":"Mr. Virgil Kohler Jr.","age":70,"location":"Annaliseland"}},{"attributes":{"name":"Marion Gutkowski IV","age":38,"location":"Zariaport"}},{"attributes":{"name":"Melinda Hegmann MD","age":40,"location":"North Destinystead"}},{"attributes":{"name":"Alexandra Schmitt","age":30,"location":"West Edythe"}},{"attributes":{"name":"Jerry Russel","age":45,"location":"Towneshire"}},{"attributes":{"name":"King Daugherty","age":27,"location":"Fort Harry"}},{"attributes":{"name":"Lila Pouros","age":51,"location":"Savannafort"}},{"attributes":{"name":"Gerda Kris","age":22,"location":"D'angelobury"}},{"attributes":{"name":"Ralph Kohler","age":43,"location":"Mustafaport"}},{"attributes":{"name":"Miss Hiram Bradtke","age":64,"location":"Florin"}},{"attributes":{"name":"Ethel Kshlerin","age":33,"location":"Lake Urban"}},{"attributes":{"name":"Miss Winston Kuvalis","age":37,"location":"East Candacechester"}},{"attributes":{"name":"Garrett Hagenes","age":47,"location":"Estevanstad"}},{"attributes":{"name":"Mr. Enrique Walsh","age":45,"location":"Constanceberg"}},{"attributes":{"name":"Lucio Harber","age":62,"location":"New Amani"}},{"attributes":{"name":"Richmond Considine","age":74,"location":"Port Tremayneborough"}},{"attributes":{"name":"Julie Roob","age":24,"location":"Paytonmouth"}},{"attributes":{"name":"Lela Koepp I","age":51,"location":"Fort Alessandra"}},{"attributes":{"name":"Anthony Marks","age":38,"location":"Koeppfield"}},{"attributes":{"name":"Queen Marquardt","age":30,"location":"Vedastad"}},{"attributes":{"name":"Yasmeen Homenick","age":61,"location":"Miaport"}},{"attributes":{"name":"Mrs. Felicia Dietrich","age":36,"location":"Carolannestead"}},{"attributes":{"name":"Enola Dooley-Zboncak","age":55,"location":"Port Verdie"}},{"attributes":{"name":"Arvid McClure","age":30,"location":"Durham"}},{"attributes":{"name":"Murl Wehner","age":63,"location":"Nitzschemouth"}},{"attributes":{"name":"Lindsay Ernser","age":69,"location":"Terre Haute"}},{"attributes":{"name":"Samantha White","age":57,"location":"South General"}},{"attributes":{"name":"Josephine Hoeger","age":29,"location":"New Dexterville"}},{"attributes":{"name":"Marquise Yundt","age":50,"location":"New Paige"}},{"attributes":{"name":"Megan Rutherford IV","age":35,"location":"Yoshikohaven"}},{"attributes":{"name":"Dave Klein Jr.","age":66,"location":"Burleson"}},{"attributes":{"name":"Mr. Grant Franey","age":39,"location":"East Raeganchester"}},{"attributes":{"name":"Ethan Jacobs","age":18,"location":"West Kristianborough"}},{"attributes":{"name":"Jonathan Spencer","age":63,"location":"East Wilson"}},{"attributes":{"name":"Matt Zemlak","age":57,"location":"Wymanstead"}},{"attributes":{"name":"Jacob Anderson","age":36,"location":"Lake Ferne"}},{"attributes":{"name":"Melanie Kling","age":19,"location":"Mckennahaven"}},{"attributes":{"name":"Antoinette Beier","age":30,"location":"East Emileland"}},{"attributes":{"name":"Lavina Muller","age":28,"location":"East Justusberg"}},{"attributes":{"name":"Zane Greenholt","age":56,"location":"Jesseton"}},{"attributes":{"name":"Miguel Connelly","age":58,"location":"Leannworth"}},{"attributes":{"name":"Aniyah Johnson","age":77,"location":"O'Reillyland"}},{"attributes":{"name":"Ruth Rodriguez","age":66,"location":"Kulasworth"}},{"attributes":{"name":"Charles Ryan","age":33,"location":"New Braden"}},{"attributes":{"name":"Ms. Joanne Littel","age":66,"location":"Waltham"}},{"attributes":{"name":"Payton Stamm-Walsh V","age":43,"location":"Jackelinetown"}},{"attributes":{"name":"Margarita Aufderhar","age":69,"location":"West Shanelle"}},{"attributes":{"name":"Maddison Will","age":60,"location":"East Khalil"}},{"attributes":{"name":"Buford Gerhold","age":56,"location":"Klingtown"}},{"attributes":{"name":"Ida Paucek","age":22,"location":"Larsonland"}},{"attributes":{"name":"Cristian Kohler","age":70,"location":"Deliamouth"}},{"attributes":{"name":"Rosalie Smitham","age":60,"location":"Lake Alexafurt"}},{"attributes":{"name":"Faith Jaskolski-MacGyver","age":70,"location":"West Paxton"}},{"attributes":{"name":"Tyrique Boehm","age":36,"location":"Bedford"}},{"attributes":{"name":"Shanel Buckridge","age":66,"location":"Palo Alto"}},{"attributes":{"name":"Jakob Runolfsdottir","age":75,"location":"Blancheworth"}},{"attributes":{"name":"Loy Hodkiewicz","age":45,"location":"Sabrynafurt"}},{"attributes":{"name":"Mrs. Jody Rau","age":30,"location":"Eldridgeworth"}},{"attributes":{"name":"Lynette Luettgen","age":31,"location":"South Janet"}},{"attributes":{"name":"Rhonda Osinski-Pouros","age":24,"location":"Lake Kamronchester"}},{"attributes":{"name":"Consuelo Mills","age":52,"location":"West Eliview"}},{"attributes":{"name":"Ryder Fay V","age":31,"location":"New Katrinecester"}},{"attributes":{"name":"Mrs. Marianne Heathcote","age":57,"location":"Glenview"}},{"attributes":{"name":"Toni Runolfsdottir","age":72,"location":"Port Michalemouth"}},{"attributes":{"name":"Maurice Ziemann","age":80,"location":"Peoria"}},{"attributes":{"name":"Mrs. Bulah Dickens","age":65,"location":"Brethaven"}},{"attributes":{"name":"Dawson Aufderhar","age":74,"location":"Rauton"}},{"attributes":{"name":"Mrs. Toby Gottlieb","age":66,"location":"Galveston"}},{"attributes":{"name":"Mathias Powlowski","age":55,"location":"Hendersonville"}},{"attributes":{"name":"Forrest Boyle III","age":26,"location":"North Charleston"}},{"attributes":{"name":"Jacqueline Murazik","age":40,"location":"West Prudencebury"}},{"attributes":{"name":"Janie McCullough","age":69,"location":"Port Nyah"}},{"attributes":{"name":"Enoch Raynor","age":80,"location":"Westfield"}},{"attributes":{"name":"Erica Adams","age":78,"location":"Jonboro"}},{"attributes":{"name":"Samuel Fisher","age":43,"location":"Citrus Heights"}},{"attributes":{"name":"Adelia Rodriguez-Hamill","age":34,"location":"New Zachariahside"}},{"attributes":{"name":"Arlene Hoppe","age":53,"location":"Yucaipa"}},{"attributes":{"name":"Carla Herzog","age":61,"location":"St. Louis Park"}},{"attributes":{"name":"Reyes Buckridge","age":66,"location":"Cupertino"}},{"attributes":{"name":"Terrence Cruickshank","age":64,"location":"New Rochelle"}},{"attributes":{"name":"Leo Dicki","age":33,"location":"North Lucy"}},{"attributes":{"name":"Thelma Upton","age":33,"location":"Vitatown"}},{"attributes":{"name":"Miss Sherry Hackett","age":62,"location":"Fort Lethaport"}},{"attributes":{"name":"Maurice Kunde","age":39,"location":"Dothan"}},{"attributes":{"name":"Lela Langworth DVM","age":65,"location":"Mistyport"}},{"attributes":{"name":"Ms. Howard Turcotte","age":77,"location":"Hoffman Estates"}},{"attributes":{"name":"Eula D'Amore","age":55,"location":"Juliafield"}},{"attributes":{"name":"Mr. Peter Olson","age":48,"location":"Pomona"}},{"attributes":{"name":"Kerry Champlin","age":24,"location":"Lake Havasu City"}},{"attributes":{"name":"Mrs. Lester Smitham","age":41,"location":"Colorado Springs"}},{"attributes":{"name":"Dianna Denesik","age":59,"location":"La Habra"}},{"attributes":{"name":"Jodi Bernhard","age":75,"location":"Greenfurt"}},{"attributes":{"name":"Paulette Krajcik","age":24,"location":"Fort Giovanny"}},{"attributes":{"name":"Nona Heathcote","age":29,"location":"South Paula"}},{"attributes":{"name":"Olivia Heller","age":75,"location":"Ceres"}},{"attributes":{"name":"Zoie Kertzmann","age":33,"location":"North Lenny"}},{"attributes":{"name":"Ella Stroman","age":69,"location":"Jaylenshire"}},{"attributes":{"name":"Ernest Carter","age":51,"location":"Tacoma"}},{"attributes":{"name":"Norval Moore","age":40,"location":"South Paxton"}},{"attributes":{"name":"Edwin Kub","age":62,"location":"Port Lawsonfurt"}},{"attributes":{"name":"Cortez Huels","age":73,"location":"Southfield"}},{"attributes":{"name":"Velma O'Connell","age":21,"location":"Champaign"}},{"attributes":{"name":"Sherri Schiller","age":76,"location":"Youngstown"}},{"attributes":{"name":"Oscar Walker","age":49,"location":"Hilpertcester"}},{"attributes":{"name":"Archibald Rowe","age":38,"location":"Lake Zoie"}},{"attributes":{"name":"Dallin Littel","age":31,"location":"Fort Cornelius"}},{"attributes":{"name":"Emile O'Kon","age":50,"location":"Hawthorne"}},{"attributes":{"name":"Shelley Runolfsdottir","age":73,"location":"Dunwoody"}},{"attributes":{"name":"Marjorie Zemlak","age":33,"location":"Chino Hills"}},{"attributes":{"name":"Mrs. Korey Leffler","age":37,"location":"Reggieside"}},{"attributes":{"name":"Jake Morar","age":33,"location":"Erdmanshire"}},{"attributes":{"name":"Theresa Brekke Sr.","age":53,"location":"Rosaport"}},{"attributes":{"name":"Ms. Luella Dicki","age":42,"location":"North Vernastad"}},{"attributes":{"name":"Josefa Will","age":57,"location":"East Janet"}},{"attributes":{"name":"Brandt West","age":26,"location":"Howellport"}},{"attributes":{"name":"Calista Lockman III","age":21,"location":"North Elsieville"}},{"attributes":{"name":"Ashleigh Predovic","age":54,"location":"Spokane Valley"}},{"attributes":{"name":"Neil Kulas","age":33,"location":"Winnifredstead"}},{"attributes":{"name":"Mrs. Cora MacGyver","age":23,"location":"East Jewel"}},{"attributes":{"name":"Dora Bruen","age":20,"location":"North Dariostad"}},{"attributes":{"name":"Elsa Dibbert","age":45,"location":"Fort Ruthehaven"}},{"attributes":{"name":"Mr. Bob Steuber-Bergnaum","age":19,"location":"Oberbrunnerside"}},{"attributes":{"name":"Edwin Bayer","age":41,"location":"Chayabury"}},{"attributes":{"name":"Norma Hodkiewicz","age":18,"location":"Amandaview"}},{"attributes":{"name":"Micheal Stracke","age":55,"location":"South Hunter"}},{"attributes":{"name":"Rochelle Gutmann","age":43,"location":"Port Javonte"}},{"attributes":{"name":"Dr. Giovani Mraz","age":50,"location":"Ceasarview"}},{"attributes":{"name":"Craig Harris","age":76,"location":"South Esmeraldaside"}},{"attributes":{"name":"Darla Langosh","age":66,"location":"Suffolk"}},{"attributes":{"name":"Sarah Baumbach","age":32,"location":"North Makayla"}},{"attributes":{"name":"Vanessa Breitenberg","age":28,"location":"Kelleycester"}},{"attributes":{"name":"Jazmyn Schoen","age":25,"location":"North Donnellboro"}},{"attributes":{"name":"Darian Rodriguez-Ullrich","age":68,"location":"Emmaleeton"}},{"attributes":{"name":"Malcolm Morissette","age":78,"location":"Lake Tess"}},{"attributes":{"name":"Dr. Alexandrine Hickle","age":28,"location":"Jabariborough"}},{"attributes":{"name":"Davonte Legros","age":28,"location":"Fort Oramouth"}},{"attributes":{"name":"Courtney Bosco IV","age":60,"location":"Lindstead"}},{"attributes":{"name":"Rahsaan Lubowitz V","age":40,"location":"Port Hazel"}},{"attributes":{"name":"Norwood Durgan","age":26,"location":"East Alden"}},{"attributes":{"name":"Grant Pouros","age":72,"location":"Westchester"}},{"attributes":{"name":"Cody Jast","age":65,"location":"West Keltonfurt"}},{"attributes":{"name":"Traci Hermann-Gleichner","age":44,"location":"McAllen"}},{"attributes":{"name":"Susie Rowe-Kertzmann","age":61,"location":"Lake Bradley"}},{"attributes":{"name":"Emilia Wilkinson","age":37,"location":"Coltenshire"}},{"attributes":{"name":"Dillan Lebsack","age":41,"location":"Frisco"}},{"attributes":{"name":"Stephanie Jenkins","age":23,"location":"Hanebury"}},{"attributes":{"name":"Luther Mills","age":56,"location":"Bayamon"}},{"attributes":{"name":"Carroll Hauck","age":70,"location":"Port Catharine"}},{"attributes":{"name":"Nettie Bayer","age":66,"location":"Fort Delbert"}},{"attributes":{"name":"Rudolph Goyette","age":41,"location":"South Cordiefield"}},{"attributes":{"name":"Sherman Pfannerstill IV","age":66,"location":"Kiaraburgh"}},{"attributes":{"name":"Arlene Kautzer","age":25,"location":"Stiedemannstad"}},{"attributes":{"name":"Madaline Jacobs PhD","age":36,"location":"Carterside"}},{"attributes":{"name":"Horace Kuvalis","age":59,"location":"South Elfrieda"}},{"attributes":{"name":"Margie Wilderman","age":31,"location":"DuBuquecester"}},{"attributes":{"name":"Conner Purdy","age":39,"location":"North Bethesda"}},{"attributes":{"name":"Ozella Prohaska","age":72,"location":"Port Aurelio"}},{"attributes":{"name":"Russell Reynolds","age":71,"location":"Krisfort"}},{"attributes":{"name":"Araceli Keeling","age":73,"location":"Feilhaven"}},{"attributes":{"name":"Dennis Wisoky","age":77,"location":"West Miles"}},{"attributes":{"name":"Tricia Bechtelar","age":30,"location":"Kertzmannburgh"}},{"attributes":{"name":"Berneice Block","age":66,"location":"Lessiefield"}},{"attributes":{"name":"Neal Dach","age":54,"location":"Alvertaland"}},{"attributes":{"name":"Mrs. Terry Rodriguez","age":48,"location":"Fort Ezra"}},{"attributes":{"name":"Erin Dicki V","age":61,"location":"Handburgh"}},{"attributes":{"name":"Albert Runolfsdottir MD","age":57,"location":"Port Ednaville"}},{"attributes":{"name":"Claude Davis","age":22,"location":"Sterling Heights"}},{"attributes":{"name":"Seamus Botsford","age":77,"location":"Felipeport"}},{"attributes":{"name":"Augustine Treutel","age":53,"location":"Claudiabury"}},{"attributes":{"name":"Olga Witting","age":43,"location":"Kertzmannchester"}},{"attributes":{"name":"Adam Nikolaus","age":56,"location":"Port Lulaboro"}},{"attributes":{"name":"Amelia Erdman","age":39,"location":"Pearl City"}},{"attributes":{"name":"Joy Pfannerstill","age":50,"location":"West Arvelville"}},{"attributes":{"name":"Lucille Lindgren","age":57,"location":"Altamonte Springs"}},{"attributes":{"name":"Nicole Kassulke","age":72,"location":"New Mohammed"}},{"attributes":{"name":"Lora Doyle","age":20,"location":"North Leopoldoboro"}},{"attributes":{"name":"Marguerite Welch","age":64,"location":"South Parker"}},{"attributes":{"name":"Mr. Barry Towne V","age":18,"location":"Lake Dariotown"}},{"attributes":{"name":"Geneva Rice Sr.","age":79,"location":"Walshboro"}},{"attributes":{"name":"Evan Koss","age":42,"location":"Berthamouth"}},{"attributes":{"name":"Orville Herman","age":79,"location":"East Kenton"}},{"attributes":{"name":"Arne Connelly","age":33,"location":"Braunfort"}},{"attributes":{"name":"Lila Smitham","age":68,"location":"Levittown"}},{"attributes":{"name":"Erika Gusikowski","age":34,"location":"West Crawfordview"}},{"attributes":{"name":"Stephen Spinka","age":68,"location":"Rennerboro"}},{"attributes":{"name":"Adrienne Yundt IV","age":79,"location":"Elfriedaland"}},{"attributes":{"name":"Zora Ullrich","age":37,"location":"Heidenreichmouth"}},{"attributes":{"name":"Jenna Haag","age":57,"location":"Newport News"}},{"attributes":{"name":"Miles Spinka","age":71,"location":"Lake Johannton"}},{"attributes":{"name":"Mason Gottlieb Sr.","age":63,"location":"Oakland Park"}},{"attributes":{"name":"Julian Corkery","age":65,"location":"Helenaworth"}},{"attributes":{"name":"Anna Schulist","age":32,"location":"Bryanamouth"}},{"attributes":{"name":"Sheridan McClure","age":63,"location":"Newton"}},{"attributes":{"name":"Sharon Gusikowski-Towne","age":72,"location":"South Arianna"}},{"attributes":{"name":"Leah McLaughlin","age":41,"location":"West Romainestead"}},{"attributes":{"name":"Celestine Adams","age":48,"location":"Fort Wilton"}},{"attributes":{"name":"Lauren Zboncak","age":49,"location":"Gerholdfurt"}},{"attributes":{"name":"Philip Kunze","age":53,"location":"Joanneport"}},{"attributes":{"name":"Vladimir Lowe","age":67,"location":"Nevaburgh"}},{"attributes":{"name":"Ms. Porter Jast","age":75,"location":"South Lunaborough"}},{"attributes":{"name":"Monica Koch DVM","age":41,"location":"Hackettfurt"}},{"attributes":{"name":"Felicia Hoeger","age":60,"location":"Owensboro"}},{"attributes":{"name":"Susie Von","age":49,"location":"South Cyrus"}},{"attributes":{"name":"Mavis Upton III","age":74,"location":"New Ivahville"}},{"attributes":{"name":"Alberta Friesen","age":36,"location":"Fort Trentonport"}},{"attributes":{"name":"Max Hermiston","age":18,"location":"Mustafaland"}},{"attributes":{"name":"Mr. Julio Rogahn PhD","age":49,"location":"Vanceville"}},{"attributes":{"name":"Angelica Parisian","age":75,"location":"Koelpinhaven"}},{"attributes":{"name":"Erick Parisian","age":77,"location":"New Bethelworth"}},{"attributes":{"name":"Jannie Hammes","age":22,"location":"West Lorenz"}},{"attributes":{"name":"Tito Bergnaum","age":76,"location":"Rippinton"}},{"attributes":{"name":"Esther Braun V","age":54,"location":"Crystelstead"}},{"attributes":{"name":"Oleta Keeling","age":63,"location":"Johnpaulworth"}},{"attributes":{"name":"Dangelo Koepp Jr.","age":40,"location":"Fort Zanechester"}},{"attributes":{"name":"Ellis Hegmann","age":49,"location":"Darrinfurt"}},{"attributes":{"name":"Sedrick Pagac","age":27,"location":"Lansing"}},{"attributes":{"name":"Meghan Haley","age":45,"location":"North Vickie"}},{"attributes":{"name":"Carmella Streich","age":78,"location":"Fort Ola"}},{"attributes":{"name":"Joyce Anderson","age":60,"location":"Savannah"}},{"attributes":{"name":"Doug Gleichner","age":36,"location":"Abshirefurt"}},{"attributes":{"name":"Morton Langosh-Dickens V","age":62,"location":"Wuckertfort"}},{"attributes":{"name":"Green Fay","age":49,"location":"Carrollton"}},{"attributes":{"name":"Bessie Christiansen-Hermiston","age":25,"location":"West Enochville"}},{"attributes":{"name":"Christelle Gottlieb","age":22,"location":"Morissettecester"}},{"attributes":{"name":"Eugenia Langosh","age":19,"location":"Bartolettiborough"}},{"attributes":{"name":"Woodrow Kessler","age":21,"location":"West Emmalee"}},{"attributes":{"name":"Robbie Little","age":65,"location":"Jackieberg"}},{"attributes":{"name":"Misty Thiel I","age":62,"location":"Kaleyshire"}},{"attributes":{"name":"Randal Smith","age":41,"location":"New Rahul"}},{"attributes":{"name":"Daniela Corwin-Gutmann","age":35,"location":"Homenickbury"}},{"attributes":{"name":"Matt Wehner V","age":32,"location":"Port Tod"}},{"attributes":{"name":"Kristopher Hamill","age":24,"location":"New Hilma"}},{"attributes":{"name":"Shawn Hoppe","age":24,"location":"Port Deon"}},{"attributes":{"name":"Kelli Denesik II","age":32,"location":"West Elody"}},{"attributes":{"name":"Jaime Little","age":63,"location":"Toyburgh"}},{"attributes":{"name":"Krystal King I","age":33,"location":"South Hermann"}},{"attributes":{"name":"Daryl Grady","age":40,"location":"Ratkefurt"}},{"attributes":{"name":"Yazmin Schroeder","age":58,"location":"Lewisville"}},{"attributes":{"name":"Milton Ward","age":55,"location":"Lake Onastad"}},{"attributes":{"name":"Claude Leuschke I","age":77,"location":"New Coltenfort"}},{"attributes":{"name":"Stevie Wolff","age":70,"location":"West Linnie"}},{"attributes":{"name":"Miss Moses Russel II","age":24,"location":"Des Plaines"}},{"attributes":{"name":"Miss Tom Leuschke","age":35,"location":"Sheboygan"}},{"attributes":{"name":"Mrs. Conor Goodwin","age":20,"location":"Rueckerfield"}},{"attributes":{"name":"Ms. Daryl Stiedemann","age":70,"location":"Diamondchester"}},{"attributes":{"name":"Mateo Bergstrom","age":21,"location":"Fort Darienshire"}},{"attributes":{"name":"Zion Swaniawski","age":46,"location":"Hayleeland"}},{"attributes":{"name":"Ramiro Klocko","age":55,"location":"Valentinport"}},{"attributes":{"name":"Orin Tremblay Sr.","age":70,"location":"Lindstead"}},{"attributes":{"name":"Kate Brekke","age":57,"location":"South Vitabury"}},{"attributes":{"name":"Benny Hartmann","age":59,"location":"Fort Emmanuellebury"}},{"attributes":{"name":"Nathanael Altenwerth","age":62,"location":"New Joshuah"}},{"attributes":{"name":"Marlene Klocko","age":76,"location":"Effertzborough"}},{"attributes":{"name":"Myrtle Kuhn","age":80,"location":"Griffinland"}},{"attributes":{"name":"Melba Hessel","age":46,"location":"Jastport"}},{"attributes":{"name":"Miss Isabell Feeney","age":62,"location":"Port Clementine"}},{"attributes":{"name":"Tyshawn Corwin","age":52,"location":"Jaedenstad"}},{"attributes":{"name":"Salvador Baumbach","age":22,"location":"West Buddystad"}},{"attributes":{"name":"Dr. Francis Tromp","age":48,"location":"Joelstead"}},{"attributes":{"name":"Gabriella McClure","age":24,"location":"Eldahaven"}},{"attributes":{"name":"Armando Glover MD","age":78,"location":"Dallinview"}},{"attributes":{"name":"Cathy Medhurst","age":40,"location":"Yundtfort"}},{"attributes":{"name":"Vivian Green","age":32,"location":"Lake Shany"}},{"attributes":{"name":"Alonzo Rosenbaum","age":36,"location":"Blakeburgh"}},{"attributes":{"name":"Bernadette Aufderhar","age":35,"location":"Rathfurt"}},{"attributes":{"name":"Anastacio Hodkiewicz","age":80,"location":"East Kelsie"}},{"attributes":{"name":"Fred Ullrich","age":37,"location":"North Luciotown"}},{"attributes":{"name":"Malachi Keeling","age":32,"location":"South Fredrick"}},{"attributes":{"name":"Charlie Ruecker","age":44,"location":"Amarillo"}},{"attributes":{"name":"Rhiannon Harris MD","age":61,"location":"Ryanstad"}},{"attributes":{"name":"Mrs. Jaclyn Considine","age":38,"location":"Knoxville"}},{"attributes":{"name":"Dr. Brody Ebert","age":47,"location":"Mariettaberg"}},{"attributes":{"name":"Sid Kub","age":60,"location":"Port Krystelburgh"}},{"attributes":{"name":"Cary Littel PhD","age":64,"location":"Giuseppeport"}},{"attributes":{"name":"Leonardo Cronin","age":73,"location":"New Adelbertfurt"}},{"attributes":{"name":"Sonya Halvorson","age":36,"location":"Port Meaghanside"}},{"attributes":{"name":"Wellington Hermiston II","age":77,"location":"Gottliebport"}},{"attributes":{"name":"Ms. Mae Leffler","age":59,"location":"Cordeliaton"}},{"attributes":{"name":"Alda Langworth IV","age":21,"location":"Augustusboro"}},{"attributes":{"name":"Dr. Jaleel Frami","age":75,"location":"Roryborough"}},{"attributes":{"name":"Desiree Mosciski","age":72,"location":"Vanfurt"}},{"attributes":{"name":"Alisha Hyatt","age":27,"location":"East Robert"}},{"attributes":{"name":"Oren Herman IV","age":79,"location":"Port Dakotaberg"}},{"attributes":{"name":"Mabel DuBuque","age":48,"location":"East Samara"}},{"attributes":{"name":"Lynn Macejkovic","age":44,"location":"Fort Harrisonview"}},{"attributes":{"name":"Ana McDermott","age":51,"location":"Greeley"}},{"attributes":{"name":"Leigh Schroeder","age":20,"location":"Nevastad"}},{"attributes":{"name":"Monty Hudson MD","age":57,"location":"South Toni"}},{"attributes":{"name":"Kara Considine","age":62,"location":"West Gracielaton"}},{"attributes":{"name":"Lorene Nitzsche","age":41,"location":"Leuschkechester"}},{"attributes":{"name":"Camilla Jones II","age":53,"location":"Newport Beach"}},{"attributes":{"name":"Cary Ebert","age":59,"location":"Kohlerberg"}},{"attributes":{"name":"Coy Wuckert","age":65,"location":"North Donnie"}},{"attributes":{"name":"Pearl Langworth","age":62,"location":"Olsonshire"}},{"attributes":{"name":"Johanna Tremblay","age":56,"location":"Kubhaven"}},{"attributes":{"name":"Cristopher Hoppe","age":54,"location":"Luettgenside"}},{"attributes":{"name":"Daphnee Leannon","age":26,"location":"Yundtside"}},{"attributes":{"name":"Malcolm Harvey","age":58,"location":"Ames"}},{"attributes":{"name":"Leonard Sauer","age":38,"location":"West Paulinefurt"}},{"attributes":{"name":"Brendan Cremin","age":36,"location":"Bethelfurt"}},{"attributes":{"name":"Queenie Kuphal","age":42,"location":"West Tyrell"}},{"attributes":{"name":"Juan Schinner","age":45,"location":"Portland"}},{"attributes":{"name":"Dawn Ferry","age":72,"location":"Schaeferworth"}},{"attributes":{"name":"Miss Judy Zieme","age":20,"location":"Marlenburgh"}},{"attributes":{"name":"Dr. Adele Wisozk","age":54,"location":"New Jonatanside"}},{"attributes":{"name":"Mary Dicki","age":39,"location":"South Gabriellaport"}},{"attributes":{"name":"Guadalupe Kerluke","age":42,"location":"Ponce"}},{"attributes":{"name":"Wava Franecki-Fahey","age":22,"location":"Vernerstad"}},{"attributes":{"name":"Lawson Heathcote","age":39,"location":"Port Janelle"}},{"attributes":{"name":"Blake Monahan","age":73,"location":"West Alaina"}},{"attributes":{"name":"Cara Flatley","age":32,"location":"Kosstown"}},{"attributes":{"name":"Nina Ward","age":34,"location":"Oakland"}},{"attributes":{"name":"Pauline Cassin","age":44,"location":"Macon-Bibb County"}},{"attributes":{"name":"Natalie Wolff","age":50,"location":"Clovis"}},{"attributes":{"name":"Henrietta Cormier","age":44,"location":"Peabody"}},{"attributes":{"name":"Ms. Monique Ernser","age":28,"location":"Port Kaseyhaven"}},{"attributes":{"name":"Chad Blanda","age":32,"location":"Jakubowskiberg"}},{"attributes":{"name":"Amira Little","age":37,"location":"New Timmothybury"}},{"attributes":{"name":"Naomi Hartmann-Goyette","age":24,"location":"Port Odellhaven"}},{"attributes":{"name":"Leslie Senger","age":43,"location":"Schillerfield"}},{"attributes":{"name":"Rachel Pfeffer","age":38,"location":"East Lenoreport"}},{"attributes":{"name":"Rose Leannon","age":54,"location":"New Ginoview"}},{"attributes":{"name":"Nayeli Larson","age":33,"location":"Murrieta"}},{"attributes":{"name":"Sallie Beier","age":19,"location":"West Ettieworth"}},{"attributes":{"name":"Dorothea Stroman","age":32,"location":"Cristworth"}},{"attributes":{"name":"Don Hahn","age":64,"location":"Fort Carmela"}},{"attributes":{"name":"Ryan Kulas","age":65,"location":"Kertzmannton"}},{"attributes":{"name":"Brian Steuber II","age":63,"location":"Stoltenbergton"}},{"attributes":{"name":"Anika Hills","age":33,"location":"North Lori"}},{"attributes":{"name":"Hazel Glover","age":44,"location":"New Phyllis"}},{"attributes":{"name":"Norwood Stokes","age":23,"location":"Reading"}},{"attributes":{"name":"Susan Hettinger","age":51,"location":"West Afton"}},{"attributes":{"name":"Greg Dickens","age":26,"location":"West Ezratown"}},{"attributes":{"name":"Ms. Joan Keebler MD","age":45,"location":"East Gillianfield"}},{"attributes":{"name":"Selena Flatley","age":54,"location":"Wymanstead"}},{"attributes":{"name":"Vernon Homenick","age":70,"location":"Lake Alannashire"}},{"attributes":{"name":"Filiberto Monahan","age":28,"location":"West Charlene"}},{"attributes":{"name":"Dannie Krajcik","age":45,"location":"North Beaulahville"}},{"attributes":{"name":"Willard Douglas","age":36,"location":"Bashiriancester"}},{"attributes":{"name":"Shelly Prosacco","age":61,"location":"Tigard"}},{"attributes":{"name":"Norbert Huels","age":72,"location":"Fort Noemy"}},{"attributes":{"name":"Dr. Jarrod Jakubowski","age":65,"location":"Harlingen"}},{"attributes":{"name":"Ethel Steuber","age":28,"location":"New Laurine"}},{"attributes":{"name":"Casey Block","age":27,"location":"Boehmview"}},{"attributes":{"name":"Lindsay Feil I","age":36,"location":"South Reedburgh"}},{"attributes":{"name":"Brayan Keeling","age":31,"location":"St. Cloud"}},{"attributes":{"name":"Mr. Rogelio Murray","age":41,"location":"Lake Cortez"}},{"attributes":{"name":"Sylvester McClure","age":49,"location":"Kolefort"}},{"attributes":{"name":"Ottis Carroll","age":79,"location":"Mitchelchester"}},{"attributes":{"name":"Mrs. Virginia Mante","age":78,"location":"Fort Viola"}},{"attributes":{"name":"Geneva Ortiz","age":60,"location":"Altamonte Springs"}},{"attributes":{"name":"Brandon Kilback","age":29,"location":"Suffolk"}},{"attributes":{"name":"Devin Ratke","age":28,"location":"Vineland"}},{"attributes":{"name":"Reginald Marks Sr.","age":57,"location":"Adamsmouth"}},{"attributes":{"name":"Abel Romaguera","age":35,"location":"Fort Harley"}},{"attributes":{"name":"Nettie Nader","age":52,"location":"Overland Park"}},{"attributes":{"name":"Fidel Lehner DDS","age":49,"location":"Schulistboro"}},{"attributes":{"name":"Zaria Morar","age":57,"location":"Marciaton"}},{"attributes":{"name":"Kristie Wolff","age":51,"location":"Dorriston"}},{"attributes":{"name":"Ollie Romaguera","age":29,"location":"South Bret"}},{"attributes":{"name":"Lia D'Amore","age":71,"location":"Franeckiworth"}},{"attributes":{"name":"Mrs. Carolyn Walker","age":78,"location":"Annandale"}},{"attributes":{"name":"Sandy Powlowski","age":59,"location":"East Chrisfort"}},{"attributes":{"name":"Gina MacGyver","age":23,"location":"South Myles"}},{"attributes":{"name":"Claire Towne","age":42,"location":"El Paso"}},{"attributes":{"name":"Monique Satterfield DVM","age":43,"location":"Lake Garfieldboro"}},{"attributes":{"name":"Marge Mills","age":18,"location":"Shyannstead"}},{"attributes":{"name":"Vance Bode-Jenkins","age":33,"location":"North Jenaberg"}},{"attributes":{"name":"Napoleon Thompson DDS","age":59,"location":"Bethesda"}},{"attributes":{"name":"Dr. Carl Hammes","age":26,"location":"Beahanport"}},{"attributes":{"name":"Mrs. Herbert Zieme","age":72,"location":"Weissnatstead"}},{"attributes":{"name":"Gerald Lehner","age":68,"location":"Crystalfurt"}},{"attributes":{"name":"Grady Crist","age":53,"location":"South Lelah"}},{"attributes":{"name":"Toni Ruecker","age":67,"location":"Lake Bridgetstad"}},{"attributes":{"name":"Cindy Trantow","age":40,"location":"Maryjanefurt"}},{"attributes":{"name":"Retha Kihn","age":31,"location":"Trantowtown"}},{"attributes":{"name":"Ms. Irene Cormier","age":38,"location":"O'Connellbury"}},{"attributes":{"name":"Santiago Lubowitz","age":23,"location":"Cartwrightburgh"}},{"attributes":{"name":"Boyd Bernhard","age":52,"location":"Milpitas"}},{"attributes":{"name":"Jared Ullrich-Welch II","age":55,"location":"Legrostown"}},{"attributes":{"name":"Dr. Alvin Farrell-Christiansen","age":63,"location":"South Ardith"}},{"attributes":{"name":"Lucas Beer","age":50,"location":"Fargo"}},{"attributes":{"name":"Preston O'Hara","age":45,"location":"Cambridge"}},{"attributes":{"name":"Arturo Hermann","age":60,"location":"Remingtoncester"}},{"attributes":{"name":"Belinda Turner","age":59,"location":"Brettfort"}},{"attributes":{"name":"Miss Raquel Kuhlman","age":62,"location":"Magnoliamouth"}},{"attributes":{"name":"Lori Osinski","age":47,"location":"East Skye"}},{"attributes":{"name":"Mr. Lloyd Rath I","age":56,"location":"New Santino"}},{"attributes":{"name":"Cindy Halvorson","age":58,"location":"Sanford"}},{"attributes":{"name":"Savanah Cronin","age":74,"location":"Pomona"}},{"attributes":{"name":"Noel Witting","age":73,"location":"South Boris"}},{"attributes":{"name":"Kathryn Koch","age":51,"location":"Madera"}},{"attributes":{"name":"Lavada Senger","age":42,"location":"Saginaw"}},{"attributes":{"name":"Forrest Harber","age":33,"location":"Homenickland"}},{"attributes":{"name":"Annalise Hills","age":61,"location":"Towneport"}},{"attributes":{"name":"Ms. Violet Prosacco MD","age":49,"location":"East Winston"}},{"attributes":{"name":"Barry Witting DDS","age":78,"location":"Lake Keeganchester"}},{"attributes":{"name":"Tracey Lesch","age":45,"location":"Huelbury"}},{"attributes":{"name":"Stella Rosenbaum I","age":29,"location":"Cordeliaside"}},{"attributes":{"name":"Ben Blanda","age":62,"location":"Rohanton"}},{"attributes":{"name":"Ken Crona DDS","age":20,"location":"Lowell"}},{"attributes":{"name":"Alena Schimmel I","age":18,"location":"Burdetteton"}},{"attributes":{"name":"Daniel Daniel","age":50,"location":"Appleton"}},{"attributes":{"name":"Dr. Diane Sauer","age":63,"location":"Oberbrunnerburgh"}},{"attributes":{"name":"Mrs. Linda Kutch","age":44,"location":"St. Joseph"}},{"attributes":{"name":"Taylor Schmitt","age":32,"location":"Douglashaven"}},{"attributes":{"name":"Polly Monahan","age":68,"location":"Keshawnville"}},{"attributes":{"name":"Kaylah Klein","age":22,"location":"North Kamille"}},{"attributes":{"name":"Dewey Medhurst","age":27,"location":"North Sheridanhaven"}},{"attributes":{"name":"Leo Johnson","age":53,"location":"Jalenchester"}},{"attributes":{"name":"Jamie Kreiger","age":43,"location":"Hickleberg"}},{"attributes":{"name":"Douglas Kub","age":51,"location":"Johanfield"}},{"attributes":{"name":"Dolly Green","age":40,"location":"Port Shad"}},{"attributes":{"name":"Diamond Olson","age":33,"location":"Kristystead"}},{"attributes":{"name":"Lavina Bernhard","age":57,"location":"Grand Forks"}},{"attributes":{"name":"Dr. Tiffany Orn","age":48,"location":"North Alanis"}},{"attributes":{"name":"Joe Thompson","age":67,"location":"Lake Lavinia"}},{"attributes":{"name":"Mertie Cartwright","age":33,"location":"Flint"}},{"attributes":{"name":"Ms. Kennith Christiansen","age":27,"location":"Felicitaland"}},{"attributes":{"name":"Esther Tillman","age":38,"location":"West Lilian"}},{"attributes":{"name":"Jaime Huel","age":29,"location":"Christymouth"}},{"attributes":{"name":"Winifred Hegmann","age":68,"location":"Jaylanfield"}},{"attributes":{"name":"Justin Hackett","age":72,"location":"Mesquite"}},{"attributes":{"name":"Hannah Green","age":55,"location":"West Esther"}},{"attributes":{"name":"Eldred Windler","age":78,"location":"Levittown"}},{"attributes":{"name":"Ms. Martha Walsh","age":26,"location":"Woodland"}},{"attributes":{"name":"Howard Huels","age":47,"location":"Luluville"}},{"attributes":{"name":"Jane Mayer","age":19,"location":"Lottieville"}},{"attributes":{"name":"Teri Langworth","age":41,"location":"Buckridgeshire"}},{"attributes":{"name":"Marcia Welch","age":68,"location":"Melbourne"}},{"attributes":{"name":"Jeremiah Carroll III","age":59,"location":"North Hans"}},{"attributes":{"name":"Deborah Torphy","age":79,"location":"Moriahton"}},{"attributes":{"name":"Joanne Fahey","age":80,"location":"Ignatiusside"}},{"attributes":{"name":"Hobart Spinka","age":65,"location":"Fort Justicefield"}},{"attributes":{"name":"Donnie Hyatt-Fay","age":53,"location":"Miketon"}},{"attributes":{"name":"Dr. Emiliano Williamson","age":34,"location":"West Jennie"}},{"attributes":{"name":"Sister Halvorson","age":22,"location":"Lubowitzstad"}},{"attributes":{"name":"Zita Krajcik","age":45,"location":"Marciaburgh"}},{"attributes":{"name":"Derek Larson","age":44,"location":"Costa Mesa"}},{"attributes":{"name":"Ms. Monique Murphy","age":68,"location":"Amberchester"}},{"attributes":{"name":"Rashad Botsford","age":74,"location":"D'angeloworth"}},{"attributes":{"name":"Claude Harber","age":76,"location":"Port Joanneworth"}},{"attributes":{"name":"Dr. Dwight Rodriguez","age":51,"location":"New Tamia"}},{"attributes":{"name":"Pauline Gerhold","age":67,"location":"North Ara"}},{"attributes":{"name":"Darrion Homenick","age":50,"location":"Tuckahoe"}},{"attributes":{"name":"Beth Thiel","age":44,"location":"New Desmondchester"}},{"attributes":{"name":"Destin Toy I","age":41,"location":"Bountiful"}},{"attributes":{"name":"Aliya Morar","age":28,"location":"Bentonville"}},{"attributes":{"name":"Kristina Nader","age":78,"location":"Port Katherine"}},{"attributes":{"name":"Angelita Bailey","age":74,"location":"Mohrside"}},{"attributes":{"name":"Wm Willms","age":65,"location":"Botsfordmouth"}},{"attributes":{"name":"Lulu Bashirian","age":38,"location":"Willowchester"}},{"attributes":{"name":"Tabitha Tremblay","age":40,"location":"Abshireport"}},{"attributes":{"name":"Vincent Renner","age":50,"location":"Gerholdview"}},{"attributes":{"name":"Verna Windler","age":46,"location":"Fort Sophia"}},{"attributes":{"name":"Gretchen Hilpert","age":43,"location":"Fullerton"}},{"attributes":{"name":"Dr. Dominick Cummings","age":43,"location":"Welchboro"}},{"attributes":{"name":"Lura Collins","age":47,"location":"Lakeville"}},{"attributes":{"name":"Marsha Boyer","age":78,"location":"South Adachester"}},{"attributes":{"name":"Yolanda Kihn PhD","age":47,"location":"Denesikfield"}},{"attributes":{"name":"Gordon Ullrich","age":54,"location":"Kearny"}},{"attributes":{"name":"Antonietta Armstrong","age":35,"location":"Port Liza"}},{"attributes":{"name":"Marsha Streich","age":75,"location":"North Anastacio"}},{"attributes":{"name":"Joan Thompson","age":74,"location":"South Carterberg"}},{"attributes":{"name":"Lew Wolf","age":24,"location":"High Point"}},{"attributes":{"name":"Dr. Cristina Jakubowski","age":66,"location":"East Lionel"}},{"attributes":{"name":"Jaleel Watsica","age":68,"location":"Dakotaport"}},{"attributes":{"name":"Lloyd Lueilwitz","age":18,"location":"Faustinofort"}},{"attributes":{"name":"German Terry","age":49,"location":"West Turnerworth"}},{"attributes":{"name":"Anika Welch","age":52,"location":"Asheville"}},{"attributes":{"name":"King Beer","age":27,"location":"Metairie"}},{"attributes":{"name":"Terrence Heller","age":29,"location":"North Dane"}},{"attributes":{"name":"Trevor Glover","age":29,"location":"Beahanview"}},{"attributes":{"name":"Mrs. Miles Langworth","age":34,"location":"South Jacquelynchester"}},{"attributes":{"name":"Joshua Kris","age":19,"location":"Kovacekborough"}},{"attributes":{"name":"Miss Clara Bashirian","age":58,"location":"Ivafield"}},{"attributes":{"name":"Juliet Deckow","age":23,"location":"Lulaland"}},{"attributes":{"name":"Baylee Rogahn","age":77,"location":"Kenner"}},{"attributes":{"name":"Harrison Mohr","age":18,"location":"Lake Myrtisside"}},{"attributes":{"name":"Marion Kuhlman","age":64,"location":"Stehrview"}},{"attributes":{"name":"Dr. Cecil Ziemann","age":50,"location":"New Newtonborough"}},{"attributes":{"name":"Mr. Jacky Huels PhD","age":76,"location":"Waldorf"}},{"attributes":{"name":"Kimberly Koelpin","age":27,"location":"West Palm Beach"}},{"attributes":{"name":"Jayde Brekke","age":46,"location":"Schaumburg"}},{"attributes":{"name":"Virginia Tromp","age":22,"location":"Winfieldside"}},{"attributes":{"name":"Rosie Macejkovic","age":78,"location":"Fort Adrielside"}},{"attributes":{"name":"Beverly Parisian","age":40,"location":"Montgomery"}},{"attributes":{"name":"Milan Weber","age":64,"location":"Royview"}},{"attributes":{"name":"Alexandra Considine","age":52,"location":"Lake Braden"}},{"attributes":{"name":"Ivan McKenzie","age":60,"location":"South Bailee"}},{"attributes":{"name":"Ben Blanda","age":55,"location":"West Corinemouth"}},{"attributes":{"name":"Abigale Hickle","age":41,"location":"Fort Tonyhaven"}},{"attributes":{"name":"Nicholas Marks","age":31,"location":"Jacobsborough"}},{"attributes":{"name":"Franklin Schaefer","age":42,"location":"North Erik"}},{"attributes":{"name":"Pedro Champlin","age":60,"location":"Goodyear"}},{"attributes":{"name":"Mr. Elwin Wilderman","age":39,"location":"East Rodrigo"}},{"attributes":{"name":"Lyla Leannon I","age":27,"location":"Duluth"}},{"attributes":{"name":"Lafayette Wisoky","age":40,"location":"Adelbertworth"}},{"attributes":{"name":"Cleo Fahey","age":51,"location":"East Jeanetteport"}},{"attributes":{"name":"Dr. Kennith Raynor","age":39,"location":"Johnstoncester"}},{"attributes":{"name":"Ilene Lebsack","age":44,"location":"Trenton"}},{"attributes":{"name":"Amos Schowalter DDS","age":73,"location":"Sisterborough"}},{"attributes":{"name":"Camilla Hickle","age":61,"location":"North Art"}},{"attributes":{"name":"Miss Kristian Vandervort","age":61,"location":"Buckeye"}},{"attributes":{"name":"Dr. Kerry Treutel","age":57,"location":"Lake Delfina"}},{"attributes":{"name":"Candice Wilderman","age":69,"location":"Ogden"}},{"attributes":{"name":"Mildred Barrows-Hodkiewicz","age":30,"location":"Rockville"}},{"attributes":{"name":"Bonnie Collier","age":30,"location":"Fort Marleneton"}},{"attributes":{"name":"Joan Farrell","age":79,"location":"Lake Lamarshire"}},{"attributes":{"name":"Crystal Larson","age":72,"location":"Lake Robyntown"}},{"attributes":{"name":"Erika Price","age":23,"location":"Mauricebury"}},{"attributes":{"name":"Domenico Shields DDS","age":44,"location":"Walshhaven"}},{"attributes":{"name":"Beau Stroman-Dibbert","age":75,"location":"Elmercester"}},{"attributes":{"name":"Jerry O'Kon MD","age":65,"location":"Tillmanstead"}},{"attributes":{"name":"Rachael Grimes","age":56,"location":"Adolphfurt"}},{"attributes":{"name":"Dave Little","age":50,"location":"Michellecester"}},{"attributes":{"name":"Marguerite Hand","age":21,"location":"Francishaven"}},{"attributes":{"name":"Hilda Toy","age":64,"location":"Fort Hildegardburgh"}},{"attributes":{"name":"Mrs. Eloise Spinka","age":31,"location":"Castro Valley"}},{"attributes":{"name":"Lucious Sporer","age":32,"location":"Chestermouth"}},{"attributes":{"name":"Johathan Turner","age":30,"location":"Romagueraboro"}},{"attributes":{"name":"Dennis Bogisich","age":75,"location":"VonRuedenshire"}},{"attributes":{"name":"Dr. Dexter Treutel","age":47,"location":"Hodkiewiczcester"}},{"attributes":{"name":"Reba Abshire","age":29,"location":"Bergnaumstead"}},{"attributes":{"name":"Seth Reynolds","age":21,"location":"Port Rosaliafort"}},{"attributes":{"name":"Morgan Kirlin","age":47,"location":"Groverville"}},{"attributes":{"name":"Dr. Kelley Bernier","age":46,"location":"Wichita Falls"}},{"attributes":{"name":"Mr. Pauline Ruecker-Schowalter","age":75,"location":"Enterprise"}},{"attributes":{"name":"Jaclyn Hayes","age":69,"location":"Lake Delphinefield"}},{"attributes":{"name":"Carolina Wolff Jr.","age":79,"location":"Springfield"}},{"attributes":{"name":"Dallas Ankunding","age":70,"location":"New Jasmin"}},{"attributes":{"name":"Brooks Moore","age":80,"location":"Grand Rapids"}},{"attributes":{"name":"Christa Friesen","age":60,"location":"East Benville"}},{"attributes":{"name":"Leticia Abbott-Simonis III","age":26,"location":"Raystad"}},{"attributes":{"name":"Ted Boyer","age":56,"location":"Shawnee"}},{"attributes":{"name":"Ms. Bonnie Jaskolski","age":74,"location":"Dundalk"}},{"attributes":{"name":"Henry Auer DDS","age":54,"location":"Andresmouth"}},{"attributes":{"name":"Helen Kassulke","age":48,"location":"Schinnermouth"}},{"attributes":{"name":"Bethel Shanahan","age":44,"location":"Logan"}},{"attributes":{"name":"Jacklyn Kozey","age":19,"location":"Feilview"}},{"attributes":{"name":"Dr. Hubert Smitham","age":43,"location":"Schneiderton"}},{"attributes":{"name":"Lester Toy","age":47,"location":"Rigobertochester"}},{"attributes":{"name":"Dean Nienow","age":72,"location":"Jeffreyport"}},{"attributes":{"name":"Johanna McCullough","age":25,"location":"Jacobsonberg"}},{"attributes":{"name":"Mable Hagenes","age":63,"location":"Sawaynview"}},{"attributes":{"name":"Darrin Wehner","age":43,"location":"Bogisichfurt"}},{"attributes":{"name":"Bailee Senger","age":25,"location":"Lake Kingboro"}},{"attributes":{"name":"Mr. Lucas Schuster II","age":55,"location":"Port Raymundoshire"}},{"attributes":{"name":"Stacy Bednar","age":25,"location":"North Gino"}},{"attributes":{"name":"Sylvia Towne","age":67,"location":"South Myrtle"}},{"attributes":{"name":"Melvin Lubowitz","age":37,"location":"Fort Erafort"}},{"attributes":{"name":"Wilma Brakus","age":38,"location":"Stehrview"}},{"attributes":{"name":"Danyka Tromp DVM","age":71,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Christine McClure","age":42,"location":"McLean"}},{"attributes":{"name":"Bernie Balistreri","age":36,"location":"Lake Joliehaven"}},{"attributes":{"name":"Shawna Kassulke","age":67,"location":"Stiedemannchester"}},{"attributes":{"name":"Percival Schumm MD","age":37,"location":"Bryan"}},{"attributes":{"name":"Aditya Mitchell","age":75,"location":"Lakewood"}},{"attributes":{"name":"Pearl Kunze-Denesik I","age":34,"location":"Durwardberg"}},{"attributes":{"name":"Mireya Halvorson","age":21,"location":"East Einoberg"}},{"attributes":{"name":"Lesly Schimmel","age":58,"location":"Lake Herbertboro"}},{"attributes":{"name":"Josh Baumbach","age":38,"location":"South Olafchester"}},{"attributes":{"name":"Mr. Benny Rosenbaum","age":74,"location":"Honolulu"}},{"attributes":{"name":"Modesta Doyle","age":60,"location":"Port Norrisberg"}},{"attributes":{"name":"Ruth Johnston","age":31,"location":"North Izabellaport"}},{"attributes":{"name":"Carlotta Kiehn","age":45,"location":"Lueilwitzton"}},{"attributes":{"name":"Jeanette Wolf","age":34,"location":"Hollywood"}},{"attributes":{"name":"Victor Swaniawski","age":53,"location":"Koeppboro"}},{"attributes":{"name":"Henrietta Murazik","age":33,"location":"West Cornellcester"}},{"attributes":{"name":"Boyd Schiller","age":25,"location":"Champlincester"}},{"attributes":{"name":"Chad Oberbrunner","age":64,"location":"South Joan"}},{"attributes":{"name":"Preston Kovacek","age":34,"location":"Otiston"}},{"attributes":{"name":"Joe Jacobson","age":53,"location":"Romagueraside"}},{"attributes":{"name":"Kaylah Becker","age":56,"location":"Port Trentonborough"}},{"attributes":{"name":"Montana Jaskolski PhD","age":51,"location":"Cassinstead"}},{"attributes":{"name":"Ramiro Franecki","age":49,"location":"Lake Johannberg"}},{"attributes":{"name":"Clement Sanford","age":70,"location":"Fort Augustine"}},{"attributes":{"name":"Axel Corkery","age":63,"location":"Fort Jessika"}},{"attributes":{"name":"Al DuBuque","age":50,"location":"Hammesside"}},{"attributes":{"name":"Mr. Wilbur Howe II","age":77,"location":"Litzyview"}},{"attributes":{"name":"Osvaldo Powlowski","age":65,"location":"Sydneestead"}},{"attributes":{"name":"Xavier Waelchi","age":31,"location":"Kassulkeside"}},{"attributes":{"name":"Robyn Olson","age":25,"location":"West Kristopher"}},{"attributes":{"name":"Lisa DuBuque","age":77,"location":"Gislasonside"}},{"attributes":{"name":"Wendell Klocko","age":50,"location":"New Joseph"}},{"attributes":{"name":"Denise Stroman I","age":24,"location":"Euless"}},{"attributes":{"name":"Dwight Gerhold","age":66,"location":"New Josephine"}},{"attributes":{"name":"Lauren Larkin","age":74,"location":"Candelariofurt"}},{"attributes":{"name":"Jadyn Frami","age":37,"location":"Funkshire"}},{"attributes":{"name":"Laisha Langworth I","age":54,"location":"New Dwight"}},{"attributes":{"name":"Guiseppe Altenwerth MD","age":18,"location":"Chandlerfurt"}},{"attributes":{"name":"Angel Luettgen","age":62,"location":"Rogersport"}},{"attributes":{"name":"Terrill Johns","age":23,"location":"East Breanna"}},{"attributes":{"name":"Felipe Ruecker","age":50,"location":"Cristobalview"}},{"attributes":{"name":"Susie Ferry","age":21,"location":"Flint"}},{"attributes":{"name":"Issac O'Kon","age":74,"location":"Lake Laury"}},{"attributes":{"name":"Koby McGlynn","age":58,"location":"South Philip"}},{"attributes":{"name":"Ricardo Parisian","age":75,"location":"Mableborough"}},{"attributes":{"name":"Victor Stracke","age":72,"location":"Turcottefield"}},{"attributes":{"name":"Faye Feeney","age":44,"location":"Fort Audreannefurt"}},{"attributes":{"name":"Peter Sawayn","age":18,"location":"New Chauncey"}},{"attributes":{"name":"Terrell Rolfson V","age":22,"location":"Leuschkemouth"}},{"attributes":{"name":"George Stehr II","age":46,"location":"Connellyfurt"}},{"attributes":{"name":"Melisa Ratke","age":23,"location":"West Adellaboro"}},{"attributes":{"name":"Susana Terry","age":52,"location":"Milesstead"}},{"attributes":{"name":"Pablo Lynch","age":34,"location":"Hammeshaven"}},{"attributes":{"name":"Alejandro Weber","age":40,"location":"Pamelaworth"}},{"attributes":{"name":"Faye Cartwright III","age":55,"location":"Hellerberg"}},{"attributes":{"name":"Niko Schamberger DVM","age":46,"location":"West Arvid"}},{"attributes":{"name":"Lee Johns","age":38,"location":"North Furman"}},{"attributes":{"name":"Destany Ritchie","age":69,"location":"Danialborough"}},{"attributes":{"name":"Hailee Von","age":36,"location":"New Lucile"}},{"attributes":{"name":"Kianna DuBuque","age":34,"location":"Margarettaton"}},{"attributes":{"name":"Lorenzo Howe","age":70,"location":"East Keira"}},{"attributes":{"name":"Avery Cummings","age":28,"location":"Fort Khalidport"}},{"attributes":{"name":"Miss Unique Stiedemann","age":52,"location":"Port Aaliyah"}},{"attributes":{"name":"Rachel Schiller","age":50,"location":"Port Rockyville"}},{"attributes":{"name":"Darin Kilback","age":24,"location":"New Vernafurt"}},{"attributes":{"name":"Nadine Keebler","age":19,"location":"Reichelfield"}},{"attributes":{"name":"Marcella Ryan","age":40,"location":"Rolfsonport"}},{"attributes":{"name":"Vernon Robel","age":27,"location":"Hoegercester"}},{"attributes":{"name":"Miss Vida McKenzie","age":43,"location":"Shreveport"}},{"attributes":{"name":"Ayana Wolf","age":66,"location":"Anitaton"}},{"attributes":{"name":"Shea Nitzsche","age":36,"location":"St. Louis"}},{"attributes":{"name":"Shannon Larkin","age":58,"location":"North Stuart"}},{"attributes":{"name":"Glen Hahn","age":69,"location":"Warrenfurt"}},{"attributes":{"name":"Reece Kassulke","age":18,"location":"South Jerelcester"}},{"attributes":{"name":"Dan Hills","age":74,"location":"Betsystead"}},{"attributes":{"name":"Vincent Flatley","age":79,"location":"North Lexus"}},{"attributes":{"name":"Mrs. Brett Feest","age":76,"location":"Lake Cadenshire"}},{"attributes":{"name":"Kip Zieme","age":44,"location":"Stephaniecester"}},{"attributes":{"name":"Danny Trantow","age":56,"location":"Lueilwitzchester"}},{"attributes":{"name":"Murray Kiehn","age":52,"location":"Fairfield"}},{"attributes":{"name":"Howard Wilkinson","age":53,"location":"Howellboro"}},{"attributes":{"name":"Lee Mosciski PhD","age":42,"location":"Chicopee"}},{"attributes":{"name":"Reyna Harber","age":32,"location":"Kaceyview"}},{"attributes":{"name":"Kelvin Hansen","age":53,"location":"Davisburgh"}},{"attributes":{"name":"Alex Beatty","age":42,"location":"Mesa"}},{"attributes":{"name":"Travis Dickens","age":44,"location":"Fort Elna"}},{"attributes":{"name":"Olivia Leffler","age":53,"location":"Rigobertostad"}},{"attributes":{"name":"Wallace Smitham","age":54,"location":"Solonland"}},{"attributes":{"name":"Orin Hauck","age":29,"location":"North Tiafield"}},{"attributes":{"name":"Mr. Luther Lang","age":63,"location":"East Mellie"}},{"attributes":{"name":"Elias Kuhn","age":24,"location":"South Hans"}},{"attributes":{"name":"Bradley Hartmann V","age":67,"location":"Oklahoma City"}},{"attributes":{"name":"Mark Hudson","age":20,"location":"Urbandale"}},{"attributes":{"name":"Iris Kuphal","age":56,"location":"Grahamfurt"}},{"attributes":{"name":"Durward Will","age":48,"location":"West Judy"}},{"attributes":{"name":"Mr. Eric Runolfsson","age":79,"location":"Lake Aaron"}},{"attributes":{"name":"Cristopher McLaughlin","age":41,"location":"Fort Stefanbury"}},{"attributes":{"name":"Delbert Reichel","age":68,"location":"Eulaliaport"}},{"attributes":{"name":"James Wintheiser II","age":51,"location":"Apple Valley"}},{"attributes":{"name":"Meghan White IV","age":63,"location":"Celiaview"}},{"attributes":{"name":"Danielle Gorczany","age":36,"location":"East Graciela"}},{"attributes":{"name":"Robert Reichert","age":49,"location":"Nashua"}},{"attributes":{"name":"Benjamin Abbott","age":48,"location":"Hellerville"}},{"attributes":{"name":"Ursula Frami","age":32,"location":"North Lucy"}},{"attributes":{"name":"Jamar Schoen","age":40,"location":"Denesikshire"}},{"attributes":{"name":"Courtney Abernathy","age":35,"location":"Kutchbury"}},{"attributes":{"name":"Geneva Dare","age":20,"location":"New Rachael"}},{"attributes":{"name":"Ms. Salvatore Bechtelar","age":37,"location":"Maxieboro"}},{"attributes":{"name":"Viva Ferry-Jast","age":71,"location":"Destiniville"}},{"attributes":{"name":"Dave Stroman","age":46,"location":"Heaneytown"}},{"attributes":{"name":"Leola Nikolaus","age":32,"location":"Fort Maryjane"}},{"attributes":{"name":"Kathleen Becker","age":75,"location":"Reinholdburgh"}},{"attributes":{"name":"Earl McCullough","age":56,"location":"Walshmouth"}},{"attributes":{"name":"Myrtle Douglas","age":25,"location":"Topeka"}},{"attributes":{"name":"Myron Stoltenberg","age":44,"location":"Abernathyville"}},{"attributes":{"name":"Katie Rippin","age":34,"location":"Fort Rudolph"}},{"attributes":{"name":"Manuela Torphy","age":54,"location":"Elwinboro"}},{"attributes":{"name":"Al O'Conner","age":59,"location":"Indianapolis"}},{"attributes":{"name":"Alberta Shanahan","age":58,"location":"Christopbury"}},{"attributes":{"name":"Mr. Clifford Strosin","age":63,"location":"Bellflower"}},{"attributes":{"name":"Miss Jordan Satterfield-Sauer","age":76,"location":"Baileyborough"}},{"attributes":{"name":"Mr. Neal Von-Steuber","age":61,"location":"San Bernardino"}},{"attributes":{"name":"Irving Kuhn","age":68,"location":"North Annie"}},{"attributes":{"name":"Karolann Okuneva","age":65,"location":"Dionport"}},{"attributes":{"name":"Rhonda Blick","age":59,"location":"New Lillastead"}},{"attributes":{"name":"Percy Hauck","age":77,"location":"Mayaguez"}},{"attributes":{"name":"Dr. Darryl Rippin","age":32,"location":"Elvahaven"}},{"attributes":{"name":"Mario Little","age":66,"location":"Pomona"}},{"attributes":{"name":"Ron Gislason","age":79,"location":"Estebantown"}},{"attributes":{"name":"Noel Auer","age":22,"location":"East Lanehaven"}},{"attributes":{"name":"Dr. Roxane Brown","age":73,"location":"North Moises"}},{"attributes":{"name":"Sophie Smith","age":63,"location":"New Eugeniafort"}},{"attributes":{"name":"Nedra Lindgren","age":38,"location":"Schaumburg"}},{"attributes":{"name":"Vivian Zemlak","age":45,"location":"Jadencester"}},{"attributes":{"name":"Dr. Carli Abshire","age":66,"location":"Lake Milotown"}},{"attributes":{"name":"Kara Franecki","age":55,"location":"Oak Lawn"}},{"attributes":{"name":"Abel DuBuque III","age":49,"location":"Gracielachester"}},{"attributes":{"name":"Dr. Martina Douglas","age":35,"location":"Taylorstad"}},{"attributes":{"name":"Leila Rohan","age":62,"location":"Mikelchester"}},{"attributes":{"name":"Mr. Forrest Rolfson","age":63,"location":"New Othostad"}},{"attributes":{"name":"Jarvis Cartwright","age":36,"location":"Flint"}},{"attributes":{"name":"Camille Denesik","age":66,"location":"Port Opal"}},{"attributes":{"name":"Dr. Stanley Schimmel","age":79,"location":"Laneyhaven"}},{"attributes":{"name":"Shaylee Barton","age":41,"location":"New Iliana"}},{"attributes":{"name":"Claudia Graham","age":39,"location":"Kuhicton"}},{"attributes":{"name":"Kelli Kulas","age":24,"location":"Volkmanstead"}},{"attributes":{"name":"Miss Jerome Lemke-Will","age":76,"location":"Rowlandchester"}},{"attributes":{"name":"Dr. Gustavo Crist","age":64,"location":"Port Reese"}},{"attributes":{"name":"Brandy Harber","age":66,"location":"West Tomasshire"}},{"attributes":{"name":"Samson Langworth","age":30,"location":"Ethaton"}},{"attributes":{"name":"Mr. Joseph Waters","age":19,"location":"Sauerburgh"}},{"attributes":{"name":"Nettie Rice","age":22,"location":"Salt Lake City"}},{"attributes":{"name":"Mrs. Alma Jacobson-Welch","age":72,"location":"Salem"}},{"attributes":{"name":"Damon Walsh","age":47,"location":"New Gudrunbury"}},{"attributes":{"name":"Antonio Emard","age":75,"location":"Emmaport"}},{"attributes":{"name":"Florence Cruickshank","age":80,"location":"Shemarfield"}},{"attributes":{"name":"Nicholaus Kovacek","age":32,"location":"Chino Hills"}},{"attributes":{"name":"Mr. Alan Barton","age":60,"location":"West Mercedes"}},{"attributes":{"name":"Madalyn Schowalter","age":21,"location":"Doyleland"}},{"attributes":{"name":"Ms. Stacy McGlynn","age":70,"location":"Faymouth"}},{"attributes":{"name":"Aaron Bradtke","age":69,"location":"Portsmouth"}},{"attributes":{"name":"Guadalupe Deckow","age":72,"location":"Brockton"}},{"attributes":{"name":"Victor Kunze","age":48,"location":"Buckmouth"}},{"attributes":{"name":"Daija Goyette","age":22,"location":"Ethylshire"}},{"attributes":{"name":"Kerry Keeling","age":48,"location":"East Hettie"}},{"attributes":{"name":"Kelvin Boehm","age":40,"location":"Bountiful"}},{"attributes":{"name":"Tony Simonis","age":43,"location":"New Francisshire"}},{"attributes":{"name":"Mrs. Nora Gleason PhD","age":44,"location":"South Jamar"}},{"attributes":{"name":"Kathy Homenick","age":41,"location":"Port Kyla"}},{"attributes":{"name":"Jodi McKenzie","age":55,"location":"East Jessie"}},{"attributes":{"name":"Mr. Alexandro Grant","age":74,"location":"Fort Luciousburgh"}},{"attributes":{"name":"Emanuel Torphy-Turcotte","age":28,"location":"North Javontemouth"}},{"attributes":{"name":"Dr. Archie Gerhold IV","age":30,"location":"Passaic"}},{"attributes":{"name":"Blanca Ruecker","age":46,"location":"West Ocie"}},{"attributes":{"name":"Bill Barrows-Marks","age":63,"location":"Dickinsonfurt"}},{"attributes":{"name":"Janice Fadel","age":27,"location":"Thurmanview"}},{"attributes":{"name":"Dr. Greg Kiehn","age":32,"location":"Gordonborough"}},{"attributes":{"name":"Javier Breitenberg","age":21,"location":"McGlynnberg"}},{"attributes":{"name":"Karelle Macejkovic","age":73,"location":"Port Sandyfurt"}},{"attributes":{"name":"Pearl Grant IV","age":26,"location":"Timothytown"}},{"attributes":{"name":"Roderick Feest","age":39,"location":"Thieltown"}},{"attributes":{"name":"Dr. Amara Kessler III","age":75,"location":"Fort Waltonburgh"}},{"attributes":{"name":"Mrs. Gayle Buckridge","age":38,"location":"Fort Beatrice"}},{"attributes":{"name":"Linda Ritchie","age":43,"location":"New Xander"}},{"attributes":{"name":"Connor Bartoletti","age":35,"location":"Brakusmouth"}},{"attributes":{"name":"Miss Raul Will","age":74,"location":"White Plains"}},{"attributes":{"name":"Natasha Wilkinson","age":80,"location":"Port Francesca"}},{"attributes":{"name":"Leslie Heaney","age":68,"location":"Dexterfort"}},{"attributes":{"name":"Zoila Farrell","age":75,"location":"Anissabury"}},{"attributes":{"name":"Katie Adams","age":66,"location":"Koelpinfield"}},{"attributes":{"name":"Shelley Ankunding","age":22,"location":"Rempelhaven"}},{"attributes":{"name":"Lindsay Huels","age":78,"location":"North Adolfville"}},{"attributes":{"name":"Adela O'Hara II","age":18,"location":"Austin"}},{"attributes":{"name":"Mckenzie Grant II","age":45,"location":"Redmond"}},{"attributes":{"name":"Amaya Conroy","age":36,"location":"East Lorna"}},{"attributes":{"name":"Geneva Boyle","age":39,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Jamel Paucek II","age":44,"location":"Baytown"}},{"attributes":{"name":"Eleanor Morar","age":55,"location":"New Bryon"}},{"attributes":{"name":"Alfonzo McKenzie","age":52,"location":"Hodkiewiczworth"}},{"attributes":{"name":"Elisa Harber","age":70,"location":"West Charleystead"}},{"attributes":{"name":"Adrian Wilkinson","age":44,"location":"East Tre"}},{"attributes":{"name":"Pablo Cassin","age":34,"location":"West Ezekiel"}},{"attributes":{"name":"Dean Denesik","age":78,"location":"Howelltown"}},{"attributes":{"name":"Danny Dibbert","age":60,"location":"Brakusworth"}},{"attributes":{"name":"Gilbert Braun","age":35,"location":"Hartford"}},{"attributes":{"name":"Arthur Denesik","age":56,"location":"Gilbert"}},{"attributes":{"name":"Anais Bogisich II","age":42,"location":"Port Guiseppeside"}},{"attributes":{"name":"Perry Fritsch","age":54,"location":"Brekkeburgh"}},{"attributes":{"name":"Conrad Zboncak","age":39,"location":"East Fredericfort"}},{"attributes":{"name":"Miller Block","age":64,"location":"Rosaside"}},{"attributes":{"name":"Randolph Swaniawski PhD","age":61,"location":"Blandatown"}},{"attributes":{"name":"Miss Jimmie Lesch","age":53,"location":"South Oceaneberg"}},{"attributes":{"name":"Dr. Ralph White III","age":39,"location":"South Kasandra"}},{"attributes":{"name":"Tony McGlynn","age":52,"location":"Allentown"}},{"attributes":{"name":"Cullen Schmeler","age":45,"location":"Lake Corybury"}},{"attributes":{"name":"Dan Muller","age":77,"location":"Nikolascester"}},{"attributes":{"name":"Tiffany Buckridge","age":47,"location":"Irondequoit"}},{"attributes":{"name":"Danielle Lubowitz","age":22,"location":"Tacoma"}},{"attributes":{"name":"Lila Botsford","age":79,"location":"West Marisol"}},{"attributes":{"name":"Chelsea Carter","age":46,"location":"Darianborough"}},{"attributes":{"name":"Dr. Willa O'Keefe","age":64,"location":"Reggiemouth"}},{"attributes":{"name":"Larry Zemlak","age":22,"location":"East Janfurt"}},{"attributes":{"name":"Penelope Leannon","age":80,"location":"South Aileen"}},{"attributes":{"name":"Randy Hammes","age":31,"location":"Friedaland"}},{"attributes":{"name":"Stone Schoen","age":80,"location":"New Favian"}},{"attributes":{"name":"Eloy Beer","age":77,"location":"Beershire"}},{"attributes":{"name":"Carl Witting","age":21,"location":"Lulaland"}},{"attributes":{"name":"Mrs. Nathan Dicki","age":77,"location":"Angelinabury"}},{"attributes":{"name":"Joseph Okuneva","age":71,"location":"Gleichnerfort"}},{"attributes":{"name":"Toni Ebert","age":79,"location":"Missoula"}},{"attributes":{"name":"Bruce Beatty Jr.","age":46,"location":"Christineport"}},{"attributes":{"name":"Elizabeth Wunsch","age":77,"location":"Lake Heber"}},{"attributes":{"name":"Mrs. Leonora Hills Sr.","age":42,"location":"Port Alizeborough"}},{"attributes":{"name":"Rosemarie Williamson II","age":38,"location":"Summerville"}},{"attributes":{"name":"Cecil Harber","age":69,"location":"West Estefania"}},{"attributes":{"name":"Carroll VonRueden DDS","age":52,"location":"South Carrie"}},{"attributes":{"name":"Earnest Altenwerth","age":43,"location":"New Darwinborough"}},{"attributes":{"name":"Ben Marks","age":33,"location":"Robertsmouth"}},{"attributes":{"name":"Luigi Adams","age":74,"location":"Southaven"}},{"attributes":{"name":"Monica Sanford","age":65,"location":"Luettgenberg"}},{"attributes":{"name":"Christophe Bernhard","age":50,"location":"Port Martine"}},{"attributes":{"name":"Ramon Shields","age":39,"location":"New Herminia"}},{"attributes":{"name":"Devin VonRueden","age":68,"location":"Louiebury"}},{"attributes":{"name":"Estelle Kuhlman","age":79,"location":"North Nettie"}},{"attributes":{"name":"Emmett Littel","age":45,"location":"Streichtown"}},{"attributes":{"name":"Mr. Amara Gleichner","age":60,"location":"Hattieville"}},{"attributes":{"name":"Joshua Schmidt","age":68,"location":"West Yeseniahaven"}},{"attributes":{"name":"Maurice Rau","age":30,"location":"Edisonborough"}},{"attributes":{"name":"Cora Smitham","age":79,"location":"Hermannhaven"}},{"attributes":{"name":"Shany Howell I","age":80,"location":"Trudieburgh"}},{"attributes":{"name":"Kristy Hodkiewicz","age":61,"location":"North Albertabury"}},{"attributes":{"name":"Ramon Blick","age":62,"location":"Port Jensenburgh"}},{"attributes":{"name":"Noelia Lowe","age":29,"location":"Jodieville"}},{"attributes":{"name":"Estelle Quitzon","age":57,"location":"Bradtkemouth"}},{"attributes":{"name":"Dorcas Gislason","age":72,"location":"Lake Flaviomouth"}},{"attributes":{"name":"Fred Leffler","age":58,"location":"South Cierraboro"}},{"attributes":{"name":"Bettye Zulauf","age":19,"location":"Predovicfurt"}},{"attributes":{"name":"Dawn Glover","age":18,"location":"Pittsfield"}},{"attributes":{"name":"Viva Rohan","age":24,"location":"Fort Electaburgh"}},{"attributes":{"name":"John Casper","age":52,"location":"New Theodora"}},{"attributes":{"name":"Ms. Darryl O'Reilly","age":59,"location":"Fort Blair"}},{"attributes":{"name":"Kelvin Frami","age":54,"location":"Janicebury"}},{"attributes":{"name":"Ivan Thiel","age":63,"location":"Altoona"}},{"attributes":{"name":"Marcia Bogisich","age":42,"location":"New Marilie"}},{"attributes":{"name":"Antonio Osinski II","age":22,"location":"Abshireport"}},{"attributes":{"name":"Dr. Preston Lesch","age":78,"location":"New Kencester"}},{"attributes":{"name":"Alonzo Marvin","age":58,"location":"West Norvalville"}},{"attributes":{"name":"Willie Denesik","age":21,"location":"Kileyside"}},{"attributes":{"name":"Laurie Ferry","age":63,"location":"Libbyberg"}},{"attributes":{"name":"Obie Heathcote","age":39,"location":"Martinashire"}},{"attributes":{"name":"Mr. Aimee Baumbach","age":37,"location":"New York"}},{"attributes":{"name":"Willard Crist","age":23,"location":"Treverport"}},{"attributes":{"name":"Ruthie Nader","age":42,"location":"Akeemfield"}},{"attributes":{"name":"Roman Hamill","age":68,"location":"Iketon"}},{"attributes":{"name":"Patricia Cremin-Rempel","age":67,"location":"Burlington"}},{"attributes":{"name":"Blanche Wisoky","age":59,"location":"Leliafield"}},{"attributes":{"name":"Kara Hartmann","age":71,"location":"Harveyton"}},{"attributes":{"name":"Mitchell Kuhn","age":20,"location":"Hyattburgh"}},{"attributes":{"name":"Dana Tillman","age":59,"location":"North Russ"}},{"attributes":{"name":"Chad Abernathy","age":34,"location":"West Adellaport"}},{"attributes":{"name":"Delfina Zboncak-Koepp","age":46,"location":"East Bradfordton"}},{"attributes":{"name":"Chasity Lemke","age":26,"location":"North Stefanieville"}},{"attributes":{"name":"Jacqueline Altenwerth","age":60,"location":"Lake Dovie"}},{"attributes":{"name":"Edmond Stoltenberg","age":49,"location":"South Queenie"}},{"attributes":{"name":"Lorenz Schmitt II","age":60,"location":"West Layne"}},{"attributes":{"name":"Dr. Clifford Willms","age":46,"location":"New Milesview"}},{"attributes":{"name":"Shany Ledner","age":20,"location":"Koryland"}},{"attributes":{"name":"Sven Lakin","age":18,"location":"West Vinniemouth"}},{"attributes":{"name":"Dora Champlin","age":29,"location":"Skilestown"}},{"attributes":{"name":"Rick Robel","age":70,"location":"Abnerchester"}},{"attributes":{"name":"Austin Hilll IV","age":69,"location":"Skokie"}},{"attributes":{"name":"Ethel Kreiger","age":29,"location":"Norwalk"}},{"attributes":{"name":"Berneice Swaniawski","age":26,"location":"O'Kontown"}},{"attributes":{"name":"Wilhelm Ankunding","age":30,"location":"Heaneyfort"}},{"attributes":{"name":"Guy Buckridge","age":62,"location":"North Brenda"}},{"attributes":{"name":"Hortense Renner","age":58,"location":"Fort Faustostad"}},{"attributes":{"name":"Evelyn Marquardt","age":50,"location":"Marietta"}},{"attributes":{"name":"Judith Rempel","age":40,"location":"West Lisandro"}},{"attributes":{"name":"Broderick Abernathy","age":51,"location":"Pagacburgh"}},{"attributes":{"name":"Ms. Natasha Nikolaus","age":79,"location":"Ruthiefurt"}},{"attributes":{"name":"Ferne Murray","age":27,"location":"Fort Hansside"}},{"attributes":{"name":"Hilda Welch","age":40,"location":"San Antonio"}},{"attributes":{"name":"Clifton Waters","age":65,"location":"Staceytown"}},{"attributes":{"name":"Verna Von","age":30,"location":"Armstrongside"}},{"attributes":{"name":"Pedro Powlowski","age":24,"location":"Port Reyland"}},{"attributes":{"name":"Jaden Haag","age":37,"location":"Galveston"}},{"attributes":{"name":"Al Streich","age":75,"location":"Rachaelboro"}},{"attributes":{"name":"Israel Wuckert","age":46,"location":"Nikitaberg"}},{"attributes":{"name":"Brett Wolf","age":49,"location":"Arvada"}},{"attributes":{"name":"Lucille Parker","age":43,"location":"Port Kaylie"}},{"attributes":{"name":"Laury Feeney","age":28,"location":"Spencerton"}},{"attributes":{"name":"Mr. Brett Hessel","age":74,"location":"Abshirestead"}},{"attributes":{"name":"Jason Rath","age":78,"location":"Rosemarieborough"}},{"attributes":{"name":"Sonja Quitzon","age":59,"location":"Torphystead"}},{"attributes":{"name":"Carlton D'Amore","age":55,"location":"West Madonnashire"}},{"attributes":{"name":"Emma Moore","age":69,"location":"Fort Lutherton"}},{"attributes":{"name":"Irving Jacobi","age":22,"location":"Ziemannville"}},{"attributes":{"name":"Hubert Wolff","age":42,"location":"Stiedemannmouth"}},{"attributes":{"name":"Theodore Abshire III","age":31,"location":"Keeblerborough"}},{"attributes":{"name":"Lowell Littel DVM","age":56,"location":"Utica"}},{"attributes":{"name":"Maureen Parker","age":29,"location":"Kailynboro"}},{"attributes":{"name":"Alexandrine Homenick","age":46,"location":"Houstonton"}},{"attributes":{"name":"Sandra Zemlak","age":65,"location":"Urbanberg"}},{"attributes":{"name":"Jan Dooley","age":35,"location":"West Cristal"}},{"attributes":{"name":"Ms. Audrey Stiedemann","age":22,"location":"Cartershire"}},{"attributes":{"name":"Allen Wintheiser Jr.","age":43,"location":"Franeyfort"}},{"attributes":{"name":"Camden Swift II","age":25,"location":"West Leathaside"}},{"attributes":{"name":"Vladimir Lowe","age":45,"location":"Marshallfurt"}},{"attributes":{"name":"Ora Doyle","age":22,"location":"Simonisstead"}},{"attributes":{"name":"Florence Bergnaum","age":42,"location":"Liafurt"}},{"attributes":{"name":"Cecelia Doyle","age":34,"location":"East Willworth"}},{"attributes":{"name":"Dannie Lemke","age":30,"location":"Santa Fe"}},{"attributes":{"name":"Henrietta Schmitt","age":69,"location":"West Lucy"}},{"attributes":{"name":"Ben Larson","age":47,"location":"West Ronaldo"}},{"attributes":{"name":"Angelina O'Hara IV","age":73,"location":"Peabody"}},{"attributes":{"name":"Maureen Rosenbaum-Jenkins","age":67,"location":"Millsview"}},{"attributes":{"name":"Lyla Hammes","age":75,"location":"Flint"}},{"attributes":{"name":"Susie Little","age":59,"location":"Skokie"}},{"attributes":{"name":"Gordon Frami","age":24,"location":"New Patienceport"}},{"attributes":{"name":"Werner Mills","age":79,"location":"New Payton"}},{"attributes":{"name":"Kurtis Steuber","age":56,"location":"Santa Fe"}},{"attributes":{"name":"Latoya Dicki","age":28,"location":"South Callieville"}},{"attributes":{"name":"Clayton Brekke","age":52,"location":"Purdybury"}},{"attributes":{"name":"Miranda Smith","age":63,"location":"Efrainton"}},{"attributes":{"name":"Kelvin Beer","age":61,"location":"Greenfelderbury"}},{"attributes":{"name":"Sonia Spencer","age":38,"location":"Kuvalisstead"}},{"attributes":{"name":"Dr. Randy Kautzer","age":34,"location":"Friesenchester"}},{"attributes":{"name":"Harold Carter","age":36,"location":"North Nelleville"}},{"attributes":{"name":"Briana Considine PhD","age":77,"location":"Cutler Bay"}},{"attributes":{"name":"Ms. Edna McDermott","age":26,"location":"East Lacycester"}},{"attributes":{"name":"Charles Heller","age":42,"location":"Alexysshire"}},{"attributes":{"name":"Sarah Halvorson","age":69,"location":"Lake Emie"}},{"attributes":{"name":"Kory Reichert","age":18,"location":"East Graysontown"}},{"attributes":{"name":"Dr. Margarett McGlynn-Bailey","age":40,"location":"Dooleystad"}},{"attributes":{"name":"Shawna Simonis","age":38,"location":"Nitzscheworth"}},{"attributes":{"name":"Alessandro Romaguera Jr.","age":44,"location":"Fort Eldon"}},{"attributes":{"name":"Laurie Murphy","age":51,"location":"East Dayton"}},{"attributes":{"name":"Mozelle Terry","age":60,"location":"Millscester"}},{"attributes":{"name":"Marc Bradtke I","age":76,"location":"Stiedemannland"}},{"attributes":{"name":"Hosea Smitham DDS","age":18,"location":"Sandrashire"}},{"attributes":{"name":"Randall Jenkins V","age":70,"location":"College Station"}},{"attributes":{"name":"Douglas Price","age":21,"location":"Lefflerboro"}},{"attributes":{"name":"Ms. Jesse Dibbert","age":60,"location":"Rubenstead"}},{"attributes":{"name":"Earl Walter-Lemke","age":23,"location":"Gilbertoshire"}},{"attributes":{"name":"Miss Katie Hirthe","age":37,"location":"New Alvahshire"}},{"attributes":{"name":"Ignacio Witting","age":20,"location":"Homenickborough"}},{"attributes":{"name":"Abbey Osinski","age":64,"location":"West Naomi"}},{"attributes":{"name":"Darryl Schiller","age":29,"location":"Kunzeside"}},{"attributes":{"name":"Guiseppe Mayert","age":53,"location":"Smithbury"}},{"attributes":{"name":"Armand Hermiston","age":77,"location":"West Allis"}},{"attributes":{"name":"Valentina Johns Jr.","age":36,"location":"Larsoncester"}},{"attributes":{"name":"Aliya Kovacek","age":63,"location":"Lake Yolanda"}},{"attributes":{"name":"Lambert King","age":60,"location":"Gerlachstad"}},{"attributes":{"name":"Kerry Pfeffer","age":53,"location":"New Orvalbury"}},{"attributes":{"name":"Martin Ortiz","age":24,"location":"Wolfmouth"}},{"attributes":{"name":"Sherri Simonis","age":48,"location":"Lake Hillaryborough"}},{"attributes":{"name":"Blaze Rogahn","age":63,"location":"Sandybury"}},{"attributes":{"name":"Horace Olson","age":41,"location":"North Jaunitastead"}},{"attributes":{"name":"Arne Stehr Sr.","age":48,"location":"West Humberto"}},{"attributes":{"name":"Paris Bernier","age":31,"location":"South Geovanyfurt"}},{"attributes":{"name":"Meredith Batz","age":69,"location":"Port Matilda"}},{"attributes":{"name":"Miss Nicole Schuster","age":34,"location":"North Nicholaus"}},{"attributes":{"name":"Gail Hirthe","age":53,"location":"Meriden"}},{"attributes":{"name":"Archie Abbott","age":67,"location":"Billings"}},{"attributes":{"name":"Micheal Jerde","age":23,"location":"Labadieboro"}},{"attributes":{"name":"Ms. Norberto Halvorson","age":41,"location":"Lake Brayan"}},{"attributes":{"name":"Bennie Hayes","age":36,"location":"Altenwerthberg"}},{"attributes":{"name":"Ms. Delphia Hilll","age":76,"location":"Alexandria"}},{"attributes":{"name":"Myrtis Mante-Paucek","age":80,"location":"Memphis"}},{"attributes":{"name":"Mr. Ivan O'Keefe","age":45,"location":"West Marcia"}},{"attributes":{"name":"Jody McCullough Jr.","age":18,"location":"Wolffside"}},{"attributes":{"name":"Thurman Cruickshank","age":25,"location":"Covina"}},{"attributes":{"name":"Loretta Howell Sr.","age":65,"location":"Schowalterfurt"}},{"attributes":{"name":"Vincent Yost","age":73,"location":"Konopelskiton"}},{"attributes":{"name":"Ola Hansen","age":73,"location":"East Vallieville"}},{"attributes":{"name":"Mr. Marc Breitenberg","age":43,"location":"Lake Grady"}},{"attributes":{"name":"Lindsey Roberts","age":42,"location":"Normal"}},{"attributes":{"name":"Dewey Pacocha","age":73,"location":"Bellevue"}},{"attributes":{"name":"Freddie Greenholt","age":71,"location":"Robbton"}},{"attributes":{"name":"Dr. Jarret White","age":55,"location":"Findlay"}},{"attributes":{"name":"Mr. Jaime Herman II","age":73,"location":"Isaacborough"}},{"attributes":{"name":"Rubye Reichert II","age":66,"location":"Edgarhaven"}},{"attributes":{"name":"Amanda Blick","age":45,"location":"Edgarstead"}},{"attributes":{"name":"Hilario Sauer","age":66,"location":"Fort Norval"}},{"attributes":{"name":"Alexandro Howe","age":70,"location":"New Ernesto"}},{"attributes":{"name":"Amy Dickinson","age":56,"location":"South Maciestead"}},{"attributes":{"name":"Alberta Dibbert","age":74,"location":"Leathaburgh"}},{"attributes":{"name":"Johathan Koss","age":26,"location":"Atlanta"}},{"attributes":{"name":"Nicole Cummings","age":27,"location":"Stoltenbergville"}},{"attributes":{"name":"Hortense O'Kon","age":74,"location":"North Demarcus"}},{"attributes":{"name":"Leon Pagac","age":50,"location":"Port Ewald"}},{"attributes":{"name":"Marco Quigley","age":28,"location":"North Hiltonview"}},{"attributes":{"name":"Louis Kub III","age":41,"location":"New Emmetville"}},{"attributes":{"name":"Antoinette Price","age":24,"location":"Padbergfort"}},{"attributes":{"name":"Mr. Tanya Greenholt","age":25,"location":"Lake Santa"}},{"attributes":{"name":"Jason Carroll DDS","age":30,"location":"South Lexus"}},{"attributes":{"name":"Shanon Schimmel","age":29,"location":"West Leilastead"}},{"attributes":{"name":"Coy Johnson","age":73,"location":"North Brisa"}},{"attributes":{"name":"Susie Hills","age":69,"location":"West Willow"}},{"attributes":{"name":"Mr. Alfonso Kertzmann","age":65,"location":"Wintheiserchester"}},{"attributes":{"name":"Dr. Dexter Stanton","age":79,"location":"Baumbachside"}},{"attributes":{"name":"Laverne Ledner","age":57,"location":"South Ena"}},{"attributes":{"name":"Vergie Collins","age":37,"location":"Dickinsonton"}},{"attributes":{"name":"Verona Pagac","age":19,"location":"Sayreville"}},{"attributes":{"name":"Kristie Rodriguez","age":48,"location":"Lake Gerson"}},{"attributes":{"name":"Fredrick Breitenberg","age":30,"location":"Bellflower"}},{"attributes":{"name":"Brett Herman-Hermiston","age":34,"location":"New Bedford"}},{"attributes":{"name":"Lucille Hamill","age":76,"location":"Fort Deloresborough"}},{"attributes":{"name":"Enola Armstrong","age":65,"location":"East Vince"}},{"attributes":{"name":"Flora Prohaska","age":75,"location":"Bonita Springs"}},{"attributes":{"name":"Ervin McCullough","age":57,"location":"Nicoleberg"}},{"attributes":{"name":"Lisa Barton","age":37,"location":"Port Tomas"}},{"attributes":{"name":"Andrew Dickinson","age":49,"location":"Handstad"}},{"attributes":{"name":"Lena Jast III","age":27,"location":"South Rogelioport"}},{"attributes":{"name":"Al Lockman","age":31,"location":"Kendrickside"}},{"attributes":{"name":"Eileen Corwin I","age":36,"location":"Aureliehaven"}},{"attributes":{"name":"Luz Osinski","age":52,"location":"Satterfieldworth"}},{"attributes":{"name":"Wanda Bogan Sr.","age":25,"location":"Dessiefurt"}},{"attributes":{"name":"Melyssa Kessler","age":19,"location":"Tiffanyfort"}},{"attributes":{"name":"Joaquin Kertzmann","age":74,"location":"Carterworth"}},{"attributes":{"name":"Miss Amya Rippin","age":46,"location":"New Katelynnbury"}},{"attributes":{"name":"Dave Kerluke-Leannon","age":35,"location":"South Mathewport"}},{"attributes":{"name":"Laila Graham","age":54,"location":"Marquardtberg"}},{"attributes":{"name":"Lynn Johnson","age":57,"location":"Lillianborough"}},{"attributes":{"name":"Gene Dach","age":78,"location":"Lake Alfonzo"}},{"attributes":{"name":"Mable Botsford I","age":59,"location":"Westland"}},{"attributes":{"name":"Jesus Steuber","age":76,"location":"New Addie"}},{"attributes":{"name":"Tate Upton","age":57,"location":"East Fausto"}},{"attributes":{"name":"Christ Kautzer MD","age":52,"location":"College Station"}},{"attributes":{"name":"Dixie Turner","age":35,"location":"Jadynborough"}},{"attributes":{"name":"Miss Lionel Buckridge","age":39,"location":"Port Gage"}},{"attributes":{"name":"Kamron Wolff","age":34,"location":"South Edmond"}},{"attributes":{"name":"Virgil Kiehn","age":57,"location":"San Juan"}},{"attributes":{"name":"Raven Bergnaum-Runolfsson","age":57,"location":"St. Charles"}},{"attributes":{"name":"Rogers Daniel","age":25,"location":"North Araworth"}},{"attributes":{"name":"Miss Tiffany Kutch","age":44,"location":"West Onie"}},{"attributes":{"name":"Samantha Mayert","age":65,"location":"West Ronaldobury"}},{"attributes":{"name":"Yvette Davis PhD","age":32,"location":"Archibaldstad"}},{"attributes":{"name":"Marco Schmitt-Carter DDS","age":74,"location":"Lake Camdenton"}},{"attributes":{"name":"Nadine Bayer","age":45,"location":"Dinoton"}},{"attributes":{"name":"Fausto Boyle","age":56,"location":"Kingsport"}},{"attributes":{"name":"Conrad Satterfield","age":52,"location":"Satterfieldstad"}},{"attributes":{"name":"Rafael Upton","age":68,"location":"Malloryland"}},{"attributes":{"name":"Ferne Gibson","age":69,"location":"Kyraton"}},{"attributes":{"name":"Lloyd Shanahan Sr.","age":68,"location":"Harrisonburg"}},{"attributes":{"name":"Miguel Schroeder","age":62,"location":"Lake Garnettcester"}},{"attributes":{"name":"Ken Schneider","age":42,"location":"West Henriette"}},{"attributes":{"name":"Jean Abernathy","age":62,"location":"Laronchester"}},{"attributes":{"name":"Dr. Arthur Bahringer","age":47,"location":"Rockford"}},{"attributes":{"name":"Mrs. Leilani Powlowski","age":57,"location":"Fort Tarynland"}},{"attributes":{"name":"Olen Gorczany Jr.","age":79,"location":"Nilsmouth"}},{"attributes":{"name":"Jackie Kertzmann","age":20,"location":"East Reneeland"}},{"attributes":{"name":"Bart Fisher","age":43,"location":"Wymanstad"}},{"attributes":{"name":"Alexander Padberg","age":54,"location":"Port Julianne"}},{"attributes":{"name":"Howard Gulgowski","age":72,"location":"Colleenborough"}},{"attributes":{"name":"Annie O'Connell","age":37,"location":"North Anabelburgh"}},{"attributes":{"name":"Dr. Mohammed Trantow","age":58,"location":"Fort Adan"}},{"attributes":{"name":"Kasandra White","age":66,"location":"Mckennacester"}},{"attributes":{"name":"Ford Yundt","age":27,"location":"Santinoville"}},{"attributes":{"name":"Aryanna Kozey","age":68,"location":"Angelitahaven"}},{"attributes":{"name":"Pat Witting","age":44,"location":"East Sydney"}},{"attributes":{"name":"Rebecca Hermann","age":54,"location":"Hegmannstead"}},{"attributes":{"name":"Lynne Fisher","age":79,"location":"Port Louisa"}},{"attributes":{"name":"Darrel Jerde","age":73,"location":"Wintheiserton"}},{"attributes":{"name":"Noah Blanda","age":73,"location":"Cotyfurt"}},{"attributes":{"name":"Dr. Jayde Haag","age":30,"location":"Lubowitzchester"}},{"attributes":{"name":"Velma Rippin","age":43,"location":"Fort Monroe"}},{"attributes":{"name":"Samson Schoen I","age":63,"location":"West Whitney"}},{"attributes":{"name":"Annalise Quitzon","age":74,"location":"Tillmanville"}},{"attributes":{"name":"Brody MacGyver","age":31,"location":"Fort Davetown"}},{"attributes":{"name":"Aaron Wilkinson-Gerhold","age":75,"location":"Jonathanstead"}},{"attributes":{"name":"Ellen Dietrich DVM","age":25,"location":"Codyshire"}},{"attributes":{"name":"Milton Sanford","age":58,"location":"North Las Vegas"}},{"attributes":{"name":"Tyrel Ernser","age":69,"location":"North Jannie"}},{"attributes":{"name":"Delbert Bradtke","age":71,"location":"Fort Elistad"}},{"attributes":{"name":"Courtney Reilly","age":34,"location":"East Eleazarshire"}},{"attributes":{"name":"Thomas Conn","age":53,"location":"Avondale"}},{"attributes":{"name":"Leah Mosciski","age":24,"location":"West Hilda"}},{"attributes":{"name":"Marcus Volkman","age":28,"location":"Thereseville"}},{"attributes":{"name":"Damaris Keebler","age":79,"location":"Littelcester"}},{"attributes":{"name":"Dr. Hector Jenkins","age":61,"location":"Fort Mekhi"}},{"attributes":{"name":"Esteban Trantow PhD","age":28,"location":"Carson City"}},{"attributes":{"name":"Dr. Sammie Cummerata","age":76,"location":"North Eldon"}},{"attributes":{"name":"Wyman Feil","age":71,"location":"Port Willieshire"}},{"attributes":{"name":"Luz Tillman DDS","age":53,"location":"Lynnbury"}},{"attributes":{"name":"Dr. Alejandra Ward","age":43,"location":"East Malikaport"}},{"attributes":{"name":"Mr. Jermaine Sanford","age":73,"location":"Corneliusborough"}},{"attributes":{"name":"Dr. Felicia Bode MD","age":27,"location":"Wilsonport"}},{"attributes":{"name":"Pablo Oberbrunner","age":78,"location":"Fort Garry"}},{"attributes":{"name":"Aimee Bosco","age":65,"location":"New Imogeneboro"}},{"attributes":{"name":"Elroy Nikolaus","age":52,"location":"Port Zola"}},{"attributes":{"name":"Caleb Wisoky","age":63,"location":"North Myrna"}},{"attributes":{"name":"Edd Kertzmann DVM","age":67,"location":"North Bradly"}},{"attributes":{"name":"Laura Kulas","age":29,"location":"Lubowitztown"}},{"attributes":{"name":"Edison Schoen","age":71,"location":"New Ashamouth"}},{"attributes":{"name":"Mr. Rachel Gleichner","age":39,"location":"Fort Henderson"}},{"attributes":{"name":"Daryl Grimes","age":37,"location":"Montgomery"}},{"attributes":{"name":"Lowell Pfeffer I","age":54,"location":"Bakersfield"}},{"attributes":{"name":"Elisabeth Sawayn","age":72,"location":"Ryanton"}},{"attributes":{"name":"Sharon Klocko","age":30,"location":"Bradenton"}},{"attributes":{"name":"Aimee Dicki","age":76,"location":"Kansas City"}},{"attributes":{"name":"Dr. Albert Sawayn","age":22,"location":"Lake Patsyview"}},{"attributes":{"name":"Leland Hayes-Grady","age":62,"location":"Reingerside"}},{"attributes":{"name":"Gordon Nicolas","age":24,"location":"Kutchton"}},{"attributes":{"name":"Sophia West PhD","age":80,"location":"Altoona"}},{"attributes":{"name":"Lisandro Rau","age":25,"location":"Dorcasburgh"}},{"attributes":{"name":"Miss Constance Adams","age":65,"location":"Maryammouth"}},{"attributes":{"name":"Lorena Oberbrunner","age":28,"location":"Port Kristoffertown"}},{"attributes":{"name":"Mr. Johnny Gibson","age":55,"location":"Lehnermouth"}},{"attributes":{"name":"Holly Erdman II","age":34,"location":"South Amiya"}},{"attributes":{"name":"Wellington Padberg","age":66,"location":"Topeka"}},{"attributes":{"name":"Bethany Padberg","age":73,"location":"Casandraton"}},{"attributes":{"name":"Kianna Kutch","age":52,"location":"Eugeniachester"}},{"attributes":{"name":"Karelle Rau","age":51,"location":"New Estebanview"}},{"attributes":{"name":"Miss Jeremy Reichel","age":72,"location":"Laurynton"}},{"attributes":{"name":"Rosalie Berge","age":75,"location":"Sandy Springs"}},{"attributes":{"name":"Cayla McClure","age":56,"location":"Jakehaven"}},{"attributes":{"name":"Salvatore Bechtelar","age":57,"location":"Friesenfield"}},{"attributes":{"name":"Frankie Hilll","age":39,"location":"Lewisville"}},{"attributes":{"name":"Dr. Max Mills","age":25,"location":"Langoshshire"}},{"attributes":{"name":"Moses Larson","age":65,"location":"Tuckahoe"}},{"attributes":{"name":"Camille Considine","age":66,"location":"Derickfort"}},{"attributes":{"name":"Regina Hettinger Jr.","age":63,"location":"West Nathanport"}},{"attributes":{"name":"Libbie Wintheiser","age":72,"location":"Dinoville"}},{"attributes":{"name":"Luke Daniel","age":80,"location":"Vista"}},{"attributes":{"name":"Audrey Bahringer MD","age":70,"location":"Eastvale"}},{"attributes":{"name":"Tommy Marks","age":19,"location":"West Brooklynside"}},{"attributes":{"name":"Micheal Stoltenberg","age":53,"location":"East Willard"}},{"attributes":{"name":"Dr. Timothy Watsica","age":69,"location":"Passaic"}},{"attributes":{"name":"Miss Jeanette Mayer","age":71,"location":"Belleville"}},{"attributes":{"name":"Rickie Ernser","age":25,"location":"Cieloburgh"}},{"attributes":{"name":"Catharine Swift","age":40,"location":"Cedrickville"}},{"attributes":{"name":"Ansley Rolfson","age":49,"location":"Alfboro"}},{"attributes":{"name":"Dr. Alejandro Trantow","age":48,"location":"North Catherinechester"}},{"attributes":{"name":"Ford O'Connell","age":30,"location":"East Marinaview"}},{"attributes":{"name":"Blake Halvorson","age":53,"location":"Olsonfield"}},{"attributes":{"name":"Alton Price Jr.","age":51,"location":"Lake Ansel"}},{"attributes":{"name":"Ellen Bailey","age":38,"location":"Olsonfurt"}},{"attributes":{"name":"Aniyah Thiel","age":79,"location":"Lake Jessy"}},{"attributes":{"name":"Celine Braun","age":63,"location":"West Trenton"}},{"attributes":{"name":"Ashley Wuckert","age":61,"location":"North Hermina"}},{"attributes":{"name":"Timmy Reichel","age":23,"location":"New Carmelo"}},{"attributes":{"name":"Dr. Beverly Olson","age":47,"location":"Bretfurt"}},{"attributes":{"name":"Kate Hansen","age":35,"location":"Lawrence"}},{"attributes":{"name":"Nichole Beatty","age":32,"location":"Lelafort"}},{"attributes":{"name":"Jesus Nicolas-Johnson","age":39,"location":"Kubside"}},{"attributes":{"name":"Guadalupe Lesch","age":71,"location":"Luciostad"}},{"attributes":{"name":"Miss Zelda Orn","age":61,"location":"Fort Millieside"}},{"attributes":{"name":"Kaitlin Dicki","age":26,"location":"Welchbury"}},{"attributes":{"name":"Irving Little","age":33,"location":"East Magdalenville"}},{"attributes":{"name":"Sonya Lubowitz","age":60,"location":"Blandafurt"}},{"attributes":{"name":"Terrence Hamill","age":25,"location":"East Deangeloport"}},{"attributes":{"name":"Evan Frami","age":70,"location":"New Jackson"}},{"attributes":{"name":"Mr. Ransom Ward","age":40,"location":"Annandale"}},{"attributes":{"name":"Michael Jerde PhD","age":29,"location":"Alexandreafield"}},{"attributes":{"name":"Leila Kautzer","age":21,"location":"Port Sherwood"}},{"attributes":{"name":"Reilly Runte","age":59,"location":"Robertsport"}},{"attributes":{"name":"Michael Paucek","age":49,"location":"Rodshire"}},{"attributes":{"name":"Mrs. Emilio Roob","age":74,"location":"Garfieldmouth"}},{"attributes":{"name":"Nina Flatley","age":33,"location":"West Johnsonfurt"}},{"attributes":{"name":"Emmett Windler-Zieme","age":18,"location":"Schuylermouth"}},{"attributes":{"name":"Mr. Telly Windler","age":41,"location":"East Elaina"}},{"attributes":{"name":"Noel Kautzer","age":41,"location":"North Adam"}},{"attributes":{"name":"Julie Hintz","age":55,"location":"South Bridgetstad"}},{"attributes":{"name":"Loma Spencer","age":70,"location":"Fort Federicofield"}},{"attributes":{"name":"Mr. Horace Ryan","age":67,"location":"Port Antonietta"}},{"attributes":{"name":"Guiseppe Beatty","age":78,"location":"North Highlands"}},{"attributes":{"name":"Charlene Swaniawski","age":60,"location":"Port Hassanberg"}},{"attributes":{"name":"Mamie Kuhn","age":72,"location":"Connbury"}},{"attributes":{"name":"Elenor Weimann","age":74,"location":"South Zelmaboro"}},{"attributes":{"name":"Cicero Mosciski","age":21,"location":"Bernadineport"}},{"attributes":{"name":"Zelma Kiehn","age":56,"location":"Roswell"}},{"attributes":{"name":"Lue Jacobs","age":57,"location":"Hadleyhaven"}},{"attributes":{"name":"Samantha Gerlach","age":41,"location":"Swaniawskiworth"}},{"attributes":{"name":"Lee Carroll","age":62,"location":"Sheridanville"}},{"attributes":{"name":"Mrs. Janae Runte","age":77,"location":"Kihnstad"}},{"attributes":{"name":"Dr. Zachariah Greenfelder MD","age":30,"location":"Runtefurt"}},{"attributes":{"name":"Mrs. Elaine Bogan","age":38,"location":"Christopview"}},{"attributes":{"name":"Kim Kihn","age":74,"location":"Ashleecester"}},{"attributes":{"name":"Willie Douglas I","age":76,"location":"South Lailaland"}},{"attributes":{"name":"Jeannie Lemke","age":18,"location":"South Wyattville"}},{"attributes":{"name":"Allen Cole","age":66,"location":"Gardena"}},{"attributes":{"name":"King West","age":69,"location":"West Dena"}},{"attributes":{"name":"Marion Lehner","age":63,"location":"Fort Kacey"}},{"attributes":{"name":"Angelina Hansen","age":80,"location":"Hoegerboro"}},{"attributes":{"name":"Willie Ritchie-Schumm","age":39,"location":"East Amirbury"}},{"attributes":{"name":"Giovanny Block","age":71,"location":"North Anya"}},{"attributes":{"name":"Estelle Jacobson","age":50,"location":"Matildamouth"}},{"attributes":{"name":"Dan Terry-Schamberger Sr.","age":25,"location":"Purdyport"}},{"attributes":{"name":"Jeremy Renner","age":78,"location":"Bethlehem"}},{"attributes":{"name":"Nelson Brekke II","age":77,"location":"Garthton"}},{"attributes":{"name":"Leslie Kassulke","age":23,"location":"West Joychester"}},{"attributes":{"name":"Ben Reichert","age":34,"location":"Elsiestad"}},{"attributes":{"name":"Dr. Melvin Hettinger DVM","age":61,"location":"Clovis"}},{"attributes":{"name":"Bernadette Bailey","age":62,"location":"Schmittberg"}},{"attributes":{"name":"Lauren Haley","age":62,"location":"West Allis"}},{"attributes":{"name":"Kurtis Zemlak-Lemke","age":34,"location":"West Zackery"}},{"attributes":{"name":"Joan Parisian","age":41,"location":"Scottyworth"}},{"attributes":{"name":"Jacob Nitzsche","age":56,"location":"Gibsontown"}},{"attributes":{"name":"Frankie Lang","age":54,"location":"Hemet"}},{"attributes":{"name":"Mrs. Bobbie Kilback","age":73,"location":"New Rosalee"}},{"attributes":{"name":"Abigale Labadie","age":18,"location":"Purdychester"}},{"attributes":{"name":"Mr. Maxwell Boehm","age":26,"location":"North Hertha"}},{"attributes":{"name":"Eliane Bednar","age":72,"location":"Jeraldland"}},{"attributes":{"name":"Halle Grant MD","age":24,"location":"Jerdeburgh"}},{"attributes":{"name":"Santos Stamm","age":62,"location":"Lake Johannaville"}},{"attributes":{"name":"Dr. Jaron Kunze","age":48,"location":"Lafayette"}},{"attributes":{"name":"Anna Bechtelar","age":54,"location":"Fond du Lac"}},{"attributes":{"name":"Rosa McCullough","age":42,"location":"Kundeville"}},{"attributes":{"name":"David Cruickshank","age":44,"location":"Guillermoside"}},{"attributes":{"name":"Daryl Feil","age":73,"location":"Santinaside"}},{"attributes":{"name":"Dr. Tony Grady","age":43,"location":"East Janickport"}},{"attributes":{"name":"Glenn Thompson","age":38,"location":"Enochshire"}},{"attributes":{"name":"Lavada Purdy","age":27,"location":"Lake Malvina"}},{"attributes":{"name":"Caleb Bode","age":32,"location":"Surprise"}},{"attributes":{"name":"Lilian Runolfsson","age":77,"location":"Fort Joseph"}},{"attributes":{"name":"Hilda Schultz","age":78,"location":"Lake Donny"}},{"attributes":{"name":"Carla Sporer","age":70,"location":"West Fredyhaven"}},{"attributes":{"name":"Zachary Smitham","age":80,"location":"Hammond"}},{"attributes":{"name":"Pascale Cummings","age":41,"location":"East Dimitriland"}},{"attributes":{"name":"Janis Pagac DVM","age":29,"location":"North Sienna"}},{"attributes":{"name":"Dominick Zulauf MD","age":76,"location":"Curtisside"}},{"attributes":{"name":"Blanche Schroeder PhD","age":22,"location":"Nienowfurt"}},{"attributes":{"name":"Cody Grady IV","age":34,"location":"Poway"}},{"attributes":{"name":"Jesus Sauer","age":75,"location":"Mckenzieburgh"}},{"attributes":{"name":"Winston Armstrong","age":39,"location":"West Dee"}},{"attributes":{"name":"Debra Nienow","age":77,"location":"New Nolan"}},{"attributes":{"name":"Angelica Hickle","age":59,"location":"Buena Park"}},{"attributes":{"name":"Everett Waters","age":68,"location":"Judyside"}},{"attributes":{"name":"Victor Herzog","age":19,"location":"West Sacramento"}},{"attributes":{"name":"Grady Bauch","age":62,"location":"Andrewview"}},{"attributes":{"name":"Bettie Beatty","age":76,"location":"West Johanburgh"}},{"attributes":{"name":"Johnnie Altenwerth","age":80,"location":"Santee"}},{"attributes":{"name":"Tristian Lynch","age":57,"location":"Antwanfurt"}},{"attributes":{"name":"Eleazar Bosco","age":78,"location":"Claudfurt"}},{"attributes":{"name":"Hilda Kunze","age":31,"location":"Grand Rapids"}},{"attributes":{"name":"Wilbur Zulauf","age":47,"location":"East Jameson"}},{"attributes":{"name":"Shelia Gutmann III","age":69,"location":"Orland Park"}},{"attributes":{"name":"Bobby Mills","age":73,"location":"Johanncester"}},{"attributes":{"name":"Gregory Schoen","age":77,"location":"East Ubaldomouth"}},{"attributes":{"name":"Dewitt King","age":50,"location":"New Leifland"}},{"attributes":{"name":"Amber Olson","age":37,"location":"Roseborough"}},{"attributes":{"name":"Megane Medhurst","age":69,"location":"Leslycester"}},{"attributes":{"name":"Eloise Fritsch","age":40,"location":"Cheyenne"}},{"attributes":{"name":"Cora Jones","age":28,"location":"Eagan"}},{"attributes":{"name":"Damien Orn","age":60,"location":"Loveland"}},{"attributes":{"name":"Willard Jacobs","age":46,"location":"Lake Camylleview"}},{"attributes":{"name":"Sherri Wisoky","age":63,"location":"New Waino"}},{"attributes":{"name":"Dr. Glenda Dickens","age":27,"location":"Fort Peggieton"}},{"attributes":{"name":"Jarvis Corwin-Grant","age":41,"location":"Lake Julianne"}},{"attributes":{"name":"Marlin Keeling","age":70,"location":"West Devanstad"}},{"attributes":{"name":"Ms. Blake Witting MD","age":54,"location":"Bergetown"}},{"attributes":{"name":"Dorian Konopelski","age":59,"location":"Loyalfield"}},{"attributes":{"name":"Denise Buckridge","age":59,"location":"Folsom"}},{"attributes":{"name":"Elda Cummerata-McDermott","age":37,"location":"West Katelynnstead"}},{"attributes":{"name":"Andreane Aufderhar","age":74,"location":"Fort Pabloville"}},{"attributes":{"name":"Maci Kub","age":38,"location":"Bakersfield"}},{"attributes":{"name":"Cody Gleason","age":28,"location":"New Eladio"}},{"attributes":{"name":"Halle Halvorson","age":55,"location":"South Misael"}},{"attributes":{"name":"Roland Kunze","age":34,"location":"Pabloton"}},{"attributes":{"name":"Dr. Carrie Kub","age":21,"location":"West Tre"}},{"attributes":{"name":"Devin Harvey","age":20,"location":"Lysannestead"}},{"attributes":{"name":"Woodrow Schulist","age":68,"location":"West Queenie"}},{"attributes":{"name":"Clementine Leuschke DDS","age":29,"location":"New Emmie"}},{"attributes":{"name":"Simon Legros","age":34,"location":"Boyerworth"}},{"attributes":{"name":"Anna Rogahn II","age":42,"location":"Yuma"}},{"attributes":{"name":"Laverne Price","age":79,"location":"Port Shaynaboro"}},{"attributes":{"name":"Brendan Bednar","age":34,"location":"Hintzfield"}},{"attributes":{"name":"David Abbott PhD","age":47,"location":"Mesquite"}},{"attributes":{"name":"Abel Funk","age":33,"location":"The Woodlands"}},{"attributes":{"name":"Mark Bosco-Hodkiewicz","age":68,"location":"North Nestorchester"}},{"attributes":{"name":"Audrey Prosacco","age":42,"location":"South Ricoville"}},{"attributes":{"name":"Felicia McLaughlin","age":62,"location":"South Deanfort"}},{"attributes":{"name":"Juanita Haley","age":23,"location":"Maggiomouth"}},{"attributes":{"name":"Doreen Ebert","age":19,"location":"Dandrefurt"}},{"attributes":{"name":"Alfredo Nicolas","age":46,"location":"New Myrtietown"}},{"attributes":{"name":"Alonzo Kuhic-Jacobson","age":73,"location":"West Hadleyfurt"}},{"attributes":{"name":"Darion Schinner","age":56,"location":"Haleymouth"}},{"attributes":{"name":"Mona Gleichner-Schuster","age":53,"location":"Fort Alexischester"}},{"attributes":{"name":"Tracy Hills","age":71,"location":"New Kamren"}},{"attributes":{"name":"Mr. Rachael Bauch","age":79,"location":"Wymanshire"}},{"attributes":{"name":"Patrick Will","age":44,"location":"Iowa City"}},{"attributes":{"name":"Ms. Rosie Strosin","age":75,"location":"Elenorworth"}},{"attributes":{"name":"Clarence Flatley","age":39,"location":"Port Ivyhaven"}},{"attributes":{"name":"Dalton Bernhard IV","age":65,"location":"Lake Ryleychester"}},{"attributes":{"name":"Preston Leffler","age":79,"location":"Lake Jordonbury"}},{"attributes":{"name":"Georgianna Leannon","age":18,"location":"Chanceboro"}},{"attributes":{"name":"Andrew Stiedemann","age":22,"location":"Madysonstead"}},{"attributes":{"name":"Casper Padberg","age":50,"location":"Lake Corbin"}},{"attributes":{"name":"Dr. Joanny Bergstrom DVM","age":45,"location":"Patsyworth"}},{"attributes":{"name":"Juan Cassin IV","age":56,"location":"North Lacy"}},{"attributes":{"name":"Travis Koch","age":53,"location":"New Keeganchester"}},{"attributes":{"name":"Bessie Ledner-Bashirian DVM","age":62,"location":"New Arely"}},{"attributes":{"name":"Raul Carter","age":42,"location":"Adellebury"}},{"attributes":{"name":"Gaetano Huel Jr.","age":35,"location":"East Luella"}},{"attributes":{"name":"Katlyn Sawayn","age":27,"location":"Hendersonville"}},{"attributes":{"name":"Samantha Cassin","age":32,"location":"West Bernardo"}},{"attributes":{"name":"Nathan Schaden-Quitzon","age":70,"location":"Francescaworth"}},{"attributes":{"name":"Geneva Treutel","age":29,"location":"Neldabury"}},{"attributes":{"name":"Ms. Kate MacGyver","age":56,"location":"Watersstad"}},{"attributes":{"name":"Doreen Hackett","age":21,"location":"North Erwin"}},{"attributes":{"name":"Reinhold Wisozk","age":31,"location":"Dominiquebury"}},{"attributes":{"name":"Jana Blanda","age":78,"location":"Torptown"}},{"attributes":{"name":"Mossie Reynolds","age":48,"location":"University"}},{"attributes":{"name":"Scot Koch","age":69,"location":"New Tomstad"}},{"attributes":{"name":"Hillard Durgan","age":50,"location":"Daltonbury"}},{"attributes":{"name":"Rhonda Olson","age":32,"location":"Lake Isabellafield"}},{"attributes":{"name":"Dr. Felipe Gusikowski","age":41,"location":"Littletown"}},{"attributes":{"name":"Joanne Thiel","age":21,"location":"Lake Malvinaville"}},{"attributes":{"name":"Ms. Elsie Farrell","age":79,"location":"Jacksonville"}},{"attributes":{"name":"Erin Brakus","age":40,"location":"New Angie"}},{"attributes":{"name":"Ellen Tromp","age":44,"location":"Destinitown"}},{"attributes":{"name":"Mrs. Kelley Runolfsdottir-Cremin","age":50,"location":"Koelpinberg"}},{"attributes":{"name":"Joel O'Kon","age":56,"location":"West Elisabeth"}},{"attributes":{"name":"Madeline Yost","age":45,"location":"Hialeah"}},{"attributes":{"name":"Emilie O'Keefe","age":52,"location":"Kettering"}},{"attributes":{"name":"Jonas Gislason","age":67,"location":"Lake Loisstead"}},{"attributes":{"name":"Rosendo Rice","age":32,"location":"West Landenfurt"}},{"attributes":{"name":"Mrs. Annabelle Christiansen","age":40,"location":"Bertramtown"}},{"attributes":{"name":"Flora McKenzie","age":35,"location":"Cedar Rapids"}},{"attributes":{"name":"Andre Jacobs","age":42,"location":"North Elinor"}},{"attributes":{"name":"Megan Wintheiser","age":31,"location":"Boganport"}},{"attributes":{"name":"Brycen Schmidt V","age":58,"location":"East Brennanmouth"}},{"attributes":{"name":"Mr. Jamie Schimmel","age":65,"location":"Bellingham"}},{"attributes":{"name":"Hayden Rogahn","age":18,"location":"Watsonville"}},{"attributes":{"name":"Brendan Daniel","age":45,"location":"Port Marcos"}},{"attributes":{"name":"Dr. Brenda Ferry","age":57,"location":"Adelbertside"}},{"attributes":{"name":"Dr. Assunta Pagac PhD","age":51,"location":"Redding"}},{"attributes":{"name":"Rita Dietrich PhD","age":56,"location":"Jakubowskiland"}},{"attributes":{"name":"Alberta Murazik","age":28,"location":"Bernierbury"}},{"attributes":{"name":"Buster Zulauf","age":51,"location":"Farmington"}},{"attributes":{"name":"Amara Ernser","age":52,"location":"Steveside"}},{"attributes":{"name":"Abel Kutch MD","age":43,"location":"North Thurman"}},{"attributes":{"name":"Arturo Wilkinson","age":75,"location":"Robelport"}},{"attributes":{"name":"Jeanette Dickens","age":29,"location":"New Coltchester"}},{"attributes":{"name":"Ubaldo Hudson Sr.","age":64,"location":"McCluremouth"}},{"attributes":{"name":"Violette Huels","age":35,"location":"Lucienneville"}},{"attributes":{"name":"Samuel Metz","age":66,"location":"Idaho Falls"}},{"attributes":{"name":"Lynette Hettinger","age":64,"location":"Lake Kailey"}},{"attributes":{"name":"Maegan Parisian","age":60,"location":"Palmdale"}},{"attributes":{"name":"Wade Fahey","age":31,"location":"Clemensfort"}},{"attributes":{"name":"Ashley Altenwerth","age":40,"location":"South Roxane"}},{"attributes":{"name":"Stephany Welch","age":44,"location":"North Weldonberg"}},{"attributes":{"name":"Louise Blick","age":38,"location":"Baileyboro"}},{"attributes":{"name":"Geoffrey Rosenbaum-Lowe","age":18,"location":"Bergecester"}},{"attributes":{"name":"Douglas Ortiz","age":27,"location":"West Annetta"}},{"attributes":{"name":"Marina Cruickshank","age":67,"location":"Elsachester"}},{"attributes":{"name":"Cameron Ledner","age":60,"location":"South Jordan"}},{"attributes":{"name":"Cristina Brakus","age":40,"location":"Rosafort"}},{"attributes":{"name":"Kristie Watsica DVM","age":24,"location":"Grahamfield"}},{"attributes":{"name":"Rickey Hilpert","age":31,"location":"Ryanmouth"}},{"attributes":{"name":"Joelle Donnelly","age":69,"location":"Beerchester"}},{"attributes":{"name":"Anita Price-Halvorson","age":69,"location":"Lorenaview"}},{"attributes":{"name":"Veda Beatty","age":52,"location":"Danbury"}},{"attributes":{"name":"Kristie Mann","age":48,"location":"New Gregboro"}},{"attributes":{"name":"Elizabeth Mills","age":42,"location":"Angelicashire"}},{"attributes":{"name":"Brent Runte","age":37,"location":"Pearland"}},{"attributes":{"name":"Cayla Schmidt","age":36,"location":"Fort Marcelo"}},{"attributes":{"name":"Helen Hermiston-Welch","age":49,"location":"East Libbyberg"}},{"attributes":{"name":"Tabitha Reilly","age":20,"location":"Wildermanfield"}},{"attributes":{"name":"Jermey Towne","age":35,"location":"Jaronland"}},{"attributes":{"name":"Mr. Daphney Boyer","age":40,"location":"Port Germainemouth"}},{"attributes":{"name":"Adaline Smitham","age":29,"location":"Nasirton"}},{"attributes":{"name":"Herbert Koepp","age":22,"location":"Westminster"}},{"attributes":{"name":"Andy Hand","age":66,"location":"Lake Tonifield"}},{"attributes":{"name":"Sammy MacGyver","age":52,"location":"Skokie"}},{"attributes":{"name":"Rey Cormier","age":56,"location":"East Geovanyhaven"}},{"attributes":{"name":"Kelly Denesik","age":24,"location":"Aubreystead"}},{"attributes":{"name":"Archie Emard","age":24,"location":"Abbottcester"}},{"attributes":{"name":"Alicia Wolff","age":76,"location":"East Helenborough"}},{"attributes":{"name":"Alisa Lesch","age":35,"location":"Wilburnside"}},{"attributes":{"name":"Della Auer-Moore","age":31,"location":"North Brandistead"}},{"attributes":{"name":"Ron Schmitt PhD","age":45,"location":"East Justonstead"}},{"attributes":{"name":"Janae Dooley","age":68,"location":"Kovacekland"}},{"attributes":{"name":"Ms. Howard Schiller Jr.","age":53,"location":"Gislasonberg"}},{"attributes":{"name":"Dr. Erika VonRueden","age":27,"location":"Gregoriofort"}},{"attributes":{"name":"Arlene Marvin","age":55,"location":"Stiedemannport"}},{"attributes":{"name":"Nicole Haag-Ryan","age":48,"location":"Moline"}},{"attributes":{"name":"Sophia Wisoky","age":64,"location":"Fort Ashlee"}},{"attributes":{"name":"Cristina Smith","age":34,"location":"Redondo Beach"}},{"attributes":{"name":"Matteo McDermott","age":58,"location":"Citrus Heights"}},{"attributes":{"name":"Renee Schimmel","age":77,"location":"Alexaboro"}},{"attributes":{"name":"Lucious Schowalter","age":66,"location":"Dallasfort"}},{"attributes":{"name":"Freida Watsica I","age":74,"location":"East Dorothea"}},{"attributes":{"name":"Corrine Trantow","age":38,"location":"North Elodyborough"}},{"attributes":{"name":"Mario Tromp","age":44,"location":"East Irma"}},{"attributes":{"name":"Clay Ferry-Strosin","age":25,"location":"Damianboro"}},{"attributes":{"name":"Willard Strosin","age":60,"location":"Bel Air South"}},{"attributes":{"name":"Emanuel Kertzmann","age":80,"location":"Walterfurt"}},{"attributes":{"name":"Dr. Rick Yost","age":42,"location":"Arturoworth"}},{"attributes":{"name":"Cindy Bechtelar MD","age":41,"location":"North Theresia"}},{"attributes":{"name":"Hal Schmitt","age":72,"location":"East Solon"}},{"attributes":{"name":"Lynne Larson","age":78,"location":"West Alanfield"}},{"attributes":{"name":"Nikki Denesik","age":53,"location":"Oakland Park"}},{"attributes":{"name":"Pete Effertz","age":65,"location":"Newport News"}},{"attributes":{"name":"Annie O'Hara-Hickle","age":79,"location":"South Mollieberg"}},{"attributes":{"name":"Cristian Boyle","age":45,"location":"Port Jakaylaboro"}},{"attributes":{"name":"Steve Botsford","age":63,"location":"North Benniefort"}},{"attributes":{"name":"Robin Crist","age":45,"location":"Eugene"}},{"attributes":{"name":"Dr. Cary Mohr IV","age":68,"location":"North Rosemarieboro"}},{"attributes":{"name":"Archibald Gusikowski","age":48,"location":"Billings"}},{"attributes":{"name":"Mona Marquardt I","age":66,"location":"Harryhaven"}},{"attributes":{"name":"Eliza Johnson","age":53,"location":"Marianshire"}},{"attributes":{"name":"David Considine","age":23,"location":"Murazikland"}},{"attributes":{"name":"Norbert Adams","age":67,"location":"Union City"}},{"attributes":{"name":"Ms. Terence Ratke","age":42,"location":"South Jade"}},{"attributes":{"name":"Clark Lowe Jr.","age":75,"location":"South Gayle"}},{"attributes":{"name":"Elwin Runolfsson","age":66,"location":"Nienowbury"}},{"attributes":{"name":"Kari Kuvalis","age":37,"location":"Lake Amiya"}},{"attributes":{"name":"Jerrell Nitzsche","age":18,"location":"Schummstad"}},{"attributes":{"name":"Mrs. Eliseo Lesch","age":73,"location":"Sayreville"}},{"attributes":{"name":"Guadalupe Lynch","age":25,"location":"Erwinmouth"}},{"attributes":{"name":"Mark Kassulke","age":58,"location":"Middletown"}},{"attributes":{"name":"Dr. Kim Langosh","age":44,"location":"New Ollie"}},{"attributes":{"name":"Julio Lynch","age":63,"location":"Geovannyton"}},{"attributes":{"name":"Maeve Effertz","age":51,"location":"Hammesshire"}},{"attributes":{"name":"Guadalupe Will","age":33,"location":"Lexiborough"}},{"attributes":{"name":"Lucas O'Reilly","age":67,"location":"Pocatello"}},{"attributes":{"name":"Mac Abshire II","age":27,"location":"Grapevine"}},{"attributes":{"name":"Corine Dickinson","age":61,"location":"Blickburgh"}},{"attributes":{"name":"Nettie Moen-Hills","age":69,"location":"Port Camronshire"}},{"attributes":{"name":"Leda Bode","age":51,"location":"Manhattan"}},{"attributes":{"name":"Joann Swift Sr.","age":66,"location":"Lake Lewisstead"}},{"attributes":{"name":"Francisco Beatty","age":70,"location":"New Eulah"}},{"attributes":{"name":"Milton Hammes","age":28,"location":"Fort Herta"}},{"attributes":{"name":"Trenton Koss","age":66,"location":"Port Francesca"}},{"attributes":{"name":"Danny Berge","age":57,"location":"East Jaylon"}},{"attributes":{"name":"Nicholas Breitenberg","age":22,"location":"South Lexi"}},{"attributes":{"name":"Rodney Schamberger","age":55,"location":"Shermanville"}},{"attributes":{"name":"Bonnie Cronin","age":61,"location":"New Rosalynview"}},{"attributes":{"name":"Marilyn Waelchi","age":27,"location":"Lombard"}},{"attributes":{"name":"Sherri Christiansen","age":57,"location":"Rathtown"}},{"attributes":{"name":"Leon Herman","age":66,"location":"Mohrstad"}},{"attributes":{"name":"Patty Lynch","age":26,"location":"Strongsville"}},{"attributes":{"name":"Werner Kuvalis","age":67,"location":"Sammyside"}},{"attributes":{"name":"Shawn Corkery DDS","age":73,"location":"Layton"}},{"attributes":{"name":"Susan Bergnaum","age":77,"location":"Pocatello"}},{"attributes":{"name":"Christa Bayer","age":19,"location":"North Chandlerland"}},{"attributes":{"name":"Dr. Nelson Anderson","age":19,"location":"Merrittfield"}},{"attributes":{"name":"Karla Haag","age":60,"location":"West Sacramento"}},{"attributes":{"name":"Tabitha Gorczany","age":67,"location":"Justiceview"}},{"attributes":{"name":"Nora Konopelski DVM","age":42,"location":"North Golda"}},{"attributes":{"name":"Josephine Gusikowski Sr.","age":51,"location":"Huldamouth"}},{"attributes":{"name":"Irving Mohr","age":25,"location":"Sawaynshire"}},{"attributes":{"name":"Lauriane Morissette","age":51,"location":"Kevenfurt"}},{"attributes":{"name":"Nathen Osinski","age":22,"location":"Hattiesburg"}},{"attributes":{"name":"Clayton Emard","age":54,"location":"New Sharon"}},{"attributes":{"name":"Karolann Kuvalis","age":59,"location":"Murazikfield"}},{"attributes":{"name":"Stacey Grady","age":43,"location":"Lake Shyanne"}},{"attributes":{"name":"Kay Wolf","age":22,"location":"North Haylieborough"}},{"attributes":{"name":"Madeline Conn","age":20,"location":"West Kamronberg"}},{"attributes":{"name":"Felicity Schowalter DDS","age":38,"location":"Lansing"}},{"attributes":{"name":"Derrick Gulgowski","age":46,"location":"South Valley"}},{"attributes":{"name":"Margarett Larkin","age":43,"location":"North Lurlineton"}},{"attributes":{"name":"Teri Kohler","age":30,"location":"Arelyville"}},{"attributes":{"name":"Aniya Thompson","age":43,"location":"Hellerstead"}},{"attributes":{"name":"Diamond Medhurst","age":47,"location":"Lake Carlostown"}},{"attributes":{"name":"Francis Cartwright","age":23,"location":"Ferryton"}},{"attributes":{"name":"Dr. Ida Rolfson","age":63,"location":"Lake Tyriquechester"}},{"attributes":{"name":"Cierra McDermott","age":31,"location":"Youngstown"}},{"attributes":{"name":"Robert Stehr","age":67,"location":"Palmatown"}},{"attributes":{"name":"Mr. John Kautzer","age":51,"location":"Fort Linniefurt"}},{"attributes":{"name":"Frederique Parisian III","age":51,"location":"Union City"}},{"attributes":{"name":"Clinton Legros","age":28,"location":"Judahshire"}},{"attributes":{"name":"Sheldon Kuvalis","age":66,"location":"Fort Brandy"}},{"attributes":{"name":"Patricia Reinger","age":50,"location":"East Elizabethborough"}},{"attributes":{"name":"Vivian Schultz-Stehr","age":26,"location":"Glen Burnie"}},{"attributes":{"name":"Elias Lowe","age":18,"location":"Klockofurt"}},{"attributes":{"name":"Dr. Naomi Rodriguez","age":57,"location":"New Cassieport"}},{"attributes":{"name":"Nakia O'Reilly","age":74,"location":"Rippinside"}},{"attributes":{"name":"Louise Quigley","age":45,"location":"Jacobsonberg"}},{"attributes":{"name":"Donna Purdy","age":54,"location":"Port Cecil"}},{"attributes":{"name":"Roger Emmerich-Howell DDS","age":30,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Johnathan Luettgen","age":59,"location":"South Louvenia"}},{"attributes":{"name":"Marcella Walter","age":54,"location":"North Janisborough"}},{"attributes":{"name":"Darren Ondricka","age":23,"location":"Amayaport"}},{"attributes":{"name":"Verla Wintheiser","age":70,"location":"Lake Catherine"}},{"attributes":{"name":"Miss Matthew Gusikowski","age":39,"location":"North Delphia"}},{"attributes":{"name":"Verna Dicki","age":18,"location":"Modesto"}},{"attributes":{"name":"Emma Kovacek","age":41,"location":"Spring"}},{"attributes":{"name":"Ashley Herzog","age":78,"location":"Kundeburgh"}},{"attributes":{"name":"Emery Rippin Jr.","age":80,"location":"Phoenix"}},{"attributes":{"name":"Courtney Schuppe I","age":67,"location":"East Berthabury"}},{"attributes":{"name":"Alvin Shields","age":20,"location":"Burleson"}},{"attributes":{"name":"Theodore Fay","age":35,"location":"Vidaberg"}},{"attributes":{"name":"Miss Tammy Powlowski","age":45,"location":"East Carmine"}},{"attributes":{"name":"Araceli Murphy","age":75,"location":"Waltham"}},{"attributes":{"name":"Lora Kohler","age":23,"location":"Damionshire"}},{"attributes":{"name":"Stone Boyer II","age":30,"location":"Lake Xander"}},{"attributes":{"name":"Jamir Kerluke","age":51,"location":"Jerryfield"}},{"attributes":{"name":"Solon Windler","age":63,"location":"South Ona"}},{"attributes":{"name":"Julien Roberts","age":71,"location":"Fort Hazel"}},{"attributes":{"name":"Whitney Schowalter","age":18,"location":"Mooreland"}},{"attributes":{"name":"Coralie Batz","age":29,"location":"West Dameon"}},{"attributes":{"name":"Enrique Beer","age":77,"location":"East Josue"}},{"attributes":{"name":"Chester Greenholt-Deckow","age":30,"location":"Sanford"}},{"attributes":{"name":"Timmy Veum MD","age":77,"location":"Lake Bradly"}},{"attributes":{"name":"Lynda Littel","age":56,"location":"Bowling Green"}},{"attributes":{"name":"Mr. Nick Hauck","age":54,"location":"Dundalk"}},{"attributes":{"name":"Myriam Harber","age":50,"location":"Fort Gildabury"}},{"attributes":{"name":"Mrs. Floyd Weissnat","age":62,"location":"South Laurianne"}},{"attributes":{"name":"Isabel Beahan","age":55,"location":"Lubowitzchester"}},{"attributes":{"name":"Jodi Abernathy-Luettgen","age":63,"location":"Stiedemannville"}},{"attributes":{"name":"Dayton Lindgren DVM","age":56,"location":"Norwalk"}},{"attributes":{"name":"Sammy Kerluke","age":70,"location":"Kihnport"}},{"attributes":{"name":"Ms. Arjun Mertz-Bailey","age":22,"location":"Fremont"}},{"attributes":{"name":"Chloe Kihn","age":49,"location":"New Marielaport"}},{"attributes":{"name":"Kennith Fahey","age":55,"location":"Battle Creek"}},{"attributes":{"name":"Mr. Santa Bode","age":53,"location":"West Wardfort"}},{"attributes":{"name":"Jerry Ortiz","age":78,"location":"Fort Madelynhaven"}},{"attributes":{"name":"Cali Schimmel","age":58,"location":"Abrahamberg"}},{"attributes":{"name":"Itzel Jaskolski","age":23,"location":"Jaredworth"}},{"attributes":{"name":"Patti Toy","age":71,"location":"Daytona Beach"}},{"attributes":{"name":"Tomas Nienow","age":55,"location":"Cincinnati"}},{"attributes":{"name":"Christie Cartwright","age":64,"location":"Lake Jonathanside"}},{"attributes":{"name":"Nelle Luettgen","age":32,"location":"Lockmanberg"}},{"attributes":{"name":"Ramona Graham","age":31,"location":"Nashua"}},{"attributes":{"name":"Johnathon Frami","age":65,"location":"Hettingerfield"}},{"attributes":{"name":"Mr. Evangeline Brakus","age":54,"location":"O'Konshire"}},{"attributes":{"name":"Dr. Frederick Hoeger II","age":75,"location":"Murrieta"}},{"attributes":{"name":"Estelle Kuvalis II","age":22,"location":"Legrostown"}},{"attributes":{"name":"Clyde Schamberger","age":73,"location":"East Kavon"}},{"attributes":{"name":"Anthony Wisoky","age":60,"location":"Jaskolskibury"}},{"attributes":{"name":"Audreanne Carter","age":21,"location":"North Cesartown"}},{"attributes":{"name":"Virgil Tremblay","age":37,"location":"Clearwater"}},{"attributes":{"name":"Elias Bernier","age":78,"location":"Chelseybury"}},{"attributes":{"name":"Ben Collins","age":38,"location":"Kennithview"}},{"attributes":{"name":"Lisette Kuhn","age":79,"location":"Grayceside"}},{"attributes":{"name":"Lauren Schultz","age":35,"location":"West Lyda"}},{"attributes":{"name":"Jessie Ullrich","age":64,"location":"Lueilwitzfield"}},{"attributes":{"name":"Dr. Foster Sipes Sr.","age":74,"location":"La Crosse"}},{"attributes":{"name":"Jackie Jakubowski","age":70,"location":"Deckowland"}},{"attributes":{"name":"Randolph Haley","age":61,"location":"Rethaborough"}},{"attributes":{"name":"Marion Friesen","age":76,"location":"Tuckahoe"}},{"attributes":{"name":"Bonnie Kiehn","age":28,"location":"Kirkland"}},{"attributes":{"name":"Erick Rice","age":69,"location":"Fort Antoneville"}},{"attributes":{"name":"Patricia Kerluke","age":47,"location":"West Brittany"}},{"attributes":{"name":"Elvie Bahringer","age":47,"location":"Alexisberg"}},{"attributes":{"name":"Marion Christiansen","age":31,"location":"Zboncakfurt"}},{"attributes":{"name":"Priscilla Schaefer","age":72,"location":"South Ashleighfield"}},{"attributes":{"name":"Mr. Delbert Blanda","age":55,"location":"Leviport"}},{"attributes":{"name":"Connie Nikolaus PhD","age":71,"location":"Commerce City"}},{"attributes":{"name":"River Lueilwitz","age":19,"location":"East Ansleybury"}},{"attributes":{"name":"Halle Torp","age":70,"location":"Tyler"}},{"attributes":{"name":"Jamel Gerlach V","age":69,"location":"McDermottcester"}},{"attributes":{"name":"Israel Brekke","age":78,"location":"Turcottetown"}},{"attributes":{"name":"Morris Kuhic","age":58,"location":"Muncie"}},{"attributes":{"name":"Arnold Zieme","age":60,"location":"Goyetteberg"}},{"attributes":{"name":"Irwin Schaefer","age":39,"location":"Swiftworth"}},{"attributes":{"name":"Gus Bode","age":79,"location":"Osinskiberg"}},{"attributes":{"name":"Estefania Bode","age":68,"location":"Altadena"}},{"attributes":{"name":"Justina Schmidt IV","age":22,"location":"East Luciano"}},{"attributes":{"name":"Grant Greenfelder","age":30,"location":"East Cordelia"}},{"attributes":{"name":"Bryant Russel PhD","age":70,"location":"Verdiechester"}},{"attributes":{"name":"Aylin Effertz-Schmidt","age":47,"location":"Osborneport"}},{"attributes":{"name":"Aidan Walker-Zulauf","age":61,"location":"New Rory"}},{"attributes":{"name":"Jaron Grady","age":25,"location":"Burbank"}},{"attributes":{"name":"Dimitri Spinka","age":58,"location":"Josephcester"}},{"attributes":{"name":"Filiberto Wisozk","age":24,"location":"Fort Vaughn"}},{"attributes":{"name":"Shannon Shields","age":70,"location":"West Keegan"}},{"attributes":{"name":"Neoma Watsica-Kub","age":59,"location":"Camarillo"}},{"attributes":{"name":"Carole Little","age":60,"location":"Jesseview"}},{"attributes":{"name":"Tom Ankunding","age":42,"location":"Antelope"}},{"attributes":{"name":"Emery Cruickshank-Green","age":22,"location":"Lake Guiseppeton"}},{"attributes":{"name":"Ian Keeling","age":18,"location":"Port Houston"}},{"attributes":{"name":"Dr. Sylvan Raynor PhD","age":24,"location":"Carissaview"}},{"attributes":{"name":"Chanelle Bergnaum","age":33,"location":"Jonesboro"}},{"attributes":{"name":"Doris Kessler Sr.","age":56,"location":"Fort Daryl"}},{"attributes":{"name":"Cody Orn DVM","age":57,"location":"Charlotte"}},{"attributes":{"name":"Taurean Spencer","age":39,"location":"McCulloughshire"}},{"attributes":{"name":"Jane Mante","age":80,"location":"Terryview"}},{"attributes":{"name":"Tyrone Simonis","age":43,"location":"Alexandreamouth"}},{"attributes":{"name":"Daisy Grady","age":25,"location":"Lake Unique"}},{"attributes":{"name":"Liza Reinger","age":43,"location":"South Lexie"}},{"attributes":{"name":"Ms. Myra Yost","age":29,"location":"Arvidbury"}},{"attributes":{"name":"Kyle Cormier","age":43,"location":"Stehrstad"}},{"attributes":{"name":"Elsie Abshire","age":57,"location":"Terryboro"}},{"attributes":{"name":"Jimmie Lakin-Stehr","age":49,"location":"Maiyastad"}},{"attributes":{"name":"Brad Wuckert","age":29,"location":"Fort Felipe"}},{"attributes":{"name":"Mr. Jerry Klein","age":34,"location":"Weberhaven"}},{"attributes":{"name":"Davin Leannon","age":26,"location":"Pinkiemouth"}},{"attributes":{"name":"Evelyn Lind","age":43,"location":"Gottliebboro"}},{"attributes":{"name":"Madison Huels V","age":72,"location":"Harleyfort"}},{"attributes":{"name":"Ira Jones","age":65,"location":"Lake Jimmie"}},{"attributes":{"name":"Cynthia Schaden","age":63,"location":"South Ashlynn"}},{"attributes":{"name":"Ms. Norbert Breitenberg","age":62,"location":"Lake Aylinfort"}},{"attributes":{"name":"Regina Smitham","age":56,"location":"Hesselchester"}},{"attributes":{"name":"Jeffery Fahey DVM","age":40,"location":"East Luna"}},{"attributes":{"name":"Ebony Grimes","age":76,"location":"Bryan"}},{"attributes":{"name":"Joey Cummerata","age":80,"location":"Baumbachchester"}},{"attributes":{"name":"Lurline Runolfsson","age":18,"location":"Fort Nyasia"}},{"attributes":{"name":"Ms. Suzanne Hills","age":67,"location":"Mabellestad"}},{"attributes":{"name":"Ressie Schulist","age":66,"location":"East Angelita"}},{"attributes":{"name":"Elvis Green-Huel","age":75,"location":"Hellerworth"}},{"attributes":{"name":"Jevon Lynch","age":64,"location":"Bonniebury"}},{"attributes":{"name":"Adelle Bosco","age":80,"location":"Port Sanford"}},{"attributes":{"name":"Colin Bode MD","age":18,"location":"Port Onie"}},{"attributes":{"name":"Holly Becker","age":28,"location":"Lake Ivorymouth"}},{"attributes":{"name":"Lillian Tremblay","age":66,"location":"South Oren"}},{"attributes":{"name":"Jeffery Lockman","age":75,"location":"South Edwinfield"}},{"attributes":{"name":"Agnes Dickens","age":27,"location":"Charlottesville"}},{"attributes":{"name":"Madyson Metz","age":53,"location":"Gleichnerton"}},{"attributes":{"name":"Ed Lesch","age":25,"location":"St. George"}},{"attributes":{"name":"Jeanne Schimmel","age":67,"location":"Clareborough"}},{"attributes":{"name":"Shaun Corkery","age":44,"location":"Fort Jayda"}},{"attributes":{"name":"Dean Dickens","age":73,"location":"New Claraworth"}},{"attributes":{"name":"Gene Daniel","age":74,"location":"Eldonville"}},{"attributes":{"name":"Elsa Boyle-Willms","age":40,"location":"North Solon"}},{"attributes":{"name":"Oleta Kris DDS","age":51,"location":"Miami Beach"}},{"attributes":{"name":"Tonya Hirthe","age":69,"location":"Othoworth"}},{"attributes":{"name":"Cristopher McKenzie","age":29,"location":"Lake Vinnie"}},{"attributes":{"name":"Abdul Nicolas","age":70,"location":"South Stephanworth"}},{"attributes":{"name":"Dell Streich V","age":80,"location":"Lindgrenton"}},{"attributes":{"name":"Rickey Lehner","age":74,"location":"Lake Serenity"}},{"attributes":{"name":"Sandy Bartoletti","age":80,"location":"Millerstead"}},{"attributes":{"name":"Abbey Rempel V","age":55,"location":"Parisianshire"}},{"attributes":{"name":"Miss Simon Rohan","age":71,"location":"Port Gerardo"}},{"attributes":{"name":"Alice Olson III","age":24,"location":"Lake Kileyworth"}},{"attributes":{"name":"Brent Cronin","age":67,"location":"East Tillman"}},{"attributes":{"name":"Keith Marquardt PhD","age":73,"location":"Tamiafort"}},{"attributes":{"name":"Claire Barrows","age":57,"location":"Fort Dayton"}},{"attributes":{"name":"Penelope Rutherford","age":20,"location":"Midland"}},{"attributes":{"name":"Aaron Lueilwitz MD","age":37,"location":"Lake Pasquale"}},{"attributes":{"name":"Rosalinda Nolan","age":18,"location":"Lanebury"}},{"attributes":{"name":"Erick Leannon","age":71,"location":"Country Club"}},{"attributes":{"name":"Jewel Emmerich","age":34,"location":"Bashiriancester"}},{"attributes":{"name":"Bethany Sauer-Bosco","age":57,"location":"Meridian"}},{"attributes":{"name":"Hayden Sawayn I","age":31,"location":"Fort Sallytown"}},{"attributes":{"name":"Alice Kertzmann","age":44,"location":"Lake Athenaberg"}},{"attributes":{"name":"Mr. Lana D'Amore","age":60,"location":"Chaunceycester"}},{"attributes":{"name":"Conrad Hills","age":30,"location":"East Mallie"}},{"attributes":{"name":"Pearlie Strosin","age":57,"location":"Port Rosalee"}},{"attributes":{"name":"Dora Pfeffer","age":35,"location":"South Cecileshire"}},{"attributes":{"name":"Holden Casper","age":51,"location":"Port Dixie"}},{"attributes":{"name":"Jermaine Grady III","age":62,"location":"Laurenmouth"}},{"attributes":{"name":"Elza Stanton","age":80,"location":"Port Linaberg"}},{"attributes":{"name":"Cindy Cummerata","age":73,"location":"Adolphshire"}},{"attributes":{"name":"Nina Turcotte","age":66,"location":"Dublin"}},{"attributes":{"name":"Amber Mills","age":47,"location":"Kiraton"}},{"attributes":{"name":"Cleora Lesch","age":49,"location":"Fort Austin"}},{"attributes":{"name":"Beth Bergstrom","age":51,"location":"West Kenyafield"}},{"attributes":{"name":"Jaylan Kertzmann DDS","age":48,"location":"Fort Treverfurt"}},{"attributes":{"name":"Marty Runte","age":76,"location":"South Hipolito"}},{"attributes":{"name":"Mr. Dayton Satterfield","age":47,"location":"East Randalboro"}},{"attributes":{"name":"Cornelius Adams I","age":65,"location":"East Richmondboro"}},{"attributes":{"name":"Milton Kunde","age":29,"location":"East Kalebbury"}},{"attributes":{"name":"Mr. Sage Haley","age":72,"location":"East Lulaside"}},{"attributes":{"name":"Nina Price","age":30,"location":"Pourosborough"}},{"attributes":{"name":"Monique Nitzsche","age":80,"location":"Springdale"}},{"attributes":{"name":"Herbert Treutel","age":64,"location":"East Adrienneshire"}},{"attributes":{"name":"Laura Kunde V","age":80,"location":"South Vella"}},{"attributes":{"name":"Emmett Stark","age":28,"location":"Raleigh"}},{"attributes":{"name":"Ed Lebsack","age":54,"location":"Lake Vicenta"}},{"attributes":{"name":"Maurine Ebert","age":20,"location":"Kirstinmouth"}},{"attributes":{"name":"Marlene Macejkovic","age":26,"location":"Eugene"}},{"attributes":{"name":"Destini Donnelly","age":63,"location":"New Tessieview"}},{"attributes":{"name":"Taylor Gusikowski","age":54,"location":"Ziemetown"}},{"attributes":{"name":"Beulah Trantow","age":73,"location":"Alfredomouth"}},{"attributes":{"name":"Essie Heathcote II","age":49,"location":"Camrynshire"}},{"attributes":{"name":"Maurice Morissette","age":42,"location":"Terre Haute"}},{"attributes":{"name":"Ladarius Johnson","age":25,"location":"Hamillstad"}},{"attributes":{"name":"Frankie Dietrich","age":48,"location":"Lake Gunnar"}},{"attributes":{"name":"Damon Aufderhar","age":80,"location":"Koeppview"}},{"attributes":{"name":"Marcel Hermann","age":35,"location":"Jaskolskicester"}},{"attributes":{"name":"Vera Bernhard","age":55,"location":"Lake Estefania"}},{"attributes":{"name":"Viola Kub","age":63,"location":"Orionstead"}},{"attributes":{"name":"Georgianna Stamm","age":32,"location":"Jeannetown"}},{"attributes":{"name":"Daryl Schmitt","age":19,"location":"Port Johnchester"}},{"attributes":{"name":"Elise Feil","age":75,"location":"Hayward"}},{"attributes":{"name":"Norma Olson","age":18,"location":"West Daphne"}},{"attributes":{"name":"Anahi Hilpert-Yost V","age":79,"location":"Burbank"}},{"attributes":{"name":"Tricia Senger","age":51,"location":"Hahnfield"}},{"attributes":{"name":"Jason Beatty","age":19,"location":"Lake Drakefield"}},{"attributes":{"name":"Hugh Emmerich","age":75,"location":"North Karliville"}},{"attributes":{"name":"Leroy Windler","age":32,"location":"Hoegerfield"}},{"attributes":{"name":"Gerard Hickle","age":79,"location":"Cecilchester"}},{"attributes":{"name":"Mr. Joany Considine","age":38,"location":"Fishers"}},{"attributes":{"name":"Arlene Tillman","age":39,"location":"North Jalynbury"}},{"attributes":{"name":"Jeannie King PhD","age":22,"location":"Eulahstad"}},{"attributes":{"name":"Renee Torphy","age":80,"location":"Fort Pierce"}},{"attributes":{"name":"Kelli Barrows","age":71,"location":"Roxannefield"}},{"attributes":{"name":"Paula Borer","age":32,"location":"Domingoside"}},{"attributes":{"name":"Walter Dach","age":40,"location":"Citrus Heights"}},{"attributes":{"name":"Ezekiel Hamill","age":33,"location":"New Rosalindfurt"}},{"attributes":{"name":"Essie Okuneva DDS","age":46,"location":"East Pete"}},{"attributes":{"name":"Vivianne Rodriguez-Balistreri","age":75,"location":"Hawthorne"}},{"attributes":{"name":"Gilbert Schulist","age":20,"location":"East Mekhiberg"}},{"attributes":{"name":"Pink Ritchie","age":21,"location":"Hoover"}},{"attributes":{"name":"Kendrick Crooks","age":55,"location":"Jenkinsberg"}},{"attributes":{"name":"Aaliyah Rowe","age":71,"location":"Zulaufhaven"}},{"attributes":{"name":"Judy Bernhard","age":18,"location":"New Emmitttown"}},{"attributes":{"name":"Troy Nitzsche","age":38,"location":"Kertzmannmouth"}},{"attributes":{"name":"Elisha Jacobs","age":23,"location":"West Cary"}},{"attributes":{"name":"Maxie Considine-Nienow Sr.","age":73,"location":"Lake Lennie"}},{"attributes":{"name":"Ellis Kling","age":26,"location":"Fort Missouriville"}},{"attributes":{"name":"Antonio Ruecker","age":76,"location":"South Jordan"}},{"attributes":{"name":"Katrine Schaefer","age":43,"location":"Vonshire"}},{"attributes":{"name":"Ms. Stephen Zulauf","age":66,"location":"East Abdul"}},{"attributes":{"name":"John Walsh","age":37,"location":"Sauerstead"}},{"attributes":{"name":"Keith Tremblay","age":70,"location":"Gradyworth"}},{"attributes":{"name":"Maureen Price","age":71,"location":"Loveland"}},{"attributes":{"name":"Dawn Schoen","age":25,"location":"Hilpertton"}},{"attributes":{"name":"Julian Nienow MD","age":35,"location":"Lake Melany"}},{"attributes":{"name":"Marc Mueller","age":22,"location":"Winston-Salem"}},{"attributes":{"name":"Dr. Sabrina Greenholt III","age":71,"location":"Schaumburg"}},{"attributes":{"name":"Troy Mann-Kshlerin","age":18,"location":"Cullenstad"}},{"attributes":{"name":"Antonia Wisoky","age":72,"location":"East Calista"}},{"attributes":{"name":"Dr. Dana Jones I","age":57,"location":"Raynorhaven"}},{"attributes":{"name":"Faye Kuhlman","age":54,"location":"Vandervortborough"}},{"attributes":{"name":"Elinor Spencer","age":62,"location":"Schummborough"}},{"attributes":{"name":"Suzanne Bahringer","age":42,"location":"Skilesborough"}},{"attributes":{"name":"Misty Reichert","age":68,"location":"Port Earnestineboro"}},{"attributes":{"name":"Stephan Orn","age":35,"location":"Armstrongstad"}},{"attributes":{"name":"Hector Weimann","age":79,"location":"Commerce City"}},{"attributes":{"name":"Alexis Wunsch I","age":45,"location":"Dimitriville"}},{"attributes":{"name":"Olivia Emard","age":31,"location":"North Giastad"}},{"attributes":{"name":"Eldred Sporer","age":28,"location":"North Dustystad"}},{"attributes":{"name":"Herminia Paucek IV","age":33,"location":"Port Lestershire"}},{"attributes":{"name":"Mildred Borer","age":69,"location":"New Amira"}},{"attributes":{"name":"Julian Medhurst","age":42,"location":"Nataliashire"}},{"attributes":{"name":"Jovani Feeney","age":55,"location":"Uptonstead"}},{"attributes":{"name":"Mauricio Muller","age":39,"location":"Schusterfield"}},{"attributes":{"name":"Ebony Lindgren","age":53,"location":"East Valentinecester"}},{"attributes":{"name":"Elaine Volkman","age":44,"location":"Leonestead"}},{"attributes":{"name":"Amelie Carroll","age":62,"location":"North Bailee"}},{"attributes":{"name":"Willis Hamill","age":21,"location":"Kosston"}},{"attributes":{"name":"Miss Daphnee Krajcik","age":76,"location":"Fredastad"}},{"attributes":{"name":"Edgar Doyle","age":31,"location":"Dickinsonland"}},{"attributes":{"name":"Sam Olson","age":53,"location":"Adalineview"}},{"attributes":{"name":"Precious Mayert","age":79,"location":"Roanoke"}},{"attributes":{"name":"Alvin Blanda","age":24,"location":"Willmouth"}},{"attributes":{"name":"Jasper Barton III","age":53,"location":"St. Joseph"}},{"attributes":{"name":"Neha Schiller","age":39,"location":"East Yasmin"}},{"attributes":{"name":"Melanie Hamill III","age":53,"location":"North Dewayne"}},{"attributes":{"name":"Kristen Turcotte","age":62,"location":"Bayamon"}},{"attributes":{"name":"Isaac Klein","age":46,"location":"Georgianabury"}},{"attributes":{"name":"Dr. Jenna Wehner II","age":58,"location":"New Jessefield"}},{"attributes":{"name":"Percy Schneider","age":36,"location":"West Katharina"}},{"attributes":{"name":"Nathaniel Mueller","age":46,"location":"Port Edgardoboro"}},{"attributes":{"name":"Kim O'Hara","age":56,"location":"Carleeburgh"}},{"attributes":{"name":"Miss Garett Konopelski","age":49,"location":"Fort Mateoborough"}},{"attributes":{"name":"Josiane Dicki","age":75,"location":"Bartonmouth"}},{"attributes":{"name":"Andrea Green-Hayes","age":56,"location":"Peteport"}},{"attributes":{"name":"Ms. Krystal Kiehn","age":55,"location":"Fullerton"}},{"attributes":{"name":"Cedric Bailey","age":36,"location":"Catherinefort"}},{"attributes":{"name":"Mariana Bogan","age":65,"location":"Leannonstad"}},{"attributes":{"name":"Javier Kozey","age":21,"location":"Carterburgh"}},{"attributes":{"name":"Fred Shanahan","age":45,"location":"Pasadena"}},{"attributes":{"name":"Miss Jenny Bode","age":18,"location":"West Kayden"}},{"attributes":{"name":"Alia Ernser MD","age":36,"location":"New Talonshire"}},{"attributes":{"name":"Shaun Ritchie","age":66,"location":"Krishaven"}},{"attributes":{"name":"Else Tromp","age":27,"location":"Coachella"}},{"attributes":{"name":"Matthew Shanahan","age":68,"location":"Rueckerland"}},{"attributes":{"name":"Sabryna Ritchie","age":52,"location":"Rodfield"}},{"attributes":{"name":"Clayton Wisoky","age":22,"location":"Torphyworth"}},{"attributes":{"name":"Cheryl Kuhn PhD","age":33,"location":"South Ephraim"}},{"attributes":{"name":"Cecil Lang","age":32,"location":"Ziemannworth"}},{"attributes":{"name":"Alexandria Bayer","age":80,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Ofelia Oberbrunner","age":51,"location":"Port Shanelfield"}},{"attributes":{"name":"Hulda Keebler","age":26,"location":"Thielfort"}},{"attributes":{"name":"Dr. Marco Hayes","age":60,"location":"Bradtkechester"}},{"attributes":{"name":"Chris Ward","age":24,"location":"Hamillchester"}},{"attributes":{"name":"Salvador Bins","age":80,"location":"Ceasarfurt"}},{"attributes":{"name":"Cecil Wiegand","age":53,"location":"Oak Lawn"}},{"attributes":{"name":"Dr. Payton Hane","age":37,"location":"Port Nicolasbury"}},{"attributes":{"name":"Preston Hessel","age":47,"location":"East Annabelle"}},{"attributes":{"name":"Lyle Koch","age":45,"location":"Clearwater"}},{"attributes":{"name":"Doug Jakubowski","age":54,"location":"North Darwin"}},{"attributes":{"name":"Dustin Wilkinson","age":76,"location":"Darionhaven"}},{"attributes":{"name":"Ms. Nora Prosacco","age":65,"location":"Chayashire"}},{"attributes":{"name":"Dallas Towne-Ferry V","age":44,"location":"Parisianfort"}},{"attributes":{"name":"Dr. Edwardo Ward","age":57,"location":"Bolingbrook"}},{"attributes":{"name":"Lester Blick","age":34,"location":"Ryanburgh"}},{"attributes":{"name":"Tommie Schmeler","age":67,"location":"Gunnarboro"}},{"attributes":{"name":"Ms. Lindsey Nader","age":45,"location":"Lakewood"}},{"attributes":{"name":"Lynn Becker","age":36,"location":"Alanisworth"}},{"attributes":{"name":"Cathy Romaguera","age":53,"location":"West Zettaberg"}},{"attributes":{"name":"Allene Corkery","age":28,"location":"Port Eduardo"}},{"attributes":{"name":"Rachael Kessler","age":21,"location":"North Evie"}},{"attributes":{"name":"Michele Windler","age":80,"location":"South Corene"}},{"attributes":{"name":"Ida Thompson","age":45,"location":"Sipesstad"}},{"attributes":{"name":"Mrs. Angel Kiehn","age":67,"location":"Mariannaside"}},{"attributes":{"name":"Kennith Lehner","age":62,"location":"Fort Aryanna"}},{"attributes":{"name":"Roberto Stark","age":61,"location":"Winston-Salem"}},{"attributes":{"name":"Darnell Treutel","age":41,"location":"Effertzfield"}},{"attributes":{"name":"Kristofer Lindgren-Bradtke","age":50,"location":"North Berthaboro"}},{"attributes":{"name":"Mrs. Vanessa Pacocha","age":60,"location":"West Jodiefurt"}},{"attributes":{"name":"Garry Cruickshank","age":42,"location":"Fort Jeanette"}},{"attributes":{"name":"Rosalia Abbott-Jenkins","age":63,"location":"South Melisashire"}},{"attributes":{"name":"Cory Abernathy","age":78,"location":"Pico Rivera"}},{"attributes":{"name":"Rosalee Hettinger","age":62,"location":"San Ramon"}},{"attributes":{"name":"Johann Rath","age":23,"location":"Chino Hills"}},{"attributes":{"name":"Ms. Karen Schiller","age":80,"location":"Kailynstad"}},{"attributes":{"name":"Bradford Mertz","age":49,"location":"East Elliotstad"}},{"attributes":{"name":"Bessie Blanda","age":70,"location":"Goodwinstad"}},{"attributes":{"name":"Lynda Heller","age":74,"location":"Flostad"}},{"attributes":{"name":"Kevin Zulauf","age":35,"location":"Lake Larue"}},{"attributes":{"name":"Angelo Stoltenberg","age":76,"location":"Port Gilbertbury"}},{"attributes":{"name":"Virgil Reichel","age":52,"location":"Lake Joelton"}},{"attributes":{"name":"Lena Kerluke","age":21,"location":"Weimannstead"}},{"attributes":{"name":"Miss Ruthie Bogisich","age":25,"location":"Towson"}},{"attributes":{"name":"Kurt Turcotte","age":63,"location":"Schaeferstad"}},{"attributes":{"name":"Miss Catherine White-Gleason","age":78,"location":"Baldwin Park"}},{"attributes":{"name":"Jimmie Spinka","age":62,"location":"Wainoport"}},{"attributes":{"name":"Elwin Turner","age":27,"location":"Lake Domenickfort"}},{"attributes":{"name":"Katrine Ratke","age":60,"location":"Millsstead"}},{"attributes":{"name":"Sarah Rolfson-Franecki IV","age":38,"location":"West Rickey"}},{"attributes":{"name":"Cruz Grimes","age":59,"location":"Tulsa"}},{"attributes":{"name":"Vanessa Spinka","age":30,"location":"Perth Amboy"}},{"attributes":{"name":"Evelyn Fadel V","age":67,"location":"Placentia"}},{"attributes":{"name":"Tyree Cummerata","age":42,"location":"North Cecilfort"}},{"attributes":{"name":"Julie Rolfson","age":57,"location":"North Nyasia"}},{"attributes":{"name":"Melissa Witting","age":44,"location":"Nolanborough"}},{"attributes":{"name":"Phillip McCullough","age":51,"location":"Williamsonside"}},{"attributes":{"name":"Shana Block V","age":73,"location":"Boganview"}},{"attributes":{"name":"Colleen McCullough","age":61,"location":"Bradenton"}},{"attributes":{"name":"Ada Mayert","age":71,"location":"Kirlinberg"}},{"attributes":{"name":"Mae Oberbrunner","age":67,"location":"West Janicehaven"}},{"attributes":{"name":"Alexandrea Cummerata","age":53,"location":"Emardstad"}},{"attributes":{"name":"Lelia Rosenbaum","age":38,"location":"Port Mathewburgh"}},{"attributes":{"name":"Guadalupe Hansen DVM","age":42,"location":"Stromanworth"}},{"attributes":{"name":"Vickie Jacobs","age":58,"location":"Edmond"}},{"attributes":{"name":"Leland D'Amore","age":62,"location":"Lake Lavina"}},{"attributes":{"name":"Anissa Dare","age":26,"location":"Blacksburg"}},{"attributes":{"name":"Shane McGlynn","age":23,"location":"South Elsie"}},{"attributes":{"name":"Eve Wuckert","age":21,"location":"Fort Sammie"}},{"attributes":{"name":"Miranda Johnston","age":58,"location":"South Margaretta"}},{"attributes":{"name":"Dale Mills","age":39,"location":"Fort Darrick"}},{"attributes":{"name":"Santos Auer","age":26,"location":"West Jaydonbury"}},{"attributes":{"name":"Arjun Lang-Osinski","age":41,"location":"West Bufordberg"}},{"attributes":{"name":"Steven Hudson","age":80,"location":"Yeseniaview"}},{"attributes":{"name":"Elizabeth Kunde","age":73,"location":"Hanestad"}},{"attributes":{"name":"Shannon Wintheiser IV","age":75,"location":"New Deshawn"}},{"attributes":{"name":"Caroline Watsica","age":51,"location":"Jeanettestad"}},{"attributes":{"name":"Pauline O'Conner","age":70,"location":"New Tyrell"}},{"attributes":{"name":"Lester Senger","age":52,"location":"Ponce"}},{"attributes":{"name":"Mr. Hank Goldner","age":69,"location":"Quitzonshire"}},{"attributes":{"name":"Camille Fay","age":66,"location":"Lindsayton"}},{"attributes":{"name":"Mr. Eugene Olson","age":56,"location":"West Teresa"}},{"attributes":{"name":"Randal Wintheiser","age":72,"location":"Berenicefurt"}},{"attributes":{"name":"Alize Rau","age":43,"location":"Johnsonburgh"}},{"attributes":{"name":"Carolyn Lesch","age":43,"location":"Norvalboro"}},{"attributes":{"name":"Margaret Gulgowski","age":18,"location":"Tyshawnshire"}},{"attributes":{"name":"Chad Haley-Tillman","age":34,"location":"Bednarville"}},{"attributes":{"name":"Glenn DuBuque","age":68,"location":"Emelycester"}},{"attributes":{"name":"Teri Hodkiewicz","age":35,"location":"Shawnee"}},{"attributes":{"name":"Nicklaus Renner","age":24,"location":"North Anibal"}},{"attributes":{"name":"Anita Moen","age":70,"location":"North Trycia"}},{"attributes":{"name":"Everett Greenfelder","age":66,"location":"Hoover"}},{"attributes":{"name":"Geovanny Block-Christiansen","age":60,"location":"South Aldenton"}},{"attributes":{"name":"Filomena Hills","age":28,"location":"Port Kaelaboro"}},{"attributes":{"name":"Dr. Ellis Schimmel","age":36,"location":"Smithville"}},{"attributes":{"name":"Lyda Wilkinson","age":75,"location":"New Sophieport"}},{"attributes":{"name":"Shannon Schinner","age":71,"location":"Lunatown"}},{"attributes":{"name":"Mable Waters Sr.","age":29,"location":"Jacobifield"}},{"attributes":{"name":"Jacey Hettinger","age":46,"location":"South Myrtleside"}},{"attributes":{"name":"Carmen Hahn","age":43,"location":"Port Rowanworth"}},{"attributes":{"name":"Dr. Terrance Lemke","age":72,"location":"Waco"}},{"attributes":{"name":"Christy Kreiger","age":77,"location":"Kohlerberg"}},{"attributes":{"name":"Brett Smitham","age":67,"location":"West Lelahfort"}},{"attributes":{"name":"Erma Medhurst","age":61,"location":"Fort Trentontown"}},{"attributes":{"name":"Julien Braun-Berge","age":65,"location":"Kundehaven"}},{"attributes":{"name":"Dr. Guadalupe VonRueden","age":47,"location":"Glendora"}},{"attributes":{"name":"Rachael Bailey","age":32,"location":"Bruenville"}},{"attributes":{"name":"Stella O'Conner","age":33,"location":"Metzchester"}},{"attributes":{"name":"Mr. Cruz Gorczany V","age":61,"location":"Yasmeenborough"}},{"attributes":{"name":"Kathryn Wuckert V","age":57,"location":"West Miller"}},{"attributes":{"name":"Joey Reichel","age":75,"location":"Larkinport"}},{"attributes":{"name":"Ellis Feeney","age":54,"location":"South Maybellefield"}},{"attributes":{"name":"Nichole West II","age":38,"location":"Altoona"}},{"attributes":{"name":"Christian Grant-Lesch V","age":34,"location":"North Madonnaburgh"}},{"attributes":{"name":"Laisha Tillman","age":19,"location":"South Lupeborough"}},{"attributes":{"name":"Sadie Olson","age":37,"location":"Port Giles"}},{"attributes":{"name":"Clayton Walter","age":25,"location":"Bayamon"}},{"attributes":{"name":"Wallace Mohr","age":24,"location":"East Ettie"}},{"attributes":{"name":"Manuela Larkin","age":25,"location":"Lupecester"}},{"attributes":{"name":"Orin Schmeler","age":64,"location":"Akron"}},{"attributes":{"name":"Cristal Jacobs","age":39,"location":"West Weldonside"}},{"attributes":{"name":"Donnie Gerhold","age":22,"location":"Fort Laisha"}},{"attributes":{"name":"Luis Shanahan","age":66,"location":"Daijashire"}},{"attributes":{"name":"Joan Walsh","age":37,"location":"West Ottis"}},{"attributes":{"name":"Carla Cummings","age":58,"location":"Parisianshire"}},{"attributes":{"name":"Jackson Kulas","age":61,"location":"East Rosannaport"}},{"attributes":{"name":"Bernice Hilpert","age":52,"location":"Baileychester"}},{"attributes":{"name":"Joyce Casper","age":64,"location":"West Anya"}},{"attributes":{"name":"Ismael Raynor MD","age":40,"location":"West Britneyland"}},{"attributes":{"name":"Gerard Thiel","age":52,"location":"Sarahfurt"}},{"attributes":{"name":"Jenny Balistreri","age":67,"location":"El Centro"}},{"attributes":{"name":"Marlen Turcotte","age":31,"location":"Fort Lorna"}},{"attributes":{"name":"Lionel Schuster","age":21,"location":"Beahanton"}},{"attributes":{"name":"Donny O'Keefe","age":37,"location":"Conroe"}},{"attributes":{"name":"Spencer Schulist","age":80,"location":"Clearwater"}},{"attributes":{"name":"Helena Hilll","age":22,"location":"Rueckershire"}},{"attributes":{"name":"Magnolia Conroy","age":49,"location":"Hiramstead"}},{"attributes":{"name":"Maryjane Koch Sr.","age":77,"location":"Carrollchester"}},{"attributes":{"name":"Rosie Franey","age":43,"location":"Janniestad"}},{"attributes":{"name":"Amira Boyer","age":22,"location":"Carlosworth"}},{"attributes":{"name":"Bob Durgan","age":41,"location":"Lake Emerald"}},{"attributes":{"name":"Arthur Quitzon","age":45,"location":"Lake Kolby"}},{"attributes":{"name":"Roberto Shields","age":38,"location":"West Dolly"}},{"attributes":{"name":"Verda Lowe Jr.","age":45,"location":"Fort Scottyland"}},{"attributes":{"name":"Ebony Langworth","age":18,"location":"Irondequoit"}},{"attributes":{"name":"Sammy Zieme","age":77,"location":"Lindgrenboro"}},{"attributes":{"name":"Myra McClure","age":53,"location":"Fort Sim"}},{"attributes":{"name":"Luther Bahringer I","age":33,"location":"Port Dewitt"}},{"attributes":{"name":"Osvaldo Bechtelar","age":19,"location":"New Fletcher"}},{"attributes":{"name":"Alvin Jerde","age":69,"location":"Mansfield"}},{"attributes":{"name":"Sierra Wehner","age":78,"location":"North Brooklynfort"}},{"attributes":{"name":"Jailyn Stracke","age":51,"location":"Blancaton"}},{"attributes":{"name":"Saige Smitham DDS","age":62,"location":"Cranston"}},{"attributes":{"name":"Mallory Barton","age":77,"location":"South Harry"}},{"attributes":{"name":"Gail Hyatt","age":41,"location":"Palatine"}},{"attributes":{"name":"Kendra Crooks","age":32,"location":"South Valley"}},{"attributes":{"name":"Sunny Kshlerin","age":49,"location":"West Luellafurt"}},{"attributes":{"name":"Lelah Krajcik","age":69,"location":"Mosciskifort"}},{"attributes":{"name":"Lesley Gerlach-Heidenreich","age":78,"location":"Fort Kobyside"}},{"attributes":{"name":"Jettie Howell","age":72,"location":"Port Noe"}},{"attributes":{"name":"Katelin Romaguera","age":41,"location":"North Bianka"}},{"attributes":{"name":"Reva Mohr","age":32,"location":"Ottoside"}},{"attributes":{"name":"Dr. Julio Rau-Moen","age":66,"location":"Fort Hadleyland"}},{"attributes":{"name":"Willie Towne","age":35,"location":"Travonworth"}},{"attributes":{"name":"Hermann Klein","age":22,"location":"Peteboro"}},{"attributes":{"name":"Mercedes Schamberger","age":19,"location":"North Alec"}},{"attributes":{"name":"Coralie Nienow","age":62,"location":"Beaverton"}},{"attributes":{"name":"Yolanda Hintz","age":75,"location":"Port Mariam"}},{"attributes":{"name":"Dr. Simon Klocko","age":51,"location":"Roelview"}},{"attributes":{"name":"Michelle Gerhold","age":42,"location":"Tyreseburgh"}},{"attributes":{"name":"Dana Gleichner","age":71,"location":"Folsom"}},{"attributes":{"name":"Kristy Marquardt","age":54,"location":"South Efrenland"}},{"attributes":{"name":"Doyle Kozey","age":59,"location":"Harveyburgh"}},{"attributes":{"name":"Aurore Marvin","age":71,"location":"East Desmond"}},{"attributes":{"name":"Owen Jacobson","age":52,"location":"South Vivienboro"}},{"attributes":{"name":"Delbert Skiles","age":54,"location":"Fort Ivy"}},{"attributes":{"name":"Gia Carter","age":58,"location":"Fatimaside"}},{"attributes":{"name":"Holden Sawayn","age":53,"location":"Lehi"}},{"attributes":{"name":"Gabe Daugherty","age":46,"location":"New Scarlettborough"}},{"attributes":{"name":"Lorenzo Dicki DDS","age":71,"location":"Aleneland"}},{"attributes":{"name":"Velma Blick","age":53,"location":"Lake Madelynbury"}},{"attributes":{"name":"Estelle Schiller","age":43,"location":"North Scarlett"}},{"attributes":{"name":"Russel Schmitt","age":74,"location":"East Charliestad"}},{"attributes":{"name":"Lance Deckow","age":70,"location":"New Jewell"}},{"attributes":{"name":"Yasmine Connelly","age":53,"location":"Fort Winfieldcester"}},{"attributes":{"name":"Cornell Hettinger","age":26,"location":"South Noahton"}},{"attributes":{"name":"Oscar Doyle","age":64,"location":"Lake Raeberg"}},{"attributes":{"name":"Harry Bartoletti","age":79,"location":"Keatoncester"}},{"attributes":{"name":"Chandler Durgan","age":59,"location":"Port Hassan"}},{"attributes":{"name":"Rocky Quigley","age":42,"location":"Marcosstad"}},{"attributes":{"name":"Charlie Schowalter","age":42,"location":"Hackensack"}},{"attributes":{"name":"Paulette Lueilwitz","age":79,"location":"Fort Chelseafort"}},{"attributes":{"name":"Dr. Tasha Hansen","age":78,"location":"Schmittstead"}},{"attributes":{"name":"Winnifred Wolff","age":73,"location":"Port Kian"}},{"attributes":{"name":"Derrick Lakin","age":52,"location":"Fernandofort"}},{"attributes":{"name":"Moses Powlowski","age":26,"location":"Donaldhaven"}},{"attributes":{"name":"Aric Littel","age":72,"location":"Fishers"}},{"attributes":{"name":"Angel MacGyver","age":48,"location":"Bogisichside"}},{"attributes":{"name":"Mr. Mathew Mills II","age":52,"location":"Satterfieldboro"}},{"attributes":{"name":"Napoleon Sanford","age":69,"location":"Wheaton"}},{"attributes":{"name":"Gertrude King","age":24,"location":"Dwightcester"}},{"attributes":{"name":"Andreane Stiedemann","age":68,"location":"Gleasonshire"}},{"attributes":{"name":"Jeanette Mosciski","age":76,"location":"North Garth"}},{"attributes":{"name":"Dr. Raul O'Keefe","age":53,"location":"Mariannashire"}},{"attributes":{"name":"Randolph Dietrich","age":39,"location":"North Little Rock"}},{"attributes":{"name":"Allison McLaughlin","age":64,"location":"South Lyda"}},{"attributes":{"name":"Shawn Labadie","age":75,"location":"Port Shawnfield"}},{"attributes":{"name":"Carey Rodriguez","age":77,"location":"North Kalishire"}},{"attributes":{"name":"Nadine Dickinson","age":74,"location":"Jeramiestead"}},{"attributes":{"name":"Dr. Chad Sauer","age":51,"location":"Fort Judahland"}},{"attributes":{"name":"Napoleon Rohan","age":66,"location":"West Sallie"}},{"attributes":{"name":"Micheal Brekke","age":69,"location":"Myraport"}},{"attributes":{"name":"Norene Reichel","age":33,"location":"East Pascale"}},{"attributes":{"name":"Lionel Graham","age":64,"location":"Yundtburgh"}},{"attributes":{"name":"Mamie Howell","age":56,"location":"East Pablotown"}},{"attributes":{"name":"Mrs. Debra Lemke","age":66,"location":"East Georgeport"}},{"attributes":{"name":"Kraig Prohaska","age":59,"location":"East Yasmin"}},{"attributes":{"name":"Kyler Jacobson","age":44,"location":"New Stevie"}},{"attributes":{"name":"Nigel Toy","age":57,"location":"East Della"}},{"attributes":{"name":"Mr. Tommie Murazik","age":57,"location":"South Ramiroside"}},{"attributes":{"name":"Cornelius Howe","age":57,"location":"Port Rebeka"}},{"attributes":{"name":"Gerson Kemmer","age":33,"location":"North Candaceside"}},{"attributes":{"name":"Mrs. Katlyn Mann DVM","age":26,"location":"Medford"}},{"attributes":{"name":"Katie Tromp","age":35,"location":"Isaiahtown"}},{"attributes":{"name":"Opal Hagenes","age":75,"location":"East Everetteton"}},{"attributes":{"name":"Sonja Murazik","age":38,"location":"Kingsport"}},{"attributes":{"name":"Zella Shanahan","age":65,"location":"Fort Winfield"}},{"attributes":{"name":"Grant Kozey","age":24,"location":"Amarihaven"}},{"attributes":{"name":"Janie Hauck","age":72,"location":"Urbana"}},{"attributes":{"name":"Gilbert Bernhard II","age":38,"location":"East Reese"}},{"attributes":{"name":"Alejandro O'Hara","age":46,"location":"New Gerard"}},{"attributes":{"name":"Mack Stanton-Cummerata","age":68,"location":"Port Mohammed"}},{"attributes":{"name":"Julia Mohr","age":18,"location":"North Jalon"}},{"attributes":{"name":"Annie Beahan","age":45,"location":"Nicolasburgh"}},{"attributes":{"name":"Sara Howe","age":75,"location":"East Hollie"}},{"attributes":{"name":"Ebba Morissette","age":24,"location":"Huntsville"}},{"attributes":{"name":"Alta Farrell","age":40,"location":"Enterprise"}},{"attributes":{"name":"Rasheed Farrell","age":47,"location":"Cruickshankboro"}},{"attributes":{"name":"Monte Murazik","age":56,"location":"Sunnyvale"}},{"attributes":{"name":"Benny Pollich","age":73,"location":"Lake Wilhelm"}},{"attributes":{"name":"Jordan Gorczany","age":31,"location":"St. Louis"}},{"attributes":{"name":"Maurice Pouros","age":30,"location":"Joecester"}},{"attributes":{"name":"Miss Dixie Greenfelder","age":32,"location":"Faystead"}},{"attributes":{"name":"Turner Schuppe","age":32,"location":"Fort Maiya"}},{"attributes":{"name":"Velma Wolff","age":28,"location":"Dareberg"}},{"attributes":{"name":"Esther Kuphal","age":54,"location":"La Habra"}},{"attributes":{"name":"Brent Borer","age":43,"location":"Port Dovie"}},{"attributes":{"name":"King O'Hara","age":34,"location":"Fort Margarita"}},{"attributes":{"name":"Kelvin Reinger","age":50,"location":"Port Arthaven"}},{"attributes":{"name":"Sydnee Dickinson III","age":27,"location":"Adalinebury"}},{"attributes":{"name":"Miss Bridget Metz","age":49,"location":"Townechester"}},{"attributes":{"name":"Harry Gislason","age":76,"location":"Gutmannview"}},{"attributes":{"name":"Mr. Ethel Stiedemann","age":48,"location":"South Fayeside"}},{"attributes":{"name":"Emma Miller","age":56,"location":"Mrazburgh"}},{"attributes":{"name":"Rochelle Rolfson","age":67,"location":"Pourosstead"}},{"attributes":{"name":"Ernie Lakin","age":73,"location":"New Laverneville"}},{"attributes":{"name":"Freda Sauer","age":28,"location":"Lake Osbaldo"}},{"attributes":{"name":"Bertha Gorczany","age":78,"location":"Marquardtboro"}},{"attributes":{"name":"Irving Ullrich","age":51,"location":"Stammborough"}},{"attributes":{"name":"Vicky Grimes","age":54,"location":"New Lenna"}},{"attributes":{"name":"Dr. Vera Luettgen Sr.","age":49,"location":"Cleveland Heights"}},{"attributes":{"name":"Randal Padberg","age":63,"location":"Thousand Oaks"}},{"attributes":{"name":"Kelsi Tillman","age":25,"location":"Zolafort"}},{"attributes":{"name":"Dereck Jacobson","age":21,"location":"Fort Treva"}},{"attributes":{"name":"Crystal Gutmann","age":33,"location":"Rosannafield"}},{"attributes":{"name":"Mrs. Ericka Howell","age":43,"location":"Stehrhaven"}},{"attributes":{"name":"Bradley Berge II","age":61,"location":"Lake Ridge"}},{"attributes":{"name":"Hailee Rutherford","age":72,"location":"Gusikowskiland"}},{"attributes":{"name":"Rosa Stamm","age":22,"location":"Port Bryana"}},{"attributes":{"name":"Terrill Hyatt","age":27,"location":"Miramar"}},{"attributes":{"name":"Jarred Gottlieb MD","age":54,"location":"West Edgar"}},{"attributes":{"name":"Kylee Nader","age":66,"location":"North Mackenzie"}},{"attributes":{"name":"Wilbert Farrell","age":62,"location":"Downey"}},{"attributes":{"name":"Hilda Homenick","age":25,"location":"Padbergton"}},{"attributes":{"name":"Jake Pollich","age":77,"location":"West Bertrand"}},{"attributes":{"name":"Hollie Hartmann","age":25,"location":"Spokane Valley"}},{"attributes":{"name":"Patti Hirthe-Casper","age":48,"location":"Corkerystad"}},{"attributes":{"name":"Dr. Bonnie Douglas III","age":79,"location":"Destinimouth"}},{"attributes":{"name":"Vickie Bergnaum","age":24,"location":"Port Jazminside"}},{"attributes":{"name":"Jayda Beer","age":38,"location":"Port Margretworth"}},{"attributes":{"name":"Creola Braun","age":64,"location":"Lake Kimberly"}},{"attributes":{"name":"Larry Cartwright","age":44,"location":"Port Meganechester"}},{"attributes":{"name":"Roderick Watsica","age":49,"location":"Sterlingcester"}},{"attributes":{"name":"Wyatt Oberbrunner","age":21,"location":"West Gwenton"}},{"attributes":{"name":"Gilbert Champlin","age":24,"location":"Port Ociebury"}},{"attributes":{"name":"Sylvester Schaden","age":46,"location":"West Athena"}},{"attributes":{"name":"Roland Morissette","age":18,"location":"Baldwin Park"}},{"attributes":{"name":"Kyla Nitzsche","age":38,"location":"Cliffordfurt"}},{"attributes":{"name":"Rita Orn","age":78,"location":"Kleinworth"}},{"attributes":{"name":"Andres Kunde","age":47,"location":"New Brunswick"}},{"attributes":{"name":"Dennis Davis","age":25,"location":"New Efrainton"}},{"attributes":{"name":"Dominick Kuhlman","age":68,"location":"Brennonborough"}},{"attributes":{"name":"Luis Purdy","age":56,"location":"Hanebury"}},{"attributes":{"name":"Matthew Mosciski","age":68,"location":"Marcelinochester"}},{"attributes":{"name":"Lucy Friesen","age":42,"location":"Port Laverneshire"}},{"attributes":{"name":"Mr. Juana Durgan","age":22,"location":"Hellerstead"}},{"attributes":{"name":"Alonzo Hoeger I","age":19,"location":"Savannah"}},{"attributes":{"name":"Annie Hauck","age":32,"location":"Vineland"}},{"attributes":{"name":"Victoria Gleason","age":48,"location":"Fort Rhiannon"}},{"attributes":{"name":"Justin Larson IV","age":37,"location":"North Wilburn"}},{"attributes":{"name":"Alanna Stanton","age":77,"location":"New Ellaport"}},{"attributes":{"name":"Delpha Flatley","age":52,"location":"Hickletown"}},{"attributes":{"name":"Reinhold Parker","age":48,"location":"Missouriside"}},{"attributes":{"name":"Rosario Gutmann","age":29,"location":"Theodorafurt"}},{"attributes":{"name":"Timmy VonRueden","age":53,"location":"Port Anabelbury"}},{"attributes":{"name":"Ms. Stephen Stiedemann II","age":78,"location":"Streichcester"}},{"attributes":{"name":"Braxton Shields","age":20,"location":"Selinashire"}},{"attributes":{"name":"Immanuel Jacobs MD","age":21,"location":"Thielview"}},{"attributes":{"name":"Rachael Krajcik","age":58,"location":"New Zack"}},{"attributes":{"name":"Savion Stiedemann","age":58,"location":"Wizaside"}},{"attributes":{"name":"Dr. Jovan Carter","age":21,"location":"South Jordan"}},{"attributes":{"name":"Elfrieda Price","age":30,"location":"South Floydboro"}},{"attributes":{"name":"Nella Trantow","age":60,"location":"Celiaview"}},{"attributes":{"name":"Ms. Lorena Connelly","age":73,"location":"Elnaburgh"}},{"attributes":{"name":"Israel Metz","age":21,"location":"Devonteboro"}},{"attributes":{"name":"Bobbie Schmitt","age":74,"location":"Shadhaven"}},{"attributes":{"name":"Alfonso Walter","age":31,"location":"Delilahport"}},{"attributes":{"name":"Rick Kuhlman","age":70,"location":"Christiancester"}},{"attributes":{"name":"Loretta Hackett","age":26,"location":"Montgomery"}},{"attributes":{"name":"Ralph Bartoletti","age":32,"location":"El Paso"}},{"attributes":{"name":"Kellie Becker","age":28,"location":"Larsontown"}},{"attributes":{"name":"Terry Olson","age":74,"location":"Janesville"}},{"attributes":{"name":"Mr. Claud Pfannerstill","age":66,"location":"Ressieborough"}},{"attributes":{"name":"John Hyatt","age":75,"location":"Rockwall"}},{"attributes":{"name":"Chloe Reinger IV","age":67,"location":"Reggieville"}},{"attributes":{"name":"Laverna Cronin-King","age":32,"location":"Lefflerfurt"}},{"attributes":{"name":"Stanley Altenwerth PhD","age":42,"location":"Feeneyberg"}},{"attributes":{"name":"Francisca McCullough","age":67,"location":"Lake Anastaciofurt"}},{"attributes":{"name":"Ms. King Fisher","age":30,"location":"West Michael"}},{"attributes":{"name":"Miss Dorothy Emard","age":64,"location":"East Vickieshire"}},{"attributes":{"name":"Dr. Laurence Cassin","age":70,"location":"New Jonathan"}},{"attributes":{"name":"Darin Bogan","age":61,"location":"Stokesport"}},{"attributes":{"name":"Keyshawn Leuschke","age":78,"location":"New Suzanne"}},{"attributes":{"name":"Zack Luettgen","age":35,"location":"Lake Margarettashire"}},{"attributes":{"name":"Marvin West","age":45,"location":"Hayleychester"}},{"attributes":{"name":"Jackie Blick","age":51,"location":"North Jackiebury"}},{"attributes":{"name":"Stephanie Harvey","age":77,"location":"Nikolausboro"}},{"attributes":{"name":"Myrtle Hodkiewicz","age":47,"location":"Dasiaton"}},{"attributes":{"name":"Gisselle Farrell","age":46,"location":"Fort Sabrynaville"}},{"attributes":{"name":"Lynette Blick","age":29,"location":"West Enola"}},{"attributes":{"name":"Wilbert Waelchi V","age":72,"location":"Westfield"}},{"attributes":{"name":"Rene Durgan","age":52,"location":"Littlestead"}},{"attributes":{"name":"Dr. Marie Grady","age":59,"location":"Newellland"}},{"attributes":{"name":"Sherri Brakus","age":63,"location":"McLaughlinworth"}},{"attributes":{"name":"Dr. Ignatius Labadie","age":57,"location":"Fort Matt"}},{"attributes":{"name":"Tad Ratke","age":52,"location":"East Devencester"}},{"attributes":{"name":"Blanca Schuster","age":66,"location":"Antelope"}},{"attributes":{"name":"Antoinette Cummerata","age":33,"location":"San Bernardino"}},{"attributes":{"name":"Miss Bradley Sawayn","age":39,"location":"Roobchester"}},{"attributes":{"name":"Jon Hansen","age":47,"location":"North Leonie"}},{"attributes":{"name":"Mark O'Hara","age":52,"location":"Skokie"}},{"attributes":{"name":"Itzel Marquardt","age":70,"location":"Olliefield"}},{"attributes":{"name":"Shane Friesen","age":55,"location":"South Alanis"}},{"attributes":{"name":"Santos Pfannerstill","age":72,"location":"Terryburgh"}},{"attributes":{"name":"Noemie Kreiger","age":31,"location":"Yorba Linda"}},{"attributes":{"name":"Vincent Bernhard-Bins","age":66,"location":"San Marcos"}},{"attributes":{"name":"Miss Christian Leuschke","age":22,"location":"New Chazfurt"}},{"attributes":{"name":"Gretchen Braun","age":19,"location":"North Bennett"}},{"attributes":{"name":"Rosie Denesik","age":24,"location":"Moenborough"}},{"attributes":{"name":"Marina Buckridge","age":24,"location":"Beaumont"}},{"attributes":{"name":"Wilmer Hoeger","age":22,"location":"Hampton"}},{"attributes":{"name":"Dr. Ralph Carroll","age":68,"location":"Davie"}},{"attributes":{"name":"Bret Boyer","age":33,"location":"Huntington Beach"}},{"attributes":{"name":"Freeda Cartwright","age":69,"location":"Fort Mertie"}},{"attributes":{"name":"Kenyatta Rohan","age":71,"location":"Lynchhaven"}},{"attributes":{"name":"Ms. Alton Pfeffer","age":19,"location":"Hettingerborough"}},{"attributes":{"name":"Mrs. Glenda Gleichner","age":32,"location":"South Loybury"}},{"attributes":{"name":"Amparo Wolff","age":18,"location":"Mitchellfield"}},{"attributes":{"name":"Jade Schowalter","age":46,"location":"East Daren"}},{"attributes":{"name":"Wendell Rutherford","age":69,"location":"O'Keefefort"}},{"attributes":{"name":"Maria Shields Sr.","age":30,"location":"Lillianhaven"}},{"attributes":{"name":"Narciso Stanton","age":80,"location":"Konopelskistad"}},{"attributes":{"name":"Syble Kilback","age":26,"location":"New Reedburgh"}},{"attributes":{"name":"Jill Wisozk","age":70,"location":"Quitzonborough"}},{"attributes":{"name":"Mr. Irma Hodkiewicz","age":19,"location":"North Marilie"}},{"attributes":{"name":"Devin Corkery","age":73,"location":"New Nils"}},{"attributes":{"name":"Florence Luettgen","age":72,"location":"East Eloiseland"}},{"attributes":{"name":"Alvena Rosenbaum","age":51,"location":"North Jacintoport"}},{"attributes":{"name":"Ervin Ebert PhD","age":52,"location":"South Zoey"}},{"attributes":{"name":"Eugene Rempel","age":71,"location":"Toledo"}},{"attributes":{"name":"Lela Langworth","age":27,"location":"East Ashtonborough"}},{"attributes":{"name":"Eleanor Leuschke","age":72,"location":"San Jacinto"}},{"attributes":{"name":"Edgar Hayes","age":50,"location":"Poinciana"}},{"attributes":{"name":"Berneice Cormier","age":72,"location":"Wolffview"}},{"attributes":{"name":"Noah Goyette","age":38,"location":"West Lenniefield"}},{"attributes":{"name":"Dr. Sophia Rolfson","age":27,"location":"Carterside"}},{"attributes":{"name":"Joel King","age":22,"location":"Port Gavinborough"}},{"attributes":{"name":"Dillon Hilpert V","age":79,"location":"Adrielstead"}},{"attributes":{"name":"Romaine Spinka","age":28,"location":"Palmdale"}},{"attributes":{"name":"Adam Brown","age":45,"location":"Port Bette"}},{"attributes":{"name":"Morris Hodkiewicz","age":40,"location":"Todville"}},{"attributes":{"name":"Devin Bartoletti","age":47,"location":"Hemet"}},{"attributes":{"name":"Ila Fritsch","age":55,"location":"Murray"}},{"attributes":{"name":"Dominick Green","age":41,"location":"North Brendaton"}},{"attributes":{"name":"Percy Williamson Jr.","age":53,"location":"West Marycester"}},{"attributes":{"name":"Rick Greenfelder","age":50,"location":"Glenview"}},{"attributes":{"name":"Shayne Barrows","age":36,"location":"Fond du Lac"}},{"attributes":{"name":"Damon Stroman","age":34,"location":"McAllen"}},{"attributes":{"name":"Elian Schaden DVM","age":66,"location":"Rashawntown"}},{"attributes":{"name":"Randy Fay","age":21,"location":"Santa Clarita"}},{"attributes":{"name":"Easter Ritchie","age":79,"location":"East Westonmouth"}},{"attributes":{"name":"Dr. Viva Wilderman","age":52,"location":"Lake Gabe"}},{"attributes":{"name":"Mr. Lamar Crist","age":67,"location":"New Margaritahaven"}},{"attributes":{"name":"Morton Will","age":67,"location":"North Annettaburgh"}},{"attributes":{"name":"Marianne Gerhold","age":71,"location":"Madison"}},{"attributes":{"name":"Maxine Senger","age":79,"location":"South Marianneside"}},{"attributes":{"name":"Leona Reichel","age":39,"location":"Maricopa"}},{"attributes":{"name":"Miss Susan Miller","age":44,"location":"Cristburgh"}},{"attributes":{"name":"Jalyn Lindgren DVM","age":65,"location":"Johnsshire"}},{"attributes":{"name":"Zoie Gorczany","age":76,"location":"Fort Bernhard"}},{"attributes":{"name":"Hannah Leuschke","age":64,"location":"Cristbury"}},{"attributes":{"name":"Ira Marquardt","age":79,"location":"Princeville"}},{"attributes":{"name":"Jan Hyatt Sr.","age":48,"location":"Port Claudine"}},{"attributes":{"name":"Charley Emard","age":34,"location":"North Devanworth"}},{"attributes":{"name":"Lindsey Hane","age":29,"location":"West Ashly"}},{"attributes":{"name":"Leon Schulist","age":58,"location":"Hegmannhaven"}},{"attributes":{"name":"Randall Hane","age":76,"location":"Fort Claire"}},{"attributes":{"name":"Camryn Witting","age":29,"location":"Gaetanoton"}},{"attributes":{"name":"Miss Yasmeen Prosacco","age":52,"location":"East Adrianna"}},{"attributes":{"name":"Elsie Kunze","age":72,"location":"Port Jameyland"}},{"attributes":{"name":"Marjorie Raynor","age":35,"location":"Inesside"}},{"attributes":{"name":"Roy Schroeder","age":59,"location":"Morissettemouth"}},{"attributes":{"name":"Mr. Unique Farrell MD","age":48,"location":"Raymundoburgh"}},{"attributes":{"name":"Kaelyn Funk","age":52,"location":"Eden Prairie"}},{"attributes":{"name":"Elton Gibson","age":62,"location":"Berryfort"}},{"attributes":{"name":"Caleb Bradtke","age":52,"location":"Mertzburgh"}},{"attributes":{"name":"Horace Paucek","age":22,"location":"Orenburgh"}},{"attributes":{"name":"Lynne Cummings","age":33,"location":"Monicafort"}},{"attributes":{"name":"Eldon Mertz","age":79,"location":"Gersonstead"}},{"attributes":{"name":"Sabryna Feil","age":73,"location":"Felipemouth"}},{"attributes":{"name":"Tyler Johnson","age":60,"location":"Arjunmouth"}},{"attributes":{"name":"Sibyl Kirlin V","age":52,"location":"Cheektowaga"}},{"attributes":{"name":"Laurence Lubowitz","age":78,"location":"Peteville"}},{"attributes":{"name":"Gloria Howe","age":31,"location":"Napa"}},{"attributes":{"name":"Jodi McLaughlin","age":37,"location":"South Soledad"}},{"attributes":{"name":"Dorothy Howe III","age":77,"location":"North Brock"}},{"attributes":{"name":"Hubert Kohler","age":19,"location":"Willychester"}},{"attributes":{"name":"Tracy Grant","age":76,"location":"North Karleyberg"}},{"attributes":{"name":"Miss Colleen Daniel","age":62,"location":"Maggiochester"}},{"attributes":{"name":"Jared Kessler","age":24,"location":"New Kimberly"}},{"attributes":{"name":"Levi Keebler","age":32,"location":"Cary"}},{"attributes":{"name":"Tiffany Grady","age":74,"location":"Ethelynbury"}},{"attributes":{"name":"Elias Stroman","age":36,"location":"West Earline"}},{"attributes":{"name":"Wilfred Aufderhar","age":20,"location":"East Payton"}},{"attributes":{"name":"Mr. Noah Stehr-Murray","age":22,"location":"Port Justinefurt"}},{"attributes":{"name":"Mrs. Wendy Russel Jr.","age":33,"location":"Starkstead"}},{"attributes":{"name":"Shirley Rohan","age":54,"location":"Durham"}},{"attributes":{"name":"Mr. Zakary Huel","age":75,"location":"Gottliebhaven"}},{"attributes":{"name":"Ms. Cora Schmeler PhD","age":32,"location":"Chicopee"}},{"attributes":{"name":"Dolores Friesen","age":40,"location":"Tampa"}},{"attributes":{"name":"Courtney Stanton","age":53,"location":"Ivyside"}},{"attributes":{"name":"Issac Kassulke MD","age":19,"location":"Abilene"}},{"attributes":{"name":"Hannah Erdman","age":52,"location":"Lake Piperbury"}},{"attributes":{"name":"Tara Smith Jr.","age":37,"location":"Kylaside"}},{"attributes":{"name":"Jan Trantow","age":58,"location":"Luisberg"}},{"attributes":{"name":"Maurine O'Reilly","age":75,"location":"South Tyrique"}},{"attributes":{"name":"Audrey Beatty","age":34,"location":"Jordanefurt"}},{"attributes":{"name":"Hope Mertz","age":73,"location":"Lemkeburgh"}},{"attributes":{"name":"Lacy Swift","age":66,"location":"Fort Kurt"}},{"attributes":{"name":"Kathleen Reichert","age":23,"location":"Lake Maryseshire"}},{"attributes":{"name":"April Jerde","age":21,"location":"Lake Glenborough"}},{"attributes":{"name":"Mellie Feeney","age":76,"location":"South Maddisonfurt"}},{"attributes":{"name":"Rene Barrows","age":33,"location":"Mesa"}},{"attributes":{"name":"Dr. Carl Collins","age":21,"location":"North Miami Beach"}},{"attributes":{"name":"Janie Walker","age":59,"location":"Goyettehaven"}},{"attributes":{"name":"Lucas Shanahan","age":66,"location":"Kertzmannfield"}},{"attributes":{"name":"Darla Schaefer","age":27,"location":"Port Aydenhaven"}},{"attributes":{"name":"Dixie Bartoletti","age":51,"location":"Harveymouth"}},{"attributes":{"name":"Marjolaine Vandervort","age":63,"location":"Murraymouth"}},{"attributes":{"name":"Melissa Rutherford","age":63,"location":"New Gretafurt"}},{"attributes":{"name":"Stephen Toy","age":62,"location":"The Villages"}},{"attributes":{"name":"Sonja Jast","age":58,"location":"Port Alba"}},{"attributes":{"name":"Roxanne Russel","age":35,"location":"New Drakeport"}},{"attributes":{"name":"Renee Mills MD","age":54,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Lindsay Schiller","age":43,"location":"San Tan Valley"}},{"attributes":{"name":"Mrs. Maureen Stanton","age":50,"location":"Lake Kristinside"}},{"attributes":{"name":"Ms. Catherine Kirlin","age":78,"location":"Emmethaven"}},{"attributes":{"name":"Vincent Leffler","age":80,"location":"New Berta"}},{"attributes":{"name":"Juan Hilll","age":70,"location":"Walterfort"}},{"attributes":{"name":"Jalyn Buckridge","age":52,"location":"Garrettshire"}},{"attributes":{"name":"Timothy Spencer-Haag","age":33,"location":"Amaraworth"}},{"attributes":{"name":"Pierre Gulgowski","age":25,"location":"Gottliebborough"}},{"attributes":{"name":"Ronaldo Hane","age":50,"location":"Hannahbury"}},{"attributes":{"name":"Garry Ferry","age":18,"location":"Milobury"}},{"attributes":{"name":"Mrs. Gail Ullrich","age":64,"location":"Reno"}},{"attributes":{"name":"Walter Dickens","age":58,"location":"Jorgeberg"}},{"attributes":{"name":"Fannie Pacocha","age":20,"location":"Blaine"}},{"attributes":{"name":"Brisa Koss","age":51,"location":"West Leracester"}},{"attributes":{"name":"Odell Weber","age":35,"location":"Kulasberg"}},{"attributes":{"name":"Pam Waelchi","age":51,"location":"Hayescester"}},{"attributes":{"name":"Christ Sawayn","age":78,"location":"Heaneyburgh"}},{"attributes":{"name":"Dorcas Larson Sr.","age":51,"location":"West Guillermoboro"}},{"attributes":{"name":"Krystal Kunze","age":79,"location":"Greenborough"}},{"attributes":{"name":"Jarrod Gorczany","age":73,"location":"Konopelskibury"}},{"attributes":{"name":"Jesus Willms","age":55,"location":"Francisstead"}},{"attributes":{"name":"Julio Miller","age":66,"location":"Moreno Valley"}},{"attributes":{"name":"Elena Bosco","age":36,"location":"East Raleigh"}},{"attributes":{"name":"Newell Hartmann","age":54,"location":"Port Rogersport"}},{"attributes":{"name":"Mekhi Becker","age":73,"location":"Rancho Cordova"}},{"attributes":{"name":"Melba Tromp","age":78,"location":"Travonshire"}},{"attributes":{"name":"Luciano Lesch","age":71,"location":"Gutkowskifurt"}},{"attributes":{"name":"Jamie Schuster","age":33,"location":"Fort Kameron"}},{"attributes":{"name":"Gustavo Mraz","age":30,"location":"Nikolauschester"}},{"attributes":{"name":"Laura Kautzer","age":69,"location":"University"}},{"attributes":{"name":"Dr. Jasper Grady","age":29,"location":"North Dulceton"}},{"attributes":{"name":"Ronnie Zemlak","age":64,"location":"West Adrianshire"}},{"attributes":{"name":"Marta Moore","age":30,"location":"Starktown"}},{"attributes":{"name":"Molly Zemlak","age":22,"location":"Enolachester"}},{"attributes":{"name":"Archie Hand","age":48,"location":"Broomfield"}},{"attributes":{"name":"Kristi Christiansen","age":19,"location":"Shainamouth"}},{"attributes":{"name":"Kobe Williamson","age":30,"location":"Cedar Rapids"}},{"attributes":{"name":"Carley Dooley","age":53,"location":"Lake Shirleystead"}},{"attributes":{"name":"Anthony Gibson","age":38,"location":"Labadiebury"}},{"attributes":{"name":"Alan Hintz","age":45,"location":"South Flo"}},{"attributes":{"name":"Becky Schuppe","age":51,"location":"Winnifredfield"}},{"attributes":{"name":"Kevin Murazik","age":76,"location":"Fritschport"}},{"attributes":{"name":"Bertrand Boyle","age":49,"location":"New Torrance"}},{"attributes":{"name":"Jeanne Mante","age":31,"location":"West Miraclehaven"}},{"attributes":{"name":"Joan Cassin","age":69,"location":"Lake Reillyhaven"}},{"attributes":{"name":"Woodrow Mann Sr.","age":40,"location":"Loraberg"}},{"attributes":{"name":"Lester Osinski","age":57,"location":"Ludiechester"}},{"attributes":{"name":"Elvira Beahan-Nicolas","age":79,"location":"Wisokycester"}},{"attributes":{"name":"Saul Schumm","age":44,"location":"Fort Mavis"}},{"attributes":{"name":"Irvin Lindgren","age":28,"location":"Rosenbaumcester"}},{"attributes":{"name":"Lois Spencer","age":31,"location":"Arlenefurt"}},{"attributes":{"name":"Dorothy Durgan","age":31,"location":"West Darron"}},{"attributes":{"name":"Emmett Corwin","age":24,"location":"Flatleyland"}},{"attributes":{"name":"Miss Homer Nicolas","age":76,"location":"Emeliefort"}},{"attributes":{"name":"Stella Weber-Mohr","age":20,"location":"Hazleburgh"}},{"attributes":{"name":"Violet Larkin V","age":32,"location":"West Cole"}},{"attributes":{"name":"Marcellus Kerluke","age":70,"location":"Colefort"}},{"attributes":{"name":"Adam Gibson DDS","age":21,"location":"Ignaciofield"}},{"attributes":{"name":"Mr. Polly Fadel","age":54,"location":"East Floydport"}},{"attributes":{"name":"Josh Von","age":56,"location":"Fabiolaview"}},{"attributes":{"name":"Marilyn Kshlerin","age":51,"location":"South Rettaville"}},{"attributes":{"name":"Monica Kris","age":35,"location":"West Connie"}},{"attributes":{"name":"Aleen Yost","age":23,"location":"Spinkaside"}},{"attributes":{"name":"Burdette Grimes","age":45,"location":"Shieldsfield"}},{"attributes":{"name":"Rosa Steuber","age":34,"location":"Kevinbury"}},{"attributes":{"name":"Vicky Hilpert","age":61,"location":"Letaside"}},{"attributes":{"name":"Susie Kuhn","age":67,"location":"West Kayleigh"}},{"attributes":{"name":"Issac Funk-Bergnaum","age":78,"location":"Vallejo"}},{"attributes":{"name":"Angelina Simonis","age":32,"location":"Fort Celine"}},{"attributes":{"name":"Curtis Lindgren","age":42,"location":"Rancho Cordova"}},{"attributes":{"name":"Carley Abbott","age":45,"location":"Pflugerville"}},{"attributes":{"name":"Miss Wendy Tillman","age":29,"location":"Pontiac"}},{"attributes":{"name":"Andre Padberg","age":54,"location":"Langoshberg"}},{"attributes":{"name":"Mrs. Jacqueline Steuber","age":65,"location":"Russelshire"}},{"attributes":{"name":"Kaylin Fay","age":57,"location":"St. Louis"}},{"attributes":{"name":"Dr. Maggie Hackett","age":19,"location":"St. Charles"}},{"attributes":{"name":"Obie Feest","age":45,"location":"Fort Tiarachester"}},{"attributes":{"name":"Mr. Brett Orn","age":49,"location":"North Edgar"}},{"attributes":{"name":"Tiffany Armstrong","age":28,"location":"Lake Landenmouth"}},{"attributes":{"name":"Isai O'Keefe PhD","age":60,"location":"Langfort"}},{"attributes":{"name":"Furman Zboncak","age":65,"location":"Danfield"}},{"attributes":{"name":"Felipe Konopelski","age":60,"location":"Bashirianmouth"}},{"attributes":{"name":"Lloyd Marquardt","age":32,"location":"Lefflerstad"}},{"attributes":{"name":"Alayna Brekke","age":62,"location":"Fort Maeganfield"}},{"attributes":{"name":"Pietro Swift","age":46,"location":"Fort Madie"}},{"attributes":{"name":"Johnnie Bode","age":46,"location":"Lake Fletcher"}},{"attributes":{"name":"Donna Walker","age":40,"location":"West Babylon"}},{"attributes":{"name":"Virginia Schuster","age":54,"location":"Fort Newtonfurt"}},{"attributes":{"name":"Kelly Hand","age":61,"location":"Erincester"}},{"attributes":{"name":"Clifton Schneider","age":42,"location":"Simi Valley"}},{"attributes":{"name":"Francis Stiedemann","age":40,"location":"New Milford"}},{"attributes":{"name":"Eveline Cormier","age":73,"location":"East Joannie"}},{"attributes":{"name":"Kellie Schmeler","age":51,"location":"Oro Valley"}},{"attributes":{"name":"Brendan Sipes","age":71,"location":"Hackensack"}},{"attributes":{"name":"Courtney Kerluke","age":21,"location":"Shaniechester"}},{"attributes":{"name":"Mrs. Barbara Braun","age":38,"location":"Hanford"}},{"attributes":{"name":"Archie Morissette","age":69,"location":"Alisonborough"}},{"attributes":{"name":"Dr. Carlotta Wisozk","age":79,"location":"Steubertown"}},{"attributes":{"name":"Enoch Wunsch","age":68,"location":"Cary"}},{"attributes":{"name":"Victoria Runte-Kilback","age":73,"location":"West Elna"}},{"attributes":{"name":"Lawrence Feeney","age":71,"location":"Milwaukee"}},{"attributes":{"name":"Shelly Harber Sr.","age":77,"location":"Lake Kiraboro"}},{"attributes":{"name":"Joshua MacGyver","age":70,"location":"Clintonville"}},{"attributes":{"name":"Lia Marks-Sporer","age":52,"location":"Lubbock"}},{"attributes":{"name":"Leonard Satterfield Sr.","age":68,"location":"Fort Mervin"}},{"attributes":{"name":"Carole Weber","age":63,"location":"South Dayneberg"}},{"attributes":{"name":"Andy Nolan","age":27,"location":"South Alexandrea"}},{"attributes":{"name":"Agnes Nitzsche I","age":31,"location":"New Harold"}},{"attributes":{"name":"Emanuel Greenholt","age":39,"location":"Kuhlmanmouth"}},{"attributes":{"name":"Ivy Green","age":43,"location":"Tadbury"}},{"attributes":{"name":"Essie Reichel","age":32,"location":"North Ena"}},{"attributes":{"name":"Violet Nader V","age":27,"location":"College Station"}},{"attributes":{"name":"Eileen Osinski","age":77,"location":"Enid"}},{"attributes":{"name":"Esmeralda Stehr","age":58,"location":"Eddview"}},{"attributes":{"name":"Patrick Boehm-Zemlak","age":24,"location":"Lake Joanne"}},{"attributes":{"name":"Guadalupe O'Kon","age":25,"location":"Jarrodville"}},{"attributes":{"name":"Missouri Gottlieb","age":71,"location":"West Montanahaven"}},{"attributes":{"name":"Ramona Kreiger","age":32,"location":"Clarksville"}},{"attributes":{"name":"Toni Lakin","age":42,"location":"Fort Mortimer"}},{"attributes":{"name":"Alfred McLaughlin","age":55,"location":"Azusa"}},{"attributes":{"name":"Kristy Hoppe","age":75,"location":"South Annehaven"}},{"attributes":{"name":"Frances Lynch II","age":53,"location":"West Mattie"}},{"attributes":{"name":"Kristie Walsh","age":28,"location":"New Juvenal"}},{"attributes":{"name":"Winifred Leannon","age":51,"location":"West Cleveland"}},{"attributes":{"name":"Braxton Gulgowski Jr.","age":46,"location":"Markston"}},{"attributes":{"name":"Kacey Brekke-Wilkinson MD","age":27,"location":"Citrus Heights"}},{"attributes":{"name":"Wallace Sawayn V","age":28,"location":"Lelaworth"}},{"attributes":{"name":"Roberta Abbott","age":80,"location":"West Krista"}},{"attributes":{"name":"Daisy Fritsch","age":41,"location":"East Curtview"}},{"attributes":{"name":"Marlene Terry","age":77,"location":"South Luzfort"}},{"attributes":{"name":"Marion Mitchell-Wisoky","age":32,"location":"Largo"}},{"attributes":{"name":"Monty Larson","age":56,"location":"Osinskiside"}},{"attributes":{"name":"Antwon Bergnaum","age":49,"location":"Centreville"}},{"attributes":{"name":"Ann O'Connell","age":19,"location":"East Ronny"}},{"attributes":{"name":"Floyd Hyatt","age":80,"location":"Fort Deshaunboro"}},{"attributes":{"name":"Elvira Kemmer","age":65,"location":"Heathcoteshire"}},{"attributes":{"name":"Ms. Jeanette Dooley","age":27,"location":"Cheyennefort"}},{"attributes":{"name":"Oleta Botsford","age":50,"location":"Laredo"}},{"attributes":{"name":"Eleanor Beier","age":47,"location":"West Jaredfurt"}},{"attributes":{"name":"Velma Krajcik","age":19,"location":"Port Braxtonboro"}},{"attributes":{"name":"Violet Bergnaum","age":65,"location":"Lake Rossborough"}},{"attributes":{"name":"Martha Mann","age":48,"location":"Wilkinsonport"}},{"attributes":{"name":"Pietro Ledner","age":54,"location":"Schusterhaven"}},{"attributes":{"name":"Joesph Schowalter","age":67,"location":"West Edmund"}},{"attributes":{"name":"Edith Larkin","age":20,"location":"Port Leola"}},{"attributes":{"name":"Marcos Kozey","age":63,"location":"Port Santino"}},{"attributes":{"name":"Dr. Carolyn Ferry","age":38,"location":"South Fatimaville"}},{"attributes":{"name":"Emil Stark","age":34,"location":"Feilberg"}},{"attributes":{"name":"Francisco Konopelski","age":25,"location":"Perth Amboy"}},{"attributes":{"name":"Jermaine Gleason","age":80,"location":"San Bruno"}},{"attributes":{"name":"Raegan Kshlerin","age":78,"location":"West Darren"}},{"attributes":{"name":"Jackson Kirlin","age":76,"location":"Dibbertworth"}},{"attributes":{"name":"Veronica Balistreri","age":39,"location":"East Myrtisbury"}},{"attributes":{"name":"Eduardo Schoen","age":34,"location":"Port Vitotown"}},{"attributes":{"name":"Kira Nitzsche","age":79,"location":"West Leda"}},{"attributes":{"name":"Alexzander Wuckert","age":78,"location":"Ritchiemouth"}},{"attributes":{"name":"Frederick Bartoletti","age":27,"location":"Ankeny"}},{"attributes":{"name":"Mrs. Claire McGlynn","age":56,"location":"West Rainaworth"}},{"attributes":{"name":"Wendell Keeling","age":26,"location":"Quigleyhaven"}},{"attributes":{"name":"Claire Homenick-Dickens","age":70,"location":"Muellerstead"}},{"attributes":{"name":"Eddie Friesen IV","age":41,"location":"Port Sonya"}},{"attributes":{"name":"Lowell Rutherford","age":74,"location":"Dibbertfurt"}},{"attributes":{"name":"Hayley Erdman","age":23,"location":"Dominictown"}},{"attributes":{"name":"Lesly Grimes","age":26,"location":"Fort Bernhardcester"}},{"attributes":{"name":"Myron Senger","age":74,"location":"North Annie"}},{"attributes":{"name":"Andy Ferry","age":73,"location":"Bowling Green"}},{"attributes":{"name":"Scarlett Batz III","age":75,"location":"Millsmouth"}},{"attributes":{"name":"Aiden Hettinger","age":39,"location":"Brockton"}},{"attributes":{"name":"Tommy Legros","age":54,"location":"East Elfriedaport"}},{"attributes":{"name":"Eleanor Spinka","age":65,"location":"Livermore"}},{"attributes":{"name":"Stephen Frami","age":76,"location":"Cliffordville"}},{"attributes":{"name":"Clay Stehr-Reinger","age":21,"location":"Devontechester"}},{"attributes":{"name":"Miss Ana Conn","age":62,"location":"Christiansenberg"}},{"attributes":{"name":"Laura Keebler","age":50,"location":"Arafort"}},{"attributes":{"name":"Miss Nina Lockman","age":55,"location":"Kennedyville"}},{"attributes":{"name":"Emmett Hilpert","age":65,"location":"Stehrborough"}},{"attributes":{"name":"Danny Herzog","age":53,"location":"Port Agnes"}},{"attributes":{"name":"Becky Heidenreich","age":73,"location":"New Cassidy"}},{"attributes":{"name":"Bonnie Langworth","age":43,"location":"North Francisca"}},{"attributes":{"name":"Margarita Dibbert","age":61,"location":"West Kendrickburgh"}},{"attributes":{"name":"Albina Ortiz","age":18,"location":"Abernathyport"}},{"attributes":{"name":"Chris Barton","age":54,"location":"Miramar"}},{"attributes":{"name":"Rufus Mohr","age":50,"location":"El Monte"}},{"attributes":{"name":"Guido Gleichner","age":33,"location":"New Lula"}},{"attributes":{"name":"Lilly Mosciski","age":25,"location":"New Kian"}},{"attributes":{"name":"Dillan Renner","age":41,"location":"Loyalshire"}},{"attributes":{"name":"Alberto Ledner","age":80,"location":"North Josieberg"}},{"attributes":{"name":"Ms. Caitlyn Macejkovic DVM","age":73,"location":"Loisburgh"}},{"attributes":{"name":"Cynthia Padberg","age":54,"location":"Stokesmouth"}},{"attributes":{"name":"Rupert Turcotte","age":45,"location":"North Nestor"}},{"attributes":{"name":"Joanne Mann","age":49,"location":"Elizabeth"}},{"attributes":{"name":"Olga Greenfelder","age":56,"location":"Stammshire"}},{"attributes":{"name":"Cynthia Predovic","age":69,"location":"Port Noelia"}},{"attributes":{"name":"Chyna Collier-Renner","age":62,"location":"Brekkefort"}},{"attributes":{"name":"Dr. Adrian Runolfsson","age":23,"location":"Garden Grove"}},{"attributes":{"name":"Korbin Schulist","age":19,"location":"Predovicchester"}},{"attributes":{"name":"Ms. Omari Moen","age":43,"location":"South Maddisonside"}},{"attributes":{"name":"Roderick Kub","age":80,"location":"Pawtucket"}},{"attributes":{"name":"Pam Wolff IV","age":74,"location":"Tillmanfort"}},{"attributes":{"name":"Mr. Bradford Mohr","age":79,"location":"Schillerview"}},{"attributes":{"name":"Lewis Lind","age":23,"location":"West Lonny"}},{"attributes":{"name":"Ms. Winifred Botsford","age":67,"location":"San Angelo"}},{"attributes":{"name":"Josie Cronin","age":44,"location":"Chesterfield"}},{"attributes":{"name":"Mellie Bins","age":55,"location":"Stamford"}},{"attributes":{"name":"Gene Lemke DVM","age":62,"location":"Zackaryfield"}},{"attributes":{"name":"Yvette Becker","age":44,"location":"Corona"}},{"attributes":{"name":"Miss Priscilla Swift","age":45,"location":"Lake Deeworth"}},{"attributes":{"name":"Donald Murazik","age":62,"location":"Araburgh"}},{"attributes":{"name":"Ignacio Hansen-Barrows V","age":49,"location":"Ernserboro"}},{"attributes":{"name":"Zachary Runte","age":23,"location":"New Florine"}},{"attributes":{"name":"Willie Funk","age":54,"location":"Lakinview"}},{"attributes":{"name":"Horace Emard PhD","age":29,"location":"South Kali"}},{"attributes":{"name":"Greg Casper","age":40,"location":"Fort Loren"}},{"attributes":{"name":"Arturo Reinger","age":80,"location":"Lake Alize"}},{"attributes":{"name":"Wanda Witting-Douglas","age":57,"location":"Stantonborough"}},{"attributes":{"name":"Jeremie Hane","age":65,"location":"Joseberg"}},{"attributes":{"name":"Edward Becker","age":61,"location":"West Violetteside"}},{"attributes":{"name":"Lindsay Kreiger","age":38,"location":"Twin Falls"}},{"attributes":{"name":"Marian Watsica","age":58,"location":"Marquesshire"}},{"attributes":{"name":"Samanta Grady","age":40,"location":"South Einostead"}},{"attributes":{"name":"Calvin Wisoky-Cruickshank","age":46,"location":"Federicoside"}},{"attributes":{"name":"Jenna Flatley","age":73,"location":"West Danika"}},{"attributes":{"name":"Cristal Bartoletti","age":30,"location":"Mayhaven"}},{"attributes":{"name":"Sedrick MacGyver","age":46,"location":"Hesperia"}},{"attributes":{"name":"Lucas Mayer","age":56,"location":"Botsfordburgh"}},{"attributes":{"name":"Mack King-Jaskolski","age":59,"location":"Hansenstad"}},{"attributes":{"name":"Juan Stokes","age":45,"location":"Franeckiton"}},{"attributes":{"name":"Queen Bode","age":80,"location":"South Janiyahaven"}},{"attributes":{"name":"Anne Haag","age":62,"location":"South Dianachester"}},{"attributes":{"name":"Lamar Treutel DDS","age":73,"location":"Weimannmouth"}},{"attributes":{"name":"Jaime Bashirian","age":46,"location":"Marielletown"}},{"attributes":{"name":"Clyde Jaskolski","age":46,"location":"Kutchberg"}},{"attributes":{"name":"Perry Windler","age":22,"location":"Lauderhill"}},{"attributes":{"name":"Demond O'Kon","age":80,"location":"Rialto"}},{"attributes":{"name":"Ashlynn Ziemann","age":53,"location":"Lake Shanie"}},{"attributes":{"name":"Dr. Alejandrin White","age":39,"location":"Baltimore"}},{"attributes":{"name":"Rex Daniel","age":79,"location":"Wolfland"}},{"attributes":{"name":"Leticia Turcotte","age":22,"location":"South Harveyland"}},{"attributes":{"name":"Krystal Friesen V","age":34,"location":"North Jordon"}},{"attributes":{"name":"Kent Lakin V","age":75,"location":"Jacintoberg"}},{"attributes":{"name":"Noble Batz III","age":26,"location":"Vineland"}},{"attributes":{"name":"Cathy Feeney","age":44,"location":"Decatur"}},{"attributes":{"name":"Mr. Paris Halvorson","age":22,"location":"Walnut Creek"}},{"attributes":{"name":"Nichole Braun","age":20,"location":"Stokestown"}},{"attributes":{"name":"Emilia Lind","age":69,"location":"East Anastasiaport"}},{"attributes":{"name":"Zula Harris","age":40,"location":"Vidamouth"}},{"attributes":{"name":"Carissa Schulist-Klocko","age":23,"location":"Port Felicity"}},{"attributes":{"name":"Lenora Graham","age":19,"location":"Lake Kamille"}},{"attributes":{"name":"Daryl Ebert","age":29,"location":"Deckowtown"}},{"attributes":{"name":"Gene Abernathy","age":21,"location":"Shieldsland"}},{"attributes":{"name":"Wallace Altenwerth","age":71,"location":"Mullershire"}},{"attributes":{"name":"Pete Hudson","age":47,"location":"Ritabury"}},{"attributes":{"name":"Willie Hamill","age":25,"location":"Santa Maria"}},{"attributes":{"name":"Mrs. Maryann Schulist","age":66,"location":"New Ashleighchester"}},{"attributes":{"name":"Elliott Bode","age":62,"location":"Purdyburgh"}},{"attributes":{"name":"Gregorio Gleason","age":55,"location":"Haverhill"}},{"attributes":{"name":"Mattie Hoppe","age":30,"location":"Lake Reillyfort"}},{"attributes":{"name":"Maurice Jakubowski","age":60,"location":"Morarshire"}},{"attributes":{"name":"Maureen Botsford","age":50,"location":"East Koleview"}},{"attributes":{"name":"Mrs. Mellie Buckridge","age":30,"location":"Hampton"}},{"attributes":{"name":"Jane Green","age":20,"location":"Port Ignatius"}},{"attributes":{"name":"Lura Weber","age":48,"location":"Maxineborough"}},{"attributes":{"name":"Dr. Elliott Beatty","age":72,"location":"Fort Eleanore"}},{"attributes":{"name":"Candelario Wilkinson","age":77,"location":"Paterson"}},{"attributes":{"name":"Geovanni Kessler","age":74,"location":"Powlowskiberg"}},{"attributes":{"name":"Nancy Gottlieb","age":52,"location":"New Monserrate"}},{"attributes":{"name":"Jon Little","age":29,"location":"South Jarredberg"}},{"attributes":{"name":"Mr. Angelica Williamson-Haag","age":41,"location":"Skylarfield"}},{"attributes":{"name":"Petra Turner","age":69,"location":"Lefflercester"}},{"attributes":{"name":"Fabiola Friesen","age":42,"location":"West Judsonchester"}},{"attributes":{"name":"Viviane Kozey","age":65,"location":"El Monte"}},{"attributes":{"name":"Theodore Lind","age":79,"location":"Goldnerfield"}},{"attributes":{"name":"Golden Jakubowski","age":44,"location":"Lake Delilahworth"}},{"attributes":{"name":"Ephraim Sawayn","age":25,"location":"Fort Juana"}},{"attributes":{"name":"Dolores Murphy","age":38,"location":"South Mackenzieside"}},{"attributes":{"name":"Fred Wisoky-Romaguera","age":58,"location":"Nampa"}},{"attributes":{"name":"Brock Buckridge","age":18,"location":"Aspen Hill"}},{"attributes":{"name":"Kattie Rolfson","age":61,"location":"New Shanyland"}},{"attributes":{"name":"Breanne Labadie","age":78,"location":"Port Domenico"}},{"attributes":{"name":"Rudolph Konopelski","age":75,"location":"Hackensack"}},{"attributes":{"name":"Ellen Tremblay","age":25,"location":"Fort Raymundoworth"}},{"attributes":{"name":"German Lakin DVM","age":69,"location":"South Erwin"}},{"attributes":{"name":"Kevon Wintheiser","age":64,"location":"North Keyshawntown"}},{"attributes":{"name":"Mr. Abbigail Beier","age":57,"location":"Worcester"}},{"attributes":{"name":"Meda Bergstrom","age":46,"location":"Laceyfort"}},{"attributes":{"name":"Frances Rowe","age":29,"location":"Bismarck"}},{"attributes":{"name":"Jeremiah Ritchie","age":24,"location":"South Wava"}},{"attributes":{"name":"Robert Sawayn","age":67,"location":"New Hallie"}},{"attributes":{"name":"Jeffrey Kuhic","age":22,"location":"Lehnerfield"}},{"attributes":{"name":"Ora Tremblay","age":51,"location":"Beaverton"}},{"attributes":{"name":"Alden Muller DDS","age":47,"location":"Port Charlotte"}},{"attributes":{"name":"Harold Botsford","age":42,"location":"Sporerbury"}},{"attributes":{"name":"Mrs. Elizabeth Tremblay","age":76,"location":"Preciousfield"}},{"attributes":{"name":"Mr. Maurice Moore","age":31,"location":"South Cristobaltown"}},{"attributes":{"name":"Sophie Hoppe","age":76,"location":"Alexandria"}},{"attributes":{"name":"Flora Marks","age":50,"location":"North Mozelltown"}},{"attributes":{"name":"Mr. Sidney Goldner","age":28,"location":"Indio"}},{"attributes":{"name":"Dr. Darren Parker","age":76,"location":"New Rileyberg"}},{"attributes":{"name":"Leo Gulgowski","age":41,"location":"Port Ludieland"}},{"attributes":{"name":"Dana Howell","age":19,"location":"East Rebecaport"}},{"attributes":{"name":"Cecilia Vandervort","age":39,"location":"Fort Sarinahaven"}},{"attributes":{"name":"Janis Wunsch","age":25,"location":"Vallejo"}},{"attributes":{"name":"Madyson Spinka MD","age":74,"location":"Tillmanview"}},{"attributes":{"name":"Amos Mante","age":55,"location":"Fort Ravenside"}},{"attributes":{"name":"Queen Vandervort","age":37,"location":"Lake Marquise"}},{"attributes":{"name":"Juan Gusikowski II","age":25,"location":"Fort Toyfield"}},{"attributes":{"name":"Meghan Kirlin PhD","age":54,"location":"Lake Guillermofort"}},{"attributes":{"name":"Miss Stacey Hilll-Price","age":38,"location":"Ronaldoport"}},{"attributes":{"name":"Chris Goodwin V","age":55,"location":"Elyria"}},{"attributes":{"name":"Jamey Leuschke","age":33,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Holly Kiehn I","age":25,"location":"Brekkeboro"}},{"attributes":{"name":"Mae Stehr","age":67,"location":"East Cristinaside"}},{"attributes":{"name":"Annie Kemmer-Bartell","age":39,"location":"New Coraboro"}},{"attributes":{"name":"Niko Durgan","age":38,"location":"Dundalk"}},{"attributes":{"name":"Arnold Fadel","age":20,"location":"Sonnyhaven"}},{"attributes":{"name":"Sara Strosin","age":63,"location":"Lake Lela"}},{"attributes":{"name":"Travis Heaney","age":41,"location":"San Bernardino"}},{"attributes":{"name":"Dr. Jill Watsica-Torp","age":77,"location":"New Hectorview"}},{"attributes":{"name":"Mary Muller","age":74,"location":"Freidaboro"}},{"attributes":{"name":"Casey Connelly","age":58,"location":"Rachaelberg"}},{"attributes":{"name":"Miss Wallace O'Keefe","age":58,"location":"Anaheim"}},{"attributes":{"name":"Gayle Kirlin II","age":45,"location":"Haydenboro"}},{"attributes":{"name":"Dr. Carol Renner MD","age":32,"location":"North Earlinecester"}},{"attributes":{"name":"Juston Pollich","age":43,"location":"Williamshire"}},{"attributes":{"name":"Federico Casper","age":24,"location":"Feeneyfield"}},{"attributes":{"name":"Marilyn Lakin","age":75,"location":"Huntsville"}},{"attributes":{"name":"Bob McLaughlin","age":26,"location":"South Salvador"}},{"attributes":{"name":"Willie Grant","age":75,"location":"Schillerfield"}},{"attributes":{"name":"Cleora Daniel","age":52,"location":"South Darrinfield"}},{"attributes":{"name":"Chesley Graham III","age":21,"location":"Bauchview"}},{"attributes":{"name":"Maymie Bechtelar","age":25,"location":"East Dulceboro"}},{"attributes":{"name":"Earnest Franecki","age":57,"location":"Leostad"}},{"attributes":{"name":"Santiago Denesik","age":35,"location":"West Orlo"}},{"attributes":{"name":"Leland Cartwright","age":68,"location":"West Gust"}},{"attributes":{"name":"Anne Satterfield","age":56,"location":"Piercetown"}},{"attributes":{"name":"Loyce Waelchi","age":56,"location":"Port Carolyne"}},{"attributes":{"name":"Cedric Klein","age":69,"location":"Hicksville"}},{"attributes":{"name":"Dr. Keenan Blanda","age":53,"location":"Port Wilfridborough"}},{"attributes":{"name":"Dr. Beatrice Yost","age":58,"location":"West Caleb"}},{"attributes":{"name":"Yolanda Dach","age":46,"location":"New Horacioside"}},{"attributes":{"name":"Dr. Green Parisian PhD","age":48,"location":"Lake Hoyt"}},{"attributes":{"name":"Hilda O'Keefe V","age":18,"location":"Thornton"}},{"attributes":{"name":"Dylan Effertz","age":19,"location":"Kshlerinstead"}},{"attributes":{"name":"Edmond Herzog","age":21,"location":"Alexamouth"}},{"attributes":{"name":"Taryn Legros","age":45,"location":"Leoniebury"}},{"attributes":{"name":"Margarett Orn","age":63,"location":"McGlynnborough"}},{"attributes":{"name":"Josephine Frami V","age":64,"location":"South Ed"}},{"attributes":{"name":"Dorothy Farrell","age":37,"location":"Beaverton"}},{"attributes":{"name":"John Farrell DVM","age":71,"location":"Fort Dario"}},{"attributes":{"name":"Aditya Hills","age":59,"location":"South Lilyside"}},{"attributes":{"name":"Stella Rowe","age":40,"location":"Meredithton"}},{"attributes":{"name":"Carolyn Mohr","age":77,"location":"Coon Rapids"}},{"attributes":{"name":"Marty Dietrich","age":67,"location":"Sabrinaview"}},{"attributes":{"name":"Lee Littel PhD","age":74,"location":"Sawaynside"}},{"attributes":{"name":"Tiffany Daugherty","age":51,"location":"Port Antoniettaborough"}},{"attributes":{"name":"Dr. Luke Weimann","age":47,"location":"Mullerport"}},{"attributes":{"name":"Ms. Ada Emard","age":43,"location":"Fall River"}},{"attributes":{"name":"Kody Schaefer","age":25,"location":"Johnsonbury"}},{"attributes":{"name":"Melanie Cormier","age":80,"location":"Citrus Heights"}},{"attributes":{"name":"Dr. Earl Murray","age":78,"location":"Carterside"}},{"attributes":{"name":"Samuel Homenick","age":63,"location":"East Georgianaworth"}},{"attributes":{"name":"Delores Satterfield","age":68,"location":"Marietta"}},{"attributes":{"name":"Kevin Zemlak","age":33,"location":"West Braulio"}},{"attributes":{"name":"Darrin Beahan","age":43,"location":"Powlowskistad"}},{"attributes":{"name":"Alfredo Macejkovic","age":33,"location":"Fort Loristad"}},{"attributes":{"name":"Ginger Conn","age":68,"location":"Serenitytown"}},{"attributes":{"name":"Mr. Bill Rutherford","age":60,"location":"Maynardstead"}},{"attributes":{"name":"Stella Hessel","age":77,"location":"New Carleton"}},{"attributes":{"name":"Ollie Russel","age":65,"location":"Antoniostad"}},{"attributes":{"name":"Garry Christiansen","age":28,"location":"Conway"}},{"attributes":{"name":"Johnnie Rogahn","age":75,"location":"Port Alia"}},{"attributes":{"name":"Jimmie Hintz","age":60,"location":"Dundalk"}},{"attributes":{"name":"Dr. Ramon Bauch","age":38,"location":"Fort Justina"}},{"attributes":{"name":"Jamie Littel","age":45,"location":"Shayleeborough"}},{"attributes":{"name":"Bridget Gibson","age":48,"location":"New Carriefort"}},{"attributes":{"name":"Bridget Gerhold","age":71,"location":"South Cassidy"}},{"attributes":{"name":"Nettie O'Kon DVM","age":33,"location":"Alleneberg"}},{"attributes":{"name":"Myrtle Spencer-Brekke","age":34,"location":"East Violet"}},{"attributes":{"name":"Richard Schaden","age":53,"location":"Chino"}},{"attributes":{"name":"Eleanore Gottlieb PhD","age":41,"location":"Wadefurt"}},{"attributes":{"name":"Ginger Emmerich","age":47,"location":"San Angelo"}},{"attributes":{"name":"Dixie Adams","age":41,"location":"Lake Patrickcester"}},{"attributes":{"name":"Julius Bergstrom","age":74,"location":"Aylabury"}},{"attributes":{"name":"Tyrell Jones PhD","age":24,"location":"East Lexuston"}},{"attributes":{"name":"Ms. Henrietta Cormier","age":79,"location":"North Abelardo"}},{"attributes":{"name":"Maryjane Schoen","age":20,"location":"Fort Reyes"}},{"attributes":{"name":"Megan Swaniawski IV","age":66,"location":"North Bethesda"}},{"attributes":{"name":"Johnny Schmeler DDS","age":18,"location":"Loustead"}},{"attributes":{"name":"Phyllis Boyle","age":28,"location":"Ebertfield"}},{"attributes":{"name":"Joshua Glover","age":77,"location":"North Reeseberg"}},{"attributes":{"name":"Arne Schultz","age":48,"location":"East Marilyneside"}},{"attributes":{"name":"Edmond Quitzon","age":56,"location":"Port Gretchenmouth"}},{"attributes":{"name":"Vernie Wolff","age":67,"location":"North Marshall"}},{"attributes":{"name":"Kariane Volkman","age":59,"location":"Malden"}},{"attributes":{"name":"Garett Kerluke","age":37,"location":"Glenview"}},{"attributes":{"name":"Katie Kihn IV","age":75,"location":"Bechtelarchester"}},{"attributes":{"name":"Rosalinda Rolfson","age":42,"location":"Lake Ally"}},{"attributes":{"name":"Shannon Stehr","age":66,"location":"Bobbyboro"}},{"attributes":{"name":"Miss Magali Hickle","age":58,"location":"Lake Octaviacester"}},{"attributes":{"name":"Mr. Lucinda Schmitt","age":48,"location":"Lennafurt"}},{"attributes":{"name":"Stan Gleason","age":22,"location":"Flint"}},{"attributes":{"name":"Heidi Brakus","age":33,"location":"North Idella"}},{"attributes":{"name":"Lucas Frami","age":80,"location":"East Elianstad"}},{"attributes":{"name":"Minnie Farrell","age":39,"location":"Littleton"}},{"attributes":{"name":"Faye Padberg","age":18,"location":"Modesto"}},{"attributes":{"name":"Assunta Ziemann","age":18,"location":"Kingboro"}},{"attributes":{"name":"Brittany Wiegand","age":26,"location":"Trenton"}},{"attributes":{"name":"Andrea Sporer","age":29,"location":"Port Pattieton"}},{"attributes":{"name":"Wyatt Fritsch","age":35,"location":"New Luluside"}},{"attributes":{"name":"Laura Lemke","age":76,"location":"Marquiseton"}},{"attributes":{"name":"Rebecca Bednar","age":40,"location":"East Anais"}},{"attributes":{"name":"Carlotta Bernier","age":36,"location":"Casa Grande"}},{"attributes":{"name":"Bobbie Quigley","age":48,"location":"Tyriquefort"}},{"attributes":{"name":"Carl Ledner","age":31,"location":"Moenstead"}},{"attributes":{"name":"Moses Satterfield","age":27,"location":"Medhurstshire"}},{"attributes":{"name":"Peggy Wehner","age":59,"location":"Merced"}},{"attributes":{"name":"Sheila Schuppe","age":37,"location":"Kozeyfort"}},{"attributes":{"name":"Hubert Mertz","age":80,"location":"Beaverton"}},{"attributes":{"name":"Claudia Hauck","age":60,"location":"Grantboro"}},{"attributes":{"name":"Lilly Harvey","age":76,"location":"East Celine"}},{"attributes":{"name":"Ms. Jadyn Buckridge","age":59,"location":"Marleechester"}},{"attributes":{"name":"Guadalupe Ziemann MD","age":34,"location":"Arlington"}},{"attributes":{"name":"Johnny Padberg-Crona","age":41,"location":"South Elna"}},{"attributes":{"name":"Tasha Conroy","age":35,"location":"Fort Russelboro"}},{"attributes":{"name":"Hailey Willms MD","age":67,"location":"Hamillland"}},{"attributes":{"name":"Herman Gusikowski","age":44,"location":"Decatur"}},{"attributes":{"name":"Freda Haag","age":52,"location":"Erlingworth"}},{"attributes":{"name":"Nina King","age":35,"location":"Port Ozella"}},{"attributes":{"name":"Doug Blanda","age":60,"location":"Thaliahaven"}},{"attributes":{"name":"Dr. Moses Lockman","age":78,"location":"Fort Colemanview"}},{"attributes":{"name":"Bernice Gulgowski","age":47,"location":"Pittsfield"}},{"attributes":{"name":"Cora Kub","age":49,"location":"Ashleeshire"}},{"attributes":{"name":"Tracey Donnelly PhD","age":78,"location":"Fort Maximo"}},{"attributes":{"name":"Ova Schaden","age":39,"location":"Lake Romachester"}},{"attributes":{"name":"Tracy Miller","age":24,"location":"Mayertton"}},{"attributes":{"name":"Odell Bins","age":65,"location":"Paucekboro"}},{"attributes":{"name":"Marjorie Leuschke","age":59,"location":"Beahanchester"}},{"attributes":{"name":"Ann Roob","age":47,"location":"Amparoside"}},{"attributes":{"name":"Raymundo Corwin-Kunde","age":27,"location":"Gutkowskistad"}},{"attributes":{"name":"Rae Ruecker","age":72,"location":"Lauderhill"}},{"attributes":{"name":"Archie Roob","age":65,"location":"Rudyfort"}},{"attributes":{"name":"Kira West","age":28,"location":"Johnsonfield"}},{"attributes":{"name":"Geoffrey Walsh IV","age":66,"location":"Alishastad"}},{"attributes":{"name":"Francisco Nikolaus","age":52,"location":"East Marcosmouth"}},{"attributes":{"name":"Tyler Hudson","age":54,"location":"Elijahchester"}},{"attributes":{"name":"Wilma Mayert","age":42,"location":"Port Emmett"}},{"attributes":{"name":"Ismael Denesik","age":53,"location":"East Nathen"}},{"attributes":{"name":"Gladyce Boyle","age":39,"location":"Carletonberg"}},{"attributes":{"name":"Brenna Marquardt","age":31,"location":"Maricopa"}},{"attributes":{"name":"Mack Waelchi","age":68,"location":"San Mateo"}},{"attributes":{"name":"Evan Adams","age":39,"location":"Lansing"}},{"attributes":{"name":"Barrett Doyle","age":69,"location":"Adellehaven"}},{"attributes":{"name":"Chester Douglas","age":52,"location":"Schenectady"}},{"attributes":{"name":"Nola Boehm-Rosenbaum II","age":48,"location":"East Woodrow"}},{"attributes":{"name":"Reginald Christiansen","age":45,"location":"New Irmachester"}},{"attributes":{"name":"Holly Tromp-Morissette III","age":25,"location":"Lake Alleneland"}},{"attributes":{"name":"Arlie Jacobson","age":61,"location":"Ankeny"}},{"attributes":{"name":"Martine Mosciski","age":71,"location":"Sandrahaven"}},{"attributes":{"name":"Ross Abernathy","age":66,"location":"Port Maeveland"}},{"attributes":{"name":"Harmony Mante","age":41,"location":"Lake Jovannyland"}},{"attributes":{"name":"Colten Russel","age":63,"location":"Titusville"}},{"attributes":{"name":"Sonia Emard","age":28,"location":"Fort Wayne"}},{"attributes":{"name":"Hugh Olson","age":64,"location":"Lake Marcelinostead"}},{"attributes":{"name":"Claude Moore","age":40,"location":"Isabelleview"}},{"attributes":{"name":"Earnest Kuhlman","age":37,"location":"New Koryport"}},{"attributes":{"name":"Walter Medhurst","age":19,"location":"Libbieside"}},{"attributes":{"name":"Mrs. Dominick Purdy","age":52,"location":"Lake Santosboro"}},{"attributes":{"name":"Philip Purdy DVM","age":36,"location":"Kshlerinfort"}},{"attributes":{"name":"Carson Padberg","age":50,"location":"Elouiseville"}},{"attributes":{"name":"Dr. Edna Terry","age":79,"location":"Yundtview"}},{"attributes":{"name":"Kelly Kuphal","age":46,"location":"Jastshire"}},{"attributes":{"name":"Nolan Barrows","age":72,"location":"Napa"}},{"attributes":{"name":"Casimer VonRueden","age":66,"location":"Hesselhaven"}},{"attributes":{"name":"Vivian Hintz","age":58,"location":"East Gastonfort"}},{"attributes":{"name":"Georgia Stamm","age":79,"location":"Toms River"}},{"attributes":{"name":"Mrs. Alison Deckow","age":60,"location":"Mikelborough"}},{"attributes":{"name":"Keanu Krajcik","age":21,"location":"Wizaton"}},{"attributes":{"name":"Verlie Kub","age":42,"location":"East Dana"}},{"attributes":{"name":"Antwon Murazik","age":37,"location":"Port Goldenchester"}},{"attributes":{"name":"Bryan Skiles","age":29,"location":"North Itzelchester"}},{"attributes":{"name":"Eliza Farrell","age":24,"location":"Beattyville"}},{"attributes":{"name":"Ira DuBuque","age":23,"location":"West Angelineboro"}},{"attributes":{"name":"Jonathon McKenzie","age":54,"location":"West Norma"}},{"attributes":{"name":"Ray Auer","age":73,"location":"Bergnaumhaven"}},{"attributes":{"name":"Bobbie Mueller PhD","age":50,"location":"Jofield"}},{"attributes":{"name":"Dr. Jessyca Brown","age":60,"location":"Rancho Cordova"}},{"attributes":{"name":"Monique Durgan","age":48,"location":"Toledo"}},{"attributes":{"name":"Armando Wiza","age":31,"location":"Margate"}},{"attributes":{"name":"Angelica Hartmann","age":28,"location":"South Tryciafort"}},{"attributes":{"name":"Sarah Paucek","age":64,"location":"Adolphbury"}},{"attributes":{"name":"Linwood Gerhold","age":65,"location":"Lake Karleycester"}},{"attributes":{"name":"Devin Borer","age":57,"location":"Lambertchester"}},{"attributes":{"name":"Hollis Hartmann","age":79,"location":"North Miami Beach"}},{"attributes":{"name":"Santos Stokes II","age":56,"location":"Fort Jodieborough"}},{"attributes":{"name":"Velda Walter","age":23,"location":"Jimmieport"}},{"attributes":{"name":"Jennie Funk","age":53,"location":"Goyettehaven"}},{"attributes":{"name":"Aubrey Berge","age":42,"location":"Port Gavinboro"}},{"attributes":{"name":"Dina Murray","age":59,"location":"Geovanychester"}},{"attributes":{"name":"Zelda Raynor","age":76,"location":"Port Jeremy"}},{"attributes":{"name":"Dr. Lois Stehr","age":48,"location":"Los Angeles"}},{"attributes":{"name":"Colin Watsica","age":79,"location":"South Reed"}},{"attributes":{"name":"Ms. Maudie Botsford","age":21,"location":"Robertsfield"}},{"attributes":{"name":"Emma Rodriguez","age":30,"location":"Clairview"}},{"attributes":{"name":"Wava Tillman","age":41,"location":"South Hilarioshire"}},{"attributes":{"name":"Franklin Labadie","age":35,"location":"Waipahu"}},{"attributes":{"name":"Marielle Schimmel","age":35,"location":"Margate"}},{"attributes":{"name":"Jo Ledner","age":31,"location":"Greenfelderhaven"}},{"attributes":{"name":"Dale Champlin","age":21,"location":"Oak Lawn"}},{"attributes":{"name":"Darrel Robel","age":33,"location":"Carolynville"}},{"attributes":{"name":"Rodolfo Ullrich","age":23,"location":"Brownberg"}},{"attributes":{"name":"Tim MacGyver","age":63,"location":"Fort Jesston"}},{"attributes":{"name":"Dr. Clotilde Dickens","age":27,"location":"Jasthaven"}},{"attributes":{"name":"Andrew Klocko","age":42,"location":"New Noemie"}},{"attributes":{"name":"Misty Bernier V","age":25,"location":"Akeemchester"}},{"attributes":{"name":"Edwin McGlynn","age":61,"location":"South Alvafurt"}},{"attributes":{"name":"Emily Rempel","age":48,"location":"Federal Way"}},{"attributes":{"name":"Margarita Schimmel","age":51,"location":"Lake Marjolaine"}},{"attributes":{"name":"Laverne Jenkins","age":69,"location":"South Fernando"}},{"attributes":{"name":"Dr. Frederique Kassulke V","age":36,"location":"South Dawnside"}},{"attributes":{"name":"Esther Kling","age":34,"location":"Douglasside"}},{"attributes":{"name":"Xavier Zemlak","age":52,"location":"San Marcos"}},{"attributes":{"name":"Pearl Williamson","age":74,"location":"Antoneville"}},{"attributes":{"name":"Orville McCullough","age":27,"location":"East Alex"}},{"attributes":{"name":"Herman Muller","age":22,"location":"Lakewood"}},{"attributes":{"name":"Jedediah Cummerata","age":28,"location":"Reynoldstown"}},{"attributes":{"name":"Felix Rowe","age":67,"location":"Delfinafield"}},{"attributes":{"name":"Sabrina Pagac","age":78,"location":"Marvintown"}},{"attributes":{"name":"Alfonso Champlin PhD","age":57,"location":"West Reymundofort"}},{"attributes":{"name":"Dr. Alexandrea Gusikowski","age":73,"location":"South Lonniestead"}},{"attributes":{"name":"Brendan Collier","age":80,"location":"South Alvahview"}},{"attributes":{"name":"Ashly Hermiston","age":78,"location":"Port St. Lucie"}},{"attributes":{"name":"Rosemarie Kunde","age":21,"location":"Ogden"}},{"attributes":{"name":"Mable Hilpert","age":51,"location":"Dallinland"}},{"attributes":{"name":"Audra Sanford","age":37,"location":"Lake Carlo"}},{"attributes":{"name":"Kelvin Macejkovic","age":42,"location":"North Lysanne"}},{"attributes":{"name":"Blake Jacobi V","age":39,"location":"Fort Alfview"}},{"attributes":{"name":"Efrain Emmerich","age":27,"location":"Jacobscester"}},{"attributes":{"name":"Ida O'Keefe","age":57,"location":"North Domenicworth"}},{"attributes":{"name":"Jesse Jast","age":45,"location":"Port Aurelioworth"}},{"attributes":{"name":"Alvina Luettgen","age":80,"location":"Sharontown"}},{"attributes":{"name":"Jesus Luettgen","age":46,"location":"Davie"}},{"attributes":{"name":"Bridget Anderson","age":30,"location":"New Kiarra"}},{"attributes":{"name":"Susie Hoeger","age":62,"location":"Bartolettifield"}},{"attributes":{"name":"Eugene Bauch","age":27,"location":"Lewisville"}},{"attributes":{"name":"Emerson Jast V","age":33,"location":"Monaport"}},{"attributes":{"name":"Marina Luettgen Sr.","age":59,"location":"Camilafort"}},{"attributes":{"name":"Mr. Therese Kunde","age":24,"location":"Fort Breanna"}},{"attributes":{"name":"Caleb Hodkiewicz","age":21,"location":"Raoulfort"}},{"attributes":{"name":"Ted Bergstrom","age":46,"location":"South Alexandrialand"}},{"attributes":{"name":"Delbert O'Hara","age":28,"location":"Reillyshire"}},{"attributes":{"name":"Tiffany Koelpin","age":21,"location":"West Rettastead"}},{"attributes":{"name":"Miss Pauline Sanford","age":77,"location":"Lake Karelleborough"}},{"attributes":{"name":"Jose Klein","age":20,"location":"Jeanietown"}},{"attributes":{"name":"Sigmund Mayert I","age":52,"location":"Port Quentinborough"}},{"attributes":{"name":"Guido Brakus","age":21,"location":"Nicholasport"}},{"attributes":{"name":"Oral McDermott","age":64,"location":"Sisterworth"}},{"attributes":{"name":"Elna Parker","age":66,"location":"Rosalynstad"}},{"attributes":{"name":"Leann McDermott","age":51,"location":"Hegmannfield"}},{"attributes":{"name":"Casey Lesch","age":59,"location":"Tonymouth"}},{"attributes":{"name":"Yvette Walter-VonRueden","age":36,"location":"East Laurieville"}},{"attributes":{"name":"Patti Turcotte","age":36,"location":"The Villages"}},{"attributes":{"name":"Homer Schmidt III","age":55,"location":"Hillardville"}},{"attributes":{"name":"Nadine Hoeger","age":23,"location":"Kreigerfield"}},{"attributes":{"name":"Forrest Hirthe","age":70,"location":"Kalamazoo"}},{"attributes":{"name":"Mrs. Linda Gibson","age":27,"location":"Rahulstad"}},{"attributes":{"name":"Sylvester Weissnat","age":59,"location":"Lesterstead"}},{"attributes":{"name":"Alison Howe","age":45,"location":"Port Jeannehaven"}},{"attributes":{"name":"Earnest Boehm","age":61,"location":"Lake Pete"}},{"attributes":{"name":"Kyle Gutkowski","age":28,"location":"West Bernadette"}},{"attributes":{"name":"Mr. Cheyenne Littel-Herzog","age":38,"location":"VonRuedenhaven"}},{"attributes":{"name":"Francis Abernathy","age":72,"location":"Wellington"}},{"attributes":{"name":"Darnell Sauer","age":47,"location":"Lake Cathryn"}},{"attributes":{"name":"Pamela Lockman","age":75,"location":"Greenwood"}},{"attributes":{"name":"Winston Rogahn","age":44,"location":"Swaniawskifort"}},{"attributes":{"name":"Leah Towne IV","age":53,"location":"West Berneice"}},{"attributes":{"name":"Darren Gerhold","age":27,"location":"West Roberta"}},{"attributes":{"name":"Mr. Dana Kozey IV","age":67,"location":"North Dominicberg"}},{"attributes":{"name":"Rex Crooks","age":54,"location":"New Garlandfurt"}},{"attributes":{"name":"Jaclyn Blick","age":52,"location":"Mohammadtown"}},{"attributes":{"name":"Rebeka Prohaska","age":68,"location":"Watsonville"}},{"attributes":{"name":"Gwen Bergstrom","age":33,"location":"East Rylee"}},{"attributes":{"name":"Coralie Jast","age":22,"location":"Metairie"}},{"attributes":{"name":"Dr. Wava Nolan","age":72,"location":"Christatown"}},{"attributes":{"name":"Sydney Ruecker PhD","age":36,"location":"Lefflerland"}},{"attributes":{"name":"Rowan Romaguera","age":78,"location":"O'Reillyport"}},{"attributes":{"name":"Jake Parisian DDS","age":66,"location":"Waipahu"}},{"attributes":{"name":"Anna Ondricka","age":73,"location":"Bayonne"}},{"attributes":{"name":"Dustin Mayert","age":34,"location":"Kulasshire"}},{"attributes":{"name":"Ewell Lowe","age":33,"location":"Barrowsside"}},{"attributes":{"name":"Joey Gibson","age":63,"location":"Fort Rheafort"}},{"attributes":{"name":"Dr. Dwayne Keeling","age":30,"location":"Maybellborough"}},{"attributes":{"name":"Kristy Hilpert-Nolan","age":32,"location":"Georgetown"}},{"attributes":{"name":"Garrett Abernathy","age":57,"location":"Jaylenfort"}},{"attributes":{"name":"Leo O'Reilly","age":31,"location":"Pearland"}},{"attributes":{"name":"Kelley Bartoletti","age":64,"location":"North Maurice"}},{"attributes":{"name":"Donald Paucek","age":67,"location":"Miramar"}},{"attributes":{"name":"Hugo O'Conner Sr.","age":34,"location":"South Aileenberg"}},{"attributes":{"name":"Casey Brakus","age":30,"location":"Mansfield"}},{"attributes":{"name":"Mrs. Marquis Lehner","age":70,"location":"New Schuylerchester"}},{"attributes":{"name":"Tyrel Lesch","age":25,"location":"Albinafort"}},{"attributes":{"name":"Annamae Cole","age":72,"location":"Port Evalyn"}},{"attributes":{"name":"Laura Purdy","age":40,"location":"East Jefferey"}},{"attributes":{"name":"Mrs. Marcos Wisoky III","age":43,"location":"Jenkinscester"}},{"attributes":{"name":"Shaun Corwin-Kshlerin","age":32,"location":"Morarstad"}},{"attributes":{"name":"Santiago Haley Jr.","age":36,"location":"Rogahnworth"}},{"attributes":{"name":"Jeannie Baumbach","age":72,"location":"Tryciaside"}},{"attributes":{"name":"Mario Christiansen","age":59,"location":"North Cathy"}},{"attributes":{"name":"Camylle Goyette","age":57,"location":"Venaville"}},{"attributes":{"name":"Dr. Emilia Gottlieb","age":63,"location":"Rosemaryside"}},{"attributes":{"name":"Paula Fadel","age":71,"location":"Joburgh"}},{"attributes":{"name":"Alessandra O'Hara","age":32,"location":"South Archibaldfurt"}},{"attributes":{"name":"Mrs. Judith Stokes","age":67,"location":"West Judeview"}},{"attributes":{"name":"Mr. Bennie Wintheiser","age":26,"location":"Leuschkebury"}},{"attributes":{"name":"Darron Fadel","age":19,"location":"Miami Gardens"}},{"attributes":{"name":"Myrtis Wintheiser","age":26,"location":"New Nolan"}},{"attributes":{"name":"Jill Collins","age":64,"location":"Fort Coty"}},{"attributes":{"name":"Mrs. Gordon Murray","age":55,"location":"West Josiah"}},{"attributes":{"name":"Melanie Langosh-Torp","age":60,"location":"Elizabethbury"}},{"attributes":{"name":"Vella Mayert","age":40,"location":"Schambergermouth"}},{"attributes":{"name":"Claire Stracke","age":79,"location":"Miami"}},{"attributes":{"name":"Jean Hettinger-Gerhold","age":28,"location":"Lake Artchester"}},{"attributes":{"name":"Sheila Kuphal","age":78,"location":"East Bartonworth"}},{"attributes":{"name":"Fannie Rogahn","age":53,"location":"Lake Sophie"}},{"attributes":{"name":"Julian Considine Jr.","age":39,"location":"Gerlachport"}},{"attributes":{"name":"Simone Kunde V","age":78,"location":"Olenside"}},{"attributes":{"name":"Stewart Grant","age":29,"location":"North Karley"}},{"attributes":{"name":"Christa Kirlin","age":41,"location":"Port Jeanieview"}},{"attributes":{"name":"Beth Legros DVM","age":57,"location":"North Dewitt"}},{"attributes":{"name":"Alexander Dickens II","age":68,"location":"Vandervortburgh"}},{"attributes":{"name":"Lisa Beatty","age":18,"location":"Fadelhaven"}},{"attributes":{"name":"Jan Greenfelder","age":24,"location":"Kristinborough"}},{"attributes":{"name":"Margot Conn","age":22,"location":"Lake Raheemfurt"}},{"attributes":{"name":"Terence McClure","age":26,"location":"Marquardtberg"}},{"attributes":{"name":"Cassie Wiza","age":63,"location":"Muellerfield"}},{"attributes":{"name":"Justen Dare","age":51,"location":"Betsyton"}},{"attributes":{"name":"Terence Sporer","age":54,"location":"Colefield"}},{"attributes":{"name":"Natalie Fay","age":66,"location":"Daughertyland"}},{"attributes":{"name":"Shari Daugherty","age":45,"location":"Norwoodtown"}},{"attributes":{"name":"Roberta Ritchie","age":24,"location":"Deioncester"}},{"attributes":{"name":"Maverick Bins","age":64,"location":"Kenosha"}},{"attributes":{"name":"Ms. Estell Schiller-Prohaska","age":43,"location":"Fort Warren"}},{"attributes":{"name":"Ms. Lola Nikolaus-Cartwright DDS","age":37,"location":"Juliusfurt"}},{"attributes":{"name":"Amelia Jacobi","age":30,"location":"Apex"}},{"attributes":{"name":"Ira Rosenbaum","age":45,"location":"South Luella"}},{"attributes":{"name":"Shanny Bode","age":60,"location":"Hageneshaven"}},{"attributes":{"name":"Justin Reichert DVM","age":22,"location":"Pietroville"}},{"attributes":{"name":"Beth Volkman","age":21,"location":"Jacobifurt"}},{"attributes":{"name":"Richmond Kirlin I","age":38,"location":"Saginaw"}},{"attributes":{"name":"Meaghan Bednar","age":46,"location":"New Chyna"}},{"attributes":{"name":"Jessica Skiles","age":28,"location":"North Jordi"}},{"attributes":{"name":"Mrs. Lewis Reinger","age":71,"location":"Beattyboro"}},{"attributes":{"name":"Julie Corkery","age":65,"location":"Rathburgh"}},{"attributes":{"name":"Miss Augusta Jacobi","age":18,"location":"Taylorstad"}},{"attributes":{"name":"Adrienne Grady","age":66,"location":"Larsonburgh"}},{"attributes":{"name":"Amanda Klein-Lind","age":27,"location":"South Vidal"}},{"attributes":{"name":"Simeon Williamson","age":45,"location":"Kennewick"}},{"attributes":{"name":"Jasen Kirlin","age":55,"location":"Rubyeborough"}},{"attributes":{"name":"Robin Muller","age":32,"location":"Johnsonmouth"}},{"attributes":{"name":"Warren West","age":34,"location":"Montebello"}},{"attributes":{"name":"Joanna Gorczany-Heaney","age":51,"location":"Quigleyville"}},{"attributes":{"name":"Donald Lehner","age":22,"location":"East Friedrichburgh"}},{"attributes":{"name":"Dr. Ellen Fahey Jr.","age":44,"location":"New Antonietta"}},{"attributes":{"name":"Kelley Mohr","age":57,"location":"Wisozkstead"}},{"attributes":{"name":"Whitney Welch","age":36,"location":"Clairstead"}},{"attributes":{"name":"Maymie Towne","age":52,"location":"Blickborough"}},{"attributes":{"name":"Ambrose Crooks-Legros","age":71,"location":"Fort Ken"}},{"attributes":{"name":"Erick Leffler","age":42,"location":"West Eva"}},{"attributes":{"name":"Raul Steuber IV","age":43,"location":"Janesville"}},{"attributes":{"name":"Alfred Ritchie","age":21,"location":"Wardboro"}},{"attributes":{"name":"Vera Hermiston","age":66,"location":"East Lavinia"}},{"attributes":{"name":"Antoinette Ziemann","age":18,"location":"Santa Clarita"}},{"attributes":{"name":"Miss Trisha Leffler","age":80,"location":"North Charlottefield"}},{"attributes":{"name":"Dan Ward Jr.","age":63,"location":"Murray"}},{"attributes":{"name":"Evert Hilll","age":36,"location":"Torpchester"}},{"attributes":{"name":"Dr. Heather Olson","age":52,"location":"Allen"}},{"attributes":{"name":"Billy Friesen-Bogan","age":65,"location":"East Allentown"}},{"attributes":{"name":"Julie Bahringer","age":51,"location":"Margieborough"}},{"attributes":{"name":"Holly Schumm-McClure","age":38,"location":"Daytona Beach"}},{"attributes":{"name":"Orville Leannon","age":19,"location":"Orland Park"}},{"attributes":{"name":"Alta Hilpert","age":31,"location":"East Aaliyah"}},{"attributes":{"name":"Nora Predovic","age":77,"location":"East Orange"}},{"attributes":{"name":"Anita Prohaska","age":42,"location":"Akeemcester"}},{"attributes":{"name":"Ivy Gusikowski","age":78,"location":"Gloriahaven"}},{"attributes":{"name":"Shane Armstrong","age":49,"location":"Lake Waylonchester"}},{"attributes":{"name":"Ms. Christy Jast","age":20,"location":"South Bretbury"}},{"attributes":{"name":"Gwen Kozey","age":22,"location":"Lake Alvah"}},{"attributes":{"name":"Miss Amber Ondricka","age":38,"location":"O'Fallon"}},{"attributes":{"name":"Yazmin Quigley","age":56,"location":"Dellafield"}},{"attributes":{"name":"Audra Kassulke","age":48,"location":"Baltimore"}},{"attributes":{"name":"Floyd Abshire","age":66,"location":"Roswell"}},{"attributes":{"name":"Miss Malika Schumm Jr.","age":57,"location":"Pacochacester"}},{"attributes":{"name":"Mrs. Gonzalo Grant","age":40,"location":"Dedrickchester"}},{"attributes":{"name":"Ernest Goodwin","age":53,"location":"Racine"}},{"attributes":{"name":"Neoma Zulauf","age":19,"location":"Murraychester"}},{"attributes":{"name":"Terrance Howe","age":21,"location":"Schroedermouth"}},{"attributes":{"name":"Hannah Hodkiewicz","age":71,"location":"Dedrickmouth"}},{"attributes":{"name":"Ona Hackett PhD","age":20,"location":"North Aishacester"}},{"attributes":{"name":"Dennis Reinger","age":23,"location":"Merced"}},{"attributes":{"name":"Alexander Shanahan","age":71,"location":"Crystaltown"}},{"attributes":{"name":"Ms. Napoleon Ziemann","age":36,"location":"New Delpha"}},{"attributes":{"name":"Deangelo Vandervort","age":49,"location":"Carterville"}},{"attributes":{"name":"Clark Mueller","age":60,"location":"West Creola"}},{"attributes":{"name":"Michele Lind","age":32,"location":"Maribelshire"}},{"attributes":{"name":"Kathy Bosco","age":57,"location":"West Zachariah"}},{"attributes":{"name":"Faustino White","age":30,"location":"Haleytown"}},{"attributes":{"name":"Miss Blaze Olson","age":70,"location":"Elliottton"}},{"attributes":{"name":"Mrs. Constance Ratke","age":20,"location":"Balistreriberg"}},{"attributes":{"name":"Vernon Runte","age":40,"location":"Tiaboro"}},{"attributes":{"name":"Aliyah Herman","age":55,"location":"Lynnfield"}},{"attributes":{"name":"Ted Douglas","age":53,"location":"Mansfield"}},{"attributes":{"name":"Colleen Mante","age":57,"location":"Wymanchester"}},{"attributes":{"name":"Joy Heaney Sr.","age":52,"location":"Maggiofurt"}},{"attributes":{"name":"Opal Klocko PhD","age":59,"location":"West Jeff"}},{"attributes":{"name":"Rosemarie Leffler","age":36,"location":"Costa Mesa"}},{"attributes":{"name":"John Schaefer","age":74,"location":"Royceville"}},{"attributes":{"name":"Maria Jaskolski","age":42,"location":"East Lexie"}},{"attributes":{"name":"Sally Kris","age":49,"location":"Orieville"}},{"attributes":{"name":"Christie Graham","age":25,"location":"Kirkland"}},{"attributes":{"name":"Julian Kunde","age":67,"location":"East Arlieboro"}},{"attributes":{"name":"Willard Swift","age":48,"location":"Federal Way"}},{"attributes":{"name":"Wilma Sawayn","age":21,"location":"Hacienda Heights"}},{"attributes":{"name":"Eddie Streich PhD","age":50,"location":"Connellybury"}},{"attributes":{"name":"Jennie Greenfelder","age":60,"location":"New Suzannestead"}},{"attributes":{"name":"Marie Kunze","age":78,"location":"Reinaburgh"}},{"attributes":{"name":"Fredrick Murazik MD","age":47,"location":"East Reid"}},{"attributes":{"name":"Candido Ratke","age":34,"location":"Bel Air South"}},{"attributes":{"name":"Juan Wolf","age":72,"location":"North Bethel"}},{"attributes":{"name":"Mr. Darrell Ritchie","age":58,"location":"Manteshire"}},{"attributes":{"name":"Samuel Stoltenberg","age":38,"location":"Port Camren"}},{"attributes":{"name":"Shayne Torp","age":57,"location":"Greenfelderborough"}},{"attributes":{"name":"Elisha Walsh","age":66,"location":"East Avachester"}},{"attributes":{"name":"Cornelius Marks","age":34,"location":"Port Cody"}},{"attributes":{"name":"Hellen Herzog","age":56,"location":"Lake Alysonberg"}},{"attributes":{"name":"Ms. Jean Heller","age":80,"location":"Romaguerafurt"}},{"attributes":{"name":"Latoya Klein","age":19,"location":"Terrychester"}},{"attributes":{"name":"Camilla Strosin","age":40,"location":"Hodkiewiczberg"}},{"attributes":{"name":"Sheldon Walker","age":32,"location":"Schuppeworth"}},{"attributes":{"name":"Rachel Kshlerin Jr.","age":67,"location":"Howellbury"}},{"attributes":{"name":"Electa Borer","age":75,"location":"Langoshfort"}},{"attributes":{"name":"Rashawn Herzog","age":77,"location":"Davenport"}},{"attributes":{"name":"Woodrow Jones","age":28,"location":"Tiaraview"}},{"attributes":{"name":"Ryan Greenholt","age":33,"location":"Monterey Park"}},{"attributes":{"name":"Emmy Mitchell","age":79,"location":"Turnertown"}},{"attributes":{"name":"Winnifred Langworth","age":58,"location":"East Juvenalstad"}},{"attributes":{"name":"Brigitte Herman","age":22,"location":"West Bettetown"}},{"attributes":{"name":"Mrs. Elbert Balistreri","age":80,"location":"New Kyle"}},{"attributes":{"name":"Barbara Robel","age":24,"location":"Ornborough"}},{"attributes":{"name":"Merle Douglas","age":34,"location":"Brakusland"}},{"attributes":{"name":"Courtney Jacobson","age":79,"location":"Castro Valley"}},{"attributes":{"name":"Bridgette Ullrich","age":66,"location":"South Victor"}},{"attributes":{"name":"Vivian Roberts PhD","age":32,"location":"Blue Springs"}},{"attributes":{"name":"Lucas Fisher","age":79,"location":"West Earnestineborough"}},{"attributes":{"name":"Anderson Thiel","age":67,"location":"North Lura"}},{"attributes":{"name":"Yadira Wintheiser PhD","age":25,"location":"Blue Springs"}},{"attributes":{"name":"Elody Crist DDS","age":50,"location":"North Emmy"}},{"attributes":{"name":"Brendan Kessler","age":44,"location":"Boydberg"}},{"attributes":{"name":"Ms. Sophia Mante","age":21,"location":"Fort Shawnfort"}},{"attributes":{"name":"Everett Kris II","age":79,"location":"Coraliefield"}},{"attributes":{"name":"Jamaal McCullough","age":37,"location":"West Bransontown"}},{"attributes":{"name":"Corey Reinger","age":43,"location":"Alejandrinton"}},{"attributes":{"name":"Jena Gorczany","age":71,"location":"Andersonside"}},{"attributes":{"name":"Alexanne Jaskolski","age":71,"location":"Columbia"}},{"attributes":{"name":"Kody O'Reilly","age":61,"location":"Nyahtown"}},{"attributes":{"name":"Christine Dickens MD","age":55,"location":"Linden"}},{"attributes":{"name":"Manuel Reichel","age":30,"location":"Koepptown"}},{"attributes":{"name":"Corey Franecki","age":55,"location":"Schmidtbury"}},{"attributes":{"name":"Tyra Corwin","age":79,"location":"West Letitiaboro"}},{"attributes":{"name":"Velma Harvey Jr.","age":42,"location":"North Maryjane"}},{"attributes":{"name":"Evelyn Klocko","age":40,"location":"North Roselynburgh"}},{"attributes":{"name":"Joan Mante","age":55,"location":"New Dominicton"}},{"attributes":{"name":"Patricia Franey","age":65,"location":"Ileneshire"}},{"attributes":{"name":"Murl Kovacek","age":25,"location":"Des Plaines"}},{"attributes":{"name":"Kitty Pacocha","age":59,"location":"Christinaport"}},{"attributes":{"name":"Marion Wunsch","age":24,"location":"Loyberg"}},{"attributes":{"name":"Clifford Abbott","age":60,"location":"Johnstonport"}},{"attributes":{"name":"Angie Rohan","age":60,"location":"Stephaniefield"}},{"attributes":{"name":"Alisha Mitchell DDS","age":53,"location":"Port Garnethaven"}},{"attributes":{"name":"Myrna Sauer","age":41,"location":"New Guyboro"}},{"attributes":{"name":"Theo Hammes Sr.","age":80,"location":"West Alicialand"}},{"attributes":{"name":"Delaney Ferry","age":63,"location":"East Brandymouth"}},{"attributes":{"name":"Tina McClure","age":58,"location":"Fort Teaganworth"}},{"attributes":{"name":"Rodney Hauck","age":47,"location":"West Reyesville"}},{"attributes":{"name":"Imelda Schuppe","age":22,"location":"Macejkovicmouth"}},{"attributes":{"name":"Krystel Brakus","age":68,"location":"South Mohammad"}},{"attributes":{"name":"Nicholaus Quitzon","age":20,"location":"Starkfort"}},{"attributes":{"name":"Don Dach","age":65,"location":"Port Ronaldo"}},{"attributes":{"name":"Natalie Lesch","age":47,"location":"Casperberg"}},{"attributes":{"name":"Camila Donnelly","age":59,"location":"Runolfsdottirside"}},{"attributes":{"name":"Edmund Gibson","age":59,"location":"Port Leannafurt"}},{"attributes":{"name":"Aimee Romaguera-Rohan","age":67,"location":"East Duaneberg"}},{"attributes":{"name":"Nathan Mante-Ernser","age":46,"location":"Lake Lydia"}},{"attributes":{"name":"Howard Collins","age":28,"location":"Fort Domingotown"}},{"attributes":{"name":"Janis Boyer","age":49,"location":"Wisozkborough"}},{"attributes":{"name":"Sonia Cummings","age":48,"location":"Port Naomieberg"}},{"attributes":{"name":"Malika Cronin PhD","age":43,"location":"Erikberg"}},{"attributes":{"name":"Marley Bashirian-Buckridge","age":68,"location":"Jamesonborough"}},{"attributes":{"name":"Erwin Schamberger-Jerde","age":27,"location":"East Los Angeles"}},{"attributes":{"name":"Trevor Bins","age":29,"location":"Haagfort"}},{"attributes":{"name":"Dale Kuhn","age":75,"location":"Beahanhaven"}},{"attributes":{"name":"Shelly Bailey Sr.","age":45,"location":"New Monte"}},{"attributes":{"name":"Lizzie Hauck","age":70,"location":"South Octavia"}},{"attributes":{"name":"Beatrice Dooley","age":48,"location":"Warren"}},{"attributes":{"name":"Anne Ernser-Yost","age":58,"location":"Lanceburgh"}},{"attributes":{"name":"Mariah Kunze","age":54,"location":"Elbertview"}},{"attributes":{"name":"Jackie Goyette","age":18,"location":"West Quintonland"}},{"attributes":{"name":"Earnest Sanford","age":57,"location":"Salinas"}},{"attributes":{"name":"Becky Emard","age":57,"location":"Leuschketown"}},{"attributes":{"name":"Melvin Kertzmann","age":79,"location":"Yorba Linda"}},{"attributes":{"name":"Edgar Feeney","age":48,"location":"National City"}},{"attributes":{"name":"Frank Schowalter","age":69,"location":"Hammond"}},{"attributes":{"name":"Mr. Bennie Sawayn","age":27,"location":"Pomona"}},{"attributes":{"name":"Virginia Crooks-Volkman","age":57,"location":"Fort Krista"}},{"attributes":{"name":"Ewald Turner V","age":56,"location":"East Madisen"}},{"attributes":{"name":"Arvel Tillman","age":33,"location":"Fort Crawford"}},{"attributes":{"name":"Bradford Welch","age":31,"location":"East Quinton"}},{"attributes":{"name":"Ms. Randal Kulas","age":25,"location":"Corwinside"}},{"attributes":{"name":"Giovanni Kris","age":22,"location":"Gloriastad"}},{"attributes":{"name":"Lonnie Anderson","age":24,"location":"Verlaside"}},{"attributes":{"name":"Grace Nitzsche","age":61,"location":"Oswaldstad"}},{"attributes":{"name":"Marsha Kilback-Greenfelder","age":24,"location":"West Kareem"}},{"attributes":{"name":"Devyn Kautzer","age":62,"location":"Fort Abagailside"}},{"attributes":{"name":"Krista Bosco","age":59,"location":"Baumbachcester"}},{"attributes":{"name":"Bert O'Keefe","age":23,"location":"South Doug"}},{"attributes":{"name":"Mr. Lynn Jerde","age":25,"location":"Brianafort"}},{"attributes":{"name":"Frances Crist","age":75,"location":"Port Lavonnestad"}},{"attributes":{"name":"Emma Morissette","age":40,"location":"Broomfield"}},{"attributes":{"name":"Brandon Spinka","age":80,"location":"South Wavastad"}},{"attributes":{"name":"Ms. Oliver Ward","age":71,"location":"Zboncakside"}},{"attributes":{"name":"Rasheed Legros","age":37,"location":"Evancester"}},{"attributes":{"name":"Jimmie Nikolaus","age":60,"location":"Port Timmothyburgh"}},{"attributes":{"name":"Dr. Bert Koch","age":40,"location":"Bartfield"}},{"attributes":{"name":"Dalton Sipes","age":58,"location":"Petecester"}},{"attributes":{"name":"Dominique Nicolas","age":41,"location":"Carolina"}},{"attributes":{"name":"Charlie Wunsch","age":39,"location":"Ann Arbor"}},{"attributes":{"name":"Eddie Brakus","age":53,"location":"Clarksville"}},{"attributes":{"name":"London Volkman I","age":20,"location":"Ernsertown"}},{"attributes":{"name":"Maria Hessel","age":42,"location":"North Alanis"}},{"attributes":{"name":"Saul Strosin","age":22,"location":"Rosalynton"}},{"attributes":{"name":"Roosevelt Cremin","age":47,"location":"South Beulahberg"}},{"attributes":{"name":"Loretta Wisoky","age":24,"location":"Fort Faustocester"}},{"attributes":{"name":"Myrtle Farrell","age":58,"location":"North Liliana"}},{"attributes":{"name":"Camille Konopelski","age":76,"location":"Casandraside"}},{"attributes":{"name":"Michelle O'Conner","age":54,"location":"New Cassie"}},{"attributes":{"name":"Verla Baumbach","age":67,"location":"Fort Patrick"}},{"attributes":{"name":"Saige Collier","age":65,"location":"South Angelo"}},{"attributes":{"name":"Cole Mraz","age":52,"location":"New Tryciaville"}},{"attributes":{"name":"Ms. Marcus Ward","age":32,"location":"West New York"}},{"attributes":{"name":"Martha King","age":76,"location":"Lake Mikelworth"}},{"attributes":{"name":"Joe Bins","age":32,"location":"New Luigi"}},{"attributes":{"name":"Gordon Smith","age":22,"location":"Fort Tiana"}},{"attributes":{"name":"Tommie Casper","age":76,"location":"Fort Krishaven"}},{"attributes":{"name":"Marion Pouros","age":51,"location":"Macon-Bibb County"}},{"attributes":{"name":"Norberto Sawayn","age":33,"location":"Kalebstad"}},{"attributes":{"name":"Wilfred Ledner","age":38,"location":"Joshside"}},{"attributes":{"name":"Brennan Stracke","age":67,"location":"North Syblestead"}},{"attributes":{"name":"Lindsey Barrows","age":62,"location":"Ziemannton"}},{"attributes":{"name":"Stevie Osinski","age":65,"location":"Waterston"}},{"attributes":{"name":"Bridgette Hessel","age":51,"location":"Twin Falls"}},{"attributes":{"name":"Terrance Kris-Hayes","age":52,"location":"Batzton"}},{"attributes":{"name":"Griffin Mayert","age":43,"location":"North Mitchel"}},{"attributes":{"name":"Jackie Parker","age":23,"location":"Port Ceciliafurt"}},{"attributes":{"name":"Tiffany Rodriguez-Carter","age":77,"location":"Antelope"}},{"attributes":{"name":"Lina Mitchell","age":18,"location":"Wilkinsonfort"}},{"attributes":{"name":"Clifford Jerde","age":38,"location":"Imeldaborough"}},{"attributes":{"name":"Marion Upton","age":78,"location":"East Linwoodborough"}},{"attributes":{"name":"Erma Hettinger","age":64,"location":"North Meggie"}},{"attributes":{"name":"Wendy Rath","age":80,"location":"Lake Katelyn"}},{"attributes":{"name":"June Walker Jr.","age":32,"location":"Lilianfield"}},{"attributes":{"name":"Matthew Hermiston","age":77,"location":"Erlington"}},{"attributes":{"name":"Ernesto Anderson","age":55,"location":"Thompsonfurt"}},{"attributes":{"name":"Santiago Shields","age":36,"location":"Jaylenstead"}},{"attributes":{"name":"Jean Berge","age":24,"location":"McClurestead"}},{"attributes":{"name":"Constance Brakus","age":33,"location":"Pacochaport"}},{"attributes":{"name":"Miranda Schamberger","age":27,"location":"Williamsonstad"}},{"attributes":{"name":"Beatrice Howell DDS","age":72,"location":"Howellside"}},{"attributes":{"name":"Hunter Hilpert","age":33,"location":"Mathiasberg"}},{"attributes":{"name":"Carolina Wehner","age":32,"location":"Sagemouth"}},{"attributes":{"name":"Essie Kuphal","age":29,"location":"Port Rafaela"}},{"attributes":{"name":"Vicki Huel","age":27,"location":"Port Giovannafurt"}},{"attributes":{"name":"Mrs. Pearl Strosin","age":55,"location":"Fort Leon"}},{"attributes":{"name":"Tricia Kris","age":39,"location":"South Candacestead"}},{"attributes":{"name":"Selmer Mueller","age":24,"location":"Bismarck"}},{"attributes":{"name":"Miss Laura Goldner","age":46,"location":"North Priscilla"}},{"attributes":{"name":"Shemar Tillman","age":60,"location":"Fort Edyth"}},{"attributes":{"name":"Ralph Lebsack","age":71,"location":"Kiehncester"}},{"attributes":{"name":"Carrie Altenwerth","age":22,"location":"Lake Florencio"}},{"attributes":{"name":"Blanche Leannon I","age":26,"location":"Nolanstad"}},{"attributes":{"name":"Sharon Bosco V","age":50,"location":"Corwinville"}},{"attributes":{"name":"Hershel Rippin","age":27,"location":"Fort Treyboro"}},{"attributes":{"name":"Tamia Streich","age":25,"location":"New Yessenia"}},{"attributes":{"name":"Julian Ryan","age":37,"location":"Schambergerside"}},{"attributes":{"name":"Hanna Lang","age":58,"location":"East Alvis"}},{"attributes":{"name":"Harold Ziemann","age":55,"location":"Goldnerbury"}},{"attributes":{"name":"Beth Pacocha","age":23,"location":"Port Camillemouth"}},{"attributes":{"name":"Randolph Jacobson","age":54,"location":"East Providenci"}},{"attributes":{"name":"Mary Mueller","age":52,"location":"Grimesboro"}},{"attributes":{"name":"Clinton Yost","age":74,"location":"Cortezboro"}},{"attributes":{"name":"Denise Frami","age":69,"location":"Fort Brendonview"}},{"attributes":{"name":"Tim Hilpert-Lebsack Sr.","age":62,"location":"Sparks"}},{"attributes":{"name":"Molly D'Amore","age":43,"location":"Poinciana"}},{"attributes":{"name":"Rochelle Schumm","age":51,"location":"Kunzebury"}},{"attributes":{"name":"Ben Rippin","age":68,"location":"Leilaniboro"}},{"attributes":{"name":"Marquis Kulas","age":70,"location":"Port Rethafort"}},{"attributes":{"name":"Candace Lindgren","age":55,"location":"Cleveland Heights"}},{"attributes":{"name":"Delbert Swaniawski DDS","age":75,"location":"Norvalside"}},{"attributes":{"name":"Rosalind Wilderman","age":21,"location":"Lake Liamstad"}},{"attributes":{"name":"Samantha Weissnat","age":78,"location":"North Little Rock"}},{"attributes":{"name":"Dorothy Hammes","age":31,"location":"Kenosha"}},{"attributes":{"name":"Arlene Koelpin","age":23,"location":"Mentor"}},{"attributes":{"name":"Mr. Freda Frami","age":26,"location":"East Garth"}},{"attributes":{"name":"Ginger Klocko","age":32,"location":"North Litzy"}},{"attributes":{"name":"Evan Hudson","age":80,"location":"South Bill"}},{"attributes":{"name":"Tyrel Klocko","age":20,"location":"West Francescostad"}},{"attributes":{"name":"Dana Bashirian","age":50,"location":"Fort Althea"}},{"attributes":{"name":"Marisol Krajcik","age":30,"location":"North Treyborough"}},{"attributes":{"name":"Norbert Krajcik","age":23,"location":"Glendora"}},{"attributes":{"name":"Mrs. Daron Bayer","age":25,"location":"West Stuartmouth"}},{"attributes":{"name":"Neil Kuhn","age":74,"location":"Fort Danteshire"}},{"attributes":{"name":"Nicolas Thompson","age":35,"location":"Nedrashire"}},{"attributes":{"name":"Belinda Harber","age":64,"location":"Chicago"}},{"attributes":{"name":"Gayle Gusikowski","age":21,"location":"North Dannyland"}},{"attributes":{"name":"Leah Kuhic PhD","age":76,"location":"Robbchester"}},{"attributes":{"name":"Keeley Little","age":35,"location":"Parker"}},{"attributes":{"name":"Jed Waelchi","age":58,"location":"Fort Modestofurt"}},{"attributes":{"name":"Candace Goodwin","age":30,"location":"Lake Bradyfurt"}},{"attributes":{"name":"Dr. Brent Runolfsdottir","age":20,"location":"Creminburgh"}},{"attributes":{"name":"Mr. Jan Boyer","age":78,"location":"West Jakobstead"}},{"attributes":{"name":"Andrew Murray","age":28,"location":"O'Keefefort"}},{"attributes":{"name":"Jodi Hirthe","age":56,"location":"Kerlukeville"}},{"attributes":{"name":"Harvey Denesik","age":34,"location":"North Ola"}},{"attributes":{"name":"Josh Prohaska","age":65,"location":"New Clarestead"}},{"attributes":{"name":"Dan Daugherty","age":55,"location":"Parkerborough"}},{"attributes":{"name":"Glen Hilpert IV","age":55,"location":"Rosalynland"}},{"attributes":{"name":"Eduardo Carter","age":56,"location":"Lexiton"}},{"attributes":{"name":"Modesto Heller","age":57,"location":"Lake Gradyberg"}},{"attributes":{"name":"Barbara Daniel","age":41,"location":"Wilkinsonchester"}},{"attributes":{"name":"Cruz Mosciski","age":32,"location":"Jonside"}},{"attributes":{"name":"Johnnie Jacobson","age":70,"location":"Russelstead"}},{"attributes":{"name":"Douglas Schamberger","age":73,"location":"Gusikowskiburgh"}},{"attributes":{"name":"Loretta Shanahan","age":46,"location":"Gastonia"}},{"attributes":{"name":"Dana Waters","age":20,"location":"East Kory"}},{"attributes":{"name":"Glenda McCullough","age":69,"location":"Jamelfield"}},{"attributes":{"name":"Miss Pauline Jacobs","age":78,"location":"Savannahworth"}},{"attributes":{"name":"Gregorio Rempel","age":26,"location":"Willyberg"}},{"attributes":{"name":"Jo Little","age":30,"location":"East Kimberly"}},{"attributes":{"name":"Nestor Abbott","age":52,"location":"Lake Garfieldland"}},{"attributes":{"name":"Jill Hettinger","age":76,"location":"South Deondre"}},{"attributes":{"name":"Rogelio Johnson","age":33,"location":"Trantowville"}},{"attributes":{"name":"Kennedy Brekke","age":75,"location":"Vincenzaton"}},{"attributes":{"name":"Miss Einar Miller","age":52,"location":"Leecester"}},{"attributes":{"name":"Harley Mosciski","age":58,"location":"Grapevine"}},{"attributes":{"name":"Blaze Leffler","age":40,"location":"Monahanfort"}},{"attributes":{"name":"Kim McDermott V","age":29,"location":"Riceside"}},{"attributes":{"name":"Andre Steuber","age":22,"location":"New Matilda"}},{"attributes":{"name":"Carla Murphy","age":73,"location":"Timmothyfield"}},{"attributes":{"name":"Selmer Cole","age":25,"location":"Parisianshire"}},{"attributes":{"name":"Scottie Monahan","age":59,"location":"Sporerborough"}},{"attributes":{"name":"Beau Donnelly MD","age":59,"location":"Halvorsonstead"}},{"attributes":{"name":"Sylvia Paucek","age":69,"location":"Ayanaside"}},{"attributes":{"name":"Justin Jerde","age":47,"location":"Hermistonborough"}},{"attributes":{"name":"Mr. Alejandro Schultz DDS","age":48,"location":"Fisherburgh"}},{"attributes":{"name":"Ruby Nienow","age":65,"location":"Lake Rahsaan"}},{"attributes":{"name":"David Robel","age":50,"location":"Victorville"}},{"attributes":{"name":"Cristian MacGyver","age":41,"location":"Lexington-Fayette"}},{"attributes":{"name":"Mr. Alberto Howe","age":62,"location":"Bogisichfort"}},{"attributes":{"name":"Edward Cummerata V","age":59,"location":"Lake Candido"}},{"attributes":{"name":"William Price","age":55,"location":"Fort Kielburgh"}},{"attributes":{"name":"Ruby Beer","age":35,"location":"Lake Aaronchester"}},{"attributes":{"name":"Estelle Schaefer","age":77,"location":"East Karelle"}},{"attributes":{"name":"Issac Hudson","age":40,"location":"Konopelskifort"}},{"attributes":{"name":"Eloy Bernier","age":18,"location":"Lake Wendell"}},{"attributes":{"name":"Nicholas Kassulke","age":39,"location":"Fort Carter"}},{"attributes":{"name":"Gayle Hegmann","age":57,"location":"Larissahaven"}},{"attributes":{"name":"Levi Grady","age":74,"location":"New Shanahaven"}},{"attributes":{"name":"Richard Hilpert","age":43,"location":"East Elza"}},{"attributes":{"name":"Mireya Carter","age":49,"location":"Wichita Falls"}},{"attributes":{"name":"Allan Labadie-Balistreri","age":62,"location":"Huelstad"}},{"attributes":{"name":"Merritt Hamill","age":61,"location":"Layton"}},{"attributes":{"name":"Mellie Stroman","age":31,"location":"Gusikowskifort"}},{"attributes":{"name":"Ms. Jenna Little","age":33,"location":"Dominicfurt"}},{"attributes":{"name":"Bailee MacGyver DVM","age":53,"location":"Johnnieport"}},{"attributes":{"name":"Lionel Kutch PhD","age":36,"location":"Wardmouth"}},{"attributes":{"name":"Daphney Mills IV","age":76,"location":"North Camron"}},{"attributes":{"name":"Javier Larson DDS","age":24,"location":"Breitenbergstad"}},{"attributes":{"name":"Cruz Sanford-Hackett","age":33,"location":"Pollichland"}},{"attributes":{"name":"Blake Schamberger","age":24,"location":"Fort Sylviaport"}},{"attributes":{"name":"Kelley Purdy","age":39,"location":"Lake Aureliobury"}},{"attributes":{"name":"Dr. Yvonne Swift","age":80,"location":"Dundalk"}},{"attributes":{"name":"Furman Witting","age":73,"location":"Lebsackborough"}},{"attributes":{"name":"Francis Volkman","age":77,"location":"South Prudence"}},{"attributes":{"name":"Elody Bashirian","age":48,"location":"Akron"}},{"attributes":{"name":"Mandy Denesik","age":46,"location":"Schenectady"}},{"attributes":{"name":"Frederick Parker","age":49,"location":"Fort Dollyberg"}},{"attributes":{"name":"Salvador Dach","age":37,"location":"Port Mathias"}},{"attributes":{"name":"Payton Collins","age":55,"location":"Stammview"}},{"attributes":{"name":"Harold Swaniawski","age":29,"location":"Mitchellhaven"}},{"attributes":{"name":"Billy Schimmel IV","age":26,"location":"Keyonfurt"}},{"attributes":{"name":"Sally Hermann","age":64,"location":"South Addisonburgh"}},{"attributes":{"name":"Deborah Towne","age":57,"location":"Levifort"}},{"attributes":{"name":"Cody Mohr","age":18,"location":"Muncie"}},{"attributes":{"name":"Mrs. Esmeralda Glover","age":54,"location":"Elizabeth"}},{"attributes":{"name":"Matt Douglas","age":20,"location":"Lizzieburgh"}},{"attributes":{"name":"Kariane Baumbach","age":66,"location":"East Roscoeville"}},{"attributes":{"name":"Mr. Steven Parisian-Jenkins","age":68,"location":"Fort Angelaborough"}},{"attributes":{"name":"Alvah Reinger","age":56,"location":"Dayton"}},{"attributes":{"name":"Vesta D'Amore-Kuvalis","age":52,"location":"Okunevamouth"}},{"attributes":{"name":"Ciara Koepp","age":56,"location":"Fort Isobel"}},{"attributes":{"name":"Dr. Robert Glover","age":70,"location":"Marietta"}},{"attributes":{"name":"Daryl Balistreri","age":32,"location":"Charlesfort"}},{"attributes":{"name":"Jedidiah Reinger","age":64,"location":"South Lexus"}},{"attributes":{"name":"Martin Lubowitz","age":56,"location":"West Rosanna"}},{"attributes":{"name":"Ryan Pagac","age":57,"location":"Port Kirk"}},{"attributes":{"name":"Tomas Wisozk","age":24,"location":"Connellyfield"}},{"attributes":{"name":"Dave Flatley","age":70,"location":"Alyceland"}},{"attributes":{"name":"Alden Powlowski","age":23,"location":"Garland"}},{"attributes":{"name":"Hugo Dickens","age":80,"location":"Port Antonetteborough"}},{"attributes":{"name":"Vicky Swaniawski","age":80,"location":"Utica"}},{"attributes":{"name":"Olivia Paucek","age":57,"location":"Fort Kaylah"}},{"attributes":{"name":"Kailee Dooley","age":43,"location":"North Troy"}},{"attributes":{"name":"Gustavo Gerlach-Johns","age":64,"location":"Tamiaside"}},{"attributes":{"name":"Murl Watsica","age":45,"location":"Reinholdborough"}},{"attributes":{"name":"Joannie Pouros","age":66,"location":"West Destany"}},{"attributes":{"name":"Edgar Swaniawski","age":26,"location":"North Skyeville"}},{"attributes":{"name":"Kellen Thompson","age":78,"location":"Dewaynefield"}},{"attributes":{"name":"Opal Herzog-Turcotte","age":49,"location":"Pearland"}},{"attributes":{"name":"Arlie Dooley","age":79,"location":"Devantetown"}},{"attributes":{"name":"Evan Jakubowski","age":41,"location":"Burien"}},{"attributes":{"name":"Chet Friesen","age":39,"location":"Fort Barrett"}},{"attributes":{"name":"Ines Schamberger","age":75,"location":"Lake Emmanuelle"}},{"attributes":{"name":"Christian Mohr","age":23,"location":"Plymouth"}},{"attributes":{"name":"Camila Koss","age":63,"location":"Adolfview"}},{"attributes":{"name":"Guadalupe Kshlerin","age":65,"location":"Elveraworth"}},{"attributes":{"name":"Ms. Paris Padberg","age":24,"location":"Joliet"}},{"attributes":{"name":"Sonia Stoltenberg","age":31,"location":"Port Jettie"}},{"attributes":{"name":"Georgia Kutch","age":50,"location":"New Jackelineborough"}},{"attributes":{"name":"Dawson Keeling","age":55,"location":"Schmelerville"}},{"attributes":{"name":"Emilio Wisoky","age":73,"location":"Stammton"}},{"attributes":{"name":"Celia Batz","age":70,"location":"Kristaburgh"}},{"attributes":{"name":"Fausto Skiles","age":27,"location":"Gutkowskiport"}},{"attributes":{"name":"Jamaal Gottlieb","age":61,"location":"East Hartford"}},{"attributes":{"name":"Henry Rau-Schuster","age":58,"location":"Sashafield"}},{"attributes":{"name":"Angel Shields","age":27,"location":"East Mitchel"}},{"attributes":{"name":"Myron Dickinson","age":60,"location":"Cedar Rapids"}},{"attributes":{"name":"Jerry Gusikowski","age":76,"location":"Tracy"}},{"attributes":{"name":"Santiago Homenick","age":44,"location":"South Mckaylastad"}},{"attributes":{"name":"Jessica Macejkovic","age":66,"location":"Lake Willyton"}},{"attributes":{"name":"Clinton Waelchi","age":46,"location":"South Anne"}},{"attributes":{"name":"Laverne Robel","age":46,"location":"Yuma"}},{"attributes":{"name":"Judy Rowe II","age":18,"location":"Kozeyland"}},{"attributes":{"name":"Caroline Mraz","age":24,"location":"South Edythe"}},{"attributes":{"name":"Ms. Lindsey Feeney","age":48,"location":"Auburn"}},{"attributes":{"name":"Dr. Misty Robel","age":47,"location":"East Ava"}},{"attributes":{"name":"Desiree Weissnat-Harber","age":24,"location":"South Solonbury"}},{"attributes":{"name":"Mr. Wilbur Bergnaum","age":73,"location":"Laurelview"}},{"attributes":{"name":"Timmy McKenzie","age":65,"location":"East Tesshaven"}},{"attributes":{"name":"Juwan Schaefer","age":75,"location":"Wichita Falls"}},{"attributes":{"name":"Naomi Labadie-Jast IV","age":25,"location":"Fort Davinstead"}},{"attributes":{"name":"Marcia Baumbach","age":56,"location":"South Lewis"}},{"attributes":{"name":"Silvia Conn","age":80,"location":"Jaydeworth"}},{"attributes":{"name":"Cullen Berge","age":67,"location":"Gibsonmouth"}},{"attributes":{"name":"Dr. Warren Denesik","age":64,"location":"East Sedrickview"}},{"attributes":{"name":"Hugh Fadel DDS","age":36,"location":"New Maribelstad"}},{"attributes":{"name":"Dusty Pfeffer","age":55,"location":"Port Kirstin"}},{"attributes":{"name":"Wade Klein","age":34,"location":"Cedar Park"}},{"attributes":{"name":"Toni Aufderhar-Gleichner","age":41,"location":"East Leopold"}},{"attributes":{"name":"Dianna Bartell","age":21,"location":"East Saulfurt"}},{"attributes":{"name":"Merle Lubowitz","age":32,"location":"Greenholtfurt"}},{"attributes":{"name":"Adrian Torphy IV","age":37,"location":"West Verniceworth"}},{"attributes":{"name":"Lindsay Willms","age":18,"location":"Luellaton"}},{"attributes":{"name":"Gustave Wilkinson IV","age":30,"location":"South Gate"}},{"attributes":{"name":"Leila Krajcik","age":72,"location":"North Wilford"}},{"attributes":{"name":"Lydia Corkery","age":78,"location":"Satterfieldstad"}},{"attributes":{"name":"Rogelio Maggio","age":26,"location":"Port Jettland"}},{"attributes":{"name":"Clayton Cartwright","age":27,"location":"Laurianeville"}},{"attributes":{"name":"Kayla Gleason","age":78,"location":"Waukegan"}},{"attributes":{"name":"Vincenza Metz Jr.","age":51,"location":"Orland Park"}},{"attributes":{"name":"Kevin Bauch","age":65,"location":"Jakubowskimouth"}},{"attributes":{"name":"Gerardo Skiles","age":31,"location":"New Mina"}},{"attributes":{"name":"Keenan Gorczany","age":26,"location":"Nicolefurt"}},{"attributes":{"name":"Mr. Ron Hilll DDS","age":57,"location":"Garland"}},{"attributes":{"name":"Dr. Laurie Emmerich DDS","age":54,"location":"Berniermouth"}},{"attributes":{"name":"Leon Green","age":39,"location":"East Ceciliaview"}},{"attributes":{"name":"Jeffrey Terry","age":46,"location":"East Chris"}},{"attributes":{"name":"Damien Sanford-Hegmann","age":37,"location":"West Nicoworth"}},{"attributes":{"name":"Christian Beier","age":71,"location":"East Zoeyfield"}},{"attributes":{"name":"Rita Kuhn","age":40,"location":"Malindaland"}},{"attributes":{"name":"Riley Wolff","age":30,"location":"West Gayleview"}},{"attributes":{"name":"Mrs. Gayle Rogahn","age":54,"location":"East Carolynecester"}},{"attributes":{"name":"Glenn Labadie","age":72,"location":"Schowaltercester"}},{"attributes":{"name":"Niko Runolfsson","age":62,"location":"East Alstead"}},{"attributes":{"name":"Helen Koch-Dickinson","age":43,"location":"New Erynstead"}},{"attributes":{"name":"Mr. Eldred Prosacco","age":52,"location":"Thielside"}},{"attributes":{"name":"Vickie Reinger-Kunde","age":70,"location":"Redondo Beach"}},{"attributes":{"name":"Stella Kertzmann","age":46,"location":"Ralphberg"}},{"attributes":{"name":"Clark Graham","age":67,"location":"Mayaguez"}},{"attributes":{"name":"Nicole Veum-Connelly","age":22,"location":"Port Stefanieville"}},{"attributes":{"name":"Jeff Barrows","age":23,"location":"Fullerton"}},{"attributes":{"name":"Doug Hegmann","age":60,"location":"Ferryfort"}},{"attributes":{"name":"Ricky D'Amore","age":62,"location":"Wildermanland"}},{"attributes":{"name":"Cecilia Bahringer","age":48,"location":"Lake Adahfurt"}},{"attributes":{"name":"Nigel Mohr","age":30,"location":"Fort Nicholaustown"}},{"attributes":{"name":"Ms. Johnny Kertzmann","age":39,"location":"East Torrey"}},{"attributes":{"name":"Chester Schamberger","age":54,"location":"Kovacektown"}},{"attributes":{"name":"Gina Keeling DDS","age":55,"location":"Sheilaworth"}},{"attributes":{"name":"Claud Breitenberg","age":32,"location":"Flagstaff"}},{"attributes":{"name":"Jules Upton","age":55,"location":"Fort Loy"}},{"attributes":{"name":"Miss Lisa Russel","age":74,"location":"Port Elfrieda"}},{"attributes":{"name":"Avis Quitzon","age":71,"location":"Wuckertville"}},{"attributes":{"name":"Ms. Shane Grant","age":73,"location":"Fort Conniefort"}},{"attributes":{"name":"Mariana Treutel II","age":39,"location":"Connellyworth"}},{"attributes":{"name":"Miss Gideon Schultz Sr.","age":65,"location":"Lake Leonardoworth"}},{"attributes":{"name":"Jonathon Fadel","age":76,"location":"Cullenville"}},{"attributes":{"name":"Rodolfo Schmitt","age":39,"location":"Fort Kamilleville"}},{"attributes":{"name":"Mr. Delmer Hickle","age":50,"location":"Elvaville"}},{"attributes":{"name":"Nancy Gerhold","age":48,"location":"Port Gwenboro"}},{"attributes":{"name":"Brenda Schoen","age":46,"location":"Casperfort"}},{"attributes":{"name":"Terrill Lueilwitz","age":38,"location":"Karenmouth"}},{"attributes":{"name":"Mable Heathcote","age":37,"location":"North Albafort"}},{"attributes":{"name":"Dr. Ira Hand DDS","age":45,"location":"Fort Elsaberg"}},{"attributes":{"name":"Alessandra Bartoletti","age":35,"location":"Great Falls"}},{"attributes":{"name":"Summer O'Keefe","age":42,"location":"Fort Blair"}},{"attributes":{"name":"Dr. Sam Gislason Sr.","age":26,"location":"Demarioville"}},{"attributes":{"name":"Esther Heller MD","age":58,"location":"Sedrickbury"}},{"attributes":{"name":"Dr. Leticia Murray","age":68,"location":"Port Jonashaven"}},{"attributes":{"name":"Seth Becker","age":80,"location":"West Jan"}},{"attributes":{"name":"Garrett Kuphal","age":25,"location":"Lake Yessenia"}},{"attributes":{"name":"Ludie Walter","age":33,"location":"Fort Mozell"}},{"attributes":{"name":"Linda Predovic","age":33,"location":"South Norbertocester"}},{"attributes":{"name":"Billy Harris","age":69,"location":"New Montanatown"}},{"attributes":{"name":"Taylor Mayer","age":59,"location":"Namefurt"}},{"attributes":{"name":"Rafael Franey","age":55,"location":"Hammeshaven"}},{"attributes":{"name":"Emma Jakubowski","age":50,"location":"Milfordbury"}},{"attributes":{"name":"Jace Herzog","age":20,"location":"North Alexandrinefort"}},{"attributes":{"name":"Crystal Koepp","age":61,"location":"Jaydencester"}},{"attributes":{"name":"Dr. Terrill Cormier","age":69,"location":"Lake Tessie"}},{"attributes":{"name":"Sonja Beatty","age":53,"location":"Wunschboro"}},{"attributes":{"name":"Loren Spencer","age":52,"location":"Port Genovevafurt"}},{"attributes":{"name":"Ida Roberts","age":41,"location":"Lednertown"}},{"attributes":{"name":"Brandy Haag","age":42,"location":"Morarchester"}},{"attributes":{"name":"Dominique Batz","age":40,"location":"North Keithfort"}},{"attributes":{"name":"Toby Fritsch","age":68,"location":"Kulastown"}},{"attributes":{"name":"Dan Crist","age":45,"location":"Wichita Falls"}},{"attributes":{"name":"Kathryn Jones","age":35,"location":"Timmothystead"}},{"attributes":{"name":"Mr. Laurence Waters","age":65,"location":"Eden Prairie"}},{"attributes":{"name":"Mr. Albert Luettgen","age":63,"location":"Robelville"}},{"attributes":{"name":"Alicia Renner Sr.","age":35,"location":"North Wilfordstad"}},{"attributes":{"name":"Cameron Langosh","age":22,"location":"Collinsfurt"}},{"attributes":{"name":"Rachel Hoppe","age":26,"location":"New Bertram"}},{"attributes":{"name":"Carroll Konopelski","age":44,"location":"Coral Gables"}},{"attributes":{"name":"Dr. Janie Lesch","age":62,"location":"South Odessastad"}},{"attributes":{"name":"Juan Bailey","age":78,"location":"Waterloo"}},{"attributes":{"name":"Francis Rosenbaum","age":75,"location":"Ziemannfield"}},{"attributes":{"name":"Darion Aufderhar","age":48,"location":"Clarksville"}},{"attributes":{"name":"Alfonso Walter PhD","age":26,"location":"New Claire"}},{"attributes":{"name":"Monty Dooley","age":19,"location":"Oro Valley"}},{"attributes":{"name":"Jennifer Schowalter","age":29,"location":"Schimmelland"}},{"attributes":{"name":"Ms. Sheri Hermiston","age":28,"location":"Jacobsstad"}},{"attributes":{"name":"Hayden Schuster","age":50,"location":"South Fabiolaberg"}},{"attributes":{"name":"Lamar Purdy","age":49,"location":"Robertsfield"}},{"attributes":{"name":"Omar Reichert DVM","age":79,"location":"Zackerystead"}},{"attributes":{"name":"Dean Kilback","age":44,"location":"Stehrfield"}},{"attributes":{"name":"Vicky Hodkiewicz","age":48,"location":"Southaven"}},{"attributes":{"name":"Mrs. Lana Jerde","age":33,"location":"Wilkinsonshire"}},{"attributes":{"name":"Alexander Moore-Wilkinson V","age":53,"location":"East Tannerfort"}},{"attributes":{"name":"Lena Kuhlman","age":66,"location":"Lake Rasheed"}},{"attributes":{"name":"Lena Price","age":49,"location":"Janeland"}},{"attributes":{"name":"Mrs. Eunice Turner","age":25,"location":"Fort Addieburgh"}},{"attributes":{"name":"Marty Lind","age":40,"location":"La Mirada"}},{"attributes":{"name":"Mrs. Marta Lesch I","age":40,"location":"Buckeye"}},{"attributes":{"name":"Ms. Elroy Bradtke","age":55,"location":"Vidalport"}},{"attributes":{"name":"Natasha Krajcik","age":27,"location":"Fort Jeremyfield"}},{"attributes":{"name":"Nelle Reichel","age":48,"location":"Elfriedafield"}},{"attributes":{"name":"Cristina Larkin II","age":25,"location":"North Roselynchester"}},{"attributes":{"name":"Lori Hilll","age":34,"location":"Spencerborough"}},{"attributes":{"name":"Grant Bernier","age":73,"location":"Kuhnshire"}},{"attributes":{"name":"Alicia Schuster-Anderson","age":64,"location":"Frederick"}},{"attributes":{"name":"Jada Towne","age":76,"location":"Bakersfield"}},{"attributes":{"name":"Miss Fay Block","age":27,"location":"Taylorsville"}},{"attributes":{"name":"Kellie Yost-Abernathy","age":74,"location":"Krisburgh"}},{"attributes":{"name":"Heather Torp","age":38,"location":"Santa Cruz"}},{"attributes":{"name":"Kimberly Keeling","age":47,"location":"Port Lorena"}},{"attributes":{"name":"Adrianna Gibson","age":40,"location":"Port Aubreyboro"}},{"attributes":{"name":"Wilson Waelchi","age":30,"location":"Reillyview"}},{"attributes":{"name":"Jody Kertzmann","age":72,"location":"East Selena"}},{"attributes":{"name":"Esther Rodriguez","age":41,"location":"Fort Esther"}},{"attributes":{"name":"Andres Pagac-Gislason","age":45,"location":"Santa Maria"}},{"attributes":{"name":"Bennie Kling","age":55,"location":"Shanahanhaven"}},{"attributes":{"name":"Evelyn Williamson","age":31,"location":"Westminster"}},{"attributes":{"name":"Ms. Ora Hermiston-Jacobs","age":28,"location":"Quigleycester"}},{"attributes":{"name":"Terri Mertz","age":43,"location":"South Ocie"}},{"attributes":{"name":"Richie McKenzie","age":22,"location":"Harriscester"}},{"attributes":{"name":"Jacquelyn Cartwright","age":78,"location":"Port Odastad"}},{"attributes":{"name":"Billie Harber","age":42,"location":"Vineland"}},{"attributes":{"name":"Trey Bins","age":23,"location":"Adolphcester"}},{"attributes":{"name":"Cristobal Brekke","age":62,"location":"Bechtelarville"}},{"attributes":{"name":"Mrs. Francisco Jacobi Jr.","age":72,"location":"Paucekbury"}},{"attributes":{"name":"Mrs. Johanna Tromp I","age":44,"location":"Lewisville"}},{"attributes":{"name":"Mrs. Joanna MacGyver DVM","age":77,"location":"Rocklin"}},{"attributes":{"name":"Mario Hagenes","age":27,"location":"Mansfield"}},{"attributes":{"name":"Jose Roob","age":65,"location":"Provo"}},{"attributes":{"name":"Virginia Marvin","age":32,"location":"Ignatiusfort"}},{"attributes":{"name":"Travis Torp","age":59,"location":"Conroyton"}},{"attributes":{"name":"Jenny Kulas","age":50,"location":"Reichelfield"}},{"attributes":{"name":"Irene Blick","age":35,"location":"Lake Dessie"}},{"attributes":{"name":"Inez Hills-Feeney","age":73,"location":"Providencichester"}},{"attributes":{"name":"Ms. Loretta Crooks","age":75,"location":"Yucaipa"}},{"attributes":{"name":"Logan Buckridge Sr.","age":53,"location":"Waynechester"}},{"attributes":{"name":"Wallace Marquardt","age":31,"location":"Websterboro"}},{"attributes":{"name":"Hudson Bernhard","age":78,"location":"Velmaville"}},{"attributes":{"name":"Mary Becker-Haag","age":46,"location":"Georgetown"}},{"attributes":{"name":"Miss Lance Kozey","age":40,"location":"Lake Margarettaworth"}},{"attributes":{"name":"Diane Swaniawski DVM","age":68,"location":"Lake Cassieton"}},{"attributes":{"name":"Carlton Gislason","age":66,"location":"Alaynashire"}},{"attributes":{"name":"Darlene Davis","age":23,"location":"Simonisfield"}},{"attributes":{"name":"Frank Mante","age":71,"location":"West Renee"}},{"attributes":{"name":"Al Hodkiewicz","age":54,"location":"Port Lyricside"}},{"attributes":{"name":"Tyrel Borer","age":80,"location":"Beerfurt"}},{"attributes":{"name":"Luisa White","age":20,"location":"Oak Lawn"}},{"attributes":{"name":"Fanny Kihn II","age":26,"location":"North Arjun"}},{"attributes":{"name":"Mrs. Winifred Zemlak","age":74,"location":"Lynchburg"}},{"attributes":{"name":"Tanya Zemlak","age":47,"location":"Port Adan"}},{"attributes":{"name":"Ramona Rohan-Mayer","age":80,"location":"El Centro"}},{"attributes":{"name":"Wyman Considine-Friesen","age":20,"location":"Wilson"}},{"attributes":{"name":"Jeremiah Emard IV","age":74,"location":"Lindseyburgh"}},{"attributes":{"name":"Darin Kemmer","age":25,"location":"Lake Jane"}},{"attributes":{"name":"Chasity Mayert","age":65,"location":"New Deontaeworth"}},{"attributes":{"name":"Celia Doyle","age":28,"location":"Kassandraville"}},{"attributes":{"name":"Erica Jakubowski","age":78,"location":"Leschside"}},{"attributes":{"name":"Maurice Feest","age":36,"location":"Schroederport"}},{"attributes":{"name":"Leona Gerlach PhD","age":78,"location":"Christiansenboro"}},{"attributes":{"name":"Miss Ashlynn Batz","age":57,"location":"Town 'n' Country"}},{"attributes":{"name":"Mekhi Mertz","age":34,"location":"Romaguerachester"}},{"attributes":{"name":"Raymond Langosh II","age":44,"location":"Kendale Lakes"}},{"attributes":{"name":"Loren Ritchie","age":20,"location":"New Lelafurt"}},{"attributes":{"name":"Marcelino Champlin","age":76,"location":"Deltona"}},{"attributes":{"name":"Ernie Kautzer-Bogan","age":33,"location":"Port Issacworth"}},{"attributes":{"name":"Brigitte Baumbach","age":79,"location":"Rancho Cordova"}},{"attributes":{"name":"Eduardo Dooley-Hintz","age":66,"location":"West Evans"}},{"attributes":{"name":"General Mosciski-Metz III","age":44,"location":"Charlotte"}},{"attributes":{"name":"Francis Wolf","age":26,"location":"Port Jermainemouth"}},{"attributes":{"name":"Letitia Ward","age":34,"location":"Lilianberg"}},{"attributes":{"name":"Brad Emmerich","age":70,"location":"Daishaport"}},{"attributes":{"name":"Dr. Maria Goodwin II","age":21,"location":"East Aylinfield"}},{"attributes":{"name":"Ms. Daniela Smitham V","age":71,"location":"Francescaport"}},{"attributes":{"name":"Lamont Goyette-Moore","age":47,"location":"East Franktown"}},{"attributes":{"name":"Linda Mayer","age":67,"location":"Lake Eusebio"}},{"attributes":{"name":"Rick Kling","age":49,"location":"South Kaydenbury"}},{"attributes":{"name":"Dr. Penny Mitchell","age":30,"location":"West Pearlineborough"}},{"attributes":{"name":"Willis D'Amore","age":21,"location":"Tracy"}},{"attributes":{"name":"Mr. Shannon Jacobs","age":20,"location":"Handville"}},{"attributes":{"name":"Louis Kirlin","age":20,"location":"Dunwoody"}},{"attributes":{"name":"Darian Bogan","age":45,"location":"Tulsa"}},{"attributes":{"name":"Mitchel Kuhic","age":44,"location":"New Albertha"}},{"attributes":{"name":"Nakia Stamm","age":67,"location":"Simonisworth"}},{"attributes":{"name":"Dagmar Herman","age":42,"location":"South Rachelleville"}},{"attributes":{"name":"Oran King","age":47,"location":"New Enosstad"}},{"attributes":{"name":"Lindsay Morar","age":55,"location":"South Marcelino"}},{"attributes":{"name":"Emilio Casper","age":25,"location":"East Vallie"}},{"attributes":{"name":"Joan Rippin","age":69,"location":"Caleighworth"}},{"attributes":{"name":"Roderick Walsh","age":33,"location":"Beattyboro"}},{"attributes":{"name":"Dr. Lou Dickens","age":61,"location":"North Tremayneboro"}},{"attributes":{"name":"Mr. Dustin Boehm","age":25,"location":"Leschcester"}},{"attributes":{"name":"Sophia Fay","age":62,"location":"Mavisfort"}},{"attributes":{"name":"Claire McDermott","age":38,"location":"Kovacekmouth"}},{"attributes":{"name":"Elsie Upton","age":66,"location":"Dallas"}},{"attributes":{"name":"Randolph Wilkinson","age":51,"location":"New Vince"}},{"attributes":{"name":"Mrs. Roderick Durgan IV","age":37,"location":"West Gabriellehaven"}},{"attributes":{"name":"Mr. Winifred Halvorson","age":77,"location":"North Juliaborough"}},{"attributes":{"name":"Trevion Stanton","age":26,"location":"Lake Lexi"}},{"attributes":{"name":"Tomas Cummings-Hodkiewicz DDS","age":53,"location":"New Damonberg"}},{"attributes":{"name":"Dr. Adelle Adams","age":43,"location":"Gerholdfurt"}},{"attributes":{"name":"Wayne Davis","age":44,"location":"Fort Sydnifurt"}},{"attributes":{"name":"Dr. Alicia Cormier","age":49,"location":"West Shaun"}},{"attributes":{"name":"Clare Ortiz-Mitchell","age":49,"location":"Juneside"}},{"attributes":{"name":"Shawn Vandervort","age":43,"location":"Temple"}},{"attributes":{"name":"Glenn Skiles DVM","age":54,"location":"New Kaycee"}},{"attributes":{"name":"Rene Kreiger","age":39,"location":"Shieldshaven"}},{"attributes":{"name":"Josianne Deckow","age":19,"location":"Hanetown"}},{"attributes":{"name":"Della Boyer","age":80,"location":"Peteboro"}},{"attributes":{"name":"Janice Kreiger","age":43,"location":"East Quinn"}},{"attributes":{"name":"Terry Prohaska","age":80,"location":"Jonesboro"}},{"attributes":{"name":"Frances Rippin","age":57,"location":"Elmhurst"}},{"attributes":{"name":"Leigh Flatley","age":54,"location":"South Demarcusshire"}},{"attributes":{"name":"Pamela Walker","age":40,"location":"Cremintown"}},{"attributes":{"name":"Herbert Raynor","age":74,"location":"Monicafurt"}},{"attributes":{"name":"Anais Heathcote","age":25,"location":"Pfefferberg"}},{"attributes":{"name":"Alta Turner","age":48,"location":"Jastbury"}},{"attributes":{"name":"Norma Orn","age":60,"location":"Russelstad"}},{"attributes":{"name":"Tommie Stroman","age":71,"location":"Port Josefaport"}},{"attributes":{"name":"Chester Howe","age":30,"location":"Aliceport"}},{"attributes":{"name":"Ms. Joyce Beatty","age":33,"location":"Bayerhaven"}},{"attributes":{"name":"Marcus O'Kon","age":43,"location":"Rockville"}},{"attributes":{"name":"Pietro Will","age":40,"location":"Hempstead"}},{"attributes":{"name":"Brielle Kshlerin","age":48,"location":"Fort Pink"}},{"attributes":{"name":"Sonja Wunsch","age":22,"location":"South Estefania"}},{"attributes":{"name":"Casey Streich","age":68,"location":"Uptonhaven"}},{"attributes":{"name":"Darrin Leannon","age":58,"location":"Altoona"}},{"attributes":{"name":"Dixie Wilderman","age":59,"location":"Jennyferboro"}},{"attributes":{"name":"Amina Balistreri II","age":54,"location":"Utica"}},{"attributes":{"name":"Miss Kadin Will III","age":26,"location":"Arabury"}},{"attributes":{"name":"Geneva Olson","age":22,"location":"Welchbury"}},{"attributes":{"name":"Camren Hessel","age":49,"location":"New York"}},{"attributes":{"name":"Danielle Fahey","age":63,"location":"Coltberg"}},{"attributes":{"name":"Mrs. Letha Herzog","age":20,"location":"East Chesley"}},{"attributes":{"name":"Maurice Paucek","age":32,"location":"New Ibrahimborough"}},{"attributes":{"name":"Dr. Alex Abbott DDS","age":26,"location":"New Tony"}},{"attributes":{"name":"Marcelino Corwin","age":71,"location":"East Leopold"}},{"attributes":{"name":"Berry Schuppe-Greenfelder","age":22,"location":"North Kayleyfurt"}},{"attributes":{"name":"Tomas Von","age":19,"location":"Seattle"}},{"attributes":{"name":"Jensen Koepp","age":18,"location":"Fort Deliamouth"}},{"attributes":{"name":"Erika Herzog","age":27,"location":"Filomenabury"}},{"attributes":{"name":"Sean Murazik-Koch","age":23,"location":"Tulare"}},{"attributes":{"name":"Victor Larkin","age":80,"location":"Lake Justusboro"}},{"attributes":{"name":"Mr. Kelvin Ward","age":22,"location":"East Isailand"}},{"attributes":{"name":"Mr. Milton King","age":26,"location":"Rosemarieview"}},{"attributes":{"name":"Laurie Kertzmann","age":78,"location":"Lake Madonnastead"}},{"attributes":{"name":"Cassandra Osinski","age":25,"location":"West Kennethborough"}},{"attributes":{"name":"Orville Yost PhD","age":22,"location":"Jonfield"}},{"attributes":{"name":"Dewayne Kub","age":21,"location":"Cormierstad"}},{"attributes":{"name":"Marlene Crooks","age":58,"location":"Nashua"}},{"attributes":{"name":"Shelly Wehner","age":22,"location":"East Zachery"}},{"attributes":{"name":"Jeanne Sauer","age":75,"location":"Albuquerque"}},{"attributes":{"name":"Maeve Schumm","age":23,"location":"Lake Sylvanfurt"}},{"attributes":{"name":"Brandi Mayert","age":34,"location":"Karliemouth"}},{"attributes":{"name":"Franklin Lakin","age":42,"location":"Gibsonworth"}},{"attributes":{"name":"Joel Bosco","age":57,"location":"South Alva"}},{"attributes":{"name":"Mr. Gary Fadel","age":76,"location":"Port Josh"}},{"attributes":{"name":"Selena Cremin","age":34,"location":"South Robertaland"}},{"attributes":{"name":"Tod Lakin","age":40,"location":"East Dallaschester"}},{"attributes":{"name":"Robin Collier","age":21,"location":"Smyrna"}},{"attributes":{"name":"Irene Swift","age":43,"location":"Chanellestead"}},{"attributes":{"name":"Dr. Rebekah Lehner","age":30,"location":"Clemmieworth"}},{"attributes":{"name":"Alden Carroll","age":27,"location":"North Kory"}},{"attributes":{"name":"Lola Goodwin","age":77,"location":"Midland"}},{"attributes":{"name":"Wanda Lockman IV","age":20,"location":"New Charles"}},{"attributes":{"name":"Ricky Bogisich","age":65,"location":"Plantation"}},{"attributes":{"name":"Eduardo Krajcik","age":46,"location":"North Nelsonboro"}},{"attributes":{"name":"Tyrone Friesen Jr.","age":31,"location":"East Olachester"}},{"attributes":{"name":"Maxine Koch","age":51,"location":"Loweboro"}},{"attributes":{"name":"River Mitchell","age":28,"location":"Port Cristalhaven"}},{"attributes":{"name":"Dr. Trudie Dooley","age":65,"location":"Amirafort"}},{"attributes":{"name":"Adelia Parisian Jr.","age":53,"location":"Hyattshire"}},{"attributes":{"name":"Carlotta Schumm-Kassulke","age":58,"location":"Blockport"}},{"attributes":{"name":"Traci Hamill","age":57,"location":"Arnoldoside"}},{"attributes":{"name":"Adam Zboncak","age":63,"location":"Murrayberg"}},{"attributes":{"name":"Dayne Leuschke DVM","age":40,"location":"Warren"}},{"attributes":{"name":"Shelly Walter","age":57,"location":"Kennethtown"}},{"attributes":{"name":"Tasha Block","age":54,"location":"Santa Ana"}},{"attributes":{"name":"Frances Franey","age":18,"location":"Lake Dedrick"}},{"attributes":{"name":"Celine Ward","age":24,"location":"North Aliviashire"}},{"attributes":{"name":"Cecilia Renner","age":27,"location":"Fountainebleau"}},{"attributes":{"name":"Lilla Osinski","age":68,"location":"Carolefield"}},{"attributes":{"name":"Ezequiel Abshire Jr.","age":63,"location":"Baileycester"}},{"attributes":{"name":"Luz Skiles","age":26,"location":"Keenanville"}},{"attributes":{"name":"Eryn Lind","age":45,"location":"Lake Rafaela"}},{"attributes":{"name":"Dr. Calvin Ratke","age":30,"location":"Grahamton"}},{"attributes":{"name":"Mr. William Feest","age":69,"location":"Faychester"}},{"attributes":{"name":"Ashley Dickens","age":34,"location":"Boganburgh"}},{"attributes":{"name":"Charles Wintheiser-Stoltenberg","age":74,"location":"Kautzerville"}},{"attributes":{"name":"Adrain Macejkovic DVM","age":36,"location":"West Jocelyn"}},{"attributes":{"name":"Dr. Mathew Lang","age":79,"location":"Vladimirstead"}},{"attributes":{"name":"Miss Lawson Reinger","age":44,"location":"Lake Daynacester"}},{"attributes":{"name":"Golda Kiehn","age":62,"location":"Port Shanon"}},{"attributes":{"name":"Caleb Collins","age":76,"location":"Osinskiport"}},{"attributes":{"name":"Nettie Labadie","age":59,"location":"Bergefort"}},{"attributes":{"name":"Lorine Stroman","age":29,"location":"Bogantown"}},{"attributes":{"name":"Watson Schmitt","age":28,"location":"Jadynstead"}},{"attributes":{"name":"Alma Gleason","age":34,"location":"Warner Robins"}},{"attributes":{"name":"Miss Ora Marquardt","age":76,"location":"Port Lauretta"}},{"attributes":{"name":"Dameon Leffler","age":73,"location":"Port Princessberg"}},{"attributes":{"name":"Violet Dooley","age":45,"location":"South Kenfurt"}},{"attributes":{"name":"Dr. Einar Swaniawski","age":34,"location":"East Oswaldo"}},{"attributes":{"name":"Dallin Rutherford","age":74,"location":"Wildermanchester"}},{"attributes":{"name":"Miss Candelario Schulist","age":60,"location":"Lynchbury"}},{"attributes":{"name":"June Hauck","age":79,"location":"Jonatanborough"}},{"attributes":{"name":"Irma O'Kon","age":42,"location":"Stokesview"}},{"attributes":{"name":"Glenna Ernser IV","age":51,"location":"Bernierland"}},{"attributes":{"name":"Gwen McClure","age":53,"location":"Lake Johnpaul"}},{"attributes":{"name":"Lucinda McCullough","age":67,"location":"North Arlene"}},{"attributes":{"name":"Pearline Rippin DDS","age":76,"location":"Fort Dane"}},{"attributes":{"name":"Paolo Gutkowski","age":31,"location":"Purdyfurt"}},{"attributes":{"name":"Mindy Christiansen","age":74,"location":"Cassinchester"}},{"attributes":{"name":"Catalina Ferry","age":46,"location":"Verdaboro"}},{"attributes":{"name":"Alayna Vandervort","age":54,"location":"Beahanfield"}},{"attributes":{"name":"Ryley Koelpin","age":51,"location":"Vellachester"}},{"attributes":{"name":"Anita Towne","age":18,"location":"Hirthestead"}},{"attributes":{"name":"Ivan Gleason","age":36,"location":"East Hollis"}},{"attributes":{"name":"Miss Verna Schmidt","age":29,"location":"Poinciana"}},{"attributes":{"name":"Layla Greenholt","age":43,"location":"Leschfield"}},{"attributes":{"name":"Scott Monahan","age":30,"location":"Uptonfort"}},{"attributes":{"name":"Elena Hoppe","age":37,"location":"South Maverick"}},{"attributes":{"name":"Terry Brekke","age":65,"location":"Juliannefort"}},{"attributes":{"name":"Mindy Kiehn","age":63,"location":"Turnermouth"}},{"attributes":{"name":"Cheryl Gulgowski","age":32,"location":"Lake Wilfordchester"}},{"attributes":{"name":"Mr. Blanca Boyer","age":24,"location":"Minaview"}},{"attributes":{"name":"Lena Schimmel","age":68,"location":"Gerlachbury"}},{"attributes":{"name":"Mr. Franklin Jacobi","age":66,"location":"Port Adityaworth"}},{"attributes":{"name":"Brando Hickle III","age":24,"location":"Niaburgh"}},{"attributes":{"name":"Judith Corwin","age":43,"location":"New Wilfordberg"}},{"attributes":{"name":"Neal Swaniawski PhD","age":44,"location":"Ezequielburgh"}},{"attributes":{"name":"Cecelia Bergstrom","age":23,"location":"Hicklehaven"}},{"attributes":{"name":"Geneva Hudson","age":42,"location":"New Rhiannon"}},{"attributes":{"name":"Frank Gutkowski","age":79,"location":"North Newell"}},{"attributes":{"name":"Adrianna Kuhlman","age":22,"location":"South Westley"}},{"attributes":{"name":"Simeon McCullough","age":75,"location":"Aleenshire"}},{"attributes":{"name":"Benton Jacobi","age":43,"location":"Quitzonstead"}},{"attributes":{"name":"Dashawn Cummings","age":47,"location":"Rodriguezworth"}},{"attributes":{"name":"Lena Quitzon MD","age":79,"location":"Gulgowskiboro"}},{"attributes":{"name":"Miss Rashad Hamill","age":29,"location":"East Christine"}},{"attributes":{"name":"Yvonne Denesik","age":32,"location":"North Lexie"}},{"attributes":{"name":"Jean Zulauf","age":39,"location":"Jovanboro"}},{"attributes":{"name":"Jeramy Raynor","age":64,"location":"Cary"}},{"attributes":{"name":"Priscilla Morar","age":61,"location":"West Annabel"}},{"attributes":{"name":"Glen Gleason","age":39,"location":"North Laurelmouth"}},{"attributes":{"name":"Wilber Schultz","age":76,"location":"Haleyburgh"}},{"attributes":{"name":"Dora Goodwin","age":20,"location":"Cheektowaga"}},{"attributes":{"name":"Berneice Hettinger","age":28,"location":"Fort Raleighton"}},{"attributes":{"name":"Janis Von","age":18,"location":"Fort Kelli"}},{"attributes":{"name":"Elena Wuckert","age":44,"location":"Marleeport"}},{"attributes":{"name":"Eunice Hodkiewicz","age":53,"location":"North Alaina"}},{"attributes":{"name":"Danial Ziemann","age":50,"location":"Gulfport"}},{"attributes":{"name":"Dora Schmitt","age":70,"location":"Allentown"}},{"attributes":{"name":"Gladyce Greenholt","age":44,"location":"Greenfelderside"}},{"attributes":{"name":"Rosa Auer","age":58,"location":"Grapevine"}},{"attributes":{"name":"Vincent Wintheiser","age":43,"location":"Dearborn"}},{"attributes":{"name":"Johanna Balistreri","age":47,"location":"East Merlinboro"}},{"attributes":{"name":"Carlos Mueller","age":56,"location":"Khalilcester"}},{"attributes":{"name":"Ken Breitenberg","age":51,"location":"Sashashire"}},{"attributes":{"name":"Roderick Littel","age":66,"location":"Fort Yazmin"}},{"attributes":{"name":"Pearl Greenfelder","age":45,"location":"West Alexandroberg"}},{"attributes":{"name":"Ebony Kemmer","age":36,"location":"East Mercedes"}},{"attributes":{"name":"Eddie Jast","age":40,"location":"Torpton"}},{"attributes":{"name":"Mrs. Olga Ullrich","age":77,"location":"Port Miles"}},{"attributes":{"name":"Dr. Joann Ratke","age":31,"location":"Charityland"}},{"attributes":{"name":"Agnes Streich","age":36,"location":"North Bella"}},{"attributes":{"name":"Elvira Hilll","age":20,"location":"East Haydenstad"}},{"attributes":{"name":"Clyde Kling-Muller IV","age":20,"location":"Roswell"}},{"attributes":{"name":"Demond Spencer IV","age":48,"location":"Huelcester"}},{"attributes":{"name":"Elsie Daniel","age":55,"location":"Daretown"}},{"attributes":{"name":"Warren Reinger","age":77,"location":"Santosstead"}},{"attributes":{"name":"Dr. Domenico Will","age":48,"location":"Pine Bluff"}},{"attributes":{"name":"Al Schmidt","age":49,"location":"Bartoncester"}},{"attributes":{"name":"Uriel Dibbert","age":52,"location":"Binsville"}},{"attributes":{"name":"Chance Heaney-Auer","age":62,"location":"Lake Phoebe"}},{"attributes":{"name":"Daisy Harris","age":31,"location":"Bayamon"}},{"attributes":{"name":"Kim Considine","age":34,"location":"East Delphatown"}},{"attributes":{"name":"Mr. Caleb Olson","age":53,"location":"North Abigailstad"}},{"attributes":{"name":"Kayla Walsh","age":68,"location":"Lake Ameliastad"}},{"attributes":{"name":"Michael Goyette","age":35,"location":"Kozeyburgh"}},{"attributes":{"name":"John Raynor","age":38,"location":"Roseville"}},{"attributes":{"name":"Alex Goyette","age":39,"location":"South Shaneberg"}},{"attributes":{"name":"Laney Glover I","age":23,"location":"Skileston"}},{"attributes":{"name":"Fritz Ryan","age":52,"location":"West Gradyshire"}},{"attributes":{"name":"Caroline Shanahan","age":62,"location":"Kreigershire"}},{"attributes":{"name":"Lynda Rolfson","age":69,"location":"Lorain"}},{"attributes":{"name":"Shanie Donnelly","age":29,"location":"Dameonfield"}},{"attributes":{"name":"Blaze Hirthe","age":35,"location":"Floydville"}},{"attributes":{"name":"Randy Lowe","age":55,"location":"Hayesshire"}},{"attributes":{"name":"Cedric Barton","age":50,"location":"New Ally"}},{"attributes":{"name":"Destinee Bartell Jr.","age":50,"location":"West Clyde"}},{"attributes":{"name":"Miss Amelie Schroeder","age":44,"location":"Jennifermouth"}},{"attributes":{"name":"Miss Wellington Hickle","age":32,"location":"Hermistonton"}},{"attributes":{"name":"Myrtle Haley","age":39,"location":"South Bernard"}},{"attributes":{"name":"Gretchen Braun","age":62,"location":"Port Averytown"}},{"attributes":{"name":"Mrs. Randall Witting","age":39,"location":"Port Ryder"}},{"attributes":{"name":"Mr. Aurelie Schimmel","age":45,"location":"Killeen"}},{"attributes":{"name":"Cornelius Hoeger","age":68,"location":"O'Reillyland"}},{"attributes":{"name":"Patricia Kuhic","age":19,"location":"Brisaboro"}},{"attributes":{"name":"Parker Kuhn","age":80,"location":"North Eleonoreland"}},{"attributes":{"name":"Norman Witting","age":46,"location":"Pfannerstillside"}},{"attributes":{"name":"Carter Lueilwitz","age":18,"location":"Fort Jamarcusshire"}},{"attributes":{"name":"Gerald Ferry","age":39,"location":"South Jaquan"}},{"attributes":{"name":"Willie Leffler","age":33,"location":"Doral"}},{"attributes":{"name":"Delia Rosenbaum","age":27,"location":"Fort Josueton"}},{"attributes":{"name":"Angie Rippin","age":43,"location":"Waterloo"}},{"attributes":{"name":"Dr. Maude Fadel","age":54,"location":"Claymouth"}},{"attributes":{"name":"Emmett Jaskolski","age":30,"location":"Bayerstad"}},{"attributes":{"name":"Bryan Stroman","age":61,"location":"North Sebastian"}},{"attributes":{"name":"Verner Hirthe","age":65,"location":"East Rachelle"}},{"attributes":{"name":"Kara Murray","age":78,"location":"Robelchester"}},{"attributes":{"name":"Zelda Harvey DDS","age":58,"location":"Jordanstead"}},{"attributes":{"name":"Maybell Herzog","age":69,"location":"Fort Brendanland"}},{"attributes":{"name":"Katrine Torphy","age":67,"location":"Port Chloefield"}},{"attributes":{"name":"Grover Gerhold","age":77,"location":"North Sage"}},{"attributes":{"name":"Jordan Pollich","age":60,"location":"South Randalland"}},{"attributes":{"name":"Alexander Brakus","age":18,"location":"West Briceberg"}},{"attributes":{"name":"Mr. Aisha Douglas","age":65,"location":"Fort Margotboro"}},{"attributes":{"name":"Trudie Schuppe","age":46,"location":"South Isaiahbury"}},{"attributes":{"name":"Erick Runolfsdottir","age":46,"location":"New Erwinton"}},{"attributes":{"name":"Gloria Douglas","age":30,"location":"Langberg"}},{"attributes":{"name":"Rossie Durgan","age":56,"location":"Margarettaworth"}},{"attributes":{"name":"Jameson McKenzie","age":68,"location":"Aileenton"}},{"attributes":{"name":"Dewey Ziemann","age":61,"location":"Burbank"}},{"attributes":{"name":"Adelbert Kuhlman","age":45,"location":"Jaylenfort"}},{"attributes":{"name":"Addison Walter","age":29,"location":"Fort Rafaela"}},{"attributes":{"name":"Denise Kling","age":29,"location":"Mayerburgh"}},{"attributes":{"name":"Leann Becker II","age":33,"location":"New Silasburgh"}},{"attributes":{"name":"Barry Kertzmann-Schoen","age":65,"location":"East Lessie"}},{"attributes":{"name":"Allene Marks","age":54,"location":"Schambergerport"}},{"attributes":{"name":"Cecilia Feil","age":58,"location":"Sethfort"}},{"attributes":{"name":"Joann Cremin","age":79,"location":"Larsonchester"}},{"attributes":{"name":"Sherri Bechtelar","age":43,"location":"Dagmarville"}},{"attributes":{"name":"Blaze Ledner","age":64,"location":"Fort Adrienne"}},{"attributes":{"name":"Victoria Bruen","age":62,"location":"New Loy"}},{"attributes":{"name":"Rex Wilkinson","age":24,"location":"Huldatown"}},{"attributes":{"name":"Mr. Melvin Rice","age":50,"location":"South Missouri"}},{"attributes":{"name":"Dr. Joana O'Connell","age":45,"location":"Framiland"}},{"attributes":{"name":"Dr. Marlon Reichert","age":20,"location":"Sanford"}},{"attributes":{"name":"Jesus Jones","age":24,"location":"Marcelinoville"}},{"attributes":{"name":"Chad Skiles III","age":67,"location":"Lake Davionstead"}},{"attributes":{"name":"Julius Fay","age":67,"location":"Pittsburgh"}},{"attributes":{"name":"Micheal Jacobson","age":63,"location":"Morissettetown"}},{"attributes":{"name":"Clifford Littel V","age":47,"location":"Broken Arrow"}},{"attributes":{"name":"Edwin Hammes","age":69,"location":"Fort Helmerfield"}},{"attributes":{"name":"Lillian Heller","age":40,"location":"Lewhaven"}},{"attributes":{"name":"Dr. Ana Ward","age":60,"location":"Lucileville"}},{"attributes":{"name":"Jacquelyn Collier","age":75,"location":"Rueckerfurt"}},{"attributes":{"name":"Robin Sawayn","age":70,"location":"Scranton"}},{"attributes":{"name":"Josephine Gutkowski-Pollich","age":59,"location":"New Irma"}},{"attributes":{"name":"Thurman Koelpin","age":59,"location":"Hannafield"}},{"attributes":{"name":"Marshall Schmitt","age":46,"location":"West Kendrick"}},{"attributes":{"name":"Grace Nader","age":42,"location":"Port Lillianaport"}},{"attributes":{"name":"Layne Nolan","age":40,"location":"DeSoto"}},{"attributes":{"name":"Janice Daniel","age":44,"location":"Sheboygan"}},{"attributes":{"name":"Yvette Lubowitz-Lebsack","age":63,"location":"Bernicestad"}},{"attributes":{"name":"Efrain Heaney","age":28,"location":"Richardson"}},{"attributes":{"name":"Beaulah Boehm","age":70,"location":"Harveyland"}},{"attributes":{"name":"Nelle Rogahn","age":37,"location":"Port Kirsten"}},{"attributes":{"name":"Hugo Lubowitz","age":66,"location":"Fort Zenaton"}},{"attributes":{"name":"Dr. Joanna Doyle-Morar","age":46,"location":"Jaidencester"}},{"attributes":{"name":"Lenore Swift","age":74,"location":"Wehnerstead"}},{"attributes":{"name":"Etha Shields","age":63,"location":"Nicholeview"}},{"attributes":{"name":"Neal Lang","age":61,"location":"Mosciskihaven"}},{"attributes":{"name":"Gerardo Roberts","age":60,"location":"North Wilfredoberg"}},{"attributes":{"name":"Neil Crooks","age":33,"location":"North Ebba"}},{"attributes":{"name":"Becky Kub-Auer","age":33,"location":"Donatoboro"}},{"attributes":{"name":"Sigmund Conn","age":25,"location":"Florence-Graham"}},{"attributes":{"name":"Carolyn Casper","age":59,"location":"Port Maribel"}},{"attributes":{"name":"Josh Armstrong","age":54,"location":"Isabellaberg"}},{"attributes":{"name":"Mona Bednar","age":75,"location":"West Justice"}},{"attributes":{"name":"Susan Gutkowski","age":25,"location":"Schroederborough"}},{"attributes":{"name":"Melanie Hane","age":51,"location":"East Zackeryborough"}},{"attributes":{"name":"Joy McKenzie PhD","age":38,"location":"Port Julienhaven"}},{"attributes":{"name":"Kristy Schinner","age":59,"location":"Paucekton"}},{"attributes":{"name":"Miss Diana Kessler","age":21,"location":"Harveycester"}},{"attributes":{"name":"Shelley Halvorson","age":31,"location":"New Nonashire"}},{"attributes":{"name":"Delia Gleason","age":72,"location":"Alpharetta"}},{"attributes":{"name":"Jared Beer","age":60,"location":"Adonisworth"}},{"attributes":{"name":"Lacey Hagenes","age":39,"location":"Conroyton"}},{"attributes":{"name":"Oliver Runolfsson","age":68,"location":"Lake Yasminefort"}},{"attributes":{"name":"Silvia Heller-Kreiger","age":34,"location":"Murrieta"}},{"attributes":{"name":"Axel Koss","age":73,"location":"Port Tremayne"}},{"attributes":{"name":"Cecilia Parisian","age":42,"location":"Ocala"}},{"attributes":{"name":"Tabitha Towne","age":54,"location":"Altastad"}},{"attributes":{"name":"Ervin Gulgowski","age":18,"location":"East Felicitafield"}},{"attributes":{"name":"Nicole Kovacek III","age":21,"location":"East Amara"}},{"attributes":{"name":"Miles Swift","age":22,"location":"Port Broderick"}},{"attributes":{"name":"Dr. Garrick Nikolaus","age":34,"location":"Williamsonborough"}},{"attributes":{"name":"Anabel Labadie","age":39,"location":"South Jedidiah"}},{"attributes":{"name":"Marcella Howe","age":37,"location":"Beerberg"}},{"attributes":{"name":"Evelyn Beatty","age":77,"location":"Hauckville"}},{"attributes":{"name":"Valerie Heidenreich I","age":28,"location":"Cypress"}},{"attributes":{"name":"Susie Abshire","age":66,"location":"New Tessie"}},{"attributes":{"name":"Wilburn Flatley","age":34,"location":"East Providence"}},{"attributes":{"name":"Aron Wintheiser","age":42,"location":"North Nobleton"}},{"attributes":{"name":"Al Bergnaum","age":23,"location":"Fort Dean"}},{"attributes":{"name":"Kristen Botsford-Jerde","age":51,"location":"Chanelleworth"}},{"attributes":{"name":"Miss Glenda Okuneva","age":58,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Jeff Rippin PhD","age":69,"location":"Marysville"}},{"attributes":{"name":"Bill Schuster","age":44,"location":"Stillwater"}},{"attributes":{"name":"Rachael Bashirian","age":25,"location":"Clemmieboro"}},{"attributes":{"name":"Kelli Mertz","age":44,"location":"West Melyssaboro"}},{"attributes":{"name":"Randy Muller","age":33,"location":"Mansfield"}},{"attributes":{"name":"Maryjane Anderson-Dibbert PhD","age":18,"location":"Edina"}},{"attributes":{"name":"Jane Murazik-Turner","age":27,"location":"Paradise"}},{"attributes":{"name":"Van Brekke","age":18,"location":"Wallacehaven"}},{"attributes":{"name":"Heloise Homenick","age":23,"location":"Jayneton"}},{"attributes":{"name":"Wilma Doyle DVM","age":56,"location":"Lake Adrianna"}},{"attributes":{"name":"Xavier Ratke Jr.","age":33,"location":"Port Darrellstad"}},{"attributes":{"name":"Makayla Waters Sr.","age":22,"location":"Kennewick"}},{"attributes":{"name":"Rafaela Wilkinson","age":35,"location":"Mannport"}},{"attributes":{"name":"Colleen Corwin","age":52,"location":"Waelchiborough"}},{"attributes":{"name":"Trever Gottlieb-Kirlin","age":70,"location":"New Jeffrey"}},{"attributes":{"name":"Delphine Stoltenberg","age":21,"location":"North Wilfridfurt"}},{"attributes":{"name":"Berniece Sporer V","age":26,"location":"Tamarac"}},{"attributes":{"name":"Eino Rippin III","age":47,"location":"Maximilliaberg"}},{"attributes":{"name":"Lester Auer","age":23,"location":"Glendora"}},{"attributes":{"name":"Erling Cormier","age":78,"location":"New Fannie"}},{"attributes":{"name":"Rashawn Ward","age":31,"location":"Cambridge"}},{"attributes":{"name":"Viola Fay V","age":59,"location":"Waterloo"}},{"attributes":{"name":"Kent Cremin","age":71,"location":"Kunzehaven"}},{"attributes":{"name":"Alex Leffler","age":44,"location":"Bogisichmouth"}},{"attributes":{"name":"Harold Bradtke","age":73,"location":"Giuseppeville"}},{"attributes":{"name":"Osbaldo Brown","age":64,"location":"McClureton"}},{"attributes":{"name":"Dewitt Kris","age":43,"location":"Hegmannview"}},{"attributes":{"name":"Frances Fahey","age":80,"location":"Weston"}},{"attributes":{"name":"Mr. Kelsie Hintz","age":22,"location":"Buckcester"}},{"attributes":{"name":"Nicolette Stroman","age":23,"location":"Huntington Beach"}},{"attributes":{"name":"Abbie Torphy-Gottlieb","age":57,"location":"Lake Magdalenastad"}},{"attributes":{"name":"Angela Abbott-Harris","age":46,"location":"Heathcoteberg"}},{"attributes":{"name":"Madeline Buckridge","age":57,"location":"North Sarahview"}},{"attributes":{"name":"Doreen McClure","age":22,"location":"Nobleport"}},{"attributes":{"name":"Matt O'Conner","age":39,"location":"Vivianbury"}},{"attributes":{"name":"Bridgette Nienow","age":44,"location":"Ceceliaboro"}},{"attributes":{"name":"Johnnie McGlynn","age":33,"location":"Eugene"}},{"attributes":{"name":"Stacey Lesch","age":44,"location":"West Malliechester"}},{"attributes":{"name":"Mr. Herminio Boyer","age":63,"location":"Erie"}},{"attributes":{"name":"Rosalie Hackett","age":79,"location":"Reedbury"}},{"attributes":{"name":"Lora Yost","age":27,"location":"Bartlett"}},{"attributes":{"name":"Jermain Ruecker","age":58,"location":"North Mohamedborough"}},{"attributes":{"name":"Myrtle Cassin","age":33,"location":"Lake Emmaview"}},{"attributes":{"name":"Mr. Martin Lebsack","age":58,"location":"Fort Wellington"}},{"attributes":{"name":"Akeem Satterfield","age":65,"location":"Jettieshire"}},{"attributes":{"name":"Miss Lynn Wilderman","age":26,"location":"South Destini"}},{"attributes":{"name":"Gerald Wehner","age":49,"location":"Schmidtboro"}},{"attributes":{"name":"Francis Schowalter","age":26,"location":"Lynchburgh"}},{"attributes":{"name":"Lena Heaney","age":49,"location":"North Macktown"}},{"attributes":{"name":"Rosa Barton","age":54,"location":"Conroe"}},{"attributes":{"name":"Rashawn Borer-Glover","age":57,"location":"North Alessiaboro"}},{"attributes":{"name":"Ginger Gottlieb","age":28,"location":"San Diego"}},{"attributes":{"name":"Louise Pfeffer III","age":31,"location":"North Patriciahaven"}},{"attributes":{"name":"Miranda McLaughlin","age":30,"location":"Lake Diegoburgh"}},{"attributes":{"name":"Stella Veum-Dare","age":57,"location":"Perth Amboy"}},{"attributes":{"name":"Dusty Fay","age":51,"location":"Stellastad"}},{"attributes":{"name":"Marty Von DDS","age":62,"location":"Hampton"}},{"attributes":{"name":"Maurice Boehm","age":38,"location":"Arleneland"}},{"attributes":{"name":"Edward Legros","age":52,"location":"Fort Lamar"}},{"attributes":{"name":"Meghan Gutkowski","age":66,"location":"East Green"}},{"attributes":{"name":"Alejandra Zulauf","age":61,"location":"Schinnerbury"}},{"attributes":{"name":"Rochelle Pfeffer","age":30,"location":"Kertzmanncester"}},{"attributes":{"name":"Rubye Paucek","age":18,"location":"Kendall"}},{"attributes":{"name":"Estelle Cole Jr.","age":65,"location":"Sanford"}},{"attributes":{"name":"Don Hirthe","age":57,"location":"Daronfort"}},{"attributes":{"name":"Susan Thiel","age":49,"location":"Ferryport"}},{"attributes":{"name":"Mrs. Lindsay Bode II","age":54,"location":"Bartolettiworth"}},{"attributes":{"name":"Lee Murray","age":53,"location":"Satterfieldland"}},{"attributes":{"name":"Bobby Mann DVM","age":60,"location":"Port Lucieburgh"}},{"attributes":{"name":"Guadalupe Jast","age":30,"location":"Mozellview"}},{"attributes":{"name":"Lukas Goodwin","age":40,"location":"Roswell"}},{"attributes":{"name":"Lonny Fay","age":57,"location":"O'Fallon"}},{"attributes":{"name":"Amanda Reinger","age":76,"location":"Goodwinton"}},{"attributes":{"name":"Nellie Bartell III","age":39,"location":"Schuylerburgh"}},{"attributes":{"name":"Miss Kristine Smitham","age":26,"location":"McKenzieside"}},{"attributes":{"name":"Sarah Keeling","age":77,"location":"Hilpertstead"}},{"attributes":{"name":"Thalia Kreiger","age":46,"location":"South Gate"}},{"attributes":{"name":"Dr. Sibyl Ankunding","age":30,"location":"Garland"}},{"attributes":{"name":"Elza Heathcote","age":28,"location":"Bothell"}},{"attributes":{"name":"Alden Cartwright","age":72,"location":"North Elbert"}},{"attributes":{"name":"Opal Cremin","age":59,"location":"Hildegardport"}},{"attributes":{"name":"Glen Roberts","age":36,"location":"New Jewel"}},{"attributes":{"name":"Casimir Ward","age":24,"location":"Christiansenland"}},{"attributes":{"name":"Ernest Hammes","age":64,"location":"Bartellchester"}},{"attributes":{"name":"Katharina Morar","age":64,"location":"Jefferson City"}},{"attributes":{"name":"Graham Gibson","age":27,"location":"Lake Aron"}},{"attributes":{"name":"Krystina Cormier V","age":47,"location":"Sandy Springs"}},{"attributes":{"name":"Dr. Rick Kirlin","age":25,"location":"Mallieville"}},{"attributes":{"name":"Elbert Spencer","age":36,"location":"Quitzonbury"}},{"attributes":{"name":"Sharon Aufderhar","age":53,"location":"Lake Claymouth"}},{"attributes":{"name":"Troy Hartmann","age":53,"location":"Hamillhaven"}},{"attributes":{"name":"Elsie Keebler","age":41,"location":"Fort Rhett"}},{"attributes":{"name":"Rosalie Anderson","age":46,"location":"Lake Horacioberg"}},{"attributes":{"name":"Mose Fahey","age":33,"location":"Hahnworth"}},{"attributes":{"name":"Eulah Boyle","age":44,"location":"West Jay"}},{"attributes":{"name":"Kasey Shields","age":23,"location":"Nicolaschester"}},{"attributes":{"name":"Constance Ritchie","age":43,"location":"Abbietown"}},{"attributes":{"name":"Miss Phyllis Beahan","age":40,"location":"Fort Edport"}},{"attributes":{"name":"Darrell McCullough-Kautzer","age":20,"location":"West Lambert"}},{"attributes":{"name":"Heber Greenfelder V","age":21,"location":"Beaumont"}},{"attributes":{"name":"Marlene Zemlak","age":47,"location":"Antonettaboro"}},{"attributes":{"name":"Clara Gottlieb","age":37,"location":"Port Taraworth"}},{"attributes":{"name":"Kate Oberbrunner","age":73,"location":"El Dorado Hills"}},{"attributes":{"name":"Lorine Veum DVM","age":59,"location":"Brayanton"}},{"attributes":{"name":"Priscilla Rau","age":19,"location":"Palm Harbor"}},{"attributes":{"name":"Demarco Carter V","age":24,"location":"New Beatricefort"}},{"attributes":{"name":"Daniel Sauer","age":38,"location":"West Ewell"}},{"attributes":{"name":"Dr. Bradley Jast","age":73,"location":"Jeannestead"}},{"attributes":{"name":"Tyrone Wiza","age":40,"location":"Brekkeberg"}},{"attributes":{"name":"Evelyn Bailey","age":46,"location":"East Icie"}},{"attributes":{"name":"Caleb McLaughlin","age":59,"location":"Eau Claire"}},{"attributes":{"name":"Florence Wiegand","age":59,"location":"Port Dayne"}},{"attributes":{"name":"Jacquelyn Ratke","age":72,"location":"Benjaminworth"}},{"attributes":{"name":"Rahul Strosin","age":62,"location":"South Maxinemouth"}},{"attributes":{"name":"Christie Quitzon","age":63,"location":"Eduardoworth"}},{"attributes":{"name":"Kathryn Goyette","age":23,"location":"Cummeratacester"}},{"attributes":{"name":"Ms. Edmund Cartwright","age":21,"location":"Pueblo"}},{"attributes":{"name":"Dr. Irving Green","age":24,"location":"Botsfordstad"}},{"attributes":{"name":"Ruthe Jones","age":41,"location":"Lake Ozellaburgh"}},{"attributes":{"name":"Braulio Sipes","age":67,"location":"Troy"}},{"attributes":{"name":"Steve Abbott","age":22,"location":"Alveraside"}},{"attributes":{"name":"Alexie Jacobson IV","age":44,"location":"Lake Kasey"}},{"attributes":{"name":"Marquise Halvorson","age":52,"location":"Schinnerberg"}},{"attributes":{"name":"Madie Stark","age":63,"location":"West Stacey"}},{"attributes":{"name":"Misty Wiza","age":31,"location":"Bahringerton"}},{"attributes":{"name":"Dr. Aiyana Walker","age":34,"location":"Rodriguezworth"}},{"attributes":{"name":"Judson Larkin","age":76,"location":"West Gerryfield"}},{"attributes":{"name":"Dr. Emmanuelle Harber","age":37,"location":"Lake Mortonside"}},{"attributes":{"name":"Sheila O'Hara","age":73,"location":"West Zanderville"}},{"attributes":{"name":"Monte Hintz-Bernhard","age":20,"location":"East Coltenstad"}},{"attributes":{"name":"Janis Monahan","age":51,"location":"Collierfort"}},{"attributes":{"name":"Susan Rau","age":45,"location":"Akeemview"}},{"attributes":{"name":"Rickey Gerhold","age":63,"location":"Bossier City"}},{"attributes":{"name":"Eric Auer Jr.","age":50,"location":"Stokesstead"}},{"attributes":{"name":"Henry O'Hara Jr.","age":48,"location":"East Jerrold"}},{"attributes":{"name":"Marcella Langosh-Sipes","age":61,"location":"Davisland"}},{"attributes":{"name":"Saul Torp","age":60,"location":"Elainaport"}},{"attributes":{"name":"Rosario Walker","age":33,"location":"East Carmine"}},{"attributes":{"name":"Allen Schumm","age":26,"location":"Fort Kris"}},{"attributes":{"name":"Valerie Hegmann","age":56,"location":"Tacoma"}},{"attributes":{"name":"Wilfred Waelchi","age":68,"location":"College Station"}},{"attributes":{"name":"Mr. Leslie Morar","age":48,"location":"Schmelerville"}},{"attributes":{"name":"Mervin Wisoky-Gulgowski","age":55,"location":"East Jay"}},{"attributes":{"name":"Timothy Kunze","age":46,"location":"Barryton"}},{"attributes":{"name":"Willow Swaniawski","age":77,"location":"Sandy"}},{"attributes":{"name":"Carmelo Runolfsson MD","age":40,"location":"Port Colin"}},{"attributes":{"name":"Opal Murazik","age":25,"location":"McLaughlinfurt"}},{"attributes":{"name":"Cole Boyle I","age":28,"location":"Lake Zita"}},{"attributes":{"name":"Kristen Haley","age":77,"location":"Lake Chaseshire"}},{"attributes":{"name":"Kristin Howe","age":32,"location":"West Kadin"}},{"attributes":{"name":"Timothy Windler","age":30,"location":"South Kaseychester"}},{"attributes":{"name":"Marcel Bosco","age":27,"location":"South Asha"}},{"attributes":{"name":"Wilma Hane Sr.","age":60,"location":"Lempihaven"}},{"attributes":{"name":"Austin Welch","age":35,"location":"West Earnestcester"}},{"attributes":{"name":"Gertrude Dare","age":56,"location":"South Cheyanneton"}},{"attributes":{"name":"Kim Reinger","age":21,"location":"Lake Cathrinefield"}},{"attributes":{"name":"Glenda Strosin","age":23,"location":"Fort Flavio"}},{"attributes":{"name":"Brendon Hyatt","age":43,"location":"South Katelinfield"}},{"attributes":{"name":"Phyllis Bashirian","age":70,"location":"Littleton"}},{"attributes":{"name":"Lucas Bechtelar","age":34,"location":"Fort Urielhaven"}},{"attributes":{"name":"Ms. Sofia Altenwerth","age":32,"location":"Burdettehaven"}},{"attributes":{"name":"Mrs. Terri Hills","age":26,"location":"Hudsonberg"}},{"attributes":{"name":"Lorna Nienow","age":65,"location":"Gilesview"}},{"attributes":{"name":"Jo Schmitt","age":74,"location":"Albertaburgh"}},{"attributes":{"name":"Rosa Upton","age":23,"location":"Kerluketon"}},{"attributes":{"name":"Sylvester Torphy","age":69,"location":"South Oswaldoview"}},{"attributes":{"name":"Norman Pollich","age":54,"location":"New Eugenetown"}},{"attributes":{"name":"Lela Carter","age":62,"location":"Thompsonville"}},{"attributes":{"name":"Kelly Johns","age":77,"location":"New Dejuan"}},{"attributes":{"name":"Lynne Hyatt PhD","age":67,"location":"Lunafield"}},{"attributes":{"name":"Gina Runolfsson","age":43,"location":"South Kelley"}},{"attributes":{"name":"Liza Howell","age":35,"location":"East Faye"}},{"attributes":{"name":"Tobin Hegmann","age":54,"location":"Koelpincester"}},{"attributes":{"name":"Rita Roberts I","age":19,"location":"Aliyahshire"}},{"attributes":{"name":"Cecil Spencer","age":63,"location":"New Stewartview"}},{"attributes":{"name":"Mr. Lauren Ratke","age":37,"location":"Lake Luciano"}},{"attributes":{"name":"Miss Violet Hoppe","age":44,"location":"Nienowland"}},{"attributes":{"name":"Oliver Hamill PhD","age":47,"location":"West Lucinda"}},{"attributes":{"name":"Favian Senger","age":75,"location":"West Izaiah"}},{"attributes":{"name":"Mr. Jared Bins","age":47,"location":"Walterstad"}},{"attributes":{"name":"Marty Medhurst","age":73,"location":"North Clarkborough"}},{"attributes":{"name":"Ms. Denise Cremin","age":19,"location":"Handhaven"}},{"attributes":{"name":"Marsha Kuhic","age":43,"location":"McGlynnboro"}},{"attributes":{"name":"Evelyn Roberts","age":50,"location":"Fort Hayleyborough"}},{"attributes":{"name":"Norval Hermiston","age":62,"location":"Leilafield"}},{"attributes":{"name":"Wilson Zulauf","age":36,"location":"Devinshire"}},{"attributes":{"name":"Dr. Brett O'Keefe","age":48,"location":"South Vladimirland"}},{"attributes":{"name":"Barbara Raynor","age":75,"location":"North Tyrell"}},{"attributes":{"name":"Veda Becker","age":75,"location":"Port Jamarcus"}},{"attributes":{"name":"Leah O'Kon-Davis I","age":57,"location":"Bedford"}},{"attributes":{"name":"Vickie Kreiger Jr.","age":43,"location":"North Port"}},{"attributes":{"name":"Sheryl Mann I","age":73,"location":"Christinahaven"}},{"attributes":{"name":"Kaya Emard","age":38,"location":"Kertzmannport"}},{"attributes":{"name":"Neil Bernhard","age":79,"location":"Hemet"}},{"attributes":{"name":"Estella Sawayn DVM","age":31,"location":"Lake Kory"}},{"attributes":{"name":"Clark Dibbert","age":66,"location":"Lake Lonny"}},{"attributes":{"name":"Oma Douglas","age":57,"location":"Raleigh"}},{"attributes":{"name":"Dr. Clark Mills II","age":32,"location":"Bergstromton"}},{"attributes":{"name":"Mertie Satterfield","age":42,"location":"Claudside"}},{"attributes":{"name":"Leslie Swaniawski","age":66,"location":"Marinastad"}},{"attributes":{"name":"Ralph Wilderman","age":69,"location":"West Bradley"}},{"attributes":{"name":"Rebecca Thiel-Lockman","age":49,"location":"Windlerworth"}},{"attributes":{"name":"Inez Upton","age":57,"location":"Daynabury"}},{"attributes":{"name":"Haylie Huel","age":61,"location":"Ardellafort"}},{"attributes":{"name":"Tad Hackett","age":75,"location":"Krisview"}},{"attributes":{"name":"Ms. Reuben Cormier","age":30,"location":"Milford"}},{"attributes":{"name":"Mr. Courtney Welch","age":51,"location":"North Vladimirside"}},{"attributes":{"name":"Marcella McClure Sr.","age":25,"location":"Reading"}},{"attributes":{"name":"Teri Abernathy","age":74,"location":"Elmoreworth"}},{"attributes":{"name":"Ciara Rath","age":65,"location":"South Abdulview"}},{"attributes":{"name":"Flora Roberts V","age":27,"location":"Schulistborough"}},{"attributes":{"name":"Mabel Hermann","age":24,"location":"Gilesworth"}},{"attributes":{"name":"Geovany Stamm","age":69,"location":"Danielport"}},{"attributes":{"name":"Gilbert Kerluke","age":69,"location":"Edwardofield"}},{"attributes":{"name":"Christina Harvey","age":64,"location":"West Geoffreychester"}},{"attributes":{"name":"Isac Koepp","age":78,"location":"Beatriceburgh"}},{"attributes":{"name":"Marguerite Terry","age":44,"location":"Gerlachville"}},{"attributes":{"name":"Patricia Bartoletti","age":56,"location":"Fort Birdieton"}},{"attributes":{"name":"Phyllis Schuppe","age":60,"location":"East Lafayettefurt"}},{"attributes":{"name":"Sabryna Marvin","age":32,"location":"Grand Forks"}},{"attributes":{"name":"Dr. Domingo Dare MD","age":53,"location":"Lake Barry"}},{"attributes":{"name":"Charlene Wolf","age":46,"location":"Sanford"}},{"attributes":{"name":"Candida Toy DDS","age":29,"location":"Careystad"}},{"attributes":{"name":"Chelsea Legros DDS","age":66,"location":"Jacobsonberg"}},{"attributes":{"name":"Dean Kohler","age":65,"location":"South Lori"}},{"attributes":{"name":"Daisy Schneider III","age":36,"location":"Henderson"}},{"attributes":{"name":"Dawn Connelly","age":23,"location":"Fort Tavares"}},{"attributes":{"name":"Alfredo Kemmer","age":72,"location":"Sierra Vista"}},{"attributes":{"name":"Teresa Thiel","age":77,"location":"Sedrickton"}},{"attributes":{"name":"Billie Gutkowski","age":48,"location":"East Destinchester"}},{"attributes":{"name":"Cielo Koss","age":57,"location":"Pricefort"}},{"attributes":{"name":"Sister Sauer","age":33,"location":"Fort Lonie"}},{"attributes":{"name":"Miriam Leuschke PhD","age":39,"location":"Linden"}},{"attributes":{"name":"Kellie Zulauf","age":35,"location":"Hettingerstad"}},{"attributes":{"name":"Kayla O'Conner IV","age":24,"location":"Jacquelynfurt"}},{"attributes":{"name":"Kirk Shanahan","age":33,"location":"Charleystead"}},{"attributes":{"name":"Ansley Stehr","age":25,"location":"Austin"}},{"attributes":{"name":"Miss Bessie Johnston","age":36,"location":"Port Terrillborough"}},{"attributes":{"name":"Melanie Ondricka","age":45,"location":"North Berneice"}},{"attributes":{"name":"Melanie Gleichner","age":36,"location":"Hesselborough"}},{"attributes":{"name":"Marc Lesch","age":44,"location":"Danbury"}},{"attributes":{"name":"Darrin Gulgowski","age":49,"location":"Hamillcester"}},{"attributes":{"name":"Virgil Hand","age":76,"location":"Lake Zelda"}},{"attributes":{"name":"Hannah Wisozk","age":43,"location":"East Zakaryland"}},{"attributes":{"name":"Gregg Roob","age":62,"location":"Mishawaka"}},{"attributes":{"name":"Marielle Mann","age":36,"location":"Bahringerchester"}},{"attributes":{"name":"Sam Kassulke","age":18,"location":"Ginoworth"}},{"attributes":{"name":"Elza Mayer Sr.","age":26,"location":"Hintzfort"}},{"attributes":{"name":"Dexter Schroeder","age":20,"location":"East Ethyl"}},{"attributes":{"name":"Ms. Drake Kunze","age":19,"location":"Urbandale"}},{"attributes":{"name":"Olga Abernathy","age":65,"location":"Lake Theresa"}},{"attributes":{"name":"Angela Tremblay Sr.","age":28,"location":"New Oliver"}},{"attributes":{"name":"Neil Rice","age":54,"location":"Ondrickacester"}},{"attributes":{"name":"Ms. Margie Koelpin","age":18,"location":"Tigard"}},{"attributes":{"name":"Rickey Stracke","age":37,"location":"North Wilmer"}},{"attributes":{"name":"Jerrold Waters","age":40,"location":"Lake Janworth"}},{"attributes":{"name":"Maida Friesen","age":57,"location":"Nolanstad"}},{"attributes":{"name":"Frances Wolf-Rolfson","age":65,"location":"Monahantown"}},{"attributes":{"name":"Brannon Hirthe","age":80,"location":"Texas City"}},{"attributes":{"name":"Bret Bauch","age":56,"location":"Danielborough"}},{"attributes":{"name":"Tyree Hyatt","age":52,"location":"Plantation"}},{"attributes":{"name":"Ms. Megan Heller","age":25,"location":"Cristalshire"}},{"attributes":{"name":"Elton O'Kon MD","age":49,"location":"Albinfurt"}},{"attributes":{"name":"Miriam Huels-Windler","age":79,"location":"Port Mariloufort"}},{"attributes":{"name":"Warren Hegmann DDS","age":50,"location":"East Raymundoberg"}},{"attributes":{"name":"Calista Abbott","age":53,"location":"Port Malcolm"}},{"attributes":{"name":"Molly Maggio","age":62,"location":"Murrayland"}},{"attributes":{"name":"Debbie Cruickshank","age":77,"location":"West Covina"}},{"attributes":{"name":"Anthony Bins","age":60,"location":"Port Amandaland"}},{"attributes":{"name":"Fredrick Brown","age":36,"location":"Julianfort"}},{"attributes":{"name":"Chester Lemke","age":29,"location":"Charleston"}},{"attributes":{"name":"Willis Hamill","age":73,"location":"Rohanside"}},{"attributes":{"name":"Paris Heller","age":29,"location":"Prohaskacester"}},{"attributes":{"name":"Mrs. Shayne Beer","age":62,"location":"Predovicworth"}},{"attributes":{"name":"Ms. Yvette Blanda","age":40,"location":"Prudencechester"}},{"attributes":{"name":"Darryl Roob","age":29,"location":"Port Hailey"}},{"attributes":{"name":"Herbert Hand Sr.","age":59,"location":"Funkview"}},{"attributes":{"name":"Jana Terry","age":67,"location":"Rorystad"}},{"attributes":{"name":"Giovanni Orn","age":30,"location":"Deckowboro"}},{"attributes":{"name":"Ernestina Bode","age":61,"location":"New Brant"}},{"attributes":{"name":"Percy Hackett","age":24,"location":"Jefferson City"}},{"attributes":{"name":"Tom Stokes","age":46,"location":"Gradyworth"}},{"attributes":{"name":"Sandra Legros","age":57,"location":"Mortimerchester"}},{"attributes":{"name":"Woodrow Schiller","age":58,"location":"West Hilariochester"}},{"attributes":{"name":"Lionel Quigley","age":75,"location":"Fort Demetrius"}},{"attributes":{"name":"Nichole Dare","age":66,"location":"East Maryjane"}},{"attributes":{"name":"Amalia Hickle","age":23,"location":"Alexandreworth"}},{"attributes":{"name":"Al Pouros","age":37,"location":"Lake Arianna"}},{"attributes":{"name":"Lily Lemke","age":73,"location":"South Boydborough"}},{"attributes":{"name":"Jeff Nitzsche","age":36,"location":"Cassinworth"}},{"attributes":{"name":"Reginald Boyer","age":32,"location":"Brielletown"}},{"attributes":{"name":"Sarah Howe","age":46,"location":"West Serena"}},{"attributes":{"name":"Bernadette Fahey-Leannon","age":50,"location":"Conroyfurt"}},{"attributes":{"name":"Gina Connelly","age":31,"location":"Schulistworth"}},{"attributes":{"name":"Ms. Rosemarie Kozey","age":47,"location":"Durganland"}},{"attributes":{"name":"Syble Cassin","age":45,"location":"Arlington Heights"}},{"attributes":{"name":"Doyle Schaden","age":45,"location":"Wernerland"}},{"attributes":{"name":"Rene Leannon DDS","age":37,"location":"South Hazel"}},{"attributes":{"name":"Dr. John Quitzon","age":69,"location":"Harleyboro"}},{"attributes":{"name":"Naomi O'Kon","age":22,"location":"Keatonport"}},{"attributes":{"name":"Joy Reilly","age":60,"location":"Hankstead"}},{"attributes":{"name":"Brionna Paucek-Kilback","age":68,"location":"Keenantown"}},{"attributes":{"name":"Yvonne Hamill","age":27,"location":"Lake Conniebury"}},{"attributes":{"name":"Matt Lueilwitz","age":56,"location":"Faheyfield"}},{"attributes":{"name":"Essie Ferry-Breitenberg","age":76,"location":"O'Keefeberg"}},{"attributes":{"name":"Rupert Doyle","age":22,"location":"Mortonmouth"}},{"attributes":{"name":"Alton Legros","age":64,"location":"Stokesport"}},{"attributes":{"name":"Elbert Zemlak","age":76,"location":"North Hildegardburgh"}},{"attributes":{"name":"Rex Rowe","age":46,"location":"Port Carmelaburgh"}},{"attributes":{"name":"Sadye Hamill-Gulgowski","age":67,"location":"Millcreek"}},{"attributes":{"name":"Vesta Bednar","age":62,"location":"Huntersville"}},{"attributes":{"name":"Frederick Barrows-McDermott","age":34,"location":"North Kassandraworth"}},{"attributes":{"name":"Alma Lakin","age":49,"location":"Reingercester"}},{"attributes":{"name":"Laurine Bergstrom","age":75,"location":"Hamillburgh"}},{"attributes":{"name":"Shannon Sauer","age":78,"location":"Brauliostad"}},{"attributes":{"name":"Luisa Bruen","age":64,"location":"South Karleyboro"}},{"attributes":{"name":"Dr. Morris Funk","age":70,"location":"Port Bret"}},{"attributes":{"name":"Idell Quitzon","age":49,"location":"West Mittieburgh"}},{"attributes":{"name":"Carol Schulist","age":35,"location":"West Constantinland"}},{"attributes":{"name":"Miss Kurt Homenick","age":53,"location":"Lee's Summit"}},{"attributes":{"name":"Emma Waters","age":46,"location":"Sanfordfurt"}},{"attributes":{"name":"Malvina Leuschke","age":74,"location":"New Audie"}},{"attributes":{"name":"Ruth Erdman","age":45,"location":"South Janboro"}},{"attributes":{"name":"Miss Faye Boehm Sr.","age":42,"location":"Delano"}},{"attributes":{"name":"Madyson Thompson-Ernser","age":77,"location":"Dorotheaview"}},{"attributes":{"name":"Matilda Waelchi DDS","age":59,"location":"West Felipe"}},{"attributes":{"name":"Walker Parker Jr.","age":46,"location":"West Violetteboro"}},{"attributes":{"name":"Dr. Clara Carter","age":50,"location":"New Aiyanaland"}},{"attributes":{"name":"Annamarie Krajcik","age":18,"location":"Port Berniece"}},{"attributes":{"name":"Michelle Bernhard Sr.","age":71,"location":"Collierfield"}},{"attributes":{"name":"Toni Nienow","age":26,"location":"Pontiac"}},{"attributes":{"name":"Leslie Stiedemann","age":22,"location":"West Remingtonborough"}},{"attributes":{"name":"Marion Beier-Predovic","age":35,"location":"Yundtchester"}},{"attributes":{"name":"Michele Langworth","age":64,"location":"Tadland"}},{"attributes":{"name":"Garrett Kuphal","age":66,"location":"Tarynborough"}},{"attributes":{"name":"Stewart Metz","age":37,"location":"Feilview"}},{"attributes":{"name":"Maximillia Rodriguez","age":37,"location":"North Lillyberg"}},{"attributes":{"name":"Courtney Jacobi","age":25,"location":"Lake Marc"}},{"attributes":{"name":"Nella Marks","age":72,"location":"Fort Sydnieside"}},{"attributes":{"name":"Adrienne Wisozk","age":41,"location":"Myrtisport"}},{"attributes":{"name":"Joann Legros DDS","age":73,"location":"Franeckiville"}},{"attributes":{"name":"Dominick Schultz","age":18,"location":"North Zariaburgh"}},{"attributes":{"name":"Arianna Runolfsdottir","age":40,"location":"Rahsaanstad"}},{"attributes":{"name":"Rosemary Daugherty I","age":29,"location":"Schambergermouth"}},{"attributes":{"name":"Adam Schuster","age":24,"location":"Eastvale"}},{"attributes":{"name":"Dean Sporer","age":56,"location":"Huelhaven"}},{"attributes":{"name":"Roderick Emard","age":53,"location":"East Gerald"}},{"attributes":{"name":"Theodore Leuschke","age":32,"location":"Lake Crawford"}},{"attributes":{"name":"Noel Christiansen","age":58,"location":"Jasminview"}},{"attributes":{"name":"Roy Batz","age":57,"location":"Collinsfort"}},{"attributes":{"name":"Delphia Kihn","age":23,"location":"Port Dorthy"}},{"attributes":{"name":"Freddie Mann I","age":26,"location":"Murazikside"}},{"attributes":{"name":"Jessie Boehm","age":29,"location":"Fort Marvinport"}},{"attributes":{"name":"Norris Bashirian","age":64,"location":"East Katrina"}},{"attributes":{"name":"Rhoda Powlowski","age":50,"location":"Doylefield"}},{"attributes":{"name":"Zachery Kuvalis","age":72,"location":"Hillsboro"}},{"attributes":{"name":"Troy Leuschke","age":58,"location":"Abbottton"}},{"attributes":{"name":"Jasmine Becker","age":72,"location":"Lake Clydeland"}},{"attributes":{"name":"Layla Windler PhD","age":25,"location":"Abdullahboro"}},{"attributes":{"name":"Sammy Romaguera-King","age":48,"location":"New Mariah"}},{"attributes":{"name":"Cooper Maggio","age":40,"location":"Jackson"}},{"attributes":{"name":"Lamont Berge","age":62,"location":"Rosstown"}},{"attributes":{"name":"Keeley Gerlach","age":28,"location":"Rockville"}},{"attributes":{"name":"Shakira Rath","age":23,"location":"Floridamouth"}},{"attributes":{"name":"Tommy Denesik","age":34,"location":"Marcelleland"}},{"attributes":{"name":"Leigh Hermiston-Hegmann","age":43,"location":"Hammesbury"}},{"attributes":{"name":"Dr. Camden Nicolas","age":59,"location":"East Nayelifort"}},{"attributes":{"name":"Art Muller","age":49,"location":"South Meggie"}},{"attributes":{"name":"Kelly Marvin","age":47,"location":"O'Fallon"}},{"attributes":{"name":"Lyle Block III","age":71,"location":"Dickinsonbury"}},{"attributes":{"name":"Lukas Erdman","age":40,"location":"Stiedemannville"}},{"attributes":{"name":"Mr. Concepcion Crooks","age":24,"location":"Dachboro"}},{"attributes":{"name":"Thora Pollich-Collier","age":80,"location":"Brakusfield"}},{"attributes":{"name":"Susana Nolan","age":71,"location":"Chicopee"}},{"attributes":{"name":"Michele Bergnaum","age":57,"location":"South Roscoecester"}},{"attributes":{"name":"Maida McKenzie","age":77,"location":"Fort Eriberto"}},{"attributes":{"name":"Dr. Marley Zemlak","age":26,"location":"Fort Siennahaven"}},{"attributes":{"name":"Howard Krajcik","age":68,"location":"Billieboro"}},{"attributes":{"name":"Lois Baumbach","age":46,"location":"East Roselyn"}},{"attributes":{"name":"Kari White","age":68,"location":"Beattyberg"}},{"attributes":{"name":"Ocie Emmerich","age":55,"location":"Magnolialand"}},{"attributes":{"name":"Daryl Wolf","age":29,"location":"Bartellfield"}},{"attributes":{"name":"Howard Tremblay","age":36,"location":"Gerholdmouth"}},{"attributes":{"name":"Steve Roob","age":73,"location":"North Shakiracester"}},{"attributes":{"name":"Dameon White Jr.","age":57,"location":"Pearl City"}},{"attributes":{"name":"Estelle Friesen","age":27,"location":"Cummingsshire"}},{"attributes":{"name":"Jerald Bogan","age":68,"location":"Lavonnetown"}},{"attributes":{"name":"Velma Douglas","age":31,"location":"Port Billie"}},{"attributes":{"name":"Alexandro Marvin","age":55,"location":"Emmieview"}},{"attributes":{"name":"Lula Lebsack","age":18,"location":"Port Rose"}},{"attributes":{"name":"Miss Leslie Bradtke","age":64,"location":"Bauchcester"}},{"attributes":{"name":"Russel Franey","age":45,"location":"Rockwall"}},{"attributes":{"name":"Alaina Hermiston","age":22,"location":"Gastonia"}},{"attributes":{"name":"Armani Fisher","age":32,"location":"West Jaedenbury"}},{"attributes":{"name":"Mrs. Arlie Cassin","age":34,"location":"Scotport"}},{"attributes":{"name":"Brady Kshlerin","age":54,"location":"Burnsville"}},{"attributes":{"name":"Marjorie Casper","age":78,"location":"Hermanfield"}},{"attributes":{"name":"Eliezer Labadie","age":79,"location":"Macejkovicmouth"}},{"attributes":{"name":"Ebba Ratke","age":69,"location":"Texas City"}},{"attributes":{"name":"Sonja Adams","age":42,"location":"Hawthorne"}},{"attributes":{"name":"Mrs. Francisca Yundt","age":26,"location":"Nikolausfurt"}},{"attributes":{"name":"Bertha Kassulke","age":35,"location":"Attleboro"}},{"attributes":{"name":"Mrs. Terry Schumm","age":38,"location":"Yuba City"}},{"attributes":{"name":"Geneva Keebler","age":37,"location":"West Mireille"}},{"attributes":{"name":"Houston Harvey","age":63,"location":"North Savannahview"}},{"attributes":{"name":"Dr. Lester Koelpin","age":65,"location":"Spencerworth"}},{"attributes":{"name":"Aubrey Brekke","age":26,"location":"Amirastead"}},{"attributes":{"name":"Betsy Connelly","age":39,"location":"Howeville"}},{"attributes":{"name":"Margie Breitenberg","age":49,"location":"Myrtisborough"}},{"attributes":{"name":"Oscar Kemmer","age":34,"location":"Reno"}},{"attributes":{"name":"Macie DuBuque","age":69,"location":"New Jamilchester"}},{"attributes":{"name":"Wade Durgan","age":20,"location":"Gradychester"}},{"attributes":{"name":"Erick Von","age":38,"location":"Angusberg"}},{"attributes":{"name":"Mae Hermiston","age":79,"location":"East Sydneefurt"}},{"attributes":{"name":"Vicki Hane-Wilderman","age":78,"location":"Middletown"}},{"attributes":{"name":"Lizeth Blanda","age":74,"location":"Beierborough"}},{"attributes":{"name":"Judson Toy","age":27,"location":"Baumbachfield"}},{"attributes":{"name":"Noel Boyle","age":35,"location":"Ziemecester"}},{"attributes":{"name":"Elmore Pollich DDS","age":53,"location":"Salina"}},{"attributes":{"name":"Freda Cole","age":35,"location":"Zemlakville"}},{"attributes":{"name":"Torrey McCullough MD","age":34,"location":"Lake Leilashire"}},{"attributes":{"name":"Lilian Kautzer","age":56,"location":"North Lisette"}},{"attributes":{"name":"Lillian Mitchell","age":66,"location":"Kokomo"}},{"attributes":{"name":"Jake Rosenbaum","age":18,"location":"O'Connellfurt"}},{"attributes":{"name":"Donnie Kessler","age":56,"location":"Shyanntown"}},{"attributes":{"name":"Albert Kohler","age":67,"location":"Bergestad"}},{"attributes":{"name":"Brenda Blick","age":40,"location":"Arcadia"}},{"attributes":{"name":"Taylor Nienow","age":59,"location":"Port Josefina"}},{"attributes":{"name":"Mrs. Rhonda Bergstrom","age":18,"location":"North Colbyboro"}},{"attributes":{"name":"Cassandre Kovacek","age":74,"location":"East Terrence"}},{"attributes":{"name":"Marie Legros","age":65,"location":"New Lois"}},{"attributes":{"name":"Raven Skiles","age":61,"location":"Gussieport"}},{"attributes":{"name":"Eleanor Will","age":54,"location":"Lake Alfredstad"}},{"attributes":{"name":"Wesley Satterfield","age":71,"location":"East Katrine"}},{"attributes":{"name":"Sammy Larkin","age":71,"location":"Fayfurt"}},{"attributes":{"name":"April Monahan","age":47,"location":"Ankundingcester"}},{"attributes":{"name":"Emily Wisoky","age":61,"location":"Port Faustinohaven"}},{"attributes":{"name":"Edmund Stoltenberg","age":62,"location":"New Josefachester"}},{"attributes":{"name":"Charles Haag II","age":42,"location":"Hipolitoton"}},{"attributes":{"name":"Clementine Bednar","age":35,"location":"New Romaine"}},{"attributes":{"name":"Marcus Lebsack","age":39,"location":"Port Nettie"}},{"attributes":{"name":"Brooke Murray","age":23,"location":"Taylor"}},{"attributes":{"name":"Dr. Myron Christiansen","age":30,"location":"Gunnerstead"}},{"attributes":{"name":"Angel Parker II","age":57,"location":"Connellyhaven"}},{"attributes":{"name":"Miss Suzanne Dicki","age":47,"location":"Lake Madisenboro"}},{"attributes":{"name":"Cecile Kutch","age":73,"location":"Eagan"}},{"attributes":{"name":"Darien Muller","age":52,"location":"Elisebury"}},{"attributes":{"name":"Janice Zulauf I","age":40,"location":"Metzboro"}},{"attributes":{"name":"Nelson Dickens-Cremin","age":53,"location":"Novellaboro"}},{"attributes":{"name":"Heidi Stanton","age":76,"location":"Powlowskiside"}},{"attributes":{"name":"Cathy Lubowitz","age":74,"location":"East Dina"}},{"attributes":{"name":"Marie Keeling","age":53,"location":"New Sallie"}},{"attributes":{"name":"Brenda Berge","age":80,"location":"Bryan"}},{"attributes":{"name":"Mrs. Jenny Huels","age":25,"location":"Franeckicester"}},{"attributes":{"name":"Gabrielle Schaden","age":69,"location":"Marksburgh"}},{"attributes":{"name":"Tonya Gusikowski","age":35,"location":"Doral"}},{"attributes":{"name":"Elisa Senger","age":63,"location":"Kesslerside"}},{"attributes":{"name":"Karen Thiel","age":45,"location":"Collinschester"}},{"attributes":{"name":"Ms. Angel Brekke","age":80,"location":"Abilene"}},{"attributes":{"name":"Willie Harvey","age":32,"location":"Connellyshire"}},{"attributes":{"name":"Watson Bradtke","age":39,"location":"West Feltonfort"}},{"attributes":{"name":"Ms. Destiny Nikolaus","age":64,"location":"Vanceton"}},{"attributes":{"name":"Magnus Schowalter","age":29,"location":"Soledadcester"}},{"attributes":{"name":"Kristina Tromp","age":66,"location":"Wellington"}},{"attributes":{"name":"Ruth Jones","age":45,"location":"Port Hazelstead"}},{"attributes":{"name":"Frankie Terry","age":60,"location":"Port Adalberto"}},{"attributes":{"name":"Ms. Rita Wyman","age":37,"location":"South Ruthiebury"}},{"attributes":{"name":"Jailyn Zemlak","age":43,"location":"Orrinfurt"}},{"attributes":{"name":"Minnie Hickle","age":24,"location":"Cummingsboro"}},{"attributes":{"name":"Francis Mills","age":80,"location":"East Sigurdfurt"}},{"attributes":{"name":"Beatrice Mraz","age":65,"location":"Robelhaven"}},{"attributes":{"name":"Patty Reichert","age":64,"location":"Quincy"}},{"attributes":{"name":"Ms. Vernie Kuhic","age":21,"location":"West Wilfredo"}},{"attributes":{"name":"Ms. Santa Waters","age":57,"location":"Bergnaumfurt"}},{"attributes":{"name":"Elta Friesen-Murphy","age":48,"location":"Lake Alexandrostead"}},{"attributes":{"name":"Douglas Auer PhD","age":43,"location":"Weissnatmouth"}},{"attributes":{"name":"Maxine Crooks DDS","age":45,"location":"New Demetrius"}},{"attributes":{"name":"Roman Nolan","age":73,"location":"West Karenboro"}},{"attributes":{"name":"Ms. Enid Abbott","age":59,"location":"Fort Genesisfort"}},{"attributes":{"name":"Joyce Hintz DVM","age":18,"location":"East Darrionshire"}},{"attributes":{"name":"Reginald Vandervort","age":69,"location":"South Kierahaven"}},{"attributes":{"name":"Elvera Tillman","age":37,"location":"Windlertown"}},{"attributes":{"name":"Ramiro Spinka","age":18,"location":"South Chester"}},{"attributes":{"name":"Jerald Johns","age":55,"location":"West Sally"}},{"attributes":{"name":"Mr. Rene Bauch","age":73,"location":"Mauriceton"}},{"attributes":{"name":"Luke Brakus","age":36,"location":"Port Martinaborough"}},{"attributes":{"name":"Parker Kertzmann","age":63,"location":"West Carlie"}},{"attributes":{"name":"Sonia Baumbach","age":21,"location":"South Rowancester"}},{"attributes":{"name":"Lana Beahan","age":21,"location":"New Jammie"}},{"attributes":{"name":"Leatha Christiansen","age":42,"location":"West Chanceside"}},{"attributes":{"name":"Judy Predovic-Thompson","age":73,"location":"Madera"}},{"attributes":{"name":"Ashley Swift","age":35,"location":"Stockton"}},{"attributes":{"name":"Karen Gibson","age":30,"location":"East Honolulu"}},{"attributes":{"name":"Maximillian McLaughlin","age":41,"location":"Fort Margretville"}},{"attributes":{"name":"Lela Raynor","age":38,"location":"Gorczanyboro"}},{"attributes":{"name":"Larissa McGlynn","age":31,"location":"Marilyneville"}},{"attributes":{"name":"Ross Hoeger","age":45,"location":"Port Bridgetteville"}},{"attributes":{"name":"Jeannie Christiansen","age":34,"location":"East Reese"}},{"attributes":{"name":"Colten Rempel I","age":31,"location":"North Cicerofield"}},{"attributes":{"name":"Cedric Lind","age":46,"location":"Darienshire"}},{"attributes":{"name":"Myron Harvey","age":49,"location":"East Cleorabury"}},{"attributes":{"name":"Melba Cassin","age":30,"location":"East Katrine"}},{"attributes":{"name":"Peggie D'Amore PhD","age":60,"location":"North Patsy"}},{"attributes":{"name":"Nora Wuckert","age":31,"location":"North Miami"}},{"attributes":{"name":"Margarett Brown","age":61,"location":"East Kamryntown"}},{"attributes":{"name":"Cecilia Luettgen","age":73,"location":"Westland"}},{"attributes":{"name":"Jesus Kozey","age":59,"location":"Swaniawskistad"}},{"attributes":{"name":"Terry Konopelski-Macejkovic","age":22,"location":"Donaldshire"}},{"attributes":{"name":"Lucy Rosenbaum","age":30,"location":"East Arianeside"}},{"attributes":{"name":"Dr. Kaylie Morissette","age":80,"location":"Lake Jaylantown"}},{"attributes":{"name":"Sadie Torp","age":78,"location":"Millercester"}},{"attributes":{"name":"Gary Legros","age":51,"location":"Princestad"}},{"attributes":{"name":"Claudia Cormier","age":29,"location":"Lake Hellen"}},{"attributes":{"name":"Cristal Kunze","age":30,"location":"New Antonetta"}},{"attributes":{"name":"Ruthe Carroll","age":29,"location":"Ratkeberg"}},{"attributes":{"name":"Jaida Crona III","age":18,"location":"Krisberg"}},{"attributes":{"name":"Sonya Boyer","age":79,"location":"Buffalo"}},{"attributes":{"name":"Wilbur Breitenberg","age":57,"location":"Reesechester"}},{"attributes":{"name":"Misty Spencer","age":77,"location":"South Vivien"}},{"attributes":{"name":"Randy Lowe MD","age":20,"location":"McCulloughville"}},{"attributes":{"name":"Lonie Bergnaum","age":50,"location":"Ethylboro"}},{"attributes":{"name":"Anjali Cronin","age":67,"location":"Port Orion"}},{"attributes":{"name":"Paulette Wehner","age":37,"location":"Port Addisoncester"}},{"attributes":{"name":"Miranda Smitham DVM","age":55,"location":"Fort Gina"}},{"attributes":{"name":"Bridget Mitchell","age":49,"location":"Baileyfort"}},{"attributes":{"name":"Freddie Johnson","age":46,"location":"Port Willie"}},{"attributes":{"name":"Tate Ullrich DDS","age":33,"location":"Stoltenbergfurt"}},{"attributes":{"name":"Raquel Murazik IV","age":62,"location":"Fort Kipstad"}},{"attributes":{"name":"Ramon Kozey","age":44,"location":"New Dellstad"}},{"attributes":{"name":"Todd Spinka","age":31,"location":"West Christyton"}},{"attributes":{"name":"Toby Gerhold","age":30,"location":"Fort Harvey"}},{"attributes":{"name":"Mara Cormier","age":25,"location":"Fort Minnie"}},{"attributes":{"name":"Rhett Stark","age":53,"location":"Hacketthaven"}},{"attributes":{"name":"Rudy Schuppe","age":23,"location":"Marquardthaven"}},{"attributes":{"name":"Ralph Balistreri","age":61,"location":"West Janiya"}},{"attributes":{"name":"Mrs. Billy Lindgren","age":51,"location":"Bellashire"}},{"attributes":{"name":"Anita Glover","age":80,"location":"East Fosterport"}},{"attributes":{"name":"Irving VonRueden","age":67,"location":"Fort Neldashire"}},{"attributes":{"name":"Abel Jacobs","age":62,"location":"Prohaskabury"}},{"attributes":{"name":"Lucia Kiehn","age":66,"location":"Port Brigitte"}},{"attributes":{"name":"Luella Price","age":25,"location":"Encinitas"}},{"attributes":{"name":"Joann Kling","age":79,"location":"Fort Mekhi"}},{"attributes":{"name":"Jeramy McGlynn","age":69,"location":"West Amani"}},{"attributes":{"name":"Tricia Purdy","age":52,"location":"Colleenstad"}},{"attributes":{"name":"Freddie Stoltenberg","age":34,"location":"North Nayeliburgh"}},{"attributes":{"name":"Jamal Rolfson","age":21,"location":"West Hartford"}},{"attributes":{"name":"Bart Lesch","age":73,"location":"Hutchinson"}},{"attributes":{"name":"Soledad Lehner","age":62,"location":"Elizabeth"}},{"attributes":{"name":"Mamie Hilll","age":55,"location":"Avachester"}},{"attributes":{"name":"Alfredo Kemmer III","age":27,"location":"Fort Art"}},{"attributes":{"name":"Timmothy Ernser","age":67,"location":"Funkworth"}},{"attributes":{"name":"Aubree Gleason","age":34,"location":"Smithtown"}},{"attributes":{"name":"Jeremy Okuneva","age":45,"location":"New Scotstead"}},{"attributes":{"name":"Joan Dooley","age":33,"location":"Fort Sandy"}},{"attributes":{"name":"Dr. Jewell Block","age":70,"location":"North Fatima"}},{"attributes":{"name":"Gerard McCullough","age":67,"location":"Danbury"}},{"attributes":{"name":"Melisa Wiza","age":78,"location":"Yasmeenborough"}},{"attributes":{"name":"Emanuel Yost","age":71,"location":"Metzberg"}},{"attributes":{"name":"Holly Reynolds","age":70,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Hope Reichert DDS","age":68,"location":"East Collinton"}},{"attributes":{"name":"Nadine Marks","age":21,"location":"Farmington"}},{"attributes":{"name":"Alonzo Little","age":47,"location":"West Estherhaven"}},{"attributes":{"name":"Winifred Hilpert","age":41,"location":"Grand Junction"}},{"attributes":{"name":"Izabella Stracke","age":46,"location":"Amyaburgh"}},{"attributes":{"name":"Dr. Bethany Trantow","age":60,"location":"North Emmaleeport"}},{"attributes":{"name":"Hattie Crona","age":31,"location":"South Ilastad"}},{"attributes":{"name":"Dwight Sipes","age":40,"location":"New Ryleeville"}},{"attributes":{"name":"Johnathan Kiehn","age":29,"location":"Gulfport"}},{"attributes":{"name":"Toni Tremblay","age":46,"location":"Spencerland"}},{"attributes":{"name":"Courtney Romaguera","age":69,"location":"North Cade"}},{"attributes":{"name":"Dr. Emmalee Hamill","age":61,"location":"Hayesfort"}},{"attributes":{"name":"Harmony Dooley","age":32,"location":"Runolfssonfort"}},{"attributes":{"name":"Adolph McClure II","age":37,"location":"West Bennettchester"}},{"attributes":{"name":"Mrs. Linda Cormier","age":76,"location":"Kalamazoo"}},{"attributes":{"name":"Dan Pagac I","age":19,"location":"Des Moines"}},{"attributes":{"name":"Wilbert Wunsch","age":60,"location":"North Bethesda"}},{"attributes":{"name":"Ernesto Ratke","age":47,"location":"Skilesside"}},{"attributes":{"name":"Hellen Dicki","age":47,"location":"Fort Jonathan"}},{"attributes":{"name":"Hyman Predovic","age":50,"location":"Morissetteshire"}},{"attributes":{"name":"Mrs. Isabel Swift","age":48,"location":"Maximilliastad"}},{"attributes":{"name":"Louis Cartwright","age":78,"location":"Delray Beach"}},{"attributes":{"name":"Ms. Cassandra Stehr","age":74,"location":"East Albertha"}},{"attributes":{"name":"Enid West","age":67,"location":"Karenworth"}},{"attributes":{"name":"Harry Kohler","age":27,"location":"Nyahbury"}},{"attributes":{"name":"Emily McCullough","age":42,"location":"Fort Rogelioshire"}},{"attributes":{"name":"Tianna Hudson","age":44,"location":"St. Petersburg"}},{"attributes":{"name":"Dennis Durgan","age":22,"location":"Minot"}},{"attributes":{"name":"Ms. Kristi Hilpert Jr.","age":59,"location":"Kettering"}},{"attributes":{"name":"Kayla Stracke","age":68,"location":"East Crystelcester"}},{"attributes":{"name":"Susie Schiller","age":27,"location":"New Aubree"}},{"attributes":{"name":"Miss Howard Dibbert","age":20,"location":"Port Erynton"}},{"attributes":{"name":"Dasia Ullrich","age":73,"location":"Hesselstad"}},{"attributes":{"name":"Anita Kutch","age":61,"location":"Christaworth"}},{"attributes":{"name":"Wilfred Sawayn","age":23,"location":"South Devynworth"}},{"attributes":{"name":"Lora Pouros","age":50,"location":"Coletown"}},{"attributes":{"name":"Dewey Towne","age":46,"location":"Weberborough"}},{"attributes":{"name":"Lindsay Kris","age":60,"location":"West Ardenfort"}},{"attributes":{"name":"Milton Stehr","age":37,"location":"Port Jalynstad"}},{"attributes":{"name":"Jasper Dooley","age":44,"location":"Hampton"}},{"attributes":{"name":"Kira Bosco III","age":74,"location":"Port Aryannashire"}},{"attributes":{"name":"Kari Berge","age":54,"location":"New Estelle"}},{"attributes":{"name":"Dr. Danika Walker V","age":52,"location":"New Arvelstead"}},{"attributes":{"name":"Katherine Swaniawski","age":46,"location":"Lake Russell"}},{"attributes":{"name":"Kim Schowalter","age":63,"location":"Port Lailaville"}},{"attributes":{"name":"Jaime Schowalter III","age":23,"location":"New Lindseyboro"}},{"attributes":{"name":"Nannie West Jr.","age":20,"location":"Runolfssonton"}},{"attributes":{"name":"Jessica Dicki","age":49,"location":"Okunevachester"}},{"attributes":{"name":"Myrtice McClure","age":58,"location":"Lake Daron"}},{"attributes":{"name":"Brett Schowalter Jr.","age":62,"location":"Tacoma"}},{"attributes":{"name":"Alfred Hoeger","age":76,"location":"Fort Oral"}},{"attributes":{"name":"Katie Mills-Lehner","age":36,"location":"Ornstead"}},{"attributes":{"name":"Allison McClure","age":58,"location":"Kirkside"}},{"attributes":{"name":"Ansley Zieme","age":80,"location":"McDermottfield"}},{"attributes":{"name":"Urban Tromp","age":57,"location":"Bountiful"}},{"attributes":{"name":"Dawn O'Connell","age":21,"location":"Halvorsontown"}},{"attributes":{"name":"Olivia Weimann","age":43,"location":"Murphytown"}},{"attributes":{"name":"Dr. Kris Dare","age":43,"location":"Baltimore"}},{"attributes":{"name":"Mr. Theodore Johns","age":51,"location":"Mitchellcester"}},{"attributes":{"name":"Carmen Jacobs","age":79,"location":"West Serena"}},{"attributes":{"name":"Sherri Pouros","age":61,"location":"Fort Annamarieview"}},{"attributes":{"name":"Hershel Crooks","age":72,"location":"Eliport"}},{"attributes":{"name":"Cleo Herman","age":54,"location":"Fort Emily"}},{"attributes":{"name":"Alex Rosenbaum","age":47,"location":"Maximillianburgh"}},{"attributes":{"name":"Kara Smitham","age":51,"location":"Meaganstead"}},{"attributes":{"name":"Damian Anderson II","age":37,"location":"Lake Kaitlinstead"}},{"attributes":{"name":"Jacquelyn Glover","age":37,"location":"Lake Darrionview"}},{"attributes":{"name":"Jordon Dare","age":23,"location":"Rogeliocester"}},{"attributes":{"name":"Vito Bergstrom","age":26,"location":"Manteville"}},{"attributes":{"name":"Augustus Wiegand","age":72,"location":"Herminiofort"}},{"attributes":{"name":"Libbie Zboncak","age":79,"location":"Millsburgh"}},{"attributes":{"name":"Wesley Okuneva","age":79,"location":"South Nicholascester"}},{"attributes":{"name":"Nicklaus Stark","age":46,"location":"South Lou"}},{"attributes":{"name":"Charlotte Legros","age":30,"location":"East Melvina"}},{"attributes":{"name":"Jaylen Schultz-Schaden","age":52,"location":"East Cale"}},{"attributes":{"name":"Rick Lynch","age":51,"location":"West Alysonmouth"}},{"attributes":{"name":"Tim Walter","age":59,"location":"West Davonshire"}},{"attributes":{"name":"Willie Kshlerin PhD","age":66,"location":"West Elliot"}},{"attributes":{"name":"Irving Greenfelder","age":40,"location":"Boylestad"}},{"attributes":{"name":"Gregg McDermott","age":25,"location":"North Ricardomouth"}},{"attributes":{"name":"Jailyn Torp","age":62,"location":"Temple"}},{"attributes":{"name":"Dr. Glen Cronin","age":30,"location":"Swaniawskistad"}},{"attributes":{"name":"Eleazar Ferry","age":36,"location":"New Arden"}},{"attributes":{"name":"Dr. Rudy McCullough","age":25,"location":"Hauckville"}},{"attributes":{"name":"Dr. Crystel Lowe","age":43,"location":"Alexiston"}},{"attributes":{"name":"Arielle Wiegand","age":62,"location":"Delphinetown"}},{"attributes":{"name":"Ora Legros","age":25,"location":"West Ashtyn"}},{"attributes":{"name":"Monique Larson","age":39,"location":"Lake Walton"}},{"attributes":{"name":"Wallace Bechtelar","age":52,"location":"Port Jairoton"}},{"attributes":{"name":"Ursula Zieme","age":57,"location":"North Bonnie"}},{"attributes":{"name":"Ramon Stamm","age":72,"location":"Mitchellboro"}},{"attributes":{"name":"Margaret Muller","age":47,"location":"Hilllview"}},{"attributes":{"name":"Luther Mitchell V","age":36,"location":"Wolfffort"}},{"attributes":{"name":"Juana Reichel","age":66,"location":"Minneapolis"}},{"attributes":{"name":"Josefina Lebsack","age":40,"location":"Rockville"}},{"attributes":{"name":"Kellie Stanton","age":69,"location":"Paucekmouth"}},{"attributes":{"name":"Sylvester Halvorson","age":37,"location":"Lake Mireya"}},{"attributes":{"name":"Antonio Hahn","age":49,"location":"South Brionnafort"}},{"attributes":{"name":"Denis Mann","age":29,"location":"Lake Marshallside"}},{"attributes":{"name":"Sabrina Schmitt Jr.","age":79,"location":"North Tessie"}},{"attributes":{"name":"Ralph Renner","age":53,"location":"Murphyburgh"}},{"attributes":{"name":"Jim Hermann","age":76,"location":"El Centro"}},{"attributes":{"name":"Eldon Rath V","age":60,"location":"Glendahaven"}},{"attributes":{"name":"Rita Lueilwitz","age":56,"location":"Lauderhill"}},{"attributes":{"name":"Justice McClure","age":21,"location":"Blandafield"}},{"attributes":{"name":"Mrs. Angela Lind","age":42,"location":"Lake Hosea"}},{"attributes":{"name":"Shannon Herman","age":30,"location":"Karenhaven"}},{"attributes":{"name":"Bradly Auer PhD","age":23,"location":"Dorotheaville"}},{"attributes":{"name":"Marlin Brakus Jr.","age":64,"location":"Harberland"}},{"attributes":{"name":"Miss Vickie Huels","age":35,"location":"Tillmanstad"}},{"attributes":{"name":"Krystal Blick","age":57,"location":"Port Ole"}},{"attributes":{"name":"Eloy Koch","age":34,"location":"Jersey City"}},{"attributes":{"name":"Elinore Hahn","age":20,"location":"Thornton"}},{"attributes":{"name":"Blake Zulauf","age":40,"location":"Lake Dwight"}},{"attributes":{"name":"Dr. Alysson Stiedemann","age":34,"location":"Murrayland"}},{"attributes":{"name":"Leonor Pfeffer-Heaney","age":38,"location":"Ameliatown"}},{"attributes":{"name":"Debbie Bruen IV","age":31,"location":"Osinskibury"}},{"attributes":{"name":"Amos Towne","age":56,"location":"South Macie"}},{"attributes":{"name":"Lewis Stokes","age":19,"location":"Leannastad"}},{"attributes":{"name":"Delia Jacobi III","age":30,"location":"Walnut Creek"}},{"attributes":{"name":"Marco Towne","age":70,"location":"Delphineside"}},{"attributes":{"name":"Alma Collins DVM","age":36,"location":"North Adeleville"}},{"attributes":{"name":"Isidro Kuhic","age":65,"location":"Doloresfort"}},{"attributes":{"name":"Gayle Russel","age":20,"location":"Fort Annabelshire"}},{"attributes":{"name":"Zita Emard","age":48,"location":"Raleigh"}},{"attributes":{"name":"Verla Robel","age":25,"location":"Manchester"}},{"attributes":{"name":"Peter Cassin","age":54,"location":"Estrellamouth"}},{"attributes":{"name":"Joan Schamberger","age":54,"location":"West Piper"}},{"attributes":{"name":"Dr. Abraham Bernier","age":74,"location":"Carolina"}},{"attributes":{"name":"Stone Becker","age":25,"location":"Port Jenningsstad"}},{"attributes":{"name":"Elnora Bednar","age":67,"location":"Lloydhaven"}},{"attributes":{"name":"Elmer Bartell","age":77,"location":"Laurynhaven"}},{"attributes":{"name":"Emanuel Kassulke","age":72,"location":"Schuppecester"}},{"attributes":{"name":"Kenneth Abshire","age":29,"location":"Sofiaburgh"}},{"attributes":{"name":"Sienna Larson","age":45,"location":"East Kayli"}},{"attributes":{"name":"Maxwell Mills IV","age":28,"location":"Lansing"}},{"attributes":{"name":"Lindsay Sawayn","age":60,"location":"South Destiney"}},{"attributes":{"name":"Lauren Stracke","age":19,"location":"Kreigerland"}},{"attributes":{"name":"Katrina Schimmel MD","age":54,"location":"Erichhaven"}},{"attributes":{"name":"Mr. Emilio Sauer","age":55,"location":"Walshfort"}},{"attributes":{"name":"Mackenzie Collier","age":44,"location":"Compton"}},{"attributes":{"name":"Chauncey Ankunding","age":50,"location":"Leonorafurt"}},{"attributes":{"name":"Moses Klein","age":28,"location":"Fort Esperanzaboro"}},{"attributes":{"name":"Ms. Creola Wisoky","age":51,"location":"North Orpha"}},{"attributes":{"name":"Lora Marquardt","age":27,"location":"Groverborough"}},{"attributes":{"name":"Alexandrea Rodriguez","age":35,"location":"Ferrybury"}},{"attributes":{"name":"Tanya Waelchi","age":33,"location":"Jordynmouth"}},{"attributes":{"name":"Katelyn Emard","age":61,"location":"South Jonas"}},{"attributes":{"name":"Miss Dennis Blanda","age":59,"location":"Draper"}},{"attributes":{"name":"Jean Hintz","age":68,"location":"Harveybury"}},{"attributes":{"name":"Hallie Keebler","age":38,"location":"Minnetonka"}},{"attributes":{"name":"Enos Jones V","age":25,"location":"West Mariahberg"}},{"attributes":{"name":"Ms. Warren Bartoletti","age":54,"location":"Beercester"}},{"attributes":{"name":"Maya Kreiger","age":46,"location":"Bradenton"}},{"attributes":{"name":"Jesus Stiedemann","age":29,"location":"Chanceton"}},{"attributes":{"name":"Triston Kemmer","age":59,"location":"Romagueraboro"}},{"attributes":{"name":"Tabitha Cronin","age":34,"location":"Brandyworth"}},{"attributes":{"name":"Mr. Sammie Kuhic","age":56,"location":"Clarabelleport"}},{"attributes":{"name":"Felix Ernser","age":21,"location":"Danykastad"}},{"attributes":{"name":"Enrique Krajcik","age":68,"location":"Mount Prospect"}},{"attributes":{"name":"Dr. Bonnie Parisian","age":51,"location":"Savannahville"}},{"attributes":{"name":"Manuel Hilpert II","age":19,"location":"Nienowshire"}},{"attributes":{"name":"Julian Wiza","age":43,"location":"Port Elna"}},{"attributes":{"name":"Elsie Feil","age":78,"location":"Beahanchester"}},{"attributes":{"name":"Randal Haley-Kessler DDS","age":27,"location":"Logan"}},{"attributes":{"name":"Lucy Spinka","age":52,"location":"Fort Darylboro"}},{"attributes":{"name":"Rosemary Hudson","age":24,"location":"Lawrence"}},{"attributes":{"name":"Bernadette Robel","age":51,"location":"Reading"}},{"attributes":{"name":"Gerald Douglas","age":56,"location":"Roobstead"}},{"attributes":{"name":"Judah Robel MD","age":76,"location":"Hauckmouth"}},{"attributes":{"name":"Dr. Darrion Heathcote","age":80,"location":"Alpharetta"}},{"attributes":{"name":"Mariano Beatty","age":72,"location":"Port Ottis"}},{"attributes":{"name":"Lulu Hodkiewicz","age":58,"location":"North Oda"}},{"attributes":{"name":"Henry Romaguera","age":63,"location":"Napoleonside"}},{"attributes":{"name":"Tim Hand","age":59,"location":"West Jaclyn"}},{"attributes":{"name":"Dr. Stella Murphy","age":34,"location":"Lake Doug"}},{"attributes":{"name":"Lindsey Rodriguez","age":53,"location":"South Rogers"}},{"attributes":{"name":"Courtney Williamson","age":18,"location":"Skylaville"}},{"attributes":{"name":"Mellie Monahan","age":41,"location":"North Kiarra"}},{"attributes":{"name":"Ismael Howe","age":66,"location":"South Terrellberg"}},{"attributes":{"name":"Trevor Bogan","age":44,"location":"Joeburgh"}},{"attributes":{"name":"Jesus Dooley","age":75,"location":"West Adrianna"}},{"attributes":{"name":"Dr. Miriam Romaguera","age":79,"location":"Lake Elouise"}},{"attributes":{"name":"Eva Pollich","age":53,"location":"Lake Otilia"}},{"attributes":{"name":"Michele Renner","age":75,"location":"Lake Johanna"}},{"attributes":{"name":"Donavon Beatty PhD","age":48,"location":"St. Peters"}},{"attributes":{"name":"Martin Lesch","age":78,"location":"Lake Mallieville"}},{"attributes":{"name":"Irene Marvin","age":52,"location":"Kaseyland"}},{"attributes":{"name":"Ebba Nitzsche","age":58,"location":"Garrickland"}},{"attributes":{"name":"Antwan Sauer","age":75,"location":"East Zariaton"}},{"attributes":{"name":"Tania Macejkovic","age":21,"location":"North Oliverville"}},{"attributes":{"name":"Alberto Ryan","age":31,"location":"Jalenbury"}},{"attributes":{"name":"Mr. Deangelo Trantow","age":64,"location":"North Angelitastad"}},{"attributes":{"name":"Miss Alexandra Stamm","age":55,"location":"Kearastead"}},{"attributes":{"name":"Aliya Adams","age":57,"location":"Bonita Springs"}},{"attributes":{"name":"Freddie Sipes","age":44,"location":"West Manuelaport"}},{"attributes":{"name":"Myrtle Wyman","age":32,"location":"Johnsside"}},{"attributes":{"name":"Ms. Courtney Predovic DVM","age":46,"location":"Zulaufcester"}},{"attributes":{"name":"Tanya Gerhold","age":75,"location":"Riverside"}},{"attributes":{"name":"Agnes Satterfield","age":63,"location":"Beierstead"}},{"attributes":{"name":"Lynette Welch","age":23,"location":"Shoreline"}},{"attributes":{"name":"Tonya Brown","age":38,"location":"Cathrynfield"}},{"attributes":{"name":"Samantha Greenfelder","age":45,"location":"Osinskistead"}},{"attributes":{"name":"Natalie Trantow","age":22,"location":"Jedediahfort"}},{"attributes":{"name":"Corine Kuhlman","age":57,"location":"Douglasstead"}},{"attributes":{"name":"Dr. Elisabeth Ernser","age":74,"location":"South Brenda"}},{"attributes":{"name":"Frank Kutch","age":36,"location":"Emmiestad"}},{"attributes":{"name":"Llewellyn Schaefer DVM","age":68,"location":"Port Cooperview"}},{"attributes":{"name":"Cristobal Rowe","age":69,"location":"Jarodchester"}},{"attributes":{"name":"Ernesto Spinka","age":64,"location":"Aliyafield"}},{"attributes":{"name":"Esther Schulist","age":60,"location":"McKenziebury"}},{"attributes":{"name":"Phyllis Lemke","age":46,"location":"Bayamon"}},{"attributes":{"name":"Shanel Bailey","age":61,"location":"Port Arthur"}},{"attributes":{"name":"Kayla Dietrich-Jones DDS","age":75,"location":"Bowie"}},{"attributes":{"name":"Mindy Gottlieb","age":40,"location":"Wichita Falls"}},{"attributes":{"name":"Miss Terry Ebert","age":69,"location":"Lake Brennonmouth"}},{"attributes":{"name":"Arden Dietrich","age":44,"location":"East Honolulu"}},{"attributes":{"name":"Brenda Friesen","age":27,"location":"Reaganburgh"}},{"attributes":{"name":"Kristina Goodwin","age":44,"location":"New Nathanial"}},{"attributes":{"name":"Hollie Jast","age":28,"location":"Fort Zoe"}},{"attributes":{"name":"Misael Kub","age":40,"location":"Malachiville"}},{"attributes":{"name":"Bradford O'Reilly","age":75,"location":"Waterloo"}},{"attributes":{"name":"Dedrick Boehm","age":53,"location":"Hansenworth"}},{"attributes":{"name":"Caterina VonRueden","age":63,"location":"Lake Ginoboro"}},{"attributes":{"name":"Jonathan Sauer","age":73,"location":"Wehnerland"}},{"attributes":{"name":"Meredith Feil Sr.","age":41,"location":"Huelsland"}},{"attributes":{"name":"Sadye Hills","age":75,"location":"South Everett"}},{"attributes":{"name":"Dr. Alexis Robel","age":33,"location":"Fort Alyson"}},{"attributes":{"name":"Brady Ernser","age":19,"location":"Lee's Summit"}},{"attributes":{"name":"Rosa Dickinson Sr.","age":37,"location":"Schowalterfield"}},{"attributes":{"name":"Orville Sipes Jr.","age":33,"location":"Baldwin Park"}},{"attributes":{"name":"Mrs. Jayce Bins","age":19,"location":"Runtefield"}},{"attributes":{"name":"Angelica Murray","age":36,"location":"South Vita"}},{"attributes":{"name":"Kathy Schulist","age":49,"location":"Smyrna"}},{"attributes":{"name":"Gilbert Beahan-Steuber","age":42,"location":"Fort Jaidenworth"}},{"attributes":{"name":"Melyna Schultz","age":56,"location":"Fort Vernonville"}},{"attributes":{"name":"Selina Wuckert","age":33,"location":"Murray"}},{"attributes":{"name":"Rex Brakus DVM","age":32,"location":"Bayamon"}},{"attributes":{"name":"Michelle Halvorson","age":73,"location":"Waltham"}},{"attributes":{"name":"Raphaelle Thompson Sr.","age":52,"location":"Dundalk"}},{"attributes":{"name":"Margie Beier","age":42,"location":"Larsonville"}},{"attributes":{"name":"Anne Romaguera","age":53,"location":"Port Carolanneshire"}},{"attributes":{"name":"Travis Runolfsson","age":20,"location":"East Kristina"}},{"attributes":{"name":"Damon Daugherty","age":31,"location":"North Hortense"}},{"attributes":{"name":"Beaulah Strosin","age":59,"location":"Nikolausview"}},{"attributes":{"name":"Matilda Okuneva","age":48,"location":"Madison"}},{"attributes":{"name":"Cassandra Reilly MD","age":75,"location":"Stiedemannburgh"}},{"attributes":{"name":"Mr. Albert Walsh","age":27,"location":"South Clara"}},{"attributes":{"name":"Madeline Walsh-Mueller","age":51,"location":"Sunnyvale"}},{"attributes":{"name":"Javonte Lowe","age":64,"location":"Fort Richard"}},{"attributes":{"name":"Mandy Stanton","age":65,"location":"Lee's Summit"}},{"attributes":{"name":"Justina Zieme","age":58,"location":"Juliuschester"}},{"attributes":{"name":"Craig Leffler","age":22,"location":"East Honolulu"}},{"attributes":{"name":"Mack Cronin","age":59,"location":"Renefield"}},{"attributes":{"name":"Brock Nader","age":67,"location":"Fort Chaddboro"}},{"attributes":{"name":"Charlene Jakubowski","age":47,"location":"Gutkowskifort"}},{"attributes":{"name":"Claudia Fadel","age":75,"location":"Jacksonville"}},{"attributes":{"name":"Kaylin Crist","age":66,"location":"Evansville"}},{"attributes":{"name":"Justina Durgan DDS","age":58,"location":"East Christa"}},{"attributes":{"name":"Angela Fay","age":72,"location":"East Jensenview"}},{"attributes":{"name":"Efrain Haley","age":72,"location":"Lake Lillie"}},{"attributes":{"name":"Elmer Langworth","age":73,"location":"Russelville"}},{"attributes":{"name":"Dr. Elinor Buckridge","age":64,"location":"Kertzmannboro"}},{"attributes":{"name":"Mariana Bailey","age":60,"location":"Emmerichhaven"}},{"attributes":{"name":"Kaylee Bosco","age":57,"location":"Lake Carloland"}},{"attributes":{"name":"Sonia Kiehn","age":55,"location":"Lake Kian"}},{"attributes":{"name":"Dawson Lynch","age":42,"location":"Brockton"}},{"attributes":{"name":"Dedric Boehm-Robel","age":64,"location":"Blockborough"}},{"attributes":{"name":"Dana Zboncak","age":76,"location":"Keeleyfield"}},{"attributes":{"name":"Kelly Kub-Volkman","age":62,"location":"Brendanville"}},{"attributes":{"name":"Mack Hagenes","age":51,"location":"Bellingham"}},{"attributes":{"name":"Herbert Maggio","age":25,"location":"Schummmouth"}},{"attributes":{"name":"Milan Hirthe","age":78,"location":"Fort Hayden"}},{"attributes":{"name":"Sonya VonRueden","age":18,"location":"Kirlinton"}},{"attributes":{"name":"Joanne Durgan","age":77,"location":"Hackensack"}},{"attributes":{"name":"Frank Huel","age":80,"location":"West Anyaworth"}},{"attributes":{"name":"Teri Abshire","age":23,"location":"Trenton"}},{"attributes":{"name":"Mr. Althea Jones","age":55,"location":"Theachester"}},{"attributes":{"name":"Marion Corkery I","age":40,"location":"East Beaufort"}},{"attributes":{"name":"Doyle Maggio","age":30,"location":"Bossier City"}},{"attributes":{"name":"Micheal Lemke","age":47,"location":"East Rafaela"}},{"attributes":{"name":"Ana Collins","age":66,"location":"Ashburn"}},{"attributes":{"name":"Ted Anderson","age":55,"location":"Travonview"}},{"attributes":{"name":"Alanis Powlowski","age":50,"location":"Lake Dale"}},{"attributes":{"name":"Jerome Zulauf","age":73,"location":"South Laneshire"}},{"attributes":{"name":"Madyson Rogahn","age":45,"location":"South Emmanuelcester"}},{"attributes":{"name":"Hoyt Breitenberg","age":44,"location":"Wolfstad"}},{"attributes":{"name":"Fredrick Cremin","age":69,"location":"Treverfurt"}},{"attributes":{"name":"Tina Lakin","age":50,"location":"Lake Selenaworth"}},{"attributes":{"name":"Celia Schowalter","age":29,"location":"Candacehaven"}},{"attributes":{"name":"Sadie Kozey","age":22,"location":"Effertzside"}},{"attributes":{"name":"Pearlie Cartwright","age":56,"location":"Port Trisha"}},{"attributes":{"name":"Andre Kihn","age":41,"location":"South Rachel"}},{"attributes":{"name":"Traci Zboncak","age":34,"location":"Cranston"}},{"attributes":{"name":"Pedro Swaniawski MD","age":45,"location":"North Stefanie"}},{"attributes":{"name":"Norval O'Hara","age":42,"location":"New Jaycee"}},{"attributes":{"name":"Alice Crooks","age":18,"location":"Marysville"}},{"attributes":{"name":"Naomi Schmeler IV","age":26,"location":"Yundtboro"}},{"attributes":{"name":"Keara Kihn","age":73,"location":"Smithamview"}},{"attributes":{"name":"Jeremy Armstrong","age":76,"location":"Waipahu"}},{"attributes":{"name":"Nicole Kulas","age":74,"location":"Schimmelton"}},{"attributes":{"name":"Alan Murray","age":66,"location":"Wilkinsonboro"}},{"attributes":{"name":"Karla Hamill","age":56,"location":"Funkcester"}},{"attributes":{"name":"Lavon Nitzsche","age":67,"location":"Jacobstown"}},{"attributes":{"name":"Morris Kautzer","age":77,"location":"Johnsonfield"}},{"attributes":{"name":"Justen Wyman","age":27,"location":"Palmdale"}},{"attributes":{"name":"Gretchen Crist","age":39,"location":"South Bradfordport"}},{"attributes":{"name":"Gladys Stamm III","age":53,"location":"West Astrid"}},{"attributes":{"name":"Andrew Towne","age":39,"location":"East Deron"}},{"attributes":{"name":"Miss Stewart Jakubowski","age":40,"location":"Padbergboro"}},{"attributes":{"name":"Kayla Lueilwitz","age":48,"location":"West Madieberg"}},{"attributes":{"name":"Miss Juan Kuhlman II","age":72,"location":"North Gino"}},{"attributes":{"name":"Jenna Wiegand DVM","age":21,"location":"West Brycen"}},{"attributes":{"name":"Mrs. Kent Pfeffer","age":68,"location":"Harlingen"}},{"attributes":{"name":"Cindy Reynolds","age":35,"location":"Lake Kirstinstead"}},{"attributes":{"name":"Leon Thompson PhD","age":68,"location":"New Adam"}},{"attributes":{"name":"Cornelius Rath III","age":65,"location":"West Judeview"}},{"attributes":{"name":"Brad Kiehn","age":72,"location":"Daronworth"}},{"attributes":{"name":"Pasquale Dickinson","age":26,"location":"Port Zita"}},{"attributes":{"name":"Tamara Shanahan","age":28,"location":"Lake Evangeline"}},{"attributes":{"name":"Jack Pollich","age":71,"location":"Ponce"}},{"attributes":{"name":"Hortense Goodwin","age":25,"location":"South Luciusberg"}},{"attributes":{"name":"Saul Dickens","age":57,"location":"Bellevue"}},{"attributes":{"name":"Dina Feest","age":37,"location":"Tonichester"}},{"attributes":{"name":"Juan Runolfsson","age":56,"location":"Kerlukeboro"}},{"attributes":{"name":"Shannon Bode","age":44,"location":"South Dameonburgh"}},{"attributes":{"name":"Kenneth Smith I","age":63,"location":"West Darenside"}},{"attributes":{"name":"Darrin McClure","age":22,"location":"Bend"}},{"attributes":{"name":"Waino Abbott IV","age":49,"location":"North Miami Beach"}},{"attributes":{"name":"Lourdes Monahan","age":76,"location":"East Celestinefield"}},{"attributes":{"name":"Wallace Russel-Bashirian","age":58,"location":"Sporerworth"}},{"attributes":{"name":"Elmer Ullrich","age":72,"location":"Roselynfurt"}},{"attributes":{"name":"Cassie Sipes","age":80,"location":"Carminechester"}},{"attributes":{"name":"Robin Bartell","age":79,"location":"Satterfieldport"}},{"attributes":{"name":"Mrs. Pat Rath","age":62,"location":"East Jonathon"}},{"attributes":{"name":"Mrs. Yvonne Hyatt","age":52,"location":"New Trent"}},{"attributes":{"name":"Sherry Hilpert I","age":78,"location":"Collierboro"}},{"attributes":{"name":"Ricky Huels Jr.","age":70,"location":"Castro Valley"}},{"attributes":{"name":"Margot Jacobs","age":59,"location":"Zboncakhaven"}},{"attributes":{"name":"Dominic Greenholt","age":58,"location":"Lebsackfurt"}},{"attributes":{"name":"Lawrence Effertz II","age":28,"location":"Kuhlmanchester"}},{"attributes":{"name":"Terrell Kuhlman","age":75,"location":"Port Juston"}},{"attributes":{"name":"Holly Stiedemann","age":54,"location":"Bodemouth"}},{"attributes":{"name":"Wesley Rodriguez","age":67,"location":"Pompano Beach"}},{"attributes":{"name":"Demetris Wehner","age":76,"location":"Lake Vicente"}},{"attributes":{"name":"Dr. Shane Beer","age":65,"location":"Bergstromcester"}},{"attributes":{"name":"Omari Rowe","age":62,"location":"Mohrchester"}},{"attributes":{"name":"April Russel","age":66,"location":"Reichelshire"}},{"attributes":{"name":"Miss Elmer Walter","age":72,"location":"West Hollyfort"}},{"attributes":{"name":"Nicole Stokes","age":29,"location":"Ivahborough"}},{"attributes":{"name":"Mr. Pansy Lemke","age":73,"location":"Kaleyside"}},{"attributes":{"name":"Dr. Kristi Kuhic","age":77,"location":"East Carolinestead"}},{"attributes":{"name":"Bradford Gutkowski","age":19,"location":"Madelinebury"}},{"attributes":{"name":"Bridget Harvey Sr.","age":22,"location":"East Laurenborough"}},{"attributes":{"name":"Rochelle Hettinger","age":64,"location":"Williamsoncester"}},{"attributes":{"name":"Herbert Kuhic","age":37,"location":"Larsonberg"}},{"attributes":{"name":"Cecil Schmidt","age":21,"location":"Commerce City"}},{"attributes":{"name":"Joel Zieme","age":70,"location":"East Norris"}},{"attributes":{"name":"Eliza Nitzsche","age":59,"location":"North Mariahchester"}},{"attributes":{"name":"Sue Anderson","age":57,"location":"Port Rudolphworth"}},{"attributes":{"name":"Tiffany Mraz","age":68,"location":"North Elian"}},{"attributes":{"name":"Miss Joy Bayer I","age":59,"location":"Sioux Falls"}},{"attributes":{"name":"Elaina O'Keefe","age":39,"location":"Port Brandyn"}},{"attributes":{"name":"Marta Bednar","age":62,"location":"North Forrest"}},{"attributes":{"name":"Austin Hilpert","age":23,"location":"Curtfort"}},{"attributes":{"name":"Ms. Murphy Tillman","age":28,"location":"Benedictcester"}},{"attributes":{"name":"Nadine Zboncak","age":22,"location":"Port Roycechester"}},{"attributes":{"name":"Stanley Kohler","age":35,"location":"Port Leatown"}},{"attributes":{"name":"Dr. Edgar Little","age":30,"location":"Botsfordbury"}},{"attributes":{"name":"Patti Ryan-Jacobson","age":60,"location":"Elviebury"}},{"attributes":{"name":"Kevin O'Kon PhD","age":35,"location":"Anyatown"}},{"attributes":{"name":"Ricardo Kirlin","age":51,"location":"Lake Johann"}},{"attributes":{"name":"Jake Emmerich","age":80,"location":"Fort Dinamouth"}},{"attributes":{"name":"June Hauck","age":50,"location":"Amiratown"}},{"attributes":{"name":"Kimberly Willms","age":38,"location":"Lawrence"}},{"attributes":{"name":"Judith Ruecker","age":65,"location":"Port Adonisworth"}},{"attributes":{"name":"Andre Bruen","age":21,"location":"North Zion"}},{"attributes":{"name":"Calista Grant V","age":38,"location":"Cheyenne"}},{"attributes":{"name":"Elizabeth O'Hara","age":40,"location":"Port Noemi"}},{"attributes":{"name":"Cheyenne Gottlieb","age":78,"location":"Borisborough"}},{"attributes":{"name":"Hilda Dibbert","age":77,"location":"Flatleyhaven"}},{"attributes":{"name":"Laurie Jones","age":25,"location":"Malikaview"}},{"attributes":{"name":"Fred Connelly I","age":39,"location":"Shemarborough"}},{"attributes":{"name":"Virgil Dickens","age":29,"location":"North Joseph"}},{"attributes":{"name":"Sarah Prohaska","age":35,"location":"Lucindastad"}},{"attributes":{"name":"Ervin Bechtelar","age":49,"location":"Fort Silas"}},{"attributes":{"name":"Ms. Melany Abshire","age":47,"location":"Moentown"}},{"attributes":{"name":"Arnold Schuppe","age":71,"location":"Brennonworth"}},{"attributes":{"name":"Garrett Raynor","age":75,"location":"West Fidelview"}},{"attributes":{"name":"Jenna O'Hara","age":60,"location":"Fort Jazmyn"}},{"attributes":{"name":"Kirk Schumm","age":22,"location":"Port Fridaville"}},{"attributes":{"name":"Roosevelt Weimann I","age":77,"location":"Reichelchester"}},{"attributes":{"name":"Emma Fahey III","age":60,"location":"Mrazchester"}},{"attributes":{"name":"Rickey Wunsch","age":74,"location":"Weymouth Town"}},{"attributes":{"name":"Calvin Schiller","age":55,"location":"Lake Wadeville"}},{"attributes":{"name":"Myron Cummerata","age":78,"location":"Philadelphia"}},{"attributes":{"name":"Candida Tillman","age":61,"location":"North Arely"}},{"attributes":{"name":"Joan Walsh","age":64,"location":"Volkmanfurt"}},{"attributes":{"name":"Cecelia Mertz","age":31,"location":"North Alaina"}},{"attributes":{"name":"Roxanne Durgan","age":61,"location":"Fort Durward"}},{"attributes":{"name":"Shane Borer","age":46,"location":"West Heberborough"}},{"attributes":{"name":"Shawn Morar","age":67,"location":"Cartwrightmouth"}},{"attributes":{"name":"Elias Krajcik","age":20,"location":"Boyerstad"}},{"attributes":{"name":"Darin Rodriguez","age":34,"location":"Santa Cruz"}},{"attributes":{"name":"Miss Maggie Grady","age":42,"location":"Hartford"}},{"attributes":{"name":"Geoffrey McDermott DDS","age":19,"location":"Robbtown"}},{"attributes":{"name":"Milford Hauck IV","age":32,"location":"Lake Isacborough"}},{"attributes":{"name":"Johnathan Runolfsdottir","age":54,"location":"North Thurman"}},{"attributes":{"name":"Dr. Jill Harris","age":43,"location":"West Aracelitown"}},{"attributes":{"name":"Sally Howe","age":63,"location":"Raetown"}},{"attributes":{"name":"Kaylah Labadie","age":55,"location":"Gardena"}},{"attributes":{"name":"Muriel Walsh","age":73,"location":"Cheyenne"}},{"attributes":{"name":"Curtis Zboncak","age":49,"location":"Meridian"}},{"attributes":{"name":"Alphonso Fahey","age":58,"location":"North Meagan"}},{"attributes":{"name":"Krista Weimann","age":26,"location":"Violaborough"}},{"attributes":{"name":"Christy Aufderhar","age":79,"location":"West Preston"}},{"attributes":{"name":"Kent Reinger","age":18,"location":"Huelfield"}},{"attributes":{"name":"Shania Herzog","age":33,"location":"West Xavierview"}},{"attributes":{"name":"Geovanni Goldner","age":43,"location":"Sipesworth"}},{"attributes":{"name":"Jonathon Ortiz","age":54,"location":"Geraldinechester"}},{"attributes":{"name":"Adah Cremin","age":40,"location":"New Nya"}},{"attributes":{"name":"Arlie Frami","age":56,"location":"Camillechester"}},{"attributes":{"name":"Bryant Rice","age":56,"location":"Port Kevinview"}},{"attributes":{"name":"Teresa Weber","age":80,"location":"Lindworth"}},{"attributes":{"name":"Vivian Leuschke","age":59,"location":"Noelchester"}},{"attributes":{"name":"Alexander Schamberger","age":18,"location":"South Emmet"}},{"attributes":{"name":"Domingo Klein","age":52,"location":"Johnstonstad"}},{"attributes":{"name":"Stone Swaniawski","age":75,"location":"New Roy"}},{"attributes":{"name":"Randal Wisozk","age":47,"location":"South Jerrystead"}},{"attributes":{"name":"Chase Gibson PhD","age":33,"location":"DeKalb"}},{"attributes":{"name":"Johnnie Price","age":78,"location":"Domenickmouth"}},{"attributes":{"name":"Savion Beahan","age":33,"location":"Kesslerfort"}},{"attributes":{"name":"Irving Williamson","age":67,"location":"New Gillianport"}},{"attributes":{"name":"Dr. Willard Abernathy","age":56,"location":"Weberstead"}},{"attributes":{"name":"Ada D'Amore","age":63,"location":"Stanleystad"}},{"attributes":{"name":"Colleen Rogahn","age":51,"location":"Keeblerworth"}},{"attributes":{"name":"Jaunita Hartmann","age":74,"location":"South San Francisco"}},{"attributes":{"name":"Gustavo Ward","age":56,"location":"Bayerberg"}},{"attributes":{"name":"Allison Kuhn MD","age":69,"location":"Favianstead"}},{"attributes":{"name":"Skye Brakus","age":58,"location":"North Reganburgh"}},{"attributes":{"name":"Maureen Bednar","age":55,"location":"Fort Ottiliehaven"}},{"attributes":{"name":"Miss Marianna Veum","age":23,"location":"Hyattfield"}},{"attributes":{"name":"Samuel Von","age":63,"location":"Walnut Creek"}},{"attributes":{"name":"Wade Fay","age":24,"location":"Simi Valley"}},{"attributes":{"name":"Natalie Ferry","age":45,"location":"Handfort"}},{"attributes":{"name":"Luisa Rutherford","age":41,"location":"Fort Edfield"}},{"attributes":{"name":"Sonia McGlynn","age":71,"location":"Reggiebury"}},{"attributes":{"name":"Kirk Ritchie","age":69,"location":"Milwaukee"}},{"attributes":{"name":"Ethel Keeling","age":56,"location":"Fort Ava"}},{"attributes":{"name":"Arnoldo Grady","age":34,"location":"Gudrunboro"}},{"attributes":{"name":"Stuart Cormier","age":76,"location":"Justonville"}},{"attributes":{"name":"Devin Kassulke","age":33,"location":"Turcotteport"}},{"attributes":{"name":"Nedra Hayes II","age":29,"location":"West Elfrieda"}},{"attributes":{"name":"Mitchell O'Hara","age":68,"location":"Felicityboro"}},{"attributes":{"name":"Kendra Casper PhD","age":67,"location":"North Karianeshire"}},{"attributes":{"name":"Edgar Schowalter-Stanton","age":18,"location":"Kathlynfield"}},{"attributes":{"name":"Angelo Zulauf","age":18,"location":"Torranceberg"}},{"attributes":{"name":"Mr. Brent Lebsack IV","age":23,"location":"Feeneyville"}},{"attributes":{"name":"Terry Welch","age":25,"location":"Pierreworth"}},{"attributes":{"name":"Horace Rohan","age":77,"location":"West Kattieville"}},{"attributes":{"name":"Mr. Garry Gleichner","age":43,"location":"Fort Felton"}},{"attributes":{"name":"Angel Block DVM","age":62,"location":"Raynorview"}},{"attributes":{"name":"Kylie Torphy","age":27,"location":"Corkeryville"}},{"attributes":{"name":"Dave Cummerata","age":46,"location":"Raufurt"}},{"attributes":{"name":"Sergio Zboncak","age":20,"location":"Reillyport"}},{"attributes":{"name":"Cecilia Glover","age":28,"location":"Lueilwitzside"}},{"attributes":{"name":"Matt Kutch","age":71,"location":"North Kenyabury"}},{"attributes":{"name":"Kathryn Bartell","age":38,"location":"Zechariahville"}},{"attributes":{"name":"Kolby Nader DVM","age":57,"location":"West Karolannfurt"}},{"attributes":{"name":"Virginia Strosin","age":29,"location":"Amieton"}},{"attributes":{"name":"Diane Wyman","age":73,"location":"Fort Chanelle"}},{"attributes":{"name":"Mr. Wilbur Mante","age":36,"location":"Eastvale"}},{"attributes":{"name":"Miss Alfonso Cormier III","age":35,"location":"Fort Jed"}},{"attributes":{"name":"Eula Schuppe","age":54,"location":"Ilianastad"}},{"attributes":{"name":"Judy Champlin","age":74,"location":"East Owenfield"}},{"attributes":{"name":"Sienna Funk","age":47,"location":"Andersonworth"}},{"attributes":{"name":"Burdette Gleason","age":64,"location":"West Steve"}},{"attributes":{"name":"Eric Blick","age":42,"location":"South Candace"}},{"attributes":{"name":"Juanita Schiller","age":58,"location":"Layton"}},{"attributes":{"name":"Eleanor Toy","age":26,"location":"Port Sharon"}},{"attributes":{"name":"Paul Kutch","age":64,"location":"Rochester Hills"}},{"attributes":{"name":"Mr. Roger Kub","age":60,"location":"Bradtkefurt"}},{"attributes":{"name":"Tanya Krajcik","age":18,"location":"Catonsville"}},{"attributes":{"name":"Alberto Franecki","age":68,"location":"Rathfield"}},{"attributes":{"name":"Santa Bernhard","age":80,"location":"Port Tevin"}},{"attributes":{"name":"Elinor Yundt","age":21,"location":"Borerville"}},{"attributes":{"name":"Betty Toy","age":51,"location":"Jurupa Valley"}},{"attributes":{"name":"Dr. Jay Kozey","age":39,"location":"Pagacville"}},{"attributes":{"name":"Cesar MacGyver","age":74,"location":"West Daisha"}},{"attributes":{"name":"Marsha Kub","age":79,"location":"Enolamouth"}},{"attributes":{"name":"Kelley Mills","age":80,"location":"Donnieland"}},{"attributes":{"name":"Belle Wilderman","age":62,"location":"Azusa"}},{"attributes":{"name":"Lester Jacobson","age":80,"location":"South Alayna"}},{"attributes":{"name":"Gabriel Schuppe","age":63,"location":"Jacobsonville"}},{"attributes":{"name":"Hugh Mann II","age":41,"location":"Schulistboro"}},{"attributes":{"name":"Nicole Rosenbaum","age":30,"location":"Dannyton"}},{"attributes":{"name":"Harold Schoen","age":36,"location":"Bahringerchester"}},{"attributes":{"name":"Tony DuBuque","age":36,"location":"Cincinnati"}},{"attributes":{"name":"Alberta Fadel","age":30,"location":"Greensboro"}},{"attributes":{"name":"Shelly Morissette","age":79,"location":"Des Moines"}},{"attributes":{"name":"Diane Gislason II","age":73,"location":"Aufderharview"}},{"attributes":{"name":"Ms. Itzel Hansen","age":55,"location":"West Jadafort"}},{"attributes":{"name":"Chelsea McKenzie","age":19,"location":"Lindburgh"}},{"attributes":{"name":"Miss Rosa Kilback","age":68,"location":"South Adrianna"}},{"attributes":{"name":"Derek Ortiz-Nitzsche","age":52,"location":"Fort Kaleigh"}},{"attributes":{"name":"Miss Toni Bins","age":31,"location":"Dietrichfield"}},{"attributes":{"name":"Cecelia Bergnaum","age":35,"location":"Kuhicchester"}},{"attributes":{"name":"Julius Rogahn","age":78,"location":"Pompano Beach"}},{"attributes":{"name":"Dr. Marisa Kemmer-Pacocha","age":60,"location":"Verliehaven"}},{"attributes":{"name":"Sam Schmidt","age":30,"location":"Elviechester"}},{"attributes":{"name":"Dewey Greenholt","age":37,"location":"Macejkovicville"}},{"attributes":{"name":"Brandi Tillman","age":49,"location":"Fort Marlinberg"}},{"attributes":{"name":"Terri VonRueden","age":76,"location":"East Daneton"}},{"attributes":{"name":"Chelsea Jast","age":40,"location":"Port Orlo"}},{"attributes":{"name":"Paul Lindgren","age":53,"location":"Gilbertstead"}},{"attributes":{"name":"Rudy Schimmel","age":31,"location":"Fort Marjory"}},{"attributes":{"name":"Allen Mitchell","age":37,"location":"Deckowboro"}},{"attributes":{"name":"Price Harvey","age":62,"location":"Raeganville"}},{"attributes":{"name":"Ms. Travon Harris","age":53,"location":"Rauhaven"}},{"attributes":{"name":"Myrtle Gusikowski-Pagac","age":66,"location":"Alanisport"}},{"attributes":{"name":"Kitty Jacobi","age":61,"location":"Fort Dedricbury"}},{"attributes":{"name":"Miss Rachael Braun","age":73,"location":"Burdetteberg"}},{"attributes":{"name":"Emmie Brown Sr.","age":42,"location":"Kozeyburgh"}},{"attributes":{"name":"Damon Schmeler","age":69,"location":"North Margaret"}},{"attributes":{"name":"Leslie Hirthe","age":54,"location":"Koeppcester"}},{"attributes":{"name":"Marion Stiedemann","age":59,"location":"Fort Iva"}},{"attributes":{"name":"Valerie Robel","age":66,"location":"La Mesa"}},{"attributes":{"name":"Mr. Lynn Little","age":77,"location":"Lake Kieranbury"}},{"attributes":{"name":"Krystina Hettinger","age":22,"location":"Oakland"}},{"attributes":{"name":"Luciano Koelpin","age":39,"location":"Shanahanshire"}},{"attributes":{"name":"Rickey Goldner II","age":19,"location":"Einobury"}},{"attributes":{"name":"Maurice McGlynn","age":52,"location":"Rashadmouth"}},{"attributes":{"name":"Karen Smith","age":58,"location":"Denesikfurt"}},{"attributes":{"name":"Rico Bauch III","age":79,"location":"Ontario"}},{"attributes":{"name":"Willie Mraz","age":56,"location":"North Malliechester"}},{"attributes":{"name":"Cristina Jerde","age":70,"location":"Turnerstad"}},{"attributes":{"name":"Jeffery Lockman-Altenwerth","age":33,"location":"Jamirboro"}},{"attributes":{"name":"Kari Oberbrunner","age":56,"location":"South Maddisonstead"}},{"attributes":{"name":"Felipe Hane","age":55,"location":"Millcreek"}},{"attributes":{"name":"Miss Sierra Kozey","age":20,"location":"Bothell"}},{"attributes":{"name":"Mr. Juan Bahringer","age":37,"location":"Fort Flo"}},{"attributes":{"name":"Rhonda Murray","age":42,"location":"Norwoodtown"}},{"attributes":{"name":"Angie Streich","age":44,"location":"East Marianeburgh"}},{"attributes":{"name":"Francis West II","age":41,"location":"New Feltonchester"}},{"attributes":{"name":"Everett Jacobson","age":56,"location":"Port Alvahton"}},{"attributes":{"name":"Kyle Leuschke","age":62,"location":"Okunevastad"}},{"attributes":{"name":"Jermaine Corkery","age":54,"location":"South Dedric"}},{"attributes":{"name":"Brandon Maggio","age":25,"location":"North Laron"}},{"attributes":{"name":"Elsa O'Keefe","age":74,"location":"Schulistville"}},{"attributes":{"name":"Yolanda Stamm","age":77,"location":"Fountainebleau"}},{"attributes":{"name":"Verdie Mills","age":50,"location":"Bechtelarfort"}},{"attributes":{"name":"Opal Rogahn","age":23,"location":"Aldenland"}},{"attributes":{"name":"Ronnie Schmidt","age":77,"location":"St. Paul"}},{"attributes":{"name":"Rachel Orn","age":27,"location":"Lake Shawntown"}},{"attributes":{"name":"Magdalen Hettinger","age":76,"location":"South San Francisco"}},{"attributes":{"name":"Lois Bednar","age":59,"location":"North Imogene"}},{"attributes":{"name":"Lawrence Gulgowski","age":30,"location":"Decatur"}},{"attributes":{"name":"Mindy Reichert","age":31,"location":"Bayleemouth"}},{"attributes":{"name":"Gilberto Heidenreich","age":66,"location":"Donavonland"}},{"attributes":{"name":"Dylan Rempel-Considine","age":57,"location":"Andersontown"}},{"attributes":{"name":"Ronald Bogisich","age":45,"location":"Marjoriefield"}},{"attributes":{"name":"Gilbert Fadel-Hintz","age":25,"location":"Altamonte Springs"}},{"attributes":{"name":"Eunice Goldner","age":65,"location":"Carmelafield"}},{"attributes":{"name":"Tammy Hilll","age":57,"location":"Braunside"}},{"attributes":{"name":"Stanton Mraz","age":63,"location":"Lake Juanita"}},{"attributes":{"name":"Oral Koepp DVM","age":52,"location":"Reynoldston"}},{"attributes":{"name":"Dexter Wolf PhD","age":31,"location":"Fletacester"}},{"attributes":{"name":"Bertha Dare","age":46,"location":"Leesburg"}},{"attributes":{"name":"Calvin Homenick","age":58,"location":"Maggioton"}},{"attributes":{"name":"Debra Stracke PhD","age":66,"location":"Martaside"}},{"attributes":{"name":"Corey Strosin","age":45,"location":"Chino Hills"}},{"attributes":{"name":"Justice Nolan","age":74,"location":"Lake Angeline"}},{"attributes":{"name":"Abraham Weber","age":53,"location":"Burleson"}},{"attributes":{"name":"Tammy Lynch DDS","age":62,"location":"South Delilah"}},{"attributes":{"name":"Hope Miller","age":68,"location":"Fort Eldridge"}},{"attributes":{"name":"Sylvester Kemmer","age":71,"location":"Macejkovicworth"}},{"attributes":{"name":"Rosa Kunze","age":75,"location":"South Hattiecester"}},{"attributes":{"name":"Katrina Hessel","age":23,"location":"Breitenbergland"}},{"attributes":{"name":"Eleonore Lubowitz","age":32,"location":"South Edwardo"}},{"attributes":{"name":"Dora Orn","age":79,"location":"South Roelport"}},{"attributes":{"name":"Angie Gulgowski-Pollich","age":36,"location":"North Leoboro"}},{"attributes":{"name":"Chauncey Kiehn","age":20,"location":"Mullerboro"}},{"attributes":{"name":"Mrs. Jude Rowe","age":75,"location":"Margaretteburgh"}},{"attributes":{"name":"Tito Bins","age":76,"location":"Zechariahcester"}},{"attributes":{"name":"Ryleigh Skiles MD","age":49,"location":"Novato"}},{"attributes":{"name":"Helen Bartell","age":34,"location":"Dedrickcester"}},{"attributes":{"name":"Marcella Cassin DDS","age":63,"location":"East Rosannastad"}},{"attributes":{"name":"Tom Ratke III","age":36,"location":"Fort Hassan"}},{"attributes":{"name":"Earnest Parker","age":55,"location":"Schoenstad"}},{"attributes":{"name":"Isobel Witting MD","age":28,"location":"South Calistachester"}},{"attributes":{"name":"Josh Fritsch","age":27,"location":"New Blanca"}},{"attributes":{"name":"Krystal Borer IV","age":80,"location":"Weissnatcester"}},{"attributes":{"name":"Jolie Macejkovic","age":21,"location":"Stanleyland"}},{"attributes":{"name":"Yvette Kris","age":74,"location":"Atlanta"}},{"attributes":{"name":"Silvia Zieme Sr.","age":37,"location":"North Imogene"}},{"attributes":{"name":"Javier Stark","age":36,"location":"Dayton"}},{"attributes":{"name":"Jonathan Feeney","age":48,"location":"Pasco"}},{"attributes":{"name":"Brendon Rogahn","age":49,"location":"Weldonberg"}},{"attributes":{"name":"Arjun Parker II","age":25,"location":"Fort Nilsfurt"}},{"attributes":{"name":"Helga Wolff","age":34,"location":"Libbieworth"}},{"attributes":{"name":"Valerie Haley","age":63,"location":"South Gailberg"}},{"attributes":{"name":"Miss Alton Bernhard","age":50,"location":"Swiftbury"}},{"attributes":{"name":"Georgia Cartwright","age":74,"location":"Hackensack"}},{"attributes":{"name":"Zechariah Schumm","age":23,"location":"Mission"}},{"attributes":{"name":"Guadalupe Kub","age":56,"location":"North Myriamstad"}},{"attributes":{"name":"Garrett Ortiz","age":33,"location":"Sunrise"}},{"attributes":{"name":"Ms. Sheldon Klocko","age":75,"location":"South Aric"}},{"attributes":{"name":"Bob Williamson","age":74,"location":"Zulaufport"}},{"attributes":{"name":"Caterina Runolfsdottir II","age":69,"location":"Judsonville"}},{"attributes":{"name":"Dr. Robin Rogahn","age":22,"location":"Zenaworth"}},{"attributes":{"name":"Hyman Lockman","age":69,"location":"Lake Carmellamouth"}},{"attributes":{"name":"Trevor Kris","age":43,"location":"Fort Dakotafurt"}},{"attributes":{"name":"Sally Corwin","age":63,"location":"Haagport"}},{"attributes":{"name":"Ms. Lucas Wiegand","age":27,"location":"Jacksonstad"}},{"attributes":{"name":"Henry Mertz","age":51,"location":"Azusa"}},{"attributes":{"name":"Vernon Barton I","age":80,"location":"East Justinastad"}},{"attributes":{"name":"Julia Emmerich","age":58,"location":"Blacksburg"}},{"attributes":{"name":"Sylvia Koch","age":51,"location":"Bartolettifield"}},{"attributes":{"name":"Mavis Little","age":21,"location":"Battle Creek"}},{"attributes":{"name":"Demond Schuppe","age":51,"location":"North Joanniehaven"}},{"attributes":{"name":"Oliver O'Reilly","age":54,"location":"Manteca"}},{"attributes":{"name":"Mr. Timmy Dickinson-Schinner","age":36,"location":"Santa Clara"}},{"attributes":{"name":"Boyd Gusikowski","age":73,"location":"Bettyview"}},{"attributes":{"name":"Ulises Armstrong","age":47,"location":"East Kari"}},{"attributes":{"name":"Eloisa Bartoletti","age":31,"location":"Port Mableberg"}},{"attributes":{"name":"Hazel Gutkowski","age":32,"location":"Leoniefurt"}},{"attributes":{"name":"Tod Doyle","age":41,"location":"New Violette"}},{"attributes":{"name":"Loretta Mills","age":36,"location":"Chandler"}},{"attributes":{"name":"Glenn Bogan","age":37,"location":"Jessicaton"}},{"attributes":{"name":"Dr. Allene Stracke","age":38,"location":"Goodwinside"}},{"attributes":{"name":"Joshua Lind","age":45,"location":"Bonita Springs"}},{"attributes":{"name":"Sunny Lindgren","age":51,"location":"New Naomie"}},{"attributes":{"name":"Hope Armstrong","age":38,"location":"Effertzberg"}},{"attributes":{"name":"Angel Lebsack","age":56,"location":"West Reynold"}},{"attributes":{"name":"Dr. Magnolia Windler","age":36,"location":"National City"}},{"attributes":{"name":"Yolanda Willms","age":48,"location":"Hyattland"}},{"attributes":{"name":"Miss Carolyn Cole","age":48,"location":"Robelhaven"}},{"attributes":{"name":"Trent Schaefer Sr.","age":72,"location":"Port Lavinia"}},{"attributes":{"name":"Mr. Cornelius Little","age":31,"location":"North Brendonfurt"}},{"attributes":{"name":"Jaunita Wintheiser","age":51,"location":"East Aldenfurt"}},{"attributes":{"name":"Daphnee Koelpin","age":72,"location":"Toms River"}},{"attributes":{"name":"Kara Mertz","age":32,"location":"Strongsville"}},{"attributes":{"name":"Claudia Lindgren-Witting","age":26,"location":"North Websterport"}},{"attributes":{"name":"Dr. Horace Kreiger","age":74,"location":"Idaho Falls"}},{"attributes":{"name":"Frederic Hackett","age":20,"location":"Fort Daytonboro"}},{"attributes":{"name":"Emilio Douglas","age":64,"location":"West Revaberg"}},{"attributes":{"name":"Gregg Bauch","age":45,"location":"West Marlene"}},{"attributes":{"name":"Pat Dietrich","age":71,"location":"Baileyview"}},{"attributes":{"name":"Ms. Irving Mertz","age":59,"location":"East Eliane"}},{"attributes":{"name":"Estell Nitzsche III","age":75,"location":"Lake Melyssaberg"}},{"attributes":{"name":"Davon Steuber","age":25,"location":"Georgecester"}},{"attributes":{"name":"Carissa Leffler","age":64,"location":"Dillonboro"}},{"attributes":{"name":"Bethany Hoppe","age":41,"location":"Rueckerland"}},{"attributes":{"name":"Angel Nolan","age":49,"location":"Fort Nichole"}},{"attributes":{"name":"Otho Nikolaus","age":33,"location":"Beierboro"}},{"attributes":{"name":"Irene Russel","age":63,"location":"Lake Babyworth"}},{"attributes":{"name":"Cullen Stehr","age":49,"location":"Lake Vitashire"}},{"attributes":{"name":"Dr. June Hudson","age":29,"location":"Pinellas Park"}},{"attributes":{"name":"Genesis Howe","age":54,"location":"New Trace"}},{"attributes":{"name":"Icie Tremblay","age":23,"location":"Hellerview"}},{"attributes":{"name":"Lemuel Erdman","age":18,"location":"Fort Odellboro"}},{"attributes":{"name":"Luciano Flatley","age":74,"location":"Batzshire"}},{"attributes":{"name":"Leola O'Connell","age":53,"location":"Jaskolskiport"}},{"attributes":{"name":"Carmel Effertz","age":44,"location":"Sparks"}},{"attributes":{"name":"Velda Lang","age":37,"location":"Rempeltown"}},{"attributes":{"name":"Julian Sipes","age":20,"location":"Friesenstead"}},{"attributes":{"name":"Blake Lockman","age":74,"location":"Southfield"}},{"attributes":{"name":"Dr. Ricky Franey","age":67,"location":"Huldatown"}},{"attributes":{"name":"Eudora Batz","age":44,"location":"Jillianborough"}},{"attributes":{"name":"Jan Rau","age":41,"location":"Travishaven"}},{"attributes":{"name":"Ida Lubowitz","age":79,"location":"Crooksfurt"}},{"attributes":{"name":"Malcolm Bartell","age":27,"location":"Carolineboro"}},{"attributes":{"name":"Scotty Roberts","age":68,"location":"Fort Ursulaborough"}},{"attributes":{"name":"Caleigh Sipes","age":42,"location":"Merlton"}},{"attributes":{"name":"Bradley Kozey","age":76,"location":"Lake Marcus"}},{"attributes":{"name":"Cristina Ryan I","age":64,"location":"Waipahu"}},{"attributes":{"name":"Bradley Hyatt","age":52,"location":"North Lonieville"}},{"attributes":{"name":"Nathanial Heathcote","age":79,"location":"Terryfield"}},{"attributes":{"name":"Leticia Connelly","age":38,"location":"Hollisfield"}},{"attributes":{"name":"Stuart Lockman","age":64,"location":"West Dorcasport"}},{"attributes":{"name":"Leonor Pollich","age":18,"location":"East Lula"}},{"attributes":{"name":"Darryl Schultz","age":63,"location":"Lake Osbornebury"}},{"attributes":{"name":"Amber Rohan","age":77,"location":"North Ricostead"}},{"attributes":{"name":"Karolann Yundt","age":22,"location":"Wolffville"}},{"attributes":{"name":"Tony Purdy","age":59,"location":"North Anaton"}},{"attributes":{"name":"Julianne Steuber","age":31,"location":"Klingstad"}},{"attributes":{"name":"Andrea Skiles","age":21,"location":"Greenchester"}},{"attributes":{"name":"Daron Pacocha","age":21,"location":"Lake Reynoldland"}},{"attributes":{"name":"Mrs. Aidan Schoen","age":63,"location":"Dachborough"}},{"attributes":{"name":"Erin Rolfson","age":24,"location":"Heaneyfield"}},{"attributes":{"name":"Phyllis Dare","age":39,"location":"South Katharinaboro"}},{"attributes":{"name":"Jairo McCullough","age":77,"location":"Port Asha"}},{"attributes":{"name":"Lorena Carter","age":80,"location":"North Jermain"}},{"attributes":{"name":"Isac Bosco","age":34,"location":"Ann Arbor"}},{"attributes":{"name":"Sydni Purdy","age":75,"location":"Bogisichmouth"}},{"attributes":{"name":"Dr. Ada Kuphal","age":41,"location":"Gerholdstad"}},{"attributes":{"name":"Sandy Harber","age":66,"location":"Lake Jace"}},{"attributes":{"name":"Pauline Huels","age":22,"location":"Henderson"}},{"attributes":{"name":"Ella Bergstrom PhD","age":79,"location":"Ankundingworth"}},{"attributes":{"name":"Audrey Kirlin","age":28,"location":"West Rasheed"}},{"attributes":{"name":"Curt Hilpert","age":56,"location":"Cummingsview"}},{"attributes":{"name":"Debbie Schinner DVM","age":58,"location":"East Aiyanachester"}},{"attributes":{"name":"Tiara Marvin","age":63,"location":"Port Britneystad"}},{"attributes":{"name":"Jeff Feil","age":33,"location":"North Glenda"}},{"attributes":{"name":"Wesley Lockman","age":19,"location":"Percivalfort"}},{"attributes":{"name":"Chase Kuvalis","age":42,"location":"Port Dillonchester"}},{"attributes":{"name":"Priscilla Schumm","age":43,"location":"Samaraboro"}},{"attributes":{"name":"Bernice Satterfield","age":31,"location":"North Stephan"}},{"attributes":{"name":"Scott Johns","age":28,"location":"Fort Theresia"}},{"attributes":{"name":"Mrs. Angeline MacGyver-Stamm","age":44,"location":"Kaelaside"}},{"attributes":{"name":"Tomas Murazik","age":71,"location":"Dolorestown"}},{"attributes":{"name":"Daisy Ruecker DVM","age":71,"location":"Memphis"}},{"attributes":{"name":"Chyna Schinner","age":65,"location":"Estellstad"}},{"attributes":{"name":"May Legros-Halvorson II","age":69,"location":"Rexworth"}},{"attributes":{"name":"Alfredo Hessel","age":69,"location":"New Alford"}},{"attributes":{"name":"Sarah Hilll","age":39,"location":"South Francisca"}},{"attributes":{"name":"Lauren Kovacek Sr.","age":76,"location":"Fort Helgafurt"}},{"attributes":{"name":"Mitchell Ziemann","age":71,"location":"Fort Zolastad"}},{"attributes":{"name":"Elijah Schumm","age":36,"location":"Ontario"}},{"attributes":{"name":"Krystal Price","age":30,"location":"Enosworth"}},{"attributes":{"name":"Dr. Jerald Roberts","age":78,"location":"Rubyefort"}},{"attributes":{"name":"Kristin Bayer III","age":61,"location":"Beckerfurt"}},{"attributes":{"name":"Doug Reichel IV","age":24,"location":"Elishastad"}},{"attributes":{"name":"Shaniya Jones","age":30,"location":"East Johanna"}},{"attributes":{"name":"Cordie Frami","age":79,"location":"Hempstead"}},{"attributes":{"name":"Forrest Greenfelder","age":43,"location":"Fort Jace"}},{"attributes":{"name":"Pete Roob-Kreiger","age":34,"location":"Judsonside"}},{"attributes":{"name":"Berry Bogisich","age":45,"location":"Port Christine"}},{"attributes":{"name":"Caesar Metz","age":71,"location":"Lourdesfield"}},{"attributes":{"name":"Felipe Deckow","age":37,"location":"Port Esmeralda"}},{"attributes":{"name":"Santos Jacobs","age":20,"location":"Homenickport"}},{"attributes":{"name":"Josue Turner Sr.","age":24,"location":"New Laverna"}},{"attributes":{"name":"Wayne Boyer","age":32,"location":"East Alisa"}},{"attributes":{"name":"Edith West Sr.","age":55,"location":"McCulloughport"}},{"attributes":{"name":"Anya Rogahn","age":57,"location":"Lake Bertashire"}},{"attributes":{"name":"Miss Ada Raynor DDS","age":63,"location":"Cypress"}},{"attributes":{"name":"Silvia Fritsch","age":77,"location":"Buckeye"}},{"attributes":{"name":"Ron Mayer II","age":66,"location":"Kadenfield"}},{"attributes":{"name":"Queenie Kreiger","age":75,"location":"Salem"}},{"attributes":{"name":"Jeffery Schroeder DVM","age":40,"location":"East Herminafort"}},{"attributes":{"name":"Merlin Rice","age":29,"location":"Spring"}},{"attributes":{"name":"Lempi Schumm","age":66,"location":"East Wendy"}},{"attributes":{"name":"Maurine Armstrong","age":60,"location":"Heathcoteton"}},{"attributes":{"name":"Bernice Wolf","age":25,"location":"Belleshire"}},{"attributes":{"name":"Justus Greenfelder I","age":36,"location":"Nashville-Davidson"}},{"attributes":{"name":"Bud Ratke","age":65,"location":"Funkville"}},{"attributes":{"name":"Ms. Terrence Parker-Kirlin Sr.","age":37,"location":"Schneiderbury"}},{"attributes":{"name":"Darwin Bartoletti","age":74,"location":"New Ernie"}},{"attributes":{"name":"Ernesto Schuppe","age":66,"location":"Grand Prairie"}},{"attributes":{"name":"Stanford Brekke","age":59,"location":"Magalifurt"}},{"attributes":{"name":"Lynda Shanahan","age":22,"location":"Kearny"}},{"attributes":{"name":"Andrew Emard III","age":69,"location":"West Christian"}},{"attributes":{"name":"Giovanny Ullrich","age":63,"location":"Cape Coral"}},{"attributes":{"name":"Jett Leannon","age":53,"location":"New Jordan"}},{"attributes":{"name":"Arturo Cummerata","age":23,"location":"East Kriston"}},{"attributes":{"name":"Julio Carroll","age":18,"location":"North Zariachester"}},{"attributes":{"name":"Francesca Haag","age":55,"location":"New Zane"}},{"attributes":{"name":"Russ Johnston","age":64,"location":"Wilkinsonboro"}},{"attributes":{"name":"Clarence Greenholt","age":36,"location":"North Isadore"}},{"attributes":{"name":"Arlene Schultz","age":66,"location":"Fort Julioboro"}},{"attributes":{"name":"Myles Shanahan","age":78,"location":"Yazminchester"}},{"attributes":{"name":"Dr. Hailie Harvey I","age":70,"location":"Antelope"}},{"attributes":{"name":"Lemuel Hansen","age":48,"location":"North Sigurd"}},{"attributes":{"name":"Bennie Kling","age":67,"location":"North Kierafurt"}},{"attributes":{"name":"Sedrick Bruen","age":45,"location":"Glendale"}},{"attributes":{"name":"Bernadine Feil","age":50,"location":"Predovicside"}},{"attributes":{"name":"Carter Bruen","age":28,"location":"Menifee"}},{"attributes":{"name":"Hermina Stoltenberg","age":56,"location":"Cartercester"}},{"attributes":{"name":"Bradford Hackett","age":29,"location":"Lake Dakota"}},{"attributes":{"name":"Sandy Predovic","age":31,"location":"Mullerton"}},{"attributes":{"name":"Tracey Lebsack","age":27,"location":"Roswell"}},{"attributes":{"name":"Paolo Langosh","age":53,"location":"Flocester"}},{"attributes":{"name":"Susie Crona IV","age":42,"location":"Port Eladiochester"}},{"attributes":{"name":"Louis Kreiger","age":47,"location":"Kylerport"}},{"attributes":{"name":"Mia Price","age":73,"location":"Gildastead"}},{"attributes":{"name":"Amber Grant V","age":58,"location":"Destinstead"}},{"attributes":{"name":"Danielle Jones","age":67,"location":"Jordynfort"}},{"attributes":{"name":"Dr. Sabrina Hahn III","age":57,"location":"New Gillian"}},{"attributes":{"name":"Taylor Vandervort","age":63,"location":"Simonisstead"}},{"attributes":{"name":"Dr. Clayton Bosco","age":24,"location":"East Tyree"}},{"attributes":{"name":"Miss Kristen Feil","age":67,"location":"Port Kayli"}},{"attributes":{"name":"Sydnee Hessel","age":33,"location":"East Unashire"}},{"attributes":{"name":"Ruby Howe","age":41,"location":"Port Flavioberg"}},{"attributes":{"name":"Annamae Ruecker","age":41,"location":"Troyburgh"}},{"attributes":{"name":"Thomas Veum","age":73,"location":"North Elinorecester"}},{"attributes":{"name":"Karina Brakus","age":76,"location":"Archberg"}},{"attributes":{"name":"Miss Billie Kemmer","age":47,"location":"Tempe"}},{"attributes":{"name":"Marianna Reilly","age":33,"location":"North Lorenchester"}},{"attributes":{"name":"Rubie Hodkiewicz","age":52,"location":"O'Keefechester"}},{"attributes":{"name":"Toy Will","age":79,"location":"Juliannemouth"}},{"attributes":{"name":"Vicki Kihn","age":47,"location":"Killeen"}},{"attributes":{"name":"Muriel Kerluke","age":77,"location":"Chico"}},{"attributes":{"name":"Carole Will","age":38,"location":"North Jennyferborough"}},{"attributes":{"name":"Perry Jacobi","age":37,"location":"Osbornetown"}},{"attributes":{"name":"Judith Feest","age":60,"location":"Port Judsonbury"}},{"attributes":{"name":"Darron Cassin","age":62,"location":"East Troyfield"}},{"attributes":{"name":"Rickey Rippin","age":51,"location":"West Allis"}},{"attributes":{"name":"Jeremie Bailey","age":27,"location":"North Walterfort"}},{"attributes":{"name":"Doug Corwin PhD","age":35,"location":"Margaretbury"}},{"attributes":{"name":"Garett Tillman","age":48,"location":"Delphialand"}},{"attributes":{"name":"Dr. Chauncey Kutch","age":39,"location":"Missoula"}},{"attributes":{"name":"Miss Tyson Cartwright","age":54,"location":"South Jadeside"}},{"attributes":{"name":"Hayden Oberbrunner","age":19,"location":"Royal Oak"}},{"attributes":{"name":"Esther Green PhD","age":77,"location":"South Darion"}},{"attributes":{"name":"Lavina Bednar PhD","age":36,"location":"Middletown"}},{"attributes":{"name":"Tammy Marks","age":31,"location":"Port Blakechester"}},{"attributes":{"name":"Tricia Hane","age":69,"location":"Port Willy"}},{"attributes":{"name":"Miss Anastasia Crona","age":55,"location":"Larkinstead"}},{"attributes":{"name":"Rickey Sporer","age":34,"location":"Rocky Mount"}},{"attributes":{"name":"Olive Willms","age":59,"location":"North Johnnyland"}},{"attributes":{"name":"Alessandro Fisher","age":22,"location":"Beaumont"}},{"attributes":{"name":"Wilson Lehner III","age":39,"location":"Marleneberg"}},{"attributes":{"name":"Brad Baumbach-Kovacek","age":50,"location":"Reichelhaven"}},{"attributes":{"name":"Mrs. Debbie Wintheiser","age":31,"location":"South Marcoside"}},{"attributes":{"name":"Stanley Zieme","age":18,"location":"East Reuben"}},{"attributes":{"name":"Wilbur Wisozk","age":41,"location":"Lake Xanderstead"}},{"attributes":{"name":"Aubrey Runte","age":68,"location":"South Wilberville"}},{"attributes":{"name":"Mr. Luther Skiles","age":33,"location":"Pollichworth"}},{"attributes":{"name":"Yvonne Kerluke","age":60,"location":"Kiraside"}},{"attributes":{"name":"Shemar Gulgowski IV","age":70,"location":"Zulaufboro"}},{"attributes":{"name":"Ms. Alice Homenick","age":36,"location":"Birmingham"}},{"attributes":{"name":"Derek Heidenreich","age":50,"location":"Friedacester"}},{"attributes":{"name":"Rachelle Mertz","age":69,"location":"Fort Yvonne"}},{"attributes":{"name":"Antone Williamson","age":38,"location":"Glen Burnie"}},{"attributes":{"name":"Lynette Heller","age":61,"location":"Port Bryceberg"}},{"attributes":{"name":"Dr. Myra Lakin","age":36,"location":"East Felipaton"}},{"attributes":{"name":"Nathan Abshire","age":46,"location":"Lucianotown"}},{"attributes":{"name":"Philip Zulauf","age":71,"location":"Las Cruces"}},{"attributes":{"name":"Shari Willms","age":21,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Antonietta Fritsch","age":79,"location":"Cynthiaworth"}},{"attributes":{"name":"Antonette Feeney","age":47,"location":"North Lura"}},{"attributes":{"name":"Levi Klocko","age":25,"location":"New Haven"}},{"attributes":{"name":"Angelita Terry","age":30,"location":"Rochester"}},{"attributes":{"name":"Mrs. Jaime Cummings","age":37,"location":"Jarrellfort"}},{"attributes":{"name":"Jamie Powlowski","age":69,"location":"Hellertown"}},{"attributes":{"name":"Bill Kihn","age":67,"location":"Funkville"}},{"attributes":{"name":"May Bechtelar","age":68,"location":"Mollieborough"}},{"attributes":{"name":"Jenna Wisozk","age":71,"location":"Fort Armandohaven"}},{"attributes":{"name":"Aileen Dickinson","age":44,"location":"Hamilltown"}},{"attributes":{"name":"Rylee Larkin DVM","age":34,"location":"Lianaview"}},{"attributes":{"name":"Jarrell Balistreri","age":39,"location":"Jonatanport"}},{"attributes":{"name":"Constance Shields","age":73,"location":"Odessatown"}},{"attributes":{"name":"Cameron Emard","age":41,"location":"Waterbury"}},{"attributes":{"name":"Lyda Swaniawski","age":51,"location":"New Christbury"}},{"attributes":{"name":"Leo Quigley","age":30,"location":"Fort Jo"}},{"attributes":{"name":"Ursula Haag","age":35,"location":"Zacharyville"}},{"attributes":{"name":"Johnathan Swaniawski","age":71,"location":"Ethanmouth"}},{"attributes":{"name":"Saul Ritchie","age":37,"location":"East Jillian"}},{"attributes":{"name":"Emmanuelle Doyle","age":63,"location":"Wileymouth"}},{"attributes":{"name":"Clifton Hauck","age":19,"location":"Port Dusty"}},{"attributes":{"name":"Kay Abshire","age":67,"location":"Lake Raul"}},{"attributes":{"name":"Craig Kunze-Quigley","age":25,"location":"Enterprise"}},{"attributes":{"name":"Kelsi Jacobson","age":57,"location":"New Clarabelle"}},{"attributes":{"name":"Barbara Kshlerin","age":43,"location":"Port Nella"}},{"attributes":{"name":"Audrey Rempel","age":19,"location":"Reyesstead"}},{"attributes":{"name":"Laurie Schowalter-Satterfield","age":75,"location":"South Sierra"}},{"attributes":{"name":"Bonnie Jast","age":76,"location":"Trompland"}},{"attributes":{"name":"Lisette Grimes","age":25,"location":"Towson"}},{"attributes":{"name":"Rudolph Feil","age":72,"location":"Haleyside"}},{"attributes":{"name":"Joanna Jaskolski","age":80,"location":"Caguas"}},{"attributes":{"name":"Rubie Leannon","age":22,"location":"Fort Vidalmouth"}},{"attributes":{"name":"Dr. Freddie Thiel","age":46,"location":"Franeckiview"}},{"attributes":{"name":"Vincent Hettinger I","age":77,"location":"West Nettiechester"}},{"attributes":{"name":"Peggy Kulas","age":75,"location":"Jeramyfort"}},{"attributes":{"name":"Heloise Goyette-Lubowitz","age":41,"location":"Lake Leo"}},{"attributes":{"name":"Mr. Yolanda Robel","age":22,"location":"Port Betty"}},{"attributes":{"name":"Norma Hegmann MD","age":49,"location":"Port Magnoliaton"}},{"attributes":{"name":"Noemy Shields","age":62,"location":"New Donnellworth"}},{"attributes":{"name":"Dewey Bode","age":32,"location":"Ritchiehaven"}},{"attributes":{"name":"Miss Aidan Stracke","age":29,"location":"South Harleychester"}},{"attributes":{"name":"Myra Sauer","age":67,"location":"West Jolie"}},{"attributes":{"name":"Jonathan Schuster","age":54,"location":"Pagacport"}},{"attributes":{"name":"Florence Schroeder","age":44,"location":"Grapevine"}},{"attributes":{"name":"Emma Strosin Jr.","age":72,"location":"Vestaview"}},{"attributes":{"name":"Della Funk","age":47,"location":"Erdmanbury"}},{"attributes":{"name":"Jesse Terry","age":74,"location":"New Melvinaton"}},{"attributes":{"name":"Stacey Mayer","age":38,"location":"Corona"}},{"attributes":{"name":"Tabitha Senger","age":22,"location":"North Raheemshire"}},{"attributes":{"name":"Gayle Stoltenberg","age":34,"location":"South Kamille"}},{"attributes":{"name":"Orville Bechtelar","age":57,"location":"North Shannonland"}},{"attributes":{"name":"Adriana Hilll","age":75,"location":"Thompsonfield"}},{"attributes":{"name":"Eli Boehm","age":60,"location":"Herzogchester"}},{"attributes":{"name":"Hayley Collier","age":77,"location":"Casa Grande"}},{"attributes":{"name":"Deshaun Turcotte","age":47,"location":"Thomasmouth"}},{"attributes":{"name":"Ms. Sherman Green","age":60,"location":"Chattanooga"}},{"attributes":{"name":"Dorris Kunde DVM","age":29,"location":"Josiahstad"}},{"attributes":{"name":"Avery Schroeder","age":33,"location":"Lake Dewittfield"}},{"attributes":{"name":"Della Streich","age":70,"location":"Nolanchester"}},{"attributes":{"name":"Eula Goldner","age":70,"location":"San Antonio"}},{"attributes":{"name":"Sophie Bogisich","age":72,"location":"Fort Kurtis"}},{"attributes":{"name":"Dr. Aiden Mraz","age":54,"location":"Lake Amely"}},{"attributes":{"name":"Ruben Nikolaus","age":62,"location":"New Rachelle"}},{"attributes":{"name":"Tiara Keeling","age":29,"location":"La Habra"}},{"attributes":{"name":"Molly Treutel","age":34,"location":"Demetrisworth"}},{"attributes":{"name":"Amber McDermott","age":35,"location":"Tinatown"}},{"attributes":{"name":"Herman Sawayn","age":78,"location":"Beaverton"}},{"attributes":{"name":"Miss Marilyn Parker-Jakubowski","age":74,"location":"Buckridgecester"}},{"attributes":{"name":"Levi Wolf","age":31,"location":"North Louieshire"}},{"attributes":{"name":"Yvonne Durgan","age":30,"location":"North Darienborough"}},{"attributes":{"name":"Lester Morissette","age":47,"location":"Towneland"}},{"attributes":{"name":"Howell Paucek","age":62,"location":"Lake Elinor"}},{"attributes":{"name":"Paulette Bruen","age":78,"location":"Vincenzaberg"}},{"attributes":{"name":"Denise Ratke","age":44,"location":"Fort Daisyfield"}},{"attributes":{"name":"Annetta Mante-Klocko","age":58,"location":"North Aida"}},{"attributes":{"name":"Gertrude Smitham","age":51,"location":"Marleefurt"}},{"attributes":{"name":"Dr. Tyrell Stehr PhD","age":50,"location":"Hamilton"}},{"attributes":{"name":"Evan Schulist","age":64,"location":"East Mandy"}},{"attributes":{"name":"Barton Tremblay","age":42,"location":"South Alysson"}},{"attributes":{"name":"Verona Ryan","age":50,"location":"West Elouiseborough"}},{"attributes":{"name":"Cheyenne Schowalter","age":74,"location":"Lake Aylinhaven"}},{"attributes":{"name":"Jimmie Satterfield DVM","age":72,"location":"West Watsonfort"}},{"attributes":{"name":"Willard Dickinson","age":28,"location":"North Glenna"}},{"attributes":{"name":"Daryl Wehner","age":41,"location":"Port Henry"}},{"attributes":{"name":"Mrs. Carole Borer","age":21,"location":"Baumbachview"}},{"attributes":{"name":"Osborne Hettinger","age":47,"location":"East Kayden"}},{"attributes":{"name":"Kent Stark","age":19,"location":"West Shaniya"}},{"attributes":{"name":"Herbert Bartell","age":33,"location":"Eloychester"}},{"attributes":{"name":"Jerald Gutmann","age":60,"location":"Fort Prudence"}},{"attributes":{"name":"Mr. Lowell Hodkiewicz","age":51,"location":"Bradleyport"}},{"attributes":{"name":"Desiree West","age":20,"location":"Lake Noemi"}},{"attributes":{"name":"Dr. Claire Hackett","age":46,"location":"East Rachaelville"}},{"attributes":{"name":"Germaine Lakin","age":30,"location":"Lake Erichstad"}},{"attributes":{"name":"Jerald Bruen","age":46,"location":"Maggioport"}},{"attributes":{"name":"Tanya Johnston","age":25,"location":"Alpharetta"}},{"attributes":{"name":"Johnnie Kertzmann Sr.","age":75,"location":"Port Jennie"}},{"attributes":{"name":"Bryant Ebert","age":75,"location":"Brakusland"}},{"attributes":{"name":"Cathy Boyle","age":65,"location":"Hankport"}},{"attributes":{"name":"Cordell Boyle III","age":45,"location":"Nathenworth"}},{"attributes":{"name":"Jeremy Bins","age":41,"location":"McLaughlinton"}},{"attributes":{"name":"Greg Yundt I","age":42,"location":"Schuppemouth"}},{"attributes":{"name":"Dulce Marks","age":20,"location":"Cambridge"}},{"attributes":{"name":"Jakayla Ortiz","age":42,"location":"North Osborne"}},{"attributes":{"name":"Joanny Purdy","age":25,"location":"Palm Springs"}},{"attributes":{"name":"Tyler Kilback","age":45,"location":"Tulsa"}},{"attributes":{"name":"Dr. Maureen Cronin","age":62,"location":"Virginiaburgh"}},{"attributes":{"name":"Wilson O'Keefe","age":64,"location":"Port Arthur"}},{"attributes":{"name":"Dr. Paula Reichel","age":71,"location":"Lake Jovanny"}},{"attributes":{"name":"Gene Oberbrunner","age":20,"location":"Lake Arvel"}},{"attributes":{"name":"Marvin Berge","age":62,"location":"Port Bernitachester"}},{"attributes":{"name":"Joan Wilderman","age":36,"location":"Gibsonburgh"}},{"attributes":{"name":"Kristine Wisozk","age":74,"location":"Darehaven"}},{"attributes":{"name":"Beatrice Jakubowski","age":24,"location":"Dashawnberg"}},{"attributes":{"name":"Darby Keeling","age":79,"location":"East Mariehaven"}},{"attributes":{"name":"Jacob Mueller","age":75,"location":"Grand Rapids"}},{"attributes":{"name":"Erin Haley","age":67,"location":"Fall River"}},{"attributes":{"name":"Jenna Graham","age":36,"location":"Ferrystead"}},{"attributes":{"name":"Roger Denesik","age":43,"location":"Lake Arielleboro"}},{"attributes":{"name":"Patty Kemmer","age":28,"location":"Lupeton"}},{"attributes":{"name":"Helena Rolfson","age":67,"location":"Janiyafurt"}},{"attributes":{"name":"Carrie Treutel","age":55,"location":"Tulsa"}},{"attributes":{"name":"Guy Hermiston III","age":32,"location":"Port Jessieland"}},{"attributes":{"name":"Candice Buckridge","age":60,"location":"Rosellaberg"}},{"attributes":{"name":"Dr. Madison Halvorson III","age":35,"location":"Morarport"}},{"attributes":{"name":"Andre McKenzie-Jacobson","age":57,"location":"Fort Brannon"}},{"attributes":{"name":"Johnathan Langosh MD","age":71,"location":"Port Vincenzoview"}},{"attributes":{"name":"Aurelia Hills","age":46,"location":"Altoona"}},{"attributes":{"name":"Bessie Kozey","age":43,"location":"Denver"}},{"attributes":{"name":"Dr. Carlton Vandervort","age":67,"location":"East Verdaworth"}},{"attributes":{"name":"Lynda Cruickshank DVM","age":55,"location":"West Johnnie"}},{"attributes":{"name":"Preston Streich","age":72,"location":"Everetteberg"}},{"attributes":{"name":"Buford Kerluke Jr.","age":36,"location":"West Amira"}},{"attributes":{"name":"Monte Quigley","age":42,"location":"Hazelmouth"}},{"attributes":{"name":"Amira Grant","age":31,"location":"Swiftworth"}},{"attributes":{"name":"Laurence Zulauf","age":69,"location":"West Medaboro"}},{"attributes":{"name":"David Effertz","age":33,"location":"Hazlestad"}},{"attributes":{"name":"Jed Schuppe","age":22,"location":"Riverton"}},{"attributes":{"name":"Rachel Parisian-Sanford","age":80,"location":"Ornside"}},{"attributes":{"name":"Geoffrey Rosenbaum","age":44,"location":"Lake Gretchen"}},{"attributes":{"name":"Daniel Hackett DVM","age":70,"location":"Lake Bonnie"}},{"attributes":{"name":"Misty Ondricka","age":61,"location":"Moore"}},{"attributes":{"name":"Kristy Pouros","age":52,"location":"South Melanytown"}},{"attributes":{"name":"Dr. Miguel Gorczany","age":64,"location":"South Irving"}},{"attributes":{"name":"Ann Zieme","age":60,"location":"Arlenechester"}},{"attributes":{"name":"Mr. Harvey Parisian","age":42,"location":"New Tomhaven"}},{"attributes":{"name":"Bessie Breitenberg","age":31,"location":"Fayburgh"}},{"attributes":{"name":"Delia Leannon","age":45,"location":"West Gissellechester"}},{"attributes":{"name":"Percy Cremin","age":31,"location":"Aufderharstad"}},{"attributes":{"name":"Mrs. Myra Schinner","age":67,"location":"East Paxtonview"}},{"attributes":{"name":"Carlos Fritsch MD","age":28,"location":"Weissnatview"}},{"attributes":{"name":"Merle Lebsack","age":76,"location":"Ankundingside"}},{"attributes":{"name":"Taylor Gislason","age":73,"location":"South Halle"}},{"attributes":{"name":"Ollie Lakin","age":68,"location":"Handchester"}},{"attributes":{"name":"Marcella Grimes IV","age":58,"location":"South Sylvester"}},{"attributes":{"name":"Erick Brakus","age":19,"location":"Reynoldport"}},{"attributes":{"name":"Antone Barrows DVM","age":37,"location":"Fort Sandyburgh"}},{"attributes":{"name":"Francis Koepp","age":58,"location":"Kyrahaven"}},{"attributes":{"name":"Alejandro Schulist","age":69,"location":"Randallton"}},{"attributes":{"name":"Faith Stokes","age":26,"location":"Reynaburgh"}},{"attributes":{"name":"Noemie Strosin","age":49,"location":"Port Tabithaberg"}},{"attributes":{"name":"Melvin Homenick","age":32,"location":"Zoeycester"}},{"attributes":{"name":"Sandy Lemke","age":63,"location":"Elinorberg"}},{"attributes":{"name":"Dr. Sue Weimann","age":65,"location":"Terrymouth"}},{"attributes":{"name":"Mr. Lance Satterfield III","age":60,"location":"Lake Rosemaryborough"}},{"attributes":{"name":"Abby Champlin","age":58,"location":"Southaven"}},{"attributes":{"name":"Armando Berge","age":64,"location":"North Laurence"}},{"attributes":{"name":"Sim O'Reilly-Marvin","age":58,"location":"East Felicity"}},{"attributes":{"name":"Lori Hammes","age":41,"location":"South Gate"}},{"attributes":{"name":"Ashley Strosin","age":34,"location":"Josiahside"}},{"attributes":{"name":"Domingo Brakus","age":18,"location":"Kshlerinborough"}},{"attributes":{"name":"Wilfred Leffler","age":25,"location":"Fall River"}},{"attributes":{"name":"Felix Champlin","age":38,"location":"Wilson"}},{"attributes":{"name":"Willie Dietrich","age":65,"location":"Grapevine"}},{"attributes":{"name":"Miss Nettie Kutch","age":19,"location":"Port Ali"}},{"attributes":{"name":"Jodi Keebler","age":28,"location":"Port Leonoraboro"}},{"attributes":{"name":"Tanya Spencer","age":78,"location":"East Eugeniashire"}},{"attributes":{"name":"Vincent Schamberger","age":22,"location":"Dickensview"}},{"attributes":{"name":"Albert Hane","age":34,"location":"Fort Harold"}},{"attributes":{"name":"Van Greenholt DVM","age":52,"location":"Grantchester"}},{"attributes":{"name":"Doug Hilpert MD","age":63,"location":"Schroederchester"}},{"attributes":{"name":"Joshua Stark-Padberg","age":37,"location":"North Markmouth"}},{"attributes":{"name":"Ms. Chris Krajcik","age":60,"location":"San Rafael"}},{"attributes":{"name":"Fabiola Rempel","age":28,"location":"West Narcisohaven"}},{"attributes":{"name":"Carolyn Beatty","age":43,"location":"Eleanorastead"}},{"attributes":{"name":"Brittany Breitenberg","age":36,"location":"Santa Fe"}},{"attributes":{"name":"Vanessa Jast","age":67,"location":"Fargo"}},{"attributes":{"name":"Miss Maurice Gerhold","age":39,"location":"Gardena"}},{"attributes":{"name":"Mr. Rochelle Sporer","age":41,"location":"West Torrey"}},{"attributes":{"name":"Larry Stiedemann","age":79,"location":"Roanoke"}},{"attributes":{"name":"Inez Koss","age":79,"location":"Clearwater"}},{"attributes":{"name":"Ira Tremblay","age":51,"location":"Lake Felicitycester"}},{"attributes":{"name":"Stanley Marks","age":61,"location":"Lake Demetristown"}},{"attributes":{"name":"Angelina Toy","age":24,"location":"West Kendra"}},{"attributes":{"name":"Rodolfo Murphy","age":42,"location":"Marilyneshire"}},{"attributes":{"name":"Maryann Hudson","age":27,"location":"Fort Nikotown"}},{"attributes":{"name":"Maiya Kling","age":60,"location":"DeSoto"}},{"attributes":{"name":"Mrs. Willie Hilll","age":65,"location":"Gusthaven"}},{"attributes":{"name":"Dangelo Lubowitz","age":59,"location":"New Rhiannon"}},{"attributes":{"name":"Jadyn Franecki","age":65,"location":"Conroe"}},{"attributes":{"name":"Destin Yost","age":42,"location":"South Tavares"}},{"attributes":{"name":"Celia Boyer","age":52,"location":"Fort Ethelshire"}},{"attributes":{"name":"Arch Douglas","age":38,"location":"Fort Roosevelt"}},{"attributes":{"name":"Faye Klocko","age":54,"location":"State College"}},{"attributes":{"name":"Deonte Kassulke","age":58,"location":"Lake Alysson"}},{"attributes":{"name":"Albert Blick","age":38,"location":"Boston"}},{"attributes":{"name":"Joaquin Kutch","age":59,"location":"New Angus"}},{"attributes":{"name":"Judah Macejkovic","age":65,"location":"North Laviniachester"}},{"attributes":{"name":"Rollin Marvin","age":45,"location":"Sammamish"}},{"attributes":{"name":"Dr. Tanya Brekke","age":28,"location":"Lake Koryburgh"}},{"attributes":{"name":"Miss Bernadette Huel","age":54,"location":"North Brionna"}},{"attributes":{"name":"Pearlie Stiedemann-Howell","age":36,"location":"Purdymouth"}},{"attributes":{"name":"Lottie Schuster-Deckow","age":72,"location":"Taunton"}},{"attributes":{"name":"Walter Stark","age":42,"location":"Fort Zakary"}},{"attributes":{"name":"Estel Tillman","age":75,"location":"Walkerton"}},{"attributes":{"name":"Jason Mills","age":42,"location":"Ericchester"}},{"attributes":{"name":"Isaac Kerluke","age":63,"location":"Lake Loristead"}},{"attributes":{"name":"Judson Goodwin","age":29,"location":"North Henri"}},{"attributes":{"name":"Robin Gerlach","age":78,"location":"Newport Beach"}},{"attributes":{"name":"Myrtle Murphy","age":67,"location":"West Seneca"}},{"attributes":{"name":"Chelsea Kuvalis","age":32,"location":"East Shawn"}},{"attributes":{"name":"Breana Haley","age":40,"location":"Schmittboro"}},{"attributes":{"name":"Miss Bobby Hirthe-Cormier","age":21,"location":"Azusa"}},{"attributes":{"name":"Myrtle Hahn PhD","age":35,"location":"Washington"}},{"attributes":{"name":"Mr. Jamison Turcotte","age":40,"location":"New Frederick"}},{"attributes":{"name":"Halie Goldner","age":24,"location":"North Xzavierland"}},{"attributes":{"name":"Edith Batz","age":60,"location":"Rodriguezborough"}},{"attributes":{"name":"Benjamin Graham","age":60,"location":"Colton"}},{"attributes":{"name":"Mrs. Shayna Gulgowski","age":43,"location":"Romanshire"}},{"attributes":{"name":"Pat Dibbert V","age":45,"location":"O'Keefestead"}},{"attributes":{"name":"Manuel Hansen","age":53,"location":"Port Meghancester"}},{"attributes":{"name":"Myrtle Johns-Mann","age":56,"location":"Anissaborough"}},{"attributes":{"name":"Kent Cassin","age":43,"location":"Lueilwitzmouth"}},{"attributes":{"name":"Casey Tillman","age":37,"location":"Esmeraldaborough"}},{"attributes":{"name":"Cedric Pagac","age":50,"location":"Emeryberg"}},{"attributes":{"name":"Levi Kozey","age":44,"location":"Jacksonville"}},{"attributes":{"name":"Karen Witting","age":23,"location":"Port Candidoburgh"}},{"attributes":{"name":"Blanche McCullough","age":75,"location":"Gulgowskiside"}},{"attributes":{"name":"Ricardo Stanton","age":53,"location":"Parisianshire"}},{"attributes":{"name":"Jesus Will","age":22,"location":"Lebsackland"}},{"attributes":{"name":"Gregory Terry IV","age":71,"location":"Solonfield"}},{"attributes":{"name":"Miss Ludie Cruickshank","age":23,"location":"Zackaryborough"}},{"attributes":{"name":"Dr. Marcos Mann","age":50,"location":"Davisboro"}},{"attributes":{"name":"Franklin Bauch","age":18,"location":"Graceshire"}},{"attributes":{"name":"Hadley Towne IV","age":54,"location":"New Phyllisside"}},{"attributes":{"name":"Jimmy Zboncak","age":78,"location":"Skileston"}},{"attributes":{"name":"Kenny Russel","age":34,"location":"Lake Nina"}},{"attributes":{"name":"Jameson Herman","age":50,"location":"Rebekaburgh"}},{"attributes":{"name":"Mr. Karelle Hodkiewicz","age":50,"location":"Pasco"}},{"attributes":{"name":"Rosalia Dach","age":46,"location":"New Alycia"}},{"attributes":{"name":"Duane Kiehn","age":66,"location":"Berwyn"}},{"attributes":{"name":"Raleigh King","age":62,"location":"Fort Dustyfurt"}},{"attributes":{"name":"Pasquale Berge","age":69,"location":"Lilianworth"}},{"attributes":{"name":"Aubree Hahn","age":49,"location":"Fort Letha"}},{"attributes":{"name":"Preston Walter II","age":67,"location":"Wiegandfort"}},{"attributes":{"name":"Donna Donnelly","age":25,"location":"Melbourne"}},{"attributes":{"name":"Florence Schowalter","age":55,"location":"Union City"}},{"attributes":{"name":"Della Waters","age":27,"location":"New Salvador"}},{"attributes":{"name":"Frederick Stiedemann","age":68,"location":"Madelynnside"}},{"attributes":{"name":"Martin Crooks Sr.","age":33,"location":"Toms River"}},{"attributes":{"name":"Lurline Greenholt","age":59,"location":"Alexhaven"}},{"attributes":{"name":"Wilhelmine Sipes IV","age":25,"location":"Jaydaside"}},{"attributes":{"name":"Mrs. Eloise Doyle","age":32,"location":"Port Leland"}},{"attributes":{"name":"Burdette Adams","age":48,"location":"Port Ansel"}},{"attributes":{"name":"Aurelia Klein","age":23,"location":"Kuphalfield"}},{"attributes":{"name":"Allan Jaskolski I","age":63,"location":"Compton"}},{"attributes":{"name":"Ms. Logan Krajcik","age":56,"location":"Port Londonborough"}},{"attributes":{"name":"Ken McDermott","age":34,"location":"East Ulises"}},{"attributes":{"name":"Doris Mayert-Crona","age":60,"location":"East Kaleychester"}},{"attributes":{"name":"Bradford Collier","age":49,"location":"Cullenfort"}},{"attributes":{"name":"Carmen Conroy","age":28,"location":"Ardithstad"}},{"attributes":{"name":"Manuel Wolff","age":55,"location":"Tarynville"}},{"attributes":{"name":"Shanie Beier","age":58,"location":"Grand Prairie"}},{"attributes":{"name":"Mrs. Carrie Hilll","age":75,"location":"South Keaton"}},{"attributes":{"name":"Dr. Chaz Jacobson","age":50,"location":"Rockford"}},{"attributes":{"name":"Sven Hills","age":75,"location":"Jettland"}},{"attributes":{"name":"Vella Cassin","age":62,"location":"Gracielaside"}},{"attributes":{"name":"Kristina Ruecker","age":47,"location":"Corwinworth"}},{"attributes":{"name":"Toby Braun","age":45,"location":"Cristfurt"}},{"attributes":{"name":"Toby Hintz","age":62,"location":"Montgomery"}},{"attributes":{"name":"Tricia Hilll","age":51,"location":"Joeboro"}},{"attributes":{"name":"Eriberto Spinka MD","age":60,"location":"Lake Joanie"}},{"attributes":{"name":"Miss Ruth Smitham","age":75,"location":"North Mavisbury"}},{"attributes":{"name":"Joan Bartoletti","age":43,"location":"Port Carmela"}},{"attributes":{"name":"Joey Morissette","age":73,"location":"Khalidfurt"}},{"attributes":{"name":"Miss Tammy Daniel","age":32,"location":"Lake Edythefield"}},{"attributes":{"name":"Cheyanne Hansen","age":37,"location":"New Ross"}},{"attributes":{"name":"Ms. Santos Conn","age":78,"location":"Draper"}},{"attributes":{"name":"Cornelius Howell Sr.","age":47,"location":"East Napoleon"}},{"attributes":{"name":"Catherine King","age":53,"location":"Lake Moisesfurt"}},{"attributes":{"name":"Diane Pagac","age":39,"location":"Port Eldora"}},{"attributes":{"name":"Ricky Brekke","age":21,"location":"North Hermina"}},{"attributes":{"name":"Jeffery Hilll","age":64,"location":"Fort Karson"}},{"attributes":{"name":"Marty Kling","age":30,"location":"Bloomington"}},{"attributes":{"name":"Maggie Erdman","age":56,"location":"Haleybury"}},{"attributes":{"name":"Brooke Bogan","age":60,"location":"Lake Wade"}},{"attributes":{"name":"Cecil Friesen","age":56,"location":"West Maribel"}},{"attributes":{"name":"Joe Green","age":43,"location":"Lake Allene"}},{"attributes":{"name":"Sylvan Hammes","age":61,"location":"Duncanboro"}},{"attributes":{"name":"Enrico Huel","age":40,"location":"Howebury"}},{"attributes":{"name":"Kendra Hackett","age":79,"location":"MacGyverfield"}},{"attributes":{"name":"Penelope Hayes","age":69,"location":"West Annetta"}},{"attributes":{"name":"Harold O'Connell","age":20,"location":"Krisport"}},{"attributes":{"name":"Luther Durgan","age":71,"location":"North Conner"}},{"attributes":{"name":"Thomas Green","age":31,"location":"Elmhurst"}},{"attributes":{"name":"Nedra Sanford","age":75,"location":"South Imogene"}},{"attributes":{"name":"Rickey Terry","age":62,"location":"Lake Destinview"}},{"attributes":{"name":"Suzanne Walker","age":36,"location":"Fort Alexanefield"}},{"attributes":{"name":"Andre Upton","age":36,"location":"Bowling Green"}},{"attributes":{"name":"Walter Grimes","age":59,"location":"Schaeferfield"}},{"attributes":{"name":"Mr. Camden Hickle","age":25,"location":"Jasminfort"}},{"attributes":{"name":"Mr. Marc Ankunding","age":25,"location":"South Miracle"}},{"attributes":{"name":"Mr. Cassandre Erdman","age":61,"location":"Camden"}},{"attributes":{"name":"Casey Wintheiser","age":64,"location":"Jenaton"}},{"attributes":{"name":"Ike Kris","age":51,"location":"Durham"}},{"attributes":{"name":"Macy Prosacco","age":80,"location":"Nicklausland"}},{"attributes":{"name":"Pauline Torphy","age":67,"location":"North Gillianview"}},{"attributes":{"name":"Makenna Schaden","age":21,"location":"East Alisonboro"}},{"attributes":{"name":"Krystal Veum","age":70,"location":"Newton"}},{"attributes":{"name":"Helen Mills","age":59,"location":"Lake Dewittcester"}},{"attributes":{"name":"Monica McLaughlin","age":51,"location":"Turnerland"}},{"attributes":{"name":"Miss Elizabeth Nitzsche","age":51,"location":"O'Connerstead"}},{"attributes":{"name":"Peggy Lesch Jr.","age":40,"location":"Lowellfort"}},{"attributes":{"name":"Kevon Toy","age":57,"location":"Champaign"}},{"attributes":{"name":"Mr. Clyde Larson","age":57,"location":"New Brunswick"}},{"attributes":{"name":"Fatima Pfeffer","age":32,"location":"South Ernaport"}},{"attributes":{"name":"Mandy Hane","age":73,"location":"Port Ambershire"}},{"attributes":{"name":"Janet Connelly","age":23,"location":"Theresecester"}},{"attributes":{"name":"Dean Kreiger","age":73,"location":"Haneside"}},{"attributes":{"name":"Matilda Marquardt DVM","age":65,"location":"Kochfort"}},{"attributes":{"name":"Elouise Conroy","age":67,"location":"Dickiville"}},{"attributes":{"name":"Harry Bahringer","age":34,"location":"Port Kameron"}},{"attributes":{"name":"Wendy Stokes","age":20,"location":"West Hudson"}},{"attributes":{"name":"Diane Reichel","age":20,"location":"Orlandcester"}},{"attributes":{"name":"Izabella Leffler","age":79,"location":"South Ellastead"}},{"attributes":{"name":"Randall O'Keefe III","age":50,"location":"Allieburgh"}},{"attributes":{"name":"Lorraine Lebsack","age":26,"location":"Lake Mikaylaborough"}},{"attributes":{"name":"Ms. Jennie Crooks","age":63,"location":"Clifton"}},{"attributes":{"name":"Rafael Botsford","age":38,"location":"Emardshire"}},{"attributes":{"name":"Brad Johnston","age":54,"location":"Lake Beryl"}},{"attributes":{"name":"Peggy Douglas","age":30,"location":"Port Danialshire"}},{"attributes":{"name":"Jefferey Rau","age":44,"location":"South Carolineland"}},{"attributes":{"name":"Everette Effertz","age":19,"location":"Stephanyfield"}},{"attributes":{"name":"Aubrey Roberts","age":65,"location":"Jadenside"}},{"attributes":{"name":"Roxanne Haley","age":79,"location":"Cormierboro"}},{"attributes":{"name":"Mrs. Kristie Spencer","age":51,"location":"North Estell"}},{"attributes":{"name":"Diana Murazik","age":74,"location":"West Margaretcester"}},{"attributes":{"name":"Dixie Wiegand-Bruen","age":60,"location":"Port Tysonfurt"}},{"attributes":{"name":"Payton Schmitt","age":65,"location":"Yolandaberg"}},{"attributes":{"name":"Monroe Stoltenberg","age":39,"location":"New Lethastead"}},{"attributes":{"name":"Guadalupe Stanton","age":41,"location":"New Clotilde"}},{"attributes":{"name":"Garry O'Conner","age":80,"location":"North Mortimer"}},{"attributes":{"name":"Dakota Schaden","age":80,"location":"Lake Arvel"}},{"attributes":{"name":"Pearl Deckow","age":51,"location":"Torrance"}},{"attributes":{"name":"Sam Crist","age":54,"location":"Bechtelarchester"}},{"attributes":{"name":"Hubert Ankunding-O'Connell","age":45,"location":"Miami"}},{"attributes":{"name":"Sadye Hettinger","age":59,"location":"Gibsonton"}},{"attributes":{"name":"Miss Lacy Legros","age":61,"location":"Fort Karson"}},{"attributes":{"name":"Dr. Jesus Rohan","age":47,"location":"Pietrohaven"}},{"attributes":{"name":"Wilfredo Kuhic-Harvey","age":61,"location":"New Corbin"}},{"attributes":{"name":"Damon Howell","age":78,"location":"East Selinaville"}},{"attributes":{"name":"Lois Weimann","age":44,"location":"Dexterton"}},{"attributes":{"name":"Fletcher Kulas-Schultz","age":67,"location":"Tillmanmouth"}},{"attributes":{"name":"Bridgette Koss","age":80,"location":"Lake Kian"}},{"attributes":{"name":"Tina Wiegand","age":36,"location":"Fort Jewellbury"}},{"attributes":{"name":"Cory Renner","age":18,"location":"East Emilieshire"}},{"attributes":{"name":"Kelley Prosacco","age":23,"location":"Francotown"}},{"attributes":{"name":"Aaron Langosh","age":20,"location":"Fort Edmondstad"}},{"attributes":{"name":"Nestor Ebert","age":74,"location":"Brodyfurt"}},{"attributes":{"name":"Hiram Stehr","age":31,"location":"Gislasonburgh"}},{"attributes":{"name":"Mathew Lind","age":47,"location":"Pagacville"}},{"attributes":{"name":"Jose Quitzon","age":19,"location":"Port Adeliaville"}},{"attributes":{"name":"Josh Gorczany","age":70,"location":"Pembroke Pines"}},{"attributes":{"name":"Travis Lakin","age":80,"location":"Baltimore"}},{"attributes":{"name":"Jude Will","age":56,"location":"Molliechester"}},{"attributes":{"name":"Ethel Cole","age":76,"location":"Ortizborough"}},{"attributes":{"name":"Ann Rau","age":42,"location":"New Gia"}},{"attributes":{"name":"Astrid Wolff","age":48,"location":"Lake Eudorastad"}},{"attributes":{"name":"Elisa Kemmer I","age":28,"location":"West Rasheed"}},{"attributes":{"name":"Michaela Strosin","age":43,"location":"Marcelburgh"}},{"attributes":{"name":"Jennifer Dicki","age":71,"location":"Perth Amboy"}},{"attributes":{"name":"Rene Mertz","age":38,"location":"South Rafaela"}},{"attributes":{"name":"Misael Smitham","age":59,"location":"Ethelfurt"}},{"attributes":{"name":"Lola Rippin","age":36,"location":"Watsonchester"}},{"attributes":{"name":"Mr. Aletha O'Keefe","age":54,"location":"Gertrudeton"}},{"attributes":{"name":"Tiffany Parisian","age":35,"location":"Winstonborough"}},{"attributes":{"name":"Bryce MacGyver","age":63,"location":"Kleinside"}},{"attributes":{"name":"Ms. Sheri Gulgowski","age":58,"location":"Andersonshire"}},{"attributes":{"name":"Dr. Sidney Ruecker Sr.","age":45,"location":"Collierboro"}},{"attributes":{"name":"Danielle Zboncak","age":62,"location":"Oklahoma City"}},{"attributes":{"name":"Jeffery Wyman","age":72,"location":"Huntington"}},{"attributes":{"name":"Jamal Jakubowski","age":80,"location":"Wolffort"}},{"attributes":{"name":"Oscar Reichel","age":58,"location":"Hahntown"}},{"attributes":{"name":"Lindsay Morissette","age":78,"location":"Lake Elody"}},{"attributes":{"name":"Shelley Stracke","age":35,"location":"Chaddside"}},{"attributes":{"name":"Barry Hayes","age":62,"location":"East Arturo"}},{"attributes":{"name":"Jacob Bednar I","age":32,"location":"Hanford"}},{"attributes":{"name":"Domenica Pfeffer","age":48,"location":"North Samanta"}},{"attributes":{"name":"Gordon Ernser","age":77,"location":"Winifredville"}},{"attributes":{"name":"Lessie Walter","age":69,"location":"Lake Jadon"}},{"attributes":{"name":"Keith Turner","age":58,"location":"North Tara"}},{"attributes":{"name":"Gerald Schimmel","age":75,"location":"Robbiechester"}},{"attributes":{"name":"Porter Gorczany","age":45,"location":"Boynton Beach"}},{"attributes":{"name":"Ellis Stark","age":58,"location":"Wichita"}},{"attributes":{"name":"Alan Turner","age":75,"location":"Doyleport"}},{"attributes":{"name":"Jeff Graham","age":55,"location":"Port Melanyville"}},{"attributes":{"name":"Gunner Mertz Jr.","age":28,"location":"Sydnieberg"}},{"attributes":{"name":"Ben MacGyver","age":79,"location":"Ashlyland"}},{"attributes":{"name":"Dr. Nina Kutch DVM","age":75,"location":"New Marielafort"}},{"attributes":{"name":"Roderick Tremblay","age":47,"location":"Abbottland"}},{"attributes":{"name":"Roderick Beier","age":31,"location":"South Whittier"}},{"attributes":{"name":"Shakira Deckow","age":75,"location":"Chapel Hill"}},{"attributes":{"name":"Wilford Kassulke","age":63,"location":"Oro Valley"}},{"attributes":{"name":"Hilton Ward","age":52,"location":"Nathenshire"}},{"attributes":{"name":"Ms. Marcos Bayer","age":18,"location":"Krisport"}},{"attributes":{"name":"Brenna Towne","age":40,"location":"Reymundoshire"}},{"attributes":{"name":"Irene Glover","age":74,"location":"Darebury"}},{"attributes":{"name":"Miguel Wolff","age":58,"location":"Purdytown"}},{"attributes":{"name":"Ken Heller","age":46,"location":"Carmeloboro"}},{"attributes":{"name":"Dr. Verlie Borer II","age":52,"location":"Trefort"}},{"attributes":{"name":"Sandra Wehner","age":21,"location":"Hintzfield"}},{"attributes":{"name":"Michelle Senger","age":27,"location":"New Carlee"}},{"attributes":{"name":"Rick Conroy I","age":22,"location":"Wilfridboro"}},{"attributes":{"name":"Deanna Schneider","age":20,"location":"Port Thadburgh"}},{"attributes":{"name":"Cora Swift","age":61,"location":"Hartford"}},{"attributes":{"name":"Wm Corkery","age":34,"location":"New Sagestad"}},{"attributes":{"name":"Samantha Turcotte","age":51,"location":"Roweshire"}},{"attributes":{"name":"Fernando Yundt IV","age":54,"location":"St. Louis"}},{"attributes":{"name":"Dedric Herman","age":30,"location":"Connellyshire"}},{"attributes":{"name":"Miss Lorraine Armstrong","age":31,"location":"East Lillaland"}},{"attributes":{"name":"Gregory Murazik","age":59,"location":"East Orieworth"}},{"attributes":{"name":"Dr. Kerry Adams","age":39,"location":"Quintenfort"}},{"attributes":{"name":"Ramona Hoeger","age":35,"location":"New Rochelle"}},{"attributes":{"name":"Darryl Cole","age":52,"location":"Erdmanworth"}},{"attributes":{"name":"Jaeden Kertzmann I","age":72,"location":"Fort Leland"}},{"attributes":{"name":"Nicolas Kling","age":68,"location":"West Sacramento"}},{"attributes":{"name":"Arlene Beer PhD","age":20,"location":"Kingshire"}},{"attributes":{"name":"Emiliano Dare","age":41,"location":"Fort Yoshikoland"}},{"attributes":{"name":"Bob Jacobi MD","age":44,"location":"Griffinstead"}},{"attributes":{"name":"Bridget Deckow","age":36,"location":"Dwightstad"}},{"attributes":{"name":"Rosie Bashirian","age":60,"location":"West Dameon"}},{"attributes":{"name":"Creola Padberg","age":64,"location":"Gusikowskiborough"}},{"attributes":{"name":"Dr. Isom Jast","age":47,"location":"South Jovanshire"}},{"attributes":{"name":"Bridget Hackett V","age":73,"location":"Hirtheland"}},{"attributes":{"name":"Joyce Orn","age":54,"location":"Kilbackburgh"}},{"attributes":{"name":"Damian Schuster","age":62,"location":"Port Hertafield"}},{"attributes":{"name":"Hilario Haley","age":73,"location":"Viviennetown"}},{"attributes":{"name":"Deanna Hane","age":55,"location":"Leschtown"}},{"attributes":{"name":"Rex McLaughlin","age":28,"location":"Mertzbury"}},{"attributes":{"name":"Immanuel Davis","age":78,"location":"East Hankhaven"}},{"attributes":{"name":"Salvatore Gleason","age":31,"location":"Bradleyworth"}},{"attributes":{"name":"Hannah Jakubowski","age":37,"location":"Wittingbury"}},{"attributes":{"name":"Raul Hauck II","age":45,"location":"West Tamaraport"}},{"attributes":{"name":"Friedrich Dibbert","age":53,"location":"Schillerboro"}},{"attributes":{"name":"Frank Hamill","age":70,"location":"El Monte"}},{"attributes":{"name":"Edmund Schmeler","age":25,"location":"Braunfurt"}},{"attributes":{"name":"Reginald Schumm","age":20,"location":"Daytona Beach"}},{"attributes":{"name":"Tomas Braun","age":59,"location":"Satterfieldcester"}},{"attributes":{"name":"Ted Bergnaum","age":55,"location":"Wisokyfurt"}},{"attributes":{"name":"Pearline Runolfsdottir","age":68,"location":"Mannland"}},{"attributes":{"name":"Cleveland Kohler V","age":47,"location":"Syracuse"}},{"attributes":{"name":"Edwin Leannon","age":50,"location":"North Barrettport"}},{"attributes":{"name":"Guillermo Hills","age":53,"location":"Daltonberg"}},{"attributes":{"name":"Dr. Amalia Buckridge","age":18,"location":"Champlinchester"}},{"attributes":{"name":"Margarita Brekke","age":33,"location":"Bergstromcester"}},{"attributes":{"name":"Maggie Boyle","age":72,"location":"East Carter"}},{"attributes":{"name":"Jeannette Stanton","age":45,"location":"Beerborough"}},{"attributes":{"name":"Felton Maggio","age":44,"location":"Purdyport"}},{"attributes":{"name":"Earline Baumbach","age":76,"location":"Apex"}},{"attributes":{"name":"Jenny Kuhlman","age":31,"location":"East Vinnie"}},{"attributes":{"name":"Doug Hirthe","age":25,"location":"North Reyeston"}},{"attributes":{"name":"Jill Schowalter","age":66,"location":"East Clevebury"}},{"attributes":{"name":"Kelly Breitenberg Jr.","age":73,"location":"South Eugene"}},{"attributes":{"name":"Rogelio Hand","age":29,"location":"Noblesville"}},{"attributes":{"name":"Dannie Kutch","age":52,"location":"Nolantown"}},{"attributes":{"name":"Maggie Mayert","age":80,"location":"Wardstead"}},{"attributes":{"name":"Lonny Emmerich","age":28,"location":"North Earlineberg"}},{"attributes":{"name":"Grace Russel III","age":52,"location":"Charleyview"}},{"attributes":{"name":"Odie Krajcik","age":35,"location":"Sioux City"}},{"attributes":{"name":"Asha Jones","age":25,"location":"South Jayda"}},{"attributes":{"name":"Miss Holly Purdy","age":24,"location":"Batzberg"}},{"attributes":{"name":"Stephanie Schaden","age":78,"location":"West Jake"}},{"attributes":{"name":"Elaine Pagac","age":22,"location":"Kelleyberg"}},{"attributes":{"name":"Anita Mraz","age":37,"location":"South Julie"}},{"attributes":{"name":"Victor Fisher","age":41,"location":"Lake Braden"}},{"attributes":{"name":"Hattie Brakus","age":56,"location":"East Ryan"}},{"attributes":{"name":"Vance Lehner","age":59,"location":"Effertzworth"}},{"attributes":{"name":"Alfredo Balistreri","age":19,"location":"Bethesda"}},{"attributes":{"name":"Luke Swift","age":40,"location":"North Denis"}},{"attributes":{"name":"Mae Gottlieb","age":55,"location":"Weissnatfort"}},{"attributes":{"name":"Syble Cole","age":71,"location":"Floycester"}},{"attributes":{"name":"Dr. Evan Wuckert","age":73,"location":"Port Celineborough"}},{"attributes":{"name":"Jeremy Stamm","age":76,"location":"North Bonita"}},{"attributes":{"name":"Juana Pacocha Sr.","age":46,"location":"Port Dawsonhaven"}},{"attributes":{"name":"Carroll McKenzie","age":62,"location":"Hendersonville"}},{"attributes":{"name":"Emmett Lind","age":27,"location":"Lake Edwardo"}},{"attributes":{"name":"Nora Lebsack","age":21,"location":"Bartellborough"}},{"attributes":{"name":"Francis Lind-Doyle","age":32,"location":"Fort Kelvin"}},{"attributes":{"name":"Kari Windler","age":63,"location":"Orland Park"}},{"attributes":{"name":"Perry Daugherty Jr.","age":28,"location":"Lake Carter"}},{"attributes":{"name":"Rosalie Kirlin I","age":63,"location":"Idaland"}},{"attributes":{"name":"Fannie Turcotte","age":36,"location":"Port Kirsten"}},{"attributes":{"name":"Rudy Feest","age":18,"location":"Cape Coral"}},{"attributes":{"name":"Elmer Lockman","age":23,"location":"College Station"}},{"attributes":{"name":"Nina Kulas","age":38,"location":"Fort Laurie"}},{"attributes":{"name":"Rhoda Gislason","age":54,"location":"Hilllport"}},{"attributes":{"name":"Janessa Crist IV","age":79,"location":"South Adonis"}},{"attributes":{"name":"Ernesto Champlin","age":72,"location":"Lake Litzy"}},{"attributes":{"name":"Sally Lesch DDS","age":29,"location":"Dayanaberg"}},{"attributes":{"name":"Sherman Fadel","age":71,"location":"New Gracie"}},{"attributes":{"name":"Spencer Schulist","age":64,"location":"Carrolltown"}},{"attributes":{"name":"Stewart Towne","age":20,"location":"Daytona Beach"}},{"attributes":{"name":"Mr. Kelley West-O'Connell","age":66,"location":"Simonisview"}},{"attributes":{"name":"Alford Bartoletti","age":36,"location":"South Leifport"}},{"attributes":{"name":"Perry Turcotte DVM","age":65,"location":"South Danland"}},{"attributes":{"name":"Darryl Bergnaum","age":39,"location":"Lake Bria"}},{"attributes":{"name":"Mr. Alene Gleichner","age":27,"location":"Everett"}},{"attributes":{"name":"Cindy Hodkiewicz","age":25,"location":"Chesterfield"}},{"attributes":{"name":"Ignatius Stracke","age":49,"location":"White Plains"}},{"attributes":{"name":"Mrs. Judy Kuvalis-Conroy","age":61,"location":"Tatyanafield"}},{"attributes":{"name":"Oceane Bahringer","age":33,"location":"Schroederborough"}},{"attributes":{"name":"Judy Jacobson","age":62,"location":"Fort Austen"}},{"attributes":{"name":"Tracy Quigley","age":43,"location":"Ebertport"}},{"attributes":{"name":"Bessie Padberg","age":24,"location":"South Paytonfort"}},{"attributes":{"name":"Lexus Gleichner","age":74,"location":"Port Lucinda"}},{"attributes":{"name":"Kraig Quitzon","age":60,"location":"Port Preciousport"}},{"attributes":{"name":"Rolando Lockman","age":31,"location":"South Anastasiamouth"}},{"attributes":{"name":"Mustafa Konopelski","age":65,"location":"Caroletown"}},{"attributes":{"name":"Nichole Stanton","age":76,"location":"Ashlynnstead"}},{"attributes":{"name":"Patience Gerlach","age":64,"location":"Pollichworth"}},{"attributes":{"name":"Orlando Labadie","age":20,"location":"North Norma"}},{"attributes":{"name":"Calista Kunde PhD","age":26,"location":"Port Gilberto"}},{"attributes":{"name":"Jerald Littel","age":64,"location":"Cummingsberg"}},{"attributes":{"name":"Rosemary Monahan","age":55,"location":"Aylamouth"}},{"attributes":{"name":"Candido Emmerich II","age":80,"location":"West Graysonboro"}},{"attributes":{"name":"Stefan Kihn","age":27,"location":"Eden Prairie"}},{"attributes":{"name":"Christopher Nienow","age":63,"location":"Rippinstead"}},{"attributes":{"name":"Clay Hessel","age":60,"location":"Rockville"}},{"attributes":{"name":"Kelvin Heller","age":49,"location":"Gleasonstead"}},{"attributes":{"name":"Kendrick Hegmann","age":22,"location":"West Raphaelleland"}},{"attributes":{"name":"Elinor Watsica","age":44,"location":"Hauckbury"}},{"attributes":{"name":"Harrison Rowe","age":77,"location":"West Alexboro"}},{"attributes":{"name":"Hilda Keebler","age":33,"location":"Corychester"}},{"attributes":{"name":"Van Koelpin","age":50,"location":"Lake Payton"}},{"attributes":{"name":"Marquise Metz","age":69,"location":"West Jettieview"}},{"attributes":{"name":"Aric Prosacco Sr.","age":32,"location":"West Yoshiko"}},{"attributes":{"name":"Eugene Wunsch","age":65,"location":"Charlotte"}},{"attributes":{"name":"Marcos Conn","age":66,"location":"Chaimhaven"}},{"attributes":{"name":"Rory Wiegand","age":49,"location":"Trantowberg"}},{"attributes":{"name":"Mr. Ada Pollich","age":60,"location":"West Giles"}},{"attributes":{"name":"Keshawn Medhurst","age":75,"location":"New Holdenfort"}},{"attributes":{"name":"Lelah Heaney","age":64,"location":"South Bert"}},{"attributes":{"name":"Santos Gibson Sr.","age":26,"location":"Port Judah"}},{"attributes":{"name":"Eula Littel","age":42,"location":"Miami Beach"}},{"attributes":{"name":"Maymie Ziemann","age":49,"location":"Jimmieborough"}},{"attributes":{"name":"Terrance Lowe","age":20,"location":"Boehmfurt"}},{"attributes":{"name":"Columbus Wolff","age":65,"location":"Port Salvatore"}},{"attributes":{"name":"Alec Jast","age":78,"location":"Port Boyd"}},{"attributes":{"name":"Fausto Hauck III","age":48,"location":"East Dewittburgh"}},{"attributes":{"name":"Ms. Olga Littel","age":54,"location":"South Sabrinaberg"}},{"attributes":{"name":"Ms. Arturo Kling","age":68,"location":"Fort Harrisonstead"}},{"attributes":{"name":"Ray Brown","age":53,"location":"Fort Easton"}},{"attributes":{"name":"Tabitha Douglas","age":24,"location":"North Cecileside"}},{"attributes":{"name":"Ima Kunde MD","age":42,"location":"Berwyn"}},{"attributes":{"name":"Drew Cruickshank IV","age":67,"location":"East Camryn"}},{"attributes":{"name":"Jerry Satterfield","age":30,"location":"Deltahaven"}},{"attributes":{"name":"Vallie Anderson","age":38,"location":"New Malcolmburgh"}},{"attributes":{"name":"Vance Abbott","age":66,"location":"Jerelport"}},{"attributes":{"name":"Dasia Miller","age":34,"location":"Annandale"}},{"attributes":{"name":"Rose Dach","age":49,"location":"South Boydland"}},{"attributes":{"name":"Miss Makenna Spinka III","age":45,"location":"Luettgenville"}},{"attributes":{"name":"Lee Jenkins","age":56,"location":"Oberbrunnerburgh"}},{"attributes":{"name":"Sean Auer","age":23,"location":"North Montanaville"}},{"attributes":{"name":"Bailee Trantow","age":35,"location":"San Mateo"}},{"attributes":{"name":"Mr. Gerald Feest","age":66,"location":"Claystead"}},{"attributes":{"name":"Shawna Emard PhD","age":51,"location":"Bentonburgh"}},{"attributes":{"name":"Ms. Kathlyn Wisozk","age":65,"location":"Camillafort"}},{"attributes":{"name":"Pablo Bernhard","age":42,"location":"Aufderharberg"}},{"attributes":{"name":"Forest Heller","age":60,"location":"Germantown"}},{"attributes":{"name":"Faustino Pfeffer","age":54,"location":"Port Dellahaven"}},{"attributes":{"name":"Mr. Reginald Lemke-Konopelski","age":64,"location":"Eau Claire"}},{"attributes":{"name":"Schuyler Greenfelder","age":23,"location":"Mohrworth"}},{"attributes":{"name":"Ethel Olson","age":40,"location":"North Dayneborough"}},{"attributes":{"name":"Morgan Kunze","age":55,"location":"Port Clara"}},{"attributes":{"name":"Jim Carroll-Hahn II","age":70,"location":"Ezrafield"}},{"attributes":{"name":"Libby Cruickshank","age":67,"location":"Weberstad"}},{"attributes":{"name":"Felix Kreiger","age":76,"location":"Watsicaport"}},{"attributes":{"name":"Cornelius Wunsch","age":42,"location":"Scarlettland"}},{"attributes":{"name":"Mr. Milford Bartell","age":57,"location":"Keshawnfort"}},{"attributes":{"name":"Idell Reichel","age":45,"location":"East Karianeton"}},{"attributes":{"name":"Dr. Blake Krajcik","age":44,"location":"New Xander"}},{"attributes":{"name":"Kimberly Flatley","age":40,"location":"North Christinefield"}},{"attributes":{"name":"Tina Lueilwitz Jr.","age":21,"location":"West Jessyside"}},{"attributes":{"name":"Dr. Joannie Flatley","age":63,"location":"Oak Lawn"}},{"attributes":{"name":"Chad Ruecker","age":77,"location":"New Horacio"}},{"attributes":{"name":"Susana Torphy","age":31,"location":"New Keagan"}},{"attributes":{"name":"Tanner Hartmann","age":49,"location":"South Jalonborough"}},{"attributes":{"name":"Nathan Oberbrunner","age":72,"location":"Abbeyborough"}},{"attributes":{"name":"Alfreda Rath","age":74,"location":"South Antoninaport"}},{"attributes":{"name":"Mrs. Christine Runte DVM","age":27,"location":"Cypress"}},{"attributes":{"name":"Dr. Maud Jacobi","age":56,"location":"Hoegerburgh"}},{"attributes":{"name":"Juana Shanahan","age":52,"location":"New Cleve"}},{"attributes":{"name":"Brett Cruickshank","age":25,"location":"Brownworth"}},{"attributes":{"name":"Mr. Floy Prosacco","age":79,"location":"Fort Ladariusland"}},{"attributes":{"name":"Nathanael Yost","age":28,"location":"West Florencecester"}},{"attributes":{"name":"Chanelle Pollich","age":34,"location":"Jacksonville"}},{"attributes":{"name":"Lydia Corwin","age":33,"location":"Port Alanischester"}},{"attributes":{"name":"Novella Ebert I","age":64,"location":"Lake Torranceburgh"}},{"attributes":{"name":"Brittany Stokes","age":38,"location":"Ratkefurt"}},{"attributes":{"name":"Jimmie Predovic","age":79,"location":"North Antonetta"}},{"attributes":{"name":"Flora Ritchie Sr.","age":54,"location":"East Ross"}},{"attributes":{"name":"Owen Hoppe","age":75,"location":"Zackbury"}},{"attributes":{"name":"Ms. Jalon Collins MD","age":44,"location":"Port Libby"}},{"attributes":{"name":"Mr. Lisa Batz","age":24,"location":"Freeport"}},{"attributes":{"name":"Sallie DuBuque","age":77,"location":"West Alexandreaview"}},{"attributes":{"name":"Homer Morar-Toy","age":27,"location":"DuBuqueville"}},{"attributes":{"name":"Geoffrey Reynolds","age":37,"location":"Fort Conorshire"}},{"attributes":{"name":"Noemy Beier V","age":46,"location":"Scottieboro"}},{"attributes":{"name":"Annie Rogahn","age":41,"location":"East Gino"}},{"attributes":{"name":"Betsy Hahn","age":27,"location":"Erickbury"}},{"attributes":{"name":"Agnes Kihn Sr.","age":25,"location":"East Nikotown"}},{"attributes":{"name":"Deanna Kiehn","age":50,"location":"Dustyhaven"}},{"attributes":{"name":"Earnestine Jast","age":18,"location":"Zulafurt"}},{"attributes":{"name":"Marie Johns","age":78,"location":"Gastonview"}},{"attributes":{"name":"Delores Mayert","age":31,"location":"West Hannah"}},{"attributes":{"name":"Ramiro Ryan","age":69,"location":"Queenmouth"}},{"attributes":{"name":"Shaylee Ortiz","age":52,"location":"Lake Myrnaworth"}},{"attributes":{"name":"Liliana Reilly","age":41,"location":"Lake Rene"}},{"attributes":{"name":"Alvin Casper MD","age":79,"location":"New Kailey"}},{"attributes":{"name":"Miguel Lesch","age":19,"location":"Elwynhaven"}},{"attributes":{"name":"Mr. James Bernhard","age":26,"location":"Rohanberg"}},{"attributes":{"name":"Jody Bernhard","age":68,"location":"Waterbury"}},{"attributes":{"name":"Logan Wilderman PhD","age":40,"location":"Fort Clementina"}},{"attributes":{"name":"Timmy Schoen IV","age":54,"location":"Runteport"}},{"attributes":{"name":"Santa Satterfield","age":25,"location":"Fort Traceystead"}},{"attributes":{"name":"Meaghan Bergstrom","age":48,"location":"Port Stevie"}},{"attributes":{"name":"Brad Rath","age":76,"location":"Darrelland"}},{"attributes":{"name":"Dr. Mary Kuhic II","age":46,"location":"Greenshire"}},{"attributes":{"name":"Mrs. Aimee Barrows","age":26,"location":"Oberbrunnerstead"}},{"attributes":{"name":"Jean Donnelly","age":22,"location":"Chula Vista"}},{"attributes":{"name":"Elijah Blick","age":35,"location":"Greenfelderview"}},{"attributes":{"name":"Miss Zachariah Dickinson","age":49,"location":"VonRuedenside"}},{"attributes":{"name":"Elva Lind","age":45,"location":"Hillsfort"}},{"attributes":{"name":"Claude Oberbrunner","age":80,"location":"Gastonia"}},{"attributes":{"name":"Jesse Veum","age":73,"location":"Lucindastead"}},{"attributes":{"name":"Ruthie Williamson","age":50,"location":"Fresno"}},{"attributes":{"name":"Alexis Jaskolski","age":71,"location":"Grand Island"}},{"attributes":{"name":"Sammy Wuckert","age":23,"location":"Javonfort"}},{"attributes":{"name":"Debbie Wehner","age":56,"location":"North Verna"}},{"attributes":{"name":"Shyanne Jakubowski","age":57,"location":"North Lavada"}},{"attributes":{"name":"Juanita Ryan MD","age":80,"location":"Balistreritown"}},{"attributes":{"name":"Antone Orn","age":42,"location":"Ceciliaburgh"}},{"attributes":{"name":"Imani Prohaska","age":76,"location":"McGlynnborough"}},{"attributes":{"name":"Francis Shields","age":19,"location":"North Garnetfield"}},{"attributes":{"name":"Gwen Schoen","age":24,"location":"East Clementinefort"}},{"attributes":{"name":"Andres Kuphal","age":24,"location":"Jacefield"}},{"attributes":{"name":"Miss Johnson Windler","age":60,"location":"Brennanboro"}},{"attributes":{"name":"Torrance Will","age":63,"location":"Atlanta"}},{"attributes":{"name":"Henrietta Bernier","age":38,"location":"Treverfield"}},{"attributes":{"name":"Mrs. Michel Schinner I","age":70,"location":"South Chadrick"}},{"attributes":{"name":"Gary Lind","age":50,"location":"Fountainebleau"}},{"attributes":{"name":"Haven Block Sr.","age":59,"location":"Port Nelsfield"}},{"attributes":{"name":"Marta Leuschke","age":80,"location":"Urbana"}},{"attributes":{"name":"Reymundo Langworth","age":44,"location":"East Ahmad"}},{"attributes":{"name":"Emilio Hilpert","age":58,"location":"Spencerview"}},{"attributes":{"name":"Larry Thompson","age":65,"location":"Glennatown"}},{"attributes":{"name":"Granville Baumbach","age":26,"location":"Cobyboro"}},{"attributes":{"name":"Marilyne Frami","age":49,"location":"West Easter"}},{"attributes":{"name":"Kerry Schmeler","age":20,"location":"Emerychester"}},{"attributes":{"name":"Elias O'Kon","age":62,"location":"Sauerstead"}},{"attributes":{"name":"Mr. Berenice Stoltenberg","age":22,"location":"South Gate"}},{"attributes":{"name":"Robyn Carroll","age":42,"location":"Gaetanoborough"}},{"attributes":{"name":"Cathy Parisian","age":43,"location":"Torpborough"}},{"attributes":{"name":"Felix Dare","age":67,"location":"Hackensack"}},{"attributes":{"name":"Dillon Parisian","age":21,"location":"Lake Bret"}},{"attributes":{"name":"Vicente Schneider","age":35,"location":"West Connorton"}},{"attributes":{"name":"Tabitha Ritchie DVM","age":56,"location":"Johnstontown"}},{"attributes":{"name":"Margie Zieme PhD","age":27,"location":"Santa Barbara"}},{"attributes":{"name":"Raul Greenfelder","age":77,"location":"South Ashley"}},{"attributes":{"name":"Conrad Gleichner","age":77,"location":"Haydenchester"}},{"attributes":{"name":"Myra Medhurst","age":31,"location":"Lake Randall"}},{"attributes":{"name":"Gayle Kerluke","age":21,"location":"Cleoraton"}},{"attributes":{"name":"Nathan Medhurst","age":39,"location":"Yasminshire"}},{"attributes":{"name":"Eddie Kris","age":38,"location":"Anchorage"}},{"attributes":{"name":"Mr. Winfield Cruickshank","age":77,"location":"Dameonhaven"}},{"attributes":{"name":"Santino Mraz V","age":30,"location":"Grimesberg"}},{"attributes":{"name":"Casimir Bernier","age":27,"location":"Zellamouth"}},{"attributes":{"name":"Julie Doyle","age":63,"location":"East Talia"}},{"attributes":{"name":"Isaiah Johnson","age":35,"location":"New Rethabury"}},{"attributes":{"name":"Ms. Debbie Mohr","age":59,"location":"Lynwood"}},{"attributes":{"name":"Krista Bergnaum","age":54,"location":"Redding"}},{"attributes":{"name":"Willis Haag","age":73,"location":"New Claudia"}},{"attributes":{"name":"Melba Dare","age":53,"location":"New Rebekah"}},{"attributes":{"name":"Lynn Effertz","age":33,"location":"Kossberg"}},{"attributes":{"name":"Anne Hansen","age":28,"location":"South Johnathon"}},{"attributes":{"name":"Ismael Kihn Jr.","age":20,"location":"Lake Syble"}},{"attributes":{"name":"Benny Mann-Collier","age":20,"location":"Keelington"}},{"attributes":{"name":"Leigh Welch-O'Hara","age":29,"location":"New Braunfels"}},{"attributes":{"name":"Deanna Dare","age":34,"location":"Antoniamouth"}},{"attributes":{"name":"Alexys Mraz DVM","age":77,"location":"Nyafort"}},{"attributes":{"name":"Esmeralda Deckow","age":47,"location":"Port Einarmouth"}},{"attributes":{"name":"Saige Howell","age":70,"location":"Fort Cesarberg"}},{"attributes":{"name":"Floyd Schuster","age":76,"location":"East Bennetthaven"}},{"attributes":{"name":"Amber Krajcik","age":54,"location":"Lake Duaneville"}},{"attributes":{"name":"Mr. Edwin Okuneva","age":18,"location":"New Sadye"}},{"attributes":{"name":"Dr. Rosella Muller","age":70,"location":"Port Patriciachester"}},{"attributes":{"name":"Angelina Doyle","age":63,"location":"Bartonberg"}},{"attributes":{"name":"Gerson Kuhic","age":29,"location":"Port Sonia"}},{"attributes":{"name":"Mollie Mann","age":53,"location":"South Davonboro"}},{"attributes":{"name":"Beulah Wilkinson","age":68,"location":"West Sterlingfurt"}},{"attributes":{"name":"Archie Bechtelar-Schimmel","age":52,"location":"Welchhaven"}},{"attributes":{"name":"Vicky Hermann","age":40,"location":"Pasadena"}},{"attributes":{"name":"Miss Shyanne Reichel Jr.","age":43,"location":"Athenafurt"}},{"attributes":{"name":"Jessica Keebler","age":32,"location":"Dickinsonborough"}},{"attributes":{"name":"Carrie Emmerich","age":49,"location":"New Jonatanfort"}},{"attributes":{"name":"Marcia Schuster","age":69,"location":"Isaacworth"}},{"attributes":{"name":"Mariam Batz","age":70,"location":"Jeffersonville"}},{"attributes":{"name":"Simon Sporer","age":68,"location":"East Nya"}},{"attributes":{"name":"Zella Braun","age":67,"location":"Port Gwen"}},{"attributes":{"name":"Israel Batz","age":43,"location":"Sauerborough"}},{"attributes":{"name":"Whitney Carroll","age":52,"location":"Bergstromport"}},{"attributes":{"name":"Mr. Andres Runolfsson","age":61,"location":"Fort Kevonfield"}},{"attributes":{"name":"Kavon Brown","age":79,"location":"League City"}},{"attributes":{"name":"Dr. Minnie Ritchie","age":20,"location":"Kuhicfield"}},{"attributes":{"name":"Drew Kiehn","age":76,"location":"Lake Darron"}},{"attributes":{"name":"Alan Welch","age":37,"location":"Lake Ned"}},{"attributes":{"name":"Mortimer Leuschke MD","age":73,"location":"San Marcos"}},{"attributes":{"name":"Norwood Mills","age":68,"location":"Kayceestad"}},{"attributes":{"name":"Rosalee Frami","age":20,"location":"Irwinville"}},{"attributes":{"name":"Regina Russel","age":78,"location":"Linaton"}},{"attributes":{"name":"Eula Jacobi","age":49,"location":"Zulahaven"}},{"attributes":{"name":"Newell Wilkinson","age":33,"location":"Stancester"}},{"attributes":{"name":"Johanna Franecki","age":26,"location":"Isaiahport"}},{"attributes":{"name":"Ms. Lorine Hills","age":60,"location":"Funkview"}},{"attributes":{"name":"Mr. Ed Olson V","age":63,"location":"Elmhurst"}},{"attributes":{"name":"Tyrone Jerde","age":36,"location":"West Hoytfield"}},{"attributes":{"name":"Ima MacGyver III","age":64,"location":"Downey"}},{"attributes":{"name":"Keith Nolan","age":43,"location":"Lake Jarvisburgh"}},{"attributes":{"name":"Donna Bailey","age":53,"location":"West Lilian"}},{"attributes":{"name":"Mrs. Roy Halvorson DDS","age":29,"location":"East Jeramie"}},{"attributes":{"name":"Derek Hessel","age":21,"location":"Newark"}},{"attributes":{"name":"Pam Reichel","age":76,"location":"Mesa"}},{"attributes":{"name":"Jayde Sipes","age":55,"location":"East Mozellestad"}},{"attributes":{"name":"Hazel Beer","age":73,"location":"Westminster"}},{"attributes":{"name":"Carmen Wolff","age":52,"location":"Emmiechester"}},{"attributes":{"name":"Nick Reilly","age":63,"location":"Adityastad"}},{"attributes":{"name":"Clinton Metz","age":72,"location":"New Trystanview"}},{"attributes":{"name":"Delores Hand","age":47,"location":"Lake Johnpaulfield"}},{"attributes":{"name":"Jeanne Effertz","age":36,"location":"Dantestad"}},{"attributes":{"name":"Adam Metz-Hackett","age":33,"location":"Lake Jamalstead"}},{"attributes":{"name":"Ms. Jacqueline Dach","age":27,"location":"Emmerichborough"}},{"attributes":{"name":"Valentina Fadel","age":52,"location":"South Thaddeusshire"}},{"attributes":{"name":"Wade Cassin","age":29,"location":"Deebury"}},{"attributes":{"name":"Kiara Huels","age":28,"location":"McCulloughberg"}},{"attributes":{"name":"Jeanne Murazik DVM","age":64,"location":"Alainamouth"}},{"attributes":{"name":"John Romaguera","age":45,"location":"Mooreport"}},{"attributes":{"name":"Edith Williamson","age":21,"location":"West Florencioville"}},{"attributes":{"name":"Eula Roob","age":47,"location":"Rexton"}},{"attributes":{"name":"Kristy Ernser","age":24,"location":"Danykashire"}},{"attributes":{"name":"Irving Hilpert","age":28,"location":"Franeyport"}},{"attributes":{"name":"Lucy Pollich","age":71,"location":"South Pasquale"}},{"attributes":{"name":"Donna Mayer","age":35,"location":"South Haydenfurt"}},{"attributes":{"name":"Denis Walsh","age":43,"location":"Lake Adrain"}},{"attributes":{"name":"Nichole Windler","age":64,"location":"East Ressiefurt"}},{"attributes":{"name":"Gisselle Bernier DDS","age":18,"location":"South Angieboro"}},{"attributes":{"name":"Ms. Dallas Block-Nikolaus","age":39,"location":"Redwood City"}},{"attributes":{"name":"Jeremy West","age":65,"location":"Lake Ignacio"}},{"attributes":{"name":"Gregg Ankunding","age":37,"location":"Haverhill"}},{"attributes":{"name":"Nicolas Moore","age":33,"location":"West Efrain"}},{"attributes":{"name":"Tricia Cassin","age":80,"location":"Marcostead"}},{"attributes":{"name":"Regan Wyman","age":21,"location":"North Otis"}},{"attributes":{"name":"Fredy VonRueden","age":20,"location":"Jessycafield"}},{"attributes":{"name":"Gavin Adams","age":25,"location":"Predovicborough"}},{"attributes":{"name":"Loren Gottlieb","age":35,"location":"Collierchester"}},{"attributes":{"name":"Brooke Hagenes III","age":27,"location":"Albinbury"}},{"attributes":{"name":"Jorge Pacocha","age":41,"location":"Ziemannchester"}},{"attributes":{"name":"Retta Wehner","age":52,"location":"Fort Shania"}},{"attributes":{"name":"Monserrat Veum","age":30,"location":"Clementinahaven"}},{"attributes":{"name":"Priscilla Osinski","age":71,"location":"Port Everett"}},{"attributes":{"name":"Sheila Abernathy","age":40,"location":"Grimesfort"}},{"attributes":{"name":"Edyth Durgan","age":26,"location":"Lake Carmellastad"}},{"attributes":{"name":"Hubert Luettgen","age":42,"location":"Las Cruces"}},{"attributes":{"name":"Mrs. Dewey Muller","age":18,"location":"North Maybellville"}},{"attributes":{"name":"Claudie McCullough","age":19,"location":"East Gailport"}},{"attributes":{"name":"Urban Beatty","age":41,"location":"North Jace"}},{"attributes":{"name":"Wm Kutch","age":31,"location":"Pittsburgh"}},{"attributes":{"name":"Cecil Kutch II","age":56,"location":"Porterville"}},{"attributes":{"name":"Dr. Henry Doyle","age":58,"location":"Rutherfordburgh"}},{"attributes":{"name":"Gayle Jerde","age":68,"location":"South Stephanietown"}},{"attributes":{"name":"Harry Durgan","age":36,"location":"East Jackie"}},{"attributes":{"name":"Darla Ullrich","age":66,"location":"East Hartford"}},{"attributes":{"name":"Dr. Frieda Kirlin","age":53,"location":"Aurorehaven"}},{"attributes":{"name":"Joanne Mertz","age":47,"location":"New Henrifort"}},{"attributes":{"name":"Mrs. Lillian Durgan","age":42,"location":"Sawaynworth"}},{"attributes":{"name":"Stanley Runte","age":28,"location":"Altamonte Springs"}},{"attributes":{"name":"Carlton Hodkiewicz","age":61,"location":"Fort Aniya"}},{"attributes":{"name":"Rosario Bosco","age":66,"location":"East Clara"}},{"attributes":{"name":"Hugo Koepp","age":31,"location":"Apex"}},{"attributes":{"name":"Dr. Jonathon King MD","age":64,"location":"North Lambertland"}},{"attributes":{"name":"Mr. Leo Kihn","age":20,"location":"Hattiesburg"}},{"attributes":{"name":"Candice Koepp","age":80,"location":"Fort Jaeden"}},{"attributes":{"name":"Frankie Johnston","age":80,"location":"West Sarahberg"}},{"attributes":{"name":"Mr. Ralph Stokes","age":19,"location":"Rowland Heights"}},{"attributes":{"name":"Levi Murazik","age":71,"location":"Port Linda"}},{"attributes":{"name":"Aaron Wolf","age":18,"location":"Santa Monica"}},{"attributes":{"name":"Ms. Layla O'Keefe MD","age":27,"location":"Oro Valley"}},{"attributes":{"name":"Tommy Metz","age":28,"location":"Fullerton"}},{"attributes":{"name":"Cameron Schimmel","age":31,"location":"Borerhaven"}},{"attributes":{"name":"Bernadine Runte","age":74,"location":"South Camronboro"}},{"attributes":{"name":"Luisa Ledner MD","age":63,"location":"West Sanford"}},{"attributes":{"name":"Dr. Drew Sipes","age":75,"location":"El Monte"}},{"attributes":{"name":"Lynn Adams","age":71,"location":"Emilemouth"}},{"attributes":{"name":"Mrs. Daron Stoltenberg","age":43,"location":"Novato"}},{"attributes":{"name":"Chadd Bashirian","age":20,"location":"Andersonview"}},{"attributes":{"name":"Roman Schowalter","age":55,"location":"Rexbury"}},{"attributes":{"name":"Shelly Kuhlman MD","age":55,"location":"Fletcherhaven"}},{"attributes":{"name":"Waldo Wolff","age":54,"location":"Berwyn"}},{"attributes":{"name":"Jeanie Quigley","age":24,"location":"West Jayde"}},{"attributes":{"name":"Scott Mueller","age":22,"location":"West Samir"}},{"attributes":{"name":"Eliseo Zieme","age":71,"location":"Gwenburgh"}},{"attributes":{"name":"Amiya Crist-Hettinger","age":61,"location":"North Isabell"}},{"attributes":{"name":"Fannie Conroy","age":65,"location":"West Terry"}},{"attributes":{"name":"Dr. Chaya Swift","age":65,"location":"Beerworth"}},{"attributes":{"name":"Jenny Douglas-Hammes","age":31,"location":"Danbury"}},{"attributes":{"name":"Mr. Lloyd Kuhic IV","age":57,"location":"New Holliechester"}},{"attributes":{"name":"Christopher Hegmann PhD","age":72,"location":"South Judy"}},{"attributes":{"name":"Paula Wunsch","age":24,"location":"West Reba"}},{"attributes":{"name":"Gregory Simonis","age":60,"location":"Port Everette"}},{"attributes":{"name":"Krista Daniel","age":24,"location":"Lake Grayson"}},{"attributes":{"name":"Dillon Boyer-Predovic","age":79,"location":"Fort Mablehaven"}},{"attributes":{"name":"Jacob Hegmann","age":20,"location":"Lake Otiliastead"}},{"attributes":{"name":"Vicki Veum","age":53,"location":"Casper"}},{"attributes":{"name":"Mr. Louvenia Schimmel","age":79,"location":"Corwinworth"}},{"attributes":{"name":"Lamar Harber","age":60,"location":"West Harold"}},{"attributes":{"name":"Dr. Alva Lueilwitz","age":22,"location":"North Bernhard"}},{"attributes":{"name":"Aron Schmidt","age":29,"location":"North Caroline"}},{"attributes":{"name":"Aletha Von III","age":78,"location":"Lake Forest"}},{"attributes":{"name":"Kyla Welch","age":65,"location":"Warren"}},{"attributes":{"name":"Saul Goldner","age":51,"location":"Lake Parisborough"}},{"attributes":{"name":"Steven Hodkiewicz","age":26,"location":"South Helenatown"}},{"attributes":{"name":"Connie Smith","age":36,"location":"Stephonshire"}},{"attributes":{"name":"Mr. Claude Hermiston","age":66,"location":"East Stella"}},{"attributes":{"name":"Noe Skiles","age":22,"location":"Fort Enrique"}},{"attributes":{"name":"Andy Beatty","age":39,"location":"Mannstad"}},{"attributes":{"name":"Angel Wolff","age":61,"location":"North Darryl"}},{"attributes":{"name":"Dr. Melvin Toy","age":18,"location":"Davischester"}},{"attributes":{"name":"Dwayne Ernser-Gislason","age":51,"location":"Kristinachester"}},{"attributes":{"name":"Otilia Dooley","age":32,"location":"Jordanfurt"}},{"attributes":{"name":"Willie Leuschke","age":54,"location":"North Ed"}},{"attributes":{"name":"Dianna Lehner V","age":25,"location":"South Anabel"}},{"attributes":{"name":"Mrs. Bernadette Schamberger","age":41,"location":"South Gastonfurt"}},{"attributes":{"name":"Edwin Welch","age":66,"location":"Olympia"}},{"attributes":{"name":"Shemar Gutmann","age":37,"location":"Fort Aidaberg"}},{"attributes":{"name":"Gary Terry","age":60,"location":"Watsicaville"}},{"attributes":{"name":"Larry Koch","age":19,"location":"Fort Marianboro"}},{"attributes":{"name":"Santa Durgan","age":63,"location":"Charityport"}},{"attributes":{"name":"Nicole Greenfelder","age":61,"location":"Forrestfield"}},{"attributes":{"name":"Lynn Hauck","age":28,"location":"Savannah"}},{"attributes":{"name":"Rachel Jakubowski","age":55,"location":"Jillianfield"}},{"attributes":{"name":"Emmet Dickinson","age":21,"location":"Baumbachport"}},{"attributes":{"name":"Lucy Nicolas-Corkery","age":47,"location":"Lake Reyesberg"}},{"attributes":{"name":"Maggie Fritsch","age":61,"location":"Cambridge"}},{"attributes":{"name":"Ms. Dejuan Hartmann","age":22,"location":"Schaeferfield"}},{"attributes":{"name":"Susie Vandervort","age":30,"location":"East Dell"}},{"attributes":{"name":"Ellen Roob","age":29,"location":"Emmerichboro"}},{"attributes":{"name":"Kailey Schamberger","age":78,"location":"Franzchester"}},{"attributes":{"name":"Lester Connelly","age":47,"location":"Gradyfurt"}},{"attributes":{"name":"Michelle Pagac","age":27,"location":"Rosaliaside"}},{"attributes":{"name":"Crystal Cronin","age":53,"location":"Maggioberg"}},{"attributes":{"name":"Julio Weber","age":23,"location":"New Bailee"}},{"attributes":{"name":"Laurence Hickle","age":33,"location":"Macistead"}},{"attributes":{"name":"Dr. Ila MacGyver","age":28,"location":"North Lisaport"}},{"attributes":{"name":"Rosie Dicki","age":76,"location":"South Kariane"}},{"attributes":{"name":"Miss Candace Swaniawski","age":40,"location":"Lockmanton"}},{"attributes":{"name":"Chad Mayer DVM","age":22,"location":"Durwardboro"}},{"attributes":{"name":"Orin Batz","age":46,"location":"Hacienda Heights"}},{"attributes":{"name":"Stacey Smith-Dooley","age":53,"location":"West Sylvanburgh"}},{"attributes":{"name":"Jessica Wilderman Sr.","age":25,"location":"South Carley"}},{"attributes":{"name":"Timmy Sawayn","age":80,"location":"Faustoshire"}},{"attributes":{"name":"Maria Marquardt","age":30,"location":"North Amandafield"}},{"attributes":{"name":"Hillary Stamm","age":28,"location":"Covina"}},{"attributes":{"name":"Troy Rath","age":41,"location":"South Abdiel"}},{"attributes":{"name":"Dr. Kelly Turcotte","age":80,"location":"Albany"}},{"attributes":{"name":"Chaz Stroman","age":38,"location":"New Amalia"}},{"attributes":{"name":"Jill Wisoky","age":66,"location":"North Leopold"}},{"attributes":{"name":"Neal Collins","age":22,"location":"Jersey City"}},{"attributes":{"name":"Gunner Wiegand","age":49,"location":"Corwinstead"}},{"attributes":{"name":"Gilberto Rodriguez","age":46,"location":"Lake Maria"}},{"attributes":{"name":"Janiya Funk","age":21,"location":"South Dayne"}},{"attributes":{"name":"Darwin Lemke","age":54,"location":"New Eldred"}},{"attributes":{"name":"Margaret Fadel","age":70,"location":"Oak Lawn"}},{"attributes":{"name":"Faye Schneider-Barton","age":69,"location":"Gleichnerchester"}},{"attributes":{"name":"Jacky Goldner","age":56,"location":"Port Marcia"}},{"attributes":{"name":"Katelyn Runte","age":31,"location":"New Malika"}},{"attributes":{"name":"Zack Miller","age":21,"location":"Kuphalcester"}},{"attributes":{"name":"Annette Hintz","age":31,"location":"Koelpinfort"}},{"attributes":{"name":"Colin Wintheiser","age":27,"location":"West Manley"}},{"attributes":{"name":"Kelli Schamberger","age":50,"location":"Fort Johathan"}},{"attributes":{"name":"Johnathan Jenkins","age":50,"location":"New Garrychester"}},{"attributes":{"name":"Austin O'Keefe","age":56,"location":"Rodriguezport"}},{"attributes":{"name":"Kayley Abernathy Sr.","age":74,"location":"Schambergercester"}},{"attributes":{"name":"Emmett Stroman","age":19,"location":"Fort Raleighfield"}},{"attributes":{"name":"Thaddeus Mante","age":29,"location":"Zulaufhaven"}},{"attributes":{"name":"Kimberly Hackett","age":20,"location":"Gastonia"}},{"attributes":{"name":"Earnest McGlynn","age":25,"location":"Kent"}},{"attributes":{"name":"Brian Runolfsson-Beer","age":33,"location":"Fort Samaraland"}},{"attributes":{"name":"Jaren Sanford","age":37,"location":"Lake Madonna"}},{"attributes":{"name":"Cecil McClure","age":62,"location":"Fort Emanuel"}},{"attributes":{"name":"Don Hermann","age":29,"location":"New Gerson"}},{"attributes":{"name":"Angelica DuBuque","age":66,"location":"Khalilport"}},{"attributes":{"name":"Laverne Schaefer","age":22,"location":"Los Angeles"}},{"attributes":{"name":"Shawna Goldner","age":36,"location":"North Lemuel"}},{"attributes":{"name":"Destinee Konopelski","age":54,"location":"West Vance"}},{"attributes":{"name":"Mr. Lucas Fahey","age":51,"location":"Port Faustino"}},{"attributes":{"name":"Linnie Braun","age":48,"location":"South Isaiasborough"}},{"attributes":{"name":"Rebecca Mitchell","age":61,"location":"Christiansenland"}},{"attributes":{"name":"Eric Ferry","age":42,"location":"New Raleighburgh"}},{"attributes":{"name":"Miss Madie Wisoky","age":41,"location":"Kirkland"}},{"attributes":{"name":"Gustavo Casper","age":18,"location":"Leliabury"}},{"attributes":{"name":"Kristin Bauch","age":25,"location":"Langstead"}},{"attributes":{"name":"Margarette Larkin","age":37,"location":"Gleasonboro"}},{"attributes":{"name":"Francis Herzog","age":57,"location":"Fort Jennifer"}},{"attributes":{"name":"Sherman Kirlin DDS","age":66,"location":"Julietborough"}},{"attributes":{"name":"Dr. Freddie Luettgen","age":56,"location":"Dibbertville"}},{"attributes":{"name":"Lowell Kassulke","age":44,"location":"New Monserrateton"}},{"attributes":{"name":"Jenna Kunze","age":55,"location":"Littleport"}},{"attributes":{"name":"Erick Rogahn","age":41,"location":"Billings"}},{"attributes":{"name":"Sabrina Hilpert","age":34,"location":"Buckeye"}},{"attributes":{"name":"Bruce Kozey","age":68,"location":"Joetown"}},{"attributes":{"name":"Jerald Schinner","age":45,"location":"Chelseaburgh"}},{"attributes":{"name":"Dereck Okuneva","age":32,"location":"Florence-Graham"}},{"attributes":{"name":"Alysa Goodwin","age":70,"location":"Funkburgh"}},{"attributes":{"name":"Ernestina Rice DDS","age":74,"location":"Feestport"}},{"attributes":{"name":"Lucia Mohr","age":24,"location":"East Dixie"}},{"attributes":{"name":"Tamara Dietrich","age":36,"location":"Colton"}},{"attributes":{"name":"Macey Farrell","age":25,"location":"North Fletcher"}},{"attributes":{"name":"Lorena Haley","age":42,"location":"Sigridcester"}},{"attributes":{"name":"Glenn Erdman","age":25,"location":"Xanderberg"}},{"attributes":{"name":"Gregory O'Kon","age":37,"location":"Elveraton"}},{"attributes":{"name":"Stacy Hilpert","age":30,"location":"Warwick"}},{"attributes":{"name":"Caitlyn Kuhic","age":60,"location":"Elyria"}},{"attributes":{"name":"Ralph Sporer","age":72,"location":"Wilmastead"}},{"attributes":{"name":"Kirk Hessel","age":57,"location":"Lefflerberg"}},{"attributes":{"name":"Miss Maybell Graham","age":39,"location":"Moore"}},{"attributes":{"name":"Kelly Robel","age":46,"location":"New Jerad"}},{"attributes":{"name":"Jack Cartwright II","age":60,"location":"Adrianstead"}},{"attributes":{"name":"Lauretta Schimmel","age":60,"location":"South Oscarbury"}},{"attributes":{"name":"Layla Padberg","age":35,"location":"New Nickolashaven"}},{"attributes":{"name":"Emmett Murphy","age":43,"location":"Amaniville"}},{"attributes":{"name":"May Price","age":80,"location":"New Eliza"}},{"attributes":{"name":"Lillie Donnelly","age":79,"location":"Hesselville"}},{"attributes":{"name":"Nelda Hartmann","age":19,"location":"North Jude"}},{"attributes":{"name":"Nicklaus Jakubowski","age":24,"location":"New Laurenton"}},{"attributes":{"name":"Carissa Marvin DVM","age":54,"location":"Curtmouth"}},{"attributes":{"name":"Marion Kris","age":68,"location":"Danikaworth"}},{"attributes":{"name":"Veronica Gottlieb","age":70,"location":"Fort Kailyn"}},{"attributes":{"name":"Woodrow Gleason DDS","age":31,"location":"North Rebeccaview"}},{"attributes":{"name":"Jamison Hansen","age":62,"location":"Boyerfurt"}},{"attributes":{"name":"Kacey Ullrich","age":30,"location":"South Akeem"}},{"attributes":{"name":"Landen Runolfsdottir","age":28,"location":"Heaneyport"}},{"attributes":{"name":"Krista Swift","age":56,"location":"New Maybelle"}},{"attributes":{"name":"Barney Jakubowski","age":52,"location":"Graysonberg"}},{"attributes":{"name":"Anahi Williamson","age":46,"location":"Duaneland"}},{"attributes":{"name":"Jeffrey Sauer","age":60,"location":"North Erling"}},{"attributes":{"name":"Arvel Jones","age":21,"location":"Larissaberg"}},{"attributes":{"name":"Gennaro Smith","age":20,"location":"South Dashawnbury"}},{"attributes":{"name":"Breanne Johnston MD","age":41,"location":"Edport"}},{"attributes":{"name":"Darla Stiedemann","age":60,"location":"New Bethany"}},{"attributes":{"name":"Harold Walter I","age":61,"location":"South Robertatown"}},{"attributes":{"name":"Alberta Mosciski","age":24,"location":"West Harrison"}},{"attributes":{"name":"Brett Pfeffer","age":76,"location":"Port Chesleyfurt"}},{"attributes":{"name":"Guy Stokes","age":20,"location":"Port Blancaworth"}},{"attributes":{"name":"Kian Moen","age":74,"location":"Perris"}},{"attributes":{"name":"Brandon Labadie DVM","age":27,"location":"North Myahshire"}},{"attributes":{"name":"Dr. Loy Bernhard","age":64,"location":"Cloydfort"}},{"attributes":{"name":"Mrs. Muriel Zemlak","age":39,"location":"South Lysannestead"}},{"attributes":{"name":"Kristin Hyatt","age":39,"location":"Lawton"}},{"attributes":{"name":"Hailie Pfeffer","age":39,"location":"South Mollyburgh"}},{"attributes":{"name":"Conrad Cormier","age":79,"location":"East Giuseppeton"}},{"attributes":{"name":"Aubree Dooley","age":74,"location":"Port Brodyhaven"}},{"attributes":{"name":"Nona Gottlieb","age":48,"location":"Lake Geovanyshire"}},{"attributes":{"name":"Jermaine McDermott","age":35,"location":"Roelshire"}},{"attributes":{"name":"Shawn Hilll","age":68,"location":"Alekhaven"}},{"attributes":{"name":"Elisa Gerhold","age":59,"location":"Turnertown"}},{"attributes":{"name":"Torrance Sipes","age":55,"location":"Lake Rupert"}},{"attributes":{"name":"Donavon Shields","age":58,"location":"Justinaport"}},{"attributes":{"name":"Doris O'Kon","age":48,"location":"Careyfort"}},{"attributes":{"name":"Antoinette Leannon","age":22,"location":"Orem"}},{"attributes":{"name":"Mack Zemlak","age":21,"location":"North Adriannaville"}},{"attributes":{"name":"Jeremie Davis","age":47,"location":"Larsonboro"}},{"attributes":{"name":"Shaun McClure","age":32,"location":"Danielport"}},{"attributes":{"name":"Rita DuBuque","age":42,"location":"Berniertown"}},{"attributes":{"name":"Myron Hauck","age":29,"location":"East Santos"}},{"attributes":{"name":"Abel Goldner PhD","age":28,"location":"Glendora"}},{"attributes":{"name":"Jaime Dickens","age":47,"location":"Lake Tremaine"}},{"attributes":{"name":"Kathleen Abernathy","age":31,"location":"North Lera"}},{"attributes":{"name":"Archibald Heathcote","age":64,"location":"Lake Jaylenbury"}},{"attributes":{"name":"Darin Windler","age":19,"location":"West Lauryn"}},{"attributes":{"name":"Miriam Murray","age":76,"location":"Traceside"}},{"attributes":{"name":"Isac Runolfsdottir","age":33,"location":"Broken Arrow"}},{"attributes":{"name":"Travis Jakubowski","age":64,"location":"Monterey Park"}},{"attributes":{"name":"Aaliyah Nicolas","age":72,"location":"North Adolfoland"}},{"attributes":{"name":"Evan Gibson","age":35,"location":"Port Raul"}},{"attributes":{"name":"Vivien VonRueden","age":50,"location":"New Isabelleland"}},{"attributes":{"name":"Jason Heaney","age":65,"location":"Port Nigel"}},{"attributes":{"name":"Lea Reynolds-Kuvalis V","age":31,"location":"Joyceland"}},{"attributes":{"name":"Allen Hickle","age":57,"location":"Lansing"}},{"attributes":{"name":"Miss Tillman Batz","age":75,"location":"North Lavernaworth"}},{"attributes":{"name":"Miss Roxanne Wisozk","age":71,"location":"Feesthaven"}},{"attributes":{"name":"Bert Pfeffer","age":23,"location":"North Jaylanbury"}},{"attributes":{"name":"Drew Bauch","age":32,"location":"Mohrfurt"}},{"attributes":{"name":"Tara Harris","age":18,"location":"Caesarborough"}},{"attributes":{"name":"Rylee Bartoletti","age":46,"location":"North Cathrynshire"}},{"attributes":{"name":"Rickie Dickinson","age":30,"location":"North Jovannyfort"}},{"attributes":{"name":"Walter Collier-Schowalter","age":49,"location":"Alexandria"}},{"attributes":{"name":"Shanna Schaefer","age":53,"location":"Dickinsonborough"}},{"attributes":{"name":"Levi Stamm IV","age":49,"location":"Hillltown"}},{"attributes":{"name":"Waylon Romaguera","age":27,"location":"South Elsa"}},{"attributes":{"name":"Eldridge Fahey","age":65,"location":"Port Kiannashire"}},{"attributes":{"name":"Alexandra Pagac PhD","age":58,"location":"O'Konborough"}},{"attributes":{"name":"Mrs. Lisa Okuneva","age":68,"location":"Clovis"}},{"attributes":{"name":"Lisa Hahn","age":37,"location":"Cummingsmouth"}},{"attributes":{"name":"Hazle Wintheiser","age":78,"location":"Retafield"}},{"attributes":{"name":"Janis Marks","age":49,"location":"North Marcville"}},{"attributes":{"name":"Jane Heidenreich","age":52,"location":"West Wilfridfield"}},{"attributes":{"name":"Mr. Elian Haag","age":71,"location":"East Karen"}},{"attributes":{"name":"Mr. Johnpaul Gutmann V","age":33,"location":"Fort Ellsworth"}},{"attributes":{"name":"Nicklaus Haag","age":58,"location":"Lauderhill"}},{"attributes":{"name":"Ms. Jade Beer","age":65,"location":"Emmerichtown"}},{"attributes":{"name":"Juvenal Quigley","age":57,"location":"Toychester"}},{"attributes":{"name":"Alicia Armstrong","age":71,"location":"Quigleyfield"}},{"attributes":{"name":"Lana Donnelly","age":33,"location":"Port Sherwoodworth"}},{"attributes":{"name":"Dr. Natasha Schmeler","age":19,"location":"Maple Grove"}},{"attributes":{"name":"Seamus Lowe","age":50,"location":"West Oranview"}},{"attributes":{"name":"Victor Kilback","age":18,"location":"Bogisichton"}},{"attributes":{"name":"Scotty Yundt","age":45,"location":"Port Keely"}},{"attributes":{"name":"Mr. Glenn Tromp","age":74,"location":"Quigleyhaven"}},{"attributes":{"name":"Miss Pattie Hayes","age":73,"location":"Jerrodport"}},{"attributes":{"name":"Amari Gutkowski PhD","age":23,"location":"New Karl"}},{"attributes":{"name":"Leland Emmerich","age":50,"location":"East Oscar"}},{"attributes":{"name":"Dr. Kim O'Reilly","age":77,"location":"Allen"}},{"attributes":{"name":"Laurie Cremin","age":40,"location":"Fort Keshaunchester"}},{"attributes":{"name":"Miss Elena Thompson","age":40,"location":"Eviefurt"}},{"attributes":{"name":"Cassandre Pollich","age":39,"location":"O'Connellfurt"}},{"attributes":{"name":"Kaya Wuckert","age":58,"location":"Goodwinstead"}},{"attributes":{"name":"Tami Stanton","age":36,"location":"Santa Fe"}},{"attributes":{"name":"Mr. Zelma Mann","age":66,"location":"East Orville"}},{"attributes":{"name":"Mr. Marta Collier","age":60,"location":"Freidaworth"}},{"attributes":{"name":"Lyle Zemlak DDS","age":55,"location":"Shieldscester"}},{"attributes":{"name":"Pat Parker V","age":61,"location":"Connorworth"}},{"attributes":{"name":"Murray Lang-Conn","age":64,"location":"Gradymouth"}},{"attributes":{"name":"Jean Block","age":25,"location":"Frisco"}},{"attributes":{"name":"Jermaine Collier","age":49,"location":"North Connie"}},{"attributes":{"name":"Ubaldo Wehner","age":27,"location":"Ondrickashire"}},{"attributes":{"name":"Mandy Runolfsdottir I","age":48,"location":"Port Isaactown"}},{"attributes":{"name":"Mrs. Jaiden Klocko","age":78,"location":"Auburn"}},{"attributes":{"name":"Arnold MacGyver","age":26,"location":"Blue Springs"}},{"attributes":{"name":"Cassandra Corkery","age":49,"location":"Connellystad"}},{"attributes":{"name":"Addie Veum IV","age":28,"location":"Bergnaumberg"}},{"attributes":{"name":"Nelson Carroll-VonRueden","age":54,"location":"South Dedricboro"}},{"attributes":{"name":"Alba Corwin","age":43,"location":"Port Olinfurt"}},{"attributes":{"name":"Sarai Hoeger I","age":80,"location":"Fort Dell"}},{"attributes":{"name":"Camron Rodriguez","age":75,"location":"Gabriellecester"}},{"attributes":{"name":"Shannon Stokes","age":31,"location":"Fort Isabellside"}},{"attributes":{"name":"Mona Gibson","age":21,"location":"East Christview"}},{"attributes":{"name":"Vella Von","age":44,"location":"Kyramouth"}},{"attributes":{"name":"Wanda VonRueden PhD","age":33,"location":"Boganberg"}},{"attributes":{"name":"Joan Leannon","age":53,"location":"South Arnostead"}},{"attributes":{"name":"Chelsea Padberg","age":29,"location":"East Stephon"}},{"attributes":{"name":"Constance Kuhlman","age":67,"location":"New Rosaland"}},{"attributes":{"name":"Eduardo Yundt","age":50,"location":"West Moises"}},{"attributes":{"name":"Virginia Nolan DVM","age":33,"location":"South Adolfoburgh"}},{"attributes":{"name":"Rogelio Ruecker","age":27,"location":"Durham"}},{"attributes":{"name":"Ms. Katie Schimmel DDS","age":66,"location":"Kevonborough"}},{"attributes":{"name":"Dr. Wilber Swift","age":77,"location":"Hintzhaven"}},{"attributes":{"name":"Judd Durgan","age":21,"location":"New Kadinstead"}},{"attributes":{"name":"Mr. Giovanna Runolfsdottir","age":56,"location":"Elenoraside"}},{"attributes":{"name":"Dr. Anya Denesik III","age":74,"location":"Fort Raven"}},{"attributes":{"name":"Quinton Simonis","age":29,"location":"Kurtstead"}},{"attributes":{"name":"Dr. Bernadette Harber","age":74,"location":"West Frederiktown"}},{"attributes":{"name":"Kyle Larson","age":20,"location":"Nelliestead"}},{"attributes":{"name":"Randal Feeney","age":66,"location":"Tiffanyworth"}},{"attributes":{"name":"Lysanne Lubowitz","age":53,"location":"Bartolettiside"}},{"attributes":{"name":"Dominick Kunze","age":54,"location":"South Piperton"}},{"attributes":{"name":"Adelia Will","age":74,"location":"Keyshawnmouth"}},{"attributes":{"name":"Marion Rippin Sr.","age":44,"location":"Fort Shanelle"}},{"attributes":{"name":"Doyle Klocko","age":27,"location":"Fairfield"}},{"attributes":{"name":"Giovani Pfeffer","age":55,"location":"Goyetteview"}},{"attributes":{"name":"Amber Rogahn","age":26,"location":"Fort Jessicaview"}},{"attributes":{"name":"Dannie Johnston","age":69,"location":"Olemouth"}},{"attributes":{"name":"Ross Kiehn","age":21,"location":"North Ellieton"}},{"attributes":{"name":"Ignacio Ruecker","age":67,"location":"Carrollton"}},{"attributes":{"name":"Olaf Hudson","age":45,"location":"West Dalton"}},{"attributes":{"name":"Dexter Leannon","age":18,"location":"Fort Kimberlyburgh"}},{"attributes":{"name":"Miss Debra Kautzer","age":77,"location":"West Boydtown"}},{"attributes":{"name":"Jackie Muller","age":76,"location":"Riverside"}},{"attributes":{"name":"Kelly Williamson II","age":57,"location":"New Susie"}},{"attributes":{"name":"Ulises Kuphal","age":36,"location":"West Cecilborough"}},{"attributes":{"name":"Jeannette Hegmann","age":40,"location":"Rosalindchester"}},{"attributes":{"name":"Loretta Wyman","age":55,"location":"Farmington"}},{"attributes":{"name":"Elizabeth Wintheiser","age":49,"location":"Port Emileshire"}},{"attributes":{"name":"Zackery Grimes","age":24,"location":"New Ashly"}},{"attributes":{"name":"Colleen Davis","age":79,"location":"East Brent"}},{"attributes":{"name":"Richard Lockman","age":64,"location":"Fort Adolfbury"}},{"attributes":{"name":"Gabriel Bednar-Emard","age":71,"location":"Greenville"}},{"attributes":{"name":"Minnie Cassin","age":71,"location":"Jacobsfurt"}},{"attributes":{"name":"Maci Lubowitz","age":75,"location":"Port Waylonland"}},{"attributes":{"name":"Isaac Conn","age":39,"location":"Justinaburgh"}},{"attributes":{"name":"Kerry Pagac IV","age":39,"location":"Jessicatown"}},{"attributes":{"name":"Alene Harber","age":45,"location":"Domenicacester"}},{"attributes":{"name":"Gertrude Trantow","age":72,"location":"Franeckiport"}},{"attributes":{"name":"Ernestine Franey","age":24,"location":"East Jannie"}},{"attributes":{"name":"Megan Ledner II","age":31,"location":"East Pabloside"}},{"attributes":{"name":"Kristine Sauer","age":36,"location":"New Nicoleberg"}},{"attributes":{"name":"Edgar Bailey","age":48,"location":"Osinskifort"}},{"attributes":{"name":"Leonard Mayert","age":49,"location":"Edmond"}},{"attributes":{"name":"Leslie Rosenbaum","age":53,"location":"New Amparo"}},{"attributes":{"name":"Kelly Littel","age":39,"location":"Cliffordchester"}},{"attributes":{"name":"Leonora Yundt","age":77,"location":"Ortizside"}},{"attributes":{"name":"Deonte Quigley","age":46,"location":"Predovicland"}},{"attributes":{"name":"Bailey Jones","age":25,"location":"South Alphonsoside"}},{"attributes":{"name":"Josefina Haag","age":53,"location":"Tamiami"}},{"attributes":{"name":"Reina Mosciski","age":47,"location":"New Abdiel"}},{"attributes":{"name":"Dr. Gayle Murray","age":26,"location":"Lemueltown"}},{"attributes":{"name":"Renee Koelpin","age":26,"location":"Kellyview"}},{"attributes":{"name":"Jackie Streich-Yost IV","age":72,"location":"Browncester"}},{"attributes":{"name":"Jeremiah Mertz","age":34,"location":"West Jamel"}},{"attributes":{"name":"Shannon Corwin MD","age":51,"location":"Lake Enoch"}},{"attributes":{"name":"Katrine Swaniawski","age":69,"location":"North Ianhaven"}},{"attributes":{"name":"Miss Cleveland Borer III","age":46,"location":"Lacey"}},{"attributes":{"name":"Rafael Lindgren","age":56,"location":"Fort Magnolia"}},{"attributes":{"name":"Hazle Leannon","age":22,"location":"Krajciktown"}},{"attributes":{"name":"Merle Bernier","age":46,"location":"Port Quinn"}},{"attributes":{"name":"Miguel Jerde DDS","age":73,"location":"Port Monique"}},{"attributes":{"name":"Clark Kassulke","age":24,"location":"Clovistown"}},{"attributes":{"name":"Emily Hoppe","age":64,"location":"O'Fallon"}},{"attributes":{"name":"Eloisa Lakin","age":18,"location":"O'Connellboro"}},{"attributes":{"name":"Timmy Mante","age":67,"location":"New Chaunceyborough"}},{"attributes":{"name":"Mrs. Loyce Keeling","age":37,"location":"South Braulio"}},{"attributes":{"name":"Charlotte Wiza-Abernathy","age":39,"location":"North Sincere"}},{"attributes":{"name":"Joy Daugherty","age":57,"location":"Port Desiree"}},{"attributes":{"name":"Wesley Lowe","age":21,"location":"Fort Lionel"}},{"attributes":{"name":"Elias Wintheiser Jr.","age":29,"location":"Turlock"}},{"attributes":{"name":"Elyse Reichel-Thiel","age":41,"location":"Romagueraport"}},{"attributes":{"name":"Ms. Shawna Sanford","age":59,"location":"South Isabell"}},{"attributes":{"name":"June Bergstrom","age":61,"location":"Carleyville"}},{"attributes":{"name":"Cordia Ebert","age":19,"location":"Hartford"}},{"attributes":{"name":"Zachary Steuber","age":31,"location":"Hammond"}},{"attributes":{"name":"Gust Keebler","age":77,"location":"Terrancefort"}},{"attributes":{"name":"Olga Bartoletti","age":65,"location":"West Carleeworth"}},{"attributes":{"name":"Victoria Durgan","age":71,"location":"Alvertafurt"}},{"attributes":{"name":"Sandy Gutmann DDS","age":74,"location":"Port Alexane"}},{"attributes":{"name":"Deontae Thiel","age":28,"location":"Davishaven"}},{"attributes":{"name":"Charles Hickle","age":37,"location":"Breitenbergview"}},{"attributes":{"name":"Bryce Hickle","age":49,"location":"Kalebury"}},{"attributes":{"name":"Genoveva Blanda","age":70,"location":"Howefort"}},{"attributes":{"name":"Opal Dooley","age":67,"location":"Bechtelarworth"}},{"attributes":{"name":"Irvin Brakus","age":76,"location":"South Nikkiberg"}},{"attributes":{"name":"Mrs. Ben Schroeder","age":57,"location":"East Armandborough"}},{"attributes":{"name":"Marguerite Labadie","age":24,"location":"Dibbertstad"}},{"attributes":{"name":"Eloise Wisozk","age":65,"location":"Cummingsburgh"}},{"attributes":{"name":"Kiana Mann","age":39,"location":"West Genoveva"}},{"attributes":{"name":"Dr. Vivian Lubowitz","age":29,"location":"Mavisbury"}},{"attributes":{"name":"Evangeline Koch","age":37,"location":"Lake Waino"}},{"attributes":{"name":"Denise Hane","age":77,"location":"Elishamouth"}},{"attributes":{"name":"Myah Sauer","age":30,"location":"East Russel"}},{"attributes":{"name":"Minerva Yost","age":28,"location":"Merced"}},{"attributes":{"name":"Paula Kunde","age":76,"location":"DuBuqueborough"}},{"attributes":{"name":"Betty VonRueden","age":68,"location":"Naderville"}},{"attributes":{"name":"Alton Purdy-Yost","age":79,"location":"Paoloton"}},{"attributes":{"name":"Jalyn D'Amore","age":41,"location":"Lake Lawson"}},{"attributes":{"name":"Velma Hermiston","age":54,"location":"Lake Omatown"}},{"attributes":{"name":"Shanon Grimes","age":66,"location":"Lexusberg"}},{"attributes":{"name":"Jabari Wintheiser","age":39,"location":"Samsonfurt"}},{"attributes":{"name":"Ken Lang","age":42,"location":"New Patrick"}},{"attributes":{"name":"Mildred Schiller","age":47,"location":"Lake Roma"}},{"attributes":{"name":"Dr. Allen Wolff","age":47,"location":"College Station"}},{"attributes":{"name":"Alexandra Keebler","age":18,"location":"Fort Magdalen"}},{"attributes":{"name":"Lillian Walter","age":41,"location":"Spinkahaven"}},{"attributes":{"name":"Mr. Boyd Roob","age":46,"location":"South Reinhold"}},{"attributes":{"name":"Colleen Hackett","age":41,"location":"Palo Alto"}},{"attributes":{"name":"Gust Ullrich","age":73,"location":"East Verniefield"}},{"attributes":{"name":"Isac Blanda","age":25,"location":"North Ed"}},{"attributes":{"name":"Pat Lehner","age":57,"location":"Feeneyton"}},{"attributes":{"name":"Alicia Hegmann","age":22,"location":"North Darronfort"}},{"attributes":{"name":"Edwina Zieme","age":57,"location":"South Nya"}},{"attributes":{"name":"Ms. Daniela Prohaska","age":28,"location":"Edwinstad"}},{"attributes":{"name":"Craig Volkman","age":53,"location":"Porterland"}},{"attributes":{"name":"Vena Goldner","age":51,"location":"East Alanafield"}},{"attributes":{"name":"Anne Lueilwitz","age":66,"location":"Tucson"}},{"attributes":{"name":"Jeromy Rohan","age":80,"location":"Gradystead"}},{"attributes":{"name":"Ms. Anya Heidenreich","age":67,"location":"McKenzieland"}},{"attributes":{"name":"Dana Lang","age":30,"location":"New Marlenechester"}},{"attributes":{"name":"Ira Quigley","age":41,"location":"North Bartonstead"}},{"attributes":{"name":"Emilio Hilpert","age":46,"location":"Bartonton"}},{"attributes":{"name":"Tommy Hoppe II","age":56,"location":"East Rahsaanstead"}},{"attributes":{"name":"Hugh Hirthe","age":73,"location":"South Morganview"}},{"attributes":{"name":"Anissa Boyle","age":76,"location":"Lake Pat"}},{"attributes":{"name":"Jaylin Runolfsson","age":31,"location":"Winston-Salem"}},{"attributes":{"name":"Amari Hammes","age":31,"location":"Millerview"}},{"attributes":{"name":"Darius Hamill","age":28,"location":"Port Kamronland"}},{"attributes":{"name":"Douglas Rodriguez","age":68,"location":"Hawthorne"}},{"attributes":{"name":"Fae Tromp","age":59,"location":"Green Bay"}},{"attributes":{"name":"Vivienne Feil","age":47,"location":"Whiteberg"}},{"attributes":{"name":"Abel Blanda","age":35,"location":"Garrisonview"}},{"attributes":{"name":"Kendra Schimmel","age":26,"location":"Claudberg"}},{"attributes":{"name":"Tracey Marvin","age":18,"location":"Port Ethan"}},{"attributes":{"name":"Cynthia Johns","age":27,"location":"Maximomouth"}},{"attributes":{"name":"King Homenick","age":78,"location":"South Remingtonfield"}},{"attributes":{"name":"Carmine Davis","age":73,"location":"Considinestead"}},{"attributes":{"name":"Ollie Schiller","age":58,"location":"Kochmouth"}},{"attributes":{"name":"Christine Halvorson","age":32,"location":"Lake Dayna"}},{"attributes":{"name":"Lonny Abshire Jr.","age":57,"location":"Kuhlmanshire"}},{"attributes":{"name":"Ms. Wm McGlynn","age":18,"location":"Schmittfield"}},{"attributes":{"name":"Tonya Toy","age":39,"location":"South Onaton"}},{"attributes":{"name":"Jess Jaskolski","age":55,"location":"Port Tavares"}},{"attributes":{"name":"Marta Waters","age":40,"location":"North Cara"}},{"attributes":{"name":"Mrs. Lane Huel","age":51,"location":"Jedidiahton"}},{"attributes":{"name":"Christina Waelchi MD","age":31,"location":"Mariellestad"}},{"attributes":{"name":"Mr. Brenda Dietrich","age":80,"location":"Torphyfield"}},{"attributes":{"name":"Hulda Welch","age":29,"location":"Bogisichport"}},{"attributes":{"name":"Roberta Boyle","age":49,"location":"Fort Oswaldo"}},{"attributes":{"name":"Nona Mohr","age":45,"location":"Lupeton"}},{"attributes":{"name":"Gideon Abshire","age":44,"location":"Bradtketown"}},{"attributes":{"name":"Ramon Kassulke","age":59,"location":"Santa Fe"}},{"attributes":{"name":"Warren Rippin","age":40,"location":"Port Noemie"}},{"attributes":{"name":"Preston Anderson","age":41,"location":"South Wendell"}},{"attributes":{"name":"Sonja Vandervort","age":67,"location":"Moline"}},{"attributes":{"name":"Dennis Friesen","age":29,"location":"South Laron"}},{"attributes":{"name":"Tanya Mann","age":47,"location":"Dietrichview"}},{"attributes":{"name":"Dr. Harold Mitchell","age":53,"location":"Lake Feltonfort"}},{"attributes":{"name":"Lavern Schuppe","age":44,"location":"West Nashfield"}},{"attributes":{"name":"Arturo Mohr","age":80,"location":"Great Falls"}},{"attributes":{"name":"April Pfeffer Sr.","age":71,"location":"New Gerardo"}},{"attributes":{"name":"Lenny Kihn","age":50,"location":"South Benjamin"}},{"attributes":{"name":"Janae Turner","age":19,"location":"West Katelin"}},{"attributes":{"name":"Kaylin Sipes","age":69,"location":"Gilbert"}},{"attributes":{"name":"Pedro Nolan","age":40,"location":"Lake Dejah"}},{"attributes":{"name":"Theodore Towne","age":25,"location":"Longview"}},{"attributes":{"name":"Charles Haag","age":50,"location":"Kalebport"}},{"attributes":{"name":"Danielle Mills","age":80,"location":"West Laceyhaven"}},{"attributes":{"name":"Adriana Kuhic","age":72,"location":"Lake Marianostad"}},{"attributes":{"name":"Mr. Gardner Emard DVM","age":32,"location":"Irvine"}},{"attributes":{"name":"Mrs. Naomi Crooks","age":78,"location":"West Luellaland"}},{"attributes":{"name":"Dr. Jerald Heller","age":63,"location":"Toyview"}},{"attributes":{"name":"Okey Torphy","age":69,"location":"Kaiafurt"}},{"attributes":{"name":"Edmund Reichert","age":55,"location":"Warwick"}},{"attributes":{"name":"Julio McClure","age":80,"location":"Port Adalbertostad"}},{"attributes":{"name":"Frederic Blick","age":54,"location":"Livonia"}},{"attributes":{"name":"Dr. Frances Fadel","age":21,"location":"Port Laurinefort"}},{"attributes":{"name":"Dr. Stuart Homenick","age":62,"location":"O'Harastad"}},{"attributes":{"name":"Alicia Bahringer","age":30,"location":"Hesselfield"}},{"attributes":{"name":"Camila Cormier","age":21,"location":"North Brielleborough"}},{"attributes":{"name":"Corene Block","age":29,"location":"South Vivianechester"}},{"attributes":{"name":"Dr. Lee Schultz MD","age":53,"location":"Xzavierstad"}},{"attributes":{"name":"Tamara Schaefer","age":38,"location":"Schinnerview"}},{"attributes":{"name":"Amelia Kuhn","age":19,"location":"Jenkinsworth"}},{"attributes":{"name":"Harmon Little Sr.","age":24,"location":"New Elva"}},{"attributes":{"name":"Dr. Christina Glover","age":43,"location":"South Christshire"}},{"attributes":{"name":"Jettie Ziemann","age":28,"location":"Fort Deshaunfort"}},{"attributes":{"name":"Brenda Quitzon","age":41,"location":"Buckridgefield"}},{"attributes":{"name":"Mr. Irvin Hills-Gutkowski","age":28,"location":"Vancouver"}},{"attributes":{"name":"Rhonda Dicki","age":30,"location":"Siennachester"}},{"attributes":{"name":"Ms. Gayle Roberts","age":70,"location":"South Adam"}},{"attributes":{"name":"Miss Kristy Cole","age":19,"location":"Port Braxton"}},{"attributes":{"name":"Darrell Boyer-Quigley","age":24,"location":"Auerstead"}},{"attributes":{"name":"Sonya Pouros-West","age":58,"location":"Austenstad"}},{"attributes":{"name":"Gardner Roob","age":53,"location":"Dustinburgh"}},{"attributes":{"name":"Stanley Stamm","age":77,"location":"Whiteside"}},{"attributes":{"name":"Armando Russel","age":63,"location":"Batztown"}},{"attributes":{"name":"Maude Emard I","age":31,"location":"West Charley"}},{"attributes":{"name":"Eric Hilll","age":30,"location":"Lakinberg"}},{"attributes":{"name":"Mrs. Jackie Zulauf MD","age":60,"location":"Abdullahland"}},{"attributes":{"name":"Devan Leannon I","age":49,"location":"Carrollstead"}},{"attributes":{"name":"Dr. Lynn Quigley","age":48,"location":"Mannland"}},{"attributes":{"name":"Paul Rice","age":75,"location":"Murrieta"}},{"attributes":{"name":"Dr. Lorraine Nicolas","age":75,"location":"West Stantonworth"}},{"attributes":{"name":"Clara Morissette","age":37,"location":"East Dell"}},{"attributes":{"name":"Darlene Swaniawski","age":65,"location":"Mertzton"}},{"attributes":{"name":"Ryan Simonis","age":28,"location":"Lexington-Fayette"}},{"attributes":{"name":"Eduardo Ruecker III","age":28,"location":"Fort Donald"}},{"attributes":{"name":"Kayla Daniel","age":70,"location":"New Amelyhaven"}},{"attributes":{"name":"Willie Crooks","age":71,"location":"Oberbrunnerberg"}},{"attributes":{"name":"Edward Konopelski","age":32,"location":"Elvieview"}},{"attributes":{"name":"Horacio Bergstrom","age":19,"location":"Gutkowskiland"}},{"attributes":{"name":"Christy Feest","age":74,"location":"Marquardtland"}},{"attributes":{"name":"Ole Will","age":38,"location":"South Sheldontown"}},{"attributes":{"name":"Marjory Sipes","age":65,"location":"New Kendall"}},{"attributes":{"name":"Myron Conroy","age":33,"location":"South Ceasarland"}},{"attributes":{"name":"Rosalie Pollich","age":62,"location":"Lake Jerrodton"}},{"attributes":{"name":"Yadira Glover","age":70,"location":"West Chester"}},{"attributes":{"name":"Brandy Casper","age":64,"location":"Fort Mariela"}},{"attributes":{"name":"Ms. Eleonore Crona","age":67,"location":"South Victor"}},{"attributes":{"name":"Emma Klein","age":46,"location":"Donnafort"}},{"attributes":{"name":"Miss Nicole Kovacek","age":42,"location":"Micahmouth"}},{"attributes":{"name":"Dr. Julie Pfeffer","age":66,"location":"Dallinborough"}},{"attributes":{"name":"Mr. Elmer Streich","age":45,"location":"Oklahoma City"}},{"attributes":{"name":"Liana Conn","age":68,"location":"Wunschfield"}},{"attributes":{"name":"Kameron Terry-Hudson","age":75,"location":"Julianaview"}},{"attributes":{"name":"Quentin Keebler","age":45,"location":"Shyannhaven"}},{"attributes":{"name":"Coleman Kunze","age":46,"location":"Plantation"}},{"attributes":{"name":"Raul Mayer","age":67,"location":"Elyseburgh"}},{"attributes":{"name":"Dr. Travon Gutkowski III","age":68,"location":"Bednarburgh"}},{"attributes":{"name":"Alvera Barton","age":79,"location":"Rupertville"}},{"attributes":{"name":"Clifford Krajcik","age":45,"location":"Southaven"}},{"attributes":{"name":"Jackie Koch","age":72,"location":"Feestberg"}},{"attributes":{"name":"Miss Mortimer Adams","age":64,"location":"Fort Myers"}},{"attributes":{"name":"Peggy Prosacco","age":33,"location":"Lake Ravenside"}},{"attributes":{"name":"Stella Towne-Schaefer","age":20,"location":"Kossstead"}},{"attributes":{"name":"Fredrick Bernhard Sr.","age":65,"location":"South Stacy"}},{"attributes":{"name":"Joseph Ondricka","age":19,"location":"Denisshire"}},{"attributes":{"name":"Michele Bins DVM","age":69,"location":"Tremblayborough"}},{"attributes":{"name":"Forrest Bogisich III","age":23,"location":"Fort Therese"}},{"attributes":{"name":"Lee Bahringer MD","age":36,"location":"Verliestead"}},{"attributes":{"name":"Dr. Charlie Huel","age":57,"location":"West Riley"}},{"attributes":{"name":"Juanita Price","age":66,"location":"Gregburgh"}},{"attributes":{"name":"Francesca Kilback III","age":72,"location":"Fort Jerroldburgh"}},{"attributes":{"name":"Dock Wisoky","age":51,"location":"East Princess"}},{"attributes":{"name":"Jordan Stiedemann","age":48,"location":"Trantowfort"}},{"attributes":{"name":"Hazel Jacobson-Kuvalis","age":34,"location":"Bradleyview"}},{"attributes":{"name":"Dr. Lottie Baumbach","age":80,"location":"Uptonbury"}},{"attributes":{"name":"Kristine Hayes Sr.","age":64,"location":"Novato"}},{"attributes":{"name":"Jana Ward","age":67,"location":"Bernadinecester"}},{"attributes":{"name":"Antonia Koch V","age":31,"location":"Gutmannbury"}},{"attributes":{"name":"Craig Hintz","age":75,"location":"South Tierra"}},{"attributes":{"name":"Jeremy Mraz","age":52,"location":"Lake Mazieborough"}},{"attributes":{"name":"Percy Kreiger","age":77,"location":"Jordynhaven"}},{"attributes":{"name":"Liana Schroeder","age":74,"location":"North Stefanchester"}},{"attributes":{"name":"Jeannette Emmerich","age":28,"location":"South Layla"}},{"attributes":{"name":"Elise Lesch","age":44,"location":"Salina"}},{"attributes":{"name":"Stewart Douglas","age":48,"location":"West Trinityhaven"}},{"attributes":{"name":"Emerson Adams","age":75,"location":"Morarport"}},{"attributes":{"name":"Stanton Kub","age":63,"location":"Sandrineworth"}},{"attributes":{"name":"Mr. Johnson Weissnat","age":25,"location":"South Angelo"}},{"attributes":{"name":"Luke Gerlach","age":39,"location":"Smithamworth"}},{"attributes":{"name":"Randy Farrell","age":44,"location":"Durham"}},{"attributes":{"name":"Nathaniel Barton","age":61,"location":"South Lillyville"}},{"attributes":{"name":"Willy Prosacco","age":45,"location":"Spring Hill"}},{"attributes":{"name":"Ignacio Dickens","age":19,"location":"Robynfield"}},{"attributes":{"name":"Christelle Abbott","age":44,"location":"East Cassandre"}},{"attributes":{"name":"Zita Wisozk","age":66,"location":"Onieboro"}},{"attributes":{"name":"Kayden Paucek","age":55,"location":"East Justine"}},{"attributes":{"name":"Donald Murazik","age":58,"location":"Lake Geraldineton"}},{"attributes":{"name":"Jade Reilly","age":55,"location":"Edwardoland"}},{"attributes":{"name":"Lela Crist I","age":59,"location":"West Britney"}},{"attributes":{"name":"Emily Carroll","age":39,"location":"Port Annabelle"}},{"attributes":{"name":"Dr. Josefa Romaguera","age":40,"location":"North Camila"}},{"attributes":{"name":"Franklin Adams","age":78,"location":"North Stephanieside"}},{"attributes":{"name":"Bernice Leffler","age":33,"location":"Cleveland"}},{"attributes":{"name":"Reid Sporer","age":28,"location":"Oro Valley"}},{"attributes":{"name":"Manuel Hackett","age":22,"location":"Lake Dollyport"}},{"attributes":{"name":"Cassie Schultz","age":28,"location":"South Faymouth"}},{"attributes":{"name":"Cindy Bernier","age":58,"location":"San Diego"}},{"attributes":{"name":"Hellen Cummings","age":60,"location":"Fort Lilly"}},{"attributes":{"name":"Vera Blick","age":20,"location":"Port Janniecester"}},{"attributes":{"name":"Amelia Howe","age":32,"location":"New Stanleyville"}},{"attributes":{"name":"Ilene Legros","age":40,"location":"Wesley Chapel"}},{"attributes":{"name":"Lonnie Bergstrom","age":45,"location":"North Sincere"}},{"attributes":{"name":"Kimberly Metz","age":32,"location":"Corwinborough"}},{"attributes":{"name":"Loy Hermiston","age":69,"location":"Karianneton"}},{"attributes":{"name":"Brian Harvey","age":47,"location":"Town 'n' Country"}},{"attributes":{"name":"Miss Patty Fisher","age":47,"location":"Ronaldoboro"}},{"attributes":{"name":"Carolyn Rosenbaum V","age":39,"location":"Powlowskimouth"}},{"attributes":{"name":"Erika Murazik","age":72,"location":"Madgehaven"}},{"attributes":{"name":"Vickie McLaughlin","age":72,"location":"West Jose"}},{"attributes":{"name":"Osborne Zboncak I","age":36,"location":"East Adele"}},{"attributes":{"name":"Miss Jessie Satterfield","age":41,"location":"South Veronica"}},{"attributes":{"name":"Alice Blick","age":53,"location":"Grantfurt"}},{"attributes":{"name":"Terry Runolfsson-Aufderhar","age":26,"location":"New Terrell"}},{"attributes":{"name":"Rosie O'Connell","age":79,"location":"Lake Lawrencetown"}},{"attributes":{"name":"Melba Daugherty MD","age":72,"location":"Fernandoview"}},{"attributes":{"name":"Salvatore Macejkovic","age":39,"location":"Fort Jerry"}},{"attributes":{"name":"Javier Gerlach V","age":78,"location":"New Miguel"}},{"attributes":{"name":"George Emmerich","age":75,"location":"West Elmocester"}},{"attributes":{"name":"Micheal Welch V","age":58,"location":"West Amira"}},{"attributes":{"name":"Mr. Terry Watsica","age":76,"location":"Yoshikoborough"}},{"attributes":{"name":"Jill Connelly","age":21,"location":"Lake Harryfield"}},{"attributes":{"name":"Maximilian Erdman","age":50,"location":"Cronastad"}},{"attributes":{"name":"Cortez Gottlieb","age":32,"location":"New Clemmie"}},{"attributes":{"name":"Brown Ondricka","age":25,"location":"North Brock"}},{"attributes":{"name":"Eleazar Nienow","age":64,"location":"Lake Gavinbury"}},{"attributes":{"name":"Philip Lubowitz","age":74,"location":"Naderburgh"}},{"attributes":{"name":"Mrs. Traci Davis","age":38,"location":"Grand Prairie"}},{"attributes":{"name":"Simon Russel","age":63,"location":"North Carmelo"}},{"attributes":{"name":"Kirstin Beahan","age":74,"location":"Madisynstad"}},{"attributes":{"name":"Israel McLaughlin","age":57,"location":"North Emmettville"}},{"attributes":{"name":"Winona Towne","age":75,"location":"New Kirstencester"}},{"attributes":{"name":"Lynne Runte PhD","age":61,"location":"Rashawnside"}},{"attributes":{"name":"Angus Sawayn","age":35,"location":"North Noemie"}},{"attributes":{"name":"Clara Wiegand IV","age":19,"location":"Port Kalebshire"}},{"attributes":{"name":"Geovanni Feest","age":32,"location":"Palm Springs"}},{"attributes":{"name":"Princess Kuhn Jr.","age":35,"location":"Schuppeburgh"}},{"attributes":{"name":"Randall Stehr","age":66,"location":"New Loyceborough"}},{"attributes":{"name":"Beth Brown","age":76,"location":"Yonkers"}},{"attributes":{"name":"Marlin Schneider","age":56,"location":"South Waltonboro"}},{"attributes":{"name":"Willie Miller Jr.","age":42,"location":"Palm Harbor"}},{"attributes":{"name":"Desiree Murphy","age":40,"location":"Guidochester"}},{"attributes":{"name":"Emmett Heller","age":33,"location":"Lake Paolo"}},{"attributes":{"name":"Carlos Stark","age":58,"location":"Tulare"}},{"attributes":{"name":"Jermey Gulgowski DDS","age":57,"location":"Grand Island"}},{"attributes":{"name":"Bertha Yost","age":18,"location":"Barrowsburgh"}},{"attributes":{"name":"Brooke Feest","age":33,"location":"Waldorf"}},{"attributes":{"name":"Miss Hoyt Herzog","age":71,"location":"Mullerworth"}},{"attributes":{"name":"Seth Krajcik","age":41,"location":"Jenkinscester"}},{"attributes":{"name":"Van Borer","age":80,"location":"Genesisfield"}},{"attributes":{"name":"Marcel D'Amore","age":22,"location":"Fort Reinholdworth"}},{"attributes":{"name":"Casey Considine","age":58,"location":"Cathrinefurt"}},{"attributes":{"name":"Joannie Flatley","age":54,"location":"Ellicott City"}},{"attributes":{"name":"Jovan Kris","age":50,"location":"Murrayworth"}},{"attributes":{"name":"Wendy Oberbrunner","age":53,"location":"Deltona"}},{"attributes":{"name":"Clinton Quigley","age":43,"location":"Lakinville"}},{"attributes":{"name":"Henrietta Boyer III","age":52,"location":"Elk Grove"}},{"attributes":{"name":"Erma Ortiz","age":18,"location":"Missouri City"}},{"attributes":{"name":"Mr. Jeffery Klocko","age":27,"location":"Athens-Clarke County"}},{"attributes":{"name":"William Towne","age":55,"location":"Legrosville"}},{"attributes":{"name":"Phillip Strosin Sr.","age":41,"location":"Joplin"}},{"attributes":{"name":"Erick Mayert MD","age":65,"location":"Feeneyland"}},{"attributes":{"name":"Ira Cronin","age":49,"location":"Pasco"}},{"attributes":{"name":"Dr. Mathew Bechtelar","age":39,"location":"Oak Park"}},{"attributes":{"name":"Jeffery Blanda PhD","age":19,"location":"Hartmannberg"}},{"attributes":{"name":"Mrs. Dorcas Runte","age":52,"location":"West Margarettstead"}},{"attributes":{"name":"Samson Hand","age":35,"location":"Stamford"}},{"attributes":{"name":"Fredrick Bechtelar","age":44,"location":"Croninville"}},{"attributes":{"name":"Modesta Witting IV","age":38,"location":"Rogahnside"}},{"attributes":{"name":"Allan Morissette","age":33,"location":"Port Daryl"}},{"attributes":{"name":"Antonia Mosciski","age":31,"location":"Quincy"}},{"attributes":{"name":"Debra Schuster","age":73,"location":"Oxnard"}},{"attributes":{"name":"Johanna Lemke","age":45,"location":"Madison"}},{"attributes":{"name":"Orlando Weissnat Sr.","age":47,"location":"Lynwood"}},{"attributes":{"name":"Rachelle Rolfson","age":33,"location":"Fort Daphney"}},{"attributes":{"name":"Alonzo Gerhold","age":79,"location":"Mayertside"}},{"attributes":{"name":"Kari Cremin","age":18,"location":"West Seneca"}},{"attributes":{"name":"Simon Lesch-Bauch","age":44,"location":"Fort Eudora"}},{"attributes":{"name":"Lydia Ratke","age":75,"location":"Jeanetteberg"}},{"attributes":{"name":"Alysa Tromp III","age":22,"location":"Ankundingside"}},{"attributes":{"name":"Lauren Walker","age":60,"location":"Glendora"}},{"attributes":{"name":"Miss Sandra Christiansen","age":75,"location":"Ogden"}},{"attributes":{"name":"Robin Jacobson PhD","age":47,"location":"Shaniyafort"}},{"attributes":{"name":"Frank Halvorson","age":58,"location":"Davis"}},{"attributes":{"name":"Tina Huel","age":42,"location":"Abilene"}},{"attributes":{"name":"Lorene Von","age":24,"location":"Florineshire"}},{"attributes":{"name":"Clarence Schuster","age":26,"location":"Lake Jevon"}},{"attributes":{"name":"Dr. Jaylen Welch","age":36,"location":"Harrisfurt"}},{"attributes":{"name":"Americo Stanton","age":47,"location":"Elouisemouth"}},{"attributes":{"name":"Tanya Block","age":78,"location":"Fort Jannie"}},{"attributes":{"name":"Mrs. Deborah Rau Sr.","age":35,"location":"Port Loyce"}},{"attributes":{"name":"Delores Brekke","age":68,"location":"North Lillyshire"}},{"attributes":{"name":"Theodore Rath Sr.","age":46,"location":"West Darlenefurt"}},{"attributes":{"name":"Armando Crooks","age":19,"location":"North Bert"}},{"attributes":{"name":"Jacob Purdy","age":52,"location":"Donnellyfurt"}},{"attributes":{"name":"Dr. Brown Hagenes","age":69,"location":"Adrianatown"}},{"attributes":{"name":"Brooke Johnson","age":27,"location":"Connellyhaven"}},{"attributes":{"name":"Judy Rohan","age":34,"location":"East Lois"}},{"attributes":{"name":"Mr. Jamie Dicki","age":72,"location":"Fort Diegoshire"}},{"attributes":{"name":"Deanna Green","age":50,"location":"Corkeryview"}},{"attributes":{"name":"Clinton McDermott","age":64,"location":"Largo"}},{"attributes":{"name":"Dewey Reynolds","age":26,"location":"Elizabeth"}},{"attributes":{"name":"Ms. Consuelo Corwin","age":45,"location":"West Noelia"}},{"attributes":{"name":"Emanuel Schowalter","age":52,"location":"Klingchester"}},{"attributes":{"name":"Alan Wuckert","age":23,"location":"Leopoldostad"}},{"attributes":{"name":"Melba Kub","age":27,"location":"North Tillman"}},{"attributes":{"name":"Ludie Marquardt-Trantow","age":32,"location":"St. Louis"}},{"attributes":{"name":"Laura Dickens","age":40,"location":"Lewisview"}},{"attributes":{"name":"Randy Robel","age":45,"location":"Kihnbury"}},{"attributes":{"name":"Marco Streich MD","age":32,"location":"Fort Ewell"}},{"attributes":{"name":"Javier Schmeler","age":78,"location":"Mableberg"}},{"attributes":{"name":"Angelo Gutkowski","age":21,"location":"South Rockyton"}},{"attributes":{"name":"Mr. Una Jones","age":27,"location":"Cerritos"}},{"attributes":{"name":"Florine Wiza","age":30,"location":"Kovacekview"}},{"attributes":{"name":"Ivory Maggio","age":55,"location":"East Marge"}},{"attributes":{"name":"Wendell Keebler","age":58,"location":"Samsonfort"}},{"attributes":{"name":"Justus Jacobson DVM","age":66,"location":"Lake Monroe"}},{"attributes":{"name":"Amari Jacobi","age":74,"location":"Quitzonfort"}},{"attributes":{"name":"Jack Hermiston","age":40,"location":"Rockford"}},{"attributes":{"name":"Devon Johnston","age":22,"location":"Kendallview"}},{"attributes":{"name":"Marta Dickens","age":48,"location":"Modesto"}},{"attributes":{"name":"Lela Russel IV","age":80,"location":"Lake Robbiebury"}},{"attributes":{"name":"Richard Cummings","age":18,"location":"East Lucinda"}},{"attributes":{"name":"Lana Murray III","age":58,"location":"Redmond"}},{"attributes":{"name":"Jane Shields-Torphy","age":44,"location":"Fernemouth"}},{"attributes":{"name":"Celia Nolan","age":26,"location":"Caldwell"}},{"attributes":{"name":"Kristy Wiza","age":72,"location":"Corkeryland"}},{"attributes":{"name":"Doris Leffler","age":73,"location":"Pontiac"}},{"attributes":{"name":"Mable Moore","age":45,"location":"Moreno Valley"}},{"attributes":{"name":"Ralph Schmeler-Schmeler","age":56,"location":"Fadelville"}},{"attributes":{"name":"Marta Bode","age":80,"location":"East Amandamouth"}},{"attributes":{"name":"Mrs. Hailee Williamson","age":63,"location":"Edenshire"}},{"attributes":{"name":"Laura Corkery","age":26,"location":"Gracieton"}},{"attributes":{"name":"Henrietta Quitzon DDS","age":68,"location":"New Dianna"}},{"attributes":{"name":"Leroy Kohler","age":52,"location":"Eveborough"}},{"attributes":{"name":"Jeanette Batz","age":51,"location":"North Stuart"}},{"attributes":{"name":"Marcella Prosacco","age":78,"location":"Nevaville"}},{"attributes":{"name":"Mitchell O'Conner","age":64,"location":"North Alifield"}},{"attributes":{"name":"Cali Hane","age":68,"location":"Fisherstead"}},{"attributes":{"name":"Bianka Rau","age":63,"location":"North Hayleyhaven"}},{"attributes":{"name":"Shanny VonRueden-Bode","age":23,"location":"Cartertown"}},{"attributes":{"name":"Aisha Kreiger","age":61,"location":"Salt Lake City"}},{"attributes":{"name":"Madaline Oberbrunner","age":56,"location":"North Amya"}},{"attributes":{"name":"Hubert Dickinson","age":56,"location":"Schummboro"}},{"attributes":{"name":"Jacklyn McClure","age":53,"location":"Tulsa"}},{"attributes":{"name":"Vicki Harris","age":60,"location":"Coral Gables"}},{"attributes":{"name":"Mr. Cory O'Conner I","age":42,"location":"Lillianaton"}},{"attributes":{"name":"Alva Larkin","age":54,"location":"Reaganside"}},{"attributes":{"name":"Candice Daugherty","age":24,"location":"Nikkiside"}},{"attributes":{"name":"Joanny Lueilwitz","age":47,"location":"Fort Connor"}},{"attributes":{"name":"Rahul Willms","age":35,"location":"Towneburgh"}},{"attributes":{"name":"Mr. Emmalee Senger","age":36,"location":"St. Peters"}},{"attributes":{"name":"Stacy Kris","age":79,"location":"Fort Edythland"}},{"attributes":{"name":"Ramiro Reichel","age":35,"location":"Gonzalocester"}},{"attributes":{"name":"Duane Bruen","age":40,"location":"Wolfshire"}},{"attributes":{"name":"Tod Bahringer","age":70,"location":"Felicitaboro"}},{"attributes":{"name":"Rosalie Tremblay","age":55,"location":"Town 'n' Country"}},{"attributes":{"name":"Allen Dach","age":77,"location":"East Honolulu"}},{"attributes":{"name":"Chelsea Grimes","age":48,"location":"Horacioview"}},{"attributes":{"name":"Florence Jacobi","age":56,"location":"Pacochachester"}},{"attributes":{"name":"Maryann Romaguera","age":48,"location":"East Frankville"}},{"attributes":{"name":"Rafael Schroeder","age":43,"location":"Blickfurt"}},{"attributes":{"name":"Mr. Darrell Wilkinson","age":57,"location":"Fontana"}},{"attributes":{"name":"Angela Conn","age":45,"location":"Medhurstboro"}},{"attributes":{"name":"Christopher Senger","age":69,"location":"Thompsonville"}},{"attributes":{"name":"Leonie Harber","age":61,"location":"New Mustafa"}},{"attributes":{"name":"Ervin Hahn-Fahey","age":53,"location":"West Liam"}},{"attributes":{"name":"Dereck Fadel","age":52,"location":"Fort Taryn"}},{"attributes":{"name":"Linnea Kshlerin","age":21,"location":"Theodoreworth"}},{"attributes":{"name":"Leif Rippin","age":31,"location":"South Alaynaside"}},{"attributes":{"name":"Josiah King","age":32,"location":"West Sheila"}},{"attributes":{"name":"Alma Casper","age":50,"location":"Estevanton"}},{"attributes":{"name":"Kiel Schowalter","age":48,"location":"Lenexa"}},{"attributes":{"name":"Melody Balistreri","age":23,"location":"Sauerberg"}},{"attributes":{"name":"Rebecca Cormier","age":68,"location":"Lake Violettefort"}},{"attributes":{"name":"Oswald Dickens","age":73,"location":"Larsonchester"}},{"attributes":{"name":"Matthew Terry","age":48,"location":"West Emilybury"}},{"attributes":{"name":"Kayla Hoeger","age":35,"location":"Bernardofurt"}},{"attributes":{"name":"Virginia Thiel","age":67,"location":"Lake Napoleon"}},{"attributes":{"name":"Nina D'Amore-Kulas","age":26,"location":"Kielside"}},{"attributes":{"name":"Lynne Koepp-Stoltenberg","age":34,"location":"South Autumn"}},{"attributes":{"name":"Rosemarie Runolfsson","age":71,"location":"East Maeve"}},{"attributes":{"name":"Elsie Feest-Legros","age":31,"location":"West Hartford"}},{"attributes":{"name":"Bessie Bashirian IV","age":66,"location":"Hirthefield"}},{"attributes":{"name":"Roxanne Haley","age":72,"location":"Grapevine"}},{"attributes":{"name":"Brooke Spencer","age":25,"location":"North Elnabury"}},{"attributes":{"name":"Kaya Pollich IV","age":19,"location":"Altoona"}},{"attributes":{"name":"Ella Marquardt","age":35,"location":"Elgin"}},{"attributes":{"name":"Dwayne Schinner","age":68,"location":"Port Robertoport"}},{"attributes":{"name":"Shannon Ritchie","age":76,"location":"West Dejon"}},{"attributes":{"name":"Dorothy Howe","age":79,"location":"North Alexander"}},{"attributes":{"name":"Zula Beier","age":41,"location":"North Omerbury"}},{"attributes":{"name":"Chloe Kunde Sr.","age":69,"location":"Fort Nicholausland"}},{"attributes":{"name":"Angus Haley","age":79,"location":"Gregorioworth"}},{"attributes":{"name":"Cortney Zieme","age":53,"location":"Lake Cassandratown"}},{"attributes":{"name":"Fay Wilderman DDS","age":37,"location":"Mannfort"}},{"attributes":{"name":"Queen Greenfelder DVM","age":36,"location":"Fort Kayceehaven"}},{"attributes":{"name":"Dr. Max Huels","age":27,"location":"Worcester"}},{"attributes":{"name":"Osbaldo Romaguera","age":77,"location":"South Charlotte"}},{"attributes":{"name":"Ivy Pouros","age":32,"location":"North Little Rock"}},{"attributes":{"name":"Mack Kutch","age":46,"location":"North Dennisborough"}},{"attributes":{"name":"Harvey Schroeder","age":47,"location":"Wintheiserville"}},{"attributes":{"name":"Karen Leannon","age":45,"location":"Vallejo"}},{"attributes":{"name":"Dewitt Brakus","age":65,"location":"Compton"}},{"attributes":{"name":"Bertha Murray","age":41,"location":"Schinnerview"}},{"attributes":{"name":"Armando Rippin","age":69,"location":"North Lola"}},{"attributes":{"name":"Miss Allan Rice PhD","age":18,"location":"Meggieland"}},{"attributes":{"name":"Vida Mohr","age":56,"location":"Juliusville"}},{"attributes":{"name":"Deborah Bradtke","age":53,"location":"Muellershire"}},{"attributes":{"name":"Claude Beahan","age":32,"location":"Port Hellenboro"}},{"attributes":{"name":"Georgia Luettgen","age":75,"location":"Roryville"}},{"attributes":{"name":"Jasen Paucek","age":68,"location":"East Willowshire"}},{"attributes":{"name":"Hailee Kassulke","age":42,"location":"East Shawna"}},{"attributes":{"name":"Antonio Bayer","age":31,"location":"West Scarlettmouth"}},{"attributes":{"name":"Hilda Ernser","age":49,"location":"Claudborough"}},{"attributes":{"name":"Dominic Gleichner","age":22,"location":"Highland"}},{"attributes":{"name":"Maurice Wilderman","age":31,"location":"Lake Alison"}},{"attributes":{"name":"Simon Renner","age":37,"location":"Summertown"}},{"attributes":{"name":"Wilson Windler","age":21,"location":"South Filibertoport"}},{"attributes":{"name":"Lloyd Mertz-Hirthe","age":37,"location":"New Yvette"}},{"attributes":{"name":"Hugo Kiehn","age":61,"location":"Beahanmouth"}},{"attributes":{"name":"Kailee Tremblay-Padberg","age":47,"location":"Lynn"}},{"attributes":{"name":"Adele Conroy-Hoppe","age":39,"location":"Auerport"}},{"attributes":{"name":"Dayne Gleason","age":29,"location":"Jacobimouth"}},{"attributes":{"name":"Mr. Lacey Cruickshank","age":69,"location":"Krajcikland"}},{"attributes":{"name":"Rodolfo Douglas II","age":35,"location":"Armstrongchester"}},{"attributes":{"name":"Anya Ledner","age":32,"location":"Ortiztown"}},{"attributes":{"name":"Ellis Tillman","age":32,"location":"Port Michelberg"}},{"attributes":{"name":"Heidi Mertz","age":80,"location":"Moore"}},{"attributes":{"name":"Olaf Kovacek","age":73,"location":"Gleichnerbury"}},{"attributes":{"name":"Sherry Cole","age":21,"location":"East Dameonport"}},{"attributes":{"name":"Edmund Mayert","age":46,"location":"Brennonworth"}},{"attributes":{"name":"Arnold Stanton","age":59,"location":"East Flavie"}},{"attributes":{"name":"Lonnie Mills","age":69,"location":"Raynorfurt"}},{"attributes":{"name":"Ricky Cruickshank","age":27,"location":"Bellflower"}},{"attributes":{"name":"Dr. Austin Gottlieb","age":60,"location":"Caroleboro"}},{"attributes":{"name":"Luther Gorczany","age":42,"location":"Bayamon"}},{"attributes":{"name":"Peter Towne I","age":61,"location":"Crooksstad"}},{"attributes":{"name":"Darrell Schaden","age":41,"location":"West Pinkieshire"}},{"attributes":{"name":"Luther King","age":19,"location":"South Loraineland"}},{"attributes":{"name":"Juana Koepp","age":33,"location":"South Reillyborough"}},{"attributes":{"name":"Robin White","age":62,"location":"Charlottesville"}},{"attributes":{"name":"Zachariah Prohaska","age":56,"location":"Nolanville"}},{"attributes":{"name":"Garret Pouros","age":71,"location":"West Brenden"}},{"attributes":{"name":"Marie Fahey I","age":25,"location":"Leanneton"}},{"attributes":{"name":"Casimir Fadel","age":72,"location":"Stamford"}},{"attributes":{"name":"Adolf Muller V","age":48,"location":"Haleyburgh"}},{"attributes":{"name":"Santino Aufderhar","age":70,"location":"Soniaboro"}},{"attributes":{"name":"Dr. Misty Bahringer","age":24,"location":"Lueilwitzland"}},{"attributes":{"name":"Drew Stiedemann","age":58,"location":"East Bryana"}},{"attributes":{"name":"Jessica Mayert","age":54,"location":"Port Rainaworth"}},{"attributes":{"name":"Ana Macejkovic","age":72,"location":"Port Maximo"}},{"attributes":{"name":"Miranda Kreiger","age":25,"location":"Dawsonstad"}},{"attributes":{"name":"Gwendolyn Leuschke","age":74,"location":"East Honolulu"}},{"attributes":{"name":"Felicia Gleason","age":32,"location":"North Yoshiko"}},{"attributes":{"name":"Stuart Mertz","age":39,"location":"South Geovanni"}},{"attributes":{"name":"Elenora Witting","age":27,"location":"Tustin"}},{"attributes":{"name":"Maxwell Skiles MD","age":49,"location":"Bloomington"}},{"attributes":{"name":"Woodrow Tremblay","age":73,"location":"Cypress"}},{"attributes":{"name":"Katheryn Kerluke","age":19,"location":"Ricebury"}},{"attributes":{"name":"Raquel Lemke","age":59,"location":"Buckchester"}},{"attributes":{"name":"Janice Goodwin Jr.","age":27,"location":"Wardchester"}},{"attributes":{"name":"Yvonne Renner","age":39,"location":"South Orinside"}},{"attributes":{"name":"Lynn Carter","age":45,"location":"New Alberta"}},{"attributes":{"name":"Cleveland Lemke","age":24,"location":"Lake Masonburgh"}},{"attributes":{"name":"Kellen Greenholt","age":66,"location":"Manteside"}},{"attributes":{"name":"Mr. Ira Carter III","age":77,"location":"Allentown"}},{"attributes":{"name":"Allen Adams I","age":18,"location":"North Gina"}},{"attributes":{"name":"Doyle Smitham PhD","age":21,"location":"Shyannville"}},{"attributes":{"name":"Lilla Mosciski","age":46,"location":"Fort Thaddeus"}},{"attributes":{"name":"Allene Torphy-Ankunding V","age":29,"location":"Bel Air South"}},{"attributes":{"name":"Lizzie McCullough III","age":49,"location":"Brandon"}},{"attributes":{"name":"Fritz Kertzmann-MacGyver","age":61,"location":"Santa Clarita"}},{"attributes":{"name":"Bo Bradtke","age":47,"location":"Fort Freida"}},{"attributes":{"name":"Cecelia Sanford","age":38,"location":"Langworthside"}},{"attributes":{"name":"Isaac Satterfield","age":80,"location":"Memphis"}},{"attributes":{"name":"Diana Tromp","age":31,"location":"Hempstead"}},{"attributes":{"name":"Randi McDermott","age":52,"location":"East Loraine"}},{"attributes":{"name":"Fred Quitzon PhD","age":75,"location":"Lake Arnoldotown"}},{"attributes":{"name":"Matthew Kassulke","age":58,"location":"Mayefurt"}},{"attributes":{"name":"Eleanore Green","age":23,"location":"Lake Emmalee"}},{"attributes":{"name":"Rosa Krajcik III","age":22,"location":"South Lauriannebury"}},{"attributes":{"name":"Kristopher Ebert","age":68,"location":"West Delphafort"}},{"attributes":{"name":"Carole Prosacco","age":39,"location":"Nienowborough"}},{"attributes":{"name":"Rufus Shanahan","age":69,"location":"North Jonathonborough"}},{"attributes":{"name":"Kathleen Reynolds PhD","age":66,"location":"Jovannyburgh"}},{"attributes":{"name":"Rocio Hirthe","age":77,"location":"Harrisonburg"}},{"attributes":{"name":"Miss America Zieme","age":48,"location":"Torpport"}},{"attributes":{"name":"Lula Kuhlman","age":34,"location":"Fort Duaneport"}},{"attributes":{"name":"Yessenia Reynolds","age":49,"location":"New Susanafort"}},{"attributes":{"name":"Jan Konopelski III","age":18,"location":"Hazelshire"}},{"attributes":{"name":"Evelyn Kiehn","age":50,"location":"New Arlie"}},{"attributes":{"name":"Alfred Mayer","age":77,"location":"West Francesport"}},{"attributes":{"name":"Dixie Turner","age":54,"location":"Devonbury"}},{"attributes":{"name":"Kimberly Jaskolski","age":40,"location":"Browncester"}},{"attributes":{"name":"Mae Schultz","age":57,"location":"Tysonview"}},{"attributes":{"name":"Miss Victor Hessel","age":30,"location":"Palm Springs"}},{"attributes":{"name":"Dr. Mamie Schmidt","age":75,"location":"North Okeyshire"}},{"attributes":{"name":"Marvin Abbott","age":65,"location":"Willmsmouth"}},{"attributes":{"name":"Herbert Mills","age":52,"location":"Flagstaff"}},{"attributes":{"name":"Harvey Howell","age":41,"location":"O'Connellchester"}},{"attributes":{"name":"Dr. Gerardo Legros","age":61,"location":"Ettieshire"}},{"attributes":{"name":"Mrs. Elmer Gislason","age":62,"location":"West Noemiefurt"}},{"attributes":{"name":"Mrs. Milton Walsh","age":31,"location":"Fort Faystad"}},{"attributes":{"name":"Felicita Kris","age":77,"location":"West Halliemouth"}},{"attributes":{"name":"Eduardo Becker IV","age":22,"location":"South Therese"}},{"attributes":{"name":"Bruce Schroeder","age":58,"location":"Wisokyshire"}},{"attributes":{"name":"Brionna Hudson","age":53,"location":"Lake Toni"}},{"attributes":{"name":"Patti Olson-O'Connell","age":29,"location":"Farrellhaven"}},{"attributes":{"name":"Ed Johnston","age":21,"location":"West Alta"}},{"attributes":{"name":"Marjorie Balistreri IV","age":21,"location":"Port Emiliano"}},{"attributes":{"name":"Patsy Schultz","age":53,"location":"Kirkland"}},{"attributes":{"name":"Bernard Simonis","age":55,"location":"South Devonton"}},{"attributes":{"name":"Cassandra Hudson","age":25,"location":"Breitenbergburgh"}},{"attributes":{"name":"Angie Ernser II","age":61,"location":"Hollywood"}},{"attributes":{"name":"Macy Beier","age":59,"location":"South Stanfordville"}},{"attributes":{"name":"Rhonda Hansen","age":73,"location":"East Maiyatown"}},{"attributes":{"name":"Armando Lindgren","age":52,"location":"Fort Flossieville"}},{"attributes":{"name":"Casey Langosh","age":76,"location":"West Deion"}},{"attributes":{"name":"Leigh Wisozk","age":77,"location":"Vellashire"}},{"attributes":{"name":"Tony Armstrong DVM","age":51,"location":"Providence"}},{"attributes":{"name":"Arielle McCullough","age":65,"location":"Zboncakshire"}},{"attributes":{"name":"Deanna Steuber","age":34,"location":"West Stanford"}},{"attributes":{"name":"Dayne Crist","age":70,"location":"Farrellstad"}},{"attributes":{"name":"Neal Beahan","age":28,"location":"Reichertcester"}},{"attributes":{"name":"Mandy Marks","age":55,"location":"Marisolville"}},{"attributes":{"name":"Ladarius Goodwin","age":63,"location":"South Claud"}},{"attributes":{"name":"Mandy Cremin","age":32,"location":"Wylie"}},{"attributes":{"name":"Rachel Jakubowski","age":60,"location":"South Lennie"}},{"attributes":{"name":"Vivian Aufderhar","age":55,"location":"South Sincereberg"}},{"attributes":{"name":"Oran Pfannerstill-Kunze","age":66,"location":"Arieltown"}},{"attributes":{"name":"Dallin Jakubowski","age":25,"location":"Batzburgh"}},{"attributes":{"name":"Juliana Considine","age":56,"location":"Lake Ana"}},{"attributes":{"name":"Kim Funk","age":66,"location":"Leschville"}},{"attributes":{"name":"Lia O'Kon-Mills","age":77,"location":"Plantation"}},{"attributes":{"name":"Demario Gleason","age":24,"location":"Donnaburgh"}},{"attributes":{"name":"Joel Welch","age":26,"location":"Miramar"}},{"attributes":{"name":"Mr. Jean Nienow","age":64,"location":"Port Destinee"}},{"attributes":{"name":"Pamela Mayert","age":31,"location":"Syblestead"}},{"attributes":{"name":"Stella Schoen","age":40,"location":"New Kalliefurt"}},{"attributes":{"name":"Kenny Jacobson","age":78,"location":"North Garfieldfurt"}},{"attributes":{"name":"Geneva Torphy","age":69,"location":"Ladariusland"}},{"attributes":{"name":"Grady Turcotte","age":31,"location":"Titusville"}},{"attributes":{"name":"Renee Wehner","age":39,"location":"McGlynnfield"}},{"attributes":{"name":"Roman Schuster DDS","age":28,"location":"Conroystad"}},{"attributes":{"name":"Remington Williamson","age":77,"location":"South Jana"}},{"attributes":{"name":"Haylie Borer","age":23,"location":"Othofurt"}},{"attributes":{"name":"Gerard Fisher Sr.","age":27,"location":"East Siennachester"}},{"attributes":{"name":"Dr. Terence Hand IV","age":35,"location":"Hendersonfurt"}},{"attributes":{"name":"Mr. Jake Kohler","age":32,"location":"West Daisybury"}},{"attributes":{"name":"Miss Juana Thompson","age":48,"location":"North Amya"}},{"attributes":{"name":"Gwendolyn Bogisich","age":77,"location":"New Laverna"}},{"attributes":{"name":"Dr. Leonard Emmerich","age":52,"location":"St. Joseph"}},{"attributes":{"name":"Ricky Kuhic","age":80,"location":"Utica"}},{"attributes":{"name":"Yazmin VonRueden","age":71,"location":"Yakima"}},{"attributes":{"name":"Alek Streich","age":48,"location":"Karolanntown"}},{"attributes":{"name":"Ms. Terrell Goldner","age":59,"location":"Baton Rouge"}},{"attributes":{"name":"Jon Turcotte","age":46,"location":"New Jazlynshire"}},{"attributes":{"name":"Irwin Kshlerin II","age":59,"location":"Ervinchester"}},{"attributes":{"name":"Dr. Flo Shanahan","age":36,"location":"Trystanfurt"}},{"attributes":{"name":"Dr. Candelario Swift","age":71,"location":"Adolfcester"}},{"attributes":{"name":"Mrs. Jaime Schuster","age":65,"location":"Pfefferboro"}},{"attributes":{"name":"Elijah Zulauf","age":66,"location":"Lake Dovieburgh"}},{"attributes":{"name":"Brendan Bahringer III","age":19,"location":"Dubuque"}},{"attributes":{"name":"Ms. Angela Waters-Predovic","age":67,"location":"Bellworth"}},{"attributes":{"name":"Lurline Padberg","age":34,"location":"Marinamouth"}},{"attributes":{"name":"Jimmie Rau","age":73,"location":"Hoover"}},{"attributes":{"name":"Antonetta Conroy MD","age":72,"location":"Port Jeffery"}},{"attributes":{"name":"Nathan Botsford","age":36,"location":"New Travonton"}},{"attributes":{"name":"Nona Simonis","age":25,"location":"Keshawnside"}},{"attributes":{"name":"Keith Thompson","age":69,"location":"Maurineboro"}},{"attributes":{"name":"Damon O'Reilly","age":43,"location":"Mullerborough"}},{"attributes":{"name":"Alyce Little","age":46,"location":"East Doris"}},{"attributes":{"name":"Irving Beahan","age":22,"location":"Fresno"}},{"attributes":{"name":"Colleen Deckow","age":55,"location":"North Damaris"}},{"attributes":{"name":"Ms. Rachael Welch","age":22,"location":"Gutmannburgh"}},{"attributes":{"name":"Ruby Will","age":43,"location":"Port Zella"}},{"attributes":{"name":"Tonya Franey","age":38,"location":"Abshireburgh"}},{"attributes":{"name":"Luke Cronin","age":72,"location":"Fort Kelvinfurt"}},{"attributes":{"name":"Winifred Hauck-Ziemann","age":21,"location":"Gladyston"}},{"attributes":{"name":"Brenda Lowe","age":31,"location":"Lake Loren"}},{"attributes":{"name":"Mrs. Percy Hagenes","age":28,"location":"South Beth"}},{"attributes":{"name":"Graciela Feeney","age":37,"location":"Schadenville"}},{"attributes":{"name":"Sandra Moore","age":55,"location":"Farmington"}},{"attributes":{"name":"Blanca VonRueden","age":52,"location":"Gunnarworth"}},{"attributes":{"name":"Homer O'Keefe","age":75,"location":"West Johanncester"}},{"attributes":{"name":"Robyn Boyer","age":34,"location":"Killeen"}},{"attributes":{"name":"Meghan Greenholt","age":33,"location":"Roobboro"}},{"attributes":{"name":"Gayle O'Kon","age":55,"location":"Perris"}},{"attributes":{"name":"Adele Spencer","age":61,"location":"North Marilouborough"}},{"attributes":{"name":"Tyrone Champlin","age":35,"location":"Gislasonfurt"}},{"attributes":{"name":"Arnold Lynch","age":73,"location":"Glenview"}},{"attributes":{"name":"Otto Brown","age":23,"location":"Akron"}},{"attributes":{"name":"Guadalupe Dooley IV","age":62,"location":"Lakinville"}},{"attributes":{"name":"Aubrey White","age":40,"location":"Skokie"}},{"attributes":{"name":"Jeff Schoen","age":34,"location":"Port Emelie"}},{"attributes":{"name":"Paula Lynch","age":51,"location":"New Marisol"}},{"attributes":{"name":"Dr. Sherman Lesch","age":61,"location":"Pacochabury"}},{"attributes":{"name":"Ms. Barry Gibson","age":39,"location":"Turcottebury"}},{"attributes":{"name":"Betsy Sporer","age":66,"location":"Cordiastad"}},{"attributes":{"name":"Margret Wisozk","age":30,"location":"Wittingville"}},{"attributes":{"name":"Charley O'Conner","age":59,"location":"North Abigale"}},{"attributes":{"name":"Dan Skiles","age":49,"location":"Des Plaines"}},{"attributes":{"name":"Ray Gislason","age":49,"location":"New Sarinaboro"}},{"attributes":{"name":"Tommy Zieme","age":47,"location":"Princessbury"}},{"attributes":{"name":"Delpha Nicolas","age":42,"location":"Barrowsfurt"}},{"attributes":{"name":"Leanne Kirlin","age":62,"location":"West Jamil"}},{"attributes":{"name":"Alayna Price","age":73,"location":"Tevinshire"}},{"attributes":{"name":"Jazlyn Flatley","age":78,"location":"Murrieta"}},{"attributes":{"name":"Ms. Richard Spinka","age":78,"location":"Metaland"}},{"attributes":{"name":"Esther Ernser","age":33,"location":"Melvinashire"}},{"attributes":{"name":"Miss Kelly Schinner Sr.","age":63,"location":"Wilkinsonburgh"}},{"attributes":{"name":"Forrest Moore","age":34,"location":"Leorabury"}},{"attributes":{"name":"Dominick Veum","age":49,"location":"San Ramon"}},{"attributes":{"name":"Jake Crona","age":28,"location":"Barrowsfurt"}},{"attributes":{"name":"Keenan Gusikowski","age":28,"location":"Tyshawnton"}},{"attributes":{"name":"Wanda Mosciski","age":38,"location":"South Jordane"}},{"attributes":{"name":"Yolanda Dach","age":60,"location":"Aldatown"}},{"attributes":{"name":"Micheal Gorczany","age":77,"location":"North Zetta"}},{"attributes":{"name":"Ms. Elza Olson-Flatley","age":18,"location":"East Darien"}},{"attributes":{"name":"Duncan Stoltenberg DVM","age":78,"location":"Isaacberg"}},{"attributes":{"name":"Claude Klein","age":68,"location":"West Bonitashire"}},{"attributes":{"name":"Adriel Larkin","age":57,"location":"North Leaburgh"}},{"attributes":{"name":"Alexandria Glover","age":36,"location":"South Mara"}},{"attributes":{"name":"Winifred Bernhard","age":58,"location":"Stonefort"}},{"attributes":{"name":"Eva Bednar IV","age":57,"location":"Denesikhaven"}},{"attributes":{"name":"Morgan Goldner V","age":25,"location":"Minnetonka"}},{"attributes":{"name":"Dana Jast","age":59,"location":"Port Ludiefurt"}},{"attributes":{"name":"Bianka Jast","age":42,"location":"Aliceshire"}},{"attributes":{"name":"Marjorie D'Amore","age":32,"location":"North Leslie"}},{"attributes":{"name":"Rossie Jast","age":21,"location":"Fort Amy"}},{"attributes":{"name":"Salvador Blanda DDS","age":57,"location":"New Josephineburgh"}},{"attributes":{"name":"Daren Rau","age":32,"location":"East Enosland"}},{"attributes":{"name":"Yasmeen Weissnat","age":27,"location":"Millcreek"}},{"attributes":{"name":"Pete McGlynn DDS","age":66,"location":"Port Donna"}},{"attributes":{"name":"Euna Strosin","age":34,"location":"Topeka"}},{"attributes":{"name":"Mrs. Judge McCullough","age":56,"location":"Fort Simeon"}},{"attributes":{"name":"Dr. Lew Gusikowski","age":67,"location":"East Rahsaan"}},{"attributes":{"name":"Angelo Pfeffer","age":59,"location":"New Jaeden"}},{"attributes":{"name":"Todd D'Amore MD","age":58,"location":"Durganshire"}},{"attributes":{"name":"Leo Hoeger","age":35,"location":"East Hobart"}},{"attributes":{"name":"Orlando Langosh","age":62,"location":"Beavercreek"}},{"attributes":{"name":"Clifton Strosin","age":29,"location":"Terryborough"}},{"attributes":{"name":"Ricardo Hirthe","age":42,"location":"Crystelboro"}},{"attributes":{"name":"Jose Kessler","age":22,"location":"Annabelside"}},{"attributes":{"name":"Floyd Adams","age":67,"location":"New Hollie"}},{"attributes":{"name":"Lurline Ullrich","age":47,"location":"South Emmie"}},{"attributes":{"name":"Murphy Prosacco","age":24,"location":"Asheville"}},{"attributes":{"name":"Julio Gleason","age":22,"location":"South Estevanstead"}},{"attributes":{"name":"Sherwood Spencer","age":60,"location":"Des Plaines"}},{"attributes":{"name":"Charity Williamson","age":68,"location":"West Ophelia"}},{"attributes":{"name":"George Nikolaus","age":65,"location":"Des Plaines"}},{"attributes":{"name":"Loraine Marquardt","age":42,"location":"Tustin"}},{"attributes":{"name":"Mariana Ratke","age":55,"location":"Alfville"}},{"attributes":{"name":"Zoey Kessler","age":67,"location":"East Derickton"}},{"attributes":{"name":"Dr. Camille Mayer","age":32,"location":"Charityview"}},{"attributes":{"name":"Laurine Will","age":58,"location":"New Timmy"}},{"attributes":{"name":"Kennedi Smith","age":27,"location":"Lake Kory"}},{"attributes":{"name":"Sue O'Kon","age":58,"location":"West Helenhaven"}},{"attributes":{"name":"Carrie Reynolds","age":21,"location":"Port Kristy"}},{"attributes":{"name":"Ms. Amanda Shields","age":74,"location":"New Rosendoville"}},{"attributes":{"name":"Emmy Lueilwitz Sr.","age":59,"location":"South Bryonfurt"}},{"attributes":{"name":"Bethel Harvey","age":60,"location":"Ismaeltown"}},{"attributes":{"name":"Wilfred Turcotte III","age":67,"location":"Charleston"}},{"attributes":{"name":"Christopher Upton-Nikolaus","age":36,"location":"North Kyra"}},{"attributes":{"name":"Garrick Marks","age":43,"location":"Newark"}},{"attributes":{"name":"Ms. Mariah Paucek","age":30,"location":"Harveyton"}},{"attributes":{"name":"Rene Rolfson","age":49,"location":"Lake Wilburn"}},{"attributes":{"name":"Dr. Ellen Mills","age":22,"location":"Cartwrightfield"}},{"attributes":{"name":"Guillermo Bosco-Krajcik","age":53,"location":"Flagstaff"}},{"attributes":{"name":"Joanne Tromp","age":29,"location":"Candidaton"}},{"attributes":{"name":"Aiden VonRueden","age":61,"location":"Lake Rosariobury"}},{"attributes":{"name":"Conor Prosacco","age":37,"location":"Earlineshire"}},{"attributes":{"name":"Percy Herzog","age":25,"location":"Lake Osvaldo"}},{"attributes":{"name":"Addie Windler","age":56,"location":"North Dahlia"}},{"attributes":{"name":"Edwardo Lesch","age":41,"location":"Fort Carrieville"}},{"attributes":{"name":"Mario Hodkiewicz","age":69,"location":"Raymondbury"}},{"attributes":{"name":"Bradford Olson","age":69,"location":"North Giovanny"}},{"attributes":{"name":"Darla Gislason","age":80,"location":"Hermannland"}},{"attributes":{"name":"Shanny Conroy","age":20,"location":"East Vanessaborough"}},{"attributes":{"name":"Angie Bogisich","age":61,"location":"Hubertworth"}},{"attributes":{"name":"Jaylin Kertzmann","age":60,"location":"Garden Grove"}},{"attributes":{"name":"Cory Gerhold","age":46,"location":"South Anastasia"}},{"attributes":{"name":"Jerry Graham","age":60,"location":"Romaineberg"}},{"attributes":{"name":"Laverne Runolfsdottir","age":52,"location":"New Larrystad"}},{"attributes":{"name":"Waldo Schoen PhD","age":67,"location":"Fort Everette"}},{"attributes":{"name":"Claire Runolfsdottir","age":27,"location":"West Marcellafurt"}},{"attributes":{"name":"Kelli Klocko","age":73,"location":"Deborahview"}},{"attributes":{"name":"Iliana Pouros","age":34,"location":"Tyler"}},{"attributes":{"name":"Alyce Bergnaum","age":53,"location":"Mileschester"}},{"attributes":{"name":"Hugh Yundt","age":46,"location":"Eldaberg"}},{"attributes":{"name":"Derek Keeling","age":68,"location":"North Rodrickstad"}},{"attributes":{"name":"Leticia Nicolas","age":55,"location":"Elyssahaven"}},{"attributes":{"name":"Oliver Kozey III","age":48,"location":"Santee"}},{"attributes":{"name":"Alexandrea Haley","age":48,"location":"New Kenyon"}},{"attributes":{"name":"Wendell Moore","age":55,"location":"East Lutherton"}},{"attributes":{"name":"Amos Sauer","age":43,"location":"Harlingen"}},{"attributes":{"name":"Emanuel Powlowski","age":23,"location":"South Vincenzo"}},{"attributes":{"name":"Miss Corey Will","age":18,"location":"Ziemannton"}},{"attributes":{"name":"Cary Kutch","age":42,"location":"Jacobiport"}},{"attributes":{"name":"Clint Reichel MD","age":58,"location":"Romagueraberg"}},{"attributes":{"name":"Renee O'Kon","age":72,"location":"Fort Oceane"}},{"attributes":{"name":"Kristopher Kling","age":22,"location":"Wichita Falls"}},{"attributes":{"name":"Augustine Brakus","age":57,"location":"Samanthaboro"}},{"attributes":{"name":"Shany Pfeffer","age":18,"location":"Francisside"}},{"attributes":{"name":"Alex Rowe","age":18,"location":"Fort Collins"}},{"attributes":{"name":"Lavern Beatty","age":57,"location":"Port Ambroseboro"}},{"attributes":{"name":"Peter Reilly MD","age":25,"location":"North Nicolasstad"}},{"attributes":{"name":"Johnny Ziemann","age":78,"location":"Victoria"}},{"attributes":{"name":"Mattie Marvin","age":65,"location":"South Shaina"}},{"attributes":{"name":"Kameron Flatley Jr.","age":40,"location":"Murraystead"}},{"attributes":{"name":"Erika Crist","age":65,"location":"South Oscar"}},{"attributes":{"name":"Jamil Dietrich Sr.","age":60,"location":"West Leora"}},{"attributes":{"name":"Mr. Jensen Rodriguez","age":69,"location":"Stratford"}},{"attributes":{"name":"Regan Sawayn","age":75,"location":"East Chelsie"}},{"attributes":{"name":"Lester Halvorson","age":37,"location":"East Dustyview"}},{"attributes":{"name":"Sherman Ankunding","age":65,"location":"Jacobsonside"}},{"attributes":{"name":"Neal Conn","age":69,"location":"South Mathildeshire"}},{"attributes":{"name":"Chanelle Schoen","age":32,"location":"Redmond"}},{"attributes":{"name":"Kelvin Corwin","age":63,"location":"Bergnaumhaven"}},{"attributes":{"name":"Ted Wunsch","age":47,"location":"Port Carmellabury"}},{"attributes":{"name":"Miss Crystal Vandervort","age":25,"location":"Kadebury"}},{"attributes":{"name":"Leroy Crist III","age":53,"location":"Collierfort"}},{"attributes":{"name":"Dr. Ryann Ledner","age":66,"location":"Everett"}},{"attributes":{"name":"Ashley Tromp","age":33,"location":"Fort Breanahaven"}},{"attributes":{"name":"Elizabeth Wintheiser","age":49,"location":"New Craighaven"}},{"attributes":{"name":"Carmel Baumbach","age":29,"location":"East Clementineburgh"}},{"attributes":{"name":"Marcos Mann","age":40,"location":"New Violet"}},{"attributes":{"name":"Estelle Leannon","age":76,"location":"North Valerieburgh"}},{"attributes":{"name":"Mrs. Era Schmeler","age":32,"location":"Highland"}},{"attributes":{"name":"Brittany Padberg","age":55,"location":"Fadelburgh"}},{"attributes":{"name":"Tina Cremin","age":74,"location":"North Gonzalo"}},{"attributes":{"name":"Dr. Joseph Batz","age":72,"location":"Urbana"}},{"attributes":{"name":"Ms. Angel Kunze","age":49,"location":"Bellevue"}},{"attributes":{"name":"Miss Dasia Purdy DDS","age":58,"location":"New Nicola"}},{"attributes":{"name":"Caroline Prohaska","age":29,"location":"Delilahside"}},{"attributes":{"name":"Jean Kassulke","age":31,"location":"Hoboken"}},{"attributes":{"name":"Mrs. Lillian Russel","age":78,"location":"McKenziebury"}},{"attributes":{"name":"Charlie Skiles II","age":28,"location":"Pawtucket"}},{"attributes":{"name":"Bertha Wiegand","age":25,"location":"North Anne"}},{"attributes":{"name":"Jody Yundt I","age":80,"location":"West Valley City"}},{"attributes":{"name":"Eloise Lowe DDS","age":44,"location":"West Zacharystead"}},{"attributes":{"name":"Bernadette Bartoletti","age":30,"location":"Carrieville"}},{"attributes":{"name":"Javon Rempel","age":30,"location":"Port Ike"}},{"attributes":{"name":"Brenna Bernier","age":54,"location":"Americoton"}},{"attributes":{"name":"Kylie Emard","age":55,"location":"Mohamedstad"}},{"attributes":{"name":"Sue Franecki","age":30,"location":"South Anika"}},{"attributes":{"name":"Charlene Watsica","age":45,"location":"Jacklynside"}},{"attributes":{"name":"Mr. Wallace Baumbach","age":68,"location":"Fort Katlynn"}},{"attributes":{"name":"Trey Fahey","age":24,"location":"Fort Bethelchester"}},{"attributes":{"name":"Fannie Wolf","age":24,"location":"Montebello"}},{"attributes":{"name":"Janie Morissette","age":19,"location":"Fort Rosario"}},{"attributes":{"name":"Stanley Wilkinson I","age":50,"location":"Darrinborough"}},{"attributes":{"name":"Salvatore Bernier","age":40,"location":"Ilabury"}},{"attributes":{"name":"Arlo Strosin-Bradtke","age":68,"location":"Mrazborough"}},{"attributes":{"name":"Ayden Bogan","age":79,"location":"Yostburgh"}},{"attributes":{"name":"Paul Wolf","age":75,"location":"Kiarrashire"}},{"attributes":{"name":"Jedidiah Dooley Sr.","age":21,"location":"Buckridgeville"}},{"attributes":{"name":"Derek Gleason","age":65,"location":"Blandamouth"}},{"attributes":{"name":"Katelin Wilderman PhD","age":54,"location":"Cronaworth"}},{"attributes":{"name":"Vaughn Toy","age":72,"location":"Lake Maurine"}},{"attributes":{"name":"Elisa Willms","age":36,"location":"West Courtneyport"}},{"attributes":{"name":"Frank Reinger","age":69,"location":"Hallieshire"}},{"attributes":{"name":"Antoinette Block V","age":36,"location":"Lake Timmothy"}},{"attributes":{"name":"Camilla Ankunding","age":66,"location":"National City"}},{"attributes":{"name":"Leonora Doyle","age":47,"location":"Kirlinboro"}},{"attributes":{"name":"Timothy Yundt-Jakubowski","age":38,"location":"Lake Nolan"}},{"attributes":{"name":"Adolfo Ward","age":70,"location":"Port Nicoburgh"}},{"attributes":{"name":"Clark Konopelski","age":73,"location":"Lake Cooperside"}},{"attributes":{"name":"Conrad Bogan","age":73,"location":"Bellevue"}},{"attributes":{"name":"Alisa Conroy","age":27,"location":"Glovercester"}},{"attributes":{"name":"Shirley Bayer","age":67,"location":"North Jonathan"}},{"attributes":{"name":"Diane Barrows MD","age":42,"location":"Port Zackary"}},{"attributes":{"name":"Marty O'Conner","age":37,"location":"Fort Domenicaboro"}},{"attributes":{"name":"Dr. Lew Gutmann","age":76,"location":"East Elenor"}},{"attributes":{"name":"Mattie Herzog III","age":59,"location":"Grand Forks"}},{"attributes":{"name":"Glenna Pacocha MD","age":63,"location":"West Lavinia"}},{"attributes":{"name":"Gary Dare","age":70,"location":"North Georgetteworth"}},{"attributes":{"name":"Kellie Roberts","age":34,"location":"Bradenton"}},{"attributes":{"name":"Evan Johnson","age":56,"location":"Wisokyfurt"}},{"attributes":{"name":"Raphaelle Collier","age":32,"location":"East Reneehaven"}},{"attributes":{"name":"Josephine Ortiz","age":71,"location":"Jacynthemouth"}},{"attributes":{"name":"Velva Buckridge DVM","age":50,"location":"Denton"}},{"attributes":{"name":"Brandi Cartwright","age":58,"location":"New Karaport"}},{"attributes":{"name":"Maiya Breitenberg","age":62,"location":"West Irwin"}},{"attributes":{"name":"Mr. Gerard Bins","age":29,"location":"Kundeburgh"}},{"attributes":{"name":"Ruth Lynch V","age":36,"location":"East Elainaside"}},{"attributes":{"name":"Frank Bruen","age":74,"location":"Fort Aftonshire"}},{"attributes":{"name":"Myrtle Stiedemann","age":59,"location":"D'Amorefurt"}},{"attributes":{"name":"Shannon Kertzmann I","age":26,"location":"West Louie"}},{"attributes":{"name":"Deontae Denesik MD","age":44,"location":"Port Barbara"}},{"attributes":{"name":"Rosalie Ryan","age":70,"location":"Karinamouth"}},{"attributes":{"name":"Kyle Brekke","age":47,"location":"South Delta"}},{"attributes":{"name":"Bobbie Hilll","age":26,"location":"Effertzcester"}},{"attributes":{"name":"Ms. Flora Hills","age":20,"location":"DeSoto"}},{"attributes":{"name":"Alexander Wisoky","age":44,"location":"Rosemarybury"}},{"attributes":{"name":"Earl Oberbrunner","age":39,"location":"Arnoldobury"}},{"attributes":{"name":"Dr. Gustavo Pagac","age":49,"location":"Kutchburgh"}},{"attributes":{"name":"Ms. Alonzo Ullrich","age":44,"location":"East Adrienstead"}},{"attributes":{"name":"Candice Sporer","age":70,"location":"La Habra"}},{"attributes":{"name":"Earl Prohaska","age":73,"location":"Schadenfurt"}},{"attributes":{"name":"Nelson Hilpert","age":37,"location":"Port Marianneberg"}},{"attributes":{"name":"Irvin Schmitt","age":61,"location":"South Lemuelcester"}},{"attributes":{"name":"Gabe Reichert DDS","age":45,"location":"Criststead"}},{"attributes":{"name":"Paul Quitzon","age":28,"location":"McLean"}},{"attributes":{"name":"Frankie Veum","age":29,"location":"South Eltastead"}},{"attributes":{"name":"Mercedes Waters","age":22,"location":"Yuma"}},{"attributes":{"name":"Kristine Champlin","age":40,"location":"Gulfport"}},{"attributes":{"name":"Kristy Lowe","age":74,"location":"Fordburgh"}},{"attributes":{"name":"Golda Dicki","age":70,"location":"Murfreesboro"}},{"attributes":{"name":"Eulalia D'Amore","age":25,"location":"Lake Derrick"}},{"attributes":{"name":"Deshawn Grimes-Runolfsson MD","age":73,"location":"South Aubreeboro"}},{"attributes":{"name":"Omar Tremblay","age":21,"location":"Hailieview"}},{"attributes":{"name":"Kristen Effertz","age":76,"location":"New Brooklyn"}},{"attributes":{"name":"Cecilia Barton","age":39,"location":"Bonita Springs"}},{"attributes":{"name":"Marsha Balistreri","age":24,"location":"Albany"}},{"attributes":{"name":"Mr. Piper Harber","age":37,"location":"South Alfredastad"}},{"attributes":{"name":"Jammie Grimes","age":77,"location":"Porterville"}},{"attributes":{"name":"Mrs. Clarence MacGyver","age":50,"location":"South Kellystad"}},{"attributes":{"name":"Sidney Larkin","age":35,"location":"West Angelicahaven"}},{"attributes":{"name":"Mr. Carroll Johns","age":40,"location":"Fort Darien"}},{"attributes":{"name":"Rick Daugherty","age":42,"location":"Pearland"}},{"attributes":{"name":"Madeline Kreiger","age":66,"location":"Leathastead"}},{"attributes":{"name":"Miranda Cronin-Friesen","age":59,"location":"Fort Harvey"}},{"attributes":{"name":"Leslie Rosenbaum","age":49,"location":"Deborahshire"}},{"attributes":{"name":"Claudia Ziemann I","age":30,"location":"Highland"}},{"attributes":{"name":"Rex McClure","age":75,"location":"Reynoldsville"}},{"attributes":{"name":"Kristen Toy","age":79,"location":"Magdalenashire"}},{"attributes":{"name":"Deondre Bins-Ruecker","age":37,"location":"West Rene"}},{"attributes":{"name":"River Donnelly","age":42,"location":"Alvahfort"}},{"attributes":{"name":"Gonzalo Watsica DVM","age":20,"location":"East Dejahfurt"}},{"attributes":{"name":"Mr. Clifton McLaughlin-Tromp","age":74,"location":"Swaniawskifort"}},{"attributes":{"name":"Lonny Simonis","age":55,"location":"Lake Felixcester"}},{"attributes":{"name":"Alexanne Streich","age":26,"location":"Santa Cruz"}},{"attributes":{"name":"Ross Gutkowski PhD","age":63,"location":"Port Nigelshire"}},{"attributes":{"name":"Kaden Hayes","age":18,"location":"Lake Juliet"}},{"attributes":{"name":"Kristi Tromp PhD","age":38,"location":"South Jacquelyn"}},{"attributes":{"name":"Caleigh Strosin","age":20,"location":"West Aleen"}},{"attributes":{"name":"Jaida Harvey","age":23,"location":"Fort Pasqualeshire"}},{"attributes":{"name":"Dianna Effertz","age":74,"location":"Grimesshire"}},{"attributes":{"name":"Alfred Torp","age":56,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Julian Funk","age":61,"location":"Port Lenora"}},{"attributes":{"name":"Selina Schaden","age":77,"location":"Ondrickaview"}},{"attributes":{"name":"Cristina Reynolds V","age":27,"location":"Adellshire"}},{"attributes":{"name":"Timmy Ondricka","age":53,"location":"West Reyville"}},{"attributes":{"name":"Patsy Schamberger","age":80,"location":"Bartlett"}},{"attributes":{"name":"Ms. Delia Dare","age":22,"location":"Coleboro"}},{"attributes":{"name":"Kayleigh Grimes","age":55,"location":"Hintzport"}},{"attributes":{"name":"Maryann Larson","age":63,"location":"Chino Hills"}},{"attributes":{"name":"Eileen Donnelly","age":58,"location":"Katrineburgh"}},{"attributes":{"name":"Rufus Bayer","age":72,"location":"Marleyboro"}},{"attributes":{"name":"Lloyd Schoen","age":73,"location":"New Jaida"}},{"attributes":{"name":"Jermaine Schumm","age":24,"location":"Tillmanchester"}},{"attributes":{"name":"Bessie Walker","age":21,"location":"Myronfort"}},{"attributes":{"name":"Catherine Bauch V","age":70,"location":"Hermanborough"}},{"attributes":{"name":"Wilson Schiller","age":77,"location":"Gerdastad"}},{"attributes":{"name":"Neil Kris-Gutkowski","age":60,"location":"West Gerald"}},{"attributes":{"name":"Luz Jones DVM","age":64,"location":"Caguas"}},{"attributes":{"name":"Preston Lesch","age":62,"location":"Wilkinsoncester"}},{"attributes":{"name":"Bertrand Collier","age":58,"location":"Tressatown"}},{"attributes":{"name":"Sadie Gleason","age":41,"location":"Murphybury"}},{"attributes":{"name":"Carolyn Kulas Jr.","age":71,"location":"Town 'n' Country"}},{"attributes":{"name":"Caleb Cummings","age":29,"location":"West Carroll"}},{"attributes":{"name":"Rolando Morissette","age":38,"location":"Dorothyshire"}},{"attributes":{"name":"Terri Treutel","age":31,"location":"Lake Kyla"}},{"attributes":{"name":"Michael Rempel","age":20,"location":"Furmanshire"}},{"attributes":{"name":"Rachel Bartell","age":62,"location":"Bruenborough"}},{"attributes":{"name":"Claude Wiza","age":32,"location":"Lake Dortha"}},{"attributes":{"name":"Eusebio Feest","age":74,"location":"O'Reillyville"}},{"attributes":{"name":"Ivy Rohan","age":22,"location":"South Prestonstad"}},{"attributes":{"name":"Dixie Bauch","age":72,"location":"Kent"}},{"attributes":{"name":"Craig Kris","age":44,"location":"Hermanncester"}},{"attributes":{"name":"Stephanie Legros DVM","age":53,"location":"West Ressieberg"}},{"attributes":{"name":"Lee Klocko","age":54,"location":"New Lukas"}},{"attributes":{"name":"Rochelle Block","age":64,"location":"Mattport"}},{"attributes":{"name":"Tasha Ruecker","age":80,"location":"Alaynamouth"}},{"attributes":{"name":"Jody West","age":52,"location":"East Judystead"}},{"attributes":{"name":"Elijah Walker III","age":58,"location":"Germantown"}},{"attributes":{"name":"Dariana Pacocha II","age":45,"location":"Ankeny"}},{"attributes":{"name":"Aaron Nitzsche","age":45,"location":"North Vena"}},{"attributes":{"name":"River Feest","age":20,"location":"South Kavonworth"}},{"attributes":{"name":"Dr. Donna Predovic IV","age":32,"location":"Ortizburgh"}},{"attributes":{"name":"Samuel Braun","age":80,"location":"Smithamview"}},{"attributes":{"name":"Terrell Heller","age":33,"location":"Sengerfort"}},{"attributes":{"name":"Eugenia West","age":32,"location":"Mertzport"}},{"attributes":{"name":"Belinda Labadie","age":50,"location":"North Vincenza"}},{"attributes":{"name":"Mildred Howell Sr.","age":62,"location":"Port Triston"}},{"attributes":{"name":"Stella Murazik","age":27,"location":"Port Johnpaulshire"}},{"attributes":{"name":"Penelope Kuhlman","age":48,"location":"Nakialand"}},{"attributes":{"name":"Jameson Botsford","age":36,"location":"Domingoton"}},{"attributes":{"name":"Oliver Monahan","age":60,"location":"North Minnieview"}},{"attributes":{"name":"Rex King Sr.","age":47,"location":"Port Ginoberg"}},{"attributes":{"name":"Delia Champlin","age":63,"location":"Port Madisynton"}},{"attributes":{"name":"Marjory Dickinson PhD","age":60,"location":"New Jerelcester"}},{"attributes":{"name":"Beulah Baumbach","age":45,"location":"New Roger"}},{"attributes":{"name":"Ms. Kerry O'Kon","age":52,"location":"Bartolettiberg"}},{"attributes":{"name":"Dr. Regina Blanda","age":59,"location":"Daytonton"}},{"attributes":{"name":"Sergio Corwin","age":80,"location":"Portage"}},{"attributes":{"name":"Gia Kunde","age":40,"location":"Lubowitzville"}},{"attributes":{"name":"Emelie Renner","age":58,"location":"New Britain"}},{"attributes":{"name":"Mckenna Wehner","age":75,"location":"New Franz"}},{"attributes":{"name":"Maureen Hagenes","age":66,"location":"North Bradford"}},{"attributes":{"name":"Terry Armstrong","age":32,"location":"Tierraport"}},{"attributes":{"name":"Clint Boehm","age":77,"location":"Monahanborough"}},{"attributes":{"name":"Boyd McClure","age":67,"location":"Petestad"}},{"attributes":{"name":"Misty Sporer","age":62,"location":"Fort Naomie"}},{"attributes":{"name":"Mrs. Geneva Bergnaum I","age":23,"location":"North Brooksside"}},{"attributes":{"name":"Joan Romaguera","age":37,"location":"Kaleyberg"}},{"attributes":{"name":"Abigayle McCullough","age":37,"location":"South Melanyburgh"}},{"attributes":{"name":"Dr. Dillan Bogisich","age":28,"location":"Schoenstead"}},{"attributes":{"name":"Jonathan Cummings","age":74,"location":"South Tristin"}},{"attributes":{"name":"Patrick Murray","age":50,"location":"West Omerstead"}},{"attributes":{"name":"Eulah Howell","age":58,"location":"Margehaven"}},{"attributes":{"name":"Myra Fahey","age":34,"location":"Rapid City"}},{"attributes":{"name":"Ebony Wyman","age":56,"location":"Hauckstad"}},{"attributes":{"name":"Bradley Grimes","age":58,"location":"North Roderick"}},{"attributes":{"name":"Sammy Gorczany","age":71,"location":"West Wilbertown"}},{"attributes":{"name":"Kelly Dietrich","age":76,"location":"New Carissaburgh"}},{"attributes":{"name":"Malcolm Weber","age":38,"location":"Lake Claudie"}},{"attributes":{"name":"Clark Daugherty","age":74,"location":"Port Ruthie"}},{"attributes":{"name":"Ella Swift","age":68,"location":"Lake Jaylenview"}},{"attributes":{"name":"Ulices Kovacek","age":64,"location":"Stockton"}},{"attributes":{"name":"Virginia Ratke","age":42,"location":"Quinnfield"}},{"attributes":{"name":"Clotilde Zieme","age":36,"location":"Schimmelmouth"}},{"attributes":{"name":"Jabari Kuvalis","age":24,"location":"Kallieshire"}},{"attributes":{"name":"Ms. Eugene Farrell","age":51,"location":"New Jalynbury"}},{"attributes":{"name":"Serenity Wunsch","age":54,"location":"Honolulu"}},{"attributes":{"name":"Frances Simonis","age":60,"location":"South Freeman"}},{"attributes":{"name":"Bennie Haley","age":63,"location":"Port Ward"}},{"attributes":{"name":"Celine Leannon","age":54,"location":"Bristol"}},{"attributes":{"name":"Helen Cruickshank","age":59,"location":"West Rheaton"}},{"attributes":{"name":"Daniel Leuschke","age":25,"location":"East Thurman"}},{"attributes":{"name":"Johann Ferry-Mohr DVM","age":37,"location":"Port Michelle"}},{"attributes":{"name":"Mrs. Helen Braun","age":19,"location":"Port Grantboro"}},{"attributes":{"name":"Felicity Bahringer","age":66,"location":"Raucester"}},{"attributes":{"name":"Delores Jenkins","age":30,"location":"North Generalburgh"}},{"attributes":{"name":"Carmine Bosco","age":33,"location":"Berkeley"}},{"attributes":{"name":"Sofia Hickle","age":39,"location":"Fort Teresashire"}},{"attributes":{"name":"Jana Kling","age":22,"location":"New Percivalstead"}},{"attributes":{"name":"Laila Christiansen","age":57,"location":"DuBuqueview"}},{"attributes":{"name":"Gilberto Dietrich","age":28,"location":"Racine"}},{"attributes":{"name":"Melanie Wolf","age":74,"location":"Lake Malvinaside"}},{"attributes":{"name":"Mrs. Sidney Marvin","age":21,"location":"North Maia"}},{"attributes":{"name":"Ubaldo Huels","age":26,"location":"West Trudie"}},{"attributes":{"name":"Cruz Kerluke","age":21,"location":"North Kraig"}},{"attributes":{"name":"Dr. Sammie Kautzer","age":32,"location":"Kochborough"}},{"attributes":{"name":"Ms. Kasey Murphy","age":22,"location":"Gorczanystad"}},{"attributes":{"name":"Kennedi Torphy","age":26,"location":"Blaisestad"}},{"attributes":{"name":"May Hessel-Littel","age":60,"location":"West Elroy"}},{"attributes":{"name":"Vernie Grant","age":19,"location":"Lacey"}},{"attributes":{"name":"Stacey Torphy","age":33,"location":"Port Elvie"}},{"attributes":{"name":"Ms. Justin Jast","age":67,"location":"South Adalbertochester"}},{"attributes":{"name":"Clay Padberg MD","age":47,"location":"Lake Mossiefort"}},{"attributes":{"name":"Lia Treutel","age":60,"location":"North Karelle"}},{"attributes":{"name":"Joanna Krajcik","age":18,"location":"Tyreseberg"}},{"attributes":{"name":"Madilyn Emmerich","age":74,"location":"Fort Pierce"}},{"attributes":{"name":"Rick Lind","age":42,"location":"Santosstead"}},{"attributes":{"name":"Viola Schaden","age":41,"location":"Sunnyvale"}},{"attributes":{"name":"Tierra Steuber","age":35,"location":"Tempe"}},{"attributes":{"name":"Kelli Mante I","age":35,"location":"Larsonbury"}},{"attributes":{"name":"Roberta Dietrich I","age":55,"location":"Ricestead"}},{"attributes":{"name":"Elwin Doyle","age":80,"location":"Port America"}},{"attributes":{"name":"Patience Cronin Sr.","age":65,"location":"East Justineboro"}},{"attributes":{"name":"Mr. Cheryl Torphy","age":45,"location":"South Kiarra"}},{"attributes":{"name":"Santa Kessler","age":45,"location":"Lake Eunabury"}},{"attributes":{"name":"Candace Simonis DDS","age":78,"location":"New Abbieview"}},{"attributes":{"name":"Stefan Schaden","age":71,"location":"Patrickfurt"}},{"attributes":{"name":"Declan Bernier DDS","age":45,"location":"New Candelarioville"}},{"attributes":{"name":"Scot Block","age":38,"location":"Broomfield"}},{"attributes":{"name":"Megan Hammes","age":70,"location":"Madelinebury"}},{"attributes":{"name":"Carmelo O'Conner","age":34,"location":"Kuhnport"}},{"attributes":{"name":"Matilda Okuneva","age":32,"location":"Ryleeton"}},{"attributes":{"name":"Kyle Ledner","age":65,"location":"Coleview"}},{"attributes":{"name":"Mr. Nolan Gusikowski","age":21,"location":"Marleycester"}},{"attributes":{"name":"Mamie Heidenreich Sr.","age":60,"location":"Betteton"}},{"attributes":{"name":"Arturo Weimann","age":69,"location":"Palmafurt"}},{"attributes":{"name":"Dr. Laron O'Connell","age":74,"location":"Fort Linastad"}},{"attributes":{"name":"Seth Friesen","age":29,"location":"North Irwinton"}},{"attributes":{"name":"Denise Weimann","age":35,"location":"East Gwendolyn"}},{"attributes":{"name":"Perry Hegmann","age":21,"location":"Karleehaven"}},{"attributes":{"name":"Aaron Armstrong","age":42,"location":"West Palm Beach"}},{"attributes":{"name":"Tammy Adams","age":33,"location":"South Shyannechester"}},{"attributes":{"name":"Jeffry Hartmann-Adams","age":51,"location":"Sioux City"}},{"attributes":{"name":"Dr. Bobby Walker","age":46,"location":"Wymanfort"}},{"attributes":{"name":"Carlton Tremblay","age":20,"location":"West Stone"}},{"attributes":{"name":"Marsha Beer","age":71,"location":"Brownsville"}},{"attributes":{"name":"Ginger Hartmann","age":36,"location":"Lake Jeffrey"}},{"attributes":{"name":"Ervin Kemmer","age":40,"location":"Strosinberg"}},{"attributes":{"name":"Mandy Kunde","age":27,"location":"Costa Mesa"}},{"attributes":{"name":"Sheila Beer","age":56,"location":"Port Harleyfort"}},{"attributes":{"name":"Mrs. Troy Terry","age":28,"location":"Port Halport"}},{"attributes":{"name":"Dominique Mann II","age":55,"location":"East Lexiworth"}},{"attributes":{"name":"Hattie Mertz","age":70,"location":"New Caleighboro"}},{"attributes":{"name":"Demond O'Connell III","age":26,"location":"Yuma"}},{"attributes":{"name":"Jaylan Hansen MD","age":69,"location":"North Bethesda"}},{"attributes":{"name":"Rodney Roberts","age":18,"location":"Damionfield"}},{"attributes":{"name":"Bradford Adams","age":24,"location":"Borisfield"}},{"attributes":{"name":"Laurence Nikolaus","age":36,"location":"Jaroncester"}},{"attributes":{"name":"Wm Roob","age":71,"location":"McKinney"}},{"attributes":{"name":"Emmett Labadie","age":42,"location":"West Jadenburgh"}},{"attributes":{"name":"Genevieve Abshire","age":33,"location":"Fayefurt"}},{"attributes":{"name":"Jeanne Yundt","age":64,"location":"New Yesseniacester"}},{"attributes":{"name":"Jacqueline White","age":32,"location":"Manteca"}},{"attributes":{"name":"Ms. Tom Block","age":69,"location":"Lake Sethfield"}},{"attributes":{"name":"Geoffrey Gleichner","age":29,"location":"New Norris"}},{"attributes":{"name":"Carlton Buckridge","age":31,"location":"Darienbury"}},{"attributes":{"name":"Dr. Geneva Keebler","age":33,"location":"New Olinland"}},{"attributes":{"name":"Mr. Clifton Hayes","age":61,"location":"Walshfurt"}},{"attributes":{"name":"Caleb Lebsack","age":44,"location":"Sanfordborough"}},{"attributes":{"name":"Jeremiah Rogahn","age":26,"location":"South Kyla"}},{"attributes":{"name":"Angelina Quitzon","age":23,"location":"Azusa"}},{"attributes":{"name":"Daron Hermann","age":70,"location":"East Wilford"}},{"attributes":{"name":"Santino Zieme","age":42,"location":"Zemlakchester"}},{"attributes":{"name":"Cletus Bogisich","age":59,"location":"Augustusboro"}},{"attributes":{"name":"Gerardo Runolfsson","age":28,"location":"Port Alycia"}},{"attributes":{"name":"Kameron Gleichner","age":40,"location":"Lucastown"}},{"attributes":{"name":"Josephine Dickinson","age":21,"location":"Trujillo Alto"}},{"attributes":{"name":"Chadd Rice-Kreiger","age":20,"location":"Bogisichworth"}},{"attributes":{"name":"Stewart Mertz III","age":29,"location":"East Maggieshire"}},{"attributes":{"name":"Mildred Hills","age":23,"location":"Reganberg"}},{"attributes":{"name":"Mrs. Dalton Schaden III","age":35,"location":"Goldnerton"}},{"attributes":{"name":"Eriberto Daniel-Waters","age":41,"location":"New Keiraburgh"}},{"attributes":{"name":"Alice Bosco","age":80,"location":"Romahaven"}},{"attributes":{"name":"Evie Schiller","age":24,"location":"Whittier"}},{"attributes":{"name":"Edith Will","age":77,"location":"Lake Norene"}},{"attributes":{"name":"Ryann Sporer","age":30,"location":"Bend"}},{"attributes":{"name":"Shane Wolff-Waelchi","age":52,"location":"North Ezra"}},{"attributes":{"name":"Sid Gibson","age":37,"location":"Baltimore"}},{"attributes":{"name":"Lloyd Kuvalis","age":22,"location":"Skilesview"}},{"attributes":{"name":"Carson Graham","age":79,"location":"Lake August"}},{"attributes":{"name":"Constance Ernser","age":58,"location":"Brayanboro"}},{"attributes":{"name":"Jadyn Cole","age":40,"location":"Mishawaka"}},{"attributes":{"name":"Margie Rosenbaum","age":70,"location":"Adamsstad"}},{"attributes":{"name":"Mr. Clifton Ryan","age":32,"location":"Lake Christy"}},{"attributes":{"name":"Clark Fritsch","age":41,"location":"Robynville"}},{"attributes":{"name":"Dr. Yvonne McGlynn","age":35,"location":"Lake Brentshire"}},{"attributes":{"name":"King Ziemann","age":46,"location":"North Kielberg"}},{"attributes":{"name":"Sylvester Sauer","age":73,"location":"Montgomery"}},{"attributes":{"name":"Mabel Dickinson","age":49,"location":"Port Myrtice"}},{"attributes":{"name":"Dr. Eva Funk","age":23,"location":"Cranston"}},{"attributes":{"name":"Woodrow Kohler","age":46,"location":"East Huldastad"}},{"attributes":{"name":"Mr. Tommie Murazik","age":39,"location":"East Americohaven"}},{"attributes":{"name":"Dr. Ozella Marquardt","age":24,"location":"Moline"}},{"attributes":{"name":"Tamara Bernier","age":36,"location":"Paucekchester"}},{"attributes":{"name":"Celia Kshlerin MD","age":74,"location":"Sophieboro"}},{"attributes":{"name":"Dorris Ankunding","age":62,"location":"New Domenick"}},{"attributes":{"name":"Winifred Wilkinson","age":18,"location":"White Plains"}},{"attributes":{"name":"Jarrett Cruickshank","age":62,"location":"North Claudia"}},{"attributes":{"name":"Francis Brown","age":75,"location":"Doyleport"}},{"attributes":{"name":"Edwardo Goldner MD","age":66,"location":"Jacobsonton"}},{"attributes":{"name":"Dr. Cristina Wolf","age":63,"location":"New Brennonside"}},{"attributes":{"name":"Ashly Gislason","age":31,"location":"North Iva"}},{"attributes":{"name":"Franklin Veum","age":30,"location":"West Burnice"}},{"attributes":{"name":"Dean Weimann","age":33,"location":"Port Isadorestad"}},{"attributes":{"name":"Opal Hirthe","age":28,"location":"Baumbachboro"}},{"attributes":{"name":"Scarlett Larkin","age":40,"location":"Chula Vista"}},{"attributes":{"name":"Brendon Renner","age":21,"location":"Winston-Salem"}},{"attributes":{"name":"Ms. Velma Dare","age":74,"location":"Pacochaborough"}},{"attributes":{"name":"Dr. Sabina Larson","age":40,"location":"New Ellaland"}},{"attributes":{"name":"Adrianna Bode","age":73,"location":"Geraldinemouth"}},{"attributes":{"name":"Ervin Robel MD","age":63,"location":"Deltona"}},{"attributes":{"name":"Harley Abernathy Sr.","age":68,"location":"Lake Angelomouth"}},{"attributes":{"name":"Brant Murphy","age":29,"location":"Temple"}},{"attributes":{"name":"Monserrate Stracke-Sipes","age":75,"location":"Vivahaven"}},{"attributes":{"name":"Miss Roberta Streich","age":74,"location":"Trompchester"}},{"attributes":{"name":"Easter Christiansen","age":21,"location":"Minneapolis"}},{"attributes":{"name":"Virginie Franey","age":69,"location":"New Fiona"}},{"attributes":{"name":"Harvey Gislason","age":44,"location":"New Vena"}},{"attributes":{"name":"Leslie Grant","age":45,"location":"Fort Donnellbury"}},{"attributes":{"name":"Mr. Jermaine Paucek","age":25,"location":"New Ulicesstead"}},{"attributes":{"name":"Kristen Schultz","age":62,"location":"Rosemead"}},{"attributes":{"name":"Ashley Botsford","age":61,"location":"New Willland"}},{"attributes":{"name":"Geraldine Nicolas","age":72,"location":"South Lilianachester"}},{"attributes":{"name":"Miss Cheryl Stanton","age":30,"location":"Maximillianburgh"}},{"attributes":{"name":"Erika Boehm","age":78,"location":"Port Hannah"}},{"attributes":{"name":"Maurine Runolfsdottir","age":72,"location":"North Austynfurt"}},{"attributes":{"name":"Owen Murray","age":29,"location":"Chesterfield"}},{"attributes":{"name":"Leigh Feest","age":58,"location":"South Denisfield"}},{"attributes":{"name":"Kelli Turcotte","age":55,"location":"Centennial"}},{"attributes":{"name":"Miss Yvette Graham","age":74,"location":"Olgaworth"}},{"attributes":{"name":"Mr. Oren Purdy","age":35,"location":"Port Jenifer"}},{"attributes":{"name":"Mittie Towne","age":29,"location":"Avondale"}},{"attributes":{"name":"Georgianna Littel","age":32,"location":"Shanahantown"}},{"attributes":{"name":"Carl Torp-Kunde DVM","age":50,"location":"Fort Devontestead"}},{"attributes":{"name":"Jannie Carter","age":29,"location":"Freeport"}},{"attributes":{"name":"Dr. Burley Jaskolski","age":18,"location":"Lake Gerry"}},{"attributes":{"name":"Arvid Prohaska","age":36,"location":"Hollieborough"}},{"attributes":{"name":"Ramona Mueller MD","age":74,"location":"Heathcoteborough"}},{"attributes":{"name":"Nora Deckow","age":42,"location":"New Darion"}},{"attributes":{"name":"Leatha Leffler","age":65,"location":"Emmaleeborough"}},{"attributes":{"name":"Lionel Medhurst","age":47,"location":"Gennarocester"}},{"attributes":{"name":"Bennie Larson","age":25,"location":"Feilstad"}},{"attributes":{"name":"Shelia Walsh","age":44,"location":"Port St. Lucie"}},{"attributes":{"name":"Brain Abbott","age":52,"location":"Santa Rosa"}},{"attributes":{"name":"Dr. Rosamond Lang","age":50,"location":"Bismarck"}},{"attributes":{"name":"Shawna Waters","age":77,"location":"Pfefferfort"}},{"attributes":{"name":"Julius Rath","age":40,"location":"North Gracie"}},{"attributes":{"name":"Joe Waters","age":35,"location":"New Brockfield"}},{"attributes":{"name":"Lincoln Swaniawski","age":33,"location":"Micahstad"}},{"attributes":{"name":"Stanley Dickens","age":29,"location":"Montgomery"}},{"attributes":{"name":"Jake Abshire","age":53,"location":"Casa Grande"}},{"attributes":{"name":"Julian Dooley","age":66,"location":"South Roberto"}},{"attributes":{"name":"Melissa Marks","age":19,"location":"East Emiliaworth"}},{"attributes":{"name":"Doyle Wilderman","age":70,"location":"West Obie"}},{"attributes":{"name":"Ethel Shields","age":73,"location":"South Verona"}},{"attributes":{"name":"Bernice Dooley","age":35,"location":"Fort Ted"}},{"attributes":{"name":"Gregg Collier MD","age":31,"location":"South Janahaven"}},{"attributes":{"name":"Chet Murazik-Abernathy","age":40,"location":"Nienowboro"}},{"attributes":{"name":"Darryl Heller","age":19,"location":"Jesushaven"}},{"attributes":{"name":"Tiffany Runolfsdottir III","age":53,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Dr. Tony Lebsack","age":39,"location":"Fort Hildegard"}},{"attributes":{"name":"Dr. Therese Goodwin","age":21,"location":"Fort Zoila"}},{"attributes":{"name":"Amy Mohr","age":18,"location":"East Donnieberg"}},{"attributes":{"name":"Geo Schaden","age":49,"location":"Schowalterstad"}},{"attributes":{"name":"Wesley Thompson","age":47,"location":"Johnsborough"}},{"attributes":{"name":"Mr. Gilberto Ritchie","age":76,"location":"East Annetta"}},{"attributes":{"name":"Janice Howell","age":68,"location":"East Devenmouth"}},{"attributes":{"name":"Salvatore Jakubowski","age":39,"location":"East Lyla"}},{"attributes":{"name":"Arvilla Romaguera","age":66,"location":"New Pietro"}},{"attributes":{"name":"Edmund Kuphal","age":63,"location":"Wilsonchester"}},{"attributes":{"name":"Charlie Hansen","age":65,"location":"Cassinworth"}},{"attributes":{"name":"Miss Doreen Mitchell","age":76,"location":"Feestfurt"}},{"attributes":{"name":"Lurline Prosacco","age":58,"location":"Bellingham"}},{"attributes":{"name":"Ray Boyer","age":29,"location":"Fort Aniya"}},{"attributes":{"name":"Dora Oberbrunner PhD","age":71,"location":"Heaneyville"}},{"attributes":{"name":"Tammy Leannon","age":24,"location":"Stoltenbergworth"}},{"attributes":{"name":"Hazle Graham","age":30,"location":"Cutler Bay"}},{"attributes":{"name":"Ruth Bruen","age":67,"location":"East Rahsaan"}},{"attributes":{"name":"Harry Weissnat PhD","age":61,"location":"Guaynabo"}},{"attributes":{"name":"Rebeca Franey Sr.","age":54,"location":"Lake Jessetown"}},{"attributes":{"name":"Loren Bartell","age":56,"location":"MacGyverport"}},{"attributes":{"name":"Edmond Connelly","age":72,"location":"Kelvinshire"}},{"attributes":{"name":"Ms. Susan Dooley","age":19,"location":"East Tristianstad"}},{"attributes":{"name":"Traci Kerluke","age":45,"location":"West Polly"}},{"attributes":{"name":"Miss Carley Homenick-Wiegand","age":65,"location":"Fort Yesenia"}},{"attributes":{"name":"Jenny Gorczany","age":59,"location":"Dareville"}},{"attributes":{"name":"Carrie Wyman","age":71,"location":"Dibbertshire"}},{"attributes":{"name":"Miss Anthony Schneider","age":41,"location":"East Eleonore"}},{"attributes":{"name":"Sonia Stark-Schmitt III","age":80,"location":"New Rosemarie"}},{"attributes":{"name":"Freda Fay-Balistreri","age":28,"location":"Fort William"}},{"attributes":{"name":"Jacky Brown","age":58,"location":"Graciefurt"}},{"attributes":{"name":"Dr. Megan Kuphal","age":35,"location":"Paramount"}},{"attributes":{"name":"Van Cartwright","age":61,"location":"Lake Adolph"}},{"attributes":{"name":"Anabelle Denesik","age":77,"location":"South Bette"}},{"attributes":{"name":"Charlene Mante-Beatty V","age":62,"location":"Vonside"}},{"attributes":{"name":"Mr. Joe Lehner","age":78,"location":"Caleighborough"}},{"attributes":{"name":"Dorothy Hermiston","age":58,"location":"North Jaquelin"}},{"attributes":{"name":"Gustavo Murazik","age":32,"location":"Ponce"}},{"attributes":{"name":"Ronny Spinka","age":50,"location":"East Otilia"}},{"attributes":{"name":"Dr. Frederique Yundt DVM","age":66,"location":"East Adrienne"}},{"attributes":{"name":"Lowell Beahan","age":56,"location":"West Matilda"}},{"attributes":{"name":"Tess Von","age":45,"location":"New Nakia"}},{"attributes":{"name":"Mr. Angel Schneider","age":33,"location":"Cynthiafurt"}},{"attributes":{"name":"Darrion Russel-Fay","age":44,"location":"Waltham"}},{"attributes":{"name":"Aidan Powlowski","age":40,"location":"Braunburgh"}},{"attributes":{"name":"Mrs. Wallace Emard","age":78,"location":"Fort Cleorastead"}},{"attributes":{"name":"Judah Upton","age":41,"location":"New Bennie"}},{"attributes":{"name":"Lloyd Auer","age":41,"location":"Bergnaumworth"}},{"attributes":{"name":"Trystan Powlowski","age":22,"location":"New Timmothyville"}},{"attributes":{"name":"Cedrick Kuhic","age":51,"location":"Myrnastad"}},{"attributes":{"name":"Dr. Lydia Runte","age":19,"location":"Cleveland Heights"}},{"attributes":{"name":"Stanley Doyle MD","age":51,"location":"South Brownfield"}},{"attributes":{"name":"Mitchell Prosacco","age":47,"location":"Blockcester"}},{"attributes":{"name":"Marcella Greenfelder","age":62,"location":"Schillerstead"}},{"attributes":{"name":"Jim Schaden IV","age":38,"location":"Fort Lynn"}},{"attributes":{"name":"Gerson Lehner","age":56,"location":"Alishafurt"}},{"attributes":{"name":"Molly Gleichner","age":51,"location":"Fort Bartview"}},{"attributes":{"name":"Deon Ward-Legros II","age":57,"location":"Port Larry"}},{"attributes":{"name":"Leonard Bechtelar","age":31,"location":"Tonawanda"}},{"attributes":{"name":"Sarah Wilderman","age":80,"location":"Vallejo"}},{"attributes":{"name":"Joan Carroll","age":44,"location":"Greenholtborough"}},{"attributes":{"name":"Chris Ritchie","age":31,"location":"South Ashtyn"}},{"attributes":{"name":"Lori Daugherty III","age":38,"location":"Fort Delphine"}},{"attributes":{"name":"Vickie Hilpert","age":38,"location":"West Ernieboro"}},{"attributes":{"name":"Drew Greenholt","age":72,"location":"Castro Valley"}},{"attributes":{"name":"Thea Bins","age":26,"location":"Marionhaven"}},{"attributes":{"name":"Jerry Konopelski","age":35,"location":"Trinitytown"}},{"attributes":{"name":"Fabiola Quigley Jr.","age":51,"location":"East Jarred"}},{"attributes":{"name":"Mrs. Amy Hackett","age":63,"location":"North Sashashire"}},{"attributes":{"name":"Lupe Pouros","age":29,"location":"Towson"}},{"attributes":{"name":"Dave Bergstrom IV","age":69,"location":"Coeur d'Alene"}},{"attributes":{"name":"Trinity Blick","age":28,"location":"Treyland"}},{"attributes":{"name":"Ron Bayer","age":53,"location":"Stracketon"}},{"attributes":{"name":"Robert Kerluke","age":76,"location":"Nashua"}},{"attributes":{"name":"Ona Gutmann","age":62,"location":"Fort Kayleigh"}},{"attributes":{"name":"Henry Ernser","age":63,"location":"Balistreriburgh"}},{"attributes":{"name":"Dr. Stephen Hane Sr.","age":49,"location":"South Stephen"}},{"attributes":{"name":"Lela Wunsch","age":79,"location":"Lake Estefaniachester"}},{"attributes":{"name":"Eleonore Torphy","age":76,"location":"Joliet"}},{"attributes":{"name":"Lillie Kunze","age":55,"location":"Lake Van"}},{"attributes":{"name":"Miss Vinnie Gottlieb-Reichert III","age":68,"location":"Johanburgh"}},{"attributes":{"name":"Tracey Schuppe I","age":26,"location":"Velmaberg"}},{"attributes":{"name":"Raina Hessel","age":31,"location":"Littelmouth"}},{"attributes":{"name":"Mrs. Clay Quigley III","age":71,"location":"Savannah"}},{"attributes":{"name":"Elouise Botsford I","age":40,"location":"Sydniworth"}},{"attributes":{"name":"Royce Balistreri","age":64,"location":"Violetteport"}},{"attributes":{"name":"Velma Nicolas","age":49,"location":"Auburn"}},{"attributes":{"name":"Pablo Walker","age":78,"location":"Port Dulcefurt"}},{"attributes":{"name":"Kiarra Boyle","age":36,"location":"Boehmview"}},{"attributes":{"name":"Miss Nathaniel Hauck III","age":57,"location":"Lake Christianfield"}},{"attributes":{"name":"Laurianne Beer","age":43,"location":"Port Mazie"}},{"attributes":{"name":"Kerry Hessel","age":78,"location":"Alekworth"}},{"attributes":{"name":"Ross Murphy IV","age":21,"location":"Port Pamela"}},{"attributes":{"name":"Dale Bergstrom II","age":28,"location":"Thielbury"}},{"attributes":{"name":"Dallin Hermiston","age":28,"location":"Lancaster"}},{"attributes":{"name":"Laurence Batz","age":63,"location":"Fort Jalen"}},{"attributes":{"name":"Holly Gislason","age":30,"location":"South Payton"}},{"attributes":{"name":"Geoffrey Carroll-Schowalter","age":33,"location":"Lake Monroe"}},{"attributes":{"name":"Miss Andy Lindgren IV","age":44,"location":"Koeppstead"}},{"attributes":{"name":"Santiago Franey","age":57,"location":"East Quentinfield"}},{"attributes":{"name":"Jared Metz","age":24,"location":"Brownsville"}},{"attributes":{"name":"Tracy Pollich","age":34,"location":"Irvine"}},{"attributes":{"name":"Ms. Diana Dooley","age":25,"location":"West Eldridgestad"}},{"attributes":{"name":"Wilbur Glover","age":50,"location":"Mesa"}},{"attributes":{"name":"Newton Block","age":22,"location":"New Raegan"}},{"attributes":{"name":"Libby Boyer","age":40,"location":"Davonmouth"}},{"attributes":{"name":"Alayna King","age":66,"location":"North Ewellcester"}},{"attributes":{"name":"Brisa Wiza","age":51,"location":"Port Everettworth"}},{"attributes":{"name":"Hillary Ondricka","age":24,"location":"North Maude"}},{"attributes":{"name":"Pedro Swaniawski","age":24,"location":"Pearl City"}},{"attributes":{"name":"Aleen Walsh","age":20,"location":"Lake Lonzo"}},{"attributes":{"name":"Willie Hayes","age":37,"location":"Port Estelville"}},{"attributes":{"name":"Charlene Wolff","age":19,"location":"Zemlakfurt"}},{"attributes":{"name":"Paul Stracke","age":18,"location":"Hendersonville"}},{"attributes":{"name":"Daisy Yost","age":22,"location":"Fort Justenfurt"}},{"attributes":{"name":"Ernestine Hauck","age":63,"location":"West Sigrid"}},{"attributes":{"name":"Ova Morissette","age":59,"location":"Myrlchester"}},{"attributes":{"name":"Howard Block-Wunsch","age":30,"location":"Port Kathryn"}},{"attributes":{"name":"Wilton Carroll","age":41,"location":"South Rocio"}},{"attributes":{"name":"Mr. Adam Donnelly","age":69,"location":"Palm Desert"}},{"attributes":{"name":"Charlene Hilpert","age":69,"location":"South Kolby"}},{"attributes":{"name":"Kenneth Rempel DDS","age":22,"location":"Cassieboro"}},{"attributes":{"name":"Eleanor Hettinger Sr.","age":26,"location":"Perth Amboy"}},{"attributes":{"name":"Myrtle Kuhic","age":67,"location":"Fall River"}},{"attributes":{"name":"Misty Wolf","age":74,"location":"Danteboro"}},{"attributes":{"name":"Sherri Lowe","age":67,"location":"Pine Bluff"}},{"attributes":{"name":"Tamara Terry","age":62,"location":"Gussieworth"}},{"attributes":{"name":"Marc Greenholt","age":42,"location":"Lewfurt"}},{"attributes":{"name":"Stephanie Ferry","age":25,"location":"Manhattan"}},{"attributes":{"name":"Aletha Romaguera","age":33,"location":"Richardson"}},{"attributes":{"name":"Madyson Murphy","age":37,"location":"Malden"}},{"attributes":{"name":"Mr. William Stokes","age":30,"location":"Rockford"}},{"attributes":{"name":"Kyle Emmerich","age":46,"location":"North Charlesworth"}},{"attributes":{"name":"Marielle Kreiger","age":51,"location":"East Darrickhaven"}},{"attributes":{"name":"Jake Satterfield","age":29,"location":"Port Bufordboro"}},{"attributes":{"name":"Tabitha Grimes","age":71,"location":"Armandoworth"}},{"attributes":{"name":"Dr. Carroll Windler","age":18,"location":"O'Reillyville"}},{"attributes":{"name":"Drew Hane","age":27,"location":"North Haylee"}},{"attributes":{"name":"Sophia Zulauf DVM","age":32,"location":"Cordiaburgh"}},{"attributes":{"name":"Floyd Romaguera","age":60,"location":"West Jimmiefurt"}},{"attributes":{"name":"Kelly Langosh","age":41,"location":"Birmingham"}},{"attributes":{"name":"Gerald Mueller","age":72,"location":"Wavaville"}},{"attributes":{"name":"Ms. Lilla Dickens","age":45,"location":"Kemmerburgh"}},{"attributes":{"name":"Lesly Howell","age":44,"location":"North Alena"}},{"attributes":{"name":"Dr. Ewell Little","age":53,"location":"Fort Madonnaville"}},{"attributes":{"name":"Eloise Graham","age":31,"location":"South Johathan"}},{"attributes":{"name":"Levi Beahan","age":66,"location":"Mount Prospect"}},{"attributes":{"name":"Bobbie Buckridge","age":52,"location":"New Dashawnhaven"}},{"attributes":{"name":"Guadalupe Mante","age":19,"location":"Hillsboro"}},{"attributes":{"name":"Gwen Reinger V","age":56,"location":"Kissimmee"}},{"attributes":{"name":"Mitchell Hauck","age":54,"location":"Danbury"}},{"attributes":{"name":"Jess Johns","age":74,"location":"West Chynachester"}},{"attributes":{"name":"Hilda Kerluke IV","age":23,"location":"Theodoreland"}},{"attributes":{"name":"Mason Hudson","age":55,"location":"Ritchieberg"}},{"attributes":{"name":"Noah Keebler","age":75,"location":"Kalamazoo"}},{"attributes":{"name":"Julian Schamberger","age":25,"location":"Christiansenfield"}},{"attributes":{"name":"Arthur Hackett MD","age":23,"location":"O'Haraborough"}},{"attributes":{"name":"Robin Rosenbaum","age":67,"location":"New Annamarieborough"}},{"attributes":{"name":"Rodney Pacocha","age":41,"location":"West Marciacester"}},{"attributes":{"name":"Courtney Jacobs","age":53,"location":"Roanoke"}},{"attributes":{"name":"Lloyd Pfannerstill","age":22,"location":"Emardstead"}},{"attributes":{"name":"Dallin Romaguera II","age":44,"location":"South Pattie"}},{"attributes":{"name":"Paulette DuBuque","age":63,"location":"Everett"}},{"attributes":{"name":"Dr. Marcia Wuckert","age":60,"location":"Port Luigi"}},{"attributes":{"name":"Donald Kuphal","age":38,"location":"Port Eldon"}},{"attributes":{"name":"Isabel Murphy","age":65,"location":"Des Moines"}},{"attributes":{"name":"Mr. Cedric McLaughlin","age":67,"location":"Kayfurt"}},{"attributes":{"name":"Javonte Schneider","age":72,"location":"North Ferminville"}},{"attributes":{"name":"Mr. Armando Padberg","age":41,"location":"Angelafield"}},{"attributes":{"name":"Margarete Huels","age":31,"location":"Vacaville"}},{"attributes":{"name":"Abner Bins","age":28,"location":"Port Guadalupe"}},{"attributes":{"name":"Shelly Farrell","age":18,"location":"East Mike"}},{"attributes":{"name":"Cathy Corkery","age":65,"location":"South Kailey"}},{"attributes":{"name":"Jay Harvey","age":61,"location":"Boulder"}},{"attributes":{"name":"Mr. Dallas Cole-Breitenberg","age":41,"location":"West Cheyanneland"}},{"attributes":{"name":"Ella Waelchi","age":43,"location":"Leuschkefurt"}},{"attributes":{"name":"Samara Wilderman DDS","age":50,"location":"Bruenside"}},{"attributes":{"name":"Eva Zemlak","age":57,"location":"Layton"}},{"attributes":{"name":"Judah Mraz","age":78,"location":"Fort Emmettville"}},{"attributes":{"name":"Miss Alexanne Anderson","age":26,"location":"Austin"}},{"attributes":{"name":"Marlene Kshlerin","age":69,"location":"Briashire"}},{"attributes":{"name":"Bryana Baumbach I","age":62,"location":"South Delfinatown"}},{"attributes":{"name":"Hubert Little","age":52,"location":"Beattyville"}},{"attributes":{"name":"Isabel Corkery","age":61,"location":"Feestchester"}},{"attributes":{"name":"Roxane Muller","age":41,"location":"Jamalton"}},{"attributes":{"name":"Kristina Waelchi","age":64,"location":"Brandonside"}},{"attributes":{"name":"Clarence Macejkovic","age":67,"location":"South Lina"}},{"attributes":{"name":"Kennedi Wintheiser","age":56,"location":"Paxtonchester"}},{"attributes":{"name":"Mylene Leannon","age":52,"location":"East Valentinachester"}},{"attributes":{"name":"Johnathan Moen","age":73,"location":"Trishaboro"}},{"attributes":{"name":"Manuel Runte","age":50,"location":"Fort Emely"}},{"attributes":{"name":"Marina Fay","age":58,"location":"South Darlene"}},{"attributes":{"name":"Dell Maggio","age":80,"location":"Baileyborough"}},{"attributes":{"name":"Hobart Brakus","age":59,"location":"New Nelsonborough"}},{"attributes":{"name":"Yvette Murphy II","age":42,"location":"Blockbury"}},{"attributes":{"name":"Mrs. Jackson Heller","age":56,"location":"Hellerborough"}},{"attributes":{"name":"Guadalupe Gutmann","age":61,"location":"South Elmiracester"}},{"attributes":{"name":"Meghan Cummerata","age":36,"location":"New Orleans"}},{"attributes":{"name":"Kristina Nienow III","age":45,"location":"Eugene"}},{"attributes":{"name":"Broderick Wuckert","age":78,"location":"Leannoncester"}},{"attributes":{"name":"Trent Anderson","age":50,"location":"Raoulberg"}},{"attributes":{"name":"Angelina Wyman","age":52,"location":"Fort Everettfield"}},{"attributes":{"name":"Haylee Toy","age":40,"location":"Grantborough"}},{"attributes":{"name":"Luisa Leffler","age":43,"location":"West Hartford"}},{"attributes":{"name":"Terri Kovacek","age":73,"location":"Lake Hattie"}},{"attributes":{"name":"Lue Hand","age":28,"location":"Osbornecester"}},{"attributes":{"name":"Mr. Alberto Gulgowski-Huel","age":72,"location":"Pine Hills"}},{"attributes":{"name":"Jovani MacGyver","age":50,"location":"Port Reesehaven"}},{"attributes":{"name":"Kirk Schultz","age":60,"location":"New Alanisside"}},{"attributes":{"name":"Evelyn Reichel","age":56,"location":"Eastvale"}},{"attributes":{"name":"Rudy Cronin DDS","age":25,"location":"North Trenton"}},{"attributes":{"name":"Gerard Hamill","age":45,"location":"Vernside"}},{"attributes":{"name":"Henri Reilly","age":18,"location":"Breitenberghaven"}},{"attributes":{"name":"Mervin Kohler","age":43,"location":"O'Connellton"}},{"attributes":{"name":"Marquis Waters DDS","age":38,"location":"Kingworth"}},{"attributes":{"name":"Earl Kuhlman","age":57,"location":"Fort Norbertoboro"}},{"attributes":{"name":"Dr. Lon Schumm","age":40,"location":"North Eleazar"}},{"attributes":{"name":"Allan Lowe","age":35,"location":"Lake Pamelaside"}},{"attributes":{"name":"Leslie Zieme","age":76,"location":"Rocklin"}},{"attributes":{"name":"Mercedes Huels","age":61,"location":"Craigville"}},{"attributes":{"name":"Casey Zemlak","age":41,"location":"Thielberg"}},{"attributes":{"name":"Ms. Madaline Aufderhar","age":76,"location":"Utica"}},{"attributes":{"name":"Arthur Toy","age":53,"location":"Lake Karianne"}},{"attributes":{"name":"Delfina Kautzer","age":42,"location":"Olympia"}},{"attributes":{"name":"Kristie Collins","age":22,"location":"South Imaside"}},{"attributes":{"name":"Mrs. Amie Skiles","age":80,"location":"Hintzhaven"}},{"attributes":{"name":"German Lubowitz","age":59,"location":"New Horace"}},{"attributes":{"name":"Maria Gleason","age":30,"location":"West Osborne"}},{"attributes":{"name":"Flavio Reichert PhD","age":73,"location":"Nashville-Davidson"}},{"attributes":{"name":"Jermain Powlowski","age":80,"location":"New Alexandre"}},{"attributes":{"name":"Wayne Turner","age":76,"location":"Caguas"}},{"attributes":{"name":"Wade Bauch","age":74,"location":"Richland"}},{"attributes":{"name":"Morris Kassulke","age":33,"location":"Binsstead"}},{"attributes":{"name":"Amos Greenfelder","age":66,"location":"East Melanyburgh"}},{"attributes":{"name":"Akeem Rolfson","age":75,"location":"Brekkeside"}},{"attributes":{"name":"Ana Cartwright","age":79,"location":"Horaciofort"}},{"attributes":{"name":"Shari Nienow","age":56,"location":"Port Yesseniabury"}},{"attributes":{"name":"Lynn Keebler","age":18,"location":"North Natasha"}},{"attributes":{"name":"Dexter Kutch","age":47,"location":"Wesley Chapel"}},{"attributes":{"name":"Fiona Wisoky","age":79,"location":"South Michelboro"}},{"attributes":{"name":"David Schmitt","age":36,"location":"New Edgarfurt"}},{"attributes":{"name":"Ronald Weissnat","age":74,"location":"Wunschmouth"}},{"attributes":{"name":"Jennifer Emmerich","age":45,"location":"Haleychester"}},{"attributes":{"name":"Martin Kshlerin","age":29,"location":"Lake Isaias"}},{"attributes":{"name":"Lea Renner V","age":62,"location":"Sheboygan"}},{"attributes":{"name":"Christie Miller Sr.","age":72,"location":"East Haven"}},{"attributes":{"name":"Kim Pollich","age":30,"location":"North Webster"}},{"attributes":{"name":"Georgia Grimes","age":31,"location":"North Manuelbury"}},{"attributes":{"name":"Sherman Schmidt","age":60,"location":"Chico"}},{"attributes":{"name":"Jamir Macejkovic","age":70,"location":"North Ettie"}},{"attributes":{"name":"Miss Reginald Kautzer","age":56,"location":"Carolina"}},{"attributes":{"name":"Maria Hegmann","age":22,"location":"Haverhill"}},{"attributes":{"name":"Nathan Osinski-Schumm","age":53,"location":"Fort Pierce"}},{"attributes":{"name":"Ms. Fleta Hilpert","age":33,"location":"Shannonstad"}},{"attributes":{"name":"Alvera Gusikowski","age":30,"location":"North Renee"}},{"attributes":{"name":"Alan Kozey","age":56,"location":"Winonaport"}},{"attributes":{"name":"Alisa Gleason","age":44,"location":"Zulaufburgh"}},{"attributes":{"name":"Shane Rohan II","age":79,"location":"Cedar Hill"}},{"attributes":{"name":"Raul Bernhard","age":31,"location":"Ryanburgh"}},{"attributes":{"name":"Alena Pfeffer","age":33,"location":"Port Sybleborough"}},{"attributes":{"name":"Jerod Treutel","age":76,"location":"Port Melanyton"}},{"attributes":{"name":"Lauryn Kirlin","age":20,"location":"Port Emelietown"}},{"attributes":{"name":"Jake Wilderman","age":40,"location":"Kaitlinberg"}},{"attributes":{"name":"Darla Renner PhD","age":44,"location":"Ashleightown"}},{"attributes":{"name":"Mr. Donna Hudson","age":39,"location":"South Lueburgh"}},{"attributes":{"name":"Erik Schneider","age":28,"location":"Lake Rod"}},{"attributes":{"name":"Stanford Heathcote","age":40,"location":"Karafurt"}},{"attributes":{"name":"Jody Cronin","age":32,"location":"Darrinside"}},{"attributes":{"name":"Tabitha Morar","age":54,"location":"Lonnyburgh"}},{"attributes":{"name":"Teri Monahan-Bahringer","age":26,"location":"Kertzmannchester"}},{"attributes":{"name":"Jon Weissnat IV","age":75,"location":"Lake Cale"}},{"attributes":{"name":"Holly Stiedemann","age":40,"location":"Fort Wayne"}},{"attributes":{"name":"Sonja Tillman","age":76,"location":"Rempelcester"}},{"attributes":{"name":"Jo Willms","age":22,"location":"South Dayton"}},{"attributes":{"name":"Jose Satterfield","age":77,"location":"Jacobifort"}},{"attributes":{"name":"Larissa Gislason","age":63,"location":"North Hollie"}},{"attributes":{"name":"Joshua Schowalter","age":31,"location":"Lauriemouth"}},{"attributes":{"name":"Cleo Rutherford","age":50,"location":"Jeromeberg"}},{"attributes":{"name":"Ellis Schinner","age":59,"location":"South Erichfield"}},{"attributes":{"name":"Otilia Watsica","age":20,"location":"West Sherwood"}},{"attributes":{"name":"Miss Patsy Volkman III","age":66,"location":"Redondo Beach"}},{"attributes":{"name":"Ms. Audrey Flatley","age":56,"location":"Menifee"}},{"attributes":{"name":"Paulette Monahan","age":23,"location":"New Bernita"}},{"attributes":{"name":"Leticia Bailey","age":53,"location":"South Velma"}},{"attributes":{"name":"Dr. Lena Fay","age":61,"location":"Fort Ines"}},{"attributes":{"name":"Arturo Bernhard","age":41,"location":"North Isaac"}},{"attributes":{"name":"Alma Brown","age":68,"location":"Carmel"}},{"attributes":{"name":"Dana Reinger","age":67,"location":"Rathton"}},{"attributes":{"name":"Roxanne Altenwerth","age":18,"location":"Oswaldcester"}},{"attributes":{"name":"Judith Harris","age":53,"location":"Emmerichworth"}},{"attributes":{"name":"Bradford Schroeder","age":45,"location":"Lexiefort"}},{"attributes":{"name":"Wayne Crooks PhD","age":66,"location":"Bodeport"}},{"attributes":{"name":"Miss Verda Welch","age":65,"location":"North Lennaport"}},{"attributes":{"name":"Dr. Patrick Nolan","age":80,"location":"New Madisen"}},{"attributes":{"name":"Cathryn Mayert","age":68,"location":"Fort Priscillafurt"}},{"attributes":{"name":"Mrs. Eloise Towne","age":55,"location":"Kuhicville"}},{"attributes":{"name":"Tressie McCullough DDS","age":33,"location":"Humbertoworth"}},{"attributes":{"name":"Maya Haag","age":52,"location":"East Stacey"}},{"attributes":{"name":"Cheyanne Rohan","age":39,"location":"Coleborough"}},{"attributes":{"name":"Miss Stevie Parker","age":77,"location":"Ninaside"}},{"attributes":{"name":"Molly Balistreri","age":41,"location":"Carson City"}},{"attributes":{"name":"Miss Kelley Skiles PhD","age":67,"location":"South Moriahstad"}},{"attributes":{"name":"Dr. Anita Hoeger-Considine","age":78,"location":"Moline"}},{"attributes":{"name":"Vivian Cronin","age":74,"location":"Shawnee"}},{"attributes":{"name":"Darwin Ryan","age":18,"location":"Grapevine"}},{"attributes":{"name":"Brielle Boehm","age":64,"location":"New Grayce"}},{"attributes":{"name":"Bethany Huels","age":42,"location":"New Hank"}},{"attributes":{"name":"Cory Durgan","age":70,"location":"Pleasanton"}},{"attributes":{"name":"Tammy Bosco","age":80,"location":"Fort Cecilworth"}},{"attributes":{"name":"Dr. Michele Kohler","age":73,"location":"Windlerton"}},{"attributes":{"name":"Dejon Wilkinson Jr.","age":18,"location":"Santa Clara"}},{"attributes":{"name":"Jamie Rohan","age":31,"location":"Grand Prairie"}},{"attributes":{"name":"Beaulah Willms","age":55,"location":"New Jeremieview"}},{"attributes":{"name":"Merl Heidenreich","age":25,"location":"Napa"}},{"attributes":{"name":"Leo D'Amore I","age":58,"location":"Port Ayanaborough"}},{"attributes":{"name":"Jaycee Davis DVM","age":30,"location":"South Elroy"}},{"attributes":{"name":"Elva Goyette","age":64,"location":"Bernierfurt"}},{"attributes":{"name":"Sheldon Gerlach","age":75,"location":"Krisstead"}},{"attributes":{"name":"Hillary Morissette","age":56,"location":"Bettiehaven"}},{"attributes":{"name":"Mayra Herman","age":73,"location":"North Flavioton"}},{"attributes":{"name":"Darryl Little","age":24,"location":"Mission"}},{"attributes":{"name":"Tina Beier","age":79,"location":"Isaifurt"}},{"attributes":{"name":"Elisa Ryan","age":34,"location":"O'Keefetown"}},{"attributes":{"name":"Patience Stiedemann","age":28,"location":"Wardcester"}},{"attributes":{"name":"Kristopher Macejkovic Jr.","age":27,"location":"Lake Lindsay"}},{"attributes":{"name":"Mr. Hailie Lebsack","age":57,"location":"New Hugh"}},{"attributes":{"name":"Ryder Pouros","age":64,"location":"Lake Randal"}},{"attributes":{"name":"Michelle Waters","age":49,"location":"East Velva"}},{"attributes":{"name":"Larissa Marquardt","age":53,"location":"East Breanna"}},{"attributes":{"name":"Kari Renner","age":48,"location":"South Rozella"}},{"attributes":{"name":"Blanche Pfannerstill","age":73,"location":"Port Marcelo"}},{"attributes":{"name":"Kristine Morissette","age":20,"location":"Smithside"}},{"attributes":{"name":"Belle Davis","age":62,"location":"Maybellefort"}},{"attributes":{"name":"Wilfred Lind","age":79,"location":"Bergnaumburgh"}},{"attributes":{"name":"Hilma Spinka","age":74,"location":"South Edmundstead"}},{"attributes":{"name":"Willard Funk","age":53,"location":"East Chesleytown"}},{"attributes":{"name":"Violet Stroman Jr.","age":37,"location":"Kalamazoo"}},{"attributes":{"name":"Melody Kuvalis","age":24,"location":"Mountain View"}},{"attributes":{"name":"Micheal Bergstrom","age":68,"location":"Devinville"}},{"attributes":{"name":"Abigale Balistreri","age":66,"location":"Lake Ridge"}},{"attributes":{"name":"Walker Batz","age":38,"location":"Jocelyncester"}},{"attributes":{"name":"Amaya Harber","age":18,"location":"Hoffman Estates"}},{"attributes":{"name":"Luke Lemke II","age":58,"location":"Kissimmee"}},{"attributes":{"name":"Alphonso Klein","age":77,"location":"East Markuschester"}},{"attributes":{"name":"Annette Wilkinson-Dach","age":28,"location":"Goodwinbury"}},{"attributes":{"name":"Dr. Rosemary Gutmann","age":23,"location":"North Mikeview"}},{"attributes":{"name":"Irvin Murray","age":65,"location":"Carmel"}},{"attributes":{"name":"Levi Will","age":50,"location":"Stantoncester"}},{"attributes":{"name":"Rupert Volkman","age":21,"location":"Marysville"}},{"attributes":{"name":"Arjun Koch","age":39,"location":"Schmelershire"}},{"attributes":{"name":"Elias Moen II","age":24,"location":"Santa Maria"}},{"attributes":{"name":"Marlon McGlynn","age":58,"location":"Sioux Falls"}},{"attributes":{"name":"Constance Metz","age":41,"location":"Marysville"}},{"attributes":{"name":"Melvin Stark","age":46,"location":"Lake Chasityboro"}},{"attributes":{"name":"Lori Blick","age":71,"location":"Cheyenne"}},{"attributes":{"name":"Dr. Cullen Runolfsson","age":19,"location":"East Shainaland"}},{"attributes":{"name":"Ms. Kayleigh Schiller","age":31,"location":"Lake Celia"}},{"attributes":{"name":"Stanley Koelpin","age":53,"location":"Boca Raton"}},{"attributes":{"name":"Flavio Hilpert","age":36,"location":"Tamiafurt"}},{"attributes":{"name":"Marian Kshlerin","age":55,"location":"East Kaylinfield"}},{"attributes":{"name":"Elena Beier","age":28,"location":"Arturoshire"}},{"attributes":{"name":"Rosie Monahan","age":62,"location":"Lake Dereckland"}},{"attributes":{"name":"Ana Veum","age":18,"location":"Port Electa"}},{"attributes":{"name":"Alberta Fadel","age":34,"location":"Lake Shaina"}},{"attributes":{"name":"Alejandro Yundt","age":65,"location":"Lake Retaport"}},{"attributes":{"name":"Drew Rippin","age":19,"location":"New Lexusberg"}},{"attributes":{"name":"Urban Swaniawski","age":47,"location":"North Marvinton"}},{"attributes":{"name":"Ova Cremin","age":69,"location":"Fort Elwin"}},{"attributes":{"name":"Pete Zulauf","age":60,"location":"South Hope"}},{"attributes":{"name":"Dr. Dustin Schamberger","age":67,"location":"West Dariusfort"}},{"attributes":{"name":"Clint Auer","age":24,"location":"Fort Dakotaview"}},{"attributes":{"name":"Kirk Rolfson","age":62,"location":"Fayberg"}},{"attributes":{"name":"Adrien Green","age":61,"location":"Kalebchester"}},{"attributes":{"name":"Miss Glenda Moen","age":46,"location":"Lake Kenyattafurt"}},{"attributes":{"name":"Bernadette Howell MD","age":52,"location":"Jordishire"}},{"attributes":{"name":"Virgil Homenick-Bernier","age":43,"location":"East Laurelcester"}},{"attributes":{"name":"Jon Cartwright IV","age":28,"location":"East Simeon"}},{"attributes":{"name":"Rosario Sauer","age":53,"location":"Lake Karenville"}},{"attributes":{"name":"Marjorie Kohler","age":29,"location":"Juniusboro"}},{"attributes":{"name":"Jackie Schamberger","age":74,"location":"McCulloughside"}},{"attributes":{"name":"Shannon Metz Sr.","age":39,"location":"South Jerrystad"}},{"attributes":{"name":"Guillermo Franey","age":32,"location":"South Raymundo"}},{"attributes":{"name":"Scotty Walker","age":70,"location":"Felipebury"}},{"attributes":{"name":"Hilda Spinka","age":69,"location":"East Mac"}},{"attributes":{"name":"Floyd Stracke-Weimann","age":69,"location":"Watsicaville"}},{"attributes":{"name":"Brenda Satterfield","age":65,"location":"New Jaycee"}},{"attributes":{"name":"Miss Alicia Ernser","age":27,"location":"Columbia"}},{"attributes":{"name":"Mohammed Tromp DDS","age":47,"location":"New Eleonore"}},{"attributes":{"name":"Julien Waters","age":46,"location":"Jeffersonville"}},{"attributes":{"name":"Mavis Dooley","age":20,"location":"Josiefort"}},{"attributes":{"name":"Mr. Arthur Koss I","age":40,"location":"New Cody"}},{"attributes":{"name":"Sherri Halvorson","age":72,"location":"Jurupa Valley"}},{"attributes":{"name":"Mrs. Alberto Hodkiewicz","age":32,"location":"Hartmannview"}},{"attributes":{"name":"Dr. Horace Koss","age":33,"location":"North Highlands"}},{"attributes":{"name":"Jerald Schaefer-Effertz","age":68,"location":"Samsonside"}},{"attributes":{"name":"Mabel Paucek","age":77,"location":"East Turner"}},{"attributes":{"name":"Miss Michelle Powlowski","age":43,"location":"North Gennaro"}},{"attributes":{"name":"Hubert Cummerata","age":46,"location":"Daxchester"}},{"attributes":{"name":"Velma Miller","age":55,"location":"Arvada"}},{"attributes":{"name":"Dr. Marietta Gulgowski","age":65,"location":"Gutkowskiside"}},{"attributes":{"name":"Alayna Crona","age":73,"location":"Canton"}},{"attributes":{"name":"Jena Gulgowski","age":57,"location":"Attleboro"}},{"attributes":{"name":"Dr. Prudence Hansen Jr.","age":40,"location":"Breitenbergview"}},{"attributes":{"name":"Vincenzo Blanda","age":32,"location":"North Billie"}},{"attributes":{"name":"Megan Bode","age":54,"location":"North Imafurt"}},{"attributes":{"name":"Lamar Mann III","age":39,"location":"Port Ophelia"}},{"attributes":{"name":"Stewart Ortiz DVM","age":79,"location":"Alphonsoville"}},{"attributes":{"name":"Timmy Huels I","age":64,"location":"Bothell"}},{"attributes":{"name":"Emiliano Hayes","age":45,"location":"South San Francisco"}},{"attributes":{"name":"Davion Pfeffer","age":64,"location":"Port Toney"}},{"attributes":{"name":"Garrett Schneider","age":42,"location":"Zulauffurt"}},{"attributes":{"name":"Inez Bruen-Gusikowski","age":68,"location":"Lake Sebastianshire"}},{"attributes":{"name":"Alexandre Sipes","age":31,"location":"Mozellhaven"}},{"attributes":{"name":"Rosendo Gerhold","age":19,"location":"Bettiehaven"}},{"attributes":{"name":"Joel Armstrong","age":29,"location":"Port Dessieport"}},{"attributes":{"name":"Teresa Wuckert II","age":18,"location":"Fort Jaylenbury"}},{"attributes":{"name":"Torrance Ward","age":54,"location":"Oak Park"}},{"attributes":{"name":"Francesco Romaguera","age":45,"location":"Catharineland"}},{"attributes":{"name":"Glenda Ernser","age":54,"location":"East Alexandrea"}},{"attributes":{"name":"Frankie Frami","age":38,"location":"Federal Way"}},{"attributes":{"name":"Rubye Upton","age":23,"location":"Walkerborough"}},{"attributes":{"name":"River Donnelly","age":68,"location":"Fort Rhiannonstead"}},{"attributes":{"name":"Mrs. Mae Kling","age":73,"location":"North Laurystead"}},{"attributes":{"name":"Mrs. Isaias Mueller Sr.","age":26,"location":"Aracelyhaven"}},{"attributes":{"name":"Lavon Block","age":30,"location":"East Coltentown"}},{"attributes":{"name":"Nolan Littel","age":28,"location":"North Karleycester"}},{"attributes":{"name":"Marshall Skiles II","age":70,"location":"New Luciobury"}},{"attributes":{"name":"Harriet White","age":50,"location":"Methuen Town"}},{"attributes":{"name":"Dr. Mary Kreiger I","age":23,"location":"New Audrey"}},{"attributes":{"name":"Lillie Gleichner II","age":30,"location":"Port Philipmouth"}},{"attributes":{"name":"Terry Feeney","age":78,"location":"North Aubreeland"}},{"attributes":{"name":"Jane Brakus","age":65,"location":"Ellicott City"}},{"attributes":{"name":"Dr. Lavada Paucek","age":76,"location":"West Retaview"}},{"attributes":{"name":"Mike Veum","age":59,"location":"North Feltonborough"}},{"attributes":{"name":"Liliana Tremblay","age":29,"location":"Rowlett"}},{"attributes":{"name":"Rudolph Watsica","age":35,"location":"Murphystad"}},{"attributes":{"name":"Mr. Jeff Franey","age":27,"location":"North Douglas"}},{"attributes":{"name":"King Fahey DDS","age":67,"location":"West Dena"}},{"attributes":{"name":"Ms. Elyssa Homenick DDS","age":35,"location":"East Jeramie"}},{"attributes":{"name":"Pauline Upton","age":20,"location":"Port Darius"}},{"attributes":{"name":"Gail Thompson","age":67,"location":"Pasco"}},{"attributes":{"name":"Horace Wehner","age":32,"location":"East Brigitte"}},{"attributes":{"name":"Mary D'Amore","age":39,"location":"Croninport"}},{"attributes":{"name":"Josue Muller","age":77,"location":"East Jennifer"}},{"attributes":{"name":"Rosemary Roob","age":57,"location":"East Aimeeville"}},{"attributes":{"name":"Miss Wendy Weber","age":31,"location":"Aydencester"}},{"attributes":{"name":"Ginger Klocko","age":48,"location":"Townefield"}},{"attributes":{"name":"Judith Klein II","age":47,"location":"Lake Baileeborough"}},{"attributes":{"name":"Vladimir Runolfsdottir-Quitzon","age":20,"location":"Bechtelarbury"}},{"attributes":{"name":"Celia Becker","age":31,"location":"West Vivienne"}},{"attributes":{"name":"Phoebe Simonis","age":55,"location":"Lake Cora"}},{"attributes":{"name":"Waino Hackett","age":21,"location":"Gerlachville"}},{"attributes":{"name":"Imogene Conn","age":37,"location":"Murrayfield"}},{"attributes":{"name":"Shannon Mante","age":48,"location":"West Brooke"}},{"attributes":{"name":"Evan Wyman Sr.","age":63,"location":"Schillerbury"}},{"attributes":{"name":"Shelia Huels","age":67,"location":"Medhurstbury"}},{"attributes":{"name":"Deondre Batz","age":74,"location":"West Constance"}},{"attributes":{"name":"Merle Muller","age":60,"location":"Fort Arlie"}},{"attributes":{"name":"Reginald Moen","age":38,"location":"Lenorafield"}},{"attributes":{"name":"Rocio Lind","age":55,"location":"East Warren"}},{"attributes":{"name":"Mr. Julian Gorczany","age":72,"location":"Salt Lake City"}},{"attributes":{"name":"Rowan Bahringer III","age":18,"location":"Glendale"}},{"attributes":{"name":"Oran McDermott","age":41,"location":"New Georgianaport"}},{"attributes":{"name":"Mr. Wesley Block","age":49,"location":"Huntington Park"}},{"attributes":{"name":"Hanna Koepp","age":79,"location":"Rowland Heights"}},{"attributes":{"name":"Lowell Emmerich","age":51,"location":"Findlay"}},{"attributes":{"name":"Nicolas Connelly","age":30,"location":"Grand Junction"}},{"attributes":{"name":"Jose O'Keefe","age":78,"location":"Lake Khalid"}},{"attributes":{"name":"Miss Isabel Rutherford","age":44,"location":"Baileebury"}},{"attributes":{"name":"Janice Mayert","age":63,"location":"Lake Lexie"}},{"attributes":{"name":"Eleazar Rosenbaum","age":56,"location":"Port Betsycester"}},{"attributes":{"name":"Shawna Pacocha","age":38,"location":"East Linnea"}},{"attributes":{"name":"Juana Wisozk","age":76,"location":"Allieshire"}},{"attributes":{"name":"Flavie Russel","age":26,"location":"South Heathfurt"}},{"attributes":{"name":"Mr. Dale Kuvalis","age":39,"location":"Jayneshire"}},{"attributes":{"name":"Louis Stark","age":32,"location":"Kerlukeview"}},{"attributes":{"name":"Sidney McLaughlin","age":21,"location":"West Lori"}},{"attributes":{"name":"Nicolette Parisian","age":28,"location":"Legrosland"}},{"attributes":{"name":"Marshall Prosacco","age":54,"location":"Leschport"}},{"attributes":{"name":"Ernestine Cronin","age":77,"location":"North Ellsworthcester"}},{"attributes":{"name":"Mrs. Marguerite Weimann","age":22,"location":"Emardfurt"}},{"attributes":{"name":"James Nader","age":59,"location":"Juliushaven"}},{"attributes":{"name":"Tanya Davis","age":52,"location":"Mentor"}},{"attributes":{"name":"Dangelo Abernathy MD","age":18,"location":"San Leandro"}},{"attributes":{"name":"Edmond Lehner","age":58,"location":"East Aliza"}},{"attributes":{"name":"Stacy Bernier","age":25,"location":"Springdale"}},{"attributes":{"name":"Houston Stehr","age":42,"location":"Canton"}},{"attributes":{"name":"Miss Catherine Keebler","age":48,"location":"East Elinor"}},{"attributes":{"name":"Isaac Walsh","age":77,"location":"Chattanooga"}},{"attributes":{"name":"Wesley Adams","age":31,"location":"Gerlachside"}},{"attributes":{"name":"Tara Reilly","age":73,"location":"Greenville"}},{"attributes":{"name":"Raina Maggio","age":39,"location":"New Elseland"}},{"attributes":{"name":"Tyrone Grady","age":29,"location":"Pembroke Pines"}},{"attributes":{"name":"Montana Muller","age":66,"location":"Erdmanmouth"}},{"attributes":{"name":"David Treutel","age":59,"location":"Port Ryder"}},{"attributes":{"name":"Jayne Hand","age":72,"location":"West Fidelmouth"}},{"attributes":{"name":"Sherman Rutherford","age":49,"location":"Boynton Beach"}},{"attributes":{"name":"Pablo Feest","age":54,"location":"Lake Erikaburgh"}},{"attributes":{"name":"Rebecca Okuneva","age":60,"location":"Apex"}},{"attributes":{"name":"Constance Shanahan","age":71,"location":"Erie"}},{"attributes":{"name":"Miss Lula Gerlach-Russel","age":60,"location":"East Zelda"}},{"attributes":{"name":"Walton Von","age":20,"location":"Colbyfield"}},{"attributes":{"name":"Rosemary Hilll DDS","age":49,"location":"Jaylenshire"}},{"attributes":{"name":"Marjolaine Powlowski III","age":80,"location":"Kuhictown"}},{"attributes":{"name":"Brett Reinger","age":43,"location":"Oklahoma City"}},{"attributes":{"name":"Alex Rice","age":74,"location":"Fort Anabel"}},{"attributes":{"name":"Dr. Velda Dickens","age":72,"location":"Karolannfield"}},{"attributes":{"name":"Mallory Armstrong","age":76,"location":"Lake Lacy"}},{"attributes":{"name":"Maye Luettgen","age":69,"location":"Kertzmannview"}},{"attributes":{"name":"Haley Rohan","age":67,"location":"Wolfberg"}},{"attributes":{"name":"Mr. Walter Ondricka","age":50,"location":"Eastvale"}},{"attributes":{"name":"Shirley Leuschke","age":55,"location":"Chandler"}},{"attributes":{"name":"Lucia Fadel","age":79,"location":"Downers Grove"}},{"attributes":{"name":"Erica Conn","age":58,"location":"Strongsville"}},{"attributes":{"name":"Dana Kassulke","age":34,"location":"Brekkechester"}},{"attributes":{"name":"Casandra Halvorson","age":30,"location":"South Giovanny"}},{"attributes":{"name":"Andrew Abbott","age":28,"location":"Gilbert"}},{"attributes":{"name":"Tammy Kuhn","age":79,"location":"Edmond"}},{"attributes":{"name":"Leona Mertz IV","age":33,"location":"West Lula"}},{"attributes":{"name":"Tasha Nienow PhD","age":20,"location":"Marvinmouth"}},{"attributes":{"name":"Mr. Alicia D'Amore","age":70,"location":"West Raul"}},{"attributes":{"name":"Laila Hayes","age":53,"location":"Port Douglascester"}},{"attributes":{"name":"Clay Bartoletti","age":69,"location":"South Wayne"}},{"attributes":{"name":"Blanche Toy","age":67,"location":"Lake Melyssaborough"}},{"attributes":{"name":"Maci Zboncak V","age":43,"location":"East Aurelie"}},{"attributes":{"name":"Jaime Mohr","age":54,"location":"Karolannbury"}},{"attributes":{"name":"Virgil Cremin","age":66,"location":"Wehnerton"}},{"attributes":{"name":"Travis Batz","age":18,"location":"South Marques"}},{"attributes":{"name":"Sally Kulas","age":79,"location":"North Bartside"}},{"attributes":{"name":"Marquis Bruen","age":43,"location":"North Giovanniborough"}},{"attributes":{"name":"Pablo Kertzmann","age":32,"location":"Port Janice"}},{"attributes":{"name":"Joey Torp","age":75,"location":"Flower Mound"}},{"attributes":{"name":"Charlotte Stokes","age":32,"location":"Turnerville"}},{"attributes":{"name":"Johanna Champlin","age":74,"location":"East Mauricefield"}},{"attributes":{"name":"Helmer Keeling","age":44,"location":"Armstrongfort"}},{"attributes":{"name":"Kristina Boyle","age":37,"location":"Armaniland"}},{"attributes":{"name":"Reyes Hoeger","age":51,"location":"Elainafurt"}},{"attributes":{"name":"Mr. Woodrow Hane","age":77,"location":"Lake Tressachester"}},{"attributes":{"name":"Jordan Bauch","age":51,"location":"New Buck"}},{"attributes":{"name":"Nikolas Kuphal","age":63,"location":"Waukesha"}},{"attributes":{"name":"Lane White","age":26,"location":"New Jazmyneport"}},{"attributes":{"name":"Mohammed Haag","age":19,"location":"North Kiannamouth"}},{"attributes":{"name":"Antoinette Jones","age":63,"location":"Urbandale"}},{"attributes":{"name":"Reginald Schowalter","age":34,"location":"South Joboro"}},{"attributes":{"name":"Jaydon Williamson","age":50,"location":"Taylor"}},{"attributes":{"name":"Mrs. Sunny Kris","age":50,"location":"Ann Arbor"}},{"attributes":{"name":"Hallie Bode","age":38,"location":"Port Christinafort"}},{"attributes":{"name":"Javier Rogahn","age":20,"location":"Vitaton"}},{"attributes":{"name":"Rudy Gerhold","age":53,"location":"East Carlee"}},{"attributes":{"name":"Letitia Shields-Bechtelar","age":48,"location":"Tryciaville"}},{"attributes":{"name":"Dayton Wilderman","age":49,"location":"Casimircester"}},{"attributes":{"name":"Brock Gibson","age":76,"location":"Antonettaport"}},{"attributes":{"name":"Hilda Jacobson","age":38,"location":"Germantown"}},{"attributes":{"name":"Mrs. Angie Schimmel","age":20,"location":"Jakecester"}},{"attributes":{"name":"Laurence Dickinson","age":59,"location":"New Blancaboro"}},{"attributes":{"name":"Glenn Pouros","age":46,"location":"Fort Lizzieview"}},{"attributes":{"name":"Grant Fisher","age":20,"location":"Chesterfort"}},{"attributes":{"name":"Gwen Durgan","age":53,"location":"Fort Freida"}},{"attributes":{"name":"Mr. Reinhold Haley","age":56,"location":"Robertscester"}},{"attributes":{"name":"Ronald Kassulke","age":37,"location":"Hammond"}},{"attributes":{"name":"Rick Weber","age":54,"location":"Kirlintown"}},{"attributes":{"name":"Deanna Beahan","age":77,"location":"Lake Mohamed"}},{"attributes":{"name":"Lexi Smith","age":43,"location":"Russellfort"}},{"attributes":{"name":"Dr. Santa Lindgren","age":74,"location":"South Jamisonland"}},{"attributes":{"name":"Leona Koss","age":50,"location":"Port Sydneebury"}},{"attributes":{"name":"Pedro Hermann","age":48,"location":"Oxnard"}},{"attributes":{"name":"Bertha Tillman","age":18,"location":"Barrowsfort"}},{"attributes":{"name":"Mr. Gerald Runolfsson","age":26,"location":"Charleycester"}},{"attributes":{"name":"Lora Schultz","age":31,"location":"Boganworth"}},{"attributes":{"name":"Eduardo Schultz Jr.","age":69,"location":"Ashlynnview"}},{"attributes":{"name":"Dr. Leonard Stark","age":58,"location":"Port Elinorboro"}},{"attributes":{"name":"Mabel Rowe","age":20,"location":"North Gwencester"}},{"attributes":{"name":"Earl O'Kon","age":51,"location":"Kozeyworth"}},{"attributes":{"name":"Leon Vandervort","age":26,"location":"East Foreststad"}},{"attributes":{"name":"Alfonzo Bayer","age":41,"location":"Menifee"}},{"attributes":{"name":"Christie Bogan","age":36,"location":"Handhaven"}},{"attributes":{"name":"Malinda Erdman","age":68,"location":"Port Mckennaburgh"}},{"attributes":{"name":"Donnie Spinka","age":35,"location":"Nikitaville"}},{"attributes":{"name":"Clint Emard","age":65,"location":"Port Obie"}},{"attributes":{"name":"Fernando Rempel","age":64,"location":"Bodeburgh"}},{"attributes":{"name":"Mrs. Carmen Stroman","age":19,"location":"Port Hertaboro"}},{"attributes":{"name":"Mr. Paul Dach","age":73,"location":"Maple Grove"}},{"attributes":{"name":"Dean Erdman","age":38,"location":"South Reyna"}},{"attributes":{"name":"Nolan Purdy","age":31,"location":"New Gaston"}},{"attributes":{"name":"Mrs. Marcus Senger","age":57,"location":"South Jed"}},{"attributes":{"name":"Stewart Sipes I","age":68,"location":"East Carmenstad"}},{"attributes":{"name":"Arturo Renner","age":57,"location":"Konopelskiview"}},{"attributes":{"name":"Gerardo Fay","age":70,"location":"Bechtelarboro"}},{"attributes":{"name":"Amaya O'Kon","age":68,"location":"Port Alisha"}},{"attributes":{"name":"Gloria Feeney","age":36,"location":"South Samantaview"}},{"attributes":{"name":"Mrs. Otho Ziemann","age":75,"location":"North Tobyville"}},{"attributes":{"name":"Dr. Darin Raynor","age":31,"location":"Marianeport"}},{"attributes":{"name":"Axel Feil","age":35,"location":"New Caleb"}},{"attributes":{"name":"Maria Bechtelar","age":62,"location":"East Joana"}},{"attributes":{"name":"Gregory Yundt","age":69,"location":"Virginia Beach"}},{"attributes":{"name":"Tyra Hilll","age":28,"location":"Crystalcester"}},{"attributes":{"name":"Alf Frami","age":37,"location":"Duluth"}},{"attributes":{"name":"Rosalyn Hills","age":78,"location":"Port Louisafield"}},{"attributes":{"name":"Garfield Ferry","age":18,"location":"Kennystad"}},{"attributes":{"name":"Grayson Flatley","age":18,"location":"Johnson City"}},{"attributes":{"name":"Nancy Dietrich","age":59,"location":"McCulloughstad"}},{"attributes":{"name":"Wilfred Raynor","age":46,"location":"Lake Bernieceside"}},{"attributes":{"name":"Wilfrid Price","age":43,"location":"Deckowfort"}},{"attributes":{"name":"Ernesto Thiel","age":71,"location":"North Devinworth"}},{"attributes":{"name":"Derrick Zieme","age":23,"location":"West Grace"}},{"attributes":{"name":"Jessica Rutherford-Morissette","age":79,"location":"Kennethtown"}},{"attributes":{"name":"Boris Mills","age":37,"location":"East Charlescester"}},{"attributes":{"name":"Antonio Dibbert","age":37,"location":"Maggiefield"}},{"attributes":{"name":"Mr. Susie Koelpin","age":28,"location":"Hunterbury"}},{"attributes":{"name":"Sarah Koch","age":31,"location":"Fort Leliachester"}},{"attributes":{"name":"Lisa Wintheiser","age":28,"location":"Lake Abdullahmouth"}},{"attributes":{"name":"Marco Nitzsche","age":80,"location":"Burdettefield"}},{"attributes":{"name":"Lee Sawayn","age":36,"location":"New Rebeccaton"}},{"attributes":{"name":"Mr. Rosella Schoen","age":79,"location":"Carrieboro"}},{"attributes":{"name":"Tracy Windler-Feil","age":79,"location":"New Warren"}},{"attributes":{"name":"Ida Grimes","age":39,"location":"East Garfieldville"}},{"attributes":{"name":"Joanna Kovacek","age":51,"location":"Port Erichfield"}},{"attributes":{"name":"General Harvey","age":59,"location":"Michaelamouth"}},{"attributes":{"name":"Lorraine Kuhic","age":46,"location":"Port Torrance"}},{"attributes":{"name":"Martha Goldner","age":78,"location":"Waco"}},{"attributes":{"name":"Eduardo Torp","age":50,"location":"New Michaela"}},{"attributes":{"name":"Gladys Green V","age":22,"location":"Haltom City"}},{"attributes":{"name":"Guadalupe Pagac-Conroy","age":31,"location":"East Orpha"}},{"attributes":{"name":"Fernando Swift Jr.","age":55,"location":"Port Assuntaburgh"}},{"attributes":{"name":"Omar Brekke I","age":54,"location":"Wilson"}},{"attributes":{"name":"Dr. Dell Hoppe","age":60,"location":"MacGyverboro"}},{"attributes":{"name":"Mrs. Guy Spencer","age":42,"location":"Eau Claire"}},{"attributes":{"name":"Lorena Lindgren","age":59,"location":"Port Karsonfurt"}},{"attributes":{"name":"Bulah Brakus-Murazik","age":29,"location":"New Deangeloland"}},{"attributes":{"name":"Laurel Kuhic","age":26,"location":"Feilhaven"}},{"attributes":{"name":"Perry Stanton","age":76,"location":"Annabelleside"}},{"attributes":{"name":"Emile Klocko","age":66,"location":"Warwick"}},{"attributes":{"name":"Kent Pollich","age":53,"location":"Lake Tessie"}},{"attributes":{"name":"Tyrell Shanahan","age":39,"location":"Nyasiacester"}},{"attributes":{"name":"Duane Kuhn","age":22,"location":"East Ezekiel"}},{"attributes":{"name":"Wendy Osinski","age":66,"location":"Port Ali"}},{"attributes":{"name":"Dina Strosin-Hahn","age":80,"location":"Fort Zachery"}},{"attributes":{"name":"Miss Ted Torp","age":78,"location":"Lakewood"}},{"attributes":{"name":"Keon Feil","age":44,"location":"Davinstead"}},{"attributes":{"name":"Brain Grant","age":74,"location":"New Reillyside"}},{"attributes":{"name":"Weldon Bogisich DDS","age":47,"location":"Harrismouth"}},{"attributes":{"name":"Kaela Schroeder V","age":61,"location":"Port Christyshire"}},{"attributes":{"name":"Abraham Satterfield V","age":45,"location":"Lake Alf"}},{"attributes":{"name":"Willie Hayes","age":48,"location":"Gutkowskiland"}},{"attributes":{"name":"Rose Fahey MD","age":30,"location":"North Moriahmouth"}},{"attributes":{"name":"Janie Jacobs","age":44,"location":"Taliastad"}},{"attributes":{"name":"Andy Dare","age":44,"location":"East Sterling"}},{"attributes":{"name":"Mike Heathcote DDS","age":55,"location":"West Layla"}},{"attributes":{"name":"Everett Mann-Stehr","age":67,"location":"Purdyburgh"}},{"attributes":{"name":"Miranda Collier","age":18,"location":"Zakarycester"}},{"attributes":{"name":"Glen Harris","age":39,"location":"Nikolausworth"}},{"attributes":{"name":"Dr. Theodore Kiehn","age":21,"location":"Aprilview"}},{"attributes":{"name":"Margarete Moen PhD","age":33,"location":"Mohrbury"}},{"attributes":{"name":"Virginie Price","age":38,"location":"Pittsburg"}},{"attributes":{"name":"Dr. Corey Hartmann","age":75,"location":"Port Maximo"}},{"attributes":{"name":"Pete Kautzer","age":61,"location":"Edfield"}},{"attributes":{"name":"Erika Littel","age":40,"location":"Pasqualebury"}},{"attributes":{"name":"Rene Harvey","age":70,"location":"Lindton"}},{"attributes":{"name":"Claudia Stanton","age":44,"location":"Lake Maeve"}},{"attributes":{"name":"Joyce Schultz-Boehm DVM","age":29,"location":"South Darien"}},{"attributes":{"name":"Alex Mayer","age":51,"location":"North Hollis"}},{"attributes":{"name":"Dr. Laney Berge","age":77,"location":"Keeblerfield"}},{"attributes":{"name":"Ole Fay","age":71,"location":"Ritaside"}},{"attributes":{"name":"Mariane Little","age":29,"location":"Klockoborough"}},{"attributes":{"name":"Tina Rempel","age":41,"location":"New Mortimerport"}},{"attributes":{"name":"Dr. Allan Brekke","age":80,"location":"Jarredfield"}},{"attributes":{"name":"Amanda Von","age":54,"location":"New Jerrell"}},{"attributes":{"name":"Kennedi VonRueden","age":45,"location":"South Thaliaburgh"}},{"attributes":{"name":"Trinity Frami-West","age":62,"location":"Watsoncester"}},{"attributes":{"name":"Estevan Kuhic","age":36,"location":"Bethboro"}},{"attributes":{"name":"Bert Kessler","age":31,"location":"Santa Cruz"}},{"attributes":{"name":"Dianne Auer","age":80,"location":"Collierview"}},{"attributes":{"name":"Savannah Watsica","age":50,"location":"North Rebeccafurt"}},{"attributes":{"name":"Mr. Marlin Klocko","age":39,"location":"Alameda"}},{"attributes":{"name":"Jacquelyn Konopelski","age":71,"location":"North Ceasarview"}},{"attributes":{"name":"Iris Reinger","age":56,"location":"Borerstead"}},{"attributes":{"name":"Hillary Langosh","age":61,"location":"Wilhelmton"}},{"attributes":{"name":"Moises Reichel","age":47,"location":"South Wiley"}},{"attributes":{"name":"Mrs. Roderick Rosenbaum","age":38,"location":"Port Bart"}},{"attributes":{"name":"Victoria Schmeler","age":55,"location":"East Josianeworth"}},{"attributes":{"name":"Ms. Bethany Harvey","age":40,"location":"North Clifford"}},{"attributes":{"name":"Adam Beatty","age":27,"location":"New Chaya"}},{"attributes":{"name":"Vicki Windler","age":62,"location":"Jonesshire"}},{"attributes":{"name":"Dale Kiehn III","age":65,"location":"Bernierstad"}},{"attributes":{"name":"Katarina Padberg-Gulgowski","age":75,"location":"East Hartford"}},{"attributes":{"name":"Rodolfo Kertzmann Sr.","age":71,"location":"Strackeside"}},{"attributes":{"name":"Chadd Krajcik","age":28,"location":"Urbandale"}},{"attributes":{"name":"Toby Ritchie I","age":27,"location":"New Carleyworth"}},{"attributes":{"name":"Greta Yost","age":19,"location":"Lake Kaelyn"}},{"attributes":{"name":"Simon Schmitt MD","age":28,"location":"Anchorage"}},{"attributes":{"name":"Angela Halvorson","age":40,"location":"Flagstaff"}},{"attributes":{"name":"Warren Mayert","age":67,"location":"Rippinmouth"}},{"attributes":{"name":"Anibal Kshlerin","age":35,"location":"Vivianeboro"}},{"attributes":{"name":"Bell Mills","age":42,"location":"Nashfurt"}},{"attributes":{"name":"Craig Braun","age":74,"location":"Larsonmouth"}},{"attributes":{"name":"Alejandro Welch I","age":18,"location":"West Nicolas"}},{"attributes":{"name":"Tom Kerluke","age":36,"location":"Corvallis"}},{"attributes":{"name":"Miss Hiram Pouros","age":77,"location":"Ankundingbury"}},{"attributes":{"name":"Elliot Lindgren","age":51,"location":"Council Bluffs"}},{"attributes":{"name":"Clinton Dach III","age":22,"location":"New Bellfield"}},{"attributes":{"name":"Candice McCullough-Quitzon","age":70,"location":"Tacoma"}},{"attributes":{"name":"Denis Dibbert","age":50,"location":"Malcolmville"}},{"attributes":{"name":"Jeremiah Farrell","age":50,"location":"Toniburgh"}},{"attributes":{"name":"Jaime Gerhold","age":62,"location":"Denver"}},{"attributes":{"name":"Zella Cole","age":44,"location":"Anikaworth"}},{"attributes":{"name":"Dr. Jena Crooks","age":74,"location":"Fort Estevanville"}},{"attributes":{"name":"Brionna Hane","age":56,"location":"North Mitchell"}},{"attributes":{"name":"Sophie Bauch","age":76,"location":"North Onie"}},{"attributes":{"name":"Leticia Hand","age":37,"location":"Lourdesfield"}},{"attributes":{"name":"Rosamond Conn","age":63,"location":"Port Aliciaside"}},{"attributes":{"name":"Sally Zulauf","age":37,"location":"Orlando"}},{"attributes":{"name":"Buster Conn","age":63,"location":"Shanahanview"}},{"attributes":{"name":"Dr. Jimmie Parker IV","age":39,"location":"North Cali"}},{"attributes":{"name":"Tyrell Hane","age":51,"location":"Oralview"}},{"attributes":{"name":"Baby Bednar","age":44,"location":"North Adriel"}},{"attributes":{"name":"Glenn Runolfsdottir","age":78,"location":"Maceytown"}},{"attributes":{"name":"Jacinthe Effertz","age":80,"location":"Domenickborough"}},{"attributes":{"name":"Robin Bergstrom","age":71,"location":"Methuen Town"}},{"attributes":{"name":"Alene Schimmel","age":32,"location":"Fort Frankland"}},{"attributes":{"name":"Nathan Pfannerstill","age":41,"location":"New Kristinaborough"}},{"attributes":{"name":"Ward Homenick","age":77,"location":"Morgan Hill"}},{"attributes":{"name":"Yvette Davis","age":57,"location":"Purdyport"}},{"attributes":{"name":"Frank Hudson","age":27,"location":"East Jenniecester"}},{"attributes":{"name":"Luther Yundt","age":39,"location":"Mortonmouth"}},{"attributes":{"name":"Colin Dickinson Jr.","age":68,"location":"New Jordan"}},{"attributes":{"name":"Phyllis Lang","age":71,"location":"Fort Sonyaberg"}},{"attributes":{"name":"Domenic Bartell","age":23,"location":"Hollywood"}},{"attributes":{"name":"Jeremiah Wilderman","age":24,"location":"Carolynview"}},{"attributes":{"name":"Ryan Quigley IV","age":73,"location":"East Hyman"}},{"attributes":{"name":"Micheal Abbott","age":24,"location":"Town 'n' Country"}},{"attributes":{"name":"Layla Reilly Jr.","age":59,"location":"Parkerview"}},{"attributes":{"name":"Armando Schamberger","age":53,"location":"North Chanelcester"}},{"attributes":{"name":"Michele Hoeger","age":25,"location":"Brakusberg"}},{"attributes":{"name":"Sonya Herman","age":32,"location":"Ricehaven"}},{"attributes":{"name":"Karla Pfannerstill","age":45,"location":"Fort Magaliland"}},{"attributes":{"name":"Jamie Effertz","age":66,"location":"Columbia"}},{"attributes":{"name":"Mrs. Jean Denesik","age":73,"location":"New Oniemouth"}},{"attributes":{"name":"Brianne Kassulke","age":30,"location":"Donatocester"}},{"attributes":{"name":"Kali Zieme","age":72,"location":"Rogahnhaven"}},{"attributes":{"name":"Johnnie Bins","age":70,"location":"Fort Heathercester"}},{"attributes":{"name":"Lucinda Schinner","age":73,"location":"West Lafayette"}},{"attributes":{"name":"Doreen Miller","age":70,"location":"Homenickfield"}},{"attributes":{"name":"Jenna VonRueden","age":65,"location":"Port Flaviehaven"}},{"attributes":{"name":"Lauretta Schaefer","age":61,"location":"East Honolulu"}},{"attributes":{"name":"Samuel Lind-Boyle","age":70,"location":"Hicksville"}},{"attributes":{"name":"Hermann Smitham","age":43,"location":"Dimitriland"}},{"attributes":{"name":"Ms. Brennan Spencer","age":37,"location":"Annamariestad"}},{"attributes":{"name":"Richard Quitzon","age":72,"location":"South Nickville"}},{"attributes":{"name":"Cordell Breitenberg","age":40,"location":"Grahamborough"}},{"attributes":{"name":"Ashlee Crooks III","age":74,"location":"Bartolettistad"}},{"attributes":{"name":"Dexter Pouros","age":76,"location":"Nikochester"}},{"attributes":{"name":"Eric Dooley","age":36,"location":"Fort Kara"}},{"attributes":{"name":"Hannah Koelpin","age":66,"location":"Fort Nettiestad"}},{"attributes":{"name":"Boyd Johnson","age":20,"location":"Potomac"}},{"attributes":{"name":"Dr. Rosalia Schuster","age":60,"location":"West Kristinton"}},{"attributes":{"name":"Mr. Pat Frami","age":29,"location":"St. Louis"}},{"attributes":{"name":"Mrs. Martha Mayer","age":51,"location":"Runtetown"}},{"attributes":{"name":"Benjamin Hackett","age":41,"location":"Lake Orlo"}},{"attributes":{"name":"Rose Harvey","age":47,"location":"North Mina"}},{"attributes":{"name":"Tess Block","age":69,"location":"Zulaufburgh"}},{"attributes":{"name":"Agnes Hermann II","age":20,"location":"East Serenaside"}},{"attributes":{"name":"Alfonso Blick","age":68,"location":"Torreyland"}},{"attributes":{"name":"Raquel Stroman","age":23,"location":"East Kristofferton"}},{"attributes":{"name":"Miss Ernie Graham","age":43,"location":"West Wendell"}},{"attributes":{"name":"Henry Mitchell","age":67,"location":"Quitzontown"}},{"attributes":{"name":"Howell Farrell Sr.","age":45,"location":"New Savanahboro"}},{"attributes":{"name":"Marlen Kling II","age":34,"location":"Lake Marcelstead"}},{"attributes":{"name":"Devon Hudson","age":71,"location":"South Giovanihaven"}},{"attributes":{"name":"Ms. Gerald Nikolaus II","age":66,"location":"Hicklefurt"}},{"attributes":{"name":"Grant Hackett","age":34,"location":"Edmondboro"}},{"attributes":{"name":"Mrs. Emma Leuschke III","age":76,"location":"Lake Aiden"}},{"attributes":{"name":"Wayne Dooley","age":50,"location":"Port Katarina"}},{"attributes":{"name":"Pamela Gerlach","age":56,"location":"Padbergburgh"}},{"attributes":{"name":"Oleta Lind","age":77,"location":"Beauland"}},{"attributes":{"name":"Mr. Bobby Metz-Mayert","age":61,"location":"South Joelworth"}},{"attributes":{"name":"Arlene Kessler Jr.","age":76,"location":"Port Maximo"}},{"attributes":{"name":"Carmen Berge","age":18,"location":"Port Mariahmouth"}},{"attributes":{"name":"Torrey Hoppe","age":27,"location":"West Vince"}},{"attributes":{"name":"Shari Borer","age":20,"location":"Schoenton"}},{"attributes":{"name":"Freddie Koch","age":67,"location":"Mobile"}},{"attributes":{"name":"Antonio Hettinger","age":44,"location":"Handmouth"}},{"attributes":{"name":"Ari Schaden","age":68,"location":"North Caterina"}},{"attributes":{"name":"Dr. Nathan Wolff","age":51,"location":"West Steveview"}},{"attributes":{"name":"Natasha Cole","age":38,"location":"West Laron"}},{"attributes":{"name":"Josefina Cole","age":42,"location":"Klockostad"}},{"attributes":{"name":"Elisa Kihn","age":42,"location":"North Arlieworth"}},{"attributes":{"name":"Rodrigo Reilly","age":60,"location":"Mabelland"}},{"attributes":{"name":"Alena Goodwin","age":40,"location":"Port Darrenbury"}},{"attributes":{"name":"Darryl Schumm","age":80,"location":"Fort Celine"}},{"attributes":{"name":"Chanelle Jacobi","age":27,"location":"Lake Royalshire"}},{"attributes":{"name":"Graciela Herzog","age":67,"location":"Hoppeworth"}},{"attributes":{"name":"Darla Mann II","age":80,"location":"St. George"}},{"attributes":{"name":"Sharon Satterfield","age":38,"location":"Eden Prairie"}},{"attributes":{"name":"Pablo O'Reilly","age":37,"location":"Davis"}},{"attributes":{"name":"Sylvia Sporer","age":39,"location":"Paytonfort"}},{"attributes":{"name":"Christie Von","age":25,"location":"Tremblayview"}},{"attributes":{"name":"Camille Berge","age":41,"location":"New Deon"}},{"attributes":{"name":"Travis Batz","age":25,"location":"Travisville"}},{"attributes":{"name":"Mrs. Monique Durgan-Effertz","age":20,"location":"Fort Reinhold"}},{"attributes":{"name":"Mr. Jesse Kilback","age":70,"location":"Lake Denis"}},{"attributes":{"name":"Nichole Weimann V","age":68,"location":"Watsicaside"}},{"attributes":{"name":"Dominic Walter IV","age":53,"location":"North Providenciburgh"}},{"attributes":{"name":"Gerhard Dicki","age":48,"location":"Daughertybury"}},{"attributes":{"name":"Melody Klocko","age":56,"location":"East Kobe"}},{"attributes":{"name":"Bennie Bogisich","age":79,"location":"Henriland"}},{"attributes":{"name":"Franklin Blick","age":42,"location":"Knoxville"}},{"attributes":{"name":"Darren Baumbach","age":69,"location":"Caroleburgh"}},{"attributes":{"name":"Elena Stanton","age":51,"location":"Skylaville"}},{"attributes":{"name":"Cedric Ziemann","age":27,"location":"West Emmaleeport"}},{"attributes":{"name":"Flora Pfeffer","age":20,"location":"Port Elvisview"}},{"attributes":{"name":"Sidney Feest MD","age":19,"location":"East Kaelynshire"}},{"attributes":{"name":"Aric Kozey","age":48,"location":"Clearwater"}},{"attributes":{"name":"Lois Powlowski","age":43,"location":"Port Mateo"}},{"attributes":{"name":"Dr. Eddie Keebler","age":75,"location":"Boyertown"}},{"attributes":{"name":"Gisselle Kirlin","age":41,"location":"Fort Roryport"}},{"attributes":{"name":"Celia Renner","age":58,"location":"Collierbury"}},{"attributes":{"name":"Jennings Von","age":63,"location":"West Marcelinocester"}},{"attributes":{"name":"Deanna Williamson","age":56,"location":"Huntersville"}},{"attributes":{"name":"Israel Runolfsdottir","age":51,"location":"South Nettieborough"}},{"attributes":{"name":"Terrance Streich PhD","age":22,"location":"North Julie"}},{"attributes":{"name":"Otis Cormier","age":24,"location":"Robelberg"}},{"attributes":{"name":"Dana Corkery I","age":47,"location":"New Carolina"}},{"attributes":{"name":"Ollie Wintheiser","age":25,"location":"South Justenmouth"}},{"attributes":{"name":"Alba Bogan","age":21,"location":"New Heloisetown"}},{"attributes":{"name":"Hugo O'Keefe V","age":19,"location":"Mertzchester"}},{"attributes":{"name":"Olga Von","age":27,"location":"Ivaview"}},{"attributes":{"name":"Lempi Anderson","age":57,"location":"Denton"}},{"attributes":{"name":"Laurine Grady","age":28,"location":"San Marcos"}},{"attributes":{"name":"Greg Konopelski Sr.","age":62,"location":"Cuyahoga Falls"}},{"attributes":{"name":"Earnest Rice","age":64,"location":"Mosciskiboro"}},{"attributes":{"name":"Kyra Rohan","age":46,"location":"Lubowitzfield"}},{"attributes":{"name":"Nadia Hauck","age":31,"location":"Estrellaland"}},{"attributes":{"name":"Amina Stokes","age":53,"location":"New Kaciefort"}},{"attributes":{"name":"Mr. Joanny Crona","age":38,"location":"Lake Marjolaineburgh"}},{"attributes":{"name":"Bradford Bashirian","age":39,"location":"Merleborough"}},{"attributes":{"name":"Francis Abbott MD","age":76,"location":"Auerfurt"}},{"attributes":{"name":"Dominic Lowe","age":41,"location":"New Nashfort"}},{"attributes":{"name":"Geraldine Kessler IV","age":66,"location":"Antelope"}},{"attributes":{"name":"Mrs. Jennifer Erdman","age":47,"location":"Windlerfort"}},{"attributes":{"name":"Hector Gerhold DVM","age":65,"location":"New Lula"}},{"attributes":{"name":"Cora Roberts","age":40,"location":"Farrellmouth"}},{"attributes":{"name":"Viva Stracke","age":62,"location":"South Arno"}},{"attributes":{"name":"Lydia Koch","age":18,"location":"Salmafort"}},{"attributes":{"name":"Dr. Johnathan Morar","age":54,"location":"Buffalo"}},{"attributes":{"name":"Marlon Wyman","age":48,"location":"San Francisco"}},{"attributes":{"name":"Leroy Schinner","age":40,"location":"Lake Sherwood"}},{"attributes":{"name":"Mrs. Avery Reichel","age":27,"location":"Petaluma"}},{"attributes":{"name":"Gerald Sawayn DDS","age":47,"location":"North Aida"}},{"attributes":{"name":"Malachi Bartoletti","age":75,"location":"New Erynton"}},{"attributes":{"name":"Erika Keeling","age":79,"location":"Pacochaport"}},{"attributes":{"name":"Gustavo Reilly","age":30,"location":"New Loren"}},{"attributes":{"name":"Claire Konopelski","age":36,"location":"Alysonville"}},{"attributes":{"name":"Rufus Kessler","age":56,"location":"Severn"}},{"attributes":{"name":"Austin Cole","age":27,"location":"Hazelworth"}},{"attributes":{"name":"Wade Bins","age":41,"location":"Alameda"}},{"attributes":{"name":"Mr. Kurt Ernser","age":43,"location":"South Hettieland"}},{"attributes":{"name":"Jennifer Carter","age":69,"location":"Fort Jaylencester"}},{"attributes":{"name":"Guadalupe Brekke","age":37,"location":"East Emmanuelshire"}},{"attributes":{"name":"Kirk Thiel","age":68,"location":"West Jaydenville"}},{"attributes":{"name":"Mozelle Herzog Jr.","age":25,"location":"Davenport"}},{"attributes":{"name":"Natasha McLaughlin","age":48,"location":"Lake Agnesworth"}},{"attributes":{"name":"Mrs. Derek VonRueden DDS","age":67,"location":"Lake Sienna"}},{"attributes":{"name":"Reymundo Wiegand","age":19,"location":"Tiarahaven"}},{"attributes":{"name":"Kurtis Hettinger","age":34,"location":"Riverview"}},{"attributes":{"name":"Daryl Effertz","age":40,"location":"New Howardland"}},{"attributes":{"name":"Alfredo Hessel","age":51,"location":"Port Arthur"}},{"attributes":{"name":"Ricardo Gulgowski","age":54,"location":"South Delta"}},{"attributes":{"name":"Jane Stanton III","age":79,"location":"East Princessfield"}},{"attributes":{"name":"Henry Ortiz","age":42,"location":"Greysonside"}},{"attributes":{"name":"Wallace Sawayn","age":46,"location":"Monterey Park"}},{"attributes":{"name":"Lorene Jones","age":80,"location":"Eldaborough"}},{"attributes":{"name":"Traci Thompson","age":28,"location":"Isabelleview"}},{"attributes":{"name":"Dr. Clyde Swift Jr.","age":36,"location":"Port Kaelamouth"}},{"attributes":{"name":"Cora Skiles","age":57,"location":"Daynatown"}},{"attributes":{"name":"Miss Sheryl Feeney I","age":51,"location":"Brookville"}},{"attributes":{"name":"Bobby Pfannerstill","age":21,"location":"New Kelvinboro"}},{"attributes":{"name":"Patrick Reichert MD","age":80,"location":"Lexington-Fayette"}},{"attributes":{"name":"Emmanuelle Franey","age":34,"location":"Broomfield"}},{"attributes":{"name":"Dr. Eloisa McGlynn","age":68,"location":"Bartolettiport"}},{"attributes":{"name":"Alexandra Torphy","age":34,"location":"Elizabethshire"}},{"attributes":{"name":"Blair Howell","age":58,"location":"Lake Marjoriefurt"}},{"attributes":{"name":"Miss Kerry Hilll","age":60,"location":"East Immanuelview"}},{"attributes":{"name":"Donna Stracke","age":67,"location":"Montebello"}},{"attributes":{"name":"Percy Watsica","age":78,"location":"Adolfoview"}},{"attributes":{"name":"Mable Mills","age":43,"location":"Elmoboro"}},{"attributes":{"name":"Ana Blanda-Bechtelar","age":79,"location":"East Alexandriaview"}},{"attributes":{"name":"Bert Mueller","age":26,"location":"Kreigerton"}},{"attributes":{"name":"Alice Cummerata","age":46,"location":"Fort Ernestinaworth"}},{"attributes":{"name":"Antone Lynch","age":58,"location":"Alessandrafield"}},{"attributes":{"name":"Stella Goyette","age":73,"location":"Trantowshire"}},{"attributes":{"name":"Alberto Keebler","age":53,"location":"Daly City"}},{"attributes":{"name":"Duncan Wintheiser","age":71,"location":"North Adolf"}},{"attributes":{"name":"Reagan Homenick-Grimes","age":75,"location":"Carson City"}},{"attributes":{"name":"Anne Leannon DVM","age":52,"location":"Starkberg"}},{"attributes":{"name":"Doyle Bins","age":39,"location":"Hicksville"}},{"attributes":{"name":"Fannie Parisian","age":31,"location":"Port Jeanie"}},{"attributes":{"name":"Marjorie Kirlin","age":62,"location":"Hellencester"}},{"attributes":{"name":"Essie Tillman","age":76,"location":"Bowling Green"}},{"attributes":{"name":"Clinton Effertz","age":56,"location":"Lake Maidaboro"}},{"attributes":{"name":"Jodi King","age":20,"location":"Erickaberg"}},{"attributes":{"name":"Korbin Lehner","age":52,"location":"Clovis"}},{"attributes":{"name":"Rosetta Shanahan","age":34,"location":"Ornstad"}},{"attributes":{"name":"Alexis Windler","age":61,"location":"Schustershire"}},{"attributes":{"name":"Vanessa Stehr","age":20,"location":"Abbottton"}},{"attributes":{"name":"Clara Lebsack","age":50,"location":"Angelinaview"}},{"attributes":{"name":"Boyd Funk","age":28,"location":"Brodystad"}},{"attributes":{"name":"Cassandra Gorczany-Watsica","age":18,"location":"Kalamazoo"}},{"attributes":{"name":"Barbara Renner","age":18,"location":"Maximilliaton"}},{"attributes":{"name":"Laura Roberts","age":50,"location":"Bertrandfort"}},{"attributes":{"name":"Joel Doyle","age":72,"location":"Lake Houstonchester"}},{"attributes":{"name":"Shelia Murray","age":26,"location":"Franeckistad"}},{"attributes":{"name":"Aida Hauck Sr.","age":79,"location":"Robelberg"}},{"attributes":{"name":"Corine Barton DDS","age":31,"location":"New Sanford"}},{"attributes":{"name":"Katelin Halvorson Jr.","age":65,"location":"Williamsonhaven"}},{"attributes":{"name":"Dr. Roel Runte MD","age":79,"location":"East June"}},{"attributes":{"name":"Georgia Hansen","age":32,"location":"South Ressie"}},{"attributes":{"name":"Dr. Odell Williamson","age":35,"location":"East Narciso"}},{"attributes":{"name":"Sylvia Weissnat","age":46,"location":"South Josietown"}},{"attributes":{"name":"Dagmar Reichel","age":60,"location":"North Orin"}},{"attributes":{"name":"Vern Franey","age":67,"location":"West Heber"}},{"attributes":{"name":"Pierce Carroll","age":78,"location":"Brakusfurt"}},{"attributes":{"name":"Mr. Lucinda Russel","age":62,"location":"Vonburgh"}},{"attributes":{"name":"Rodolfo Klein","age":22,"location":"Chesapeake"}},{"attributes":{"name":"Forrest Herman DDS","age":75,"location":"Kerlukeborough"}},{"attributes":{"name":"Bobby Haag","age":77,"location":"South Trevion"}},{"attributes":{"name":"Luisa Russel","age":44,"location":"Arvada"}},{"attributes":{"name":"Emory Streich Jr.","age":25,"location":"Camarillo"}},{"attributes":{"name":"Ron Wisoky","age":25,"location":"Novi"}},{"attributes":{"name":"Meggie Balistreri","age":34,"location":"Murphyfort"}},{"attributes":{"name":"Jeff Erdman","age":18,"location":"Port Emmanuelside"}},{"attributes":{"name":"Wilson Kub","age":32,"location":"North Declan"}},{"attributes":{"name":"Ms. Adonis Streich","age":68,"location":"Lake Jabari"}},{"attributes":{"name":"Lee Goldner","age":69,"location":"Treverfort"}},{"attributes":{"name":"Serena Kohler","age":75,"location":"South Mozelltown"}},{"attributes":{"name":"Dr. Amaya Erdman","age":61,"location":"East Josephine"}},{"attributes":{"name":"Dr. Stuart Toy","age":46,"location":"Stiedemannmouth"}},{"attributes":{"name":"Carol Sporer","age":48,"location":"Joanatown"}},{"attributes":{"name":"Valerie Pagac","age":75,"location":"New Clay"}},{"attributes":{"name":"Ms. Christina Macejkovic-Blanda","age":77,"location":"Lorenborough"}},{"attributes":{"name":"Neal Jacobs","age":75,"location":"Bergeboro"}},{"attributes":{"name":"Madeline Bayer","age":31,"location":"Lake Brock"}},{"attributes":{"name":"Danny Kohler","age":60,"location":"Bayonne"}},{"attributes":{"name":"Roger Parisian","age":35,"location":"Fort Christa"}},{"attributes":{"name":"Mr. Ismael Lind","age":49,"location":"Bedford"}},{"attributes":{"name":"Charlotte Cassin II","age":36,"location":"Bashirianberg"}},{"attributes":{"name":"June Bednar","age":39,"location":"South Mellieport"}},{"attributes":{"name":"Raul Smitham","age":33,"location":"Schaeferworth"}},{"attributes":{"name":"Niko Kuhn-Bartell","age":54,"location":"Weissnatfield"}},{"attributes":{"name":"Vicente Zieme","age":36,"location":"New Greysonstead"}},{"attributes":{"name":"Marcia Lynch","age":19,"location":"Carissafield"}},{"attributes":{"name":"Dr. Roberto Harber Sr.","age":45,"location":"Lake Cristianboro"}},{"attributes":{"name":"Dora O'Kon PhD","age":72,"location":"Fort Elenamouth"}},{"attributes":{"name":"Dr. Lynne Fadel","age":58,"location":"East Larueton"}},{"attributes":{"name":"Dexter Gutkowski","age":73,"location":"Lake Gunnercester"}},{"attributes":{"name":"Lois Schultz","age":65,"location":"Ankundingview"}},{"attributes":{"name":"Ginger Paucek","age":59,"location":"Balistreriborough"}},{"attributes":{"name":"Santos Abshire","age":62,"location":"East Micaela"}},{"attributes":{"name":"Janis Dach","age":54,"location":"Lawton"}},{"attributes":{"name":"Melissa Johns","age":65,"location":"O'Keefeville"}},{"attributes":{"name":"Lynda Beahan","age":33,"location":"Nikolauston"}},{"attributes":{"name":"Etha Zieme","age":36,"location":"Pfefferville"}},{"attributes":{"name":"Craig Grady","age":31,"location":"O'Reillyfort"}},{"attributes":{"name":"Manuel Waters","age":39,"location":"East Wilhelmfort"}},{"attributes":{"name":"Kristy Donnelly","age":23,"location":"Johns Creek"}},{"attributes":{"name":"Jamar Bednar Sr.","age":66,"location":"Calistafield"}},{"attributes":{"name":"Desiree Kertzmann","age":47,"location":"West Violetteville"}},{"attributes":{"name":"Jackie Cummings","age":30,"location":"Lake Forest"}},{"attributes":{"name":"Owen Ullrich","age":52,"location":"Lake Lyla"}},{"attributes":{"name":"Rosie Senger","age":61,"location":"Fort Sherwoodboro"}},{"attributes":{"name":"Ursula Lindgren","age":20,"location":"Morissetteshire"}},{"attributes":{"name":"Herminio Bauch","age":24,"location":"New Sammyview"}},{"attributes":{"name":"Libby Altenwerth","age":42,"location":"Berniestad"}},{"attributes":{"name":"Lena Fisher","age":39,"location":"Fort Alyson"}},{"attributes":{"name":"Tanner Spencer","age":55,"location":"Johnpaulton"}},{"attributes":{"name":"Ken Bogisich-Romaguera","age":31,"location":"Zemlakside"}},{"attributes":{"name":"Tonya Morar","age":78,"location":"West Elvishaven"}},{"attributes":{"name":"Patricia Bergstrom","age":23,"location":"East Cornelius"}},{"attributes":{"name":"Kelvin Heathcote","age":30,"location":"Schmittville"}},{"attributes":{"name":"Johnnie Watsica","age":35,"location":"Fort Chasefield"}},{"attributes":{"name":"Kathleen Lockman","age":40,"location":"Hillsshire"}},{"attributes":{"name":"Ella Towne","age":69,"location":"Haleychester"}},{"attributes":{"name":"Adrian Batz","age":26,"location":"Cedrickland"}},{"attributes":{"name":"Dr. Conrad Braun","age":25,"location":"Hopeworth"}},{"attributes":{"name":"Theo Leffler III","age":32,"location":"Lake Retta"}},{"attributes":{"name":"Danielle Kessler","age":73,"location":"Rock Hill"}},{"attributes":{"name":"Myrtle King","age":73,"location":"Port Thelma"}},{"attributes":{"name":"Gracie Feeney","age":36,"location":"Cornellland"}},{"attributes":{"name":"Mrs. Kelsi Reilly","age":37,"location":"Jarretshire"}},{"attributes":{"name":"Fanny Smitham","age":26,"location":"Berwyn"}},{"attributes":{"name":"Johnnie Sanford-Fisher","age":25,"location":"Dublin"}},{"attributes":{"name":"Lawson Morissette","age":65,"location":"Berthaville"}},{"attributes":{"name":"Ignacio Becker","age":41,"location":"South Daytonview"}},{"attributes":{"name":"Nancy Beahan","age":52,"location":"Jackcester"}},{"attributes":{"name":"Kathleen Steuber","age":43,"location":"San Jacinto"}},{"attributes":{"name":"Vernice Wehner","age":56,"location":"Brooklyn Park"}},{"attributes":{"name":"Fiona Ferry","age":71,"location":"Wilkinsonstad"}},{"attributes":{"name":"Tasha Carroll","age":19,"location":"Mrazmouth"}},{"attributes":{"name":"Victor Baumbach","age":62,"location":"Lake Deontaestead"}},{"attributes":{"name":"Maryann Hermann","age":46,"location":"Fort Cali"}},{"attributes":{"name":"Miss Eugene Mann","age":53,"location":"East Tarynboro"}},{"attributes":{"name":"Sally Casper-Orn IV","age":74,"location":"Fort Imani"}},{"attributes":{"name":"Glen Casper III","age":79,"location":"Morissetteborough"}},{"attributes":{"name":"Dr. Demetrius Glover","age":45,"location":"Port Earnestville"}},{"attributes":{"name":"Dr. Trace Daniel","age":45,"location":"Lelaworth"}},{"attributes":{"name":"Raymundo Lueilwitz","age":72,"location":"Gusikowskiworth"}},{"attributes":{"name":"Barry Lowe","age":48,"location":"McGlynnstad"}},{"attributes":{"name":"Jayson Ankunding","age":55,"location":"Beaumont"}},{"attributes":{"name":"Abraham Ullrich I","age":78,"location":"Fayetteville"}},{"attributes":{"name":"Bernice Bashirian","age":25,"location":"Batzborough"}},{"attributes":{"name":"Rosario Fritsch Jr.","age":28,"location":"Lake Gertrudestead"}},{"attributes":{"name":"Kirsten Herzog","age":46,"location":"Bruenfield"}},{"attributes":{"name":"Flora Zieme","age":56,"location":"East Luella"}},{"attributes":{"name":"Kelly Rath","age":53,"location":"Reynoldsstead"}},{"attributes":{"name":"Pablo Maggio","age":31,"location":"Estellestad"}},{"attributes":{"name":"Ian Hilll-MacGyver","age":69,"location":"Lodi"}},{"attributes":{"name":"Eugene Gottlieb","age":60,"location":"New Janiechester"}},{"attributes":{"name":"Victoria Schimmel","age":47,"location":"East Lorifield"}},{"attributes":{"name":"Roosevelt Rosenbaum","age":63,"location":"West Derrick"}},{"attributes":{"name":"Jayda Kuhn","age":56,"location":"Rogahnbury"}},{"attributes":{"name":"Bella Walsh","age":33,"location":"Madison"}},{"attributes":{"name":"Nathaniel Wuckert","age":23,"location":"North Maxime"}},{"attributes":{"name":"Mustafa McLaughlin","age":39,"location":"East Pat"}},{"attributes":{"name":"Clare Bartell-Tremblay","age":54,"location":"Cambridge"}},{"attributes":{"name":"Sheridan Champlin","age":25,"location":"Cartwrightchester"}},{"attributes":{"name":"Dr. Kennedy Weber-Reinger","age":54,"location":"Buffalo"}},{"attributes":{"name":"Janiya Corkery","age":51,"location":"North Westley"}},{"attributes":{"name":"Noah Powlowski","age":30,"location":"Port Chad"}},{"attributes":{"name":"Ms. Kelsi Medhurst","age":53,"location":"Port Ned"}},{"attributes":{"name":"Jacquelyn Kutch","age":20,"location":"Rahulfort"}},{"attributes":{"name":"Annabel Steuber","age":61,"location":"Newton"}},{"attributes":{"name":"Emmett Donnelly","age":53,"location":"Huntington Park"}},{"attributes":{"name":"Lamar Spencer","age":75,"location":"South Jacquelynstead"}},{"attributes":{"name":"Mr. Lawrence Senger","age":48,"location":"Port Sid"}},{"attributes":{"name":"Evelyn Kunze","age":41,"location":"Adolfborough"}},{"attributes":{"name":"Nicolas Prohaska","age":20,"location":"Teagancester"}},{"attributes":{"name":"Donald Murray","age":27,"location":"Valliechester"}},{"attributes":{"name":"Gus Balistreri","age":46,"location":"Fort Rigobertocester"}},{"attributes":{"name":"Justus Beer","age":39,"location":"Perth Amboy"}},{"attributes":{"name":"Mr. Ivan Zemlak I","age":77,"location":"Fort Harry"}},{"attributes":{"name":"Bobby Larkin","age":22,"location":"North Melvina"}},{"attributes":{"name":"Lenny Donnelly","age":57,"location":"Kolbyberg"}},{"attributes":{"name":"Heather Parker","age":74,"location":"Nikkistead"}},{"attributes":{"name":"Dr. Levi Douglas","age":47,"location":"Kennewick"}},{"attributes":{"name":"Giovanna Leannon","age":41,"location":"Manteca"}},{"attributes":{"name":"Edna Orn-Runolfsdottir","age":63,"location":"Juliecester"}},{"attributes":{"name":"Ms. Ethyl Durgan","age":49,"location":"Tampa"}},{"attributes":{"name":"Dr. Amanda Brown","age":80,"location":"North Brain"}},{"attributes":{"name":"Phillip Bins","age":69,"location":"Bossier City"}},{"attributes":{"name":"Lucas Parker","age":57,"location":"Fannieland"}},{"attributes":{"name":"Lula Boyer","age":37,"location":"Lake Alberto"}},{"attributes":{"name":"Erik Swift","age":71,"location":"Fort Gillianview"}},{"attributes":{"name":"Otilia Paucek","age":56,"location":"Lewfort"}},{"attributes":{"name":"Clint Schimmel","age":29,"location":"Lavernaville"}},{"attributes":{"name":"Mr. Earl Ullrich","age":30,"location":"Margarettview"}},{"attributes":{"name":"Mrs. Josh Huel","age":66,"location":"Fort Keegan"}},{"attributes":{"name":"Silvia Conn","age":58,"location":"Otisstead"}},{"attributes":{"name":"Eusebio Ruecker","age":27,"location":"Andersonchester"}},{"attributes":{"name":"Gus Rolfson","age":55,"location":"New Eliseo"}},{"attributes":{"name":"John Rogahn","age":20,"location":"East Filiberto"}},{"attributes":{"name":"Frieda Hodkiewicz","age":79,"location":"West Keanu"}},{"attributes":{"name":"Morgan Wolff","age":79,"location":"Osinskihaven"}},{"attributes":{"name":"Dr. Leilani Romaguera","age":58,"location":"Port Ervinfurt"}},{"attributes":{"name":"Cyril Rohan","age":66,"location":"North Neldabury"}},{"attributes":{"name":"Vanessa Kreiger-Dicki","age":45,"location":"Angelinachester"}},{"attributes":{"name":"Lucille Williamson V","age":67,"location":"Lake Eudora"}},{"attributes":{"name":"Kelley Senger","age":80,"location":"South Erikboro"}},{"attributes":{"name":"Jean Schuster","age":69,"location":"Cruickshankview"}},{"attributes":{"name":"Desiree Raynor IV","age":25,"location":"South Khalil"}},{"attributes":{"name":"Shyann Barrows-Roob","age":33,"location":"Krajcikside"}},{"attributes":{"name":"Melody Jast II","age":55,"location":"Pompano Beach"}},{"attributes":{"name":"Roberto Hoeger I","age":71,"location":"Littleton"}},{"attributes":{"name":"Norma O'Keefe","age":43,"location":"Mannport"}},{"attributes":{"name":"Douglas Satterfield","age":19,"location":"Lowellberg"}},{"attributes":{"name":"Eunice Pouros","age":44,"location":"Montecester"}},{"attributes":{"name":"Faith Considine","age":79,"location":"Nadertown"}},{"attributes":{"name":"Judson Waelchi","age":22,"location":"Creminburgh"}},{"attributes":{"name":"Mabel Williamson Sr.","age":74,"location":"Kendale Lakes"}},{"attributes":{"name":"Sophie Keeling","age":53,"location":"Rodrickfurt"}},{"attributes":{"name":"Zella Bergnaum","age":50,"location":"Parisianfort"}},{"attributes":{"name":"Chad Skiles","age":53,"location":"East Baylee"}},{"attributes":{"name":"Jerry Pagac","age":29,"location":"New Thomasbury"}},{"attributes":{"name":"Grace Cole I","age":27,"location":"DuBuquecester"}},{"attributes":{"name":"Dr. Lance Kertzmann","age":50,"location":"Cupertino"}},{"attributes":{"name":"Dora Bauch","age":64,"location":"Torreyville"}},{"attributes":{"name":"Amy Ritchie","age":23,"location":"Mosemouth"}},{"attributes":{"name":"Marlon Doyle","age":77,"location":"East Juwan"}},{"attributes":{"name":"Margarete Hegmann","age":78,"location":"Cicero"}},{"attributes":{"name":"Heather Oberbrunner","age":56,"location":"Walshtown"}},{"attributes":{"name":"Dallas McClure","age":45,"location":"East Alexandro"}},{"attributes":{"name":"Kayla D'Amore","age":45,"location":"Abilene"}},{"attributes":{"name":"Ginger Gleason","age":67,"location":"East Rashadberg"}},{"attributes":{"name":"Archie Walsh","age":79,"location":"Candiceshire"}},{"attributes":{"name":"Bernice Howe","age":37,"location":"Casimirworth"}},{"attributes":{"name":"Marjolaine Konopelski MD","age":20,"location":"Roanoke"}},{"attributes":{"name":"Eduardo Brown","age":70,"location":"West Gustavehaven"}},{"attributes":{"name":"Aron Wilkinson","age":25,"location":"Kiehnbury"}},{"attributes":{"name":"Keeley Bergnaum","age":22,"location":"Kareemworth"}},{"attributes":{"name":"Dr. Lennie Goldner Sr.","age":40,"location":"Schultzside"}},{"attributes":{"name":"Roy Kertzmann","age":21,"location":"Millstown"}},{"attributes":{"name":"Carlos Quigley","age":72,"location":"Haylieworth"}},{"attributes":{"name":"Terry Jenkins","age":74,"location":"Port Darrellfurt"}},{"attributes":{"name":"Johnnie Heidenreich I","age":47,"location":"Johnsonside"}},{"attributes":{"name":"Silvia Lakin","age":41,"location":"Taunton"}},{"attributes":{"name":"Lana McDermott","age":19,"location":"Edisonfort"}},{"attributes":{"name":"Dr. Anjali Corkery Sr.","age":66,"location":"Waukesha"}},{"attributes":{"name":"Yvette Monahan","age":70,"location":"East Ellisport"}},{"attributes":{"name":"Miss Bernie Pfeffer II","age":59,"location":"Reichelfurt"}},{"attributes":{"name":"Dianne Rolfson","age":69,"location":"Sandy Springs"}},{"attributes":{"name":"Jaime Gleichner","age":71,"location":"Kokomo"}},{"attributes":{"name":"Larry Altenwerth","age":63,"location":"Fort Stephaniafurt"}},{"attributes":{"name":"Lydia Funk","age":30,"location":"West Brownstead"}},{"attributes":{"name":"Lee Brown","age":59,"location":"Warwick"}},{"attributes":{"name":"Marco Bernhard","age":79,"location":"Hettingerhaven"}},{"attributes":{"name":"Jose Lockman","age":43,"location":"Harveyport"}},{"attributes":{"name":"Janice Collier-Koss","age":45,"location":"Fort Johnniestad"}},{"attributes":{"name":"Margarete Morar","age":50,"location":"West Alexandreaworth"}},{"attributes":{"name":"Mike Baumbach","age":71,"location":"Paramount"}},{"attributes":{"name":"Randall Mills","age":35,"location":"Brownsville"}},{"attributes":{"name":"Otis Bartell","age":69,"location":"West Herminaberg"}},{"attributes":{"name":"Vivian Baumbach","age":59,"location":"Jastbury"}},{"attributes":{"name":"Velma Bode","age":68,"location":"Francescoberg"}},{"attributes":{"name":"Ed Adams","age":20,"location":"Fort Jacey"}},{"attributes":{"name":"Ramon Bergnaum","age":51,"location":"Eddtown"}},{"attributes":{"name":"Ms. Linwood Terry","age":74,"location":"Port Tyrellshire"}},{"attributes":{"name":"Veda Jast","age":55,"location":"New Bayleeside"}},{"attributes":{"name":"Jonathon Christiansen-Leannon","age":33,"location":"Marlenstead"}},{"attributes":{"name":"Elaine Paucek","age":42,"location":"Lafayette"}},{"attributes":{"name":"Fannie Klein Jr.","age":20,"location":"Greysonstead"}},{"attributes":{"name":"Demarco Rogahn","age":43,"location":"Tremblaystead"}},{"attributes":{"name":"Jorge Herzog","age":44,"location":"Florencioport"}},{"attributes":{"name":"Austin Mante","age":30,"location":"Gleasonborough"}},{"attributes":{"name":"Julius Kunze","age":56,"location":"Champlinboro"}},{"attributes":{"name":"Loren Hayes","age":36,"location":"Tucson"}},{"attributes":{"name":"Elisa Howe","age":52,"location":"Lake Lauriane"}},{"attributes":{"name":"Betty Lebsack","age":27,"location":"Chazchester"}},{"attributes":{"name":"Peter Brekke","age":22,"location":"Fort Lizeth"}},{"attributes":{"name":"Lauryn Satterfield","age":74,"location":"Baldwin Park"}},{"attributes":{"name":"Miss Hazel Rohan","age":56,"location":"Cedar Hill"}},{"attributes":{"name":"Neoma Kling","age":61,"location":"Rogahnfield"}},{"attributes":{"name":"Sandy Bergnaum","age":25,"location":"Port Buster"}},{"attributes":{"name":"Jean Wuckert","age":48,"location":"North Little Rock"}},{"attributes":{"name":"Dolores Johnston","age":33,"location":"La Habra"}},{"attributes":{"name":"Rickey Turcotte","age":69,"location":"New Orlando"}},{"attributes":{"name":"Teresa O'Kon","age":18,"location":"Rohnert Park"}},{"attributes":{"name":"Dr. Virgil Frami","age":69,"location":"Lemkestad"}},{"attributes":{"name":"Devan Wiegand","age":22,"location":"Mitchellberg"}},{"attributes":{"name":"Keith Abernathy","age":30,"location":"Fort Jeaniestead"}},{"attributes":{"name":"Vicky Kautzer","age":31,"location":"Kleinchester"}},{"attributes":{"name":"Kristy Deckow","age":76,"location":"Maribelmouth"}},{"attributes":{"name":"Shari Bogisich","age":58,"location":"East Bertramland"}},{"attributes":{"name":"Chelsie Lang","age":36,"location":"Port Furmanhaven"}},{"attributes":{"name":"Al Konopelski","age":36,"location":"Lemkestead"}},{"attributes":{"name":"Allan Harvey","age":38,"location":"Rosenbaumworth"}},{"attributes":{"name":"Sven Cruickshank","age":64,"location":"Lake Tellyland"}},{"attributes":{"name":"Miss Lynette Nader","age":46,"location":"Floytown"}},{"attributes":{"name":"Karl Hilll","age":46,"location":"Aaronchester"}},{"attributes":{"name":"Erik Cummerata","age":48,"location":"Fort Mateo"}},{"attributes":{"name":"Marianne Christiansen","age":68,"location":"Fort Nigelview"}},{"attributes":{"name":"Harry Jenkins","age":71,"location":"Murraytown"}},{"attributes":{"name":"Miss Janet Casper","age":60,"location":"East Bernardo"}},{"attributes":{"name":"Dana Gutmann-Lueilwitz","age":68,"location":"Weberburgh"}},{"attributes":{"name":"Elsa Bode","age":26,"location":"Hollieboro"}},{"attributes":{"name":"Pearline Turcotte","age":67,"location":"Port Francisco"}},{"attributes":{"name":"Vincent Huels","age":53,"location":"North Jorge"}},{"attributes":{"name":"Donny Gutmann","age":38,"location":"Friesentown"}},{"attributes":{"name":"Virginia Kirlin","age":60,"location":"Johnson City"}},{"attributes":{"name":"Matilda Marvin","age":40,"location":"Wilfredshire"}},{"attributes":{"name":"Silvia Casper","age":67,"location":"Riverton"}},{"attributes":{"name":"Steven Stiedemann","age":27,"location":"Brendanview"}},{"attributes":{"name":"Mrs. Liza Beahan","age":65,"location":"Simstad"}},{"attributes":{"name":"Buddy Kirlin MD","age":76,"location":"South Lucienne"}},{"attributes":{"name":"Eli Funk","age":22,"location":"Zariaport"}},{"attributes":{"name":"Kristen Smitham DVM","age":71,"location":"Bauchhaven"}},{"attributes":{"name":"Ms. Nathaniel Kessler","age":39,"location":"Arturoside"}},{"attributes":{"name":"Josue Wilderman","age":77,"location":"West Anibalstead"}},{"attributes":{"name":"Isobel Heathcote","age":73,"location":"Lavadaport"}},{"attributes":{"name":"Filomena Gislason","age":37,"location":"Nitzscheburgh"}},{"attributes":{"name":"Vincent Littel","age":18,"location":"Eulaborough"}},{"attributes":{"name":"Laverne Ziemann IV","age":39,"location":"Broken Arrow"}},{"attributes":{"name":"Freda Walker","age":22,"location":"Port Kayden"}},{"attributes":{"name":"Mr. Maye Boyle","age":30,"location":"Hickleburgh"}},{"attributes":{"name":"Tiffany Howell","age":49,"location":"South Saigeborough"}},{"attributes":{"name":"Tavares Cartwright","age":40,"location":"Rutherfordshire"}},{"attributes":{"name":"Lauren Funk Sr.","age":43,"location":"Coleburgh"}},{"attributes":{"name":"Shanna Klocko","age":73,"location":"East Adellside"}},{"attributes":{"name":"Shayna Swift","age":20,"location":"Atascocita"}},{"attributes":{"name":"Frances Upton","age":45,"location":"Bahringershire"}},{"attributes":{"name":"Mr. Alexandrine Runolfsdottir","age":44,"location":"Vandervortfort"}},{"attributes":{"name":"Darren Gutmann","age":33,"location":"Waelchimouth"}},{"attributes":{"name":"Sedrick Schaefer","age":58,"location":"Nicolasport"}},{"attributes":{"name":"Arlene Hills","age":20,"location":"Margaretestad"}},{"attributes":{"name":"Bettye Hudson-Zulauf","age":54,"location":"Mohrstad"}},{"attributes":{"name":"Eldora Johnston","age":42,"location":"Margarettaland"}},{"attributes":{"name":"Terrell Hirthe","age":74,"location":"South Bernitaburgh"}},{"attributes":{"name":"Willa Green","age":72,"location":"Port Demarcomouth"}},{"attributes":{"name":"Miss Agnes Stracke","age":37,"location":"St. Peters"}},{"attributes":{"name":"Mr. Adelbert Ankunding","age":31,"location":"West Providenciton"}},{"attributes":{"name":"Dawson Runte","age":74,"location":"Oakland"}},{"attributes":{"name":"Darlene Altenwerth","age":32,"location":"O'Keefetown"}},{"attributes":{"name":"Ida Cruickshank II","age":24,"location":"Lake Ciceroburgh"}},{"attributes":{"name":"Claudia Pfeffer","age":47,"location":"East Lynnbury"}},{"attributes":{"name":"Kamren Schmidt","age":63,"location":"Shieldsfield"}},{"attributes":{"name":"Colt Orn","age":48,"location":"East Lansing"}},{"attributes":{"name":"Ethel Labadie","age":21,"location":"Port Ivorymouth"}},{"attributes":{"name":"Kurt Luettgen","age":20,"location":"Stephanieshire"}},{"attributes":{"name":"Beth Dach","age":31,"location":"North Britney"}},{"attributes":{"name":"Jennifer Carroll","age":19,"location":"Maudemouth"}},{"attributes":{"name":"Irving Friesen","age":39,"location":"Nicoton"}},{"attributes":{"name":"Mildred Runte","age":57,"location":"Zakaryport"}},{"attributes":{"name":"Pete Gleichner","age":26,"location":"Adrianboro"}},{"attributes":{"name":"Jimmy Stracke","age":77,"location":"North Carrollchester"}},{"attributes":{"name":"Minnie Hansen Sr.","age":53,"location":"Kenosha"}},{"attributes":{"name":"Alvena Heller","age":62,"location":"Peabody"}},{"attributes":{"name":"Patricia Kshlerin","age":78,"location":"Port Christy"}},{"attributes":{"name":"Sharon Kessler","age":59,"location":"Creolaview"}},{"attributes":{"name":"Mary Jakubowski","age":43,"location":"Lincoln"}},{"attributes":{"name":"Hugh Leuschke","age":77,"location":"East Brielle"}},{"attributes":{"name":"Mr. Cleta Hayes","age":23,"location":"Connorberg"}},{"attributes":{"name":"Tommy Runolfsson","age":73,"location":"Lethaberg"}},{"attributes":{"name":"Ms. Virginie Von","age":67,"location":"Fort Nealfield"}},{"attributes":{"name":"Evangeline Moore","age":57,"location":"New Devanteport"}},{"attributes":{"name":"Louisa Zieme","age":76,"location":"Wilfredstead"}},{"attributes":{"name":"Carmen Hartmann","age":69,"location":"Kundetown"}},{"attributes":{"name":"Joyce Kutch","age":36,"location":"Rueckerview"}},{"attributes":{"name":"Andrea Moore","age":52,"location":"Lake Junior"}},{"attributes":{"name":"Theodore Nicolas","age":39,"location":"Baytown"}},{"attributes":{"name":"Howard Moore","age":73,"location":"Norwalk"}},{"attributes":{"name":"Lukas Thiel","age":56,"location":"Lake Helen"}},{"attributes":{"name":"Gabe Hoeger","age":21,"location":"New Halie"}},{"attributes":{"name":"Elvira Ortiz V","age":24,"location":"East Miguelberg"}},{"attributes":{"name":"Edwin Turner","age":61,"location":"Cielomouth"}},{"attributes":{"name":"Haven Roberts","age":36,"location":"Emardworth"}},{"attributes":{"name":"Newell Halvorson I","age":47,"location":"Toreystead"}},{"attributes":{"name":"Anna Rodriguez","age":68,"location":"Edina"}},{"attributes":{"name":"Estelle Hartmann IV","age":56,"location":"Botsfordshire"}},{"attributes":{"name":"Rosa Hermiston","age":30,"location":"Beahanfurt"}},{"attributes":{"name":"William Prosacco","age":73,"location":"Lubowitzbury"}},{"attributes":{"name":"Cheyenne Larkin","age":63,"location":"Monahanboro"}},{"attributes":{"name":"Antonette Harber","age":60,"location":"Margate"}},{"attributes":{"name":"Ransom Lubowitz","age":51,"location":"Jersey City"}},{"attributes":{"name":"Rachael Carroll","age":56,"location":"Port Scot"}},{"attributes":{"name":"Sigrid Armstrong","age":67,"location":"Considinestead"}},{"attributes":{"name":"Elsie Franecki","age":69,"location":"South Flossieton"}},{"attributes":{"name":"Doyle Glover","age":40,"location":"Hialeah"}},{"attributes":{"name":"Alice Legros","age":50,"location":"South Jaedencester"}},{"attributes":{"name":"Noble Lowe","age":33,"location":"Lake Dillanport"}},{"attributes":{"name":"Ross Hodkiewicz","age":47,"location":"Frankiefurt"}},{"attributes":{"name":"Janelle Dietrich","age":55,"location":"West Rebeka"}},{"attributes":{"name":"Lee Koss","age":70,"location":"South Salliefurt"}},{"attributes":{"name":"Tammy Torp","age":48,"location":"Bergechester"}},{"attributes":{"name":"Rod Upton","age":20,"location":"Gibsonside"}},{"attributes":{"name":"Maryam Rosenbaum","age":20,"location":"South Robertofield"}},{"attributes":{"name":"Bethany Beahan","age":69,"location":"Fort Leland"}},{"attributes":{"name":"Malachi Schaefer","age":73,"location":"Port Darrickport"}},{"attributes":{"name":"Oleta Stamm","age":40,"location":"Williamsoncester"}},{"attributes":{"name":"Hector Beahan","age":53,"location":"Lake Emerystead"}},{"attributes":{"name":"Beth Fritsch","age":69,"location":"Victoria"}},{"attributes":{"name":"Matt Robel","age":45,"location":"Ziemestad"}},{"attributes":{"name":"Mrs. Sherri Ullrich","age":56,"location":"Lake Dawson"}},{"attributes":{"name":"Marilyne Terry PhD","age":41,"location":"Kesslerfurt"}},{"attributes":{"name":"Cora Sawayn","age":40,"location":"Abeton"}},{"attributes":{"name":"Elsa Kunde","age":79,"location":"Osinskistead"}},{"attributes":{"name":"Olga Bode","age":56,"location":"Hilllton"}},{"attributes":{"name":"Dr. Esther Schulist","age":54,"location":"New Eloisafort"}},{"attributes":{"name":"Shanie Muller","age":64,"location":"East Armandshire"}},{"attributes":{"name":"Addie Bosco","age":18,"location":"West Golden"}},{"attributes":{"name":"Margarita Halvorson","age":56,"location":"Bayerton"}},{"attributes":{"name":"Colby Crona","age":72,"location":"West Elfrieda"}},{"attributes":{"name":"Teresa Yundt","age":49,"location":"Port Ruby"}},{"attributes":{"name":"Henrietta Sauer","age":41,"location":"New Roma"}},{"attributes":{"name":"Lorenza Stracke-Gerlach","age":22,"location":"St. Peters"}},{"attributes":{"name":"Sylvia Becker","age":73,"location":"Lindport"}},{"attributes":{"name":"Dr. Pedro Hayes","age":75,"location":"Grimesworth"}},{"attributes":{"name":"Ebony Tremblay","age":61,"location":"Naperville"}},{"attributes":{"name":"Katlynn Rau","age":72,"location":"Fort Staceyside"}},{"attributes":{"name":"Kristin Koepp","age":41,"location":"Lake Shyanne"}},{"attributes":{"name":"Eulah Botsford","age":34,"location":"Lake Willis"}},{"attributes":{"name":"Sonya Borer","age":19,"location":"Fort Isaiahtown"}},{"attributes":{"name":"Leona Treutel","age":60,"location":"Grand Forks"}},{"attributes":{"name":"Harmony Johns","age":45,"location":"Lake Meganeburgh"}},{"attributes":{"name":"Nina Kulas","age":42,"location":"Walkerhaven"}},{"attributes":{"name":"Kimberly Hahn","age":36,"location":"Jeanieview"}},{"attributes":{"name":"Christopher Berge","age":37,"location":"Athens-Clarke County"}},{"attributes":{"name":"Ken Lebsack","age":58,"location":"Menifee"}},{"attributes":{"name":"Greyson Larson","age":42,"location":"Ratkeworth"}},{"attributes":{"name":"Ms. Ursula Hoeger","age":62,"location":"Bergstromboro"}},{"attributes":{"name":"Tracey Mann","age":18,"location":"North Sabinaworth"}},{"attributes":{"name":"Carroll D'Amore I","age":67,"location":"Boise City"}},{"attributes":{"name":"Neal Macejkovic","age":41,"location":"Farrelltown"}},{"attributes":{"name":"Thomas Anderson","age":73,"location":"Tillmanberg"}},{"attributes":{"name":"Jacqueline Langworth","age":68,"location":"East Hartford"}},{"attributes":{"name":"Clifford Nicolas","age":35,"location":"North Fabiolamouth"}},{"attributes":{"name":"Helen Stanton-Nienow","age":68,"location":"East Lloydland"}},{"attributes":{"name":"Tasha Wunsch","age":55,"location":"North Jaidenmouth"}},{"attributes":{"name":"Mrs. Kristy Hagenes","age":71,"location":"Jaskolskicester"}},{"attributes":{"name":"Johanna Franecki","age":45,"location":"Carolina"}},{"attributes":{"name":"Yvette Treutel","age":36,"location":"Greenholthaven"}},{"attributes":{"name":"Rochelle Vandervort","age":34,"location":"Hayleycester"}},{"attributes":{"name":"Sophia Bruen","age":74,"location":"New Karleytown"}},{"attributes":{"name":"Clyde Predovic","age":50,"location":"South Vickiecester"}},{"attributes":{"name":"Ursula Barrows Sr.","age":50,"location":"Fort Kristofer"}},{"attributes":{"name":"Julian Cormier","age":44,"location":"Ardellaboro"}},{"attributes":{"name":"Mrs. Lulu Reichel","age":48,"location":"South Russ"}},{"attributes":{"name":"Cecilia Ritchie","age":39,"location":"Fort Alexander"}},{"attributes":{"name":"Avis Hagenes","age":54,"location":"Burke"}},{"attributes":{"name":"Leo Dickens","age":63,"location":"Sayreville"}},{"attributes":{"name":"Valerie Gerhold","age":76,"location":"South Francesco"}},{"attributes":{"name":"Clinton Blanda","age":29,"location":"North Mallie"}},{"attributes":{"name":"Mr. Fred Fahey","age":48,"location":"Vineland"}},{"attributes":{"name":"Glenna Heaney","age":78,"location":"Maudberg"}},{"attributes":{"name":"Doreen Rau","age":64,"location":"Hoseaboro"}},{"attributes":{"name":"Dr. Isabel Wehner","age":74,"location":"Abshireworth"}},{"attributes":{"name":"Deanna Ankunding","age":31,"location":"Palm Springs"}},{"attributes":{"name":"Candelario Adams","age":39,"location":"Port Nannieview"}},{"attributes":{"name":"Julius Hodkiewicz I","age":68,"location":"Hesselfield"}},{"attributes":{"name":"Dr. Anibal Hackett","age":42,"location":"Tamarac"}},{"attributes":{"name":"Harmon Doyle","age":53,"location":"Florissant"}},{"attributes":{"name":"Lionel Fisher","age":36,"location":"Fort Malcolm"}},{"attributes":{"name":"Violet Wunsch","age":55,"location":"VonRuedenbury"}},{"attributes":{"name":"Ms. Lindsay Hane","age":64,"location":"New Julieboro"}},{"attributes":{"name":"Miss Mekhi Breitenberg-Reichert Sr.","age":61,"location":"North Biankahaven"}},{"attributes":{"name":"Shany Price","age":24,"location":"East Wyatt"}},{"attributes":{"name":"Frankie Hayes","age":39,"location":"North Shanelstad"}},{"attributes":{"name":"Estelle Schuster","age":52,"location":"Waldorf"}},{"attributes":{"name":"Amber Balistreri","age":27,"location":"Lake Jordan"}},{"attributes":{"name":"Elisa Nicolas","age":66,"location":"Whiteland"}},{"attributes":{"name":"Jermaine Emmerich","age":43,"location":"South Halmouth"}},{"attributes":{"name":"Troy Kohler","age":43,"location":"South Evelineburgh"}},{"attributes":{"name":"Mrs. Kailee Mitchell","age":52,"location":"West Delbertworth"}},{"attributes":{"name":"Lola Conn","age":45,"location":"Brettstad"}},{"attributes":{"name":"Carson Wisozk","age":77,"location":"Arvidstead"}},{"attributes":{"name":"Pamela Nicolas","age":20,"location":"Lake Ahmed"}},{"attributes":{"name":"Mr. Leopold Wyman","age":78,"location":"Blue Springs"}},{"attributes":{"name":"Isom Carroll","age":53,"location":"Cedar Rapids"}},{"attributes":{"name":"Ana Schulist","age":24,"location":"East Icie"}},{"attributes":{"name":"Georgia Monahan","age":27,"location":"San Juan"}},{"attributes":{"name":"Elizabeth Torphy","age":69,"location":"Ollieport"}},{"attributes":{"name":"Ford Aufderhar","age":70,"location":"Macejkovicside"}},{"attributes":{"name":"Tyler Herman","age":79,"location":"Yolandashire"}},{"attributes":{"name":"Linnea Feest III","age":57,"location":"Maggiostead"}},{"attributes":{"name":"Danyka Huels","age":75,"location":"Walterbury"}},{"attributes":{"name":"Clay Stiedemann","age":78,"location":"New Griffin"}},{"attributes":{"name":"Lia Hirthe","age":47,"location":"Wolffborough"}},{"attributes":{"name":"Nyasia Lakin","age":50,"location":"Hegmannburgh"}},{"attributes":{"name":"Jimmy Oberbrunner","age":39,"location":"Mathildestead"}},{"attributes":{"name":"Juana Gutkowski","age":76,"location":"Joaniefort"}},{"attributes":{"name":"Alvera Roberts","age":36,"location":"Lake Dianna"}},{"attributes":{"name":"Yvette Cruickshank","age":59,"location":"Hoegerhaven"}},{"attributes":{"name":"Gerry Legros","age":54,"location":"West Israeltown"}},{"attributes":{"name":"Sylvester DuBuque","age":53,"location":"Savannah"}},{"attributes":{"name":"Elias Jacobs","age":42,"location":"Lake Fermin"}},{"attributes":{"name":"Mrs. Jacquelyn Donnelly","age":29,"location":"Elishafurt"}},{"attributes":{"name":"Justice Cruickshank","age":52,"location":"Lauderhill"}},{"attributes":{"name":"Erin Price","age":57,"location":"Fannyberg"}},{"attributes":{"name":"Meredith Borer-Bednar","age":27,"location":"Conway"}},{"attributes":{"name":"Roger Boyer","age":65,"location":"South Andreane"}},{"attributes":{"name":"Angel Rodriguez","age":73,"location":"Belleville"}},{"attributes":{"name":"Sterling Russel","age":38,"location":"North Einoview"}},{"attributes":{"name":"Imani Rempel","age":44,"location":"Ziemechester"}},{"attributes":{"name":"Donald Powlowski","age":34,"location":"North Giovannaworth"}},{"attributes":{"name":"Loretta Daniel","age":53,"location":"Orange"}},{"attributes":{"name":"Beatrice Larson","age":21,"location":"Ebonyboro"}},{"attributes":{"name":"Evan Lesch Sr.","age":41,"location":"Stefanfurt"}},{"attributes":{"name":"Hubert Considine DDS","age":18,"location":"Tremblayview"}},{"attributes":{"name":"Mrs. Olivia Sawayn","age":77,"location":"Hahnstead"}},{"attributes":{"name":"Rose Will","age":53,"location":"Weimanncester"}},{"attributes":{"name":"Janet Towne","age":47,"location":"West Buck"}},{"attributes":{"name":"Ted Nicolas","age":69,"location":"Caldwell"}},{"attributes":{"name":"Gillian Lakin","age":33,"location":"Orlandoside"}},{"attributes":{"name":"Lionel Legros-Bernier","age":29,"location":"South Francisco"}},{"attributes":{"name":"Francis Brekke","age":70,"location":"Houston"}},{"attributes":{"name":"Shad Parker","age":73,"location":"San Mateo"}},{"attributes":{"name":"Tom Quigley","age":66,"location":"Cummerataton"}},{"attributes":{"name":"Miss Rita Schmitt","age":50,"location":"Lake Destinyboro"}},{"attributes":{"name":"Michel Wyman","age":24,"location":"Kaelaberg"}},{"attributes":{"name":"Loy Graham II","age":79,"location":"Carrollborough"}},{"attributes":{"name":"Devante Kohler","age":39,"location":"Port Brookhaven"}},{"attributes":{"name":"Tremayne Treutel","age":63,"location":"Port Tia"}},{"attributes":{"name":"Columbus Bradtke","age":29,"location":"Rodolfochester"}},{"attributes":{"name":"Eunice McCullough V","age":62,"location":"West Giuseppe"}},{"attributes":{"name":"Bud Welch","age":31,"location":"West Kodytown"}},{"attributes":{"name":"Marcus Ruecker","age":25,"location":"Manchester"}},{"attributes":{"name":"Brenna Cruickshank","age":42,"location":"West Thelma"}},{"attributes":{"name":"Claire Jaskolski","age":48,"location":"Heathcotebury"}},{"attributes":{"name":"Willy Stark","age":57,"location":"Pontiac"}},{"attributes":{"name":"Sierra Schaefer Sr.","age":80,"location":"Greenfeldershire"}},{"attributes":{"name":"Rosina Russel IV","age":23,"location":"Kesslertown"}},{"attributes":{"name":"Ms. Gage Mann","age":25,"location":"Port Kale"}},{"attributes":{"name":"Bruce Maggio","age":70,"location":"Harlingen"}},{"attributes":{"name":"Myles Legros","age":79,"location":"Cheektowaga"}},{"attributes":{"name":"Patty Breitenberg","age":62,"location":"Lake Kaydenfort"}},{"attributes":{"name":"Ollie Bergnaum","age":71,"location":"Edythestead"}},{"attributes":{"name":"Chris Auer-Lang","age":40,"location":"Cartershire"}},{"attributes":{"name":"Jill Schiller III","age":48,"location":"Leeville"}},{"attributes":{"name":"Christine Koss","age":76,"location":"Port Susana"}},{"attributes":{"name":"Wilfred Hansen","age":40,"location":"Jerdebury"}},{"attributes":{"name":"Camille Welch","age":22,"location":"Caldwell"}},{"attributes":{"name":"Dr. Shane McLaughlin","age":61,"location":"East Kaitlin"}},{"attributes":{"name":"Lena Reinger","age":75,"location":"New Marleneside"}},{"attributes":{"name":"Allen Hickle","age":53,"location":"East Macie"}},{"attributes":{"name":"Jared Klocko","age":51,"location":"East Adella"}},{"attributes":{"name":"Marcelina Rath","age":52,"location":"Lake Terrill"}},{"attributes":{"name":"Chester Thompson","age":58,"location":"North Ima"}},{"attributes":{"name":"Wanda Konopelski","age":61,"location":"Livonia"}},{"attributes":{"name":"Brett Funk","age":68,"location":"Lubowitzport"}},{"attributes":{"name":"Rochelle Champlin","age":77,"location":"Port Kiaraside"}},{"attributes":{"name":"May Ferry","age":20,"location":"South Alizaview"}},{"attributes":{"name":"Doreen Cole","age":29,"location":"Lake Brannonton"}},{"attributes":{"name":"Alize Hermiston","age":27,"location":"South Leo"}},{"attributes":{"name":"Dr. Jamie Casper","age":43,"location":"Alfordmouth"}},{"attributes":{"name":"Darrell Waters","age":36,"location":"West Horace"}},{"attributes":{"name":"Mrs. Dejuan Bailey Jr.","age":42,"location":"Port Zitaburgh"}},{"attributes":{"name":"Gloria Osinski","age":75,"location":"Haileemouth"}},{"attributes":{"name":"Mr. Mckenzie Witting","age":43,"location":"Macfurt"}},{"attributes":{"name":"Priscilla Romaguera","age":48,"location":"Brantborough"}},{"attributes":{"name":"Robbie Schroeder","age":41,"location":"Fort Rosellaberg"}},{"attributes":{"name":"Okey Shields","age":74,"location":"East Twilaview"}},{"attributes":{"name":"Marilou Maggio","age":75,"location":"Port Deontae"}},{"attributes":{"name":"Jayden Swaniawski","age":23,"location":"Tustin"}},{"attributes":{"name":"Jaime Franecki","age":32,"location":"Lake Oswald"}},{"attributes":{"name":"Natalia Beer","age":54,"location":"Ibrahimboro"}},{"attributes":{"name":"Whitney Kunze","age":35,"location":"Fort Wilburnborough"}},{"attributes":{"name":"Willie Mosciski","age":64,"location":"East Odessa"}},{"attributes":{"name":"Jordy Dickens","age":41,"location":"Mariamview"}},{"attributes":{"name":"Toby Kiehn","age":62,"location":"Port Orrin"}},{"attributes":{"name":"Lorenza Sipes","age":67,"location":"Millcreek"}},{"attributes":{"name":"Cary Volkman IV","age":58,"location":"East Turner"}},{"attributes":{"name":"Olivia Luettgen MD","age":77,"location":"West Kingland"}},{"attributes":{"name":"Norris McDermott","age":31,"location":"Keelingworth"}},{"attributes":{"name":"Winston Ankunding","age":23,"location":"East Brettton"}},{"attributes":{"name":"Jett Lakin","age":64,"location":"Glendale"}},{"attributes":{"name":"Dr. Nora Koelpin","age":67,"location":"Dickifort"}},{"attributes":{"name":"Tasha Walker","age":33,"location":"Gottliebview"}},{"attributes":{"name":"Maximillia Nienow-Hayes","age":21,"location":"San Diego"}},{"attributes":{"name":"Oliver Keebler","age":38,"location":"West Gailborough"}},{"attributes":{"name":"Charlene Marvin MD","age":35,"location":"Fort Adrien"}},{"attributes":{"name":"Imogene Mosciski","age":34,"location":"New Bernard"}},{"attributes":{"name":"Cody Torp","age":62,"location":"Cullenport"}},{"attributes":{"name":"Ericka Predovic","age":35,"location":"Halfort"}},{"attributes":{"name":"Pamela Corwin","age":46,"location":"New Bernardoview"}},{"attributes":{"name":"Antonia Adams","age":51,"location":"Mesquite"}},{"attributes":{"name":"Leah Larson","age":71,"location":"West Jacquelyn"}},{"attributes":{"name":"Alvera Fay","age":27,"location":"Millsland"}},{"attributes":{"name":"Payton Luettgen","age":25,"location":"Rennercester"}},{"attributes":{"name":"Norma Morissette","age":48,"location":"Kunzefurt"}},{"attributes":{"name":"Jasmine Lueilwitz","age":72,"location":"Lake Omari"}},{"attributes":{"name":"Miller Rau","age":67,"location":"West Toby"}},{"attributes":{"name":"Tad Koch","age":41,"location":"Evangelinestad"}},{"attributes":{"name":"Rose Shanahan","age":46,"location":"Lake Charity"}},{"attributes":{"name":"Betsy Altenwerth-Ortiz","age":20,"location":"North Enid"}},{"attributes":{"name":"Ms. Bethany Thompson","age":75,"location":"South Ethelville"}},{"attributes":{"name":"Lillian Fadel","age":23,"location":"West Francisca"}},{"attributes":{"name":"August Kessler","age":53,"location":"Brookestad"}},{"attributes":{"name":"Penny Jacobs","age":38,"location":"Frederick"}},{"attributes":{"name":"Inez Sanford","age":31,"location":"Fort Tyshawn"}},{"attributes":{"name":"Marjory Hartmann","age":77,"location":"Paytonbury"}},{"attributes":{"name":"Iris Tillman","age":56,"location":"South Oswaldo"}},{"attributes":{"name":"Estella Bernier","age":32,"location":"Tustin"}},{"attributes":{"name":"Freddie Larson","age":41,"location":"West Lolaburgh"}},{"attributes":{"name":"Wayne Russel","age":27,"location":"New Kristafurt"}},{"attributes":{"name":"Salvador Conroy","age":71,"location":"Lake Brycenchester"}},{"attributes":{"name":"Joe Ward III","age":24,"location":"Lowebury"}},{"attributes":{"name":"Rose Heller","age":78,"location":"Aufderharstead"}},{"attributes":{"name":"Jeffrey Boehm Sr.","age":59,"location":"Genetown"}},{"attributes":{"name":"Brent Lehner MD","age":61,"location":"Port Sabryna"}},{"attributes":{"name":"Yasmin Morissette","age":26,"location":"Lake Jalyn"}},{"attributes":{"name":"Shawn Bergnaum","age":33,"location":"North Virginiafield"}},{"attributes":{"name":"Alvah Weissnat","age":75,"location":"Maryjanestead"}},{"attributes":{"name":"Troy Krajcik Sr.","age":68,"location":"Laruebury"}},{"attributes":{"name":"Jennifer Brakus","age":80,"location":"Port Macystead"}},{"attributes":{"name":"Howard Franecki","age":77,"location":"Clarksville"}},{"attributes":{"name":"Everett Harvey","age":31,"location":"Deannachester"}},{"attributes":{"name":"Heather Koss III","age":39,"location":"New Delfina"}},{"attributes":{"name":"Alfreda Monahan","age":47,"location":"Miaburgh"}},{"attributes":{"name":"Lenore Bergnaum","age":62,"location":"West Jaquantown"}},{"attributes":{"name":"Catherine Wiegand","age":37,"location":"Port Ottoton"}},{"attributes":{"name":"Andre Jenkins","age":36,"location":"Fort Everetteport"}},{"attributes":{"name":"Jill Harris","age":74,"location":"Fort Guidotown"}},{"attributes":{"name":"Timothy Hagenes","age":43,"location":"Whittier"}},{"attributes":{"name":"Amanda Legros","age":40,"location":"East Jeniferside"}},{"attributes":{"name":"Pearl Rath","age":51,"location":"Fort Cynthia"}},{"attributes":{"name":"Muriel Gibson","age":42,"location":"Lake Luigiton"}},{"attributes":{"name":"Adrain Braun-Jacobs","age":62,"location":"Simonischester"}},{"attributes":{"name":"Eddie Schowalter","age":57,"location":"Fort Enriquefield"}},{"attributes":{"name":"Winston Cassin","age":39,"location":"Gildaville"}},{"attributes":{"name":"Elbert Bartell DDS","age":18,"location":"Port Jackeline"}},{"attributes":{"name":"Miss Allie Abbott IV","age":30,"location":"Carson"}},{"attributes":{"name":"Ruth Marquardt Sr.","age":34,"location":"Walterstead"}},{"attributes":{"name":"Stanley Dickinson","age":27,"location":"Lisaburgh"}},{"attributes":{"name":"Nyah Gleichner","age":37,"location":"Lebsackside"}},{"attributes":{"name":"Mr. Pat Windler","age":24,"location":"Lake Lelaberg"}},{"attributes":{"name":"Thomas Graham","age":66,"location":"Anastaciomouth"}},{"attributes":{"name":"Cary Feil","age":77,"location":"Conway"}},{"attributes":{"name":"Mrs. April Corwin","age":38,"location":"Lonhaven"}},{"attributes":{"name":"Jazmin Quigley","age":60,"location":"West Brandomouth"}},{"attributes":{"name":"Miss Nyah Daugherty","age":43,"location":"Hempstead"}},{"attributes":{"name":"Ms. Kira Daniel-Lind","age":28,"location":"Abelardoboro"}},{"attributes":{"name":"Carl Runte","age":48,"location":"Trantowworth"}},{"attributes":{"name":"Everardo Heller III","age":80,"location":"Lake Shadfort"}},{"attributes":{"name":"Anthony Oberbrunner-Homenick","age":48,"location":"Port Newell"}},{"attributes":{"name":"Green McClure","age":58,"location":"Lake Alyceworth"}},{"attributes":{"name":"Freeman Thompson","age":62,"location":"Dickensworth"}},{"attributes":{"name":"Byron Kulas","age":40,"location":"Volkmanboro"}},{"attributes":{"name":"Chester Johnston","age":40,"location":"Gresham"}},{"attributes":{"name":"Eugene Cormier","age":74,"location":"East Chelsie"}},{"attributes":{"name":"Maurice Stokes","age":63,"location":"North Peggiebury"}},{"attributes":{"name":"Lee Morissette","age":65,"location":"Pearl City"}},{"attributes":{"name":"Simon Paucek","age":53,"location":"Izabellaborough"}},{"attributes":{"name":"Geneva VonRueden","age":32,"location":"Willfield"}},{"attributes":{"name":"Desiree Feil","age":24,"location":"East Calebland"}},{"attributes":{"name":"Ben Hegmann","age":44,"location":"Americoberg"}},{"attributes":{"name":"Andy Bins","age":22,"location":"Daytona Beach"}},{"attributes":{"name":"Micheal Kautzer","age":59,"location":"New Jaquelin"}},{"attributes":{"name":"Albert Walsh","age":56,"location":"West Leonel"}},{"attributes":{"name":"Frederic Moen","age":49,"location":"Jackson"}},{"attributes":{"name":"Bert Goldner","age":19,"location":"North Mariamton"}},{"attributes":{"name":"Clovis Kuphal","age":53,"location":"Irondequoit"}},{"attributes":{"name":"Percy Cremin","age":39,"location":"West Cristian"}},{"attributes":{"name":"Allison Dietrich","age":29,"location":"Bartholometown"}},{"attributes":{"name":"Mr. Eula Runolfsson","age":78,"location":"New Braunfels"}},{"attributes":{"name":"Carolyn Buckridge","age":46,"location":"Marcellusport"}},{"attributes":{"name":"Irvin Buckridge","age":23,"location":"East Ottis"}},{"attributes":{"name":"Stephen Oberbrunner","age":27,"location":"Lake Florencio"}},{"attributes":{"name":"Cecelia Mayer","age":34,"location":"Lake Sim"}},{"attributes":{"name":"Felix Watsica","age":32,"location":"Bryonland"}},{"attributes":{"name":"Lucia Labadie-Mills","age":37,"location":"North Las Vegas"}},{"attributes":{"name":"Makenzie Wisoky","age":42,"location":"New Lelaberg"}},{"attributes":{"name":"Sammy Rogahn","age":59,"location":"South Deefort"}},{"attributes":{"name":"Linnea Bernier","age":68,"location":"New Sarah"}},{"attributes":{"name":"Jim Leuschke","age":45,"location":"Casas Adobes"}},{"attributes":{"name":"Mr. Jalen Windler","age":38,"location":"South Cleoraborough"}},{"attributes":{"name":"Clifton Langworth","age":74,"location":"Victoriafield"}},{"attributes":{"name":"Rachael Turner","age":39,"location":"San Tan Valley"}},{"attributes":{"name":"Greg Feeney DDS","age":36,"location":"Shoreline"}},{"attributes":{"name":"Precious Tillman","age":42,"location":"New Orlo"}},{"attributes":{"name":"Dr. Collin Strosin","age":58,"location":"Albinastad"}},{"attributes":{"name":"Sheldon Vandervort","age":23,"location":"Racine"}},{"attributes":{"name":"Chris Sawayn","age":75,"location":"Mrazhaven"}},{"attributes":{"name":"Ottilie Prohaska","age":28,"location":"Beattyboro"}},{"attributes":{"name":"Mrs. Vanessa Pfannerstill","age":31,"location":"Orem"}},{"attributes":{"name":"Mrs. Erica Simonis","age":46,"location":"New Ned"}},{"attributes":{"name":"Maggie Weimann-Cole","age":50,"location":"Fort Kailyn"}},{"attributes":{"name":"Tara Wintheiser","age":34,"location":"Tyrellhaven"}},{"attributes":{"name":"Georgiana Gorczany","age":34,"location":"Fort Trisha"}},{"attributes":{"name":"Debra Goodwin","age":77,"location":"South Kenyon"}},{"attributes":{"name":"Rosalind Brakus","age":39,"location":"Fort Kelly"}},{"attributes":{"name":"Stephen Tromp","age":58,"location":"South Delphia"}},{"attributes":{"name":"Gordon Barton","age":65,"location":"Fort Joaquin"}},{"attributes":{"name":"Miss Newell Connelly","age":48,"location":"Lake Colt"}},{"attributes":{"name":"Brittany Witting","age":29,"location":"South Reyesworth"}},{"attributes":{"name":"Christie Barton","age":61,"location":"North Hailie"}},{"attributes":{"name":"Sydnee Parisian","age":65,"location":"West Jed"}},{"attributes":{"name":"Elwin Stokes-Auer","age":80,"location":"Kaylahside"}},{"attributes":{"name":"Tracey Ledner","age":26,"location":"Baileeboro"}},{"attributes":{"name":"Roy Wintheiser","age":30,"location":"Laishaboro"}},{"attributes":{"name":"Ciara Quigley DVM","age":31,"location":"Ricebury"}},{"attributes":{"name":"Ernesto Streich","age":58,"location":"Henrietteburgh"}},{"attributes":{"name":"Jorge Kemmer","age":32,"location":"Estefaniastead"}},{"attributes":{"name":"Estelle Pacocha","age":51,"location":"East Aubrey"}},{"attributes":{"name":"Bettye Cartwright","age":70,"location":"Heidenreichshire"}},{"attributes":{"name":"Dr. Samantha Waters","age":24,"location":"Lake Rafaela"}},{"attributes":{"name":"Jeremiah Vandervort","age":71,"location":"North Santos"}},{"attributes":{"name":"Sylvester Schiller","age":34,"location":"Lake Namechester"}},{"attributes":{"name":"Timothy Metz","age":80,"location":"West Aida"}},{"attributes":{"name":"Mamie Friesen MD","age":19,"location":"Ernserstad"}},{"attributes":{"name":"Mr. Luke Shanahan","age":25,"location":"Port Jadenfort"}},{"attributes":{"name":"Leanna Pfannerstill","age":29,"location":"Cronachester"}},{"attributes":{"name":"Rosalee Goldner","age":24,"location":"Schulistbury"}},{"attributes":{"name":"Krystal Langworth","age":34,"location":"Koelpinfort"}},{"attributes":{"name":"Lela Wuckert","age":49,"location":"East Hartford"}},{"attributes":{"name":"Destinee Senger","age":54,"location":"Garden Grove"}},{"attributes":{"name":"Mackenzie Gleichner III","age":72,"location":"Carmichael"}},{"attributes":{"name":"Mr. Carl Casper","age":64,"location":"Millsland"}},{"attributes":{"name":"Roy Morissette","age":75,"location":"Fort Maxwelltown"}},{"attributes":{"name":"Dr. Josh Wyman DDS","age":56,"location":"El Paso"}},{"attributes":{"name":"Deon Donnelly","age":64,"location":"Lake Meda"}},{"attributes":{"name":"Kristina Bauch","age":38,"location":"Ratketon"}},{"attributes":{"name":"Toby Jacobson","age":30,"location":"New Justenton"}},{"attributes":{"name":"Callie Osinski","age":80,"location":"Neomaboro"}},{"attributes":{"name":"Yolanda Zemlak","age":70,"location":"Lake Angelica"}},{"attributes":{"name":"Gregory Fritsch","age":23,"location":"Lake Wilmafield"}},{"attributes":{"name":"Miss Gilberto Fay","age":73,"location":"Lake Reina"}},{"attributes":{"name":"May Hansen","age":53,"location":"Gregoriofort"}},{"attributes":{"name":"Miss Dianna Spencer","age":46,"location":"East Sydnee"}},{"attributes":{"name":"Clark Roberts","age":50,"location":"Rowechester"}},{"attributes":{"name":"Gordon Kerluke","age":36,"location":"West Chelsiestad"}},{"attributes":{"name":"Mr. Kenyon Hermann","age":50,"location":"Jessieside"}},{"attributes":{"name":"Alberta Smitham","age":77,"location":"Bahringerport"}},{"attributes":{"name":"Sharon White-Klocko","age":53,"location":"South Justynmouth"}},{"attributes":{"name":"Roman Corkery","age":43,"location":"Champlinbury"}},{"attributes":{"name":"Jayme Macejkovic","age":37,"location":"Dahliaboro"}},{"attributes":{"name":"Hans Huels","age":62,"location":"South Malcolm"}},{"attributes":{"name":"Oral Parker","age":19,"location":"Kemmerville"}},{"attributes":{"name":"Alberto Steuber","age":36,"location":"Wichita Falls"}},{"attributes":{"name":"Dr. Peter Shanahan","age":35,"location":"Sacramento"}},{"attributes":{"name":"Kristina Kuphal MD","age":62,"location":"Ornland"}},{"attributes":{"name":"Dr. Milton Zboncak IV","age":40,"location":"Fort Rettaboro"}},{"attributes":{"name":"Caroline Corwin","age":48,"location":"Fort Isom"}},{"attributes":{"name":"Melody Huel","age":79,"location":"Murphyland"}},{"attributes":{"name":"Derek Rogahn","age":22,"location":"Keelingfort"}},{"attributes":{"name":"Josie Ryan","age":29,"location":"Port Kristofertown"}},{"attributes":{"name":"Tracy Rogahn-Runte","age":34,"location":"North Emmanuelle"}},{"attributes":{"name":"Hannah Okuneva","age":36,"location":"West Michele"}},{"attributes":{"name":"Mr. Jalen Christiansen","age":34,"location":"Franeyboro"}},{"attributes":{"name":"Owen Cormier PhD","age":80,"location":"Monahanfield"}},{"attributes":{"name":"Alex Legros","age":35,"location":"O'Keefestead"}},{"attributes":{"name":"Ruben Wuckert","age":71,"location":"Meriden"}},{"attributes":{"name":"Demetris Bruen","age":39,"location":"South Herminiostad"}},{"attributes":{"name":"Dr. Reyna Skiles","age":64,"location":"Colestead"}},{"attributes":{"name":"Trevor Rodriguez","age":39,"location":"McDermottcester"}},{"attributes":{"name":"Ms. Vita Hane","age":56,"location":"Norfolk"}},{"attributes":{"name":"June Lynch IV","age":39,"location":"Kattieburgh"}},{"attributes":{"name":"Freda Heller Jr.","age":70,"location":"West Carolannetown"}},{"attributes":{"name":"Lisette Williamson DVM","age":34,"location":"Shieldstown"}},{"attributes":{"name":"Miss Silvia Ortiz","age":52,"location":"Overland Park"}},{"attributes":{"name":"Jeremy Balistreri","age":48,"location":"Vernonstad"}},{"attributes":{"name":"Marcel Waters V","age":59,"location":"East Jamarcusfield"}},{"attributes":{"name":"Oscar Hegmann III","age":45,"location":"Collinsboro"}},{"attributes":{"name":"Julien Marquardt","age":79,"location":"Kubstead"}},{"attributes":{"name":"Sarina Stroman","age":27,"location":"West Nigeltown"}},{"attributes":{"name":"Dr. Rosie Kuhn","age":18,"location":"Blandaside"}},{"attributes":{"name":"Dr. Clint Turcotte","age":53,"location":"North Skye"}},{"attributes":{"name":"Stephen Deckow","age":79,"location":"South Tiara"}},{"attributes":{"name":"Alice Davis","age":53,"location":"East Alivia"}},{"attributes":{"name":"Shelly Windler Jr.","age":18,"location":"Taylorsville"}},{"attributes":{"name":"Jose Kunze","age":27,"location":"Lubowitzstad"}},{"attributes":{"name":"Charles Hagenes","age":52,"location":"New Alia"}},{"attributes":{"name":"Kieran Adams","age":69,"location":"Lompoc"}},{"attributes":{"name":"Lorenzo Cassin","age":61,"location":"Raquelhaven"}},{"attributes":{"name":"Dr. Dianne Bins","age":59,"location":"Pine Bluff"}},{"attributes":{"name":"Mrs. Leola Gerhold","age":56,"location":"Port Ashleystad"}},{"attributes":{"name":"Christop McLaughlin III","age":59,"location":"Beckerworth"}},{"attributes":{"name":"Deborah Witting","age":61,"location":"East Delltown"}},{"attributes":{"name":"Jason Fahey","age":77,"location":"Albany"}},{"attributes":{"name":"Leslie Bechtelar","age":67,"location":"Pico Rivera"}},{"attributes":{"name":"Carlee Schoen","age":54,"location":"Wittingcester"}},{"attributes":{"name":"Adelia Koch","age":22,"location":"Warwick"}},{"attributes":{"name":"Brandon Sauer I","age":21,"location":"Roseton"}},{"attributes":{"name":"Philip Brown","age":29,"location":"Kuhlmanfort"}},{"attributes":{"name":"Mario Rohan","age":23,"location":"New Joymouth"}},{"attributes":{"name":"Marion Strosin","age":18,"location":"Rozellamouth"}},{"attributes":{"name":"Vivian Boehm","age":57,"location":"Simstad"}},{"attributes":{"name":"Mrs. Marlene Lueilwitz","age":46,"location":"Mafaldaburgh"}},{"attributes":{"name":"Ms. Al Kuhn","age":18,"location":"Littelmouth"}},{"attributes":{"name":"Dianne Ryan","age":35,"location":"South Santaville"}},{"attributes":{"name":"Pinkie Franey","age":23,"location":"Richardboro"}},{"attributes":{"name":"Lana Sanford-Walker","age":35,"location":"North Highlands"}},{"attributes":{"name":"Jeanette Nolan","age":73,"location":"Inglewood"}},{"attributes":{"name":"Jeromy Hudson","age":62,"location":"Blandabury"}},{"attributes":{"name":"Madisyn Torphy","age":56,"location":"Kieraboro"}},{"attributes":{"name":"Lisa Grimes","age":34,"location":"Pawtucket"}},{"attributes":{"name":"Gladys Anderson MD","age":66,"location":"Wilkinsoncester"}},{"attributes":{"name":"Faith Harvey","age":26,"location":"North Buckworth"}},{"attributes":{"name":"Dr. Trinity Donnelly","age":53,"location":"West Irwin"}},{"attributes":{"name":"Beulah Mayert-Cartwright","age":46,"location":"Lake Celestinomouth"}},{"attributes":{"name":"Dr. Edwin Schultz-Daniel","age":61,"location":"Tryciaside"}},{"attributes":{"name":"Carol Wiegand","age":80,"location":"Hazlestad"}},{"attributes":{"name":"Declan Reichert I","age":71,"location":"Rosenbaumton"}},{"attributes":{"name":"Marianna Stroman","age":58,"location":"Portage"}},{"attributes":{"name":"Elizabeth Heller","age":73,"location":"Lake Sheldonfield"}},{"attributes":{"name":"Wendy Tremblay","age":61,"location":"West Adriel"}},{"attributes":{"name":"Ernest Prosacco","age":18,"location":"Townestead"}},{"attributes":{"name":"Mr. Timothy Collier","age":57,"location":"Auroreburgh"}},{"attributes":{"name":"Lauren Murray-Roberts","age":75,"location":"West Matt"}},{"attributes":{"name":"Shakira Auer","age":77,"location":"Port Hendersonmouth"}},{"attributes":{"name":"Darnell Zulauf","age":79,"location":"Langoshport"}},{"attributes":{"name":"Mr. Zakary Pfeffer Sr.","age":40,"location":"Mantehaven"}},{"attributes":{"name":"Stephan Labadie","age":18,"location":"Deontestad"}},{"attributes":{"name":"Rodolfo Schaden IV","age":44,"location":"Kuhnshire"}},{"attributes":{"name":"Ms. Jeffery Zboncak","age":78,"location":"Danielmouth"}},{"attributes":{"name":"Arnold Cole","age":61,"location":"Isaiahfield"}},{"attributes":{"name":"Alek Dickens","age":63,"location":"Pittsfield"}},{"attributes":{"name":"Merle Olson","age":51,"location":"Feilhaven"}},{"attributes":{"name":"Brandon Beer","age":50,"location":"Port Aisha"}},{"attributes":{"name":"Heber Roberts","age":74,"location":"East Nobleworth"}},{"attributes":{"name":"Sherry Nolan","age":21,"location":"Lehi"}},{"attributes":{"name":"Steve Upton","age":54,"location":"East Heber"}},{"attributes":{"name":"Sidney Hartmann","age":22,"location":"Miami"}},{"attributes":{"name":"Benny Hilll","age":25,"location":"South Aisha"}},{"attributes":{"name":"Sadie Mraz","age":61,"location":"Weberstead"}},{"attributes":{"name":"Tammy Larkin","age":52,"location":"East Akeemfield"}},{"attributes":{"name":"Viva Boyle","age":31,"location":"Effertzfield"}},{"attributes":{"name":"Abel Brown PhD","age":54,"location":"Brycenview"}},{"attributes":{"name":"Geoffrey Wunsch","age":71,"location":"Mullerstead"}},{"attributes":{"name":"Percy Littel","age":41,"location":"Fort Eden"}},{"attributes":{"name":"Alberta Pollich","age":58,"location":"Highland"}},{"attributes":{"name":"Marion Herman","age":60,"location":"Lake Hailieton"}},{"attributes":{"name":"Penny Denesik","age":57,"location":"Federal Way"}},{"attributes":{"name":"Milton Franey","age":37,"location":"West Rosalind"}},{"attributes":{"name":"Wade Casper-Bergstrom","age":38,"location":"East Muhammadfurt"}},{"attributes":{"name":"Miss Silvia Wilkinson","age":19,"location":"New Sibylworth"}},{"attributes":{"name":"Mamie Ratke","age":53,"location":"Norwalk"}},{"attributes":{"name":"Luz Pacocha","age":36,"location":"Nathanialfield"}},{"attributes":{"name":"Jacques Abernathy","age":42,"location":"Boganville"}},{"attributes":{"name":"Alexis Hoppe","age":68,"location":"Denesikhaven"}},{"attributes":{"name":"Stuart Fay","age":69,"location":"Greenmouth"}},{"attributes":{"name":"Sophie Bergstrom","age":69,"location":"Padbergville"}},{"attributes":{"name":"Stephen Beahan","age":71,"location":"West Montechester"}},{"attributes":{"name":"Angel McDermott","age":75,"location":"Port Cecilview"}},{"attributes":{"name":"Tanya Balistreri","age":63,"location":"Bartonberg"}},{"attributes":{"name":"Sydney Heathcote","age":71,"location":"Obiestad"}},{"attributes":{"name":"Lenna Dare","age":80,"location":"East Reuben"}},{"attributes":{"name":"Dawn Nolan","age":46,"location":"Beattyfurt"}},{"attributes":{"name":"Tanya Weissnat","age":76,"location":"West Bryon"}},{"attributes":{"name":"Ross Rogahn","age":56,"location":"Lake Kay"}},{"attributes":{"name":"Lance Marquardt","age":76,"location":"Poway"}},{"attributes":{"name":"Dr. Lillian Howe","age":71,"location":"Tomasworth"}},{"attributes":{"name":"Dr. Gerda Collier","age":49,"location":"North Ava"}},{"attributes":{"name":"Cheyanne Rippin","age":24,"location":"Grahamburgh"}},{"attributes":{"name":"Ann Fisher","age":29,"location":"South Bertrand"}},{"attributes":{"name":"Tyrique Cummerata DDS","age":37,"location":"Tempe"}},{"attributes":{"name":"Dr. Shirley Raynor","age":36,"location":"New Greggboro"}},{"attributes":{"name":"Dr. Zelma Jacobson","age":40,"location":"South Gussieside"}},{"attributes":{"name":"Austyn Breitenberg","age":35,"location":"Winstonshire"}},{"attributes":{"name":"Patti Littel","age":50,"location":"North Jane"}},{"attributes":{"name":"Alvin Kovacek-Mayert I","age":24,"location":"Fort Nelda"}},{"attributes":{"name":"Mrs. Aric Russel","age":65,"location":"Sawaynborough"}},{"attributes":{"name":"Chelsey Altenwerth","age":20,"location":"Fort Carabury"}},{"attributes":{"name":"Maurice Hickle","age":74,"location":"Pouroschester"}},{"attributes":{"name":"Ransom Hudson","age":80,"location":"Fort Reymundoville"}},{"attributes":{"name":"Evelyn Bins","age":60,"location":"Lake Careyland"}},{"attributes":{"name":"Mr. Ricardo Crist","age":41,"location":"Fort Declanstead"}},{"attributes":{"name":"Mr. Darrin Mayert","age":30,"location":"East Mckenzie"}},{"attributes":{"name":"Forrest Cole","age":72,"location":"Albany"}},{"attributes":{"name":"Deshaun Hilll","age":58,"location":"Port Arielleport"}},{"attributes":{"name":"Ahmad Kuphal","age":26,"location":"North Dalton"}},{"attributes":{"name":"Cary Rutherford","age":46,"location":"Ortizchester"}},{"attributes":{"name":"Floyd Fisher","age":55,"location":"Lake Zettaview"}},{"attributes":{"name":"Lee Corkery","age":50,"location":"Chicago"}},{"attributes":{"name":"Dr. Jared Kassulke Jr.","age":44,"location":"New Graciela"}},{"attributes":{"name":"Saul Littel","age":76,"location":"Bartholometown"}},{"attributes":{"name":"Ada Greenholt","age":43,"location":"Port Cheyanne"}},{"attributes":{"name":"Mark Langosh-Parisian","age":67,"location":"Fort Keira"}},{"attributes":{"name":"Kraig Hyatt","age":19,"location":"Devonteburgh"}},{"attributes":{"name":"Miss Nick Zieme","age":67,"location":"Lake Ryannburgh"}},{"attributes":{"name":"Lucy Connelly","age":26,"location":"West Cullenside"}},{"attributes":{"name":"Sadie Franey","age":58,"location":"Fort Jacksonbury"}},{"attributes":{"name":"Willis Anderson","age":65,"location":"Boylemouth"}},{"attributes":{"name":"Lucy Reynolds","age":63,"location":"West Heath"}},{"attributes":{"name":"Gwendolyn Dibbert","age":45,"location":"Hamillfort"}},{"attributes":{"name":"Mrs. Buddy Lueilwitz","age":42,"location":"Shanahanchester"}},{"attributes":{"name":"Tyler Medhurst","age":18,"location":"Fort Eribertohaven"}},{"attributes":{"name":"Grace Grady","age":69,"location":"Gayleland"}},{"attributes":{"name":"Christy Beahan","age":74,"location":"North Timmy"}},{"attributes":{"name":"Marion Heidenreich","age":32,"location":"West Cortez"}},{"attributes":{"name":"Jenny Carter","age":42,"location":"North Dudleystead"}},{"attributes":{"name":"Otis Gusikowski","age":37,"location":"Lake Madyson"}},{"attributes":{"name":"Roberto Predovic","age":63,"location":"North Mathiaston"}},{"attributes":{"name":"Ms. Luther Jaskolski-Batz","age":51,"location":"East Caterina"}},{"attributes":{"name":"Antonette Okuneva","age":28,"location":"Maggiofort"}},{"attributes":{"name":"Janet Powlowski","age":21,"location":"Sarinaside"}},{"attributes":{"name":"Enola Friesen","age":78,"location":"Naderburgh"}},{"attributes":{"name":"Nathan Kirlin","age":46,"location":"South Arvillafield"}},{"attributes":{"name":"Gerda Green","age":46,"location":"Sanfordton"}},{"attributes":{"name":"Nicholas Carter","age":50,"location":"Cincinnati"}},{"attributes":{"name":"Dave Rohan","age":40,"location":"La Mesa"}},{"attributes":{"name":"Makenzie Ebert-Murray","age":55,"location":"North Candelario"}},{"attributes":{"name":"Leon Feil","age":30,"location":"Lake Mateo"}},{"attributes":{"name":"Gladys Gutmann","age":73,"location":"West Gregoriabury"}},{"attributes":{"name":"Kayden Langworth","age":65,"location":"Port Lizzieshire"}},{"attributes":{"name":"Silvia Quigley-Wintheiser","age":37,"location":"East Amie"}},{"attributes":{"name":"Jeremy Zboncak","age":23,"location":"Santa Cruz"}},{"attributes":{"name":"Rachael Toy V","age":34,"location":"North Madison"}},{"attributes":{"name":"Lew Dibbert","age":41,"location":"North Celestine"}},{"attributes":{"name":"Octavia Mraz","age":65,"location":"Schambergerboro"}},{"attributes":{"name":"Garett Dickinson","age":72,"location":"Colehaven"}},{"attributes":{"name":"Lillie Waelchi","age":48,"location":"Conradfurt"}},{"attributes":{"name":"Michale Paucek","age":42,"location":"Jackson"}},{"attributes":{"name":"Alberto Renner","age":30,"location":"San Tan Valley"}},{"attributes":{"name":"Maria VonRueden III","age":78,"location":"Lake Neldacester"}},{"attributes":{"name":"Christie Hansen","age":39,"location":"Dooleyport"}},{"attributes":{"name":"Warren Klocko","age":56,"location":"Lloydshire"}},{"attributes":{"name":"Cruz Grant","age":73,"location":"Fort Norenetown"}},{"attributes":{"name":"Kendall Oberbrunner","age":42,"location":"Fort Ardith"}},{"attributes":{"name":"Leticia Nitzsche","age":44,"location":"Lake Constantin"}},{"attributes":{"name":"Darryl Dibbert","age":66,"location":"Morarfield"}},{"attributes":{"name":"Eleonore Purdy","age":32,"location":"Candaceboro"}},{"attributes":{"name":"Luther Deckow","age":75,"location":"Hilo"}},{"attributes":{"name":"Shaylee Doyle","age":38,"location":"East Vernice"}},{"attributes":{"name":"Timmy Batz","age":33,"location":"Huelsfield"}},{"attributes":{"name":"Dr. Rudolph Wuckert-Bartell","age":76,"location":"Arecibo"}},{"attributes":{"name":"Gussie Welch","age":52,"location":"Daphneehaven"}},{"attributes":{"name":"Shaun Stanton-Harber","age":69,"location":"North Rocky"}},{"attributes":{"name":"Cora Hessel","age":46,"location":"Muellerborough"}},{"attributes":{"name":"Marvin Runte","age":68,"location":"North Santiagoshire"}},{"attributes":{"name":"Nellie Rath","age":48,"location":"Mosciskifurt"}},{"attributes":{"name":"Melvin Bruen","age":57,"location":"Lake Eldora"}},{"attributes":{"name":"Priscilla McKenzie","age":65,"location":"West Adancester"}},{"attributes":{"name":"Willis Schaefer","age":41,"location":"St. Joseph"}},{"attributes":{"name":"Alexie Hilll","age":59,"location":"Titusville"}},{"attributes":{"name":"Miss Tyra Ondricka","age":22,"location":"Hettingerburgh"}},{"attributes":{"name":"Mrs. Margie Watsica II","age":66,"location":"Johnstonview"}},{"attributes":{"name":"Laurel Konopelski","age":61,"location":"South Francisco"}},{"attributes":{"name":"Gregg Zieme","age":54,"location":"Lake Peterfort"}},{"attributes":{"name":"Johathan Ziemann","age":30,"location":"West Makayla"}},{"attributes":{"name":"Hailee Lueilwitz","age":39,"location":"Lavinastead"}},{"attributes":{"name":"Brenden Waelchi","age":42,"location":"Hoppechester"}},{"attributes":{"name":"Justice Kertzmann-DuBuque","age":39,"location":"Jerrodchester"}},{"attributes":{"name":"Robert Rempel","age":38,"location":"South Eugeneland"}},{"attributes":{"name":"Aric Kertzmann","age":44,"location":"St. Petersburg"}},{"attributes":{"name":"Vivian Lockman DDS","age":38,"location":"Boscoton"}},{"attributes":{"name":"Cary Hermann","age":62,"location":"Sylvanstead"}},{"attributes":{"name":"Maximo Jakubowski-Kreiger","age":80,"location":"Orvilleborough"}},{"attributes":{"name":"Miss Antonette Rolfson","age":74,"location":"Buffalo"}},{"attributes":{"name":"Drake Volkman","age":59,"location":"Kesslerland"}},{"attributes":{"name":"Miss Ransom Strosin","age":54,"location":"Port Marlonstead"}},{"attributes":{"name":"Samantha Osinski","age":78,"location":"Hartmannhaven"}},{"attributes":{"name":"Christine Lemke","age":38,"location":"Cummingsstead"}},{"attributes":{"name":"Ms. Jeannie Koelpin","age":71,"location":"Orlobury"}},{"attributes":{"name":"Darrell Strosin","age":28,"location":"Passaic"}},{"attributes":{"name":"Cecelia Schneider V","age":79,"location":"Hesselchester"}},{"attributes":{"name":"Rene Lebsack","age":65,"location":"Kokomo"}},{"attributes":{"name":"Gerda Kautzer","age":53,"location":"Fountain Valley"}},{"attributes":{"name":"Eula Hyatt","age":64,"location":"Bergebury"}},{"attributes":{"name":"Michael Kuhn","age":73,"location":"North Blake"}},{"attributes":{"name":"Ernestine Krajcik","age":65,"location":"South Lucas"}},{"attributes":{"name":"Miss Mossie Greenfelder","age":67,"location":"Dickinsonfield"}},{"attributes":{"name":"Miss Joanne Schumm","age":49,"location":"New Ludieworth"}},{"attributes":{"name":"Evan Cassin","age":61,"location":"Littleton"}},{"attributes":{"name":"Paris Rippin","age":75,"location":"Dianabury"}},{"attributes":{"name":"Rudolph Jaskolski","age":68,"location":"South Stephany"}},{"attributes":{"name":"Jerald Kuvalis","age":53,"location":"Silver Spring"}},{"attributes":{"name":"Denise Lind","age":20,"location":"Maynardmouth"}},{"attributes":{"name":"Diana Block","age":53,"location":"Schaeferburgh"}},{"attributes":{"name":"Reece Emmerich","age":43,"location":"North Walkerstead"}},{"attributes":{"name":"Maxine Rolfson","age":41,"location":"Mekhiberg"}},{"attributes":{"name":"Rashad Dach","age":57,"location":"Lake Kylastead"}},{"attributes":{"name":"Dr. Jeff Denesik","age":55,"location":"South Shaynaland"}},{"attributes":{"name":"Pedro Dickinson","age":46,"location":"East Orlando"}},{"attributes":{"name":"Fritz Koss PhD","age":56,"location":"Budmouth"}},{"attributes":{"name":"Cassandra Smitham","age":46,"location":"Volkmanfield"}},{"attributes":{"name":"Bill Harber V","age":25,"location":"Fort Robb"}},{"attributes":{"name":"Patty Wyman","age":37,"location":"Port Brigittestead"}},{"attributes":{"name":"Mr. Malvina D'Amore","age":69,"location":"East Lea"}},{"attributes":{"name":"Melba Mueller","age":64,"location":"Schambergerfurt"}},{"attributes":{"name":"Mr. Calvin Hickle","age":73,"location":"Karliechester"}},{"attributes":{"name":"Lyle Mitchell","age":60,"location":"Maple Grove"}},{"attributes":{"name":"Madalyn Crona","age":57,"location":"East Hartford"}},{"attributes":{"name":"Claudia Trantow","age":69,"location":"Zitacester"}},{"attributes":{"name":"Bradly White","age":56,"location":"Duncanside"}},{"attributes":{"name":"Dr. Enoch Hegmann","age":80,"location":"Carson City"}},{"attributes":{"name":"Olga Parker","age":71,"location":"New Fannie"}},{"attributes":{"name":"Homer Prohaska","age":74,"location":"Toneytown"}},{"attributes":{"name":"Dr. Kelvin Gottlieb","age":62,"location":"Hankton"}},{"attributes":{"name":"Cordell Jakubowski DVM","age":21,"location":"Whitneystad"}},{"attributes":{"name":"Josh Waters","age":80,"location":"New Demetris"}},{"attributes":{"name":"Terry Johnston","age":23,"location":"Abilene"}},{"attributes":{"name":"Elmer Brekke","age":73,"location":"Port Breannefurt"}},{"attributes":{"name":"Clovis Kuphal","age":49,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Mr. Dan Batz","age":44,"location":"Lake Glendatown"}},{"attributes":{"name":"Preston Heller","age":53,"location":"Coachella"}},{"attributes":{"name":"Carter Stehr","age":54,"location":"East Blake"}},{"attributes":{"name":"Mr. Paris Reichert I","age":60,"location":"Goldnerview"}},{"attributes":{"name":"Mary Erdman","age":55,"location":"Keelingchester"}},{"attributes":{"name":"Margarita Larkin","age":78,"location":"Boscobury"}},{"attributes":{"name":"Rodney Grady","age":36,"location":"Delray Beach"}},{"attributes":{"name":"Mrs. Jonatan Connelly","age":27,"location":"Antioch"}},{"attributes":{"name":"Cristina Frami","age":69,"location":"Montanaborough"}},{"attributes":{"name":"Mariah Swift","age":47,"location":"Davisstad"}},{"attributes":{"name":"Willard Schuppe","age":76,"location":"Weymouth Town"}},{"attributes":{"name":"Anne Pollich","age":62,"location":"North Anderson"}},{"attributes":{"name":"Martina Gorczany","age":71,"location":"Port Carmelohaven"}},{"attributes":{"name":"Shari Orn","age":33,"location":"South Rebekah"}},{"attributes":{"name":"Francis Runolfsson","age":57,"location":"West Sean"}},{"attributes":{"name":"Al Metz","age":39,"location":"Lake Walkerview"}},{"attributes":{"name":"Mrs. Devin MacGyver","age":27,"location":"Fort Shadtown"}},{"attributes":{"name":"Adrian Wunsch IV","age":43,"location":"Raynorfort"}},{"attributes":{"name":"Desiree Prosacco","age":38,"location":"Kuhlmanland"}},{"attributes":{"name":"Ramiro West","age":56,"location":"Carterfort"}},{"attributes":{"name":"Jody Brakus","age":71,"location":"Watsicafurt"}},{"attributes":{"name":"Courtney Hermann","age":47,"location":"Port Abbyworth"}},{"attributes":{"name":"Mr. Alexander Tremblay-Wisoky","age":56,"location":"East Susana"}},{"attributes":{"name":"Princess Schuster-Rosenbaum","age":64,"location":"Danville"}},{"attributes":{"name":"Levi Borer","age":46,"location":"Uptonfort"}},{"attributes":{"name":"Lurline Kertzmann","age":19,"location":"East Cory"}},{"attributes":{"name":"Samson Wilderman","age":74,"location":"New Roxanne"}},{"attributes":{"name":"Nicholas Padberg","age":32,"location":"Zulaufville"}},{"attributes":{"name":"Andrea Tremblay","age":78,"location":"New Rosario"}},{"attributes":{"name":"Kelsie Balistreri","age":77,"location":"Smithside"}},{"attributes":{"name":"Jane Keeling","age":51,"location":"Runteland"}},{"attributes":{"name":"Javier Wisozk IV","age":72,"location":"North Catharineshire"}},{"attributes":{"name":"Willard Batz","age":29,"location":"Lake Lillianshire"}},{"attributes":{"name":"Damon Mraz IV","age":62,"location":"Daly City"}},{"attributes":{"name":"Jamie Von","age":23,"location":"Fort Wava"}},{"attributes":{"name":"Roberta Schinner","age":54,"location":"Quigleyborough"}},{"attributes":{"name":"Tiara Ankunding","age":78,"location":"Larkinstead"}},{"attributes":{"name":"Paula Bernier","age":73,"location":"West Covina"}},{"attributes":{"name":"Nichole Jacobi","age":55,"location":"Woodland"}},{"attributes":{"name":"Dr. Joe Leffler","age":76,"location":"West Keshawn"}},{"attributes":{"name":"Melba Okuneva","age":52,"location":"Bedford"}},{"attributes":{"name":"Randy Johnson","age":33,"location":"Reymundotown"}},{"attributes":{"name":"Shari Wyman","age":67,"location":"Lacey"}},{"attributes":{"name":"Terrence Beatty","age":29,"location":"Catherinefurt"}},{"attributes":{"name":"Danny Hane","age":33,"location":"South Ellsworthhaven"}},{"attributes":{"name":"Karla McDermott V","age":45,"location":"Dannyside"}},{"attributes":{"name":"Paul Rodriguez","age":76,"location":"Trenton"}},{"attributes":{"name":"Ahmed Becker","age":76,"location":"Lake Juniorview"}},{"attributes":{"name":"Derrick Nitzsche II","age":55,"location":"Rebecahaven"}},{"attributes":{"name":"Cecilia Wilkinson IV","age":74,"location":"Enolaton"}},{"attributes":{"name":"Marlene Armstrong II","age":31,"location":"Lake Chesley"}},{"attributes":{"name":"Reinhold O'Connell","age":34,"location":"Fort Gaetano"}},{"attributes":{"name":"Dr. Stewart Ritchie","age":51,"location":"Port Flavie"}},{"attributes":{"name":"Garnet Hammes","age":52,"location":"Emmietown"}},{"attributes":{"name":"Rolando Durgan","age":43,"location":"Battle Creek"}},{"attributes":{"name":"Ramiro Pacocha","age":55,"location":"Port Elisehaven"}},{"attributes":{"name":"Erma Dickens","age":78,"location":"Tulare"}},{"attributes":{"name":"Vicenta Wilkinson-Cormier","age":47,"location":"Quitzonburgh"}},{"attributes":{"name":"Mr. Byron Abernathy","age":29,"location":"Hettingerboro"}},{"attributes":{"name":"Estell Nader","age":48,"location":"Hipolitostad"}},{"attributes":{"name":"Tara MacGyver","age":23,"location":"North Kane"}},{"attributes":{"name":"Emily Bauch","age":44,"location":"Levittown"}},{"attributes":{"name":"Misty Tillman Jr.","age":35,"location":"Chattanooga"}},{"attributes":{"name":"Carl Nolan","age":40,"location":"Lake Leif"}},{"attributes":{"name":"Shelly Blick","age":27,"location":"Lelandside"}},{"attributes":{"name":"Kim Wolf","age":62,"location":"East Layne"}},{"attributes":{"name":"Santa Ryan","age":80,"location":"Heidenreichshire"}},{"attributes":{"name":"Nash Hilpert","age":35,"location":"North Mohammedhaven"}},{"attributes":{"name":"Clementine Fritsch","age":37,"location":"Lake Ilaboro"}},{"attributes":{"name":"Noel Koelpin","age":55,"location":"Fort Ernestina"}},{"attributes":{"name":"Simon Olson","age":24,"location":"Stephanieboro"}},{"attributes":{"name":"Ada Kozey","age":39,"location":"Hoppeton"}},{"attributes":{"name":"Reginald Hilpert","age":36,"location":"Nettieport"}},{"attributes":{"name":"Donald Bechtelar","age":67,"location":"Legrosbury"}},{"attributes":{"name":"Haylee Funk","age":24,"location":"Anjalifort"}},{"attributes":{"name":"Augusta Friesen","age":21,"location":"Conroe"}},{"attributes":{"name":"Kelvin Weimann","age":19,"location":"Porterburgh"}},{"attributes":{"name":"Dr. Hector Effertz","age":27,"location":"Millerburgh"}},{"attributes":{"name":"Amber Kunze-Daniel","age":24,"location":"North Frederique"}},{"attributes":{"name":"Kari Morissette III","age":45,"location":"South Naomiefort"}},{"attributes":{"name":"Delbert Dare","age":22,"location":"Chicago"}},{"attributes":{"name":"Marjorie Friesen","age":21,"location":"North Imaniburgh"}},{"attributes":{"name":"Melany Toy V","age":47,"location":"Kozeyport"}},{"attributes":{"name":"Kayley Lowe","age":45,"location":"South Thea"}},{"attributes":{"name":"Viola Brakus","age":53,"location":"Port Francisca"}},{"attributes":{"name":"Ricardo Mann DVM","age":25,"location":"New Kylee"}},{"attributes":{"name":"Heidi Bernier","age":74,"location":"Mylesstad"}},{"attributes":{"name":"Phillip Reinger","age":48,"location":"Lillianaport"}},{"attributes":{"name":"Mrs. Hector Vandervort","age":58,"location":"Olsonburgh"}},{"attributes":{"name":"Jedediah Bergnaum","age":41,"location":"East Billy"}},{"attributes":{"name":"Katie Bashirian","age":20,"location":"Lake Dolorestown"}},{"attributes":{"name":"Deon Hand","age":71,"location":"Fort Lottiefurt"}},{"attributes":{"name":"Creola Gibson DVM","age":35,"location":"New Bethview"}},{"attributes":{"name":"Adrienne Tremblay","age":56,"location":"Bayonne"}},{"attributes":{"name":"Colby Kihn","age":20,"location":"Fishers"}},{"attributes":{"name":"Marlen Wyman","age":78,"location":"South Ofeliahaven"}},{"attributes":{"name":"Jonathan Halvorson","age":48,"location":"Lincoln"}},{"attributes":{"name":"Mr. Natalia Rohan","age":61,"location":"South Keshaun"}},{"attributes":{"name":"Skye Moen","age":48,"location":"Blairhaven"}},{"attributes":{"name":"Fred Greenholt","age":47,"location":"Greenholttown"}},{"attributes":{"name":"Delta Altenwerth","age":71,"location":"Pearl City"}},{"attributes":{"name":"Danielle West","age":80,"location":"Jailynstad"}},{"attributes":{"name":"Aniyah Corwin","age":35,"location":"Maryside"}},{"attributes":{"name":"Melvina Gulgowski-Spinka Sr.","age":46,"location":"Louside"}},{"attributes":{"name":"Noah Cummerata","age":51,"location":"Johnniebury"}},{"attributes":{"name":"Katelin Kiehn","age":77,"location":"Volkmanboro"}},{"attributes":{"name":"Elbert Champlin","age":19,"location":"New Evaberg"}},{"attributes":{"name":"Geraldine Ernser-Parker","age":65,"location":"East Linnieton"}},{"attributes":{"name":"Willie Schmeler","age":58,"location":"Daytona Beach"}},{"attributes":{"name":"Barbara Veum","age":37,"location":"North Haleigh"}},{"attributes":{"name":"Monroe Mosciski","age":56,"location":"Charlenefield"}},{"attributes":{"name":"Madilyn Russel","age":78,"location":"Mariliefurt"}},{"attributes":{"name":"Mr. Lee Kuhn","age":49,"location":"Framingham"}},{"attributes":{"name":"Lela Brekke","age":56,"location":"Jamiestead"}},{"attributes":{"name":"Oscar Batz Sr.","age":53,"location":"Fort Robinborough"}},{"attributes":{"name":"Kyler Halvorson","age":44,"location":"Ervinborough"}},{"attributes":{"name":"Maryann Larson","age":52,"location":"Alexandroboro"}},{"attributes":{"name":"Glen Cronin","age":23,"location":"Hirtheborough"}},{"attributes":{"name":"Dr. Jessy Stark","age":66,"location":"Kendall"}},{"attributes":{"name":"Patty Ankunding","age":31,"location":"Deltaburgh"}},{"attributes":{"name":"Miss Brooke Gleason","age":60,"location":"Johnsonfurt"}},{"attributes":{"name":"Freeda Ritchie","age":40,"location":"South Kayden"}},{"attributes":{"name":"Miss Marie Bernhard","age":57,"location":"Moreno Valley"}},{"attributes":{"name":"Anita Kuphal","age":65,"location":"East Layla"}},{"attributes":{"name":"Kendra Lind","age":79,"location":"Savannahside"}},{"attributes":{"name":"Marsha Satterfield V","age":24,"location":"West Seneca"}},{"attributes":{"name":"Selena Upton","age":34,"location":"Camden"}},{"attributes":{"name":"Deanna Kuhlman","age":50,"location":"Minot"}},{"attributes":{"name":"Marcia Pouros","age":78,"location":"Tallahassee"}},{"attributes":{"name":"Myra Koelpin","age":78,"location":"Chattanooga"}},{"attributes":{"name":"Lula Wilkinson-Quitzon","age":30,"location":"Fort Lysanneville"}},{"attributes":{"name":"Gina Shields","age":30,"location":"North Jayson"}},{"attributes":{"name":"Dr. Wava Nitzsche-Rutherford","age":80,"location":"Lake Ruthieboro"}},{"attributes":{"name":"Elisa Hermann","age":61,"location":"South Jaidaborough"}},{"attributes":{"name":"Mr. Bobby Marks","age":63,"location":"Middletown"}},{"attributes":{"name":"Tiana Hartmann","age":36,"location":"Fort Winnifred"}},{"attributes":{"name":"Claire Breitenberg","age":33,"location":"Bruenstead"}},{"attributes":{"name":"Gustavo Sporer","age":74,"location":"Mosciskiborough"}},{"attributes":{"name":"Muhammad Hintz","age":24,"location":"South Arielleworth"}},{"attributes":{"name":"Leon Grady V","age":57,"location":"North Nathanael"}},{"attributes":{"name":"Pamela Howell","age":80,"location":"Taylor"}},{"attributes":{"name":"Darrin Hauck","age":23,"location":"East Sammyton"}},{"attributes":{"name":"Walton Schaefer","age":64,"location":"North Willardcester"}},{"attributes":{"name":"Marcus Tillman","age":46,"location":"Toytown"}},{"attributes":{"name":"Colten McCullough","age":51,"location":"New Madisonport"}},{"attributes":{"name":"Cydney Kiehn","age":23,"location":"Pinellas Park"}},{"attributes":{"name":"Boyd Champlin-Sanford","age":80,"location":"North Fannieland"}},{"attributes":{"name":"Tianna Kohler","age":71,"location":"Marysestad"}},{"attributes":{"name":"Dane Hahn","age":25,"location":"Aloha"}},{"attributes":{"name":"Beulah Tillman","age":28,"location":"North Neal"}},{"attributes":{"name":"Arlene Will","age":74,"location":"Lakeland"}},{"attributes":{"name":"Maggie Ondricka","age":53,"location":"Palmdale"}},{"attributes":{"name":"Grace Bashirian DVM","age":37,"location":"North Randi"}},{"attributes":{"name":"Eula Heller","age":26,"location":"Friesenhaven"}},{"attributes":{"name":"Hayley Luettgen","age":77,"location":"North Mustafaworth"}},{"attributes":{"name":"Jermaine Osinski","age":46,"location":"Brookview"}},{"attributes":{"name":"Katelyn Kreiger","age":48,"location":"Baton Rouge"}},{"attributes":{"name":"Blake Lindgren","age":31,"location":"Carolinebury"}},{"attributes":{"name":"Robyn Hoppe","age":76,"location":"Augusta-Richmond County"}},{"attributes":{"name":"Troy Wilkinson","age":58,"location":"Port Brannonmouth"}},{"attributes":{"name":"Jonatan Marvin","age":39,"location":"Pharr"}},{"attributes":{"name":"Johnny Glover","age":46,"location":"Julieport"}},{"attributes":{"name":"Francis Donnelly Sr.","age":35,"location":"Broomfield"}},{"attributes":{"name":"Florence Moore MD","age":73,"location":"Port Courtney"}},{"attributes":{"name":"Mrs. Herman West","age":70,"location":"East Edmond"}},{"attributes":{"name":"Theodore Paucek","age":19,"location":"North Isidro"}},{"attributes":{"name":"Cameron Kutch DVM","age":61,"location":"South Terrenceshire"}},{"attributes":{"name":"Nadine Moore PhD","age":30,"location":"Turlock"}},{"attributes":{"name":"Kerry Kautzer DVM","age":68,"location":"Lake Lenorestad"}},{"attributes":{"name":"Mr. Melyssa Hackett","age":19,"location":"West Olestad"}},{"attributes":{"name":"Sid Schmeler","age":76,"location":"Lake Diamondmouth"}},{"attributes":{"name":"Hildegard Ritchie","age":51,"location":"Bartellstad"}},{"attributes":{"name":"Ms. Ayana O'Reilly","age":48,"location":"Fort Sabinashire"}},{"attributes":{"name":"Burnice Nikolaus","age":62,"location":"Port Tia"}},{"attributes":{"name":"Rita Cormier","age":47,"location":"Port Aliyahaven"}},{"attributes":{"name":"Ora Grant-Turcotte","age":28,"location":"Wichita"}},{"attributes":{"name":"Stephen Smith","age":30,"location":"Sanfordville"}},{"attributes":{"name":"Ernestina Romaguera MD","age":73,"location":"Skylarmouth"}},{"attributes":{"name":"Jeff Weber Sr.","age":20,"location":"Wolffstead"}},{"attributes":{"name":"Jamie VonRueden","age":70,"location":"Lake Kaylinton"}},{"attributes":{"name":"Dylan Lebsack","age":19,"location":"Tuckahoe"}},{"attributes":{"name":"Ansley Nitzsche","age":37,"location":"Port Rebeka"}},{"attributes":{"name":"Dr. Adeline White II","age":35,"location":"South Abelardo"}},{"attributes":{"name":"Jeremiah Ankunding","age":38,"location":"Walshtown"}},{"attributes":{"name":"Isabell Parker I","age":44,"location":"Bogisichport"}},{"attributes":{"name":"Patience Will Sr.","age":43,"location":"Revere"}},{"attributes":{"name":"Mr. Murray Nader","age":44,"location":"East Alvenafield"}},{"attributes":{"name":"Tobin Jones","age":23,"location":"Port Makennafort"}},{"attributes":{"name":"Vera Bergnaum DVM","age":45,"location":"Jerdeton"}},{"attributes":{"name":"Joseph Bauch","age":25,"location":"West Kolbyboro"}},{"attributes":{"name":"Blanca Beer","age":32,"location":"Einoborough"}},{"attributes":{"name":"Elise Collins","age":78,"location":"Dorianport"}},{"attributes":{"name":"Lori Klocko","age":73,"location":"Jacobsontown"}},{"attributes":{"name":"Miss Marion West","age":76,"location":"Doyleton"}},{"attributes":{"name":"Macy Schmitt","age":59,"location":"East Armando"}},{"attributes":{"name":"Donald Hyatt","age":48,"location":"Haskellhaven"}},{"attributes":{"name":"Nels Hettinger","age":46,"location":"Dorisberg"}},{"attributes":{"name":"Edward Stokes","age":41,"location":"Veronicachester"}},{"attributes":{"name":"Lilyan Stark","age":70,"location":"Rowlett"}},{"attributes":{"name":"Dr. Elyssa Toy","age":56,"location":"Nicolasport"}},{"attributes":{"name":"Merle Nienow","age":77,"location":"Cassandrechester"}},{"attributes":{"name":"Maddison Lind","age":59,"location":"Joyceshire"}},{"attributes":{"name":"Donna Hoeger","age":59,"location":"Lake Magnusworth"}},{"attributes":{"name":"Randall Lueilwitz","age":57,"location":"Tustin"}},{"attributes":{"name":"Emie Wintheiser","age":32,"location":"Fort Joliemouth"}},{"attributes":{"name":"Francisco Kilback","age":62,"location":"Hettingerfield"}},{"attributes":{"name":"Donald Barrows","age":37,"location":"Lefflerberg"}},{"attributes":{"name":"Rodrigo Morissette II","age":72,"location":"Fort Itzel"}},{"attributes":{"name":"Chauncey Purdy","age":23,"location":"Lake Kenneth"}},{"attributes":{"name":"Amy Rohan","age":31,"location":"Ann Arbor"}},{"attributes":{"name":"Doris Schmitt","age":53,"location":"Grand Forks"}},{"attributes":{"name":"Patti Kozey","age":50,"location":"Lake Orionmouth"}},{"attributes":{"name":"Andreane Huel PhD","age":61,"location":"Port Damian"}},{"attributes":{"name":"Bernadette Kirlin","age":37,"location":"New Meredith"}},{"attributes":{"name":"Billy Schowalter","age":60,"location":"Fort Trevorview"}},{"attributes":{"name":"Tricia Homenick","age":23,"location":"Port Estellburgh"}},{"attributes":{"name":"Sid Shields","age":57,"location":"Beckerbury"}},{"attributes":{"name":"Olga Grady","age":67,"location":"Fort Deborah"}},{"attributes":{"name":"Anne Zboncak PhD","age":60,"location":"Lakincester"}},{"attributes":{"name":"Mireille Funk-Nicolas","age":79,"location":"Lake Aylin"}},{"attributes":{"name":"Christine Donnelly","age":37,"location":"Raleigh"}},{"attributes":{"name":"Korbin Littel-Walter DDS","age":39,"location":"North Mohamedfort"}},{"attributes":{"name":"Don Carroll I","age":68,"location":"Willchester"}},{"attributes":{"name":"Cheyanne Schmitt","age":78,"location":"Vandervortstead"}},{"attributes":{"name":"Leonard Maggio","age":20,"location":"Baytown"}},{"attributes":{"name":"Maryann Ebert","age":79,"location":"Cummingscester"}},{"attributes":{"name":"Benjamin Labadie","age":49,"location":"Miramar"}},{"attributes":{"name":"Zachery Kozey","age":73,"location":"Ashlytown"}},{"attributes":{"name":"Vernon McClure","age":59,"location":"Marcelinofurt"}},{"attributes":{"name":"Blanche Marvin","age":78,"location":"Midwest City"}},{"attributes":{"name":"Corey Heathcote","age":47,"location":"New Augusta"}},{"attributes":{"name":"Dr. Johnnie Ferry","age":57,"location":"South Edytheton"}},{"attributes":{"name":"Skylar Jacobs","age":73,"location":"Reynoldsstad"}},{"attributes":{"name":"Hank Kilback","age":52,"location":"South Paula"}},{"attributes":{"name":"Corey Wisozk","age":19,"location":"Lake Gerard"}},{"attributes":{"name":"Asia Hamill","age":33,"location":"Port Tierraview"}},{"attributes":{"name":"Shelia Haley","age":27,"location":"Newtonfield"}},{"attributes":{"name":"Tyler Gibson","age":40,"location":"Dothan"}},{"attributes":{"name":"Travis Rowe","age":64,"location":"West Alizeboro"}},{"attributes":{"name":"Mitchell Larson","age":46,"location":"Hirtheberg"}},{"attributes":{"name":"Emma Funk-Block","age":18,"location":"New Wilburnstead"}},{"attributes":{"name":"Lorena Johnson","age":29,"location":"Hendersonton"}},{"attributes":{"name":"Garrett Fay","age":49,"location":"West Keltonville"}},{"attributes":{"name":"Kevin Watsica","age":30,"location":"Fort Jackie"}},{"attributes":{"name":"Lisandro Kihn","age":41,"location":"Reston"}},{"attributes":{"name":"Dale Schowalter","age":77,"location":"Aracelyfurt"}},{"attributes":{"name":"Darrin Marks","age":68,"location":"South Jerry"}},{"attributes":{"name":"Kip Turner","age":29,"location":"Port Gretchen"}},{"attributes":{"name":"Jason Tremblay","age":31,"location":"Port Meggie"}},{"attributes":{"name":"Hulda Koepp","age":50,"location":"Kreigerfort"}},{"attributes":{"name":"Kendall Johnson","age":77,"location":"Bowie"}},{"attributes":{"name":"Miss Clay Lehner","age":73,"location":"Apopka"}},{"attributes":{"name":"Lyle Ondricka","age":34,"location":"Jenatown"}},{"attributes":{"name":"Mr. Joshua Simonis","age":75,"location":"North Eloiseshire"}},{"attributes":{"name":"Rita Skiles","age":49,"location":"Broderickport"}},{"attributes":{"name":"Jaclyn Heaney","age":48,"location":"New Ressie"}},{"attributes":{"name":"Jody Hettinger","age":48,"location":"Shreveport"}},{"attributes":{"name":"Anabelle Kerluke","age":35,"location":"Brookstown"}},{"attributes":{"name":"Mr. Sherri O'Reilly II","age":45,"location":"Jenkinston"}},{"attributes":{"name":"Amelia Hahn-Cruickshank","age":39,"location":"Croninstead"}},{"attributes":{"name":"Josh Ratke","age":26,"location":"Warner Robins"}},{"attributes":{"name":"Calvin Murray","age":18,"location":"South Marlin"}},{"attributes":{"name":"Elsie Bogisich","age":33,"location":"Lake Sim"}},{"attributes":{"name":"Turner Ullrich","age":63,"location":"East Julie"}},{"attributes":{"name":"Steve Lubowitz","age":30,"location":"Framistead"}},{"attributes":{"name":"Miss Alyce Christiansen","age":47,"location":"New Declan"}},{"attributes":{"name":"Brittany Witting","age":50,"location":"Lancefield"}},{"attributes":{"name":"Maritza Zieme","age":26,"location":"Carleebury"}},{"attributes":{"name":"Mr. Jim Beier","age":74,"location":"Hilperttown"}},{"attributes":{"name":"Roman Rempel","age":64,"location":"Aleenfort"}},{"attributes":{"name":"Mr. Robin Berge-Crona","age":76,"location":"Bodeworth"}},{"attributes":{"name":"Vicki Jacobi","age":46,"location":"Great Falls"}},{"attributes":{"name":"Constance Greenholt III","age":74,"location":"Bel Air South"}},{"attributes":{"name":"Isabelle Spinka","age":20,"location":"Pleasanton"}},{"attributes":{"name":"Lawrence Deckow","age":22,"location":"Cynthiaborough"}},{"attributes":{"name":"Jason Robel","age":43,"location":"South Melbafort"}},{"attributes":{"name":"Jeanne McGlynn","age":45,"location":"South Aidenfield"}},{"attributes":{"name":"Joesph Waelchi","age":60,"location":"Corwinville"}},{"attributes":{"name":"Laurine Torp","age":60,"location":"South Eldridgefort"}},{"attributes":{"name":"Marshall Cronin","age":75,"location":"Wehnertown"}},{"attributes":{"name":"Miss Waino Emard-Cartwright","age":64,"location":"West Manleyville"}},{"attributes":{"name":"Matthew Lang","age":73,"location":"North Gabriella"}},{"attributes":{"name":"Elsa Ankunding","age":79,"location":"Lake Terrancefield"}},{"attributes":{"name":"Everett Konopelski-Ratke","age":36,"location":"Roxaneville"}},{"attributes":{"name":"Dr. Bob Feeney","age":38,"location":"Jenkinsfield"}},{"attributes":{"name":"Dallas Adams","age":59,"location":"Jacyntheburgh"}},{"attributes":{"name":"Lynn Bergstrom","age":29,"location":"Pagacboro"}},{"attributes":{"name":"Oren Cronin-Halvorson","age":48,"location":"Emardbury"}},{"attributes":{"name":"Derek Satterfield","age":77,"location":"Sydneystad"}},{"attributes":{"name":"Dr. Freddie Boyer","age":72,"location":"Reillyfort"}},{"attributes":{"name":"Deanna Nolan","age":40,"location":"Garland"}},{"attributes":{"name":"Marisa Cassin","age":58,"location":"Stromanland"}},{"attributes":{"name":"Alexis Bradtke","age":32,"location":"Ledafurt"}},{"attributes":{"name":"Kristopher Trantow","age":21,"location":"Lake Isaiasstad"}},{"attributes":{"name":"Robin Feeney","age":40,"location":"Mertzport"}},{"attributes":{"name":"Marie Johns","age":55,"location":"Ilenebury"}},{"attributes":{"name":"Miss Abbigail Prosacco","age":79,"location":"Chesleychester"}},{"attributes":{"name":"Erick Leffler","age":65,"location":"Port Wellingtonfield"}},{"attributes":{"name":"Drew Russel IV","age":31,"location":"Kenyonberg"}},{"attributes":{"name":"Ms. Edward Stark","age":45,"location":"Port Vivienmouth"}},{"attributes":{"name":"Mack Heaney","age":39,"location":"South Kole"}},{"attributes":{"name":"Mary Barton","age":40,"location":"West Rodrickfort"}},{"attributes":{"name":"Alene Keebler","age":54,"location":"Port Lianaberg"}},{"attributes":{"name":"Jorge McGlynn","age":61,"location":"Country Club"}},{"attributes":{"name":"Wendell Emmerich","age":60,"location":"Rempelside"}},{"attributes":{"name":"Morris Ferry","age":75,"location":"Margaritahaven"}},{"attributes":{"name":"Hattie Lockman","age":56,"location":"New Claudine"}},{"attributes":{"name":"Emmett Leffler","age":49,"location":"Boynton Beach"}},{"attributes":{"name":"Jasmine Bechtelar Jr.","age":28,"location":"Plymouth"}},{"attributes":{"name":"Miss Verla Marquardt","age":34,"location":"East Alden"}},{"attributes":{"name":"Yvette Nader","age":23,"location":"East Rickeyport"}},{"attributes":{"name":"Mr. Cristobal Anderson","age":61,"location":"New Lottieport"}},{"attributes":{"name":"Janice Kilback","age":47,"location":"North Alexandreshire"}},{"attributes":{"name":"Marianne O'Hara","age":19,"location":"Fort Kathleencester"}},{"attributes":{"name":"Jasen Cummings DDS","age":71,"location":"East Kelvinfurt"}},{"attributes":{"name":"Yvonne Morissette","age":19,"location":"Konopelskiberg"}},{"attributes":{"name":"Kiley Funk","age":41,"location":"Sipesmouth"}},{"attributes":{"name":"Conrad Blick","age":70,"location":"Willmouth"}},{"attributes":{"name":"Verda Schmeler","age":28,"location":"North Dillon"}},{"attributes":{"name":"Janice Considine","age":22,"location":"New Dena"}},{"attributes":{"name":"Ryley Bartell I","age":54,"location":"San Juan"}},{"attributes":{"name":"Kayden Quitzon","age":78,"location":"Bonita Springs"}},{"attributes":{"name":"Krystel Collier","age":31,"location":"Lake Edmund"}},{"attributes":{"name":"Ora Boyer","age":40,"location":"Murrayhaven"}},{"attributes":{"name":"Una Hessel","age":67,"location":"Colinside"}},{"attributes":{"name":"Laurie Bradtke","age":32,"location":"Zboncakport"}},{"attributes":{"name":"Malcolm Boyle","age":72,"location":"Fort Martamouth"}},{"attributes":{"name":"Melody Nader-Kunde","age":54,"location":"New Lisettechester"}},{"attributes":{"name":"Alejandrin Erdman","age":32,"location":"Lake Dariushaven"}},{"attributes":{"name":"Lorena Mills","age":63,"location":"Jamelmouth"}},{"attributes":{"name":"Jeanette Leffler","age":26,"location":"Millcreek"}},{"attributes":{"name":"Eduardo Altenwerth","age":69,"location":"Daughertyfurt"}},{"attributes":{"name":"Guadalupe Schuster","age":75,"location":"North Hortense"}},{"attributes":{"name":"Sydni Murphy","age":58,"location":"New Ransom"}},{"attributes":{"name":"Leigh Hessel","age":27,"location":"Gresham"}},{"attributes":{"name":"Icie Strosin-Rutherford","age":26,"location":"Schimmelport"}},{"attributes":{"name":"Alexie Hackett","age":57,"location":"East Jabariborough"}},{"attributes":{"name":"Bud Monahan","age":67,"location":"Kossmouth"}},{"attributes":{"name":"Ollie Stokes","age":52,"location":"Fort Chelsea"}},{"attributes":{"name":"Jameson Breitenberg","age":19,"location":"North Margarita"}},{"attributes":{"name":"Maurice Langworth","age":36,"location":"Kiehnberg"}},{"attributes":{"name":"Jesus Boyle","age":22,"location":"Huelfort"}},{"attributes":{"name":"Cecelia Walker","age":70,"location":"Fayworth"}},{"attributes":{"name":"Patti Stamm IV","age":59,"location":"Hilperttown"}},{"attributes":{"name":"Dr. Nathaniel Beier","age":24,"location":"Howellstead"}},{"attributes":{"name":"Salvador Halvorson","age":62,"location":"North Shanellecester"}},{"attributes":{"name":"Idell Zboncak","age":80,"location":"Guaynabo"}},{"attributes":{"name":"Fernando Okuneva DVM","age":20,"location":"Nolaland"}},{"attributes":{"name":"Mrs. Dixie Nader","age":48,"location":"Ozellahaven"}},{"attributes":{"name":"Glen Ortiz","age":30,"location":"Frederikmouth"}},{"attributes":{"name":"Lacey Metz PhD","age":72,"location":"Port Yesenia"}},{"attributes":{"name":"Santos Casper","age":47,"location":"East Chaimstead"}},{"attributes":{"name":"Rae Collins","age":47,"location":"Plymouth"}},{"attributes":{"name":"Tina Hills","age":66,"location":"East Lindsayshire"}},{"attributes":{"name":"Hugh Harris","age":61,"location":"New Thaddeusmouth"}},{"attributes":{"name":"Marcella Green","age":46,"location":"Fort Patsytown"}},{"attributes":{"name":"Ms. Kristina Dooley","age":19,"location":"Cary"}},{"attributes":{"name":"Vickie Treutel","age":27,"location":"Fort Deondre"}},{"attributes":{"name":"Tracy Yost","age":43,"location":"Fort Elfrieda"}},{"attributes":{"name":"Marcus Farrell Jr.","age":37,"location":"North Evalynshire"}},{"attributes":{"name":"Dr. Derek Schuster","age":65,"location":"St. Peters"}},{"attributes":{"name":"Robyn Graham","age":26,"location":"Smithboro"}},{"attributes":{"name":"Cristal Sawayn IV","age":20,"location":"South Jonatan"}},{"attributes":{"name":"Dr. Blanche Moen","age":38,"location":"Connellyfort"}},{"attributes":{"name":"Mable Larson","age":66,"location":"North Marquisborough"}},{"attributes":{"name":"Orland Schamberger","age":46,"location":"Colestead"}},{"attributes":{"name":"Mrs. Tiffany Barrows-Mills Sr.","age":78,"location":"Murray"}},{"attributes":{"name":"Ibrahim Mann","age":48,"location":"Lynn"}},{"attributes":{"name":"Teri MacGyver","age":50,"location":"Hoover"}},{"attributes":{"name":"Davon Harvey","age":67,"location":"Keeblerborough"}},{"attributes":{"name":"Lucio Windler DVM","age":31,"location":"Lake Jazmynboro"}},{"attributes":{"name":"Jasmine Ritchie","age":23,"location":"New Neil"}},{"attributes":{"name":"Danny Gutmann","age":71,"location":"Davisbury"}},{"attributes":{"name":"Mr. Andres Boehm","age":55,"location":"Darrylfield"}},{"attributes":{"name":"Jaclyn Johns","age":63,"location":"Darioshire"}},{"attributes":{"name":"Lorena Larson","age":51,"location":"Fort Daltonberg"}},{"attributes":{"name":"Allison Kessler Sr.","age":20,"location":"Selmershire"}},{"attributes":{"name":"Miss Perry Kilback","age":34,"location":"New Esperanza"}},{"attributes":{"name":"Henderson Littel","age":61,"location":"Svenstad"}},{"attributes":{"name":"Gladys Watsica I","age":51,"location":"Granvillechester"}},{"attributes":{"name":"Penny Ruecker","age":27,"location":"Elouiseburgh"}},{"attributes":{"name":"Courtney Rowe","age":63,"location":"Johnsonborough"}},{"attributes":{"name":"Zoie Bernier","age":58,"location":"Alexandreashire"}},{"attributes":{"name":"Jonathan Leannon","age":39,"location":"South Dedric"}},{"attributes":{"name":"Miss Marvin Mayer","age":73,"location":"Fort Rosella"}},{"attributes":{"name":"Sara Conroy","age":73,"location":"Fort Aubreeshire"}},{"attributes":{"name":"Maurice Bergnaum","age":68,"location":"Hampton"}},{"attributes":{"name":"Clinton Schiller","age":27,"location":"Heathcotehaven"}},{"attributes":{"name":"Lorene Aufderhar","age":38,"location":"Fayport"}},{"attributes":{"name":"Miss Terri Emmerich","age":54,"location":"Wyoming"}},{"attributes":{"name":"Gayle Runolfsson","age":58,"location":"Port Abbey"}},{"attributes":{"name":"Christina Bergnaum","age":23,"location":"North Rebecca"}},{"attributes":{"name":"Darin Collins","age":40,"location":"Lake Ramiroview"}},{"attributes":{"name":"Nancy Weber","age":69,"location":"Buckeye"}},{"attributes":{"name":"Willie Schimmel-Renner","age":76,"location":"Carleecester"}},{"attributes":{"name":"Mrs. Erin Romaguera III","age":74,"location":"Fort Aprilton"}},{"attributes":{"name":"Bryan Little","age":68,"location":"Nyahshire"}},{"attributes":{"name":"Dr. Sam Daniel","age":60,"location":"Laneyport"}},{"attributes":{"name":"Hershel Bernier II","age":53,"location":"New Anikafort"}},{"attributes":{"name":"Veronica Moore","age":18,"location":"Port Hassanville"}},{"attributes":{"name":"Nicole Price","age":69,"location":"South Claudineport"}},{"attributes":{"name":"Seth Aufderhar","age":63,"location":"Waltham"}},{"attributes":{"name":"Rhonda Nicolas","age":22,"location":"West Samir"}},{"attributes":{"name":"Drew Ratke","age":19,"location":"Elkhart"}},{"attributes":{"name":"Bobby Zemlak","age":60,"location":"Fort Branson"}},{"attributes":{"name":"Santiago Witting-Effertz","age":80,"location":"Evansshire"}},{"attributes":{"name":"Rae Lehner","age":76,"location":"Sonnytown"}},{"attributes":{"name":"Mr. Leora Bednar","age":68,"location":"New Braunfels"}},{"attributes":{"name":"Ms. Gillian Jast","age":35,"location":"Port Anita"}},{"attributes":{"name":"Cary Cole","age":47,"location":"Brookline"}},{"attributes":{"name":"Andy Kuvalis","age":52,"location":"Smithamland"}},{"attributes":{"name":"Ms. Sheri Koss MD","age":51,"location":"Kristofferstead"}},{"attributes":{"name":"Natalie Ankunding","age":47,"location":"Fort Collins"}},{"attributes":{"name":"Jon Smitham","age":36,"location":"Monroe"}},{"attributes":{"name":"Duane Langworth","age":35,"location":"Sammamish"}},{"attributes":{"name":"Danyka Stiedemann Sr.","age":63,"location":"Azusa"}},{"attributes":{"name":"Wilhelm Wilderman Jr.","age":21,"location":"South Alvera"}},{"attributes":{"name":"Christopher Kling","age":49,"location":"Auerside"}},{"attributes":{"name":"Aylin Paucek","age":53,"location":"Travisburgh"}},{"attributes":{"name":"Raquel Ziemann","age":56,"location":"Neilboro"}},{"attributes":{"name":"Bernard Bartell","age":61,"location":"Chesleymouth"}},{"attributes":{"name":"Jessika Lynch I","age":56,"location":"North Kayleystad"}},{"attributes":{"name":"Mindy Heathcote","age":80,"location":"Washington"}},{"attributes":{"name":"Ms. Isai Nader","age":74,"location":"Lake Garnett"}},{"attributes":{"name":"Margret Klocko-McKenzie","age":69,"location":"Littleworth"}},{"attributes":{"name":"Benny Waters","age":54,"location":"Rohanbury"}},{"attributes":{"name":"Casimir Crooks","age":68,"location":"Kiehnbury"}},{"attributes":{"name":"Amira Murray","age":35,"location":"Barrybury"}},{"attributes":{"name":"Ernest Bernhard","age":34,"location":"Maricopa"}},{"attributes":{"name":"Dixie Rosenbaum","age":33,"location":"New Austen"}},{"attributes":{"name":"Franklin Pouros","age":40,"location":"Gilroy"}},{"attributes":{"name":"Cecelia Cartwright","age":76,"location":"Bergstromside"}},{"attributes":{"name":"Viola Will","age":39,"location":"Fort Randyborough"}},{"attributes":{"name":"Kayla Borer","age":60,"location":"Remingtonfield"}},{"attributes":{"name":"Dana Kling","age":76,"location":"Casper"}},{"attributes":{"name":"Lynne Erdman","age":40,"location":"East Phoebefield"}},{"attributes":{"name":"Mariane Huel-Zemlak","age":77,"location":"Port Vilmachester"}},{"attributes":{"name":"Ida Halvorson","age":36,"location":"Geovannyland"}},{"attributes":{"name":"Dr. Floyd Turcotte","age":76,"location":"Burlington"}},{"attributes":{"name":"Barbara Graham","age":59,"location":"Jillianfield"}},{"attributes":{"name":"Eleanor Robel","age":74,"location":"Plantation"}},{"attributes":{"name":"Mr. Billy Buckridge DVM","age":58,"location":"East Adeliahaven"}},{"attributes":{"name":"Claudia Stark III","age":78,"location":"West Delmerport"}},{"attributes":{"name":"Lucy Reilly MD","age":22,"location":"St. Louis Park"}},{"attributes":{"name":"Ms. Donald Weber-Harris","age":44,"location":"Marksbury"}},{"attributes":{"name":"Cameron Watsica","age":19,"location":"Layton"}},{"attributes":{"name":"Mrs. Gage Bednar","age":57,"location":"South Bend"}},{"attributes":{"name":"Lia Ritchie","age":44,"location":"Lake Lessieshire"}},{"attributes":{"name":"Martha Steuber","age":27,"location":"Glendora"}},{"attributes":{"name":"Beverly Considine","age":35,"location":"Fort Elenor"}},{"attributes":{"name":"Myriam Thompson-Heidenreich","age":79,"location":"Fort Chelsieboro"}},{"attributes":{"name":"Percy Boehm MD","age":26,"location":"Port Charlotte"}},{"attributes":{"name":"Molly Halvorson","age":65,"location":"Conroyfort"}},{"attributes":{"name":"Delbert Wolff","age":20,"location":"Port Myahtown"}},{"attributes":{"name":"Omar Smitham","age":33,"location":"Lake Eileen"}},{"attributes":{"name":"Devonte Emmerich","age":22,"location":"Goldnerchester"}},{"attributes":{"name":"Amina Bartoletti","age":55,"location":"Lake Monty"}},{"attributes":{"name":"Mrs. Jennie Gerhold Sr.","age":51,"location":"Connellyworth"}},{"attributes":{"name":"Betsy Deckow","age":40,"location":"Conroe"}},{"attributes":{"name":"Mr. Valerie Hickle","age":53,"location":"Olgaboro"}},{"attributes":{"name":"Abagail Legros","age":47,"location":"Lake Dylan"}},{"attributes":{"name":"Christie Jones","age":55,"location":"Baileyfield"}},{"attributes":{"name":"Marie Littel","age":32,"location":"East Lempi"}},{"attributes":{"name":"Modesta Block","age":54,"location":"Margotburgh"}},{"attributes":{"name":"Sheldon Reinger","age":64,"location":"New Verdaside"}},{"attributes":{"name":"Mayra Gleichner","age":32,"location":"West Kay"}},{"attributes":{"name":"Evan O'Conner","age":21,"location":"West Noe"}},{"attributes":{"name":"Kara Effertz","age":18,"location":"Reeceside"}},{"attributes":{"name":"Maurice Marquardt","age":60,"location":"East Jess"}},{"attributes":{"name":"Gabrielle Bernier","age":21,"location":"Alexandria"}},{"attributes":{"name":"Caleb McGlynn","age":39,"location":"East Hartford"}},{"attributes":{"name":"Bert Cronin Jr.","age":55,"location":"Padbergborough"}},{"attributes":{"name":"Yolanda Armstrong","age":24,"location":"Keltonborough"}},{"attributes":{"name":"Unique Schneider","age":66,"location":"Fort Elijahstead"}},{"attributes":{"name":"Watson Ondricka-Walsh","age":24,"location":"Daly City"}},{"attributes":{"name":"Tremayne Quigley","age":33,"location":"Macieborough"}},{"attributes":{"name":"Samantha Dooley","age":66,"location":"Adrielbury"}},{"attributes":{"name":"Sandy Howell","age":29,"location":"Fort Quintenland"}},{"attributes":{"name":"Gretchen Jerde","age":19,"location":"East Alexa"}},{"attributes":{"name":"Ana Kilback I","age":72,"location":"South Ezrafurt"}},{"attributes":{"name":"Spencer Koss","age":27,"location":"East River"}},{"attributes":{"name":"Rene Bosco V","age":58,"location":"Providence"}},{"attributes":{"name":"Rose Zieme","age":62,"location":"Monahanfort"}},{"attributes":{"name":"Crystal Torphy I","age":62,"location":"Steuberburgh"}},{"attributes":{"name":"Deshawn Buckridge","age":78,"location":"Virgilstead"}},{"attributes":{"name":"Marion Marks","age":41,"location":"North Miami"}},{"attributes":{"name":"Franz Collier","age":24,"location":"San Diego"}},{"attributes":{"name":"Lorna Murazik","age":68,"location":"South Loganbury"}},{"attributes":{"name":"Jovany Satterfield DVM","age":42,"location":"North Wilburnchester"}},{"attributes":{"name":"Kyle Barrows","age":46,"location":"Legroston"}},{"attributes":{"name":"Joyce Goodwin","age":36,"location":"Fort Aldenbury"}},{"attributes":{"name":"Rosalia Mosciski","age":42,"location":"West Nathanial"}},{"attributes":{"name":"Gilda Halvorson","age":46,"location":"Maynardside"}},{"attributes":{"name":"Reva Lakin IV","age":40,"location":"Fort Jalen"}},{"attributes":{"name":"Sherri Kunze-Metz","age":74,"location":"New Imeldaland"}},{"attributes":{"name":"Celestine Ratke","age":21,"location":"Fort Adriel"}},{"attributes":{"name":"Miss Pearlie Lesch","age":25,"location":"Wolffton"}},{"attributes":{"name":"Maria Ullrich","age":51,"location":"Denniscester"}},{"attributes":{"name":"Eloise Rodriguez","age":39,"location":"Hansbury"}},{"attributes":{"name":"Krista Kuphal","age":42,"location":"Jakecester"}},{"attributes":{"name":"Darryl Bechtelar","age":55,"location":"Ashleechester"}},{"attributes":{"name":"Melissa Hauck V","age":67,"location":"Fosterburgh"}},{"attributes":{"name":"Joshua Schuster","age":37,"location":"Fort Talonstead"}},{"attributes":{"name":"Dr. Ismael O'Kon","age":69,"location":"Greenholtmouth"}},{"attributes":{"name":"Martha Pouros","age":19,"location":"Port Robinton"}},{"attributes":{"name":"Hilario Lang","age":69,"location":"Lesleyview"}},{"attributes":{"name":"Jeremy Homenick","age":35,"location":"Southfield"}},{"attributes":{"name":"Leta Harris","age":29,"location":"South Nikolasview"}},{"attributes":{"name":"Zander Roberts","age":45,"location":"Taliahaven"}},{"attributes":{"name":"Rex Gerhold MD","age":77,"location":"O'Fallon"}},{"attributes":{"name":"Israel Donnelly","age":23,"location":"North Berta"}},{"attributes":{"name":"Sonya Legros Jr.","age":28,"location":"Monahanchester"}},{"attributes":{"name":"Hilda Collins","age":46,"location":"Wileystead"}},{"attributes":{"name":"Perry Berge","age":65,"location":"Hallestead"}},{"attributes":{"name":"Kallie Prosacco","age":60,"location":"New Francesco"}},{"attributes":{"name":"Andrea Krajcik","age":60,"location":"Osinskishire"}},{"attributes":{"name":"Clay Greenholt","age":45,"location":"West Fridaville"}},{"attributes":{"name":"Mrs. Pamela Schmidt","age":50,"location":"Port Murrayshire"}},{"attributes":{"name":"Eva Schuster","age":35,"location":"College Station"}},{"attributes":{"name":"Kristine Rice","age":37,"location":"Celiaview"}},{"attributes":{"name":"Dexter Maggio","age":62,"location":"West Cecil"}},{"attributes":{"name":"Carlton Cartwright","age":43,"location":"South Gretaport"}},{"attributes":{"name":"Reuben Lowe","age":19,"location":"Cupertino"}},{"attributes":{"name":"Terrance Bailey","age":40,"location":"North Estella"}},{"attributes":{"name":"Alfonso DuBuque","age":25,"location":"Port Chadhaven"}},{"attributes":{"name":"Dwight Schmeler","age":50,"location":"New Cullen"}},{"attributes":{"name":"Michael Mraz","age":66,"location":"South Darby"}},{"attributes":{"name":"Grady Mosciski","age":79,"location":"Norwoodboro"}},{"attributes":{"name":"Oscar Leuschke","age":57,"location":"East Nannieport"}},{"attributes":{"name":"Trace Ernser Sr.","age":61,"location":"New Stephanyland"}},{"attributes":{"name":"Grace Pfannerstill","age":26,"location":"Wizastead"}},{"attributes":{"name":"Verna Smitham II","age":79,"location":"East Kaela"}},{"attributes":{"name":"Maeve Kuhn","age":45,"location":"Port Alia"}},{"attributes":{"name":"Elaina Ferry MD","age":27,"location":"Framingham"}},{"attributes":{"name":"Meredith Keeling","age":42,"location":"Kovacekberg"}},{"attributes":{"name":"Eva Muller","age":66,"location":"Wichita"}},{"attributes":{"name":"Mr. Josh Blick-Grant","age":25,"location":"Mervinland"}},{"attributes":{"name":"Darren Mante","age":19,"location":"Bechtelarbury"}},{"attributes":{"name":"Garnett Blick","age":43,"location":"Hegmannview"}},{"attributes":{"name":"Roderick Waters","age":66,"location":"East Noah"}},{"attributes":{"name":"Noel Stokes","age":56,"location":"West Germaineshire"}},{"attributes":{"name":"Whitney MacGyver","age":45,"location":"Lake Matildeburgh"}},{"attributes":{"name":"Walter Tillman","age":57,"location":"Damarisfield"}},{"attributes":{"name":"Kate Hauck","age":57,"location":"Heiditown"}},{"attributes":{"name":"Sean Kuhic","age":49,"location":"Fletaton"}},{"attributes":{"name":"Robert Quitzon","age":18,"location":"Stiedemannshire"}},{"attributes":{"name":"Julius Stamm","age":56,"location":"North Abe"}},{"attributes":{"name":"Kamille Balistreri","age":68,"location":"Jodieboro"}},{"attributes":{"name":"Byron Kohler","age":23,"location":"North Sheafurt"}},{"attributes":{"name":"Heaven Kuvalis","age":61,"location":"Fort Websterborough"}},{"attributes":{"name":"Charles Mayert","age":46,"location":"Kaelafield"}},{"attributes":{"name":"Ora Hills DVM","age":41,"location":"South Eleazar"}},{"attributes":{"name":"Dr. Shannon Murazik","age":74,"location":"South Alejandrin"}},{"attributes":{"name":"Bennie Senger","age":19,"location":"Rippinberg"}},{"attributes":{"name":"Dr. Sylvan Schinner","age":36,"location":"Orvalfurt"}},{"attributes":{"name":"Jenna Reichel","age":19,"location":"Rogers"}},{"attributes":{"name":"Micaela Hoeger","age":38,"location":"Schimmelstad"}},{"attributes":{"name":"Gisselle Farrell","age":21,"location":"Monahanburgh"}},{"attributes":{"name":"Ignacio Ondricka-Miller","age":35,"location":"Fritschtown"}},{"attributes":{"name":"Terri Hessel III","age":31,"location":"Nicolasburgh"}},{"attributes":{"name":"Maggie Kuhlman","age":39,"location":"North Alishaborough"}},{"attributes":{"name":"Margarita Kassulke-McKenzie","age":68,"location":"Fountain Valley"}},{"attributes":{"name":"Electa Klocko","age":47,"location":"Lindshire"}},{"attributes":{"name":"Eric Shields","age":73,"location":"Uptonstead"}},{"attributes":{"name":"Dr. Ross Keebler","age":20,"location":"Stromanside"}},{"attributes":{"name":"Dora Huels","age":21,"location":"North Agnesbury"}},{"attributes":{"name":"Kevin Spinka-Purdy","age":63,"location":"New Dellview"}},{"attributes":{"name":"Eino Waelchi","age":43,"location":"D'Amorecester"}},{"attributes":{"name":"Charity Franecki","age":75,"location":"Merlinfort"}},{"attributes":{"name":"Sophia Dicki","age":27,"location":"Florenciotown"}},{"attributes":{"name":"Emmett Pacocha","age":28,"location":"Abshireshire"}},{"attributes":{"name":"Jan Wolf","age":27,"location":"Hilo"}},{"attributes":{"name":"Jesse Baumbach","age":28,"location":"Johnsonstad"}},{"attributes":{"name":"Nichole MacGyver","age":70,"location":"East Camden"}},{"attributes":{"name":"Broderick Schumm","age":57,"location":"Donnieshire"}},{"attributes":{"name":"Dr. Lauren Terry","age":18,"location":"Portland"}},{"attributes":{"name":"Cornelius Jast","age":32,"location":"York"}},{"attributes":{"name":"Mrs. Rachael Skiles","age":46,"location":"South Ericaville"}},{"attributes":{"name":"Forest Stracke","age":48,"location":"Abigalehaven"}},{"attributes":{"name":"Roosevelt Simonis","age":25,"location":"Rodriguezstead"}},{"attributes":{"name":"Gregorio Streich III","age":38,"location":"North Lauderdale"}},{"attributes":{"name":"Eulah Abernathy Jr.","age":55,"location":"Odessa"}},{"attributes":{"name":"Tracy Orn","age":21,"location":"Artcester"}},{"attributes":{"name":"Catherine O'Connell-Altenwerth","age":29,"location":"Rowanchester"}},{"attributes":{"name":"Miss Marion Dietrich-Stroman","age":72,"location":"Christiansenland"}},{"attributes":{"name":"Brenda Sanford","age":64,"location":"East Ransommouth"}},{"attributes":{"name":"Alexis Lindgren","age":78,"location":"Gutmanntown"}},{"attributes":{"name":"Arnold Marks-Morissette MD","age":79,"location":"South Magnus"}},{"attributes":{"name":"Ivan Lubowitz","age":20,"location":"Jackson"}},{"attributes":{"name":"Inez Kertzmann","age":59,"location":"Lake Onieview"}},{"attributes":{"name":"Sophie Heaney","age":59,"location":"Port Sibylview"}},{"attributes":{"name":"Nicholas Goyette","age":46,"location":"South Vena"}},{"attributes":{"name":"Winifred Quitzon","age":59,"location":"Manuelabury"}},{"attributes":{"name":"Myra Waelchi","age":80,"location":"Hirthechester"}},{"attributes":{"name":"Jeremy Deckow","age":68,"location":"Raleigh"}},{"attributes":{"name":"Larissa Larkin","age":39,"location":"East Aracelihaven"}},{"attributes":{"name":"Dixie Wiza II","age":47,"location":"Armstrongfort"}},{"attributes":{"name":"Joanne Effertz","age":45,"location":"New Jacintoland"}},{"attributes":{"name":"Eden Schmidt PhD","age":65,"location":"York"}},{"attributes":{"name":"Breanna Mosciski","age":72,"location":"North Kristinaworth"}},{"attributes":{"name":"Edwin Monahan","age":57,"location":"McLaughlinmouth"}},{"attributes":{"name":"Lula Schuppe","age":37,"location":"Gulgowskitown"}},{"attributes":{"name":"Tim Harvey","age":36,"location":"Westleycester"}},{"attributes":{"name":"Lance Stracke III","age":58,"location":"Gilbertstad"}},{"attributes":{"name":"Mrs. Cassidy Daugherty","age":68,"location":"North Abbigailstead"}},{"attributes":{"name":"Eli Quigley I","age":77,"location":"New Roxaneberg"}},{"attributes":{"name":"Jessyca O'Connell","age":18,"location":"Hellerstad"}},{"attributes":{"name":"Karine Tromp","age":48,"location":"Fort Ollie"}},{"attributes":{"name":"Ms. Brittany Dooley","age":33,"location":"Jessikaburgh"}},{"attributes":{"name":"Dr. Brad Prohaska","age":35,"location":"Prestonfield"}},{"attributes":{"name":"Dr. Ross Hilll-Welch","age":67,"location":"Arlington Heights"}},{"attributes":{"name":"Janie Stoltenberg","age":25,"location":"Oberbrunnerstad"}},{"attributes":{"name":"Cedric Dare-Bailey Sr.","age":20,"location":"Willardshire"}},{"attributes":{"name":"Dr. Geneva Pfeffer MD","age":46,"location":"Swaniawskiboro"}},{"attributes":{"name":"Maddison King","age":61,"location":"Lelandstad"}},{"attributes":{"name":"Brannon McDermott","age":50,"location":"New Linwood"}},{"attributes":{"name":"Santina Hackett","age":50,"location":"Alistead"}},{"attributes":{"name":"Candice Kiehn","age":70,"location":"Cruickshankworth"}},{"attributes":{"name":"Miss Franco Gislason","age":34,"location":"Minneapolis"}},{"attributes":{"name":"Carlos Jakubowski","age":65,"location":"Williamsonmouth"}},{"attributes":{"name":"Sue Heidenreich","age":20,"location":"Minneapolis"}},{"attributes":{"name":"Yesenia Stroman","age":72,"location":"East Jennifer"}},{"attributes":{"name":"Mrs. Glenda Hagenes","age":55,"location":"New Ikechester"}},{"attributes":{"name":"Carlos Kohler-Halvorson","age":24,"location":"Salt Lake City"}},{"attributes":{"name":"Rolando Daugherty","age":47,"location":"Jeffersonville"}},{"attributes":{"name":"Cali Mayert","age":46,"location":"Haltom City"}},{"attributes":{"name":"Mr. Micah Haag","age":28,"location":"Bonita Springs"}},{"attributes":{"name":"Miss Jerrod Glover IV","age":39,"location":"Waukesha"}},{"attributes":{"name":"Jacey Jenkins-Hegmann","age":75,"location":"Okunevafort"}},{"attributes":{"name":"Mr. Harold Abbott","age":41,"location":"Whittier"}},{"attributes":{"name":"Lorene Cronin","age":51,"location":"Schillerton"}},{"attributes":{"name":"Angelica Stracke III","age":64,"location":"West Charles"}},{"attributes":{"name":"Bonnie Green PhD","age":78,"location":"Erikamouth"}},{"attributes":{"name":"Ms. Janick Friesen","age":41,"location":"Arvidmouth"}},{"attributes":{"name":"Keith McGlynn","age":71,"location":"Fort Cristobal"}},{"attributes":{"name":"Hugh Bernhard","age":20,"location":"Kiarraberg"}},{"attributes":{"name":"Olen Paucek","age":18,"location":"Lake Daleburgh"}},{"attributes":{"name":"Jessica Lemke-Botsford","age":77,"location":"North Highlands"}},{"attributes":{"name":"Jacob Morar","age":73,"location":"East Sarah"}},{"attributes":{"name":"Clint Bogisich DVM","age":73,"location":"South Kaneview"}},{"attributes":{"name":"Kyla Schneider","age":41,"location":"Yakima"}},{"attributes":{"name":"Marcelo Graham Sr.","age":23,"location":"Elijahstead"}},{"attributes":{"name":"Shannon Armstrong","age":69,"location":"East Reinaton"}},{"attributes":{"name":"Franklin Heaney-Torphy","age":35,"location":"Lake Baronfort"}},{"attributes":{"name":"Madelynn Keebler","age":28,"location":"Parisianmouth"}},{"attributes":{"name":"Nathan Hilpert","age":23,"location":"West Nonafield"}},{"attributes":{"name":"Lamar Hackett","age":73,"location":"Lonnyfield"}},{"attributes":{"name":"Charles McKenzie","age":39,"location":"Catonsville"}},{"attributes":{"name":"Leanne Robel","age":42,"location":"Newark"}},{"attributes":{"name":"Alyssa Johnson","age":59,"location":"Lake Camylle"}},{"attributes":{"name":"Dr. Hilda O'Hara IV","age":24,"location":"Lake Aliza"}},{"attributes":{"name":"Caroline Bradtke","age":19,"location":"Lake Joshuaboro"}},{"attributes":{"name":"Myron Cummerata","age":55,"location":"Port Theodora"}},{"attributes":{"name":"Daisy Rosenbaum","age":64,"location":"South Jane"}},{"attributes":{"name":"Raymond Romaguera","age":35,"location":"Wehnermouth"}},{"attributes":{"name":"Reanna Mills","age":25,"location":"Lindchester"}},{"attributes":{"name":"Tasha Wisoky","age":62,"location":"Fort Destin"}},{"attributes":{"name":"Dawson Kovacek","age":71,"location":"Port Magali"}},{"attributes":{"name":"Arlene Gorczany","age":38,"location":"West Bertrand"}},{"attributes":{"name":"Sheila Prosacco","age":30,"location":"Carrieberg"}},{"attributes":{"name":"Elvira Schneider","age":58,"location":"East Brianaview"}},{"attributes":{"name":"Wade Hackett","age":56,"location":"Bauchmouth"}},{"attributes":{"name":"Tanya Hoeger","age":25,"location":"North Dominiqueville"}},{"attributes":{"name":"Gregory Murazik","age":38,"location":"Colton"}},{"attributes":{"name":"Laury Carter MD","age":39,"location":"North Masonville"}},{"attributes":{"name":"Mr. Jody Gottlieb","age":24,"location":"Turcotteworth"}},{"attributes":{"name":"Billie Sauer","age":80,"location":"Hempstead"}},{"attributes":{"name":"Finn Langworth V","age":76,"location":"Liafurt"}},{"attributes":{"name":"Dr. Asha Will","age":49,"location":"Port Julius"}},{"attributes":{"name":"Delia O'Conner","age":66,"location":"Rozellaworth"}},{"attributes":{"name":"Loy Reinger","age":35,"location":"Treview"}},{"attributes":{"name":"Lula Volkman","age":33,"location":"McCulloughfield"}},{"attributes":{"name":"Dorothy Pagac","age":49,"location":"East Edd"}},{"attributes":{"name":"Miss Derek Rempel","age":22,"location":"New Irmaburgh"}},{"attributes":{"name":"Johnnie Beier","age":66,"location":"Bergnaumton"}},{"attributes":{"name":"Reginald Ankunding I","age":23,"location":"Kertzmannstead"}},{"attributes":{"name":"Aryanna Mante","age":61,"location":"West Alexanefurt"}},{"attributes":{"name":"Willie Quitzon","age":24,"location":"North Kadenborough"}},{"attributes":{"name":"Jalon Runolfsdottir","age":31,"location":"Joelmouth"}},{"attributes":{"name":"Nasir Nicolas","age":53,"location":"Wisozkshire"}},{"attributes":{"name":"Lisa Kiehn","age":49,"location":"Fort Napoleon"}},{"attributes":{"name":"Myra Franey","age":69,"location":"South Rico"}},{"attributes":{"name":"Nellie Bartell","age":51,"location":"South Vito"}},{"attributes":{"name":"Duane Schoen I","age":58,"location":"East Jennieboro"}},{"attributes":{"name":"Lucy Morissette III","age":39,"location":"Port Princess"}},{"attributes":{"name":"Miss Kara Stiedemann","age":58,"location":"East Ashashire"}},{"attributes":{"name":"Conrad Wehner","age":68,"location":"Pierceville"}},{"attributes":{"name":"Natalie Dicki","age":67,"location":"Jacobsonburgh"}},{"attributes":{"name":"Frances Zulauf","age":24,"location":"North Kristopher"}},{"attributes":{"name":"Gwendolyn Gutkowski","age":60,"location":"Phoenix"}},{"attributes":{"name":"Jevon Dare IV","age":73,"location":"Santa Clara"}},{"attributes":{"name":"Tabitha Tremblay-Wolf MD","age":22,"location":"Medford"}},{"attributes":{"name":"Jodie Carroll","age":71,"location":"Willystad"}},{"attributes":{"name":"Doreen Kilback","age":35,"location":"Gardena"}},{"attributes":{"name":"Randolph Schuster","age":71,"location":"North Kali"}},{"attributes":{"name":"Xzavier Bechtelar","age":19,"location":"Gerlachside"}},{"attributes":{"name":"Marcos Wiegand","age":33,"location":"North Ericka"}},{"attributes":{"name":"Myron Wisoky","age":27,"location":"Connboro"}},{"attributes":{"name":"Polly Cruickshank","age":69,"location":"Ryanchester"}},{"attributes":{"name":"Nicholas Renner PhD","age":48,"location":"New Chandler"}},{"attributes":{"name":"Mike Parker DVM","age":74,"location":"Brandoton"}},{"attributes":{"name":"Kylee Shields","age":36,"location":"East Ima"}},{"attributes":{"name":"Thaddeus Kohler V","age":74,"location":"West Antoinette"}},{"attributes":{"name":"Jaleel Zulauf","age":76,"location":"Greenburgh"}},{"attributes":{"name":"Mr. Elinor Schroeder","age":70,"location":"Riceboro"}},{"attributes":{"name":"Bell Tillman-Reinger","age":55,"location":"Gusikowskifurt"}},{"attributes":{"name":"Mrs. Braulio Ritchie","age":55,"location":"Luettgencester"}},{"attributes":{"name":"Else Rice","age":72,"location":"New Laceyside"}},{"attributes":{"name":"Karen Greenholt","age":72,"location":"Kuhlmanfurt"}},{"attributes":{"name":"Francisco Koelpin","age":75,"location":"Durganboro"}},{"attributes":{"name":"Miss Lila Satterfield","age":49,"location":"New Evalynhaven"}},{"attributes":{"name":"Miss Eula Kreiger","age":43,"location":"Lednerworth"}},{"attributes":{"name":"Pete Monahan","age":31,"location":"South Fletchertown"}},{"attributes":{"name":"Myrtis Balistreri","age":56,"location":"Leuschkestad"}},{"attributes":{"name":"Abel Thompson","age":65,"location":"Union City"}},{"attributes":{"name":"Horace Koch","age":60,"location":"Bartlett"}},{"attributes":{"name":"Ronny Waters","age":47,"location":"Pawtucket"}},{"attributes":{"name":"Claudie Paucek","age":31,"location":"Lansing"}},{"attributes":{"name":"Natalie Flatley","age":29,"location":"Rachelmouth"}},{"attributes":{"name":"Herman Daniel","age":34,"location":"Shieldsfurt"}},{"attributes":{"name":"Nadine Vandervort","age":26,"location":"Fort Maybelle"}},{"attributes":{"name":"Madeline Gerhold","age":77,"location":"Willowcester"}},{"attributes":{"name":"Elisa Rolfson","age":42,"location":"Lake Williamport"}},{"attributes":{"name":"Cesar Pagac-Macejkovic","age":54,"location":"Port Louiestad"}},{"attributes":{"name":"Eileen Armstrong","age":80,"location":"Fort Noemibury"}},{"attributes":{"name":"Carrie Batz","age":31,"location":"Port Priscilla"}},{"attributes":{"name":"Mr. Ismael Lakin","age":22,"location":"Langworthstead"}},{"attributes":{"name":"Bennie Schneider","age":19,"location":"North Jermaineton"}},{"attributes":{"name":"Garry White-Flatley","age":33,"location":"Emmettside"}},{"attributes":{"name":"Charlotte Bins","age":55,"location":"Eugene"}},{"attributes":{"name":"Oliver Yost","age":29,"location":"Gerhardland"}},{"attributes":{"name":"Edna Davis","age":53,"location":"New Anselfurt"}},{"attributes":{"name":"Tasha Hansen","age":25,"location":"Ferrystead"}},{"attributes":{"name":"Ms. Juston Simonis","age":64,"location":"South Chloeburgh"}},{"attributes":{"name":"Murl Lemke","age":54,"location":"Keeblermouth"}},{"attributes":{"name":"Shawna Dickens","age":45,"location":"Vandervortland"}},{"attributes":{"name":"Clifton Zulauf-Wunsch","age":32,"location":"Bedford"}},{"attributes":{"name":"Rochelle Walter","age":42,"location":"Hoffman Estates"}},{"attributes":{"name":"Dariana Feil","age":29,"location":"Provo"}},{"attributes":{"name":"Dr. Marco Hettinger","age":30,"location":"Deckowchester"}},{"attributes":{"name":"Ann Zboncak","age":68,"location":"Fort Fredachester"}},{"attributes":{"name":"Florence Gleason II","age":80,"location":"Lake Mona"}},{"attributes":{"name":"Roman Friesen","age":46,"location":"Wauwatosa"}},{"attributes":{"name":"Jerrell Maggio","age":62,"location":"Upland"}},{"attributes":{"name":"Alice Carroll","age":20,"location":"Port Otiliaside"}},{"attributes":{"name":"Miss Rowland Konopelski","age":19,"location":"Collierville"}},{"attributes":{"name":"Arianna Reichert","age":27,"location":"Damionberg"}},{"attributes":{"name":"Kathleen Cormier","age":20,"location":"Kavonworth"}},{"attributes":{"name":"Dr. Cornelius Borer","age":49,"location":"Fisherhaven"}},{"attributes":{"name":"Jean Bode","age":44,"location":"Mullerchester"}},{"attributes":{"name":"Tyler Konopelski","age":57,"location":"Jerrellboro"}},{"attributes":{"name":"Norman Kessler","age":45,"location":"South Jaredland"}},{"attributes":{"name":"Susie Wiegand","age":32,"location":"Lake Graciela"}},{"attributes":{"name":"Moises McKenzie","age":72,"location":"Sterling Heights"}},{"attributes":{"name":"Erica Tillman","age":38,"location":"Fort Jayde"}},{"attributes":{"name":"Jay Kunde","age":63,"location":"Adeleworth"}},{"attributes":{"name":"Tiara Ondricka DVM","age":30,"location":"North Rodrickton"}},{"attributes":{"name":"Savanna Purdy","age":61,"location":"East Amyton"}},{"attributes":{"name":"Lois Hackett","age":62,"location":"West Trinityburgh"}},{"attributes":{"name":"Miss Jessie Robel","age":39,"location":"Elk Grove"}},{"attributes":{"name":"Joy Skiles","age":69,"location":"Fort Freddyland"}},{"attributes":{"name":"Emily Leffler","age":56,"location":"Novellaborough"}},{"attributes":{"name":"Ottis Sauer","age":45,"location":"Sawaynfurt"}},{"attributes":{"name":"Marta Ernser","age":72,"location":"Lemkeville"}},{"attributes":{"name":"Dr. Andrew Hyatt","age":36,"location":"Port Antoinettefurt"}},{"attributes":{"name":"Ramon Bruen","age":20,"location":"Cierraworth"}},{"attributes":{"name":"Lucille Hegmann","age":20,"location":"Grantside"}},{"attributes":{"name":"Joel Feil","age":26,"location":"Port Veronicaworth"}},{"attributes":{"name":"Raymond Barton","age":35,"location":"Mayaguez"}},{"attributes":{"name":"Gerhard Okuneva","age":43,"location":"Paterson"}},{"attributes":{"name":"Hank Swift DDS","age":75,"location":"Domenickton"}},{"attributes":{"name":"Georgia Abbott","age":59,"location":"Fort Elsieborough"}},{"attributes":{"name":"Esther Gerhold","age":46,"location":"Kleinton"}},{"attributes":{"name":"Dr. Retha Sawayn","age":36,"location":"New Haven"}},{"attributes":{"name":"Thora Halvorson PhD","age":52,"location":"Rockford"}},{"attributes":{"name":"Tad Mitchell","age":71,"location":"Sonyachester"}},{"attributes":{"name":"Yvette Torp","age":58,"location":"Reillyhaven"}},{"attributes":{"name":"Albertha Murray-Kunze","age":67,"location":"Wymanfort"}},{"attributes":{"name":"Roman Boehm","age":39,"location":"Bernhardport"}},{"attributes":{"name":"Hubert Schultz","age":35,"location":"Lake Deshawnside"}},{"attributes":{"name":"Martin Weber IV","age":63,"location":"Alishaborough"}},{"attributes":{"name":"Allen Hammes","age":69,"location":"East Jarvis"}},{"attributes":{"name":"Jordan Walker","age":68,"location":"West Mozellchester"}},{"attributes":{"name":"Grant Bergnaum-Anderson","age":25,"location":"East Yoshiko"}},{"attributes":{"name":"Sally Ward","age":25,"location":"Ravenland"}},{"attributes":{"name":"Terrence Bradtke","age":24,"location":"New Elta"}},{"attributes":{"name":"Melissa Gutmann","age":44,"location":"Bossier City"}},{"attributes":{"name":"Nia Breitenberg-Daugherty","age":35,"location":"West Devante"}},{"attributes":{"name":"Dr. Ardith Shanahan","age":79,"location":"Rileyview"}},{"attributes":{"name":"Rhonda Kerluke","age":51,"location":"Camronport"}},{"attributes":{"name":"Guadalupe Ferry","age":58,"location":"North Stephanymouth"}},{"attributes":{"name":"Megan Howell","age":77,"location":"West Crystal"}},{"attributes":{"name":"Wanda Pollich-Grant","age":62,"location":"Friesenton"}},{"attributes":{"name":"Mr. Ruby McDermott PhD","age":57,"location":"Conroyfurt"}},{"attributes":{"name":"Glen Schaden","age":24,"location":"South Joannie"}},{"attributes":{"name":"Chanel Renner","age":79,"location":"Santa Maria"}},{"attributes":{"name":"Leta Bechtelar","age":35,"location":"Bergnaumcester"}},{"attributes":{"name":"Renee Leffler I","age":60,"location":"Williamsontown"}},{"attributes":{"name":"Franz Lockman","age":19,"location":"East Lula"}},{"attributes":{"name":"Sammy Berge","age":48,"location":"Manuelfield"}},{"attributes":{"name":"Meggie Auer","age":73,"location":"Port Novella"}},{"attributes":{"name":"Edith Borer","age":68,"location":"East Marleeville"}},{"attributes":{"name":"Brook Flatley","age":72,"location":"Fort Andrestad"}},{"attributes":{"name":"Terrance Cormier","age":58,"location":"Jakobton"}},{"attributes":{"name":"Walter Reinger","age":49,"location":"Verlacester"}},{"attributes":{"name":"Caroline Murphy IV","age":43,"location":"Kennafort"}},{"attributes":{"name":"Tyrone Stokes","age":38,"location":"East Nellieview"}},{"attributes":{"name":"Jan Abbott","age":57,"location":"South Oral"}},{"attributes":{"name":"Ms. Viola Steuber","age":52,"location":"Millerchester"}},{"attributes":{"name":"Rebeca Waters","age":64,"location":"Lake Kaylin"}},{"attributes":{"name":"Mr. Ottis Hayes","age":54,"location":"South Estatown"}},{"attributes":{"name":"Jamal Blanda","age":54,"location":"Kenyaville"}},{"attributes":{"name":"Pablo Brekke II","age":80,"location":"Port Kurtchester"}},{"attributes":{"name":"Cindy Bahringer II","age":80,"location":"Summerville"}},{"attributes":{"name":"Julius Kohler","age":36,"location":"South Danialville"}},{"attributes":{"name":"Abe Hudson-McCullough","age":43,"location":"Raheemfort"}},{"attributes":{"name":"Dr. Angelina Watsica","age":63,"location":"Quintonmouth"}},{"attributes":{"name":"Geneva Sporer","age":79,"location":"North Maia"}},{"attributes":{"name":"Lois Rodriguez","age":61,"location":"Port Geovanyberg"}},{"attributes":{"name":"Alton Erdman","age":72,"location":"Port Hope"}},{"attributes":{"name":"Dr. Ron Nikolaus","age":43,"location":"Fort Samhaven"}},{"attributes":{"name":"Velda Spinka","age":33,"location":"Jolieland"}},{"attributes":{"name":"Dr. Aletha Friesen","age":54,"location":"Fort Hudson"}},{"attributes":{"name":"Carlos Harris","age":57,"location":"West Sybleburgh"}},{"attributes":{"name":"Milo Heaney","age":75,"location":"East Brettport"}},{"attributes":{"name":"Kelsie Bednar","age":35,"location":"New Eino"}},{"attributes":{"name":"Claire Kertzmann II","age":27,"location":"West Anya"}},{"attributes":{"name":"Hallie Langworth Sr.","age":40,"location":"Brendanhaven"}},{"attributes":{"name":"Narciso Schmidt","age":59,"location":"Millerworth"}},{"attributes":{"name":"Opal Grant","age":20,"location":"Waelchiberg"}},{"attributes":{"name":"Salvador Dare","age":24,"location":"Schillerfort"}},{"attributes":{"name":"Marcos Langosh","age":66,"location":"South Allanborough"}},{"attributes":{"name":"Lyric Durgan","age":24,"location":"Arden-Arcade"}},{"attributes":{"name":"Joanne Farrell","age":49,"location":"Kassulkeville"}},{"attributes":{"name":"Kristen Dicki","age":57,"location":"West Josephside"}},{"attributes":{"name":"Jessica Schimmel","age":58,"location":"South Clementine"}},{"attributes":{"name":"Ms. Viola Ortiz","age":26,"location":"New Javontebury"}},{"attributes":{"name":"Fernando Lind IV","age":18,"location":"Lake Willie"}},{"attributes":{"name":"Cindy Beer","age":34,"location":"South Clint"}},{"attributes":{"name":"Dana Champlin","age":31,"location":"West Jackchester"}},{"attributes":{"name":"Miles Von","age":54,"location":"South Amaliabury"}},{"attributes":{"name":"Wade West","age":40,"location":"Baileyfort"}},{"attributes":{"name":"Benton Lind","age":49,"location":"Naperville"}},{"attributes":{"name":"Clint Blick","age":31,"location":"Lake Tommieton"}},{"attributes":{"name":"Mrs. Betsy Schuppe","age":37,"location":"Missouri City"}},{"attributes":{"name":"Elisa Kling","age":45,"location":"Wilbermouth"}},{"attributes":{"name":"Amber Stamm V","age":78,"location":"Krajcikworth"}},{"attributes":{"name":"Nathaniel Boyer","age":43,"location":"Jordiworth"}},{"attributes":{"name":"Winifred Mosciski","age":38,"location":"Lynchbury"}},{"attributes":{"name":"Ms. Norman Emmerich Jr.","age":76,"location":"San Tan Valley"}},{"attributes":{"name":"Rhonda Larkin","age":24,"location":"East Linwood"}},{"attributes":{"name":"Joe Champlin","age":24,"location":"O'Reillyport"}},{"attributes":{"name":"Cristal Monahan","age":70,"location":"Bednarcester"}},{"attributes":{"name":"Nichole Botsford","age":30,"location":"Urielstead"}},{"attributes":{"name":"Dr. Tabitha Shields IV","age":22,"location":"Melyssaboro"}},{"attributes":{"name":"Brendan Fahey","age":67,"location":"West Wyattton"}},{"attributes":{"name":"Derick Dicki","age":55,"location":"Hertaview"}},{"attributes":{"name":"Linnie Buckridge","age":30,"location":"Gilbert"}},{"attributes":{"name":"Brendan Parker","age":50,"location":"Hyattstead"}},{"attributes":{"name":"Dr. Regina Quitzon","age":78,"location":"North Rustyberg"}},{"attributes":{"name":"Raul Berge-Schuster","age":55,"location":"West Dinobury"}},{"attributes":{"name":"Fernando Schultz V","age":41,"location":"Abernathyburgh"}},{"attributes":{"name":"Clifford Beier Sr.","age":18,"location":"Willardstad"}},{"attributes":{"name":"Wilfred Waters","age":68,"location":"East Brandynland"}},{"attributes":{"name":"Andres Langworth","age":56,"location":"East Prudence"}},{"attributes":{"name":"Daniel Simonis","age":69,"location":"East Hymanview"}},{"attributes":{"name":"Mrs. Sylvia Yundt","age":34,"location":"Mission Viejo"}},{"attributes":{"name":"Oscar Mueller","age":68,"location":"Fort Emmitt"}},{"attributes":{"name":"Adell Schumm-Little","age":36,"location":"North Alexandriabury"}},{"attributes":{"name":"Elyssa Hermann","age":33,"location":"North Lexiside"}},{"attributes":{"name":"Rosella Rath DVM","age":44,"location":"Lake Jamison"}},{"attributes":{"name":"Miss Douglas Fahey-Hackett","age":32,"location":"South Kaydenchester"}},{"attributes":{"name":"Jessyca Smitham","age":39,"location":"Port Benedictfield"}},{"attributes":{"name":"Mr. Lina Weimann","age":57,"location":"New Mallie"}},{"attributes":{"name":"Kendra Wiegand-Nienow","age":27,"location":"Rempelchester"}},{"attributes":{"name":"Dr. Bruce Goyette","age":66,"location":"Wehnerburgh"}},{"attributes":{"name":"Jackie Feil PhD","age":68,"location":"Rempelview"}},{"attributes":{"name":"Josephine Feeney DVM","age":21,"location":"Kleinfort"}},{"attributes":{"name":"Kristen Paucek","age":52,"location":"Buckridgeberg"}},{"attributes":{"name":"Elena Corwin","age":39,"location":"Boehmside"}},{"attributes":{"name":"Irving Prosacco","age":67,"location":"West Aileenside"}},{"attributes":{"name":"Meggie Von","age":58,"location":"Laredo"}},{"attributes":{"name":"Robin Gottlieb","age":79,"location":"Raymondfield"}},{"attributes":{"name":"Donald Ondricka MD","age":73,"location":"East Stevie"}},{"attributes":{"name":"Bernhard Boyle DVM","age":49,"location":"Hesselfurt"}},{"attributes":{"name":"Raul Cronin","age":70,"location":"Goyetteburgh"}},{"attributes":{"name":"Elaine Dooley","age":62,"location":"South Norbert"}},{"attributes":{"name":"Timothy Lubowitz","age":53,"location":"Harrisstad"}},{"attributes":{"name":"Kristen Paucek III","age":27,"location":"Port Lutherberg"}},{"attributes":{"name":"Miss Tina Bauch","age":27,"location":"Brownton"}},{"attributes":{"name":"Ethel Rowe","age":58,"location":"Louisville/Jefferson County"}},{"attributes":{"name":"Irma Huels","age":33,"location":"Eastonmouth"}},{"attributes":{"name":"Noah O'Hara IV","age":36,"location":"Fort Jaqueline"}},{"attributes":{"name":"Mrs. Shaun Kovacek","age":31,"location":"Anaheim"}},{"attributes":{"name":"Casey Prohaska","age":31,"location":"Herminashire"}},{"attributes":{"name":"Denis Herman","age":68,"location":"Macejkovicworth"}},{"attributes":{"name":"Sherry Kozey","age":61,"location":"Port Kimberlyland"}},{"attributes":{"name":"Mr. Garry Kozey","age":63,"location":"Bethesda"}},{"attributes":{"name":"Brian Kshlerin","age":51,"location":"Daughertyton"}},{"attributes":{"name":"Moriah Hackett","age":59,"location":"Nampa"}},{"attributes":{"name":"Beulah Nader-Walsh","age":35,"location":"Hermanfield"}},{"attributes":{"name":"Celestino Conroy V","age":68,"location":"Luettgencester"}},{"attributes":{"name":"Miss Brandt Lueilwitz","age":63,"location":"Maryseside"}},{"attributes":{"name":"Conner Hackett","age":79,"location":"Mariannestead"}},{"attributes":{"name":"Ariane Hagenes DDS","age":44,"location":"North Humberto"}},{"attributes":{"name":"Jovan Langosh","age":58,"location":"Kutchfield"}},{"attributes":{"name":"Dr. Claudine Donnelly","age":60,"location":"Kirkland"}},{"attributes":{"name":"Thomas Ondricka","age":54,"location":"Laurelboro"}},{"attributes":{"name":"Margarette Gibson","age":39,"location":"Lake Lanefurt"}},{"attributes":{"name":"Karen Ferry","age":30,"location":"Larkinport"}},{"attributes":{"name":"Ernie Nader-McGlynn","age":42,"location":"West Camilleview"}},{"attributes":{"name":"Ms. Ransom Mann","age":27,"location":"Hodkiewiczfurt"}},{"attributes":{"name":"Heaven Sanford","age":49,"location":"Palmdale"}},{"attributes":{"name":"Leon Grady","age":74,"location":"O'Keefehaven"}},{"attributes":{"name":"Susan Dach-Hoppe","age":47,"location":"Lueilwitzview"}},{"attributes":{"name":"Miss Vivien Schoen","age":79,"location":"Ullrichfield"}},{"attributes":{"name":"Allen Huels","age":37,"location":"Port Bartberg"}},{"attributes":{"name":"Vance Bogisich","age":63,"location":"North Oswaldo"}},{"attributes":{"name":"Olivia Ondricka","age":22,"location":"D'Amoreborough"}},{"attributes":{"name":"Bennie Daniel","age":48,"location":"Fort Dillon"}},{"attributes":{"name":"Henrietta Champlin DDS","age":67,"location":"South Jazminland"}},{"attributes":{"name":"Timmy Gerhold","age":60,"location":"O'Connerborough"}},{"attributes":{"name":"Efrain Homenick","age":72,"location":"Markston"}},{"attributes":{"name":"Fernando O'Connell","age":48,"location":"Okunevafurt"}},{"attributes":{"name":"Jan Abbott","age":33,"location":"McLaughlinland"}},{"attributes":{"name":"Alberto Zieme","age":49,"location":"Fort Favianview"}},{"attributes":{"name":"Dewey O'Keefe-Lang","age":47,"location":"North Savannah"}},{"attributes":{"name":"Clifford Kulas","age":40,"location":"Lake Dorothyville"}},{"attributes":{"name":"Miss Genevieve Thompson","age":33,"location":"Botsfordside"}},{"attributes":{"name":"Malachi Reinger","age":75,"location":"Scranton"}},{"attributes":{"name":"Rosalyn Schimmel","age":31,"location":"West Verlaworth"}},{"attributes":{"name":"Noemi Kerluke","age":53,"location":"Corona"}},{"attributes":{"name":"Jamie Baumbach","age":74,"location":"Scottyton"}},{"attributes":{"name":"Ms. Mason Legros","age":65,"location":"Ratkechester"}},{"attributes":{"name":"Lauren Cruickshank-Cummings","age":80,"location":"Arnoldtown"}},{"attributes":{"name":"Rudolph Carter-Friesen","age":73,"location":"Ferrymouth"}},{"attributes":{"name":"Kelley MacGyver","age":43,"location":"Fort Aliyahaven"}},{"attributes":{"name":"Lillian Weissnat","age":28,"location":"Birdieworth"}},{"attributes":{"name":"Dr. Camilla Daniel-Kshlerin","age":60,"location":"West Nathencester"}},{"attributes":{"name":"Eloise Parisian","age":22,"location":"Fort Adeletown"}},{"attributes":{"name":"Stella Monahan","age":46,"location":"West Mosesborough"}},{"attributes":{"name":"Mortimer Rath","age":35,"location":"Thorafort"}},{"attributes":{"name":"Mrs. Joel Schroeder","age":23,"location":"Santa Cruz"}},{"attributes":{"name":"Arthur Stracke","age":28,"location":"Port Heloise"}},{"attributes":{"name":"Samuel Ankunding V","age":47,"location":"Schmittfield"}},{"attributes":{"name":"Grace Moen","age":55,"location":"Salvadorhaven"}},{"attributes":{"name":"Audrey Lang","age":51,"location":"Fort Michale"}},{"attributes":{"name":"Brandyn Ondricka","age":25,"location":"Izaiahstead"}},{"attributes":{"name":"Koby Cormier","age":59,"location":"Karinatown"}},{"attributes":{"name":"Logan Hartmann","age":72,"location":"Lake Virginiefort"}},{"attributes":{"name":"Kaylah Daugherty Sr.","age":35,"location":"Miami Gardens"}},{"attributes":{"name":"Terrell Towne","age":36,"location":"Fort Odieberg"}},{"attributes":{"name":"Emma Tromp","age":80,"location":"North Carterhaven"}},{"attributes":{"name":"Prudence Jast PhD","age":50,"location":"Oceanehaven"}},{"attributes":{"name":"Jaclyn Rodriguez","age":40,"location":"Yuba City"}},{"attributes":{"name":"Enrique Crona","age":33,"location":"Palm Coast"}},{"attributes":{"name":"Allison Hermiston-Fahey","age":19,"location":"Fort Lilianberg"}},{"attributes":{"name":"Ronald Wyman","age":23,"location":"New Ludwig"}},{"attributes":{"name":"Eleanora Feeney","age":77,"location":"Hilbertworth"}},{"attributes":{"name":"Lillie Hirthe","age":34,"location":"North Lee"}},{"attributes":{"name":"Abbigail Green","age":70,"location":"Fort Christop"}},{"attributes":{"name":"Kellen Jacobson","age":74,"location":"Ann Arbor"}},{"attributes":{"name":"Sarah Lemke","age":21,"location":"Lombard"}},{"attributes":{"name":"Deborah Smith","age":37,"location":"Huelsberg"}},{"attributes":{"name":"Nina Marvin","age":45,"location":"New Destiniview"}},{"attributes":{"name":"Ms. Diana Bergnaum","age":30,"location":"O'Konborough"}},{"attributes":{"name":"Jeremie Gleichner I","age":77,"location":"Fort Mosheberg"}},{"attributes":{"name":"Angel Stiedemann","age":67,"location":"Hintzfield"}},{"attributes":{"name":"Laurel Stiedemann","age":39,"location":"Beckerhaven"}},{"attributes":{"name":"Stacey Stracke","age":72,"location":"Abshireboro"}},{"attributes":{"name":"Deanna Stamm Jr.","age":70,"location":"Port Evansberg"}},{"attributes":{"name":"Ms. Monica Mosciski","age":50,"location":"West Elise"}},{"attributes":{"name":"Brandy Anderson","age":22,"location":"Port Jaycee"}},{"attributes":{"name":"Dr. Lionel Conroy-Rogahn","age":26,"location":"Simton"}},{"attributes":{"name":"Dr. Marcus Little","age":50,"location":"Carmel"}},{"attributes":{"name":"Mr. Dwayne Wolff","age":32,"location":"Milford"}},{"attributes":{"name":"Fernando Frami","age":80,"location":"Fort Dana"}},{"attributes":{"name":"Cody Gislason","age":35,"location":"Schroederfield"}},{"attributes":{"name":"Abraham Zieme","age":74,"location":"North Juwanton"}},{"attributes":{"name":"Brent Batz Sr.","age":59,"location":"Durganburgh"}},{"attributes":{"name":"Ms. Joanna Deckow Sr.","age":52,"location":"North Ahmed"}},{"attributes":{"name":"Cecilia Gerhold","age":48,"location":"South Sammieworth"}},{"attributes":{"name":"Josh Bahringer","age":30,"location":"North Cathrine"}},{"attributes":{"name":"Orville Schmitt","age":63,"location":"Heaneyburgh"}},{"attributes":{"name":"Misty Erdman","age":25,"location":"New Deshaun"}},{"attributes":{"name":"Keagan Kozey","age":34,"location":"South Houstonberg"}},{"attributes":{"name":"Odessa Beier","age":32,"location":"Lakinchester"}},{"attributes":{"name":"Ludwig Crist PhD","age":79,"location":"Goldnerfurt"}},{"attributes":{"name":"Amya Torphy","age":29,"location":"Arnetown"}},{"attributes":{"name":"Meghan Daniel","age":23,"location":"East Yeseniaworth"}},{"attributes":{"name":"Annabel Erdman","age":61,"location":"Lake Della"}},{"attributes":{"name":"Melanie Harber-Pfannerstill","age":61,"location":"Rylanmouth"}},{"attributes":{"name":"Alvin Sporer","age":21,"location":"Lake Melisachester"}},{"attributes":{"name":"Anna Wintheiser","age":73,"location":"Kunzestead"}},{"attributes":{"name":"Christina Schaden Jr.","age":45,"location":"Fort Andrehaven"}},{"attributes":{"name":"Devon Wiegand","age":57,"location":"Karinashire"}},{"attributes":{"name":"Emie Fadel","age":19,"location":"Ismaelstead"}},{"attributes":{"name":"Cassidy Kris","age":22,"location":"D'Amoreville"}},{"attributes":{"name":"Aric Crist","age":33,"location":"South Lonniecester"}},{"attributes":{"name":"Jazmin Hammes V","age":62,"location":"Lake Gregg"}},{"attributes":{"name":"Lora Witting","age":27,"location":"Fort Ellisboro"}},{"attributes":{"name":"Fae Ratke","age":55,"location":"Fort Rosanna"}},{"attributes":{"name":"Martin Wilkinson","age":57,"location":"Justuston"}},{"attributes":{"name":"Dr. Green Towne","age":29,"location":"Irvine"}},{"attributes":{"name":"Joann Gutkowski Sr.","age":50,"location":"Stokesport"}},{"attributes":{"name":"Arlene Mueller","age":63,"location":"Monteshire"}},{"attributes":{"name":"Consuelo Williamson","age":35,"location":"Predovictown"}},{"attributes":{"name":"Danielle Wolff","age":30,"location":"Lake Burdetteworth"}},{"attributes":{"name":"Dale Schmitt","age":65,"location":"Bradlyburgh"}},{"attributes":{"name":"Leatha Skiles","age":49,"location":"Albertaville"}},{"attributes":{"name":"Jesus Auer I","age":62,"location":"Lake Lailaport"}},{"attributes":{"name":"Amelia Gislason","age":65,"location":"Langoshland"}},{"attributes":{"name":"Emil Swaniawski","age":77,"location":"Pacochaside"}},{"attributes":{"name":"Craig Hudson III","age":59,"location":"Jersey City"}},{"attributes":{"name":"Ulises Shanahan PhD","age":67,"location":"New Chazbury"}},{"attributes":{"name":"Angelo Flatley","age":43,"location":"Madysonboro"}},{"attributes":{"name":"Lynn Beer","age":69,"location":"East Philip"}},{"attributes":{"name":"Miss Calista Smith","age":54,"location":"Fort Mercedesshire"}},{"attributes":{"name":"Ginger Nikolaus","age":40,"location":"McLaughlinfort"}},{"attributes":{"name":"Nicholas Feest","age":50,"location":"Fort Judah"}},{"attributes":{"name":"Ms. Okey Moen","age":19,"location":"New Coleman"}},{"attributes":{"name":"Hadley Christiansen","age":58,"location":"West Brendonland"}},{"attributes":{"name":"Alysa Gulgowski III","age":46,"location":"Hyattport"}},{"attributes":{"name":"Amy Glover","age":28,"location":"Nitzscheview"}},{"attributes":{"name":"Elsa Pacocha","age":44,"location":"Karliemouth"}},{"attributes":{"name":"Natasha Champlin","age":54,"location":"Lake Barney"}},{"attributes":{"name":"Mercedes Tremblay","age":36,"location":"East Bo"}},{"attributes":{"name":"Jennie Collier","age":77,"location":"Fort Ivahport"}},{"attributes":{"name":"Anthony Jacobs","age":30,"location":"Quitzonmouth"}},{"attributes":{"name":"Rosa Lemke","age":18,"location":"Euless"}},{"attributes":{"name":"Virginia Murphy","age":37,"location":"Alizefield"}},{"attributes":{"name":"Mr. Lawrence O'Reilly","age":71,"location":"Rolfsonburgh"}},{"attributes":{"name":"Ebony Goldner","age":47,"location":"South Boydbury"}},{"attributes":{"name":"Dr. Gilbert Hayes","age":27,"location":"Bergeview"}},{"attributes":{"name":"Dr. Grant Torp","age":22,"location":"Verlieville"}},{"attributes":{"name":"Emmett Sauer","age":54,"location":"Whiteland"}},{"attributes":{"name":"Charlie Russel","age":78,"location":"North Dominic"}},{"attributes":{"name":"Kristopher Heathcote","age":71,"location":"Milpitas"}},{"attributes":{"name":"Wade Howe","age":30,"location":"Fountainebleau"}},{"attributes":{"name":"Cesar Homenick","age":31,"location":"Peytonshire"}},{"attributes":{"name":"Sincere Auer","age":59,"location":"North Lula"}},{"attributes":{"name":"Adrienne Rutherford","age":39,"location":"Compton"}},{"attributes":{"name":"Jana Von","age":79,"location":"Barnstable Town"}},{"attributes":{"name":"Bobby Barton","age":66,"location":"New Marvin"}},{"attributes":{"name":"Gregory Schoen","age":43,"location":"South Kaela"}},{"attributes":{"name":"Dr. Otilia Brakus","age":39,"location":"West Euna"}},{"attributes":{"name":"Antoinette Schulist IV","age":77,"location":"O'Konfort"}},{"attributes":{"name":"Giovanny Weissnat","age":29,"location":"Melbourne"}},{"attributes":{"name":"Luz Sauer","age":78,"location":"Treutelhaven"}},{"attributes":{"name":"Darren Wyman I","age":80,"location":"Rogersborough"}},{"attributes":{"name":"Annabell Casper","age":66,"location":"Lake Eudora"}},{"attributes":{"name":"Adolf Hilll","age":69,"location":"West Derrickfield"}},{"attributes":{"name":"Noble Veum","age":40,"location":"Dexterhaven"}},{"attributes":{"name":"Laurence Williamson","age":38,"location":"Yuba City"}},{"attributes":{"name":"Lorene Ebert DDS","age":33,"location":"Perrymouth"}},{"attributes":{"name":"Sammy Zulauf","age":32,"location":"Schambergerberg"}},{"attributes":{"name":"Kaley Jacobi","age":25,"location":"North Thereseton"}},{"attributes":{"name":"Ms. Jerad Carroll","age":69,"location":"West Emeliechester"}},{"attributes":{"name":"Hugo Murazik","age":59,"location":"Town 'n' Country"}},{"attributes":{"name":"Rebecca Hoppe","age":53,"location":"Kihnburgh"}},{"attributes":{"name":"Enoch Bartell","age":55,"location":"Centreville"}},{"attributes":{"name":"Ida Gerhold IV","age":43,"location":"Lake Caylahaven"}},{"attributes":{"name":"Alexis Terry","age":62,"location":"New Luis"}},{"attributes":{"name":"Priscilla Hilpert","age":46,"location":"South Emeliaside"}},{"attributes":{"name":"Dan Harber","age":20,"location":"South Perryborough"}},{"attributes":{"name":"Keith Steuber","age":45,"location":"Doylemouth"}},{"attributes":{"name":"Dana Konopelski","age":46,"location":"Fort Gailburgh"}},{"attributes":{"name":"Dr. Guadalupe Oberbrunner","age":55,"location":"Bartolettifield"}},{"attributes":{"name":"Jeramy Beer","age":19,"location":"New Ashleighfield"}},{"attributes":{"name":"Sandra Beahan","age":63,"location":"Bogisichland"}},{"attributes":{"name":"Ezequiel Waelchi","age":36,"location":"North Ena"}},{"attributes":{"name":"Adolf Moore","age":24,"location":"Lake Liana"}},{"attributes":{"name":"Mrs. Stella Thiel","age":29,"location":"Zulaufberg"}},{"attributes":{"name":"Grace Fay","age":50,"location":"Tommieburgh"}},{"attributes":{"name":"Katie Rolfson","age":64,"location":"Noblesville"}},{"attributes":{"name":"Sydney Williamson","age":72,"location":"Alameda"}},{"attributes":{"name":"Mr. Adam Klein","age":25,"location":"Brockton"}},{"attributes":{"name":"Stephanie Murray","age":68,"location":"West Darian"}},{"attributes":{"name":"Donald Hyatt","age":55,"location":"Melynaworth"}},{"attributes":{"name":"Mrs. Allison West","age":36,"location":"Port Noemymouth"}},{"attributes":{"name":"Jeffery Dach","age":68,"location":"New Lisettehaven"}},{"attributes":{"name":"Jean Langworth","age":35,"location":"Ondrickaboro"}},{"attributes":{"name":"Dr. Ira Connelly-Franecki","age":61,"location":"South John"}},{"attributes":{"name":"Julio Boyle","age":63,"location":"Jeffersonville"}},{"attributes":{"name":"Robert Witting-Jerde","age":21,"location":"Bergstromside"}},{"attributes":{"name":"Danika Donnelly-Grimes","age":66,"location":"Lake Abdielberg"}},{"attributes":{"name":"Virginia Hackett","age":38,"location":"Lake Rutheboro"}},{"attributes":{"name":"Precious Mertz","age":78,"location":"West Weston"}},{"attributes":{"name":"Tanya Corkery","age":21,"location":"McAllen"}},{"attributes":{"name":"Misty Cormier","age":50,"location":"South Alessandra"}},{"attributes":{"name":"Ted Wunsch","age":76,"location":"East Mireilleboro"}},{"attributes":{"name":"Georgette Dickens","age":74,"location":"East Jeffbury"}},{"attributes":{"name":"Dan Fritsch","age":51,"location":"Spinkaton"}},{"attributes":{"name":"Dwight Jones I","age":57,"location":"New Jorgeland"}},{"attributes":{"name":"Aida Osinski","age":75,"location":"Leonorburgh"}},{"attributes":{"name":"Roderick Reinger-Hintz","age":76,"location":"Susanville"}},{"attributes":{"name":"Arnold Brakus","age":54,"location":"Lake Ulisesburgh"}},{"attributes":{"name":"Ed Hackett MD","age":75,"location":"Schmelerborough"}},{"attributes":{"name":"Vicki Wilderman","age":19,"location":"Gresham"}},{"attributes":{"name":"Amira Hermann DVM","age":63,"location":"East Dimitriborough"}},{"attributes":{"name":"Humberto Becker","age":75,"location":"Nolanville"}},{"attributes":{"name":"Hugo Strosin","age":32,"location":"Fort Lilianport"}},{"attributes":{"name":"Ms. Dorothy Balistreri","age":28,"location":"East Ivory"}},{"attributes":{"name":"Monserrat Jones","age":22,"location":"VonRuedenshire"}},{"attributes":{"name":"Jaqueline McDermott","age":46,"location":"Bruentown"}},{"attributes":{"name":"Julianne Glover","age":32,"location":"Heiditon"}},{"attributes":{"name":"Miss Janice Cummings","age":73,"location":"East Asia"}},{"attributes":{"name":"Jerald Mann","age":72,"location":"New Waylonworth"}},{"attributes":{"name":"Nikolas Kautzer","age":33,"location":"New Eda"}},{"attributes":{"name":"Sonya Parker IV","age":63,"location":"Citrus Heights"}},{"attributes":{"name":"Marion Moore","age":48,"location":"South Kallie"}},{"attributes":{"name":"Wanda Ryan I","age":63,"location":"College Station"}},{"attributes":{"name":"Robyn Miller-Casper","age":46,"location":"Lake Brando"}},{"attributes":{"name":"Dr. Jim Hamill","age":42,"location":"Arecibo"}},{"attributes":{"name":"Irene Jerde","age":23,"location":"Romaland"}},{"attributes":{"name":"Bruce Emmerich","age":64,"location":"Fort Mandy"}},{"attributes":{"name":"Claire Tromp V","age":21,"location":"Alfonsoville"}},{"attributes":{"name":"Marge Zemlak","age":72,"location":"Bonita Springs"}},{"attributes":{"name":"Kim Reilly","age":67,"location":"New Alford"}},{"attributes":{"name":"Casey Reichel","age":23,"location":"South Gennaro"}},{"attributes":{"name":"Ryan Grant","age":74,"location":"West Pabloside"}},{"attributes":{"name":"Arnold Mayer-Murray","age":65,"location":"Albafield"}},{"attributes":{"name":"Mrs. Karina Lang DDS","age":70,"location":"Torpchester"}},{"attributes":{"name":"Rachel Gutkowski","age":59,"location":"North Sigridbury"}},{"attributes":{"name":"Adeline Nader","age":79,"location":"Milfordport"}},{"attributes":{"name":"Mr. Jan Funk","age":22,"location":"North Little Rock"}},{"attributes":{"name":"Dulce Huels","age":35,"location":"West Skylar"}},{"attributes":{"name":"Mrs. Gail Cummerata I","age":57,"location":"New Clementina"}},{"attributes":{"name":"Alberto Nolan","age":61,"location":"Beattytown"}},{"attributes":{"name":"Rolando Rowe","age":36,"location":"Charlotte"}},{"attributes":{"name":"Samir Turcotte","age":43,"location":"Stantonstad"}},{"attributes":{"name":"Lamar MacGyver","age":21,"location":"North Charlene"}},{"attributes":{"name":"Adrian Mertz","age":21,"location":"North Jovani"}},{"attributes":{"name":"Gerald Kassulke","age":41,"location":"Flint"}},{"attributes":{"name":"Lorena Nitzsche","age":40,"location":"Berylhaven"}},{"attributes":{"name":"Payton Waters","age":26,"location":"Cassieland"}},{"attributes":{"name":"Geovanni Bartell-Bergstrom","age":25,"location":"East Elna"}},{"attributes":{"name":"Dianna Romaguera","age":21,"location":"North Winstonland"}},{"attributes":{"name":"Gertrude Cremin","age":45,"location":"Karineboro"}},{"attributes":{"name":"Nancy Corwin","age":64,"location":"Watersstead"}},{"attributes":{"name":"Martin Wiegand DDS","age":29,"location":"South Rico"}},{"attributes":{"name":"Mr. Guillermo Mayert","age":62,"location":"Lake Romantown"}},{"attributes":{"name":"Phil Walter","age":73,"location":"Sterling Heights"}},{"attributes":{"name":"Callie Wunsch","age":56,"location":"North Omabury"}},{"attributes":{"name":"Julie Schamberger","age":54,"location":"Mission Viejo"}},{"attributes":{"name":"Dr. Verdie Kessler","age":31,"location":"Arcadia"}},{"attributes":{"name":"Ruth Williamson","age":76,"location":"Bakersfield"}},{"attributes":{"name":"Elvera Schmeler","age":72,"location":"New Eulafield"}},{"attributes":{"name":"Aryanna Rowe","age":25,"location":"West Kyla"}},{"attributes":{"name":"Spencer Wisozk","age":59,"location":"East Marquiseville"}},{"attributes":{"name":"Maria Upton","age":19,"location":"Port Katelin"}},{"attributes":{"name":"Kaycee Powlowski DDS","age":47,"location":"Port Adriennemouth"}},{"attributes":{"name":"Orlando Fritsch","age":20,"location":"Carmichael"}},{"attributes":{"name":"Manuel Champlin","age":27,"location":"Herminiohaven"}},{"attributes":{"name":"Beatrice Jacobi","age":23,"location":"Fort Worth"}},{"attributes":{"name":"Isabella Dibbert","age":54,"location":"Hollywood"}},{"attributes":{"name":"Bailey Schiller","age":52,"location":"McKinney"}},{"attributes":{"name":"Shelia Krajcik-Crooks","age":73,"location":"Urbandale"}},{"attributes":{"name":"Dwayne Schowalter II","age":37,"location":"Fort Wilson"}},{"attributes":{"name":"Andrew Sanford","age":29,"location":"Bountiful"}},{"attributes":{"name":"Reymundo Anderson","age":78,"location":"Port Rudolphshire"}},{"attributes":{"name":"Mr. Meagan Breitenberg","age":64,"location":"Galveston"}},{"attributes":{"name":"Abigale Crist-Olson","age":60,"location":"Ellabury"}},{"attributes":{"name":"Rafael Denesik MD","age":31,"location":"Lake Charles"}},{"attributes":{"name":"Samantha Sanford","age":22,"location":"Dominicfort"}},{"attributes":{"name":"Randolph Cartwright DVM","age":66,"location":"Port Samantha"}},{"attributes":{"name":"Domenick Kohler","age":50,"location":"Waltham"}},{"attributes":{"name":"Judith Welch","age":78,"location":"Covina"}},{"attributes":{"name":"Dr. Nathaniel Crona","age":34,"location":"South Hailey"}},{"attributes":{"name":"Saige Rogahn","age":37,"location":"Millsmouth"}},{"attributes":{"name":"Bobby Windler-Klein","age":69,"location":"Micheleburgh"}},{"attributes":{"name":"Kelvin Hirthe","age":30,"location":"West Hilbert"}},{"attributes":{"name":"Jovani Howell","age":23,"location":"North Ethyl"}},{"attributes":{"name":"Ernestine Robel","age":76,"location":"Alannamouth"}},{"attributes":{"name":"Citlalli Little","age":52,"location":"Redwood City"}},{"attributes":{"name":"Isom Koepp","age":18,"location":"Binghamton"}},{"attributes":{"name":"Earl Schuster IV","age":52,"location":"Nathanielstead"}},{"attributes":{"name":"Marshall Langworth","age":34,"location":"Kshlerinhaven"}},{"attributes":{"name":"Mr. Eula Morissette","age":75,"location":"Ayanaside"}},{"attributes":{"name":"Robb Kemmer","age":56,"location":"Lauderhill"}},{"attributes":{"name":"Tamara Mann","age":52,"location":"Fort Katelyn"}},{"attributes":{"name":"Danny Gottlieb","age":23,"location":"Dallasshire"}},{"attributes":{"name":"Mr. Tammy Carter","age":41,"location":"Roweberg"}},{"attributes":{"name":"Mittie White-Lubowitz","age":53,"location":"Hirtheview"}},{"attributes":{"name":"Dr. Shanel Barton","age":78,"location":"Luciefort"}},{"attributes":{"name":"Mireille White","age":75,"location":"New Britain"}},{"attributes":{"name":"Alexander Greenholt IV","age":27,"location":"Malachishire"}},{"attributes":{"name":"Ward Spencer III","age":25,"location":"Samantamouth"}},{"attributes":{"name":"Rhea Spencer","age":44,"location":"Apex"}},{"attributes":{"name":"Dorthy Hyatt","age":23,"location":"Fort Orloshire"}},{"attributes":{"name":"Nathan Ondricka","age":24,"location":"Mavisstad"}},{"attributes":{"name":"Brendan Lakin DDS","age":68,"location":"Kadefurt"}},{"attributes":{"name":"Leopoldo Haag","age":70,"location":"Lake Juliastad"}},{"attributes":{"name":"Julian Heidenreich","age":19,"location":"Litzybury"}},{"attributes":{"name":"Elza Kiehn-Oberbrunner","age":25,"location":"West Aryannaborough"}},{"attributes":{"name":"Marie Legros","age":38,"location":"North Quinton"}},{"attributes":{"name":"Edith Roberts","age":76,"location":"Perth Amboy"}},{"attributes":{"name":"Leonard Skiles","age":66,"location":"East Zackery"}},{"attributes":{"name":"Clyde Padberg IV","age":46,"location":"Dominicstead"}},{"attributes":{"name":"Gwendolyn Simonis","age":69,"location":"West Erinstead"}},{"attributes":{"name":"Camren Crooks","age":56,"location":"Medford"}},{"attributes":{"name":"Wilbert Halvorson IV","age":38,"location":"Lake Christina"}},{"attributes":{"name":"Randall King","age":32,"location":"Leannonside"}},{"attributes":{"name":"Karolann Fahey","age":75,"location":"Lakinborough"}},{"attributes":{"name":"Isabell Harris","age":71,"location":"South Whittier"}},{"attributes":{"name":"Dr. Marlon Huel","age":70,"location":"Port Robert"}},{"attributes":{"name":"Mrs. Benjamin Rutherford","age":45,"location":"Richland"}},{"attributes":{"name":"Rowan Prohaska","age":57,"location":"Lorenzville"}},{"attributes":{"name":"Ressie Rippin","age":79,"location":"Wittingfurt"}},{"attributes":{"name":"Deanna Hoeger-Berge Jr.","age":42,"location":"Carson"}},{"attributes":{"name":"Johanna Kerluke","age":26,"location":"Braunshire"}},{"attributes":{"name":"Jordan Mohr","age":41,"location":"Huntersville"}},{"attributes":{"name":"Aaron Rau","age":47,"location":"Port Barbaraville"}},{"attributes":{"name":"Kristian Kling","age":21,"location":"O'Reillyview"}},{"attributes":{"name":"Bryant Kris","age":23,"location":"Port Abel"}},{"attributes":{"name":"Willard Upton","age":44,"location":"Zechariahshire"}},{"attributes":{"name":"Ruben Krajcik","age":75,"location":"Kunzeland"}},{"attributes":{"name":"Mr. Arturo Ullrich IV","age":20,"location":"East Coyfurt"}},{"attributes":{"name":"Anais Koepp PhD","age":56,"location":"New Venaton"}},{"attributes":{"name":"Lina Lindgren","age":22,"location":"Sheboygan"}},{"attributes":{"name":"Ms. Vita Kihn","age":28,"location":"Sadyecester"}},{"attributes":{"name":"Arlene Sauer-Halvorson","age":55,"location":"Osinskifield"}},{"attributes":{"name":"Eli Hane","age":52,"location":"Zacheryworth"}},{"attributes":{"name":"Myra Huel","age":32,"location":"Port Jany"}},{"attributes":{"name":"Mariah Cartwright MD","age":29,"location":"Berniecefield"}},{"attributes":{"name":"Miss Gavin Welch","age":56,"location":"Fort Heber"}},{"attributes":{"name":"Dixie Ullrich","age":46,"location":"Lehigh Acres"}},{"attributes":{"name":"Jedediah Wisoky","age":43,"location":"Fort Rhiannafield"}},{"attributes":{"name":"Dr. Irvin Gibson","age":62,"location":"Gusikowskichester"}},{"attributes":{"name":"Kenyon Bauch PhD","age":59,"location":"Vickymouth"}},{"attributes":{"name":"Elsie Trantow","age":32,"location":"Wilfordstad"}},{"attributes":{"name":"Neal Kuphal","age":70,"location":"Lake Salvadorworth"}},{"attributes":{"name":"Glen Baumbach","age":37,"location":"Port Randal"}},{"attributes":{"name":"Yolanda Jakubowski","age":55,"location":"West Wyman"}},{"attributes":{"name":"Hilda Haag","age":73,"location":"Kubtown"}},{"attributes":{"name":"Deborah Krajcik","age":19,"location":"Fabiolaburgh"}},{"attributes":{"name":"Jimmie Huel","age":50,"location":"Fort Julianafurt"}},{"attributes":{"name":"Shannon Kemmer DDS","age":67,"location":"North Kayli"}},{"attributes":{"name":"Adell Heller","age":61,"location":"Port Eliseotown"}},{"attributes":{"name":"Rogelio McCullough Jr.","age":35,"location":"Tiarafield"}},{"attributes":{"name":"Lilyan Glover DVM","age":72,"location":"Plainfield"}},{"attributes":{"name":"Theodora Pfannerstill","age":48,"location":"West Covina"}},{"attributes":{"name":"Valerie Hackett","age":35,"location":"East Carmenville"}},{"attributes":{"name":"Joana Beatty","age":42,"location":"Coral Springs"}},{"attributes":{"name":"Timothy Pacocha","age":33,"location":"Tuscaloosa"}},{"attributes":{"name":"Charlene Bartell","age":68,"location":"Florin"}},{"attributes":{"name":"Santiago Herman","age":77,"location":"San Juan"}},{"attributes":{"name":"Brett Schaden","age":57,"location":"Goodwinville"}},{"attributes":{"name":"Ms. Nola Langosh","age":29,"location":"Livonia"}},{"attributes":{"name":"Waylon Armstrong","age":55,"location":"West Jerrold"}},{"attributes":{"name":"Ms. Wm Heidenreich","age":55,"location":"North Peytonbury"}},{"attributes":{"name":"Ms. Melvina Schamberger","age":22,"location":"North Babycester"}},{"attributes":{"name":"Michael Spinka","age":22,"location":"Shirleymouth"}},{"attributes":{"name":"Cayla McClure","age":20,"location":"West Olaf"}},{"attributes":{"name":"Mr. Josefa Wiza","age":67,"location":"McGlynnworth"}},{"attributes":{"name":"Michael Gerhold","age":37,"location":"Bettyeville"}},{"attributes":{"name":"Ms. Arthur Corkery DDS","age":79,"location":"South Joana"}},{"attributes":{"name":"Lauriane McKenzie","age":71,"location":"Port Velva"}},{"attributes":{"name":"Roderick Hilpert","age":26,"location":"Waldorf"}},{"attributes":{"name":"Bernadine Cruickshank","age":20,"location":"Moenfort"}},{"attributes":{"name":"Eduardo Lind","age":59,"location":"Tamarac"}},{"attributes":{"name":"Duncan Lindgren","age":59,"location":"North Westleycester"}},{"attributes":{"name":"Chelsea Lindgren-Wisoky","age":53,"location":"South Alta"}},{"attributes":{"name":"Gene Breitenberg","age":60,"location":"East Cortezstad"}},{"attributes":{"name":"Toby Harris","age":64,"location":"Terrycester"}},{"attributes":{"name":"Kylie Pfannerstill","age":36,"location":"Daphneeboro"}},{"attributes":{"name":"Rickey Boehm","age":75,"location":"Waltershire"}},{"attributes":{"name":"Ms. Lindsay Walsh","age":61,"location":"Bruenboro"}},{"attributes":{"name":"Noel Ernser","age":36,"location":"Audreannestad"}},{"attributes":{"name":"Tyshawn Murazik","age":39,"location":"South Nonahaven"}},{"attributes":{"name":"Miss Amiya Lehner","age":49,"location":"Gutkowskifield"}},{"attributes":{"name":"Cedric Barton","age":23,"location":"Manchester"}},{"attributes":{"name":"Mrs. Katie Becker I","age":66,"location":"Wilson"}},{"attributes":{"name":"Olivia Lubowitz","age":73,"location":"North Jensenside"}},{"attributes":{"name":"Maryam Nikolaus","age":36,"location":"Felipestad"}},{"attributes":{"name":"Eden Schiller","age":55,"location":"Kieranport"}},{"attributes":{"name":"Guy Graham","age":20,"location":"Cartwrightshire"}},{"attributes":{"name":"Erica Beahan","age":42,"location":"Felixfurt"}},{"attributes":{"name":"Nichole Jacobson","age":62,"location":"Jaskolskiport"}},{"attributes":{"name":"Brett Zulauf I","age":61,"location":"West Mckenzie"}},{"attributes":{"name":"Miss Allison Hamill","age":31,"location":"North Savion"}},{"attributes":{"name":"Doyle Runolfsson-Pfannerstill","age":52,"location":"Antoniostad"}},{"attributes":{"name":"Issac Stroman","age":46,"location":"Ariannacester"}},{"attributes":{"name":"Clinton Schamberger","age":56,"location":"Ressiefield"}},{"attributes":{"name":"Maurice Hauck","age":37,"location":"Port Eldred"}},{"attributes":{"name":"Preston Bode-McDermott","age":55,"location":"East Perry"}},{"attributes":{"name":"Enrique Leannon","age":64,"location":"Savannahshire"}},{"attributes":{"name":"Dr. Clare Cummerata Sr.","age":26,"location":"New Tamia"}},{"attributes":{"name":"Gloria Bednar","age":26,"location":"Millerboro"}},{"attributes":{"name":"Benny Goldner PhD","age":35,"location":"Fort Felicitahaven"}},{"attributes":{"name":"Rhonda Nikolaus","age":41,"location":"South Laurieworth"}},{"attributes":{"name":"Elias Lueilwitz PhD","age":24,"location":"Franeyburgh"}},{"attributes":{"name":"Dejon O'Keefe","age":80,"location":"Fort Jamir"}},{"attributes":{"name":"Paris Morar","age":26,"location":"Fort Murielstad"}},{"attributes":{"name":"Gerda Durgan DVM","age":26,"location":"Altoona"}},{"attributes":{"name":"Ginger Sauer","age":62,"location":"Fort Sharon"}},{"attributes":{"name":"Delpha Renner II","age":55,"location":"Colton"}},{"attributes":{"name":"Monica Bradtke Jr.","age":29,"location":"Huelside"}},{"attributes":{"name":"Mr. Junius Walsh","age":38,"location":"Rippinfurt"}},{"attributes":{"name":"Madeline Harris","age":33,"location":"Domenicahaven"}},{"attributes":{"name":"Bernard Paucek","age":39,"location":"Rosalyncester"}},{"attributes":{"name":"Jeromy Bernhard","age":80,"location":"Fisherworth"}},{"attributes":{"name":"Terry Bosco-Russel","age":35,"location":"Pollichcester"}},{"attributes":{"name":"Savanna Collins I","age":80,"location":"West Aubreestad"}},{"attributes":{"name":"Michael Huels","age":60,"location":"Riverside"}},{"attributes":{"name":"Kobe Heathcote","age":41,"location":"Racine"}},{"attributes":{"name":"Willa Morissette DVM","age":51,"location":"Nilsworth"}},{"attributes":{"name":"Mrs. Adrain Tremblay","age":31,"location":"Jacobicester"}},{"attributes":{"name":"Ricky Orn","age":48,"location":"Wilberburgh"}},{"attributes":{"name":"Wilbert Miller","age":29,"location":"Ezequielland"}},{"attributes":{"name":"Ernest Armstrong","age":51,"location":"Gulfport"}},{"attributes":{"name":"Noah Heaney","age":35,"location":"East Joyceland"}},{"attributes":{"name":"Leopoldo Fritsch","age":32,"location":"Mullerville"}},{"attributes":{"name":"Nora Hoppe","age":36,"location":"East Anastasia"}},{"attributes":{"name":"Dr. Kade Ullrich","age":61,"location":"New Bulah"}},{"attributes":{"name":"Bert Halvorson","age":27,"location":"McLaughlinfort"}},{"attributes":{"name":"Ethan Gislason","age":32,"location":"South Eve"}},{"attributes":{"name":"Gerardo Boehm","age":65,"location":"Jackelinemouth"}},{"attributes":{"name":"Tanya Block","age":55,"location":"Maramouth"}},{"attributes":{"name":"Wilma Rempel","age":44,"location":"Geraldineberg"}},{"attributes":{"name":"Joann Franey","age":74,"location":"North Rosendo"}},{"attributes":{"name":"Gordon Bergnaum","age":34,"location":"Port Merlin"}},{"attributes":{"name":"Sydni Hudson","age":46,"location":"North Port"}},{"attributes":{"name":"Johnson Okuneva","age":36,"location":"Orem"}},{"attributes":{"name":"Carolyn Hirthe","age":50,"location":"Dallas"}},{"attributes":{"name":"Jasmin Pagac","age":18,"location":"Leolaport"}},{"attributes":{"name":"Shawn Hoeger","age":51,"location":"Boyerboro"}},{"attributes":{"name":"Maurice O'Connell","age":54,"location":"Richardson"}},{"attributes":{"name":"Andrew Johnston","age":25,"location":"Cape Coral"}},{"attributes":{"name":"Dr. Brandyn Bode","age":30,"location":"Lake Elviefield"}},{"attributes":{"name":"Joann Jast","age":53,"location":"New Wileychester"}},{"attributes":{"name":"Susan Mann","age":72,"location":"Sipesland"}},{"attributes":{"name":"Dr. Archie Wisoky","age":41,"location":"Salt Lake City"}},{"attributes":{"name":"Jamison Jakubowski","age":49,"location":"Lehigh Acres"}},{"attributes":{"name":"Mildred Hills","age":70,"location":"Port Eldonworth"}},{"attributes":{"name":"Jonathan Cassin","age":23,"location":"East Jaunitaworth"}},{"attributes":{"name":"Ms. Trudie McLaughlin","age":24,"location":"Temecula"}},{"attributes":{"name":"Jesse Hirthe","age":41,"location":"South Leonport"}},{"attributes":{"name":"Maggie Treutel","age":62,"location":"South Blaisefurt"}},{"attributes":{"name":"Jimmy Cremin-Jacobi","age":74,"location":"Kozeyhaven"}},{"attributes":{"name":"Jennie Block","age":21,"location":"Hudsonport"}},{"attributes":{"name":"Jacob Waters","age":69,"location":"New Estevanstad"}},{"attributes":{"name":"Dr. Lamar Schmidt V","age":49,"location":"Mosciskiside"}},{"attributes":{"name":"Brandi Botsford","age":55,"location":"East Haleighfort"}},{"attributes":{"name":"Armando Block","age":66,"location":"Casimerfort"}},{"attributes":{"name":"Judah Welch-Tillman","age":75,"location":"Morissettecester"}},{"attributes":{"name":"Santino Hirthe","age":60,"location":"New Fabiolacester"}},{"attributes":{"name":"Mrs. Mittie Rosenbaum","age":59,"location":"Lake Santinoburgh"}},{"attributes":{"name":"Mrs. Harold Torphy","age":41,"location":"Rosenbaumtown"}},{"attributes":{"name":"Robin Lebsack","age":33,"location":"Moisesborough"}},{"attributes":{"name":"Dexter Hudson","age":20,"location":"Hamilton"}},{"attributes":{"name":"Dustin McCullough","age":69,"location":"North Eden"}},{"attributes":{"name":"Peggy Heidenreich","age":79,"location":"Fort Isabellstad"}},{"attributes":{"name":"Sherman McDermott","age":21,"location":"Mesa"}},{"attributes":{"name":"Jerald McLaughlin","age":71,"location":"East Norris"}},{"attributes":{"name":"Jackie Howell","age":18,"location":"Ashburn"}},{"attributes":{"name":"Ella O'Hara","age":37,"location":"Tonawanda"}},{"attributes":{"name":"Tad Legros","age":48,"location":"Brandon"}},{"attributes":{"name":"Gerardo Jacobi","age":28,"location":"Collierhaven"}},{"attributes":{"name":"Stacey Kuvalis-Botsford","age":75,"location":"Evanstead"}},{"attributes":{"name":"Jeffery Watsica","age":34,"location":"Aspen Hill"}},{"attributes":{"name":"Ms. Marc Dach","age":38,"location":"Rockville"}},{"attributes":{"name":"Mr. Kent Hyatt IV","age":61,"location":"North Madisynfort"}},{"attributes":{"name":"Ray Gutkowski","age":71,"location":"New Presleyville"}},{"attributes":{"name":"Sylvester Dietrich","age":26,"location":"South Gate"}},{"attributes":{"name":"Edwin Armstrong","age":74,"location":"Hertaview"}},{"attributes":{"name":"Mrs. Gabriel Lehner","age":29,"location":"Fort Micahbury"}},{"attributes":{"name":"Wade Zboncak-Sauer","age":20,"location":"Fort Mae"}},{"attributes":{"name":"Vada Walter","age":37,"location":"Jeffreyside"}},{"attributes":{"name":"Joseph Russel","age":38,"location":"Lake Ralphstead"}},{"attributes":{"name":"Hulda Larkin","age":32,"location":"Zionfort"}},{"attributes":{"name":"Aubrey Orn PhD","age":20,"location":"Jenkinscester"}},{"attributes":{"name":"Camille Bailey","age":30,"location":"Krajcikstad"}},{"attributes":{"name":"Roland Gutmann","age":23,"location":"North Walterberg"}},{"attributes":{"name":"Palma Schamberger Jr.","age":36,"location":"Montebello"}},{"attributes":{"name":"Toni McClure-Connelly","age":60,"location":"Bergestead"}},{"attributes":{"name":"Adrienne Kessler DDS","age":35,"location":"New Riley"}},{"attributes":{"name":"Gayle Wilderman","age":22,"location":"East Alexzander"}},{"attributes":{"name":"Mrs. Drew Dooley","age":39,"location":"Herzogborough"}},{"attributes":{"name":"Elinor McLaughlin","age":18,"location":"East Moshetown"}},{"attributes":{"name":"Alfreda O'Kon","age":80,"location":"Goyetteside"}},{"attributes":{"name":"Emilio Schultz PhD","age":46,"location":"Lake Alva"}},{"attributes":{"name":"Angel Kunde","age":67,"location":"Lebsackmouth"}},{"attributes":{"name":"Rodrigo Huel","age":37,"location":"North Aldachester"}},{"attributes":{"name":"Conrad Effertz-Baumbach","age":54,"location":"Cleveland Heights"}},{"attributes":{"name":"Natasha Wunsch","age":47,"location":"South Ewaldboro"}},{"attributes":{"name":"Gayle Berge","age":35,"location":"North Shanna"}},{"attributes":{"name":"Rolando Muller","age":35,"location":"North Nicolettemouth"}},{"attributes":{"name":"Benjamin Lind","age":27,"location":"Port Gaetano"}},{"attributes":{"name":"Noel Mayer DDS","age":74,"location":"Estefaniafort"}},{"attributes":{"name":"Tyrone Feeney IV","age":23,"location":"Nolanton"}},{"attributes":{"name":"Brent Leannon","age":22,"location":"Antoinettestad"}},{"attributes":{"name":"Cristina Carroll","age":52,"location":"East Lori"}},{"attributes":{"name":"Valerie Rogahn","age":40,"location":"Mannworth"}},{"attributes":{"name":"Dr. Lorenzo Corwin","age":49,"location":"Mullerview"}},{"attributes":{"name":"Cornelius Wisoky","age":64,"location":"South Sonnyfurt"}},{"attributes":{"name":"Mr. Ethan Jerde","age":24,"location":"Reillyfurt"}},{"attributes":{"name":"Nora Leffler","age":18,"location":"Rahulburgh"}},{"attributes":{"name":"Alek Adams","age":54,"location":"Abbyfort"}},{"attributes":{"name":"Daisha McLaughlin","age":67,"location":"Fort Bernardo"}},{"attributes":{"name":"Mattie Kutch","age":72,"location":"Mobile"}},{"attributes":{"name":"Randall Steuber","age":37,"location":"West Keshaun"}},{"attributes":{"name":"Grace Barrows","age":53,"location":"Bransonworth"}},{"attributes":{"name":"Andy O'Keefe","age":64,"location":"South Kristin"}},{"attributes":{"name":"Lonzo Lynch","age":35,"location":"Sacramento"}},{"attributes":{"name":"Kristen Nader","age":46,"location":"Taliastad"}},{"attributes":{"name":"Myles Koss","age":46,"location":"Sanfordville"}},{"attributes":{"name":"Magnus Boyer","age":74,"location":"Susanstad"}},{"attributes":{"name":"Ian Ebert","age":23,"location":"Albertoboro"}},{"attributes":{"name":"Nathaniel Parker","age":39,"location":"Fort Jacey"}},{"attributes":{"name":"Dr. Marlene King-Crooks PhD","age":46,"location":"Warren"}},{"attributes":{"name":"Mr. Rudy Lebsack","age":25,"location":"Fairfield"}},{"attributes":{"name":"Aletha Ondricka MD","age":56,"location":"Ernestfield"}},{"attributes":{"name":"Henrietta Bahringer","age":70,"location":"Gradyborough"}},{"attributes":{"name":"Guadalupe Stokes","age":44,"location":"Gilesfurt"}},{"attributes":{"name":"Austen Marvin","age":75,"location":"Port Carter"}},{"attributes":{"name":"Mr. Martin Heller","age":28,"location":"Burke"}},{"attributes":{"name":"Gregg Hegmann","age":70,"location":"Arichaven"}},{"attributes":{"name":"Dee Senger","age":73,"location":"Lednerborough"}},{"attributes":{"name":"Marjorie Kunze","age":64,"location":"Placentia"}},{"attributes":{"name":"Marjory Pollich","age":54,"location":"North Port"}},{"attributes":{"name":"Mrs. Amelia Nicolas","age":37,"location":"Santa Clara"}},{"attributes":{"name":"Adrain Koch","age":60,"location":"Pearland"}},{"attributes":{"name":"Jordan Langosh","age":47,"location":"Santa Rosa"}},{"attributes":{"name":"Marguerite Howell","age":66,"location":"South Vivianne"}},{"attributes":{"name":"Tate Gutmann","age":30,"location":"Euclid"}},{"attributes":{"name":"Drew Von","age":74,"location":"Jarodtown"}},{"attributes":{"name":"Gwendolyn Zemlak","age":49,"location":"Blazebury"}},{"attributes":{"name":"Arely Macejkovic","age":72,"location":"Doylestad"}},{"attributes":{"name":"Fern Abshire","age":29,"location":"Schadenview"}},{"attributes":{"name":"Rhianna Lemke","age":47,"location":"East Venaworth"}},{"attributes":{"name":"Victor Terry","age":66,"location":"Carrollfort"}},{"attributes":{"name":"Roderick Stehr PhD","age":61,"location":"Samirtown"}},{"attributes":{"name":"Axel Cartwright","age":46,"location":"Dickiton"}},{"attributes":{"name":"Melissa Olson","age":45,"location":"Enosberg"}},{"attributes":{"name":"Werner Zulauf","age":51,"location":"New Evelineview"}},{"attributes":{"name":"Kelly Ondricka","age":65,"location":"Dibbertside"}},{"attributes":{"name":"Nancy Larson","age":47,"location":"North Sandy"}},{"attributes":{"name":"Gabriel Huel III","age":72,"location":"Cerritos"}},{"attributes":{"name":"Tricia Hilll Jr.","age":42,"location":"West Noeworth"}},{"attributes":{"name":"Vergie Donnelly","age":27,"location":"Fort Scotty"}},{"attributes":{"name":"Tami Hessel","age":40,"location":"Lindseyville"}},{"attributes":{"name":"Karson Hirthe","age":75,"location":"Tobinbury"}},{"attributes":{"name":"Ora Goldner","age":56,"location":"Port Christianaville"}},{"attributes":{"name":"Marilyn Kilback","age":26,"location":"Port Maya"}},{"attributes":{"name":"Robbie Hand","age":22,"location":"McAllen"}},{"attributes":{"name":"Rachel Cummerata","age":64,"location":"El Paso"}},{"attributes":{"name":"Camila Beier","age":56,"location":"Casas Adobes"}},{"attributes":{"name":"Randy Prosacco","age":77,"location":"Hoppeberg"}},{"attributes":{"name":"Doris Nikolaus","age":72,"location":"Cedar Rapids"}},{"attributes":{"name":"Elbert Collins I","age":28,"location":"La Crosse"}},{"attributes":{"name":"Andrea Kunde","age":80,"location":"Port Brayanworth"}},{"attributes":{"name":"Antone Koss IV","age":65,"location":"Fort Vitohaven"}},{"attributes":{"name":"Dave Purdy","age":18,"location":"South Carlee"}},{"attributes":{"name":"Mrs. Kendra Altenwerth","age":37,"location":"Winfieldville"}},{"attributes":{"name":"Darrin Mosciski","age":45,"location":"Brennanborough"}},{"attributes":{"name":"Eduardo Connelly IV","age":40,"location":"Johnstonfield"}},{"attributes":{"name":"Gladys Veum","age":43,"location":"Kunzecester"}},{"attributes":{"name":"Jermaine Hegmann","age":73,"location":"Port Violaberg"}},{"attributes":{"name":"Gina Murray IV","age":28,"location":"Pacochatown"}},{"attributes":{"name":"Samantha Kreiger","age":23,"location":"Maynardfield"}},{"attributes":{"name":"Karine Schulist","age":49,"location":"Lake Ericka"}},{"attributes":{"name":"Maeve Mayert","age":26,"location":"West Conner"}},{"attributes":{"name":"Brendan Sawayn","age":37,"location":"Nameborough"}},{"attributes":{"name":"Leonard Schaden","age":65,"location":"Sammamish"}},{"attributes":{"name":"Andy Koepp","age":21,"location":"Fort Dell"}},{"attributes":{"name":"Chris Farrell","age":61,"location":"Chelsiemouth"}},{"attributes":{"name":"Roosevelt Weissnat","age":51,"location":"Jaronshire"}},{"attributes":{"name":"Sid Terry","age":37,"location":"Grand Island"}},{"attributes":{"name":"Mr. Henrietta Prohaska-Murazik","age":70,"location":"Coeur d'Alene"}},{"attributes":{"name":"Cary Lynch","age":69,"location":"New Mariahview"}},{"attributes":{"name":"Verlie Terry","age":61,"location":"North Marcelle"}},{"attributes":{"name":"Gabriel Bradtke","age":31,"location":"Lincoln"}},{"attributes":{"name":"Raven Jerde","age":32,"location":"Jaskolskiborough"}},{"attributes":{"name":"Richard Reilly","age":37,"location":"Alessandraville"}},{"attributes":{"name":"Kurt Jakubowski","age":31,"location":"Port Merlin"}},{"attributes":{"name":"Myriam Kassulke-O'Connell I","age":75,"location":"Fort Gerardfort"}},{"attributes":{"name":"Krystal Zulauf","age":76,"location":"Dylancester"}},{"attributes":{"name":"Miss Milan Kuphal V","age":31,"location":"Hallemouth"}},{"attributes":{"name":"Zachary Gulgowski","age":35,"location":"Yonkers"}},{"attributes":{"name":"Myrtle Hahn Jr.","age":79,"location":"Mckennaton"}},{"attributes":{"name":"Melody Schmidt","age":50,"location":"North Shanon"}},{"attributes":{"name":"Joanna Bergnaum","age":43,"location":"Casas Adobes"}},{"attributes":{"name":"Matthew Kertzmann","age":46,"location":"Evertstead"}},{"attributes":{"name":"Dr. Adrienne Predovic","age":31,"location":"Estevantown"}},{"attributes":{"name":"Jaime Cole","age":70,"location":"Cronaberg"}},{"attributes":{"name":"Ms. Jodie Block","age":47,"location":"Port Shaniehaven"}},{"attributes":{"name":"Spencer Little","age":73,"location":"Powlowskibury"}},{"attributes":{"name":"Armando Ryan","age":20,"location":"Fort Kobe"}},{"attributes":{"name":"Cindy Price Jr.","age":18,"location":"Odiestad"}},{"attributes":{"name":"Ira Pacocha-Haley","age":56,"location":"Washington"}},{"attributes":{"name":"Darnell Schultz","age":27,"location":"Port Kristopher"}},{"attributes":{"name":"Elliott Beatty","age":21,"location":"South Harrison"}},{"attributes":{"name":"Maya Corkery I","age":46,"location":"Framishire"}},{"attributes":{"name":"Marlin Ferry","age":42,"location":"Fort Hillard"}},{"attributes":{"name":"Dr. Elenor Pacocha","age":51,"location":"Warwick"}},{"attributes":{"name":"Kacie Langworth","age":32,"location":"Sagemouth"}},{"attributes":{"name":"Marion Hermann DVM","age":52,"location":"Harberfield"}},{"attributes":{"name":"Dana Ledner-Gislason","age":40,"location":"Lake Matteo"}},{"attributes":{"name":"Rhea Rogahn","age":37,"location":"East Tavareshaven"}},{"attributes":{"name":"Ms. Shaun Yost MD","age":33,"location":"Ashtynfurt"}},{"attributes":{"name":"William McKenzie","age":34,"location":"Adamsland"}},{"attributes":{"name":"Mr. Tyler Runolfsson DDS","age":73,"location":"Newtonside"}},{"attributes":{"name":"Wallace Collier","age":71,"location":"Fort Nestor"}},{"attributes":{"name":"Carol Weber","age":36,"location":"West Lenora"}},{"attributes":{"name":"Ms. Cindy Raynor IV","age":76,"location":"East Bobbyborough"}},{"attributes":{"name":"Imogene Hilpert","age":42,"location":"North Lazaro"}},{"attributes":{"name":"Mr. Terrance Hartmann","age":32,"location":"Joannieboro"}},{"attributes":{"name":"Genevieve Roob","age":56,"location":"Bethlehem"}},{"attributes":{"name":"Edyth MacGyver","age":57,"location":"College Station"}},{"attributes":{"name":"Angelica Dicki","age":47,"location":"Newtoncester"}},{"attributes":{"name":"Rodolfo Koepp","age":33,"location":"Cary"}},{"attributes":{"name":"Brent Toy","age":25,"location":"West Shyann"}},{"attributes":{"name":"Ashley Boyle","age":56,"location":"Kubmouth"}},{"attributes":{"name":"Shemar Rutherford","age":66,"location":"Tadstad"}},{"attributes":{"name":"Glen Gusikowski","age":24,"location":"Fort Lylaborough"}},{"attributes":{"name":"Ms. Nellie Abshire","age":45,"location":"Yostworth"}},{"attributes":{"name":"Rene Barrows","age":76,"location":"Lake Angie"}},{"attributes":{"name":"Katrina Shields","age":30,"location":"Fort Dylan"}},{"attributes":{"name":"Charlotte Leuschke","age":57,"location":"Rosalindmouth"}},{"attributes":{"name":"Junius Hahn-Jaskolski","age":78,"location":"Cronaborough"}},{"attributes":{"name":"Kristy Robel","age":38,"location":"Friesenshire"}},{"attributes":{"name":"Paulette McClure","age":36,"location":"Lynwood"}},{"attributes":{"name":"Ms. Maria Lebsack","age":18,"location":"East Yasmeen"}},{"attributes":{"name":"Arthur Ziemann","age":60,"location":"Jaydonstead"}},{"attributes":{"name":"Debra Keebler","age":49,"location":"Kuhiccester"}},{"attributes":{"name":"Dwight Homenick","age":69,"location":"Tuckahoe"}},{"attributes":{"name":"Elias Dicki","age":28,"location":"East Hailee"}},{"attributes":{"name":"Ima Kirlin","age":31,"location":"Bricefurt"}},{"attributes":{"name":"Gregory Strosin","age":75,"location":"Cary"}},{"attributes":{"name":"Hulda Medhurst","age":38,"location":"Kobystead"}},{"attributes":{"name":"Ira Nitzsche","age":72,"location":"Johnson City"}},{"attributes":{"name":"Yvette Collins","age":35,"location":"Mooreview"}},{"attributes":{"name":"Juan Orn","age":80,"location":"Kihncester"}},{"attributes":{"name":"Tyler Kautzer","age":36,"location":"Oletatown"}},{"attributes":{"name":"Mr. Emelie Boyle","age":58,"location":"Wilfordboro"}},{"attributes":{"name":"Elta Kohler DDS","age":65,"location":"North Asachester"}},{"attributes":{"name":"Ricardo Abshire","age":78,"location":"Fort Cecilefort"}},{"attributes":{"name":"Lila Hermann","age":60,"location":"Gusikowskiside"}},{"attributes":{"name":"Laney Bergstrom","age":79,"location":"Nikolausstead"}},{"attributes":{"name":"Lisa Senger","age":66,"location":"East Dasia"}},{"attributes":{"name":"Brittany Hessel","age":56,"location":"Tustin"}},{"attributes":{"name":"Mercedes Stamm","age":19,"location":"New Lindsey"}},{"attributes":{"name":"Payton Lubowitz-Jones","age":43,"location":"Buckeye"}},{"attributes":{"name":"Dr. Garrett Turcotte","age":50,"location":"Rocky Mount"}},{"attributes":{"name":"Bessie Corwin","age":61,"location":"Port Marlinland"}},{"attributes":{"name":"Hester Crona","age":37,"location":"Henderson"}},{"attributes":{"name":"Dolores Terry","age":76,"location":"West Ezekielhaven"}},{"attributes":{"name":"Marty Hagenes","age":57,"location":"Lake Mckenzie"}},{"attributes":{"name":"Leslie Champlin","age":59,"location":"North Camdencester"}},{"attributes":{"name":"Abbie Quigley","age":37,"location":"Valdosta"}},{"attributes":{"name":"Jaime Kuvalis","age":62,"location":"East Kelsie"}},{"attributes":{"name":"Jarret Predovic MD","age":36,"location":"Ryderburgh"}},{"attributes":{"name":"Mylene Breitenberg","age":29,"location":"Padbergcester"}},{"attributes":{"name":"Cassidy Dare","age":64,"location":"North Shad"}},{"attributes":{"name":"Nathan Abernathy","age":26,"location":"Nienowville"}},{"attributes":{"name":"Ena Roberts-Mitchell","age":79,"location":"Lake Ramonhaven"}},{"attributes":{"name":"Sylvia Kessler","age":38,"location":"South Milfordport"}},{"attributes":{"name":"Ruby Rowe II","age":57,"location":"Cleveland"}},{"attributes":{"name":"Pearline Renner","age":59,"location":"Harrischester"}},{"attributes":{"name":"Delia Runte PhD","age":69,"location":"West Johnpaulcester"}},{"attributes":{"name":"Arvid Simonis","age":19,"location":"Fort Nealview"}},{"attributes":{"name":"Kayley Green I","age":79,"location":"Soniachester"}},{"attributes":{"name":"Dr. Edith Rodriguez II","age":76,"location":"New Brunswick"}},{"attributes":{"name":"Antonio Paucek","age":32,"location":"Avondale"}},{"attributes":{"name":"Gwendolyn Kozey","age":78,"location":"Vonfurt"}},{"attributes":{"name":"Mr. Adriana Balistreri","age":75,"location":"Germantown"}},{"attributes":{"name":"Kristi Schuppe","age":76,"location":"Franeyfield"}},{"attributes":{"name":"Napoleon Streich","age":22,"location":"Lake Emiliofort"}},{"attributes":{"name":"Colleen Hamill","age":56,"location":"East Arloville"}},{"attributes":{"name":"Gina Jacobi","age":66,"location":"Aloha"}},{"attributes":{"name":"Roger Casper","age":55,"location":"Port Noah"}},{"attributes":{"name":"Dan Hills","age":50,"location":"Mathewton"}},{"attributes":{"name":"Flora Cruickshank","age":43,"location":"North Dessie"}},{"attributes":{"name":"Norma Torphy","age":29,"location":"North Highlands"}},{"attributes":{"name":"Angie Fritsch","age":75,"location":"South Kendallside"}},{"attributes":{"name":"Ernest Little","age":25,"location":"Champlinstead"}},{"attributes":{"name":"Alivia Heidenreich","age":33,"location":"Lake Brooke"}},{"attributes":{"name":"Felicity Gorczany","age":36,"location":"South Damien"}},{"attributes":{"name":"Hailey Murazik","age":25,"location":"Rosenbaummouth"}},{"attributes":{"name":"Dr. Santos Keebler III","age":55,"location":"Sparks"}},{"attributes":{"name":"Daisy Rath","age":80,"location":"Port Camila"}},{"attributes":{"name":"Isaiah Kassulke III","age":51,"location":"Braunfurt"}},{"attributes":{"name":"Adaline Gislason","age":50,"location":"West Genevieve"}},{"attributes":{"name":"Jules Quitzon","age":72,"location":"Warrenborough"}},{"attributes":{"name":"Garfield Leffler","age":31,"location":"Fort Leatha"}},{"attributes":{"name":"Ellen Konopelski","age":72,"location":"South Elyssa"}},{"attributes":{"name":"Karl Luettgen","age":29,"location":"North Archburgh"}},{"attributes":{"name":"Alan Hilll","age":67,"location":"Franzboro"}},{"attributes":{"name":"Jarvis Kshlerin-Johnson MD","age":49,"location":"Bernierborough"}},{"attributes":{"name":"Susie Gulgowski","age":60,"location":"Port Gradyburgh"}},{"attributes":{"name":"Norma Stokes","age":39,"location":"Fort Koleton"}},{"attributes":{"name":"Lela Lesch V","age":29,"location":"Daviston"}},{"attributes":{"name":"Kaden Stark","age":18,"location":"Port Hallieshire"}},{"attributes":{"name":"Ms. Ralph Borer","age":76,"location":"Fort Keanuborough"}},{"attributes":{"name":"Ms. Ahmed Huel","age":35,"location":"Avaville"}},{"attributes":{"name":"Jerry O'Keefe","age":20,"location":"Helenmouth"}},{"attributes":{"name":"Jermaine Beier","age":45,"location":"Ritchieside"}},{"attributes":{"name":"Jamie Hoeger","age":43,"location":"West Elisa"}},{"attributes":{"name":"Marina Jakubowski","age":71,"location":"Quincy"}},{"attributes":{"name":"Bo Hermiston","age":70,"location":"Blaine"}},{"attributes":{"name":"Eula Hane","age":54,"location":"East Niko"}},{"attributes":{"name":"Miss Tricia Boyle-Blanda","age":44,"location":"Rohanview"}},{"attributes":{"name":"Winston Murphy","age":54,"location":"Durganberg"}},{"attributes":{"name":"Christopher White","age":70,"location":"South Eliezer"}},{"attributes":{"name":"Alice O'Connell-Dickinson","age":27,"location":"Haneburgh"}},{"attributes":{"name":"Kathlyn Fahey","age":52,"location":"Canton"}},{"attributes":{"name":"Miss Renee Kutch","age":51,"location":"Lilianaboro"}},{"attributes":{"name":"Louisa Huel","age":35,"location":"Ratkestead"}},{"attributes":{"name":"Edyth Harris DDS","age":69,"location":"Port Connieberg"}},{"attributes":{"name":"Paula Schmidt","age":48,"location":"Grimesworth"}},{"attributes":{"name":"Mrs. Andre Flatley-Bergnaum MD","age":61,"location":"Breanafort"}},{"attributes":{"name":"Ms. Sandra Kutch","age":26,"location":"Lake Horacioburgh"}},{"attributes":{"name":"Trevion Bailey","age":79,"location":"Alexanneburgh"}},{"attributes":{"name":"Hubert Gorczany II","age":33,"location":"Samsonchester"}},{"attributes":{"name":"Kenneth Mayer DVM","age":19,"location":"Port Zariaberg"}},{"attributes":{"name":"Dr. Jonathan Nicolas","age":37,"location":"Jefferystad"}},{"attributes":{"name":"Mr. Kurt Streich","age":67,"location":"Sawayntown"}},{"attributes":{"name":"Dr. Edith Herman","age":62,"location":"Kodyburgh"}},{"attributes":{"name":"Carmen Olson","age":43,"location":"Janesville"}},{"attributes":{"name":"Nathaniel Ferry","age":38,"location":"Hudsonfort"}},{"attributes":{"name":"Wm Grant","age":30,"location":"Jacksonville"}},{"attributes":{"name":"Rosalind Hackett","age":38,"location":"Seattle"}},{"attributes":{"name":"Yvonne Littel","age":24,"location":"San Tan Valley"}},{"attributes":{"name":"Mr. Taylor Jacobson-Harber","age":72,"location":"Desmondstad"}},{"attributes":{"name":"Jarvis Marvin","age":64,"location":"Florianfurt"}},{"attributes":{"name":"Aurelia Hermann","age":31,"location":"Oberbrunnerstad"}},{"attributes":{"name":"Juwan Crooks","age":19,"location":"West Rosalind"}},{"attributes":{"name":"Mr. Abel Grimes","age":34,"location":"Lake Jasminchester"}},{"attributes":{"name":"Monique Fritsch","age":26,"location":"Bechtelarview"}},{"attributes":{"name":"Josephine Herzog PhD","age":67,"location":"Hansenfield"}},{"attributes":{"name":"Wade Berge","age":31,"location":"Watsicabury"}},{"attributes":{"name":"Kaden Carroll","age":69,"location":"East Rodericktown"}},{"attributes":{"name":"Santino Bins","age":20,"location":"Carmellafield"}},{"attributes":{"name":"Miss Armando Waters","age":76,"location":"East Brice"}},{"attributes":{"name":"Gus Goldner","age":57,"location":"Kihnport"}},{"attributes":{"name":"Rusty Kuhn","age":24,"location":"Hollywood"}},{"attributes":{"name":"Troy Gislason","age":34,"location":"North Oliverburgh"}},{"attributes":{"name":"Melyna Langworth","age":28,"location":"Yuba City"}},{"attributes":{"name":"Gertrude Goldner","age":54,"location":"Whittier"}},{"attributes":{"name":"Gene Russel","age":50,"location":"Fort Abelchester"}},{"attributes":{"name":"Mr. Ara Mohr","age":54,"location":"Danielahaven"}},{"attributes":{"name":"Eileen Mohr","age":65,"location":"Strackeside"}},{"attributes":{"name":"Marvin Denesik","age":47,"location":"North Davonstead"}},{"attributes":{"name":"Claudine Armstrong","age":47,"location":"New Normaport"}},{"attributes":{"name":"Alexandrea Rice","age":31,"location":"Luettgenville"}},{"attributes":{"name":"Ian Prosacco Sr.","age":70,"location":"McGlynntown"}},{"attributes":{"name":"Marilyn Rutherford","age":50,"location":"Westfield"}},{"attributes":{"name":"Felipe Anderson","age":46,"location":"Clovis"}},{"attributes":{"name":"Neil Mayer-Fisher","age":31,"location":"Julianachester"}},{"attributes":{"name":"Sadie Witting","age":41,"location":"Daltoncester"}},{"attributes":{"name":"Leone Hand","age":27,"location":"Wichita Falls"}},{"attributes":{"name":"Devin Fisher","age":66,"location":"Donnellyfort"}},{"attributes":{"name":"Dolores Lang","age":59,"location":"Terryfort"}},{"attributes":{"name":"Paxton Halvorson","age":40,"location":"West Samantha"}},{"attributes":{"name":"Reginald Adams-Schmidt","age":63,"location":"Warren"}},{"attributes":{"name":"Ellis Thompson","age":30,"location":"North Miami Beach"}},{"attributes":{"name":"Marshall Kessler","age":68,"location":"Elbertville"}},{"attributes":{"name":"Ms. Deontae White","age":79,"location":"Harrisonburg"}},{"attributes":{"name":"Raymond Luettgen","age":54,"location":"Danielfurt"}},{"attributes":{"name":"Jackie Batz","age":21,"location":"Fort Lesleychester"}},{"attributes":{"name":"Geoffrey Ankunding","age":30,"location":"South Constantinville"}},{"attributes":{"name":"Ginger Gislason","age":20,"location":"Fort Kaelynhaven"}},{"attributes":{"name":"Robert Sauer I","age":54,"location":"East Carrollboro"}},{"attributes":{"name":"Miss Josefina Lehner","age":30,"location":"West Cadenmouth"}},{"attributes":{"name":"Dr. Sheryl Considine Jr.","age":54,"location":"Schulistfort"}},{"attributes":{"name":"Pam Murphy","age":40,"location":"North Kenyattamouth"}},{"attributes":{"name":"Mrs. Joan Orn","age":59,"location":"Zboncakfield"}},{"attributes":{"name":"Rosie Hahn","age":67,"location":"Colorado Springs"}},{"attributes":{"name":"Jules Wehner-Hettinger","age":26,"location":"Lake Franzstad"}},{"attributes":{"name":"Fletcher Zulauf","age":65,"location":"Denver"}},{"attributes":{"name":"Sheryl Stehr","age":59,"location":"Wittingfurt"}},{"attributes":{"name":"Ms. Mabel Dietrich","age":66,"location":"Kansas City"}},{"attributes":{"name":"Kiara Dibbert","age":43,"location":"Port Sid"}},{"attributes":{"name":"Marilyn Wisozk","age":69,"location":"West Dariana"}},{"attributes":{"name":"Bridget Lehner","age":41,"location":"Breitenbergcester"}},{"attributes":{"name":"Ray Durgan","age":65,"location":"Port Alyce"}},{"attributes":{"name":"Ms. Willie Johnston","age":39,"location":"Lake Jerod"}},{"attributes":{"name":"Dr. Victor Bechtelar","age":63,"location":"Jeanetteborough"}},{"attributes":{"name":"Lynn Gorczany","age":40,"location":"Lennamouth"}},{"attributes":{"name":"Jackie Lockman-Parisian","age":22,"location":"Larkinfield"}},{"attributes":{"name":"Myrtle Graham","age":28,"location":"Bergeburgh"}},{"attributes":{"name":"Kamille Haley","age":75,"location":"Port Osbaldoshire"}},{"attributes":{"name":"Gudrun Ledner","age":74,"location":"Marysville"}},{"attributes":{"name":"Rowena Raynor","age":42,"location":"Barrowsside"}},{"attributes":{"name":"Daniel Oberbrunner","age":31,"location":"Moenview"}},{"attributes":{"name":"Nickolas Barrows","age":77,"location":"Malcolmland"}},{"attributes":{"name":"Andy Hahn","age":29,"location":"Trompmouth"}},{"attributes":{"name":"Meghan Howe-Baumbach","age":70,"location":"Parkerville"}},{"attributes":{"name":"Philip Schumm","age":63,"location":"Port Sheilaberg"}},{"attributes":{"name":"Laurie McKenzie","age":57,"location":"Borerside"}},{"attributes":{"name":"Fermin Funk","age":57,"location":"North Fidelfort"}},{"attributes":{"name":"Hoyt Ferry","age":56,"location":"Shanamouth"}},{"attributes":{"name":"Eula Parisian","age":48,"location":"Kovacektown"}},{"attributes":{"name":"Mrs. Olive Lueilwitz","age":57,"location":"Plainfield"}},{"attributes":{"name":"Ethel Casper","age":47,"location":"New Brandon"}},{"attributes":{"name":"Nadia Hayes","age":45,"location":"Henrietteboro"}},{"attributes":{"name":"Magdalena Boehm","age":48,"location":"Rowlett"}},{"attributes":{"name":"Tommy Legros","age":40,"location":"Downers Grove"}},{"attributes":{"name":"Ms. Rashad Dickinson","age":19,"location":"Floshire"}},{"attributes":{"name":"Megane Lebsack DDS","age":38,"location":"Coachella"}},{"attributes":{"name":"Judy Turcotte","age":46,"location":"Angusbury"}},{"attributes":{"name":"Herta Gottlieb","age":44,"location":"North Edgardochester"}},{"attributes":{"name":"Daniel Conroy","age":71,"location":"Sibylfurt"}},{"attributes":{"name":"Arnaldo Strosin","age":35,"location":"Fort Rubyemouth"}},{"attributes":{"name":"Lorenzo Morissette","age":27,"location":"Dallinville"}},{"attributes":{"name":"Rubie Braun","age":44,"location":"New Jonberg"}},{"attributes":{"name":"Mr. Floy Lowe","age":68,"location":"South Maude"}},{"attributes":{"name":"Minnie Blick","age":21,"location":"Ryannstad"}},{"attributes":{"name":"Danika Doyle","age":24,"location":"South Hayleymouth"}},{"attributes":{"name":"Hans Goldner","age":80,"location":"Moore"}},{"attributes":{"name":"Jim Farrell","age":23,"location":"New Keira"}},{"attributes":{"name":"Marcos Hintz II","age":23,"location":"South Karinashire"}},{"attributes":{"name":"Felicia Gerlach","age":38,"location":"North Theron"}},{"attributes":{"name":"Scott Dach","age":38,"location":"Greenville"}},{"attributes":{"name":"Betsy Breitenberg DDS","age":23,"location":"Marionport"}},{"attributes":{"name":"Modesta Will","age":46,"location":"North Kiannacester"}},{"attributes":{"name":"Wilfred Steuber PhD","age":29,"location":"South Breana"}},{"attributes":{"name":"Elouise Kris","age":51,"location":"Fort Eliasboro"}},{"attributes":{"name":"Ms. Kurt Beier","age":51,"location":"Flossietown"}},{"attributes":{"name":"Lawson Wunsch","age":70,"location":"Las Vegas"}},{"attributes":{"name":"Taylor Kshlerin","age":61,"location":"Mabellemouth"}},{"attributes":{"name":"Joann Graham","age":74,"location":"Lake Bettye"}},{"attributes":{"name":"Lynne Lebsack","age":58,"location":"New Elvis"}},{"attributes":{"name":"Dana Reichert","age":78,"location":"Dorcasfort"}},{"attributes":{"name":"Desiree Carroll","age":43,"location":"Greenholtfield"}},{"attributes":{"name":"Travis Bruen","age":62,"location":"West Maximoburgh"}},{"attributes":{"name":"Miss Patsy Crona DVM","age":32,"location":"South Myronfield"}},{"attributes":{"name":"Melvin Morissette","age":67,"location":"Maciside"}},{"attributes":{"name":"Audrey Hills","age":26,"location":"Langworthport"}},{"attributes":{"name":"Mckenzie Rolfson I","age":50,"location":"Kutchfield"}},{"attributes":{"name":"Tony Fahey","age":60,"location":"Vancestad"}},{"attributes":{"name":"Brent Baumbach I","age":36,"location":"Milanside"}},{"attributes":{"name":"Charlene Stoltenberg","age":32,"location":"Reedhaven"}},{"attributes":{"name":"Filiberto Smith II","age":38,"location":"Marcelinoworth"}},{"attributes":{"name":"Carolyn Murphy","age":41,"location":"Miami"}},{"attributes":{"name":"Myra Gottlieb-Brekke","age":58,"location":"East Katrinaborough"}},{"attributes":{"name":"Melvin Hilpert","age":36,"location":"North Austynville"}},{"attributes":{"name":"Cathy Kirlin","age":31,"location":"Las Vegas"}},{"attributes":{"name":"Miss Nettie Lubowitz","age":74,"location":"Port Charlotte"}},{"attributes":{"name":"Gary Skiles MD","age":48,"location":"South Kayaworth"}},{"attributes":{"name":"Allen Metz","age":20,"location":"Braunville"}},{"attributes":{"name":"Joan Will","age":76,"location":"Lake Pinkie"}},{"attributes":{"name":"Alan Boyle","age":58,"location":"New Zane"}},{"attributes":{"name":"Major Lebsack","age":63,"location":"Fort Jenningscester"}},{"attributes":{"name":"Valentine Rogahn","age":35,"location":"East Monique"}},{"attributes":{"name":"Jayme Morissette","age":19,"location":"Bruenberg"}},{"attributes":{"name":"Dr. Preston Bogan","age":72,"location":"Lake Lisa"}},{"attributes":{"name":"Romaine Kertzmann","age":31,"location":"Commerce City"}},{"attributes":{"name":"Duane Parisian","age":31,"location":"Azusa"}},{"attributes":{"name":"Charity Towne","age":76,"location":"South Elsiebury"}},{"attributes":{"name":"Lisandro Windler","age":30,"location":"Nolanport"}},{"attributes":{"name":"Roland Stoltenberg","age":51,"location":"Elyria"}},{"attributes":{"name":"Dr. Shane Balistreri","age":73,"location":"Sarinastad"}},{"attributes":{"name":"Barney Dickinson-Will","age":24,"location":"Rubyefort"}},{"attributes":{"name":"Dr. James Block","age":26,"location":"Hialeah"}},{"attributes":{"name":"Al Labadie PhD","age":26,"location":"Arelyview"}},{"attributes":{"name":"Alvin Dicki","age":26,"location":"Port Juniuscester"}},{"attributes":{"name":"Jeanne Homenick","age":72,"location":"Reillyside"}},{"attributes":{"name":"Irving McKenzie","age":61,"location":"O'Reillychester"}},{"attributes":{"name":"Dr. David Funk","age":55,"location":"Romagueraport"}},{"attributes":{"name":"Kaela Beatty","age":56,"location":"Ondrickastead"}},{"attributes":{"name":"Sadie Bailey","age":53,"location":"New Warrenborough"}},{"attributes":{"name":"Leah Yundt","age":61,"location":"East Gregorycester"}},{"attributes":{"name":"Herbert Kovacek PhD","age":67,"location":"Lake Deangelo"}},{"attributes":{"name":"Margarita Fadel-MacGyver","age":69,"location":"Friedashire"}},{"attributes":{"name":"Belinda Balistreri","age":70,"location":"East Vinceville"}},{"attributes":{"name":"Dr. Ricky Runte","age":30,"location":"North Jalenboro"}},{"attributes":{"name":"Angelo Ward","age":42,"location":"Olathe"}},{"attributes":{"name":"Miss Tracy Kunze","age":52,"location":"Port Lorineside"}},{"attributes":{"name":"Lorna Pagac","age":78,"location":"Port Arthur"}},{"attributes":{"name":"Earnest Orn","age":54,"location":"Carson City"}},{"attributes":{"name":"Anne Marks","age":27,"location":"South Daroncester"}},{"attributes":{"name":"Olive Treutel","age":33,"location":"Keltonburgh"}},{"attributes":{"name":"Kate Keeling","age":52,"location":"South Wallaceport"}},{"attributes":{"name":"Florine Schaefer","age":23,"location":"St. Clair Shores"}},{"attributes":{"name":"Jesse Herman","age":21,"location":"McGlynnfort"}},{"attributes":{"name":"Ramiro Schoen","age":66,"location":"Perryborough"}},{"attributes":{"name":"Pattie Streich","age":19,"location":"North Lauren"}},{"attributes":{"name":"Dr. Anabelle Glover I","age":69,"location":"North Miami"}},{"attributes":{"name":"Camille Beer","age":24,"location":"Bowling Green"}},{"attributes":{"name":"Ricky Abbott-Hilll","age":78,"location":"Lake Novaville"}},{"attributes":{"name":"Crawford Konopelski","age":61,"location":"Lake Julius"}},{"attributes":{"name":"Kelli Schoen","age":39,"location":"Tianafurt"}},{"attributes":{"name":"Armand Haag","age":26,"location":"New Lutherland"}},{"attributes":{"name":"Noemy Kihn-Green Jr.","age":37,"location":"Blickfurt"}},{"attributes":{"name":"Armani Dietrich I","age":80,"location":"Mosciskiberg"}},{"attributes":{"name":"Ted Spencer","age":74,"location":"Lake Rocio"}},{"attributes":{"name":"Josh Daugherty","age":67,"location":"South Jessyton"}},{"attributes":{"name":"Dr. Valerie Johnson","age":60,"location":"West Pedrostad"}},{"attributes":{"name":"Patricia Padberg","age":30,"location":"Beahanshire"}},{"attributes":{"name":"Minnie Koss","age":64,"location":"Ellisville"}},{"attributes":{"name":"Benny Huels","age":74,"location":"Chaunceyshire"}},{"attributes":{"name":"Carleton Howell DDS","age":66,"location":"Mitchellboro"}},{"attributes":{"name":"Kristi Gusikowski","age":79,"location":"Fort Donaldberg"}},{"attributes":{"name":"Katrina Walsh-Koch","age":51,"location":"Lake Blaiseview"}},{"attributes":{"name":"Tremaine Leannon","age":66,"location":"Ames"}},{"attributes":{"name":"Pearlie Harber","age":75,"location":"Wildermanfield"}},{"attributes":{"name":"Geneva Skiles","age":66,"location":"West Hailie"}},{"attributes":{"name":"Edward Runte","age":40,"location":"Blickville"}},{"attributes":{"name":"Verdie Adams","age":76,"location":"Helmerbury"}},{"attributes":{"name":"Yesenia Tromp","age":38,"location":"Krischester"}},{"attributes":{"name":"Casey Zulauf","age":50,"location":"North Keely"}},{"attributes":{"name":"Alyssa Okuneva","age":76,"location":"Round Rock"}},{"attributes":{"name":"Christy Boyer","age":22,"location":"Kayliside"}},{"attributes":{"name":"Kristy Medhurst","age":20,"location":"Nolaville"}},{"attributes":{"name":"Trystan Schoen III","age":46,"location":"The Woodlands"}},{"attributes":{"name":"Delta Cummings","age":50,"location":"North Armani"}},{"attributes":{"name":"Zachary Walker","age":54,"location":"South Lowellboro"}},{"attributes":{"name":"Freddie Auer","age":58,"location":"Redondo Beach"}},{"attributes":{"name":"Alfreda Roob","age":48,"location":"New Jazmyne"}},{"attributes":{"name":"Stanley Kerluke","age":60,"location":"South Elena"}},{"attributes":{"name":"Elvis Kunze-Mosciski","age":44,"location":"Idaho Falls"}},{"attributes":{"name":"Allan Volkman","age":73,"location":"Rosalynhaven"}},{"attributes":{"name":"Jerel Huels-Johnston","age":67,"location":"Lueilwitzville"}},{"attributes":{"name":"Wm Barton","age":78,"location":"New Adelbert"}},{"attributes":{"name":"Ceasar Leannon","age":46,"location":"Alvaborough"}},{"attributes":{"name":"Lydia Satterfield","age":28,"location":"Fort Khalilstad"}},{"attributes":{"name":"Renee Flatley","age":19,"location":"Ardellastead"}},{"attributes":{"name":"Miss Pansy Becker","age":67,"location":"New Antonia"}},{"attributes":{"name":"Davin Windler","age":42,"location":"South Hermancester"}},{"attributes":{"name":"Furman Ward","age":25,"location":"Port Sophieberg"}},{"attributes":{"name":"Ben McCullough","age":49,"location":"West Alexzanderport"}},{"attributes":{"name":"Ernestine Turner Jr.","age":28,"location":"Chino"}},{"attributes":{"name":"Jannie Koch-Wuckert","age":42,"location":"Willstad"}},{"attributes":{"name":"Jennie Padberg IV","age":47,"location":"Audreannefort"}},{"attributes":{"name":"Aimee Bartell","age":69,"location":"Vacaville"}},{"attributes":{"name":"Albert O'Reilly I","age":21,"location":"North Presleymouth"}},{"attributes":{"name":"Vivian Berge","age":44,"location":"South Syble"}},{"attributes":{"name":"Amos Bailey","age":78,"location":"Findlay"}},{"attributes":{"name":"Luis MacGyver","age":60,"location":"New Macyport"}},{"attributes":{"name":"Belinda Bruen","age":25,"location":"Craigtown"}},{"attributes":{"name":"Inez Herzog","age":44,"location":"Haleytown"}},{"attributes":{"name":"Carla Lynch","age":70,"location":"Lake Valentinland"}},{"attributes":{"name":"Dallas Rau","age":70,"location":"Yucaipa"}},{"attributes":{"name":"Meredith Grimes","age":64,"location":"Lake Vidal"}},{"attributes":{"name":"Kelvin Hirthe","age":63,"location":"East Elianeborough"}},{"attributes":{"name":"Emma Ruecker","age":38,"location":"National City"}},{"attributes":{"name":"Ken Tromp","age":42,"location":"Aidastad"}},{"attributes":{"name":"Vance Simonis","age":67,"location":"Reinatown"}},{"attributes":{"name":"Darryl Kshlerin","age":40,"location":"Robertsbury"}},{"attributes":{"name":"Perry Hickle","age":20,"location":"Bradtkeport"}},{"attributes":{"name":"Barton Baumbach","age":40,"location":"St. Joseph"}},{"attributes":{"name":"Tasha Ortiz","age":61,"location":"South Elvacester"}},{"attributes":{"name":"Mr. Jean Will","age":50,"location":"Rosieworth"}},{"attributes":{"name":"Jan Sporer II","age":44,"location":"Kshlerinview"}},{"attributes":{"name":"Shelia Stehr","age":52,"location":"Bransonbury"}},{"attributes":{"name":"Kent Kihn","age":74,"location":"New Faustofurt"}},{"attributes":{"name":"Ronald Vandervort PhD","age":72,"location":"Jakubowskiboro"}},{"attributes":{"name":"Flavio Nolan","age":18,"location":"Fort Emely"}},{"attributes":{"name":"Martina Hagenes","age":78,"location":"West Gladycetown"}},{"attributes":{"name":"Anne Sporer","age":43,"location":"Smithamshire"}},{"attributes":{"name":"Simone Daniel","age":40,"location":"New Camyllestead"}},{"attributes":{"name":"Evert Windler","age":41,"location":"East Aiyana"}},{"attributes":{"name":"Kylee Hegmann","age":73,"location":"West Clare"}},{"attributes":{"name":"Gianni Goldner","age":55,"location":"Lennabury"}},{"attributes":{"name":"Dr. Ned Schmitt","age":73,"location":"Rohnert Park"}},{"attributes":{"name":"Jody Gleichner","age":20,"location":"Lowehaven"}},{"attributes":{"name":"Lonie Reinger","age":75,"location":"West Carsonchester"}},{"attributes":{"name":"Celestino Harvey","age":32,"location":"Lake Reneeside"}},{"attributes":{"name":"Ms. Dawson Casper","age":31,"location":"Lebsackland"}},{"attributes":{"name":"Lorenzo Padberg","age":75,"location":"Modesto"}},{"attributes":{"name":"Krista Marquardt","age":37,"location":"West Shane"}},{"attributes":{"name":"Miss Gregory Stamm","age":72,"location":"North Deron"}},{"attributes":{"name":"Abe Senger-Bradtke","age":21,"location":"Lake Golden"}},{"attributes":{"name":"Eusebio Douglas","age":25,"location":"Coral Springs"}},{"attributes":{"name":"Wm Schultz","age":76,"location":"North Orlandboro"}},{"attributes":{"name":"Markus Paucek","age":46,"location":"Casimirchester"}},{"attributes":{"name":"Darlene Hammes Jr.","age":48,"location":"Plainfield"}},{"attributes":{"name":"Mrs. Geneva Huel","age":48,"location":"Kokomo"}},{"attributes":{"name":"Leon Schoen","age":19,"location":"Bellflower"}},{"attributes":{"name":"Frank Fadel","age":62,"location":"Fadelland"}},{"attributes":{"name":"Amber Dare","age":79,"location":"Hesperia"}},{"attributes":{"name":"Lance Kiehn","age":42,"location":"Elzaborough"}},{"attributes":{"name":"Mrs. Betsy Doyle","age":26,"location":"Nashville-Davidson"}},{"attributes":{"name":"Ellen Murazik II","age":20,"location":"Antwanville"}},{"attributes":{"name":"Clara Schuppe","age":72,"location":"Nashua"}},{"attributes":{"name":"Mr. Terry Strosin","age":66,"location":"Manhattan"}},{"attributes":{"name":"Luz Cormier","age":48,"location":"Galveston"}},{"attributes":{"name":"Jennie Schuppe Sr.","age":64,"location":"St. Charles"}},{"attributes":{"name":"Orville Larson","age":52,"location":"Dayton"}},{"attributes":{"name":"Rufus Denesik","age":31,"location":"Aidanborough"}},{"attributes":{"name":"Krista Connelly","age":77,"location":"Jeradboro"}},{"attributes":{"name":"Tavares Fahey","age":74,"location":"Utica"}},{"attributes":{"name":"Mrs. Mallie Upton","age":79,"location":"Jupiter"}},{"attributes":{"name":"Dianne Johns","age":38,"location":"Fort Sedrick"}},{"attributes":{"name":"Lawrence Corwin","age":57,"location":"Fort Milan"}},{"attributes":{"name":"Donald Wilkinson","age":36,"location":"Bradenland"}},{"attributes":{"name":"Abigayle Hoppe-Haley","age":47,"location":"Dundalk"}},{"attributes":{"name":"Casey Keeling","age":51,"location":"Hassanborough"}},{"attributes":{"name":"Emily Vandervort","age":55,"location":"Port Kylieton"}},{"attributes":{"name":"Randal Maggio IV","age":44,"location":"Hicksville"}},{"attributes":{"name":"Lowell Luettgen","age":20,"location":"Buckburgh"}},{"attributes":{"name":"Helen Rolfson","age":39,"location":"Orancester"}},{"attributes":{"name":"Nina Koss","age":24,"location":"New Morgan"}},{"attributes":{"name":"Gina Auer","age":36,"location":"Ortizstead"}},{"attributes":{"name":"Paula Kertzmann","age":35,"location":"Port Lindsey"}},{"attributes":{"name":"Bradley Ernser","age":21,"location":"Noblesville"}},{"attributes":{"name":"Norma Batz","age":23,"location":"East Cecilia"}},{"attributes":{"name":"Dr. Oscar Doyle","age":58,"location":"North Daynaport"}},{"attributes":{"name":"Keaton O'Connell","age":53,"location":"Blancatown"}},{"attributes":{"name":"Yolanda Weber","age":54,"location":"Lake Vivafurt"}},{"attributes":{"name":"Lorine Schiller","age":71,"location":"Fort Einarbury"}},{"attributes":{"name":"Adrian Fahey","age":57,"location":"Chelsiefield"}},{"attributes":{"name":"Harvey Graham V","age":59,"location":"Kohlerborough"}},{"attributes":{"name":"Joe Larson","age":40,"location":"Metzfield"}},{"attributes":{"name":"Emery Sauer","age":31,"location":"New Marjorycester"}},{"attributes":{"name":"Elaine Bechtelar","age":55,"location":"Oak Park"}},{"attributes":{"name":"Julio Nienow","age":41,"location":"West Shad"}},{"attributes":{"name":"Jesse Thompson-Erdman","age":37,"location":"Delphineburgh"}},{"attributes":{"name":"Arely Waelchi","age":41,"location":"Schadenfurt"}},{"attributes":{"name":"Dusty Fisher","age":18,"location":"Fort Carissa"}},{"attributes":{"name":"Rachael Rice","age":34,"location":"North Davion"}},{"attributes":{"name":"Warren Greenholt","age":27,"location":"Schusterborough"}},{"attributes":{"name":"Mr. Greyson O'Keefe DVM","age":39,"location":"West Tatyana"}},{"attributes":{"name":"Damian Barrows","age":26,"location":"Westchester"}},{"attributes":{"name":"Lisa Maggio","age":76,"location":"Fort Elouise"}},{"attributes":{"name":"Maddison Runolfsdottir","age":42,"location":"New Carmelbury"}},{"attributes":{"name":"Tommie Willms","age":32,"location":"Pueblo"}},{"attributes":{"name":"Eliezer Howell","age":18,"location":"Hammond"}},{"attributes":{"name":"Harold Rolfson","age":24,"location":"Danielchester"}},{"attributes":{"name":"Justus Kuhn","age":39,"location":"Stephanberg"}},{"attributes":{"name":"Godfrey Corwin","age":61,"location":"Fontana"}},{"attributes":{"name":"Pearlie Goodwin","age":43,"location":"New Samson"}},{"attributes":{"name":"Nora West","age":30,"location":"Rodriguezland"}},{"attributes":{"name":"Madelyn Pouros","age":19,"location":"Moiseston"}},{"attributes":{"name":"Kory Lang","age":41,"location":"Weimannfield"}},{"attributes":{"name":"Ernestina Marvin","age":57,"location":"Rosemaryborough"}},{"attributes":{"name":"Melody Wisoky","age":66,"location":"New Jasenfort"}},{"attributes":{"name":"Mr. Ricky Haag","age":48,"location":"Fidelberg"}},{"attributes":{"name":"Emmanuel Adams","age":43,"location":"Lake Andyside"}},{"attributes":{"name":"Stuart Glover","age":35,"location":"Melynaborough"}},{"attributes":{"name":"Gregg Labadie III","age":68,"location":"Round Rock"}},{"attributes":{"name":"Jesus Bergnaum","age":46,"location":"Beahanfurt"}},{"attributes":{"name":"Alexa Monahan","age":68,"location":"Wittingstad"}},{"attributes":{"name":"Mr. Roderick Funk","age":21,"location":"Palm Coast"}},{"attributes":{"name":"Johnathan Konopelski","age":79,"location":"Dickinsonfield"}},{"attributes":{"name":"Hope Brown","age":24,"location":"Raeganboro"}},{"attributes":{"name":"Dale Runolfsson","age":59,"location":"West Imamouth"}},{"attributes":{"name":"Chyna Walker","age":43,"location":"Lillianbury"}},{"attributes":{"name":"Glen Luettgen III","age":78,"location":"South Darrelborough"}},{"attributes":{"name":"Mildred Hudson","age":44,"location":"West Marinaland"}},{"attributes":{"name":"Mr. Shakira Gutmann","age":65,"location":"Kelleychester"}},{"attributes":{"name":"Clotilde Aufderhar-Glover IV","age":66,"location":"York"}},{"attributes":{"name":"Ernest Dietrich III","age":67,"location":"North Adonis"}},{"attributes":{"name":"Jon Dickinson","age":52,"location":"West Herbertside"}},{"attributes":{"name":"Mr. Trenton Little","age":48,"location":"Rogahntown"}},{"attributes":{"name":"Cameron Larkin","age":41,"location":"New Cordelia"}},{"attributes":{"name":"Gary Waelchi I","age":42,"location":"Rashadfield"}},{"attributes":{"name":"Andre Wyman","age":78,"location":"East Alaina"}},{"attributes":{"name":"Rolando Moen-O'Hara","age":75,"location":"Aracelyborough"}},{"attributes":{"name":"Viola Wiza MD","age":24,"location":"Huntington Park"}},{"attributes":{"name":"Connor Durgan","age":40,"location":"Fort Aniyah"}},{"attributes":{"name":"Meghan McGlynn","age":29,"location":"Caguas"}},{"attributes":{"name":"Francis Vandervort","age":26,"location":"Fort Loraine"}},{"attributes":{"name":"Dr. Octavia Breitenberg","age":74,"location":"Hackettside"}},{"attributes":{"name":"Maureen Rempel","age":35,"location":"West Gildahaven"}},{"attributes":{"name":"Shane Schmeler","age":62,"location":"Naomietown"}},{"attributes":{"name":"Emilio Feeney","age":63,"location":"Las Cruces"}},{"attributes":{"name":"Dawson Kozey-Hartmann","age":56,"location":"Hadleyland"}},{"attributes":{"name":"Nathan Buckridge DVM","age":27,"location":"Miami Gardens"}},{"attributes":{"name":"Mrs. Bridget Kiehn","age":18,"location":"Hattiecester"}},{"attributes":{"name":"Violet VonRueden","age":40,"location":"Flatleycester"}},{"attributes":{"name":"Doyle Blanda-Hamill","age":69,"location":"South Pamelaborough"}},{"attributes":{"name":"Sylvia Bradtke","age":68,"location":"West Noemyworth"}},{"attributes":{"name":"Ms. Doug Parisian","age":23,"location":"Johnsonfield"}},{"attributes":{"name":"Patrick Fay","age":50,"location":"Rohanview"}},{"attributes":{"name":"Luz Fritsch","age":34,"location":"Hegmannton"}},{"attributes":{"name":"Shannon Schmitt","age":35,"location":"Rohanton"}},{"attributes":{"name":"Ozella Block","age":36,"location":"West Bellside"}},{"attributes":{"name":"Walter Reichert PhD","age":64,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Troy Turcotte","age":69,"location":"North Kirachester"}},{"attributes":{"name":"Linwood Schmitt","age":58,"location":"Chico"}},{"attributes":{"name":"Iva Heller","age":29,"location":"Beierburgh"}},{"attributes":{"name":"Elton Swaniawski III","age":39,"location":"Lake Shirley"}},{"attributes":{"name":"Jayne Stracke-Schultz","age":41,"location":"Hegmannburgh"}},{"attributes":{"name":"Evalyn Cassin Sr.","age":34,"location":"Gibsonbury"}},{"attributes":{"name":"Dr. Remington Prohaska MD","age":28,"location":"West Matteo"}},{"attributes":{"name":"Israel Fadel","age":36,"location":"East Michaleboro"}},{"attributes":{"name":"Agustin Hickle","age":55,"location":"Kohlerview"}},{"attributes":{"name":"Myrtle Abbott-Gislason","age":37,"location":"Lake Ronnycester"}},{"attributes":{"name":"Cheryl Grant","age":57,"location":"South Rex"}},{"attributes":{"name":"Rhea VonRueden","age":47,"location":"Jarrettport"}},{"attributes":{"name":"Mamie Corkery","age":76,"location":"Weimanncester"}},{"attributes":{"name":"Susana Spinka","age":23,"location":"Chesterfield"}},{"attributes":{"name":"Meda Schmitt","age":64,"location":"New Florence"}},{"attributes":{"name":"Maryam Friesen","age":19,"location":"Fort Twilaborough"}},{"attributes":{"name":"Shannon Nitzsche","age":64,"location":"St. Louis"}},{"attributes":{"name":"Kevin Roberts-Nienow","age":76,"location":"New Evansberg"}},{"attributes":{"name":"Rosie Larkin","age":76,"location":"Abdullahfurt"}},{"attributes":{"name":"Webster Wintheiser","age":30,"location":"Fort Virginia"}},{"attributes":{"name":"Krista Gutkowski","age":50,"location":"Port Madalyn"}},{"attributes":{"name":"Myra Monahan","age":39,"location":"North Greggburgh"}},{"attributes":{"name":"Rosemarie Walker","age":49,"location":"Port Amos"}},{"attributes":{"name":"Sarai Konopelski","age":33,"location":"Moriahside"}},{"attributes":{"name":"Mr. Maya Bogisich","age":60,"location":"Mishawaka"}},{"attributes":{"name":"Carmela Mayert","age":28,"location":"Krajcikton"}},{"attributes":{"name":"Viola Schaden MD","age":28,"location":"Borerton"}},{"attributes":{"name":"Ruby Bruen","age":35,"location":"West Margarita"}},{"attributes":{"name":"Stanley Rohan","age":75,"location":"Jacobsburgh"}},{"attributes":{"name":"Alan Koch","age":39,"location":"New Alibury"}},{"attributes":{"name":"Alessandra Senger","age":57,"location":"Skilesfort"}},{"attributes":{"name":"Zetta Kuhlman-Abernathy","age":75,"location":"Brendafurt"}},{"attributes":{"name":"Ethyl Walker","age":56,"location":"Kokomo"}},{"attributes":{"name":"Merle Hansen","age":25,"location":"Bradleyside"}},{"attributes":{"name":"Katlyn Wisozk PhD","age":33,"location":"Franeystead"}},{"attributes":{"name":"Bruce Rath","age":40,"location":"Wyoming"}},{"attributes":{"name":"Ada Hagenes-Mitchell","age":24,"location":"La Mesa"}},{"attributes":{"name":"Ms. Chelsea Daugherty","age":19,"location":"Fort Shannon"}},{"attributes":{"name":"Dameon Koss I","age":22,"location":"West Candelarioburgh"}},{"attributes":{"name":"Susie Abernathy-Rowe","age":61,"location":"Davisworth"}},{"attributes":{"name":"Damaris Prohaska","age":73,"location":"Bartolettiville"}},{"attributes":{"name":"Ms. Erin Dibbert-Williamson","age":22,"location":"North Corneliusfield"}},{"attributes":{"name":"Creola Blanda","age":51,"location":"Garrettburgh"}},{"attributes":{"name":"Clinton Cartwright III","age":76,"location":"East Connor"}},{"attributes":{"name":"Diana Romaguera PhD","age":74,"location":"Johnsstead"}},{"attributes":{"name":"Yolanda Fadel","age":35,"location":"Wauwatosa"}},{"attributes":{"name":"Allison Homenick II","age":30,"location":"New Anselworth"}},{"attributes":{"name":"Camille Ondricka","age":52,"location":"Brisaville"}},{"attributes":{"name":"Timothy Ondricka","age":36,"location":"East Jaylenside"}},{"attributes":{"name":"Mr. Nick Hahn","age":46,"location":"New Skyla"}},{"attributes":{"name":"Ebony Bosco","age":29,"location":"Dibbertside"}},{"attributes":{"name":"Stella Cartwright","age":79,"location":"Juanitamouth"}},{"attributes":{"name":"Electa Friesen","age":67,"location":"North Janelle"}},{"attributes":{"name":"Eleanor Beer IV","age":40,"location":"Lake Mariamborough"}},{"attributes":{"name":"Cydney Lebsack DDS","age":57,"location":"Antelope"}},{"attributes":{"name":"Yvette Powlowski","age":56,"location":"East Luisa"}},{"attributes":{"name":"Eileen Hettinger","age":25,"location":"Ogden"}},{"attributes":{"name":"Hilbert Sporer","age":27,"location":"Zoeboro"}},{"attributes":{"name":"Kent Jacobi","age":48,"location":"Roswell"}},{"attributes":{"name":"Tressie Schneider","age":73,"location":"Fort Sheila"}},{"attributes":{"name":"Trudie Considine","age":45,"location":"New Coty"}},{"attributes":{"name":"Moriah Cole PhD","age":41,"location":"Kochland"}},{"attributes":{"name":"Samuel Jacobson","age":41,"location":"Lake Daisyfield"}},{"attributes":{"name":"Maureen Conroy","age":74,"location":"Kundeburgh"}},{"attributes":{"name":"Camren Jacobs","age":76,"location":"Fort Lauderdale"}},{"attributes":{"name":"Dr. Leo Purdy","age":27,"location":"Scranton"}},{"attributes":{"name":"Sandy Schmitt","age":65,"location":"Mission"}},{"attributes":{"name":"Tomas Stanton","age":55,"location":"Cupertino"}},{"attributes":{"name":"Miss Gladys Blick","age":52,"location":"Bauchstad"}},{"attributes":{"name":"Wendell Ratke","age":69,"location":"Reillyside"}},{"attributes":{"name":"Alexane Ledner","age":53,"location":"Schuppeton"}},{"attributes":{"name":"Clara Haley Sr.","age":61,"location":"Castro Valley"}},{"attributes":{"name":"Emory Skiles","age":47,"location":"Ernestinamouth"}},{"attributes":{"name":"Marta Stiedemann","age":75,"location":"Norfolk"}},{"attributes":{"name":"Wilma Padberg","age":22,"location":"Evansville"}},{"attributes":{"name":"Michelle Gottlieb","age":76,"location":"Lake Granville"}},{"attributes":{"name":"Jacob Hahn","age":22,"location":"Evansville"}},{"attributes":{"name":"Mrs. Jean Muller DVM","age":56,"location":"Muncie"}},{"attributes":{"name":"Kelvin Okuneva","age":45,"location":"Koelpinstad"}},{"attributes":{"name":"Silas Hauck","age":78,"location":"Spring Valley"}},{"attributes":{"name":"Leila Herzog DVM","age":59,"location":"Collierville"}},{"attributes":{"name":"Dr. Lydia Gulgowski","age":47,"location":"Fort Cyrusberg"}},{"attributes":{"name":"Daryl Cassin-Parker","age":21,"location":"Stromancester"}},{"attributes":{"name":"Latoya Bernier","age":60,"location":"Port Josie"}},{"attributes":{"name":"Dewey Crooks","age":45,"location":"Myastad"}},{"attributes":{"name":"Amelia Purdy","age":22,"location":"Flagstaff"}},{"attributes":{"name":"Maggie Hessel","age":41,"location":"Brisachester"}},{"attributes":{"name":"Myra Lehner II","age":80,"location":"Fort Collins"}},{"attributes":{"name":"Anastasia Weimann","age":37,"location":"Rueckerville"}},{"attributes":{"name":"Tony Block","age":76,"location":"Jarredside"}},{"attributes":{"name":"Ms. Glen Boyle","age":31,"location":"New Deion"}},{"attributes":{"name":"Howard Lakin","age":43,"location":"Brookhaven"}},{"attributes":{"name":"Teri Maggio","age":73,"location":"Londonstad"}},{"attributes":{"name":"Damon Keebler","age":32,"location":"Bernhardhaven"}},{"attributes":{"name":"Fred Reynolds","age":66,"location":"Cartwrightview"}},{"attributes":{"name":"Kristian Kessler PhD","age":25,"location":"Paterson"}},{"attributes":{"name":"Shannon Bechtelar Sr.","age":49,"location":"Euclid"}},{"attributes":{"name":"Sheri Upton","age":46,"location":"Abshireland"}},{"attributes":{"name":"Cullen Predovic","age":60,"location":"Abshireworth"}},{"attributes":{"name":"Heber Macejkovic","age":33,"location":"Denesikboro"}},{"attributes":{"name":"Billie Predovic","age":33,"location":"Hermanburgh"}},{"attributes":{"name":"Billy Kerluke","age":57,"location":"Sugar Land"}},{"attributes":{"name":"Dr. Walter Romaguera Jr.","age":50,"location":"Goldnermouth"}},{"attributes":{"name":"Samara Dickinson","age":33,"location":"Port Tamia"}},{"attributes":{"name":"Earnest Little","age":68,"location":"Schaeferstad"}},{"attributes":{"name":"Alize Stoltenberg","age":45,"location":"McKinney"}},{"attributes":{"name":"Lillian Emmerich","age":65,"location":"Fort Xzavier"}},{"attributes":{"name":"Rosamond Koss","age":20,"location":"North Justice"}},{"attributes":{"name":"Doris Bartoletti","age":53,"location":"West Josiahstad"}},{"attributes":{"name":"Stanley Zieme","age":79,"location":"West Lonnyshire"}},{"attributes":{"name":"Bonnie Witting","age":73,"location":"Abdielchester"}},{"attributes":{"name":"Dr. Carolyn Wyman","age":70,"location":"Chesapeake"}},{"attributes":{"name":"Dan Halvorson","age":23,"location":"Jimmiebury"}},{"attributes":{"name":"Jazmin McGlynn","age":32,"location":"Fort Leopold"}},{"attributes":{"name":"Sigmund Jast PhD","age":48,"location":"Dakotatown"}},{"attributes":{"name":"Emmanuel McKenzie","age":23,"location":"North Darrel"}},{"attributes":{"name":"Jorge Wolf","age":39,"location":"Greenchester"}},{"attributes":{"name":"Annette Aufderhar-Gerlach","age":72,"location":"Tannerland"}},{"attributes":{"name":"Marcella Stiedemann","age":50,"location":"New Jarretport"}},{"attributes":{"name":"Berneice Williamson","age":42,"location":"East Jaclyn"}},{"attributes":{"name":"Jimmy Fritsch","age":56,"location":"Lornaboro"}},{"attributes":{"name":"Natalie Brekke","age":26,"location":"Hudsonburgh"}},{"attributes":{"name":"Ms. Kendra Little","age":48,"location":"New Sincerecester"}},{"attributes":{"name":"Dianna Hilll","age":55,"location":"South Adelacester"}},{"attributes":{"name":"Joshua Borer","age":30,"location":"East Kendrabury"}},{"attributes":{"name":"Percy Hansen","age":66,"location":"Paradise"}},{"attributes":{"name":"Arlo Fisher","age":56,"location":"Thoraview"}},{"attributes":{"name":"Josiah Dicki","age":22,"location":"Princessville"}},{"attributes":{"name":"Elena Buckridge","age":50,"location":"New Anguscester"}},{"attributes":{"name":"Jimmy DuBuque","age":38,"location":"New Dejuanshire"}},{"attributes":{"name":"Darryl McDermott","age":30,"location":"Metzville"}},{"attributes":{"name":"Erna Dietrich","age":69,"location":"Cortezworth"}},{"attributes":{"name":"Cesar Bechtelar","age":30,"location":"West Khalid"}},{"attributes":{"name":"Loretta Okuneva","age":25,"location":"Port Greyson"}},{"attributes":{"name":"Demario Schaefer","age":53,"location":"East Rogelio"}},{"attributes":{"name":"Lillian Kunde","age":23,"location":"West Lenna"}},{"attributes":{"name":"Michael Brakus-Predovic","age":23,"location":"Marisabury"}},{"attributes":{"name":"Jed Rempel III","age":42,"location":"Cathrynchester"}},{"attributes":{"name":"Boyd Witting","age":71,"location":"Osinskistead"}},{"attributes":{"name":"Cielo Crona","age":18,"location":"Port Janice"}},{"attributes":{"name":"Miss Hilda Greenfelder","age":30,"location":"Port Devanfield"}},{"attributes":{"name":"Stephen Dietrich","age":71,"location":"Ryanmouth"}},{"attributes":{"name":"Johnnie Murray","age":77,"location":"Mervinstead"}},{"attributes":{"name":"Cathrine Carter","age":52,"location":"Heidenreichburgh"}},{"attributes":{"name":"Gordon Reinger I","age":31,"location":"Doylecester"}},{"attributes":{"name":"Raul Beier","age":21,"location":"Alfordstead"}},{"attributes":{"name":"Antonia McClure","age":64,"location":"Mortimercester"}},{"attributes":{"name":"Randal Ward","age":42,"location":"Irwinboro"}},{"attributes":{"name":"Katrina Schuster","age":33,"location":"New Mylene"}},{"attributes":{"name":"Tina Bernier","age":22,"location":"Port Micaela"}},{"attributes":{"name":"Meta Conn","age":61,"location":"Lake Bessieshire"}},{"attributes":{"name":"Daniel Gerlach","age":24,"location":"Baytown"}},{"attributes":{"name":"Jacquelyn Feil","age":71,"location":"Lake Manleyland"}},{"attributes":{"name":"Estella Sipes","age":48,"location":"South Fiona"}},{"attributes":{"name":"Ernestine Medhurst","age":72,"location":"Franeckihaven"}},{"attributes":{"name":"Miss Adelbert Ziemann","age":61,"location":"Roseville"}},{"attributes":{"name":"Dr. Rosie Will","age":37,"location":"Port Orange"}},{"attributes":{"name":"Dave Runte","age":61,"location":"North Arielle"}},{"attributes":{"name":"Enid Corkery","age":22,"location":"Batzland"}},{"attributes":{"name":"Teri Heaney","age":73,"location":"Lake Domenicaville"}},{"attributes":{"name":"Thelma Wiza","age":31,"location":"Schulistville"}},{"attributes":{"name":"Deron Hauck","age":56,"location":"Fort Ismaelmouth"}},{"attributes":{"name":"Tessie Stracke","age":70,"location":"Rialto"}},{"attributes":{"name":"Derek Stiedemann DVM","age":29,"location":"Jakaylaboro"}},{"attributes":{"name":"Cassidy Keebler","age":80,"location":"West Merritt"}},{"attributes":{"name":"Jakayla Franecki","age":74,"location":"East Eulaland"}},{"attributes":{"name":"Kelsie Gleichner","age":50,"location":"Deltona"}},{"attributes":{"name":"Fannie Dach","age":48,"location":"Lake Edwardo"}},{"attributes":{"name":"Isabel Thiel","age":75,"location":"West Marina"}},{"attributes":{"name":"Ian White","age":64,"location":"West Idella"}},{"attributes":{"name":"Susie Gerlach","age":60,"location":"San Jacinto"}},{"attributes":{"name":"Osbaldo Armstrong","age":41,"location":"West Lunaburgh"}},{"attributes":{"name":"Carlos Christiansen","age":75,"location":"Dejabury"}},{"attributes":{"name":"Terry Cummerata","age":59,"location":"Carlsbad"}},{"attributes":{"name":"Eileen Boehm","age":42,"location":"Parkerbury"}},{"attributes":{"name":"Ramon Halvorson","age":51,"location":"Rainashire"}},{"attributes":{"name":"Blanca Weber","age":20,"location":"Schillertown"}},{"attributes":{"name":"Clinton Ledner","age":29,"location":"Alaynaland"}},{"attributes":{"name":"Neva Johns","age":27,"location":"Tucson"}},{"attributes":{"name":"Mrs. Dominic Upton","age":33,"location":"Richardson"}},{"attributes":{"name":"Dr. Johnnie Jacobi","age":57,"location":"South Aubree"}},{"attributes":{"name":"Mr. Alverta Rau","age":24,"location":"North Moniquebury"}},{"attributes":{"name":"Patsy O'Connell","age":51,"location":"Bahringerland"}},{"attributes":{"name":"Anna Senger","age":56,"location":"Gabeboro"}},{"attributes":{"name":"Triston Cruickshank","age":49,"location":"North Nickview"}},{"attributes":{"name":"Rosalie Oberbrunner","age":54,"location":"Fort Kenyatta"}},{"attributes":{"name":"Lynn Windler","age":22,"location":"Kendale Lakes"}},{"attributes":{"name":"Aryanna Rohan IV","age":75,"location":"Port Holdenstad"}},{"attributes":{"name":"Ms. Prince McGlynn","age":20,"location":"New Richie"}},{"attributes":{"name":"Madalyn Schmitt","age":75,"location":"San Ramon"}},{"attributes":{"name":"Mr. Nathaniel Rodriguez","age":18,"location":"Katharinafurt"}},{"attributes":{"name":"Brett Huel","age":66,"location":"Rogahnshire"}},{"attributes":{"name":"Matthew Bartell","age":68,"location":"South Ashtyn"}},{"attributes":{"name":"Angel Hansen I","age":50,"location":"New Alfredo"}},{"attributes":{"name":"Miss Aisha Glover","age":45,"location":"North Deshaunview"}},{"attributes":{"name":"Alysson Mann","age":39,"location":"Port Alex"}},{"attributes":{"name":"Mr. Nicolas Douglas Jr.","age":67,"location":"Deckowland"}},{"attributes":{"name":"Janae Wehner-Block","age":49,"location":"Damionboro"}},{"attributes":{"name":"Shawn Mertz DVM","age":60,"location":"Millcreek"}},{"attributes":{"name":"Shane Cormier","age":33,"location":"Lake Haydenland"}},{"attributes":{"name":"Rosalie Cronin","age":61,"location":"North Stefanmouth"}},{"attributes":{"name":"Wilfred O'Reilly","age":35,"location":"Conroyview"}},{"attributes":{"name":"Dolores Hahn-Mohr","age":44,"location":"Mooreworth"}},{"attributes":{"name":"Jon Reichert V","age":24,"location":"West Magdalenaburgh"}},{"attributes":{"name":"Vanessa Bergstrom","age":76,"location":"Aliacester"}},{"attributes":{"name":"Chandler Koepp","age":68,"location":"South Ernest"}},{"attributes":{"name":"Mr. Andy Beatty-Rohan","age":31,"location":"Tamarac"}},{"attributes":{"name":"Jan Mills","age":59,"location":"North Conniefurt"}},{"attributes":{"name":"Hugh Ondricka","age":26,"location":"Luishaven"}},{"attributes":{"name":"Nannie O'Conner","age":26,"location":"New Vellabury"}},{"attributes":{"name":"Mrs. Lottie Ferry","age":78,"location":"Des Moines"}},{"attributes":{"name":"Marguerite Braun","age":33,"location":"Luettgenfort"}},{"attributes":{"name":"Leatha Brown","age":25,"location":"Rohanfurt"}},{"attributes":{"name":"Magdalen O'Connell","age":43,"location":"East Lesleyview"}},{"attributes":{"name":"Jay McGlynn","age":62,"location":"Santee"}},{"attributes":{"name":"Jordan Rutherford","age":41,"location":"Bowling Green"}},{"attributes":{"name":"Nikki Renner","age":76,"location":"Weberview"}},{"attributes":{"name":"Ebony Farrell","age":39,"location":"Pompano Beach"}},{"attributes":{"name":"Euna Powlowski","age":41,"location":"South Hughborough"}},{"attributes":{"name":"Sven Gutkowski","age":34,"location":"Fritschport"}},{"attributes":{"name":"Stanley Gusikowski PhD","age":40,"location":"West Remingtonstead"}},{"attributes":{"name":"Cory Rohan IV","age":32,"location":"North Mortimerstead"}},{"attributes":{"name":"Casey Russel","age":53,"location":"South Nataliestead"}},{"attributes":{"name":"Dexter McCullough MD","age":50,"location":"Batzmouth"}},{"attributes":{"name":"Michele Schowalter-Fritsch II","age":50,"location":"Beerhaven"}},{"attributes":{"name":"Mr. Nash Gutmann","age":70,"location":"West Covina"}},{"attributes":{"name":"Ivah Green","age":27,"location":"Aufderharville"}},{"attributes":{"name":"Preston Vandervort","age":67,"location":"West Ernestinaport"}},{"attributes":{"name":"Osbaldo Shields-Abernathy","age":35,"location":"Port Patience"}},{"attributes":{"name":"Gerard Durgan","age":72,"location":"North Laylaborough"}},{"attributes":{"name":"Domenico Ernser Jr.","age":71,"location":"Araport"}},{"attributes":{"name":"Rex Brown","age":40,"location":"Madera"}},{"attributes":{"name":"Helene Dicki","age":60,"location":"North Aliciastead"}},{"attributes":{"name":"Adele Kerluke","age":70,"location":"Miltoncester"}},{"attributes":{"name":"Harmon Jakubowski","age":72,"location":"East Eribertomouth"}},{"attributes":{"name":"Harriet Fahey","age":78,"location":"Porterville"}},{"attributes":{"name":"Orland Lesch","age":71,"location":"Port Miracleside"}},{"attributes":{"name":"Cesar Strosin","age":33,"location":"Rowlett"}},{"attributes":{"name":"Loren MacGyver","age":77,"location":"Kingville"}},{"attributes":{"name":"Billie Auer","age":33,"location":"West Rory"}},{"attributes":{"name":"Lyle Dach","age":20,"location":"Nampa"}},{"attributes":{"name":"Georgia Thiel","age":47,"location":"Port Jeradland"}},{"attributes":{"name":"Dejon Hartmann","age":57,"location":"Fort Merle"}},{"attributes":{"name":"Guillermo Lakin","age":67,"location":"Chesterfield"}},{"attributes":{"name":"Lawrence Tremblay","age":60,"location":"Ratkeberg"}},{"attributes":{"name":"Marjory Ankunding","age":27,"location":"Hartmannborough"}},{"attributes":{"name":"Erin Runte","age":65,"location":"New Daxchester"}},{"attributes":{"name":"Khalid Williamson","age":65,"location":"Schowalterville"}},{"attributes":{"name":"Meghan Jacobs","age":77,"location":"Rosenbaumstead"}},{"attributes":{"name":"Jaqueline Walsh","age":47,"location":"Port Maria"}},{"attributes":{"name":"Dr. Marshall Turcotte","age":39,"location":"Mayertboro"}},{"attributes":{"name":"Ulises Aufderhar","age":50,"location":"Jerdeberg"}},{"attributes":{"name":"Colleen Ullrich III","age":26,"location":"Hirthehaven"}},{"attributes":{"name":"Darrell Parisian","age":25,"location":"West Cade"}},{"attributes":{"name":"Stuart Reynolds","age":66,"location":"Oceanside"}},{"attributes":{"name":"Andres Tillman","age":45,"location":"Whittier"}},{"attributes":{"name":"Demarcus Miller","age":26,"location":"Deerfield Beach"}},{"attributes":{"name":"Julio Raynor","age":55,"location":"South Amely"}},{"attributes":{"name":"Avery Abernathy","age":30,"location":"Kansas City"}},{"attributes":{"name":"Brittany Kerluke","age":61,"location":"VonRuedenbury"}},{"attributes":{"name":"Ursula Bashirian","age":35,"location":"Juniorville"}},{"attributes":{"name":"Linnie Koch III","age":20,"location":"Leonardchester"}},{"attributes":{"name":"Ms. Sophie Klein","age":73,"location":"Nicolasberg"}},{"attributes":{"name":"Kyle Gislason PhD","age":61,"location":"Hicksville"}},{"attributes":{"name":"Lynette Lakin","age":37,"location":"Arnaldoburgh"}},{"attributes":{"name":"Maynard Hartmann","age":23,"location":"Ratkebury"}},{"attributes":{"name":"Lonnie Gleichner","age":34,"location":"Haylieworth"}},{"attributes":{"name":"Jennyfer Moore","age":70,"location":"North Garrisonfurt"}},{"attributes":{"name":"Ivah Johnson","age":62,"location":"Mireillestead"}},{"attributes":{"name":"Melissa Brakus","age":30,"location":"Port Johannaview"}},{"attributes":{"name":"Conrad Champlin IV","age":70,"location":"New Ludwig"}},{"attributes":{"name":"Rex Dicki","age":77,"location":"Treutelview"}},{"attributes":{"name":"Mrs. Josephine Stroman","age":47,"location":"New Adriancester"}},{"attributes":{"name":"Karen Gutmann","age":42,"location":"Fort Emerson"}},{"attributes":{"name":"Marietta Connelly","age":45,"location":"North Kamilleton"}},{"attributes":{"name":"Mattie Nienow DVM","age":33,"location":"Lake Elbertview"}},{"attributes":{"name":"Guillermo Kihn I","age":45,"location":"Sherwoodton"}},{"attributes":{"name":"Tasha Hegmann","age":62,"location":"Boehmstad"}},{"attributes":{"name":"D'angelo Orn Jr.","age":55,"location":"Kuhlmancester"}},{"attributes":{"name":"Jamie Bartoletti PhD","age":35,"location":"South Mozell"}},{"attributes":{"name":"Lisa Boyer","age":20,"location":"Leannonberg"}},{"attributes":{"name":"Vicki McCullough","age":47,"location":"New Evalyncester"}},{"attributes":{"name":"Preston Simonis","age":47,"location":"Kendale Lakes"}},{"attributes":{"name":"Jan Baumbach","age":28,"location":"West Cydneyfurt"}},{"attributes":{"name":"Timmy Douglas","age":66,"location":"Lenexa"}},{"attributes":{"name":"Cristina Keebler","age":30,"location":"Joplin"}},{"attributes":{"name":"Elnora Wolff Sr.","age":27,"location":"Kileymouth"}},{"attributes":{"name":"Dr. Dave Nolan","age":59,"location":"Eloisetown"}},{"attributes":{"name":"Danyka Crona-Farrell","age":40,"location":"West Ben"}},{"attributes":{"name":"Jeannette Schmeler I","age":26,"location":"Eugeniastad"}},{"attributes":{"name":"Luisa Orn","age":37,"location":"Athens-Clarke County"}},{"attributes":{"name":"Rudolph Walker","age":67,"location":"Rebeccabury"}},{"attributes":{"name":"Mabel Abbott","age":26,"location":"West Fritzbury"}},{"attributes":{"name":"Vivien Bins DVM","age":48,"location":"Lake Maximo"}},{"attributes":{"name":"Frances Shields","age":80,"location":"West Kayley"}},{"attributes":{"name":"Neil D'Amore","age":48,"location":"Lindgrenshire"}},{"attributes":{"name":"Iris Walter","age":49,"location":"Sacramento"}},{"attributes":{"name":"Dr. Fredrick Pfannerstill","age":18,"location":"Amystead"}},{"attributes":{"name":"Grayson Orn","age":71,"location":"San Clemente"}},{"attributes":{"name":"Virginie Crist","age":41,"location":"Joanyton"}},{"attributes":{"name":"Willa Windler IV","age":60,"location":"Chancemouth"}},{"attributes":{"name":"Amy Tillman","age":63,"location":"Port Myrl"}},{"attributes":{"name":"Noe Lehner","age":75,"location":"Lake Devin"}},{"attributes":{"name":"Ethel Collier","age":44,"location":"Beerbury"}},{"attributes":{"name":"Merle Mraz","age":73,"location":"Pflugerville"}},{"attributes":{"name":"Alejandro Mosciski","age":79,"location":"Port Mossieville"}},{"attributes":{"name":"Dr. Shanna Leannon","age":19,"location":"East Imaburgh"}},{"attributes":{"name":"Carey Quigley","age":47,"location":"Aaronborough"}},{"attributes":{"name":"Fletcher Huel","age":68,"location":"Greenwood"}},{"attributes":{"name":"Sherry Wiegand PhD","age":45,"location":"Lake Kylerfield"}},{"attributes":{"name":"Frederick Reilly-Kuhn IV","age":59,"location":"Aliceberg"}},{"attributes":{"name":"Sheila Spinka","age":35,"location":"Carolyneshire"}},{"attributes":{"name":"Evert Hickle","age":45,"location":"New Kelliefurt"}},{"attributes":{"name":"Marcelino Weimann","age":73,"location":"East Margarette"}},{"attributes":{"name":"Delia Brakus","age":50,"location":"Wernerton"}},{"attributes":{"name":"Marjorie Daniel","age":39,"location":"Port Jade"}},{"attributes":{"name":"Velma Hane","age":67,"location":"Grimesmouth"}},{"attributes":{"name":"Ms. Jarret Fay","age":45,"location":"Rolfsonside"}},{"attributes":{"name":"Brionna Corwin","age":46,"location":"Zackerystad"}},{"attributes":{"name":"Concepcion Muller","age":47,"location":"Trenton"}},{"attributes":{"name":"Brandt Kozey","age":69,"location":"Micahside"}},{"attributes":{"name":"Heather Dicki","age":50,"location":"Wymanberg"}},{"attributes":{"name":"Alicia Ernser","age":66,"location":"Fort Laurine"}},{"attributes":{"name":"Ms. Tito Keeling","age":70,"location":"Charlotte"}},{"attributes":{"name":"Archie Gleason","age":79,"location":"Goldnerworth"}},{"attributes":{"name":"Dora Turcotte","age":43,"location":"South Prince"}},{"attributes":{"name":"Robin Prohaska","age":52,"location":"South Leonville"}},{"attributes":{"name":"Lukas Abernathy","age":30,"location":"Sporerville"}},{"attributes":{"name":"Alexandrea Jast","age":26,"location":"East Alexandre"}},{"attributes":{"name":"Marlee Larson","age":51,"location":"East Katheryn"}},{"attributes":{"name":"Diane Kassulke","age":54,"location":"West Paula"}},{"attributes":{"name":"Jeannette Spinka","age":61,"location":"Port Sarina"}},{"attributes":{"name":"Mrs. Edgar Buckridge","age":53,"location":"Port Trevorville"}},{"attributes":{"name":"Levi Hoppe","age":27,"location":"West Dedrickworth"}},{"attributes":{"name":"Mellie Bins","age":33,"location":"Port Kennith"}},{"attributes":{"name":"Donnie Fritsch","age":22,"location":"Anastasialand"}},{"attributes":{"name":"Stacey Leffler","age":57,"location":"Knoxville"}},{"attributes":{"name":"Derek Bode","age":34,"location":"Morissetteborough"}},{"attributes":{"name":"Garry Dare","age":19,"location":"Windlerside"}},{"attributes":{"name":"Christiana Beier","age":46,"location":"Port Ramiro"}},{"attributes":{"name":"Janice McCullough-Von","age":52,"location":"Elianfurt"}},{"attributes":{"name":"Trever Kautzer","age":74,"location":"West Valeriehaven"}},{"attributes":{"name":"Shaun Hane","age":58,"location":"Alessiaside"}},{"attributes":{"name":"Greta Botsford","age":56,"location":"Fort Freddytown"}},{"attributes":{"name":"Lloyd Nitzsche","age":64,"location":"Jovanistead"}},{"attributes":{"name":"Dr. Yvonne Medhurst","age":26,"location":"Rustychester"}},{"attributes":{"name":"Tanya Boehm II","age":52,"location":"Bellaville"}},{"attributes":{"name":"Myrtice Walker","age":21,"location":"Mraztown"}},{"attributes":{"name":"Mr. Otis Littel","age":27,"location":"Sabinaberg"}},{"attributes":{"name":"Derek Gutmann","age":68,"location":"New Jaronworth"}},{"attributes":{"name":"Archie Doyle","age":22,"location":"Hilo"}},{"attributes":{"name":"Jaycee Wuckert","age":64,"location":"Delphiaport"}},{"attributes":{"name":"Dr. Noel Metz","age":55,"location":"Mansfield"}},{"attributes":{"name":"Gretchen Crooks I","age":58,"location":"Schaeferstad"}},{"attributes":{"name":"Caleigh Brakus","age":25,"location":"Daijaboro"}},{"attributes":{"name":"Boyd Lynch","age":37,"location":"Littlefort"}},{"attributes":{"name":"Laurie Leffler","age":53,"location":"New Lula"}},{"attributes":{"name":"Kristin Cruickshank II","age":80,"location":"Smithbury"}},{"attributes":{"name":"Vernie Kshlerin","age":38,"location":"Tysonville"}},{"attributes":{"name":"Bridget Rohan","age":36,"location":"Muellercester"}},{"attributes":{"name":"Karla Hodkiewicz","age":32,"location":"New Braunfels"}},{"attributes":{"name":"Brooks Roob","age":72,"location":"North Raphaelle"}},{"attributes":{"name":"Mr. Florencio Rice V","age":64,"location":"Sioux City"}},{"attributes":{"name":"Candido Turner","age":19,"location":"West Ronaldoland"}},{"attributes":{"name":"Miss Fabiola Bauch","age":37,"location":"New Bill"}},{"attributes":{"name":"Mindy Kertzmann","age":80,"location":"New Reese"}},{"attributes":{"name":"Darla Bergnaum","age":51,"location":"Lindville"}},{"attributes":{"name":"Jennifer Considine IV","age":69,"location":"Shermanfort"}},{"attributes":{"name":"Saige Rippin","age":78,"location":"Ardenshire"}},{"attributes":{"name":"Jermaine Hickle","age":74,"location":"Westmouth"}},{"attributes":{"name":"Rodrick Kutch Jr.","age":33,"location":"Tremblayboro"}},{"attributes":{"name":"Dr. Derek Marvin","age":55,"location":"Ociebury"}},{"attributes":{"name":"Larissa Nolan","age":61,"location":"Fort Jessie"}},{"attributes":{"name":"Keagan Beatty","age":22,"location":"Edinburg"}},{"attributes":{"name":"Sammy Klein","age":59,"location":"East Cheyenneville"}},{"attributes":{"name":"Ben Ernser","age":43,"location":"Fort Tyreekberg"}},{"attributes":{"name":"Susan Lueilwitz DVM","age":35,"location":"Rodrigofield"}},{"attributes":{"name":"Mr. Marisa Wiegand","age":29,"location":"New Makenzie"}},{"attributes":{"name":"Phillip Zemlak","age":44,"location":"Reillystead"}},{"attributes":{"name":"Adonis Yost-Kshlerin","age":19,"location":"Johnston"}},{"attributes":{"name":"Oscar Feest","age":23,"location":"Cedar Hill"}},{"attributes":{"name":"Davon Stamm","age":25,"location":"Robelfield"}},{"attributes":{"name":"Joanne Schiller","age":28,"location":"Parisiantown"}},{"attributes":{"name":"Jill Miller Jr.","age":23,"location":"Lake Israelburgh"}},{"attributes":{"name":"Mrs. Johnpaul Wehner-Rosenbaum","age":36,"location":"New Zellaberg"}},{"attributes":{"name":"Ollie Zulauf II","age":34,"location":"Ashlynnshire"}},{"attributes":{"name":"Ms. Annalise Kunze","age":37,"location":"West Timmyland"}},{"attributes":{"name":"Ella Witting-Casper","age":54,"location":"Albinaworth"}},{"attributes":{"name":"Ms. Mertie Brown","age":71,"location":"East Lucienne"}},{"attributes":{"name":"Mr. Kristine Pagac PhD","age":19,"location":"Zoraburgh"}},{"attributes":{"name":"Trace Murazik","age":34,"location":"West Damonland"}},{"attributes":{"name":"Mae Feest","age":74,"location":"Reingertown"}},{"attributes":{"name":"Dr. Miguel Becker-Smitham","age":78,"location":"Schneiderberg"}},{"attributes":{"name":"Billie Turner-Torphy","age":41,"location":"Eden Prairie"}},{"attributes":{"name":"Lionel Buckridge","age":27,"location":"Lake Austyn"}},{"attributes":{"name":"Ms. Alexis McCullough","age":65,"location":"Farmington"}},{"attributes":{"name":"Brenna Kling","age":50,"location":"Lake Emmie"}},{"attributes":{"name":"Nathaniel Sauer","age":49,"location":"Angelineville"}},{"attributes":{"name":"Dallas Dibbert DDS","age":80,"location":"Minervaland"}},{"attributes":{"name":"Nicolas Connelly","age":49,"location":"Cummingsberg"}},{"attributes":{"name":"Misty Cummerata","age":74,"location":"Youngstown"}},{"attributes":{"name":"Alexandra Cummings","age":48,"location":"Roslynland"}},{"attributes":{"name":"Allen Graham","age":78,"location":"Brownsville"}},{"attributes":{"name":"Denis Wiza","age":24,"location":"North Meta"}},{"attributes":{"name":"Rene Bogan","age":65,"location":"Beahanfort"}},{"attributes":{"name":"Nadine Kuhlman","age":43,"location":"New Amelychester"}},{"attributes":{"name":"Willis Mohr DDS","age":77,"location":"Clayview"}},{"attributes":{"name":"Carrie Strosin","age":32,"location":"Fort Chanelchester"}},{"attributes":{"name":"Gina Schneider","age":35,"location":"Julianneshire"}},{"attributes":{"name":"Mario Gulgowski","age":21,"location":"North Chauncey"}},{"attributes":{"name":"Sandrine Roberts","age":19,"location":"South Savionport"}},{"attributes":{"name":"Sherry Funk MD","age":59,"location":"Port Sonny"}},{"attributes":{"name":"Ana Lockman","age":79,"location":"East Shaniya"}},{"attributes":{"name":"Jordon Rath","age":47,"location":"Matthaven"}},{"attributes":{"name":"Adalberto Schiller","age":30,"location":"Medford"}},{"attributes":{"name":"Miss Akeem Pouros","age":60,"location":"Aylaworth"}},{"attributes":{"name":"Leah Mertz IV","age":65,"location":"Taylorsville"}},{"attributes":{"name":"Grady Baumbach","age":45,"location":"North Margaretta"}},{"attributes":{"name":"Margarita Schaefer","age":55,"location":"East Patsy"}},{"attributes":{"name":"Krystal Conn","age":62,"location":"New Dejastead"}},{"attributes":{"name":"Juana O'Conner Sr.","age":80,"location":"North Jayneshire"}},{"attributes":{"name":"Ms. Joyce Ortiz","age":55,"location":"Nikkifurt"}},{"attributes":{"name":"Corey Aufderhar","age":23,"location":"Armstronghaven"}},{"attributes":{"name":"Andres Rowe","age":27,"location":"Austynfort"}},{"attributes":{"name":"Mr. Clarence Jones MD","age":51,"location":"Palm Desert"}},{"attributes":{"name":"Hortense Walker","age":38,"location":"South Milliebury"}},{"attributes":{"name":"Mr. Jessie Bogan II","age":50,"location":"Aidastad"}},{"attributes":{"name":"Jacinthe Little","age":53,"location":"Fort Dustychester"}},{"attributes":{"name":"Dr. Tracy Carter","age":29,"location":"East Terrell"}},{"attributes":{"name":"Pat Stoltenberg III","age":66,"location":"Williamsoncester"}},{"attributes":{"name":"Nicolas Satterfield","age":26,"location":"D'Amoreboro"}},{"attributes":{"name":"Rodney Stamm","age":19,"location":"Santa Monica"}},{"attributes":{"name":"Mr. Leo Lowe-Funk","age":37,"location":"Harrisburg"}},{"attributes":{"name":"Lera Stiedemann","age":67,"location":"Palmastad"}},{"attributes":{"name":"Opal Flatley-Swaniawski","age":35,"location":"West Rosalindview"}},{"attributes":{"name":"Clinton Lubowitz","age":76,"location":"Mertzstead"}},{"attributes":{"name":"Dr. Cortney Gottlieb","age":44,"location":"Stillwater"}},{"attributes":{"name":"Dr. Harvey Wiza V","age":23,"location":"Port Mavisfield"}},{"attributes":{"name":"Herminia West","age":72,"location":"Lake Kimmouth"}},{"attributes":{"name":"Beulah Schmeler","age":45,"location":"North Kirstin"}},{"attributes":{"name":"Carlo Adams","age":26,"location":"South Ericview"}},{"attributes":{"name":"Margaret Ferry","age":57,"location":"Mayertland"}},{"attributes":{"name":"Darla Bailey","age":22,"location":"East Jarrod"}},{"attributes":{"name":"Idella Shanahan PhD","age":27,"location":"Des Moines"}},{"attributes":{"name":"Garett Zieme Sr.","age":25,"location":"Schuppeville"}},{"attributes":{"name":"Melanie D'Amore","age":78,"location":"Ettiefield"}},{"attributes":{"name":"Quentin Lindgren","age":56,"location":"South Jamarcus"}},{"attributes":{"name":"Domingo Reinger","age":23,"location":"Lake Norma"}},{"attributes":{"name":"Marc Bauch","age":68,"location":"Clarksville"}},{"attributes":{"name":"Robert Collier","age":45,"location":"East Gino"}},{"attributes":{"name":"Shannon Corwin","age":80,"location":"West Dallinstad"}},{"attributes":{"name":"Miss Patricia VonRueden","age":24,"location":"South Rodrigo"}},{"attributes":{"name":"Alda Lowe","age":80,"location":"Willmsside"}},{"attributes":{"name":"Gregory Kiehn","age":25,"location":"New Garnet"}},{"attributes":{"name":"Gilberto Langosh PhD","age":40,"location":"Albinastead"}},{"attributes":{"name":"Mrs. Zachary Buckridge","age":56,"location":"Westfield"}},{"attributes":{"name":"Margarita Farrell","age":19,"location":"Irvingville"}},{"attributes":{"name":"Ronaldo Keeling","age":50,"location":"Provo"}},{"attributes":{"name":"Alana Bahringer-O'Reilly","age":25,"location":"Weymouth Town"}},{"attributes":{"name":"Dr. Albert Ledner-Smith","age":42,"location":"Lake Leoborough"}},{"attributes":{"name":"Lee Douglas II","age":74,"location":"Lake Freeman"}},{"attributes":{"name":"Oliver Lebsack","age":52,"location":"Emiecester"}},{"attributes":{"name":"Hazle Runte-Mosciski","age":77,"location":"New Britneyfurt"}},{"attributes":{"name":"Roger Langosh","age":72,"location":"Shawnee"}},{"attributes":{"name":"Elnora Rosenbaum I","age":75,"location":"Lake Kylaside"}},{"attributes":{"name":"Janice Hettinger","age":74,"location":"Port Alexandra"}},{"attributes":{"name":"Peter Reichel","age":72,"location":"East Silasstad"}},{"attributes":{"name":"Harold Wiza","age":22,"location":"O'Connerstad"}},{"attributes":{"name":"Mittie Marquardt","age":63,"location":"Framifield"}},{"attributes":{"name":"Addie Blick-Koch","age":22,"location":"South Reagan"}},{"attributes":{"name":"Kane Hilpert","age":22,"location":"Harrisonburg"}},{"attributes":{"name":"Brandi Mueller","age":25,"location":"O'Fallon"}},{"attributes":{"name":"Talon Wiza","age":28,"location":"East Reaganborough"}},{"attributes":{"name":"Danny Stamm","age":55,"location":"Kuhicworth"}},{"attributes":{"name":"Robert Fisher","age":58,"location":"Bashirianboro"}},{"attributes":{"name":"Augusta Kassulke","age":59,"location":"Alexanneport"}},{"attributes":{"name":"Brendan Wunsch","age":36,"location":"Earlenestead"}},{"attributes":{"name":"Francis Prohaska IV","age":29,"location":"Ritchiemouth"}},{"attributes":{"name":"Mrs. Drew Ondricka III","age":44,"location":"Aftonshire"}},{"attributes":{"name":"Lynette Kovacek","age":62,"location":"South Wernerchester"}},{"attributes":{"name":"Annie Halvorson","age":26,"location":"Hudsonstead"}},{"attributes":{"name":"Willie Blanda","age":38,"location":"Port Pedro"}},{"attributes":{"name":"Amy Streich","age":57,"location":"MacGyverside"}},{"attributes":{"name":"Harold Heaney","age":65,"location":"North Ikecester"}},{"attributes":{"name":"Jenna Moore","age":36,"location":"Port Abbigail"}},{"attributes":{"name":"Layla Kuhlman","age":50,"location":"Feilland"}},{"attributes":{"name":"Mrs. Pamela Runolfsson I","age":55,"location":"West Aracelistad"}},{"attributes":{"name":"Miguel Hane","age":70,"location":"Jerelcester"}},{"attributes":{"name":"Anita Pacocha","age":47,"location":"Athens-Clarke County"}},{"attributes":{"name":"Regina Beahan","age":25,"location":"West Dixiehaven"}},{"attributes":{"name":"Dr. Marcella Marks","age":21,"location":"North Eulafort"}},{"attributes":{"name":"Lee Stanton","age":55,"location":"Fountainebleau"}},{"attributes":{"name":"Sven McLaughlin","age":49,"location":"Karianeborough"}},{"attributes":{"name":"Allen Ankunding","age":52,"location":"Magalibury"}},{"attributes":{"name":"Mrs. Lori Bogan","age":78,"location":"East Lurlineburgh"}},{"attributes":{"name":"Esther Lang","age":67,"location":"New Priscillafield"}},{"attributes":{"name":"Brian Abshire","age":59,"location":"Barrowsfurt"}},{"attributes":{"name":"Blanche Stark V","age":60,"location":"New Marcel"}},{"attributes":{"name":"Rachael Buckridge","age":31,"location":"Lombard"}},{"attributes":{"name":"Dr. Michelle Blanda","age":53,"location":"West Scot"}},{"attributes":{"name":"Patsy Labadie-Kautzer","age":63,"location":"Chattanooga"}},{"attributes":{"name":"Paul Sauer DVM","age":28,"location":"Beattymouth"}},{"attributes":{"name":"Allen Renner","age":66,"location":"Juvenalfield"}},{"attributes":{"name":"Roberto Will","age":32,"location":"Leviberg"}},{"attributes":{"name":"Andrea Little","age":26,"location":"Catonsville"}},{"attributes":{"name":"Austin Wuckert","age":53,"location":"Andreaneburgh"}},{"attributes":{"name":"Austen Nolan","age":47,"location":"Mount Prospect"}},{"attributes":{"name":"Wallace Herman-Upton","age":24,"location":"Domenicburgh"}},{"attributes":{"name":"Miss Edd Beahan","age":37,"location":"Dooleyport"}},{"attributes":{"name":"Lorenzo Carter","age":50,"location":"Bernhardworth"}},{"attributes":{"name":"Mazie Rogahn","age":36,"location":"McDermottworth"}},{"attributes":{"name":"Torey Nicolas IV","age":19,"location":"New Tessie"}},{"attributes":{"name":"Christie Klocko-Runte MD","age":80,"location":"Lake Furman"}},{"attributes":{"name":"Miss Herbert Kling","age":44,"location":"Graycechester"}},{"attributes":{"name":"Mrs. Paulette Abernathy","age":41,"location":"South Esther"}},{"attributes":{"name":"Derrick Hauck","age":38,"location":"Appleton"}},{"attributes":{"name":"Alison Effertz","age":24,"location":"New Nelson"}},{"attributes":{"name":"Brittany Kling","age":46,"location":"Taylorfort"}},{"attributes":{"name":"Rasheed Connelly","age":72,"location":"Lake Delpha"}},{"attributes":{"name":"Kendrick Fisher MD","age":22,"location":"Jonatanstad"}},{"attributes":{"name":"Brad Zieme PhD","age":18,"location":"Lake Briannechester"}},{"attributes":{"name":"Tyra Kozey","age":45,"location":"Mansfield"}},{"attributes":{"name":"Isac Rosenbaum","age":46,"location":"Bricestad"}},{"attributes":{"name":"Oscar Hammes","age":42,"location":"Passaic"}},{"attributes":{"name":"Dr. George Langosh","age":72,"location":"Stillwater"}},{"attributes":{"name":"Janice Howe","age":80,"location":"Danielville"}},{"attributes":{"name":"Christy Wintheiser","age":59,"location":"Cedar Hill"}},{"attributes":{"name":"Marcella Gerhold","age":40,"location":"Ankundingborough"}},{"attributes":{"name":"Helmer Walker","age":79,"location":"South Donna"}},{"attributes":{"name":"Colleen Bednar","age":30,"location":"Hacienda Heights"}},{"attributes":{"name":"Verna Waelchi-Beier","age":45,"location":"Koryhaven"}},{"attributes":{"name":"Dr. Earl Ernser","age":53,"location":"North Quinn"}},{"attributes":{"name":"Nelda Krajcik V","age":50,"location":"Littleton"}},{"attributes":{"name":"Norma Weber-Kovacek","age":63,"location":"Fort Joana"}},{"attributes":{"name":"Johnpaul Pouros","age":74,"location":"Busterside"}},{"attributes":{"name":"Guy Runte","age":54,"location":"Owensboro"}},{"attributes":{"name":"Tammy Shields Sr.","age":46,"location":"Fort Aurelioburgh"}},{"attributes":{"name":"Danielle Keeling","age":73,"location":"Tremblayland"}},{"attributes":{"name":"Estelle Toy","age":63,"location":"Bahringerborough"}},{"attributes":{"name":"Sharon Lind","age":39,"location":"Urbana"}},{"attributes":{"name":"Juan Kuphal","age":57,"location":"New Eugeneville"}},{"attributes":{"name":"Evan Gleichner","age":21,"location":"Bednarbury"}},{"attributes":{"name":"Loyal Dach","age":27,"location":"Boston"}},{"attributes":{"name":"Stanton Langworth","age":22,"location":"New Sammie"}},{"attributes":{"name":"Tad O'Kon","age":64,"location":"Trystanville"}},{"attributes":{"name":"Ruben Metz","age":28,"location":"North Shaun"}},{"attributes":{"name":"Alison Weissnat","age":74,"location":"Port Zack"}},{"attributes":{"name":"Enrico Kunze","age":51,"location":"Grand Island"}},{"attributes":{"name":"Angel Stanton","age":36,"location":"Gillianmouth"}},{"attributes":{"name":"Mr. Kieran Bradtke","age":30,"location":"Lake Francis"}},{"attributes":{"name":"Mr. Rex Baumbach","age":27,"location":"Elainafield"}},{"attributes":{"name":"Dr. Leland Hermiston","age":79,"location":"South Yessenia"}},{"attributes":{"name":"Morton Rosenbaum","age":34,"location":"Jordaneburgh"}},{"attributes":{"name":"Kaelyn Rohan","age":79,"location":"Lake Mariane"}},{"attributes":{"name":"Jeanne Kozey","age":52,"location":"Cranston"}},{"attributes":{"name":"Robin Bednar","age":76,"location":"Gardena"}},{"attributes":{"name":"Essie Reynolds","age":39,"location":"North Ezequielcester"}},{"attributes":{"name":"Misty Treutel","age":48,"location":"Rowland Heights"}},{"attributes":{"name":"Marvin Treutel","age":65,"location":"West Seneca"}},{"attributes":{"name":"Mrs. Shelly Stehr","age":40,"location":"Sioux Falls"}},{"attributes":{"name":"Moses Labadie","age":18,"location":"Hopefort"}},{"attributes":{"name":"Linnea Hoeger Jr.","age":47,"location":"South Savannah"}},{"attributes":{"name":"Benjamin Carroll","age":49,"location":"Kshlerinport"}},{"attributes":{"name":"Fredy Hudson","age":59,"location":"Wittingstad"}},{"attributes":{"name":"Joseph Kuphal","age":44,"location":"Karinaville"}},{"attributes":{"name":"Harriet Kirlin","age":60,"location":"Fort Nameboro"}},{"attributes":{"name":"Miss Kate Senger","age":37,"location":"Hilpertshire"}},{"attributes":{"name":"Bernice Deckow-Kulas","age":72,"location":"Homenickworth"}},{"attributes":{"name":"Oleta Price","age":56,"location":"Freeport"}},{"attributes":{"name":"Tasha Mosciski Jr.","age":18,"location":"Port Keeleyland"}},{"attributes":{"name":"Mitchell Howell","age":49,"location":"Smithamfurt"}},{"attributes":{"name":"Ms. Jean Bechtelar","age":68,"location":"East Leonardo"}},{"attributes":{"name":"Miss Kristy Corwin","age":53,"location":"West Vanceview"}},{"attributes":{"name":"Lila Brekke","age":76,"location":"South Judestead"}},{"attributes":{"name":"Clovis Ryan","age":78,"location":"Conroe"}},{"attributes":{"name":"Ryan Stiedemann Sr.","age":54,"location":"Lake Elizaville"}},{"attributes":{"name":"Lynne Upton","age":56,"location":"West Patrick"}},{"attributes":{"name":"Sheila Emmerich","age":60,"location":"North Kileyport"}},{"attributes":{"name":"Mariane Barton","age":44,"location":"East Walton"}},{"attributes":{"name":"Laverne Pacocha","age":77,"location":"North Della"}},{"attributes":{"name":"Krista West","age":61,"location":"Tracy"}},{"attributes":{"name":"Alfred Stiedemann","age":25,"location":"O'Fallon"}},{"attributes":{"name":"Amber Paucek IV","age":25,"location":"Haneview"}},{"attributes":{"name":"Lilyan Roberts MD","age":51,"location":"West Winifredville"}},{"attributes":{"name":"Dr. Makenzie Fay","age":24,"location":"Goodyear"}},{"attributes":{"name":"Dr. Geraldine Gusikowski","age":68,"location":"Katlynboro"}},{"attributes":{"name":"Ms. Lawrence Maggio","age":18,"location":"New Eribertofurt"}},{"attributes":{"name":"Hannah Beahan","age":78,"location":"Severn"}},{"attributes":{"name":"Ward Grady","age":50,"location":"Fort Clementineboro"}},{"attributes":{"name":"Dr. Katherine Funk","age":73,"location":"East Ewell"}},{"attributes":{"name":"Evan Gislason","age":63,"location":"Port Shanaview"}},{"attributes":{"name":"Dr. Santiago Waelchi","age":21,"location":"Lake Kirstenfort"}},{"attributes":{"name":"Darrell Sanford","age":48,"location":"West Myrtie"}},{"attributes":{"name":"Roberto Ferry","age":67,"location":"South Sebastianworth"}},{"attributes":{"name":"Joan Ledner","age":23,"location":"West Jessycaside"}},{"attributes":{"name":"Brent Wilderman","age":70,"location":"Lewbury"}},{"attributes":{"name":"Willy Wuckert MD","age":77,"location":"San Juan"}},{"attributes":{"name":"Grant Crist MD","age":28,"location":"Lake Braxtonboro"}},{"attributes":{"name":"Garrett Mann","age":72,"location":"South Mariane"}},{"attributes":{"name":"Oren Jaskolski V","age":47,"location":"Miramar"}},{"attributes":{"name":"Miss Joaquin Littel","age":21,"location":"Port Angelina"}},{"attributes":{"name":"Joey Jones","age":49,"location":"Coryfield"}},{"attributes":{"name":"Jim Leannon","age":41,"location":"West Larueport"}},{"attributes":{"name":"Betty Kemmer","age":66,"location":"South Aliyah"}},{"attributes":{"name":"Christopher Pfannerstill","age":20,"location":"Castle Rock"}},{"attributes":{"name":"Marisa Nolan","age":55,"location":"Fort Verla"}},{"attributes":{"name":"Tamara Weissnat","age":67,"location":"Starkberg"}},{"attributes":{"name":"Lance Hauck","age":31,"location":"Mesquite"}},{"attributes":{"name":"Sharon Osinski","age":40,"location":"Cassinshire"}},{"attributes":{"name":"Golda Nienow Jr.","age":77,"location":"Shoreline"}},{"attributes":{"name":"Mohammad Wunsch","age":60,"location":"Port Grayce"}},{"attributes":{"name":"Debra Considine","age":31,"location":"Winston-Salem"}},{"attributes":{"name":"Harriet O'Keefe","age":34,"location":"Bayamon"}},{"attributes":{"name":"Uriel Kub","age":37,"location":"North Allenhaven"}},{"attributes":{"name":"Wesley O'Conner","age":34,"location":"Torphyboro"}},{"attributes":{"name":"Flo Cassin II","age":38,"location":"Leonland"}},{"attributes":{"name":"Miss Nadine Cruickshank","age":59,"location":"Perryport"}},{"attributes":{"name":"Allison Renner","age":46,"location":"Hellerboro"}},{"attributes":{"name":"Heidi Graham","age":43,"location":"Rossiebury"}},{"attributes":{"name":"Terrell Pfeffer-Windler","age":78,"location":"Hayleeborough"}},{"attributes":{"name":"Brandon Purdy","age":22,"location":"Erdmanview"}},{"attributes":{"name":"Jeanie Fisher","age":42,"location":"Lavadafort"}},{"attributes":{"name":"Jazmyn Feeney","age":69,"location":"South Imelda"}},{"attributes":{"name":"Nelson Bosco","age":29,"location":"New Francisco"}},{"attributes":{"name":"Roman Gislason-Jerde","age":39,"location":"South Kellieworth"}},{"attributes":{"name":"Mr. Colleen Beahan PhD","age":44,"location":"Bechtelarfurt"}},{"attributes":{"name":"Samantha Parisian","age":66,"location":"Trompberg"}},{"attributes":{"name":"Jackie Lang","age":61,"location":"Magnoliaberg"}},{"attributes":{"name":"Sergio Abbott","age":24,"location":"East Dominique"}},{"attributes":{"name":"Dr. Bessie Howe Sr.","age":37,"location":"West Pete"}},{"attributes":{"name":"Garrick Padberg-Raynor V","age":18,"location":"East Lauriannefort"}},{"attributes":{"name":"Alan Beahan","age":77,"location":"Birdiehaven"}},{"attributes":{"name":"Marion Gleason","age":78,"location":"Port Juniortown"}},{"attributes":{"name":"Jalyn Hand","age":32,"location":"Javonside"}},{"attributes":{"name":"Jan O'Kon PhD","age":46,"location":"Palo Alto"}},{"attributes":{"name":"Darlene Gerhold","age":26,"location":"Port Regan"}},{"attributes":{"name":"Darryl Daniel","age":67,"location":"Cristmouth"}},{"attributes":{"name":"Freddie Mosciski","age":43,"location":"Fullerton"}},{"attributes":{"name":"Perry White","age":71,"location":"Lake Lorenz"}},{"attributes":{"name":"Rahul Walker","age":63,"location":"North Nat"}},{"attributes":{"name":"Samantha Gusikowski","age":75,"location":"Port Chanelleview"}},{"attributes":{"name":"Ulises Klein II","age":39,"location":"North Lottieberg"}},{"attributes":{"name":"Ted Torphy","age":18,"location":"Santa Fe"}},{"attributes":{"name":"Hank Hoeger","age":24,"location":"Gloverton"}},{"attributes":{"name":"Ms. Daniel O'Kon","age":72,"location":"Port Britneyside"}},{"attributes":{"name":"Israel Von DVM","age":79,"location":"New Nickolasshire"}},{"attributes":{"name":"Evalyn Legros","age":67,"location":"North Conor"}},{"attributes":{"name":"Reilly Muller","age":66,"location":"Citlallifield"}},{"attributes":{"name":"Sherri Johnson","age":50,"location":"Rylanberg"}},{"attributes":{"name":"Mrs. Brooke Murazik DDS","age":27,"location":"Lake Vivianneburgh"}},{"attributes":{"name":"Alison Murazik","age":60,"location":"Fort Winonaview"}},{"attributes":{"name":"Bobbie Schmidt","age":65,"location":"Fort Smith"}},{"attributes":{"name":"Dr. Allen Corwin","age":38,"location":"Fort Quinn"}},{"attributes":{"name":"Tess Armstrong","age":77,"location":"D'Amorebury"}},{"attributes":{"name":"Fernando Hodkiewicz","age":19,"location":"Axelfurt"}},{"attributes":{"name":"Lance Gerhold","age":57,"location":"Nicholeside"}},{"attributes":{"name":"Mack Macejkovic","age":34,"location":"Georgetown"}},{"attributes":{"name":"Raegan Daugherty","age":20,"location":"Ceceliaworth"}},{"attributes":{"name":"Alfonso Torp","age":79,"location":"Flower Mound"}},{"attributes":{"name":"Rolando Mosciski","age":37,"location":"Wuckertbury"}},{"attributes":{"name":"Sherri Treutel","age":54,"location":"Madalineton"}},{"attributes":{"name":"Nakia Robel","age":56,"location":"Largo"}},{"attributes":{"name":"Kayli Ondricka-Greenholt","age":29,"location":"Kerlukeshire"}},{"attributes":{"name":"Kirstin Rau Sr.","age":24,"location":"East Dollyport"}},{"attributes":{"name":"Vivian Williamson","age":80,"location":"Lake Ridge"}},{"attributes":{"name":"Marquis Hansen III","age":69,"location":"Brielleberg"}},{"attributes":{"name":"Troy Considine","age":49,"location":"East Veronicachester"}},{"attributes":{"name":"Cory Donnelly","age":75,"location":"West Novellacester"}},{"attributes":{"name":"Sammy Goyette","age":73,"location":"East Kimville"}},{"attributes":{"name":"Haylee Ziemann","age":63,"location":"South Willy"}},{"attributes":{"name":"Rudy Schamberger","age":45,"location":"Marysville"}},{"attributes":{"name":"Ada Trantow","age":32,"location":"Ozellaview"}},{"attributes":{"name":"Nicholas Gleichner","age":26,"location":"Jonasland"}},{"attributes":{"name":"Antone Cole","age":40,"location":"East Edna"}},{"attributes":{"name":"Genevieve Stark","age":62,"location":"East Jaden"}},{"attributes":{"name":"Leonie Kreiger DDS","age":28,"location":"El Cajon"}},{"attributes":{"name":"Ernesto Kshlerin","age":55,"location":"Lake Will"}},{"attributes":{"name":"Luis Wolf","age":20,"location":"Lavonboro"}},{"attributes":{"name":"Miss Bobbie Carter Jr.","age":30,"location":"North Rubie"}},{"attributes":{"name":"Tyler Paucek","age":31,"location":"North Karolanncester"}},{"attributes":{"name":"Betsy Rosenbaum","age":64,"location":"Danialhaven"}},{"attributes":{"name":"Monique Crooks","age":46,"location":"Khalilfield"}},{"attributes":{"name":"Domenica O'Conner","age":61,"location":"Louview"}},{"attributes":{"name":"Reed Schowalter","age":61,"location":"Reichertville"}},{"attributes":{"name":"Herbert Kub","age":27,"location":"Schusterstead"}},{"attributes":{"name":"Mrs. Letha Auer","age":39,"location":"East Providence"}},{"attributes":{"name":"Aileen Stanton","age":34,"location":"Lake Rosinaburgh"}},{"attributes":{"name":"Della Gusikowski","age":63,"location":"Mohrville"}},{"attributes":{"name":"Ethel Kunde MD","age":52,"location":"Nolancester"}},{"attributes":{"name":"Garnet Bergnaum","age":62,"location":"Arthaven"}},{"attributes":{"name":"Wayne Anderson","age":67,"location":"Fort Jerrod"}},{"attributes":{"name":"Grady Streich","age":31,"location":"Taylorsville"}},{"attributes":{"name":"Daryl Bosco","age":80,"location":"Joplin"}},{"attributes":{"name":"Miss Tony Price PhD","age":45,"location":"New Andre"}},{"attributes":{"name":"Naomi Bailey","age":22,"location":"Connerville"}},{"attributes":{"name":"Jacquelyn Stokes","age":66,"location":"North Jarod"}},{"attributes":{"name":"Emily Johns","age":49,"location":"Fort Willowton"}},{"attributes":{"name":"Anna Runolfsson","age":19,"location":"Heaneyside"}},{"attributes":{"name":"Douglas Hauck","age":59,"location":"North Gildaland"}},{"attributes":{"name":"Clark Block","age":41,"location":"Carolina"}},{"attributes":{"name":"Dr. Scarlett Muller","age":68,"location":"Edinburg"}},{"attributes":{"name":"Blake Ankunding","age":50,"location":"Rheafield"}},{"attributes":{"name":"Sigmund Steuber DVM","age":31,"location":"West Lambertside"}},{"attributes":{"name":"Monica Hauck","age":38,"location":"West Adalineberg"}},{"attributes":{"name":"Kattie Volkman","age":54,"location":"East Linnie"}},{"attributes":{"name":"Allison Brown","age":76,"location":"Citrus Heights"}},{"attributes":{"name":"Shawna Pollich","age":41,"location":"Jadaview"}},{"attributes":{"name":"Dr. Cullen Lemke","age":33,"location":"North Margaretteboro"}},{"attributes":{"name":"Terrence Borer","age":78,"location":"Port Elliott"}},{"attributes":{"name":"Andres Fahey","age":69,"location":"Flatleyview"}},{"attributes":{"name":"Ellen Kohler","age":24,"location":"Gorczanyside"}},{"attributes":{"name":"Dr. Isabella Brown","age":27,"location":"South Constance"}},{"attributes":{"name":"Mr. Phillip Hintz","age":60,"location":"North Sydnifurt"}},{"attributes":{"name":"Tony Mohr","age":48,"location":"Hendersonville"}},{"attributes":{"name":"Perry Hills","age":26,"location":"Fort Adolfo"}},{"attributes":{"name":"Philip Barton","age":77,"location":"South Karleyport"}},{"attributes":{"name":"June Hamill","age":38,"location":"East Reese"}},{"attributes":{"name":"Mr. Aaliyah Kub","age":52,"location":"Sawayntown"}},{"attributes":{"name":"Claude Medhurst","age":66,"location":"North Maximilian"}},{"attributes":{"name":"Suzanne Stanton","age":62,"location":"Sioux Falls"}},{"attributes":{"name":"Aisha Windler","age":50,"location":"Joliet"}},{"attributes":{"name":"Dr. Alvin McGlynn","age":64,"location":"Rochester Hills"}},{"attributes":{"name":"Donald Harber-West","age":59,"location":"Lake Enricoport"}},{"attributes":{"name":"Terrell Emmerich","age":30,"location":"Kirlinmouth"}},{"attributes":{"name":"Mr. Jill Hills-Lowe PhD","age":79,"location":"Sabrinaborough"}},{"attributes":{"name":"Jon Kuhlman","age":75,"location":"Rialto"}},{"attributes":{"name":"Tre Jones","age":60,"location":"Tremblayboro"}},{"attributes":{"name":"Jordan Torphy","age":73,"location":"Corkeryberg"}},{"attributes":{"name":"Dudley Pollich","age":65,"location":"Appleton"}},{"attributes":{"name":"Adrianna Lemke","age":63,"location":"Magaliview"}},{"attributes":{"name":"Madelynn Waters","age":22,"location":"Farrellport"}},{"attributes":{"name":"Dr. Vernon Gorczany","age":53,"location":"East Verdiefurt"}},{"attributes":{"name":"Tanya Lowe","age":21,"location":"Torphyfurt"}},{"attributes":{"name":"Micheal Larson","age":48,"location":"East Dellahaven"}},{"attributes":{"name":"Ernest Osinski","age":52,"location":"West Leopold"}},{"attributes":{"name":"Ofelia Mohr","age":21,"location":"North Elaina"}},{"attributes":{"name":"Stefanie Schultz","age":80,"location":"Lake Elroy"}},{"attributes":{"name":"Jennings Friesen","age":51,"location":"Gutmannborough"}},{"attributes":{"name":"Gilbert McLaughlin-Rohan","age":46,"location":"Littlechester"}},{"attributes":{"name":"Leslie Carroll","age":51,"location":"South Krystelton"}},{"attributes":{"name":"Miss Kendra Predovic","age":65,"location":"North Charityside"}},{"attributes":{"name":"Dr. Elena Bernier","age":23,"location":"West Nigel"}},{"attributes":{"name":"Roland Langworth","age":19,"location":"Lake Karinehaven"}},{"attributes":{"name":"Jerald Stark","age":52,"location":"Hanford"}},{"attributes":{"name":"Arnold Larson","age":27,"location":"Port Leannmouth"}},{"attributes":{"name":"Dr. Kenyatta Wisozk","age":42,"location":"Andresstead"}},{"attributes":{"name":"Kim Paucek","age":32,"location":"Kubton"}},{"attributes":{"name":"Hazle Kuvalis","age":42,"location":"Lake Margret"}},{"attributes":{"name":"Eulalia Larson","age":22,"location":"Little Rock"}},{"attributes":{"name":"Mable Bogisich IV","age":52,"location":"McGlynnchester"}},{"attributes":{"name":"Beatrice Schneider II","age":64,"location":"Haneside"}},{"attributes":{"name":"Eleazar Jast","age":33,"location":"Fayland"}},{"attributes":{"name":"Nedra Kreiger","age":37,"location":"Brentville"}},{"attributes":{"name":"Emily Prosacco","age":43,"location":"Lake Brian"}},{"attributes":{"name":"Ramona Bruen","age":74,"location":"East Brandyn"}},{"attributes":{"name":"Francisca Waters","age":54,"location":"New Americo"}},{"attributes":{"name":"Devin Carter II","age":63,"location":"West New York"}},{"attributes":{"name":"Nelson Mraz","age":29,"location":"West Reidport"}},{"attributes":{"name":"Essie Dickens DVM","age":30,"location":"Cletastead"}},{"attributes":{"name":"Everett Turcotte","age":43,"location":"Enoston"}},{"attributes":{"name":"Fredrick Volkman","age":57,"location":"Hackettberg"}},{"attributes":{"name":"Rae Altenwerth","age":55,"location":"Danbury"}},{"attributes":{"name":"Jacquelyn MacGyver","age":37,"location":"Tinley Park"}},{"attributes":{"name":"Meghan Wuckert","age":30,"location":"West Elsa"}},{"attributes":{"name":"Lawrence Cartwright","age":58,"location":"Youngstown"}},{"attributes":{"name":"Arthur Crist II","age":19,"location":"Carson"}},{"attributes":{"name":"Modesta O'Connell","age":22,"location":"West Marcellaburgh"}},{"attributes":{"name":"Tiffany Mraz","age":70,"location":"Wisozkview"}},{"attributes":{"name":"Patti Huel","age":69,"location":"Fort Nelda"}},{"attributes":{"name":"Haleigh Kuvalis IV","age":48,"location":"Wisozkstad"}},{"attributes":{"name":"Dorcas Mills","age":26,"location":"North Albert"}},{"attributes":{"name":"Dr. Chris Weissnat","age":68,"location":"West Greysonfield"}},{"attributes":{"name":"Dr. Bernice Schiller","age":51,"location":"West Mariamstead"}},{"attributes":{"name":"Woodrow Weissnat II","age":59,"location":"Fort Duncan"}},{"attributes":{"name":"Geoffrey Goodwin","age":65,"location":"East Elta"}},{"attributes":{"name":"Gwendolyn Dibbert","age":77,"location":"South Amaraside"}},{"attributes":{"name":"Chris Tremblay","age":37,"location":"East Natalia"}},{"attributes":{"name":"Marshall Dickens","age":21,"location":"West Alberthashire"}},{"attributes":{"name":"Madeline Olson","age":48,"location":"Reynoldstown"}},{"attributes":{"name":"Josephine Shields","age":54,"location":"Waltham"}},{"attributes":{"name":"Glenda Bergstrom","age":60,"location":"Kannapolis"}},{"attributes":{"name":"Randolph Haag","age":28,"location":"Port Murphy"}},{"attributes":{"name":"Ezekiel Shanahan","age":25,"location":"Lake Trinity"}},{"attributes":{"name":"Morris Marks","age":77,"location":"West Adalberto"}},{"attributes":{"name":"Christopher Schultz","age":72,"location":"Broomfield"}},{"attributes":{"name":"Emmy Pouros","age":60,"location":"Sandy"}},{"attributes":{"name":"Mr. Dawson Bosco","age":26,"location":"Tremblaycester"}},{"attributes":{"name":"Elbert Effertz","age":20,"location":"East Jaden"}},{"attributes":{"name":"Lia Russel","age":53,"location":"Rathcester"}},{"attributes":{"name":"Jeff Schumm","age":64,"location":"Greenholtstead"}},{"attributes":{"name":"Dr. Victor Smitham","age":32,"location":"Salina"}},{"attributes":{"name":"Adrienne Bednar","age":43,"location":"Joanburgh"}},{"attributes":{"name":"Johnpaul Wiegand","age":40,"location":"Port Freeda"}},{"attributes":{"name":"Dr. Austin Kautzer","age":77,"location":"South Salvador"}},{"attributes":{"name":"Nichole Ledner","age":59,"location":"West Pasqualeborough"}},{"attributes":{"name":"Laurel Tromp","age":64,"location":"Reno"}},{"attributes":{"name":"Lynda Littel I","age":29,"location":"Athens-Clarke County"}},{"attributes":{"name":"Sydnee Kunze","age":18,"location":"Faheystead"}},{"attributes":{"name":"Marshall Champlin V","age":53,"location":"Port Wilburntown"}},{"attributes":{"name":"Jillian Franey","age":23,"location":"Aliaborough"}},{"attributes":{"name":"Grant Bins V","age":48,"location":"Doylebury"}},{"attributes":{"name":"Miss Maureen Ortiz","age":58,"location":"Albany"}},{"attributes":{"name":"Karla Herzog","age":73,"location":"West Antone"}},{"attributes":{"name":"Tyler Cremin","age":21,"location":"South Mortonfield"}},{"attributes":{"name":"Julia Rau","age":57,"location":"New Elfriedastead"}},{"attributes":{"name":"Loren Jacobs-Franey","age":33,"location":"East Ricardo"}},{"attributes":{"name":"Dr. Cassandra Ritchie I","age":37,"location":"Fort Kenton"}},{"attributes":{"name":"Inez Ortiz","age":18,"location":"Georgianaport"}},{"attributes":{"name":"Penny Mueller","age":77,"location":"Stamford"}},{"attributes":{"name":"Lynn Bernier PhD","age":50,"location":"West Alexandrine"}},{"attributes":{"name":"Ms. Kerry Flatley","age":64,"location":"Maximilliastead"}},{"attributes":{"name":"Darren Kuhn","age":52,"location":"Justinastead"}},{"attributes":{"name":"Keith Reichel","age":20,"location":"Boehmborough"}},{"attributes":{"name":"Leland Barton","age":47,"location":"Owensboro"}},{"attributes":{"name":"Arlene Corwin DVM","age":43,"location":"Alejandrinfield"}},{"attributes":{"name":"Kristine Wehner Jr.","age":70,"location":"West Joannie"}},{"attributes":{"name":"Tina Wilkinson","age":51,"location":"York"}},{"attributes":{"name":"Ella Smith","age":38,"location":"Fort Lauderdale"}},{"attributes":{"name":"Elsa Schumm","age":42,"location":"South Daytonfield"}},{"attributes":{"name":"Judith Rogahn I","age":38,"location":"Bergstromcester"}},{"attributes":{"name":"Melissa Altenwerth","age":21,"location":"North Jaden"}},{"attributes":{"name":"Angelica Medhurst","age":19,"location":"Rueckerview"}},{"attributes":{"name":"Jalon Koepp","age":56,"location":"Waterbury"}},{"attributes":{"name":"Rosalinda Zieme","age":42,"location":"Hipolitofurt"}},{"attributes":{"name":"Tina Quitzon IV","age":36,"location":"Lake Estevanmouth"}},{"attributes":{"name":"Brandi Heller","age":54,"location":"North Jacquelynchester"}},{"attributes":{"name":"Rodolfo Hettinger","age":35,"location":"West Monroe"}},{"attributes":{"name":"Chelsea Waelchi","age":61,"location":"Fort Lorenzaside"}},{"attributes":{"name":"Mrs. Moriah Cassin-Gerlach","age":33,"location":"Lake Samarafield"}},{"attributes":{"name":"Maudie Haag III","age":64,"location":"New Valentineland"}},{"attributes":{"name":"Llewellyn Lowe","age":52,"location":"Dallas"}},{"attributes":{"name":"Verla Hermiston","age":60,"location":"Augustusborough"}},{"attributes":{"name":"Brandon Thompson","age":71,"location":"Champlinboro"}},{"attributes":{"name":"Arne Windler IV","age":35,"location":"Casper"}},{"attributes":{"name":"Guillermo Mertz","age":33,"location":"Pueblo"}},{"attributes":{"name":"Melody Daugherty","age":31,"location":"Lake Neldacester"}},{"attributes":{"name":"Floyd Cummerata","age":65,"location":"Balistreriberg"}},{"attributes":{"name":"Stacey Parker","age":39,"location":"East Abbigailside"}},{"attributes":{"name":"Caleb Harris","age":59,"location":"New Genevieveburgh"}},{"attributes":{"name":"Alexys D'Amore","age":78,"location":"Oranchester"}},{"attributes":{"name":"Isabel Boehm","age":75,"location":"Clareborough"}},{"attributes":{"name":"Davon Russel","age":19,"location":"Fort Elinortown"}},{"attributes":{"name":"Cleora Emard","age":79,"location":"New Royce"}},{"attributes":{"name":"Joshua Daugherty","age":73,"location":"Lake Mitchell"}},{"attributes":{"name":"Bradley Bashirian Jr.","age":31,"location":"Austin"}},{"attributes":{"name":"Laverne Little","age":18,"location":"Deannashire"}},{"attributes":{"name":"Harold White","age":66,"location":"Rowlett"}},{"attributes":{"name":"Mrs. Janis Cronin","age":78,"location":"Bedford"}},{"attributes":{"name":"Teri Kautzer DVM","age":24,"location":"Lake Harmon"}},{"attributes":{"name":"Samantha Bernier","age":71,"location":"North Caterinaport"}},{"attributes":{"name":"Gudrun Marquardt","age":22,"location":"New Jermey"}},{"attributes":{"name":"Webster Bogan","age":23,"location":"Bahringerfort"}},{"attributes":{"name":"Ethelyn Heathcote","age":55,"location":"Port Tiffanyport"}},{"attributes":{"name":"Shannon Ondricka-Rau","age":50,"location":"Kaileecester"}},{"attributes":{"name":"Josephine Stiedemann","age":75,"location":"Bowie"}},{"attributes":{"name":"Desiree Friesen","age":61,"location":"Port Gordon"}},{"attributes":{"name":"Bertha Glover","age":66,"location":"Wallacestad"}},{"attributes":{"name":"Skye Cummerata","age":59,"location":"South Halleport"}},{"attributes":{"name":"Arnulfo White","age":71,"location":"Fort Dulcetown"}},{"attributes":{"name":"Joyce Harber","age":41,"location":"Fort Providencistead"}},{"attributes":{"name":"Buford Gleichner Sr.","age":37,"location":"Blaine"}},{"attributes":{"name":"Tomas Waelchi Jr.","age":64,"location":"New Kevinville"}},{"attributes":{"name":"Berneice Larkin","age":19,"location":"Beaverton"}},{"attributes":{"name":"Nyasia Walker-Goyette","age":25,"location":"West Pinkboro"}},{"attributes":{"name":"Abbigail Heller","age":37,"location":"Tiaview"}},{"attributes":{"name":"Adelia Johnston","age":57,"location":"Port Obie"}},{"attributes":{"name":"Carlos Feeney","age":75,"location":"East Bernadine"}},{"attributes":{"name":"Delfina Lehner","age":80,"location":"East Noreneton"}},{"attributes":{"name":"Duane Dickinson","age":33,"location":"West Seneca"}},{"attributes":{"name":"Louvenia Smith","age":62,"location":"Myrtismouth"}},{"attributes":{"name":"Ben Schuster","age":37,"location":"Youngstown"}},{"attributes":{"name":"Ruby Cummings","age":21,"location":"Homenickfield"}},{"attributes":{"name":"Jolie McCullough","age":58,"location":"Hermistonfurt"}},{"attributes":{"name":"Marian Boehm","age":39,"location":"Coconut Creek"}},{"attributes":{"name":"August Padberg","age":68,"location":"East Kyler"}},{"attributes":{"name":"Dr. Hollis Howe","age":60,"location":"Lee's Summit"}},{"attributes":{"name":"Mike Heaney","age":18,"location":"Lorenzochester"}},{"attributes":{"name":"Miss Darryl Harber","age":78,"location":"Catalinatown"}},{"attributes":{"name":"Demario Langworth","age":48,"location":"Collierton"}},{"attributes":{"name":"Lina Bergnaum","age":23,"location":"Gaithersburg"}},{"attributes":{"name":"Rigoberto Jacobs","age":70,"location":"Mesa"}},{"attributes":{"name":"Jane Heathcote","age":40,"location":"Port Claraton"}},{"attributes":{"name":"Eddie Considine","age":32,"location":"Montebello"}},{"attributes":{"name":"Trent Medhurst","age":47,"location":"South Elainaworth"}},{"attributes":{"name":"Hermann Hane","age":51,"location":"North Cullenburgh"}},{"attributes":{"name":"Micheal Lemke","age":80,"location":"Fort Leonormouth"}},{"attributes":{"name":"Dr. Blake Hermann","age":29,"location":"Hellerworth"}},{"attributes":{"name":"Darrell Kessler","age":46,"location":"West Norberthaven"}},{"attributes":{"name":"Angie Mitchell","age":67,"location":"Constanceshire"}},{"attributes":{"name":"Dr. Aileen Fisher","age":60,"location":"Casa Grande"}},{"attributes":{"name":"Ralph Ratke","age":41,"location":"Lake Rorycester"}},{"attributes":{"name":"Angelina McKenzie","age":58,"location":"Cedar Park"}},{"attributes":{"name":"Hayley McClure-Jacobson MD","age":26,"location":"Kylerworth"}},{"attributes":{"name":"Dr. Jaqueline Hickle","age":33,"location":"North Miami Beach"}},{"attributes":{"name":"Maude Walker IV","age":55,"location":"Port Jacyntheland"}},{"attributes":{"name":"Rahsaan Kuphal","age":22,"location":"North Masonland"}},{"attributes":{"name":"Sonia Ferry","age":63,"location":"Gilbert"}},{"attributes":{"name":"Boyd Schultz","age":78,"location":"North Alvertahaven"}},{"attributes":{"name":"Hugh Hudson","age":37,"location":"Myriamstead"}},{"attributes":{"name":"Toby Keebler","age":71,"location":"Midwest City"}},{"attributes":{"name":"Gertrude Marks","age":21,"location":"West Lynnworth"}},{"attributes":{"name":"Aniya Tremblay","age":35,"location":"Hoegershire"}},{"attributes":{"name":"Candice Satterfield III","age":52,"location":"South Layne"}},{"attributes":{"name":"Gregg Bartoletti","age":61,"location":"Hellerport"}},{"attributes":{"name":"Julius Wiza","age":41,"location":"Salliebury"}},{"attributes":{"name":"Stephanie Hintz-Reinger","age":48,"location":"Meganeton"}},{"attributes":{"name":"Mrs. Guillermo Jacobson","age":51,"location":"Kaciebury"}},{"attributes":{"name":"Mrs. Felicia Harvey","age":46,"location":"New Kiannahaven"}},{"attributes":{"name":"Genoveva Hodkiewicz Sr.","age":60,"location":"Cassinhaven"}},{"attributes":{"name":"Joy Parisian","age":67,"location":"Nedmouth"}},{"attributes":{"name":"Jerry Champlin","age":61,"location":"Warwick"}},{"attributes":{"name":"Osbaldo Powlowski","age":59,"location":"Volkmanburgh"}},{"attributes":{"name":"Scot Parisian","age":78,"location":"Raynorview"}},{"attributes":{"name":"Jeannie Kessler","age":74,"location":"West Malindachester"}},{"attributes":{"name":"Joseph Raynor","age":74,"location":"Kubstead"}},{"attributes":{"name":"Woodrow Johnson","age":39,"location":"Fort Michale"}},{"attributes":{"name":"Gerald Bernhard","age":47,"location":"West Aditya"}},{"attributes":{"name":"Jimmie Rolfson-Nolan PhD","age":50,"location":"Alafaya"}},{"attributes":{"name":"Bryan Crooks MD","age":43,"location":"Fort Jaime"}},{"attributes":{"name":"Irving Hermiston","age":33,"location":"Lake Breana"}},{"attributes":{"name":"Lauretta Oberbrunner","age":29,"location":"New Hugh"}},{"attributes":{"name":"Donald Wiegand","age":39,"location":"South Gabrielton"}},{"attributes":{"name":"Adam Bergstrom","age":78,"location":"East Isommouth"}},{"attributes":{"name":"Marlene Barton","age":74,"location":"Murazikfort"}},{"attributes":{"name":"Anthony Welch","age":26,"location":"Schultzview"}},{"attributes":{"name":"Mercedes Pfeffer","age":35,"location":"Terrenceside"}},{"attributes":{"name":"Ivory Kautzer","age":34,"location":"Norbertchester"}},{"attributes":{"name":"Gilberto Schoen","age":74,"location":"Reichertchester"}},{"attributes":{"name":"Darron Pouros","age":26,"location":"Orange"}},{"attributes":{"name":"Sandra Bosco","age":46,"location":"Weissnatworth"}},{"attributes":{"name":"Joy Rohan","age":75,"location":"Jacobsworth"}},{"attributes":{"name":"Elenor Larson","age":41,"location":"Port Walker"}},{"attributes":{"name":"Courtney Hauck","age":23,"location":"Kulasfurt"}},{"attributes":{"name":"Dr. Meredith Lind","age":64,"location":"Maymieville"}},{"attributes":{"name":"Georgia Reilly","age":22,"location":"Wizafort"}},{"attributes":{"name":"Miss Destany Walsh","age":26,"location":"Reedshire"}},{"attributes":{"name":"Paula Baumbach-Bauch","age":25,"location":"Huntington"}},{"attributes":{"name":"Stephanie Osinski","age":44,"location":"Fort Lauderdale"}},{"attributes":{"name":"Orlando Walker","age":23,"location":"North Della"}},{"attributes":{"name":"Mr. Kerry Goodwin","age":26,"location":"Fort Scotshire"}},{"attributes":{"name":"Giovani Fritsch","age":60,"location":"Fayworth"}},{"attributes":{"name":"Ms. Kelli Brakus V","age":29,"location":"New Stephenboro"}},{"attributes":{"name":"Perry Hettinger","age":55,"location":"Noelboro"}},{"attributes":{"name":"Nicholaus Walker","age":65,"location":"Elwintown"}},{"attributes":{"name":"Glen Romaguera","age":18,"location":"West Marysechester"}},{"attributes":{"name":"Winston Mueller","age":54,"location":"Utica"}},{"attributes":{"name":"Charlotte Schuppe","age":72,"location":"O'Fallon"}},{"attributes":{"name":"Patti Christiansen","age":35,"location":"Melvinmouth"}},{"attributes":{"name":"Orville Nicolas","age":49,"location":"Port Brooks"}},{"attributes":{"name":"Roland Schmitt","age":46,"location":"Alexandria"}},{"attributes":{"name":"Ms. Sherri Bayer","age":21,"location":"Fishermouth"}},{"attributes":{"name":"Damaris Homenick","age":27,"location":"Reichertland"}},{"attributes":{"name":"Mrs. Sonja Cummings","age":21,"location":"Huntershire"}},{"attributes":{"name":"Katelyn Ryan","age":70,"location":"New Stanfordbury"}},{"attributes":{"name":"Laurence Mills","age":38,"location":"Elwynbury"}},{"attributes":{"name":"Peggy Fisher","age":35,"location":"Louieside"}},{"attributes":{"name":"Gina Ritchie","age":71,"location":"Erwinland"}},{"attributes":{"name":"Angela Harris","age":24,"location":"South Zoeyberg"}},{"attributes":{"name":"Jennie Waelchi","age":68,"location":"Waldorf"}},{"attributes":{"name":"Zoey Ankunding","age":30,"location":"O'Connerstead"}},{"attributes":{"name":"Ms. Maeve Ledner","age":69,"location":"Sugar Land"}},{"attributes":{"name":"Stephanie Hickle","age":27,"location":"West Verlieport"}},{"attributes":{"name":"Miss Jaiden Torphy","age":50,"location":"Stanfordtown"}},{"attributes":{"name":"Shirley Dickinson","age":44,"location":"Port Harrison"}},{"attributes":{"name":"Roland Funk","age":77,"location":"Hudsonbury"}},{"attributes":{"name":"Torrance Beahan","age":72,"location":"West Madeline"}},{"attributes":{"name":"Alverta Schmidt","age":60,"location":"Chula Vista"}},{"attributes":{"name":"Juanita Hilpert","age":58,"location":"Erie"}},{"attributes":{"name":"Samir Tremblay III","age":44,"location":"Naomichester"}},{"attributes":{"name":"Darryl Krajcik","age":25,"location":"Lanceburgh"}},{"attributes":{"name":"Alicia Cremin","age":46,"location":"West Jeromeshire"}},{"attributes":{"name":"Darrin Smitham","age":62,"location":"Denesikstead"}},{"attributes":{"name":"Nicolas Tromp","age":35,"location":"Chino Hills"}},{"attributes":{"name":"Savannah Rempel","age":47,"location":"Armstrongview"}},{"attributes":{"name":"Burnice Mosciski","age":26,"location":"Louveniafield"}},{"attributes":{"name":"Adaline Hackett","age":18,"location":"Fort Kara"}},{"attributes":{"name":"Kristi Boehm","age":56,"location":"Port Watsonworth"}},{"attributes":{"name":"Jamie Marquardt PhD","age":80,"location":"Daly City"}},{"attributes":{"name":"Elaine Gulgowski","age":60,"location":"Handstead"}},{"attributes":{"name":"Leah Wolf","age":56,"location":"New Arlie"}},{"attributes":{"name":"Dr. Chelsey Johnson","age":19,"location":"Eden Prairie"}},{"attributes":{"name":"Norwood Cassin","age":22,"location":"West Cassandrafield"}},{"attributes":{"name":"Cesar Hodkiewicz","age":42,"location":"Mohrhaven"}},{"attributes":{"name":"Marilyn Considine","age":38,"location":"New Kathlynside"}},{"attributes":{"name":"Joanne Bode","age":34,"location":"McGlynnshire"}},{"attributes":{"name":"Misty Nader","age":28,"location":"Fort Florencestead"}},{"attributes":{"name":"Mrs. Brook Herman","age":31,"location":"South Francisport"}},{"attributes":{"name":"Marlee Corwin","age":42,"location":"Fort Kylershire"}},{"attributes":{"name":"Miss Ana Dicki III","age":44,"location":"East Honolulu"}},{"attributes":{"name":"Dr. Kelton Spencer","age":56,"location":"Santa Clarita"}},{"attributes":{"name":"Ben Waelchi V","age":50,"location":"McKenziefield"}},{"attributes":{"name":"Abbey Grimes","age":66,"location":"Richmond"}},{"attributes":{"name":"Mrs. Leola Dibbert IV","age":30,"location":"South Devan"}},{"attributes":{"name":"Sonny Herzog","age":39,"location":"Honolulu"}},{"attributes":{"name":"Lori Hoppe DDS","age":71,"location":"Alverahaven"}},{"attributes":{"name":"Bernice Bayer","age":19,"location":"Willmscester"}},{"attributes":{"name":"Gwendolyn Baumbach","age":30,"location":"Gerlachstead"}},{"attributes":{"name":"Nikki Krajcik","age":33,"location":"West Kirsten"}},{"attributes":{"name":"Claire Bartoletti","age":64,"location":"Waco"}},{"attributes":{"name":"Madonna Pollich","age":52,"location":"Kimberlyberg"}},{"attributes":{"name":"Krista Balistreri-Harber","age":24,"location":"Port Erwinboro"}},{"attributes":{"name":"Jessica Wehner","age":64,"location":"West Kellen"}},{"attributes":{"name":"Micheal Treutel","age":56,"location":"Lompoc"}},{"attributes":{"name":"Kenton Swaniawski","age":72,"location":"Lake Libbie"}},{"attributes":{"name":"Benjamin Johns","age":74,"location":"Hildastad"}},{"attributes":{"name":"Athena Greenholt","age":69,"location":"South Roselynshire"}},{"attributes":{"name":"Robin Stark","age":56,"location":"Fort Kristianfort"}},{"attributes":{"name":"Susana Lowe","age":35,"location":"Fort Antoinette"}},{"attributes":{"name":"Domenico Gleason PhD","age":66,"location":"Port Sven"}},{"attributes":{"name":"Mrs. Daisy Feest I","age":26,"location":"Sarahtown"}},{"attributes":{"name":"Wilbur Cummerata","age":33,"location":"Wainoberg"}},{"attributes":{"name":"Wade McClure","age":50,"location":"Alyshaton"}},{"attributes":{"name":"Magali Mosciski","age":44,"location":"West Guadalupeside"}},{"attributes":{"name":"Ryan Sporer","age":21,"location":"Fort Delilahburgh"}},{"attributes":{"name":"Sam Howe","age":44,"location":"Morgan Hill"}},{"attributes":{"name":"Kim Harber","age":50,"location":"Euless"}},{"attributes":{"name":"Dr. Claudia McLaughlin","age":70,"location":"Watsonville"}},{"attributes":{"name":"Parker Kub DVM","age":48,"location":"Marquisstad"}},{"attributes":{"name":"Rosie O'Hara","age":25,"location":"Rafaelaview"}},{"attributes":{"name":"Mr. Rodolfo Wilderman","age":61,"location":"North Emma"}},{"attributes":{"name":"Everett Roberts MD","age":52,"location":"Mayercester"}},{"attributes":{"name":"Melany Reinger","age":57,"location":"Harrisside"}},{"attributes":{"name":"Salma Harvey","age":33,"location":"Escondido"}},{"attributes":{"name":"Joel Pacocha","age":27,"location":"Roseville"}},{"attributes":{"name":"Mr. Mckayla Bradtke","age":77,"location":"Orlando"}},{"attributes":{"name":"Dr. Sigurd Mueller","age":40,"location":"New Virgiebury"}},{"attributes":{"name":"Carlo McDermott","age":61,"location":"Anchorage"}},{"attributes":{"name":"Kristopher Johnston MD","age":73,"location":"New Ellistown"}},{"attributes":{"name":"Dr. Rahul Shields","age":39,"location":"Minervaburgh"}},{"attributes":{"name":"Miss Chris Rutherford","age":49,"location":"Horacechester"}},{"attributes":{"name":"Quinn West II","age":23,"location":"Lorenzaview"}},{"attributes":{"name":"Daniel Lind","age":71,"location":"Emmerichstad"}},{"attributes":{"name":"Hubert Trantow","age":52,"location":"Gerlachshire"}},{"attributes":{"name":"Tami Harvey","age":37,"location":"Izabellastead"}},{"attributes":{"name":"Clara Wilkinson","age":71,"location":"Hillsboro"}},{"attributes":{"name":"Scotty King","age":54,"location":"Pricefield"}},{"attributes":{"name":"Elvira Schmeler","age":44,"location":"Port Rileyville"}},{"attributes":{"name":"Emilio Jakubowski","age":52,"location":"O'Connellton"}},{"attributes":{"name":"Seth Greenholt","age":65,"location":"North Abbigailfort"}},{"attributes":{"name":"Jeff Schmitt","age":25,"location":"East Linnie"}},{"attributes":{"name":"Ismael Carter","age":37,"location":"West Seneca"}},{"attributes":{"name":"Dominic McDermott","age":47,"location":"Glenniefurt"}},{"attributes":{"name":"Cynthia Bergnaum","age":71,"location":"North Hoytfurt"}},{"attributes":{"name":"Latoya Brakus-Lynch","age":72,"location":"Fort Koby"}},{"attributes":{"name":"Pearl Lueilwitz","age":40,"location":"Lake Marcos"}},{"attributes":{"name":"Keeley Schimmel","age":69,"location":"Fort Amina"}},{"attributes":{"name":"Billy Bergnaum","age":41,"location":"Fort Graysonshire"}},{"attributes":{"name":"Pamela Corkery","age":25,"location":"Dedrickshire"}},{"attributes":{"name":"Martin Cassin","age":24,"location":"Keeblerhaven"}},{"attributes":{"name":"Erling Ferry","age":64,"location":"Braunton"}},{"attributes":{"name":"Mr. Ambrose Bartell","age":73,"location":"Grand Junction"}},{"attributes":{"name":"Billy Mayer","age":23,"location":"Miami"}},{"attributes":{"name":"Timothy Balistreri Jr.","age":32,"location":"Eldonland"}},{"attributes":{"name":"Isabel Graham","age":60,"location":"West Leta"}},{"attributes":{"name":"Cornelius DuBuque","age":19,"location":"South Kacieton"}},{"attributes":{"name":"Claire Mitchell Jr.","age":42,"location":"Amarifurt"}},{"attributes":{"name":"Marjorie Prohaska","age":49,"location":"Murphycester"}},{"attributes":{"name":"Eunice Bradtke","age":43,"location":"St. Clair Shores"}},{"attributes":{"name":"Lauriane Marks Sr.","age":62,"location":"Lombard"}},{"attributes":{"name":"Ricardo Morar","age":54,"location":"North Lue"}},{"attributes":{"name":"Kaitlyn Wyman","age":49,"location":"Gradyborough"}},{"attributes":{"name":"Etha Cruickshank II","age":56,"location":"Merleview"}},{"attributes":{"name":"Kari Stanton Jr.","age":38,"location":"Rosiefurt"}},{"attributes":{"name":"Mr. Jolie Lesch","age":48,"location":"South Angelinehaven"}},{"attributes":{"name":"Kelly McLaughlin","age":23,"location":"Homenickcester"}},{"attributes":{"name":"Bernard Rempel","age":21,"location":"Olsonmouth"}},{"attributes":{"name":"Garrett Witting","age":32,"location":"Miami Gardens"}},{"attributes":{"name":"Ms. River Harber","age":76,"location":"Lake Cadechester"}},{"attributes":{"name":"Mack Schumm","age":48,"location":"Agustinastad"}},{"attributes":{"name":"Hugh Bartell","age":50,"location":"Coeur d'Alene"}},{"attributes":{"name":"Conner Daugherty","age":77,"location":"Shanonworth"}},{"attributes":{"name":"Angelica Hoppe","age":21,"location":"Cordeliashire"}},{"attributes":{"name":"Frank Hartmann","age":61,"location":"Carolview"}},{"attributes":{"name":"Jeanette Dicki Jr.","age":65,"location":"Haleyfurt"}},{"attributes":{"name":"Leslie Schimmel","age":30,"location":"Schambergerhaven"}},{"attributes":{"name":"Ginger Brekke IV","age":60,"location":"South Ronaldoworth"}},{"attributes":{"name":"Kenny Balistreri","age":59,"location":"Schmidtview"}},{"attributes":{"name":"Marianne Bergstrom","age":65,"location":"Jakubowskibury"}},{"attributes":{"name":"Lynn Leuschke","age":68,"location":"St. George"}},{"attributes":{"name":"Ms. Joe Flatley","age":18,"location":"Hermannville"}},{"attributes":{"name":"Joshua Leuschke","age":28,"location":"East Erik"}},{"attributes":{"name":"Josefina Gorczany","age":41,"location":"Santee"}},{"attributes":{"name":"Desiree Green Jr.","age":55,"location":"Maricopa"}},{"attributes":{"name":"Courtney Champlin DVM","age":60,"location":"Fadelberg"}},{"attributes":{"name":"Aylin Mills","age":60,"location":"Lake Alekshire"}},{"attributes":{"name":"Gertrude Huel","age":33,"location":"Perth Amboy"}},{"attributes":{"name":"Jill Leuschke","age":30,"location":"New Lisamouth"}},{"attributes":{"name":"Seamus Romaguera","age":80,"location":"New Mohamed"}},{"attributes":{"name":"Ms. Mossie Schiller I","age":66,"location":"Edythehaven"}},{"attributes":{"name":"Ms. Courtney Wisozk","age":38,"location":"East Lansing"}},{"attributes":{"name":"Edna Orn","age":73,"location":"South Clare"}},{"attributes":{"name":"Gracie Hayes","age":22,"location":"Port Vitaside"}},{"attributes":{"name":"Lee Morissette","age":23,"location":"Rock Hill"}},{"attributes":{"name":"Brad Carroll PhD","age":70,"location":"Melyssaport"}},{"attributes":{"name":"Kurt Wuckert","age":28,"location":"South Karlie"}},{"attributes":{"name":"Muriel Hahn","age":30,"location":"Cassidyhaven"}},{"attributes":{"name":"Evan Rolfson","age":34,"location":"Port Carlos"}},{"attributes":{"name":"Hattie Block","age":31,"location":"San Antonio"}},{"attributes":{"name":"Roy Roberts","age":70,"location":"Goyettechester"}},{"attributes":{"name":"Lucas Halvorson","age":39,"location":"Cleveland"}},{"attributes":{"name":"Royal Rodriguez","age":45,"location":"Einohaven"}},{"attributes":{"name":"Jeffrey Koss","age":62,"location":"Austenton"}},{"attributes":{"name":"Erling Sipes","age":66,"location":"South Joseville"}},{"attributes":{"name":"Susan Rolfson","age":49,"location":"East Milan"}},{"attributes":{"name":"Pearl Purdy","age":75,"location":"Waipahu"}},{"attributes":{"name":"Celia Johnson Jr.","age":18,"location":"South Juliannetown"}},{"attributes":{"name":"Brooks Kiehn","age":18,"location":"South Ardellashire"}},{"attributes":{"name":"Janie Will","age":45,"location":"Port Kianton"}},{"attributes":{"name":"Lloyd Pfannerstill","age":74,"location":"Kertzmanncester"}},{"attributes":{"name":"Myrtie Kuphal","age":61,"location":"Normafield"}},{"attributes":{"name":"Susanna Satterfield","age":76,"location":"Murphyfort"}},{"attributes":{"name":"Armando Turner","age":60,"location":"Aurora"}},{"attributes":{"name":"Montana Bogisich","age":78,"location":"South John"}},{"attributes":{"name":"Dr. Samuel Kutch","age":68,"location":"West Stefanberg"}},{"attributes":{"name":"Giovanna Howell","age":19,"location":"Samanthashire"}},{"attributes":{"name":"Adrianna Prosacco","age":69,"location":"Hicklebury"}},{"attributes":{"name":"Jamaal Block","age":46,"location":"Lebsackfort"}},{"attributes":{"name":"Dawn Hahn","age":78,"location":"Houston"}},{"attributes":{"name":"Jeremy Durgan","age":70,"location":"Lake Chadd"}},{"attributes":{"name":"Neva Boyle","age":31,"location":"West Traceland"}},{"attributes":{"name":"Glenda Schuppe","age":70,"location":"Knoxville"}},{"attributes":{"name":"Ellis Bednar","age":38,"location":"Fort Maximeville"}},{"attributes":{"name":"Grace Larson","age":26,"location":"Baltimore"}},{"attributes":{"name":"Adrain McLaughlin IV","age":37,"location":"Davenport"}},{"attributes":{"name":"Wilma Beer","age":66,"location":"Magalifurt"}},{"attributes":{"name":"Elias Hammes","age":47,"location":"Adellville"}},{"attributes":{"name":"Dr. Meghan Von Sr.","age":77,"location":"Tadchester"}},{"attributes":{"name":"Manuel Boehm","age":76,"location":"Ebertfield"}},{"attributes":{"name":"Joey Koepp","age":23,"location":"New Britain"}},{"attributes":{"name":"Golden Hilll","age":59,"location":"Port Bertramcester"}},{"attributes":{"name":"Eveline Marquardt","age":35,"location":"Fort Kaydenland"}},{"attributes":{"name":"Lynn Marquardt","age":35,"location":"Port Allyport"}},{"attributes":{"name":"Taylor Graham","age":67,"location":"Chanellefort"}},{"attributes":{"name":"Tonya Hamill","age":40,"location":"Faytown"}},{"attributes":{"name":"Frieda Deckow Sr.","age":52,"location":"West Efrenborough"}},{"attributes":{"name":"Rhianna Davis","age":38,"location":"Roobshire"}},{"attributes":{"name":"Benedict Ruecker","age":73,"location":"Lake Marina"}},{"attributes":{"name":"Tamara Boehm","age":41,"location":"Castle Rock"}},{"attributes":{"name":"Tom Wunsch","age":67,"location":"Greenfeldermouth"}},{"attributes":{"name":"Arnoldo Beahan II","age":26,"location":"East Friedrich"}},{"attributes":{"name":"Sam Murphy","age":46,"location":"New Delpha"}},{"attributes":{"name":"Glenn Schimmel","age":26,"location":"Codyside"}},{"attributes":{"name":"Lynn Pfeffer","age":60,"location":"Abbottshire"}},{"attributes":{"name":"Woodrow Frami","age":35,"location":"Evanborough"}},{"attributes":{"name":"Arvilla Rath","age":30,"location":"Glendora"}},{"attributes":{"name":"Beth Mayert","age":79,"location":"Lake Jerelchester"}},{"attributes":{"name":"Mrs. Delores Murray","age":37,"location":"Fort Malcolm"}},{"attributes":{"name":"Gertrude Ebert","age":79,"location":"Osinskiland"}},{"attributes":{"name":"Geneva Wolf","age":80,"location":"Gulgowskistad"}},{"attributes":{"name":"Godfrey Kertzmann","age":22,"location":"Fort Ruthie"}},{"attributes":{"name":"Raquel Stracke","age":65,"location":"Lynwood"}},{"attributes":{"name":"Stevie Nolan","age":23,"location":"Tacoma"}},{"attributes":{"name":"Amber Osinski","age":35,"location":"Elroyberg"}},{"attributes":{"name":"Terrence Johnston-Maggio MD","age":48,"location":"East Jevonboro"}},{"attributes":{"name":"Lola Murphy-Cummerata","age":76,"location":"Dubuque"}},{"attributes":{"name":"Mattie Hammes I","age":73,"location":"Fort Creolaboro"}},{"attributes":{"name":"Oda Breitenberg","age":37,"location":"Hansenfield"}},{"attributes":{"name":"Mr. Roberto Hammes PhD","age":57,"location":"Memphis"}},{"attributes":{"name":"Domenick Raynor","age":19,"location":"New Ezracester"}},{"attributes":{"name":"Marta Spinka","age":57,"location":"Bartside"}},{"attributes":{"name":"Connie Prosacco","age":55,"location":"New Dameonstad"}},{"attributes":{"name":"Lillian Maggio","age":36,"location":"Howeburgh"}},{"attributes":{"name":"Candice Dickinson","age":21,"location":"East Izaiah"}},{"attributes":{"name":"Mrs. Charity Schaefer","age":24,"location":"Lake Evelynland"}},{"attributes":{"name":"Cleta Schmidt","age":42,"location":"West Palm Beach"}},{"attributes":{"name":"Gerry Labadie","age":72,"location":"West Jaimestad"}},{"attributes":{"name":"Adan Pollich DDS","age":21,"location":"South Darren"}},{"attributes":{"name":"Ms. Nathanael Ryan","age":57,"location":"East Norwoodboro"}},{"attributes":{"name":"Sister Klocko","age":34,"location":"Utica"}},{"attributes":{"name":"Eulah Reichel","age":23,"location":"Lake Julianburgh"}},{"attributes":{"name":"Niko Walter","age":47,"location":"Altadena"}},{"attributes":{"name":"Dominic Funk","age":67,"location":"Kiaraside"}},{"attributes":{"name":"Jamel Homenick","age":29,"location":"North Emilia"}},{"attributes":{"name":"Miss Yvonne Christiansen","age":67,"location":"Nathanielberg"}},{"attributes":{"name":"Blake Balistreri","age":48,"location":"Austin"}},{"attributes":{"name":"Grady Ernser","age":26,"location":"Haverhill"}},{"attributes":{"name":"Darron Hackett DDS","age":36,"location":"Cheyenne"}},{"attributes":{"name":"Mr. Archie Murazik","age":68,"location":"Abernathyworth"}},{"attributes":{"name":"Cornelius Blick","age":67,"location":"Sunrise Manor"}},{"attributes":{"name":"Roosevelt Crooks","age":27,"location":"North Brandi"}},{"attributes":{"name":"Miguel Aufderhar","age":59,"location":"West Zion"}},{"attributes":{"name":"Dario Kiehn","age":20,"location":"Kundeborough"}},{"attributes":{"name":"David Gusikowski","age":30,"location":"Fort Ariannaside"}},{"attributes":{"name":"Edwin MacGyver-Quitzon","age":19,"location":"New Doracester"}},{"attributes":{"name":"Johnnie Reichert","age":56,"location":"Hialeah"}},{"attributes":{"name":"Malachi Crona","age":25,"location":"Fordworth"}},{"attributes":{"name":"Sonya Simonis","age":23,"location":"Fort Geovanniport"}},{"attributes":{"name":"Berneice Graham","age":36,"location":"Arvada"}},{"attributes":{"name":"Mona Bartoletti","age":71,"location":"Kendale Lakes"}},{"attributes":{"name":"Trevor Kemmer","age":68,"location":"Leesburg"}},{"attributes":{"name":"Santiago Schowalter","age":77,"location":"West Cheyannemouth"}},{"attributes":{"name":"Johnathan Dickens","age":20,"location":"Fort Ernestinashire"}},{"attributes":{"name":"Heather Gutkowski","age":45,"location":"Prohaskastead"}},{"attributes":{"name":"Kathy Koch","age":70,"location":"Haneside"}},{"attributes":{"name":"Dr. Alexander Muller","age":22,"location":"West Florine"}},{"attributes":{"name":"Betsy Krajcik","age":34,"location":"East Melynafort"}},{"attributes":{"name":"Eloy Pfeffer","age":28,"location":"New Columbusfield"}},{"attributes":{"name":"Antonia Klein","age":30,"location":"Joplin"}},{"attributes":{"name":"Isaiah Sanford","age":78,"location":"Coleside"}},{"attributes":{"name":"Woodrow Connelly","age":58,"location":"Elverashire"}},{"attributes":{"name":"Walker DuBuque","age":51,"location":"Swiftfort"}},{"attributes":{"name":"Vicky Kozey","age":73,"location":"Fort Daron"}},{"attributes":{"name":"Eliza Ratke","age":23,"location":"Kennyfort"}},{"attributes":{"name":"Cameron Daniel DVM","age":58,"location":"Billings"}},{"attributes":{"name":"Johnny O'Keefe","age":39,"location":"Moenmouth"}},{"attributes":{"name":"Gunnar Emmerich","age":36,"location":"Germainehaven"}},{"attributes":{"name":"Trenton Bradtke","age":67,"location":"El Dorado Hills"}},{"attributes":{"name":"Francis Champlin IV","age":56,"location":"North Gilda"}},{"attributes":{"name":"Velma Jast","age":37,"location":"McLean"}},{"attributes":{"name":"Kevin Halvorson","age":76,"location":"Farmington"}},{"attributes":{"name":"Theresa Casper","age":74,"location":"West Robb"}},{"attributes":{"name":"Joshuah Cassin","age":27,"location":"Buffalo"}},{"attributes":{"name":"Wade Heathcote","age":44,"location":"Allanfort"}},{"attributes":{"name":"Kristie Koss","age":31,"location":"North Heloiseview"}},{"attributes":{"name":"Arthur Schamberger","age":72,"location":"Lake Marlenemouth"}},{"attributes":{"name":"Dustin Douglas DDS","age":25,"location":"Vineland"}},{"attributes":{"name":"Ceasar Watsica","age":80,"location":"Midland"}},{"attributes":{"name":"Mrs. Adam Streich","age":49,"location":"Port Mandytown"}},{"attributes":{"name":"Jonas Williamson-Lemke","age":64,"location":"North Seamusstead"}},{"attributes":{"name":"Lionel Beatty-Kirlin","age":42,"location":"Detroit"}},{"attributes":{"name":"Maxime Anderson","age":74,"location":"North Vickiestead"}},{"attributes":{"name":"Alta Wunsch","age":80,"location":"New Sallie"}},{"attributes":{"name":"Leon Schmidt","age":54,"location":"West Friedaville"}},{"attributes":{"name":"Rosalia Hudson-Willms","age":70,"location":"St. Joseph"}},{"attributes":{"name":"Danny Upton","age":36,"location":"Kentwood"}},{"attributes":{"name":"Carol Schmitt","age":18,"location":"Emardbury"}},{"attributes":{"name":"Diane DuBuque","age":59,"location":"Dickensbury"}},{"attributes":{"name":"Jorge Heathcote","age":30,"location":"Eldredborough"}},{"attributes":{"name":"Dr. Gerald Walker","age":55,"location":"Hollywood"}},{"attributes":{"name":"Kimberly Kuhic","age":40,"location":"Lake Lydiaport"}},{"attributes":{"name":"Theo Waelchi","age":76,"location":"North Marquiseworth"}},{"attributes":{"name":"Zoey Douglas","age":65,"location":"Berwyn"}},{"attributes":{"name":"Denise Greenholt","age":43,"location":"Marcelleburgh"}},{"attributes":{"name":"Rosalyn Cummings DVM","age":59,"location":"South Nayeliland"}},{"attributes":{"name":"Josie Rempel","age":75,"location":"North Elwinfield"}},{"attributes":{"name":"Marlene Kreiger","age":44,"location":"Reston"}},{"attributes":{"name":"Kaia Hand V","age":64,"location":"West Nettiefield"}},{"attributes":{"name":"Brian Gulgowski","age":37,"location":"Armstrongstead"}},{"attributes":{"name":"Sophie Ruecker","age":63,"location":"East Kacihaven"}},{"attributes":{"name":"Deborah Rau","age":65,"location":"East Geo"}},{"attributes":{"name":"Nella Harris","age":52,"location":"Summerville"}},{"attributes":{"name":"Mina Romaguera","age":20,"location":"Tyreeboro"}},{"attributes":{"name":"Andres Jerde","age":34,"location":"Harberfield"}},{"attributes":{"name":"Miss Darnell Bogan","age":20,"location":"Las Vegas"}},{"attributes":{"name":"Marilou Pacocha Sr.","age":47,"location":"East Jody"}},{"attributes":{"name":"Diane Block","age":37,"location":"Buckridgechester"}},{"attributes":{"name":"Faith Douglas","age":19,"location":"Manchester"}},{"attributes":{"name":"Buster Roob","age":31,"location":"East Euna"}},{"attributes":{"name":"Arnold Jacobs","age":26,"location":"Braunborough"}},{"attributes":{"name":"Rosalie Thiel","age":77,"location":"Donnellyboro"}},{"attributes":{"name":"Rupert Macejkovic","age":62,"location":"Lake Ridge"}},{"attributes":{"name":"Martin Schmitt","age":28,"location":"Port Jamaal"}},{"attributes":{"name":"Lucinda Schumm","age":18,"location":"Lake Adele"}},{"attributes":{"name":"Tania Spencer-Powlowski","age":31,"location":"Cranston"}},{"attributes":{"name":"Jan Crist","age":31,"location":"Windlerboro"}},{"attributes":{"name":"Cecilia Sawayn","age":31,"location":"Baumbachburgh"}},{"attributes":{"name":"Alfred Pfeffer","age":50,"location":"Salvatorestad"}},{"attributes":{"name":"Rita Mueller","age":68,"location":"Watersland"}},{"attributes":{"name":"Liam Quigley","age":25,"location":"East Kenyattaworth"}},{"attributes":{"name":"Mr. Maryse Upton","age":72,"location":"Tyriqueworth"}},{"attributes":{"name":"Art Kozey","age":45,"location":"Weberboro"}},{"attributes":{"name":"Miss Telly O'Reilly","age":62,"location":"Gerholdtown"}},{"attributes":{"name":"Moses Hilpert V","age":73,"location":"South Ila"}},{"attributes":{"name":"Forrest Hand","age":76,"location":"Belleville"}},{"attributes":{"name":"Tommy Cartwright","age":59,"location":"Port Erich"}},{"attributes":{"name":"Luther Schowalter","age":35,"location":"Sanfordland"}},{"attributes":{"name":"Eloise Smith Sr.","age":56,"location":"Lake Modestabury"}},{"attributes":{"name":"Noah Hills II","age":49,"location":"Cullencester"}},{"attributes":{"name":"Francisco Kuphal","age":68,"location":"Port Matteoberg"}},{"attributes":{"name":"Marsha Boyle PhD","age":53,"location":"South Juston"}},{"attributes":{"name":"Joanna Gutkowski","age":40,"location":"Heaneyside"}},{"attributes":{"name":"Lexie Abshire","age":25,"location":"East Danikaport"}},{"attributes":{"name":"Aubrey Padberg","age":19,"location":"Chula Vista"}},{"attributes":{"name":"Sabryna DuBuque","age":20,"location":"Bartonport"}},{"attributes":{"name":"Delphia Anderson","age":72,"location":"Sidhaven"}},{"attributes":{"name":"Seth Maggio","age":71,"location":"Clarkborough"}},{"attributes":{"name":"Erika Weber DVM","age":67,"location":"Alenahaven"}},{"attributes":{"name":"Bria Gusikowski","age":49,"location":"Carissatown"}},{"attributes":{"name":"Heidi Schuppe","age":59,"location":"Efrenport"}},{"attributes":{"name":"Ernest Boyer","age":20,"location":"Conroe"}},{"attributes":{"name":"Nick Bauch","age":59,"location":"Fort Francescastead"}},{"attributes":{"name":"Russell Klein","age":37,"location":"Meganeport"}},{"attributes":{"name":"Russell Wyman","age":45,"location":"Bakersfield"}},{"attributes":{"name":"Tevin Simonis-Corkery","age":67,"location":"West Devyn"}},{"attributes":{"name":"Blanca Smitham","age":65,"location":"Batzville"}},{"attributes":{"name":"Audrey Wuckert","age":72,"location":"Angusboro"}},{"attributes":{"name":"Gretchen Bailey","age":44,"location":"Tyresefurt"}},{"attributes":{"name":"Makenzie Bashirian","age":79,"location":"Fort Tannerstad"}},{"attributes":{"name":"Ms. Irma Balistreri","age":48,"location":"East Damonville"}},{"attributes":{"name":"Francis Padberg","age":64,"location":"Fort Keltonbury"}},{"attributes":{"name":"Rogelio Wyman-Bednar","age":78,"location":"Rueckerhaven"}},{"attributes":{"name":"Dr. Frida Brekke-Koepp","age":70,"location":"South Mariettacester"}},{"attributes":{"name":"Mrs. Pamela Lubowitz","age":60,"location":"Bell Gardens"}},{"attributes":{"name":"Renee Lockman","age":66,"location":"Lake Concepcion"}},{"attributes":{"name":"Jon Pouros","age":77,"location":"Simi Valley"}},{"attributes":{"name":"Aryanna Upton","age":35,"location":"O'Keefestead"}},{"attributes":{"name":"Christa Reynolds","age":23,"location":"Florissant"}},{"attributes":{"name":"Jessica Wintheiser Sr.","age":25,"location":"North Chloeside"}},{"attributes":{"name":"Lazaro Littel","age":29,"location":"Spring Hill"}},{"attributes":{"name":"Dave Witting","age":36,"location":"Felipeton"}},{"attributes":{"name":"Lindsey Bergstrom-Pfeffer","age":36,"location":"Port Delphineside"}},{"attributes":{"name":"Shawna Runolfsdottir","age":57,"location":"Fort Queeniebury"}},{"attributes":{"name":"Miss Marion Legros","age":31,"location":"Wheaton"}},{"attributes":{"name":"Chaim Gottlieb","age":28,"location":"Katlynboro"}},{"attributes":{"name":"Wallace Wilderman","age":51,"location":"Armanicester"}},{"attributes":{"name":"Dominick Schoen","age":20,"location":"Baytown"}},{"attributes":{"name":"Andrew Predovic Jr.","age":55,"location":"Jovanboro"}},{"attributes":{"name":"Manuel Russel","age":39,"location":"South Jean"}},{"attributes":{"name":"Erica Beahan","age":30,"location":"West Wardberg"}},{"attributes":{"name":"Zula Mills","age":39,"location":"Lake Amalia"}},{"attributes":{"name":"Gerard Pfeffer","age":57,"location":"Lake Efrain"}},{"attributes":{"name":"Jacob Schmidt","age":69,"location":"Rialto"}},{"attributes":{"name":"Faith Langworth PhD","age":39,"location":"Daughertyville"}},{"attributes":{"name":"Mabelle Wyman","age":59,"location":"South Petecester"}},{"attributes":{"name":"Ms. Adrianna Anderson IV","age":78,"location":"Mertieboro"}},{"attributes":{"name":"Omar Terry","age":53,"location":"Minnetonka"}},{"attributes":{"name":"Jewell Schaefer","age":64,"location":"South Destiny"}},{"attributes":{"name":"Lillie Lynch","age":57,"location":"Cicero"}},{"attributes":{"name":"Tracey Koss","age":37,"location":"New Queenview"}},{"attributes":{"name":"Ressie Glover","age":64,"location":"Annaville"}},{"attributes":{"name":"Cedric Bashirian","age":65,"location":"Fort Laneside"}},{"attributes":{"name":"Dr. Kayli Schamberger","age":30,"location":"Freeport"}},{"attributes":{"name":"Jessie Veum","age":34,"location":"Bransonstead"}},{"attributes":{"name":"Stella O'Hara","age":48,"location":"Charlottesville"}},{"attributes":{"name":"Virgil Christiansen","age":48,"location":"North Kalebfort"}},{"attributes":{"name":"Sara Sporer","age":19,"location":"North Jeromeview"}},{"attributes":{"name":"Wendell Kuhlman","age":24,"location":"Kaleighbury"}},{"attributes":{"name":"Teresa Feest PhD","age":37,"location":"Jasonport"}},{"attributes":{"name":"Shirley Rolfson PhD","age":77,"location":"San Tan Valley"}},{"attributes":{"name":"Eduardo Murray","age":40,"location":"West Alia"}},{"attributes":{"name":"Janis Farrell","age":62,"location":"Sacramento"}},{"attributes":{"name":"Shannon Howell","age":48,"location":"West Delta"}},{"attributes":{"name":"Vicki O'Hara","age":27,"location":"Port Marielleborough"}},{"attributes":{"name":"Mr. Alvah Weimann","age":68,"location":"Muncie"}},{"attributes":{"name":"Nicolas Jacobs DDS","age":71,"location":"Lakeland"}},{"attributes":{"name":"Thomas Carter","age":57,"location":"South Aliyahfield"}},{"attributes":{"name":"Tamia Koss","age":57,"location":"Cummeratamouth"}},{"attributes":{"name":"Mr. Willie Carroll","age":59,"location":"Walshboro"}},{"attributes":{"name":"Christina Jacobs","age":46,"location":"New Kennedyberg"}},{"attributes":{"name":"Clayton Fay","age":74,"location":"Crooksboro"}},{"attributes":{"name":"Angelo Lakin","age":32,"location":"Kamrenworth"}},{"attributes":{"name":"Traci Deckow","age":34,"location":"Emardland"}},{"attributes":{"name":"Willow Buckridge","age":73,"location":"West Joanne"}},{"attributes":{"name":"Claire Hyatt","age":72,"location":"Bradfordfort"}},{"attributes":{"name":"Janice Grant","age":56,"location":"Eagan"}},{"attributes":{"name":"Jaime Schimmel MD","age":46,"location":"Reynoldport"}},{"attributes":{"name":"Kirstin Hodkiewicz","age":64,"location":"Deshawnview"}},{"attributes":{"name":"Carmine Lowe DVM","age":25,"location":"Lafayette"}},{"attributes":{"name":"Lena Swift","age":22,"location":"Fort Hudson"}},{"attributes":{"name":"Addie Brekke Jr.","age":66,"location":"Brentwood"}},{"attributes":{"name":"Mr. Flo Nienow","age":42,"location":"Kutchberg"}},{"attributes":{"name":"Mr. Abel Zieme","age":61,"location":"West Verner"}},{"attributes":{"name":"Myra Rogahn Sr.","age":36,"location":"Newton"}},{"attributes":{"name":"Alisha Carter PhD","age":33,"location":"Violetchester"}},{"attributes":{"name":"Terry Schmidt","age":57,"location":"Robelboro"}},{"attributes":{"name":"Clementine Kautzer-Leffler","age":76,"location":"North Abbigail"}},{"attributes":{"name":"Reba Roberts","age":42,"location":"Ritaville"}},{"attributes":{"name":"Emmett Spinka","age":54,"location":"Rennerstad"}},{"attributes":{"name":"Carroll Bartoletti","age":72,"location":"Port Douglasmouth"}},{"attributes":{"name":"Ora Kilback","age":60,"location":"Fishers"}},{"attributes":{"name":"Wilton Friesen","age":37,"location":"Reichertfort"}},{"attributes":{"name":"Joannie Moen","age":23,"location":"Irondequoit"}},{"attributes":{"name":"Jonathan Waters","age":38,"location":"Ricostad"}},{"attributes":{"name":"Lloyd Hodkiewicz","age":19,"location":"South Ashton"}},{"attributes":{"name":"Dana Price","age":51,"location":"Toms River"}},{"attributes":{"name":"Allan Grimes","age":55,"location":"Weymouth Town"}},{"attributes":{"name":"Mr. Stephen Cassin","age":47,"location":"Randalboro"}},{"attributes":{"name":"Derrick Hettinger","age":55,"location":"North Jadyn"}},{"attributes":{"name":"Colin Gulgowski PhD","age":50,"location":"Pensacola"}},{"attributes":{"name":"Mateo Reichert","age":76,"location":"Klingfort"}},{"attributes":{"name":"Orin Bradtke","age":25,"location":"O'Connellburgh"}},{"attributes":{"name":"Alonzo Herman","age":47,"location":"Effertzburgh"}},{"attributes":{"name":"Joy Mann","age":79,"location":"Arvada"}},{"attributes":{"name":"Yasmin Howe","age":74,"location":"Leannonfurt"}},{"attributes":{"name":"Tyrel Pollich","age":19,"location":"Allen"}},{"attributes":{"name":"Lucas Dare","age":24,"location":"East Bartfield"}},{"attributes":{"name":"Skyla Willms","age":62,"location":"Jastmouth"}},{"attributes":{"name":"Dr. Raegan Fadel IV","age":64,"location":"Streichmouth"}},{"attributes":{"name":"Catherine Swift","age":38,"location":"Lake Elainamouth"}},{"attributes":{"name":"Conrad Wunsch","age":45,"location":"Hirtheshire"}},{"attributes":{"name":"Robyn Koss","age":29,"location":"Gerholdport"}},{"attributes":{"name":"Santos Trantow","age":19,"location":"Ebertberg"}},{"attributes":{"name":"Johnnie Moen","age":47,"location":"Berkeley"}},{"attributes":{"name":"Euna Mann","age":73,"location":"Sylvesterside"}},{"attributes":{"name":"Beatrice Hudson","age":55,"location":"New Curtisbury"}},{"attributes":{"name":"Onie Stoltenberg","age":58,"location":"South Sam"}},{"attributes":{"name":"Dawn Ritchie-Glover","age":51,"location":"Fort Cristianberg"}},{"attributes":{"name":"Shannon Ullrich","age":53,"location":"Fort Gregghaven"}},{"attributes":{"name":"Domenick Barrows","age":64,"location":"South Jaydonview"}},{"attributes":{"name":"Adriel Lebsack","age":77,"location":"North Ida"}},{"attributes":{"name":"Mrs. Minnie Bahringer","age":23,"location":"Lilianeland"}},{"attributes":{"name":"Ms. Krystal O'Keefe II","age":22,"location":"Hallieburgh"}},{"attributes":{"name":"Kelly McDermott DVM","age":23,"location":"Priceside"}},{"attributes":{"name":"Stephen Hessel","age":66,"location":"Rippinboro"}},{"attributes":{"name":"Philip Davis","age":31,"location":"Americastead"}},{"attributes":{"name":"Lance Koss","age":23,"location":"Lake Claudland"}},{"attributes":{"name":"Albert Murazik","age":49,"location":"Glendora"}},{"attributes":{"name":"Hudson Ernser","age":70,"location":"Bernierboro"}},{"attributes":{"name":"Joan Green","age":79,"location":"Wauwatosa"}},{"attributes":{"name":"Greta Bahringer","age":75,"location":"Litzyview"}},{"attributes":{"name":"Brando Koelpin","age":49,"location":"South Hector"}},{"attributes":{"name":"Doug Brekke","age":46,"location":"Fort Laura"}},{"attributes":{"name":"Gilberto Reynolds","age":69,"location":"Kuhicfurt"}},{"attributes":{"name":"Diane Boyle III","age":69,"location":"Escondido"}},{"attributes":{"name":"Kamron Bergnaum","age":39,"location":"North Lillyhaven"}},{"attributes":{"name":"Blanca Bradtke","age":32,"location":"New Tyresestad"}},{"attributes":{"name":"Miss Cooper McDermott","age":23,"location":"South Camronchester"}},{"attributes":{"name":"Jessica Considine","age":76,"location":"Fort Smith"}},{"attributes":{"name":"Russell Borer IV","age":60,"location":"Ashburn"}},{"attributes":{"name":"Meaghan Ziemann","age":46,"location":"Wilfridport"}},{"attributes":{"name":"Eddie Stiedemann","age":43,"location":"O'Connellshire"}},{"attributes":{"name":"Abdullah Block DDS","age":43,"location":"West Armandfurt"}},{"attributes":{"name":"Wade Spinka IV","age":48,"location":"Tacoma"}},{"attributes":{"name":"Kristopher Paucek","age":31,"location":"North Albina"}},{"attributes":{"name":"Jeannie Senger","age":20,"location":"Cruzhaven"}},{"attributes":{"name":"Bradley Lueilwitz","age":64,"location":"New Judycester"}},{"attributes":{"name":"Genevieve Schaefer","age":67,"location":"Port Bonitabury"}},{"attributes":{"name":"Alta Price I","age":32,"location":"Dachborough"}},{"attributes":{"name":"Miss Daren Doyle","age":32,"location":"Delray Beach"}},{"attributes":{"name":"Traci Schimmel","age":25,"location":"North Martinboro"}},{"attributes":{"name":"Cierra Reichel II","age":66,"location":"Veummouth"}},{"attributes":{"name":"Darrin Nolan","age":69,"location":"Lake Mathew"}},{"attributes":{"name":"Athena Schowalter","age":37,"location":"New Imanichester"}},{"attributes":{"name":"Melba Botsford","age":18,"location":"Frankmouth"}},{"attributes":{"name":"Ignacio Sauer","age":55,"location":"Fort Eloise"}},{"attributes":{"name":"Hugo Pouros DVM","age":26,"location":"Gennaroberg"}},{"attributes":{"name":"Mr. Johanna Pagac","age":52,"location":"Woodland"}},{"attributes":{"name":"Theresa Oberbrunner","age":60,"location":"West Lawrencefort"}},{"attributes":{"name":"Josianne Wilderman","age":45,"location":"South Lydamouth"}},{"attributes":{"name":"Gwen Walter","age":66,"location":"Brooksfield"}},{"attributes":{"name":"Stella Jacobs PhD","age":41,"location":"Robertstown"}},{"attributes":{"name":"Wilburn Bayer","age":44,"location":"Rathshire"}},{"attributes":{"name":"Guadalupe Kutch","age":68,"location":"South Josephineside"}},{"attributes":{"name":"Shannon Romaguera","age":57,"location":"Cristton"}},{"attributes":{"name":"Francis Marvin","age":44,"location":"Yuma"}},{"attributes":{"name":"Mr. Bianka Windler","age":20,"location":"Schinnerfield"}},{"attributes":{"name":"Martha Witting","age":45,"location":"North Lauderdale"}},{"attributes":{"name":"Steve Kuhlman","age":38,"location":"Queenmouth"}},{"attributes":{"name":"Elva White","age":65,"location":"West Laishaworth"}},{"attributes":{"name":"Stephen Cummings","age":18,"location":"Reubenboro"}},{"attributes":{"name":"Ruth Conn","age":34,"location":"Corona"}},{"attributes":{"name":"Dr. Doug Rohan","age":26,"location":"Weissnatburgh"}},{"attributes":{"name":"Arthur Renner-Wunsch","age":77,"location":"Brandynworth"}},{"attributes":{"name":"Ira Dare","age":73,"location":"New Arleneport"}},{"attributes":{"name":"Casey Hettinger","age":73,"location":"Port Tyrese"}},{"attributes":{"name":"Bobbie Crist","age":62,"location":"Ebertville"}},{"attributes":{"name":"Luciano Schmidt","age":40,"location":"State College"}},{"attributes":{"name":"Mrs. Matt Spinka","age":71,"location":"Rialto"}},{"attributes":{"name":"Cecile Rohan IV","age":64,"location":"Walterhaven"}},{"attributes":{"name":"Pete Barton","age":74,"location":"Longmont"}},{"attributes":{"name":"Roselyn Schowalter","age":21,"location":"Brodyborough"}},{"attributes":{"name":"Kristy Ernser III","age":22,"location":"Evalynton"}},{"attributes":{"name":"Dora Zieme","age":37,"location":"Guaynabo"}},{"attributes":{"name":"Violet Kutch","age":26,"location":"Leannafield"}},{"attributes":{"name":"Eliza Hackett","age":41,"location":"West Eltacester"}},{"attributes":{"name":"Oda Deckow","age":63,"location":"Flatleyton"}},{"attributes":{"name":"Leonard Purdy","age":35,"location":"South Izabella"}},{"attributes":{"name":"Joanna Wehner","age":76,"location":"Norfolk"}},{"attributes":{"name":"Lorene Spinka","age":30,"location":"Parkerview"}},{"attributes":{"name":"Dr. Kaylah Berge","age":77,"location":"South Nick"}},{"attributes":{"name":"Dr. Idella Kohler-Stanton","age":73,"location":"Chicago"}},{"attributes":{"name":"Simeon Lebsack III","age":47,"location":"Strosinworth"}},{"attributes":{"name":"Ms. Moriah Zemlak","age":78,"location":"Port Wendellchester"}},{"attributes":{"name":"Bertha Little","age":72,"location":"Croninfort"}},{"attributes":{"name":"Emma Little I","age":68,"location":"North Eveline"}},{"attributes":{"name":"Lela Predovic Sr.","age":38,"location":"Stromanshire"}},{"attributes":{"name":"Tillman Schamberger","age":29,"location":"East Ruby"}},{"attributes":{"name":"Tara Stanton","age":27,"location":"Lake Julien"}},{"attributes":{"name":"Penny Leannon","age":77,"location":"South Brantside"}},{"attributes":{"name":"Nasir Hilpert","age":18,"location":"North Myrnaland"}},{"attributes":{"name":"Kenneth DuBuque","age":78,"location":"Millston"}},{"attributes":{"name":"Kristen McDermott","age":49,"location":"West Irwinfort"}},{"attributes":{"name":"Ms. Cathy Boyer","age":80,"location":"Beckerton"}},{"attributes":{"name":"Peggy Hagenes","age":73,"location":"Greenfield"}},{"attributes":{"name":"Felicia Lowe-Hills","age":42,"location":"Elissafurt"}},{"attributes":{"name":"Ova Renner","age":51,"location":"East Owen"}},{"attributes":{"name":"Roosevelt Cremin","age":39,"location":"Waelchiside"}},{"attributes":{"name":"Eileen Streich","age":66,"location":"Mountain View"}},{"attributes":{"name":"Homer Ebert","age":69,"location":"Evelynhaven"}},{"attributes":{"name":"Frank Waters","age":70,"location":"Coconut Creek"}},{"attributes":{"name":"Melvin Jacobs","age":43,"location":"Eloyborough"}},{"attributes":{"name":"Sophia Satterfield","age":52,"location":"East Wilbertburgh"}},{"attributes":{"name":"Troy Torphy","age":42,"location":"Camilleview"}},{"attributes":{"name":"Alanna Zemlak I","age":42,"location":"Pagacberg"}},{"attributes":{"name":"Hilton Quitzon","age":54,"location":"Heaneyworth"}},{"attributes":{"name":"Ms. Stephon Aufderhar","age":36,"location":"South Lisandro"}},{"attributes":{"name":"Gertrude Stamm","age":66,"location":"Paulineville"}},{"attributes":{"name":"Johann Stiedemann","age":48,"location":"Vellastead"}},{"attributes":{"name":"Cloyd Miller","age":61,"location":"New Lucio"}},{"attributes":{"name":"Yolanda Durgan","age":18,"location":"East Stacy"}},{"attributes":{"name":"Pamela Bergstrom","age":39,"location":"East Gerda"}},{"attributes":{"name":"Angel Schuppe","age":34,"location":"Daytona Beach"}},{"attributes":{"name":"Julio Hauck","age":33,"location":"Rennerburgh"}},{"attributes":{"name":"Jeannie Hilll","age":64,"location":"Boca Raton"}},{"attributes":{"name":"Seth Stanton","age":45,"location":"Port Marshall"}},{"attributes":{"name":"Doyle Turcotte","age":22,"location":"Midwest City"}},{"attributes":{"name":"Miss Elisa Berge","age":40,"location":"West Adella"}},{"attributes":{"name":"Terrill Cruickshank Sr.","age":55,"location":"Bergeside"}},{"attributes":{"name":"Doris Labadie","age":42,"location":"Minahaven"}},{"attributes":{"name":"Chloe Schuster","age":45,"location":"Alphonsoburgh"}},{"attributes":{"name":"Ebba Stracke","age":52,"location":"Thaliaburgh"}},{"attributes":{"name":"Myra Harvey","age":32,"location":"Lake Gus"}},{"attributes":{"name":"Darin Schroeder","age":42,"location":"Fort Clemmieworth"}},{"attributes":{"name":"Mrs. Laisha Upton DDS","age":25,"location":"South Edythe"}},{"attributes":{"name":"Ruby Johnson","age":33,"location":"Williamsonfort"}},{"attributes":{"name":"Jeannette Greenholt Sr.","age":46,"location":"South Michale"}},{"attributes":{"name":"Maryann Upton","age":72,"location":"Fort Camden"}},{"attributes":{"name":"Kerry Farrell","age":56,"location":"Port Declan"}},{"attributes":{"name":"Karine Keeling","age":26,"location":"Fort Alessiacester"}},{"attributes":{"name":"Miss Carmen Collins","age":27,"location":"Fort Elaina"}},{"attributes":{"name":"Kelley Corkery","age":56,"location":"South Wiltonview"}},{"attributes":{"name":"Annalise Lebsack","age":27,"location":"McKinney"}},{"attributes":{"name":"Christopher Rohan","age":73,"location":"West Savion"}},{"attributes":{"name":"Carmella O'Hara","age":26,"location":"Harmonyhaven"}},{"attributes":{"name":"Amanda Christiansen","age":24,"location":"Fort Wendyfort"}},{"attributes":{"name":"Alta Frami","age":50,"location":"New Hanna"}},{"attributes":{"name":"Ebony Boehm","age":32,"location":"Domenickhaven"}},{"attributes":{"name":"Israel Barton","age":43,"location":"Moenshire"}},{"attributes":{"name":"Mrs. George Beer V","age":76,"location":"Lehnerboro"}},{"attributes":{"name":"Pattie Purdy","age":18,"location":"Sioux Falls"}},{"attributes":{"name":"Grace Emmerich IV","age":52,"location":"Adolphboro"}},{"attributes":{"name":"Nathanael Anderson","age":66,"location":"South Curtisview"}},{"attributes":{"name":"Tod Howe II","age":69,"location":"East Duncanchester"}},{"attributes":{"name":"Arnaldo Doyle-Barrows","age":32,"location":"North Helenestad"}},{"attributes":{"name":"Miss Alton Waters","age":77,"location":"West Braedenland"}},{"attributes":{"name":"Daphnee Wiza","age":66,"location":"Redondo Beach"}},{"attributes":{"name":"Ciara Hickle","age":45,"location":"Powlowskichester"}},{"attributes":{"name":"Perry Hettinger","age":21,"location":"Waterschester"}},{"attributes":{"name":"Milford Zboncak V","age":29,"location":"Fort Guidoberg"}},{"attributes":{"name":"Jordane Kozey","age":37,"location":"West Cooperville"}},{"attributes":{"name":"Mr. Jerome Johns","age":68,"location":"Zboncakchester"}},{"attributes":{"name":"Adell Koepp","age":72,"location":"Bridgeport"}},{"attributes":{"name":"Rodrigo Dicki","age":78,"location":"Matildefield"}},{"attributes":{"name":"Jasper Muller","age":31,"location":"Hobarttown"}},{"attributes":{"name":"Laverne Goldner","age":44,"location":"Noblesville"}},{"attributes":{"name":"Archie Mohr","age":20,"location":"Delray Beach"}},{"attributes":{"name":"Mr. Brett Muller","age":59,"location":"Herminiaview"}},{"attributes":{"name":"Hollie Hilpert","age":75,"location":"Cupertino"}},{"attributes":{"name":"Todd Grimes","age":74,"location":"Rollinshire"}},{"attributes":{"name":"Gregg Cummings","age":80,"location":"Simonisworth"}},{"attributes":{"name":"Santa O'Kon","age":54,"location":"Gleasonburgh"}},{"attributes":{"name":"Jacquelyn Schimmel","age":71,"location":"Babyton"}},{"attributes":{"name":"Elmer Rempel","age":71,"location":"North Westoncester"}},{"attributes":{"name":"Dr. Jeanne Mohr","age":31,"location":"East Ahmad"}},{"attributes":{"name":"Jovany Luettgen","age":41,"location":"Easterstad"}},{"attributes":{"name":"Michelle Walsh-Koepp","age":35,"location":"West Coralie"}},{"attributes":{"name":"Dulce Stamm","age":31,"location":"Port Joseborough"}},{"attributes":{"name":"Carolyn Kunde","age":42,"location":"New Cordiahaven"}},{"attributes":{"name":"Mrs. Diane Mante","age":50,"location":"Lake Dallin"}},{"attributes":{"name":"Makayla Greenholt","age":74,"location":"Lexifurt"}},{"attributes":{"name":"Jason Langworth","age":36,"location":"New Laurie"}},{"attributes":{"name":"Inez Lynch","age":74,"location":"Danteton"}},{"attributes":{"name":"Desiree Greenfelder","age":52,"location":"Lake Janellestad"}},{"attributes":{"name":"Earlene Boyer","age":52,"location":"East Mark"}},{"attributes":{"name":"Clara Fahey","age":38,"location":"Port Rachelle"}},{"attributes":{"name":"Mrs. Lenore Ferry","age":66,"location":"Kentwood"}},{"attributes":{"name":"Hattie Lang","age":63,"location":"Twin Falls"}},{"attributes":{"name":"Olivia Willms","age":42,"location":"East Dessie"}},{"attributes":{"name":"Claire Batz","age":35,"location":"Consueloworth"}},{"attributes":{"name":"Rosemarie Spencer","age":29,"location":"Wilburnport"}},{"attributes":{"name":"May Langosh","age":30,"location":"Mountain View"}},{"attributes":{"name":"Tomas Gusikowski","age":19,"location":"Marvinton"}},{"attributes":{"name":"Miss Douglas Blanda","age":40,"location":"Mireyaland"}},{"attributes":{"name":"Chelsea Kub","age":68,"location":"South Calemouth"}},{"attributes":{"name":"Bradley Boehm","age":30,"location":"New Ephraimcester"}},{"attributes":{"name":"Luis Hirthe","age":56,"location":"Port Celestinochester"}},{"attributes":{"name":"Marion Klein","age":73,"location":"New Joel"}},{"attributes":{"name":"Wilton Hermiston Sr.","age":79,"location":"Bauchborough"}},{"attributes":{"name":"Tommie Orn","age":68,"location":"North Donnellbury"}},{"attributes":{"name":"Rylee Cassin","age":79,"location":"Adamsfield"}},{"attributes":{"name":"Toby Wunsch","age":71,"location":"Lake Florianbury"}},{"attributes":{"name":"Isabelle Senger","age":62,"location":"Pensacola"}},{"attributes":{"name":"Newell McCullough","age":59,"location":"West Theresa"}},{"attributes":{"name":"Mrs. Raquel Herman","age":28,"location":"Harberborough"}},{"attributes":{"name":"Joshua Monahan","age":73,"location":"Bristol"}},{"attributes":{"name":"Rosalinda Lehner","age":41,"location":"Lake Ludwig"}},{"attributes":{"name":"Lauren Abbott","age":48,"location":"Port Kaciboro"}},{"attributes":{"name":"Gabriel Nolan","age":73,"location":"Mountain View"}},{"attributes":{"name":"Annette Schinner","age":47,"location":"Lake Elisa"}},{"attributes":{"name":"Dr. Jeremy Haag-Barton","age":39,"location":"Conroyport"}},{"attributes":{"name":"Mrs. Karianne Ruecker","age":48,"location":"Donnieville"}},{"attributes":{"name":"Dana Harris","age":53,"location":"East Reannaburgh"}},{"attributes":{"name":"Maurice Vandervort","age":22,"location":"Ravenport"}},{"attributes":{"name":"Dr. Henry Kozey","age":20,"location":"Cupertino"}},{"attributes":{"name":"Trudie Gusikowski","age":50,"location":"North Beauburgh"}},{"attributes":{"name":"Noah Bernier","age":69,"location":"Majorside"}},{"attributes":{"name":"Floyd Mosciski","age":54,"location":"Port Kyrahaven"}},{"attributes":{"name":"Christina Kling-Gorczany","age":73,"location":"Elishastad"}},{"attributes":{"name":"Israel Jacobs","age":50,"location":"New Jenaview"}},{"attributes":{"name":"Norval Parker","age":54,"location":"Elgin"}},{"attributes":{"name":"Ms. Manley Wunsch I","age":27,"location":"Fort Brain"}},{"attributes":{"name":"Shaylee Padberg","age":49,"location":"Warner Robins"}},{"attributes":{"name":"Devin Wisozk","age":44,"location":"Pine Bluff"}},{"attributes":{"name":"Luther Williamson","age":68,"location":"Port Parkerburgh"}},{"attributes":{"name":"Wilson Schultz","age":76,"location":"Kalamazoo"}},{"attributes":{"name":"Ramon Doyle I","age":20,"location":"Dayton"}},{"attributes":{"name":"Shaun Grady","age":18,"location":"Wunschton"}},{"attributes":{"name":"Penny Hilpert","age":37,"location":"Binsstead"}},{"attributes":{"name":"Easter Cremin","age":59,"location":"Jettieberg"}},{"attributes":{"name":"Christy Schimmel","age":20,"location":"Abshirefort"}},{"attributes":{"name":"Mr. Gregory Jones","age":48,"location":"East Guyshire"}},{"attributes":{"name":"Grayson Funk","age":24,"location":"Langoshfort"}},{"attributes":{"name":"Ricky Predovic","age":50,"location":"Lake Oleta"}},{"attributes":{"name":"Ryleigh Ledner DDS","age":34,"location":"South Ellenboro"}},{"attributes":{"name":"Dr. Bennie McGlynn","age":66,"location":"Amariville"}},{"attributes":{"name":"Samuel Waelchi","age":60,"location":"Georgianaworth"}},{"attributes":{"name":"Jerald Grady","age":57,"location":"Knoxville"}},{"attributes":{"name":"Brenda Lueilwitz","age":29,"location":"Pompano Beach"}},{"attributes":{"name":"Annie Streich","age":55,"location":"Ubaldohaven"}},{"attributes":{"name":"Ryley Roob","age":25,"location":"South Loma"}},{"attributes":{"name":"Dr. Johnnie Shanahan","age":68,"location":"Enricoborough"}},{"attributes":{"name":"Leo Bayer","age":24,"location":"Lizethstad"}},{"attributes":{"name":"Roland Rutherford","age":42,"location":"South Jordichester"}},{"attributes":{"name":"Shaina Collins","age":40,"location":"Alfonsoport"}},{"attributes":{"name":"Evelyn Heathcote-Beier","age":54,"location":"South Shane"}},{"attributes":{"name":"Mr. Caroline Morar","age":18,"location":"North Margarettemouth"}},{"attributes":{"name":"Darius Graham","age":41,"location":"Green Bay"}},{"attributes":{"name":"Wilfrid Kshlerin","age":42,"location":"Port Shaylee"}},{"attributes":{"name":"Irene Johnson","age":50,"location":"South Jessicaboro"}},{"attributes":{"name":"Julio Lakin IV","age":73,"location":"Eleanoraberg"}},{"attributes":{"name":"Hadley Parker","age":28,"location":"Bellaburgh"}},{"attributes":{"name":"Ebony Howe","age":25,"location":"Damionbury"}},{"attributes":{"name":"Dillon Jerde","age":41,"location":"Greenholthaven"}},{"attributes":{"name":"Marco Morissette","age":61,"location":"Aurora"}},{"attributes":{"name":"Mrs. Katrina Grant","age":66,"location":"Dickifurt"}},{"attributes":{"name":"Silas Rogahn","age":36,"location":"Hilllcester"}},{"attributes":{"name":"Velma Nitzsche","age":80,"location":"Coral Gables"}},{"attributes":{"name":"Reginald Veum","age":68,"location":"Zulaufhaven"}},{"attributes":{"name":"Matthew Lubowitz","age":57,"location":"Shawnee"}},{"attributes":{"name":"Eduardo Fritsch","age":54,"location":"Okunevacester"}},{"attributes":{"name":"Ernestine Hartmann Jr.","age":26,"location":"South Sofiabury"}},{"attributes":{"name":"Freddy Boehm","age":67,"location":"East Earline"}},{"attributes":{"name":"Mr. Sabina Maggio","age":67,"location":"West Gennaro"}},{"attributes":{"name":"Bradley Kunde","age":32,"location":"Port Antwonville"}},{"attributes":{"name":"Roselyn Bins","age":36,"location":"Douglasshire"}},{"attributes":{"name":"Olive Powlowski","age":55,"location":"Bethlehem"}},{"attributes":{"name":"Ms. Amelie Breitenberg","age":59,"location":"Temple"}},{"attributes":{"name":"Everett Pfannerstill","age":48,"location":"Leonoraville"}},{"attributes":{"name":"Wallace Wilderman","age":61,"location":"Wolfffurt"}},{"attributes":{"name":"Earnest Ritchie","age":25,"location":"West Cara"}},{"attributes":{"name":"Ashtyn Ortiz","age":60,"location":"Parkercester"}},{"attributes":{"name":"Traci Bechtelar","age":41,"location":"Doyleside"}},{"attributes":{"name":"Sally Terry","age":66,"location":"Avondale"}},{"attributes":{"name":"Miss Arturo Runolfsson","age":78,"location":"Lake Newton"}},{"attributes":{"name":"Leslie Durgan PhD","age":63,"location":"Hartmannworth"}},{"attributes":{"name":"Olive Moore Sr.","age":57,"location":"Abshiretown"}},{"attributes":{"name":"Amanda Rutherford","age":59,"location":"Mustafafield"}},{"attributes":{"name":"Euna Bauch","age":73,"location":"New Osborne"}},{"attributes":{"name":"Dan Hettinger-Williamson","age":43,"location":"Maritzahaven"}},{"attributes":{"name":"Jerry Von","age":30,"location":"East Elisha"}},{"attributes":{"name":"Casey Herman","age":18,"location":"Addiehaven"}},{"attributes":{"name":"Tyrone Waelchi","age":41,"location":"Fort Kylee"}},{"attributes":{"name":"Mrs. Thurman Wolff DVM","age":50,"location":"Schroederboro"}},{"attributes":{"name":"Nathan Halvorson","age":30,"location":"Hassantown"}},{"attributes":{"name":"Urban Ondricka","age":46,"location":"Port Mireille"}},{"attributes":{"name":"Kirstin Walker","age":28,"location":"Livonia"}},{"attributes":{"name":"Lillian Jenkins","age":44,"location":"Aylabury"}},{"attributes":{"name":"Genevieve Hansen","age":54,"location":"Fort Francis"}},{"attributes":{"name":"Timothy Leffler","age":24,"location":"Lake Selenaburgh"}},{"attributes":{"name":"Mona Cruickshank","age":23,"location":"Caldwell"}},{"attributes":{"name":"Sabrina Buckridge","age":77,"location":"Fort Christianaport"}},{"attributes":{"name":"Harry Hartmann","age":66,"location":"Mittieport"}},{"attributes":{"name":"Gerardo Pacocha Sr.","age":53,"location":"Lake Shannon"}},{"attributes":{"name":"Ms. Darion Wunsch","age":28,"location":"Isabelton"}},{"attributes":{"name":"Mabel Kling","age":47,"location":"Port Gregoriacester"}},{"attributes":{"name":"Jean Frami","age":55,"location":"Schinnerworth"}},{"attributes":{"name":"Jordan Jerde","age":28,"location":"Jonesport"}},{"attributes":{"name":"Sonja Bergnaum","age":31,"location":"South Bertram"}},{"attributes":{"name":"Geneva Kilback V","age":52,"location":"Amyland"}},{"attributes":{"name":"Hugo Nikolaus","age":75,"location":"Ethamouth"}},{"attributes":{"name":"Jay Stroman","age":65,"location":"Monroe"}},{"attributes":{"name":"Autumn Donnelly","age":56,"location":"Summerville"}},{"attributes":{"name":"Nichole Sauer","age":77,"location":"Camarillo"}},{"attributes":{"name":"Marshall McKenzie","age":50,"location":"Fort Kyleighfield"}},{"attributes":{"name":"Ismael Purdy","age":62,"location":"Fort Katlynnberg"}},{"attributes":{"name":"Johnnie Lueilwitz","age":56,"location":"East Mariane"}},{"attributes":{"name":"Mr. Lea Marquardt","age":58,"location":"East Jerrellland"}},{"attributes":{"name":"Ross Klein","age":29,"location":"Alexieview"}},{"attributes":{"name":"Triston Smith","age":58,"location":"West Aiyana"}},{"attributes":{"name":"Norman Armstrong","age":57,"location":"North Tyler"}},{"attributes":{"name":"Luz Konopelski-Reichert","age":80,"location":"Milofield"}},{"attributes":{"name":"Kylie Cummerata","age":39,"location":"North Elisaport"}},{"attributes":{"name":"Ollie Graham-Kertzmann","age":29,"location":"West Drew"}},{"attributes":{"name":"Mr. Clay Hilpert-Sporer","age":32,"location":"Patrickstead"}},{"attributes":{"name":"Adell Jaskolski","age":58,"location":"Taylor"}},{"attributes":{"name":"Jane Bogan","age":51,"location":"South Elmomouth"}},{"attributes":{"name":"Demario Nolan-Predovic","age":58,"location":"Maribelville"}},{"attributes":{"name":"Sharon Farrell","age":73,"location":"Madelynnchester"}},{"attributes":{"name":"Dr. Beverly Wilkinson","age":72,"location":"North Shawna"}},{"attributes":{"name":"Simone Connelly","age":28,"location":"Hesperia"}},{"attributes":{"name":"Aliza Littel","age":59,"location":"Santa Clarita"}},{"attributes":{"name":"Erin Runolfsson","age":37,"location":"Beierbury"}},{"attributes":{"name":"Gennaro Greenholt","age":62,"location":"Caguas"}},{"attributes":{"name":"Adella Johns Jr.","age":60,"location":"Amandaport"}},{"attributes":{"name":"Shane Lesch","age":29,"location":"Veumton"}},{"attributes":{"name":"Kaela Koss","age":64,"location":"Pinellas Park"}},{"attributes":{"name":"Mrs. Lacy Spencer-Bechtelar","age":70,"location":"Klockoberg"}},{"attributes":{"name":"Alexandria Krajcik","age":38,"location":"Shanashire"}},{"attributes":{"name":"Tess Raynor","age":64,"location":"Fort Golden"}},{"attributes":{"name":"Mrs. Candelario Swift","age":73,"location":"New Easterland"}},{"attributes":{"name":"Elijah Nader","age":59,"location":"Lafayette"}},{"attributes":{"name":"Miguel Homenick","age":28,"location":"Huelton"}},{"attributes":{"name":"Dr. Dario McLaughlin","age":48,"location":"Port Dorcasfurt"}},{"attributes":{"name":"Joey Zulauf","age":71,"location":"New Dewaynehaven"}},{"attributes":{"name":"Alicia Kirlin","age":18,"location":"Fort Shaniebury"}},{"attributes":{"name":"Miss Jessie Kiehn","age":67,"location":"Everett"}},{"attributes":{"name":"Blaze Grady","age":18,"location":"Cameronburgh"}},{"attributes":{"name":"Travis Kub","age":32,"location":"Sheridanworth"}},{"attributes":{"name":"Laura Blick","age":68,"location":"North Citlalliside"}},{"attributes":{"name":"Dr. Creola Rohan","age":67,"location":"Zulaufcester"}},{"attributes":{"name":"Dr. Jose Olson","age":18,"location":"West Ladarius"}},{"attributes":{"name":"Natalie Lakin","age":36,"location":"Allieside"}},{"attributes":{"name":"Sarai Dickinson IV","age":73,"location":"Port Elinorfurt"}},{"attributes":{"name":"Justen Gislason","age":63,"location":"Alishaland"}},{"attributes":{"name":"Olivia Wuckert","age":54,"location":"Lindstead"}},{"attributes":{"name":"Rick Hoppe","age":44,"location":"North Ruthie"}},{"attributes":{"name":"Ali Connelly","age":67,"location":"Pine Hills"}},{"attributes":{"name":"Christ Stark","age":79,"location":"West Bryce"}},{"attributes":{"name":"Dock Trantow","age":47,"location":"Grimesfort"}},{"attributes":{"name":"Chandler Wunsch","age":56,"location":"Schaeferworth"}},{"attributes":{"name":"Raul Schulist","age":79,"location":"Port Kira"}},{"attributes":{"name":"Marie Vandervort-Keeling","age":40,"location":"West Juliannefort"}},{"attributes":{"name":"Curtis Breitenberg","age":56,"location":"Lake Elfriedastead"}},{"attributes":{"name":"Mr. Carlton Morar","age":20,"location":"Port Kathrynchester"}},{"attributes":{"name":"Amparo Abernathy","age":51,"location":"Centennial"}},{"attributes":{"name":"Merritt Hegmann","age":57,"location":"Considineboro"}},{"attributes":{"name":"Claude Robel","age":51,"location":"New Cordelia"}},{"attributes":{"name":"Dewey Berge","age":50,"location":"Lake Colby"}},{"attributes":{"name":"Frances Emard","age":72,"location":"East Verla"}},{"attributes":{"name":"Kenny McClure","age":49,"location":"North Marlenestead"}},{"attributes":{"name":"Adriel Torphy","age":42,"location":"Berryview"}},{"attributes":{"name":"Noel Jacobs","age":70,"location":"Port Willhaven"}},{"attributes":{"name":"Roxanne Roob","age":76,"location":"Lake Mariah"}},{"attributes":{"name":"Freeda Lang","age":30,"location":"South Mary"}},{"attributes":{"name":"Mr. Bradford Hoppe Jr.","age":80,"location":"Kleintown"}},{"attributes":{"name":"Diane Bode-Willms","age":60,"location":"Ianbury"}},{"attributes":{"name":"Samantha Paucek","age":71,"location":"South Federicoburgh"}},{"attributes":{"name":"Cortez Emard","age":58,"location":"Dixieton"}},{"attributes":{"name":"Conrad Lehner","age":38,"location":"South Valley"}},{"attributes":{"name":"Mabel Parisian","age":40,"location":"Gresham"}},{"attributes":{"name":"Esther Sawayn","age":60,"location":"Paradise"}},{"attributes":{"name":"Beatrice Willms","age":23,"location":"Rahsaanstad"}},{"attributes":{"name":"Kathy Ward","age":51,"location":"Flint"}},{"attributes":{"name":"Lora Weissnat","age":61,"location":"West Geraldineborough"}},{"attributes":{"name":"Pink Mosciski","age":22,"location":"Bettieburgh"}},{"attributes":{"name":"Richmond Deckow","age":25,"location":"Waelchiton"}},{"attributes":{"name":"Fleta Lakin-Crona V","age":73,"location":"Fort Vestaview"}},{"attributes":{"name":"Mr. Sidney Schuster-Yundt","age":25,"location":"Kokomo"}},{"attributes":{"name":"Erica Turner","age":61,"location":"Lake Green"}},{"attributes":{"name":"Mrs. Demetrius Luettgen","age":58,"location":"Lake Ruby"}},{"attributes":{"name":"Conor Wolf","age":68,"location":"Fort Hughshire"}},{"attributes":{"name":"Leonard Koch","age":72,"location":"Braxtonfield"}},{"attributes":{"name":"Dominick Reinger","age":46,"location":"New Leilani"}},{"attributes":{"name":"Isaac Thompson MD","age":72,"location":"Kirstenberg"}},{"attributes":{"name":"Salvador Wolf III","age":28,"location":"South Aniya"}},{"attributes":{"name":"Dr. Andrew Frami","age":37,"location":"West Omari"}},{"attributes":{"name":"Marjorie Brekke","age":28,"location":"Johnson City"}},{"attributes":{"name":"Martin Lakin","age":70,"location":"Brandynchester"}},{"attributes":{"name":"Cary Leannon","age":45,"location":"Fort Nyahborough"}},{"attributes":{"name":"Kristen Sauer","age":78,"location":"Warner Robins"}},{"attributes":{"name":"Shelly Monahan","age":50,"location":"Lake Madalynland"}},{"attributes":{"name":"Terri Hintz Jr.","age":39,"location":"Turcotteboro"}},{"attributes":{"name":"Claudine Prosacco","age":53,"location":"East Claire"}},{"attributes":{"name":"Rosemarie Carroll","age":41,"location":"Lake Reynafurt"}},{"attributes":{"name":"Gustavo Watsica Sr.","age":78,"location":"East Herbert"}},{"attributes":{"name":"Dr. Lorine Stracke","age":70,"location":"Lavernaport"}},{"attributes":{"name":"Kathleen Erdman","age":76,"location":"Gerryton"}},{"attributes":{"name":"Veronica Schuster","age":59,"location":"Hauckberg"}},{"attributes":{"name":"Ruby Waters","age":27,"location":"Port Taniaton"}},{"attributes":{"name":"Alfreda Hirthe","age":39,"location":"Ann Arbor"}},{"attributes":{"name":"Antwon Okuneva","age":23,"location":"West Brannonton"}},{"attributes":{"name":"Ross Bechtelar","age":62,"location":"Cleveland"}},{"attributes":{"name":"Leonard Braun","age":78,"location":"West Allieburgh"}},{"attributes":{"name":"Maryse Batz","age":22,"location":"New Marleyworth"}},{"attributes":{"name":"Brigitte Kautzer","age":20,"location":"Handville"}},{"attributes":{"name":"Colleen Hamill","age":70,"location":"Huntington Beach"}},{"attributes":{"name":"Mrs. Rosie Luettgen","age":25,"location":"Portage"}},{"attributes":{"name":"Eugene Pacocha PhD","age":35,"location":"Tucson"}},{"attributes":{"name":"Orie Kub","age":41,"location":"West Madie"}},{"attributes":{"name":"Alex Kautzer","age":32,"location":"Haverhill"}},{"attributes":{"name":"Walton Kassulke","age":36,"location":"North Maria"}},{"attributes":{"name":"Mallie Mraz I","age":46,"location":"Fort Magdalena"}},{"attributes":{"name":"Bryant Hettinger","age":55,"location":"Mathewview"}},{"attributes":{"name":"Graciela Becker","age":41,"location":"Linden"}},{"attributes":{"name":"Lindsay Koss","age":38,"location":"Kreigertown"}},{"attributes":{"name":"Dr. Jermaine Will","age":36,"location":"Curtisland"}},{"attributes":{"name":"Vanessa McClure","age":58,"location":"Akeemfort"}},{"attributes":{"name":"Seth Lowe","age":34,"location":"Chattanooga"}},{"attributes":{"name":"Dale Grant III","age":61,"location":"Fort Donny"}},{"attributes":{"name":"Velva Stroman","age":76,"location":"East Joana"}},{"attributes":{"name":"Marlene Keeling","age":28,"location":"East Marilyne"}},{"attributes":{"name":"Johnnie Homenick","age":33,"location":"Millshaven"}},{"attributes":{"name":"Glenda Stroman","age":65,"location":"Fort Misty"}},{"attributes":{"name":"Emely Lubowitz","age":38,"location":"South Ernieport"}},{"attributes":{"name":"Carole Dach","age":73,"location":"North Louchester"}},{"attributes":{"name":"Emmy Bauch","age":58,"location":"Bergstromberg"}},{"attributes":{"name":"Jamie Paucek","age":34,"location":"Rickyshire"}},{"attributes":{"name":"Irving Kub","age":42,"location":"Brantstad"}},{"attributes":{"name":"Johanna Rodriguez","age":49,"location":"West Furman"}},{"attributes":{"name":"Gladyce Fisher","age":50,"location":"Croninview"}},{"attributes":{"name":"Rodney Pollich","age":21,"location":"South Ronberg"}},{"attributes":{"name":"Joel Kerluke-Labadie","age":35,"location":"Port Noreneboro"}},{"attributes":{"name":"Johanna Herzog","age":28,"location":"West Leifhaven"}},{"attributes":{"name":"Tommie Lakin IV","age":40,"location":"Binschester"}},{"attributes":{"name":"Elda Rohan","age":75,"location":"Brownhaven"}},{"attributes":{"name":"Mr. Woodrow Nolan","age":72,"location":"South Miles"}},{"attributes":{"name":"Dr. Gordon Hagenes","age":21,"location":"New Palma"}},{"attributes":{"name":"Mrs. Carla Schmitt","age":75,"location":"Grand Junction"}},{"attributes":{"name":"Glenn Schroeder","age":66,"location":"Antelope"}},{"attributes":{"name":"Dr. Alfredo Sawayn I","age":63,"location":"South Lilian"}},{"attributes":{"name":"Lucy Abshire","age":45,"location":"Norvalville"}},{"attributes":{"name":"Velma King","age":49,"location":"Port Olenworth"}},{"attributes":{"name":"Aiden Parker","age":59,"location":"Gleasonberg"}},{"attributes":{"name":"Benny Trantow Sr.","age":20,"location":"East Madaline"}},{"attributes":{"name":"Sean Franecki","age":65,"location":"Bossier City"}},{"attributes":{"name":"Cesar Wisozk","age":38,"location":"Fort Edisonfield"}},{"attributes":{"name":"Willard Kerluke Sr.","age":70,"location":"West Alvenafield"}},{"attributes":{"name":"Betsy Boyer","age":34,"location":"New Derek"}},{"attributes":{"name":"Theresia Strosin","age":64,"location":"Krajcikberg"}},{"attributes":{"name":"Dale Upton","age":71,"location":"Lake Marlen"}},{"attributes":{"name":"Ms. Rachel Stanton","age":79,"location":"West Palm Beach"}},{"attributes":{"name":"Laura Funk","age":18,"location":"Cummingshaven"}},{"attributes":{"name":"Jennie Koepp","age":53,"location":"Port Toreyborough"}},{"attributes":{"name":"Dr. Adolfo Bechtelar","age":74,"location":"Port Juwanhaven"}},{"attributes":{"name":"Providenci Hamill","age":74,"location":"Port Lucio"}},{"attributes":{"name":"Amanda Thompson","age":47,"location":"Considinechester"}},{"attributes":{"name":"Carol Becker","age":38,"location":"Gleichnerville"}},{"attributes":{"name":"Ted Kessler","age":60,"location":"Leschborough"}},{"attributes":{"name":"Felipe Shanahan","age":79,"location":"North Jackyhaven"}},{"attributes":{"name":"Nina Welch IV","age":24,"location":"South Jaredtown"}},{"attributes":{"name":"Tabitha Runolfsson","age":43,"location":"Jefferson City"}},{"attributes":{"name":"Ebony Hickle","age":52,"location":"Gianniton"}},{"attributes":{"name":"Lolita Mraz","age":61,"location":"Rapid City"}},{"attributes":{"name":"Johathan Rodriguez","age":47,"location":"Gleichnerborough"}},{"attributes":{"name":"Caesar Reichel","age":39,"location":"Brownfurt"}},{"attributes":{"name":"Norma Murazik","age":76,"location":"New Ozellaboro"}},{"attributes":{"name":"Karen Marvin PhD","age":80,"location":"New Kayley"}},{"attributes":{"name":"Alexander Schinner-Zieme","age":45,"location":"Jacobsonboro"}},{"attributes":{"name":"Mr. Connie Pouros","age":58,"location":"New Kailyn"}},{"attributes":{"name":"Roxanne Nitzsche MD","age":40,"location":"University"}},{"attributes":{"name":"Carole Johns","age":68,"location":"Gerholdbury"}},{"attributes":{"name":"Jaime Lang","age":44,"location":"Suffolk"}},{"attributes":{"name":"Winfield Hilpert","age":68,"location":"West Heath"}},{"attributes":{"name":"Katrina Nolan","age":49,"location":"New Bernhard"}},{"attributes":{"name":"Kayli Durgan","age":62,"location":"Grantstad"}},{"attributes":{"name":"Johnnie Smitham","age":56,"location":"East Garnett"}},{"attributes":{"name":"Godfrey Ledner","age":76,"location":"East Dallasstad"}},{"attributes":{"name":"Keara Brakus","age":28,"location":"Jamisonhaven"}},{"attributes":{"name":"Osborne Frami","age":28,"location":"Wisokytown"}},{"attributes":{"name":"Kylee Kiehn","age":48,"location":"Brendentown"}},{"attributes":{"name":"Gregory Daniel-Herzog","age":25,"location":"Lake Anastacio"}},{"attributes":{"name":"Tre Tromp","age":24,"location":"Boyerhaven"}},{"attributes":{"name":"Clara Rohan","age":62,"location":"Fort Vidal"}},{"attributes":{"name":"Philip Nolan DVM","age":60,"location":"Wilhelmworth"}},{"attributes":{"name":"Rosa Franecki","age":25,"location":"Buckeye"}},{"attributes":{"name":"Noemy Ruecker","age":31,"location":"Considineburgh"}},{"attributes":{"name":"Dr. Odie Mosciski","age":43,"location":"West Freedaton"}},{"attributes":{"name":"Javier Beahan","age":76,"location":"Yuma"}},{"attributes":{"name":"Alexander Lubowitz","age":69,"location":"Theomouth"}},{"attributes":{"name":"Isaac Abernathy","age":59,"location":"Krisfurt"}},{"attributes":{"name":"Laverne Jones","age":45,"location":"Pollichland"}},{"attributes":{"name":"Lupe Predovic","age":28,"location":"Lucianoworth"}},{"attributes":{"name":"Ronnie Brown","age":77,"location":"Kettering"}},{"attributes":{"name":"Tomas Anderson","age":72,"location":"Antoinettechester"}},{"attributes":{"name":"Mrs. George Turner","age":31,"location":"East Orange"}},{"attributes":{"name":"Erin Walker","age":48,"location":"Cape Coral"}},{"attributes":{"name":"Felicity Jast PhD","age":76,"location":"Torpfield"}},{"attributes":{"name":"Danielle Gulgowski Sr.","age":39,"location":"Moline"}},{"attributes":{"name":"Mr. Perry Bernier Sr.","age":47,"location":"South Thea"}},{"attributes":{"name":"Mavis Torphy DDS","age":30,"location":"Lake Brennonburgh"}},{"attributes":{"name":"Marjorie Cole","age":69,"location":"Pourosberg"}},{"attributes":{"name":"Vince Cassin","age":31,"location":"Albertacester"}},{"attributes":{"name":"Nelle Conn IV","age":53,"location":"Emmerichville"}},{"attributes":{"name":"Mrs. Rickey Heaney I","age":63,"location":"Fort Amiemouth"}},{"attributes":{"name":"Mr. Henry Mayert V","age":71,"location":"Casimerboro"}},{"attributes":{"name":"Minnie Homenick","age":76,"location":"Fort Hailee"}},{"attributes":{"name":"Dr. Patricia Kiehn","age":31,"location":"Berwyn"}},{"attributes":{"name":"Jessie Nitzsche","age":69,"location":"South Brooklyn"}},{"attributes":{"name":"Dr. Adrian Blanda","age":64,"location":"North Obiefurt"}},{"attributes":{"name":"Leah Rolfson","age":58,"location":"Jedside"}},{"attributes":{"name":"Frank Runolfsson","age":28,"location":"Tampa"}},{"attributes":{"name":"Mohammad Kilback PhD","age":36,"location":"Karinaburgh"}},{"attributes":{"name":"Miss Madie Metz","age":21,"location":"Henryton"}},{"attributes":{"name":"Roel Keeling","age":35,"location":"North Corene"}},{"attributes":{"name":"Kelvin Rogahn","age":50,"location":"Christelleside"}},{"attributes":{"name":"Kyra Leffler","age":28,"location":"Simonisboro"}},{"attributes":{"name":"Eugene Schuppe","age":29,"location":"Fort Gladycechester"}},{"attributes":{"name":"Kristie Langosh","age":57,"location":"North Austynchester"}},{"attributes":{"name":"Mr. Tom Vandervort","age":19,"location":"Baumbachfort"}},{"attributes":{"name":"Jacob Quitzon","age":53,"location":"Lake Easter"}},{"attributes":{"name":"Amira Franecki","age":40,"location":"Tevinland"}},{"attributes":{"name":"Omer Bednar","age":61,"location":"Castle Rock"}},{"attributes":{"name":"Kim Kertzmann-Stark Jr.","age":36,"location":"New Mylene"}},{"attributes":{"name":"Eula Mills","age":63,"location":"Eleonorestead"}},{"attributes":{"name":"Gerardo Gusikowski","age":51,"location":"Boulder"}},{"attributes":{"name":"Amanda Mills","age":25,"location":"Port Carleefurt"}},{"attributes":{"name":"Destinee Jacobson","age":42,"location":"Weston"}},{"attributes":{"name":"Junior Upton","age":24,"location":"Juvenalport"}},{"attributes":{"name":"Taryn Stamm","age":50,"location":"Townechester"}},{"attributes":{"name":"Olivia DuBuque","age":50,"location":"Lynchburg"}},{"attributes":{"name":"Mrs. Tracey Emmerich","age":37,"location":"Connerton"}},{"attributes":{"name":"Robbie Lubowitz","age":30,"location":"North Mercedes"}},{"attributes":{"name":"Janice Howe","age":43,"location":"O'Reillymouth"}},{"attributes":{"name":"Lorena Bartoletti","age":54,"location":"Litzystad"}},{"attributes":{"name":"Darius Krajcik","age":30,"location":"Port Cynthia"}},{"attributes":{"name":"Devin Marks","age":69,"location":"New Hannah"}},{"attributes":{"name":"Earl D'Amore","age":20,"location":"Uptonchester"}},{"attributes":{"name":"Traci Gibson","age":67,"location":"Beaverton"}},{"attributes":{"name":"Michele Franecki","age":70,"location":"Christianaborough"}},{"attributes":{"name":"Jessie Wolff-Wunsch","age":63,"location":"Boyleworth"}},{"attributes":{"name":"Casey Fahey","age":18,"location":"Port Shawncester"}},{"attributes":{"name":"Kameron Mayert","age":75,"location":"Jacobsmouth"}},{"attributes":{"name":"Dorothy Stracke","age":37,"location":"West Eldred"}},{"attributes":{"name":"Jennie Weimann","age":29,"location":"South Anabelle"}},{"attributes":{"name":"Dan Murazik","age":72,"location":"Saigefurt"}},{"attributes":{"name":"Nicolas Schowalter","age":76,"location":"Riverview"}},{"attributes":{"name":"Hilton Wilkinson","age":20,"location":"Zackerystead"}},{"attributes":{"name":"Mr. Clark Gutmann II","age":25,"location":"Khalidborough"}},{"attributes":{"name":"Vicki Cremin","age":62,"location":"Gloriaview"}},{"attributes":{"name":"Reginald O'Hara","age":53,"location":"Karlieburgh"}},{"attributes":{"name":"Joanne Hodkiewicz II","age":42,"location":"Fort Wayne"}},{"attributes":{"name":"Ms. Monique Roberts-Hartmann IV","age":18,"location":"Spencerborough"}},{"attributes":{"name":"Geneva Kunze","age":47,"location":"Cicero"}},{"attributes":{"name":"Steven Sauer","age":57,"location":"The Woodlands"}},{"attributes":{"name":"Remington Rodriguez","age":78,"location":"Port Nat"}},{"attributes":{"name":"Derek Treutel","age":47,"location":"Feilfield"}},{"attributes":{"name":"Walter Farrell Jr.","age":56,"location":"Drewworth"}},{"attributes":{"name":"Bette Balistreri","age":45,"location":"Koeppworth"}},{"attributes":{"name":"Karina Konopelski","age":72,"location":"Rippinfurt"}},{"attributes":{"name":"Charlotte Schimmel-Cormier","age":38,"location":"Devontecester"}},{"attributes":{"name":"Beatrice Mueller-Bernhard","age":58,"location":"Biankachester"}},{"attributes":{"name":"Morris Waters MD","age":70,"location":"Lake Rossieworth"}},{"attributes":{"name":"Lee Emard","age":68,"location":"Las Cruces"}},{"attributes":{"name":"Estelle Schumm","age":66,"location":"New Niko"}},{"attributes":{"name":"Judith Auer","age":74,"location":"Port Emmanuelle"}},{"attributes":{"name":"Dr. Barbara Christiansen","age":48,"location":"Federicofield"}},{"attributes":{"name":"Josianne McKenzie","age":62,"location":"Marquardtchester"}},{"attributes":{"name":"Dr. Alice Schuppe","age":56,"location":"North Trudiestad"}},{"attributes":{"name":"Ms. Johnnie Gulgowski","age":70,"location":"Albertashire"}},{"attributes":{"name":"Lora Rippin","age":21,"location":"Lake Romacester"}},{"attributes":{"name":"Mr. Tiara Boyer","age":23,"location":"Bernadinefurt"}},{"attributes":{"name":"Sven Parker I","age":43,"location":"Collinsfurt"}},{"attributes":{"name":"Deron Goldner Sr.","age":22,"location":"Port Amyaville"}},{"attributes":{"name":"Sandra Muller II","age":50,"location":"Perris"}},{"attributes":{"name":"Brooklyn Bergstrom","age":35,"location":"Gainesville"}},{"attributes":{"name":"Ruben Hansen","age":30,"location":"West Aliciachester"}},{"attributes":{"name":"Roberto Stiedemann","age":30,"location":"Issacton"}},{"attributes":{"name":"Louise Hermann III","age":68,"location":"Nikitahaven"}},{"attributes":{"name":"Jan MacGyver","age":55,"location":"Lake Duncanborough"}},{"attributes":{"name":"Franklin Leuschke","age":34,"location":"Lancaster"}},{"attributes":{"name":"Cecilia Kemmer","age":53,"location":"West Marcostad"}},{"attributes":{"name":"Cary Waters","age":34,"location":"Hettingerstead"}},{"attributes":{"name":"Daniella Gerlach","age":28,"location":"Lake Ridge"}},{"attributes":{"name":"Geoffrey Kling","age":52,"location":"Leonelcester"}},{"attributes":{"name":"Felipe Mertz","age":35,"location":"South Jessy"}},{"attributes":{"name":"Dr. Courtney Erdman","age":76,"location":"Naomiborough"}},{"attributes":{"name":"Melvin Stroman","age":54,"location":"Barrowsfield"}},{"attributes":{"name":"Michel Dicki","age":66,"location":"West Vernonport"}},{"attributes":{"name":"Albert Bradtke","age":47,"location":"South Nicolettehaven"}},{"attributes":{"name":"Dr. Rickey Dickinson V","age":50,"location":"Lake Leolahaven"}},{"attributes":{"name":"Kristina Feest","age":37,"location":"Town 'n' Country"}},{"attributes":{"name":"Isabella Kling Sr.","age":21,"location":"Bruceland"}},{"attributes":{"name":"Al Stamm","age":42,"location":"Gregorioside"}},{"attributes":{"name":"Michele Schuppe","age":42,"location":"North Gudrunstad"}},{"attributes":{"name":"Bruce Botsford","age":76,"location":"Hahncester"}},{"attributes":{"name":"Pearlie Wisoky","age":20,"location":"West Jayne"}},{"attributes":{"name":"Dr. Faith Metz","age":70,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Roy Schamberger","age":67,"location":"New Geraldine"}},{"attributes":{"name":"Carl Runte","age":39,"location":"Petrafurt"}},{"attributes":{"name":"Dr. Brannon Schamberger","age":22,"location":"Port Kurt"}},{"attributes":{"name":"Pamela Schoen","age":42,"location":"Mollymouth"}},{"attributes":{"name":"Cedric Johns","age":20,"location":"Runolfssonville"}},{"attributes":{"name":"Ettie Cartwright","age":52,"location":"East Polly"}},{"attributes":{"name":"Elvira McLaughlin","age":28,"location":"Lake Harmony"}},{"attributes":{"name":"Clay Treutel","age":64,"location":"Fort Minaworth"}},{"attributes":{"name":"Delbert McClure","age":27,"location":"East Lue"}},{"attributes":{"name":"Pablo Marvin","age":51,"location":"Port Gloriaton"}},{"attributes":{"name":"Lora Sporer MD","age":18,"location":"Ankeny"}},{"attributes":{"name":"Gabriel Fahey","age":67,"location":"East Markusland"}},{"attributes":{"name":"Heaven Witting","age":41,"location":"Kristaport"}},{"attributes":{"name":"Tom MacGyver","age":40,"location":"Roobmouth"}},{"attributes":{"name":"Coty Huel","age":79,"location":"Feesttown"}},{"attributes":{"name":"Coralie Berge","age":50,"location":"East Danielleside"}},{"attributes":{"name":"Kaci Runolfsdottir","age":51,"location":"Greenville"}},{"attributes":{"name":"Brain Zemlak-Cummerata PhD","age":37,"location":"New Maurice"}},{"attributes":{"name":"Delphine Langosh","age":73,"location":"West Maximilliacester"}},{"attributes":{"name":"Arno Miller","age":56,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Jaden Carter","age":49,"location":"Lake Angie"}},{"attributes":{"name":"Tiffany Rath","age":46,"location":"Westminster"}},{"attributes":{"name":"Kent Orn","age":31,"location":"Mertzberg"}},{"attributes":{"name":"Saul Dooley","age":70,"location":"South Johanberg"}},{"attributes":{"name":"Cale Heathcote","age":39,"location":"Lake Lavernaburgh"}},{"attributes":{"name":"Roderick Roberts-Howe","age":61,"location":"Port Tillman"}},{"attributes":{"name":"Ella Monahan","age":55,"location":"Lake Nikolasfort"}},{"attributes":{"name":"Cornelius Berge","age":48,"location":"West Rosendo"}},{"attributes":{"name":"Mr. Alexander Torphy","age":49,"location":"Port Omari"}},{"attributes":{"name":"Carolyn Rohan DDS","age":61,"location":"Minnetonka"}},{"attributes":{"name":"Kristina Pouros","age":22,"location":"Cronahaven"}},{"attributes":{"name":"Ethel Schaden","age":44,"location":"Paigefield"}},{"attributes":{"name":"Adeline Borer","age":42,"location":"Bel Air South"}},{"attributes":{"name":"Kent Windler","age":32,"location":"Yoshikoville"}},{"attributes":{"name":"Ross Macejkovic","age":19,"location":"Peytonland"}},{"attributes":{"name":"Clifford Marvin","age":76,"location":"Renton"}},{"attributes":{"name":"Jermaine O'Kon","age":26,"location":"Atascocita"}},{"attributes":{"name":"Boyd Mosciski","age":79,"location":"Lestercester"}},{"attributes":{"name":"Marjolaine Beahan","age":42,"location":"New Sabinatown"}},{"attributes":{"name":"Ronnie Wisoky","age":72,"location":"Wyattboro"}},{"attributes":{"name":"Quincy Hettinger","age":22,"location":"Torphyside"}},{"attributes":{"name":"April Kilback","age":34,"location":"North Desmondbury"}},{"attributes":{"name":"Steven Sipes","age":65,"location":"Alfonzoberg"}},{"attributes":{"name":"Alan Swift","age":54,"location":"Jefferymouth"}},{"attributes":{"name":"Marian Wunsch","age":32,"location":"Bechtelarchester"}},{"attributes":{"name":"Haven Rohan","age":70,"location":"North Berylfort"}},{"attributes":{"name":"Anne Nienow","age":50,"location":"Hegmannberg"}},{"attributes":{"name":"Eddie McClure IV","age":52,"location":"Wardland"}},{"attributes":{"name":"Jordan Hackett","age":40,"location":"Gersonboro"}},{"attributes":{"name":"Betsy Wehner","age":19,"location":"Lake Dougburgh"}},{"attributes":{"name":"Jarret Hyatt","age":33,"location":"Lauriecester"}},{"attributes":{"name":"Misty Greenfelder","age":20,"location":"Santinaberg"}},{"attributes":{"name":"Camron Streich","age":80,"location":"Holdenside"}},{"attributes":{"name":"Lonzo Barrows","age":54,"location":"Willside"}},{"attributes":{"name":"Irma Mayert","age":40,"location":"North Casimir"}},{"attributes":{"name":"Wesley Luettgen","age":62,"location":"Carrollside"}},{"attributes":{"name":"Dr. Willis Raynor Sr.","age":69,"location":"Lake Effiebury"}},{"attributes":{"name":"Kay Crooks Jr.","age":50,"location":"Lake Lavernstad"}},{"attributes":{"name":"Felicia Doyle DDS","age":67,"location":"Jeffreyside"}},{"attributes":{"name":"Tracy Walsh","age":49,"location":"Windlermouth"}},{"attributes":{"name":"Ellis Hagenes","age":80,"location":"Youngstown"}},{"attributes":{"name":"Christian Goldner","age":38,"location":"Blockfurt"}},{"attributes":{"name":"Kate Wilderman","age":29,"location":"Schusterhaven"}},{"attributes":{"name":"Timothy Hand","age":26,"location":"Revashire"}},{"attributes":{"name":"Claudia Mante","age":21,"location":"Saginaw"}},{"attributes":{"name":"Don Hettinger Sr.","age":72,"location":"West Pedro"}},{"attributes":{"name":"Kendall Hammes IV","age":27,"location":"Cape Coral"}},{"attributes":{"name":"Eleanore Purdy","age":70,"location":"Ritchieport"}},{"attributes":{"name":"Mrs. Destany Reichel IV","age":58,"location":"New Laurystad"}},{"attributes":{"name":"Liliane Fahey MD","age":67,"location":"Casperland"}},{"attributes":{"name":"Juliet Hirthe","age":34,"location":"Matildaberg"}},{"attributes":{"name":"Mr. Bart Leannon","age":66,"location":"Lionelville"}},{"attributes":{"name":"Caterina Bahringer","age":59,"location":"Wylie"}},{"attributes":{"name":"Jordan Daniel","age":48,"location":"Lake Sallie"}},{"attributes":{"name":"Louis Rohan","age":39,"location":"Howellmouth"}},{"attributes":{"name":"Traci Ondricka","age":48,"location":"Cloydfort"}},{"attributes":{"name":"Jackie Beer","age":42,"location":"Boscoview"}},{"attributes":{"name":"Ms. Porter Powlowski","age":64,"location":"Port Eltatown"}},{"attributes":{"name":"Davonte Mueller DDS","age":51,"location":"Fort Creola"}},{"attributes":{"name":"Travon O'Conner II","age":33,"location":"Desireecester"}},{"attributes":{"name":"Eva Hauck","age":31,"location":"Lake Kyraport"}},{"attributes":{"name":"Rowan West","age":28,"location":"South Marionhaven"}},{"attributes":{"name":"Savannah Hahn","age":47,"location":"Marcosfurt"}},{"attributes":{"name":"Max Ziemann","age":70,"location":"Livermore"}},{"attributes":{"name":"Sidney Ernser","age":38,"location":"Federal Way"}},{"attributes":{"name":"Miss Josephine Friesen DDS","age":29,"location":"Grand Rapids"}},{"attributes":{"name":"Mathew Hyatt","age":75,"location":"New Roycemouth"}},{"attributes":{"name":"Clarence Pacocha","age":48,"location":"Abelton"}},{"attributes":{"name":"Clare Bednar","age":52,"location":"South Alexie"}},{"attributes":{"name":"Lindsay Murray PhD","age":58,"location":"Hegmannborough"}},{"attributes":{"name":"Sally Hansen","age":42,"location":"Johnstonberg"}},{"attributes":{"name":"Mrs. Eldred Konopelski","age":26,"location":"Attleboro"}},{"attributes":{"name":"Sonja Schinner","age":47,"location":"Murphyport"}},{"attributes":{"name":"Georgette Gutkowski","age":43,"location":"South Marisolberg"}},{"attributes":{"name":"Susan Smith","age":76,"location":"Einohaven"}},{"attributes":{"name":"Alexander Zieme","age":53,"location":"White Plains"}},{"attributes":{"name":"Kenneth Jaskolski","age":75,"location":"VonRuedenfield"}},{"attributes":{"name":"Dominic Bernhard","age":40,"location":"Fort Ceciliaburgh"}},{"attributes":{"name":"Paxton Pouros Sr.","age":36,"location":"South Tremayne"}},{"attributes":{"name":"Eddie Runte","age":68,"location":"Edinburg"}},{"attributes":{"name":"Cecil Kutch","age":71,"location":"South Zakary"}},{"attributes":{"name":"Miss Roma Langosh","age":19,"location":"Carolina"}},{"attributes":{"name":"Violet Dickens","age":69,"location":"Quincy"}},{"attributes":{"name":"Monte Ledner","age":49,"location":"Lake Charles"}},{"attributes":{"name":"Connie Larkin","age":58,"location":"Wolfborough"}},{"attributes":{"name":"Katie Boyer","age":60,"location":"South Ellietown"}},{"attributes":{"name":"Lucio Kemmer","age":75,"location":"Lisettefort"}},{"attributes":{"name":"Mr. Kerry Thompson","age":42,"location":"Brigitteside"}},{"attributes":{"name":"Nina Rohan","age":62,"location":"West Pattie"}},{"attributes":{"name":"Montana Kerluke","age":79,"location":"San Rafael"}},{"attributes":{"name":"Imelda Batz","age":49,"location":"Fort Colleenchester"}},{"attributes":{"name":"Kaley Bergnaum","age":19,"location":"Dellashire"}},{"attributes":{"name":"Bernadette Mertz","age":34,"location":"Heberfurt"}},{"attributes":{"name":"Gary Lockman","age":22,"location":"Kyraside"}},{"attributes":{"name":"Doyle Moore","age":45,"location":"North Lindsey"}},{"attributes":{"name":"Jean Wisozk","age":22,"location":"West Walter"}},{"attributes":{"name":"Lelah Powlowski","age":22,"location":"West Jessyca"}},{"attributes":{"name":"Cynthia McLaughlin","age":56,"location":"Kihnborough"}},{"attributes":{"name":"Kiana Heller","age":79,"location":"Mattmouth"}},{"attributes":{"name":"Katrine Batz","age":45,"location":"Pine Hills"}},{"attributes":{"name":"Ann Gutmann","age":45,"location":"Jaronhaven"}},{"attributes":{"name":"Willard Moen","age":29,"location":"North Joancester"}},{"attributes":{"name":"Kim Mills II","age":77,"location":"New Johnathan"}},{"attributes":{"name":"Esta Hickle","age":35,"location":"Jillianville"}},{"attributes":{"name":"Clare Morar","age":31,"location":"Lake Imogeneport"}},{"attributes":{"name":"Bernice Bartoletti","age":39,"location":"Eugene"}},{"attributes":{"name":"Teresa Kulas","age":35,"location":"Bernieceburgh"}},{"attributes":{"name":"Shari Schaden","age":23,"location":"West Bonita"}},{"attributes":{"name":"Mrs. Jefferey Gleason PhD","age":72,"location":"Fort Deshawnbury"}},{"attributes":{"name":"Astrid Waelchi","age":51,"location":"Murraychester"}},{"attributes":{"name":"Jacinthe Klein-Shanahan PhD","age":21,"location":"Fort Brodyburgh"}},{"attributes":{"name":"Dan Reinger","age":19,"location":"Fort Raymundoside"}},{"attributes":{"name":"Derrick Lindgren","age":20,"location":"Port Sabrina"}},{"attributes":{"name":"Manuel Nienow","age":46,"location":"Hendersonton"}},{"attributes":{"name":"Aisha Herzog","age":61,"location":"New Onieton"}},{"attributes":{"name":"Camille Gerlach","age":52,"location":"Akron"}},{"attributes":{"name":"Dr. Jovany Dietrich","age":56,"location":"San Jacinto"}},{"attributes":{"name":"Rigoberto Boyle Sr.","age":79,"location":"Gilbertohaven"}},{"attributes":{"name":"Dr. Esteban Windler-Fahey","age":67,"location":"Port Carmelabury"}},{"attributes":{"name":"Howard Bartell","age":54,"location":"Legrosberg"}},{"attributes":{"name":"Avery Hane","age":79,"location":"Feilville"}},{"attributes":{"name":"Belinda Ward","age":70,"location":"North Laisha"}},{"attributes":{"name":"Tomas Price","age":55,"location":"Waltershire"}},{"attributes":{"name":"Dr. Lori Lang","age":80,"location":"South Whittier"}},{"attributes":{"name":"Gregory Bauch DVM","age":67,"location":"New Ruthieville"}},{"attributes":{"name":"Rudolph Hamill","age":65,"location":"Hermancester"}},{"attributes":{"name":"Shawn Terry","age":71,"location":"Allenborough"}},{"attributes":{"name":"Rene Weimann","age":56,"location":"Romaguerafort"}},{"attributes":{"name":"Christopher Cassin","age":58,"location":"St. Clair Shores"}},{"attributes":{"name":"Herman Botsford","age":43,"location":"Port Melyna"}},{"attributes":{"name":"Stefanie Beahan","age":48,"location":"Fort Melany"}},{"attributes":{"name":"Abdullah Denesik","age":43,"location":"North Miami Beach"}},{"attributes":{"name":"Elisabeth McClure","age":38,"location":"South Kaya"}},{"attributes":{"name":"Jon Bergnaum","age":46,"location":"Gleichnerport"}},{"attributes":{"name":"Zachary Hudson","age":24,"location":"Fort Jerry"}},{"attributes":{"name":"Reta Stoltenberg MD","age":50,"location":"Raleigh"}},{"attributes":{"name":"Vincent Gislason","age":56,"location":"Verdastad"}},{"attributes":{"name":"Miss Fermin Aufderhar","age":50,"location":"West Antwanshire"}},{"attributes":{"name":"Ben McDermott","age":41,"location":"Jessiefurt"}},{"attributes":{"name":"Cheryl Monahan","age":20,"location":"Maeganhaven"}},{"attributes":{"name":"Mr. Erik Jacobi","age":56,"location":"West Martineport"}},{"attributes":{"name":"Hilda Hintz","age":63,"location":"Port Javontetown"}},{"attributes":{"name":"Leilani Schamberger","age":74,"location":"New Alexa"}},{"attributes":{"name":"Aiyana Cassin","age":29,"location":"Tevinworth"}},{"attributes":{"name":"Fatima Feeney Sr.","age":43,"location":"Hintzmouth"}},{"attributes":{"name":"Ernestine Bartoletti","age":52,"location":"Hesselfurt"}},{"attributes":{"name":"Muriel Price","age":77,"location":"Glendora"}},{"attributes":{"name":"Allie Greenholt","age":63,"location":"Montgomery"}},{"attributes":{"name":"Milton Welch","age":77,"location":"North Norbertoworth"}},{"attributes":{"name":"Ms. Andrea O'Kon","age":20,"location":"Riceberg"}},{"attributes":{"name":"Mr. Irvin Smith","age":43,"location":"Fort Archcester"}},{"attributes":{"name":"Johnpaul Davis","age":73,"location":"New Camillecester"}},{"attributes":{"name":"Wilton Ward-Purdy","age":78,"location":"Bretfurt"}},{"attributes":{"name":"Van Robel","age":69,"location":"Delano"}},{"attributes":{"name":"Arnold Cronin","age":35,"location":"Palo Alto"}},{"attributes":{"name":"Benton Oberbrunner","age":57,"location":"Angelfort"}},{"attributes":{"name":"Pete Aufderhar","age":32,"location":"Lake Bryana"}},{"attributes":{"name":"Ms. Terence Kihn","age":24,"location":"Folsom"}},{"attributes":{"name":"Oliver Feeney","age":56,"location":"New Donaldberg"}},{"attributes":{"name":"Sharon Gleason","age":56,"location":"New Rashawn"}},{"attributes":{"name":"Dexter Osinski","age":19,"location":"Kutchworth"}},{"attributes":{"name":"Kristy Reichert","age":41,"location":"Flatleyport"}},{"attributes":{"name":"Rodolfo Connelly","age":66,"location":"Ashburn"}},{"attributes":{"name":"Edna Kuphal","age":37,"location":"Carmichael"}},{"attributes":{"name":"Anne Legros I","age":58,"location":"New Waltonville"}},{"attributes":{"name":"Ramon Rowe","age":34,"location":"Christopborough"}},{"attributes":{"name":"Mr. Lue Doyle DVM","age":77,"location":"North Gertrudeworth"}},{"attributes":{"name":"Lee Zemlak","age":78,"location":"Ritaberg"}},{"attributes":{"name":"Ms. Dana Douglas","age":30,"location":"San Leandro"}},{"attributes":{"name":"Joan Shanahan","age":55,"location":"Port Werner"}},{"attributes":{"name":"Brian Waelchi","age":40,"location":"Hudsonville"}},{"attributes":{"name":"Hailey Howe","age":59,"location":"New Marielle"}},{"attributes":{"name":"Chaz Lueilwitz","age":70,"location":"Kuhlmanborough"}},{"attributes":{"name":"Gaetano Beer","age":49,"location":"Port Martine"}},{"attributes":{"name":"Alan Mueller","age":22,"location":"Stromanstead"}},{"attributes":{"name":"Beulah Rogahn","age":56,"location":"Schmittfort"}},{"attributes":{"name":"Brendan Powlowski","age":22,"location":"Oralfurt"}},{"attributes":{"name":"Javon Kuhlman","age":48,"location":"Hoboken"}},{"attributes":{"name":"Jason Hauck","age":80,"location":"East Jeffrey"}},{"attributes":{"name":"Adaline Lesch","age":28,"location":"Carson City"}},{"attributes":{"name":"Gertrude Thompson","age":31,"location":"Feliciaville"}},{"attributes":{"name":"Orlando Hickle","age":22,"location":"Cincinnati"}},{"attributes":{"name":"Shari Lueilwitz","age":64,"location":"Denesikview"}},{"attributes":{"name":"Norwood Cremin","age":45,"location":"Muellerfield"}},{"attributes":{"name":"Kraig Frami-Kovacek","age":39,"location":"Owenbury"}},{"attributes":{"name":"Mrs. Makenna Rau","age":53,"location":"Millsfurt"}},{"attributes":{"name":"Cary Wiza","age":53,"location":"Lyricton"}},{"attributes":{"name":"Presley Lind","age":71,"location":"Fort Lonfield"}},{"attributes":{"name":"Clair Christiansen","age":79,"location":"Zorastead"}},{"attributes":{"name":"Manuel Jaskolski","age":70,"location":"South Brent"}},{"attributes":{"name":"Cecelia Hudson-Hackett","age":74,"location":"Port Ray"}},{"attributes":{"name":"Dominic Beier","age":76,"location":"Lake Marcelotown"}},{"attributes":{"name":"Ansley Anderson","age":79,"location":"West Remingtonbury"}},{"attributes":{"name":"Carley Sauer","age":47,"location":"Meriden"}},{"attributes":{"name":"Carl Toy","age":55,"location":"Cypress"}},{"attributes":{"name":"Miss Caroline Stroman","age":68,"location":"New Deloresland"}},{"attributes":{"name":"Osbaldo Nolan","age":78,"location":"Quitzonfield"}},{"attributes":{"name":"Noah Mante","age":47,"location":"Port Jarred"}},{"attributes":{"name":"Pam Watsica","age":48,"location":"Murfreesboro"}},{"attributes":{"name":"Scarlett Bashirian","age":75,"location":"New Ryannberg"}},{"attributes":{"name":"Margaretta King","age":47,"location":"Kihnborough"}},{"attributes":{"name":"Dr. Tara Bergstrom","age":29,"location":"Abernathyfort"}},{"attributes":{"name":"Ms. Terrance Kilback","age":60,"location":"West Malinda"}},{"attributes":{"name":"Zita Herman III","age":27,"location":"Port Rachaelborough"}},{"attributes":{"name":"Jovany Johnston","age":53,"location":"West Lindsaymouth"}},{"attributes":{"name":"Rosemary Dicki","age":64,"location":"West Alanisview"}},{"attributes":{"name":"Dangelo Schroeder","age":38,"location":"North Tatumside"}},{"attributes":{"name":"Marcus Ebert","age":19,"location":"Demarcomouth"}},{"attributes":{"name":"Fritz Bergstrom","age":32,"location":"West Jessland"}},{"attributes":{"name":"Dr. Bethany Lockman","age":65,"location":"Kuvalisview"}},{"attributes":{"name":"Irma Wolff","age":42,"location":"Stiedemannborough"}},{"attributes":{"name":"Angel Cronin","age":36,"location":"Port Rupertfield"}},{"attributes":{"name":"Melissa Jacobi","age":39,"location":"Elodyton"}},{"attributes":{"name":"Matthew Yost","age":19,"location":"Abernathychester"}},{"attributes":{"name":"Orville Rolfson","age":51,"location":"Durganstead"}},{"attributes":{"name":"Shawna Hettinger","age":65,"location":"Fort Devin"}},{"attributes":{"name":"Jaqueline Barrows","age":54,"location":"New Damonhaven"}},{"attributes":{"name":"Julie Kunde II","age":22,"location":"Ashburn"}},{"attributes":{"name":"Lucious Robel","age":43,"location":"Maeganfurt"}},{"attributes":{"name":"Edith Brakus","age":69,"location":"Buffalo Grove"}},{"attributes":{"name":"Spencer Johnson IV","age":37,"location":"East Zetta"}},{"attributes":{"name":"Pablo Koelpin","age":69,"location":"North Maritzastad"}},{"attributes":{"name":"Genoveva Hayes","age":79,"location":"Darrylworth"}},{"attributes":{"name":"Lorena Stamm","age":50,"location":"Dariusfort"}},{"attributes":{"name":"Ayden Hartmann","age":27,"location":"Sporerberg"}},{"attributes":{"name":"Kraig Krajcik","age":34,"location":"Fort Maverick"}},{"attributes":{"name":"Priscilla McDermott II","age":35,"location":"Paradise"}},{"attributes":{"name":"Mavis Considine","age":44,"location":"Enriqueworth"}},{"attributes":{"name":"Liza Waelchi","age":73,"location":"Maryamboro"}},{"attributes":{"name":"Leo Toy","age":56,"location":"Lake Gerald"}},{"attributes":{"name":"Dr. Wava Christiansen-Osinski","age":68,"location":"Novi"}},{"attributes":{"name":"Reynold Lebsack","age":59,"location":"Goldnerberg"}},{"attributes":{"name":"Gregoria Rodriguez","age":22,"location":"Lake May"}},{"attributes":{"name":"Derrick Hessel","age":22,"location":"Rowlett"}},{"attributes":{"name":"Janie Dickinson","age":26,"location":"Hadleystad"}},{"attributes":{"name":"Evan Heidenreich","age":26,"location":"Lawrenceview"}},{"attributes":{"name":"Harriet Schneider","age":70,"location":"New Braunfels"}},{"attributes":{"name":"Timothy Murray","age":79,"location":"Joannemouth"}},{"attributes":{"name":"Friedrich Rippin","age":57,"location":"Nikotown"}},{"attributes":{"name":"Lafayette O'Connell","age":38,"location":"Keshawnstead"}},{"attributes":{"name":"Rafael Wiegand","age":53,"location":"Port Lyric"}},{"attributes":{"name":"Edmund Krajcik","age":77,"location":"Haneberg"}},{"attributes":{"name":"Letha Mertz","age":49,"location":"Parkercester"}},{"attributes":{"name":"Monique Hermann","age":61,"location":"Langworthcester"}},{"attributes":{"name":"Olga Luettgen","age":63,"location":"Fort Brianneview"}},{"attributes":{"name":"Braeden Stark II","age":67,"location":"North Myrlfort"}},{"attributes":{"name":"Dr. Bret Heller","age":56,"location":"Enid"}},{"attributes":{"name":"Rex McGlynn","age":30,"location":"Bashirianport"}},{"attributes":{"name":"Melyssa Funk","age":63,"location":"Kamronmouth"}},{"attributes":{"name":"Danny Wehner","age":49,"location":"Federal Way"}},{"attributes":{"name":"Mariane Medhurst","age":29,"location":"Fort Reggieburgh"}},{"attributes":{"name":"Mitchell Miller","age":50,"location":"Port Renee"}},{"attributes":{"name":"Osbaldo Reichert","age":24,"location":"Port Kaseyland"}},{"attributes":{"name":"Margaret Rolfson","age":72,"location":"Fort Collins"}},{"attributes":{"name":"Kiley Donnelly","age":22,"location":"Surprise"}},{"attributes":{"name":"Marilyne Hand","age":25,"location":"Port Armando"}},{"attributes":{"name":"Dr. Jazmin Rogahn","age":72,"location":"Collinsborough"}},{"attributes":{"name":"Rochelle Little","age":77,"location":"South Justonburgh"}},{"attributes":{"name":"Drake Greenfelder","age":74,"location":"Lake Riverport"}},{"attributes":{"name":"Madeline Predovic","age":51,"location":"Gilbert"}},{"attributes":{"name":"Doug Batz","age":46,"location":"Favianville"}},{"attributes":{"name":"Sarai Bode","age":70,"location":"Logan"}},{"attributes":{"name":"Dannie Bergstrom","age":40,"location":"Tillmanton"}},{"attributes":{"name":"Latoya Rowe","age":62,"location":"Danteville"}},{"attributes":{"name":"Charlotte Morissette DVM","age":52,"location":"Pearlport"}},{"attributes":{"name":"Tabitha Russel","age":33,"location":"Port Orpha"}},{"attributes":{"name":"Samir Ernser","age":48,"location":"Pittsburgh"}},{"attributes":{"name":"Dr. Rene Welch","age":47,"location":"East Leila"}},{"attributes":{"name":"Ben Mertz","age":74,"location":"Port Kimfurt"}},{"attributes":{"name":"Tamara Kuhic","age":66,"location":"Port Judge"}},{"attributes":{"name":"Miss Virgil Mayert-Nienow","age":76,"location":"Langboro"}},{"attributes":{"name":"Elsie Dach","age":36,"location":"Carrollcester"}},{"attributes":{"name":"Mireya Hirthe","age":75,"location":"Port Brenna"}},{"attributes":{"name":"Mavis Kihn","age":54,"location":"North Maritzaburgh"}},{"attributes":{"name":"Ludie Bednar III","age":69,"location":"East Kieran"}},{"attributes":{"name":"Hermina Olson","age":61,"location":"Greenholtfurt"}},{"attributes":{"name":"Alicia Murazik","age":45,"location":"Hawthorne"}},{"attributes":{"name":"Madisyn Beahan","age":42,"location":"Vallejo"}},{"attributes":{"name":"Jody Kihn IV","age":33,"location":"South Eulah"}},{"attributes":{"name":"Jonathan Lind","age":38,"location":"North Rene"}},{"attributes":{"name":"Kelli Carroll","age":64,"location":"Knoxville"}},{"attributes":{"name":"Charlene Boyer","age":46,"location":"Fort Paulineborough"}},{"attributes":{"name":"Mrs. Gretchen Schinner","age":22,"location":"Gloriaberg"}},{"attributes":{"name":"Edgardo Boyle","age":61,"location":"Asheville"}},{"attributes":{"name":"Deanna Schroeder","age":55,"location":"North Janick"}},{"attributes":{"name":"Dave Koelpin","age":68,"location":"Lake Thaddeus"}},{"attributes":{"name":"Daija Pfeffer-Armstrong","age":67,"location":"Greenville"}},{"attributes":{"name":"Carroll Hamill","age":75,"location":"West Melissachester"}},{"attributes":{"name":"Miss Toy Botsford","age":80,"location":"Port Deltastead"}},{"attributes":{"name":"Keeley Fritsch","age":68,"location":"Largo"}},{"attributes":{"name":"Dan Osinski","age":66,"location":"Lake Jettfort"}},{"attributes":{"name":"Lance Dickens","age":57,"location":"Chesterborough"}},{"attributes":{"name":"Rosa Hane","age":65,"location":"Stoltenbergton"}},{"attributes":{"name":"Sonya Kub","age":79,"location":"Klockoburgh"}},{"attributes":{"name":"Phillip Gleason","age":29,"location":"Harberstad"}},{"attributes":{"name":"Caleb Littel","age":41,"location":"Saginaw"}},{"attributes":{"name":"Ken Hermiston","age":71,"location":"North Celinechester"}},{"attributes":{"name":"Dillon Pacocha","age":55,"location":"West Seneca"}},{"attributes":{"name":"Kate Boyer","age":48,"location":"Watsicahaven"}},{"attributes":{"name":"Domingo Ernser","age":37,"location":"Mount Prospect"}},{"attributes":{"name":"Susana Mertz","age":40,"location":"Fort Kellieshire"}},{"attributes":{"name":"Mrs. Arvilla Gutmann","age":37,"location":"Fort Carey"}},{"attributes":{"name":"Elissa Ward","age":36,"location":"Port Laruefurt"}},{"attributes":{"name":"Molly Will","age":32,"location":"Lednermouth"}},{"attributes":{"name":"Shea Bradtke","age":42,"location":"East Gerry"}},{"attributes":{"name":"Mr. Charlotte Dickens","age":57,"location":"Camarillo"}},{"attributes":{"name":"Ernesto Skiles","age":22,"location":"Lake Altown"}},{"attributes":{"name":"Tyson Grady","age":43,"location":"Athenamouth"}},{"attributes":{"name":"Else Legros MD","age":69,"location":"Durganhaven"}},{"attributes":{"name":"Finn Kertzmann","age":51,"location":"Gageview"}},{"attributes":{"name":"Marty Goldner","age":54,"location":"North Miami Beach"}},{"attributes":{"name":"Nathan Feil","age":23,"location":"West Tremaine"}},{"attributes":{"name":"Wendell Welch","age":74,"location":"West Janyfield"}},{"attributes":{"name":"Troy Sipes I","age":63,"location":"New Kennithtown"}},{"attributes":{"name":"Marsha Stanton","age":43,"location":"South Minnieberg"}},{"attributes":{"name":"Marcos Schmitt","age":42,"location":"Port Pabloberg"}},{"attributes":{"name":"Velma Sauer","age":75,"location":"Barnstable Town"}},{"attributes":{"name":"Stuart D'Amore","age":71,"location":"Klockostead"}},{"attributes":{"name":"Wesley Oberbrunner","age":33,"location":"Yuba City"}},{"attributes":{"name":"Allen Wilderman","age":68,"location":"Helmerview"}},{"attributes":{"name":"Fleta Rohan","age":62,"location":"West Jordan"}},{"attributes":{"name":"Maxine Hartmann","age":59,"location":"North Richland Hills"}},{"attributes":{"name":"Danny McDermott PhD","age":50,"location":"Hellenshire"}},{"attributes":{"name":"Jacinthe Barton-Swift I","age":46,"location":"Morissettemouth"}},{"attributes":{"name":"Shirley Emard","age":79,"location":"Rainastad"}},{"attributes":{"name":"Billie Torphy V","age":73,"location":"Hudsonstead"}},{"attributes":{"name":"Robin Balistreri","age":62,"location":"Coleberg"}},{"attributes":{"name":"Mrs. Margaret Steuber","age":71,"location":"Fort Randal"}},{"attributes":{"name":"Darrin Fay","age":40,"location":"North Jimmie"}},{"attributes":{"name":"Orville Thompson","age":66,"location":"Tadmouth"}},{"attributes":{"name":"Ms. Jackie Cartwright","age":69,"location":"Buddybury"}},{"attributes":{"name":"Claude Spinka","age":22,"location":"Mckennamouth"}},{"attributes":{"name":"Giovanny Morissette","age":23,"location":"Huelston"}},{"attributes":{"name":"Kraig Krajcik","age":35,"location":"East Jarred"}},{"attributes":{"name":"Valerie Reilly","age":44,"location":"Sagechester"}},{"attributes":{"name":"Ari Adams","age":60,"location":"Monahantown"}},{"attributes":{"name":"Joanne Wintheiser","age":22,"location":"West Kayleigh"}},{"attributes":{"name":"Jayden Tremblay","age":61,"location":"South Rosetta"}},{"attributes":{"name":"Ms. Rose Wiza","age":76,"location":"Larueport"}},{"attributes":{"name":"Ronnie Bosco","age":25,"location":"Florin"}},{"attributes":{"name":"Earnest McClure Jr.","age":39,"location":"East Orange"}},{"attributes":{"name":"Linnea Weissnat II","age":66,"location":"New Jacestad"}},{"attributes":{"name":"Glenn Mann","age":59,"location":"New Daishacester"}},{"attributes":{"name":"Gerald Fay PhD","age":73,"location":"Fort Candidaboro"}},{"attributes":{"name":"Israel Tromp","age":45,"location":"Hartmannburgh"}},{"attributes":{"name":"Melvin Boyer","age":76,"location":"Gottliebside"}},{"attributes":{"name":"Vicky Hermann","age":57,"location":"Hesperia"}},{"attributes":{"name":"Elisa Huels V","age":47,"location":"Sanford"}},{"attributes":{"name":"Miss Hattie Wyman Jr.","age":76,"location":"New Izabella"}},{"attributes":{"name":"Gina Hermiston","age":60,"location":"Glennaburgh"}},{"attributes":{"name":"Julie McDermott","age":76,"location":"Swiftshire"}},{"attributes":{"name":"Antoinette Kemmer","age":30,"location":"El Paso"}},{"attributes":{"name":"Adeline Ernser","age":77,"location":"Bergstromside"}},{"attributes":{"name":"Brielle Klein","age":22,"location":"Port Jimmie"}},{"attributes":{"name":"Beatrice Dickens","age":63,"location":"Fort Cobyfurt"}},{"attributes":{"name":"Jaleel Dicki","age":47,"location":"West Zane"}},{"attributes":{"name":"Ron Graham","age":72,"location":"Lake Clarissa"}},{"attributes":{"name":"Miss Alphonso Turcotte","age":26,"location":"East Davidside"}},{"attributes":{"name":"Kiana D'Amore","age":79,"location":"Dothan"}},{"attributes":{"name":"Angelo Gulgowski","age":35,"location":"Memphis"}},{"attributes":{"name":"Angela Thompson","age":38,"location":"Croninfort"}},{"attributes":{"name":"Rodney Pfannerstill","age":54,"location":"Lake Jerodport"}},{"attributes":{"name":"Sophia Harber","age":21,"location":"Loweburgh"}},{"attributes":{"name":"Mallory Johnston MD","age":41,"location":"East Darbyshire"}},{"attributes":{"name":"Mrs. Krista Waters","age":50,"location":"Bradtketon"}},{"attributes":{"name":"Inez Gusikowski","age":78,"location":"Sunrise Manor"}},{"attributes":{"name":"Felicita Kuvalis","age":32,"location":"Lake Lily"}},{"attributes":{"name":"Jovanny Lind","age":66,"location":"Burke"}},{"attributes":{"name":"Dr. Crawford Kuhlman","age":64,"location":"West Georgianafort"}},{"attributes":{"name":"Valerie Ratke","age":60,"location":"Funkberg"}},{"attributes":{"name":"Carl Rice","age":18,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Ernesto Grady","age":41,"location":"Clintshire"}},{"attributes":{"name":"Becky Weissnat","age":46,"location":"Johnathanfield"}},{"attributes":{"name":"Jerry Jacobs","age":72,"location":"Fort Favianstad"}},{"attributes":{"name":"Whitney Wisoky","age":55,"location":"New Kian"}},{"attributes":{"name":"Halie Herman","age":63,"location":"North Miami"}},{"attributes":{"name":"Irving West-McKenzie","age":59,"location":"South Hipolito"}},{"attributes":{"name":"Julio Moore","age":30,"location":"New Roseport"}},{"attributes":{"name":"Adell Weber","age":46,"location":"Pollichcester"}},{"attributes":{"name":"Brock Jerde","age":32,"location":"East Darrell"}},{"attributes":{"name":"Mrs. Ebony Fahey","age":58,"location":"Terryberg"}},{"attributes":{"name":"Carole Hammes","age":28,"location":"Lubowitzhaven"}},{"attributes":{"name":"Jimmy Hauck","age":75,"location":"Dickinsoncester"}},{"attributes":{"name":"Ignacio Fadel","age":19,"location":"Wauwatosa"}},{"attributes":{"name":"Gerard Monahan","age":20,"location":"Evanston"}},{"attributes":{"name":"Raven Prosacco","age":62,"location":"Lake Ludie"}},{"attributes":{"name":"Nellie O'Hara","age":61,"location":"East Rheaworth"}},{"attributes":{"name":"Joanne Nicolas","age":76,"location":"Lake Frederique"}},{"attributes":{"name":"Mr. Reuben Larkin","age":43,"location":"Elsebury"}},{"attributes":{"name":"Mrs. Lonny Feest","age":24,"location":"Lake Teresa"}},{"attributes":{"name":"Colin Feest","age":47,"location":"Feeneybury"}},{"attributes":{"name":"Reuben Goodwin","age":36,"location":"Cydneystead"}},{"attributes":{"name":"Dr. Dee Conn","age":76,"location":"Port Daisyworth"}},{"attributes":{"name":"Nikita Dare","age":56,"location":"Bentonville"}},{"attributes":{"name":"Donald Pollich","age":56,"location":"North Graceworth"}},{"attributes":{"name":"Dora Terry","age":71,"location":"South Keagan"}},{"attributes":{"name":"Kali Wiza","age":63,"location":"West Pauline"}},{"attributes":{"name":"Candice Hessel-Ankunding","age":31,"location":"San Tan Valley"}},{"attributes":{"name":"Ramiro Hoeger","age":73,"location":"Port Erling"}},{"attributes":{"name":"Sarah Medhurst","age":22,"location":"Reno"}},{"attributes":{"name":"Mrs. Maggie Grady","age":26,"location":"Costa Mesa"}},{"attributes":{"name":"Wilson Blanda","age":26,"location":"South Rachael"}},{"attributes":{"name":"Dr. Terrance Aufderhar","age":61,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Emil McLaughlin","age":71,"location":"Monteboro"}},{"attributes":{"name":"Pearl Orn","age":66,"location":"Port Lyric"}},{"attributes":{"name":"Mrs. Otto Emmerich-Hauck","age":78,"location":"Ginacester"}},{"attributes":{"name":"Alek Hand","age":28,"location":"Watersboro"}},{"attributes":{"name":"Andy Fisher","age":34,"location":"Port Sheldon"}},{"attributes":{"name":"Terry Torphy","age":47,"location":"West Santiagomouth"}},{"attributes":{"name":"Nicole Schmidt","age":19,"location":"Weimanntown"}},{"attributes":{"name":"Rosemarie Robel-Mohr","age":62,"location":"Kyleeport"}},{"attributes":{"name":"Miss Percy Spencer MD","age":30,"location":"Port Jaycechester"}},{"attributes":{"name":"Madonna Becker","age":48,"location":"Brownshire"}},{"attributes":{"name":"Amos Purdy","age":20,"location":"New Lorenz"}},{"attributes":{"name":"Sophia Spinka MD","age":77,"location":"Schambergerville"}},{"attributes":{"name":"Brain Moen","age":37,"location":"Dooleyside"}},{"attributes":{"name":"Tierra Schoen-Heidenreich","age":22,"location":"Westminster"}},{"attributes":{"name":"Marta Kub","age":44,"location":"East Erikaberg"}},{"attributes":{"name":"Ms. Anne Schoen IV","age":71,"location":"East Ted"}},{"attributes":{"name":"Ian Frami","age":47,"location":"Broken Arrow"}},{"attributes":{"name":"Dr. Alexane Blanda","age":76,"location":"Bossier City"}},{"attributes":{"name":"Debbie Hudson","age":20,"location":"Port Yadirashire"}},{"attributes":{"name":"Celia Bartoletti","age":39,"location":"West Constantinland"}},{"attributes":{"name":"Gayle Leannon","age":69,"location":"Vineland"}},{"attributes":{"name":"Ms. Kerry Grimes","age":31,"location":"Turnerstead"}},{"attributes":{"name":"Roland Homenick I","age":72,"location":"Waterbury"}},{"attributes":{"name":"Bryana O'Kon-Hamill V","age":29,"location":"Adityaland"}},{"attributes":{"name":"Franklin Windler PhD","age":49,"location":"Gardena"}},{"attributes":{"name":"Dr. Antonia Quigley","age":39,"location":"West Lyda"}},{"attributes":{"name":"Sara Considine","age":34,"location":"Laishafield"}},{"attributes":{"name":"Victoria Erdman","age":27,"location":"Pourosfort"}},{"attributes":{"name":"Amelia Trantow","age":31,"location":"Botsfordchester"}},{"attributes":{"name":"Camren Huel","age":21,"location":"Port Demarcusmouth"}},{"attributes":{"name":"Kirk Crist","age":57,"location":"Eleanoreville"}},{"attributes":{"name":"Marcella Runte","age":66,"location":"Jaysonview"}},{"attributes":{"name":"Mr. Martina Hintz II","age":41,"location":"Hilllworth"}},{"attributes":{"name":"Brent Harber","age":75,"location":"Hicklefort"}},{"attributes":{"name":"Norman Zieme","age":56,"location":"Fort Shawna"}},{"attributes":{"name":"Hal Dare","age":33,"location":"North Amara"}},{"attributes":{"name":"Alvin Mills Jr.","age":43,"location":"Hirthefort"}},{"attributes":{"name":"Brenda Dach","age":27,"location":"Jurupa Valley"}},{"attributes":{"name":"Opal Reilly","age":72,"location":"West Darianfort"}},{"attributes":{"name":"Aiyana Little-Emmerich Jr.","age":39,"location":"Deborahmouth"}},{"attributes":{"name":"Dave Schroeder","age":67,"location":"Mayerbury"}},{"attributes":{"name":"Dr. Wanda Ondricka","age":26,"location":"Herzogstad"}},{"attributes":{"name":"Eunice Beatty","age":36,"location":"Sylviaberg"}},{"attributes":{"name":"Shannon Miller","age":40,"location":"Gutkowskibury"}},{"attributes":{"name":"Hardy Graham","age":73,"location":"North Gertrudecester"}},{"attributes":{"name":"Jane Bernier","age":46,"location":"Lake Collin"}},{"attributes":{"name":"Drew Langosh Sr.","age":22,"location":"West Santina"}},{"attributes":{"name":"Kerry Cummings","age":51,"location":"Florencefurt"}},{"attributes":{"name":"Mariano Windler","age":65,"location":"Evalyncester"}},{"attributes":{"name":"Lynne Connelly","age":22,"location":"South Adolfo"}},{"attributes":{"name":"Tyrone Shields","age":70,"location":"Santa Cruz"}},{"attributes":{"name":"Marlon Shanahan","age":30,"location":"Fort Bethcester"}},{"attributes":{"name":"Darrin Wilkinson-Rowe","age":63,"location":"Lynchburg"}},{"attributes":{"name":"Tyler Kling","age":37,"location":"Kamrenland"}},{"attributes":{"name":"Dr. Millie Bednar","age":70,"location":"Fond du Lac"}},{"attributes":{"name":"Raven VonRueden","age":43,"location":"Marquardtport"}},{"attributes":{"name":"Carroll Cronin","age":46,"location":"Kaciestad"}},{"attributes":{"name":"Shari Kutch MD","age":18,"location":"East Jerrodport"}},{"attributes":{"name":"Velda Stoltenberg","age":38,"location":"South Jaquelinland"}},{"attributes":{"name":"Kristin Feest","age":76,"location":"Lake Hobartberg"}},{"attributes":{"name":"Fannie Zulauf","age":55,"location":"Batzfield"}},{"attributes":{"name":"Judy Toy Jr.","age":57,"location":"Findlay"}},{"attributes":{"name":"Marion Altenwerth","age":36,"location":"Pansyworth"}},{"attributes":{"name":"Ralph Bartoletti","age":49,"location":"Krisview"}},{"attributes":{"name":"Diamond Goyette","age":70,"location":"Angelitafort"}},{"attributes":{"name":"Maxine Murphy","age":29,"location":"Kuhlmanhaven"}},{"attributes":{"name":"Claire Hagenes","age":39,"location":"Reno"}},{"attributes":{"name":"Mayra Cruickshank","age":46,"location":"West Tannerstead"}},{"attributes":{"name":"Madeline Heaney V","age":75,"location":"Morarfort"}},{"attributes":{"name":"Mr. Jessie Okuneva I","age":70,"location":"San Juan"}},{"attributes":{"name":"Dr. Gerardo Schimmel","age":42,"location":"Langworthstead"}},{"attributes":{"name":"Wilbur Hoppe Sr.","age":46,"location":"Nampa"}},{"attributes":{"name":"Ellie Mayer MD","age":62,"location":"Lake Keagancester"}},{"attributes":{"name":"Melinda Medhurst","age":65,"location":"Jarvisberg"}},{"attributes":{"name":"Kevin Doyle","age":77,"location":"Lake Kamronport"}},{"attributes":{"name":"Jeremiah Bechtelar","age":79,"location":"West Othochester"}},{"attributes":{"name":"Shirley Hirthe","age":70,"location":"Klockoburgh"}},{"attributes":{"name":"Edgar Wolff","age":72,"location":"North Nikkoside"}},{"attributes":{"name":"Hattie Kub","age":18,"location":"South Hazelstad"}},{"attributes":{"name":"Israel Berge","age":30,"location":"Carrollborough"}},{"attributes":{"name":"Raymond Rempel","age":39,"location":"Lake Twilastad"}},{"attributes":{"name":"Dr. Brando Pollich","age":23,"location":"South Daron"}},{"attributes":{"name":"Vincent Schneider","age":63,"location":"Nelsoncester"}},{"attributes":{"name":"Mr. Michael Konopelski","age":52,"location":"South Stephany"}},{"attributes":{"name":"Susan Windler","age":19,"location":"Smyrna"}},{"attributes":{"name":"Alfonso Boyer","age":46,"location":"Easterfield"}},{"attributes":{"name":"Mikel Kertzmann","age":61,"location":"University"}},{"attributes":{"name":"Wallace Carter","age":43,"location":"West Albina"}},{"attributes":{"name":"Ulices Funk","age":45,"location":"Kathlynfield"}},{"attributes":{"name":"Sylvester Zieme","age":29,"location":"East Kodyburgh"}},{"attributes":{"name":"Amelie Gleason PhD","age":61,"location":"Vincenzashire"}},{"attributes":{"name":"Marlene Bosco","age":40,"location":"Renton"}},{"attributes":{"name":"Enos Schmeler DDS","age":58,"location":"Gabriellaberg"}},{"attributes":{"name":"Leona Emmerich","age":30,"location":"Port Easterworth"}},{"attributes":{"name":"Kailey Raynor","age":21,"location":"Lake Destini"}},{"attributes":{"name":"Katie Bednar","age":66,"location":"Bergstrommouth"}},{"attributes":{"name":"Bernadette McClure","age":72,"location":"Appleton"}},{"attributes":{"name":"Dr. Calvin Dietrich","age":35,"location":"West Larue"}},{"attributes":{"name":"Vicky Rempel Jr.","age":51,"location":"Lake Pabloville"}},{"attributes":{"name":"Emelia McKenzie Sr.","age":23,"location":"Port Valerie"}},{"attributes":{"name":"Myron Borer","age":56,"location":"Magalihaven"}},{"attributes":{"name":"Bradley Bahringer","age":38,"location":"Markusland"}},{"attributes":{"name":"Richard Gusikowski","age":24,"location":"Newport Beach"}},{"attributes":{"name":"Sean Bayer","age":42,"location":"Torpview"}},{"attributes":{"name":"Dr. Deanna Jones","age":49,"location":"Port Beaulah"}},{"attributes":{"name":"Mrs. Nicholas Friesen","age":41,"location":"Fort Kariane"}},{"attributes":{"name":"Lurline Kozey","age":72,"location":"Fort Liliane"}},{"attributes":{"name":"Herbert Bauch","age":45,"location":"Klockoport"}},{"attributes":{"name":"Mr. Duane Terry III","age":22,"location":"Antwanville"}},{"attributes":{"name":"Rick Bernier","age":72,"location":"East Sarah"}},{"attributes":{"name":"Mindy Doyle","age":44,"location":"North Josefina"}},{"attributes":{"name":"Lesley Feil MD","age":24,"location":"Creminfield"}},{"attributes":{"name":"Dwayne Price","age":18,"location":"Port Clevemouth"}},{"attributes":{"name":"Rochelle Herman","age":37,"location":"Toms River"}},{"attributes":{"name":"Sabrina Nader DDS","age":51,"location":"Arlington"}},{"attributes":{"name":"Jared Marks","age":69,"location":"Pagactown"}},{"attributes":{"name":"Elwin Stroman","age":60,"location":"South Florianbury"}},{"attributes":{"name":"Antone Cremin","age":32,"location":"Damarisfurt"}},{"attributes":{"name":"Shannon Wilderman","age":23,"location":"South Rickeyside"}},{"attributes":{"name":"Madelynn Casper","age":41,"location":"Alannaview"}},{"attributes":{"name":"Mr. Emmanuel Kozey","age":67,"location":"Daly City"}},{"attributes":{"name":"Judd Boyle","age":70,"location":"Ferneboro"}},{"attributes":{"name":"Aglae Windler V","age":63,"location":"Georgestad"}},{"attributes":{"name":"Monroe Reilly","age":49,"location":"Malikamouth"}},{"attributes":{"name":"Florencio Murray","age":66,"location":"Oak Lawn"}},{"attributes":{"name":"Emma Morar I","age":80,"location":"Schuppebury"}},{"attributes":{"name":"Dr. Samuel Altenwerth","age":22,"location":"Runteborough"}},{"attributes":{"name":"Agnes VonRueden","age":31,"location":"Aiyanaview"}},{"attributes":{"name":"Edwin Heaney","age":80,"location":"East Santaboro"}},{"attributes":{"name":"Mrs. Obie Hudson PhD","age":54,"location":"New Alexie"}},{"attributes":{"name":"Mrs. Furman Witting","age":50,"location":"Hudsonside"}},{"attributes":{"name":"Mr. Fredrick Pollich","age":57,"location":"South Arne"}},{"attributes":{"name":"Johnathan Kub","age":50,"location":"Joseville"}},{"attributes":{"name":"Bradford Schowalter","age":49,"location":"East Charlieville"}},{"attributes":{"name":"Brittany Crist","age":61,"location":"East Cierraport"}},{"attributes":{"name":"Jeanette Padberg","age":26,"location":"Fort Odessa"}},{"attributes":{"name":"Aubrey Gulgowski","age":40,"location":"East Jeffryfield"}},{"attributes":{"name":"William Gulgowski III","age":18,"location":"North Friedrich"}},{"attributes":{"name":"Leticia Bradtke","age":18,"location":"North Ayden"}},{"attributes":{"name":"Ralph Reilly-Gleichner","age":52,"location":"Bennyton"}},{"attributes":{"name":"Douglas Rolfson","age":23,"location":"Ivaberg"}},{"attributes":{"name":"Vergie Strosin","age":66,"location":"Carlosstad"}},{"attributes":{"name":"Johnnie McDermott","age":75,"location":"Kovacekcester"}},{"attributes":{"name":"Lucile Baumbach","age":30,"location":"Hahnfield"}},{"attributes":{"name":"Herbert Leuschke-Boyle","age":58,"location":"New Cliftonfurt"}},{"attributes":{"name":"Viola Schneider","age":20,"location":"Stefanborough"}},{"attributes":{"name":"Dorcas Stehr","age":67,"location":"Deckowport"}},{"attributes":{"name":"Mrs. Becky Huels","age":38,"location":"Azusa"}},{"attributes":{"name":"Joyce Simonis","age":57,"location":"West Josefina"}},{"attributes":{"name":"Phoebe Abshire DDS","age":52,"location":"San Jacinto"}},{"attributes":{"name":"Mrs. Jalen Schmidt","age":63,"location":"Palm Bay"}},{"attributes":{"name":"Eileen Lang","age":20,"location":"Mckaylaville"}},{"attributes":{"name":"Nina Heidenreich","age":76,"location":"Lake Herthaport"}},{"attributes":{"name":"Jermaine Bruen","age":56,"location":"Wintheiserfield"}},{"attributes":{"name":"Kathryn Gibson","age":29,"location":"East Newellborough"}},{"attributes":{"name":"Lorine Wehner","age":27,"location":"Honolulu"}},{"attributes":{"name":"Raymond Bailey","age":57,"location":"Dakotahaven"}},{"attributes":{"name":"Lydia Schumm","age":57,"location":"New Arely"}},{"attributes":{"name":"Dr. Dexter Legros","age":38,"location":"Centreville"}},{"attributes":{"name":"Eric Parker","age":64,"location":"Ratkebury"}},{"attributes":{"name":"Donna Nienow","age":27,"location":"Shaneboro"}},{"attributes":{"name":"Rafaela Kiehn","age":64,"location":"West Allis"}},{"attributes":{"name":"Milford Champlin","age":61,"location":"Fort Rickyview"}},{"attributes":{"name":"Dr. Kailey McClure","age":80,"location":"New Dexter"}},{"attributes":{"name":"Dwayne Spinka","age":75,"location":"San Ramon"}},{"attributes":{"name":"Mallory King","age":21,"location":"Lake Gloria"}},{"attributes":{"name":"Shelly Klocko","age":41,"location":"Reichelshire"}},{"attributes":{"name":"Mr. Ricardo Renner","age":38,"location":"Detroit"}},{"attributes":{"name":"Michelle Hyatt","age":26,"location":"East Erichfield"}},{"attributes":{"name":"Johnathan Kilback","age":61,"location":"Bernadinecester"}},{"attributes":{"name":"Mr. Trevor Nitzsche","age":23,"location":"North Conrad"}},{"attributes":{"name":"Vincent Murray","age":68,"location":"Greenwood"}},{"attributes":{"name":"Leif Blick","age":41,"location":"Elwynland"}},{"attributes":{"name":"John Renner","age":31,"location":"Ariannaland"}},{"attributes":{"name":"Silvia Hoppe","age":44,"location":"Brayanstad"}},{"attributes":{"name":"Teri Klein","age":63,"location":"Lake Charles"}},{"attributes":{"name":"Alison Boehm PhD","age":38,"location":"North Augustaburgh"}},{"attributes":{"name":"Erick Schuppe V","age":57,"location":"DeKalb"}},{"attributes":{"name":"Delia White","age":56,"location":"Bellingham"}},{"attributes":{"name":"Ed Champlin","age":20,"location":"San Mateo"}},{"attributes":{"name":"Dr. Kira Wiza","age":56,"location":"Boganhaven"}},{"attributes":{"name":"Juanita Jacobi","age":21,"location":"Lake Leora"}},{"attributes":{"name":"Dallas Medhurst IV","age":45,"location":"Pfannerstillstead"}},{"attributes":{"name":"Theodore Schroeder","age":33,"location":"Vernonfort"}},{"attributes":{"name":"Doug Wehner","age":38,"location":"Elyria"}},{"attributes":{"name":"Mrs. Amanda Hoeger","age":22,"location":"Torpland"}},{"attributes":{"name":"Frankie Gerlach","age":64,"location":"Hamillstad"}},{"attributes":{"name":"Miss Lukas Waelchi","age":35,"location":"East Kendrafort"}},{"attributes":{"name":"Daisha Wuckert","age":58,"location":"Shannyville"}},{"attributes":{"name":"Rosa Medhurst","age":64,"location":"North Martinestead"}},{"attributes":{"name":"Sherman McClure","age":29,"location":"West Leonardo"}},{"attributes":{"name":"Judith Will","age":77,"location":"Ziemannton"}},{"attributes":{"name":"Verla Brown","age":51,"location":"Rethaborough"}},{"attributes":{"name":"Gudrun Mohr","age":76,"location":"Fort Miller"}},{"attributes":{"name":"Braulio Casper","age":77,"location":"Pine Bluff"}},{"attributes":{"name":"Wilmer Kirlin","age":26,"location":"Lake Mayaberg"}},{"attributes":{"name":"Alfonso Bahringer","age":48,"location":"Port Gennarohaven"}},{"attributes":{"name":"Carol Lebsack","age":71,"location":"Candidaside"}},{"attributes":{"name":"Claudia Gutmann","age":72,"location":"Clovisshire"}},{"attributes":{"name":"Loma Collier","age":58,"location":"Jadashire"}},{"attributes":{"name":"Toby Larson V","age":38,"location":"West Gracielahaven"}},{"attributes":{"name":"Delia Blick","age":40,"location":"Ritchieland"}},{"attributes":{"name":"Patricia Renner II","age":39,"location":"East Daphneystead"}},{"attributes":{"name":"Jan Berge","age":47,"location":"Vanessaton"}},{"attributes":{"name":"Rick Dibbert","age":34,"location":"Lake Treverport"}},{"attributes":{"name":"Casey McClure","age":35,"location":"Americoside"}},{"attributes":{"name":"Rubie Donnelly","age":35,"location":"Baytown"}},{"attributes":{"name":"Christy Hermann","age":46,"location":"Port Elissa"}},{"attributes":{"name":"Candace Cormier","age":45,"location":"Lake Janice"}},{"attributes":{"name":"Ernestine Bernier","age":52,"location":"Albertochester"}},{"attributes":{"name":"Celia Daniel","age":49,"location":"New Demetriusfurt"}},{"attributes":{"name":"Kevin Abshire","age":48,"location":"Brayanside"}},{"attributes":{"name":"Dr. Vidal Wyman","age":35,"location":"South Evelyn"}},{"attributes":{"name":"Mr. Garrett Balistreri","age":73,"location":"Walshbury"}},{"attributes":{"name":"Ervin Wilderman","age":23,"location":"Rozellafort"}},{"attributes":{"name":"Philip Blanda","age":69,"location":"Shaynetown"}},{"attributes":{"name":"Rodolfo Kuvalis","age":23,"location":"Mertzton"}},{"attributes":{"name":"Wendell Christiansen","age":58,"location":"Hamillboro"}},{"attributes":{"name":"Leah Johnson","age":53,"location":"Lake Juliana"}},{"attributes":{"name":"Miss Mayra Davis","age":30,"location":"New Liana"}},{"attributes":{"name":"Dr. Mona Terry","age":50,"location":"Hialeah"}},{"attributes":{"name":"Shelia Walter-Lesch","age":35,"location":"Fort Alexandra"}},{"attributes":{"name":"Miranda Hilpert MD","age":49,"location":"East Ivoryview"}},{"attributes":{"name":"Tommy Daniel","age":68,"location":"Fort Camilleville"}},{"attributes":{"name":"Agustina Robel","age":39,"location":"Cupertino"}},{"attributes":{"name":"Isac Ebert","age":29,"location":"New Demario"}},{"attributes":{"name":"Henrietta Adams","age":29,"location":"Port Rodrigoside"}},{"attributes":{"name":"Dianne Bayer","age":79,"location":"Lake Stefanie"}},{"attributes":{"name":"Mabel Dach","age":53,"location":"South Jamesonton"}},{"attributes":{"name":"Naomi Stark","age":23,"location":"Santa Fe"}},{"attributes":{"name":"David Skiles-Larson Sr.","age":61,"location":"Torpview"}},{"attributes":{"name":"Arthur Predovic Jr.","age":52,"location":"South Kaitlinbury"}},{"attributes":{"name":"Earnest Bayer","age":64,"location":"Georgianamouth"}},{"attributes":{"name":"Jamie Labadie","age":65,"location":"Kristofferview"}},{"attributes":{"name":"Marvin Batz","age":78,"location":"Koelpinstead"}},{"attributes":{"name":"Dr. Meredith Tromp","age":37,"location":"West Gregory"}},{"attributes":{"name":"Jeannie Boyer","age":79,"location":"North Lemuel"}},{"attributes":{"name":"Whitney Waelchi","age":60,"location":"Veumport"}},{"attributes":{"name":"Veda Wolff","age":34,"location":"Carterstad"}},{"attributes":{"name":"Kelvin Goyette","age":58,"location":"Wilmington"}},{"attributes":{"name":"Orville Nikolaus-Heller","age":36,"location":"Cassinton"}},{"attributes":{"name":"Angelo Leffler","age":58,"location":"Lebsackbury"}},{"attributes":{"name":"Jerod Schinner","age":38,"location":"Paucekfort"}},{"attributes":{"name":"Zackary Fay","age":49,"location":"Appleton"}},{"attributes":{"name":"Roberta Muller","age":38,"location":"North Loyce"}},{"attributes":{"name":"Terrance Mohr I","age":73,"location":"North Marcos"}},{"attributes":{"name":"Jacquelyn Bins","age":70,"location":"Kovacekbury"}},{"attributes":{"name":"Miss William Runolfsson","age":52,"location":"West Gloriaworth"}},{"attributes":{"name":"Alfonzo Cummings","age":74,"location":"Marysville"}},{"attributes":{"name":"Ambrose Koelpin","age":25,"location":"Hobartfort"}},{"attributes":{"name":"Leslie Gutkowski","age":57,"location":"South Alisafield"}},{"attributes":{"name":"Candido Gleason","age":31,"location":"Tuckahoe"}},{"attributes":{"name":"Mr. Suzanne Metz","age":28,"location":"Heidenreichtown"}},{"attributes":{"name":"Betsy Jacobson-Brekke IV","age":80,"location":"Port Delaneytown"}},{"attributes":{"name":"Schuyler Nikolaus","age":38,"location":"Lucileborough"}},{"attributes":{"name":"Rosalee Auer V","age":79,"location":"West Morris"}},{"attributes":{"name":"William Dickens","age":74,"location":"Eileenstead"}},{"attributes":{"name":"Rachel Hackett","age":52,"location":"West Allis"}},{"attributes":{"name":"Jaime Littel","age":56,"location":"Hawthorne"}},{"attributes":{"name":"Brent Schaefer","age":59,"location":"Yundtside"}},{"attributes":{"name":"Jalyn Franecki","age":79,"location":"West Furmanstad"}},{"attributes":{"name":"Neil Smitham","age":46,"location":"North Tressiefort"}},{"attributes":{"name":"Mr. Tracy Cummerata","age":42,"location":"Hermistontown"}},{"attributes":{"name":"Tyrese Little","age":35,"location":"Vivianeland"}},{"attributes":{"name":"Jean Glover","age":38,"location":"Yundtside"}},{"attributes":{"name":"Marlene Bogan","age":79,"location":"Port Domingostead"}},{"attributes":{"name":"Mallory Kerluke","age":64,"location":"Bryan"}},{"attributes":{"name":"Wilma Marvin","age":45,"location":"North Danielastad"}},{"attributes":{"name":"Wilfrid Schmeler","age":29,"location":"Jostad"}},{"attributes":{"name":"Lila Bernhard","age":46,"location":"Clovis"}},{"attributes":{"name":"Adrian Pacocha","age":52,"location":"Schambergertown"}},{"attributes":{"name":"Doreen Grant","age":32,"location":"South Madge"}},{"attributes":{"name":"Ezra Prohaska","age":79,"location":"Gerholdfort"}},{"attributes":{"name":"Kayla Reinger","age":21,"location":"Ivyport"}},{"attributes":{"name":"Sergio Muller","age":43,"location":"South Edison"}},{"attributes":{"name":"Miss Hugh Goodwin","age":80,"location":"Montebello"}},{"attributes":{"name":"Freddy Bailey","age":76,"location":"New Brunswick"}},{"attributes":{"name":"Darla Rosenbaum","age":76,"location":"Lake Desmond"}},{"attributes":{"name":"Susan Bayer","age":20,"location":"Annashire"}},{"attributes":{"name":"Winfield Rowe","age":35,"location":"Bergstromberg"}},{"attributes":{"name":"Eduardo Kemmer","age":73,"location":"Osvaldoborough"}},{"attributes":{"name":"Jayne Crooks","age":45,"location":"West Chelsie"}},{"attributes":{"name":"Grant O'Reilly","age":48,"location":"Bradtkechester"}},{"attributes":{"name":"Antoinette Ryan","age":26,"location":"New Max"}},{"attributes":{"name":"Phil Schaden","age":66,"location":"Hicksville"}},{"attributes":{"name":"Elody Mayert","age":39,"location":"Jackson"}},{"attributes":{"name":"Noemi Harvey","age":41,"location":"East Garettboro"}},{"attributes":{"name":"Gerald Padberg","age":39,"location":"Fort Alekfort"}},{"attributes":{"name":"Mabel Collier V","age":46,"location":"Rubiehaven"}},{"attributes":{"name":"Miss Joy Schamberger","age":29,"location":"Iowa City"}},{"attributes":{"name":"Nicolette Koepp","age":76,"location":"East Giovannyport"}},{"attributes":{"name":"Genoveva Mertz","age":26,"location":"Fort Marquis"}},{"attributes":{"name":"Rudy Cummings","age":36,"location":"Croninburgh"}},{"attributes":{"name":"Fernando Grady","age":49,"location":"Kuhicbury"}},{"attributes":{"name":"Rebecca Nicolas","age":44,"location":"Lucasfield"}},{"attributes":{"name":"Mr. Anthony Sanford III","age":59,"location":"Framistead"}},{"attributes":{"name":"Marcel Runolfsdottir","age":60,"location":"Katherineport"}},{"attributes":{"name":"Bridie Hintz","age":73,"location":"Madysonland"}},{"attributes":{"name":"Rochelle Denesik","age":31,"location":"West Davinshire"}},{"attributes":{"name":"Xander Toy","age":23,"location":"North Karelle"}},{"attributes":{"name":"Carmen Dickens","age":45,"location":"North Aydenmouth"}},{"attributes":{"name":"Leopoldo Schneider","age":28,"location":"Ziemanntown"}},{"attributes":{"name":"Myrtis Ebert","age":65,"location":"Robertamouth"}},{"attributes":{"name":"Lessie Toy","age":44,"location":"Ethelcester"}},{"attributes":{"name":"Miss Bryant Hansen","age":59,"location":"Watersville"}},{"attributes":{"name":"Mrs. Lucio McKenzie","age":65,"location":"Hermannworth"}},{"attributes":{"name":"Daisy Beatty","age":20,"location":"Paramount"}},{"attributes":{"name":"Mr. Cyril Nolan","age":79,"location":"New Jessica"}},{"attributes":{"name":"Ann Balistreri III","age":36,"location":"Fishercester"}},{"attributes":{"name":"Miss Felton Wolf","age":19,"location":"Port Domingoborough"}},{"attributes":{"name":"Vincent Pagac","age":55,"location":"Shanahanborough"}},{"attributes":{"name":"Dr. Nels Wilkinson","age":56,"location":"Jeanetteworth"}},{"attributes":{"name":"Etha Ruecker","age":37,"location":"Jeffersonville"}},{"attributes":{"name":"Lola Kling","age":78,"location":"Lake Burnicetown"}},{"attributes":{"name":"Mrs. Keaton Hand","age":37,"location":"North Kyleigh"}},{"attributes":{"name":"Hope Osinski","age":28,"location":"Russellboro"}},{"attributes":{"name":"Mr. Billy Kshlerin","age":64,"location":"North Chase"}},{"attributes":{"name":"Jill Abbott DDS","age":59,"location":"Kaylamouth"}},{"attributes":{"name":"Clinton Yundt PhD","age":56,"location":"Lindchester"}},{"attributes":{"name":"Gloria Hane-Pagac","age":45,"location":"Port Tyrell"}},{"attributes":{"name":"Mrs. Norma Schiller","age":46,"location":"West Margarita"}},{"attributes":{"name":"Rickey Crona MD","age":39,"location":"Tampa"}},{"attributes":{"name":"Ashtyn Muller","age":30,"location":"Smyrna"}},{"attributes":{"name":"Charlene Johnston","age":62,"location":"Kuhicport"}},{"attributes":{"name":"Luis Sauer PhD","age":19,"location":"Port Augustberg"}},{"attributes":{"name":"Toy Thompson","age":33,"location":"Stratford"}},{"attributes":{"name":"Taryn Dicki","age":30,"location":"North Maychester"}},{"attributes":{"name":"Roberta Lehner PhD","age":33,"location":"Sanfordworth"}},{"attributes":{"name":"Roy Bruen","age":24,"location":"Mortonborough"}},{"attributes":{"name":"Jacynthe Robel","age":33,"location":"South Isac"}},{"attributes":{"name":"Cheyenne Fritsch","age":73,"location":"Elisamouth"}},{"attributes":{"name":"Stacy Cummerata","age":28,"location":"North Mabelfield"}},{"attributes":{"name":"Presley Cronin","age":64,"location":"Lake Minnieburgh"}},{"attributes":{"name":"Tracey Witting","age":41,"location":"Lake Myrtie"}},{"attributes":{"name":"Modesta Kunze IV","age":44,"location":"Alenefurt"}},{"attributes":{"name":"Ellen Rosenbaum","age":64,"location":"Framifield"}},{"attributes":{"name":"Marina Mosciski","age":40,"location":"North Herman"}},{"attributes":{"name":"Andres Hessel","age":32,"location":"West Princess"}},{"attributes":{"name":"Antoinette Rolfson","age":63,"location":"North Bethesda"}},{"attributes":{"name":"Phoebe Casper","age":35,"location":"Keelingworth"}},{"attributes":{"name":"Maurice Stanton PhD","age":34,"location":"Langstead"}},{"attributes":{"name":"Homer Jaskolski","age":65,"location":"Stoltenbergshire"}},{"attributes":{"name":"Ron Hilll Sr.","age":31,"location":"Leonorcester"}},{"attributes":{"name":"Isaac Bahringer DDS","age":29,"location":"Leuschkehaven"}},{"attributes":{"name":"Isaiah Gusikowski","age":29,"location":"East Greta"}},{"attributes":{"name":"Dr. Isac Boyer","age":47,"location":"South Oliverborough"}},{"attributes":{"name":"Shaun Feest-Haag","age":41,"location":"Scottsdale"}},{"attributes":{"name":"Jenny O'Hara","age":23,"location":"New Mollyport"}},{"attributes":{"name":"Linda Swaniawski","age":67,"location":"Gulfport"}},{"attributes":{"name":"Claude Dare","age":26,"location":"Redondo Beach"}},{"attributes":{"name":"Asa Buckridge","age":27,"location":"Spring"}},{"attributes":{"name":"William Borer","age":36,"location":"Alanbury"}},{"attributes":{"name":"Kurt Maggio","age":69,"location":"Port Allan"}},{"attributes":{"name":"Mr. Sidney Homenick","age":31,"location":"Archfort"}},{"attributes":{"name":"Tony Stark","age":50,"location":"Rigobertoville"}},{"attributes":{"name":"Gisselle Heathcote","age":18,"location":"Maximusport"}},{"attributes":{"name":"Mrs. Liam Harris","age":32,"location":"East Royalchester"}},{"attributes":{"name":"Janis O'Connell","age":50,"location":"North Sally"}},{"attributes":{"name":"Diane Hegmann","age":52,"location":"O'Konland"}},{"attributes":{"name":"Henderson Leffler","age":28,"location":"Royceport"}},{"attributes":{"name":"Tricia Heller V","age":67,"location":"Boulder"}},{"attributes":{"name":"Traci Emard PhD","age":54,"location":"Eugene"}},{"attributes":{"name":"Jeannette Blanda","age":27,"location":"Morganborough"}},{"attributes":{"name":"Lorenza Conroy","age":35,"location":"Hillstown"}},{"attributes":{"name":"Norman Sanford","age":35,"location":"Hesselstead"}},{"attributes":{"name":"Ray Dickens","age":21,"location":"Bahringershire"}},{"attributes":{"name":"Elaina Corwin","age":69,"location":"Ressieburgh"}},{"attributes":{"name":"Dixie Miller","age":41,"location":"Flower Mound"}},{"attributes":{"name":"Burnice Crona DDS","age":52,"location":"South Teresa"}},{"attributes":{"name":"Bo Corwin","age":26,"location":"Jermainfort"}},{"attributes":{"name":"Cole Kozey","age":24,"location":"Watsonville"}},{"attributes":{"name":"Ora Stroman","age":45,"location":"South Kentonfurt"}},{"attributes":{"name":"Marty Ondricka","age":72,"location":"New Marianetown"}},{"attributes":{"name":"Mr. Johnnie Armstrong","age":52,"location":"Erie"}},{"attributes":{"name":"Lyric Ruecker DVM","age":37,"location":"Port Griffinberg"}},{"attributes":{"name":"Holly Howell","age":56,"location":"South Rick"}},{"attributes":{"name":"Ronnie Brown","age":68,"location":"New Fletcher"}},{"attributes":{"name":"Diana Lehner","age":33,"location":"Hialeah"}},{"attributes":{"name":"Faustino Kihn","age":37,"location":"Port Reesestead"}},{"attributes":{"name":"Miss Verda Lang","age":49,"location":"Portsmouth"}},{"attributes":{"name":"Josefina Littel MD","age":37,"location":"Tillmanview"}},{"attributes":{"name":"Mandy Torphy DDS","age":51,"location":"Jimmychester"}},{"attributes":{"name":"Francis Trantow","age":73,"location":"Swiftburgh"}},{"attributes":{"name":"Claude Kerluke","age":55,"location":"Mayerbury"}},{"attributes":{"name":"Jamarcus Volkman-Boyle II","age":58,"location":"South Cassidyfort"}},{"attributes":{"name":"Emmy Kihn","age":39,"location":"Jacquesport"}},{"attributes":{"name":"Margie Kemmer","age":23,"location":"Margefield"}},{"attributes":{"name":"Valerie Howe","age":38,"location":"South Emmymouth"}},{"attributes":{"name":"Kim Feeney","age":52,"location":"South Juliofield"}},{"attributes":{"name":"Baby Grant-Jones PhD","age":80,"location":"Hermanshire"}},{"attributes":{"name":"Tomasa Wolff","age":60,"location":"East Cornelltown"}},{"attributes":{"name":"Garett Zboncak","age":42,"location":"Sunrise Manor"}},{"attributes":{"name":"Curtis Deckow","age":42,"location":"Felicitaview"}},{"attributes":{"name":"Adam West","age":29,"location":"North Kentonberg"}},{"attributes":{"name":"Valentine Willms","age":67,"location":"Round Rock"}},{"attributes":{"name":"Brian Luettgen","age":71,"location":"Salina"}},{"attributes":{"name":"Garland Sanford","age":56,"location":"North Meda"}},{"attributes":{"name":"Tina Kozey","age":57,"location":"Lake Brooksshire"}},{"attributes":{"name":"Cristina Lueilwitz","age":42,"location":"Livermore"}},{"attributes":{"name":"Miss Eileen Leffler","age":58,"location":"New Laurianne"}},{"attributes":{"name":"Thelma Koepp","age":50,"location":"South Laurel"}},{"attributes":{"name":"Lawson Fay","age":78,"location":"Corkeryburgh"}},{"attributes":{"name":"Mr. Ricardo Mann DVM","age":28,"location":"Lake Adrianaland"}},{"attributes":{"name":"Adam Cummerata Sr.","age":46,"location":"Kiehnport"}},{"attributes":{"name":"Willie Rippin-Ritchie","age":79,"location":"Bergnaumboro"}},{"attributes":{"name":"Chelsea Parker Jr.","age":28,"location":"Hollywood"}},{"attributes":{"name":"Dangelo Baumbach","age":32,"location":"Fort Weston"}},{"attributes":{"name":"Wallace Senger","age":55,"location":"Portsmouth"}},{"attributes":{"name":"Immanuel Murray","age":61,"location":"Fort Orin"}},{"attributes":{"name":"Sammy Conn","age":73,"location":"Connellyview"}},{"attributes":{"name":"Pedro Kessler","age":56,"location":"East Orland"}},{"attributes":{"name":"Angel Hahn","age":51,"location":"Rodrickview"}},{"attributes":{"name":"Miss Erica Rowe-Johnston","age":44,"location":"East Jasen"}},{"attributes":{"name":"Karen Fadel","age":22,"location":"Port Orange"}},{"attributes":{"name":"Fredy Jaskolski","age":63,"location":"Javontestad"}},{"attributes":{"name":"Miss Andrea Kessler","age":69,"location":"Fort Loyalport"}},{"attributes":{"name":"Macie Franecki","age":52,"location":"Dorisburgh"}},{"attributes":{"name":"Edmund Zemlak","age":68,"location":"North Kari"}},{"attributes":{"name":"Leslie Boyle","age":72,"location":"Fort Colten"}},{"attributes":{"name":"Elyssa Breitenberg","age":45,"location":"Pensacola"}},{"attributes":{"name":"Destin Mills","age":44,"location":"New Meredith"}},{"attributes":{"name":"Herbert Corwin","age":31,"location":"East Benjamin"}},{"attributes":{"name":"Alexzander Lebsack","age":35,"location":"New Jaydonboro"}},{"attributes":{"name":"Tabitha Kihn","age":52,"location":"St. Cloud"}},{"attributes":{"name":"Rogers Deckow","age":23,"location":"Fremont"}},{"attributes":{"name":"Carley Sanford","age":66,"location":"Marquisview"}},{"attributes":{"name":"Rosamond Sawayn","age":39,"location":"Gibsontown"}},{"attributes":{"name":"Jamil Macejkovic","age":80,"location":"Laredo"}},{"attributes":{"name":"Dorothy Tillman","age":64,"location":"Leuschkeland"}},{"attributes":{"name":"Amelia Greenholt","age":26,"location":"East Annamarie"}},{"attributes":{"name":"Janis Mante Jr.","age":25,"location":"Port Sandra"}},{"attributes":{"name":"Whitney Willms","age":36,"location":"North Herminio"}},{"attributes":{"name":"Paul Schoen","age":26,"location":"Shannonburgh"}},{"attributes":{"name":"Billy Yundt-Jakubowski","age":35,"location":"Port Spencerview"}},{"attributes":{"name":"Rachael Morar-Treutel","age":49,"location":"Corona"}},{"attributes":{"name":"Dr. Myron Bode","age":57,"location":"Country Club"}},{"attributes":{"name":"Francis Kemmer","age":24,"location":"Monserratberg"}},{"attributes":{"name":"Kennedy Kuhic","age":51,"location":"Estebanland"}},{"attributes":{"name":"Aletha Considine","age":23,"location":"Joeyburgh"}},{"attributes":{"name":"Fernando Ebert","age":21,"location":"Whiteburgh"}},{"attributes":{"name":"Sammy Kuhic","age":31,"location":"New Kayleyborough"}},{"attributes":{"name":"Roger Rosenbaum-Weimann","age":55,"location":"West Darianshire"}},{"attributes":{"name":"Guadalupe Lebsack III","age":75,"location":"Fort Kayley"}},{"attributes":{"name":"Cortez Auer","age":30,"location":"Isaifurt"}},{"attributes":{"name":"Kristi Jacobson","age":37,"location":"Port Bridget"}},{"attributes":{"name":"Hugo Mayer","age":75,"location":"South Naomimouth"}},{"attributes":{"name":"Maximillian Johnson","age":23,"location":"Kuhicshire"}},{"attributes":{"name":"Fernando Koepp","age":51,"location":"South Adelleville"}},{"attributes":{"name":"Tommy Effertz","age":25,"location":"Bergeton"}},{"attributes":{"name":"Lindsay Kuhic","age":39,"location":"East Rosamond"}},{"attributes":{"name":"Jessika McGlynn","age":24,"location":"Port Effie"}},{"attributes":{"name":"Joel Littel","age":24,"location":"Marysville"}},{"attributes":{"name":"Al Wilkinson I","age":75,"location":"Yakima"}},{"attributes":{"name":"Clay Erdman","age":34,"location":"New Domenic"}},{"attributes":{"name":"Matthew Vandervort","age":73,"location":"Hintzshire"}},{"attributes":{"name":"Stephania Reilly","age":76,"location":"South Tara"}},{"attributes":{"name":"Benny Botsford","age":42,"location":"West Darylview"}},{"attributes":{"name":"Frederick Von","age":37,"location":"New Haven"}},{"attributes":{"name":"Jacquelyn Krajcik","age":40,"location":"Highland"}},{"attributes":{"name":"Marilyn Watsica","age":63,"location":"Kiehnburgh"}},{"attributes":{"name":"Bessie Kuphal","age":61,"location":"South Gunnarburgh"}},{"attributes":{"name":"Isaac Kohler","age":59,"location":"Port Kristopher"}},{"attributes":{"name":"Danny Pouros","age":42,"location":"Howellchester"}},{"attributes":{"name":"Daryl Rau","age":43,"location":"New Reedmouth"}},{"attributes":{"name":"Rafaela Adams-Ryan","age":35,"location":"Aliafurt"}},{"attributes":{"name":"Allene Grady","age":54,"location":"Apopka"}},{"attributes":{"name":"Dorothy Fritsch","age":70,"location":"East Garrickfort"}},{"attributes":{"name":"Herminio Feest III","age":22,"location":"Alpharetta"}},{"attributes":{"name":"Dr. Emmanuelle Feil","age":80,"location":"Port Brandyport"}},{"attributes":{"name":"Jeremy Sporer","age":41,"location":"Jupiter"}},{"attributes":{"name":"Hester Hackett","age":73,"location":"East Camillaboro"}},{"attributes":{"name":"Salvador Marquardt","age":78,"location":"Montgomery"}},{"attributes":{"name":"Anahi Bahringer","age":33,"location":"Schaumburg"}},{"attributes":{"name":"Cicero Stokes","age":71,"location":"Mathiaston"}},{"attributes":{"name":"Maverick Weimann","age":70,"location":"Rahulside"}},{"attributes":{"name":"Beth Doyle","age":65,"location":"Gerlachstad"}},{"attributes":{"name":"Stuart Cormier","age":54,"location":"Tustin"}},{"attributes":{"name":"Mr. Lisa Zulauf III","age":22,"location":"East Daphnee"}},{"attributes":{"name":"Maureen Stamm IV","age":64,"location":"Petaluma"}},{"attributes":{"name":"Mona Cummerata","age":31,"location":"Richieside"}},{"attributes":{"name":"Naomi Durgan","age":52,"location":"Stehrmouth"}},{"attributes":{"name":"Everette Conn","age":80,"location":"Hermannshire"}},{"attributes":{"name":"Phillip Kris","age":25,"location":"Dickibury"}},{"attributes":{"name":"Edmond Treutel","age":29,"location":"Lake Pietrofort"}},{"attributes":{"name":"Wendell Marquardt","age":72,"location":"West Reggie"}},{"attributes":{"name":"Sadie Kling V","age":27,"location":"Cullenchester"}},{"attributes":{"name":"Ms. Arne Block","age":31,"location":"Berwyn"}},{"attributes":{"name":"Gordon Feest","age":20,"location":"Wittingport"}},{"attributes":{"name":"Leonel Pouros","age":57,"location":"Kohlerburgh"}},{"attributes":{"name":"Mr. Israel Rath","age":53,"location":"Johnson City"}},{"attributes":{"name":"Doug Johns I","age":61,"location":"Huntington"}},{"attributes":{"name":"Ursula Blick","age":32,"location":"Maple Grove"}},{"attributes":{"name":"Conor Armstrong","age":67,"location":"South Darrick"}},{"attributes":{"name":"Earl Hand","age":21,"location":"Port Eusebio"}},{"attributes":{"name":"Rosie Quitzon","age":21,"location":"Roobfort"}},{"attributes":{"name":"Candace Kulas","age":55,"location":"New Hailey"}},{"attributes":{"name":"Lena Stroman","age":67,"location":"Renehaven"}},{"attributes":{"name":"Teagan McGlynn","age":26,"location":"East Verdie"}},{"attributes":{"name":"Myra Stoltenberg","age":64,"location":"Bryonborough"}},{"attributes":{"name":"Deanna Gleichner V","age":50,"location":"New Vickie"}},{"attributes":{"name":"Bernadette O'Hara","age":35,"location":"West Lavina"}},{"attributes":{"name":"Kendra Haley","age":37,"location":"North Kenyon"}},{"attributes":{"name":"Dr. Angie Carter","age":35,"location":"New Keenan"}},{"attributes":{"name":"Dr. Sherman Gorczany","age":49,"location":"West Unique"}},{"attributes":{"name":"Rodolfo Bechtelar IV","age":61,"location":"Pharr"}},{"attributes":{"name":"Katelyn Wiza","age":31,"location":"New York"}},{"attributes":{"name":"Mrs. Betty Lubowitz","age":31,"location":"Langland"}},{"attributes":{"name":"Kale Hills DDS","age":61,"location":"South Karleymouth"}},{"attributes":{"name":"Dr. Kyle Durgan","age":61,"location":"South Flo"}},{"attributes":{"name":"Rhiannon Smitham-Rogahn","age":42,"location":"Sigurdstad"}},{"attributes":{"name":"Jaquelin Zemlak","age":57,"location":"North Rosaleestead"}},{"attributes":{"name":"Keira Tromp MD","age":53,"location":"Lake Durward"}},{"attributes":{"name":"Lorene Mann","age":53,"location":"Mariaside"}},{"attributes":{"name":"Edwin Tremblay I","age":45,"location":"South Malcolmcester"}},{"attributes":{"name":"Beatrice Littel MD","age":66,"location":"Allentown"}},{"attributes":{"name":"Laverne Muller MD","age":30,"location":"West Normaview"}},{"attributes":{"name":"Dr. Katie Casper","age":38,"location":"Ernestotown"}},{"attributes":{"name":"Janie Schmidt","age":70,"location":"West Yasminfurt"}},{"attributes":{"name":"Cameron Mitchell","age":23,"location":"Willmscester"}},{"attributes":{"name":"Blaise Fahey","age":24,"location":"Fadelworth"}},{"attributes":{"name":"Shari Hane-Lueilwitz","age":76,"location":"East Johathan"}},{"attributes":{"name":"Felicia Dibbert","age":76,"location":"Lake Audreanne"}},{"attributes":{"name":"Dr. Meagan Reichert V","age":59,"location":"West Junius"}},{"attributes":{"name":"Mrs. Deshawn Koepp","age":68,"location":"Hermistonton"}},{"attributes":{"name":"Jamie Jacobson","age":46,"location":"North Tito"}},{"attributes":{"name":"Pete Zulauf III","age":76,"location":"Rosaville"}},{"attributes":{"name":"Marta Lakin","age":38,"location":"New Calebstead"}},{"attributes":{"name":"Bobby Hahn","age":42,"location":"North Las Vegas"}},{"attributes":{"name":"Ken Gislason","age":51,"location":"Volkmanhaven"}},{"attributes":{"name":"Dwight Funk","age":30,"location":"East Art"}},{"attributes":{"name":"Antonia Von","age":47,"location":"Watersborough"}},{"attributes":{"name":"Pamela Hackett-Purdy","age":41,"location":"Port Katharinamouth"}},{"attributes":{"name":"Jason Koepp","age":72,"location":"West Sashabury"}},{"attributes":{"name":"Kyle Dickinson","age":74,"location":"East Pearlietown"}},{"attributes":{"name":"Ralph Koelpin V","age":26,"location":"Rock Hill"}},{"attributes":{"name":"Miss Deshawn Thompson","age":72,"location":"Laredo"}},{"attributes":{"name":"Nichole Mante","age":77,"location":"Lake Mossie"}},{"attributes":{"name":"Gregory Koss","age":78,"location":"New Emanuelside"}},{"attributes":{"name":"Maddison Gislason","age":38,"location":"East Cayla"}},{"attributes":{"name":"Deontae Franecki","age":58,"location":"Port Braedenfort"}},{"attributes":{"name":"Jade Ward","age":26,"location":"Claireboro"}},{"attributes":{"name":"Rogers Cassin","age":42,"location":"Rohanboro"}},{"attributes":{"name":"Jimmy Halvorson","age":75,"location":"Beverlybury"}},{"attributes":{"name":"Triston Hilll-Tillman I","age":75,"location":"New Rahsaanbury"}},{"attributes":{"name":"Lindsay Russel","age":64,"location":"Bradtkeworth"}},{"attributes":{"name":"Stacey Wiza","age":78,"location":"Pittsburgh"}},{"attributes":{"name":"Lila Pfeffer","age":63,"location":"Noemistead"}},{"attributes":{"name":"Clarence Runolfsson","age":20,"location":"Greenholtport"}},{"attributes":{"name":"Estelle Graham","age":37,"location":"Oklahoma City"}},{"attributes":{"name":"Noel Schowalter-Luettgen","age":55,"location":"New Bonita"}},{"attributes":{"name":"Tiana Medhurst II","age":45,"location":"Mosesfield"}},{"attributes":{"name":"Haylie Daniel IV","age":23,"location":"North Highlands"}},{"attributes":{"name":"Norman Zemlak IV","age":20,"location":"Rio Rancho"}},{"attributes":{"name":"Dr. Barry Treutel","age":55,"location":"Brookline"}},{"attributes":{"name":"Lucy Auer","age":31,"location":"North Jessland"}},{"attributes":{"name":"Willis Abshire","age":80,"location":"Whiteboro"}},{"attributes":{"name":"Teagan Herzog","age":47,"location":"Lake Kevonmouth"}},{"attributes":{"name":"Larry Ernser IV","age":52,"location":"Fort Joncester"}},{"attributes":{"name":"Della Torp","age":71,"location":"Bechtelarcester"}},{"attributes":{"name":"Wyatt Bosco","age":48,"location":"Horacioview"}},{"attributes":{"name":"Edyth Ledner","age":38,"location":"Fort Otiliashire"}},{"attributes":{"name":"Dr. Kaelyn McGlynn","age":27,"location":"Sporerburgh"}},{"attributes":{"name":"Arthur Halvorson","age":26,"location":"Paucektown"}},{"attributes":{"name":"Jayde Feest MD","age":34,"location":"Johnsmouth"}},{"attributes":{"name":"Leonard Kiehn","age":73,"location":"New Trace"}},{"attributes":{"name":"Flora Price","age":32,"location":"Cullenboro"}},{"attributes":{"name":"Alyson Reynolds-Jones","age":25,"location":"St. Louis Park"}},{"attributes":{"name":"Johnnie Powlowski","age":60,"location":"Lake Yesseniafield"}},{"attributes":{"name":"Mr. Sedrick Aufderhar IV","age":30,"location":"Fort Dion"}},{"attributes":{"name":"Yvette Bradtke","age":22,"location":"New Lydia"}},{"attributes":{"name":"Roosevelt Jacobi","age":26,"location":"Paxtonton"}},{"attributes":{"name":"Dewayne Bogisich","age":32,"location":"Christchester"}},{"attributes":{"name":"Dr. Wayne Welch","age":67,"location":"North Brody"}},{"attributes":{"name":"Sanford Ernser IV","age":49,"location":"Joshuaborough"}},{"attributes":{"name":"Darion Will","age":63,"location":"West Dudley"}},{"attributes":{"name":"Cletus Roob","age":64,"location":"Justinaboro"}},{"attributes":{"name":"Mr. Cesar Reichel","age":39,"location":"Hollyburgh"}},{"attributes":{"name":"Trevor Schuster","age":74,"location":"Bethlehem"}},{"attributes":{"name":"Tiana Ullrich","age":26,"location":"Joeyberg"}},{"attributes":{"name":"Jewel Raynor","age":41,"location":"Harveyberg"}},{"attributes":{"name":"Mortimer Treutel","age":73,"location":"Spencermouth"}},{"attributes":{"name":"Dr. Vincent Shanahan","age":41,"location":"West Regan"}},{"attributes":{"name":"Russell O'Keefe II","age":60,"location":"West Eric"}},{"attributes":{"name":"Cordie Mann","age":74,"location":"Nelsonfort"}},{"attributes":{"name":"Franklin Hauck","age":64,"location":"Elisatown"}},{"attributes":{"name":"Ike Kihn","age":69,"location":"West Margret"}},{"attributes":{"name":"Salvador McLaughlin","age":67,"location":"Lake Ulises"}},{"attributes":{"name":"Latoya Johnson","age":20,"location":"West Ikeville"}},{"attributes":{"name":"Mrs. Joan Jakubowski-Schoen","age":76,"location":"Johns Creek"}},{"attributes":{"name":"Ewald Hamill","age":66,"location":"Flower Mound"}},{"attributes":{"name":"Mekhi Bayer","age":65,"location":"West Carmela"}},{"attributes":{"name":"Tobin Gottlieb-Kunde","age":48,"location":"Elmhurst"}},{"attributes":{"name":"Nichole Jakubowski","age":68,"location":"Port Shanieview"}},{"attributes":{"name":"Tyler Greenholt","age":31,"location":"Lake Joe"}},{"attributes":{"name":"Whitney Tillman-Williamson","age":80,"location":"Earleneshire"}},{"attributes":{"name":"Dorothy Goldner","age":58,"location":"North Odieberg"}},{"attributes":{"name":"Irene Kshlerin","age":78,"location":"Kuhlmanfield"}},{"attributes":{"name":"Dr. Hope Anderson-Carroll","age":73,"location":"Kutchworth"}},{"attributes":{"name":"Alessia Jacobson","age":21,"location":"Johnsboro"}},{"attributes":{"name":"Camden Daugherty","age":80,"location":"Port Rhettstad"}},{"attributes":{"name":"Mrs. Bernard Morissette","age":28,"location":"Oak Park"}},{"attributes":{"name":"Dwight Schultz","age":18,"location":"Meaganport"}},{"attributes":{"name":"Damian Rath","age":78,"location":"Jadenboro"}},{"attributes":{"name":"Augustus Wisoky IV","age":25,"location":"Sporerville"}},{"attributes":{"name":"Robyn Littel II","age":79,"location":"Serenaboro"}},{"attributes":{"name":"Miss Jane Kerluke","age":58,"location":"Aldenstead"}},{"attributes":{"name":"Hillard Wintheiser-Kuhn","age":31,"location":"New Kaleyport"}},{"attributes":{"name":"Renee Homenick","age":30,"location":"Nolanton"}},{"attributes":{"name":"Gerson Heller","age":40,"location":"Hamillport"}},{"attributes":{"name":"Jude Boyle","age":45,"location":"Franeckifield"}},{"attributes":{"name":"Dr. Neil Monahan","age":28,"location":"Blaine"}},{"attributes":{"name":"Frances Brown V","age":45,"location":"Lake Kathleenton"}},{"attributes":{"name":"Vivian Thompson","age":29,"location":"Chesapeake"}},{"attributes":{"name":"Rolando Windler","age":24,"location":"Rolfsonstead"}},{"attributes":{"name":"Conner Rutherford","age":42,"location":"Woodland"}},{"attributes":{"name":"Rochelle Blanda","age":29,"location":"West Candida"}},{"attributes":{"name":"Florence Jaskolski","age":67,"location":"Lake Abigale"}},{"attributes":{"name":"Eula Sauer DVM","age":62,"location":"Doyleland"}},{"attributes":{"name":"Jacques Bernier","age":51,"location":"Reingerport"}},{"attributes":{"name":"Rebecca Schoen","age":40,"location":"Terryworth"}},{"attributes":{"name":"Jerel Steuber","age":28,"location":"Lake Laron"}},{"attributes":{"name":"Justin Cruickshank","age":31,"location":"Port Annettachester"}},{"attributes":{"name":"Korbin Langworth","age":27,"location":"Rudolphboro"}},{"attributes":{"name":"Charlie Kilback-O'Conner","age":22,"location":"Eduardotown"}},{"attributes":{"name":"Shawn Howell","age":62,"location":"North Emilianoberg"}},{"attributes":{"name":"Clarence Cassin","age":70,"location":"Yundthaven"}},{"attributes":{"name":"Dorothy Hackett Sr.","age":26,"location":"West Morganhaven"}},{"attributes":{"name":"Doris Shields","age":53,"location":"Lake Earlinemouth"}},{"attributes":{"name":"Wilbur Nolan","age":70,"location":"West Hassie"}},{"attributes":{"name":"Clayton Kuvalis","age":58,"location":"Andersonstead"}},{"attributes":{"name":"Phillip Renner Sr.","age":68,"location":"New Enoch"}},{"attributes":{"name":"Shannon Yundt II","age":66,"location":"Samirview"}},{"attributes":{"name":"Elenor Jacobson","age":74,"location":"Elenortown"}},{"attributes":{"name":"Freeman Kunde","age":62,"location":"New Allenworth"}},{"attributes":{"name":"Murphy Ritchie","age":41,"location":"South Jorgeland"}},{"attributes":{"name":"David Hermann","age":49,"location":"Lake Tito"}},{"attributes":{"name":"Jamal Sauer","age":70,"location":"New Harrystead"}},{"attributes":{"name":"Tremaine Bednar","age":65,"location":"Nashua"}},{"attributes":{"name":"Erick Gleichner","age":37,"location":"Port Orange"}},{"attributes":{"name":"Ada Schuppe MD","age":24,"location":"West Eduardo"}},{"attributes":{"name":"Corey Auer","age":79,"location":"Abbottton"}},{"attributes":{"name":"Karson Baumbach","age":21,"location":"West Autumn"}},{"attributes":{"name":"Rachel Ruecker PhD","age":23,"location":"Tyler"}},{"attributes":{"name":"Giovanni Turcotte","age":55,"location":"South Billie"}},{"attributes":{"name":"Miss Dannie Mertz","age":77,"location":"Mateochester"}},{"attributes":{"name":"Cary McCullough","age":55,"location":"South Christelleshire"}},{"attributes":{"name":"Roy Pfannerstill MD","age":40,"location":"Fort Sisterstad"}},{"attributes":{"name":"Daniel Raynor","age":74,"location":"New Anjali"}},{"attributes":{"name":"Frederique Goldner","age":71,"location":"South Gwen"}},{"attributes":{"name":"Alden Sauer","age":50,"location":"Port Letamouth"}},{"attributes":{"name":"Ms. Becky Baumbach III","age":50,"location":"North Kariane"}},{"attributes":{"name":"Cornelius Bogan","age":64,"location":"South Berniece"}},{"attributes":{"name":"Thelma Bayer","age":23,"location":"Tonawanda"}},{"attributes":{"name":"Dr. Julius Harber-Price","age":55,"location":"Guaynabo"}},{"attributes":{"name":"Evans White MD","age":43,"location":"Fort Selina"}},{"attributes":{"name":"Delbert Kuhn","age":31,"location":"Atlanta"}},{"attributes":{"name":"Don D'Amore V","age":42,"location":"Ferryport"}},{"attributes":{"name":"Craig Zieme","age":48,"location":"West Markus"}},{"attributes":{"name":"Jeremy Jenkins III","age":18,"location":"Lake Abdielfort"}},{"attributes":{"name":"Pablo Osinski","age":34,"location":"Effertzhaven"}},{"attributes":{"name":"Esteban Franey","age":62,"location":"Walkerville"}},{"attributes":{"name":"Andrew Volkman","age":43,"location":"Lake Cydney"}},{"attributes":{"name":"Jed Dickinson","age":43,"location":"Wunschberg"}},{"attributes":{"name":"Willie Beahan","age":48,"location":"Fort Ebonyton"}},{"attributes":{"name":"Carrie Beer DVM","age":76,"location":"North Aleenport"}},{"attributes":{"name":"Fannie Okuneva","age":73,"location":"Madisonburgh"}},{"attributes":{"name":"Erick Bergnaum-Towne","age":44,"location":"Odellborough"}},{"attributes":{"name":"Randy VonRueden-Gusikowski","age":24,"location":"North Domingoside"}},{"attributes":{"name":"Rory Franecki","age":44,"location":"North Robbiestad"}},{"attributes":{"name":"Heber Legros","age":45,"location":"Rickyton"}},{"attributes":{"name":"Dr. Jose Anderson","age":33,"location":"South Dinamouth"}},{"attributes":{"name":"Sherri Collier","age":55,"location":"Marciafort"}},{"attributes":{"name":"Sherri Turcotte","age":76,"location":"Borerton"}},{"attributes":{"name":"Fernando Graham","age":20,"location":"New Skye"}},{"attributes":{"name":"Rosalyn Kirlin","age":73,"location":"Lake Makayla"}},{"attributes":{"name":"Rod Stoltenberg","age":31,"location":"Riverside"}},{"attributes":{"name":"Sophia Zieme","age":31,"location":"Duanecester"}},{"attributes":{"name":"Patrick Bins-Koch","age":53,"location":"North Ali"}},{"attributes":{"name":"Reymundo Pouros","age":61,"location":"Kevontown"}},{"attributes":{"name":"Zack Murray","age":34,"location":"Langstead"}},{"attributes":{"name":"Opal Dietrich DVM","age":72,"location":"Pollichtown"}},{"attributes":{"name":"Brenda Gerhold","age":58,"location":"New Williestead"}},{"attributes":{"name":"Nathan Schaefer I","age":64,"location":"Kiehnstead"}},{"attributes":{"name":"Effie Kihn","age":55,"location":"Niagara Falls"}},{"attributes":{"name":"Ramiro Kemmer","age":64,"location":"South Meaghanborough"}},{"attributes":{"name":"Kathy Altenwerth-Hilll","age":69,"location":"Fort Mariane"}},{"attributes":{"name":"Bob Bergnaum DVM","age":20,"location":"Harveyfield"}},{"attributes":{"name":"Jasmine Cummings DVM","age":78,"location":"Davinchester"}},{"attributes":{"name":"Josh Satterfield DVM","age":31,"location":"Santee"}},{"attributes":{"name":"Katrina Macejkovic","age":27,"location":"South Naomitown"}},{"attributes":{"name":"Alanis Gutkowski","age":44,"location":"Fort Estefania"}},{"attributes":{"name":"Grant Reinger","age":24,"location":"Laylaberg"}},{"attributes":{"name":"Mae Johnson","age":50,"location":"Dundalk"}},{"attributes":{"name":"Terrence Cole","age":25,"location":"New Aracelystad"}},{"attributes":{"name":"Cordell Kris","age":50,"location":"Christiansenfurt"}},{"attributes":{"name":"Floyd Bednar","age":68,"location":"Earlenebury"}},{"attributes":{"name":"Margarita Stamm DVM","age":76,"location":"Diamond Bar"}},{"attributes":{"name":"Sharon Jenkins","age":28,"location":"Lake Everettmouth"}},{"attributes":{"name":"Archie King","age":31,"location":"West Gastonfort"}},{"attributes":{"name":"Tyrel Prohaska","age":75,"location":"Scranton"}},{"attributes":{"name":"Debbie Tromp","age":46,"location":"Lexington-Fayette"}},{"attributes":{"name":"Ralph Thiel-DuBuque","age":73,"location":"New Tiara"}},{"attributes":{"name":"Whitney Kohler","age":52,"location":"Rasheedborough"}},{"attributes":{"name":"Rodrick Ledner","age":45,"location":"Cleveland"}},{"attributes":{"name":"Shelley Stokes","age":35,"location":"Fort Winifredville"}},{"attributes":{"name":"Ms. Euna Trantow","age":19,"location":"East Sam"}},{"attributes":{"name":"Oren Gottlieb","age":28,"location":"Reillyhaven"}},{"attributes":{"name":"Bernadette Lubowitz","age":71,"location":"West Taureanfield"}},{"attributes":{"name":"Tricia Haley","age":35,"location":"Port Elizabeth"}},{"attributes":{"name":"Olin Stamm","age":41,"location":"Fort Ricky"}},{"attributes":{"name":"Dr. Montana Shanahan I","age":37,"location":"Abbottmouth"}},{"attributes":{"name":"Troy Nienow","age":36,"location":"New Ianmouth"}},{"attributes":{"name":"Betty Hane","age":27,"location":"Runolfsdottirburgh"}},{"attributes":{"name":"Judith Friesen","age":23,"location":"Amieview"}},{"attributes":{"name":"Hugo Hoeger III","age":44,"location":"Kurtberg"}},{"attributes":{"name":"Miss Lela Rempel","age":48,"location":"Lake Jennieland"}},{"attributes":{"name":"Taylor Wintheiser V","age":54,"location":"Lake Turner"}},{"attributes":{"name":"Joanne Roob","age":40,"location":"West Aureliafort"}},{"attributes":{"name":"Kristin Runte","age":78,"location":"Rockwall"}},{"attributes":{"name":"Cary Rippin","age":38,"location":"Port Chandlerland"}},{"attributes":{"name":"Lori Pacocha","age":59,"location":"Merlestead"}},{"attributes":{"name":"Sandra Marquardt","age":25,"location":"Carliehaven"}},{"attributes":{"name":"Helen Tromp-Kozey","age":20,"location":"East Selina"}},{"attributes":{"name":"Garry Gulgowski","age":72,"location":"South Denaburgh"}},{"attributes":{"name":"Ms. Cristina O'Connell","age":33,"location":"Zaneville"}},{"attributes":{"name":"Edmund Willms","age":69,"location":"Port Joanieview"}},{"attributes":{"name":"Christine Christiansen","age":33,"location":"Maximusburgh"}},{"attributes":{"name":"Beatrice Smith","age":63,"location":"Jeaniestead"}},{"attributes":{"name":"Riley O'Reilly","age":68,"location":"West Dominic"}},{"attributes":{"name":"Dwayne Schamberger","age":31,"location":"Annetteport"}},{"attributes":{"name":"Elias Larkin","age":44,"location":"Ravenview"}},{"attributes":{"name":"Hugo Fisher","age":58,"location":"North Aleenmouth"}},{"attributes":{"name":"Monique Abbott","age":75,"location":"Port Eldredland"}},{"attributes":{"name":"Willa Pagac","age":43,"location":"Covina"}},{"attributes":{"name":"Roger Dare II","age":64,"location":"New Avafurt"}},{"attributes":{"name":"Brendan Rempel","age":60,"location":"Schaeferworth"}},{"attributes":{"name":"Ebony Altenwerth","age":64,"location":"West Garnettland"}},{"attributes":{"name":"Freeda Moore","age":63,"location":"Cornellboro"}},{"attributes":{"name":"Esther Volkman-Lesch MD","age":64,"location":"Columbusberg"}},{"attributes":{"name":"Bradley Brakus","age":59,"location":"Kshlerinberg"}},{"attributes":{"name":"Darrell Hyatt","age":27,"location":"South Huntermouth"}},{"attributes":{"name":"Rubie Lockman","age":30,"location":"Lake Ramirostad"}},{"attributes":{"name":"Irene Halvorson III","age":33,"location":"Fort Eldredton"}},{"attributes":{"name":"Josephine Ruecker","age":64,"location":"Hoppechester"}},{"attributes":{"name":"Gretchen Leannon","age":34,"location":"Amirfurt"}},{"attributes":{"name":"Domingo Aufderhar","age":40,"location":"Meriden"}},{"attributes":{"name":"Pam Beatty","age":41,"location":"Lowehaven"}},{"attributes":{"name":"Alvah Metz","age":38,"location":"Las Cruces"}},{"attributes":{"name":"Rex Miller","age":28,"location":"Fort Muhammad"}},{"attributes":{"name":"Bernice Greenfelder","age":37,"location":"East Rhoda"}},{"attributes":{"name":"Dean Satterfield V","age":57,"location":"Kochview"}},{"attributes":{"name":"Mattie Hyatt","age":80,"location":"Milwaukee"}},{"attributes":{"name":"Lee Mosciski","age":51,"location":"Adamsbury"}},{"attributes":{"name":"Gwen O'Hara","age":32,"location":"Lake Margareteton"}},{"attributes":{"name":"Salvador Stiedemann","age":72,"location":"West Rosemaryfield"}},{"attributes":{"name":"Maiya Bashirian","age":26,"location":"Hanford"}},{"attributes":{"name":"Jaime Price","age":38,"location":"Lake Eliseo"}},{"attributes":{"name":"Dorian Watsica DVM","age":54,"location":"East Magnolia"}},{"attributes":{"name":"Jesse Halvorson-Graham","age":32,"location":"South Shea"}},{"attributes":{"name":"Greyson Funk-Glover","age":33,"location":"Port Aleenboro"}},{"attributes":{"name":"Jean Schulist","age":71,"location":"Abshirestad"}},{"attributes":{"name":"Jany Shanahan","age":27,"location":"New Chelseyfield"}},{"attributes":{"name":"Reina Raynor PhD","age":32,"location":"New Gwendolyncester"}},{"attributes":{"name":"Dr. Vance Langosh","age":70,"location":"Virgiltown"}},{"attributes":{"name":"Isobel Oberbrunner","age":52,"location":"Brandyshire"}},{"attributes":{"name":"Mr. Wilfred Emard","age":38,"location":"New Damianfield"}},{"attributes":{"name":"Chase Daniel","age":70,"location":"Mertzville"}},{"attributes":{"name":"Kristoffer Marvin-Hartmann","age":80,"location":"Townehaven"}},{"attributes":{"name":"Brett Brown","age":74,"location":"North Brent"}},{"attributes":{"name":"Mrs. Peyton Rutherford","age":41,"location":"Lake Gabriellaboro"}},{"attributes":{"name":"Derick Crist","age":40,"location":"Jacintohaven"}},{"attributes":{"name":"Alfonso Olson","age":74,"location":"New Genesis"}},{"attributes":{"name":"Lexie Blick","age":47,"location":"Nitzscheland"}},{"attributes":{"name":"Jess Crist PhD","age":25,"location":"East Kobe"}},{"attributes":{"name":"Todd Durgan-Heaney","age":37,"location":"Sawayncester"}},{"attributes":{"name":"Erick Sporer","age":55,"location":"Hollyport"}},{"attributes":{"name":"Miss Karen Pollich","age":32,"location":"Dooleyburgh"}},{"attributes":{"name":"Mercedes Feest","age":66,"location":"East Stanleyland"}},{"attributes":{"name":"Jean Johnston","age":26,"location":"South Lawsonfield"}},{"attributes":{"name":"Mercedes Hilpert","age":73,"location":"Krajcikfort"}},{"attributes":{"name":"Gustave Zulauf","age":38,"location":"Ewellborough"}},{"attributes":{"name":"Jasmine Ebert","age":33,"location":"Darefort"}},{"attributes":{"name":"Nathan Gutkowski","age":20,"location":"Lake Audraberg"}},{"attributes":{"name":"Shyanne Gibson","age":78,"location":"DeSoto"}},{"attributes":{"name":"Ricardo Baumbach","age":22,"location":"West Ervin"}},{"attributes":{"name":"Elijah Corwin","age":44,"location":"Noemybury"}},{"attributes":{"name":"Mr. Caleb Okuneva","age":25,"location":"La Crosse"}},{"attributes":{"name":"Arnold Rippin","age":49,"location":"Catherineboro"}},{"attributes":{"name":"Lew Wehner","age":42,"location":"Baumbachcester"}},{"attributes":{"name":"Becky Waelchi","age":67,"location":"Kayleytown"}},{"attributes":{"name":"Wilbert Kuhlman","age":69,"location":"Santa Maria"}},{"attributes":{"name":"Ollie Stamm","age":47,"location":"East Amanitown"}},{"attributes":{"name":"Elsie Abernathy","age":61,"location":"South Wilmer"}},{"attributes":{"name":"Dr. Tomasa Trantow","age":63,"location":"West Danykatown"}},{"attributes":{"name":"Robert Walker","age":54,"location":"Abshirestad"}},{"attributes":{"name":"Dr. Theresa Mills","age":73,"location":"Mitchelstad"}},{"attributes":{"name":"Stacey O'Hara","age":43,"location":"South Ansleycester"}},{"attributes":{"name":"Jeanne Halvorson","age":25,"location":"North Sigurdworth"}},{"attributes":{"name":"Marlene Gleason","age":72,"location":"Tempe"}},{"attributes":{"name":"Cassidy Wiza DVM","age":65,"location":"Douglaschester"}},{"attributes":{"name":"Pierce Langosh","age":77,"location":"Chesapeake"}},{"attributes":{"name":"Sidney Glover","age":77,"location":"Madgecester"}},{"attributes":{"name":"Christina Larkin","age":22,"location":"Euclid"}},{"attributes":{"name":"Alton Rogahn","age":79,"location":"Orange"}},{"attributes":{"name":"Rosalie Dicki","age":74,"location":"South Mackenzie"}},{"attributes":{"name":"Carol Wilderman","age":69,"location":"Gorczanyhaven"}},{"attributes":{"name":"Dr. Martin Schuster","age":56,"location":"Fort Charlesstad"}},{"attributes":{"name":"Tammy Anderson","age":71,"location":"Fort Omariborough"}},{"attributes":{"name":"Henriette Parisian","age":18,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Camille Upton","age":78,"location":"Port Billieton"}},{"attributes":{"name":"Claude Gulgowski","age":45,"location":"Hayward"}},{"attributes":{"name":"Ebba Schowalter","age":78,"location":"Edinburg"}},{"attributes":{"name":"Sally Deckow","age":78,"location":"Zackeryborough"}},{"attributes":{"name":"Dr. Brant Fisher","age":24,"location":"Fort Gerda"}},{"attributes":{"name":"Zachery Renner","age":63,"location":"Durham"}},{"attributes":{"name":"Destiny Zemlak DDS","age":39,"location":"North Rodger"}},{"attributes":{"name":"Dr. Adrian Lehner","age":20,"location":"Scottsdale"}},{"attributes":{"name":"Oscar Hessel","age":40,"location":"Langworthmouth"}},{"attributes":{"name":"Willie Aufderhar II","age":65,"location":"Barrowsstad"}},{"attributes":{"name":"Ms. Sharon Howe V","age":78,"location":"Jovanystead"}},{"attributes":{"name":"Regina Turcotte","age":36,"location":"Schimmelview"}},{"attributes":{"name":"Otis Langworth-Mann","age":40,"location":"North Hiltonton"}},{"attributes":{"name":"Clint Stroman","age":70,"location":"Tinley Park"}},{"attributes":{"name":"Silvia Hills V","age":55,"location":"Lakeville"}},{"attributes":{"name":"Preston Weber","age":29,"location":"West Helga"}},{"attributes":{"name":"Gerard Dooley","age":76,"location":"Hintzville"}},{"attributes":{"name":"Becky Brakus","age":20,"location":"Jasperborough"}},{"attributes":{"name":"Blanca Nader","age":58,"location":"East Kayleigh"}},{"attributes":{"name":"Olga McClure DVM","age":62,"location":"Fort Arvidmouth"}},{"attributes":{"name":"Stacey Wuckert MD","age":51,"location":"Bertastad"}},{"attributes":{"name":"Mr. Lelia Boyer","age":44,"location":"West Crystalchester"}},{"attributes":{"name":"Cynthia Simonis I","age":70,"location":"Carolina"}},{"attributes":{"name":"Terry Watsica","age":79,"location":"Nevaborough"}},{"attributes":{"name":"Karl Prohaska","age":28,"location":"South Rickycester"}},{"attributes":{"name":"Roman Durgan","age":25,"location":"Hoegerstad"}},{"attributes":{"name":"Maria Hirthe","age":36,"location":"Ames"}},{"attributes":{"name":"Jack Bartell","age":80,"location":"North Noemi"}},{"attributes":{"name":"Philip Keeling","age":39,"location":"Fort Joanne"}},{"attributes":{"name":"Ira Crist","age":70,"location":"Port Eloyton"}},{"attributes":{"name":"Aylin Block","age":63,"location":"Claudineborough"}},{"attributes":{"name":"Mr. Jadon Buckridge","age":47,"location":"Diamond Bar"}},{"attributes":{"name":"Deborah Weimann","age":20,"location":"West Kellifurt"}},{"attributes":{"name":"Mr. Leroy Kunze","age":47,"location":"Rempelview"}},{"attributes":{"name":"Cecile Kertzmann","age":65,"location":"South Dashawnville"}},{"attributes":{"name":"Charlie Balistreri","age":18,"location":"Bechtelarview"}},{"attributes":{"name":"Vincent Torphy","age":22,"location":"Fort Elmiraboro"}},{"attributes":{"name":"Cora McClure IV","age":79,"location":"Borerberg"}},{"attributes":{"name":"Holden Ondricka","age":45,"location":"Lake Rebekahborough"}},{"attributes":{"name":"Ethan Grant","age":23,"location":"Romagueraton"}},{"attributes":{"name":"Jacob Hahn IV","age":39,"location":"New Fanniefurt"}},{"attributes":{"name":"Loy Lueilwitz I","age":39,"location":"Handville"}},{"attributes":{"name":"Teresa Zboncak","age":35,"location":"Colebury"}},{"attributes":{"name":"Lenora Schulist","age":29,"location":"Fort Carmenburgh"}},{"attributes":{"name":"Melissa Ankunding","age":57,"location":"Ernaworth"}},{"attributes":{"name":"Alan Hauck","age":46,"location":"Compton"}},{"attributes":{"name":"Dan Hodkiewicz","age":72,"location":"North Desireeside"}},{"attributes":{"name":"Braeden O'Reilly","age":24,"location":"Gislasonbury"}},{"attributes":{"name":"Tasha Kshlerin","age":19,"location":"San Angelo"}},{"attributes":{"name":"Hellen Bernier","age":20,"location":"Vandervorttown"}},{"attributes":{"name":"Ora Tremblay","age":69,"location":"Troy"}},{"attributes":{"name":"Mrs. Leann Armstrong MD","age":78,"location":"Skokie"}},{"attributes":{"name":"Dr. Tomas Schultz","age":28,"location":"Kuhnshire"}},{"attributes":{"name":"Oscar Rippin PhD","age":37,"location":"Jastworth"}},{"attributes":{"name":"Greg Towne","age":33,"location":"Marysville"}},{"attributes":{"name":"Clemmie Schoen","age":59,"location":"East Jenniferton"}},{"attributes":{"name":"Bette Hudson","age":35,"location":"North Ole"}},{"attributes":{"name":"Mayra Mayer","age":37,"location":"Saginaw"}},{"attributes":{"name":"Annette Roob","age":18,"location":"Caraville"}},{"attributes":{"name":"Kristine Conroy","age":78,"location":"Port Princetown"}},{"attributes":{"name":"Mrs. Annabell Harber","age":45,"location":"Lake Delta"}},{"attributes":{"name":"Aaron Bergnaum","age":41,"location":"Southaven"}},{"attributes":{"name":"Mr. Felipe Schmitt","age":54,"location":"Lemkeside"}},{"attributes":{"name":"Glenda Schmeler","age":73,"location":"East Susanport"}},{"attributes":{"name":"Susie Zieme","age":40,"location":"Rippinstad"}},{"attributes":{"name":"Naomi Marquardt","age":23,"location":"Salvatorechester"}},{"attributes":{"name":"Alba Jacobs","age":19,"location":"Doyleport"}},{"attributes":{"name":"Liliana Becker","age":72,"location":"Russelberg"}},{"attributes":{"name":"Sonya Graham","age":77,"location":"North Dorothy"}},{"attributes":{"name":"Camren McLaughlin","age":60,"location":"East Mozellside"}},{"attributes":{"name":"Odell Hessel","age":61,"location":"North Eve"}},{"attributes":{"name":"Garrett Russel","age":54,"location":"East Brycenstead"}},{"attributes":{"name":"Jace Langosh","age":32,"location":"North Ayla"}},{"attributes":{"name":"Abbie Johnston","age":44,"location":"Thornton"}},{"attributes":{"name":"Fiona Kautzer","age":42,"location":"Fort Simonestead"}},{"attributes":{"name":"Mr. Sedrick Volkman","age":76,"location":"New Sterling"}},{"attributes":{"name":"Timmy Stark","age":66,"location":"St. Charles"}},{"attributes":{"name":"Mrs. Imelda Weimann","age":79,"location":"Klingmouth"}},{"attributes":{"name":"Ella Gutkowski-Bosco","age":71,"location":"Fort Joel"}},{"attributes":{"name":"Thurman Muller","age":59,"location":"Lowellhaven"}},{"attributes":{"name":"Jaiden Rutherford","age":41,"location":"North Brandynfurt"}},{"attributes":{"name":"Johanna Bins","age":45,"location":"Fort Rosemouth"}},{"attributes":{"name":"Natalie Orn","age":57,"location":"West Anibalmouth"}},{"attributes":{"name":"Opal Wolf","age":51,"location":"West Parker"}},{"attributes":{"name":"Dr. James Boyer","age":21,"location":"Conroyworth"}},{"attributes":{"name":"Dr. Jevon Schneider","age":19,"location":"Port Friedrich"}},{"attributes":{"name":"Priscilla Kutch","age":47,"location":"Wylie"}},{"attributes":{"name":"Monica Luettgen-Jerde MD","age":27,"location":"Spring"}},{"attributes":{"name":"Christie Schowalter","age":43,"location":"North Elva"}},{"attributes":{"name":"Ellie Schaefer II","age":53,"location":"Garthfield"}},{"attributes":{"name":"Theresa Lakin","age":54,"location":"Winifredview"}},{"attributes":{"name":"Mayra Gorczany","age":38,"location":"North Katelynboro"}},{"attributes":{"name":"Pearline King","age":25,"location":"Wellington"}},{"attributes":{"name":"Mrs. Hazel Bode","age":21,"location":"Azusa"}},{"attributes":{"name":"Robert Wintheiser III","age":66,"location":"Broderickhaven"}},{"attributes":{"name":"Barney Bauch","age":53,"location":"New Rheaburgh"}},{"attributes":{"name":"Corrine Emmerich-Friesen","age":76,"location":"Ellicott City"}},{"attributes":{"name":"Maritza Swift","age":72,"location":"Bernardobury"}},{"attributes":{"name":"Kaylee O'Keefe","age":72,"location":"East Helgaberg"}},{"attributes":{"name":"Rose Runolfsdottir","age":48,"location":"Krajcikborough"}},{"attributes":{"name":"Dimitri Rath DDS","age":72,"location":"East Curt"}},{"attributes":{"name":"Dr. Kayla Weissnat","age":56,"location":"Fort Russmouth"}},{"attributes":{"name":"Mr. Dominick O'Kon","age":61,"location":"Mrazshire"}},{"attributes":{"name":"Julia Brown","age":59,"location":"Israelmouth"}},{"attributes":{"name":"Ava Balistreri","age":39,"location":"Lauriannehaven"}},{"attributes":{"name":"Brandon Feeney Sr.","age":23,"location":"Doyleland"}},{"attributes":{"name":"Nichole Rau-Sporer","age":56,"location":"Port Axelstad"}},{"attributes":{"name":"Candace Littel","age":22,"location":"New Bransonshire"}},{"attributes":{"name":"Mr. Dominic Wisoky-Conroy","age":37,"location":"Fort Erna"}},{"attributes":{"name":"Dr. Beulah Hahn","age":71,"location":"North Adelaside"}},{"attributes":{"name":"Elena Greenholt","age":35,"location":"Spokane Valley"}},{"attributes":{"name":"Lorenzo Lebsack-Johns","age":61,"location":"Menifee"}},{"attributes":{"name":"Thelma Steuber DDS","age":34,"location":"Malcolmboro"}},{"attributes":{"name":"Horace Hettinger","age":68,"location":"Sheboygan"}},{"attributes":{"name":"Elias Langworth MD","age":60,"location":"Lake Carmelfield"}},{"attributes":{"name":"Adrienne Keebler","age":19,"location":"Hendersonville"}},{"attributes":{"name":"Mozell Swift","age":72,"location":"Fort Coltport"}},{"attributes":{"name":"Mr. Faustino Stamm","age":58,"location":"Port Deionberg"}},{"attributes":{"name":"Mrs. Cynthia Gulgowski","age":80,"location":"Mattiechester"}},{"attributes":{"name":"Dr. Nedra Braun","age":64,"location":"South Ronaldo"}},{"attributes":{"name":"Dr. Deangelo O'Reilly","age":35,"location":"West Alanna"}},{"attributes":{"name":"Dasia Gorczany PhD","age":51,"location":"Port Deltatown"}},{"attributes":{"name":"Noe Nicolas","age":27,"location":"Rempelberg"}},{"attributes":{"name":"Miss Ramon McDermott","age":24,"location":"Lake Porter"}},{"attributes":{"name":"Harriet Nitzsche","age":28,"location":"Fernmouth"}},{"attributes":{"name":"Emilio Welch","age":60,"location":"South Jimmychester"}},{"attributes":{"name":"Catherine Beer","age":38,"location":"Legroshaven"}},{"attributes":{"name":"Sherman Morissette","age":49,"location":"Schneiderchester"}},{"attributes":{"name":"Terrell Moore","age":40,"location":"Gerlachhaven"}},{"attributes":{"name":"Kristy Oberbrunner MD","age":80,"location":"Orland Park"}},{"attributes":{"name":"Hilma Conroy","age":18,"location":"Hermistonstead"}},{"attributes":{"name":"Myles Kerluke","age":48,"location":"South Blancahaven"}},{"attributes":{"name":"Seth Quigley","age":66,"location":"Domingoshire"}},{"attributes":{"name":"Florence Frami","age":50,"location":"Fontana"}},{"attributes":{"name":"Matt O'Conner","age":69,"location":"North Jaeden"}},{"attributes":{"name":"Kelsi Nitzsche","age":26,"location":"Jenkinsworth"}},{"attributes":{"name":"Robyn Thompson DDS","age":68,"location":"North Alaina"}},{"attributes":{"name":"Kristi Zieme DDS","age":71,"location":"West Julianne"}},{"attributes":{"name":"Maria Terry","age":75,"location":"Luettgenbury"}},{"attributes":{"name":"Estell Medhurst","age":23,"location":"Port Lydia"}},{"attributes":{"name":"Elvira Ebert","age":24,"location":"Freddyville"}},{"attributes":{"name":"Adonis Wunsch","age":49,"location":"West Taurean"}},{"attributes":{"name":"Mr. Wilbur Walsh","age":26,"location":"Kohlerton"}},{"attributes":{"name":"Vicenta Fay","age":62,"location":"Ritchiehaven"}},{"attributes":{"name":"Bettye Russel","age":34,"location":"Santa Clarita"}},{"attributes":{"name":"Heath Rice IV","age":24,"location":"Pearl City"}},{"attributes":{"name":"Bryan West","age":54,"location":"North Las Vegas"}},{"attributes":{"name":"Carole Nader-Hahn","age":79,"location":"Lake Matteoview"}},{"attributes":{"name":"Jamie Braun","age":55,"location":"Okunevatown"}},{"attributes":{"name":"Verona Rodriguez","age":66,"location":"Amariberg"}},{"attributes":{"name":"Hassan Balistreri III","age":52,"location":"South Lindsey"}},{"attributes":{"name":"Shaun Torp","age":21,"location":"New Sanford"}},{"attributes":{"name":"Juanita Labadie","age":25,"location":"Emmaleefurt"}},{"attributes":{"name":"Theresia Kunde","age":56,"location":"Kundecester"}},{"attributes":{"name":"James Kunde","age":70,"location":"New Clotilde"}},{"attributes":{"name":"Elbert Bayer Jr.","age":63,"location":"Lake Gavincester"}},{"attributes":{"name":"Lee Skiles","age":70,"location":"North Alfredcester"}},{"attributes":{"name":"Irma Spinka","age":56,"location":"Stromancester"}},{"attributes":{"name":"Candace Hamill I","age":62,"location":"Sandy"}},{"attributes":{"name":"Brent Rowe","age":78,"location":"Wolffberg"}},{"attributes":{"name":"Garrett Cole","age":46,"location":"Bahringerstad"}},{"attributes":{"name":"Rigoberto Watsica","age":22,"location":"Dionstead"}},{"attributes":{"name":"Yvette Hane","age":78,"location":"South Mylenecester"}},{"attributes":{"name":"Jacky Bogisich","age":48,"location":"Windlerhaven"}},{"attributes":{"name":"Axel Kshlerin","age":34,"location":"Fort Aliyah"}},{"attributes":{"name":"Noelia Lind V","age":57,"location":"Kylerfield"}},{"attributes":{"name":"Dr. Santina Miller Jr.","age":77,"location":"New Leonelstad"}},{"attributes":{"name":"Angie Graham","age":74,"location":"Caldwell"}},{"attributes":{"name":"Dr. Darron Torphy-Fritsch","age":30,"location":"Fort Gussie"}},{"attributes":{"name":"Kim Lemke DVM","age":41,"location":"West Isobelchester"}},{"attributes":{"name":"Ian Huels-Carter","age":31,"location":"Port Aglae"}},{"attributes":{"name":"Presley Stiedemann","age":59,"location":"Rubiecester"}},{"attributes":{"name":"Miss Mandy Koch","age":19,"location":"Alexandrineport"}},{"attributes":{"name":"Julian Zboncak-Strosin","age":39,"location":"Parkerview"}},{"attributes":{"name":"Marian Denesik Jr.","age":63,"location":"Moline"}},{"attributes":{"name":"Earlene Doyle","age":37,"location":"Erie"}},{"attributes":{"name":"Eula Graham","age":77,"location":"Elainafurt"}},{"attributes":{"name":"Judith Fritsch","age":35,"location":"Larkinfort"}},{"attributes":{"name":"Samara Hegmann Sr.","age":30,"location":"Caguas"}},{"attributes":{"name":"Belinda Boehm","age":50,"location":"Russfield"}},{"attributes":{"name":"Lloyd Senger","age":26,"location":"Lake Randallbury"}},{"attributes":{"name":"Lynne Lesch","age":20,"location":"Mekhifield"}},{"attributes":{"name":"Cecil West IV","age":43,"location":"South Earlene"}},{"attributes":{"name":"Mr. Marilyne Howe","age":20,"location":"Fort Keshaunton"}},{"attributes":{"name":"Brannon Skiles","age":32,"location":"Connorstead"}},{"attributes":{"name":"Mr. Cleora Wintheiser V","age":21,"location":"Pouroston"}},{"attributes":{"name":"Jaron Ebert","age":57,"location":"Moenshire"}},{"attributes":{"name":"Anna Lind","age":20,"location":"Stuartland"}},{"attributes":{"name":"Dejon Leannon","age":20,"location":"Lynn"}},{"attributes":{"name":"Marianne Rempel","age":47,"location":"Gary"}},{"attributes":{"name":"Lillian Little","age":24,"location":"Deltastead"}},{"attributes":{"name":"Mable Rath","age":59,"location":"Lake Jose"}},{"attributes":{"name":"Layne Stoltenberg","age":34,"location":"Weimannview"}},{"attributes":{"name":"Zaria Koepp","age":20,"location":"Treutelboro"}},{"attributes":{"name":"Elvira Von-Howe","age":54,"location":"Vergieport"}},{"attributes":{"name":"Mrs. Olga Considine PhD","age":29,"location":"Carterton"}},{"attributes":{"name":"Stewart Gutmann","age":39,"location":"Astridland"}},{"attributes":{"name":"Dr. Angie West","age":78,"location":"Hesperia"}},{"attributes":{"name":"Nannie Franecki","age":80,"location":"East Forest"}},{"attributes":{"name":"Nellie Schulist","age":74,"location":"Fullerton"}},{"attributes":{"name":"Hayden Turcotte","age":32,"location":"Konopelskiville"}},{"attributes":{"name":"Ross Marks","age":52,"location":"New Haven"}},{"attributes":{"name":"Keyshawn Toy","age":71,"location":"Costa Mesa"}},{"attributes":{"name":"Mr. Celia Abernathy","age":46,"location":"Johnsonville"}},{"attributes":{"name":"Mrs. Vena Halvorson","age":53,"location":"Ebertland"}},{"attributes":{"name":"Jill Raynor","age":37,"location":"Joliet"}},{"attributes":{"name":"Edwin Hoppe","age":54,"location":"Greenfelderside"}},{"attributes":{"name":"Jeremiah Kautzer-Adams","age":70,"location":"South Tiffanyview"}},{"attributes":{"name":"Edith McKenzie III","age":80,"location":"Erdmanburgh"}},{"attributes":{"name":"Ms. Hattie Reichert PhD","age":43,"location":"Rolfsonberg"}},{"attributes":{"name":"Stephen Ward DVM","age":78,"location":"South Orrin"}},{"attributes":{"name":"Marshall Glover","age":75,"location":"East Amelie"}},{"attributes":{"name":"Miss Maryse Macejkovic IV","age":19,"location":"Pagacchester"}},{"attributes":{"name":"Miss Sherri Ratke","age":20,"location":"Fort Elizabeth"}},{"attributes":{"name":"Tressie Daugherty","age":79,"location":"Kuhnboro"}},{"attributes":{"name":"Moses Jacobi Sr.","age":63,"location":"South Halle"}},{"attributes":{"name":"Kerry Reichert","age":60,"location":"East Marlin"}},{"attributes":{"name":"Mr. Edgar Wolf","age":23,"location":"Margarettmouth"}},{"attributes":{"name":"Kayla Yost Jr.","age":69,"location":"Toniport"}},{"attributes":{"name":"Kayleigh Franecki","age":69,"location":"East Samara"}},{"attributes":{"name":"Dr. Kerry Anderson II","age":21,"location":"Weston"}},{"attributes":{"name":"Ollie Barrows","age":55,"location":"Aiyanaton"}},{"attributes":{"name":"Catherine Cummings","age":59,"location":"New Haven"}},{"attributes":{"name":"Sandra Hackett","age":46,"location":"Wilmington"}},{"attributes":{"name":"Leanne Kuhlman","age":75,"location":"North Adell"}},{"attributes":{"name":"Francis Parker","age":58,"location":"Tamiami"}},{"attributes":{"name":"Jean Gibson","age":70,"location":"Madera"}},{"attributes":{"name":"Alan Torp","age":48,"location":"Fort Laury"}},{"attributes":{"name":"Bryan Steuber","age":24,"location":"West Imogene"}},{"attributes":{"name":"Delaney Bogan","age":45,"location":"Marquardtstead"}},{"attributes":{"name":"Armani Pollich DVM","age":48,"location":"Port Breanaside"}},{"attributes":{"name":"Ms. Naomi O'Connell","age":50,"location":"South Lucileview"}},{"attributes":{"name":"Dan Ledner","age":76,"location":"Kaitlynburgh"}},{"attributes":{"name":"Shane VonRueden","age":75,"location":"Gleichnerberg"}},{"attributes":{"name":"Kenny Mohr MD","age":49,"location":"Jonesfurt"}},{"attributes":{"name":"Ricardo Nienow IV","age":65,"location":"Marctown"}},{"attributes":{"name":"Moses Morar","age":70,"location":"Maryseside"}},{"attributes":{"name":"Tom Corwin","age":33,"location":"Terrystead"}},{"attributes":{"name":"Ms. Peyton Monahan MD","age":69,"location":"Zulaufberg"}},{"attributes":{"name":"Krystina Reichel","age":29,"location":"Port Shyannfurt"}},{"attributes":{"name":"Karianne Monahan","age":63,"location":"West Petetown"}},{"attributes":{"name":"Warren Huel","age":50,"location":"Rosenbaumfort"}},{"attributes":{"name":"Eleanore Hackett","age":43,"location":"Mertzborough"}},{"attributes":{"name":"Jermey Doyle","age":80,"location":"Walterfield"}},{"attributes":{"name":"Ms. Lora Zulauf Sr.","age":74,"location":"West Luz"}},{"attributes":{"name":"Lennie Mitchell","age":71,"location":"Lake Anastacio"}},{"attributes":{"name":"Dr. Yvette Becker","age":23,"location":"Brianafurt"}},{"attributes":{"name":"Ryder Kirlin","age":23,"location":"Rhettboro"}},{"attributes":{"name":"Mrs. Alisa Hackett","age":43,"location":"Johnson City"}},{"attributes":{"name":"Lucas Hartmann Jr.","age":18,"location":"Sporerfort"}},{"attributes":{"name":"Elisa McDermott","age":61,"location":"East Queen"}},{"attributes":{"name":"Jo Pfeffer","age":49,"location":"East Ibrahim"}},{"attributes":{"name":"Diane Greenholt","age":73,"location":"New Aaronport"}},{"attributes":{"name":"Tamara Spencer","age":62,"location":"Vallejo"}},{"attributes":{"name":"Eloise Hammes","age":25,"location":"New Koby"}},{"attributes":{"name":"Roberta Gerhold","age":38,"location":"West Vivaside"}},{"attributes":{"name":"Dr. Warren McGlynn","age":58,"location":"East Sigrid"}},{"attributes":{"name":"Mr. Saul Crist","age":49,"location":"North Maxtown"}},{"attributes":{"name":"Rasheed McDermott","age":73,"location":"East Winstonboro"}},{"attributes":{"name":"Sergio Hintz","age":34,"location":"D'Amorechester"}},{"attributes":{"name":"Clara Cartwright","age":43,"location":"Jacyntheworth"}},{"attributes":{"name":"Ethel Brekke","age":74,"location":"North Rashawn"}},{"attributes":{"name":"Roxanne Buckridge","age":56,"location":"Kovacekchester"}},{"attributes":{"name":"Jaylin Lueilwitz","age":39,"location":"O'Keefefort"}},{"attributes":{"name":"Marianne Hane","age":58,"location":"East Kaydenland"}},{"attributes":{"name":"Dee Raynor","age":50,"location":"Sydneycester"}},{"attributes":{"name":"Mary Hudson-Doyle","age":55,"location":"Mertzton"}},{"attributes":{"name":"Amy Ortiz DVM","age":59,"location":"East Celine"}},{"attributes":{"name":"Mrs. Jesus Schaefer","age":74,"location":"Marianeshire"}},{"attributes":{"name":"George Dickinson","age":56,"location":"Brownport"}},{"attributes":{"name":"Walton Thompson","age":20,"location":"Fort Lynnland"}},{"attributes":{"name":"Janiya Hansen","age":33,"location":"Port Johnnyview"}},{"attributes":{"name":"Edgar Sauer","age":31,"location":"Leesburg"}},{"attributes":{"name":"Elizabeth Labadie Jr.","age":67,"location":"Fort Jessycaworth"}},{"attributes":{"name":"Lenny Ortiz","age":58,"location":"Fort Sandraberg"}},{"attributes":{"name":"Delilah Green","age":73,"location":"Oliverview"}},{"attributes":{"name":"Eva Pouros","age":61,"location":"Fayeburgh"}},{"attributes":{"name":"Dr. Mireille Konopelski","age":79,"location":"Fort Diegofield"}},{"attributes":{"name":"Rickey Spencer II","age":37,"location":"Fort Nathanielbury"}},{"attributes":{"name":"Scott Monahan","age":80,"location":"East Meaganboro"}},{"attributes":{"name":"Nicolas Tremblay-Dare","age":41,"location":"North Trentontown"}},{"attributes":{"name":"Emilie Ankunding Jr.","age":28,"location":"Port Manley"}},{"attributes":{"name":"Gladys Reichert-Schmeler","age":28,"location":"East Kayliefield"}},{"attributes":{"name":"Ignatius Howe","age":20,"location":"Appleton"}},{"attributes":{"name":"Dr. Rodolfo Weimann","age":68,"location":"East Sammy"}},{"attributes":{"name":"Linda Lebsack-Sporer","age":38,"location":"Port Josefaland"}},{"attributes":{"name":"Queen Oberbrunner","age":32,"location":"South Bonnie"}},{"attributes":{"name":"Melba McClure","age":32,"location":"New Merrittboro"}},{"attributes":{"name":"Viviane Jacobs","age":39,"location":"East Ellsworthfort"}},{"attributes":{"name":"Jesse Jakubowski","age":48,"location":"West Blakeworth"}},{"attributes":{"name":"Dr. Nellie Baumbach","age":52,"location":"Lindmouth"}},{"attributes":{"name":"Kayleigh Kautzer","age":80,"location":"Bristol"}},{"attributes":{"name":"Ramiro Bergstrom","age":59,"location":"Fort Jedediahfort"}},{"attributes":{"name":"Angelica Nitzsche","age":30,"location":"Ilianaview"}},{"attributes":{"name":"Dr. Francisco Wuckert","age":60,"location":"Rempeltown"}},{"attributes":{"name":"Ahmad Gleichner","age":28,"location":"Marquischester"}},{"attributes":{"name":"Charlie Bergnaum V","age":59,"location":"Schultzfield"}},{"attributes":{"name":"Lillian Haag","age":70,"location":"Paterson"}},{"attributes":{"name":"Janet Wisoky","age":28,"location":"West Loraine"}},{"attributes":{"name":"Janet Moen","age":79,"location":"Brooklyn Park"}},{"attributes":{"name":"Jayson Wolf","age":27,"location":"Kaitlinbury"}},{"attributes":{"name":"Erin Lemke","age":55,"location":"Wilmafort"}},{"attributes":{"name":"Sean Herman","age":34,"location":"Leannonburgh"}},{"attributes":{"name":"Dr. Orville Robel","age":60,"location":"Beahanfort"}},{"attributes":{"name":"Gilda Ebert","age":61,"location":"Peoria"}},{"attributes":{"name":"Iris O'Kon II","age":72,"location":"Rochester"}},{"attributes":{"name":"Sylvester Osinski","age":76,"location":"Lawton"}},{"attributes":{"name":"Quinton Hayes","age":51,"location":"Fort Candidaside"}},{"attributes":{"name":"Dr. Tim Bogisich","age":56,"location":"Lake Kiley"}},{"attributes":{"name":"Teagan Howe","age":46,"location":"Aprilborough"}},{"attributes":{"name":"Alfreda Hilll-Hoppe","age":56,"location":"North Stefanchester"}},{"attributes":{"name":"Mr. Gabriel Jones V","age":27,"location":"Marvinboro"}},{"attributes":{"name":"Ms. Rita Morissette","age":52,"location":"Missoula"}},{"attributes":{"name":"Freda Pacocha","age":49,"location":"East Reinafort"}},{"attributes":{"name":"Stacey Marks","age":44,"location":"Jeromefield"}},{"attributes":{"name":"Helmer McCullough","age":21,"location":"East Shawn"}},{"attributes":{"name":"Sonya Mosciski","age":25,"location":"South San Francisco"}},{"attributes":{"name":"Jeffery Barrows","age":65,"location":"New April"}},{"attributes":{"name":"Leslie O'Connell","age":74,"location":"South Matilde"}},{"attributes":{"name":"Miranda Connelly","age":37,"location":"Lehigh Acres"}},{"attributes":{"name":"Brandy Dooley","age":35,"location":"East Garryside"}},{"attributes":{"name":"Miss Tiara Stamm","age":64,"location":"New Barrytown"}},{"attributes":{"name":"Garry Spencer","age":77,"location":"Laviniachester"}},{"attributes":{"name":"Frankie Baumbach","age":76,"location":"Demetrismouth"}},{"attributes":{"name":"Mr. Clyde Upton","age":53,"location":"Meridian"}},{"attributes":{"name":"Veronica Hegmann","age":71,"location":"Flochester"}},{"attributes":{"name":"Franklin Strosin","age":47,"location":"South Deronfield"}},{"attributes":{"name":"Loretta Paucek","age":55,"location":"Scottsdale"}},{"attributes":{"name":"Opal Stoltenberg","age":76,"location":"Darlenestead"}},{"attributes":{"name":"Alexis Schaefer","age":57,"location":"East Jaunitaburgh"}},{"attributes":{"name":"Dorian Hartmann","age":44,"location":"Nyahberg"}},{"attributes":{"name":"Lucille Koelpin","age":41,"location":"Port Tellymouth"}},{"attributes":{"name":"Aiden McDermott","age":22,"location":"West Jayson"}},{"attributes":{"name":"Effie Kemmer I","age":57,"location":"Vickieborough"}},{"attributes":{"name":"Miss Price Konopelski","age":77,"location":"Trinityville"}},{"attributes":{"name":"Geneva Parker","age":38,"location":"Streichhaven"}},{"attributes":{"name":"Mrs. Deborah Steuber","age":45,"location":"Arden-Arcade"}},{"attributes":{"name":"Velma Maggio","age":57,"location":"North Little Rock"}},{"attributes":{"name":"Mabelle Wehner","age":57,"location":"Murphyburgh"}},{"attributes":{"name":"Jennie Koelpin","age":40,"location":"Gutkowskichester"}},{"attributes":{"name":"Vicki Kerluke","age":43,"location":"Providence"}},{"attributes":{"name":"Richard Beer","age":24,"location":"Port Kelsi"}},{"attributes":{"name":"Dr. Philip Grant-Mueller II","age":42,"location":"Wiegandville"}},{"attributes":{"name":"Earnest Pfannerstill","age":68,"location":"Fort Marquis"}},{"attributes":{"name":"Joann Littel","age":49,"location":"Haskellshire"}},{"attributes":{"name":"Alia Koelpin","age":56,"location":"Port Eleazar"}},{"attributes":{"name":"Winston Gleason","age":29,"location":"East Germaine"}},{"attributes":{"name":"Claire Frami","age":44,"location":"Johnville"}},{"attributes":{"name":"Ms. Courtney Kautzer","age":52,"location":"Port Deshaun"}},{"attributes":{"name":"Carl Auer","age":60,"location":"Fort Angelinechester"}},{"attributes":{"name":"Philip Terry","age":32,"location":"New Herminio"}},{"attributes":{"name":"Nicolette Langosh","age":37,"location":"North Eldred"}},{"attributes":{"name":"Micheal Yost","age":36,"location":"Lake Roscoebury"}},{"attributes":{"name":"Inez Donnelly","age":69,"location":"Langland"}},{"attributes":{"name":"Margarett Russel-Torphy","age":53,"location":"North Caesarstead"}},{"attributes":{"name":"Ora Huels","age":68,"location":"Ratkeworth"}},{"attributes":{"name":"Mrs. Eula Herman","age":43,"location":"East Brianneside"}},{"attributes":{"name":"Edmond Jaskolski","age":67,"location":"Moore"}},{"attributes":{"name":"Mr. Buddy Schowalter","age":69,"location":"Lake Elistead"}},{"attributes":{"name":"Benton Collins","age":57,"location":"O'Haraboro"}},{"attributes":{"name":"Sylvia Kutch","age":72,"location":"North Gideon"}},{"attributes":{"name":"Kennith Stanton-Ferry","age":23,"location":"Plymouth"}},{"attributes":{"name":"Robbie Gerlach","age":37,"location":"East Shanaborough"}},{"attributes":{"name":"Zander Steuber-Mayer","age":68,"location":"Lake Eloisa"}},{"attributes":{"name":"Gustavo Greenholt I","age":62,"location":"West Billy"}},{"attributes":{"name":"Eleanor Berge","age":60,"location":"Fort Magnoliaburgh"}},{"attributes":{"name":"Ervin Reynolds Sr.","age":35,"location":"Apex"}},{"attributes":{"name":"Mr. Omar Conn","age":55,"location":"Hoppeton"}},{"attributes":{"name":"Keith Hamill","age":77,"location":"Lake Ottiliefield"}},{"attributes":{"name":"Ms. Bryon Wiza","age":36,"location":"North Myron"}},{"attributes":{"name":"Nikko Nolan","age":58,"location":"Nikolasside"}},{"attributes":{"name":"Tracy Nienow","age":38,"location":"Prosaccostad"}},{"attributes":{"name":"Hope Wiegand","age":74,"location":"Hillston"}},{"attributes":{"name":"Kristin Ebert","age":73,"location":"Hesselfield"}},{"attributes":{"name":"Mrs. Summer Effertz","age":34,"location":"East Katherineland"}},{"attributes":{"name":"Harold Cremin","age":44,"location":"West Jasperchester"}},{"attributes":{"name":"Dean Mayert","age":60,"location":"Robertsfurt"}},{"attributes":{"name":"Ms. Santina Rippin","age":74,"location":"Roswell"}},{"attributes":{"name":"Penny Daugherty","age":50,"location":"New Ignatius"}},{"attributes":{"name":"Keeley Sauer","age":41,"location":"New Stefanton"}},{"attributes":{"name":"Cory Bernier","age":60,"location":"Franklin"}},{"attributes":{"name":"Candice Schuster","age":44,"location":"Buckridgeworth"}},{"attributes":{"name":"Rene Kuphal","age":68,"location":"Moline"}},{"attributes":{"name":"Aric Luettgen","age":36,"location":"Parisport"}},{"attributes":{"name":"Mr. Vaughn Wehner","age":43,"location":"New Vivianfort"}},{"attributes":{"name":"Estevan D'Amore","age":79,"location":"Port Amyabury"}},{"attributes":{"name":"Kacie Hickle","age":57,"location":"Lavernaboro"}},{"attributes":{"name":"Lorena Wehner","age":62,"location":"North Hectorborough"}},{"attributes":{"name":"Pat Bogisich","age":51,"location":"Parkerside"}},{"attributes":{"name":"Mr. Noah Veum","age":68,"location":"East Albinaside"}},{"attributes":{"name":"Lila Ondricka","age":75,"location":"East Elenorashire"}},{"attributes":{"name":"Yvette Will","age":72,"location":"Legrosstad"}},{"attributes":{"name":"Esperanza Cartwright","age":50,"location":"South Trystan"}},{"attributes":{"name":"Larry Tillman","age":76,"location":"Wendellfort"}},{"attributes":{"name":"Mr. Mittie Reilly Jr.","age":28,"location":"Rozellabury"}},{"attributes":{"name":"Lila Carroll","age":54,"location":"North Hermanhaven"}},{"attributes":{"name":"Jose Stehr","age":49,"location":"Creminfield"}},{"attributes":{"name":"Silvia Kuhlman","age":56,"location":"New Garthberg"}},{"attributes":{"name":"Glenda Murazik","age":36,"location":"Vancouver"}},{"attributes":{"name":"Eliezer Hegmann","age":35,"location":"South Alfredohaven"}},{"attributes":{"name":"Asha Casper","age":35,"location":"South Kristophercester"}},{"attributes":{"name":"Breana Parker V","age":60,"location":"New Myrl"}},{"attributes":{"name":"Florida Daniel","age":63,"location":"East Dion"}},{"attributes":{"name":"Noah Wiegand","age":37,"location":"North Websterworth"}},{"attributes":{"name":"Jenna Stiedemann","age":37,"location":"Dedrickfort"}},{"attributes":{"name":"Nakia Cronin","age":74,"location":"Lake Jerrychester"}},{"attributes":{"name":"Rafael Marvin","age":31,"location":"Lake Arvidview"}},{"attributes":{"name":"Mrs. May Wolff-Stark","age":36,"location":"Pearl City"}},{"attributes":{"name":"Ricardo Wisozk","age":31,"location":"Jastborough"}},{"attributes":{"name":"Garrett Simonis","age":34,"location":"Ashburn"}},{"attributes":{"name":"Jared Cartwright","age":74,"location":"Virgiltown"}},{"attributes":{"name":"Stephanie Goldner","age":78,"location":"Tamiaton"}},{"attributes":{"name":"Kameron Hamill","age":31,"location":"North Christophemouth"}},{"attributes":{"name":"Lester Harber","age":67,"location":"Rebekahfield"}},{"attributes":{"name":"Wilbert Klocko II","age":62,"location":"North Clintonhaven"}},{"attributes":{"name":"Rosalia Mueller","age":19,"location":"Johnstonport"}},{"attributes":{"name":"Gustavo Heller","age":66,"location":"North Eulalia"}},{"attributes":{"name":"Kamille Crooks","age":56,"location":"Muhammadfort"}},{"attributes":{"name":"Don Terry","age":27,"location":"Olympia"}},{"attributes":{"name":"Allison Paucek","age":70,"location":"Roobstead"}},{"attributes":{"name":"Kayla Barrows PhD","age":19,"location":"Kuphalberg"}},{"attributes":{"name":"Wilson Leannon","age":76,"location":"Janetown"}},{"attributes":{"name":"Terri Bradtke","age":35,"location":"Stratford"}},{"attributes":{"name":"Allie Bruen","age":28,"location":"East Lois"}},{"attributes":{"name":"Kamille Kuphal","age":54,"location":"New Payton"}},{"attributes":{"name":"Johnson Hoppe","age":22,"location":"Helmerstad"}},{"attributes":{"name":"Daphne Parker","age":44,"location":"Jaylenport"}},{"attributes":{"name":"Hector Sawayn","age":21,"location":"Westmouth"}},{"attributes":{"name":"Freddie Carroll-Crona","age":56,"location":"Lake Mabelle"}},{"attributes":{"name":"Emily Gibson","age":49,"location":"East Providence"}},{"attributes":{"name":"Dr. Angelina Hackett","age":29,"location":"Krisstead"}},{"attributes":{"name":"Bertha Dickinson","age":74,"location":"Pico Rivera"}},{"attributes":{"name":"Winston Johnston","age":28,"location":"Amarastead"}},{"attributes":{"name":"Chandler Von","age":73,"location":"South Jameson"}},{"attributes":{"name":"Dr. Ronald Stehr-Ankunding","age":20,"location":"Camillehaven"}},{"attributes":{"name":"Zachary Hammes-Metz","age":19,"location":"West Babylon"}},{"attributes":{"name":"Virgil Cummings","age":23,"location":"Cremincester"}},{"attributes":{"name":"Lelia Moen","age":22,"location":"Beahanview"}},{"attributes":{"name":"Edd Franecki IV","age":71,"location":"East Berenicetown"}},{"attributes":{"name":"Rosa Runolfsdottir","age":24,"location":"Araworth"}},{"attributes":{"name":"Elmer Leuschke","age":50,"location":"Nicoleland"}},{"attributes":{"name":"Woodrow Schuster","age":41,"location":"West Nathanielmouth"}},{"attributes":{"name":"Robyn Stracke","age":43,"location":"West Tobyfurt"}},{"attributes":{"name":"Nelson D'Amore V","age":25,"location":"Corvallis"}},{"attributes":{"name":"Andrew Lueilwitz","age":32,"location":"Metzfurt"}},{"attributes":{"name":"Lester Kutch","age":64,"location":"Wisozkhaven"}},{"attributes":{"name":"Hermann Goyette","age":41,"location":"Arielleside"}},{"attributes":{"name":"Bulah Okuneva Sr.","age":62,"location":"South Rodger"}},{"attributes":{"name":"Margarita Simonis","age":42,"location":"Beierville"}},{"attributes":{"name":"Larue Franey","age":23,"location":"Hermistontown"}},{"attributes":{"name":"Miss Eunice Veum","age":68,"location":"Brentwood"}},{"attributes":{"name":"Tremaine Graham","age":79,"location":"South Gate"}},{"attributes":{"name":"Blake Wiegand","age":26,"location":"West Madisen"}},{"attributes":{"name":"Mrs. Turner Stiedemann","age":54,"location":"Erlingstead"}},{"attributes":{"name":"Domenic Farrell V","age":23,"location":"Leolaberg"}},{"attributes":{"name":"Joann Halvorson","age":65,"location":"Port Fabiancester"}},{"attributes":{"name":"Alessandra Goyette","age":19,"location":"South Luther"}},{"attributes":{"name":"Reyna Stark","age":63,"location":"Port Madysonshire"}},{"attributes":{"name":"Patrick Roberts","age":60,"location":"West Eudoraberg"}},{"attributes":{"name":"Harley Carroll","age":28,"location":"New Nyah"}},{"attributes":{"name":"Elaine Jacobson-Nader","age":48,"location":"Lebsackfield"}},{"attributes":{"name":"Owen Bashirian","age":25,"location":"Medhurstton"}},{"attributes":{"name":"Mack Dicki","age":23,"location":"Cynthialand"}},{"attributes":{"name":"Don Bahringer","age":46,"location":"Dallas"}},{"attributes":{"name":"Amos Fay","age":55,"location":"Port Horacioland"}},{"attributes":{"name":"Jade Bernier","age":56,"location":"Lake Beau"}},{"attributes":{"name":"Daniela Zulauf","age":19,"location":"South Carleyhaven"}},{"attributes":{"name":"Mrs. Lorraine Marvin DDS","age":25,"location":"Fort Bailey"}},{"attributes":{"name":"Mr. Tonya Robel","age":76,"location":"Mullershire"}},{"attributes":{"name":"Johnny Graham","age":78,"location":"East Kevin"}},{"attributes":{"name":"Lennie Hickle","age":19,"location":"Queenstead"}},{"attributes":{"name":"Frederick Goodwin","age":48,"location":"Clovis"}},{"attributes":{"name":"Dr. Nadine Ryan","age":21,"location":"Port Marianastad"}},{"attributes":{"name":"Allan Dare","age":67,"location":"West Dexter"}},{"attributes":{"name":"Dr. Josephine Kiehn","age":53,"location":"West Dina"}},{"attributes":{"name":"Natasha Okuneva","age":28,"location":"New Felicitybury"}},{"attributes":{"name":"Aubree Franey PhD","age":71,"location":"Thompsonside"}},{"attributes":{"name":"Lora Conroy","age":60,"location":"New Elsie"}},{"attributes":{"name":"Ms. Nona Adams","age":23,"location":"Mariannaside"}},{"attributes":{"name":"Miracle Stehr","age":58,"location":"West Lacy"}},{"attributes":{"name":"Jamie Kuvalis","age":48,"location":"Sioux City"}},{"attributes":{"name":"Jordy Brakus","age":19,"location":"West Haileehaven"}},{"attributes":{"name":"Omar Emmerich","age":80,"location":"Fort Renestad"}},{"attributes":{"name":"Candace Becker","age":55,"location":"O'Connellville"}},{"attributes":{"name":"Lori Pacocha-Jacobson","age":52,"location":"Sierra Vista"}},{"attributes":{"name":"Donald Kris PhD","age":57,"location":"New Brooksbury"}},{"attributes":{"name":"Ida Walker","age":21,"location":"Jackson"}},{"attributes":{"name":"Courtney Hand-Pouros","age":38,"location":"Minneapolis"}},{"attributes":{"name":"Jalon Reichel","age":62,"location":"Venahaven"}},{"attributes":{"name":"Marc Hoppe","age":59,"location":"Fort Ilamouth"}},{"attributes":{"name":"Lynda Green","age":45,"location":"Camillestad"}},{"attributes":{"name":"Adolf Schaefer","age":80,"location":"East Moses"}},{"attributes":{"name":"Murl Halvorson","age":68,"location":"Kirkland"}},{"attributes":{"name":"Mattie Gorczany-Gislason","age":47,"location":"Mobile"}},{"attributes":{"name":"Salvador Ullrich","age":70,"location":"West Gilbertoville"}},{"attributes":{"name":"Evans Zboncak","age":55,"location":"Fort Priscilla"}},{"attributes":{"name":"Roxanne Considine","age":48,"location":"West Nicholauston"}},{"attributes":{"name":"Kelli Rutherford","age":72,"location":"West Rhianna"}},{"attributes":{"name":"Melissa Turner","age":44,"location":"Littlechester"}},{"attributes":{"name":"Devin Stroman IV","age":68,"location":"New Princeland"}},{"attributes":{"name":"Eugene O'Kon","age":64,"location":"Newton"}},{"attributes":{"name":"Jessie Feeney","age":63,"location":"North Cedrickville"}},{"attributes":{"name":"Roberta Carroll","age":41,"location":"North Dasiafort"}},{"attributes":{"name":"Jerad Wolf","age":46,"location":"Moore"}},{"attributes":{"name":"Joel Stroman","age":28,"location":"Judeboro"}},{"attributes":{"name":"Vince Lindgren","age":36,"location":"West Zetta"}},{"attributes":{"name":"Mary Heidenreich","age":35,"location":"Markushaven"}},{"attributes":{"name":"Delia Leannon","age":72,"location":"South Reaganbury"}},{"attributes":{"name":"Matilda Wisozk-Hand","age":74,"location":"La Crosse"}},{"attributes":{"name":"Mrs. Elaine Ernser","age":32,"location":"Lake Abnershire"}},{"attributes":{"name":"Dr. Kylie O'Hara Sr.","age":26,"location":"Lake Pierrestead"}},{"attributes":{"name":"Jaime Torp","age":69,"location":"Port Kimview"}},{"attributes":{"name":"Greg Wilderman","age":42,"location":"Turnerfield"}},{"attributes":{"name":"Sonya Kemmer","age":34,"location":"Greensboro"}},{"attributes":{"name":"Durward Bergnaum-Jerde","age":30,"location":"Isaiberg"}},{"attributes":{"name":"Patrick Kuhn","age":22,"location":"West Faustofurt"}},{"attributes":{"name":"Alvena Miller","age":30,"location":"Clarkshire"}},{"attributes":{"name":"Dovie Pagac","age":80,"location":"Lake Sam"}},{"attributes":{"name":"Miss Otto Pollich","age":58,"location":"West Cynthiaborough"}},{"attributes":{"name":"Madelynn Rath","age":20,"location":"North Sandrineview"}},{"attributes":{"name":"Sadie Mohr","age":64,"location":"Temecula"}},{"attributes":{"name":"Miss Conner Friesen","age":66,"location":"Odessa"}},{"attributes":{"name":"Peter Kohler","age":18,"location":"Gretchenworth"}},{"attributes":{"name":"Ervin Spencer","age":39,"location":"Winston-Salem"}},{"attributes":{"name":"Pam Bogisich","age":23,"location":"Gresham"}},{"attributes":{"name":"Shannon Pfannerstill","age":77,"location":"Wiegandview"}},{"attributes":{"name":"Lionel Bosco I","age":41,"location":"North Lora"}},{"attributes":{"name":"Consuelo Runte-Jaskolski","age":80,"location":"O'Keefeville"}},{"attributes":{"name":"Jordi Bogisich","age":18,"location":"North Darrellfurt"}},{"attributes":{"name":"Steven Russel","age":48,"location":"West Nathanielcester"}},{"attributes":{"name":"Orin Nicolas","age":62,"location":"North Millie"}},{"attributes":{"name":"Jorge Johnston","age":78,"location":"Bloomington"}},{"attributes":{"name":"Greg Ratke","age":22,"location":"Fort Dillanboro"}},{"attributes":{"name":"Emery Simonis","age":33,"location":"North Allisonstad"}},{"attributes":{"name":"Conrad Rohan","age":79,"location":"Burlington"}},{"attributes":{"name":"Billie Toy","age":69,"location":"South Lelahhaven"}},{"attributes":{"name":"Sheryl Wisozk","age":72,"location":"South Robertoland"}},{"attributes":{"name":"Antone Schulist","age":52,"location":"Cary"}},{"attributes":{"name":"Carolyn Cronin","age":41,"location":"North Joanyworth"}},{"attributes":{"name":"Jackie Morar","age":51,"location":"Smyrna"}},{"attributes":{"name":"Anita Gerlach","age":20,"location":"Lakeville"}},{"attributes":{"name":"Matilde Greenfelder","age":20,"location":"East Thurmanchester"}},{"attributes":{"name":"Jaylen Anderson","age":40,"location":"North Ahmedberg"}},{"attributes":{"name":"Buford Rosenbaum","age":56,"location":"Fayside"}},{"attributes":{"name":"Krista Walker","age":35,"location":"Carmellastead"}},{"attributes":{"name":"Winona Ullrich","age":33,"location":"Fort Dalefurt"}},{"attributes":{"name":"Orland Wiegand","age":44,"location":"Bergnaumtown"}},{"attributes":{"name":"Alton Wuckert","age":74,"location":"Prudencefort"}},{"attributes":{"name":"Robert Jenkins","age":59,"location":"Herminiastead"}},{"attributes":{"name":"Jeffrey Mills","age":74,"location":"New Vito"}},{"attributes":{"name":"Monte Ernser","age":38,"location":"Salinas"}},{"attributes":{"name":"Joyce Pfannerstill","age":36,"location":"Port Augustus"}},{"attributes":{"name":"Lynn Harvey","age":50,"location":"Johncester"}},{"attributes":{"name":"Felipe McGlynn","age":66,"location":"Fort Carmelfield"}},{"attributes":{"name":"Jennie Bernier","age":57,"location":"Fort Elnoraside"}},{"attributes":{"name":"Vanessa Kuhic","age":30,"location":"Mullerstead"}},{"attributes":{"name":"Willie Bosco DVM","age":68,"location":"Krisfort"}},{"attributes":{"name":"Marie Boyle","age":34,"location":"Ledaberg"}},{"attributes":{"name":"Madyson Bartoletti","age":45,"location":"Lake Otiscester"}},{"attributes":{"name":"Armando Willms","age":29,"location":"Nashville-Davidson"}},{"attributes":{"name":"Eugene Langosh MD","age":62,"location":"Ferneboro"}},{"attributes":{"name":"Kameron Labadie","age":64,"location":"Lake Lorenzoport"}},{"attributes":{"name":"Caroline Cassin","age":49,"location":"Harrisview"}},{"attributes":{"name":"Kyle Heaney PhD","age":26,"location":"Colefurt"}},{"attributes":{"name":"Benjamin Schaefer PhD","age":37,"location":"Tacoma"}},{"attributes":{"name":"Gussie Bernier","age":67,"location":"Palm Springs"}},{"attributes":{"name":"Jordane Marks","age":22,"location":"Jaleelside"}},{"attributes":{"name":"Earl Lemke","age":46,"location":"North Valentin"}},{"attributes":{"name":"Carolyn White","age":18,"location":"Buddyhaven"}},{"attributes":{"name":"Billy Hackett","age":37,"location":"North Giovanna"}},{"attributes":{"name":"Francis O'Kon","age":63,"location":"Coralieview"}},{"attributes":{"name":"Oscar Leuschke","age":59,"location":"Emardtown"}},{"attributes":{"name":"Luis Adams","age":49,"location":"Davismouth"}},{"attributes":{"name":"Melba Conn","age":38,"location":"West Howard"}},{"attributes":{"name":"Elisa Sawayn","age":26,"location":"Lake Donavonshire"}},{"attributes":{"name":"Cristina Balistreri V","age":43,"location":"Cliftonchester"}},{"attributes":{"name":"Bernadette Muller MD","age":50,"location":"Johnsonshire"}},{"attributes":{"name":"Melinda Franey V","age":57,"location":"Redondo Beach"}},{"attributes":{"name":"Khalid O'Reilly III","age":78,"location":"Port Ivorytown"}},{"attributes":{"name":"Felipa Monahan","age":65,"location":"Vonworth"}},{"attributes":{"name":"Cheryl Kilback","age":32,"location":"New Modesta"}},{"attributes":{"name":"Allison Heidenreich","age":25,"location":"Toledo"}},{"attributes":{"name":"Ms. Heather Koelpin-Wintheiser","age":45,"location":"North Hallie"}},{"attributes":{"name":"Dr. Tyrone Koch Sr.","age":30,"location":"East Tannerside"}},{"attributes":{"name":"Gregoria Bins","age":67,"location":"East Tara"}},{"attributes":{"name":"Johnnie Jones II","age":66,"location":"New Ardith"}},{"attributes":{"name":"Jerry Ebert","age":59,"location":"West Palm Beach"}},{"attributes":{"name":"Russell Ullrich","age":31,"location":"Brakustown"}},{"attributes":{"name":"Joel Beatty","age":63,"location":"Haydenland"}},{"attributes":{"name":"Cameron Heathcote","age":66,"location":"Fort Londonland"}},{"attributes":{"name":"Iris Thompson","age":80,"location":"Hectorland"}},{"attributes":{"name":"Mrs. Judy O'Hara II","age":64,"location":"Vinnieville"}},{"attributes":{"name":"Mrs. Adeline McDermott","age":63,"location":"Hartmannbury"}},{"attributes":{"name":"Debbie Gorczany","age":72,"location":"Bergnaumbury"}},{"attributes":{"name":"Daryl Schiller","age":74,"location":"South Evelynland"}},{"attributes":{"name":"Newton Leuschke-Schmitt","age":58,"location":"Laurenport"}},{"attributes":{"name":"Jaquelin Friesen","age":80,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Dr. Oswald Doyle","age":31,"location":"Lake Karianefurt"}},{"attributes":{"name":"Amelia Franecki-MacGyver","age":72,"location":"West Rachellecester"}},{"attributes":{"name":"Colt Collins","age":52,"location":"Korbinport"}},{"attributes":{"name":"Patricia Halvorson","age":80,"location":"Fairfield"}},{"attributes":{"name":"Trevor Mueller","age":58,"location":"West Elvaland"}},{"attributes":{"name":"Herman Moen","age":19,"location":"Evelynstead"}},{"attributes":{"name":"Maverick Nader DVM","age":22,"location":"New Georgettechester"}},{"attributes":{"name":"Mrs. Amelie Hilll","age":73,"location":"Marianaview"}},{"attributes":{"name":"Vincent Borer","age":27,"location":"Lindchester"}},{"attributes":{"name":"Lora Braun","age":78,"location":"Southfield"}},{"attributes":{"name":"Courtney Ryan DDS","age":35,"location":"Santa Clarita"}},{"attributes":{"name":"Sean Russel","age":61,"location":"Johnland"}},{"attributes":{"name":"Aaron Schmeler Sr.","age":65,"location":"East Evemouth"}},{"attributes":{"name":"Floyd Rice","age":74,"location":"Fort Nils"}},{"attributes":{"name":"Mark Conroy","age":37,"location":"Connerview"}},{"attributes":{"name":"Hettie McLaughlin","age":26,"location":"Graceton"}},{"attributes":{"name":"Taylor Stroman","age":79,"location":"Shreveport"}},{"attributes":{"name":"Elaine Beier","age":55,"location":"Fort Lylastead"}},{"attributes":{"name":"Luis Conn","age":35,"location":"El Dorado Hills"}},{"attributes":{"name":"Guadalupe Durgan","age":68,"location":"Lake Lucytown"}},{"attributes":{"name":"Veronica Huel","age":38,"location":"Eltatown"}},{"attributes":{"name":"Dr. Camylle Sanford","age":77,"location":"New Jordi"}},{"attributes":{"name":"Mikel Cassin","age":27,"location":"Harrisside"}},{"attributes":{"name":"Rosario Kautzer DDS","age":33,"location":"West Walter"}},{"attributes":{"name":"Casimer Nolan","age":19,"location":"West Joshua"}},{"attributes":{"name":"Mekhi Fay","age":49,"location":"East Lillie"}},{"attributes":{"name":"Marvin Littel","age":72,"location":"Ceres"}},{"attributes":{"name":"Braden Shields","age":24,"location":"Boynton Beach"}},{"attributes":{"name":"Josephine Brown","age":55,"location":"North Jessside"}},{"attributes":{"name":"Kiana Wuckert","age":42,"location":"Spencershire"}},{"attributes":{"name":"Stephanie Kutch","age":50,"location":"East Warren"}},{"attributes":{"name":"Mr. Casandra McLaughlin","age":47,"location":"Armstronghaven"}},{"attributes":{"name":"Tomas Hand-Ferry","age":19,"location":"East Cristian"}},{"attributes":{"name":"Lawrence Bergstrom","age":19,"location":"Attleboro"}},{"attributes":{"name":"Dr. Laverne Mosciski","age":67,"location":"Honolulu"}},{"attributes":{"name":"Joanna Kunde","age":72,"location":"East Khalid"}},{"attributes":{"name":"Dewey Kunde","age":74,"location":"Lake Laverne"}},{"attributes":{"name":"Amos Auer Sr.","age":72,"location":"Moenworth"}},{"attributes":{"name":"Carlos Pollich","age":79,"location":"Hoppeworth"}},{"attributes":{"name":"Miss Alice Bartell V","age":74,"location":"Conroyland"}},{"attributes":{"name":"Jessie Stracke","age":62,"location":"Murphyville"}},{"attributes":{"name":"Mrs. Harry Stoltenberg","age":23,"location":"Priceview"}},{"attributes":{"name":"Dr. Summer Bartoletti","age":36,"location":"Lake Dougtown"}},{"attributes":{"name":"Mr. Tatyana Gorczany","age":80,"location":"San Rafael"}},{"attributes":{"name":"Marilie Corkery","age":65,"location":"McKinney"}},{"attributes":{"name":"Woodrow Wilderman","age":39,"location":"South Claudineburgh"}},{"attributes":{"name":"Bailee Swaniawski","age":41,"location":"Grimesburgh"}},{"attributes":{"name":"Waylon Gibson","age":26,"location":"Ebertshire"}},{"attributes":{"name":"Helena Barrows","age":67,"location":"North Khalilborough"}},{"attributes":{"name":"Brad Koepp","age":51,"location":"East Berry"}},{"attributes":{"name":"Janet Haag","age":58,"location":"Pricebury"}},{"attributes":{"name":"Rozella Berge","age":49,"location":"Dorotheaside"}},{"attributes":{"name":"Brenda Kertzmann","age":71,"location":"Lake Havasu City"}},{"attributes":{"name":"Drake Romaguera","age":35,"location":"Lake Lelandville"}},{"attributes":{"name":"Kim Stiedemann II","age":80,"location":"Gradyborough"}},{"attributes":{"name":"Consuelo Zieme II","age":45,"location":"Port Nadia"}},{"attributes":{"name":"Shaun Sporer DVM","age":77,"location":"Estebanborough"}},{"attributes":{"name":"Mr. Bobby Reichert","age":77,"location":"Charlotte"}},{"attributes":{"name":"Glenda Murray","age":50,"location":"East Nick"}},{"attributes":{"name":"Kara Zulauf","age":45,"location":"New Cassandreview"}},{"attributes":{"name":"Sidney Krajcik","age":46,"location":"Schultzport"}},{"attributes":{"name":"Patsy Quitzon","age":79,"location":"Bradtkehaven"}},{"attributes":{"name":"Neil Kautzer","age":51,"location":"Kshlerinfort"}},{"attributes":{"name":"Sam Pfannerstill","age":37,"location":"Chelseyburgh"}},{"attributes":{"name":"Clementine Leannon","age":18,"location":"Fort Jeanette"}},{"attributes":{"name":"Sylvester Auer","age":34,"location":"South Lilaville"}},{"attributes":{"name":"Maximillia Kuhic","age":60,"location":"Ferryboro"}},{"attributes":{"name":"Holly Feeney","age":42,"location":"Nicolasville"}},{"attributes":{"name":"Antonetta Quitzon III","age":35,"location":"South Doris"}},{"attributes":{"name":"Kale Rutherford","age":45,"location":"New Martinburgh"}},{"attributes":{"name":"Rogelio Gottlieb","age":61,"location":"South Hellenland"}},{"attributes":{"name":"Fay Sporer","age":58,"location":"Castle Rock"}},{"attributes":{"name":"Jamarcus Altenwerth","age":75,"location":"Audreyfort"}},{"attributes":{"name":"Corey Goodwin","age":29,"location":"Johnsfield"}},{"attributes":{"name":"Raphaelle Schowalter","age":79,"location":"New Sophie"}},{"attributes":{"name":"Salma Murray II","age":74,"location":"Jettiechester"}},{"attributes":{"name":"Amber Hyatt","age":61,"location":"Maximilliastad"}},{"attributes":{"name":"Miss Patti Keeling","age":69,"location":"East Madelineburgh"}},{"attributes":{"name":"Christian Haag","age":42,"location":"Constancefurt"}},{"attributes":{"name":"Dr. Dorothea Kulas","age":68,"location":"West Eribertostead"}},{"attributes":{"name":"George Stoltenberg","age":57,"location":"South Mckenzie"}},{"attributes":{"name":"Ryan Okuneva","age":68,"location":"Benfort"}},{"attributes":{"name":"Stephany Schinner","age":37,"location":"Hudsonborough"}},{"attributes":{"name":"Benny Fay","age":26,"location":"South Giovannychester"}},{"attributes":{"name":"Hallie Reilly","age":23,"location":"Beaumont"}},{"attributes":{"name":"Dawn Thompson","age":35,"location":"Fort Darrionside"}},{"attributes":{"name":"Constance Kessler","age":74,"location":"East Joanny"}},{"attributes":{"name":"Betty Hoeger","age":20,"location":"Erdmanbury"}},{"attributes":{"name":"Jamie Bechtelar","age":50,"location":"Leoside"}},{"attributes":{"name":"Elsa Harvey","age":70,"location":"Stokesbury"}},{"attributes":{"name":"Jeff Toy","age":40,"location":"South Mabelle"}},{"attributes":{"name":"Irvin Ebert","age":21,"location":"Opalstad"}},{"attributes":{"name":"Mario Turner","age":53,"location":"Pontiac"}},{"attributes":{"name":"Marco Ward","age":41,"location":"Portsmouth"}},{"attributes":{"name":"Jodi Metz","age":76,"location":"Lake Mckenna"}},{"attributes":{"name":"Donnie Ledner","age":22,"location":"South Phyllisborough"}},{"attributes":{"name":"Rowena Macejkovic","age":58,"location":"North Marguerite"}},{"attributes":{"name":"Emily O'Conner","age":29,"location":"South Camronland"}},{"attributes":{"name":"Lynne Turner","age":38,"location":"West Anais"}},{"attributes":{"name":"Harriet Nitzsche","age":40,"location":"Fort Pedro"}},{"attributes":{"name":"Zachary Stanton","age":31,"location":"Southfield"}},{"attributes":{"name":"Dr. Lelah Treutel-Schmidt Sr.","age":47,"location":"North Kaciland"}},{"attributes":{"name":"Jacob Konopelski-Erdman","age":61,"location":"Georgetown"}},{"attributes":{"name":"Rahsaan Marquardt","age":48,"location":"Lake Marilie"}},{"attributes":{"name":"Miranda Littel","age":56,"location":"Strongsville"}},{"attributes":{"name":"Malcolm Hudson IV","age":80,"location":"Altamonte Springs"}},{"attributes":{"name":"Rickey Kovacek","age":42,"location":"Nolanton"}},{"attributes":{"name":"Kirsten Quigley","age":52,"location":"Lednerview"}},{"attributes":{"name":"Luella Cremin","age":33,"location":"Farrellville"}},{"attributes":{"name":"Dean Padberg","age":66,"location":"East Kamille"}},{"attributes":{"name":"Sophie Weissnat","age":77,"location":"Fargo"}},{"attributes":{"name":"Emmett Pagac","age":61,"location":"North Las Vegas"}},{"attributes":{"name":"Keanu Nikolaus","age":44,"location":"Fort Christinaburgh"}},{"attributes":{"name":"Terry Russel","age":48,"location":"West Bernadettestead"}},{"attributes":{"name":"Wilfred Runolfsdottir","age":77,"location":"Warwick"}},{"attributes":{"name":"Magali Heidenreich MD","age":79,"location":"New Mariannebury"}},{"attributes":{"name":"Miss Royal Nienow","age":29,"location":"Port Eveside"}},{"attributes":{"name":"Kallie Kreiger","age":22,"location":"Lynnworth"}},{"attributes":{"name":"Agnes Donnelly","age":47,"location":"Marvinstad"}},{"attributes":{"name":"Markus Wilkinson","age":69,"location":"Gusikowskiport"}},{"attributes":{"name":"Dwight Considine","age":61,"location":"Homestead"}},{"attributes":{"name":"Iliana Block","age":36,"location":"Tiannaport"}},{"attributes":{"name":"Shane Schmeler","age":75,"location":"East Khalid"}},{"attributes":{"name":"Eric Torphy","age":19,"location":"Abshireview"}},{"attributes":{"name":"Heather Ward","age":38,"location":"Juvenalborough"}},{"attributes":{"name":"Schuyler Corkery MD","age":19,"location":"Mollietown"}},{"attributes":{"name":"Wanda Waters","age":51,"location":"Monroe"}},{"attributes":{"name":"Adeline Stiedemann","age":33,"location":"North Ulises"}},{"attributes":{"name":"Lon Wyman Sr.","age":19,"location":"Port Sandra"}},{"attributes":{"name":"Roger Wolff","age":46,"location":"Harrisburg"}},{"attributes":{"name":"Ramon Reichert","age":50,"location":"South Cortezborough"}},{"attributes":{"name":"Hugo Mosciski","age":36,"location":"Roweland"}},{"attributes":{"name":"Fiona Bayer","age":33,"location":"Lake Elbert"}},{"attributes":{"name":"Ruby Hegmann","age":75,"location":"Port Caleighside"}},{"attributes":{"name":"Shawn Paucek","age":63,"location":"Serenityberg"}},{"attributes":{"name":"Martin Bergstrom","age":24,"location":"Galveston"}},{"attributes":{"name":"Lane Bins","age":19,"location":"Lake Leonorstad"}},{"attributes":{"name":"Myra Yost","age":59,"location":"Edina"}},{"attributes":{"name":"Nicolas Jakubowski","age":40,"location":"North Oceaneshire"}},{"attributes":{"name":"Nicole Balistreri","age":23,"location":"Lake Davoncester"}},{"attributes":{"name":"Wendy Rempel","age":56,"location":"Coyview"}},{"attributes":{"name":"Jennyfer Walsh","age":21,"location":"Beckermouth"}},{"attributes":{"name":"Luke Baumbach MD","age":72,"location":"Talonburgh"}},{"attributes":{"name":"Claude Homenick","age":73,"location":"Omaha"}},{"attributes":{"name":"Julia Parisian","age":70,"location":"Gottliebberg"}},{"attributes":{"name":"Giles Vandervort","age":78,"location":"East Sylvesterworth"}},{"attributes":{"name":"Osborne Champlin","age":57,"location":"Hayleychester"}},{"attributes":{"name":"Devin Padberg","age":21,"location":"Casimirboro"}},{"attributes":{"name":"Earnest Luettgen","age":40,"location":"East Erikashire"}},{"attributes":{"name":"Kaylin Heller DDS","age":63,"location":"Pollyhaven"}},{"attributes":{"name":"Kara Kub","age":62,"location":"Lake Briana"}},{"attributes":{"name":"Brandy Kulas MD","age":77,"location":"Weissnathaven"}},{"attributes":{"name":"Marcos Romaguera","age":53,"location":"Corwinchester"}},{"attributes":{"name":"Harriet Ruecker","age":80,"location":"New Macview"}},{"attributes":{"name":"Mr. Lila Cruickshank","age":80,"location":"Russelstad"}},{"attributes":{"name":"Ernest Koelpin","age":52,"location":"Leannstad"}},{"attributes":{"name":"Laurence Kreiger","age":76,"location":"Feesttown"}},{"attributes":{"name":"Osbaldo Vandervort","age":21,"location":"Cadenton"}},{"attributes":{"name":"Brandon Legros","age":33,"location":"Providence"}},{"attributes":{"name":"Jay Hickle","age":78,"location":"Abbotthaven"}},{"attributes":{"name":"Colleen Hermiston","age":19,"location":"West Steveton"}},{"attributes":{"name":"Sierra McLaughlin MD","age":23,"location":"Middletown"}},{"attributes":{"name":"Mohammed Stamm","age":53,"location":"Faustinoberg"}},{"attributes":{"name":"Ruby Mosciski Jr.","age":46,"location":"Corkeryville"}},{"attributes":{"name":"Erika Kunze","age":65,"location":"Coeur d'Alene"}},{"attributes":{"name":"Miss Shawn Rau","age":59,"location":"Ethelynport"}},{"attributes":{"name":"Rose Shields-Raynor","age":77,"location":"South Martinaborough"}},{"attributes":{"name":"Mary Emard","age":50,"location":"Fort Wayne"}},{"attributes":{"name":"May King","age":54,"location":"Albuquerque"}},{"attributes":{"name":"Shaun Wisoky","age":80,"location":"Cartwrightland"}},{"attributes":{"name":"Lyle Grady","age":45,"location":"West Reynold"}},{"attributes":{"name":"Precious Metz","age":78,"location":"South Jackie"}},{"attributes":{"name":"Christopher Davis","age":55,"location":"Pietrotown"}},{"attributes":{"name":"Emerald Blick","age":67,"location":"Shieldschester"}},{"attributes":{"name":"Dr. Quentin Jenkins","age":31,"location":"East Johannmouth"}},{"attributes":{"name":"Luke West","age":51,"location":"Elliotttown"}},{"attributes":{"name":"Pam Vandervort","age":19,"location":"Dallas"}},{"attributes":{"name":"Myrtice Hermiston-Turcotte","age":72,"location":"Champlinfield"}},{"attributes":{"name":"Ms. Kelly McCullough","age":29,"location":"Port Candelarioside"}},{"attributes":{"name":"Lewis Schroeder","age":32,"location":"Jerdemouth"}},{"attributes":{"name":"Xavier Ward","age":63,"location":"North Zion"}},{"attributes":{"name":"Dr. Lulu Rohan","age":74,"location":"Kuhicport"}},{"attributes":{"name":"Terry Nikolaus","age":64,"location":"West Sharonmouth"}},{"attributes":{"name":"Miss Allison Bailey","age":39,"location":"Lake Casimirside"}},{"attributes":{"name":"Lew Sipes","age":35,"location":"Bellevue"}},{"attributes":{"name":"Stuart Tremblay","age":48,"location":"Fort Coleman"}},{"attributes":{"name":"Derrick Mertz","age":60,"location":"Seattle"}},{"attributes":{"name":"Dr. Shawn Altenwerth","age":40,"location":"North Sage"}},{"attributes":{"name":"Hugo O'Keefe","age":65,"location":"Elianeton"}},{"attributes":{"name":"Tabitha Mraz","age":55,"location":"Novato"}},{"attributes":{"name":"Theodore Kautzer","age":20,"location":"East Itzelworth"}},{"attributes":{"name":"Ms. Elisa Ortiz","age":73,"location":"South Annabelle"}},{"attributes":{"name":"Carlotta Hessel","age":73,"location":"Jerrellside"}},{"attributes":{"name":"Jeannette Quigley","age":75,"location":"East Javontecester"}},{"attributes":{"name":"Vida Rogahn","age":74,"location":"Lake Meaghanfield"}},{"attributes":{"name":"Ms. Jerel O'Kon","age":75,"location":"New Crystelville"}},{"attributes":{"name":"Gerardo Leffler","age":79,"location":"Wisozkhaven"}},{"attributes":{"name":"Dexter Waters","age":75,"location":"South Randal"}},{"attributes":{"name":"Enrico Feeney","age":71,"location":"Port Chanelle"}},{"attributes":{"name":"Adrian Nader-Moen II","age":37,"location":"Virginia Beach"}},{"attributes":{"name":"Mr. Willard Jones","age":35,"location":"New Bedford"}},{"attributes":{"name":"Laurie Lueilwitz","age":63,"location":"Port Bellefield"}},{"attributes":{"name":"Eliane McLaughlin","age":53,"location":"Port Frankie"}},{"attributes":{"name":"Harold Hessel","age":32,"location":"East Merle"}},{"attributes":{"name":"Ramona Rosenbaum","age":66,"location":"New Cynthia"}},{"attributes":{"name":"Corene Kohler-Roob","age":37,"location":"East Gordonfort"}},{"attributes":{"name":"Monserrate Metz","age":57,"location":"Kevinburgh"}},{"attributes":{"name":"Theo Bode","age":29,"location":"Valdosta"}},{"attributes":{"name":"Dr. Sylvester Hintz","age":75,"location":"Port Marcos"}},{"attributes":{"name":"Maude Breitenberg","age":58,"location":"Shyannefurt"}},{"attributes":{"name":"Traci Mayert","age":26,"location":"Orloview"}},{"attributes":{"name":"Clifford Konopelski","age":39,"location":"Hattiesburg"}},{"attributes":{"name":"Andres Kreiger","age":34,"location":"Gottliebshire"}},{"attributes":{"name":"Garry Goodwin","age":53,"location":"Weimannstead"}},{"attributes":{"name":"Enrico Bradtke DVM","age":72,"location":"North Orinberg"}},{"attributes":{"name":"Guadalupe Schiller-Cronin","age":72,"location":"New Patsystad"}},{"attributes":{"name":"Felicia Kertzmann","age":49,"location":"Johnsonmouth"}},{"attributes":{"name":"Dr. Gerson Runolfsdottir","age":49,"location":"New Jon"}},{"attributes":{"name":"Beth Smitham","age":65,"location":"Huntington Park"}},{"attributes":{"name":"Torrance Weber","age":67,"location":"New Keanustead"}},{"attributes":{"name":"Herbert Abshire","age":56,"location":"West Ressiecester"}},{"attributes":{"name":"Roberta Mohr-Hessel","age":65,"location":"West Ameliaton"}},{"attributes":{"name":"Kaylin Nader","age":75,"location":"Greenfelderborough"}},{"attributes":{"name":"Dr. Kris Denesik","age":23,"location":"Raucester"}},{"attributes":{"name":"Ronald Purdy III","age":61,"location":"Waelchiville"}},{"attributes":{"name":"Grover Volkman","age":55,"location":"South Hiltonstead"}},{"attributes":{"name":"Jasmin Towne","age":27,"location":"Hilllburgh"}},{"attributes":{"name":"Ima Murphy MD","age":56,"location":"San Ramon"}},{"attributes":{"name":"Paul Hahn","age":40,"location":"Port Christybury"}},{"attributes":{"name":"Rickey Wiegand II","age":78,"location":"Las Cruces"}},{"attributes":{"name":"Carlos Lynch","age":70,"location":"Ernserworth"}},{"attributes":{"name":"Mr. Rodney MacGyver","age":74,"location":"Rollinfort"}},{"attributes":{"name":"Bert Heaney","age":53,"location":"Giafield"}},{"attributes":{"name":"Torrance McLaughlin","age":49,"location":"Genesisberg"}},{"attributes":{"name":"Lance Willms","age":52,"location":"East Creola"}},{"attributes":{"name":"Evan Thiel","age":71,"location":"Franeyfurt"}},{"attributes":{"name":"Oscar Weissnat Jr.","age":57,"location":"Royalfort"}},{"attributes":{"name":"Regina Schuppe","age":46,"location":"Irving"}},{"attributes":{"name":"Derek O'Connell I","age":37,"location":"Glendale"}},{"attributes":{"name":"Glen Homenick","age":45,"location":"New Wava"}},{"attributes":{"name":"Meredith Mann","age":75,"location":"Port Pansy"}},{"attributes":{"name":"Mr. Peter Auer","age":31,"location":"Garnetburgh"}},{"attributes":{"name":"Abbey Price","age":54,"location":"Lake Felicityhaven"}},{"attributes":{"name":"Jake Hegmann","age":47,"location":"East Aleen"}},{"attributes":{"name":"Ricardo Fritsch","age":46,"location":"West Dedric"}},{"attributes":{"name":"Dr. Madeline Mohr MD","age":38,"location":"Lake Xander"}},{"attributes":{"name":"Faye Bailey","age":78,"location":"North Abelberg"}},{"attributes":{"name":"Amara Rempel","age":51,"location":"Garthfurt"}},{"attributes":{"name":"Dr. Georgette Johnson I","age":69,"location":"Gordontown"}},{"attributes":{"name":"Janae Kuhn","age":49,"location":"East Elvafort"}},{"attributes":{"name":"Emanuel Fay","age":28,"location":"Huntington"}},{"attributes":{"name":"Brennan Schumm Jr.","age":25,"location":"New Ladariusland"}},{"attributes":{"name":"Mr. Geovanni Mayer","age":39,"location":"Centennial"}},{"attributes":{"name":"Gene Labadie","age":32,"location":"Murazikstad"}},{"attributes":{"name":"Carlos Powlowski","age":34,"location":"Kevinview"}},{"attributes":{"name":"Blanca Davis DVM","age":73,"location":"Roscoeshire"}},{"attributes":{"name":"Luis Ratke","age":44,"location":"Newport News"}},{"attributes":{"name":"Mr. Johnnie Rohan","age":50,"location":"Destinfield"}},{"attributes":{"name":"Conrad Hoppe","age":79,"location":"East Mabelle"}},{"attributes":{"name":"Dr. Emanuel Dooley III","age":38,"location":"East Buster"}},{"attributes":{"name":"Jeanie Hickle","age":72,"location":"West Johnpaul"}},{"attributes":{"name":"Dr. Nina Feest","age":78,"location":"Lebsackcester"}},{"attributes":{"name":"Kelly Pacocha","age":80,"location":"Betteport"}},{"attributes":{"name":"Santiago Kunze","age":34,"location":"South German"}},{"attributes":{"name":"Norval Yundt","age":21,"location":"Ubaldofurt"}},{"attributes":{"name":"Jaren Osinski","age":49,"location":"Valentinaborough"}},{"attributes":{"name":"Erick Cronin","age":38,"location":"Lake Aditya"}},{"attributes":{"name":"Bernadette Berge","age":39,"location":"Georgiannahaven"}},{"attributes":{"name":"Yvonne Wisozk","age":38,"location":"Port Hellen"}},{"attributes":{"name":"Derrick Keeling","age":63,"location":"Brittanytown"}},{"attributes":{"name":"Chris Balistreri","age":61,"location":"East Enochborough"}},{"attributes":{"name":"Dr. Bradford Wilkinson","age":75,"location":"Hoegerworth"}},{"attributes":{"name":"Abel Kunze PhD","age":28,"location":"Kuphalville"}},{"attributes":{"name":"Willie Jacobson","age":52,"location":"North Kamillebury"}},{"attributes":{"name":"Jorge Nader","age":74,"location":"Angelitaton"}},{"attributes":{"name":"Ludwig Heaney","age":70,"location":"Fort Rosemarieville"}},{"attributes":{"name":"Clara Koelpin-Lakin","age":69,"location":"East Darryl"}},{"attributes":{"name":"Marques Kautzer","age":20,"location":"South Millerchester"}},{"attributes":{"name":"Jacey Dare","age":73,"location":"Geovanybury"}},{"attributes":{"name":"Mozelle Gusikowski","age":36,"location":"South Jolie"}},{"attributes":{"name":"Millie Wiegand","age":80,"location":"Pourosboro"}},{"attributes":{"name":"Princess Shields","age":21,"location":"Nampa"}},{"attributes":{"name":"Tony Gorczany","age":72,"location":"South Beaulahshire"}},{"attributes":{"name":"Rosemary Daniel","age":30,"location":"Roweboro"}},{"attributes":{"name":"Luisa Veum","age":79,"location":"West Ralphland"}},{"attributes":{"name":"Edmund Gottlieb","age":18,"location":"Wardstead"}},{"attributes":{"name":"Rochelle Murray","age":28,"location":"Erichside"}},{"attributes":{"name":"Rosemary Kohler","age":21,"location":"Fort Hillard"}},{"attributes":{"name":"Zula Miller","age":65,"location":"Lake Mittiestad"}},{"attributes":{"name":"Sienna Kuhic","age":29,"location":"Kossfurt"}},{"attributes":{"name":"Timothy Schmidt Jr.","age":33,"location":"Bozeman"}},{"attributes":{"name":"Alberta Watsica","age":69,"location":"New Percival"}},{"attributes":{"name":"Tiana Crist","age":38,"location":"Paulineton"}},{"attributes":{"name":"Cleo Ryan","age":73,"location":"Runolfssontown"}},{"attributes":{"name":"Vicki Grimes","age":20,"location":"Littleport"}},{"attributes":{"name":"Percy Gutkowski","age":33,"location":"North Hildegardtown"}},{"attributes":{"name":"Dr. Ted Thiel","age":44,"location":"Trujillo Alto"}},{"attributes":{"name":"Steve Altenwerth Sr.","age":35,"location":"Lake Bradlymouth"}},{"attributes":{"name":"Monica Daniel","age":28,"location":"Ahmedborough"}},{"attributes":{"name":"Ms. Connie Walker MD","age":76,"location":"Lake Brennatown"}},{"attributes":{"name":"Shari Will","age":57,"location":"Schinnerside"}},{"attributes":{"name":"Sonya Sauer-Bins","age":48,"location":"South Ola"}},{"attributes":{"name":"Zora Emard-Ebert","age":39,"location":"North Martystad"}},{"attributes":{"name":"Rosemary Blick","age":37,"location":"Metacester"}},{"attributes":{"name":"Abraham MacGyver","age":78,"location":"North Bernita"}},{"attributes":{"name":"Miss Jeannette Lakin","age":18,"location":"Fort Neoma"}},{"attributes":{"name":"Arden Feil","age":78,"location":"Newellworth"}},{"attributes":{"name":"Dr. Sherman Ritchie","age":67,"location":"Kaelynville"}},{"attributes":{"name":"Nicholas Runolfsson Jr.","age":56,"location":"Biankahaven"}},{"attributes":{"name":"Alanis Yost V","age":20,"location":"South Nicholas"}},{"attributes":{"name":"Rufus VonRueden","age":48,"location":"Fort Gustland"}},{"attributes":{"name":"Kathryn Crona","age":66,"location":"Huelsborough"}},{"attributes":{"name":"Oscar Mraz","age":52,"location":"Abbottside"}},{"attributes":{"name":"Opal Goldner","age":32,"location":"West Joesphbury"}},{"attributes":{"name":"Aryanna Hamill","age":63,"location":"Alicestead"}},{"attributes":{"name":"Wayne Gibson","age":61,"location":"Freeport"}},{"attributes":{"name":"Kristi Feest","age":49,"location":"Rockville"}},{"attributes":{"name":"Haley Fay Jr.","age":67,"location":"Port Burdette"}},{"attributes":{"name":"Shannon Bins","age":48,"location":"East Larissatown"}},{"attributes":{"name":"Jeremiah McCullough","age":42,"location":"North Gagecester"}},{"attributes":{"name":"Mr. Warren Schaden III","age":32,"location":"North Malcolmbury"}},{"attributes":{"name":"Leo Schmitt","age":34,"location":"Blandaworth"}},{"attributes":{"name":"Victoria O'Kon","age":75,"location":"Manchester"}},{"attributes":{"name":"Louvenia Monahan","age":35,"location":"Herminamouth"}},{"attributes":{"name":"Ernesto Runolfsson","age":76,"location":"North Jairo"}},{"attributes":{"name":"Miss Amelia Lemke","age":70,"location":"West Kyla"}},{"attributes":{"name":"Arely Walker","age":50,"location":"North Ken"}},{"attributes":{"name":"Katherine McClure","age":20,"location":"Mesquite"}},{"attributes":{"name":"Stacey Goyette","age":74,"location":"Garlandview"}},{"attributes":{"name":"Homer Gerhold","age":62,"location":"Zulaufworth"}},{"attributes":{"name":"Kent Bergstrom Jr.","age":61,"location":"New Claire"}},{"attributes":{"name":"Nels Kunze","age":31,"location":"Cliftonburgh"}},{"attributes":{"name":"Elisha Rau","age":29,"location":"East Chaddtown"}},{"attributes":{"name":"Sylvia VonRueden","age":77,"location":"Nicolasburgh"}},{"attributes":{"name":"Teri Will","age":23,"location":"Sunrise Manor"}},{"attributes":{"name":"Ernestine Spinka","age":75,"location":"Kathrynburgh"}},{"attributes":{"name":"Jerod D'Amore","age":52,"location":"Tommiestad"}},{"attributes":{"name":"Lindsay Schumm","age":49,"location":"Timmothyland"}},{"attributes":{"name":"Bill Franecki","age":56,"location":"Port Adolphus"}},{"attributes":{"name":"Joan Wehner","age":28,"location":"Port Jeramieville"}},{"attributes":{"name":"Tia Doyle-Kuphal","age":63,"location":"Fort Kristyland"}},{"attributes":{"name":"Name Kassulke","age":73,"location":"Lake Nikkishire"}},{"attributes":{"name":"Jerome Howell","age":72,"location":"Visalia"}},{"attributes":{"name":"Clinton Brekke","age":62,"location":"Dickishire"}},{"attributes":{"name":"Conrad Gleichner","age":72,"location":"Cambridge"}},{"attributes":{"name":"Donnie Strosin","age":44,"location":"Port Andreanne"}},{"attributes":{"name":"Tom Tillman","age":61,"location":"Todview"}},{"attributes":{"name":"Pierre Sauer DVM","age":28,"location":"West Zelma"}},{"attributes":{"name":"Clarence Lebsack-Russel","age":36,"location":"Langworthcester"}},{"attributes":{"name":"Alan Kohler-Cremin","age":77,"location":"Weissnatchester"}},{"attributes":{"name":"Ryder Wilkinson III","age":71,"location":"Baldwin Park"}},{"attributes":{"name":"Blaze Rohan","age":70,"location":"Fisherland"}},{"attributes":{"name":"Dr. Jackie Morissette","age":66,"location":"Donnabury"}},{"attributes":{"name":"Lowell Torp","age":35,"location":"Kubstad"}},{"attributes":{"name":"Uriah Borer III","age":42,"location":"Lake Albinfort"}},{"attributes":{"name":"Dr. Lela Jacobs","age":46,"location":"Ollieland"}},{"attributes":{"name":"Krista Schaefer","age":19,"location":"Altoona"}},{"attributes":{"name":"Aaron Kessler","age":71,"location":"East Modesta"}},{"attributes":{"name":"Buddy Corwin I","age":43,"location":"East Ephraimshire"}},{"attributes":{"name":"Mrs. Dana Torphy V","age":75,"location":"Gregoriafield"}},{"attributes":{"name":"Josie Tromp","age":31,"location":"Homenickville"}},{"attributes":{"name":"Dr. Andrew Ratke","age":50,"location":"New Petra"}},{"attributes":{"name":"Art Murphy","age":77,"location":"Satterfieldfurt"}},{"attributes":{"name":"Hermann Gislason","age":71,"location":"West Adrianaborough"}},{"attributes":{"name":"Darla Senger","age":37,"location":"South Kolestead"}},{"attributes":{"name":"Giovani Glover","age":76,"location":"Franeckistad"}},{"attributes":{"name":"Stacy Fay","age":73,"location":"Bechtelarport"}},{"attributes":{"name":"Otto Little","age":20,"location":"Marianastad"}},{"attributes":{"name":"Mr. Terrance Stehr","age":46,"location":"Ianville"}},{"attributes":{"name":"Wilson O'Hara-Hills","age":30,"location":"Yvonneboro"}},{"attributes":{"name":"Sarah Olson","age":53,"location":"Ryderstad"}},{"attributes":{"name":"Mr. Marcia Wintheiser","age":49,"location":"New Grady"}},{"attributes":{"name":"Ellis Daugherty-Rogahn","age":58,"location":"Albuquerque"}},{"attributes":{"name":"Jorge Marquardt","age":53,"location":"Raquelshire"}},{"attributes":{"name":"Bridie Treutel","age":65,"location":"North Orvalburgh"}},{"attributes":{"name":"Mitchell Satterfield","age":40,"location":"Jadonton"}},{"attributes":{"name":"Angus Bergstrom","age":36,"location":"Gloverberg"}},{"attributes":{"name":"Margarette Schulist","age":40,"location":"Alliebury"}},{"attributes":{"name":"Dr. Roxanne Wiegand","age":52,"location":"South Herminiofurt"}},{"attributes":{"name":"Franz Kreiger","age":63,"location":"Adelafort"}},{"attributes":{"name":"Cynthia Kohler","age":62,"location":"Olsonland"}},{"attributes":{"name":"Jody Osinski IV","age":50,"location":"Boscoland"}},{"attributes":{"name":"Junior Sawayn","age":46,"location":"Kihnboro"}},{"attributes":{"name":"Gerhard Bechtelar","age":50,"location":"Nyamouth"}},{"attributes":{"name":"Phyllis Rohan","age":64,"location":"New Deion"}},{"attributes":{"name":"Erwin Marvin","age":79,"location":"Port Fausto"}},{"attributes":{"name":"Bettye Hauck","age":53,"location":"Guiseppeland"}},{"attributes":{"name":"Vinnie Cormier","age":35,"location":"Daviontown"}},{"attributes":{"name":"Brooke Davis","age":66,"location":"Leonardview"}},{"attributes":{"name":"Edwin Cruickshank","age":23,"location":"Hattieberg"}},{"attributes":{"name":"Benny Paucek-Watsica","age":73,"location":"Lake Ridge"}},{"attributes":{"name":"Annette Schumm","age":49,"location":"Carolyneburgh"}},{"attributes":{"name":"Jazmyne Herzog","age":19,"location":"Lake Lilla"}},{"attributes":{"name":"Bert Rau","age":69,"location":"Fort Brando"}},{"attributes":{"name":"Dr. Dameon Goyette-Hauck","age":55,"location":"Prohaskaboro"}},{"attributes":{"name":"Rosalie Baumbach","age":20,"location":"East Amyaport"}},{"attributes":{"name":"Christine Kerluke DDS","age":34,"location":"Phyllisborough"}},{"attributes":{"name":"Gina Gusikowski-Lemke","age":50,"location":"Rozellachester"}},{"attributes":{"name":"Eva Lueilwitz","age":25,"location":"Fort Bria"}},{"attributes":{"name":"Norman Tillman","age":55,"location":"Larsonchester"}},{"attributes":{"name":"Maggie Klocko DVM","age":25,"location":"Glen Burnie"}},{"attributes":{"name":"Blanca Leannon","age":47,"location":"Upland"}},{"attributes":{"name":"Kennith Rutherford","age":44,"location":"Fort Laverne"}},{"attributes":{"name":"Adrian Marquardt MD","age":52,"location":"South Travonbury"}},{"attributes":{"name":"Alvah Jaskolski","age":32,"location":"Port Ardella"}},{"attributes":{"name":"Ms. Hattie Senger","age":28,"location":"Lempiland"}},{"attributes":{"name":"Mr. Nick Smith","age":66,"location":"Port Jamil"}},{"attributes":{"name":"Judy Marvin-Herzog","age":72,"location":"East Andrewcester"}},{"attributes":{"name":"Barbara Mraz","age":63,"location":"New Bruce"}},{"attributes":{"name":"Gwen Pfannerstill-Little","age":43,"location":"Lake Albertotown"}},{"attributes":{"name":"Dr. Lora Crooks","age":58,"location":"Floridaboro"}},{"attributes":{"name":"Vera Corwin","age":57,"location":"Fort Greysonburgh"}},{"attributes":{"name":"Dr. Dane Littel","age":40,"location":"Haverhill"}},{"attributes":{"name":"Lindsay Emard","age":63,"location":"New Travis"}},{"attributes":{"name":"Chaim Heathcote Jr.","age":65,"location":"Kirlinland"}},{"attributes":{"name":"Carter Upton DVM","age":26,"location":"New Muhammadside"}},{"attributes":{"name":"Tito Fritsch","age":79,"location":"Muellerfort"}},{"attributes":{"name":"Raymundo Schoen IV","age":44,"location":"Sadyeboro"}},{"attributes":{"name":"Marguerite Steuber Jr.","age":25,"location":"Farmington Hills"}},{"attributes":{"name":"Joe Okuneva Sr.","age":48,"location":"Fort Niaport"}},{"attributes":{"name":"Joann Von","age":78,"location":"Dedricshire"}},{"attributes":{"name":"Mariah Dietrich","age":71,"location":"West Marlinshire"}},{"attributes":{"name":"Lambert Goyette","age":31,"location":"Burleyshire"}},{"attributes":{"name":"Marc Rutherford Jr.","age":22,"location":"Cedar Rapids"}},{"attributes":{"name":"Nora Hane","age":62,"location":"Framiton"}},{"attributes":{"name":"Denise Wiza","age":55,"location":"Port Rozella"}},{"attributes":{"name":"Mrs. Dominic Orn","age":25,"location":"Vickiefield"}},{"attributes":{"name":"Oma Beer Jr.","age":66,"location":"Sylviaport"}},{"attributes":{"name":"Wyman Hettinger","age":75,"location":"North Jaidaton"}},{"attributes":{"name":"Hugo Bauch","age":54,"location":"Poway"}},{"attributes":{"name":"Manuel Fadel","age":34,"location":"Lake Maxwell"}},{"attributes":{"name":"Antonio McGlynn","age":45,"location":"Palm Coast"}},{"attributes":{"name":"Andrew Ratke I","age":79,"location":"East Sheldonton"}},{"attributes":{"name":"Dillan Reilly","age":63,"location":"Gottliebfurt"}},{"attributes":{"name":"Carlee Hane","age":60,"location":"North Lura"}},{"attributes":{"name":"Sara Predovic","age":46,"location":"North Valerie"}},{"attributes":{"name":"Miss Octavia Reilly","age":66,"location":"Fort Jayne"}},{"attributes":{"name":"Lena Walter","age":56,"location":"South Heloise"}},{"attributes":{"name":"Walter Kilback","age":50,"location":"Schummfort"}},{"attributes":{"name":"Ocie Watsica","age":23,"location":"Boyerville"}},{"attributes":{"name":"Willard Kuvalis","age":64,"location":"East Miracleside"}},{"attributes":{"name":"Adrain Bradtke","age":34,"location":"Cronacester"}},{"attributes":{"name":"Angelica Dicki","age":71,"location":"Farrellfort"}},{"attributes":{"name":"Aurore Klein V","age":62,"location":"Fort Gardnerchester"}},{"attributes":{"name":"Nathaniel Schoen","age":63,"location":"Fort Tess"}},{"attributes":{"name":"Wayne Altenwerth","age":27,"location":"Fort Phoebe"}},{"attributes":{"name":"Kenneth Schimmel","age":39,"location":"Considinemouth"}},{"attributes":{"name":"Janae Kautzer","age":33,"location":"Myrnaport"}},{"attributes":{"name":"Alexandra Barrows","age":54,"location":"West Tina"}},{"attributes":{"name":"Howard Bruen","age":33,"location":"Lake Jensenchester"}},{"attributes":{"name":"Marlon Cremin","age":56,"location":"New Leonhaven"}},{"attributes":{"name":"Nathaniel Keeling","age":75,"location":"Robynfurt"}},{"attributes":{"name":"Amelie Raynor","age":41,"location":"Shawnburgh"}},{"attributes":{"name":"Janis Wilderman","age":47,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Rudolph Morissette","age":37,"location":"Willshire"}},{"attributes":{"name":"Sandra Hyatt","age":72,"location":"Kshlerinport"}},{"attributes":{"name":"Amanda Watsica","age":65,"location":"Larueport"}},{"attributes":{"name":"Harmon Cruickshank-Fadel","age":49,"location":"Port Eliseo"}},{"attributes":{"name":"Edwin Lehner","age":55,"location":"Maybellebury"}},{"attributes":{"name":"Rosalee Kovacek","age":51,"location":"Port Lenore"}},{"attributes":{"name":"Waldo West","age":72,"location":"Howellfield"}},{"attributes":{"name":"Addie Hoeger","age":22,"location":"Kurtcester"}},{"attributes":{"name":"Emerald Quigley","age":69,"location":"Ziemannboro"}},{"attributes":{"name":"Yazmin Bins Sr.","age":18,"location":"Overland Park"}},{"attributes":{"name":"Dr. Garett Raynor","age":78,"location":"North Kelsi"}},{"attributes":{"name":"Nicholaus Crooks","age":41,"location":"North Brian"}},{"attributes":{"name":"Laurence Effertz","age":20,"location":"South Florencio"}},{"attributes":{"name":"Dr. Vallie Dicki","age":39,"location":"East Deborah"}},{"attributes":{"name":"Kariane Wuckert","age":52,"location":"Lake Waylon"}},{"attributes":{"name":"Ceasar Koss","age":35,"location":"West Reba"}},{"attributes":{"name":"George Kulas","age":74,"location":"South Edyth"}},{"attributes":{"name":"Rico Herman","age":19,"location":"South Jaiden"}},{"attributes":{"name":"Joshua Will","age":49,"location":"Generalhaven"}},{"attributes":{"name":"Rolando Daniel","age":30,"location":"Rogahnburgh"}},{"attributes":{"name":"Harvey Padberg","age":41,"location":"Lake Archboro"}},{"attributes":{"name":"Ms. Ressie Lind DDS","age":45,"location":"Burleyworth"}},{"attributes":{"name":"Mario West","age":39,"location":"West Mohammed"}},{"attributes":{"name":"Angel Gleichner PhD","age":25,"location":"Jacobishire"}},{"attributes":{"name":"Fay Koelpin V","age":31,"location":"Garland"}},{"attributes":{"name":"Pattie Feil","age":28,"location":"North Nils"}},{"attributes":{"name":"Orion Fahey III","age":39,"location":"Lake Otisfort"}},{"attributes":{"name":"Lorene Luettgen","age":75,"location":"Fort Francoburgh"}},{"attributes":{"name":"Dorothy Hickle","age":26,"location":"Brandttown"}},{"attributes":{"name":"Scott Swift","age":59,"location":"Constanceboro"}},{"attributes":{"name":"Whitney Wyman","age":73,"location":"Rialto"}},{"attributes":{"name":"Henrietta Waters","age":34,"location":"Quincy"}},{"attributes":{"name":"Guadalupe Rosenbaum","age":65,"location":"South Damian"}},{"attributes":{"name":"Marian Roberts","age":60,"location":"Destineefort"}},{"attributes":{"name":"Michael Cormier","age":50,"location":"Fort Omerfield"}},{"attributes":{"name":"Randolph Ledner","age":65,"location":"Huelside"}},{"attributes":{"name":"Tierra Hintz","age":37,"location":"Brettstead"}},{"attributes":{"name":"Kristin Fadel","age":22,"location":"Bernardfurt"}},{"attributes":{"name":"Mario Zulauf","age":76,"location":"Boganfurt"}},{"attributes":{"name":"Adele Kuhic","age":70,"location":"Apex"}},{"attributes":{"name":"Elmo Walsh","age":27,"location":"Bennycester"}},{"attributes":{"name":"Kamryn Sauer","age":28,"location":"Sacramento"}},{"attributes":{"name":"Judy Huel","age":47,"location":"Mafaldaworth"}},{"attributes":{"name":"Gladys Flatley","age":74,"location":"South Camden"}},{"attributes":{"name":"Calvin Koelpin","age":68,"location":"East Carleton"}},{"attributes":{"name":"Hyman Marquardt","age":69,"location":"Cronatown"}},{"attributes":{"name":"Maryann Skiles","age":32,"location":"Erichshire"}},{"attributes":{"name":"Joy Bartoletti","age":69,"location":"Vandervortborough"}},{"attributes":{"name":"Uriah Robel","age":72,"location":"Palm Bay"}},{"attributes":{"name":"Violet Pfeffer","age":55,"location":"Lake Gladys"}},{"attributes":{"name":"Dallas Fritsch-Hand","age":48,"location":"West Eleazar"}},{"attributes":{"name":"Elsa Veum","age":36,"location":"Kozeyton"}},{"attributes":{"name":"Arvel Jacobson II","age":77,"location":"Ashleycester"}},{"attributes":{"name":"Georgia Feeney","age":65,"location":"Port Frederikcester"}},{"attributes":{"name":"Carl Quitzon PhD","age":60,"location":"North Alphonsoshire"}},{"attributes":{"name":"Dr. Antonio Goldner Jr.","age":54,"location":"North Tate"}},{"attributes":{"name":"Carolyn Keebler","age":52,"location":"North Vickie"}},{"attributes":{"name":"Murl McLaughlin","age":51,"location":"New Alexander"}},{"attributes":{"name":"Latoya Hettinger","age":68,"location":"New Jackelinebury"}},{"attributes":{"name":"Carissa Rath","age":21,"location":"Quigleyfield"}},{"attributes":{"name":"Lindsey Padberg Jr.","age":52,"location":"Grand Junction"}},{"attributes":{"name":"Ari Dicki","age":43,"location":"North Oswald"}},{"attributes":{"name":"Domingo Thiel","age":60,"location":"Tacoma"}},{"attributes":{"name":"Pearl Nolan","age":21,"location":"Sierrahaven"}},{"attributes":{"name":"Emelia Terry","age":69,"location":"New Janniemouth"}},{"attributes":{"name":"Brent Skiles","age":80,"location":"Cloydland"}},{"attributes":{"name":"Shany Lubowitz","age":77,"location":"Santa Maria"}},{"attributes":{"name":"Maud Berge","age":76,"location":"Swiftview"}},{"attributes":{"name":"Rickey Murphy","age":72,"location":"Kshlerinton"}},{"attributes":{"name":"Octavia Schmeler","age":46,"location":"South Kayley"}},{"attributes":{"name":"Rosina Smith","age":73,"location":"East Fritzfurt"}},{"attributes":{"name":"Johnathan Morissette","age":30,"location":"Fort Keshaunmouth"}},{"attributes":{"name":"Bryant Hickle II","age":33,"location":"Apex"}},{"attributes":{"name":"Hubert Conn","age":71,"location":"St. Clair Shores"}},{"attributes":{"name":"Willard Cremin IV","age":62,"location":"Bahringerfort"}},{"attributes":{"name":"Pablo Armstrong-Howe","age":45,"location":"Trenton"}},{"attributes":{"name":"Kaylee Gleichner","age":58,"location":"North Shyann"}},{"attributes":{"name":"Adolphus Grady","age":58,"location":"Hilbertbury"}},{"attributes":{"name":"Miss Sherri Grady","age":67,"location":"Lake Hunterfurt"}},{"attributes":{"name":"Paolo Homenick-Collier","age":25,"location":"Greenfeldershire"}},{"attributes":{"name":"Tiffany Heidenreich","age":36,"location":"Eltabury"}},{"attributes":{"name":"Cade Kohler DVM","age":49,"location":"West Lucinda"}},{"attributes":{"name":"Lemuel Bayer","age":52,"location":"North Kendrick"}},{"attributes":{"name":"Emmett Mueller","age":32,"location":"Calistaboro"}},{"attributes":{"name":"Eulah Luettgen","age":41,"location":"Port Nicholasshire"}},{"attributes":{"name":"Marc Denesik","age":18,"location":"West Magnustown"}},{"attributes":{"name":"Ms. Dana Hettinger","age":65,"location":"Plantation"}},{"attributes":{"name":"Jace Miller-Raynor III","age":78,"location":"Larkinberg"}},{"attributes":{"name":"Bernita VonRueden","age":79,"location":"Estefaniastead"}},{"attributes":{"name":"Dr. Yoshiko Kreiger","age":62,"location":"Batztown"}},{"attributes":{"name":"Gilbert Bode","age":41,"location":"Langworthmouth"}},{"attributes":{"name":"Rene Wuckert","age":44,"location":"South Colleen"}},{"attributes":{"name":"Rita Tremblay","age":67,"location":"Fort Frankieburgh"}},{"attributes":{"name":"Wesley Considine","age":64,"location":"Reichertborough"}},{"attributes":{"name":"Bobby Dibbert","age":66,"location":"Moenhaven"}},{"attributes":{"name":"Antonio Stiedemann","age":39,"location":"Portage"}},{"attributes":{"name":"Alta Emard","age":55,"location":"Garrettboro"}},{"attributes":{"name":"Dustin Jerde-Champlin MD","age":39,"location":"New Moses"}},{"attributes":{"name":"Alena Nitzsche","age":50,"location":"Amarillo"}},{"attributes":{"name":"Colin Prohaska","age":31,"location":"Rowlandhaven"}},{"attributes":{"name":"Walter O'Connell","age":23,"location":"South Albertastad"}},{"attributes":{"name":"Lauren Hayes","age":21,"location":"Port Vivienne"}},{"attributes":{"name":"Koby Mitchell","age":27,"location":"Rubieshire"}},{"attributes":{"name":"Shelley Green I","age":61,"location":"North Ericafurt"}},{"attributes":{"name":"Blanche Becker PhD","age":76,"location":"East Russ"}},{"attributes":{"name":"Courtney Zemlak","age":40,"location":"Nicolasport"}},{"attributes":{"name":"Brent Leannon-Heaney DVM","age":63,"location":"Fritschberg"}},{"attributes":{"name":"Yolanda Corwin","age":66,"location":"Reston"}},{"attributes":{"name":"Dashawn Zboncak V","age":37,"location":"Fort Collins"}},{"attributes":{"name":"Ms. Albert Lang","age":80,"location":"Williamsonstad"}},{"attributes":{"name":"Betsy Muller","age":77,"location":"Lake Blazeberg"}},{"attributes":{"name":"Mr. Clark Ritchie","age":19,"location":"Williamsonmouth"}},{"attributes":{"name":"Gustave Hansen","age":62,"location":"Ryleighshire"}},{"attributes":{"name":"Brandi Kunze IV","age":72,"location":"Felipacester"}},{"attributes":{"name":"Aisha O'Connell","age":34,"location":"Rogahntown"}},{"attributes":{"name":"Deanna Keebler","age":50,"location":"Wizashire"}},{"attributes":{"name":"Carrie Bosco-Pollich","age":23,"location":"Port Haylieville"}},{"attributes":{"name":"Kristy Dooley","age":70,"location":"Funkfield"}},{"attributes":{"name":"Virgil Dicki","age":21,"location":"Fort Harrisonworth"}},{"attributes":{"name":"Ernesto Klocko","age":46,"location":"Caliburgh"}},{"attributes":{"name":"Dean Blanda","age":66,"location":"Monahanworth"}},{"attributes":{"name":"Enrique Schulist","age":49,"location":"Kautzerland"}},{"attributes":{"name":"Mercedes Ankunding","age":64,"location":"South Dustinfurt"}},{"attributes":{"name":"Edmund Marvin-Dach","age":67,"location":"South Vallieside"}},{"attributes":{"name":"Claudie Larson","age":72,"location":"Gleichnerberg"}},{"attributes":{"name":"Lucinda Johnston","age":47,"location":"Fort Maxwellstad"}},{"attributes":{"name":"Dr. Giovanny Toy","age":62,"location":"South Lowell"}},{"attributes":{"name":"Erin Veum","age":54,"location":"Lake Karson"}},{"attributes":{"name":"Antonio Kuhic V","age":48,"location":"New Lamonttown"}},{"attributes":{"name":"David Keeling","age":72,"location":"Mount Prospect"}},{"attributes":{"name":"Steven Schmitt","age":20,"location":"Spring Valley"}},{"attributes":{"name":"Roosevelt Heaney","age":60,"location":"Port Nils"}},{"attributes":{"name":"John Cummerata","age":29,"location":"Lake Eladiomouth"}},{"attributes":{"name":"Alex Heidenreich","age":44,"location":"Marinafort"}},{"attributes":{"name":"Tristin Kemmer-Mills","age":75,"location":"Bloomington"}},{"attributes":{"name":"Rick Farrell","age":37,"location":"Oxnard"}},{"attributes":{"name":"Gladyce Mante","age":64,"location":"East Leonorworth"}},{"attributes":{"name":"Leland Gislason I","age":43,"location":"Erdmanboro"}},{"attributes":{"name":"Nova Heidenreich","age":20,"location":"Konopelskihaven"}},{"attributes":{"name":"Julian Rohan","age":46,"location":"West Kayli"}},{"attributes":{"name":"Carlo Kulas","age":52,"location":"Palo Alto"}},{"attributes":{"name":"Gina Greenfelder","age":67,"location":"East Bufordtown"}},{"attributes":{"name":"Zora Koepp Sr.","age":36,"location":"Fort Brantshire"}},{"attributes":{"name":"Sherwood Graham","age":68,"location":"Thompsonmouth"}},{"attributes":{"name":"Candace Von","age":66,"location":"Reichertside"}},{"attributes":{"name":"Mattie Sanford","age":80,"location":"Genevievefurt"}},{"attributes":{"name":"Marquise Purdy","age":24,"location":"East Bettie"}},{"attributes":{"name":"Camden Tromp Jr.","age":30,"location":"South Lew"}},{"attributes":{"name":"Winifred Dicki-Barrows","age":40,"location":"Keonfield"}},{"attributes":{"name":"Shannon Beatty","age":72,"location":"Anissaburgh"}},{"attributes":{"name":"Shannon Schaefer","age":39,"location":"Tigard"}},{"attributes":{"name":"Casimir Metz","age":75,"location":"Killeen"}},{"attributes":{"name":"Miss Morris Cruickshank","age":35,"location":"Pembroke Pines"}},{"attributes":{"name":"Sylvester Hane DDS","age":42,"location":"East Hermina"}},{"attributes":{"name":"Darrel Trantow","age":66,"location":"Pleasanton"}},{"attributes":{"name":"Shannon Schiller","age":60,"location":"Brentwood"}},{"attributes":{"name":"Brittany Becker","age":77,"location":"Carmichael"}},{"attributes":{"name":"Graciela Sporer","age":56,"location":"Samanthatown"}},{"attributes":{"name":"Elmer Kovacek","age":79,"location":"South Adelleshire"}},{"attributes":{"name":"Fred Kub","age":57,"location":"West Sandy"}},{"attributes":{"name":"Dr. Amy Kovacek","age":43,"location":"Terryside"}},{"attributes":{"name":"Virgil Schultz","age":74,"location":"Desireefurt"}},{"attributes":{"name":"Andrea Hodkiewicz","age":77,"location":"Weimannfield"}},{"attributes":{"name":"Wilber Weimann","age":38,"location":"Kamrenboro"}},{"attributes":{"name":"Howard Sanford","age":24,"location":"Lake Grayson"}},{"attributes":{"name":"Isabell Wisoky","age":30,"location":"Aglaemouth"}},{"attributes":{"name":"Gladys Schumm","age":41,"location":"Walshstead"}},{"attributes":{"name":"Emie Schuppe III","age":33,"location":"Steuberton"}},{"attributes":{"name":"Clarissa Lueilwitz","age":27,"location":"West Abelstead"}},{"attributes":{"name":"Faye Shanahan","age":27,"location":"Lauriannechester"}},{"attributes":{"name":"Carroll Wilderman","age":47,"location":"West Derrickfurt"}},{"attributes":{"name":"Francis Langworth Jr.","age":52,"location":"East Jayson"}},{"attributes":{"name":"Wilson Maggio","age":56,"location":"Runteland"}},{"attributes":{"name":"Constance Heaney","age":43,"location":"Lakewood"}},{"attributes":{"name":"Wallace Effertz","age":34,"location":"Fond du Lac"}},{"attributes":{"name":"Ms. Arvid Sawayn","age":58,"location":"Vacaville"}},{"attributes":{"name":"Gilbert Kuhic DDS","age":35,"location":"Port Kyleighport"}},{"attributes":{"name":"Kira Gottlieb","age":78,"location":"Feeneyshire"}},{"attributes":{"name":"Lorena Armstrong","age":43,"location":"East Sydni"}},{"attributes":{"name":"Okey Kirlin","age":62,"location":"New Earlenefield"}},{"attributes":{"name":"Neal Rowe","age":73,"location":"McLaughlinfield"}},{"attributes":{"name":"Dulce Carter","age":66,"location":"Dickenston"}},{"attributes":{"name":"Wyatt D'Amore","age":63,"location":"Izabellafurt"}},{"attributes":{"name":"Wilhelm Hyatt","age":38,"location":"Highlands Ranch"}},{"attributes":{"name":"Bruce Hegmann","age":72,"location":"Dickiport"}},{"attributes":{"name":"Stephanie Wolf","age":64,"location":"Fort Noemie"}},{"attributes":{"name":"Kyra Walsh","age":72,"location":"Koelpincester"}},{"attributes":{"name":"Dr. Marlen Koelpin","age":30,"location":"Port Arjunbury"}},{"attributes":{"name":"Luke Gerhold","age":40,"location":"Fort Ava"}},{"attributes":{"name":"Rodrick Kutch","age":74,"location":"Judahshire"}},{"attributes":{"name":"Katheryn Buckridge-Schroeder","age":49,"location":"Weymouth Town"}},{"attributes":{"name":"Erick Robel","age":58,"location":"Siennaport"}},{"attributes":{"name":"Theresa Abshire","age":25,"location":"Alecshire"}},{"attributes":{"name":"Garret Gottlieb","age":36,"location":"East Mollietown"}},{"attributes":{"name":"Monica Barton-Willms","age":55,"location":"Altoona"}},{"attributes":{"name":"Ms. Francis Leffler","age":35,"location":"La Habra"}},{"attributes":{"name":"Iris Crooks","age":20,"location":"North Belleton"}},{"attributes":{"name":"Daryl Ward","age":43,"location":"Darianafurt"}},{"attributes":{"name":"Katlyn Gusikowski PhD","age":22,"location":"Coeur d'Alene"}},{"attributes":{"name":"Anabelle Trantow","age":70,"location":"Cindystad"}},{"attributes":{"name":"Arthur Keebler","age":51,"location":"Lindboro"}},{"attributes":{"name":"Carlton Bailey","age":40,"location":"Camylleview"}},{"attributes":{"name":"Furman Orn","age":53,"location":"Port Elenorview"}},{"attributes":{"name":"Bo Schmitt","age":80,"location":"Rubenshire"}},{"attributes":{"name":"Thelma Legros-Berge","age":31,"location":"Jannieboro"}},{"attributes":{"name":"Ella Wyman II","age":79,"location":"Fort Laronstad"}},{"attributes":{"name":"Greg Franecki","age":24,"location":"Jaylonport"}},{"attributes":{"name":"Edna Reichert","age":62,"location":"Willmstown"}},{"attributes":{"name":"Judith Nader","age":72,"location":"Wittingview"}},{"attributes":{"name":"Jerald Fritsch","age":29,"location":"Gerdacester"}},{"attributes":{"name":"Troy Bartoletti","age":70,"location":"Marianashire"}},{"attributes":{"name":"Wilma Schinner","age":59,"location":"Watsonville"}},{"attributes":{"name":"Tamara Johnston","age":66,"location":"Port Halmouth"}},{"attributes":{"name":"Randal O'Connell","age":31,"location":"Westland"}},{"attributes":{"name":"Alfreda Blick","age":34,"location":"New Donnyside"}},{"attributes":{"name":"Kurt Abshire","age":61,"location":"South Chelseaworth"}},{"attributes":{"name":"Luke Bernhard","age":58,"location":"Othafield"}},{"attributes":{"name":"Raul Langworth","age":22,"location":"Gulgowskihaven"}},{"attributes":{"name":"Mr. Waino Wisoky","age":43,"location":"New Fredrickstead"}},{"attributes":{"name":"Mitchel Stoltenberg","age":60,"location":"Layneshire"}},{"attributes":{"name":"Clarabelle Gutmann II","age":74,"location":"East Alisonburgh"}},{"attributes":{"name":"Margarita Hilll","age":46,"location":"South Dimitri"}},{"attributes":{"name":"Essie Smitham","age":62,"location":"East Madge"}},{"attributes":{"name":"Dina Rodriguez","age":68,"location":"Lake Demondfort"}},{"attributes":{"name":"Harmon Bernhard","age":68,"location":"Gilroy"}},{"attributes":{"name":"Hazel Lind","age":72,"location":"Tyshawncester"}},{"attributes":{"name":"Hilda Corwin","age":46,"location":"Romagueraport"}},{"attributes":{"name":"Lisette Prosacco","age":52,"location":"San Tan Valley"}},{"attributes":{"name":"Dr. Maximo Wilkinson","age":44,"location":"Stuartberg"}},{"attributes":{"name":"Ms. Joy Klocko","age":18,"location":"Alimouth"}},{"attributes":{"name":"Miguel McDermott","age":38,"location":"Cooperhaven"}},{"attributes":{"name":"Devon Fay","age":72,"location":"East Hartford"}},{"attributes":{"name":"Emie Larkin","age":19,"location":"Krisburgh"}},{"attributes":{"name":"Dr. Hugh Bashirian MD","age":39,"location":"Plainfield"}},{"attributes":{"name":"Shayna Cummerata","age":77,"location":"Baytown"}},{"attributes":{"name":"Leonard Homenick","age":47,"location":"Mckenziemouth"}},{"attributes":{"name":"Dwight VonRueden","age":55,"location":"West Bellstead"}},{"attributes":{"name":"Howard Bednar","age":28,"location":"Lake Ezra"}},{"attributes":{"name":"Rolando Nicolas-Johnston","age":73,"location":"Greenville"}},{"attributes":{"name":"Nia Beahan","age":18,"location":"Gastonia"}},{"attributes":{"name":"Newell Daugherty V","age":77,"location":"West Vance"}},{"attributes":{"name":"Carrie Donnelly","age":74,"location":"Port Ciaraborough"}},{"attributes":{"name":"Marty Kuhic","age":66,"location":"Chesterton"}},{"attributes":{"name":"Janick Donnelly","age":37,"location":"Sauerton"}},{"attributes":{"name":"Miss Alberta Yundt","age":65,"location":"Harrisonmouth"}},{"attributes":{"name":"Robbie Kemmer","age":36,"location":"Olebury"}},{"attributes":{"name":"Dr. Adrian Greenholt DDS","age":54,"location":"Reneeboro"}},{"attributes":{"name":"Ada Nikolaus-Considine Jr.","age":31,"location":"Avondale"}},{"attributes":{"name":"Amos Wunsch V","age":71,"location":"Tomworth"}},{"attributes":{"name":"Wilma Vandervort","age":75,"location":"Casa Grande"}},{"attributes":{"name":"Blake Kemmer","age":76,"location":"Jacebury"}},{"attributes":{"name":"Laisha Bradtke","age":49,"location":"Appleton"}},{"attributes":{"name":"Mrs. Selina Lehner","age":24,"location":"Monaboro"}},{"attributes":{"name":"Parker Volkman Sr.","age":44,"location":"New Creola"}},{"attributes":{"name":"Patricia Kutch","age":76,"location":"West Eudorafurt"}},{"attributes":{"name":"Margarete Altenwerth","age":56,"location":"Passaic"}},{"attributes":{"name":"Cassidy Conroy","age":49,"location":"South Camilla"}},{"attributes":{"name":"Alex Rogahn-Reinger","age":23,"location":"North Monroeland"}},{"attributes":{"name":"Mary Labadie","age":38,"location":"Port Hallieview"}},{"attributes":{"name":"Glenn Deckow","age":74,"location":"Fort Erica"}},{"attributes":{"name":"Gregory Gulgowski","age":79,"location":"Auerville"}},{"attributes":{"name":"Russel Toy-Funk","age":67,"location":"South Brandyn"}},{"attributes":{"name":"Ari Reilly","age":71,"location":"East Grantside"}},{"attributes":{"name":"Randall Effertz","age":38,"location":"Bruenchester"}},{"attributes":{"name":"Kareem Huels","age":30,"location":"Bethstad"}},{"attributes":{"name":"Ezra Simonis","age":65,"location":"Waterscester"}},{"attributes":{"name":"Kristy Renner-Lind","age":61,"location":"New Helen"}},{"attributes":{"name":"Katlynn Boyer","age":79,"location":"The Hammocks"}},{"attributes":{"name":"Hattie Feil MD","age":40,"location":"North Camronport"}},{"attributes":{"name":"Oren Yost","age":27,"location":"Largo"}},{"attributes":{"name":"Shannon Schumm","age":50,"location":"Johnsonworth"}},{"attributes":{"name":"Duncan Sawayn PhD","age":66,"location":"Medhurstport"}},{"attributes":{"name":"Irene Beier Sr.","age":24,"location":"Strackeland"}},{"attributes":{"name":"Zakary Homenick","age":18,"location":"Nienowchester"}},{"attributes":{"name":"Dane Bergnaum IV","age":60,"location":"Sonnystad"}},{"attributes":{"name":"Maurice Nitzsche","age":66,"location":"Franklin"}},{"attributes":{"name":"Daphnee Schulist","age":27,"location":"Layton"}},{"attributes":{"name":"Christian Lind","age":45,"location":"New Roel"}},{"attributes":{"name":"Cheryl Parisian","age":56,"location":"New York"}},{"attributes":{"name":"Debra Ortiz","age":68,"location":"East Stanford"}},{"attributes":{"name":"Dixie Satterfield","age":39,"location":"Port Jack"}},{"attributes":{"name":"Afton Mueller","age":42,"location":"North Jaquelinechester"}},{"attributes":{"name":"Bertha Nitzsche","age":63,"location":"Warner Robins"}},{"attributes":{"name":"Bobbie Homenick","age":61,"location":"Goyettestad"}},{"attributes":{"name":"Lena Gleichner I","age":61,"location":"Sistercester"}},{"attributes":{"name":"Dr. Gustave Quigley","age":47,"location":"Salvatoreville"}},{"attributes":{"name":"Christine Bednar","age":53,"location":"Napa"}},{"attributes":{"name":"Pamela Ryan","age":26,"location":"North Ernesto"}},{"attributes":{"name":"Amber Dibbert","age":65,"location":"Hanechester"}},{"attributes":{"name":"Mr. Cody Kuvalis","age":44,"location":"Taureanworth"}},{"attributes":{"name":"Lance Dietrich","age":48,"location":"Kettering"}},{"attributes":{"name":"Michele Klein PhD","age":40,"location":"Fort Gracebury"}},{"attributes":{"name":"Monica Hamill","age":48,"location":"Aliberg"}},{"attributes":{"name":"Angelica Pouros","age":59,"location":"Cummerataburgh"}},{"attributes":{"name":"Rosalie Lockman","age":31,"location":"Onaberg"}},{"attributes":{"name":"Kenny Rempel","age":44,"location":"East Jakaylafort"}},{"attributes":{"name":"Zula Toy","age":31,"location":"North Daphneyburgh"}},{"attributes":{"name":"Lynette Kertzmann","age":21,"location":"Rayview"}},{"attributes":{"name":"Ms. Alda Thompson","age":32,"location":"South Brycenshire"}},{"attributes":{"name":"Edna Dickens","age":69,"location":"Dontown"}},{"attributes":{"name":"Bonnie West","age":65,"location":"Santa Ana"}},{"attributes":{"name":"Mrs. Lorenzo Jast","age":28,"location":"East Tyshawn"}},{"attributes":{"name":"Brandon Mueller","age":50,"location":"New Corinehaven"}},{"attributes":{"name":"Mr. Broderick Considine","age":69,"location":"South Eliseocester"}},{"attributes":{"name":"Joann MacGyver I","age":59,"location":"Minneapolis"}},{"attributes":{"name":"Jany Crooks","age":76,"location":"Parker"}},{"attributes":{"name":"Essie Hauck MD","age":18,"location":"Ernserland"}},{"attributes":{"name":"Ms. Marianne Barrows","age":25,"location":"Port Elaina"}},{"attributes":{"name":"Luis Hoeger","age":55,"location":"Port Pierremouth"}},{"attributes":{"name":"Larry Lowe","age":41,"location":"Reingerchester"}},{"attributes":{"name":"Edd McKenzie","age":80,"location":"Ninamouth"}},{"attributes":{"name":"Zackary Mueller","age":43,"location":"Carmelside"}},{"attributes":{"name":"Molly Wilkinson","age":30,"location":"D'Amorestead"}},{"attributes":{"name":"Destin Glover-Konopelski","age":19,"location":"Cranston"}},{"attributes":{"name":"Margie Bartell-Reinger","age":70,"location":"Dachport"}},{"attributes":{"name":"Devan Borer","age":60,"location":"Fort Pattieville"}},{"attributes":{"name":"Kerry Keeling-Schiller","age":35,"location":"Stoltenbergfurt"}},{"attributes":{"name":"Benjamin Bins","age":74,"location":"Robertotown"}},{"attributes":{"name":"Dr. Tanya Hauck","age":73,"location":"South Melisaburgh"}},{"attributes":{"name":"Kolby Johns MD","age":52,"location":"Wolfstead"}},{"attributes":{"name":"Tara Paucek II","age":74,"location":"Benfort"}},{"attributes":{"name":"Lynda Schuster","age":65,"location":"New Levifort"}},{"attributes":{"name":"Ralph Ledner MD","age":75,"location":"Hellenview"}},{"attributes":{"name":"Ms. Chyna Cremin PhD","age":51,"location":"North Elisabethton"}},{"attributes":{"name":"Emmett Kunze Sr.","age":49,"location":"Lake Martinabury"}},{"attributes":{"name":"Miss Juanita Marks III","age":34,"location":"Port Myahburgh"}},{"attributes":{"name":"Miss Patti Bashirian","age":65,"location":"Mission"}},{"attributes":{"name":"Abraham Sawayn-Zulauf","age":35,"location":"Robynbury"}},{"attributes":{"name":"Don Becker-Feil","age":41,"location":"Salt Lake City"}},{"attributes":{"name":"Mr. Lucy Kuhn","age":21,"location":"New Rodborough"}},{"attributes":{"name":"Carlos Heller","age":64,"location":"Rock Hill"}},{"attributes":{"name":"Norman Erdman","age":27,"location":"Burnsville"}},{"attributes":{"name":"Avery Hermann","age":61,"location":"New Nehafield"}},{"attributes":{"name":"Jadyn Abernathy-Beahan","age":40,"location":"North Darianport"}},{"attributes":{"name":"Janice Hahn","age":80,"location":"Sydniland"}},{"attributes":{"name":"Ellis Rice","age":54,"location":"South Jaylon"}},{"attributes":{"name":"Courtney Jast","age":20,"location":"Bechtelarshire"}},{"attributes":{"name":"Coty Hayes","age":65,"location":"Fort Filomenaboro"}},{"attributes":{"name":"Dasia Ward DDS","age":22,"location":"South Garret"}},{"attributes":{"name":"Trevor Jones","age":73,"location":"Dickenstown"}},{"attributes":{"name":"Phyllis Christiansen","age":44,"location":"Port Marquesville"}},{"attributes":{"name":"Jon O'Hara","age":47,"location":"Toneyfield"}},{"attributes":{"name":"Terry Cummerata","age":52,"location":"New Brunswick"}},{"attributes":{"name":"Danyka Purdy","age":50,"location":"Gudrunside"}},{"attributes":{"name":"Lana Kohler","age":50,"location":"Geovanyview"}},{"attributes":{"name":"Deanna O'Keefe","age":40,"location":"Port Waino"}},{"attributes":{"name":"Dr. Jessie Dach","age":52,"location":"Bahringerfurt"}},{"attributes":{"name":"Mitchell Kub","age":25,"location":"Brownsville"}},{"attributes":{"name":"Kristin Schneider","age":79,"location":"Fritzbury"}},{"attributes":{"name":"Magali Schmeler","age":42,"location":"North Manleyfurt"}},{"attributes":{"name":"Felix Grady","age":22,"location":"North Isaccester"}},{"attributes":{"name":"Junior Labadie","age":25,"location":"Isabellbury"}},{"attributes":{"name":"Jaime Kling","age":43,"location":"East Kathleen"}},{"attributes":{"name":"Ken Flatley","age":21,"location":"Gissellestead"}},{"attributes":{"name":"Deon Tillman","age":51,"location":"Maximilianside"}},{"attributes":{"name":"Homer Stark","age":27,"location":"Rochester Hills"}},{"attributes":{"name":"Mr. Sophia Mills","age":72,"location":"Port Donnieboro"}},{"attributes":{"name":"Elisa Kling","age":55,"location":"Franzland"}},{"attributes":{"name":"Mr. Israel Welch","age":61,"location":"Gulgowskiland"}},{"attributes":{"name":"Jerry Green","age":74,"location":"North Antoniastead"}},{"attributes":{"name":"Carey Mann MD","age":69,"location":"Breanacester"}},{"attributes":{"name":"Molly Franey","age":67,"location":"Columbus"}},{"attributes":{"name":"Myrtle Langworth","age":28,"location":"Emardport"}},{"attributes":{"name":"Howard McCullough","age":65,"location":"Port Marietta"}},{"attributes":{"name":"Kevin Becker","age":31,"location":"Pine Hills"}},{"attributes":{"name":"Maxwell Johnson","age":60,"location":"East Jessieshire"}},{"attributes":{"name":"Marcos Bartell","age":60,"location":"Port Maudton"}},{"attributes":{"name":"Dr. Patrick Lynch","age":63,"location":"Cristboro"}},{"attributes":{"name":"Janie Weissnat","age":51,"location":"West Dario"}},{"attributes":{"name":"Matteo Sawayn","age":63,"location":"Zackcester"}},{"attributes":{"name":"Darryl Stehr","age":31,"location":"North Jordynborough"}},{"attributes":{"name":"Lowell Price","age":43,"location":"Port Charlotte"}},{"attributes":{"name":"Ricky Rosenbaum PhD","age":63,"location":"New Jeramie"}},{"attributes":{"name":"Cedric Fritsch","age":75,"location":"East Omari"}},{"attributes":{"name":"Dillon Nitzsche","age":18,"location":"East Rick"}},{"attributes":{"name":"Dr. Tyree Littel","age":20,"location":"East Delphine"}},{"attributes":{"name":"Therese Rau","age":18,"location":"Floridaborough"}},{"attributes":{"name":"Roger Wuckert","age":30,"location":"Port Loustead"}},{"attributes":{"name":"Monique Veum Jr.","age":35,"location":"Port Eleonoreboro"}},{"attributes":{"name":"Ayana Murray","age":39,"location":"West Julesstead"}},{"attributes":{"name":"Edna Parker-Homenick","age":40,"location":"North Samarashire"}},{"attributes":{"name":"Leonel Denesik","age":34,"location":"Ottilieburgh"}},{"attributes":{"name":"Kathryn Rice","age":67,"location":"Ullrichburgh"}},{"attributes":{"name":"Kody Abshire IV","age":69,"location":"Mayraburgh"}},{"attributes":{"name":"Heloise Jerde","age":68,"location":"Valdosta"}},{"attributes":{"name":"Mrs. Mable Armstrong","age":67,"location":"Lake Bart"}},{"attributes":{"name":"Doreen Gusikowski","age":43,"location":"Gleichnerboro"}},{"attributes":{"name":"Adrianna Satterfield","age":55,"location":"Kilbackstead"}},{"attributes":{"name":"Rodrigo Bins","age":72,"location":"South Nedra"}},{"attributes":{"name":"Miss Cathy Bosco","age":22,"location":"Bashiriancester"}},{"attributes":{"name":"Scott Huels","age":44,"location":"Port Joesph"}},{"attributes":{"name":"Terry Connelly III","age":68,"location":"Kuphalport"}},{"attributes":{"name":"Garnett DuBuque","age":71,"location":"Lindgrenport"}},{"attributes":{"name":"Viola Stanton-Schultz","age":19,"location":"Concord"}},{"attributes":{"name":"Gustavo Hansen","age":52,"location":"Loraineberg"}},{"attributes":{"name":"Angelina Leffler","age":39,"location":"South Louisa"}},{"attributes":{"name":"Mr. Marta Schumm","age":21,"location":"New Moses"}},{"attributes":{"name":"Mrs. Ana Fay","age":18,"location":"Faheyport"}},{"attributes":{"name":"Enrique Miller","age":69,"location":"Harryville"}},{"attributes":{"name":"Destany Hyatt","age":72,"location":"Mayertfield"}},{"attributes":{"name":"Roman Fisher III","age":62,"location":"West Noelberg"}},{"attributes":{"name":"Arturo Swift","age":72,"location":"Jettiefort"}},{"attributes":{"name":"Irvin Gislason","age":58,"location":"Opalhaven"}},{"attributes":{"name":"Gail Spinka","age":38,"location":"Potomac"}},{"attributes":{"name":"Tyshawn Marks","age":56,"location":"Rialto"}},{"attributes":{"name":"Ericka Krajcik","age":18,"location":"Marleecester"}},{"attributes":{"name":"Rita Yost","age":64,"location":"Elgin"}},{"attributes":{"name":"Felipe Tromp","age":49,"location":"Cheektowaga"}},{"attributes":{"name":"Marie Champlin","age":41,"location":"Obieland"}},{"attributes":{"name":"Deshawn Crona","age":73,"location":"Rathborough"}},{"attributes":{"name":"Teresa Ullrich","age":53,"location":"Lake Zachery"}},{"attributes":{"name":"Cordie Gerhold II","age":45,"location":"Fort Hellenfurt"}},{"attributes":{"name":"Tommie Treutel IV","age":76,"location":"East Malvinacester"}},{"attributes":{"name":"Ms. Aditya Fisher I","age":46,"location":"New Newton"}},{"attributes":{"name":"Guadalupe Anderson","age":40,"location":"Rueckerport"}},{"attributes":{"name":"Enoch Mohr-Ullrich","age":23,"location":"East Honolulu"}},{"attributes":{"name":"Fern Leannon","age":44,"location":"Beatriceburgh"}},{"attributes":{"name":"Vickie Kirlin","age":80,"location":"Toyside"}},{"attributes":{"name":"Lee Thompson","age":29,"location":"New Nils"}},{"attributes":{"name":"Glenda Macejkovic","age":21,"location":"New Kobyfurt"}},{"attributes":{"name":"Kelton Abbott","age":80,"location":"Weimannhaven"}},{"attributes":{"name":"Fannie Nienow","age":50,"location":"West Elbert"}},{"attributes":{"name":"Estella Mills","age":55,"location":"Evansland"}},{"attributes":{"name":"Domingo Paucek","age":68,"location":"Marvinboro"}},{"attributes":{"name":"Sidney Thompson","age":64,"location":"West Joanny"}},{"attributes":{"name":"Belinda Braun","age":64,"location":"Hellerberg"}},{"attributes":{"name":"Orrin Stracke","age":45,"location":"Caspershire"}},{"attributes":{"name":"Cristobal Gerhold","age":56,"location":"Ashtonfurt"}},{"attributes":{"name":"Vincent Brekke","age":61,"location":"Lake Rickey"}},{"attributes":{"name":"Adolphus Jones","age":39,"location":"East Judgetown"}},{"attributes":{"name":"Harrison Jaskolski","age":62,"location":"Maxberg"}},{"attributes":{"name":"Mylene Collier","age":48,"location":"Springfield"}},{"attributes":{"name":"Joanna Adams-Wisozk","age":27,"location":"Lake Haliestead"}},{"attributes":{"name":"Melissa Lind","age":47,"location":"Ankeny"}},{"attributes":{"name":"Francis Mills","age":35,"location":"Sunrise Manor"}},{"attributes":{"name":"Kaylee Smitham","age":25,"location":"Lake Antonietta"}},{"attributes":{"name":"Tiara Jacobs","age":76,"location":"West Maybell"}},{"attributes":{"name":"Carlos Terry","age":23,"location":"Marcelinastad"}},{"attributes":{"name":"Clark Hammes-Kautzer","age":66,"location":"Fort Ollie"}},{"attributes":{"name":"Elbert Feest","age":46,"location":"Jupiter"}},{"attributes":{"name":"Cordia Stokes","age":24,"location":"Langoshhaven"}},{"attributes":{"name":"Harry Kuphal","age":75,"location":"North Lexi"}},{"attributes":{"name":"Elian Rau","age":71,"location":"Quincy"}},{"attributes":{"name":"Gregory Streich","age":32,"location":"Brianaview"}},{"attributes":{"name":"Vickie Schaefer","age":60,"location":"Hackettville"}},{"attributes":{"name":"Stuart Pagac","age":47,"location":"New Constantinside"}},{"attributes":{"name":"Mr. Lawrence Stoltenberg","age":70,"location":"Alisonworth"}},{"attributes":{"name":"Kariane Abernathy","age":36,"location":"Lake Ethelyn"}},{"attributes":{"name":"Faith Osinski-Windler","age":32,"location":"Gildaport"}},{"attributes":{"name":"Diane Gottlieb","age":59,"location":"Judybury"}},{"attributes":{"name":"Steven Stiedemann","age":63,"location":"Feeneyburgh"}},{"attributes":{"name":"Oscar Marquardt","age":58,"location":"Kingsport"}},{"attributes":{"name":"Allen Jacobson","age":48,"location":"Port Sydney"}},{"attributes":{"name":"Rodney Yost","age":47,"location":"Darioview"}},{"attributes":{"name":"Owen Ward","age":51,"location":"Bel Air South"}},{"attributes":{"name":"Antonietta Thompson","age":77,"location":"Port Maximestead"}},{"attributes":{"name":"Dustin Kulas-Bergstrom","age":42,"location":"East Anna"}},{"attributes":{"name":"Dr. Zachary Gleichner","age":77,"location":"Rohanburgh"}},{"attributes":{"name":"Ray Mitchell","age":74,"location":"Corpus Christi"}},{"attributes":{"name":"Teri Schumm","age":30,"location":"East Harmoncester"}},{"attributes":{"name":"Scotty Davis","age":40,"location":"East Frederic"}},{"attributes":{"name":"Johnnie Cassin","age":67,"location":"New Velva"}},{"attributes":{"name":"Michael Littel","age":46,"location":"Drewtown"}},{"attributes":{"name":"Marvin Cummerata","age":42,"location":"Coleview"}},{"attributes":{"name":"Rafael McKenzie","age":56,"location":"Lake Kristina"}},{"attributes":{"name":"Annamarie Kassulke","age":20,"location":"Welchshire"}},{"attributes":{"name":"Mrs. Rita Murazik","age":21,"location":"Fort Kolefurt"}},{"attributes":{"name":"Wellington Kuphal","age":61,"location":"Patsyfield"}},{"attributes":{"name":"Raquel Balistreri","age":55,"location":"Hacienda Heights"}},{"attributes":{"name":"Bernie Lindgren","age":34,"location":"Jersey City"}},{"attributes":{"name":"Mike Powlowski-Pouros IV","age":73,"location":"Fort Caylacester"}},{"attributes":{"name":"Freddie Hand","age":19,"location":"Alameda"}},{"attributes":{"name":"Missouri Reilly V","age":76,"location":"Lake Jess"}},{"attributes":{"name":"David Goodwin-Klocko","age":57,"location":"South Jordan"}},{"attributes":{"name":"Christiana Effertz","age":40,"location":"Pontiac"}},{"attributes":{"name":"Boyd Willms","age":76,"location":"Ashaville"}},{"attributes":{"name":"Marques Schaden","age":58,"location":"Bryan"}},{"attributes":{"name":"Clark Bernhard","age":24,"location":"Lake Hopeborough"}},{"attributes":{"name":"Elijah Hilll","age":80,"location":"Fort Nicolas"}},{"attributes":{"name":"Franklin Hodkiewicz","age":26,"location":"West Vickyfort"}},{"attributes":{"name":"Miss Damien Dooley-Kertzmann","age":51,"location":"Salvadorport"}},{"attributes":{"name":"Samson Klein","age":39,"location":"Lake Beauside"}},{"attributes":{"name":"Abagail Johnston","age":39,"location":"Caleboro"}},{"attributes":{"name":"Avery Nader","age":46,"location":"Fort Laurence"}},{"attributes":{"name":"Dr. Kerry Christiansen","age":73,"location":"North Ian"}},{"attributes":{"name":"Gennaro Ankunding","age":54,"location":"South Emelia"}},{"attributes":{"name":"Birdie Ankunding","age":46,"location":"Smyrna"}},{"attributes":{"name":"Miss Assunta Corwin","age":68,"location":"Rippinborough"}},{"attributes":{"name":"Laurence Tromp","age":75,"location":"Fort Emiliano"}},{"attributes":{"name":"Tyrone Luettgen","age":75,"location":"Port Keelyfort"}},{"attributes":{"name":"Dallas Will","age":42,"location":"Caylaworth"}},{"attributes":{"name":"Ruby Nienow","age":19,"location":"North Jarodborough"}},{"attributes":{"name":"Pamela VonRueden","age":33,"location":"Fort Gabeburgh"}},{"attributes":{"name":"Lloyd Murphy","age":22,"location":"Lake Delphaton"}},{"attributes":{"name":"Christop Lockman II","age":47,"location":"Margaretburgh"}},{"attributes":{"name":"Sam Altenwerth","age":25,"location":"West Jakobchester"}},{"attributes":{"name":"Brad Gutkowski","age":67,"location":"O'Keefeton"}},{"attributes":{"name":"Willard Brown","age":22,"location":"South Elisabeth"}},{"attributes":{"name":"Nyah Hartmann","age":38,"location":"Rosieton"}},{"attributes":{"name":"Janis Olson","age":42,"location":"Brucefurt"}},{"attributes":{"name":"Tia Windler","age":29,"location":"North Zella"}},{"attributes":{"name":"Conrad Lockman","age":57,"location":"Larsonhaven"}},{"attributes":{"name":"Wm Grady","age":51,"location":"North Ebbaburgh"}},{"attributes":{"name":"Oral Johnson","age":65,"location":"Maricopa"}},{"attributes":{"name":"Abraham Botsford","age":80,"location":"Theronburgh"}},{"attributes":{"name":"Oda Botsford","age":33,"location":"Adalbertomouth"}},{"attributes":{"name":"Christy Dickens","age":36,"location":"Mavisworth"}},{"attributes":{"name":"Peter Beahan","age":61,"location":"East Lessiestad"}},{"attributes":{"name":"Jevon Kohler","age":80,"location":"Port Kaia"}},{"attributes":{"name":"Claud Brown","age":72,"location":"Georgetown"}},{"attributes":{"name":"Ms. Meggie Kemmer","age":46,"location":"Jerdefort"}},{"attributes":{"name":"Paxton Rolfson IV","age":67,"location":"Surprise"}},{"attributes":{"name":"Dr. Clay Brown-Smith","age":60,"location":"Ewaldland"}},{"attributes":{"name":"Larry Okuneva","age":21,"location":"Koreycester"}},{"attributes":{"name":"Nellie Graham","age":44,"location":"Wylie"}},{"attributes":{"name":"Willow Treutel-Rempel","age":21,"location":"Justusberg"}},{"attributes":{"name":"Noel Schuppe IV","age":64,"location":"Nathenfort"}},{"attributes":{"name":"Carley Leannon","age":79,"location":"Linastad"}},{"attributes":{"name":"Bryant Becker","age":37,"location":"Feeneyside"}},{"attributes":{"name":"Sophia Franey-Hermann","age":42,"location":"Lake Nathanaelchester"}},{"attributes":{"name":"Ronald Paucek","age":27,"location":"South San Francisco"}},{"attributes":{"name":"Miss Bernadette Fadel","age":49,"location":"Sagestad"}},{"attributes":{"name":"Miss Rozella Zieme V","age":45,"location":"Bennettfurt"}},{"attributes":{"name":"Flora Bartell","age":20,"location":"North Nathanfort"}},{"attributes":{"name":"Cecelia Kiehn","age":31,"location":"Shanahanburgh"}},{"attributes":{"name":"Whitney Lehner DDS","age":72,"location":"New Ewellfurt"}},{"attributes":{"name":"Jeffery Sporer","age":21,"location":"Lake Nicholaus"}},{"attributes":{"name":"Hallie Sipes","age":25,"location":"Dubuque"}},{"attributes":{"name":"Tyler Runolfsdottir","age":24,"location":"Modesto"}},{"attributes":{"name":"Wanda Schiller DDS","age":28,"location":"Rockwall"}},{"attributes":{"name":"Lorraine Kunde","age":73,"location":"Spokane"}},{"attributes":{"name":"Jailyn Greenfelder","age":20,"location":"West Winonaberg"}},{"attributes":{"name":"August McDermott","age":37,"location":"Port Richiehaven"}},{"attributes":{"name":"Merle Muller","age":19,"location":"Fort Dee"}},{"attributes":{"name":"Bridie Bauch Jr.","age":62,"location":"West Hoytstead"}},{"attributes":{"name":"Dr. Rene Altenwerth-Bernhard","age":21,"location":"Anjalishire"}},{"attributes":{"name":"Leland Wyman Sr.","age":48,"location":"Paxtonview"}},{"attributes":{"name":"Preston Reinger Jr.","age":23,"location":"Lake Charles"}},{"attributes":{"name":"Jerome Zboncak","age":28,"location":"North Federico"}},{"attributes":{"name":"Leigh Trantow","age":65,"location":"Port Malloryhaven"}},{"attributes":{"name":"Anne Murazik","age":75,"location":"New Aliyahhaven"}},{"attributes":{"name":"Jacqueline Leffler","age":26,"location":"Beerton"}},{"attributes":{"name":"Maxine Rippin","age":53,"location":"East Catherine"}},{"attributes":{"name":"Reuben Hansen","age":44,"location":"West Trudie"}},{"attributes":{"name":"Eugene Crist","age":30,"location":"Fort Santosshire"}},{"attributes":{"name":"Johathan Durgan","age":72,"location":"New Samanthaland"}},{"attributes":{"name":"Chanel Hauck","age":74,"location":"White Plains"}},{"attributes":{"name":"Tyson Hermiston","age":77,"location":"Rueckerbury"}},{"attributes":{"name":"Meda Adams","age":52,"location":"Schoenfield"}},{"attributes":{"name":"Laurence Heathcote","age":56,"location":"Racine"}},{"attributes":{"name":"Meda King","age":30,"location":"South Irwinberg"}},{"attributes":{"name":"Deanna Dibbert","age":41,"location":"Duluth"}},{"attributes":{"name":"Juliana Kris","age":54,"location":"Spring Hill"}},{"attributes":{"name":"Patty Jerde","age":77,"location":"Lynn"}},{"attributes":{"name":"Doug Rath","age":36,"location":"Port Adelineshire"}},{"attributes":{"name":"Frederick Walter","age":70,"location":"Fontana"}},{"attributes":{"name":"Casey Wiza","age":40,"location":"Wizabury"}},{"attributes":{"name":"Myrl Wiza","age":38,"location":"Lake Mossie"}},{"attributes":{"name":"Lynn Goodwin III","age":80,"location":"Chino Hills"}},{"attributes":{"name":"Eleanor Daniel PhD","age":48,"location":"Port Lottieport"}},{"attributes":{"name":"Minnie Abbott","age":51,"location":"Handborough"}},{"attributes":{"name":"Ethelyn Schaden","age":50,"location":"Jaylenborough"}},{"attributes":{"name":"Amani Turner II","age":76,"location":"North Tito"}},{"attributes":{"name":"Ada McCullough","age":62,"location":"Donnellychester"}},{"attributes":{"name":"Rick Kirlin-Lindgren","age":58,"location":"West Sebastianchester"}},{"attributes":{"name":"Katie Mills","age":29,"location":"Stracketon"}},{"attributes":{"name":"Bettie Cole","age":40,"location":"Lake Caliworth"}},{"attributes":{"name":"Brad Kunze","age":35,"location":"Middletown"}},{"attributes":{"name":"Mrs. Alison Ebert","age":69,"location":"West Malcolmfurt"}},{"attributes":{"name":"Sonia Glover","age":19,"location":"Rennermouth"}},{"attributes":{"name":"Mr. Norma Glover-D'Amore","age":36,"location":"South Hill"}},{"attributes":{"name":"Modesto Sipes III","age":80,"location":"Larkinview"}},{"attributes":{"name":"Pearline Johnson","age":22,"location":"Clearwater"}},{"attributes":{"name":"Lowell Bergstrom","age":69,"location":"Mohamedtown"}},{"attributes":{"name":"Ferne Rogahn","age":23,"location":"Huntington"}},{"attributes":{"name":"Claudine Cremin DDS","age":48,"location":"Port Joelle"}},{"attributes":{"name":"Ms. Caleb Grant","age":43,"location":"Oleville"}},{"attributes":{"name":"Keira Greenfelder","age":54,"location":"North Dallin"}},{"attributes":{"name":"Savion Kunze","age":33,"location":"Lefflershire"}},{"attributes":{"name":"Mark Hyatt I","age":49,"location":"Novi"}},{"attributes":{"name":"Judith Larkin","age":61,"location":"West Antone"}},{"attributes":{"name":"Dr. Morris Wilderman","age":71,"location":"Roelfield"}},{"attributes":{"name":"Brandon Collins","age":73,"location":"Friedrichborough"}},{"attributes":{"name":"Eleanore Howell DDS","age":51,"location":"Fort Charlotte"}},{"attributes":{"name":"Brannon Fadel","age":34,"location":"South Edwinberg"}},{"attributes":{"name":"Dr. Quincy Nikolaus","age":28,"location":"East Judd"}},{"attributes":{"name":"Greyson Schneider","age":49,"location":"Gaithersburg"}},{"attributes":{"name":"Dwight Hauck","age":47,"location":"Schenectady"}},{"attributes":{"name":"Alberta Crona","age":71,"location":"Blickshire"}},{"attributes":{"name":"Mr. Torey Rolfson","age":25,"location":"Levittown"}},{"attributes":{"name":"Harold Champlin","age":59,"location":"Lake Hertha"}},{"attributes":{"name":"Violet Huel","age":48,"location":"Amiyafurt"}},{"attributes":{"name":"Doris Mitchell","age":51,"location":"Charleston"}},{"attributes":{"name":"Wilbur Spinka","age":41,"location":"Lake Gastonfurt"}},{"attributes":{"name":"Lloyd Hagenes","age":45,"location":"West Kraighaven"}},{"attributes":{"name":"Mrs. Antonia Balistreri","age":25,"location":"Fort Ed"}},{"attributes":{"name":"Ethan Smitham-Pfeffer","age":67,"location":"Florissant"}},{"attributes":{"name":"Dr. Anne Casper","age":67,"location":"East Dahliahaven"}},{"attributes":{"name":"Webster Pagac-Larkin","age":51,"location":"Renton"}},{"attributes":{"name":"Ethel Bernhard","age":60,"location":"Hauckton"}},{"attributes":{"name":"Lynda Hintz","age":26,"location":"Oak Lawn"}},{"attributes":{"name":"Eleonore Langworth","age":62,"location":"Rockville"}},{"attributes":{"name":"Constantin Schamberger PhD","age":22,"location":"North Helen"}},{"attributes":{"name":"Jennyfer Veum","age":66,"location":"Antelope"}},{"attributes":{"name":"Judith Ebert","age":52,"location":"Lake Javon"}},{"attributes":{"name":"Alysha Greenfelder","age":49,"location":"Lake Elliecester"}},{"attributes":{"name":"Scot Lockman","age":72,"location":"Palm Springs"}},{"attributes":{"name":"Abraham Bosco","age":34,"location":"Bel Air South"}},{"attributes":{"name":"Laura Welch","age":27,"location":"Woodland"}},{"attributes":{"name":"Mack Champlin","age":69,"location":"Stephenburgh"}},{"attributes":{"name":"Brianne Rice-Heidenreich","age":50,"location":"Fort Neva"}},{"attributes":{"name":"Jamie Herman","age":40,"location":"Fort Belle"}},{"attributes":{"name":"Lewis O'Hara","age":63,"location":"North Carson"}},{"attributes":{"name":"Ari Bernier","age":18,"location":"Conroe"}},{"attributes":{"name":"Phil Stracke DVM","age":66,"location":"East Geovanni"}},{"attributes":{"name":"Willard Borer II","age":76,"location":"West Annabel"}},{"attributes":{"name":"Christian Gutkowski","age":37,"location":"Brookline"}},{"attributes":{"name":"Carlee Predovic-Kemmer","age":49,"location":"Kathrynemouth"}},{"attributes":{"name":"Malcolm Altenwerth","age":72,"location":"Carson City"}},{"attributes":{"name":"Meghan Wunsch","age":53,"location":"East Berta"}},{"attributes":{"name":"Darla Schneider","age":59,"location":"Port Otto"}},{"attributes":{"name":"Pauline Haag","age":26,"location":"DuBuquefield"}},{"attributes":{"name":"Nina Balistreri","age":62,"location":"Muncie"}},{"attributes":{"name":"Claude Yundt","age":62,"location":"Marvinberg"}},{"attributes":{"name":"Angela Hilll","age":30,"location":"Vinniecester"}},{"attributes":{"name":"Mrs. Francis Bahringer","age":27,"location":"Marquardtchester"}},{"attributes":{"name":"Devyn Conn","age":72,"location":"East Laishatown"}},{"attributes":{"name":"Salvatore Moore","age":36,"location":"East Pearlie"}},{"attributes":{"name":"Julian Hirthe","age":78,"location":"Kansas City"}},{"attributes":{"name":"Cecil Cassin","age":34,"location":"Stromanborough"}},{"attributes":{"name":"Salvatore Berge","age":39,"location":"Lake Ofeliatown"}},{"attributes":{"name":"Leonard Parker II","age":29,"location":"Rafaelatown"}},{"attributes":{"name":"Geo O'Reilly","age":67,"location":"Stehrville"}},{"attributes":{"name":"Joanna Kshlerin","age":68,"location":"Port Maceychester"}},{"attributes":{"name":"Muriel Robel","age":20,"location":"Mayerstad"}},{"attributes":{"name":"Clinton Funk","age":67,"location":"East Justusside"}},{"attributes":{"name":"Agnes Mueller","age":45,"location":"Pasco"}},{"attributes":{"name":"Julio Wiza","age":44,"location":"Blacksburg"}},{"attributes":{"name":"Horace Christiansen","age":74,"location":"Corenefort"}},{"attributes":{"name":"Mr. Arden Reilly","age":37,"location":"Port Gisselleworth"}},{"attributes":{"name":"Omar Greenholt","age":75,"location":"Susanborough"}},{"attributes":{"name":"Sigurd Schmitt II","age":50,"location":"North Maurine"}},{"attributes":{"name":"Boyd Robel","age":53,"location":"Jaleelboro"}},{"attributes":{"name":"Lamar Streich","age":48,"location":"Sporerside"}},{"attributes":{"name":"Terrence Koss","age":79,"location":"North Marcos"}},{"attributes":{"name":"Cassandra Altenwerth","age":25,"location":"Philadelphia"}},{"attributes":{"name":"Gwen Emmerich PhD","age":41,"location":"Port Valliecester"}},{"attributes":{"name":"Dr. Amanda Ullrich Sr.","age":41,"location":"Thielbury"}},{"attributes":{"name":"Maxine Boyer PhD","age":36,"location":"O'Haraton"}},{"attributes":{"name":"Larry Nicolas","age":79,"location":"Fort Rex"}},{"attributes":{"name":"Ken Abbott","age":79,"location":"Yorba Linda"}},{"attributes":{"name":"Macy Goyette","age":75,"location":"Willmsview"}},{"attributes":{"name":"Theodore Cremin","age":38,"location":"Gustbury"}},{"attributes":{"name":"Mrs. Marie Swaniawski","age":39,"location":"East Doug"}},{"attributes":{"name":"Amaya Greenfelder","age":41,"location":"Heidenreichmouth"}},{"attributes":{"name":"Guadalupe DuBuque","age":30,"location":"East Abagail"}},{"attributes":{"name":"Hardy Wisozk","age":66,"location":"Kemmerfurt"}},{"attributes":{"name":"Ursula Ferry","age":35,"location":"Lauderhill"}},{"attributes":{"name":"Nathaniel Quigley","age":61,"location":"Fort Koleworth"}},{"attributes":{"name":"Nelson Jenkins","age":37,"location":"Chetville"}},{"attributes":{"name":"Wendell Franecki","age":49,"location":"New Roelton"}},{"attributes":{"name":"Abbey McCullough","age":64,"location":"North Mekhi"}},{"attributes":{"name":"Cedric Gerlach","age":68,"location":"New Elmer"}},{"attributes":{"name":"Cedric Kassulke","age":68,"location":"Myriamboro"}},{"attributes":{"name":"Frederick Koss","age":56,"location":"Jarredburgh"}},{"attributes":{"name":"Carol Swift","age":60,"location":"Kuphalboro"}},{"attributes":{"name":"Florence Watsica","age":28,"location":"West Amir"}},{"attributes":{"name":"Anne Botsford","age":72,"location":"West Tommie"}},{"attributes":{"name":"Mrs. Audreanne Leannon","age":36,"location":"East Jimmieburgh"}},{"attributes":{"name":"Mr. Mable Daugherty","age":36,"location":"Port Brenda"}},{"attributes":{"name":"Maritza Nitzsche-Collins","age":43,"location":"Beaufort"}},{"attributes":{"name":"Kristy Rosenbaum","age":61,"location":"Herzogcester"}},{"attributes":{"name":"Shari Morissette","age":32,"location":"Port Keeganville"}},{"attributes":{"name":"Marlon Hessel","age":77,"location":"Melbourne"}},{"attributes":{"name":"Kamryn Smith","age":61,"location":"Amyburgh"}},{"attributes":{"name":"Isaac Gislason","age":52,"location":"Kassulkeville"}},{"attributes":{"name":"Nikko Donnelly","age":29,"location":"Port Imogeneton"}},{"attributes":{"name":"Jett Zemlak","age":48,"location":"North Calebcester"}},{"attributes":{"name":"Mr. Genevieve Weissnat Sr.","age":31,"location":"Quincy"}},{"attributes":{"name":"Marjorie Bergstrom","age":59,"location":"Gleichnerport"}},{"attributes":{"name":"Mellie Lesch","age":26,"location":"Ratkeworth"}},{"attributes":{"name":"Dimitri Lebsack","age":44,"location":"East Mallie"}},{"attributes":{"name":"Madelynn Anderson","age":58,"location":"Schulistfurt"}},{"attributes":{"name":"Tamara Macejkovic","age":37,"location":"Hamillbury"}},{"attributes":{"name":"Nick Reichel","age":68,"location":"Fort Turner"}},{"attributes":{"name":"Lane Kutch","age":48,"location":"New Thaddeus"}},{"attributes":{"name":"Heaven Price IV","age":49,"location":"Lake Magdalena"}},{"attributes":{"name":"Edwin Simonis","age":43,"location":"Ziemefield"}},{"attributes":{"name":"Myron Lind","age":69,"location":"North Price"}},{"attributes":{"name":"Colin Larkin","age":30,"location":"Brockton"}},{"attributes":{"name":"Hayden Bauch","age":68,"location":"Hoegerview"}},{"attributes":{"name":"Jacklyn Weimann","age":62,"location":"Lake Quincystad"}},{"attributes":{"name":"Alfonso Torphy","age":63,"location":"Clydemouth"}},{"attributes":{"name":"Eleanore Feil-Cummings","age":71,"location":"Port Destinyshire"}},{"attributes":{"name":"Marion Orn","age":41,"location":"Fort Genesismouth"}},{"attributes":{"name":"Florence Howe","age":68,"location":"New Mazieshire"}},{"attributes":{"name":"Jenny Jaskolski","age":75,"location":"North Robyn"}},{"attributes":{"name":"Johnathan Schuster","age":21,"location":"Fort Cristian"}},{"attributes":{"name":"Lynda Jast","age":74,"location":"Friedrichton"}},{"attributes":{"name":"Timmy Bartell","age":60,"location":"Elsahaven"}},{"attributes":{"name":"Esta Heaney","age":54,"location":"Gutmannborough"}},{"attributes":{"name":"Darla Durgan","age":63,"location":"Murrieta"}},{"attributes":{"name":"Milton Kovacek","age":34,"location":"Stevieside"}},{"attributes":{"name":"Willie Schroeder","age":50,"location":"Mentor"}},{"attributes":{"name":"Gladys Cruickshank","age":27,"location":"Pfannerstillfort"}},{"attributes":{"name":"Margarita Windler","age":62,"location":"Champlinton"}},{"attributes":{"name":"Ewell Zemlak","age":45,"location":"Port Wavastad"}},{"attributes":{"name":"Della Schaden","age":20,"location":"Alexzandercester"}},{"attributes":{"name":"Giovanna Heidenreich","age":66,"location":"Randiland"}},{"attributes":{"name":"Abraham Ledner","age":40,"location":"Cedar Park"}},{"attributes":{"name":"Edmond Smith-Wintheiser DVM","age":50,"location":"McAllen"}},{"attributes":{"name":"Julia Runolfsson","age":64,"location":"Fort Lue"}},{"attributes":{"name":"Dr. Doyle Haag","age":23,"location":"Fort Ivyfurt"}},{"attributes":{"name":"Johnnie Corkery","age":23,"location":"Lanceboro"}},{"attributes":{"name":"Walter Hyatt Jr.","age":21,"location":"Conroyberg"}},{"attributes":{"name":"Maggie Senger","age":29,"location":"Amyafield"}},{"attributes":{"name":"Miss Malcolm Shields","age":77,"location":"South Tessie"}},{"attributes":{"name":"Clark Hilll","age":24,"location":"Reynoldsport"}},{"attributes":{"name":"Dr. Meredith Hagenes","age":67,"location":"South Svenfurt"}},{"attributes":{"name":"Ivan Steuber","age":64,"location":"Laurianefort"}},{"attributes":{"name":"Emanuel Nader","age":75,"location":"Wittingchester"}},{"attributes":{"name":"Ana Schimmel-Treutel","age":27,"location":"Euclid"}},{"attributes":{"name":"Miss Laura Mueller","age":63,"location":"Stoltenbergfurt"}},{"attributes":{"name":"Leora Koepp","age":39,"location":"South Malcolm"}},{"attributes":{"name":"Randall Moen Sr.","age":28,"location":"North Gloria"}},{"attributes":{"name":"Randolph MacGyver","age":49,"location":"Welchfield"}},{"attributes":{"name":"Sergio Kerluke","age":38,"location":"Mosesberg"}},{"attributes":{"name":"Herta Gutmann","age":70,"location":"Lake Presleychester"}},{"attributes":{"name":"Ethelyn Crist DDS","age":33,"location":"Shakirahaven"}},{"attributes":{"name":"Norman Effertz","age":79,"location":"Racine"}},{"attributes":{"name":"Myrtis Murphy","age":52,"location":"Brentwood"}},{"attributes":{"name":"Rodney Stoltenberg IV","age":49,"location":"North Ethan"}},{"attributes":{"name":"Ms. Krystal Weimann","age":42,"location":"Opalland"}},{"attributes":{"name":"Autumn Schuster DDS","age":58,"location":"Kansas City"}},{"attributes":{"name":"Michelle Volkman","age":68,"location":"South Sister"}},{"attributes":{"name":"Harvey Windler","age":72,"location":"Thousand Oaks"}},{"attributes":{"name":"Fred Marvin","age":44,"location":"South Guido"}},{"attributes":{"name":"Gail Conn","age":28,"location":"Caguas"}},{"attributes":{"name":"Osborne Breitenberg MD","age":20,"location":"Bartelltown"}},{"attributes":{"name":"Dr. Laisha Skiles","age":66,"location":"Jaspershire"}},{"attributes":{"name":"Hugh Kreiger I","age":69,"location":"Tuckahoe"}},{"attributes":{"name":"Stanley Corwin","age":63,"location":"Buckeye"}},{"attributes":{"name":"Myrtle Herzog DDS","age":28,"location":"South Sigridshire"}},{"attributes":{"name":"Clifton Thompson","age":60,"location":"Edmond"}},{"attributes":{"name":"Antonietta Hamill","age":23,"location":"Manchester"}},{"attributes":{"name":"Alphonso Metz","age":75,"location":"West Karleyhaven"}},{"attributes":{"name":"Don Nolan","age":57,"location":"Kristinville"}},{"attributes":{"name":"Dulce Beahan","age":43,"location":"West Raina"}},{"attributes":{"name":"Yolanda VonRueden","age":26,"location":"Ankundingport"}},{"attributes":{"name":"Dennis Schneider","age":23,"location":"Fort Fleta"}},{"attributes":{"name":"Marty Kutch","age":65,"location":"Fort Chesleyside"}},{"attributes":{"name":"Salvatore Bosco","age":62,"location":"Susanton"}},{"attributes":{"name":"Ms. Maryjane Schuppe","age":52,"location":"Pedrohaven"}},{"attributes":{"name":"Dr. Cesar Moen","age":72,"location":"North Nona"}},{"attributes":{"name":"Blanche Vandervort","age":35,"location":"Savannamouth"}},{"attributes":{"name":"Cynthia Ruecker PhD","age":24,"location":"Lake Elijahburgh"}},{"attributes":{"name":"Tiana Hoeger","age":43,"location":"Corvallis"}},{"attributes":{"name":"Ulises Braun","age":61,"location":"Midland"}},{"attributes":{"name":"Teresa Adams","age":30,"location":"Port Vanceton"}},{"attributes":{"name":"Marsha Gorczany","age":49,"location":"North Raymundocester"}},{"attributes":{"name":"Candace Johnson","age":46,"location":"Fort Griffinville"}},{"attributes":{"name":"Dr. Samuel Gutkowski","age":51,"location":"Fort Jaimefield"}},{"attributes":{"name":"Miss Vanessa Sporer","age":67,"location":"Lake Eldamouth"}},{"attributes":{"name":"Lori Hoppe","age":71,"location":"Broken Arrow"}},{"attributes":{"name":"Ashtyn Hane","age":56,"location":"East Jaron"}},{"attributes":{"name":"Brianne Beer","age":26,"location":"North Christy"}},{"attributes":{"name":"Nadine Kassulke","age":51,"location":"West Lizzieport"}},{"attributes":{"name":"Fidel Nolan III","age":19,"location":"West Robertomouth"}},{"attributes":{"name":"Isaac Hodkiewicz-Mayert","age":22,"location":"Boehmstad"}},{"attributes":{"name":"Vanessa Mohr","age":25,"location":"Lake Kacimouth"}},{"attributes":{"name":"Maximillian Abshire PhD","age":31,"location":"Quinnfield"}},{"attributes":{"name":"Rickey Mitchell","age":40,"location":"Atascocita"}},{"attributes":{"name":"Dimitri Hane","age":33,"location":"Port Darleneborough"}},{"attributes":{"name":"Dean Rowe","age":70,"location":"Damianburgh"}},{"attributes":{"name":"Benjamin Barrows","age":31,"location":"East Bertha"}},{"attributes":{"name":"Dewey Beer","age":61,"location":"Manchester"}},{"attributes":{"name":"Miss Denise Gottlieb","age":53,"location":"El Dorado Hills"}},{"attributes":{"name":"Grant Beahan","age":54,"location":"Fort Janis"}},{"attributes":{"name":"Lula Christiansen","age":27,"location":"North Dell"}},{"attributes":{"name":"Miss Mollie Skiles","age":44,"location":"Emanuelfort"}},{"attributes":{"name":"Horace Fisher V","age":40,"location":"Barnstable Town"}},{"attributes":{"name":"Leland Heidenreich","age":21,"location":"Marvinton"}},{"attributes":{"name":"Mekhi Quitzon","age":63,"location":"North Demetrius"}},{"attributes":{"name":"Kiera Hane","age":46,"location":"Lesleyside"}},{"attributes":{"name":"Miss Margarita Murray","age":30,"location":"East Ethelshire"}},{"attributes":{"name":"Terrell Bosco","age":60,"location":"Erynbury"}},{"attributes":{"name":"Cameron Ledner","age":25,"location":"North Elizaburgh"}},{"attributes":{"name":"Randy Huel","age":44,"location":"Temecula"}},{"attributes":{"name":"Dr. Freddie Swaniawski","age":26,"location":"Ryanborough"}},{"attributes":{"name":"Randal Hettinger-VonRueden","age":37,"location":"Cummeratafield"}},{"attributes":{"name":"Ellen Cartwright","age":38,"location":"Ponce"}},{"attributes":{"name":"Mrs. Alberta Koch","age":20,"location":"Albany"}},{"attributes":{"name":"Tomas Reichert","age":76,"location":"North Vincenza"}},{"attributes":{"name":"Moses Stiedemann-Kunde","age":62,"location":"Kiehnmouth"}},{"attributes":{"name":"Shanon Stoltenberg","age":67,"location":"Lilafurt"}},{"attributes":{"name":"Bill Bartell","age":37,"location":"Beaulahboro"}},{"attributes":{"name":"Korbin Wehner","age":29,"location":"Port Kennaport"}},{"attributes":{"name":"Carmen Walter","age":18,"location":"Mohrmouth"}},{"attributes":{"name":"Aileen Mohr","age":69,"location":"New Thelma"}},{"attributes":{"name":"Ms. Alberta Marquardt","age":68,"location":"North Mireillefurt"}},{"attributes":{"name":"Timmy Gibson","age":67,"location":"Grapevine"}},{"attributes":{"name":"Ms. Jarod Reilly","age":39,"location":"South Kristopher"}},{"attributes":{"name":"Gerardo Wiza","age":43,"location":"North Leolamouth"}},{"attributes":{"name":"Brooke Jaskolski","age":58,"location":"Lake Mia"}},{"attributes":{"name":"Leola Gleason","age":60,"location":"Weston"}},{"attributes":{"name":"Valerie Barrows","age":54,"location":"Lake Emmy"}},{"attributes":{"name":"Novella Simonis","age":73,"location":"West Hertha"}},{"attributes":{"name":"Ramiro Dooley","age":72,"location":"South Markusport"}},{"attributes":{"name":"Oren Reichert","age":49,"location":"Fort Conor"}},{"attributes":{"name":"Dr. Josh Orn","age":44,"location":"South Omaberg"}},{"attributes":{"name":"Cody Jenkins","age":70,"location":"Hartmannstad"}},{"attributes":{"name":"Vernon Graham","age":46,"location":"Prosaccoworth"}},{"attributes":{"name":"Nolan Beahan","age":49,"location":"New Esteban"}},{"attributes":{"name":"Lois Kirlin","age":66,"location":"New Freda"}},{"attributes":{"name":"Mabel Boyer","age":36,"location":"MacGyverchester"}},{"attributes":{"name":"Lester Toy","age":76,"location":"Crystalbury"}},{"attributes":{"name":"Saige Dickens","age":36,"location":"Watsicachester"}},{"attributes":{"name":"Kailyn Schmidt DVM","age":74,"location":"Maximushaven"}},{"attributes":{"name":"Shirley Steuber","age":67,"location":"Lake Jennyferbury"}},{"attributes":{"name":"Chase Sanford","age":73,"location":"North Rudolphfurt"}},{"attributes":{"name":"Kevin Hartmann","age":69,"location":"Hahnfield"}},{"attributes":{"name":"Assunta Mertz","age":55,"location":"Port Diego"}},{"attributes":{"name":"Leigh Franey","age":56,"location":"Blockshire"}},{"attributes":{"name":"Imani Douglas","age":74,"location":"Santa Cruz"}},{"attributes":{"name":"Dr. Vicki O'Reilly III","age":76,"location":"Hoytberg"}},{"attributes":{"name":"Alex Schimmel-Mitchell","age":18,"location":"Andersonbury"}},{"attributes":{"name":"Derek White","age":76,"location":"Faefurt"}},{"attributes":{"name":"Stewart Lockman","age":78,"location":"Biloxi"}},{"attributes":{"name":"Ruben Hodkiewicz MD","age":52,"location":"Batzside"}},{"attributes":{"name":"Stewart Beier","age":40,"location":"Bethesda"}},{"attributes":{"name":"Francis Schuppe","age":57,"location":"Port Stanleyfield"}},{"attributes":{"name":"Mr. Willie Streich","age":22,"location":"Fabianbury"}},{"attributes":{"name":"Blake Fritsch","age":62,"location":"East Kaylinshire"}},{"attributes":{"name":"Albin Thompson","age":67,"location":"Newport Beach"}},{"attributes":{"name":"Willa Oberbrunner","age":30,"location":"South Yeseniafield"}},{"attributes":{"name":"Odie Fadel","age":26,"location":"Sayreville"}},{"attributes":{"name":"Eldon Nitzsche","age":39,"location":"Denver"}},{"attributes":{"name":"Ms. Franz Parker-Considine","age":46,"location":"Port Edythbury"}},{"attributes":{"name":"Elisa Dietrich","age":69,"location":"Fort Kaseybury"}},{"attributes":{"name":"Kyle Kulas","age":26,"location":"Lake Karltown"}},{"attributes":{"name":"Debra Grady","age":41,"location":"South Marcus"}},{"attributes":{"name":"Evan Monahan","age":32,"location":"Millerfort"}},{"attributes":{"name":"Virginie Zboncak","age":53,"location":"Romaineton"}},{"attributes":{"name":"Dr. Tami Casper","age":40,"location":"Valeriebury"}},{"attributes":{"name":"Sam Von","age":66,"location":"Stamford"}},{"attributes":{"name":"Ms. Claudine Bayer","age":53,"location":"Madisynfurt"}},{"attributes":{"name":"Jessie Feest","age":73,"location":"Abbottville"}},{"attributes":{"name":"Gilda Effertz","age":52,"location":"South Aglaeland"}},{"attributes":{"name":"Jude Rau-Konopelski","age":80,"location":"Flower Mound"}},{"attributes":{"name":"Mr. Verona Kohler","age":19,"location":"Zackeryville"}},{"attributes":{"name":"Dennis Stark-Quigley","age":19,"location":"West Valley City"}},{"attributes":{"name":"Isai Bernhard","age":60,"location":"Izaiahberg"}},{"attributes":{"name":"Mandy Emard","age":56,"location":"Fort Deron"}},{"attributes":{"name":"Camila Mitchell","age":75,"location":"North Wellingtonfurt"}},{"attributes":{"name":"Dorthy Becker","age":71,"location":"East Fernestead"}},{"attributes":{"name":"Herta Ward","age":75,"location":"South Jannie"}},{"attributes":{"name":"Dorothy Berge","age":37,"location":"Uptonside"}},{"attributes":{"name":"Mrs. Kaley Wolff","age":53,"location":"Port Jameyview"}},{"attributes":{"name":"Sue Roberts PhD","age":18,"location":"Kesslerborough"}},{"attributes":{"name":"Luz Jerde","age":63,"location":"Ames"}},{"attributes":{"name":"Miss Myrtie Lebsack","age":67,"location":"New Milanfort"}},{"attributes":{"name":"Lonnie Block","age":64,"location":"Schillerville"}},{"attributes":{"name":"Robb Smitham","age":56,"location":"South Elbert"}},{"attributes":{"name":"Torrey Medhurst","age":64,"location":"North Robbieberg"}},{"attributes":{"name":"Dr. Dan Kreiger","age":22,"location":"Duluth"}},{"attributes":{"name":"Marshall Donnelly","age":62,"location":"Sipeschester"}},{"attributes":{"name":"Rachelle Kozey","age":73,"location":"Lake Reginaldton"}},{"attributes":{"name":"Gerardo Greenfelder","age":73,"location":"East Lavon"}},{"attributes":{"name":"Darla Rosenbaum","age":64,"location":"Lake Corine"}},{"attributes":{"name":"Dr. Al Kris Jr.","age":60,"location":"South Callieland"}},{"attributes":{"name":"Jude Kilback","age":49,"location":"Brendashire"}},{"attributes":{"name":"Ashtyn Effertz","age":45,"location":"Port Constancetown"}},{"attributes":{"name":"Elza Roob","age":68,"location":"Fort Brielleton"}},{"attributes":{"name":"Elna Boehm V","age":71,"location":"South Dangeloview"}},{"attributes":{"name":"Iva Dicki DDS","age":29,"location":"Hayesborough"}},{"attributes":{"name":"Gwen Braun","age":70,"location":"New Wadeside"}},{"attributes":{"name":"Dr. Dwight Zulauf","age":38,"location":"Gregshire"}},{"attributes":{"name":"Loyal Kulas","age":48,"location":"West Myastad"}},{"attributes":{"name":"Miss Bernice Klein","age":46,"location":"Lake Keagan"}},{"attributes":{"name":"Dane Ratke","age":47,"location":"Poinciana"}},{"attributes":{"name":"Jessie Effertz","age":54,"location":"Jacquelynfield"}},{"attributes":{"name":"Abraham Kulas","age":55,"location":"East Hillard"}},{"attributes":{"name":"Kenya Kris","age":29,"location":"Toneyside"}},{"attributes":{"name":"Trevor Spinka","age":31,"location":"Layton"}},{"attributes":{"name":"Rosemarie Schimmel","age":41,"location":"Nashua"}},{"attributes":{"name":"Barry Veum","age":59,"location":"Spencertown"}},{"attributes":{"name":"Miss Dora Hilll","age":33,"location":"Brownton"}},{"attributes":{"name":"Dr. Gilberto Sawayn V","age":46,"location":"New Herminia"}},{"attributes":{"name":"Kyra Goodwin","age":40,"location":"West Allis"}},{"attributes":{"name":"Mr. Sophia Lemke I","age":47,"location":"Aliviaville"}},{"attributes":{"name":"Keaton Farrell","age":32,"location":"South Claudia"}},{"attributes":{"name":"Louis Streich-Stanton","age":20,"location":"New Seantown"}},{"attributes":{"name":"Rita Tromp","age":37,"location":"Kautzerside"}},{"attributes":{"name":"Naomie Goyette","age":78,"location":"Fort Worth"}},{"attributes":{"name":"Oleta Grant","age":73,"location":"Myrtiefield"}},{"attributes":{"name":"Colten Bode","age":70,"location":"Fort Adrienne"}},{"attributes":{"name":"Wanda Lynch","age":42,"location":"North Pearl"}},{"attributes":{"name":"Bernard Haley","age":19,"location":"Bobbieview"}},{"attributes":{"name":"Jonathan Kilback MD","age":65,"location":"Vestamouth"}},{"attributes":{"name":"Patricia Hermann","age":30,"location":"San Mateo"}},{"attributes":{"name":"Ms. Ebba Orn","age":55,"location":"Gislasonchester"}},{"attributes":{"name":"Darren Parker","age":24,"location":"East Emmanuelle"}},{"attributes":{"name":"Alexa Kozey","age":29,"location":"Mayerview"}},{"attributes":{"name":"Warren Klein Sr.","age":76,"location":"Andreshaven"}},{"attributes":{"name":"Astrid Graham DDS","age":36,"location":"Niagara Falls"}},{"attributes":{"name":"Susana Thompson","age":37,"location":"Marlenfurt"}},{"attributes":{"name":"Clint Yundt-Kunde","age":55,"location":"Valerieville"}},{"attributes":{"name":"Hubert Ernser","age":65,"location":"New Domenicoshire"}},{"attributes":{"name":"Lee Kozey","age":57,"location":"Tinaborough"}},{"attributes":{"name":"Mae Wuckert","age":33,"location":"East Mariloutown"}},{"attributes":{"name":"Braeden O'Connell","age":32,"location":"Fort Creolaside"}},{"attributes":{"name":"Caden Reichert","age":46,"location":"VonRuedenport"}},{"attributes":{"name":"Carole Christiansen","age":20,"location":"Port Avaton"}},{"attributes":{"name":"Cameron Wuckert IV","age":73,"location":"Fort Candida"}},{"attributes":{"name":"Clifton Fritsch IV","age":55,"location":"Thousand Oaks"}},{"attributes":{"name":"Dr. Francis Brakus","age":31,"location":"Boscofield"}},{"attributes":{"name":"Israel Lehner","age":48,"location":"West Vadastead"}},{"attributes":{"name":"Sienna Weimann","age":21,"location":"South Krystina"}},{"attributes":{"name":"Leo Harvey","age":44,"location":"Lake Hillard"}},{"attributes":{"name":"Leon Johnson","age":49,"location":"Reingerberg"}},{"attributes":{"name":"Sam Bins","age":35,"location":"North Margie"}},{"attributes":{"name":"Pearl Effertz","age":25,"location":"Trantowchester"}},{"attributes":{"name":"Allan Crona","age":62,"location":"Melbourne"}},{"attributes":{"name":"Angie Mohr","age":39,"location":"Joshport"}},{"attributes":{"name":"Jeannie Buckridge","age":51,"location":"East Rosalindshire"}},{"attributes":{"name":"Ericka Walker-Hane","age":28,"location":"Odessa"}},{"attributes":{"name":"May Abshire","age":25,"location":"Huelsstead"}},{"attributes":{"name":"Jared Murphy","age":29,"location":"Simonischester"}},{"attributes":{"name":"Wilbert Kreiger","age":38,"location":"Rogahnworth"}},{"attributes":{"name":"Claire Steuber","age":56,"location":"Hesselchester"}},{"attributes":{"name":"Mr. Clark Dietrich IV","age":47,"location":"Brekkefield"}},{"attributes":{"name":"Marlon Greenholt Jr.","age":61,"location":"Columbus"}},{"attributes":{"name":"Enrique Robel","age":18,"location":"West Julianneberg"}},{"attributes":{"name":"Connie Ryan","age":56,"location":"West Katherinefurt"}},{"attributes":{"name":"Kristy Hammes III","age":20,"location":"West Mabel"}},{"attributes":{"name":"Miss Jarret Jast","age":63,"location":"Dickinsonworth"}},{"attributes":{"name":"Jody Dietrich","age":65,"location":"Fort Carmelastead"}},{"attributes":{"name":"Ms. Natasha Considine","age":51,"location":"North Ardella"}},{"attributes":{"name":"Catalina Kulas-Bednar","age":70,"location":"Kevinville"}},{"attributes":{"name":"Bryon Lind","age":40,"location":"Jaquelineberg"}},{"attributes":{"name":"Miranda Barton","age":76,"location":"Lake Hester"}},{"attributes":{"name":"Margaret Crooks","age":39,"location":"North Brielletown"}},{"attributes":{"name":"Helen West","age":54,"location":"Fort Alfonzo"}},{"attributes":{"name":"Drew Towne","age":53,"location":"East Birdiestad"}},{"attributes":{"name":"Sidney Jakubowski","age":62,"location":"Wilkinsonton"}},{"attributes":{"name":"Jaqueline Orn","age":61,"location":"Gottliebberg"}},{"attributes":{"name":"Rita Schaden","age":43,"location":"Russellville"}},{"attributes":{"name":"Mrs. Maymie Kautzer","age":67,"location":"West Bayleetown"}},{"attributes":{"name":"Rory Dicki V","age":26,"location":"Fort Kylemouth"}},{"attributes":{"name":"Dr. Dwayne Friesen-Rosenbaum","age":60,"location":"VonRuedenview"}},{"attributes":{"name":"Jerald Glover","age":31,"location":"Fort Estella"}},{"attributes":{"name":"Dr. Cornelius Kling","age":77,"location":"Sunnyvale"}},{"attributes":{"name":"Alison Bogan","age":41,"location":"South Darwin"}},{"attributes":{"name":"Mya Hermiston","age":22,"location":"Cornellberg"}},{"attributes":{"name":"Conrad Leannon","age":63,"location":"Conradbury"}},{"attributes":{"name":"Vinnie Howe","age":64,"location":"Leonoratown"}},{"attributes":{"name":"Morris Hettinger","age":41,"location":"South Jaqueline"}},{"attributes":{"name":"Muriel Jacobs","age":25,"location":"East Myrtisbury"}},{"attributes":{"name":"Vicki Wisoky II","age":26,"location":"Meganemouth"}},{"attributes":{"name":"Uriah Haag","age":66,"location":"West Dax"}},{"attributes":{"name":"Kaylee Kassulke-Gutkowski","age":35,"location":"Smithberg"}},{"attributes":{"name":"Miss Beau Altenwerth","age":62,"location":"New Ari"}},{"attributes":{"name":"Kaden Schowalter","age":51,"location":"Heaneyfort"}},{"attributes":{"name":"Mary Lindgren","age":73,"location":"New Leviburgh"}},{"attributes":{"name":"Darrion Abernathy DVM","age":70,"location":"Weissnatchester"}},{"attributes":{"name":"Wallace Mertz","age":29,"location":"New Larissastad"}},{"attributes":{"name":"Anna Kuhn DVM","age":47,"location":"Port Larry"}},{"attributes":{"name":"Eleanora Schuster","age":38,"location":"North Elizaborough"}},{"attributes":{"name":"Stacey Auer","age":39,"location":"Hamillhaven"}},{"attributes":{"name":"Owen Rath","age":52,"location":"Bradyland"}},{"attributes":{"name":"Kacey Schimmel","age":20,"location":"South Jabari"}},{"attributes":{"name":"Celia Vandervort","age":52,"location":"Faheycester"}},{"attributes":{"name":"Bob Von","age":28,"location":"Lake Chanelland"}},{"attributes":{"name":"Mrs. Laverna Quitzon PhD","age":51,"location":"Redwood City"}},{"attributes":{"name":"Charlene Carroll","age":27,"location":"Westhaven"}},{"attributes":{"name":"Emerson Hamill","age":33,"location":"Annalisehaven"}},{"attributes":{"name":"Anna Bailey PhD","age":54,"location":"Lake Daishafurt"}},{"attributes":{"name":"Georgia Pagac","age":48,"location":"Connellystead"}},{"attributes":{"name":"Maryam Grady","age":31,"location":"Schambergerfurt"}},{"attributes":{"name":"Mr. Bradley Koch","age":79,"location":"Fort Eleazarberg"}},{"attributes":{"name":"Marty Cruickshank","age":62,"location":"North Bethesda"}},{"attributes":{"name":"Joyce Skiles MD","age":72,"location":"Scottsdale"}},{"attributes":{"name":"Kayla Koepp","age":34,"location":"Elvieworth"}},{"attributes":{"name":"Mohammad Sanford-Schuppe","age":38,"location":"Legroschester"}},{"attributes":{"name":"Alton Torp III","age":64,"location":"West Michaela"}},{"attributes":{"name":"Conor Bogan-Auer V","age":75,"location":"Birmingham"}},{"attributes":{"name":"Evan Brakus","age":74,"location":"South Jessie"}},{"attributes":{"name":"Ollie Jerde I","age":24,"location":"Brooksfurt"}},{"attributes":{"name":"Gene Metz Sr.","age":35,"location":"Santa Clarita"}},{"attributes":{"name":"Beatrice Shanahan","age":38,"location":"Nelleboro"}},{"attributes":{"name":"Earl Weimann","age":54,"location":"Largo"}},{"attributes":{"name":"Dr. Maxine Johns","age":18,"location":"Ellenfield"}},{"attributes":{"name":"Felipe Dickinson","age":57,"location":"Barrowsland"}},{"attributes":{"name":"Mr. Joseph Spencer","age":66,"location":"Enochfield"}},{"attributes":{"name":"Clint Kovacek","age":22,"location":"Wehnerview"}},{"attributes":{"name":"Lester Stoltenberg","age":64,"location":"Denisland"}},{"attributes":{"name":"Jermaine Schuppe Jr.","age":71,"location":"Fort Willyview"}},{"attributes":{"name":"Elmer Hane","age":47,"location":"West Catherineborough"}},{"attributes":{"name":"Ellen Haag","age":73,"location":"St. Clair Shores"}},{"attributes":{"name":"Madisyn Mertz","age":26,"location":"Halvorsonborough"}},{"attributes":{"name":"Burley Wolf","age":28,"location":"Karaview"}},{"attributes":{"name":"Gerard Yundt I","age":66,"location":"Margate"}},{"attributes":{"name":"Joseph Pouros","age":20,"location":"Port Philipton"}},{"attributes":{"name":"Miles Runte","age":57,"location":"Raynormouth"}},{"attributes":{"name":"Ann Brakus","age":43,"location":"Fort Shayna"}},{"attributes":{"name":"Bella Stroman II","age":57,"location":"Homestead"}},{"attributes":{"name":"Brett Daniel","age":62,"location":"Hermanfurt"}},{"attributes":{"name":"Maryann Nolan","age":70,"location":"Monicaborough"}},{"attributes":{"name":"Marcia Lubowitz","age":75,"location":"St. Clair Shores"}},{"attributes":{"name":"Dr. Noemi Howe","age":29,"location":"Jacobsonchester"}},{"attributes":{"name":"Tressie Schoen","age":60,"location":"Rudolphboro"}},{"attributes":{"name":"Kristen Kessler","age":55,"location":"South Herminastad"}},{"attributes":{"name":"Nayeli DuBuque","age":47,"location":"Keyonfield"}},{"attributes":{"name":"Roslyn Volkman","age":56,"location":"South Lupe"}},{"attributes":{"name":"Pauline Gusikowski","age":38,"location":"Yonkers"}},{"attributes":{"name":"Mrs. Ronaldo Jenkins","age":46,"location":"Port Kaylee"}},{"attributes":{"name":"Kimberly Hagenes","age":57,"location":"Skileshaven"}},{"attributes":{"name":"Rigoberto Gislason","age":73,"location":"Port Julius"}},{"attributes":{"name":"Rickey Williamson","age":43,"location":"Aubreytown"}},{"attributes":{"name":"Ernestine Towne-Hermiston","age":25,"location":"Denesikburgh"}},{"attributes":{"name":"Rolando Hyatt","age":41,"location":"Nellahaven"}},{"attributes":{"name":"Hassan Boehm","age":68,"location":"Amyaburgh"}},{"attributes":{"name":"Roderick Rippin","age":70,"location":"Stephonfield"}},{"attributes":{"name":"Mr. Isabell Streich","age":31,"location":"Mackfort"}},{"attributes":{"name":"Katherine Yundt I","age":80,"location":"Buena Park"}},{"attributes":{"name":"Guadalupe Rodriguez","age":63,"location":"South Koleside"}},{"attributes":{"name":"Alicia Mertz","age":43,"location":"Blickmouth"}},{"attributes":{"name":"Ike Stroman","age":41,"location":"Aufderharview"}},{"attributes":{"name":"Kayleigh Bogan","age":24,"location":"West Hunter"}},{"attributes":{"name":"Robert Ritchie","age":21,"location":"North Evanberg"}},{"attributes":{"name":"Christina Will IV","age":45,"location":"Greenfelderfield"}},{"attributes":{"name":"Josie Brakus","age":43,"location":"Johannaworth"}},{"attributes":{"name":"Mrs. Brittany Waelchi","age":21,"location":"Ondrickachester"}},{"attributes":{"name":"Daniel Zulauf","age":66,"location":"Murfreesboro"}},{"attributes":{"name":"Clyde Pollich","age":39,"location":"Stuartmouth"}},{"attributes":{"name":"Lori Kuhic","age":76,"location":"North Meta"}},{"attributes":{"name":"Lindsay Turner","age":59,"location":"North Ritatown"}},{"attributes":{"name":"Clint Osinski","age":50,"location":"North Camrynborough"}},{"attributes":{"name":"Tracey Streich","age":35,"location":"Hauckhaven"}},{"attributes":{"name":"Ms. Clara Bradtke","age":42,"location":"Lake Hallieburgh"}},{"attributes":{"name":"Miss Porter Beer","age":31,"location":"Ardenville"}},{"attributes":{"name":"Bobby Ullrich","age":36,"location":"Collinscester"}},{"attributes":{"name":"Rudy Heidenreich-Franecki","age":25,"location":"North Caleighburgh"}},{"attributes":{"name":"Pauline Ward","age":42,"location":"Schoenhaven"}},{"attributes":{"name":"Lamar Volkman","age":31,"location":"East Kendra"}},{"attributes":{"name":"Nichole Murray","age":27,"location":"Port Randi"}},{"attributes":{"name":"Dean Wiegand","age":44,"location":"Palmdale"}},{"attributes":{"name":"Brody Heller","age":22,"location":"Port Grady"}},{"attributes":{"name":"Spencer Kuhic","age":70,"location":"Montanafort"}},{"attributes":{"name":"Jeanie Graham","age":75,"location":"Lake Margarettstead"}},{"attributes":{"name":"Linda Kuvalis PhD","age":35,"location":"Aliciaville"}},{"attributes":{"name":"Vicky Gislason","age":64,"location":"Kovacekland"}},{"attributes":{"name":"Nora Hintz Sr.","age":54,"location":"Watsonville"}},{"attributes":{"name":"Vivian Zulauf","age":57,"location":"South Wainohaven"}},{"attributes":{"name":"Breana Greenholt","age":75,"location":"Fort Modesto"}},{"attributes":{"name":"Ms. Brian Russel","age":19,"location":"Macejkovicboro"}},{"attributes":{"name":"Uriah Toy","age":54,"location":"Jerdeside"}},{"attributes":{"name":"Dr. Josefa Carroll","age":23,"location":"Irvine"}},{"attributes":{"name":"Deanna Trantow-Yundt","age":71,"location":"Winfieldstead"}},{"attributes":{"name":"Laverne Sanford","age":22,"location":"Lake Beverly"}},{"attributes":{"name":"Dallas Welch","age":57,"location":"New Doraton"}},{"attributes":{"name":"Roel Johnson","age":44,"location":"Mentor"}},{"attributes":{"name":"Ricky Bins","age":39,"location":"North Jenifer"}},{"attributes":{"name":"Julian Abshire","age":45,"location":"Fort Carolynfort"}},{"attributes":{"name":"Nadine Hermiston","age":35,"location":"Dwightfort"}},{"attributes":{"name":"Mrs. Regina Friesen","age":80,"location":"South Lornafort"}},{"attributes":{"name":"Estrella Bartoletti","age":79,"location":"Collinsberg"}},{"attributes":{"name":"Aurore Purdy","age":24,"location":"North Lexus"}},{"attributes":{"name":"Estrella Hermann","age":55,"location":"North Jordon"}},{"attributes":{"name":"Candelario Reichert","age":37,"location":"Klockoville"}},{"attributes":{"name":"Rex Hills","age":31,"location":"Gabetown"}},{"attributes":{"name":"Adrienne Kuphal PhD","age":75,"location":"Mooreburgh"}},{"attributes":{"name":"Beth Cronin","age":78,"location":"East Trisha"}},{"attributes":{"name":"Solon Hayes","age":76,"location":"Lake Jordy"}},{"attributes":{"name":"Jessica Welch PhD","age":47,"location":"Caylahaven"}},{"attributes":{"name":"Mr. Aubrey Collier","age":56,"location":"Andyboro"}},{"attributes":{"name":"Arthur Schumm-Price","age":46,"location":"Antoniatown"}},{"attributes":{"name":"Kristine Hilpert","age":41,"location":"Memphis"}},{"attributes":{"name":"Patrick Denesik","age":22,"location":"Bartellshire"}},{"attributes":{"name":"Joanna Moore","age":28,"location":"Gutkowskiburgh"}},{"attributes":{"name":"Judith Miller","age":62,"location":"Port Tyshawn"}},{"attributes":{"name":"Shannon Marvin-Schuppe","age":59,"location":"University"}},{"attributes":{"name":"Charlie Ortiz","age":42,"location":"Athens-Clarke County"}},{"attributes":{"name":"Micah Halvorson","age":69,"location":"Thaliafurt"}},{"attributes":{"name":"Gail Kilback","age":78,"location":"Fort Carmencester"}},{"attributes":{"name":"Theresa Ward","age":69,"location":"Lake Lenorestad"}},{"attributes":{"name":"Nellie Schmitt","age":19,"location":"Fort Ambrose"}},{"attributes":{"name":"Peter Collier","age":64,"location":"North Declan"}},{"attributes":{"name":"Melody Koepp","age":24,"location":"North Luzview"}},{"attributes":{"name":"Kris Mayert","age":71,"location":"Rochester Hills"}},{"attributes":{"name":"Celestine Collins MD","age":33,"location":"Cristshire"}},{"attributes":{"name":"Clementina Zemlak","age":56,"location":"Murrieta"}},{"attributes":{"name":"Irvin Dickinson","age":69,"location":"Port Jocelyn"}},{"attributes":{"name":"Lance Altenwerth","age":20,"location":"Perryburgh"}},{"attributes":{"name":"Irvin Conn","age":65,"location":"Eudorafort"}},{"attributes":{"name":"Elisa Grant","age":31,"location":"North Jean"}},{"attributes":{"name":"Dr. Jovany Krajcik","age":33,"location":"Lake Julius"}},{"attributes":{"name":"Pam Lindgren","age":47,"location":"Heaneyboro"}},{"attributes":{"name":"Claude Von","age":67,"location":"North Melody"}},{"attributes":{"name":"Mrs. Ed Jerde","age":52,"location":"East Elsa"}},{"attributes":{"name":"Martin Stoltenberg","age":59,"location":"Rogers"}},{"attributes":{"name":"Erin Torphy","age":36,"location":"Brownfield"}},{"attributes":{"name":"Shirley Leuschke","age":65,"location":"Haverhill"}},{"attributes":{"name":"Becky Reilly MD","age":30,"location":"Rathborough"}},{"attributes":{"name":"Franklin Hessel","age":36,"location":"Erdmanmouth"}},{"attributes":{"name":"Judy Swaniawski","age":32,"location":"Marianeside"}},{"attributes":{"name":"Harry Gulgowski","age":41,"location":"Barneyworth"}},{"attributes":{"name":"Murl Stroman PhD","age":59,"location":"West Erniebury"}},{"attributes":{"name":"Braeden Ortiz","age":54,"location":"Jarredchester"}},{"attributes":{"name":"Levi West Sr.","age":31,"location":"Morissettechester"}},{"attributes":{"name":"Joe O'Hara","age":62,"location":"Katherinefield"}},{"attributes":{"name":"Ms. Colleen Casper","age":78,"location":"Rebeccaville"}},{"attributes":{"name":"Kiana Kautzer","age":51,"location":"Seattle"}},{"attributes":{"name":"Geoffrey Reynolds","age":35,"location":"East Marianshire"}},{"attributes":{"name":"Carlton Lueilwitz","age":45,"location":"Garfieldberg"}},{"attributes":{"name":"Gustavo Mosciski-Johns","age":26,"location":"West Marisaberg"}},{"attributes":{"name":"Kolby Quitzon","age":20,"location":"West Edmund"}},{"attributes":{"name":"Krista Reichert","age":61,"location":"East Cloyd"}},{"attributes":{"name":"Stella Lubowitz PhD","age":67,"location":"Port Elwynland"}},{"attributes":{"name":"Bryan Buckridge","age":62,"location":"Castle Rock"}},{"attributes":{"name":"Marshall Jast-Quigley","age":61,"location":"Runteview"}},{"attributes":{"name":"Hester Rempel","age":54,"location":"East Floridaside"}},{"attributes":{"name":"Gary Bradtke","age":62,"location":"Aubreecester"}},{"attributes":{"name":"Marlen Tremblay-Harber","age":65,"location":"South Travischester"}},{"attributes":{"name":"Andrew Hilpert","age":26,"location":"South Kraig"}},{"attributes":{"name":"Mrs. Faith Corwin","age":80,"location":"North Aronstead"}},{"attributes":{"name":"Marta Homenick","age":79,"location":"Terre Haute"}},{"attributes":{"name":"Ms. Lynda Rolfson","age":40,"location":"Esperanzashire"}},{"attributes":{"name":"Lynne Ledner","age":76,"location":"New Tierra"}},{"attributes":{"name":"Tasha Spinka","age":73,"location":"Barrowsborough"}},{"attributes":{"name":"Mathew Labadie","age":55,"location":"Rogahnfort"}},{"attributes":{"name":"Matthew Gleason","age":35,"location":"West Yazminborough"}},{"attributes":{"name":"Abbigail Tillman","age":72,"location":"Wildermanton"}},{"attributes":{"name":"Elsie Wiegand","age":59,"location":"West Imogeneport"}},{"attributes":{"name":"Laura Rosenbaum I","age":68,"location":"Fort Kalefurt"}},{"attributes":{"name":"Leroy Farrell","age":63,"location":"Hendersonboro"}},{"attributes":{"name":"Felix O'Reilly","age":72,"location":"New Dasiaview"}},{"attributes":{"name":"Carl Denesik","age":42,"location":"North Giafield"}},{"attributes":{"name":"Allison Boehm","age":59,"location":"Wuckertburgh"}},{"attributes":{"name":"Kaia Hermiston","age":22,"location":"Bell Gardens"}},{"attributes":{"name":"Jonathan Nitzsche","age":22,"location":"Caguas"}},{"attributes":{"name":"Mr. Ricardo Stanton-Ernser","age":70,"location":"Elizaton"}},{"attributes":{"name":"Adalberto Lebsack","age":41,"location":"East Karinaland"}},{"attributes":{"name":"Frank Will","age":56,"location":"Monahancester"}},{"attributes":{"name":"Kayleigh Hettinger","age":42,"location":"Armstrongshire"}},{"attributes":{"name":"Bryon Graham","age":75,"location":"Stoltenbergfurt"}},{"attributes":{"name":"Jean Kautzer","age":36,"location":"Lake Lue"}},{"attributes":{"name":"Dallas Beatty","age":44,"location":"Medford"}},{"attributes":{"name":"Candice Donnelly","age":27,"location":"Lacey"}},{"attributes":{"name":"Roman Waelchi Sr.","age":50,"location":"Ornborough"}},{"attributes":{"name":"Bud Grady DDS","age":70,"location":"North Little Rock"}},{"attributes":{"name":"Lydia Prosacco","age":62,"location":"Baytown"}},{"attributes":{"name":"Leonard Russel","age":18,"location":"Kettering"}},{"attributes":{"name":"Katherine Wiegand","age":55,"location":"Herbertton"}},{"attributes":{"name":"Thomas Zemlak","age":27,"location":"West Jarred"}},{"attributes":{"name":"Courtney Strosin","age":74,"location":"Lake Kevon"}},{"attributes":{"name":"Vickie Reichert","age":76,"location":"Tristonstead"}},{"attributes":{"name":"Quincy Breitenberg","age":75,"location":"West Brenna"}},{"attributes":{"name":"Freeda Luettgen PhD","age":65,"location":"Cormierfort"}},{"attributes":{"name":"Andres Johnston IV","age":34,"location":"New Corineworth"}},{"attributes":{"name":"Madaline Kerluke II","age":60,"location":"New Waltoncester"}},{"attributes":{"name":"Shaylee Hartmann MD","age":76,"location":"South Howellcester"}},{"attributes":{"name":"Steven Blanda","age":52,"location":"Bodecester"}},{"attributes":{"name":"Denis O'Keefe","age":57,"location":"Newport News"}},{"attributes":{"name":"Millie Schaden","age":35,"location":"Lake Foster"}},{"attributes":{"name":"Jay Tillman","age":25,"location":"Ramonacester"}},{"attributes":{"name":"Mr. Jermaine Wiza","age":42,"location":"Lavonshire"}},{"attributes":{"name":"Kane Kris","age":59,"location":"Billings"}},{"attributes":{"name":"Mr. John Mayert","age":40,"location":"North Herman"}},{"attributes":{"name":"Jazmyne Wiegand","age":55,"location":"Schinnerfurt"}},{"attributes":{"name":"Elva Nolan Sr.","age":46,"location":"Lake Torreyfort"}},{"attributes":{"name":"Jamar Hirthe","age":61,"location":"West Cordell"}},{"attributes":{"name":"Drake Sauer MD","age":58,"location":"Carsonstad"}},{"attributes":{"name":"Robyn Mueller","age":29,"location":"Meridian"}},{"attributes":{"name":"Malinda Sporer","age":36,"location":"West Alizefurt"}},{"attributes":{"name":"Velma Prohaska","age":36,"location":"Port Samsonton"}},{"attributes":{"name":"Joanny Morar","age":70,"location":"South Tyshawn"}},{"attributes":{"name":"Ms. Lucy Hills","age":71,"location":"South Osvaldo"}},{"attributes":{"name":"Krystal Green","age":67,"location":"Shyanneville"}},{"attributes":{"name":"Milan Stanton","age":66,"location":"Jonesstad"}},{"attributes":{"name":"Vivian Marquardt","age":29,"location":"Fort Destany"}},{"attributes":{"name":"Verla Schaefer III","age":73,"location":"Pharr"}},{"attributes":{"name":"Ms. Gayle Lesch","age":53,"location":"DuBuquehaven"}},{"attributes":{"name":"Bernie Kovacek","age":50,"location":"Winnifredberg"}},{"attributes":{"name":"Dr. Rodney Runolfsdottir","age":70,"location":"New Jessicafurt"}},{"attributes":{"name":"Keagan Reichel","age":41,"location":"Pascaleworth"}},{"attributes":{"name":"Skyla Larson","age":23,"location":"East Stephaniehaven"}},{"attributes":{"name":"Flo Collier","age":59,"location":"Ignacioborough"}},{"attributes":{"name":"Magdalena Will","age":63,"location":"Lake Zoey"}},{"attributes":{"name":"Mr. Alfonso Rice","age":52,"location":"Bartonfield"}},{"attributes":{"name":"Luz Farrell","age":29,"location":"Darrionhaven"}},{"attributes":{"name":"Houston Johnson","age":62,"location":"Owensboro"}},{"attributes":{"name":"Avis Rath","age":18,"location":"North Adrienton"}},{"attributes":{"name":"Cassandre Gleason","age":80,"location":"Fort Vadaville"}},{"attributes":{"name":"Shannon Johnston","age":44,"location":"Abrahamburgh"}},{"attributes":{"name":"Alexzander Stiedemann","age":22,"location":"Zoilaville"}},{"attributes":{"name":"Cordell Kiehn","age":51,"location":"Fort Jamelbury"}},{"attributes":{"name":"Mercedes Nolan-Pollich","age":61,"location":"Novato"}},{"attributes":{"name":"Larue Jacobson","age":69,"location":"Hilpertfurt"}},{"attributes":{"name":"Leland Gerhold","age":39,"location":"Fort Shyanne"}},{"attributes":{"name":"Valentin Volkman","age":30,"location":"New Adrain"}},{"attributes":{"name":"Kristin Heaney III","age":26,"location":"East Marianemouth"}},{"attributes":{"name":"Sheridan Wintheiser","age":54,"location":"Cristworth"}},{"attributes":{"name":"Jacinthe Hermann","age":24,"location":"Greenwood"}},{"attributes":{"name":"Aleen Kiehn","age":61,"location":"New Jon"}},{"attributes":{"name":"Amely Braun","age":38,"location":"Carmichael"}},{"attributes":{"name":"Traci Moen","age":65,"location":"Elenorafurt"}},{"attributes":{"name":"Quinton Dooley","age":30,"location":"Hyattport"}},{"attributes":{"name":"Lenore Heaney","age":78,"location":"East Clovis"}},{"attributes":{"name":"Marjolaine Heller","age":24,"location":"Lake Prudenceworth"}},{"attributes":{"name":"Lynda Gottlieb","age":36,"location":"Evertland"}},{"attributes":{"name":"Kristie Collins","age":32,"location":"Bryan"}},{"attributes":{"name":"Lillian McGlynn-Berge","age":62,"location":"Lake Marquisestad"}},{"attributes":{"name":"Alyssa Connelly-Daniel","age":59,"location":"Reichelborough"}},{"attributes":{"name":"Brandi Hoeger","age":62,"location":"Kayceeview"}},{"attributes":{"name":"Lauren Schimmel","age":35,"location":"Yuba City"}},{"attributes":{"name":"Wilson Zboncak","age":33,"location":"Anikaport"}},{"attributes":{"name":"Cleta Lindgren","age":63,"location":"Heathcotefort"}},{"attributes":{"name":"Duane Bernhard","age":75,"location":"Lake Sabrynaside"}},{"attributes":{"name":"Ms. Leah Kunde","age":75,"location":"Lake Emilianofort"}},{"attributes":{"name":"Jamison Kris","age":71,"location":"Gracieworth"}},{"attributes":{"name":"Terrell Russel I","age":38,"location":"Bethstead"}},{"attributes":{"name":"Camille Runolfsdottir","age":18,"location":"Harveyfurt"}},{"attributes":{"name":"Mr. Lorenzo Sawayn","age":19,"location":"Wehnerfield"}},{"attributes":{"name":"Martin Purdy","age":66,"location":"Bauchhaven"}},{"attributes":{"name":"Laurence Gusikowski","age":52,"location":"The Hammocks"}},{"attributes":{"name":"Jason Emard","age":20,"location":"Berwyn"}},{"attributes":{"name":"Ronaldo Lehner","age":63,"location":"Independence"}},{"attributes":{"name":"Payton Ernser","age":77,"location":"Ignatiusland"}},{"attributes":{"name":"Miranda Durgan","age":34,"location":"Alexandracester"}},{"attributes":{"name":"Jason Lockman III","age":49,"location":"North Ashley"}},{"attributes":{"name":"Dean Mayer","age":27,"location":"Fort Eduardo"}},{"attributes":{"name":"Kirsten Haag","age":40,"location":"Smithchester"}},{"attributes":{"name":"Gerard Pfannerstill","age":64,"location":"Brainchester"}},{"attributes":{"name":"Matthew Stiedemann","age":70,"location":"North Felicita"}},{"attributes":{"name":"Clyde Gibson","age":25,"location":"North Jaydon"}},{"attributes":{"name":"Guillermo Heathcote","age":42,"location":"Lake Wilford"}},{"attributes":{"name":"Sylvester Ebert","age":35,"location":"New Leliafort"}},{"attributes":{"name":"Hattie Jenkins","age":75,"location":"South Kimberlybury"}},{"attributes":{"name":"Damon Kuhlman","age":30,"location":"Kundefurt"}},{"attributes":{"name":"Zelma Altenwerth Jr.","age":40,"location":"East Eddie"}},{"attributes":{"name":"Santos Gerhold","age":76,"location":"Khalidton"}},{"attributes":{"name":"Charlene Wintheiser","age":22,"location":"Port Denisfurt"}},{"attributes":{"name":"Pam Harris","age":18,"location":"Rowlett"}},{"attributes":{"name":"Elmer Jacobs-Terry","age":18,"location":"Plantation"}},{"attributes":{"name":"Miss Dianna Bosco","age":48,"location":"Fort Raina"}},{"attributes":{"name":"Ricky Hermiston","age":67,"location":"West Coltburgh"}},{"attributes":{"name":"Herman Fahey","age":72,"location":"New Jayde"}},{"attributes":{"name":"Belle McLaughlin","age":49,"location":"Queenberg"}},{"attributes":{"name":"Dr. Marc Ullrich Sr.","age":50,"location":"Armstrongmouth"}},{"attributes":{"name":"Michael Steuber","age":47,"location":"Kodytown"}},{"attributes":{"name":"Krista Predovic","age":62,"location":"Alexandrofield"}},{"attributes":{"name":"John Johnston-Paucek","age":26,"location":"Lubbock"}},{"attributes":{"name":"Nina Gutmann III","age":71,"location":"South Audie"}},{"attributes":{"name":"Beatrice Breitenberg","age":34,"location":"Jackelinestad"}},{"attributes":{"name":"Jeff Kemmer","age":18,"location":"Schusterboro"}},{"attributes":{"name":"Santos Gerlach","age":39,"location":"Daltonborough"}},{"attributes":{"name":"Arthur Marquardt","age":51,"location":"Bergestead"}},{"attributes":{"name":"Emie Kling","age":24,"location":"New Aracely"}},{"attributes":{"name":"Roberta Parisian","age":70,"location":"Fort Martyfort"}},{"attributes":{"name":"Connie Hills","age":29,"location":"New Henryport"}},{"attributes":{"name":"Jenna Stokes","age":45,"location":"Leuschkestad"}},{"attributes":{"name":"Warren Dare","age":38,"location":"Calebworth"}},{"attributes":{"name":"Ethel Wunsch I","age":44,"location":"Port Rogertown"}},{"attributes":{"name":"Nicole Green","age":33,"location":"East Winifredfield"}},{"attributes":{"name":"Theodora Smith","age":79,"location":"Wehnerland"}},{"attributes":{"name":"Maurine Schinner","age":26,"location":"Alhambra"}},{"attributes":{"name":"Ms. Rosalie Little","age":68,"location":"Fremont"}},{"attributes":{"name":"Irving Blanda","age":63,"location":"West Elmerland"}},{"attributes":{"name":"Alberta Kshlerin","age":44,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Aubrey Miller","age":72,"location":"Odellshire"}},{"attributes":{"name":"Seamus Heidenreich","age":58,"location":"West Abigayleland"}},{"attributes":{"name":"Mikayla Tillman","age":18,"location":"Edmundfurt"}},{"attributes":{"name":"Armando Schiller","age":43,"location":"Fort Shyann"}},{"attributes":{"name":"Peyton Weber","age":30,"location":"Port Favianview"}},{"attributes":{"name":"Rolando Runolfsson","age":35,"location":"Greenville"}},{"attributes":{"name":"Miss Aletha Weimann","age":59,"location":"Kaciestad"}},{"attributes":{"name":"Cecilia Dickinson IV","age":77,"location":"Franeckiton"}},{"attributes":{"name":"Lillie Mante","age":64,"location":"Kirlinberg"}},{"attributes":{"name":"Erin Mills","age":59,"location":"New Joelleland"}},{"attributes":{"name":"Vicky Torphy","age":71,"location":"North Clementinastad"}},{"attributes":{"name":"Jean Konopelski","age":65,"location":"Adeleberg"}},{"attributes":{"name":"Tracy Maggio","age":19,"location":"Clarksville"}},{"attributes":{"name":"Alvina Lubowitz","age":53,"location":"Bartside"}},{"attributes":{"name":"Dr. Jesse Lockman","age":24,"location":"Mesquite"}},{"attributes":{"name":"Lucas Rippin-Schowalter","age":64,"location":"Cordiaton"}},{"attributes":{"name":"Louvenia Kemmer-Hagenes","age":55,"location":"New Rodrigo"}},{"attributes":{"name":"Melba Ruecker","age":42,"location":"San Diego"}},{"attributes":{"name":"Darrin Durgan","age":63,"location":"Brentview"}},{"attributes":{"name":"Judy Stanton","age":44,"location":"Rhodachester"}},{"attributes":{"name":"Mrs. Zetta Mayer Sr.","age":27,"location":"Ignatiuschester"}},{"attributes":{"name":"Ricky Fahey","age":74,"location":"Treutelchester"}},{"attributes":{"name":"Murphy Leffler III","age":65,"location":"Lenoraborough"}},{"attributes":{"name":"Jerald Veum","age":66,"location":"East Angie"}},{"attributes":{"name":"Cecile Botsford","age":30,"location":"Yeseniastad"}},{"attributes":{"name":"Milan Cormier","age":37,"location":"New Zoe"}},{"attributes":{"name":"Sam Dibbert","age":61,"location":"Port Viva"}},{"attributes":{"name":"Theodore Zulauf","age":63,"location":"Lake Cielocester"}},{"attributes":{"name":"Mr. Andre Nikolaus DVM","age":52,"location":"Lake Onieborough"}},{"attributes":{"name":"Lynn Hagenes-Simonis","age":78,"location":"Rodrigoburgh"}},{"attributes":{"name":"Rey Swift","age":47,"location":"Gunnerstad"}},{"attributes":{"name":"Ricardo Swift","age":53,"location":"Fort Armandtown"}},{"attributes":{"name":"Thomas Lemke","age":61,"location":"Padbergport"}},{"attributes":{"name":"Mae Schmidt Jr.","age":59,"location":"West Newell"}},{"attributes":{"name":"Mae Moen V","age":75,"location":"Berylstead"}},{"attributes":{"name":"Alex Mante","age":44,"location":"West Burnicechester"}},{"attributes":{"name":"Rufus Kuhlman","age":40,"location":"Schneiderchester"}},{"attributes":{"name":"Kiana Feeney Jr.","age":71,"location":"Port Hershel"}},{"attributes":{"name":"Marlene Luettgen","age":66,"location":"East Candelario"}},{"attributes":{"name":"Johnathan Bartell-Marks","age":59,"location":"Kuhnworth"}},{"attributes":{"name":"Marcelle Denesik","age":45,"location":"Lake Gerdatown"}},{"attributes":{"name":"Freeman Jacobi I","age":43,"location":"New Carlee"}},{"attributes":{"name":"Mr. Timmy Terry","age":71,"location":"Reynoldsside"}},{"attributes":{"name":"Waino Davis","age":44,"location":"Lake Shayleestad"}},{"attributes":{"name":"Bertha Ward","age":77,"location":"Funkside"}},{"attributes":{"name":"Lori Ruecker","age":50,"location":"East Effiebury"}},{"attributes":{"name":"Tim Conroy","age":48,"location":"West Jonathan"}},{"attributes":{"name":"Robbie Wisoky","age":64,"location":"Manteca"}},{"attributes":{"name":"Deven Morar","age":65,"location":"Schummberg"}},{"attributes":{"name":"Dr. Owen Paucek","age":67,"location":"Lenorestead"}},{"attributes":{"name":"Olive Smith","age":37,"location":"Hillsberg"}},{"attributes":{"name":"Bryon Cormier","age":28,"location":"Marlinfurt"}},{"attributes":{"name":"Esther Wisoky","age":18,"location":"Angelafurt"}},{"attributes":{"name":"Leigh Deckow","age":18,"location":"New Briaport"}},{"attributes":{"name":"Katrina Johnston","age":18,"location":"Ellicott City"}},{"attributes":{"name":"Heather Bruen","age":44,"location":"Lake Kenyonshire"}},{"attributes":{"name":"Alan VonRueden","age":61,"location":"East Rodrickworth"}},{"attributes":{"name":"Raegan Moore","age":76,"location":"Fort Van"}},{"attributes":{"name":"Ken Herzog","age":30,"location":"Orinstad"}},{"attributes":{"name":"Leon Cremin","age":65,"location":"Rogahnside"}},{"attributes":{"name":"Heath Johnson","age":39,"location":"North Gabriella"}},{"attributes":{"name":"Carissa Lueilwitz","age":48,"location":"Bartonbury"}},{"attributes":{"name":"Marian Wolf MD","age":34,"location":"State College"}},{"attributes":{"name":"Joanny Ritchie","age":24,"location":"Ankundingfort"}},{"attributes":{"name":"Stefan Ritchie","age":77,"location":"South Millerboro"}},{"attributes":{"name":"Earnestine Parisian","age":76,"location":"Ritchieville"}},{"attributes":{"name":"Mrs. Mercedes Greenholt","age":32,"location":"Sammamish"}},{"attributes":{"name":"Skye Hodkiewicz","age":20,"location":"Kerlukeboro"}},{"attributes":{"name":"Dale Bergstrom","age":25,"location":"Lake Kristian"}},{"attributes":{"name":"Ms. Gaetano Smitham","age":61,"location":"Battle Creek"}},{"attributes":{"name":"Brent Parker","age":40,"location":"Emmerichtown"}},{"attributes":{"name":"Damon Tromp","age":33,"location":"West Hilma"}},{"attributes":{"name":"Evan Fritsch","age":73,"location":"Fort Samirstead"}},{"attributes":{"name":"Tonya Heidenreich","age":34,"location":"Syracuse"}},{"attributes":{"name":"Rudy Moen","age":48,"location":"Robbstad"}},{"attributes":{"name":"Tillman Kovacek","age":52,"location":"Fayetteville"}},{"attributes":{"name":"Dr. Luis Vandervort V","age":50,"location":"Lebsackview"}},{"attributes":{"name":"Aron Gerlach","age":34,"location":"New Jerroldville"}},{"attributes":{"name":"Colton Hintz","age":29,"location":"White Plains"}},{"attributes":{"name":"Rogelio Davis","age":18,"location":"Adelestead"}},{"attributes":{"name":"Russ Klocko","age":70,"location":"Strosinland"}},{"attributes":{"name":"Melanie Doyle","age":76,"location":"Port Hilarioton"}},{"attributes":{"name":"Tina Barrows","age":78,"location":"North Danielaside"}},{"attributes":{"name":"Clinton Boehm","age":49,"location":"New Skylarbury"}},{"attributes":{"name":"Lonnie Blick","age":77,"location":"New Pietro"}},{"attributes":{"name":"Benjamin Ullrich","age":30,"location":"Port Spencer"}},{"attributes":{"name":"Jeramy Mitchell","age":51,"location":"South Maximillianstead"}},{"attributes":{"name":"Ms. Milo Lind","age":56,"location":"Alvinaland"}},{"attributes":{"name":"Andrea Weber","age":37,"location":"Grand Prairie"}},{"attributes":{"name":"Lynette MacGyver","age":72,"location":"Savannah"}},{"attributes":{"name":"Taurean Wintheiser","age":31,"location":"Fort Bradlytown"}},{"attributes":{"name":"Mr. Phil Koepp-Marquardt","age":20,"location":"Mosciskiville"}},{"attributes":{"name":"Evan Durgan","age":42,"location":"Ashleyton"}},{"attributes":{"name":"Lynda Hilpert DDS","age":66,"location":"Chesterfield"}},{"attributes":{"name":"Emma Fisher","age":22,"location":"Bartellberg"}},{"attributes":{"name":"Dr. Aubrey Wilkinson DDS","age":26,"location":"Los Angeles"}},{"attributes":{"name":"Brendan Hilpert","age":60,"location":"East Lessieview"}},{"attributes":{"name":"Theresia Kub","age":19,"location":"Feeneyfield"}},{"attributes":{"name":"Jaiden Bogan","age":31,"location":"New Ezekiel"}},{"attributes":{"name":"Alberta Weissnat","age":62,"location":"East Fredericview"}},{"attributes":{"name":"Mr. Daryl Lakin","age":58,"location":"Rennerfort"}},{"attributes":{"name":"Alvera Wolf","age":40,"location":"Hellenfurt"}},{"attributes":{"name":"Cali Berge","age":27,"location":"Baumbachshire"}},{"attributes":{"name":"Dr. Marlene Carter DVM","age":74,"location":"South Reynoldstead"}},{"attributes":{"name":"Pamela Glover","age":38,"location":"Daltonborough"}},{"attributes":{"name":"Miss Clifford Cormier","age":38,"location":"Lake Lucinda"}},{"attributes":{"name":"Lorene Pfeffer","age":73,"location":"Harrisburg"}},{"attributes":{"name":"Jimmy Kub V","age":19,"location":"Schenectady"}},{"attributes":{"name":"Harold Harris","age":68,"location":"South Bradenside"}},{"attributes":{"name":"Elizabeth Hettinger","age":75,"location":"Christastead"}},{"attributes":{"name":"Dr. Charlene Klocko","age":33,"location":"Ryleighbury"}},{"attributes":{"name":"Chester Witting","age":71,"location":"New Gerda"}},{"attributes":{"name":"James Breitenberg","age":55,"location":"North Melissaville"}},{"attributes":{"name":"Jaqueline Toy II","age":75,"location":"Rocklin"}},{"attributes":{"name":"Harriet Weissnat","age":61,"location":"Muellerland"}},{"attributes":{"name":"Eugene Smith","age":68,"location":"Sterling Heights"}},{"attributes":{"name":"Beth Kreiger","age":66,"location":"East Ruby"}},{"attributes":{"name":"Rochelle Purdy","age":38,"location":"South Rashad"}},{"attributes":{"name":"Mariane Rice","age":69,"location":"West Hartford"}},{"attributes":{"name":"Johnathon Glover","age":37,"location":"South Lonzo"}},{"attributes":{"name":"Ms. Haylee Hagenes","age":41,"location":"South Berneice"}},{"attributes":{"name":"Leticia Rolfson","age":42,"location":"Hanford"}},{"attributes":{"name":"Joan Welch I","age":77,"location":"Londonview"}},{"attributes":{"name":"Mrs. Faith Barrows","age":18,"location":"New Rodrigostead"}},{"attributes":{"name":"Pierce Gleason","age":32,"location":"New Nash"}},{"attributes":{"name":"Olivia Cummings","age":69,"location":"Redwood City"}},{"attributes":{"name":"Noemy Veum","age":54,"location":"West Colemouth"}},{"attributes":{"name":"Carlos Kling","age":56,"location":"D'Amorefort"}},{"attributes":{"name":"Deven Crona Sr.","age":46,"location":"Port Osborne"}},{"attributes":{"name":"Gerald Simonis","age":66,"location":"Lake Kareemside"}},{"attributes":{"name":"Richard Abernathy","age":36,"location":"Carachester"}},{"attributes":{"name":"Gerardo Dibbert","age":26,"location":"Fort Hunterland"}},{"attributes":{"name":"Dr. Dwight Roberts","age":20,"location":"West Abnerstad"}},{"attributes":{"name":"Thomas Smitham","age":66,"location":"South Chrisstead"}},{"attributes":{"name":"Seth Greenfelder","age":70,"location":"Port Francis"}},{"attributes":{"name":"Mervin Macejkovic-Crooks","age":18,"location":"New Glen"}},{"attributes":{"name":"Owen McGlynn","age":38,"location":"Bryceworth"}},{"attributes":{"name":"Albina Wiegand","age":31,"location":"Providence"}},{"attributes":{"name":"Cordell Kiehn DDS","age":55,"location":"Durham"}},{"attributes":{"name":"Julie McKenzie","age":70,"location":"Schneiderberg"}},{"attributes":{"name":"Kevin Kuhlman V","age":35,"location":"Jackieton"}},{"attributes":{"name":"Evert Schmidt","age":42,"location":"North Webster"}},{"attributes":{"name":"Santiago Daniel","age":69,"location":"Port Deltastad"}},{"attributes":{"name":"Andres Jones","age":71,"location":"Jackson"}},{"attributes":{"name":"Paul Fay III","age":68,"location":"South Verner"}},{"attributes":{"name":"Estella Schultz","age":39,"location":"South Conorburgh"}},{"attributes":{"name":"Tod Thompson-Braun","age":42,"location":"East Willaview"}},{"attributes":{"name":"Thora Howe","age":65,"location":"Kiehnburgh"}},{"attributes":{"name":"Howard Harris II","age":48,"location":"West Jaiden"}},{"attributes":{"name":"Dominic Wolff","age":52,"location":"Kaelynberg"}},{"attributes":{"name":"Neoma Keeling","age":48,"location":"West Hubert"}},{"attributes":{"name":"Rosemary Halvorson","age":19,"location":"Schmittstead"}},{"attributes":{"name":"Darren Beier-Schuppe","age":71,"location":"Dexterfurt"}},{"attributes":{"name":"Aida Sporer","age":77,"location":"Cheyannestead"}},{"attributes":{"name":"Peter Maggio","age":51,"location":"Fort Lavonne"}},{"attributes":{"name":"Jose McCullough I","age":76,"location":"Bayonne"}},{"attributes":{"name":"Clayton O'Connell","age":69,"location":"Medford"}},{"attributes":{"name":"Jarrett Hermiston","age":51,"location":"Anjaliview"}},{"attributes":{"name":"Greg Cole DDS","age":64,"location":"Ziemannbury"}},{"attributes":{"name":"Ora Emard","age":23,"location":"Fort Rickeyshire"}},{"attributes":{"name":"Chelsie Conroy","age":45,"location":"Thompsonton"}},{"attributes":{"name":"Miss Ann Flatley","age":33,"location":"Denver"}},{"attributes":{"name":"Mr. Raymundo Gerhold","age":61,"location":"Lake Aniballand"}},{"attributes":{"name":"Toney Gusikowski","age":26,"location":"East Drew"}},{"attributes":{"name":"Della Barton","age":50,"location":"Emmettfurt"}},{"attributes":{"name":"Theron Nolan","age":27,"location":"Port Pietro"}},{"attributes":{"name":"Jan Conn DVM","age":43,"location":"Yolandaland"}},{"attributes":{"name":"Michael Ledner","age":22,"location":"Athenastead"}},{"attributes":{"name":"Thaddeus Littel","age":69,"location":"Jonesboro"}},{"attributes":{"name":"Devyn Cole","age":64,"location":"Cleveland Heights"}},{"attributes":{"name":"Johnathan Bartoletti","age":64,"location":"Genovevacester"}},{"attributes":{"name":"Forrest Tremblay IV","age":53,"location":"Haleystead"}},{"attributes":{"name":"Lou Cummings","age":73,"location":"Sybleboro"}},{"attributes":{"name":"Elsie Schamberger","age":33,"location":"Stiedemannfurt"}},{"attributes":{"name":"Kay Collier","age":46,"location":"Fort Daynaton"}},{"attributes":{"name":"Julien Herman","age":20,"location":"Jalyntown"}},{"attributes":{"name":"Harriet Donnelly","age":62,"location":"Guillermoboro"}},{"attributes":{"name":"Mrs. Adolfo Miller","age":69,"location":"Dale City"}},{"attributes":{"name":"Mrs. Anibal Witting","age":28,"location":"Fort Rosariofield"}},{"attributes":{"name":"Kate Jacobi","age":53,"location":"South Edwinaborough"}},{"attributes":{"name":"Brennon Deckow","age":42,"location":"Devinboro"}},{"attributes":{"name":"Talon Bartell","age":22,"location":"Yuma"}},{"attributes":{"name":"Mallie Schultz V","age":64,"location":"Goldnerside"}},{"attributes":{"name":"Shari Abshire","age":41,"location":"Cranston"}},{"attributes":{"name":"Loma Boehm","age":21,"location":"Adaton"}},{"attributes":{"name":"Eleanor Gerhold","age":43,"location":"North Blanca"}},{"attributes":{"name":"Mrs. Tasha Sawayn","age":58,"location":"North Salvador"}},{"attributes":{"name":"Candace Goldner II","age":67,"location":"South Joey"}},{"attributes":{"name":"Edna Franecki","age":49,"location":"Rubystead"}},{"attributes":{"name":"Claudine Mayert","age":42,"location":"Lake Cyrus"}},{"attributes":{"name":"Andrew Pollich Sr.","age":74,"location":"Longview"}},{"attributes":{"name":"Matt Rice","age":67,"location":"Elizabeth"}},{"attributes":{"name":"Jesse Kihn II","age":78,"location":"Conway"}},{"attributes":{"name":"Orville Osinski","age":35,"location":"Fort Emelie"}},{"attributes":{"name":"Jerrell Hilpert","age":68,"location":"Lockmanport"}},{"attributes":{"name":"Norbert Erdman","age":72,"location":"Bergnaumbury"}},{"attributes":{"name":"Marcellus Crooks","age":79,"location":"Romagueracester"}},{"attributes":{"name":"Minnie Hayes","age":68,"location":"Lake Heloisechester"}},{"attributes":{"name":"Merle Kris","age":29,"location":"Meaghanview"}},{"attributes":{"name":"Guadalupe Blanda","age":77,"location":"West Rod"}},{"attributes":{"name":"Dr. Tania Hayes","age":43,"location":"Bogisichview"}},{"attributes":{"name":"Aylin Aufderhar","age":61,"location":"Fort Angelitaton"}},{"attributes":{"name":"Dr. Dominick Upton","age":61,"location":"Minnieville"}},{"attributes":{"name":"Allie Kub","age":22,"location":"Maevechester"}},{"attributes":{"name":"Margie Wilkinson-Lueilwitz","age":27,"location":"South Tom"}},{"attributes":{"name":"Carey Klein","age":68,"location":"Richardtown"}},{"attributes":{"name":"Ms. Emma Fadel","age":40,"location":"Arvada"}},{"attributes":{"name":"Randy Marvin","age":51,"location":"South Dariana"}},{"attributes":{"name":"Mabelle Gislason","age":43,"location":"Bednarton"}},{"attributes":{"name":"Dustin Lockman","age":47,"location":"Murphyfurt"}},{"attributes":{"name":"Woodrow O'Reilly","age":35,"location":"Maxwellmouth"}},{"attributes":{"name":"Terry Kohler","age":26,"location":"Hudsonboro"}},{"attributes":{"name":"Jacob Zieme","age":44,"location":"South Opalside"}},{"attributes":{"name":"Emanuel Ankunding","age":37,"location":"Walkerberg"}},{"attributes":{"name":"Mary Pagac","age":18,"location":"Melvinafield"}},{"attributes":{"name":"Cleo Fadel-Dicki","age":36,"location":"Elyria"}},{"attributes":{"name":"Daija Boyer","age":79,"location":"Rennertown"}},{"attributes":{"name":"Jim Jenkins","age":76,"location":"Fort Thurman"}},{"attributes":{"name":"Marcus Ferry","age":30,"location":"Fort Stanside"}},{"attributes":{"name":"Warren D'Amore-D'Amore","age":38,"location":"Wunschville"}},{"attributes":{"name":"Laron Mosciski","age":25,"location":"Victoria"}},{"attributes":{"name":"Mallie Ankunding","age":33,"location":"Collierport"}},{"attributes":{"name":"Bryan Lynch","age":77,"location":"Davionbury"}},{"attributes":{"name":"Simone Wehner","age":30,"location":"North Moises"}},{"attributes":{"name":"Malachi Purdy","age":65,"location":"Port Beulah"}},{"attributes":{"name":"Richard Kerluke","age":48,"location":"Schenectady"}},{"attributes":{"name":"Miracle Hudson","age":70,"location":"Fort Isom"}},{"attributes":{"name":"Tad West","age":30,"location":"Port Asia"}},{"attributes":{"name":"Dora Walsh","age":18,"location":"Lake Caden"}},{"attributes":{"name":"Murphy Emard","age":35,"location":"Morarworth"}},{"attributes":{"name":"Elena Bechtelar","age":36,"location":"Jaronstead"}},{"attributes":{"name":"Ariel Nolan","age":29,"location":"South Keven"}},{"attributes":{"name":"Laurie Brakus","age":53,"location":"North Gussietown"}},{"attributes":{"name":"Geraldine Crona Sr.","age":68,"location":"Aronburgh"}},{"attributes":{"name":"Mr. Marshall Kessler","age":39,"location":"North Rudy"}},{"attributes":{"name":"Kathy O'Connell","age":67,"location":"Katrineburgh"}},{"attributes":{"name":"Tyrone Lowe V","age":49,"location":"Wintheiserberg"}},{"attributes":{"name":"Americo Simonis","age":67,"location":"Lake Manuelton"}},{"attributes":{"name":"Sammy Streich","age":29,"location":"Lake Chandlercester"}},{"attributes":{"name":"Carlton Runolfsdottir","age":64,"location":"Aliso Viejo"}},{"attributes":{"name":"Chad Berge","age":67,"location":"East Ignatiusberg"}},{"attributes":{"name":"Pearl Kozey","age":65,"location":"Marcelinatown"}},{"attributes":{"name":"Sandra Kutch","age":67,"location":"North Estelhaven"}},{"attributes":{"name":"Jose Swaniawski","age":61,"location":"North Antonietta"}},{"attributes":{"name":"Miss May Schamberger","age":57,"location":"Alexandroville"}},{"attributes":{"name":"Vernon Auer IV","age":70,"location":"North Nyasia"}},{"attributes":{"name":"Theresa Dare","age":30,"location":"Homenickton"}},{"attributes":{"name":"Gerardo Ledner","age":69,"location":"Port Elenaview"}},{"attributes":{"name":"Bulah Breitenberg","age":53,"location":"Manteworth"}},{"attributes":{"name":"Warren Kunde","age":21,"location":"North Las Vegas"}},{"attributes":{"name":"Ellsworth Corkery V","age":53,"location":"Sierra Vista"}},{"attributes":{"name":"Annie Doyle","age":39,"location":"Port Clotildeworth"}},{"attributes":{"name":"Opal Hirthe IV","age":48,"location":"Ronfurt"}},{"attributes":{"name":"Vernon Gusikowski","age":64,"location":"Hyattfurt"}},{"attributes":{"name":"Jarvis Baumbach","age":54,"location":"South Valley"}},{"attributes":{"name":"Don Schiller Jr.","age":56,"location":"Sporerhaven"}},{"attributes":{"name":"Rosalee Kunde","age":49,"location":"Fort Merlin"}},{"attributes":{"name":"Heaven Mann","age":69,"location":"North Caleighhaven"}},{"attributes":{"name":"Marshall Schimmel DDS","age":58,"location":"Damianborough"}},{"attributes":{"name":"Ross Fritsch","age":65,"location":"North Justenberg"}},{"attributes":{"name":"Miss Wanda Nader IV","age":44,"location":"West Brielle"}},{"attributes":{"name":"Carrie Dietrich","age":25,"location":"Thornton"}},{"attributes":{"name":"Jaydon Koelpin I","age":76,"location":"Fort Josiahville"}},{"attributes":{"name":"Mr. Dolores Gulgowski","age":45,"location":"Gerlachshire"}},{"attributes":{"name":"Pete Koelpin","age":34,"location":"East Dorrisview"}},{"attributes":{"name":"Alexandria Satterfield","age":39,"location":"Jordaneport"}},{"attributes":{"name":"Nettie Mueller","age":26,"location":"Dickensview"}},{"attributes":{"name":"Iris Fahey","age":37,"location":"New Evelynboro"}},{"attributes":{"name":"Scott Hartmann","age":71,"location":"Mallietown"}},{"attributes":{"name":"Willard Abernathy III","age":74,"location":"East Gertrudebury"}},{"attributes":{"name":"Ferne Pacocha","age":52,"location":"Lomaland"}},{"attributes":{"name":"Danny Turner","age":73,"location":"Port Vernice"}},{"attributes":{"name":"Geneva Bogisich V","age":65,"location":"Logan"}},{"attributes":{"name":"Lynn Schmidt I","age":53,"location":"Port Paoloview"}},{"attributes":{"name":"Bertram Gorczany","age":22,"location":"Hanford"}},{"attributes":{"name":"Cecelia Kertzmann","age":22,"location":"Shanahanbury"}},{"attributes":{"name":"Maci Upton","age":18,"location":"North Port"}},{"attributes":{"name":"Gregg Auer","age":71,"location":"Heavenhaven"}},{"attributes":{"name":"Alyce Jacobs","age":29,"location":"Brennanworth"}},{"attributes":{"name":"Eula Koss","age":73,"location":"Dietrichfield"}},{"attributes":{"name":"Andy Breitenberg","age":59,"location":"East Hartford"}},{"attributes":{"name":"Jerad Konopelski","age":49,"location":"Bradenmouth"}},{"attributes":{"name":"Erik Stamm","age":31,"location":"Lake Ridge"}},{"attributes":{"name":"Alfred Gutmann","age":80,"location":"Nicolasborough"}},{"attributes":{"name":"Clark Kautzer","age":56,"location":"West Araceli"}},{"attributes":{"name":"Andrea Oberbrunner","age":62,"location":"Uriahview"}},{"attributes":{"name":"Jaron Crist","age":23,"location":"Thompsonside"}},{"attributes":{"name":"Johann Bogisich","age":51,"location":"Port Timmothyport"}},{"attributes":{"name":"Terry Price","age":40,"location":"Ellicott City"}},{"attributes":{"name":"Neal Gleason","age":73,"location":"Sunrise Manor"}},{"attributes":{"name":"Judy Lockman","age":54,"location":"Fort Hellenborough"}},{"attributes":{"name":"Elva Parker","age":72,"location":"North Scarlettfurt"}},{"attributes":{"name":"Arlene Hagenes","age":57,"location":"West Diamond"}},{"attributes":{"name":"Dr. Fredrick Graham","age":66,"location":"North Izaiah"}},{"attributes":{"name":"Carol Wuckert","age":47,"location":"East Lavern"}},{"attributes":{"name":"Frankie O'Conner III","age":26,"location":"New Arne"}},{"attributes":{"name":"Felicia Greenfelder","age":56,"location":"Thousand Oaks"}},{"attributes":{"name":"Kevin Skiles","age":54,"location":"Port Williamchester"}},{"attributes":{"name":"Sheldon Effertz","age":35,"location":"Pasadena"}},{"attributes":{"name":"Jenna Torp","age":41,"location":"Pine Hills"}},{"attributes":{"name":"Emmett Lakin-Fahey","age":30,"location":"Pacochahaven"}},{"attributes":{"name":"Lana Conn","age":19,"location":"North Lennacester"}},{"attributes":{"name":"Mr. Ian Toy","age":80,"location":"East Krystel"}},{"attributes":{"name":"Donny Denesik","age":75,"location":"Blandaburgh"}},{"attributes":{"name":"Ora Auer","age":25,"location":"Kamrenfurt"}},{"attributes":{"name":"Sonja Ryan","age":31,"location":"West Daleborough"}},{"attributes":{"name":"Mr. Geoffrey Nitzsche","age":55,"location":"West Evie"}},{"attributes":{"name":"Logan Wiza","age":46,"location":"Port Orvillestad"}},{"attributes":{"name":"Sammie Johnston","age":37,"location":"Lake Rudyton"}},{"attributes":{"name":"Meredith Torphy","age":36,"location":"Ardithmouth"}},{"attributes":{"name":"Dr. Flora McDermott","age":74,"location":"Cathedral City"}},{"attributes":{"name":"Homer Stracke IV","age":43,"location":"New Kolby"}},{"attributes":{"name":"Jenna Rau","age":70,"location":"Sterling Heights"}},{"attributes":{"name":"Catherine Mayer","age":64,"location":"Fort Zoilashire"}},{"attributes":{"name":"Lynn Bechtelar","age":76,"location":"Bahringerland"}},{"attributes":{"name":"Timmy Mohr","age":75,"location":"Euless"}},{"attributes":{"name":"Mercedes Leffler","age":78,"location":"Howellcester"}},{"attributes":{"name":"Antonio Bartoletti","age":67,"location":"Monroe"}},{"attributes":{"name":"Claude Ortiz III","age":37,"location":"South Reneechester"}},{"attributes":{"name":"Howard Maggio","age":24,"location":"Kaleighchester"}},{"attributes":{"name":"Earnestine Ryan","age":60,"location":"Urbanchester"}},{"attributes":{"name":"Dr. Lucy Spinka","age":46,"location":"Buena Park"}},{"attributes":{"name":"Gordon Beier","age":70,"location":"Hackettton"}},{"attributes":{"name":"Reed Thompson IV","age":71,"location":"Bryan"}},{"attributes":{"name":"Kamryn Haag","age":61,"location":"North Verliebury"}},{"attributes":{"name":"Enrique Fadel","age":25,"location":"Boyleville"}},{"attributes":{"name":"Dr. Cordie Harris","age":29,"location":"Marystead"}},{"attributes":{"name":"Lurline Lockman","age":33,"location":"South Tara"}},{"attributes":{"name":"Stone Moore","age":60,"location":"Ellaberg"}},{"attributes":{"name":"Angie Blanda II","age":20,"location":"East Kristoffer"}},{"attributes":{"name":"Halle Turcotte","age":19,"location":"Lake Hollismouth"}},{"attributes":{"name":"Elaina Bednar","age":34,"location":"Port Ignacio"}},{"attributes":{"name":"Griffin Keeling","age":64,"location":"Smithworth"}},{"attributes":{"name":"Jacques Rau","age":64,"location":"Albinaland"}},{"attributes":{"name":"Mr. Ines Mohr","age":21,"location":"Labadieborough"}},{"attributes":{"name":"Irvin Fay","age":39,"location":"Tracy"}},{"attributes":{"name":"Prudence Towne","age":48,"location":"Mortimershire"}},{"attributes":{"name":"Ms. Jo Bradtke","age":70,"location":"West Valley City"}},{"attributes":{"name":"Theodore Maggio","age":76,"location":"East Lindaburgh"}},{"attributes":{"name":"Bobby Miller","age":72,"location":"North Brianneshire"}},{"attributes":{"name":"Camila Spinka","age":70,"location":"Lake Treva"}},{"attributes":{"name":"Mrs. Guadalupe Hermiston","age":70,"location":"West Cartershire"}},{"attributes":{"name":"Dr. Hazel Ledner","age":71,"location":"Watsicaville"}},{"attributes":{"name":"Harmon Frami","age":21,"location":"Haverhill"}},{"attributes":{"name":"Pam Steuber","age":42,"location":"Faheyview"}},{"attributes":{"name":"Dr. Francis Jacobson","age":43,"location":"New Rainatown"}},{"attributes":{"name":"Amos Casper","age":25,"location":"West Kameron"}},{"attributes":{"name":"Mr. Gisselle Wolf DDS","age":22,"location":"Lake Zackery"}},{"attributes":{"name":"Louie Bogan","age":49,"location":"South Davion"}},{"attributes":{"name":"Jamir Kuphal","age":80,"location":"Lake Joaquin"}},{"attributes":{"name":"Claudia Goyette","age":79,"location":"North Miami"}},{"attributes":{"name":"Cathy Marvin","age":18,"location":"Greenfelderberg"}},{"attributes":{"name":"Paul Lesch","age":62,"location":"West Kenyontown"}},{"attributes":{"name":"Stella Gusikowski","age":45,"location":"Alectown"}},{"attributes":{"name":"Furman Schiller","age":28,"location":"Elouiseton"}},{"attributes":{"name":"Ellen Turcotte","age":61,"location":"Margarettafield"}},{"attributes":{"name":"Marguerite Crooks","age":19,"location":"Vallejo"}},{"attributes":{"name":"Patsy Towne","age":61,"location":"Trujillo Alto"}},{"attributes":{"name":"Elyse Schoen DDS","age":26,"location":"Bessieland"}},{"attributes":{"name":"Mr. Kirk Davis-Williamson","age":37,"location":"East Robbieton"}},{"attributes":{"name":"Dr. Aaron Prosacco DVM","age":63,"location":"Kutchhaven"}},{"attributes":{"name":"Helen Wisozk","age":36,"location":"West Everardo"}},{"attributes":{"name":"Herta Raynor III","age":78,"location":"Port Garland"}},{"attributes":{"name":"Julio Rippin","age":18,"location":"Wilfredofield"}},{"attributes":{"name":"Chaim Langosh","age":66,"location":"Kieraton"}},{"attributes":{"name":"Louise Williamson","age":68,"location":"Katrinaberg"}},{"attributes":{"name":"Aaron Metz","age":48,"location":"Milanhaven"}},{"attributes":{"name":"Anita Pfeffer","age":53,"location":"Beaumont"}},{"attributes":{"name":"Susie Watsica","age":21,"location":"Rippinview"}},{"attributes":{"name":"Orlando Heaney","age":73,"location":"Matildafurt"}},{"attributes":{"name":"Janet Hilll","age":37,"location":"East Carlishire"}},{"attributes":{"name":"Christian Russel","age":69,"location":"Alafaya"}},{"attributes":{"name":"Neil Becker","age":44,"location":"Lake Havasu City"}},{"attributes":{"name":"Pablo Kertzmann","age":68,"location":"Lake Jailynberg"}},{"attributes":{"name":"Gordon Jaskolski","age":77,"location":"Josianeshire"}},{"attributes":{"name":"Javier Schroeder","age":69,"location":"Beattycester"}},{"attributes":{"name":"Ms. Alyssa Reilly","age":71,"location":"Thompsonfield"}},{"attributes":{"name":"Barney Wiegand","age":34,"location":"Hermannville"}},{"attributes":{"name":"Dr. Eric Kub","age":22,"location":"Ernafurt"}},{"attributes":{"name":"Rudolph Rice","age":72,"location":"Koryton"}},{"attributes":{"name":"Rosie Torp","age":71,"location":"Edmundmouth"}},{"attributes":{"name":"Gail Hodkiewicz","age":79,"location":"New Isabell"}},{"attributes":{"name":"Orville Ebert","age":52,"location":"Fort Fritzfield"}},{"attributes":{"name":"Terrance Armstrong","age":69,"location":"Port Cruztown"}},{"attributes":{"name":"Shirley Kunze V","age":66,"location":"Rogahnworth"}},{"attributes":{"name":"Dennis Krajcik","age":51,"location":"North Joe"}},{"attributes":{"name":"Earl Reilly","age":59,"location":"Cartwrightberg"}},{"attributes":{"name":"Asia Macejkovic","age":26,"location":"Carolina"}},{"attributes":{"name":"Estevan Crooks","age":46,"location":"East Brandi"}},{"attributes":{"name":"Daniella Bergstrom","age":32,"location":"Doylefield"}},{"attributes":{"name":"Blanche Stehr","age":70,"location":"Huntington Park"}},{"attributes":{"name":"Peggy Wilderman","age":51,"location":"Boise City"}},{"attributes":{"name":"Ms. Lavina Lynch","age":26,"location":"Christstad"}},{"attributes":{"name":"Robyn Schaefer-Kessler","age":48,"location":"West Ralph"}},{"attributes":{"name":"Spencer Heller","age":33,"location":"Eugene"}},{"attributes":{"name":"Myron Ryan","age":38,"location":"Port Marisol"}},{"attributes":{"name":"Dr. Ruben Prohaska","age":39,"location":"New Gregstad"}},{"attributes":{"name":"Zackary Bruen","age":64,"location":"Lindgrenville"}},{"attributes":{"name":"Brittany Buckridge-Lindgren","age":80,"location":"Karolannhaven"}},{"attributes":{"name":"Julius Goodwin","age":80,"location":"Mylesland"}},{"attributes":{"name":"Deja Nolan","age":38,"location":"South Gate"}},{"attributes":{"name":"Scot Wunsch","age":78,"location":"North Alexie"}},{"attributes":{"name":"Dr. Eric Schamberger","age":74,"location":"West Jewelberg"}},{"attributes":{"name":"Ms. Carla Gleichner","age":42,"location":"New Queenside"}},{"attributes":{"name":"Pedro Kris","age":44,"location":"Addisonstad"}},{"attributes":{"name":"Jimmie Kulas","age":54,"location":"Lake Alysahaven"}},{"attributes":{"name":"Dr. Amina Sipes","age":36,"location":"Lylaworth"}},{"attributes":{"name":"Jack Becker","age":80,"location":"Bethelport"}},{"attributes":{"name":"Jaeden Collier","age":68,"location":"East Kianastead"}},{"attributes":{"name":"Kaleb Medhurst","age":48,"location":"Toneyshire"}},{"attributes":{"name":"Hilda Fritsch","age":40,"location":"Des Plaines"}},{"attributes":{"name":"Clifford Bode","age":61,"location":"Kingsport"}},{"attributes":{"name":"Norval MacGyver","age":77,"location":"South Julianaport"}},{"attributes":{"name":"Ubaldo Mosciski","age":44,"location":"Auerberg"}},{"attributes":{"name":"Jake Bauch","age":62,"location":"North Catherine"}},{"attributes":{"name":"Matthew Veum","age":21,"location":"Fort Reva"}},{"attributes":{"name":"Tracy Schmeler","age":24,"location":"Moriahberg"}},{"attributes":{"name":"Charles Goldner","age":27,"location":"Chicago"}},{"attributes":{"name":"Cecilia Ritchie","age":75,"location":"Farrellchester"}},{"attributes":{"name":"Lucia Kuhic-Green","age":27,"location":"South Torreyfurt"}},{"attributes":{"name":"Tracey Murazik III","age":32,"location":"Lake Jeramiechester"}},{"attributes":{"name":"Calvin Rempel","age":73,"location":"Port Amiyastad"}},{"attributes":{"name":"Israel Hoppe","age":37,"location":"Lornastad"}},{"attributes":{"name":"Kerry Kassulke PhD","age":39,"location":"Jaclynchester"}},{"attributes":{"name":"Keith Larkin","age":66,"location":"Castro Valley"}},{"attributes":{"name":"Emerson Legros","age":42,"location":"Lake Devante"}},{"attributes":{"name":"Debra Heathcote","age":58,"location":"Joplin"}},{"attributes":{"name":"London Wilkinson","age":78,"location":"Koelpinworth"}},{"attributes":{"name":"Wendell Parker","age":24,"location":"Wolfworth"}},{"attributes":{"name":"Miss Vicenta Boyle","age":80,"location":"Hayesshire"}},{"attributes":{"name":"Vickie Buckridge","age":36,"location":"Assuntaview"}},{"attributes":{"name":"Joann Brekke","age":79,"location":"South Geovany"}},{"attributes":{"name":"Gayle Thiel","age":64,"location":"New Leone"}},{"attributes":{"name":"Alice Cremin","age":66,"location":"Dianabury"}},{"attributes":{"name":"Marion Howell","age":80,"location":"Lake Beverlyside"}},{"attributes":{"name":"Carli Ziemann","age":80,"location":"Port Emmanuelton"}},{"attributes":{"name":"Darren Vandervort","age":76,"location":"North Cornell"}},{"attributes":{"name":"Rick Stehr","age":70,"location":"San Mateo"}},{"attributes":{"name":"Willie Smith","age":60,"location":"Joliet"}},{"attributes":{"name":"Rhonda Homenick","age":45,"location":"Lake Laylaville"}},{"attributes":{"name":"Miss Emmett Crist","age":71,"location":"Jackshire"}},{"attributes":{"name":"Ray MacGyver","age":27,"location":"Richardson"}},{"attributes":{"name":"Dr. Jeremie Cummings","age":26,"location":"Port Oliver"}},{"attributes":{"name":"Debbie Schaden","age":40,"location":"South Abbeybury"}},{"attributes":{"name":"Emma Mayer","age":30,"location":"Hodkiewicztown"}},{"attributes":{"name":"Gabriel Schaden","age":23,"location":"Jordanechester"}},{"attributes":{"name":"Gustavo Beatty-Schmidt III","age":31,"location":"West Nathancester"}},{"attributes":{"name":"Marcos Keeling","age":48,"location":"Spokane"}},{"attributes":{"name":"Johnnie Gerlach DDS","age":59,"location":"North Saulborough"}},{"attributes":{"name":"Willard Collier","age":30,"location":"Joelberg"}},{"attributes":{"name":"Walker Hermiston","age":25,"location":"Port Miracleberg"}},{"attributes":{"name":"Mrs. Rosalie Cremin","age":59,"location":"Gerholdshire"}},{"attributes":{"name":"Flo O'Reilly","age":19,"location":"Niagara Falls"}},{"attributes":{"name":"Constantin Senger PhD","age":71,"location":"North Judge"}},{"attributes":{"name":"Carissa Kessler","age":25,"location":"Lake Jonastown"}},{"attributes":{"name":"Magdalen Beatty","age":28,"location":"Lansing"}},{"attributes":{"name":"Rosie Pouros","age":71,"location":"Schaeferburgh"}},{"attributes":{"name":"Chris Wiegand","age":39,"location":"Thompsonfurt"}},{"attributes":{"name":"Sue Lynch","age":47,"location":"Canton"}},{"attributes":{"name":"Dortha Erdman","age":44,"location":"Merlestead"}},{"attributes":{"name":"Molly Raynor","age":71,"location":"MacGyverside"}},{"attributes":{"name":"Ebony Gerlach","age":34,"location":"Brakusview"}},{"attributes":{"name":"Freeman Mayert-Hilll","age":36,"location":"O'Konshire"}},{"attributes":{"name":"Jacinto Marvin","age":59,"location":"East Carolyne"}},{"attributes":{"name":"Louis Lakin","age":31,"location":"Lockmanside"}},{"attributes":{"name":"Rebeka Koss","age":72,"location":"Wymanworth"}},{"attributes":{"name":"Miss Kay Rolfson","age":53,"location":"West Cortney"}},{"attributes":{"name":"Lamar Ziemann-Lesch","age":78,"location":"South Ansel"}},{"attributes":{"name":"Katrina VonRueden","age":37,"location":"Fremont"}},{"attributes":{"name":"Salvador Lubowitz","age":60,"location":"Auercester"}},{"attributes":{"name":"Deanna Crooks","age":69,"location":"Gottliebworth"}},{"attributes":{"name":"Lillie Fisher","age":68,"location":"Westcester"}},{"attributes":{"name":"Alicia Robel","age":32,"location":"Port Verlatown"}},{"attributes":{"name":"Evelyn Lueilwitz","age":38,"location":"Ernestoland"}},{"attributes":{"name":"Jessie Nicolas V","age":23,"location":"Fort Adolfport"}},{"attributes":{"name":"Jordan Weber","age":73,"location":"Lake Susanna"}},{"attributes":{"name":"Clifford Reilly","age":54,"location":"West Gerardo"}},{"attributes":{"name":"Sadie Christiansen","age":80,"location":"Pine Hills"}},{"attributes":{"name":"Essie Trantow","age":41,"location":"Johannashire"}},{"attributes":{"name":"Alex Cummerata","age":56,"location":"Mansfield"}},{"attributes":{"name":"Malachi Wehner","age":78,"location":"Cartwrightfield"}},{"attributes":{"name":"Clara Hilpert","age":29,"location":"Koelpinchester"}},{"attributes":{"name":"Kari Bartell","age":37,"location":"South Sarahhaven"}},{"attributes":{"name":"Joyce Kuphal","age":40,"location":"Champlinbury"}},{"attributes":{"name":"Miss Max Runte","age":53,"location":"North Malinda"}},{"attributes":{"name":"Prudence Parisian","age":59,"location":"Lake Hayleeburgh"}},{"attributes":{"name":"Dr. Salvatore Durgan","age":30,"location":"Bahringerfield"}},{"attributes":{"name":"Rex Hayes","age":54,"location":"West Vedahaven"}},{"attributes":{"name":"Gladyce Schultz","age":70,"location":"Grand Forks"}},{"attributes":{"name":"Darryl VonRueden","age":80,"location":"Novi"}},{"attributes":{"name":"Joany Langworth","age":41,"location":"Athenaland"}},{"attributes":{"name":"Jodi Dooley","age":57,"location":"Bryceborough"}},{"attributes":{"name":"Sam Harvey","age":63,"location":"Hildegardstead"}},{"attributes":{"name":"Lloyd Yost","age":37,"location":"Fort Hailie"}},{"attributes":{"name":"Caleb Streich","age":79,"location":"Rodolfoland"}},{"attributes":{"name":"Mrs. Hope Mante","age":57,"location":"Port Green"}},{"attributes":{"name":"Makenzie O'Conner","age":46,"location":"Port Sydnee"}},{"attributes":{"name":"Marvin Nolan II","age":51,"location":"Kerlukefort"}},{"attributes":{"name":"Adam Stroman","age":64,"location":"Edmond"}},{"attributes":{"name":"Todd McGlynn","age":25,"location":"Casperboro"}},{"attributes":{"name":"Tomasa Macejkovic","age":61,"location":"Wehnerland"}},{"attributes":{"name":"Candace Wolf","age":35,"location":"Cassandreview"}},{"attributes":{"name":"Miss Brandi Champlin","age":66,"location":"Shieldsstad"}},{"attributes":{"name":"Miss Claude Feeney","age":40,"location":"East Duane"}},{"attributes":{"name":"Charlene Barton","age":51,"location":"West Junior"}},{"attributes":{"name":"Ada Kertzmann","age":24,"location":"Langfield"}},{"attributes":{"name":"Raul Fay","age":33,"location":"Destinhaven"}},{"attributes":{"name":"Lucille Johnson","age":75,"location":"Port Jaidenfort"}},{"attributes":{"name":"Alma Ernser","age":18,"location":"West Ellsworthcester"}},{"attributes":{"name":"Dr. Andy Schumm","age":19,"location":"Sauerberg"}},{"attributes":{"name":"Philip Hessel","age":22,"location":"Port Quinnhaven"}},{"attributes":{"name":"Lawrence Hickle-Mills","age":63,"location":"Cormierside"}},{"attributes":{"name":"Clinton Nolan","age":62,"location":"Blaine"}},{"attributes":{"name":"Armani Kiehn","age":56,"location":"Goyettemouth"}},{"attributes":{"name":"Francis Watsica","age":69,"location":"Funkworth"}},{"attributes":{"name":"Emmet Jaskolski","age":53,"location":"Conroyland"}},{"attributes":{"name":"Margaret Steuber-Kassulke","age":20,"location":"Zulaufmouth"}},{"attributes":{"name":"Matt Jacobi","age":39,"location":"West Alessandro"}},{"attributes":{"name":"Evelyn Dach IV","age":46,"location":"Fort Coby"}},{"attributes":{"name":"Maria Treutel","age":52,"location":"Lake Meagan"}},{"attributes":{"name":"Lowell Raynor","age":53,"location":"Hettingerport"}},{"attributes":{"name":"Frances Rice","age":42,"location":"North Malinda"}},{"attributes":{"name":"Teresa Rippin","age":77,"location":"Schulistfort"}},{"attributes":{"name":"Marie Treutel","age":19,"location":"West Austin"}},{"attributes":{"name":"Essie Fritsch","age":36,"location":"Lake Winifredland"}},{"attributes":{"name":"Avis Douglas V","age":47,"location":"Brownberg"}},{"attributes":{"name":"Priscilla Schulist","age":69,"location":"New Theoworth"}},{"attributes":{"name":"Sophia Reichert","age":34,"location":"Juliannetown"}},{"attributes":{"name":"Rudolph Nader","age":44,"location":"St. Paul"}},{"attributes":{"name":"Demetris Lindgren DVM","age":79,"location":"New Jensen"}},{"attributes":{"name":"Diane McClure","age":33,"location":"North Waylon"}},{"attributes":{"name":"Leonard Lemke","age":61,"location":"Pablochester"}},{"attributes":{"name":"Dr. Lempi Funk","age":39,"location":"South Gerson"}},{"attributes":{"name":"Vicenta Zboncak","age":34,"location":"Torpfurt"}},{"attributes":{"name":"Brielle Botsford","age":65,"location":"Dejonberg"}},{"attributes":{"name":"Mr. Velma Marvin","age":47,"location":"Lake Mckaylaland"}},{"attributes":{"name":"Miss Doyle Jacobi","age":36,"location":"East Annabellstad"}},{"attributes":{"name":"Alton Cassin III","age":46,"location":"North Ethelboro"}},{"attributes":{"name":"Ms. Debbie Kuhlman","age":40,"location":"Deloresstead"}},{"attributes":{"name":"Graciela Cormier","age":57,"location":"Missoula"}},{"attributes":{"name":"Edwin Fisher","age":21,"location":"Harryburgh"}},{"attributes":{"name":"Savanah Boyer","age":29,"location":"Raynorborough"}},{"attributes":{"name":"Doris Wilderman","age":42,"location":"New Mae"}},{"attributes":{"name":"Todd Goldner","age":21,"location":"Franklin"}},{"attributes":{"name":"Miss Debra Ryan","age":47,"location":"South Norwoodland"}},{"attributes":{"name":"Randy Gerlach","age":45,"location":"South Abbey"}},{"attributes":{"name":"Dawn Cronin","age":40,"location":"Fort Dockview"}},{"attributes":{"name":"Monique Rippin","age":40,"location":"Harryburgh"}},{"attributes":{"name":"Aniyah Jaskolski II","age":27,"location":"San Francisco"}},{"attributes":{"name":"Braeden Denesik","age":72,"location":"Richmond"}},{"attributes":{"name":"Camren Powlowski","age":28,"location":"Armstrongstead"}},{"attributes":{"name":"Ed Dickens","age":43,"location":"Tremblayland"}},{"attributes":{"name":"Esperanza Davis","age":67,"location":"Coleworth"}},{"attributes":{"name":"Margarita Towne-Oberbrunner","age":61,"location":"Marquardthaven"}},{"attributes":{"name":"Carson Renner","age":40,"location":"North Port"}},{"attributes":{"name":"Chris Toy","age":31,"location":"North Alfonzo"}},{"attributes":{"name":"Rafael Stiedemann","age":22,"location":"Sylvesterville"}},{"attributes":{"name":"Forrest Gottlieb","age":75,"location":"Whitetown"}},{"attributes":{"name":"Sandra Kunde","age":56,"location":"North Eastonhaven"}},{"attributes":{"name":"Nadine Rowe","age":62,"location":"Baytown"}},{"attributes":{"name":"Delpha Rolfson","age":44,"location":"West Neva"}},{"attributes":{"name":"Edith Considine","age":77,"location":"Borerfurt"}},{"attributes":{"name":"Brown Donnelly","age":62,"location":"El Paso"}},{"attributes":{"name":"Jenifer Raynor","age":29,"location":"Lake Julioborough"}},{"attributes":{"name":"Dr. Jody Hirthe II","age":64,"location":"Carmellaport"}},{"attributes":{"name":"Mrs. Brandi Kassulke","age":74,"location":"Harveystad"}},{"attributes":{"name":"Eva Greenfelder","age":73,"location":"New Davion"}},{"attributes":{"name":"Dr. Kristine Walsh","age":52,"location":"Lodi"}},{"attributes":{"name":"Ms. Kobe Schaefer","age":21,"location":"Murazikfurt"}},{"attributes":{"name":"Mr. Lyle Glover","age":30,"location":"North Willieville"}},{"attributes":{"name":"Pauline Bins","age":37,"location":"Lake Tyriqueton"}},{"attributes":{"name":"Doyle Murphy IV","age":34,"location":"Schulistfort"}},{"attributes":{"name":"Fern Murray","age":33,"location":"Vineland"}},{"attributes":{"name":"Mariano Langosh","age":48,"location":"Bradleyfield"}},{"attributes":{"name":"Dr. Gregory Aufderhar","age":36,"location":"Urbanstad"}},{"attributes":{"name":"Tatum Dibbert","age":76,"location":"Port Robbie"}},{"attributes":{"name":"Kristy Barton","age":57,"location":"South Nickolasburgh"}},{"attributes":{"name":"Tiffany Crist","age":78,"location":"Rathstad"}},{"attributes":{"name":"Daniel Rogahn","age":18,"location":"East Tylerberg"}},{"attributes":{"name":"Alfred Renner","age":33,"location":"Elverachester"}},{"attributes":{"name":"Bella Kris-Senger","age":71,"location":"West Dillanhaven"}},{"attributes":{"name":"Jodi Jones","age":38,"location":"Angelicaland"}},{"attributes":{"name":"Nella Pollich","age":46,"location":"Dillanbury"}},{"attributes":{"name":"Camille Mills","age":29,"location":"Ondrickamouth"}},{"attributes":{"name":"Arlene Hamill PhD","age":49,"location":"Milford"}},{"attributes":{"name":"Hope Spencer","age":74,"location":"East Gregfurt"}},{"attributes":{"name":"Angel Schaefer-Murray","age":23,"location":"Bergestad"}},{"attributes":{"name":"Seamus Lueilwitz","age":60,"location":"Clintside"}},{"attributes":{"name":"Tasha Leannon","age":21,"location":"Samcester"}},{"attributes":{"name":"Javier Crooks","age":66,"location":"Fort Precious"}},{"attributes":{"name":"Santiago Moore","age":34,"location":"San Diego"}},{"attributes":{"name":"Adeline Gerhold-Kunze DVM","age":50,"location":"Coconut Creek"}},{"attributes":{"name":"Garret Predovic","age":60,"location":"Weimannburgh"}},{"attributes":{"name":"Wilhelm Wintheiser","age":43,"location":"Ryanfort"}},{"attributes":{"name":"Winifred Veum","age":79,"location":"Kunzeshire"}},{"attributes":{"name":"Verlie Dach","age":80,"location":"Hillsburgh"}},{"attributes":{"name":"Darla Olson","age":79,"location":"Donnellyside"}},{"attributes":{"name":"Allison Boyer","age":48,"location":"South Kodyborough"}},{"attributes":{"name":"Roger Boehm-Steuber","age":48,"location":"West Hilma"}},{"attributes":{"name":"Mr. Randy Volkman II","age":66,"location":"Halboro"}},{"attributes":{"name":"Catherine Jacobson","age":62,"location":"Normal"}},{"attributes":{"name":"Harriet Rice PhD","age":31,"location":"Oleside"}},{"attributes":{"name":"Jacqueline Howell","age":42,"location":"Portsmouth"}},{"attributes":{"name":"Makenna Jakubowski II","age":38,"location":"Tuckahoe"}},{"attributes":{"name":"Ronnie Rohan","age":42,"location":"Freemanland"}},{"attributes":{"name":"Franco Nienow","age":44,"location":"Lake Kiley"}},{"attributes":{"name":"Andrea Turcotte","age":56,"location":"Nicoleview"}},{"attributes":{"name":"Kelli Zboncak","age":34,"location":"Lakeville"}},{"attributes":{"name":"Jesus Bayer","age":60,"location":"Schuliststead"}},{"attributes":{"name":"Mr. Eunice Lubowitz","age":21,"location":"New Bonnie"}},{"attributes":{"name":"Kaylie Reinger","age":55,"location":"Oceanside"}},{"attributes":{"name":"Vivian Willms","age":30,"location":"West Shanie"}},{"attributes":{"name":"Mose McLaughlin","age":19,"location":"Alberthaport"}},{"attributes":{"name":"Toby Metz","age":51,"location":"West Jameyworth"}},{"attributes":{"name":"Mack Price","age":28,"location":"South Elwyn"}},{"attributes":{"name":"Cristopher Connelly","age":54,"location":"Dearborn"}},{"attributes":{"name":"Eileen Turner","age":25,"location":"Maiyaport"}},{"attributes":{"name":"Isabell Cummings","age":76,"location":"Orrinberg"}},{"attributes":{"name":"Dr. Shane Emmerich","age":71,"location":"Lake Adelia"}},{"attributes":{"name":"Matthew Bradtke","age":63,"location":"Fort Greenfield"}},{"attributes":{"name":"Kim Gislason","age":22,"location":"South Mattie"}},{"attributes":{"name":"Verna Gibson","age":63,"location":"West Deondre"}},{"attributes":{"name":"Marco Carter","age":54,"location":"North Tod"}},{"attributes":{"name":"Milford Kiehn","age":60,"location":"La Mesa"}},{"attributes":{"name":"Mrs. Emil Hahn","age":49,"location":"South Orville"}},{"attributes":{"name":"Myrtle Zemlak","age":64,"location":"New Edwardoport"}},{"attributes":{"name":"Shaun Runte","age":67,"location":"Carrollfurt"}},{"attributes":{"name":"Angelica Rippin","age":31,"location":"Fort Houston"}},{"attributes":{"name":"Mario Halvorson MD","age":67,"location":"South Javier"}},{"attributes":{"name":"Tiffany Hackett","age":42,"location":"Ankundingville"}},{"attributes":{"name":"Laurence Bartoletti","age":63,"location":"Mekhitown"}},{"attributes":{"name":"Mario Grady","age":19,"location":"La Habra"}},{"attributes":{"name":"Aubrey Schinner","age":67,"location":"Elyssaside"}},{"attributes":{"name":"Otis Pacocha","age":40,"location":"Deshawnshire"}},{"attributes":{"name":"Ines Lind","age":61,"location":"West Clotilde"}},{"attributes":{"name":"Michael Hyatt","age":57,"location":"South Haven"}},{"attributes":{"name":"Marjolaine Hoeger","age":44,"location":"East Katarinabury"}},{"attributes":{"name":"Hubert Blanda","age":26,"location":"Adrielburgh"}},{"attributes":{"name":"Alfredo Bailey","age":40,"location":"Newark"}},{"attributes":{"name":"Landen Ziemann","age":80,"location":"Lafayette"}},{"attributes":{"name":"Dr. Susie Gislason","age":40,"location":"Davis"}},{"attributes":{"name":"Natalie Sporer","age":37,"location":"Fort Karlieworth"}},{"attributes":{"name":"Mylene Dooley DVM","age":56,"location":"South Alysonfurt"}},{"attributes":{"name":"Gunnar Keeling Jr.","age":66,"location":"Mattborough"}},{"attributes":{"name":"Ruthe Mueller","age":52,"location":"East Hudsonside"}},{"attributes":{"name":"Miss Diana Blanda-Considine","age":45,"location":"West Faeton"}},{"attributes":{"name":"Carley Weber IV","age":22,"location":"New Mabelchester"}},{"attributes":{"name":"Dr. Giles Lueilwitz","age":50,"location":"Lake Luisa"}},{"attributes":{"name":"Martin Rau","age":41,"location":"Lake Elenoraberg"}},{"attributes":{"name":"Omar Kuphal","age":38,"location":"West Margueriteton"}},{"attributes":{"name":"Karianne Beatty","age":67,"location":"Jalenboro"}},{"attributes":{"name":"Dr. Loyce Goodwin I","age":38,"location":"Beahancester"}},{"attributes":{"name":"Earnestine Leuschke","age":24,"location":"South Jeanettebury"}},{"attributes":{"name":"Anastasia Collier","age":61,"location":"Reingershire"}},{"attributes":{"name":"Mr. Allen McLaughlin","age":22,"location":"Bayonne"}},{"attributes":{"name":"Nina Hyatt","age":30,"location":"Dooleyworth"}},{"attributes":{"name":"Katherine Emmerich","age":46,"location":"Rachellefurt"}},{"attributes":{"name":"Evalyn Considine","age":39,"location":"Port Florianhaven"}},{"attributes":{"name":"Roberta Howell","age":68,"location":"Casas Adobes"}},{"attributes":{"name":"Mrs. Gretchen Terry-Mante","age":26,"location":"Kodycester"}},{"attributes":{"name":"Ms. Clarissa Lubowitz","age":39,"location":"East Edwin"}},{"attributes":{"name":"Edmond Rolfson","age":24,"location":"Alpharetta"}},{"attributes":{"name":"Bertha Becker IV","age":72,"location":"Harveyfield"}},{"attributes":{"name":"Perry Jacobson","age":51,"location":"Zulaside"}},{"attributes":{"name":"Irvin O'Reilly","age":53,"location":"East Cecile"}},{"attributes":{"name":"Rhianna Towne V","age":51,"location":"Strosinburgh"}},{"attributes":{"name":"Eleanore Marks","age":63,"location":"Morarland"}},{"attributes":{"name":"Bo Kuhn","age":79,"location":"West Garettview"}},{"attributes":{"name":"Miss Lucas Lind","age":43,"location":"South Jaquanfield"}},{"attributes":{"name":"Joseph Schneider","age":53,"location":"Luraton"}},{"attributes":{"name":"Sandra Stehr","age":39,"location":"Lake Jonasbury"}},{"attributes":{"name":"Emilio Mertz","age":44,"location":"Schultzboro"}},{"attributes":{"name":"Ms. Christie Bartoletti","age":71,"location":"Erdmanton"}},{"attributes":{"name":"Mr. Jacinto Goodwin","age":54,"location":"Lake Lurlinebury"}},{"attributes":{"name":"Cindy Lowe","age":80,"location":"South Jewell"}},{"attributes":{"name":"Felipe Flatley DVM","age":38,"location":"Pine Hills"}},{"attributes":{"name":"Darius Ledner","age":40,"location":"Bolingbrook"}},{"attributes":{"name":"Denise Wyman","age":33,"location":"Gregfort"}},{"attributes":{"name":"Joesph Renner DDS","age":53,"location":"Feilboro"}},{"attributes":{"name":"Jamie Crooks","age":24,"location":"Sporerland"}},{"attributes":{"name":"Nicola Wilkinson","age":26,"location":"Huelchester"}},{"attributes":{"name":"Natasha Bogan Jr.","age":37,"location":"South Buddyfield"}},{"attributes":{"name":"Mack Gutmann","age":55,"location":"South Verla"}},{"attributes":{"name":"Bernice Bins DVM","age":52,"location":"Lake Adan"}},{"attributes":{"name":"Darrel Schoen","age":45,"location":"Port Madisynland"}},{"attributes":{"name":"Alisa Robel","age":62,"location":"Lake Freedachester"}},{"attributes":{"name":"Ms. Kim Gibson","age":74,"location":"Broderickland"}},{"attributes":{"name":"Bradford Ebert","age":53,"location":"Smithamcester"}},{"attributes":{"name":"Tate Barton","age":31,"location":"Hendersonville"}},{"attributes":{"name":"Dr. Kim Nader","age":76,"location":"South Dexter"}},{"attributes":{"name":"Mable Rath","age":62,"location":"Port Amara"}},{"attributes":{"name":"Dangelo Russel","age":61,"location":"Mireyaland"}},{"attributes":{"name":"Dora Macejkovic","age":40,"location":"Arlietown"}},{"attributes":{"name":"Kirk Bergstrom","age":55,"location":"New Kevin"}},{"attributes":{"name":"Pat Baumbach DVM","age":75,"location":"East Bernhard"}},{"attributes":{"name":"Effie Heaney","age":33,"location":"South Laurel"}},{"attributes":{"name":"Beulah Reynolds","age":22,"location":"Lake Paolo"}},{"attributes":{"name":"Jay Wehner-Borer","age":69,"location":"Jacksonville"}},{"attributes":{"name":"Elsa Satterfield","age":47,"location":"Port Ryleystead"}},{"attributes":{"name":"Bryant Jones","age":31,"location":"West Vestabury"}},{"attributes":{"name":"Sigmund Nolan-DuBuque","age":67,"location":"Jakobport"}},{"attributes":{"name":"Gabriel Harvey MD","age":54,"location":"New Letitia"}},{"attributes":{"name":"Mae Lind","age":67,"location":"Emardburgh"}},{"attributes":{"name":"Daisy Von-Beer","age":78,"location":"Balistrerifort"}},{"attributes":{"name":"Jeffery Keeling","age":57,"location":"Mozellecester"}},{"attributes":{"name":"Patrick Abshire IV","age":43,"location":"West Dixieview"}},{"attributes":{"name":"Loma Zboncak","age":53,"location":"South Sallie"}},{"attributes":{"name":"Mrs. Glenda Satterfield","age":64,"location":"Albaport"}},{"attributes":{"name":"Waino Monahan","age":80,"location":"Santa Rosa"}},{"attributes":{"name":"Thelma Schaden DDS","age":58,"location":"Redwood City"}},{"attributes":{"name":"Belinda Carroll","age":39,"location":"Rohnert Park"}},{"attributes":{"name":"Eleanore Breitenberg","age":72,"location":"East Melvinmouth"}},{"attributes":{"name":"Kelli Muller","age":74,"location":"Lake Precious"}},{"attributes":{"name":"Dr. Mona Walker","age":44,"location":"Langworthfield"}},{"attributes":{"name":"Edmund Jakubowski","age":62,"location":"New Shanie"}},{"attributes":{"name":"Dr. Boyd Gleason","age":62,"location":"Blacksburg"}},{"attributes":{"name":"Ginger Moen","age":35,"location":"MacGyverside"}},{"attributes":{"name":"Agustin Keebler","age":56,"location":"Runolfsdottirhaven"}},{"attributes":{"name":"Shelia Borer","age":26,"location":"Port Kamilleberg"}},{"attributes":{"name":"Kara Gutmann","age":80,"location":"West Bradlyberg"}},{"attributes":{"name":"Dorian Klocko","age":79,"location":"VonRuedentown"}},{"attributes":{"name":"Mrs. Penelope Jaskolski","age":45,"location":"San Juan"}},{"attributes":{"name":"Kay Feeney","age":43,"location":"Shannonside"}},{"attributes":{"name":"Vincent Collier","age":49,"location":"Garrickchester"}},{"attributes":{"name":"Katheryn Kris","age":77,"location":"Kendale Lakes"}},{"attributes":{"name":"Edmond Murphy","age":61,"location":"Port Wilton"}},{"attributes":{"name":"Sheryl Reichert","age":33,"location":"San Francisco"}},{"attributes":{"name":"Luke Glover","age":18,"location":"St. Clair Shores"}},{"attributes":{"name":"Kendra Von","age":65,"location":"East Rashad"}},{"attributes":{"name":"Carol MacGyver-Turner","age":29,"location":"Iciefort"}},{"attributes":{"name":"Geoffrey Wintheiser","age":56,"location":"Hackensack"}},{"attributes":{"name":"Annamarie Walsh","age":34,"location":"West Samara"}},{"attributes":{"name":"Bret Huels-Koelpin","age":45,"location":"East Korbin"}},{"attributes":{"name":"Dr. Fernando Brown","age":45,"location":"Jacobsonshire"}},{"attributes":{"name":"Sasha Maggio","age":57,"location":"Wehnertown"}},{"attributes":{"name":"Wallace Rempel","age":24,"location":"Garrettfurt"}},{"attributes":{"name":"Will Kunze","age":59,"location":"Fort Delia"}},{"attributes":{"name":"Carrie Sipes V","age":20,"location":"East Favian"}},{"attributes":{"name":"Bruce Hauck","age":25,"location":"South August"}},{"attributes":{"name":"Cecilia Smitham","age":33,"location":"Fort Jeremystad"}},{"attributes":{"name":"Lyla Botsford","age":23,"location":"Stiedemannville"}},{"attributes":{"name":"Lilla Heller","age":18,"location":"South Khalil"}},{"attributes":{"name":"Matthew Mann","age":19,"location":"Ortizfurt"}},{"attributes":{"name":"Tracy Stehr","age":24,"location":"South Enrico"}},{"attributes":{"name":"Mrs. Rebeka Roberts","age":51,"location":"Eden Prairie"}},{"attributes":{"name":"Zelma Goldner","age":64,"location":"Pfefferport"}},{"attributes":{"name":"Monserrat Pfannerstill","age":73,"location":"East Coopershire"}},{"attributes":{"name":"Estelle Tromp","age":28,"location":"Abbigailmouth"}},{"attributes":{"name":"Eric Bergstrom","age":74,"location":"Minot"}},{"attributes":{"name":"Terry Schmeler","age":76,"location":"Fort Elisabethstad"}},{"attributes":{"name":"Camron Witting","age":69,"location":"Garnetport"}},{"attributes":{"name":"Turner Lemke","age":75,"location":"East Emmaton"}},{"attributes":{"name":"Noel Bartell","age":52,"location":"Fort Magdalenboro"}},{"attributes":{"name":"Elian Hoppe","age":65,"location":"Teaganstad"}},{"attributes":{"name":"Julia Bogisich","age":23,"location":"Kihnshire"}},{"attributes":{"name":"Grady Braun","age":61,"location":"Autumnberg"}},{"attributes":{"name":"Dewey Jakubowski","age":79,"location":"Lillyside"}},{"attributes":{"name":"Tito Schulist","age":20,"location":"Lake Lenniemouth"}},{"attributes":{"name":"Lynette Parisian V","age":21,"location":"St. Joseph"}},{"attributes":{"name":"Cordia Friesen","age":22,"location":"North Imani"}},{"attributes":{"name":"Mr. Delia Weissnat","age":55,"location":"Lake Celinehaven"}},{"attributes":{"name":"Kristy Schmeler V","age":37,"location":"Johnstonworth"}},{"attributes":{"name":"Darla Treutel","age":68,"location":"Johnsstead"}},{"attributes":{"name":"Mr. Jesse Glover","age":77,"location":"Brownsville"}},{"attributes":{"name":"Irma Dicki","age":78,"location":"Narcisoworth"}},{"attributes":{"name":"Vella Pacocha","age":73,"location":"East Kathlynland"}},{"attributes":{"name":"Cecil Purdy","age":23,"location":"West Eugenia"}},{"attributes":{"name":"Dr. Abagail Weimann","age":78,"location":"Port Heidi"}},{"attributes":{"name":"Nellie Murazik","age":66,"location":"East Maryjane"}},{"attributes":{"name":"Mr. Lee Reichel","age":19,"location":"Lenexa"}},{"attributes":{"name":"Roy Hahn","age":63,"location":"Halvorsonview"}},{"attributes":{"name":"Kelvin Weber","age":48,"location":"Fort Shania"}},{"attributes":{"name":"Demond Mraz","age":21,"location":"Vicentaport"}},{"attributes":{"name":"Glenda Harvey","age":22,"location":"South Margaretburgh"}},{"attributes":{"name":"Giovanna Quigley","age":40,"location":"Bothell"}},{"attributes":{"name":"Raphael Kemmer","age":51,"location":"Russelcester"}},{"attributes":{"name":"Celestino Schoen","age":74,"location":"Carolynefort"}},{"attributes":{"name":"Marlon Carter","age":59,"location":"Samirport"}},{"attributes":{"name":"Guillermo Powlowski","age":77,"location":"Lake London"}},{"attributes":{"name":"Rosie Ankunding","age":34,"location":"East Justineburgh"}},{"attributes":{"name":"Lloyd Padberg","age":45,"location":"Boganhaven"}},{"attributes":{"name":"Rudolph Dickens-Pfeffer","age":36,"location":"East Chynaville"}},{"attributes":{"name":"Irene Kautzer","age":56,"location":"East Christopchester"}},{"attributes":{"name":"Phyllis Terry","age":47,"location":"South Haileeport"}},{"attributes":{"name":"Mr. Burdette Huels","age":34,"location":"New Kaychester"}},{"attributes":{"name":"Pauline Schamberger","age":65,"location":"West Ellaborough"}},{"attributes":{"name":"Roxanne Quigley DDS","age":72,"location":"Erwinshire"}},{"attributes":{"name":"Jonathan Homenick","age":25,"location":"East Leilaniport"}},{"attributes":{"name":"Jason Franecki","age":31,"location":"Fort Trenton"}},{"attributes":{"name":"Delilah Abshire","age":60,"location":"West Madelynn"}},{"attributes":{"name":"Guadalupe Hammes","age":54,"location":"Vandervortmouth"}},{"attributes":{"name":"Austin Hettinger","age":33,"location":"Croninview"}},{"attributes":{"name":"Joyce Towne","age":46,"location":"Lake Adolfport"}},{"attributes":{"name":"Renee Kuvalis","age":64,"location":"East Scottietown"}},{"attributes":{"name":"Kristian Kshlerin","age":59,"location":"East Ericka"}},{"attributes":{"name":"Roberto Marvin","age":60,"location":"Fort Holliestead"}},{"attributes":{"name":"Skye Williamson","age":33,"location":"Bartoletticester"}},{"attributes":{"name":"Pamela Wuckert","age":70,"location":"Haleyfield"}},{"attributes":{"name":"Sonia Altenwerth","age":61,"location":"Niaburgh"}},{"attributes":{"name":"Rosemary Johnston","age":21,"location":"North Tamia"}},{"attributes":{"name":"Abraham Bernhard","age":37,"location":"Hayward"}},{"attributes":{"name":"Aiyana McLaughlin","age":44,"location":"Lake Mohammad"}},{"attributes":{"name":"Louise Bayer","age":57,"location":"New Kaseycester"}},{"attributes":{"name":"Norman Hansen V","age":79,"location":"Anaisbury"}},{"attributes":{"name":"Olive Deckow","age":67,"location":"Lavonnestad"}},{"attributes":{"name":"Darryl Jerde","age":22,"location":"Kieracester"}},{"attributes":{"name":"Alexys Konopelski","age":23,"location":"Fort Fabiola"}},{"attributes":{"name":"Elisa Davis","age":60,"location":"East Lazaro"}},{"attributes":{"name":"Minnie Marvin","age":54,"location":"New Coltland"}},{"attributes":{"name":"Miss Wanda Hauck","age":59,"location":"Katherynport"}},{"attributes":{"name":"Adolfo Boehm","age":36,"location":"Bryan"}},{"attributes":{"name":"Miss Nichole Heidenreich","age":20,"location":"South Arjunfort"}},{"attributes":{"name":"Blanche Renner","age":36,"location":"Sengerview"}},{"attributes":{"name":"Laurence Haley","age":20,"location":"Fort Cadeborough"}},{"attributes":{"name":"Candida Heaney-Metz","age":80,"location":"Hemet"}},{"attributes":{"name":"Miranda Bernier","age":72,"location":"Wisozkchester"}},{"attributes":{"name":"Damon DuBuque","age":19,"location":"Deestad"}},{"attributes":{"name":"Tanya Willms","age":20,"location":"Fort Austen"}},{"attributes":{"name":"Seth Johnston","age":57,"location":"West Elwyn"}},{"attributes":{"name":"Melinda Morar","age":59,"location":"Bedford"}},{"attributes":{"name":"Jacqueline Auer","age":37,"location":"North Miami"}},{"attributes":{"name":"Lon Lynch","age":49,"location":"Reynoldstown"}},{"attributes":{"name":"Arvilla Gutkowski DVM","age":20,"location":"Port Karineport"}},{"attributes":{"name":"Linnie Mueller","age":41,"location":"McGlynnview"}},{"attributes":{"name":"Odell Goodwin PhD","age":70,"location":"Fort Adrien"}},{"attributes":{"name":"Rosie Gerlach","age":58,"location":"Watsicaworth"}},{"attributes":{"name":"Kenny Sawayn","age":27,"location":"North Gianni"}},{"attributes":{"name":"Deron Ortiz","age":77,"location":"Littleside"}},{"attributes":{"name":"Dandre Walter","age":57,"location":"North Lysannebury"}},{"attributes":{"name":"Sally Tillman","age":58,"location":"East Herbertboro"}},{"attributes":{"name":"Lyric Hintz","age":23,"location":"D'Amoreborough"}},{"attributes":{"name":"Darnell Renner","age":68,"location":"Fort Krystina"}},{"attributes":{"name":"Jan Williamson","age":21,"location":"Lefflercester"}},{"attributes":{"name":"Russell Runolfsdottir","age":42,"location":"Fannyville"}},{"attributes":{"name":"Osborne Bailey","age":25,"location":"Fort Jarrodstad"}},{"attributes":{"name":"Holly Stoltenberg","age":46,"location":"Beerhaven"}},{"attributes":{"name":"Dr. Andrea Larson","age":79,"location":"North Kennedi"}},{"attributes":{"name":"Don Kozey-Stracke","age":50,"location":"New Caseyburgh"}},{"attributes":{"name":"Tommy Gorczany","age":25,"location":"Fort Alvena"}},{"attributes":{"name":"Alvin King V","age":36,"location":"Ryancester"}},{"attributes":{"name":"Laura Beahan","age":75,"location":"Jakubowskiburgh"}},{"attributes":{"name":"Marco Schroeder","age":74,"location":"West Babylon"}},{"attributes":{"name":"Hope Bauch Jr.","age":74,"location":"New Andre"}},{"attributes":{"name":"Mrs. Mae Stracke","age":49,"location":"New Gudrunbury"}},{"attributes":{"name":"Donnie Kunze Jr.","age":76,"location":"South Brendanfurt"}},{"attributes":{"name":"Royal Douglas I","age":61,"location":"East Wilhelminefort"}},{"attributes":{"name":"Laisha Cassin","age":49,"location":"Fort Pierce"}},{"attributes":{"name":"Laurence Hilpert","age":66,"location":"Bellflower"}},{"attributes":{"name":"Mathew Littel","age":51,"location":"Huntington"}},{"attributes":{"name":"Johanna Quigley","age":18,"location":"Onabury"}},{"attributes":{"name":"Marlon Price","age":19,"location":"Hodkiewiczchester"}},{"attributes":{"name":"Mackenzie Bins","age":33,"location":"Daly City"}},{"attributes":{"name":"Julius Douglas","age":42,"location":"North Elyse"}},{"attributes":{"name":"Shawn Weissnat","age":35,"location":"Ozellaworth"}},{"attributes":{"name":"Nancy Dach","age":37,"location":"Reedburgh"}},{"attributes":{"name":"Walter Greenholt","age":65,"location":"West Joanymouth"}},{"attributes":{"name":"Edison Koelpin","age":52,"location":"Ursulaside"}},{"attributes":{"name":"Kenyatta Shields Sr.","age":18,"location":"Bernierport"}},{"attributes":{"name":"Claude Moore-Haag","age":40,"location":"North Billymouth"}},{"attributes":{"name":"Rubie Keebler","age":57,"location":"East Calliefurt"}},{"attributes":{"name":"Erik Weimann","age":29,"location":"East Lorishire"}},{"attributes":{"name":"Dorothy Pollich","age":41,"location":"Collinscester"}},{"attributes":{"name":"Colin Davis","age":62,"location":"New Richardchester"}},{"attributes":{"name":"Susie Mante","age":72,"location":"Jamaalmouth"}},{"attributes":{"name":"Mrs. Brian Murphy","age":61,"location":"Port Zitaview"}},{"attributes":{"name":"Everett Sawayn","age":23,"location":"Lake Destinee"}},{"attributes":{"name":"Melissa Rath","age":40,"location":"Greenholtstad"}},{"attributes":{"name":"Liza Hickle","age":65,"location":"North Rupert"}},{"attributes":{"name":"Roxanne Blanda","age":73,"location":"Wiegandworth"}},{"attributes":{"name":"Jadon DuBuque","age":76,"location":"Port Rubye"}},{"attributes":{"name":"Kenny Walsh PhD","age":71,"location":"Frisco"}},{"attributes":{"name":"Terry Haag","age":19,"location":"East Lavonfort"}},{"attributes":{"name":"Stanton Kuhlman","age":61,"location":"South Deron"}},{"attributes":{"name":"Arlene Mills","age":55,"location":"Lake Christy"}},{"attributes":{"name":"Kennedy Schultz DDS","age":66,"location":"Assuntaberg"}},{"attributes":{"name":"Harvey Schuppe","age":44,"location":"Port Carleeworth"}},{"attributes":{"name":"Rashawn Klocko","age":53,"location":"West Davonte"}},{"attributes":{"name":"Clyde Strosin PhD","age":66,"location":"New Adeliaview"}},{"attributes":{"name":"Christopher Dickinson","age":68,"location":"Lake Reyes"}},{"attributes":{"name":"Dr. Hannah Batz-Friesen","age":32,"location":"West Augustineland"}},{"attributes":{"name":"Jeanne Schultz","age":29,"location":"Hesselberg"}},{"attributes":{"name":"Johnnie Crooks","age":72,"location":"Winstonmouth"}},{"attributes":{"name":"Marlee Littel","age":25,"location":"Fidelstad"}},{"attributes":{"name":"Sharon Koepp","age":46,"location":"Gabriellaton"}},{"attributes":{"name":"Arturo Goyette II","age":62,"location":"Lindseyview"}},{"attributes":{"name":"Johanna Haley","age":26,"location":"Gregoriafield"}},{"attributes":{"name":"Stacy Hamill","age":78,"location":"Grimeston"}},{"attributes":{"name":"Cleveland Herman","age":53,"location":"Mariafort"}},{"attributes":{"name":"Martin Lesch","age":18,"location":"Jimmybury"}},{"attributes":{"name":"Mattie Halvorson","age":49,"location":"Sandy Springs"}},{"attributes":{"name":"Chester Olson-Bernier","age":71,"location":"New Elissa"}},{"attributes":{"name":"Mona Collins","age":18,"location":"Reichelberg"}},{"attributes":{"name":"Dr. Ivy Powlowski","age":38,"location":"East Kian"}},{"attributes":{"name":"Syble Blick DDS","age":62,"location":"Middletown"}},{"attributes":{"name":"Darlene Bogisich","age":57,"location":"Conroycester"}},{"attributes":{"name":"Meredith Zboncak","age":20,"location":"West Lesley"}},{"attributes":{"name":"Kent Bins","age":45,"location":"Reichertburgh"}},{"attributes":{"name":"May Stokes Sr.","age":42,"location":"West Elaina"}},{"attributes":{"name":"Shannon Kautzer","age":25,"location":"Rosannamouth"}},{"attributes":{"name":"Dr. Lonnie Leffler","age":19,"location":"Lake Maxiemouth"}},{"attributes":{"name":"Alvera Beatty IV","age":58,"location":"Josianeside"}},{"attributes":{"name":"Bennie Parker","age":21,"location":"North Eugenestad"}},{"attributes":{"name":"Angel Goodwin","age":57,"location":"Emersonboro"}},{"attributes":{"name":"Elenor McGlynn-Ernser","age":51,"location":"Abernathytown"}},{"attributes":{"name":"Preston Goldner","age":37,"location":"West Luisaville"}},{"attributes":{"name":"Trevor Waters","age":49,"location":"Mrazhaven"}},{"attributes":{"name":"Ardith Jakubowski","age":70,"location":"Sunnyvale"}},{"attributes":{"name":"Carol Keebler","age":78,"location":"Dearborn"}},{"attributes":{"name":"Dr. Silvia Halvorson","age":47,"location":"Vernaboro"}},{"attributes":{"name":"Annabell Goldner","age":63,"location":"McAllen"}},{"attributes":{"name":"Gregorio Koelpin","age":45,"location":"Franeyview"}},{"attributes":{"name":"Maegan Dare","age":43,"location":"North Marcostown"}},{"attributes":{"name":"Carole Nolan","age":50,"location":"Abernathyfield"}},{"attributes":{"name":"Regan Schulist","age":67,"location":"Armstrongburgh"}},{"attributes":{"name":"Heidi Schuppe","age":31,"location":"West Korey"}},{"attributes":{"name":"Mr. Gerald Jones MD","age":33,"location":"Schoenfield"}},{"attributes":{"name":"Tonya Kozey-Haley","age":63,"location":"Torphyville"}},{"attributes":{"name":"Rocio Moore","age":41,"location":"Port Jevonfurt"}},{"attributes":{"name":"Juan Keebler","age":26,"location":"Predovicville"}},{"attributes":{"name":"Tim King","age":52,"location":"Fort Rosamondboro"}},{"attributes":{"name":"Sophia Crist Jr.","age":71,"location":"West Micah"}},{"attributes":{"name":"Marta Stehr","age":23,"location":"Schneiderbury"}},{"attributes":{"name":"Willis Gerhold","age":73,"location":"Fort Lenora"}},{"attributes":{"name":"Mr. Peyton Heller","age":26,"location":"Fort Adeliaport"}},{"attributes":{"name":"Alison Schulist","age":79,"location":"Ratketon"}},{"attributes":{"name":"Carey Mayert","age":52,"location":"Sugar Land"}},{"attributes":{"name":"Marco Blanda","age":70,"location":"Dearborn"}},{"attributes":{"name":"Thelma Hansen","age":48,"location":"Green Bay"}},{"attributes":{"name":"Nelson Hagenes","age":57,"location":"Purdyborough"}},{"attributes":{"name":"Asha Greenholt","age":57,"location":"Tamiami"}},{"attributes":{"name":"Leonard Leuschke","age":78,"location":"Antonetteside"}},{"attributes":{"name":"Mattie Auer","age":60,"location":"Lake Ednafield"}},{"attributes":{"name":"Marcella Kiehn","age":51,"location":"New Sigurd"}},{"attributes":{"name":"Fae Stark","age":48,"location":"Lynchfield"}},{"attributes":{"name":"Danny Von","age":80,"location":"Barrettberg"}},{"attributes":{"name":"Dianna Kunze MD","age":71,"location":"North Alethafort"}},{"attributes":{"name":"Elizabeth Frami","age":27,"location":"Grahamstead"}},{"attributes":{"name":"Erin Kling","age":37,"location":"Stephaniahaven"}},{"attributes":{"name":"Harriet Schmitt","age":52,"location":"Meriden"}},{"attributes":{"name":"Rashad Smitham","age":42,"location":"Amirashire"}},{"attributes":{"name":"Mrs. Zander Douglas","age":73,"location":"East Kingworth"}},{"attributes":{"name":"Ivan Pollich","age":42,"location":"East Luigifurt"}},{"attributes":{"name":"Belinda Crona","age":69,"location":"Sugar Land"}},{"attributes":{"name":"Dr. Rossie Marvin","age":39,"location":"Fort Jerryburgh"}},{"attributes":{"name":"Dusty Bergstrom","age":62,"location":"West Des Moines"}},{"attributes":{"name":"Emmanuelle Rowe","age":35,"location":"Koelpinfield"}},{"attributes":{"name":"Drew Turcotte","age":50,"location":"Eulaliaside"}},{"attributes":{"name":"Mr. Luther Kovacek","age":29,"location":"Pontiac"}},{"attributes":{"name":"Mrs. Kevin Powlowski","age":30,"location":"Travonport"}},{"attributes":{"name":"Mr. Jayson Thiel","age":40,"location":"South Julesbury"}},{"attributes":{"name":"Wade Sauer-Jaskolski","age":62,"location":"Corneliusberg"}},{"attributes":{"name":"Dennis Jenkins III","age":43,"location":"Buffalo Grove"}},{"attributes":{"name":"Tracey Denesik-Collier","age":59,"location":"Pensacola"}},{"attributes":{"name":"Name Gleichner","age":31,"location":"Kemmerstad"}},{"attributes":{"name":"Eliezer Schmidt","age":73,"location":"Luciochester"}},{"attributes":{"name":"Kristina Weber","age":70,"location":"Deliaville"}},{"attributes":{"name":"Daniela Willms","age":26,"location":"Smithshire"}},{"attributes":{"name":"Sheldon Hauck","age":25,"location":"Darianmouth"}},{"attributes":{"name":"Chadrick Beer IV","age":21,"location":"Mullerboro"}},{"attributes":{"name":"Shirley Feest-Harber","age":56,"location":"Springdale"}},{"attributes":{"name":"Lula Altenwerth","age":49,"location":"Karleybury"}},{"attributes":{"name":"Keely Hartmann","age":55,"location":"Levittown"}},{"attributes":{"name":"Cory Kertzmann","age":56,"location":"Sophieberg"}},{"attributes":{"name":"Katrina Smith","age":71,"location":"Rohanland"}},{"attributes":{"name":"Steven Bartoletti","age":52,"location":"Hialeah"}},{"attributes":{"name":"Ms. Stanford Blick","age":74,"location":"Stamford"}},{"attributes":{"name":"Dominic Hodkiewicz","age":29,"location":"Geovannystead"}},{"attributes":{"name":"Mr. Shanny Raynor","age":70,"location":"Palmdale"}},{"attributes":{"name":"Angel Auer","age":53,"location":"Oakland"}},{"attributes":{"name":"Tobin Leffler","age":59,"location":"East Magali"}},{"attributes":{"name":"Sherry Ryan","age":19,"location":"New Hellen"}},{"attributes":{"name":"Conner Volkman","age":24,"location":"East Rosendo"}},{"attributes":{"name":"Billie Ullrich","age":40,"location":"Downey"}},{"attributes":{"name":"Melanie Keebler","age":41,"location":"Ceres"}},{"attributes":{"name":"Steve Wehner","age":68,"location":"New Alenaside"}},{"attributes":{"name":"Louis Bailey IV","age":48,"location":"Brakusborough"}},{"attributes":{"name":"Aaron Roberts","age":27,"location":"Anaheim"}},{"attributes":{"name":"Jessie Hickle-Spencer","age":77,"location":"Abshireport"}},{"attributes":{"name":"Miss Alice Price","age":74,"location":"Maggioboro"}},{"attributes":{"name":"Cesar Beahan","age":19,"location":"Nathanaelcester"}},{"attributes":{"name":"Tevin Feil","age":71,"location":"Lake Nickolasfurt"}},{"attributes":{"name":"Audra Hayes-Hane","age":79,"location":"Schusterville"}},{"attributes":{"name":"Bertram Klocko","age":68,"location":"Metzberg"}},{"attributes":{"name":"Mr. Ivan Bosco","age":54,"location":"West Ana"}},{"attributes":{"name":"Wilbur Cormier","age":61,"location":"North Lucyland"}},{"attributes":{"name":"Joseph Lubowitz","age":30,"location":"Euless"}},{"attributes":{"name":"Luis Schmeler","age":41,"location":"Lake Deonte"}},{"attributes":{"name":"Ron Kozey","age":31,"location":"Elinoreton"}},{"attributes":{"name":"Barbara Dach","age":32,"location":"West Icie"}},{"attributes":{"name":"Elyssa Kling","age":62,"location":"North Kyra"}},{"attributes":{"name":"Gabriel Powlowski","age":68,"location":"West Dashawnview"}},{"attributes":{"name":"Kenny Abernathy-Schultz","age":70,"location":"East Oceanemouth"}},{"attributes":{"name":"Miss Floyd Rath","age":68,"location":"Irvine"}},{"attributes":{"name":"Ivory Daniel","age":47,"location":"South Nella"}},{"attributes":{"name":"Ms. Sharon Schumm","age":18,"location":"New Rafaelville"}},{"attributes":{"name":"Bria Schaefer","age":18,"location":"Hartford"}},{"attributes":{"name":"Ibrahim Reichert","age":28,"location":"New Deshawn"}},{"attributes":{"name":"Osbaldo Hirthe Jr.","age":35,"location":"New Quincy"}},{"attributes":{"name":"Evelyn Hirthe I","age":18,"location":"Laguna Niguel"}},{"attributes":{"name":"Wilfred Murazik","age":80,"location":"Fort Christiana"}},{"attributes":{"name":"Houston Walsh DDS","age":24,"location":"Osinskiton"}},{"attributes":{"name":"Ted Kautzer","age":23,"location":"East Alvinaport"}},{"attributes":{"name":"Ollie Kreiger","age":20,"location":"Independence"}},{"attributes":{"name":"Ella Bahringer","age":22,"location":"Emmerichshire"}},{"attributes":{"name":"Seth Mayert-Collier","age":77,"location":"Obieboro"}},{"attributes":{"name":"Vincenza Grady","age":51,"location":"Jackson"}},{"attributes":{"name":"Talon Langosh","age":25,"location":"Twin Falls"}},{"attributes":{"name":"Alf Mayert","age":32,"location":"East Zander"}},{"attributes":{"name":"Houston Lind","age":35,"location":"Fort Haylie"}},{"attributes":{"name":"Bryana Hegmann","age":45,"location":"Rueckerworth"}},{"attributes":{"name":"Lyle Ondricka","age":61,"location":"Lubbock"}},{"attributes":{"name":"Jack Hermiston III","age":73,"location":"Hilo"}},{"attributes":{"name":"Vickie Rice","age":37,"location":"Wittingville"}},{"attributes":{"name":"Mr. Garry Thompson","age":20,"location":"Riverview"}},{"attributes":{"name":"Carli Cummerata","age":48,"location":"Roseville"}},{"attributes":{"name":"Erica Bins","age":21,"location":"Cristberg"}},{"attributes":{"name":"Camila Kemmer","age":73,"location":"North Joannieboro"}},{"attributes":{"name":"Shawn Torphy","age":46,"location":"Ludieburgh"}},{"attributes":{"name":"Yasmin Walker","age":22,"location":"Lednerchester"}},{"attributes":{"name":"Christophe Miller-Cruickshank","age":77,"location":"South Tessie"}},{"attributes":{"name":"Mervin Lesch","age":72,"location":"Feilburgh"}},{"attributes":{"name":"Fredrick Watsica","age":50,"location":"Savannah"}},{"attributes":{"name":"Kathleen Grimes","age":40,"location":"Kayaton"}},{"attributes":{"name":"Emilio Wiza","age":73,"location":"Kleinchester"}},{"attributes":{"name":"Malcolm Collins","age":28,"location":"Franeckiborough"}},{"attributes":{"name":"Helen Becker","age":73,"location":"Adammouth"}},{"attributes":{"name":"Assunta Conn","age":64,"location":"Fairfield"}},{"attributes":{"name":"Mr. Glenn Rodriguez","age":26,"location":"New Scotty"}},{"attributes":{"name":"Michael Koch","age":32,"location":"Rogahnburgh"}},{"attributes":{"name":"Sadye Leuschke","age":61,"location":"New Connorville"}},{"attributes":{"name":"Wilson Monahan","age":74,"location":"East Melba"}},{"attributes":{"name":"Esther Schinner","age":41,"location":"New Otto"}},{"attributes":{"name":"Dewey Rosenbaum","age":43,"location":"Lake Michelechester"}},{"attributes":{"name":"Mr. Grant McLaughlin","age":45,"location":"Fort Emmittport"}},{"attributes":{"name":"Eva Jenkins","age":58,"location":"Lake Sarah"}},{"attributes":{"name":"Mr. Margret Grant","age":48,"location":"Dickenschester"}},{"attributes":{"name":"Lenna Marvin","age":36,"location":"Lake Ridge"}},{"attributes":{"name":"Thora Erdman","age":24,"location":"Goyetteland"}},{"attributes":{"name":"Ms. Christina Casper","age":59,"location":"North Kattie"}},{"attributes":{"name":"Peggy Braun","age":19,"location":"Theresestead"}},{"attributes":{"name":"Merle Balistreri","age":39,"location":"Boca Raton"}},{"attributes":{"name":"Stacey Bednar","age":53,"location":"West Armando"}},{"attributes":{"name":"Tommie Olson","age":46,"location":"Lake Orphaworth"}},{"attributes":{"name":"Abdul Sporer","age":68,"location":"Lake Lenorachester"}},{"attributes":{"name":"Lynn Schiller","age":49,"location":"Buffalo"}},{"attributes":{"name":"Eva Homenick","age":58,"location":"South Alta"}},{"attributes":{"name":"Lynn Wisozk","age":20,"location":"Narcisofield"}},{"attributes":{"name":"Dale Beier","age":41,"location":"Spring Valley"}},{"attributes":{"name":"Eduardo Baumbach","age":69,"location":"South Gate"}},{"attributes":{"name":"Hector Gulgowski","age":27,"location":"South Carlihaven"}},{"attributes":{"name":"Mindy Zieme","age":76,"location":"New Ashabury"}},{"attributes":{"name":"Rhonda Schultz","age":68,"location":"North Evert"}},{"attributes":{"name":"Marguerite Rutherford","age":52,"location":"New Mariloustead"}},{"attributes":{"name":"Dr. Dena Schmitt MD","age":44,"location":"Port Faeside"}},{"attributes":{"name":"Ann Senger II","age":39,"location":"North Kaylaview"}},{"attributes":{"name":"Skyla Nikolaus","age":29,"location":"Fort Boydberg"}},{"attributes":{"name":"Rachel Howell","age":67,"location":"Elviefort"}},{"attributes":{"name":"Giovanna Krajcik","age":21,"location":"Starkshire"}},{"attributes":{"name":"Jaime Wisozk","age":57,"location":"Porterville"}},{"attributes":{"name":"Ella McCullough","age":24,"location":"North Oceaneboro"}},{"attributes":{"name":"Zula Gibson","age":63,"location":"Rodrickhaven"}},{"attributes":{"name":"Herbert Vandervort","age":65,"location":"Kesslerstead"}},{"attributes":{"name":"Olive Paucek","age":49,"location":"Santiagobury"}},{"attributes":{"name":"Ms. Elsa Lebsack","age":52,"location":"West Della"}},{"attributes":{"name":"Essie Purdy","age":78,"location":"Pomona"}},{"attributes":{"name":"Ramon Cremin Jr.","age":73,"location":"Broken Arrow"}},{"attributes":{"name":"Abel Rodriguez","age":55,"location":"Linaland"}},{"attributes":{"name":"Clay Toy","age":33,"location":"Lake Frank"}},{"attributes":{"name":"Miss Yasmeen Strosin V","age":62,"location":"Enricoport"}},{"attributes":{"name":"Jerod Price","age":39,"location":"Fort Trey"}},{"attributes":{"name":"Dr. Levi Muller","age":50,"location":"Gleichnermouth"}},{"attributes":{"name":"Allie Conn","age":25,"location":"Fort Aida"}},{"attributes":{"name":"Alfonso Fahey","age":24,"location":"South Sibylmouth"}},{"attributes":{"name":"Toni Sanford","age":55,"location":"Fort Jerad"}},{"attributes":{"name":"Rose Connelly","age":28,"location":"Catherineview"}},{"attributes":{"name":"Ms. Godfrey Conroy","age":73,"location":"Kilbackhaven"}},{"attributes":{"name":"Vernice Collier","age":73,"location":"Aryannahaven"}},{"attributes":{"name":"Marta Cummerata","age":76,"location":"Efrenside"}},{"attributes":{"name":"Morris Reinger","age":79,"location":"Port Tremaine"}},{"attributes":{"name":"Alfred Jaskolski Sr.","age":26,"location":"Whiteside"}},{"attributes":{"name":"Ms. Rose Klein Jr.","age":45,"location":"East Anastaciochester"}},{"attributes":{"name":"Kaylin Greenholt PhD","age":37,"location":"Moline"}},{"attributes":{"name":"Emil Smith MD","age":58,"location":"South Billie"}},{"attributes":{"name":"Kyle Hackett","age":52,"location":"Hermannbury"}},{"attributes":{"name":"Kristopher Barton","age":58,"location":"Emiechester"}},{"attributes":{"name":"Rita McDermott","age":52,"location":"Camden"}},{"attributes":{"name":"Jerrod Baumbach","age":64,"location":"Greenville"}},{"attributes":{"name":"Mack Breitenberg","age":38,"location":"East Minnieboro"}},{"attributes":{"name":"Micheal Huels","age":21,"location":"Fredaville"}},{"attributes":{"name":"Alfred Wehner","age":19,"location":"Considineburgh"}},{"attributes":{"name":"Anabel Pfeffer","age":57,"location":"Lake Martin"}},{"attributes":{"name":"Bennett Balistreri","age":63,"location":"East Gardner"}},{"attributes":{"name":"Quentin Torp","age":75,"location":"West Cydneyfort"}},{"attributes":{"name":"Delia Leuschke","age":39,"location":"Armstrongstad"}},{"attributes":{"name":"Douglas Howe","age":44,"location":"Fort Darenside"}},{"attributes":{"name":"Tommy Gleichner","age":54,"location":"West Otha"}},{"attributes":{"name":"Jesus Franey","age":42,"location":"Ednatown"}},{"attributes":{"name":"Winston Turner","age":34,"location":"Shoreline"}},{"attributes":{"name":"Rodrick Stiedemann","age":50,"location":"South Evanfort"}},{"attributes":{"name":"Dr. Rosa Cormier","age":24,"location":"Killeen"}},{"attributes":{"name":"Katherine Lesch","age":31,"location":"North Kaileeboro"}},{"attributes":{"name":"Josefina McKenzie","age":62,"location":"South Curtisfield"}},{"attributes":{"name":"Dr. Jerry Mills","age":70,"location":"Lake Havasu City"}},{"attributes":{"name":"Mr. Lonnie Abernathy","age":20,"location":"Moore"}},{"attributes":{"name":"Rita Kreiger","age":19,"location":"Helmerboro"}},{"attributes":{"name":"Lynn Goodwin-West","age":25,"location":"Lake Hallechester"}},{"attributes":{"name":"Mark Klein-Howell","age":33,"location":"Schummburgh"}},{"attributes":{"name":"Onie Cruickshank MD","age":41,"location":"Lake Jamelfurt"}},{"attributes":{"name":"Andres Nader","age":22,"location":"Schmidtborough"}},{"attributes":{"name":"Catharine Daugherty","age":44,"location":"Novato"}},{"attributes":{"name":"Norma Klocko-Lehner","age":76,"location":"Dionland"}},{"attributes":{"name":"Declan Tromp PhD","age":46,"location":"East Laurynport"}},{"attributes":{"name":"Brandi Lang","age":79,"location":"Berkeley"}},{"attributes":{"name":"Rodney Predovic","age":33,"location":"Nigelside"}},{"attributes":{"name":"Jewel Turcotte","age":34,"location":"Enterprise"}},{"attributes":{"name":"Leland O'Hara","age":59,"location":"Strosincester"}},{"attributes":{"name":"Samson Raynor","age":70,"location":"West Tyler"}},{"attributes":{"name":"Rodolfo Miller II","age":60,"location":"Estrellachester"}},{"attributes":{"name":"Edwin Denesik","age":24,"location":"Kiehnview"}},{"attributes":{"name":"Shirley Cole","age":29,"location":"East Bernitaburgh"}},{"attributes":{"name":"Gloria VonRueden","age":51,"location":"Independence"}},{"attributes":{"name":"Dr. Conner Medhurst","age":49,"location":"South Elisabethside"}},{"attributes":{"name":"Violet Hackett","age":57,"location":"Lake Ridge"}},{"attributes":{"name":"Federico Kertzmann","age":73,"location":"Wunschport"}},{"attributes":{"name":"Mr. Royal Schowalter","age":36,"location":"New Lonieton"}},{"attributes":{"name":"Monique Glover","age":76,"location":"New Clevecester"}},{"attributes":{"name":"Layne Swift","age":18,"location":"Kentwood"}},{"attributes":{"name":"Mrs. Madge Bashirian","age":54,"location":"East Wilford"}},{"attributes":{"name":"Marcel Mayert","age":31,"location":"Dietrichburgh"}},{"attributes":{"name":"Gianni Graham","age":53,"location":"South Floy"}},{"attributes":{"name":"Philip Wilkinson I","age":27,"location":"West Joan"}},{"attributes":{"name":"Beulah Dach","age":54,"location":"Fort Skyefield"}},{"attributes":{"name":"Howell Wiegand DVM","age":44,"location":"Port Hillary"}},{"attributes":{"name":"Ismael Abbott","age":29,"location":"Overland Park"}},{"attributes":{"name":"Marta Schultz-Marquardt","age":45,"location":"New Verna"}},{"attributes":{"name":"Domingo Davis","age":80,"location":"Nanniecester"}},{"attributes":{"name":"Nichole Dach","age":57,"location":"Fort Bernhard"}},{"attributes":{"name":"Susie Braun","age":75,"location":"East Rozella"}},{"attributes":{"name":"Opal Armstrong","age":20,"location":"Heberhaven"}},{"attributes":{"name":"Mr. Kurt Frami","age":26,"location":"North Jeffrey"}},{"attributes":{"name":"Gustavo Romaguera","age":68,"location":"San Tan Valley"}},{"attributes":{"name":"Lorena Zulauf PhD","age":45,"location":"New Brookland"}},{"attributes":{"name":"Dr. Gertrude Gerhold","age":68,"location":"Sauershire"}},{"attributes":{"name":"Irma Hilll IV","age":76,"location":"Port Gabe"}},{"attributes":{"name":"Paxton Kuphal II","age":52,"location":"Braxtonmouth"}},{"attributes":{"name":"Amber Wilderman","age":34,"location":"Vacaville"}},{"attributes":{"name":"Mr. Ervin Herzog","age":56,"location":"Buckridgeshire"}},{"attributes":{"name":"Dr. Gaetano Ondricka","age":67,"location":"Lake Shanachester"}},{"attributes":{"name":"Clay Schinner","age":78,"location":"North Aidanhaven"}},{"attributes":{"name":"Fannie Daugherty","age":76,"location":"Xavierland"}},{"attributes":{"name":"Becky Roberts","age":54,"location":"Folsom"}},{"attributes":{"name":"Mrs. Sonja Bergnaum","age":80,"location":"Torpchester"}},{"attributes":{"name":"Samara Bergstrom","age":54,"location":"Fort Marahaven"}},{"attributes":{"name":"Alberta Crist","age":21,"location":"Hahnton"}},{"attributes":{"name":"Norbert Fadel IV","age":39,"location":"South Jarrodstad"}},{"attributes":{"name":"Kerry Schuster","age":60,"location":"Dayton"}},{"attributes":{"name":"Dr. Anne Greenholt","age":34,"location":"Schmidtchester"}},{"attributes":{"name":"Krystina Feil","age":29,"location":"Luettgenside"}},{"attributes":{"name":"Orlando Mayert Sr.","age":51,"location":"Catalinaport"}},{"attributes":{"name":"Raleigh Veum","age":18,"location":"West Maye"}},{"attributes":{"name":"Wm Mraz","age":28,"location":"Herminiostad"}},{"attributes":{"name":"Ann Hoeger","age":40,"location":"Fort Koreycester"}},{"attributes":{"name":"Ted Crona","age":47,"location":"Aaliyahland"}},{"attributes":{"name":"Mr. Neil Balistreri","age":63,"location":"Temecula"}},{"attributes":{"name":"Dominic Funk","age":73,"location":"Fort Martina"}},{"attributes":{"name":"Adam Oberbrunner","age":25,"location":"Port Martina"}},{"attributes":{"name":"Mr. Ricardo Blanda","age":39,"location":"San Mateo"}},{"attributes":{"name":"Moses Barton","age":66,"location":"Katherinehaven"}},{"attributes":{"name":"Forrest Frami","age":40,"location":"Port Bertram"}},{"attributes":{"name":"Lucas Wintheiser","age":78,"location":"South Brooklyn"}},{"attributes":{"name":"Jody Dietrich","age":38,"location":"Norwalk"}},{"attributes":{"name":"Jordane Grady","age":78,"location":"Reillyfield"}},{"attributes":{"name":"Roxanne Kirlin","age":63,"location":"Garland"}},{"attributes":{"name":"Meaghan Turcotte","age":22,"location":"Port Aubree"}},{"attributes":{"name":"Kayleigh Schultz","age":56,"location":"Ellicott City"}},{"attributes":{"name":"Oleta Legros","age":61,"location":"Johannfort"}},{"attributes":{"name":"Lina Kub","age":39,"location":"Stromanhaven"}},{"attributes":{"name":"Providenci Borer","age":77,"location":"Hesselton"}},{"attributes":{"name":"Megan Kris","age":57,"location":"Lake Hassan"}},{"attributes":{"name":"Billy Armstrong","age":47,"location":"Lake Damien"}},{"attributes":{"name":"Kathleen Breitenberg","age":25,"location":"Moenbury"}},{"attributes":{"name":"Mr. John O'Conner II","age":61,"location":"Buckeye"}},{"attributes":{"name":"Delores Ankunding","age":79,"location":"Whittier"}},{"attributes":{"name":"Willis Lueilwitz-Frami","age":60,"location":"Torphyland"}},{"attributes":{"name":"Terry Wolf","age":24,"location":"Gleasonfort"}},{"attributes":{"name":"Dr. Brent Kunze V","age":46,"location":"Natashastead"}},{"attributes":{"name":"Freda Robel","age":58,"location":"Milford"}},{"attributes":{"name":"Daphney Hansen","age":47,"location":"Grand Rapids"}},{"attributes":{"name":"Courtney Moore","age":56,"location":"South Janiestead"}},{"attributes":{"name":"Lana Baumbach","age":35,"location":"Harleytown"}},{"attributes":{"name":"Betty Macejkovic","age":77,"location":"West Turner"}},{"attributes":{"name":"Maryann Hahn","age":31,"location":"Bergnaumberg"}},{"attributes":{"name":"Miss Tracey Schoen","age":60,"location":"Gibsonville"}},{"attributes":{"name":"Nina Shields","age":58,"location":"Lake Dashawnhaven"}},{"attributes":{"name":"Celia Kutch","age":43,"location":"Littlestead"}},{"attributes":{"name":"Dr. Juanita Wintheiser","age":20,"location":"Valdosta"}},{"attributes":{"name":"Sadie O'Reilly-Purdy","age":78,"location":"Fort Cortez"}},{"attributes":{"name":"Wendy Nikolaus","age":28,"location":"Athens-Clarke County"}},{"attributes":{"name":"Wilbur Klein III","age":68,"location":"Lake Biankaview"}},{"attributes":{"name":"Billy Johnston","age":41,"location":"Goldnerside"}},{"attributes":{"name":"Carol Block","age":26,"location":"Abbyboro"}},{"attributes":{"name":"Jennings Stiedemann","age":34,"location":"South Cliffordmouth"}},{"attributes":{"name":"Danielle Sauer","age":73,"location":"Ratketown"}},{"attributes":{"name":"Ms. Krystal Hilpert","age":39,"location":"Kesslerstad"}},{"attributes":{"name":"Delfina Adams","age":70,"location":"Port Larue"}},{"attributes":{"name":"Lauren Kessler-Kreiger","age":79,"location":"East Heloise"}},{"attributes":{"name":"Mrs. Iris Renner","age":34,"location":"Gorczanystead"}},{"attributes":{"name":"Tara Schuppe","age":69,"location":"Carson City"}},{"attributes":{"name":"Mrs. Jaqueline Harris","age":31,"location":"Kenner"}},{"attributes":{"name":"Ms. Annette Koss","age":31,"location":"West Fredaburgh"}},{"attributes":{"name":"Brandy Harvey","age":71,"location":"Lakeland"}},{"attributes":{"name":"Mr. Camren Veum","age":54,"location":"North Alessandraland"}},{"attributes":{"name":"Rosalinda Prohaska","age":64,"location":"Fountainebleau"}},{"attributes":{"name":"Lee Kreiger","age":27,"location":"Sipesberg"}},{"attributes":{"name":"Bernice Littel","age":74,"location":"Annandale"}},{"attributes":{"name":"Kianna Reilly","age":54,"location":"Iciefort"}},{"attributes":{"name":"Kenneth Fritsch","age":36,"location":"Kenner"}},{"attributes":{"name":"Alejandro Rodriguez","age":62,"location":"Dearborn"}},{"attributes":{"name":"Susanna Harber","age":35,"location":"North Wendy"}},{"attributes":{"name":"Mr. Angelina Ankunding","age":34,"location":"Pagacside"}},{"attributes":{"name":"Barbara Volkman","age":40,"location":"Ontario"}},{"attributes":{"name":"Thalia VonRueden Jr.","age":48,"location":"Coltenbury"}},{"attributes":{"name":"Shawna Conn MD","age":43,"location":"North Lanestad"}},{"attributes":{"name":"Wm Gerlach","age":29,"location":"Lake Conor"}},{"attributes":{"name":"Flora Champlin Sr.","age":73,"location":"Jadenfurt"}},{"attributes":{"name":"Terrance Bosco","age":27,"location":"Lake Javierside"}},{"attributes":{"name":"Judge Terry","age":28,"location":"North Lennafurt"}},{"attributes":{"name":"Winifred Aufderhar","age":43,"location":"North Toneyfurt"}},{"attributes":{"name":"Amy Fadel","age":30,"location":"O'Konchester"}},{"attributes":{"name":"Kerry Cassin","age":22,"location":"New Lavinia"}},{"attributes":{"name":"Dr. Julius Dickinson","age":50,"location":"Fort Shany"}},{"attributes":{"name":"Laurie Lueilwitz-Romaguera","age":39,"location":"Pierceville"}},{"attributes":{"name":"Madisen Johnson","age":51,"location":"Costa Mesa"}},{"attributes":{"name":"Mrs. Adaline Rogahn","age":62,"location":"Lynchburgh"}},{"attributes":{"name":"Dr. Annabel Sawayn","age":65,"location":"Adahfort"}},{"attributes":{"name":"Donna Lind","age":60,"location":"Baldwin Park"}},{"attributes":{"name":"Phil Mosciski DDS","age":44,"location":"Gresham"}},{"attributes":{"name":"Ms. Herman Wilderman","age":39,"location":"North Harold"}},{"attributes":{"name":"Eric Heller","age":55,"location":"South Katelin"}},{"attributes":{"name":"Kim Homenick","age":51,"location":"North Katlyn"}},{"attributes":{"name":"Melinda Tremblay-Schmidt","age":61,"location":"Upland"}},{"attributes":{"name":"Mrs. Tiffany Kihn","age":43,"location":"Burien"}},{"attributes":{"name":"Angeline Dare","age":68,"location":"Beahanville"}},{"attributes":{"name":"Estel Rau","age":73,"location":"Schmelerport"}},{"attributes":{"name":"Rene Cummerata","age":71,"location":"Boehmshire"}},{"attributes":{"name":"Andres Glover","age":43,"location":"Jimmyport"}},{"attributes":{"name":"Ray Weber","age":73,"location":"Maricopa"}},{"attributes":{"name":"Delfina Streich","age":46,"location":"Fort Vernland"}},{"attributes":{"name":"Timothy Ziemann","age":51,"location":"Fort Gilda"}},{"attributes":{"name":"Mrs. Lillian Quitzon","age":70,"location":"Port Titus"}},{"attributes":{"name":"Ms. Christopher Hayes","age":25,"location":"Townefurt"}},{"attributes":{"name":"Mrs. Jenna Legros","age":62,"location":"Langville"}},{"attributes":{"name":"Elias Ziemann","age":74,"location":"Prohaskaview"}},{"attributes":{"name":"Albert Nader","age":65,"location":"Port Houston"}},{"attributes":{"name":"Marion Hoeger-Hammes","age":80,"location":"Nolanstad"}},{"attributes":{"name":"Miranda Metz","age":70,"location":"Estelleport"}},{"attributes":{"name":"Patricia Turcotte","age":32,"location":"Huntington"}},{"attributes":{"name":"Flavio Hammes","age":35,"location":"Sandyview"}},{"attributes":{"name":"Miguel Kutch-Kohler","age":62,"location":"Heathcotestad"}},{"attributes":{"name":"Jermaine Gibson Sr.","age":58,"location":"Osinskistad"}},{"attributes":{"name":"Mr. Lucio Rempel","age":49,"location":"South Joyce"}},{"attributes":{"name":"Dr. Vesta Murazik","age":76,"location":"West Herbert"}},{"attributes":{"name":"Ernesto Beer","age":56,"location":"South Edwardochester"}},{"attributes":{"name":"Ronnie White","age":30,"location":"Feestton"}},{"attributes":{"name":"Linwood Gibson","age":60,"location":"Brannonborough"}},{"attributes":{"name":"Jerome Klocko","age":18,"location":"Pagacboro"}},{"attributes":{"name":"Clay Rempel","age":70,"location":"Fishers"}},{"attributes":{"name":"Essie Haley","age":54,"location":"Welchfort"}},{"attributes":{"name":"Cyrus Green IV","age":37,"location":"Lake Julesmouth"}},{"attributes":{"name":"Mathew Christiansen","age":26,"location":"Adelbertfield"}},{"attributes":{"name":"Elisa Dickinson","age":28,"location":"New Tristin"}},{"attributes":{"name":"Vella Altenwerth","age":28,"location":"Verniecester"}},{"attributes":{"name":"Megan Hansen Sr.","age":53,"location":"Fort Elta"}},{"attributes":{"name":"Asha Turner","age":61,"location":"Freidacester"}},{"attributes":{"name":"Cecile Ernser","age":37,"location":"Moorebury"}},{"attributes":{"name":"Erica Reinger","age":27,"location":"West Antonio"}},{"attributes":{"name":"Cory Rutherford","age":38,"location":"Raleigh"}},{"attributes":{"name":"Camille Goyette","age":41,"location":"Andersonshire"}},{"attributes":{"name":"Mrs. Nick Cole DDS","age":66,"location":"San Rafael"}},{"attributes":{"name":"Cydney Stroman","age":46,"location":"Ames"}},{"attributes":{"name":"Mario Kirlin","age":76,"location":"Harriston"}},{"attributes":{"name":"Dr. Roderick Bernier","age":23,"location":"Weymouth Town"}},{"attributes":{"name":"Karlee Murray","age":22,"location":"Amyabury"}},{"attributes":{"name":"Edd Graham IV","age":34,"location":"Chaseshire"}},{"attributes":{"name":"Dr. Minnie Heidenreich","age":26,"location":"North Skylarville"}},{"attributes":{"name":"Garret Morar IV","age":46,"location":"East Jordyn"}},{"attributes":{"name":"Javier Kertzmann","age":58,"location":"Franeyborough"}},{"attributes":{"name":"Ms. Wilhelmine O'Hara","age":29,"location":"Lake Bettie"}},{"attributes":{"name":"Jessica Shanahan","age":43,"location":"Elfriedafield"}},{"attributes":{"name":"Ted Thompson","age":41,"location":"North Bufordchester"}},{"attributes":{"name":"Dr. Nettie Carroll","age":44,"location":"Kipbury"}},{"attributes":{"name":"Sadie Kris-Crist","age":59,"location":"North Hal"}},{"attributes":{"name":"Lucas Hegmann","age":75,"location":"Mountain View"}},{"attributes":{"name":"Lora Pollich","age":79,"location":"Emelytown"}},{"attributes":{"name":"Barton Howe DVM","age":50,"location":"Ratkefort"}},{"attributes":{"name":"Patricia Kirlin","age":33,"location":"East Imani"}},{"attributes":{"name":"Jamie Walker III","age":29,"location":"Reichertland"}},{"attributes":{"name":"Lupe Padberg I","age":55,"location":"Zoeystad"}},{"attributes":{"name":"Van Paucek","age":62,"location":"Mavishaven"}},{"attributes":{"name":"Unique Wiza","age":47,"location":"Lake Teresa"}},{"attributes":{"name":"Adeline Balistreri","age":32,"location":"North Haleigh"}},{"attributes":{"name":"Ron Donnelly-Fritsch","age":61,"location":"West Curtisstead"}},{"attributes":{"name":"Chasity Auer","age":78,"location":"Lelafort"}},{"attributes":{"name":"Sue Kuvalis","age":20,"location":"Brookhaven"}},{"attributes":{"name":"Dr. Van Upton","age":70,"location":"East Orrin"}},{"attributes":{"name":"Eda Wolf","age":71,"location":"South Corinefurt"}},{"attributes":{"name":"Delbert Ward","age":29,"location":"Vedaburgh"}},{"attributes":{"name":"Francis Parisian","age":68,"location":"Fort Axelworth"}},{"attributes":{"name":"Jeffrey Rau","age":46,"location":"Greeley"}},{"attributes":{"name":"Cassandra Casper","age":61,"location":"Port Isaacland"}},{"attributes":{"name":"Mandy Altenwerth","age":77,"location":"McDermottmouth"}},{"attributes":{"name":"Sammy Champlin","age":43,"location":"East Tamiachester"}},{"attributes":{"name":"Amelia Abbott-Ledner","age":47,"location":"West Bayleetown"}},{"attributes":{"name":"Timothy Johnson","age":77,"location":"Chancetown"}},{"attributes":{"name":"Lois Connelly","age":37,"location":"Muellercester"}},{"attributes":{"name":"Ivan Quigley","age":78,"location":"Merced"}},{"attributes":{"name":"Denis Homenick","age":60,"location":"Kannapolis"}},{"attributes":{"name":"Lew Glover","age":70,"location":"Jackieburgh"}},{"attributes":{"name":"Silvia Satterfield PhD","age":62,"location":"Fort Lawrenceburgh"}},{"attributes":{"name":"Terry Wolff","age":55,"location":"East Daphnefort"}},{"attributes":{"name":"Abigayle Deckow","age":52,"location":"East Kiley"}},{"attributes":{"name":"Louis Bauch","age":23,"location":"West Shane"}},{"attributes":{"name":"Leonard Brown","age":74,"location":"Lake Zoey"}},{"attributes":{"name":"Desiree Brakus","age":50,"location":"Reynoldstown"}},{"attributes":{"name":"Ettie Lynch","age":28,"location":"West Nicolas"}},{"attributes":{"name":"Ms. Sydnie Hauck V","age":43,"location":"Port Sallie"}},{"attributes":{"name":"Michelle McCullough","age":49,"location":"Trompfort"}},{"attributes":{"name":"Oral Mohr","age":37,"location":"Ozellaville"}},{"attributes":{"name":"Rashad Casper","age":58,"location":"Garden Grove"}},{"attributes":{"name":"Charlene Beier","age":22,"location":"Hettingerstead"}},{"attributes":{"name":"Wilbert Ondricka","age":29,"location":"Port Savannah"}},{"attributes":{"name":"Dahlia Ankunding","age":79,"location":"Burbank"}},{"attributes":{"name":"Patty Mohr","age":32,"location":"Little Rock"}},{"attributes":{"name":"Elias Gerhold","age":36,"location":"Lambertview"}},{"attributes":{"name":"Dorothy Cremin-Okuneva","age":46,"location":"Lake Beau"}},{"attributes":{"name":"Dr. Veronica Langworth","age":50,"location":"Huelsville"}},{"attributes":{"name":"Irving Collier","age":21,"location":"Parisianton"}},{"attributes":{"name":"Donna Kertzmann","age":73,"location":"Port Hoyt"}},{"attributes":{"name":"Orlo Hartmann","age":64,"location":"Memphis"}},{"attributes":{"name":"Terrence Kemmer-Rowe","age":45,"location":"Flatleychester"}},{"attributes":{"name":"Dr. Jailyn Haag","age":22,"location":"Pollichview"}},{"attributes":{"name":"Braxton Carroll","age":80,"location":"Lake Kamille"}},{"attributes":{"name":"Nellie Douglas I","age":57,"location":"Salinas"}},{"attributes":{"name":"Carlos Lang II","age":44,"location":"Littleworth"}},{"attributes":{"name":"Carmela Kozey","age":41,"location":"Cecilborough"}},{"attributes":{"name":"Olivia Wiza","age":31,"location":"Loisworth"}},{"attributes":{"name":"Michelle Wyman","age":24,"location":"Elihaven"}},{"attributes":{"name":"Lorenzo Funk","age":42,"location":"Port Jaydashire"}},{"attributes":{"name":"Grady Keebler","age":54,"location":"Mansfield"}},{"attributes":{"name":"Darren O'Hara","age":33,"location":"Indianapolis"}},{"attributes":{"name":"Adolf Kertzmann","age":61,"location":"South Quincy"}},{"attributes":{"name":"Alonzo Sawayn","age":44,"location":"Seattle"}},{"attributes":{"name":"Sean Altenwerth","age":51,"location":"Buffalo Grove"}},{"attributes":{"name":"Paulette Kub","age":78,"location":"Palm Bay"}},{"attributes":{"name":"Darlene Reichert Sr.","age":55,"location":"Keshawnland"}},{"attributes":{"name":"Zelda Emmerich","age":22,"location":"El Dorado Hills"}},{"attributes":{"name":"Candace Dickens","age":43,"location":"Port Hayden"}},{"attributes":{"name":"Asha Roob","age":24,"location":"North Leann"}},{"attributes":{"name":"Glenda Hoeger","age":75,"location":"Carmel"}},{"attributes":{"name":"Martha Bernier","age":62,"location":"Dooleyside"}},{"attributes":{"name":"Ceasar Nitzsche","age":21,"location":"Ullrichfurt"}},{"attributes":{"name":"Dr. Tamara Gerhold","age":58,"location":"Newport News"}},{"attributes":{"name":"Irving Mitchell","age":67,"location":"Rorystad"}},{"attributes":{"name":"Jabari Stanton","age":22,"location":"Port Armando"}},{"attributes":{"name":"Ola Kihn","age":28,"location":"Hermistonboro"}},{"attributes":{"name":"Antonietta Dickens","age":31,"location":"Carolina"}},{"attributes":{"name":"Zachariah Block","age":66,"location":"Mitchellview"}},{"attributes":{"name":"Josh Weissnat","age":59,"location":"Port Juliet"}},{"attributes":{"name":"Cecelia Senger","age":31,"location":"Keelingborough"}},{"attributes":{"name":"Arne Glover","age":66,"location":"Rockford"}},{"attributes":{"name":"Craig Windler-Krajcik","age":60,"location":"North Alfredville"}},{"attributes":{"name":"Alton Leffler","age":31,"location":"Ikeshire"}},{"attributes":{"name":"Zoie McClure","age":58,"location":"State College"}},{"attributes":{"name":"Hassie Schmitt","age":58,"location":"Port Baileycester"}},{"attributes":{"name":"Elizabeth Leannon","age":47,"location":"Fort Earnestinemouth"}},{"attributes":{"name":"Ken Jerde","age":25,"location":"North Icie"}},{"attributes":{"name":"Richard Stehr V","age":45,"location":"New Darrylboro"}},{"attributes":{"name":"Thelma Haag","age":53,"location":"Cobybury"}},{"attributes":{"name":"Clarence Johnson","age":52,"location":"Port Wilma"}},{"attributes":{"name":"Isaac Mayer","age":25,"location":"Lake Kirk"}},{"attributes":{"name":"Keon Reynolds","age":24,"location":"New Felixview"}},{"attributes":{"name":"Art Pagac","age":76,"location":"West Hazleville"}},{"attributes":{"name":"Carrie Zboncak","age":79,"location":"Kirstinstead"}},{"attributes":{"name":"Johnny Muller","age":49,"location":"North Eleonoreberg"}},{"attributes":{"name":"Cristina Nicolas","age":71,"location":"Parkerstad"}},{"attributes":{"name":"Margarita Runte","age":38,"location":"Reichertport"}},{"attributes":{"name":"Elva Tremblay","age":49,"location":"Port Chaim"}},{"attributes":{"name":"Mercedes Cronin","age":29,"location":"Brownland"}},{"attributes":{"name":"Connie Volkman III","age":74,"location":"Caldwell"}},{"attributes":{"name":"Vernie Steuber","age":76,"location":"North Ansel"}},{"attributes":{"name":"Eleanor Spencer","age":21,"location":"Veumport"}},{"attributes":{"name":"Missouri VonRueden","age":78,"location":"Waukesha"}},{"attributes":{"name":"Jared Stracke","age":59,"location":"Omaha"}},{"attributes":{"name":"Mrs. Simeon Gulgowski Jr.","age":23,"location":"Hammesberg"}},{"attributes":{"name":"Concepcion McLaughlin","age":61,"location":"Plymouth"}},{"attributes":{"name":"Tabitha Goodwin","age":75,"location":"Todfort"}},{"attributes":{"name":"Ms. Christie Roberts","age":73,"location":"Glendale"}},{"attributes":{"name":"Mr. Otis Romaguera","age":71,"location":"Wehnermouth"}},{"attributes":{"name":"Emmett Stracke","age":36,"location":"Zboncaktown"}},{"attributes":{"name":"Tessie Casper","age":55,"location":"North Brooke"}},{"attributes":{"name":"Lorenzo Toy","age":23,"location":"Tanyafield"}},{"attributes":{"name":"Napoleon Schuster","age":40,"location":"Port Charlotte"}},{"attributes":{"name":"Sylvester Stark","age":61,"location":"New Britain"}},{"attributes":{"name":"Dave Marks","age":55,"location":"New Dagmarchester"}},{"attributes":{"name":"Karen Lynch","age":59,"location":"Lefflermouth"}},{"attributes":{"name":"Rubie Zieme","age":25,"location":"New Kale"}},{"attributes":{"name":"Ansel Gorczany","age":50,"location":"Joliet"}},{"attributes":{"name":"Gerardo Tremblay","age":24,"location":"North Jaylen"}},{"attributes":{"name":"Ruthe Nolan","age":63,"location":"North Cyrusboro"}},{"attributes":{"name":"Susan Hettinger-Dach","age":61,"location":"Sierra Vista"}},{"attributes":{"name":"Sammy Kunze","age":62,"location":"Claudiashire"}},{"attributes":{"name":"Pete Krajcik","age":40,"location":"Fort Tyreek"}},{"attributes":{"name":"Suzanne Morissette","age":78,"location":"Watersberg"}},{"attributes":{"name":"Jalen Wiza","age":27,"location":"Ashleighland"}},{"attributes":{"name":"Alexzander Senger V","age":53,"location":"Bergetown"}},{"attributes":{"name":"Billie Larkin","age":47,"location":"East Ewald"}},{"attributes":{"name":"Dora Predovic-Jerde","age":66,"location":"Lake Keshawnfort"}},{"attributes":{"name":"Travis Turcotte","age":44,"location":"South Walkerchester"}},{"attributes":{"name":"Dr. Jaquelin Flatley","age":19,"location":"El Monte"}},{"attributes":{"name":"Mr. Malachi Feeney PhD","age":25,"location":"Matteoside"}},{"attributes":{"name":"Eva Gusikowski","age":57,"location":"Brookhaven"}},{"attributes":{"name":"Sonia Ziemann I","age":63,"location":"Carlsbad"}},{"attributes":{"name":"Tracy Thompson","age":70,"location":"Manteca"}},{"attributes":{"name":"Hudson Hills","age":18,"location":"North Xanderview"}},{"attributes":{"name":"Leland Lindgren","age":33,"location":"Lake Uniquetown"}},{"attributes":{"name":"Sofia Langosh","age":72,"location":"Fort Dayana"}},{"attributes":{"name":"Belinda Ratke MD","age":76,"location":"Katlynnfurt"}},{"attributes":{"name":"Mr. Jackie Harris","age":72,"location":"West Monique"}},{"attributes":{"name":"Itzel Howell V","age":73,"location":"Port Katarinaberg"}},{"attributes":{"name":"Ms. Shanelle Spencer","age":30,"location":"East Titus"}},{"attributes":{"name":"Estelle Zulauf PhD","age":27,"location":"North Adolf"}},{"attributes":{"name":"Christelle Turcotte","age":67,"location":"Des Plaines"}},{"attributes":{"name":"Thelma Bins","age":70,"location":"North Raheem"}},{"attributes":{"name":"Shaniya Brekke","age":26,"location":"Wadefurt"}},{"attributes":{"name":"Alf Davis","age":40,"location":"Ansleystead"}},{"attributes":{"name":"Marian Hessel","age":52,"location":"North Ernafurt"}},{"attributes":{"name":"Shelley Davis","age":44,"location":"Shaynestead"}},{"attributes":{"name":"Elisha Connelly","age":72,"location":"Sioux Falls"}},{"attributes":{"name":"Ms. Damion Hirthe","age":63,"location":"North Armandbury"}},{"attributes":{"name":"Hailee Cremin","age":46,"location":"Lake Malcolmborough"}},{"attributes":{"name":"Alonzo Romaguera","age":42,"location":"Lansing"}},{"attributes":{"name":"Jeremy Yundt","age":43,"location":"Murfreesboro"}},{"attributes":{"name":"Elena Braun","age":57,"location":"Hyattton"}},{"attributes":{"name":"Craig Swaniawski III","age":73,"location":"Sioux Falls"}},{"attributes":{"name":"Hettie Kozey","age":60,"location":"Santee"}},{"attributes":{"name":"Miss Tracy Stamm III","age":41,"location":"Frisco"}},{"attributes":{"name":"Barton Connelly","age":69,"location":"East Itzelchester"}},{"attributes":{"name":"Donald Graham","age":20,"location":"Jerrodburgh"}},{"attributes":{"name":"Noah Lakin","age":56,"location":"Victoria"}},{"attributes":{"name":"Mandy Ruecker","age":72,"location":"New Unique"}},{"attributes":{"name":"Camille Paucek II","age":37,"location":"North Sibylland"}},{"attributes":{"name":"Ike Bogisich","age":21,"location":"Delaneystead"}},{"attributes":{"name":"Carlos Hegmann","age":75,"location":"Watsonville"}},{"attributes":{"name":"Fernando Lueilwitz","age":45,"location":"North Rexside"}},{"attributes":{"name":"Aylin Miller","age":23,"location":"Willfurt"}},{"attributes":{"name":"Shanelle Hahn","age":71,"location":"Considinebury"}},{"attributes":{"name":"Felipa Orn","age":43,"location":"Gutkowskitown"}},{"attributes":{"name":"Ruth Sipes","age":24,"location":"West Verla"}},{"attributes":{"name":"Rose Dietrich","age":31,"location":"West Gussie"}},{"attributes":{"name":"Wilton Pollich","age":49,"location":"Bellevue"}},{"attributes":{"name":"Dr. Meredith Cremin","age":65,"location":"Brooklynmouth"}},{"attributes":{"name":"Roberto Price","age":27,"location":"Shreveport"}},{"attributes":{"name":"Genevieve Yundt","age":51,"location":"New Rozella"}},{"attributes":{"name":"Jayne Connelly","age":75,"location":"Fort Gilesfort"}},{"attributes":{"name":"Alberta Smith","age":54,"location":"Schmittport"}},{"attributes":{"name":"Terrence Terry","age":32,"location":"South Danny"}},{"attributes":{"name":"Fay Hackett V","age":54,"location":"Lindgrenburgh"}},{"attributes":{"name":"Allison Ritchie","age":24,"location":"Yuma"}},{"attributes":{"name":"Zakary Smitham","age":54,"location":"Hattiesburg"}},{"attributes":{"name":"Walter Kuhlman","age":37,"location":"North Chadd"}},{"attributes":{"name":"Eldora Jacobi-Schultz","age":19,"location":"Amayastead"}},{"attributes":{"name":"Myra VonRueden","age":29,"location":"Fort Gaetanofort"}},{"attributes":{"name":"Nya Howell","age":38,"location":"West Magnus"}},{"attributes":{"name":"Kara Kris IV","age":50,"location":"The Woodlands"}},{"attributes":{"name":"Nelson Russel","age":48,"location":"West Caesar"}},{"attributes":{"name":"Kenneth Bruen MD","age":24,"location":"Elnatown"}},{"attributes":{"name":"Lorenzo Collier","age":58,"location":"Sacramento"}},{"attributes":{"name":"Roel MacGyver","age":72,"location":"Gerryboro"}},{"attributes":{"name":"Missouri Kiehn","age":54,"location":"Chandler"}},{"attributes":{"name":"Nathaniel Kohler","age":64,"location":"Vanview"}},{"attributes":{"name":"Bessie Kshlerin","age":35,"location":"South Edgar"}},{"attributes":{"name":"Dr. Dawn Hegmann","age":61,"location":"Walnut Creek"}},{"attributes":{"name":"Ibrahim Jacobs","age":79,"location":"Casper"}},{"attributes":{"name":"Larry Bartoletti","age":52,"location":"South Kayleystead"}},{"attributes":{"name":"Dr. Yvonne Schimmel","age":33,"location":"White Plains"}},{"attributes":{"name":"Letha Johnston","age":59,"location":"Metzworth"}},{"attributes":{"name":"Penny Ruecker III","age":59,"location":"West Grantbury"}},{"attributes":{"name":"Abbey Heller-Heidenreich","age":50,"location":"Litzyfort"}},{"attributes":{"name":"Mr. Mustafa Kutch","age":78,"location":"New Camylle"}},{"attributes":{"name":"Vincent Braun","age":39,"location":"Reynoldsfield"}},{"attributes":{"name":"Forrest Volkman","age":28,"location":"Appleton"}},{"attributes":{"name":"Rocky Jakubowski","age":55,"location":"Gwenville"}},{"attributes":{"name":"Deborah Bogan","age":42,"location":"Norman"}},{"attributes":{"name":"Guadalupe Lindgren","age":74,"location":"West Kurt"}},{"attributes":{"name":"Shanna Gerlach","age":72,"location":"Gretachester"}},{"attributes":{"name":"Edward Herzog","age":76,"location":"Port Alfonzochester"}},{"attributes":{"name":"Dr. Chad Feeney","age":69,"location":"Chicago"}},{"attributes":{"name":"Francis Mertz I","age":62,"location":"West Dylanburgh"}},{"attributes":{"name":"Doyle Reichel","age":27,"location":"South Domingo"}},{"attributes":{"name":"Lorenzo Kuhic","age":74,"location":"Augusthaven"}},{"attributes":{"name":"Al Vandervort","age":53,"location":"Monahanfield"}},{"attributes":{"name":"Hannah Casper","age":60,"location":"Haleyton"}},{"attributes":{"name":"Noel Jerde","age":75,"location":"Wolffstad"}},{"attributes":{"name":"Austin Borer","age":47,"location":"Miami Gardens"}},{"attributes":{"name":"Lynn Harris","age":47,"location":"North Mireilletown"}},{"attributes":{"name":"Phillip Stehr","age":19,"location":"Port Tessport"}},{"attributes":{"name":"Alexandrine Buckridge","age":52,"location":"Murielview"}},{"attributes":{"name":"Marco Harvey","age":33,"location":"Buckeye"}},{"attributes":{"name":"Gerald Hamill I","age":29,"location":"Erie"}},{"attributes":{"name":"Mr. Brandi Graham","age":63,"location":"Marciaburgh"}},{"attributes":{"name":"Crystal Boyle Sr.","age":48,"location":"Murraystead"}},{"attributes":{"name":"Georgia Ritchie DVM","age":20,"location":"Kent"}},{"attributes":{"name":"Rebecca Watsica","age":27,"location":"South Halhaven"}},{"attributes":{"name":"Carolyn Howe DDS","age":67,"location":"West Isobelport"}},{"attributes":{"name":"Richard Hermiston","age":59,"location":"Stantonfield"}},{"attributes":{"name":"Catherine Feil","age":75,"location":"Rempelworth"}},{"attributes":{"name":"Claudia Klein","age":51,"location":"Marianostad"}},{"attributes":{"name":"Josephine Baumbach MD","age":36,"location":"North Candido"}},{"attributes":{"name":"Ed Rempel","age":21,"location":"Annettacester"}},{"attributes":{"name":"Gilberto Bode","age":56,"location":"New Ofelia"}},{"attributes":{"name":"Susie Kautzer DDS","age":59,"location":"Roanoke"}},{"attributes":{"name":"Patty Gleason","age":20,"location":"South Garett"}},{"attributes":{"name":"Tiara Pollich","age":68,"location":"New Dallasbury"}},{"attributes":{"name":"Mckayla Johnston","age":73,"location":"Buckberg"}},{"attributes":{"name":"Jon Wilkinson PhD","age":32,"location":"Shayneport"}},{"attributes":{"name":"Sheila Jaskolski","age":58,"location":"Eldonburgh"}},{"attributes":{"name":"Teri Effertz","age":24,"location":"Fort Donavon"}},{"attributes":{"name":"Conrad Herman","age":29,"location":"Emeraldview"}},{"attributes":{"name":"Moses Mertz","age":73,"location":"Darrelltown"}},{"attributes":{"name":"Donny Fadel","age":35,"location":"Robertsfield"}},{"attributes":{"name":"Edna Dach","age":70,"location":"North Martatown"}},{"attributes":{"name":"Leonard Batz-Bailey","age":51,"location":"Turnerworth"}},{"attributes":{"name":"Greg Osinski","age":39,"location":"Fargo"}},{"attributes":{"name":"Mrs. Marcella Roberts IV","age":40,"location":"North Clairefort"}},{"attributes":{"name":"Irma Howe","age":34,"location":"Fort Fordmouth"}},{"attributes":{"name":"Bret Kerluke","age":26,"location":"New Kirsten"}},{"attributes":{"name":"Eveline Williamson","age":20,"location":"Fort Grayson"}},{"attributes":{"name":"Halle Harvey","age":34,"location":"South Armanishire"}},{"attributes":{"name":"Dr. Van Batz","age":68,"location":"West Edwardbury"}},{"attributes":{"name":"Carolyne Zieme","age":68,"location":"West Deborahville"}},{"attributes":{"name":"Maggie Gutkowski","age":59,"location":"Visalia"}},{"attributes":{"name":"Cathryn Murazik DDS","age":76,"location":"Kreigerport"}},{"attributes":{"name":"Edmund Rosenbaum","age":40,"location":"Dawnberg"}},{"attributes":{"name":"Rosalie Howe","age":58,"location":"North Hoyt"}},{"attributes":{"name":"Jacinthe O'Keefe","age":62,"location":"New Catalinastad"}},{"attributes":{"name":"Darrell Wiza","age":62,"location":"Mount Pleasant"}},{"attributes":{"name":"Shaun Hodkiewicz","age":20,"location":"West Cristianside"}},{"attributes":{"name":"Fay Funk","age":27,"location":"Laguna Niguel"}},{"attributes":{"name":"Zachary Ondricka","age":70,"location":"Port Hailey"}},{"attributes":{"name":"Earnest Barton","age":68,"location":"Fort Shirleyburgh"}},{"attributes":{"name":"Dr. Sid Boyer","age":77,"location":"Hayesfield"}},{"attributes":{"name":"Monroe Abernathy","age":66,"location":"Jakubowskiside"}},{"attributes":{"name":"Mr. Jason Lehner","age":51,"location":"Bartolettiland"}},{"attributes":{"name":"Clarence MacGyver","age":42,"location":"Lacystad"}},{"attributes":{"name":"Sophie Feest","age":68,"location":"West Archton"}},{"attributes":{"name":"Chelsey Fritsch","age":57,"location":"Gabeville"}},{"attributes":{"name":"Colin O'Reilly Sr.","age":47,"location":"Portsmouth"}},{"attributes":{"name":"Laura Keeling","age":70,"location":"Orland Park"}},{"attributes":{"name":"Juliet Kuvalis","age":47,"location":"East Elzachester"}},{"attributes":{"name":"Angel Dickens","age":74,"location":"Gusport"}},{"attributes":{"name":"Meagan Stokes","age":47,"location":"Miami"}},{"attributes":{"name":"Yolanda Larson","age":19,"location":"West Kristofferborough"}},{"attributes":{"name":"Mr. Levi Kulas DDS","age":60,"location":"Leannoncester"}},{"attributes":{"name":"Lora Denesik","age":30,"location":"Hilllshire"}},{"attributes":{"name":"Dr. Ryann Smith","age":79,"location":"New Aletha"}},{"attributes":{"name":"Cooper Morar","age":19,"location":"Minervaville"}},{"attributes":{"name":"Miss Shelly Rodriguez","age":25,"location":"Port Simeonmouth"}},{"attributes":{"name":"Brigitte Wisoky-Runolfsdottir","age":61,"location":"New Jadon"}},{"attributes":{"name":"Missouri Goyette","age":68,"location":"Ontario"}},{"attributes":{"name":"Ms. Arlo Kuhn","age":70,"location":"Herthahaven"}},{"attributes":{"name":"Mr. Debra Abshire","age":52,"location":"Adamstead"}},{"attributes":{"name":"Bertrand Ferry","age":79,"location":"Luthermouth"}},{"attributes":{"name":"Daniel Zieme Jr.","age":37,"location":"South Kimtown"}},{"attributes":{"name":"Maria Gutkowski","age":40,"location":"Ryannfort"}},{"attributes":{"name":"Raquel Purdy","age":34,"location":"North Las Vegas"}},{"attributes":{"name":"Abraham Mitchell","age":24,"location":"Lizaboro"}},{"attributes":{"name":"Bernard Feeney","age":57,"location":"West Ramoncester"}},{"attributes":{"name":"Ms. Caroline Welch","age":44,"location":"West Kaylieshire"}},{"attributes":{"name":"Mathilde Christiansen","age":69,"location":"Lake Feliciafort"}},{"attributes":{"name":"Jody Grimes","age":27,"location":"Lake Turner"}},{"attributes":{"name":"Peggy Dare","age":38,"location":"Tonyfurt"}},{"attributes":{"name":"Althea Weissnat IV","age":55,"location":"Carrollton"}},{"attributes":{"name":"Ray Corwin","age":48,"location":"Wendellstead"}},{"attributes":{"name":"Amir Bashirian","age":70,"location":"Cape Coral"}},{"attributes":{"name":"Karen Hauck-Cartwright","age":18,"location":"Koreytown"}},{"attributes":{"name":"Mr. Nelson Weissnat","age":23,"location":"North Arno"}},{"attributes":{"name":"Cecil Smitham III","age":72,"location":"South Cristinaworth"}},{"attributes":{"name":"Jamal Champlin","age":39,"location":"Rogers"}},{"attributes":{"name":"Cesar Schowalter MD","age":65,"location":"West Katherinemouth"}},{"attributes":{"name":"Eloise Renner","age":20,"location":"Kent"}},{"attributes":{"name":"Tommy Leannon","age":77,"location":"Fort Eusebio"}},{"attributes":{"name":"Hubert Bailey","age":33,"location":"Caseyport"}},{"attributes":{"name":"Ms. Anita Fadel","age":59,"location":"Madelynboro"}},{"attributes":{"name":"Terry Ratke","age":29,"location":"Fort Hiramchester"}},{"attributes":{"name":"Octavia Harvey","age":48,"location":"Lake Curtis"}},{"attributes":{"name":"Wanda White","age":45,"location":"Hartmannstead"}},{"attributes":{"name":"Naomi Maggio","age":26,"location":"New Paige"}},{"attributes":{"name":"Kieran Grady","age":31,"location":"West Elmostad"}},{"attributes":{"name":"Ervin Brown","age":76,"location":"Fort Jermain"}},{"attributes":{"name":"Naomi Jerde","age":37,"location":"West Joana"}},{"attributes":{"name":"Vaughn Botsford DDS","age":49,"location":"Vancouver"}},{"attributes":{"name":"Orion Kunze","age":35,"location":"Garden Grove"}},{"attributes":{"name":"Eloy Russel","age":43,"location":"South Hill"}},{"attributes":{"name":"Braden Barrows","age":78,"location":"East Arielville"}},{"attributes":{"name":"Margarette Senger","age":65,"location":"Luciefort"}},{"attributes":{"name":"Michaela Hills","age":68,"location":"West Guyton"}},{"attributes":{"name":"Thelma Reichert","age":47,"location":"Effertzshire"}},{"attributes":{"name":"Sean Farrell","age":58,"location":"West Reanna"}},{"attributes":{"name":"Opal MacGyver","age":66,"location":"Morarshire"}},{"attributes":{"name":"Bertha Berge","age":79,"location":"Chattanooga"}},{"attributes":{"name":"Jude Klein-Jenkins","age":25,"location":"Port Lamont"}},{"attributes":{"name":"Lee Tromp","age":62,"location":"West Westley"}},{"attributes":{"name":"Dudley Kihn","age":78,"location":"New Jason"}},{"attributes":{"name":"Mrs. Jaylin Kassulke II","age":57,"location":"Willboro"}},{"attributes":{"name":"Eugene Orn","age":32,"location":"Kirstenstad"}},{"attributes":{"name":"Joanna Kirlin","age":31,"location":"Port Mya"}},{"attributes":{"name":"Erika Mueller","age":57,"location":"Coral Gables"}},{"attributes":{"name":"Kurt Collier","age":64,"location":"Luettgenfield"}},{"attributes":{"name":"Josefina Franey","age":26,"location":"Hintzberg"}},{"attributes":{"name":"Julian Hagenes III","age":63,"location":"Cleveland Heights"}},{"attributes":{"name":"Mrs. Rodrigo Fahey","age":50,"location":"Framiview"}},{"attributes":{"name":"Greg Hagenes","age":63,"location":"Yundtstead"}},{"attributes":{"name":"Lucille Zulauf","age":58,"location":"Larsonville"}},{"attributes":{"name":"Mrs. Larue Klocko","age":50,"location":"McCulloughstad"}},{"attributes":{"name":"Miss Laurie Gleichner","age":38,"location":"West Quentinside"}},{"attributes":{"name":"Gwen Franecki-Armstrong","age":63,"location":"Mentor"}},{"attributes":{"name":"Manuel Haag","age":60,"location":"Kettering"}},{"attributes":{"name":"Mr. Vincenza Mraz Sr.","age":76,"location":"Graceboro"}},{"attributes":{"name":"Kristina Rogahn","age":41,"location":"North Jazlynport"}},{"attributes":{"name":"Katlyn Ebert","age":67,"location":"West Derrick"}},{"attributes":{"name":"Camille Hammes","age":31,"location":"North Derrickland"}},{"attributes":{"name":"Dr. Bert Schaefer MD","age":61,"location":"South Winnifredhaven"}},{"attributes":{"name":"Melany Wintheiser","age":25,"location":"Leuschkestead"}},{"attributes":{"name":"Bessie Terry","age":68,"location":"North Braedenstad"}},{"attributes":{"name":"Dr. Clare Larson Jr.","age":42,"location":"Montebury"}},{"attributes":{"name":"Garnet Weimann","age":39,"location":"Mitchellview"}},{"attributes":{"name":"Nathen Ondricka","age":75,"location":"Medford"}},{"attributes":{"name":"Rashawn Koss-Stokes","age":30,"location":"Inglewood"}},{"attributes":{"name":"Marilyne O'Connell DVM","age":19,"location":"Murfreesboro"}},{"attributes":{"name":"Mrs. Mason Weber","age":78,"location":"Jenkinsboro"}},{"attributes":{"name":"James Runolfsdottir","age":80,"location":"McCulloughmouth"}},{"attributes":{"name":"Micheal Hartmann","age":31,"location":"East Thomas"}},{"attributes":{"name":"Raymond Prosacco","age":41,"location":"West Skylar"}},{"attributes":{"name":"Maryann Roob","age":20,"location":"Layton"}},{"attributes":{"name":"Bethany Kuhn","age":46,"location":"South Elmerborough"}},{"attributes":{"name":"Antonetta Schamberger","age":35,"location":"New Tressacester"}},{"attributes":{"name":"Dean Quitzon","age":42,"location":"East Aleneshire"}},{"attributes":{"name":"Brent Stark","age":67,"location":"Durganland"}},{"attributes":{"name":"Marcos Beer","age":28,"location":"Zoeyport"}},{"attributes":{"name":"Tevin Mante","age":28,"location":"Boise City"}},{"attributes":{"name":"Cade Deckow","age":49,"location":"Avisborough"}},{"attributes":{"name":"Henrietta Heller","age":39,"location":"Silver Spring"}},{"attributes":{"name":"Carolyn Hintz","age":32,"location":"Allenfurt"}},{"attributes":{"name":"Dustin West","age":36,"location":"Lake Gus"}},{"attributes":{"name":"Mrs. Sydni Auer","age":47,"location":"Schulistside"}},{"attributes":{"name":"Shaun Schaefer","age":72,"location":"Fort Marques"}},{"attributes":{"name":"Maddison Runolfsdottir","age":64,"location":"Fort Yasmeen"}},{"attributes":{"name":"Dr. Vicki Parker","age":31,"location":"Pourosmouth"}},{"attributes":{"name":"Darrin Auer","age":54,"location":"Donnyburgh"}},{"attributes":{"name":"Mrs. Joann Parker","age":26,"location":"Baileybury"}},{"attributes":{"name":"Ethyl Gislason","age":46,"location":"Yundtboro"}},{"attributes":{"name":"Andre Runolfsdottir","age":68,"location":"East Unastad"}},{"attributes":{"name":"Felix Rau I","age":29,"location":"West Elenaberg"}},{"attributes":{"name":"Elza Goyette","age":20,"location":"West Elenorafort"}},{"attributes":{"name":"Matt Deckow","age":62,"location":"Randiworth"}},{"attributes":{"name":"Eugene Kulas DDS","age":69,"location":"North Lavinaview"}},{"attributes":{"name":"Mrs. Heidi Wilderman","age":73,"location":"Ponce"}},{"attributes":{"name":"Nikolas Cronin","age":38,"location":"Hayward"}},{"attributes":{"name":"Laura Prohaska","age":35,"location":"Port Kaelyn"}},{"attributes":{"name":"Ray Wuckert-Block","age":25,"location":"Port Allan"}},{"attributes":{"name":"Norma Emmerich DVM","age":52,"location":"Fort Tressie"}},{"attributes":{"name":"Sandy Fadel","age":69,"location":"Lydamouth"}},{"attributes":{"name":"Maida Ernser-Zemlak","age":66,"location":"East Hymanbury"}},{"attributes":{"name":"Valerie Wiegand MD","age":76,"location":"North Fern"}},{"attributes":{"name":"Rosendo Adams","age":74,"location":"Flavioview"}},{"attributes":{"name":"Antwan Mraz","age":27,"location":"South Antonioton"}},{"attributes":{"name":"Elvis Zemlak DVM","age":56,"location":"Wellington"}},{"attributes":{"name":"Salma MacGyver","age":61,"location":"Runteborough"}},{"attributes":{"name":"Juanita Crooks","age":55,"location":"Abelardohaven"}},{"attributes":{"name":"Adah Abbott","age":20,"location":"Kerlukestad"}},{"attributes":{"name":"Myron Ward PhD","age":59,"location":"South Ruthe"}},{"attributes":{"name":"Desiree Thiel","age":24,"location":"Makennaland"}},{"attributes":{"name":"Erich Walsh","age":71,"location":"McGlynnville"}},{"attributes":{"name":"Christelle Harvey","age":69,"location":"East Jedidiahland"}},{"attributes":{"name":"Lloyd Kovacek","age":50,"location":"Ogden"}},{"attributes":{"name":"Haylee Goodwin","age":21,"location":"Fort Freddie"}},{"attributes":{"name":"Kari Bayer III","age":51,"location":"Rupertmouth"}},{"attributes":{"name":"Miss Wilfred Lemke DVM","age":57,"location":"Celineville"}},{"attributes":{"name":"Cheyenne Bailey Sr.","age":28,"location":"West Alice"}},{"attributes":{"name":"Elijah Langworth","age":53,"location":"Lake Tracyport"}},{"attributes":{"name":"Joany Jacobs","age":76,"location":"Kuhicburgh"}},{"attributes":{"name":"Ladarius Lebsack","age":77,"location":"Lake Raymundo"}},{"attributes":{"name":"Kristopher Little","age":44,"location":"Bell Gardens"}},{"attributes":{"name":"Alfredo Blanda-Romaguera","age":18,"location":"North Jaredside"}},{"attributes":{"name":"Edna O'Kon-Bernier","age":42,"location":"Hudsonside"}},{"attributes":{"name":"Deanna Pollich","age":64,"location":"Jerrellchester"}},{"attributes":{"name":"Chase Dare","age":79,"location":"Pharr"}},{"attributes":{"name":"Cindy Howe","age":41,"location":"Mosesborough"}},{"attributes":{"name":"Mathew Walker","age":43,"location":"Stephencester"}},{"attributes":{"name":"Joanie Kutch","age":76,"location":"Borershire"}},{"attributes":{"name":"Dr. Haskell Schmidt III","age":22,"location":"Blockmouth"}},{"attributes":{"name":"Claire Connelly-O'Reilly","age":56,"location":"Novi"}},{"attributes":{"name":"Scott Maggio","age":68,"location":"East Matildeboro"}},{"attributes":{"name":"Cory Lynch","age":34,"location":"New Jabaricester"}},{"attributes":{"name":"Jenifer Johns DDS","age":79,"location":"Demetriusberg"}},{"attributes":{"name":"Layla Hackett","age":31,"location":"Lake Rogerview"}},{"attributes":{"name":"Cheryl Zulauf","age":79,"location":"Richardson"}},{"attributes":{"name":"Joannie Sawayn","age":74,"location":"West Braxton"}},{"attributes":{"name":"Neva Swaniawski III","age":23,"location":"Fort Wayneworth"}},{"attributes":{"name":"Yolanda Runolfsdottir","age":19,"location":"East Estebanton"}},{"attributes":{"name":"Roland Koch","age":71,"location":"Galveston"}},{"attributes":{"name":"Stanley Kreiger","age":66,"location":"New Antoninashire"}},{"attributes":{"name":"Roman Medhurst","age":31,"location":"Rempelfield"}},{"attributes":{"name":"Adaline Kunze II","age":64,"location":"San Rafael"}},{"attributes":{"name":"Mr. Nichole Lindgren","age":73,"location":"Ollieberg"}},{"attributes":{"name":"Edmond Swift","age":80,"location":"Lauderhill"}},{"attributes":{"name":"Mr. Travis Wuckert","age":66,"location":"Beaverton"}},{"attributes":{"name":"Brooklyn Steuber","age":73,"location":"East Portercester"}},{"attributes":{"name":"Doreen Schaden","age":19,"location":"Rhetttown"}},{"attributes":{"name":"Mr. Nick Crist","age":56,"location":"Schenectady"}},{"attributes":{"name":"Peggy Bechtelar","age":48,"location":"Kamilleshire"}},{"attributes":{"name":"Alex Douglas","age":44,"location":"Rathchester"}},{"attributes":{"name":"Wilford Jones-Harvey","age":30,"location":"Bauchville"}},{"attributes":{"name":"Korey Kuhic","age":26,"location":"Narcisocester"}},{"attributes":{"name":"Austyn Kreiger Jr.","age":61,"location":"Samantaboro"}},{"attributes":{"name":"Silas Kilback","age":42,"location":"Pacochaville"}},{"attributes":{"name":"Vallie Hyatt","age":77,"location":"Bossier City"}},{"attributes":{"name":"Percy Marquardt","age":79,"location":"Groverberg"}},{"attributes":{"name":"Willie Franecki","age":57,"location":"Rosenbaumberg"}},{"attributes":{"name":"Alan Stiedemann","age":50,"location":"Hudsonville"}},{"attributes":{"name":"Mr. Christa Dach DDS","age":36,"location":"Warwick"}},{"attributes":{"name":"Rufus DuBuque","age":20,"location":"Mohammadbury"}},{"attributes":{"name":"Nikko Nikolaus","age":63,"location":"San Francisco"}},{"attributes":{"name":"Colin Bayer","age":71,"location":"Elveraburgh"}},{"attributes":{"name":"Miss Troy Roberts-Wyman","age":38,"location":"Rohanside"}},{"attributes":{"name":"Nathan Sporer","age":18,"location":"Fort Maryjaneland"}},{"attributes":{"name":"Catherine Jones","age":20,"location":"Port Marisamouth"}},{"attributes":{"name":"Boyd Mohr","age":50,"location":"Rowefield"}},{"attributes":{"name":"David Mitchell","age":62,"location":"Fort Morgan"}},{"attributes":{"name":"Melissa Fahey","age":32,"location":"West Sylvanstead"}},{"attributes":{"name":"Leon Pouros","age":54,"location":"Wilkinsonfort"}},{"attributes":{"name":"Rafael McLaughlin V","age":71,"location":"McCulloughbury"}},{"attributes":{"name":"Kathy Conn","age":24,"location":"Casperborough"}},{"attributes":{"name":"Rene Bernhard","age":32,"location":"Schoenberg"}},{"attributes":{"name":"Boris Kiehn","age":73,"location":"Lake Lavina"}},{"attributes":{"name":"Jefferey Yost","age":41,"location":"Passaic"}},{"attributes":{"name":"Keenan Dietrich","age":59,"location":"Fort Valentin"}},{"attributes":{"name":"Diane Jacobson-Mitchell IV","age":68,"location":"Deltona"}},{"attributes":{"name":"Antonette Huel","age":32,"location":"Nitzscheville"}},{"attributes":{"name":"Melissa Towne","age":58,"location":"New Aditya"}},{"attributes":{"name":"Mrs. Shaun Langosh","age":61,"location":"Port Alvisboro"}},{"attributes":{"name":"Tami Cartwright","age":72,"location":"Miracleport"}},{"attributes":{"name":"Laisha Jacobi","age":47,"location":"Voncester"}},{"attributes":{"name":"Constance Torp","age":68,"location":"North Tierra"}},{"attributes":{"name":"Miss Stacey Stroman","age":50,"location":"South Isaiahstad"}},{"attributes":{"name":"Lillian Franecki","age":31,"location":"East Alifield"}},{"attributes":{"name":"Zachary DuBuque","age":39,"location":"Freeport"}},{"attributes":{"name":"Sonny Runolfsdottir","age":72,"location":"Emmettshire"}},{"attributes":{"name":"Trystan Cassin","age":43,"location":"Fort Benedict"}},{"attributes":{"name":"Bradley Denesik","age":66,"location":"Kayaview"}},{"attributes":{"name":"Luis Lehner","age":67,"location":"East Giuseppe"}},{"attributes":{"name":"Wm Considine II","age":45,"location":"Philadelphia"}},{"attributes":{"name":"Pat Gerlach","age":64,"location":"Apex"}},{"attributes":{"name":"Anna Leannon","age":73,"location":"Myrlfurt"}},{"attributes":{"name":"Sheryl Spinka-Berge","age":53,"location":"Collinborough"}},{"attributes":{"name":"Rocky Wolff V","age":30,"location":"Mollyton"}},{"attributes":{"name":"Antoinette Reilly III","age":22,"location":"Lake Elzaton"}},{"attributes":{"name":"Ms. Cole Welch","age":51,"location":"Wernerfurt"}},{"attributes":{"name":"Merle Goodwin","age":20,"location":"South Bochester"}},{"attributes":{"name":"Antonetta Daniel","age":65,"location":"North Kaneside"}},{"attributes":{"name":"Kevin Stoltenberg","age":26,"location":"Jonworth"}},{"attributes":{"name":"Ricky Herzog","age":58,"location":"Port Gracieberg"}},{"attributes":{"name":"Suzanne Berge","age":66,"location":"Chicopee"}},{"attributes":{"name":"Bradford Larson","age":66,"location":"Port Keshaunstad"}},{"attributes":{"name":"Lionel Jacobson-Homenick","age":58,"location":"Cummingsstad"}},{"attributes":{"name":"Oleta Goyette","age":31,"location":"Hansenstad"}},{"attributes":{"name":"Mr. Ken Becker V","age":39,"location":"Greenfeldercester"}},{"attributes":{"name":"Dr. Ismael Murazik","age":37,"location":"Fadelboro"}},{"attributes":{"name":"Miss Jenna Marks","age":26,"location":"Weymouth Town"}},{"attributes":{"name":"Reyna Reichert","age":22,"location":"Port Garrisonworth"}},{"attributes":{"name":"Claire Anderson","age":66,"location":"Fort Quentinchester"}},{"attributes":{"name":"Jaida Johnson","age":38,"location":"Naderboro"}},{"attributes":{"name":"Rafael Bogisich","age":42,"location":"Livonia"}},{"attributes":{"name":"Amy Herzog","age":36,"location":"Destinfort"}},{"attributes":{"name":"Frank Windler","age":42,"location":"Youngstown"}},{"attributes":{"name":"Natalia Lesch","age":34,"location":"North Verlie"}},{"attributes":{"name":"Solon Grady","age":68,"location":"Amelieburgh"}},{"attributes":{"name":"Oliver Sanford","age":35,"location":"Collierberg"}},{"attributes":{"name":"Garnett Kozey","age":64,"location":"Ramonfort"}},{"attributes":{"name":"Zelma Heller","age":41,"location":"Sengerview"}},{"attributes":{"name":"Theresa Stracke","age":29,"location":"Richardson"}},{"attributes":{"name":"Hassan Jast","age":55,"location":"East Matteohaven"}},{"attributes":{"name":"Susan Ziemann","age":35,"location":"Framichester"}},{"attributes":{"name":"Pat Robel","age":52,"location":"Montgomery"}},{"attributes":{"name":"Pat Crist","age":50,"location":"Isabellaport"}},{"attributes":{"name":"Ramon Labadie","age":22,"location":"Covina"}},{"attributes":{"name":"Faith Osinski","age":73,"location":"Lake Gastonstad"}},{"attributes":{"name":"Tanya Langworth V","age":77,"location":"Fort Modesto"}},{"attributes":{"name":"Harmon Collier","age":74,"location":"East Connor"}},{"attributes":{"name":"Evelyn Wyman","age":69,"location":"Portsmouth"}},{"attributes":{"name":"Roberto Glover","age":40,"location":"New Lulu"}},{"attributes":{"name":"Guy Hilpert","age":61,"location":"East Lucieborough"}},{"attributes":{"name":"Floyd Gorczany","age":70,"location":"Steuberville"}},{"attributes":{"name":"Diamond Price","age":51,"location":"Janaeberg"}},{"attributes":{"name":"Beatrice Howe","age":49,"location":"Lakeland"}},{"attributes":{"name":"Earlene Bogan","age":24,"location":"Port Kody"}},{"attributes":{"name":"Gregoria Beatty","age":69,"location":"Marietta"}},{"attributes":{"name":"Danielle Sipes","age":30,"location":"Natashaport"}},{"attributes":{"name":"Nathan Franey","age":62,"location":"Tremblayworth"}},{"attributes":{"name":"Laurie Huel","age":73,"location":"Irving"}},{"attributes":{"name":"Garfield Denesik","age":67,"location":"Alexieville"}},{"attributes":{"name":"Roscoe Pfannerstill","age":20,"location":"San Francisco"}},{"attributes":{"name":"Margie Kassulke","age":70,"location":"Dennishaven"}},{"attributes":{"name":"Marcelle Bauch","age":42,"location":"Port Filibertofurt"}},{"attributes":{"name":"Paige Konopelski","age":52,"location":"Hadleyland"}},{"attributes":{"name":"Miss Grant Swaniawski-Doyle","age":19,"location":"Port Jakayla"}},{"attributes":{"name":"Winfield Simonis","age":57,"location":"Catalina Foothills"}},{"attributes":{"name":"Mr. Reece Gibson","age":24,"location":"Lilianfurt"}},{"attributes":{"name":"Mr. Elyse Kerluke","age":49,"location":"Lake Kayleeburgh"}},{"attributes":{"name":"Ignatius Johns-Dooley","age":68,"location":"Louisafield"}},{"attributes":{"name":"Guadalupe Bechtelar","age":77,"location":"Pouroscester"}},{"attributes":{"name":"Jameson Hickle","age":69,"location":"East Geoffreymouth"}},{"attributes":{"name":"Blake Schinner","age":73,"location":"East Micheletown"}},{"attributes":{"name":"Maria Douglas","age":62,"location":"Fort Hayley"}},{"attributes":{"name":"Jesse Dooley MD","age":38,"location":"Donnellyside"}},{"attributes":{"name":"Angel O'Connell","age":74,"location":"South Nelda"}},{"attributes":{"name":"Alek Hegmann","age":23,"location":"Turcotteworth"}},{"attributes":{"name":"Breanna Hills","age":60,"location":"Monahanworth"}},{"attributes":{"name":"Pat Crist","age":67,"location":"Lake Nelsboro"}},{"attributes":{"name":"Shemar Kilback","age":57,"location":"Dietrichshire"}},{"attributes":{"name":"Willis Hodkiewicz","age":36,"location":"Wesley Chapel"}},{"attributes":{"name":"Lia Roberts","age":77,"location":"Reillyworth"}},{"attributes":{"name":"Ashley Botsford","age":66,"location":"Melvincester"}},{"attributes":{"name":"Johanna O'Hara DDS","age":41,"location":"Turnerchester"}},{"attributes":{"name":"Dr. Leona Bednar","age":34,"location":"Katarinaburgh"}},{"attributes":{"name":"Deven Schneider","age":46,"location":"Jacobsonworth"}},{"attributes":{"name":"Zoila Jacobson Sr.","age":57,"location":"North Miami"}},{"attributes":{"name":"Jarod Schmeler","age":52,"location":"Leopoldburgh"}},{"attributes":{"name":"Mrs. Amina Schmitt","age":54,"location":"New Rosetta"}},{"attributes":{"name":"Miss Sheryl Sawayn Sr.","age":21,"location":"Schmidtside"}},{"attributes":{"name":"Haskell Bauch-Cronin","age":55,"location":"New Marisol"}},{"attributes":{"name":"Jodi Considine","age":22,"location":"Breitenbergborough"}},{"attributes":{"name":"Anthony Lubowitz","age":38,"location":"Schultzville"}},{"attributes":{"name":"Dr. Marcel Goodwin","age":23,"location":"Fort Evie"}},{"attributes":{"name":"Luis Fisher","age":26,"location":"North Caterinashire"}},{"attributes":{"name":"Ms. Emely Kihn","age":48,"location":"Lockmanchester"}},{"attributes":{"name":"Kathy Friesen","age":75,"location":"New Mohammad"}},{"attributes":{"name":"Anne Stark","age":53,"location":"South Oscarton"}},{"attributes":{"name":"Jackie Bartoletti","age":79,"location":"Hickleshire"}},{"attributes":{"name":"Caesar Kautzer","age":70,"location":"Kassulkebury"}},{"attributes":{"name":"Bob Champlin","age":45,"location":"New Durward"}},{"attributes":{"name":"Dr. Manuel Walsh","age":38,"location":"Urbandale"}},{"attributes":{"name":"Freddie Bartell","age":50,"location":"Barnstable Town"}},{"attributes":{"name":"Rosalinda Lebsack Sr.","age":66,"location":"Port Myriamchester"}},{"attributes":{"name":"Jo Reichert","age":62,"location":"Port Antoniettaton"}},{"attributes":{"name":"Billy Bechtelar-Kirlin","age":60,"location":"South Alexandrea"}},{"attributes":{"name":"Rahsaan Boyle","age":63,"location":"Schowalterberg"}},{"attributes":{"name":"Cynthia Towne","age":35,"location":"Lake Antoniaburgh"}},{"attributes":{"name":"Laurie Renner","age":37,"location":"Lake Aleen"}},{"attributes":{"name":"Mireya Cronin","age":20,"location":"East Rosella"}},{"attributes":{"name":"Cassandra Reilly","age":61,"location":"Gastonia"}},{"attributes":{"name":"Dr. Luz Smitham V","age":74,"location":"Port Ivabury"}},{"attributes":{"name":"Douglas Lesch","age":54,"location":"New Corine"}},{"attributes":{"name":"Dalton Spencer","age":58,"location":"West Hartford"}},{"attributes":{"name":"Elaina Gleason","age":49,"location":"Harrisworth"}},{"attributes":{"name":"Bertha Stamm","age":36,"location":"New Gilda"}},{"attributes":{"name":"Ira Friesen","age":68,"location":"West Cara"}},{"attributes":{"name":"Jean Quitzon","age":46,"location":"Kokomo"}},{"attributes":{"name":"Mona O'Hara","age":21,"location":"Costa Mesa"}},{"attributes":{"name":"Kent Lakin-Renner","age":58,"location":"South Orenmouth"}},{"attributes":{"name":"Corey Daniel","age":69,"location":"Claireboro"}},{"attributes":{"name":"Aaron Keeling","age":66,"location":"Bellflower"}},{"attributes":{"name":"Sadye Cormier","age":56,"location":"North Jeff"}},{"attributes":{"name":"Colleen Aufderhar DDS","age":54,"location":"Watsicafort"}},{"attributes":{"name":"Elaine Stokes","age":56,"location":"Paramount"}},{"attributes":{"name":"Lea Balistreri","age":46,"location":"Diamond Bar"}},{"attributes":{"name":"Guadalupe Dooley","age":71,"location":"West Geoffrey"}},{"attributes":{"name":"Alfonso Trantow","age":58,"location":"Madisynmouth"}},{"attributes":{"name":"Thurman Lubowitz-Jacobson","age":63,"location":"New Sedrickchester"}},{"attributes":{"name":"Dr. Bryan Schmidt","age":63,"location":"Fort Shyanneburgh"}},{"attributes":{"name":"Willie Marks","age":62,"location":"Highland"}},{"attributes":{"name":"Edgar Veum","age":22,"location":"Wheaton"}},{"attributes":{"name":"Harold Roob-Spencer","age":44,"location":"Lake Louisa"}},{"attributes":{"name":"Dr. Claudia Heller MD","age":72,"location":"Hartford"}},{"attributes":{"name":"Jerry Schaefer","age":65,"location":"Fort Kaylaland"}},{"attributes":{"name":"Cesar Hodkiewicz","age":29,"location":"Quigleycester"}},{"attributes":{"name":"May McCullough","age":23,"location":"Janessaboro"}},{"attributes":{"name":"Anthony Hoppe","age":46,"location":"Port Kacieport"}},{"attributes":{"name":"Jettie Pouros","age":75,"location":"Port Dominiqueland"}},{"attributes":{"name":"Luis Wunsch-Davis III","age":41,"location":"Port Breana"}},{"attributes":{"name":"Miss Edgar Corkery","age":28,"location":"South Erikaberg"}},{"attributes":{"name":"Mae Reinger","age":61,"location":"North Rae"}},{"attributes":{"name":"Noelia Ankunding","age":42,"location":"New Ethel"}},{"attributes":{"name":"Shanna Upton","age":28,"location":"South Litzy"}},{"attributes":{"name":"Tanya Douglas","age":26,"location":"Yundtstad"}},{"attributes":{"name":"Eva Denesik","age":51,"location":"Cambridge"}},{"attributes":{"name":"Kyle Schuster","age":56,"location":"South Arlenehaven"}},{"attributes":{"name":"Alvin Erdman","age":34,"location":"West Una"}},{"attributes":{"name":"Dominique Roob","age":68,"location":"Larkinport"}},{"attributes":{"name":"Freda Rice-Emmerich","age":54,"location":"Schimmelstead"}},{"attributes":{"name":"Priscilla Bergnaum","age":24,"location":"Danielfort"}},{"attributes":{"name":"Rosemarie Schaden","age":64,"location":"Idaho Falls"}},{"attributes":{"name":"Sherman Schneider-Shields Sr.","age":23,"location":"Tucson"}},{"attributes":{"name":"Amanda Abernathy I","age":52,"location":"Bergstromstead"}},{"attributes":{"name":"Jared Lind","age":22,"location":"Simi Valley"}},{"attributes":{"name":"Vivienne Larkin","age":47,"location":"Fort Meta"}},{"attributes":{"name":"Christa Oberbrunner","age":65,"location":"Port Arlo"}},{"attributes":{"name":"Nora Boyer","age":58,"location":"Steuberboro"}},{"attributes":{"name":"Mr. Bert Ruecker-Reynolds","age":33,"location":"Vivaworth"}},{"attributes":{"name":"Marjorie Gerlach","age":38,"location":"Lake Berniece"}},{"attributes":{"name":"America Funk","age":36,"location":"Durganberg"}},{"attributes":{"name":"Alison O'Connell","age":35,"location":"Oxnard"}},{"attributes":{"name":"Carolyn Powlowski","age":47,"location":"Lake Bonita"}},{"attributes":{"name":"Charity Donnelly Sr.","age":80,"location":"Eliasville"}},{"attributes":{"name":"Esperanza Pouros","age":18,"location":"Bergeshire"}},{"attributes":{"name":"Ms. Sherri Hagenes","age":74,"location":"South Katlynncester"}},{"attributes":{"name":"Meredith Orn","age":76,"location":"East Julia"}},{"attributes":{"name":"Nicolas Kshlerin","age":55,"location":"Lexiecester"}},{"attributes":{"name":"Rosemary Jacobs","age":76,"location":"Fort Lenorafurt"}},{"attributes":{"name":"Marie Renner","age":57,"location":"Memphis"}},{"attributes":{"name":"Walton Towne","age":64,"location":"Fort Kaleyside"}},{"attributes":{"name":"Donavon Kuphal","age":59,"location":"Lakinfort"}},{"attributes":{"name":"Georgia Corkery-Glover","age":40,"location":"Columbusville"}},{"attributes":{"name":"Bill Ratke","age":45,"location":"Atlanta"}},{"attributes":{"name":"Georgia Rodriguez","age":27,"location":"MacGyverfort"}},{"attributes":{"name":"Jayda Zieme","age":53,"location":"West Floshire"}},{"attributes":{"name":"Boyd Ritchie-Reynolds","age":27,"location":"Fort Kaden"}},{"attributes":{"name":"Jon Kshlerin DVM","age":66,"location":"Trantowfield"}},{"attributes":{"name":"Kiara Heaney","age":72,"location":"Uptonton"}},{"attributes":{"name":"Barbara Reinger","age":61,"location":"Irondequoit"}},{"attributes":{"name":"Norene Runolfsdottir","age":34,"location":"Frisco"}},{"attributes":{"name":"Ignacio Robel","age":65,"location":"Adalineville"}},{"attributes":{"name":"Gordon Dicki","age":62,"location":"Kaydenville"}},{"attributes":{"name":"Meda Mueller","age":24,"location":"Wisozkmouth"}},{"attributes":{"name":"Dr. Sheldon Turner","age":50,"location":"South Odie"}},{"attributes":{"name":"Billy Bode","age":21,"location":"Newport Beach"}},{"attributes":{"name":"Alyssa Bauch","age":48,"location":"New Rebecca"}},{"attributes":{"name":"Julia Bauch","age":30,"location":"Largo"}},{"attributes":{"name":"Elbert Ankunding","age":44,"location":"Davidbury"}},{"attributes":{"name":"Dale O'Hara","age":24,"location":"Schmidtport"}},{"attributes":{"name":"Tracey Miller","age":37,"location":"Pearlville"}},{"attributes":{"name":"Pete Kutch","age":36,"location":"West Elenorcester"}},{"attributes":{"name":"Terrence Gottlieb","age":69,"location":"Emiletown"}},{"attributes":{"name":"Dr. Evan Lockman","age":61,"location":"Lake Marta"}},{"attributes":{"name":"Shyanne Feeney","age":70,"location":"New Trevorborough"}},{"attributes":{"name":"Leon Swift","age":58,"location":"Shemarchester"}},{"attributes":{"name":"Darryl Schowalter","age":51,"location":"West Jarvis"}},{"attributes":{"name":"Dr. Cathryn Bogan","age":58,"location":"Ibrahimview"}},{"attributes":{"name":"Francis Ebert","age":36,"location":"Lavernastad"}},{"attributes":{"name":"Yesenia Harvey","age":47,"location":"New Reidmouth"}},{"attributes":{"name":"Corbin Schowalter","age":62,"location":"New Albert"}},{"attributes":{"name":"Grace Stamm DVM","age":76,"location":"North Schuylerport"}},{"attributes":{"name":"Stella Marvin","age":36,"location":"Keyonland"}},{"attributes":{"name":"Robin Jacobson","age":23,"location":"South Tamara"}},{"attributes":{"name":"Beth Keebler PhD","age":40,"location":"Fort Davion"}},{"attributes":{"name":"Natasha Leannon","age":20,"location":"South Noemiebury"}},{"attributes":{"name":"Selmer Lockman","age":67,"location":"Towneland"}},{"attributes":{"name":"Francis Lesch","age":72,"location":"South Mertieborough"}},{"attributes":{"name":"Mr. Gilberto Von","age":40,"location":"Haneburgh"}},{"attributes":{"name":"Mrs. Yolanda Tremblay","age":62,"location":"Elmhurst"}},{"attributes":{"name":"Angelina Mayer I","age":67,"location":"Olsonfurt"}},{"attributes":{"name":"Carroll Medhurst DVM","age":19,"location":"East Mittiestead"}},{"attributes":{"name":"Virgil Heidenreich","age":59,"location":"Klinghaven"}},{"attributes":{"name":"Miss Freda Stoltenberg","age":48,"location":"Rathfort"}},{"attributes":{"name":"Amparo Farrell","age":38,"location":"Port Aliya"}},{"attributes":{"name":"Jackie Koepp","age":25,"location":"South Noemieboro"}},{"attributes":{"name":"Kerry Schneider","age":32,"location":"Fort Makennatown"}},{"attributes":{"name":"Nicole Hamill","age":46,"location":"Eldridgeville"}},{"attributes":{"name":"Dr. Amber Dietrich","age":44,"location":"New Jackie"}},{"attributes":{"name":"Ada Klein","age":20,"location":"Fort Ike"}},{"attributes":{"name":"Jackie Bednar","age":73,"location":"Port Everardo"}},{"attributes":{"name":"Amina Morar","age":27,"location":"Fort Finnborough"}},{"attributes":{"name":"Ian Wolf","age":32,"location":"Hilllview"}},{"attributes":{"name":"Ricardo Prosacco-Deckow","age":25,"location":"Paterson"}},{"attributes":{"name":"Ms. Ben Rau","age":54,"location":"Stantonborough"}},{"attributes":{"name":"Jason Spencer","age":55,"location":"East Coleman"}},{"attributes":{"name":"Yolanda Lindgren-Borer","age":29,"location":"East Frida"}},{"attributes":{"name":"Lowell Metz","age":42,"location":"Elmorecester"}},{"attributes":{"name":"Jamarcus Hyatt","age":49,"location":"Port Obieborough"}},{"attributes":{"name":"Dr. Santiago Labadie","age":53,"location":"North Reed"}},{"attributes":{"name":"Ferne Zieme","age":77,"location":"Brialand"}},{"attributes":{"name":"Carrie Hills","age":60,"location":"Marcellabury"}},{"attributes":{"name":"Verner Stiedemann","age":26,"location":"Dwighttown"}},{"attributes":{"name":"Shaun Kohler","age":57,"location":"Hahnport"}},{"attributes":{"name":"Aubrey Stamm","age":67,"location":"Margieborough"}},{"attributes":{"name":"Luke Schuppe","age":25,"location":"Vista"}},{"attributes":{"name":"Tressie Hammes","age":18,"location":"Lake Elisha"}},{"attributes":{"name":"Cooper Goldner","age":80,"location":"Hermanworth"}},{"attributes":{"name":"Roberta D'Amore","age":68,"location":"Ginafield"}},{"attributes":{"name":"Dr. Carlos Gorczany I","age":22,"location":"Deondreboro"}},{"attributes":{"name":"Paulette Blanda","age":37,"location":"Fort Oswaldo"}},{"attributes":{"name":"Dr. Benny Erdman","age":37,"location":"Maiyamouth"}},{"attributes":{"name":"Brian Brown","age":59,"location":"South Vernie"}},{"attributes":{"name":"Cleveland Kuphal","age":37,"location":"Vista"}},{"attributes":{"name":"Bridie Hartmann","age":68,"location":"Port Kaileeport"}},{"attributes":{"name":"Laurie Blick","age":18,"location":"Marysehaven"}},{"attributes":{"name":"Alton Franey-Marks","age":32,"location":"Bernhardchester"}},{"attributes":{"name":"Edgardo Prohaska","age":73,"location":"Karleyhaven"}},{"attributes":{"name":"Mrs. Flora Hammes","age":25,"location":"Osinskihaven"}},{"attributes":{"name":"Orlando McGlynn-Simonis V","age":49,"location":"Woodbury"}},{"attributes":{"name":"Kelli Spencer","age":52,"location":"West Jedidiahshire"}},{"attributes":{"name":"Taylor Auer","age":57,"location":"Lake Addisonport"}},{"attributes":{"name":"Jody Osinski","age":29,"location":"North Marcelinoworth"}},{"attributes":{"name":"Sandra Konopelski","age":23,"location":"Gutkowskiside"}},{"attributes":{"name":"Forest Rice","age":29,"location":"Rahsaanboro"}},{"attributes":{"name":"Estell Lesch III","age":52,"location":"Gibsonboro"}},{"attributes":{"name":"Carleton Grimes","age":57,"location":"Prestonstead"}},{"attributes":{"name":"Kallie Raynor","age":76,"location":"Lacey"}},{"attributes":{"name":"Thelma Satterfield","age":54,"location":"Jacobibury"}},{"attributes":{"name":"Gwendolyn Langosh IV","age":75,"location":"Cormiershire"}},{"attributes":{"name":"Antonio Osinski","age":37,"location":"Findlay"}},{"attributes":{"name":"Freda Goodwin","age":57,"location":"Port Tyshawnland"}},{"attributes":{"name":"Lulu Kihn","age":30,"location":"Chino"}},{"attributes":{"name":"Mr. Else Goodwin","age":47,"location":"Fort Narcisoville"}},{"attributes":{"name":"Maurine Greenfelder","age":52,"location":"Alexandreaberg"}},{"attributes":{"name":"Alvin Durgan DDS","age":30,"location":"Fort Jerrold"}},{"attributes":{"name":"Mr. Tyrell Bruen","age":49,"location":"New Jodie"}},{"attributes":{"name":"Chelsea Effertz","age":64,"location":"Dooleyport"}},{"attributes":{"name":"Scotty Murazik","age":54,"location":"Annebury"}},{"attributes":{"name":"Cortney Torphy","age":34,"location":"East Fritz"}},{"attributes":{"name":"Marvin Tillman-DuBuque","age":58,"location":"Ziemannstad"}},{"attributes":{"name":"Devonte Crona","age":45,"location":"Redondo Beach"}},{"attributes":{"name":"Erik Gulgowski","age":45,"location":"Bradenton"}},{"attributes":{"name":"Helen Bahringer","age":58,"location":"South Adeline"}},{"attributes":{"name":"Richard Hermann","age":28,"location":"South Jedediah"}},{"attributes":{"name":"Mrs. Connie Lynch","age":69,"location":"North Nonafurt"}},{"attributes":{"name":"Dana Lynch","age":43,"location":"East Enrique"}},{"attributes":{"name":"Herman Hayes","age":32,"location":"Camden"}},{"attributes":{"name":"Dr. Elsa Langosh","age":71,"location":"Lake Charityworth"}},{"attributes":{"name":"Derek Hermiston","age":49,"location":"New Jeff"}},{"attributes":{"name":"Harriet Ferry DDS","age":53,"location":"Fort Elfriedacester"}},{"attributes":{"name":"Norberto Wilkinson V","age":35,"location":"Amaniburgh"}},{"attributes":{"name":"Christian Hilll-Von","age":31,"location":"Boehmhaven"}},{"attributes":{"name":"Maximillia Quigley","age":70,"location":"West Madisen"}},{"attributes":{"name":"Jo Fadel","age":67,"location":"Port Pedro"}},{"attributes":{"name":"Leslie Nikolaus","age":33,"location":"Stantonberg"}},{"attributes":{"name":"Beth Kemmer","age":44,"location":"Port Scotty"}},{"attributes":{"name":"Mrs. Cindy Lemke","age":67,"location":"Barrowsstead"}},{"attributes":{"name":"Jessie Emard","age":41,"location":"East Corene"}},{"attributes":{"name":"Juan Schuster","age":62,"location":"Welchton"}},{"attributes":{"name":"Maribel Mills-Konopelski","age":75,"location":"Kundechester"}},{"attributes":{"name":"Simone Streich","age":67,"location":"Port Keeley"}},{"attributes":{"name":"Brendan Hegmann","age":56,"location":"Lenexa"}},{"attributes":{"name":"Bert Pollich II","age":78,"location":"Wuckertboro"}},{"attributes":{"name":"Raleigh Ondricka","age":29,"location":"Millerhaven"}},{"attributes":{"name":"Linnie Ernser","age":39,"location":"West Chesterboro"}},{"attributes":{"name":"Shane Raynor-Wyman","age":78,"location":"North April"}},{"attributes":{"name":"Donna Lind","age":73,"location":"Arthurland"}},{"attributes":{"name":"Mittie Hayes","age":67,"location":"Port Jabariside"}},{"attributes":{"name":"Gerry Bailey","age":78,"location":"San Tan Valley"}},{"attributes":{"name":"Mr. Jimmie Dicki","age":69,"location":"Delmerworth"}},{"attributes":{"name":"Joyce Russel","age":65,"location":"Cincinnati"}},{"attributes":{"name":"Adaline Fadel","age":67,"location":"Claudehaven"}},{"attributes":{"name":"Lester Boyle","age":28,"location":"Muellerburgh"}},{"attributes":{"name":"Miss Eunice Bruen Jr.","age":73,"location":"San Francisco"}},{"attributes":{"name":"Jodi Kshlerin","age":33,"location":"Rippinstad"}},{"attributes":{"name":"Wayne Spencer","age":36,"location":"New Dagmarfort"}},{"attributes":{"name":"Kade Bradtke","age":43,"location":"Fort Josefinastead"}},{"attributes":{"name":"Willard Ullrich","age":45,"location":"West Uriah"}},{"attributes":{"name":"Rene Ernser","age":34,"location":"New Mollyborough"}},{"attributes":{"name":"Leona Heidenreich","age":59,"location":"Port Delphine"}},{"attributes":{"name":"Rachel Hackett","age":63,"location":"Morissettebury"}},{"attributes":{"name":"Clayton Jacobi IV","age":51,"location":"Dewittview"}},{"attributes":{"name":"Deanna Gleason","age":43,"location":"North Wilton"}},{"attributes":{"name":"Dr. Stanley Stoltenberg","age":67,"location":"Borermouth"}},{"attributes":{"name":"Nora Padberg","age":80,"location":"Fort Jakob"}},{"attributes":{"name":"Alyssa Barton","age":75,"location":"Auerboro"}},{"attributes":{"name":"Mrs. Kristi McLaughlin","age":67,"location":"New Devyn"}},{"attributes":{"name":"Vaughn Feest","age":46,"location":"South Duanecester"}},{"attributes":{"name":"Darryl Becker","age":63,"location":"St. Joseph"}},{"attributes":{"name":"Elizabeth Reichert","age":38,"location":"Ankundingside"}},{"attributes":{"name":"Lynn Emard","age":18,"location":"South Letha"}},{"attributes":{"name":"Renee Lynch","age":69,"location":"Beatriceworth"}},{"attributes":{"name":"Olga Altenwerth","age":30,"location":"Serenityville"}},{"attributes":{"name":"Jason Kub III","age":37,"location":"Fort Katarina"}},{"attributes":{"name":"Zoey Mueller","age":45,"location":"Indianapolis"}},{"attributes":{"name":"Rosemary Schuppe","age":44,"location":"South Luciletown"}},{"attributes":{"name":"Mr. Tiffany Prosacco","age":25,"location":"Marlenland"}},{"attributes":{"name":"Mr. Albert Stokes","age":47,"location":"South Trishafield"}},{"attributes":{"name":"Adonis Orn","age":21,"location":"Kreigerworth"}},{"attributes":{"name":"Alexandra Von","age":57,"location":"Vernerview"}},{"attributes":{"name":"Hilda Kuhic","age":38,"location":"El Paso"}},{"attributes":{"name":"Terence Mertz","age":72,"location":"Crookston"}},{"attributes":{"name":"Dianne Swift","age":76,"location":"South Willton"}},{"attributes":{"name":"Ricky Considine","age":46,"location":"New Abeshire"}},{"attributes":{"name":"Laverne Lowe","age":24,"location":"Guaynabo"}},{"attributes":{"name":"Winifred McClure","age":62,"location":"East Lucianoside"}},{"attributes":{"name":"Anita Veum","age":50,"location":"O'Connerstead"}},{"attributes":{"name":"Rafaela Bergstrom PhD","age":69,"location":"Tempe"}},{"attributes":{"name":"Fredrick Wehner Sr.","age":65,"location":"Chanelfield"}},{"attributes":{"name":"Ocie Cruickshank","age":68,"location":"Port Destinmouth"}},{"attributes":{"name":"Maida O'Kon","age":74,"location":"New Wilton"}},{"attributes":{"name":"Tyrell Abernathy","age":53,"location":"Memphis"}},{"attributes":{"name":"Megan Sanford","age":29,"location":"New Annetta"}},{"attributes":{"name":"Marjorie Parisian","age":33,"location":"Hazelburgh"}},{"attributes":{"name":"Marina Collier","age":54,"location":"Macejkovicville"}},{"attributes":{"name":"Barton Fritsch","age":32,"location":"New Joshua"}},{"attributes":{"name":"Manuel Runolfsson","age":40,"location":"Fort Lisaburgh"}},{"attributes":{"name":"Olivia Metz","age":70,"location":"Port Julia"}},{"attributes":{"name":"Lindsay Rolfson","age":26,"location":"Coral Springs"}},{"attributes":{"name":"Cristina Bergstrom","age":34,"location":"East Tamiashire"}},{"attributes":{"name":"Dulce Becker","age":44,"location":"Herzogport"}},{"attributes":{"name":"Mr. Jonathan Torphy","age":52,"location":"Whiteburgh"}},{"attributes":{"name":"Kellie Homenick","age":21,"location":"East Valliemouth"}},{"attributes":{"name":"Louie Veum","age":48,"location":"South Hill"}},{"attributes":{"name":"Darla McGlynn","age":78,"location":"North Dereckfield"}},{"attributes":{"name":"Sanford Dach","age":42,"location":"Fort Jamel"}},{"attributes":{"name":"Kayla Price","age":78,"location":"Yundtshire"}},{"attributes":{"name":"Frank Bayer","age":40,"location":"Aishaboro"}},{"attributes":{"name":"Casey Schaefer","age":67,"location":"Bartellfurt"}},{"attributes":{"name":"Mabelle Cronin","age":66,"location":"Gislasonside"}},{"attributes":{"name":"Elias Bashirian","age":21,"location":"Raynorchester"}},{"attributes":{"name":"Nelda Bernier","age":60,"location":"North Korey"}},{"attributes":{"name":"Anthony Jacobi","age":65,"location":"Fort Modestaborough"}},{"attributes":{"name":"Cassie Hartmann","age":67,"location":"Warwick"}},{"attributes":{"name":"Reginald Walsh","age":53,"location":"Gislasonside"}},{"attributes":{"name":"Aliya Borer","age":56,"location":"Fort Marcoburgh"}},{"attributes":{"name":"Zaria Schmeler","age":74,"location":"Faustinoland"}},{"attributes":{"name":"Alton Brown","age":36,"location":"Centreville"}},{"attributes":{"name":"Nichole Willms","age":28,"location":"Timothychester"}},{"attributes":{"name":"Dale Russel PhD","age":33,"location":"Rock Hill"}},{"attributes":{"name":"Katie Denesik","age":35,"location":"New Sadye"}},{"attributes":{"name":"Miss Kate Jenkins","age":31,"location":"Lake Hazle"}},{"attributes":{"name":"Jayce Rodriguez","age":23,"location":"New Orleans"}},{"attributes":{"name":"Odie Stamm","age":29,"location":"Pine Hills"}},{"attributes":{"name":"Natalie Crona","age":29,"location":"Kochchester"}},{"attributes":{"name":"Amos Stamm","age":33,"location":"New Tiaraport"}},{"attributes":{"name":"Leland Schultz","age":70,"location":"Myleschester"}},{"attributes":{"name":"Della Anderson","age":60,"location":"North Eleonore"}},{"attributes":{"name":"Jan Heathcote","age":58,"location":"New Jamir"}},{"attributes":{"name":"Molly Moen","age":65,"location":"Vernside"}},{"attributes":{"name":"Bertha Hackett","age":42,"location":"Aubreefield"}},{"attributes":{"name":"Jean Wiegand","age":23,"location":"Fort Lorine"}},{"attributes":{"name":"Shannon Hegmann-Farrell","age":52,"location":"Waelchicester"}},{"attributes":{"name":"Vernon Kreiger V","age":56,"location":"North Kamronstead"}},{"attributes":{"name":"Carolyn Gibson","age":72,"location":"Aspen Hill"}},{"attributes":{"name":"Toby Watsica","age":20,"location":"Pricefurt"}},{"attributes":{"name":"Raoul Smitham","age":33,"location":"Plainfield"}},{"attributes":{"name":"Don Davis","age":65,"location":"South Marilyneland"}},{"attributes":{"name":"Greg Pagac","age":78,"location":"Trenton"}},{"attributes":{"name":"Vivian Gislason","age":20,"location":"Danbury"}},{"attributes":{"name":"Mr. Rosario Morar","age":45,"location":"Vivafurt"}},{"attributes":{"name":"Hugo Hettinger Sr.","age":40,"location":"Port Rosemarie"}},{"attributes":{"name":"Santos Nienow","age":53,"location":"Miramar"}},{"attributes":{"name":"Tricia Wintheiser","age":32,"location":"East Brodycester"}},{"attributes":{"name":"Kaden Dare","age":78,"location":"Quitzonview"}},{"attributes":{"name":"Van Strosin","age":25,"location":"Marciaport"}},{"attributes":{"name":"Lyric Conn","age":72,"location":"Benedictchester"}},{"attributes":{"name":"Myles McKenzie","age":44,"location":"Harberland"}},{"attributes":{"name":"Dr. Isabella Quigley","age":74,"location":"Arlington"}},{"attributes":{"name":"Dean McClure PhD","age":57,"location":"Mathildeville"}},{"attributes":{"name":"Michele Zemlak","age":65,"location":"Port Dee"}},{"attributes":{"name":"Christ Donnelly","age":42,"location":"Cleveland"}},{"attributes":{"name":"Wilbert Prosacco","age":57,"location":"Lake Madelynnbury"}},{"attributes":{"name":"Mrs. Felix Heidenreich DVM","age":77,"location":"Bridgeport"}},{"attributes":{"name":"Kristy Kilback","age":63,"location":"New Sage"}},{"attributes":{"name":"Tina McDermott","age":79,"location":"Greenholtstad"}},{"attributes":{"name":"Jackeline McDermott I","age":38,"location":"Port Jalynstad"}},{"attributes":{"name":"Sabryna Lehner","age":73,"location":"West Bella"}},{"attributes":{"name":"Debra Heaney","age":51,"location":"North Arnefield"}},{"attributes":{"name":"Randal Larkin","age":77,"location":"East Deangelochester"}},{"attributes":{"name":"Seth Balistreri Sr.","age":68,"location":"Lake Christopher"}},{"attributes":{"name":"Mr. Kristy Treutel","age":66,"location":"Kaileeton"}},{"attributes":{"name":"Maude Hegmann","age":31,"location":"Dickensfield"}},{"attributes":{"name":"Beatrice Hodkiewicz","age":78,"location":"Isaiahfurt"}},{"attributes":{"name":"Mr. Elmore Stanton","age":67,"location":"Guybury"}},{"attributes":{"name":"Terrence Brekke","age":68,"location":"Wardmouth"}},{"attributes":{"name":"Jaime Towne","age":53,"location":"Lake Andres"}},{"attributes":{"name":"Dr. Santiago Gleichner","age":62,"location":"Josechester"}},{"attributes":{"name":"Geraldine Ritchie","age":46,"location":"Cerritos"}},{"attributes":{"name":"Emmitt Tillman","age":67,"location":"South Altaport"}},{"attributes":{"name":"Frank Dietrich","age":33,"location":"East Danielle"}},{"attributes":{"name":"Jill Goodwin","age":71,"location":"Cummingsboro"}},{"attributes":{"name":"Porter Gutkowski","age":47,"location":"North Kieran"}},{"attributes":{"name":"Glen Fahey","age":21,"location":"North Leone"}},{"attributes":{"name":"Ricardo Rosenbaum","age":30,"location":"Kyleshire"}},{"attributes":{"name":"Mr. Kyle Wilkinson","age":50,"location":"East Dalton"}},{"attributes":{"name":"Traci Predovic","age":19,"location":"Lake Amara"}},{"attributes":{"name":"Demarco Herman","age":61,"location":"Lake Archibald"}},{"attributes":{"name":"Vera Lang","age":61,"location":"Lake Jeromeboro"}},{"attributes":{"name":"Abdiel Larkin","age":67,"location":"Schuppeview"}},{"attributes":{"name":"Brent Fritsch","age":18,"location":"Ricefort"}},{"attributes":{"name":"Enid Abbott","age":69,"location":"East Kenyatta"}},{"attributes":{"name":"Glen Yost-Bahringer","age":74,"location":"Dearborn"}},{"attributes":{"name":"Eda Cruickshank PhD","age":73,"location":"Waterloo"}},{"attributes":{"name":"Gavin Romaguera","age":44,"location":"Sandy Springs"}},{"attributes":{"name":"Alexandro Reinger","age":50,"location":"Krisburgh"}},{"attributes":{"name":"Marsha Marquardt","age":49,"location":"Lake Cynthia"}},{"attributes":{"name":"Granville Rohan PhD","age":49,"location":"Haskellmouth"}},{"attributes":{"name":"Justin Langosh","age":68,"location":"Alyssonland"}},{"attributes":{"name":"Amelia Pfeffer","age":41,"location":"Donaldport"}},{"attributes":{"name":"Theresa Pfannerstill","age":47,"location":"Jupiter"}},{"attributes":{"name":"Ora Durgan","age":52,"location":"Lewisville"}},{"attributes":{"name":"Addison Skiles","age":20,"location":"Taraworth"}},{"attributes":{"name":"Tobin Mante","age":22,"location":"Lake Ruthe"}},{"attributes":{"name":"Lorene Strosin","age":22,"location":"Zechariahfurt"}},{"attributes":{"name":"Enrique Langworth","age":67,"location":"Port Darrylstad"}},{"attributes":{"name":"Cassandra Ferry III","age":36,"location":"Dublin"}},{"attributes":{"name":"Elijah Collins","age":33,"location":"Santa Maria"}},{"attributes":{"name":"Minnie Fisher Jr.","age":62,"location":"Roswell"}},{"attributes":{"name":"Bailey Harber","age":68,"location":"Lebsackshire"}},{"attributes":{"name":"Mrs. Carroll Robel","age":26,"location":"Framingham"}},{"attributes":{"name":"Marilie Jacobi","age":80,"location":"Port Claudinehaven"}},{"attributes":{"name":"Doug Stoltenberg","age":44,"location":"Lucyport"}},{"attributes":{"name":"Connie O'Reilly","age":39,"location":"Hesselfield"}},{"attributes":{"name":"Mrs. Jeffrey Greenfelder II","age":18,"location":"North Leonard"}},{"attributes":{"name":"Devon Kunde","age":65,"location":"Waelchiburgh"}},{"attributes":{"name":"Lance Halvorson","age":23,"location":"Nanniefurt"}},{"attributes":{"name":"Kurtis Morar PhD","age":43,"location":"Wilkinsoncester"}},{"attributes":{"name":"Mildred Kutch","age":70,"location":"Starkbury"}},{"attributes":{"name":"Leslie Hoeger III","age":58,"location":"South Jaylon"}},{"attributes":{"name":"Miss Stacy Lakin","age":24,"location":"Walterport"}},{"attributes":{"name":"Perry Casper","age":43,"location":"Jadynville"}},{"attributes":{"name":"Joey Kemmer","age":42,"location":"Anderson"}},{"attributes":{"name":"Michale Bruen","age":36,"location":"New Mariaboro"}},{"attributes":{"name":"Dasia Lind","age":29,"location":"Eugeniaview"}},{"attributes":{"name":"Miss Francisco Gutkowski","age":60,"location":"Port Violetborough"}},{"attributes":{"name":"Heaven Block","age":73,"location":"Flatleymouth"}},{"attributes":{"name":"Nicholaus Kuphal","age":31,"location":"Jaceytown"}},{"attributes":{"name":"Cindy Ullrich","age":49,"location":"Clairberg"}},{"attributes":{"name":"Rose Considine","age":27,"location":"Fort Constancecester"}},{"attributes":{"name":"Peggy Rolfson","age":34,"location":"Trompbury"}},{"attributes":{"name":"Matthew Doyle","age":44,"location":"Savannah"}},{"attributes":{"name":"Mrs. Xavier Koss Jr.","age":56,"location":"Fort Emilia"}},{"attributes":{"name":"Miss Cloyd O'Reilly","age":34,"location":"Port Daijaborough"}},{"attributes":{"name":"Ronaldo Wiegand I","age":37,"location":"Princessport"}},{"attributes":{"name":"Darrion Hand","age":59,"location":"Fort Maximo"}},{"attributes":{"name":"Jaime Bernhard","age":69,"location":"Jamieside"}},{"attributes":{"name":"Daisy Cummings","age":66,"location":"Port Susanstead"}},{"attributes":{"name":"Allan Satterfield","age":18,"location":"Corwinfort"}},{"attributes":{"name":"Terence Harvey II","age":41,"location":"Croninboro"}},{"attributes":{"name":"Mattie Lueilwitz Sr.","age":59,"location":"Parker"}},{"attributes":{"name":"Ryan Nienow","age":60,"location":"McKinney"}},{"attributes":{"name":"Vera Langworth II","age":74,"location":"Rahulburgh"}},{"attributes":{"name":"Dr. Brook Funk PhD","age":27,"location":"Streichburgh"}},{"attributes":{"name":"Deshaun Berge","age":32,"location":"New Ollie"}},{"attributes":{"name":"Quinton Senger-Crist MD","age":57,"location":"South Alyce"}},{"attributes":{"name":"Isabel MacGyver","age":24,"location":"Ebertfort"}},{"attributes":{"name":"Freddie Oberbrunner","age":18,"location":"Sunrise Manor"}},{"attributes":{"name":"Jeanne Sanford Sr.","age":21,"location":"North Guadalupeside"}},{"attributes":{"name":"Courtney Pollich","age":51,"location":"Madera"}},{"attributes":{"name":"Maxwell Will","age":29,"location":"Port Stella"}},{"attributes":{"name":"Hattie Wintheiser","age":38,"location":"Cartwrightview"}},{"attributes":{"name":"Forrest Quigley I","age":48,"location":"Fort Marinaside"}},{"attributes":{"name":"Abel Dooley","age":63,"location":"Ziemannview"}},{"attributes":{"name":"Dr. Alberto Larkin","age":65,"location":"East Marcelina"}},{"attributes":{"name":"Clara Konopelski","age":26,"location":"Allen"}},{"attributes":{"name":"Jim Jenkins","age":35,"location":"Miloland"}},{"attributes":{"name":"Allen Greenfelder","age":56,"location":"Gracielachester"}},{"attributes":{"name":"Tina McLaughlin DDS","age":75,"location":"Alexahaven"}},{"attributes":{"name":"Abraham Hauck","age":52,"location":"Dubuque"}},{"attributes":{"name":"Penny Carroll","age":54,"location":"East Anibal"}},{"attributes":{"name":"Mr. Deja Swaniawski","age":57,"location":"Port Magnusville"}},{"attributes":{"name":"Bernhard Jast MD","age":67,"location":"Lennyberg"}},{"attributes":{"name":"Emily Kreiger","age":23,"location":"West Dayton"}},{"attributes":{"name":"Macie Legros","age":42,"location":"Funkfurt"}},{"attributes":{"name":"Harry Bogisich","age":55,"location":"Saginaw"}},{"attributes":{"name":"Kerry Murray II","age":80,"location":"Fort Myers"}},{"attributes":{"name":"Daija Koepp","age":76,"location":"York"}},{"attributes":{"name":"Deborah Klein","age":51,"location":"Herthatown"}},{"attributes":{"name":"Donny Kris","age":54,"location":"Ashleighhaven"}},{"attributes":{"name":"Ken Crist","age":38,"location":"Clifton"}},{"attributes":{"name":"Javier O'Kon","age":36,"location":"Bergnaumfort"}},{"attributes":{"name":"Caleigh Abshire","age":50,"location":"Melliefield"}},{"attributes":{"name":"Marcelle Kuphal","age":31,"location":"South Claudineland"}},{"attributes":{"name":"Mildred Watsica","age":80,"location":"North Edmund"}},{"attributes":{"name":"Mrs. Wade Langworth","age":61,"location":"West Jaquelin"}},{"attributes":{"name":"Alan Simonis","age":19,"location":"East Kraigberg"}},{"attributes":{"name":"Jairo Howe","age":73,"location":"Vandervortton"}},{"attributes":{"name":"Jim Waters","age":25,"location":"Eldonberg"}},{"attributes":{"name":"Eve Roob","age":53,"location":"West Blazeside"}},{"attributes":{"name":"Rodney Donnelly","age":51,"location":"McDermottcester"}},{"attributes":{"name":"Dr. Kiel Johns","age":51,"location":"Twilafurt"}},{"attributes":{"name":"Allison Batz Jr.","age":51,"location":"North Brannonshire"}},{"attributes":{"name":"Kellie Raynor","age":53,"location":"Pfefferburgh"}},{"attributes":{"name":"Cathrine Lynch-Klocko","age":76,"location":"South Norwood"}},{"attributes":{"name":"Rosemary Mueller","age":64,"location":"Collierport"}},{"attributes":{"name":"Rolando Crona","age":65,"location":"Alvahworth"}},{"attributes":{"name":"Guiseppe Zboncak","age":38,"location":"Lake Jeraldstead"}},{"attributes":{"name":"Harry Graham MD","age":49,"location":"Osinskiburgh"}},{"attributes":{"name":"Agnes Goodwin","age":35,"location":"West Marjorie"}},{"attributes":{"name":"Lance Schultz","age":35,"location":"Keithside"}},{"attributes":{"name":"Armani Botsford","age":36,"location":"West Wallaceside"}},{"attributes":{"name":"Dr. Esther Hand","age":22,"location":"Magdalenahaven"}},{"attributes":{"name":"Evan Wiegand-Wunsch","age":35,"location":"Ovaton"}},{"attributes":{"name":"Constance Murray","age":71,"location":"West Joanny"}},{"attributes":{"name":"Jackie Ondricka","age":78,"location":"Lake Francesco"}},{"attributes":{"name":"Alvina Ritchie-Kemmer","age":28,"location":"Wilkinsonside"}},{"attributes":{"name":"Kristoffer Reichel","age":66,"location":"Kossstad"}},{"attributes":{"name":"Kris Hauck","age":43,"location":"Port Emmettcester"}},{"attributes":{"name":"Dr. Sidney Farrell","age":49,"location":"Collinsstad"}},{"attributes":{"name":"Ephraim Marquardt","age":27,"location":"Wyoming"}},{"attributes":{"name":"Nico Effertz I","age":47,"location":"San Marcos"}},{"attributes":{"name":"Rosendo Rolfson","age":45,"location":"Longview"}},{"attributes":{"name":"Karla Hartmann","age":24,"location":"West Alba"}},{"attributes":{"name":"Wilma Davis IV","age":18,"location":"Providence"}},{"attributes":{"name":"Maverick Quitzon","age":76,"location":"New Olaf"}},{"attributes":{"name":"Derrick Conn","age":58,"location":"The Villages"}},{"attributes":{"name":"Myriam Kunde Jr.","age":41,"location":"Franeyboro"}},{"attributes":{"name":"Angela Rippin","age":66,"location":"Harrishaven"}},{"attributes":{"name":"Hermina Mante","age":59,"location":"Lake Jaydonborough"}},{"attributes":{"name":"Syble Prosacco","age":22,"location":"Candaceport"}},{"attributes":{"name":"Dr. Brian Langosh","age":72,"location":"St. Cloud"}},{"attributes":{"name":"Alisa Nicolas","age":47,"location":"Deloresberg"}},{"attributes":{"name":"Lorenzo Hand","age":67,"location":"Fort Shakira"}},{"attributes":{"name":"Keyshawn Wilkinson","age":23,"location":"East Timmy"}},{"attributes":{"name":"Adrien McCullough","age":55,"location":"Jersey City"}},{"attributes":{"name":"Dr. Ramona Gleason","age":68,"location":"South Lamont"}},{"attributes":{"name":"Marion Kuhlman","age":51,"location":"Framibury"}},{"attributes":{"name":"Judd Hoppe","age":52,"location":"Schowalterstead"}},{"attributes":{"name":"Darryl Powlowski","age":65,"location":"Port Tierrashire"}},{"attributes":{"name":"Darrell Cartwright","age":43,"location":"West Marleneport"}},{"attributes":{"name":"Mrs. Jo Hagenes","age":77,"location":"Jamarstead"}},{"attributes":{"name":"Naomi Langosh","age":64,"location":"Rayburgh"}},{"attributes":{"name":"Otis Beahan","age":64,"location":"Hillsboro"}},{"attributes":{"name":"Tonya Medhurst","age":32,"location":"Jurupa Valley"}},{"attributes":{"name":"Elvira Gutmann","age":35,"location":"Dallasview"}},{"attributes":{"name":"Rachelle Trantow PhD","age":59,"location":"Fremont"}},{"attributes":{"name":"Mr. Rickey Lynch","age":74,"location":"Swaniawskitown"}},{"attributes":{"name":"Mozelle Pollich III","age":66,"location":"North Devonte"}},{"attributes":{"name":"Velma Mraz","age":65,"location":"Itzelland"}},{"attributes":{"name":"Maiya Barrows","age":70,"location":"South Viola"}},{"attributes":{"name":"Heidi Kuhn","age":38,"location":"Romaineborough"}},{"attributes":{"name":"Fernando Streich","age":38,"location":"Buffalo"}},{"attributes":{"name":"Carole Considine","age":53,"location":"Wisokyfield"}},{"attributes":{"name":"Jaren Rolfson","age":20,"location":"Karelleport"}},{"attributes":{"name":"Karson Jaskolski","age":61,"location":"Zackburgh"}},{"attributes":{"name":"Laila Huels-Stracke","age":33,"location":"Helmermouth"}},{"attributes":{"name":"Travis Weissnat","age":60,"location":"Altenwerthworth"}},{"attributes":{"name":"Geo Langosh","age":29,"location":"Fort Zariaworth"}},{"attributes":{"name":"Ramiro Koelpin","age":62,"location":"Claraworth"}},{"attributes":{"name":"Melissa Stoltenberg","age":42,"location":"Orland Park"}},{"attributes":{"name":"Myrtice Hyatt PhD","age":78,"location":"New Bedford"}},{"attributes":{"name":"Wanda Goyette","age":45,"location":"Dominiqueburgh"}},{"attributes":{"name":"Hank Kassulke","age":35,"location":"Fort Janis"}},{"attributes":{"name":"Dr. Cortney Fay","age":31,"location":"Rempelhaven"}},{"attributes":{"name":"Ewell Sauer","age":77,"location":"Cincinnati"}},{"attributes":{"name":"Sabrina Mraz-Donnelly III","age":56,"location":"South Gabriella"}},{"attributes":{"name":"Diana Lockman","age":50,"location":"Port Paula"}},{"attributes":{"name":"Mr. Oliver Russel","age":72,"location":"Fort Patriciafurt"}},{"attributes":{"name":"Chester Pouros","age":56,"location":"Fort Glen"}},{"attributes":{"name":"Pauline Lehner MD","age":26,"location":"Jakubowskiport"}},{"attributes":{"name":"Hector Kautzer","age":75,"location":"Lake Efren"}},{"attributes":{"name":"Lori Schinner","age":25,"location":"Bridgeport"}},{"attributes":{"name":"Brain Hansen","age":31,"location":"Hirtheboro"}},{"attributes":{"name":"Arch Reinger","age":64,"location":"Lake Arianna"}},{"attributes":{"name":"Allison Jaskolski","age":76,"location":"South Eunaberg"}},{"attributes":{"name":"Clay Ankunding","age":38,"location":"East Hardyside"}},{"attributes":{"name":"Amber Rohan","age":34,"location":"Denesikland"}},{"attributes":{"name":"Dr. Imani Hahn-Greenfelder","age":40,"location":"Berwyn"}},{"attributes":{"name":"Stewart Friesen","age":58,"location":"Smithside"}},{"attributes":{"name":"Lolita Murray","age":35,"location":"Joplin"}},{"attributes":{"name":"Wm Bahringer","age":51,"location":"Providenciport"}},{"attributes":{"name":"Lynne Ritchie","age":21,"location":"South Kendrickcester"}},{"attributes":{"name":"Alonzo Cassin MD","age":73,"location":"Vandervortburgh"}},{"attributes":{"name":"Sylvia Pollich PhD","age":22,"location":"New Kaya"}},{"attributes":{"name":"Mr. Molly Corkery","age":65,"location":"MacGyverfurt"}},{"attributes":{"name":"Jana Hilpert","age":61,"location":"South Elodyfort"}},{"attributes":{"name":"Karine Nicolas","age":39,"location":"Alfredaworth"}},{"attributes":{"name":"Conor Beier","age":20,"location":"Williebury"}},{"attributes":{"name":"Dr. Mavis Smith","age":78,"location":"Heleneland"}},{"attributes":{"name":"Yasmine Mante-Sipes","age":47,"location":"Blazeville"}},{"attributes":{"name":"Antoinette Robel","age":50,"location":"Redmond"}},{"attributes":{"name":"Marcella Welch","age":34,"location":"Fort Kaylie"}},{"attributes":{"name":"Kari Pacocha","age":78,"location":"Gloriaport"}},{"attributes":{"name":"Matthew Sanford","age":51,"location":"West Lizaville"}},{"attributes":{"name":"Debra Glover","age":29,"location":"Selmerhaven"}},{"attributes":{"name":"Clarence Jerde IV","age":53,"location":"North Laishacester"}},{"attributes":{"name":"Roland Tillman","age":71,"location":"North Jermain"}},{"attributes":{"name":"Christina Monahan","age":77,"location":"South Pearlport"}},{"attributes":{"name":"Betty Rohan Sr.","age":77,"location":"Mattieburgh"}},{"attributes":{"name":"Renee Effertz","age":18,"location":"Port Charlotte"}},{"attributes":{"name":"Robert Johnston","age":53,"location":"Aufderharboro"}},{"attributes":{"name":"Leigh Botsford","age":27,"location":"Tressaland"}},{"attributes":{"name":"Bennie Yundt","age":66,"location":"Decatur"}},{"attributes":{"name":"Charlie Will","age":30,"location":"East Cleta"}},{"attributes":{"name":"Helmer Zboncak-Lehner","age":57,"location":"Devonworth"}},{"attributes":{"name":"Liam McKenzie","age":51,"location":"West Jerome"}},{"attributes":{"name":"Dave Moen","age":34,"location":"Biankastead"}},{"attributes":{"name":"Wilfred Klocko","age":80,"location":"South Mariamburgh"}},{"attributes":{"name":"Ms. Viola Pfannerstill","age":39,"location":"Hudsonhaven"}},{"attributes":{"name":"Francisca Glover","age":73,"location":"Wittingbury"}},{"attributes":{"name":"Carroll Jacobson","age":25,"location":"Gradymouth"}},{"attributes":{"name":"Jack Denesik","age":76,"location":"Fort Darby"}},{"attributes":{"name":"Leigh Langworth","age":19,"location":"South Ayden"}},{"attributes":{"name":"Gretchen Heidenreich","age":64,"location":"Keyonton"}},{"attributes":{"name":"Elbert Mante V","age":34,"location":"Jonathonburgh"}},{"attributes":{"name":"David Kovacek","age":42,"location":"Elisabethstead"}},{"attributes":{"name":"Willis Ullrich PhD","age":77,"location":"Hansentown"}},{"attributes":{"name":"Moses Pfannerstill-Jacobs","age":38,"location":"Frankiebury"}},{"attributes":{"name":"Mike Mosciski","age":40,"location":"Redwood City"}},{"attributes":{"name":"Wilson Emard","age":44,"location":"Arden-Arcade"}},{"attributes":{"name":"Mr. Bradford Lemke","age":64,"location":"Waipahu"}},{"attributes":{"name":"Mamie Gleason","age":44,"location":"South Lavernafield"}},{"attributes":{"name":"Miss Sheridan Carroll","age":19,"location":"Eugeniahaven"}},{"attributes":{"name":"Edmund Kuphal","age":69,"location":"East Clevelandboro"}},{"attributes":{"name":"Dallas Weimann","age":22,"location":"East Daisha"}},{"attributes":{"name":"Sonja Weimann","age":77,"location":"Port Sebastian"}},{"attributes":{"name":"Rudy Brekke-Bergstrom","age":47,"location":"New Dustychester"}},{"attributes":{"name":"Ms. Loyce Stanton","age":73,"location":"High Point"}},{"attributes":{"name":"Jonathon Cassin","age":67,"location":"Lindburgh"}},{"attributes":{"name":"Joel Kassulke","age":72,"location":"Homenickborough"}},{"attributes":{"name":"Miss Joseph Jacobi","age":70,"location":"Armaniborough"}},{"attributes":{"name":"Doyle Grady DDS","age":25,"location":"DeSoto"}},{"attributes":{"name":"Dr. Myrtle Kiehn","age":70,"location":"El Dorado Hills"}},{"attributes":{"name":"Haylee Boyer","age":61,"location":"Peggiebury"}},{"attributes":{"name":"Miriam Hammes","age":76,"location":"Port Hershelworth"}},{"attributes":{"name":"Santa Harris","age":47,"location":"Downey"}},{"attributes":{"name":"Josephine Larson","age":23,"location":"West Newellside"}},{"attributes":{"name":"Rudolph Batz","age":53,"location":"North Margarett"}},{"attributes":{"name":"Johnnie Cassin","age":78,"location":"West Yeseniachester"}},{"attributes":{"name":"Dr. Tricia Mills PhD","age":42,"location":"North Raleigh"}},{"attributes":{"name":"Rosie Mayer","age":68,"location":"Smithburgh"}},{"attributes":{"name":"Winston Goldner-Greenfelder","age":57,"location":"Kamronshire"}},{"attributes":{"name":"Ms. Pedro Von","age":57,"location":"Rueckerboro"}},{"attributes":{"name":"Mr. Pasquale Christiansen","age":80,"location":"East Ricky"}},{"attributes":{"name":"Krystal Greenfelder","age":61,"location":"Everettetown"}},{"attributes":{"name":"Bonnie Feeney","age":71,"location":"South Elvachester"}},{"attributes":{"name":"Lisa Thiel","age":47,"location":"New Robertoboro"}},{"attributes":{"name":"Myles Stoltenberg","age":41,"location":"Waelchifort"}},{"attributes":{"name":"Randy Larkin","age":78,"location":"Lake Brad"}},{"attributes":{"name":"Chris Wuckert","age":25,"location":"Joesphburgh"}},{"attributes":{"name":"Dr. Macie Cummings I","age":24,"location":"Port Geotown"}},{"attributes":{"name":"Theodora Kling","age":71,"location":"Fort Glenna"}},{"attributes":{"name":"Hazel Wisoky-Bartell","age":28,"location":"West Golda"}},{"attributes":{"name":"Ellsworth Friesen","age":41,"location":"Norman"}},{"attributes":{"name":"Keyon Legros PhD","age":20,"location":"Palmdale"}},{"attributes":{"name":"Kristin Labadie","age":62,"location":"North Randy"}},{"attributes":{"name":"Candido Jenkins DVM","age":41,"location":"Shanahancester"}},{"attributes":{"name":"Micheal Jaskolski","age":57,"location":"West Carrieside"}},{"attributes":{"name":"Sara Lindgren","age":48,"location":"West Javonfield"}},{"attributes":{"name":"Earnest Dickinson","age":69,"location":"West Nakia"}},{"attributes":{"name":"Beulah Trantow","age":45,"location":"Fort Lelialand"}},{"attributes":{"name":"Lila Hayes","age":70,"location":"Berwyn"}},{"attributes":{"name":"Reva Wisozk","age":18,"location":"Carmichael"}},{"attributes":{"name":"Jevon Kunze","age":46,"location":"Lake Alysson"}},{"attributes":{"name":"Garry O'Keefe","age":71,"location":"Brekkefield"}},{"attributes":{"name":"Eddie Witting","age":26,"location":"Lindgrenbury"}},{"attributes":{"name":"Lambert Blick","age":48,"location":"West Ashlee"}},{"attributes":{"name":"Mr. Kelsie Wuckert III","age":67,"location":"Huelsville"}},{"attributes":{"name":"Olin Bergnaum-Russel II","age":18,"location":"North Leoratown"}},{"attributes":{"name":"Daren Murphy","age":67,"location":"Ratkeworth"}},{"attributes":{"name":"Edmond Barton I","age":40,"location":"East Osbaldoburgh"}},{"attributes":{"name":"Dr. Elaine Harvey","age":70,"location":"Lake Brandi"}},{"attributes":{"name":"Lucia Satterfield V","age":69,"location":"Shirleyburgh"}},{"attributes":{"name":"Troy Dietrich","age":49,"location":"New Shawn"}},{"attributes":{"name":"Rick Braun","age":23,"location":"Kaitlynmouth"}},{"attributes":{"name":"Sylvester McClure","age":34,"location":"Gutkowskiburgh"}},{"attributes":{"name":"Terrence Stracke","age":79,"location":"Rodriguezstead"}},{"attributes":{"name":"Ronnie Robel","age":65,"location":"Rancho Cucamonga"}},{"attributes":{"name":"Virgil Monahan","age":58,"location":"Schillerberg"}},{"attributes":{"name":"Mario Kuphal","age":39,"location":"San Bernardino"}},{"attributes":{"name":"Devan Nienow","age":45,"location":"Paramount"}},{"attributes":{"name":"Elaine Prosacco","age":73,"location":"Johnsonworth"}},{"attributes":{"name":"Angie Spencer","age":31,"location":"New Dameonhaven"}},{"attributes":{"name":"Jon Waelchi","age":55,"location":"Halvorsonshire"}},{"attributes":{"name":"Patti Schroeder","age":61,"location":"Abdulshire"}},{"attributes":{"name":"Dr. Harry Lind","age":62,"location":"Lavonnehaven"}},{"attributes":{"name":"Johnnie Kertzmann PhD","age":19,"location":"Elizaberg"}},{"attributes":{"name":"Rebecca O'Reilly","age":56,"location":"Fort Dannyport"}},{"attributes":{"name":"Percival Hoppe","age":23,"location":"Napa"}},{"attributes":{"name":"Ms. Sophia Kshlerin","age":48,"location":"South Antoniettaton"}},{"attributes":{"name":"Ariane Oberbrunner","age":26,"location":"Arecibo"}},{"attributes":{"name":"Bill Runolfsson","age":27,"location":"Millerworth"}},{"attributes":{"name":"Winnifred Jakubowski","age":31,"location":"Grand Junction"}},{"attributes":{"name":"Miss Alisha Rempel","age":67,"location":"Lake Jarredstad"}},{"attributes":{"name":"Mr. Alisha Mayert","age":73,"location":"North Jamelport"}},{"attributes":{"name":"Tom Yost","age":37,"location":"South Juwan"}},{"attributes":{"name":"Toby Emard-Rath","age":79,"location":"New Fatimaton"}},{"attributes":{"name":"Yasmine Purdy","age":52,"location":"Treuteltown"}},{"attributes":{"name":"Marshall Keeling","age":70,"location":"Lewisville"}},{"attributes":{"name":"Miss Adella Beer","age":60,"location":"Flower Mound"}},{"attributes":{"name":"Leslie Runte","age":54,"location":"Leschview"}},{"attributes":{"name":"Miss Jessie Wintheiser III","age":70,"location":"Orentown"}},{"attributes":{"name":"Faye White","age":79,"location":"Miami"}},{"attributes":{"name":"Theron Ritchie","age":42,"location":"Stacyfurt"}},{"attributes":{"name":"Clifford Graham","age":40,"location":"Borisstead"}},{"attributes":{"name":"Judge Ledner V","age":41,"location":"New Rex"}},{"attributes":{"name":"Saige Hills","age":37,"location":"Hicksville"}},{"attributes":{"name":"Leigh Gottlieb","age":38,"location":"Tessiestead"}},{"attributes":{"name":"Mildred Gleichner","age":42,"location":"West Pollytown"}},{"attributes":{"name":"Ramona Becker V","age":60,"location":"Redding"}},{"attributes":{"name":"Preston O'Keefe","age":57,"location":"South Arden"}},{"attributes":{"name":"Oscar Davis","age":63,"location":"North Juvenal"}},{"attributes":{"name":"Rhianna Herman II","age":46,"location":"Fort Winstonmouth"}},{"attributes":{"name":"Leah Becker","age":68,"location":"Smyrna"}},{"attributes":{"name":"Judy Goldner","age":60,"location":"Hartmannstead"}},{"attributes":{"name":"Dr. Rosemary Kautzer","age":26,"location":"Codyberg"}},{"attributes":{"name":"Rene Pollich Sr.","age":80,"location":"Haltom City"}},{"attributes":{"name":"Miss Jaron Buckridge","age":64,"location":"Estelleport"}},{"attributes":{"name":"Alexandra Frami","age":78,"location":"Gorczanymouth"}},{"attributes":{"name":"Darrin Nienow","age":48,"location":"Carlsbad"}},{"attributes":{"name":"Chester Satterfield","age":24,"location":"Franeckishire"}},{"attributes":{"name":"Emilio Bayer","age":75,"location":"Lake Nikki"}},{"attributes":{"name":"Estelle Reichert","age":37,"location":"Pensacola"}},{"attributes":{"name":"Muriel Gerhold","age":66,"location":"Efrenfurt"}},{"attributes":{"name":"Elena Considine II","age":56,"location":"Schoenside"}},{"attributes":{"name":"Dan Borer","age":37,"location":"Fadelview"}},{"attributes":{"name":"Dr. Edmond Willms","age":74,"location":"Syracuse"}},{"attributes":{"name":"Pauline Schumm","age":68,"location":"South Emanuel"}},{"attributes":{"name":"Cynthia Goodwin","age":20,"location":"Port Veronahaven"}},{"attributes":{"name":"Nelson Skiles","age":56,"location":"New Emelie"}},{"attributes":{"name":"Luther Kiehn","age":24,"location":"New Frankstad"}},{"attributes":{"name":"Willie Kirlin","age":23,"location":"Margareteboro"}},{"attributes":{"name":"Ola Wisozk","age":38,"location":"Lubowitzbury"}},{"attributes":{"name":"Aron Walter","age":65,"location":"Lake Kevonboro"}},{"attributes":{"name":"Dr. Otis Schultz","age":32,"location":"Port Derek"}},{"attributes":{"name":"Stacy Schoen","age":76,"location":"Lake Dorothy"}},{"attributes":{"name":"Miss Preston Barrows","age":39,"location":"Lake Elsinore"}},{"attributes":{"name":"Emil Zulauf","age":69,"location":"South Maxine"}},{"attributes":{"name":"Mathew Yost","age":45,"location":"Medhurstborough"}},{"attributes":{"name":"Richard Schumm","age":54,"location":"Everardostad"}},{"attributes":{"name":"Alek Smitham","age":50,"location":"South Verla"}},{"attributes":{"name":"Albert Ferry","age":31,"location":"West Alexannehaven"}},{"attributes":{"name":"Alicia Harber","age":74,"location":"Nadermouth"}},{"attributes":{"name":"Mrs. Jennie Rowe","age":49,"location":"Schambergershire"}},{"attributes":{"name":"Luz Hills","age":45,"location":"Belleville"}},{"attributes":{"name":"Floyd Bahringer","age":48,"location":"Logan"}},{"attributes":{"name":"Delores Will","age":59,"location":"East Eribertoport"}},{"attributes":{"name":"Javier Gutkowski","age":70,"location":"Fort Rafael"}},{"attributes":{"name":"Shari Pacocha","age":18,"location":"Florianshire"}},{"attributes":{"name":"Tyree Waelchi","age":23,"location":"West Moises"}},{"attributes":{"name":"Jaiden Steuber","age":28,"location":"East Susiemouth"}},{"attributes":{"name":"Delfina Greenfelder","age":45,"location":"Lillianboro"}},{"attributes":{"name":"Kiley McClure","age":24,"location":"Lake Isabellborough"}},{"attributes":{"name":"Miss Ernestina Donnelly","age":58,"location":"Novi"}},{"attributes":{"name":"Penny Wiza","age":53,"location":"East Jasenview"}},{"attributes":{"name":"Geraldine Hoeger I","age":56,"location":"Shemarstad"}},{"attributes":{"name":"Genoveva Breitenberg","age":30,"location":"Paytonborough"}},{"attributes":{"name":"Daniella Carroll DVM","age":59,"location":"DuBuqueland"}},{"attributes":{"name":"Jaime Baumbach","age":72,"location":"West Angela"}},{"attributes":{"name":"Natalie Rippin II","age":19,"location":"Lake Freidafort"}},{"attributes":{"name":"Florence Weber","age":23,"location":"Runolfssonberg"}},{"attributes":{"name":"Lola Labadie II","age":31,"location":"Fort Lera"}},{"attributes":{"name":"Noel Hettinger","age":40,"location":"New Barrettstad"}},{"attributes":{"name":"Hattie Witting","age":45,"location":"Osinskiview"}},{"attributes":{"name":"Dr. Kim Robel","age":49,"location":"Lake Daphnee"}},{"attributes":{"name":"Ephraim Bosco","age":62,"location":"Bergnaumstad"}},{"attributes":{"name":"Rita Volkman","age":40,"location":"Cruickshankstad"}},{"attributes":{"name":"Andre Stoltenberg","age":22,"location":"Kirlinfurt"}},{"attributes":{"name":"Leroy Jones","age":42,"location":"Appleton"}},{"attributes":{"name":"Hector Paucek","age":80,"location":"Richmondtown"}},{"attributes":{"name":"Janice Morar","age":54,"location":"Jewelfort"}},{"attributes":{"name":"Gregg Hoeger","age":27,"location":"Port Feltonfort"}},{"attributes":{"name":"Guadalupe Kulas I","age":18,"location":"Wallaceport"}},{"attributes":{"name":"Dr. Mallie Collier","age":42,"location":"Ryderboro"}},{"attributes":{"name":"Ora Howell","age":48,"location":"Porterville"}},{"attributes":{"name":"Vincent Wisoky","age":67,"location":"Santa Clarita"}},{"attributes":{"name":"Doug Schumm","age":50,"location":"Nienowtown"}},{"attributes":{"name":"Laverne Emmerich","age":73,"location":"Johnpaulport"}},{"attributes":{"name":"Melissa Morissette","age":23,"location":"East Cielostad"}},{"attributes":{"name":"Maria Reynolds-Crist","age":38,"location":"Morissetteburgh"}},{"attributes":{"name":"Edwin Bogan","age":78,"location":"Fort Louisaborough"}},{"attributes":{"name":"Emilio Dare V","age":42,"location":"South Jade"}},{"attributes":{"name":"Miss Barbara Jones","age":22,"location":"Port Lianashire"}},{"attributes":{"name":"Jenny Fisher","age":54,"location":"Burdettetown"}},{"attributes":{"name":"Odell Pacocha MD","age":21,"location":"Goldnerland"}},{"attributes":{"name":"Sonia Krajcik","age":61,"location":"Wheaton"}},{"attributes":{"name":"Douglas Herman","age":70,"location":"Fort Lorineton"}},{"attributes":{"name":"Allison Armstrong","age":31,"location":"Lake Carolanne"}},{"attributes":{"name":"Ms. Stone Wintheiser","age":32,"location":"North Jaqueline"}},{"attributes":{"name":"Mr. Israel Schamberger","age":52,"location":"Fort Darrick"}},{"attributes":{"name":"Kaelyn Rice","age":43,"location":"East Nathaniel"}},{"attributes":{"name":"Bobbie Wilkinson","age":35,"location":"Wilfredoland"}},{"attributes":{"name":"Julius Murray","age":73,"location":"Lacey"}},{"attributes":{"name":"Dr. Tanya Leannon","age":73,"location":"Lake Megane"}},{"attributes":{"name":"Rickey Roob","age":26,"location":"South Darwin"}},{"attributes":{"name":"Friedrich Schuppe","age":33,"location":"Port Darylfort"}},{"attributes":{"name":"Guadalupe Kreiger","age":75,"location":"Ronnyland"}},{"attributes":{"name":"Wilbur Stanton","age":47,"location":"Port Lorine"}},{"attributes":{"name":"Sherman Bernhard","age":33,"location":"Alexatown"}},{"attributes":{"name":"Craig Nikolaus","age":54,"location":"Roweworth"}},{"attributes":{"name":"Luz Zulauf-Hettinger","age":42,"location":"Kolbyfort"}},{"attributes":{"name":"Nicholas Buckridge","age":54,"location":"Weimannberg"}},{"attributes":{"name":"Kimberly Dietrich","age":57,"location":"Bayerstead"}},{"attributes":{"name":"Abel Gerlach","age":78,"location":"Jasperstad"}},{"attributes":{"name":"Dwayne Schmeler","age":78,"location":"New Claud"}},{"attributes":{"name":"Elsie Weimann","age":32,"location":"New Virgie"}},{"attributes":{"name":"Toni Altenwerth","age":70,"location":"Hacienda Heights"}},{"attributes":{"name":"Clyde Hamill","age":66,"location":"Hintzmouth"}},{"attributes":{"name":"Pat Mueller","age":53,"location":"New Jadynfort"}},{"attributes":{"name":"Diana Reilly","age":63,"location":"Guillermoland"}},{"attributes":{"name":"Christie O'Keefe","age":67,"location":"New Nick"}},{"attributes":{"name":"Jerod Stamm","age":24,"location":"Fort Lora"}},{"attributes":{"name":"Dr. Felipe Harris","age":25,"location":"Luettgenmouth"}},{"attributes":{"name":"Ramiro Welch-Herman","age":43,"location":"Akron"}},{"attributes":{"name":"Loren Grimes","age":60,"location":"North Annamae"}},{"attributes":{"name":"Giovani Altenwerth","age":71,"location":"Lake Dorian"}},{"attributes":{"name":"Pierre Mohr","age":24,"location":"Wheaton"}},{"attributes":{"name":"Christine Rodriguez","age":35,"location":"Fort Abigayle"}},{"attributes":{"name":"Savion Kemmer DVM","age":68,"location":"Jasttown"}},{"attributes":{"name":"Nettie Miller","age":42,"location":"Providencihaven"}},{"attributes":{"name":"Stanley Russel","age":50,"location":"Baileyhaven"}},{"attributes":{"name":"Rocky Schaden","age":48,"location":"Allentown"}},{"attributes":{"name":"Hugh Stroman","age":58,"location":"Larsonton"}},{"attributes":{"name":"Mrs. Milton Bernier III","age":79,"location":"Fort Christop"}},{"attributes":{"name":"Lorena Abernathy","age":80,"location":"South Kyraview"}},{"attributes":{"name":"Casey Herzog","age":68,"location":"North Carter"}},{"attributes":{"name":"Libbie Jakubowski","age":31,"location":"Palm Springs"}},{"attributes":{"name":"Consuelo Russel","age":69,"location":"South Laurine"}},{"attributes":{"name":"Douglas Gottlieb-Hegmann","age":21,"location":"Langoshstead"}},{"attributes":{"name":"Mrs. Barrett Johns","age":71,"location":"Madelynnhaven"}},{"attributes":{"name":"Ebony Vandervort","age":49,"location":"Elmirabury"}},{"attributes":{"name":"Edgar O'Connell IV","age":61,"location":"Fort Kayacester"}},{"attributes":{"name":"Oscar Hirthe","age":64,"location":"Cartercester"}},{"attributes":{"name":"Mattie Nikolaus","age":22,"location":"Johnfurt"}},{"attributes":{"name":"Gwen Kub","age":50,"location":"Port Mauricio"}},{"attributes":{"name":"Candace Ziemann","age":55,"location":"New Elouisestad"}},{"attributes":{"name":"Ms. Susie Heaney-Quitzon","age":79,"location":"East Corneliustown"}},{"attributes":{"name":"Elisa Stanton","age":28,"location":"North Miami"}},{"attributes":{"name":"Regina Wiza","age":59,"location":"Carolannecester"}},{"attributes":{"name":"Kay Graham III","age":36,"location":"Lake Orenmouth"}},{"attributes":{"name":"Celia Bartoletti PhD","age":63,"location":"Stammborough"}},{"attributes":{"name":"Beau Collins","age":46,"location":"Kaelynview"}},{"attributes":{"name":"Dr. Sara Thompson","age":71,"location":"Riverview"}},{"attributes":{"name":"Georgette Watsica","age":30,"location":"Baytown"}},{"attributes":{"name":"Nicolas Lynch","age":57,"location":"Cupertino"}},{"attributes":{"name":"Pink Willms","age":46,"location":"New Theoside"}},{"attributes":{"name":"Jack Ruecker","age":48,"location":"Fort Adellaside"}},{"attributes":{"name":"Miss Lila Kuhic","age":73,"location":"Denton"}},{"attributes":{"name":"Mr. Fredrick Moen","age":58,"location":"Bednarburgh"}},{"attributes":{"name":"Gordon Metz","age":57,"location":"Lake Martastead"}},{"attributes":{"name":"Sherman Abbott","age":32,"location":"San Mateo"}},{"attributes":{"name":"Yvette Goldner","age":32,"location":"Coralieport"}},{"attributes":{"name":"Mabel Oberbrunner V","age":24,"location":"Fort Issacshire"}},{"attributes":{"name":"Jim Boehm Jr.","age":44,"location":"Commerce City"}},{"attributes":{"name":"Samson Hamill","age":52,"location":"Kesslerfurt"}},{"attributes":{"name":"Mrs. Shelly Mertz","age":32,"location":"East Freda"}},{"attributes":{"name":"Mr. Perry Sauer","age":66,"location":"East Orenburgh"}},{"attributes":{"name":"Lori Jacobson","age":46,"location":"Dessieburgh"}},{"attributes":{"name":"Mable Hartmann","age":72,"location":"West Jakayla"}},{"attributes":{"name":"Clark Kilback","age":66,"location":"Bertramfort"}},{"attributes":{"name":"Julian Fisher","age":76,"location":"Mosciskimouth"}},{"attributes":{"name":"Heather Carter","age":23,"location":"Gulgowskiborough"}},{"attributes":{"name":"Cecilia Strosin","age":35,"location":"Purdyville"}},{"attributes":{"name":"Mario Turcotte","age":56,"location":"Enid"}},{"attributes":{"name":"Abdiel Smitham","age":21,"location":"East Ken"}},{"attributes":{"name":"Faye Ward","age":53,"location":"Labadieshire"}},{"attributes":{"name":"Janis Zulauf","age":46,"location":"East Delphabury"}},{"attributes":{"name":"Mr. Sarah Koelpin","age":45,"location":"Chicopee"}},{"attributes":{"name":"Kayli West Sr.","age":43,"location":"Lake Vernie"}},{"attributes":{"name":"Dr. Tatum Jast-White","age":44,"location":"South Asiaworth"}},{"attributes":{"name":"Miss Markus Gislason","age":64,"location":"New Sallie"}},{"attributes":{"name":"Abel Kilback Jr.","age":51,"location":"New Sammieburgh"}},{"attributes":{"name":"Ken Johns","age":53,"location":"O'Connerfurt"}},{"attributes":{"name":"Ms. Candice Johnson","age":74,"location":"Phoenix"}},{"attributes":{"name":"Bradford Welch","age":50,"location":"Kadeshire"}},{"attributes":{"name":"Dr. Pat Pfannerstill","age":77,"location":"North Lonzo"}},{"attributes":{"name":"Lucia Kulas","age":70,"location":"Rachelcester"}},{"attributes":{"name":"Willis Davis","age":76,"location":"Valentinfort"}},{"attributes":{"name":"Jon Torphy","age":66,"location":"Kyleeworth"}},{"attributes":{"name":"Dr. Ethel Sanford","age":60,"location":"Port Mohammed"}},{"attributes":{"name":"Imogene Sipes","age":18,"location":"St. Clair Shores"}},{"attributes":{"name":"Marcos Ondricka","age":52,"location":"MacGyverside"}},{"attributes":{"name":"Virginie Greenfelder","age":70,"location":"Kohlerton"}},{"attributes":{"name":"Lucile Dach","age":30,"location":"Norwalk"}},{"attributes":{"name":"Marsha Kuhn","age":57,"location":"Abshireworth"}},{"attributes":{"name":"Dallas Wyman","age":41,"location":"North Vicente"}},{"attributes":{"name":"Alfred Welch","age":25,"location":"Shieldshaven"}},{"attributes":{"name":"Mr. Horace Funk","age":46,"location":"Port Kasandraport"}},{"attributes":{"name":"Meggie Abshire","age":20,"location":"Lake Ceceliashire"}},{"attributes":{"name":"Jules Lemke DVM","age":41,"location":"Janesville"}},{"attributes":{"name":"Kelvin Kemmer","age":61,"location":"Hendersonville"}},{"attributes":{"name":"Meredith Collins","age":64,"location":"Flatleyfort"}},{"attributes":{"name":"Kent Kemmer","age":69,"location":"Brendonfort"}},{"attributes":{"name":"Maeve Moen-White","age":23,"location":"Fort Winnifredside"}},{"attributes":{"name":"Dr. Mauricio Hudson","age":23,"location":"North Celestineview"}},{"attributes":{"name":"Elvie Cartwright","age":75,"location":"Lake Davon"}},{"attributes":{"name":"Claire Carroll","age":37,"location":"Morarchester"}},{"attributes":{"name":"Mr. Bryant Bayer","age":46,"location":"Lee's Summit"}},{"attributes":{"name":"Angie Daugherty","age":77,"location":"Frederick"}},{"attributes":{"name":"Devin Larkin","age":77,"location":"New Karleyview"}},{"attributes":{"name":"Yvette Champlin DVM","age":56,"location":"Provo"}},{"attributes":{"name":"Charlie O'Hara","age":34,"location":"Rayland"}},{"attributes":{"name":"Leo Schimmel","age":77,"location":"New Isac"}},{"attributes":{"name":"Rachael Herzog","age":45,"location":"Boyleboro"}},{"attributes":{"name":"Sanford Gulgowski","age":31,"location":"Fort Donnahaven"}},{"attributes":{"name":"Gwen Deckow PhD","age":70,"location":"Port Deronfurt"}},{"attributes":{"name":"Gail Fay","age":76,"location":"Pomona"}},{"attributes":{"name":"Roma Reichert","age":57,"location":"La Crosse"}},{"attributes":{"name":"Ara Mayert","age":23,"location":"Addisonstead"}},{"attributes":{"name":"Kelley Gerhold","age":54,"location":"Irondequoit"}},{"attributes":{"name":"Cloyd Berge","age":69,"location":"Compton"}},{"attributes":{"name":"Candace Simonis","age":52,"location":"Port Corbinshire"}},{"attributes":{"name":"Francisco Heidenreich","age":26,"location":"Kissimmee"}},{"attributes":{"name":"Zackary Dickens DDS","age":47,"location":"West Anna"}},{"attributes":{"name":"Gayle Bayer","age":77,"location":"Kattiefort"}},{"attributes":{"name":"Maximillia Dicki","age":55,"location":"West Stanleychester"}},{"attributes":{"name":"Dr. Danyka Stroman","age":74,"location":"Fisherton"}},{"attributes":{"name":"Nona Howell","age":34,"location":"South Williefurt"}},{"attributes":{"name":"Lila Nader","age":46,"location":"Daytona Beach"}},{"attributes":{"name":"Gerardo Swaniawski","age":56,"location":"West Millie"}},{"attributes":{"name":"Francisco Jaskolski","age":46,"location":"East Mabelle"}},{"attributes":{"name":"Ms. Lesley Mohr","age":37,"location":"Declancester"}},{"attributes":{"name":"Braden Fay","age":70,"location":"East Charleneborough"}},{"attributes":{"name":"Chris Pagac","age":74,"location":"Fort Jason"}},{"attributes":{"name":"Nakia Ritchie","age":36,"location":"Hubertworth"}},{"attributes":{"name":"Gladys Pfannerstill","age":43,"location":"Ceceliashire"}},{"attributes":{"name":"Lauren Wintheiser-Thiel","age":74,"location":"Fort Oda"}},{"attributes":{"name":"Mr. Colten Kunze","age":51,"location":"East Tessiemouth"}},{"attributes":{"name":"Miss Seth Schultz","age":69,"location":"Abagailcester"}},{"attributes":{"name":"Salvatore Lowe","age":67,"location":"North Sincerestead"}},{"attributes":{"name":"Sheldon Swift","age":31,"location":"North Estelleborough"}},{"attributes":{"name":"Curtis Littel","age":58,"location":"East Donberg"}},{"attributes":{"name":"Cali Feeney","age":76,"location":"Gutmanntown"}},{"attributes":{"name":"Etha Kozey","age":24,"location":"Orieland"}},{"attributes":{"name":"Earl Murray","age":36,"location":"Breanabury"}},{"attributes":{"name":"Johnathan Gorczany II","age":27,"location":"Fort Amaya"}},{"attributes":{"name":"Keith Auer","age":77,"location":"Dickicester"}},{"attributes":{"name":"Holly Wyman","age":44,"location":"Brekkemouth"}},{"attributes":{"name":"Maureen Walsh","age":54,"location":"Deborahbury"}},{"attributes":{"name":"Orlando Sipes","age":63,"location":"East Herbert"}},{"attributes":{"name":"Miss Kerry Hilpert","age":26,"location":"Huelbury"}},{"attributes":{"name":"Kattie Connelly","age":35,"location":"Toledo"}},{"attributes":{"name":"Felicia Emard Sr.","age":48,"location":"Fadelberg"}},{"attributes":{"name":"Homer Wolff","age":67,"location":"West Martine"}},{"attributes":{"name":"Mable Gutmann","age":19,"location":"Port Creola"}},{"attributes":{"name":"Aidan Rath","age":42,"location":"Denton"}},{"attributes":{"name":"Mrs. Mary Rempel","age":21,"location":"Fort Adam"}},{"attributes":{"name":"Aaliyah Stokes","age":70,"location":"New Kodyshire"}},{"attributes":{"name":"Dr. Willie Stoltenberg","age":35,"location":"Lake Green"}},{"attributes":{"name":"Amos Kshlerin","age":75,"location":"Mannhaven"}},{"attributes":{"name":"Mrs. Nicole O'Connell","age":68,"location":"East Virginia"}},{"attributes":{"name":"Curtis Trantow","age":27,"location":"Ursulaport"}},{"attributes":{"name":"Sarah Sauer","age":43,"location":"Bothell"}},{"attributes":{"name":"Dr. Dwight Huel","age":45,"location":"South Tevinfurt"}},{"attributes":{"name":"Natasha Hirthe","age":39,"location":"East Sibylfort"}},{"attributes":{"name":"Faith Lindgren","age":50,"location":"Whittier"}},{"attributes":{"name":"Jeanne Murray","age":34,"location":"Reecestad"}},{"attributes":{"name":"Rene Stark","age":59,"location":"Hauckhaven"}},{"attributes":{"name":"Jessie Kassulke","age":43,"location":"Kiannaside"}},{"attributes":{"name":"Xzavier Hegmann III","age":43,"location":"Rebaborough"}},{"attributes":{"name":"Mr. Dorris Walter","age":62,"location":"Lake Chelsie"}},{"attributes":{"name":"Miss Carey Mayer","age":27,"location":"New Blaze"}},{"attributes":{"name":"Mrs. Mike Daniel-Stroman","age":72,"location":"Port Mary"}},{"attributes":{"name":"Shanel Fahey","age":34,"location":"Oakland"}},{"attributes":{"name":"Pink Yost","age":28,"location":"Lake Jovani"}},{"attributes":{"name":"Jon Fahey-Wintheiser","age":65,"location":"Deontaeport"}},{"attributes":{"name":"Theodore Larson","age":51,"location":"Lake Bart"}},{"attributes":{"name":"Kathryn Boyle III","age":19,"location":"Fort Kelliburgh"}},{"attributes":{"name":"Wilbert Koepp","age":39,"location":"Bryan"}},{"attributes":{"name":"Jessie Zboncak","age":80,"location":"Jannieburgh"}},{"attributes":{"name":"Zella Jaskolski","age":40,"location":"Independence"}},{"attributes":{"name":"Winifred Larson","age":45,"location":"Herzogside"}},{"attributes":{"name":"Diane Price PhD","age":75,"location":"Lake Janessaport"}},{"attributes":{"name":"Nellie Farrell","age":44,"location":"Thompsonstad"}},{"attributes":{"name":"Cruz Wiegand III","age":34,"location":"Barnstable Town"}},{"attributes":{"name":"Josefina Maggio","age":78,"location":"North Walter"}},{"attributes":{"name":"Melissa Ondricka","age":61,"location":"North Simeon"}},{"attributes":{"name":"Ms. Amy Bechtelar","age":18,"location":"Lake Andyview"}},{"attributes":{"name":"Maida Von","age":79,"location":"Euclid"}},{"attributes":{"name":"Flora Rogahn","age":73,"location":"Smyrna"}},{"attributes":{"name":"Katrina Heathcote","age":25,"location":"Fort Marciaboro"}},{"attributes":{"name":"Levi Cormier","age":25,"location":"Lake Isabella"}},{"attributes":{"name":"Julio Ankunding","age":34,"location":"Camylleport"}},{"attributes":{"name":"Jack McDermott","age":69,"location":"Lake Rocky"}},{"attributes":{"name":"Luz Hintz-Raynor DDS","age":46,"location":"Starkberg"}},{"attributes":{"name":"Annetta Daniel","age":26,"location":"West Hiltonstad"}},{"attributes":{"name":"Rosina Tremblay","age":29,"location":"New Kyler"}},{"attributes":{"name":"Mrs. Lillian Dare","age":31,"location":"Reillyhaven"}},{"attributes":{"name":"Brant Nader","age":47,"location":"Rohanshire"}},{"attributes":{"name":"Ervin Metz","age":21,"location":"Skilescester"}},{"attributes":{"name":"Roy Harber","age":29,"location":"Beckercester"}},{"attributes":{"name":"Katherine Metz","age":78,"location":"Fadelworth"}},{"attributes":{"name":"Dolores Beahan","age":46,"location":"Port Arthur"}},{"attributes":{"name":"Marcia Wolf","age":61,"location":"South Alessandrachester"}},{"attributes":{"name":"Jeanette Effertz","age":69,"location":"Mrazport"}},{"attributes":{"name":"Nichole Schumm","age":50,"location":"Jordyside"}},{"attributes":{"name":"Faustino Hamill","age":27,"location":"Fort Jewell"}},{"attributes":{"name":"Nickolas Green","age":26,"location":"Lake Jefferey"}},{"attributes":{"name":"Max Osinski","age":56,"location":"Kerlukemouth"}},{"attributes":{"name":"Angelina Kiehn","age":30,"location":"Littelworth"}},{"attributes":{"name":"Leatha Rath","age":54,"location":"East Deangelo"}},{"attributes":{"name":"Jeannette Walsh","age":23,"location":"Lake Bereniceton"}},{"attributes":{"name":"Darrin Jerde Jr.","age":73,"location":"New Rosemaryton"}},{"attributes":{"name":"Wiley Bartoletti","age":45,"location":"Carson City"}},{"attributes":{"name":"Leigh Lemke","age":74,"location":"Bayonne"}},{"attributes":{"name":"Grover Rutherford","age":67,"location":"Lueilwitzburgh"}},{"attributes":{"name":"Teri Hartmann","age":45,"location":"Jenkinsberg"}},{"attributes":{"name":"Dr. Emma Gutkowski V","age":33,"location":"Kertzmannland"}},{"attributes":{"name":"Mrs. Colleen Lueilwitz","age":62,"location":"East Jaunita"}},{"attributes":{"name":"Omar Green Jr.","age":43,"location":"San Antonio"}},{"attributes":{"name":"Leland Becker","age":33,"location":"Orvaltown"}},{"attributes":{"name":"Miss Meagan Abernathy","age":74,"location":"New Elvahaven"}},{"attributes":{"name":"Julio Zemlak","age":79,"location":"Laredo"}},{"attributes":{"name":"Gretchen Armstrong","age":56,"location":"Burnsville"}},{"attributes":{"name":"Scarlett Larson","age":53,"location":"Aliland"}},{"attributes":{"name":"Mr. Alex Oberbrunner","age":56,"location":"Julianneboro"}},{"attributes":{"name":"Stacey Mayer","age":41,"location":"McKinney"}},{"attributes":{"name":"Candice Gutkowski","age":80,"location":"Devonmouth"}},{"attributes":{"name":"Janet Bednar","age":32,"location":"D'Amoreworth"}},{"attributes":{"name":"Delphine White DVM","age":33,"location":"Terrybury"}},{"attributes":{"name":"Ida O'Reilly","age":50,"location":"Lake Armandfort"}},{"attributes":{"name":"Boris Schulist","age":21,"location":"New Rashadbury"}},{"attributes":{"name":"Nora Lesch","age":48,"location":"East Bobbiemouth"}},{"attributes":{"name":"Nedra Mayer","age":50,"location":"Somerville"}},{"attributes":{"name":"Lowell Stark","age":75,"location":"Lorain"}},{"attributes":{"name":"Darrel Beer","age":65,"location":"Raufort"}},{"attributes":{"name":"Susan Morar-Spencer DVM","age":47,"location":"Haydenton"}},{"attributes":{"name":"Amber Hodkiewicz DVM","age":20,"location":"Pfefferchester"}},{"attributes":{"name":"Reuben Schmitt","age":74,"location":"Hammond"}},{"attributes":{"name":"Carla Oberbrunner","age":53,"location":"West Wendellshire"}},{"attributes":{"name":"Allen Gerlach","age":80,"location":"Hermistonberg"}},{"attributes":{"name":"Miss Ellen Sipes","age":73,"location":"Milpitas"}},{"attributes":{"name":"Nat Prohaska","age":50,"location":"Lake Kurtberg"}},{"attributes":{"name":"Enid McKenzie","age":48,"location":"New Chloeboro"}},{"attributes":{"name":"Perry Gutkowski","age":49,"location":"South Otilia"}},{"attributes":{"name":"Cassidy Kerluke Sr.","age":64,"location":"Mikeltown"}},{"attributes":{"name":"Lloyd Langosh","age":38,"location":"Spinkaport"}},{"attributes":{"name":"Mario Hickle","age":38,"location":"Danialland"}},{"attributes":{"name":"Mr. Ericka Feest","age":39,"location":"West Hartford"}},{"attributes":{"name":"Dave Boyle","age":25,"location":"Lake Jaeden"}},{"attributes":{"name":"Julie Wiza III","age":77,"location":"West Brock"}},{"attributes":{"name":"Willard Lind","age":69,"location":"Theresecester"}},{"attributes":{"name":"Arnold Rodriguez Sr.","age":70,"location":"East Justinechester"}},{"attributes":{"name":"Alex DuBuque","age":68,"location":"Moenbury"}},{"attributes":{"name":"Eric Parisian","age":62,"location":"Hilarioburgh"}},{"attributes":{"name":"Ms. Randy Nicolas","age":53,"location":"Menifee"}},{"attributes":{"name":"Christina Nader","age":23,"location":"Augustineton"}},{"attributes":{"name":"Jack Goodwin DVM","age":40,"location":"Lake Francofurt"}},{"attributes":{"name":"Celia Dach","age":70,"location":"Fort Willy"}},{"attributes":{"name":"Miss Dorothy Luettgen","age":40,"location":"McDermottbury"}},{"attributes":{"name":"Arielle Dare","age":60,"location":"Bayamon"}},{"attributes":{"name":"Maxie Gutmann","age":29,"location":"Deangelostad"}},{"attributes":{"name":"Pascale Kutch","age":46,"location":"South Altheaburgh"}},{"attributes":{"name":"Fannie Kunde","age":29,"location":"Port Aidan"}},{"attributes":{"name":"Alexandrea Morar","age":55,"location":"Meriden"}},{"attributes":{"name":"Sophie Connelly","age":63,"location":"Quitzonmouth"}},{"attributes":{"name":"Erna Reichel","age":32,"location":"East Alejandra"}},{"attributes":{"name":"Jaden Quigley","age":27,"location":"Lake Helenborough"}},{"attributes":{"name":"Pinkie Kris","age":68,"location":"Sanfordborough"}},{"attributes":{"name":"Tracey Rodriguez","age":37,"location":"Port Herbertcester"}},{"attributes":{"name":"Miss Sheryl Runte","age":20,"location":"West Fredrickshire"}},{"attributes":{"name":"Ronnie Denesik","age":42,"location":"East Orval"}},{"attributes":{"name":"Nash Carter","age":69,"location":"South Emma"}},{"attributes":{"name":"Ignacio Swift","age":77,"location":"West Corbinhaven"}},{"attributes":{"name":"Gerhard Muller-Stehr","age":26,"location":"Framishire"}},{"attributes":{"name":"Sigurd Schaden","age":48,"location":"San Mateo"}},{"attributes":{"name":"Shawn Kozey","age":31,"location":"Melbashire"}},{"attributes":{"name":"Dr. Cedric Lueilwitz-D'Amore","age":39,"location":"Noelburgh"}},{"attributes":{"name":"Roland Schumm","age":60,"location":"Fort Vern"}},{"attributes":{"name":"Preston Cassin","age":61,"location":"West Nicklaushaven"}},{"attributes":{"name":"Karla Romaguera","age":35,"location":"South Hymanstead"}},{"attributes":{"name":"Una Welch","age":78,"location":"Brianberg"}},{"attributes":{"name":"Janiya Lynch","age":58,"location":"Schinnerside"}},{"attributes":{"name":"Shelia Jacobs","age":23,"location":"Chicopee"}},{"attributes":{"name":"Kelly Lind V","age":73,"location":"Rhiannachester"}},{"attributes":{"name":"Cecelia West","age":26,"location":"Pfefferstad"}},{"attributes":{"name":"Caleb Cole Sr.","age":74,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Ulices Kub-Skiles","age":23,"location":"West Boristown"}},{"attributes":{"name":"Dr. Athena Green","age":34,"location":"Fountain Valley"}},{"attributes":{"name":"Andres Nicolas","age":76,"location":"Rowland Heights"}},{"attributes":{"name":"Ms. Melyna Rohan","age":31,"location":"Abelburgh"}},{"attributes":{"name":"Ramiro Blanda","age":78,"location":"Hassanfort"}},{"attributes":{"name":"Betsy Kshlerin III","age":47,"location":"Costa Mesa"}},{"attributes":{"name":"Angelica Larson","age":19,"location":"Lorain"}},{"attributes":{"name":"Stephan Wilderman","age":53,"location":"Lake Torrey"}},{"attributes":{"name":"Rosa Lemke","age":19,"location":"Fort Jacky"}},{"attributes":{"name":"Georgia Brown","age":74,"location":"Hammond"}},{"attributes":{"name":"Karl Wunsch Jr.","age":65,"location":"Lake Zoiecester"}},{"attributes":{"name":"Quentin Hauck","age":80,"location":"New King"}},{"attributes":{"name":"Rachel Murphy","age":32,"location":"St. George"}},{"attributes":{"name":"Noelia MacGyver","age":68,"location":"Somerville"}},{"attributes":{"name":"Amos Littel IV","age":76,"location":"North Gregory"}},{"attributes":{"name":"Kendall Emard","age":67,"location":"Dereckville"}},{"attributes":{"name":"Erma Jacobi","age":46,"location":"South Sarah"}},{"attributes":{"name":"Jenny Denesik","age":54,"location":"Coleberg"}},{"attributes":{"name":"Darrin McClure","age":78,"location":"Port Rosemary"}},{"attributes":{"name":"Jamie Price","age":39,"location":"Leliaberg"}},{"attributes":{"name":"Lessie Adams","age":66,"location":"Schustercester"}},{"attributes":{"name":"Carol Hilpert","age":62,"location":"Maximillianstad"}},{"attributes":{"name":"Adrian Koss","age":38,"location":"Cedar Hill"}},{"attributes":{"name":"Randolph Homenick","age":78,"location":"New Turnerside"}},{"attributes":{"name":"Allen Vandervort","age":18,"location":"East Bettye"}},{"attributes":{"name":"Rickie Jacobi-Auer","age":32,"location":"Nolanmouth"}},{"attributes":{"name":"Nola Vandervort","age":42,"location":"Maple Grove"}},{"attributes":{"name":"Chet Beatty","age":75,"location":"Woodrowberg"}},{"attributes":{"name":"Raymond Stroman","age":33,"location":"North Colten"}},{"attributes":{"name":"Sunny Breitenberg","age":19,"location":"East Torey"}},{"attributes":{"name":"Henderson Wilderman","age":51,"location":"Scottieside"}},{"attributes":{"name":"Eloy Crooks","age":68,"location":"North Edwardoworth"}},{"attributes":{"name":"Mr. Annabell Boyle","age":29,"location":"Kuhlmanton"}},{"attributes":{"name":"Eduardo Jast DDS","age":23,"location":"Edmond"}},{"attributes":{"name":"Cleo Davis","age":49,"location":"Schmelerchester"}},{"attributes":{"name":"Webster Ziemann","age":62,"location":"Fort Sandrineton"}},{"attributes":{"name":"Haylee Johns","age":27,"location":"Lake Willville"}},{"attributes":{"name":"Randi Yost-Dickinson","age":45,"location":"Lake Audra"}},{"attributes":{"name":"Miss Isabell Rath","age":67,"location":"Carson City"}},{"attributes":{"name":"Dr. Lila Champlin-Braun","age":52,"location":"Baldwin Park"}},{"attributes":{"name":"Rosa Miller III","age":50,"location":"Westland"}},{"attributes":{"name":"Haylee Gulgowski","age":73,"location":"Framingham"}},{"attributes":{"name":"Alexander Homenick","age":42,"location":"Lynn"}},{"attributes":{"name":"Bennie Johnson","age":21,"location":"Greenfelderfort"}},{"attributes":{"name":"Johann Goodwin","age":27,"location":"Camilafurt"}},{"attributes":{"name":"Miss Constance Kozey","age":64,"location":"East Leon"}},{"attributes":{"name":"Kristofer Halvorson","age":53,"location":"South Jaquan"}},{"attributes":{"name":"Mrs. Esmeralda Hudson","age":48,"location":"South Amber"}},{"attributes":{"name":"Frederic Tromp V","age":21,"location":"East Lemuel"}},{"attributes":{"name":"Alfredo Rice","age":33,"location":"Chaunceyfort"}},{"attributes":{"name":"Mr. Dan Reichel","age":66,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Mrs. Christian Franey","age":62,"location":"Pearl City"}},{"attributes":{"name":"Lillie Murphy","age":50,"location":"Lake Karl"}},{"attributes":{"name":"Tommy Haley DDS","age":25,"location":"Mount Prospect"}},{"attributes":{"name":"Winston Bartoletti","age":36,"location":"Las Vegas"}},{"attributes":{"name":"Grant McLaughlin","age":64,"location":"Port Rachel"}},{"attributes":{"name":"Stephany Raynor","age":48,"location":"West Rossieside"}},{"attributes":{"name":"Renee Parker","age":24,"location":"Lake Mariettaside"}},{"attributes":{"name":"Alfred Cummerata","age":27,"location":"West Collinport"}},{"attributes":{"name":"Carmelo Anderson","age":23,"location":"North Gerard"}},{"attributes":{"name":"Bessie Wehner III","age":26,"location":"West Blaise"}},{"attributes":{"name":"Evan Heller","age":60,"location":"Roxanemouth"}},{"attributes":{"name":"Sharon Hackett","age":56,"location":"Lake Keaton"}},{"attributes":{"name":"Broderick Marquardt-Roberts","age":33,"location":"East Ignaciochester"}},{"attributes":{"name":"Mrs. Daron Pacocha","age":73,"location":"St. Louis"}},{"attributes":{"name":"Niko Emard","age":76,"location":"New Brando"}},{"attributes":{"name":"Irene Friesen","age":61,"location":"New Claudia"}},{"attributes":{"name":"Felipe Fadel","age":68,"location":"Union City"}},{"attributes":{"name":"Cristobal McDermott","age":37,"location":"Bradyberg"}},{"attributes":{"name":"Phoebe Rath","age":56,"location":"Lansing"}},{"attributes":{"name":"Janet Jakubowski","age":75,"location":"West Dorris"}},{"attributes":{"name":"Leon Considine","age":42,"location":"Lorenzostad"}},{"attributes":{"name":"Douglas Kuhic II","age":22,"location":"East Noah"}},{"attributes":{"name":"Ozella Konopelski","age":75,"location":"Lauderhill"}},{"attributes":{"name":"Harry Stanton","age":20,"location":"Fort Delbertville"}},{"attributes":{"name":"Dagmar Renner","age":30,"location":"North Tylermouth"}},{"attributes":{"name":"Vivian Bailey","age":53,"location":"New Zettaborough"}},{"attributes":{"name":"Emiliano Beatty","age":62,"location":"Fort Alysonton"}},{"attributes":{"name":"Julius Ruecker","age":70,"location":"Kassulkestad"}},{"attributes":{"name":"Jermaine Farrell","age":76,"location":"Alexandria"}},{"attributes":{"name":"Heidi Monahan","age":80,"location":"Wilbercester"}},{"attributes":{"name":"Chad Towne-Turner","age":40,"location":"North Tristianside"}},{"attributes":{"name":"Essie Schaden","age":50,"location":"Farrellside"}},{"attributes":{"name":"Elaine Ebert II","age":55,"location":"Johnsfurt"}},{"attributes":{"name":"Neal Koss","age":29,"location":"Deefield"}},{"attributes":{"name":"Hermann Funk","age":46,"location":"Stephaniafield"}},{"attributes":{"name":"Mrs. Afton Romaguera","age":39,"location":"South Lindsayville"}},{"attributes":{"name":"Melba Harvey","age":57,"location":"Orionland"}},{"attributes":{"name":"Caroline Carroll","age":52,"location":"Pasadena"}},{"attributes":{"name":"Stanley Schroeder","age":32,"location":"Dashawnshire"}},{"attributes":{"name":"Agustina Lowe DVM","age":56,"location":"Chadrickshire"}},{"attributes":{"name":"Jacklyn Green II","age":33,"location":"South Dana"}},{"attributes":{"name":"Korey Kessler-Reichert","age":29,"location":"Fort Annecester"}},{"attributes":{"name":"Gladys Schuppe-Wisozk","age":62,"location":"West Reeceborough"}},{"attributes":{"name":"Miss May Ernser","age":40,"location":"Fort Rustybury"}},{"attributes":{"name":"Miss Isidro Hodkiewicz DDS","age":29,"location":"Lake Ressie"}},{"attributes":{"name":"Alyson Green","age":57,"location":"South Genesiscester"}},{"attributes":{"name":"Kiana Lueilwitz","age":33,"location":"Washington"}},{"attributes":{"name":"Myriam Davis","age":44,"location":"Novi"}},{"attributes":{"name":"Sonja Kerluke Jr.","age":71,"location":"Olympia"}},{"attributes":{"name":"Davion Kessler","age":40,"location":"East Hailieside"}},{"attributes":{"name":"Blanca Donnelly","age":72,"location":"New Ana"}},{"attributes":{"name":"Jerald Krajcik","age":49,"location":"Fort Sheaside"}},{"attributes":{"name":"Roy Yost","age":29,"location":"St. Louis Park"}},{"attributes":{"name":"Abigail Kautzer","age":28,"location":"South Vergieview"}},{"attributes":{"name":"Jayson Brekke","age":52,"location":"South Rosarioview"}},{"attributes":{"name":"Mike Larson","age":20,"location":"Emmaleestead"}},{"attributes":{"name":"Christine Considine","age":58,"location":"Clayport"}},{"attributes":{"name":"Erick Lubowitz","age":51,"location":"Milfordfurt"}},{"attributes":{"name":"Ms. Sven Cummings","age":50,"location":"West Summer"}},{"attributes":{"name":"Dr. Sidney Franecki","age":75,"location":"St. Paul"}},{"attributes":{"name":"Crystal Johnson","age":74,"location":"East Lomaland"}},{"attributes":{"name":"Tanya Gibson","age":65,"location":"West Wilson"}},{"attributes":{"name":"Neil Bernhard","age":38,"location":"Kadinfurt"}},{"attributes":{"name":"Mr. Clyde Dibbert","age":32,"location":"Lake Roosevelt"}},{"attributes":{"name":"Salvatore Kilback","age":79,"location":"Gusikowskistead"}},{"attributes":{"name":"Esta Doyle Sr.","age":30,"location":"East Tylermouth"}},{"attributes":{"name":"Alton Sanford","age":41,"location":"Dorianburgh"}},{"attributes":{"name":"Gayle Osinski","age":34,"location":"Yeseniafort"}},{"attributes":{"name":"Marcelino Cormier","age":77,"location":"South Lazarostead"}},{"attributes":{"name":"Ethel Buckridge","age":53,"location":"Corbinstad"}},{"attributes":{"name":"Gregory Bayer","age":49,"location":"Willmsside"}},{"attributes":{"name":"Dr. Claire Wolf","age":76,"location":"East Mossiehaven"}},{"attributes":{"name":"Rowland Rutherford-Bahringer","age":56,"location":"Des Moines"}},{"attributes":{"name":"Jerald Beahan Sr.","age":32,"location":"Faheyburgh"}},{"attributes":{"name":"Adrien Quitzon","age":43,"location":"Port Reginald"}},{"attributes":{"name":"Lillian D'Amore","age":72,"location":"Rodrickton"}},{"attributes":{"name":"Kaela Feeney","age":63,"location":"Earlineborough"}},{"attributes":{"name":"Duncan Kuhlman","age":39,"location":"South Stuartfort"}},{"attributes":{"name":"Dr. Danny Deckow","age":54,"location":"New Marjoryfurt"}},{"attributes":{"name":"Elmore Wintheiser-Crist","age":23,"location":"North Tysonfurt"}},{"attributes":{"name":"Betty Stokes","age":59,"location":"Audreannehaven"}},{"attributes":{"name":"Boyd Labadie Jr.","age":45,"location":"Boise City"}},{"attributes":{"name":"Jerald Watsica","age":19,"location":"Freidaworth"}},{"attributes":{"name":"Judy Cormier","age":24,"location":"Jamalside"}},{"attributes":{"name":"Ian Borer","age":75,"location":"Port Casey"}},{"attributes":{"name":"Jarvis Stiedemann","age":77,"location":"Lake Effiechester"}},{"attributes":{"name":"Bruce Schoen","age":79,"location":"Freddyport"}},{"attributes":{"name":"Rebecca DuBuque II","age":19,"location":"Jefferson City"}},{"attributes":{"name":"Saul Flatley II","age":46,"location":"Zackaryfield"}},{"attributes":{"name":"Jordan Howe","age":60,"location":"Waltham"}},{"attributes":{"name":"Yasmin Botsford","age":66,"location":"Evelynchester"}},{"attributes":{"name":"Lucile Prosacco","age":77,"location":"South Makenzie"}},{"attributes":{"name":"Jon Sporer","age":54,"location":"Urbana"}},{"attributes":{"name":"Harold Quigley","age":50,"location":"East Lonnychester"}},{"attributes":{"name":"Colten Emard","age":73,"location":"New Ludwig"}},{"attributes":{"name":"Justyn Treutel","age":38,"location":"Lourdesberg"}},{"attributes":{"name":"Alejandro Schamberger","age":43,"location":"Murrieta"}},{"attributes":{"name":"Gregory Crooks-Haley","age":37,"location":"Fabiolaton"}},{"attributes":{"name":"Marisol Conn","age":36,"location":"Zemlakburgh"}},{"attributes":{"name":"Judith Olson V","age":80,"location":"New Lucie"}},{"attributes":{"name":"Miss Sonja Bradtke","age":65,"location":"New Lucianostead"}},{"attributes":{"name":"Russell Gulgowski","age":36,"location":"East Earl"}},{"attributes":{"name":"Ayana Bartell","age":26,"location":"Huelberg"}},{"attributes":{"name":"Ms. Connie Wisoky","age":20,"location":"Cranston"}},{"attributes":{"name":"Jayne Bergnaum","age":53,"location":"Lake Hunter"}},{"attributes":{"name":"Korbin VonRueden","age":34,"location":"New Arnulfo"}},{"attributes":{"name":"Zetta Abbott","age":69,"location":"West Alverafort"}},{"attributes":{"name":"Justice Grimes","age":64,"location":"North Haroldside"}},{"attributes":{"name":"Hilda Kirlin II","age":79,"location":"Port Janaport"}},{"attributes":{"name":"Walter Bergnaum","age":78,"location":"Nienowstead"}},{"attributes":{"name":"Mrs. Gunner Schiller Jr.","age":54,"location":"Fort Hermannview"}},{"attributes":{"name":"Ned Balistreri","age":42,"location":"York"}},{"attributes":{"name":"Leonard Dach-Hegmann I","age":20,"location":"Sigridfurt"}},{"attributes":{"name":"Ferne Crooks","age":36,"location":"Ulisesland"}},{"attributes":{"name":"Bonnie Johnson","age":33,"location":"West Norenefurt"}},{"attributes":{"name":"Sanford Bailey","age":79,"location":"Stehrbury"}},{"attributes":{"name":"Cleora Kuhn","age":58,"location":"Cliffordshire"}},{"attributes":{"name":"Lucious Lockman","age":58,"location":"New Weldon"}},{"attributes":{"name":"Marcia Feil","age":70,"location":"Edmondfurt"}},{"attributes":{"name":"Leta Schneider","age":45,"location":"East Toneyburgh"}},{"attributes":{"name":"Chester Braun","age":58,"location":"Jaskolskiville"}},{"attributes":{"name":"Laury Predovic-Cassin","age":27,"location":"Dulceshire"}},{"attributes":{"name":"Kamren Wiegand","age":51,"location":"Plano"}},{"attributes":{"name":"Adrienne Walter III","age":49,"location":"South Heidiview"}},{"attributes":{"name":"Wendell Jaskolski","age":38,"location":"Davis"}},{"attributes":{"name":"Jeramie Ryan","age":69,"location":"Sheaview"}},{"attributes":{"name":"Hailie Connelly","age":80,"location":"New Allyburgh"}},{"attributes":{"name":"Aubrey Greenholt","age":28,"location":"Letitiaville"}},{"attributes":{"name":"Dr. Johnathan Ward","age":33,"location":"Justineberg"}},{"attributes":{"name":"Keshawn Green","age":23,"location":"Hipolitobury"}},{"attributes":{"name":"Leonard Nolan","age":38,"location":"Turcotteton"}},{"attributes":{"name":"Fletcher Price","age":70,"location":"West Kelli"}},{"attributes":{"name":"Cedric Hoeger","age":26,"location":"Danton"}},{"attributes":{"name":"Maria Carroll","age":80,"location":"Port Olin"}},{"attributes":{"name":"Elmer Watsica","age":47,"location":"Aracelitown"}},{"attributes":{"name":"Krista Brekke","age":72,"location":"Lebsackworth"}},{"attributes":{"name":"Mr. Wade Botsford-O'Connell","age":27,"location":"South Liamborough"}},{"attributes":{"name":"Fanny Labadie","age":46,"location":"Vernerworth"}},{"attributes":{"name":"Harmon Shanahan","age":25,"location":"Joanton"}},{"attributes":{"name":"Estel Gottlieb","age":64,"location":"Delbertberg"}},{"attributes":{"name":"Nico Hegmann","age":32,"location":"Tessfort"}},{"attributes":{"name":"Toney O'Keefe","age":50,"location":"West Monaboro"}},{"attributes":{"name":"Lorraine Conroy","age":21,"location":"Palm Desert"}},{"attributes":{"name":"Geneva Cruickshank","age":38,"location":"Weston"}},{"attributes":{"name":"Maxwell Hyatt","age":31,"location":"Krajcikside"}},{"attributes":{"name":"Lucas Daugherty","age":74,"location":"New Kayleigh"}},{"attributes":{"name":"Rhea Volkman DDS","age":37,"location":"Funkchester"}},{"attributes":{"name":"Dr. Corbin Dickens","age":53,"location":"Salinas"}},{"attributes":{"name":"Audrey Streich","age":42,"location":"Lynn"}},{"attributes":{"name":"Rose Shields","age":66,"location":"Fort Diana"}},{"attributes":{"name":"Malcolm Ziemann","age":56,"location":"Inglewood"}},{"attributes":{"name":"Joyce Kreiger","age":80,"location":"East Jaquanhaven"}},{"attributes":{"name":"Chesley Thiel","age":58,"location":"Leuschkecester"}},{"attributes":{"name":"Sheila Gibson","age":74,"location":"Fort Lauderdale"}},{"attributes":{"name":"Agustina Renner-Thiel","age":27,"location":"Friedrichchester"}},{"attributes":{"name":"Kristie Moore","age":65,"location":"East Koreychester"}},{"attributes":{"name":"Perry Frami","age":43,"location":"Carmenchester"}},{"attributes":{"name":"Woodrow Schinner","age":23,"location":"Baytown"}},{"attributes":{"name":"Leon Heller I","age":67,"location":"East Velva"}},{"attributes":{"name":"Zelma Treutel","age":58,"location":"Jazlynville"}},{"attributes":{"name":"Iris O'Reilly-Jakubowski Jr.","age":77,"location":"Monahanstead"}},{"attributes":{"name":"Leo Nikolaus Jr.","age":49,"location":"Claudiaview"}},{"attributes":{"name":"Steven Borer","age":42,"location":"Jerrodcester"}},{"attributes":{"name":"Eloise Okuneva V","age":70,"location":"Berneiceport"}},{"attributes":{"name":"Ona Hauck","age":23,"location":"Akron"}},{"attributes":{"name":"Cora Thompson","age":77,"location":"Lake Fletafield"}},{"attributes":{"name":"Lydia Turner","age":23,"location":"Sophiefield"}},{"attributes":{"name":"Carmine McClure","age":64,"location":"Lake Ciara"}},{"attributes":{"name":"Gretchen Gulgowski","age":61,"location":"West Zanderborough"}},{"attributes":{"name":"Andres Rippin","age":40,"location":"New Linnie"}},{"attributes":{"name":"Dr. Quentin Hauck","age":33,"location":"Port Kolby"}},{"attributes":{"name":"Dr. Lenny Dooley","age":39,"location":"North Jillian"}},{"attributes":{"name":"Dr. Jamie Fritsch","age":47,"location":"West Ubaldoboro"}},{"attributes":{"name":"Penny Weber","age":59,"location":"Strackestad"}},{"attributes":{"name":"Porter Lynch","age":70,"location":"The Woodlands"}},{"attributes":{"name":"Mariela Sporer","age":26,"location":"West Margarette"}},{"attributes":{"name":"Mr. Eduardo Hettinger","age":54,"location":"Fort Deshaunland"}},{"attributes":{"name":"Taylor Gorczany","age":57,"location":"Fontana"}},{"attributes":{"name":"Henrietta Kertzmann","age":62,"location":"Siennafield"}},{"attributes":{"name":"Ana Stanton","age":32,"location":"Racine"}},{"attributes":{"name":"Donato Oberbrunner","age":18,"location":"Margate"}},{"attributes":{"name":"Mrs. Hardy Bogan","age":36,"location":"Levittown"}},{"attributes":{"name":"Lillie Hayes","age":38,"location":"DuBuquecester"}},{"attributes":{"name":"Juana Batz","age":48,"location":"West New York"}},{"attributes":{"name":"Julie Monahan","age":25,"location":"South Lonny"}},{"attributes":{"name":"Joann Smitham","age":41,"location":"Rachelleboro"}},{"attributes":{"name":"Krista Rodriguez","age":38,"location":"Stratford"}},{"attributes":{"name":"Marvin Rath","age":28,"location":"East Pearlton"}},{"attributes":{"name":"Jasper Schneider","age":25,"location":"Coconut Creek"}},{"attributes":{"name":"Don Ledner","age":22,"location":"Jaskolskiboro"}},{"attributes":{"name":"Charlie Abshire","age":24,"location":"East Curtisworth"}},{"attributes":{"name":"Tiffany Pagac","age":19,"location":"El Dorado Hills"}},{"attributes":{"name":"Oceane Cummings","age":47,"location":"West Pansy"}},{"attributes":{"name":"Fredrick Hudson","age":31,"location":"Beverlyshire"}},{"attributes":{"name":"Elbert Hickle","age":36,"location":"Jaquelineport"}},{"attributes":{"name":"Paris Maggio","age":32,"location":"Leannonside"}},{"attributes":{"name":"David Wisoky-Moen","age":66,"location":"North Sheilastad"}},{"attributes":{"name":"Harry Wolf","age":49,"location":"Cummingsside"}},{"attributes":{"name":"Judge Schinner-Howell PhD","age":28,"location":"North Blanca"}},{"attributes":{"name":"Jaime Schmeler","age":38,"location":"Pourosworth"}},{"attributes":{"name":"Ignatius Grant","age":32,"location":"Schummchester"}},{"attributes":{"name":"Owen Hamill","age":63,"location":"Fort Connieville"}},{"attributes":{"name":"Johan Dicki","age":54,"location":"Emeliaboro"}},{"attributes":{"name":"Gilbert Franecki","age":36,"location":"Corona"}},{"attributes":{"name":"Jamil Smitham","age":80,"location":"Bryan"}},{"attributes":{"name":"Jimmy Stehr","age":63,"location":"North Athenaburgh"}},{"attributes":{"name":"Ms. Lelah Schulist","age":77,"location":"Hubertfurt"}},{"attributes":{"name":"Geovanny Sawayn","age":20,"location":"East Jaycee"}},{"attributes":{"name":"Juanita Roob","age":75,"location":"Bobbieberg"}},{"attributes":{"name":"Ms. Stephanie Heaney","age":36,"location":"El Cajon"}},{"attributes":{"name":"Dr. Alexzander Cormier-Spencer III","age":26,"location":"Lake Nelson"}},{"attributes":{"name":"Justina Rosenbaum","age":46,"location":"Livermore"}},{"attributes":{"name":"Ms. Mildred Ankunding","age":35,"location":"Port Alberta"}},{"attributes":{"name":"Millie Lang","age":76,"location":"Saginaw"}},{"attributes":{"name":"Katie Goldner","age":45,"location":"New Anika"}},{"attributes":{"name":"Leona Lindgren","age":78,"location":"Brandyfort"}},{"attributes":{"name":"Christ Blick","age":25,"location":"Franklin"}},{"attributes":{"name":"Nasir Leuschke","age":74,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Else Robel","age":38,"location":"West Bernardobury"}},{"attributes":{"name":"Monte Thompson","age":70,"location":"Schummshire"}},{"attributes":{"name":"Raphael Lesch","age":59,"location":"Kossbury"}},{"attributes":{"name":"Dr. German Sauer","age":73,"location":"O'Keefetown"}},{"attributes":{"name":"Lilliana Goldner","age":18,"location":"Fort Onie"}},{"attributes":{"name":"Stephanie Berge","age":74,"location":"Arianecester"}},{"attributes":{"name":"Eddie Wiza","age":80,"location":"Breitenbergcester"}},{"attributes":{"name":"Orville Bashirian","age":30,"location":"Laurenville"}},{"attributes":{"name":"Eugene McCullough","age":45,"location":"Heathcoteborough"}},{"attributes":{"name":"Mr. Kerry Koss","age":68,"location":"Minnetonka"}},{"attributes":{"name":"Kellie Greenholt","age":69,"location":"Landenmouth"}},{"attributes":{"name":"Emmett Nienow III","age":36,"location":"Jonasview"}},{"attributes":{"name":"Royce Dickens","age":20,"location":"Westfurt"}},{"attributes":{"name":"Ricardo Davis DDS","age":75,"location":"Fort Domingoworth"}},{"attributes":{"name":"Salvatore Yost","age":30,"location":"Wintheiserton"}},{"attributes":{"name":"Ms. Miller Zemlak","age":77,"location":"Darienstead"}},{"attributes":{"name":"Ms. Belinda Cruickshank","age":66,"location":"West Shadstad"}},{"attributes":{"name":"Leif Bednar","age":52,"location":"Langoshmouth"}},{"attributes":{"name":"Luis Bechtelar Sr.","age":50,"location":"New Elfriedaboro"}},{"attributes":{"name":"Breana Jaskolski","age":31,"location":"Fort Eleonore"}},{"attributes":{"name":"Jake Kozey","age":51,"location":"East Tabithafort"}},{"attributes":{"name":"Mr. Luther Casper","age":33,"location":"Hipolitohaven"}},{"attributes":{"name":"Clemens Collier","age":64,"location":"Wisokycester"}},{"attributes":{"name":"Mrs. Jana Kshlerin","age":58,"location":"Mansfield"}},{"attributes":{"name":"Nicholas Dooley DDS","age":63,"location":"Iowa City"}},{"attributes":{"name":"Tianna Glover","age":35,"location":"Kuvaliston"}},{"attributes":{"name":"Michael Okuneva","age":29,"location":"Krystalton"}},{"attributes":{"name":"Candace O'Conner","age":63,"location":"O'Connermouth"}},{"attributes":{"name":"Jan Sporer","age":78,"location":"Huelfort"}},{"attributes":{"name":"Mrs. Ahmad Osinski","age":38,"location":"Siennachester"}},{"attributes":{"name":"Miss Lucy Nader","age":22,"location":"Cristobalbury"}},{"attributes":{"name":"Nicola Swift","age":77,"location":"Parisianton"}},{"attributes":{"name":"Miss Niko Green","age":80,"location":"New Ernaboro"}},{"attributes":{"name":"Brent Davis","age":72,"location":"South Selina"}},{"attributes":{"name":"Jesus Cronin","age":80,"location":"South Ginoport"}},{"attributes":{"name":"Woodrow Harris","age":76,"location":"Stammmouth"}},{"attributes":{"name":"Tracy Runolfsdottir","age":34,"location":"North Janick"}},{"attributes":{"name":"Roy Hilll Sr.","age":75,"location":"West Olin"}},{"attributes":{"name":"Oswald Jacobs","age":23,"location":"North Micaelaborough"}},{"attributes":{"name":"Maurice Glover","age":51,"location":"Fort Brendenborough"}},{"attributes":{"name":"Ebba Bins","age":80,"location":"South Feltonshire"}},{"attributes":{"name":"Gerson Effertz","age":24,"location":"Jonesboro"}},{"attributes":{"name":"Durward Rice Sr.","age":38,"location":"East Kade"}},{"attributes":{"name":"Faith Padberg II","age":33,"location":"Lisettestad"}},{"attributes":{"name":"Rodolfo Gulgowski MD","age":20,"location":"New Dereck"}},{"attributes":{"name":"Gideon Moore","age":35,"location":"Lake Adeline"}},{"attributes":{"name":"Julio Gusikowski II","age":20,"location":"Lelahside"}},{"attributes":{"name":"Jamaal Bins","age":52,"location":"Walshside"}},{"attributes":{"name":"Molly Purdy","age":27,"location":"Detroit"}},{"attributes":{"name":"Lynne McKenzie","age":31,"location":"Lake Virgilbury"}},{"attributes":{"name":"Catalina Skiles","age":59,"location":"Hettingerberg"}},{"attributes":{"name":"Myron Waelchi","age":76,"location":"Maggioboro"}},{"attributes":{"name":"Joe Smith","age":31,"location":"Alhambra"}},{"attributes":{"name":"Linda Hirthe IV","age":52,"location":"Birdiefurt"}},{"attributes":{"name":"Sienna Nienow-Daniel","age":23,"location":"Destanybury"}},{"attributes":{"name":"Bradford Quitzon","age":80,"location":"Lacey"}},{"attributes":{"name":"Lilian Murray","age":79,"location":"Bayerfurt"}},{"attributes":{"name":"Ansley Green","age":59,"location":"Leannview"}},{"attributes":{"name":"Baby Lindgren","age":71,"location":"Waelchicester"}},{"attributes":{"name":"Jan Moen","age":56,"location":"Kundeshire"}},{"attributes":{"name":"Cyrus Pollich","age":72,"location":"Goodwinburgh"}},{"attributes":{"name":"Alonzo Shanahan","age":23,"location":"Haltom City"}},{"attributes":{"name":"Forrest Walsh DDS","age":39,"location":"Town 'n' Country"}},{"attributes":{"name":"Guy Mitchell","age":80,"location":"Ullrichbury"}},{"attributes":{"name":"Nathen Glover","age":80,"location":"North Cicerofurt"}},{"attributes":{"name":"Mrs. Orin Abernathy I","age":21,"location":"Fort Dasia"}},{"attributes":{"name":"Lucile Farrell","age":22,"location":"Lake Clement"}},{"attributes":{"name":"Alvera Hauck","age":59,"location":"Elgin"}},{"attributes":{"name":"Thelma Dietrich I","age":53,"location":"Toyland"}},{"attributes":{"name":"Blake Herman-Morissette","age":53,"location":"Lake Violetfurt"}},{"attributes":{"name":"Otis Kunde","age":80,"location":"New Veldastead"}},{"attributes":{"name":"Jaquan Satterfield","age":36,"location":"Clovisfield"}},{"attributes":{"name":"Nicklaus Ortiz","age":60,"location":"Fort Lillamouth"}},{"attributes":{"name":"Bradley Wisoky","age":67,"location":"Fort Bernardoport"}},{"attributes":{"name":"Verona Howell MD","age":55,"location":"Port Merlland"}},{"attributes":{"name":"Ms. Dustin O'Reilly","age":45,"location":"North Emmalee"}},{"attributes":{"name":"Allison Kiehn","age":63,"location":"South Kaitlinstad"}},{"attributes":{"name":"Lloyd Schneider","age":30,"location":"Rauboro"}},{"attributes":{"name":"Alma Williamson","age":27,"location":"South Celestinomouth"}},{"attributes":{"name":"Walter Bergnaum","age":76,"location":"Apex"}},{"attributes":{"name":"Emilie Heathcote","age":50,"location":"Hallefield"}},{"attributes":{"name":"Esteban Upton","age":69,"location":"Elissaland"}},{"attributes":{"name":"Nichole Steuber Jr.","age":46,"location":"Roswell"}},{"attributes":{"name":"Wendy Pfeffer DDS","age":38,"location":"Carletontown"}},{"attributes":{"name":"Rosemarie Kreiger DDS","age":48,"location":"Lake Andrew"}},{"attributes":{"name":"Brice Bogisich","age":69,"location":"North Kaci"}},{"attributes":{"name":"Mabel Hartmann","age":21,"location":"Port Yadira"}},{"attributes":{"name":"Cesar Wolf DDS","age":60,"location":"Port Moshestead"}},{"attributes":{"name":"Dewey Ruecker","age":51,"location":"O'Fallon"}},{"attributes":{"name":"Laurence Rolfson-Erdman","age":22,"location":"Trujillo Alto"}},{"attributes":{"name":"Lowell Mohr IV","age":55,"location":"Lake Justonberg"}},{"attributes":{"name":"Darin Balistreri MD","age":19,"location":"Muellerville"}},{"attributes":{"name":"Jenny Jenkins DDS","age":78,"location":"North Vanboro"}},{"attributes":{"name":"Mr. Max Volkman","age":75,"location":"Potomac"}},{"attributes":{"name":"Hayden Larson","age":40,"location":"Lesleyport"}},{"attributes":{"name":"Colleen Doyle","age":67,"location":"Chandler"}},{"attributes":{"name":"Denise Hahn","age":67,"location":"Cummingsstead"}},{"attributes":{"name":"Tanya Gleichner-Corwin","age":52,"location":"Upland"}},{"attributes":{"name":"Melody Ortiz","age":63,"location":"South Amberfort"}},{"attributes":{"name":"Bobby Yundt-Barrows","age":37,"location":"Fort Clotildeboro"}},{"attributes":{"name":"Jordi Schiller III","age":62,"location":"Sierra Vista"}},{"attributes":{"name":"Lonie Mann","age":19,"location":"Kohlerhaven"}},{"attributes":{"name":"Florence Bauch","age":66,"location":"Tyriqueworth"}},{"attributes":{"name":"Nestor McLaughlin","age":68,"location":"Killeen"}},{"attributes":{"name":"Monique Leffler","age":43,"location":"North Gretchen"}},{"attributes":{"name":"Shania Breitenberg","age":21,"location":"Port Lonnyville"}},{"attributes":{"name":"Braden Halvorson","age":53,"location":"Bell Gardens"}},{"attributes":{"name":"Brandt Lesch","age":75,"location":"East Lesley"}},{"attributes":{"name":"Peggy Metz","age":79,"location":"Padbergcester"}},{"attributes":{"name":"Dylan Leuschke","age":49,"location":"Pittsburg"}},{"attributes":{"name":"Emmet Denesik","age":63,"location":"Keeleyburgh"}},{"attributes":{"name":"Agnes Wilderman","age":64,"location":"Hirthemouth"}},{"attributes":{"name":"Maxime Dach","age":43,"location":"Joyceside"}},{"attributes":{"name":"Kayleigh O'Connell","age":21,"location":"Brayanton"}},{"attributes":{"name":"Dr. Curtis O'Connell","age":43,"location":"Wehnerland"}},{"attributes":{"name":"Name Schuppe","age":32,"location":"North Camillefort"}},{"attributes":{"name":"Mr. Ashly Strosin","age":19,"location":"Borerland"}},{"attributes":{"name":"Dr. Chaim Kris","age":48,"location":"Yonkers"}},{"attributes":{"name":"Edgardo Padberg","age":46,"location":"West Geraldinehaven"}},{"attributes":{"name":"Miss Mable Crooks","age":68,"location":"North Omariboro"}},{"attributes":{"name":"Terrance Yundt","age":61,"location":"Chasityburgh"}},{"attributes":{"name":"Lionel Nitzsche","age":60,"location":"North Ryleighboro"}},{"attributes":{"name":"Beulah Mraz","age":30,"location":"North Amiraville"}},{"attributes":{"name":"Celia Shanahan","age":22,"location":"Port Britneyborough"}},{"attributes":{"name":"Jeannie Nikolaus","age":22,"location":"West Keyshawnland"}},{"attributes":{"name":"Renee Bode","age":76,"location":"Hawthorne"}},{"attributes":{"name":"Neil Lesch","age":52,"location":"Yostton"}},{"attributes":{"name":"Anthony Boyer","age":18,"location":"Port Edmund"}},{"attributes":{"name":"Tracy MacGyver","age":27,"location":"South Zionton"}},{"attributes":{"name":"Tom Bahringer","age":22,"location":"New Thelmacester"}},{"attributes":{"name":"Kian O'Keefe","age":66,"location":"Braunboro"}},{"attributes":{"name":"Peggy Macejkovic","age":54,"location":"Nitzscheberg"}},{"attributes":{"name":"Cleta Schinner","age":48,"location":"South Willychester"}},{"attributes":{"name":"Buford Cormier","age":20,"location":"Barrowston"}},{"attributes":{"name":"Barbara Koss","age":38,"location":"Bethesda"}},{"attributes":{"name":"Mrs. Carmen Hartmann","age":46,"location":"Keelingborough"}},{"attributes":{"name":"Rahul Gleichner","age":47,"location":"Lake Koreycester"}},{"attributes":{"name":"Erica Ward","age":63,"location":"Port Rosarioberg"}},{"attributes":{"name":"Sylvester Zulauf","age":32,"location":"Brekkefort"}},{"attributes":{"name":"Dr. Jaylin Herzog","age":61,"location":"East Antonina"}},{"attributes":{"name":"Clyde Bernier","age":77,"location":"Catalina Foothills"}},{"attributes":{"name":"Natasha Dach","age":56,"location":"Karineberg"}},{"attributes":{"name":"Devin Boehm DVM","age":37,"location":"East Alexandrinecester"}},{"attributes":{"name":"Bryan Wolf V","age":63,"location":"Holliestad"}},{"attributes":{"name":"Ada Nicolas","age":34,"location":"Ames"}},{"attributes":{"name":"Bernice Von-Rosenbaum","age":76,"location":"Kochstad"}},{"attributes":{"name":"Mac Bauch","age":67,"location":"Houston"}},{"attributes":{"name":"Elyssa Price","age":35,"location":"Brownsville"}},{"attributes":{"name":"Milton Bergnaum","age":19,"location":"Larsonberg"}},{"attributes":{"name":"Verona Buckridge","age":29,"location":"Kennethside"}},{"attributes":{"name":"Nico Dooley","age":19,"location":"Myahstad"}},{"attributes":{"name":"Arvid Rath","age":79,"location":"West Angelica"}},{"attributes":{"name":"Nils Greenfelder","age":65,"location":"Port Lexiside"}},{"attributes":{"name":"Lindsey Dooley","age":53,"location":"Pagacstad"}},{"attributes":{"name":"Jason Streich","age":43,"location":"East Martine"}},{"attributes":{"name":"Jayden Satterfield","age":48,"location":"New Britain"}},{"attributes":{"name":"Adolphus Thompson","age":54,"location":"Grimeston"}},{"attributes":{"name":"Bryant Mante","age":35,"location":"Kuphalton"}},{"attributes":{"name":"Sharon O'Connell","age":74,"location":"Faheyberg"}},{"attributes":{"name":"Asa Bode","age":68,"location":"Colton"}},{"attributes":{"name":"Mark Ratke V","age":72,"location":"East Victor"}},{"attributes":{"name":"Peggy Boyle","age":69,"location":"Port Johanna"}},{"attributes":{"name":"Edith Hammes","age":63,"location":"New Ashtynboro"}},{"attributes":{"name":"Thomas Mraz","age":62,"location":"Dessiemouth"}},{"attributes":{"name":"Miss Courtney Keebler","age":58,"location":"Edcester"}},{"attributes":{"name":"Thelma Brown","age":70,"location":"McKenzietown"}},{"attributes":{"name":"Garrett Ziemann","age":63,"location":"East Brandon"}},{"attributes":{"name":"Princess Sawayn","age":49,"location":"Clementfield"}},{"attributes":{"name":"Robert Larkin","age":47,"location":"Fort Clareview"}},{"attributes":{"name":"Elian Altenwerth","age":64,"location":"Clarabelleton"}},{"attributes":{"name":"Charlotte Frami II","age":66,"location":"Ornstead"}},{"attributes":{"name":"June Grimes","age":37,"location":"Charleston"}},{"attributes":{"name":"Leona Deckow","age":74,"location":"Fort Kendall"}},{"attributes":{"name":"Dr. Eduardo Dickens","age":34,"location":"Santinaland"}},{"attributes":{"name":"Christ Smitham","age":42,"location":"Louisville/Jefferson County"}},{"attributes":{"name":"Kyle Kris","age":68,"location":"Katharinatown"}},{"attributes":{"name":"Dusty Leffler","age":34,"location":"Zoraview"}},{"attributes":{"name":"Joanie Yundt","age":21,"location":"Fort Worth"}},{"attributes":{"name":"Edna Moore","age":43,"location":"South Floyd"}},{"attributes":{"name":"Andre Kris","age":22,"location":"Alekside"}},{"attributes":{"name":"Grant Hettinger","age":48,"location":"West Franktown"}},{"attributes":{"name":"Dr. Roland Pouros","age":69,"location":"North Frederiqueborough"}},{"attributes":{"name":"Dario Smith","age":66,"location":"North Connie"}},{"attributes":{"name":"Dwayne Bartell","age":50,"location":"Lake Vidaview"}},{"attributes":{"name":"Viola Crona","age":60,"location":"East Myrtie"}},{"attributes":{"name":"Beth Pagac","age":26,"location":"Margate"}},{"attributes":{"name":"Madyson Kilback MD","age":61,"location":"Conroymouth"}},{"attributes":{"name":"Walton Raynor","age":72,"location":"Weberside"}},{"attributes":{"name":"Ewell Yost MD","age":77,"location":"Lake Danteworth"}},{"attributes":{"name":"Megan Cruickshank","age":76,"location":"New Gwendolyn"}},{"attributes":{"name":"Marquis Windler-Schroeder","age":63,"location":"Dickinsonberg"}},{"attributes":{"name":"Marcia Marvin","age":20,"location":"Reedland"}},{"attributes":{"name":"Mr. Wilfrid Bogan","age":21,"location":"Jennifercester"}},{"attributes":{"name":"Mercedes McKenzie","age":41,"location":"East Sim"}},{"attributes":{"name":"Alverta Bauch","age":33,"location":"Madysonshire"}},{"attributes":{"name":"Terrence Hudson","age":35,"location":"Brownworth"}},{"attributes":{"name":"Jean Spencer DDS","age":61,"location":"Josefafurt"}},{"attributes":{"name":"Ernie Rolfson","age":44,"location":"Erie"}},{"attributes":{"name":"Alan Mann","age":80,"location":"Hanefurt"}},{"attributes":{"name":"Mrs. Brycen Schmitt","age":47,"location":"Stamford"}},{"attributes":{"name":"Salvatore Schaden","age":21,"location":"Linden"}},{"attributes":{"name":"Julia Halvorson","age":22,"location":"North Kayleighville"}},{"attributes":{"name":"Rolando Grant","age":23,"location":"Euless"}},{"attributes":{"name":"Gilda Pollich","age":25,"location":"Cedar Hill"}},{"attributes":{"name":"Agustin Casper MD","age":34,"location":"East Dorian"}},{"attributes":{"name":"Andrew Daugherty","age":80,"location":"East Charlottestead"}},{"attributes":{"name":"Jerry Wintheiser","age":44,"location":"Moenburgh"}},{"attributes":{"name":"Seth Kovacek","age":63,"location":"East Hellenshire"}},{"attributes":{"name":"Elmer Bergstrom","age":50,"location":"Strackestead"}},{"attributes":{"name":"Walter Considine","age":43,"location":"Blockshire"}},{"attributes":{"name":"Dr. Juan Zboncak","age":58,"location":"Lake Kelvinport"}},{"attributes":{"name":"Elisa Strosin","age":26,"location":"Cruickshankchester"}},{"attributes":{"name":"Mitchell Braun","age":21,"location":"Trentonton"}},{"attributes":{"name":"Rodolfo McDermott","age":63,"location":"San Diego"}},{"attributes":{"name":"Hadley Orn PhD","age":31,"location":"Feesttown"}},{"attributes":{"name":"Craig Abbott I","age":39,"location":"Lloydbury"}},{"attributes":{"name":"Rebeka Champlin","age":42,"location":"Fort Albinatown"}},{"attributes":{"name":"Kristie Botsford","age":43,"location":"Maximilliamouth"}},{"attributes":{"name":"Miss Elias Ernser MD","age":63,"location":"Murraytown"}},{"attributes":{"name":"Angelina O'Hara","age":71,"location":"New Annie"}},{"attributes":{"name":"Carole Thompson","age":36,"location":"Grand Forks"}},{"attributes":{"name":"Sam Romaguera","age":28,"location":"Tulare"}},{"attributes":{"name":"Adam Wisoky","age":67,"location":"Naperville"}},{"attributes":{"name":"Clifford Walter","age":61,"location":"West Xavierstead"}},{"attributes":{"name":"Peggy Johnston","age":30,"location":"Winnifredcester"}},{"attributes":{"name":"Katelyn Jaskolski","age":67,"location":"Gulgowskiboro"}},{"attributes":{"name":"Judy Fadel-Cartwright","age":54,"location":"South Ethelyn"}},{"attributes":{"name":"Jalen Marquardt","age":38,"location":"Brakusfield"}},{"attributes":{"name":"Erma Hoeger","age":44,"location":"New Jaeden"}},{"attributes":{"name":"Arnulfo Hermann","age":80,"location":"Lake Roy"}},{"attributes":{"name":"Andrew Davis","age":34,"location":"Travisburgh"}},{"attributes":{"name":"Tiffany Kunde II","age":39,"location":"West Porterchester"}},{"attributes":{"name":"Berneice Legros Sr.","age":57,"location":"Duncanton"}},{"attributes":{"name":"Dr. Eugene Block Sr.","age":68,"location":"New Nils"}},{"attributes":{"name":"Armand McLaughlin","age":34,"location":"Fort Natalialand"}},{"attributes":{"name":"Quentin Howell","age":71,"location":"East Kathlynworth"}},{"attributes":{"name":"Cora Fritsch","age":29,"location":"Fort Fannytown"}},{"attributes":{"name":"Priscilla Little","age":40,"location":"Lurlineside"}},{"attributes":{"name":"Joelle Anderson","age":79,"location":"South Vernerfield"}},{"attributes":{"name":"Pat Waters","age":28,"location":"East Isadoreboro"}},{"attributes":{"name":"Dixie Berge Sr.","age":42,"location":"Laurafield"}},{"attributes":{"name":"Mac Hamill","age":20,"location":"Beavercreek"}},{"attributes":{"name":"Sincere Brown I","age":47,"location":"Lake Havasu City"}},{"attributes":{"name":"Krystel Murray","age":53,"location":"New Wilburnburgh"}},{"attributes":{"name":"Julia Nicolas","age":63,"location":"Fort Victor"}},{"attributes":{"name":"Dr. Kristie Jacobson","age":51,"location":"Hampton"}},{"attributes":{"name":"Chad Abernathy","age":68,"location":"Jackshire"}},{"attributes":{"name":"Bartholome Swaniawski MD","age":60,"location":"New Molly"}},{"attributes":{"name":"Bertha Botsford-Konopelski","age":68,"location":"Baileyland"}},{"attributes":{"name":"Bobbie Rolfson","age":63,"location":"Cedar Park"}},{"attributes":{"name":"Della Miller","age":32,"location":"Port Lindsay"}},{"attributes":{"name":"Carrie Feil","age":76,"location":"Runolfsdottirboro"}},{"attributes":{"name":"Dr. Rodney Murray","age":53,"location":"Toyboro"}},{"attributes":{"name":"Lessie Reilly","age":57,"location":"Allentown"}},{"attributes":{"name":"Mr. Wilfredo Terry","age":48,"location":"Dwightberg"}},{"attributes":{"name":"Shelley O'Conner","age":21,"location":"Port Margretton"}},{"attributes":{"name":"Devin Bosco","age":29,"location":"Myleschester"}},{"attributes":{"name":"Kyla Jenkins","age":29,"location":"Romaineshire"}},{"attributes":{"name":"Barry Zulauf","age":73,"location":"East Chloeport"}},{"attributes":{"name":"Shawn Considine","age":25,"location":"Ariborough"}},{"attributes":{"name":"Bob Mills","age":51,"location":"South Sidney"}},{"attributes":{"name":"Chelsea Schultz","age":38,"location":"Port Chance"}},{"attributes":{"name":"Adrienne Powlowski","age":67,"location":"East Jalynhaven"}},{"attributes":{"name":"Anjali Wolf","age":46,"location":"Lake Dayanaberg"}},{"attributes":{"name":"Joyce Weimann","age":66,"location":"West Felicitabury"}},{"attributes":{"name":"Taylor Stanton","age":46,"location":"West Andreannebury"}},{"attributes":{"name":"Jared Macejkovic","age":25,"location":"Fort Barrettborough"}},{"attributes":{"name":"Tobin Blanda-Denesik","age":27,"location":"North Lexie"}},{"attributes":{"name":"Marie Kunde","age":56,"location":"Danville"}},{"attributes":{"name":"Donavon Barton","age":39,"location":"Fontana"}},{"attributes":{"name":"Ben Wiza","age":20,"location":"Dagmarton"}},{"attributes":{"name":"Julius Herzog","age":61,"location":"Fort Greyson"}},{"attributes":{"name":"Theresa Mraz","age":75,"location":"North Vickyland"}},{"attributes":{"name":"Crystal Klein","age":56,"location":"Port Flossie"}},{"attributes":{"name":"Sheila Morar","age":73,"location":"Ellisworth"}},{"attributes":{"name":"Darian Little","age":19,"location":"Leschstead"}},{"attributes":{"name":"Bonnie Waelchi","age":27,"location":"West Antonia"}},{"attributes":{"name":"Marcelino Greenholt","age":27,"location":"North Kamronside"}},{"attributes":{"name":"Violet Carroll","age":80,"location":"North Alimouth"}},{"attributes":{"name":"Pietro Romaguera","age":78,"location":"Annandale"}},{"attributes":{"name":"Zelda Heidenreich","age":75,"location":"Commerce City"}},{"attributes":{"name":"Agnes Nikolaus","age":73,"location":"Myrtiemouth"}},{"attributes":{"name":"Meredith Hilpert","age":22,"location":"South Kaleighhaven"}},{"attributes":{"name":"Yessenia Lind","age":70,"location":"New Paigeland"}},{"attributes":{"name":"Nova Treutel","age":31,"location":"Modesto"}},{"attributes":{"name":"Stephanie Williamson","age":18,"location":"New Rolandoview"}},{"attributes":{"name":"Raul Goodwin","age":59,"location":"West Tremaine"}},{"attributes":{"name":"Mr. Blake Farrell Jr.","age":27,"location":"East Shanelle"}},{"attributes":{"name":"Clara Moore","age":67,"location":"North Karianne"}},{"attributes":{"name":"Dr. Dewitt Bode","age":58,"location":"Jeramyfort"}},{"attributes":{"name":"Kayli Ledner","age":36,"location":"Lompoc"}},{"attributes":{"name":"Giovanna Feil","age":45,"location":"Runteside"}},{"attributes":{"name":"Dr. Noe Schamberger","age":26,"location":"Baumbachland"}},{"attributes":{"name":"Neil Okuneva","age":32,"location":"Kenosha"}},{"attributes":{"name":"Nellie Hartmann","age":32,"location":"Millsworth"}},{"attributes":{"name":"Jasmine Hagenes","age":79,"location":"East Dulce"}},{"attributes":{"name":"Ed Kiehn Jr.","age":39,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Jany Borer","age":73,"location":"Lake Holliestead"}},{"attributes":{"name":"Kimberly Prosacco","age":43,"location":"West Noble"}},{"attributes":{"name":"Michelle O'Kon","age":47,"location":"Wizacester"}},{"attributes":{"name":"Rafael Hansen","age":42,"location":"Mesquite"}},{"attributes":{"name":"Edmund Prohaska","age":73,"location":"Addisonboro"}},{"attributes":{"name":"Scotty Torphy","age":41,"location":"Brakushaven"}},{"attributes":{"name":"Crystel Schmitt","age":62,"location":"West Nyahstad"}},{"attributes":{"name":"Miss Abby Hagenes","age":72,"location":"Nitzschestad"}},{"attributes":{"name":"Mr. Nelle Conn","age":31,"location":"Yundtstad"}},{"attributes":{"name":"Tierra Williamson","age":76,"location":"North Charleston"}},{"attributes":{"name":"Dr. Avery Collier Sr.","age":52,"location":"North Emilio"}},{"attributes":{"name":"Frank Kiehn","age":52,"location":"Metairie"}},{"attributes":{"name":"Cindy Prohaska","age":66,"location":"East Eleonorestead"}},{"attributes":{"name":"Magnolia Yost II","age":21,"location":"Port Merleberg"}},{"attributes":{"name":"Dr. Marty Hackett","age":69,"location":"Morarboro"}},{"attributes":{"name":"Debbie Runte","age":53,"location":"Wintheiserborough"}},{"attributes":{"name":"Jesus Williamson","age":72,"location":"Graceton"}},{"attributes":{"name":"Augustus Johns","age":18,"location":"South Walkerberg"}},{"attributes":{"name":"Miss Kristin Murazik","age":75,"location":"Myrabury"}},{"attributes":{"name":"Pete Leuschke","age":38,"location":"East Leopoldo"}},{"attributes":{"name":"Edith Strosin","age":47,"location":"Milford"}},{"attributes":{"name":"William Monahan","age":52,"location":"Jesushaven"}},{"attributes":{"name":"Salvatore Schowalter","age":67,"location":"West Birdieland"}},{"attributes":{"name":"Amari Cassin-Stamm","age":42,"location":"Sheboygan"}},{"attributes":{"name":"Dr. Eileen Kovacek","age":57,"location":"Nicolasshire"}},{"attributes":{"name":"Johnson Walter","age":56,"location":"Lake Dawnberg"}},{"attributes":{"name":"Billie Larson","age":36,"location":"Stephenborough"}},{"attributes":{"name":"Amira Cronin","age":37,"location":"Lake Horaciobury"}},{"attributes":{"name":"Francisca Lynch","age":18,"location":"Ornborough"}},{"attributes":{"name":"Michael Shields","age":74,"location":"Santa Cruz"}},{"attributes":{"name":"Ms. Julian Koelpin","age":57,"location":"Washington"}},{"attributes":{"name":"Joanny Langworth","age":24,"location":"Huntersville"}},{"attributes":{"name":"Clemens Deckow","age":53,"location":"Douglasview"}},{"attributes":{"name":"Cindy Mills","age":75,"location":"East Hanna"}},{"attributes":{"name":"Joe Kris","age":25,"location":"Lake Osborne"}},{"attributes":{"name":"Macy Langosh","age":52,"location":"North Benton"}},{"attributes":{"name":"Mr. Jamal Swaniawski","age":46,"location":"Southaven"}},{"attributes":{"name":"Dr. Don Greenfelder","age":37,"location":"Larkinburgh"}},{"attributes":{"name":"Ross Roob","age":64,"location":"Richmondview"}},{"attributes":{"name":"Cordie Ledner","age":43,"location":"Franciscobury"}},{"attributes":{"name":"Candida Emmerich","age":33,"location":"Kristoferhaven"}},{"attributes":{"name":"Joelle Denesik","age":35,"location":"Gayleland"}},{"attributes":{"name":"Carlo Little","age":41,"location":"Lake Beaulahstad"}},{"attributes":{"name":"Lonnie Bernhard","age":60,"location":"Port Julesstead"}},{"attributes":{"name":"Carol Grimes","age":22,"location":"Lake Rosalinda"}},{"attributes":{"name":"Peter Daugherty","age":66,"location":"Shaynaborough"}},{"attributes":{"name":"Lynn Nitzsche","age":29,"location":"Huntington Park"}},{"attributes":{"name":"Jesus Thiel-Tremblay","age":33,"location":"Osinskiside"}},{"attributes":{"name":"Demarco Witting","age":41,"location":"New Tyshawn"}},{"attributes":{"name":"Theodora Dickens","age":33,"location":"Port Estevan"}},{"attributes":{"name":"Mr. Eula Flatley","age":61,"location":"Zoilaworth"}},{"attributes":{"name":"Kayden McDermott","age":70,"location":"Greenville"}},{"attributes":{"name":"Latoya Feil","age":65,"location":"Welchfort"}},{"attributes":{"name":"Tracey Reinger","age":27,"location":"Cranston"}},{"attributes":{"name":"Maggie Yost-Bahringer","age":64,"location":"Normal"}},{"attributes":{"name":"Mrs. Norma Veum","age":65,"location":"West Mason"}},{"attributes":{"name":"Deanna Pagac","age":19,"location":"Hilllshire"}},{"attributes":{"name":"Dr. Johnnie Kuphal","age":31,"location":"Kulasberg"}},{"attributes":{"name":"Anabelle Hayes","age":25,"location":"Anastasiahaven"}},{"attributes":{"name":"Audie Mann","age":52,"location":"North Webster"}},{"attributes":{"name":"Dr. Alyson Legros","age":72,"location":"Fort Eudoraview"}},{"attributes":{"name":"Dianne Kunde","age":75,"location":"Peytonton"}},{"attributes":{"name":"Emmett O'Hara","age":49,"location":"Schuppeside"}},{"attributes":{"name":"Dr. Dallas Cartwright","age":64,"location":"East Kierachester"}},{"attributes":{"name":"Martin Mitchell","age":51,"location":"Avondale"}},{"attributes":{"name":"Cora Leffler-Balistreri III","age":24,"location":"West Kacie"}},{"attributes":{"name":"Xzavier Herzog","age":67,"location":"Pfannerstillfield"}},{"attributes":{"name":"Alvina Boyer","age":63,"location":"South Mackenzie"}},{"attributes":{"name":"Joel Gottlieb","age":22,"location":"Ritchiecester"}},{"attributes":{"name":"Pete Quitzon","age":58,"location":"Lake Rosaborough"}},{"attributes":{"name":"Marta Dare","age":33,"location":"Vernicehaven"}},{"attributes":{"name":"Jeff Volkman-D'Amore","age":61,"location":"Napa"}},{"attributes":{"name":"Mr. Deven Conn","age":67,"location":"Port Nash"}},{"attributes":{"name":"Dr. Viviane Parker","age":57,"location":"Watsicaburgh"}},{"attributes":{"name":"Tressa Schultz","age":63,"location":"Fort Tyrellfurt"}},{"attributes":{"name":"Danny Hilpert","age":48,"location":"North Meaghanport"}},{"attributes":{"name":"Violette Davis DDS","age":56,"location":"Rio Rancho"}},{"attributes":{"name":"Lillian Cummings DVM","age":57,"location":"Cormierville"}},{"attributes":{"name":"Troy Cartwright","age":20,"location":"Kohlerland"}},{"attributes":{"name":"Ryan Rodriguez","age":45,"location":"Jadenshire"}},{"attributes":{"name":"Cathy Feest","age":78,"location":"South Roman"}},{"attributes":{"name":"Clinton Kassulke-Kutch","age":31,"location":"Lessiemouth"}},{"attributes":{"name":"Cora Powlowski","age":60,"location":"Abbigailfield"}},{"attributes":{"name":"Doug Fadel","age":78,"location":"Micaelaport"}},{"attributes":{"name":"Valerie Botsford","age":29,"location":"Hilllboro"}},{"attributes":{"name":"Rolando Stracke V","age":34,"location":"South Lafayetteport"}},{"attributes":{"name":"Dixie Rowe PhD","age":35,"location":"West Antoinette"}},{"attributes":{"name":"Neil Huel","age":47,"location":"East Floy"}},{"attributes":{"name":"Mr. Corbin Johnson","age":60,"location":"East Billstead"}},{"attributes":{"name":"Antonina Gleichner","age":21,"location":"Jaceyville"}},{"attributes":{"name":"Beatrice Johns","age":62,"location":"Lake Monroefort"}},{"attributes":{"name":"Shana Crona","age":78,"location":"Lockmanburgh"}},{"attributes":{"name":"Derek Parker","age":69,"location":"West Esther"}},{"attributes":{"name":"Eileen Miller","age":73,"location":"West Thomas"}},{"attributes":{"name":"Arnold Koch","age":51,"location":"Yonkers"}},{"attributes":{"name":"Kobe Kozey DDS","age":23,"location":"West Whitney"}},{"attributes":{"name":"Earl Johns","age":48,"location":"Fort Mireyafurt"}},{"attributes":{"name":"Landen O'Connell","age":68,"location":"East Jayne"}},{"attributes":{"name":"Martin Bayer","age":65,"location":"Littelview"}},{"attributes":{"name":"Stella Bayer","age":38,"location":"Salmabury"}},{"attributes":{"name":"Stanley Swaniawski II","age":68,"location":"Kariburgh"}},{"attributes":{"name":"Wyatt Hayes","age":18,"location":"Kaleyshire"}},{"attributes":{"name":"Lee Herzog","age":77,"location":"Bergehaven"}},{"attributes":{"name":"Otto Jones Sr.","age":59,"location":"North Dallasport"}},{"attributes":{"name":"Ms. Laura Kilback IV","age":31,"location":"North Brisa"}},{"attributes":{"name":"Joesph Pacocha Jr.","age":72,"location":"West Marioland"}},{"attributes":{"name":"Gerard Zulauf","age":78,"location":"Reillybury"}},{"attributes":{"name":"Josie Lind","age":66,"location":"Sandy"}},{"attributes":{"name":"Dorothy Kerluke","age":61,"location":"Scranton"}},{"attributes":{"name":"Polly Greenfelder","age":46,"location":"Lake Jakaylatown"}},{"attributes":{"name":"Vladimir Feil","age":21,"location":"Gibsonland"}},{"attributes":{"name":"Ms. Nannie West","age":65,"location":"New Kellibury"}},{"attributes":{"name":"Victor Franecki","age":73,"location":"Port Dannietown"}},{"attributes":{"name":"Summer Aufderhar","age":59,"location":"East Mac"}},{"attributes":{"name":"Dr. Tanya Ebert","age":53,"location":"Caldwell"}},{"attributes":{"name":"Ethel Monahan III","age":46,"location":"Hackensack"}},{"attributes":{"name":"Aubrey O'Connell","age":21,"location":"Cambridge"}},{"attributes":{"name":"Dawn Turner","age":52,"location":"Handside"}},{"attributes":{"name":"Cayla Kutch-Hauck","age":41,"location":"Davenport"}},{"attributes":{"name":"Makenzie Walsh","age":51,"location":"Fort Keenan"}},{"attributes":{"name":"Asha Robel","age":29,"location":"Reillyborough"}},{"attributes":{"name":"Vicenta Schroeder","age":64,"location":"Candelariofurt"}},{"attributes":{"name":"Irene Ritchie","age":65,"location":"Novato"}},{"attributes":{"name":"Joey Jaskolski","age":38,"location":"Ulisesfield"}},{"attributes":{"name":"Erin Rath","age":55,"location":"Hettingerport"}},{"attributes":{"name":"Bertram Terry","age":61,"location":"South Alexis"}},{"attributes":{"name":"Emilio Cruickshank","age":35,"location":"Halvorsonberg"}},{"attributes":{"name":"Kirk Wisoky","age":62,"location":"Lake Forest"}},{"attributes":{"name":"Maureen Cormier","age":19,"location":"Shoreline"}},{"attributes":{"name":"Jeannette Quigley","age":63,"location":"New Shawn"}},{"attributes":{"name":"Adelia Williamson","age":19,"location":"Walkerfort"}},{"attributes":{"name":"Wendell Beahan","age":59,"location":"East Junius"}},{"attributes":{"name":"Ricky Crist","age":39,"location":"Azusa"}},{"attributes":{"name":"Delfina Goodwin","age":69,"location":"Katlyncester"}},{"attributes":{"name":"Mr. Scott Harvey III","age":69,"location":"North Highlands"}},{"attributes":{"name":"Matthew Stanton II","age":47,"location":"Port Laisha"}},{"attributes":{"name":"Dr. Lamar Ortiz","age":19,"location":"Wolffmouth"}},{"attributes":{"name":"Elaine Mertz IV","age":64,"location":"Port Ivahhaven"}},{"attributes":{"name":"Alexys Wisozk","age":76,"location":"Martaport"}},{"attributes":{"name":"Dr. Reva Lubowitz DVM","age":74,"location":"Markston"}},{"attributes":{"name":"Miss Tyler Lowe DVM","age":19,"location":"Denton"}},{"attributes":{"name":"Wilbert Rempel","age":41,"location":"Perris"}},{"attributes":{"name":"Nelle Schimmel","age":62,"location":"North Meta"}},{"attributes":{"name":"Cassandra Yost-Simonis","age":30,"location":"New Deborah"}},{"attributes":{"name":"Darrick Strosin","age":46,"location":"Port Sandra"}},{"attributes":{"name":"Christelle Larkin PhD","age":65,"location":"Sarasota"}},{"attributes":{"name":"Victoria Gibson","age":20,"location":"West Jordan"}},{"attributes":{"name":"Vergie Pfannerstill","age":25,"location":"Xavierborough"}},{"attributes":{"name":"Rogelio Turner","age":58,"location":"Indio"}},{"attributes":{"name":"Ian Rau","age":73,"location":"East Nedraworth"}},{"attributes":{"name":"Nelson Hammes","age":75,"location":"Rempelborough"}},{"attributes":{"name":"Alice Cartwright","age":34,"location":"Audreannebury"}},{"attributes":{"name":"Edna Krajcik","age":72,"location":"East Jamaal"}},{"attributes":{"name":"Grady Denesik II","age":69,"location":"Port Rosettafield"}},{"attributes":{"name":"Angelica Reichel","age":55,"location":"Lake Elijah"}},{"attributes":{"name":"Paulette Becker","age":73,"location":"D'Amoreworth"}},{"attributes":{"name":"Seth Wiza","age":47,"location":"St. Petersburg"}},{"attributes":{"name":"Eriberto Waelchi","age":46,"location":"West Nichole"}},{"attributes":{"name":"Emily Johnson","age":76,"location":"South Birdieworth"}},{"attributes":{"name":"Julio Bergstrom","age":35,"location":"Port Lewisstad"}},{"attributes":{"name":"Angel Anderson","age":35,"location":"Bruenview"}},{"attributes":{"name":"Terrell Rohan","age":53,"location":"Uniquestad"}},{"attributes":{"name":"Amya Buckridge","age":56,"location":"Westminster"}},{"attributes":{"name":"Delia Gorczany","age":23,"location":"Port Daniella"}},{"attributes":{"name":"Enoch Bahringer","age":61,"location":"Port Cloydport"}},{"attributes":{"name":"Carmen O'Keefe","age":73,"location":"South Sasha"}},{"attributes":{"name":"Chris Morar","age":47,"location":"North Barbara"}},{"attributes":{"name":"Darrion Wuckert-Kunze","age":21,"location":"Berwyn"}},{"attributes":{"name":"Cedric Hoeger","age":51,"location":"East Isabelfurt"}},{"attributes":{"name":"Caroline Klein","age":60,"location":"Kubborough"}},{"attributes":{"name":"Lenna Metz","age":44,"location":"New Joannyton"}},{"attributes":{"name":"Callie Parisian","age":40,"location":"Natalieport"}},{"attributes":{"name":"Dr. Anastacio Grimes","age":58,"location":"North Delta"}},{"attributes":{"name":"Asha Aufderhar","age":68,"location":"New Frankietown"}},{"attributes":{"name":"Tony Koepp V","age":51,"location":"Morgan Hill"}},{"attributes":{"name":"Dawn Romaguera","age":67,"location":"Hilariomouth"}},{"attributes":{"name":"Nathan Trantow","age":71,"location":"Spencerville"}},{"attributes":{"name":"Alverta Hoppe","age":33,"location":"North Roselyn"}},{"attributes":{"name":"Sadie Mueller","age":54,"location":"Clairecester"}},{"attributes":{"name":"Teri Barrows","age":68,"location":"Ann Arbor"}},{"attributes":{"name":"Vance Auer","age":55,"location":"North Marvinberg"}},{"attributes":{"name":"Jean Gleichner-Wuckert","age":43,"location":"Abernathystead"}},{"attributes":{"name":"Susie Spinka","age":39,"location":"Lorinestad"}},{"attributes":{"name":"Leatha McKenzie","age":33,"location":"South Teagan"}},{"attributes":{"name":"Melba Goodwin","age":76,"location":"New Gudrun"}},{"attributes":{"name":"Brendan Thiel-Hoeger","age":32,"location":"Bethesda"}},{"attributes":{"name":"Ashlee Nitzsche","age":53,"location":"Klockofort"}},{"attributes":{"name":"Damaris Nolan","age":69,"location":"Wilhelminestad"}},{"attributes":{"name":"Maxwell McGlynn","age":59,"location":"Riceton"}},{"attributes":{"name":"Cody O'Connell Sr.","age":28,"location":"Darecester"}},{"attributes":{"name":"Gennaro Lakin","age":65,"location":"Abbieside"}},{"attributes":{"name":"Raphaelle Feest V","age":52,"location":"Gastonia"}},{"attributes":{"name":"Mr. Marco Carter IV","age":57,"location":"Port Destany"}},{"attributes":{"name":"Grady O'Kon","age":65,"location":"South Hudsonberg"}},{"attributes":{"name":"Jessica Hegmann","age":31,"location":"Gresham"}},{"attributes":{"name":"Ida Schamberger","age":47,"location":"Lake Constancetown"}},{"attributes":{"name":"Ms. Tyrell Sanford","age":49,"location":"Sanfordton"}},{"attributes":{"name":"Katrina Emard","age":74,"location":"Blickton"}},{"attributes":{"name":"Eldon Graham","age":48,"location":"New Braunfels"}},{"attributes":{"name":"Dr. Ervin Greenholt","age":76,"location":"Port Juliusmouth"}},{"attributes":{"name":"John Schinner","age":38,"location":"Florin"}},{"attributes":{"name":"River Herzog","age":67,"location":"Bethesda"}},{"attributes":{"name":"Allen O'Keefe","age":56,"location":"Arlomouth"}},{"attributes":{"name":"Clifford Gislason","age":78,"location":"Fort Smith"}},{"attributes":{"name":"Dawn Dickens","age":22,"location":"Port Laruestad"}},{"attributes":{"name":"Ms. Leonie Raynor","age":20,"location":"Fort Garryworth"}},{"attributes":{"name":"Jimmy O'Reilly IV","age":46,"location":"El Dorado Hills"}},{"attributes":{"name":"Ms. Angel Windler-Blick","age":29,"location":"North Adalinestad"}},{"attributes":{"name":"Martha O'Connell","age":45,"location":"Miami"}},{"attributes":{"name":"Allan Berge","age":21,"location":"Johnmouth"}},{"attributes":{"name":"Elisa Hodkiewicz V","age":27,"location":"New Marcelina"}},{"attributes":{"name":"Brooke Rath","age":44,"location":"Valentinland"}},{"attributes":{"name":"Nathaniel Batz","age":51,"location":"Ardellashire"}},{"attributes":{"name":"Ervin Wilkinson","age":55,"location":"West Alessandrabury"}},{"attributes":{"name":"Judy Franecki","age":65,"location":"Hayleyburgh"}},{"attributes":{"name":"Amos Abernathy-Goyette","age":34,"location":"High Point"}},{"attributes":{"name":"Sarah Kerluke","age":41,"location":"Schultztown"}},{"attributes":{"name":"Jesus Moen","age":38,"location":"Fort Kimberly"}},{"attributes":{"name":"Rosemarie Abbott","age":48,"location":"North Lempicester"}},{"attributes":{"name":"Vickie Mitchell","age":58,"location":"North Manuelafurt"}},{"attributes":{"name":"Mrs. Adolf Crooks DDS","age":25,"location":"Fort Bridgette"}},{"attributes":{"name":"Leona Stroman","age":33,"location":"Sparks"}},{"attributes":{"name":"Maryann Christiansen","age":43,"location":"Arecibo"}},{"attributes":{"name":"Rosella Oberbrunner","age":25,"location":"Gorczanyborough"}},{"attributes":{"name":"Joseph Batz","age":42,"location":"Lake Lila"}},{"attributes":{"name":"Abel O'Keefe","age":74,"location":"Port Geovanymouth"}},{"attributes":{"name":"Declan Kovacek","age":80,"location":"Alafaya"}},{"attributes":{"name":"Irma Johnston","age":18,"location":"Brooklyn Park"}},{"attributes":{"name":"Sue Krajcik","age":29,"location":"Bellingham"}},{"attributes":{"name":"Cheryl Reinger","age":36,"location":"Lake Cordiafurt"}},{"attributes":{"name":"Darren Herman","age":40,"location":"Hermistonville"}},{"attributes":{"name":"Mr. Merle Wolf MD","age":54,"location":"East Geovannyberg"}},{"attributes":{"name":"Dr. Steve MacGyver","age":50,"location":"South Damienworth"}},{"attributes":{"name":"Annamarie Vandervort","age":47,"location":"Port Leonie"}},{"attributes":{"name":"Brandon Spinka","age":32,"location":"Norman"}},{"attributes":{"name":"Ms. Courtney Medhurst","age":48,"location":"Marleefield"}},{"attributes":{"name":"Hugh Prosacco","age":67,"location":"Jadaburgh"}},{"attributes":{"name":"Edward Kutch","age":21,"location":"Clemmieburgh"}},{"attributes":{"name":"Kristen Stehr","age":48,"location":"Germaineland"}},{"attributes":{"name":"Diane Shields Sr.","age":31,"location":"Port Maurine"}},{"attributes":{"name":"Weston Witting","age":21,"location":"East Ethan"}},{"attributes":{"name":"Kristopher Hagenes","age":19,"location":"Charlotte"}},{"attributes":{"name":"Maiya Wunsch","age":72,"location":"Marksshire"}},{"attributes":{"name":"Van Wuckert","age":37,"location":"Port Arvidborough"}},{"attributes":{"name":"Stefan Leuschke","age":31,"location":"Fort Ewaldburgh"}},{"attributes":{"name":"Christie Reynolds-Shanahan","age":56,"location":"Destineyport"}},{"attributes":{"name":"Jo Conn IV","age":37,"location":"South Destineyfield"}},{"attributes":{"name":"Enos O'Conner","age":59,"location":"San Bernardino"}},{"attributes":{"name":"Addie O'Hara V","age":66,"location":"New Dulce"}},{"attributes":{"name":"Magali Flatley","age":76,"location":"North Miami"}},{"attributes":{"name":"Alonzo Bauch","age":63,"location":"Fort Breanne"}},{"attributes":{"name":"Emmett Johnson","age":55,"location":"Busterstead"}},{"attributes":{"name":"Latoya Fahey","age":24,"location":"West Antonioshire"}},{"attributes":{"name":"Dr. Homer Lehner","age":62,"location":"Port Trinitycester"}},{"attributes":{"name":"Curtis Turcotte","age":48,"location":"Gerlachburgh"}},{"attributes":{"name":"Alex Fritsch","age":77,"location":"Arelystad"}},{"attributes":{"name":"Spencer West","age":46,"location":"Tyshawnview"}},{"attributes":{"name":"Danny Harris","age":22,"location":"Quitzontown"}},{"attributes":{"name":"Arlie Stehr","age":31,"location":"East Robertamouth"}},{"attributes":{"name":"Lester Buckridge","age":58,"location":"South Santatown"}},{"attributes":{"name":"Dr. Thad Gorczany PhD","age":61,"location":"Spring Hill"}},{"attributes":{"name":"Alvin Spinka","age":48,"location":"New Zenamouth"}},{"attributes":{"name":"Herbert Ledner-Rosenbaum PhD","age":77,"location":"Lake Tressiefort"}},{"attributes":{"name":"Santino Schulist","age":52,"location":"Warwick"}},{"attributes":{"name":"Christy Harris","age":80,"location":"Temple"}},{"attributes":{"name":"Jerry Stracke","age":25,"location":"Flint"}},{"attributes":{"name":"Miss Fredrick Schowalter","age":51,"location":"Niagara Falls"}},{"attributes":{"name":"Icie Keebler DVM","age":39,"location":"Bodebury"}},{"attributes":{"name":"Tami Schinner Sr.","age":47,"location":"Chico"}},{"attributes":{"name":"Bradley Farrell V","age":40,"location":"Lake Soniaside"}},{"attributes":{"name":"Rosa Wunsch","age":74,"location":"Lake Tyrelbury"}},{"attributes":{"name":"Gaston Schroeder","age":46,"location":"Koeppfield"}},{"attributes":{"name":"Dr. Margret Dietrich-Thompson","age":21,"location":"Chanelworth"}},{"attributes":{"name":"Mr. Casey Hirthe","age":55,"location":"Broomfield"}},{"attributes":{"name":"Lupe Jaskolski II","age":26,"location":"Quigleyfurt"}},{"attributes":{"name":"Dr. Julie Douglas DDS","age":53,"location":"Hanford"}},{"attributes":{"name":"Jimmy Bauch","age":45,"location":"Lake Fannyfurt"}},{"attributes":{"name":"Dr. Audrey Bogan","age":38,"location":"Fullerton"}},{"attributes":{"name":"Dr. Ryley VonRueden-Mayert","age":23,"location":"Conroyboro"}},{"attributes":{"name":"Nick Feil","age":47,"location":"Hattiesburg"}},{"attributes":{"name":"Josephine Howe-Kuhlman","age":65,"location":"Cartershire"}},{"attributes":{"name":"Olaf Lang","age":78,"location":"Fort Maudebury"}},{"attributes":{"name":"Jayce Heathcote","age":62,"location":"North Dina"}},{"attributes":{"name":"Robin Crooks","age":72,"location":"Perris"}},{"attributes":{"name":"Maynard Botsford I","age":45,"location":"West Ellisland"}},{"attributes":{"name":"Leticia Williamson","age":75,"location":"Bountiful"}},{"attributes":{"name":"Sibyl Heathcote","age":52,"location":"Williamsonfort"}},{"attributes":{"name":"Tasha Weber","age":72,"location":"Tamiami"}},{"attributes":{"name":"Sonia Abshire","age":50,"location":"East Isac"}},{"attributes":{"name":"Rubie Lesch","age":18,"location":"Lake Mollyshire"}},{"attributes":{"name":"Orie Becker","age":21,"location":"Carson City"}},{"attributes":{"name":"Joannie Kerluke","age":53,"location":"Bayerville"}},{"attributes":{"name":"Dr. Tianna Bayer","age":80,"location":"College Station"}},{"attributes":{"name":"Marta Smitham","age":71,"location":"West Johanna"}},{"attributes":{"name":"Alexandra Braun-Keebler","age":71,"location":"Bartellton"}},{"attributes":{"name":"Ms. Rachel Leuschke","age":18,"location":"West Gene"}},{"attributes":{"name":"Rosemarie Wuckert","age":29,"location":"South Brettside"}},{"attributes":{"name":"Jeremy McLaughlin","age":26,"location":"Robertsmouth"}},{"attributes":{"name":"Harriet Yundt MD","age":23,"location":"Johnsontown"}},{"attributes":{"name":"Rico Adams","age":23,"location":"Vadastad"}},{"attributes":{"name":"Elena Haag","age":40,"location":"Wichita Falls"}},{"attributes":{"name":"Miss Renee Mann","age":38,"location":"Bergnaumstead"}},{"attributes":{"name":"Marjorie Jacobs","age":59,"location":"Balistrericester"}},{"attributes":{"name":"Jacey Kertzmann","age":54,"location":"New Santos"}},{"attributes":{"name":"Karl Marquardt","age":68,"location":"Surprise"}},{"attributes":{"name":"Alivia Flatley","age":25,"location":"Newport News"}},{"attributes":{"name":"Connor Fisher","age":60,"location":"Atascocita"}},{"attributes":{"name":"Dwayne Crist","age":32,"location":"Redondo Beach"}},{"attributes":{"name":"Jesus Walter MD","age":26,"location":"Rogers"}},{"attributes":{"name":"Ms. Joann Rosenbaum","age":61,"location":"Lancaster"}},{"attributes":{"name":"Ross Klein","age":22,"location":"Mariannefurt"}},{"attributes":{"name":"Jeremiah Wunsch","age":49,"location":"Riverside"}},{"attributes":{"name":"D'angelo Lubowitz","age":63,"location":"Brownport"}},{"attributes":{"name":"Jeramie Balistreri","age":57,"location":"Lindstad"}},{"attributes":{"name":"Ms. Jackie Legros","age":69,"location":"East Alfredoberg"}},{"attributes":{"name":"Karine Ward","age":68,"location":"East Savannahshire"}},{"attributes":{"name":"Jeremie Hintz","age":68,"location":"North Salvatore"}},{"attributes":{"name":"Mr. Archibald Cruickshank","age":41,"location":"Lake Willistown"}},{"attributes":{"name":"Maryann Kunze","age":60,"location":"Earlenechester"}},{"attributes":{"name":"Elbert Abbott","age":34,"location":"Port Cassidyhaven"}},{"attributes":{"name":"Manuel Marks V","age":66,"location":"Port Lawsonfort"}},{"attributes":{"name":"Lucas Green","age":33,"location":"New Ruben"}},{"attributes":{"name":"Chris Wehner","age":75,"location":"East Wilfridtown"}},{"attributes":{"name":"Arno Hirthe","age":38,"location":"South Ashlee"}},{"attributes":{"name":"Chet Ankunding","age":65,"location":"Port Leilani"}},{"attributes":{"name":"Courtney Shields","age":80,"location":"Yolandaboro"}},{"attributes":{"name":"Ms. Charles Sporer","age":28,"location":"Lukasfield"}},{"attributes":{"name":"Lavonne Stehr II","age":68,"location":"Waldorf"}},{"attributes":{"name":"Lynette Lesch","age":57,"location":"New Collinstead"}},{"attributes":{"name":"Charles Swaniawski","age":45,"location":"Sipesville"}},{"attributes":{"name":"Hassan Larkin","age":67,"location":"West Annabelle"}},{"attributes":{"name":"Debbie Waelchi","age":26,"location":"New Van"}},{"attributes":{"name":"Dena Larkin","age":32,"location":"Kochfield"}},{"attributes":{"name":"Bonnie Carter","age":25,"location":"New Consueloville"}},{"attributes":{"name":"Zelma Kiehn","age":45,"location":"Cristalhaven"}},{"attributes":{"name":"Kelly Runte","age":37,"location":"Nitzschefort"}},{"attributes":{"name":"Lilly Wisoky","age":34,"location":"Ziemanncester"}},{"attributes":{"name":"Greyson Ankunding","age":61,"location":"Runolfsdottirstad"}},{"attributes":{"name":"Hope Jacobi MD","age":21,"location":"Lednerview"}},{"attributes":{"name":"Donald Deckow","age":76,"location":"New Kennith"}},{"attributes":{"name":"Andrew Sawayn","age":26,"location":"New Stanley"}},{"attributes":{"name":"Winifred Erdman","age":25,"location":"West Robb"}},{"attributes":{"name":"Regan Kunde","age":69,"location":"Port Kenton"}},{"attributes":{"name":"Tara Orn","age":64,"location":"East Easter"}},{"attributes":{"name":"Roosevelt Bergnaum","age":24,"location":"Tavaresville"}},{"attributes":{"name":"Monique Prosacco","age":67,"location":"Port Jeanettefort"}},{"attributes":{"name":"Winona Koch","age":48,"location":"Homenickstad"}},{"attributes":{"name":"Ernest Kassulke","age":62,"location":"New Kamryn"}},{"attributes":{"name":"Enrique Erdman","age":33,"location":"Bossier City"}},{"attributes":{"name":"Roma McCullough","age":39,"location":"Gwendolyncester"}},{"attributes":{"name":"Deven Johns","age":53,"location":"Howestead"}},{"attributes":{"name":"Alexandra Marquardt","age":60,"location":"East Kasandra"}},{"attributes":{"name":"Scarlett Wilkinson","age":52,"location":"Elmhurst"}},{"attributes":{"name":"Reese Lubowitz IV","age":79,"location":"Manteca"}},{"attributes":{"name":"Stella Ryan","age":52,"location":"East Savion"}},{"attributes":{"name":"Rebecca Weissnat","age":79,"location":"Shyanncester"}},{"attributes":{"name":"Mable Prosacco","age":57,"location":"East Bonniechester"}},{"attributes":{"name":"Joey Wyman","age":29,"location":"Kendall"}},{"attributes":{"name":"Dameon Luettgen II","age":69,"location":"Port Karl"}},{"attributes":{"name":"Dr. Rodger Conn Sr.","age":50,"location":"Fort Nels"}},{"attributes":{"name":"Allan Nolan","age":59,"location":"Fort Bertrandland"}},{"attributes":{"name":"Harry Okuneva","age":68,"location":"Rooseveltborough"}},{"attributes":{"name":"Jackie Doyle","age":40,"location":"Emmerichstad"}},{"attributes":{"name":"Penny Muller","age":32,"location":"Nellachester"}},{"attributes":{"name":"Eric Swaniawski","age":19,"location":"Raeland"}},{"attributes":{"name":"Miss Derek Denesik","age":23,"location":"Port Veronaton"}},{"attributes":{"name":"Dr. Scotty Harris","age":58,"location":"Maddisonmouth"}},{"attributes":{"name":"Gretchen Bayer","age":69,"location":"Port Roderick"}},{"attributes":{"name":"Emmanuel McLaughlin","age":62,"location":"Virginia Beach"}},{"attributes":{"name":"Mr. Marquise Hyatt","age":28,"location":"Cassinworth"}},{"attributes":{"name":"Martin Schimmel","age":38,"location":"Port Lorineview"}},{"attributes":{"name":"Linda Miller-Wiegand","age":25,"location":"St. George"}},{"attributes":{"name":"Forrest Greenfelder","age":27,"location":"North Princess"}},{"attributes":{"name":"Warren Torphy-Sporer","age":62,"location":"Bennettworth"}},{"attributes":{"name":"Dr. Bert Hagenes DVM","age":22,"location":"Gulfport"}},{"attributes":{"name":"Lora Schuppe I","age":41,"location":"West Linatown"}},{"attributes":{"name":"William Prosacco","age":30,"location":"Wilhelminefield"}},{"attributes":{"name":"Dolly Abbott-Cassin DVM","age":32,"location":"South Kristofertown"}},{"attributes":{"name":"Emma VonRueden","age":55,"location":"Milwaukee"}},{"attributes":{"name":"Louvenia DuBuque","age":54,"location":"Lake Theodorefurt"}},{"attributes":{"name":"Alexanne Volkman","age":25,"location":"Gerlachtown"}},{"attributes":{"name":"Erin Welch","age":27,"location":"San Angelo"}},{"attributes":{"name":"Geraldine Aufderhar","age":46,"location":"East Howardside"}},{"attributes":{"name":"Blanca Stehr","age":50,"location":"Lakeville"}},{"attributes":{"name":"Bernice Zulauf","age":77,"location":"Rolfsontown"}},{"attributes":{"name":"Ms. Juanita Dach","age":48,"location":"Garretland"}},{"attributes":{"name":"Deondre Ortiz","age":59,"location":"Schummbury"}},{"attributes":{"name":"Joann Murray MD","age":67,"location":"Lake Kyleetown"}},{"attributes":{"name":"Hattie Gibson I","age":32,"location":"Longmont"}},{"attributes":{"name":"Jamel Steuber","age":50,"location":"Eduardotown"}},{"attributes":{"name":"Terry Klein","age":20,"location":"Legrosborough"}},{"attributes":{"name":"Tyrone Donnelly-Ferry I","age":19,"location":"Zenamouth"}},{"attributes":{"name":"Shirley Waters","age":70,"location":"North Henrifield"}},{"attributes":{"name":"Leopoldo Balistreri","age":27,"location":"Anaheim"}},{"attributes":{"name":"Anissa Smitham","age":56,"location":"Rialto"}},{"attributes":{"name":"Mitchell Wyman","age":23,"location":"Fort Devynhaven"}},{"attributes":{"name":"Antonina Gutkowski","age":48,"location":"Aufderharville"}},{"attributes":{"name":"Elvie Waelchi","age":80,"location":"Fort Dovie"}},{"attributes":{"name":"Raul Cruickshank","age":53,"location":"Alexandriashire"}},{"attributes":{"name":"Keith Ebert","age":25,"location":"West Devontefurt"}},{"attributes":{"name":"Barry Strosin PhD","age":35,"location":"Bessieland"}},{"attributes":{"name":"Miss Gia Feeney","age":51,"location":"Trenton"}},{"attributes":{"name":"Tara Gibson","age":51,"location":"Fort Keegan"}},{"attributes":{"name":"Christie Schaefer","age":45,"location":"Danteberg"}},{"attributes":{"name":"Dr. Jana Toy","age":22,"location":"Streichton"}},{"attributes":{"name":"Abelardo Klocko","age":21,"location":"Schinnerworth"}},{"attributes":{"name":"Danielle DuBuque","age":35,"location":"South Hill"}},{"attributes":{"name":"Harmon Friesen","age":35,"location":"Fort Archibald"}},{"attributes":{"name":"Gerard Walter-Cremin Sr.","age":79,"location":"Schaumburg"}},{"attributes":{"name":"Vivian Kutch","age":76,"location":"Heaneychester"}},{"attributes":{"name":"Edgar Cartwright","age":74,"location":"Klockobury"}},{"attributes":{"name":"Frances Dicki","age":43,"location":"Bellflower"}},{"attributes":{"name":"Brooke Daugherty","age":49,"location":"Jacyntheton"}},{"attributes":{"name":"Gerardo Rowe","age":47,"location":"Kianview"}},{"attributes":{"name":"Kelly Smith MD","age":32,"location":"Fort Levi"}},{"attributes":{"name":"Velda Gleason","age":42,"location":"Jacobston"}},{"attributes":{"name":"Tonya Will","age":40,"location":"North Cordell"}},{"attributes":{"name":"Lela Lueilwitz","age":50,"location":"Vestahaven"}},{"attributes":{"name":"Nick Ritchie","age":72,"location":"Mansfield"}},{"attributes":{"name":"Lelia Batz","age":64,"location":"South Aurore"}},{"attributes":{"name":"Lindsey O'Hara","age":25,"location":"Toyfurt"}},{"attributes":{"name":"Sharon Nikolaus","age":50,"location":"Lake Sadietown"}},{"attributes":{"name":"Mrs. Terrance Beatty","age":33,"location":"Francescoshire"}},{"attributes":{"name":"Dr. Franklin Trantow","age":50,"location":"Schowalterfield"}},{"attributes":{"name":"Lance Prosacco","age":24,"location":"South Alfonso"}},{"attributes":{"name":"Myrl Kessler","age":25,"location":"New Santiago"}},{"attributes":{"name":"Andy Okuneva-Stiedemann","age":49,"location":"Port Dexter"}},{"attributes":{"name":"Hector Langworth I","age":73,"location":"North Paolo"}},{"attributes":{"name":"Dena Rath","age":79,"location":"Ollieview"}},{"attributes":{"name":"Barry Schamberger","age":79,"location":"Marcosmouth"}},{"attributes":{"name":"Myron Bogisich","age":54,"location":"Dale City"}},{"attributes":{"name":"Gregory Wintheiser","age":37,"location":"Lake Houstonbury"}},{"attributes":{"name":"Gwendolyn Oberbrunner","age":73,"location":"New Cordiechester"}},{"attributes":{"name":"Mrs. Jovanny Quigley","age":71,"location":"Vancouver"}},{"attributes":{"name":"Verda Skiles","age":76,"location":"Damianshire"}},{"attributes":{"name":"Rachel Ward","age":32,"location":"MacGyverchester"}},{"attributes":{"name":"Noel Lindgren DVM","age":19,"location":"Santa Maria"}},{"attributes":{"name":"Jared Walsh","age":66,"location":"North Fridaworth"}},{"attributes":{"name":"Linda Greenfelder","age":67,"location":"Elliotport"}},{"attributes":{"name":"Emma Ruecker-Feeney","age":54,"location":"East Lerachester"}},{"attributes":{"name":"Lea Bednar","age":79,"location":"Lake Milan"}},{"attributes":{"name":"Dr. Unique Larkin","age":20,"location":"Perrybury"}},{"attributes":{"name":"Raymundo Hoeger","age":70,"location":"Rathview"}},{"attributes":{"name":"Ruth Brekke","age":23,"location":"Harbertown"}},{"attributes":{"name":"Harold Cummings","age":26,"location":"Lavadaville"}},{"attributes":{"name":"Lucinda Bailey","age":29,"location":"Willardside"}},{"attributes":{"name":"Ollie Herman","age":71,"location":"Kshlerinside"}},{"attributes":{"name":"Aida Lueilwitz","age":76,"location":"Boyerberg"}},{"attributes":{"name":"Marian McLaughlin","age":74,"location":"Goodwinside"}},{"attributes":{"name":"Winston Lang","age":48,"location":"Port Gaston"}},{"attributes":{"name":"Fannie Will","age":43,"location":"Tulsa"}},{"attributes":{"name":"Dr. Enid McKenzie","age":67,"location":"Ames"}},{"attributes":{"name":"Darrel Schowalter","age":45,"location":"Jacobihaven"}},{"attributes":{"name":"Xander Ryan IV","age":39,"location":"Strackeborough"}},{"attributes":{"name":"Halie Rutherford","age":41,"location":"Indianapolis"}},{"attributes":{"name":"Darin Towne","age":28,"location":"Port Sierra"}},{"attributes":{"name":"Neal O'Keefe","age":27,"location":"Tempe"}},{"attributes":{"name":"Robin Prosacco-Stehr","age":80,"location":"East Sophiefield"}},{"attributes":{"name":"Erica Huels","age":42,"location":"Pagachaven"}},{"attributes":{"name":"Kellie Greenfelder-Mayer","age":60,"location":"South Jamaal"}},{"attributes":{"name":"Russell Kemmer","age":77,"location":"Osinskiview"}},{"attributes":{"name":"Levi Rowe","age":39,"location":"North Arden"}},{"attributes":{"name":"Miss Raven Gutmann","age":38,"location":"New Johanna"}},{"attributes":{"name":"Katrina Morar","age":18,"location":"New Freemanfield"}},{"attributes":{"name":"Dr. Reinhold Sauer","age":24,"location":"Albinborough"}},{"attributes":{"name":"Howard Borer-Spencer","age":77,"location":"Highland"}},{"attributes":{"name":"Miss Juliet Emmerich","age":35,"location":"East Davidhaven"}},{"attributes":{"name":"Toby Ratke","age":47,"location":"Shieldsstad"}},{"attributes":{"name":"Miss Bernard Crona V","age":57,"location":"Quitzonborough"}},{"attributes":{"name":"Anita Abshire","age":44,"location":"Fort Chaunceybury"}},{"attributes":{"name":"Destany Walker V","age":24,"location":"Vellacester"}},{"attributes":{"name":"Geraldine Toy","age":76,"location":"Altoona"}},{"attributes":{"name":"Loy Metz","age":74,"location":"South Marjory"}},{"attributes":{"name":"Randal Gerhold","age":57,"location":"Lake Marty"}},{"attributes":{"name":"Frances Ortiz","age":74,"location":"Konopelskichester"}},{"attributes":{"name":"Marcelo Kris","age":22,"location":"Fort Ezekiel"}},{"attributes":{"name":"Nora Jaskolski","age":76,"location":"Susieboro"}},{"attributes":{"name":"Roderick Osinski","age":41,"location":"Dubuque"}},{"attributes":{"name":"Burley Aufderhar","age":22,"location":"Waltercester"}},{"attributes":{"name":"Ebony Lueilwitz","age":67,"location":"Leannonview"}},{"attributes":{"name":"Franklin Herman PhD","age":52,"location":"Port Nolan"}},{"attributes":{"name":"Isaias Emmerich","age":67,"location":"Tustin"}},{"attributes":{"name":"Angelo Heathcote","age":45,"location":"South Deshawnchester"}},{"attributes":{"name":"Bethany McLaughlin","age":79,"location":"South Felipe"}},{"attributes":{"name":"Peggie Towne","age":54,"location":"Ottisbury"}},{"attributes":{"name":"Dr. Mateo Ernser","age":28,"location":"Royceworth"}},{"attributes":{"name":"Suzanne Stehr","age":75,"location":"Clearwater"}},{"attributes":{"name":"Marion Morissette","age":31,"location":"Hudsonhaven"}},{"attributes":{"name":"Miracle Kiehn","age":21,"location":"Kunzefurt"}},{"attributes":{"name":"Irwin Lindgren","age":27,"location":"Palmdale"}},{"attributes":{"name":"Jose Rempel","age":25,"location":"Fritschfield"}},{"attributes":{"name":"Marta Schmidt","age":26,"location":"Hodkiewiczside"}},{"attributes":{"name":"Sheldon Nikolaus","age":38,"location":"Scottsdale"}},{"attributes":{"name":"Annette Hudson","age":49,"location":"Lelahhaven"}},{"attributes":{"name":"Lee Hessel","age":23,"location":"Ocieberg"}},{"attributes":{"name":"Remington Adams-Oberbrunner","age":57,"location":"East Lizeth"}},{"attributes":{"name":"Johnny Effertz","age":23,"location":"Fort Carmenstead"}},{"attributes":{"name":"Byron Schneider","age":54,"location":"East Helga"}},{"attributes":{"name":"Darnell Goyette","age":22,"location":"Blockfield"}},{"attributes":{"name":"Ayla Jerde","age":45,"location":"Claudinetown"}},{"attributes":{"name":"Jody Lemke","age":55,"location":"Prohaskachester"}},{"attributes":{"name":"Yolanda Ernser","age":63,"location":"North Eloyfort"}},{"attributes":{"name":"Brent Ondricka","age":21,"location":"South Denaberg"}},{"attributes":{"name":"Emmett Maggio","age":31,"location":"Daly City"}},{"attributes":{"name":"Max Labadie","age":70,"location":"Lake Emma"}},{"attributes":{"name":"Emmie Lemke","age":79,"location":"Lake Wendellworth"}},{"attributes":{"name":"Adah Metz V","age":61,"location":"Guillermoville"}},{"attributes":{"name":"Daphnee Hauck","age":20,"location":"Chesapeake"}},{"attributes":{"name":"Rosendo Rogahn","age":62,"location":"Lueilwitztown"}},{"attributes":{"name":"Marques Haley","age":34,"location":"Mosciskiview"}},{"attributes":{"name":"Nellie Dietrich","age":55,"location":"Lake Kiarastad"}},{"attributes":{"name":"Ginger Brakus","age":76,"location":"Redondo Beach"}},{"attributes":{"name":"Helga Prosacco","age":36,"location":"Fort Cielo"}},{"attributes":{"name":"Armando Reinger","age":65,"location":"East Bernadetteberg"}},{"attributes":{"name":"Mauricio Jerde","age":57,"location":"Anchorage"}},{"attributes":{"name":"Cary Labadie PhD","age":72,"location":"Hoffman Estates"}},{"attributes":{"name":"Carrie Bartoletti","age":53,"location":"South Jailyn"}},{"attributes":{"name":"Katherine Veum","age":51,"location":"Tulsa"}},{"attributes":{"name":"Mrs. Melba Jakubowski-Hermann","age":29,"location":"Jovanistead"}},{"attributes":{"name":"Raleigh Olson","age":36,"location":"Olenfield"}},{"attributes":{"name":"Betty Ryan DDS","age":27,"location":"West Ilenetown"}},{"attributes":{"name":"Brenda Kuhic","age":28,"location":"Bellaview"}},{"attributes":{"name":"Dwayne Cummings MD","age":79,"location":"Jersey City"}},{"attributes":{"name":"Zoila Osinski Jr.","age":36,"location":"Helenaton"}},{"attributes":{"name":"Mario Zieme","age":76,"location":"West Vanessaberg"}},{"attributes":{"name":"Eda Breitenberg","age":72,"location":"Melyssaside"}},{"attributes":{"name":"Miss Pietro West","age":19,"location":"Kariannefurt"}},{"attributes":{"name":"Edwin Schultz","age":61,"location":"Stephaniafurt"}},{"attributes":{"name":"Seth Zieme","age":33,"location":"Lloydberg"}},{"attributes":{"name":"Joel Heathcote","age":21,"location":"Toreyport"}},{"attributes":{"name":"Camden Ernser-Shields","age":19,"location":"Kittyfort"}},{"attributes":{"name":"Erna Hirthe","age":59,"location":"West Gilbertside"}},{"attributes":{"name":"Richmond Cronin","age":48,"location":"Lake Grayson"}},{"attributes":{"name":"Marco Boyer","age":54,"location":"Somerville"}},{"attributes":{"name":"Maggie Beier","age":55,"location":"Annamaeburgh"}},{"attributes":{"name":"Leroy Pfannerstill","age":28,"location":"Fargo"}},{"attributes":{"name":"Kristine Bergstrom","age":41,"location":"Marksboro"}},{"attributes":{"name":"Drew Schneider","age":22,"location":"McCulloughville"}},{"attributes":{"name":"Kellie Orn IV","age":45,"location":"Stehrside"}},{"attributes":{"name":"Ashton Leffler Jr.","age":38,"location":"Emmerichville"}},{"attributes":{"name":"Antonio Stamm III","age":47,"location":"Auercester"}},{"attributes":{"name":"Cecilia Herman","age":59,"location":"The Woodlands"}},{"attributes":{"name":"Ralph Roob","age":25,"location":"New Merl"}},{"attributes":{"name":"Myra Lowe","age":52,"location":"Port Kayleeview"}},{"attributes":{"name":"Ms. Tressa Leffler","age":73,"location":"Serenaworth"}},{"attributes":{"name":"Delia Watsica","age":29,"location":"Lake Morris"}},{"attributes":{"name":"Arch Connelly","age":24,"location":"Port Rosalee"}},{"attributes":{"name":"Lenny Cartwright V","age":55,"location":"Blue Springs"}},{"attributes":{"name":"Morris King","age":34,"location":"Margarettaside"}},{"attributes":{"name":"Ben Baumbach","age":74,"location":"Kunzemouth"}},{"attributes":{"name":"Arnold Metz","age":69,"location":"North Sarinastad"}},{"attributes":{"name":"Jaime O'Hara","age":22,"location":"Huntsville"}},{"attributes":{"name":"Jermaine Conroy-Kreiger MD","age":30,"location":"West Opheliaworth"}},{"attributes":{"name":"Mrs. Russell Rau","age":45,"location":"Reichelbury"}},{"attributes":{"name":"Alessandra Zemlak","age":73,"location":"New Maud"}},{"attributes":{"name":"Cindy Padberg","age":68,"location":"Macymouth"}},{"attributes":{"name":"Ella Goodwin","age":52,"location":"Neilfield"}},{"attributes":{"name":"Oda Streich","age":54,"location":"Decatur"}},{"attributes":{"name":"Willy Ferry PhD","age":36,"location":"Wolfstead"}},{"attributes":{"name":"Mr. Wilbert Jacobs-Wunsch","age":49,"location":"East Augustine"}},{"attributes":{"name":"Eunice Runte MD","age":59,"location":"New Christport"}},{"attributes":{"name":"Rachael Jones-Hamill","age":27,"location":"North Bethesda"}},{"attributes":{"name":"Dr. Gilbert Bernier","age":42,"location":"South Uniqueville"}},{"attributes":{"name":"Claudia Swift","age":75,"location":"Commerce City"}},{"attributes":{"name":"Salvatore Waters","age":21,"location":"Colleenfort"}},{"attributes":{"name":"Rodrigo Breitenberg","age":66,"location":"Abbieland"}},{"attributes":{"name":"Jeramie Haag","age":65,"location":"Schuppestad"}},{"attributes":{"name":"Thurman Conroy-Von","age":27,"location":"Irvine"}},{"attributes":{"name":"Rhonda Pouros","age":52,"location":"Murrieta"}},{"attributes":{"name":"Lowell Lubowitz","age":19,"location":"Barrowsshire"}},{"attributes":{"name":"Otis Bosco","age":47,"location":"South Cordell"}},{"attributes":{"name":"Neil Armstrong","age":49,"location":"Bowie"}},{"attributes":{"name":"Tara Lehner","age":28,"location":"South Luz"}},{"attributes":{"name":"Carolyn Corwin","age":52,"location":"East Malinda"}},{"attributes":{"name":"Tremaine Schmidt","age":72,"location":"Kenyonmouth"}},{"attributes":{"name":"Mrs. Mitchel Collins","age":65,"location":"Tommiestead"}},{"attributes":{"name":"Jaiden Bode PhD","age":45,"location":"Lake Vinnieville"}},{"attributes":{"name":"Elena Zboncak","age":43,"location":"Port Princesstown"}},{"attributes":{"name":"Andrea Jenkins","age":27,"location":"Esperanzaport"}},{"attributes":{"name":"Clemens Hahn MD","age":72,"location":"North Zita"}},{"attributes":{"name":"Joanna Hermiston-MacGyver I","age":45,"location":"McDermottcester"}},{"attributes":{"name":"Lamar Armstrong","age":21,"location":"East Lavernville"}},{"attributes":{"name":"Teresa Jerde","age":37,"location":"Russelboro"}},{"attributes":{"name":"Taylor Koepp","age":69,"location":"Irvine"}},{"attributes":{"name":"Ella DuBuque","age":37,"location":"Lake Pattie"}},{"attributes":{"name":"Jacinthe Jacobi","age":62,"location":"Tyler"}},{"attributes":{"name":"Quinton Kub","age":22,"location":"Talonbury"}},{"attributes":{"name":"Merritt Kling","age":44,"location":"New Laura"}},{"attributes":{"name":"Sophia Hickle","age":23,"location":"Lake Mckenzie"}},{"attributes":{"name":"Felton Dooley DVM","age":18,"location":"West Filomenatown"}},{"attributes":{"name":"Carla Cassin","age":45,"location":"Watsicaworth"}},{"attributes":{"name":"Kristopher Nitzsche","age":59,"location":"East Newell"}},{"attributes":{"name":"Miss Jaime Quigley","age":54,"location":"Hammesview"}},{"attributes":{"name":"Efren Franecki","age":35,"location":"Samshire"}},{"attributes":{"name":"Irving Hartmann","age":57,"location":"West Leonel"}},{"attributes":{"name":"Meghan Kautzer-Feil","age":36,"location":"Cristinatown"}},{"attributes":{"name":"Ova McDermott","age":49,"location":"South Delphinefort"}},{"attributes":{"name":"Grady Klein","age":25,"location":"North Jacquelynbury"}},{"attributes":{"name":"Beatrice Hintz","age":54,"location":"New Hermina"}},{"attributes":{"name":"Mr. Jake Batz","age":74,"location":"Edmondbury"}},{"attributes":{"name":"Tommie Wuckert","age":37,"location":"Perth Amboy"}},{"attributes":{"name":"Marilyn Kuhn PhD","age":45,"location":"New Trinitystead"}},{"attributes":{"name":"Buford Cartwright","age":19,"location":"Frisco"}},{"attributes":{"name":"Miss Edmond Friesen","age":26,"location":"Elizabeth"}},{"attributes":{"name":"Felicia Emmerich","age":34,"location":"Fort Zaria"}},{"attributes":{"name":"Miss Wanda Adams","age":30,"location":"Topeka"}},{"attributes":{"name":"Ciara Hoeger","age":70,"location":"Binghamton"}},{"attributes":{"name":"Arden Boyer Sr.","age":44,"location":"Rolfsonside"}},{"attributes":{"name":"Abraham Lakin-Corwin","age":18,"location":"South Eduardo"}},{"attributes":{"name":"Golda Stehr","age":51,"location":"Jacksonville"}},{"attributes":{"name":"Gabriel Hudson","age":75,"location":"Port Brookshaven"}},{"attributes":{"name":"Ivan Bednar","age":46,"location":"Dayton"}},{"attributes":{"name":"Keshaun Breitenberg","age":50,"location":"Leesburg"}},{"attributes":{"name":"Stacey Langosh","age":68,"location":"Charlotteborough"}},{"attributes":{"name":"Sherry Marks Sr.","age":56,"location":"Port Jimmy"}},{"attributes":{"name":"Teresa Kemmer","age":37,"location":"Haltom City"}},{"attributes":{"name":"Leah Monahan","age":35,"location":"Maceyport"}},{"attributes":{"name":"Miss Alessia Wuckert","age":49,"location":"Port Mikaylatown"}},{"attributes":{"name":"Eula Tromp","age":73,"location":"North Kendallview"}},{"attributes":{"name":"Belinda Heathcote","age":56,"location":"Urielshire"}},{"attributes":{"name":"Mack Aufderhar","age":71,"location":"North Maryamport"}},{"attributes":{"name":"Craig Ritchie","age":40,"location":"Erickacester"}},{"attributes":{"name":"Athena Bartell","age":35,"location":"Bechtelarboro"}},{"attributes":{"name":"Charlie Volkman","age":44,"location":"Marjolainemouth"}},{"attributes":{"name":"Orland Gleichner","age":50,"location":"Gerhardfort"}},{"attributes":{"name":"Casimir Bartoletti","age":46,"location":"Lake Karelle"}},{"attributes":{"name":"Florence Stiedemann I","age":21,"location":"Sammamish"}},{"attributes":{"name":"Lloyd Boyer","age":24,"location":"Lee's Summit"}},{"attributes":{"name":"Bernhard Hilll","age":27,"location":"Lake Ezra"}},{"attributes":{"name":"Randolph Langosh","age":39,"location":"Port Kaceyberg"}},{"attributes":{"name":"Bart Morissette DVM","age":46,"location":"Boyertown"}},{"attributes":{"name":"Arlene Grimes","age":76,"location":"North Larry"}},{"attributes":{"name":"Katelynn Smith","age":47,"location":"South Brisaview"}},{"attributes":{"name":"Eduardo Greenfelder","age":55,"location":"New Jocelyn"}},{"attributes":{"name":"Guillermo Padberg","age":43,"location":"West Wilburn"}},{"attributes":{"name":"Domenico Thompson","age":34,"location":"Centreville"}},{"attributes":{"name":"Mrs. Freda Littel","age":65,"location":"Laurenceshire"}},{"attributes":{"name":"Stewart Rohan","age":28,"location":"Fort Alvah"}},{"attributes":{"name":"Lamar Bosco","age":27,"location":"Milwaukee"}},{"attributes":{"name":"Missouri Hackett","age":21,"location":"Port Estrella"}},{"attributes":{"name":"Kamren Ledner","age":30,"location":"Bobbystead"}},{"attributes":{"name":"Bryon Oberbrunner I","age":29,"location":"Norenestead"}},{"attributes":{"name":"Alexa Kuphal","age":22,"location":"Duncanstad"}},{"attributes":{"name":"Mrs. Jayce Parisian","age":70,"location":"North Roscoetown"}},{"attributes":{"name":"Ashlynn Von-Murphy","age":38,"location":"Naperville"}},{"attributes":{"name":"Rex Lubowitz","age":77,"location":"Monterey Park"}},{"attributes":{"name":"Mae Smith","age":45,"location":"Portage"}},{"attributes":{"name":"Olen Upton","age":47,"location":"Ankeny"}},{"attributes":{"name":"Calista Bauch","age":24,"location":"Busterborough"}},{"attributes":{"name":"Norma Stehr","age":18,"location":"New Guy"}},{"attributes":{"name":"Elbert Hirthe PhD","age":60,"location":"Paramount"}},{"attributes":{"name":"Jody Barrows I","age":42,"location":"Konopelskiberg"}},{"attributes":{"name":"Elva Graham","age":72,"location":"Heidiburgh"}},{"attributes":{"name":"Percy Rice DDS","age":45,"location":"West Santosberg"}},{"attributes":{"name":"Wendy Lockman","age":46,"location":"North Gerson"}},{"attributes":{"name":"Jerrold Sawayn I","age":39,"location":"West Amiyafurt"}},{"attributes":{"name":"Mandy Koss","age":65,"location":"Poway"}},{"attributes":{"name":"Estrella Kozey","age":73,"location":"Emmaton"}},{"attributes":{"name":"Mossie Wolf","age":19,"location":"Carrollton"}},{"attributes":{"name":"Kimberly Goldner","age":65,"location":"Brockton"}},{"attributes":{"name":"Sheri Ledner","age":42,"location":"Heathcoteboro"}},{"attributes":{"name":"Dwight Nicolas","age":60,"location":"Tillmanview"}},{"attributes":{"name":"Saul Yundt","age":68,"location":"South Troyborough"}},{"attributes":{"name":"Nicholas Zieme","age":71,"location":"West Glennie"}},{"attributes":{"name":"Rodney Gibson","age":51,"location":"West Daisy"}},{"attributes":{"name":"Ephraim Rau","age":62,"location":"Arjunfort"}},{"attributes":{"name":"Delores Ebert","age":63,"location":"Kent"}},{"attributes":{"name":"Samantha McDermott","age":19,"location":"Port Keshaun"}},{"attributes":{"name":"Lloyd Terry","age":39,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Mrs. Hudson Nienow","age":40,"location":"Zackeryberg"}},{"attributes":{"name":"Penny Wilkinson","age":71,"location":"South Jazmyn"}},{"attributes":{"name":"Miss Ericka Raynor","age":76,"location":"Ginahaven"}},{"attributes":{"name":"Scott Huel","age":33,"location":"Nitzscheton"}},{"attributes":{"name":"Jonathon Swift DVM","age":30,"location":"Marquardttown"}},{"attributes":{"name":"Luther Reynolds-Stokes","age":40,"location":"Fort Dollyhaven"}},{"attributes":{"name":"Amos Boyle DDS","age":71,"location":"West Jordan"}},{"attributes":{"name":"Adam Nienow","age":32,"location":"Beattyville"}},{"attributes":{"name":"Mrs. Donna Harris-Reinger","age":40,"location":"Donnellybury"}},{"attributes":{"name":"Myra Heaney","age":77,"location":"Marleyton"}},{"attributes":{"name":"Ernest Deckow IV","age":20,"location":"Lake Archworth"}},{"attributes":{"name":"Jaime Considine","age":21,"location":"South Paytonville"}},{"attributes":{"name":"Troy Von","age":79,"location":"Port Thomas"}},{"attributes":{"name":"Dr. Kenneth Schiller Jr.","age":63,"location":"Nicholausmouth"}},{"attributes":{"name":"Georgette Auer","age":71,"location":"Dewaynetown"}},{"attributes":{"name":"Elaine Mayert","age":41,"location":"Kiannaberg"}},{"attributes":{"name":"Dr. Ada Kulas","age":35,"location":"Astridland"}},{"attributes":{"name":"Stephen Boyle","age":18,"location":"North Lenorashire"}},{"attributes":{"name":"Berniece Buckridge","age":26,"location":"East Kennyton"}},{"attributes":{"name":"Mr. Terence Bosco","age":20,"location":"Arvada"}},{"attributes":{"name":"Michelle Huel-Keebler","age":47,"location":"Homenickworth"}},{"attributes":{"name":"Ryley Veum","age":36,"location":"Greenfelderfurt"}},{"attributes":{"name":"Beverly Hessel","age":77,"location":"New Cydneychester"}},{"attributes":{"name":"Barney Weissnat","age":44,"location":"East Lyda"}},{"attributes":{"name":"Olga Muller","age":51,"location":"Cassinland"}},{"attributes":{"name":"Rhiannon Koelpin","age":65,"location":"Westfield"}},{"attributes":{"name":"Lawrence Thiel","age":64,"location":"Fort Brookefurt"}},{"attributes":{"name":"Ms. Aileen Terry II","age":33,"location":"Rosahaven"}},{"attributes":{"name":"Jackson Dooley","age":75,"location":"Spokane Valley"}},{"attributes":{"name":"Ila Gottlieb","age":59,"location":"Elinoremouth"}},{"attributes":{"name":"Miss Clifford Von-Boehm","age":30,"location":"Abshireberg"}},{"attributes":{"name":"Abraham Tremblay","age":60,"location":"Valentinabury"}},{"attributes":{"name":"Harry Kertzmann","age":28,"location":"South Jamilstead"}},{"attributes":{"name":"Reed Schmitt","age":64,"location":"Metabury"}},{"attributes":{"name":"Rico Hermiston MD","age":26,"location":"Houston"}},{"attributes":{"name":"Cristina Hagenes","age":65,"location":"Gaylefurt"}},{"attributes":{"name":"Araceli Langosh","age":51,"location":"Schuylerville"}},{"attributes":{"name":"Johanna Sporer","age":27,"location":"Ritchiefort"}},{"attributes":{"name":"Mohamed Ziemann","age":54,"location":"Carolina"}},{"attributes":{"name":"Kaitlyn Schultz","age":35,"location":"West Barneyland"}},{"attributes":{"name":"Jerrold Padberg","age":33,"location":"D'angelomouth"}},{"attributes":{"name":"Johnathan Deckow","age":70,"location":"Christstad"}},{"attributes":{"name":"Kole Bogan","age":78,"location":"North Jade"}},{"attributes":{"name":"Mrs. Shemar Wunsch","age":70,"location":"Farrellberg"}},{"attributes":{"name":"Arlie Keebler-Baumbach","age":53,"location":"Lake Braxton"}},{"attributes":{"name":"Antoinette Shanahan","age":20,"location":"Buckeye"}},{"attributes":{"name":"Alonzo Franecki-Greenfelder","age":36,"location":"New Arturo"}},{"attributes":{"name":"Colby Fahey","age":70,"location":"Port Kaden"}},{"attributes":{"name":"Chris Von","age":76,"location":"Wileyborough"}},{"attributes":{"name":"Mr. Kamren Koss","age":19,"location":"East Amarashire"}},{"attributes":{"name":"Samir Price","age":57,"location":"Fort Rosalynstead"}},{"attributes":{"name":"Rachelle Cole","age":59,"location":"Harberhaven"}},{"attributes":{"name":"Mrs. Sue Hessel","age":28,"location":"Menifee"}},{"attributes":{"name":"Mrs. Nina Pagac","age":25,"location":"South Justynburgh"}},{"attributes":{"name":"Cordell King Jr.","age":80,"location":"New Erik"}},{"attributes":{"name":"Lena Trantow-Waelchi II","age":68,"location":"Dickensworth"}},{"attributes":{"name":"Providenci White III","age":54,"location":"Fort Lylafield"}},{"attributes":{"name":"Sallie Kessler","age":70,"location":"Haleymouth"}},{"attributes":{"name":"Mrs. Herminia Morissette","age":62,"location":"Port Opalport"}},{"attributes":{"name":"Vito Leffler-Murphy","age":72,"location":"Chloestead"}},{"attributes":{"name":"Mr. Gennaro Price","age":74,"location":"Fort Giuseppeville"}},{"attributes":{"name":"Esta Nicolas","age":59,"location":"Naperville"}},{"attributes":{"name":"Rick Casper","age":50,"location":"Juliaborough"}},{"attributes":{"name":"Theron Hand","age":63,"location":"Lavernemouth"}},{"attributes":{"name":"Milton Ondricka","age":67,"location":"North Anthonyfort"}},{"attributes":{"name":"Cheryl Huels","age":75,"location":"Honolulu"}},{"attributes":{"name":"Kimberly Carroll","age":78,"location":"Kristahaven"}},{"attributes":{"name":"Lola Schinner","age":76,"location":"Thurmanton"}},{"attributes":{"name":"Elena Renner MD","age":34,"location":"San Angelo"}},{"attributes":{"name":"Ruby Hauck","age":55,"location":"Pearl City"}},{"attributes":{"name":"Erwin Rau","age":42,"location":"Creminchester"}},{"attributes":{"name":"Taylor Zulauf","age":66,"location":"Casas Adobes"}},{"attributes":{"name":"Thora Bartoletti","age":61,"location":"South Gabrielleberg"}},{"attributes":{"name":"Wilfred Ziemann","age":21,"location":"West Baron"}},{"attributes":{"name":"Davonte Lubowitz","age":21,"location":"Concord"}},{"attributes":{"name":"Shana Stanton III","age":25,"location":"Oletaside"}},{"attributes":{"name":"Fern Brakus","age":76,"location":"New Francofurt"}},{"attributes":{"name":"Monte Graham","age":49,"location":"Hilllport"}},{"attributes":{"name":"Mario West DDS","age":33,"location":"Effertzstad"}},{"attributes":{"name":"Bruce Auer","age":68,"location":"Oakland"}},{"attributes":{"name":"Jaime Volkman","age":27,"location":"East Honolulu"}},{"attributes":{"name":"Iris Thompson I","age":44,"location":"Taunton"}},{"attributes":{"name":"Ollie Wolf PhD","age":26,"location":"Port Brice"}},{"attributes":{"name":"Miss Arne Kerluke","age":45,"location":"Guadalupebury"}},{"attributes":{"name":"Olga Dickinson","age":54,"location":"North Eloy"}},{"attributes":{"name":"Shakira Hintz","age":41,"location":"Krysteltown"}},{"attributes":{"name":"Israel Schuster","age":34,"location":"Robertsfort"}},{"attributes":{"name":"Marlon Spencer","age":27,"location":"West Idellburgh"}},{"attributes":{"name":"Mr. Sasha Skiles-Wuckert","age":32,"location":"Gresham"}},{"attributes":{"name":"Oral Kuhn","age":59,"location":"Ellsworthfield"}},{"attributes":{"name":"Johann Hane","age":46,"location":"Alishacester"}},{"attributes":{"name":"Jonathan Barrows","age":41,"location":"Mansfield"}},{"attributes":{"name":"Jan Wisoky","age":27,"location":"Lake Miltonstad"}},{"attributes":{"name":"Eve Lubowitz","age":80,"location":"West Elda"}},{"attributes":{"name":"Olive Bernier","age":22,"location":"Kaelahaven"}},{"attributes":{"name":"Jo Reilly","age":79,"location":"Beckertown"}},{"attributes":{"name":"Alexis McKenzie","age":36,"location":"Pfefferstead"}},{"attributes":{"name":"Miss Debra Batz","age":76,"location":"Hamillburgh"}},{"attributes":{"name":"Jensen Hilpert","age":60,"location":"Watsicaberg"}},{"attributes":{"name":"Alexis Reynolds MD","age":52,"location":"Omashire"}},{"attributes":{"name":"London Weimann","age":56,"location":"Jolieview"}},{"attributes":{"name":"Derrick Brakus","age":31,"location":"Cartwrightfurt"}},{"attributes":{"name":"Moses Schmeler DVM","age":34,"location":"East Karaberg"}},{"attributes":{"name":"Nora Haley","age":54,"location":"Fort Vivienneport"}},{"attributes":{"name":"Renee Daniel","age":58,"location":"South Ashtyn"}},{"attributes":{"name":"Sylvan Mosciski","age":51,"location":"Newton"}},{"attributes":{"name":"Angus Koelpin II","age":73,"location":"Des Moines"}},{"attributes":{"name":"Quinten McDermott III","age":53,"location":"Pouroschester"}},{"attributes":{"name":"Lisa Maggio","age":70,"location":"Xavierfort"}},{"attributes":{"name":"Caleb Dickinson","age":80,"location":"Mayerfurt"}},{"attributes":{"name":"Agnes Terry","age":77,"location":"Fort Catalinachester"}},{"attributes":{"name":"Abagail Hilll","age":73,"location":"Pollichworth"}},{"attributes":{"name":"James Swift IV","age":79,"location":"Marietta"}},{"attributes":{"name":"Celia Lang","age":73,"location":"Vinnieland"}},{"attributes":{"name":"Dr. Alyssa Beer","age":26,"location":"Ocala"}},{"attributes":{"name":"Lula Jacobs","age":73,"location":"Berkeley"}},{"attributes":{"name":"Bettye Buckridge-Larkin","age":21,"location":"Largo"}},{"attributes":{"name":"Jett Schimmel","age":25,"location":"Lake Marshallside"}},{"attributes":{"name":"Dr. Mario McKenzie","age":23,"location":"Oak Lawn"}},{"attributes":{"name":"Oscar Deckow","age":55,"location":"Aaronworth"}},{"attributes":{"name":"Frederick Hamill-Homenick","age":56,"location":"Dunwoody"}},{"attributes":{"name":"Terence Wiegand V","age":78,"location":"Savannah"}},{"attributes":{"name":"Minnie Fahey","age":49,"location":"Lauraberg"}},{"attributes":{"name":"Johnnie Walter","age":55,"location":"Horaceport"}},{"attributes":{"name":"Raymundo Kunde","age":37,"location":"Kleinboro"}},{"attributes":{"name":"Alison Rempel III","age":36,"location":"Coracester"}},{"attributes":{"name":"Vincent Green","age":22,"location":"Keanuhaven"}},{"attributes":{"name":"Frances Heidenreich","age":65,"location":"West Corbin"}},{"attributes":{"name":"Eulah Schuppe III","age":57,"location":"Kaseyville"}},{"attributes":{"name":"Juliana Ruecker","age":31,"location":"Rempelport"}},{"attributes":{"name":"Rozella Shanahan","age":74,"location":"Cutler Bay"}},{"attributes":{"name":"Anabelle Swaniawski","age":52,"location":"Sallyshire"}},{"attributes":{"name":"Tillman Prosacco PhD","age":58,"location":"Port Ernesto"}},{"attributes":{"name":"Scott Stark I","age":29,"location":"Janport"}},{"attributes":{"name":"Wilbur Beier","age":42,"location":"Micaelahaven"}},{"attributes":{"name":"Rita Gerhold DDS","age":23,"location":"Oklahoma City"}},{"attributes":{"name":"Genevieve Runte","age":68,"location":"Edmond"}},{"attributes":{"name":"Barrett Wiegand DDS","age":77,"location":"Ullrichcester"}},{"attributes":{"name":"Ruby Blick","age":80,"location":"Runteshire"}},{"attributes":{"name":"Jesus Doyle","age":78,"location":"Port Bradly"}},{"attributes":{"name":"Donnie Kris","age":33,"location":"Lehigh Acres"}},{"attributes":{"name":"Marilyne Kulas","age":69,"location":"Round Rock"}},{"attributes":{"name":"Shawna Flatley","age":37,"location":"Marvintown"}},{"attributes":{"name":"Joanny Lueilwitz MD","age":77,"location":"Schummcester"}},{"attributes":{"name":"Nicholaus Yundt","age":28,"location":"Gleichnerport"}},{"attributes":{"name":"Dr. Katie Bogisich","age":29,"location":"West Loganboro"}},{"attributes":{"name":"Isobel Walsh","age":34,"location":"Leannacester"}},{"attributes":{"name":"Ismael Kirlin","age":23,"location":"Port Robinfield"}},{"attributes":{"name":"Donnell Dietrich DDS","age":22,"location":"West Laverneboro"}},{"attributes":{"name":"Neil Hickle","age":71,"location":"Dundalk"}},{"attributes":{"name":"Jada Swift","age":79,"location":"New Carterstead"}},{"attributes":{"name":"Hazel Bauch","age":21,"location":"Kunzemouth"}},{"attributes":{"name":"Bryan Gerlach","age":22,"location":"West Pearltown"}},{"attributes":{"name":"Telly Heidenreich","age":19,"location":"Lazarofurt"}},{"attributes":{"name":"Clarence Marquardt","age":48,"location":"South Willyville"}},{"attributes":{"name":"Everett Mills-Haley","age":61,"location":"Meghanstead"}},{"attributes":{"name":"Desiree Blick","age":52,"location":"Boyerside"}},{"attributes":{"name":"Dianne Fahey","age":30,"location":"Fort Karaside"}},{"attributes":{"name":"Katie Wilderman","age":37,"location":"Gillianton"}},{"attributes":{"name":"Janet Hegmann","age":35,"location":"Macejkovicborough"}},{"attributes":{"name":"Maximilian Wintheiser","age":35,"location":"North Leonardhaven"}},{"attributes":{"name":"Jakayla Lowe","age":29,"location":"New Mackenzie"}},{"attributes":{"name":"Dr. Walter Runolfsdottir","age":58,"location":"Jerrellberg"}},{"attributes":{"name":"Brant Vandervort","age":55,"location":"East Sonyaville"}},{"attributes":{"name":"Rhea Huel","age":56,"location":"Perris"}},{"attributes":{"name":"Macy Dare","age":52,"location":"Port Mara"}},{"attributes":{"name":"Reginald Kling","age":57,"location":"Fort Kobechester"}},{"attributes":{"name":"Esta Luettgen","age":60,"location":"Burke"}},{"attributes":{"name":"Shelia Bartell","age":20,"location":"New Daphneefield"}},{"attributes":{"name":"Michelle Anderson","age":58,"location":"Emeryburgh"}},{"attributes":{"name":"Willie Rutherford","age":41,"location":"Kovacekborough"}},{"attributes":{"name":"Rhonda Becker","age":71,"location":"Hemet"}},{"attributes":{"name":"Priscilla Bergnaum","age":23,"location":"Port Mortonport"}},{"attributes":{"name":"Dr. Albina Cummerata","age":45,"location":"South Gate"}},{"attributes":{"name":"Otis Schaden","age":28,"location":"Ruthietown"}},{"attributes":{"name":"Ms. Lyle McCullough","age":72,"location":"Virginiaberg"}},{"attributes":{"name":"Elias Mitchell I","age":53,"location":"Euclid"}},{"attributes":{"name":"Ella Rippin","age":27,"location":"New Lance"}},{"attributes":{"name":"Mrs. Maurice Rodriguez","age":19,"location":"Javonchester"}},{"attributes":{"name":"Dennis Rogahn","age":18,"location":"McClureboro"}},{"attributes":{"name":"Harvey Huel","age":79,"location":"Emmyton"}},{"attributes":{"name":"Sheryl Wisoky V","age":75,"location":"New Ruthmouth"}},{"attributes":{"name":"Brown Altenwerth","age":47,"location":"Lemkeborough"}},{"attributes":{"name":"Brandi Franey","age":51,"location":"Palm Coast"}},{"attributes":{"name":"Roland Hansen-Wyman","age":78,"location":"South Marguerite"}},{"attributes":{"name":"Aracely Rice","age":58,"location":"Kristymouth"}},{"attributes":{"name":"Kristie Blick","age":61,"location":"West Maureen"}},{"attributes":{"name":"Jany Murazik-Goodwin","age":63,"location":"Burniceborough"}},{"attributes":{"name":"Mitchell Volkman","age":80,"location":"Schusterfort"}},{"attributes":{"name":"Jerald Moen","age":20,"location":"Port Zakaryport"}},{"attributes":{"name":"Bernard Marvin","age":64,"location":"North Fosterburgh"}},{"attributes":{"name":"Marlene Bogisich DVM","age":67,"location":"Fort Jay"}},{"attributes":{"name":"Alice Bartoletti","age":45,"location":"Beulahworth"}},{"attributes":{"name":"Marie Stark","age":48,"location":"New Rosariomouth"}},{"attributes":{"name":"Annette Kihn DDS","age":43,"location":"Mohrbury"}},{"attributes":{"name":"Danny Raynor","age":43,"location":"Fort Clarissa"}},{"attributes":{"name":"Jaime Crist","age":56,"location":"Maribelcester"}},{"attributes":{"name":"Phyllis Bernhard","age":37,"location":"Fort Doris"}},{"attributes":{"name":"Mr. Oma Hilll","age":73,"location":"Loweburgh"}},{"attributes":{"name":"Otho Pfannerstill","age":71,"location":"East Othaberg"}},{"attributes":{"name":"Sadie Bergstrom","age":42,"location":"Faheychester"}},{"attributes":{"name":"Jasper Kertzmann","age":50,"location":"Rolfsonburgh"}},{"attributes":{"name":"Garrett Kerluke","age":35,"location":"Lakeland"}},{"attributes":{"name":"Conrad Jast","age":48,"location":"Chicopee"}},{"attributes":{"name":"Aurelia Hirthe","age":79,"location":"Considineburgh"}},{"attributes":{"name":"Nicole Franecki","age":57,"location":"Bogisichport"}},{"attributes":{"name":"Sara Lang","age":72,"location":"Loyburgh"}},{"attributes":{"name":"Emmitt Hermiston","age":49,"location":"Stokesbury"}},{"attributes":{"name":"Tina Kemmer","age":47,"location":"Pompano Beach"}},{"attributes":{"name":"Yolanda Frami III","age":47,"location":"Port Alysastad"}},{"attributes":{"name":"Creola Wyman","age":33,"location":"Mooreworth"}},{"attributes":{"name":"Rodney Corkery","age":52,"location":"Port Harmon"}},{"attributes":{"name":"Murphy Hintz","age":79,"location":"Pricemouth"}},{"attributes":{"name":"Angel Rolfson","age":38,"location":"Fort Eunacester"}},{"attributes":{"name":"Jamie Ritchie","age":51,"location":"West Stephen"}},{"attributes":{"name":"Sadie Dicki","age":46,"location":"Langworthberg"}},{"attributes":{"name":"Garret Schaefer","age":57,"location":"North Serena"}},{"attributes":{"name":"Kaci Lemke","age":75,"location":"Alenehaven"}},{"attributes":{"name":"Tommie Reynolds","age":40,"location":"Amosmouth"}},{"attributes":{"name":"Eugene Fisher","age":22,"location":"Bodemouth"}},{"attributes":{"name":"Lola Keeling","age":53,"location":"Greenfelderland"}},{"attributes":{"name":"Debra Smith","age":71,"location":"Port Maritzafield"}},{"attributes":{"name":"Dina Bechtelar","age":64,"location":"New Sigmund"}},{"attributes":{"name":"Serena Romaguera","age":64,"location":"Peytonfurt"}},{"attributes":{"name":"Kurtis Monahan","age":76,"location":"Rosefort"}},{"attributes":{"name":"Ezra Batz","age":61,"location":"Rodriguezchester"}},{"attributes":{"name":"Alan Franey","age":40,"location":"East Marc"}},{"attributes":{"name":"Judy Cassin","age":39,"location":"Beattyfield"}},{"attributes":{"name":"Clare Hessel-Wolff","age":80,"location":"West Asa"}},{"attributes":{"name":"Lila Mitchell","age":62,"location":"Port Jevonfurt"}},{"attributes":{"name":"Donna Hammes","age":70,"location":"West Yvette"}},{"attributes":{"name":"Kristie Becker V","age":47,"location":"Lemkeland"}},{"attributes":{"name":"Johnnie Haley","age":69,"location":"Waelchifield"}},{"attributes":{"name":"Hadley Crooks","age":58,"location":"Orland Park"}},{"attributes":{"name":"Dr. Freeman Ankunding","age":22,"location":"Chesapeake"}},{"attributes":{"name":"Viola Hauck","age":50,"location":"East Linnea"}},{"attributes":{"name":"Mike Cartwright","age":63,"location":"Provo"}},{"attributes":{"name":"Chad Leannon","age":39,"location":"East Albina"}},{"attributes":{"name":"Verona Harris-Carter","age":59,"location":"Lynchburg"}},{"attributes":{"name":"Damon Heaney","age":29,"location":"East Chynaside"}},{"attributes":{"name":"Miss Jaden Cummings","age":24,"location":"Milwaukee"}},{"attributes":{"name":"Mrs. Joy Kunde","age":37,"location":"Tracy"}},{"attributes":{"name":"Nelle Klocko","age":79,"location":"Santa Fe"}},{"attributes":{"name":"Sadie Ward","age":66,"location":"South Destin"}},{"attributes":{"name":"Dr. Furman Homenick","age":18,"location":"North Janet"}},{"attributes":{"name":"Casey Renner","age":35,"location":"Fort Alayna"}},{"attributes":{"name":"Priscilla Kuhic","age":58,"location":"Lenoreborough"}},{"attributes":{"name":"Bennie Farrell-Heaney","age":67,"location":"Niagara Falls"}},{"attributes":{"name":"Devante Swaniawski","age":57,"location":"Lillianview"}},{"attributes":{"name":"Howell McClure","age":42,"location":"Garryport"}},{"attributes":{"name":"April Kshlerin","age":39,"location":"Fort Danyka"}},{"attributes":{"name":"Joel Reichert","age":63,"location":"West Carissafield"}},{"attributes":{"name":"Josefa Thiel","age":79,"location":"Elwynton"}},{"attributes":{"name":"Dr. Elmer Lakin V","age":56,"location":"North Ivahport"}},{"attributes":{"name":"Marsha Hansen","age":24,"location":"Kingport"}},{"attributes":{"name":"Teagan Waelchi DDS","age":79,"location":"Boca Raton"}},{"attributes":{"name":"Eileen Ziemann","age":25,"location":"Lake Shanonville"}},{"attributes":{"name":"Tamara Walker","age":20,"location":"Lake Francis"}},{"attributes":{"name":"Bobbie Wolf","age":70,"location":"West Marceloport"}},{"attributes":{"name":"Edmond Botsford","age":28,"location":"Lorain"}},{"attributes":{"name":"Oscar O'Connell-Dibbert","age":20,"location":"Port Angelatown"}},{"attributes":{"name":"Roberta Runolfsdottir","age":43,"location":"New Jacynthestead"}},{"attributes":{"name":"Dr. Andre Bayer DVM","age":37,"location":"Danteshire"}},{"attributes":{"name":"Marlene Kautzer","age":38,"location":"Kenner"}},{"attributes":{"name":"Mrs. Ismael Murphy I","age":52,"location":"Jurupa Valley"}},{"attributes":{"name":"Sonya Williamson","age":47,"location":"Horacioland"}},{"attributes":{"name":"Leo Cummings","age":19,"location":"Orlando"}},{"attributes":{"name":"Dominic Langosh","age":71,"location":"Fort Jackie"}},{"attributes":{"name":"Herman Hagenes-Dooley","age":33,"location":"Plano"}},{"attributes":{"name":"Kennith Hoppe","age":55,"location":"Newtonchester"}},{"attributes":{"name":"Charlotte West","age":30,"location":"Bayerhaven"}},{"attributes":{"name":"Emmy Murazik","age":23,"location":"Kossland"}},{"attributes":{"name":"Jacquelyn Robel Jr.","age":38,"location":"Greenchester"}},{"attributes":{"name":"Teagan Gutkowski","age":74,"location":"Arvelland"}},{"attributes":{"name":"Roman Stracke","age":37,"location":"Mantefort"}},{"attributes":{"name":"Dr. Derrick Windler DVM","age":37,"location":"West Cade"}},{"attributes":{"name":"Mr. Julius Mraz","age":42,"location":"Svenberg"}},{"attributes":{"name":"Percy Daugherty","age":61,"location":"Markston"}},{"attributes":{"name":"Britney Spinka","age":79,"location":"Christinaborough"}},{"attributes":{"name":"Guillermo Pfeffer","age":78,"location":"Jastfield"}},{"attributes":{"name":"Alysa Walker","age":47,"location":"New Hazelboro"}},{"attributes":{"name":"Sim Wuckert","age":18,"location":"West Breanachester"}},{"attributes":{"name":"Mr. Johnson Gutkowski","age":40,"location":"Turnerfield"}},{"attributes":{"name":"Mr. Clifton O'Keefe","age":37,"location":"Schoencester"}},{"attributes":{"name":"Raven Baumbach","age":79,"location":"Townebury"}},{"attributes":{"name":"Cielo Rippin","age":22,"location":"Nashua"}},{"attributes":{"name":"Kim Paucek","age":68,"location":"New Andrewworth"}},{"attributes":{"name":"Becky Runte","age":27,"location":"Kraigtown"}},{"attributes":{"name":"Arturo Flatley","age":60,"location":"Chula Vista"}},{"attributes":{"name":"Marsha Sawayn III","age":32,"location":"New Kaitlynbury"}},{"attributes":{"name":"Dominick Schulist","age":70,"location":"Rempelmouth"}},{"attributes":{"name":"Bertha Lesch","age":59,"location":"Kuhnberg"}},{"attributes":{"name":"Rodolfo Weissnat","age":26,"location":"Lake Lillie"}},{"attributes":{"name":"Joanne Reynolds","age":31,"location":"Erickfort"}},{"attributes":{"name":"Nia Torphy I","age":61,"location":"Bradenton"}},{"attributes":{"name":"Helen Bradtke","age":32,"location":"Mesquite"}},{"attributes":{"name":"Dr. Jasen Leuschke","age":24,"location":"Marcusbury"}},{"attributes":{"name":"Anne Hintz","age":71,"location":"Lake Gerard"}},{"attributes":{"name":"Delbert Witting","age":67,"location":"Lake Elroyfield"}},{"attributes":{"name":"Shawna Nicolas DVM","age":18,"location":"West Sidneytown"}},{"attributes":{"name":"Elizabeth Treutel","age":47,"location":"Mentor"}},{"attributes":{"name":"Dr. Rhett Dickinson","age":43,"location":"Lavernafurt"}},{"attributes":{"name":"Marcos Steuber","age":23,"location":"New Mattstead"}},{"attributes":{"name":"Shelley Ondricka-Johns","age":21,"location":"South Andychester"}},{"attributes":{"name":"Orville Barrows","age":36,"location":"Buckeye"}},{"attributes":{"name":"Darrin Ritchie","age":41,"location":"Port Vena"}},{"attributes":{"name":"Mr. Elyse Marquardt","age":31,"location":"North Easton"}},{"attributes":{"name":"Elisa Mante","age":31,"location":"West Giovanna"}},{"attributes":{"name":"Moses Blanda","age":74,"location":"Jamesonton"}},{"attributes":{"name":"Ms. Jarvis Watsica","age":78,"location":"Millerton"}},{"attributes":{"name":"Bryan Padberg","age":52,"location":"Steuberfurt"}},{"attributes":{"name":"Gene Braun","age":43,"location":"New Melissa"}},{"attributes":{"name":"Aryanna Jaskolski","age":74,"location":"Detroit"}},{"attributes":{"name":"Kenneth Jerde","age":56,"location":"North Jess"}},{"attributes":{"name":"Nancy Gottlieb","age":68,"location":"Kelleyborough"}},{"attributes":{"name":"Essie Dietrich","age":69,"location":"Krystelfield"}},{"attributes":{"name":"Dwight King II","age":76,"location":"Coral Gables"}},{"attributes":{"name":"Guy Fadel I","age":64,"location":"Reading"}},{"attributes":{"name":"Aubrey Hane","age":31,"location":"Magnuston"}},{"attributes":{"name":"Trenton Cronin","age":69,"location":"Fort Marleyborough"}},{"attributes":{"name":"Bernhard Homenick","age":78,"location":"South Joana"}},{"attributes":{"name":"Philip Walter","age":66,"location":"Margieberg"}},{"attributes":{"name":"Lester Stanton MD","age":56,"location":"Guyport"}},{"attributes":{"name":"Natalie Bosco V","age":72,"location":"Vonland"}},{"attributes":{"name":"Mr. Calista Watsica","age":46,"location":"Littelmouth"}},{"attributes":{"name":"Orville Feil","age":42,"location":"Sophiaburgh"}},{"attributes":{"name":"Miss Carley Wisoky","age":67,"location":"New Mohammad"}},{"attributes":{"name":"Xzavier Kunde-Mayer","age":26,"location":"Hickleside"}},{"attributes":{"name":"Jimmie Bednar","age":35,"location":"North Richland Hills"}},{"attributes":{"name":"Dale McKenzie","age":58,"location":"Beattyboro"}},{"attributes":{"name":"Marco Green","age":43,"location":"South Christboro"}},{"attributes":{"name":"Darren Rodriguez","age":72,"location":"Shawnstad"}},{"attributes":{"name":"Flora Johnson","age":79,"location":"Lake Thaddeus"}},{"attributes":{"name":"Jamir O'Keefe","age":59,"location":"Fort Una"}},{"attributes":{"name":"Suzanne Dach-Schimmel","age":77,"location":"Port Hassie"}},{"attributes":{"name":"Waylon Powlowski","age":51,"location":"Sauermouth"}},{"attributes":{"name":"Lionel Jakubowski","age":60,"location":"West Darianachester"}},{"attributes":{"name":"Dashawn Hilpert II","age":44,"location":"Highland"}},{"attributes":{"name":"Name McCullough","age":50,"location":"Wardstead"}},{"attributes":{"name":"Donald Prosacco","age":32,"location":"West Lincoln"}},{"attributes":{"name":"Kara Gorczany","age":49,"location":"South Giovaniville"}},{"attributes":{"name":"Donnie Schmidt","age":57,"location":"Cronaside"}},{"attributes":{"name":"Grover Daniel","age":18,"location":"East Vanessa"}},{"attributes":{"name":"Dr. Lennie Klein","age":27,"location":"North Adrianborough"}},{"attributes":{"name":"Suzanne Brown","age":69,"location":"East Jordyn"}},{"attributes":{"name":"Eula Roob","age":37,"location":"Taylorsville"}},{"attributes":{"name":"Delores Schmeler-Prosacco","age":33,"location":"Tillmanberg"}},{"attributes":{"name":"Delfina Tillman","age":36,"location":"New Jayde"}},{"attributes":{"name":"Travis Murazik","age":29,"location":"Osbaldoton"}},{"attributes":{"name":"Harvey Sawayn","age":29,"location":"North Onaboro"}},{"attributes":{"name":"Dana McCullough","age":44,"location":"Lake Theodora"}},{"attributes":{"name":"Damon Kozey","age":66,"location":"Port Leonfort"}},{"attributes":{"name":"Christy Olson V","age":58,"location":"Esperanzastad"}},{"attributes":{"name":"Jeffrey Emard","age":31,"location":"Lednerville"}},{"attributes":{"name":"Latoya Wilkinson","age":66,"location":"Adolphburgh"}},{"attributes":{"name":"Carmella Rippin","age":22,"location":"West Annamae"}},{"attributes":{"name":"Salvador Lindgren","age":68,"location":"Lawton"}},{"attributes":{"name":"Andy Walter","age":29,"location":"Ardenboro"}},{"attributes":{"name":"Ronnie Harber","age":25,"location":"Brooksview"}},{"attributes":{"name":"Ted Reichel","age":58,"location":"Lake Oceanehaven"}},{"attributes":{"name":"Irvin Bogan","age":44,"location":"Champaign"}},{"attributes":{"name":"Lois Ebert","age":74,"location":"North Rodricktown"}},{"attributes":{"name":"Aliza Christiansen","age":76,"location":"East Danikabury"}},{"attributes":{"name":"Jamal Wolff V","age":76,"location":"South Valley"}},{"attributes":{"name":"Dr. Quinten Hintz","age":43,"location":"Fresno"}},{"attributes":{"name":"Seth Schaefer PhD","age":25,"location":"East Madisonport"}},{"attributes":{"name":"Jessie Haley","age":23,"location":"Chicopee"}},{"attributes":{"name":"Theodore Abernathy","age":56,"location":"Larsonton"}},{"attributes":{"name":"Ms. Moses Schuppe","age":77,"location":"Kuhicberg"}},{"attributes":{"name":"Lon Hirthe","age":35,"location":"New Jerrodboro"}},{"attributes":{"name":"Alonzo Ruecker IV","age":59,"location":"Lockmanmouth"}},{"attributes":{"name":"Jerry Bogisich","age":51,"location":"Attleboro"}},{"attributes":{"name":"Sergio Barton","age":27,"location":"Wuckertshire"}},{"attributes":{"name":"Ian Larson-Veum","age":31,"location":"Glenview"}},{"attributes":{"name":"Cary Hermann","age":49,"location":"Caylacester"}},{"attributes":{"name":"Michele Ebert","age":36,"location":"East Ignatius"}},{"attributes":{"name":"Jaiden Hodkiewicz","age":44,"location":"Wymanmouth"}},{"attributes":{"name":"Diana Moore","age":52,"location":"North Johnnyside"}},{"attributes":{"name":"Brandy Predovic","age":75,"location":"Arnofurt"}},{"attributes":{"name":"Alvin Bartoletti","age":34,"location":"South Janessa"}},{"attributes":{"name":"Loren Kertzmann","age":45,"location":"West Tyrellstead"}},{"attributes":{"name":"Eugene Flatley DVM","age":30,"location":"West Janet"}},{"attributes":{"name":"Casey Vandervort-Mayert","age":72,"location":"New Garnet"}},{"attributes":{"name":"Carmen Reichert DDS","age":28,"location":"Westberg"}},{"attributes":{"name":"Bernadine Friesen","age":38,"location":"South Kelton"}},{"attributes":{"name":"Elda Mraz","age":76,"location":"Port Leanne"}},{"attributes":{"name":"Cullen O'Conner","age":23,"location":"East Afton"}},{"attributes":{"name":"Sheri Lowe DVM","age":78,"location":"Konopelskichester"}},{"attributes":{"name":"Isaac Jast","age":65,"location":"South Tyreeboro"}},{"attributes":{"name":"Shannon Pollich-Shanahan","age":47,"location":"Jonashaven"}},{"attributes":{"name":"Taurean Pagac","age":40,"location":"Larrystead"}},{"attributes":{"name":"Laverne Casper IV","age":24,"location":"Oberbrunnerworth"}},{"attributes":{"name":"Golda Osinski","age":20,"location":"West Martinefurt"}},{"attributes":{"name":"Javon Kiehn","age":63,"location":"Chadbury"}},{"attributes":{"name":"Warren Ward","age":80,"location":"Millerstad"}},{"attributes":{"name":"Santa Wilkinson","age":28,"location":"Mayertborough"}},{"attributes":{"name":"Missouri Wintheiser Sr.","age":59,"location":"New Audrey"}},{"attributes":{"name":"Clinton Windler MD","age":76,"location":"Leonelstead"}},{"attributes":{"name":"Dr. Ericka Larkin","age":24,"location":"Fort Vernonton"}},{"attributes":{"name":"Raul Bogan","age":72,"location":"Fort Novaton"}},{"attributes":{"name":"Miss Betsy Mohr","age":48,"location":"Port Christianaboro"}},{"attributes":{"name":"Sheila Reynolds","age":41,"location":"South Jordane"}},{"attributes":{"name":"Freeda Haley","age":56,"location":"North Madysonfort"}},{"attributes":{"name":"Carmen Lind","age":62,"location":"Vista"}},{"attributes":{"name":"Kevin Bednar","age":63,"location":"Torpton"}},{"attributes":{"name":"Salvatore Wisozk","age":44,"location":"Schneiderview"}},{"attributes":{"name":"Krista Stracke","age":38,"location":"Lake Ethyl"}},{"attributes":{"name":"Litzy Beier","age":41,"location":"Sarasota"}},{"attributes":{"name":"Irwin Conroy DVM","age":40,"location":"Rettafield"}},{"attributes":{"name":"Rodney Kirlin","age":60,"location":"Danielfield"}},{"attributes":{"name":"Nicole Herman MD","age":79,"location":"New Chris"}},{"attributes":{"name":"Thomas Block","age":72,"location":"Satterfieldland"}},{"attributes":{"name":"Adaline Leffler","age":74,"location":"Halvorsonfurt"}},{"attributes":{"name":"Marco Moen","age":40,"location":"Daughertyfield"}},{"attributes":{"name":"Waylon Runolfsson","age":48,"location":"Andreannemouth"}},{"attributes":{"name":"Toby Doyle","age":52,"location":"South Queeniestad"}},{"attributes":{"name":"Mr. Herbert Towne","age":24,"location":"Hermannberg"}},{"attributes":{"name":"Noe West","age":21,"location":"Oro Valley"}},{"attributes":{"name":"Bernita Senger","age":31,"location":"Erynshire"}},{"attributes":{"name":"Foster Lueilwitz","age":80,"location":"Jamaalland"}},{"attributes":{"name":"Nina Sauer","age":76,"location":"Lilyanside"}},{"attributes":{"name":"Dwight Pollich","age":66,"location":"Grahamland"}},{"attributes":{"name":"Ms. Luz Heaney","age":75,"location":"East Carter"}},{"attributes":{"name":"Aubrey Lueilwitz","age":29,"location":"Gillianland"}},{"attributes":{"name":"Mafalda Hudson","age":62,"location":"Logan"}},{"attributes":{"name":"Luther Dickens","age":74,"location":"Amarillo"}},{"attributes":{"name":"Marco Satterfield-Steuber","age":29,"location":"Janiyashire"}},{"attributes":{"name":"Lera Marvin","age":36,"location":"New Generalport"}},{"attributes":{"name":"Allan Marvin","age":50,"location":"Rowland Heights"}},{"attributes":{"name":"Tanya Lynch","age":23,"location":"Jovantown"}},{"attributes":{"name":"Amos Hyatt","age":46,"location":"Emmerichfort"}},{"attributes":{"name":"Alexander Daugherty","age":61,"location":"New Leonard"}},{"attributes":{"name":"Rosella Bosco","age":75,"location":"East Jorge"}},{"attributes":{"name":"Levi Pacocha","age":42,"location":"San Bruno"}},{"attributes":{"name":"Mateo Boyle DDS","age":40,"location":"Emmerichtown"}},{"attributes":{"name":"Libbie Jacobi","age":33,"location":"South Elda"}},{"attributes":{"name":"Esther Okuneva","age":67,"location":"Mount Pleasant"}},{"attributes":{"name":"Desiree West","age":70,"location":"Jaskolskiborough"}},{"attributes":{"name":"Jacques Orn","age":65,"location":"Port Dejuan"}},{"attributes":{"name":"Marianne Douglas","age":70,"location":"Avondale"}},{"attributes":{"name":"Van Gutmann","age":69,"location":"West Melbaworth"}},{"attributes":{"name":"Glenda Pfeffer-Rempel","age":24,"location":"East Ulicesville"}},{"attributes":{"name":"Bernice Reynolds V","age":77,"location":"Port Abagail"}},{"attributes":{"name":"Mrs. Evelyn Dietrich","age":60,"location":"Jarrettown"}},{"attributes":{"name":"Rebecca Heaney","age":59,"location":"Lake Shaylee"}},{"attributes":{"name":"Mr. Kaitlin Collier","age":69,"location":"East Houston"}},{"attributes":{"name":"Sally Borer","age":43,"location":"South Alenaboro"}},{"attributes":{"name":"Stephania Botsford","age":49,"location":"South Santaton"}},{"attributes":{"name":"Tania Fritsch II","age":29,"location":"Fort Worth"}},{"attributes":{"name":"Sven Murazik III","age":33,"location":"Gracielafield"}},{"attributes":{"name":"Sabrina Welch","age":45,"location":"Hirtheburgh"}},{"attributes":{"name":"Doug Thompson","age":23,"location":"Fort Monserrate"}},{"attributes":{"name":"Ms. Fletcher White","age":56,"location":"Jacobsland"}},{"attributes":{"name":"Mr. Marco Rowe","age":78,"location":"Lake Maximilian"}},{"attributes":{"name":"Mrs. Winifred Conroy","age":55,"location":"Lake Yazminburgh"}},{"attributes":{"name":"Caleigh Daniel","age":78,"location":"North Hortensechester"}},{"attributes":{"name":"Stella Ledner","age":50,"location":"Ziemannboro"}},{"attributes":{"name":"Paulette Johns-Abbott","age":29,"location":"Dannyfurt"}},{"attributes":{"name":"Felix Gutkowski","age":77,"location":"Graycecester"}},{"attributes":{"name":"Sara Stark V","age":76,"location":"Thadfurt"}},{"attributes":{"name":"Melanie Doyle","age":74,"location":"Kuhnside"}},{"attributes":{"name":"Mr. Warren Schulist","age":68,"location":"Arlington Heights"}},{"attributes":{"name":"Jamie Windler","age":21,"location":"Lake Idellmouth"}},{"attributes":{"name":"Mr. Dennis McClure","age":74,"location":"Mitchellburgh"}},{"attributes":{"name":"Linda Paucek","age":37,"location":"Feeneyhaven"}},{"attributes":{"name":"Arianna Sipes","age":50,"location":"Spokane Valley"}},{"attributes":{"name":"Ms. Elsa Jenkins","age":39,"location":"Wisokyberg"}},{"attributes":{"name":"Agnes Cruickshank","age":67,"location":"Cambridge"}},{"attributes":{"name":"Miss Roberta Ritchie","age":19,"location":"Citrus Heights"}},{"attributes":{"name":"Rylan Williamson","age":39,"location":"West Malvinastead"}},{"attributes":{"name":"Devin Halvorson","age":79,"location":"Casas Adobes"}},{"attributes":{"name":"Ramiro O'Connell","age":34,"location":"Coleview"}},{"attributes":{"name":"Eldridge Windler","age":37,"location":"Aidafort"}},{"attributes":{"name":"Annabell Reynolds","age":53,"location":"Sanfordborough"}},{"attributes":{"name":"Guadalupe Bergnaum","age":27,"location":"Newport Beach"}},{"attributes":{"name":"Asa Baumbach","age":29,"location":"Port Bernita"}},{"attributes":{"name":"Raquel Connelly III","age":69,"location":"Moencester"}},{"attributes":{"name":"Lillian Gleichner","age":36,"location":"Johnsonfurt"}},{"attributes":{"name":"Beau Considine","age":80,"location":"Columbusstad"}},{"attributes":{"name":"Mrs. Willis Brakus","age":48,"location":"Pollichchester"}},{"attributes":{"name":"Santina Harber","age":69,"location":"Kovacekhaven"}},{"attributes":{"name":"Tianna Franey","age":73,"location":"West Abdiel"}},{"attributes":{"name":"Cindy Jones","age":67,"location":"Lake Keeleyport"}},{"attributes":{"name":"Dr. Oswald Feeney-Schmidt","age":65,"location":"Cerritos"}},{"attributes":{"name":"Loyal Wuckert","age":52,"location":"Fort Garlandland"}},{"attributes":{"name":"Miss Emmanuel Herman","age":47,"location":"Youngstown"}},{"attributes":{"name":"Nicole Pagac","age":59,"location":"Kshlerinmouth"}},{"attributes":{"name":"Leon Cole DDS","age":41,"location":"West Augustusmouth"}},{"attributes":{"name":"Arlene Bradtke","age":52,"location":"Ponce"}},{"attributes":{"name":"Marc Effertz","age":29,"location":"North Lauderdale"}},{"attributes":{"name":"Maureen Frami","age":20,"location":"New Karl"}},{"attributes":{"name":"Nora Stoltenberg","age":68,"location":"East Lavonne"}},{"attributes":{"name":"Amanda Stehr","age":55,"location":"East Ellie"}},{"attributes":{"name":"Zora Tremblay","age":55,"location":"Joanafurt"}},{"attributes":{"name":"Miss Beth Wunsch","age":21,"location":"Summerville"}},{"attributes":{"name":"Chester Raynor","age":22,"location":"Catalinaview"}},{"attributes":{"name":"Janie Littel","age":62,"location":"East Wallaceberg"}},{"attributes":{"name":"Leopoldo Hane","age":57,"location":"East Evacester"}},{"attributes":{"name":"Davin Keeling","age":20,"location":"West Elmore"}},{"attributes":{"name":"Brett Bogisich","age":65,"location":"North Zulachester"}},{"attributes":{"name":"Ms. Halle Hirthe","age":23,"location":"Prudenceborough"}},{"attributes":{"name":"Leonardo Hudson","age":22,"location":"Missoula"}},{"attributes":{"name":"Fredy Bergnaum","age":37,"location":"Bergefort"}},{"attributes":{"name":"Stephen Langosh","age":39,"location":"North Immanuel"}},{"attributes":{"name":"Bette Lakin-Kuhic DVM","age":46,"location":"Emmerichchester"}},{"attributes":{"name":"Reina Dickinson","age":24,"location":"Millertown"}},{"attributes":{"name":"Maria Hilll","age":23,"location":"Budstad"}},{"attributes":{"name":"Armando Brakus","age":74,"location":"DuBuqueberg"}},{"attributes":{"name":"Jesse Ritchie","age":73,"location":"Keyshawnton"}},{"attributes":{"name":"Marco Boyle","age":67,"location":"Albuquerque"}},{"attributes":{"name":"Carlton Koch","age":74,"location":"Juliannemouth"}},{"attributes":{"name":"Ms. Libby Parker","age":62,"location":"Port Waldo"}},{"attributes":{"name":"Mrs. Genevieve Dickens II","age":77,"location":"Bartonland"}},{"attributes":{"name":"Ida Huels","age":23,"location":"Port Tillmanview"}},{"attributes":{"name":"Alek Windler","age":72,"location":"Mansfield"}},{"attributes":{"name":"Alessandra O'Connell MD","age":76,"location":"Carson"}},{"attributes":{"name":"Armani Jacobs","age":64,"location":"Port Mckenzietown"}},{"attributes":{"name":"Brett Hermann IV","age":70,"location":"Port Savanahboro"}},{"attributes":{"name":"Mr. Ariel Koepp","age":74,"location":"Homenickfield"}},{"attributes":{"name":"Lou Goodwin PhD","age":48,"location":"Ullrichworth"}},{"attributes":{"name":"Flo Glover III","age":62,"location":"Waelchiburgh"}},{"attributes":{"name":"Molly Gorczany-Mann","age":40,"location":"Jayneshire"}},{"attributes":{"name":"Valentin Bergnaum","age":55,"location":"West Marciabury"}},{"attributes":{"name":"Lydia Ankunding","age":79,"location":"East Catalinaside"}},{"attributes":{"name":"Lyle Waters","age":34,"location":"West Jordyn"}},{"attributes":{"name":"Bill Douglas","age":78,"location":"East Blazestad"}},{"attributes":{"name":"Marcella Braun","age":23,"location":"West Callie"}},{"attributes":{"name":"Adrienne Kirlin","age":36,"location":"Delbertbury"}},{"attributes":{"name":"Logan Emmerich","age":26,"location":"East Reeseport"}},{"attributes":{"name":"Steve Dooley","age":74,"location":"Brookhaven"}},{"attributes":{"name":"Sabrina Beer","age":20,"location":"New Haven"}},{"attributes":{"name":"Gerard Grant-Larkin","age":33,"location":"Fort Marquisbury"}},{"attributes":{"name":"Dr. Ronaldo Schaefer","age":76,"location":"East Sheldon"}},{"attributes":{"name":"Darwin Simonis","age":59,"location":"Cartwrightboro"}},{"attributes":{"name":"Mr. Tom Kuhn","age":31,"location":"West Dariuscester"}},{"attributes":{"name":"Wayne Gusikowski","age":48,"location":"Gloverside"}},{"attributes":{"name":"Shawna Schoen","age":24,"location":"Revastead"}},{"attributes":{"name":"Mr. Merle Heathcote","age":34,"location":"East Mckenna"}},{"attributes":{"name":"Anahi Roberts","age":77,"location":"Douglasstad"}},{"attributes":{"name":"Kurt Leannon IV","age":28,"location":"Odessa"}},{"attributes":{"name":"Marcos Frami IV","age":50,"location":"Leebury"}},{"attributes":{"name":"Beulah Christiansen","age":30,"location":"Gerryshire"}},{"attributes":{"name":"Mattie Green I","age":72,"location":"Russellfurt"}},{"attributes":{"name":"Marguerite Medhurst","age":40,"location":"North Lori"}},{"attributes":{"name":"Dr. Lisette Batz","age":74,"location":"Shaynaside"}},{"attributes":{"name":"Wallace Kunze-Hyatt","age":32,"location":"Lake Anitatown"}},{"attributes":{"name":"Angelita Robel","age":46,"location":"Clintonton"}},{"attributes":{"name":"Mrs. Camille Heathcote","age":49,"location":"Zulaufworth"}},{"attributes":{"name":"Lena Stroman","age":38,"location":"Destineyworth"}},{"attributes":{"name":"Malika Auer","age":52,"location":"New Ryleigh"}},{"attributes":{"name":"Juan Wyman-Crooks","age":51,"location":"Niagara Falls"}},{"attributes":{"name":"Francesca Hodkiewicz","age":53,"location":"Bayamon"}},{"attributes":{"name":"Abagail Oberbrunner","age":58,"location":"South Allan"}},{"attributes":{"name":"Fae Purdy","age":27,"location":"Amaliaport"}},{"attributes":{"name":"Malcolm Monahan","age":48,"location":"Millschester"}},{"attributes":{"name":"April Corkery","age":34,"location":"East Heavenland"}},{"attributes":{"name":"Ward Franecki","age":74,"location":"Fort Mattborough"}},{"attributes":{"name":"Raquel Boyer","age":30,"location":"Blandaworth"}},{"attributes":{"name":"Stewart Dach","age":38,"location":"East Dorcasport"}},{"attributes":{"name":"Adelia Stehr","age":19,"location":"Okunevaport"}},{"attributes":{"name":"Maymie Quitzon","age":75,"location":"West Alvenacester"}},{"attributes":{"name":"Rowena O'Reilly","age":32,"location":"Fort Darron"}},{"attributes":{"name":"Dalton Monahan-Parker","age":42,"location":"Jaymehaven"}},{"attributes":{"name":"Jayme Zulauf","age":45,"location":"Demetriustown"}},{"attributes":{"name":"Kraig Stiedemann","age":49,"location":"North Chauncey"}},{"attributes":{"name":"Dr. Dwight Okuneva","age":75,"location":"North Walker"}},{"attributes":{"name":"Lorraine Keeling Jr.","age":19,"location":"Lake Robertafort"}},{"attributes":{"name":"Charlene Zieme","age":42,"location":"Fritzside"}},{"attributes":{"name":"Augustus Weissnat","age":34,"location":"East Jacklynhaven"}},{"attributes":{"name":"Sheryl Weimann IV","age":71,"location":"East Charitytown"}},{"attributes":{"name":"Jeremy Haley","age":67,"location":"South Xavier"}},{"attributes":{"name":"Hailee Raynor-Hirthe","age":49,"location":"Hammeshaven"}},{"attributes":{"name":"Irvin Effertz PhD","age":33,"location":"Larkinhaven"}},{"attributes":{"name":"Clyde Davis","age":53,"location":"West Romaine"}},{"attributes":{"name":"Marian Luettgen","age":75,"location":"Dameonworth"}},{"attributes":{"name":"Evan Kuhic","age":50,"location":"Lake Fiona"}},{"attributes":{"name":"Lynda Crist","age":41,"location":"Abbotthaven"}},{"attributes":{"name":"Emmett Schumm","age":18,"location":"DeKalb"}},{"attributes":{"name":"Darron Carter","age":24,"location":"East Godfrey"}},{"attributes":{"name":"Arlene Rogahn","age":34,"location":"Lake Johnpaulcester"}},{"attributes":{"name":"Jeffrey Leffler","age":74,"location":"O'Connellside"}},{"attributes":{"name":"Orin Jenkins","age":55,"location":"Gordonfield"}},{"attributes":{"name":"Shawn Hickle","age":39,"location":"Rosemarieborough"}},{"attributes":{"name":"Geo Welch","age":79,"location":"Lake Jaydonbury"}},{"attributes":{"name":"Murray Braun","age":71,"location":"Fort Jaida"}},{"attributes":{"name":"Santiago Jerde I","age":57,"location":"The Woodlands"}},{"attributes":{"name":"Stephanie Casper-Legros","age":35,"location":"Rochester Hills"}},{"attributes":{"name":"Mariana Konopelski","age":44,"location":"Miami Gardens"}},{"attributes":{"name":"Elisa Harber","age":71,"location":"Rowland Heights"}},{"attributes":{"name":"Miss Sarah Weber-Swift","age":36,"location":"MacGyverhaven"}},{"attributes":{"name":"Kelvin Schultz","age":48,"location":"North Auroreshire"}},{"attributes":{"name":"Ramon Donnelly","age":58,"location":"South Gate"}},{"attributes":{"name":"Ira Walter","age":76,"location":"Lizziehaven"}},{"attributes":{"name":"Keely Kshlerin","age":46,"location":"East Yeseniaboro"}},{"attributes":{"name":"Ms. Janis Braun","age":37,"location":"Fort Sherman"}},{"attributes":{"name":"Morris Hettinger","age":74,"location":"South Americoborough"}},{"attributes":{"name":"Blanche Goyette","age":32,"location":"Hilpertland"}},{"attributes":{"name":"Dr. Tomas Glover MD","age":31,"location":"Port Roman"}},{"attributes":{"name":"Agnes Wuckert","age":78,"location":"Lake Novaland"}},{"attributes":{"name":"Dr. Leroy Langworth II","age":68,"location":"Stokesmouth"}},{"attributes":{"name":"Yvette Lakin","age":65,"location":"Port Kittyworth"}},{"attributes":{"name":"Eunice Daniel","age":60,"location":"Carmichael"}},{"attributes":{"name":"Josiane Kozey","age":56,"location":"Dickiport"}},{"attributes":{"name":"Jaron Dickinson","age":63,"location":"Brookline"}},{"attributes":{"name":"Olivia Padberg","age":50,"location":"New Clarastead"}},{"attributes":{"name":"Bruce Franey","age":75,"location":"Port Alena"}},{"attributes":{"name":"Norma Dare","age":23,"location":"West Madyson"}},{"attributes":{"name":"Casey Turner V","age":71,"location":"Corwinside"}},{"attributes":{"name":"Sam Stroman","age":50,"location":"DeSoto"}},{"attributes":{"name":"Valerie Hermiston","age":49,"location":"Lake Lucioburgh"}},{"attributes":{"name":"Tyrell Weimann","age":69,"location":"East Herminiafield"}},{"attributes":{"name":"Miss Clara Jenkins DDS","age":55,"location":"South Gia"}},{"attributes":{"name":"Aryanna Hoppe Jr.","age":23,"location":"Cincinnati"}},{"attributes":{"name":"Dr. Laurie Herzog","age":40,"location":"New Santinoport"}},{"attributes":{"name":"Heather Kunze","age":35,"location":"Westchester"}},{"attributes":{"name":"Ms. Patricia Friesen","age":65,"location":"North Dessie"}},{"attributes":{"name":"Jon Will","age":36,"location":"Buffalo"}},{"attributes":{"name":"Dr. Jody Windler","age":33,"location":"Marlonborough"}},{"attributes":{"name":"Claire Quigley Sr.","age":70,"location":"Lake Mandy"}},{"attributes":{"name":"Lucille Smitham","age":46,"location":"Friedrichchester"}},{"attributes":{"name":"Eric VonRueden DDS","age":34,"location":"Corbinview"}},{"attributes":{"name":"Retta DuBuque","age":45,"location":"Fritschchester"}},{"attributes":{"name":"Mrs. Nathan Zieme","age":67,"location":"Creminville"}},{"attributes":{"name":"Dr. Preston Howell-White V","age":72,"location":"Ezekielfield"}},{"attributes":{"name":"Leonel Bahringer","age":73,"location":"Monterey Park"}},{"attributes":{"name":"Emma Crona","age":25,"location":"Moenburgh"}},{"attributes":{"name":"Dr. Tiana Wintheiser","age":79,"location":"Kubfort"}},{"attributes":{"name":"Jalyn Orn","age":43,"location":"Durganfield"}},{"attributes":{"name":"Edmund Miller Jr.","age":32,"location":"Krajcikberg"}},{"attributes":{"name":"Rosie Stark","age":56,"location":"Flatleyfurt"}},{"attributes":{"name":"Christina Ruecker","age":30,"location":"Brekkemouth"}},{"attributes":{"name":"Kole Bartoletti DDS","age":44,"location":"Adonisboro"}},{"attributes":{"name":"Leanna Wolff","age":65,"location":"Beerborough"}},{"attributes":{"name":"Vernon Macejkovic","age":42,"location":"New Leannton"}},{"attributes":{"name":"Marion Heidenreich","age":40,"location":"Port Ladarius"}},{"attributes":{"name":"Cecelia Hettinger I","age":70,"location":"Johnniechester"}},{"attributes":{"name":"Bethany Price","age":27,"location":"Olsonstad"}},{"attributes":{"name":"May Nikolaus I","age":35,"location":"Cassinview"}},{"attributes":{"name":"Megan Hettinger","age":80,"location":"Port Janisport"}},{"attributes":{"name":"Ashley Medhurst DVM","age":42,"location":"Kingborough"}},{"attributes":{"name":"Keith Padberg","age":68,"location":"Midland"}},{"attributes":{"name":"Ms. Elias Larkin","age":59,"location":"West Adellacester"}},{"attributes":{"name":"Anais Lebsack","age":63,"location":"Shaniyatown"}},{"attributes":{"name":"Rosemarie Koch","age":29,"location":"New Marietta"}},{"attributes":{"name":"Marisa Barrows","age":38,"location":"Chicago"}},{"attributes":{"name":"Dr. Freda Ullrich","age":67,"location":"North Aricburgh"}},{"attributes":{"name":"Wiley Lind","age":40,"location":"East Delphineside"}},{"attributes":{"name":"Stacey Shields","age":36,"location":"Shanahanport"}},{"attributes":{"name":"Ms. Katrina Goldner","age":57,"location":"Manteton"}},{"attributes":{"name":"Garrison Becker","age":78,"location":"San Juan"}},{"attributes":{"name":"Makayla Boehm","age":77,"location":"Cartwrighttown"}},{"attributes":{"name":"Jaime Berge","age":40,"location":"Fort Avisview"}},{"attributes":{"name":"Sadie Yost","age":42,"location":"Bethlehem"}},{"attributes":{"name":"Eldridge Cummerata","age":78,"location":"Delaneyshire"}},{"attributes":{"name":"Harold Romaguera","age":53,"location":"Laredo"}},{"attributes":{"name":"Eric Hackett","age":41,"location":"New Oceane"}},{"attributes":{"name":"Elbert O'Reilly","age":36,"location":"Round Rock"}},{"attributes":{"name":"Heather Bergstrom","age":74,"location":"Brentwood"}},{"attributes":{"name":"Ms. Martha Brown","age":55,"location":"South Elisabethbury"}},{"attributes":{"name":"Freda Rolfson","age":72,"location":"Conradview"}},{"attributes":{"name":"Clinton Roberts","age":69,"location":"South Guido"}},{"attributes":{"name":"Isaias Collier","age":73,"location":"Goyetteburgh"}},{"attributes":{"name":"Augustus Treutel","age":76,"location":"D'Amorechester"}},{"attributes":{"name":"Candelario Ritchie","age":29,"location":"Wylie"}},{"attributes":{"name":"Tim Miller-Crona","age":78,"location":"Macejkovictown"}},{"attributes":{"name":"Maurice Dickens","age":30,"location":"Pawtucket"}},{"attributes":{"name":"Meghan Bode","age":35,"location":"Port Lincolnshire"}},{"attributes":{"name":"Dr. Loraine Upton","age":27,"location":"Wileyfurt"}},{"attributes":{"name":"Mr. Chester Reilly","age":66,"location":"Imaniborough"}},{"attributes":{"name":"Keith Stoltenberg","age":22,"location":"Dietrichtown"}},{"attributes":{"name":"Roosevelt Marquardt","age":27,"location":"New Yeseniaview"}},{"attributes":{"name":"Theresia Kessler","age":42,"location":"Fort Kyleville"}},{"attributes":{"name":"Toney Kuhic","age":71,"location":"Hammond"}},{"attributes":{"name":"Akeem Barrows","age":34,"location":"Lake Olgastead"}},{"attributes":{"name":"Debra Simonis","age":48,"location":"South Fredyhaven"}},{"attributes":{"name":"Sharon Stark-Mueller","age":62,"location":"East Helenborough"}},{"attributes":{"name":"Cameron Metz","age":71,"location":"New Wilsonfield"}},{"attributes":{"name":"Renee Harvey","age":80,"location":"Hoppeboro"}},{"attributes":{"name":"Mallory Denesik","age":39,"location":"Lake Jaiden"}},{"attributes":{"name":"Joey Hilpert","age":68,"location":"San Luis Obispo"}},{"attributes":{"name":"Justina Homenick-McDermott","age":57,"location":"New Gudrunport"}},{"attributes":{"name":"Margaret Romaguera","age":44,"location":"South Emilbury"}},{"attributes":{"name":"Cheyanne Herzog","age":25,"location":"Lunaview"}},{"attributes":{"name":"Wayne Reinger","age":47,"location":"East Hartford"}},{"attributes":{"name":"Jenny Feil","age":22,"location":"Yuma"}},{"attributes":{"name":"Russ Walter-Renner","age":39,"location":"Rockville"}},{"attributes":{"name":"Lenny Pagac","age":58,"location":"Neldaview"}},{"attributes":{"name":"Lela Walker","age":30,"location":"Port Elton"}},{"attributes":{"name":"Tyrone Hartmann","age":37,"location":"Maudland"}},{"attributes":{"name":"Anibal Hodkiewicz-Abernathy","age":77,"location":"South Caliville"}},{"attributes":{"name":"Leah Reichel","age":26,"location":"Zanderfurt"}},{"attributes":{"name":"Lyric Marks","age":63,"location":"Jakubowskiboro"}},{"attributes":{"name":"Jaden Johns","age":38,"location":"East Miltonshire"}},{"attributes":{"name":"Joann Olson-Lockman","age":21,"location":"South Melody"}},{"attributes":{"name":"Mamie Blanda","age":41,"location":"Ashtonworth"}},{"attributes":{"name":"Mrs. Mikel Lindgren","age":41,"location":"Ivacester"}},{"attributes":{"name":"Jenny Walker","age":22,"location":"Fort Carmella"}},{"attributes":{"name":"Mrs. Marguerite Ledner","age":50,"location":"Hermistonfurt"}},{"attributes":{"name":"Shirley Ernser","age":41,"location":"Encinitas"}},{"attributes":{"name":"Oswald Satterfield","age":37,"location":"Predovicstead"}},{"attributes":{"name":"Vera Predovic","age":18,"location":"Raynorland"}},{"attributes":{"name":"Mr. Lee Braun","age":41,"location":"Lake Bryana"}},{"attributes":{"name":"Hazel Jones","age":44,"location":"Tustin"}},{"attributes":{"name":"Dominic Williamson","age":41,"location":"Gilbert"}},{"attributes":{"name":"Mrs. Kellie Jast","age":23,"location":"South Joshuah"}},{"attributes":{"name":"Cecilia Leannon","age":77,"location":"South Kaylin"}},{"attributes":{"name":"Edith Wyman","age":47,"location":"Lueilwitzborough"}},{"attributes":{"name":"Jeanie Runolfsdottir","age":36,"location":"New Anaisville"}},{"attributes":{"name":"Irwin Schaefer I","age":51,"location":"East Ulises"}},{"attributes":{"name":"Ron Dickens","age":29,"location":"Weissnatbury"}},{"attributes":{"name":"Dawn Mitchell","age":22,"location":"Corwinborough"}},{"attributes":{"name":"Gertrude Homenick","age":22,"location":"Fort Worth"}},{"attributes":{"name":"Whitney Williamson","age":20,"location":"Roweton"}},{"attributes":{"name":"Alton Nikolaus DDS","age":22,"location":"Rennerland"}},{"attributes":{"name":"Fred Heathcote","age":67,"location":"Tremblaymouth"}},{"attributes":{"name":"Dr. Howell Runolfsson","age":52,"location":"Cleveland"}},{"attributes":{"name":"Eliza Baumbach","age":43,"location":"Gunnartown"}},{"attributes":{"name":"Johnathon Kassulke V","age":66,"location":"Port Pearlie"}},{"attributes":{"name":"Zoila Senger","age":52,"location":"Bowling Green"}},{"attributes":{"name":"Mr. Ewell Bosco","age":47,"location":"North Patiencetown"}},{"attributes":{"name":"Dr. Stephen Wisoky","age":67,"location":"New Helmer"}},{"attributes":{"name":"Mr. Damon Zboncak","age":79,"location":"Waipahu"}},{"attributes":{"name":"Candice Williamson","age":33,"location":"South Berniece"}},{"attributes":{"name":"Douglas Rippin-Rutherford","age":69,"location":"Raphaelleboro"}},{"attributes":{"name":"Mrs. Gregory Stoltenberg","age":44,"location":"New Reinaton"}},{"attributes":{"name":"Odell Jacobs DDS","age":36,"location":"Millcreek"}},{"attributes":{"name":"Kacie Quitzon","age":63,"location":"Schultzfield"}},{"attributes":{"name":"Terence Schiller","age":45,"location":"Port Jadenville"}},{"attributes":{"name":"Marty Waelchi","age":58,"location":"Purdyfurt"}},{"attributes":{"name":"Anika Zulauf I","age":18,"location":"Lake Zackeryworth"}},{"attributes":{"name":"Susana Marvin","age":42,"location":"Port Bradyview"}},{"attributes":{"name":"Edmond Pollich","age":60,"location":"Kipburgh"}},{"attributes":{"name":"Josefina Harvey DDS","age":70,"location":"Baton Rouge"}},{"attributes":{"name":"Ms. Tony Feil DDS","age":63,"location":"West Malinda"}},{"attributes":{"name":"Lillie Carter","age":56,"location":"Lake Heath"}},{"attributes":{"name":"Mckayla Daugherty","age":34,"location":"East Karli"}},{"attributes":{"name":"Hugh Muller I","age":47,"location":"Allentown"}},{"attributes":{"name":"Maxime Ebert","age":24,"location":"Lake Elias"}},{"attributes":{"name":"Olive Becker","age":66,"location":"New Enosberg"}},{"attributes":{"name":"Joel Daniel","age":53,"location":"Kreigerchester"}},{"attributes":{"name":"Brigitte Hickle","age":71,"location":"West Koreychester"}},{"attributes":{"name":"Arno Baumbach","age":75,"location":"Port Graciela"}},{"attributes":{"name":"Nellie Crist","age":79,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Karla Bernhard","age":64,"location":"South Cecilia"}},{"attributes":{"name":"Mrs. Taryn Funk IV","age":64,"location":"North Reyna"}},{"attributes":{"name":"Genevieve Kuhic","age":35,"location":"Edytheville"}},{"attributes":{"name":"Clarence Pollich","age":43,"location":"East Josietown"}},{"attributes":{"name":"Stephen Roberts","age":49,"location":"Lake Vernie"}},{"attributes":{"name":"Jason Yundt","age":22,"location":"Lake Benedict"}},{"attributes":{"name":"Dr. Mallie Gutkowski Sr.","age":54,"location":"Kochworth"}},{"attributes":{"name":"Brad Gusikowski","age":56,"location":"Bashirianburgh"}},{"attributes":{"name":"Ara Sporer-Mayert","age":57,"location":"North Margarita"}},{"attributes":{"name":"Fredrick Satterfield","age":76,"location":"Port Jackson"}},{"attributes":{"name":"Delbert Denesik","age":19,"location":"Fort Luraton"}},{"attributes":{"name":"Ariel Hickle","age":73,"location":"Grand Island"}},{"attributes":{"name":"Drew Swift","age":74,"location":"South Raegan"}},{"attributes":{"name":"Blanche Wiegand","age":34,"location":"Gastonia"}},{"attributes":{"name":"Kelley Russel","age":33,"location":"South Breanna"}},{"attributes":{"name":"Jovany Watsica","age":64,"location":"Monroe"}},{"attributes":{"name":"Mark Adams","age":79,"location":"Predovicville"}},{"attributes":{"name":"Ferne Hagenes","age":53,"location":"Thielberg"}},{"attributes":{"name":"Miss Myron Keebler","age":25,"location":"Hoppeberg"}},{"attributes":{"name":"Roberto Herman DVM","age":66,"location":"Donnellyton"}},{"attributes":{"name":"Broderick Jacobs","age":45,"location":"New Robertocester"}},{"attributes":{"name":"Miss Margarita Abshire","age":49,"location":"Jadynton"}},{"attributes":{"name":"Warren Hackett V","age":42,"location":"Dandreton"}},{"attributes":{"name":"Arvel Gulgowski","age":32,"location":"Port Molly"}},{"attributes":{"name":"Hubert Gusikowski","age":80,"location":"Runolfssontown"}},{"attributes":{"name":"Jaclyn Schultz","age":64,"location":"Kochboro"}},{"attributes":{"name":"Marianne Mosciski-Wisozk","age":36,"location":"South Theresia"}},{"attributes":{"name":"Celine Bradtke","age":69,"location":"South Ryleefort"}},{"attributes":{"name":"Mr. Jeremy Wyman-Schoen","age":68,"location":"Port Karli"}},{"attributes":{"name":"Kelly Bartoletti","age":33,"location":"Haagshire"}},{"attributes":{"name":"Reilly McKenzie II","age":28,"location":"Sawaynworth"}},{"attributes":{"name":"Jennifer Hahn","age":49,"location":"Hayward"}},{"attributes":{"name":"Sean Sawayn I","age":35,"location":"Lake Merle"}},{"attributes":{"name":"Douglas Lind","age":28,"location":"Fort Buford"}},{"attributes":{"name":"Dr. Nathen Carroll","age":39,"location":"Durganfort"}},{"attributes":{"name":"Darin Oberbrunner","age":80,"location":"Destanybury"}},{"attributes":{"name":"Margret Mraz","age":54,"location":"Fort Laurine"}},{"attributes":{"name":"Dr. Phil McLaughlin DVM","age":59,"location":"Casper"}},{"attributes":{"name":"Stewart Wuckert","age":40,"location":"Lake Madelyn"}},{"attributes":{"name":"Mr. Johnnie Morar","age":61,"location":"Marquesworth"}},{"attributes":{"name":"Jan Kohler","age":25,"location":"Lake Cassieboro"}},{"attributes":{"name":"Sharon Hintz-Bauch","age":75,"location":"Cliftonland"}},{"attributes":{"name":"Andrew Hagenes","age":61,"location":"Fort Parker"}},{"attributes":{"name":"Dr. Cayla Rath","age":46,"location":"Sarasota"}},{"attributes":{"name":"Nelson Wilderman","age":67,"location":"Vancouver"}},{"attributes":{"name":"Brando Windler","age":53,"location":"Camden"}},{"attributes":{"name":"Glenna Schowalter","age":27,"location":"Fort Moniquestead"}},{"attributes":{"name":"Dr. Brenda Cassin","age":44,"location":"Kissimmee"}},{"attributes":{"name":"Darren McCullough","age":78,"location":"Reginaldland"}},{"attributes":{"name":"Brandy Haag","age":28,"location":"East Gust"}},{"attributes":{"name":"Mrs. Estelle Torp","age":66,"location":"Streichhaven"}},{"attributes":{"name":"Steve Connelly","age":78,"location":"Vancouver"}},{"attributes":{"name":"Ernest Roob I","age":19,"location":"East Luramouth"}},{"attributes":{"name":"Simeon Cassin","age":33,"location":"Lake Peterberg"}},{"attributes":{"name":"Katarina Wolf","age":23,"location":"North Lora"}},{"attributes":{"name":"Ned Lindgren","age":68,"location":"West Conradborough"}},{"attributes":{"name":"Emmett Brown","age":35,"location":"Jerdefurt"}},{"attributes":{"name":"Geraldine Mitchell","age":66,"location":"Derrickburgh"}},{"attributes":{"name":"Nicholaus Morissette","age":48,"location":"Lebsackworth"}},{"attributes":{"name":"Seth Metz","age":80,"location":"Sierraside"}},{"attributes":{"name":"Mrs. Emil DuBuque","age":30,"location":"Farmington Hills"}},{"attributes":{"name":"Donald Russel-Fay","age":74,"location":"Coreneside"}},{"attributes":{"name":"Kailyn Fadel","age":79,"location":"Willastad"}},{"attributes":{"name":"George Rau","age":27,"location":"Johnniestad"}},{"attributes":{"name":"Loretta Klein","age":55,"location":"Phoenix"}},{"attributes":{"name":"Mrs. Fernando Schmeler","age":32,"location":"Port Van"}},{"attributes":{"name":"Maddison Gibson","age":56,"location":"Waldorf"}},{"attributes":{"name":"Nigel Lesch","age":72,"location":"Santa Clarita"}},{"attributes":{"name":"Bennie Schiller","age":31,"location":"Morgan Hill"}},{"attributes":{"name":"Meredith Harris","age":27,"location":"South Kalebland"}},{"attributes":{"name":"Daren Kuvalis","age":68,"location":"Arcadia"}},{"attributes":{"name":"Payton Denesik","age":40,"location":"Paradise"}},{"attributes":{"name":"Ana Steuber","age":50,"location":"Gennaroworth"}},{"attributes":{"name":"Juan McCullough","age":73,"location":"Azusa"}},{"attributes":{"name":"Dianne Heaney","age":18,"location":"North Rosalindaberg"}},{"attributes":{"name":"Virgil Frami","age":70,"location":"Kianstad"}},{"attributes":{"name":"Tanya Daniel","age":30,"location":"Terryton"}},{"attributes":{"name":"Shyann Lubowitz","age":32,"location":"Nashua"}},{"attributes":{"name":"Devin Lueilwitz","age":65,"location":"West Alden"}},{"attributes":{"name":"Leland Brakus","age":75,"location":"Mayaguez"}},{"attributes":{"name":"Pat Bradtke","age":23,"location":"Conway"}},{"attributes":{"name":"Amanda Pacocha","age":49,"location":"Port Angelica"}},{"attributes":{"name":"Dr. Garrison Krajcik","age":70,"location":"Lueilwitzmouth"}},{"attributes":{"name":"Michele Ferry","age":75,"location":"West Gabrielle"}},{"attributes":{"name":"Gabrielle Armstrong","age":71,"location":"New Rochelle"}},{"attributes":{"name":"Dr. Arlo Hansen-Moen DVM","age":57,"location":"Tyler"}},{"attributes":{"name":"Rogers Turner","age":24,"location":"Eldaland"}},{"attributes":{"name":"Deangelo Murray","age":65,"location":"Moencester"}},{"attributes":{"name":"Dana Schiller II","age":33,"location":"Racine"}},{"attributes":{"name":"Mrs. Ashlee Emmerich","age":33,"location":"Saigeview"}},{"attributes":{"name":"Zachery Schaefer IV","age":70,"location":"Rocklin"}},{"attributes":{"name":"Laurence Kihn IV","age":59,"location":"Fadelville"}},{"attributes":{"name":"Leland Waelchi DVM","age":29,"location":"East Loriland"}},{"attributes":{"name":"Inez Wiegand","age":61,"location":"Keeblerport"}},{"attributes":{"name":"Salvador Tillman","age":71,"location":"Helgaland"}},{"attributes":{"name":"Fannie Torphy","age":44,"location":"South Mustafaberg"}},{"attributes":{"name":"Stephanie Haley","age":25,"location":"Bettymouth"}},{"attributes":{"name":"Mary Koss","age":72,"location":"Irvine"}},{"attributes":{"name":"Freda Weimann","age":77,"location":"North Deionchester"}},{"attributes":{"name":"Mandy Schinner-Haag","age":24,"location":"East Mauricefurt"}},{"attributes":{"name":"Ella Wiza","age":51,"location":"Barnstable Town"}},{"attributes":{"name":"Levi Nader","age":26,"location":"North Ottilie"}},{"attributes":{"name":"Libbie Bednar","age":58,"location":"Brookeshire"}},{"attributes":{"name":"Caroline Tremblay","age":42,"location":"Fort Londonville"}},{"attributes":{"name":"Janie Bayer","age":50,"location":"Braunfurt"}},{"attributes":{"name":"Dallas Hills","age":66,"location":"Cleveland Heights"}},{"attributes":{"name":"Ms. Lisette Muller","age":70,"location":"Fort Immanuel"}},{"attributes":{"name":"Hallie Haag","age":20,"location":"Cristville"}},{"attributes":{"name":"Viola Rowe Sr.","age":27,"location":"East Laurine"}},{"attributes":{"name":"Ross Quitzon","age":30,"location":"Lake Sincereview"}},{"attributes":{"name":"Ms. Tyler Schulist","age":42,"location":"Olympia"}},{"attributes":{"name":"Otho Adams","age":58,"location":"Dwightborough"}},{"attributes":{"name":"Jeffery Gislason","age":75,"location":"Fort Ashtyn"}},{"attributes":{"name":"Dr. Sunny Rempel","age":71,"location":"Kassulkeworth"}},{"attributes":{"name":"Matt Langworth","age":45,"location":"Arlenefield"}},{"attributes":{"name":"Kyle Haag","age":75,"location":"South Dellaville"}},{"attributes":{"name":"Ora Schaefer","age":22,"location":"Elmoreworth"}},{"attributes":{"name":"Tami O'Reilly","age":21,"location":"Fort Cade"}},{"attributes":{"name":"Ottis Gorczany","age":60,"location":"Fort Trycia"}},{"attributes":{"name":"Bud Hackett","age":76,"location":"Lake Jeffereyton"}},{"attributes":{"name":"Pablo Renner","age":59,"location":"New Tyra"}},{"attributes":{"name":"Trinity Paucek","age":72,"location":"Fort Mathew"}},{"attributes":{"name":"Angel O'Connell","age":56,"location":"Port Rusty"}},{"attributes":{"name":"Shanelle Green","age":66,"location":"Lake Geraldboro"}},{"attributes":{"name":"Lewis O'Reilly","age":21,"location":"Wiegandland"}},{"attributes":{"name":"Ephraim McGlynn","age":62,"location":"Waltham"}},{"attributes":{"name":"Tad Hills","age":49,"location":"East Percival"}},{"attributes":{"name":"Kerry Kuvalis","age":74,"location":"Imanifort"}},{"attributes":{"name":"Miss Rolando Thompson","age":29,"location":"North Sherwood"}},{"attributes":{"name":"Santiago Kutch","age":21,"location":"Ebonyside"}},{"attributes":{"name":"Sherri Gulgowski III","age":63,"location":"East Coralie"}},{"attributes":{"name":"Benny Gerhold","age":65,"location":"Gusikowskiside"}},{"attributes":{"name":"Darrin Schinner","age":53,"location":"East Janeland"}},{"attributes":{"name":"Belinda Dietrich IV","age":39,"location":"North Kellihaven"}},{"attributes":{"name":"Willa Strosin","age":60,"location":"Tobystad"}},{"attributes":{"name":"Monique Collins","age":66,"location":"East Shermanside"}},{"attributes":{"name":"Lyla D'Amore","age":78,"location":"Pueblo"}},{"attributes":{"name":"Rosie West","age":72,"location":"Lake Marlon"}},{"attributes":{"name":"Johan Simonis","age":18,"location":"Gutmannburgh"}},{"attributes":{"name":"Linda Bogisich","age":74,"location":"Izabellastead"}},{"attributes":{"name":"Myrtle Block","age":73,"location":"Reginaldworth"}},{"attributes":{"name":"Randall Mertz","age":64,"location":"New Jakeborough"}},{"attributes":{"name":"Jermaine Kertzmann","age":25,"location":"Sylvesterfield"}},{"attributes":{"name":"Bertram Predovic","age":22,"location":"Wilkinsonchester"}},{"attributes":{"name":"Mrs. Jeff Howe-Watsica V","age":61,"location":"North Jamal"}},{"attributes":{"name":"Andrea Dooley","age":39,"location":"Columbusport"}},{"attributes":{"name":"Derek O'Reilly","age":65,"location":"Kulasworth"}},{"attributes":{"name":"Serenity Lesch","age":60,"location":"Port Garfield"}},{"attributes":{"name":"Abdul Swift","age":56,"location":"West Rosalee"}},{"attributes":{"name":"Tom Bartoletti","age":53,"location":"South Kolby"}},{"attributes":{"name":"Donald Haag","age":61,"location":"Lake Michele"}},{"attributes":{"name":"Pete Schmeler","age":51,"location":"North Selena"}},{"attributes":{"name":"Travon Anderson","age":27,"location":"San Mateo"}},{"attributes":{"name":"Dolores Schaefer","age":56,"location":"Marisolburgh"}},{"attributes":{"name":"Zelda Stark MD","age":49,"location":"North Alejandrin"}},{"attributes":{"name":"Dr. Iliana Labadie","age":29,"location":"Wisozkport"}},{"attributes":{"name":"Mrs. Rachael Kiehn","age":67,"location":"Jovannystad"}},{"attributes":{"name":"Miriam Quitzon III","age":76,"location":"Murazikfurt"}},{"attributes":{"name":"Sandra Daugherty","age":68,"location":"Lillianville"}},{"attributes":{"name":"Levi Maggio","age":77,"location":"Fort Brentworth"}},{"attributes":{"name":"Roslyn Langosh","age":23,"location":"Port Hannaport"}},{"attributes":{"name":"Nadine Schiller","age":70,"location":"Monicaworth"}},{"attributes":{"name":"Lucas Stehr","age":61,"location":"El Cajon"}},{"attributes":{"name":"Nathen Christiansen-Botsford II","age":36,"location":"Murrieta"}},{"attributes":{"name":"Jody Hayes","age":75,"location":"Sammytown"}},{"attributes":{"name":"Lyle Crooks","age":60,"location":"Lake Elda"}},{"attributes":{"name":"Dandre Hammes","age":37,"location":"Ashleeville"}},{"attributes":{"name":"Allan Gorczany","age":80,"location":"Fort Anthony"}},{"attributes":{"name":"Jazmyne Botsford","age":19,"location":"Fort Mervinview"}},{"attributes":{"name":"Aniyah Friesen","age":42,"location":"Devynburgh"}},{"attributes":{"name":"Tamia Miller","age":56,"location":"Malliefurt"}},{"attributes":{"name":"Davin Bradtke-Stiedemann","age":47,"location":"Asashire"}},{"attributes":{"name":"Earl Ebert-Ernser","age":79,"location":"Hollywood"}},{"attributes":{"name":"Mr. Kurt Homenick","age":19,"location":"Adamsbury"}},{"attributes":{"name":"Irene Mayer","age":75,"location":"South Freda"}},{"attributes":{"name":"Lorenza Rice","age":26,"location":"Brandyntown"}},{"attributes":{"name":"Elfrieda Raynor","age":52,"location":"Croninstad"}},{"attributes":{"name":"Marty Gerhold","age":70,"location":"Sandy Springs"}},{"attributes":{"name":"Anna Corwin","age":80,"location":"East Katherinemouth"}},{"attributes":{"name":"Merle Roob","age":43,"location":"Johns Creek"}},{"attributes":{"name":"Charlotte Toy","age":28,"location":"Ritchieport"}},{"attributes":{"name":"Mattie Jacobson","age":23,"location":"Littelworth"}},{"attributes":{"name":"Beatrice Boyer","age":61,"location":"Spring Valley"}},{"attributes":{"name":"Ted Windler","age":66,"location":"North Narcisohaven"}},{"attributes":{"name":"Mara Ondricka-Glover","age":67,"location":"East Katharina"}},{"attributes":{"name":"Mabel Smith","age":32,"location":"Wilmington"}},{"attributes":{"name":"Christiana Ledner","age":71,"location":"Norwalk"}},{"attributes":{"name":"Mitchell Stiedemann","age":52,"location":"New Ernie"}},{"attributes":{"name":"Tommy Waelchi","age":75,"location":"Gorczanyboro"}},{"attributes":{"name":"Seamus Haley V","age":60,"location":"Schowalterview"}},{"attributes":{"name":"Hilda Kunde","age":55,"location":"East Kiarabury"}},{"attributes":{"name":"Vincent Walsh-Runolfsson","age":54,"location":"Port Summerville"}},{"attributes":{"name":"Vincent Beier","age":77,"location":"Carolineworth"}},{"attributes":{"name":"Clifford Kassulke","age":51,"location":"Port Lucychester"}},{"attributes":{"name":"Mrs. Lynne Ledner","age":77,"location":"Lake Lailastad"}},{"attributes":{"name":"Lincoln Langosh","age":77,"location":"North Jalenboro"}},{"attributes":{"name":"Antoinette O'Conner","age":21,"location":"Fort Lailaland"}},{"attributes":{"name":"Carlotta Ratke","age":57,"location":"Melbourne"}},{"attributes":{"name":"Jasmin Farrell","age":39,"location":"Alfonzoport"}},{"attributes":{"name":"Meta Hessel","age":70,"location":"Hanford"}},{"attributes":{"name":"Mr. Edward Beer","age":51,"location":"Fort Clement"}},{"attributes":{"name":"Bob Bashirian Sr.","age":20,"location":"Morissetteside"}},{"attributes":{"name":"Esperanza Stracke","age":65,"location":"Lewisbury"}},{"attributes":{"name":"Antonetta Senger","age":39,"location":"Lennyshire"}},{"attributes":{"name":"Andy Collier","age":78,"location":"Greensboro"}},{"attributes":{"name":"Sue Roob","age":67,"location":"Lake Katlyn"}},{"attributes":{"name":"Valerie Sporer","age":26,"location":"South Margaretborough"}},{"attributes":{"name":"Shelley Witting","age":47,"location":"Anabelland"}},{"attributes":{"name":"Jazlyn Mitchell-Brekke","age":50,"location":"Santa Rosa"}},{"attributes":{"name":"Stacy Greenfelder","age":38,"location":"Fort Dillan"}},{"attributes":{"name":"Elisa Leannon","age":45,"location":"McLaughlinchester"}},{"attributes":{"name":"Abner Stroman","age":70,"location":"Schenectady"}},{"attributes":{"name":"Gerard Kozey","age":42,"location":"Fort Clementineland"}},{"attributes":{"name":"Ava Kling","age":37,"location":"New Karli"}},{"attributes":{"name":"Miss Linda Boyle","age":80,"location":"Lake Joelle"}},{"attributes":{"name":"Percival Mitchell Sr.","age":55,"location":"South Marge"}},{"attributes":{"name":"Stephanie Kling","age":28,"location":"South Flavio"}},{"attributes":{"name":"Diana Bode","age":59,"location":"North Griffin"}},{"attributes":{"name":"Cora Beahan","age":45,"location":"Larsoncester"}},{"attributes":{"name":"Florida Koss DDS","age":55,"location":"Kelsiestad"}},{"attributes":{"name":"Mr. Virgil Yundt V","age":41,"location":"Spokane Valley"}},{"attributes":{"name":"Vena Fahey","age":76,"location":"Adellaberg"}},{"attributes":{"name":"Shari Osinski","age":77,"location":"Mandyberg"}},{"attributes":{"name":"Hilma Hagenes","age":24,"location":"Norbertburgh"}},{"attributes":{"name":"Alfredo Howell","age":69,"location":"Port Johnson"}},{"attributes":{"name":"Geoffrey Pfannerstill","age":53,"location":"South Millie"}},{"attributes":{"name":"Kaycee Watsica","age":33,"location":"Clearwater"}},{"attributes":{"name":"Jack Abshire","age":18,"location":"New Linda"}},{"attributes":{"name":"Elizabeth Dare Sr.","age":73,"location":"Hemet"}},{"attributes":{"name":"Dr. Danny Wiza","age":63,"location":"Bethesda"}},{"attributes":{"name":"Alberta Fadel","age":56,"location":"South Chadshire"}},{"attributes":{"name":"Alvera Ratke","age":69,"location":"West Lillianaside"}},{"attributes":{"name":"Dr. Timmy White","age":48,"location":"Port Joanne"}},{"attributes":{"name":"Allen Wintheiser","age":36,"location":"Moenstad"}},{"attributes":{"name":"Melissa Ratke","age":47,"location":"West Adeline"}},{"attributes":{"name":"Stacy Nitzsche","age":71,"location":"Santa Clara"}},{"attributes":{"name":"Sean Bergstrom","age":66,"location":"New Elmira"}},{"attributes":{"name":"Garrett Daugherty","age":25,"location":"Mount Prospect"}},{"attributes":{"name":"Jena Medhurst-Bradtke","age":51,"location":"Shoreline"}},{"attributes":{"name":"Mr. Dale Mosciski","age":33,"location":"Dothan"}},{"attributes":{"name":"Kyra Roberts","age":70,"location":"Laroncester"}},{"attributes":{"name":"Carolyn Langosh","age":44,"location":"West Madisen"}},{"attributes":{"name":"Ginger Stracke","age":32,"location":"Seattle"}},{"attributes":{"name":"Ellis Beahan","age":75,"location":"Norbertland"}},{"attributes":{"name":"Ms. Angel Walsh","age":54,"location":"East Ginoland"}},{"attributes":{"name":"Dallas Nicolas MD","age":40,"location":"Port Ahmadstead"}},{"attributes":{"name":"Myron Strosin","age":54,"location":"New Norbertstad"}},{"attributes":{"name":"Travis Smith","age":68,"location":"Rossstead"}},{"attributes":{"name":"Guy Turner","age":35,"location":"Ziemeport"}},{"attributes":{"name":"Angeline Robel","age":68,"location":"Port Elfriedaside"}},{"attributes":{"name":"Raymond Jacobson MD","age":40,"location":"North Daniela"}},{"attributes":{"name":"Mr. Tim Cronin","age":76,"location":"Loveland"}},{"attributes":{"name":"Brad Schaden","age":43,"location":"Prudencecester"}},{"attributes":{"name":"Cora McLaughlin","age":56,"location":"Tinachester"}},{"attributes":{"name":"Clay Cronin","age":21,"location":"Reichelhaven"}},{"attributes":{"name":"Kristy Schroeder","age":29,"location":"Port Juniusfort"}},{"attributes":{"name":"Hannah Windler","age":28,"location":"Port Olinhaven"}},{"attributes":{"name":"Jim McGlynn","age":22,"location":"East Eldridge"}},{"attributes":{"name":"Valentin Kassulke","age":60,"location":"Binghamton"}},{"attributes":{"name":"Keith Effertz-Nikolaus","age":70,"location":"Faheyberg"}},{"attributes":{"name":"Sheridan McCullough","age":76,"location":"Hirthefort"}},{"attributes":{"name":"Zella Swaniawski","age":61,"location":"Santa Clara"}},{"attributes":{"name":"Miss Esther Keebler","age":40,"location":"Luzton"}},{"attributes":{"name":"Yazmin Mante","age":79,"location":"Lombard"}},{"attributes":{"name":"Daren Blick","age":61,"location":"Botsfordberg"}},{"attributes":{"name":"Sammy Cremin","age":39,"location":"Lake Charles"}},{"attributes":{"name":"Carole Ondricka","age":36,"location":"New Amirafield"}},{"attributes":{"name":"Einar Hauck","age":20,"location":"Lake Britneyburgh"}},{"attributes":{"name":"Adolph Mante","age":20,"location":"Leoneberg"}},{"attributes":{"name":"Bernard Harvey","age":59,"location":"San Diego"}},{"attributes":{"name":"Preston Schiller","age":60,"location":"Luciochester"}},{"attributes":{"name":"Hattie Cruickshank","age":28,"location":"Santa Maria"}},{"attributes":{"name":"Cynthia Torp","age":39,"location":"Corbinside"}},{"attributes":{"name":"Janelle Gottlieb","age":27,"location":"East Vincestead"}},{"attributes":{"name":"Shanelle Reynolds IV","age":74,"location":"O'Reillyberg"}},{"attributes":{"name":"Ricardo Stark","age":52,"location":"Lake Andres"}},{"attributes":{"name":"Ora Cormier","age":22,"location":"Redlands"}},{"attributes":{"name":"Blake Wilderman","age":57,"location":"Lolitatown"}},{"attributes":{"name":"Lorena Veum","age":27,"location":"Port Nathanielstad"}},{"attributes":{"name":"Loretta Hudson","age":66,"location":"Jaylinborough"}},{"attributes":{"name":"Katherine Funk","age":26,"location":"Lake Claudefield"}},{"attributes":{"name":"Chet Bahringer","age":45,"location":"Port Adan"}},{"attributes":{"name":"Kelley Fritsch","age":45,"location":"Southfield"}},{"attributes":{"name":"Zoe Baumbach","age":24,"location":"Lake Hyman"}},{"attributes":{"name":"Josianne Bayer","age":67,"location":"Roswell"}},{"attributes":{"name":"Luther Sporer DVM","age":66,"location":"Hilpertfield"}},{"attributes":{"name":"Beatrice Romaguera","age":74,"location":"Osinskistead"}},{"attributes":{"name":"Maurice Lang","age":63,"location":"North Chris"}},{"attributes":{"name":"Priscilla Metz","age":29,"location":"Fort Phyllisstead"}},{"attributes":{"name":"Odell Kris","age":79,"location":"West Darleneshire"}},{"attributes":{"name":"Mrs. Daisy Rippin","age":54,"location":"Farmington Hills"}},{"attributes":{"name":"Cornelius Purdy","age":25,"location":"Lake Lilianland"}},{"attributes":{"name":"Saul Kiehn","age":29,"location":"Lake Rusty"}},{"attributes":{"name":"Dortha Larkin","age":50,"location":"Gloverchester"}},{"attributes":{"name":"Anna Tremblay","age":31,"location":"West Laverna"}},{"attributes":{"name":"Johnson Runte","age":40,"location":"Odessa"}},{"attributes":{"name":"Mckayla Nikolaus","age":48,"location":"Stefaniestad"}},{"attributes":{"name":"Pauline Hudson","age":22,"location":"Bernierboro"}},{"attributes":{"name":"Juan Bergnaum","age":61,"location":"Labadiechester"}},{"attributes":{"name":"Mattie Wisozk","age":22,"location":"Tulsa"}},{"attributes":{"name":"Linda Dare PhD","age":61,"location":"Grimesfurt"}},{"attributes":{"name":"Evangeline West","age":75,"location":"West Dallasburgh"}},{"attributes":{"name":"Scott Koepp","age":28,"location":"Valentinatown"}},{"attributes":{"name":"Lance Ankunding","age":73,"location":"Port Eliezerburgh"}},{"attributes":{"name":"Billie Balistreri","age":42,"location":"Lake Aidan"}},{"attributes":{"name":"Marsha Carroll II","age":79,"location":"East Keonland"}},{"attributes":{"name":"Rosamond Pollich","age":40,"location":"Fort Ted"}},{"attributes":{"name":"Aliza Runolfsdottir","age":26,"location":"Gottliebbury"}},{"attributes":{"name":"Dr. Lupe Kulas","age":59,"location":"Gradyboro"}},{"attributes":{"name":"Patti Wilkinson","age":44,"location":"Fort Titus"}},{"attributes":{"name":"Hilma Block","age":40,"location":"West Aydenchester"}},{"attributes":{"name":"Leonie Dibbert","age":68,"location":"Pagachaven"}},{"attributes":{"name":"Miss Wilburn Morar","age":75,"location":"Bodeshire"}},{"attributes":{"name":"Otis West Jr.","age":24,"location":"Sugar Land"}},{"attributes":{"name":"Bobby Baumbach","age":51,"location":"Fort Kody"}},{"attributes":{"name":"Alysha Towne","age":33,"location":"Port Angel"}},{"attributes":{"name":"Erin Schaefer","age":32,"location":"Lake Josephineview"}},{"attributes":{"name":"Miss Trinity Reichert","age":45,"location":"Camilabury"}},{"attributes":{"name":"Naomi Ritchie-Pagac","age":62,"location":"East Svenborough"}},{"attributes":{"name":"Pablo Sanford","age":47,"location":"New Lurlineberg"}},{"attributes":{"name":"Asha Wisoky IV","age":27,"location":"Hartmannton"}},{"attributes":{"name":"Melyssa Lindgren IV","age":53,"location":"Caldwell"}},{"attributes":{"name":"Kody Welch","age":30,"location":"Port Hermannchester"}},{"attributes":{"name":"Frederick Will","age":42,"location":"Joyside"}},{"attributes":{"name":"Dan Runte","age":48,"location":"New Cassidyborough"}},{"attributes":{"name":"Tanya Hartmann","age":25,"location":"Port Stephaniaside"}},{"attributes":{"name":"Mr. Lee Abernathy","age":65,"location":"Franeyburgh"}},{"attributes":{"name":"Kennedy Boyle DVM","age":78,"location":"Cerritos"}},{"attributes":{"name":"Mrs. Conrad Morissette Jr.","age":23,"location":"Tonawanda"}},{"attributes":{"name":"Dr. Kylie West","age":29,"location":"West Hartford"}},{"attributes":{"name":"Ms. Rosa Schimmel","age":56,"location":"Maribeltown"}},{"attributes":{"name":"Alexis McKenzie","age":48,"location":"Runolfsdottirfurt"}},{"attributes":{"name":"Deion Heathcote","age":67,"location":"Elissabury"}},{"attributes":{"name":"Jerry Ledner","age":52,"location":"Owensboro"}},{"attributes":{"name":"Roger Monahan","age":22,"location":"Ritaberg"}},{"attributes":{"name":"Roxane Hartmann","age":22,"location":"Edinburg"}},{"attributes":{"name":"Christian MacGyver","age":29,"location":"Lake Mercedes"}},{"attributes":{"name":"Mr. Salvatore Anderson","age":31,"location":"Hollywood"}},{"attributes":{"name":"Joan Maggio","age":43,"location":"Bechtelarhaven"}},{"attributes":{"name":"Brad Mayert","age":33,"location":"Durwardville"}},{"attributes":{"name":"Mamie Lockman Jr.","age":56,"location":"East Ursula"}},{"attributes":{"name":"Ms. Merle Littel","age":21,"location":"West King"}},{"attributes":{"name":"Ernest Wiegand","age":78,"location":"West Lornaborough"}},{"attributes":{"name":"Dr. Megan Ankunding","age":49,"location":"Germantown"}},{"attributes":{"name":"Harriet Keeling","age":25,"location":"Lake Rowenatown"}},{"attributes":{"name":"Joanie Conn","age":69,"location":"Titusville"}},{"attributes":{"name":"Trever Casper I","age":33,"location":"Thousand Oaks"}},{"attributes":{"name":"Greg Pagac-Altenwerth","age":37,"location":"Lake Leonorberg"}},{"attributes":{"name":"Marta McDermott","age":78,"location":"Fort Sedrick"}},{"attributes":{"name":"Delia Schowalter","age":73,"location":"North Carolyneboro"}},{"attributes":{"name":"Stanley Cremin","age":55,"location":"Port Kenyon"}},{"attributes":{"name":"Keith Hackett","age":77,"location":"Carson"}},{"attributes":{"name":"Joe Nader","age":57,"location":"West Kattiestad"}},{"attributes":{"name":"Roger Nader","age":50,"location":"South Shannabury"}},{"attributes":{"name":"Shannon Mueller","age":56,"location":"Allentown"}},{"attributes":{"name":"Jordan Keebler","age":23,"location":"Altenwerthberg"}},{"attributes":{"name":"Elfrieda Thompson","age":19,"location":"Rogers"}},{"attributes":{"name":"Therese Miller","age":50,"location":"East Forestboro"}},{"attributes":{"name":"Annie Rutherford","age":24,"location":"Hesperia"}},{"attributes":{"name":"Nayeli Stark","age":78,"location":"Quincy"}},{"attributes":{"name":"Millie Littel","age":49,"location":"Lake Gilda"}},{"attributes":{"name":"Mr. Khalil Steuber","age":50,"location":"Thaddeusport"}},{"attributes":{"name":"Cassandra Abshire","age":34,"location":"Cedar Park"}},{"attributes":{"name":"Cristian Steuber","age":27,"location":"Kellyborough"}},{"attributes":{"name":"Kim Rowe","age":22,"location":"Janesville"}},{"attributes":{"name":"Antonio Bogisich","age":65,"location":"South Jamie"}},{"attributes":{"name":"Mrs. Gordon Kshlerin","age":53,"location":"Gottliebborough"}},{"attributes":{"name":"Rosalie Funk","age":58,"location":"Oriebury"}},{"attributes":{"name":"Donald Ledner","age":58,"location":"Altamonte Springs"}},{"attributes":{"name":"Miracle Weimann-Bashirian","age":22,"location":"Rodrigoworth"}},{"attributes":{"name":"Linda Olson","age":65,"location":"Shanahanport"}},{"attributes":{"name":"Abbigail Medhurst-Rau","age":70,"location":"West Marshallhaven"}},{"attributes":{"name":"Carol Schmeler III","age":23,"location":"Wymanton"}},{"attributes":{"name":"Damaris Harvey","age":58,"location":"North Madie"}},{"attributes":{"name":"Kiara Dickens","age":72,"location":"East Hellenton"}},{"attributes":{"name":"Lena Hansen","age":58,"location":"Gloriaside"}},{"attributes":{"name":"Adam Stark","age":23,"location":"Henrishire"}},{"attributes":{"name":"Bernard Bergstrom","age":51,"location":"Goldnerfurt"}},{"attributes":{"name":"Gretchen Will","age":41,"location":"Ankundingport"}},{"attributes":{"name":"Mrs. Al Feest","age":26,"location":"Reynoldsberg"}},{"attributes":{"name":"Winifred Kohler IV","age":57,"location":"Kaciecester"}},{"attributes":{"name":"Ian Buckridge","age":71,"location":"Lake Marioport"}},{"attributes":{"name":"Shea O'Reilly","age":63,"location":"Friedastead"}},{"attributes":{"name":"Celestine Bruen","age":55,"location":"Trujillo Alto"}},{"attributes":{"name":"Tyler Barton","age":36,"location":"Mannton"}},{"attributes":{"name":"Maggie D'Amore","age":31,"location":"Canton"}},{"attributes":{"name":"Mrs. Melissa Tillman","age":78,"location":"Lake Derek"}},{"attributes":{"name":"Dakota Kuhn","age":44,"location":"Delray Beach"}},{"attributes":{"name":"Luke Gutkowski","age":18,"location":"Bartellstad"}},{"attributes":{"name":"Theodore Marks","age":64,"location":"West Covina"}},{"attributes":{"name":"Celia Beer","age":29,"location":"West Seneca"}},{"attributes":{"name":"Ms. Rosetta Heaney","age":37,"location":"Fort Brittany"}},{"attributes":{"name":"George Reilly","age":51,"location":"West Elsahaven"}},{"attributes":{"name":"Mrs. Cathy Greenholt","age":44,"location":"Keshaunside"}},{"attributes":{"name":"Preston McKenzie","age":63,"location":"Fort Rickey"}},{"attributes":{"name":"Mrs. Amber Powlowski IV","age":18,"location":"Muellerfort"}},{"attributes":{"name":"Pierre Hagenes","age":40,"location":"Erie"}},{"attributes":{"name":"Jan Kilback","age":67,"location":"Port Brenda"}},{"attributes":{"name":"Demond Murazik","age":35,"location":"Zboncakborough"}},{"attributes":{"name":"Jeff Rolfson","age":49,"location":"Margarettestead"}},{"attributes":{"name":"Johnathan VonRueden","age":19,"location":"Robelboro"}},{"attributes":{"name":"Nadine Beahan","age":45,"location":"Schneiderworth"}},{"attributes":{"name":"Angelo Schuster","age":18,"location":"Marcelinocester"}},{"attributes":{"name":"Lynette Herman","age":64,"location":"West Anjali"}},{"attributes":{"name":"Eliza Crona","age":54,"location":"Fort Jamison"}},{"attributes":{"name":"Xzavier Skiles PhD","age":76,"location":"New Kacie"}},{"attributes":{"name":"Peggy King","age":74,"location":"Konopelskiton"}},{"attributes":{"name":"Glen Lakin V","age":43,"location":"West Kameronview"}},{"attributes":{"name":"Blaise Ernser","age":49,"location":"Stoltenbergfurt"}},{"attributes":{"name":"Rozella Grimes","age":72,"location":"Kathryneland"}},{"attributes":{"name":"Marshall Hamill","age":48,"location":"Rowlandville"}},{"attributes":{"name":"Dr. Christina Pacocha","age":19,"location":"Terrillview"}},{"attributes":{"name":"Anais Wilkinson","age":52,"location":"Loyhaven"}},{"attributes":{"name":"Mr. Jared Denesik","age":18,"location":"Wisokyburgh"}},{"attributes":{"name":"Korey Russel","age":40,"location":"New Shanaworth"}},{"attributes":{"name":"Kayla Lakin","age":50,"location":"Heaneyburgh"}},{"attributes":{"name":"Eudora Gerlach","age":52,"location":"Mikaylabury"}},{"attributes":{"name":"Macie Kris","age":21,"location":"Javierstead"}},{"attributes":{"name":"Dr. Rita Kilback","age":49,"location":"Beattyshire"}},{"attributes":{"name":"Amina Stehr","age":70,"location":"North Justyn"}},{"attributes":{"name":"Baylee Weimann","age":66,"location":"West Berenice"}},{"attributes":{"name":"Geovanni Bins","age":77,"location":"Effiestad"}},{"attributes":{"name":"Lenna Sawayn","age":80,"location":"Modestastad"}},{"attributes":{"name":"Kristie Rodriguez","age":44,"location":"North Jadyn"}},{"attributes":{"name":"Emelie Lockman","age":58,"location":"Trantowworth"}},{"attributes":{"name":"Tommie Rodriguez Sr.","age":50,"location":"Hamillberg"}},{"attributes":{"name":"Sophia Bartoletti","age":32,"location":"Koreyton"}},{"attributes":{"name":"Kenneth Spencer","age":71,"location":"Fort Chester"}},{"attributes":{"name":"Ashtyn Reichel","age":42,"location":"San Leandro"}},{"attributes":{"name":"Jeanne Mayer","age":25,"location":"Perris"}},{"attributes":{"name":"Martha Fay","age":79,"location":"Guyburgh"}},{"attributes":{"name":"Woodrow Johnston","age":34,"location":"Burnsville"}},{"attributes":{"name":"Ms. Esmeralda Bartell-Stark","age":56,"location":"Loutown"}},{"attributes":{"name":"Nels Strosin","age":49,"location":"West Hipolitoview"}},{"attributes":{"name":"Shelley Schaden","age":48,"location":"Hahnhaven"}},{"attributes":{"name":"Sheridan Herman","age":41,"location":"Reichelworth"}},{"attributes":{"name":"Arnold Osinski","age":29,"location":"South Victoria"}},{"attributes":{"name":"Kari Kuhic MD","age":25,"location":"Robelport"}},{"attributes":{"name":"Aubrey Nienow","age":56,"location":"Detroit"}},{"attributes":{"name":"Mr. Ismael Ferry","age":33,"location":"Marcelostad"}},{"attributes":{"name":"Florida Williamson","age":47,"location":"Port Tania"}},{"attributes":{"name":"Mr. Orlo Kuphal","age":19,"location":"New Lizziecester"}},{"attributes":{"name":"Sophia Lakin","age":60,"location":"East Dionburgh"}},{"attributes":{"name":"Dr. Kevin O'Kon","age":65,"location":"Burke"}},{"attributes":{"name":"Connie Connelly","age":75,"location":"Smyrna"}},{"attributes":{"name":"Bernice Adams PhD","age":79,"location":"Novato"}},{"attributes":{"name":"Kylie Fadel","age":21,"location":"East Nigelcester"}},{"attributes":{"name":"Alexzander Wyman","age":50,"location":"Rutherfordcester"}},{"attributes":{"name":"Declan Hessel","age":65,"location":"Hayesstead"}},{"attributes":{"name":"Betty Hoppe","age":74,"location":"Runolfsdottirboro"}},{"attributes":{"name":"Rhonda Schowalter PhD","age":61,"location":"Conntown"}},{"attributes":{"name":"Milton Rodriguez","age":34,"location":"New Rochelle"}},{"attributes":{"name":"Josephine Jerde","age":31,"location":"Johnson City"}},{"attributes":{"name":"Bonnie O'Hara","age":31,"location":"Estelberg"}},{"attributes":{"name":"Mr. Jay McDermott","age":69,"location":"Marquardtborough"}},{"attributes":{"name":"Hanna Streich","age":44,"location":"Jacobsfort"}},{"attributes":{"name":"Karl Turcotte","age":44,"location":"Kubchester"}},{"attributes":{"name":"Charles Carroll","age":62,"location":"Elyria"}},{"attributes":{"name":"Geovanny Christiansen V","age":44,"location":"Dickibury"}},{"attributes":{"name":"Rodney Morissette","age":41,"location":"Port Clydehaven"}},{"attributes":{"name":"Johnnie Auer","age":22,"location":"Edgarmouth"}},{"attributes":{"name":"Jeanette Jacobs V","age":34,"location":"West Heaven"}},{"attributes":{"name":"Mr. Randal Schmidt","age":19,"location":"South Melody"}},{"attributes":{"name":"Mireille Huels","age":21,"location":"North Elianeport"}},{"attributes":{"name":"Adeline Altenwerth","age":52,"location":"South Garrisonstead"}},{"attributes":{"name":"Ms. Virginia Pollich III","age":54,"location":"Xavierfurt"}},{"attributes":{"name":"Fannie Weissnat","age":38,"location":"New Concepcionland"}},{"attributes":{"name":"Violette Greenfelder","age":69,"location":"Fort Tysonhaven"}},{"attributes":{"name":"Miss Kari Fahey","age":78,"location":"Haileyhaven"}},{"attributes":{"name":"Deion Davis","age":21,"location":"West Birdietown"}},{"attributes":{"name":"Levi Gleichner","age":45,"location":"Jenkinsborough"}},{"attributes":{"name":"Jo Corkery","age":75,"location":"Fadelstead"}},{"attributes":{"name":"Irwin Labadie","age":58,"location":"Howehaven"}},{"attributes":{"name":"Alexandrine Howell","age":29,"location":"Kilbackview"}},{"attributes":{"name":"Darla Parisian","age":43,"location":"Taunton"}},{"attributes":{"name":"Jonathan Jones Jr.","age":48,"location":"Satterfieldcester"}},{"attributes":{"name":"Mandy Weber","age":22,"location":"Stokeshaven"}},{"attributes":{"name":"Dr. Pedro Feest","age":24,"location":"South Derrickboro"}},{"attributes":{"name":"Keith Durgan","age":77,"location":"North Tevinport"}},{"attributes":{"name":"Jarod Wiza III","age":23,"location":"Macon-Bibb County"}},{"attributes":{"name":"Sonja Doyle","age":53,"location":"Shaniestad"}},{"attributes":{"name":"Destiny Considine","age":38,"location":"Arvada"}},{"attributes":{"name":"Ewald Wilkinson","age":53,"location":"Brandoville"}},{"attributes":{"name":"Jamie Ritchie","age":53,"location":"Waelchishire"}},{"attributes":{"name":"Howard Haley","age":27,"location":"Margate"}},{"attributes":{"name":"Bruce Beier","age":74,"location":"East Revaville"}},{"attributes":{"name":"Toy McDermott","age":46,"location":"Grahamfurt"}},{"attributes":{"name":"Laurence Douglas","age":51,"location":"Mentor"}},{"attributes":{"name":"Annie Boehm Sr.","age":20,"location":"Fort Shirley"}},{"attributes":{"name":"Jackie Jones","age":44,"location":"South Karleyview"}},{"attributes":{"name":"Mr. Eloise Schultz-Donnelly","age":71,"location":"East Rubenworth"}},{"attributes":{"name":"Danial Franecki","age":66,"location":"Fort Enidmouth"}},{"attributes":{"name":"Johnathan Koch-Johns","age":53,"location":"Buckeye"}},{"attributes":{"name":"Wesley Nikolaus","age":53,"location":"Kurtworth"}},{"attributes":{"name":"Ashley Rempel","age":28,"location":"Fort Amani"}},{"attributes":{"name":"Javier Waters","age":39,"location":"Croninburgh"}},{"attributes":{"name":"Mitchell Roberts","age":64,"location":"North Jeramie"}},{"attributes":{"name":"Jaleel Treutel","age":29,"location":"Port Eleanore"}},{"attributes":{"name":"Antonia Schuppe","age":59,"location":"West Marco"}},{"attributes":{"name":"Cameron Gerhold IV","age":40,"location":"New Mariano"}},{"attributes":{"name":"Ladarius Beatty MD","age":34,"location":"Newport Beach"}},{"attributes":{"name":"Fay Hansen","age":64,"location":"South Ofelia"}},{"attributes":{"name":"Dr. Noah Stehr II","age":32,"location":"Lucyfort"}},{"attributes":{"name":"Mr. Jerald Stoltenberg PhD","age":58,"location":"Mountain View"}},{"attributes":{"name":"Ben Douglas","age":55,"location":"Westside"}},{"attributes":{"name":"Mrs. Kellie White","age":79,"location":"Robertoberg"}},{"attributes":{"name":"Arlene McKenzie PhD","age":51,"location":"South Barneychester"}},{"attributes":{"name":"Miss Minnie Wolf Sr.","age":70,"location":"Lake Devanteboro"}},{"attributes":{"name":"Elijah Howell","age":77,"location":"New Roymouth"}},{"attributes":{"name":"Antonia Ortiz","age":42,"location":"Lake Sasha"}},{"attributes":{"name":"Kobe King","age":50,"location":"Santa Monica"}},{"attributes":{"name":"Jillian O'Hara","age":67,"location":"Wizafort"}},{"attributes":{"name":"Macey Nienow","age":67,"location":"Daniellafort"}},{"attributes":{"name":"Kobe Ritchie I","age":50,"location":"Ashburn"}},{"attributes":{"name":"Anna Connelly","age":66,"location":"Lake Roscoefield"}},{"attributes":{"name":"Olaf Legros","age":61,"location":"Faycester"}},{"attributes":{"name":"Darby Daugherty","age":73,"location":"Hartmannmouth"}},{"attributes":{"name":"Gertrude Wintheiser","age":79,"location":"East Claudine"}},{"attributes":{"name":"Carlos Oberbrunner-Keebler","age":61,"location":"Anaisborough"}},{"attributes":{"name":"Hilda Reynolds","age":37,"location":"Wylie"}},{"attributes":{"name":"Oren Larkin","age":62,"location":"Dayton"}},{"attributes":{"name":"Nancy Schulist","age":35,"location":"West Arjun"}},{"attributes":{"name":"Curt Hansen-Paucek","age":67,"location":"Port Clarissa"}},{"attributes":{"name":"Dameon Gleichner","age":63,"location":"Alhambra"}},{"attributes":{"name":"Taya Maggio","age":71,"location":"Runolfssonbury"}},{"attributes":{"name":"Leticia Greenholt","age":25,"location":"Lubowitzboro"}},{"attributes":{"name":"Katrina Green","age":32,"location":"West Myleneport"}},{"attributes":{"name":"Stephen Bins","age":31,"location":"Huntsville"}},{"attributes":{"name":"Terry Waters","age":79,"location":"South Jaylanborough"}},{"attributes":{"name":"Edna Dickens","age":22,"location":"East Michael"}},{"attributes":{"name":"Cleveland Wunsch","age":47,"location":"Laurianeburgh"}},{"attributes":{"name":"Edith Zieme","age":54,"location":"Cronatown"}},{"attributes":{"name":"Leonel Cummings II","age":51,"location":"Fort Theresiaboro"}},{"attributes":{"name":"Jennie Cole DVM","age":63,"location":"Adrainchester"}},{"attributes":{"name":"Ludie Walker","age":39,"location":"Ryanland"}},{"attributes":{"name":"Deborah Waters","age":18,"location":"Fort Fabiola"}},{"attributes":{"name":"Terrell Sipes","age":29,"location":"Watersworth"}},{"attributes":{"name":"Norman Terry","age":34,"location":"Bartlett"}},{"attributes":{"name":"Millie Rice","age":35,"location":"New Oleta"}},{"attributes":{"name":"Mike Price II","age":70,"location":"North Estrella"}},{"attributes":{"name":"Carmen Wiza","age":59,"location":"San Bruno"}},{"attributes":{"name":"Rebecca Gleichner","age":57,"location":"North Eloisestad"}},{"attributes":{"name":"Elvis O'Reilly","age":46,"location":"South Erik"}},{"attributes":{"name":"Albert Thompson","age":34,"location":"South Omarimouth"}},{"attributes":{"name":"Curtis Hills","age":19,"location":"Port Erinbury"}},{"attributes":{"name":"Michele Anderson","age":35,"location":"West Earnestine"}},{"attributes":{"name":"Esther McCullough","age":73,"location":"Lake Meta"}},{"attributes":{"name":"Mr. Arnulfo Hills Jr.","age":57,"location":"Fort Colemancester"}},{"attributes":{"name":"Benjamin Leffler","age":58,"location":"Ricardoport"}},{"attributes":{"name":"Virginie Koelpin II","age":55,"location":"Rippinburgh"}},{"attributes":{"name":"Julio Hackett","age":72,"location":"East Syble"}},{"attributes":{"name":"Spencer Morar","age":68,"location":"West Una"}},{"attributes":{"name":"Trent Kulas","age":66,"location":"Bossier City"}},{"attributes":{"name":"Lucas Nolan","age":48,"location":"Bernhardburgh"}},{"attributes":{"name":"Natalie Marvin","age":40,"location":"North Mark"}},{"attributes":{"name":"Heaven Dibbert","age":47,"location":"Warwick"}},{"attributes":{"name":"Katie Denesik","age":60,"location":"Cristalcester"}},{"attributes":{"name":"Aidan Durgan","age":29,"location":"East Dillanstead"}},{"attributes":{"name":"Mrs. Daniela Lemke","age":24,"location":"Fort Kraig"}},{"attributes":{"name":"Aubrey Wisoky I","age":78,"location":"Coral Springs"}},{"attributes":{"name":"Ryan Bashirian","age":23,"location":"North Roslyn"}},{"attributes":{"name":"Marcella Dooley","age":51,"location":"South Heathview"}},{"attributes":{"name":"Ms. Bailey Dicki","age":62,"location":"Alameda"}},{"attributes":{"name":"Lawrence Runolfsdottir","age":21,"location":"Lake Hilda"}},{"attributes":{"name":"Carolyn Parisian","age":59,"location":"Anchorage"}},{"attributes":{"name":"Miss Rosa Hahn","age":21,"location":"Wisokyland"}},{"attributes":{"name":"Laurel Feil","age":24,"location":"South Marilieboro"}},{"attributes":{"name":"Josefina Hyatt","age":57,"location":"East Annetta"}},{"attributes":{"name":"Mrs. Ramiro Turcotte V","age":53,"location":"Port Eldridge"}},{"attributes":{"name":"Susan Ortiz III","age":22,"location":"East Mara"}},{"attributes":{"name":"Era Kuhic","age":64,"location":"Port Gregghaven"}},{"attributes":{"name":"Van Wiegand","age":68,"location":"Hammesberg"}},{"attributes":{"name":"Bryant Rempel","age":70,"location":"Corkerytown"}},{"attributes":{"name":"Miss Gene Murray","age":70,"location":"Daytona Beach"}},{"attributes":{"name":"Byron Bayer","age":60,"location":"Porterville"}},{"attributes":{"name":"Hubert Runte","age":63,"location":"Pacochastad"}},{"attributes":{"name":"Trey Aufderhar","age":19,"location":"Schneiderhaven"}},{"attributes":{"name":"Faith Corkery","age":49,"location":"Raubury"}},{"attributes":{"name":"Vinnie Bernier","age":36,"location":"Ethylfort"}},{"attributes":{"name":"Mrs. Terrell Zieme","age":53,"location":"New Tremaynetown"}},{"attributes":{"name":"Greg Fisher","age":61,"location":"West Blancheboro"}},{"attributes":{"name":"Whitney O'Kon","age":80,"location":"South Keithstad"}},{"attributes":{"name":"Rachel Stanton","age":71,"location":"Reillyshire"}},{"attributes":{"name":"Skylar Beier I","age":65,"location":"Lucasberg"}},{"attributes":{"name":"Yvonne Nikolaus","age":67,"location":"North Tristin"}},{"attributes":{"name":"Margaret Bradtke DDS","age":19,"location":"Conway"}},{"attributes":{"name":"Don Monahan","age":39,"location":"Rashawnbury"}},{"attributes":{"name":"Ms. Sid Lesch IV","age":26,"location":"Deronport"}},{"attributes":{"name":"Ruben Maggio IV","age":45,"location":"Morgan Hill"}},{"attributes":{"name":"Meredith Dietrich","age":26,"location":"Lake Marisol"}},{"attributes":{"name":"Miss Cecilia Beatty","age":22,"location":"North Rashadshire"}},{"attributes":{"name":"Bradley Quitzon","age":26,"location":"Bismarck"}},{"attributes":{"name":"Shawn Waelchi","age":72,"location":"Cristburgh"}},{"attributes":{"name":"Dixie Kirlin","age":26,"location":"Fort Clint"}},{"attributes":{"name":"Marco Orn","age":44,"location":"New Jarrell"}},{"attributes":{"name":"Lilla Rohan","age":35,"location":"Clarebury"}},{"attributes":{"name":"Jacob Abshire-Vandervort","age":52,"location":"East Federico"}},{"attributes":{"name":"Dr. Jeff Dickinson PhD","age":33,"location":"Bonita Springs"}},{"attributes":{"name":"Dariana Ullrich","age":68,"location":"Hellenbury"}},{"attributes":{"name":"Olga Pacocha","age":55,"location":"Paulchester"}},{"attributes":{"name":"Marion Corwin-Douglas I","age":56,"location":"Wildermanburgh"}},{"attributes":{"name":"Melany Kuhn","age":56,"location":"Petraborough"}},{"attributes":{"name":"Mrs. Lori Cassin","age":29,"location":"West Brendon"}},{"attributes":{"name":"Jan Hintz","age":35,"location":"South Ramiro"}},{"attributes":{"name":"Bernard Collins","age":34,"location":"West Elliott"}},{"attributes":{"name":"Mattie Toy","age":23,"location":"Cassinland"}},{"attributes":{"name":"Mrs. Madison Kerluke","age":39,"location":"Krisshire"}},{"attributes":{"name":"Michelle Borer","age":38,"location":"Elsiefort"}},{"attributes":{"name":"Alf Raynor","age":78,"location":"Sarasota"}},{"attributes":{"name":"Maxine Ondricka","age":73,"location":"Livermore"}},{"attributes":{"name":"Gregg Kshlerin-Schmeler","age":52,"location":"Zboncakhaven"}},{"attributes":{"name":"Teri Bergstrom","age":18,"location":"North Amelystead"}},{"attributes":{"name":"Mrs. Pat Cruickshank-Murazik","age":72,"location":"Rosenbaumton"}},{"attributes":{"name":"Valentina Huels","age":70,"location":"South Fayefield"}},{"attributes":{"name":"Gerald Metz-Bauch","age":48,"location":"Gerlachstad"}},{"attributes":{"name":"Xavier Keebler","age":44,"location":"Walterbury"}},{"attributes":{"name":"Justen Schroeder","age":56,"location":"North Dahliafield"}},{"attributes":{"name":"Robin Rempel","age":58,"location":"Grand Junction"}},{"attributes":{"name":"Melanie VonRueden","age":51,"location":"Prohaskaside"}},{"attributes":{"name":"Marley Gibson","age":61,"location":"Lake Efrainworth"}},{"attributes":{"name":"Orville Gusikowski","age":65,"location":"Madelineton"}},{"attributes":{"name":"Eric Nikolaus","age":43,"location":"Theastad"}},{"attributes":{"name":"Domenico Bergstrom","age":79,"location":"Fort Gilbertmouth"}},{"attributes":{"name":"Ms. Debra Crist","age":57,"location":"Odiebury"}},{"attributes":{"name":"Kenna Gutmann","age":62,"location":"Wilson"}},{"attributes":{"name":"Randall Botsford-West","age":40,"location":"North Vellahaven"}},{"attributes":{"name":"Marley Renner","age":27,"location":"Conroyshire"}},{"attributes":{"name":"Roger Ondricka PhD","age":54,"location":"North Bernadine"}},{"attributes":{"name":"Lance Nader Sr.","age":65,"location":"Fort Joesph"}},{"attributes":{"name":"Peggy Mosciski","age":71,"location":"West Elna"}},{"attributes":{"name":"Rhonda Casper","age":53,"location":"Gregoryport"}},{"attributes":{"name":"Roman Halvorson","age":64,"location":"South Llewellyn"}},{"attributes":{"name":"Cecil Ferry PhD","age":29,"location":"Bartlett"}},{"attributes":{"name":"Mrs. Jessica Cummings","age":56,"location":"Scottytown"}},{"attributes":{"name":"Domenica Schulist","age":71,"location":"Rashadberg"}},{"attributes":{"name":"Marcia Mayer","age":39,"location":"Gorczanymouth"}},{"attributes":{"name":"Anita Satterfield","age":48,"location":"Josueton"}},{"attributes":{"name":"Johnathan Batz","age":38,"location":"West Alessandra"}},{"attributes":{"name":"Mackenzie Ebert","age":45,"location":"Midwest City"}},{"attributes":{"name":"Bernadette Christiansen","age":66,"location":"Hickleton"}},{"attributes":{"name":"Mrs. Golda Koepp DDS","age":18,"location":"Itzelborough"}},{"attributes":{"name":"Delta Kris","age":53,"location":"Murrayview"}},{"attributes":{"name":"Lila Heller","age":68,"location":"Leonieport"}},{"attributes":{"name":"Dr. Wallace Pfannerstill","age":56,"location":"Osinskistad"}},{"attributes":{"name":"Wilson Schamberger IV","age":24,"location":"North Lulacester"}},{"attributes":{"name":"Camron Kuhlman","age":60,"location":"Franklin"}},{"attributes":{"name":"Loma Crist","age":26,"location":"Salinas"}},{"attributes":{"name":"Jedediah O'Keefe","age":48,"location":"Steuberport"}},{"attributes":{"name":"Bernita Kutch","age":45,"location":"Ziemeland"}},{"attributes":{"name":"Bill Erdman","age":73,"location":"Fort Flavieboro"}},{"attributes":{"name":"Perry Klocko","age":77,"location":"Ashleymouth"}},{"attributes":{"name":"Lizeth O'Conner","age":21,"location":"East Winfield"}},{"attributes":{"name":"Joel Jones","age":77,"location":"Catonsville"}},{"attributes":{"name":"Miguel Cassin","age":49,"location":"Izaiahborough"}},{"attributes":{"name":"Mr. Beulah Cruickshank","age":39,"location":"North Brook"}},{"attributes":{"name":"Tito Reichert V","age":26,"location":"East Jordyn"}},{"attributes":{"name":"Kip Hane","age":73,"location":"Torphyhaven"}},{"attributes":{"name":"Mr. Alexander Corwin","age":27,"location":"Lake Elliotstad"}},{"attributes":{"name":"Rafael Hauck","age":24,"location":"North Antonietta"}},{"attributes":{"name":"Minerva Wisozk","age":41,"location":"West Aleen"}},{"attributes":{"name":"Monica Bauch","age":73,"location":"Cristburgh"}},{"attributes":{"name":"Mitchell Franey","age":57,"location":"Larkinborough"}},{"attributes":{"name":"Evelyn Fahey","age":49,"location":"South Joshua"}},{"attributes":{"name":"Al Schroeder","age":30,"location":"Keanuburgh"}},{"attributes":{"name":"Tara Quigley PhD","age":54,"location":"Brookline"}},{"attributes":{"name":"Kameron Swift","age":46,"location":"Emilieside"}},{"attributes":{"name":"Cayla Lubowitz","age":51,"location":"Fort Myrtie"}},{"attributes":{"name":"Dr. Antoinette Koss","age":56,"location":"New Agustintown"}},{"attributes":{"name":"Geraldine Emard","age":43,"location":"Franeymouth"}},{"attributes":{"name":"Robb Koss","age":55,"location":"Samantahaven"}},{"attributes":{"name":"Scott Lebsack-Lind","age":64,"location":"North Abrahamfurt"}},{"attributes":{"name":"Marlon Murazik","age":28,"location":"South Queenie"}},{"attributes":{"name":"Keely Batz II","age":27,"location":"Gracielamouth"}},{"attributes":{"name":"Beulah Kreiger","age":78,"location":"Holdenborough"}},{"attributes":{"name":"Concepcion Hagenes","age":30,"location":"Fort Gracieboro"}},{"attributes":{"name":"Gregg Johnson","age":34,"location":"Lewisville"}},{"attributes":{"name":"Kassandra Kemmer I","age":31,"location":"Dandreborough"}},{"attributes":{"name":"Cheryl Schumm","age":60,"location":"South Kassandrafurt"}},{"attributes":{"name":"Dale Anderson","age":23,"location":"Ferrycester"}},{"attributes":{"name":"Jameson Ryan","age":78,"location":"Haagmouth"}},{"attributes":{"name":"Miss Henderson Kihn","age":68,"location":"Muellerburgh"}},{"attributes":{"name":"Danny Daugherty","age":30,"location":"Fairfield"}},{"attributes":{"name":"Leticia Reichert","age":76,"location":"Murphyfort"}},{"attributes":{"name":"Mya Schumm-Rowe","age":44,"location":"Russelfield"}},{"attributes":{"name":"Ross Brown","age":58,"location":"Lexington-Fayette"}},{"attributes":{"name":"Katie Leannon","age":34,"location":"East Harmon"}},{"attributes":{"name":"Verner Considine V","age":59,"location":"Ernserside"}},{"attributes":{"name":"Rod Emmerich","age":67,"location":"Tallahassee"}},{"attributes":{"name":"Jerald Russel","age":72,"location":"South Gabeland"}},{"attributes":{"name":"Marisol Reilly MD","age":58,"location":"Fort Sophiatown"}},{"attributes":{"name":"Bennie Herman","age":53,"location":"McLean"}},{"attributes":{"name":"Hope Marvin","age":22,"location":"Altamonte Springs"}},{"attributes":{"name":"Mariela Hartmann","age":25,"location":"Lake Preciousfurt"}},{"attributes":{"name":"Mr. Gisselle Reichel-Osinski","age":46,"location":"Port Robb"}},{"attributes":{"name":"Ruby Hodkiewicz","age":24,"location":"Lake Macyhaven"}},{"attributes":{"name":"Ramon Cole","age":78,"location":"Eastonbury"}},{"attributes":{"name":"Henry O'Connell","age":77,"location":"Port Phyllistown"}},{"attributes":{"name":"Angelina Schmitt IV","age":78,"location":"Kuphalland"}},{"attributes":{"name":"Lyda Tremblay","age":79,"location":"Lake Edwardoside"}},{"attributes":{"name":"Belle West","age":25,"location":"Shreveport"}},{"attributes":{"name":"Tomas McGlynn II","age":47,"location":"Colbyside"}},{"attributes":{"name":"Victor Beahan","age":27,"location":"Danielside"}},{"attributes":{"name":"Royal Vandervort","age":72,"location":"East Jarredberg"}},{"attributes":{"name":"Clyde Pouros","age":32,"location":"South Giannifurt"}},{"attributes":{"name":"Howard Rutherford","age":74,"location":"Port Porterhaven"}},{"attributes":{"name":"Sally Streich","age":67,"location":"North Clintonberg"}},{"attributes":{"name":"Tressie Spencer","age":46,"location":"South Priscilla"}},{"attributes":{"name":"Meghan Goldner","age":58,"location":"Lake Sam"}},{"attributes":{"name":"Elliot Lynch","age":49,"location":"Hillsboro"}},{"attributes":{"name":"Adrienne Adams","age":22,"location":"North Linnea"}},{"attributes":{"name":"Torey Baumbach","age":27,"location":"Pflugerville"}},{"attributes":{"name":"Jessie McCullough","age":18,"location":"North Janis"}},{"attributes":{"name":"Benny Emard-Kling","age":65,"location":"Koelpintown"}},{"attributes":{"name":"Jayce Tromp","age":29,"location":"Elyria"}},{"attributes":{"name":"Myrtie Connelly","age":76,"location":"East Shad"}},{"attributes":{"name":"Brent Koch","age":44,"location":"Fort Cecilestad"}},{"attributes":{"name":"Duane Wehner","age":30,"location":"South Jameyburgh"}},{"attributes":{"name":"Israel Leannon","age":74,"location":"Lake Manuelamouth"}},{"attributes":{"name":"Tony Kirlin","age":23,"location":"Marcelinatown"}},{"attributes":{"name":"Jarvis Greenfelder","age":65,"location":"East Lansing"}},{"attributes":{"name":"Gerard Larson DVM","age":76,"location":"Erdmanboro"}},{"attributes":{"name":"Austin Russel","age":39,"location":"Gislasonmouth"}},{"attributes":{"name":"Cary West","age":65,"location":"Leliastad"}},{"attributes":{"name":"Billy Lockman","age":67,"location":"Abrahamfort"}},{"attributes":{"name":"Andre Veum","age":77,"location":"Lubowitzbury"}},{"attributes":{"name":"Malcolm Stroman II","age":26,"location":"East Martinstead"}},{"attributes":{"name":"Collin Casper","age":74,"location":"Port Ollie"}},{"attributes":{"name":"Ernest Shanahan","age":34,"location":"South Aricfield"}},{"attributes":{"name":"Laverne Leannon","age":68,"location":"North Oleworth"}},{"attributes":{"name":"Shannon O'Kon","age":22,"location":"Raphaelletown"}},{"attributes":{"name":"Dr. Eula Mills","age":78,"location":"Lake Elsinore"}},{"attributes":{"name":"Mr. Frankie Emard","age":51,"location":"Port Melany"}},{"attributes":{"name":"Rogelio Baumbach","age":34,"location":"Barrowsbury"}},{"attributes":{"name":"Donnell Larkin","age":40,"location":"Port Carissatown"}},{"attributes":{"name":"Weldon Crona","age":26,"location":"Grand Junction"}},{"attributes":{"name":"Omar Hauck","age":77,"location":"Lake Tressie"}},{"attributes":{"name":"Ron Greenholt","age":49,"location":"Darlenebury"}},{"attributes":{"name":"Peyton Durgan","age":52,"location":"Cassieside"}},{"attributes":{"name":"Beatrice McCullough","age":34,"location":"Bristol"}},{"attributes":{"name":"Connie Hodkiewicz","age":38,"location":"Keelingport"}},{"attributes":{"name":"Danyka Hirthe","age":44,"location":"Green Bay"}},{"attributes":{"name":"Harriet Weber","age":70,"location":"Hermistoncester"}},{"attributes":{"name":"Demarcus Simonis","age":22,"location":"Daughertyview"}},{"attributes":{"name":"Ms. Clayton Reynolds","age":73,"location":"Richland"}},{"attributes":{"name":"Cathrine Lubowitz","age":58,"location":"Escondido"}},{"attributes":{"name":"Vincent Witting","age":66,"location":"West Feliciaboro"}},{"attributes":{"name":"Luis Senger","age":65,"location":"Hellerton"}},{"attributes":{"name":"Armand Beer","age":45,"location":"Mount Pleasant"}},{"attributes":{"name":"Mr. Roderick Weimann","age":40,"location":"Jackieside"}},{"attributes":{"name":"Janiya Lakin","age":35,"location":"West Friedrichberg"}},{"attributes":{"name":"Claudia Zulauf","age":70,"location":"West Retha"}},{"attributes":{"name":"Alden Rice","age":60,"location":"Logan"}},{"attributes":{"name":"Sammie D'Amore","age":43,"location":"Mertzstead"}},{"attributes":{"name":"Christina Hansen","age":58,"location":"Kaydentown"}},{"attributes":{"name":"Ms. Nathaniel Kuphal","age":72,"location":"Hartford"}},{"attributes":{"name":"Uriel Price I","age":53,"location":"South Williamhaven"}},{"attributes":{"name":"Patti Grimes","age":18,"location":"East Marlee"}},{"attributes":{"name":"Zachary Johnson","age":73,"location":"Orem"}},{"attributes":{"name":"Derrick Trantow","age":52,"location":"Kirlinland"}},{"attributes":{"name":"Jenny Greenfelder Sr.","age":37,"location":"Midland"}},{"attributes":{"name":"Bethany Swaniawski","age":55,"location":"East Evan"}},{"attributes":{"name":"Viva Leannon","age":63,"location":"Kuhictown"}},{"attributes":{"name":"Andy Gleichner","age":52,"location":"Harrisonburg"}},{"attributes":{"name":"Consuelo Shields","age":42,"location":"West Tristianberg"}},{"attributes":{"name":"Brandon Legros","age":70,"location":"Lednerchester"}},{"attributes":{"name":"Gaetano Ferry","age":72,"location":"La Crosse"}},{"attributes":{"name":"Bernard Barrows","age":71,"location":"Great Falls"}},{"attributes":{"name":"Mercedes Boehm","age":34,"location":"New Jorgeshire"}},{"attributes":{"name":"Karla Toy","age":31,"location":"Lafayette"}},{"attributes":{"name":"Ayana Donnelly DDS","age":41,"location":"Port Jaidenborough"}},{"attributes":{"name":"Yadira Sanford","age":67,"location":"Baileystad"}},{"attributes":{"name":"Dr. Larry Bode","age":27,"location":"Welchhaven"}},{"attributes":{"name":"Irma Johnson PhD","age":36,"location":"Santa Rosa"}},{"attributes":{"name":"Essie Bailey DDS","age":76,"location":"Maudiemouth"}},{"attributes":{"name":"Trevor Rice","age":45,"location":"Lake Ellis"}},{"attributes":{"name":"Trenton Kihn","age":37,"location":"Warner Robins"}},{"attributes":{"name":"Ivory Kuvalis","age":76,"location":"New Garlandstad"}},{"attributes":{"name":"Willie Will-Homenick","age":38,"location":"New Lesly"}},{"attributes":{"name":"Ms. Annalise Paucek","age":59,"location":"West Tellychester"}},{"attributes":{"name":"Jerad Goyette","age":80,"location":"Lake Kadeville"}},{"attributes":{"name":"Gail Frami","age":26,"location":"Batzberg"}},{"attributes":{"name":"Roman Pfeffer","age":18,"location":"Allenfield"}},{"attributes":{"name":"Jess Kulas","age":28,"location":"Fadelfort"}},{"attributes":{"name":"Kyle Hilll-Jacobs","age":69,"location":"East Romaine"}},{"attributes":{"name":"Kaelyn Dibbert","age":23,"location":"Wardshire"}},{"attributes":{"name":"Kasey Becker","age":74,"location":"Adelafurt"}},{"attributes":{"name":"Maximilian Abbott","age":66,"location":"Sioux City"}},{"attributes":{"name":"John Kiehn","age":67,"location":"Ruthiestad"}},{"attributes":{"name":"Candace Torp","age":60,"location":"Fort Madisyn"}},{"attributes":{"name":"Kellie Rau","age":26,"location":"Morganworth"}},{"attributes":{"name":"Sherri Turner","age":71,"location":"Geoview"}},{"attributes":{"name":"Karina Bayer","age":41,"location":"Avisbury"}},{"attributes":{"name":"Dustin Kohler","age":25,"location":"Rippintown"}},{"attributes":{"name":"Jake Collins","age":38,"location":"Walterfort"}},{"attributes":{"name":"Jamal Jakubowski","age":62,"location":"Baton Rouge"}},{"attributes":{"name":"Jairo Bartoletti","age":44,"location":"Hankshire"}},{"attributes":{"name":"Crystal Hagenes","age":29,"location":"South Reginald"}},{"attributes":{"name":"Todd Auer","age":31,"location":"East Brielleview"}},{"attributes":{"name":"Kay Kshlerin I","age":27,"location":"East Corrineworth"}},{"attributes":{"name":"Mr. Brett Bahringer IV","age":37,"location":"New Mortonborough"}},{"attributes":{"name":"Daniel Pfeffer-Brekke","age":21,"location":"South Estelmouth"}},{"attributes":{"name":"Clarabelle Mann","age":39,"location":"East Oda"}},{"attributes":{"name":"Vallie Fadel","age":47,"location":"Dejontown"}},{"attributes":{"name":"Deven McClure","age":18,"location":"South Marielleshire"}},{"attributes":{"name":"Bernard Herman","age":42,"location":"Jarodborough"}},{"attributes":{"name":"Angelina Swaniawski","age":34,"location":"O'Connellfort"}},{"attributes":{"name":"Margarita Lehner","age":33,"location":"Elishafurt"}},{"attributes":{"name":"Frankie Klein","age":56,"location":"South Krystelstad"}},{"attributes":{"name":"Dr. Noelia Smitham","age":50,"location":"North Griffinville"}},{"attributes":{"name":"Mamie Witting","age":40,"location":"West Blaze"}},{"attributes":{"name":"Homer Anderson","age":80,"location":"Quigleyview"}},{"attributes":{"name":"Fernando Robel","age":68,"location":"Lake Koby"}},{"attributes":{"name":"Hubert Volkman IV","age":29,"location":"Mrazbury"}},{"attributes":{"name":"Bobbie Johnson","age":72,"location":"East Williston"}},{"attributes":{"name":"Gwen Jones","age":53,"location":"Bernhardside"}},{"attributes":{"name":"Edgar Thiel","age":32,"location":"Cedar Hill"}},{"attributes":{"name":"Phillip Moen","age":29,"location":"Palm Beach Gardens"}},{"attributes":{"name":"Christina Lebsack","age":76,"location":"Marvinboro"}},{"attributes":{"name":"Maggie Schneider","age":22,"location":"Port Quincy"}},{"attributes":{"name":"Woodrow Hand","age":54,"location":"West Peggiefield"}},{"attributes":{"name":"Elvis Willms","age":65,"location":"Fort Damon"}},{"attributes":{"name":"Madeline Rau","age":22,"location":"Nashville-Davidson"}},{"attributes":{"name":"Darla Johnston","age":57,"location":"East Hardyport"}},{"attributes":{"name":"Marc Mante","age":50,"location":"Oletaberg"}},{"attributes":{"name":"Ernest Friesen","age":24,"location":"Isobelshire"}},{"attributes":{"name":"Arnulfo Runolfsson","age":37,"location":"Fort Houstonfurt"}},{"attributes":{"name":"Lauren Casper V","age":62,"location":"Irvine"}},{"attributes":{"name":"Irving Schimmel","age":70,"location":"East Kaleyton"}},{"attributes":{"name":"Cordelia Hane","age":50,"location":"Samirside"}},{"attributes":{"name":"Shawn Brown","age":19,"location":"Hialeah"}},{"attributes":{"name":"Dominic Kessler","age":28,"location":"West Kathrynefurt"}},{"attributes":{"name":"Marina Witting","age":68,"location":"Marlenborough"}},{"attributes":{"name":"Gwendolyn Dibbert","age":68,"location":"Port Brooks"}},{"attributes":{"name":"Mr. Raquel Mueller","age":69,"location":"Fort Mariam"}},{"attributes":{"name":"Guadalupe Steuber","age":33,"location":"Lake Gerard"}},{"attributes":{"name":"Miss Pat Torphy","age":44,"location":"Heaneyland"}},{"attributes":{"name":"Tracy Stroman","age":27,"location":"Hellerview"}},{"attributes":{"name":"Mr. Mitchell Ortiz","age":23,"location":"Lake Cullen"}},{"attributes":{"name":"Mr. Gilberto Conn","age":30,"location":"Mustafashire"}},{"attributes":{"name":"Wm Spencer","age":69,"location":"West Jordan"}},{"attributes":{"name":"Amanda Rippin","age":55,"location":"Lake Nicolette"}},{"attributes":{"name":"Sammy Hansen","age":20,"location":"Gustaveworth"}},{"attributes":{"name":"Luella Funk","age":38,"location":"New Clair"}},{"attributes":{"name":"Lee Stracke","age":36,"location":"South Chester"}},{"attributes":{"name":"Ashtyn Langosh Jr.","age":66,"location":"Cape Coral"}},{"attributes":{"name":"Tobin Balistreri","age":73,"location":"East Elwyntown"}},{"attributes":{"name":"Taryn Romaguera","age":35,"location":"East Conradville"}},{"attributes":{"name":"Esther Hyatt","age":27,"location":"North Marielaside"}},{"attributes":{"name":"Don Haag","age":26,"location":"Fort Evalynborough"}},{"attributes":{"name":"Rosemary Schaden","age":64,"location":"Fort Elyseborough"}},{"attributes":{"name":"Brooke Leffler","age":35,"location":"Lefflerbury"}},{"attributes":{"name":"Kenneth Hoeger","age":31,"location":"Lauderhill"}},{"attributes":{"name":"Reanna Gislason","age":68,"location":"Deerfield Beach"}},{"attributes":{"name":"Barbara Tillman-Medhurst PhD","age":28,"location":"Schmelerchester"}},{"attributes":{"name":"Devin Gorczany","age":36,"location":"Lake Cale"}},{"attributes":{"name":"Sharon Kub","age":29,"location":"Lake Damonville"}},{"attributes":{"name":"Scottie Nader","age":66,"location":"Fort Cristianshire"}},{"attributes":{"name":"Burley Brekke","age":34,"location":"McCulloughland"}},{"attributes":{"name":"Carmel Runolfsson","age":25,"location":"North Laron"}},{"attributes":{"name":"Deja Brown","age":21,"location":"East Hailieland"}},{"attributes":{"name":"Elisha Hintz","age":58,"location":"Jastfield"}},{"attributes":{"name":"Junior Maggio","age":26,"location":"Scottsdale"}},{"attributes":{"name":"Malcolm Emard","age":48,"location":"Vernieburgh"}},{"attributes":{"name":"Molly Schultz","age":69,"location":"Port Cristopher"}},{"attributes":{"name":"Cynthia Lehner","age":25,"location":"Hesselberg"}},{"attributes":{"name":"Mavis Haley","age":61,"location":"Oceanside"}},{"attributes":{"name":"Mike Rutherford-Grimes","age":36,"location":"Gorczanyshire"}},{"attributes":{"name":"Braeden Cummerata","age":54,"location":"South Delphashire"}},{"attributes":{"name":"Monique Funk","age":36,"location":"North Margueritefort"}},{"attributes":{"name":"Belinda Hermann","age":25,"location":"East Florencio"}},{"attributes":{"name":"Kathleen Frami-Wisoky","age":37,"location":"Hintzton"}},{"attributes":{"name":"Darrin Sauer","age":56,"location":"Sandy Springs"}},{"attributes":{"name":"Jaylen Hudson","age":49,"location":"Sarasota"}},{"attributes":{"name":"Leah Sporer","age":49,"location":"North Alfurt"}},{"attributes":{"name":"Brice Okuneva","age":72,"location":"Brakusside"}},{"attributes":{"name":"Jean Cummings","age":44,"location":"Adamsboro"}},{"attributes":{"name":"Ole Luettgen","age":34,"location":"North Davon"}},{"attributes":{"name":"Clovis Hoppe","age":69,"location":"New Seanmouth"}},{"attributes":{"name":"Dulce Doyle","age":35,"location":"Lake Dashawnfield"}},{"attributes":{"name":"Latoya Dooley","age":66,"location":"Archibaldchester"}},{"attributes":{"name":"Ed Schaefer","age":44,"location":"Tylershire"}},{"attributes":{"name":"Jasmine Grant","age":42,"location":"New Amber"}},{"attributes":{"name":"Mark Cassin","age":74,"location":"Fort Katlynnton"}},{"attributes":{"name":"Norma Rath","age":80,"location":"Port Kianashire"}},{"attributes":{"name":"Phil Hermann","age":51,"location":"Ocala"}},{"attributes":{"name":"Dr. Columbus Bradtke","age":69,"location":"O'Keefeboro"}},{"attributes":{"name":"Gwendolyn Dietrich","age":25,"location":"Nicolaton"}},{"attributes":{"name":"Jacob Brekke","age":62,"location":"Townestead"}},{"attributes":{"name":"Gordon Larson IV","age":70,"location":"Port Kentonfield"}},{"attributes":{"name":"Alia Labadie","age":47,"location":"Macejkovicton"}},{"attributes":{"name":"Gordon Spinka","age":46,"location":"Weberport"}},{"attributes":{"name":"Lupe O'Keefe","age":20,"location":"Buckeye"}},{"attributes":{"name":"Laurie Kling","age":24,"location":"Darrellboro"}},{"attributes":{"name":"Kayleigh Kulas","age":48,"location":"Brandon"}},{"attributes":{"name":"Glenda Lowe","age":40,"location":"Kissimmee"}},{"attributes":{"name":"Boyd Grant","age":57,"location":"Taylor"}},{"attributes":{"name":"Luciano Stokes","age":69,"location":"South Aftonworth"}},{"attributes":{"name":"Jo Shanahan","age":67,"location":"West Linniehaven"}},{"attributes":{"name":"Opal Dickens","age":29,"location":"West Yoshikotown"}},{"attributes":{"name":"Taylor Kshlerin I","age":74,"location":"Collierburgh"}},{"attributes":{"name":"Hector Keeling-Ritchie","age":18,"location":"Aydenshire"}},{"attributes":{"name":"Jensen Mayert","age":31,"location":"Crooksshire"}},{"attributes":{"name":"Mrs. Bartholome Carroll","age":29,"location":"Port St. Lucie"}},{"attributes":{"name":"Ms. Rickie Moen","age":44,"location":"Port Lucileside"}},{"attributes":{"name":"Zita Gottlieb","age":58,"location":"Lucienneborough"}},{"attributes":{"name":"Alverta Heathcote","age":75,"location":"East Terrencebury"}},{"attributes":{"name":"Tina Kohler","age":79,"location":"Port Johnmouth"}},{"attributes":{"name":"Harry Mayer","age":60,"location":"Kovacekshire"}},{"attributes":{"name":"Jake Tremblay","age":46,"location":"Bristol"}},{"attributes":{"name":"Laura Armstrong","age":47,"location":"Fort Jordaneside"}},{"attributes":{"name":"Dominic Kunde","age":31,"location":"Lucioshire"}},{"attributes":{"name":"Brad Boyer","age":70,"location":"Murphymouth"}},{"attributes":{"name":"Kimberly Leffler","age":52,"location":"Celestineburgh"}},{"attributes":{"name":"Angel Steuber","age":29,"location":"Gladyceport"}},{"attributes":{"name":"Wade Hoeger","age":44,"location":"Lakinfield"}},{"attributes":{"name":"Leslie Ratke","age":62,"location":"New Kamryn"}},{"attributes":{"name":"Arvel Heaney","age":43,"location":"San Clemente"}},{"attributes":{"name":"Mandy Johns","age":65,"location":"Malden"}},{"attributes":{"name":"Scott Hoppe","age":24,"location":"Beaumont"}},{"attributes":{"name":"Shaun Luettgen","age":22,"location":"Yuma"}},{"attributes":{"name":"Lynette Muller","age":56,"location":"Schenectady"}},{"attributes":{"name":"Juana D'Amore","age":64,"location":"New Osvaldo"}},{"attributes":{"name":"Mark Ward","age":42,"location":"Port Miles"}},{"attributes":{"name":"Candace Bruen","age":66,"location":"Windlerburgh"}},{"attributes":{"name":"Eudora Murray","age":75,"location":"Port Cierra"}},{"attributes":{"name":"Diana Koss","age":31,"location":"Utica"}},{"attributes":{"name":"Allen Schuster","age":24,"location":"North Highlands"}},{"attributes":{"name":"Rico Yost","age":68,"location":"Fort Kaci"}},{"attributes":{"name":"Abdiel Muller","age":65,"location":"North Citlalli"}},{"attributes":{"name":"Lucas Davis DDS","age":55,"location":"Port Martin"}},{"attributes":{"name":"Brent Tromp","age":47,"location":"Bogantown"}},{"attributes":{"name":"Hattie McKenzie","age":27,"location":"Gaithersburg"}},{"attributes":{"name":"Tamara Schroeder","age":40,"location":"Nashville-Davidson"}},{"attributes":{"name":"Ian Armstrong","age":56,"location":"Lake Chazside"}},{"attributes":{"name":"Dr. Jazmyne Schmitt","age":24,"location":"Fort Isacfort"}},{"attributes":{"name":"Tiffany Hahn","age":68,"location":"Lake Cassandrestad"}},{"attributes":{"name":"Estella Ferry","age":48,"location":"New Darius"}},{"attributes":{"name":"Mr. Nora Hilll-Feil","age":19,"location":"New Vaughnview"}},{"attributes":{"name":"Newton Davis","age":50,"location":"North Sydniton"}},{"attributes":{"name":"Pierce Corwin","age":39,"location":"Tiannaburgh"}},{"attributes":{"name":"Lonzo Lebsack","age":55,"location":"Port Marion"}},{"attributes":{"name":"Jessie Torp-Bruen","age":56,"location":"North Cruz"}},{"attributes":{"name":"Mandy Mitchell","age":69,"location":"Hoegershire"}},{"attributes":{"name":"Lorenzo Rolfson","age":65,"location":"Fort Dortha"}},{"attributes":{"name":"Leatha Braun","age":72,"location":"Lake Olin"}},{"attributes":{"name":"Leslie Schamberger","age":29,"location":"Port Icie"}},{"attributes":{"name":"Lizeth Bailey","age":53,"location":"Yundtfort"}},{"attributes":{"name":"Kiara Botsford","age":75,"location":"West Jordan"}},{"attributes":{"name":"Vernon Rosenbaum","age":20,"location":"Lake Chesterport"}},{"attributes":{"name":"Charles Hyatt","age":23,"location":"Ilenemouth"}},{"attributes":{"name":"Wilbert Parker","age":80,"location":"Fort Elzafort"}},{"attributes":{"name":"Winston Haley","age":23,"location":"Bogisichview"}},{"attributes":{"name":"Corrine Morissette II","age":78,"location":"Kokomo"}},{"attributes":{"name":"Bessie Jaskolski","age":45,"location":"Margate"}},{"attributes":{"name":"Michaela Grady","age":53,"location":"Lednerhaven"}},{"attributes":{"name":"Roosevelt Gottlieb","age":75,"location":"Port Oletafort"}},{"attributes":{"name":"Teresa Daugherty","age":30,"location":"Providence"}},{"attributes":{"name":"Bryce Wisoky","age":24,"location":"South Akeem"}},{"attributes":{"name":"Janet Barton","age":75,"location":"Kendale Lakes"}},{"attributes":{"name":"Marc Heller","age":42,"location":"Aryannaville"}},{"attributes":{"name":"Daniella Osinski","age":18,"location":"Escondido"}},{"attributes":{"name":"Ms. Janie Spinka","age":21,"location":"Rhiannonworth"}},{"attributes":{"name":"Lewis Greenholt","age":32,"location":"West Kevin"}},{"attributes":{"name":"Jewel Prohaska","age":37,"location":"Homenickberg"}},{"attributes":{"name":"David Boyle","age":44,"location":"Brisahaven"}},{"attributes":{"name":"Cruz Green","age":64,"location":"Katherineberg"}},{"attributes":{"name":"Mrs. Benedict Tillman","age":56,"location":"Jaredworth"}},{"attributes":{"name":"Hannah Haley","age":42,"location":"Jaststead"}},{"attributes":{"name":"Kayleigh Vandervort","age":32,"location":"Immanuelworth"}},{"attributes":{"name":"Enrique Barrows Jr.","age":53,"location":"Pueblo"}},{"attributes":{"name":"Mr. Santa Harris","age":62,"location":"South Clareberg"}},{"attributes":{"name":"Marcos Hamill","age":44,"location":"South Silas"}},{"attributes":{"name":"Milton Kuhn-Christiansen","age":76,"location":"North Sabinaville"}},{"attributes":{"name":"Francis Jerde","age":47,"location":"East Halliefurt"}},{"attributes":{"name":"Walter Bernier II","age":75,"location":"Georgianaburgh"}},{"attributes":{"name":"Abdiel Jones","age":33,"location":"North Velvachester"}},{"attributes":{"name":"Foster Fahey","age":63,"location":"Colorado Springs"}},{"attributes":{"name":"Trudie Zieme","age":56,"location":"Arianeton"}},{"attributes":{"name":"Edith Legros","age":44,"location":"Fort Abestad"}},{"attributes":{"name":"Lawrence Oberbrunner","age":72,"location":"Jaymeside"}},{"attributes":{"name":"Julius Schimmel","age":46,"location":"South Enamouth"}},{"attributes":{"name":"Mrs. Brandyn Larson-Beier","age":63,"location":"Glen Burnie"}},{"attributes":{"name":"Adrian Abbott","age":32,"location":"Richardborough"}},{"attributes":{"name":"Dr. Norberto Hayes","age":60,"location":"North Normachester"}},{"attributes":{"name":"Mrs. Winfield Casper","age":40,"location":"New Neva"}},{"attributes":{"name":"Kamron Kreiger II","age":44,"location":"Fort Katharina"}},{"attributes":{"name":"Ms. Casey Dooley","age":56,"location":"Palm Desert"}},{"attributes":{"name":"Jessie Kertzmann","age":53,"location":"South Ilianabury"}},{"attributes":{"name":"Mark Schowalter","age":59,"location":"Evanstown"}},{"attributes":{"name":"Leann Russel","age":67,"location":"North Claud"}},{"attributes":{"name":"Caroline Kling MD","age":44,"location":"South Cloyd"}},{"attributes":{"name":"Samson Padberg","age":47,"location":"Kassulkefield"}},{"attributes":{"name":"Linda Douglas","age":79,"location":"Johnson City"}},{"attributes":{"name":"Miss Katheryn Grady V","age":70,"location":"Florencioland"}},{"attributes":{"name":"Louise Lowe","age":34,"location":"Fort Asia"}},{"attributes":{"name":"Elvira Beier","age":29,"location":"Haskellstead"}},{"attributes":{"name":"Scott Sawayn Jr.","age":78,"location":"North Joannietown"}},{"attributes":{"name":"Osbaldo Konopelski","age":34,"location":"Beaverton"}},{"attributes":{"name":"Joesph Paucek","age":30,"location":"Altadena"}},{"attributes":{"name":"Rachel Daniel","age":59,"location":"Gulgowskiside"}},{"attributes":{"name":"Karlee Jacobi DVM","age":71,"location":"Hesselport"}},{"attributes":{"name":"Perry Sawayn","age":30,"location":"West Sadie"}},{"attributes":{"name":"Mercedes Kshlerin PhD","age":57,"location":"Cruickshankberg"}},{"attributes":{"name":"Whitney Connelly","age":78,"location":"Port Mayburgh"}},{"attributes":{"name":"Garfield Bergnaum","age":29,"location":"Titusville"}},{"attributes":{"name":"Chaim King","age":33,"location":"Avachester"}},{"attributes":{"name":"Dr. Douglas McGlynn Jr.","age":58,"location":"Kimberlychester"}},{"attributes":{"name":"Mildred Lind","age":29,"location":"Bothell"}},{"attributes":{"name":"Byron Kreiger","age":29,"location":"Kokomo"}},{"attributes":{"name":"Billie Haag V","age":36,"location":"Rafaeltown"}},{"attributes":{"name":"Sandy Mueller","age":19,"location":"Waukegan"}},{"attributes":{"name":"Odessa Leuschke III","age":38,"location":"Michaleside"}},{"attributes":{"name":"Rosemarie Rath","age":62,"location":"Hyattshire"}},{"attributes":{"name":"Clara Pagac","age":48,"location":"Emmiestad"}},{"attributes":{"name":"Clyde Orn","age":44,"location":"Hicksville"}},{"attributes":{"name":"Ashley Kuvalis","age":44,"location":"Wildermanchester"}},{"attributes":{"name":"Dora Emmerich","age":21,"location":"West Edward"}},{"attributes":{"name":"Tonya Konopelski","age":57,"location":"Fort Alysa"}},{"attributes":{"name":"Carolyne McLaughlin","age":33,"location":"Redwood City"}},{"attributes":{"name":"Noel Herzog","age":67,"location":"Moenside"}},{"attributes":{"name":"Roberto Harris","age":43,"location":"South Raeganfurt"}},{"attributes":{"name":"Darren Wolf","age":42,"location":"Kearny"}},{"attributes":{"name":"Marlene Hamill","age":30,"location":"East Donny"}},{"attributes":{"name":"Ron Wiegand","age":20,"location":"East Lawrence"}},{"attributes":{"name":"Mr. Randall Smith","age":65,"location":"Fort Andreanetown"}},{"attributes":{"name":"Blanca Kuhic III","age":73,"location":"Grimeschester"}},{"attributes":{"name":"Mrs. Aubrey Murray-Strosin","age":31,"location":"North Carmine"}},{"attributes":{"name":"Donna Nicolas","age":40,"location":"Sandy"}},{"attributes":{"name":"Jean Christiansen","age":26,"location":"Lake Melanyboro"}},{"attributes":{"name":"Mrs. Megan Wilkinson","age":53,"location":"Stoneshire"}},{"attributes":{"name":"Jena Pagac","age":41,"location":"Town 'n' Country"}},{"attributes":{"name":"Rafael Kohler","age":63,"location":"New Tate"}},{"attributes":{"name":"Benjamin Baumbach","age":24,"location":"Riceside"}},{"attributes":{"name":"Tim Wolff IV","age":68,"location":"South Chancemouth"}},{"attributes":{"name":"Crawford Dickinson","age":75,"location":"Kulasberg"}},{"attributes":{"name":"Nat Homenick","age":40,"location":"Corona"}},{"attributes":{"name":"Maximilian Watsica","age":58,"location":"Breanahaven"}},{"attributes":{"name":"Eula Stracke","age":47,"location":"Fort Matt"}},{"attributes":{"name":"Shayne Schinner","age":30,"location":"New Britney"}},{"attributes":{"name":"Paris Jerde","age":75,"location":"Fresno"}},{"attributes":{"name":"Else Rempel","age":63,"location":"Chelseafort"}},{"attributes":{"name":"Clifford Hartmann","age":25,"location":"Satterfieldburgh"}},{"attributes":{"name":"Gerardo Konopelski","age":38,"location":"Krisville"}},{"attributes":{"name":"Yolanda Pagac PhD","age":28,"location":"Walkertown"}},{"attributes":{"name":"Cathrine Schmeler","age":23,"location":"Kingfurt"}},{"attributes":{"name":"Jaida Lueilwitz","age":29,"location":"Schowalterstad"}},{"attributes":{"name":"April O'Connell","age":55,"location":"Lillianberg"}},{"attributes":{"name":"Allison Ferry","age":26,"location":"Hahnstad"}},{"attributes":{"name":"Akeem Hammes MD","age":48,"location":"Tulsa"}},{"attributes":{"name":"Israel Sauer","age":71,"location":"West Ciceroborough"}},{"attributes":{"name":"Odessa Bartell","age":33,"location":"Annetteworth"}},{"attributes":{"name":"Dr. Yvette Blick","age":40,"location":"South Adamshire"}},{"attributes":{"name":"Martha Christiansen","age":68,"location":"Hadleychester"}},{"attributes":{"name":"Enrique Murray","age":51,"location":"Torphyport"}},{"attributes":{"name":"Isabel Russel","age":64,"location":"East Haydenfurt"}},{"attributes":{"name":"Ms. Leona Howell-King","age":60,"location":"Lake Brenda"}},{"attributes":{"name":"Kacie Cole Sr.","age":23,"location":"Madera"}},{"attributes":{"name":"Lila Haag","age":51,"location":"Armandofurt"}},{"attributes":{"name":"Monica Crooks PhD","age":78,"location":"Fort Ollieport"}},{"attributes":{"name":"Marcella Brown","age":47,"location":"El Centro"}},{"attributes":{"name":"Micheal Schaefer","age":45,"location":"Fort Viva"}},{"attributes":{"name":"Geovanni Schaden IV","age":74,"location":"East Linnieberg"}},{"attributes":{"name":"Wendell Denesik","age":51,"location":"Fort Delilah"}},{"attributes":{"name":"Dr. Tiffany Von","age":42,"location":"Marjoryshire"}},{"attributes":{"name":"Chadd Kunze","age":79,"location":"Karenfort"}},{"attributes":{"name":"Mr. Randal Mraz","age":67,"location":"Levittown"}},{"attributes":{"name":"Mrs. Alvina Jerde","age":19,"location":"West Dereck"}},{"attributes":{"name":"Jeffery Prosacco","age":22,"location":"East Alysafurt"}},{"attributes":{"name":"Daniel Paucek","age":51,"location":"Yonkers"}},{"attributes":{"name":"Richie Kozey","age":46,"location":"Port Lorenzachester"}},{"attributes":{"name":"Isabel Bayer","age":71,"location":"South Peter"}},{"attributes":{"name":"Jody Daniel","age":55,"location":"Dietrichcester"}},{"attributes":{"name":"Kylee Grady","age":22,"location":"Quitzonchester"}},{"attributes":{"name":"Hester Hamill","age":36,"location":"Normachester"}},{"attributes":{"name":"Edwin Smith","age":68,"location":"North Milfordburgh"}},{"attributes":{"name":"Luz Kertzmann","age":18,"location":"East Georgianafurt"}},{"attributes":{"name":"Dr. Abdul Donnelly","age":69,"location":"Altamonte Springs"}},{"attributes":{"name":"Nina Lebsack","age":38,"location":"Lueilwitzhaven"}},{"attributes":{"name":"Dr. Roosevelt Jakubowski","age":51,"location":"Port Gaston"}},{"attributes":{"name":"Derek Sauer","age":50,"location":"West Erichchester"}},{"attributes":{"name":"Mr. Clifton Trantow","age":38,"location":"Canton"}},{"attributes":{"name":"Marlon Spencer","age":75,"location":"Kaylafield"}},{"attributes":{"name":"Natalie Lebsack","age":48,"location":"Kissimmee"}},{"attributes":{"name":"Jaden Rowe","age":46,"location":"Fort Josefinafield"}},{"attributes":{"name":"Fred Cassin","age":67,"location":"North Cecilstead"}},{"attributes":{"name":"Narciso Hettinger I","age":62,"location":"Aurelioboro"}},{"attributes":{"name":"Deanna Terry","age":33,"location":"South Sageshire"}},{"attributes":{"name":"Cornelius Ritchie","age":61,"location":"Newport News"}},{"attributes":{"name":"Devin Lynch","age":51,"location":"San Ramon"}},{"attributes":{"name":"Liza Morar","age":18,"location":"West Kamron"}},{"attributes":{"name":"Walter Gleichner","age":40,"location":"Port Thaliafield"}},{"attributes":{"name":"Yesenia Pouros","age":61,"location":"South Kayleeside"}},{"attributes":{"name":"Jevon Walter","age":19,"location":"Lake Ridge"}},{"attributes":{"name":"Dr. Gustavo Runolfsdottir DVM","age":20,"location":"West Allis"}},{"attributes":{"name":"Isom Kessler","age":68,"location":"New Lazarostad"}},{"attributes":{"name":"Marcia Funk II","age":60,"location":"Pompano Beach"}},{"attributes":{"name":"Candace Bashirian II","age":61,"location":"Aloha"}},{"attributes":{"name":"Aileen Lockman","age":76,"location":"Lake Cameronville"}},{"attributes":{"name":"Sean Ferry","age":46,"location":"Stantonfort"}},{"attributes":{"name":"Cyril Osinski I","age":27,"location":"Torphyport"}},{"attributes":{"name":"Ira Huel","age":66,"location":"Fort Pierce"}},{"attributes":{"name":"Lance Turcotte","age":19,"location":"Beahanstead"}},{"attributes":{"name":"Hope Nicolas","age":48,"location":"Gloverstad"}},{"attributes":{"name":"Cary Paucek","age":54,"location":"Port Stuartstead"}},{"attributes":{"name":"Yolanda Lynch","age":80,"location":"Port Robertoboro"}},{"attributes":{"name":"Mrs. Jerald Johns","age":80,"location":"Atlanta"}},{"attributes":{"name":"Nigel Beier","age":74,"location":"Anastaciohaven"}},{"attributes":{"name":"Dr. Flo O'Keefe DVM","age":55,"location":"Wilkinsonstead"}},{"attributes":{"name":"Jerod Ryan","age":64,"location":"Heaneyfurt"}},{"attributes":{"name":"Dominick Jacobson","age":78,"location":"Torphyboro"}},{"attributes":{"name":"Ryan Marquardt","age":33,"location":"Loyshire"}},{"attributes":{"name":"Angelo Sauer DDS","age":52,"location":"Aliafield"}},{"attributes":{"name":"Shaun Beatty","age":54,"location":"Wardport"}},{"attributes":{"name":"Brianne Weimann-Bergnaum","age":64,"location":"Port Mae"}},{"attributes":{"name":"Melyssa Flatley MD","age":41,"location":"Letitiastad"}},{"attributes":{"name":"Alfredo Cassin","age":55,"location":"New Cecile"}},{"attributes":{"name":"Mrs. Carla Mills V","age":76,"location":"Fort Genefurt"}},{"attributes":{"name":"Rachael Hodkiewicz","age":66,"location":"Janelleland"}},{"attributes":{"name":"Fausto Reichel","age":34,"location":"Rolfsonshire"}},{"attributes":{"name":"Dewey Barton","age":64,"location":"Rasheedmouth"}},{"attributes":{"name":"Genevieve Ferry","age":55,"location":"Welchport"}},{"attributes":{"name":"Spencer Quitzon PhD","age":45,"location":"West Ilianaburgh"}},{"attributes":{"name":"Madeline Rolfson","age":44,"location":"Kansas City"}},{"attributes":{"name":"Lorraine Kulas-Roob","age":46,"location":"Klington"}},{"attributes":{"name":"Diego Weissnat","age":38,"location":"South Francisca"}},{"attributes":{"name":"Stuart Turner","age":39,"location":"New Rhianna"}},{"attributes":{"name":"Antonio Swaniawski","age":37,"location":"Napa"}},{"attributes":{"name":"Gerald Gislason","age":52,"location":"Huntington"}},{"attributes":{"name":"Faith Hoeger","age":69,"location":"Kansas City"}},{"attributes":{"name":"Darrin Nikolaus","age":37,"location":"South Rita"}},{"attributes":{"name":"Demarco Corkery IV","age":30,"location":"Kutchhaven"}},{"attributes":{"name":"Osvaldo Carter","age":68,"location":"Bradyberg"}},{"attributes":{"name":"Dr. Dale Ritchie-Mohr","age":60,"location":"Alexandria"}},{"attributes":{"name":"Alisa Morissette","age":70,"location":"Clotildefield"}},{"attributes":{"name":"Virgil Oberbrunner","age":25,"location":"South Junior"}},{"attributes":{"name":"Abel Reichel","age":18,"location":"South Juneside"}},{"attributes":{"name":"Kamryn Halvorson","age":42,"location":"Derrickton"}},{"attributes":{"name":"Aubrey Krajcik","age":54,"location":"Fort Kade"}},{"attributes":{"name":"Leland Russel","age":43,"location":"Streichcester"}},{"attributes":{"name":"Lula Cormier-McKenzie","age":65,"location":"West Haven"}},{"attributes":{"name":"Elvira Jerde","age":50,"location":"Littelcester"}},{"attributes":{"name":"Shawn Krajcik","age":57,"location":"Minnetonka"}},{"attributes":{"name":"Edith Bradtke","age":32,"location":"North Rick"}},{"attributes":{"name":"Marlon Waters","age":31,"location":"Bobbyboro"}},{"attributes":{"name":"Diana Muller","age":36,"location":"Aubreyland"}},{"attributes":{"name":"Jedidiah Raynor","age":55,"location":"Krajcikton"}},{"attributes":{"name":"Pablo Bode","age":49,"location":"Jessport"}},{"attributes":{"name":"Mauricio Koch","age":64,"location":"Jazmynberg"}},{"attributes":{"name":"Evelyn Schimmel","age":48,"location":"Lehnerworth"}},{"attributes":{"name":"Ricky Lehner","age":53,"location":"Miltonshire"}},{"attributes":{"name":"Sarah Senger","age":32,"location":"Colleenville"}},{"attributes":{"name":"Lenore Rau","age":33,"location":"Port Irmabury"}},{"attributes":{"name":"Jan Stoltenberg","age":22,"location":"Schinnerboro"}},{"attributes":{"name":"Terrence Torphy","age":31,"location":"Gorczanyview"}},{"attributes":{"name":"Nellie Cronin","age":67,"location":"San Francisco"}},{"attributes":{"name":"Shelia Homenick","age":42,"location":"Daishaland"}},{"attributes":{"name":"Alexis Wisozk","age":52,"location":"Medhurstfield"}},{"attributes":{"name":"Diane Harris","age":21,"location":"Ziemannshire"}},{"attributes":{"name":"Luis Hoeger","age":69,"location":"South Emmieboro"}},{"attributes":{"name":"Melinda Pfannerstill","age":32,"location":"Gutmannboro"}},{"attributes":{"name":"Elias Kreiger","age":19,"location":"Severn"}},{"attributes":{"name":"Eric Parker","age":27,"location":"Burlington"}},{"attributes":{"name":"Willa Bartoletti","age":74,"location":"South Abbey"}},{"attributes":{"name":"Myron Von V","age":79,"location":"East Cristopher"}},{"attributes":{"name":"Dr. Carley Stracke","age":38,"location":"Gilbertoberg"}},{"attributes":{"name":"Johnnie Shields","age":64,"location":"Port Alexandra"}},{"attributes":{"name":"Lori Lueilwitz","age":76,"location":"East Conner"}},{"attributes":{"name":"Lindsey Lang","age":50,"location":"Israelstead"}},{"attributes":{"name":"Kelvin Yost-Wintheiser","age":29,"location":"Nolanstad"}},{"attributes":{"name":"Ethel Jacobi Jr.","age":67,"location":"North Lavon"}},{"attributes":{"name":"Frankie Oberbrunner MD","age":78,"location":"Lake Renee"}},{"attributes":{"name":"Dana Reinger","age":50,"location":"Port Aubreyboro"}},{"attributes":{"name":"Landen Vandervort-Rippin","age":32,"location":"West Estel"}},{"attributes":{"name":"Bryant Marquardt","age":23,"location":"Lake Dewitt"}},{"attributes":{"name":"Denise Lockman","age":69,"location":"Reedberg"}},{"attributes":{"name":"Lacey Daniel PhD","age":20,"location":"West Alexside"}},{"attributes":{"name":"Blanca Schmidt","age":33,"location":"Goodwinport"}},{"attributes":{"name":"Darnell Turcotte","age":50,"location":"North Magnoliaport"}},{"attributes":{"name":"Luther Gutmann","age":35,"location":"Milliefort"}},{"attributes":{"name":"Mike Hoeger","age":80,"location":"Marciachester"}},{"attributes":{"name":"Emmanuel Kilback","age":45,"location":"Elenachester"}},{"attributes":{"name":"Trever Weber","age":65,"location":"Seattle"}},{"attributes":{"name":"Yvette Treutel","age":65,"location":"Kirlinview"}},{"attributes":{"name":"Jayne Reichel","age":71,"location":"Alenemouth"}},{"attributes":{"name":"Bobby VonRueden V","age":59,"location":"Hillsboro"}},{"attributes":{"name":"Dawn Halvorson II","age":70,"location":"Reneburgh"}},{"attributes":{"name":"Yvonne Crona","age":31,"location":"New Candelario"}},{"attributes":{"name":"Ricky Langosh","age":28,"location":"Stokesburgh"}},{"attributes":{"name":"Alvina Collier","age":58,"location":"Langworthstead"}},{"attributes":{"name":"Kara Muller-Kilback","age":46,"location":"West Ianville"}},{"attributes":{"name":"Traci Upton","age":57,"location":"North Leonard"}},{"attributes":{"name":"Ms. Theresia West","age":77,"location":"Haleychester"}},{"attributes":{"name":"Hattie Beahan","age":66,"location":"East Evan"}},{"attributes":{"name":"Janice Wisoky","age":23,"location":"Jacobsfort"}},{"attributes":{"name":"Dr. Elena Hegmann","age":31,"location":"Fort Mortimer"}},{"attributes":{"name":"Toby Ledner DDS","age":33,"location":"New Gabrielletown"}},{"attributes":{"name":"Darrell Nikolaus DDS","age":33,"location":"North Ericfield"}},{"attributes":{"name":"Brooklyn McClure","age":55,"location":"Alectown"}},{"attributes":{"name":"Lena Stanton","age":47,"location":"Wardfurt"}},{"attributes":{"name":"Abdiel Douglas","age":73,"location":"Perth Amboy"}},{"attributes":{"name":"Shari Adams","age":42,"location":"South Ottilieview"}},{"attributes":{"name":"Letha Hintz Sr.","age":78,"location":"Lindgrenstad"}},{"attributes":{"name":"Brandy Kunze","age":52,"location":"Huelfield"}},{"attributes":{"name":"Nat Marks MD","age":65,"location":"Lakinburgh"}},{"attributes":{"name":"Maggie Bernhard-Fisher","age":52,"location":"North Rosannachester"}},{"attributes":{"name":"Cierra Bahringer","age":51,"location":"Effieboro"}},{"attributes":{"name":"Shelia Bosco MD","age":54,"location":"Eliezercester"}},{"attributes":{"name":"Loretta Conroy","age":27,"location":"North Stephonbury"}},{"attributes":{"name":"Mr. Jim O'Kon","age":18,"location":"Dickinsonland"}},{"attributes":{"name":"Derek Kovacek","age":20,"location":"Skyeworth"}},{"attributes":{"name":"Jacquelyn Abbott","age":46,"location":"South Samantha"}},{"attributes":{"name":"Gertrude Dickinson-Kuvalis","age":52,"location":"Roswell"}},{"attributes":{"name":"Bonita Kutch","age":33,"location":"West Palm Beach"}},{"attributes":{"name":"Scarlett Hudson","age":47,"location":"Fort Lizethbury"}},{"attributes":{"name":"Wayne Blanda-Goldner","age":58,"location":"Lake Arely"}},{"attributes":{"name":"Betsy Glover","age":26,"location":"Hahnberg"}},{"attributes":{"name":"Don Batz","age":75,"location":"Imogenefurt"}},{"attributes":{"name":"Mrs. Opal Vandervort","age":43,"location":"Wesley Chapel"}},{"attributes":{"name":"Wilbert Price","age":56,"location":"Arcadia"}},{"attributes":{"name":"Adam Smith","age":48,"location":"East Providence"}},{"attributes":{"name":"Jaren Mills Sr.","age":61,"location":"Nathanstad"}},{"attributes":{"name":"Patricia Braun V","age":30,"location":"Rutherfordstad"}},{"attributes":{"name":"Asia Wuckert","age":48,"location":"Krystelside"}},{"attributes":{"name":"Sophie King","age":27,"location":"Port Danielle"}},{"attributes":{"name":"Randi Ortiz","age":66,"location":"West Elyseville"}},{"attributes":{"name":"Mamie Koelpin","age":60,"location":"Lake Janiecester"}},{"attributes":{"name":"Mrs. Claudia Davis","age":35,"location":"Lake Gene"}},{"attributes":{"name":"Nathanial Larson PhD","age":70,"location":"San Leandro"}},{"attributes":{"name":"Xavier Nikolaus","age":41,"location":"Greenton"}},{"attributes":{"name":"Valentine Cruickshank","age":30,"location":"Ethanland"}},{"attributes":{"name":"Jessika Hoeger","age":52,"location":"North Kayceeport"}},{"attributes":{"name":"Rhonda Abbott-Adams IV","age":75,"location":"Beckermouth"}},{"attributes":{"name":"Mr. Alize Welch","age":48,"location":"Billboro"}},{"attributes":{"name":"Estefania Hagenes","age":64,"location":"Joelleport"}},{"attributes":{"name":"Helmer Leffler","age":36,"location":"Gloriastead"}},{"attributes":{"name":"Verna Sanford","age":49,"location":"Westshire"}},{"attributes":{"name":"Sarah Schmeler","age":65,"location":"Rasheedside"}},{"attributes":{"name":"Miranda O'Keefe Jr.","age":22,"location":"Shoreline"}},{"attributes":{"name":"Lula Glover","age":71,"location":"Mullershire"}},{"attributes":{"name":"Lemuel O'Conner","age":38,"location":"Tayashire"}},{"attributes":{"name":"Mr. Josh Mertz","age":76,"location":"Koeppburgh"}},{"attributes":{"name":"Orland Botsford","age":79,"location":"Placentia"}},{"attributes":{"name":"Mandy Quigley","age":46,"location":"Elliottland"}},{"attributes":{"name":"Charlene Medhurst III","age":20,"location":"Dibbertview"}},{"attributes":{"name":"Jo Bode","age":23,"location":"Fresno"}},{"attributes":{"name":"Robert Koelpin Sr.","age":19,"location":"Lake Arishire"}},{"attributes":{"name":"Warren Bailey","age":76,"location":"Mortonshire"}},{"attributes":{"name":"Roxane Stracke","age":63,"location":"Fort Oleton"}},{"attributes":{"name":"Lula Flatley","age":77,"location":"South Kavonport"}},{"attributes":{"name":"Antonette Kassulke","age":37,"location":"Nellieport"}},{"attributes":{"name":"Crystal Jerde","age":25,"location":"Demarcoside"}},{"attributes":{"name":"Felix Paucek","age":64,"location":"Lorain"}},{"attributes":{"name":"Saul Hoppe","age":60,"location":"East Noemieside"}},{"attributes":{"name":"Dean Fay","age":68,"location":"Revere"}},{"attributes":{"name":"Javier Ryan","age":27,"location":"Port Dane"}},{"attributes":{"name":"Wanda Mante","age":23,"location":"West Destiny"}},{"attributes":{"name":"Katharina Powlowski","age":76,"location":"Jacobsberg"}},{"attributes":{"name":"Rita Mann","age":44,"location":"Lake Deshaun"}},{"attributes":{"name":"Magnolia Doyle","age":73,"location":"North Abraham"}},{"attributes":{"name":"Stephanie Schroeder","age":57,"location":"Peabody"}},{"attributes":{"name":"Virgil Maggio MD","age":67,"location":"Lylaport"}},{"attributes":{"name":"Krista Ziemann","age":36,"location":"North Enrique"}},{"attributes":{"name":"Mr. Gene Waters","age":44,"location":"New Estefaniaville"}},{"attributes":{"name":"Marion Russel","age":57,"location":"Rennerborough"}},{"attributes":{"name":"Edgar O'Hara","age":62,"location":"Buffalo Grove"}},{"attributes":{"name":"Marc Ryan","age":56,"location":"South Viviennestead"}},{"attributes":{"name":"Alexis Grady-Jakubowski","age":31,"location":"Gilbert"}},{"attributes":{"name":"Brandi Witting I","age":72,"location":"Corona"}},{"attributes":{"name":"Gerald Shields IV","age":47,"location":"Fort Reinaburgh"}},{"attributes":{"name":"Robyn Lubowitz","age":62,"location":"Bolingbrook"}},{"attributes":{"name":"Shaniya Green","age":25,"location":"Elgin"}},{"attributes":{"name":"Paula Hermann","age":71,"location":"Macejkovicville"}},{"attributes":{"name":"Bradley Koch III","age":48,"location":"Libbyfort"}},{"attributes":{"name":"Mr. Samuel Schowalter","age":73,"location":"New Jalenshire"}},{"attributes":{"name":"Alyce Okuneva","age":63,"location":"Tinley Park"}},{"attributes":{"name":"Orlando Dibbert","age":68,"location":"East Bellaberg"}},{"attributes":{"name":"Jeannette Rolfson","age":41,"location":"Wildermanview"}},{"attributes":{"name":"Carlos Cormier","age":28,"location":"Pleasanton"}},{"attributes":{"name":"Roland Wunsch","age":70,"location":"Blickton"}},{"attributes":{"name":"Danial Zieme","age":58,"location":"North Rylanview"}},{"attributes":{"name":"Bridget Lind","age":62,"location":"Anaheim"}},{"attributes":{"name":"Nyasia Medhurst","age":36,"location":"Klingstead"}},{"attributes":{"name":"Damien Jacobi","age":39,"location":"Crooksland"}},{"attributes":{"name":"Susie Greenfelder Sr.","age":64,"location":"Lake Deondre"}},{"attributes":{"name":"Travis Hartmann","age":20,"location":"South Ahmed"}},{"attributes":{"name":"Miss Hobart Ankunding","age":75,"location":"Lonnyborough"}},{"attributes":{"name":"Ms. Ida Shanahan","age":80,"location":"Aspen Hill"}},{"attributes":{"name":"Lori Jacobi","age":48,"location":"Schaumburg"}},{"attributes":{"name":"Ms. Lucia Rippin","age":20,"location":"Gaylebury"}},{"attributes":{"name":"Rolando Turner-McGlynn","age":34,"location":"East Dayanaburgh"}},{"attributes":{"name":"Mr. Norman Wisozk","age":75,"location":"Aftonmouth"}},{"attributes":{"name":"Destiney Abshire I","age":76,"location":"Wisozkton"}},{"attributes":{"name":"Aaron Stoltenberg","age":78,"location":"Furmanland"}},{"attributes":{"name":"Ms. Patricia Heathcote","age":73,"location":"Fort Wanda"}},{"attributes":{"name":"Homer Volkman-Monahan","age":59,"location":"Nashville-Davidson"}},{"attributes":{"name":"Caroline Aufderhar","age":29,"location":"Helenastead"}},{"attributes":{"name":"Kathy Dickinson III","age":27,"location":"Lake Ernestinafield"}},{"attributes":{"name":"Casey O'Hara","age":51,"location":"San Rafael"}},{"attributes":{"name":"Mr. Rodney Franey","age":21,"location":"Haverhill"}},{"attributes":{"name":"Tara Mitchell","age":58,"location":"Jersey City"}},{"attributes":{"name":"Gerardo Bartell","age":44,"location":"New Savion"}},{"attributes":{"name":"Shelley Abbott","age":75,"location":"Trujillo Alto"}},{"attributes":{"name":"Erica Osinski","age":60,"location":"Fort Rosemarieland"}},{"attributes":{"name":"Miss Paula Runolfsson","age":39,"location":"Caletown"}},{"attributes":{"name":"Dana Hayes","age":26,"location":"South Simeonport"}},{"attributes":{"name":"Lynn Schowalter","age":76,"location":"Cruickshanktown"}},{"attributes":{"name":"Kimberly Bernier","age":51,"location":"Port Maida"}},{"attributes":{"name":"Santiago Haley","age":32,"location":"New Aliciaburgh"}},{"attributes":{"name":"Eulalia Simonis","age":61,"location":"New Hollystead"}},{"attributes":{"name":"Gerson Abshire","age":75,"location":"New Herminia"}},{"attributes":{"name":"Lula Wuckert","age":45,"location":"Concepcionstead"}},{"attributes":{"name":"Ida Purdy","age":76,"location":"Fort Ruby"}},{"attributes":{"name":"Wilma Hermann","age":29,"location":"Simonisfurt"}},{"attributes":{"name":"Dusty Skiles","age":39,"location":"Fort Breanneshire"}},{"attributes":{"name":"Mrs. Barney Little II","age":24,"location":"Goldnerburgh"}},{"attributes":{"name":"Reed Bailey","age":36,"location":"East Benedict"}},{"attributes":{"name":"Joseph Heller","age":52,"location":"Kleinburgh"}},{"attributes":{"name":"Lucille Schmidt","age":54,"location":"Marlintown"}},{"attributes":{"name":"Woodrow Muller","age":60,"location":"Odessa"}},{"attributes":{"name":"Ilene Fisher","age":76,"location":"West Gradyfield"}},{"attributes":{"name":"Gustave Konopelski Jr.","age":47,"location":"West Trevastad"}},{"attributes":{"name":"Cheyenne Connelly","age":70,"location":"Mathewboro"}},{"attributes":{"name":"Brittany Hoppe","age":46,"location":"Lindgrenfield"}},{"attributes":{"name":"Ross Kozey","age":29,"location":"Hegmannton"}},{"attributes":{"name":"Kendrick Watsica","age":33,"location":"Pontiac"}},{"attributes":{"name":"Lynette Lindgren Sr.","age":21,"location":"Jakubowskicester"}},{"attributes":{"name":"Bernard Dooley","age":62,"location":"Grimescester"}},{"attributes":{"name":"Zoey Marvin","age":25,"location":"Lake Emiliano"}},{"attributes":{"name":"Owen Rau","age":44,"location":"Constanceboro"}},{"attributes":{"name":"Chaz Sauer","age":75,"location":"Johnsonville"}},{"attributes":{"name":"Dr. Karianne Kovacek PhD","age":32,"location":"Schillerville"}},{"attributes":{"name":"Adrien Wilderman Sr.","age":55,"location":"South Rafael"}},{"attributes":{"name":"Jeffery Monahan Sr.","age":25,"location":"Bogancester"}},{"attributes":{"name":"Troy Boyle V","age":38,"location":"Harveyfort"}},{"attributes":{"name":"Tyler Bauch","age":48,"location":"Port Glenna"}},{"attributes":{"name":"Steven Hudson","age":52,"location":"Schadenboro"}},{"attributes":{"name":"Raymond Schimmel","age":73,"location":"Bryontown"}},{"attributes":{"name":"Americo O'Keefe","age":77,"location":"Albinaburgh"}},{"attributes":{"name":"Cayla Dach MD","age":26,"location":"Port Lemuelfurt"}},{"attributes":{"name":"Stacey Koch","age":77,"location":"Saigeton"}},{"attributes":{"name":"Pete Spinka","age":41,"location":"Tacoma"}},{"attributes":{"name":"Sophie Emard MD","age":74,"location":"Tremblayhaven"}},{"attributes":{"name":"Anthony Tremblay","age":34,"location":"South Arvel"}},{"attributes":{"name":"Tina Kovacek","age":76,"location":"Howardchester"}},{"attributes":{"name":"Gerald Green","age":40,"location":"South Antonioborough"}},{"attributes":{"name":"Lorine Morar","age":26,"location":"South Adafort"}},{"attributes":{"name":"Winston Oberbrunner","age":64,"location":"South Troy"}},{"attributes":{"name":"Everett Torp","age":76,"location":"Geraldinecester"}},{"attributes":{"name":"Dr. Grace Heller","age":46,"location":"Apopka"}},{"attributes":{"name":"Brooks Mertz","age":52,"location":"Shreveport"}},{"attributes":{"name":"Carrie Wiza","age":19,"location":"Kutchton"}},{"attributes":{"name":"Jamie Ziemann","age":19,"location":"East Clarabelle"}},{"attributes":{"name":"Angelina Moen I","age":47,"location":"East Leila"}},{"attributes":{"name":"Stephanie Kerluke","age":50,"location":"Lelafield"}},{"attributes":{"name":"Mr. Floy Fisher","age":23,"location":"New Devonte"}},{"attributes":{"name":"William Jones","age":22,"location":"West Hartford"}},{"attributes":{"name":"Desiree Reichert","age":21,"location":"New Theronstead"}},{"attributes":{"name":"Jack Brown DVM","age":34,"location":"Brekkeside"}},{"attributes":{"name":"Donnie Pacocha","age":59,"location":"Fort Carissa"}},{"attributes":{"name":"Clement Smitham","age":28,"location":"Yorba Linda"}},{"attributes":{"name":"Darrin Gleason","age":32,"location":"Port Jaceymouth"}},{"attributes":{"name":"Dr. Bernie Kulas","age":30,"location":"Summerville"}},{"attributes":{"name":"Forrest Casper","age":75,"location":"Westfield"}},{"attributes":{"name":"Fletcher Stamm-Franey","age":71,"location":"East Nathanaelfurt"}},{"attributes":{"name":"Miss Anabel Bruen III","age":28,"location":"South Nicholaston"}},{"attributes":{"name":"Dominic Feil","age":24,"location":"North Myron"}},{"attributes":{"name":"Carrie Murray","age":52,"location":"Pfannerstillbury"}},{"attributes":{"name":"Dennis Kunze","age":55,"location":"Isaacfurt"}},{"attributes":{"name":"Edgar Renner","age":75,"location":"Yundtside"}},{"attributes":{"name":"Dr. Melvin Nader","age":23,"location":"Port Oswaldshire"}},{"attributes":{"name":"Caleb Stanton","age":18,"location":"Sporerberg"}},{"attributes":{"name":"Bernie Kub","age":33,"location":"Meredithborough"}},{"attributes":{"name":"Emmet Muller","age":50,"location":"Warner Robins"}},{"attributes":{"name":"Dr. Samanta Lueilwitz","age":50,"location":"Leonardoview"}},{"attributes":{"name":"Colin Wintheiser-Bartell MD","age":20,"location":"North Judson"}},{"attributes":{"name":"Cameron Watsica","age":67,"location":"New Russ"}},{"attributes":{"name":"Domenico Wunsch III","age":53,"location":"Gracefurt"}},{"attributes":{"name":"Willow Okuneva","age":29,"location":"West Junior"}},{"attributes":{"name":"Mona Lemke","age":65,"location":"Boganstead"}},{"attributes":{"name":"Salma Mohr","age":41,"location":"New Laronchester"}},{"attributes":{"name":"Lillian Lubowitz","age":55,"location":"Priceland"}},{"attributes":{"name":"Cornelius Ruecker","age":76,"location":"West Vivianecester"}},{"attributes":{"name":"Dr. Edmund Farrell","age":51,"location":"Laguna Niguel"}},{"attributes":{"name":"Nash Block","age":57,"location":"Reynoldstown"}},{"attributes":{"name":"Merlin Pfeffer","age":68,"location":"Palatine"}},{"attributes":{"name":"Patricia Fay-Jaskolski","age":71,"location":"Santa Maria"}},{"attributes":{"name":"Adrienne Reichel","age":53,"location":"Nikolauschester"}},{"attributes":{"name":"Ms. Josephine Brekke","age":29,"location":"West Damian"}},{"attributes":{"name":"Jazmin Lang","age":78,"location":"North Emelia"}},{"attributes":{"name":"Stuart Pfannerstill","age":44,"location":"Karelleshire"}},{"attributes":{"name":"Keith Boyer","age":23,"location":"West Cruz"}},{"attributes":{"name":"Trey Anderson","age":62,"location":"Port St. Lucie"}},{"attributes":{"name":"Salvatore Mohr","age":34,"location":"South Linnea"}},{"attributes":{"name":"Latoya Klocko DVM","age":31,"location":"North Hollis"}},{"attributes":{"name":"Kolby Bernier","age":39,"location":"North Allie"}},{"attributes":{"name":"Garnett King","age":75,"location":"Blandaburgh"}},{"attributes":{"name":"Jason Hammes I","age":32,"location":"Temple"}},{"attributes":{"name":"Braeden Ruecker","age":41,"location":"Fort Jaynecester"}},{"attributes":{"name":"Lillie Kozey","age":58,"location":"New Maribel"}},{"attributes":{"name":"Zoie Keeling","age":58,"location":"Willmston"}},{"attributes":{"name":"Jeremie Boyle","age":31,"location":"Enid"}},{"attributes":{"name":"Yasmeen Bednar","age":53,"location":"Eileenhaven"}},{"attributes":{"name":"Mrs. Joanie Barrows","age":79,"location":"Strosinberg"}},{"attributes":{"name":"Marion Block","age":52,"location":"West Gileshaven"}},{"attributes":{"name":"Christy Romaguera","age":45,"location":"Schroederchester"}},{"attributes":{"name":"Steve Berge","age":29,"location":"Fort Cassandra"}},{"attributes":{"name":"Dorothy Cormier","age":47,"location":"Carrieside"}},{"attributes":{"name":"Rubie Schuster","age":51,"location":"Lake Alyson"}},{"attributes":{"name":"Kenneth Feest","age":24,"location":"Eladioport"}},{"attributes":{"name":"Chris Funk","age":18,"location":"South Eliane"}},{"attributes":{"name":"Jalyn Weissnat","age":52,"location":"Nikolasburgh"}},{"attributes":{"name":"Max Dooley DDS","age":71,"location":"New Zacharyberg"}},{"attributes":{"name":"Cameron O'Keefe","age":33,"location":"Cincinnati"}},{"attributes":{"name":"Jazmyn Kub","age":44,"location":"Cortneyberg"}},{"attributes":{"name":"Kim Ebert","age":44,"location":"Port Blaze"}},{"attributes":{"name":"Violette Morissette","age":43,"location":"Hoppemouth"}},{"attributes":{"name":"Janie Wintheiser","age":47,"location":"West Elnoraland"}},{"attributes":{"name":"Faye Haag","age":24,"location":"Deborahville"}},{"attributes":{"name":"Collin Moore","age":23,"location":"Port Hiramview"}},{"attributes":{"name":"Gregory Powlowski","age":47,"location":"Bristol"}},{"attributes":{"name":"Lonny Ernser","age":77,"location":"South Daynehaven"}},{"attributes":{"name":"Dominic Prohaska","age":53,"location":"Reston"}},{"attributes":{"name":"Lon Daugherty","age":31,"location":"West Holdenport"}},{"attributes":{"name":"Jacques Kuhic","age":18,"location":"Spokane"}},{"attributes":{"name":"Delmer Grant III","age":58,"location":"East Garnetfield"}},{"attributes":{"name":"Madilyn Effertz","age":65,"location":"New Haven"}},{"attributes":{"name":"Freddie Rodriguez II","age":18,"location":"Fordshire"}},{"attributes":{"name":"Athena Tremblay","age":77,"location":"Mosciskiton"}},{"attributes":{"name":"Cecil Jenkins","age":63,"location":"Lake Heath"}},{"attributes":{"name":"Jeff Dietrich","age":26,"location":"West Aliachester"}},{"attributes":{"name":"Eladio Haley","age":49,"location":"South Florence"}},{"attributes":{"name":"Larry Senger MD","age":39,"location":"North Eddie"}},{"attributes":{"name":"Ellsworth Tromp","age":41,"location":"Langside"}},{"attributes":{"name":"Donnell Batz","age":29,"location":"San Luis Obispo"}},{"attributes":{"name":"Molly Waelchi","age":57,"location":"Vallejo"}},{"attributes":{"name":"Lorraine Osinski","age":53,"location":"New Jarrett"}},{"attributes":{"name":"Patty Hayes","age":67,"location":"Norwalk"}},{"attributes":{"name":"Skylar Metz","age":76,"location":"Pfefferville"}},{"attributes":{"name":"Lue Daugherty","age":65,"location":"New Enriqueshire"}},{"attributes":{"name":"Benny Carter MD","age":74,"location":"New Sophiastad"}},{"attributes":{"name":"Omar Wolf-Purdy","age":32,"location":"Edmond"}},{"attributes":{"name":"Beryl Lakin","age":24,"location":"Remingtonstad"}},{"attributes":{"name":"Alma O'Hara","age":44,"location":"Port Edaberg"}},{"attributes":{"name":"Leonor Gulgowski MD","age":55,"location":"Schimmelbury"}},{"attributes":{"name":"Ms. Inez Bergstrom","age":50,"location":"Garfieldton"}},{"attributes":{"name":"Leroy Marvin","age":29,"location":"Omaha"}},{"attributes":{"name":"Frank Satterfield","age":69,"location":"Zakaryberg"}},{"attributes":{"name":"Leo Ondricka-Kertzmann","age":22,"location":"Carletonview"}},{"attributes":{"name":"Aletha Cronin","age":70,"location":"West Alfredmouth"}},{"attributes":{"name":"Ruben Strosin","age":64,"location":"East Rosemarie"}},{"attributes":{"name":"Ettie Swift","age":67,"location":"South Jennifer"}},{"attributes":{"name":"Marty Daugherty","age":70,"location":"Lawton"}},{"attributes":{"name":"Melba Heidenreich","age":38,"location":"Evanston"}},{"attributes":{"name":"Jana Homenick","age":46,"location":"Estebanborough"}},{"attributes":{"name":"Shelia Torp","age":77,"location":"Overland Park"}},{"attributes":{"name":"Wilhelm Kilback","age":56,"location":"Kuvalisboro"}},{"attributes":{"name":"Abdiel Dickens","age":33,"location":"Skylarchester"}},{"attributes":{"name":"Dolores Runolfsdottir","age":52,"location":"Fort Easton"}},{"attributes":{"name":"Braulio Spencer","age":43,"location":"Antioch"}},{"attributes":{"name":"Ms. Darrin Macejkovic","age":78,"location":"South Ara"}},{"attributes":{"name":"Myron Adams","age":58,"location":"Conradton"}},{"attributes":{"name":"Ansel Russel-Herzog PhD","age":70,"location":"Kozeyburgh"}},{"attributes":{"name":"Buford Parisian","age":72,"location":"Abshirehaven"}},{"attributes":{"name":"Ms. Sally Flatley","age":66,"location":"Reston"}},{"attributes":{"name":"Dr. Gabriel Kulas","age":60,"location":"Modesto"}},{"attributes":{"name":"Tristin Mills I","age":78,"location":"North Luthershire"}},{"attributes":{"name":"Ira Keebler","age":46,"location":"Odessaport"}},{"attributes":{"name":"Brandon Steuber II","age":40,"location":"Fort Hulda"}},{"attributes":{"name":"Rene Beahan","age":68,"location":"Lurlinechester"}},{"attributes":{"name":"Amanda Sanford","age":64,"location":"Ebertchester"}},{"attributes":{"name":"Bartholome Rutherford","age":78,"location":"Wisokymouth"}},{"attributes":{"name":"Nettie Tremblay","age":60,"location":"Medhurstview"}},{"attributes":{"name":"Shelly Stark","age":38,"location":"Gerlachchester"}},{"attributes":{"name":"Mr. Cameron Dickens Jr.","age":34,"location":"North Nicolaland"}},{"attributes":{"name":"Lulu Schultz","age":70,"location":"North Gloriatown"}},{"attributes":{"name":"Bette Franecki","age":73,"location":"Arishire"}},{"attributes":{"name":"Emmett Ratke","age":56,"location":"Reynabury"}},{"attributes":{"name":"Kaden Sanford","age":42,"location":"South Natasha"}},{"attributes":{"name":"Mike Walker","age":28,"location":"West Mattview"}},{"attributes":{"name":"Debra Murazik","age":33,"location":"Gloverview"}},{"attributes":{"name":"Lana Baumbach","age":20,"location":"New Brookschester"}},{"attributes":{"name":"Amanda McDermott","age":65,"location":"North Janick"}},{"attributes":{"name":"Anna Homenick","age":26,"location":"South Garnet"}},{"attributes":{"name":"Stephany Marks","age":43,"location":"Macejkovicchester"}},{"attributes":{"name":"Alma Batz-Grimes","age":52,"location":"Keeblerberg"}},{"attributes":{"name":"Lorenza Turcotte","age":24,"location":"Korymouth"}},{"attributes":{"name":"Lacey Gleichner","age":29,"location":"Fort Tillman"}},{"attributes":{"name":"Damon Oberbrunner","age":45,"location":"Hackensack"}},{"attributes":{"name":"Sheri Brown","age":53,"location":"Dayton"}},{"attributes":{"name":"Willie Stehr II","age":80,"location":"Kertzmanntown"}},{"attributes":{"name":"Alverta Schoen","age":32,"location":"Caterinabury"}},{"attributes":{"name":"Chyna Schulist","age":77,"location":"Lake Zola"}},{"attributes":{"name":"Jo Huels","age":35,"location":"New Carafurt"}},{"attributes":{"name":"Eleanora Schaden","age":43,"location":"Weissnatburgh"}},{"attributes":{"name":"Tonya Greenfelder","age":76,"location":"Lake Antwan"}},{"attributes":{"name":"Jordy Stracke","age":25,"location":"Port Clairstead"}},{"attributes":{"name":"Joshua Runolfsdottir","age":31,"location":"Ogden"}},{"attributes":{"name":"Luther Howe","age":69,"location":"Todhaven"}},{"attributes":{"name":"Joan Veum-Krajcik I","age":54,"location":"North Brody"}},{"attributes":{"name":"Paulette Stark","age":47,"location":"Ashtyncester"}},{"attributes":{"name":"Ron Oberbrunner","age":21,"location":"New Vance"}},{"attributes":{"name":"Mack Wyman","age":31,"location":"West Bennie"}},{"attributes":{"name":"Ivory Lebsack","age":80,"location":"Lake Sydneymouth"}},{"attributes":{"name":"Vernon Davis","age":23,"location":"North Savannah"}},{"attributes":{"name":"Kyra Runte PhD","age":60,"location":"Weston"}},{"attributes":{"name":"Frankie Dibbert III","age":28,"location":"Shawnee"}},{"attributes":{"name":"Kristopher Kub Jr.","age":48,"location":"West Marjory"}},{"attributes":{"name":"Jeremiah Hodkiewicz","age":35,"location":"Bethesda"}},{"attributes":{"name":"Cruz Hettinger","age":51,"location":"Macejkovicstad"}},{"attributes":{"name":"Christy Schimmel III","age":35,"location":"South Adella"}},{"attributes":{"name":"Patricia West","age":75,"location":"South Gerrymouth"}},{"attributes":{"name":"Mrs. Zachary Casper","age":65,"location":"West Dashawn"}},{"attributes":{"name":"Lilyan Huel","age":27,"location":"Efrenfort"}},{"attributes":{"name":"Jeremy Kunde","age":64,"location":"Lake Herminiaberg"}},{"attributes":{"name":"Jenny Marquardt","age":69,"location":"Centennial"}},{"attributes":{"name":"Edith DuBuque","age":25,"location":"Port Lacyworth"}},{"attributes":{"name":"Brandy Tillman","age":76,"location":"Flaviobury"}},{"attributes":{"name":"Kiana Ledner","age":64,"location":"East Ashaville"}},{"attributes":{"name":"June Reichel","age":74,"location":"Juniortown"}},{"attributes":{"name":"Bennie Johnston III","age":62,"location":"Corpus Christi"}},{"attributes":{"name":"Rolando Becker PhD","age":44,"location":"Stromanworth"}},{"attributes":{"name":"Brendan Roob","age":40,"location":"Adamsburgh"}},{"attributes":{"name":"Emerald Turner","age":79,"location":"Virgiehaven"}},{"attributes":{"name":"Demond Pfannerstill Jr.","age":28,"location":"Concepcionbury"}},{"attributes":{"name":"Ivan Crooks","age":49,"location":"Schimmelmouth"}},{"attributes":{"name":"Mr. Ricardo Rolfson","age":35,"location":"Lake Joana"}},{"attributes":{"name":"Karolann Beer Jr.","age":73,"location":"Port Pietrobury"}},{"attributes":{"name":"Shawna Schmeler","age":53,"location":"Flaviomouth"}},{"attributes":{"name":"Dorothy Bode","age":42,"location":"Cape Coral"}},{"attributes":{"name":"Monte O'Conner","age":51,"location":"Dearborn Heights"}},{"attributes":{"name":"Crystal Turner","age":54,"location":"West Billie"}},{"attributes":{"name":"Malcolm Schmeler","age":69,"location":"Lansing"}},{"attributes":{"name":"Jaida Dibbert","age":42,"location":"East Yasmeen"}},{"attributes":{"name":"Ms. Bernadette Murphy","age":69,"location":"League City"}},{"attributes":{"name":"Melody Reichert","age":66,"location":"West Maxiebury"}},{"attributes":{"name":"Josianne Wiza IV","age":70,"location":"Hodkiewiczhaven"}},{"attributes":{"name":"Ms. Bradford Schowalter","age":73,"location":"Conroe"}},{"attributes":{"name":"Arjun Kutch","age":56,"location":"Irmabury"}},{"attributes":{"name":"Levi Walter","age":31,"location":"Bayamon"}},{"attributes":{"name":"Therese Lowe","age":78,"location":"Faheyfield"}},{"attributes":{"name":"David Roberts","age":51,"location":"Milford"}},{"attributes":{"name":"Ora Balistreri-Wisoky","age":49,"location":"South Angelview"}},{"attributes":{"name":"Daniel Okuneva V","age":71,"location":"West Ottisberg"}},{"attributes":{"name":"Carmela Russel","age":33,"location":"Manuelchester"}},{"attributes":{"name":"Elsie Weber","age":31,"location":"Lake Rhodafield"}},{"attributes":{"name":"Inez Dickinson","age":38,"location":"East May"}},{"attributes":{"name":"Bobby Becker","age":54,"location":"North Giovannicester"}},{"attributes":{"name":"Mr. Lea Nienow","age":36,"location":"West Yasmincester"}},{"attributes":{"name":"Gilbert Dicki","age":53,"location":"Port Johnnie"}},{"attributes":{"name":"Fernando Bashirian","age":28,"location":"Purdyport"}},{"attributes":{"name":"Bryant Goodwin","age":62,"location":"East Camille"}},{"attributes":{"name":"Dr. Wilbert Gleason-Frami","age":45,"location":"Batzburgh"}},{"attributes":{"name":"Mrs. Dianna Ratke","age":51,"location":"Maggioside"}},{"attributes":{"name":"Vincent Gorczany","age":66,"location":"East Freedamouth"}},{"attributes":{"name":"Fred Bruen","age":73,"location":"Archborough"}},{"attributes":{"name":"Dr. Corey Ernser","age":47,"location":"New Alfonso"}},{"attributes":{"name":"Zachary Lehner Sr.","age":31,"location":"Lake Loyalworth"}},{"attributes":{"name":"Terrence Kihn","age":72,"location":"North Kaileystead"}},{"attributes":{"name":"Susan Dach","age":49,"location":"Kleinfort"}},{"attributes":{"name":"Ms. Susie Tromp","age":34,"location":"Abbottstead"}},{"attributes":{"name":"Amiya Brown","age":57,"location":"Elwynbury"}},{"attributes":{"name":"Dennis Mraz","age":23,"location":"Conroe"}},{"attributes":{"name":"Santos Friesen","age":28,"location":"Wilburnhaven"}},{"attributes":{"name":"Noe Gutkowski","age":42,"location":"North Denis"}},{"attributes":{"name":"Garry Hills","age":19,"location":"West Babylon"}},{"attributes":{"name":"Misty Kunde","age":37,"location":"East Axel"}},{"attributes":{"name":"Robin Prohaska MD","age":36,"location":"Waukesha"}},{"attributes":{"name":"Anabel Swaniawski","age":61,"location":"East Johnathan"}},{"attributes":{"name":"Tabitha Pfeffer","age":28,"location":"South Jonasburgh"}},{"attributes":{"name":"Jaiden Mohr","age":56,"location":"Douglasbury"}},{"attributes":{"name":"Edmond Miller","age":65,"location":"Milford"}},{"attributes":{"name":"Lincoln Hayes","age":69,"location":"Smithamfurt"}},{"attributes":{"name":"Alexis Dicki","age":70,"location":"Fort Alfonso"}},{"attributes":{"name":"Jessica Gulgowski","age":76,"location":"Kuvalisfort"}},{"attributes":{"name":"William Fahey","age":53,"location":"Hegmannport"}},{"attributes":{"name":"Adriana Blanda-Frami","age":33,"location":"New Britain"}},{"attributes":{"name":"Maggie Beier","age":37,"location":"Morarview"}},{"attributes":{"name":"Omar Bernhard","age":69,"location":"Fort Raulborough"}},{"attributes":{"name":"Ms. Delores Kling","age":54,"location":"Eugeniachester"}},{"attributes":{"name":"Kenneth Glover","age":63,"location":"Livonia"}},{"attributes":{"name":"Beatrice Wisoky","age":35,"location":"Russelbury"}},{"attributes":{"name":"Melanie Ledner DDS","age":64,"location":"Hirthefield"}},{"attributes":{"name":"Jeanne Boyle","age":51,"location":"Tanyaland"}},{"attributes":{"name":"Myra Crona","age":49,"location":"Arnoldworth"}},{"attributes":{"name":"Clint Marks PhD","age":49,"location":"North Pat"}},{"attributes":{"name":"Paula Welch","age":57,"location":"Malachishire"}},{"attributes":{"name":"Levi Funk","age":28,"location":"Janisland"}},{"attributes":{"name":"Edmond McCullough MD","age":34,"location":"Port Tadchester"}},{"attributes":{"name":"Laila Anderson PhD","age":80,"location":"Niagara Falls"}},{"attributes":{"name":"Blanche Treutel","age":28,"location":"Grand Island"}},{"attributes":{"name":"Mrs. Kaci Kihn","age":58,"location":"Kianabury"}},{"attributes":{"name":"Mr. Julio Greenfelder","age":51,"location":"Long Beach"}},{"attributes":{"name":"Edith Weimann","age":30,"location":"Markhaven"}},{"attributes":{"name":"Dorothy Donnelly","age":55,"location":"North Holdenboro"}},{"attributes":{"name":"Eleanora Feest","age":75,"location":"New Horaciostad"}},{"attributes":{"name":"Gerhard Altenwerth","age":28,"location":"Wolffurt"}},{"attributes":{"name":"Hobart Conn","age":67,"location":"Lorenzoton"}},{"attributes":{"name":"Christina Goodwin","age":65,"location":"Rebekaview"}},{"attributes":{"name":"Christa Hudson","age":40,"location":"Sawaynland"}},{"attributes":{"name":"Letha Keeling","age":51,"location":"Lamontview"}},{"attributes":{"name":"Hal Will","age":67,"location":"Lesleyfield"}},{"attributes":{"name":"Bert Stoltenberg","age":33,"location":"Carterworth"}},{"attributes":{"name":"Annette Mitchell-Ward","age":40,"location":"Swiftboro"}},{"attributes":{"name":"Derick Trantow","age":44,"location":"Delray Beach"}},{"attributes":{"name":"Danny Ondricka IV","age":73,"location":"Lessieberg"}},{"attributes":{"name":"Dr. Toby Rosenbaum","age":80,"location":"Earleneburgh"}},{"attributes":{"name":"Chad Gislason","age":54,"location":"Harrisburg"}},{"attributes":{"name":"Sandra McDermott","age":47,"location":"Fort Providenci"}},{"attributes":{"name":"Jackie Cronin","age":29,"location":"Fort Dewayne"}},{"attributes":{"name":"Trinity Klocko","age":25,"location":"East Delaneyborough"}},{"attributes":{"name":"Dr. Kenny Gorczany Sr.","age":39,"location":"New Ilianaside"}},{"attributes":{"name":"Alex Swaniawski","age":44,"location":"Westburgh"}},{"attributes":{"name":"Macie Reilly","age":78,"location":"Hollisville"}},{"attributes":{"name":"Desiree Ernser","age":50,"location":"Davonteland"}},{"attributes":{"name":"Mike Weissnat","age":29,"location":"Frisco"}},{"attributes":{"name":"Johanna Mitchell","age":78,"location":"Norwoodberg"}},{"attributes":{"name":"Leanna Nader","age":63,"location":"Port Ashtonburgh"}},{"attributes":{"name":"Laverne Kassulke","age":25,"location":"Kunzecester"}},{"attributes":{"name":"Harvey Kreiger","age":66,"location":"Antelope"}},{"attributes":{"name":"Mr. Elbert Hansen","age":58,"location":"New Dereck"}},{"attributes":{"name":"Justin Kirlin","age":70,"location":"New Joeton"}},{"attributes":{"name":"Todd Fay","age":20,"location":"Worcester"}},{"attributes":{"name":"Evelyn Kuphal Sr.","age":32,"location":"Brigitteberg"}},{"attributes":{"name":"Lawrence Simonis","age":39,"location":"East Layne"}},{"attributes":{"name":"Dean Beier","age":31,"location":"Zettahaven"}},{"attributes":{"name":"Dr. Domenica Hegmann","age":31,"location":"Oranborough"}},{"attributes":{"name":"Joseph D'Amore","age":75,"location":"Kilbackworth"}},{"attributes":{"name":"Billie Schuster","age":77,"location":"Lake Troy"}},{"attributes":{"name":"Alphonso Lindgren","age":31,"location":"West Rodger"}},{"attributes":{"name":"Ada Herman","age":73,"location":"Ogden"}},{"attributes":{"name":"Kurt Jerde","age":24,"location":"Hartford"}},{"attributes":{"name":"Tim Torphy","age":40,"location":"Lawton"}},{"attributes":{"name":"Arnaldo Lindgren","age":40,"location":"Rickymouth"}},{"attributes":{"name":"Westley Fadel","age":70,"location":"Hicklebury"}},{"attributes":{"name":"Penny O'Reilly","age":66,"location":"Jaclynfort"}},{"attributes":{"name":"Miss Cesar Casper","age":46,"location":"Muellerboro"}},{"attributes":{"name":"Cleo Olson","age":42,"location":"East Richardcester"}},{"attributes":{"name":"Ms. Bart Jaskolski PhD","age":51,"location":"Billfort"}},{"attributes":{"name":"Dwight Sawayn","age":55,"location":"West Bettyecester"}},{"attributes":{"name":"Morgan Moen","age":69,"location":"South Roxannefort"}},{"attributes":{"name":"Audrey Rowe-Balistreri","age":47,"location":"Huntsville"}},{"attributes":{"name":"Ross Christiansen-Strosin","age":76,"location":"Detroit"}},{"attributes":{"name":"Erick Hills Sr.","age":54,"location":"Clevemouth"}},{"attributes":{"name":"Ms. Jackie Durgan","age":46,"location":"Lemkehaven"}},{"attributes":{"name":"Jordan Ferry V","age":68,"location":"Lake Lesly"}},{"attributes":{"name":"Roosevelt Kovacek","age":72,"location":"South Alfordland"}},{"attributes":{"name":"Baron Johns","age":52,"location":"Gloverfield"}},{"attributes":{"name":"Kristine Larkin","age":26,"location":"Port Zanderfield"}},{"attributes":{"name":"Alexanne Reichel","age":62,"location":"Fredyshire"}},{"attributes":{"name":"Ben Rice","age":32,"location":"Mrazville"}},{"attributes":{"name":"Elvira Farrell","age":54,"location":"Sammamish"}},{"attributes":{"name":"Elissa Hermann","age":72,"location":"Bayercester"}},{"attributes":{"name":"Miss Adrienne Mertz","age":64,"location":"Wildermanfort"}},{"attributes":{"name":"Brenda Kunze","age":26,"location":"Lake Teresa"}},{"attributes":{"name":"Angelina Okuneva","age":34,"location":"Beattyside"}},{"attributes":{"name":"Michele Conn V","age":63,"location":"Lake Armando"}},{"attributes":{"name":"Israel Robel","age":27,"location":"West Aydenstad"}},{"attributes":{"name":"Mr. Gene Ernser-Parisian","age":66,"location":"Millerville"}},{"attributes":{"name":"Coleman Zboncak II","age":22,"location":"New Chetworth"}},{"attributes":{"name":"Dannie Veum","age":56,"location":"Zitaworth"}},{"attributes":{"name":"Esta Ryan","age":67,"location":"New Eliza"}},{"attributes":{"name":"Jenny Schuster","age":74,"location":"DeKalb"}},{"attributes":{"name":"Walter Larkin","age":40,"location":"Gutkowskitown"}},{"attributes":{"name":"Audie Funk-Schuster","age":73,"location":"DeSoto"}},{"attributes":{"name":"Max Hintz","age":69,"location":"Shawnworth"}},{"attributes":{"name":"Aimee Hand","age":55,"location":"Lindgrenbury"}},{"attributes":{"name":"Marian Boehm","age":57,"location":"Wildermanside"}},{"attributes":{"name":"Hannah Turner","age":33,"location":"Santa Clarita"}},{"attributes":{"name":"Mr. Ignacio Carter IV","age":75,"location":"North Ines"}},{"attributes":{"name":"Hannah Smitham","age":29,"location":"Boganstead"}},{"attributes":{"name":"Bailee Nitzsche","age":55,"location":"Augustineton"}},{"attributes":{"name":"Jackie Kautzer","age":29,"location":"Mrazburgh"}},{"attributes":{"name":"Alexander Franey","age":35,"location":"North Svenport"}},{"attributes":{"name":"Joey Breitenberg","age":49,"location":"Jaycehaven"}},{"attributes":{"name":"David Hahn","age":42,"location":"Peoria"}},{"attributes":{"name":"Dane Kris-Hoppe MD","age":78,"location":"New Gerardo"}},{"attributes":{"name":"Mr. Shaniya Jaskolski","age":25,"location":"Estellburgh"}},{"attributes":{"name":"Dr. Megane Little","age":32,"location":"East Stanland"}},{"attributes":{"name":"Miguel Jaskolski","age":50,"location":"Beulahport"}},{"attributes":{"name":"Lelah Lemke","age":73,"location":"East Dillan"}},{"attributes":{"name":"Miss Jo Windler","age":27,"location":"Schmidtworth"}},{"attributes":{"name":"Hellen Fahey I","age":66,"location":"South Orrin"}},{"attributes":{"name":"Ewald Volkman","age":52,"location":"Charlenechester"}},{"attributes":{"name":"Mathew Prohaska","age":54,"location":"Kilbackfurt"}},{"attributes":{"name":"Miguel Heathcote","age":61,"location":"New Brittany"}},{"attributes":{"name":"Ralph Beatty","age":74,"location":"Uptonfurt"}},{"attributes":{"name":"Patricia Mohr","age":32,"location":"Beahanfurt"}},{"attributes":{"name":"Yesenia Stamm","age":18,"location":"Streichberg"}},{"attributes":{"name":"Otis Pollich","age":68,"location":"Moreno Valley"}},{"attributes":{"name":"Mr. Bradley Cremin","age":79,"location":"Boehmstad"}},{"attributes":{"name":"Stacey Sporer","age":32,"location":"Biankafurt"}},{"attributes":{"name":"Margarita Abernathy","age":38,"location":"East Fletcher"}},{"attributes":{"name":"Randall Monahan","age":55,"location":"Streichville"}},{"attributes":{"name":"Sheila Feil","age":73,"location":"East Viviennetown"}},{"attributes":{"name":"Mafalda Schiller","age":49,"location":"Lubowitzbury"}},{"attributes":{"name":"Jessy Davis","age":52,"location":"Handberg"}},{"attributes":{"name":"Mrs. Sam Trantow DDS","age":54,"location":"East Skye"}},{"attributes":{"name":"Mr. Myrtie Pfannerstill-Jakubowski","age":31,"location":"Providencishire"}},{"attributes":{"name":"Wade Harber","age":52,"location":"Gulgowskiton"}},{"attributes":{"name":"Melyna Quitzon-DuBuque","age":59,"location":"Muhammadfurt"}},{"attributes":{"name":"Kennedy Zemlak-Bogisich","age":34,"location":"Lake Porterbury"}},{"attributes":{"name":"Elena Cormier","age":33,"location":"Lake Toneytown"}},{"attributes":{"name":"Sonja Von","age":68,"location":"Port Stacey"}},{"attributes":{"name":"Dr. Wilfred Kautzer","age":67,"location":"South Peggietown"}},{"attributes":{"name":"Tony Boyer","age":30,"location":"Lake Gonzaloborough"}},{"attributes":{"name":"Erich Funk","age":42,"location":"Toreycester"}},{"attributes":{"name":"Audreanne Herman","age":28,"location":"Mantehaven"}},{"attributes":{"name":"Krystal DuBuque","age":41,"location":"New Bedford"}},{"attributes":{"name":"Leland Mante","age":79,"location":"Lazarobury"}},{"attributes":{"name":"Bill Gutmann","age":56,"location":"North Kristoffer"}},{"attributes":{"name":"Bobbie Morar","age":21,"location":"West Bransonbury"}},{"attributes":{"name":"Velva Rempel","age":41,"location":"Germanshire"}},{"attributes":{"name":"Polly Ernser I","age":22,"location":"West Leif"}},{"attributes":{"name":"Gertrude Harber","age":23,"location":"Port Alessandro"}},{"attributes":{"name":"Dr. Krista Buckridge","age":68,"location":"Killeen"}},{"attributes":{"name":"Tricia Greenfelder","age":69,"location":"Greenholtside"}},{"attributes":{"name":"Norma Pfeffer","age":72,"location":"Cleveland Heights"}},{"attributes":{"name":"Melba Rowe","age":52,"location":"Lake Torrancehaven"}},{"attributes":{"name":"Scot Waters IV","age":21,"location":"East Paige"}},{"attributes":{"name":"Kelton Larkin","age":22,"location":"Lake Lamonttown"}},{"attributes":{"name":"Sandra Heidenreich","age":80,"location":"Fort Esteban"}},{"attributes":{"name":"Adolphus Schimmel","age":60,"location":"Fort Lauriane"}},{"attributes":{"name":"Bradley Cronin","age":60,"location":"Hintzburgh"}},{"attributes":{"name":"Madyson Cormier","age":44,"location":"Leonardofurt"}},{"attributes":{"name":"Mr. Vincenzo Mertz","age":70,"location":"Jessefort"}},{"attributes":{"name":"Rochelle Stokes","age":52,"location":"Paucekboro"}},{"attributes":{"name":"Doris Dare","age":72,"location":"South Nathanaelstead"}},{"attributes":{"name":"Orlando Greenholt","age":42,"location":"Pharr"}},{"attributes":{"name":"Ismael Cronin II","age":29,"location":"Kovacekshire"}},{"attributes":{"name":"Isabel Feil","age":43,"location":"Bergstromside"}},{"attributes":{"name":"Crawford Hessel","age":52,"location":"Adelineton"}},{"attributes":{"name":"Sophia Bogisich","age":48,"location":"West Brittanyville"}},{"attributes":{"name":"Irene Lemke","age":69,"location":"Edina"}},{"attributes":{"name":"Reid Stehr","age":63,"location":"East Samanthaside"}},{"attributes":{"name":"Kadin Kub","age":51,"location":"South Carter"}},{"attributes":{"name":"Candice Gislason","age":46,"location":"Harveytown"}},{"attributes":{"name":"Rosalie D'Amore","age":56,"location":"Treutelbury"}},{"attributes":{"name":"Rolando Ebert","age":73,"location":"Kalishire"}},{"attributes":{"name":"Emerald Hand","age":34,"location":"Pasadena"}},{"attributes":{"name":"Wade Tillman","age":49,"location":"Arvada"}},{"attributes":{"name":"Brittany Moen","age":21,"location":"Bellingham"}},{"attributes":{"name":"Scottie Osinski","age":70,"location":"Rosaview"}},{"attributes":{"name":"Ruthe Tillman","age":22,"location":"Sylvesterfurt"}},{"attributes":{"name":"Marta Harber","age":40,"location":"Lake Genesis"}},{"attributes":{"name":"Kathy Hintz DVM","age":45,"location":"West Valley City"}},{"attributes":{"name":"Furman Bogan","age":22,"location":"Vancouver"}},{"attributes":{"name":"Berry Bailey","age":63,"location":"North Alexandrefort"}},{"attributes":{"name":"Mr. Mariana Welch","age":62,"location":"New Claireville"}},{"attributes":{"name":"Sherry Gorczany","age":51,"location":"Connieland"}},{"attributes":{"name":"Hazel Hansen","age":51,"location":"Weimannport"}},{"attributes":{"name":"Ms. Melody Satterfield","age":75,"location":"Steveport"}},{"attributes":{"name":"Lionel Volkman PhD","age":48,"location":"Kertzmannmouth"}},{"attributes":{"name":"Lionel Skiles","age":56,"location":"Homestead"}},{"attributes":{"name":"Jerel Parker","age":37,"location":"Tamarac"}},{"attributes":{"name":"Kelley Greenholt","age":73,"location":"Adelaland"}},{"attributes":{"name":"Colin Mayert","age":42,"location":"Port Elenorhaven"}},{"attributes":{"name":"Dr. Daisha Wunsch","age":45,"location":"Rempelside"}},{"attributes":{"name":"Essie Harris","age":25,"location":"Kobeshire"}},{"attributes":{"name":"Claire Kertzmann","age":72,"location":"Dearborn Heights"}},{"attributes":{"name":"Pete Blick","age":45,"location":"Conniecester"}},{"attributes":{"name":"Mr. Devan Kuhic","age":73,"location":"Port Braden"}},{"attributes":{"name":"Clinton Gislason","age":35,"location":"Chasityhaven"}},{"attributes":{"name":"Harriet Senger","age":47,"location":"Cicero"}},{"attributes":{"name":"Sandrine VonRueden","age":78,"location":"Port Cathrynstad"}},{"attributes":{"name":"Annette Ritchie-Lang","age":63,"location":"North Felipe"}},{"attributes":{"name":"Jerry McGlynn","age":51,"location":"Alfonzoside"}},{"attributes":{"name":"Clark Wilderman","age":42,"location":"Woodland"}},{"attributes":{"name":"Allene Kutch","age":47,"location":"Nitzscheview"}},{"attributes":{"name":"Tobin Brakus","age":62,"location":"Chetburgh"}},{"attributes":{"name":"Ricardo Nolan-Zboncak","age":74,"location":"St. Charles"}},{"attributes":{"name":"Dr. Ernesto Kemmer","age":68,"location":"West Jacintheside"}},{"attributes":{"name":"Shelia Goldner","age":23,"location":"Leesburg"}},{"attributes":{"name":"Ms. Tony Ratke PhD","age":27,"location":"Volkmantown"}},{"attributes":{"name":"Betty King","age":57,"location":"Wendyfurt"}},{"attributes":{"name":"Delia Walker DDS","age":80,"location":"Deonteville"}},{"attributes":{"name":"Florence Parker","age":31,"location":"Joanieborough"}},{"attributes":{"name":"Ken Bergstrom","age":79,"location":"West Isaac"}},{"attributes":{"name":"Emile Boyle II","age":24,"location":"North Elishaberg"}},{"attributes":{"name":"Carlotta Schimmel","age":62,"location":"McCulloughside"}},{"attributes":{"name":"Dr. Abel Nienow","age":21,"location":"Goyetteworth"}},{"attributes":{"name":"Tasha Rau","age":77,"location":"Port Khalid"}},{"attributes":{"name":"Shelia Corwin","age":67,"location":"Erdmancester"}},{"attributes":{"name":"Eveline Williamson","age":74,"location":"Stromanborough"}},{"attributes":{"name":"Katelynn Nienow","age":80,"location":"Blaisemouth"}},{"attributes":{"name":"Dr. Nathaniel Boehm","age":33,"location":"Jefferymouth"}},{"attributes":{"name":"Dr. Merle Wiegand-Ward","age":60,"location":"Plano"}},{"attributes":{"name":"Miss Okey Waters","age":70,"location":"Lake Stanford"}},{"attributes":{"name":"Dwight Stehr","age":46,"location":"Rodrickshire"}},{"attributes":{"name":"Ms. Rowan Schroeder","age":78,"location":"Elliotfurt"}},{"attributes":{"name":"Brittany Hoeger","age":34,"location":"North Christelleshire"}},{"attributes":{"name":"Wyman Gutmann","age":60,"location":"Louveniaberg"}},{"attributes":{"name":"Bob Erdman","age":33,"location":"Yostfort"}},{"attributes":{"name":"Ewell Beer","age":66,"location":"Starkworth"}},{"attributes":{"name":"Levi Skiles","age":38,"location":"Nyaland"}},{"attributes":{"name":"Ashley Kutch","age":29,"location":"Fort Tyreekchester"}},{"attributes":{"name":"Torrance Marquardt","age":70,"location":"Fort Heatherhaven"}},{"attributes":{"name":"Wilfred Zulauf IV","age":74,"location":"Kesslerville"}},{"attributes":{"name":"Brandi Wolf","age":38,"location":"Murphyworth"}},{"attributes":{"name":"Viola Kuhn-Cole II","age":80,"location":"Port Madelinecester"}},{"attributes":{"name":"Mr. Deshaun Jones Jr.","age":67,"location":"Davie"}},{"attributes":{"name":"Dr. Vicky Schinner","age":47,"location":"Wehnerland"}},{"attributes":{"name":"Ann Lueilwitz","age":58,"location":"Port Guillermo"}},{"attributes":{"name":"Jo Nader","age":33,"location":"Port Tysonstad"}},{"attributes":{"name":"Asha Koch","age":32,"location":"Stoltenbergstad"}},{"attributes":{"name":"Millie Reynolds","age":22,"location":"East Teaganstead"}},{"attributes":{"name":"Melvin Nitzsche","age":18,"location":"Harlingen"}},{"attributes":{"name":"Robin Goyette","age":21,"location":"Preciousberg"}},{"attributes":{"name":"Conrad Wunsch","age":46,"location":"Bowling Green"}},{"attributes":{"name":"Dr. Bill Ward","age":52,"location":"New Porterchester"}},{"attributes":{"name":"Eric Abbott","age":29,"location":"Pompano Beach"}},{"attributes":{"name":"Ms. Josh Harber","age":60,"location":"South Ignaciohaven"}},{"attributes":{"name":"Tabitha Mosciski","age":78,"location":"New Nyasiacester"}},{"attributes":{"name":"Carey Lind","age":78,"location":"West Breanaville"}},{"attributes":{"name":"Dean Wisoky","age":64,"location":"New Una"}},{"attributes":{"name":"Marco Sanford","age":23,"location":"South Jermaineview"}},{"attributes":{"name":"Josue Reinger","age":33,"location":"Kenosha"}},{"attributes":{"name":"Miss Jacqueline Anderson","age":38,"location":"Rockyton"}},{"attributes":{"name":"Randy Davis","age":70,"location":"Cormierworth"}},{"attributes":{"name":"Misty Grimes","age":39,"location":"East Marjorie"}},{"attributes":{"name":"Nettie Tillman","age":27,"location":"New Alexysside"}},{"attributes":{"name":"Pat Johnson","age":62,"location":"High Point"}},{"attributes":{"name":"Ross Schroeder","age":66,"location":"Leaville"}},{"attributes":{"name":"Mary Parisian","age":33,"location":"Fort Imogenefort"}},{"attributes":{"name":"Enrique Schneider","age":21,"location":"Fort Enochbury"}},{"attributes":{"name":"Myrtie Johnston","age":57,"location":"New Eloisa"}},{"attributes":{"name":"Irving McKenzie","age":37,"location":"West Sherwoodbury"}},{"attributes":{"name":"Dangelo Haley","age":22,"location":"East Sasha"}},{"attributes":{"name":"Raphaelle Krajcik","age":70,"location":"Hillsland"}},{"attributes":{"name":"Dovie Kemmer","age":40,"location":"Adolphworth"}},{"attributes":{"name":"Gloria Dach","age":67,"location":"Alisaburgh"}},{"attributes":{"name":"Betsy Grimes","age":60,"location":"Carolina"}},{"attributes":{"name":"Brooks Erdman","age":39,"location":"Corkerycester"}},{"attributes":{"name":"Mr. Maya Weimann","age":72,"location":"Martyworth"}},{"attributes":{"name":"Edwardo Moore","age":72,"location":"Union City"}},{"attributes":{"name":"Robyn Baumbach","age":76,"location":"East Kayleyshire"}},{"attributes":{"name":"Orville Bernier","age":43,"location":"Fort Mylene"}},{"attributes":{"name":"Cathy Von","age":62,"location":"East Elva"}},{"attributes":{"name":"Doris Cummings","age":61,"location":"North Nettie"}},{"attributes":{"name":"Kim Mante","age":23,"location":"Port Pablotown"}},{"attributes":{"name":"Sebastian Schuppe","age":46,"location":"Port Jaquan"}},{"attributes":{"name":"Philip Rau","age":64,"location":"New Demariostead"}},{"attributes":{"name":"Irving Larkin","age":48,"location":"Fort Ronaldo"}},{"attributes":{"name":"Maureen Johnson","age":28,"location":"Terrillfurt"}},{"attributes":{"name":"Juana Crooks","age":42,"location":"Port Franco"}},{"attributes":{"name":"Edwin Lynch-Pacocha","age":31,"location":"Port Lora"}},{"attributes":{"name":"Easter Stiedemann II","age":66,"location":"East Nickcester"}},{"attributes":{"name":"Renee MacGyver","age":68,"location":"Fort Marleneville"}},{"attributes":{"name":"Janiya Rath","age":78,"location":"Leesburg"}},{"attributes":{"name":"Kristy O'Reilly","age":46,"location":"Springfield"}},{"attributes":{"name":"Miss Sylvia Dach","age":49,"location":"Lake Petra"}},{"attributes":{"name":"Darrell Brekke","age":50,"location":"Shyanneshire"}},{"attributes":{"name":"Devan Reichert","age":56,"location":"West Bridiecester"}},{"attributes":{"name":"Irma Cassin","age":78,"location":"North Desireeland"}},{"attributes":{"name":"Jamar Rath","age":68,"location":"Jameyview"}},{"attributes":{"name":"Gregg Koch","age":22,"location":"South Candido"}},{"attributes":{"name":"Martine Buckridge","age":76,"location":"Pearland"}},{"attributes":{"name":"Ruben Hudson","age":31,"location":"Karleeport"}},{"attributes":{"name":"Leah Bernhard Jr.","age":73,"location":"New Maxie"}},{"attributes":{"name":"Mrs. Alberta McKenzie","age":35,"location":"Abnerworth"}},{"attributes":{"name":"Rick Steuber","age":31,"location":"West Trinity"}},{"attributes":{"name":"Pearlie Klocko","age":50,"location":"Ottisstead"}},{"attributes":{"name":"Mrs. Laurence Koss","age":65,"location":"Aliceworth"}},{"attributes":{"name":"Arthur Rohan","age":21,"location":"Killeen"}},{"attributes":{"name":"Mandy Stiedemann","age":61,"location":"New Abdullahstad"}},{"attributes":{"name":"May Mayert Sr.","age":65,"location":"Schadenfurt"}},{"attributes":{"name":"Orie Zemlak","age":65,"location":"Fort Jadenborough"}},{"attributes":{"name":"Lana Prohaska-Pagac","age":60,"location":"Palo Alto"}},{"attributes":{"name":"Salvatore Reichert","age":61,"location":"North Destany"}},{"attributes":{"name":"Brent Rowe","age":57,"location":"Sidneychester"}},{"attributes":{"name":"Oran Hettinger","age":62,"location":"Richland"}},{"attributes":{"name":"Miss Bernadette Cartwright","age":67,"location":"North Carrie"}},{"attributes":{"name":"Joseph Rolfson","age":35,"location":"Fort Timothy"}},{"attributes":{"name":"Emilio Mosciski","age":28,"location":"Lake Percy"}},{"attributes":{"name":"Paolo Wehner","age":55,"location":"Rempelcester"}},{"attributes":{"name":"Morris Zieme","age":47,"location":"Bothell"}},{"attributes":{"name":"Allen Brown","age":75,"location":"Jenningsfurt"}},{"attributes":{"name":"Gene Jacobson DDS","age":30,"location":"Huntsville"}},{"attributes":{"name":"May Kunze","age":54,"location":"Karelleberg"}},{"attributes":{"name":"Dr. Andrew Hyatt","age":70,"location":"Loveland"}},{"attributes":{"name":"Viola Bosco","age":57,"location":"Erlingfurt"}},{"attributes":{"name":"Ryan Feil PhD","age":57,"location":"New Macey"}},{"attributes":{"name":"Mr. Kyle Schinner","age":50,"location":"Athens-Clarke County"}},{"attributes":{"name":"Charlene Hilll","age":48,"location":"Gleasonfurt"}},{"attributes":{"name":"Judith Barrows","age":36,"location":"Kozeyburgh"}},{"attributes":{"name":"Davin Huels","age":22,"location":"East Geraldine"}},{"attributes":{"name":"Leonard Gottlieb","age":32,"location":"West Donnaberg"}},{"attributes":{"name":"Declan Mraz-Carter","age":72,"location":"New Jettie"}},{"attributes":{"name":"Benjamin Daniel","age":28,"location":"Ferryborough"}},{"attributes":{"name":"Doreen Batz","age":78,"location":"West Kale"}},{"attributes":{"name":"Kurt Dicki","age":73,"location":"West Elmorefield"}},{"attributes":{"name":"Tyra Towne","age":75,"location":"Gerardofield"}},{"attributes":{"name":"Clark Willms","age":30,"location":"Watersboro"}},{"attributes":{"name":"Eric Durgan","age":63,"location":"South Santosfort"}},{"attributes":{"name":"May Kihn","age":26,"location":"Fort Pollyboro"}},{"attributes":{"name":"Candace Wolf","age":42,"location":"South Florencioberg"}},{"attributes":{"name":"Wilbert Erdman","age":26,"location":"Hoppeview"}},{"attributes":{"name":"Joany Cartwright","age":43,"location":"Lake Jessica"}},{"attributes":{"name":"Sophia Streich V","age":44,"location":"Elliotworth"}},{"attributes":{"name":"Sally Muller","age":80,"location":"Royfield"}},{"attributes":{"name":"Jared Torphy","age":77,"location":"Port Chyna"}},{"attributes":{"name":"Alberta Franecki","age":51,"location":"South Franciscaport"}},{"attributes":{"name":"Dr. Kari Lang-Quigley","age":44,"location":"Hegmannbury"}},{"attributes":{"name":"Samantha Stark","age":69,"location":"Kearastad"}},{"attributes":{"name":"Rolando Wintheiser MD","age":29,"location":"Krajcikview"}},{"attributes":{"name":"River Goldner","age":80,"location":"Tulsa"}},{"attributes":{"name":"Daniel Wilderman","age":61,"location":"New Eulalia"}},{"attributes":{"name":"Efren Zieme","age":68,"location":"East Janis"}},{"attributes":{"name":"Maxine Murray","age":39,"location":"Deannaton"}},{"attributes":{"name":"Mollie Von","age":47,"location":"North Jayda"}},{"attributes":{"name":"Darren Krajcik","age":77,"location":"D'Amoreton"}},{"attributes":{"name":"Miss Spencer Schiller","age":29,"location":"New Ashley"}},{"attributes":{"name":"Shaun McLaughlin","age":41,"location":"East Wilfredo"}},{"attributes":{"name":"Cydney Stracke DDS","age":40,"location":"Weberhaven"}},{"attributes":{"name":"Bradley Pacocha","age":80,"location":"Spokane"}},{"attributes":{"name":"Madison Reilly","age":80,"location":"Port Cortezboro"}},{"attributes":{"name":"Crystal Barrows","age":56,"location":"Simeonburgh"}},{"attributes":{"name":"Sandra Fadel V","age":54,"location":"East Misaelworth"}},{"attributes":{"name":"Fred Thiel","age":66,"location":"Chasefort"}},{"attributes":{"name":"Darlene O'Connell","age":28,"location":"Lebsackview"}},{"attributes":{"name":"Alfred Labadie","age":24,"location":"South Raymond"}},{"attributes":{"name":"Keegan Breitenberg","age":25,"location":"Sauercester"}},{"attributes":{"name":"Roy Doyle","age":61,"location":"Quitzonborough"}},{"attributes":{"name":"Miles Berge","age":77,"location":"Ogden"}},{"attributes":{"name":"Harold Douglas","age":46,"location":"Waylontown"}},{"attributes":{"name":"Cordell Nitzsche","age":50,"location":"Timmothyworth"}},{"attributes":{"name":"Preston Bechtelar","age":49,"location":"Carson City"}},{"attributes":{"name":"Dr. Johnnie Hettinger Jr.","age":24,"location":"East Shannonton"}},{"attributes":{"name":"Rodolfo Prohaska","age":77,"location":"Oralfurt"}},{"attributes":{"name":"Myrtle Kuphal","age":37,"location":"New Nobleburgh"}},{"attributes":{"name":"Delia Beahan","age":35,"location":"West Casandraboro"}},{"attributes":{"name":"Mattie Wilkinson","age":72,"location":"Alisaburgh"}},{"attributes":{"name":"Amos Greenfelder","age":40,"location":"Casper"}},{"attributes":{"name":"Payton Klocko","age":42,"location":"Yakima"}},{"attributes":{"name":"Darrel Ullrich","age":79,"location":"Lake Cordieberg"}},{"attributes":{"name":"Marty Rolfson","age":78,"location":"Concord"}},{"attributes":{"name":"Paulette Hoeger","age":64,"location":"Berylstead"}},{"attributes":{"name":"Donnell Christiansen","age":67,"location":"Cormierhaven"}},{"attributes":{"name":"Zita Flatley DVM","age":61,"location":"Cedar Park"}},{"attributes":{"name":"Marsha Gleason","age":41,"location":"Port Nicolettehaven"}},{"attributes":{"name":"Ira Rice","age":45,"location":"Hillschester"}},{"attributes":{"name":"Kenya Labadie","age":73,"location":"Ortiztown"}},{"attributes":{"name":"Ms. Shyann Stanton","age":71,"location":"Midland"}},{"attributes":{"name":"Marion Larson","age":32,"location":"Fort Gertrude"}},{"attributes":{"name":"Dr. Federico Collins","age":45,"location":"Stromanburgh"}},{"attributes":{"name":"Julio Halvorson","age":28,"location":"Spring"}},{"attributes":{"name":"Omari Donnelly","age":58,"location":"Lake Cordieborough"}},{"attributes":{"name":"Luz Labadie II","age":44,"location":"Joliet"}},{"attributes":{"name":"Tamara Sauer-Grady","age":73,"location":"Fort Jodystad"}},{"attributes":{"name":"Sarah Tillman","age":21,"location":"Kshlerinborough"}},{"attributes":{"name":"Miss Angelica Blanda","age":42,"location":"New Guadalupe"}},{"attributes":{"name":"Monique Orn DVM","age":64,"location":"East Lynn"}},{"attributes":{"name":"Lenny Crooks","age":55,"location":"New Skyeburgh"}},{"attributes":{"name":"Kory Oberbrunner II","age":32,"location":"Lake Florence"}},{"attributes":{"name":"Dillan Hackett","age":67,"location":"Broomfield"}},{"attributes":{"name":"Ardith Conroy","age":74,"location":"Sandrineport"}},{"attributes":{"name":"Dana Kilback","age":42,"location":"West Hellen"}},{"attributes":{"name":"Joan Hyatt","age":52,"location":"West Josiah"}},{"attributes":{"name":"Wilbert Becker","age":67,"location":"New Jason"}},{"attributes":{"name":"Joyce Gusikowski Sr.","age":69,"location":"Lynchland"}},{"attributes":{"name":"Lynda Wolf","age":50,"location":"New Edwina"}},{"attributes":{"name":"Derrick Satterfield","age":18,"location":"West Monique"}},{"attributes":{"name":"Caesar Bechtelar","age":40,"location":"East Toby"}},{"attributes":{"name":"Katlynn Kuhic","age":40,"location":"Hoppehaven"}},{"attributes":{"name":"Jody Becker","age":42,"location":"South Bailey"}},{"attributes":{"name":"Eula McClure","age":79,"location":"Mission Viejo"}},{"attributes":{"name":"Randy Williamson","age":36,"location":"Mannmouth"}},{"attributes":{"name":"Coralie Grimes","age":73,"location":"South Maybelleland"}},{"attributes":{"name":"Darryl Turner","age":74,"location":"Williamsonstead"}},{"attributes":{"name":"Forrest Brekke MD","age":40,"location":"North Rose"}},{"attributes":{"name":"Rhonda Corkery","age":63,"location":"Edenmouth"}},{"attributes":{"name":"Karla Kutch","age":66,"location":"Schowalterside"}},{"attributes":{"name":"Ethelyn Strosin","age":58,"location":"Toyboro"}},{"attributes":{"name":"Harvey Bernhard","age":60,"location":"Hirtheport"}},{"attributes":{"name":"Gilbert Feest","age":66,"location":"Buckridgechester"}},{"attributes":{"name":"Garth Goyette","age":39,"location":"South Maurice"}},{"attributes":{"name":"Elvira Hegmann","age":43,"location":"Auburn"}},{"attributes":{"name":"Aaron Ruecker","age":24,"location":"Molliecester"}},{"attributes":{"name":"Cindy Stracke","age":52,"location":"Fort Geraldland"}},{"attributes":{"name":"Alton Wilkinson-Powlowski","age":29,"location":"Homestead"}},{"attributes":{"name":"Maxine Berge","age":40,"location":"Spinkachester"}},{"attributes":{"name":"Ms. Madeline Nicolas","age":73,"location":"Fort Nikkoworth"}},{"attributes":{"name":"Esta Johnson","age":44,"location":"Lake Walkerport"}},{"attributes":{"name":"Horace Jones","age":73,"location":"Powlowskicester"}},{"attributes":{"name":"Dianne Block","age":74,"location":"Lake Maeveburgh"}},{"attributes":{"name":"Ramon Kemmer","age":18,"location":"Cronincester"}},{"attributes":{"name":"Darrell Leffler","age":57,"location":"Karellechester"}},{"attributes":{"name":"Roger Doyle","age":32,"location":"West Maxville"}},{"attributes":{"name":"Jimmy Jacobson","age":31,"location":"Brekkebury"}},{"attributes":{"name":"Margaretta Kutch","age":80,"location":"Beahanton"}},{"attributes":{"name":"Rhianna Grady","age":54,"location":"Fort Ellenfield"}},{"attributes":{"name":"Gail Dickinson Jr.","age":63,"location":"Fritschland"}},{"attributes":{"name":"Juan Brakus","age":79,"location":"Effertzton"}},{"attributes":{"name":"Rose D'Amore-Monahan","age":78,"location":"Fort Orion"}},{"attributes":{"name":"Tad Schowalter","age":49,"location":"Hyattfurt"}},{"attributes":{"name":"Hope Turcotte","age":34,"location":"Ryleyside"}},{"attributes":{"name":"Ansley Ruecker","age":56,"location":"Klockoview"}},{"attributes":{"name":"Melody Feest","age":73,"location":"Lake Hopeworth"}},{"attributes":{"name":"Emile Cronin","age":31,"location":"Sheboygan"}},{"attributes":{"name":"Leah Kuhlman","age":51,"location":"New Robinton"}},{"attributes":{"name":"Laila Conroy","age":34,"location":"Lake Braden"}},{"attributes":{"name":"Dr. Mariane Dickens","age":77,"location":"Jerroldstead"}},{"attributes":{"name":"Moses Greenholt DVM","age":21,"location":"Tremblayside"}},{"attributes":{"name":"Floyd Robel","age":27,"location":"East Calistaberg"}},{"attributes":{"name":"Stanley Schmitt I","age":72,"location":"Hesselcester"}},{"attributes":{"name":"Vivianne Little","age":22,"location":"East Jazmyne"}},{"attributes":{"name":"Walter Nicolas","age":71,"location":"Allentown"}},{"attributes":{"name":"Estefania Hahn-Haley","age":52,"location":"West Jaydon"}},{"attributes":{"name":"Vesta Gleichner-Waters","age":75,"location":"East Cassandrashire"}},{"attributes":{"name":"Ofelia Rau","age":68,"location":"Fort Creolashire"}},{"attributes":{"name":"Gilberto Streich","age":79,"location":"Port Mia"}},{"attributes":{"name":"Ike Parker","age":71,"location":"New Melyna"}},{"attributes":{"name":"Carole Murray","age":40,"location":"South Lessiebury"}},{"attributes":{"name":"Kobe Wolf","age":58,"location":"Waltermouth"}},{"attributes":{"name":"Stan Reynolds","age":64,"location":"North Kenneth"}},{"attributes":{"name":"Wilbert Bahringer","age":78,"location":"Port Bradlyport"}},{"attributes":{"name":"Tobin Turcotte","age":71,"location":"East Raphaelleton"}},{"attributes":{"name":"Allen Spencer","age":61,"location":"Margate"}},{"attributes":{"name":"Morton Weissnat","age":71,"location":"Rapid City"}},{"attributes":{"name":"Hardy Bartoletti","age":23,"location":"Schroederland"}},{"attributes":{"name":"Victoria Towne","age":32,"location":"Wendellfurt"}},{"attributes":{"name":"Anderson Blick","age":50,"location":"North Loramouth"}},{"attributes":{"name":"Evangeline Leuschke","age":68,"location":"Calistad"}},{"attributes":{"name":"Euna Leuschke","age":65,"location":"Port Dexterfurt"}},{"attributes":{"name":"Mrs. Myron Hyatt","age":57,"location":"Justonfield"}},{"attributes":{"name":"Jack Larson","age":19,"location":"Yasminefort"}},{"attributes":{"name":"Estelle Schaden","age":21,"location":"Bridgetfort"}},{"attributes":{"name":"Miss Jana Daniel","age":37,"location":"Jaskolskiborough"}},{"attributes":{"name":"Taryn Nolan","age":71,"location":"East Samaraborough"}},{"attributes":{"name":"Tiffany Lakin V","age":75,"location":"Avisworth"}},{"attributes":{"name":"Stella Schmitt","age":67,"location":"Port Elaina"}},{"attributes":{"name":"Alton Grimes","age":61,"location":"Flint"}},{"attributes":{"name":"Charlene DuBuque","age":73,"location":"Johnsshire"}},{"attributes":{"name":"Sue Spinka MD","age":58,"location":"Highlands Ranch"}},{"attributes":{"name":"Jeanette Hackett MD","age":28,"location":"Warner Robins"}},{"attributes":{"name":"Parker Cole","age":40,"location":"South Makennashire"}},{"attributes":{"name":"Arthur Jones-Wilkinson I","age":47,"location":"Pine Bluff"}},{"attributes":{"name":"Jasmine Becker","age":63,"location":"New Reagan"}},{"attributes":{"name":"Anne Hegmann","age":24,"location":"West Pearlieboro"}},{"attributes":{"name":"Dora Langosh I","age":55,"location":"Hermanborough"}},{"attributes":{"name":"Kellen Murazik I","age":42,"location":"Jamesonberg"}},{"attributes":{"name":"Melanie Bartell","age":78,"location":"Carmenside"}},{"attributes":{"name":"Neal Fadel-Yost","age":39,"location":"Halvorsonchester"}},{"attributes":{"name":"Ms. Johanna Steuber","age":20,"location":"Everett"}},{"attributes":{"name":"Eugene Boehm-Huel","age":42,"location":"Ellaboro"}},{"attributes":{"name":"Boris Nader","age":31,"location":"Amyafort"}},{"attributes":{"name":"Rachael Russel","age":39,"location":"Gainesville"}},{"attributes":{"name":"Maximo O'Connell","age":33,"location":"Noblesville"}},{"attributes":{"name":"Norval Considine","age":28,"location":"Wizashire"}},{"attributes":{"name":"Johnnie Sipes","age":47,"location":"Fort Ivy"}},{"attributes":{"name":"Leslie Weimann","age":27,"location":"Ronnyhaven"}},{"attributes":{"name":"Vicki Medhurst","age":28,"location":"South Annabelshire"}},{"attributes":{"name":"Nathaniel Sporer Sr.","age":52,"location":"West Rosamond"}},{"attributes":{"name":"Terry Dickens","age":42,"location":"Batzhaven"}},{"attributes":{"name":"Olive Steuber","age":47,"location":"East Veronicastad"}},{"attributes":{"name":"Clint Kuhn II","age":52,"location":"Danykaboro"}},{"attributes":{"name":"Kendra Breitenberg PhD","age":33,"location":"North Salliechester"}},{"attributes":{"name":"Nathaniel Gulgowski","age":60,"location":"Asiaton"}},{"attributes":{"name":"Marquise Tillman","age":21,"location":"Gutmannbury"}},{"attributes":{"name":"Chelsie Langworth","age":27,"location":"West Darian"}},{"attributes":{"name":"Alan Hodkiewicz V","age":23,"location":"Altoona"}},{"attributes":{"name":"Princess Smith","age":23,"location":"McKenzieshire"}},{"attributes":{"name":"Ellsworth Pouros","age":40,"location":"South Cleveton"}},{"attributes":{"name":"Darren Anderson","age":28,"location":"Port Carleton"}},{"attributes":{"name":"Marley Renner","age":74,"location":"Jaidenville"}},{"attributes":{"name":"Harrison Schowalter","age":66,"location":"Doracester"}},{"attributes":{"name":"Myra Stanton","age":72,"location":"North Anabelle"}},{"attributes":{"name":"Elbert Conroy","age":42,"location":"Rosenbaumworth"}},{"attributes":{"name":"Lawrence Kozey","age":53,"location":"Perryhaven"}},{"attributes":{"name":"Raymond Skiles MD","age":56,"location":"Jakubowskifurt"}},{"attributes":{"name":"Dewitt Sanford","age":73,"location":"Fort Marcfurt"}},{"attributes":{"name":"Ronald Mills","age":74,"location":"Toms River"}},{"attributes":{"name":"Juliet Goldner","age":80,"location":"Ocala"}},{"attributes":{"name":"Ms. Edith Kirlin","age":59,"location":"Lenorecester"}},{"attributes":{"name":"Mrs. Robin Leffler","age":51,"location":"Fall River"}},{"attributes":{"name":"Mr. Jazmyn Mayert Jr.","age":72,"location":"Franeytown"}},{"attributes":{"name":"Edgar Barrows","age":67,"location":"Lonniehaven"}},{"attributes":{"name":"Earl Jast","age":71,"location":"Crooksshire"}},{"attributes":{"name":"Lillie Kuphal","age":62,"location":"Colechester"}},{"attributes":{"name":"Lonny Nitzsche MD","age":72,"location":"Osinskifield"}},{"attributes":{"name":"Jean Tillman","age":42,"location":"Compton"}},{"attributes":{"name":"Mrs. Llewellyn Frami","age":73,"location":"Fredhaven"}},{"attributes":{"name":"Yvette Cormier III","age":43,"location":"Haleyville"}},{"attributes":{"name":"Armando Anderson","age":47,"location":"Konopelskiworth"}},{"attributes":{"name":"Matilda Bartell","age":70,"location":"East Jarred"}},{"attributes":{"name":"Devyn Barrows","age":27,"location":"Port Danteshire"}},{"attributes":{"name":"Jan Beatty Sr.","age":36,"location":"Enochland"}},{"attributes":{"name":"Imelda Rempel DDS","age":46,"location":"Vineland"}},{"attributes":{"name":"Richard Nienow","age":51,"location":"Ebonyshire"}},{"attributes":{"name":"Priscilla Schumm","age":50,"location":"Gislasonfurt"}},{"attributes":{"name":"Miss Christina Kshlerin PhD","age":68,"location":"Port Orinside"}},{"attributes":{"name":"Jose Hirthe IV","age":34,"location":"North Berenice"}},{"attributes":{"name":"Mitchell Bayer I","age":21,"location":"Tulare"}},{"attributes":{"name":"Karli McGlynn","age":72,"location":"Halvorsonton"}},{"attributes":{"name":"Jaime Herman-Gerlach","age":40,"location":"Hyattfurt"}},{"attributes":{"name":"Dorothy Bayer","age":79,"location":"Port Mosechester"}},{"attributes":{"name":"Essie Keebler","age":33,"location":"Port Violettechester"}},{"attributes":{"name":"Jovan O'Hara","age":23,"location":"North Augustusview"}},{"attributes":{"name":"Curtis Grady","age":53,"location":"New Kelvin"}},{"attributes":{"name":"Tiffany Ullrich","age":66,"location":"Knoxville"}},{"attributes":{"name":"Ruben Hermann","age":22,"location":"Kirlinport"}},{"attributes":{"name":"Corine Wilderman","age":52,"location":"Fort Enahaven"}},{"attributes":{"name":"Macey O'Kon","age":33,"location":"Wunschburgh"}},{"attributes":{"name":"Jaime Gleichner","age":75,"location":"Emmanuelboro"}},{"attributes":{"name":"Angelo Fahey","age":32,"location":"Crooksfield"}},{"attributes":{"name":"Raul Conn","age":19,"location":"South Eveline"}},{"attributes":{"name":"Dr. Rylan Wilderman","age":43,"location":"Lake Rosalynland"}},{"attributes":{"name":"Miss Van Jaskolski DDS","age":70,"location":"Port Norenehaven"}},{"attributes":{"name":"Minnie Kilback Sr.","age":27,"location":"Fritschfurt"}},{"attributes":{"name":"Mrs. Alberta Franey","age":31,"location":"South Colbychester"}},{"attributes":{"name":"Geovany Bednar","age":19,"location":"New Kendall"}},{"attributes":{"name":"Henriette Ondricka","age":39,"location":"Providenciton"}},{"attributes":{"name":"Jean Veum","age":43,"location":"New Archibaldcester"}},{"attributes":{"name":"Ms. Belinda Jast","age":24,"location":"Lake Bonitaberg"}},{"attributes":{"name":"Percy Effertz","age":19,"location":"Adrianport"}},{"attributes":{"name":"Stacy Ullrich","age":70,"location":"Fort Hardyland"}},{"attributes":{"name":"Mrs. Raymond Waelchi IV","age":43,"location":"Linneastad"}},{"attributes":{"name":"Billy Harber","age":63,"location":"Ursulafurt"}},{"attributes":{"name":"Dr. Kristopher Hayes","age":23,"location":"Watsicahaven"}},{"attributes":{"name":"Ramiro Corwin","age":30,"location":"Susanachester"}},{"attributes":{"name":"Maude Bosco","age":62,"location":"New Ernie"}},{"attributes":{"name":"Sheryl Schuppe","age":48,"location":"Lake Jadeboro"}},{"attributes":{"name":"Claudia Beer","age":66,"location":"Genevieveberg"}},{"attributes":{"name":"Heidi Larkin","age":48,"location":"East Sethbury"}},{"attributes":{"name":"Richard Okuneva","age":54,"location":"Cassinberg"}},{"attributes":{"name":"Clay Bosco","age":47,"location":"West Millerfort"}},{"attributes":{"name":"David O'Connell","age":77,"location":"Verdiecester"}},{"attributes":{"name":"Tomas Runte-Wintheiser","age":47,"location":"South Coleman"}},{"attributes":{"name":"Cody Graham","age":76,"location":"Majorborough"}},{"attributes":{"name":"Micheal Jast","age":50,"location":"Fort Annamariehaven"}},{"attributes":{"name":"Mrs. Brian Kuhn","age":72,"location":"Russelshire"}},{"attributes":{"name":"Morgan Mohr DDS","age":24,"location":"Port Oralfield"}},{"attributes":{"name":"Norma Maggio","age":69,"location":"South Justushaven"}},{"attributes":{"name":"Edison Cruickshank","age":79,"location":"Tressiemouth"}},{"attributes":{"name":"Rowan Okuneva","age":55,"location":"Port Rhodachester"}},{"attributes":{"name":"Elsie Gottlieb","age":69,"location":"Donnellytown"}},{"attributes":{"name":"Molly Klein","age":28,"location":"Weston"}},{"attributes":{"name":"Lewis Konopelski","age":44,"location":"Dorthystead"}},{"attributes":{"name":"Sadie Connelly PhD","age":31,"location":"Earnestmouth"}},{"attributes":{"name":"Carl Hoeger","age":44,"location":"Schillershire"}},{"attributes":{"name":"Moses Stokes","age":52,"location":"Rocklin"}},{"attributes":{"name":"Mamie Grady","age":25,"location":"Kamronville"}},{"attributes":{"name":"Dr. Marilyn Murray","age":35,"location":"Fort Garnetville"}},{"attributes":{"name":"Dr. Billie Rogahn","age":44,"location":"North Susannaworth"}},{"attributes":{"name":"Javier Borer","age":66,"location":"Port Marilyneside"}},{"attributes":{"name":"Edwina Koepp","age":21,"location":"Santa Maria"}},{"attributes":{"name":"Loy Abbott","age":48,"location":"Shanahanton"}},{"attributes":{"name":"Lavina Koss","age":66,"location":"Heathborough"}},{"attributes":{"name":"Skylar Sporer","age":36,"location":"West Traceyport"}},{"attributes":{"name":"Penelope Hermann","age":48,"location":"Fort Tristianton"}},{"attributes":{"name":"Hilario Jacobs-Mertz","age":22,"location":"Hermanchester"}},{"attributes":{"name":"Felix Howell","age":31,"location":"East Pierce"}},{"attributes":{"name":"Krystal Satterfield","age":63,"location":"Willmsfort"}},{"attributes":{"name":"Barbara Bayer","age":20,"location":"Willmsworth"}},{"attributes":{"name":"Pete Pagac","age":76,"location":"West Samantha"}},{"attributes":{"name":"Brayan Koelpin","age":38,"location":"Fort Yvette"}},{"attributes":{"name":"Wanda Sporer","age":45,"location":"Fort Newtonfurt"}},{"attributes":{"name":"Lorraine Fahey","age":55,"location":"Gregside"}},{"attributes":{"name":"Michael Hartmann","age":21,"location":"North Brennan"}},{"attributes":{"name":"Alejandro Cormier","age":47,"location":"Arden-Arcade"}},{"attributes":{"name":"Rosa Hegmann","age":72,"location":"Dariochester"}},{"attributes":{"name":"Annette Heathcote","age":55,"location":"Charleyland"}},{"attributes":{"name":"Jeremy Ward","age":51,"location":"Kuhnstead"}},{"attributes":{"name":"Edgar Gleason","age":24,"location":"Ceasarmouth"}},{"attributes":{"name":"Cecil Lockman","age":46,"location":"Hendersonville"}},{"attributes":{"name":"Abe Connelly-Little PhD","age":53,"location":"Fort Eugenia"}},{"attributes":{"name":"Vivianne Kuhn","age":33,"location":"Franeyshire"}},{"attributes":{"name":"Lucia Gutmann","age":29,"location":"Surprise"}},{"attributes":{"name":"Dr. Marcia Roob","age":69,"location":"Runolfsdottirworth"}},{"attributes":{"name":"Jeff Murazik","age":50,"location":"Zemlakchester"}},{"attributes":{"name":"Mr. Evelyn Gusikowski","age":18,"location":"Port Anissa"}},{"attributes":{"name":"Mario Lebsack","age":43,"location":"Texas City"}},{"attributes":{"name":"Doug Kirlin","age":24,"location":"Port Amir"}},{"attributes":{"name":"Marie Gutmann","age":69,"location":"Port Marshall"}},{"attributes":{"name":"Darrell Walsh","age":30,"location":"Geneville"}},{"attributes":{"name":"Kelly Johns","age":21,"location":"Vedastad"}},{"attributes":{"name":"Jeffrey Haag","age":22,"location":"Terre Haute"}},{"attributes":{"name":"Kelley Legros","age":56,"location":"Grahamfield"}},{"attributes":{"name":"Lexus Kuhn","age":43,"location":"Ileneborough"}},{"attributes":{"name":"Bobby Simonis","age":61,"location":"Geraldfurt"}},{"attributes":{"name":"Bernadine Feeney DVM","age":18,"location":"Providence"}},{"attributes":{"name":"Wilfred Schaefer","age":20,"location":"Christiansenville"}},{"attributes":{"name":"Nina Friesen","age":53,"location":"Gianniland"}},{"attributes":{"name":"Sarah Bechtelar","age":69,"location":"Mohamedbury"}},{"attributes":{"name":"Creola Wuckert","age":37,"location":"New Jaunita"}},{"attributes":{"name":"Mrs. Lemuel Wiza","age":69,"location":"Fort Antoniachester"}},{"attributes":{"name":"Gary Boehm","age":36,"location":"South Laney"}},{"attributes":{"name":"Jon Barton","age":30,"location":"South Ellen"}},{"attributes":{"name":"Gavin Robel","age":61,"location":"South Jordonborough"}},{"attributes":{"name":"Mable Sanford I","age":47,"location":"Klockoborough"}},{"attributes":{"name":"Jose Keeling","age":31,"location":"Franeyworth"}},{"attributes":{"name":"Emily Huel","age":38,"location":"Uptonboro"}},{"attributes":{"name":"Mr. Percy Kiehn","age":33,"location":"Frederick"}},{"attributes":{"name":"Mr. Godfrey Sipes","age":53,"location":"North Bennystad"}},{"attributes":{"name":"Ulises Wuckert","age":60,"location":"Kylefurt"}},{"attributes":{"name":"Clifton Terry","age":48,"location":"Placentia"}},{"attributes":{"name":"Charles Hodkiewicz","age":77,"location":"Lavinabury"}},{"attributes":{"name":"Desmond Hansen","age":42,"location":"East Carmellaville"}},{"attributes":{"name":"Herman Heathcote","age":25,"location":"Christiansenberg"}},{"attributes":{"name":"Mr. Miller Collins","age":43,"location":"Virgieboro"}},{"attributes":{"name":"Claudia Bergstrom IV","age":24,"location":"Port Jack"}},{"attributes":{"name":"Patience Dicki","age":53,"location":"West Casperview"}},{"attributes":{"name":"Rochelle Kuphal-Sipes","age":66,"location":"Rickeyfield"}},{"attributes":{"name":"Brett Pagac","age":74,"location":"Websterfort"}},{"attributes":{"name":"Lillian Russel Jr.","age":76,"location":"Padbergside"}},{"attributes":{"name":"Marlon Schmitt","age":57,"location":"Surprise"}},{"attributes":{"name":"Jake Dietrich-Schmidt II","age":34,"location":"Davenport"}},{"attributes":{"name":"Mr. Percy Kshlerin","age":46,"location":"New Felicityborough"}},{"attributes":{"name":"Duane Howe","age":41,"location":"Port Dorthaton"}},{"attributes":{"name":"Charles Wyman","age":29,"location":"East Tomas"}},{"attributes":{"name":"Rodger Beahan","age":65,"location":"Hoppecester"}},{"attributes":{"name":"Chesley Hermann","age":78,"location":"Volkmanborough"}},{"attributes":{"name":"Shanelle Beier","age":39,"location":"Round Rock"}},{"attributes":{"name":"Miss Keven Harber DDS","age":53,"location":"Calechester"}},{"attributes":{"name":"Gerald Lang","age":71,"location":"New Richard"}},{"attributes":{"name":"Theresa Zboncak","age":35,"location":"Corkeryhaven"}},{"attributes":{"name":"Carmen Dickens-Fahey","age":50,"location":"Toneymouth"}},{"attributes":{"name":"Mable Tillman","age":43,"location":"Haleyfort"}},{"attributes":{"name":"Rashad Stokes I","age":41,"location":"Danikatown"}},{"attributes":{"name":"Hattie Skiles","age":35,"location":"Eudoraview"}},{"attributes":{"name":"Jackie Jones","age":43,"location":"South Howell"}},{"attributes":{"name":"Alicia Harber","age":22,"location":"Lake Eliseoberg"}},{"attributes":{"name":"Meredith Farrell Sr.","age":28,"location":"O'Connellside"}},{"attributes":{"name":"Sandy Grimes","age":18,"location":"Maggioville"}},{"attributes":{"name":"Pat Boyer","age":40,"location":"Cyrusstad"}},{"attributes":{"name":"Harold McKenzie","age":29,"location":"East Trentport"}},{"attributes":{"name":"Thalia Auer","age":79,"location":"Encinitas"}},{"attributes":{"name":"Mrs. Marguerite Towne","age":21,"location":"Fort Danielleport"}},{"attributes":{"name":"Mario Von III","age":41,"location":"Hermistonport"}},{"attributes":{"name":"Antwan Kuhlman","age":34,"location":"Lake Kaylin"}},{"attributes":{"name":"Trent Reichert","age":41,"location":"Florissant"}},{"attributes":{"name":"Araceli Reilly","age":40,"location":"Orinchester"}},{"attributes":{"name":"Toy Lueilwitz V","age":35,"location":"Hegmannborough"}},{"attributes":{"name":"Jason Jacobi","age":30,"location":"Claudeburgh"}},{"attributes":{"name":"Deanna Altenwerth","age":71,"location":"North Micaela"}},{"attributes":{"name":"Dr. Deron Dietrich","age":61,"location":"Manhattan"}},{"attributes":{"name":"Lazaro Kassulke-Funk III","age":61,"location":"Meridian"}},{"attributes":{"name":"Ms. Maybelle Carter III","age":47,"location":"East Alfredbury"}},{"attributes":{"name":"Gwendolyn Gulgowski","age":36,"location":"Darioberg"}},{"attributes":{"name":"Linda Wilkinson I","age":45,"location":"Traceboro"}},{"attributes":{"name":"Jacob Zieme","age":19,"location":"Patrickville"}},{"attributes":{"name":"Ms. Byron Reinger","age":51,"location":"Port Mattie"}},{"attributes":{"name":"Lloyd Parker","age":27,"location":"Fort Todchester"}},{"attributes":{"name":"Devon Zemlak","age":18,"location":"Winstonstad"}},{"attributes":{"name":"Janice Mann","age":18,"location":"Gaithersburg"}},{"attributes":{"name":"Jerry Lind","age":50,"location":"East Candelariohaven"}},{"attributes":{"name":"Beryl Breitenberg","age":40,"location":"South Ursula"}},{"attributes":{"name":"Aurelia Hansen-Zieme","age":19,"location":"Burleson"}},{"attributes":{"name":"Miranda Casper","age":55,"location":"Rosemariestad"}},{"attributes":{"name":"Virgil Donnelly","age":57,"location":"Kingcester"}},{"attributes":{"name":"Melba Toy","age":29,"location":"McLean"}},{"attributes":{"name":"Mark Anderson","age":18,"location":"Monahanfurt"}},{"attributes":{"name":"Mrs. Edmund Zboncak","age":23,"location":"Port Leonor"}},{"attributes":{"name":"Edwin Waelchi","age":22,"location":"South Stephenworth"}},{"attributes":{"name":"Alexandre Monahan","age":24,"location":"Lake Winnifred"}},{"attributes":{"name":"Georgia Denesik","age":77,"location":"Port Ceceliafurt"}},{"attributes":{"name":"Dawn Hahn","age":52,"location":"East Arvillaland"}},{"attributes":{"name":"Lauren Douglas","age":52,"location":"North Arthurworth"}},{"attributes":{"name":"Bert Upton","age":80,"location":"South Vanessafort"}},{"attributes":{"name":"Dr. Laney Flatley","age":33,"location":"Dibbertview"}},{"attributes":{"name":"Tracy Johns","age":76,"location":"West Cruz"}},{"attributes":{"name":"Arturo Windler","age":54,"location":"Lowebury"}},{"attributes":{"name":"Tamara Hane Jr.","age":49,"location":"Pfeffermouth"}},{"attributes":{"name":"Mr. Kylee McGlynn","age":71,"location":"Des Plaines"}},{"attributes":{"name":"Alexander Brakus","age":31,"location":"Port Ronstad"}},{"attributes":{"name":"Aaron Schmitt","age":78,"location":"Alekstad"}},{"attributes":{"name":"Darren Cronin","age":45,"location":"Hermanncester"}},{"attributes":{"name":"Constance Ward","age":47,"location":"North Mauricemouth"}},{"attributes":{"name":"Mr. Josh Bahringer","age":48,"location":"Cincinnati"}},{"attributes":{"name":"Carolyn Douglas","age":50,"location":"Port Mackstead"}},{"attributes":{"name":"Virgil Howe MD","age":56,"location":"Rogahnhaven"}},{"attributes":{"name":"Sarah Yundt","age":80,"location":"Cassinfurt"}},{"attributes":{"name":"Rufus Harber","age":40,"location":"Danniechester"}},{"attributes":{"name":"Ericka Gerhold","age":38,"location":"Dickinsonberg"}},{"attributes":{"name":"Frankie Windler","age":66,"location":"Hellerburgh"}},{"attributes":{"name":"George Parisian","age":26,"location":"Everett"}},{"attributes":{"name":"Dr. Perry Schneider","age":18,"location":"North Emilebury"}},{"attributes":{"name":"Cornelius Stehr","age":51,"location":"Karlifurt"}},{"attributes":{"name":"Ms. Minerva Ullrich PhD","age":69,"location":"Port Pamela"}},{"attributes":{"name":"Juanita Robel","age":35,"location":"Port Rethafort"}},{"attributes":{"name":"Beatrice Rutherford","age":53,"location":"McKenzietown"}},{"attributes":{"name":"Dr. Maureen Jast","age":60,"location":"South Miller"}},{"attributes":{"name":"Anne Parisian Sr.","age":52,"location":"Champaign"}},{"attributes":{"name":"Dawn Hermiston","age":35,"location":"West Valley City"}},{"attributes":{"name":"Timothy Graham","age":33,"location":"Indio"}},{"attributes":{"name":"Mrs. Shelly Nitzsche","age":74,"location":"Lynchmouth"}},{"attributes":{"name":"Diane D'Amore","age":19,"location":"North Julianahaven"}},{"attributes":{"name":"Grant Oberbrunner","age":49,"location":"West Valley City"}},{"attributes":{"name":"Jorge Sipes III","age":49,"location":"Parisbury"}},{"attributes":{"name":"Georgia Moore","age":43,"location":"Hesselview"}},{"attributes":{"name":"Minnie Lehner III","age":55,"location":"Eau Claire"}},{"attributes":{"name":"Kevin Schroeder","age":38,"location":"Braedenbury"}},{"attributes":{"name":"Austin Willms","age":50,"location":"Rohnert Park"}},{"attributes":{"name":"Terry McClure","age":53,"location":"Framiland"}},{"attributes":{"name":"Flo Rolfson","age":69,"location":"Hectorfurt"}},{"attributes":{"name":"Lawrence Roberts","age":71,"location":"South Chayafield"}},{"attributes":{"name":"Gustavo Hudson-Murray","age":29,"location":"Arvidview"}},{"attributes":{"name":"Ruben Cronin","age":64,"location":"Lake Veronaburgh"}},{"attributes":{"name":"Nella Carroll","age":34,"location":"Skokie"}},{"attributes":{"name":"Doug Pfannerstill","age":62,"location":"Fairfield"}},{"attributes":{"name":"Janice Olson","age":60,"location":"Santa Fe"}},{"attributes":{"name":"Brendon Moore","age":73,"location":"New Glennie"}},{"attributes":{"name":"Jackie Feest Sr.","age":73,"location":"Lake Janiyafort"}},{"attributes":{"name":"Eleanora Wuckert","age":73,"location":"Lake Maystad"}},{"attributes":{"name":"Wava Renner-Koch","age":73,"location":"Jenniferhaven"}},{"attributes":{"name":"Geneva Shanahan","age":38,"location":"Elgin"}},{"attributes":{"name":"Mr. Anissa Jenkins","age":21,"location":"Pocatello"}},{"attributes":{"name":"Lacy Senger","age":32,"location":"West Casandra"}},{"attributes":{"name":"Elyssa Hayes","age":44,"location":"East Amirboro"}},{"attributes":{"name":"Hubert Price","age":62,"location":"Hawthorne"}},{"attributes":{"name":"Monserrat Abernathy","age":72,"location":"Gutmannland"}},{"attributes":{"name":"Darlene Hirthe","age":51,"location":"Whiteboro"}},{"attributes":{"name":"Mikayla Herzog","age":55,"location":"Kautzerstead"}},{"attributes":{"name":"Jennie Douglas","age":21,"location":"West Eloisa"}},{"attributes":{"name":"Dr. Josefa Schroeder-Dietrich","age":22,"location":"Bayamon"}},{"attributes":{"name":"Ada Ullrich","age":73,"location":"East Arch"}},{"attributes":{"name":"Vera Carroll","age":31,"location":"Lizafurt"}},{"attributes":{"name":"Randall Walsh","age":40,"location":"Victoriafurt"}},{"attributes":{"name":"Jean Braun","age":60,"location":"Garryborough"}},{"attributes":{"name":"Juanita Pouros-VonRueden","age":29,"location":"New Emmetland"}},{"attributes":{"name":"Price Kuhlman","age":53,"location":"West Alycia"}},{"attributes":{"name":"Pat Pouros","age":52,"location":"Luciennefurt"}},{"attributes":{"name":"Loren Hegmann","age":34,"location":"East Monserratcester"}},{"attributes":{"name":"Lucile Senger","age":55,"location":"West Skylahaven"}},{"attributes":{"name":"Sam Schimmel IV","age":42,"location":"Murrieta"}},{"attributes":{"name":"Cecelia Strosin","age":20,"location":"New Mireillehaven"}},{"attributes":{"name":"Rebeca Pfeffer","age":28,"location":"Mohammadboro"}},{"attributes":{"name":"Jaden Thiel","age":31,"location":"Koreyville"}},{"attributes":{"name":"Donnie Homenick","age":22,"location":"Fort Chloebury"}},{"attributes":{"name":"Cynthia Hayes","age":53,"location":"Cedar Rapids"}},{"attributes":{"name":"Deanna Daugherty","age":39,"location":"Trentshire"}},{"attributes":{"name":"Rickey O'Conner","age":25,"location":"Lake Mario"}},{"attributes":{"name":"Connie Thiel","age":79,"location":"South Trisha"}},{"attributes":{"name":"Alberta Christiansen","age":31,"location":"South Cordell"}},{"attributes":{"name":"Ashly Fay","age":77,"location":"Hayward"}},{"attributes":{"name":"Salvatore Berge","age":42,"location":"Arianefort"}},{"attributes":{"name":"Anne Graham-Roberts","age":32,"location":"Weimannberg"}},{"attributes":{"name":"Rosa Collier","age":72,"location":"North Colinshire"}},{"attributes":{"name":"Marian Hand","age":68,"location":"South Shanonstead"}},{"attributes":{"name":"Ernest Green","age":60,"location":"Bashirianbury"}},{"attributes":{"name":"Spencer Schmeler","age":54,"location":"Edgarfurt"}},{"attributes":{"name":"Garett Balistreri","age":27,"location":"South Valley"}},{"attributes":{"name":"Harold Pagac","age":21,"location":"East Camilafort"}},{"attributes":{"name":"Robyn O'Hara","age":23,"location":"Adeleville"}},{"attributes":{"name":"Richmond Runolfsdottir","age":72,"location":"Millerburgh"}},{"attributes":{"name":"Wade Muller","age":30,"location":"Fort Rodrick"}},{"attributes":{"name":"Jody Turner","age":33,"location":"Kenner"}},{"attributes":{"name":"Dr. Claire Jerde","age":60,"location":"Armstrongfurt"}},{"attributes":{"name":"Halle O'Hara","age":66,"location":"North Danielleshire"}},{"attributes":{"name":"Leo Bayer","age":35,"location":"Taliahaven"}},{"attributes":{"name":"Amber Hirthe","age":26,"location":"Missouri City"}},{"attributes":{"name":"Keaton Emmerich","age":55,"location":"Willshire"}},{"attributes":{"name":"Omar D'Amore","age":31,"location":"Port Declanport"}},{"attributes":{"name":"Letitia Roob","age":40,"location":"Derektown"}},{"attributes":{"name":"Christie Harris","age":26,"location":"North Amaya"}},{"attributes":{"name":"Mr. Deanna Leuschke","age":42,"location":"Roobton"}},{"attributes":{"name":"Byron Morissette","age":51,"location":"Fort Reggieport"}},{"attributes":{"name":"Nadia Konopelski III","age":31,"location":"Gilbertchester"}},{"attributes":{"name":"Annamarie McGlynn","age":33,"location":"Denton"}},{"attributes":{"name":"Genevieve Lubowitz","age":66,"location":"New Rylee"}},{"attributes":{"name":"Ron Koelpin III","age":45,"location":"South Lucius"}},{"attributes":{"name":"Cade Thiel","age":53,"location":"Darianashire"}},{"attributes":{"name":"Milton Sauer","age":80,"location":"Boscostad"}},{"attributes":{"name":"Joy Koch","age":35,"location":"Fort Carson"}},{"attributes":{"name":"Mable Rath","age":46,"location":"Bend"}},{"attributes":{"name":"Mrs. Declan Mraz","age":71,"location":"Emmettbury"}},{"attributes":{"name":"Tracy Rath","age":77,"location":"East Meaghan"}},{"attributes":{"name":"Tracey Abbott","age":59,"location":"Cedar Park"}},{"attributes":{"name":"Citlalli Dooley","age":29,"location":"Justinaport"}},{"attributes":{"name":"Alexandra Keebler","age":53,"location":"Mayertfurt"}},{"attributes":{"name":"Nedra Steuber","age":18,"location":"Riverstead"}},{"attributes":{"name":"Elmo Davis","age":32,"location":"North Deanshire"}},{"attributes":{"name":"Neil Schulist","age":57,"location":"Fort Graham"}},{"attributes":{"name":"Vincent Greenfelder","age":37,"location":"Lake Briashire"}},{"attributes":{"name":"Mrs. Geraldine Runolfsson DVM","age":58,"location":"Lake Gilbert"}},{"attributes":{"name":"Kari Reinger","age":53,"location":"Port Zane"}},{"attributes":{"name":"Ms. Johnnie Witting","age":53,"location":"Fayborough"}},{"attributes":{"name":"Merlin Lind","age":61,"location":"Buckeye"}},{"attributes":{"name":"Lance Weissnat","age":35,"location":"Beattyfurt"}},{"attributes":{"name":"Melissa Kertzmann","age":21,"location":"Croninfort"}},{"attributes":{"name":"Peter Lehner","age":18,"location":"Collinshire"}},{"attributes":{"name":"Sonja Stoltenberg","age":60,"location":"Sacramento"}},{"attributes":{"name":"Mark Maggio","age":46,"location":"Fort Yoshiko"}},{"attributes":{"name":"Lora Schinner","age":57,"location":"Buffalo"}},{"attributes":{"name":"Ms. Angel Jacobson","age":36,"location":"West Kory"}},{"attributes":{"name":"Mallie Stroman III","age":79,"location":"Lake Jamal"}},{"attributes":{"name":"Francis Johnson","age":48,"location":"Helenachester"}},{"attributes":{"name":"Mr. Karson Bashirian","age":42,"location":"South Jordan"}},{"attributes":{"name":"Sheri Cummings","age":72,"location":"North Perryland"}},{"attributes":{"name":"Dean Barrows","age":47,"location":"Bellflower"}},{"attributes":{"name":"Beulah Kshlerin","age":36,"location":"Lake Brendonport"}},{"attributes":{"name":"Miss Josue Terry","age":55,"location":"Fort Susana"}},{"attributes":{"name":"Tyrel Schuppe","age":71,"location":"South Myron"}},{"attributes":{"name":"Erica Gulgowski III","age":47,"location":"San Bruno"}},{"attributes":{"name":"Seth Cartwright DDS","age":27,"location":"Kianaberg"}},{"attributes":{"name":"Maurice Blick IV","age":39,"location":"Philadelphia"}},{"attributes":{"name":"Bertha Bahringer III","age":24,"location":"Demondland"}},{"attributes":{"name":"Mrs. Carlie Cassin","age":51,"location":"West Berta"}},{"attributes":{"name":"Mrs. Jaron Waters","age":50,"location":"New Cletusborough"}},{"attributes":{"name":"Ora Hodkiewicz-Leffler","age":25,"location":"Peteside"}},{"attributes":{"name":"Rose Schaefer","age":42,"location":"Hauckbury"}},{"attributes":{"name":"Mr. Alejandro Parisian","age":63,"location":"Lehi"}},{"attributes":{"name":"Lila Cole","age":73,"location":"New Germainecester"}},{"attributes":{"name":"Zelma Considine","age":56,"location":"West Jeanie"}},{"attributes":{"name":"Antonia Moen I","age":61,"location":"Middletown"}},{"attributes":{"name":"Emily Jacobi Sr.","age":24,"location":"Wiegandfield"}},{"attributes":{"name":"Ada Erdman","age":46,"location":"Angiecester"}},{"attributes":{"name":"Rolando O'Kon","age":59,"location":"Jaydecester"}},{"attributes":{"name":"Patrick Feest","age":47,"location":"New Tyrelfort"}},{"attributes":{"name":"Anita Stracke PhD","age":38,"location":"Bismarck"}},{"attributes":{"name":"Connie Hackett","age":24,"location":"Denton"}},{"attributes":{"name":"Mr. Kayley Jakubowski","age":74,"location":"East Leannfurt"}},{"attributes":{"name":"Regina O'Conner","age":63,"location":"Roobtown"}},{"attributes":{"name":"Tom Spencer","age":68,"location":"Aniyaville"}},{"attributes":{"name":"Cale Mayer-Bergnaum","age":51,"location":"West Dusty"}},{"attributes":{"name":"Genevieve Swaniawski","age":63,"location":"West Sam"}},{"attributes":{"name":"Iva Beatty","age":37,"location":"North Louisa"}},{"attributes":{"name":"Ramona Abbott","age":76,"location":"Milford"}},{"attributes":{"name":"Gustavo Bayer","age":61,"location":"Reingerborough"}},{"attributes":{"name":"Mr. Viola Turner","age":74,"location":"Fort Caseyboro"}},{"attributes":{"name":"Pam Doyle","age":40,"location":"Fort Worth"}},{"attributes":{"name":"Ryan Legros","age":18,"location":"Borerville"}},{"attributes":{"name":"Asha Batz","age":33,"location":"Bethesda"}},{"attributes":{"name":"Jorge Konopelski","age":31,"location":"Fort Vincentshire"}},{"attributes":{"name":"Ignacio Kessler Jr.","age":66,"location":"Christopheland"}},{"attributes":{"name":"Garry Nader","age":21,"location":"Ebertchester"}},{"attributes":{"name":"Sabina Swift","age":23,"location":"Arcadia"}},{"attributes":{"name":"Odessa Pfeffer","age":19,"location":"Burniceshire"}},{"attributes":{"name":"Sheryl Kris","age":35,"location":"Turlock"}},{"attributes":{"name":"Margot Vandervort","age":35,"location":"New Arnaldo"}},{"attributes":{"name":"Kelly Boehm","age":78,"location":"New Else"}},{"attributes":{"name":"Hassan Wolf","age":48,"location":"East Tylerbury"}},{"attributes":{"name":"Jordyn Kuhlman","age":24,"location":"Nilstown"}},{"attributes":{"name":"Francisca Stracke-Rolfson","age":65,"location":"West Renecester"}},{"attributes":{"name":"Elyse Wyman","age":37,"location":"Reginaldmouth"}},{"attributes":{"name":"Lily Runte","age":29,"location":"South Ryleyboro"}},{"attributes":{"name":"Ms. Rossie Smitham","age":24,"location":"Maggioport"}},{"attributes":{"name":"Opal Watsica-Hermiston","age":27,"location":"Terre Haute"}},{"attributes":{"name":"Bobbie Little","age":59,"location":"McLean"}},{"attributes":{"name":"Bertram Kerluke","age":19,"location":"Fort Sadyetown"}},{"attributes":{"name":"Wendell Rau","age":35,"location":"Port Willie"}},{"attributes":{"name":"Brandy Schmidt","age":54,"location":"Tomworth"}},{"attributes":{"name":"Alfred Breitenberg V","age":71,"location":"Lake Edisonborough"}},{"attributes":{"name":"Aurelia Gutkowski","age":70,"location":"Fort Eleazarchester"}},{"attributes":{"name":"Orville Schmitt","age":39,"location":"Franeyhaven"}},{"attributes":{"name":"Tiana Smitham","age":65,"location":"Lake Forest"}},{"attributes":{"name":"Jacqueline O'Connell","age":34,"location":"Buffalo"}},{"attributes":{"name":"Veronica Kilback","age":27,"location":"Hackensack"}},{"attributes":{"name":"Rudy Roberts","age":18,"location":"Strackefurt"}},{"attributes":{"name":"Joshua Sawayn Jr.","age":78,"location":"Lake Eladio"}},{"attributes":{"name":"Macy Jerde","age":72,"location":"North Emmanuelburgh"}},{"attributes":{"name":"Neva Mosciski-Casper","age":23,"location":"Sheboygan"}},{"attributes":{"name":"Vida Keeling I","age":79,"location":"Roobboro"}},{"attributes":{"name":"Rosalie Bosco II","age":28,"location":"Nitzscheview"}},{"attributes":{"name":"Priscilla Ziemann","age":46,"location":"Delmerhaven"}},{"attributes":{"name":"Isaac Medhurst","age":64,"location":"North Owenshire"}},{"attributes":{"name":"James Cartwright V","age":56,"location":"Cleveland"}},{"attributes":{"name":"Stephanie Bosco","age":80,"location":"East Luna"}},{"attributes":{"name":"Nasir Abshire PhD","age":62,"location":"San Clemente"}},{"attributes":{"name":"Henry Weber","age":41,"location":"Philadelphia"}},{"attributes":{"name":"Stanley Rippin","age":76,"location":"West Kierahaven"}},{"attributes":{"name":"Jeffery Gulgowski","age":32,"location":"Fort Arvillafield"}},{"attributes":{"name":"Wilma Bartoletti","age":32,"location":"Lake Terenceborough"}},{"attributes":{"name":"Ruby Abernathy","age":56,"location":"Monahanworth"}},{"attributes":{"name":"Talon Cremin","age":80,"location":"Treutelshire"}},{"attributes":{"name":"Madelynn O'Connell","age":80,"location":"Escondido"}},{"attributes":{"name":"Marcella Borer","age":47,"location":"Bellflower"}},{"attributes":{"name":"Adrian Haag V","age":44,"location":"Alhambra"}},{"attributes":{"name":"Eugene West-Rath","age":39,"location":"New Darrell"}},{"attributes":{"name":"Karen Volkman-Vandervort","age":73,"location":"Palm Coast"}},{"attributes":{"name":"Dr. Margaret Frami","age":45,"location":"Mosciskiland"}},{"attributes":{"name":"Mr. Lyle Schamberger","age":55,"location":"Carmelostead"}},{"attributes":{"name":"Pauline McClure","age":22,"location":"Fort Casimer"}},{"attributes":{"name":"Dr. Donald Gutkowski","age":54,"location":"Lilyanfurt"}},{"attributes":{"name":"Henry Walsh","age":39,"location":"Teaganville"}},{"attributes":{"name":"Tyler Tromp","age":24,"location":"New Raleighfort"}},{"attributes":{"name":"Minerva Hackett","age":75,"location":"Buena Park"}},{"attributes":{"name":"Claudia Koss","age":33,"location":"Highlands Ranch"}},{"attributes":{"name":"Beth Wyman","age":62,"location":"Greenholtstad"}},{"attributes":{"name":"Julian Jacobs-Baumbach","age":55,"location":"Fort Jaynecester"}},{"attributes":{"name":"Joyce Jaskolski","age":44,"location":"South Ellachester"}},{"attributes":{"name":"Joanne Haag","age":65,"location":"Port Meaghan"}},{"attributes":{"name":"Gloria Green","age":48,"location":"Edwinafort"}},{"attributes":{"name":"Dana Welch","age":34,"location":"Kirkland"}},{"attributes":{"name":"Bradley Armstrong","age":34,"location":"Kozeystad"}},{"attributes":{"name":"Ron Gerhold","age":46,"location":"Shawnee"}},{"attributes":{"name":"Miss Wyatt Hudson","age":43,"location":"Kieranburgh"}},{"attributes":{"name":"Josefina Smitham IV","age":53,"location":"North Savannahland"}},{"attributes":{"name":"Winston Hahn","age":65,"location":"Fort Kallie"}},{"attributes":{"name":"Elyssa Effertz-Hackett V","age":23,"location":"North Tobyhaven"}},{"attributes":{"name":"Adam Lang DDS","age":24,"location":"Krystelcester"}},{"attributes":{"name":"Ms. Ella Treutel","age":51,"location":"Raufield"}},{"attributes":{"name":"Rory Hoppe","age":63,"location":"League City"}},{"attributes":{"name":"Curtis Oberbrunner","age":45,"location":"North Lourdes"}},{"attributes":{"name":"Robyn Herman","age":40,"location":"Gennaroborough"}},{"attributes":{"name":"Alyson Johnson","age":31,"location":"Port Anitaville"}},{"attributes":{"name":"Ricky Zboncak","age":29,"location":"Baltimore"}},{"attributes":{"name":"Brad Murazik","age":32,"location":"South Nelle"}},{"attributes":{"name":"Amanda Will III","age":79,"location":"Green Bay"}},{"attributes":{"name":"Amanda Franecki","age":24,"location":"St. Paul"}},{"attributes":{"name":"Cristina Douglas","age":53,"location":"North Kellen"}},{"attributes":{"name":"Julia Jenkins","age":29,"location":"Brianfield"}},{"attributes":{"name":"Samantha Bogan","age":22,"location":"Port Nolaville"}},{"attributes":{"name":"George Adams Jr.","age":51,"location":"Chadchester"}},{"attributes":{"name":"Paulette Marks-Botsford","age":41,"location":"New Jeanstead"}},{"attributes":{"name":"Leone Bernier I","age":32,"location":"Elmoworth"}},{"attributes":{"name":"Jana Casper","age":63,"location":"Runolfssonborough"}},{"attributes":{"name":"Elisa Hamill Jr.","age":54,"location":"Port Felipestead"}},{"attributes":{"name":"Oscar Becker I","age":29,"location":"Fort Mya"}},{"attributes":{"name":"Colby Homenick-Nienow","age":64,"location":"North Feliciabury"}},{"attributes":{"name":"Taylor Luettgen","age":43,"location":"South Clinton"}},{"attributes":{"name":"Germaine Stoltenberg","age":35,"location":"Fort Julianside"}},{"attributes":{"name":"Mrs. Ethyl Kuhlman","age":76,"location":"Osinskistead"}},{"attributes":{"name":"Callie Kozey","age":53,"location":"Arnoldobury"}},{"attributes":{"name":"Thomas Wuckert","age":18,"location":"West Kacey"}},{"attributes":{"name":"Robin Gibson-Lesch","age":47,"location":"Lake Ellenbury"}},{"attributes":{"name":"Bernadine Ryan","age":47,"location":"Elmiramouth"}},{"attributes":{"name":"Dallas Kuhic","age":62,"location":"Port Winston"}},{"attributes":{"name":"Brett Kassulke","age":55,"location":"Fredfurt"}},{"attributes":{"name":"Hattie Walker","age":56,"location":"Bradtkemouth"}},{"attributes":{"name":"Ernestine Vandervort","age":24,"location":"Attleboro"}},{"attributes":{"name":"Ralph Parisian","age":47,"location":"New Sherwoodmouth"}},{"attributes":{"name":"Ms. Hilda Grimes Sr.","age":45,"location":"North Lilian"}},{"attributes":{"name":"Orlando Quigley","age":74,"location":"North Adalineland"}},{"attributes":{"name":"Ebony Braun","age":36,"location":"South Jovannyboro"}},{"attributes":{"name":"Tom Gislason Jr.","age":69,"location":"Keeblerland"}},{"attributes":{"name":"Mr. Jody Altenwerth","age":59,"location":"Borercester"}},{"attributes":{"name":"Katherine Funk","age":39,"location":"Fort Antoinette"}},{"attributes":{"name":"Andy Witting","age":65,"location":"Hermanland"}},{"attributes":{"name":"Andrew Crona","age":66,"location":"Cincinnati"}},{"attributes":{"name":"Trudie Kiehn","age":77,"location":"South Rachaelton"}},{"attributes":{"name":"Ignacio Runte","age":66,"location":"New Brookemouth"}},{"attributes":{"name":"Roxanne Heaney","age":53,"location":"Abernathyfort"}},{"attributes":{"name":"Constantin Bogan","age":79,"location":"Jakubowskimouth"}},{"attributes":{"name":"Oscar Wintheiser III","age":36,"location":"Chula Vista"}},{"attributes":{"name":"Vivien Kulas","age":52,"location":"Westmouth"}},{"attributes":{"name":"Isaac Welch","age":64,"location":"Farmington"}},{"attributes":{"name":"Tracey Fisher","age":69,"location":"Champlinfort"}},{"attributes":{"name":"Madalyn Braun","age":26,"location":"Fort Quintenside"}},{"attributes":{"name":"Julie Breitenberg Jr.","age":67,"location":"Port Arnulfostad"}},{"attributes":{"name":"Luz Lueilwitz","age":78,"location":"Lianashire"}},{"attributes":{"name":"Presley Zemlak","age":31,"location":"Lake Brenden"}},{"attributes":{"name":"Amaya Dare","age":65,"location":"Reading"}},{"attributes":{"name":"Madelynn Mueller","age":33,"location":"Port Emiliochester"}},{"attributes":{"name":"Bailey Hahn","age":32,"location":"New Gertrudehaven"}},{"attributes":{"name":"Helen Walker","age":59,"location":"Redwood City"}},{"attributes":{"name":"Kali Romaguera","age":72,"location":"Millcreek"}},{"attributes":{"name":"Rowena Hansen","age":26,"location":"Port Abbiefield"}},{"attributes":{"name":"Lorene Von","age":79,"location":"West Missouri"}},{"attributes":{"name":"Kathleen Reinger","age":73,"location":"Fabiolaport"}},{"attributes":{"name":"Kenton Cronin","age":48,"location":"Kingbury"}},{"attributes":{"name":"Salvatore Feil","age":45,"location":"St. Peters"}},{"attributes":{"name":"Kim Langworth","age":34,"location":"Nicolaschester"}},{"attributes":{"name":"Mr. Newton Littel PhD","age":28,"location":"Beulahside"}},{"attributes":{"name":"Debbie Quitzon DDS","age":53,"location":"Collierchester"}},{"attributes":{"name":"Sophia Leffler","age":29,"location":"South Robbfort"}},{"attributes":{"name":"Perry Schneider Sr.","age":28,"location":"West Vanboro"}},{"attributes":{"name":"Nicole Lynch","age":19,"location":"Beercester"}},{"attributes":{"name":"Andy Murazik PhD","age":66,"location":"Langoshfurt"}},{"attributes":{"name":"Allen Daugherty","age":43,"location":"Port St. Lucie"}},{"attributes":{"name":"Rick Osinski","age":69,"location":"Kshlerinborough"}},{"attributes":{"name":"Dianne Krajcik-Hessel","age":76,"location":"Pollyhaven"}},{"attributes":{"name":"Joseph Rohan","age":56,"location":"Norman"}},{"attributes":{"name":"Sammie Torphy","age":46,"location":"Fort Deontae"}},{"attributes":{"name":"Molly Ratke","age":26,"location":"Zboncakmouth"}},{"attributes":{"name":"Rick Lakin","age":76,"location":"Hattiesburg"}},{"attributes":{"name":"Reuben Hickle","age":19,"location":"Kaelyncester"}},{"attributes":{"name":"Sunny Hammes","age":64,"location":"Gregoryshire"}},{"attributes":{"name":"Marcus Wolf","age":35,"location":"Port Janick"}},{"attributes":{"name":"Vicente Schoen","age":72,"location":"North Pattiecester"}},{"attributes":{"name":"Gwen Ferry","age":28,"location":"VonRuedenchester"}},{"attributes":{"name":"Edgar Ortiz","age":62,"location":"Sierra Vista"}},{"attributes":{"name":"Darrion Gerhold","age":41,"location":"Lake Lysanne"}},{"attributes":{"name":"Shaun Yost","age":67,"location":"Gracieville"}},{"attributes":{"name":"Christophe Hammes DDS","age":48,"location":"North Wernerland"}},{"attributes":{"name":"Dr. Valentina Ullrich","age":51,"location":"North Zelma"}},{"attributes":{"name":"Nora Wilkinson","age":59,"location":"New Amosboro"}},{"attributes":{"name":"Jude Cormier","age":29,"location":"New Cecilchester"}},{"attributes":{"name":"Chris Hilpert","age":29,"location":"Fort Estellmouth"}},{"attributes":{"name":"Cleve Strosin","age":68,"location":"New Lucio"}},{"attributes":{"name":"Alice Herzog","age":65,"location":"East Fletcher"}},{"attributes":{"name":"Jerry Schulist","age":37,"location":"Fort Laceyberg"}},{"attributes":{"name":"Manuel Legros","age":38,"location":"Connbury"}},{"attributes":{"name":"Morris Glover","age":78,"location":"Hammesside"}},{"attributes":{"name":"Elvira Sauer","age":80,"location":"Bartonberg"}},{"attributes":{"name":"Triston Hansen","age":57,"location":"Port Mayahaven"}},{"attributes":{"name":"Darnell Stoltenberg","age":53,"location":"Huelsside"}},{"attributes":{"name":"Kelly Williamson","age":62,"location":"Lake Rachel"}},{"attributes":{"name":"Ms. Trey Daniel II","age":54,"location":"Trenton"}},{"attributes":{"name":"Harry Schiller","age":40,"location":"Santa Rosa"}},{"attributes":{"name":"Blake Upton","age":57,"location":"Beckerhaven"}},{"attributes":{"name":"Dewey Thiel","age":42,"location":"Charlottesville"}},{"attributes":{"name":"Katrine Buckridge","age":70,"location":"Alysonchester"}},{"attributes":{"name":"Marco Orn","age":78,"location":"Watsonville"}},{"attributes":{"name":"Mr. Antone Sawayn","age":47,"location":"Ryanfield"}},{"attributes":{"name":"Bradford Kuphal","age":39,"location":"South Chelsea"}},{"attributes":{"name":"Mrs. Kiera Fisher","age":43,"location":"South Lottiebury"}},{"attributes":{"name":"Cecilia Jast","age":35,"location":"South Jamilboro"}},{"attributes":{"name":"Saul Koss","age":20,"location":"Effertzstead"}},{"attributes":{"name":"Carla Wolff","age":60,"location":"South Jeffreyview"}},{"attributes":{"name":"Theresia Schowalter-Spinka","age":30,"location":"Shyannebury"}},{"attributes":{"name":"Elias Gibson","age":63,"location":"West Rhoda"}},{"attributes":{"name":"Abraham Sporer","age":60,"location":"North Scotborough"}},{"attributes":{"name":"Melyssa Runolfsson","age":62,"location":"East Enriquefort"}},{"attributes":{"name":"Tevin Dietrich Sr.","age":19,"location":"North Elyseberg"}},{"attributes":{"name":"Ms. Winona Stoltenberg","age":35,"location":"Dunwoody"}},{"attributes":{"name":"Karelle Murphy","age":68,"location":"Attleboro"}},{"attributes":{"name":"Miss Adell Kunze","age":36,"location":"South Lelia"}},{"attributes":{"name":"Major Herzog","age":76,"location":"Roslynton"}},{"attributes":{"name":"Emily Deckow","age":70,"location":"Jaststead"}},{"attributes":{"name":"Delores Jerde","age":42,"location":"Rowlett"}},{"attributes":{"name":"Demarco Cronin","age":61,"location":"Bahringerbury"}},{"attributes":{"name":"Matt Dickinson","age":67,"location":"Merlside"}},{"attributes":{"name":"Julia Considine II","age":23,"location":"Velvastead"}},{"attributes":{"name":"Inez Kerluke","age":70,"location":"Tiannaview"}},{"attributes":{"name":"Dewey Kreiger","age":43,"location":"Lake Bellberg"}},{"attributes":{"name":"Cindy Schamberger","age":62,"location":"Juliaton"}},{"attributes":{"name":"Erik Aufderhar","age":25,"location":"Koeppmouth"}},{"attributes":{"name":"Miss Sherri Schamberger-Hills","age":30,"location":"Jameymouth"}},{"attributes":{"name":"Mr. Leroy Kulas","age":31,"location":"East Telly"}},{"attributes":{"name":"Evert Donnelly V","age":34,"location":"Ellaport"}},{"attributes":{"name":"Lloyd Sporer","age":34,"location":"Mertzport"}},{"attributes":{"name":"Kevin Schuppe","age":56,"location":"South Reva"}},{"attributes":{"name":"Arely Wisozk I","age":76,"location":"Upland"}},{"attributes":{"name":"Betty Becker","age":41,"location":"North Richland Hills"}},{"attributes":{"name":"Cory Reilly","age":49,"location":"Oxnard"}},{"attributes":{"name":"Dr. Maggie Cole","age":45,"location":"Port Jared"}},{"attributes":{"name":"Ramiro Larson","age":79,"location":"Sammamish"}},{"attributes":{"name":"Nayeli Batz Jr.","age":65,"location":"Port Efrain"}},{"attributes":{"name":"Ms. Shayna Schamberger IV","age":56,"location":"Wardchester"}},{"attributes":{"name":"Miss Annetta Sanford","age":30,"location":"Framimouth"}},{"attributes":{"name":"Camren Morar","age":48,"location":"Rebacester"}},{"attributes":{"name":"Mrs. Nicholaus McDermott","age":79,"location":"Alaynabury"}},{"attributes":{"name":"Lura Pacocha II","age":51,"location":"Cartwrightstead"}},{"attributes":{"name":"Christopher Fritsch","age":64,"location":"Jenniefield"}},{"attributes":{"name":"Deion Zboncak","age":69,"location":"Montyhaven"}},{"attributes":{"name":"Rolando Gerlach","age":63,"location":"Port Vicenta"}},{"attributes":{"name":"Alta Abbott","age":49,"location":"Bend"}},{"attributes":{"name":"Odell Franey-Lemke","age":67,"location":"Columbia"}},{"attributes":{"name":"Sophie Spinka","age":40,"location":"East Immanuelfield"}},{"attributes":{"name":"Aaliyah Boyle","age":20,"location":"Alizestead"}},{"attributes":{"name":"Ana Schmeler-Abernathy","age":54,"location":"Schillerport"}},{"attributes":{"name":"Spencer Swift","age":54,"location":"Orlando"}},{"attributes":{"name":"Rafael Balistreri","age":44,"location":"Eliseofield"}},{"attributes":{"name":"Donald Leannon IV","age":50,"location":"West Justen"}},{"attributes":{"name":"Annette Nienow","age":51,"location":"North Metacester"}},{"attributes":{"name":"Rhett Dickinson","age":79,"location":"Lorainechester"}},{"attributes":{"name":"Joshua Sawayn-Bruen","age":54,"location":"South Lawsonmouth"}},{"attributes":{"name":"Anya Kuhlman","age":78,"location":"Bayleeport"}},{"attributes":{"name":"Dr. Americo Hauck","age":40,"location":"Evelynburgh"}},{"attributes":{"name":"Nettie Huel","age":28,"location":"Abelardoland"}},{"attributes":{"name":"June Keeling","age":52,"location":"Port Kacie"}},{"attributes":{"name":"Toni Weber","age":28,"location":"East Aidanbury"}},{"attributes":{"name":"Luke Beahan","age":71,"location":"Breanamouth"}},{"attributes":{"name":"Maurice Bernhard","age":21,"location":"Lake Mikayla"}},{"attributes":{"name":"Alfonso Murphy III","age":63,"location":"Easterberg"}},{"attributes":{"name":"Dr. Bryant Kuhic","age":31,"location":"Hillston"}},{"attributes":{"name":"Sophie Weimann IV","age":65,"location":"Carolynshire"}},{"attributes":{"name":"Jaron Considine","age":26,"location":"Eddieworth"}},{"attributes":{"name":"Arthur Stanton","age":47,"location":"Okunevaview"}},{"attributes":{"name":"Jeffry Bergnaum-Brakus","age":44,"location":"Hempstead"}},{"attributes":{"name":"Adam O'Hara","age":78,"location":"South Joy"}},{"attributes":{"name":"Mariela Flatley","age":75,"location":"Powlowskibury"}},{"attributes":{"name":"Terrell Goldner","age":60,"location":"Smyrna"}},{"attributes":{"name":"Lila Halvorson","age":30,"location":"League City"}},{"attributes":{"name":"Louise Gutkowski","age":70,"location":"Lake Providencimouth"}},{"attributes":{"name":"Kyle West","age":29,"location":"Bergstrombury"}},{"attributes":{"name":"Trevion MacGyver","age":57,"location":"New Bryon"}},{"attributes":{"name":"Elaine Mertz","age":66,"location":"Norman"}},{"attributes":{"name":"Sammie Schuppe II","age":26,"location":"West Austinfield"}},{"attributes":{"name":"Andres Gorczany","age":72,"location":"East Marquiseberg"}},{"attributes":{"name":"Terry Hermiston","age":62,"location":"Harrisfort"}},{"attributes":{"name":"Carolyn Collins","age":30,"location":"Woodland"}},{"attributes":{"name":"Tracy Mann","age":72,"location":"Cartwrightville"}},{"attributes":{"name":"Johnny Prohaska","age":67,"location":"Joanafort"}},{"attributes":{"name":"Deshawn Nitzsche","age":37,"location":"East Mortonmouth"}},{"attributes":{"name":"Shemar Anderson","age":29,"location":"Fort Jacques"}},{"attributes":{"name":"Neil Trantow Sr.","age":80,"location":"Beverlyland"}},{"attributes":{"name":"Juvenal Cole","age":21,"location":"Milanton"}},{"attributes":{"name":"Nicholas Gutmann","age":72,"location":"South Luisaborough"}},{"attributes":{"name":"Rosalie Kuhlman","age":46,"location":"Schroederworth"}},{"attributes":{"name":"Henrietta Cremin","age":67,"location":"Shieldsstead"}},{"attributes":{"name":"Sam Schamberger","age":57,"location":"Clearwater"}},{"attributes":{"name":"Roland Goodwin","age":80,"location":"Feilcester"}},{"attributes":{"name":"Dr. Amanda Roob Sr.","age":74,"location":"Burlington"}},{"attributes":{"name":"Mary Crona","age":51,"location":"North Harley"}},{"attributes":{"name":"Rufus Kirlin","age":58,"location":"O'Reillystad"}},{"attributes":{"name":"Maegan Lindgren","age":55,"location":"Lake Adolphberg"}},{"attributes":{"name":"Dora Sanford","age":20,"location":"Boehmton"}},{"attributes":{"name":"Lori Dach","age":47,"location":"Bergefield"}},{"attributes":{"name":"Arthur Kautzer II","age":53,"location":"New Toybury"}},{"attributes":{"name":"Lauryn Dickens PhD","age":62,"location":"Karianeview"}},{"attributes":{"name":"Maximus Graham","age":54,"location":"West Queenview"}},{"attributes":{"name":"Corene Harvey II","age":44,"location":"Moorestad"}},{"attributes":{"name":"Jon Rosenbaum","age":33,"location":"Krisland"}},{"attributes":{"name":"Juwan Jacobson","age":75,"location":"Fort Virginie"}},{"attributes":{"name":"Serenity Quitzon","age":60,"location":"New Kiley"}},{"attributes":{"name":"Ephraim Lesch","age":73,"location":"South Adaline"}},{"attributes":{"name":"Toni Tremblay","age":55,"location":"Lake Theomouth"}},{"attributes":{"name":"Lindsay Schowalter","age":26,"location":"Burke"}},{"attributes":{"name":"Juanita Nolan","age":24,"location":"Elmirachester"}},{"attributes":{"name":"Mrs. Shea Pacocha","age":65,"location":"South Angeline"}},{"attributes":{"name":"Allan Bartell","age":43,"location":"North Cheyenne"}},{"attributes":{"name":"Joy Hudson","age":54,"location":"East Marquesview"}},{"attributes":{"name":"Marie Bogan","age":48,"location":"Heaneybury"}},{"attributes":{"name":"Sydni Herman","age":78,"location":"Connellystad"}},{"attributes":{"name":"Judson Bayer","age":25,"location":"Tillmanworth"}},{"attributes":{"name":"Ciara Yundt","age":47,"location":"Denesikstead"}},{"attributes":{"name":"Giovanna Quigley","age":41,"location":"Allentown"}},{"attributes":{"name":"Patrick Kuphal-VonRueden","age":73,"location":"Athens-Clarke County"}},{"attributes":{"name":"Bertrand Prosacco","age":75,"location":"Brandyhaven"}},{"attributes":{"name":"Whitney Langworth MD","age":80,"location":"Wichita"}},{"attributes":{"name":"Cecil Gulgowski","age":23,"location":"North Freeda"}},{"attributes":{"name":"William Gibson I","age":60,"location":"Fort Rylee"}},{"attributes":{"name":"Perry Heidenreich","age":26,"location":"Richardson"}},{"attributes":{"name":"Ida Mueller","age":33,"location":"Bergnaummouth"}},{"attributes":{"name":"Kyler Runte","age":28,"location":"Carrollton"}},{"attributes":{"name":"Felicia Quigley","age":71,"location":"West Chelsea"}},{"attributes":{"name":"Frankie Sauer","age":21,"location":"New Darylchester"}},{"attributes":{"name":"Evans Reilly","age":45,"location":"Lake Camyllefield"}},{"attributes":{"name":"Dr. Andre Wintheiser","age":32,"location":"Deshawnboro"}},{"attributes":{"name":"Willis Paucek","age":22,"location":"Buena Park"}},{"attributes":{"name":"Natalie Hoeger","age":46,"location":"Littlefield"}},{"attributes":{"name":"Sophia Ortiz","age":59,"location":"Rutheworth"}},{"attributes":{"name":"Harvey VonRueden","age":34,"location":"Watsonville"}},{"attributes":{"name":"Peter Herman","age":79,"location":"Fort Kyle"}},{"attributes":{"name":"Terry Ledner","age":36,"location":"Chicopee"}},{"attributes":{"name":"Orlando Trantow","age":51,"location":"New Gudrunton"}},{"attributes":{"name":"Cloyd Klocko II","age":19,"location":"Pasqualeborough"}},{"attributes":{"name":"Devan Nienow","age":79,"location":"Florence-Graham"}},{"attributes":{"name":"Ralph Cummerata","age":20,"location":"West Jalen"}},{"attributes":{"name":"Viola Bashirian","age":43,"location":"Conroyberg"}},{"attributes":{"name":"Cathy Heaney","age":40,"location":"Kilbacktown"}},{"attributes":{"name":"Luke Kris","age":34,"location":"Fort Osbaldo"}},{"attributes":{"name":"Nicole Medhurst","age":44,"location":"Port Napoleon"}},{"attributes":{"name":"Lori Kshlerin","age":36,"location":"North Lonzohaven"}},{"attributes":{"name":"Kristin Haley","age":43,"location":"Lake Kaycee"}},{"attributes":{"name":"Miss Althea Auer","age":72,"location":"Fort Moshecester"}},{"attributes":{"name":"Cassandra Aufderhar","age":24,"location":"Fort Billieboro"}},{"attributes":{"name":"Vickie Greenfelder","age":40,"location":"Faheyview"}},{"attributes":{"name":"Bryan Hintz","age":54,"location":"Gottliebton"}},{"attributes":{"name":"Leticia Fadel","age":78,"location":"Johnathonboro"}},{"attributes":{"name":"Miss Alexandre Kunze","age":69,"location":"Metzberg"}},{"attributes":{"name":"Patty Jenkins","age":52,"location":"Collinstown"}},{"attributes":{"name":"Tyler Hills","age":33,"location":"South Juliomouth"}},{"attributes":{"name":"Karley Becker","age":18,"location":"Wymanborough"}},{"attributes":{"name":"Dr. Elva Lindgren-Mueller","age":21,"location":"Fort Alexandrine"}},{"attributes":{"name":"Eleanor Goyette","age":72,"location":"Neilberg"}},{"attributes":{"name":"Furman Ortiz","age":47,"location":"East Deangeloside"}},{"attributes":{"name":"Einar Kulas","age":62,"location":"McKinney"}},{"attributes":{"name":"Wesley Hartmann","age":58,"location":"Fort Mortontown"}},{"attributes":{"name":"Freda Sawayn","age":37,"location":"Port Haleigh"}},{"attributes":{"name":"Jan Stracke","age":37,"location":"Lehigh Acres"}},{"attributes":{"name":"Doug Zboncak-Runolfsson","age":38,"location":"Bartonshire"}},{"attributes":{"name":"Brenda Koelpin","age":54,"location":"Mercedesfort"}},{"attributes":{"name":"Heidi Auer","age":24,"location":"Kaelynstad"}},{"attributes":{"name":"Alfred Bogan","age":54,"location":"Lake Chelsea"}},{"attributes":{"name":"Cory Weber","age":73,"location":"South Nadiabury"}},{"attributes":{"name":"Irving Bashirian","age":37,"location":"Bellingham"}},{"attributes":{"name":"Ashley Mitchell","age":76,"location":"Stammton"}},{"attributes":{"name":"Marina Bailey","age":74,"location":"South Brianashire"}},{"attributes":{"name":"Abraham Wyman","age":38,"location":"Cupertino"}},{"attributes":{"name":"Darrion Cormier","age":51,"location":"New Savanahtown"}},{"attributes":{"name":"Kevon Howe","age":57,"location":"Lake Beatrice"}},{"attributes":{"name":"Brenden Littel","age":31,"location":"Corneliusmouth"}},{"attributes":{"name":"Owen Willms","age":68,"location":"Lilyhaven"}},{"attributes":{"name":"Jorge Hilll","age":71,"location":"Visalia"}},{"attributes":{"name":"Harriet Bartoletti DDS","age":31,"location":"New David"}},{"attributes":{"name":"Katrina Lueilwitz","age":75,"location":"Somerville"}},{"attributes":{"name":"Sean Larson II","age":69,"location":"Christineborough"}},{"attributes":{"name":"Vance Schmidt","age":49,"location":"Emieburgh"}},{"attributes":{"name":"Wilbert Schowalter","age":24,"location":"McDermottchester"}},{"attributes":{"name":"Dr. Destin Reilly","age":48,"location":"Thornton"}},{"attributes":{"name":"Lindsey Halvorson-Ward PhD","age":76,"location":"Schimmelfurt"}},{"attributes":{"name":"Will O'Keefe","age":20,"location":"East Kadinmouth"}},{"attributes":{"name":"May Jenkins","age":33,"location":"Margueritetown"}},{"attributes":{"name":"Sven Gottlieb","age":72,"location":"West Kim"}},{"attributes":{"name":"Ewell Halvorson","age":76,"location":"Margarettville"}},{"attributes":{"name":"Nannie Langworth","age":56,"location":"Toledo"}},{"attributes":{"name":"Gloria Kertzmann","age":36,"location":"New Lucile"}},{"attributes":{"name":"Terry Sauer","age":50,"location":"North Richland Hills"}},{"attributes":{"name":"Alexandro Douglas","age":55,"location":"Port Thurman"}},{"attributes":{"name":"Sue Erdman","age":51,"location":"Powlowskiside"}},{"attributes":{"name":"Velda Prosacco","age":71,"location":"Tellymouth"}},{"attributes":{"name":"Dr. Nadine Kautzer","age":40,"location":"Andymouth"}},{"attributes":{"name":"Owen Osinski","age":63,"location":"New Nick"}},{"attributes":{"name":"Imelda Kessler-White V","age":57,"location":"Carmel"}},{"attributes":{"name":"Angelina Bednar","age":41,"location":"Albachester"}},{"attributes":{"name":"Raul Lind","age":60,"location":"Darrinberg"}},{"attributes":{"name":"Paul Maggio","age":69,"location":"Susannafield"}},{"attributes":{"name":"Gayle Grimes","age":44,"location":"Randalland"}},{"attributes":{"name":"Dr. Diana Block Sr.","age":39,"location":"East Woodrow"}},{"attributes":{"name":"Fannie Olson","age":27,"location":"Erie"}},{"attributes":{"name":"Patty VonRueden","age":32,"location":"Tempe"}},{"attributes":{"name":"Dwight Botsford V","age":57,"location":"Jeramiefurt"}},{"attributes":{"name":"Leona Breitenberg","age":42,"location":"East Blazeworth"}},{"attributes":{"name":"Dr. Lavina Rowe","age":35,"location":"Fort Jaedenborough"}},{"attributes":{"name":"Jana Hackett","age":33,"location":"Margarethaven"}},{"attributes":{"name":"Halie Lang-Vandervort","age":36,"location":"North Donnycester"}},{"attributes":{"name":"Marjolaine Oberbrunner MD","age":49,"location":"Johnpaulhaven"}},{"attributes":{"name":"June Macejkovic","age":62,"location":"East Jaspertown"}},{"attributes":{"name":"Johnny Halvorson","age":47,"location":"San Clemente"}},{"attributes":{"name":"Glenda Oberbrunner","age":80,"location":"Blickburgh"}},{"attributes":{"name":"Julie Kunze Jr.","age":24,"location":"Monicaville"}},{"attributes":{"name":"Richard Fisher","age":60,"location":"Hampton"}},{"attributes":{"name":"Katie Sawayn V","age":33,"location":"Hudsonborough"}},{"attributes":{"name":"Colby Jenkins","age":38,"location":"Willafort"}},{"attributes":{"name":"Adolphus MacGyver","age":32,"location":"Long Beach"}},{"attributes":{"name":"Lindsey Pagac","age":42,"location":"Valdosta"}},{"attributes":{"name":"Levi Kulas","age":18,"location":"New Malachi"}},{"attributes":{"name":"Ora DuBuque","age":65,"location":"Schowalterfurt"}},{"attributes":{"name":"Ruth Bode","age":41,"location":"New Lowell"}},{"attributes":{"name":"Kari Farrell-Crist","age":77,"location":"South Eulah"}},{"attributes":{"name":"Tomas Abbott","age":60,"location":"West Velva"}},{"attributes":{"name":"Freeda Windler DVM","age":68,"location":"Strackecester"}},{"attributes":{"name":"Lester Emard","age":69,"location":"Hoppefort"}},{"attributes":{"name":"Ginger Parker","age":20,"location":"Lake Lenoraburgh"}},{"attributes":{"name":"Dr. Lorenza Tromp","age":54,"location":"Port Oleview"}},{"attributes":{"name":"Brad Little","age":61,"location":"North Kennithland"}},{"attributes":{"name":"Aniyah Morar","age":75,"location":"Murielfurt"}},{"attributes":{"name":"Mr. Moshe Stanton","age":62,"location":"Round Rock"}},{"attributes":{"name":"Roman Brekke","age":30,"location":"South Amyboro"}},{"attributes":{"name":"Greg Tillman","age":40,"location":"East Jademouth"}},{"attributes":{"name":"Leland Hills I","age":18,"location":"Lake Heber"}},{"attributes":{"name":"Lavon Dach","age":60,"location":"Anikaview"}},{"attributes":{"name":"Barbara Kihn MD","age":77,"location":"Kassulkefort"}},{"attributes":{"name":"Sam Brown","age":73,"location":"Meridian"}},{"attributes":{"name":"Jennie Parisian","age":34,"location":"Brakusfort"}},{"attributes":{"name":"Shane Heathcote","age":24,"location":"Wainostad"}},{"attributes":{"name":"Dr. Zachary Romaguera-Boehm","age":25,"location":"Lake Lloyd"}},{"attributes":{"name":"Celia Walter-Lowe","age":29,"location":"Bellevue"}},{"attributes":{"name":"Carson Reynolds","age":51,"location":"Jovanyfurt"}},{"attributes":{"name":"Corene Ratke","age":19,"location":"Fort Laney"}},{"attributes":{"name":"Marcella Gislason","age":56,"location":"Raleigh"}},{"attributes":{"name":"Fritz Bergnaum","age":19,"location":"Hilmaworth"}},{"attributes":{"name":"Sabina Johns","age":25,"location":"Fort Amalia"}},{"attributes":{"name":"Kyle Collins","age":44,"location":"West Vito"}},{"attributes":{"name":"Dana Leuschke III","age":66,"location":"Fort Isabellefurt"}},{"attributes":{"name":"Lue Braun","age":42,"location":"Lake Nicklausborough"}},{"attributes":{"name":"Dr. Brooke Stamm","age":69,"location":"Lubowitzworth"}},{"attributes":{"name":"Rene Hettinger","age":73,"location":"Kassulketown"}},{"attributes":{"name":"Billie Russel","age":45,"location":"North Chauncey"}},{"attributes":{"name":"Ms. Earl Wilderman","age":67,"location":"Welchtown"}},{"attributes":{"name":"Keyshawn Doyle","age":40,"location":"Baldwin Park"}},{"attributes":{"name":"Mable Ebert","age":72,"location":"Fort Velda"}},{"attributes":{"name":"Annalise Considine-Kirlin","age":33,"location":"Christophebury"}},{"attributes":{"name":"Angeline Lowe","age":44,"location":"Coltenchester"}},{"attributes":{"name":"Antonio Ward","age":68,"location":"Aishaworth"}},{"attributes":{"name":"Clemmie Bailey","age":35,"location":"Huelshaven"}},{"attributes":{"name":"Amira Kshlerin","age":26,"location":"Richardson"}},{"attributes":{"name":"Jaylen Ondricka","age":79,"location":"Celiacester"}},{"attributes":{"name":"Eileen Keeling","age":22,"location":"Roanoke"}},{"attributes":{"name":"Ernestine Rath","age":47,"location":"Winnifredfurt"}},{"attributes":{"name":"Elta Halvorson","age":55,"location":"Lake Glennaton"}},{"attributes":{"name":"Curtis Hettinger","age":40,"location":"Wilkinsonstead"}},{"attributes":{"name":"Vanessa Muller","age":66,"location":"Eribertofurt"}},{"attributes":{"name":"Hubert Hagenes MD","age":68,"location":"Roxanneland"}},{"attributes":{"name":"Rudy Stroman","age":72,"location":"Fort Felicita"}},{"attributes":{"name":"Rebecca Hintz","age":34,"location":"South Hershel"}},{"attributes":{"name":"Juana Buckridge","age":43,"location":"Fort Brendan"}},{"attributes":{"name":"Pam Hyatt","age":76,"location":"Maritzaton"}},{"attributes":{"name":"Betsy Streich","age":38,"location":"Hialeah"}},{"attributes":{"name":"Kurt Quitzon","age":60,"location":"Jonathonfield"}},{"attributes":{"name":"Celestine Nader","age":33,"location":"South Frederic"}},{"attributes":{"name":"Dominick Batz","age":19,"location":"New Arnoldton"}},{"attributes":{"name":"Deanna Nolan","age":20,"location":"West Ignacioberg"}},{"attributes":{"name":"Emily Rempel PhD","age":56,"location":"East Carolinetown"}},{"attributes":{"name":"Crystel Steuber","age":28,"location":"Fort Warren"}},{"attributes":{"name":"Richard Toy","age":80,"location":"West Babylon"}},{"attributes":{"name":"Wilfred Zemlak","age":18,"location":"Angeloborough"}},{"attributes":{"name":"Arthur Bergnaum","age":64,"location":"Lake Jacklyn"}},{"attributes":{"name":"Miss Marcia Hand","age":40,"location":"Lake Kenyaberg"}},{"attributes":{"name":"Cody Huels","age":73,"location":"Framifort"}},{"attributes":{"name":"Bradford Wyman","age":75,"location":"Marisastead"}},{"attributes":{"name":"Willie Reilly","age":42,"location":"West Christopfurt"}},{"attributes":{"name":"Zackery Emmerich","age":54,"location":"South King"}},{"attributes":{"name":"Cecilia Lang","age":39,"location":"Fort Ernestinefort"}},{"attributes":{"name":"Pete Flatley","age":30,"location":"Lake Nicoletteworth"}},{"attributes":{"name":"Kelvin Streich","age":79,"location":"West Mitchellfort"}},{"attributes":{"name":"Marielle Pfannerstill","age":28,"location":"Port Katrina"}},{"attributes":{"name":"Rita Daugherty","age":70,"location":"Palm Desert"}},{"attributes":{"name":"Presley Dibbert-Huels DVM","age":77,"location":"Port Stacytown"}},{"attributes":{"name":"Monica Howe","age":68,"location":"New Tristintown"}},{"attributes":{"name":"Orion Spencer","age":47,"location":"Mayerfurt"}},{"attributes":{"name":"Bret Mohr","age":65,"location":"Cartwrightstad"}},{"attributes":{"name":"Tina Von","age":59,"location":"Sibylstad"}},{"attributes":{"name":"Adrian Bechtelar","age":31,"location":"Fort Kieranstead"}},{"attributes":{"name":"Marcella Franecki IV","age":68,"location":"Sawaynbury"}},{"attributes":{"name":"Joana Ferry","age":45,"location":"East Jalon"}},{"attributes":{"name":"London Jones","age":37,"location":"Fort Gavin"}},{"attributes":{"name":"Ms. Brody Walsh","age":24,"location":"Bellevue"}},{"attributes":{"name":"Melba Russel","age":22,"location":"Aubreetown"}},{"attributes":{"name":"Helen Kuhic-Farrell","age":32,"location":"South Sebastianworth"}},{"attributes":{"name":"Rosario Schoen","age":36,"location":"Quigleyside"}},{"attributes":{"name":"Hazel Prosacco","age":24,"location":"Milwaukee"}},{"attributes":{"name":"Leonor Casper","age":19,"location":"Bergnaumburgh"}},{"attributes":{"name":"Owen Langosh","age":54,"location":"New Eldred"}},{"attributes":{"name":"Rickey Bode","age":36,"location":"Cordiamouth"}},{"attributes":{"name":"Rosella Kihn","age":65,"location":"Torphyburgh"}},{"attributes":{"name":"Mr. Elva Wisoky III","age":55,"location":"Cormierstad"}},{"attributes":{"name":"Bethany O'Keefe","age":28,"location":"Murphyfurt"}},{"attributes":{"name":"Vicente Kassulke","age":49,"location":"Effertzstad"}},{"attributes":{"name":"Jaime Lesch","age":39,"location":"Howellworth"}},{"attributes":{"name":"Laura Goodwin","age":61,"location":"Santa Fe"}},{"attributes":{"name":"Desiree Cartwright","age":30,"location":"Gardnertown"}},{"attributes":{"name":"Santos Farrell","age":80,"location":"Fort Pierce"}},{"attributes":{"name":"Harriet Robel","age":57,"location":"East Jamarhaven"}},{"attributes":{"name":"Elena Heaney","age":66,"location":"Ratkestead"}},{"attributes":{"name":"Amie Mosciski","age":68,"location":"West New York"}},{"attributes":{"name":"Mrs. Cedric Lakin","age":39,"location":"Port Shakira"}},{"attributes":{"name":"Mae Ratke","age":51,"location":"East Tyriquehaven"}},{"attributes":{"name":"Andre Kling","age":41,"location":"Joeyland"}},{"attributes":{"name":"Patsy Kutch","age":29,"location":"Westview"}},{"attributes":{"name":"Rudy Mills","age":21,"location":"Lake Bernadette"}},{"attributes":{"name":"Erna Stoltenberg","age":39,"location":"Kundeland"}},{"attributes":{"name":"Darlene Yundt","age":37,"location":"Port Montyburgh"}},{"attributes":{"name":"Kathleen Grant","age":33,"location":"Dudleyshire"}},{"attributes":{"name":"Damon Rolfson","age":56,"location":"Romainehaven"}},{"attributes":{"name":"Casimer Rodriguez","age":69,"location":"Port Laurel"}},{"attributes":{"name":"Martha Breitenberg","age":51,"location":"Enterprise"}},{"attributes":{"name":"Merle Dietrich","age":19,"location":"Bergeville"}},{"attributes":{"name":"Rosamond Haag","age":29,"location":"Batzville"}},{"attributes":{"name":"Else Fay","age":40,"location":"North Dockstad"}},{"attributes":{"name":"Devan Sawayn","age":49,"location":"Earlenestad"}},{"attributes":{"name":"Casey Greenfelder-Windler","age":74,"location":"Quitzonshire"}},{"attributes":{"name":"Edmond Heidenreich","age":54,"location":"Irmashire"}},{"attributes":{"name":"Dr. Matilde Parker","age":43,"location":"Torpshire"}},{"attributes":{"name":"Jimmy Lind","age":21,"location":"Bahringercester"}},{"attributes":{"name":"Heidi Klein","age":75,"location":"Port Aaliyah"}},{"attributes":{"name":"Ashlynn Hessel I","age":43,"location":"West Isabellstead"}},{"attributes":{"name":"Van Beer","age":26,"location":"Weymouth Town"}},{"attributes":{"name":"Camila Friesen","age":34,"location":"Ziemannview"}},{"attributes":{"name":"Ron Stehr","age":22,"location":"Ernsercester"}},{"attributes":{"name":"Carrie Bosco","age":41,"location":"Lake Lambert"}},{"attributes":{"name":"Loretta Schultz","age":42,"location":"Fort Nicole"}},{"attributes":{"name":"Dr. Denise Anderson-Shields","age":18,"location":"New Orleans"}},{"attributes":{"name":"Lelia Prohaska","age":69,"location":"Lake Forrestton"}},{"attributes":{"name":"Paulette Runolfsson-Orn Jr.","age":47,"location":"Fort Leoniemouth"}},{"attributes":{"name":"Laurence Connelly","age":76,"location":"Friesenfurt"}},{"attributes":{"name":"Julie Lubowitz","age":38,"location":"Sammamish"}},{"attributes":{"name":"Mrs. Kristy Franey","age":77,"location":"West Trey"}},{"attributes":{"name":"Mr. Derek Gerhold","age":22,"location":"Crystelton"}},{"attributes":{"name":"Tonya Mertz","age":20,"location":"San Marcos"}},{"attributes":{"name":"Dedrick Mosciski","age":46,"location":"East Talia"}},{"attributes":{"name":"Ms. Nettie Bogan","age":60,"location":"Brendatown"}},{"attributes":{"name":"Gideon Streich","age":24,"location":"Ebertton"}},{"attributes":{"name":"Gail Parisian","age":48,"location":"Vacaville"}},{"attributes":{"name":"Theresia O'Hara","age":20,"location":"Emelieberg"}},{"attributes":{"name":"Cristina Denesik","age":41,"location":"Justineboro"}},{"attributes":{"name":"Greg Walker","age":80,"location":"Clementinaborough"}},{"attributes":{"name":"Ms. Lillian VonRueden","age":46,"location":"Port Darrencester"}},{"attributes":{"name":"Melanie Purdy","age":67,"location":"Friedafield"}},{"attributes":{"name":"Rogelio Murray","age":29,"location":"Albertaview"}},{"attributes":{"name":"Ms. Eloise Koepp","age":69,"location":"West Edythe"}},{"attributes":{"name":"Lionel Donnelly","age":32,"location":"Murphyworth"}},{"attributes":{"name":"Stella Mraz","age":56,"location":"Dariusworth"}},{"attributes":{"name":"Sandy Reichel","age":27,"location":"Haskellhaven"}},{"attributes":{"name":"Aaron Kris","age":48,"location":"Layton"}},{"attributes":{"name":"Jeremie Davis","age":55,"location":"Bergechester"}},{"attributes":{"name":"Ronald Dicki III","age":64,"location":"Amyside"}},{"attributes":{"name":"Miss Cleo Feeney","age":52,"location":"Ullrichton"}},{"attributes":{"name":"Laura Haley-Abshire","age":72,"location":"North Abby"}},{"attributes":{"name":"Mr. Arely Hickle","age":32,"location":"Maryseshire"}},{"attributes":{"name":"Rudolph Effertz DVM","age":23,"location":"South Karolannview"}},{"attributes":{"name":"Amira Murazik","age":51,"location":"West Jesseville"}},{"attributes":{"name":"Janie Goldner","age":80,"location":"Sigurdworth"}},{"attributes":{"name":"Dr. Kristopher Jast-Hickle","age":72,"location":"Keeblerport"}},{"attributes":{"name":"Chase Powlowski","age":44,"location":"Elouiseview"}},{"attributes":{"name":"Ursula Adams","age":37,"location":"Kesslerboro"}},{"attributes":{"name":"Gerard Yundt MD","age":25,"location":"North Brooklyn"}},{"attributes":{"name":"Willis Jenkins","age":77,"location":"Pomona"}},{"attributes":{"name":"Janae Flatley","age":57,"location":"Klockoberg"}},{"attributes":{"name":"Cristina Zulauf","age":47,"location":"Fort Mertie"}},{"attributes":{"name":"Guillermo Armstrong DVM","age":37,"location":"Lake Edisonfield"}},{"attributes":{"name":"Leta Conroy","age":19,"location":"Houstonchester"}},{"attributes":{"name":"Thomas Luettgen","age":24,"location":"Lexusfort"}},{"attributes":{"name":"Neal Leffler","age":40,"location":"East Angus"}},{"attributes":{"name":"Dominick Robel","age":72,"location":"Fort Louvenialand"}},{"attributes":{"name":"Jeremiah Lesch III","age":52,"location":"Melanyhaven"}},{"attributes":{"name":"Bart Morar","age":70,"location":"Aylaside"}},{"attributes":{"name":"Percy Ankunding","age":40,"location":"Breitenbergside"}},{"attributes":{"name":"Fernando Lubowitz I","age":53,"location":"Port Kraig"}},{"attributes":{"name":"Otis Hermiston","age":66,"location":"Battle Creek"}},{"attributes":{"name":"Joanny Rolfson","age":56,"location":"Lake Quinn"}},{"attributes":{"name":"Rita Heathcote","age":29,"location":"Port Guillermo"}},{"attributes":{"name":"Mrs. Antoinette Schneider-Huel","age":63,"location":"South Antoinetteton"}},{"attributes":{"name":"Tess Brekke","age":74,"location":"O'Connellfurt"}},{"attributes":{"name":"Arianna Pacocha","age":20,"location":"Richardville"}},{"attributes":{"name":"Kade Barrows","age":39,"location":"Howellberg"}},{"attributes":{"name":"Burley Hilll","age":55,"location":"Fort Angelita"}},{"attributes":{"name":"Jany O'Connell","age":61,"location":"Port Joanieside"}},{"attributes":{"name":"Rita Waters-Carter","age":25,"location":"Medford"}},{"attributes":{"name":"Jan Ortiz","age":76,"location":"Carrollcester"}},{"attributes":{"name":"Christy Runolfsson","age":34,"location":"North Dennisview"}},{"attributes":{"name":"Ms. Alyssa Bednar","age":65,"location":"Novato"}},{"attributes":{"name":"Danny Lemke","age":29,"location":"Alexashire"}},{"attributes":{"name":"Dr. Karl Altenwerth DVM","age":24,"location":"North Veronica"}},{"attributes":{"name":"Green Keeling-Mraz","age":28,"location":"Fort Orinshire"}},{"attributes":{"name":"Lynn Graham","age":44,"location":"Rosiefort"}},{"attributes":{"name":"Faye Abshire Jr.","age":56,"location":"East Sonyafield"}},{"attributes":{"name":"Timothy Harvey","age":57,"location":"Larsonberg"}},{"attributes":{"name":"Drew McKenzie I","age":44,"location":"Anchorage"}},{"attributes":{"name":"Quincy Padberg","age":38,"location":"South Dax"}},{"attributes":{"name":"Ricky Harvey","age":26,"location":"Kreigershire"}},{"attributes":{"name":"Dorothy Rolfson","age":74,"location":"East Lola"}},{"attributes":{"name":"Cheyenne Franecki","age":72,"location":"Severn"}},{"attributes":{"name":"Jeffery Jones","age":79,"location":"Hegmannchester"}},{"attributes":{"name":"Brenda Grant","age":36,"location":"Gilbertoworth"}},{"attributes":{"name":"Malvina Ortiz","age":28,"location":"Kristoferside"}},{"attributes":{"name":"Kendra Doyle","age":42,"location":"Fort Jesse"}},{"attributes":{"name":"Edward Haley-Wehner","age":59,"location":"Fort Sydnie"}},{"attributes":{"name":"Edna Mayer","age":76,"location":"Handtown"}},{"attributes":{"name":"Carroll Yost","age":41,"location":"Bereniceburgh"}},{"attributes":{"name":"Lauren Funk","age":34,"location":"Phoenix"}},{"attributes":{"name":"Murray Kreiger PhD","age":78,"location":"Fort Leonelberg"}},{"attributes":{"name":"Carroll Mann","age":37,"location":"West Juddton"}},{"attributes":{"name":"Jerome Auer","age":31,"location":"Amarillo"}},{"attributes":{"name":"Mr. Gilda Abbott III","age":25,"location":"Prosaccoburgh"}},{"attributes":{"name":"Loyce Hermann","age":29,"location":"Grand Forks"}},{"attributes":{"name":"Orlo Carter V","age":28,"location":"East Gaylefield"}},{"attributes":{"name":"Kale Kozey","age":73,"location":"Commerce City"}},{"attributes":{"name":"Conrad Crist","age":52,"location":"Bergnaumton"}},{"attributes":{"name":"Jovani Kovacek","age":51,"location":"Port Tessiefort"}},{"attributes":{"name":"Jan Block","age":69,"location":"Lake Bennie"}},{"attributes":{"name":"Arturo Schowalter","age":55,"location":"Fisherview"}},{"attributes":{"name":"Nicholas Fritsch","age":65,"location":"East Colemanworth"}},{"attributes":{"name":"Emilio Metz DDS","age":65,"location":"Fort Cristobal"}},{"attributes":{"name":"Ubaldo Blick","age":53,"location":"Kozeystead"}},{"attributes":{"name":"Coty Shields","age":18,"location":"West Vallie"}},{"attributes":{"name":"D'angelo Hudson","age":70,"location":"Vineland"}},{"attributes":{"name":"Rufus Tromp","age":75,"location":"East Zoeyfurt"}},{"attributes":{"name":"Keshawn Yost","age":55,"location":"East Archibaldton"}},{"attributes":{"name":"Mr. Samuel Tremblay","age":79,"location":"Nolanside"}},{"attributes":{"name":"Mrs. Joan Mann","age":65,"location":"Crookstown"}},{"attributes":{"name":"Enid Paucek Jr.","age":53,"location":"Cerritos"}},{"attributes":{"name":"Daisy Kirlin","age":61,"location":"Jaceyview"}},{"attributes":{"name":"Mr. Johnnie Collier-Weimann","age":80,"location":"East Los Angeles"}},{"attributes":{"name":"Cassidy Greenholt","age":52,"location":"Bakersfield"}},{"attributes":{"name":"Al Sauer","age":28,"location":"Fort Piper"}},{"attributes":{"name":"Barbara Beahan","age":23,"location":"Harlingen"}},{"attributes":{"name":"Hilario Hilpert","age":71,"location":"Port Constantinfort"}},{"attributes":{"name":"Lewis O'Hara-Greenfelder","age":23,"location":"Lake Emersonborough"}},{"attributes":{"name":"Leatha Beahan","age":66,"location":"Citrus Heights"}},{"attributes":{"name":"Ray Boyer","age":37,"location":"The Hammocks"}},{"attributes":{"name":"Connie Dietrich","age":76,"location":"East Simonechester"}},{"attributes":{"name":"Tiffany Kilback","age":80,"location":"Konopelskiland"}},{"attributes":{"name":"Bryan Klocko","age":76,"location":"New Hailee"}},{"attributes":{"name":"Brook Kozey","age":46,"location":"High Point"}},{"attributes":{"name":"Josiane Koepp","age":49,"location":"North Aric"}},{"attributes":{"name":"Brad Treutel","age":25,"location":"Deondreberg"}},{"attributes":{"name":"Dr. Harvey Auer","age":80,"location":"New Bill"}},{"attributes":{"name":"Bruce Murphy","age":26,"location":"Mavericktown"}},{"attributes":{"name":"Ms. Meggie Watsica","age":39,"location":"Port Amber"}},{"attributes":{"name":"Kari Feil","age":70,"location":"Stamford"}},{"attributes":{"name":"Eddie Roberts","age":69,"location":"Santa Monica"}},{"attributes":{"name":"Stephania Hansen","age":23,"location":"Lake Madie"}},{"attributes":{"name":"Ora Cormier","age":34,"location":"Missouri City"}},{"attributes":{"name":"Carroll Bins","age":67,"location":"Diamondmouth"}},{"attributes":{"name":"Sydnie Hirthe I","age":62,"location":"Wilmington"}},{"attributes":{"name":"Mrs. Brenda Pouros PhD","age":74,"location":"Kaylinshire"}},{"attributes":{"name":"Albina Kiehn","age":80,"location":"Ritchiefield"}},{"attributes":{"name":"Lula Erdman","age":48,"location":"Whittier"}},{"attributes":{"name":"Dashawn Smith","age":61,"location":"West Hayliestad"}},{"attributes":{"name":"Melba Krajcik","age":25,"location":"Kipstad"}},{"attributes":{"name":"Krista McCullough-Swaniawski","age":21,"location":"Morrisland"}},{"attributes":{"name":"Nathaniel Schmidt","age":77,"location":"Runolfsdottirtown"}},{"attributes":{"name":"Grace Bahringer MD","age":71,"location":"Port Waltonshire"}},{"attributes":{"name":"Dax Beatty","age":59,"location":"Fort Carmella"}},{"attributes":{"name":"Benny Farrell","age":38,"location":"East Jules"}},{"attributes":{"name":"Geovany Weimann","age":34,"location":"Palo Alto"}},{"attributes":{"name":"Jaiden Conroy","age":25,"location":"Baton Rouge"}},{"attributes":{"name":"Ana Gorczany","age":39,"location":"Manchester"}},{"attributes":{"name":"Dominic Kerluke","age":37,"location":"New Gia"}},{"attributes":{"name":"Sheldon Trantow-Spinka","age":25,"location":"Port Dortha"}},{"attributes":{"name":"Allan Runolfsson","age":80,"location":"Fort Hailieborough"}},{"attributes":{"name":"Clay Harris","age":58,"location":"South Maeganfort"}},{"attributes":{"name":"Felix Gleason II","age":22,"location":"Bethlehem"}},{"attributes":{"name":"Tyra Barrows","age":30,"location":"Arecibo"}},{"attributes":{"name":"Cecelia Murphy-Runolfsdottir","age":44,"location":"New Destiney"}},{"attributes":{"name":"Darla Corkery","age":79,"location":"Thousand Oaks"}},{"attributes":{"name":"Quinton Stoltenberg","age":61,"location":"Kenyattastad"}},{"attributes":{"name":"Tommie Koch","age":68,"location":"Lake Oraborough"}},{"attributes":{"name":"Miriam Wiza III","age":62,"location":"Lomafield"}},{"attributes":{"name":"Bryan Hansen","age":22,"location":"Mohammedton"}},{"attributes":{"name":"Diana Sipes","age":20,"location":"Huntington"}},{"attributes":{"name":"Ms. Donald Nienow","age":61,"location":"Hayesshire"}},{"attributes":{"name":"Rachel Lakin","age":55,"location":"Marquisestad"}},{"attributes":{"name":"Ivan Goldner","age":60,"location":"Hodkiewiczville"}},{"attributes":{"name":"Mrs. Chance Daugherty","age":73,"location":"New Larissaborough"}},{"attributes":{"name":"Cecilia Becker","age":44,"location":"Great Falls"}},{"attributes":{"name":"John Nienow","age":74,"location":"South Rylan"}},{"attributes":{"name":"Frederick Hilll","age":45,"location":"Kunzeshire"}},{"attributes":{"name":"Name Carter","age":21,"location":"Allychester"}},{"attributes":{"name":"Kariane Klocko","age":69,"location":"West Jordi"}},{"attributes":{"name":"Caroline Mohr","age":73,"location":"Schroederfurt"}},{"attributes":{"name":"Tanya Fritsch","age":79,"location":"Port Pearlie"}},{"attributes":{"name":"Mrs. Stephanie Kris","age":48,"location":"East Mckenzieboro"}},{"attributes":{"name":"Antoinette Boehm","age":73,"location":"Ornberg"}},{"attributes":{"name":"Dennis Walter Sr.","age":75,"location":"Lake Emeliafurt"}},{"attributes":{"name":"Manuela Koss","age":61,"location":"Wiegandburgh"}},{"attributes":{"name":"Kathleen Bednar","age":26,"location":"Gwenside"}},{"attributes":{"name":"Denise Denesik","age":52,"location":"Harrisboro"}},{"attributes":{"name":"Amber Hoppe","age":67,"location":"Mansfield"}},{"attributes":{"name":"Bobby Haag","age":45,"location":"Laguna Niguel"}},{"attributes":{"name":"Kay Fahey","age":19,"location":"New Dominic"}},{"attributes":{"name":"Bennie Tremblay","age":50,"location":"Greensboro"}},{"attributes":{"name":"Elvie Zemlak II","age":71,"location":"Wauwatosa"}},{"attributes":{"name":"Josiah Bode","age":28,"location":"Sauercester"}},{"attributes":{"name":"Audreanne McKenzie","age":23,"location":"Lloydville"}},{"attributes":{"name":"Virgil Luettgen","age":45,"location":"The Villages"}},{"attributes":{"name":"Keyshawn Little MD","age":71,"location":"South Rowena"}},{"attributes":{"name":"Mr. Andreanne Donnelly-Hills","age":70,"location":"West Josefaview"}},{"attributes":{"name":"Dion Halvorson Jr.","age":80,"location":"Kellybury"}},{"attributes":{"name":"Alison Murazik","age":20,"location":"Keeblerworth"}},{"attributes":{"name":"Sheryl Baumbach","age":56,"location":"South Eulaliaton"}},{"attributes":{"name":"Ardella Donnelly","age":35,"location":"Pricetown"}},{"attributes":{"name":"Rogelio Kulas","age":45,"location":"New Efrainworth"}},{"attributes":{"name":"Tamara Bahringer","age":35,"location":"Cronastad"}},{"attributes":{"name":"Dr. Yvette Hodkiewicz-Ryan","age":31,"location":"Lee's Summit"}},{"attributes":{"name":"Benedict McLaughlin","age":26,"location":"South Cassie"}},{"attributes":{"name":"Mike Tromp","age":59,"location":"Pearl City"}},{"attributes":{"name":"Dagmar Lehner","age":23,"location":"Allyborough"}},{"attributes":{"name":"Ismael Rice","age":33,"location":"Fort Lori"}},{"attributes":{"name":"Polly Hahn","age":54,"location":"Fort Verdachester"}},{"attributes":{"name":"Nichole Hirthe","age":75,"location":"Mentor"}},{"attributes":{"name":"Rosa Cremin","age":18,"location":"Edwardochester"}},{"attributes":{"name":"Dr. Maximilian Hagenes","age":62,"location":"Hempstead"}},{"attributes":{"name":"Lois Witting PhD","age":33,"location":"Fort Elliot"}},{"attributes":{"name":"Laurence Herman","age":43,"location":"Avondale"}},{"attributes":{"name":"Jan Veum","age":54,"location":"East Dylantown"}},{"attributes":{"name":"Garrett Kuvalis","age":64,"location":"Wilkinsonfurt"}},{"attributes":{"name":"Harry Senger","age":56,"location":"Mayeshire"}},{"attributes":{"name":"Guillermo Miller","age":52,"location":"South Valley"}},{"attributes":{"name":"Roman Mayert","age":74,"location":"Trevorborough"}},{"attributes":{"name":"Russell Hauck","age":42,"location":"Lincolnboro"}},{"attributes":{"name":"Matthew Carroll","age":38,"location":"Fort Daisy"}},{"attributes":{"name":"Evelyn Lueilwitz","age":44,"location":"Montefurt"}},{"attributes":{"name":"Keyon Kshlerin","age":38,"location":"Wyattstad"}},{"attributes":{"name":"Mertie Wyman III","age":42,"location":"Leslyfurt"}},{"attributes":{"name":"Maurice Rohan MD","age":50,"location":"Cedrickfield"}},{"attributes":{"name":"Dixie Herman","age":65,"location":"Farmington"}},{"attributes":{"name":"Eusebio Breitenberg","age":31,"location":"Tyreestead"}},{"attributes":{"name":"Georgia Johnson","age":78,"location":"Halborough"}},{"attributes":{"name":"April Smith-Graham","age":80,"location":"Port Zackeryburgh"}},{"attributes":{"name":"Kelly Donnelly","age":34,"location":"New Jeffreyside"}},{"attributes":{"name":"Shannon Bartoletti","age":24,"location":"Orphaton"}},{"attributes":{"name":"Carlee Harvey I","age":60,"location":"Port Giuseppe"}},{"attributes":{"name":"Darrick Ryan","age":58,"location":"Fort Ashleigh"}},{"attributes":{"name":"Doris MacGyver","age":43,"location":"East Nelle"}},{"attributes":{"name":"Dr. Dejah Ullrich V","age":52,"location":"Port Flavie"}},{"attributes":{"name":"Cathy Pagac","age":64,"location":"Carolynebury"}},{"attributes":{"name":"Betsy Smitham","age":57,"location":"Tryciaton"}},{"attributes":{"name":"Eula Torphy","age":20,"location":"Missouri City"}},{"attributes":{"name":"Brandy Quitzon","age":28,"location":"Muellerberg"}},{"attributes":{"name":"Miss Darwin Lynch","age":40,"location":"Jovaniborough"}},{"attributes":{"name":"Josie Lockman","age":44,"location":"North Little Rock"}},{"attributes":{"name":"Hugh McCullough","age":19,"location":"Louisaberg"}},{"attributes":{"name":"Everett Nitzsche","age":46,"location":"Fort Maciview"}},{"attributes":{"name":"Elijah Schuppe","age":53,"location":"Hermistonbury"}},{"attributes":{"name":"Donald Rolfson","age":48,"location":"Orem"}},{"attributes":{"name":"Dr. Kelsie Kerluke","age":29,"location":"Graysonboro"}},{"attributes":{"name":"Berta Littel","age":47,"location":"Port Jaredbury"}},{"attributes":{"name":"Gaetano Stracke","age":26,"location":"Jastshire"}},{"attributes":{"name":"Robyn Mann","age":38,"location":"Port Brentborough"}},{"attributes":{"name":"Brannon Franey","age":30,"location":"Broken Arrow"}},{"attributes":{"name":"Delbert Waelchi","age":26,"location":"New Bruce"}},{"attributes":{"name":"Domenick Goyette","age":79,"location":"South Arvid"}},{"attributes":{"name":"Gwen Volkman","age":28,"location":"Cummerataburgh"}},{"attributes":{"name":"Ms. Audrey Ritchie","age":28,"location":"South Eliantown"}},{"attributes":{"name":"Barbara Hahn V","age":26,"location":"Port Alvis"}},{"attributes":{"name":"William Koch","age":57,"location":"Bradlyborough"}},{"attributes":{"name":"Ross Ratke","age":49,"location":"West Beatrice"}},{"attributes":{"name":"Henry Botsford","age":62,"location":"North Aftonland"}},{"attributes":{"name":"Mona Klocko","age":45,"location":"East Coleman"}},{"attributes":{"name":"Brad Ebert","age":74,"location":"Bartview"}},{"attributes":{"name":"Ms. Jaydon Durgan","age":60,"location":"North Onaville"}},{"attributes":{"name":"Jocelyn Romaguera","age":36,"location":"Racine"}},{"attributes":{"name":"Genevieve Ortiz","age":68,"location":"Visalia"}},{"attributes":{"name":"Timmy Willms","age":62,"location":"Lake Cullen"}},{"attributes":{"name":"Santino Schamberger-Block","age":41,"location":"Lake Henderson"}},{"attributes":{"name":"Stewart Borer","age":66,"location":"Kassulkemouth"}},{"attributes":{"name":"Tony Doyle","age":65,"location":"New Deion"}},{"attributes":{"name":"Jane Bode Jr.","age":48,"location":"Euclid"}},{"attributes":{"name":"Louvenia Jacobi MD","age":44,"location":"Naderfurt"}},{"attributes":{"name":"Joy Hackett MD","age":49,"location":"Garlandworth"}},{"attributes":{"name":"Mrs. Gaston Kiehn","age":18,"location":"Kshlerinshire"}},{"attributes":{"name":"Mrs. Elaina Crist","age":48,"location":"Scranton"}},{"attributes":{"name":"Willard Heathcote-Ledner","age":19,"location":"Enid"}},{"attributes":{"name":"Rodolfo Walsh","age":60,"location":"Azusa"}},{"attributes":{"name":"Ms. Ferne Walter","age":24,"location":"New Myrltown"}},{"attributes":{"name":"Niko Klein","age":67,"location":"Raquelworth"}},{"attributes":{"name":"Loraine Jones PhD","age":71,"location":"New Joanneshire"}},{"attributes":{"name":"Essie Cruickshank I","age":27,"location":"Olsonhaven"}},{"attributes":{"name":"Brooke Pouros","age":38,"location":"Port Bulahhaven"}},{"attributes":{"name":"Greyson O'Reilly","age":40,"location":"Jarodfield"}},{"attributes":{"name":"Patricia Beatty","age":69,"location":"East Laney"}},{"attributes":{"name":"Carolyn Mann","age":46,"location":"Bethlehem"}},{"attributes":{"name":"Gary Satterfield","age":38,"location":"Beattyland"}},{"attributes":{"name":"Jackie Hermiston","age":44,"location":"Port Arthur"}},{"attributes":{"name":"Letha Beier","age":44,"location":"Fort Rydermouth"}},{"attributes":{"name":"Mr. Mark Wunsch","age":25,"location":"Kosstown"}},{"attributes":{"name":"Austin Beier","age":39,"location":"West Myrashire"}},{"attributes":{"name":"Lee Turner","age":79,"location":"North Jairoport"}},{"attributes":{"name":"Sonya Nader","age":33,"location":"Crookstown"}},{"attributes":{"name":"Erma Baumbach","age":31,"location":"North Angelita"}},{"attributes":{"name":"Chyna Heaney","age":31,"location":"Croninchester"}},{"attributes":{"name":"Olga Reichel","age":31,"location":"Krishaven"}},{"attributes":{"name":"Miriam Gerlach","age":35,"location":"Mayaguez"}},{"attributes":{"name":"Harry Champlin","age":61,"location":"Samsonborough"}},{"attributes":{"name":"Naomi Hegmann","age":42,"location":"East Schuylerfurt"}},{"attributes":{"name":"Daniel Runte","age":27,"location":"Keaganview"}},{"attributes":{"name":"Maxine Schmeler","age":45,"location":"Lake Melisa"}},{"attributes":{"name":"Erika Russel","age":27,"location":"North Emil"}},{"attributes":{"name":"Angelo Leffler","age":77,"location":"Fort Smith"}},{"attributes":{"name":"Jensen Morar","age":72,"location":"Millsfort"}},{"attributes":{"name":"Ashleigh Schuster","age":51,"location":"Colorado Springs"}},{"attributes":{"name":"Dereck Legros","age":26,"location":"West Felicia"}},{"attributes":{"name":"Jarrell West","age":67,"location":"Christyhaven"}},{"attributes":{"name":"Suzanne O'Keefe","age":45,"location":"East Francescoworth"}},{"attributes":{"name":"Javier McKenzie","age":29,"location":"Bonita Springs"}},{"attributes":{"name":"Hilda Ward","age":44,"location":"Laylaview"}},{"attributes":{"name":"Deanna Trantow","age":31,"location":"East Cesar"}},{"attributes":{"name":"Elena Hermiston","age":62,"location":"Springdale"}},{"attributes":{"name":"Dr. Salvatore Wehner","age":49,"location":"Lemuelton"}},{"attributes":{"name":"Skye Smitham I","age":35,"location":"Bauchport"}},{"attributes":{"name":"Dr. Erika Conroy","age":33,"location":"Hiramstad"}},{"attributes":{"name":"Colleen Davis","age":67,"location":"Upland"}},{"attributes":{"name":"Clifford Nolan","age":71,"location":"Elsieton"}},{"attributes":{"name":"Elna Kuhic","age":63,"location":"Trantowfield"}},{"attributes":{"name":"Kayden Labadie","age":42,"location":"Rorystead"}},{"attributes":{"name":"Jamie Casper PhD","age":20,"location":"New Benjaminworth"}},{"attributes":{"name":"Charlene Rippin","age":59,"location":"Pasco"}},{"attributes":{"name":"Colin Franecki","age":72,"location":"Waco"}},{"attributes":{"name":"Pattie Carter","age":75,"location":"Lake Tressaton"}},{"attributes":{"name":"Tristian Morissette","age":50,"location":"East Makayla"}},{"attributes":{"name":"Sally Reilly II","age":48,"location":"Las Vegas"}},{"attributes":{"name":"Jody Upton","age":67,"location":"Beierstead"}},{"attributes":{"name":"Kayla Schuster V","age":44,"location":"Shoreline"}},{"attributes":{"name":"Gwendolyn Bernier","age":46,"location":"Port Desiree"}},{"attributes":{"name":"Mabelle Kreiger","age":45,"location":"East Eltamouth"}},{"attributes":{"name":"Irma Lockman","age":55,"location":"West Dulcebury"}},{"attributes":{"name":"Holly Stamm","age":47,"location":"Rodolfostead"}},{"attributes":{"name":"Mrs. Candice Gorczany DVM","age":58,"location":"Bellevue"}},{"attributes":{"name":"Iris Terry","age":40,"location":"Bryan"}},{"attributes":{"name":"Gregory Swift","age":61,"location":"Menifee"}},{"attributes":{"name":"Rafaela Vandervort","age":29,"location":"Jonesboro"}},{"attributes":{"name":"Marshall Hudson","age":38,"location":"Rogelioton"}},{"attributes":{"name":"Valerie Marks","age":75,"location":"Hamillworth"}},{"attributes":{"name":"Dr. Aleen Bins","age":26,"location":"Barbaraborough"}},{"attributes":{"name":"Paige Nienow","age":27,"location":"Fort Harmon"}},{"attributes":{"name":"Fernando Bailey","age":78,"location":"Kaelynstad"}},{"attributes":{"name":"Cary Cassin","age":18,"location":"Lake Alessia"}},{"attributes":{"name":"Shawn Jacobs","age":24,"location":"Country Club"}},{"attributes":{"name":"Henry Koepp","age":73,"location":"Monicaton"}},{"attributes":{"name":"Doyle Kerluke","age":19,"location":"Konopelskiview"}},{"attributes":{"name":"Benton Walker","age":70,"location":"Roweville"}},{"attributes":{"name":"Dr. Amber Hintz","age":49,"location":"Trompberg"}},{"attributes":{"name":"Marcia Prohaska","age":75,"location":"Coon Rapids"}},{"attributes":{"name":"Miss Cortez Reichel","age":48,"location":"Citrus Heights"}},{"attributes":{"name":"Ms. Sonia Morar","age":61,"location":"Fort Hadleyshire"}},{"attributes":{"name":"Corene Wuckert","age":67,"location":"Raheemland"}},{"attributes":{"name":"Denise Strosin","age":75,"location":"Fort Maximusfield"}},{"attributes":{"name":"Lester Haley","age":79,"location":"New Damianborough"}},{"attributes":{"name":"Glen Goyette","age":70,"location":"Council Bluffs"}},{"attributes":{"name":"Floyd MacGyver I","age":35,"location":"Wittingworth"}},{"attributes":{"name":"Kristopher Grant","age":68,"location":"Crooksmouth"}},{"attributes":{"name":"Eleanore Sauer","age":78,"location":"O'Konhaven"}},{"attributes":{"name":"Kate Franecki","age":26,"location":"West Lavonne"}},{"attributes":{"name":"Cathy Rowe","age":77,"location":"Lake Pollyborough"}},{"attributes":{"name":"Diego Leuschke","age":19,"location":"Floworth"}},{"attributes":{"name":"Mrs. Derek Runolfsson","age":58,"location":"Port Clifton"}},{"attributes":{"name":"Mrs. Kasandra Raynor","age":18,"location":"Rancho Santa Margarita"}},{"attributes":{"name":"Melinda Cummerata","age":70,"location":"West Gino"}},{"attributes":{"name":"Sandra Bergnaum","age":38,"location":"Plainfield"}},{"attributes":{"name":"Bonnie Herzog","age":40,"location":"Ceasarhaven"}},{"attributes":{"name":"Carroll Corwin-Stamm","age":38,"location":"Lake Darianfield"}},{"attributes":{"name":"Tyrel Bruen","age":50,"location":"Lake Deion"}},{"attributes":{"name":"Perry Corkery DDS","age":69,"location":"West Haven"}},{"attributes":{"name":"Dr. Shawn Hauck","age":57,"location":"San Tan Valley"}},{"attributes":{"name":"Antonia Leffler","age":56,"location":"Lorenzoberg"}},{"attributes":{"name":"Liana Ortiz","age":53,"location":"Luettgenfort"}},{"attributes":{"name":"Thelma Littel","age":41,"location":"Johnsoncester"}},{"attributes":{"name":"Ronnie Blanda IV","age":43,"location":"North Cleve"}},{"attributes":{"name":"Delbert Weber","age":26,"location":"O'Connellcester"}},{"attributes":{"name":"Estella Wolff III","age":70,"location":"Iowa City"}},{"attributes":{"name":"Elvira Padberg","age":58,"location":"Fisherbury"}},{"attributes":{"name":"Fannie Fisher","age":76,"location":"Brycenshire"}},{"attributes":{"name":"Kathy Swaniawski","age":28,"location":"South Arnoldomouth"}},{"attributes":{"name":"Yvonne Ondricka","age":22,"location":"Houston"}},{"attributes":{"name":"Miss Crystal Hodkiewicz","age":35,"location":"North Metaland"}},{"attributes":{"name":"Orville Torphy","age":50,"location":"Toyside"}},{"attributes":{"name":"Marjorie Dietrich","age":32,"location":"Mullerworth"}},{"attributes":{"name":"Dr. Madisyn Will","age":28,"location":"Nikkiberg"}},{"attributes":{"name":"Hope Botsford","age":74,"location":"Placentia"}},{"attributes":{"name":"Lori Volkman","age":69,"location":"North Svenfield"}},{"attributes":{"name":"Jimmie Maggio","age":31,"location":"Nitzscheworth"}},{"attributes":{"name":"Minnie Raynor","age":29,"location":"Pollichburgh"}},{"attributes":{"name":"Kay Moore","age":21,"location":"New Bellside"}},{"attributes":{"name":"Janet Gislason","age":72,"location":"Homenickland"}},{"attributes":{"name":"Diane Cartwright","age":66,"location":"East Candelarioport"}},{"attributes":{"name":"Nicholas Nicolas","age":62,"location":"Donnacester"}},{"attributes":{"name":"Lana Lynch","age":64,"location":"Koelpinton"}},{"attributes":{"name":"Laurel Parisian-Okuneva II","age":27,"location":"East Felipa"}},{"attributes":{"name":"Shirley Rohan","age":42,"location":"Lake Yvette"}},{"attributes":{"name":"Angel Franey","age":39,"location":"Harveyshire"}},{"attributes":{"name":"Margaretta Rutherford","age":67,"location":"Laishaview"}},{"attributes":{"name":"Brooke Ebert","age":43,"location":"Goyetteberg"}},{"attributes":{"name":"Laury Stokes","age":45,"location":"New Sethfurt"}},{"attributes":{"name":"Gerald Lehner","age":41,"location":"Ratkeborough"}},{"attributes":{"name":"Wallace Pfannerstill DDS","age":56,"location":"Franklin"}},{"attributes":{"name":"Israel Considine","age":55,"location":"Tremblayberg"}},{"attributes":{"name":"Nathaniel Deckow","age":51,"location":"Aloha"}},{"attributes":{"name":"Jacquelyn Hickle","age":38,"location":"New Kamille"}},{"attributes":{"name":"Haven Hahn","age":70,"location":"Tulsa"}},{"attributes":{"name":"Elisa Kreiger","age":79,"location":"Hoseafort"}},{"attributes":{"name":"Mack Larkin","age":32,"location":"North Hazelcester"}},{"attributes":{"name":"Kristina Stark","age":63,"location":"South Jillian"}},{"attributes":{"name":"Juwan Sporer","age":68,"location":"Wavaberg"}},{"attributes":{"name":"Joyce Kerluke","age":27,"location":"Eleanoraville"}},{"attributes":{"name":"Lois Crooks","age":29,"location":"Candelarioland"}},{"attributes":{"name":"Eugene Batz","age":55,"location":"North Kobe"}},{"attributes":{"name":"Margaret Jacobi DDS","age":52,"location":"Lake Charles"}},{"attributes":{"name":"Shelly Weimann","age":20,"location":"East Diannafurt"}},{"attributes":{"name":"Wiley Reinger","age":66,"location":"Clovistown"}},{"attributes":{"name":"Rosanna Hammes","age":40,"location":"Fort Sigrid"}},{"attributes":{"name":"Augusta Brakus","age":68,"location":"Winifredview"}},{"attributes":{"name":"Keyshawn Cronin","age":48,"location":"Hammesboro"}},{"attributes":{"name":"Salvatore Schuppe MD","age":67,"location":"Nelliefield"}},{"attributes":{"name":"Rod Veum","age":75,"location":"Rosemead"}},{"attributes":{"name":"Zachary Murphy","age":26,"location":"Fort Cristobalmouth"}},{"attributes":{"name":"Ruthie Kuvalis","age":24,"location":"East Walton"}},{"attributes":{"name":"Marianne Crist","age":74,"location":"Wehnerboro"}},{"attributes":{"name":"Selmer Quigley","age":68,"location":"North Kylieview"}},{"attributes":{"name":"Sasha Farrell I","age":74,"location":"Crooksland"}},{"attributes":{"name":"Dr. Pam White-Spencer II","age":53,"location":"North Kristoferfurt"}},{"attributes":{"name":"Tyrique Donnelly DVM","age":43,"location":"New Micahburgh"}},{"attributes":{"name":"Earlene Barton II","age":23,"location":"Corinebury"}},{"attributes":{"name":"Sara Fay","age":65,"location":"Lake Katherine"}},{"attributes":{"name":"Colin Koepp","age":74,"location":"Fort Oleta"}},{"attributes":{"name":"Felix Flatley","age":73,"location":"South Orenfield"}},{"attributes":{"name":"Dr. Emanuel Fahey","age":37,"location":"Livonia"}},{"attributes":{"name":"Shemar Fahey","age":54,"location":"South Zenaborough"}},{"attributes":{"name":"Frank Parisian","age":74,"location":"New Carlotta"}},{"attributes":{"name":"Kristy Cronin","age":36,"location":"Hartford"}},{"attributes":{"name":"Eddie Hoeger","age":75,"location":"Mayaguez"}},{"attributes":{"name":"Rhiannon Bergstrom","age":64,"location":"Treutelview"}},{"attributes":{"name":"Kristin Veum","age":54,"location":"Tulare"}},{"attributes":{"name":"Mrs. Allison Reichel","age":51,"location":"East Jaylin"}},{"attributes":{"name":"Mr. Eugene Huel","age":46,"location":"East Arjunfield"}},{"attributes":{"name":"Mandy Ryan","age":50,"location":"Philadelphia"}},{"attributes":{"name":"Lucia Wisoky","age":63,"location":"Lakinfield"}},{"attributes":{"name":"Rose Block","age":51,"location":"Little Rock"}},{"attributes":{"name":"Yvonne Pfeffer","age":31,"location":"Albuquerque"}},{"attributes":{"name":"Alek Wiza","age":71,"location":"Bodeworth"}},{"attributes":{"name":"Ruby Effertz","age":65,"location":"Diamond Bar"}},{"attributes":{"name":"Estelle Bednar","age":74,"location":"Glendaboro"}},{"attributes":{"name":"Ms. Laron Farrell","age":67,"location":"South Vincenzaton"}},{"attributes":{"name":"Alfredo Quitzon","age":57,"location":"Fort Brendenport"}},{"attributes":{"name":"Ila Harvey","age":50,"location":"New Stephanie"}},{"attributes":{"name":"Ivy Gottlieb","age":25,"location":"Ankundingfield"}},{"attributes":{"name":"Karla Lakin","age":22,"location":"Minot"}},{"attributes":{"name":"Clifford Kilback","age":36,"location":"Haleyview"}},{"attributes":{"name":"Shirley Swift","age":68,"location":"Doral"}},{"attributes":{"name":"Ann Hilll II","age":40,"location":"West Devon"}},{"attributes":{"name":"Lynn Renner V","age":76,"location":"Zachariahborough"}},{"attributes":{"name":"Shawn Abshire","age":60,"location":"Fort Adolfchester"}},{"attributes":{"name":"Theodore Batz","age":35,"location":"Adonisside"}},{"attributes":{"name":"Margie Jones","age":52,"location":"Bellflower"}},{"attributes":{"name":"Herman Yundt","age":71,"location":"Jarvisbury"}},{"attributes":{"name":"Candace Quigley I","age":21,"location":"Muellerbury"}},{"attributes":{"name":"Minnie Smith II","age":61,"location":"Reading"}},{"attributes":{"name":"Gretchen Abbott","age":79,"location":"New Rickey"}},{"attributes":{"name":"Gerald Strosin","age":54,"location":"St. Charles"}},{"attributes":{"name":"Terrell Stark-Ebert","age":65,"location":"Redwood City"}},{"attributes":{"name":"Jaunita Collins Sr.","age":62,"location":"Hollywood"}},{"attributes":{"name":"Brendan Kohler","age":65,"location":"Kayliside"}},{"attributes":{"name":"Erick Stokes","age":57,"location":"Hawthorne"}},{"attributes":{"name":"Marco Lueilwitz-Hilpert","age":75,"location":"Lake Belle"}},{"attributes":{"name":"Wilber Satterfield","age":79,"location":"Torpland"}},{"attributes":{"name":"Johnny Jakubowski","age":48,"location":"Langoshland"}},{"attributes":{"name":"Jacquelyn Bergnaum","age":48,"location":"Artport"}},{"attributes":{"name":"Renee Weber","age":70,"location":"Stephanystad"}},{"attributes":{"name":"Victoria Glover","age":39,"location":"Monahanfurt"}},{"attributes":{"name":"Mr. Lexie Emard","age":46,"location":"West Lafayette"}},{"attributes":{"name":"Kelli Herman","age":55,"location":"Queenieview"}},{"attributes":{"name":"Darrell Bosco","age":43,"location":"Marvinton"}},{"attributes":{"name":"Dominic Conn IV","age":80,"location":"North Georgiannabury"}},{"attributes":{"name":"Sterling Mohr","age":59,"location":"Thaliaside"}},{"attributes":{"name":"Jeremiah Thompson","age":29,"location":"New Gwen"}},{"attributes":{"name":"Caroline Ward","age":79,"location":"Long Beach"}},{"attributes":{"name":"Cierra Schowalter","age":25,"location":"Abernathyton"}},{"attributes":{"name":"Pedro Kihn","age":39,"location":"Krystinabury"}},{"attributes":{"name":"Mr. Kelly Osinski","age":20,"location":"North Amira"}},{"attributes":{"name":"Marco Waters","age":32,"location":"Blaisebury"}},{"attributes":{"name":"Verna Zboncak","age":39,"location":"Lake Jamilborough"}},{"attributes":{"name":"Mr. Salvatore Howe","age":56,"location":"Tristonmouth"}},{"attributes":{"name":"Unique Tremblay","age":26,"location":"Considineberg"}},{"attributes":{"name":"Corrine Ullrich-Gutkowski","age":34,"location":"North Thelmafield"}},{"attributes":{"name":"Earl Tremblay","age":27,"location":"Duaneville"}},{"attributes":{"name":"Wilhelm Smith","age":58,"location":"Bell Gardens"}},{"attributes":{"name":"Nora Greenfelder","age":42,"location":"Taylorsville"}},{"attributes":{"name":"Pearl Nader","age":31,"location":"Blacksburg"}},{"attributes":{"name":"Raymond McClure","age":53,"location":"Port Margarettaport"}},{"attributes":{"name":"Jamie Kozey IV","age":21,"location":"Brendaville"}},{"attributes":{"name":"Damian Ledner","age":25,"location":"Cristfurt"}},{"attributes":{"name":"Pam Monahan","age":42,"location":"Parisfurt"}},{"attributes":{"name":"Olive Kassulke","age":36,"location":"Fort Leila"}},{"attributes":{"name":"Bryce Marquardt","age":49,"location":"Irvingstead"}},{"attributes":{"name":"Rudolph Borer","age":46,"location":"Maiashire"}},{"attributes":{"name":"Dr. Zoila Brown","age":52,"location":"Monroe"}},{"attributes":{"name":"Ella McCullough","age":38,"location":"Hintzfort"}},{"attributes":{"name":"Lindsay Jenkins","age":56,"location":"West Dinafort"}},{"attributes":{"name":"Nicholas Koch II","age":23,"location":"North Demondhaven"}},{"attributes":{"name":"Jaden Schoen","age":25,"location":"Briafield"}},{"attributes":{"name":"Myles Conn","age":79,"location":"Grand Junction"}},{"attributes":{"name":"Estell Nader","age":75,"location":"Elmoreborough"}},{"attributes":{"name":"Quinten Schamberger","age":25,"location":"North Kathryn"}},{"attributes":{"name":"Ryley Stracke","age":70,"location":"Asheville"}},{"attributes":{"name":"Mr. Edmond Cassin","age":59,"location":"Port Kristinton"}},{"attributes":{"name":"Mylene Dickens","age":77,"location":"Reingerside"}},{"attributes":{"name":"Colin Ferry","age":22,"location":"Laronside"}},{"attributes":{"name":"Lenny Conroy","age":62,"location":"South Austenburgh"}},{"attributes":{"name":"Wilfred Trantow","age":74,"location":"Vernfort"}},{"attributes":{"name":"Kathleen Haag V","age":63,"location":"South Katrina"}},{"attributes":{"name":"Mr. Wilfred Yost","age":39,"location":"Fabiantown"}},{"attributes":{"name":"Shanna Hodkiewicz","age":79,"location":"North Dariana"}},{"attributes":{"name":"Ida Strosin II","age":61,"location":"New Brenda"}},{"attributes":{"name":"John Pfeffer","age":45,"location":"New Heber"}},{"attributes":{"name":"Jesse Gusikowski","age":46,"location":"Garland"}},{"attributes":{"name":"Mrs. Maddison Fahey","age":52,"location":"Walshside"}},{"attributes":{"name":"Haven Champlin","age":33,"location":"South Ernestinashire"}},{"attributes":{"name":"Alec Ernser","age":80,"location":"Stehrside"}},{"attributes":{"name":"Dr. Vernon Haley","age":27,"location":"Elinorbury"}},{"attributes":{"name":"Lionel Paucek","age":18,"location":"South Dudley"}},{"attributes":{"name":"Asa Kilback-Batz","age":59,"location":"Crooksstead"}},{"attributes":{"name":"Gabrielle Cruickshank I","age":38,"location":"Maverickland"}},{"attributes":{"name":"Karina Waelchi","age":58,"location":"Nolanboro"}},{"attributes":{"name":"Garry Franecki","age":50,"location":"Port Herman"}},{"attributes":{"name":"Margaret Daugherty","age":63,"location":"Fort Zelmaview"}},{"attributes":{"name":"Marc Breitenberg","age":27,"location":"Willowport"}},{"attributes":{"name":"Dr. Marion Herman II","age":42,"location":"East Emilie"}},{"attributes":{"name":"Ms. Johanna Grant PhD","age":62,"location":"Lake Dallin"}},{"attributes":{"name":"Miss Perry Walter","age":55,"location":"Yostborough"}},{"attributes":{"name":"Lila Jenkins","age":75,"location":"Blandaville"}},{"attributes":{"name":"Karina Wuckert","age":37,"location":"Alexandraside"}},{"attributes":{"name":"Johanna Erdman","age":70,"location":"West Cydneystad"}},{"attributes":{"name":"Tianna Windler","age":61,"location":"New Drew"}},{"attributes":{"name":"Marcella Metz","age":59,"location":"Violetville"}},{"attributes":{"name":"Miss Blanca Miller","age":47,"location":"East Kelvinberg"}},{"attributes":{"name":"Mrs. Preston Predovic","age":47,"location":"Tonawanda"}},{"attributes":{"name":"Verdie Armstrong","age":70,"location":"Amparoport"}},{"attributes":{"name":"Miss Jackie McClure","age":78,"location":"Port Loisfield"}},{"attributes":{"name":"Paul O'Connell II","age":77,"location":"Sarasota"}},{"attributes":{"name":"Joanne Abshire MD","age":42,"location":"Tigard"}},{"attributes":{"name":"Tyra Rodriguez","age":67,"location":"Luettgenville"}},{"attributes":{"name":"Christina D'Amore","age":44,"location":"Ramiroton"}},{"attributes":{"name":"Conrad Dach","age":20,"location":"Aloha"}},{"attributes":{"name":"Amaya McLaughlin","age":51,"location":"Smithport"}},{"attributes":{"name":"Jan Dickens","age":66,"location":"Davismouth"}},{"attributes":{"name":"Dawn Leffler","age":25,"location":"Eunicefurt"}},{"attributes":{"name":"Vickie Konopelski","age":30,"location":"Lake Aleenstead"}},{"attributes":{"name":"Dr. Gertrude Rutherford","age":79,"location":"Antoniastad"}},{"attributes":{"name":"Joana Collier","age":41,"location":"Port Efrenchester"}},{"attributes":{"name":"Stephania Ferry","age":49,"location":"West Donnellfort"}},{"attributes":{"name":"Faye Mayer","age":53,"location":"Donnellyburgh"}},{"attributes":{"name":"Susan Cole","age":43,"location":"Port Lorine"}},{"attributes":{"name":"Loren Nienow","age":48,"location":"Boynton Beach"}},{"attributes":{"name":"Colleen Hahn-Cremin","age":63,"location":"Toledo"}},{"attributes":{"name":"Kory Streich","age":67,"location":"Burien"}},{"attributes":{"name":"Evan King","age":54,"location":"Kuhicshire"}},{"attributes":{"name":"Roel Rau","age":65,"location":"Sipesborough"}},{"attributes":{"name":"Isaias Jacobs","age":30,"location":"Port Lulu"}},{"attributes":{"name":"Rupert Rowe","age":32,"location":"Port Manuel"}},{"attributes":{"name":"Terrance Heathcote","age":74,"location":"New Mandystead"}},{"attributes":{"name":"Marlene Corkery","age":36,"location":"North Cristinaville"}},{"attributes":{"name":"Donnell Ullrich","age":45,"location":"Honolulu"}},{"attributes":{"name":"Mr. Alejandro Morar","age":76,"location":"Gardena"}},{"attributes":{"name":"Josefina O'Connell","age":25,"location":"Lake Ashlee"}},{"attributes":{"name":"Paul Krajcik MD","age":49,"location":"Independence"}},{"attributes":{"name":"Dixie Fay","age":57,"location":"Vonville"}},{"attributes":{"name":"Melody Fadel","age":72,"location":"Breanneton"}},{"attributes":{"name":"Laverne Stehr","age":30,"location":"Feestworth"}},{"attributes":{"name":"Rahul Green","age":54,"location":"Rapid City"}},{"attributes":{"name":"Wendell Cummerata","age":35,"location":"Waltham"}},{"attributes":{"name":"Harrison Boyer","age":22,"location":"Hartmannfurt"}},{"attributes":{"name":"Krystal Stracke","age":46,"location":"North Jarrodmouth"}},{"attributes":{"name":"Liza Cassin IV","age":38,"location":"South Cliftonfield"}},{"attributes":{"name":"Mrs. Rigoberto O'Reilly Sr.","age":38,"location":"East Edison"}},{"attributes":{"name":"Carmel Bogan","age":38,"location":"Orland Park"}},{"attributes":{"name":"Akeem Rosenbaum","age":70,"location":"West Keelyfort"}},{"attributes":{"name":"Isadore Kerluke","age":62,"location":"North Timmy"}},{"attributes":{"name":"Cameron Armstrong","age":78,"location":"Cristmouth"}},{"attributes":{"name":"Sherman Carroll","age":44,"location":"Greenholtburgh"}},{"attributes":{"name":"Rose Farrell","age":50,"location":"North Eli"}},{"attributes":{"name":"Tomasa Adams II","age":51,"location":"Port Lizethstead"}},{"attributes":{"name":"Hayley Toy Jr.","age":60,"location":"Damianburgh"}},{"attributes":{"name":"Wendy Cummerata","age":64,"location":"North Gennaro"}},{"attributes":{"name":"Alan Barton","age":75,"location":"Port Enolacester"}},{"attributes":{"name":"Michele Swaniawski","age":21,"location":"Camarillo"}},{"attributes":{"name":"Ms. Emilie Lang","age":69,"location":"West Billy"}},{"attributes":{"name":"Larry Jacobs","age":64,"location":"Salina"}},{"attributes":{"name":"Nathan Hintz","age":40,"location":"New Oscarfield"}},{"attributes":{"name":"Megan Muller","age":52,"location":"North Kale"}},{"attributes":{"name":"Levi MacGyver","age":43,"location":"Princeton"}},{"attributes":{"name":"Aurelia Jacobs","age":58,"location":"Hoover"}},{"attributes":{"name":"David Bartell","age":78,"location":"East Theaborough"}},{"attributes":{"name":"Raymond Kilback DDS","age":65,"location":"Simonisbury"}},{"attributes":{"name":"Carmelo Keebler-Beatty III","age":30,"location":"Cassinworth"}},{"attributes":{"name":"Madelyn O'Conner-Ernser","age":45,"location":"Rowland Heights"}},{"attributes":{"name":"Mrs. Orion Considine","age":75,"location":"South Crystal"}},{"attributes":{"name":"Dr. Yvonne Zemlak","age":35,"location":"Pasco"}},{"attributes":{"name":"Dillon Schimmel","age":49,"location":"Howellmouth"}},{"attributes":{"name":"Ramiro Rowe","age":27,"location":"Kiehnboro"}},{"attributes":{"name":"Lois Roberts","age":58,"location":"South Elvie"}},{"attributes":{"name":"Andy Russel","age":21,"location":"Port Lucasbury"}},{"attributes":{"name":"Iris Lesch","age":27,"location":"North Kenyattaburgh"}},{"attributes":{"name":"Clovis Kreiger","age":58,"location":"Tustin"}},{"attributes":{"name":"Valentina Heaney","age":38,"location":"Murrayton"}},{"attributes":{"name":"Dr. David Powlowski","age":74,"location":"Fort Zachariahton"}},{"attributes":{"name":"Gonzalo Cruickshank","age":80,"location":"Koelpinville"}},{"attributes":{"name":"Dana Jacobs","age":18,"location":"Robertboro"}},{"attributes":{"name":"Nicole Wisozk-Kuhlman","age":72,"location":"Newport Beach"}},{"attributes":{"name":"Ellis Durgan","age":67,"location":"Port Bettie"}},{"attributes":{"name":"Selmer Kertzmann","age":64,"location":"Nashua"}},{"attributes":{"name":"Kaitlin Windler","age":59,"location":"Carlsbad"}},{"attributes":{"name":"Mr. Leon Casper","age":26,"location":"Ozellatown"}},{"attributes":{"name":"Bryant Stanton","age":68,"location":"Cormierfurt"}},{"attributes":{"name":"Jane Bartell","age":51,"location":"East Janessamouth"}},{"attributes":{"name":"Angie Hermann","age":51,"location":"Champlinfield"}},{"attributes":{"name":"Earnestine Towne","age":69,"location":"Kobecester"}},{"attributes":{"name":"Kristian Olson","age":42,"location":"South Bennett"}},{"attributes":{"name":"Marian Satterfield","age":63,"location":"North Trey"}},{"attributes":{"name":"Max D'Amore","age":41,"location":"Javontefield"}},{"attributes":{"name":"Tabitha Conroy","age":20,"location":"North Carolehaven"}},{"attributes":{"name":"Brandon Hyatt","age":29,"location":"El Centro"}},{"attributes":{"name":"Fiona Lehner","age":27,"location":"Port Jordon"}},{"attributes":{"name":"Fred Huels","age":24,"location":"Mohrtown"}},{"attributes":{"name":"Josefina Bruen MD","age":50,"location":"New Lauriane"}},{"attributes":{"name":"Robb Donnelly","age":21,"location":"Port Watsonport"}},{"attributes":{"name":"Amir Gutmann","age":23,"location":"Elverachester"}},{"attributes":{"name":"Sonya Swift","age":36,"location":"South Shanelle"}},{"attributes":{"name":"Aaron Emmerich","age":26,"location":"South Cynthiashire"}},{"attributes":{"name":"Gustavo Schroeder-Langosh","age":48,"location":"Kenyonchester"}},{"attributes":{"name":"Christy Volkman DVM","age":75,"location":"New Wilhelm"}},{"attributes":{"name":"Ms. Vicky Reynolds","age":79,"location":"Lake Taylorfort"}},{"attributes":{"name":"Cecelia Nikolaus","age":40,"location":"Devonside"}},{"attributes":{"name":"Teresa Hudson","age":75,"location":"Whittier"}},{"attributes":{"name":"Elmira Krajcik","age":80,"location":"Hayward"}},{"attributes":{"name":"Carl Mayert","age":80,"location":"Port Guillermo"}},{"attributes":{"name":"Vanessa Metz","age":24,"location":"Vandervortside"}},{"attributes":{"name":"Crystel Ebert PhD","age":22,"location":"North Lenoreburgh"}},{"attributes":{"name":"Mike Reichel","age":56,"location":"Bettyside"}},{"attributes":{"name":"Luz Jakubowski","age":27,"location":"South Alvinaborough"}},{"attributes":{"name":"Keaton Watsica","age":57,"location":"Cypress"}},{"attributes":{"name":"Mona Hodkiewicz","age":24,"location":"Lorafort"}},{"attributes":{"name":"Beth Hirthe II","age":60,"location":"Jaidencester"}},{"attributes":{"name":"Mrs. Bill Sanford","age":67,"location":"Chelsieberg"}},{"attributes":{"name":"Tabitha Gutmann","age":50,"location":"St. Cloud"}},{"attributes":{"name":"Stephanie Schowalter","age":43,"location":"Fort Paristown"}},{"attributes":{"name":"Mr. Shea Wolff","age":80,"location":"Goodyear"}},{"attributes":{"name":"Kiel Schaden","age":31,"location":"Milpitas"}},{"attributes":{"name":"Mrs. Gavin Fay II","age":63,"location":"Brownbury"}},{"attributes":{"name":"Warren Wehner","age":46,"location":"Rohancester"}},{"attributes":{"name":"Mireille Stiedemann","age":64,"location":"Robelfield"}},{"attributes":{"name":"Reid Powlowski","age":39,"location":"West Myronfield"}},{"attributes":{"name":"Rachael Casper-Volkman","age":78,"location":"West Christop"}},{"attributes":{"name":"Simon Hilll","age":24,"location":"West Cade"}},{"attributes":{"name":"Nia Schinner","age":70,"location":"Fort Bridgettetown"}},{"attributes":{"name":"Clarissa McClure","age":72,"location":"New Deonte"}},{"attributes":{"name":"Lauren Kovacek","age":69,"location":"South Valley"}},{"attributes":{"name":"Aiden Schumm I","age":43,"location":"Juliusview"}},{"attributes":{"name":"Jeremiah Farrell","age":44,"location":"North Brockcester"}},{"attributes":{"name":"Emmett Nikolaus","age":33,"location":"Fort Oleview"}},{"attributes":{"name":"Bonita Fahey","age":47,"location":"Cleveland"}},{"attributes":{"name":"Ms. Melody Thiel","age":68,"location":"North Lennystead"}},{"attributes":{"name":"Katrina Raynor","age":80,"location":"O'Connerboro"}},{"attributes":{"name":"Beatrice Berge MD","age":51,"location":"North Miami Beach"}},{"attributes":{"name":"Antonetta Flatley","age":33,"location":"East Lemuelworth"}},{"attributes":{"name":"Ms. Billie Dare","age":46,"location":"Trentville"}},{"attributes":{"name":"Thomas Bernier","age":70,"location":"Huelshaven"}},{"attributes":{"name":"Miss Nellie Koch","age":43,"location":"Myaview"}},{"attributes":{"name":"Martina Pollich","age":67,"location":"Port Joaquin"}},{"attributes":{"name":"Armando Heller","age":53,"location":"Bryan"}},{"attributes":{"name":"Donald Muller","age":37,"location":"West Andrew"}},{"attributes":{"name":"Mazie Wyman","age":36,"location":"San Antonio"}},{"attributes":{"name":"Garry Lueilwitz","age":33,"location":"Orem"}},{"attributes":{"name":"Coby Goodwin","age":50,"location":"State College"}},{"attributes":{"name":"Antonio Bartell","age":31,"location":"Germanshire"}},{"attributes":{"name":"Mr. Jeremiah Dickens","age":51,"location":"South Laylaboro"}},{"attributes":{"name":"Anjali Weimann","age":40,"location":"South Imeldaport"}},{"attributes":{"name":"Sabina Romaguera","age":34,"location":"West Rustyboro"}},{"attributes":{"name":"Mr. Rickie Hermann","age":18,"location":"North Vanessahaven"}},{"attributes":{"name":"Jackie Schuppe","age":41,"location":"Eastvale"}},{"attributes":{"name":"Ms. Tanya Lindgren","age":19,"location":"South Christianacester"}},{"attributes":{"name":"Mrs. Kathy Torp","age":19,"location":"Koelpinville"}},{"attributes":{"name":"Craig Krajcik","age":57,"location":"Irvingmouth"}},{"attributes":{"name":"Bernadette Effertz","age":68,"location":"North Ila"}},{"attributes":{"name":"Samantha Berge","age":57,"location":"Axelfort"}},{"attributes":{"name":"Darrick Hackett","age":41,"location":"Racine"}},{"attributes":{"name":"Elaine Bosco","age":41,"location":"South Mireilleland"}},{"attributes":{"name":"Lue Stiedemann","age":56,"location":"East Jamelshire"}},{"attributes":{"name":"Mya Heathcote","age":58,"location":"Newton"}},{"attributes":{"name":"Jodi Hegmann","age":39,"location":"Connorville"}},{"attributes":{"name":"Mr. Olen Moore","age":62,"location":"Port Myraside"}},{"attributes":{"name":"Pamela Davis","age":38,"location":"Hermistonfield"}},{"attributes":{"name":"Delbert Padberg","age":30,"location":"Schadenstad"}},{"attributes":{"name":"Glenda Hilll","age":38,"location":"Mckenziefurt"}},{"attributes":{"name":"James Grimes","age":53,"location":"Fort Brennanbury"}},{"attributes":{"name":"Dr. Tracy Ratke-Kessler","age":42,"location":"Naperville"}},{"attributes":{"name":"Luisa Romaguera","age":58,"location":"Mission Viejo"}},{"attributes":{"name":"Willie Hilpert","age":80,"location":"Lake Kaiahaven"}},{"attributes":{"name":"Crystal Reynolds","age":36,"location":"San Jacinto"}},{"attributes":{"name":"Darnell Boyle","age":71,"location":"Wunschside"}},{"attributes":{"name":"Jeffery Pfannerstill","age":73,"location":"Fort Joanafield"}},{"attributes":{"name":"Clayton D'Amore-Baumbach","age":43,"location":"Port Chyna"}},{"attributes":{"name":"Ann McClure","age":38,"location":"Lake Lexi"}},{"attributes":{"name":"Mckayla Medhurst","age":53,"location":"Carmellaside"}},{"attributes":{"name":"Albert Bruen","age":29,"location":"East Llewellynfield"}},{"attributes":{"name":"Lenna Gottlieb","age":26,"location":"Hudsonport"}},{"attributes":{"name":"Becky Kuvalis","age":19,"location":"Elizabethburgh"}},{"attributes":{"name":"Maymie Wisozk","age":27,"location":"Brantport"}},{"attributes":{"name":"Myrna Simonis V","age":76,"location":"Port Devonte"}},{"attributes":{"name":"Vicky Schoen Jr.","age":54,"location":"Khalilland"}},{"attributes":{"name":"Agnes Emard","age":45,"location":"Trystanfort"}},{"attributes":{"name":"Gonzalo Flatley","age":28,"location":"Lake Myrtis"}},{"attributes":{"name":"Nathanael Gutkowski","age":19,"location":"Hattiefort"}},{"attributes":{"name":"Genevieve Windler DDS","age":51,"location":"Stillwater"}},{"attributes":{"name":"Mrs. Rachael Kuhn","age":75,"location":"Juliofield"}},{"attributes":{"name":"Velma Gorczany","age":23,"location":"Port Abeworth"}},{"attributes":{"name":"Connor Krajcik","age":63,"location":"East Jazmynport"}},{"attributes":{"name":"Mae Koch","age":19,"location":"Port Rebecaport"}},{"attributes":{"name":"Michele Dibbert","age":63,"location":"Delphashire"}},{"attributes":{"name":"Tod Schiller Sr.","age":80,"location":"Fort Scotty"}},{"attributes":{"name":"Earl Lesch","age":45,"location":"Zorachester"}},{"attributes":{"name":"Michael Schuppe","age":64,"location":"Georgiannahaven"}},{"attributes":{"name":"Elyssa Huel","age":32,"location":"Port Nilschester"}},{"attributes":{"name":"Alfredo Bechtelar MD","age":18,"location":"East Deonte"}},{"attributes":{"name":"Janis Quigley V","age":29,"location":"West Royceborough"}},{"attributes":{"name":"Emilio Paucek","age":37,"location":"Fort Luisville"}},{"attributes":{"name":"Ms. Holly Turner","age":34,"location":"East Flossieside"}},{"attributes":{"name":"Jayda Hudson MD","age":59,"location":"Reginaldmouth"}},{"attributes":{"name":"Rudy Morar","age":37,"location":"Cordieview"}},{"attributes":{"name":"Keaton Hudson","age":27,"location":"East Mustafaberg"}},{"attributes":{"name":"Russell Smith","age":18,"location":"Fort Elouise"}},{"attributes":{"name":"Ronald Feeney MD","age":19,"location":"East Elza"}},{"attributes":{"name":"Phyllis Reilly","age":30,"location":"Duluth"}},{"attributes":{"name":"Mildred Schmidt","age":32,"location":"Kassulkechester"}},{"attributes":{"name":"Susie Beier","age":59,"location":"Domenickboro"}},{"attributes":{"name":"Molly Skiles","age":52,"location":"Langchester"}},{"attributes":{"name":"Ruby Thompson DVM","age":42,"location":"Domenicboro"}},{"attributes":{"name":"Jarrell Crist","age":32,"location":"Luthershire"}},{"attributes":{"name":"Cali Altenwerth","age":20,"location":"Waterbury"}},{"attributes":{"name":"Lessie Blanda","age":22,"location":"Kuhicchester"}},{"attributes":{"name":"Holly Osinski","age":62,"location":"Bufordchester"}},{"attributes":{"name":"Domingo Swift","age":68,"location":"Lake Carlee"}},{"attributes":{"name":"Elena Wilderman-Boehm","age":24,"location":"South Doyleshire"}},{"attributes":{"name":"Pauline Mayer","age":73,"location":"Jailynmouth"}},{"attributes":{"name":"Josephine O'Kon","age":34,"location":"East Dorrisfurt"}},{"attributes":{"name":"Kaia Runte","age":69,"location":"Arnoldocester"}},{"attributes":{"name":"Freida Kerluke-Pfeffer V","age":70,"location":"Santa Maria"}},{"attributes":{"name":"Jana Lind","age":20,"location":"Fort Fidel"}},{"attributes":{"name":"Juana Roberts","age":31,"location":"North Lauderdale"}},{"attributes":{"name":"Ophelia Lang","age":57,"location":"East Arno"}},{"attributes":{"name":"Ilene Brown","age":46,"location":"East Gunner"}},{"attributes":{"name":"Justin Purdy","age":80,"location":"Torphyview"}},{"attributes":{"name":"Mr. Edwin Leuschke","age":74,"location":"Gastonia"}},{"attributes":{"name":"Electa Pagac","age":79,"location":"Harrisstad"}},{"attributes":{"name":"Erick Boyle","age":51,"location":"Fort Macy"}},{"attributes":{"name":"Johnnie Kuhlman-Kerluke","age":54,"location":"Seanbury"}},{"attributes":{"name":"Lauren Wolf","age":41,"location":"Jillianborough"}},{"attributes":{"name":"Judith Cummings","age":73,"location":"Felipaland"}},{"attributes":{"name":"Cordie Hyatt IV","age":73,"location":"Doraside"}},{"attributes":{"name":"Destinee Kozey DVM","age":76,"location":"South Opalfort"}},{"attributes":{"name":"Orville Kovacek","age":18,"location":"Gertrudemouth"}},{"attributes":{"name":"Beryl Ledner","age":27,"location":"Port Pete"}},{"attributes":{"name":"Dariana Lang","age":68,"location":"Windlercester"}},{"attributes":{"name":"Verner Stanton","age":25,"location":"West Travon"}},{"attributes":{"name":"Maurice Barrows","age":58,"location":"Hamilton"}},{"attributes":{"name":"Franklin Reynolds","age":23,"location":"Rancho Palos Verdes"}},{"attributes":{"name":"Claudie Koss IV","age":51,"location":"Fort Lacyburgh"}},{"attributes":{"name":"Jay Ritchie","age":62,"location":"North Angie"}},{"attributes":{"name":"Jodie Schuppe","age":47,"location":"Manleycester"}},{"attributes":{"name":"Rolando Lang","age":55,"location":"Emilville"}},{"attributes":{"name":"Wilbert Beier","age":28,"location":"West Preston"}},{"attributes":{"name":"Leon Johns","age":61,"location":"North Lauderdale"}},{"attributes":{"name":"Carlton Schowalter","age":70,"location":"Lake Katrine"}},{"attributes":{"name":"Terrill Farrell Sr.","age":48,"location":"North Jessica"}},{"attributes":{"name":"Kasey Windler","age":54,"location":"Lake Arvelside"}},{"attributes":{"name":"Fannie Ankunding","age":74,"location":"Lake Krystalfield"}},{"attributes":{"name":"Viviane Langosh","age":75,"location":"Pfeffercester"}},{"attributes":{"name":"Clyde Little","age":59,"location":"Camarillo"}},{"attributes":{"name":"Katie Schimmel","age":70,"location":"Port Adamview"}},{"attributes":{"name":"Jennifer Moen-Boyle","age":22,"location":"Andresstad"}},{"attributes":{"name":"Isaac Prohaska","age":29,"location":"Port Maurine"}},{"attributes":{"name":"Eldora Denesik IV","age":73,"location":"Memphis"}},{"attributes":{"name":"Dan O'Connell III","age":71,"location":"Appleton"}},{"attributes":{"name":"Veronica Schulist","age":72,"location":"Toms River"}},{"attributes":{"name":"Harold Sanford","age":46,"location":"Brakusland"}},{"attributes":{"name":"Raymond Cruickshank","age":57,"location":"Lake Bradenboro"}},{"attributes":{"name":"Fausto Kertzmann","age":68,"location":"Fort Warrenton"}},{"attributes":{"name":"Rita Robel","age":49,"location":"East Bertton"}},{"attributes":{"name":"Ms. Sharon Hauck","age":68,"location":"South Paul"}},{"attributes":{"name":"Emmett McDermott","age":66,"location":"Strackeboro"}},{"attributes":{"name":"Nichole Zboncak","age":73,"location":"Stephonfield"}},{"attributes":{"name":"Margaretta Kihn","age":67,"location":"Lake Jess"}},{"attributes":{"name":"Esmeralda Goyette-McClure","age":53,"location":"Ferrytown"}},{"attributes":{"name":"Julio Koepp","age":58,"location":"Corvallis"}},{"attributes":{"name":"Salvatore Ortiz","age":40,"location":"Clevestead"}},{"attributes":{"name":"Ms. Flora Cartwright","age":53,"location":"Eugenetown"}},{"attributes":{"name":"Alice Quigley","age":25,"location":"Cloydchester"}},{"attributes":{"name":"Tommy Franecki","age":51,"location":"Nevaview"}},{"attributes":{"name":"Brennan Schroeder","age":62,"location":"Schinnerside"}},{"attributes":{"name":"Micheal Conn","age":47,"location":"West Dejon"}},{"attributes":{"name":"Robin Hahn","age":61,"location":"East Demario"}},{"attributes":{"name":"Janessa Renner","age":40,"location":"Wardfort"}},{"attributes":{"name":"Viola Davis","age":43,"location":"Malden"}},{"attributes":{"name":"Karl Borer-Kuhn II","age":20,"location":"Lake Kristofer"}},{"attributes":{"name":"Ms. Kendra McCullough V","age":43,"location":"Novato"}},{"attributes":{"name":"Rhonda Torp","age":58,"location":"Kendracester"}},{"attributes":{"name":"Chauncey Legros","age":27,"location":"West Nelson"}},{"attributes":{"name":"Dr. Wesley Emard","age":26,"location":"East Kayli"}},{"attributes":{"name":"Willa Wiegand","age":50,"location":"Damonshire"}},{"attributes":{"name":"Miss Eloise Gislason","age":41,"location":"Fort Randall"}},{"attributes":{"name":"Darren Sipes","age":43,"location":"Port Milanfort"}},{"attributes":{"name":"Ben Barton","age":46,"location":"Rashawnhaven"}},{"attributes":{"name":"Dino Reilly","age":31,"location":"Fort Josiannefurt"}},{"attributes":{"name":"Otho Wyman","age":28,"location":"Mosciskiside"}},{"attributes":{"name":"Mrs. Cassandra Reilly","age":57,"location":"South Darrenfield"}},{"attributes":{"name":"Hannah Blanda","age":43,"location":"Clemmiebury"}},{"attributes":{"name":"Carrie Streich","age":73,"location":"Glennaland"}},{"attributes":{"name":"Wanda Monahan","age":66,"location":"Oak Park"}},{"attributes":{"name":"Xavier Hilll","age":69,"location":"Lake Damaris"}},{"attributes":{"name":"Erik Boyer","age":35,"location":"New Clotilde"}},{"attributes":{"name":"Alanna Kuhic","age":80,"location":"West Helmer"}},{"attributes":{"name":"Nellie Zieme","age":57,"location":"Damienfield"}},{"attributes":{"name":"Raul MacGyver","age":43,"location":"South Alexander"}},{"attributes":{"name":"Mrs. Kayla Von","age":61,"location":"North Aaliyah"}},{"attributes":{"name":"Roy Renner","age":56,"location":"Lindside"}},{"attributes":{"name":"Tremaine Farrell III","age":38,"location":"Camarillo"}},{"attributes":{"name":"Abbigail Ledner DDS","age":61,"location":"North Adela"}},{"attributes":{"name":"Nikolas Schiller","age":63,"location":"East Lauretta"}},{"attributes":{"name":"Sonya Langosh","age":69,"location":"South Quinnfield"}},{"attributes":{"name":"Ms. Hilda Harber","age":74,"location":"Jenafield"}},{"attributes":{"name":"Sonya Kirlin","age":50,"location":"Joanyworth"}},{"attributes":{"name":"Abraham Morissette","age":60,"location":"Melynafurt"}},{"attributes":{"name":"Marguerite Rohan","age":64,"location":"South Delia"}},{"attributes":{"name":"Dena Windler","age":28,"location":"West Brendan"}},{"attributes":{"name":"Malachi Parker-Lakin","age":65,"location":"Detroit"}},{"attributes":{"name":"Janet Reichert","age":26,"location":"West Ethelland"}},{"attributes":{"name":"Rosendo Paucek","age":39,"location":"South Chadrickchester"}},{"attributes":{"name":"Jacinto Mayer","age":70,"location":"Carlsbad"}},{"attributes":{"name":"Dean Kozey V","age":76,"location":"Lake Adeliaview"}},{"attributes":{"name":"Eula Casper","age":74,"location":"Lake Clemmie"}},{"attributes":{"name":"Erin Collier","age":44,"location":"Port Glendahaven"}},{"attributes":{"name":"Morgan Murazik","age":59,"location":"Tempe"}},{"attributes":{"name":"Iris McCullough","age":70,"location":"North Wilfridberg"}},{"attributes":{"name":"Ivan Smith-Hessel","age":78,"location":"Fort Sammiecester"}},{"attributes":{"name":"Joy Ondricka III","age":78,"location":"Grimesbury"}},{"attributes":{"name":"Josue Bernier","age":40,"location":"Lehnerport"}},{"attributes":{"name":"Alyce Hayes","age":77,"location":"Port Adrienneview"}},{"attributes":{"name":"Khalid Schinner","age":56,"location":"Kirkland"}},{"attributes":{"name":"Johanna Dickens","age":60,"location":"Meridian"}},{"attributes":{"name":"Elsa Mante","age":44,"location":"Swaniawskiworth"}},{"attributes":{"name":"Tammy Ratke","age":41,"location":"North Omari"}},{"attributes":{"name":"Marilyn Mann","age":59,"location":"Fort Makenzieburgh"}},{"attributes":{"name":"Dolores Tromp","age":72,"location":"Fort Quincyview"}},{"attributes":{"name":"Frances Aufderhar","age":19,"location":"Mauricefurt"}},{"attributes":{"name":"Alessia Murphy","age":18,"location":"Fort Francisco"}},{"attributes":{"name":"Oswaldo Pollich","age":76,"location":"East Lindseyside"}},{"attributes":{"name":"Mr. William Heller","age":80,"location":"Armanifield"}},{"attributes":{"name":"Percy Littel","age":57,"location":"Cletacester"}},{"attributes":{"name":"Hope Boehm","age":70,"location":"Port Maziefield"}},{"attributes":{"name":"Kyle Leuschke","age":55,"location":"Brownfurt"}},{"attributes":{"name":"Fabiola Bogisich Jr.","age":38,"location":"West Agustinashire"}},{"attributes":{"name":"Dr. Melanie Little","age":25,"location":"Hettingershire"}},{"attributes":{"name":"Bobbie Ziemann","age":29,"location":"Dickinsonbury"}},{"attributes":{"name":"Dr. Laverne Friesen","age":54,"location":"Dunwoody"}},{"attributes":{"name":"Paige Ruecker","age":72,"location":"Lelandchester"}},{"attributes":{"name":"Stuart Glover","age":48,"location":"Courtneystead"}},{"attributes":{"name":"Ross Mraz","age":70,"location":"Daughertychester"}},{"attributes":{"name":"Rhonda Johns","age":70,"location":"West Kade"}},{"attributes":{"name":"Mr. Roger Botsford","age":29,"location":"Lake Rafaela"}},{"attributes":{"name":"Elsa Morissette","age":48,"location":"Jersey City"}},{"attributes":{"name":"Mr. Wilbur Bergnaum","age":49,"location":"Kenner"}},{"attributes":{"name":"Melyssa Wiegand Jr.","age":18,"location":"South May"}},{"attributes":{"name":"Mr. Rebecca Collins DVM","age":69,"location":"Lucienneport"}},{"attributes":{"name":"Mrs. Sherri Swaniawski MD","age":58,"location":"Emilyboro"}},{"attributes":{"name":"Heber Harris","age":36,"location":"Covina"}},{"attributes":{"name":"Mr. Wellington Crist DVM","age":30,"location":"Canton"}},{"attributes":{"name":"Etha Ebert","age":31,"location":"Fountain Valley"}},{"attributes":{"name":"Marta Spencer","age":63,"location":"Fort Francesco"}},{"attributes":{"name":"Marion O'Kon","age":51,"location":"Port Taurean"}},{"attributes":{"name":"Glenda Hahn","age":28,"location":"North Peterfield"}},{"attributes":{"name":"Carolina Sauer","age":60,"location":"New Ryann"}},{"attributes":{"name":"Caleb Prosacco","age":45,"location":"West Emanuelhaven"}},{"attributes":{"name":"Cheryl Tillman","age":68,"location":"Eugene"}},{"attributes":{"name":"Raleigh Haley","age":40,"location":"New Cassandrecester"}},{"attributes":{"name":"Leopoldo Ankunding","age":27,"location":"West Joanne"}},{"attributes":{"name":"Terrance Christiansen","age":35,"location":"Lake Fatima"}},{"attributes":{"name":"Anastacio Moen","age":72,"location":"Littlestad"}},{"attributes":{"name":"Krystal Doyle IV","age":56,"location":"Harveymouth"}},{"attributes":{"name":"Jacob Bernhard","age":52,"location":"Josiahshire"}},{"attributes":{"name":"Stephanie Ondricka-O'Connell","age":79,"location":"Fort Josue"}},{"attributes":{"name":"Penny Rolfson","age":20,"location":"Port Jamison"}},{"attributes":{"name":"Cameron Johnston","age":20,"location":"North Claud"}},{"attributes":{"name":"Howard Johnston","age":78,"location":"North Charleston"}},{"attributes":{"name":"Tyrel Walter","age":40,"location":"East Estellbury"}},{"attributes":{"name":"Dr. Electa Bogisich IV","age":61,"location":"Danielport"}},{"attributes":{"name":"Lee Schmeler","age":54,"location":"North Kailynland"}},{"attributes":{"name":"Sheri Bechtelar","age":69,"location":"Lake Garnett"}},{"attributes":{"name":"Erna Beier","age":60,"location":"East Royberg"}},{"attributes":{"name":"Eunice Kozey","age":56,"location":"Donnellymouth"}},{"attributes":{"name":"Penelope Greenholt","age":67,"location":"Sammamish"}},{"attributes":{"name":"Sue Nolan","age":57,"location":"Kalliehaven"}},{"attributes":{"name":"Stanley Herzog","age":63,"location":"Fort Nelda"}},{"attributes":{"name":"Ms. Megan Conn","age":47,"location":"Okunevaboro"}},{"attributes":{"name":"Elnora Kuvalis","age":20,"location":"Walnut Creek"}},{"attributes":{"name":"Miss Louise Corwin","age":50,"location":"St. Joseph"}},{"attributes":{"name":"Guido Kovacek","age":44,"location":"New Rochelle"}},{"attributes":{"name":"Mrs. Kendra Goldner","age":35,"location":"Bernhardstad"}},{"attributes":{"name":"Ruth Abshire","age":72,"location":"Lynwood"}},{"attributes":{"name":"Dr. Antwan Cummings","age":45,"location":"Noblesville"}},{"attributes":{"name":"Steve Pagac","age":72,"location":"North Katelin"}},{"attributes":{"name":"Otho Schamberger","age":53,"location":"West Jaime"}},{"attributes":{"name":"Benton Bartoletti","age":57,"location":"Daytona Beach"}},{"attributes":{"name":"Lucile Lang","age":26,"location":"Mayerthaven"}},{"attributes":{"name":"Mrs. Della Legros","age":19,"location":"Kassandratown"}},{"attributes":{"name":"Matthew Ortiz","age":18,"location":"Lake Kyler"}},{"attributes":{"name":"Roosevelt Rosenbaum","age":18,"location":"North Evalynville"}},{"attributes":{"name":"Earlene Hickle","age":50,"location":"South Jonathan"}},{"attributes":{"name":"Levi Kulas","age":46,"location":"Bogisichfort"}},{"attributes":{"name":"Rochelle Kirlin","age":41,"location":"Fort Napoleon"}},{"attributes":{"name":"Jordan Keebler-Crona","age":26,"location":"Bryonchester"}},{"attributes":{"name":"Harriet Farrell","age":49,"location":"North Barbara"}},{"attributes":{"name":"Cedric Corkery","age":78,"location":"South Evans"}},{"attributes":{"name":"Eva Green","age":64,"location":"South Adrianna"}},{"attributes":{"name":"Estefania Stroman","age":46,"location":"Fort Susannaburgh"}},{"attributes":{"name":"Gabriel Moen","age":40,"location":"New Jaqueline"}},{"attributes":{"name":"Mona Grady DVM","age":26,"location":"Placentia"}},{"attributes":{"name":"Sunny Ziemann","age":55,"location":"Georgianacester"}},{"attributes":{"name":"Maximo Feest-Shields","age":67,"location":"Jackychester"}},{"attributes":{"name":"Becky Marks","age":36,"location":"Busterhaven"}},{"attributes":{"name":"Brian Durgan-Fahey","age":28,"location":"Kunzemouth"}},{"attributes":{"name":"Dr. Kenton Roberts","age":33,"location":"Rohanburgh"}},{"attributes":{"name":"Deonte Schamberger","age":19,"location":"Port Modesto"}},{"attributes":{"name":"Brent Bartell","age":65,"location":"Port Hilmamouth"}},{"attributes":{"name":"Bob Smith","age":44,"location":"North Alvisville"}},{"attributes":{"name":"Lilliana Herzog","age":79,"location":"North Charleston"}},{"attributes":{"name":"Celia Wehner","age":45,"location":"Kaylistead"}},{"attributes":{"name":"Allison Mann","age":46,"location":"Lebsackworth"}},{"attributes":{"name":"Mollie Grant","age":47,"location":"Filomenacester"}},{"attributes":{"name":"Orland Schumm","age":58,"location":"Stephanyfort"}},{"attributes":{"name":"Jimmy Paucek","age":71,"location":"Twin Falls"}},{"attributes":{"name":"Zachariah Yundt","age":53,"location":"Shainaport"}},{"attributes":{"name":"Tiffany Predovic","age":61,"location":"Dareberg"}},{"attributes":{"name":"Kaya Considine","age":33,"location":"Treverworth"}},{"attributes":{"name":"Mr. Adrian McClure","age":46,"location":"Fort Loy"}},{"attributes":{"name":"Erica Corwin","age":48,"location":"Sanfordborough"}},{"attributes":{"name":"Whitney Ratke","age":26,"location":"New April"}},{"attributes":{"name":"Adalberto Luettgen","age":31,"location":"Waco"}},{"attributes":{"name":"Ella Steuber","age":23,"location":"Cordieshire"}},{"attributes":{"name":"Sydney Becker","age":37,"location":"Fort Akeemfurt"}},{"attributes":{"name":"Simeon Ledner","age":53,"location":"New Laury"}},{"attributes":{"name":"Ian Satterfield","age":71,"location":"North Elyssa"}},{"attributes":{"name":"Oscar Padberg II","age":25,"location":"Goldnerville"}},{"attributes":{"name":"Enola Nicolas","age":59,"location":"West Sacramento"}},{"attributes":{"name":"Markus Berge","age":39,"location":"Ryanstead"}},{"attributes":{"name":"Demario Hilpert III","age":28,"location":"East Trisha"}},{"attributes":{"name":"Arthur Wyman","age":48,"location":"Lee's Summit"}},{"attributes":{"name":"Phyllis Parker MD","age":69,"location":"Westland"}},{"attributes":{"name":"Mr. Jessie Wunsch","age":57,"location":"Folsom"}},{"attributes":{"name":"Ricardo Weimann","age":40,"location":"Destinland"}},{"attributes":{"name":"Lane Grimes-Roob","age":57,"location":"Crooksborough"}},{"attributes":{"name":"Shawn Wehner","age":79,"location":"Augustaworth"}},{"attributes":{"name":"Ms. Marsha Renner Jr.","age":77,"location":"Bakersfield"}},{"attributes":{"name":"Shannon Mraz IV","age":43,"location":"Sauerview"}},{"attributes":{"name":"Chanel Predovic","age":63,"location":"Lake Antonina"}},{"attributes":{"name":"Lea Stokes","age":21,"location":"South Nonachester"}},{"attributes":{"name":"Candida Denesik","age":31,"location":"North Nathan"}},{"attributes":{"name":"Ola Kilback","age":24,"location":"South Jaycee"}},{"attributes":{"name":"Dr. Darrell Nikolaus","age":69,"location":"South Alva"}},{"attributes":{"name":"Adelle Morissette","age":33,"location":"Raleigh"}},{"attributes":{"name":"Rebekah Murray","age":35,"location":"North Jeffton"}},{"attributes":{"name":"Rex Lowe I","age":39,"location":"Lake Sedrick"}},{"attributes":{"name":"Everette Anderson","age":19,"location":"Flossieport"}},{"attributes":{"name":"Caleb Kozey","age":25,"location":"Germantown"}},{"attributes":{"name":"Micheal Tromp","age":74,"location":"Madelinestad"}},{"attributes":{"name":"Eric Feeney","age":18,"location":"Naperville"}},{"attributes":{"name":"Courtney Treutel","age":72,"location":"Santa Clara"}},{"attributes":{"name":"Mr. Jake Metz","age":38,"location":"Matildaberg"}},{"attributes":{"name":"Naomi Barrows Jr.","age":39,"location":"Sawaynhaven"}},{"attributes":{"name":"Andre Lind-Quitzon","age":24,"location":"Lakewood"}},{"attributes":{"name":"Astrid Rohan","age":60,"location":"Port Faustinohaven"}},{"attributes":{"name":"Dr. Jill Leannon","age":76,"location":"Elliottfurt"}},{"attributes":{"name":"Mr. Pamela Shanahan","age":27,"location":"Frederick"}},{"attributes":{"name":"Nigel Upton","age":73,"location":"Imashire"}},{"attributes":{"name":"Isai Leannon","age":59,"location":"Boehmfurt"}},{"attributes":{"name":"Vernice Smitham","age":34,"location":"North Stefanie"}},{"attributes":{"name":"Josephine Thompson","age":38,"location":"New Vitahaven"}},{"attributes":{"name":"Kathy Nader","age":44,"location":"East Aglaetown"}},{"attributes":{"name":"Mr. Cielo Batz DDS","age":68,"location":"Tulare"}},{"attributes":{"name":"Gayle DuBuque","age":78,"location":"Lake Faustinoborough"}},{"attributes":{"name":"Melyssa Stanton","age":20,"location":"Worcester"}},{"attributes":{"name":"Ronald Bashirian II","age":61,"location":"West Orville"}},{"attributes":{"name":"Dr. Kara Kuhlman","age":21,"location":"Loraborough"}},{"attributes":{"name":"Cassandra Carter Jr.","age":34,"location":"Eileenbury"}},{"attributes":{"name":"Albin Hayes","age":53,"location":"Edisonfield"}},{"attributes":{"name":"Joy Larson II","age":34,"location":"Lake Kentonborough"}},{"attributes":{"name":"Ms. Jodi Denesik","age":24,"location":"Kimberlyside"}},{"attributes":{"name":"Leo Bashirian","age":54,"location":"South Joanne"}},{"attributes":{"name":"Mr. Carlos Reinger DDS","age":57,"location":"Wiegandview"}},{"attributes":{"name":"Jeremy Dickinson","age":19,"location":"Florin"}},{"attributes":{"name":"Paulette Boyle","age":59,"location":"Randallmouth"}},{"attributes":{"name":"Guy Littel","age":74,"location":"Casperworth"}},{"attributes":{"name":"Spencer Trantow","age":49,"location":"Juddport"}},{"attributes":{"name":"Maggie Stoltenberg","age":36,"location":"Lake Ethel"}},{"attributes":{"name":"Rose Kiehn","age":42,"location":"Lacyburgh"}},{"attributes":{"name":"Marion Kihn","age":79,"location":"Port Peteshire"}},{"attributes":{"name":"Herminio Cassin","age":75,"location":"Kertzmannboro"}},{"attributes":{"name":"Lionel Cummings-Bins","age":39,"location":"North Orvalfurt"}},{"attributes":{"name":"Bobbie Bradtke","age":71,"location":"Commerce City"}},{"attributes":{"name":"Gregg Lindgren","age":25,"location":"Port Mozell"}},{"attributes":{"name":"Maudie Nikolaus","age":36,"location":"West Rosalyn"}},{"attributes":{"name":"Miss Margaret Klocko","age":43,"location":"East Zeldaberg"}},{"attributes":{"name":"Lorena Grant","age":77,"location":"New Nonafurt"}},{"attributes":{"name":"Benny McDermott","age":67,"location":"South Davidcester"}},{"attributes":{"name":"Ms. Fredrick Gutmann","age":50,"location":"Lake Roberta"}},{"attributes":{"name":"Roxanne Runolfsdottir","age":37,"location":"Sacramento"}},{"attributes":{"name":"Jackie Mueller","age":77,"location":"Abilene"}},{"attributes":{"name":"Hollis Aufderhar","age":79,"location":"West Romaton"}},{"attributes":{"name":"George Denesik","age":35,"location":"North Orlo"}},{"attributes":{"name":"Laverne Kerluke","age":41,"location":"South Aaronborough"}},{"attributes":{"name":"Nigel McClure","age":32,"location":"East Patriciabury"}},{"attributes":{"name":"Jeanette Green","age":18,"location":"Manchester"}},{"attributes":{"name":"Lori Oberbrunner","age":47,"location":"South Payton"}},{"attributes":{"name":"Dave Rau","age":19,"location":"Kohlerhaven"}},{"attributes":{"name":"Mr. Steve Sporer-Harber","age":47,"location":"Kihnburgh"}},{"attributes":{"name":"Giovani Lesch","age":40,"location":"Hermistoncester"}},{"attributes":{"name":"Myron Rau","age":71,"location":"Odessastead"}},{"attributes":{"name":"Brett Gerhold","age":77,"location":"New Mariettaton"}},{"attributes":{"name":"Mathew Dickens","age":66,"location":"New Shemarfort"}},{"attributes":{"name":"Kellie Schaden","age":32,"location":"Laronburgh"}},{"attributes":{"name":"Elijah Jacobson III","age":28,"location":"Lockmanfield"}},{"attributes":{"name":"Magnus McKenzie","age":35,"location":"San Buenaventura (Ventura)"}},{"attributes":{"name":"Kelley Morissette","age":47,"location":"East Jacey"}},{"attributes":{"name":"Mya Johnston V","age":75,"location":"Margietown"}},{"attributes":{"name":"Bell Sanford","age":70,"location":"Yuma"}},{"attributes":{"name":"Alycia Torp","age":66,"location":"Port Marilyne"}},{"attributes":{"name":"Alice Volkman","age":35,"location":"Chelseafurt"}},{"attributes":{"name":"Dr. Samuel Shields","age":63,"location":"Catherineside"}},{"attributes":{"name":"Spencer MacGyver","age":54,"location":"South Earl"}},{"attributes":{"name":"Zander Rutherford I","age":62,"location":"Malindaview"}},{"attributes":{"name":"Ms. Reynold Beahan","age":40,"location":"Lake Jeromecester"}},{"attributes":{"name":"Beverly Franey","age":71,"location":"Granvilleborough"}},{"attributes":{"name":"August Runolfsson","age":60,"location":"Domenicport"}},{"attributes":{"name":"Glenn Cronin","age":49,"location":"Hauckville"}},{"attributes":{"name":"Jarred Turner","age":41,"location":"Fort Nyasia"}},{"attributes":{"name":"Retta Koss","age":29,"location":"West Alexandriamouth"}},{"attributes":{"name":"Claude Bechtelar","age":62,"location":"Cristton"}},{"attributes":{"name":"Dr. Hattie Gleichner","age":39,"location":"Country Club"}},{"attributes":{"name":"Walter Jacobi-Marquardt","age":32,"location":"Reingerville"}},{"attributes":{"name":"Ms. Shanon Pollich","age":32,"location":"Koelpinborough"}},{"attributes":{"name":"Devon Bosco","age":67,"location":"Francisstad"}},{"attributes":{"name":"Afton Hegmann","age":35,"location":"Troy"}},{"attributes":{"name":"Erna Wehner","age":61,"location":"West Nicoletteborough"}},{"attributes":{"name":"Alberto Daugherty-Paucek","age":52,"location":"West Florencio"}},{"attributes":{"name":"Latoya Nader","age":40,"location":"Port Ericka"}},{"attributes":{"name":"Margarita Dietrich","age":53,"location":"Gorczanyberg"}},{"attributes":{"name":"Bert Aufderhar","age":40,"location":"Atascocita"}},{"attributes":{"name":"Melinda Friesen","age":49,"location":"Hamilton"}},{"attributes":{"name":"Viola Mayert","age":40,"location":"Kundeside"}},{"attributes":{"name":"Robert Torphy","age":32,"location":"New Samantha"}},{"attributes":{"name":"Lila Beer","age":21,"location":"West Lilyton"}},{"attributes":{"name":"Rosemarie Bauch","age":76,"location":"McClureboro"}},{"attributes":{"name":"Ms. Ethel Murphy","age":59,"location":"Fort Erickfield"}},{"attributes":{"name":"Blair Lockman","age":71,"location":"Gerardohaven"}},{"attributes":{"name":"Lucas Dicki","age":65,"location":"North Jared"}},{"attributes":{"name":"Miss Jordy Bayer","age":50,"location":"Fidelfort"}},{"attributes":{"name":"Wiley Pouros","age":64,"location":"West Demarcusworth"}},{"attributes":{"name":"Lana Towne","age":29,"location":"Walshmouth"}},{"attributes":{"name":"Virgil Kovacek","age":34,"location":"Gastonia"}},{"attributes":{"name":"Lila Labadie","age":75,"location":"Port Dennis"}},{"attributes":{"name":"Orion Schuster","age":20,"location":"East Kalebtown"}},{"attributes":{"name":"Amya Dach","age":71,"location":"Penelopestad"}},{"attributes":{"name":"Natasha Runte","age":41,"location":"Caseyworth"}},{"attributes":{"name":"Tami Kovacek","age":41,"location":"South Yoshikotown"}},{"attributes":{"name":"Louis Reichel Sr.","age":31,"location":"West Sacramento"}},{"attributes":{"name":"Fermin O'Hara-Schultz","age":52,"location":"East Demond"}},{"attributes":{"name":"Stacy Langosh","age":62,"location":"Mitchellborough"}},{"attributes":{"name":"Jodi Legros","age":73,"location":"New Nicklaus"}},{"attributes":{"name":"Rodolfo Hilll","age":43,"location":"Fort Damonstead"}},{"attributes":{"name":"Rupert Carroll","age":42,"location":"West Nehatown"}},{"attributes":{"name":"Ms. Arnaldo Kunze","age":61,"location":"New Wilhelm"}},{"attributes":{"name":"Emma Legros Jr.","age":49,"location":"South Eve"}},{"attributes":{"name":"Celia Yundt","age":69,"location":"Pouroschester"}},{"attributes":{"name":"Mrs. Marilyn Dooley Jr.","age":72,"location":"State College"}},{"attributes":{"name":"Lyla Bednar","age":59,"location":"Blandacester"}},{"attributes":{"name":"Alvin Schuster","age":68,"location":"Mattieport"}},{"attributes":{"name":"Billy Reinger","age":42,"location":"Buena Park"}},{"attributes":{"name":"Buster Predovic","age":67,"location":"Irvine"}},{"attributes":{"name":"Vickie Frami","age":39,"location":"New Kelvin"}},{"attributes":{"name":"Johathan Ziemann I","age":46,"location":"Port Meredith"}},{"attributes":{"name":"Beulah Gleason","age":29,"location":"Florissant"}},{"attributes":{"name":"Harry Kuvalis","age":39,"location":"Cliffordton"}},{"attributes":{"name":"Mrs. Ada Cummings","age":78,"location":"Lake Chelsieton"}},{"attributes":{"name":"Arnold Morissette","age":50,"location":"Bruenside"}},{"attributes":{"name":"Katrine Jacobi","age":59,"location":"Hirtheville"}},{"attributes":{"name":"Vickie Buckridge","age":80,"location":"Lake Shad"}},{"attributes":{"name":"Carmen Daugherty MD","age":28,"location":"West Donato"}},{"attributes":{"name":"Vanessa Leffler","age":23,"location":"Steuberchester"}},{"attributes":{"name":"Benny Leffler","age":45,"location":"Lake Ernestina"}},{"attributes":{"name":"Annabell Bergnaum","age":68,"location":"Delphaview"}},{"attributes":{"name":"Rodolfo Rohan","age":19,"location":"New Erich"}},{"attributes":{"name":"Tina Haag","age":54,"location":"Connellyburgh"}},{"attributes":{"name":"Roxanne Sauer","age":46,"location":"Howefield"}},{"attributes":{"name":"Hal Turcotte","age":72,"location":"Beattyborough"}},{"attributes":{"name":"Joel Swift-Murazik","age":23,"location":"West Jarret"}},{"attributes":{"name":"Maynard Marks","age":36,"location":"Worcester"}},{"attributes":{"name":"Blaise Pouros","age":48,"location":"Canton"}},{"attributes":{"name":"Lura Trantow","age":37,"location":"South Herminiafort"}},{"attributes":{"name":"Hope Mante","age":55,"location":"Farrellcester"}},{"attributes":{"name":"Caleb Medhurst","age":79,"location":"Plainfield"}},{"attributes":{"name":"Johnnie Auer","age":27,"location":"East Maceystead"}},{"attributes":{"name":"Cecilia Streich","age":42,"location":"Elwinstead"}},{"attributes":{"name":"Jose Langosh","age":39,"location":"Esperanzacester"}},{"attributes":{"name":"Rosario Price","age":30,"location":"Cieloview"}},{"attributes":{"name":"Gladys Mraz-Hamill","age":24,"location":"East Dannie"}},{"attributes":{"name":"Katharina Bogisich","age":20,"location":"Santa Ana"}},{"attributes":{"name":"Kayla Mills","age":80,"location":"Mariannamouth"}},{"attributes":{"name":"Hailee Cummerata","age":78,"location":"Lemkeside"}},{"attributes":{"name":"Noel Satterfield","age":64,"location":"Buffalo"}},{"attributes":{"name":"Mrs. Penny Boyer","age":59,"location":"New Annetteview"}},{"attributes":{"name":"Tracey Hilll","age":34,"location":"South Dejonhaven"}},{"attributes":{"name":"Taylor Christiansen","age":33,"location":"North Herman"}},{"attributes":{"name":"Marlin Russel","age":57,"location":"Henderson"}},{"attributes":{"name":"Josianne Block","age":20,"location":"Fadelhaven"}},{"attributes":{"name":"Maureen Koelpin","age":48,"location":"Geovannibury"}},{"attributes":{"name":"Israel Williamson Sr.","age":45,"location":"Lake Havasu City"}},{"attributes":{"name":"Gina Howell","age":28,"location":"Manhattan"}},{"attributes":{"name":"Landen Cruickshank","age":62,"location":"East Calistaworth"}},{"attributes":{"name":"Gage Yost-Dickinson","age":61,"location":"Yorba Linda"}},{"attributes":{"name":"Kyla Pfannerstill","age":41,"location":"Birmingham"}},{"attributes":{"name":"Elaina Weber","age":24,"location":"Green Bay"}},{"attributes":{"name":"Itzel Goodwin","age":68,"location":"Wauwatosa"}},{"attributes":{"name":"Lee Hilpert","age":33,"location":"Yadirabury"}},{"attributes":{"name":"Myrtle Schroeder","age":48,"location":"Arnoldoside"}},{"attributes":{"name":"Samantha Mills","age":67,"location":"Mollyfield"}},{"attributes":{"name":"Joannie Goodwin","age":75,"location":"Jessikaville"}},{"attributes":{"name":"Casimer Wiegand","age":37,"location":"Lake Earnest"}},{"attributes":{"name":"Ken Bauch","age":41,"location":"North Annetteboro"}},{"attributes":{"name":"Eddie Cartwright","age":45,"location":"West Mohamed"}},{"attributes":{"name":"Sean Hartmann","age":32,"location":"Boyerworth"}},{"attributes":{"name":"Gladys Steuber PhD","age":26,"location":"Elmiracester"}},{"attributes":{"name":"Jennings Kunze","age":80,"location":"North Monserrateview"}},{"attributes":{"name":"Brain Will","age":19,"location":"Lake Ashton"}},{"attributes":{"name":"Joanny Klein-Heller","age":40,"location":"South Edmundland"}},{"attributes":{"name":"Dana Will","age":63,"location":"Lemkeburgh"}},{"attributes":{"name":"Mariana Romaguera","age":32,"location":"North Arvillashire"}},{"attributes":{"name":"Mary Parker","age":21,"location":"Huntersville"}},{"attributes":{"name":"Kattie Hermann-Orn","age":31,"location":"South Sydnee"}},{"attributes":{"name":"Rick Jakubowski","age":35,"location":"Kilbackboro"}},{"attributes":{"name":"Mrs. Robyn Reynolds","age":18,"location":"East Lavernefort"}},{"attributes":{"name":"Melany Abshire IV","age":67,"location":"Port Bobby"}},{"attributes":{"name":"Brooks Yundt","age":78,"location":"Mandyfort"}},{"attributes":{"name":"Everett Hauck","age":63,"location":"VonRuedenchester"}},{"attributes":{"name":"Mr. Brandi Hane","age":52,"location":"Lake Brainland"}},{"attributes":{"name":"Gregory Gleichner","age":69,"location":"North Jordon"}},{"attributes":{"name":"Ana Ullrich","age":59,"location":"Jeniferstad"}},{"attributes":{"name":"Ruth Rippin","age":68,"location":"North Deshaun"}},{"attributes":{"name":"Terrence Wilkinson","age":69,"location":"Sanfordland"}},{"attributes":{"name":"Mrs. Annette O'Kon","age":48,"location":"Port Minerva"}},{"attributes":{"name":"Clifford Kautzer","age":72,"location":"Reingertown"}},{"attributes":{"name":"Jeffery Sawayn V","age":24,"location":"Collierview"}},{"attributes":{"name":"Richard Murphy","age":55,"location":"Lake Javier"}},{"attributes":{"name":"Daryl Quigley DDS","age":29,"location":"Reingerborough"}},{"attributes":{"name":"Alexandra Maggio","age":68,"location":"Lake Reymundoboro"}},{"attributes":{"name":"Jennifer Blanda-Harvey","age":23,"location":"Palm Bay"}},{"attributes":{"name":"Manuel Gibson","age":50,"location":"Bernitaworth"}},{"attributes":{"name":"Dr. Danielle Weimann II","age":35,"location":"West Catherinemouth"}},{"attributes":{"name":"Sean Cormier","age":55,"location":"Elsiehaven"}},{"attributes":{"name":"Eda Gerhold","age":28,"location":"Bedford"}},{"attributes":{"name":"Caleb Ferry","age":50,"location":"Port Laurenceboro"}},{"attributes":{"name":"Haskell Hansen","age":58,"location":"West Elza"}},{"attributes":{"name":"Alexane O'Kon","age":29,"location":"Geraldineshire"}},{"attributes":{"name":"Eve Ernser","age":77,"location":"Jonathanville"}},{"attributes":{"name":"Maci Abshire","age":72,"location":"Mayertton"}},{"attributes":{"name":"Josiane Hettinger","age":50,"location":"Fort Bethel"}},{"attributes":{"name":"Wendy Wolf","age":77,"location":"Port Emilio"}},{"attributes":{"name":"Miss Kellie Bahringer","age":41,"location":"Gerholdfurt"}},{"attributes":{"name":"Madaline O'Keefe","age":66,"location":"Hueltown"}},{"attributes":{"name":"Wayne Ward","age":32,"location":"North Lacey"}},{"attributes":{"name":"Ruthie Gerhold","age":68,"location":"Fletafort"}},{"attributes":{"name":"Gerald Collins Jr.","age":26,"location":"North Zoey"}},{"attributes":{"name":"Vicki Baumbach","age":37,"location":"East Enricohaven"}},{"attributes":{"name":"Chris Ebert","age":68,"location":"Bruenworth"}},{"attributes":{"name":"Ericka Bogan","age":52,"location":"North Raheemboro"}},{"attributes":{"name":"Alicia Turcotte","age":47,"location":"Carmenside"}},{"attributes":{"name":"Patricia Kessler","age":25,"location":"Hettingerton"}},{"attributes":{"name":"Horace Bogan","age":18,"location":"Jacobsonstead"}},{"attributes":{"name":"Sherri Olson","age":79,"location":"Hartmannstead"}},{"attributes":{"name":"Fanny Krajcik DDS","age":75,"location":"Sandyton"}},{"attributes":{"name":"Aniyah Ankunding MD","age":55,"location":"Fort Dean"}},{"attributes":{"name":"Arvid Gorczany DDS","age":60,"location":"Sanfordtown"}},{"attributes":{"name":"Sophia Witting","age":38,"location":"Lednerville"}},{"attributes":{"name":"Katherine Kirlin","age":35,"location":"Nikostead"}},{"attributes":{"name":"Immanuel McDermott","age":67,"location":"Fort Estrellaville"}},{"attributes":{"name":"Shelly Bogan-Pagac Jr.","age":79,"location":"Nyahhaven"}},{"attributes":{"name":"Myah Beer","age":64,"location":"Aronmouth"}},{"attributes":{"name":"Heather Gottlieb","age":56,"location":"Fort Kobyberg"}},{"attributes":{"name":"Winifred Nicolas","age":22,"location":"Roobfurt"}},{"attributes":{"name":"Dr. Wilbur Bosco PhD","age":27,"location":"East Sylviatown"}},{"attributes":{"name":"Rosetta Hettinger-Hirthe","age":76,"location":"Zackton"}},{"attributes":{"name":"Julia Swift","age":73,"location":"New Haleyhaven"}},{"attributes":{"name":"Jude Kreiger-Kiehn","age":28,"location":"New Myah"}},{"attributes":{"name":"Loren Grimes","age":65,"location":"Anderson"}},{"attributes":{"name":"Morris Romaguera","age":50,"location":"East Joshuahville"}},{"attributes":{"name":"Neal Mayert","age":23,"location":"New Jaquelin"}},{"attributes":{"name":"Dudley Carroll","age":57,"location":"Mackenzieburgh"}},{"attributes":{"name":"Adam Rath","age":37,"location":"North Alexafield"}},{"attributes":{"name":"Dolly Funk","age":24,"location":"Orvilleberg"}},{"attributes":{"name":"Wilber Murphy","age":23,"location":"Arielland"}},{"attributes":{"name":"Minnie Murazik","age":55,"location":"East Maidaburgh"}},{"attributes":{"name":"Brielle Marquardt-Simonis","age":21,"location":"Anderson"}},{"attributes":{"name":"Viola Kuhlman","age":80,"location":"Giovannyfield"}},{"attributes":{"name":"Olga Shanahan","age":25,"location":"Hadleystead"}},{"attributes":{"name":"Dr. Claude Hahn DVM","age":64,"location":"South Cathrineberg"}},{"attributes":{"name":"Lisa McKenzie-Bernhard","age":61,"location":"Gary"}},{"attributes":{"name":"Erwin Rippin","age":39,"location":"South Vella"}},{"attributes":{"name":"Leon West","age":74,"location":"Dejabury"}},{"attributes":{"name":"Muriel Sanford","age":22,"location":"New Deja"}},{"attributes":{"name":"Miss Melissa Kling","age":47,"location":"Avondale"}},{"attributes":{"name":"Barry Monahan","age":76,"location":"Lake Arvid"}},{"attributes":{"name":"Rex Oberbrunner Sr.","age":24,"location":"Margate"}},{"attributes":{"name":"Ivan Herzog","age":61,"location":"Bergestead"}},{"attributes":{"name":"Irvin Wehner","age":40,"location":"Bernhardstad"}},{"attributes":{"name":"Joshuah Zboncak","age":55,"location":"Emmerichbury"}},{"attributes":{"name":"Theodore Hermann","age":40,"location":"Jeramiecester"}},{"attributes":{"name":"Alfred Price","age":68,"location":"Ziemannshire"}},{"attributes":{"name":"Miss Erwin Osinski","age":48,"location":"East Daphnee"}},{"attributes":{"name":"Melissa Lang","age":77,"location":"Jeramieburgh"}},{"attributes":{"name":"Frank Aufderhar-Medhurst","age":45,"location":"West Eladiostad"}},{"attributes":{"name":"Mr. Cory Nader","age":57,"location":"Bayertown"}},{"attributes":{"name":"Miss Donnie Mraz","age":39,"location":"New Rylanfield"}},{"attributes":{"name":"Lizeth Gusikowski","age":58,"location":"Joelside"}},{"attributes":{"name":"Kaleigh Ondricka","age":20,"location":"Shoreline"}},{"attributes":{"name":"Jennyfer Pfeffer","age":53,"location":"Rohanberg"}},{"attributes":{"name":"Zachary Mitchell","age":59,"location":"South Giovanniworth"}},{"attributes":{"name":"Ms. Wava Willms-Aufderhar DVM","age":55,"location":"Strongsville"}},{"attributes":{"name":"Cristina Larson","age":61,"location":"West Isabel"}},{"attributes":{"name":"Mr. Joanna Bechtelar","age":76,"location":"Kohlershire"}},{"attributes":{"name":"Lucy McKenzie","age":67,"location":"Cheyenne"}},{"attributes":{"name":"Robin Kuhic","age":61,"location":"Candelarioshire"}},{"attributes":{"name":"Mr. Jazmyn Halvorson","age":80,"location":"North Fabiola"}},{"attributes":{"name":"Camden Cormier","age":30,"location":"South Warrenton"}},{"attributes":{"name":"Candace Ebert","age":46,"location":"Carolina"}},{"attributes":{"name":"Lynette Kuhic","age":47,"location":"Weimannfield"}},{"attributes":{"name":"Michelle Mitchell","age":22,"location":"Reingerville"}},{"attributes":{"name":"Carolyn McKenzie","age":60,"location":"South Oliverbury"}},{"attributes":{"name":"Karolann Bogisich","age":30,"location":"New Kevenfort"}},{"attributes":{"name":"Joseph Auer","age":80,"location":"Lake Johnpaulview"}},{"attributes":{"name":"Jennie Cormier","age":62,"location":"Daretown"}},{"attributes":{"name":"Diane Hudson DVM","age":36,"location":"Brantport"}},{"attributes":{"name":"Willard Hettinger","age":79,"location":"Burien"}},{"attributes":{"name":"Shawn MacGyver II","age":44,"location":"Purdybury"}},{"attributes":{"name":"Hugh Gislason V","age":68,"location":"Ankeny"}},{"attributes":{"name":"Emmett Dickens III","age":60,"location":"North Darioberg"}},{"attributes":{"name":"Mr. Brendan Larkin","age":77,"location":"Hendersonville"}},{"attributes":{"name":"Domingo Brekke","age":41,"location":"Marianachester"}},{"attributes":{"name":"Elias Jacobs","age":32,"location":"Kihnside"}},{"attributes":{"name":"Jedidiah Miller","age":22,"location":"Blaine"}},{"attributes":{"name":"Blaise MacGyver","age":60,"location":"Anissamouth"}},{"attributes":{"name":"Jessica Connelly","age":39,"location":"Thornton"}},{"attributes":{"name":"Aliyah Sauer","age":52,"location":"South Gianni"}},{"attributes":{"name":"Lawrence Steuber","age":48,"location":"Chino"}},{"attributes":{"name":"Santa Hickle","age":43,"location":"Port Kenyonboro"}},{"attributes":{"name":"Flora Stiedemann","age":62,"location":"Waipahu"}},{"attributes":{"name":"Dusty Lang-Kovacek","age":38,"location":"South Kim"}},{"attributes":{"name":"Dewey Johnston","age":41,"location":"Freemanton"}},{"attributes":{"name":"Courtney Predovic","age":52,"location":"South Gudrun"}},{"attributes":{"name":"Mrs. Penny Bechtelar PhD","age":74,"location":"Stockton"}},{"attributes":{"name":"Dr. Katrine Pfeffer","age":53,"location":"Mishawaka"}},{"attributes":{"name":"Abdullah Kuhn","age":37,"location":"Coachella"}},{"attributes":{"name":"Mrs. Rosie Kozey","age":41,"location":"Hayesbury"}},{"attributes":{"name":"Alivia Beatty-Weber DVM","age":19,"location":"East Myronport"}},{"attributes":{"name":"Felipe Jones","age":19,"location":"Darienfurt"}},{"attributes":{"name":"Jo Paucek","age":75,"location":"O'Keefeberg"}},{"attributes":{"name":"Abel Williamson","age":80,"location":"Emmieview"}},{"attributes":{"name":"Hugh Mayert","age":42,"location":"Sacramento"}},{"attributes":{"name":"Geo Friesen","age":55,"location":"Brownmouth"}},{"attributes":{"name":"Mrs. Reginald Flatley","age":52,"location":"South Karianeborough"}},{"attributes":{"name":"Damaris Jacobs","age":52,"location":"Port Cale"}},{"attributes":{"name":"Alta Kihn","age":74,"location":"New Raven"}},{"attributes":{"name":"Justin Rohan-Spencer","age":25,"location":"Valentinamouth"}},{"attributes":{"name":"Lena Zulauf","age":73,"location":"North Beryl"}},{"attributes":{"name":"Courtney Kozey","age":28,"location":"West Aileen"}},{"attributes":{"name":"Cathy Roob","age":43,"location":"Osinskiland"}},{"attributes":{"name":"Leonie Rice","age":50,"location":"Raphaellefurt"}},{"attributes":{"name":"Brionna Mills","age":61,"location":"South Caleigh"}},{"attributes":{"name":"Marcus Nicolas","age":79,"location":"Hauckworth"}},{"attributes":{"name":"Miss Becky Hermiston","age":27,"location":"New Minnie"}},{"attributes":{"name":"Ana Davis","age":62,"location":"South Presleyboro"}},{"attributes":{"name":"Dr. Everett Schimmel","age":61,"location":"New Xzavierstead"}},{"attributes":{"name":"Andres Lind","age":35,"location":"West Cole"}},{"attributes":{"name":"Xander Sawayn","age":57,"location":"Lafayette"}},{"attributes":{"name":"Zachary Sanford","age":47,"location":"North Dollyville"}},{"attributes":{"name":"Grace Spinka","age":53,"location":"Port Rey"}},{"attributes":{"name":"Carroll Becker","age":57,"location":"Lake Kurt"}},{"attributes":{"name":"Dean Halvorson","age":46,"location":"Nikitamouth"}},{"attributes":{"name":"Aaron Olson-Rau","age":72,"location":"Lavonfield"}},{"attributes":{"name":"Arden Yost DDS","age":69,"location":"Sengerland"}},{"attributes":{"name":"Miss Mable Ebert I","age":68,"location":"South Dovie"}},{"attributes":{"name":"Verna Oberbrunner","age":50,"location":"New Declanmouth"}},{"attributes":{"name":"Miss Helen Wisozk","age":23,"location":"Monahanborough"}},{"attributes":{"name":"Clara Buckridge","age":25,"location":"Dickinsonville"}},{"attributes":{"name":"Lisa O'Conner","age":41,"location":"Fort Rosalia"}},{"attributes":{"name":"Blake Gorczany","age":31,"location":"West Elsieport"}},{"attributes":{"name":"Sophie Homenick","age":52,"location":"Blickborough"}},{"attributes":{"name":"Mr. Tomasa Reilly","age":25,"location":"McDermottburgh"}},{"attributes":{"name":"Savanah Rohan","age":52,"location":"Samanthastead"}},{"attributes":{"name":"Wesley Schaefer","age":35,"location":"Fort Sinceremouth"}},{"attributes":{"name":"Casey Mills III","age":79,"location":"Padbergstad"}},{"attributes":{"name":"Susanna Dickinson II","age":25,"location":"Klockofield"}},{"attributes":{"name":"Ramon Koelpin","age":37,"location":"North Howell"}},{"attributes":{"name":"Blaze Schmidt","age":18,"location":"East Rubye"}},{"attributes":{"name":"Bruce Schneider","age":57,"location":"Deborahborough"}},{"attributes":{"name":"Yvonne Deckow","age":23,"location":"Klingfield"}},{"attributes":{"name":"Jenny Yundt","age":42,"location":"San Mateo"}},{"attributes":{"name":"Marion Walker-Christiansen","age":53,"location":"Nicolasland"}},{"attributes":{"name":"Miss Estel Waelchi","age":19,"location":"West Trentfort"}},{"attributes":{"name":"Linnea Kuphal","age":62,"location":"North Richland Hills"}},{"attributes":{"name":"Isaac Schmeler","age":72,"location":"West Garthmouth"}},{"attributes":{"name":"Noemy Dibbert","age":57,"location":"New Jennifer"}}]} \ No newline at end of file diff --git a/public/storybook/us-states.geojson b/public/storybook/us-states.geojson new file mode 100644 index 000000000..1c1ebe55f --- /dev/null +++ b/public/storybook/us-states.geojson @@ -0,0 +1,54 @@ +{"type":"FeatureCollection","features":[ +{"type":"Feature","id":"01","properties":{"name":"Alabama","density":94.65},"geometry":{"type":"Polygon","coordinates":[[[-87.359296,35.00118],[-85.606675,34.984749],[-85.431413,34.124869],[-85.184951,32.859696],[-85.069935,32.580372],[-84.960397,32.421541],[-85.004212,32.322956],[-84.889196,32.262709],[-85.058981,32.13674],[-85.053504,32.01077],[-85.141136,31.840985],[-85.042551,31.539753],[-85.113751,31.27686],[-85.004212,31.003013],[-85.497137,30.997536],[-87.600282,30.997536],[-87.633143,30.86609],[-87.408589,30.674397],[-87.446927,30.510088],[-87.37025,30.427934],[-87.518128,30.280057],[-87.655051,30.247195],[-87.90699,30.411504],[-87.934375,30.657966],[-88.011052,30.685351],[-88.10416,30.499135],[-88.137022,30.318396],[-88.394438,30.367688],[-88.471115,31.895754],[-88.241084,33.796253],[-88.098683,34.891641],[-88.202745,34.995703],[-87.359296,35.00118]]]}}, +{"type":"Feature","id":"02","properties":{"name":"Alaska","density":1.264},"geometry":{"type":"MultiPolygon","coordinates":[[[[-131.602021,55.117982],[-131.569159,55.28229],[-131.355558,55.183705],[-131.38842,55.01392],[-131.645836,55.035827],[-131.602021,55.117982]]],[[[-131.832052,55.42469],[-131.645836,55.304197],[-131.749898,55.128935],[-131.832052,55.189182],[-131.832052,55.42469]]],[[[-132.976733,56.437924],[-132.735747,56.459832],[-132.631685,56.421493],[-132.664547,56.273616],[-132.878148,56.240754],[-133.069841,56.333862],[-132.976733,56.437924]]],[[[-133.595627,56.350293],[-133.162949,56.317431],[-133.05341,56.125739],[-132.620732,55.912138],[-132.472854,55.780691],[-132.4619,55.671152],[-132.357838,55.649245],[-132.341408,55.506844],[-132.166146,55.364444],[-132.144238,55.238474],[-132.029222,55.276813],[-131.97993,55.178228],[-131.958022,54.789365],[-132.029222,54.701734],[-132.308546,54.718165],[-132.385223,54.915335],[-132.483808,54.898904],[-132.686455,55.046781],[-132.746701,54.997489],[-132.916486,55.046781],[-132.889102,54.898904],[-132.73027,54.937242],[-132.626209,54.882473],[-132.675501,54.679826],[-132.867194,54.701734],[-133.157472,54.95915],[-133.239626,55.090597],[-133.223195,55.22752],[-133.453227,55.216566],[-133.453227,55.320628],[-133.277964,55.331582],[-133.102702,55.42469],[-133.17938,55.588998],[-133.387503,55.62186],[-133.420365,55.884753],[-133.497042,56.0162],[-133.639442,55.923092],[-133.694212,56.070969],[-133.546335,56.142169],[-133.666827,56.311955],[-133.595627,56.350293]]],[[[-133.738027,55.556137],[-133.546335,55.490413],[-133.414888,55.572568],[-133.283441,55.534229],[-133.420365,55.386352],[-133.633966,55.430167],[-133.738027,55.556137]]],[[[-133.907813,56.930849],[-134.050213,57.029434],[-133.885905,57.095157],[-133.343688,57.002049],[-133.102702,57.007526],[-132.932917,56.82131],[-132.620732,56.667956],[-132.653593,56.55294],[-132.817901,56.492694],[-133.042456,56.520078],[-133.201287,56.448878],[-133.420365,56.492694],[-133.66135,56.448878],[-133.710643,56.684386],[-133.688735,56.837741],[-133.869474,56.843218],[-133.907813,56.930849]]],[[[-134.115936,56.48174],[-134.25286,56.558417],[-134.400737,56.722725],[-134.417168,56.848695],[-134.296675,56.908941],[-134.170706,56.848695],[-134.143321,56.952757],[-133.748981,56.772017],[-133.710643,56.596755],[-133.847566,56.574848],[-133.935197,56.377678],[-133.836612,56.322908],[-133.957105,56.092877],[-134.110459,56.142169],[-134.132367,55.999769],[-134.230952,56.070969],[-134.291198,56.350293],[-134.115936,56.48174]]],[[[-134.636246,56.28457],[-134.669107,56.169554],[-134.806031,56.235277],[-135.178463,56.67891],[-135.413971,56.810356],[-135.331817,56.914418],[-135.424925,57.166357],[-135.687818,57.369004],[-135.419448,57.566174],[-135.298955,57.48402],[-135.063447,57.418296],[-134.849846,57.407343],[-134.844369,57.248511],[-134.636246,56.728202],[-134.636246,56.28457]]],[[[-134.712923,58.223407],[-134.373353,58.14673],[-134.176183,58.157683],[-134.187137,58.081006],[-133.902336,57.807159],[-134.099505,57.850975],[-134.148798,57.757867],[-133.935197,57.615466],[-133.869474,57.363527],[-134.083075,57.297804],[-134.154275,57.210173],[-134.499322,57.029434],[-134.603384,57.034911],[-134.6472,57.226604],[-134.575999,57.341619],[-134.608861,57.511404],[-134.729354,57.719528],[-134.707446,57.829067],[-134.784123,58.097437],[-134.91557,58.212453],[-134.953908,58.409623],[-134.712923,58.223407]]],[[[-135.857603,57.330665],[-135.715203,57.330665],[-135.567326,57.149926],[-135.633049,57.023957],[-135.857603,56.996572],[-135.824742,57.193742],[-135.857603,57.330665]]],[[[-136.279328,58.206976],[-135.978096,58.201499],[-135.780926,58.28913],[-135.496125,58.168637],[-135.64948,58.037191],[-135.59471,57.987898],[-135.45231,58.135776],[-135.107263,58.086483],[-134.91557,57.976944],[-135.025108,57.779775],[-134.937477,57.763344],[-134.822462,57.500451],[-135.085355,57.462112],[-135.572802,57.675713],[-135.556372,57.456635],[-135.709726,57.369004],[-135.890465,57.407343],[-136.000004,57.544266],[-136.208128,57.637374],[-136.366959,57.829067],[-136.569606,57.916698],[-136.558652,58.075529],[-136.421728,58.130299],[-136.377913,58.267222],[-136.279328,58.206976]]],[[[-147.079854,60.200582],[-147.501579,59.948643],[-147.53444,59.850058],[-147.874011,59.784335],[-147.80281,59.937689],[-147.435855,60.09652],[-147.205824,60.271782],[-147.079854,60.200582]]],[[[-147.561825,60.578491],[-147.616594,60.370367],[-147.758995,60.156767],[-147.956165,60.227967],[-147.791856,60.474429],[-147.561825,60.578491]]],[[[-147.786379,70.245291],[-147.682318,70.201475],[-147.162008,70.15766],[-146.888161,70.185044],[-146.510252,70.185044],[-146.099482,70.146706],[-145.858496,70.168614],[-145.622988,70.08646],[-145.195787,69.993352],[-144.620708,69.971444],[-144.461877,70.026213],[-144.078491,70.059075],[-143.914183,70.130275],[-143.497935,70.141229],[-143.503412,70.091936],[-143.25695,70.119321],[-142.747594,70.042644],[-142.402547,69.916674],[-142.079408,69.856428],[-142.008207,69.801659],[-141.712453,69.790705],[-141.433129,69.697597],[-141.378359,69.63735],[-141.208574,69.686643],[-141.00045,69.648304],[-141.00045,60.304644],[-140.53491,60.22249],[-140.474664,60.310121],[-139.987216,60.184151],[-139.696939,60.342983],[-139.088998,60.359413],[-139.198537,60.091043],[-139.045183,59.997935],[-138.700135,59.910304],[-138.623458,59.767904],[-137.604747,59.242118],[-137.445916,58.908024],[-137.265177,59.001132],[-136.827022,59.159963],[-136.580559,59.16544],[-136.465544,59.285933],[-136.476498,59.466672],[-136.301236,59.466672],[-136.25742,59.625503],[-135.945234,59.663842],[-135.479694,59.800766],[-135.025108,59.565257],[-135.068924,59.422857],[-134.959385,59.280456],[-134.701969,59.247595],[-134.378829,59.033994],[-134.400737,58.973748],[-134.25286,58.858732],[-133.842089,58.727285],[-133.173903,58.152206],[-133.075318,57.998852],[-132.867194,57.845498],[-132.560485,57.505928],[-132.253777,57.21565],[-132.368792,57.095157],[-132.05113,57.051341],[-132.127807,56.876079],[-131.870391,56.804879],[-131.837529,56.602232],[-131.580113,56.613186],[-131.087188,56.405062],[-130.78048,56.366724],[-130.621648,56.268139],[-130.468294,56.240754],[-130.424478,56.142169],[-130.101339,56.114785],[-130.002754,55.994292],[-130.150631,55.769737],[-130.128724,55.583521],[-129.986323,55.276813],[-130.095862,55.200136],[-130.336847,54.920812],[-130.687372,54.718165],[-130.785957,54.822227],[-130.917403,54.789365],[-131.010511,54.997489],[-130.983126,55.08512],[-131.092665,55.189182],[-130.862634,55.298721],[-130.928357,55.337059],[-131.158389,55.200136],[-131.284358,55.287767],[-131.426759,55.238474],[-131.843006,55.457552],[-131.700606,55.698537],[-131.963499,55.616383],[-131.974453,55.49589],[-132.182576,55.588998],[-132.226392,55.704014],[-132.083991,55.829984],[-132.127807,55.955953],[-132.324977,55.851892],[-132.522147,56.076446],[-132.642639,56.032631],[-132.719317,56.218847],[-132.527624,56.339339],[-132.341408,56.339339],[-132.396177,56.487217],[-132.297592,56.67891],[-132.450946,56.673433],[-132.768609,56.837741],[-132.993164,57.034911],[-133.51895,57.177311],[-133.507996,57.577128],[-133.677781,57.62642],[-133.639442,57.790728],[-133.814705,57.834544],[-134.072121,58.053622],[-134.143321,58.168637],[-134.586953,58.206976],[-135.074401,58.502731],[-135.282525,59.192825],[-135.38111,59.033994],[-135.337294,58.891593],[-135.140124,58.617746],[-135.189417,58.573931],[-135.05797,58.349376],[-135.085355,58.201499],[-135.277048,58.234361],[-135.430402,58.398669],[-135.633049,58.426053],[-135.91785,58.382238],[-135.912373,58.617746],[-136.087635,58.814916],[-136.246466,58.75467],[-136.876314,58.962794],[-136.931084,58.902547],[-136.586036,58.836824],[-136.317666,58.672516],[-136.213604,58.667039],[-136.180743,58.535592],[-136.043819,58.382238],[-136.388867,58.294607],[-136.591513,58.349376],[-136.59699,58.212453],[-136.859883,58.316515],[-136.947514,58.393192],[-137.111823,58.393192],[-137.566409,58.590362],[-137.900502,58.765624],[-137.933364,58.869686],[-138.11958,59.02304],[-138.634412,59.132579],[-138.919213,59.247595],[-139.417615,59.379041],[-139.746231,59.505011],[-139.718846,59.641934],[-139.625738,59.598119],[-139.5162,59.68575],[-139.625738,59.88292],[-139.488815,59.992458],[-139.554538,60.041751],[-139.801,59.833627],[-140.315833,59.696704],[-140.92925,59.745996],[-141.444083,59.871966],[-141.46599,59.970551],[-141.706976,59.948643],[-141.964392,60.019843],[-142.539471,60.085566],[-142.873564,60.091043],[-143.623905,60.036274],[-143.892275,59.997935],[-144.231845,60.140336],[-144.65357,60.206059],[-144.785016,60.29369],[-144.834309,60.441568],[-145.124586,60.430614],[-145.223171,60.299167],[-145.738004,60.474429],[-145.820158,60.551106],[-146.351421,60.408706],[-146.608837,60.238921],[-146.718376,60.397752],[-146.608837,60.485383],[-146.455483,60.463475],[-145.951604,60.578491],[-146.017328,60.666122],[-146.252836,60.622307],[-146.345944,60.737322],[-146.565022,60.753753],[-146.784099,61.044031],[-146.866253,60.972831],[-147.172962,60.934492],[-147.271547,60.972831],[-147.375609,60.879723],[-147.758995,60.912584],[-147.775426,60.808523],[-148.032842,60.781138],[-148.153334,60.819476],[-148.065703,61.005692],[-148.175242,61.000215],[-148.350504,60.803046],[-148.109519,60.737322],[-148.087611,60.594922],[-147.939734,60.441568],[-148.027365,60.277259],[-148.219058,60.332029],[-148.273827,60.249875],[-148.087611,60.217013],[-147.983549,59.997935],[-148.251919,59.95412],[-148.399797,59.997935],[-148.635305,59.937689],[-148.755798,59.986981],[-149.067984,59.981505],[-149.05703,60.063659],[-149.204907,60.008889],[-149.287061,59.904827],[-149.418508,59.997935],[-149.582816,59.866489],[-149.511616,59.806242],[-149.741647,59.729565],[-149.949771,59.718611],[-150.031925,59.61455],[-150.25648,59.521442],[-150.409834,59.554303],[-150.579619,59.444764],[-150.716543,59.450241],[-151.001343,59.225687],[-151.308052,59.209256],[-151.406637,59.280456],[-151.592853,59.159963],[-151.976239,59.253071],[-151.888608,59.422857],[-151.636669,59.483103],[-151.47236,59.472149],[-151.423068,59.537872],[-151.127313,59.669319],[-151.116359,59.778858],[-151.505222,59.63098],[-151.828361,59.718611],[-151.8667,59.778858],[-151.702392,60.030797],[-151.423068,60.211536],[-151.379252,60.359413],[-151.297098,60.386798],[-151.264237,60.545629],[-151.406637,60.720892],[-151.06159,60.786615],[-150.404357,61.038554],[-150.245526,60.939969],[-150.042879,60.912584],[-149.741647,61.016646],[-150.075741,61.15357],[-150.207187,61.257632],[-150.47008,61.246678],[-150.656296,61.29597],[-150.711066,61.252155],[-151.023251,61.180954],[-151.165652,61.044031],[-151.477837,61.011169],[-151.800977,60.852338],[-151.833838,60.748276],[-152.080301,60.693507],[-152.13507,60.578491],[-152.310332,60.507291],[-152.392486,60.304644],[-152.732057,60.173197],[-152.567748,60.069136],[-152.704672,59.915781],[-153.022334,59.888397],[-153.049719,59.691227],[-153.345474,59.620026],[-153.438582,59.702181],[-153.586459,59.548826],[-153.761721,59.543349],[-153.72886,59.433811],[-154.117723,59.368087],[-154.1944,59.066856],[-153.750768,59.050425],[-153.400243,58.968271],[-153.301658,58.869686],[-153.444059,58.710854],[-153.679567,58.612269],[-153.898645,58.606793],[-153.920553,58.519161],[-154.062953,58.4863],[-153.99723,58.376761],[-154.145107,58.212453],[-154.46277,58.059098],[-154.643509,58.059098],[-154.818771,58.004329],[-154.988556,58.015283],[-155.120003,57.955037],[-155.081664,57.872883],[-155.328126,57.829067],[-155.377419,57.708574],[-155.547204,57.785251],[-155.73342,57.549743],[-156.045606,57.566174],[-156.023698,57.440204],[-156.209914,57.473066],[-156.34136,57.418296],[-156.34136,57.248511],[-156.549484,56.985618],[-156.883577,56.952757],[-157.157424,56.832264],[-157.20124,56.766541],[-157.376502,56.859649],[-157.672257,56.607709],[-157.754411,56.67891],[-157.918719,56.657002],[-157.957058,56.514601],[-158.126843,56.459832],[-158.32949,56.48174],[-158.488321,56.339339],[-158.208997,56.295524],[-158.510229,55.977861],[-159.375585,55.873799],[-159.616571,55.594475],[-159.676817,55.654722],[-159.643955,55.829984],[-159.813741,55.857368],[-160.027341,55.791645],[-160.060203,55.720445],[-160.394296,55.605429],[-160.536697,55.473983],[-160.580512,55.567091],[-160.668143,55.457552],[-160.865313,55.528752],[-161.232268,55.358967],[-161.506115,55.364444],[-161.467776,55.49589],[-161.588269,55.62186],[-161.697808,55.517798],[-161.686854,55.408259],[-162.053809,55.074166],[-162.179779,55.15632],[-162.218117,55.03035],[-162.470057,55.052258],[-162.508395,55.249428],[-162.661749,55.293244],[-162.716519,55.222043],[-162.579595,55.134412],[-162.645319,54.997489],[-162.847965,54.926289],[-163.00132,55.079643],[-163.187536,55.090597],[-163.220397,55.03035],[-163.034181,54.942719],[-163.373752,54.800319],[-163.14372,54.76198],[-163.138243,54.696257],[-163.329936,54.74555],[-163.587352,54.614103],[-164.085754,54.61958],[-164.332216,54.531949],[-164.354124,54.466226],[-164.638925,54.389548],[-164.847049,54.416933],[-164.918249,54.603149],[-164.710125,54.663395],[-164.551294,54.88795],[-164.34317,54.893427],[-163.894061,55.041304],[-163.532583,55.046781],[-163.39566,54.904381],[-163.291598,55.008443],[-163.313505,55.128935],[-163.105382,55.183705],[-162.880827,55.183705],[-162.579595,55.446598],[-162.245502,55.682106],[-161.807347,55.89023],[-161.292514,55.983338],[-161.078914,55.939523],[-160.87079,55.999769],[-160.816021,55.912138],[-160.931036,55.813553],[-160.805067,55.736876],[-160.766728,55.857368],[-160.509312,55.868322],[-160.438112,55.791645],[-160.27928,55.76426],[-160.273803,55.857368],[-160.536697,55.939523],[-160.558604,55.994292],[-160.383342,56.251708],[-160.147834,56.399586],[-159.830171,56.541986],[-159.326293,56.667956],[-158.959338,56.848695],[-158.784076,56.782971],[-158.641675,56.810356],[-158.701922,56.925372],[-158.658106,57.034911],[-158.378782,57.264942],[-157.995396,57.41282],[-157.688688,57.609989],[-157.705118,57.719528],[-157.458656,58.497254],[-157.07527,58.705377],[-157.119086,58.869686],[-158.039212,58.634177],[-158.32949,58.661562],[-158.40069,58.760147],[-158.564998,58.803962],[-158.619768,58.913501],[-158.767645,58.864209],[-158.860753,58.694424],[-158.701922,58.480823],[-158.893615,58.387715],[-159.0634,58.420577],[-159.392016,58.760147],[-159.616571,58.929932],[-159.731586,58.929932],[-159.808264,58.803962],[-159.906848,58.782055],[-160.054726,58.886116],[-160.235465,58.902547],[-160.317619,59.072332],[-160.854359,58.88064],[-161.33633,58.743716],[-161.374669,58.667039],[-161.752577,58.552023],[-161.938793,58.656085],[-161.769008,58.776578],[-161.829255,59.061379],[-161.955224,59.36261],[-161.703285,59.48858],[-161.911409,59.740519],[-162.092148,59.88292],[-162.234548,60.091043],[-162.448149,60.178674],[-162.502918,59.997935],[-162.760334,59.959597],[-163.171105,59.844581],[-163.66403,59.795289],[-163.9324,59.806242],[-164.162431,59.866489],[-164.189816,60.02532],[-164.386986,60.074613],[-164.699171,60.29369],[-164.962064,60.337506],[-165.268773,60.578491],[-165.060649,60.68803],[-165.016834,60.890677],[-165.175665,60.846861],[-165.197573,60.972831],[-165.120896,61.076893],[-165.323543,61.170001],[-165.34545,61.071416],[-165.591913,61.109754],[-165.624774,61.279539],[-165.816467,61.301447],[-165.920529,61.416463],[-165.915052,61.558863],[-166.106745,61.49314],[-166.139607,61.630064],[-165.904098,61.662925],[-166.095791,61.81628],[-165.756221,61.827233],[-165.756221,62.013449],[-165.674067,62.139419],[-165.044219,62.539236],[-164.912772,62.659728],[-164.819664,62.637821],[-164.874433,62.807606],[-164.633448,63.097884],[-164.425324,63.212899],[-164.036462,63.262192],[-163.73523,63.212899],[-163.313505,63.037637],[-163.039658,63.059545],[-162.661749,63.22933],[-162.272887,63.486746],[-162.075717,63.514131],[-162.026424,63.448408],[-161.555408,63.448408],[-161.13916,63.503177],[-160.766728,63.771547],[-160.766728,63.837271],[-160.952944,64.08921],[-160.974852,64.237087],[-161.26513,64.395918],[-161.374669,64.532842],[-161.078914,64.494503],[-160.79959,64.609519],[-160.783159,64.719058],[-161.144637,64.921705],[-161.413007,64.762873],[-161.664946,64.790258],[-161.900455,64.702627],[-162.168825,64.680719],[-162.234548,64.620473],[-162.541257,64.532842],[-162.634365,64.384965],[-162.787719,64.324718],[-162.858919,64.49998],[-163.045135,64.538319],[-163.176582,64.401395],[-163.253259,64.467119],[-163.598306,64.565704],[-164.304832,64.560227],[-164.80871,64.450688],[-165.000403,64.434257],[-165.411174,64.49998],[-166.188899,64.576658],[-166.391546,64.636904],[-166.484654,64.735489],[-166.413454,64.872412],[-166.692778,64.987428],[-166.638008,65.113398],[-166.462746,65.179121],[-166.517516,65.337952],[-166.796839,65.337952],[-167.026871,65.381768],[-167.47598,65.414629],[-167.711489,65.496784],[-168.072967,65.578938],[-168.105828,65.682999],[-167.541703,65.819923],[-166.829701,66.049954],[-166.3313,66.186878],[-166.046499,66.110201],[-165.756221,66.09377],[-165.690498,66.203309],[-165.86576,66.21974],[-165.88219,66.312848],[-165.186619,66.466202],[-164.403417,66.581218],[-163.981692,66.592172],[-163.751661,66.553833],[-163.872153,66.389525],[-163.828338,66.274509],[-163.915969,66.192355],[-163.768091,66.060908],[-163.494244,66.082816],[-163.149197,66.060908],[-162.749381,66.088293],[-162.634365,66.039001],[-162.371472,66.028047],[-162.14144,66.077339],[-161.840208,66.02257],[-161.549931,66.241647],[-161.341807,66.252601],[-161.199406,66.208786],[-161.128206,66.334755],[-161.528023,66.395002],[-161.911409,66.345709],[-161.87307,66.510017],[-162.174302,66.68528],[-162.502918,66.740049],[-162.601503,66.89888],[-162.344087,66.937219],[-162.015471,66.778388],[-162.075717,66.652418],[-161.916886,66.553833],[-161.571838,66.438817],[-161.489684,66.55931],[-161.884024,66.718141],[-161.714239,67.002942],[-161.851162,67.052235],[-162.240025,66.991988],[-162.639842,67.008419],[-162.700088,67.057712],[-162.902735,67.008419],[-163.740707,67.128912],[-163.757138,67.254881],[-164.009077,67.534205],[-164.211724,67.638267],[-164.534863,67.725898],[-165.192096,67.966884],[-165.493328,68.059992],[-165.794559,68.081899],[-166.243668,68.246208],[-166.681824,68.339316],[-166.703731,68.372177],[-166.375115,68.42147],[-166.227238,68.574824],[-166.216284,68.881533],[-165.329019,68.859625],[-164.255539,68.930825],[-163.976215,68.985595],[-163.532583,69.138949],[-163.110859,69.374457],[-163.023228,69.609966],[-162.842489,69.812613],[-162.470057,69.982398],[-162.311225,70.108367],[-161.851162,70.311014],[-161.779962,70.256245],[-161.396576,70.239814],[-160.837928,70.343876],[-160.487404,70.453415],[-159.649432,70.792985],[-159.33177,70.809416],[-159.298908,70.760123],[-158.975769,70.798462],[-158.658106,70.787508],[-158.033735,70.831323],[-157.420318,70.979201],[-156.812377,71.285909],[-156.565915,71.351633],[-156.522099,71.296863],[-155.585543,71.170894],[-155.508865,71.083263],[-155.832005,70.968247],[-155.979882,70.96277],[-155.974405,70.809416],[-155.503388,70.858708],[-155.476004,70.940862],[-155.262403,71.017539],[-155.191203,70.973724],[-155.032372,71.148986],[-154.566832,70.990155],[-154.643509,70.869662],[-154.353231,70.8368],[-154.183446,70.7656],[-153.931507,70.880616],[-153.487874,70.886093],[-153.235935,70.924431],[-152.589656,70.886093],[-152.26104,70.842277],[-152.419871,70.606769],[-151.817408,70.546523],[-151.773592,70.486276],[-151.187559,70.382214],[-151.182082,70.431507],[-150.760358,70.49723],[-150.355064,70.491753],[-150.349588,70.436984],[-150.114079,70.431507],[-149.867617,70.508184],[-149.462323,70.519138],[-149.177522,70.486276],[-148.78866,70.404122],[-148.607921,70.420553],[-148.350504,70.305537],[-148.202627,70.349353],[-147.961642,70.316491],[-147.786379,70.245291]]],[[[-152.94018,58.026237],[-152.945657,57.982421],[-153.290705,58.048145],[-153.044242,58.305561],[-152.819688,58.327469],[-152.666333,58.562977],[-152.496548,58.354853],[-152.354148,58.426053],[-152.080301,58.311038],[-152.080301,58.152206],[-152.480117,58.130299],[-152.655379,58.059098],[-152.94018,58.026237]]],[[[-153.958891,57.538789],[-153.67409,57.670236],[-153.931507,57.69762],[-153.936983,57.812636],[-153.723383,57.889313],[-153.570028,57.834544],[-153.548121,57.719528],[-153.46049,57.796205],[-153.455013,57.96599],[-153.268797,57.889313],[-153.235935,57.998852],[-153.071627,57.933129],[-152.874457,57.933129],[-152.721103,57.993375],[-152.469163,57.889313],[-152.469163,57.599035],[-152.151501,57.620943],[-152.359625,57.42925],[-152.74301,57.505928],[-152.60061,57.379958],[-152.710149,57.275896],[-152.907319,57.325188],[-152.912796,57.128019],[-153.214027,57.073249],[-153.312612,56.991095],[-153.498828,57.067772],[-153.695998,56.859649],[-153.849352,56.837741],[-154.013661,56.744633],[-154.073907,56.969187],[-154.303938,56.848695],[-154.314892,56.919895],[-154.523016,56.991095],[-154.539447,57.193742],[-154.742094,57.275896],[-154.627078,57.511404],[-154.227261,57.659282],[-153.980799,57.648328],[-153.958891,57.538789]]],[[[-154.53397,56.602232],[-154.742094,56.399586],[-154.807817,56.432447],[-154.53397,56.602232]]],[[[-155.634835,55.923092],[-155.476004,55.912138],[-155.530773,55.704014],[-155.793666,55.731399],[-155.837482,55.802599],[-155.634835,55.923092]]],[[[-159.890418,55.28229],[-159.950664,55.068689],[-160.257373,54.893427],[-160.109495,55.161797],[-160.005433,55.134412],[-159.890418,55.28229]]],[[[-160.520266,55.358967],[-160.33405,55.358967],[-160.339527,55.249428],[-160.525743,55.128935],[-160.690051,55.211089],[-160.794113,55.134412],[-160.854359,55.320628],[-160.79959,55.380875],[-160.520266,55.358967]]],[[[-162.256456,54.981058],[-162.234548,54.893427],[-162.349564,54.838658],[-162.437195,54.931766],[-162.256456,54.981058]]],[[[-162.415287,63.634624],[-162.563165,63.536039],[-162.612457,63.62367],[-162.415287,63.634624]]],[[[-162.80415,54.488133],[-162.590549,54.449795],[-162.612457,54.367641],[-162.782242,54.373118],[-162.80415,54.488133]]],[[[-165.548097,54.29644],[-165.476897,54.181425],[-165.630251,54.132132],[-165.685021,54.252625],[-165.548097,54.29644]]],[[[-165.73979,54.15404],[-166.046499,54.044501],[-166.112222,54.121178],[-165.980775,54.219763],[-165.73979,54.15404]]],[[[-166.364161,60.359413],[-166.13413,60.397752],[-166.084837,60.326552],[-165.88219,60.342983],[-165.685021,60.277259],[-165.646682,59.992458],[-165.750744,59.89935],[-166.00816,59.844581],[-166.062929,59.745996],[-166.440838,59.855535],[-166.6161,59.850058],[-166.994009,59.992458],[-167.125456,59.992458],[-167.344534,60.074613],[-167.421211,60.206059],[-167.311672,60.238921],[-166.93924,60.206059],[-166.763978,60.310121],[-166.577762,60.321075],[-166.495608,60.392275],[-166.364161,60.359413]]],[[[-166.375115,54.01164],[-166.210807,53.934962],[-166.5449,53.748746],[-166.539423,53.715885],[-166.117699,53.852808],[-166.112222,53.776131],[-166.282007,53.683023],[-166.555854,53.622777],[-166.583239,53.529669],[-166.878994,53.431084],[-167.13641,53.425607],[-167.306195,53.332499],[-167.623857,53.250345],[-167.793643,53.337976],[-167.459549,53.442038],[-167.355487,53.425607],[-167.103548,53.513238],[-167.163794,53.611823],[-167.021394,53.715885],[-166.807793,53.666592],[-166.785886,53.732316],[-167.015917,53.754223],[-167.141887,53.825424],[-167.032348,53.945916],[-166.643485,54.017116],[-166.561331,53.880193],[-166.375115,54.01164]]],[[[-168.790446,53.157237],[-168.40706,53.34893],[-168.385152,53.431084],[-168.237275,53.524192],[-168.007243,53.568007],[-167.886751,53.518715],[-167.842935,53.387268],[-168.270136,53.244868],[-168.500168,53.036744],[-168.686384,52.965544],[-168.790446,53.157237]]],[[[-169.74891,52.894344],[-169.705095,52.795759],[-169.962511,52.790282],[-169.989896,52.856005],[-169.74891,52.894344]]],[[[-170.148727,57.221127],[-170.28565,57.128019],[-170.313035,57.221127],[-170.148727,57.221127]]],[[[-170.669036,52.697174],[-170.603313,52.604066],[-170.789529,52.538343],[-170.816914,52.636928],[-170.669036,52.697174]]],[[[-171.742517,63.716778],[-170.94836,63.5689],[-170.488297,63.69487],[-170.280174,63.683916],[-170.093958,63.612716],[-170.044665,63.492223],[-169.644848,63.4265],[-169.518879,63.366254],[-168.99857,63.338869],[-168.686384,63.295053],[-168.856169,63.147176],[-169.108108,63.180038],[-169.376478,63.152653],[-169.513402,63.08693],[-169.639372,62.939052],[-169.831064,63.075976],[-170.055619,63.169084],[-170.263743,63.180038],[-170.362328,63.2841],[-170.866206,63.415546],[-171.101715,63.421023],[-171.463193,63.306007],[-171.73704,63.366254],[-171.852055,63.486746],[-171.742517,63.716778]]],[[[-172.432611,52.390465],[-172.41618,52.275449],[-172.607873,52.253542],[-172.569535,52.352127],[-172.432611,52.390465]]],[[[-173.626584,52.14948],[-173.495138,52.105664],[-173.122706,52.111141],[-173.106275,52.07828],[-173.549907,52.028987],[-173.626584,52.14948]]],[[[-174.322156,52.280926],[-174.327632,52.379511],[-174.185232,52.41785],[-173.982585,52.319265],[-174.059262,52.226157],[-174.179755,52.231634],[-174.141417,52.127572],[-174.333109,52.116618],[-174.738403,52.007079],[-174.968435,52.039941],[-174.902711,52.116618],[-174.656249,52.105664],[-174.322156,52.280926]]],[[[-176.469116,51.853725],[-176.288377,51.870156],[-176.288377,51.744186],[-176.518409,51.760617],[-176.80321,51.61274],[-176.912748,51.80991],[-176.792256,51.815386],[-176.775825,51.963264],[-176.627947,51.968741],[-176.627947,51.859202],[-176.469116,51.853725]]],[[[-177.153734,51.946833],[-177.044195,51.897541],[-177.120872,51.727755],[-177.274226,51.678463],[-177.279703,51.782525],[-177.153734,51.946833]]],[[[-178.123152,51.919448],[-177.953367,51.913971],[-177.800013,51.793479],[-177.964321,51.651078],[-178.123152,51.919448]]],[[[-187.107557,52.992929],[-187.293773,52.927205],[-187.304726,52.823143],[-188.90491,52.762897],[-188.642017,52.927205],[-188.642017,53.003883],[-187.107557,52.992929]]]]}}, +{"type":"Feature","id":"04","properties":{"name":"Arizona","density":57.05},"geometry":{"type":"Polygon","coordinates":[[[-109.042503,37.000263],[-109.04798,31.331629],[-111.074448,31.331629],[-112.246513,31.704061],[-114.815198,32.492741],[-114.72209,32.717295],[-114.524921,32.755634],[-114.470151,32.843265],[-114.524921,33.029481],[-114.661844,33.034958],[-114.727567,33.40739],[-114.524921,33.54979],[-114.497536,33.697668],[-114.535874,33.933176],[-114.415382,34.108438],[-114.256551,34.174162],[-114.136058,34.305608],[-114.333228,34.448009],[-114.470151,34.710902],[-114.634459,34.87521],[-114.634459,35.00118],[-114.574213,35.138103],[-114.596121,35.324319],[-114.678275,35.516012],[-114.738521,36.102045],[-114.371566,36.140383],[-114.251074,36.01989],[-114.152489,36.025367],[-114.048427,36.195153],[-114.048427,37.000263],[-110.499369,37.00574],[-109.042503,37.000263]]]}}, +{"type":"Feature","id":"05","properties":{"name":"Arkansas","density":56.43},"geometry":{"type":"Polygon","coordinates":[[[-94.473842,36.501861],[-90.152536,36.496384],[-90.064905,36.304691],[-90.218259,36.184199],[-90.377091,35.997983],[-89.730812,35.997983],[-89.763673,35.811767],[-89.911551,35.756997],[-89.944412,35.603643],[-90.130628,35.439335],[-90.114197,35.198349],[-90.212782,35.023087],[-90.311367,34.995703],[-90.251121,34.908072],[-90.409952,34.831394],[-90.481152,34.661609],[-90.585214,34.617794],[-90.568783,34.420624],[-90.749522,34.365854],[-90.744046,34.300131],[-90.952169,34.135823],[-90.891923,34.026284],[-91.072662,33.867453],[-91.231493,33.560744],[-91.056231,33.429298],[-91.143862,33.347144],[-91.089093,33.13902],[-91.16577,33.002096],[-93.608485,33.018527],[-94.041164,33.018527],[-94.041164,33.54979],[-94.183564,33.593606],[-94.380734,33.544313],[-94.484796,33.637421],[-94.430026,35.395519],[-94.616242,36.501861],[-94.473842,36.501861]]]}}, +{"type":"Feature","id":"06","properties":{"name":"California","density":241.7},"geometry":{"type":"Polygon","coordinates":[[[-123.233256,42.006186],[-122.378853,42.011663],[-121.037003,41.995232],[-120.001861,41.995232],[-119.996384,40.264519],[-120.001861,38.999346],[-118.71478,38.101128],[-117.498899,37.21934],[-116.540435,36.501861],[-115.85034,35.970598],[-114.634459,35.00118],[-114.634459,34.87521],[-114.470151,34.710902],[-114.333228,34.448009],[-114.136058,34.305608],[-114.256551,34.174162],[-114.415382,34.108438],[-114.535874,33.933176],[-114.497536,33.697668],[-114.524921,33.54979],[-114.727567,33.40739],[-114.661844,33.034958],[-114.524921,33.029481],[-114.470151,32.843265],[-114.524921,32.755634],[-114.72209,32.717295],[-116.04751,32.624187],[-117.126467,32.536556],[-117.24696,32.668003],[-117.252437,32.876127],[-117.329114,33.122589],[-117.471515,33.297851],[-117.7837,33.538836],[-118.183517,33.763391],[-118.260194,33.703145],[-118.413548,33.741483],[-118.391641,33.840068],[-118.566903,34.042715],[-118.802411,33.998899],[-119.218659,34.146777],[-119.278905,34.26727],[-119.558229,34.415147],[-119.875891,34.40967],[-120.138784,34.475393],[-120.472878,34.448009],[-120.64814,34.579455],[-120.609801,34.858779],[-120.670048,34.902595],[-120.631709,35.099764],[-120.894602,35.247642],[-120.905556,35.450289],[-121.004141,35.461243],[-121.168449,35.636505],[-121.283465,35.674843],[-121.332757,35.784382],[-121.716143,36.195153],[-121.896882,36.315645],[-121.935221,36.638785],[-121.858544,36.6114],[-121.787344,36.803093],[-121.929744,36.978355],[-122.105006,36.956447],[-122.335038,37.115279],[-122.417192,37.241248],[-122.400761,37.361741],[-122.515777,37.520572],[-122.515777,37.783465],[-122.329561,37.783465],[-122.406238,38.15042],[-122.488392,38.112082],[-122.504823,37.931343],[-122.701993,37.893004],[-122.937501,38.029928],[-122.97584,38.265436],[-123.129194,38.451652],[-123.331841,38.566668],[-123.44138,38.698114],[-123.737134,38.95553],[-123.687842,39.032208],[-123.824765,39.366301],[-123.764519,39.552517],[-123.85215,39.831841],[-124.109566,40.105688],[-124.361506,40.259042],[-124.410798,40.439781],[-124.158859,40.877937],[-124.109566,41.025814],[-124.158859,41.14083],[-124.065751,41.442061],[-124.147905,41.715908],[-124.257444,41.781632],[-124.213628,42.000709],[-123.233256,42.006186]]]}}, +{"type":"Feature","id":"08","properties":{"name":"Colorado","density":49.33},"geometry":{"type":"Polygon","coordinates":[[[-107.919731,41.003906],[-105.728954,40.998429],[-104.053011,41.003906],[-102.053927,41.003906],[-102.053927,40.001626],[-102.042974,36.994786],[-103.001438,37.000263],[-104.337812,36.994786],[-106.868158,36.994786],[-107.421329,37.000263],[-109.042503,37.000263],[-109.042503,38.166851],[-109.058934,38.27639],[-109.053457,39.125316],[-109.04798,40.998429],[-107.919731,41.003906]]]}}, +{"type":"Feature","id":"09","properties":{"name":"Connecticut","density":739.1},"geometry":{"type":"Polygon","coordinates":[[[-73.053528,42.039048],[-71.799309,42.022617],[-71.799309,42.006186],[-71.799309,41.414677],[-71.859555,41.321569],[-71.947186,41.338],[-72.385341,41.261322],[-72.905651,41.28323],[-73.130205,41.146307],[-73.371191,41.102491],[-73.655992,40.987475],[-73.727192,41.102491],[-73.48073,41.21203],[-73.55193,41.294184],[-73.486206,42.050002],[-73.053528,42.039048]]]}}, +{"type":"Feature","id":"10","properties":{"name":"Delaware","density":464.3},"geometry":{"type":"Polygon","coordinates":[[[-75.414089,39.804456],[-75.507197,39.683964],[-75.611259,39.61824],[-75.589352,39.459409],[-75.441474,39.311532],[-75.403136,39.065069],[-75.189535,38.807653],[-75.09095,38.796699],[-75.047134,38.451652],[-75.693413,38.462606],[-75.786521,39.722302],[-75.616736,39.831841],[-75.414089,39.804456]]]}}, +{"type":"Feature","id":"11","properties":{"name":"District of Columbia","density":10065},"geometry":{"type":"Polygon","coordinates":[[[-77.035264,38.993869],[-76.909294,38.895284],[-77.040741,38.791222],[-77.117418,38.933623],[-77.035264,38.993869]]]}}, +{"type":"Feature","id":"12","properties":{"name":"Florida","density":353.4},"geometry":{"type":"Polygon","coordinates":[[[-85.497137,30.997536],[-85.004212,31.003013],[-84.867289,30.712735],[-83.498053,30.647012],[-82.216449,30.570335],[-82.167157,30.356734],[-82.046664,30.362211],[-82.002849,30.564858],[-82.041187,30.751074],[-81.948079,30.827751],[-81.718048,30.745597],[-81.444201,30.707258],[-81.383954,30.27458],[-81.257985,29.787132],[-80.967707,29.14633],[-80.524075,28.461713],[-80.589798,28.41242],[-80.56789,28.094758],[-80.381674,27.738757],[-80.091397,27.021277],[-80.03115,26.796723],[-80.036627,26.566691],[-80.146166,25.739673],[-80.239274,25.723243],[-80.337859,25.465826],[-80.304997,25.383672],[-80.49669,25.197456],[-80.573367,25.241272],[-80.759583,25.164595],[-81.077246,25.120779],[-81.170354,25.224841],[-81.126538,25.378195],[-81.351093,25.821827],[-81.526355,25.903982],[-81.679709,25.843735],[-81.800202,26.090198],[-81.833064,26.292844],[-82.041187,26.517399],[-82.09048,26.665276],[-82.057618,26.878877],[-82.172634,26.917216],[-82.145249,26.791246],[-82.249311,26.758384],[-82.566974,27.300601],[-82.692943,27.437525],[-82.391711,27.837342],[-82.588881,27.815434],[-82.720328,27.689464],[-82.851774,27.886634],[-82.676512,28.434328],[-82.643651,28.888914],[-82.764143,28.998453],[-82.802482,29.14633],[-82.994175,29.179192],[-83.218729,29.420177],[-83.399469,29.518762],[-83.410422,29.66664],[-83.536392,29.721409],[-83.640454,29.885717],[-84.02384,30.104795],[-84.357933,30.055502],[-84.341502,29.902148],[-84.451041,29.929533],[-84.867289,29.743317],[-85.310921,29.699501],[-85.299967,29.80904],[-85.404029,29.940487],[-85.924338,30.236241],[-86.29677,30.362211],[-86.630863,30.395073],[-86.910187,30.373165],[-87.518128,30.280057],[-87.37025,30.427934],[-87.446927,30.510088],[-87.408589,30.674397],[-87.633143,30.86609],[-87.600282,30.997536],[-85.497137,30.997536]]]}}, +{"type":"Feature","id":"13","properties":{"name":"Georgia","density":169.5},"geometry":{"type":"Polygon","coordinates":[[[-83.109191,35.00118],[-83.322791,34.787579],[-83.339222,34.683517],[-83.005129,34.469916],[-82.901067,34.486347],[-82.747713,34.26727],[-82.714851,34.152254],[-82.55602,33.94413],[-82.325988,33.81816],[-82.194542,33.631944],[-81.926172,33.462159],[-81.937125,33.347144],[-81.761863,33.160928],[-81.493493,33.007573],[-81.42777,32.843265],[-81.416816,32.629664],[-81.279893,32.558464],[-81.121061,32.290094],[-81.115584,32.120309],[-80.885553,32.032678],[-81.132015,31.693108],[-81.175831,31.517845],[-81.279893,31.364491],[-81.290846,31.20566],[-81.400385,31.13446],[-81.444201,30.707258],[-81.718048,30.745597],[-81.948079,30.827751],[-82.041187,30.751074],[-82.002849,30.564858],[-82.046664,30.362211],[-82.167157,30.356734],[-82.216449,30.570335],[-83.498053,30.647012],[-84.867289,30.712735],[-85.004212,31.003013],[-85.113751,31.27686],[-85.042551,31.539753],[-85.141136,31.840985],[-85.053504,32.01077],[-85.058981,32.13674],[-84.889196,32.262709],[-85.004212,32.322956],[-84.960397,32.421541],[-85.069935,32.580372],[-85.184951,32.859696],[-85.431413,34.124869],[-85.606675,34.984749],[-84.319594,34.990226],[-83.618546,34.984749],[-83.109191,35.00118]]]}}, +{"type":"Feature","id":"15","properties":{"name":"Hawaii","density":214.1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.634835,18.948267],[-155.881297,19.035898],[-155.919636,19.123529],[-155.886774,19.348084],[-156.062036,19.73147],[-155.925113,19.857439],[-155.826528,20.032702],[-155.897728,20.147717],[-155.87582,20.26821],[-155.596496,20.12581],[-155.284311,20.021748],[-155.092618,19.868393],[-155.092618,19.736947],[-154.807817,19.523346],[-154.983079,19.348084],[-155.295265,19.26593],[-155.514342,19.134483],[-155.634835,18.948267]]],[[[-156.587823,21.029505],[-156.472807,20.892581],[-156.324929,20.952827],[-156.00179,20.793996],[-156.051082,20.651596],[-156.379699,20.580396],[-156.445422,20.60778],[-156.461853,20.783042],[-156.631638,20.821381],[-156.697361,20.919966],[-156.587823,21.029505]]],[[[-156.982162,21.210244],[-157.080747,21.106182],[-157.310779,21.106182],[-157.239579,21.221198],[-156.982162,21.210244]]],[[[-157.951581,21.697691],[-157.842042,21.462183],[-157.896811,21.325259],[-158.110412,21.303352],[-158.252813,21.582676],[-158.126843,21.588153],[-157.951581,21.697691]]],[[[-159.468693,22.228955],[-159.353678,22.218001],[-159.298908,22.113939],[-159.33177,21.966061],[-159.446786,21.872953],[-159.764448,21.987969],[-159.726109,22.152277],[-159.468693,22.228955]]]]}}, +{"type":"Feature","id":"16","properties":{"name":"Idaho","density":19.15},"geometry":{"type":"Polygon","coordinates":[[[-116.04751,49.000239],[-116.04751,47.976051],[-115.724371,47.696727],[-115.718894,47.42288],[-115.527201,47.302388],[-115.324554,47.258572],[-115.302646,47.187372],[-114.930214,46.919002],[-114.886399,46.809463],[-114.623506,46.705401],[-114.612552,46.639678],[-114.322274,46.645155],[-114.464674,46.272723],[-114.492059,46.037214],[-114.387997,45.88386],[-114.568736,45.774321],[-114.497536,45.670259],[-114.546828,45.560721],[-114.333228,45.456659],[-114.086765,45.593582],[-113.98818,45.703121],[-113.807441,45.604536],[-113.834826,45.522382],[-113.736241,45.330689],[-113.571933,45.128042],[-113.45144,45.056842],[-113.456917,44.865149],[-113.341901,44.782995],[-113.133778,44.772041],[-113.002331,44.448902],[-112.887315,44.394132],[-112.783254,44.48724],[-112.471068,44.481763],[-112.241036,44.569394],[-112.104113,44.520102],[-111.868605,44.563917],[-111.819312,44.509148],[-111.616665,44.547487],[-111.386634,44.75561],[-111.227803,44.580348],[-111.047063,44.476286],[-111.047063,42.000709],[-112.164359,41.995232],[-114.04295,41.995232],[-117.027882,42.000709],[-117.027882,43.830007],[-116.896436,44.158624],[-116.97859,44.240778],[-117.170283,44.257209],[-117.241483,44.394132],[-117.038836,44.750133],[-116.934774,44.782995],[-116.830713,44.930872],[-116.847143,45.02398],[-116.732128,45.144473],[-116.671881,45.319735],[-116.463758,45.61549],[-116.545912,45.752413],[-116.78142,45.823614],[-116.918344,45.993399],[-116.92382,46.168661],[-117.055267,46.343923],[-117.038836,46.426077],[-117.044313,47.762451],[-117.033359,49.000239],[-116.04751,49.000239]]]}}, +{"type":"Feature","id":"17","properties":{"name":"Illinois","density":231.5},"geometry":{"type":"Polygon","coordinates":[[[-90.639984,42.510065],[-88.788778,42.493634],[-87.802929,42.493634],[-87.83579,42.301941],[-87.682436,42.077386],[-87.523605,41.710431],[-87.529082,39.34987],[-87.63862,39.169131],[-87.512651,38.95553],[-87.49622,38.780268],[-87.62219,38.637868],[-87.655051,38.506421],[-87.83579,38.292821],[-87.950806,38.27639],[-87.923421,38.15042],[-88.000098,38.101128],[-88.060345,37.865619],[-88.027483,37.799896],[-88.15893,37.657496],[-88.065822,37.482234],[-88.476592,37.389126],[-88.514931,37.285064],[-88.421823,37.153617],[-88.547792,37.071463],[-88.914747,37.224817],[-89.029763,37.213863],[-89.183118,37.038601],[-89.133825,36.983832],[-89.292656,36.994786],[-89.517211,37.279587],[-89.435057,37.34531],[-89.517211,37.537003],[-89.517211,37.690357],[-89.84035,37.903958],[-89.949889,37.88205],[-90.059428,38.013497],[-90.355183,38.216144],[-90.349706,38.374975],[-90.179921,38.632391],[-90.207305,38.725499],[-90.10872,38.845992],[-90.251121,38.917192],[-90.470199,38.961007],[-90.585214,38.867899],[-90.661891,38.928146],[-90.727615,39.256762],[-91.061708,39.470363],[-91.368417,39.727779],[-91.494386,40.034488],[-91.50534,40.237135],[-91.417709,40.379535],[-91.401278,40.560274],[-91.121954,40.669813],[-91.09457,40.823167],[-90.963123,40.921752],[-90.946692,41.097014],[-91.111001,41.239415],[-91.045277,41.414677],[-90.656414,41.463969],[-90.344229,41.589939],[-90.311367,41.743293],[-90.179921,41.809016],[-90.141582,42.000709],[-90.168967,42.126679],[-90.393521,42.225264],[-90.420906,42.329326],[-90.639984,42.510065]]]}}, +{"type":"Feature","id":"18","properties":{"name":"Indiana","density":181.7},"geometry":{"type":"Polygon","coordinates":[[[-85.990061,41.759724],[-84.807042,41.759724],[-84.807042,41.694001],[-84.801565,40.500028],[-84.817996,39.103408],[-84.894673,39.059592],[-84.812519,38.785745],[-84.987781,38.780268],[-85.173997,38.68716],[-85.431413,38.730976],[-85.42046,38.533806],[-85.590245,38.451652],[-85.655968,38.325682],[-85.83123,38.27639],[-85.924338,38.024451],[-86.039354,37.958727],[-86.263908,38.051835],[-86.302247,38.166851],[-86.521325,38.040881],[-86.504894,37.931343],[-86.729448,37.893004],[-86.795172,37.991589],[-87.047111,37.893004],[-87.129265,37.788942],[-87.381204,37.93682],[-87.512651,37.903958],[-87.600282,37.975158],[-87.682436,37.903958],[-87.934375,37.893004],[-88.027483,37.799896],[-88.060345,37.865619],[-88.000098,38.101128],[-87.923421,38.15042],[-87.950806,38.27639],[-87.83579,38.292821],[-87.655051,38.506421],[-87.62219,38.637868],[-87.49622,38.780268],[-87.512651,38.95553],[-87.63862,39.169131],[-87.529082,39.34987],[-87.523605,41.710431],[-87.42502,41.644708],[-87.118311,41.644708],[-86.822556,41.759724],[-85.990061,41.759724]]]}}, +{"type":"Feature","id":"19","properties":{"name":"Iowa","density":54.81},"geometry":{"type":"Polygon","coordinates":[[[-91.368417,43.501391],[-91.215062,43.501391],[-91.204109,43.353514],[-91.056231,43.254929],[-91.176724,43.134436],[-91.143862,42.909881],[-91.067185,42.75105],[-90.711184,42.636034],[-90.639984,42.510065],[-90.420906,42.329326],[-90.393521,42.225264],[-90.168967,42.126679],[-90.141582,42.000709],[-90.179921,41.809016],[-90.311367,41.743293],[-90.344229,41.589939],[-90.656414,41.463969],[-91.045277,41.414677],[-91.111001,41.239415],[-90.946692,41.097014],[-90.963123,40.921752],[-91.09457,40.823167],[-91.121954,40.669813],[-91.401278,40.560274],[-91.417709,40.379535],[-91.527248,40.412397],[-91.729895,40.615043],[-91.833957,40.609566],[-93.257961,40.582182],[-94.632673,40.571228],[-95.7664,40.587659],[-95.881416,40.719105],[-95.826646,40.976521],[-95.925231,41.201076],[-95.919754,41.453015],[-96.095016,41.540646],[-96.122401,41.67757],[-96.062155,41.798063],[-96.127878,41.973325],[-96.264801,42.039048],[-96.44554,42.488157],[-96.631756,42.707235],[-96.544125,42.855112],[-96.511264,43.052282],[-96.434587,43.123482],[-96.560556,43.222067],[-96.527695,43.397329],[-96.582464,43.479483],[-96.451017,43.501391],[-91.368417,43.501391]]]}}, +{"type":"Feature","id":"20","properties":{"name":"Kansas","density":35.09},"geometry":{"type":"Polygon","coordinates":[[[-101.90605,40.001626],[-95.306337,40.001626],[-95.207752,39.908518],[-94.884612,39.831841],[-95.109167,39.541563],[-94.983197,39.442978],[-94.824366,39.20747],[-94.610765,39.158177],[-94.616242,37.000263],[-100.087706,37.000263],[-102.042974,36.994786],[-102.053927,40.001626],[-101.90605,40.001626]]]}}, +{"type":"Feature","id":"21","properties":{"name":"Kentucky","density":110},"geometry":{"type":"Polygon","coordinates":[[[-83.903347,38.769315],[-83.678792,38.632391],[-83.519961,38.703591],[-83.142052,38.626914],[-83.032514,38.725499],[-82.890113,38.758361],[-82.846298,38.588575],[-82.731282,38.561191],[-82.594358,38.424267],[-82.621743,38.123036],[-82.50125,37.931343],[-82.342419,37.783465],[-82.293127,37.668449],[-82.101434,37.553434],[-81.969987,37.537003],[-82.353373,37.268633],[-82.720328,37.120755],[-82.720328,37.044078],[-82.868205,36.978355],[-82.879159,36.890724],[-83.070852,36.852385],[-83.136575,36.742847],[-83.673316,36.600446],[-83.689746,36.584015],[-84.544149,36.594969],[-85.289013,36.627831],[-85.486183,36.616877],[-86.592525,36.655216],[-87.852221,36.633308],[-88.071299,36.677123],[-88.054868,36.496384],[-89.298133,36.507338],[-89.418626,36.496384],[-89.363857,36.622354],[-89.215979,36.578538],[-89.133825,36.983832],[-89.183118,37.038601],[-89.029763,37.213863],[-88.914747,37.224817],[-88.547792,37.071463],[-88.421823,37.153617],[-88.514931,37.285064],[-88.476592,37.389126],[-88.065822,37.482234],[-88.15893,37.657496],[-88.027483,37.799896],[-87.934375,37.893004],[-87.682436,37.903958],[-87.600282,37.975158],[-87.512651,37.903958],[-87.381204,37.93682],[-87.129265,37.788942],[-87.047111,37.893004],[-86.795172,37.991589],[-86.729448,37.893004],[-86.504894,37.931343],[-86.521325,38.040881],[-86.302247,38.166851],[-86.263908,38.051835],[-86.039354,37.958727],[-85.924338,38.024451],[-85.83123,38.27639],[-85.655968,38.325682],[-85.590245,38.451652],[-85.42046,38.533806],[-85.431413,38.730976],[-85.173997,38.68716],[-84.987781,38.780268],[-84.812519,38.785745],[-84.894673,39.059592],[-84.817996,39.103408],[-84.43461,39.103408],[-84.231963,38.895284],[-84.215533,38.807653],[-83.903347,38.769315]]]}}, +{"type":"Feature","id":"22","properties":{"name":"Louisiana","density":105},"geometry":{"type":"Polygon","coordinates":[[[-93.608485,33.018527],[-91.16577,33.002096],[-91.072662,32.887081],[-91.143862,32.843265],[-91.154816,32.640618],[-91.006939,32.514649],[-90.985031,32.218894],[-91.105524,31.988862],[-91.341032,31.846462],[-91.401278,31.621907],[-91.499863,31.643815],[-91.516294,31.27686],[-91.636787,31.265906],[-91.565587,31.068736],[-91.636787,30.997536],[-89.747242,30.997536],[-89.845827,30.66892],[-89.681519,30.449842],[-89.643181,30.285534],[-89.522688,30.181472],[-89.818443,30.044549],[-89.84035,29.945964],[-89.599365,29.88024],[-89.495303,30.039072],[-89.287179,29.88024],[-89.30361,29.754271],[-89.424103,29.699501],[-89.648657,29.748794],[-89.621273,29.655686],[-89.69795,29.513285],[-89.506257,29.387316],[-89.199548,29.348977],[-89.09001,29.2011],[-89.002379,29.179192],[-89.16121,29.009407],[-89.336472,29.042268],[-89.484349,29.217531],[-89.851304,29.310638],[-89.851304,29.480424],[-90.032043,29.425654],[-90.021089,29.283254],[-90.103244,29.151807],[-90.23469,29.129899],[-90.333275,29.277777],[-90.563307,29.283254],[-90.645461,29.129899],[-90.798815,29.086084],[-90.963123,29.179192],[-91.09457,29.190146],[-91.220539,29.436608],[-91.445094,29.546147],[-91.532725,29.529716],[-91.620356,29.73784],[-91.883249,29.710455],[-91.888726,29.836425],[-92.146142,29.715932],[-92.113281,29.622824],[-92.31045,29.535193],[-92.617159,29.579009],[-92.97316,29.715932],[-93.2251,29.776178],[-93.767317,29.726886],[-93.838517,29.688547],[-93.926148,29.787132],[-93.690639,30.143133],[-93.767317,30.334826],[-93.696116,30.438888],[-93.728978,30.575812],[-93.630393,30.679874],[-93.526331,30.93729],[-93.542762,31.15089],[-93.816609,31.556184],[-93.822086,31.775262],[-94.041164,31.994339],[-94.041164,33.018527],[-93.608485,33.018527]]]}}, +{"type":"Feature","id":"23","properties":{"name":"Maine","density":43.04},"geometry":{"type":"Polygon","coordinates":[[[-70.703921,43.057759],[-70.824413,43.128959],[-70.807983,43.227544],[-70.966814,43.34256],[-71.032537,44.657025],[-71.08183,45.303304],[-70.649151,45.440228],[-70.720352,45.511428],[-70.556043,45.664782],[-70.386258,45.735983],[-70.41912,45.796229],[-70.260289,45.889337],[-70.309581,46.064599],[-70.210996,46.327492],[-70.057642,46.415123],[-69.997395,46.694447],[-69.225147,47.461219],[-69.044408,47.428357],[-69.033454,47.242141],[-68.902007,47.176418],[-68.578868,47.285957],[-68.376221,47.285957],[-68.233821,47.357157],[-67.954497,47.198326],[-67.790188,47.066879],[-67.779235,45.944106],[-67.801142,45.675736],[-67.456095,45.604536],[-67.505388,45.48952],[-67.417757,45.379982],[-67.488957,45.281397],[-67.346556,45.128042],[-67.16034,45.160904],[-66.979601,44.804903],[-67.187725,44.646072],[-67.308218,44.706318],[-67.406803,44.596779],[-67.549203,44.624164],[-67.565634,44.531056],[-67.75185,44.54201],[-68.047605,44.328409],[-68.118805,44.476286],[-68.222867,44.48724],[-68.173574,44.328409],[-68.403606,44.251732],[-68.458375,44.377701],[-68.567914,44.311978],[-68.82533,44.311978],[-68.830807,44.459856],[-68.984161,44.426994],[-68.956777,44.322932],[-69.099177,44.103854],[-69.071793,44.043608],[-69.258008,43.923115],[-69.444224,43.966931],[-69.553763,43.840961],[-69.707118,43.82453],[-69.833087,43.720469],[-69.986442,43.742376],[-70.030257,43.851915],[-70.254812,43.676653],[-70.194565,43.567114],[-70.358873,43.528776],[-70.369827,43.435668],[-70.556043,43.320652],[-70.703921,43.057759]]]}}, +{"type":"Feature","id":"24","properties":{"name":"Maryland","density":596.3},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.994645,37.95325],[-76.016553,37.95325],[-76.043938,37.95325],[-75.994645,37.95325]]],[[[-79.477979,39.722302],[-75.786521,39.722302],[-75.693413,38.462606],[-75.047134,38.451652],[-75.244304,38.029928],[-75.397659,38.013497],[-75.671506,37.95325],[-75.885106,37.909435],[-75.879629,38.073743],[-75.961783,38.139466],[-75.846768,38.210667],[-76.000122,38.374975],[-76.049415,38.303775],[-76.257538,38.320205],[-76.328738,38.500944],[-76.263015,38.500944],[-76.257538,38.736453],[-76.191815,38.829561],[-76.279446,39.147223],[-76.169907,39.333439],[-76.000122,39.366301],[-75.972737,39.557994],[-76.098707,39.536086],[-76.104184,39.437501],[-76.367077,39.311532],[-76.443754,39.196516],[-76.460185,38.906238],[-76.55877,38.769315],[-76.514954,38.539283],[-76.383508,38.380452],[-76.399939,38.259959],[-76.317785,38.139466],[-76.3616,38.057312],[-76.591632,38.216144],[-76.920248,38.292821],[-77.018833,38.446175],[-77.205049,38.358544],[-77.276249,38.479037],[-77.128372,38.632391],[-77.040741,38.791222],[-76.909294,38.895284],[-77.035264,38.993869],[-77.117418,38.933623],[-77.248864,39.026731],[-77.456988,39.076023],[-77.456988,39.223901],[-77.566527,39.306055],[-77.719881,39.322485],[-77.834897,39.601809],[-78.004682,39.601809],[-78.174467,39.694917],[-78.267575,39.61824],[-78.431884,39.623717],[-78.470222,39.514178],[-78.765977,39.585379],[-78.963147,39.437501],[-79.094593,39.470363],[-79.291763,39.300578],[-79.488933,39.20747],[-79.477979,39.722302]]]]}}, +{"type":"Feature","id":"25","properties":{"name":"Massachusetts","density":840.2},"geometry":{"type":"Polygon","coordinates":[[[-70.917521,42.887974],[-70.818936,42.871543],[-70.780598,42.696281],[-70.824413,42.55388],[-70.983245,42.422434],[-70.988722,42.269079],[-70.769644,42.247172],[-70.638197,42.08834],[-70.660105,41.962371],[-70.550566,41.929509],[-70.539613,41.814493],[-70.260289,41.715908],[-69.937149,41.809016],[-70.008349,41.672093],[-70.484843,41.5516],[-70.660105,41.546123],[-70.764167,41.639231],[-70.928475,41.611847],[-70.933952,41.540646],[-71.120168,41.496831],[-71.196845,41.67757],[-71.22423,41.710431],[-71.328292,41.781632],[-71.383061,42.01714],[-71.530939,42.01714],[-71.799309,42.006186],[-71.799309,42.022617],[-73.053528,42.039048],[-73.486206,42.050002],[-73.508114,42.08834],[-73.267129,42.745573],[-72.456542,42.729142],[-71.29543,42.696281],[-71.185891,42.789389],[-70.917521,42.887974]]]}}, +{"type":"Feature","id":"26","properties":{"name":"Michigan","density":173.9},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.454238,41.732339],[-84.807042,41.694001],[-84.807042,41.759724],[-85.990061,41.759724],[-86.822556,41.759724],[-86.619909,41.891171],[-86.482986,42.115725],[-86.357016,42.252649],[-86.263908,42.444341],[-86.209139,42.718189],[-86.231047,43.013943],[-86.526801,43.594499],[-86.433693,43.813577],[-86.499417,44.07647],[-86.269385,44.34484],[-86.220093,44.569394],[-86.252954,44.689887],[-86.088646,44.73918],[-86.066738,44.903488],[-85.809322,44.947303],[-85.612152,45.128042],[-85.628583,44.766564],[-85.524521,44.750133],[-85.393075,44.930872],[-85.387598,45.237581],[-85.305444,45.314258],[-85.031597,45.363551],[-85.119228,45.577151],[-84.938489,45.75789],[-84.713934,45.768844],[-84.461995,45.653829],[-84.215533,45.637398],[-84.09504,45.494997],[-83.908824,45.484043],[-83.596638,45.352597],[-83.4871,45.358074],[-83.317314,45.144473],[-83.454238,45.029457],[-83.322791,44.88158],[-83.273499,44.711795],[-83.333745,44.339363],[-83.536392,44.246255],[-83.585684,44.054562],[-83.82667,43.988839],[-83.958116,43.758807],[-83.908824,43.671176],[-83.667839,43.589022],[-83.481623,43.714992],[-83.262545,43.972408],[-82.917498,44.070993],[-82.747713,43.994316],[-82.643651,43.851915],[-82.539589,43.435668],[-82.523158,43.227544],[-82.413619,42.975605],[-82.517681,42.614127],[-82.681989,42.559357],[-82.687466,42.690804],[-82.797005,42.652465],[-82.922975,42.351234],[-83.125621,42.236218],[-83.185868,42.006186],[-83.437807,41.814493],[-83.454238,41.732339]]],[[[-85.508091,45.730506],[-85.49166,45.610013],[-85.623106,45.588105],[-85.568337,45.75789],[-85.508091,45.730506]]],[[[-87.589328,45.095181],[-87.742682,45.199243],[-87.649574,45.341643],[-87.885083,45.363551],[-87.791975,45.500474],[-87.781021,45.675736],[-87.989145,45.796229],[-88.10416,45.922199],[-88.531362,46.020784],[-88.662808,45.987922],[-89.09001,46.135799],[-90.119674,46.338446],[-90.229213,46.508231],[-90.415429,46.568478],[-90.026566,46.672539],[-89.851304,46.793032],[-89.413149,46.842325],[-89.128348,46.990202],[-88.996902,46.995679],[-88.887363,47.099741],[-88.575177,47.247618],[-88.416346,47.373588],[-88.180837,47.455742],[-87.956283,47.384542],[-88.350623,47.077833],[-88.443731,46.973771],[-88.438254,46.787555],[-88.246561,46.929956],[-87.901513,46.908048],[-87.633143,46.809463],[-87.392158,46.535616],[-87.260711,46.486323],[-87.008772,46.530139],[-86.948526,46.469893],[-86.696587,46.437031],[-86.159846,46.667063],[-85.880522,46.68897],[-85.508091,46.678016],[-85.256151,46.754694],[-85.064458,46.760171],[-85.02612,46.480847],[-84.82895,46.442508],[-84.63178,46.486323],[-84.549626,46.4206],[-84.418179,46.502754],[-84.127902,46.530139],[-84.122425,46.179615],[-83.990978,46.031737],[-83.793808,45.993399],[-83.7719,46.091984],[-83.580208,46.091984],[-83.476146,45.987922],[-83.563777,45.911245],[-84.111471,45.976968],[-84.374364,45.933153],[-84.659165,46.053645],[-84.741319,45.944106],[-84.70298,45.850998],[-84.82895,45.872906],[-85.015166,46.00983],[-85.338305,46.091984],[-85.502614,46.097461],[-85.661445,45.966014],[-85.924338,45.933153],[-86.209139,45.960537],[-86.324155,45.905768],[-86.351539,45.796229],[-86.663725,45.703121],[-86.647294,45.834568],[-86.784218,45.861952],[-86.838987,45.725029],[-87.069019,45.719552],[-87.17308,45.659305],[-87.326435,45.423797],[-87.611236,45.122565],[-87.589328,45.095181]]],[[[-88.805209,47.976051],[-89.057148,47.850082],[-89.188594,47.833651],[-89.177641,47.937713],[-88.547792,48.173221],[-88.668285,48.008913],[-88.805209,47.976051]]]]}}, +{"type":"Feature","id":"27","properties":{"name":"Minnesota","density":67.14},"geometry":{"type":"Polygon","coordinates":[[[-92.014696,46.705401],[-92.091373,46.749217],[-92.29402,46.667063],[-92.29402,46.075553],[-92.354266,46.015307],[-92.639067,45.933153],[-92.869098,45.719552],[-92.885529,45.577151],[-92.770513,45.566198],[-92.644544,45.440228],[-92.75956,45.286874],[-92.737652,45.117088],[-92.808852,44.750133],[-92.545959,44.569394],[-92.337835,44.552964],[-92.233773,44.443425],[-91.927065,44.333886],[-91.877772,44.202439],[-91.592971,44.032654],[-91.43414,43.994316],[-91.242447,43.775238],[-91.269832,43.616407],[-91.215062,43.501391],[-91.368417,43.501391],[-96.451017,43.501391],[-96.451017,45.297827],[-96.681049,45.412843],[-96.856311,45.604536],[-96.582464,45.818137],[-96.560556,45.933153],[-96.598895,46.332969],[-96.719387,46.437031],[-96.801542,46.656109],[-96.785111,46.924479],[-96.823449,46.968294],[-96.856311,47.609096],[-97.053481,47.948667],[-97.130158,48.140359],[-97.16302,48.545653],[-97.097296,48.682577],[-97.228743,49.000239],[-95.152983,49.000239],[-95.152983,49.383625],[-94.955813,49.372671],[-94.824366,49.295994],[-94.69292,48.775685],[-94.588858,48.715438],[-94.260241,48.699007],[-94.221903,48.649715],[-93.838517,48.627807],[-93.794701,48.518268],[-93.466085,48.545653],[-93.466085,48.589469],[-93.208669,48.644238],[-92.984114,48.62233],[-92.726698,48.540176],[-92.655498,48.436114],[-92.50762,48.447068],[-92.370697,48.222514],[-92.304974,48.315622],[-92.053034,48.359437],[-92.009219,48.266329],[-91.713464,48.200606],[-91.713464,48.112975],[-91.565587,48.041775],[-91.264355,48.080113],[-91.083616,48.178698],[-90.837154,48.238944],[-90.749522,48.091067],[-90.579737,48.123929],[-90.377091,48.091067],[-90.141582,48.112975],[-89.873212,47.987005],[-89.615796,48.008913],[-89.637704,47.954144],[-89.971797,47.828174],[-90.437337,47.729589],[-90.738569,47.625527],[-91.171247,47.368111],[-91.357463,47.20928],[-91.642264,47.028541],[-92.091373,46.787555],[-92.014696,46.705401]]]}}, +{"type":"Feature","id":"28","properties":{"name":"Mississippi","density":63.50},"geometry":{"type":"Polygon","coordinates":[[[-88.471115,34.995703],[-88.202745,34.995703],[-88.098683,34.891641],[-88.241084,33.796253],[-88.471115,31.895754],[-88.394438,30.367688],[-88.503977,30.323872],[-88.744962,30.34578],[-88.843547,30.411504],[-89.084533,30.367688],[-89.418626,30.252672],[-89.522688,30.181472],[-89.643181,30.285534],[-89.681519,30.449842],[-89.845827,30.66892],[-89.747242,30.997536],[-91.636787,30.997536],[-91.565587,31.068736],[-91.636787,31.265906],[-91.516294,31.27686],[-91.499863,31.643815],[-91.401278,31.621907],[-91.341032,31.846462],[-91.105524,31.988862],[-90.985031,32.218894],[-91.006939,32.514649],[-91.154816,32.640618],[-91.143862,32.843265],[-91.072662,32.887081],[-91.16577,33.002096],[-91.089093,33.13902],[-91.143862,33.347144],[-91.056231,33.429298],[-91.231493,33.560744],[-91.072662,33.867453],[-90.891923,34.026284],[-90.952169,34.135823],[-90.744046,34.300131],[-90.749522,34.365854],[-90.568783,34.420624],[-90.585214,34.617794],[-90.481152,34.661609],[-90.409952,34.831394],[-90.251121,34.908072],[-90.311367,34.995703],[-88.471115,34.995703]]]}}, +{"type":"Feature","id":"29","properties":{"name":"Missouri","density":87.26},"geometry":{"type":"Polygon","coordinates":[[[-91.833957,40.609566],[-91.729895,40.615043],[-91.527248,40.412397],[-91.417709,40.379535],[-91.50534,40.237135],[-91.494386,40.034488],[-91.368417,39.727779],[-91.061708,39.470363],[-90.727615,39.256762],[-90.661891,38.928146],[-90.585214,38.867899],[-90.470199,38.961007],[-90.251121,38.917192],[-90.10872,38.845992],[-90.207305,38.725499],[-90.179921,38.632391],[-90.349706,38.374975],[-90.355183,38.216144],[-90.059428,38.013497],[-89.949889,37.88205],[-89.84035,37.903958],[-89.517211,37.690357],[-89.517211,37.537003],[-89.435057,37.34531],[-89.517211,37.279587],[-89.292656,36.994786],[-89.133825,36.983832],[-89.215979,36.578538],[-89.363857,36.622354],[-89.418626,36.496384],[-89.484349,36.496384],[-89.539119,36.496384],[-89.533642,36.249922],[-89.730812,35.997983],[-90.377091,35.997983],[-90.218259,36.184199],[-90.064905,36.304691],[-90.152536,36.496384],[-94.473842,36.501861],[-94.616242,36.501861],[-94.616242,37.000263],[-94.610765,39.158177],[-94.824366,39.20747],[-94.983197,39.442978],[-95.109167,39.541563],[-94.884612,39.831841],[-95.207752,39.908518],[-95.306337,40.001626],[-95.552799,40.264519],[-95.7664,40.587659],[-94.632673,40.571228],[-93.257961,40.582182],[-91.833957,40.609566]]]}}, +{"type":"Feature","id":"30","properties":{"name":"Montana","density":6.858},"geometry":{"type":"Polygon","coordinates":[[[-104.047534,49.000239],[-104.042057,47.861036],[-104.047534,45.944106],[-104.042057,44.996596],[-104.058488,44.996596],[-105.91517,45.002073],[-109.080842,45.002073],[-111.05254,45.002073],[-111.047063,44.476286],[-111.227803,44.580348],[-111.386634,44.75561],[-111.616665,44.547487],[-111.819312,44.509148],[-111.868605,44.563917],[-112.104113,44.520102],[-112.241036,44.569394],[-112.471068,44.481763],[-112.783254,44.48724],[-112.887315,44.394132],[-113.002331,44.448902],[-113.133778,44.772041],[-113.341901,44.782995],[-113.456917,44.865149],[-113.45144,45.056842],[-113.571933,45.128042],[-113.736241,45.330689],[-113.834826,45.522382],[-113.807441,45.604536],[-113.98818,45.703121],[-114.086765,45.593582],[-114.333228,45.456659],[-114.546828,45.560721],[-114.497536,45.670259],[-114.568736,45.774321],[-114.387997,45.88386],[-114.492059,46.037214],[-114.464674,46.272723],[-114.322274,46.645155],[-114.612552,46.639678],[-114.623506,46.705401],[-114.886399,46.809463],[-114.930214,46.919002],[-115.302646,47.187372],[-115.324554,47.258572],[-115.527201,47.302388],[-115.718894,47.42288],[-115.724371,47.696727],[-116.04751,47.976051],[-116.04751,49.000239],[-111.50165,48.994762],[-109.453274,49.000239],[-104.047534,49.000239]]]}}, +{"type":"Feature","id":"31","properties":{"name":"Nebraska","density":23.97},"geometry":{"type":"Polygon","coordinates":[[[-103.324578,43.002989],[-101.626726,42.997512],[-98.499393,42.997512],[-98.466531,42.94822],[-97.951699,42.767481],[-97.831206,42.866066],[-97.688806,42.844158],[-97.217789,42.844158],[-96.692003,42.657942],[-96.626279,42.515542],[-96.44554,42.488157],[-96.264801,42.039048],[-96.127878,41.973325],[-96.062155,41.798063],[-96.122401,41.67757],[-96.095016,41.540646],[-95.919754,41.453015],[-95.925231,41.201076],[-95.826646,40.976521],[-95.881416,40.719105],[-95.7664,40.587659],[-95.552799,40.264519],[-95.306337,40.001626],[-101.90605,40.001626],[-102.053927,40.001626],[-102.053927,41.003906],[-104.053011,41.003906],[-104.053011,43.002989],[-103.324578,43.002989]]]}}, +{"type":"Feature","id":"32","properties":{"name":"Nevada","density":24.80},"geometry":{"type":"Polygon","coordinates":[[[-117.027882,42.000709],[-114.04295,41.995232],[-114.048427,37.000263],[-114.048427,36.195153],[-114.152489,36.025367],[-114.251074,36.01989],[-114.371566,36.140383],[-114.738521,36.102045],[-114.678275,35.516012],[-114.596121,35.324319],[-114.574213,35.138103],[-114.634459,35.00118],[-115.85034,35.970598],[-116.540435,36.501861],[-117.498899,37.21934],[-118.71478,38.101128],[-120.001861,38.999346],[-119.996384,40.264519],[-120.001861,41.995232],[-118.698349,41.989755],[-117.027882,42.000709]]]}}, +{"type":"Feature","id":"33","properties":{"name":"New Hampshire","density":147},"geometry":{"type":"Polygon","coordinates":[[[-71.08183,45.303304],[-71.032537,44.657025],[-70.966814,43.34256],[-70.807983,43.227544],[-70.824413,43.128959],[-70.703921,43.057759],[-70.818936,42.871543],[-70.917521,42.887974],[-71.185891,42.789389],[-71.29543,42.696281],[-72.456542,42.729142],[-72.544173,42.80582],[-72.533219,42.953697],[-72.445588,43.008466],[-72.456542,43.150867],[-72.379864,43.572591],[-72.204602,43.769761],[-72.116971,43.994316],[-72.02934,44.07647],[-72.034817,44.322932],[-71.700724,44.41604],[-71.536416,44.585825],[-71.629524,44.750133],[-71.4926,44.914442],[-71.503554,45.013027],[-71.361154,45.270443],[-71.131122,45.243058],[-71.08183,45.303304]]]}}, +{"type":"Feature","id":"34","properties":{"name":"New Jersey","density":1189 },"geometry":{"type":"Polygon","coordinates":[[[-74.236547,41.14083],[-73.902454,40.998429],[-74.022947,40.708151],[-74.187255,40.642428],[-74.274886,40.489074],[-74.001039,40.412397],[-73.979131,40.297381],[-74.099624,39.760641],[-74.411809,39.360824],[-74.614456,39.245808],[-74.795195,38.993869],[-74.888303,39.158177],[-75.178581,39.240331],[-75.534582,39.459409],[-75.55649,39.607286],[-75.561967,39.629194],[-75.507197,39.683964],[-75.414089,39.804456],[-75.145719,39.88661],[-75.129289,39.963288],[-74.82258,40.127596],[-74.773287,40.215227],[-75.058088,40.417874],[-75.069042,40.543843],[-75.195012,40.576705],[-75.205966,40.691721],[-75.052611,40.866983],[-75.134765,40.971045],[-74.882826,41.179168],[-74.828057,41.288707],[-74.69661,41.359907],[-74.236547,41.14083]]]}}, +{"type":"Feature","id":"35","properties":{"name":"New Mexico","density":17.16},"geometry":{"type":"Polygon","coordinates":[[[-107.421329,37.000263],[-106.868158,36.994786],[-104.337812,36.994786],[-103.001438,37.000263],[-103.001438,36.501861],[-103.039777,36.501861],[-103.045254,34.01533],[-103.067161,33.002096],[-103.067161,31.999816],[-106.616219,31.999816],[-106.643603,31.901231],[-106.528588,31.786216],[-108.210008,31.786216],[-108.210008,31.331629],[-109.04798,31.331629],[-109.042503,37.000263],[-107.421329,37.000263]]]}}, +{"type":"Feature","id":"36","properties":{"name":"New York","density":412.3},"geometry":{"type":"Polygon","coordinates":[[[-73.343806,45.013027],[-73.332852,44.804903],[-73.387622,44.618687],[-73.294514,44.437948],[-73.321898,44.246255],[-73.436914,44.043608],[-73.349283,43.769761],[-73.404052,43.687607],[-73.245221,43.523299],[-73.278083,42.833204],[-73.267129,42.745573],[-73.508114,42.08834],[-73.486206,42.050002],[-73.55193,41.294184],[-73.48073,41.21203],[-73.727192,41.102491],[-73.655992,40.987475],[-73.22879,40.905321],[-73.141159,40.965568],[-72.774204,40.965568],[-72.587988,40.998429],[-72.28128,41.157261],[-72.259372,41.042245],[-72.100541,40.992952],[-72.467496,40.845075],[-73.239744,40.625997],[-73.562884,40.582182],[-73.776484,40.593136],[-73.935316,40.543843],[-74.022947,40.708151],[-73.902454,40.998429],[-74.236547,41.14083],[-74.69661,41.359907],[-74.740426,41.431108],[-74.89378,41.436584],[-75.074519,41.60637],[-75.052611,41.754247],[-75.173104,41.869263],[-75.249781,41.863786],[-75.35932,42.000709],[-79.76278,42.000709],[-79.76278,42.252649],[-79.76278,42.269079],[-79.149363,42.55388],[-79.050778,42.690804],[-78.853608,42.783912],[-78.930285,42.953697],[-79.012439,42.986559],[-79.072686,43.260406],[-78.486653,43.375421],[-77.966344,43.369944],[-77.75822,43.34256],[-77.533665,43.233021],[-77.391265,43.276836],[-76.958587,43.271359],[-76.695693,43.34256],[-76.41637,43.523299],[-76.235631,43.528776],[-76.230154,43.802623],[-76.137046,43.961454],[-76.3616,44.070993],[-76.312308,44.196962],[-75.912491,44.366748],[-75.764614,44.514625],[-75.282643,44.848718],[-74.828057,45.018503],[-74.148916,44.991119],[-73.343806,45.013027]]]}}, +{"type":"Feature","id":"37","properties":{"name":"North Carolina","density":198.2},"geometry":{"type":"Polygon","coordinates":[[[-80.978661,36.562108],[-80.294043,36.545677],[-79.510841,36.5402],[-75.868676,36.551154],[-75.75366,36.151337],[-76.032984,36.189676],[-76.071322,36.140383],[-76.410893,36.080137],[-76.460185,36.025367],[-76.68474,36.008937],[-76.673786,35.937736],[-76.399939,35.987029],[-76.3616,35.943213],[-76.060368,35.992506],[-75.961783,35.899398],[-75.781044,35.937736],[-75.715321,35.696751],[-75.775568,35.581735],[-75.89606,35.570781],[-76.147999,35.324319],[-76.482093,35.313365],[-76.536862,35.14358],[-76.394462,34.973795],[-76.279446,34.940933],[-76.493047,34.661609],[-76.673786,34.694471],[-76.991448,34.667086],[-77.210526,34.60684],[-77.555573,34.415147],[-77.82942,34.163208],[-77.971821,33.845545],[-78.179944,33.916745],[-78.541422,33.851022],[-79.675149,34.80401],[-80.797922,34.820441],[-80.781491,34.935456],[-80.934845,35.105241],[-81.038907,35.044995],[-81.044384,35.149057],[-82.276696,35.198349],[-82.550543,35.160011],[-82.764143,35.066903],[-83.109191,35.00118],[-83.618546,34.984749],[-84.319594,34.990226],[-84.29221,35.225734],[-84.09504,35.247642],[-84.018363,35.41195],[-83.7719,35.559827],[-83.498053,35.565304],[-83.251591,35.718659],[-82.994175,35.773428],[-82.775097,35.997983],[-82.638174,36.063706],[-82.610789,35.965121],[-82.216449,36.156814],[-82.03571,36.118475],[-81.909741,36.304691],[-81.723525,36.353984],[-81.679709,36.589492],[-80.978661,36.562108]]]}}, +{"type":"Feature","id":"38","properties":{"name":"North Dakota","density":9.916},"geometry":{"type":"Polygon","coordinates":[[[-97.228743,49.000239],[-97.097296,48.682577],[-97.16302,48.545653],[-97.130158,48.140359],[-97.053481,47.948667],[-96.856311,47.609096],[-96.823449,46.968294],[-96.785111,46.924479],[-96.801542,46.656109],[-96.719387,46.437031],[-96.598895,46.332969],[-96.560556,45.933153],[-104.047534,45.944106],[-104.042057,47.861036],[-104.047534,49.000239],[-97.228743,49.000239]]]}}, +{"type":"Feature","id":"39","properties":{"name":"Ohio","density":281.9},"geometry":{"type":"Polygon","coordinates":[[[-80.518598,41.978802],[-80.518598,40.636951],[-80.666475,40.582182],[-80.595275,40.472643],[-80.600752,40.319289],[-80.737675,40.078303],[-80.830783,39.711348],[-81.219646,39.388209],[-81.345616,39.344393],[-81.455155,39.410117],[-81.57017,39.267716],[-81.685186,39.273193],[-81.811156,39.0815],[-81.783771,38.966484],[-81.887833,38.873376],[-82.03571,39.026731],[-82.221926,38.785745],[-82.172634,38.632391],[-82.293127,38.577622],[-82.331465,38.446175],[-82.594358,38.424267],[-82.731282,38.561191],[-82.846298,38.588575],[-82.890113,38.758361],[-83.032514,38.725499],[-83.142052,38.626914],[-83.519961,38.703591],[-83.678792,38.632391],[-83.903347,38.769315],[-84.215533,38.807653],[-84.231963,38.895284],[-84.43461,39.103408],[-84.817996,39.103408],[-84.801565,40.500028],[-84.807042,41.694001],[-83.454238,41.732339],[-83.065375,41.595416],[-82.933929,41.513262],[-82.835344,41.589939],[-82.616266,41.431108],[-82.479343,41.381815],[-82.013803,41.513262],[-81.739956,41.485877],[-81.444201,41.672093],[-81.011523,41.852832],[-80.518598,41.978802],[-80.518598,41.978802]]]}}, +{"type":"Feature","id":"40","properties":{"name":"Oklahoma","density":55.22},"geometry":{"type":"Polygon","coordinates":[[[-100.087706,37.000263],[-94.616242,37.000263],[-94.616242,36.501861],[-94.430026,35.395519],[-94.484796,33.637421],[-94.868182,33.74696],[-94.966767,33.861976],[-95.224183,33.960561],[-95.289906,33.87293],[-95.547322,33.878407],[-95.602092,33.933176],[-95.8376,33.834591],[-95.936185,33.889361],[-96.149786,33.840068],[-96.346956,33.686714],[-96.423633,33.774345],[-96.631756,33.845545],[-96.850834,33.845545],[-96.922034,33.960561],[-97.173974,33.736006],[-97.256128,33.861976],[-97.371143,33.823637],[-97.458774,33.905791],[-97.694283,33.982469],[-97.869545,33.851022],[-97.946222,33.987946],[-98.088623,34.004376],[-98.170777,34.113915],[-98.36247,34.157731],[-98.488439,34.064623],[-98.570593,34.146777],[-98.767763,34.135823],[-98.986841,34.223454],[-99.189488,34.2125],[-99.260688,34.404193],[-99.57835,34.415147],[-99.698843,34.382285],[-99.923398,34.573978],[-100.000075,34.563024],[-100.000075,36.501861],[-101.812942,36.501861],[-103.001438,36.501861],[-103.001438,37.000263],[-102.042974,36.994786],[-100.087706,37.000263]]]}}, +{"type":"Feature","id":"41","properties":{"name":"Oregon","density":40.33},"geometry":{"type":"Polygon","coordinates":[[[-123.211348,46.174138],[-123.11824,46.185092],[-122.904639,46.08103],[-122.811531,45.960537],[-122.762239,45.659305],[-122.247407,45.549767],[-121.809251,45.708598],[-121.535404,45.725029],[-121.217742,45.670259],[-121.18488,45.604536],[-120.637186,45.746937],[-120.505739,45.697644],[-120.209985,45.725029],[-119.963522,45.823614],[-119.525367,45.911245],[-119.125551,45.933153],[-118.988627,45.998876],[-116.918344,45.993399],[-116.78142,45.823614],[-116.545912,45.752413],[-116.463758,45.61549],[-116.671881,45.319735],[-116.732128,45.144473],[-116.847143,45.02398],[-116.830713,44.930872],[-116.934774,44.782995],[-117.038836,44.750133],[-117.241483,44.394132],[-117.170283,44.257209],[-116.97859,44.240778],[-116.896436,44.158624],[-117.027882,43.830007],[-117.027882,42.000709],[-118.698349,41.989755],[-120.001861,41.995232],[-121.037003,41.995232],[-122.378853,42.011663],[-123.233256,42.006186],[-124.213628,42.000709],[-124.356029,42.115725],[-124.432706,42.438865],[-124.416275,42.663419],[-124.553198,42.838681],[-124.454613,43.002989],[-124.383413,43.271359],[-124.235536,43.55616],[-124.169813,43.8081],[-124.060274,44.657025],[-124.076705,44.772041],[-123.97812,45.144473],[-123.939781,45.659305],[-123.994551,45.944106],[-123.945258,46.113892],[-123.545441,46.261769],[-123.370179,46.146753],[-123.211348,46.174138]]]}}, +{"type":"Feature","id":"42","properties":{"name":"Pennsylvania","density":284.3},"geometry":{"type":"Polygon","coordinates":[[[-79.76278,42.252649],[-79.76278,42.000709],[-75.35932,42.000709],[-75.249781,41.863786],[-75.173104,41.869263],[-75.052611,41.754247],[-75.074519,41.60637],[-74.89378,41.436584],[-74.740426,41.431108],[-74.69661,41.359907],[-74.828057,41.288707],[-74.882826,41.179168],[-75.134765,40.971045],[-75.052611,40.866983],[-75.205966,40.691721],[-75.195012,40.576705],[-75.069042,40.543843],[-75.058088,40.417874],[-74.773287,40.215227],[-74.82258,40.127596],[-75.129289,39.963288],[-75.145719,39.88661],[-75.414089,39.804456],[-75.616736,39.831841],[-75.786521,39.722302],[-79.477979,39.722302],[-80.518598,39.722302],[-80.518598,40.636951],[-80.518598,41.978802],[-80.518598,41.978802],[-80.332382,42.033571],[-79.76278,42.269079],[-79.76278,42.252649]]]}}, +{"type":"Feature","id":"44","properties":{"name":"Rhode Island","density":1006 },"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.196845,41.67757],[-71.120168,41.496831],[-71.317338,41.474923],[-71.196845,41.67757]]],[[[-71.530939,42.01714],[-71.383061,42.01714],[-71.328292,41.781632],[-71.22423,41.710431],[-71.344723,41.726862],[-71.448785,41.578985],[-71.481646,41.370861],[-71.859555,41.321569],[-71.799309,41.414677],[-71.799309,42.006186],[-71.530939,42.01714]]]]}}, +{"type":"Feature","id":"45","properties":{"name":"South Carolina","density":155.4},"geometry":{"type":"Polygon","coordinates":[[[-82.764143,35.066903],[-82.550543,35.160011],[-82.276696,35.198349],[-81.044384,35.149057],[-81.038907,35.044995],[-80.934845,35.105241],[-80.781491,34.935456],[-80.797922,34.820441],[-79.675149,34.80401],[-78.541422,33.851022],[-78.716684,33.80173],[-78.935762,33.637421],[-79.149363,33.380005],[-79.187701,33.171881],[-79.357487,33.007573],[-79.582041,33.007573],[-79.631334,32.887081],[-79.866842,32.755634],[-79.998289,32.613234],[-80.206412,32.552987],[-80.430967,32.399633],[-80.452875,32.328433],[-80.660998,32.246279],[-80.885553,32.032678],[-81.115584,32.120309],[-81.121061,32.290094],[-81.279893,32.558464],[-81.416816,32.629664],[-81.42777,32.843265],[-81.493493,33.007573],[-81.761863,33.160928],[-81.937125,33.347144],[-81.926172,33.462159],[-82.194542,33.631944],[-82.325988,33.81816],[-82.55602,33.94413],[-82.714851,34.152254],[-82.747713,34.26727],[-82.901067,34.486347],[-83.005129,34.469916],[-83.339222,34.683517],[-83.322791,34.787579],[-83.109191,35.00118],[-82.764143,35.066903]]]}}, +{"type":"Feature","id":"46","properties":{"name":"South Dakota","density":98.07},"geometry":{"type":"Polygon","coordinates":[[[-104.047534,45.944106],[-96.560556,45.933153],[-96.582464,45.818137],[-96.856311,45.604536],[-96.681049,45.412843],[-96.451017,45.297827],[-96.451017,43.501391],[-96.582464,43.479483],[-96.527695,43.397329],[-96.560556,43.222067],[-96.434587,43.123482],[-96.511264,43.052282],[-96.544125,42.855112],[-96.631756,42.707235],[-96.44554,42.488157],[-96.626279,42.515542],[-96.692003,42.657942],[-97.217789,42.844158],[-97.688806,42.844158],[-97.831206,42.866066],[-97.951699,42.767481],[-98.466531,42.94822],[-98.499393,42.997512],[-101.626726,42.997512],[-103.324578,43.002989],[-104.053011,43.002989],[-104.058488,44.996596],[-104.042057,44.996596],[-104.047534,45.944106]]]}}, +{"type":"Feature","id":"47","properties":{"name":"Tennessee","density":88.08},"geometry":{"type":"Polygon","coordinates":[[[-88.054868,36.496384],[-88.071299,36.677123],[-87.852221,36.633308],[-86.592525,36.655216],[-85.486183,36.616877],[-85.289013,36.627831],[-84.544149,36.594969],[-83.689746,36.584015],[-83.673316,36.600446],[-81.679709,36.589492],[-81.723525,36.353984],[-81.909741,36.304691],[-82.03571,36.118475],[-82.216449,36.156814],[-82.610789,35.965121],[-82.638174,36.063706],[-82.775097,35.997983],[-82.994175,35.773428],[-83.251591,35.718659],[-83.498053,35.565304],[-83.7719,35.559827],[-84.018363,35.41195],[-84.09504,35.247642],[-84.29221,35.225734],[-84.319594,34.990226],[-85.606675,34.984749],[-87.359296,35.00118],[-88.202745,34.995703],[-88.471115,34.995703],[-90.311367,34.995703],[-90.212782,35.023087],[-90.114197,35.198349],[-90.130628,35.439335],[-89.944412,35.603643],[-89.911551,35.756997],[-89.763673,35.811767],[-89.730812,35.997983],[-89.533642,36.249922],[-89.539119,36.496384],[-89.484349,36.496384],[-89.418626,36.496384],[-89.298133,36.507338],[-88.054868,36.496384]]]}}, +{"type":"Feature","id":"48","properties":{"name":"Texas","density":98.07},"geometry":{"type":"Polygon","coordinates":[[[-101.812942,36.501861],[-100.000075,36.501861],[-100.000075,34.563024],[-99.923398,34.573978],[-99.698843,34.382285],[-99.57835,34.415147],[-99.260688,34.404193],[-99.189488,34.2125],[-98.986841,34.223454],[-98.767763,34.135823],[-98.570593,34.146777],[-98.488439,34.064623],[-98.36247,34.157731],[-98.170777,34.113915],[-98.088623,34.004376],[-97.946222,33.987946],[-97.869545,33.851022],[-97.694283,33.982469],[-97.458774,33.905791],[-97.371143,33.823637],[-97.256128,33.861976],[-97.173974,33.736006],[-96.922034,33.960561],[-96.850834,33.845545],[-96.631756,33.845545],[-96.423633,33.774345],[-96.346956,33.686714],[-96.149786,33.840068],[-95.936185,33.889361],[-95.8376,33.834591],[-95.602092,33.933176],[-95.547322,33.878407],[-95.289906,33.87293],[-95.224183,33.960561],[-94.966767,33.861976],[-94.868182,33.74696],[-94.484796,33.637421],[-94.380734,33.544313],[-94.183564,33.593606],[-94.041164,33.54979],[-94.041164,33.018527],[-94.041164,31.994339],[-93.822086,31.775262],[-93.816609,31.556184],[-93.542762,31.15089],[-93.526331,30.93729],[-93.630393,30.679874],[-93.728978,30.575812],[-93.696116,30.438888],[-93.767317,30.334826],[-93.690639,30.143133],[-93.926148,29.787132],[-93.838517,29.688547],[-94.002825,29.68307],[-94.523134,29.546147],[-94.70935,29.622824],[-94.742212,29.787132],[-94.873659,29.672117],[-94.966767,29.699501],[-95.016059,29.557101],[-94.911997,29.496854],[-94.895566,29.310638],[-95.081782,29.113469],[-95.383014,28.867006],[-95.985477,28.604113],[-96.045724,28.647929],[-96.226463,28.582205],[-96.23194,28.642452],[-96.478402,28.598636],[-96.593418,28.724606],[-96.664618,28.697221],[-96.401725,28.439805],[-96.593418,28.357651],[-96.774157,28.406943],[-96.801542,28.226204],[-97.026096,28.039988],[-97.256128,27.694941],[-97.404005,27.333463],[-97.513544,27.360848],[-97.540929,27.229401],[-97.425913,27.262263],[-97.480682,26.99937],[-97.557359,26.988416],[-97.562836,26.840538],[-97.469728,26.758384],[-97.442344,26.457153],[-97.332805,26.353091],[-97.30542,26.161398],[-97.217789,25.991613],[-97.524498,25.887551],[-97.650467,26.018997],[-97.885976,26.06829],[-98.198161,26.057336],[-98.466531,26.221644],[-98.669178,26.238075],[-98.822533,26.369522],[-99.030656,26.413337],[-99.173057,26.539307],[-99.266165,26.840538],[-99.446904,27.021277],[-99.424996,27.174632],[-99.50715,27.33894],[-99.479765,27.48134],[-99.605735,27.640172],[-99.709797,27.656603],[-99.879582,27.799003],[-99.934351,27.979742],[-100.082229,28.14405],[-100.29583,28.280974],[-100.399891,28.582205],[-100.498476,28.66436],[-100.629923,28.905345],[-100.673738,29.102515],[-100.799708,29.244915],[-101.013309,29.370885],[-101.062601,29.458516],[-101.259771,29.535193],[-101.413125,29.754271],[-101.851281,29.803563],[-102.114174,29.792609],[-102.338728,29.869286],[-102.388021,29.765225],[-102.629006,29.732363],[-102.809745,29.524239],[-102.919284,29.190146],[-102.97953,29.184669],[-103.116454,28.987499],[-103.280762,28.982022],[-103.527224,29.135376],[-104.146119,29.381839],[-104.266611,29.513285],[-104.507597,29.639255],[-104.677382,29.924056],[-104.688336,30.181472],[-104.858121,30.389596],[-104.896459,30.570335],[-105.005998,30.685351],[-105.394861,30.855136],[-105.602985,31.085167],[-105.77277,31.167321],[-105.953509,31.364491],[-106.205448,31.468553],[-106.38071,31.731446],[-106.528588,31.786216],[-106.643603,31.901231],[-106.616219,31.999816],[-103.067161,31.999816],[-103.067161,33.002096],[-103.045254,34.01533],[-103.039777,36.501861],[-103.001438,36.501861],[-101.812942,36.501861]]]}}, +{"type":"Feature","id":"49","properties":{"name":"Utah","density":34.30},"geometry":{"type":"Polygon","coordinates":[[[-112.164359,41.995232],[-111.047063,42.000709],[-111.047063,40.998429],[-109.04798,40.998429],[-109.053457,39.125316],[-109.058934,38.27639],[-109.042503,38.166851],[-109.042503,37.000263],[-110.499369,37.00574],[-114.048427,37.000263],[-114.04295,41.995232],[-112.164359,41.995232]]]}}, +{"type":"Feature","id":"50","properties":{"name":"Vermont","density":67.73},"geometry":{"type":"Polygon","coordinates":[[[-71.503554,45.013027],[-71.4926,44.914442],[-71.629524,44.750133],[-71.536416,44.585825],[-71.700724,44.41604],[-72.034817,44.322932],[-72.02934,44.07647],[-72.116971,43.994316],[-72.204602,43.769761],[-72.379864,43.572591],[-72.456542,43.150867],[-72.445588,43.008466],[-72.533219,42.953697],[-72.544173,42.80582],[-72.456542,42.729142],[-73.267129,42.745573],[-73.278083,42.833204],[-73.245221,43.523299],[-73.404052,43.687607],[-73.349283,43.769761],[-73.436914,44.043608],[-73.321898,44.246255],[-73.294514,44.437948],[-73.387622,44.618687],[-73.332852,44.804903],[-73.343806,45.013027],[-72.308664,45.002073],[-71.503554,45.013027]]]}}, +{"type":"Feature","id":"51","properties":{"name":"Virginia","density":204.5},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.397659,38.013497],[-75.244304,38.029928],[-75.375751,37.860142],[-75.512674,37.799896],[-75.594828,37.569865],[-75.802952,37.197433],[-75.972737,37.120755],[-76.027507,37.257679],[-75.939876,37.564388],[-75.671506,37.95325],[-75.397659,38.013497]]],[[[-76.016553,37.95325],[-75.994645,37.95325],[-76.043938,37.95325],[-76.016553,37.95325]]],[[[-78.349729,39.464886],[-77.82942,39.130793],[-77.719881,39.322485],[-77.566527,39.306055],[-77.456988,39.223901],[-77.456988,39.076023],[-77.248864,39.026731],[-77.117418,38.933623],[-77.040741,38.791222],[-77.128372,38.632391],[-77.248864,38.588575],[-77.325542,38.446175],[-77.281726,38.342113],[-77.013356,38.374975],[-76.964064,38.216144],[-76.613539,38.15042],[-76.514954,38.024451],[-76.235631,37.887527],[-76.3616,37.608203],[-76.246584,37.389126],[-76.383508,37.285064],[-76.399939,37.159094],[-76.273969,37.082417],[-76.410893,36.961924],[-76.619016,37.120755],[-76.668309,37.065986],[-76.48757,36.95097],[-75.994645,36.923586],[-75.868676,36.551154],[-79.510841,36.5402],[-80.294043,36.545677],[-80.978661,36.562108],[-81.679709,36.589492],[-83.673316,36.600446],[-83.136575,36.742847],[-83.070852,36.852385],[-82.879159,36.890724],[-82.868205,36.978355],[-82.720328,37.044078],[-82.720328,37.120755],[-82.353373,37.268633],[-81.969987,37.537003],[-81.986418,37.454849],[-81.849494,37.285064],[-81.679709,37.20291],[-81.55374,37.208387],[-81.362047,37.339833],[-81.225123,37.235771],[-80.967707,37.290541],[-80.513121,37.482234],[-80.474782,37.421987],[-80.29952,37.509618],[-80.294043,37.690357],[-80.184505,37.849189],[-79.998289,37.997066],[-79.921611,38.177805],[-79.724442,38.364021],[-79.647764,38.594052],[-79.477979,38.457129],[-79.313671,38.413313],[-79.209609,38.495467],[-78.996008,38.851469],[-78.870039,38.763838],[-78.404499,39.169131],[-78.349729,39.464886]]]]}}, +{"type":"Feature","id":"53","properties":{"name":"Washington","density":102.6},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.033359,49.000239],[-117.044313,47.762451],[-117.038836,46.426077],[-117.055267,46.343923],[-116.92382,46.168661],[-116.918344,45.993399],[-118.988627,45.998876],[-119.125551,45.933153],[-119.525367,45.911245],[-119.963522,45.823614],[-120.209985,45.725029],[-120.505739,45.697644],[-120.637186,45.746937],[-121.18488,45.604536],[-121.217742,45.670259],[-121.535404,45.725029],[-121.809251,45.708598],[-122.247407,45.549767],[-122.762239,45.659305],[-122.811531,45.960537],[-122.904639,46.08103],[-123.11824,46.185092],[-123.211348,46.174138],[-123.370179,46.146753],[-123.545441,46.261769],[-123.72618,46.300108],[-123.874058,46.239861],[-124.065751,46.327492],[-124.027412,46.464416],[-123.895966,46.535616],[-124.098612,46.74374],[-124.235536,47.285957],[-124.31769,47.357157],[-124.427229,47.740543],[-124.624399,47.88842],[-124.706553,48.184175],[-124.597014,48.381345],[-124.394367,48.288237],[-123.983597,48.162267],[-123.704273,48.167744],[-123.424949,48.118452],[-123.162056,48.167744],[-123.036086,48.080113],[-122.800578,48.08559],[-122.636269,47.866512],[-122.515777,47.882943],[-122.493869,47.587189],[-122.422669,47.318818],[-122.324084,47.346203],[-122.422669,47.576235],[-122.395284,47.800789],[-122.230976,48.030821],[-122.362422,48.123929],[-122.373376,48.288237],[-122.471961,48.468976],[-122.422669,48.600422],[-122.488392,48.753777],[-122.647223,48.775685],[-122.795101,48.8907],[-122.756762,49.000239],[-117.033359,49.000239]]],[[[-122.718423,48.310145],[-122.586977,48.35396],[-122.608885,48.151313],[-122.767716,48.227991],[-122.718423,48.310145]]],[[[-123.025132,48.583992],[-122.915593,48.715438],[-122.767716,48.556607],[-122.811531,48.419683],[-123.041563,48.458022],[-123.025132,48.583992]]]]}}, +{"type":"Feature","id":"54","properties":{"name":"West Virginia","density":77.06},"geometry":{"type":"Polygon","coordinates":[[[-80.518598,40.636951],[-80.518598,39.722302],[-79.477979,39.722302],[-79.488933,39.20747],[-79.291763,39.300578],[-79.094593,39.470363],[-78.963147,39.437501],[-78.765977,39.585379],[-78.470222,39.514178],[-78.431884,39.623717],[-78.267575,39.61824],[-78.174467,39.694917],[-78.004682,39.601809],[-77.834897,39.601809],[-77.719881,39.322485],[-77.82942,39.130793],[-78.349729,39.464886],[-78.404499,39.169131],[-78.870039,38.763838],[-78.996008,38.851469],[-79.209609,38.495467],[-79.313671,38.413313],[-79.477979,38.457129],[-79.647764,38.594052],[-79.724442,38.364021],[-79.921611,38.177805],[-79.998289,37.997066],[-80.184505,37.849189],[-80.294043,37.690357],[-80.29952,37.509618],[-80.474782,37.421987],[-80.513121,37.482234],[-80.967707,37.290541],[-81.225123,37.235771],[-81.362047,37.339833],[-81.55374,37.208387],[-81.679709,37.20291],[-81.849494,37.285064],[-81.986418,37.454849],[-81.969987,37.537003],[-82.101434,37.553434],[-82.293127,37.668449],[-82.342419,37.783465],[-82.50125,37.931343],[-82.621743,38.123036],[-82.594358,38.424267],[-82.331465,38.446175],[-82.293127,38.577622],[-82.172634,38.632391],[-82.221926,38.785745],[-82.03571,39.026731],[-81.887833,38.873376],[-81.783771,38.966484],[-81.811156,39.0815],[-81.685186,39.273193],[-81.57017,39.267716],[-81.455155,39.410117],[-81.345616,39.344393],[-81.219646,39.388209],[-80.830783,39.711348],[-80.737675,40.078303],[-80.600752,40.319289],[-80.595275,40.472643],[-80.666475,40.582182],[-80.518598,40.636951]]]}}, +{"type":"Feature","id":"55","properties":{"name":"Wisconsin","density":105.2},"geometry":{"type":"Polygon","coordinates":[[[-90.415429,46.568478],[-90.229213,46.508231],[-90.119674,46.338446],[-89.09001,46.135799],[-88.662808,45.987922],[-88.531362,46.020784],[-88.10416,45.922199],[-87.989145,45.796229],[-87.781021,45.675736],[-87.791975,45.500474],[-87.885083,45.363551],[-87.649574,45.341643],[-87.742682,45.199243],[-87.589328,45.095181],[-87.627666,44.974688],[-87.819359,44.95278],[-87.983668,44.722749],[-88.043914,44.563917],[-87.928898,44.536533],[-87.775544,44.640595],[-87.611236,44.837764],[-87.403112,44.914442],[-87.238804,45.166381],[-87.03068,45.22115],[-87.047111,45.089704],[-87.189511,44.969211],[-87.468835,44.552964],[-87.545512,44.322932],[-87.540035,44.158624],[-87.644097,44.103854],[-87.737205,43.8793],[-87.704344,43.687607],[-87.791975,43.561637],[-87.912467,43.249452],[-87.885083,43.002989],[-87.76459,42.783912],[-87.802929,42.493634],[-88.788778,42.493634],[-90.639984,42.510065],[-90.711184,42.636034],[-91.067185,42.75105],[-91.143862,42.909881],[-91.176724,43.134436],[-91.056231,43.254929],[-91.204109,43.353514],[-91.215062,43.501391],[-91.269832,43.616407],[-91.242447,43.775238],[-91.43414,43.994316],[-91.592971,44.032654],[-91.877772,44.202439],[-91.927065,44.333886],[-92.233773,44.443425],[-92.337835,44.552964],[-92.545959,44.569394],[-92.808852,44.750133],[-92.737652,45.117088],[-92.75956,45.286874],[-92.644544,45.440228],[-92.770513,45.566198],[-92.885529,45.577151],[-92.869098,45.719552],[-92.639067,45.933153],[-92.354266,46.015307],[-92.29402,46.075553],[-92.29402,46.667063],[-92.091373,46.749217],[-92.014696,46.705401],[-91.790141,46.694447],[-91.09457,46.864232],[-90.837154,46.95734],[-90.749522,46.88614],[-90.886446,46.754694],[-90.55783,46.584908],[-90.415429,46.568478]]]}}, +{"type":"Feature","id":"56","properties":{"name":"Wyoming","density":5.851},"geometry":{"type":"Polygon","coordinates":[[[-109.080842,45.002073],[-105.91517,45.002073],[-104.058488,44.996596],[-104.053011,43.002989],[-104.053011,41.003906],[-105.728954,40.998429],[-107.919731,41.003906],[-109.04798,40.998429],[-111.047063,40.998429],[-111.047063,42.000709],[-111.047063,44.476286],[-111.05254,45.002073],[-109.080842,45.002073]]]}}, +{"type":"Feature","id":"72","properties":{"name":"Puerto Rico","density":1082 },"geometry":{"type":"Polygon","coordinates":[[[-66.448338,17.984326],[-66.771478,18.006234],[-66.924832,17.929556],[-66.985078,17.973372],[-67.209633,17.956941],[-67.154863,18.19245],[-67.269879,18.362235],[-67.094617,18.515589],[-66.957694,18.488204],[-66.409999,18.488204],[-65.840398,18.433435],[-65.632274,18.367712],[-65.626797,18.203403],[-65.730859,18.186973],[-65.834921,18.017187],[-66.234737,17.929556],[-66.448338,17.984326]]]}} +]} \ No newline at end of file diff --git a/queries/activityFeed.ts b/queries/activityFeed.ts new file mode 100644 index 000000000..f7601b138 --- /dev/null +++ b/queries/activityFeed.ts @@ -0,0 +1,44 @@ +import { cacheLife } from 'next/cache'; +import 'server-only'; +import { type SearchParams } from '~/app/dashboard/_components/ActivityFeed/types'; +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; +import type { Prisma } from '~/lib/db/generated/client'; + +export async function fetchActivities(rawSearchParams: unknown) { + 'use cache'; + cacheLife('max'); + safeCacheTag('activityFeed'); + + const searchParams = rawSearchParams as SearchParams; + + const { page, perPage, sort, sortField, q, type } = searchParams; + + const offset = page > 0 ? (page - 1) * perPage : 0; + + const where: Prisma.EventsWhereInput = {}; + if (q) { + where.message = { contains: q }; + } + if (type && type.length > 0) { + where.type = { in: type }; + } + + const [count, events] = await Promise.all([ + prisma.events.count({ where }), + prisma.events.findMany({ + take: perPage, + skip: offset, + orderBy: + sort === 'none' + ? [{ timestamp: 'desc' }, { id: 'desc' }] + : [{ [sortField]: sort }, { id: sort }], + where, + }), + ]); + + const pageCount = Math.ceil(count / perPage); + return { events, pageCount }; +} + +export type ActivitiesFeed = ReturnType; diff --git a/queries/apiTokens.ts b/queries/apiTokens.ts new file mode 100644 index 000000000..43ccdb8be --- /dev/null +++ b/queries/apiTokens.ts @@ -0,0 +1,27 @@ +import { cacheLife } from 'next/cache'; +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; + +export async function getApiTokens() { + 'use cache'; + cacheLife('max'); + safeCacheTag('getApiTokens'); + + const tokens = await prisma.apiToken.findMany({ + select: { + id: true, + description: true, + createdAt: true, + lastUsedAt: true, + isActive: true, + // Never return the actual token in list queries + }, + orderBy: { + createdAt: 'desc', + }, + }); + + return tokens; +} + +export type GetApiTokensReturnType = Awaited>; diff --git a/queries/appSettings.ts b/queries/appSettings.ts new file mode 100644 index 000000000..6b125d0dd --- /dev/null +++ b/queries/appSettings.ts @@ -0,0 +1,108 @@ +import { cacheLife } from 'next/cache'; +import { redirect } from 'next/navigation'; +import { connection } from 'next/server'; +import 'server-only'; +import { type z } from 'zod'; +import { env } from '~/env'; +import { UNCONFIGURED_TIMEOUT } from '~/fresco.config'; +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; +import { + type AppSetting, + appSettingPreprocessedSchema, +} from '~/schemas/appSettings'; + +async function getCachedAppSettingRaw(key: AppSetting): Promise { + 'use cache'; + cacheLife('max'); + safeCacheTag([`appSettings-${key}`, 'appSettings']); + + const result = await prisma.appSettings.findUnique({ + where: { key }, + }); + + return result?.value ?? null; +} + +export async function getAppSetting( + key: Key, +): Promise[Key]> { + const rawValue = await getCachedAppSettingRaw(key); + + // Parse the cached raw value to the correct type + // Convert null to undefined so schema defaults work correctly + const parsedValue = appSettingPreprocessedSchema.shape[key].parse( + rawValue ?? undefined, + ); + + return parsedValue as z.infer[Key]; +} + +export async function requireAppNotExpired(isSetupRoute = false) { + await connection(); + + // Fetch both settings in parallel to avoid sequential database calls + const [isConfigured, initializedAt] = await Promise.all([ + getAppSetting('configured'), + getAppSetting('initializedAt'), + ]); + + // Check if app is expired (unconfigured and past timeout) + const expired = + !isConfigured && + initializedAt !== null && + initializedAt.getTime() < Date.now() - UNCONFIGURED_TIMEOUT; + + if (expired) { + redirect('/expired'); + } + + // If we are on the setup route, don't do any further redirection; + if (isSetupRoute) { + return; + } + + if (!isConfigured) { + redirect('/setup'); + } + + return; +} + +// Used to prevent user account creation after the app has been configured +export async function requireAppNotConfigured() { + await connection(); + + // Allow visiting /setup in development even after configuration + if (env.NODE_ENV === 'development') { + return; + } + + const configured = await getAppSetting('configured'); + + if (configured) { + redirect('/'); + } + + return; +} + +// Unique fetcher for installationID, which defers to the environment variable +// if set, and otherwise fetches from the database +export async function getInstallationId() { + if (env.INSTALLATION_ID) { + return env.INSTALLATION_ID; + } + + return getAppSetting('installationId'); +} + +// Unique fetcher for disableAnalytics, which defers to the environment variable +// if set, and otherwise fetches from the database +export async function getDisableAnalytics() { + if (env.DISABLE_ANALYTICS) { + return env.DISABLE_ANALYTICS; + } + + return getAppSetting('disableAnalytics'); +} diff --git a/queries/interviews.ts b/queries/interviews.ts new file mode 100644 index 000000000..cc7606f1e --- /dev/null +++ b/queries/interviews.ts @@ -0,0 +1,184 @@ +import 'server-only'; +import { cacheLife } from 'next/cache'; +import { stringify } from 'superjson'; +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; + +type NetworkSummaryEntry = { + type: string; + count: number; + name: string; + color?: string; +}; + +type InterviewNetworkSummary = { + nodes: NetworkSummaryEntry[]; + edges: NetworkSummaryEntry[]; +}; + +type InterviewListRow = { + id: string; + startTime: Date; + finishTime: Date | null; + exportTime: Date | null; + lastUpdated: Date; + currentStep: number; + protocolId: string; + isSynthetic: boolean; + participant: { identifier: string }; + protocol: { name: string; stageCount: number }; + network: InterviewNetworkSummary; +}; + +type RawInterviewRow = { + id: string; + startTime: Date; + finishTime: Date | null; + exportTime: Date | null; + lastUpdated: Date; + currentStep: number; + protocolId: string; + isSynthetic: boolean; + participantIdentifier: string; + protocolName: string; + stageCount: number; + nodeSummary: NetworkSummaryEntry[]; + edgeSummary: NetworkSummaryEntry[]; +}; + +async function prisma_getInterviews(): Promise { + const rows = await prisma.$queryRaw` + SELECT + i."id", + i."startTime", + i."finishTime", + i."exportTime", + i."lastUpdated", + i."currentStep", + i."protocolId", + i."isSynthetic", + par."identifier" AS "participantIdentifier", + p."name" AS "protocolName", + COALESCE(jsonb_array_length(p."stages"::jsonb), 0)::int AS "stageCount", + COALESCE( + (SELECT jsonb_agg(jsonb_build_object( + 'type', node_type, + 'count', cnt, + 'name', COALESCE(p."codebook"->'node'->node_type->>'name', 'Unknown'), + 'color', p."codebook"->'node'->node_type->>'color' + )) + FROM ( + SELECT n->>'type' AS node_type, COUNT(*)::int AS cnt + FROM jsonb_array_elements(COALESCE(i."network"->'nodes', '[]'::jsonb)) AS n + GROUP BY n->>'type' + ) node_counts), + '[]'::jsonb + ) AS "nodeSummary", + COALESCE( + (SELECT jsonb_agg(jsonb_build_object( + 'type', edge_type, + 'count', cnt, + 'name', COALESCE(p."codebook"->'edge'->edge_type->>'name', 'Unknown'), + 'color', p."codebook"->'edge'->edge_type->>'color' + )) + FROM ( + SELECT e->>'type' AS edge_type, COUNT(*)::int AS cnt + FROM jsonb_array_elements(COALESCE(i."network"->'edges', '[]'::jsonb)) AS e + GROUP BY e->>'type' + ) edge_counts), + '[]'::jsonb + ) AS "edgeSummary" + FROM "Interview" i + JOIN "Protocol" p ON i."protocolId" = p."id" + JOIN "Participant" par ON i."participantId" = par."id" + ORDER BY i."lastUpdated" DESC + `; + + return rows.map((row) => ({ + id: row.id, + startTime: row.startTime, + finishTime: row.finishTime, + exportTime: row.exportTime, + lastUpdated: row.lastUpdated, + currentStep: row.currentStep, + protocolId: row.protocolId, + isSynthetic: row.isSynthetic, + participant: { identifier: row.participantIdentifier }, + protocol: { name: row.protocolName, stageCount: row.stageCount }, + network: { + nodes: row.nodeSummary, + edges: row.edgeSummary, + }, + })); +} + +export type GetInterviewsQuery = InterviewListRow[]; + +export async function getInterviews() { + 'use cache'; + cacheLife('max'); + safeCacheTag('getInterviews'); + + const interviews = await prisma_getInterviews(); + const safeInterviews = stringify(interviews); + return safeInterviews; +} + +export type GetInterviewsReturnType = ReturnType; + +async function prisma_getInterviewsForExport(interviewIds: string[]) { + return prisma.interview.findMany({ + where: { + id: { + in: interviewIds, + }, + }, + include: { + protocol: true, + participant: true, + }, + }); +} + +export const getInterviewsForExport = async (interviewIds: string[]) => { + return prisma_getInterviewsForExport(interviewIds); +}; + +/** + * Because we use a client extension to parse the JSON fields, we can't use the + * automatically generated types from the Prisma client (Prisma.InterviewGetPayload). + * + * Instead, we have to infer the type from the return value. To do this, we + * have to define the function outside of getInterviewById. + */ +async function prisma_getInterviewById(interviewId: string) { + return prisma.interview.findUnique({ + where: { id: interviewId }, + include: { + protocol: { + include: { assets: true }, + omit: { + lastModified: true, + }, + }, + }, + }); +} +export type GetInterviewByIdQuery = Awaited< + ReturnType +>; + +// Note that this function should not be cached, because invalidating the cache +// would cause the interview route to reload, thereby clearing the redux store. +export const getInterviewById = async (interviewId: string) => { + const interview = await prisma_getInterviewById(interviewId); + + if (!interview) { + return null; + } + // We need to superjsonify the result, because we pass it to the client + // and it contains a Date object. + return stringify({ + ...interview, + }); +}; diff --git a/queries/participants.ts b/queries/participants.ts new file mode 100644 index 000000000..5429bb573 --- /dev/null +++ b/queries/participants.ts @@ -0,0 +1,32 @@ +import 'server-only'; +import { cacheLife } from 'next/cache'; +import { stringify } from 'superjson'; +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; + +async function prisma_getParticipants() { + return prisma.participant.findMany({ + include: { + interviews: true, + _count: { select: { interviews: true } }, + }, + orderBy: { identifier: 'asc' }, + }); +} + +export type GetParticipantsQuery = Awaited< + ReturnType +>; + +export async function getParticipants() { + 'use cache'; + cacheLife('max'); + safeCacheTag('getParticipants'); + + const participants = await prisma_getParticipants(); + const safeParticipants = stringify(participants); + return safeParticipants; +} + +type GetParticipantsType = typeof getParticipants; +export type GetParticipantsReturnType = ReturnType; diff --git a/queries/protocols.ts b/queries/protocols.ts new file mode 100644 index 000000000..b8d247f2e --- /dev/null +++ b/queries/protocols.ts @@ -0,0 +1,26 @@ +import { cacheLife } from 'next/cache'; +import { stringify } from 'superjson'; +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; + +async function prisma_getProtocols() { + return prisma.protocol.findMany({ + include: { + interviews: true, + }, + }); +} + +export type GetProtocolsQuery = Awaited>; + +export async function getProtocols() { + 'use cache'; + cacheLife('max'); + safeCacheTag('getProtocols'); + + const protocols = await prisma_getProtocols(); + const safeProtocols = stringify(protocols); + return safeProtocols; +} + +export type GetProtocolsReturnType = ReturnType; diff --git a/queries/storageProvider.ts b/queries/storageProvider.ts new file mode 100644 index 000000000..1b8822a31 --- /dev/null +++ b/queries/storageProvider.ts @@ -0,0 +1,15 @@ +import { prisma } from '~/lib/db'; +import { getAppSetting } from '~/queries/appSettings'; + +export type StorageProvider = 'uploadthing' | 's3'; + +export async function getStorageProvider(): Promise { + const provider = await getAppSetting('storageProvider'); + if (provider === 's3') return 's3'; + return 'uploadthing'; +} + +export async function hasProtocols(): Promise { + const count = await prisma.asset.count({ take: 1 }); + return count > 0; +} diff --git a/queries/summaryStatistics.ts b/queries/summaryStatistics.ts new file mode 100644 index 000000000..e61b5af3f --- /dev/null +++ b/queries/summaryStatistics.ts @@ -0,0 +1,27 @@ +import 'server-only'; +import { cacheLife } from 'next/cache'; +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; + +export async function getSummaryStatistics() { + 'use cache'; + cacheLife('max'); + safeCacheTag([ + 'summaryStatistics', + 'interviewCount', + 'protocolCount', + 'participantCount', + ]); + + const [interviewCount, protocolCount, participantCount] = await Promise.all([ + prisma.interview.count(), + prisma.protocol.count(), + prisma.participant.count(), + ]); + + return { + interviewCount, + protocolCount, + participantCount, + }; +} diff --git a/queries/synthetic-interviews.ts b/queries/synthetic-interviews.ts new file mode 100644 index 000000000..09c516dc8 --- /dev/null +++ b/queries/synthetic-interviews.ts @@ -0,0 +1,10 @@ +import { prisma } from '~/lib/db'; + +export async function getSyntheticInterviewCount() { + const [interviewCount, participantCount] = await Promise.all([ + prisma.interview.count({ where: { isSynthetic: true } }), + prisma.participant.count({ where: { isSynthetic: true } }), + ]); + + return { interviewCount, participantCount }; +} diff --git a/queries/users.ts b/queries/users.ts new file mode 100644 index 000000000..b68cc4aff --- /dev/null +++ b/queries/users.ts @@ -0,0 +1,31 @@ +import 'server-only'; +import { cacheLife } from 'next/cache'; + +import { safeCacheTag } from '~/lib/cache'; +import { prisma } from '~/lib/db'; + +export async function getUsers() { + 'use cache'; + cacheLife('max'); + safeCacheTag('getUsers'); + + const users = await prisma.user.findMany({ + select: { + id: true, + username: true, + totpCredential: { + select: { verified: true }, + }, + webAuthnCredentials: { + select: { id: true }, + }, + }, + orderBy: { + username: 'asc', + }, + }); + + return users; +} + +export type GetUsersReturnType = Awaited>; diff --git a/schemas/__tests__/apiTokens.test.ts b/schemas/__tests__/apiTokens.test.ts new file mode 100644 index 000000000..7c108c89e --- /dev/null +++ b/schemas/__tests__/apiTokens.test.ts @@ -0,0 +1,104 @@ +import { describe, expect, it, vi } from 'vitest'; + +vi.mock('server-only', () => ({})); +import { + createApiTokenSchema, + deleteApiTokenSchema, + updateApiTokenSchema, +} from '../apiTokens'; + +describe('API Token Schema Validators', () => { + describe('createApiTokenSchema', () => { + it('should parse valid data with description', () => { + const validData = { + description: 'Test token', + }; + + const result = createApiTokenSchema.parse(validData); + expect(result.description).toBe('Test token'); + }); + + it('should allow undefined description', () => { + const validData = {}; + + const result = createApiTokenSchema.parse(validData); + expect(result.description).toBeUndefined(); + }); + + it('should reject non-string description', () => { + const invalidData = { + description: 123, + }; + + expect(() => createApiTokenSchema.parse(invalidData)).toThrow(); + }); + }); + + describe('updateApiTokenSchema', () => { + it('should parse valid data with all fields', () => { + const validData = { + id: 'token-123', + description: 'Updated token', + isActive: false, + }; + + const result = updateApiTokenSchema.parse(validData); + expect(result.id).toBe('token-123'); + expect(result.description).toBe('Updated token'); + expect(result.isActive).toBe(false); + }); + + it('should parse valid data with only id', () => { + const validData = { + id: 'token-123', + }; + + const result = updateApiTokenSchema.parse(validData); + expect(result.id).toBe('token-123'); + expect(result.description).toBeUndefined(); + expect(result.isActive).toBeUndefined(); + }); + + it('should require id field', () => { + const invalidData = { + description: 'Updated token', + }; + + expect(() => updateApiTokenSchema.parse(invalidData)).toThrow(); + }); + + it('should reject non-boolean isActive', () => { + const invalidData = { + id: 'token-123', + isActive: 'true', + }; + + expect(() => updateApiTokenSchema.parse(invalidData)).toThrow(); + }); + }); + + describe('deleteApiTokenSchema', () => { + it('should parse valid data with id', () => { + const validData = { + id: 'token-123', + }; + + const result = deleteApiTokenSchema.parse(validData); + expect(result.id).toBe('token-123'); + }); + + it('should require id field', () => { + const invalidData = {}; + + expect(() => deleteApiTokenSchema.parse(invalidData)).toThrow(); + }); + + it('should reject non-string id', () => { + const invalidData = { + id: 123, + }; + + expect(() => deleteApiTokenSchema.parse(invalidData)).toThrow(); + }); + }); +}); diff --git a/schemas/__tests__/appSettings.test.ts b/schemas/__tests__/appSettings.test.ts new file mode 100644 index 000000000..09c7d7792 --- /dev/null +++ b/schemas/__tests__/appSettings.test.ts @@ -0,0 +1,123 @@ +import { describe, expect, it } from 'vitest'; +import { + appSettingPreprocessedSchema, + createUploadThingTokenFormSchema, +} from '../appSettings'; + +describe('App Settings Schema Validators', () => { + describe('App Setting Preprocessed Schema', () => { + it('should parse and convert string date to Date object', () => { + const validSettings = { + configured: 'true', + allowAnonymousRecruitment: 'false', + limitInterviews: 'true', + initializedAt: '2023-10-01T00:00:00.000Z', + installationId: 'installation123', + disableAnalytics: 'true', + }; + + const result = appSettingPreprocessedSchema.parse(validSettings); + expect(result.initializedAt).toBeInstanceOf(Date); + }); + + it('should preprocess boolean strings to booleans', () => { + const validSettings = { + configured: 'true', + allowAnonymousRecruitment: 'false', + limitInterviews: 'true', + initializedAt: '2023-10-01T00:00:00.000Z', + installationId: 'installation123', + disableAnalytics: 'true', + }; + + const result = appSettingPreprocessedSchema.parse(validSettings); + expect(result.configured).toBe(true); + expect(result.allowAnonymousRecruitment).toBe(false); + expect(result.limitInterviews).toBe(true); + expect(result.disableAnalytics).toBe(true); + }); + + it('should reject invalid date strings', () => { + const invalidSettings = { + configured: 'true', + allowAnonymousRecruitment: 'false', + limitInterviews: 'true', + initializedAt: 'invalid-date', + installationId: 'installation123', + disableAnalytics: 'true', + }; + + expect(() => + appSettingPreprocessedSchema.parse(invalidSettings), + ).toThrow(); + }); + + it('should allow valid URL strings', () => { + const validSettings = { + configured: 'true', + allowAnonymousRecruitment: 'false', + limitInterviews: 'true', + initializedAt: '2023-10-01T00:00:00.000Z', + installationId: 'installation123', + disableAnalytics: 'true', + }; + + expect(appSettingPreprocessedSchema.parse(validSettings)).toEqual({ + configured: true, + allowAnonymousRecruitment: false, + limitInterviews: true, + initializedAt: new Date('2023-10-01T00:00:00.000Z'), + installationId: 'installation123', + disableAnalytics: true, + disableSmallScreenOverlay: false, + freezeInterviewsAfterCompletion: true, + enableInterviewDataApi: false, + }); + }); + + it('should allow undefined optional fields', () => { + const validSettings = { + configured: 'true', + allowAnonymousRecruitment: 'false', + limitInterviews: 'true', + initializedAt: '2023-10-01T00:00:00.000Z', + installationId: 'installation123', + disableAnalytics: 'true', + }; + + expect(appSettingPreprocessedSchema.parse(validSettings)).toEqual({ + configured: true, + allowAnonymousRecruitment: false, + limitInterviews: true, + initializedAt: new Date('2023-10-01T00:00:00.000Z'), + installationId: 'installation123', + disableAnalytics: true, + disableSmallScreenOverlay: false, + freezeInterviewsAfterCompletion: true, + enableInterviewDataApi: false, + }); + }); + }); + describe('UPLOADTHING_TOKEN Parsing through Schema', () => { + it("should parse token value from UPLOADTHING_TOKEN='token'", () => { + const result = createUploadThingTokenFormSchema.parse({ + uploadThingToken: "UPLOADTHING_TOKEN='ABCD1234Token'", + }); + expect(result.uploadThingToken).toBe('ABCD1234Token'); + }); + + it('should remove surrounding quotes', () => { + const result = createUploadThingTokenFormSchema.parse({ + uploadThingToken: "'ABCD1234Token'", + }); + expect(result.uploadThingToken).toBe('ABCD1234Token'); + }); + + it('should not change already correct tokens', () => { + const result = createUploadThingTokenFormSchema.parse({ + uploadThingToken: 'ABCD1234Token', + }); + expect(result.uploadThingToken).toBe('ABCD1234Token'); + }); + }); +}); diff --git a/schemas/__tests__/participant.test.js b/schemas/__tests__/participant.test.js new file mode 100644 index 000000000..c1dedda9a --- /dev/null +++ b/schemas/__tests__/participant.test.js @@ -0,0 +1,361 @@ +import { describe, expect, it } from 'vitest'; +import { + FormSchema, + ParticipantRowSchema, + participantIdentifierOptionalSchema, + participantIdentifierSchema, + participantLabelRequiredSchema, + participantLabelSchema, + updateSchema, +} from '../participant'; + +describe('Participant Schema Validators', () => { + describe('Participant Identifier Schema', () => { + it('should allow valid identifiers', () => { + expect(participantIdentifierSchema.parse('abcd1234')).toBe('abcd1234'); + }); + + it('should reject strings longer than 255 characters', () => { + expect(() => participantIdentifierSchema.parse('a'.repeat(256))).toThrow( + 'Identifier too long. Maximum of 255 characters.', + ); + }); + + it('should reject empty strings', () => { + expect(() => participantIdentifierSchema.parse('')).toThrow( + 'Identifier cannot be empty', + ); + }); + + it('should reject strings with only whitespace characters', () => { + expect(() => participantIdentifierSchema.parse(' ')).toThrow( + 'Identifier requires one or more non-whitespace characters.', + ); + }); + + it('should allow and trim valid identifiers with leading and trailing whitespace characters', () => { + expect(participantIdentifierSchema.parse(' abcd1234 ')).toBe( + 'abcd1234', + ); + }); + }); + describe('Participant Identifier Optional Schema', () => { + it('should allow valid identifiers', () => { + expect(participantIdentifierOptionalSchema.parse('abcd1234')).toBe( + 'abcd1234', + ); + }); + + it('should reject strings longer than 255 characters', () => { + expect(() => + participantIdentifierOptionalSchema.parse('a'.repeat(256)), + ).toThrow('Identifier too long. Maximum of 255 characters.'); + }); + + it('should accept empty strings', () => { + expect(participantIdentifierOptionalSchema.parse('')).toBe(undefined); + expect(participantIdentifierOptionalSchema.parse(' ')).toBe(undefined); + }); + + it('should allow and trim valid identifiers with leading and trailing whitespace characters', () => { + expect(participantIdentifierOptionalSchema.parse(' abcd1234 ')).toBe( + 'abcd1234', + ); + }); + }); + describe('Participant Label (Optional) Schema', () => { + it('should allow valid labels', () => { + expect(participantLabelSchema.parse('Label1')).toBe('Label1'); + }); + it('should allow empty strings', () => { + expect(participantLabelSchema.parse('')).toBe(undefined); + }); + it('should allow and trim label with only whitespace characters to undefined', () => { + expect(participantLabelSchema.parse(' ')).toBe(undefined); + }); + }); + describe('Participant Label Required Schema', () => { + it('should allow valid labels', () => { + expect(participantLabelRequiredSchema.parse('abcd')).toBe('abcd'); + }); + it('should reject empty strings', () => { + expect(() => participantLabelRequiredSchema.parse('')).toThrow( + 'Label requires one or more non-whitespace characters.', + ); + }); + it('should reject label with only whitespace characters', () => { + expect(() => participantLabelRequiredSchema.parse(' ')).toThrow( + 'Label requires one or more non-whitespace characters.', + ); + }); + }); +}); + +describe('Participant Row Schema - CSV import row', () => { + it('should allow valid identifier and optional label', () => { + expect( + ParticipantRowSchema.parse({ + identifier: 'abcd1234', + label: 'Label1', + }), + ).toEqual({ + identifier: 'abcd1234', + label: 'Label1', + }); + }); + + it('should allow valid identifier without label', () => { + expect( + ParticipantRowSchema.parse({ + identifier: 'abcd1234', + }), + ).toEqual({ + identifier: 'abcd1234', + }); + }); + + it('should allow valid identifier with empty string label', () => { + expect( + ParticipantRowSchema.parse({ + identifier: 'abcd1234', + label: '', + }), + ).toEqual({ + identifier: 'abcd1234', + label: undefined, + }); + }); + + it('should allow valid label and optional identifier', () => { + expect( + ParticipantRowSchema.parse({ + label: 'Label1', + identifier: 'abcd1234', + }), + ).toEqual({ + label: 'Label1', + identifier: 'abcd1234', + }); + }); + + it('should allow valid label without identifier', () => { + expect( + ParticipantRowSchema.parse({ + label: 'Label1', + }), + ).toEqual({ + label: 'Label1', + }); + }); + + it('should allow valid label with empty string identifier', () => { + expect( + ParticipantRowSchema.parse({ + label: 'Label1', + identifier: '', + }), + ).toEqual({ + label: 'Label1', + identifier: undefined, + }); + }); + + it('should reject if both identifier and label are empty strings', () => { + expect(() => + ParticipantRowSchema.parse({ + identifier: '', + label: '', + }), + ).toThrow('Identifier cannot be empty'); + }); + + it('should reject invalid identifier even when label is provided', () => { + expect(() => + ParticipantRowSchema.parse({ + label: 'Label1', + identifier: 'a'.repeat(256), + }), + ).toThrow('Identifier too long. Maximum of 255 characters.'); + }); + + it('should reject empty label and no identifier', () => { + expect(() => + ParticipantRowSchema.parse({ + label: '', + }), + ).toThrow('Label requires one or more non-whitespace characters.'); + }); + + it('should reject empty identifier and no label', () => { + expect(() => + ParticipantRowSchema.parse({ + identifier: '', + }), + ).toThrow('Identifier requires one or more non-whitespace characters.'); + }); + + it('should reject whitespace label and no identifier', () => { + expect(() => + ParticipantRowSchema.parse({ + label: ' ', + }), + ).toThrow('Label requires one or more non-whitespace characters.'); + }); + + it('should reject whitespace identifier and no label', () => { + expect(() => + ParticipantRowSchema.parse({ + identifier: ' ', + }), + ).toThrow('Identifier requires one or more non-whitespace characters.'); + }); +}); + +describe('Update Schema', () => { + it('should parse valid update data with both existing and new identifier', () => { + const validUpdate = { + existingIdentifier: 'old-identifier-123', + formData: { + identifier: 'new-identifier-456', + label: 'Updated Label', + }, + }; + + const result = updateSchema.parse(validUpdate); + expect(result).toEqual({ + existingIdentifier: 'old-identifier-123', + formData: { + identifier: 'new-identifier-456', + label: 'Updated Label', + }, + }); + }); + + it('should parse valid update data when keeping the same identifier', () => { + const validUpdate = { + existingIdentifier: 'same-identifier-123', + formData: { + identifier: 'same-identifier-123', + label: 'Updated Label', + }, + }; + + const result = updateSchema.parse(validUpdate); + expect(result).toEqual({ + existingIdentifier: 'same-identifier-123', + formData: { + identifier: 'same-identifier-123', + label: 'Updated Label', + }, + }); + }); + + it('should reject invalid existing identifier', () => { + const invalidUpdate = { + existingIdentifier: '', + formData: { + identifier: 'new-identifier-123', + label: 'Label', + }, + }; + + expect(() => updateSchema.parse(invalidUpdate)).toThrow( + 'Identifier cannot be empty', + ); + }); + + it('should reject invalid new identifier in formData', () => { + const invalidUpdate = { + existingIdentifier: 'old-id-123', + formData: { + identifier: '', + label: 'Label', + }, + }; + + expect(() => updateSchema.parse(invalidUpdate)).toThrow( + 'Identifier cannot be empty', + ); + }); + + it('should trim whitespace from identifiers', () => { + const updateWithWhitespace = { + existingIdentifier: ' old-id-123 ', + formData: { + identifier: ' new-id-456 ', + label: ' Updated Label ', + }, + }; + + const result = updateSchema.parse(updateWithWhitespace); + expect(result).toEqual({ + existingIdentifier: 'old-id-123', + formData: { + identifier: 'new-id-456', + label: 'Updated Label', + }, + }); + }); + + it('should require the nested formData structure', () => { + const flattenedUpdate = { + identifier: 'p-123', + label: 'Label', + }; + + // Should fail bc schema expects existingIdentifier and formData + expect(() => updateSchema.parse(flattenedUpdate)).toThrow(); + }); + + it('should require existingIdentifier field', () => { + // if existingIdentifier is missing, should throw error + const missingExistingIdentifier = { + formData: { + identifier: 'new-id-123', + label: 'Label', + }, + }; + + expect(() => updateSchema.parse(missingExistingIdentifier)).toThrow(); + }); + + it('should require formData field with identifier and label', () => { + // if formData is missing, should throw error + const missingFormData = { + existingIdentifier: 'old-id', + }; + + expect(() => updateSchema.parse(missingFormData)).toThrow(); + }); +}); + +describe('CSV Schema', () => { + it('should allow valid CSV with multiple rows', () => { + const validCsv = [ + { identifier: 'abcd1234', label: 'Label1' }, + { identifier: 'xyz7890', label: '' }, + { identifier: 'abcd5678' }, + { label: 'Label2', identifier: 'abcd3456' }, + { label: 'Label3' }, + ]; + + expect(FormSchema.parse({ csvFile: validCsv })).toEqual({ + csvFile: [ + { identifier: 'abcd1234', label: 'Label1' }, + { identifier: 'xyz7890', label: undefined }, + { identifier: 'abcd5678' }, + { identifier: 'abcd3456', label: 'Label2' }, + { identifier: undefined, label: 'Label3' }, + ], + }); + }); + + it('should reject invalid CSV with an invalid row', () => { + const invalidCsv = [ + { identifier: ' abcd1234', label: 'Label1' }, + { identifier: '', label: ' ' }, + ]; + + expect(() => FormSchema.parse({ csvFile: invalidCsv })).toThrow(); + }); +}); diff --git a/schemas/__tests__/totp.test.ts b/schemas/__tests__/totp.test.ts new file mode 100644 index 000000000..90b846fe2 --- /dev/null +++ b/schemas/__tests__/totp.test.ts @@ -0,0 +1,85 @@ +import { describe, expect, it, vi } from 'vitest'; + +vi.mock('server-only', () => ({})); +import { + disableTotpSchema, + verifyTotpSetupSchema, + verifyTwoFactorSchema, +} from '../totp'; + +describe('TOTP Schema Validators', () => { + describe('verifyTotpSetupSchema', () => { + it('accepts a valid 6-digit numeric code', () => { + const result = verifyTotpSetupSchema.parse({ code: '123456' }); + expect(result.code).toBe('123456'); + }); + + it('rejects a code containing non-numeric characters', () => { + expect(() => verifyTotpSetupSchema.parse({ code: '12345a' })).toThrow(); + }); + + it('rejects a code shorter than 6 digits', () => { + expect(() => verifyTotpSetupSchema.parse({ code: '12345' })).toThrow(); + }); + + it('rejects a code longer than 6 digits', () => { + expect(() => verifyTotpSetupSchema.parse({ code: '1234567' })).toThrow(); + }); + + it('rejects when code is omitted because the prefault empty string fails length validation', () => { + expect(() => verifyTotpSetupSchema.parse({})).toThrow(); + }); + }); + + describe('verifyTwoFactorSchema', () => { + it('accepts valid twoFactorToken and code values', () => { + const result = verifyTwoFactorSchema.parse({ + twoFactorToken: 'token-abc', + code: '654321', + }); + expect(result.twoFactorToken).toBe('token-abc'); + expect(result.code).toBe('654321'); + }); + + it('rejects an empty twoFactorToken', () => { + expect(() => + verifyTwoFactorSchema.parse({ twoFactorToken: '', code: '123456' }), + ).toThrow(); + }); + + it('rejects an empty code', () => { + expect(() => + verifyTwoFactorSchema.parse({ + twoFactorToken: 'token-abc', + code: '', + }), + ).toThrow(); + }); + + it('rejects when code is omitted because the prefault empty string fails min(1) validation', () => { + expect(() => + verifyTwoFactorSchema.parse({ twoFactorToken: 'token-abc' }), + ).toThrow(); + }); + }); + + describe('disableTotpSchema', () => { + it('accepts a valid 6-digit numeric code', () => { + const result = disableTotpSchema.parse({ code: '987654' }); + expect(result.code).toBe('987654'); + }); + + it('rejects a code containing non-numeric characters', () => { + expect(() => disableTotpSchema.parse({ code: 'abc123' })).toThrow(); + }); + + it('rejects a code that is not 6 digits long', () => { + expect(() => disableTotpSchema.parse({ code: '12345' })).toThrow(); + expect(() => disableTotpSchema.parse({ code: '1234567' })).toThrow(); + }); + + it('rejects when code is omitted because the prefault empty string fails length validation', () => { + expect(() => disableTotpSchema.parse({})).toThrow(); + }); + }); +}); diff --git a/schemas/apiTokens.ts b/schemas/apiTokens.ts new file mode 100644 index 000000000..47e9a4766 --- /dev/null +++ b/schemas/apiTokens.ts @@ -0,0 +1,16 @@ +import 'server-only'; +import { z } from 'zod'; + +export const createApiTokenSchema = z.object({ + description: z.string().optional(), +}); + +export const updateApiTokenSchema = z.object({ + id: z.string(), + description: z.string().optional(), + isActive: z.boolean().optional(), +}); + +export const deleteApiTokenSchema = z.object({ + id: z.string(), +}); diff --git a/schemas/appSettings.ts b/schemas/appSettings.ts new file mode 100644 index 000000000..f946e6ca8 --- /dev/null +++ b/schemas/appSettings.ts @@ -0,0 +1,90 @@ +import { z } from 'zod'; +import { z as zm } from 'zod/mini'; + +const appSettingsSchema = z + .object({ + initializedAt: z.date(), + configured: z.boolean(), + allowAnonymousRecruitment: z.boolean(), + limitInterviews: z.boolean(), + uploadThingToken: z.string(), + installationId: z.string(), + disableAnalytics: z.boolean(), + disableSmallScreenOverlay: z.boolean(), + freezeInterviewsAfterCompletion: z.boolean(), + enableInterviewDataApi: z.boolean(), + storageProvider: z.enum(['uploadthing', 's3']), + s3Endpoint: z.string(), + s3Bucket: z.string(), + s3Region: z.string(), + s3AccessKeyId: z.string(), + s3SecretAccessKey: z.string(), + }) + .strict(); + +export type AppSetting = keyof z.infer; + +const parseBoolean = (value: unknown): boolean | undefined => { + if (typeof value === 'boolean') return value; + if (value === 'true') return true; + if (value === 'false') return false; + return undefined; +}; + +// Variation of the schema that converts the string types in the db to the correct types +export const appSettingPreprocessedSchema = appSettingsSchema.extend({ + initializedAt: z.preprocess( + (val) => + val == null ? null : new Date(typeof val === 'string' ? val : ''), + z.date().nullable().default(null), + ), + configured: z.preprocess(parseBoolean, z.boolean().default(false)), + allowAnonymousRecruitment: z.preprocess( + parseBoolean, + z.boolean().default(false), + ), + limitInterviews: z.preprocess(parseBoolean, z.boolean().default(false)), + disableAnalytics: z.preprocess(parseBoolean, z.boolean().default(false)), + disableSmallScreenOverlay: z.preprocess( + parseBoolean, + z.boolean().default(false), + ), + freezeInterviewsAfterCompletion: z.preprocess( + parseBoolean, + z.boolean().default(true), + ), + enableInterviewDataApi: z.preprocess( + parseBoolean, + z.boolean().default(false), + ), + storageProvider: z.preprocess( + (val) => (typeof val === 'string' ? val : undefined), + z.enum(['uploadthing', 's3']).optional(), + ), + s3Endpoint: z.string().optional(), + s3Bucket: z.string().optional(), + s3Region: z.string().optional(), + s3AccessKeyId: z.string().optional(), + s3SecretAccessKey: z.string().optional(), + uploadThingToken: z.string().optional(), + installationId: z.string().optional(), +}); + +// Custom parser for UPLOADTHING_TOKEN to remove token name and quotes +const parseUploadThingToken = (token: string) => { + return token.replace(/^(UPLOADTHING_TOKEN=)?['"]?|['"]$/g, '').trim(); +}; + +// Client-side schema using zod/mini for smaller bundle +export const createUploadThingTokenSchema = zm.pipe( + zm + .string() + .check( + zm.minLength(10, 'UPLOADTHING_TOKEN must have at least 10 characters.'), + ), + zm.transform((token: string) => parseUploadThingToken(token)), +); + +export const createUploadThingTokenFormSchema = zm.object({ + uploadThingToken: createUploadThingTokenSchema, +}); diff --git a/schemas/auth.ts b/schemas/auth.ts new file mode 100644 index 000000000..758ccac19 --- /dev/null +++ b/schemas/auth.ts @@ -0,0 +1,49 @@ +import { z } from 'zod/mini'; +import { isStrongPassword } from '~/utils/isStrongPassword'; + +export const createUserSchema = z + .object({ + username: z.prefault( + z + .string() + .check(z.minLength(4, 'Username must be at least 4 characters')) + .check( + z.refine((s) => !s.includes(' '), 'Username cannot contain spaces'), + ), + '', + ), + password: z.prefault( + z + .string() + .check( + z.refine( + isStrongPassword, + 'Password must contain at least 1 lowercase, 1 uppercase, 1 number, and 1 symbol', + ), + ), + '', + ), + confirmPassword: z.prefault(z.string().check(z.minLength(1)), ''), + }) + .check( + z.superRefine((val, ctx) => { + if (val.password !== val.confirmPassword) { + ctx.addIssue({ + code: 'custom', + message: 'Passwords do not match', + path: ['confirmPassword'], + }); + } + }), + ); + +export const loginSchema = z.object({ + username: z.prefault( + z.string().check(z.minLength(1, 'Username cannot be empty')), + '', + ), + password: z.prefault( + z.string().check(z.minLength(1, 'Password cannot be empty')), + '', + ), +}); diff --git a/schemas/export.ts b/schemas/export.ts new file mode 100644 index 000000000..ed2c4269f --- /dev/null +++ b/schemas/export.ts @@ -0,0 +1,7 @@ +import { z } from 'zod/mini'; +import { ExportOptionsSchema } from '@codaco/network-exporters/options'; + +export const exportInterviewsSchema = z.object({ + interviewIds: z.array(z.string()).check(z.minLength(1)), + exportOptions: ExportOptionsSchema, +}); diff --git a/schemas/interviews.ts b/schemas/interviews.ts new file mode 100644 index 000000000..4b9a25d05 --- /dev/null +++ b/schemas/interviews.ts @@ -0,0 +1,10 @@ +import { type Participant, type Protocol } from '~/lib/db/generated/client'; + +export type DeleteInterviews = { + id: string; +}[]; + +export type CreateInterview = { + participantIdentifier?: Participant['identifier']; + protocolId: Protocol['id']; +}; diff --git a/schemas/participant.ts b/schemas/participant.ts new file mode 100644 index 000000000..3efb2fe26 --- /dev/null +++ b/schemas/participant.ts @@ -0,0 +1,96 @@ +import { z } from 'zod/mini'; + +// Utility function to check for non-whitespace characters +const hasNonWhitespaceCharacters = (input: string | undefined) => + input && input.length > 0; + +export const participantIdentifierSchema = z + .string() + .check(z.minLength(1, 'Identifier cannot be empty')) + .check(z.maxLength(255, 'Identifier too long. Maximum of 255 characters.')) + .check(z.trim()) + .check( + z.refine( + hasNonWhitespaceCharacters, + 'Identifier requires one or more non-whitespace characters.', + ), + ); + +export const participantIdentifierOptionalSchema = z.optional( + z.pipe( + z + .string() + .check( + z.maxLength(255, 'Identifier too long. Maximum of 255 characters.'), + ) + .check(z.trim()), + z.transform((e) => (e === '' ? undefined : e)), + ), +); + +export const participantLabelSchema = z.optional( + z.pipe( + z.string().check(z.trim()), + z.transform((e) => (e === '' ? undefined : e)), + ), +); + +export const participantLabelRequiredSchema = z + .string() + .check(z.trim()) + .check( + z.refine( + hasNonWhitespaceCharacters, + 'Label requires one or more non-whitespace characters.', + ), + ); + +export const ParticipantRowSchema = z.union([ + z.object({ + identifier: participantIdentifierSchema, + label: participantLabelSchema, + }), + z.object({ + label: participantLabelRequiredSchema, + identifier: participantIdentifierOptionalSchema, + }), +]); + +export const FormSchema = z.object({ + csvFile: z.array(ParticipantRowSchema, { + message: 'Invalid CSV', + }), +}); + +export type FormSchema = z.infer; + +// Used for import +export const participantListInputSchema = z.array(ParticipantRowSchema); + +export const updateSchema = z.object({ + existingIdentifier: participantIdentifierSchema, + formData: z.object({ + identifier: participantIdentifierSchema, + label: participantLabelSchema, + }), +}); + +// CSV validation schemas used by DropzoneField +const csvRowSchema = z.object({ + label: z.optional(z.string()), + identifier: z.optional(z.string()), +}); + +export const csvDataSchema = z + .array(csvRowSchema) + .check( + z.refine( + (rows) => + rows.every( + (row) => + (row.label !== undefined && row.label !== '') || + row.identifier !== undefined, + ), + 'Invalid CSV. Every row must have either a label or an identifier', + ), + ); diff --git a/schemas/protocol.ts b/schemas/protocol.ts new file mode 100644 index 000000000..97948b91a --- /dev/null +++ b/schemas/protocol.ts @@ -0,0 +1,26 @@ +import 'server-only'; +import { CurrentProtocolSchema } from '@codaco/protocol-validation'; +import { z } from 'zod'; + +const assetInsertSchema = z.object({ + key: z.string(), + assetId: z.string(), + name: z.string(), + type: z.string(), + url: z.string(), + size: z.number(), + value: z.string().optional(), +}); + +export type AssetInsertType = z.infer; + +export const protocolInsertSchema = z.object({ + protocol: CurrentProtocolSchema, + protocolName: z.string(), + newAssets: z.array(assetInsertSchema), + existingAssetIds: z.array(z.string()), + originalFile: z.object({ + key: z.string(), + url: z.string(), + }), +}); diff --git a/schemas/s3Settings.ts b/schemas/s3Settings.ts new file mode 100644 index 000000000..a49713dce --- /dev/null +++ b/schemas/s3Settings.ts @@ -0,0 +1,13 @@ +import { z as zm } from 'zod/mini'; + +export const s3ConfigSchema = zm.object({ + s3Endpoint: zm.string().check(zm.minLength(1, 'Endpoint URL is required.')), + s3Bucket: zm.string().check(zm.minLength(1, 'Bucket name is required.')), + s3Region: zm.string().check(zm.minLength(1, 'Region is required.')), + s3AccessKeyId: zm + .string() + .check(zm.minLength(1, 'Access Key ID is required.')), + s3SecretAccessKey: zm + .string() + .check(zm.minLength(1, 'Secret Access Key is required.')), +}); diff --git a/schemas/synthetic-interviews.ts b/schemas/synthetic-interviews.ts new file mode 100644 index 000000000..6f5380b68 --- /dev/null +++ b/schemas/synthetic-interviews.ts @@ -0,0 +1,8 @@ +import { z } from 'zod'; + +export const generateSyntheticInterviewsSchema = z.object({ + protocolId: z.string().min(1), + count: z.number().int().min(1).max(1000), + simulateDropOut: z.boolean().default(true), + respectSkipLogicAndFiltering: z.boolean().default(false), +}); diff --git a/schemas/totp.ts b/schemas/totp.ts new file mode 100644 index 000000000..a62bded4c --- /dev/null +++ b/schemas/totp.ts @@ -0,0 +1,25 @@ +import 'server-only'; +import { z } from 'zod'; + +export const verifyTotpSetupSchema = z.object({ + code: z + .string() + .length(6, { error: 'Code must be exactly 6 digits' }) + .regex(/^\d{6}$/, { error: 'Code must be exactly 6 digits' }) + .prefault(''), +}); + +export const verifyTwoFactorSchema = z.object({ + twoFactorToken: z.string().min(1, { error: 'Two-factor token is required' }), + code: z.string().min(1, { error: 'Code cannot be empty' }).prefault(''), +}); + +export const disableTotpSchema = z.object({ + code: z + .string() + .min(1, { error: 'Code is required' }) + .refine((val) => /^\d{6}$/.test(val) || /^[0-9a-f]{20}$/.test(val), { + error: 'Must be a 6-digit code or a recovery code', + }) + .prefault(''), +}); diff --git a/schemas/users.ts b/schemas/users.ts new file mode 100644 index 000000000..ed9e25c4f --- /dev/null +++ b/schemas/users.ts @@ -0,0 +1,34 @@ +import 'server-only'; +import { z } from 'zod'; +import { isStrongPassword } from '~/utils/isStrongPassword'; + +export const deleteUsersSchema = z.object({ + ids: z + .array(z.string().min(1)) + .min(1, { error: 'At least one user ID is required' }), +}); + +export const changePasswordSchema = z + .object({ + currentPassword: z + .string() + .min(1, { error: 'Current password is required' }) + .prefault(''), + newPassword: z + .string() + .refine(isStrongPassword, { + error: + 'Password must contain at least 1 lowercase, 1 uppercase, 1 number, and 1 symbol', + }) + .prefault(''), + confirmNewPassword: z.string().min(1).prefault(''), + }) + .superRefine((val, ctx) => { + if (val.newPassword !== val.confirmNewPassword) { + ctx.addIssue({ + code: 'custom', + message: 'Passwords do not match', + path: ['confirmNewPassword'], + }); + } + }); diff --git a/scripts/__tests__/migrate-protocols-to-v8.test.ts b/scripts/__tests__/migrate-protocols-to-v8.test.ts new file mode 100644 index 000000000..94feaf55a --- /dev/null +++ b/scripts/__tests__/migrate-protocols-to-v8.test.ts @@ -0,0 +1,250 @@ +import { hashProtocol, migrateProtocol } from '@codaco/protocol-validation'; +import { beforeEach, describe, expect, it, vi } from 'vitest'; +import { migrateProtocolsToV8 } from '~/scripts/migrate-protocols-to-v8'; + +/** + * A minimal v7 protocol JSON containing the fields the v7→v8 migration + * actually transforms (iconVariant on a node, Toggle with options, alter + * filter rule). This lets the tests verify the real migration applies, not + * just that some hand-rolled stub produced the right output. + */ +function makeV7Protocol() { + return { + schemaVersion: 7, + description: 'Test protocol', + lastModified: '2024-01-01T00:00:00.000Z', + codebook: { + node: { + person: { + name: 'Person', + color: 'node-color-seq-1', + iconVariant: 'add-a-person', + variables: { + isAttending: { + name: 'isAttending', + type: 'boolean', + component: 'Toggle', + options: [ + { label: 'Yes', value: true }, + { label: 'No', value: false }, + ], + }, + }, + }, + }, + edge: {}, + ego: { variables: {} }, + }, + stages: [ + { + id: 'stage-1', + type: 'Information', + label: 'Stage 1', + items: [], + }, + ], + }; +} + +type MockPrisma = { + protocol: { + findMany: ReturnType; + update: ReturnType; + findFirst: ReturnType; + }; +}; + +function makeMockPrisma(): MockPrisma { + return { + protocol: { + findMany: vi.fn().mockResolvedValue([]), + update: vi.fn().mockResolvedValue({}), + findFirst: vi.fn().mockResolvedValue(null), + }, + }; +} + +describe('migrateProtocolsToV8', () => { + beforeEach(() => { + vi.clearAllMocks(); + }); + + it('is a no-op when there are no v7 protocols', async () => { + const prisma = makeMockPrisma(); + + await migrateProtocolsToV8( + prisma as unknown as Parameters[0], + ); + + expect(prisma.protocol.update).not.toHaveBeenCalled(); + }); + + it('migrates a v7 protocol row to v8 and writes the result back', async () => { + const v7 = makeV7Protocol(); + const prisma = makeMockPrisma(); + prisma.protocol.findMany.mockResolvedValue([ + { + id: 'cm-protocol-1', + name: 'Test Protocol.netcanvas', + schemaVersion: 7, + stages: v7.stages, + codebook: v7.codebook, + experiments: null, + description: v7.description, + lastModified: new Date(v7.lastModified), + }, + ]); + + await migrateProtocolsToV8( + prisma as unknown as Parameters[0], + ); + + expect(prisma.protocol.update).toHaveBeenCalledTimes(1); + + type UpdateCallArg = { + where: { id: string }; + data: { + schemaVersion: number; + experiments: unknown; + codebook: { + node: { person: Record }; + }; + hash: string; + }; + }; + + const rawCall: unknown = prisma.protocol.update.mock.calls[0]?.[0]; + expect(rawCall).toBeDefined(); + const updateCall = rawCall as UpdateCallArg; + + expect(updateCall.where).toEqual({ id: 'cm-protocol-1' }); + expect(updateCall.data.schemaVersion).toBe(8); + expect(updateCall.data.experiments).toEqual({}); + + // iconVariant → icon, with shape added + const personNode = updateCall.data.codebook.node.person; + expect(personNode.icon).toBe('add-a-person'); + expect(personNode).not.toHaveProperty('iconVariant'); + expect(personNode.shape).toEqual({ default: 'circle' }); + + // Toggle options removed + const toggleVar = personNode.variables as { + isAttending: Record; + }; + expect(toggleVar.isAttending).not.toHaveProperty('options'); + + // Hash recomputed + expect(typeof updateCall.data.hash).toBe('string'); + expect(updateCall.data.hash.length).toBeGreaterThan(0); + }); + + it('produces a hash identical to what the import flow would produce', async () => { + const v7 = makeV7Protocol(); + + // (a) Run it through our migration script + const prisma = makeMockPrisma(); + prisma.protocol.findMany.mockResolvedValue([ + { + id: 'cm-x', + name: 'My Protocol.netcanvas', + schemaVersion: 7, + stages: v7.stages, + codebook: v7.codebook, + experiments: null, + description: v7.description, + lastModified: new Date(v7.lastModified), + }, + ]); + + await migrateProtocolsToV8( + prisma as unknown as Parameters[0], + ); + + type UpdateCallArg = { data: { hash: string } }; + const dbCall = prisma.protocol.update.mock.calls[0]?.[0] as UpdateCallArg; + const dbHash = dbCall.data.hash; + + // (b) Independently run the same v7 protocol through the same migration + // chain the import flow uses (useProtocolImport.tsx strips .netcanvas + // before passing as the `name` dependency). + const importName = 'My Protocol.netcanvas'.replace(/\.netcanvas$/i, ''); + const importMigrated = migrateProtocol({ ...v7, name: importName }, 8, { + name: importName, + }); + const importHash = hashProtocol(importMigrated); + + expect(dbHash).toBe(importHash); + }); + + it('hard-fails with id and name when a protocol fails to migrate', async () => { + const prisma = makeMockPrisma(); + prisma.protocol.findMany.mockResolvedValue([ + { + id: 'cm-broken', + name: 'Broken Protocol.netcanvas', + schemaVersion: 7, + // `stages` is required to be an array — passing a non-array makes + // VersionedProtocolSchema reject this protocol inside migrateProtocol. + stages: 'not-an-array', + codebook: { node: {}, edge: {}, ego: { variables: {} } }, + experiments: null, + description: null, + lastModified: new Date('2024-01-01T00:00:00.000Z'), + }, + ]); + + await expect( + migrateProtocolsToV8( + prisma as unknown as Parameters[0], + ), + ).rejects.toThrow(/Broken Protocol\.netcanvas/); + + await expect( + migrateProtocolsToV8( + prisma as unknown as Parameters[0], + ), + ).rejects.toThrow(/cm-broken/); + }); + + it('wraps a P2002 hash collision with both protocol ids and names', async () => { + const v7 = makeV7Protocol(); + const prisma = makeMockPrisma(); + prisma.protocol.findMany.mockResolvedValue([ + { + id: 'cm-collide', + name: 'Colliding.netcanvas', + schemaVersion: 7, + stages: v7.stages, + codebook: v7.codebook, + experiments: null, + description: v7.description, + lastModified: new Date(v7.lastModified), + }, + ]); + + // Simulate Prisma's P2002 unique-constraint error + const { Prisma } = await import('~/lib/db/generated/client'); + const p2002 = new Prisma.PrismaClientKnownRequestError( + 'Unique constraint failed on the fields: (`hash`)', + { code: 'P2002', clientVersion: 'test', meta: { target: ['hash'] } }, + ); + prisma.protocol.update.mockRejectedValue(p2002); + + // The script will look up the colliding row by hash + prisma.protocol.findFirst.mockResolvedValue({ + id: 'cm-existing', + name: 'Existing.netcanvas', + }); + + const error = await migrateProtocolsToV8( + prisma as unknown as Parameters[0], + ).catch((e: unknown) => e); + + expect(error).toBeInstanceOf(Error); + const message = (error as Error).message; + expect(message).toMatch(/cm-collide/); + expect(message).toMatch(/Colliding\.netcanvas/); + expect(message).toMatch(/cm-existing/); + expect(message).toMatch(/Existing\.netcanvas/); + }); +}); diff --git a/scripts/dev-db.sh b/scripts/dev-db.sh new file mode 100755 index 000000000..873f92465 --- /dev/null +++ b/scripts/dev-db.sh @@ -0,0 +1,37 @@ +#!/bin/bash +# Start the development PostgreSQL container. +# Container and volume names are scoped to the current git branch for isolation. + +set -e + +IMAGE="postgres:17-alpine" +PORT=5432 + +# Derive a safe suffix from the current git branch +BRANCH=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "default") +SAFE_BRANCH=$(echo "$BRANCH" | tr '[:upper:]/' '[:lower:]-' | sed 's/[^a-z0-9-]//g') +CONTAINER_NAME="fresco-dev-postgres-${SAFE_BRANCH}" +VOLUME_NAME="fresco-dev-db-${SAFE_BRANCH}" + +# Reuse existing running container +if docker container inspect "$CONTAINER_NAME" &>/dev/null; then + if [ "$(docker inspect -f '{{.State.Running}}' "$CONTAINER_NAME")" = "true" ]; then + echo "PostgreSQL already running ($CONTAINER_NAME) on port $PORT" + docker logs -f "$CONTAINER_NAME" + exit 0 + fi + docker rm -f "$CONTAINER_NAME" >/dev/null +fi + +# Create volume if it doesn't exist +docker volume inspect "$VOLUME_NAME" &>/dev/null 2>&1 || docker volume create "$VOLUME_NAME" >/dev/null + +echo "Starting PostgreSQL on port $PORT [branch: $BRANCH]..." + +exec docker run --rm \ + --name "$CONTAINER_NAME" \ + -p "$PORT:5432" \ + -e POSTGRES_PASSWORD=postgres \ + -e POSTGRES_USER=postgres \ + -v "$VOLUME_NAME:/var/lib/postgresql/data" \ + "$IMAGE" diff --git a/scripts/dev-s3.ts b/scripts/dev-s3.ts new file mode 100644 index 000000000..b56ed2101 --- /dev/null +++ b/scripts/dev-s3.ts @@ -0,0 +1,227 @@ +/* eslint-disable no-console */ +import { spawn, spawnSync } from 'node:child_process'; +import process from 'node:process'; +import { + CreateBucketCommand, + ListBucketsCommand, + PutBucketPolicyCommand, + S3Client, +} from '@aws-sdk/client-s3'; + +const IMAGE = 'minio/minio:latest'; +const HOST_PORT = 9000; +const CONTAINER_PORT = 9000; +const BUCKET = 'fresco-dev'; +const REGION = 'us-east-1'; +const ACCESS_KEY_ID = 'minioadmin'; +const SECRET_ACCESS_KEY = 'minioadmin'; +const READY_MAX_ATTEMPTS = 30; +const READY_INTERVAL_MS = 1000; + +const branch = + spawnSync('git', ['rev-parse', '--abbrev-ref', 'HEAD'], { + encoding: 'utf8', + }).stdout.trim() || 'default'; + +const safeBranch = branch + .toLowerCase() + .replaceAll('/', '-') + .replace(/[^a-z0-9-]/g, ''); + +const containerName = `fresco-dev-minio-${safeBranch}`; +const volumeName = `fresco-dev-minio-${safeBranch}`; + +function docker(args: string[]): { + status: number; + stdout: string; + stderr: string; +} { + const result = spawnSync('docker', args, { encoding: 'utf8' }); + return { + status: result.status ?? -1, + stdout: result.stdout ?? '', + stderr: result.stderr ?? '', + }; +} + +function containerExists(): boolean { + return docker(['container', 'inspect', containerName]).status === 0; +} + +function containerIsRunning(): boolean { + const result = docker(['inspect', '-f', '{{.State.Running}}', containerName]); + return result.status === 0 && result.stdout.trim() === 'true'; +} + +function ensureVolume(): void { + const inspect = docker(['volume', 'inspect', volumeName]); + if (inspect.status === 0) return; + const create = docker(['volume', 'create', volumeName]); + if (create.status !== 0) { + throw new Error(`docker volume create failed: ${create.stderr}`); + } +} + +function removeContainer(): void { + const result = docker(['rm', '-f', containerName]); + if (result.status === 0) return; + // Tolerate "already gone" races with parallel invocations. + if (result.stderr.toLowerCase().includes('no such container')) return; + throw new Error(`docker rm -f failed: ${result.stderr}`); +} + +function startContainer(): void { + console.log(`Starting MinIO on port ${HOST_PORT} [branch: ${branch}]...`); + const result = docker([ + 'run', + '-d', + '--rm', + '--name', + containerName, + '-p', + `${HOST_PORT}:${CONTAINER_PORT}`, + '-v', + `${volumeName}:/data`, + '-e', + `MINIO_ROOT_USER=${ACCESS_KEY_ID}`, + '-e', + `MINIO_ROOT_PASSWORD=${SECRET_ACCESS_KEY}`, + '-e', + 'MINIO_API_CORS_ALLOW_ORIGIN=*', + IMAGE, + 'server', + '/data', + ]); + if (result.status !== 0) { + throw new Error(`docker run failed: ${result.stderr}`); + } +} + +function createS3Client(): S3Client { + return new S3Client({ + endpoint: `http://localhost:${HOST_PORT}`, + region: REGION, + credentials: { + accessKeyId: ACCESS_KEY_ID, + secretAccessKey: SECRET_ACCESS_KEY, + }, + forcePathStyle: true, + }); +} + +async function waitForReady(client: S3Client): Promise { + let lastError: unknown; + for (let attempt = 1; attempt <= READY_MAX_ATTEMPTS; attempt++) { + try { + await client.send(new ListBucketsCommand({})); + return; + } catch (error) { + lastError = error; + await new Promise((resolve) => setTimeout(resolve, READY_INTERVAL_MS)); + } + } + throw new Error( + `MinIO did not become ready after ${READY_MAX_ATTEMPTS} attempts: ${String(lastError)}`, + ); +} + +async function ensureBucket(client: S3Client): Promise { + try { + await client.send(new CreateBucketCommand({ Bucket: BUCKET })); + console.log(`Created bucket '${BUCKET}'`); + } catch (error) { + if ( + error instanceof Error && + (error.name === 'BucketAlreadyOwnedByYou' || + error.name === 'BucketAlreadyExists') + ) { + console.log(`Bucket '${BUCKET}' already exists`); + return; + } + throw error; + } +} + +function printBanner(): void { + console.log(`MinIO ready — bucket '${BUCKET}' available`); + console.log(` Endpoint: http://localhost:${HOST_PORT}`); + console.log(` Bucket: ${BUCKET}`); + console.log(` Region: ${REGION}`); + console.log(` Access Key ID: ${ACCESS_KEY_ID}`); + console.log(` Secret Access Key: ${SECRET_ACCESS_KEY}`); +} + +function followLogs(): void { + const child = spawn('docker', ['logs', '-f', containerName], { + stdio: 'inherit', + }); + + let shuttingDown = false; + const shutdown = (): void => { + if (shuttingDown) return; + shuttingDown = true; + if (!child.killed) child.kill('SIGTERM'); + process.exit(0); + }; + + process.on('SIGINT', shutdown); + process.on('SIGTERM', shutdown); + process.on('SIGHUP', shutdown); + + child.on('exit', (code) => { + if (shuttingDown) return; + process.exit(code ?? 0); + }); +} + +async function applyPublicReadPolicy(client: S3Client): Promise { + const policy = { + Version: '2012-10-17', + Statement: [ + { + Effect: 'Allow', + Principal: '*', + Action: 's3:GetObject', + Resource: `arn:aws:s3:::${BUCKET}/*`, + }, + ], + }; + await client.send( + new PutBucketPolicyCommand({ + Bucket: BUCKET, + Policy: JSON.stringify(policy), + }), + ); + console.log(`Applied public-read policy to '${BUCKET}'`); +} + +async function main(): Promise { + const alreadyRunning = containerExists() && containerIsRunning(); + + if (containerExists() && !alreadyRunning) { + removeContainer(); + } + + if (!alreadyRunning) { + ensureVolume(); + startContainer(); + } else { + console.log( + `MinIO already running (${containerName}) on port ${HOST_PORT}`, + ); + } + + const s3 = createS3Client(); + console.log('Waiting for MinIO to become ready...'); + await waitForReady(s3); + await ensureBucket(s3); + await applyPublicReadPolicy(s3); + + if (!alreadyRunning) printBanner(); + followLogs(); +} + +main().catch((error: unknown) => { + console.error(error); + process.exit(1); +}); diff --git a/scripts/generate-roster-data.mjs b/scripts/generate-roster-data.mjs new file mode 100644 index 000000000..1b746df75 --- /dev/null +++ b/scripts/generate-roster-data.mjs @@ -0,0 +1,39 @@ +/** + * Generates mock roster JSON files for Storybook NameGeneratorRoster stories. + * Run: node scripts/generate-roster-data.mjs + */ +import { writeFileSync, mkdirSync } from 'node:fs'; +import { join } from 'node:path'; +import { faker } from '@faker-js/faker'; + +const SEED = 42; + +function generateNodes(count) { + faker.seed(SEED); + + const nodes = []; + + for (let i = 0; i < count; i++) { + nodes.push({ + name: faker.person.fullName(), + age: faker.number.int({ min: 18, max: 80 }), + location: faker.location.city(), + }); + } + + return nodes; +} + +const sizes = [50, 100, 1000, 5000, 50000]; +const outDir = join(import.meta.dirname, '..', 'public', 'storybook'); + +mkdirSync(outDir, { recursive: true }); + +for (const size of sizes) { + const data = { nodes: generateNodes(size) }; + const path = join(outDir, `roster-${size}.json`); + writeFileSync(path, JSON.stringify(data)); + const kb = (Buffer.byteLength(JSON.stringify(data)) / 1024).toFixed(0); + // eslint-disable-next-line no-console + console.log(`wrote ${path} (${size} nodes, ${kb} KB)`); +} diff --git a/scripts/initialize.ts b/scripts/initialize.ts new file mode 100644 index 000000000..970a59c9a --- /dev/null +++ b/scripts/initialize.ts @@ -0,0 +1,50 @@ +/* eslint-disable no-console */ +import dotenv from 'dotenv'; +dotenv.config(); + +import { PrismaPg } from '@prisma/adapter-pg'; +import { PrismaClient } from '~/lib/db/generated/client'; + +// CLI scripts must use the PG adapter directly because the Neon serverless +// adapter doesn't work in CLI/Node.js context (only in serverless runtimes) +const adapter = new PrismaPg({ + // eslint-disable-next-line no-process-env + connectionString: process.env.DATABASE_URL, +}); +const prisma = new PrismaClient({ adapter }); + +/** + * We set the initializedAt key here, because this script is run when the + * app is first deployed. + */ +async function setInitializedAt(): Promise { + // Check if app is already initialized + const initializedAt = await prisma.appSettings.findUnique({ + where: { + key: 'initializedAt', + }, + }); + + if (initializedAt) { + console.log('App already initialized. Skipping.'); + return; + } + + const now = new Date().toISOString(); + + console.log(`Setting initializedAt to ${now}.`); + + await prisma.appSettings.upsert({ + where: { + key: 'initializedAt', + }, + // No update emulates findOrCreate + update: {}, + create: { + key: 'initializedAt', + value: now, + }, + }); +} + +await setInitializedAt(); diff --git a/scripts/migrate-and-start.sh b/scripts/migrate-and-start.sh new file mode 100755 index 000000000..a7de61897 --- /dev/null +++ b/scripts/migrate-and-start.sh @@ -0,0 +1,7 @@ +#!/bin/sh +set -e + +npx prisma generate +npx tsx scripts/setup-database.ts +npx tsx scripts/initialize.ts +exec node server.js diff --git a/scripts/migrate-protocols-to-v8.ts b/scripts/migrate-protocols-to-v8.ts new file mode 100644 index 000000000..42d5f6a34 --- /dev/null +++ b/scripts/migrate-protocols-to-v8.ts @@ -0,0 +1,101 @@ +/* eslint-disable no-console */ +import { hashProtocol, migrateProtocol } from '@codaco/protocol-validation'; +import { Prisma, type PrismaClient } from '~/lib/db/generated/client'; + +async function migrateOneProtocol( + prisma: PrismaClient, + row: { + id: string; + name: string; + schemaVersion: number; + stages: unknown; + codebook: unknown; + }, +): Promise { + const cleanName = row.name.replace(/\.netcanvas$/i, ''); + + const reconstructed = { + name: cleanName, + schemaVersion: row.schemaVersion, + stages: row.stages, + codebook: row.codebook, + }; + + let migrated: ReturnType; + try { + migrated = migrateProtocol(reconstructed, 8, { name: cleanName }); + } catch (err) { + const cause = err instanceof Error ? err.message : String(err); + throw new Error( + `Failed to migrate protocol "${row.name}" (id=${row.id}): ${cause}`, + ); + } + const newHash = hashProtocol(migrated); + + try { + await prisma.protocol.update({ + where: { id: row.id }, + data: { + schemaVersion: 8, + stages: migrated.stages, + codebook: migrated.codebook, + experiments: migrated.experiments ?? Prisma.JsonNull, + hash: newHash, + }, + }); + } catch (err) { + if ( + err instanceof Prisma.PrismaClientKnownRequestError && + err.code === 'P2002' + ) { + const collider = await prisma.protocol.findFirst({ + where: { hash: newHash }, + select: { id: true, name: true }, + }); + throw new Error( + `Hash collision migrating "${row.name}" (id=${row.id}): ` + + `migrated hash ${newHash} already exists on protocol "${collider?.name ?? '?'}" (id=${collider?.id ?? '?'})`, + ); + } + throw err; + } + + console.log( + `Migrated "${row.name}" (id=${row.id})... ok (new hash: ${newHash.slice(0, 8)}...)`, + ); +} + +/** + * Migrate any Protocol rows at schemaVersion < 8 up to v8. + * + * Idempotent. Hard-fails per protocol on migration errors. + */ +export async function migrateProtocolsToV8( + prisma: PrismaClient, +): Promise { + const v7Protocols = await prisma.protocol.findMany({ + where: { schemaVersion: { lt: 8 } }, + select: { + id: true, + name: true, + schemaVersion: true, + stages: true, + codebook: true, + }, + }); + + if (v7Protocols.length === 0) { + console.log('No protocols at schemaVersion < 8 to migrate.'); + return; + } + + console.log( + `Found ${v7Protocols.length} protocols at schemaVersion < 8. Migrating to v8...`, + ); + + for (const row of v7Protocols) { + await migrateOneProtocol(prisma, row); + } + + console.log(`Migrated ${v7Protocols.length} protocols.`); +} diff --git a/scripts/netlify-await-deploy.sh b/scripts/netlify-await-deploy.sh new file mode 100755 index 000000000..52070f67d --- /dev/null +++ b/scripts/netlify-await-deploy.sh @@ -0,0 +1,86 @@ +#!/usr/bin/env bash +# Wait for the Netlify production deploy associated with $COMMIT_SHA to +# reach a terminal state. Exits 0 if the deploy reaches `ready`, non-zero +# on error/failed/rejected/skipped/canceled or timeout. +# +# Two phases: first poll the deploys list until a deploy with matching +# commit_ref appears (handles Netlify queue latency between push and deploy +# creation), then poll that deploy's state. +# +# Required env: NETLIFY_AUTH_TOKEN, NETLIFY_SITE_ID, COMMIT_SHA +# Optional env: +# POLL_INTERVAL_SECONDS — default 15 +# POLL_TIMEOUT_SECONDS — default 1800 (30 min) +# DISCOVERY_TIMEOUT_SECONDS — default 300 (5 min) + +set -euo pipefail + +: "${NETLIFY_AUTH_TOKEN:?NETLIFY_AUTH_TOKEN is required}" +: "${NETLIFY_SITE_ID:?NETLIFY_SITE_ID is required}" +: "${COMMIT_SHA:?COMMIT_SHA is required}" + +POLL_INTERVAL_SECONDS="${POLL_INTERVAL_SECONDS:-15}" +POLL_TIMEOUT_SECONDS="${POLL_TIMEOUT_SECONDS:-1800}" +DISCOVERY_TIMEOUT_SECONDS="${DISCOVERY_TIMEOUT_SECONDS:-300}" + +api() { + curl --silent --show-error --fail \ + -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" \ + "$@" +} + +echo "Awaiting Netlify production deploy for commit $COMMIT_SHA" + +DEPLOY_ID="" +elapsed=0 +while [ "$elapsed" -lt "$DISCOVERY_TIMEOUT_SECONDS" ]; do + DEPLOYS=$(api "https://api.netlify.com/api/v1/sites/$NETLIFY_SITE_ID/deploys?per_page=20") + DEPLOY_ID=$(echo "$DEPLOYS" | jq -r --arg sha "$COMMIT_SHA" \ + '[.[] | select(.commit_ref == $sha and .context == "production") | .id] | .[0] // ""') + + if [ -n "$DEPLOY_ID" ]; then + echo "Found deploy: $DEPLOY_ID" + break + fi + + echo " [${elapsed}s] no production deploy yet for $COMMIT_SHA" + sleep "$POLL_INTERVAL_SECONDS" + elapsed=$((elapsed + POLL_INTERVAL_SECONDS)) +done + +if [ -z "$DEPLOY_ID" ]; then + echo "Timeout: no production deploy found for $COMMIT_SHA within ${DISCOVERY_TIMEOUT_SECONDS}s" >&2 + exit 1 +fi + +echo "Polling deploy state every ${POLL_INTERVAL_SECONDS}s (timeout: ${POLL_TIMEOUT_SECONDS}s)..." + +elapsed=0 +while [ "$elapsed" -lt "$POLL_TIMEOUT_SECONDS" ]; do + DEPLOY=$(api "https://api.netlify.com/api/v1/sites/$NETLIFY_SITE_ID/deploys/$DEPLOY_ID") + STATE=$(echo "$DEPLOY" | jq -r '.state // "unknown"') + + case "$STATE" in + ready) + URL=$(echo "$DEPLOY" | jq -r '.deploy_ssl_url // .ssl_url // .deploy_url // empty') + echo "Deploy succeeded: $URL" + exit 0 + ;; + error | failed | rejected | skipped | canceled) + ERROR_MSG=$(echo "$DEPLOY" | jq -r '.error_message // empty') + echo "Deploy failed with state: $STATE" >&2 + [ -n "$ERROR_MSG" ] && echo "Error: $ERROR_MSG" >&2 + echo "Logs: https://app.netlify.com/sites/$NETLIFY_SITE_ID/deploys/$DEPLOY_ID" >&2 + exit 1 + ;; + *) + echo " [${elapsed}s] state=$STATE" + ;; + esac + + sleep "$POLL_INTERVAL_SECONDS" + elapsed=$((elapsed + POLL_INTERVAL_SECONDS)) +done + +echo "Timeout after ${POLL_TIMEOUT_SECONDS}s waiting for deploy $DEPLOY_ID" >&2 +exit 1 diff --git a/scripts/netlify-deploy.sh b/scripts/netlify-deploy.sh new file mode 100755 index 000000000..dba3263be --- /dev/null +++ b/scripts/netlify-deploy.sh @@ -0,0 +1,77 @@ +#!/usr/bin/env bash +# Trigger a Netlify build for $BRANCH and wait for it to reach a terminal +# state. Exits 0 on success, non-zero on failure or timeout. +# +# Netlify resolves the deploy context (production / branch-deploy / +# deploy-preview) from $BRANCH against the site's branch configuration — +# the API call is the same either way. +# +# Required env: NETLIFY_AUTH_TOKEN, NETLIFY_SITE_ID, BRANCH +# Optional env: +# CLEAR_CACHE — true|false (default false) +# POLL_INTERVAL_SECONDS — default 15 +# POLL_TIMEOUT_SECONDS — default 1800 (30 min) + +set -euo pipefail + +: "${NETLIFY_AUTH_TOKEN:?NETLIFY_AUTH_TOKEN is required}" +: "${NETLIFY_SITE_ID:?NETLIFY_SITE_ID is required}" +: "${BRANCH:?BRANCH is required}" + +CLEAR_CACHE="${CLEAR_CACHE:-false}" +POLL_INTERVAL_SECONDS="${POLL_INTERVAL_SECONDS:-15}" +POLL_TIMEOUT_SECONDS="${POLL_TIMEOUT_SECONDS:-1800}" + +api() { + curl --silent --show-error --fail \ + -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN" \ + "$@" +} + +echo "Triggering Netlify build for branch: $BRANCH (clear_cache=$CLEAR_CACHE)" + +TRIGGER_RESPONSE=$(api -X POST \ + -H "Content-Type: application/json" \ + -d "{\"branch\":\"$BRANCH\",\"clear_cache\":$CLEAR_CACHE}" \ + "https://api.netlify.com/api/v1/sites/$NETLIFY_SITE_ID/builds") + +DEPLOY_ID=$(echo "$TRIGGER_RESPONSE" | jq -r '.deploy_id // empty') +if [ -z "$DEPLOY_ID" ]; then + echo "Failed to extract deploy_id from trigger response:" >&2 + echo "$TRIGGER_RESPONSE" >&2 + exit 1 +fi + +echo "Triggered deploy: $DEPLOY_ID" +echo "Polling every ${POLL_INTERVAL_SECONDS}s (timeout: ${POLL_TIMEOUT_SECONDS}s)..." + +elapsed=0 +while [ "$elapsed" -lt "$POLL_TIMEOUT_SECONDS" ]; do + DEPLOY=$(api "https://api.netlify.com/api/v1/sites/$NETLIFY_SITE_ID/deploys/$DEPLOY_ID") + STATE=$(echo "$DEPLOY" | jq -r '.state // "unknown"') + + case "$STATE" in + ready) + URL=$(echo "$DEPLOY" | jq -r '.deploy_ssl_url // .ssl_url // .deploy_url // empty') + echo "Deploy succeeded: $URL" + exit 0 + ;; + error | failed | rejected | skipped | canceled) + ERROR_MSG=$(echo "$DEPLOY" | jq -r '.error_message // empty') + echo "Deploy failed with state: $STATE" >&2 + [ -n "$ERROR_MSG" ] && echo "Error: $ERROR_MSG" >&2 + LOG_URL="https://app.netlify.com/sites/$NETLIFY_SITE_ID/deploys/$DEPLOY_ID" + echo "Build logs: $LOG_URL" >&2 + exit 1 + ;; + *) + echo " [${elapsed}s] state=$STATE" + ;; + esac + + sleep "$POLL_INTERVAL_SECONDS" + elapsed=$((elapsed + POLL_INTERVAL_SECONDS)) +done + +echo "Timeout after ${POLL_TIMEOUT_SECONDS}s waiting for deploy $DEPLOY_ID" >&2 +exit 1 diff --git a/scripts/netlify-should-build.sh b/scripts/netlify-should-build.sh new file mode 100755 index 000000000..3d59cb7c0 --- /dev/null +++ b/scripts/netlify-should-build.sh @@ -0,0 +1,28 @@ +#!/bin/bash +# Netlify build ignore script. +# +# Returning exit code 1 tells Netlify to proceed with the build; exit 0 tells +# Netlify to skip it. We require DATABASE_URL and DATABASE_URL_UNPOOLED to be +# present, because without them the build runs `setup-database.ts` (and the +# deployed functions read `env.DATABASE_URL`) which fall back to PGHOST=localhost +# and crash against 127.0.0.1. +# +# For standard user deployments (per the deployment guide), both variables are +# configured in the Netlify dashboard before the first deploy, so this check +# passes and the build runs as normal. +# +# For our own PR deploy previews the same push that triggers Netlify's +# auto-deploy also kicks off `.github/workflows/netlify-deploy-preview.yml`, +# which sets the branch-scoped DB URLs and then triggers a fresh build via the +# Netlify API. The auto-deploy hits this script first, finds no branch env yet, +# and exits cheaply; the workflow-triggered build sees the env and proceeds. + +set -u + +if [ -z "${DATABASE_URL:-}" ] || [ -z "${DATABASE_URL_UNPOOLED:-}" ]; then + echo "Skipping build: DATABASE_URL and/or DATABASE_URL_UNPOOLED not set for this context." + echo "If this is a first-time deployment, set both variables in Netlify (Site configuration → Environment variables) and redeploy." + exit 0 +fi + +exit 1 diff --git a/scripts/setup-database.ts b/scripts/setup-database.ts new file mode 100644 index 000000000..262b6c109 --- /dev/null +++ b/scripts/setup-database.ts @@ -0,0 +1,118 @@ +/* eslint-disable no-console */ +import dotenv from 'dotenv'; + +dotenv.config(); + +import { PrismaPg } from '@prisma/adapter-pg'; +import { execSync, spawnSync } from 'child_process'; +import { PrismaClient } from '~/lib/db/generated/client'; +import { migrateProtocolsToV8 } from './migrate-protocols-to-v8'; + +// CLI scripts must use the PG adapter directly because the Neon serverless +// adapter doesn't work in CLI/Node.js context (only in serverless runtimes) +const adapter = new PrismaPg({ + // eslint-disable-next-line no-process-env + connectionString: process.env.DATABASE_URL, +}); +const prisma = new PrismaClient({ adapter }); + +type TableRow = { + table_name: string; +}; + +function checkForNeededMigrations(): boolean { + const command = 'npx'; + const args = [ + 'prisma', + 'migrate', + 'diff', + '--from-schema', + './lib/db/schema.prisma', + '--to-config-datasource', + '--exit-code', + ]; + + console.log(`Running: ${command} ${args.join(' ')}`); + const result = spawnSync(command, args, { encoding: 'utf-8' }); + + if (result.error) { + console.error('Failed to spawn command:', result.error); + throw result.error; + } + + if (result.stdout) console.log('stdout:', result.stdout); + if (result.stderr) console.log('stderr:', result.stderr); + console.log('Exit code:', result.status); + + if (result.status === 0) { + console.log('No differences between DB and schema detected.'); + return false; + } else if (result.status === 2) { + console.log('There are differences between the schemas.'); + return true; + } + + throw new Error(`prisma migrate diff failed with exit code ${result.status}`); +} + +/** + * This function checks if the database is in a state where the workaround is needed. + * + * The workaround is needed when the database is not empty and the _prisma_migrations + * table does not exist. + */ +async function shouldApplyWorkaround(): Promise { + const tables = await prisma.$queryRaw` + SELECT table_name + FROM information_schema.tables + WHERE table_schema = 'public' AND table_type = 'BASE TABLE'`; + + const databaseNotEmpty = tables.length > 0; + const migrationsTableExists = tables.some( + (table) => table.table_name === '_prisma_migrations', + ); + + return !migrationsTableExists && databaseNotEmpty; +} + +async function handleMigrations(): Promise { + try { + console.log('Starting migration process...'); + + const applyWorkaround = await shouldApplyWorkaround(); + console.log('Should apply workaround:', applyWorkaround); + + if (applyWorkaround) { + console.log( + 'Workaround needed! Running: prisma migrate resolve --applied 0_init', + ); + execSync('npx prisma migrate resolve --applied 0_init', { + stdio: 'inherit', + }); + } + + const needsMigrations = checkForNeededMigrations(); + console.log('Needs migrations:', needsMigrations); + + if (needsMigrations) { + console.log('Running: prisma migrate deploy'); + execSync('npx prisma migrate deploy', { stdio: 'inherit' }); + console.log('Migrations applied successfully.'); + } else { + console.log('No migrations needed.'); + } + } catch (error) { + console.error('Error during migration process:', error); + process.exit(1); + } +} + +try { + await handleMigrations(); + await migrateProtocolsToV8(prisma); +} catch (error) { + console.error('Error during database setup:', error); + process.exit(1); +} finally { + await prisma.$disconnect(); +} diff --git a/styles/globals.css b/styles/globals.css new file mode 100644 index 000000000..0c75e1b7c --- /dev/null +++ b/styles/globals.css @@ -0,0 +1,24 @@ +/* + * Tailwind v4 entry, design tokens, NC palette, custom plugins + * + * Note: fonts must be imported in JS, so that url() references are resolved + * by the bundler. + */ +@import '@codaco/tailwind-config/fresco.css'; + +/* + * Tailwind's class scanner needs an explicit @source for the package's compiled + * JS — the @source declaration inside the package's styles.css is relative to + * the package's own dist/, which Fresco's compiler can't resolve from here. + */ +@import '@codaco/fresco-ui/styles.css'; +@import '@codaco/interview/styles.css'; + + +/* Autodocs renders each story in a `.sbdocs-preview` wrapper that lives + outside the canvas iframe, so the body rule above doesn't reach it. + Paint the docs preview canvas with the theme background directly. */ +.sbdocs-preview { + @apply bg-background!; +} + diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..068bd4a8a --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,46 @@ +{ + "compilerOptions": { + "target": "es2024", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "checkJs": false, + "skipLibCheck": true, + "strict": true, + "strictNullChecks": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "ESNext", + "moduleResolution": "Bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "react-jsx", + "incremental": true, + "noUncheckedIndexedAccess": true, + "paths": { + "~/*": ["./*"] + }, + "plugins": [ + { + "name": "next" + } + ] + }, + "include": [ + ".eslintrc.cjs", + "next-env.d.ts", + "types/**/*.d.ts", + "**/*.js", + "**/*.ts", + "**/*.tsx", + "**/*.jsx", + "**/*.cjs", + "**/*.mjs", + ".next/types/**/*.ts", + "eslint-local-rules/index.js", + "actions/auth.ts", + "env.js", + ".next/dev/types/**/*.ts" + ], + "exclude": ["node_modules", "storybook-static", "lib/db/generated"] +} diff --git a/turbo.json b/turbo.json deleted file mode 100644 index 8d2eac64d..000000000 --- a/turbo.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "$schema": "https://turbo.build/schema.json", - "globalDependencies": ["**/.env.*local"], - "globalEnv": ["NODE_ENV"], - "pipeline": { - "dev": { - "dependsOn": ["^db:generate"], - "cache": false - }, - "build": { - "dependsOn": ["^db:generate"], - "outputs": ["your-outputs-here"] - }, - "db:generate": { - "cache": false - }, - "db:push": { - "cache": false - } - } -} diff --git a/types/base-ui.d.ts b/types/base-ui.d.ts new file mode 100644 index 000000000..c3a447ce4 --- /dev/null +++ b/types/base-ui.d.ts @@ -0,0 +1,5 @@ +declare global { + var BASE_UI_ANIMATIONS_DISABLED: boolean; +} + +export type {}; diff --git a/types/color.d.ts b/types/color.d.ts new file mode 100644 index 000000000..920820f37 --- /dev/null +++ b/types/color.d.ts @@ -0,0 +1,17 @@ +declare module 'color' { + type Color = { + mix(color: Color, weight?: number): Color; + desaturate(ratio: number): Color; + darken(ratio: number): Color; + lighten(ratio: number): Color; + toString(): string; + hex(): string; + rgb(): { r: number; g: number; b: number }; + alpha(value?: number): Color | number; + }; + + type ColorConstructor = (value?: string | null) => Color; + + const color: ColorConstructor; + export default color; +} diff --git a/types/concaveman.d.ts b/types/concaveman.d.ts new file mode 100644 index 000000000..9daaae610 --- /dev/null +++ b/types/concaveman.d.ts @@ -0,0 +1,8 @@ +declare module 'concaveman' { + function concaveman( + points: number[][], + concavity?: number, + lengthThreshold?: number, + ): number[][]; + export default concaveman; +} diff --git a/types/import-meta.d.ts b/types/import-meta.d.ts new file mode 100644 index 000000000..2f7b7c299 --- /dev/null +++ b/types/import-meta.d.ts @@ -0,0 +1,8 @@ +interface ImportMetaEnv { + readonly MODE: string; + [key: string]: string | boolean | undefined; +} + +interface ImportMeta { + readonly env: ImportMetaEnv; +} diff --git a/types/reset.d.ts b/types/reset.d.ts new file mode 100644 index 000000000..faedef42c --- /dev/null +++ b/types/reset.d.ts @@ -0,0 +1,2 @@ +// Do not add any other lines of code to this file! +import '@total-typescript/ts-reset'; diff --git a/types/tanstack-table.d.ts b/types/tanstack-table.d.ts new file mode 100644 index 000000000..25deb8648 --- /dev/null +++ b/types/tanstack-table.d.ts @@ -0,0 +1,11 @@ +import type { RowData } from '@tanstack/react-table'; +import type { FilterConfig } from '@codaco/fresco-ui/DataTable/filters/types'; + +declare module '@tanstack/react-table' { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + interface ColumnMeta { + filterType?: 'range' | 'date' | 'boolean' | 'faceted' | 'operator'; + filterConfig?: FilterConfig; + className?: string; + } +} diff --git a/types/vitest.shims.d.ts b/types/vitest.shims.d.ts new file mode 100644 index 000000000..a1d31e5a7 --- /dev/null +++ b/types/vitest.shims.d.ts @@ -0,0 +1 @@ +/// diff --git a/utils/__tests__/getClientIp.test.ts b/utils/__tests__/getClientIp.test.ts new file mode 100644 index 000000000..8b6e876e2 --- /dev/null +++ b/utils/__tests__/getClientIp.test.ts @@ -0,0 +1,81 @@ +import { describe, expect, it, vi } from 'vitest'; + +const mockGet = vi.fn(); +vi.mock('server-only', () => ({})); +vi.mock('next/headers', () => ({ + headers: vi.fn(() => Promise.resolve({ get: mockGet })), +})); + +import { getClientIp } from '~/utils/getClientIp'; + +describe('getClientIp', () => { + it('returns the cf-connecting-ip header value when present', async () => { + mockGet.mockImplementation((header: string) => { + if (header === 'cf-connecting-ip') return '1.2.3.4'; + return null; + }); + + const result = await getClientIp(); + expect(result).toBe('1.2.3.4'); + }); + + it('returns the x-real-ip header value when cf-connecting-ip is absent', async () => { + mockGet.mockImplementation((header: string) => { + if (header === 'x-real-ip') return '5.6.7.8'; + return null; + }); + + const result = await getClientIp(); + expect(result).toBe('5.6.7.8'); + }); + + it('returns the first IP from x-forwarded-for when cf-connecting-ip and x-real-ip are absent', async () => { + mockGet.mockImplementation((header: string) => { + if (header === 'x-forwarded-for') return '10.0.0.1, 10.0.0.2, 10.0.0.3'; + return null; + }); + + const result = await getClientIp(); + expect(result).toBe('10.0.0.1'); + }); + + it('trims whitespace from the first IP in x-forwarded-for', async () => { + mockGet.mockImplementation((header: string) => { + if (header === 'x-forwarded-for') return ' 192.168.1.1 , 192.168.1.2'; + return null; + }); + + const result = await getClientIp(); + expect(result).toBe('192.168.1.1'); + }); + + it('returns null when no IP headers are present', async () => { + mockGet.mockReturnValue(null); + + const result = await getClientIp(); + expect(result).toBeNull(); + }); + + it('cf-connecting-ip takes priority over x-real-ip and x-forwarded-for', async () => { + mockGet.mockImplementation((header: string) => { + if (header === 'cf-connecting-ip') return '1.1.1.1'; + if (header === 'x-real-ip') return '2.2.2.2'; + if (header === 'x-forwarded-for') return '3.3.3.3, 4.4.4.4'; + return null; + }); + + const result = await getClientIp(); + expect(result).toBe('1.1.1.1'); + }); + + it('x-real-ip takes priority over x-forwarded-for', async () => { + mockGet.mockImplementation((header: string) => { + if (header === 'x-real-ip') return '2.2.2.2'; + if (header === 'x-forwarded-for') return '3.3.3.3, 4.4.4.4'; + return null; + }); + + const result = await getClientIp(); + expect(result).toBe('2.2.2.2'); + }); +}); diff --git a/utils/__tests__/protocolSize.test.ts b/utils/__tests__/protocolSize.test.ts new file mode 100644 index 000000000..8e210ccb5 --- /dev/null +++ b/utils/__tests__/protocolSize.test.ts @@ -0,0 +1,31 @@ +import { describe, expect, it } from 'vitest'; +import { getProtocolSizeError } from '~/utils/protocolSize'; + +describe('getProtocolSizeError', () => { + it('returns null for a file at the limit', () => { + expect(getProtocolSizeError({ size: 256 * 1024 * 1024 })).toBeNull(); + }); + + it('returns null for a small file', () => { + expect(getProtocolSizeError({ size: 1024 })).toBeNull(); + }); + + it('returns a message for an oversized file', () => { + const error = getProtocolSizeError({ + size: 300 * 1024 * 1024, + }); + expect(error).toContain('300'); + expect(error).toContain('256'); + }); + + it('rejects a file just over the limit and rounds its size up', () => { + const error = getProtocolSizeError({ size: 256 * 1024 * 1024 + 1 }); + // Math.ceil avoids displaying an over-limit file as exactly "256 MB". + expect(error).toContain('257'); + }); + + it('phrases the limit inclusively to match the <= check', () => { + const error = getProtocolSizeError({ size: 300 * 1024 * 1024 }); + expect(error).toContain('256 MB or smaller'); + }); +}); diff --git a/utils/__tests__/semVer.test.ts b/utils/__tests__/semVer.test.ts new file mode 100644 index 000000000..0592f973e --- /dev/null +++ b/utils/__tests__/semVer.test.ts @@ -0,0 +1,72 @@ +import { describe, expect, it } from 'vitest'; +import { getSemverUpdateType } from '~/utils/semVer'; + +const currentVersion = { major: 1, minor: 2, patch: 3 }; + +describe('getSemverUpdateType', () => { + it('returns "major" when new major version is higher', () => { + expect( + getSemverUpdateType(currentVersion, { major: 2, minor: 0, patch: 0 }), + ).toBe('major'); + expect( + getSemverUpdateType(currentVersion, { major: 2, minor: 2, patch: 3 }), + ).toBe('major'); + }); + + it('returns "minor" when major is the same and new minor version is higher', () => { + expect( + getSemverUpdateType(currentVersion, { major: 1, minor: 3, patch: 0 }), + ).toBe('minor'); + expect( + getSemverUpdateType(currentVersion, { major: 1, minor: 3, patch: 3 }), + ).toBe('minor'); + }); + + it('returns "patch" when major and minor are the same and new patch version is higher', () => { + expect( + getSemverUpdateType(currentVersion, { major: 1, minor: 2, patch: 4 }), + ).toBe('patch'); + }); + + it('returns null when versions are identical', () => { + expect( + getSemverUpdateType(currentVersion, { major: 1, minor: 2, patch: 3 }), + ).toBe(null); + }); + + it('returns null when new version is lower than current version', () => { + expect( + getSemverUpdateType(currentVersion, { major: 1, minor: 2, patch: 2 }), + ).toBe(null); + expect( + getSemverUpdateType(currentVersion, { major: 1, minor: 1, patch: 3 }), + ).toBe(null); + expect( + getSemverUpdateType(currentVersion, { major: 0, minor: 9, patch: 5 }), + ).toBe(null); + }); + + it('returns correct type when versions differ across all parts', () => { + // Major is higher + expect( + getSemverUpdateType( + { major: 1, minor: 0, patch: 0 }, + { major: 2, minor: 1, patch: 1 }, + ), + ).toBe('major'); + // Minor is higher + expect( + getSemverUpdateType( + { major: 1, minor: 1, patch: 0 }, + { major: 1, minor: 2, patch: 0 }, + ), + ).toBe('minor'); + // Patch is higher + expect( + getSemverUpdateType( + { major: 1, minor: 2, patch: 3 }, + { major: 1, minor: 2, patch: 4 }, + ), + ).toBe('patch'); + }); +}); diff --git a/utils/databaseError.ts b/utils/databaseError.ts new file mode 100644 index 000000000..342c938d4 --- /dev/null +++ b/utils/databaseError.ts @@ -0,0 +1,8 @@ +export class DatabaseError extends Error { + constructor( + message: string, + public readonly originalError: Error, + ) { + super(message); + } +} diff --git a/utils/ensureError.ts b/utils/ensureError.ts new file mode 100644 index 000000000..40a5d9fa5 --- /dev/null +++ b/utils/ensureError.ts @@ -0,0 +1,22 @@ +// Helper function that ensures that a value is an Error +export function ensureError(value: unknown): Error { + if (!value) return new Error('No value was thrown'); + + if (value instanceof Error) return value; + + // Test if value inherits from Error + if (Object.prototype.isPrototypeOf.call(Error, value)) + return value as Error & typeof value; + + let stringified = '[Unable to stringify the thrown value]'; + try { + stringified = JSON.stringify(value); + } catch { + // Ignore errors during JSON.stringify + } + + const error = new Error( + `This value was thrown as is, not through an Error: ${stringified}`, + ); + return error; +} diff --git a/utils/getBaseUrl.ts b/utils/getBaseUrl.ts new file mode 100644 index 000000000..5eca159a3 --- /dev/null +++ b/utils/getBaseUrl.ts @@ -0,0 +1,18 @@ +/* eslint-disable no-process-env */ +export function getBaseUrl() { + if (typeof window !== 'undefined') + // browser should use relative path + return ''; + + // Custom deployments use PUBLIC_URL + if (process.env.PUBLIC_URL) return process.env.PUBLIC_URL; + + if (process.env.VERCEL_URL) + // reference for vercel.com + return `https://${process.env.VERCEL_URL}`; + if (process.env.RENDER_INTERNAL_HOSTNAME) + // reference for render.com + return `http://${process.env.RENDER_INTERNAL_HOSTNAME}:${process.env.PORT}`; + // assume localhost + return `http://localhost:${process.env.PORT ?? 3000}`; +} diff --git a/utils/getClientIp.ts b/utils/getClientIp.ts new file mode 100644 index 000000000..da92501ef --- /dev/null +++ b/utils/getClientIp.ts @@ -0,0 +1,20 @@ +import { headers } from 'next/headers'; +import 'server-only'; + +export async function getClientIp(): Promise { + const headerStore = await headers(); + + const cfConnectingIp = headerStore.get('cf-connecting-ip'); + if (cfConnectingIp) return cfConnectingIp; + + const xRealIp = headerStore.get('x-real-ip'); + if (xRealIp) return xRealIp; + + const xForwardedFor = headerStore.get('x-forwarded-for'); + if (xForwardedFor) { + const firstIp = xForwardedFor.split(',')[0]?.trim(); + if (firstIp) return firstIp; + } + + return null; +} diff --git a/utils/isStrongPassword.ts b/utils/isStrongPassword.ts new file mode 100644 index 000000000..425240120 --- /dev/null +++ b/utils/isStrongPassword.ts @@ -0,0 +1,16 @@ +/** + * Checks that a password contains at least 1 lowercase, 1 uppercase, + * 1 number, and 1 symbol character, with a minimum length of 8. + * + * Replaces the `validator` package's `isStrongPassword` to avoid bundling + * ~125KB of locale data that was never used. + */ +export function isStrongPassword(password: string): boolean { + return ( + password.length >= 8 && + /[a-z]/.test(password) && + /[A-Z]/.test(password) && + /\d/.test(password) && + /[^A-Za-z0-9]/.test(password) + ); +} diff --git a/utils/parseCSV.ts b/utils/parseCSV.ts new file mode 100644 index 000000000..3e8bb18dd --- /dev/null +++ b/utils/parseCSV.ts @@ -0,0 +1,16 @@ +import Papa from 'papaparse'; + +export default async function parseCSV(csvFile: File): Promise { + return new Promise((resolve, reject) => { + Papa.parse(csvFile, { + skipEmptyLines: true, + header: true, + error: (error) => { + reject(error); + }, + complete: (results) => { + resolve(results.data); + }, + }); + }); +} diff --git a/utils/password.ts b/utils/password.ts new file mode 100644 index 000000000..dd3c0ec36 --- /dev/null +++ b/utils/password.ts @@ -0,0 +1,120 @@ +import { scrypt, randomBytes, timingSafeEqual } from 'node:crypto'; + +/** + * Lucia v2 scrypt password hashing compatibility. + * + * Lucia v2 stores hashes in the format "s2::" using + * scrypt with N=16384, r=16, p=1, dkLen=64 and a 16-char alphanumeric salt. + * We replicate those parameters here using Node.js built-in crypto.scrypt + * so that existing password hashes remain verifiable. + */ + +const SCRYPT_N = 16384; +const SCRYPT_R = 16; +const SCRYPT_P = 1; +const SCRYPT_DKLEN = 64; +const SALT_ALPHABET = 'abcdefghijklmnopqrstuvwxyz1234567890'; +const SALT_LENGTH = 16; + +function generateSalt(): string { + let result = ''; + const alphabetLength = SALT_ALPHABET.length; + const maxByte = 256 - (256 % alphabetLength); + + while (result.length < SALT_LENGTH) { + const bytes = randomBytes(SALT_LENGTH); + for (let i = 0; i < bytes.length && result.length < SALT_LENGTH; i++) { + const byte = bytes[i]!; + if (byte >= maxByte) continue; + const index = byte % alphabetLength; + result += SALT_ALPHABET[index]!; + } + } + + return result; +} + +function scryptAsync( + password: Buffer, + salt: Buffer, + keylen: number, + options: { N: number; r: number; p: number; maxmem: number }, +): Promise { + return new Promise((resolve, reject) => { + scrypt(password, salt, keylen, options, (err, derivedKey) => { + if (err) reject(err); + else resolve(derivedKey); + }); + }); +} + +function toHex(buffer: Buffer): string { + return buffer.toString('hex'); +} + +export async function hashPassword(password: string): Promise { + const salt = generateSalt(); + const normalized = password.normalize('NFKC'); + const key = await scryptAsync( + Buffer.from(normalized), + Buffer.from(salt), + SCRYPT_DKLEN, + { + N: SCRYPT_N, + r: SCRYPT_R, + p: SCRYPT_P, + maxmem: 128 * SCRYPT_N * SCRYPT_R * 2, + }, + ); + return `s2:${salt}:${toHex(key)}`; +} + +export async function verifyPassword( + password: string, + hash: string, +): Promise { + const parts = hash.split(':'); + const normalized = password.normalize('NFKC'); + + if (parts.length === 3 && parts[0] === 's2') { + const salt = parts[1]!; + const storedKey = parts[2]!; + const key = await scryptAsync( + Buffer.from(normalized), + Buffer.from(salt), + SCRYPT_DKLEN, + { + N: SCRYPT_N, + r: SCRYPT_R, + p: SCRYPT_P, + maxmem: 128 * SCRYPT_N * SCRYPT_R * 2, + }, + ); + const derivedHex = toHex(key); + if (derivedHex.length !== storedKey.length) return false; + return timingSafeEqual( + Buffer.from(derivedHex, 'hex'), + Buffer.from(storedKey, 'hex'), + ); + } + + // Legacy format (pre-s2): "salt:key" with r=8 + if (parts.length === 2) { + const salt = parts[0]!; + const storedKey = parts[1]!; + const key = await scryptAsync( + Buffer.from(normalized), + Buffer.from(salt), + SCRYPT_DKLEN, + { N: SCRYPT_N, r: 8, p: SCRYPT_P, maxmem: 128 * SCRYPT_N * 8 * 2 }, + ); + const derivedHex = toHex(key); + if (derivedHex.length !== storedKey.length) return false; + return timingSafeEqual( + Buffer.from(derivedHex, 'hex'), + Buffer.from(storedKey, 'hex'), + ); + } + + return false; +} diff --git a/utils/protocolImport.tsx b/utils/protocolImport.tsx new file mode 100644 index 000000000..edadc5132 --- /dev/null +++ b/utils/protocolImport.tsx @@ -0,0 +1,138 @@ +import { + type CurrentProtocol, + type VersionedProtocol, +} from '@codaco/protocol-validation'; +import type Zip from 'jszip'; +import { type AssetInsertType } from '~/schemas/protocol'; + +/** + * Extract apikey assets from a protocol's asset manifest. + */ +function extractApikeyAssetsFromManifest( + assetManifest: CurrentProtocol['assetManifest'], +): AssetInsertType[] { + if (!assetManifest) return []; + + return Object.entries(assetManifest).flatMap(([key, entry]) => { + if (entry.type !== 'apikey') return []; + return [ + { + assetId: key, + key: key, + name: entry.name, + type: entry.type, + url: '', + size: 0, + value: entry.value, + }, + ]; + }); +} + +// Fetch protocol.json as a parsed object from the protocol zip. +export const getProtocolJson = async (protocolZip: Zip) => { + const protocolString = await protocolZip + ?.file('protocol.json') + ?.async('string'); + + if (!protocolString) { + throw new Error('protocol.json not found in zip'); + } + + const protocolJson = (await JSON.parse(protocolString)) as VersionedProtocol; + + return protocolJson; +}; + +/** + * Fetch all assets listed in the protocol json from the protocol zip, and + * return them as a collection of ProtocolAsset objects, which includes useful + * metadata about the asset. + */ + +type FetchedFileAsset = Omit< + AssetInsertType, + 'value' | 'key' | 'size' | 'url' +> & { file: File }; + +type ProtocolAssetsResult = { + fileAssets: FetchedFileAsset[]; + apikeyAssets: AssetInsertType[]; +}; + +export const getProtocolAssets = async ( + protocolJson: CurrentProtocol, + protocolZip: Zip, +): Promise => { + const assetManifest = protocolJson?.assetManifest; + + if (!assetManifest) { + return { fileAssets: [], apikeyAssets: [] }; + } + + /** + * Structure of an asset in network canvas protocols: + * - An asset in the manifest is an object whose key is a UID. + * - The ID property is the same as the key (duplicated for convinience :/) + * - Name property is the original file name when added to Architect + * - Source property is the internal path to the file in the zip, which is a + * separate UID + file extension. + * - The type property is one of the NC asset types (e.g. 'image', 'video', + * etc.) + * Assets with type 'apikey' are handled differently: + * - They are not actually files. The key itself is stored in the value field. + */ + const apikeyAssets = extractApikeyAssetsFromManifest(assetManifest); + + const fileAssets: FetchedFileAsset[] = []; + + await Promise.all( + Object.entries(assetManifest) + .filter(([_, asset]) => asset.type !== 'apikey') + .map(async ([key, asset]) => { + if (!('source' in asset)) return; + + const file = await protocolZip + ?.file(`assets/${asset.source}`) + ?.async('blob'); + + if (!file) { + throw new Error( + `Asset "${asset.source}" was not found in asset folder!`, + ); + } + + fileAssets.push({ + assetId: key, + name: asset.source, + type: asset.type, + file: new File([file], asset.source), // Convert Blob to File with filename + }); + }), + ); + + return { fileAssets, apikeyAssets }; +}; + +// Helper method for reading a file as an ArrayBuffer. Useful for preparing a +// File to be read by JSZip. +export function fileAsArrayBuffer(file: Blob | File): Promise { + return new Promise((resolve, reject) => { + const reader = new FileReader(); + reader.addEventListener('error', () => { + reader.abort(); + reject(new Error('The file could not be read.')); + }); + + reader.addEventListener('load', () => { + if (!reader.result || typeof reader.result === 'string') { + reject(new Error('The file could not be read.')); + return; + } + + resolve(reader.result); + }); + + reader.readAsArrayBuffer(file); + }); +} diff --git a/utils/protocolSize.ts b/utils/protocolSize.ts new file mode 100644 index 000000000..f991ea567 --- /dev/null +++ b/utils/protocolSize.ts @@ -0,0 +1,20 @@ +import { MAX_PROTOCOL_UPLOAD_BYTES } from '~/fresco.config'; + +// Round up so a file that is only slightly over the limit is never displayed +// as exactly the limit (which would read as contradicting the message). +function formatMegabytes(bytes: number): number { + return Math.ceil(bytes / (1024 * 1024)); +} + +/** + * Returns a human-readable error if the protocol file exceeds the upload + * limit, or null if it is acceptable. The limit is inclusive (a file exactly + * at the limit is allowed), which the message wording reflects. + */ +export function getProtocolSizeError(file: { size: number }): string | null { + if (file.size <= MAX_PROTOCOL_UPLOAD_BYTES) { + return null; + } + + return `This protocol is ${formatMegabytes(file.size)} MB. Protocols must be ${formatMegabytes(MAX_PROTOCOL_UPLOAD_BYTES)} MB or smaller to import.`; +} diff --git a/utils/semVer.ts b/utils/semVer.ts new file mode 100644 index 000000000..5f9efb45d --- /dev/null +++ b/utils/semVer.ts @@ -0,0 +1,62 @@ +import { z } from 'zod'; + +export const semverSchema = z + .string() + .regex( + /^v(\d+)\.(\d+)\.(\d+)$/, + "Invalid version format. Expected format is 'v1.2.3'.", + ) + .transform((version) => { + const [, major, minor, patch] = /^v(\d+)\.(\d+)\.(\d+)$/.exec( + version, + ) as string[]; + + if (!major || !minor || !patch) { + throw new Error('Invalid version format'); + } + + // Convert version parts to numbers + const majorNum = parseInt(major, 10); + const minorNum = parseInt(minor, 10); + const patchNum = parseInt(patch, 10); + + return { + major: majorNum, + minor: minorNum, + patch: patchNum, + toString() { + return `v${majorNum}.${minorNum}.${patchNum}`; + }, + }; + }); + +type SemVer = z.infer; + +export function getSemverUpdateType( + currentVersion: SemVer, + newVersion: SemVer, +): 'major' | 'minor' | 'patch' | null { + // early return if versions are identical + if (currentVersion === newVersion) { + return null; + } + + if (newVersion.major > currentVersion.major) { + return 'major'; + } + + if (newVersion.major === currentVersion.major) { + if (newVersion.minor > currentVersion.minor) { + return 'minor'; + } + + if (newVersion.minor === currentVersion.minor) { + if (newVersion.patch > currentVersion.patch) { + return 'patch'; + } + } + } + + // If we reach this point, we know the current version is higher than the new version + return null; +} diff --git a/utils/serializeHelpers.ts b/utils/serializeHelpers.ts new file mode 100644 index 000000000..ad0a9eeee --- /dev/null +++ b/utils/serializeHelpers.ts @@ -0,0 +1,6 @@ +// Convert string | boolean | Date to string +export const getStringValue = (value: string | boolean | Date) => { + if (typeof value === 'boolean') return value.toString(); + if (value instanceof Date) return value.toISOString(); + return value; +}; diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 000000000..fa3abaa54 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,63 @@ +import { storybookTest } from '@storybook/addon-vitest/vitest-plugin'; +import react from '@vitejs/plugin-react'; +import { playwright } from '@vitest/browser-playwright'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { defineConfig } from 'vitest/config'; + +const dirname = + typeof __dirname !== 'undefined' + ? __dirname + : path.dirname(fileURLToPath(import.meta.url)); + +export default defineConfig({ + plugins: [react()], + resolve: { + tsconfigPaths: true, + }, + test: { + globals: true, + exclude: ['**/node_modules/**'], + projects: [ + { + extends: true, + test: { + environment: 'jsdom', + exclude: [ + '**/*.stories.tsx', // Exclude Storybook files from unit tests + '**/*.stories.ts', + ], + name: 'units', + setupFiles: ['./vitest.setup.ts'], + server: { + deps: { inline: ['@codaco/interview'] }, + }, + }, + }, + { + extends: true, + plugins: [ + storybookTest({ + configDir: path.join(dirname, '.storybook'), + storybookScript: + 'SKIP_ENV_VALIDATION=true storybook dev -p 6006 --no-open', + }), + ], + test: { + name: 'storybook', + testTimeout: 60000, + browser: { + provider: playwright(), + enabled: true, + instances: [{ browser: 'chromium' }], + headless: true, + }, + exclude: [ + '**/*.test.ts', // Exclude regular test files from Storybook tests + '**/*.test.tsx', + ], + }, + }, + ], + }, +}); diff --git a/vitest.setup.ts b/vitest.setup.ts new file mode 100644 index 000000000..d8ec81c4c --- /dev/null +++ b/vitest.setup.ts @@ -0,0 +1,362 @@ +import '@testing-library/jest-dom/vitest'; +import { vi } from 'vitest'; + +// Import React at the top level so it's available for mocks +import { type default as React } from 'react'; + +// Use vi.hoisted to define mock factories that are available when mocks are hoisted +const { motionMockModule } = vi.hoisted(() => { + // We need to re-require React inside the hoisted block + // because vi.hoisted runs before the import at the top + // eslint-disable-next-line @typescript-eslint/no-require-imports + const ReactModule = require('react') as typeof React; + + // eslint-disable-next-line @typescript-eslint/no-require-imports + const { isValidMotionProp } = require('motion/react') as { + isValidMotionProp: (key: string) => boolean; + }; + + // Wrap refs to handle callback refs that return cleanup functions + // This is needed because some libraries (like @base-ui/react) use the React 19 + // pattern where callback refs can return cleanup functions, but React 18 + // warns when callback refs return values. Our wrapper ignores the return value. + const wrapRef = (ref: unknown) => { + if (ref === null || ref === undefined) { + return ref; + } + if (typeof ref === 'function') { + // Return a wrapper that calls the original but ignores return value + return (element: HTMLElement | null) => { + // eslint-disable-next-line @typescript-eslint/no-unsafe-call + ref(element); + // Intentionally not returning the cleanup function + }; + } + // RefObject - pass through as-is + return ref; + }; + + // Props that motion considers valid but should still be passed to DOM elements + const domPassthroughProps = new Set(['style']); + + // Filter out motion-specific props from HTML elements using motion's own detection + const filterMotionProps = (props: Record) => { + return Object.fromEntries( + Object.entries(props).filter( + ([key]) => !isValidMotionProp(key) || domPassthroughProps.has(key), + ), + ); + }; + + // Create explicit motion components for common HTML elements + const createMotionComponent = (tag: string) => + ReactModule.forwardRef>( + (props, ref) => { + return ReactModule.createElement(tag, { + ...filterMotionProps(props), + ref: wrapRef(ref), + }); + }, + ); + + // Create a motion-wrapped version of a custom React component + // This handles motion.create(Component) calls + const createMotionFromComponent = ( + Component: T, + ) => + ReactModule.forwardRef>( + (props, _ref) => { + return ReactModule.createElement(Component, { + ...filterMotionProps(props), + }); + }, + ); + + // Pre-create common motion components + const motionComponents = { + div: createMotionComponent('div'), + span: createMotionComponent('span'), + button: createMotionComponent('button'), + li: createMotionComponent('li'), + ul: createMotionComponent('ul'), + section: createMotionComponent('section'), + article: createMotionComponent('article'), + header: createMotionComponent('header'), + footer: createMotionComponent('footer'), + nav: createMotionComponent('nav'), + main: createMotionComponent('main'), + aside: createMotionComponent('aside'), + form: createMotionComponent('form'), + input: createMotionComponent('input'), + label: createMotionComponent('label'), + p: createMotionComponent('p'), + h1: createMotionComponent('h1'), + h2: createMotionComponent('h2'), + h3: createMotionComponent('h3'), + img: createMotionComponent('img'), + a: createMotionComponent('a'), + table: createMotionComponent('table'), + tr: createMotionComponent('tr'), + td: createMotionComponent('td'), + th: createMotionComponent('th'), + tbody: createMotionComponent('tbody'), + thead: createMotionComponent('thead'), + path: createMotionComponent('path'), + // Add the create method for motion.create(Component) API + create: createMotionFromComponent, + }; + + // No-op animation controls + const useAnimation = () => ({ + start: () => Promise.resolve(), + stop: () => undefined, + set: () => undefined, + }); + + // useAnimate returns [scope ref, animate function] + const useAnimate = () => { + const scopeRef = ReactModule.useRef(null); + const animate = () => Promise.resolve(); + return [scopeRef, animate] as const; + }; + + // stagger returns a delay function (just returns 0 in mock) + const stagger = () => 0; + + // AnimatePresence and LayoutGroup are passthrough components + const AnimatePresence = ({ children }: { children: unknown }) => children; + const LayoutGroup = ({ children }: { children: unknown }) => children; + const MotionConfig = ({ children }: { children: unknown }) => children; + + // Context shape must match motion's `MotionConfigContext` — consumers of + // `useContext(MotionConfigContext)` rely on `skipAnimations` being readable. + const MotionConfigContext = ReactModule.createContext({ + transformPagePoint: (p: unknown) => p, + isStatic: false, + reducedMotion: 'never' as const, + skipAnimations: false, + }); + + const motionMockModule = { + motion: motionComponents, + AnimatePresence, + LayoutGroup, + MotionConfig, + MotionConfigContext, + useAnimation, + useAnimationControls: useAnimation, + useAnimate, + stagger, + useMotionValue: (initial: number) => ({ + get: () => initial, + set: () => undefined, + }), + useTransform: () => ({ get: () => 0 }), + useSpring: (initial: number) => ({ get: () => initial }), + useInView: () => true, + useScroll: () => ({ + scrollY: { get: () => 0 }, + scrollX: { get: () => 0 }, + }), + useDragControls: () => ({ start: () => undefined }), + useReducedMotion: () => false, + useReducedMotionConfig: () => false, + usePresence: () => [true, null] as const, + }; + + return { motionMockModule }; +}); + +// Mock motion/react (the primary import path used by the project) +vi.mock('motion/react', () => motionMockModule); + +// Also mock framer-motion directly (some dependencies may import from it) +vi.mock('framer-motion', () => motionMockModule); + +// Mock motion-dom to prevent internal scheduling issues +vi.mock('motion-dom', () => ({ + frame: { + read: (callback: () => void) => { + callback(); + return () => undefined; + }, + render: (callback: () => void) => { + callback(); + return () => undefined; + }, + postRender: (callback: () => void) => { + callback(); + return () => undefined; + }, + }, + cancelFrame: () => undefined, + steps: { + read: { + schedule: () => () => undefined, + cancel: () => undefined, + }, + render: { + schedule: () => () => undefined, + cancel: () => undefined, + }, + postRender: { + schedule: () => () => undefined, + cancel: () => undefined, + }, + }, + time: { now: () => 0 }, +})); + +// Mock ResizeObserver for jsdom environment +// The callback must be invoked with width > 0 so Collection can measure items +// IMPORTANT: Use queueMicrotask to defer callback like real ResizeObserver +// This prevents infinite loops with hooks that trigger re-renders on containerWidth changes + +// Track elements globally to prevent duplicate callbacks +const globalObservedElements = new WeakSet(); +// Track pending callbacks to allow cancellation +const pendingCallbacks = new WeakMap void>(); + +class ResizeObserverMock implements ResizeObserver { + private callback: ResizeObserverCallback; + private localObservedElements = new Set(); + + constructor(callback: ResizeObserverCallback) { + this.callback = callback; + } + + observe(target: Element) { + this.localObservedElements.add(target); + + // Only fire callback once per element globally + if (globalObservedElements.has(target)) { + return; + } + globalObservedElements.add(target); + + // Use queueMicrotask to defer callback like real ResizeObserver + // This allows React to complete its render cycle before we trigger state updates + const callbackFn = () => { + // Check if element was unobserved before callback fires + if (!this.localObservedElements.has(target)) { + return; + } + + this.callback( + [ + { + target, + contentRect: { + width: 800, + height: 600, + x: 0, + y: 0, + top: 0, + left: 0, + bottom: 600, + right: 800, + toJSON: () => ({}), + }, + borderBoxSize: [{ inlineSize: 800, blockSize: 600 }], + contentBoxSize: [{ inlineSize: 800, blockSize: 600 }], + devicePixelContentBoxSize: [{ inlineSize: 800, blockSize: 600 }], + }, + ], + this, + ); + }; + + pendingCallbacks.set(target, callbackFn); + queueMicrotask(callbackFn); + } + + unobserve(target: Element) { + this.localObservedElements.delete(target); + pendingCallbacks.delete(target); + } + + disconnect() { + for (const el of this.localObservedElements) { + pendingCallbacks.delete(el); + } + this.localObservedElements.clear(); + } +} + +global.ResizeObserver = ResizeObserverMock; + +// jsdom doesn't implement Element.scrollTo — polyfill as a no-op so code +// that calls scrollTo after navigation/resets doesn't throw under tests. +if (typeof Element.prototype.scrollTo !== 'function') { + Element.prototype.scrollTo = function scrollTo() { + // no-op + }; +} + +// Pin the default locale for Intl.DateTimeFormat. Node's runtime default +// depends on the host's LANG/LC_ALL env vars, which makes any assertion +// against locale-formatted strings flaky across dev machines and CI. We +// subclass the original constructor and substitute 'en-US' when no locale +// is passed, so `new Intl.DateTimeFormat(undefined, …)` (our production call +// site) behaves as en-US under test while explicit locale arguments still +// work unchanged. +const OriginalDateTimeFormat = Intl.DateTimeFormat; +class PinnedDateTimeFormat extends OriginalDateTimeFormat { + constructor( + locales?: Intl.LocalesArgument, + options?: Intl.DateTimeFormatOptions, + ) { + super(locales ?? 'en-US', options); + } +} +// Cast matches the pattern already used for `global.Worker = WorkerMock as +// unknown as typeof Worker` below — `Intl.DateTimeFormat`'s type includes a +// call-without-`new` signature that ES classes can't express directly. +Intl.DateTimeFormat = + PinnedDateTimeFormat as unknown as typeof Intl.DateTimeFormat; + +// Mock offsetWidth and offsetHeight on HTMLElement for immediate container width detection +// This allows hooks like useCollectionSetup to get initial dimensions synchronously +Object.defineProperty(HTMLElement.prototype, 'offsetWidth', { + configurable: true, + get() { + return 800; + }, +}); + +Object.defineProperty(HTMLElement.prototype, 'offsetHeight', { + configurable: true, + get() { + return 600; + }, +}); + +// Mock Web Worker for jsdom environment +// The worker mock provides a minimal implementation that supports the search worker API +class WorkerMock implements Worker { + onmessage: ((this: Worker, ev: MessageEvent) => unknown) | null = null; + onmessageerror: ((this: Worker, ev: MessageEvent) => unknown) | null = null; + onerror: ((this: AbstractWorker, ev: ErrorEvent) => unknown) | null = null; + + postMessage() { + // No-op - Comlink will handle the communication + } + + terminate() { + // No-op + } + + addEventListener() { + // No-op + } + + removeEventListener() { + // No-op + } + + dispatchEvent(): boolean { + return true; + } +} + +global.Worker = WorkerMock;